diff --git a/CRC-2nd-ed/krantz.cls-shashi1.zip b/CRC-2nd-ed/krantz.cls-shashi1.zip new file mode 100644 index 00000000..940cd643 Binary files /dev/null and b/CRC-2nd-ed/krantz.cls-shashi1.zip differ diff --git a/CRC-2nd-ed/krantz.cls.zip b/CRC-2nd-ed/krantz.cls.zip index 940cd643..8525b710 100644 Binary files a/CRC-2nd-ed/krantz.cls.zip and b/CRC-2nd-ed/krantz.cls.zip differ diff --git a/R.as.calculator.Rnw b/R.as.calculator.Rnw index d8115acf..afa3abdd 100644 --- a/R.as.calculator.Rnw +++ b/R.as.calculator.Rnw @@ -42,8 +42,6 @@ When working in \Rlang with arithmetic expressions, the normal mathematical prec Both in mathematics and programming languages \emph{operator precedence rules} determine which subexpressions are evaluated first and which later. Contrary to primitive electronic calculators, \Rlang evaluates numeric expressions containing operators according to the rules of mathematics. In the expression $1 + 2 \times 3$, the product $2 \times 3$ has precedence over the addition, and is evaluated first, yielding as the result of the whole expression, 7. Similar rules apply to other operators, even those taking as operands non-numeric values. \end{explainbox} -It is important to keep in mind that in \Rlang trigonometric functions interpret numeric values representing angles as being expressed in radians. - The equivalent of the math expression\qRfunction{exp()}\qRfunction{cos()}\qRconst{pi} $$ \frac{3 + e^2}{\cos \pi} @@ -54,7 +52,17 @@ is, in \Rlang, written as follows: (3 + exp(2)) / cos(pi) @ -It can be seen above that mathematical constants and functions are part of the \Rlang language. One thing to remember when translating complex fractions as above into \Rlang code, is that in arithmetic expressions the bar of the fraction generates a grouping that alters the normal precedence of operations. In contrast, in an \Rlang expression this grouping must be explicitly signaled with additional parentheses. +Where constant \Rconst{pi} ($\pi = 3.1415\ldots$) and function \Rfunction{cos()} (cosine) are defined in base \Rlang. Many trigonometric and mathematical functions are available in addition to operators like \verb|+|, \verb|-|, \verb|*|, \verb|/|, and \verb|^|. + +\begin{warningbox} + In \Rlang angles are expressed in radians, thus $\cos(\pi) = 1$ and $\sin(\pi) = 0$, according to trigonometry. Degrees can be converted into radians taking into account that the circle corresponds to $2 \times \pi$ when expressed in radians and to $360^\circ$ when expressed in degrees. Thus the cosine of an agle of $45^\circ$ can be computed as follows. + +<>= +sin(45/180 * pi) +@ +\end{warningbox} + +One thing to remember when translating fractions into \Rlang code is that in arithmetic expressions the bar of the fraction generates a grouping that alters the normal precedence of operations. In contrast, in an \Rlang expression this grouping must be explicitly signaled with additional parentheses. If you are in doubt about how precedence rules work, you can add parentheses to make sure the order of computations is the one you intend. Redundant parentheses have no effect. @@ -67,7 +75,7 @@ If you are in doubt about how precedence rules work, you can add parentheses to The number of opening (left side) and closing (right side) parentheses must be balanced, and they must be located so that each enclosed term is a valid mathematical expression, i.e., code that can be evaluated to return a value, a value that can be inserted in place of the expression enclosed in parenthesis before evaluating the remaining of the expression. For example, \code{(1 + 2) * 3} after evaluating \code{(1 + 2)} becomes \code{3 * 3} yielding \code{9}. In contrast, \code{(1 +) 2 * 3} is a syntax error as \code{1 +} is incomplete and does not yield a number. \begin{playground} -In \emph{playgrounds} the output from running the code in \Rpgrm are not shown, as these are exercises for you to enter at the \Rpgrm console and run. In general you should not skip them, as in many cases, as with the statements highlighted with comments in the code chunk below, they have something to teach or demonstrate. You are strongly encouraged to \emph{play}, in other words, create new variations of the examples and execute them to explore how \Rlang works.\qRfunction{sqrt()}\qRfunction{sin()}\qRfunction{log()}\qRfunction{log10()}\qRfunction{log2()}\qRfunction{exp()} +In \emph{playgrounds} the output from running the code in \Rpgrm are not shown, as these are exercises for you to enter at the \Rpgrm console and run. In general you should not skip them as in most cases playgrounds aim to teach or demonstrate concepts or features that I have \emph{not} included in full-detail in the main text. You are strongly encouraged to \emph{play}, in other words, create new variations of the examples and execute them to explore how \Rlang works.\qRfunction{sqrt()}\qRfunction{sin()}\qRfunction{log()}\qRfunction{log10()}\qRfunction{log2()}\qRfunction{exp()} <>= 1 + 1 @@ -78,11 +86,8 @@ In \emph{playgrounds} the output from running the code in \Rpgrm are not shown, sqrt(9) @ -Base \Rlang has \Rconst{pi} ($\pi = 3.1415\ldots$) predefined. In \Rlang angles are expressed in radians, thus $\sin(\pi) = 0$ according to trigonometry. - <>= -pi # 15 digits shown when printing -print(pi, digits = 15) +pi sin(pi) log(100) log10(100) @@ -92,7 +97,9 @@ exp(1) \end{playground} -Variables\index{variables}\index{assignment} are used to store values. After we \emph{assign} a value to a variable, we can use in our code the name of the variable in place of the stored value. The ``usual'' assignment operator is \Roperator{<-}. In \Rlang, all names, including variable names, are case sensitive. Variables \code{a} and \code{A} are two different variables. Variable names can be long in \Rlang although it is not a good idea to use very long names. Here I am using very short names, something that is usually also a very bad idea. However, in the examples in this chapter where the stored values have no connection to the real world, simple names emphasize their abstract nature. In the chunk below, \code{vct1} and \code{vct2} are arbitrarily chosen variable names; I should have used names like \code{height.cm} or \code{outside.temperature.C} if they had been useful to convey information. As a guide to readers, I end these names with \code{.vec} to remind readers that the objects stored in these variables are vectors. +Variables\index{variables}\index{assignment} are used to store values. After we \emph{assign} a value to a variable, we can use in our code the name of the variable in place of the stored value. The ``usual'' assignment operator is \Roperator{<-}. In \Rlang, all names, including variable names, are case sensitive. Variables \code{a} and \code{A} are two different variables. Variable names can be long in \Rlang although it is not a good idea to use very long names. Here I am using very short names, something that is usually also a very bad idea. However, in the examples in this chapter where the stored values have no connection to the real world, simple names emphasize their abstract nature. In the chunk below, \code{vct1} and \code{vct2} are arbitrarily chosen variable names; I should have used names like \code{height.cm} or \code{outside.temperature.C} if they had been useful to convey information. + +In the book, I use variable names that help recognize the kind of object stored, as this is most relevant when learning \Rlang. Here I use \code{vct1} because in \Rlang, as we will see in page \pageref{par:numeric:vectors:start}, numeric objects are always vectors, even when of length one. <>= vct1 <- 1 @@ -156,7 +163,7 @@ is.double(1) \end{explainbox} \index{vectors!introduction|(}\label{par:calc:vectors:diag} -\Rlang's vectors\label{par:numeric:vectors:start} are one-dimensional, of varying length and used to store similar values, e.g., numbers. They are different to the vectors, commonly used in Physics when describing directional forces, which are symbolized with an arrow as an ``accent,'' such as $\overrightarrow{\mathbf{F}}$. In \Rlang numeric values and other atomic values are always \Rclass{vector}s that can contain zero, one or more elements. The diagram below exemplifies a vector containing ten elements, also called members. These elements can be extracted using integer numbers as positional indices, and manipulated as described in more detail in section \ref{sec:calc:factors} on page \pageref{sec:calc:factors}.\vspace{1ex} +Vectors\label{par:numeric:vectors:start} are one-dimensional in structure, of varying length and used to store similar values, e.g., numbers. They are different to the vectors, commonly used in Physics when describing directional forces, which are symbolized with an arrow as an ``accent,'' such as $\overrightarrow{\mathbf{F}}$. In \Rlang numeric values and other atomic values are always \Rclass{vector}s that can contain zero, one or more elements. The diagram below exemplifies a vector containing ten elements, also called members. These elements can be extracted using integer numbers as positional indices, and manipulated as described in more detail in section \ref{sec:calc:indexing} on page \pageref{sec:calc:indexing}.\vspace{1ex} \begin{center} \begin{footnotesize} @@ -199,7 +206,7 @@ One\label{par:calc:concatenate} can use function \Rfunction{c()} ``concatenate'' c(3, 1, 2) @ -To be able to reuse the vector, we assign it to a variable, giving a name to it. The length of a vector can be queried with function \Rfunction{length()}. We show below \Rlang code followed by a diagram depicting the vector created. +To be able to reuse the vector, we assign it to a variable, giving a name to it. The length of a vector can be queried with function \Rfunction{length()}. We show below \Rlang code followed by diagrams depicting the structure of the vectors created. <>= vct4 <- c(3, 1, 2) @@ -207,7 +214,8 @@ length(vct4) vct4 @ -\begin{center} +%\begin{center} +\noindent \begin{footnotesize} \begin{tikzpicture}[font=\sffamily, array/.style={matrix of nodes,nodes={draw, minimum size=7mm, fill=blue!20},column sep=-\pgflinewidth, row sep=0.5mm, nodes in empty cells, @@ -228,14 +236,15 @@ row 1/.style={nodes={draw=none, fill=none, minimum size=5mm}}}] % \end{tikzpicture} \end{footnotesize} -\end{center} +%\end{center} <>= vct5 <- c(4, 5, 0) vct5 @ -\begin{center} +\noindent +%\begin{center} \begin{footnotesize} \begin{tikzpicture}[font=\sffamily, array/.style={matrix of nodes,nodes={draw, minimum size=7mm, fill=blue!20},column sep=-\pgflinewidth, row sep=0.5mm, nodes in empty cells, @@ -256,13 +265,15 @@ row 1/.style={nodes={draw=none, fill=none, minimum size=5mm}}}] % \end{tikzpicture} \end{footnotesize} -\end{center} +%\end{center} <>= vct6 <- c(vct4, vct5) +vct6 @ -\begin{center} +\noindent +%\begin{center} \begin{footnotesize} \begin{tikzpicture}[font=\sffamily, array/.style={matrix of nodes,nodes={draw, minimum size=7mm, fill=blue!20},column sep=-\pgflinewidth, row sep=0.5mm, nodes in empty cells, @@ -283,14 +294,15 @@ row 1/.style={nodes={draw=none, fill=none, minimum size=5mm}}}] % \end{tikzpicture} \end{footnotesize} -\end{center} +%\end{center} <>= vct7 <- c(vct5, vct4) vct7 @ -\begin{center} +\noindent +%\begin{center} \begin{footnotesize} \begin{tikzpicture}[font=\sffamily, array/.style={matrix of nodes,nodes={draw, minimum size=7mm, fill=blue!20},column sep=-\pgflinewidth, row sep=0.5mm, nodes in empty cells, @@ -311,9 +323,9 @@ row 1/.style={nodes={draw=none, fill=none, minimum size=5mm}}}] % \end{tikzpicture} \end{footnotesize} -\end{center} +%\end{center} -Here I\bigsqcup\bigsqcup show concatenation with a vector of the same class but with length zero. +Next I show concatenation with a vector of the same class with length zero. <>= c(vct7, numeric()) @@ -495,7 +507,7 @@ If as a result of an operation the result falls outside the range of representab 1000000L * 1000000L @ -Both doubles and integers are considered numeric. In most situations, conversion is automatic and we do not need to worry about the differences between these two types of numeric values. These functions return \code{logical} values (see section \ref{sec:calc:boolean} on page \pageref{sec:calc:boolean}).\index{numbers!double}\index{numbers!integer} +Both doubles and integers are considered numeric. In most situations, conversion is automatic and we do not need to worry about the differences between these two types of numeric values. The functions in the next chunk return \code{TRUE} or \code{FALSE}, i.e., \code{logical} values (see section \ref{sec:calc:boolean} on page \pageref{sec:calc:boolean}).\index{numbers!double}\index{numbers!integer} <>= is.numeric(1L) @@ -591,14 +603,17 @@ The exponentiation operator \Roperator{\^{}} forces the promotion\index{type pro \index{floating point numbers!arithmetic|)}\index{machine arithmetic!precision|)} \end{explainbox} -Both for display or as part of computations, we may want to decrease the number of significant digits or the number of digits after the decimal marker. Be aware that in the examples below, even if printing is being done by default, these functions return \code{numeric} values that are different from their input and can be stored and used in computations. Function \Rfunction{round()} is used to round numbers to a certain number of decimal places after or before the decimal marker, with a positive or negative value for \code{digits}, respectively. In contrast, function \Rfunction{signif()} rounds to the requested number of significant digits, i.e., ignoring the position of the decimal marker. +Both\label{par:calc:round} for display or as part of computations, we may want to decrease the number of significant digits or the number of digits after the decimal marker. Be aware that in the examples below, even if printing is being done by default, these functions return \code{numeric} values that are different from their input and can be stored and used in computations. Function \Rfunction{round()} is used to round numbers to a certain number of decimal places after or before the decimal marker, with a positive or negative value for \code{digits}, respectively. In contrast, function \Rfunction{signif()} rounds to the requested number of significant digits, i.e., ignoring the position of the decimal marker. -<>= +<>= round(0.0124567, digits = 3) signif(0.0124567, digits = 3) +round(1789.1234, digits = -1) round(1789.1234, digits = 3) signif(1789.1234, digits = 3) -round(1789.1234, digits = -1) +@ + +<>= vct13 <- 0.12345 vct14 <- round(vct13, digits = 2) vct13 == vct14 @@ -613,7 +628,7 @@ In a function definition formal parameters can be assigned default values, which Being \code{digits}, the second parameter, its argument can also be passed by position. -<>= +<>= round(0.0124567, digits = 3) round(0.0124567, 3) @ @@ -630,6 +645,19 @@ What does value truncation mean? Function \Rfunction{trunc()} truncates a numeri \end{itemize} \end{playground} +\begin{explainbox} + \Rlang supports complex numbers and arithmetic operations with class \Rclass{complex}. As complex numbers rarely appear in user-written scripts I give only one example of their use. Complex numbers as defined in mathematics, have two parts, a real component and an imaginary one. Complex numbers can be used, for example, to describe the result of $\sqrt{-1} = 1i$. + +<>= +cmp1 <- complex(real = c(-1, 1), imaginary = c(0, 0)) +cmp1 +cmp2 <- sqrt(cmp1) +cmp2 +cmp2^2 +@ + +\end{explainbox} + \index{classes and modes!numeric, integer, double|)}\index{numbers and their arithmetic|)} It\index{removing objects}\index{deleting objects|see {removing objects}} is possible to \emph{remove} named objects (or variables) from the workspace with \Rfunction{remove()}. Function \Rfunction{objects()} returns a \code{character} vector containing the names of all objects visible in the current environment, or by supplying a \code{pattern} argument, only the objects with names matching the \code{pattern}. @@ -662,6 +690,10 @@ remove(list = objects(pattern = "^vct[[:digit:]]?")) @ \end{explainbox} +\begin{warningbox} + Instants in time and periods of time in computers are usually encoded as classes derived from \code{integer}, and thus considered in \Rlang as atomic classes and the objects vectors. Some of these encodings are standardized and supported by \Rlang classes \Rclass{POSIXlt} and \Rclass{POSIXct}. The computations based on times and dates are difficult because the relationship between local time at a given location and Universal Time Coordinates (UTC) has changed in time, as well as with changes in national borders. Packages \pkgname{lubridate} and \pkgname{anytime} support operations among time-related data and conversions between character strings and time and date classes easier and less error prone than when using base \Rlang functions. Thus I describe classes and operations related to dates and times in chapter \ref{chap:R:data} on page \pageref{chap:R:data}. +\end{warningbox} + \section{Character values}\label{sec:calc:character} \index{character strings}\index{classes and modes!character|(}\qRclass{character} In spite of the the name \code{character}, values of this mode, are vectors of \emph{character strings"}. Character constants are written by enclosing characters strings in quotation marks, i.e., \code{"this is a character string"}. There are three types of quotation marks in the ASCII character set, double quotes \code{"}, single quotes \code{'}, and back ticks \code{`}. The first two types of quotes can be used as delimiters of \code{character} constants. @@ -680,6 +712,7 @@ In many computer languages, vectors of characters are distinct from vectors of c \end{explainbox} Concatenating character vectors of length one does not yield a longer character string, it yields instead a longer vector of character strings. + <>= vct3 <- 'ABC' vct4 <- "bcdefg" @@ -952,7 +985,7 @@ gsub(pattern = "^.[0-9][a-z]*$", x = c("about", "a9out", "a3outx")) @ -Several named classes of characters are predefined, for example \code{[:lower:]⁠} for lower case alphabetic characters according to the current locale. In the regular expression in the example below, \code{[:lower:]⁠} replaces only \code{a-z}, thus we need to keep the outer square brackets. While \code{a-z} includes only the unaccented letters, \code{[:lower:]⁠} does include additional characters such as \texttt{ä}, \texttt{ö}, or \texttt{é} if they are in use in the current locale. In the case of \code{[:digit:]} and \code{0-9}, they are equivalent. +Several named classes of characters are predefined, for example \code{[:lower:]⁠} for lower case alphabetic characters according to the current locale (see page \pageref{box:calc:locale}). In the regular expression in the example below, \code{[:lower:]⁠} replaces only \code{a-z}, thus we need to keep the outer square brackets. While \code{a-z} includes only the unaccented letters, \code{[:lower:]⁠} does include additional characters such as \texttt{ä}, \texttt{ö}, or \texttt{é} if they are in use in the current locale. In the case of \code{[:digit:]} and \code{0-9}, they are equivalent. <>= gsub(pattern = "^.([[:digit:]])[[:lower:]]*$", @@ -1015,10 +1048,12 @@ strsplit(x = c("2023-07-29 10:30", "2023-07-29 19:17"), split = " ") \index{regular expressions|)} \index{classes and modes!character|)} -\begin{warningbox} +\begin{warningbox}\label{box:calc:locale} The ASCII character set is the oldest and simplest in use. In contains only 128 characters including non-printable characters. These characters support the English language. Several different extended versions with 256 characters provided support for other languages, mostly by adding accented letters and some symbols. The 128 ASCII characters were for a long time the only consistently available across computers set up for different languages and countries (or \emph{locales}). Recently the use of much larger character sets like UTF8 has become common. Since \Rlang version 4.2.0 support for UTF8 is available under Windows 10. This makes it possible the processing of text data for many more languages than in the past. Even though now it is possible to use non-ASCII characters as part of object names, it is anyway safer to use only ASCII characters as this support is recent. - + The extended character sets include additional characters, that are distinct but may produce glyphs that look very similar to those in the ASCII set. One case are em-dash (---), en-dash (-), minus sign ($-$) and regular dash (-) which are all different characters, with only the last one recognized by \Rlang as the minus operator. For those copying and pasting text from a word-processor into \Rpgrm or \RStudio, a frequent difficulty is that even if one types in an ASCII quote character (\verb|"|), the opening and closing quotes in many languages are automatically replaced with non-ASCII ones (``and'') which \Rlang does not accept as character string delimiters. The best solution is to use a plain text editor instead of a word processor when writing scripts or editing text files containing data to be read as code statements or numerical data. + + A locale definition determines not only the language, and character set, but also date, time, and currency formats. \end{warningbox} \begin{explainbox} @@ -1493,7 +1528,7 @@ union("ab", character()) \begin{warningbox} Although set operators are defined for \Rclass{numeric} vectors, rounding errors in `floats' can result in unexpected results (see section \ref{box:floats} on page \pageref{box:floats}). - + <>= c(cos(pi), sin(pi)) %in% c(0, -1) c(cos(pi), sin(pi)) @@ -1542,19 +1577,28 @@ is.character(vct1) \begin{explainbox} The \emph{mode} of an object is a fundamental property, and limited to those modes defined as part of the \Rlang language. In particular, different \Rlang objects of a given mode, such as \code{numeric}, can belong to different \code{class}es. Classes and the dispatch of methods are discussed in section \ref{sec:script:objects:classes:methods} on page \pageref{sec:script:objects:classes:methods}, together with object-oriented programming. -<>= +<>= mode(c(1, 2, 3)) # no distinction of integer or double typeof(c(1, 2, 3)) class(c(1, 2, 3)) mode(c(1L, 2L, 3L)) # no distinction of integer or double typeof(c(1L, 2L, 3L)) class(c(1L, 2L, 3L)) +@ + +<>= mode(factor(c("a", "b", "c"))) # no distinction of integer or double typeof(factor(c("a", "b", "c"))) class(factor(c("a", "b", "c"))) +@ + +<>= mode(c("a", "b", "c")) typeof(c("a", "b", "c")) class(c("a", "b", "c")) +@ + +<>= mode(c(TRUE, FALSE)) typeof(c(TRUE, FALSE)) class(c(TRUE, FALSE)) @@ -1563,16 +1607,20 @@ class(c(TRUE, FALSE)) \section{`Type' conversions}\label{sec:calc:type:conversion} \index{type conversion|(} -The least-intuitive type conversions are those related to logical values. All others are as one would expect. By convention, functions used to convert objects from one mode to a different one have names starting with \code{as.}\footnote{Except for some packages in the \pkgnameNI{tidyverse} that use names starting with \code{as\_} instead of \code{as.}.}.\qRfunction{as.character()}\qRfunction{as.numeric()}\qRfunction{as.logical()} +By type conversion we mean converting a value from one class into a value expressed in a different class. usually the meaning can be retained, at least in part. We can for example convert character strings into numeric values, but this conversion is possible only for character strings conformed by digits, like \code{"100"}. Most conversions, such as the conversion of \code{character} value \code{"100"} into \code{numeric} value \code{100} are obvious. Type conversions involving logical values are less intuitive. By convention, functions used to convert objects from one mode or class to a different one have names starting with \code{as.}\footnote{Except for some packages in the \pkgnameNI{tidyverse} that use names starting with \code{as\_} instead of \code{as.}.}.\qRfunction{as.character()}\qRfunction{as.numeric()}\qRfunction{as.logical()} <>= -as.character(1) -as.numeric("1") +as.character(102) +as.character(TRUE) +as.character(3.0e10) +as.numeric("203") as.logical("TRUE") -as.logical("NA") +as.logical(100) +as.logical(0) +as.logical(-1) @ -Conversion takes place automatically in arithmetic and logical expressions. +Some conversions takes place automatically in expressions involving both \code{numeric} and \code{logical} values. <>= TRUE + 10 @@ -1581,26 +1629,28 @@ FALSE | -2:2 @ \begin{playground} -There is some flexibility in the conversion from character strings into \code{numeric} and \code{logical} values. Use the examples below plus your own variations to get an idea of what strings are acceptable and correctly converted and which are not. Do also pay attention at the conversion between \code{numeric} and \code{logical} values.\qRfunction{as.character()}\qRfunction{as.numeric()}\qRfunction{as.logical()} +There is flexibility in the conversion from character strings into \code{numeric} and \code{logical} values. Use the examples below plus your own variations to get an idea of what strings are acceptable and correctly converted and which are not. Do also pay attention at the conversion between \code{numeric} and \code{logical} values.\qRfunction{as.character()}\qRfunction{as.numeric()}\qRfunction{as.logical()} <>= -as.character(3.0e10) as.numeric("5E+5") +as.numeric("50e+4") +as.numeric(".12") +as.numeric("0.12") as.numeric("A") -as.numeric(TRUE) -as.numeric(FALSE) +as.logical("TRUE") +as.logical("FALSE") as.logical("T") as.logical("t") as.logical("true") -as.logical(100) -as.logical(0) -as.logical(-1) +as.logical("NA") @ \end{playground} \begin{playground} -Compare the values returned by \Rfunction{trunc()} and \Rfunction{as.integer()} when applied to a floating point number, such as \code{12.34}. Check for the equality of values, and for the \emph{class} of the returned objects. +Conversion of fractional numbers into whole numbers can be achieved in different ways, by truncation of the fractional part or rounding it up or down. If we consider both negative and positive numbers, how each of them are handled creates additional possibilities. All these approaches as defined in mathematics, are available through different \Rlang functions. These functions, are not conversion functions as they return a \code{numeric} value of class \code{double}. See page \pageref{par:calc:round}. In contrast, \Rfunction{as.integer()} is a conversion function for type \code{double} into type \code{integer}, both with mode \code{numeric}. + +Compare the values returned by \Rfunction{trunc()} and \Rfunction{as.integer()} when applied to a floating point number, such as \code{12.34}. Check for the equality of values, and for the \emph{class} and \emph{type} of the returned objects. \end{playground} \begin{explainbox} @@ -1609,23 +1659,25 @@ Using conversions, the difference between the length of a \code{character} vecto <>= vct1 <- c("1", "2", "3") length(vct1) -vct2 <- "123" +vct2 <- "123.1" length(vct2) as.numeric(vct1) as.numeric(vct2) +as.integer(vct1) +as.integer(vct2) @ \end{explainbox} \sloppy -Other\index{formatted character strings from numbers} functions relevant to the ``conversion'' of numbers and other values are \Rfunction{format()}, and \Rfunction{sprintf()}. These two functions return \Rclass{character} strings, instead of \code{numeric} or other values, and are useful for printing output. One could think of these functions as advanced conversion functions returning formatted, and possibly combined and annotated, character strings. However, they are usually not considered normal conversion functions, as they are very rarely used in a way that preserves the original precision of the input values. We show here the use of \Rfunction{format()} and \Rfunction{sprintf()} with \code{numeric} values, but they can also be used with values of other modes. +Other\index{formatted character strings from numbers} functions relevant to the ``conversion'' of numbers and other values are \Rfunction{format()}, and \Rfunction{sprintf()}. This is sometimes informally called ``pretty printing''. These two functions return \Rclass{character} strings, instead of \code{numeric} or other values, and are useful for printed output. One could think of these functions as advanced conversion functions returning formatted, and possibly combined and annotated, character strings. However, they are usually not considered normal conversion functions, as they are very rarely used in a way that preserves the original precision of the input values. We show here the use of \Rfunction{format()} and \Rfunction{sprintf()} with \code{numeric} values, but they can also be used with values of other classes like \code{character}, \code{logical}, etc. -When using \Rfunction{format()}, the format used to display numbers is set by passing arguments to several different parameters. As \Rfunction{print()} calls \Rfunction{format()} to make numbers \emph{pretty} it accepts the same options. +When using \Rfunction{format()}, the format used to display numbers is set by passing arguments to several different parameters. As \Rfunction{print()} calls \Rfunction{format()} to convert \code{numeric} values into \code{character} strings, it accepts the same options. <>= vct2 = c(123.4567890, 1.0) format(vct2) # using defaults -format(vct2[1]) # using defaults -format(vct2[2]) # using defaults +format(123.4567890) # using defaults +format(1.0) # using defaults format(vct2, digits = 3, nsmall = 1) format(vct2, digits = 3, scientific = TRUE) @ @@ -1646,7 +1698,7 @@ Function \Rfunction{format()} may be easier to use, in some cases, but \Rfunctio \end{playground} \begin{explainbox} -We have above described \Rconst{NA} as a single value ignoring modes, but in reality \Rconst{NA}s come in various flavors. \Rconst{NA\_real\_}, \Rconst{NA\_character\_}, etc. and \Rconst{NA} defaults to an \Rconst{NA} of class \Rclass{logical}. \Rconst{NA} is normally converted on the fly to other modes when needed, so in general \Rconst{NA} is all we need to use. +We have above described \Rconst{NA} as a single value ignoring modes, but in reality \Rconst{NA}s come in various flavors. \Rconst{NA\_real\_}, \Rconst{NA\_character\_}, etc. and \Rconst{NA} defaults to an \Rconst{NA} of class \Rclass{logical}. \Rconst{NA} is normally converted on the fly to other modes when needed, so in general \Rconst{NA} is all we need to use. The examples below use the extraction operator to demonstrate automatic conversion on assignment. This operator is described in section \ref{sec:calc:indexing} below. <>= vct3 <- c(1, NA) @@ -1795,7 +1847,7 @@ vct1[c(1, NULL)] @ \end{advplayground} -Another way of indexing, which is very handy, but not available in most other programming languages, is indexing with a vector of \code{logical} values. The \code{logical} vector used for indexing is usually of the same length as the vector from which elements are going to be selected. However, this is not a requirement, because if the \code{logical} vector of indexes is shorter than the indexed vector, it is ``recycled'' as discussed above in relation to other operators. +Another way of indexing, which is very handy, but not available in most other programming languages, is indexing with a vector of \code{logical} values. The \code{logical} vector used for indexing is usually of the same length as the vector from which elements are going to be selected. However, this is not a requirement, because if the \code{logical} vector of indexes is shorter than the indexed vector, it is ``recycled'' as discussed in page \pageref{par:recycling:numeric} in relation to other operators. <>= vct1[TRUE] @@ -2132,6 +2184,7 @@ Subscripting of matrices and arrays is consistent with that used for vectors; we mat1 <- matrix(1:20, ncol = 4) mat1 mat1[1, 2] +mat1[2, 1] @ Remind yourself of how indexing of vectors works in \Rlang (see section \ref{sec:vectors} on page \pageref{sec:vectors}). We will now apply the same rules in two dimensions to extract and replace values. The first or leftmost indexing vector corresponds to rows and the second one to columns, so \Rlang uses a rows-first convention for indexing. Missing indexing vectors are interpreted as meaning \emph{extract all rows} and \emph{extract all columns}, respectively. @@ -2147,13 +2200,19 @@ mat1 @ \begin{explainbox} -Vectors are simpler than matrices, and by default when possible the ``slice'' extracted from a matrix it is simplified into a vector by dropping one dimension. By passing \code{drop = FALSE}, we can prevent this. +Vectors are simpler than matrices, and by default when possible the ``slice'' extracted from a matrix is simplified into a vector by dropping one dimension. By passing \code{drop = FALSE}, we can prevent this. <>= is.matrix(mat1[1, ]) is.matrix(mat1[1:2, 1:2]) +@ + +<>= is.vector(mat1[1, ]) is.vector(mat1[1:2, 1:2]) +@ + +<>= is.matrix(mat1[1, , drop = FALSE]) is.matrix(mat1[1:2, 1:2, drop = FALSE]) @ @@ -2329,29 +2388,39 @@ ARY3 <- array(VCT2, dim = c(2, 5)) Be aware that vectors and one-dimensional arrays are not the same thing, while two-dimensional arrays are matrices. \begin{enumerate} \item Use the different constructors and query functions to explore this, and its consequences. - \item Convert a matrix into a vector using \Rfunction{unlist()} and \Rfunction{as.vector()} and compare the returned values. + \item Convert a matrix into a vector using \Rfunction{as.vector()} and compare the returned values to those in the matrix. Are values extracted by columns or by rows first. \end{enumerate} \end{playground} \index{arrays|)} \index{matrix!operators|(} -Operators for matrices are available in \Rlang, as matrices are used in many statistical algorithms. We will not describe them all here, only \Rfunction{t()} and some specializations of arithmetic operators. Function \Rfunction{t()} transposes\index{matrix!transpose} a matrix, by swapping columns and rows. +Operators and functions for matrix algebra are available in \Rlang as matrices are used in statistical algorithms. I describe below only some of these matrix-specific functions and operators. I also give examples of the use of some of the usual arithmetic operators together with objects of class \Rclass{matrix}. -<>= -mat3 <- matrix(1:20, ncol = 4) -mat3 -t(mat3) -@ - -As with vectors, recycling applies to arithmetic operators when applied to matrices.\index{matrix!operations with vectors} +Recycling applies to the usual arithmetic operators when applied to matrices. This is similar to their behavior when all operands are vectors (see page \pageref{par:recycling:numeric}).\index{matrix!operations with vectors} <>= +mat3 <- matrix(1:20, ncol = 4) mat3 + 2 mat3 * 0:1 mat3 * 1:0 @ -In the examples above with the usual multiplication operator \code{*}, the operation described is not a matrix product, but instead, the products between individual elements of the matrix and vectors. Operators and functions implementing the operations of matrix algebra are available. Matrix algebra gives the rules for operations where both operands are matrices. For example, matrix multiplication is indicated by operator \Roperator{\%*\%}. \index{matrix!multiplication} +\begin{playground} + When a \code{matrix} and a \code{vector} are operands in an arithmetic operation, how the positions of the \code{vector} are mapped to positions in the \code{matrix} affects the result of the operation. Run the code below to find out. What is the logic behind? + +<>= +matrix(rep(1, 6)) * 1:6 +@ +\end{playground} + +Function \Rfunction{t()} transposes\index{matrix!transpose} a matrix, by swapping columns and rows. + +<>= +mat3 +t(mat3) +@ + +In the examples above with the usual multiplication operator \code{*}, the operation described is not a matrix product, but instead, the products between individual elements of the matrix and vectors. Operators and functions implementing the operations of matrix algebra are distinct. Matrix algebra gives the rules for operations where both operands are matrices. For example, matrix multiplication is indicated by operator \Roperator{\%*\%}. \index{matrix!multiplication} <>= mat4 <- matrix(1:16, ncol = 4) @@ -2359,7 +2428,22 @@ mat4 * mat4 mat4 %*% mat4 @ -Other operators and functions for matrix algebra like cross-product (\Rfunction{crossprod()}), extracting or replacing the diagonal (\Rfunction{diag()}) are available in base \Rlang. Packages, including \pkgname{matrixStats}, provide additional functions and operators for matrices. +Function \Rfunction{diag()} makes it possible to easily create a diagonal matrix. + +<>= +mat5 <- diag(4) +mat5 +mat4 %*% mat5 +@ + +The inverse of a matrix can be found by means of function \Rfunction{solve()}. + +<>= +mat6 <- matrix(c(3, 2, 0, 1, 3, 2, 7, 2, 4), ncol = 3) +solve(mat6) +@ + +Additional operators and functions for matrix algebra like cross-product (\code{crossprod()}) and Cholesky root (\code{chol()}) are available in base \Rlang. Packages, including \pkgname{matrixStats}, provide additional functions and operators for matrices. \begin{explainbox} The code below removes all objects except those whose names are in vector \code{to.keep}. @@ -2541,11 +2625,14 @@ In the last statement, using the unary negation operator, which is vectorized, a \begin{advplayground}\label{calc:ADVPG:order:sort} \textbf{Reordering factor values.}\index{factors!reorder values}\index{factors!arrange values} It is possible to arrange the values stored in a factor either alphabetically according to the labels of the levels or according to the order of the levels. (The use of \code{rep()} is explained on page \pageref{pg:seq:rep}.) -<>= +<>= # gl() keeps order of levels FCT1 <- gl(4, 3, labels = c("A", "F", "B", "Z")) FCT1 as.integer(FCT1) +@ + +<>= # factor() orders levels alphabetically FCT2 <- factor(rep(c("A", "F", "B", "Z"), times = rep(3, times = 4))) # nested calls FCT2 @@ -2564,6 +2651,10 @@ FCT2[order(as.integer(FCT2))] Run the examples in the chunk above and work out why the results differ. \end{advplayground} +\begin{explainbox} + Factors encode levels as \code{integer} values in a vector. In many cases, statistical computations, require the same information to be encoded as binary values using multiple \emph{dummy variables}. Factors are much friendlier for the user to manage. They are converted into the equivalent dummy variables when a model formula is translated into a \emph{model matrix}. This is handled transparently by most functions implementing fitting of statistical models to data (see sections \ref{sec:stat:mf} and \ref{sec:stat:formulas} on pages \pageref{sec:stat:mf} and \pageref{sec:stat:formulas}). +\end{explainbox} + <>= rm(list = setdiff(ls(pattern="*"), to.keep)) @ diff --git a/R.as.calculator.tex b/R.as.calculator.tex new file mode 100644 index 00000000..3fea2188 --- /dev/null +++ b/R.as.calculator.tex @@ -0,0 +1,428 @@ +% !Rnw root = appendix.main.Rnw + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/R.data.containers.Rnw b/R.data.containers.Rnw index 5e95daa5..f3126217 100644 --- a/R.data.containers.Rnw +++ b/R.data.containers.Rnw @@ -34,7 +34,9 @@ Any \Rlang object can have attributes, allowing objects to carry along additiona \section{Lists}\label{sec:calc:lists} \index{lists|(}\qRclass{list} -\emph{Lists'} main difference from vectors is, in \Rlang, that they can be heterogeneous. While the member elements of a vector must be \emph{atomic} values, any \Rlang object can be a list member. In \Rlang, the members of a list can be considered as following a sequence, and accessible through numerical indexes, the same as members of vectors. Members of a list as well as members of a vector can be named, and retrieved (indexed) through their names. In practice, named lists are more frequently used than named vectors. Lists are created using function \Rfunction{list()} similarly as \Rfunction{c()} is used for vectors. Members of a list can be objects differing both in their class and in their size. Lists can be nested to construct lists of lists. +In \Rlang, objects of class \Rclass{list} are in several respects similar the vectors described in chapter \ref{chap:R:as:calc} but differently to vectors, the members they contain can be heterogeneous, i.e., different members of the same list can belong to different classes. In addition, while the member elements of a vector must be \emph{atomic} values like numbers or character strings, any \Rlang object can be a list member including other lists. + +In \Rlang, the members of a list can be considered as following a sequence, and accessible through numerical indexes, the same as the members of vectors. Members of a list as well as members of a vector can be named, and retrieved (indexed) through their names. In practice, named lists are more frequently used than named vectors. Lists are created using function \Rfunction{list()} similarly as \Rfunction{c()} is used for vectors. \begin{explainbox} In \Rlang lists can have as members not only objects storing data on observations and categories, but also function definitions, model formulas, unevaluated expressions, matrices, arrays, and objects of user defined classes. @@ -315,7 +317,8 @@ rm(list = setdiff(ls(pattern="*"), to.keep)) \section{Data frames}\label{sec:R:data:frames} \index{data frames|(}\qRclass{data.frame} \index{worksheet@`worksheet'|see{data frame}} -Data frames are a special type of list, in which each element is a vector or a factor of the same length (or rarely a matrix with the same number of rows as the enclosing data frame). They are central to most data manipulation and analysis procedures in \Rlang. They are commonly used to store observations, so that some columns (or member variables) are numeric vectors containing values from measurements and others are factors describing membership into a category, such as a treatment or genotype. Columns can also be date-, time-, character-, or logical vectors. In the diagram below column \code{treatment} is a factor with two levels encoding two conditions, \code{hot} and \code{cold}. Columns \code{height} and \code{weight} are numeric vectors containing measurements. +Data frames are a special type of list, in which all members have the same length, giving origin to a matrix-like object, in which columns can belong to different classes. Most commonly the member ``columns'' are vectors or factors, but they can also be matrices with the same number of rows as the enclosing data frame, or lists with the same number of members as rows in the enclosing data frame. +Data frames are central to most data manipulation and analysis procedures in \Rlang. They are commonly used to store observations, with \code{numeric} columns holding data for continuous variables and \code{factor} columns data for categorical variables. Binary variables can be stored in \code{logical} columns. Text data can be stored in \code{character} columns. Date and time can be stored in columns of specific classes, such as \code{POSIXct}. In the diagram below, column \code{treatment} is a factor with two levels encoding two conditions, \code{hot} and \code{cold}. Columns \code{height} and \code{weight} are numeric vectors containing measurements. \begin{center} \begin{footnotesize} @@ -368,6 +371,8 @@ is.data.frame(a.df) is.list(a.df) @ +We can see above that when printed each row of a \code{data.frame} is preceded by a row name. Row names are character strings, just like column names. The \Rfunction{data.frame()} constructor adds by default row names representing running numbers. Default row names are rarely of much use, except to track insertions and deletions of rows during debugging. + \begin{playground} As the expectation is that all member variables (or ``columns'') have equal length, if vectors of different lengths are supplied as arguments, the shorter vector(s) is/are recycled, possibly several times, until the required full length is reached, as shown below for \code{treatment}. @@ -853,7 +858,7 @@ detach(my_data_frame.df) head(my_data_frame.df, 2) @ -Use of \Rscoping{attach()} and \Rscoping{detach()}, which function as a pair of ON and OFF switches, can result in an undesired after-effect on name lookup if the script terminates after \Rscoping{attach()} is executed but before \Rscoping{detach()} is called, as cleanup is not automatic. In contrast, \Rscoping{with()} and \Rscoping{within()}, being self-contained, guarantee that cleanup takes place. Consequently, the usual recommendation is to give preference to the use of \Rscoping{with()} and \Rscoping{within()} over \Rscoping{attach()} and \Rscoping{detach()}. Use of these functions not only saves typing but also makes code more readable. +Use of \Rscoping{attach()} and \Rscoping{detach()}, which function as a pair of ON and OFF switches, can result in an undesired after-effect on name lookup if the script terminates after \Rscoping{attach()} is executed but before \Rscoping{detach()} is called, as the attached object is not detached. In contrast, \Rscoping{with()} and \Rscoping{within()}, being self-contained, guarantee that cleanup takes place. Consequently, the usual recommendation is to give preference to the use of \Rscoping{with()} and \Rscoping{within()} over \Rscoping{attach()} and \Rscoping{detach()}. Use of these functions not only saves typing but also makes code more readable. \end{explainbox} \section{Reshaping and editing data frames}\label{sec:calc:reshape} @@ -928,12 +933,18 @@ attributes(a.df) \begin{explainbox} The attributes used internally by \Rlang can be directly modified by user code. In most cases this is unnecessary as \Rlang provides pairs of functions to query and set the relevant attributes. This is true for the attributes \code{dim}, \code{names} and \code{levels}. In the example below we read the attributes from a matrix. -<>= +<>= M <- matrix(1:10, ncol = 2) M +@ + +<>= attr(M, "dim") attr(M, "dim") <- c(2, 5) M +@ + +<>= attr(M, "dim") <- NULL is.vector(M) M diff --git a/R.learning.Rnw b/R.learning.Rnw index d1cb60c5..2f182475 100644 --- a/R.learning.Rnw +++ b/R.learning.Rnw @@ -66,16 +66,16 @@ Signals \emph{advanced playgrounds} sections that require more time to play with \subsection{Code conventions and syntax highlighting} -Small sections of program code interspersed within the main text, receive the name of \emph{code chunks}. In this book \Rlang code chunks are typeset in a typewriter font, using colour to highlight the different elements of the syntax, such as variables, functions, constant values, etc. \Rlang code elements embedded in the text are similarly typeset but always black. For example in the code chunk below \code{mean()} and \code{print()} are functions; 1, 5 and 3 are constant numeric values, and \code{z} is the name of a variable where the result of the computation done in the first line of code is stored. The line starting with \code{\#\# } shows what is printed or shown when executing the second statement: \code{[1] 1}. In the book \code{\#\# } is used as a marker to signal output from \Rlang, it is not part of the output. +Small sections of program code interspersed within the main text, receive the name of \emph{code chunks}. In this book \Rlang code chunks are typeset in a typewriter font, using colour to highlight the different elements of the syntax, such as variables, functions, constant values, etc. \Rlang code elements embedded in the text are similarly typeset but always black. For example in the code chunk below \code{mean()} and \code{print()} are functions; 1, 5 and 3 are constant numeric values, and \code{z} is the name of a variable where the result of the computation done in the first line of code is stored. The line starting with \code{\#\#} shows what is printed or shown when executing the second statement: \code{[1] 1}. In the book \code{\#\#} is used as a marker to signal output from \Rlang, it is not part of the output. As \code{\#} is the marker for comments in the \Rlang language, prepending \code{\#} to the output makes it possible to copy and pasted into the \Rlang console the whole contents of the code chunks as they appear in the book. <>= z <- mean(1, 5, 3) print(z) @ -When naming objects (or variables) when explaining general concepts I use short abstract names, while for real-life examples I use meaningful names. Although not required, for clarity, I use names hinting at the structure of objects stored, such as \code{mat1} for a matrix. +When explaining general concepts I use short abstract names, while for real-life examples I use descriptive names. Although not required, for clarity, I use abstract names that hint at the structure of objects stored, such as \code{mat1} for a matrix or \code{vct4} for a vector. -Code in playgrounds does not modify objects created by code examples listed outside playgrounds, and is self-contained in the sense that if earlier code is use, this is mentioned in the text of the playground. The code outside playgrounds does reuse objects created earlier in the same chapter, but is independent from code or data used in earlier chapters. +Code in playgrounds either works in isolation or if it depends on objects created in the examples in the main text, this is mentioned within the playground. In playgrounds I use names in capital letters so that they are distinct. The code outside playgrounds does reuse objects created earlier in the same section, and occasionally in earlier sections of the same chapter. \subsection{Diagrams} diff --git a/appendixes.prj b/appendixes.prj index c291ff77..7edd167a 100644 --- a/appendixes.prj +++ b/appendixes.prj @@ -4,67 +4,73 @@ 1 1 using-r-main-crc.Rnw -20 -15 -6 +22 +17 +7 using-r-main-crc.Rnw TeX:RNW:UTF-8 -134217730 0 191 13 191 17 6074 -1 6458 208 1 1 372 350 1 906 254 255 -1 0 0 33 1 0 17 191 0 -1 0 +134217730 0 114 45 114 47 6074 -1 6458 208 1 1 793 825 1 906 254 255 -1 0 0 33 1 0 47 114 0 -1 0 +using-r-main-crc.tex +TeX +1060859 0 -1 110482 -1 110454 152 152 1845 1073 1 1 148 925 -1 -1 0 0 49 -1 -1 49 1 0 110454 -1 0 -1 0 rbooks.bib BibTeX 1049586 0 667 7 905 56 38 38 1429 959 1 1 918 1300 -1 -1 0 0 21 0 0 21 1 0 56 905 0 -1 0 references.bib BibTeX 1049586 0 122 22 113 22 76 76 1467 997 1 1 442 1275 -1 -1 0 0 23 0 0 23 1 0 22 113 0 -1 0 -preface.Rnw -TeX:RNW -1060859 2 -1 20 -1 0 266 266 1252 1324 1 1 148 0 -1 -1 0 0 18 -1 -1 18 1 0 0 -1 0 -1 0 R.learning.Rnw TeX:RNW -17838075 0 -1 7751 -1 8096 304 304 1290 1362 1 1 1436 650 -1 -1 0 0 40 -1 -1 40 1 0 8096 -1 0 -1 0 +17838075 0 -1 9191 -1 9189 304 304 1290 1362 1 1 1702 275 -1 -1 0 0 40 -1 -1 40 1 0 9189 -1 0 -1 0 R.intro.Rnw TeX:RNW 17838075 0 -1 264 -1 204 228 228 1214 1286 1 1 372 200 -1 -1 0 0 30 -1 -1 30 1 0 204 -1 0 -1 0 -R.as.calculator.Rnw +preface.Rnw TeX:RNW -286273531 0 -1 50222 -1 50225 190 190 1324 1242 1 1 1156 700 -1 -1 0 0 31 -1 -1 31 3 0 50225 -1 1 113423 -1 2 16514 -1 0 -1 0 +1060859 0 -1 7713 -1 7699 266 266 1252 1324 1 1 848 850 -1 -1 0 0 18 -1 -1 18 1 0 7699 -1 0 -1 0 R.data.containers.Rnw TeX:RNW -17838075 2 -1 45562 -1 45568 190 190 1324 1242 1 1 302 1075 -1 -1 0 0 31 -1 -1 31 3 0 45568 -1 1 192 -1 2 192 -1 0 -1 0 +286273531 0 -1 59926 -1 59926 190 190 1324 1242 1 1 148 900 -1 -1 0 0 31 -1 -1 31 3 0 59926 -1 1 192 -1 2 192 -1 0 -1 0 R.scripts.Rnw TeX:RNW -17838075 2 -1 79617 -1 79591 152 152 1138 1210 1 1 148 650 -1 -1 0 0 31 -1 -1 31 2 0 79591 -1 1 57446 -1 0 -1 0 +17838075 2 -1 10920 -1 10923 152 152 1138 1210 1 1 1870 475 -1 -1 0 0 31 -1 -1 31 2 0 10923 -1 1 57446 -1 0 -1 0 R.functions.Rnw TeX:RNW 17838075 2 -1 31563 -1 31569 456 456 1442 1484 1 1 302 1025 -1 -1 0 0 31 -1 -1 31 1 0 31569 -1 0 -1 0 R.stats.rnw TeX:RNW -17838075 2 -1 16950 -1 16956 418 418 1404 1476 1 1 302 725 -1 -1 0 0 31 -1 -1 31 1 0 16956 -1 0 -1 0 +17838075 0 -1 22706 -1 24735 418 418 1404 1476 1 1 862 950 -1 -1 0 0 31 -1 -1 31 1 0 24735 -1 0 -1 0 R.data.Rnw TeX:RNW -1060859 0 -1 51366 -1 51369 342 342 1328 1400 1 1 330 475 -1 -1 0 0 31 -1 -1 31 1 0 51369 -1 0 -1 0 +1060859 2 -1 56079 -1 56083 342 342 1328 1400 1 1 204 1125 -1 -1 0 0 31 -1 -1 31 1 0 56083 -1 0 -1 0 R.plotting.Rnw TeX:RNW -17838075 0 -1 154851 -1 154850 380 380 1366 1438 1 1 357 650 -1 -1 0 0 31 -1 -1 31 1 0 154850 -1 0 -1 0 +17838075 2 -1 226474 -1 226478 380 380 1366 1438 1 1 204 1225 -1 -1 0 0 31 -1 -1 31 1 0 226478 -1 0 -1 0 R.data.io.Rnw TeX:RNW -17838075 0 -1 60315 -1 60319 494 494 1480 1522 1 1 484 450 -1 -1 0 0 31 -1 -1 31 1 0 60319 -1 0 -1 0 +17838075 0 -1 71503 -1 71653 494 494 1480 1522 1 1 148 1300 -1 -1 0 0 31 -1 -1 31 1 0 71653 -1 0 -1 0 usingr.sty TeX:STY -1060850 2 171 17 171 23 190 190 1176 1248 1 0 437 1275 -1 -1 0 0 25 0 0 25 1 0 23 171 0 0 0 -using-r-main-crc.tex +1060850 0 182 36 182 36 190 190 1176 1248 1 0 619 1025 -1 -1 0 0 25 0 0 25 1 0 36 182 0 0 0 +R.as.calculator.Rnw +TeX:RNW +17838075 0 -1 142192 -1 141977 190 190 1324 1242 1 1 414 -116 -1 -1 0 0 31 -1 -1 31 3 0 141977 -1 1 117232 -1 2 16952 -1 0 -1 0 +knitr.sty +TeX:STY +1060850 0 29 1 29 1 380 380 2073 1301 1 0 129 725 -1 -1 0 0 45 0 0 45 1 0 1 29 0 0 0 +R.as.calculator.tex TeX -269496315 8 -1 225626 -1 225610 342 342 2035 1263 1 1 148 650 -1 -1 0 0 49 -1 -1 49 1 0 225610 -1 0 -1 0 +269496315 0 -1 0 -1 0 76 76 1769 997 1 1 148 0 -1 -1 0 0 -1 -1 -1 -1 1 0 0 -1 0 0 0 +krantz.cls +TeX:STY:UNIX +269594610 1 194 1 194 36 76 76 1062 1134 1 0 619 625 -1 -1 0 0 3 0 0 3 1 0 36 194 0 0 0 using-r-main-crc.log DATA:UNIX 307331314 0 3376 1 1771 1 304 304 1997 1225 1 0 129 800 -1 -1 0 0 -1 -1 -1 -1 1 0 1 1771 0 0 0 :\Program Files\MiKTeX\tex\latex\biblatex\biblatex.sty TeX:STY:UNIX 269594610 0 47 12 45 39 152 152 1845 1073 1 0 661 -375 -1 -1 0 0 42 0 0 42 1 0 39 45 0 0 0 -krantz.cls -TeX:STY:UNIX -269594610 1 1082 1 1083 1 76 76 1062 1134 1 0 129 2325 -1 -1 0 0 3 0 0 3 1 0 1 1083 0 0 0 :\Users\Public\Desktop\Lenovo ThinkColor.lnk DATA 273744114 0 0 1 2 1 190 190 1549 1111 1 0 129 50 -1 -1 0 0 -1 -1 -1 -1 1 0 1 2 0 0 0 diff --git a/appendixes.prj.bak b/appendixes.prj.bak index 6cc96f5c..7edd167a 100644 --- a/appendixes.prj.bak +++ b/appendixes.prj.bak @@ -4,67 +4,73 @@ 1 1 using-r-main-crc.Rnw -20 -15 -6 +22 +17 +7 using-r-main-crc.Rnw TeX:RNW:UTF-8 -134217730 0 191 13 191 17 6074 -1 6458 208 1 1 372 350 1 906 254 255 -1 0 0 33 1 0 17 191 0 -1 0 +134217730 0 114 45 114 47 6074 -1 6458 208 1 1 793 825 1 906 254 255 -1 0 0 33 1 0 47 114 0 -1 0 +using-r-main-crc.tex +TeX +1060859 0 -1 110482 -1 110454 152 152 1845 1073 1 1 148 925 -1 -1 0 0 49 -1 -1 49 1 0 110454 -1 0 -1 0 rbooks.bib BibTeX 1049586 0 667 7 905 56 38 38 1429 959 1 1 918 1300 -1 -1 0 0 21 0 0 21 1 0 56 905 0 -1 0 references.bib BibTeX 1049586 0 122 22 113 22 76 76 1467 997 1 1 442 1275 -1 -1 0 0 23 0 0 23 1 0 22 113 0 -1 0 -preface.Rnw -TeX:RNW -1060859 2 -1 20 -1 0 266 266 1252 1324 1 1 148 0 -1 -1 0 0 18 -1 -1 18 1 0 0 -1 0 -1 0 R.learning.Rnw TeX:RNW -17838075 0 -1 7751 -1 8096 304 304 1290 1362 1 1 1436 650 -1 -1 0 0 40 -1 -1 40 1 0 8096 -1 0 -1 0 +17838075 0 -1 9191 -1 9189 304 304 1290 1362 1 1 1702 275 -1 -1 0 0 40 -1 -1 40 1 0 9189 -1 0 -1 0 R.intro.Rnw TeX:RNW 17838075 0 -1 264 -1 204 228 228 1214 1286 1 1 372 200 -1 -1 0 0 30 -1 -1 30 1 0 204 -1 0 -1 0 -R.as.calculator.Rnw +preface.Rnw TeX:RNW -286273531 0 -1 50090 -1 50217 190 190 1324 1242 1 1 162 725 -1 -1 0 0 31 -1 -1 31 3 0 50217 -1 1 113412 -1 2 16514 -1 0 -1 0 +1060859 0 -1 7713 -1 7699 266 266 1252 1324 1 1 848 850 -1 -1 0 0 18 -1 -1 18 1 0 7699 -1 0 -1 0 R.data.containers.Rnw TeX:RNW -17838075 2 -1 45562 -1 45568 190 190 1324 1242 1 1 302 1075 -1 -1 0 0 31 -1 -1 31 3 0 45568 -1 1 192 -1 2 192 -1 0 -1 0 +286273531 0 -1 59926 -1 59926 190 190 1324 1242 1 1 148 900 -1 -1 0 0 31 -1 -1 31 3 0 59926 -1 1 192 -1 2 192 -1 0 -1 0 R.scripts.Rnw TeX:RNW -17838075 2 -1 79617 -1 79591 152 152 1138 1210 1 1 148 650 -1 -1 0 0 31 -1 -1 31 2 0 79591 -1 1 57446 -1 0 -1 0 +17838075 2 -1 10920 -1 10923 152 152 1138 1210 1 1 1870 475 -1 -1 0 0 31 -1 -1 31 2 0 10923 -1 1 57446 -1 0 -1 0 R.functions.Rnw TeX:RNW 17838075 2 -1 31563 -1 31569 456 456 1442 1484 1 1 302 1025 -1 -1 0 0 31 -1 -1 31 1 0 31569 -1 0 -1 0 R.stats.rnw TeX:RNW -17838075 2 -1 16950 -1 16956 418 418 1404 1476 1 1 302 725 -1 -1 0 0 31 -1 -1 31 1 0 16956 -1 0 -1 0 +17838075 0 -1 22706 -1 24735 418 418 1404 1476 1 1 862 950 -1 -1 0 0 31 -1 -1 31 1 0 24735 -1 0 -1 0 R.data.Rnw TeX:RNW -1060859 0 -1 51366 -1 51369 342 342 1328 1400 1 1 330 475 -1 -1 0 0 31 -1 -1 31 1 0 51369 -1 0 -1 0 +1060859 2 -1 56079 -1 56083 342 342 1328 1400 1 1 204 1125 -1 -1 0 0 31 -1 -1 31 1 0 56083 -1 0 -1 0 R.plotting.Rnw TeX:RNW -17838075 0 -1 154851 -1 154850 380 380 1366 1438 1 1 357 650 -1 -1 0 0 31 -1 -1 31 1 0 154850 -1 0 -1 0 +17838075 2 -1 226474 -1 226478 380 380 1366 1438 1 1 204 1225 -1 -1 0 0 31 -1 -1 31 1 0 226478 -1 0 -1 0 R.data.io.Rnw TeX:RNW -17838075 0 -1 60315 -1 60319 494 494 1480 1522 1 1 484 450 -1 -1 0 0 31 -1 -1 31 1 0 60319 -1 0 -1 0 +17838075 0 -1 71503 -1 71653 494 494 1480 1522 1 1 148 1300 -1 -1 0 0 31 -1 -1 31 1 0 71653 -1 0 -1 0 usingr.sty TeX:STY -1060850 2 171 17 171 23 190 190 1176 1248 1 0 437 1275 -1 -1 0 0 25 0 0 25 1 0 23 171 0 0 0 -using-r-main-crc.tex +1060850 0 182 36 182 36 190 190 1176 1248 1 0 619 1025 -1 -1 0 0 25 0 0 25 1 0 36 182 0 0 0 +R.as.calculator.Rnw +TeX:RNW +17838075 0 -1 142192 -1 141977 190 190 1324 1242 1 1 414 -116 -1 -1 0 0 31 -1 -1 31 3 0 141977 -1 1 117232 -1 2 16952 -1 0 -1 0 +knitr.sty +TeX:STY +1060850 0 29 1 29 1 380 380 2073 1301 1 0 129 725 -1 -1 0 0 45 0 0 45 1 0 1 29 0 0 0 +R.as.calculator.tex TeX -269496315 8 -1 225626 -1 225610 342 342 2035 1263 1 1 148 650 -1 -1 0 0 49 -1 -1 49 1 0 225610 -1 0 -1 0 +269496315 0 -1 0 -1 0 76 76 1769 997 1 1 148 0 -1 -1 0 0 -1 -1 -1 -1 1 0 0 -1 0 0 0 +krantz.cls +TeX:STY:UNIX +269594610 1 194 1 194 36 76 76 1062 1134 1 0 619 625 -1 -1 0 0 3 0 0 3 1 0 36 194 0 0 0 using-r-main-crc.log DATA:UNIX 307331314 0 3376 1 1771 1 304 304 1997 1225 1 0 129 800 -1 -1 0 0 -1 -1 -1 -1 1 0 1 1771 0 0 0 :\Program Files\MiKTeX\tex\latex\biblatex\biblatex.sty TeX:STY:UNIX 269594610 0 47 12 45 39 152 152 1845 1073 1 0 661 -375 -1 -1 0 0 42 0 0 42 1 0 39 45 0 0 0 -krantz.cls -TeX:STY:UNIX -269594610 1 1082 1 1083 1 76 76 1062 1134 1 0 129 2325 -1 -1 0 0 3 0 0 3 1 0 1 1083 0 0 0 :\Users\Public\Desktop\Lenovo ThinkColor.lnk DATA 273744114 0 0 1 2 1 190 190 1549 1111 1 0 129 50 -1 -1 0 0 -1 -1 -1 -1 1 0 1 2 0 0 0 diff --git a/cloudindex.idx b/cloudindex.idx index 3f424b53..7d125b3a 100644 --- a/cloudindex.idx +++ b/cloudindex.idx @@ -1,7 +1,7 @@ +\indexentry{help()}{16} \indexentry{help()}{17} \indexentry{help()}{17} -\indexentry{help()}{17} -\indexentry{print()}{17} +\indexentry{print()}{18} \indexentry{numeric}{24} \indexentry{+}{24} \indexentry{-}{24} @@ -10,13 +10,14 @@ \indexentry{exp()}{25} \indexentry{cos()}{25} \indexentry{pi}{25} +\indexentry{pi}{25} +\indexentry{cos()}{25} \indexentry{sqrt()}{25} \indexentry{sin()}{25} \indexentry{log()}{25} \indexentry{log10()}{25} \indexentry{log2()}{25} \indexentry{exp()}{25} -\indexentry{pi}{25} \indexentry{<-}{26} \indexentry{->}{27} \indexentry{=}{27} @@ -32,11 +33,11 @@ \indexentry{c()}{28} \indexentry{length()}{28} \indexentry{append()}{29} -\indexentry{seq()}{30} -\indexentry{:}{30} -\indexentry{rep()}{30} +\indexentry{seq()}{29} +\indexentry{:}{29} +\indexentry{rep()}{29} +\indexentry{numeric()}{31} \indexentry{numeric()}{31} -\indexentry{numeric()}{32} \indexentry{NA}{32} \indexentry{NA}{32} \indexentry{NA}{32} @@ -47,58 +48,59 @@ \indexentry{-Inf}{32} \indexentry{Inf}{32} \indexentry{-Inf}{32} -\indexentry{NA}{33} -\indexentry{NA}{33} +\indexentry{NA}{32} +\indexentry{NA}{32} \indexentry{NA}{33} \indexentry{NA}{33} \indexentry{NA}{33} \indexentry{is.na()}{33} \indexentry{integer}{33} -\indexentry{\%/\%}{34} -\indexentry{\%\%}{34} -\indexentry{integer}{35} +\indexentry{\%/\%}{33} +\indexentry{\%\%}{33} +\indexentry{integer}{34} +\indexentry{double}{34} +\indexentry{integer}{34} +\indexentry{integer}{34} +\indexentry{double}{34} +\indexentry{.Machine\$double.eps}{35} +\indexentry{.Machine\$double.neg.eps}{35} +\indexentry{.Machine\$double.max}{35} \indexentry{double}{35} -\indexentry{integer}{35} -\indexentry{integer}{35} -\indexentry{double}{35} -\indexentry{.Machine\$double.eps}{36} -\indexentry{.Machine\$double.neg.eps}{36} -\indexentry{.Machine\$double.max}{36} -\indexentry{double}{36} -\indexentry{.Machine\$double.min}{36} -\indexentry{.Machine\$double.xmax}{36} -\indexentry{.Machine\$integer.max}{36} +\indexentry{.Machine\$double.min}{35} +\indexentry{.Machine\$double.xmax}{35} +\indexentry{.Machine\$integer.max}{35} \indexentry{integer}{36} \indexentry{integer}{36} \indexentry{-Inf}{36} \indexentry{Inf}{36} -\indexentry{double}{37} -\indexentry{integer}{37} -\indexentry{double}{37} -\indexentry{integer}{37} -\indexentry{integer}{37} -\indexentry{\^{}}{37} -\indexentry{double}{37} -\indexentry{*}{37} -\indexentry{round()}{37} +\indexentry{double}{36} +\indexentry{integer}{36} +\indexentry{double}{36} +\indexentry{integer}{36} +\indexentry{integer}{36} +\indexentry{\^{}}{36} +\indexentry{double}{36} +\indexentry{*}{36} +\indexentry{round()}{36} \indexentry{signif()}{37} +\indexentry{trunc()}{37} +\indexentry{ceiling()}{37} +\indexentry{trunc()}{38} \indexentry{trunc()}{38} \indexentry{ceiling()}{38} -\indexentry{trunc()}{39} -\indexentry{trunc()}{39} -\indexentry{ceiling()}{39} -\indexentry{abs()}{39} -\indexentry{+}{39} -\indexentry{-}{39} -\indexentry{trunc()}{39} -\indexentry{ceiling()}{39} -\indexentry{trunc()}{39} -\indexentry{ceiling()}{39} -\indexentry{remove()}{39} -\indexentry{objects()}{39} -\indexentry{remove()}{39} -\indexentry{objects()}{39} -\indexentry{remove()}{39} +\indexentry{abs()}{38} +\indexentry{+}{38} +\indexentry{-}{38} +\indexentry{trunc()}{38} +\indexentry{ceiling()}{38} +\indexentry{trunc()}{38} +\indexentry{ceiling()}{38} +\indexentry{complex}{38} +\indexentry{remove()}{38} +\indexentry{objects()}{38} +\indexentry{remove()}{38} +\indexentry{objects()}{38} +\indexentry{remove()}{38} \indexentry{ls()}{39} \indexentry{objects()}{39} \indexentry{rm()}{39} @@ -106,1306 +108,1310 @@ \indexentry{objects()}{39} \indexentry{remove()}{39} \indexentry{objects()}{39} -\indexentry{character}{40} -\indexentry{print()}{41} -\indexentry{cat()}{41} -\indexentry{cat()}{41} -\indexentry{print()}{41} -\indexentry{cat()}{41} -\indexentry{nchar()}{41} +\indexentry{POSIXlt}{39} +\indexentry{POSIXct}{39} +\indexentry{character}{39} +\indexentry{print()}{40} +\indexentry{cat()}{40} +\indexentry{cat()}{40} +\indexentry{print()}{40} +\indexentry{cat()}{40} +\indexentry{nchar()}{40} \indexentry{toupper()}{41} \indexentry{tolower()}{41} \indexentry{strtrim()}{41} \indexentry{strwrap()}{41} -\indexentry{cat()}{42} +\indexentry{cat()}{41} \indexentry{paste()}{42} -\indexentry{paste()}{43} -\indexentry{strrep()}{43} -\indexentry{rep()}{43} +\indexentry{paste()}{42} +\indexentry{strrep()}{42} +\indexentry{rep()}{42} \indexentry{trimws()}{43} -\indexentry{trimws()}{44} -\indexentry{character}{44} -\indexentry{substring()}{44} -\indexentry{substr()}{44} -\indexentry{sub()}{45} -\indexentry{gsub()}{45} -\indexentry{sub()}{45} -\indexentry{gsub()}{45} -\indexentry{sub()}{45} +\indexentry{trimws()}{43} +\indexentry{character}{43} +\indexentry{substring()}{43} +\indexentry{substr()}{43} +\indexentry{sub()}{44} +\indexentry{gsub()}{44} +\indexentry{sub()}{44} +\indexentry{gsub()}{44} +\indexentry{sub()}{44} +\indexentry{gsub()}{44} +\indexentry{grep()}{44} +\indexentry{grepl()}{44} +\indexentry{grep()}{44} \indexentry{gsub()}{45} \indexentry{grep()}{45} \indexentry{grepl()}{45} -\indexentry{grep()}{45} -\indexentry{gsub()}{46} -\indexentry{grep()}{46} -\indexentry{grepl()}{46} -\indexentry{strsplit()}{47} -\indexentry{logical}{49} -\indexentry{logical}{49} -\indexentry{\&}{50} -\indexentry{\textbar }{50} -\indexentry{\&\&}{50} -\indexentry{\textbar \textbar }{50} -\indexentry{!}{50} -\indexentry{any()}{50} -\indexentry{all()}{50} +\indexentry{strsplit()}{46} +\indexentry{logical}{47} +\indexentry{logical}{48} +\indexentry{\&}{48} +\indexentry{\textbar }{48} +\indexentry{\&\&}{48} +\indexentry{\textbar \textbar }{48} +\indexentry{!}{48} +\indexentry{any()}{48} +\indexentry{all()}{48} +\indexentry{all()}{49} +\indexentry{any()}{49} +\indexentry{is.na()}{50} \indexentry{all()}{50} +\indexentry{is.na()}{50} \indexentry{any()}{50} -\indexentry{is.na()}{51} -\indexentry{all()}{51} -\indexentry{is.na()}{51} -\indexentry{any()}{52} -\indexentry{>}{52} -\indexentry{<}{52} -\indexentry{>=}{52} -\indexentry{<=}{52} -\indexentry{==}{52} -\indexentry{!=}{52} -\indexentry{\&}{53} -\indexentry{\textbar }{54} -\indexentry{logical}{54} -\indexentry{abs()}{54} -\indexentry{\%in\%}{57} -\indexentry{is.element()}{57} -\indexentry{!}{57} -\indexentry{\%in\%}{57} -\indexentry{is.element()}{57} -\indexentry{|}{57} -\indexentry{\%in\%}{57} -\indexentry{is.element()}{57} -\indexentry{\%in\%}{57} -\indexentry{match()}{57} -\indexentry{match()}{57} -\indexentry{charmatch()}{57} -\indexentry{pmatch()}{57} -\indexentry{\%in\%}{58} -\indexentry{unique()}{58} -\indexentry{unique()}{58} -\indexentry{duplicated()}{58} -\indexentry{unique()}{58} -\indexentry{numeric}{59} -\indexentry{character}{59} -\indexentry{numeric}{59} -\indexentry{class()}{60} -\indexentry{inherits()}{60} -\indexentry{is.character()}{60} -\indexentry{is.numeric()}{60} -\indexentry{is.logical()}{60} -\indexentry{as.character()}{62} -\indexentry{as.numeric()}{62} -\indexentry{as.logical()}{62} -\indexentry{as.character()}{62} -\indexentry{as.numeric()}{62} -\indexentry{as.logical()}{62} -\indexentry{trunc()}{62} -\indexentry{as.integer()}{62} -\indexentry{length()}{63} -\indexentry{as.numeric()}{63} -\indexentry{format()}{63} -\indexentry{sprintf()}{63} -\indexentry{character}{63} -\indexentry{format()}{63} -\indexentry{sprintf()}{63} -\indexentry{format()}{63} -\indexentry{print()}{63} -\indexentry{format()}{63} -\indexentry{sprintf()}{63} -\indexentry{format()}{64} -\indexentry{sprintf()}{64} -\indexentry{sprintf()}{64} -\indexentry{NA}{64} -\indexentry{NA}{64} -\indexentry{NA\_real\_}{64} -\indexentry{NA\_character\_}{64} -\indexentry{NA}{64} -\indexentry{NA}{64} -\indexentry{logical}{64} -\indexentry{NA}{64} -\indexentry{NA}{64} -\indexentry{letters}{65} -\indexentry{LETTERS}{65} -\indexentry{month.name}{65} -\indexentry{month.abb}{65} -\indexentry{<-}{69} -\indexentry{integer}{70} -\indexentry{numeric}{70} -\indexentry{double}{70} -\indexentry{sort()}{71} -\indexentry{order()}{71} -\indexentry{sort()}{71} -\indexentry{rle()}{71} -\indexentry{matrix}{72} -\indexentry{array}{72} -\indexentry{length()}{73} -\indexentry{ncol()}{73} -\indexentry{nrow()}{73} +\indexentry{>}{50} +\indexentry{<}{50} +\indexentry{>=}{50} +\indexentry{<=}{50} +\indexentry{==}{50} +\indexentry{!=}{50} +\indexentry{\&}{51} +\indexentry{\textbar }{52} +\indexentry{logical}{52} +\indexentry{abs()}{52} +\indexentry{\%in\%}{54} +\indexentry{is.element()}{54} +\indexentry{!}{55} +\indexentry{\%in\%}{55} +\indexentry{is.element()}{55} +\indexentry{|}{55} +\indexentry{\%in\%}{55} +\indexentry{is.element()}{55} +\indexentry{\%in\%}{55} +\indexentry{match()}{55} +\indexentry{match()}{55} +\indexentry{charmatch()}{55} +\indexentry{pmatch()}{55} +\indexentry{\%in\%}{55} +\indexentry{unique()}{55} +\indexentry{unique()}{55} +\indexentry{duplicated()}{56} +\indexentry{unique()}{56} +\indexentry{numeric}{56} +\indexentry{character}{56} +\indexentry{numeric}{57} +\indexentry{class()}{57} +\indexentry{inherits()}{57} +\indexentry{is.character()}{58} +\indexentry{is.numeric()}{58} +\indexentry{is.logical()}{58} +\indexentry{as.character()}{59} +\indexentry{as.numeric()}{59} +\indexentry{as.logical()}{59} +\indexentry{as.character()}{60} +\indexentry{as.numeric()}{60} +\indexentry{as.logical()}{60} +\indexentry{as.integer()}{60} +\indexentry{trunc()}{60} +\indexentry{as.integer()}{60} +\indexentry{length()}{60} +\indexentry{as.numeric()}{60} +\indexentry{format()}{60} +\indexentry{sprintf()}{60} +\indexentry{character}{60} +\indexentry{format()}{61} +\indexentry{sprintf()}{61} +\indexentry{format()}{61} +\indexentry{print()}{61} +\indexentry{format()}{61} +\indexentry{sprintf()}{61} +\indexentry{format()}{61} +\indexentry{sprintf()}{61} +\indexentry{sprintf()}{61} +\indexentry{NA}{62} +\indexentry{NA}{62} +\indexentry{NA\_real\_}{62} +\indexentry{NA\_character\_}{62} +\indexentry{NA}{62} +\indexentry{NA}{62} +\indexentry{logical}{62} +\indexentry{NA}{62} +\indexentry{NA}{62} +\indexentry{letters}{63} +\indexentry{LETTERS}{63} +\indexentry{month.name}{63} +\indexentry{month.abb}{63} +\indexentry{<-}{66} +\indexentry{integer}{67} +\indexentry{numeric}{67} +\indexentry{double}{67} +\indexentry{sort()}{68} +\indexentry{order()}{68} +\indexentry{sort()}{68} +\indexentry{rle()}{68} +\indexentry{matrix}{69} +\indexentry{array}{69} +\indexentry{length()}{69} +\indexentry{ncol()}{69} +\indexentry{nrow()}{69} +\indexentry{dim()}{69} +\indexentry{is.matrix()}{69} +\indexentry{matrix()}{70} +\indexentry{as.matrix()}{70} +\indexentry{matrix()}{70} +\indexentry{as.matrix()}{70} +\indexentry{matrix()}{70} +\indexentry{matrix}{73} \indexentry{dim()}{73} -\indexentry{is.matrix()}{73} -\indexentry{matrix()}{73} -\indexentry{as.matrix()}{73} -\indexentry{matrix()}{73} -\indexentry{as.matrix()}{73} -\indexentry{matrix()}{73} -\indexentry{matrix}{77} -\indexentry{dim()}{77} -\indexentry{is.array()}{77} -\indexentry{array()}{78} -\indexentry{unlist()}{78} -\indexentry{as.vector()}{78} -\indexentry{t()}{79} -\indexentry{t()}{79} -\indexentry{\%*\%}{79} -\indexentry{crossprod()}{80} -\indexentry{diag()}{80} -\indexentry{factor}{80} +\indexentry{is.array()}{73} +\indexentry{array()}{74} +\indexentry{as.vector()}{75} +\indexentry{matrix}{75} +\indexentry{t()}{76} +\indexentry{\%*\%}{76} +\indexentry{diag()}{76} +\indexentry{solve()}{76} +\indexentry{factor}{77} +\indexentry{factor()}{77} +\indexentry{ordered()}{77} +\indexentry{factor()}{77} +\indexentry{ordered()}{77} +\indexentry{gl()}{78} +\indexentry{gl()}{78} +\indexentry{factor()}{78} +\indexentry{factor()}{78} +\indexentry{factor()}{79} +\indexentry{factor()}{79} +\indexentry{levels()}{79} +\indexentry{as.numeric()}{80} +\indexentry{as.numeric()}{80} +\indexentry{as.character()}{80} +\indexentry{as.numeric()}{80} +\indexentry{as.numeric()}{80} \indexentry{factor()}{80} -\indexentry{ordered()}{80} -\indexentry{factor()}{80} -\indexentry{ordered()}{80} -\indexentry{gl()}{81} -\indexentry{gl()}{81} -\indexentry{factor()}{81} -\indexentry{factor()}{81} -\indexentry{factor()}{82} -\indexentry{factor()}{82} -\indexentry{levels()}{83} -\indexentry{as.numeric()}{84} -\indexentry{as.numeric()}{84} -\indexentry{as.character()}{84} -\indexentry{as.numeric()}{84} -\indexentry{as.numeric()}{84} -\indexentry{factor()}{84} -\indexentry{levels()}{84} -\indexentry{rev()}{84} -\indexentry{reorder()}{85} -\indexentry{sort()}{85} -\indexentry{order()}{85} -\indexentry{list}{88} -\indexentry{list()}{88} -\indexentry{c()}{88} -\indexentry{[ ]}{89} +\indexentry{levels()}{80} +\indexentry{rev()}{81} +\indexentry{reorder()}{81} +\indexentry{sort()}{82} +\indexentry{order()}{82} +\indexentry{list}{84} +\indexentry{list}{84} +\indexentry{list()}{84} +\indexentry{c()}{84} +\indexentry{[ ]}{85} +\indexentry{[ ]}{85} +\indexentry{[[ ]]}{86} +\indexentry{[[ ]]}{86} +\indexentry{[ ]}{86} +\indexentry{c()}{87} +\indexentry{append()}{87} +\indexentry{str()}{88} +\indexentry{[[ ]]}{89} \indexentry{[ ]}{89} -\indexentry{[[ ]]}{90} -\indexentry{[[ ]]}{90} -\indexentry{[ ]}{90} -\indexentry{c()}{92} -\indexentry{append()}{92} -\indexentry{str()}{92} +\indexentry{print()}{89} +\indexentry{str()}{89} +\indexentry{str()}{89} +\indexentry{unlist()}{90} +\indexentry{str()}{90} +\indexentry{unlist()}{90} +\indexentry{unname()}{91} +\indexentry{data.frame}{91} +\indexentry{data.frame()}{92} +\indexentry{list}{92} +\indexentry{data.frame()}{92} +\indexentry{class()}{93} +\indexentry{data.frame}{93} \indexentry{[[ ]]}{93} -\indexentry{[ ]}{93} -\indexentry{print()}{94} -\indexentry{str()}{94} -\indexentry{str()}{94} -\indexentry{unlist()}{94} -\indexentry{str()}{95} -\indexentry{unlist()}{95} -\indexentry{unname()}{95} -\indexentry{data.frame}{96} -\indexentry{data.frame()}{96} -\indexentry{list}{96} -\indexentry{class()}{97} -\indexentry{data.frame}{97} -\indexentry{[[ ]]}{97} -\indexentry{\$}{97} +\indexentry{\$}{93} +\indexentry{[[ ]]}{95} +\indexentry{[ ]}{95} +\indexentry{[[ ]]}{96} +\indexentry{\$}{96} +\indexentry{\$}{96} +\indexentry{\$}{96} +\indexentry{\$}{96} +\indexentry{\$}{96} +\indexentry{[[ ]]}{96} +\indexentry{\$}{96} +\indexentry{[[ ]]}{96} +\indexentry{\$}{96} +\indexentry{[ ]}{97} +\indexentry{I()}{97} +\indexentry{I()}{97} +\indexentry{I()}{98} +\indexentry{I()}{98} +\indexentry{I()}{98} +\indexentry{data.frame()}{99} +\indexentry{subset()}{99} +\indexentry{subset()}{99} +\indexentry{[ ]}{99} \indexentry{[[ ]]}{99} +\indexentry{\$}{99} +\indexentry{subset()}{99} \indexentry{[ ]}{99} -\indexentry{[[ ]]}{100} -\indexentry{\$}{100} -\indexentry{\$}{100} -\indexentry{\$}{100} -\indexentry{\$}{100} -\indexentry{\$}{101} -\indexentry{[[ ]]}{101} -\indexentry{\$}{101} -\indexentry{[[ ]]}{101} -\indexentry{\$}{101} +\indexentry{[[ ]]}{99} +\indexentry{\$}{99} +\indexentry{subset()}{100} +\indexentry{attach()}{100} +\indexentry{with()}{100} \indexentry{[ ]}{101} -\indexentry{I()}{102} -\indexentry{I()}{102} -\indexentry{I()}{103} -\indexentry{I()}{103} -\indexentry{I()}{103} -\indexentry{data.frame()}{103} -\indexentry{subset()}{103} -\indexentry{subset()}{104} +\indexentry{<-}{101} +\indexentry{summary()}{101} +\indexentry{sapply()}{101} +\indexentry{lapply()}{101} +\indexentry{vapply()}{101} +\indexentry{split()}{102} +\indexentry{unsplit()}{102} +\indexentry{split()}{102} +\indexentry{split()}{102} +\indexentry{aggregate()}{102} +\indexentry{aggregate()}{102} +\indexentry{aggregate()}{103} +\indexentry{aggregate()}{103} +\indexentry{aggregate()}{103} +\indexentry{aggregate()}{103} \indexentry{[ ]}{104} -\indexentry{[[ ]]}{104} -\indexentry{\$}{104} -\indexentry{subset()}{104} +\indexentry{order()}{104} +\indexentry{order()}{104} +\indexentry{order()}{104} +\indexentry{order()}{104} +\indexentry{order()}{104} +\indexentry{matrix}{104} +\indexentry{array}{104} \indexentry{[ ]}{104} -\indexentry{[[ ]]}{104} -\indexentry{\$}{104} -\indexentry{subset()}{105} -\indexentry{attach()}{105} -\indexentry{with()}{105} -\indexentry{[ ]}{106} -\indexentry{<-}{106} -\indexentry{summary()}{106} -\indexentry{sapply()}{106} -\indexentry{lapply()}{106} -\indexentry{vapply()}{106} -\indexentry{split()}{107} -\indexentry{unsplit()}{107} -\indexentry{split()}{107} -\indexentry{split()}{107} -\indexentry{aggregate()}{107} -\indexentry{aggregate()}{108} -\indexentry{aggregate()}{108} -\indexentry{aggregate()}{108} -\indexentry{aggregate()}{108} -\indexentry{aggregate()}{109} -\indexentry{[ ]}{109} -\indexentry{order()}{110} -\indexentry{order()}{110} -\indexentry{order()}{110} -\indexentry{order()}{110} -\indexentry{order()}{110} -\indexentry{matrix}{110} -\indexentry{array}{110} -\indexentry{[ ]}{110} -\indexentry{sort()}{110} -\indexentry{order()}{110} -\indexentry{order()}{110} -\indexentry{order()}{110} -\indexentry{[ ]}{111} -\indexentry{transform()}{111} -\indexentry{with()}{111} -\indexentry{within()}{111} -\indexentry{with()}{112} -\indexentry{within()}{112} -\indexentry{with()}{112} -\indexentry{within()}{112} -\indexentry{attach()}{112} -\indexentry{detach()}{112} -\indexentry{attach()}{113} -\indexentry{detach()}{113} -\indexentry{attach()}{113} -\indexentry{detach()}{113} -\indexentry{attach()}{113} -\indexentry{detach()}{113} -\indexentry{attach()}{113} -\indexentry{detach()}{113} -\indexentry{with()}{113} -\indexentry{within()}{113} -\indexentry{with()}{113} -\indexentry{within()}{113} -\indexentry{attach()}{113} -\indexentry{detach()}{113} -\indexentry{reshape()}{114} -\indexentry{View()}{114} -\indexentry{edit()}{114} -\indexentry{fix()}{114} -\indexentry{View()}{114} -\indexentry{edit()}{114} -\indexentry{fix()}{114} -\indexentry{comment()}{114} -\indexentry{comment()<-}{114} -\indexentry{names()}{115} -\indexentry{dim()}{115} -\indexentry{levels()}{115} -\indexentry{names()<-}{115} -\indexentry{dim()<-}{115} -\indexentry{levels()<-}{115} -\indexentry{attr()}{115} -\indexentry{attr()<-}{115} -\indexentry{attributes()}{115} -\indexentry{attr()}{115} -\indexentry{attr()<-}{115} -\indexentry{attributes()}{115} -\indexentry{str()}{115} -\indexentry{dim()}{116} -\indexentry{attr()}{116} -\indexentry{lm()}{116} -\indexentry{data()}{117} -\indexentry{data()}{117} -\indexentry{save()}{117} -\indexentry{save()}{117} -\indexentry{load()}{118} -\indexentry{ls()}{118} -\indexentry{ls()}{118} -\indexentry{unlink()}{118} -\indexentry{readRDS()}{119} -\indexentry{saveRDS()}{119} -\indexentry{plot()}{119} -\indexentry{plot()}{120} -\indexentry{plot()}{121} -\indexentry{plot()}{121} -\indexentry{source()}{125} -\indexentry{print()}{125} -\indexentry{ggplot()}{125} -\indexentry{print()}{125} -\indexentry{\textbar >}{133} -\indexentry{\textbar >}{133} -\indexentry{->}{133} -\indexentry{<-}{133} -\indexentry{\textbar >}{133} -\indexentry{subset()}{134} -\indexentry{assign()}{134} -\indexentry{within()}{134} -\indexentry{subset()}{134} -\indexentry{getElement()}{135} -\indexentry{if ()}{136} -\indexentry{if () \ldots \ else}{136} -\indexentry{if()}{137} -\indexentry{logical}{138} -\indexentry{numeric}{140} -\indexentry{logical}{140} -\indexentry{if ()}{140} -\indexentry{if () \ldots \ else}{140} -\indexentry{switch()}{140} -\indexentry{if ()}{140} -\indexentry{switch()}{140} -\indexentry{switch()}{140} -\indexentry{switch()}{140} -\indexentry{switch()}{140} -\indexentry{switch()}{141} -\indexentry{switch()}{141} -\indexentry{switch()}{141} -\indexentry{switch()}{141} -\indexentry{switch()}{142} -\indexentry{switch()}{143} -\indexentry{switch()}{143} -\indexentry{switch()}{143} -\indexentry{switch()}{143} -\indexentry{ifelse()}{143} -\indexentry{ifelse()}{143} -\indexentry{ifelse()}{144} -\indexentry{ifelse()}{144} -\indexentry{ifelse()}{145} -\indexentry{for}{145} +\indexentry{sort()}{105} +\indexentry{order()}{105} +\indexentry{order()}{105} +\indexentry{order()}{105} +\indexentry{[ ]}{105} +\indexentry{transform()}{106} +\indexentry{with()}{106} +\indexentry{within()}{106} +\indexentry{with()}{106} +\indexentry{within()}{106} +\indexentry{with()}{107} +\indexentry{within()}{107} +\indexentry{attach()}{107} +\indexentry{detach()}{107} +\indexentry{attach()}{107} +\indexentry{detach()}{107} +\indexentry{attach()}{107} +\indexentry{detach()}{107} +\indexentry{attach()}{108} +\indexentry{detach()}{108} +\indexentry{attach()}{108} +\indexentry{detach()}{108} +\indexentry{with()}{108} +\indexentry{within()}{108} +\indexentry{with()}{108} +\indexentry{within()}{108} +\indexentry{attach()}{108} +\indexentry{detach()}{108} +\indexentry{reshape()}{108} +\indexentry{View()}{108} +\indexentry{edit()}{108} +\indexentry{fix()}{108} +\indexentry{View()}{108} +\indexentry{edit()}{108} +\indexentry{fix()}{108} +\indexentry{comment()}{109} +\indexentry{comment()<-}{109} +\indexentry{names()}{109} +\indexentry{dim()}{109} +\indexentry{levels()}{109} +\indexentry{names()<-}{109} +\indexentry{dim()<-}{109} +\indexentry{levels()<-}{109} +\indexentry{attr()}{109} +\indexentry{attr()<-}{109} +\indexentry{attributes()}{109} +\indexentry{attr()}{109} +\indexentry{attr()<-}{109} +\indexentry{attributes()}{109} +\indexentry{str()}{109} +\indexentry{dim()}{111} +\indexentry{attr()}{111} +\indexentry{lm()}{111} +\indexentry{data()}{111} +\indexentry{data()}{111} +\indexentry{save()}{112} +\indexentry{save()}{112} +\indexentry{load()}{112} +\indexentry{ls()}{112} +\indexentry{ls()}{113} +\indexentry{unlink()}{113} +\indexentry{readRDS()}{113} +\indexentry{saveRDS()}{113} +\indexentry{plot()}{113} +\indexentry{plot()}{114} +\indexentry{plot()}{115} +\indexentry{plot()}{115} +\indexentry{source()}{121} +\indexentry{print()}{121} +\indexentry{ggplot()}{121} +\indexentry{print()}{121} +\indexentry{\textbar >}{129} +\indexentry{\textbar >}{129} +\indexentry{->}{129} +\indexentry{<-}{129} +\indexentry{\textbar >}{129} +\indexentry{subset()}{130} +\indexentry{assign()}{130} +\indexentry{within()}{130} +\indexentry{subset()}{130} +\indexentry{getElement()}{131} +\indexentry{if ()}{132} +\indexentry{if () \ldots \ else}{132} +\indexentry{if()}{133} +\indexentry{logical}{133} +\indexentry{numeric}{135} +\indexentry{logical}{135} +\indexentry{if ()}{135} +\indexentry{if () \ldots \ else}{135} +\indexentry{switch()}{135} +\indexentry{if ()}{135} +\indexentry{switch()}{135} +\indexentry{switch()}{135} +\indexentry{switch()}{136} +\indexentry{switch()}{136} +\indexentry{switch()}{136} +\indexentry{switch()}{136} +\indexentry{switch()}{136} +\indexentry{switch()}{137} +\indexentry{switch()}{137} +\indexentry{switch()}{138} +\indexentry{switch()}{138} +\indexentry{switch()}{138} +\indexentry{switch()}{138} +\indexentry{ifelse()}{138} +\indexentry{ifelse()}{138} +\indexentry{ifelse()}{139} +\indexentry{ifelse()}{140} +\indexentry{ifelse()}{140} +\indexentry{for}{140} +\indexentry{while}{140} +\indexentry{repeat}{140} +\indexentry{for}{141} +\indexentry{for}{141} +\indexentry{for}{142} +\indexentry{[ ]}{142} +\indexentry{print()}{143} +\indexentry{seq()}{143} +\indexentry{for}{144} +\indexentry{break()}{144} +\indexentry{next()}{144} +\indexentry{for}{144} +\indexentry{break()}{144} +\indexentry{next()}{144} +\indexentry{for}{144} +\indexentry{while}{144} +\indexentry{repeat}{144} +\indexentry{while}{144} +\indexentry{while}{145} \indexentry{while}{145} -\indexentry{repeat}{145} -\indexentry{for}{145} -\indexentry{for}{145} +\indexentry{while}{146} +\indexentry{break()}{146} +\indexentry{repeat}{146} +\indexentry{break()}{146} +\indexentry{break()}{146} +\indexentry{break()}{147} \indexentry{for}{147} -\indexentry{[ ]}{147} -\indexentry{print()}{148} -\indexentry{seq()}{149} -\indexentry{for}{149} -\indexentry{break()}{149} -\indexentry{next()}{149} -\indexentry{for}{149} -\indexentry{break()}{149} -\indexentry{next()}{149} -\indexentry{for}{149} -\indexentry{while}{149} -\indexentry{repeat}{149} -\indexentry{while}{150} -\indexentry{while}{151} -\indexentry{while}{151} -\indexentry{while}{151} -\indexentry{break()}{151} -\indexentry{repeat}{151} -\indexentry{break()}{151} -\indexentry{break()}{151} -\indexentry{break()}{152} -\indexentry{for}{152} -\indexentry{while}{152} -\indexentry{repeat}{152} -\indexentry{system.time()}{152} -\indexentry{for}{152} -\indexentry{system.time()}{153} +\indexentry{while}{147} +\indexentry{repeat}{147} +\indexentry{system.time()}{147} +\indexentry{for}{147} +\indexentry{system.time()}{148} +\indexentry{apply()}{149} +\indexentry{lapply()}{149} +\indexentry{sapply()}{149} +\indexentry{on.exit()}{150} +\indexentry{on.exit()}{150} +\indexentry{lapply()}{151} +\indexentry{sapply()}{151} +\indexentry{lapply()}{151} +\indexentry{vapply()}{151} +\indexentry{sapply()}{151} +\indexentry{apply()}{151} +\indexentry{lapply()}{151} +\indexentry{apply()}{151} +\indexentry{lapply()}{151} +\indexentry{sapply()}{151} +\indexentry{apply()}{151} +\indexentry{lapply()}{151} +\indexentry{sapply()}{151} +\indexentry{vapply()}{151} +\indexentry{lapply()}{152} +\indexentry{sapply()}{152} +\indexentry{vapply()}{153} +\indexentry{vapply()}{153} +\indexentry{summary()}{153} +\indexentry{apply()}{154} +\indexentry{mean()}{154} +\indexentry{apply()}{154} +\indexentry{apply()}{154} +\indexentry{apply()}{154} +\indexentry{t()}{155} \indexentry{apply()}{155} -\indexentry{lapply()}{155} -\indexentry{sapply()}{155} -\indexentry{on.exit()}{155} -\indexentry{on.exit()}{155} -\indexentry{lapply()}{156} -\indexentry{sapply()}{156} -\indexentry{lapply()}{156} -\indexentry{vapply()}{156} -\indexentry{sapply()}{156} -\indexentry{apply()}{156} -\indexentry{lapply()}{156} -\indexentry{apply()}{156} -\indexentry{lapply()}{156} -\indexentry{sapply()}{156} -\indexentry{apply()}{156} -\indexentry{lapply()}{157} -\indexentry{sapply()}{157} -\indexentry{vapply()}{157} -\indexentry{lapply()}{157} -\indexentry{sapply()}{157} -\indexentry{vapply()}{158} -\indexentry{vapply()}{159} -\indexentry{summary()}{159} -\indexentry{apply()}{159} -\indexentry{mean()}{159} -\indexentry{apply()}{160} -\indexentry{apply()}{160} -\indexentry{apply()}{160} -\indexentry{t()}{160} -\indexentry{apply()}{161} -\indexentry{mean()}{162} -\indexentry{var()}{162} -\indexentry{sd()}{162} -\indexentry{max()}{162} -\indexentry{min()}{162} -\indexentry{inverse.rle()}{162} -\indexentry{sum()}{162} -\indexentry{prod()}{162} -\indexentry{cumsum()}{162} -\indexentry{cumprod()}{162} -\indexentry{cummax()}{162} -\indexentry{cummin()}{162} -\indexentry{runmed()}{162} -\indexentry{diff()}{162} -\indexentry{diffinv()}{162} -\indexentry{factorial()}{162} -\indexentry{rle()}{162} -\indexentry{inverse.rle()}{162} -\indexentry{assign()}{162} -\indexentry{assign()}{163} -\indexentry{get()}{163} -\indexentry{mget()}{163} -\indexentry{assign()}{163} -\indexentry{get()}{163} -\indexentry{mget()}{163} -\indexentry{do.call()}{164} -\indexentry{anova()}{165} -\indexentry{do.call()}{165} -\indexentry{anova()}{165} -\indexentry{do.call()}{165} -\indexentry{anova()}{165} -\indexentry{print()}{168} -\indexentry{function()}{169} -\indexentry{lm()}{170} -\indexentry{lm}{170} -\indexentry{list}{170} -\indexentry{return()}{170} -\indexentry{return()}{170} -\indexentry{return()}{170} -\indexentry{<<-}{170} -\indexentry{assign()}{170} -\indexentry{environment()}{171} -\indexentry{environment()}{171} -\indexentry{SEM()}{171} -\indexentry{var()}{171} -\indexentry{SEM()}{172} -\indexentry{sum()}{172} -\indexentry{plot()}{175} -\indexentry{plot()}{175} -\indexentry{plot()}{175} -\indexentry{methods()}{176} -\indexentry{methods()}{176} -\indexentry{sprintf()}{176} -\indexentry{sprintf()}{176} -\indexentry{my\_print()}{177} -\indexentry{exists()}{178} -\indexentry{library()}{180} -\indexentry{install.packages()}{180} -\indexentry{install.packages()}{180} -\indexentry{update.packages()}{180} -\indexentry{install.packages()}{180} -\indexentry{update.packages()}{180} -\indexentry{install.packages()}{180} -\indexentry{setRepositories()}{181} -\indexentry{library()}{181} -\indexentry{citation()}{181} -\indexentry{library()}{183} -\indexentry{detach()}{183} -\indexentry{library}{183} -\indexentry{list()}{184} -\indexentry{search()}{184} -\indexentry{getAnywhere()}{185} -\indexentry{mean()}{188} -\indexentry{var()}{188} -\indexentry{sd()}{188} -\indexentry{median()}{188} -\indexentry{mad()}{188} -\indexentry{mode()}{188} -\indexentry{max()}{188} -\indexentry{min()}{188} -\indexentry{range()}{188} -\indexentry{quantile()}{188} -\indexentry{length()}{188} -\indexentry{summary()}{188} +\indexentry{mean()}{156} +\indexentry{var()}{156} +\indexentry{sd()}{156} +\indexentry{max()}{156} +\indexentry{min()}{156} +\indexentry{inverse.rle()}{156} +\indexentry{sum()}{156} +\indexentry{prod()}{156} +\indexentry{cumsum()}{156} +\indexentry{cumprod()}{156} +\indexentry{cummax()}{156} +\indexentry{cummin()}{156} +\indexentry{runmed()}{156} +\indexentry{diff()}{156} +\indexentry{diffinv()}{156} +\indexentry{factorial()}{156} +\indexentry{rle()}{156} +\indexentry{inverse.rle()}{156} +\indexentry{assign()}{157} +\indexentry{assign()}{157} +\indexentry{get()}{157} +\indexentry{mget()}{157} +\indexentry{assign()}{158} +\indexentry{get()}{158} +\indexentry{mget()}{158} +\indexentry{do.call()}{158} +\indexentry{anova()}{159} +\indexentry{do.call()}{159} +\indexentry{anova()}{159} +\indexentry{do.call()}{159} +\indexentry{anova()}{159} +\indexentry{print()}{162} +\indexentry{function()}{163} +\indexentry{lm()}{163} +\indexentry{lm}{163} +\indexentry{list}{163} +\indexentry{return()}{164} +\indexentry{return()}{164} +\indexentry{return()}{164} +\indexentry{<<-}{164} +\indexentry{assign()}{164} +\indexentry{environment()}{164} +\indexentry{environment()}{164} +\indexentry{SEM()}{165} +\indexentry{var()}{165} +\indexentry{SEM()}{165} +\indexentry{sum()}{165} +\indexentry{plot()}{169} +\indexentry{plot()}{169} +\indexentry{plot()}{169} +\indexentry{methods()}{169} +\indexentry{methods()}{169} +\indexentry{sprintf()}{170} +\indexentry{sprintf()}{170} +\indexentry{my\_print()}{170} +\indexentry{exists()}{172} +\indexentry{library()}{173} +\indexentry{install.packages()}{173} +\indexentry{install.packages()}{173} +\indexentry{update.packages()}{173} +\indexentry{install.packages()}{173} +\indexentry{update.packages()}{173} +\indexentry{install.packages()}{174} +\indexentry{setRepositories()}{174} +\indexentry{library()}{174} +\indexentry{citation()}{174} +\indexentry{library()}{176} +\indexentry{detach()}{176} +\indexentry{library}{177} +\indexentry{list()}{177} +\indexentry{search()}{177} +\indexentry{getAnywhere()}{178} +\indexentry{mean()}{180} +\indexentry{var()}{180} +\indexentry{sd()}{180} +\indexentry{median()}{180} +\indexentry{mad()}{180} +\indexentry{mode()}{180} +\indexentry{max()}{180} +\indexentry{min()}{180} +\indexentry{range()}{180} +\indexentry{quantile()}{180} +\indexentry{length()}{180} +\indexentry{summary()}{180} +\indexentry{summary()}{180} +\indexentry{boxplot.stats()}{180} +\indexentry{dnorm()}{181} +\indexentry{pnorm()}{181} +\indexentry{qnorm()}{181} +\indexentry{rnorm()}{181} +\indexentry{dt()}{181} +\indexentry{pt()}{181} +\indexentry{qt()}{181} +\indexentry{rt()}{181} +\indexentry{df()}{181} +\indexentry{pf()}{181} +\indexentry{qf()}{181} +\indexentry{rf()}{181} +\indexentry{dbinom()}{181} +\indexentry{pbinom()}{181} +\indexentry{qbinom()}{181} +\indexentry{rbinom()}{181} +\indexentry{dmultinom()}{181} +\indexentry{pmultinom()}{181} +\indexentry{qmultinom()}{181} +\indexentry{rmultinom()}{181} +\indexentry{dpois()}{181} +\indexentry{ppois()}{181} +\indexentry{qpois()}{181} +\indexentry{rpois()}{181} +\indexentry{dchisq()}{181} +\indexentry{pchisq()}{181} +\indexentry{qchisq()}{181} +\indexentry{rchisq()}{181} +\indexentry{dlnorm()}{181} +\indexentry{plnorm()}{181} +\indexentry{qlnorm()}{181} +\indexentry{rlnorm()}{181} +\indexentry{dunif()}{181} +\indexentry{punif()}{181} +\indexentry{qunif()}{181} +\indexentry{runif()}{181} +\indexentry{pnorm()}{183} +\indexentry{pt()}{183} +\indexentry{qnorm()}{183} +\indexentry{pnorm()}{183} +\indexentry{rnorm()}{184} +\indexentry{runif()}{184} +\indexentry{set.seed()}{184} +\indexentry{rnorm()}{184} +\indexentry{set.seed()}{184} +\indexentry{[ ]}{185} +\indexentry{sample()}{185} +\indexentry{cor()}{186} +\indexentry{rnorm()}{186} +\indexentry{matrix()}{186} +\indexentry{cor()}{186} +\indexentry{cor.test()}{186} +\indexentry{cor()}{187} +\indexentry{cor.test()}{187} +\indexentry{print()}{187} +\indexentry{str()}{187} +\indexentry{class()}{187} +\indexentry{attributes()}{187} +\indexentry{cor()}{187} +\indexentry{class()}{187} +\indexentry{attributes()}{187} +\indexentry{str()}{187} +\indexentry{cor.test()}{187} +\indexentry{cor()}{187} \indexentry{summary()}{188} -\indexentry{boxplot.stats()}{188} -\indexentry{dnorm()}{189} -\indexentry{pnorm()}{189} -\indexentry{qnorm()}{189} -\indexentry{rnorm()}{189} -\indexentry{dt()}{189} -\indexentry{pt()}{189} -\indexentry{qt()}{189} -\indexentry{rt()}{189} -\indexentry{df()}{189} -\indexentry{pf()}{189} -\indexentry{qf()}{189} -\indexentry{rf()}{189} -\indexentry{dbinom()}{189} -\indexentry{pbinom()}{189} -\indexentry{qbinom()}{189} -\indexentry{rbinom()}{189} -\indexentry{dmultinom()}{189} -\indexentry{pmultinom()}{189} -\indexentry{qmultinom()}{189} -\indexentry{rmultinom()}{189} -\indexentry{dpois()}{189} -\indexentry{ppois()}{189} -\indexentry{qpois()}{189} -\indexentry{rpois()}{189} -\indexentry{dchisq()}{189} -\indexentry{pchisq()}{189} -\indexentry{qchisq()}{189} -\indexentry{rchisq()}{189} -\indexentry{dlnorm()}{189} -\indexentry{plnorm()}{189} -\indexentry{qlnorm()}{189} -\indexentry{rlnorm()}{189} -\indexentry{dunif()}{189} -\indexentry{punif()}{189} -\indexentry{qunif()}{189} -\indexentry{runif()}{189} -\indexentry{pnorm()}{191} -\indexentry{pt()}{191} -\indexentry{qnorm()}{191} -\indexentry{pnorm()}{191} -\indexentry{rnorm()}{192} -\indexentry{runif()}{192} -\indexentry{set.seed()}{192} -\indexentry{rnorm()}{192} -\indexentry{set.seed()}{192} -\indexentry{[ ]}{193} -\indexentry{sample()}{194} -\indexentry{cor()}{194} -\indexentry{rnorm()}{194} -\indexentry{matrix()}{194} -\indexentry{cor()}{195} -\indexentry{cor.test()}{195} -\indexentry{cor()}{195} -\indexentry{cor.test()}{195} -\indexentry{print()}{195} +\indexentry{anova()}{188} +\indexentry{plot()}{188} +\indexentry{coef()}{188} +\indexentry{residuals()}{188} +\indexentry{fitted()}{188} +\indexentry{predict()}{188} +\indexentry{AIC()}{188} +\indexentry{BIC()}{188} +\indexentry{lm()}{188} +\indexentry{lm()}{189} +\indexentry{lm()}{189} +\indexentry{cars}{189} +\indexentry{summary()}{190} +\indexentry{summary()}{190} +\indexentry{lm()}{191} +\indexentry{I()}{191} +\indexentry{poly()}{191} +\indexentry{poly()}{191} +\indexentry{anova()}{192} +\indexentry{anova()}{192} +\indexentry{anova()}{192} +\indexentry{BIC()}{192} +\indexentry{AIC()}{192} +\indexentry{vcov()}{192} +\indexentry{coef()}{192} +\indexentry{coefficients()}{192} +\indexentry{fitted()}{192} +\indexentry{fitted.values()}{192} +\indexentry{resid()}{192} +\indexentry{residuals()}{192} +\indexentry{getCall()}{192} +\indexentry{effects()}{192} +\indexentry{terms()}{192} +\indexentry{model.frame()}{192} +\indexentry{model.matrix()}{192} +\indexentry{str()}{193} +\indexentry{str()}{193} +\indexentry{anova()}{194} +\indexentry{summary()}{194} +\indexentry{anova()}{194} +\indexentry{summary()}{194} +\indexentry{summary()}{195} \indexentry{str()}{195} -\indexentry{class()}{195} -\indexentry{attributes()}{195} -\indexentry{cor()}{195} -\indexentry{class()}{195} -\indexentry{attributes()}{195} -\indexentry{str()}{195} -\indexentry{cor.test()}{196} -\indexentry{cor()}{196} -\indexentry{summary()}{196} \indexentry{anova()}{196} -\indexentry{plot()}{196} -\indexentry{coef()}{197} -\indexentry{residuals()}{197} -\indexentry{fitted()}{197} +\indexentry{summary()}{196} +\indexentry{pt()}{196} +\indexentry{lm()}{196} \indexentry{predict()}{197} -\indexentry{AIC()}{197} -\indexentry{BIC()}{197} -\indexentry{lm()}{197} -\indexentry{lm()}{197} -\indexentry{lm()}{197} -\indexentry{cars}{198} +\indexentry{predict()}{197} +\indexentry{predict()}{197} +\indexentry{predict()}{197} +\indexentry{predict()}{197} +\indexentry{InsectSprays}{197} +\indexentry{anova()}{198} +\indexentry{summary()}{198} +\indexentry{summary()}{198} +\indexentry{aov()}{198} +\indexentry{lm()}{198} +\indexentry{anova()}{198} +\indexentry{coef()}{198} \indexentry{summary()}{198} -\indexentry{summary()}{199} -\indexentry{lm()}{200} -\indexentry{I()}{200} -\indexentry{poly()}{200} -\indexentry{poly()}{200} -\indexentry{anova()}{200} -\indexentry{anova()}{200} +\indexentry{factor()}{199} +\indexentry{ordered()}{199} +\indexentry{contr.treatment()}{199} +\indexentry{contr.treatment()}{199} +\indexentry{contr.SAS()}{199} +\indexentry{contr.helmert()}{199} +\indexentry{contr.sum()}{200} +\indexentry{contr.SAS()}{201} +\indexentry{contr.treatment()}{201} +\indexentry{contr.SAS()}{201} +\indexentry{contr.treatment()}{201} +\indexentry{contr.poly()}{201} +\indexentry{contr.helmert()}{201} \indexentry{anova()}{201} -\indexentry{BIC()}{201} -\indexentry{AIC()}{201} -\indexentry{vcov()}{201} -\indexentry{coef()}{201} -\indexentry{coefficients()}{201} -\indexentry{fitted()}{201} -\indexentry{fitted.values()}{201} -\indexentry{resid()}{201} -\indexentry{residuals()}{201} -\indexentry{getCall()}{201} -\indexentry{effects()}{201} -\indexentry{terms()}{201} -\indexentry{model.frame()}{201} -\indexentry{model.matrix()}{201} -\indexentry{str()}{202} -\indexentry{str()}{202} -\indexentry{anova()}{202} -\indexentry{summary()}{202} -\indexentry{anova()}{202} -\indexentry{summary()}{202} -\indexentry{summary()}{203} -\indexentry{str()}{203} -\indexentry{anova()}{204} +\indexentry{update()}{201} +\indexentry{update()}{202} +\indexentry{getCall()}{202} +\indexentry{update()}{202} +\indexentry{getCall()}{202} +\indexentry{update()}{202} +\indexentry{update()}{202} +\indexentry{update()}{203} +\indexentry{anova()}{203} +\indexentry{update()}{203} +\indexentry{update()}{203} +\indexentry{update()}{203} +\indexentry{step()}{203} +\indexentry{step()}{203} +\indexentry{step()}{203} \indexentry{summary()}{204} -\indexentry{pt()}{205} -\indexentry{lm()}{205} -\indexentry{predict()}{205} -\indexentry{predict()}{205} -\indexentry{predict()}{205} -\indexentry{predict()}{205} -\indexentry{predict()}{205} +\indexentry{update()}{205} +\indexentry{step()}{205} +\indexentry{glm()}{206} \indexentry{InsectSprays}{206} -\indexentry{anova()}{207} -\indexentry{summary()}{207} -\indexentry{summary()}{207} -\indexentry{aov()}{207} -\indexentry{lm()}{207} -\indexentry{anova()}{207} -\indexentry{coef()}{207} -\indexentry{summary()}{207} -\indexentry{factor()}{207} -\indexentry{ordered()}{207} -\indexentry{contr.treatment()}{208} -\indexentry{contr.treatment()}{208} -\indexentry{contr.SAS()}{208} -\indexentry{contr.helmert()}{208} -\indexentry{contr.sum()}{209} -\indexentry{contr.SAS()}{209} -\indexentry{contr.treatment()}{209} -\indexentry{contr.SAS()}{209} -\indexentry{contr.treatment()}{209} -\indexentry{contr.poly()}{209} -\indexentry{contr.helmert()}{209} -\indexentry{anova()}{209} -\indexentry{update()}{210} -\indexentry{update()}{210} -\indexentry{getCall()}{210} -\indexentry{update()}{210} -\indexentry{getCall()}{210} -\indexentry{update()}{210} -\indexentry{update()}{210} -\indexentry{update()}{212} -\indexentry{anova()}{212} -\indexentry{update()}{212} -\indexentry{update()}{212} -\indexentry{update()}{212} -\indexentry{step()}{212} -\indexentry{step()}{212} -\indexentry{step()}{212} -\indexentry{summary()}{212} -\indexentry{update()}{214} -\indexentry{step()}{214} -\indexentry{glm()}{214} -\indexentry{InsectSprays}{215} -\indexentry{anova()}{215} -\indexentry{plot()}{216} -\indexentry{nls()}{217} -\indexentry{nls}{218} -\indexentry{nlme}{218} -\indexentry{nls()}{218} -\indexentry{SSmicmen()}{218} -\indexentry{Puromycin}{218} -\indexentry{spline()}{221} -\indexentry{smooth.spline()}{221} -\indexentry{smooth.spline()}{221} -\indexentry{loess}{221} -\indexentry{plot()}{222} -\indexentry{formula}{222} -\indexentry{call}{222} -\indexentry{formula}{223} -\indexentry{is.empty.model()}{223} -\indexentry{numeric}{223} -\indexentry{formula}{223} -\indexentry{length()}{224} -\indexentry{list}{224} -\indexentry{length()}{224} -\indexentry{length()}{224} -\indexentry{length()}{224} -\indexentry{is.empty.model()}{224} -\indexentry{I()}{225} -\indexentry{log()}{225} -\indexentry{terms()}{227} -\indexentry{npk}{227} -\indexentry{"formula"}{228} -\indexentry{inherits()}{228} -\indexentry{as.formula()}{229} -\indexentry{as.formula()}{229} -\indexentry{as.formula()}{229} -\indexentry{update()}{230} -\indexentry{"ts"}{232} -\indexentry{ts()}{232} -\indexentry{as.ts()}{232} -\indexentry{nottem}{233} -\indexentry{decompose()}{234} -\indexentry{stl()}{234} -\indexentry{stl()}{234} -\indexentry{summary()}{234} -\indexentry{aov()}{235} -\indexentry{lm()}{235} -\indexentry{manova()}{235} -\indexentry{aov()}{235} -\indexentry{iris}{235} -\indexentry{prcomp()}{237} -\indexentry{biplot()}{238} -\indexentry{prcomp()}{239} -\indexentry{eurodist}{239} -\indexentry{dist}{241} -\indexentry{hclust()}{241} -\indexentry{eurodist}{241} -\indexentry{dist}{241} -\indexentry{cutree()}{242} -\indexentry{hclust()}{242} -\indexentry{subset()}{247} -\indexentry{[ , ]}{247} -\indexentry{[[ ]]}{247} -\indexentry{tbl}{249} -\indexentry{data.frame}{249} -\indexentry{list}{249} -\indexentry{matrix}{249} -\indexentry{tbl}{249} -\indexentry{data.frame}{249} -\indexentry{tibble()}{250} -\indexentry{as\_tibble()}{250} -\indexentry{is\_tibble()}{250} -\indexentry{tibble}{250} -\indexentry{tbl\_df}{250} -\indexentry{tibble()}{250} -\indexentry{data.frame()}{250} -\indexentry{data.frame()}{250} -\indexentry{read.table()}{250} -\indexentry{tibble}{251} -\indexentry{print()}{251} -\indexentry{options()}{251} -\indexentry{print()}{251} -\indexentry{as.data.frame()}{252} -\indexentry{identical()}{252} -\indexentry{class()}{252} -\indexentry{tibble()}{253} -\indexentry{tibble()}{253} -\indexentry{tibble()}{254} -\indexentry{data.frame()}{254} -\indexentry{data.frame()}{254} -\indexentry{tibble()}{254} -\indexentry{I()}{254} -\indexentry{\textbar >}{255} -\indexentry{\%>\%}{255} -\indexentry{\%>\%}{255} -\indexentry{\textbar >}{255} -\indexentry{\%>\%}{255} -\indexentry{\%T>\%}{255} -\indexentry{\%<>\%}{255} -\indexentry{\%>\%}{255} -\indexentry{\%.>\%}{255} -\indexentry{\%>\%}{256} -\indexentry{\%.>\%}{256} -\indexentry{\%>\%}{256} -\indexentry{\textbar >}{256} -\indexentry{\%.>\%}{256} -\indexentry{\textbar >}{256} -\indexentry{\%>\%}{256} -\indexentry{\%.>\%}{256} -\indexentry{\%.>\%}{256} -\indexentry{\textbar >}{257} -\indexentry{\%>\%}{257} -\indexentry{\%.>\%}{257} -\indexentry{\textbar >}{257} -\indexentry{\%.>\%}{257} -\indexentry{\%>\%}{257} -\indexentry{\textbar >}{257} -\indexentry{\textbar >}{257} -\indexentry{\textbar >}{257} -\indexentry{\%>\%}{257} -\indexentry{print()}{257} -\indexentry{print()}{257} -\indexentry{\textbar >}{257} -\indexentry{\textbar >}{258} -\indexentry{\%>\%}{258} -\indexentry{\textbar >}{258} -\indexentry{\%>\%}{258} -\indexentry{\%.>\%}{258} -\indexentry{\%>\%}{258} -\indexentry{assign()}{258} -\indexentry{\textbar >}{258} -\indexentry{\%>\%}{258} -\indexentry{plot()}{259} -\indexentry{iris}{259} -\indexentry{"tb"}{259} -\indexentry{pivot\_longer()}{259} -\indexentry{pivot\_longer()}{259} -\indexentry{pivot\_wider()}{260} -\indexentry{pivot\_longer()}{260} -\indexentry{unnest()}{260} -\indexentry{gather()}{260} -\indexentry{spread()}{260} -\indexentry{pivot\_longer()}{260} -\indexentry{pivot\_wider()}{260} -\indexentry{pivot\_longer()}{261} -\indexentry{pivot\_wider()}{261} -\indexentry{tibble}{261} -\indexentry{mutate()}{261} -\indexentry{transmute()}{261} -\indexentry{mutate()}{262} -\indexentry{transmute()}{262} -\indexentry{tibble()}{262} -\indexentry{mutate()}{262} -\indexentry{transmute()}{262} -\indexentry{str\_extract()}{262} -\indexentry{mutate()}{262} -\indexentry{\%.>\%}{262} -\indexentry{arrange()}{262} -\indexentry{sort()}{262} -\indexentry{order()}{262} -\indexentry{filter()}{263} -\indexentry{subset()}{263} -\indexentry{slice()}{263} -\indexentry{select()}{263} -\indexentry{select()}{263} -\indexentry{select()}{263} -\indexentry{starts\_with()}{263} -\indexentry{ends\_with()}{263} -\indexentry{contains()}{263} -\indexentry{matches()}{263} -\indexentry{rename()}{264} -\indexentry{names()}{264} -\indexentry{names()<-}{264} -\indexentry{aggregate()}{264} -\indexentry{group\_by()}{264} -\indexentry{summarise()}{264} -\indexentry{==}{266} -\indexentry{group\_by()}{266} -\indexentry{ungroup()}{266} -\indexentry{[ , ]}{266} -\indexentry{full\_join()}{266} -\indexentry{left\_join()}{266} -\indexentry{right\_join()}{266} -\indexentry{inner\_join()}{266} -\indexentry{semi\_join()}{268} -\indexentry{anti\_join()}{268} -\indexentry{geom\_point()}{275} -\indexentry{geom\_line()}{275} -\indexentry{position\_identity()}{275} -\indexentry{position\_stack()}{275} -\indexentry{stat\_smooth()}{275} -\indexentry{stat\_summary()}{275} -\indexentry{scale\_color\_continuous()}{275} -\indexentry{+}{276} -\indexentry{\%+\%}{276} -\indexentry{aes()}{277} -\indexentry{stat\_indentity()}{277} -\indexentry{stat\_identity()}{278} -\indexentry{stat\_identity()}{278} -\indexentry{geom\_smooth()}{278} -\indexentry{stat\_smooth()}{278} -\indexentry{mtcars}{279} -\indexentry{geom\_point()}{279} -\indexentry{geom\_line()}{281} -\indexentry{geom\_point()}{281} -\indexentry{geom\_line()}{281} -\indexentry{ggplot()}{285} -\indexentry{ggplot()}{288} -\indexentry{aes()}{288} -\indexentry{ggplot()}{288} -\indexentry{ggplot()}{288} -\indexentry{\textbar >}{289} -\indexentry{stat()}{289} -\indexentry{stage()}{289} -\indexentry{after\_stat()}{289} -\indexentry{after\_scale()}{289} -\indexentry{after\_stat()}{289} -\indexentry{stat()}{289} -\indexentry{after\_stat()}{289} -\indexentry{after\_scale()}{289} -\indexentry{rlm()}{290} -\indexentry{after\_stat()}{290} -\indexentry{stat\_fit\_residuals()}{290} -\indexentry{geom\_point()}{290} -\indexentry{stage()}{290} -\indexentry{geom\_point()}{291} -\indexentry{stat\_fit\_residuals()}{291} -\indexentry{stat\_fit\_residuals()}{291} -\indexentry{geom\_point()}{291} -\indexentry{geom\_point()}{291} -\indexentry{geom\_line()}{291} +\indexentry{anova()}{206} +\indexentry{plot()}{207} +\indexentry{nls()}{208} +\indexentry{nls}{209} +\indexentry{nlme}{209} +\indexentry{nls()}{209} +\indexentry{SSmicmen()}{209} +\indexentry{Puromycin}{209} +\indexentry{spline()}{212} +\indexentry{smooth.spline()}{212} +\indexentry{smooth.spline()}{212} +\indexentry{loess}{212} +\indexentry{plot()}{213} +\indexentry{formula}{213} +\indexentry{call}{213} +\indexentry{formula}{214} +\indexentry{is.empty.model()}{214} +\indexentry{numeric}{214} +\indexentry{formula}{214} +\indexentry{length()}{214} +\indexentry{list}{215} +\indexentry{length()}{215} +\indexentry{length()}{215} +\indexentry{length()}{215} +\indexentry{is.empty.model()}{215} +\indexentry{I()}{215} +\indexentry{log()}{215} +\indexentry{terms()}{217} +\indexentry{npk}{218} +\indexentry{"formula"}{219} +\indexentry{inherits()}{219} +\indexentry{as.formula()}{219} +\indexentry{as.formula()}{219} +\indexentry{as.formula()}{220} +\indexentry{update()}{220} +\indexentry{"ts"}{222} +\indexentry{ts()}{222} +\indexentry{as.ts()}{222} +\indexentry{nottem}{223} +\indexentry{decompose()}{224} +\indexentry{stl()}{224} +\indexentry{stl()}{225} +\indexentry{summary()}{225} +\indexentry{aov()}{226} +\indexentry{lm()}{226} +\indexentry{manova()}{226} +\indexentry{aov()}{226} +\indexentry{iris}{226} +\indexentry{prcomp()}{227} +\indexentry{biplot()}{228} +\indexentry{prcomp()}{229} +\indexentry{eurodist}{229} +\indexentry{dist}{231} +\indexentry{hclust()}{231} +\indexentry{eurodist}{231} +\indexentry{dist}{231} +\indexentry{cutree()}{231} +\indexentry{hclust()}{232} +\indexentry{subset()}{235} +\indexentry{[ , ]}{235} +\indexentry{[[ ]]}{235} +\indexentry{tbl}{237} +\indexentry{data.frame}{237} +\indexentry{list}{237} +\indexentry{matrix}{237} +\indexentry{tbl}{237} +\indexentry{data.frame}{237} +\indexentry{tibble()}{238} +\indexentry{as\_tibble()}{238} +\indexentry{is\_tibble()}{238} +\indexentry{tibble}{238} +\indexentry{tbl\_df}{238} +\indexentry{tibble()}{238} +\indexentry{data.frame()}{238} +\indexentry{data.frame()}{238} +\indexentry{read.table()}{238} +\indexentry{tibble}{238} +\indexentry{print()}{239} +\indexentry{options()}{239} +\indexentry{print()}{239} +\indexentry{as.data.frame()}{240} +\indexentry{identical()}{240} +\indexentry{class()}{240} +\indexentry{tibble()}{241} +\indexentry{tibble()}{241} +\indexentry{tibble()}{241} +\indexentry{data.frame()}{241} +\indexentry{data.frame()}{241} +\indexentry{tibble()}{241} +\indexentry{I()}{241} +\indexentry{\textbar >}{242} +\indexentry{\%>\%}{242} +\indexentry{\%>\%}{242} +\indexentry{\textbar >}{242} +\indexentry{\%>\%}{242} +\indexentry{\%T>\%}{243} +\indexentry{\%<>\%}{243} +\indexentry{\%>\%}{243} +\indexentry{\%.>\%}{243} +\indexentry{\%>\%}{243} +\indexentry{\%.>\%}{243} +\indexentry{\%>\%}{243} +\indexentry{\textbar >}{243} +\indexentry{\%.>\%}{243} +\indexentry{\textbar >}{243} +\indexentry{\%>\%}{243} +\indexentry{\%.>\%}{244} +\indexentry{\%.>\%}{244} +\indexentry{\textbar >}{244} +\indexentry{\%>\%}{244} +\indexentry{\%.>\%}{244} +\indexentry{\textbar >}{244} +\indexentry{\%.>\%}{244} +\indexentry{\%>\%}{244} +\indexentry{\textbar >}{244} +\indexentry{\textbar >}{244} +\indexentry{\textbar >}{244} +\indexentry{\%>\%}{244} +\indexentry{print()}{244} +\indexentry{print()}{244} +\indexentry{\textbar >}{245} +\indexentry{\textbar >}{245} +\indexentry{\%>\%}{245} +\indexentry{\textbar >}{245} +\indexentry{\%>\%}{245} +\indexentry{\%.>\%}{245} +\indexentry{\%>\%}{245} +\indexentry{assign()}{245} +\indexentry{\textbar >}{245} +\indexentry{\%>\%}{246} +\indexentry{plot()}{246} +\indexentry{iris}{247} +\indexentry{"tb"}{247} +\indexentry{pivot\_longer()}{247} +\indexentry{pivot\_longer()}{247} +\indexentry{pivot\_wider()}{247} +\indexentry{pivot\_longer()}{247} +\indexentry{unnest()}{247} +\indexentry{gather()}{248} +\indexentry{spread()}{248} +\indexentry{pivot\_longer()}{248} +\indexentry{pivot\_wider()}{248} +\indexentry{pivot\_longer()}{248} +\indexentry{pivot\_wider()}{248} +\indexentry{tibble}{248} +\indexentry{mutate()}{249} +\indexentry{transmute()}{249} +\indexentry{mutate()}{249} +\indexentry{transmute()}{249} +\indexentry{tibble()}{249} +\indexentry{mutate()}{249} +\indexentry{transmute()}{249} +\indexentry{str\_extract()}{249} +\indexentry{mutate()}{249} +\indexentry{\%.>\%}{249} +\indexentry{arrange()}{249} +\indexentry{sort()}{249} +\indexentry{order()}{249} +\indexentry{filter()}{250} +\indexentry{subset()}{250} +\indexentry{slice()}{250} +\indexentry{select()}{250} +\indexentry{select()}{250} +\indexentry{select()}{250} +\indexentry{starts\_with()}{250} +\indexentry{ends\_with()}{250} +\indexentry{contains()}{250} +\indexentry{matches()}{250} +\indexentry{rename()}{251} +\indexentry{names()}{251} +\indexentry{names()<-}{251} +\indexentry{aggregate()}{251} +\indexentry{group\_by()}{251} +\indexentry{summarise()}{251} +\indexentry{==}{252} +\indexentry{group\_by()}{252} +\indexentry{ungroup()}{253} +\indexentry{[ , ]}{253} +\indexentry{full\_join()}{253} +\indexentry{left\_join()}{253} +\indexentry{right\_join()}{253} +\indexentry{inner\_join()}{253} +\indexentry{semi\_join()}{255} +\indexentry{anti\_join()}{255} +\indexentry{geom\_point()}{261} +\indexentry{geom\_line()}{261} +\indexentry{position\_identity()}{261} +\indexentry{position\_stack()}{261} +\indexentry{stat\_smooth()}{261} +\indexentry{stat\_summary()}{261} +\indexentry{scale\_color\_continuous()}{261} +\indexentry{+}{262} +\indexentry{\%+\%}{262} +\indexentry{aes()}{263} +\indexentry{stat\_indentity()}{263} +\indexentry{stat\_identity()}{264} +\indexentry{stat\_identity()}{264} +\indexentry{geom\_smooth()}{264} +\indexentry{stat\_smooth()}{264} +\indexentry{mtcars}{265} +\indexentry{geom\_point()}{266} +\indexentry{geom\_line()}{267} +\indexentry{geom\_point()}{267} +\indexentry{geom\_line()}{267} +\indexentry{ggplot()}{271} +\indexentry{ggplot()}{273} +\indexentry{aes()}{273} +\indexentry{ggplot()}{274} +\indexentry{ggplot()}{274} +\indexentry{\textbar >}{274} +\indexentry{stat()}{275} +\indexentry{stage()}{275} +\indexentry{after\_stat()}{275} +\indexentry{after\_scale()}{275} +\indexentry{after\_stat()}{275} +\indexentry{stat()}{275} +\indexentry{after\_stat()}{275} +\indexentry{after\_scale()}{275} +\indexentry{rlm()}{275} +\indexentry{after\_stat()}{276} +\indexentry{stat\_fit\_residuals()}{276} +\indexentry{geom\_point()}{276} +\indexentry{stage()}{276} +\indexentry{geom\_point()}{276} +\indexentry{stat\_fit\_residuals()}{276} +\indexentry{stat\_fit\_residuals()}{276} +\indexentry{geom\_point()}{276} +\indexentry{geom\_point()}{277} +\indexentry{geom\_line()}{277} +\indexentry{geom\_point()}{277} +\indexentry{position\_identity()}{280} +\indexentry{geom\_point()}{280} +\indexentry{position\_jitter()}{280} +\indexentry{geom\_point\_s()}{281} +\indexentry{geom\_point()}{282} +\indexentry{geom\_pointrange()}{283} +\indexentry{geom\_range()}{283} +\indexentry{geom\_errorbar()}{283} +\indexentry{geom\_rug()}{283} +\indexentry{geom\_line()}{284} +\indexentry{Orange}{284} +\indexentry{geom\_segment()}{284} +\indexentry{geom\_curve()}{284} +\indexentry{geom\_path()}{284} +\indexentry{geom\_line()}{284} +\indexentry{geom\_spoke()}{285} +\indexentry{geom\_segment()}{285} +\indexentry{geom\_step()}{285} +\indexentry{geom\_line()}{285} +\indexentry{geom\_area()}{285} +\indexentry{geom\_ribbon()}{285} +\indexentry{geom\_polygon()}{285} +\indexentry{geom\_path()}{285} +\indexentry{geom\_point()}{285} +\indexentry{geom\_line()}{285} +\indexentry{geom\_ribbon()}{285} +\indexentry{geom\_area()}{285} +\indexentry{geom\_hline()}{286} +\indexentry{geom\_vline()}{286} +\indexentry{geom\_abline()}{286} +\indexentry{geom\_hline()}{286} +\indexentry{geom\_vline()}{286} +\indexentry{geom\_col()}{286} +\indexentry{geom\_bar()}{287} +\indexentry{stat\_count()}{287} +\indexentry{geom\_col()}{287} +\indexentry{geom\_bar()}{287} +\indexentry{geom\_col()}{288} +\indexentry{geom\_tile()}{288} +\indexentry{geom\_tile()}{288} +\indexentry{geom\_tile()}{289} +\indexentry{geom\_rect()}{289} +\indexentry{geom\_sf()}{290} +\indexentry{geom\_sf\_text()}{290} +\indexentry{geom\_sf\_label()}{290} +\indexentry{stat\_sf()}{290} +\indexentry{geom\_text()}{290} +\indexentry{geom\_label()}{290} +\indexentry{geom\_text()}{290} +\indexentry{geom\_label()}{290} +\indexentry{geom\_label()}{291} +\indexentry{geom\_label()}{291} +\indexentry{geom\_text()}{291} +\indexentry{geom\_label()}{292} \indexentry{geom\_point()}{292} -\indexentry{position\_identity()}{294} -\indexentry{geom\_point()}{294} -\indexentry{position\_jitter()}{294} -\indexentry{geom\_point\_s()}{295} -\indexentry{geom\_point()}{297} -\indexentry{geom\_pointrange()}{298} -\indexentry{geom\_range()}{298} -\indexentry{geom\_errorbar()}{298} -\indexentry{geom\_rug()}{298} -\indexentry{geom\_line()}{298} -\indexentry{Orange}{298} -\indexentry{geom\_segment()}{299} -\indexentry{geom\_curve()}{299} -\indexentry{geom\_path()}{299} -\indexentry{geom\_line()}{299} -\indexentry{geom\_spoke()}{299} -\indexentry{geom\_segment()}{299} -\indexentry{geom\_step()}{299} -\indexentry{geom\_line()}{300} -\indexentry{geom\_area()}{300} -\indexentry{geom\_ribbon()}{300} -\indexentry{geom\_polygon()}{300} -\indexentry{geom\_path()}{300} -\indexentry{geom\_point()}{300} -\indexentry{geom\_line()}{300} -\indexentry{geom\_ribbon()}{300} -\indexentry{geom\_area()}{300} -\indexentry{geom\_hline()}{300} -\indexentry{geom\_vline()}{300} -\indexentry{geom\_abline()}{300} -\indexentry{geom\_hline()}{300} -\indexentry{geom\_vline()}{300} -\indexentry{geom\_col()}{301} -\indexentry{geom\_bar()}{301} -\indexentry{stat\_count()}{301} -\indexentry{geom\_col()}{301} -\indexentry{geom\_bar()}{301} -\indexentry{geom\_col()}{303} -\indexentry{geom\_tile()}{303} -\indexentry{geom\_tile()}{303} -\indexentry{geom\_tile()}{304} -\indexentry{geom\_rect()}{304} -\indexentry{geom\_sf()}{304} -\indexentry{geom\_sf\_text()}{304} -\indexentry{geom\_sf\_label()}{304} -\indexentry{stat\_sf()}{304} -\indexentry{geom\_text()}{305} -\indexentry{geom\_label()}{305} -\indexentry{geom\_text()}{305} -\indexentry{geom\_label()}{305} -\indexentry{geom\_label()}{306} -\indexentry{geom\_label()}{306} -\indexentry{geom\_text()}{306} -\indexentry{geom\_label()}{306} -\indexentry{geom\_point()}{306} -\indexentry{geom\_label()}{306} -\indexentry{geom\_text()}{306} -\indexentry{paste()}{307} -\indexentry{paste()}{307} -\indexentry{geom\_text()}{307} -\indexentry{aes()}{307} -\indexentry{geom\_label()}{308} -\indexentry{geom\_text()}{308} -\indexentry{geom\_text()}{308} -\indexentry{geom\_text()}{308} -\indexentry{geom\_text()}{308} -\indexentry{geom\_label()}{308} -\indexentry{geom\_text\_repel()}{308} -\indexentry{geom\_label\_repel()}{308} -\indexentry{geom\_table()}{309} -\indexentry{geom\_plot()}{309} -\indexentry{geom\_grob()}{309} -\indexentry{geom\_table()}{309} -\indexentry{geom\_plot()}{309} -\indexentry{geom\_grob()}{309} -\indexentry{geom\_table()}{309} -\indexentry{geom\_text()}{309} -\indexentry{geom\_table()}{310} -\indexentry{geom\_table()}{310} -\indexentry{geom\_table()}{311} -\indexentry{geom\_plot()}{311} -\indexentry{annotate()}{312} -\indexentry{geom\_grob()}{312} -\indexentry{annotation\_custom()}{312} -\indexentry{geom\_text\_npc()}{313} -\indexentry{geom\_label\_npc()}{313} -\indexentry{geom\_table\_npc()}{313} -\indexentry{geom\_plot\_npc()}{313} -\indexentry{geom\_grob\_npc()}{313} -\indexentry{stat\_function()}{314} -\indexentry{xlim()}{315} -\indexentry{ylim()}{315} -\indexentry{stat\_summary()}{315} -\indexentry{stat\_summary()}{315} -\indexentry{geom\_pointrange()}{315} -\indexentry{stat\_summary()}{316} -\indexentry{stat\_summary()}{317} -\indexentry{geom\_pointrange()}{317} -\indexentry{geom\_errorbar()}{317} -\indexentry{geom\_linerange()}{317} -\indexentry{stat\_smooth()}{318} -\indexentry{geom\_smooth()}{318} -\indexentry{stat\_smooth()}{318} -\indexentry{lm()}{318} -\indexentry{stat\_smooth()}{319} -\indexentry{Puromycin}{319} -\indexentry{SSmicmen()}{319} -\indexentry{stat\_poly\_line()}{320} -\indexentry{stat\_smooth()}{320} -\indexentry{stat\_bin()}{321} -\indexentry{geom\_histogram()}{321} -\indexentry{stat\_count()}{321} -\indexentry{geom\_bar()}{321} -\indexentry{stat\_bin()}{322} -\indexentry{geom\_histogram()}{323} -\indexentry{stat\_bin()}{323} -\indexentry{stat\_count()}{323} -\indexentry{stat\_bin2d()}{323} -\indexentry{geom\_bin2d()}{323} -\indexentry{stat\_bin()}{323} -\indexentry{coord\_fixed()}{323} -\indexentry{coord\_cartesian()}{323} -\indexentry{stat\_bin\_hex()}{323} -\indexentry{geom\_hex()}{323} -\indexentry{stat\_bin2d()}{323} -\indexentry{geom\_density()}{324} -\indexentry{stat\_density\_2d()}{324} -\indexentry{geom\_density\_2d()}{325} -\indexentry{stat\_boxplot()}{325} -\indexentry{geom\_boxplot()}{325} -\indexentry{geom\_violin()}{326} -\indexentry{geom\_point()}{328} -\indexentry{geom\_line()}{328} -\indexentry{coord\_flip()}{328} -\indexentry{stat\_smooth()}{328} -\indexentry{geom\_line()}{328} -\indexentry{geom\_point()}{328} -\indexentry{stat\_boxplot()}{329} -\indexentry{stat\_boxplot()}{329} -\indexentry{stat\_summary()}{329} -\indexentry{stat\_histogram()}{329} -\indexentry{stat\_density()}{329} -\indexentry{geom\_smooth()}{331} -\indexentry{coord\_flip()}{332} -\indexentry{stat\_poly\_line()}{332} +\indexentry{geom\_label()}{292} +\indexentry{geom\_text()}{292} +\indexentry{paste()}{292} +\indexentry{paste()}{292} +\indexentry{geom\_text()}{293} +\indexentry{aes()}{293} +\indexentry{geom\_label()}{293} +\indexentry{geom\_text()}{293} +\indexentry{geom\_text()}{293} +\indexentry{geom\_text()}{294} +\indexentry{geom\_text()}{294} +\indexentry{geom\_label()}{294} +\indexentry{geom\_text\_repel()}{294} +\indexentry{geom\_label\_repel()}{294} +\indexentry{geom\_table()}{294} +\indexentry{geom\_plot()}{294} +\indexentry{geom\_grob()}{294} +\indexentry{geom\_table()}{294} +\indexentry{geom\_plot()}{294} +\indexentry{geom\_grob()}{294} +\indexentry{geom\_table()}{295} +\indexentry{geom\_text()}{295} +\indexentry{geom\_table()}{296} +\indexentry{geom\_table()}{296} +\indexentry{geom\_table()}{296} +\indexentry{geom\_plot()}{296} +\indexentry{annotate()}{297} +\indexentry{geom\_grob()}{297} +\indexentry{annotation\_custom()}{297} +\indexentry{geom\_text\_npc()}{298} +\indexentry{geom\_label\_npc()}{298} +\indexentry{geom\_table\_npc()}{298} +\indexentry{geom\_plot\_npc()}{298} +\indexentry{geom\_grob\_npc()}{298} +\indexentry{stat\_function()}{299} +\indexentry{xlim()}{300} +\indexentry{ylim()}{300} +\indexentry{stat\_summary()}{300} +\indexentry{stat\_summary()}{301} +\indexentry{geom\_pointrange()}{301} +\indexentry{stat\_summary()}{302} +\indexentry{stat\_summary()}{302} +\indexentry{geom\_pointrange()}{302} +\indexentry{geom\_errorbar()}{302} +\indexentry{geom\_linerange()}{302} +\indexentry{stat\_smooth()}{303} +\indexentry{geom\_smooth()}{303} +\indexentry{stat\_smooth()}{303} +\indexentry{lm()}{303} +\indexentry{stat\_smooth()}{304} +\indexentry{Puromycin}{304} +\indexentry{SSmicmen()}{305} +\indexentry{stat\_poly\_line()}{305} +\indexentry{stat\_smooth()}{305} +\indexentry{stat\_bin()}{306} +\indexentry{geom\_histogram()}{306} +\indexentry{stat\_count()}{306} +\indexentry{geom\_bar()}{306} +\indexentry{stat\_bin()}{307} +\indexentry{geom\_histogram()}{308} +\indexentry{stat\_bin()}{308} +\indexentry{stat\_count()}{308} +\indexentry{stat\_bin2d()}{308} +\indexentry{geom\_bin2d()}{308} +\indexentry{stat\_bin()}{308} +\indexentry{coord\_fixed()}{308} +\indexentry{coord\_cartesian()}{308} +\indexentry{stat\_bin\_hex()}{308} +\indexentry{geom\_hex()}{308} +\indexentry{stat\_bin2d()}{308} +\indexentry{geom\_density()}{309} +\indexentry{stat\_density\_2d()}{309} +\indexentry{geom\_density\_2d()}{310} +\indexentry{stat\_boxplot()}{310} +\indexentry{geom\_boxplot()}{310} +\indexentry{geom\_violin()}{311} +\indexentry{geom\_point()}{313} +\indexentry{geom\_line()}{313} +\indexentry{coord\_flip()}{313} +\indexentry{stat\_smooth()}{313} +\indexentry{geom\_line()}{313} +\indexentry{geom\_point()}{313} +\indexentry{stat\_boxplot()}{314} +\indexentry{stat\_boxplot()}{314} +\indexentry{stat\_summary()}{314} +\indexentry{stat\_histogram()}{314} +\indexentry{stat\_density()}{314} +\indexentry{geom\_smooth()}{316} +\indexentry{coord\_flip()}{316} +\indexentry{stat\_poly\_line()}{317} +\indexentry{geom\_point()}{318} +\indexentry{stat\_density\_2d()}{318} +\indexentry{stat\_summary\_2d()}{318} +\indexentry{stat\_summary\_2d()}{318} +\indexentry{stat\_density\_2d()}{318} +\indexentry{stat\_summary()}{318} +\indexentry{stat\_centroid()}{318} +\indexentry{stat\_summary\_xy()}{318} +\indexentry{stat\_summary()}{319} +\indexentry{stat\_summary()}{319} +\indexentry{facet\_grid()}{319} +\indexentry{facet\_wrap()}{319} +\indexentry{geom\_point()}{319} +\indexentry{label\_bquote()}{321} +\indexentry{label\_bquote()}{321} +\indexentry{facet\_wrap()}{322} +\indexentry{scale\_color\_identity()}{323} +\indexentry{scale\_color\_discrete()}{323} +\indexentry{ggtitle()}{323} +\indexentry{xlab()}{324} +\indexentry{ylab()}{324} +\indexentry{labs()}{324} +\indexentry{labs()}{324} +\indexentry{ggtitle()}{324} +\indexentry{ylim()}{326} +\indexentry{xlim()}{326} +\indexentry{ylim()}{326} +\indexentry{xlim()}{326} +\indexentry{expand\_limits()}{326} +\indexentry{expand\_limits()}{326} +\indexentry{xlim()}{327} +\indexentry{ylim()}{327} +\indexentry{pretty\_breaks()}{327} +\indexentry{label\_date()}{328} +\indexentry{label\_date\_short()}{328} +\indexentry{label\_time()}{328} +\indexentry{scale\_x\_continuous()}{329} +\indexentry{scale\_y\_continuous()}{329} +\indexentry{scale\_x\_log10()}{329} +\indexentry{scale\_y\_log10()}{329} +\indexentry{scale\_y\_log()}{329} +\indexentry{scale\_x\_reverse()}{329} +\indexentry{scale\_y\_log10()}{329} +\indexentry{strptime()}{332} +\indexentry{scale\_x\_discrete()}{332} +\indexentry{toupper()}{333} +\indexentry{tolower()}{333} \indexentry{geom\_point()}{333} -\indexentry{stat\_density\_2d()}{333} -\indexentry{stat\_summary\_2d()}{333} -\indexentry{stat\_summary\_2d()}{333} -\indexentry{stat\_density\_2d()}{333} -\indexentry{stat\_summary()}{333} -\indexentry{stat\_centroid()}{333} -\indexentry{stat\_summary\_xy()}{333} -\indexentry{stat\_summary()}{334} -\indexentry{stat\_summary()}{334} -\indexentry{facet\_grid()}{334} -\indexentry{facet\_wrap()}{334} -\indexentry{geom\_point()}{334} -\indexentry{label\_bquote()}{336} -\indexentry{label\_bquote()}{336} -\indexentry{facet\_wrap()}{337} -\indexentry{scale\_color\_identity()}{338} -\indexentry{scale\_color\_discrete()}{338} -\indexentry{ggtitle()}{338} -\indexentry{xlab()}{339} -\indexentry{ylab()}{339} -\indexentry{labs()}{339} -\indexentry{labs()}{339} -\indexentry{ggtitle()}{339} -\indexentry{ylim()}{341} -\indexentry{xlim()}{341} -\indexentry{ylim()}{341} -\indexentry{xlim()}{341} -\indexentry{expand\_limits()}{341} -\indexentry{expand\_limits()}{341} -\indexentry{xlim()}{342} -\indexentry{ylim()}{342} -\indexentry{pretty\_breaks()}{342} -\indexentry{label\_date()}{344} -\indexentry{label\_date\_short()}{344} -\indexentry{label\_time()}{344} -\indexentry{scale\_x\_continuous()}{344} -\indexentry{scale\_y\_continuous()}{344} -\indexentry{scale\_x\_log10()}{344} -\indexentry{scale\_y\_log10()}{344} -\indexentry{scale\_y\_log()}{344} -\indexentry{scale\_x\_reverse()}{344} -\indexentry{scale\_y\_log10()}{345} -\indexentry{strptime()}{348} -\indexentry{scale\_x\_discrete()}{348} -\indexentry{toupper()}{349} -\indexentry{tolower()}{349} -\indexentry{geom\_point()}{349} -\indexentry{geom\_line()}{349} -\indexentry{geom\_hline()}{349} -\indexentry{geom\_vline()}{349} +\indexentry{geom\_line()}{333} +\indexentry{geom\_hline()}{333} +\indexentry{geom\_vline()}{333} +\indexentry{geom\_text()}{333} +\indexentry{geom\_label()}{333} +\indexentry{geom\_bar()}{333} +\indexentry{geom\_col()}{333} +\indexentry{geom\_area()}{333} +\indexentry{rgb()}{334} +\indexentry{hcl()}{335} +\indexentry{scale\_color\_continuous()}{335} +\indexentry{scale\_color\_gradient()}{335} +\indexentry{scale\_color\_gradient2()}{335} +\indexentry{scale\_color\_gradientn()}{335} +\indexentry{scale\_color\_date()}{335} +\indexentry{scale\_color\_datetime()}{335} +\indexentry{scale\_color\_viridis\_c()}{335} +\indexentry{scale\_color\_distiller()}{335} +\indexentry{scale\_color\_discrete()}{335} +\indexentry{scale\_color\_hue()}{335} +\indexentry{scale\_color\_gray()}{335} +\indexentry{scale\_color\_viridis\_d()}{335} +\indexentry{scale\_color\_brewer()}{335} +\indexentry{scale\_color\_gradient()}{336} +\indexentry{scale\_color\_binned()}{336} +\indexentry{scale\_color\_identity()}{337} +\indexentry{scale\_fill\_identity()}{337} +\indexentry{annotate()}{337} +\indexentry{annotate()}{337} +\indexentry{annotate()}{338} +\indexentry{annotate()}{338} +\indexentry{annotation\_custom()}{338} +\indexentry{ggplotGrob()}{338} +\indexentry{annotate()}{340} +\indexentry{geom\_vline()}{340} +\indexentry{geom\_hline()}{340} +\indexentry{coord\_polar()}{340} +\indexentry{coord\_polar()}{340} +\indexentry{stat\_bin()}{340} +\indexentry{stat\_density()}{341} +\indexentry{stat\_bin()}{341} +\indexentry{geom\_polygon()}{341} +\indexentry{geom\_bar()}{341} +\indexentry{facet\_wrap()}{341} +\indexentry{geom\_bar()}{342} +\indexentry{theme\_gray()}{343} +\indexentry{theme\_bw()}{343} +\indexentry{theme\_gray()}{343} +\indexentry{theme\_bw()}{344} +\indexentry{theme\_classic()}{344} +\indexentry{theme\_minimal()}{344} +\indexentry{theme\_linedraw()}{344} +\indexentry{theme\_light()}{344} +\indexentry{theme\_dark()}{344} +\indexentry{theme\_void()}{344} +\indexentry{theme\_gray()}{344} +\indexentry{theme\_set()}{344} +\indexentry{theme\_set()}{344} +\indexentry{theme\_bw()}{344} +\indexentry{theme\_classic()}{344} +\indexentry{theme()}{345} +\indexentry{rel()}{345} +\indexentry{theme\_gray()}{347} +\indexentry{theme()}{347} +\indexentry{+}{348} +\indexentry{|}{348} +\indexentry{/}{348} +\indexentry{+}{348} +\indexentry{|}{348} +\indexentry{/}{348} +\indexentry{expression()}{349} \indexentry{geom\_text()}{349} \indexentry{geom\_label()}{349} -\indexentry{geom\_bar()}{349} -\indexentry{geom\_col()}{349} -\indexentry{geom\_area()}{349} -\indexentry{rgb()}{351} -\indexentry{hcl()}{351} -\indexentry{scale\_color\_continuous()}{351} -\indexentry{scale\_color\_gradient()}{351} -\indexentry{scale\_color\_gradient2()}{351} -\indexentry{scale\_color\_gradientn()}{351} -\indexentry{scale\_color\_date()}{351} -\indexentry{scale\_color\_datetime()}{351} -\indexentry{scale\_color\_viridis\_c()}{351} -\indexentry{scale\_color\_distiller()}{351} -\indexentry{scale\_color\_discrete()}{351} -\indexentry{scale\_color\_hue()}{351} -\indexentry{scale\_color\_gray()}{351} -\indexentry{scale\_color\_viridis\_d()}{352} -\indexentry{scale\_color\_brewer()}{352} -\indexentry{scale\_color\_gradient()}{352} -\indexentry{scale\_color\_binned()}{352} -\indexentry{scale\_color\_identity()}{353} -\indexentry{scale\_fill\_identity()}{353} -\indexentry{annotate()}{353} -\indexentry{annotate()}{353} -\indexentry{annotate()}{354} -\indexentry{annotate()}{354} -\indexentry{annotation\_custom()}{354} -\indexentry{ggplotGrob()}{354} -\indexentry{annotate()}{356} -\indexentry{geom\_vline()}{356} -\indexentry{geom\_hline()}{356} -\indexentry{coord\_polar()}{356} -\indexentry{coord\_polar()}{356} -\indexentry{stat\_bin()}{356} -\indexentry{stat\_density()}{357} -\indexentry{stat\_bin()}{357} -\indexentry{geom\_polygon()}{357} -\indexentry{geom\_bar()}{357} -\indexentry{facet\_wrap()}{357} -\indexentry{geom\_bar()}{358} -\indexentry{theme\_gray()}{359} -\indexentry{theme\_bw()}{359} -\indexentry{theme\_gray()}{359} -\indexentry{theme\_bw()}{360} -\indexentry{theme\_classic()}{360} -\indexentry{theme\_minimal()}{360} -\indexentry{theme\_linedraw()}{360} -\indexentry{theme\_light()}{360} -\indexentry{theme\_dark()}{360} -\indexentry{theme\_void()}{360} -\indexentry{theme\_gray()}{360} -\indexentry{theme\_set()}{360} -\indexentry{theme\_set()}{360} -\indexentry{theme\_bw()}{361} -\indexentry{theme\_classic()}{361} -\indexentry{theme()}{362} -\indexentry{rel()}{362} -\indexentry{theme\_gray()}{363} -\indexentry{theme()}{363} -\indexentry{+}{364} -\indexentry{|}{364} -\indexentry{/}{364} -\indexentry{+}{364} -\indexentry{|}{364} -\indexentry{/}{364} -\indexentry{expression()}{366} -\indexentry{geom\_text()}{366} -\indexentry{geom\_label()}{366} -\indexentry{labs()}{366} -\indexentry{geom\_text()}{366} -\indexentry{paste()}{366} -\indexentry{expression()}{366} -\indexentry{parse()}{367} -\indexentry{expression()}{367} -\indexentry{parse()}{367} -\indexentry{parse()}{367} -\indexentry{expression()}{367} -\indexentry{parse()}{367} -\indexentry{expression()}{368} -\indexentry{parse()}{368} -\indexentry{plain()}{368} -\indexentry{italic()}{368} -\indexentry{bold()}{368} -\indexentry{bolditalic()}{368} -\indexentry{expression()}{368} -\indexentry{parse()}{368} -\indexentry{expression()}{368} -\indexentry{ggplot()}{368} -\indexentry{paste()}{369} -\indexentry{format()}{369} -\indexentry{sprintf()}{369} -\indexentry{strftime()}{369} -\indexentry{sprintf()}{369} -\indexentry{format()}{369} -\indexentry{sprintf()}{369} -\indexentry{strftime()}{369} -\indexentry{bquote()}{369} -\indexentry{bquote()}{369} -\indexentry{substitute()}{370} -\indexentry{shell()}{378} -\indexentry{system()}{378} -\indexentry{basename()}{378} -\indexentry{dirname()}{378} -\indexentry{getwd()}{378} -\indexentry{setwd()}{378} -\indexentry{setwd()}{378} -\indexentry{list.files()}{379} -\indexentry{dir()}{379} -\indexentry{list.dirs()}{379} -\indexentry{list.dirs()}{379} -\indexentry{dir()}{379} -\indexentry{file.path()}{380} -\indexentry{readLines()}{380} -\indexentry{tools:::showNonASCIIfile()}{382} -\indexentry{read.csv()}{382} -\indexentry{write.csv()}{382} -\indexentry{read.csv2()}{383} -\indexentry{read.csv()}{383} -\indexentry{read.csv2()}{384} -\indexentry{write.csv2()}{384} -\indexentry{read.table()}{384} -\indexentry{read.csv()}{384} -\indexentry{read.table()}{384} -\indexentry{read.fwf()}{385} -\indexentry{read.fortran()}{385} -\indexentry{read.fwf()}{385} -\indexentry{read.table()}{385} -\indexentry{read.csv()}{386} -\indexentry{read.table()}{386} -\indexentry{read.csv()}{386} -\indexentry{read.table()}{386} -\indexentry{read.table()}{386} -\indexentry{read.csv2()}{386} -\indexentry{write.csv()}{386} -\indexentry{write.csv2()}{386} -\indexentry{write.table()}{386} -\indexentry{read.csv()}{386} -\indexentry{cat()}{386} -\indexentry{read\_csv()}{387} -\indexentry{read.csv()}{387} -\indexentry{read.table()}{387} +\indexentry{labs()}{350} +\indexentry{geom\_text()}{350} +\indexentry{paste()}{350} +\indexentry{expression()}{350} +\indexentry{parse()}{351} +\indexentry{expression()}{351} +\indexentry{parse()}{351} +\indexentry{parse()}{351} +\indexentry{expression()}{351} +\indexentry{parse()}{351} +\indexentry{expression()}{351} +\indexentry{parse()}{351} +\indexentry{plain()}{351} +\indexentry{italic()}{351} +\indexentry{bold()}{351} +\indexentry{bolditalic()}{351} +\indexentry{expression()}{352} +\indexentry{parse()}{352} +\indexentry{expression()}{352} +\indexentry{ggplot()}{352} +\indexentry{paste()}{352} +\indexentry{format()}{352} +\indexentry{sprintf()}{352} +\indexentry{strftime()}{352} +\indexentry{sprintf()}{353} +\indexentry{format()}{353} +\indexentry{sprintf()}{353} +\indexentry{strftime()}{353} +\indexentry{bquote()}{353} +\indexentry{bquote()}{353} +\indexentry{substitute()}{353} +\indexentry{shell()}{361} +\indexentry{system()}{361} +\indexentry{basename()}{361} +\indexentry{dirname()}{362} +\indexentry{getwd()}{362} +\indexentry{setwd()}{362} +\indexentry{setwd()}{362} +\indexentry{list.files()}{363} +\indexentry{dir()}{363} +\indexentry{list.dirs()}{363} +\indexentry{list.dirs()}{363} +\indexentry{dir()}{363} +\indexentry{file.path()}{363} +\indexentry{readLines()}{364} +\indexentry{tools:::showNonASCIIfile()}{366} +\indexentry{read.csv()}{366} +\indexentry{write.csv()}{366} +\indexentry{read.csv2()}{367} +\indexentry{read.csv()}{367} +\indexentry{read.csv2()}{368} +\indexentry{write.csv2()}{368} +\indexentry{read.table()}{368} +\indexentry{read.csv()}{368} +\indexentry{read.table()}{368} +\indexentry{read.fwf()}{368} +\indexentry{read.fortran()}{368} +\indexentry{read.fwf()}{368} +\indexentry{read.table()}{369} +\indexentry{read.csv()}{369} +\indexentry{read.table()}{369} +\indexentry{read.csv()}{369} +\indexentry{read.table()}{369} +\indexentry{read.table()}{369} +\indexentry{read.csv2()}{369} +\indexentry{write.csv()}{369} +\indexentry{write.csv2()}{369} +\indexentry{write.table()}{369} +\indexentry{read.csv()}{369} +\indexentry{cat()}{369} +\indexentry{read\_csv()}{370} +\indexentry{read.csv()}{370} +\indexentry{read.table()}{370} +\indexentry{tibble}{370} +\indexentry{data.frame}{370} +\indexentry{read\_table2()}{370} +\indexentry{read\_table2()}{370} +\indexentry{read\_table2()}{371} +\indexentry{read.table()}{371} +\indexentry{read\_table()}{371} +\indexentry{read\_table2()}{371} +\indexentry{read\_table()}{371} +\indexentry{read\_delim()}{372} +\indexentry{read\_table()}{372} +\indexentry{read\_tsv()}{372} +\indexentry{read\_fwf()}{372} +\indexentry{read.fortran()}{372} +\indexentry{write\_csv()}{374} +\indexentry{write\_csv2()}{374} +\indexentry{write\_tsv()}{374} +\indexentry{write\_delim()}{374} +\indexentry{write\_excel\_csv()}{374} +\indexentry{write\_excel\_csv()}{374} +\indexentry{write\_csv()}{374} +\indexentry{read\_lines()}{374} +\indexentry{write\_lines()}{374} +\indexentry{read\_file()}{374} +\indexentry{write\_file()}{374} +\indexentry{read\_file()}{374} +\indexentry{write\_file()}{374} +\indexentry{write\_file()}{375} +\indexentry{read\_csv()}{375} +\indexentry{read\_html()}{375} +\indexentry{xml\_find\_all()}{378} +\indexentry{xml\_text()}{378} +\indexentry{excel\_sheets()}{381} +\indexentry{read\_excel()}{381} +\indexentry{read.xlsx()}{382} +\indexentry{write.xlsx()}{382} +\indexentry{read\_ods()}{383} +\indexentry{write\_ods()}{384} +\indexentry{read.spss()}{384} +\indexentry{read.systat()}{384} +\indexentry{tibble}{385} +\indexentry{read\_sav()}{385} +\indexentry{names()}{386} +\indexentry{str()}{386} +\indexentry{class()}{386} +\indexentry{attributes()}{386} +\indexentry{mode()}{386} +\indexentry{dim()}{386} +\indexentry{dimnames()}{386} +\indexentry{nrow()}{386} +\indexentry{ncol()}{386} +\indexentry{print()}{386} +\indexentry{nc\_open()}{386} +\indexentry{str()}{387} +\indexentry{ncvar\_get()}{387} \indexentry{tibble}{387} -\indexentry{data.frame}{387} -\indexentry{read\_table2()}{387} -\indexentry{read\_table2()}{387} -\indexentry{read\_table2()}{388} -\indexentry{read.table()}{388} -\indexentry{read\_table()}{388} -\indexentry{read\_table2()}{388} -\indexentry{read\_table()}{388} -\indexentry{read\_delim()}{389} -\indexentry{read\_table()}{389} -\indexentry{read\_tsv()}{389} -\indexentry{read\_fwf()}{389} -\indexentry{read.fortran()}{389} -\indexentry{write\_csv()}{391} -\indexentry{write\_csv2()}{391} -\indexentry{write\_tsv()}{391} -\indexentry{write\_delim()}{391} -\indexentry{write\_excel\_csv()}{391} -\indexentry{write\_excel\_csv()}{391} -\indexentry{write\_csv()}{391} -\indexentry{read\_lines()}{391} -\indexentry{write\_lines()}{391} -\indexentry{read\_file()}{391} -\indexentry{write\_file()}{391} -\indexentry{read\_file()}{391} -\indexentry{write\_file()}{391} -\indexentry{write\_file()}{392} -\indexentry{read\_csv()}{392} -\indexentry{read\_html()}{392} -\indexentry{xml\_find\_all()}{395} -\indexentry{xml\_text()}{395} -\indexentry{excel\_sheets()}{398} -\indexentry{read\_excel()}{398} -\indexentry{read.xlsx()}{399} -\indexentry{write.xlsx()}{400} -\indexentry{read\_ods()}{401} -\indexentry{write\_ods()}{401} -\indexentry{read.spss()}{401} -\indexentry{read.systat()}{402} -\indexentry{tibble}{402} -\indexentry{read\_sav()}{402} -\indexentry{names()}{403} -\indexentry{str()}{403} -\indexentry{class()}{403} -\indexentry{attributes()}{403} -\indexentry{mode()}{403} -\indexentry{dim()}{403} -\indexentry{dimnames()}{403} -\indexentry{nrow()}{403} -\indexentry{ncol()}{403} -\indexentry{print()}{404} -\indexentry{nc\_open()}{404} -\indexentry{str()}{404} -\indexentry{ncvar\_get()}{404} -\indexentry{tibble}{405} -\indexentry{download.file()}{408} -\indexentry{fromJSON()}{409} +\indexentry{download.file()}{390} +\indexentry{fromJSON()}{392} diff --git a/faqindex.idx b/faqindex.idx index f4877b74..a64f66bc 100644 --- a/faqindex.idx +++ b/faqindex.idx @@ -2,13 +2,13 @@ \indexentry{How do I install the \textsf {R} program in my computer?}{21} \indexentry{How do I install the \textsf {RStudio} IDE in my computer?}{21} \indexentry{How can I get access to \textsf {RStudio} as a cloud service?}{21} -\indexentry{How to test if a vector contains no values other than \texttt {\addfontfeature {Scale = 0.89}{\setlength {\fboxsep }{0.05pt}\colorbox {codeshadecolor}{NA\vphantom {tp}}}} (or \texttt {\addfontfeature {Scale = 0.89}{\setlength {\fboxsep }{0.05pt}\colorbox {codeshadecolor}{NaN\vphantom {tp}}}}) values?}{51} -\indexentry{How to test if a vector contains one or more \texttt {\addfontfeature {Scale = 0.89}{\setlength {\fboxsep }{0.05pt}\colorbox {codeshadecolor}{NA\vphantom {tp}}}} (or \texttt {\addfontfeature {Scale = 0.89}{\setlength {\fboxsep }{0.05pt}\colorbox {codeshadecolor}{NaN\vphantom {tp}}}}) values?}{52} -\indexentry{How to access the last value in a vector?}{66} -\indexentry{How to summarize one variable from a data frame by group?}{108} -\indexentry{How to summarize numeric variables from a data frame by group?}{108} -\indexentry{How to order columns or rows in a data frame?}{110} -\indexentry{How to install or update a package from CRAN?}{180} -\indexentry{How to change the repository used to install packages?}{181} -\indexentry{How to use an installed package?}{181} -\indexentry{How to sample random rows from a data frame?}{193} +\indexentry{How to test if a vector contains no values other than \texttt {\addfontfeature {Scale = 0.89}{\setlength {\fboxsep }{0.05pt}\colorbox {codeshadecolor}{NA\vphantom {tp}}}} (or \texttt {\addfontfeature {Scale = 0.89}{\setlength {\fboxsep }{0.05pt}\colorbox {codeshadecolor}{NaN\vphantom {tp}}}}) values?}{50} +\indexentry{How to test if a vector contains one or more \texttt {\addfontfeature {Scale = 0.89}{\setlength {\fboxsep }{0.05pt}\colorbox {codeshadecolor}{NA\vphantom {tp}}}} (or \texttt {\addfontfeature {Scale = 0.89}{\setlength {\fboxsep }{0.05pt}\colorbox {codeshadecolor}{NaN\vphantom {tp}}}}) values?}{50} +\indexentry{How to access the last value in a vector?}{63} +\indexentry{How to summarize one variable from a data frame by group?}{102} +\indexentry{How to summarize numeric variables from a data frame by group?}{103} +\indexentry{How to order columns or rows in a data frame?}{104} +\indexentry{How to install or update a package from CRAN?}{173} +\indexentry{How to change the repository used to install packages?}{174} +\indexentry{How to use an installed package?}{174} +\indexentry{How to sample random rows from a data frame?}{185} diff --git a/faqindex.ind b/faqindex.ind index bac3760e..d7f4ecf7 100644 --- a/faqindex.ind +++ b/faqindex.ind @@ -9,18 +9,18 @@ 21 \item How do I install the \textsf {RStudio} IDE in my computer?, 21 \item How do I install the \textsf {R} program in my computer?, 21 - \item How to access the last value in a vector?, 66 - \item How to change the repository used to install packages?, 181 - \item How to install or update a package from CRAN?, 180 - \item How to order columns or rows in a data frame?, 110 - \item How to sample random rows from a data frame?, 193 + \item How to access the last value in a vector?, 63 + \item How to change the repository used to install packages?, 174 + \item How to install or update a package from CRAN?, 173 + \item How to order columns or rows in a data frame?, 104 + \item How to sample random rows from a data frame?, 185 \item How to summarize numeric variables from a data frame by group?, - 108 - \item How to summarize one variable from a data frame by group?, 108 + 103 + \item How to summarize one variable from a data frame by group?, 102 \item How to test if a vector contains no values other than \texttt {\addfontfeature {Scale = 0.89}{\setlength {\fboxsep }{0.05pt}\colorbox {codeshadecolor}{NA\vphantom {tp}}}} (or \texttt {\addfontfeature {Scale = 0.89}{\setlength {\fboxsep }{0.05pt}\colorbox {codeshadecolor}{NaN\vphantom {tp}}}}) values?, - 51 + 50 \item How to test if a vector contains one or more \texttt {\addfontfeature {Scale = 0.89}{\setlength {\fboxsep }{0.05pt}\colorbox {codeshadecolor}{NA\vphantom {tp}}}} (or \texttt {\addfontfeature {Scale = 0.89}{\setlength {\fboxsep }{0.05pt}\colorbox {codeshadecolor}{NaN\vphantom {tp}}}}) values?, - 52 - \item How to use an installed package?, 181 + 50 + \item How to use an installed package?, 174 \end{theindex} diff --git a/krantz.cls b/krantz.cls index 16573869..35b2dddb 100644 --- a/krantz.cls +++ b/krantz.cls @@ -1228,7 +1228,7 @@ \newlength\section@toc@skip \section@toc@skip1.5em \newlength\SectionTOCWidth -\SectionTOCWidth2.8em +\SectionTOCWidth3.2em \def\l@section#1#2{% \toc@draw \gdef\toc@draw{\draw@section{#1}{#2}}} @@ -1239,7 +1239,7 @@ \subsection@toc@skip\section@toc@skip \advance\subsection@toc@skip\SectionTOCWidth \newlength\SubSectionTOCWidth -\SubSectionTOCWidth3.7em +\SubSectionTOCWidth4.3em \def\l@subsection#1#2{% \toc@draw \gdef\toc@draw{\draw@subsection{#1}{#2}}} diff --git a/output/my-file.pdf b/output/my-file.pdf index 3988cac9..2cd66d13 100644 Binary files a/output/my-file.pdf and b/output/my-file.pdf differ diff --git a/preface.Rnw b/preface.Rnw index 2a21edd4..7c91975c 100644 --- a/preface.Rnw +++ b/preface.Rnw @@ -24,7 +24,9 @@ An additional change is in my view about some of the packages in the \pkgname{ti Re-reading myself the book after some time allowed me to think of other improvements. I have updated the book accordingly making it more accessible to readers with no previous experience in computer programming. I have added diagrams and flowcharts to facilitate comprehension of common programming abstractions. I also edited the text from the first edition to fix all errors and outdated examples or explanations known to me. \section*{Acknowledgements} -I thank Jaakko Heinonen for introducing me to the then new \Rlang. Along the way many well known and not so famous experts have answered my questions in usenet and more recently in \stackoverflow. I wish to warmly thank members of my own research group, students participating in the courses I have taught, colleagues I have collaborated with, authors of the books I have read and people I have only met online or at conferences. All of them have made it possible for me to write this book. I am indebted to Tarja Lehto, Titta Kotilainen, Tautvydas Zalnierius, Fang Wang, Yan Yan, Neha Rai, Markus Laurel, Brett Cooper, Viivi Lindholm, colleagues, students and anonymous reviewers for many very helpful comments on the draft manuscript and/or the published first edition. Rob Calver, editor of both editions, provided encouragement with great patience, Lara Spieker, Vaishali Singh, Sherry Thomas, and Paul Boyd for their help with different aspects of this project. +I thank Jaakko Heinonen for introducing me to the then new \Rlang. Along the way many well known and not so famous experts have answered my questions in usenet and more recently in \stackoverflow. I wish to warmly thank members of my own research group, students participating in the courses I have taught, colleagues I have collaborated with, authors of the books I have read and people I have only met online or at conferences. All of them have made it possible for me to write this book. I am indebted to Tarja Lehto, Titta Kotilainen, Tautvydas Zalnierius, Fang Wang, Yan Yan, Neha Rai, Markus Laurel, Brett Cooper, Viivi Lindholm, colleagues, students and anonymous reviewers for many very helpful comments on the draft manuscript and/or the published first edition. Rob Calver, editor of both editions, provided encouragement with great patience, Shashi Kumar, Lara Spieker, Vaishali Singh, Sherry Thomas, and Paul Boyd for their help with different aspects of this project. + +I was able to work intensively for a few months on the writing of this 2nd edition thanks to a sabbatical granted by my employer, the Faculty of Biological and Environmental Sciences of the University of Helsinki, Finland. I thank Prof.\ Kurt Fagerstedt for his support. In many ways this text owes much more to people who are not authors than to myself. However, as I am the one who has written \emph{Learn R: As a Language} and decided what to include and exclude, I take full responsibility for any errors and inaccuracies. \\[1cm] diff --git a/rcatsidx.idx b/rcatsidx.idx index 6a59711d..55605482 100644 --- a/rcatsidx.idx +++ b/rcatsidx.idx @@ -1,7 +1,7 @@ +\indexentry{functions and methods!help()@\texttt {help()}}{16} \indexentry{functions and methods!help()@\texttt {help()}}{17} \indexentry{functions and methods!help()@\texttt {help()}}{17} -\indexentry{functions and methods!help()@\texttt {help()}}{17} -\indexentry{functions and methods!print()@\texttt {print()}}{17} +\indexentry{functions and methods!print()@\texttt {print()}}{18} \indexentry{classes and modes!numeric@\texttt {numeric}}{24} \indexentry{operators!+@\texttt {+}}{24} \indexentry{operators!-@\texttt {-}}{24} @@ -10,13 +10,14 @@ \indexentry{functions and methods!exp()@\texttt {exp()}}{25} \indexentry{functions and methods!cos()@\texttt {cos()}}{25} \indexentry{constant and special values!pi@\texttt {pi}}{25} +\indexentry{constant and special values!pi@\texttt {pi}}{25} +\indexentry{functions and methods!cos()@\texttt {cos()}}{25} \indexentry{functions and methods!sqrt()@\texttt {sqrt()}}{25} \indexentry{functions and methods!sin()@\texttt {sin()}}{25} \indexentry{functions and methods!log()@\texttt {log()}}{25} \indexentry{functions and methods!log10()@\texttt {log10()}}{25} \indexentry{functions and methods!log2()@\texttt {log2()}}{25} \indexentry{functions and methods!exp()@\texttt {exp()}}{25} -\indexentry{constant and special values!pi@\texttt {pi}}{25} \indexentry{operators!<-@\texttt {<-}}{26} \indexentry{operators!->@\texttt {->}}{27} \indexentry{operators!=@\texttt {=}}{27} @@ -32,11 +33,11 @@ \indexentry{functions and methods!c()@\texttt {c()}}{28} \indexentry{functions and methods!length()@\texttt {length()}}{28} \indexentry{functions and methods!append()@\texttt {append()}}{29} -\indexentry{functions and methods!seq()@\texttt {seq()}}{30} -\indexentry{operators!:@\texttt {:}}{30} -\indexentry{functions and methods!rep()@\texttt {rep()}}{30} +\indexentry{functions and methods!seq()@\texttt {seq()}}{29} +\indexentry{operators!:@\texttt {:}}{29} +\indexentry{functions and methods!rep()@\texttt {rep()}}{29} +\indexentry{functions and methods!numeric()@\texttt {numeric()}}{31} \indexentry{functions and methods!numeric()@\texttt {numeric()}}{31} -\indexentry{functions and methods!numeric()@\texttt {numeric()}}{32} \indexentry{constant and special values!NA@\texttt {NA}}{32} \indexentry{constant and special values!NA@\texttt {NA}}{32} \indexentry{constant and special values!NA@\texttt {NA}}{32} @@ -47,58 +48,59 @@ \indexentry{constant and special values!-Inf@\texttt {-Inf}}{32} \indexentry{constant and special values!Inf@\texttt {Inf}}{32} \indexentry{constant and special values!-Inf@\texttt {-Inf}}{32} -\indexentry{constant and special values!NA@\texttt {NA}}{33} -\indexentry{constant and special values!NA@\texttt {NA}}{33} +\indexentry{constant and special values!NA@\texttt {NA}}{32} +\indexentry{constant and special values!NA@\texttt {NA}}{32} \indexentry{constant and special values!NA@\texttt {NA}}{33} \indexentry{constant and special values!NA@\texttt {NA}}{33} \indexentry{constant and special values!NA@\texttt {NA}}{33} \indexentry{functions and methods!is.na()@\texttt {is.na()}}{33} \indexentry{classes and modes!integer@\texttt {integer}}{33} -\indexentry{operators!\%/\%@\texttt {\%/\%}}{34} -\indexentry{operators!\%\%@\texttt {\%\%}}{34} -\indexentry{classes and modes!integer@\texttt {integer}}{35} +\indexentry{operators!\%/\%@\texttt {\%/\%}}{33} +\indexentry{operators!\%\%@\texttt {\%\%}}{33} +\indexentry{classes and modes!integer@\texttt {integer}}{34} +\indexentry{classes and modes!double@\texttt {double}}{34} +\indexentry{classes and modes!integer@\texttt {integer}}{34} +\indexentry{classes and modes!integer@\texttt {integer}}{34} +\indexentry{classes and modes!double@\texttt {double}}{34} +\indexentry{constant and special values!.Machine\$double.eps@\texttt {.Machine\$double.eps}}{35} +\indexentry{constant and special values!.Machine\$double.neg.eps@\texttt {.Machine\$double.neg.eps}}{35} +\indexentry{constant and special values!.Machine\$double.max@\texttt {.Machine\$double.max}}{35} \indexentry{classes and modes!double@\texttt {double}}{35} -\indexentry{classes and modes!integer@\texttt {integer}}{35} -\indexentry{classes and modes!integer@\texttt {integer}}{35} -\indexentry{classes and modes!double@\texttt {double}}{35} -\indexentry{constant and special values!.Machine\$double.eps@\texttt {.Machine\$double.eps}}{36} -\indexentry{constant and special values!.Machine\$double.neg.eps@\texttt {.Machine\$double.neg.eps}}{36} -\indexentry{constant and special values!.Machine\$double.max@\texttt {.Machine\$double.max}}{36} -\indexentry{classes and modes!double@\texttt {double}}{36} -\indexentry{constant and special values!.Machine\$double.min@\texttt {.Machine\$double.min}}{36} -\indexentry{constant and special values!.Machine\$double.xmax@\texttt {.Machine\$double.xmax}}{36} -\indexentry{constant and special values!.Machine\$integer.max@\texttt {.Machine\$integer.max}}{36} +\indexentry{constant and special values!.Machine\$double.min@\texttt {.Machine\$double.min}}{35} +\indexentry{constant and special values!.Machine\$double.xmax@\texttt {.Machine\$double.xmax}}{35} +\indexentry{constant and special values!.Machine\$integer.max@\texttt {.Machine\$integer.max}}{35} \indexentry{classes and modes!integer@\texttt {integer}}{36} \indexentry{classes and modes!integer@\texttt {integer}}{36} \indexentry{constant and special values!-Inf@\texttt {-Inf}}{36} \indexentry{constant and special values!Inf@\texttt {Inf}}{36} -\indexentry{classes and modes!double@\texttt {double}}{37} -\indexentry{classes and modes!integer@\texttt {integer}}{37} -\indexentry{classes and modes!double@\texttt {double}}{37} -\indexentry{classes and modes!integer@\texttt {integer}}{37} -\indexentry{classes and modes!integer@\texttt {integer}}{37} -\indexentry{operators!\^{}@\texttt {\^{}}}{37} -\indexentry{classes and modes!double@\texttt {double}}{37} -\indexentry{operators!*@\texttt {*}}{37} -\indexentry{functions and methods!round()@\texttt {round()}}{37} +\indexentry{classes and modes!double@\texttt {double}}{36} +\indexentry{classes and modes!integer@\texttt {integer}}{36} +\indexentry{classes and modes!double@\texttt {double}}{36} +\indexentry{classes and modes!integer@\texttt {integer}}{36} +\indexentry{classes and modes!integer@\texttt {integer}}{36} +\indexentry{operators!\^{}@\texttt {\^{}}}{36} +\indexentry{classes and modes!double@\texttt {double}}{36} +\indexentry{operators!*@\texttt {*}}{36} +\indexentry{functions and methods!round()@\texttt {round()}}{36} \indexentry{functions and methods!signif()@\texttt {signif()}}{37} +\indexentry{functions and methods!trunc()@\texttt {trunc()}}{37} +\indexentry{functions and methods!ceiling()@\texttt {ceiling()}}{37} +\indexentry{functions and methods!trunc()@\texttt {trunc()}}{38} \indexentry{functions and methods!trunc()@\texttt {trunc()}}{38} \indexentry{functions and methods!ceiling()@\texttt {ceiling()}}{38} -\indexentry{functions and methods!trunc()@\texttt {trunc()}}{39} -\indexentry{functions and methods!trunc()@\texttt {trunc()}}{39} -\indexentry{functions and methods!ceiling()@\texttt {ceiling()}}{39} -\indexentry{functions and methods!abs()@\texttt {abs()}}{39} -\indexentry{operators!+@\texttt {+}}{39} -\indexentry{operators!-@\texttt {-}}{39} -\indexentry{functions and methods!trunc()@\texttt {trunc()}}{39} -\indexentry{functions and methods!ceiling()@\texttt {ceiling()}}{39} -\indexentry{functions and methods!trunc()@\texttt {trunc()}}{39} -\indexentry{functions and methods!ceiling()@\texttt {ceiling()}}{39} -\indexentry{functions and methods!remove()@\texttt {remove()}}{39} -\indexentry{functions and methods!objects()@\texttt {objects()}}{39} -\indexentry{functions and methods!remove()@\texttt {remove()}}{39} -\indexentry{functions and methods!objects()@\texttt {objects()}}{39} -\indexentry{functions and methods!remove()@\texttt {remove()}}{39} +\indexentry{functions and methods!abs()@\texttt {abs()}}{38} +\indexentry{operators!+@\texttt {+}}{38} +\indexentry{operators!-@\texttt {-}}{38} +\indexentry{functions and methods!trunc()@\texttt {trunc()}}{38} +\indexentry{functions and methods!ceiling()@\texttt {ceiling()}}{38} +\indexentry{functions and methods!trunc()@\texttt {trunc()}}{38} +\indexentry{functions and methods!ceiling()@\texttt {ceiling()}}{38} +\indexentry{classes and modes!complex@\texttt {complex}}{38} +\indexentry{functions and methods!remove()@\texttt {remove()}}{38} +\indexentry{functions and methods!objects()@\texttt {objects()}}{38} +\indexentry{functions and methods!remove()@\texttt {remove()}}{38} +\indexentry{functions and methods!objects()@\texttt {objects()}}{38} +\indexentry{functions and methods!remove()@\texttt {remove()}}{38} \indexentry{functions and methods!ls()@\texttt {ls()}}{39} \indexentry{functions and methods!objects()@\texttt {objects()}}{39} \indexentry{functions and methods!rm()@\texttt {rm()}}{39} @@ -106,1306 +108,1310 @@ \indexentry{functions and methods!objects()@\texttt {objects()}}{39} \indexentry{functions and methods!remove()@\texttt {remove()}}{39} \indexentry{functions and methods!objects()@\texttt {objects()}}{39} -\indexentry{classes and modes!character@\texttt {character}}{40} -\indexentry{functions and methods!print()@\texttt {print()}}{41} -\indexentry{functions and methods!cat()@\texttt {cat()}}{41} -\indexentry{functions and methods!cat()@\texttt {cat()}}{41} -\indexentry{functions and methods!print()@\texttt {print()}}{41} -\indexentry{functions and methods!cat()@\texttt {cat()}}{41} -\indexentry{functions and methods!nchar()@\texttt {nchar()}}{41} +\indexentry{classes and modes!POSIXlt@\texttt {POSIXlt}}{39} +\indexentry{classes and modes!POSIXct@\texttt {POSIXct}}{39} +\indexentry{classes and modes!character@\texttt {character}}{39} +\indexentry{functions and methods!print()@\texttt {print()}}{40} +\indexentry{functions and methods!cat()@\texttt {cat()}}{40} +\indexentry{functions and methods!cat()@\texttt {cat()}}{40} +\indexentry{functions and methods!print()@\texttt {print()}}{40} +\indexentry{functions and methods!cat()@\texttt {cat()}}{40} +\indexentry{functions and methods!nchar()@\texttt {nchar()}}{40} \indexentry{functions and methods!toupper()@\texttt {toupper()}}{41} \indexentry{functions and methods!tolower()@\texttt {tolower()}}{41} \indexentry{functions and methods!strtrim()@\texttt {strtrim()}}{41} \indexentry{functions and methods!strwrap()@\texttt {strwrap()}}{41} -\indexentry{functions and methods!cat()@\texttt {cat()}}{42} +\indexentry{functions and methods!cat()@\texttt {cat()}}{41} \indexentry{functions and methods!paste()@\texttt {paste()}}{42} -\indexentry{functions and methods!paste()@\texttt {paste()}}{43} -\indexentry{functions and methods!strrep()@\texttt {strrep()}}{43} -\indexentry{functions and methods!rep()@\texttt {rep()}}{43} +\indexentry{functions and methods!paste()@\texttt {paste()}}{42} +\indexentry{functions and methods!strrep()@\texttt {strrep()}}{42} +\indexentry{functions and methods!rep()@\texttt {rep()}}{42} \indexentry{functions and methods!trimws()@\texttt {trimws()}}{43} -\indexentry{functions and methods!trimws()@\texttt {trimws()}}{44} -\indexentry{classes and modes!character@\texttt {character}}{44} -\indexentry{functions and methods!substring()@\texttt {substring()}}{44} -\indexentry{functions and methods!substr()@\texttt {substr()}}{44} -\indexentry{functions and methods!sub()@\texttt {sub()}}{45} -\indexentry{functions and methods!gsub()@\texttt {gsub()}}{45} -\indexentry{functions and methods!sub()@\texttt {sub()}}{45} -\indexentry{functions and methods!gsub()@\texttt {gsub()}}{45} -\indexentry{functions and methods!sub()@\texttt {sub()}}{45} +\indexentry{functions and methods!trimws()@\texttt {trimws()}}{43} +\indexentry{classes and modes!character@\texttt {character}}{43} +\indexentry{functions and methods!substring()@\texttt {substring()}}{43} +\indexentry{functions and methods!substr()@\texttt {substr()}}{43} +\indexentry{functions and methods!sub()@\texttt {sub()}}{44} +\indexentry{functions and methods!gsub()@\texttt {gsub()}}{44} +\indexentry{functions and methods!sub()@\texttt {sub()}}{44} +\indexentry{functions and methods!gsub()@\texttt {gsub()}}{44} +\indexentry{functions and methods!sub()@\texttt {sub()}}{44} +\indexentry{functions and methods!gsub()@\texttt {gsub()}}{44} +\indexentry{functions and methods!grep()@\texttt {grep()}}{44} +\indexentry{functions and methods!grepl()@\texttt {grepl()}}{44} +\indexentry{functions and methods!grep()@\texttt {grep()}}{44} \indexentry{functions and methods!gsub()@\texttt {gsub()}}{45} \indexentry{functions and methods!grep()@\texttt {grep()}}{45} \indexentry{functions and methods!grepl()@\texttt {grepl()}}{45} -\indexentry{functions and methods!grep()@\texttt {grep()}}{45} -\indexentry{functions and methods!gsub()@\texttt {gsub()}}{46} -\indexentry{functions and methods!grep()@\texttt {grep()}}{46} -\indexentry{functions and methods!grepl()@\texttt {grepl()}}{46} -\indexentry{functions and methods!strsplit()@\texttt {strsplit()}}{47} -\indexentry{classes and modes!logical@\texttt {logical}}{49} -\indexentry{classes and modes!logical@\texttt {logical}}{49} -\indexentry{operators!\&@\texttt {\&}}{50} -\indexentry{operators!\textbar @\texttt {\textbar }}{50} -\indexentry{operators!\&\&@\texttt {\&\&}}{50} -\indexentry{operators!\textbar \textbar @\texttt {\textbar \textbar }}{50} -\indexentry{operators!!@\texttt {!}}{50} -\indexentry{functions and methods!any()@\texttt {any()}}{50} -\indexentry{functions and methods!all()@\texttt {all()}}{50} +\indexentry{functions and methods!strsplit()@\texttt {strsplit()}}{46} +\indexentry{classes and modes!logical@\texttt {logical}}{47} +\indexentry{classes and modes!logical@\texttt {logical}}{48} +\indexentry{operators!\&@\texttt {\&}}{48} +\indexentry{operators!\textbar @\texttt {\textbar }}{48} +\indexentry{operators!\&\&@\texttt {\&\&}}{48} +\indexentry{operators!\textbar \textbar @\texttt {\textbar \textbar }}{48} +\indexentry{operators!!@\texttt {!}}{48} +\indexentry{functions and methods!any()@\texttt {any()}}{48} +\indexentry{functions and methods!all()@\texttt {all()}}{48} +\indexentry{functions and methods!all()@\texttt {all()}}{49} +\indexentry{functions and methods!any()@\texttt {any()}}{49} +\indexentry{functions and methods!is.na()@\texttt {is.na()}}{50} \indexentry{functions and methods!all()@\texttt {all()}}{50} +\indexentry{functions and methods!is.na()@\texttt {is.na()}}{50} \indexentry{functions and methods!any()@\texttt {any()}}{50} -\indexentry{functions and methods!is.na()@\texttt {is.na()}}{51} -\indexentry{functions and methods!all()@\texttt {all()}}{51} -\indexentry{functions and methods!is.na()@\texttt {is.na()}}{51} -\indexentry{functions and methods!any()@\texttt {any()}}{52} -\indexentry{operators!>@\texttt {>}}{52} -\indexentry{operators!<@\texttt {<}}{52} -\indexentry{operators!>=@\texttt {>=}}{52} -\indexentry{operators!<=@\texttt {<=}}{52} -\indexentry{operators!==@\texttt {==}}{52} -\indexentry{operators!!=@\texttt {!=}}{52} -\indexentry{operators!\&@\texttt {\&}}{53} -\indexentry{operators!\textbar @\texttt {\textbar }}{54} -\indexentry{classes and modes!logical@\texttt {logical}}{54} -\indexentry{functions and methods!abs()@\texttt {abs()}}{54} -\indexentry{operators!\%in\%@\texttt {\%in\%}}{57} -\indexentry{functions and methods!is.element()@\texttt {is.element()}}{57} -\indexentry{operators!!@\texttt {!}}{57} -\indexentry{operators!\%in\%@\texttt {\%in\%}}{57} -\indexentry{functions and methods!is.element()@\texttt {is.element()}}{57} -\indexentry{operators!|@\texttt {|}}{57} -\indexentry{operators!\%in\%@\texttt {\%in\%}}{57} -\indexentry{functions and methods!is.element()@\texttt {is.element()}}{57} -\indexentry{operators!\%in\%@\texttt {\%in\%}}{57} -\indexentry{functions and methods!match()@\texttt {match()}}{57} -\indexentry{functions and methods!match()@\texttt {match()}}{57} -\indexentry{functions and methods!charmatch()@\texttt {charmatch()}}{57} -\indexentry{functions and methods!pmatch()@\texttt {pmatch()}}{57} -\indexentry{operators!\%in\%@\texttt {\%in\%}}{58} -\indexentry{functions and methods!unique()@\texttt {unique()}}{58} -\indexentry{functions and methods!unique()@\texttt {unique()}}{58} -\indexentry{functions and methods!duplicated()@\texttt {duplicated()}}{58} -\indexentry{functions and methods!unique()@\texttt {unique()}}{58} -\indexentry{classes and modes!numeric@\texttt {numeric}}{59} -\indexentry{classes and modes!character@\texttt {character}}{59} -\indexentry{classes and modes!numeric@\texttt {numeric}}{59} -\indexentry{functions and methods!class()@\texttt {class()}}{60} -\indexentry{functions and methods!inherits()@\texttt {inherits()}}{60} -\indexentry{functions and methods!is.character()@\texttt {is.character()}}{60} -\indexentry{functions and methods!is.numeric()@\texttt {is.numeric()}}{60} -\indexentry{functions and methods!is.logical()@\texttt {is.logical()}}{60} -\indexentry{functions and methods!as.character()@\texttt {as.character()}}{62} -\indexentry{functions and methods!as.numeric()@\texttt {as.numeric()}}{62} -\indexentry{functions and methods!as.logical()@\texttt {as.logical()}}{62} -\indexentry{functions and methods!as.character()@\texttt {as.character()}}{62} -\indexentry{functions and methods!as.numeric()@\texttt {as.numeric()}}{62} -\indexentry{functions and methods!as.logical()@\texttt {as.logical()}}{62} -\indexentry{functions and methods!trunc()@\texttt {trunc()}}{62} -\indexentry{functions and methods!as.integer()@\texttt {as.integer()}}{62} -\indexentry{functions and methods!length()@\texttt {length()}}{63} -\indexentry{functions and methods!as.numeric()@\texttt {as.numeric()}}{63} -\indexentry{functions and methods!format()@\texttt {format()}}{63} -\indexentry{functions and methods!sprintf()@\texttt {sprintf()}}{63} -\indexentry{classes and modes!character@\texttt {character}}{63} -\indexentry{functions and methods!format()@\texttt {format()}}{63} -\indexentry{functions and methods!sprintf()@\texttt {sprintf()}}{63} -\indexentry{functions and methods!format()@\texttt {format()}}{63} -\indexentry{functions and methods!print()@\texttt {print()}}{63} -\indexentry{functions and methods!format()@\texttt {format()}}{63} -\indexentry{functions and methods!sprintf()@\texttt {sprintf()}}{63} -\indexentry{functions and methods!format()@\texttt {format()}}{64} -\indexentry{functions and methods!sprintf()@\texttt {sprintf()}}{64} -\indexentry{functions and methods!sprintf()@\texttt {sprintf()}}{64} -\indexentry{constant and special values!NA@\texttt {NA}}{64} -\indexentry{constant and special values!NA@\texttt {NA}}{64} -\indexentry{constant and special values!NA\_real\_@\texttt {NA\_real\_}}{64} -\indexentry{constant and special values!NA\_character\_@\texttt {NA\_character\_}}{64} -\indexentry{constant and special values!NA@\texttt {NA}}{64} -\indexentry{constant and special values!NA@\texttt {NA}}{64} -\indexentry{classes and modes!logical@\texttt {logical}}{64} -\indexentry{constant and special values!NA@\texttt {NA}}{64} -\indexentry{constant and special values!NA@\texttt {NA}}{64} -\indexentry{constant and special values!letters@\texttt {letters}}{65} -\indexentry{constant and special values!LETTERS@\texttt {LETTERS}}{65} -\indexentry{constant and special values!month.name@\texttt {month.name}}{65} -\indexentry{constant and special values!month.abb@\texttt {month.abb}}{65} -\indexentry{operators!<-@\texttt {<-}}{69} -\indexentry{classes and modes!integer@\texttt {integer}}{70} -\indexentry{classes and modes!numeric@\texttt {numeric}}{70} -\indexentry{classes and modes!double@\texttt {double}}{70} -\indexentry{functions and methods!sort()@\texttt {sort()}}{71} -\indexentry{functions and methods!order()@\texttt {order()}}{71} -\indexentry{functions and methods!sort()@\texttt {sort()}}{71} -\indexentry{functions and methods!rle()@\texttt {rle()}}{71} -\indexentry{classes and modes!matrix@\texttt {matrix}}{72} -\indexentry{classes and modes!array@\texttt {array}}{72} -\indexentry{functions and methods!length()@\texttt {length()}}{73} -\indexentry{functions and methods!ncol()@\texttt {ncol()}}{73} -\indexentry{functions and methods!nrow()@\texttt {nrow()}}{73} +\indexentry{operators!>@\texttt {>}}{50} +\indexentry{operators!<@\texttt {<}}{50} +\indexentry{operators!>=@\texttt {>=}}{50} +\indexentry{operators!<=@\texttt {<=}}{50} +\indexentry{operators!==@\texttt {==}}{50} +\indexentry{operators!!=@\texttt {!=}}{50} +\indexentry{operators!\&@\texttt {\&}}{51} +\indexentry{operators!\textbar @\texttt {\textbar }}{52} +\indexentry{classes and modes!logical@\texttt {logical}}{52} +\indexentry{functions and methods!abs()@\texttt {abs()}}{52} +\indexentry{operators!\%in\%@\texttt {\%in\%}}{54} +\indexentry{functions and methods!is.element()@\texttt {is.element()}}{54} +\indexentry{operators!!@\texttt {!}}{55} +\indexentry{operators!\%in\%@\texttt {\%in\%}}{55} +\indexentry{functions and methods!is.element()@\texttt {is.element()}}{55} +\indexentry{operators!|@\texttt {|}}{55} +\indexentry{operators!\%in\%@\texttt {\%in\%}}{55} +\indexentry{functions and methods!is.element()@\texttt {is.element()}}{55} +\indexentry{operators!\%in\%@\texttt {\%in\%}}{55} +\indexentry{functions and methods!match()@\texttt {match()}}{55} +\indexentry{functions and methods!match()@\texttt {match()}}{55} +\indexentry{functions and methods!charmatch()@\texttt {charmatch()}}{55} +\indexentry{functions and methods!pmatch()@\texttt {pmatch()}}{55} +\indexentry{operators!\%in\%@\texttt {\%in\%}}{55} +\indexentry{functions and methods!unique()@\texttt {unique()}}{55} +\indexentry{functions and methods!unique()@\texttt {unique()}}{55} +\indexentry{functions and methods!duplicated()@\texttt {duplicated()}}{56} +\indexentry{functions and methods!unique()@\texttt {unique()}}{56} +\indexentry{classes and modes!numeric@\texttt {numeric}}{56} +\indexentry{classes and modes!character@\texttt {character}}{56} +\indexentry{classes and modes!numeric@\texttt {numeric}}{57} +\indexentry{functions and methods!class()@\texttt {class()}}{57} +\indexentry{functions and methods!inherits()@\texttt {inherits()}}{57} +\indexentry{functions and methods!is.character()@\texttt {is.character()}}{58} +\indexentry{functions and methods!is.numeric()@\texttt {is.numeric()}}{58} +\indexentry{functions and methods!is.logical()@\texttt {is.logical()}}{58} +\indexentry{functions and methods!as.character()@\texttt {as.character()}}{59} +\indexentry{functions and methods!as.numeric()@\texttt {as.numeric()}}{59} +\indexentry{functions and methods!as.logical()@\texttt {as.logical()}}{59} +\indexentry{functions and methods!as.character()@\texttt {as.character()}}{60} +\indexentry{functions and methods!as.numeric()@\texttt {as.numeric()}}{60} +\indexentry{functions and methods!as.logical()@\texttt {as.logical()}}{60} +\indexentry{functions and methods!as.integer()@\texttt {as.integer()}}{60} +\indexentry{functions and methods!trunc()@\texttt {trunc()}}{60} +\indexentry{functions and methods!as.integer()@\texttt {as.integer()}}{60} +\indexentry{functions and methods!length()@\texttt {length()}}{60} +\indexentry{functions and methods!as.numeric()@\texttt {as.numeric()}}{60} +\indexentry{functions and methods!format()@\texttt {format()}}{60} +\indexentry{functions and methods!sprintf()@\texttt {sprintf()}}{60} +\indexentry{classes and modes!character@\texttt {character}}{60} +\indexentry{functions and methods!format()@\texttt {format()}}{61} +\indexentry{functions and methods!sprintf()@\texttt {sprintf()}}{61} +\indexentry{functions and methods!format()@\texttt {format()}}{61} +\indexentry{functions and methods!print()@\texttt {print()}}{61} +\indexentry{functions and methods!format()@\texttt {format()}}{61} +\indexentry{functions and methods!sprintf()@\texttt {sprintf()}}{61} +\indexentry{functions and methods!format()@\texttt {format()}}{61} +\indexentry{functions and methods!sprintf()@\texttt {sprintf()}}{61} +\indexentry{functions and methods!sprintf()@\texttt {sprintf()}}{61} +\indexentry{constant and special values!NA@\texttt {NA}}{62} +\indexentry{constant and special values!NA@\texttt {NA}}{62} +\indexentry{constant and special values!NA\_real\_@\texttt {NA\_real\_}}{62} +\indexentry{constant and special values!NA\_character\_@\texttt {NA\_character\_}}{62} +\indexentry{constant and special values!NA@\texttt {NA}}{62} +\indexentry{constant and special values!NA@\texttt {NA}}{62} +\indexentry{classes and modes!logical@\texttt {logical}}{62} +\indexentry{constant and special values!NA@\texttt {NA}}{62} +\indexentry{constant and special values!NA@\texttt {NA}}{62} +\indexentry{constant and special values!letters@\texttt {letters}}{63} +\indexentry{constant and special values!LETTERS@\texttt {LETTERS}}{63} +\indexentry{constant and special values!month.name@\texttt {month.name}}{63} +\indexentry{constant and special values!month.abb@\texttt {month.abb}}{63} +\indexentry{operators!<-@\texttt {<-}}{66} +\indexentry{classes and modes!integer@\texttt {integer}}{67} +\indexentry{classes and modes!numeric@\texttt {numeric}}{67} +\indexentry{classes and modes!double@\texttt {double}}{67} +\indexentry{functions and methods!sort()@\texttt {sort()}}{68} +\indexentry{functions and methods!order()@\texttt {order()}}{68} +\indexentry{functions and methods!sort()@\texttt {sort()}}{68} +\indexentry{functions and methods!rle()@\texttt {rle()}}{68} +\indexentry{classes and modes!matrix@\texttt {matrix}}{69} +\indexentry{classes and modes!array@\texttt {array}}{69} +\indexentry{functions and methods!length()@\texttt {length()}}{69} +\indexentry{functions and methods!ncol()@\texttt {ncol()}}{69} +\indexentry{functions and methods!nrow()@\texttt {nrow()}}{69} +\indexentry{functions and methods!dim()@\texttt {dim()}}{69} +\indexentry{functions and methods!is.matrix()@\texttt {is.matrix()}}{69} +\indexentry{functions and methods!matrix()@\texttt {matrix()}}{70} +\indexentry{functions and methods!as.matrix()@\texttt {as.matrix()}}{70} +\indexentry{functions and methods!matrix()@\texttt {matrix()}}{70} +\indexentry{functions and methods!as.matrix()@\texttt {as.matrix()}}{70} +\indexentry{functions and methods!matrix()@\texttt {matrix()}}{70} +\indexentry{classes and modes!matrix@\texttt {matrix}}{73} \indexentry{functions and methods!dim()@\texttt {dim()}}{73} -\indexentry{functions and methods!is.matrix()@\texttt {is.matrix()}}{73} -\indexentry{functions and methods!matrix()@\texttt {matrix()}}{73} -\indexentry{functions and methods!as.matrix()@\texttt {as.matrix()}}{73} -\indexentry{functions and methods!matrix()@\texttt {matrix()}}{73} -\indexentry{functions and methods!as.matrix()@\texttt {as.matrix()}}{73} -\indexentry{functions and methods!matrix()@\texttt {matrix()}}{73} -\indexentry{classes and modes!matrix@\texttt {matrix}}{77} -\indexentry{functions and methods!dim()@\texttt {dim()}}{77} -\indexentry{functions and methods!is.array()@\texttt {is.array()}}{77} -\indexentry{functions and methods!array()@\texttt {array()}}{78} -\indexentry{functions and methods!unlist()@\texttt {unlist()}}{78} -\indexentry{functions and methods!as.vector()@\texttt {as.vector()}}{78} -\indexentry{functions and methods!t()@\texttt {t()}}{79} -\indexentry{functions and methods!t()@\texttt {t()}}{79} -\indexentry{operators!\%*\%@\texttt {\%*\%}}{79} -\indexentry{functions and methods!crossprod()@\texttt {crossprod()}}{80} -\indexentry{functions and methods!diag()@\texttt {diag()}}{80} -\indexentry{classes and modes!factor@\texttt {factor}}{80} -\indexentry{functions and methods!factor()@\texttt {factor()}}{80} -\indexentry{functions and methods!ordered()@\texttt {ordered()}}{80} +\indexentry{functions and methods!is.array()@\texttt {is.array()}}{73} +\indexentry{functions and methods!array()@\texttt {array()}}{74} +\indexentry{functions and methods!as.vector()@\texttt {as.vector()}}{75} +\indexentry{classes and modes!matrix@\texttt {matrix}}{75} +\indexentry{functions and methods!t()@\texttt {t()}}{76} +\indexentry{operators!\%*\%@\texttt {\%*\%}}{76} +\indexentry{functions and methods!diag()@\texttt {diag()}}{76} +\indexentry{functions and methods!solve()@\texttt {solve()}}{76} +\indexentry{classes and modes!factor@\texttt {factor}}{77} +\indexentry{functions and methods!factor()@\texttt {factor()}}{77} +\indexentry{functions and methods!ordered()@\texttt {ordered()}}{77} +\indexentry{functions and methods!factor()@\texttt {factor()}}{77} +\indexentry{functions and methods!ordered()@\texttt {ordered()}}{77} +\indexentry{functions and methods!gl()@\texttt {gl()}}{78} +\indexentry{functions and methods!gl()@\texttt {gl()}}{78} +\indexentry{functions and methods!factor()@\texttt {factor()}}{78} +\indexentry{functions and methods!factor()@\texttt {factor()}}{78} +\indexentry{functions and methods!factor()@\texttt {factor()}}{79} +\indexentry{functions and methods!factor()@\texttt {factor()}}{79} +\indexentry{functions and methods!levels()@\texttt {levels()}}{79} +\indexentry{functions and methods!as.numeric()@\texttt {as.numeric()}}{80} +\indexentry{functions and methods!as.numeric()@\texttt {as.numeric()}}{80} +\indexentry{functions and methods!as.character()@\texttt {as.character()}}{80} +\indexentry{functions and methods!as.numeric()@\texttt {as.numeric()}}{80} +\indexentry{functions and methods!as.numeric()@\texttt {as.numeric()}}{80} \indexentry{functions and methods!factor()@\texttt {factor()}}{80} -\indexentry{functions and methods!ordered()@\texttt {ordered()}}{80} -\indexentry{functions and methods!gl()@\texttt {gl()}}{81} -\indexentry{functions and methods!gl()@\texttt {gl()}}{81} -\indexentry{functions and methods!factor()@\texttt {factor()}}{81} -\indexentry{functions and methods!factor()@\texttt {factor()}}{81} -\indexentry{functions and methods!factor()@\texttt {factor()}}{82} -\indexentry{functions and methods!factor()@\texttt {factor()}}{82} -\indexentry{functions and methods!levels()@\texttt {levels()}}{83} -\indexentry{functions and methods!as.numeric()@\texttt {as.numeric()}}{84} -\indexentry{functions and methods!as.numeric()@\texttt {as.numeric()}}{84} -\indexentry{functions and methods!as.character()@\texttt {as.character()}}{84} -\indexentry{functions and methods!as.numeric()@\texttt {as.numeric()}}{84} -\indexentry{functions and methods!as.numeric()@\texttt {as.numeric()}}{84} -\indexentry{functions and methods!factor()@\texttt {factor()}}{84} -\indexentry{functions and methods!levels()@\texttt {levels()}}{84} -\indexentry{functions and methods!rev()@\texttt {rev()}}{84} -\indexentry{functions and methods!reorder()@\texttt {reorder()}}{85} -\indexentry{functions and methods!sort()@\texttt {sort()}}{85} -\indexentry{functions and methods!order()@\texttt {order()}}{85} -\indexentry{classes and modes!list@\texttt {list}}{88} -\indexentry{functions and methods!list()@\texttt {list()}}{88} -\indexentry{functions and methods!c()@\texttt {c()}}{88} -\indexentry{operators![ ]@\texttt {[ ]}}{89} +\indexentry{functions and methods!levels()@\texttt {levels()}}{80} +\indexentry{functions and methods!rev()@\texttt {rev()}}{81} +\indexentry{functions and methods!reorder()@\texttt {reorder()}}{81} +\indexentry{functions and methods!sort()@\texttt {sort()}}{82} +\indexentry{functions and methods!order()@\texttt {order()}}{82} +\indexentry{classes and modes!list@\texttt {list}}{84} +\indexentry{classes and modes!list@\texttt {list}}{84} +\indexentry{functions and methods!list()@\texttt {list()}}{84} +\indexentry{functions and methods!c()@\texttt {c()}}{84} +\indexentry{operators![ ]@\texttt {[ ]}}{85} +\indexentry{operators![ ]@\texttt {[ ]}}{85} +\indexentry{operators![[ ]]@\texttt {[[ ]]}}{86} +\indexentry{operators![[ ]]@\texttt {[[ ]]}}{86} +\indexentry{operators![ ]@\texttt {[ ]}}{86} +\indexentry{functions and methods!c()@\texttt {c()}}{87} +\indexentry{functions and methods!append()@\texttt {append()}}{87} +\indexentry{functions and methods!str()@\texttt {str()}}{88} +\indexentry{operators![[ ]]@\texttt {[[ ]]}}{89} \indexentry{operators![ ]@\texttt {[ ]}}{89} -\indexentry{operators![[ ]]@\texttt {[[ ]]}}{90} -\indexentry{operators![[ ]]@\texttt {[[ ]]}}{90} -\indexentry{operators![ ]@\texttt {[ ]}}{90} -\indexentry{functions and methods!c()@\texttt {c()}}{92} -\indexentry{functions and methods!append()@\texttt {append()}}{92} -\indexentry{functions and methods!str()@\texttt {str()}}{92} +\indexentry{functions and methods!print()@\texttt {print()}}{89} +\indexentry{functions and methods!str()@\texttt {str()}}{89} +\indexentry{functions and methods!str()@\texttt {str()}}{89} +\indexentry{functions and methods!unlist()@\texttt {unlist()}}{90} +\indexentry{functions and methods!str()@\texttt {str()}}{90} +\indexentry{functions and methods!unlist()@\texttt {unlist()}}{90} +\indexentry{functions and methods!unname()@\texttt {unname()}}{91} +\indexentry{classes and modes!data.frame@\texttt {data.frame}}{91} +\indexentry{functions and methods!data.frame()@\texttt {data.frame()}}{92} +\indexentry{classes and modes!list@\texttt {list}}{92} +\indexentry{functions and methods!data.frame()@\texttt {data.frame()}}{92} +\indexentry{functions and methods!class()@\texttt {class()}}{93} +\indexentry{classes and modes!data.frame@\texttt {data.frame}}{93} \indexentry{operators![[ ]]@\texttt {[[ ]]}}{93} -\indexentry{operators![ ]@\texttt {[ ]}}{93} -\indexentry{functions and methods!print()@\texttt {print()}}{94} -\indexentry{functions and methods!str()@\texttt {str()}}{94} -\indexentry{functions and methods!str()@\texttt {str()}}{94} -\indexentry{functions and methods!unlist()@\texttt {unlist()}}{94} -\indexentry{functions and methods!str()@\texttt {str()}}{95} -\indexentry{functions and methods!unlist()@\texttt {unlist()}}{95} -\indexentry{functions and methods!unname()@\texttt {unname()}}{95} -\indexentry{classes and modes!data.frame@\texttt {data.frame}}{96} -\indexentry{functions and methods!data.frame()@\texttt {data.frame()}}{96} -\indexentry{classes and modes!list@\texttt {list}}{96} -\indexentry{functions and methods!class()@\texttt {class()}}{97} -\indexentry{classes and modes!data.frame@\texttt {data.frame}}{97} -\indexentry{operators![[ ]]@\texttt {[[ ]]}}{97} -\indexentry{operators!\$@\texttt {\$}}{97} +\indexentry{operators!\$@\texttt {\$}}{93} +\indexentry{operators![[ ]]@\texttt {[[ ]]}}{95} +\indexentry{operators![ ]@\texttt {[ ]}}{95} +\indexentry{operators![[ ]]@\texttt {[[ ]]}}{96} +\indexentry{operators!\$@\texttt {\$}}{96} +\indexentry{operators!\$@\texttt {\$}}{96} +\indexentry{operators!\$@\texttt {\$}}{96} +\indexentry{operators!\$@\texttt {\$}}{96} +\indexentry{operators!\$@\texttt {\$}}{96} +\indexentry{operators![[ ]]@\texttt {[[ ]]}}{96} +\indexentry{operators!\$@\texttt {\$}}{96} +\indexentry{operators![[ ]]@\texttt {[[ ]]}}{96} +\indexentry{operators!\$@\texttt {\$}}{96} +\indexentry{operators![ ]@\texttt {[ ]}}{97} +\indexentry{functions and methods!I()@\texttt {I()}}{97} +\indexentry{functions and methods!I()@\texttt {I()}}{97} +\indexentry{functions and methods!I()@\texttt {I()}}{98} +\indexentry{functions and methods!I()@\texttt {I()}}{98} +\indexentry{functions and methods!I()@\texttt {I()}}{98} +\indexentry{functions and methods!data.frame()@\texttt {data.frame()}}{99} +\indexentry{functions and methods!subset()@\texttt {subset()}}{99} +\indexentry{functions and methods!subset()@\texttt {subset()}}{99} +\indexentry{operators![ ]@\texttt {[ ]}}{99} \indexentry{operators![[ ]]@\texttt {[[ ]]}}{99} +\indexentry{operators!\$@\texttt {\$}}{99} +\indexentry{functions and methods!subset()@\texttt {subset()}}{99} \indexentry{operators![ ]@\texttt {[ ]}}{99} -\indexentry{operators![[ ]]@\texttt {[[ ]]}}{100} -\indexentry{operators!\$@\texttt {\$}}{100} -\indexentry{operators!\$@\texttt {\$}}{100} -\indexentry{operators!\$@\texttt {\$}}{100} -\indexentry{operators!\$@\texttt {\$}}{100} -\indexentry{operators!\$@\texttt {\$}}{101} -\indexentry{operators![[ ]]@\texttt {[[ ]]}}{101} -\indexentry{operators!\$@\texttt {\$}}{101} -\indexentry{operators![[ ]]@\texttt {[[ ]]}}{101} -\indexentry{operators!\$@\texttt {\$}}{101} +\indexentry{operators![[ ]]@\texttt {[[ ]]}}{99} +\indexentry{operators!\$@\texttt {\$}}{99} +\indexentry{functions and methods!subset()@\texttt {subset()}}{100} +\indexentry{functions and methods!attach()@\texttt {attach()}}{100} +\indexentry{functions and methods!with()@\texttt {with()}}{100} \indexentry{operators![ ]@\texttt {[ ]}}{101} -\indexentry{functions and methods!I()@\texttt {I()}}{102} -\indexentry{functions and methods!I()@\texttt {I()}}{102} -\indexentry{functions and methods!I()@\texttt {I()}}{103} -\indexentry{functions and methods!I()@\texttt {I()}}{103} -\indexentry{functions and methods!I()@\texttt {I()}}{103} -\indexentry{functions and methods!data.frame()@\texttt {data.frame()}}{103} -\indexentry{functions and methods!subset()@\texttt {subset()}}{103} -\indexentry{functions and methods!subset()@\texttt {subset()}}{104} +\indexentry{operators!<-@\texttt {<-}}{101} +\indexentry{functions and methods!summary()@\texttt {summary()}}{101} +\indexentry{control of execution!sapply()@\texttt {sapply()}}{101} +\indexentry{control of execution!lapply()@\texttt {lapply()}}{101} +\indexentry{control of execution!vapply()@\texttt {vapply()}}{101} +\indexentry{functions and methods!split()@\texttt {split()}}{102} +\indexentry{functions and methods!unsplit()@\texttt {unsplit()}}{102} +\indexentry{functions and methods!split()@\texttt {split()}}{102} +\indexentry{functions and methods!split()@\texttt {split()}}{102} +\indexentry{functions and methods!aggregate()@\texttt {aggregate()}}{102} +\indexentry{functions and methods!aggregate()@\texttt {aggregate()}}{102} +\indexentry{functions and methods!aggregate()@\texttt {aggregate()}}{103} +\indexentry{functions and methods!aggregate()@\texttt {aggregate()}}{103} +\indexentry{functions and methods!aggregate()@\texttt {aggregate()}}{103} +\indexentry{functions and methods!aggregate()@\texttt {aggregate()}}{103} \indexentry{operators![ ]@\texttt {[ ]}}{104} -\indexentry{operators![[ ]]@\texttt {[[ ]]}}{104} -\indexentry{operators!\$@\texttt {\$}}{104} -\indexentry{functions and methods!subset()@\texttt {subset()}}{104} +\indexentry{functions and methods!order()@\texttt {order()}}{104} +\indexentry{functions and methods!order()@\texttt {order()}}{104} +\indexentry{functions and methods!order()@\texttt {order()}}{104} +\indexentry{functions and methods!order()@\texttt {order()}}{104} +\indexentry{functions and methods!order()@\texttt {order()}}{104} +\indexentry{classes and modes!matrix@\texttt {matrix}}{104} +\indexentry{classes and modes!array@\texttt {array}}{104} \indexentry{operators![ ]@\texttt {[ ]}}{104} -\indexentry{operators![[ ]]@\texttt {[[ ]]}}{104} -\indexentry{operators!\$@\texttt {\$}}{104} -\indexentry{functions and methods!subset()@\texttt {subset()}}{105} -\indexentry{functions and methods!attach()@\texttt {attach()}}{105} -\indexentry{functions and methods!with()@\texttt {with()}}{105} -\indexentry{operators![ ]@\texttt {[ ]}}{106} -\indexentry{operators!<-@\texttt {<-}}{106} -\indexentry{functions and methods!summary()@\texttt {summary()}}{106} -\indexentry{control of execution!sapply()@\texttt {sapply()}}{106} -\indexentry{control of execution!lapply()@\texttt {lapply()}}{106} -\indexentry{control of execution!vapply()@\texttt {vapply()}}{106} -\indexentry{functions and methods!split()@\texttt {split()}}{107} -\indexentry{functions and methods!unsplit()@\texttt {unsplit()}}{107} -\indexentry{functions and methods!split()@\texttt {split()}}{107} -\indexentry{functions and methods!split()@\texttt {split()}}{107} -\indexentry{functions and methods!aggregate()@\texttt {aggregate()}}{107} -\indexentry{functions and methods!aggregate()@\texttt {aggregate()}}{108} -\indexentry{functions and methods!aggregate()@\texttt {aggregate()}}{108} -\indexentry{functions and methods!aggregate()@\texttt {aggregate()}}{108} -\indexentry{functions and methods!aggregate()@\texttt {aggregate()}}{108} -\indexentry{functions and methods!aggregate()@\texttt {aggregate()}}{109} -\indexentry{operators![ ]@\texttt {[ ]}}{109} -\indexentry{functions and methods!order()@\texttt {order()}}{110} -\indexentry{functions and methods!order()@\texttt {order()}}{110} -\indexentry{functions and methods!order()@\texttt {order()}}{110} -\indexentry{functions and methods!order()@\texttt {order()}}{110} -\indexentry{functions and methods!order()@\texttt {order()}}{110} -\indexentry{classes and modes!matrix@\texttt {matrix}}{110} -\indexentry{classes and modes!array@\texttt {array}}{110} -\indexentry{operators![ ]@\texttt {[ ]}}{110} -\indexentry{functions and methods!sort()@\texttt {sort()}}{110} -\indexentry{functions and methods!order()@\texttt {order()}}{110} -\indexentry{functions and methods!order()@\texttt {order()}}{110} -\indexentry{functions and methods!order()@\texttt {order()}}{110} -\indexentry{operators![ ]@\texttt {[ ]}}{111} -\indexentry{names and their scope!transform()@\texttt {transform()}}{111} -\indexentry{names and their scope!with()@\texttt {with()}}{111} -\indexentry{names and their scope!within()@\texttt {within()}}{111} -\indexentry{names and their scope!with()@\texttt {with()}}{112} -\indexentry{names and their scope!within()@\texttt {within()}}{112} -\indexentry{names and their scope!with()@\texttt {with()}}{112} -\indexentry{names and their scope!within()@\texttt {within()}}{112} -\indexentry{names and their scope!attach()@\texttt {attach()}}{112} -\indexentry{names and their scope!detach()@\texttt {detach()}}{112} -\indexentry{names and their scope!attach()@\texttt {attach()}}{113} -\indexentry{names and their scope!detach()@\texttt {detach()}}{113} -\indexentry{names and their scope!attach()@\texttt {attach()}}{113} -\indexentry{names and their scope!detach()@\texttt {detach()}}{113} -\indexentry{names and their scope!attach()@\texttt {attach()}}{113} -\indexentry{names and their scope!detach()@\texttt {detach()}}{113} -\indexentry{names and their scope!attach()@\texttt {attach()}}{113} -\indexentry{names and their scope!detach()@\texttt {detach()}}{113} -\indexentry{names and their scope!with()@\texttt {with()}}{113} -\indexentry{names and their scope!within()@\texttt {within()}}{113} -\indexentry{names and their scope!with()@\texttt {with()}}{113} -\indexentry{names and their scope!within()@\texttt {within()}}{113} -\indexentry{names and their scope!attach()@\texttt {attach()}}{113} -\indexentry{names and their scope!detach()@\texttt {detach()}}{113} -\indexentry{functions and methods!reshape()@\texttt {reshape()}}{114} -\indexentry{functions and methods!View()@\texttt {View()}}{114} -\indexentry{functions and methods!edit()@\texttt {edit()}}{114} -\indexentry{functions and methods!fix()@\texttt {fix()}}{114} -\indexentry{functions and methods!View()@\texttt {View()}}{114} -\indexentry{functions and methods!edit()@\texttt {edit()}}{114} -\indexentry{functions and methods!fix()@\texttt {fix()}}{114} -\indexentry{functions and methods!comment()@\texttt {comment()}}{114} -\indexentry{functions and methods!comment()<-@\texttt {comment()<-}}{114} -\indexentry{functions and methods!names()@\texttt {names()}}{115} -\indexentry{functions and methods!dim()@\texttt {dim()}}{115} -\indexentry{functions and methods!levels()@\texttt {levels()}}{115} -\indexentry{functions and methods!names()<-@\texttt {names()<-}}{115} -\indexentry{functions and methods!dim()<-@\texttt {dim()<-}}{115} -\indexentry{functions and methods!levels()<-@\texttt {levels()<-}}{115} -\indexentry{functions and methods!attr()@\texttt {attr()}}{115} -\indexentry{functions and methods!attr()<-@\texttt {attr()<-}}{115} -\indexentry{functions and methods!attributes()@\texttt {attributes()}}{115} -\indexentry{functions and methods!attr()@\texttt {attr()}}{115} -\indexentry{functions and methods!attr()<-@\texttt {attr()<-}}{115} -\indexentry{functions and methods!attributes()@\texttt {attributes()}}{115} -\indexentry{functions and methods!str()@\texttt {str()}}{115} -\indexentry{functions and methods!dim()@\texttt {dim()}}{116} -\indexentry{functions and methods!attr()@\texttt {attr()}}{116} -\indexentry{functions and methods!lm()@\texttt {lm()}}{116} -\indexentry{functions and methods!data()@\texttt {data()}}{117} -\indexentry{functions and methods!data()@\texttt {data()}}{117} -\indexentry{functions and methods!save()@\texttt {save()}}{117} -\indexentry{functions and methods!save()@\texttt {save()}}{117} -\indexentry{functions and methods!load()@\texttt {load()}}{118} -\indexentry{functions and methods!ls()@\texttt {ls()}}{118} -\indexentry{functions and methods!ls()@\texttt {ls()}}{118} -\indexentry{functions and methods!unlink()@\texttt {unlink()}}{118} -\indexentry{functions and methods!readRDS()@\texttt {readRDS()}}{119} -\indexentry{functions and methods!saveRDS()@\texttt {saveRDS()}}{119} -\indexentry{functions and methods!plot()@\texttt {plot()}}{119} -\indexentry{functions and methods!plot()@\texttt {plot()}}{120} -\indexentry{functions and methods!plot()@\texttt {plot()}}{121} -\indexentry{functions and methods!plot()@\texttt {plot()}}{121} -\indexentry{functions and methods!source()@\texttt {source()}}{125} -\indexentry{functions and methods!print()@\texttt {print()}}{125} -\indexentry{functions and methods!ggplot()@\texttt {ggplot()}}{125} -\indexentry{functions and methods!print()@\texttt {print()}}{125} -\indexentry{operators!\textbar >@\texttt {\textbar >}}{133} -\indexentry{operators!\textbar >@\texttt {\textbar >}}{133} -\indexentry{operators!->@\texttt {->}}{133} -\indexentry{operators!<-@\texttt {<-}}{133} -\indexentry{operators!\textbar >@\texttt {\textbar >}}{133} -\indexentry{functions and methods!subset()@\texttt {subset()}}{134} -\indexentry{functions and methods!assign()@\texttt {assign()}}{134} -\indexentry{functions and methods!within()@\texttt {within()}}{134} -\indexentry{functions and methods!subset()@\texttt {subset()}}{134} -\indexentry{functions and methods!getElement()@\texttt {getElement()}}{135} -\indexentry{control of execution!if ()@\texttt {if ()}}{136} -\indexentry{control of execution!if () \ldots \ else@\texttt {if () \ldots \ else}}{136} -\indexentry{control of execution!if()@\texttt {if()}}{137} -\indexentry{classes and modes!logical@\texttt {logical}}{138} -\indexentry{classes and modes!numeric@\texttt {numeric}}{140} -\indexentry{classes and modes!logical@\texttt {logical}}{140} -\indexentry{control of execution!if ()@\texttt {if ()}}{140} -\indexentry{control of execution!if () \ldots \ else@\texttt {if () \ldots \ else}}{140} -\indexentry{control of execution!switch()@\texttt {switch()}}{140} -\indexentry{control of execution!if ()@\texttt {if ()}}{140} -\indexentry{control of execution!switch()@\texttt {switch()}}{140} -\indexentry{control of execution!switch()@\texttt {switch()}}{140} -\indexentry{functions and methods!switch()@\texttt {switch()}}{140} -\indexentry{control of execution!switch()@\texttt {switch()}}{140} -\indexentry{control of execution!switch()@\texttt {switch()}}{141} -\indexentry{control of execution!switch()@\texttt {switch()}}{141} -\indexentry{control of execution!switch()@\texttt {switch()}}{141} -\indexentry{control of execution!switch()@\texttt {switch()}}{141} -\indexentry{control of execution!switch()@\texttt {switch()}}{142} -\indexentry{control of execution!switch()@\texttt {switch()}}{143} -\indexentry{control of execution!switch()@\texttt {switch()}}{143} -\indexentry{control of execution!switch()@\texttt {switch()}}{143} -\indexentry{control of execution!switch()@\texttt {switch()}}{143} -\indexentry{control of execution!ifelse()@\texttt {ifelse()}}{143} -\indexentry{control of execution!ifelse()@\texttt {ifelse()}}{143} -\indexentry{control of execution!ifelse()@\texttt {ifelse()}}{144} -\indexentry{control of execution!ifelse()@\texttt {ifelse()}}{144} -\indexentry{control of execution!ifelse()@\texttt {ifelse()}}{145} -\indexentry{control of execution!for@\texttt {for}}{145} -\indexentry{control of execution!while@\texttt {while}}{145} -\indexentry{control of execution!repeat@\texttt {repeat}}{145} -\indexentry{control of execution!for@\texttt {for}}{145} -\indexentry{control of execution!for@\texttt {for}}{145} +\indexentry{functions and methods!sort()@\texttt {sort()}}{105} +\indexentry{functions and methods!order()@\texttt {order()}}{105} +\indexentry{functions and methods!order()@\texttt {order()}}{105} +\indexentry{functions and methods!order()@\texttt {order()}}{105} +\indexentry{operators![ ]@\texttt {[ ]}}{105} +\indexentry{names and their scope!transform()@\texttt {transform()}}{106} +\indexentry{names and their scope!with()@\texttt {with()}}{106} +\indexentry{names and their scope!within()@\texttt {within()}}{106} +\indexentry{names and their scope!with()@\texttt {with()}}{106} +\indexentry{names and their scope!within()@\texttt {within()}}{106} +\indexentry{names and their scope!with()@\texttt {with()}}{107} +\indexentry{names and their scope!within()@\texttt {within()}}{107} +\indexentry{names and their scope!attach()@\texttt {attach()}}{107} +\indexentry{names and their scope!detach()@\texttt {detach()}}{107} +\indexentry{names and their scope!attach()@\texttt {attach()}}{107} +\indexentry{names and their scope!detach()@\texttt {detach()}}{107} +\indexentry{names and their scope!attach()@\texttt {attach()}}{107} +\indexentry{names and their scope!detach()@\texttt {detach()}}{107} +\indexentry{names and their scope!attach()@\texttt {attach()}}{108} +\indexentry{names and their scope!detach()@\texttt {detach()}}{108} +\indexentry{names and their scope!attach()@\texttt {attach()}}{108} +\indexentry{names and their scope!detach()@\texttt {detach()}}{108} +\indexentry{names and their scope!with()@\texttt {with()}}{108} +\indexentry{names and their scope!within()@\texttt {within()}}{108} +\indexentry{names and their scope!with()@\texttt {with()}}{108} +\indexentry{names and their scope!within()@\texttt {within()}}{108} +\indexentry{names and their scope!attach()@\texttt {attach()}}{108} +\indexentry{names and their scope!detach()@\texttt {detach()}}{108} +\indexentry{functions and methods!reshape()@\texttt {reshape()}}{108} +\indexentry{functions and methods!View()@\texttt {View()}}{108} +\indexentry{functions and methods!edit()@\texttt {edit()}}{108} +\indexentry{functions and methods!fix()@\texttt {fix()}}{108} +\indexentry{functions and methods!View()@\texttt {View()}}{108} +\indexentry{functions and methods!edit()@\texttt {edit()}}{108} +\indexentry{functions and methods!fix()@\texttt {fix()}}{108} +\indexentry{functions and methods!comment()@\texttt {comment()}}{109} +\indexentry{functions and methods!comment()<-@\texttt {comment()<-}}{109} +\indexentry{functions and methods!names()@\texttt {names()}}{109} +\indexentry{functions and methods!dim()@\texttt {dim()}}{109} +\indexentry{functions and methods!levels()@\texttt {levels()}}{109} +\indexentry{functions and methods!names()<-@\texttt {names()<-}}{109} +\indexentry{functions and methods!dim()<-@\texttt {dim()<-}}{109} +\indexentry{functions and methods!levels()<-@\texttt {levels()<-}}{109} +\indexentry{functions and methods!attr()@\texttt {attr()}}{109} +\indexentry{functions and methods!attr()<-@\texttt {attr()<-}}{109} +\indexentry{functions and methods!attributes()@\texttt {attributes()}}{109} +\indexentry{functions and methods!attr()@\texttt {attr()}}{109} +\indexentry{functions and methods!attr()<-@\texttt {attr()<-}}{109} +\indexentry{functions and methods!attributes()@\texttt {attributes()}}{109} +\indexentry{functions and methods!str()@\texttt {str()}}{109} +\indexentry{functions and methods!dim()@\texttt {dim()}}{111} +\indexentry{functions and methods!attr()@\texttt {attr()}}{111} +\indexentry{functions and methods!lm()@\texttt {lm()}}{111} +\indexentry{functions and methods!data()@\texttt {data()}}{111} +\indexentry{functions and methods!data()@\texttt {data()}}{111} +\indexentry{functions and methods!save()@\texttt {save()}}{112} +\indexentry{functions and methods!save()@\texttt {save()}}{112} +\indexentry{functions and methods!load()@\texttt {load()}}{112} +\indexentry{functions and methods!ls()@\texttt {ls()}}{112} +\indexentry{functions and methods!ls()@\texttt {ls()}}{113} +\indexentry{functions and methods!unlink()@\texttt {unlink()}}{113} +\indexentry{functions and methods!readRDS()@\texttt {readRDS()}}{113} +\indexentry{functions and methods!saveRDS()@\texttt {saveRDS()}}{113} +\indexentry{functions and methods!plot()@\texttt {plot()}}{113} +\indexentry{functions and methods!plot()@\texttt {plot()}}{114} +\indexentry{functions and methods!plot()@\texttt {plot()}}{115} +\indexentry{functions and methods!plot()@\texttt {plot()}}{115} +\indexentry{functions and methods!source()@\texttt {source()}}{121} +\indexentry{functions and methods!print()@\texttt {print()}}{121} +\indexentry{functions and methods!ggplot()@\texttt {ggplot()}}{121} +\indexentry{functions and methods!print()@\texttt {print()}}{121} +\indexentry{operators!\textbar >@\texttt {\textbar >}}{129} +\indexentry{operators!\textbar >@\texttt {\textbar >}}{129} +\indexentry{operators!->@\texttt {->}}{129} +\indexentry{operators!<-@\texttt {<-}}{129} +\indexentry{operators!\textbar >@\texttt {\textbar >}}{129} +\indexentry{functions and methods!subset()@\texttt {subset()}}{130} +\indexentry{functions and methods!assign()@\texttt {assign()}}{130} +\indexentry{functions and methods!within()@\texttt {within()}}{130} +\indexentry{functions and methods!subset()@\texttt {subset()}}{130} +\indexentry{functions and methods!getElement()@\texttt {getElement()}}{131} +\indexentry{control of execution!if ()@\texttt {if ()}}{132} +\indexentry{control of execution!if () \ldots \ else@\texttt {if () \ldots \ else}}{132} +\indexentry{control of execution!if()@\texttt {if()}}{133} +\indexentry{classes and modes!logical@\texttt {logical}}{133} +\indexentry{classes and modes!numeric@\texttt {numeric}}{135} +\indexentry{classes and modes!logical@\texttt {logical}}{135} +\indexentry{control of execution!if ()@\texttt {if ()}}{135} +\indexentry{control of execution!if () \ldots \ else@\texttt {if () \ldots \ else}}{135} +\indexentry{control of execution!switch()@\texttt {switch()}}{135} +\indexentry{control of execution!if ()@\texttt {if ()}}{135} +\indexentry{control of execution!switch()@\texttt {switch()}}{135} +\indexentry{control of execution!switch()@\texttt {switch()}}{135} +\indexentry{functions and methods!switch()@\texttt {switch()}}{136} +\indexentry{control of execution!switch()@\texttt {switch()}}{136} +\indexentry{control of execution!switch()@\texttt {switch()}}{136} +\indexentry{control of execution!switch()@\texttt {switch()}}{136} +\indexentry{control of execution!switch()@\texttt {switch()}}{136} +\indexentry{control of execution!switch()@\texttt {switch()}}{137} +\indexentry{control of execution!switch()@\texttt {switch()}}{137} +\indexentry{control of execution!switch()@\texttt {switch()}}{138} +\indexentry{control of execution!switch()@\texttt {switch()}}{138} +\indexentry{control of execution!switch()@\texttt {switch()}}{138} +\indexentry{control of execution!switch()@\texttt {switch()}}{138} +\indexentry{control of execution!ifelse()@\texttt {ifelse()}}{138} +\indexentry{control of execution!ifelse()@\texttt {ifelse()}}{138} +\indexentry{control of execution!ifelse()@\texttt {ifelse()}}{139} +\indexentry{control of execution!ifelse()@\texttt {ifelse()}}{140} +\indexentry{control of execution!ifelse()@\texttt {ifelse()}}{140} +\indexentry{control of execution!for@\texttt {for}}{140} +\indexentry{control of execution!while@\texttt {while}}{140} +\indexentry{control of execution!repeat@\texttt {repeat}}{140} +\indexentry{control of execution!for@\texttt {for}}{141} +\indexentry{control of execution!for@\texttt {for}}{141} +\indexentry{control of execution!for@\texttt {for}}{142} +\indexentry{operators![ ]@\texttt {[ ]}}{142} +\indexentry{functions and methods!print()@\texttt {print()}}{143} +\indexentry{functions and methods!seq()@\texttt {seq()}}{143} +\indexentry{control of execution!for@\texttt {for}}{144} +\indexentry{control of execution!break()@\texttt {break()}}{144} +\indexentry{control of execution!next()@\texttt {next()}}{144} +\indexentry{control of execution!for@\texttt {for}}{144} +\indexentry{control of execution!break()@\texttt {break()}}{144} +\indexentry{control of execution!next()@\texttt {next()}}{144} +\indexentry{control of execution!for@\texttt {for}}{144} +\indexentry{control of execution!while@\texttt {while}}{144} +\indexentry{control of execution!repeat@\texttt {repeat}}{144} +\indexentry{control of execution!while@\texttt {while}}{144} +\indexentry{functions and methods!while@\texttt {while}}{145} +\indexentry{functions and methods!while@\texttt {while}}{145} +\indexentry{control of execution!while@\texttt {while}}{146} +\indexentry{control of execution!break()@\texttt {break()}}{146} +\indexentry{control of execution!repeat@\texttt {repeat}}{146} +\indexentry{control of execution!break()@\texttt {break()}}{146} +\indexentry{control of execution!break()@\texttt {break()}}{146} +\indexentry{control of execution!break()@\texttt {break()}}{147} \indexentry{control of execution!for@\texttt {for}}{147} -\indexentry{operators![ ]@\texttt {[ ]}}{147} -\indexentry{functions and methods!print()@\texttt {print()}}{148} -\indexentry{functions and methods!seq()@\texttt {seq()}}{149} -\indexentry{control of execution!for@\texttt {for}}{149} -\indexentry{control of execution!break()@\texttt {break()}}{149} -\indexentry{control of execution!next()@\texttt {next()}}{149} -\indexentry{control of execution!for@\texttt {for}}{149} -\indexentry{control of execution!break()@\texttt {break()}}{149} -\indexentry{control of execution!next()@\texttt {next()}}{149} -\indexentry{control of execution!for@\texttt {for}}{149} -\indexentry{control of execution!while@\texttt {while}}{149} -\indexentry{control of execution!repeat@\texttt {repeat}}{149} -\indexentry{control of execution!while@\texttt {while}}{150} -\indexentry{functions and methods!while@\texttt {while}}{151} -\indexentry{functions and methods!while@\texttt {while}}{151} -\indexentry{control of execution!while@\texttt {while}}{151} -\indexentry{control of execution!break()@\texttt {break()}}{151} -\indexentry{control of execution!repeat@\texttt {repeat}}{151} -\indexentry{control of execution!break()@\texttt {break()}}{151} -\indexentry{control of execution!break()@\texttt {break()}}{151} -\indexentry{control of execution!break()@\texttt {break()}}{152} -\indexentry{control of execution!for@\texttt {for}}{152} -\indexentry{control of execution!while@\texttt {while}}{152} -\indexentry{control of execution!repeat@\texttt {repeat}}{152} -\indexentry{functions and methods!system.time()@\texttt {system.time()}}{152} -\indexentry{control of execution!for@\texttt {for}}{152} -\indexentry{functions and methods!system.time()@\texttt {system.time()}}{153} +\indexentry{control of execution!while@\texttt {while}}{147} +\indexentry{control of execution!repeat@\texttt {repeat}}{147} +\indexentry{functions and methods!system.time()@\texttt {system.time()}}{147} +\indexentry{control of execution!for@\texttt {for}}{147} +\indexentry{functions and methods!system.time()@\texttt {system.time()}}{148} +\indexentry{control of execution!apply()@\texttt {apply()}}{149} +\indexentry{control of execution!lapply()@\texttt {lapply()}}{149} +\indexentry{control of execution!sapply()@\texttt {sapply()}}{149} +\indexentry{functions and methods!on.exit()@\texttt {on.exit()}}{150} +\indexentry{functions and methods!on.exit()@\texttt {on.exit()}}{150} +\indexentry{control of execution!lapply()@\texttt {lapply()}}{151} +\indexentry{control of execution!sapply()@\texttt {sapply()}}{151} +\indexentry{control of execution!lapply()@\texttt {lapply()}}{151} +\indexentry{control of execution!vapply()@\texttt {vapply()}}{151} +\indexentry{control of execution!sapply()@\texttt {sapply()}}{151} +\indexentry{control of execution!apply()@\texttt {apply()}}{151} +\indexentry{control of execution!lapply()@\texttt {lapply()}}{151} +\indexentry{control of execution!apply()@\texttt {apply()}}{151} +\indexentry{control of execution!lapply()@\texttt {lapply()}}{151} +\indexentry{control of execution!sapply()@\texttt {sapply()}}{151} +\indexentry{control of execution!apply()@\texttt {apply()}}{151} +\indexentry{control of execution!lapply()@\texttt {lapply()}}{151} +\indexentry{control of execution!sapply()@\texttt {sapply()}}{151} +\indexentry{control of execution!vapply()@\texttt {vapply()}}{151} +\indexentry{control of execution!lapply()@\texttt {lapply()}}{152} +\indexentry{control of execution!sapply()@\texttt {sapply()}}{152} +\indexentry{control of execution!vapply()@\texttt {vapply()}}{153} +\indexentry{control of execution!vapply()@\texttt {vapply()}}{153} +\indexentry{functions and methods!summary()@\texttt {summary()}}{153} +\indexentry{control of execution!apply()@\texttt {apply()}}{154} +\indexentry{functions and methods!mean()@\texttt {mean()}}{154} +\indexentry{control of execution!apply()@\texttt {apply()}}{154} +\indexentry{control of execution!apply()@\texttt {apply()}}{154} +\indexentry{control of execution!apply()@\texttt {apply()}}{154} +\indexentry{functions and methods!t()@\texttt {t()}}{155} \indexentry{control of execution!apply()@\texttt {apply()}}{155} -\indexentry{control of execution!lapply()@\texttt {lapply()}}{155} -\indexentry{control of execution!sapply()@\texttt {sapply()}}{155} -\indexentry{functions and methods!on.exit()@\texttt {on.exit()}}{155} -\indexentry{functions and methods!on.exit()@\texttt {on.exit()}}{155} -\indexentry{control of execution!lapply()@\texttt {lapply()}}{156} -\indexentry{control of execution!sapply()@\texttt {sapply()}}{156} -\indexentry{control of execution!lapply()@\texttt {lapply()}}{156} -\indexentry{control of execution!vapply()@\texttt {vapply()}}{156} -\indexentry{control of execution!sapply()@\texttt {sapply()}}{156} -\indexentry{control of execution!apply()@\texttt {apply()}}{156} -\indexentry{control of execution!lapply()@\texttt {lapply()}}{156} -\indexentry{control of execution!apply()@\texttt {apply()}}{156} -\indexentry{control of execution!lapply()@\texttt {lapply()}}{156} -\indexentry{control of execution!sapply()@\texttt {sapply()}}{156} -\indexentry{control of execution!apply()@\texttt {apply()}}{156} -\indexentry{control of execution!lapply()@\texttt {lapply()}}{157} -\indexentry{control of execution!sapply()@\texttt {sapply()}}{157} -\indexentry{control of execution!vapply()@\texttt {vapply()}}{157} -\indexentry{control of execution!lapply()@\texttt {lapply()}}{157} -\indexentry{control of execution!sapply()@\texttt {sapply()}}{157} -\indexentry{control of execution!vapply()@\texttt {vapply()}}{158} -\indexentry{control of execution!vapply()@\texttt {vapply()}}{159} -\indexentry{functions and methods!summary()@\texttt {summary()}}{159} -\indexentry{control of execution!apply()@\texttt {apply()}}{159} -\indexentry{functions and methods!mean()@\texttt {mean()}}{159} -\indexentry{control of execution!apply()@\texttt {apply()}}{160} -\indexentry{control of execution!apply()@\texttt {apply()}}{160} -\indexentry{control of execution!apply()@\texttt {apply()}}{160} -\indexentry{functions and methods!t()@\texttt {t()}}{160} -\indexentry{control of execution!apply()@\texttt {apply()}}{161} -\indexentry{functions and methods!mean()@\texttt {mean()}}{162} -\indexentry{functions and methods!var()@\texttt {var()}}{162} -\indexentry{functions and methods!sd()@\texttt {sd()}}{162} -\indexentry{functions and methods!max()@\texttt {max()}}{162} -\indexentry{functions and methods!min()@\texttt {min()}}{162} -\indexentry{functions and methods!inverse.rle()@\texttt {inverse.rle()}}{162} -\indexentry{functions and methods!sum()@\texttt {sum()}}{162} -\indexentry{functions and methods!prod()@\texttt {prod()}}{162} -\indexentry{functions and methods!cumsum()@\texttt {cumsum()}}{162} -\indexentry{functions and methods!cumprod()@\texttt {cumprod()}}{162} -\indexentry{functions and methods!cummax()@\texttt {cummax()}}{162} -\indexentry{functions and methods!cummin()@\texttt {cummin()}}{162} -\indexentry{functions and methods!runmed()@\texttt {runmed()}}{162} -\indexentry{functions and methods!diff()@\texttt {diff()}}{162} -\indexentry{functions and methods!diffinv()@\texttt {diffinv()}}{162} -\indexentry{functions and methods!factorial()@\texttt {factorial()}}{162} -\indexentry{functions and methods!rle()@\texttt {rle()}}{162} -\indexentry{functions and methods!inverse.rle()@\texttt {inverse.rle()}}{162} -\indexentry{functions and methods!assign()@\texttt {assign()}}{162} -\indexentry{functions and methods!assign()@\texttt {assign()}}{163} -\indexentry{functions and methods!get()@\texttt {get()}}{163} -\indexentry{functions and methods!mget()@\texttt {mget()}}{163} -\indexentry{functions and methods!assign()@\texttt {assign()}}{163} -\indexentry{functions and methods!get()@\texttt {get()}}{163} -\indexentry{functions and methods!mget()@\texttt {mget()}}{163} -\indexentry{functions and methods!do.call()@\texttt {do.call()}}{164} -\indexentry{functions and methods!anova()@\texttt {anova()}}{165} -\indexentry{functions and methods!do.call()@\texttt {do.call()}}{165} -\indexentry{functions and methods!anova()@\texttt {anova()}}{165} -\indexentry{functions and methods!do.call()@\texttt {do.call()}}{165} -\indexentry{functions and methods!anova()@\texttt {anova()}}{165} -\indexentry{functions and methods!print()@\texttt {print()}}{168} -\indexentry{functions and methods!function()@\texttt {function()}}{169} -\indexentry{functions and methods!lm()@\texttt {lm()}}{170} -\indexentry{classes and modes!lm@\texttt {lm}}{170} -\indexentry{classes and modes!list@\texttt {list}}{170} -\indexentry{control of execution!return()@\texttt {return()}}{170} -\indexentry{control of execution!return()@\texttt {return()}}{170} -\indexentry{control of execution!return()@\texttt {return()}}{170} -\indexentry{operators!<<-@\texttt {<<-}}{170} -\indexentry{functions and methods!assign()@\texttt {assign()}}{170} -\indexentry{functions and methods!environment()@\texttt {environment()}}{171} -\indexentry{functions and methods!environment()@\texttt {environment()}}{171} -\indexentry{functions and methods!SEM()@\texttt {SEM()}}{171} -\indexentry{functions and methods!var()@\texttt {var()}}{171} -\indexentry{functions and methods!SEM()@\texttt {SEM()}}{172} -\indexentry{functions and methods!sum()@\texttt {sum()}}{172} -\indexentry{functions and methods!plot()@\texttt {plot()}}{175} -\indexentry{functions and methods!plot()@\texttt {plot()}}{175} -\indexentry{functions and methods!plot()@\texttt {plot()}}{175} -\indexentry{functions and methods!methods()@\texttt {methods()}}{176} -\indexentry{functions and methods!methods()@\texttt {methods()}}{176} -\indexentry{functions and methods!sprintf()@\texttt {sprintf()}}{176} -\indexentry{functions and methods!sprintf()@\texttt {sprintf()}}{176} -\indexentry{functions and methods!my\_print()@\texttt {my\_print()}}{177} -\indexentry{names and their scope!exists()@\texttt {exists()}}{178} -\indexentry{functions and methods!library()@\texttt {library()}}{180} -\indexentry{functions and methods!install.packages()@\texttt {install.packages()}}{180} -\indexentry{functions and methods!install.packages()@\texttt {install.packages()}}{180} -\indexentry{functions and methods!update.packages()@\texttt {update.packages()}}{180} -\indexentry{functions and methods!install.packages()@\texttt {install.packages()}}{180} -\indexentry{functions and methods!update.packages()@\texttt {update.packages()}}{180} -\indexentry{functions and methods!install.packages()@\texttt {install.packages()}}{180} -\indexentry{functions and methods!setRepositories()@\texttt {setRepositories()}}{181} -\indexentry{functions and methods!library()@\texttt {library()}}{181} -\indexentry{functions and methods!citation()@\texttt {citation()}}{181} -\indexentry{functions and methods!library()@\texttt {library()}}{183} -\indexentry{names and their scope!detach()@\texttt {detach()}}{183} -\indexentry{functions and methods!library@\texttt {library}}{183} -\indexentry{functions and methods!list()@\texttt {list()}}{184} -\indexentry{functions and methods!search()@\texttt {search()}}{184} -\indexentry{functions and methods!getAnywhere()@\texttt {getAnywhere()}}{185} -\indexentry{functions and methods!mean()@\texttt {mean()}}{188} -\indexentry{functions and methods!var()@\texttt {var()}}{188} -\indexentry{functions and methods!sd()@\texttt {sd()}}{188} -\indexentry{functions and methods!median()@\texttt {median()}}{188} -\indexentry{functions and methods!mad()@\texttt {mad()}}{188} -\indexentry{functions and methods!mode()@\texttt {mode()}}{188} -\indexentry{functions and methods!max()@\texttt {max()}}{188} -\indexentry{functions and methods!min()@\texttt {min()}}{188} -\indexentry{functions and methods!range()@\texttt {range()}}{188} -\indexentry{functions and methods!quantile()@\texttt {quantile()}}{188} -\indexentry{functions and methods!length()@\texttt {length()}}{188} -\indexentry{functions and methods!summary()@\texttt {summary()}}{188} +\indexentry{functions and methods!mean()@\texttt {mean()}}{156} +\indexentry{functions and methods!var()@\texttt {var()}}{156} +\indexentry{functions and methods!sd()@\texttt {sd()}}{156} +\indexentry{functions and methods!max()@\texttt {max()}}{156} +\indexentry{functions and methods!min()@\texttt {min()}}{156} +\indexentry{functions and methods!inverse.rle()@\texttt {inverse.rle()}}{156} +\indexentry{functions and methods!sum()@\texttt {sum()}}{156} +\indexentry{functions and methods!prod()@\texttt {prod()}}{156} +\indexentry{functions and methods!cumsum()@\texttt {cumsum()}}{156} +\indexentry{functions and methods!cumprod()@\texttt {cumprod()}}{156} +\indexentry{functions and methods!cummax()@\texttt {cummax()}}{156} +\indexentry{functions and methods!cummin()@\texttt {cummin()}}{156} +\indexentry{functions and methods!runmed()@\texttt {runmed()}}{156} +\indexentry{functions and methods!diff()@\texttt {diff()}}{156} +\indexentry{functions and methods!diffinv()@\texttt {diffinv()}}{156} +\indexentry{functions and methods!factorial()@\texttt {factorial()}}{156} +\indexentry{functions and methods!rle()@\texttt {rle()}}{156} +\indexentry{functions and methods!inverse.rle()@\texttt {inverse.rle()}}{156} +\indexentry{functions and methods!assign()@\texttt {assign()}}{157} +\indexentry{functions and methods!assign()@\texttt {assign()}}{157} +\indexentry{functions and methods!get()@\texttt {get()}}{157} +\indexentry{functions and methods!mget()@\texttt {mget()}}{157} +\indexentry{functions and methods!assign()@\texttt {assign()}}{158} +\indexentry{functions and methods!get()@\texttt {get()}}{158} +\indexentry{functions and methods!mget()@\texttt {mget()}}{158} +\indexentry{functions and methods!do.call()@\texttt {do.call()}}{158} +\indexentry{functions and methods!anova()@\texttt {anova()}}{159} +\indexentry{functions and methods!do.call()@\texttt {do.call()}}{159} +\indexentry{functions and methods!anova()@\texttt {anova()}}{159} +\indexentry{functions and methods!do.call()@\texttt {do.call()}}{159} +\indexentry{functions and methods!anova()@\texttt {anova()}}{159} +\indexentry{functions and methods!print()@\texttt {print()}}{162} +\indexentry{functions and methods!function()@\texttt {function()}}{163} +\indexentry{functions and methods!lm()@\texttt {lm()}}{163} +\indexentry{classes and modes!lm@\texttt {lm}}{163} +\indexentry{classes and modes!list@\texttt {list}}{163} +\indexentry{control of execution!return()@\texttt {return()}}{164} +\indexentry{control of execution!return()@\texttt {return()}}{164} +\indexentry{control of execution!return()@\texttt {return()}}{164} +\indexentry{operators!<<-@\texttt {<<-}}{164} +\indexentry{functions and methods!assign()@\texttt {assign()}}{164} +\indexentry{functions and methods!environment()@\texttt {environment()}}{164} +\indexentry{functions and methods!environment()@\texttt {environment()}}{164} +\indexentry{functions and methods!SEM()@\texttt {SEM()}}{165} +\indexentry{functions and methods!var()@\texttt {var()}}{165} +\indexentry{functions and methods!SEM()@\texttt {SEM()}}{165} +\indexentry{functions and methods!sum()@\texttt {sum()}}{165} +\indexentry{functions and methods!plot()@\texttt {plot()}}{169} +\indexentry{functions and methods!plot()@\texttt {plot()}}{169} +\indexentry{functions and methods!plot()@\texttt {plot()}}{169} +\indexentry{functions and methods!methods()@\texttt {methods()}}{169} +\indexentry{functions and methods!methods()@\texttt {methods()}}{169} +\indexentry{functions and methods!sprintf()@\texttt {sprintf()}}{170} +\indexentry{functions and methods!sprintf()@\texttt {sprintf()}}{170} +\indexentry{functions and methods!my\_print()@\texttt {my\_print()}}{170} +\indexentry{names and their scope!exists()@\texttt {exists()}}{172} +\indexentry{functions and methods!library()@\texttt {library()}}{173} +\indexentry{functions and methods!install.packages()@\texttt {install.packages()}}{173} +\indexentry{functions and methods!install.packages()@\texttt {install.packages()}}{173} +\indexentry{functions and methods!update.packages()@\texttt {update.packages()}}{173} +\indexentry{functions and methods!install.packages()@\texttt {install.packages()}}{173} +\indexentry{functions and methods!update.packages()@\texttt {update.packages()}}{173} +\indexentry{functions and methods!install.packages()@\texttt {install.packages()}}{174} +\indexentry{functions and methods!setRepositories()@\texttt {setRepositories()}}{174} +\indexentry{functions and methods!library()@\texttt {library()}}{174} +\indexentry{functions and methods!citation()@\texttt {citation()}}{174} +\indexentry{functions and methods!library()@\texttt {library()}}{176} +\indexentry{names and their scope!detach()@\texttt {detach()}}{176} +\indexentry{functions and methods!library@\texttt {library}}{177} +\indexentry{functions and methods!list()@\texttt {list()}}{177} +\indexentry{functions and methods!search()@\texttt {search()}}{177} +\indexentry{functions and methods!getAnywhere()@\texttt {getAnywhere()}}{178} +\indexentry{functions and methods!mean()@\texttt {mean()}}{180} +\indexentry{functions and methods!var()@\texttt {var()}}{180} +\indexentry{functions and methods!sd()@\texttt {sd()}}{180} +\indexentry{functions and methods!median()@\texttt {median()}}{180} +\indexentry{functions and methods!mad()@\texttt {mad()}}{180} +\indexentry{functions and methods!mode()@\texttt {mode()}}{180} +\indexentry{functions and methods!max()@\texttt {max()}}{180} +\indexentry{functions and methods!min()@\texttt {min()}}{180} +\indexentry{functions and methods!range()@\texttt {range()}}{180} +\indexentry{functions and methods!quantile()@\texttt {quantile()}}{180} +\indexentry{functions and methods!length()@\texttt {length()}}{180} +\indexentry{functions and methods!summary()@\texttt {summary()}}{180} +\indexentry{functions and methods!summary()@\texttt {summary()}}{180} +\indexentry{functions and methods!boxplot.stats()@\texttt {boxplot.stats()}}{180} +\indexentry{functions and methods!dnorm()@\texttt {dnorm()}}{181} +\indexentry{functions and methods!pnorm()@\texttt {pnorm()}}{181} +\indexentry{functions and methods!qnorm()@\texttt {qnorm()}}{181} +\indexentry{functions and methods!rnorm()@\texttt {rnorm()}}{181} +\indexentry{functions and methods!dt()@\texttt {dt()}}{181} +\indexentry{functions and methods!pt()@\texttt {pt()}}{181} +\indexentry{functions and methods!qt()@\texttt {qt()}}{181} +\indexentry{functions and methods!rt()@\texttt {rt()}}{181} +\indexentry{functions and methods!df()@\texttt {df()}}{181} +\indexentry{functions and methods!pf()@\texttt {pf()}}{181} +\indexentry{functions and methods!qf()@\texttt {qf()}}{181} +\indexentry{functions and methods!rf()@\texttt {rf()}}{181} +\indexentry{functions and methods!dbinom()@\texttt {dbinom()}}{181} +\indexentry{functions and methods!pbinom()@\texttt {pbinom()}}{181} +\indexentry{functions and methods!qbinom()@\texttt {qbinom()}}{181} +\indexentry{functions and methods!rbinom()@\texttt {rbinom()}}{181} +\indexentry{functions and methods!dmultinom()@\texttt {dmultinom()}}{181} +\indexentry{functions and methods!pmultinom()@\texttt {pmultinom()}}{181} +\indexentry{functions and methods!qmultinom()@\texttt {qmultinom()}}{181} +\indexentry{functions and methods!rmultinom()@\texttt {rmultinom()}}{181} +\indexentry{functions and methods!dpois()@\texttt {dpois()}}{181} +\indexentry{functions and methods!ppois()@\texttt {ppois()}}{181} +\indexentry{functions and methods!qpois()@\texttt {qpois()}}{181} +\indexentry{functions and methods!rpois()@\texttt {rpois()}}{181} +\indexentry{functions and methods!dchisq()@\texttt {dchisq()}}{181} +\indexentry{functions and methods!pchisq()@\texttt {pchisq()}}{181} +\indexentry{functions and methods!qchisq()@\texttt {qchisq()}}{181} +\indexentry{functions and methods!rchisq()@\texttt {rchisq()}}{181} +\indexentry{functions and methods!dlnorm()@\texttt {dlnorm()}}{181} +\indexentry{functions and methods!plnorm()@\texttt {plnorm()}}{181} +\indexentry{functions and methods!qlnorm()@\texttt {qlnorm()}}{181} +\indexentry{functions and methods!rlnorm()@\texttt {rlnorm()}}{181} +\indexentry{functions and methods!dunif()@\texttt {dunif()}}{181} +\indexentry{functions and methods!punif()@\texttt {punif()}}{181} +\indexentry{functions and methods!qunif()@\texttt {qunif()}}{181} +\indexentry{functions and methods!runif()@\texttt {runif()}}{181} +\indexentry{functions and methods!pnorm()@\texttt {pnorm()}}{183} +\indexentry{functions and methods!pt()@\texttt {pt()}}{183} +\indexentry{functions and methods!qnorm()@\texttt {qnorm()}}{183} +\indexentry{functions and methods!pnorm()@\texttt {pnorm()}}{183} +\indexentry{functions and methods!rnorm()@\texttt {rnorm()}}{184} +\indexentry{functions and methods!runif()@\texttt {runif()}}{184} +\indexentry{functions and methods!set.seed()@\texttt {set.seed()}}{184} +\indexentry{functions and methods!rnorm()@\texttt {rnorm()}}{184} +\indexentry{functions and methods!set.seed()@\texttt {set.seed()}}{184} +\indexentry{operators![ ]@\texttt {[ ]}}{185} +\indexentry{functions and methods!sample()@\texttt {sample()}}{185} +\indexentry{functions and methods!cor()@\texttt {cor()}}{186} +\indexentry{functions and methods!rnorm()@\texttt {rnorm()}}{186} +\indexentry{functions and methods!matrix()@\texttt {matrix()}}{186} +\indexentry{functions and methods!cor()@\texttt {cor()}}{186} +\indexentry{functions and methods!cor.test()@\texttt {cor.test()}}{186} +\indexentry{functions and methods!cor()@\texttt {cor()}}{187} +\indexentry{functions and methods!cor.test()@\texttt {cor.test()}}{187} +\indexentry{functions and methods!print()@\texttt {print()}}{187} +\indexentry{functions and methods!str()@\texttt {str()}}{187} +\indexentry{functions and methods!class()@\texttt {class()}}{187} +\indexentry{functions and methods!attributes()@\texttt {attributes()}}{187} +\indexentry{functions and methods!cor()@\texttt {cor()}}{187} +\indexentry{functions and methods!class()@\texttt {class()}}{187} +\indexentry{functions and methods!attributes()@\texttt {attributes()}}{187} +\indexentry{functions and methods!str()@\texttt {str()}}{187} +\indexentry{functions and methods!cor.test()@\texttt {cor.test()}}{187} +\indexentry{functions and methods!cor()@\texttt {cor()}}{187} \indexentry{functions and methods!summary()@\texttt {summary()}}{188} -\indexentry{functions and methods!boxplot.stats()@\texttt {boxplot.stats()}}{188} -\indexentry{functions and methods!dnorm()@\texttt {dnorm()}}{189} -\indexentry{functions and methods!pnorm()@\texttt {pnorm()}}{189} -\indexentry{functions and methods!qnorm()@\texttt {qnorm()}}{189} -\indexentry{functions and methods!rnorm()@\texttt {rnorm()}}{189} -\indexentry{functions and methods!dt()@\texttt {dt()}}{189} -\indexentry{functions and methods!pt()@\texttt {pt()}}{189} -\indexentry{functions and methods!qt()@\texttt {qt()}}{189} -\indexentry{functions and methods!rt()@\texttt {rt()}}{189} -\indexentry{functions and methods!df()@\texttt {df()}}{189} -\indexentry{functions and methods!pf()@\texttt {pf()}}{189} -\indexentry{functions and methods!qf()@\texttt {qf()}}{189} -\indexentry{functions and methods!rf()@\texttt {rf()}}{189} -\indexentry{functions and methods!dbinom()@\texttt {dbinom()}}{189} -\indexentry{functions and methods!pbinom()@\texttt {pbinom()}}{189} -\indexentry{functions and methods!qbinom()@\texttt {qbinom()}}{189} -\indexentry{functions and methods!rbinom()@\texttt {rbinom()}}{189} -\indexentry{functions and methods!dmultinom()@\texttt {dmultinom()}}{189} -\indexentry{functions and methods!pmultinom()@\texttt {pmultinom()}}{189} -\indexentry{functions and methods!qmultinom()@\texttt {qmultinom()}}{189} -\indexentry{functions and methods!rmultinom()@\texttt {rmultinom()}}{189} -\indexentry{functions and methods!dpois()@\texttt {dpois()}}{189} -\indexentry{functions and methods!ppois()@\texttt {ppois()}}{189} -\indexentry{functions and methods!qpois()@\texttt {qpois()}}{189} -\indexentry{functions and methods!rpois()@\texttt {rpois()}}{189} -\indexentry{functions and methods!dchisq()@\texttt {dchisq()}}{189} -\indexentry{functions and methods!pchisq()@\texttt {pchisq()}}{189} -\indexentry{functions and methods!qchisq()@\texttt {qchisq()}}{189} -\indexentry{functions and methods!rchisq()@\texttt {rchisq()}}{189} -\indexentry{functions and methods!dlnorm()@\texttt {dlnorm()}}{189} -\indexentry{functions and methods!plnorm()@\texttt {plnorm()}}{189} -\indexentry{functions and methods!qlnorm()@\texttt {qlnorm()}}{189} -\indexentry{functions and methods!rlnorm()@\texttt {rlnorm()}}{189} -\indexentry{functions and methods!dunif()@\texttt {dunif()}}{189} -\indexentry{functions and methods!punif()@\texttt {punif()}}{189} -\indexentry{functions and methods!qunif()@\texttt {qunif()}}{189} -\indexentry{functions and methods!runif()@\texttt {runif()}}{189} -\indexentry{functions and methods!pnorm()@\texttt {pnorm()}}{191} -\indexentry{functions and methods!pt()@\texttt {pt()}}{191} -\indexentry{functions and methods!qnorm()@\texttt {qnorm()}}{191} -\indexentry{functions and methods!pnorm()@\texttt {pnorm()}}{191} -\indexentry{functions and methods!rnorm()@\texttt {rnorm()}}{192} -\indexentry{functions and methods!runif()@\texttt {runif()}}{192} -\indexentry{functions and methods!set.seed()@\texttt {set.seed()}}{192} -\indexentry{functions and methods!rnorm()@\texttt {rnorm()}}{192} -\indexentry{functions and methods!set.seed()@\texttt {set.seed()}}{192} -\indexentry{operators![ ]@\texttt {[ ]}}{193} -\indexentry{functions and methods!sample()@\texttt {sample()}}{194} -\indexentry{functions and methods!cor()@\texttt {cor()}}{194} -\indexentry{functions and methods!rnorm()@\texttt {rnorm()}}{194} -\indexentry{functions and methods!matrix()@\texttt {matrix()}}{194} -\indexentry{functions and methods!cor()@\texttt {cor()}}{195} -\indexentry{functions and methods!cor.test()@\texttt {cor.test()}}{195} -\indexentry{functions and methods!cor()@\texttt {cor()}}{195} -\indexentry{functions and methods!cor.test()@\texttt {cor.test()}}{195} -\indexentry{functions and methods!print()@\texttt {print()}}{195} +\indexentry{functions and methods!anova()@\texttt {anova()}}{188} +\indexentry{functions and methods!plot()@\texttt {plot()}}{188} +\indexentry{functions and methods!coef()@\texttt {coef()}}{188} +\indexentry{functions and methods!residuals()@\texttt {residuals()}}{188} +\indexentry{functions and methods!fitted()@\texttt {fitted()}}{188} +\indexentry{functions and methods!predict()@\texttt {predict()}}{188} +\indexentry{functions and methods!AIC()@\texttt {AIC()}}{188} +\indexentry{functions and methods!BIC()@\texttt {BIC()}}{188} +\indexentry{functions and methods!lm()@\texttt {lm()}}{188} +\indexentry{functions and methods!lm()@\texttt {lm()}}{189} +\indexentry{functions and methods!lm()@\texttt {lm()}}{189} +\indexentry{data objects!cars@\texttt {cars}}{189} +\indexentry{functions and methods!summary()@\texttt {summary()}}{190} +\indexentry{functions and methods!summary()@\texttt {summary()}}{190} +\indexentry{functions and methods!lm()@\texttt {lm()}}{191} +\indexentry{functions and methods!I()@\texttt {I()}}{191} +\indexentry{functions and methods!poly()@\texttt {poly()}}{191} +\indexentry{functions and methods!poly()@\texttt {poly()}}{191} +\indexentry{functions and methods!anova()@\texttt {anova()}}{192} +\indexentry{functions and methods!anova()@\texttt {anova()}}{192} +\indexentry{functions and methods!anova()@\texttt {anova()}}{192} +\indexentry{functions and methods!BIC()@\texttt {BIC()}}{192} +\indexentry{functions and methods!AIC()@\texttt {AIC()}}{192} +\indexentry{functions and methods!vcov()@\texttt {vcov()}}{192} +\indexentry{functions and methods!coef()@\texttt {coef()}}{192} +\indexentry{functions and methods!coefficients()@\texttt {coefficients()}}{192} +\indexentry{functions and methods!fitted()@\texttt {fitted()}}{192} +\indexentry{functions and methods!fitted.values()@\texttt {fitted.values()}}{192} +\indexentry{functions and methods!resid()@\texttt {resid()}}{192} +\indexentry{functions and methods!residuals()@\texttt {residuals()}}{192} +\indexentry{functions and methods!getCall()@\texttt {getCall()}}{192} +\indexentry{functions and methods!effects()@\texttt {effects()}}{192} +\indexentry{functions and methods!terms()@\texttt {terms()}}{192} +\indexentry{functions and methods!model.frame()@\texttt {model.frame()}}{192} +\indexentry{functions and methods!model.matrix()@\texttt {model.matrix()}}{192} +\indexentry{functions and methods!str()@\texttt {str()}}{193} +\indexentry{functions and methods!str()@\texttt {str()}}{193} +\indexentry{functions and methods!anova()@\texttt {anova()}}{194} +\indexentry{functions and methods!summary()@\texttt {summary()}}{194} +\indexentry{functions and methods!anova()@\texttt {anova()}}{194} +\indexentry{functions and methods!summary()@\texttt {summary()}}{194} +\indexentry{functions and methods!summary()@\texttt {summary()}}{195} \indexentry{functions and methods!str()@\texttt {str()}}{195} -\indexentry{functions and methods!class()@\texttt {class()}}{195} -\indexentry{functions and methods!attributes()@\texttt {attributes()}}{195} -\indexentry{functions and methods!cor()@\texttt {cor()}}{195} -\indexentry{functions and methods!class()@\texttt {class()}}{195} -\indexentry{functions and methods!attributes()@\texttt {attributes()}}{195} -\indexentry{functions and methods!str()@\texttt {str()}}{195} -\indexentry{functions and methods!cor.test()@\texttt {cor.test()}}{196} -\indexentry{functions and methods!cor()@\texttt {cor()}}{196} -\indexentry{functions and methods!summary()@\texttt {summary()}}{196} \indexentry{functions and methods!anova()@\texttt {anova()}}{196} -\indexentry{functions and methods!plot()@\texttt {plot()}}{196} -\indexentry{functions and methods!coef()@\texttt {coef()}}{197} -\indexentry{functions and methods!residuals()@\texttt {residuals()}}{197} -\indexentry{functions and methods!fitted()@\texttt {fitted()}}{197} +\indexentry{functions and methods!summary()@\texttt {summary()}}{196} +\indexentry{functions and methods!pt()@\texttt {pt()}}{196} +\indexentry{functions and methods!lm()@\texttt {lm()}}{196} \indexentry{functions and methods!predict()@\texttt {predict()}}{197} -\indexentry{functions and methods!AIC()@\texttt {AIC()}}{197} -\indexentry{functions and methods!BIC()@\texttt {BIC()}}{197} -\indexentry{functions and methods!lm()@\texttt {lm()}}{197} -\indexentry{functions and methods!lm()@\texttt {lm()}}{197} -\indexentry{functions and methods!lm()@\texttt {lm()}}{197} -\indexentry{data objects!cars@\texttt {cars}}{198} +\indexentry{functions and methods!predict()@\texttt {predict()}}{197} +\indexentry{functions and methods!predict()@\texttt {predict()}}{197} +\indexentry{functions and methods!predict()@\texttt {predict()}}{197} +\indexentry{functions and methods!predict()@\texttt {predict()}}{197} +\indexentry{data objects!InsectSprays@\texttt {InsectSprays}}{197} +\indexentry{functions and methods!anova()@\texttt {anova()}}{198} +\indexentry{functions and methods!summary()@\texttt {summary()}}{198} +\indexentry{functions and methods!summary()@\texttt {summary()}}{198} +\indexentry{functions and methods!aov()@\texttt {aov()}}{198} +\indexentry{functions and methods!lm()@\texttt {lm()}}{198} +\indexentry{functions and methods!anova()@\texttt {anova()}}{198} +\indexentry{functions and methods!coef()@\texttt {coef()}}{198} \indexentry{functions and methods!summary()@\texttt {summary()}}{198} -\indexentry{functions and methods!summary()@\texttt {summary()}}{199} -\indexentry{functions and methods!lm()@\texttt {lm()}}{200} -\indexentry{functions and methods!I()@\texttt {I()}}{200} -\indexentry{functions and methods!poly()@\texttt {poly()}}{200} -\indexentry{functions and methods!poly()@\texttt {poly()}}{200} -\indexentry{functions and methods!anova()@\texttt {anova()}}{200} -\indexentry{functions and methods!anova()@\texttt {anova()}}{200} +\indexentry{functions and methods!factor()@\texttt {factor()}}{199} +\indexentry{functions and methods!ordered()@\texttt {ordered()}}{199} +\indexentry{functions and methods!contr.treatment()@\texttt {contr.treatment()}}{199} +\indexentry{functions and methods!contr.treatment()@\texttt {contr.treatment()}}{199} +\indexentry{functions and methods!contr.SAS()@\texttt {contr.SAS()}}{199} +\indexentry{functions and methods!contr.helmert()@\texttt {contr.helmert()}}{199} +\indexentry{functions and methods!contr.sum()@\texttt {contr.sum()}}{200} +\indexentry{functions and methods!contr.SAS()@\texttt {contr.SAS()}}{201} +\indexentry{functions and methods!contr.treatment()@\texttt {contr.treatment()}}{201} +\indexentry{functions and methods!contr.SAS()@\texttt {contr.SAS()}}{201} +\indexentry{functions and methods!contr.treatment()@\texttt {contr.treatment()}}{201} +\indexentry{functions and methods!contr.poly()@\texttt {contr.poly()}}{201} +\indexentry{functions and methods!contr.helmert()@\texttt {contr.helmert()}}{201} \indexentry{functions and methods!anova()@\texttt {anova()}}{201} -\indexentry{functions and methods!BIC()@\texttt {BIC()}}{201} -\indexentry{functions and methods!AIC()@\texttt {AIC()}}{201} -\indexentry{functions and methods!vcov()@\texttt {vcov()}}{201} -\indexentry{functions and methods!coef()@\texttt {coef()}}{201} -\indexentry{functions and methods!coefficients()@\texttt {coefficients()}}{201} -\indexentry{functions and methods!fitted()@\texttt {fitted()}}{201} -\indexentry{functions and methods!fitted.values()@\texttt {fitted.values()}}{201} -\indexentry{functions and methods!resid()@\texttt {resid()}}{201} -\indexentry{functions and methods!residuals()@\texttt {residuals()}}{201} -\indexentry{functions and methods!getCall()@\texttt {getCall()}}{201} -\indexentry{functions and methods!effects()@\texttt {effects()}}{201} -\indexentry{functions and methods!terms()@\texttt {terms()}}{201} -\indexentry{functions and methods!model.frame()@\texttt {model.frame()}}{201} -\indexentry{functions and methods!model.matrix()@\texttt {model.matrix()}}{201} -\indexentry{functions and methods!str()@\texttt {str()}}{202} -\indexentry{functions and methods!str()@\texttt {str()}}{202} -\indexentry{functions and methods!anova()@\texttt {anova()}}{202} -\indexentry{functions and methods!summary()@\texttt {summary()}}{202} -\indexentry{functions and methods!anova()@\texttt {anova()}}{202} -\indexentry{functions and methods!summary()@\texttt {summary()}}{202} -\indexentry{functions and methods!summary()@\texttt {summary()}}{203} -\indexentry{functions and methods!str()@\texttt {str()}}{203} -\indexentry{functions and methods!anova()@\texttt {anova()}}{204} +\indexentry{functions and methods!update()@\texttt {update()}}{201} +\indexentry{functions and methods!update()@\texttt {update()}}{202} +\indexentry{functions and methods!getCall()@\texttt {getCall()}}{202} +\indexentry{functions and methods!update()@\texttt {update()}}{202} +\indexentry{functions and methods!getCall()@\texttt {getCall()}}{202} +\indexentry{functions and methods!update()@\texttt {update()}}{202} +\indexentry{functions and methods!update()@\texttt {update()}}{202} +\indexentry{functions and methods!update()@\texttt {update()}}{203} +\indexentry{functions and methods!anova()@\texttt {anova()}}{203} +\indexentry{functions and methods!update()@\texttt {update()}}{203} +\indexentry{functions and methods!update()@\texttt {update()}}{203} +\indexentry{functions and methods!update()@\texttt {update()}}{203} +\indexentry{functions and methods!step()@\texttt {step()}}{203} +\indexentry{functions and methods!step()@\texttt {step()}}{203} +\indexentry{functions and methods!step()@\texttt {step()}}{203} \indexentry{functions and methods!summary()@\texttt {summary()}}{204} -\indexentry{functions and methods!pt()@\texttt {pt()}}{205} -\indexentry{functions and methods!lm()@\texttt {lm()}}{205} -\indexentry{functions and methods!predict()@\texttt {predict()}}{205} -\indexentry{functions and methods!predict()@\texttt {predict()}}{205} -\indexentry{functions and methods!predict()@\texttt {predict()}}{205} -\indexentry{functions and methods!predict()@\texttt {predict()}}{205} -\indexentry{functions and methods!predict()@\texttt {predict()}}{205} +\indexentry{functions and methods!update()@\texttt {update()}}{205} +\indexentry{functions and methods!step()@\texttt {step()}}{205} +\indexentry{functions and methods!glm()@\texttt {glm()}}{206} \indexentry{data objects!InsectSprays@\texttt {InsectSprays}}{206} -\indexentry{functions and methods!anova()@\texttt {anova()}}{207} -\indexentry{functions and methods!summary()@\texttt {summary()}}{207} -\indexentry{functions and methods!summary()@\texttt {summary()}}{207} -\indexentry{functions and methods!aov()@\texttt {aov()}}{207} -\indexentry{functions and methods!lm()@\texttt {lm()}}{207} -\indexentry{functions and methods!anova()@\texttt {anova()}}{207} -\indexentry{functions and methods!coef()@\texttt {coef()}}{207} -\indexentry{functions and methods!summary()@\texttt {summary()}}{207} -\indexentry{functions and methods!factor()@\texttt {factor()}}{207} -\indexentry{functions and methods!ordered()@\texttt {ordered()}}{207} -\indexentry{functions and methods!contr.treatment()@\texttt {contr.treatment()}}{208} -\indexentry{functions and methods!contr.treatment()@\texttt {contr.treatment()}}{208} -\indexentry{functions and methods!contr.SAS()@\texttt {contr.SAS()}}{208} -\indexentry{functions and methods!contr.helmert()@\texttt {contr.helmert()}}{208} -\indexentry{functions and methods!contr.sum()@\texttt {contr.sum()}}{209} -\indexentry{functions and methods!contr.SAS()@\texttt {contr.SAS()}}{209} -\indexentry{functions and methods!contr.treatment()@\texttt {contr.treatment()}}{209} -\indexentry{functions and methods!contr.SAS()@\texttt {contr.SAS()}}{209} -\indexentry{functions and methods!contr.treatment()@\texttt {contr.treatment()}}{209} -\indexentry{functions and methods!contr.poly()@\texttt {contr.poly()}}{209} -\indexentry{functions and methods!contr.helmert()@\texttt {contr.helmert()}}{209} -\indexentry{functions and methods!anova()@\texttt {anova()}}{209} -\indexentry{functions and methods!update()@\texttt {update()}}{210} -\indexentry{functions and methods!update()@\texttt {update()}}{210} -\indexentry{functions and methods!getCall()@\texttt {getCall()}}{210} -\indexentry{functions and methods!update()@\texttt {update()}}{210} -\indexentry{functions and methods!getCall()@\texttt {getCall()}}{210} -\indexentry{functions and methods!update()@\texttt {update()}}{210} -\indexentry{functions and methods!update()@\texttt {update()}}{210} -\indexentry{functions and methods!update()@\texttt {update()}}{212} -\indexentry{functions and methods!anova()@\texttt {anova()}}{212} -\indexentry{functions and methods!update()@\texttt {update()}}{212} -\indexentry{functions and methods!update()@\texttt {update()}}{212} -\indexentry{functions and methods!update()@\texttt {update()}}{212} -\indexentry{functions and methods!step()@\texttt {step()}}{212} -\indexentry{functions and methods!step()@\texttt {step()}}{212} -\indexentry{functions and methods!step()@\texttt {step()}}{212} -\indexentry{functions and methods!summary()@\texttt {summary()}}{212} -\indexentry{functions and methods!update()@\texttt {update()}}{214} -\indexentry{functions and methods!step()@\texttt {step()}}{214} -\indexentry{functions and methods!glm()@\texttt {glm()}}{214} -\indexentry{data objects!InsectSprays@\texttt {InsectSprays}}{215} -\indexentry{functions and methods!anova()@\texttt {anova()}}{215} -\indexentry{functions and methods!plot()@\texttt {plot()}}{216} -\indexentry{functions and methods!nls()@\texttt {nls()}}{217} -\indexentry{functions and methods!nls@\texttt {nls}}{218} -\indexentry{functions and methods!nlme@\texttt {nlme}}{218} -\indexentry{functions and methods!nls()@\texttt {nls()}}{218} -\indexentry{functions and methods!SSmicmen()@\texttt {SSmicmen()}}{218} -\indexentry{data objects!Puromycin@\texttt {Puromycin}}{218} -\indexentry{functions and methods!spline()@\texttt {spline()}}{221} -\indexentry{functions and methods!smooth.spline()@\texttt {smooth.spline()}}{221} -\indexentry{functions and methods!smooth.spline()@\texttt {smooth.spline()}}{221} -\indexentry{functions and methods!loess@\texttt {loess}}{221} -\indexentry{functions and methods!plot()@\texttt {plot()}}{222} -\indexentry{classes and modes!formula@\texttt {formula}}{222} -\indexentry{classes and modes!call@\texttt {call}}{222} -\indexentry{classes and modes!formula@\texttt {formula}}{223} -\indexentry{functions and methods!is.empty.model()@\texttt {is.empty.model()}}{223} -\indexentry{classes and modes!numeric@\texttt {numeric}}{223} -\indexentry{classes and modes!formula@\texttt {formula}}{223} -\indexentry{functions and methods!length()@\texttt {length()}}{224} -\indexentry{classes and modes!list@\texttt {list}}{224} -\indexentry{functions and methods!length()@\texttt {length()}}{224} -\indexentry{functions and methods!length()@\texttt {length()}}{224} -\indexentry{functions and methods!length()@\texttt {length()}}{224} -\indexentry{functions and methods!is.empty.model()@\texttt {is.empty.model()}}{224} -\indexentry{functions and methods!I()@\texttt {I()}}{225} -\indexentry{functions and methods!log()@\texttt {log()}}{225} -\indexentry{functions and methods!terms()@\texttt {terms()}}{227} -\indexentry{data objects!npk@\texttt {npk}}{227} -\indexentry{classes and modes!"formula"@\texttt {"formula"}}{228} -\indexentry{functions and methods!inherits()@\texttt {inherits()}}{228} -\indexentry{functions and methods!as.formula()@\texttt {as.formula()}}{229} -\indexentry{functions and methods!as.formula()@\texttt {as.formula()}}{229} -\indexentry{functions and methods!as.formula()@\texttt {as.formula()}}{229} -\indexentry{functions and methods!update()@\texttt {update()}}{230} -\indexentry{classes and modes!"ts"@\texttt {"ts"}}{232} -\indexentry{functions and methods!ts()@\texttt {ts()}}{232} -\indexentry{functions and methods!as.ts()@\texttt {as.ts()}}{232} -\indexentry{data objects!nottem@\texttt {nottem}}{233} -\indexentry{functions and methods!decompose()@\texttt {decompose()}}{234} -\indexentry{functions and methods!stl()@\texttt {stl()}}{234} -\indexentry{functions and methods!stl()@\texttt {stl()}}{234} -\indexentry{functions and methods!summary()@\texttt {summary()}}{234} -\indexentry{functions and methods!aov()@\texttt {aov()}}{235} -\indexentry{functions and methods!lm()@\texttt {lm()}}{235} -\indexentry{functions and methods!manova()@\texttt {manova()}}{235} -\indexentry{functions and methods!aov()@\texttt {aov()}}{235} -\indexentry{data objects!iris@\texttt {iris}}{235} -\indexentry{functions and methods!prcomp()@\texttt {prcomp()}}{237} -\indexentry{functions and methods!biplot()@\texttt {biplot()}}{238} -\indexentry{functions and methods!prcomp()@\texttt {prcomp()}}{239} -\indexentry{data objects!eurodist@\texttt {eurodist}}{239} -\indexentry{functions and methods!dist@\texttt {dist}}{241} -\indexentry{functions and methods!hclust()@\texttt {hclust()}}{241} -\indexentry{data objects!eurodist@\texttt {eurodist}}{241} -\indexentry{functions and methods!dist@\texttt {dist}}{241} -\indexentry{functions and methods!cutree()@\texttt {cutree()}}{242} -\indexentry{functions and methods!hclust()@\texttt {hclust()}}{242} -\indexentry{functions and methods!subset()@\texttt {subset()}}{247} -\indexentry{operators![ , ]@\texttt {[ , ]}}{247} -\indexentry{operators![[ ]]@\texttt {[[ ]]}}{247} -\indexentry{classes and modes!tbl@\texttt {tbl}}{249} -\indexentry{classes and modes!data.frame@\texttt {data.frame}}{249} -\indexentry{classes and modes!list@\texttt {list}}{249} -\indexentry{classes and modes!matrix@\texttt {matrix}}{249} -\indexentry{classes and modes!tbl@\texttt {tbl}}{249} -\indexentry{classes and modes!data.frame@\texttt {data.frame}}{249} -\indexentry{functions and methods!tibble()@\texttt {tibble()}}{250} -\indexentry{functions and methods!as\_tibble()@\texttt {as\_tibble()}}{250} -\indexentry{functions and methods!is\_tibble()@\texttt {is\_tibble()}}{250} -\indexentry{classes and modes!tibble@\texttt {tibble}}{250} -\indexentry{classes and modes!tbl\_df@\texttt {tbl\_df}}{250} -\indexentry{functions and methods!tibble()@\texttt {tibble()}}{250} -\indexentry{functions and methods!data.frame()@\texttt {data.frame()}}{250} -\indexentry{functions and methods!data.frame()@\texttt {data.frame()}}{250} -\indexentry{functions and methods!read.table()@\texttt {read.table()}}{250} -\indexentry{classes and modes!tibble@\texttt {tibble}}{251} -\indexentry{functions and methods!print()@\texttt {print()}}{251} -\indexentry{functions and methods!options()@\texttt {options()}}{251} -\indexentry{functions and methods!print()@\texttt {print()}}{251} -\indexentry{functions and methods!as.data.frame()@\texttt {as.data.frame()}}{252} -\indexentry{functions and methods!identical()@\texttt {identical()}}{252} -\indexentry{functions and methods!class()@\texttt {class()}}{252} -\indexentry{functions and methods!tibble()@\texttt {tibble()}}{253} -\indexentry{functions and methods!tibble()@\texttt {tibble()}}{253} -\indexentry{functions and methods!tibble()@\texttt {tibble()}}{254} -\indexentry{functions and methods!data.frame()@\texttt {data.frame()}}{254} -\indexentry{functions and methods!data.frame()@\texttt {data.frame()}}{254} -\indexentry{functions and methods!tibble()@\texttt {tibble()}}{254} -\indexentry{functions and methods!I()@\texttt {I()}}{254} -\indexentry{operators!\textbar >@\texttt {\textbar >}}{255} -\indexentry{operators!\%>\%@\texttt {\%>\%}}{255} -\indexentry{operators!\%>\%@\texttt {\%>\%}}{255} -\indexentry{operators!\textbar >@\texttt {\textbar >}}{255} -\indexentry{operators!\%>\%@\texttt {\%>\%}}{255} -\indexentry{operators!\%T>\%@\texttt {\%T>\%}}{255} -\indexentry{operators!\%<>\%@\texttt {\%<>\%}}{255} -\indexentry{operators!\%>\%@\texttt {\%>\%}}{255} -\indexentry{operators!\%.>\%@\texttt {\%.>\%}}{255} -\indexentry{operators!\%>\%@\texttt {\%>\%}}{256} -\indexentry{operators!\%.>\%@\texttt {\%.>\%}}{256} -\indexentry{operators!\%>\%@\texttt {\%>\%}}{256} -\indexentry{operators!\textbar >@\texttt {\textbar >}}{256} -\indexentry{operators!\%.>\%@\texttt {\%.>\%}}{256} -\indexentry{operators!\textbar >@\texttt {\textbar >}}{256} -\indexentry{operators!\%>\%@\texttt {\%>\%}}{256} -\indexentry{operators!\%.>\%@\texttt {\%.>\%}}{256} -\indexentry{operators!\%.>\%@\texttt {\%.>\%}}{256} -\indexentry{operators!\textbar >@\texttt {\textbar >}}{257} -\indexentry{operators!\%>\%@\texttt {\%>\%}}{257} -\indexentry{operators!\%.>\%@\texttt {\%.>\%}}{257} -\indexentry{operators!\textbar >@\texttt {\textbar >}}{257} -\indexentry{operators!\%.>\%@\texttt {\%.>\%}}{257} -\indexentry{operators!\%>\%@\texttt {\%>\%}}{257} -\indexentry{operators!\textbar >@\texttt {\textbar >}}{257} -\indexentry{operators!\textbar >@\texttt {\textbar >}}{257} -\indexentry{operators!\textbar >@\texttt {\textbar >}}{257} -\indexentry{operators!\%>\%@\texttt {\%>\%}}{257} -\indexentry{functions and methods!print()@\texttt {print()}}{257} -\indexentry{functions and methods!print()@\texttt {print()}}{257} -\indexentry{operators!\textbar >@\texttt {\textbar >}}{257} -\indexentry{operators!\textbar >@\texttt {\textbar >}}{258} -\indexentry{operators!\%>\%@\texttt {\%>\%}}{258} -\indexentry{operators!\textbar >@\texttt {\textbar >}}{258} -\indexentry{operators!\%>\%@\texttt {\%>\%}}{258} -\indexentry{operators!\%.>\%@\texttt {\%.>\%}}{258} -\indexentry{operators!\%>\%@\texttt {\%>\%}}{258} -\indexentry{functions and methods!assign()@\texttt {assign()}}{258} -\indexentry{operators!\textbar >@\texttt {\textbar >}}{258} -\indexentry{operators!\%>\%@\texttt {\%>\%}}{258} -\indexentry{functions and methods!plot()@\texttt {plot()}}{259} -\indexentry{data objects!iris@\texttt {iris}}{259} -\indexentry{classes and modes!"tb"@\texttt {"tb"}}{259} -\indexentry{functions and methods!pivot\_longer()@\texttt {pivot\_longer()}}{259} -\indexentry{functions and methods!pivot\_longer()@\texttt {pivot\_longer()}}{259} -\indexentry{functions and methods!pivot\_wider()@\texttt {pivot\_wider()}}{260} -\indexentry{functions and methods!pivot\_longer()@\texttt {pivot\_longer()}}{260} -\indexentry{functions and methods!unnest()@\texttt {unnest()}}{260} -\indexentry{functions and methods!gather()@\texttt {gather()}}{260} -\indexentry{functions and methods!spread()@\texttt {spread()}}{260} -\indexentry{functions and methods!pivot\_longer()@\texttt {pivot\_longer()}}{260} -\indexentry{functions and methods!pivot\_wider()@\texttt {pivot\_wider()}}{260} -\indexentry{functions and methods!pivot\_longer()@\texttt {pivot\_longer()}}{261} -\indexentry{functions and methods!pivot\_wider()@\texttt {pivot\_wider()}}{261} -\indexentry{classes and modes!tibble@\texttt {tibble}}{261} -\indexentry{functions and methods!mutate()@\texttt {mutate()}}{261} -\indexentry{functions and methods!transmute()@\texttt {transmute()}}{261} -\indexentry{functions and methods!mutate()@\texttt {mutate()}}{262} -\indexentry{functions and methods!transmute()@\texttt {transmute()}}{262} -\indexentry{functions and methods!tibble()@\texttt {tibble()}}{262} -\indexentry{functions and methods!mutate()@\texttt {mutate()}}{262} -\indexentry{functions and methods!transmute()@\texttt {transmute()}}{262} -\indexentry{functions and methods!str\_extract()@\texttt {str\_extract()}}{262} -\indexentry{functions and methods!mutate()@\texttt {mutate()}}{262} -\indexentry{operators!\%.>\%@\texttt {\%.>\%}}{262} -\indexentry{functions and methods!arrange()@\texttt {arrange()}}{262} -\indexentry{functions and methods!sort()@\texttt {sort()}}{262} -\indexentry{functions and methods!order()@\texttt {order()}}{262} -\indexentry{functions and methods!filter()@\texttt {filter()}}{263} -\indexentry{functions and methods!subset()@\texttt {subset()}}{263} -\indexentry{functions and methods!slice()@\texttt {slice()}}{263} -\indexentry{functions and methods!select()@\texttt {select()}}{263} -\indexentry{functions and methods!select()@\texttt {select()}}{263} -\indexentry{functions and methods!select()@\texttt {select()}}{263} -\indexentry{functions and methods!starts\_with()@\texttt {starts\_with()}}{263} -\indexentry{functions and methods!ends\_with()@\texttt {ends\_with()}}{263} -\indexentry{functions and methods!contains()@\texttt {contains()}}{263} -\indexentry{functions and methods!matches()@\texttt {matches()}}{263} -\indexentry{functions and methods!rename()@\texttt {rename()}}{264} -\indexentry{functions and methods!names()@\texttt {names()}}{264} -\indexentry{functions and methods!names()<-@\texttt {names()<-}}{264} -\indexentry{functions and methods!aggregate()@\texttt {aggregate()}}{264} -\indexentry{functions and methods!group\_by()@\texttt {group\_by()}}{264} -\indexentry{functions and methods!summarise()@\texttt {summarise()}}{264} -\indexentry{operators!==@\texttt {==}}{266} -\indexentry{functions and methods!group\_by()@\texttt {group\_by()}}{266} -\indexentry{functions and methods!ungroup()@\texttt {ungroup()}}{266} -\indexentry{operators![ , ]@\texttt {[ , ]}}{266} -\indexentry{functions and methods!full\_join()@\texttt {full\_join()}}{266} -\indexentry{functions and methods!left\_join()@\texttt {left\_join()}}{266} -\indexentry{functions and methods!right\_join()@\texttt {right\_join()}}{266} -\indexentry{functions and methods!inner\_join()@\texttt {inner\_join()}}{266} -\indexentry{functions and methods!semi\_join()@\texttt {semi\_join()}}{268} -\indexentry{functions and methods!anti\_join()@\texttt {anti\_join()}}{268} -\indexentry{functions and methods!geom\_point()@\texttt {geom\_point()}}{275} -\indexentry{functions and methods!geom\_line()@\texttt {geom\_line()}}{275} -\indexentry{functions and methods!position\_identity()@\texttt {position\_identity()}}{275} -\indexentry{functions and methods!position\_stack()@\texttt {position\_stack()}}{275} -\indexentry{functions and methods!stat\_smooth()@\texttt {stat\_smooth()}}{275} -\indexentry{functions and methods!stat\_summary()@\texttt {stat\_summary()}}{275} -\indexentry{functions and methods!scale\_color\_continuous()@\texttt {scale\_color\_continuous()}}{275} -\indexentry{operators!+@\texttt {+}}{276} -\indexentry{operators!\%+\%@\texttt {\%+\%}}{276} -\indexentry{functions and methods!aes()@\texttt {aes()}}{277} -\indexentry{functions and methods!stat\_indentity()@\texttt {stat\_indentity()}}{277} -\indexentry{functions and methods!stat\_identity()@\texttt {stat\_identity()}}{278} -\indexentry{functions and methods!stat\_identity()@\texttt {stat\_identity()}}{278} -\indexentry{functions and methods!geom\_smooth()@\texttt {geom\_smooth()}}{278} -\indexentry{functions and methods!stat\_smooth()@\texttt {stat\_smooth()}}{278} -\indexentry{data objects!mtcars@\texttt {mtcars}}{279} -\indexentry{functions and methods!geom\_point()@\texttt {geom\_point()}}{279} -\indexentry{functions and methods!geom\_line()@\texttt {geom\_line()}}{281} -\indexentry{functions and methods!geom\_point()@\texttt {geom\_point()}}{281} -\indexentry{functions and methods!geom\_line()@\texttt {geom\_line()}}{281} -\indexentry{functions and methods!ggplot()@\texttt {ggplot()}}{285} -\indexentry{functions and methods!ggplot()@\texttt {ggplot()}}{288} -\indexentry{functions and methods!aes()@\texttt {aes()}}{288} -\indexentry{functions and methods!ggplot()@\texttt {ggplot()}}{288} -\indexentry{functions and methods!ggplot()@\texttt {ggplot()}}{288} -\indexentry{operators!\textbar >@\texttt {\textbar >}}{289} -\indexentry{functions and methods!stat()@\texttt {stat()}}{289} -\indexentry{functions and methods!stage()@\texttt {stage()}}{289} -\indexentry{functions and methods!after\_stat()@\texttt {after\_stat()}}{289} -\indexentry{functions and methods!after\_scale()@\texttt {after\_scale()}}{289} -\indexentry{functions and methods!after\_stat()@\texttt {after\_stat()}}{289} -\indexentry{functions and methods!stat()@\texttt {stat()}}{289} -\indexentry{functions and methods!after\_stat()@\texttt {after\_stat()}}{289} -\indexentry{functions and methods!after\_scale()@\texttt {after\_scale()}}{289} -\indexentry{functions and methods!rlm()@\texttt {rlm()}}{290} -\indexentry{functions and methods!after\_stat()@\texttt {after\_stat()}}{290} -\indexentry{functions and methods!stat\_fit\_residuals()@\texttt {stat\_fit\_residuals()}}{290} -\indexentry{functions and methods!geom\_point()@\texttt {geom\_point()}}{290} -\indexentry{functions and methods!stage()@\texttt {stage()}}{290} -\indexentry{functions and methods!geom\_point()@\texttt {geom\_point()}}{291} -\indexentry{functions and methods!stat\_fit\_residuals()@\texttt {stat\_fit\_residuals()}}{291} -\indexentry{functions and methods!stat\_fit\_residuals()@\texttt {stat\_fit\_residuals()}}{291} -\indexentry{functions and methods!geom\_point()@\texttt {geom\_point()}}{291} -\indexentry{functions and methods!geom\_point()@\texttt {geom\_point()}}{291} -\indexentry{functions and methods!geom\_line()@\texttt {geom\_line()}}{291} +\indexentry{functions and methods!anova()@\texttt {anova()}}{206} +\indexentry{functions and methods!plot()@\texttt {plot()}}{207} +\indexentry{functions and methods!nls()@\texttt {nls()}}{208} +\indexentry{functions and methods!nls@\texttt {nls}}{209} +\indexentry{functions and methods!nlme@\texttt {nlme}}{209} +\indexentry{functions and methods!nls()@\texttt {nls()}}{209} +\indexentry{functions and methods!SSmicmen()@\texttt {SSmicmen()}}{209} +\indexentry{data objects!Puromycin@\texttt {Puromycin}}{209} +\indexentry{functions and methods!spline()@\texttt {spline()}}{212} +\indexentry{functions and methods!smooth.spline()@\texttt {smooth.spline()}}{212} +\indexentry{functions and methods!smooth.spline()@\texttt {smooth.spline()}}{212} +\indexentry{functions and methods!loess@\texttt {loess}}{212} +\indexentry{functions and methods!plot()@\texttt {plot()}}{213} +\indexentry{classes and modes!formula@\texttt {formula}}{213} +\indexentry{classes and modes!call@\texttt {call}}{213} +\indexentry{classes and modes!formula@\texttt {formula}}{214} +\indexentry{functions and methods!is.empty.model()@\texttt {is.empty.model()}}{214} +\indexentry{classes and modes!numeric@\texttt {numeric}}{214} +\indexentry{classes and modes!formula@\texttt {formula}}{214} +\indexentry{functions and methods!length()@\texttt {length()}}{214} +\indexentry{classes and modes!list@\texttt {list}}{215} +\indexentry{functions and methods!length()@\texttt {length()}}{215} +\indexentry{functions and methods!length()@\texttt {length()}}{215} +\indexentry{functions and methods!length()@\texttt {length()}}{215} +\indexentry{functions and methods!is.empty.model()@\texttt {is.empty.model()}}{215} +\indexentry{functions and methods!I()@\texttt {I()}}{215} +\indexentry{functions and methods!log()@\texttt {log()}}{215} +\indexentry{functions and methods!terms()@\texttt {terms()}}{217} +\indexentry{data objects!npk@\texttt {npk}}{218} +\indexentry{classes and modes!"formula"@\texttt {"formula"}}{219} +\indexentry{functions and methods!inherits()@\texttt {inherits()}}{219} +\indexentry{functions and methods!as.formula()@\texttt {as.formula()}}{219} +\indexentry{functions and methods!as.formula()@\texttt {as.formula()}}{219} +\indexentry{functions and methods!as.formula()@\texttt {as.formula()}}{220} +\indexentry{functions and methods!update()@\texttt {update()}}{220} +\indexentry{classes and modes!"ts"@\texttt {"ts"}}{222} +\indexentry{functions and methods!ts()@\texttt {ts()}}{222} +\indexentry{functions and methods!as.ts()@\texttt {as.ts()}}{222} +\indexentry{data objects!nottem@\texttt {nottem}}{223} +\indexentry{functions and methods!decompose()@\texttt {decompose()}}{224} +\indexentry{functions and methods!stl()@\texttt {stl()}}{224} +\indexentry{functions and methods!stl()@\texttt {stl()}}{225} +\indexentry{functions and methods!summary()@\texttt {summary()}}{225} +\indexentry{functions and methods!aov()@\texttt {aov()}}{226} +\indexentry{functions and methods!lm()@\texttt {lm()}}{226} +\indexentry{functions and methods!manova()@\texttt {manova()}}{226} +\indexentry{functions and methods!aov()@\texttt {aov()}}{226} +\indexentry{data objects!iris@\texttt {iris}}{226} +\indexentry{functions and methods!prcomp()@\texttt {prcomp()}}{227} +\indexentry{functions and methods!biplot()@\texttt {biplot()}}{228} +\indexentry{functions and methods!prcomp()@\texttt {prcomp()}}{229} +\indexentry{data objects!eurodist@\texttt {eurodist}}{229} +\indexentry{functions and methods!dist@\texttt {dist}}{231} +\indexentry{functions and methods!hclust()@\texttt {hclust()}}{231} +\indexentry{data objects!eurodist@\texttt {eurodist}}{231} +\indexentry{functions and methods!dist@\texttt {dist}}{231} +\indexentry{functions and methods!cutree()@\texttt {cutree()}}{231} +\indexentry{functions and methods!hclust()@\texttt {hclust()}}{232} +\indexentry{functions and methods!subset()@\texttt {subset()}}{235} +\indexentry{operators![ , ]@\texttt {[ , ]}}{235} +\indexentry{operators![[ ]]@\texttt {[[ ]]}}{235} +\indexentry{classes and modes!tbl@\texttt {tbl}}{237} +\indexentry{classes and modes!data.frame@\texttt {data.frame}}{237} +\indexentry{classes and modes!list@\texttt {list}}{237} +\indexentry{classes and modes!matrix@\texttt {matrix}}{237} +\indexentry{classes and modes!tbl@\texttt {tbl}}{237} +\indexentry{classes and modes!data.frame@\texttt {data.frame}}{237} +\indexentry{functions and methods!tibble()@\texttt {tibble()}}{238} +\indexentry{functions and methods!as\_tibble()@\texttt {as\_tibble()}}{238} +\indexentry{functions and methods!is\_tibble()@\texttt {is\_tibble()}}{238} +\indexentry{classes and modes!tibble@\texttt {tibble}}{238} +\indexentry{classes and modes!tbl\_df@\texttt {tbl\_df}}{238} +\indexentry{functions and methods!tibble()@\texttt {tibble()}}{238} +\indexentry{functions and methods!data.frame()@\texttt {data.frame()}}{238} +\indexentry{functions and methods!data.frame()@\texttt {data.frame()}}{238} +\indexentry{functions and methods!read.table()@\texttt {read.table()}}{238} +\indexentry{classes and modes!tibble@\texttt {tibble}}{238} +\indexentry{functions and methods!print()@\texttt {print()}}{239} +\indexentry{functions and methods!options()@\texttt {options()}}{239} +\indexentry{functions and methods!print()@\texttt {print()}}{239} +\indexentry{functions and methods!as.data.frame()@\texttt {as.data.frame()}}{240} +\indexentry{functions and methods!identical()@\texttt {identical()}}{240} +\indexentry{functions and methods!class()@\texttt {class()}}{240} +\indexentry{functions and methods!tibble()@\texttt {tibble()}}{241} +\indexentry{functions and methods!tibble()@\texttt {tibble()}}{241} +\indexentry{functions and methods!tibble()@\texttt {tibble()}}{241} +\indexentry{functions and methods!data.frame()@\texttt {data.frame()}}{241} +\indexentry{functions and methods!data.frame()@\texttt {data.frame()}}{241} +\indexentry{functions and methods!tibble()@\texttt {tibble()}}{241} +\indexentry{functions and methods!I()@\texttt {I()}}{241} +\indexentry{operators!\textbar >@\texttt {\textbar >}}{242} +\indexentry{operators!\%>\%@\texttt {\%>\%}}{242} +\indexentry{operators!\%>\%@\texttt {\%>\%}}{242} +\indexentry{operators!\textbar >@\texttt {\textbar >}}{242} +\indexentry{operators!\%>\%@\texttt {\%>\%}}{242} +\indexentry{operators!\%T>\%@\texttt {\%T>\%}}{243} +\indexentry{operators!\%<>\%@\texttt {\%<>\%}}{243} +\indexentry{operators!\%>\%@\texttt {\%>\%}}{243} +\indexentry{operators!\%.>\%@\texttt {\%.>\%}}{243} +\indexentry{operators!\%>\%@\texttt {\%>\%}}{243} +\indexentry{operators!\%.>\%@\texttt {\%.>\%}}{243} +\indexentry{operators!\%>\%@\texttt {\%>\%}}{243} +\indexentry{operators!\textbar >@\texttt {\textbar >}}{243} +\indexentry{operators!\%.>\%@\texttt {\%.>\%}}{243} +\indexentry{operators!\textbar >@\texttt {\textbar >}}{243} +\indexentry{operators!\%>\%@\texttt {\%>\%}}{243} +\indexentry{operators!\%.>\%@\texttt {\%.>\%}}{244} +\indexentry{operators!\%.>\%@\texttt {\%.>\%}}{244} +\indexentry{operators!\textbar >@\texttt {\textbar >}}{244} +\indexentry{operators!\%>\%@\texttt {\%>\%}}{244} +\indexentry{operators!\%.>\%@\texttt {\%.>\%}}{244} +\indexentry{operators!\textbar >@\texttt {\textbar >}}{244} +\indexentry{operators!\%.>\%@\texttt {\%.>\%}}{244} +\indexentry{operators!\%>\%@\texttt {\%>\%}}{244} +\indexentry{operators!\textbar >@\texttt {\textbar >}}{244} +\indexentry{operators!\textbar >@\texttt {\textbar >}}{244} +\indexentry{operators!\textbar >@\texttt {\textbar >}}{244} +\indexentry{operators!\%>\%@\texttt {\%>\%}}{244} +\indexentry{functions and methods!print()@\texttt {print()}}{244} +\indexentry{functions and methods!print()@\texttt {print()}}{244} +\indexentry{operators!\textbar >@\texttt {\textbar >}}{245} +\indexentry{operators!\textbar >@\texttt {\textbar >}}{245} +\indexentry{operators!\%>\%@\texttt {\%>\%}}{245} +\indexentry{operators!\textbar >@\texttt {\textbar >}}{245} +\indexentry{operators!\%>\%@\texttt {\%>\%}}{245} +\indexentry{operators!\%.>\%@\texttt {\%.>\%}}{245} +\indexentry{operators!\%>\%@\texttt {\%>\%}}{245} +\indexentry{functions and methods!assign()@\texttt {assign()}}{245} +\indexentry{operators!\textbar >@\texttt {\textbar >}}{245} +\indexentry{operators!\%>\%@\texttt {\%>\%}}{246} +\indexentry{functions and methods!plot()@\texttt {plot()}}{246} +\indexentry{data objects!iris@\texttt {iris}}{247} +\indexentry{classes and modes!"tb"@\texttt {"tb"}}{247} +\indexentry{functions and methods!pivot\_longer()@\texttt {pivot\_longer()}}{247} +\indexentry{functions and methods!pivot\_longer()@\texttt {pivot\_longer()}}{247} +\indexentry{functions and methods!pivot\_wider()@\texttt {pivot\_wider()}}{247} +\indexentry{functions and methods!pivot\_longer()@\texttt {pivot\_longer()}}{247} +\indexentry{functions and methods!unnest()@\texttt {unnest()}}{247} +\indexentry{functions and methods!gather()@\texttt {gather()}}{248} +\indexentry{functions and methods!spread()@\texttt {spread()}}{248} +\indexentry{functions and methods!pivot\_longer()@\texttt {pivot\_longer()}}{248} +\indexentry{functions and methods!pivot\_wider()@\texttt {pivot\_wider()}}{248} +\indexentry{functions and methods!pivot\_longer()@\texttt {pivot\_longer()}}{248} +\indexentry{functions and methods!pivot\_wider()@\texttt {pivot\_wider()}}{248} +\indexentry{classes and modes!tibble@\texttt {tibble}}{248} +\indexentry{functions and methods!mutate()@\texttt {mutate()}}{249} +\indexentry{functions and methods!transmute()@\texttt {transmute()}}{249} +\indexentry{functions and methods!mutate()@\texttt {mutate()}}{249} +\indexentry{functions and methods!transmute()@\texttt {transmute()}}{249} +\indexentry{functions and methods!tibble()@\texttt {tibble()}}{249} +\indexentry{functions and methods!mutate()@\texttt {mutate()}}{249} +\indexentry{functions and methods!transmute()@\texttt {transmute()}}{249} +\indexentry{functions and methods!str\_extract()@\texttt {str\_extract()}}{249} +\indexentry{functions and methods!mutate()@\texttt {mutate()}}{249} +\indexentry{operators!\%.>\%@\texttt {\%.>\%}}{249} +\indexentry{functions and methods!arrange()@\texttt {arrange()}}{249} +\indexentry{functions and methods!sort()@\texttt {sort()}}{249} +\indexentry{functions and methods!order()@\texttt {order()}}{249} +\indexentry{functions and methods!filter()@\texttt {filter()}}{250} +\indexentry{functions and methods!subset()@\texttt {subset()}}{250} +\indexentry{functions and methods!slice()@\texttt {slice()}}{250} +\indexentry{functions and methods!select()@\texttt {select()}}{250} +\indexentry{functions and methods!select()@\texttt {select()}}{250} +\indexentry{functions and methods!select()@\texttt {select()}}{250} +\indexentry{functions and methods!starts\_with()@\texttt {starts\_with()}}{250} +\indexentry{functions and methods!ends\_with()@\texttt {ends\_with()}}{250} +\indexentry{functions and methods!contains()@\texttt {contains()}}{250} +\indexentry{functions and methods!matches()@\texttt {matches()}}{250} +\indexentry{functions and methods!rename()@\texttt {rename()}}{251} +\indexentry{functions and methods!names()@\texttt {names()}}{251} +\indexentry{functions and methods!names()<-@\texttt {names()<-}}{251} +\indexentry{functions and methods!aggregate()@\texttt {aggregate()}}{251} +\indexentry{functions and methods!group\_by()@\texttt {group\_by()}}{251} +\indexentry{functions and methods!summarise()@\texttt {summarise()}}{251} +\indexentry{operators!==@\texttt {==}}{252} +\indexentry{functions and methods!group\_by()@\texttt {group\_by()}}{252} +\indexentry{functions and methods!ungroup()@\texttt {ungroup()}}{253} +\indexentry{operators![ , ]@\texttt {[ , ]}}{253} +\indexentry{functions and methods!full\_join()@\texttt {full\_join()}}{253} +\indexentry{functions and methods!left\_join()@\texttt {left\_join()}}{253} +\indexentry{functions and methods!right\_join()@\texttt {right\_join()}}{253} +\indexentry{functions and methods!inner\_join()@\texttt {inner\_join()}}{253} +\indexentry{functions and methods!semi\_join()@\texttt {semi\_join()}}{255} +\indexentry{functions and methods!anti\_join()@\texttt {anti\_join()}}{255} +\indexentry{functions and methods!geom\_point()@\texttt {geom\_point()}}{261} +\indexentry{functions and methods!geom\_line()@\texttt {geom\_line()}}{261} +\indexentry{functions and methods!position\_identity()@\texttt {position\_identity()}}{261} +\indexentry{functions and methods!position\_stack()@\texttt {position\_stack()}}{261} +\indexentry{functions and methods!stat\_smooth()@\texttt {stat\_smooth()}}{261} +\indexentry{functions and methods!stat\_summary()@\texttt {stat\_summary()}}{261} +\indexentry{functions and methods!scale\_color\_continuous()@\texttt {scale\_color\_continuous()}}{261} +\indexentry{operators!+@\texttt {+}}{262} +\indexentry{operators!\%+\%@\texttt {\%+\%}}{262} +\indexentry{functions and methods!aes()@\texttt {aes()}}{263} +\indexentry{functions and methods!stat\_indentity()@\texttt {stat\_indentity()}}{263} +\indexentry{functions and methods!stat\_identity()@\texttt {stat\_identity()}}{264} +\indexentry{functions and methods!stat\_identity()@\texttt {stat\_identity()}}{264} +\indexentry{functions and methods!geom\_smooth()@\texttt {geom\_smooth()}}{264} +\indexentry{functions and methods!stat\_smooth()@\texttt {stat\_smooth()}}{264} +\indexentry{data objects!mtcars@\texttt {mtcars}}{265} +\indexentry{functions and methods!geom\_point()@\texttt {geom\_point()}}{266} +\indexentry{functions and methods!geom\_line()@\texttt {geom\_line()}}{267} +\indexentry{functions and methods!geom\_point()@\texttt {geom\_point()}}{267} +\indexentry{functions and methods!geom\_line()@\texttt {geom\_line()}}{267} +\indexentry{functions and methods!ggplot()@\texttt {ggplot()}}{271} +\indexentry{functions and methods!ggplot()@\texttt {ggplot()}}{273} +\indexentry{functions and methods!aes()@\texttt {aes()}}{273} +\indexentry{functions and methods!ggplot()@\texttt {ggplot()}}{274} +\indexentry{functions and methods!ggplot()@\texttt {ggplot()}}{274} +\indexentry{operators!\textbar >@\texttt {\textbar >}}{274} +\indexentry{functions and methods!stat()@\texttt {stat()}}{275} +\indexentry{functions and methods!stage()@\texttt {stage()}}{275} +\indexentry{functions and methods!after\_stat()@\texttt {after\_stat()}}{275} +\indexentry{functions and methods!after\_scale()@\texttt {after\_scale()}}{275} +\indexentry{functions and methods!after\_stat()@\texttt {after\_stat()}}{275} +\indexentry{functions and methods!stat()@\texttt {stat()}}{275} +\indexentry{functions and methods!after\_stat()@\texttt {after\_stat()}}{275} +\indexentry{functions and methods!after\_scale()@\texttt {after\_scale()}}{275} +\indexentry{functions and methods!rlm()@\texttt {rlm()}}{275} +\indexentry{functions and methods!after\_stat()@\texttt {after\_stat()}}{276} +\indexentry{functions and methods!stat\_fit\_residuals()@\texttt {stat\_fit\_residuals()}}{276} +\indexentry{functions and methods!geom\_point()@\texttt {geom\_point()}}{276} +\indexentry{functions and methods!stage()@\texttt {stage()}}{276} +\indexentry{functions and methods!geom\_point()@\texttt {geom\_point()}}{276} +\indexentry{functions and methods!stat\_fit\_residuals()@\texttt {stat\_fit\_residuals()}}{276} +\indexentry{functions and methods!stat\_fit\_residuals()@\texttt {stat\_fit\_residuals()}}{276} +\indexentry{functions and methods!geom\_point()@\texttt {geom\_point()}}{276} +\indexentry{functions and methods!geom\_point()@\texttt {geom\_point()}}{277} +\indexentry{functions and methods!geom\_line()@\texttt {geom\_line()}}{277} +\indexentry{functions and methods!geom\_point()@\texttt {geom\_point()}}{277} +\indexentry{functions and methods!position\_identity()@\texttt {position\_identity()}}{280} +\indexentry{functions and methods!geom\_point()@\texttt {geom\_point()}}{280} +\indexentry{functions and methods!position\_jitter()@\texttt {position\_jitter()}}{280} +\indexentry{functions and methods!geom\_point\_s()@\texttt {geom\_point\_s()}}{281} +\indexentry{functions and methods!geom\_point()@\texttt {geom\_point()}}{282} +\indexentry{functions and methods!geom\_pointrange()@\texttt {geom\_pointrange()}}{283} +\indexentry{functions and methods!geom\_range()@\texttt {geom\_range()}}{283} +\indexentry{functions and methods!geom\_errorbar()@\texttt {geom\_errorbar()}}{283} +\indexentry{functions and methods!geom\_rug()@\texttt {geom\_rug()}}{283} +\indexentry{functions and methods!geom\_line()@\texttt {geom\_line()}}{284} +\indexentry{data objects!Orange@\texttt {Orange}}{284} +\indexentry{functions and methods!geom\_segment()@\texttt {geom\_segment()}}{284} +\indexentry{functions and methods!geom\_curve()@\texttt {geom\_curve()}}{284} +\indexentry{functions and methods!geom\_path()@\texttt {geom\_path()}}{284} +\indexentry{functions and methods!geom\_line()@\texttt {geom\_line()}}{284} +\indexentry{functions and methods!geom\_spoke()@\texttt {geom\_spoke()}}{285} +\indexentry{functions and methods!geom\_segment()@\texttt {geom\_segment()}}{285} +\indexentry{functions and methods!geom\_step()@\texttt {geom\_step()}}{285} +\indexentry{functions and methods!geom\_line()@\texttt {geom\_line()}}{285} +\indexentry{functions and methods!geom\_area()@\texttt {geom\_area()}}{285} +\indexentry{functions and methods!geom\_ribbon()@\texttt {geom\_ribbon()}}{285} +\indexentry{functions and methods!geom\_polygon()@\texttt {geom\_polygon()}}{285} +\indexentry{functions and methods!geom\_path()@\texttt {geom\_path()}}{285} +\indexentry{functions and methods!geom\_point()@\texttt {geom\_point()}}{285} +\indexentry{functions and methods!geom\_line()@\texttt {geom\_line()}}{285} +\indexentry{functions and methods!geom\_ribbon()@\texttt {geom\_ribbon()}}{285} +\indexentry{functions and methods!geom\_area()@\texttt {geom\_area()}}{285} +\indexentry{functions and methods!geom\_hline()@\texttt {geom\_hline()}}{286} +\indexentry{functions and methods!geom\_vline()@\texttt {geom\_vline()}}{286} +\indexentry{functions and methods!geom\_abline()@\texttt {geom\_abline()}}{286} +\indexentry{functions and methods!geom\_hline()@\texttt {geom\_hline()}}{286} +\indexentry{functions and methods!geom\_vline()@\texttt {geom\_vline()}}{286} +\indexentry{functions and methods!geom\_col()@\texttt {geom\_col()}}{286} +\indexentry{functions and methods!geom\_bar()@\texttt {geom\_bar()}}{287} +\indexentry{functions and methods!stat\_count()@\texttt {stat\_count()}}{287} +\indexentry{functions and methods!geom\_col()@\texttt {geom\_col()}}{287} +\indexentry{functions and methods!geom\_bar()@\texttt {geom\_bar()}}{287} +\indexentry{functions and methods!geom\_col()@\texttt {geom\_col()}}{288} +\indexentry{functions and methods!geom\_tile()@\texttt {geom\_tile()}}{288} +\indexentry{functions and methods!geom\_tile()@\texttt {geom\_tile()}}{288} +\indexentry{functions and methods!geom\_tile()@\texttt {geom\_tile()}}{289} +\indexentry{functions and methods!geom\_rect()@\texttt {geom\_rect()}}{289} +\indexentry{functions and methods!geom\_sf()@\texttt {geom\_sf()}}{290} +\indexentry{functions and methods!geom\_sf\_text()@\texttt {geom\_sf\_text()}}{290} +\indexentry{functions and methods!geom\_sf\_label()@\texttt {geom\_sf\_label()}}{290} +\indexentry{functions and methods!stat\_sf()@\texttt {stat\_sf()}}{290} +\indexentry{functions and methods!geom\_text()@\texttt {geom\_text()}}{290} +\indexentry{functions and methods!geom\_label()@\texttt {geom\_label()}}{290} +\indexentry{functions and methods!geom\_text()@\texttt {geom\_text()}}{290} +\indexentry{functions and methods!geom\_label()@\texttt {geom\_label()}}{290} +\indexentry{functions and methods!geom\_label()@\texttt {geom\_label()}}{291} +\indexentry{functions and methods!geom\_label()@\texttt {geom\_label()}}{291} +\indexentry{functions and methods!geom\_text()@\texttt {geom\_text()}}{291} +\indexentry{functions and methods!geom\_label()@\texttt {geom\_label()}}{292} \indexentry{functions and methods!geom\_point()@\texttt {geom\_point()}}{292} -\indexentry{functions and methods!position\_identity()@\texttt {position\_identity()}}{294} -\indexentry{functions and methods!geom\_point()@\texttt {geom\_point()}}{294} -\indexentry{functions and methods!position\_jitter()@\texttt {position\_jitter()}}{294} -\indexentry{functions and methods!geom\_point\_s()@\texttt {geom\_point\_s()}}{295} -\indexentry{functions and methods!geom\_point()@\texttt {geom\_point()}}{297} -\indexentry{functions and methods!geom\_pointrange()@\texttt {geom\_pointrange()}}{298} -\indexentry{functions and methods!geom\_range()@\texttt {geom\_range()}}{298} -\indexentry{functions and methods!geom\_errorbar()@\texttt {geom\_errorbar()}}{298} -\indexentry{functions and methods!geom\_rug()@\texttt {geom\_rug()}}{298} -\indexentry{functions and methods!geom\_line()@\texttt {geom\_line()}}{298} -\indexentry{data objects!Orange@\texttt {Orange}}{298} -\indexentry{functions and methods!geom\_segment()@\texttt {geom\_segment()}}{299} -\indexentry{functions and methods!geom\_curve()@\texttt {geom\_curve()}}{299} -\indexentry{functions and methods!geom\_path()@\texttt {geom\_path()}}{299} -\indexentry{functions and methods!geom\_line()@\texttt {geom\_line()}}{299} -\indexentry{functions and methods!geom\_spoke()@\texttt {geom\_spoke()}}{299} -\indexentry{functions and methods!geom\_segment()@\texttt {geom\_segment()}}{299} -\indexentry{functions and methods!geom\_step()@\texttt {geom\_step()}}{299} -\indexentry{functions and methods!geom\_line()@\texttt {geom\_line()}}{300} -\indexentry{functions and methods!geom\_area()@\texttt {geom\_area()}}{300} -\indexentry{functions and methods!geom\_ribbon()@\texttt {geom\_ribbon()}}{300} -\indexentry{functions and methods!geom\_polygon()@\texttt {geom\_polygon()}}{300} -\indexentry{functions and methods!geom\_path()@\texttt {geom\_path()}}{300} -\indexentry{functions and methods!geom\_point()@\texttt {geom\_point()}}{300} -\indexentry{functions and methods!geom\_line()@\texttt {geom\_line()}}{300} -\indexentry{functions and methods!geom\_ribbon()@\texttt {geom\_ribbon()}}{300} -\indexentry{functions and methods!geom\_area()@\texttt {geom\_area()}}{300} -\indexentry{functions and methods!geom\_hline()@\texttt {geom\_hline()}}{300} -\indexentry{functions and methods!geom\_vline()@\texttt {geom\_vline()}}{300} -\indexentry{functions and methods!geom\_abline()@\texttt {geom\_abline()}}{300} -\indexentry{functions and methods!geom\_hline()@\texttt {geom\_hline()}}{300} -\indexentry{functions and methods!geom\_vline()@\texttt {geom\_vline()}}{300} -\indexentry{functions and methods!geom\_col()@\texttt {geom\_col()}}{301} -\indexentry{functions and methods!geom\_bar()@\texttt {geom\_bar()}}{301} -\indexentry{functions and methods!stat\_count()@\texttt {stat\_count()}}{301} -\indexentry{functions and methods!geom\_col()@\texttt {geom\_col()}}{301} -\indexentry{functions and methods!geom\_bar()@\texttt {geom\_bar()}}{301} -\indexentry{functions and methods!geom\_col()@\texttt {geom\_col()}}{303} -\indexentry{functions and methods!geom\_tile()@\texttt {geom\_tile()}}{303} -\indexentry{functions and methods!geom\_tile()@\texttt {geom\_tile()}}{303} -\indexentry{functions and methods!geom\_tile()@\texttt {geom\_tile()}}{304} -\indexentry{functions and methods!geom\_rect()@\texttt {geom\_rect()}}{304} -\indexentry{functions and methods!geom\_sf()@\texttt {geom\_sf()}}{304} -\indexentry{functions and methods!geom\_sf\_text()@\texttt {geom\_sf\_text()}}{304} -\indexentry{functions and methods!geom\_sf\_label()@\texttt {geom\_sf\_label()}}{304} -\indexentry{functions and methods!stat\_sf()@\texttt {stat\_sf()}}{304} -\indexentry{functions and methods!geom\_text()@\texttt {geom\_text()}}{305} -\indexentry{functions and methods!geom\_label()@\texttt {geom\_label()}}{305} -\indexentry{functions and methods!geom\_text()@\texttt {geom\_text()}}{305} -\indexentry{functions and methods!geom\_label()@\texttt {geom\_label()}}{305} -\indexentry{functions and methods!geom\_label()@\texttt {geom\_label()}}{306} -\indexentry{functions and methods!geom\_label()@\texttt {geom\_label()}}{306} -\indexentry{functions and methods!geom\_text()@\texttt {geom\_text()}}{306} -\indexentry{functions and methods!geom\_label()@\texttt {geom\_label()}}{306} -\indexentry{functions and methods!geom\_point()@\texttt {geom\_point()}}{306} -\indexentry{functions and methods!geom\_label()@\texttt {geom\_label()}}{306} -\indexentry{functions and methods!geom\_text()@\texttt {geom\_text()}}{306} -\indexentry{functions and methods!paste()@\texttt {paste()}}{307} -\indexentry{functions and methods!paste()@\texttt {paste()}}{307} -\indexentry{functions and methods!geom\_text()@\texttt {geom\_text()}}{307} -\indexentry{functions and methods!aes()@\texttt {aes()}}{307} -\indexentry{functions and methods!geom\_label()@\texttt {geom\_label()}}{308} -\indexentry{functions and methods!geom\_text()@\texttt {geom\_text()}}{308} -\indexentry{functions and methods!geom\_text()@\texttt {geom\_text()}}{308} -\indexentry{functions and methods!geom\_text()@\texttt {geom\_text()}}{308} -\indexentry{functions and methods!geom\_text()@\texttt {geom\_text()}}{308} -\indexentry{functions and methods!geom\_label()@\texttt {geom\_label()}}{308} -\indexentry{functions and methods!geom\_text\_repel()@\texttt {geom\_text\_repel()}}{308} -\indexentry{functions and methods!geom\_label\_repel()@\texttt {geom\_label\_repel()}}{308} -\indexentry{functions and methods!geom\_table()@\texttt {geom\_table()}}{309} -\indexentry{functions and methods!geom\_plot()@\texttt {geom\_plot()}}{309} -\indexentry{functions and methods!geom\_grob()@\texttt {geom\_grob()}}{309} -\indexentry{functions and methods!geom\_table()@\texttt {geom\_table()}}{309} -\indexentry{functions and methods!geom\_plot()@\texttt {geom\_plot()}}{309} -\indexentry{functions and methods!geom\_grob()@\texttt {geom\_grob()}}{309} -\indexentry{functions and methods!geom\_table()@\texttt {geom\_table()}}{309} -\indexentry{functions and methods!geom\_text()@\texttt {geom\_text()}}{309} -\indexentry{functions and methods!geom\_table()@\texttt {geom\_table()}}{310} -\indexentry{functions and methods!geom\_table()@\texttt {geom\_table()}}{310} -\indexentry{functions and methods!geom\_table()@\texttt {geom\_table()}}{311} -\indexentry{functions and methods!geom\_plot()@\texttt {geom\_plot()}}{311} -\indexentry{functions and methods!annotate()@\texttt {annotate()}}{312} -\indexentry{functions and methods!geom\_grob()@\texttt {geom\_grob()}}{312} -\indexentry{functions and methods!annotation\_custom()@\texttt {annotation\_custom()}}{312} -\indexentry{functions and methods!geom\_text\_npc()@\texttt {geom\_text\_npc()}}{313} -\indexentry{functions and methods!geom\_label\_npc()@\texttt {geom\_label\_npc()}}{313} -\indexentry{functions and methods!geom\_table\_npc()@\texttt {geom\_table\_npc()}}{313} -\indexentry{functions and methods!geom\_plot\_npc()@\texttt {geom\_plot\_npc()}}{313} -\indexentry{functions and methods!geom\_grob\_npc()@\texttt {geom\_grob\_npc()}}{313} -\indexentry{functions and methods!stat\_function()@\texttt {stat\_function()}}{314} -\indexentry{functions and methods!xlim()@\texttt {xlim()}}{315} -\indexentry{functions and methods!ylim()@\texttt {ylim()}}{315} -\indexentry{functions and methods!stat\_summary()@\texttt {stat\_summary()}}{315} -\indexentry{functions and methods!stat\_summary()@\texttt {stat\_summary()}}{315} -\indexentry{functions and methods!geom\_pointrange()@\texttt {geom\_pointrange()}}{315} -\indexentry{functions and methods!stat\_summary()@\texttt {stat\_summary()}}{316} -\indexentry{functions and methods!stat\_summary()@\texttt {stat\_summary()}}{317} -\indexentry{functions and methods!geom\_pointrange()@\texttt {geom\_pointrange()}}{317} -\indexentry{functions and methods!geom\_errorbar()@\texttt {geom\_errorbar()}}{317} -\indexentry{functions and methods!geom\_linerange()@\texttt {geom\_linerange()}}{317} -\indexentry{functions and methods!stat\_smooth()@\texttt {stat\_smooth()}}{318} -\indexentry{functions and methods!geom\_smooth()@\texttt {geom\_smooth()}}{318} -\indexentry{functions and methods!stat\_smooth()@\texttt {stat\_smooth()}}{318} -\indexentry{functions and methods!lm()@\texttt {lm()}}{318} -\indexentry{functions and methods!stat\_smooth()@\texttt {stat\_smooth()}}{319} -\indexentry{data objects!Puromycin@\texttt {Puromycin}}{319} -\indexentry{functions and methods!SSmicmen()@\texttt {SSmicmen()}}{319} -\indexentry{functions and methods!stat\_poly\_line()@\texttt {stat\_poly\_line()}}{320} -\indexentry{functions and methods!stat\_smooth()@\texttt {stat\_smooth()}}{320} -\indexentry{functions and methods!stat\_bin()@\texttt {stat\_bin()}}{321} -\indexentry{functions and methods!geom\_histogram()@\texttt {geom\_histogram()}}{321} -\indexentry{functions and methods!stat\_count()@\texttt {stat\_count()}}{321} -\indexentry{functions and methods!geom\_bar()@\texttt {geom\_bar()}}{321} -\indexentry{functions and methods!stat\_bin()@\texttt {stat\_bin()}}{322} -\indexentry{functions and methods!geom\_histogram()@\texttt {geom\_histogram()}}{323} -\indexentry{functions and methods!stat\_bin()@\texttt {stat\_bin()}}{323} -\indexentry{functions and methods!stat\_count()@\texttt {stat\_count()}}{323} -\indexentry{functions and methods!stat\_bin2d()@\texttt {stat\_bin2d()}}{323} -\indexentry{functions and methods!geom\_bin2d()@\texttt {geom\_bin2d()}}{323} -\indexentry{functions and methods!stat\_bin()@\texttt {stat\_bin()}}{323} -\indexentry{functions and methods!coord\_fixed()@\texttt {coord\_fixed()}}{323} -\indexentry{functions and methods!coord\_cartesian()@\texttt {coord\_cartesian()}}{323} -\indexentry{functions and methods!stat\_bin\_hex()@\texttt {stat\_bin\_hex()}}{323} -\indexentry{functions and methods!geom\_hex()@\texttt {geom\_hex()}}{323} -\indexentry{functions and methods!stat\_bin2d()@\texttt {stat\_bin2d()}}{323} -\indexentry{functions and methods!geom\_density()@\texttt {geom\_density()}}{324} -\indexentry{functions and methods!stat\_density\_2d()@\texttt {stat\_density\_2d()}}{324} -\indexentry{functions and methods!geom\_density\_2d()@\texttt {geom\_density\_2d()}}{325} -\indexentry{functions and methods!stat\_boxplot()@\texttt {stat\_boxplot()}}{325} -\indexentry{functions and methods!geom\_boxplot()@\texttt {geom\_boxplot()}}{325} -\indexentry{functions and methods!geom\_violin()@\texttt {geom\_violin()}}{326} -\indexentry{functions and methods!geom\_point()@\texttt {geom\_point()}}{328} -\indexentry{functions and methods!geom\_line()@\texttt {geom\_line()}}{328} -\indexentry{functions and methods!coord\_flip()@\texttt {coord\_flip()}}{328} -\indexentry{functions and methods!stat\_smooth()@\texttt {stat\_smooth()}}{328} -\indexentry{functions and methods!geom\_line()@\texttt {geom\_line()}}{328} -\indexentry{functions and methods!geom\_point()@\texttt {geom\_point()}}{328} -\indexentry{functions and methods!stat\_boxplot()@\texttt {stat\_boxplot()}}{329} -\indexentry{functions and methods!stat\_boxplot()@\texttt {stat\_boxplot()}}{329} -\indexentry{functions and methods!stat\_summary()@\texttt {stat\_summary()}}{329} -\indexentry{functions and methods!stat\_histogram()@\texttt {stat\_histogram()}}{329} -\indexentry{functions and methods!stat\_density()@\texttt {stat\_density()}}{329} -\indexentry{functions and methods!geom\_smooth()@\texttt {geom\_smooth()}}{331} -\indexentry{functions and methods!coord\_flip()@\texttt {coord\_flip()}}{332} -\indexentry{functions and methods!stat\_poly\_line()@\texttt {stat\_poly\_line()}}{332} +\indexentry{functions and methods!geom\_label()@\texttt {geom\_label()}}{292} +\indexentry{functions and methods!geom\_text()@\texttt {geom\_text()}}{292} +\indexentry{functions and methods!paste()@\texttt {paste()}}{292} +\indexentry{functions and methods!paste()@\texttt {paste()}}{292} +\indexentry{functions and methods!geom\_text()@\texttt {geom\_text()}}{293} +\indexentry{functions and methods!aes()@\texttt {aes()}}{293} +\indexentry{functions and methods!geom\_label()@\texttt {geom\_label()}}{293} +\indexentry{functions and methods!geom\_text()@\texttt {geom\_text()}}{293} +\indexentry{functions and methods!geom\_text()@\texttt {geom\_text()}}{293} +\indexentry{functions and methods!geom\_text()@\texttt {geom\_text()}}{294} +\indexentry{functions and methods!geom\_text()@\texttt {geom\_text()}}{294} +\indexentry{functions and methods!geom\_label()@\texttt {geom\_label()}}{294} +\indexentry{functions and methods!geom\_text\_repel()@\texttt {geom\_text\_repel()}}{294} +\indexentry{functions and methods!geom\_label\_repel()@\texttt {geom\_label\_repel()}}{294} +\indexentry{functions and methods!geom\_table()@\texttt {geom\_table()}}{294} +\indexentry{functions and methods!geom\_plot()@\texttt {geom\_plot()}}{294} +\indexentry{functions and methods!geom\_grob()@\texttt {geom\_grob()}}{294} +\indexentry{functions and methods!geom\_table()@\texttt {geom\_table()}}{294} +\indexentry{functions and methods!geom\_plot()@\texttt {geom\_plot()}}{294} +\indexentry{functions and methods!geom\_grob()@\texttt {geom\_grob()}}{294} +\indexentry{functions and methods!geom\_table()@\texttt {geom\_table()}}{295} +\indexentry{functions and methods!geom\_text()@\texttt {geom\_text()}}{295} +\indexentry{functions and methods!geom\_table()@\texttt {geom\_table()}}{296} +\indexentry{functions and methods!geom\_table()@\texttt {geom\_table()}}{296} +\indexentry{functions and methods!geom\_table()@\texttt {geom\_table()}}{296} +\indexentry{functions and methods!geom\_plot()@\texttt {geom\_plot()}}{296} +\indexentry{functions and methods!annotate()@\texttt {annotate()}}{297} +\indexentry{functions and methods!geom\_grob()@\texttt {geom\_grob()}}{297} +\indexentry{functions and methods!annotation\_custom()@\texttt {annotation\_custom()}}{297} +\indexentry{functions and methods!geom\_text\_npc()@\texttt {geom\_text\_npc()}}{298} +\indexentry{functions and methods!geom\_label\_npc()@\texttt {geom\_label\_npc()}}{298} +\indexentry{functions and methods!geom\_table\_npc()@\texttt {geom\_table\_npc()}}{298} +\indexentry{functions and methods!geom\_plot\_npc()@\texttt {geom\_plot\_npc()}}{298} +\indexentry{functions and methods!geom\_grob\_npc()@\texttt {geom\_grob\_npc()}}{298} +\indexentry{functions and methods!stat\_function()@\texttt {stat\_function()}}{299} +\indexentry{functions and methods!xlim()@\texttt {xlim()}}{300} +\indexentry{functions and methods!ylim()@\texttt {ylim()}}{300} +\indexentry{functions and methods!stat\_summary()@\texttt {stat\_summary()}}{300} +\indexentry{functions and methods!stat\_summary()@\texttt {stat\_summary()}}{301} +\indexentry{functions and methods!geom\_pointrange()@\texttt {geom\_pointrange()}}{301} +\indexentry{functions and methods!stat\_summary()@\texttt {stat\_summary()}}{302} +\indexentry{functions and methods!stat\_summary()@\texttt {stat\_summary()}}{302} +\indexentry{functions and methods!geom\_pointrange()@\texttt {geom\_pointrange()}}{302} +\indexentry{functions and methods!geom\_errorbar()@\texttt {geom\_errorbar()}}{302} +\indexentry{functions and methods!geom\_linerange()@\texttt {geom\_linerange()}}{302} +\indexentry{functions and methods!stat\_smooth()@\texttt {stat\_smooth()}}{303} +\indexentry{functions and methods!geom\_smooth()@\texttt {geom\_smooth()}}{303} +\indexentry{functions and methods!stat\_smooth()@\texttt {stat\_smooth()}}{303} +\indexentry{functions and methods!lm()@\texttt {lm()}}{303} +\indexentry{functions and methods!stat\_smooth()@\texttt {stat\_smooth()}}{304} +\indexentry{data objects!Puromycin@\texttt {Puromycin}}{304} +\indexentry{functions and methods!SSmicmen()@\texttt {SSmicmen()}}{305} +\indexentry{functions and methods!stat\_poly\_line()@\texttt {stat\_poly\_line()}}{305} +\indexentry{functions and methods!stat\_smooth()@\texttt {stat\_smooth()}}{305} +\indexentry{functions and methods!stat\_bin()@\texttt {stat\_bin()}}{306} +\indexentry{functions and methods!geom\_histogram()@\texttt {geom\_histogram()}}{306} +\indexentry{functions and methods!stat\_count()@\texttt {stat\_count()}}{306} +\indexentry{functions and methods!geom\_bar()@\texttt {geom\_bar()}}{306} +\indexentry{functions and methods!stat\_bin()@\texttt {stat\_bin()}}{307} +\indexentry{functions and methods!geom\_histogram()@\texttt {geom\_histogram()}}{308} +\indexentry{functions and methods!stat\_bin()@\texttt {stat\_bin()}}{308} +\indexentry{functions and methods!stat\_count()@\texttt {stat\_count()}}{308} +\indexentry{functions and methods!stat\_bin2d()@\texttt {stat\_bin2d()}}{308} +\indexentry{functions and methods!geom\_bin2d()@\texttt {geom\_bin2d()}}{308} +\indexentry{functions and methods!stat\_bin()@\texttt {stat\_bin()}}{308} +\indexentry{functions and methods!coord\_fixed()@\texttt {coord\_fixed()}}{308} +\indexentry{functions and methods!coord\_cartesian()@\texttt {coord\_cartesian()}}{308} +\indexentry{functions and methods!stat\_bin\_hex()@\texttt {stat\_bin\_hex()}}{308} +\indexentry{functions and methods!geom\_hex()@\texttt {geom\_hex()}}{308} +\indexentry{functions and methods!stat\_bin2d()@\texttt {stat\_bin2d()}}{308} +\indexentry{functions and methods!geom\_density()@\texttt {geom\_density()}}{309} +\indexentry{functions and methods!stat\_density\_2d()@\texttt {stat\_density\_2d()}}{309} +\indexentry{functions and methods!geom\_density\_2d()@\texttt {geom\_density\_2d()}}{310} +\indexentry{functions and methods!stat\_boxplot()@\texttt {stat\_boxplot()}}{310} +\indexentry{functions and methods!geom\_boxplot()@\texttt {geom\_boxplot()}}{310} +\indexentry{functions and methods!geom\_violin()@\texttt {geom\_violin()}}{311} +\indexentry{functions and methods!geom\_point()@\texttt {geom\_point()}}{313} +\indexentry{functions and methods!geom\_line()@\texttt {geom\_line()}}{313} +\indexentry{functions and methods!coord\_flip()@\texttt {coord\_flip()}}{313} +\indexentry{functions and methods!stat\_smooth()@\texttt {stat\_smooth()}}{313} +\indexentry{functions and methods!geom\_line()@\texttt {geom\_line()}}{313} +\indexentry{functions and methods!geom\_point()@\texttt {geom\_point()}}{313} +\indexentry{functions and methods!stat\_boxplot()@\texttt {stat\_boxplot()}}{314} +\indexentry{functions and methods!stat\_boxplot()@\texttt {stat\_boxplot()}}{314} +\indexentry{functions and methods!stat\_summary()@\texttt {stat\_summary()}}{314} +\indexentry{functions and methods!stat\_histogram()@\texttt {stat\_histogram()}}{314} +\indexentry{functions and methods!stat\_density()@\texttt {stat\_density()}}{314} +\indexentry{functions and methods!geom\_smooth()@\texttt {geom\_smooth()}}{316} +\indexentry{functions and methods!coord\_flip()@\texttt {coord\_flip()}}{316} +\indexentry{functions and methods!stat\_poly\_line()@\texttt {stat\_poly\_line()}}{317} +\indexentry{functions and methods!geom\_point()@\texttt {geom\_point()}}{318} +\indexentry{functions and methods!stat\_density\_2d()@\texttt {stat\_density\_2d()}}{318} +\indexentry{functions and methods!stat\_summary\_2d()@\texttt {stat\_summary\_2d()}}{318} +\indexentry{functions and methods!stat\_summary\_2d()@\texttt {stat\_summary\_2d()}}{318} +\indexentry{functions and methods!stat\_density\_2d()@\texttt {stat\_density\_2d()}}{318} +\indexentry{functions and methods!stat\_summary()@\texttt {stat\_summary()}}{318} +\indexentry{functions and methods!stat\_centroid()@\texttt {stat\_centroid()}}{318} +\indexentry{functions and methods!stat\_summary\_xy()@\texttt {stat\_summary\_xy()}}{318} +\indexentry{functions and methods!stat\_summary()@\texttt {stat\_summary()}}{319} +\indexentry{functions and methods!stat\_summary()@\texttt {stat\_summary()}}{319} +\indexentry{functions and methods!facet\_grid()@\texttt {facet\_grid()}}{319} +\indexentry{functions and methods!facet\_wrap()@\texttt {facet\_wrap()}}{319} +\indexentry{functions and methods!geom\_point()@\texttt {geom\_point()}}{319} +\indexentry{functions and methods!label\_bquote()@\texttt {label\_bquote()}}{321} +\indexentry{functions and methods!label\_bquote()@\texttt {label\_bquote()}}{321} +\indexentry{functions and methods!facet\_wrap()@\texttt {facet\_wrap()}}{322} +\indexentry{functions and methods!scale\_color\_identity()@\texttt {scale\_color\_identity()}}{323} +\indexentry{functions and methods!scale\_color\_discrete()@\texttt {scale\_color\_discrete()}}{323} +\indexentry{functions and methods!ggtitle()@\texttt {ggtitle()}}{323} +\indexentry{functions and methods!xlab()@\texttt {xlab()}}{324} +\indexentry{functions and methods!ylab()@\texttt {ylab()}}{324} +\indexentry{functions and methods!labs()@\texttt {labs()}}{324} +\indexentry{functions and methods!labs()@\texttt {labs()}}{324} +\indexentry{functions and methods!ggtitle()@\texttt {ggtitle()}}{324} +\indexentry{functions and methods!ylim()@\texttt {ylim()}}{326} +\indexentry{functions and methods!xlim()@\texttt {xlim()}}{326} +\indexentry{functions and methods!ylim()@\texttt {ylim()}}{326} +\indexentry{functions and methods!xlim()@\texttt {xlim()}}{326} +\indexentry{functions and methods!expand\_limits()@\texttt {expand\_limits()}}{326} +\indexentry{functions and methods!expand\_limits()@\texttt {expand\_limits()}}{326} +\indexentry{functions and methods!xlim()@\texttt {xlim()}}{327} +\indexentry{functions and methods!ylim()@\texttt {ylim()}}{327} +\indexentry{functions and methods!pretty\_breaks()@\texttt {pretty\_breaks()}}{327} +\indexentry{functions and methods!label\_date()@\texttt {label\_date()}}{328} +\indexentry{functions and methods!label\_date\_short()@\texttt {label\_date\_short()}}{328} +\indexentry{functions and methods!label\_time()@\texttt {label\_time()}}{328} +\indexentry{functions and methods!scale\_x\_continuous()@\texttt {scale\_x\_continuous()}}{329} +\indexentry{functions and methods!scale\_y\_continuous()@\texttt {scale\_y\_continuous()}}{329} +\indexentry{functions and methods!scale\_x\_log10()@\texttt {scale\_x\_log10()}}{329} +\indexentry{functions and methods!scale\_y\_log10()@\texttt {scale\_y\_log10()}}{329} +\indexentry{functions and methods!scale\_y\_log()@\texttt {scale\_y\_log()}}{329} +\indexentry{functions and methods!scale\_x\_reverse()@\texttt {scale\_x\_reverse()}}{329} +\indexentry{functions and methods!scale\_y\_log10()@\texttt {scale\_y\_log10()}}{329} +\indexentry{functions and methods!strptime()@\texttt {strptime()}}{332} +\indexentry{functions and methods!scale\_x\_discrete()@\texttt {scale\_x\_discrete()}}{332} +\indexentry{functions and methods!toupper()@\texttt {toupper()}}{333} +\indexentry{functions and methods!tolower()@\texttt {tolower()}}{333} \indexentry{functions and methods!geom\_point()@\texttt {geom\_point()}}{333} -\indexentry{functions and methods!stat\_density\_2d()@\texttt {stat\_density\_2d()}}{333} -\indexentry{functions and methods!stat\_summary\_2d()@\texttt {stat\_summary\_2d()}}{333} -\indexentry{functions and methods!stat\_summary\_2d()@\texttt {stat\_summary\_2d()}}{333} -\indexentry{functions and methods!stat\_density\_2d()@\texttt {stat\_density\_2d()}}{333} -\indexentry{functions and methods!stat\_summary()@\texttt {stat\_summary()}}{333} -\indexentry{functions and methods!stat\_centroid()@\texttt {stat\_centroid()}}{333} -\indexentry{functions and methods!stat\_summary\_xy()@\texttt {stat\_summary\_xy()}}{333} -\indexentry{functions and methods!stat\_summary()@\texttt {stat\_summary()}}{334} -\indexentry{functions and methods!stat\_summary()@\texttt {stat\_summary()}}{334} -\indexentry{functions and methods!facet\_grid()@\texttt {facet\_grid()}}{334} -\indexentry{functions and methods!facet\_wrap()@\texttt {facet\_wrap()}}{334} -\indexentry{functions and methods!geom\_point()@\texttt {geom\_point()}}{334} -\indexentry{functions and methods!label\_bquote()@\texttt {label\_bquote()}}{336} -\indexentry{functions and methods!label\_bquote()@\texttt {label\_bquote()}}{336} -\indexentry{functions and methods!facet\_wrap()@\texttt {facet\_wrap()}}{337} -\indexentry{functions and methods!scale\_color\_identity()@\texttt {scale\_color\_identity()}}{338} -\indexentry{functions and methods!scale\_color\_discrete()@\texttt {scale\_color\_discrete()}}{338} -\indexentry{functions and methods!ggtitle()@\texttt {ggtitle()}}{338} -\indexentry{functions and methods!xlab()@\texttt {xlab()}}{339} -\indexentry{functions and methods!ylab()@\texttt {ylab()}}{339} -\indexentry{functions and methods!labs()@\texttt {labs()}}{339} -\indexentry{functions and methods!labs()@\texttt {labs()}}{339} -\indexentry{functions and methods!ggtitle()@\texttt {ggtitle()}}{339} -\indexentry{functions and methods!ylim()@\texttt {ylim()}}{341} -\indexentry{functions and methods!xlim()@\texttt {xlim()}}{341} -\indexentry{functions and methods!ylim()@\texttt {ylim()}}{341} -\indexentry{functions and methods!xlim()@\texttt {xlim()}}{341} -\indexentry{functions and methods!expand\_limits()@\texttt {expand\_limits()}}{341} -\indexentry{functions and methods!expand\_limits()@\texttt {expand\_limits()}}{341} -\indexentry{functions and methods!xlim()@\texttt {xlim()}}{342} -\indexentry{functions and methods!ylim()@\texttt {ylim()}}{342} -\indexentry{functions and methods!pretty\_breaks()@\texttt {pretty\_breaks()}}{342} -\indexentry{functions and methods!label\_date()@\texttt {label\_date()}}{344} -\indexentry{functions and methods!label\_date\_short()@\texttt {label\_date\_short()}}{344} -\indexentry{functions and methods!label\_time()@\texttt {label\_time()}}{344} -\indexentry{functions and methods!scale\_x\_continuous()@\texttt {scale\_x\_continuous()}}{344} -\indexentry{functions and methods!scale\_y\_continuous()@\texttt {scale\_y\_continuous()}}{344} -\indexentry{functions and methods!scale\_x\_log10()@\texttt {scale\_x\_log10()}}{344} -\indexentry{functions and methods!scale\_y\_log10()@\texttt {scale\_y\_log10()}}{344} -\indexentry{functions and methods!scale\_y\_log()@\texttt {scale\_y\_log()}}{344} -\indexentry{functions and methods!scale\_x\_reverse()@\texttt {scale\_x\_reverse()}}{344} -\indexentry{functions and methods!scale\_y\_log10()@\texttt {scale\_y\_log10()}}{345} -\indexentry{functions and methods!strptime()@\texttt {strptime()}}{348} -\indexentry{functions and methods!scale\_x\_discrete()@\texttt {scale\_x\_discrete()}}{348} -\indexentry{functions and methods!toupper()@\texttt {toupper()}}{349} -\indexentry{functions and methods!tolower()@\texttt {tolower()}}{349} -\indexentry{functions and methods!geom\_point()@\texttt {geom\_point()}}{349} -\indexentry{functions and methods!geom\_line()@\texttt {geom\_line()}}{349} -\indexentry{functions and methods!geom\_hline()@\texttt {geom\_hline()}}{349} -\indexentry{functions and methods!geom\_vline()@\texttt {geom\_vline()}}{349} +\indexentry{functions and methods!geom\_line()@\texttt {geom\_line()}}{333} +\indexentry{functions and methods!geom\_hline()@\texttt {geom\_hline()}}{333} +\indexentry{functions and methods!geom\_vline()@\texttt {geom\_vline()}}{333} +\indexentry{functions and methods!geom\_text()@\texttt {geom\_text()}}{333} +\indexentry{functions and methods!geom\_label()@\texttt {geom\_label()}}{333} +\indexentry{functions and methods!geom\_bar()@\texttt {geom\_bar()}}{333} +\indexentry{functions and methods!geom\_col()@\texttt {geom\_col()}}{333} +\indexentry{functions and methods!geom\_area()@\texttt {geom\_area()}}{333} +\indexentry{functions and methods!rgb()@\texttt {rgb()}}{334} +\indexentry{functions and methods!hcl()@\texttt {hcl()}}{335} +\indexentry{functions and methods!scale\_color\_continuous()@\texttt {scale\_color\_continuous()}}{335} +\indexentry{functions and methods!scale\_color\_gradient()@\texttt {scale\_color\_gradient()}}{335} +\indexentry{functions and methods!scale\_color\_gradient2()@\texttt {scale\_color\_gradient2()}}{335} +\indexentry{functions and methods!scale\_color\_gradientn()@\texttt {scale\_color\_gradientn()}}{335} +\indexentry{functions and methods!scale\_color\_date()@\texttt {scale\_color\_date()}}{335} +\indexentry{functions and methods!scale\_color\_datetime()@\texttt {scale\_color\_datetime()}}{335} +\indexentry{functions and methods!scale\_color\_viridis\_c()@\texttt {scale\_color\_viridis\_c()}}{335} +\indexentry{functions and methods!scale\_color\_distiller()@\texttt {scale\_color\_distiller()}}{335} +\indexentry{functions and methods!scale\_color\_discrete()@\texttt {scale\_color\_discrete()}}{335} +\indexentry{functions and methods!scale\_color\_hue()@\texttt {scale\_color\_hue()}}{335} +\indexentry{functions and methods!scale\_color\_gray()@\texttt {scale\_color\_gray()}}{335} +\indexentry{functions and methods!scale\_color\_viridis\_d()@\texttt {scale\_color\_viridis\_d()}}{335} +\indexentry{functions and methods!scale\_color\_brewer()@\texttt {scale\_color\_brewer()}}{335} +\indexentry{functions and methods!scale\_color\_gradient()@\texttt {scale\_color\_gradient()}}{336} +\indexentry{functions and methods!scale\_color\_binned()@\texttt {scale\_color\_binned()}}{336} +\indexentry{functions and methods!scale\_color\_identity()@\texttt {scale\_color\_identity()}}{337} +\indexentry{functions and methods!scale\_fill\_identity()@\texttt {scale\_fill\_identity()}}{337} +\indexentry{functions and methods!annotate()@\texttt {annotate()}}{337} +\indexentry{functions and methods!annotate()@\texttt {annotate()}}{337} +\indexentry{functions and methods!annotate()@\texttt {annotate()}}{338} +\indexentry{functions and methods!annotate()@\texttt {annotate()}}{338} +\indexentry{functions and methods!annotation\_custom()@\texttt {annotation\_custom()}}{338} +\indexentry{functions and methods!ggplotGrob()@\texttt {ggplotGrob()}}{338} +\indexentry{functions and methods!annotate()@\texttt {annotate()}}{340} +\indexentry{functions and methods!geom\_vline()@\texttt {geom\_vline()}}{340} +\indexentry{functions and methods!geom\_hline()@\texttt {geom\_hline()}}{340} +\indexentry{functions and methods!coord\_polar()@\texttt {coord\_polar()}}{340} +\indexentry{functions and methods!coord\_polar()@\texttt {coord\_polar()}}{340} +\indexentry{functions and methods!stat\_bin()@\texttt {stat\_bin()}}{340} +\indexentry{functions and methods!stat\_density()@\texttt {stat\_density()}}{341} +\indexentry{functions and methods!stat\_bin()@\texttt {stat\_bin()}}{341} +\indexentry{functions and methods!geom\_polygon()@\texttt {geom\_polygon()}}{341} +\indexentry{functions and methods!geom\_bar()@\texttt {geom\_bar()}}{341} +\indexentry{functions and methods!facet\_wrap()@\texttt {facet\_wrap()}}{341} +\indexentry{functions and methods!geom\_bar()@\texttt {geom\_bar()}}{342} +\indexentry{functions and methods!theme\_gray()@\texttt {theme\_gray()}}{343} +\indexentry{functions and methods!theme\_bw()@\texttt {theme\_bw()}}{343} +\indexentry{functions and methods!theme\_gray()@\texttt {theme\_gray()}}{343} +\indexentry{functions and methods!theme\_bw()@\texttt {theme\_bw()}}{344} +\indexentry{functions and methods!theme\_classic()@\texttt {theme\_classic()}}{344} +\indexentry{functions and methods!theme\_minimal()@\texttt {theme\_minimal()}}{344} +\indexentry{functions and methods!theme\_linedraw()@\texttt {theme\_linedraw()}}{344} +\indexentry{functions and methods!theme\_light()@\texttt {theme\_light()}}{344} +\indexentry{functions and methods!theme\_dark()@\texttt {theme\_dark()}}{344} +\indexentry{functions and methods!theme\_void()@\texttt {theme\_void()}}{344} +\indexentry{functions and methods!theme\_gray()@\texttt {theme\_gray()}}{344} +\indexentry{functions and methods!theme\_set()@\texttt {theme\_set()}}{344} +\indexentry{functions and methods!theme\_set()@\texttt {theme\_set()}}{344} +\indexentry{functions and methods!theme\_bw()@\texttt {theme\_bw()}}{344} +\indexentry{functions and methods!theme\_classic()@\texttt {theme\_classic()}}{344} +\indexentry{functions and methods!theme()@\texttt {theme()}}{345} +\indexentry{functions and methods!rel()@\texttt {rel()}}{345} +\indexentry{functions and methods!theme\_gray()@\texttt {theme\_gray()}}{347} +\indexentry{functions and methods!theme()@\texttt {theme()}}{347} +\indexentry{operators!+@\texttt {+}}{348} +\indexentry{operators!|@\texttt {|}}{348} +\indexentry{operators!/@\texttt {/}}{348} +\indexentry{operators!+@\texttt {+}}{348} +\indexentry{operators!|@\texttt {|}}{348} +\indexentry{operators!/@\texttt {/}}{348} +\indexentry{functions and methods!expression()@\texttt {expression()}}{349} \indexentry{functions and methods!geom\_text()@\texttt {geom\_text()}}{349} \indexentry{functions and methods!geom\_label()@\texttt {geom\_label()}}{349} -\indexentry{functions and methods!geom\_bar()@\texttt {geom\_bar()}}{349} -\indexentry{functions and methods!geom\_col()@\texttt {geom\_col()}}{349} -\indexentry{functions and methods!geom\_area()@\texttt {geom\_area()}}{349} -\indexentry{functions and methods!rgb()@\texttt {rgb()}}{351} -\indexentry{functions and methods!hcl()@\texttt {hcl()}}{351} -\indexentry{functions and methods!scale\_color\_continuous()@\texttt {scale\_color\_continuous()}}{351} -\indexentry{functions and methods!scale\_color\_gradient()@\texttt {scale\_color\_gradient()}}{351} -\indexentry{functions and methods!scale\_color\_gradient2()@\texttt {scale\_color\_gradient2()}}{351} -\indexentry{functions and methods!scale\_color\_gradientn()@\texttt {scale\_color\_gradientn()}}{351} -\indexentry{functions and methods!scale\_color\_date()@\texttt {scale\_color\_date()}}{351} -\indexentry{functions and methods!scale\_color\_datetime()@\texttt {scale\_color\_datetime()}}{351} -\indexentry{functions and methods!scale\_color\_viridis\_c()@\texttt {scale\_color\_viridis\_c()}}{351} -\indexentry{functions and methods!scale\_color\_distiller()@\texttt {scale\_color\_distiller()}}{351} -\indexentry{functions and methods!scale\_color\_discrete()@\texttt {scale\_color\_discrete()}}{351} -\indexentry{functions and methods!scale\_color\_hue()@\texttt {scale\_color\_hue()}}{351} -\indexentry{functions and methods!scale\_color\_gray()@\texttt {scale\_color\_gray()}}{351} -\indexentry{functions and methods!scale\_color\_viridis\_d()@\texttt {scale\_color\_viridis\_d()}}{352} -\indexentry{functions and methods!scale\_color\_brewer()@\texttt {scale\_color\_brewer()}}{352} -\indexentry{functions and methods!scale\_color\_gradient()@\texttt {scale\_color\_gradient()}}{352} -\indexentry{functions and methods!scale\_color\_binned()@\texttt {scale\_color\_binned()}}{352} -\indexentry{functions and methods!scale\_color\_identity()@\texttt {scale\_color\_identity()}}{353} -\indexentry{functions and methods!scale\_fill\_identity()@\texttt {scale\_fill\_identity()}}{353} -\indexentry{functions and methods!annotate()@\texttt {annotate()}}{353} -\indexentry{functions and methods!annotate()@\texttt {annotate()}}{353} -\indexentry{functions and methods!annotate()@\texttt {annotate()}}{354} -\indexentry{functions and methods!annotate()@\texttt {annotate()}}{354} -\indexentry{functions and methods!annotation\_custom()@\texttt {annotation\_custom()}}{354} -\indexentry{functions and methods!ggplotGrob()@\texttt {ggplotGrob()}}{354} -\indexentry{functions and methods!annotate()@\texttt {annotate()}}{356} -\indexentry{functions and methods!geom\_vline()@\texttt {geom\_vline()}}{356} -\indexentry{functions and methods!geom\_hline()@\texttt {geom\_hline()}}{356} -\indexentry{functions and methods!coord\_polar()@\texttt {coord\_polar()}}{356} -\indexentry{functions and methods!coord\_polar()@\texttt {coord\_polar()}}{356} -\indexentry{functions and methods!stat\_bin()@\texttt {stat\_bin()}}{356} -\indexentry{functions and methods!stat\_density()@\texttt {stat\_density()}}{357} -\indexentry{functions and methods!stat\_bin()@\texttt {stat\_bin()}}{357} -\indexentry{functions and methods!geom\_polygon()@\texttt {geom\_polygon()}}{357} -\indexentry{functions and methods!geom\_bar()@\texttt {geom\_bar()}}{357} -\indexentry{functions and methods!facet\_wrap()@\texttt {facet\_wrap()}}{357} -\indexentry{functions and methods!geom\_bar()@\texttt {geom\_bar()}}{358} -\indexentry{functions and methods!theme\_gray()@\texttt {theme\_gray()}}{359} -\indexentry{functions and methods!theme\_bw()@\texttt {theme\_bw()}}{359} -\indexentry{functions and methods!theme\_gray()@\texttt {theme\_gray()}}{359} -\indexentry{functions and methods!theme\_bw()@\texttt {theme\_bw()}}{360} -\indexentry{functions and methods!theme\_classic()@\texttt {theme\_classic()}}{360} -\indexentry{functions and methods!theme\_minimal()@\texttt {theme\_minimal()}}{360} -\indexentry{functions and methods!theme\_linedraw()@\texttt {theme\_linedraw()}}{360} -\indexentry{functions and methods!theme\_light()@\texttt {theme\_light()}}{360} -\indexentry{functions and methods!theme\_dark()@\texttt {theme\_dark()}}{360} -\indexentry{functions and methods!theme\_void()@\texttt {theme\_void()}}{360} -\indexentry{functions and methods!theme\_gray()@\texttt {theme\_gray()}}{360} -\indexentry{functions and methods!theme\_set()@\texttt {theme\_set()}}{360} -\indexentry{functions and methods!theme\_set()@\texttt {theme\_set()}}{360} -\indexentry{functions and methods!theme\_bw()@\texttt {theme\_bw()}}{361} -\indexentry{functions and methods!theme\_classic()@\texttt {theme\_classic()}}{361} -\indexentry{functions and methods!theme()@\texttt {theme()}}{362} -\indexentry{functions and methods!rel()@\texttt {rel()}}{362} -\indexentry{functions and methods!theme\_gray()@\texttt {theme\_gray()}}{363} -\indexentry{functions and methods!theme()@\texttt {theme()}}{363} -\indexentry{operators!+@\texttt {+}}{364} -\indexentry{operators!|@\texttt {|}}{364} -\indexentry{operators!/@\texttt {/}}{364} -\indexentry{operators!+@\texttt {+}}{364} -\indexentry{operators!|@\texttt {|}}{364} -\indexentry{operators!/@\texttt {/}}{364} -\indexentry{functions and methods!expression()@\texttt {expression()}}{366} -\indexentry{functions and methods!geom\_text()@\texttt {geom\_text()}}{366} -\indexentry{functions and methods!geom\_label()@\texttt {geom\_label()}}{366} -\indexentry{functions and methods!labs()@\texttt {labs()}}{366} -\indexentry{functions and methods!geom\_text()@\texttt {geom\_text()}}{366} -\indexentry{functions and methods!paste()@\texttt {paste()}}{366} -\indexentry{functions and methods!expression()@\texttt {expression()}}{366} -\indexentry{functions and methods!parse()@\texttt {parse()}}{367} -\indexentry{functions and methods!expression()@\texttt {expression()}}{367} -\indexentry{functions and methods!parse()@\texttt {parse()}}{367} -\indexentry{functions and methods!parse()@\texttt {parse()}}{367} -\indexentry{functions and methods!expression()@\texttt {expression()}}{367} -\indexentry{functions and methods!parse()@\texttt {parse()}}{367} -\indexentry{functions and methods!expression()@\texttt {expression()}}{368} -\indexentry{functions and methods!parse()@\texttt {parse()}}{368} -\indexentry{functions and methods!plain()@\texttt {plain()}}{368} -\indexentry{functions and methods!italic()@\texttt {italic()}}{368} -\indexentry{functions and methods!bold()@\texttt {bold()}}{368} -\indexentry{functions and methods!bolditalic()@\texttt {bolditalic()}}{368} -\indexentry{functions and methods!expression()@\texttt {expression()}}{368} -\indexentry{functions and methods!parse()@\texttt {parse()}}{368} -\indexentry{functions and methods!expression()@\texttt {expression()}}{368} -\indexentry{functions and methods!ggplot()@\texttt {ggplot()}}{368} -\indexentry{functions and methods!paste()@\texttt {paste()}}{369} -\indexentry{functions and methods!format()@\texttt {format()}}{369} -\indexentry{functions and methods!sprintf()@\texttt {sprintf()}}{369} -\indexentry{functions and methods!strftime()@\texttt {strftime()}}{369} -\indexentry{functions and methods!sprintf()@\texttt {sprintf()}}{369} -\indexentry{functions and methods!format()@\texttt {format()}}{369} -\indexentry{functions and methods!sprintf()@\texttt {sprintf()}}{369} -\indexentry{functions and methods!strftime()@\texttt {strftime()}}{369} -\indexentry{functions and methods!bquote()@\texttt {bquote()}}{369} -\indexentry{functions and methods!bquote()@\texttt {bquote()}}{369} -\indexentry{functions and methods!substitute()@\texttt {substitute()}}{370} -\indexentry{functions and methods!shell()@\texttt {shell()}}{378} -\indexentry{functions and methods!system()@\texttt {system()}}{378} -\indexentry{functions and methods!basename()@\texttt {basename()}}{378} -\indexentry{functions and methods!dirname()@\texttt {dirname()}}{378} -\indexentry{functions and methods!getwd()@\texttt {getwd()}}{378} -\indexentry{functions and methods!setwd()@\texttt {setwd()}}{378} -\indexentry{functions and methods!setwd()@\texttt {setwd()}}{378} -\indexentry{functions and methods!list.files()@\texttt {list.files()}}{379} -\indexentry{functions and methods!dir()@\texttt {dir()}}{379} -\indexentry{functions and methods!list.dirs()@\texttt {list.dirs()}}{379} -\indexentry{functions and methods!list.dirs()@\texttt {list.dirs()}}{379} -\indexentry{functions and methods!dir()@\texttt {dir()}}{379} -\indexentry{functions and methods!file.path()@\texttt {file.path()}}{380} -\indexentry{functions and methods!readLines()@\texttt {readLines()}}{380} -\indexentry{functions and methods!tools:::showNonASCIIfile()@\texttt {tools:::showNonASCIIfile()}}{382} -\indexentry{functions and methods!read.csv()@\texttt {read.csv()}}{382} -\indexentry{functions and methods!write.csv()@\texttt {write.csv()}}{382} -\indexentry{functions and methods!read.csv2()@\texttt {read.csv2()}}{383} -\indexentry{functions and methods!read.csv()@\texttt {read.csv()}}{383} -\indexentry{functions and methods!read.csv2()@\texttt {read.csv2()}}{384} -\indexentry{functions and methods!write.csv2()@\texttt {write.csv2()}}{384} -\indexentry{functions and methods!read.table()@\texttt {read.table()}}{384} -\indexentry{functions and methods!read.csv()@\texttt {read.csv()}}{384} -\indexentry{functions and methods!read.table()@\texttt {read.table()}}{384} -\indexentry{functions and methods!read.fwf()@\texttt {read.fwf()}}{385} -\indexentry{functions and methods!read.fortran()@\texttt {read.fortran()}}{385} -\indexentry{functions and methods!read.fwf()@\texttt {read.fwf()}}{385} -\indexentry{functions and methods!read.table()@\texttt {read.table()}}{385} -\indexentry{functions and methods!read.csv()@\texttt {read.csv()}}{386} -\indexentry{functions and methods!read.table()@\texttt {read.table()}}{386} -\indexentry{functions and methods!read.csv()@\texttt {read.csv()}}{386} -\indexentry{functions and methods!read.table()@\texttt {read.table()}}{386} -\indexentry{functions and methods!read.table()@\texttt {read.table()}}{386} -\indexentry{functions and methods!read.csv2()@\texttt {read.csv2()}}{386} -\indexentry{functions and methods!write.csv()@\texttt {write.csv()}}{386} -\indexentry{functions and methods!write.csv2()@\texttt {write.csv2()}}{386} -\indexentry{functions and methods!write.table()@\texttt {write.table()}}{386} -\indexentry{functions and methods!read.csv()@\texttt {read.csv()}}{386} -\indexentry{functions and methods!cat()@\texttt {cat()}}{386} -\indexentry{functions and methods!read\_csv()@\texttt {read\_csv()}}{387} -\indexentry{functions and methods!read.csv()@\texttt {read.csv()}}{387} -\indexentry{functions and methods!read.table()@\texttt {read.table()}}{387} +\indexentry{functions and methods!labs()@\texttt {labs()}}{350} +\indexentry{functions and methods!geom\_text()@\texttt {geom\_text()}}{350} +\indexentry{functions and methods!paste()@\texttt {paste()}}{350} +\indexentry{functions and methods!expression()@\texttt {expression()}}{350} +\indexentry{functions and methods!parse()@\texttt {parse()}}{351} +\indexentry{functions and methods!expression()@\texttt {expression()}}{351} +\indexentry{functions and methods!parse()@\texttt {parse()}}{351} +\indexentry{functions and methods!parse()@\texttt {parse()}}{351} +\indexentry{functions and methods!expression()@\texttt {expression()}}{351} +\indexentry{functions and methods!parse()@\texttt {parse()}}{351} +\indexentry{functions and methods!expression()@\texttt {expression()}}{351} +\indexentry{functions and methods!parse()@\texttt {parse()}}{351} +\indexentry{functions and methods!plain()@\texttt {plain()}}{351} +\indexentry{functions and methods!italic()@\texttt {italic()}}{351} +\indexentry{functions and methods!bold()@\texttt {bold()}}{351} +\indexentry{functions and methods!bolditalic()@\texttt {bolditalic()}}{351} +\indexentry{functions and methods!expression()@\texttt {expression()}}{352} +\indexentry{functions and methods!parse()@\texttt {parse()}}{352} +\indexentry{functions and methods!expression()@\texttt {expression()}}{352} +\indexentry{functions and methods!ggplot()@\texttt {ggplot()}}{352} +\indexentry{functions and methods!paste()@\texttt {paste()}}{352} +\indexentry{functions and methods!format()@\texttt {format()}}{352} +\indexentry{functions and methods!sprintf()@\texttt {sprintf()}}{352} +\indexentry{functions and methods!strftime()@\texttt {strftime()}}{352} +\indexentry{functions and methods!sprintf()@\texttt {sprintf()}}{353} +\indexentry{functions and methods!format()@\texttt {format()}}{353} +\indexentry{functions and methods!sprintf()@\texttt {sprintf()}}{353} +\indexentry{functions and methods!strftime()@\texttt {strftime()}}{353} +\indexentry{functions and methods!bquote()@\texttt {bquote()}}{353} +\indexentry{functions and methods!bquote()@\texttt {bquote()}}{353} +\indexentry{functions and methods!substitute()@\texttt {substitute()}}{353} +\indexentry{functions and methods!shell()@\texttt {shell()}}{361} +\indexentry{functions and methods!system()@\texttt {system()}}{361} +\indexentry{functions and methods!basename()@\texttt {basename()}}{361} +\indexentry{functions and methods!dirname()@\texttt {dirname()}}{362} +\indexentry{functions and methods!getwd()@\texttt {getwd()}}{362} +\indexentry{functions and methods!setwd()@\texttt {setwd()}}{362} +\indexentry{functions and methods!setwd()@\texttt {setwd()}}{362} +\indexentry{functions and methods!list.files()@\texttt {list.files()}}{363} +\indexentry{functions and methods!dir()@\texttt {dir()}}{363} +\indexentry{functions and methods!list.dirs()@\texttt {list.dirs()}}{363} +\indexentry{functions and methods!list.dirs()@\texttt {list.dirs()}}{363} +\indexentry{functions and methods!dir()@\texttt {dir()}}{363} +\indexentry{functions and methods!file.path()@\texttt {file.path()}}{363} +\indexentry{functions and methods!readLines()@\texttt {readLines()}}{364} +\indexentry{functions and methods!tools:::showNonASCIIfile()@\texttt {tools:::showNonASCIIfile()}}{366} +\indexentry{functions and methods!read.csv()@\texttt {read.csv()}}{366} +\indexentry{functions and methods!write.csv()@\texttt {write.csv()}}{366} +\indexentry{functions and methods!read.csv2()@\texttt {read.csv2()}}{367} +\indexentry{functions and methods!read.csv()@\texttt {read.csv()}}{367} +\indexentry{functions and methods!read.csv2()@\texttt {read.csv2()}}{368} +\indexentry{functions and methods!write.csv2()@\texttt {write.csv2()}}{368} +\indexentry{functions and methods!read.table()@\texttt {read.table()}}{368} +\indexentry{functions and methods!read.csv()@\texttt {read.csv()}}{368} +\indexentry{functions and methods!read.table()@\texttt {read.table()}}{368} +\indexentry{functions and methods!read.fwf()@\texttt {read.fwf()}}{368} +\indexentry{functions and methods!read.fortran()@\texttt {read.fortran()}}{368} +\indexentry{functions and methods!read.fwf()@\texttt {read.fwf()}}{368} +\indexentry{functions and methods!read.table()@\texttt {read.table()}}{369} +\indexentry{functions and methods!read.csv()@\texttt {read.csv()}}{369} +\indexentry{functions and methods!read.table()@\texttt {read.table()}}{369} +\indexentry{functions and methods!read.csv()@\texttt {read.csv()}}{369} +\indexentry{functions and methods!read.table()@\texttt {read.table()}}{369} +\indexentry{functions and methods!read.table()@\texttt {read.table()}}{369} +\indexentry{functions and methods!read.csv2()@\texttt {read.csv2()}}{369} +\indexentry{functions and methods!write.csv()@\texttt {write.csv()}}{369} +\indexentry{functions and methods!write.csv2()@\texttt {write.csv2()}}{369} +\indexentry{functions and methods!write.table()@\texttt {write.table()}}{369} +\indexentry{functions and methods!read.csv()@\texttt {read.csv()}}{369} +\indexentry{functions and methods!cat()@\texttt {cat()}}{369} +\indexentry{functions and methods!read\_csv()@\texttt {read\_csv()}}{370} +\indexentry{functions and methods!read.csv()@\texttt {read.csv()}}{370} +\indexentry{functions and methods!read.table()@\texttt {read.table()}}{370} +\indexentry{classes and modes!tibble@\texttt {tibble}}{370} +\indexentry{classes and modes!data.frame@\texttt {data.frame}}{370} +\indexentry{functions and methods!read\_table2()@\texttt {read\_table2()}}{370} +\indexentry{functions and methods!read\_table2()@\texttt {read\_table2()}}{370} +\indexentry{functions and methods!read\_table2()@\texttt {read\_table2()}}{371} +\indexentry{functions and methods!read.table()@\texttt {read.table()}}{371} +\indexentry{functions and methods!read\_table()@\texttt {read\_table()}}{371} +\indexentry{functions and methods!read\_table2()@\texttt {read\_table2()}}{371} +\indexentry{functions and methods!read\_table()@\texttt {read\_table()}}{371} +\indexentry{functions and methods!read\_delim()@\texttt {read\_delim()}}{372} +\indexentry{functions and methods!read\_table()@\texttt {read\_table()}}{372} +\indexentry{functions and methods!read\_tsv()@\texttt {read\_tsv()}}{372} +\indexentry{functions and methods!read\_fwf()@\texttt {read\_fwf()}}{372} +\indexentry{functions and methods!read.fortran()@\texttt {read.fortran()}}{372} +\indexentry{functions and methods!write\_csv()@\texttt {write\_csv()}}{374} +\indexentry{functions and methods!write\_csv2()@\texttt {write\_csv2()}}{374} +\indexentry{functions and methods!write\_tsv()@\texttt {write\_tsv()}}{374} +\indexentry{functions and methods!write\_delim()@\texttt {write\_delim()}}{374} +\indexentry{functions and methods!write\_excel\_csv()@\texttt {write\_excel\_csv()}}{374} +\indexentry{functions and methods!write\_excel\_csv()@\texttt {write\_excel\_csv()}}{374} +\indexentry{functions and methods!write\_csv()@\texttt {write\_csv()}}{374} +\indexentry{functions and methods!read\_lines()@\texttt {read\_lines()}}{374} +\indexentry{functions and methods!write\_lines()@\texttt {write\_lines()}}{374} +\indexentry{functions and methods!read\_file()@\texttt {read\_file()}}{374} +\indexentry{functions and methods!write\_file()@\texttt {write\_file()}}{374} +\indexentry{functions and methods!read\_file()@\texttt {read\_file()}}{374} +\indexentry{functions and methods!write\_file()@\texttt {write\_file()}}{374} +\indexentry{functions and methods!write\_file()@\texttt {write\_file()}}{375} +\indexentry{functions and methods!read\_csv()@\texttt {read\_csv()}}{375} +\indexentry{functions and methods!read\_html()@\texttt {read\_html()}}{375} +\indexentry{functions and methods!xml\_find\_all()@\texttt {xml\_find\_all()}}{378} +\indexentry{functions and methods!xml\_text()@\texttt {xml\_text()}}{378} +\indexentry{functions and methods!excel\_sheets()@\texttt {excel\_sheets()}}{381} +\indexentry{functions and methods!read\_excel()@\texttt {read\_excel()}}{381} +\indexentry{functions and methods!read.xlsx()@\texttt {read.xlsx()}}{382} +\indexentry{functions and methods!write.xlsx()@\texttt {write.xlsx()}}{382} +\indexentry{functions and methods!read\_ods()@\texttt {read\_ods()}}{383} +\indexentry{functions and methods!write\_ods()@\texttt {write\_ods()}}{384} +\indexentry{functions and methods!read.spss()@\texttt {read.spss()}}{384} +\indexentry{functions and methods!read.systat()@\texttt {read.systat()}}{384} +\indexentry{classes and modes!tibble@\texttt {tibble}}{385} +\indexentry{functions and methods!read\_sav()@\texttt {read\_sav()}}{385} +\indexentry{functions and methods!names()@\texttt {names()}}{386} +\indexentry{functions and methods!str()@\texttt {str()}}{386} +\indexentry{functions and methods!class()@\texttt {class()}}{386} +\indexentry{functions and methods!attributes()@\texttt {attributes()}}{386} +\indexentry{functions and methods!mode()@\texttt {mode()}}{386} +\indexentry{functions and methods!dim()@\texttt {dim()}}{386} +\indexentry{functions and methods!dimnames()@\texttt {dimnames()}}{386} +\indexentry{functions and methods!nrow()@\texttt {nrow()}}{386} +\indexentry{functions and methods!ncol()@\texttt {ncol()}}{386} +\indexentry{functions and methods!print()@\texttt {print()}}{386} +\indexentry{functions and methods!nc\_open()@\texttt {nc\_open()}}{386} +\indexentry{functions and methods!str()@\texttt {str()}}{387} +\indexentry{functions and methods!ncvar\_get()@\texttt {ncvar\_get()}}{387} \indexentry{classes and modes!tibble@\texttt {tibble}}{387} -\indexentry{classes and modes!data.frame@\texttt {data.frame}}{387} -\indexentry{functions and methods!read\_table2()@\texttt {read\_table2()}}{387} -\indexentry{functions and methods!read\_table2()@\texttt {read\_table2()}}{387} -\indexentry{functions and methods!read\_table2()@\texttt {read\_table2()}}{388} -\indexentry{functions and methods!read.table()@\texttt {read.table()}}{388} -\indexentry{functions and methods!read\_table()@\texttt {read\_table()}}{388} -\indexentry{functions and methods!read\_table2()@\texttt {read\_table2()}}{388} -\indexentry{functions and methods!read\_table()@\texttt {read\_table()}}{388} -\indexentry{functions and methods!read\_delim()@\texttt {read\_delim()}}{389} -\indexentry{functions and methods!read\_table()@\texttt {read\_table()}}{389} -\indexentry{functions and methods!read\_tsv()@\texttt {read\_tsv()}}{389} -\indexentry{functions and methods!read\_fwf()@\texttt {read\_fwf()}}{389} -\indexentry{functions and methods!read.fortran()@\texttt {read.fortran()}}{389} -\indexentry{functions and methods!write\_csv()@\texttt {write\_csv()}}{391} -\indexentry{functions and methods!write\_csv2()@\texttt {write\_csv2()}}{391} -\indexentry{functions and methods!write\_tsv()@\texttt {write\_tsv()}}{391} -\indexentry{functions and methods!write\_delim()@\texttt {write\_delim()}}{391} -\indexentry{functions and methods!write\_excel\_csv()@\texttt {write\_excel\_csv()}}{391} -\indexentry{functions and methods!write\_excel\_csv()@\texttt {write\_excel\_csv()}}{391} -\indexentry{functions and methods!write\_csv()@\texttt {write\_csv()}}{391} -\indexentry{functions and methods!read\_lines()@\texttt {read\_lines()}}{391} -\indexentry{functions and methods!write\_lines()@\texttt {write\_lines()}}{391} -\indexentry{functions and methods!read\_file()@\texttt {read\_file()}}{391} -\indexentry{functions and methods!write\_file()@\texttt {write\_file()}}{391} -\indexentry{functions and methods!read\_file()@\texttt {read\_file()}}{391} -\indexentry{functions and methods!write\_file()@\texttt {write\_file()}}{391} -\indexentry{functions and methods!write\_file()@\texttt {write\_file()}}{392} -\indexentry{functions and methods!read\_csv()@\texttt {read\_csv()}}{392} -\indexentry{functions and methods!read\_html()@\texttt {read\_html()}}{392} -\indexentry{functions and methods!xml\_find\_all()@\texttt {xml\_find\_all()}}{395} -\indexentry{functions and methods!xml\_text()@\texttt {xml\_text()}}{395} -\indexentry{functions and methods!excel\_sheets()@\texttt {excel\_sheets()}}{398} -\indexentry{functions and methods!read\_excel()@\texttt {read\_excel()}}{398} -\indexentry{functions and methods!read.xlsx()@\texttt {read.xlsx()}}{399} -\indexentry{functions and methods!write.xlsx()@\texttt {write.xlsx()}}{400} -\indexentry{functions and methods!read\_ods()@\texttt {read\_ods()}}{401} -\indexentry{functions and methods!write\_ods()@\texttt {write\_ods()}}{401} -\indexentry{functions and methods!read.spss()@\texttt {read.spss()}}{401} -\indexentry{functions and methods!read.systat()@\texttt {read.systat()}}{402} -\indexentry{classes and modes!tibble@\texttt {tibble}}{402} -\indexentry{functions and methods!read\_sav()@\texttt {read\_sav()}}{402} -\indexentry{functions and methods!names()@\texttt {names()}}{403} -\indexentry{functions and methods!str()@\texttt {str()}}{403} -\indexentry{functions and methods!class()@\texttt {class()}}{403} -\indexentry{functions and methods!attributes()@\texttt {attributes()}}{403} -\indexentry{functions and methods!mode()@\texttt {mode()}}{403} -\indexentry{functions and methods!dim()@\texttt {dim()}}{403} -\indexentry{functions and methods!dimnames()@\texttt {dimnames()}}{403} -\indexentry{functions and methods!nrow()@\texttt {nrow()}}{403} -\indexentry{functions and methods!ncol()@\texttt {ncol()}}{403} -\indexentry{functions and methods!print()@\texttt {print()}}{404} -\indexentry{functions and methods!nc\_open()@\texttt {nc\_open()}}{404} -\indexentry{functions and methods!str()@\texttt {str()}}{404} -\indexentry{functions and methods!ncvar\_get()@\texttt {ncvar\_get()}}{404} -\indexentry{classes and modes!tibble@\texttt {tibble}}{405} -\indexentry{functions and methods!download.file()@\texttt {download.file()}}{408} -\indexentry{functions and methods!fromJSON()@\texttt {fromJSON()}}{409} +\indexentry{functions and methods!download.file()@\texttt {download.file()}}{390} +\indexentry{functions and methods!fromJSON()@\texttt {fromJSON()}}{392} diff --git a/rcatsidx.ilg b/rcatsidx.ilg index b42c24a0..9b3c8c4c 100644 --- a/rcatsidx.ilg +++ b/rcatsidx.ilg @@ -1,33 +1,33 @@ This is makeindex, version 2.16 [MiKTeX 23.5]. Scanning input file rcatsidx.idx.... -!! Input index error (file = rcatsidx.idx, line = 149): +!! Input index error (file = rcatsidx.idx, line = 153): -- Extra `!' at position 23 of first argument. -!! Input index error (file = rcatsidx.idx, line = 163): +!! Input index error (file = rcatsidx.idx, line = 167): -- Extra `!' at position 24 of first argument. -!! Input index error (file = rcatsidx.idx, line = 170): +!! Input index error (file = rcatsidx.idx, line = 174): -- Extra `!' at position 23 of first argument. -!! Input index error (file = rcatsidx.idx, line = 173): +!! Input index error (file = rcatsidx.idx, line = 177): -- Extra `@' at position 12 of first argument. -!! Input index error (file = rcatsidx.idx, line = 814): +!! Input index error (file = rcatsidx.idx, line = 820): -- Incomplete first argument (premature LFD). -!! Input index error (file = rcatsidx.idx, line = 820): +!! Input index error (file = rcatsidx.idx, line = 826): -- Incomplete first argument (premature LFD). -!! Input index error (file = rcatsidx.idx, line = 917): +!! Input index error (file = rcatsidx.idx, line = 923): -- Incomplete first argument (premature LFD). . -!! Input index error (file = rcatsidx.idx, line = 1273): +!! Input index error (file = rcatsidx.idx, line = 1279): -- Extra `@' at position 12 of first argument. -!! Input index error (file = rcatsidx.idx, line = 1276): +!! Input index error (file = rcatsidx.idx, line = 1282): -- Extra `@' at position 12 of first argument. -done (1402 entries accepted, 9 rejected). -Sorting entries..............done (15625 comparisons). -Generating output file rcatsidx.ind.....done (598 lines written, 0 warnings). +done (1408 entries accepted, 9 rejected). +Sorting entries..............done (16012 comparisons). +Generating output file rcatsidx.ind.....done (602 lines written, 0 warnings). Output written in rcatsidx.ind. Transcript written in rcatsidx.ilg. diff --git a/rcatsidx.ind b/rcatsidx.ind index a2883dab..f78f8cb4 100644 --- a/rcatsidx.ind +++ b/rcatsidx.ind @@ -1,598 +1,602 @@ \begin{theindex} \item classes and modes - \subitem \texttt {array}, 72, 110 - \subitem \texttt {call}, 222 - \subitem \texttt {character}, 40, 44, 59, 63 - \subitem \texttt {data.frame}, 96, 97, 249, 387 - \subitem \texttt {double}, 27, 35--37, 70 - \subitem \texttt {factor}, 80 - \subitem \texttt {formula}, 222, 223 - \subitem \texttt {integer}, 27, 33, 35--37, 70 - \subitem \texttt {list}, 88, 96, 170, 224, 249 - \subitem \texttt {lm}, 170 - \subitem \texttt {logical}, 49, 54, 64, 138, 140 - \subitem \texttt {matrix}, 72, 77, 110, 249 - \subitem \texttt {numeric}, 24, 27, 59, 70, 140, 223 - \subitem \texttt {tbl}, 249 - \subitem \texttt {tbl\_df}, 250 - \subitem \texttt {tibble}, 250, 251, 261, 387, 402, 405 + \subitem \texttt {array}, 69, 104 + \subitem \texttt {call}, 213 + \subitem \texttt {character}, 39, 43, 56, 60 + \subitem \texttt {complex}, 38 + \subitem \texttt {data.frame}, 91, 93, 237, 370 + \subitem \texttt {double}, 27, 34--36, 67 + \subitem \texttt {factor}, 77 + \subitem \texttt {formula}, 213, 214 + \subitem \texttt {integer}, 27, 33, 34, 36, 67 + \subitem \texttt {list}, 84, 92, 163, 215, 237 + \subitem \texttt {lm}, 163 + \subitem \texttt {logical}, 47, 48, 52, 62, 133, 135 + \subitem \texttt {matrix}, 69, 73, 75, 104, 237 + \subitem \texttt {numeric}, 24, 27, 56, 57, 67, 135, 214 + \subitem \texttt {POSIXct}, 39 + \subitem \texttt {POSIXlt}, 39 + \subitem \texttt {tbl}, 237 + \subitem \texttt {tbl\_df}, 238 + \subitem \texttt {tibble}, 238, 248, 370, 385, 387 \subitem \texttt {vector}, 28 \item constant and special values \subitem \texttt {-Inf}, 32, 36 - \subitem \texttt {.Machine\$double.eps}, 36 - \subitem \texttt {.Machine\$double.max}, 36 - \subitem \texttt {.Machine\$double.min}, 36 - \subitem \texttt {.Machine\$double.neg.eps}, 36 - \subitem \texttt {.Machine\$double.xmax}, 36 - \subitem \texttt {.Machine\$integer.max}, 36 + \subitem \texttt {.Machine\$double.eps}, 35 + \subitem \texttt {.Machine\$double.max}, 35 + \subitem \texttt {.Machine\$double.min}, 35 + \subitem \texttt {.Machine\$double.neg.eps}, 35 + \subitem \texttt {.Machine\$double.xmax}, 35 + \subitem \texttt {.Machine\$integer.max}, 35 \subitem \texttt {Inf}, 32, 36 - \subitem \texttt {LETTERS}, 65 - \subitem \texttt {letters}, 65 - \subitem \texttt {month.abb}, 65 - \subitem \texttt {month.name}, 65 - \subitem \texttt {NA}, 32, 33, 64 - \subitem \texttt {NA\_character\_}, 64 - \subitem \texttt {NA\_real\_}, 64 + \subitem \texttt {LETTERS}, 63 + \subitem \texttt {letters}, 63 + \subitem \texttt {month.abb}, 63 + \subitem \texttt {month.name}, 63 + \subitem \texttt {NA}, 32, 33, 62 + \subitem \texttt {NA\_character\_}, 62 + \subitem \texttt {NA\_real\_}, 62 \subitem \texttt {NaN}, 32 \subitem \texttt {pi}, 25 \item control of execution - \subitem \texttt {apply()}, 155, 156, 159--161 - \subitem \texttt {break()}, 149, 151, 152 - \subitem \texttt {for}, 145, 147, 149, 152 - \subitem \texttt {if ()}, 136, 140 - \subitem \texttt {if () \ldots \ else}, 136, 140 - \subitem \texttt {if()}, 137 - \subitem \texttt {ifelse()}, 143--145 - \subitem \texttt {lapply()}, 106, 155--157 - \subitem \texttt {next()}, 149 - \subitem \texttt {repeat}, 145, 149, 151, 152 - \subitem \texttt {return()}, 170 - \subitem \texttt {sapply()}, 106, 155--157 - \subitem \texttt {switch()}, 140--143 - \subitem \texttt {vapply()}, 106, 156--159 - \subitem \texttt {while}, 145, 149--152 + \subitem \texttt {apply()}, 149, 151, 154, 155 + \subitem \texttt {break()}, 144, 146, 147 + \subitem \texttt {for}, 140--142, 144, 147 + \subitem \texttt {if ()}, 132, 135 + \subitem \texttt {if () \ldots \ else}, 132, 135 + \subitem \texttt {if()}, 133 + \subitem \texttt {ifelse()}, 138--140 + \subitem \texttt {lapply()}, 101, 149, 151, 152 + \subitem \texttt {next()}, 144 + \subitem \texttt {repeat}, 140, 144, 146, 147 + \subitem \texttt {return()}, 164 + \subitem \texttt {sapply()}, 101, 149, 151, 152 + \subitem \texttt {switch()}, 135--138 + \subitem \texttt {vapply()}, 101, 151, 153 + \subitem \texttt {while}, 140, 144, 146, 147 \indexspace \item data objects - \subitem \texttt {cars}, 198 - \subitem \texttt {eurodist}, 239, 241 - \subitem \texttt {InsectSprays}, 206, 215 - \subitem \texttt {iris}, 235, 259 - \subitem \texttt {mtcars}, 279 - \subitem \texttt {nottem}, 233 - \subitem \texttt {npk}, 227 - \subitem \texttt {Orange}, 298 - \subitem \texttt {Puromycin}, 218, 319 + \subitem \texttt {cars}, 189 + \subitem \texttt {eurodist}, 229, 231 + \subitem \texttt {InsectSprays}, 197, 206 + \subitem \texttt {iris}, 226, 247 + \subitem \texttt {mtcars}, 265 + \subitem \texttt {nottem}, 223 + \subitem \texttt {npk}, 218 + \subitem \texttt {Orange}, 284 + \subitem \texttt {Puromycin}, 209, 304 \indexspace \item functions and methods - \subitem \texttt {abs()}, 39, 54 - \subitem \texttt {aes()}, 277, 288, 307 - \subitem \texttt {after\_scale()}, 289 - \subitem \texttt {after\_stat()}, 289, 290 - \subitem \texttt {aggregate()}, 107--109, 264 - \subitem \texttt {AIC()}, 197, 201 - \subitem \texttt {all()}, 50, 51 - \subitem \texttt {annotate()}, 312, 353, 354, 356 - \subitem \texttt {annotation\_custom()}, 312, 354 - \subitem \texttt {anova()}, 165, 196, 200--202, 204, 207, 209, 212, - 215 - \subitem \texttt {anti\_join()}, 268 - \subitem \texttt {any()}, 50, 52 - \subitem \texttt {aov()}, 207, 235 - \subitem \texttt {append()}, 29, 92 - \subitem \texttt {arrange()}, 262 - \subitem \texttt {array()}, 78 - \subitem \texttt {as.character()}, 62, 84 - \subitem \texttt {as.data.frame()}, 252 - \subitem \texttt {as.formula()}, 229 - \subitem \texttt {as.integer()}, 62 - \subitem \texttt {as.logical()}, 62 - \subitem \texttt {as.matrix()}, 73 - \subitem \texttt {as.numeric()}, 62, 63, 84 - \subitem \texttt {as.ts()}, 232 - \subitem \texttt {as.vector()}, 78 - \subitem \texttt {as\_tibble()}, 250 - \subitem \texttt {assign()}, 134, 162, 163, 170, 258 - \subitem \texttt {attach()}, 105 - \subitem \texttt {attr()}, 115, 116 - \subitem \texttt {attr()<-}, 115 - \subitem \texttt {attributes()}, 115, 195, 403 - \subitem \texttt {basename()}, 378 - \subitem \texttt {BIC()}, 197, 201 - \subitem \texttt {biplot()}, 238 - \subitem \texttt {bold()}, 368 - \subitem \texttt {bolditalic()}, 368 - \subitem \texttt {boxplot.stats()}, 188 - \subitem \texttt {bquote()}, 369 - \subitem \texttt {c()}, 28, 88, 92 - \subitem \texttt {cat()}, 41, 42, 386 - \subitem \texttt {ceiling()}, 38, 39 - \subitem \texttt {charmatch()}, 57 - \subitem \texttt {citation()}, 181 - \subitem \texttt {class()}, 60, 97, 195, 252, 403 - \subitem \texttt {coef()}, 197, 201, 207 - \subitem \texttt {coefficients()}, 201 - \subitem \texttt {comment()}, 114 - \subitem \texttt {comment()<-}, 114 - \subitem \texttt {contains()}, 263 - \subitem \texttt {contr.helmert()}, 208, 209 - \subitem \texttt {contr.poly()}, 209 - \subitem \texttt {contr.SAS()}, 208, 209 - \subitem \texttt {contr.sum()}, 209 - \subitem \texttt {contr.treatment()}, 208, 209 - \subitem \texttt {coord\_cartesian()}, 323 - \subitem \texttt {coord\_fixed()}, 323 - \subitem \texttt {coord\_flip()}, 328, 332 - \subitem \texttt {coord\_polar()}, 356 - \subitem \texttt {cor()}, 194--196 - \subitem \texttt {cor.test()}, 195, 196 + \subitem \texttt {abs()}, 38, 52 + \subitem \texttt {aes()}, 263, 273, 293 + \subitem \texttt {after\_scale()}, 275 + \subitem \texttt {after\_stat()}, 275, 276 + \subitem \texttt {aggregate()}, 102, 103, 251 + \subitem \texttt {AIC()}, 188, 192 + \subitem \texttt {all()}, 48--50 + \subitem \texttt {annotate()}, 297, 337, 338, 340 + \subitem \texttt {annotation\_custom()}, 297, 338 + \subitem \texttt {anova()}, 159, 188, 192, 194, 196, 198, 201, 203, + 206 + \subitem \texttt {anti\_join()}, 255 + \subitem \texttt {any()}, 48--50 + \subitem \texttt {aov()}, 198, 226 + \subitem \texttt {append()}, 29, 87 + \subitem \texttt {arrange()}, 249 + \subitem \texttt {array()}, 74 + \subitem \texttt {as.character()}, 59, 60, 80 + \subitem \texttt {as.data.frame()}, 240 + \subitem \texttt {as.formula()}, 219, 220 + \subitem \texttt {as.integer()}, 60 + \subitem \texttt {as.logical()}, 59, 60 + \subitem \texttt {as.matrix()}, 70 + \subitem \texttt {as.numeric()}, 59, 60, 80 + \subitem \texttt {as.ts()}, 222 + \subitem \texttt {as.vector()}, 75 + \subitem \texttt {as\_tibble()}, 238 + \subitem \texttt {assign()}, 130, 157, 158, 164, 245 + \subitem \texttt {attach()}, 100 + \subitem \texttt {attr()}, 109, 111 + \subitem \texttt {attr()<-}, 109 + \subitem \texttt {attributes()}, 109, 187, 386 + \subitem \texttt {basename()}, 361 + \subitem \texttt {BIC()}, 188, 192 + \subitem \texttt {biplot()}, 228 + \subitem \texttt {bold()}, 351 + \subitem \texttt {bolditalic()}, 351 + \subitem \texttt {boxplot.stats()}, 180 + \subitem \texttt {bquote()}, 353 + \subitem \texttt {c()}, 28, 84, 87 + \subitem \texttt {cat()}, 40, 41, 369 + \subitem \texttt {ceiling()}, 37, 38 + \subitem \texttt {charmatch()}, 55 + \subitem \texttt {citation()}, 174 + \subitem \texttt {class()}, 57, 93, 187, 240, 386 + \subitem \texttt {coef()}, 188, 192, 198 + \subitem \texttt {coefficients()}, 192 + \subitem \texttt {comment()}, 109 + \subitem \texttt {comment()<-}, 109 + \subitem \texttt {contains()}, 250 + \subitem \texttt {contr.helmert()}, 199, 201 + \subitem \texttt {contr.poly()}, 201 + \subitem \texttt {contr.SAS()}, 199, 201 + \subitem \texttt {contr.sum()}, 200 + \subitem \texttt {contr.treatment()}, 199, 201 + \subitem \texttt {coord\_cartesian()}, 308 + \subitem \texttt {coord\_fixed()}, 308 + \subitem \texttt {coord\_flip()}, 313, 316 + \subitem \texttt {coord\_polar()}, 340 + \subitem \texttt {cor()}, 186, 187 + \subitem \texttt {cor.test()}, 186, 187 \subitem \texttt {cos()}, 25 - \subitem \texttt {crossprod()}, 80 - \subitem \texttt {cummax()}, 162 - \subitem \texttt {cummin()}, 162 - \subitem \texttt {cumprod()}, 162 - \subitem \texttt {cumsum()}, 162 - \subitem \texttt {cutree()}, 242 - \subitem \texttt {data()}, 117 - \subitem \texttt {data.frame()}, 96, 103, 250, 254 - \subitem \texttt {dbinom()}, 189 - \subitem \texttt {dchisq()}, 189 - \subitem \texttt {decompose()}, 234 - \subitem \texttt {df()}, 189 - \subitem \texttt {diag()}, 80 - \subitem \texttt {diff()}, 162 - \subitem \texttt {diffinv()}, 162 - \subitem \texttt {dim()}, 73, 77, 115, 116, 403 - \subitem \texttt {dim()<-}, 115 - \subitem \texttt {dimnames()}, 403 - \subitem \texttt {dir()}, 379 - \subitem \texttt {dirname()}, 378 - \subitem \texttt {dist}, 241 - \subitem \texttt {dlnorm()}, 189 - \subitem \texttt {dmultinom()}, 189 - \subitem \texttt {dnorm()}, 189 - \subitem \texttt {do.call()}, 164, 165 + \subitem \texttt {cummax()}, 156 + \subitem \texttt {cummin()}, 156 + \subitem \texttt {cumprod()}, 156 + \subitem \texttt {cumsum()}, 156 + \subitem \texttt {cutree()}, 231 + \subitem \texttt {data()}, 111 + \subitem \texttt {data.frame()}, 92, 99, 238, 241 + \subitem \texttt {dbinom()}, 181 + \subitem \texttt {dchisq()}, 181 + \subitem \texttt {decompose()}, 224 + \subitem \texttt {df()}, 181 + \subitem \texttt {diag()}, 76 + \subitem \texttt {diff()}, 156 + \subitem \texttt {diffinv()}, 156 + \subitem \texttt {dim()}, 69, 73, 109, 111, 386 + \subitem \texttt {dim()<-}, 109 + \subitem \texttt {dimnames()}, 386 + \subitem \texttt {dir()}, 363 + \subitem \texttt {dirname()}, 362 + \subitem \texttt {dist}, 231 + \subitem \texttt {dlnorm()}, 181 + \subitem \texttt {dmultinom()}, 181 + \subitem \texttt {dnorm()}, 181 + \subitem \texttt {do.call()}, 158, 159 \subitem \texttt {double()}, 27 - \subitem \texttt {download.file()}, 408 - \subitem \texttt {dpois()}, 189 - \subitem \texttt {dt()}, 189 - \subitem \texttt {dunif()}, 189 - \subitem \texttt {duplicated()}, 58 - \subitem \texttt {edit()}, 114 - \subitem \texttt {effects()}, 201 - \subitem \texttt {ends\_with()}, 263 - \subitem \texttt {environment()}, 171 - \subitem \texttt {excel\_sheets()}, 398 + \subitem \texttt {download.file()}, 390 + \subitem \texttt {dpois()}, 181 + \subitem \texttt {dt()}, 181 + \subitem \texttt {dunif()}, 181 + \subitem \texttt {duplicated()}, 56 + \subitem \texttt {edit()}, 108 + \subitem \texttt {effects()}, 192 + \subitem \texttt {ends\_with()}, 250 + \subitem \texttt {environment()}, 164 + \subitem \texttt {excel\_sheets()}, 381 \subitem \texttt {exp()}, 25 - \subitem \texttt {expand\_limits()}, 341 - \subitem \texttt {expression()}, 366--368 - \subitem \texttt {facet\_grid()}, 334 - \subitem \texttt {facet\_wrap()}, 334, 337, 357 - \subitem \texttt {factor()}, 80--82, 84, 207 - \subitem \texttt {factorial()}, 162 - \subitem \texttt {file.path()}, 380 - \subitem \texttt {filter()}, 263 - \subitem \texttt {fitted()}, 197, 201 - \subitem \texttt {fitted.values()}, 201 - \subitem \texttt {fix()}, 114 - \subitem \texttt {format()}, 63, 64, 369 - \subitem \texttt {fromJSON()}, 409 - \subitem \texttt {full\_join()}, 266 - \subitem \texttt {function()}, 169 - \subitem \texttt {gather()}, 260 - \subitem \texttt {geom\_abline()}, 300 - \subitem \texttt {geom\_area()}, 300, 349 - \subitem \texttt {geom\_bar()}, 301, 321, 349, 357, 358 - \subitem \texttt {geom\_bin2d()}, 323 - \subitem \texttt {geom\_boxplot()}, 325 - \subitem \texttt {geom\_col()}, 301, 303, 349 - \subitem \texttt {geom\_curve()}, 299 - \subitem \texttt {geom\_density()}, 324 - \subitem \texttt {geom\_density\_2d()}, 325 - \subitem \texttt {geom\_errorbar()}, 298, 317 - \subitem \texttt {geom\_grob()}, 309, 312 - \subitem \texttt {geom\_grob\_npc()}, 313 - \subitem \texttt {geom\_hex()}, 323 - \subitem \texttt {geom\_histogram()}, 321, 323 - \subitem \texttt {geom\_hline()}, 300, 349, 356 - \subitem \texttt {geom\_label()}, 305, 306, 308, 349, 366 - \subitem \texttt {geom\_label\_npc()}, 313 - \subitem \texttt {geom\_label\_repel()}, 308 - \subitem \texttt {geom\_line()}, 275, 281, 291, 298--300, 328, 349 - \subitem \texttt {geom\_linerange()}, 317 - \subitem \texttt {geom\_path()}, 299, 300 - \subitem \texttt {geom\_plot()}, 309, 311 - \subitem \texttt {geom\_plot\_npc()}, 313 - \subitem \texttt {geom\_point()}, 275, 279, 281, 290--292, 294, - 297, 300, 306, 328, 333, 334, 349 - \subitem \texttt {geom\_point\_s()}, 295 - \subitem \texttt {geom\_pointrange()}, 298, 315, 317 - \subitem \texttt {geom\_polygon()}, 300, 357 - \subitem \texttt {geom\_range()}, 298 - \subitem \texttt {geom\_rect()}, 304 - \subitem \texttt {geom\_ribbon()}, 300 - \subitem \texttt {geom\_rug()}, 298 - \subitem \texttt {geom\_segment()}, 299 - \subitem \texttt {geom\_sf()}, 304 - \subitem \texttt {geom\_sf\_label()}, 304 - \subitem \texttt {geom\_sf\_text()}, 304 - \subitem \texttt {geom\_smooth()}, 278, 318, 331 - \subitem \texttt {geom\_spoke()}, 299 - \subitem \texttt {geom\_step()}, 299 - \subitem \texttt {geom\_table()}, 309--311 - \subitem \texttt {geom\_table\_npc()}, 313 - \subitem \texttt {geom\_text()}, 305--309, 349, 366 - \subitem \texttt {geom\_text\_npc()}, 313 - \subitem \texttt {geom\_text\_repel()}, 308 - \subitem \texttt {geom\_tile()}, 303, 304 - \subitem \texttt {geom\_violin()}, 326 - \subitem \texttt {geom\_vline()}, 300, 349, 356 - \subitem \texttt {get()}, 163 - \subitem \texttt {getAnywhere()}, 185 - \subitem \texttt {getCall()}, 201, 210 - \subitem \texttt {getElement()}, 135 - \subitem \texttt {getwd()}, 378 - \subitem \texttt {ggplot()}, 125, 285, 288, 368 - \subitem \texttt {ggplotGrob()}, 354 - \subitem \texttt {ggtitle()}, 338, 339 - \subitem \texttt {gl()}, 81 - \subitem \texttt {glm()}, 214 - \subitem \texttt {grep()}, 45, 46 - \subitem \texttt {grepl()}, 45, 46 - \subitem \texttt {group\_by()}, 264, 266 - \subitem \texttt {gsub()}, 45, 46 - \subitem \texttt {hcl()}, 351 - \subitem \texttt {hclust()}, 241, 242 - \subitem \texttt {help()}, 17 - \subitem \texttt {I()}, 102, 103, 200, 225, 254 - \subitem \texttt {identical()}, 252 - \subitem \texttt {inherits()}, 60, 228 - \subitem \texttt {inner\_join()}, 266 - \subitem \texttt {install.packages()}, 180 - \subitem \texttt {inverse.rle()}, 162 - \subitem \texttt {is.array()}, 77 - \subitem \texttt {is.character()}, 60 - \subitem \texttt {is.element()}, 57 - \subitem \texttt {is.empty.model()}, 223, 224 - \subitem \texttt {is.logical()}, 60 - \subitem \texttt {is.matrix()}, 73 - \subitem \texttt {is.na()}, 33, 51 - \subitem \texttt {is.numeric()}, 27, 60 - \subitem \texttt {is\_tibble()}, 250 - \subitem \texttt {italic()}, 368 - \subitem \texttt {label\_bquote()}, 336 - \subitem \texttt {label\_date()}, 344 - \subitem \texttt {label\_date\_short()}, 344 - \subitem \texttt {label\_time()}, 344 - \subitem \texttt {labs()}, 339, 366 - \subitem \texttt {left\_join()}, 266 - \subitem \texttt {length()}, 28, 63, 73, 188, 224 - \subitem \texttt {levels()}, 83, 84, 115 - \subitem \texttt {levels()<-}, 115 - \subitem \texttt {library}, 183 - \subitem \texttt {library()}, 180, 181, 183 - \subitem \texttt {list()}, 88, 184 - \subitem \texttt {list.dirs()}, 379 - \subitem \texttt {list.files()}, 379 - \subitem \texttt {lm()}, 116, 170, 197, 200, 205, 207, 235, 318 - \subitem \texttt {load()}, 118 - \subitem \texttt {loess}, 221 - \subitem \texttt {log()}, 25, 225 + \subitem \texttt {expand\_limits()}, 326 + \subitem \texttt {expression()}, 349--352 + \subitem \texttt {facet\_grid()}, 319 + \subitem \texttt {facet\_wrap()}, 319, 322, 341 + \subitem \texttt {factor()}, 77--80, 199 + \subitem \texttt {factorial()}, 156 + \subitem \texttt {file.path()}, 363 + \subitem \texttt {filter()}, 250 + \subitem \texttt {fitted()}, 188, 192 + \subitem \texttt {fitted.values()}, 192 + \subitem \texttt {fix()}, 108 + \subitem \texttt {format()}, 60, 61, 352, 353 + \subitem \texttt {fromJSON()}, 392 + \subitem \texttt {full\_join()}, 253 + \subitem \texttt {function()}, 163 + \subitem \texttt {gather()}, 248 + \subitem \texttt {geom\_abline()}, 286 + \subitem \texttt {geom\_area()}, 285, 333 + \subitem \texttt {geom\_bar()}, 287, 306, 333, 341, 342 + \subitem \texttt {geom\_bin2d()}, 308 + \subitem \texttt {geom\_boxplot()}, 310 + \subitem \texttt {geom\_col()}, 286--288, 333 + \subitem \texttt {geom\_curve()}, 284 + \subitem \texttt {geom\_density()}, 309 + \subitem \texttt {geom\_density\_2d()}, 310 + \subitem \texttt {geom\_errorbar()}, 283, 302 + \subitem \texttt {geom\_grob()}, 294, 297 + \subitem \texttt {geom\_grob\_npc()}, 298 + \subitem \texttt {geom\_hex()}, 308 + \subitem \texttt {geom\_histogram()}, 306, 308 + \subitem \texttt {geom\_hline()}, 286, 333, 340 + \subitem \texttt {geom\_label()}, 290--294, 333, 349 + \subitem \texttt {geom\_label\_npc()}, 298 + \subitem \texttt {geom\_label\_repel()}, 294 + \subitem \texttt {geom\_line()}, 261, 267, 277, 284, 285, 313, 333 + \subitem \texttt {geom\_linerange()}, 302 + \subitem \texttt {geom\_path()}, 284, 285 + \subitem \texttt {geom\_plot()}, 294, 296 + \subitem \texttt {geom\_plot\_npc()}, 298 + \subitem \texttt {geom\_point()}, 261, 266, 267, 276, 277, 280, + 282, 285, 292, 313, 318, 319, 333 + \subitem \texttt {geom\_point\_s()}, 281 + \subitem \texttt {geom\_pointrange()}, 283, 301, 302 + \subitem \texttt {geom\_polygon()}, 285, 341 + \subitem \texttt {geom\_range()}, 283 + \subitem \texttt {geom\_rect()}, 289 + \subitem \texttt {geom\_ribbon()}, 285 + \subitem \texttt {geom\_rug()}, 283 + \subitem \texttt {geom\_segment()}, 284, 285 + \subitem \texttt {geom\_sf()}, 290 + \subitem \texttt {geom\_sf\_label()}, 290 + \subitem \texttt {geom\_sf\_text()}, 290 + \subitem \texttt {geom\_smooth()}, 264, 303, 316 + \subitem \texttt {geom\_spoke()}, 285 + \subitem \texttt {geom\_step()}, 285 + \subitem \texttt {geom\_table()}, 294--296 + \subitem \texttt {geom\_table\_npc()}, 298 + \subitem \texttt {geom\_text()}, 290--295, 333, 349, 350 + \subitem \texttt {geom\_text\_npc()}, 298 + \subitem \texttt {geom\_text\_repel()}, 294 + \subitem \texttt {geom\_tile()}, 288, 289 + \subitem \texttt {geom\_violin()}, 311 + \subitem \texttt {geom\_vline()}, 286, 333, 340 + \subitem \texttt {get()}, 157, 158 + \subitem \texttt {getAnywhere()}, 178 + \subitem \texttt {getCall()}, 192, 202 + \subitem \texttt {getElement()}, 131 + \subitem \texttt {getwd()}, 362 + \subitem \texttt {ggplot()}, 121, 271, 273, 274, 352 + \subitem \texttt {ggplotGrob()}, 338 + \subitem \texttt {ggtitle()}, 323, 324 + \subitem \texttt {gl()}, 78 + \subitem \texttt {glm()}, 206 + \subitem \texttt {grep()}, 44, 45 + \subitem \texttt {grepl()}, 44, 45 + \subitem \texttt {group\_by()}, 251, 252 + \subitem \texttt {gsub()}, 44, 45 + \subitem \texttt {hcl()}, 335 + \subitem \texttt {hclust()}, 231, 232 + \subitem \texttt {help()}, 16, 17 + \subitem \texttt {I()}, 97, 98, 191, 215, 241 + \subitem \texttt {identical()}, 240 + \subitem \texttt {inherits()}, 57, 219 + \subitem \texttt {inner\_join()}, 253 + \subitem \texttt {install.packages()}, 173, 174 + \subitem \texttt {inverse.rle()}, 156 + \subitem \texttt {is.array()}, 73 + \subitem \texttt {is.character()}, 58 + \subitem \texttt {is.element()}, 54, 55 + \subitem \texttt {is.empty.model()}, 214, 215 + \subitem \texttt {is.logical()}, 58 + \subitem \texttt {is.matrix()}, 69 + \subitem \texttt {is.na()}, 33, 50 + \subitem \texttt {is.numeric()}, 27, 58 + \subitem \texttt {is\_tibble()}, 238 + \subitem \texttt {italic()}, 351 + \subitem \texttt {label\_bquote()}, 321 + \subitem \texttt {label\_date()}, 328 + \subitem \texttt {label\_date\_short()}, 328 + \subitem \texttt {label\_time()}, 328 + \subitem \texttt {labs()}, 324, 350 + \subitem \texttt {left\_join()}, 253 + \subitem \texttt {length()}, 28, 60, 69, 180, 214, 215 + \subitem \texttt {levels()}, 79, 80, 109 + \subitem \texttt {levels()<-}, 109 + \subitem \texttt {library}, 177 + \subitem \texttt {library()}, 173, 174, 176 + \subitem \texttt {list()}, 84, 177 + \subitem \texttt {list.dirs()}, 363 + \subitem \texttt {list.files()}, 363 + \subitem \texttt {lm()}, 111, 163, 188, 189, 191, 196, 198, 226, + 303 + \subitem \texttt {load()}, 112 + \subitem \texttt {loess}, 212 + \subitem \texttt {log()}, 25, 215 \subitem \texttt {log10()}, 25 \subitem \texttt {log2()}, 25 - \subitem \texttt {ls()}, 39, 118 - \subitem \texttt {mad()}, 188 - \subitem \texttt {manova()}, 235 - \subitem \texttt {match()}, 57 - \subitem \texttt {matches()}, 263 - \subitem \texttt {matrix()}, 73, 194 - \subitem \texttt {max()}, 162, 188 - \subitem \texttt {mean()}, 159, 162, 188 - \subitem \texttt {median()}, 188 - \subitem \texttt {methods()}, 176 - \subitem \texttt {mget()}, 163 - \subitem \texttt {min()}, 162, 188 - \subitem \texttt {mode()}, 188, 403 - \subitem \texttt {model.frame()}, 201 - \subitem \texttt {model.matrix()}, 201 - \subitem \texttt {mutate()}, 261, 262 - \subitem \texttt {my\_print()}, 177 - \subitem \texttt {names()}, 115, 264, 403 - \subitem \texttt {names()<-}, 115, 264 - \subitem \texttt {nc\_open()}, 404 - \subitem \texttt {nchar()}, 41 - \subitem \texttt {ncol()}, 73, 403 - \subitem \texttt {ncvar\_get()}, 404 - \subitem \texttt {nlme}, 218 - \subitem \texttt {nls}, 218 - \subitem \texttt {nls()}, 217, 218 - \subitem \texttt {nrow()}, 73, 403 - \subitem \texttt {numeric()}, 27, 31, 32 - \subitem \texttt {objects()}, 39 - \subitem \texttt {on.exit()}, 155 - \subitem \texttt {options()}, 251 - \subitem \texttt {order()}, 71, 85, 110, 262 - \subitem \texttt {ordered()}, 80, 207 - \subitem \texttt {parse()}, 367, 368 - \subitem \texttt {paste()}, 42, 43, 307, 366, 369 - \subitem \texttt {pbinom()}, 189 - \subitem \texttt {pchisq()}, 189 - \subitem \texttt {pf()}, 189 - \subitem \texttt {pivot\_longer()}, 259--261 - \subitem \texttt {pivot\_wider()}, 260, 261 - \subitem \texttt {plain()}, 368 - \subitem \texttt {plnorm()}, 189 - \subitem \texttt {plot()}, 119--121, 175, 196, 216, 222, 259 - \subitem \texttt {pmatch()}, 57 - \subitem \texttt {pmultinom()}, 189 - \subitem \texttt {pnorm()}, 189, 191 - \subitem \texttt {poly()}, 200 - \subitem \texttt {position\_identity()}, 275, 294 - \subitem \texttt {position\_jitter()}, 294 - \subitem \texttt {position\_stack()}, 275 - \subitem \texttt {ppois()}, 189 - \subitem \texttt {prcomp()}, 237, 239 - \subitem \texttt {predict()}, 197, 205 - \subitem \texttt {pretty\_breaks()}, 342 - \subitem \texttt {print()}, 17, 41, 63, 94, 125, 148, 168, 195, - 251, 257, 404 - \subitem \texttt {prod()}, 162 - \subitem \texttt {pt()}, 189, 191, 205 - \subitem \texttt {punif()}, 189 - \subitem \texttt {qbinom()}, 189 - \subitem \texttt {qchisq()}, 189 - \subitem \texttt {qf()}, 189 - \subitem \texttt {qlnorm()}, 189 - \subitem \texttt {qmultinom()}, 189 - \subitem \texttt {qnorm()}, 189, 191 - \subitem \texttt {qpois()}, 189 - \subitem \texttt {qt()}, 189 - \subitem \texttt {quantile()}, 188 - \subitem \texttt {qunif()}, 189 - \subitem \texttt {range()}, 188 - \subitem \texttt {rbinom()}, 189 - \subitem \texttt {rchisq()}, 189 - \subitem \texttt {read.csv()}, 382--384, 386, 387 - \subitem \texttt {read.csv2()}, 383, 384, 386 - \subitem \texttt {read.fortran()}, 385, 389 - \subitem \texttt {read.fwf()}, 385 - \subitem \texttt {read.spss()}, 401 - \subitem \texttt {read.systat()}, 402 - \subitem \texttt {read.table()}, 250, 384--388 - \subitem \texttt {read.xlsx()}, 399 - \subitem \texttt {read\_csv()}, 387, 392 - \subitem \texttt {read\_delim()}, 389 - \subitem \texttt {read\_excel()}, 398 - \subitem \texttt {read\_file()}, 391 - \subitem \texttt {read\_fwf()}, 389 - \subitem \texttt {read\_html()}, 392 - \subitem \texttt {read\_lines()}, 391 - \subitem \texttt {read\_ods()}, 401 - \subitem \texttt {read\_sav()}, 402 - \subitem \texttt {read\_table()}, 388, 389 - \subitem \texttt {read\_table2()}, 387, 388 - \subitem \texttt {read\_tsv()}, 389 - \subitem \texttt {readLines()}, 380 - \subitem \texttt {readRDS()}, 119 - \subitem \texttt {rel()}, 362 - \subitem \texttt {remove()}, 39 - \subitem \texttt {rename()}, 264 - \subitem \texttt {reorder()}, 85 - \subitem \texttt {rep()}, 30, 43 - \subitem \texttt {reshape()}, 114 - \subitem \texttt {resid()}, 201 - \subitem \texttt {residuals()}, 197, 201 - \subitem \texttt {rev()}, 84 - \subitem \texttt {rf()}, 189 - \subitem \texttt {rgb()}, 351 - \subitem \texttt {right\_join()}, 266 - \subitem \texttt {rle()}, 71, 162 - \subitem \texttt {rlm()}, 290 - \subitem \texttt {rlnorm()}, 189 + \subitem \texttt {ls()}, 39, 112, 113 + \subitem \texttt {mad()}, 180 + \subitem \texttt {manova()}, 226 + \subitem \texttt {match()}, 55 + \subitem \texttt {matches()}, 250 + \subitem \texttt {matrix()}, 70, 186 + \subitem \texttt {max()}, 156, 180 + \subitem \texttt {mean()}, 154, 156, 180 + \subitem \texttt {median()}, 180 + \subitem \texttt {methods()}, 169 + \subitem \texttt {mget()}, 157, 158 + \subitem \texttt {min()}, 156, 180 + \subitem \texttt {mode()}, 180, 386 + \subitem \texttt {model.frame()}, 192 + \subitem \texttt {model.matrix()}, 192 + \subitem \texttt {mutate()}, 249 + \subitem \texttt {my\_print()}, 170 + \subitem \texttt {names()}, 109, 251, 386 + \subitem \texttt {names()<-}, 109, 251 + \subitem \texttt {nc\_open()}, 386 + \subitem \texttt {nchar()}, 40 + \subitem \texttt {ncol()}, 69, 386 + \subitem \texttt {ncvar\_get()}, 387 + \subitem \texttt {nlme}, 209 + \subitem \texttt {nls}, 209 + \subitem \texttt {nls()}, 208, 209 + \subitem \texttt {nrow()}, 69, 386 + \subitem \texttt {numeric()}, 27, 31 + \subitem \texttt {objects()}, 38, 39 + \subitem \texttt {on.exit()}, 150 + \subitem \texttt {options()}, 239 + \subitem \texttt {order()}, 68, 82, 104, 105, 249 + \subitem \texttt {ordered()}, 77, 199 + \subitem \texttt {parse()}, 351, 352 + \subitem \texttt {paste()}, 42, 292, 350, 352 + \subitem \texttt {pbinom()}, 181 + \subitem \texttt {pchisq()}, 181 + \subitem \texttt {pf()}, 181 + \subitem \texttt {pivot\_longer()}, 247, 248 + \subitem \texttt {pivot\_wider()}, 247, 248 + \subitem \texttt {plain()}, 351 + \subitem \texttt {plnorm()}, 181 + \subitem \texttt {plot()}, 113--115, 169, 188, 207, 213, 246 + \subitem \texttt {pmatch()}, 55 + \subitem \texttt {pmultinom()}, 181 + \subitem \texttt {pnorm()}, 181, 183 + \subitem \texttt {poly()}, 191 + \subitem \texttt {position\_identity()}, 261, 280 + \subitem \texttt {position\_jitter()}, 280 + \subitem \texttt {position\_stack()}, 261 + \subitem \texttt {ppois()}, 181 + \subitem \texttt {prcomp()}, 227, 229 + \subitem \texttt {predict()}, 188, 197 + \subitem \texttt {pretty\_breaks()}, 327 + \subitem \texttt {print()}, 18, 40, 61, 89, 121, 143, 162, 187, + 239, 244, 386 + \subitem \texttt {prod()}, 156 + \subitem \texttt {pt()}, 181, 183, 196 + \subitem \texttt {punif()}, 181 + \subitem \texttt {qbinom()}, 181 + \subitem \texttt {qchisq()}, 181 + \subitem \texttt {qf()}, 181 + \subitem \texttt {qlnorm()}, 181 + \subitem \texttt {qmultinom()}, 181 + \subitem \texttt {qnorm()}, 181, 183 + \subitem \texttt {qpois()}, 181 + \subitem \texttt {qt()}, 181 + \subitem \texttt {quantile()}, 180 + \subitem \texttt {qunif()}, 181 + \subitem \texttt {range()}, 180 + \subitem \texttt {rbinom()}, 181 + \subitem \texttt {rchisq()}, 181 + \subitem \texttt {read.csv()}, 366--370 + \subitem \texttt {read.csv2()}, 367--369 + \subitem \texttt {read.fortran()}, 368, 372 + \subitem \texttt {read.fwf()}, 368 + \subitem \texttt {read.spss()}, 384 + \subitem \texttt {read.systat()}, 384 + \subitem \texttt {read.table()}, 238, 368--371 + \subitem \texttt {read.xlsx()}, 382 + \subitem \texttt {read\_csv()}, 370, 375 + \subitem \texttt {read\_delim()}, 372 + \subitem \texttt {read\_excel()}, 381 + \subitem \texttt {read\_file()}, 374 + \subitem \texttt {read\_fwf()}, 372 + \subitem \texttt {read\_html()}, 375 + \subitem \texttt {read\_lines()}, 374 + \subitem \texttt {read\_ods()}, 383 + \subitem \texttt {read\_sav()}, 385 + \subitem \texttt {read\_table()}, 371, 372 + \subitem \texttt {read\_table2()}, 370, 371 + \subitem \texttt {read\_tsv()}, 372 + \subitem \texttt {readLines()}, 364 + \subitem \texttt {readRDS()}, 113 + \subitem \texttt {rel()}, 345 + \subitem \texttt {remove()}, 38, 39 + \subitem \texttt {rename()}, 251 + \subitem \texttt {reorder()}, 81 + \subitem \texttt {rep()}, 29, 42 + \subitem \texttt {reshape()}, 108 + \subitem \texttt {resid()}, 192 + \subitem \texttt {residuals()}, 188, 192 + \subitem \texttt {rev()}, 81 + \subitem \texttt {rf()}, 181 + \subitem \texttt {rgb()}, 334 + \subitem \texttt {right\_join()}, 253 + \subitem \texttt {rle()}, 68, 156 + \subitem \texttt {rlm()}, 275 + \subitem \texttt {rlnorm()}, 181 \subitem \texttt {rm()}, 39 - \subitem \texttt {rmultinom()}, 189 - \subitem \texttt {rnorm()}, 189, 192, 194 - \subitem \texttt {round()}, 37 - \subitem \texttt {rpois()}, 189 - \subitem \texttt {rt()}, 189 - \subitem \texttt {runif()}, 189, 192 - \subitem \texttt {runmed()}, 162 - \subitem \texttt {sample()}, 194 - \subitem \texttt {save()}, 117 - \subitem \texttt {saveRDS()}, 119 - \subitem \texttt {scale\_color\_binned()}, 352 - \subitem \texttt {scale\_color\_brewer()}, 352 - \subitem \texttt {scale\_color\_continuous()}, 275, 351 - \subitem \texttt {scale\_color\_date()}, 351 - \subitem \texttt {scale\_color\_datetime()}, 351 - \subitem \texttt {scale\_color\_discrete()}, 338, 351 - \subitem \texttt {scale\_color\_distiller()}, 351 - \subitem \texttt {scale\_color\_gradient()}, 351, 352 - \subitem \texttt {scale\_color\_gradient2()}, 351 - \subitem \texttt {scale\_color\_gradientn()}, 351 - \subitem \texttt {scale\_color\_gray()}, 351 - \subitem \texttt {scale\_color\_hue()}, 351 - \subitem \texttt {scale\_color\_identity()}, 338, 353 - \subitem \texttt {scale\_color\_viridis\_c()}, 351 - \subitem \texttt {scale\_color\_viridis\_d()}, 352 - \subitem \texttt {scale\_fill\_identity()}, 353 - \subitem \texttt {scale\_x\_continuous()}, 344 - \subitem \texttt {scale\_x\_discrete()}, 348 - \subitem \texttt {scale\_x\_log10()}, 344 - \subitem \texttt {scale\_x\_reverse()}, 344 - \subitem \texttt {scale\_y\_continuous()}, 344 - \subitem \texttt {scale\_y\_log()}, 344 - \subitem \texttt {scale\_y\_log10()}, 344, 345 - \subitem \texttt {sd()}, 162, 188 - \subitem \texttt {search()}, 184 - \subitem \texttt {select()}, 263 - \subitem \texttt {SEM()}, 171, 172 - \subitem \texttt {semi\_join()}, 268 - \subitem \texttt {seq()}, 30, 149 - \subitem \texttt {set.seed()}, 192 - \subitem \texttt {setRepositories()}, 181 - \subitem \texttt {setwd()}, 378 - \subitem \texttt {shell()}, 378 + \subitem \texttt {rmultinom()}, 181 + \subitem \texttt {rnorm()}, 181, 184, 186 + \subitem \texttt {round()}, 36 + \subitem \texttt {rpois()}, 181 + \subitem \texttt {rt()}, 181 + \subitem \texttt {runif()}, 181, 184 + \subitem \texttt {runmed()}, 156 + \subitem \texttt {sample()}, 185 + \subitem \texttt {save()}, 112 + \subitem \texttt {saveRDS()}, 113 + \subitem \texttt {scale\_color\_binned()}, 336 + \subitem \texttt {scale\_color\_brewer()}, 335 + \subitem \texttt {scale\_color\_continuous()}, 261, 335 + \subitem \texttt {scale\_color\_date()}, 335 + \subitem \texttt {scale\_color\_datetime()}, 335 + \subitem \texttt {scale\_color\_discrete()}, 323, 335 + \subitem \texttt {scale\_color\_distiller()}, 335 + \subitem \texttt {scale\_color\_gradient()}, 335, 336 + \subitem \texttt {scale\_color\_gradient2()}, 335 + \subitem \texttt {scale\_color\_gradientn()}, 335 + \subitem \texttt {scale\_color\_gray()}, 335 + \subitem \texttt {scale\_color\_hue()}, 335 + \subitem \texttt {scale\_color\_identity()}, 323, 337 + \subitem \texttt {scale\_color\_viridis\_c()}, 335 + \subitem \texttt {scale\_color\_viridis\_d()}, 335 + \subitem \texttt {scale\_fill\_identity()}, 337 + \subitem \texttt {scale\_x\_continuous()}, 329 + \subitem \texttt {scale\_x\_discrete()}, 332 + \subitem \texttt {scale\_x\_log10()}, 329 + \subitem \texttt {scale\_x\_reverse()}, 329 + \subitem \texttt {scale\_y\_continuous()}, 329 + \subitem \texttt {scale\_y\_log()}, 329 + \subitem \texttt {scale\_y\_log10()}, 329 + \subitem \texttt {sd()}, 156, 180 + \subitem \texttt {search()}, 177 + \subitem \texttt {select()}, 250 + \subitem \texttt {SEM()}, 165 + \subitem \texttt {semi\_join()}, 255 + \subitem \texttt {seq()}, 29, 143 + \subitem \texttt {set.seed()}, 184 + \subitem \texttt {setRepositories()}, 174 + \subitem \texttt {setwd()}, 362 + \subitem \texttt {shell()}, 361 \subitem \texttt {signif()}, 37 \subitem \texttt {sin()}, 25 - \subitem \texttt {slice()}, 263 - \subitem \texttt {smooth.spline()}, 221 - \subitem \texttt {sort()}, 71, 85, 110, 262 - \subitem \texttt {source()}, 125 - \subitem \texttt {spline()}, 221 - \subitem \texttt {split()}, 107 - \subitem \texttt {spread()}, 260 - \subitem \texttt {sprintf()}, 63, 64, 176, 369 + \subitem \texttt {slice()}, 250 + \subitem \texttt {smooth.spline()}, 212 + \subitem \texttt {solve()}, 76 + \subitem \texttt {sort()}, 68, 82, 105, 249 + \subitem \texttt {source()}, 121 + \subitem \texttt {spline()}, 212 + \subitem \texttt {split()}, 102 + \subitem \texttt {spread()}, 248 + \subitem \texttt {sprintf()}, 60, 61, 170, 352, 353 \subitem \texttt {sqrt()}, 25 - \subitem \texttt {SSmicmen()}, 218, 319 - \subitem \texttt {stage()}, 289, 290 - \subitem \texttt {starts\_with()}, 263 - \subitem \texttt {stat()}, 289 - \subitem \texttt {stat\_bin()}, 321--323, 356, 357 - \subitem \texttt {stat\_bin2d()}, 323 - \subitem \texttt {stat\_bin\_hex()}, 323 - \subitem \texttt {stat\_boxplot()}, 325, 329 - \subitem \texttt {stat\_centroid()}, 333 - \subitem \texttt {stat\_count()}, 301, 321, 323 - \subitem \texttt {stat\_density()}, 329, 357 - \subitem \texttt {stat\_density\_2d()}, 324, 333 - \subitem \texttt {stat\_fit\_residuals()}, 290, 291 - \subitem \texttt {stat\_function()}, 314 - \subitem \texttt {stat\_histogram()}, 329 - \subitem \texttt {stat\_identity()}, 278 - \subitem \texttt {stat\_indentity()}, 277 - \subitem \texttt {stat\_poly\_line()}, 320, 332 - \subitem \texttt {stat\_sf()}, 304 - \subitem \texttt {stat\_smooth()}, 275, 278, 318--320, 328 - \subitem \texttt {stat\_summary()}, 275, 315--317, 329, 333, 334 - \subitem \texttt {stat\_summary\_2d()}, 333 - \subitem \texttt {stat\_summary\_xy()}, 333 - \subitem \texttt {step()}, 212, 214 - \subitem \texttt {stl()}, 234 - \subitem \texttt {str()}, 92, 94, 95, 115, 195, 202, 203, 403, 404 - \subitem \texttt {str\_extract()}, 262 - \subitem \texttt {strftime()}, 369 - \subitem \texttt {strptime()}, 348 - \subitem \texttt {strrep()}, 43 - \subitem \texttt {strsplit()}, 47 + \subitem \texttt {SSmicmen()}, 209, 305 + \subitem \texttt {stage()}, 275, 276 + \subitem \texttt {starts\_with()}, 250 + \subitem \texttt {stat()}, 275 + \subitem \texttt {stat\_bin()}, 306--308, 340, 341 + \subitem \texttt {stat\_bin2d()}, 308 + \subitem \texttt {stat\_bin\_hex()}, 308 + \subitem \texttt {stat\_boxplot()}, 310, 314 + \subitem \texttt {stat\_centroid()}, 318 + \subitem \texttt {stat\_count()}, 287, 306, 308 + \subitem \texttt {stat\_density()}, 314, 341 + \subitem \texttt {stat\_density\_2d()}, 309, 318 + \subitem \texttt {stat\_fit\_residuals()}, 276 + \subitem \texttt {stat\_function()}, 299 + \subitem \texttt {stat\_histogram()}, 314 + \subitem \texttt {stat\_identity()}, 264 + \subitem \texttt {stat\_indentity()}, 263 + \subitem \texttt {stat\_poly\_line()}, 305, 317 + \subitem \texttt {stat\_sf()}, 290 + \subitem \texttt {stat\_smooth()}, 261, 264, 303--305, 313 + \subitem \texttt {stat\_summary()}, 261, 300--302, 314, 318, 319 + \subitem \texttt {stat\_summary\_2d()}, 318 + \subitem \texttt {stat\_summary\_xy()}, 318 + \subitem \texttt {step()}, 203, 205 + \subitem \texttt {stl()}, 224, 225 + \subitem \texttt {str()}, 88--90, 109, 187, 193, 195, 386, 387 + \subitem \texttt {str\_extract()}, 249 + \subitem \texttt {strftime()}, 352, 353 + \subitem \texttt {strptime()}, 332 + \subitem \texttt {strrep()}, 42 + \subitem \texttt {strsplit()}, 46 \subitem \texttt {strtrim()}, 41 \subitem \texttt {strwrap()}, 41 - \subitem \texttt {sub()}, 45 - \subitem \texttt {subset()}, 103--105, 134, 247, 263 - \subitem \texttt {substitute()}, 370 - \subitem \texttt {substr()}, 44 - \subitem \texttt {substring()}, 44 - \subitem \texttt {sum()}, 162, 172 - \subitem \texttt {summarise()}, 264 - \subitem \texttt {summary()}, 106, 159, 188, 196, 198, 199, - 202--204, 207, 212, 234 - \subitem \texttt {switch()}, 140 - \subitem \texttt {system()}, 378 - \subitem \texttt {system.time()}, 152, 153 - \subitem \texttt {t()}, 79, 160 - \subitem \texttt {terms()}, 201, 227 - \subitem \texttt {theme()}, 362, 363 - \subitem \texttt {theme\_bw()}, 359--361 - \subitem \texttt {theme\_classic()}, 360, 361 - \subitem \texttt {theme\_dark()}, 360 - \subitem \texttt {theme\_gray()}, 359, 360, 363 - \subitem \texttt {theme\_light()}, 360 - \subitem \texttt {theme\_linedraw()}, 360 - \subitem \texttt {theme\_minimal()}, 360 - \subitem \texttt {theme\_set()}, 360 - \subitem \texttt {theme\_void()}, 360 - \subitem \texttt {tibble()}, 250, 253, 254, 262 - \subitem \texttt {tolower()}, 41, 349 - \subitem \texttt {tools:::showNonASCIIfile()}, 382 - \subitem \texttt {toupper()}, 41, 349 - \subitem \texttt {transmute()}, 261, 262 - \subitem \texttt {trimws()}, 43, 44 - \subitem \texttt {trunc()}, 38, 39, 62 - \subitem \texttt {ts()}, 232 - \subitem \texttt {ungroup()}, 266 - \subitem \texttt {unique()}, 58 - \subitem \texttt {unlink()}, 118 - \subitem \texttt {unlist()}, 78, 94, 95 - \subitem \texttt {unname()}, 95 - \subitem \texttt {unnest()}, 260 - \subitem \texttt {unsplit()}, 107 - \subitem \texttt {update()}, 210, 212, 214, 230 - \subitem \texttt {update.packages()}, 180 - \subitem \texttt {var()}, 162, 171, 188 - \subitem \texttt {vcov()}, 201 - \subitem \texttt {View()}, 114 - \subitem \texttt {while}, 151 - \subitem \texttt {with()}, 105 - \subitem \texttt {within()}, 134 - \subitem \texttt {write.csv()}, 382, 386 - \subitem \texttt {write.csv2()}, 384, 386 - \subitem \texttt {write.table()}, 386 - \subitem \texttt {write.xlsx()}, 400 - \subitem \texttt {write\_csv()}, 391 - \subitem \texttt {write\_csv2()}, 391 - \subitem \texttt {write\_delim()}, 391 - \subitem \texttt {write\_excel\_csv()}, 391 - \subitem \texttt {write\_file()}, 391, 392 - \subitem \texttt {write\_lines()}, 391 - \subitem \texttt {write\_ods()}, 401 - \subitem \texttt {write\_tsv()}, 391 - \subitem \texttt {xlab()}, 339 - \subitem \texttt {xlim()}, 315, 341, 342 - \subitem \texttt {xml\_find\_all()}, 395 - \subitem \texttt {xml\_text()}, 395 - \subitem \texttt {ylab()}, 339 - \subitem \texttt {ylim()}, 315, 341, 342 + \subitem \texttt {sub()}, 44 + \subitem \texttt {subset()}, 99, 100, 130, 235, 250 + \subitem \texttt {substitute()}, 353 + \subitem \texttt {substr()}, 43 + \subitem \texttt {substring()}, 43 + \subitem \texttt {sum()}, 156, 165 + \subitem \texttt {summarise()}, 251 + \subitem \texttt {summary()}, 101, 153, 180, 188, 190, 194--196, + 198, 204, 225 + \subitem \texttt {switch()}, 136 + \subitem \texttt {system()}, 361 + \subitem \texttt {system.time()}, 147, 148 + \subitem \texttt {t()}, 76, 155 + \subitem \texttt {terms()}, 192, 217 + \subitem \texttt {theme()}, 345, 347 + \subitem \texttt {theme\_bw()}, 343, 344 + \subitem \texttt {theme\_classic()}, 344 + \subitem \texttt {theme\_dark()}, 344 + \subitem \texttt {theme\_gray()}, 343, 344, 347 + \subitem \texttt {theme\_light()}, 344 + \subitem \texttt {theme\_linedraw()}, 344 + \subitem \texttt {theme\_minimal()}, 344 + \subitem \texttt {theme\_set()}, 344 + \subitem \texttt {theme\_void()}, 344 + \subitem \texttt {tibble()}, 238, 241, 249 + \subitem \texttt {tolower()}, 41, 333 + \subitem \texttt {tools:::showNonASCIIfile()}, 366 + \subitem \texttt {toupper()}, 41, 333 + \subitem \texttt {transmute()}, 249 + \subitem \texttt {trimws()}, 43 + \subitem \texttt {trunc()}, 37, 38, 60 + \subitem \texttt {ts()}, 222 + \subitem \texttt {ungroup()}, 253 + \subitem \texttt {unique()}, 55, 56 + \subitem \texttt {unlink()}, 113 + \subitem \texttt {unlist()}, 90 + \subitem \texttt {unname()}, 91 + \subitem \texttt {unnest()}, 247 + \subitem \texttt {unsplit()}, 102 + \subitem \texttt {update()}, 201--203, 205, 220 + \subitem \texttt {update.packages()}, 173 + \subitem \texttt {var()}, 156, 165, 180 + \subitem \texttt {vcov()}, 192 + \subitem \texttt {View()}, 108 + \subitem \texttt {while}, 145 + \subitem \texttt {with()}, 100 + \subitem \texttt {within()}, 130 + \subitem \texttt {write.csv()}, 366, 369 + \subitem \texttt {write.csv2()}, 368, 369 + \subitem \texttt {write.table()}, 369 + \subitem \texttt {write.xlsx()}, 382 + \subitem \texttt {write\_csv()}, 374 + \subitem \texttt {write\_csv2()}, 374 + \subitem \texttt {write\_delim()}, 374 + \subitem \texttt {write\_excel\_csv()}, 374 + \subitem \texttt {write\_file()}, 374, 375 + \subitem \texttt {write\_lines()}, 374 + \subitem \texttt {write\_ods()}, 384 + \subitem \texttt {write\_tsv()}, 374 + \subitem \texttt {xlab()}, 324 + \subitem \texttt {xlim()}, 300, 326, 327 + \subitem \texttt {xml\_find\_all()}, 378 + \subitem \texttt {xml\_text()}, 378 + \subitem \texttt {ylab()}, 324 + \subitem \texttt {ylim()}, 300, 326, 327 \indexspace \item names and their scope - \subitem \texttt {attach()}, 112, 113 - \subitem \texttt {detach()}, 112, 113, 183 - \subitem \texttt {exists()}, 178 - \subitem \texttt {transform()}, 111 - \subitem \texttt {with()}, 111--113 - \subitem \texttt {within()}, 111--113 + \subitem \texttt {attach()}, 107, 108 + \subitem \texttt {detach()}, 107, 108, 176 + \subitem \texttt {exists()}, 172 + \subitem \texttt {transform()}, 106 + \subitem \texttt {with()}, 106--108 + \subitem \texttt {within()}, 106--108 \indexspace \item operators - \subitem \texttt {*}, 24, 37 - \subitem \texttt {+}, 24, 39, 276, 364 - \subitem \texttt {-}, 24, 39 - \subitem \texttt {->}, 27, 133 - \subitem \texttt {/}, 24, 364 - \subitem \texttt {:}, 30 - \subitem \texttt {<}, 52 - \subitem \texttt {<-}, 26, 27, 69, 106, 133 - \subitem \texttt {<<-}, 170 - \subitem \texttt {<=}, 52 + \subitem \texttt {*}, 24, 36 + \subitem \texttt {+}, 24, 38, 262, 348 + \subitem \texttt {-}, 24, 38 + \subitem \texttt {->}, 27, 129 + \subitem \texttt {/}, 24, 348 + \subitem \texttt {:}, 29 + \subitem \texttt {<}, 50 + \subitem \texttt {<-}, 26, 27, 66, 101, 129 + \subitem \texttt {<<-}, 164 + \subitem \texttt {<=}, 50 \subitem \texttt {=}, 27 - \subitem \texttt {==}, 52, 266 - \subitem \texttt {>}, 52 - \subitem \texttt {>=}, 52 - \subitem \texttt {[ , ]}, 247, 266 - \subitem \texttt {[ ]}, 89, 90, 93, 99, 101, 104, 106, 109--111, - 147, 193 - \subitem \texttt {[[ ]]}, 90, 93, 97, 99--101, 104, 247 - \subitem \texttt {\$}, 97, 100, 101, 104 - \subitem \texttt {\%*\%}, 79 - \subitem \texttt {\%+\%}, 276 - \subitem \texttt {\%.>\%}, 255--258, 262 - \subitem \texttt {\%/\%}, 34 - \subitem \texttt {\%<>\%}, 255 - \subitem \texttt {\%>\%}, 255--258 - \subitem \texttt {\%T>\%}, 255 - \subitem \texttt {\%\%}, 34 - \subitem \texttt {\%in\%}, 57, 58 - \subitem \texttt {\&}, 50, 53 - \subitem \texttt {\&\&}, 50 - \subitem \texttt {\^{}}, 37 - \subitem \texttt {\textbar }, 50, 54 - \subitem \texttt {\textbar >}, 133, 255--258, 289 - \subitem \texttt {\textbar \textbar }, 50 + \subitem \texttt {==}, 50, 252 + \subitem \texttt {>}, 50 + \subitem \texttt {>=}, 50 + \subitem \texttt {[ , ]}, 235, 253 + \subitem \texttt {[ ]}, 85, 86, 89, 95, 97, 99, 101, 104, 105, 142, + 185 + \subitem \texttt {[[ ]]}, 86, 89, 93, 95, 96, 99, 235 + \subitem \texttt {\$}, 93, 96, 99 + \subitem \texttt {\%*\%}, 76 + \subitem \texttt {\%+\%}, 262 + \subitem \texttt {\%.>\%}, 243--245, 249 + \subitem \texttt {\%/\%}, 33 + \subitem \texttt {\%<>\%}, 243 + \subitem \texttt {\%>\%}, 242--246 + \subitem \texttt {\%T>\%}, 243 + \subitem \texttt {\%\%}, 33 + \subitem \texttt {\%in\%}, 54, 55 + \subitem \texttt {\&}, 48, 51 + \subitem \texttt {\&\&}, 48 + \subitem \texttt {\^{}}, 36 + \subitem \texttt {\textbar }, 48, 52 + \subitem \texttt {\textbar >}, 129, 242--245, 274 + \subitem \texttt {\textbar \textbar }, 48 \end{theindex} diff --git a/rindex.idx b/rindex.idx index 3c1c9f5b..829c58ee 100644 --- a/rindex.idx +++ b/rindex.idx @@ -1,7 +1,7 @@ +\indexentry{help()@\texttt {help()}}{16} \indexentry{help()@\texttt {help()}}{17} \indexentry{help()@\texttt {help()}}{17} -\indexentry{help()@\texttt {help()}}{17} -\indexentry{print()@\texttt {print()}}{17} +\indexentry{print()@\texttt {print()}}{18} \indexentry{numeric@\texttt {numeric}}{24} \indexentry{+@\texttt {+}}{24} \indexentry{-@\texttt {-}}{24} @@ -10,13 +10,14 @@ \indexentry{exp()@\texttt {exp()}}{25} \indexentry{cos()@\texttt {cos()}}{25} \indexentry{pi@\texttt {pi}}{25} +\indexentry{pi@\texttt {pi}}{25} +\indexentry{cos()@\texttt {cos()}}{25} \indexentry{sqrt()@\texttt {sqrt()}}{25} \indexentry{sin()@\texttt {sin()}}{25} \indexentry{log()@\texttt {log()}}{25} \indexentry{log10()@\texttt {log10()}}{25} \indexentry{log2()@\texttt {log2()}}{25} \indexentry{exp()@\texttt {exp()}}{25} -\indexentry{pi@\texttt {pi}}{25} \indexentry{<-@\texttt {<-}}{26} \indexentry{->@\texttt {->}}{27} \indexentry{=@\texttt {=}}{27} @@ -32,11 +33,11 @@ \indexentry{c()@\texttt {c()}}{28} \indexentry{length()@\texttt {length()}}{28} \indexentry{append()@\texttt {append()}}{29} -\indexentry{seq()@\texttt {seq()}}{30} -\indexentry{:@\texttt {:}}{30} -\indexentry{rep()@\texttt {rep()}}{30} +\indexentry{seq()@\texttt {seq()}}{29} +\indexentry{:@\texttt {:}}{29} +\indexentry{rep()@\texttt {rep()}}{29} +\indexentry{numeric()@\texttt {numeric()}}{31} \indexentry{numeric()@\texttt {numeric()}}{31} -\indexentry{numeric()@\texttt {numeric()}}{32} \indexentry{NA@\texttt {NA}}{32} \indexentry{NA@\texttt {NA}}{32} \indexentry{NA@\texttt {NA}}{32} @@ -47,58 +48,59 @@ \indexentry{-Inf@\texttt {-Inf}}{32} \indexentry{Inf@\texttt {Inf}}{32} \indexentry{-Inf@\texttt {-Inf}}{32} -\indexentry{NA@\texttt {NA}}{33} -\indexentry{NA@\texttt {NA}}{33} +\indexentry{NA@\texttt {NA}}{32} +\indexentry{NA@\texttt {NA}}{32} \indexentry{NA@\texttt {NA}}{33} \indexentry{NA@\texttt {NA}}{33} \indexentry{NA@\texttt {NA}}{33} \indexentry{is.na()@\texttt {is.na()}}{33} \indexentry{integer@\texttt {integer}}{33} -\indexentry{\%/\%@\texttt {\%/\%}}{34} -\indexentry{\%\%@\texttt {\%\%}}{34} -\indexentry{integer@\texttt {integer}}{35} +\indexentry{\%/\%@\texttt {\%/\%}}{33} +\indexentry{\%\%@\texttt {\%\%}}{33} +\indexentry{integer@\texttt {integer}}{34} +\indexentry{double@\texttt {double}}{34} +\indexentry{integer@\texttt {integer}}{34} +\indexentry{integer@\texttt {integer}}{34} +\indexentry{double@\texttt {double}}{34} +\indexentry{.Machine\$double.eps@\texttt {.Machine\$double.eps}}{35} +\indexentry{.Machine\$double.neg.eps@\texttt {.Machine\$double.neg.eps}}{35} +\indexentry{.Machine\$double.max@\texttt {.Machine\$double.max}}{35} \indexentry{double@\texttt {double}}{35} -\indexentry{integer@\texttt {integer}}{35} -\indexentry{integer@\texttt {integer}}{35} -\indexentry{double@\texttt {double}}{35} -\indexentry{.Machine\$double.eps@\texttt {.Machine\$double.eps}}{36} -\indexentry{.Machine\$double.neg.eps@\texttt {.Machine\$double.neg.eps}}{36} -\indexentry{.Machine\$double.max@\texttt {.Machine\$double.max}}{36} -\indexentry{double@\texttt {double}}{36} -\indexentry{.Machine\$double.min@\texttt {.Machine\$double.min}}{36} -\indexentry{.Machine\$double.xmax@\texttt {.Machine\$double.xmax}}{36} -\indexentry{.Machine\$integer.max@\texttt {.Machine\$integer.max}}{36} +\indexentry{.Machine\$double.min@\texttt {.Machine\$double.min}}{35} +\indexentry{.Machine\$double.xmax@\texttt {.Machine\$double.xmax}}{35} +\indexentry{.Machine\$integer.max@\texttt {.Machine\$integer.max}}{35} \indexentry{integer@\texttt {integer}}{36} \indexentry{integer@\texttt {integer}}{36} \indexentry{-Inf@\texttt {-Inf}}{36} \indexentry{Inf@\texttt {Inf}}{36} -\indexentry{double@\texttt {double}}{37} -\indexentry{integer@\texttt {integer}}{37} -\indexentry{double@\texttt {double}}{37} -\indexentry{integer@\texttt {integer}}{37} -\indexentry{integer@\texttt {integer}}{37} -\indexentry{\^{}@\texttt {\^{}}}{37} -\indexentry{double@\texttt {double}}{37} -\indexentry{*@\texttt {*}}{37} -\indexentry{round()@\texttt {round()}}{37} +\indexentry{double@\texttt {double}}{36} +\indexentry{integer@\texttt {integer}}{36} +\indexentry{double@\texttt {double}}{36} +\indexentry{integer@\texttt {integer}}{36} +\indexentry{integer@\texttt {integer}}{36} +\indexentry{\^{}@\texttt {\^{}}}{36} +\indexentry{double@\texttt {double}}{36} +\indexentry{*@\texttt {*}}{36} +\indexentry{round()@\texttt {round()}}{36} \indexentry{signif()@\texttt {signif()}}{37} +\indexentry{trunc()@\texttt {trunc()}}{37} +\indexentry{ceiling()@\texttt {ceiling()}}{37} +\indexentry{trunc()@\texttt {trunc()}}{38} \indexentry{trunc()@\texttt {trunc()}}{38} \indexentry{ceiling()@\texttt {ceiling()}}{38} -\indexentry{trunc()@\texttt {trunc()}}{39} -\indexentry{trunc()@\texttt {trunc()}}{39} -\indexentry{ceiling()@\texttt {ceiling()}}{39} -\indexentry{abs()@\texttt {abs()}}{39} -\indexentry{+@\texttt {+}}{39} -\indexentry{-@\texttt {-}}{39} -\indexentry{trunc()@\texttt {trunc()}}{39} -\indexentry{ceiling()@\texttt {ceiling()}}{39} -\indexentry{trunc()@\texttt {trunc()}}{39} -\indexentry{ceiling()@\texttt {ceiling()}}{39} -\indexentry{remove()@\texttt {remove()}}{39} -\indexentry{objects()@\texttt {objects()}}{39} -\indexentry{remove()@\texttt {remove()}}{39} -\indexentry{objects()@\texttt {objects()}}{39} -\indexentry{remove()@\texttt {remove()}}{39} +\indexentry{abs()@\texttt {abs()}}{38} +\indexentry{+@\texttt {+}}{38} +\indexentry{-@\texttt {-}}{38} +\indexentry{trunc()@\texttt {trunc()}}{38} +\indexentry{ceiling()@\texttt {ceiling()}}{38} +\indexentry{trunc()@\texttt {trunc()}}{38} +\indexentry{ceiling()@\texttt {ceiling()}}{38} +\indexentry{complex@\texttt {complex}}{38} +\indexentry{remove()@\texttt {remove()}}{38} +\indexentry{objects()@\texttt {objects()}}{38} +\indexentry{remove()@\texttt {remove()}}{38} +\indexentry{objects()@\texttt {objects()}}{38} +\indexentry{remove()@\texttt {remove()}}{38} \indexentry{ls()@\texttt {ls()}}{39} \indexentry{objects()@\texttt {objects()}}{39} \indexentry{rm()@\texttt {rm()}}{39} @@ -106,1306 +108,1310 @@ \indexentry{objects()@\texttt {objects()}}{39} \indexentry{remove()@\texttt {remove()}}{39} \indexentry{objects()@\texttt {objects()}}{39} -\indexentry{character@\texttt {character}}{40} -\indexentry{print()@\texttt {print()}}{41} -\indexentry{cat()@\texttt {cat()}}{41} -\indexentry{cat()@\texttt {cat()}}{41} -\indexentry{print()@\texttt {print()}}{41} -\indexentry{cat()@\texttt {cat()}}{41} -\indexentry{nchar()@\texttt {nchar()}}{41} +\indexentry{POSIXlt@\texttt {POSIXlt}}{39} +\indexentry{POSIXct@\texttt {POSIXct}}{39} +\indexentry{character@\texttt {character}}{39} +\indexentry{print()@\texttt {print()}}{40} +\indexentry{cat()@\texttt {cat()}}{40} +\indexentry{cat()@\texttt {cat()}}{40} +\indexentry{print()@\texttt {print()}}{40} +\indexentry{cat()@\texttt {cat()}}{40} +\indexentry{nchar()@\texttt {nchar()}}{40} \indexentry{toupper()@\texttt {toupper()}}{41} \indexentry{tolower()@\texttt {tolower()}}{41} \indexentry{strtrim()@\texttt {strtrim()}}{41} \indexentry{strwrap()@\texttt {strwrap()}}{41} -\indexentry{cat()@\texttt {cat()}}{42} +\indexentry{cat()@\texttt {cat()}}{41} \indexentry{paste()@\texttt {paste()}}{42} -\indexentry{paste()@\texttt {paste()}}{43} -\indexentry{strrep()@\texttt {strrep()}}{43} -\indexentry{rep()@\texttt {rep()}}{43} +\indexentry{paste()@\texttt {paste()}}{42} +\indexentry{strrep()@\texttt {strrep()}}{42} +\indexentry{rep()@\texttt {rep()}}{42} \indexentry{trimws()@\texttt {trimws()}}{43} -\indexentry{trimws()@\texttt {trimws()}}{44} -\indexentry{character@\texttt {character}}{44} -\indexentry{substring()@\texttt {substring()}}{44} -\indexentry{substr()@\texttt {substr()}}{44} -\indexentry{sub()@\texttt {sub()}}{45} -\indexentry{gsub()@\texttt {gsub()}}{45} -\indexentry{sub()@\texttt {sub()}}{45} -\indexentry{gsub()@\texttt {gsub()}}{45} -\indexentry{sub()@\texttt {sub()}}{45} +\indexentry{trimws()@\texttt {trimws()}}{43} +\indexentry{character@\texttt {character}}{43} +\indexentry{substring()@\texttt {substring()}}{43} +\indexentry{substr()@\texttt {substr()}}{43} +\indexentry{sub()@\texttt {sub()}}{44} +\indexentry{gsub()@\texttt {gsub()}}{44} +\indexentry{sub()@\texttt {sub()}}{44} +\indexentry{gsub()@\texttt {gsub()}}{44} +\indexentry{sub()@\texttt {sub()}}{44} +\indexentry{gsub()@\texttt {gsub()}}{44} +\indexentry{grep()@\texttt {grep()}}{44} +\indexentry{grepl()@\texttt {grepl()}}{44} +\indexentry{grep()@\texttt {grep()}}{44} \indexentry{gsub()@\texttt {gsub()}}{45} \indexentry{grep()@\texttt {grep()}}{45} \indexentry{grepl()@\texttt {grepl()}}{45} -\indexentry{grep()@\texttt {grep()}}{45} -\indexentry{gsub()@\texttt {gsub()}}{46} -\indexentry{grep()@\texttt {grep()}}{46} -\indexentry{grepl()@\texttt {grepl()}}{46} -\indexentry{strsplit()@\texttt {strsplit()}}{47} -\indexentry{logical@\texttt {logical}}{49} -\indexentry{logical@\texttt {logical}}{49} -\indexentry{\&@\texttt {\&}}{50} -\indexentry{\textbar @\texttt {\textbar }}{50} -\indexentry{\&\&@\texttt {\&\&}}{50} -\indexentry{\textbar \textbar @\texttt {\textbar \textbar }}{50} -\indexentry{!@\texttt {!}}{50} -\indexentry{any()@\texttt {any()}}{50} -\indexentry{all()@\texttt {all()}}{50} +\indexentry{strsplit()@\texttt {strsplit()}}{46} +\indexentry{logical@\texttt {logical}}{47} +\indexentry{logical@\texttt {logical}}{48} +\indexentry{\&@\texttt {\&}}{48} +\indexentry{\textbar @\texttt {\textbar }}{48} +\indexentry{\&\&@\texttt {\&\&}}{48} +\indexentry{\textbar \textbar @\texttt {\textbar \textbar }}{48} +\indexentry{!@\texttt {!}}{48} +\indexentry{any()@\texttt {any()}}{48} +\indexentry{all()@\texttt {all()}}{48} +\indexentry{all()@\texttt {all()}}{49} +\indexentry{any()@\texttt {any()}}{49} +\indexentry{is.na()@\texttt {is.na()}}{50} \indexentry{all()@\texttt {all()}}{50} +\indexentry{is.na()@\texttt {is.na()}}{50} \indexentry{any()@\texttt {any()}}{50} -\indexentry{is.na()@\texttt {is.na()}}{51} -\indexentry{all()@\texttt {all()}}{51} -\indexentry{is.na()@\texttt {is.na()}}{51} -\indexentry{any()@\texttt {any()}}{52} -\indexentry{>@\texttt {>}}{52} -\indexentry{<@\texttt {<}}{52} -\indexentry{>=@\texttt {>=}}{52} -\indexentry{<=@\texttt {<=}}{52} -\indexentry{==@\texttt {==}}{52} -\indexentry{!=@\texttt {!=}}{52} -\indexentry{\&@\texttt {\&}}{53} -\indexentry{\textbar @\texttt {\textbar }}{54} -\indexentry{logical@\texttt {logical}}{54} -\indexentry{abs()@\texttt {abs()}}{54} -\indexentry{\%in\%@\texttt {\%in\%}}{57} -\indexentry{is.element()@\texttt {is.element()}}{57} -\indexentry{!@\texttt {!}}{57} -\indexentry{\%in\%@\texttt {\%in\%}}{57} -\indexentry{is.element()@\texttt {is.element()}}{57} -\indexentry{|@\texttt {|}}{57} -\indexentry{\%in\%@\texttt {\%in\%}}{57} -\indexentry{is.element()@\texttt {is.element()}}{57} -\indexentry{\%in\%@\texttt {\%in\%}}{57} -\indexentry{match()@\texttt {match()}}{57} -\indexentry{match()@\texttt {match()}}{57} -\indexentry{charmatch()@\texttt {charmatch()}}{57} -\indexentry{pmatch()@\texttt {pmatch()}}{57} -\indexentry{\%in\%@\texttt {\%in\%}}{58} -\indexentry{unique()@\texttt {unique()}}{58} -\indexentry{unique()@\texttt {unique()}}{58} -\indexentry{duplicated()@\texttt {duplicated()}}{58} -\indexentry{unique()@\texttt {unique()}}{58} -\indexentry{numeric@\texttt {numeric}}{59} -\indexentry{character@\texttt {character}}{59} -\indexentry{numeric@\texttt {numeric}}{59} -\indexentry{class()@\texttt {class()}}{60} -\indexentry{inherits()@\texttt {inherits()}}{60} -\indexentry{is.character()@\texttt {is.character()}}{60} -\indexentry{is.numeric()@\texttt {is.numeric()}}{60} -\indexentry{is.logical()@\texttt {is.logical()}}{60} -\indexentry{as.character()@\texttt {as.character()}}{62} -\indexentry{as.numeric()@\texttt {as.numeric()}}{62} -\indexentry{as.logical()@\texttt {as.logical()}}{62} -\indexentry{as.character()@\texttt {as.character()}}{62} -\indexentry{as.numeric()@\texttt {as.numeric()}}{62} -\indexentry{as.logical()@\texttt {as.logical()}}{62} -\indexentry{trunc()@\texttt {trunc()}}{62} -\indexentry{as.integer()@\texttt {as.integer()}}{62} -\indexentry{length()@\texttt {length()}}{63} -\indexentry{as.numeric()@\texttt {as.numeric()}}{63} -\indexentry{format()@\texttt {format()}}{63} -\indexentry{sprintf()@\texttt {sprintf()}}{63} -\indexentry{character@\texttt {character}}{63} -\indexentry{format()@\texttt {format()}}{63} -\indexentry{sprintf()@\texttt {sprintf()}}{63} -\indexentry{format()@\texttt {format()}}{63} -\indexentry{print()@\texttt {print()}}{63} -\indexentry{format()@\texttt {format()}}{63} -\indexentry{sprintf()@\texttt {sprintf()}}{63} -\indexentry{format()@\texttt {format()}}{64} -\indexentry{sprintf()@\texttt {sprintf()}}{64} -\indexentry{sprintf()@\texttt {sprintf()}}{64} -\indexentry{NA@\texttt {NA}}{64} -\indexentry{NA@\texttt {NA}}{64} -\indexentry{NA\_real\_@\texttt {NA\_real\_}}{64} -\indexentry{NA\_character\_@\texttt {NA\_character\_}}{64} -\indexentry{NA@\texttt {NA}}{64} -\indexentry{NA@\texttt {NA}}{64} -\indexentry{logical@\texttt {logical}}{64} -\indexentry{NA@\texttt {NA}}{64} -\indexentry{NA@\texttt {NA}}{64} -\indexentry{letters@\texttt {letters}}{65} -\indexentry{LETTERS@\texttt {LETTERS}}{65} -\indexentry{month.name@\texttt {month.name}}{65} -\indexentry{month.abb@\texttt {month.abb}}{65} -\indexentry{<-@\texttt {<-}}{69} -\indexentry{integer@\texttt {integer}}{70} -\indexentry{numeric@\texttt {numeric}}{70} -\indexentry{double@\texttt {double}}{70} -\indexentry{sort()@\texttt {sort()}}{71} -\indexentry{order()@\texttt {order()}}{71} -\indexentry{sort()@\texttt {sort()}}{71} -\indexentry{rle()@\texttt {rle()}}{71} -\indexentry{matrix@\texttt {matrix}}{72} -\indexentry{array@\texttt {array}}{72} -\indexentry{length()@\texttt {length()}}{73} -\indexentry{ncol()@\texttt {ncol()}}{73} -\indexentry{nrow()@\texttt {nrow()}}{73} +\indexentry{>@\texttt {>}}{50} +\indexentry{<@\texttt {<}}{50} +\indexentry{>=@\texttt {>=}}{50} +\indexentry{<=@\texttt {<=}}{50} +\indexentry{==@\texttt {==}}{50} +\indexentry{!=@\texttt {!=}}{50} +\indexentry{\&@\texttt {\&}}{51} +\indexentry{\textbar @\texttt {\textbar }}{52} +\indexentry{logical@\texttt {logical}}{52} +\indexentry{abs()@\texttt {abs()}}{52} +\indexentry{\%in\%@\texttt {\%in\%}}{54} +\indexentry{is.element()@\texttt {is.element()}}{54} +\indexentry{!@\texttt {!}}{55} +\indexentry{\%in\%@\texttt {\%in\%}}{55} +\indexentry{is.element()@\texttt {is.element()}}{55} +\indexentry{|@\texttt {|}}{55} +\indexentry{\%in\%@\texttt {\%in\%}}{55} +\indexentry{is.element()@\texttt {is.element()}}{55} +\indexentry{\%in\%@\texttt {\%in\%}}{55} +\indexentry{match()@\texttt {match()}}{55} +\indexentry{match()@\texttt {match()}}{55} +\indexentry{charmatch()@\texttt {charmatch()}}{55} +\indexentry{pmatch()@\texttt {pmatch()}}{55} +\indexentry{\%in\%@\texttt {\%in\%}}{55} +\indexentry{unique()@\texttt {unique()}}{55} +\indexentry{unique()@\texttt {unique()}}{55} +\indexentry{duplicated()@\texttt {duplicated()}}{56} +\indexentry{unique()@\texttt {unique()}}{56} +\indexentry{numeric@\texttt {numeric}}{56} +\indexentry{character@\texttt {character}}{56} +\indexentry{numeric@\texttt {numeric}}{57} +\indexentry{class()@\texttt {class()}}{57} +\indexentry{inherits()@\texttt {inherits()}}{57} +\indexentry{is.character()@\texttt {is.character()}}{58} +\indexentry{is.numeric()@\texttt {is.numeric()}}{58} +\indexentry{is.logical()@\texttt {is.logical()}}{58} +\indexentry{as.character()@\texttt {as.character()}}{59} +\indexentry{as.numeric()@\texttt {as.numeric()}}{59} +\indexentry{as.logical()@\texttt {as.logical()}}{59} +\indexentry{as.character()@\texttt {as.character()}}{60} +\indexentry{as.numeric()@\texttt {as.numeric()}}{60} +\indexentry{as.logical()@\texttt {as.logical()}}{60} +\indexentry{as.integer()@\texttt {as.integer()}}{60} +\indexentry{trunc()@\texttt {trunc()}}{60} +\indexentry{as.integer()@\texttt {as.integer()}}{60} +\indexentry{length()@\texttt {length()}}{60} +\indexentry{as.numeric()@\texttt {as.numeric()}}{60} +\indexentry{format()@\texttt {format()}}{60} +\indexentry{sprintf()@\texttt {sprintf()}}{60} +\indexentry{character@\texttt {character}}{60} +\indexentry{format()@\texttt {format()}}{61} +\indexentry{sprintf()@\texttt {sprintf()}}{61} +\indexentry{format()@\texttt {format()}}{61} +\indexentry{print()@\texttt {print()}}{61} +\indexentry{format()@\texttt {format()}}{61} +\indexentry{sprintf()@\texttt {sprintf()}}{61} +\indexentry{format()@\texttt {format()}}{61} +\indexentry{sprintf()@\texttt {sprintf()}}{61} +\indexentry{sprintf()@\texttt {sprintf()}}{61} +\indexentry{NA@\texttt {NA}}{62} +\indexentry{NA@\texttt {NA}}{62} +\indexentry{NA\_real\_@\texttt {NA\_real\_}}{62} +\indexentry{NA\_character\_@\texttt {NA\_character\_}}{62} +\indexentry{NA@\texttt {NA}}{62} +\indexentry{NA@\texttt {NA}}{62} +\indexentry{logical@\texttt {logical}}{62} +\indexentry{NA@\texttt {NA}}{62} +\indexentry{NA@\texttt {NA}}{62} +\indexentry{letters@\texttt {letters}}{63} +\indexentry{LETTERS@\texttt {LETTERS}}{63} +\indexentry{month.name@\texttt {month.name}}{63} +\indexentry{month.abb@\texttt {month.abb}}{63} +\indexentry{<-@\texttt {<-}}{66} +\indexentry{integer@\texttt {integer}}{67} +\indexentry{numeric@\texttt {numeric}}{67} +\indexentry{double@\texttt {double}}{67} +\indexentry{sort()@\texttt {sort()}}{68} +\indexentry{order()@\texttt {order()}}{68} +\indexentry{sort()@\texttt {sort()}}{68} +\indexentry{rle()@\texttt {rle()}}{68} +\indexentry{matrix@\texttt {matrix}}{69} +\indexentry{array@\texttt {array}}{69} +\indexentry{length()@\texttt {length()}}{69} +\indexentry{ncol()@\texttt {ncol()}}{69} +\indexentry{nrow()@\texttt {nrow()}}{69} +\indexentry{dim()@\texttt {dim()}}{69} +\indexentry{is.matrix()@\texttt {is.matrix()}}{69} +\indexentry{matrix()@\texttt {matrix()}}{70} +\indexentry{as.matrix()@\texttt {as.matrix()}}{70} +\indexentry{matrix()@\texttt {matrix()}}{70} +\indexentry{as.matrix()@\texttt {as.matrix()}}{70} +\indexentry{matrix()@\texttt {matrix()}}{70} +\indexentry{matrix@\texttt {matrix}}{73} \indexentry{dim()@\texttt {dim()}}{73} -\indexentry{is.matrix()@\texttt {is.matrix()}}{73} -\indexentry{matrix()@\texttt {matrix()}}{73} -\indexentry{as.matrix()@\texttt {as.matrix()}}{73} -\indexentry{matrix()@\texttt {matrix()}}{73} -\indexentry{as.matrix()@\texttt {as.matrix()}}{73} -\indexentry{matrix()@\texttt {matrix()}}{73} -\indexentry{matrix@\texttt {matrix}}{77} -\indexentry{dim()@\texttt {dim()}}{77} -\indexentry{is.array()@\texttt {is.array()}}{77} -\indexentry{array()@\texttt {array()}}{78} -\indexentry{unlist()@\texttt {unlist()}}{78} -\indexentry{as.vector()@\texttt {as.vector()}}{78} -\indexentry{t()@\texttt {t()}}{79} -\indexentry{t()@\texttt {t()}}{79} -\indexentry{\%*\%@\texttt {\%*\%}}{79} -\indexentry{crossprod()@\texttt {crossprod()}}{80} -\indexentry{diag()@\texttt {diag()}}{80} -\indexentry{factor@\texttt {factor}}{80} +\indexentry{is.array()@\texttt {is.array()}}{73} +\indexentry{array()@\texttt {array()}}{74} +\indexentry{as.vector()@\texttt {as.vector()}}{75} +\indexentry{matrix@\texttt {matrix}}{75} +\indexentry{t()@\texttt {t()}}{76} +\indexentry{\%*\%@\texttt {\%*\%}}{76} +\indexentry{diag()@\texttt {diag()}}{76} +\indexentry{solve()@\texttt {solve()}}{76} +\indexentry{factor@\texttt {factor}}{77} +\indexentry{factor()@\texttt {factor()}}{77} +\indexentry{ordered()@\texttt {ordered()}}{77} +\indexentry{factor()@\texttt {factor()}}{77} +\indexentry{ordered()@\texttt {ordered()}}{77} +\indexentry{gl()@\texttt {gl()}}{78} +\indexentry{gl()@\texttt {gl()}}{78} +\indexentry{factor()@\texttt {factor()}}{78} +\indexentry{factor()@\texttt {factor()}}{78} +\indexentry{factor()@\texttt {factor()}}{79} +\indexentry{factor()@\texttt {factor()}}{79} +\indexentry{levels()@\texttt {levels()}}{79} +\indexentry{as.numeric()@\texttt {as.numeric()}}{80} +\indexentry{as.numeric()@\texttt {as.numeric()}}{80} +\indexentry{as.character()@\texttt {as.character()}}{80} +\indexentry{as.numeric()@\texttt {as.numeric()}}{80} +\indexentry{as.numeric()@\texttt {as.numeric()}}{80} \indexentry{factor()@\texttt {factor()}}{80} -\indexentry{ordered()@\texttt {ordered()}}{80} -\indexentry{factor()@\texttt {factor()}}{80} -\indexentry{ordered()@\texttt {ordered()}}{80} -\indexentry{gl()@\texttt {gl()}}{81} -\indexentry{gl()@\texttt {gl()}}{81} -\indexentry{factor()@\texttt {factor()}}{81} -\indexentry{factor()@\texttt {factor()}}{81} -\indexentry{factor()@\texttt {factor()}}{82} -\indexentry{factor()@\texttt {factor()}}{82} -\indexentry{levels()@\texttt {levels()}}{83} -\indexentry{as.numeric()@\texttt {as.numeric()}}{84} -\indexentry{as.numeric()@\texttt {as.numeric()}}{84} -\indexentry{as.character()@\texttt {as.character()}}{84} -\indexentry{as.numeric()@\texttt {as.numeric()}}{84} -\indexentry{as.numeric()@\texttt {as.numeric()}}{84} -\indexentry{factor()@\texttt {factor()}}{84} -\indexentry{levels()@\texttt {levels()}}{84} -\indexentry{rev()@\texttt {rev()}}{84} -\indexentry{reorder()@\texttt {reorder()}}{85} -\indexentry{sort()@\texttt {sort()}}{85} -\indexentry{order()@\texttt {order()}}{85} -\indexentry{list@\texttt {list}}{88} -\indexentry{list()@\texttt {list()}}{88} -\indexentry{c()@\texttt {c()}}{88} -\indexentry{[ ]@\texttt {[ ]}}{89} +\indexentry{levels()@\texttt {levels()}}{80} +\indexentry{rev()@\texttt {rev()}}{81} +\indexentry{reorder()@\texttt {reorder()}}{81} +\indexentry{sort()@\texttt {sort()}}{82} +\indexentry{order()@\texttt {order()}}{82} +\indexentry{list@\texttt {list}}{84} +\indexentry{list@\texttt {list}}{84} +\indexentry{list()@\texttt {list()}}{84} +\indexentry{c()@\texttt {c()}}{84} +\indexentry{[ ]@\texttt {[ ]}}{85} +\indexentry{[ ]@\texttt {[ ]}}{85} +\indexentry{[[ ]]@\texttt {[[ ]]}}{86} +\indexentry{[[ ]]@\texttt {[[ ]]}}{86} +\indexentry{[ ]@\texttt {[ ]}}{86} +\indexentry{c()@\texttt {c()}}{87} +\indexentry{append()@\texttt {append()}}{87} +\indexentry{str()@\texttt {str()}}{88} +\indexentry{[[ ]]@\texttt {[[ ]]}}{89} \indexentry{[ ]@\texttt {[ ]}}{89} -\indexentry{[[ ]]@\texttt {[[ ]]}}{90} -\indexentry{[[ ]]@\texttt {[[ ]]}}{90} -\indexentry{[ ]@\texttt {[ ]}}{90} -\indexentry{c()@\texttt {c()}}{92} -\indexentry{append()@\texttt {append()}}{92} -\indexentry{str()@\texttt {str()}}{92} +\indexentry{print()@\texttt {print()}}{89} +\indexentry{str()@\texttt {str()}}{89} +\indexentry{str()@\texttt {str()}}{89} +\indexentry{unlist()@\texttt {unlist()}}{90} +\indexentry{str()@\texttt {str()}}{90} +\indexentry{unlist()@\texttt {unlist()}}{90} +\indexentry{unname()@\texttt {unname()}}{91} +\indexentry{data.frame@\texttt {data.frame}}{91} +\indexentry{data.frame()@\texttt {data.frame()}}{92} +\indexentry{list@\texttt {list}}{92} +\indexentry{data.frame()@\texttt {data.frame()}}{92} +\indexentry{class()@\texttt {class()}}{93} +\indexentry{data.frame@\texttt {data.frame}}{93} \indexentry{[[ ]]@\texttt {[[ ]]}}{93} -\indexentry{[ ]@\texttt {[ ]}}{93} -\indexentry{print()@\texttt {print()}}{94} -\indexentry{str()@\texttt {str()}}{94} -\indexentry{str()@\texttt {str()}}{94} -\indexentry{unlist()@\texttt {unlist()}}{94} -\indexentry{str()@\texttt {str()}}{95} -\indexentry{unlist()@\texttt {unlist()}}{95} -\indexentry{unname()@\texttt {unname()}}{95} -\indexentry{data.frame@\texttt {data.frame}}{96} -\indexentry{data.frame()@\texttt {data.frame()}}{96} -\indexentry{list@\texttt {list}}{96} -\indexentry{class()@\texttt {class()}}{97} -\indexentry{data.frame@\texttt {data.frame}}{97} -\indexentry{[[ ]]@\texttt {[[ ]]}}{97} -\indexentry{\$@\texttt {\$}}{97} +\indexentry{\$@\texttt {\$}}{93} +\indexentry{[[ ]]@\texttt {[[ ]]}}{95} +\indexentry{[ ]@\texttt {[ ]}}{95} +\indexentry{[[ ]]@\texttt {[[ ]]}}{96} +\indexentry{\$@\texttt {\$}}{96} +\indexentry{\$@\texttt {\$}}{96} +\indexentry{\$@\texttt {\$}}{96} +\indexentry{\$@\texttt {\$}}{96} +\indexentry{\$@\texttt {\$}}{96} +\indexentry{[[ ]]@\texttt {[[ ]]}}{96} +\indexentry{\$@\texttt {\$}}{96} +\indexentry{[[ ]]@\texttt {[[ ]]}}{96} +\indexentry{\$@\texttt {\$}}{96} +\indexentry{[ ]@\texttt {[ ]}}{97} +\indexentry{I()@\texttt {I()}}{97} +\indexentry{I()@\texttt {I()}}{97} +\indexentry{I()@\texttt {I()}}{98} +\indexentry{I()@\texttt {I()}}{98} +\indexentry{I()@\texttt {I()}}{98} +\indexentry{data.frame()@\texttt {data.frame()}}{99} +\indexentry{subset()@\texttt {subset()}}{99} +\indexentry{subset()@\texttt {subset()}}{99} +\indexentry{[ ]@\texttt {[ ]}}{99} \indexentry{[[ ]]@\texttt {[[ ]]}}{99} +\indexentry{\$@\texttt {\$}}{99} +\indexentry{subset()@\texttt {subset()}}{99} \indexentry{[ ]@\texttt {[ ]}}{99} -\indexentry{[[ ]]@\texttt {[[ ]]}}{100} -\indexentry{\$@\texttt {\$}}{100} -\indexentry{\$@\texttt {\$}}{100} -\indexentry{\$@\texttt {\$}}{100} -\indexentry{\$@\texttt {\$}}{100} -\indexentry{\$@\texttt {\$}}{101} -\indexentry{[[ ]]@\texttt {[[ ]]}}{101} -\indexentry{\$@\texttt {\$}}{101} -\indexentry{[[ ]]@\texttt {[[ ]]}}{101} -\indexentry{\$@\texttt {\$}}{101} +\indexentry{[[ ]]@\texttt {[[ ]]}}{99} +\indexentry{\$@\texttt {\$}}{99} +\indexentry{subset()@\texttt {subset()}}{100} +\indexentry{attach()@\texttt {attach()}}{100} +\indexentry{with()@\texttt {with()}}{100} \indexentry{[ ]@\texttt {[ ]}}{101} -\indexentry{I()@\texttt {I()}}{102} -\indexentry{I()@\texttt {I()}}{102} -\indexentry{I()@\texttt {I()}}{103} -\indexentry{I()@\texttt {I()}}{103} -\indexentry{I()@\texttt {I()}}{103} -\indexentry{data.frame()@\texttt {data.frame()}}{103} -\indexentry{subset()@\texttt {subset()}}{103} -\indexentry{subset()@\texttt {subset()}}{104} +\indexentry{<-@\texttt {<-}}{101} +\indexentry{summary()@\texttt {summary()}}{101} +\indexentry{sapply()@\texttt {sapply()}}{101} +\indexentry{lapply()@\texttt {lapply()}}{101} +\indexentry{vapply()@\texttt {vapply()}}{101} +\indexentry{split()@\texttt {split()}}{102} +\indexentry{unsplit()@\texttt {unsplit()}}{102} +\indexentry{split()@\texttt {split()}}{102} +\indexentry{split()@\texttt {split()}}{102} +\indexentry{aggregate()@\texttt {aggregate()}}{102} +\indexentry{aggregate()@\texttt {aggregate()}}{102} +\indexentry{aggregate()@\texttt {aggregate()}}{103} +\indexentry{aggregate()@\texttt {aggregate()}}{103} +\indexentry{aggregate()@\texttt {aggregate()}}{103} +\indexentry{aggregate()@\texttt {aggregate()}}{103} \indexentry{[ ]@\texttt {[ ]}}{104} -\indexentry{[[ ]]@\texttt {[[ ]]}}{104} -\indexentry{\$@\texttt {\$}}{104} -\indexentry{subset()@\texttt {subset()}}{104} +\indexentry{order()@\texttt {order()}}{104} +\indexentry{order()@\texttt {order()}}{104} +\indexentry{order()@\texttt {order()}}{104} +\indexentry{order()@\texttt {order()}}{104} +\indexentry{order()@\texttt {order()}}{104} +\indexentry{matrix@\texttt {matrix}}{104} +\indexentry{array@\texttt {array}}{104} \indexentry{[ ]@\texttt {[ ]}}{104} -\indexentry{[[ ]]@\texttt {[[ ]]}}{104} -\indexentry{\$@\texttt {\$}}{104} -\indexentry{subset()@\texttt {subset()}}{105} -\indexentry{attach()@\texttt {attach()}}{105} -\indexentry{with()@\texttt {with()}}{105} -\indexentry{[ ]@\texttt {[ ]}}{106} -\indexentry{<-@\texttt {<-}}{106} -\indexentry{summary()@\texttt {summary()}}{106} -\indexentry{sapply()@\texttt {sapply()}}{106} -\indexentry{lapply()@\texttt {lapply()}}{106} -\indexentry{vapply()@\texttt {vapply()}}{106} -\indexentry{split()@\texttt {split()}}{107} -\indexentry{unsplit()@\texttt {unsplit()}}{107} -\indexentry{split()@\texttt {split()}}{107} -\indexentry{split()@\texttt {split()}}{107} -\indexentry{aggregate()@\texttt {aggregate()}}{107} -\indexentry{aggregate()@\texttt {aggregate()}}{108} -\indexentry{aggregate()@\texttt {aggregate()}}{108} -\indexentry{aggregate()@\texttt {aggregate()}}{108} -\indexentry{aggregate()@\texttt {aggregate()}}{108} -\indexentry{aggregate()@\texttt {aggregate()}}{109} -\indexentry{[ ]@\texttt {[ ]}}{109} -\indexentry{order()@\texttt {order()}}{110} -\indexentry{order()@\texttt {order()}}{110} -\indexentry{order()@\texttt {order()}}{110} -\indexentry{order()@\texttt {order()}}{110} -\indexentry{order()@\texttt {order()}}{110} -\indexentry{matrix@\texttt {matrix}}{110} -\indexentry{array@\texttt {array}}{110} -\indexentry{[ ]@\texttt {[ ]}}{110} -\indexentry{sort()@\texttt {sort()}}{110} -\indexentry{order()@\texttt {order()}}{110} -\indexentry{order()@\texttt {order()}}{110} -\indexentry{order()@\texttt {order()}}{110} -\indexentry{[ ]@\texttt {[ ]}}{111} -\indexentry{transform()@\texttt {transform()}}{111} -\indexentry{with()@\texttt {with()}}{111} -\indexentry{within()@\texttt {within()}}{111} -\indexentry{with()@\texttt {with()}}{112} -\indexentry{within()@\texttt {within()}}{112} -\indexentry{with()@\texttt {with()}}{112} -\indexentry{within()@\texttt {within()}}{112} -\indexentry{attach()@\texttt {attach()}}{112} -\indexentry{detach()@\texttt {detach()}}{112} -\indexentry{attach()@\texttt {attach()}}{113} -\indexentry{detach()@\texttt {detach()}}{113} -\indexentry{attach()@\texttt {attach()}}{113} -\indexentry{detach()@\texttt {detach()}}{113} -\indexentry{attach()@\texttt {attach()}}{113} -\indexentry{detach()@\texttt {detach()}}{113} -\indexentry{attach()@\texttt {attach()}}{113} -\indexentry{detach()@\texttt {detach()}}{113} -\indexentry{with()@\texttt {with()}}{113} -\indexentry{within()@\texttt {within()}}{113} -\indexentry{with()@\texttt {with()}}{113} -\indexentry{within()@\texttt {within()}}{113} -\indexentry{attach()@\texttt {attach()}}{113} -\indexentry{detach()@\texttt {detach()}}{113} -\indexentry{reshape()@\texttt {reshape()}}{114} -\indexentry{View()@\texttt {View()}}{114} -\indexentry{edit()@\texttt {edit()}}{114} -\indexentry{fix()@\texttt {fix()}}{114} -\indexentry{View()@\texttt {View()}}{114} -\indexentry{edit()@\texttt {edit()}}{114} -\indexentry{fix()@\texttt {fix()}}{114} -\indexentry{comment()@\texttt {comment()}}{114} -\indexentry{comment()<-@\texttt {comment()<-}}{114} -\indexentry{names()@\texttt {names()}}{115} -\indexentry{dim()@\texttt {dim()}}{115} -\indexentry{levels()@\texttt {levels()}}{115} -\indexentry{names()<-@\texttt {names()<-}}{115} -\indexentry{dim()<-@\texttt {dim()<-}}{115} -\indexentry{levels()<-@\texttt {levels()<-}}{115} -\indexentry{attr()@\texttt {attr()}}{115} -\indexentry{attr()<-@\texttt {attr()<-}}{115} -\indexentry{attributes()@\texttt {attributes()}}{115} -\indexentry{attr()@\texttt {attr()}}{115} -\indexentry{attr()<-@\texttt {attr()<-}}{115} -\indexentry{attributes()@\texttt {attributes()}}{115} -\indexentry{str()@\texttt {str()}}{115} -\indexentry{dim()@\texttt {dim()}}{116} -\indexentry{attr()@\texttt {attr()}}{116} -\indexentry{lm()@\texttt {lm()}}{116} -\indexentry{data()@\texttt {data()}}{117} -\indexentry{data()@\texttt {data()}}{117} -\indexentry{save()@\texttt {save()}}{117} -\indexentry{save()@\texttt {save()}}{117} -\indexentry{load()@\texttt {load()}}{118} -\indexentry{ls()@\texttt {ls()}}{118} -\indexentry{ls()@\texttt {ls()}}{118} -\indexentry{unlink()@\texttt {unlink()}}{118} -\indexentry{readRDS()@\texttt {readRDS()}}{119} -\indexentry{saveRDS()@\texttt {saveRDS()}}{119} -\indexentry{plot()@\texttt {plot()}}{119} -\indexentry{plot()@\texttt {plot()}}{120} -\indexentry{plot()@\texttt {plot()}}{121} -\indexentry{plot()@\texttt {plot()}}{121} -\indexentry{source()@\texttt {source()}}{125} -\indexentry{print()@\texttt {print()}}{125} -\indexentry{ggplot()@\texttt {ggplot()}}{125} -\indexentry{print()@\texttt {print()}}{125} -\indexentry{\textbar >@\texttt {\textbar >}}{133} -\indexentry{\textbar >@\texttt {\textbar >}}{133} -\indexentry{->@\texttt {->}}{133} -\indexentry{<-@\texttt {<-}}{133} -\indexentry{\textbar >@\texttt {\textbar >}}{133} -\indexentry{subset()@\texttt {subset()}}{134} -\indexentry{assign()@\texttt {assign()}}{134} -\indexentry{within()@\texttt {within()}}{134} -\indexentry{subset()@\texttt {subset()}}{134} -\indexentry{getElement()@\texttt {getElement()}}{135} -\indexentry{if ()@\texttt {if ()}}{136} -\indexentry{if () \ldots \ else@\texttt {if () \ldots \ else}}{136} -\indexentry{if()@\texttt {if()}}{137} -\indexentry{logical@\texttt {logical}}{138} -\indexentry{numeric@\texttt {numeric}}{140} -\indexentry{logical@\texttt {logical}}{140} -\indexentry{if ()@\texttt {if ()}}{140} -\indexentry{if () \ldots \ else@\texttt {if () \ldots \ else}}{140} -\indexentry{switch()@\texttt {switch()}}{140} -\indexentry{if ()@\texttt {if ()}}{140} -\indexentry{switch()@\texttt {switch()}}{140} -\indexentry{switch()@\texttt {switch()}}{140} -\indexentry{switch()@\texttt {switch()}}{140} -\indexentry{switch()@\texttt {switch()}}{140} -\indexentry{switch()@\texttt {switch()}}{141} -\indexentry{switch()@\texttt {switch()}}{141} -\indexentry{switch()@\texttt {switch()}}{141} -\indexentry{switch()@\texttt {switch()}}{141} -\indexentry{switch()@\texttt {switch()}}{142} -\indexentry{switch()@\texttt {switch()}}{143} -\indexentry{switch()@\texttt {switch()}}{143} -\indexentry{switch()@\texttt {switch()}}{143} -\indexentry{switch()@\texttt {switch()}}{143} -\indexentry{ifelse()@\texttt {ifelse()}}{143} -\indexentry{ifelse()@\texttt {ifelse()}}{143} -\indexentry{ifelse()@\texttt {ifelse()}}{144} -\indexentry{ifelse()@\texttt {ifelse()}}{144} -\indexentry{ifelse()@\texttt {ifelse()}}{145} -\indexentry{for@\texttt {for}}{145} +\indexentry{sort()@\texttt {sort()}}{105} +\indexentry{order()@\texttt {order()}}{105} +\indexentry{order()@\texttt {order()}}{105} +\indexentry{order()@\texttt {order()}}{105} +\indexentry{[ ]@\texttt {[ ]}}{105} +\indexentry{transform()@\texttt {transform()}}{106} +\indexentry{with()@\texttt {with()}}{106} +\indexentry{within()@\texttt {within()}}{106} +\indexentry{with()@\texttt {with()}}{106} +\indexentry{within()@\texttt {within()}}{106} +\indexentry{with()@\texttt {with()}}{107} +\indexentry{within()@\texttt {within()}}{107} +\indexentry{attach()@\texttt {attach()}}{107} +\indexentry{detach()@\texttt {detach()}}{107} +\indexentry{attach()@\texttt {attach()}}{107} +\indexentry{detach()@\texttt {detach()}}{107} +\indexentry{attach()@\texttt {attach()}}{107} +\indexentry{detach()@\texttt {detach()}}{107} +\indexentry{attach()@\texttt {attach()}}{108} +\indexentry{detach()@\texttt {detach()}}{108} +\indexentry{attach()@\texttt {attach()}}{108} +\indexentry{detach()@\texttt {detach()}}{108} +\indexentry{with()@\texttt {with()}}{108} +\indexentry{within()@\texttt {within()}}{108} +\indexentry{with()@\texttt {with()}}{108} +\indexentry{within()@\texttt {within()}}{108} +\indexentry{attach()@\texttt {attach()}}{108} +\indexentry{detach()@\texttt {detach()}}{108} +\indexentry{reshape()@\texttt {reshape()}}{108} +\indexentry{View()@\texttt {View()}}{108} +\indexentry{edit()@\texttt {edit()}}{108} +\indexentry{fix()@\texttt {fix()}}{108} +\indexentry{View()@\texttt {View()}}{108} +\indexentry{edit()@\texttt {edit()}}{108} +\indexentry{fix()@\texttt {fix()}}{108} +\indexentry{comment()@\texttt {comment()}}{109} +\indexentry{comment()<-@\texttt {comment()<-}}{109} +\indexentry{names()@\texttt {names()}}{109} +\indexentry{dim()@\texttt {dim()}}{109} +\indexentry{levels()@\texttt {levels()}}{109} +\indexentry{names()<-@\texttt {names()<-}}{109} +\indexentry{dim()<-@\texttt {dim()<-}}{109} +\indexentry{levels()<-@\texttt {levels()<-}}{109} +\indexentry{attr()@\texttt {attr()}}{109} +\indexentry{attr()<-@\texttt {attr()<-}}{109} +\indexentry{attributes()@\texttt {attributes()}}{109} +\indexentry{attr()@\texttt {attr()}}{109} +\indexentry{attr()<-@\texttt {attr()<-}}{109} +\indexentry{attributes()@\texttt {attributes()}}{109} +\indexentry{str()@\texttt {str()}}{109} +\indexentry{dim()@\texttt {dim()}}{111} +\indexentry{attr()@\texttt {attr()}}{111} +\indexentry{lm()@\texttt {lm()}}{111} +\indexentry{data()@\texttt {data()}}{111} +\indexentry{data()@\texttt {data()}}{111} +\indexentry{save()@\texttt {save()}}{112} +\indexentry{save()@\texttt {save()}}{112} +\indexentry{load()@\texttt {load()}}{112} +\indexentry{ls()@\texttt {ls()}}{112} +\indexentry{ls()@\texttt {ls()}}{113} +\indexentry{unlink()@\texttt {unlink()}}{113} +\indexentry{readRDS()@\texttt {readRDS()}}{113} +\indexentry{saveRDS()@\texttt {saveRDS()}}{113} +\indexentry{plot()@\texttt {plot()}}{113} +\indexentry{plot()@\texttt {plot()}}{114} +\indexentry{plot()@\texttt {plot()}}{115} +\indexentry{plot()@\texttt {plot()}}{115} +\indexentry{source()@\texttt {source()}}{121} +\indexentry{print()@\texttt {print()}}{121} +\indexentry{ggplot()@\texttt {ggplot()}}{121} +\indexentry{print()@\texttt {print()}}{121} +\indexentry{\textbar >@\texttt {\textbar >}}{129} +\indexentry{\textbar >@\texttt {\textbar >}}{129} +\indexentry{->@\texttt {->}}{129} +\indexentry{<-@\texttt {<-}}{129} +\indexentry{\textbar >@\texttt {\textbar >}}{129} +\indexentry{subset()@\texttt {subset()}}{130} +\indexentry{assign()@\texttt {assign()}}{130} +\indexentry{within()@\texttt {within()}}{130} +\indexentry{subset()@\texttt {subset()}}{130} +\indexentry{getElement()@\texttt {getElement()}}{131} +\indexentry{if ()@\texttt {if ()}}{132} +\indexentry{if () \ldots \ else@\texttt {if () \ldots \ else}}{132} +\indexentry{if()@\texttt {if()}}{133} +\indexentry{logical@\texttt {logical}}{133} +\indexentry{numeric@\texttt {numeric}}{135} +\indexentry{logical@\texttt {logical}}{135} +\indexentry{if ()@\texttt {if ()}}{135} +\indexentry{if () \ldots \ else@\texttt {if () \ldots \ else}}{135} +\indexentry{switch()@\texttt {switch()}}{135} +\indexentry{if ()@\texttt {if ()}}{135} +\indexentry{switch()@\texttt {switch()}}{135} +\indexentry{switch()@\texttt {switch()}}{135} +\indexentry{switch()@\texttt {switch()}}{136} +\indexentry{switch()@\texttt {switch()}}{136} +\indexentry{switch()@\texttt {switch()}}{136} +\indexentry{switch()@\texttt {switch()}}{136} +\indexentry{switch()@\texttt {switch()}}{136} +\indexentry{switch()@\texttt {switch()}}{137} +\indexentry{switch()@\texttt {switch()}}{137} +\indexentry{switch()@\texttt {switch()}}{138} +\indexentry{switch()@\texttt {switch()}}{138} +\indexentry{switch()@\texttt {switch()}}{138} +\indexentry{switch()@\texttt {switch()}}{138} +\indexentry{ifelse()@\texttt {ifelse()}}{138} +\indexentry{ifelse()@\texttt {ifelse()}}{138} +\indexentry{ifelse()@\texttt {ifelse()}}{139} +\indexentry{ifelse()@\texttt {ifelse()}}{140} +\indexentry{ifelse()@\texttt {ifelse()}}{140} +\indexentry{for@\texttt {for}}{140} +\indexentry{while@\texttt {while}}{140} +\indexentry{repeat@\texttt {repeat}}{140} +\indexentry{for@\texttt {for}}{141} +\indexentry{for@\texttt {for}}{141} +\indexentry{for@\texttt {for}}{142} +\indexentry{[ ]@\texttt {[ ]}}{142} +\indexentry{print()@\texttt {print()}}{143} +\indexentry{seq()@\texttt {seq()}}{143} +\indexentry{for@\texttt {for}}{144} +\indexentry{break()@\texttt {break()}}{144} +\indexentry{next()@\texttt {next()}}{144} +\indexentry{for@\texttt {for}}{144} +\indexentry{break()@\texttt {break()}}{144} +\indexentry{next()@\texttt {next()}}{144} +\indexentry{for@\texttt {for}}{144} +\indexentry{while@\texttt {while}}{144} +\indexentry{repeat@\texttt {repeat}}{144} +\indexentry{while@\texttt {while}}{144} +\indexentry{while@\texttt {while}}{145} \indexentry{while@\texttt {while}}{145} -\indexentry{repeat@\texttt {repeat}}{145} -\indexentry{for@\texttt {for}}{145} -\indexentry{for@\texttt {for}}{145} +\indexentry{while@\texttt {while}}{146} +\indexentry{break()@\texttt {break()}}{146} +\indexentry{repeat@\texttt {repeat}}{146} +\indexentry{break()@\texttt {break()}}{146} +\indexentry{break()@\texttt {break()}}{146} +\indexentry{break()@\texttt {break()}}{147} \indexentry{for@\texttt {for}}{147} -\indexentry{[ ]@\texttt {[ ]}}{147} -\indexentry{print()@\texttt {print()}}{148} -\indexentry{seq()@\texttt {seq()}}{149} -\indexentry{for@\texttt {for}}{149} -\indexentry{break()@\texttt {break()}}{149} -\indexentry{next()@\texttt {next()}}{149} -\indexentry{for@\texttt {for}}{149} -\indexentry{break()@\texttt {break()}}{149} -\indexentry{next()@\texttt {next()}}{149} -\indexentry{for@\texttt {for}}{149} -\indexentry{while@\texttt {while}}{149} -\indexentry{repeat@\texttt {repeat}}{149} -\indexentry{while@\texttt {while}}{150} -\indexentry{while@\texttt {while}}{151} -\indexentry{while@\texttt {while}}{151} -\indexentry{while@\texttt {while}}{151} -\indexentry{break()@\texttt {break()}}{151} -\indexentry{repeat@\texttt {repeat}}{151} -\indexentry{break()@\texttt {break()}}{151} -\indexentry{break()@\texttt {break()}}{151} -\indexentry{break()@\texttt {break()}}{152} -\indexentry{for@\texttt {for}}{152} -\indexentry{while@\texttt {while}}{152} -\indexentry{repeat@\texttt {repeat}}{152} -\indexentry{system.time()@\texttt {system.time()}}{152} -\indexentry{for@\texttt {for}}{152} -\indexentry{system.time()@\texttt {system.time()}}{153} +\indexentry{while@\texttt {while}}{147} +\indexentry{repeat@\texttt {repeat}}{147} +\indexentry{system.time()@\texttt {system.time()}}{147} +\indexentry{for@\texttt {for}}{147} +\indexentry{system.time()@\texttt {system.time()}}{148} +\indexentry{apply()@\texttt {apply()}}{149} +\indexentry{lapply()@\texttt {lapply()}}{149} +\indexentry{sapply()@\texttt {sapply()}}{149} +\indexentry{on.exit()@\texttt {on.exit()}}{150} +\indexentry{on.exit()@\texttt {on.exit()}}{150} +\indexentry{lapply()@\texttt {lapply()}}{151} +\indexentry{sapply()@\texttt {sapply()}}{151} +\indexentry{lapply()@\texttt {lapply()}}{151} +\indexentry{vapply()@\texttt {vapply()}}{151} +\indexentry{sapply()@\texttt {sapply()}}{151} +\indexentry{apply()@\texttt {apply()}}{151} +\indexentry{lapply()@\texttt {lapply()}}{151} +\indexentry{apply()@\texttt {apply()}}{151} +\indexentry{lapply()@\texttt {lapply()}}{151} +\indexentry{sapply()@\texttt {sapply()}}{151} +\indexentry{apply()@\texttt {apply()}}{151} +\indexentry{lapply()@\texttt {lapply()}}{151} +\indexentry{sapply()@\texttt {sapply()}}{151} +\indexentry{vapply()@\texttt {vapply()}}{151} +\indexentry{lapply()@\texttt {lapply()}}{152} +\indexentry{sapply()@\texttt {sapply()}}{152} +\indexentry{vapply()@\texttt {vapply()}}{153} +\indexentry{vapply()@\texttt {vapply()}}{153} +\indexentry{summary()@\texttt {summary()}}{153} +\indexentry{apply()@\texttt {apply()}}{154} +\indexentry{mean()@\texttt {mean()}}{154} +\indexentry{apply()@\texttt {apply()}}{154} +\indexentry{apply()@\texttt {apply()}}{154} +\indexentry{apply()@\texttt {apply()}}{154} +\indexentry{t()@\texttt {t()}}{155} \indexentry{apply()@\texttt {apply()}}{155} -\indexentry{lapply()@\texttt {lapply()}}{155} -\indexentry{sapply()@\texttt {sapply()}}{155} -\indexentry{on.exit()@\texttt {on.exit()}}{155} -\indexentry{on.exit()@\texttt {on.exit()}}{155} -\indexentry{lapply()@\texttt {lapply()}}{156} -\indexentry{sapply()@\texttt {sapply()}}{156} -\indexentry{lapply()@\texttt {lapply()}}{156} -\indexentry{vapply()@\texttt {vapply()}}{156} -\indexentry{sapply()@\texttt {sapply()}}{156} -\indexentry{apply()@\texttt {apply()}}{156} -\indexentry{lapply()@\texttt {lapply()}}{156} -\indexentry{apply()@\texttt {apply()}}{156} -\indexentry{lapply()@\texttt {lapply()}}{156} -\indexentry{sapply()@\texttt {sapply()}}{156} -\indexentry{apply()@\texttt {apply()}}{156} -\indexentry{lapply()@\texttt {lapply()}}{157} -\indexentry{sapply()@\texttt {sapply()}}{157} -\indexentry{vapply()@\texttt {vapply()}}{157} -\indexentry{lapply()@\texttt {lapply()}}{157} -\indexentry{sapply()@\texttt {sapply()}}{157} -\indexentry{vapply()@\texttt {vapply()}}{158} -\indexentry{vapply()@\texttt {vapply()}}{159} -\indexentry{summary()@\texttt {summary()}}{159} -\indexentry{apply()@\texttt {apply()}}{159} -\indexentry{mean()@\texttt {mean()}}{159} -\indexentry{apply()@\texttt {apply()}}{160} -\indexentry{apply()@\texttt {apply()}}{160} -\indexentry{apply()@\texttt {apply()}}{160} -\indexentry{t()@\texttt {t()}}{160} -\indexentry{apply()@\texttt {apply()}}{161} -\indexentry{mean()@\texttt {mean()}}{162} -\indexentry{var()@\texttt {var()}}{162} -\indexentry{sd()@\texttt {sd()}}{162} -\indexentry{max()@\texttt {max()}}{162} -\indexentry{min()@\texttt {min()}}{162} -\indexentry{inverse.rle()@\texttt {inverse.rle()}}{162} -\indexentry{sum()@\texttt {sum()}}{162} -\indexentry{prod()@\texttt {prod()}}{162} -\indexentry{cumsum()@\texttt {cumsum()}}{162} -\indexentry{cumprod()@\texttt {cumprod()}}{162} -\indexentry{cummax()@\texttt {cummax()}}{162} -\indexentry{cummin()@\texttt {cummin()}}{162} -\indexentry{runmed()@\texttt {runmed()}}{162} -\indexentry{diff()@\texttt {diff()}}{162} -\indexentry{diffinv()@\texttt {diffinv()}}{162} -\indexentry{factorial()@\texttt {factorial()}}{162} -\indexentry{rle()@\texttt {rle()}}{162} -\indexentry{inverse.rle()@\texttt {inverse.rle()}}{162} -\indexentry{assign()@\texttt {assign()}}{162} -\indexentry{assign()@\texttt {assign()}}{163} -\indexentry{get()@\texttt {get()}}{163} -\indexentry{mget()@\texttt {mget()}}{163} -\indexentry{assign()@\texttt {assign()}}{163} -\indexentry{get()@\texttt {get()}}{163} -\indexentry{mget()@\texttt {mget()}}{163} -\indexentry{do.call()@\texttt {do.call()}}{164} -\indexentry{anova()@\texttt {anova()}}{165} -\indexentry{do.call()@\texttt {do.call()}}{165} -\indexentry{anova()@\texttt {anova()}}{165} -\indexentry{do.call()@\texttt {do.call()}}{165} -\indexentry{anova()@\texttt {anova()}}{165} -\indexentry{print()@\texttt {print()}}{168} -\indexentry{function()@\texttt {function()}}{169} -\indexentry{lm()@\texttt {lm()}}{170} -\indexentry{lm@\texttt {lm}}{170} -\indexentry{list@\texttt {list}}{170} -\indexentry{return()@\texttt {return()}}{170} -\indexentry{return()@\texttt {return()}}{170} -\indexentry{return()@\texttt {return()}}{170} -\indexentry{<<-@\texttt {<<-}}{170} -\indexentry{assign()@\texttt {assign()}}{170} -\indexentry{environment()@\texttt {environment()}}{171} -\indexentry{environment()@\texttt {environment()}}{171} -\indexentry{SEM()@\texttt {SEM()}}{171} -\indexentry{var()@\texttt {var()}}{171} -\indexentry{SEM()@\texttt {SEM()}}{172} -\indexentry{sum()@\texttt {sum()}}{172} -\indexentry{plot()@\texttt {plot()}}{175} -\indexentry{plot()@\texttt {plot()}}{175} -\indexentry{plot()@\texttt {plot()}}{175} -\indexentry{methods()@\texttt {methods()}}{176} -\indexentry{methods()@\texttt {methods()}}{176} -\indexentry{sprintf()@\texttt {sprintf()}}{176} -\indexentry{sprintf()@\texttt {sprintf()}}{176} -\indexentry{my\_print()@\texttt {my\_print()}}{177} -\indexentry{exists()@\texttt {exists()}}{178} -\indexentry{library()@\texttt {library()}}{180} -\indexentry{install.packages()@\texttt {install.packages()}}{180} -\indexentry{install.packages()@\texttt {install.packages()}}{180} -\indexentry{update.packages()@\texttt {update.packages()}}{180} -\indexentry{install.packages()@\texttt {install.packages()}}{180} -\indexentry{update.packages()@\texttt {update.packages()}}{180} -\indexentry{install.packages()@\texttt {install.packages()}}{180} -\indexentry{setRepositories()@\texttt {setRepositories()}}{181} -\indexentry{library()@\texttt {library()}}{181} -\indexentry{citation()@\texttt {citation()}}{181} -\indexentry{library()@\texttt {library()}}{183} -\indexentry{detach()@\texttt {detach()}}{183} -\indexentry{library@\texttt {library}}{183} -\indexentry{list()@\texttt {list()}}{184} -\indexentry{search()@\texttt {search()}}{184} -\indexentry{getAnywhere()@\texttt {getAnywhere()}}{185} -\indexentry{mean()@\texttt {mean()}}{188} -\indexentry{var()@\texttt {var()}}{188} -\indexentry{sd()@\texttt {sd()}}{188} -\indexentry{median()@\texttt {median()}}{188} -\indexentry{mad()@\texttt {mad()}}{188} -\indexentry{mode()@\texttt {mode()}}{188} -\indexentry{max()@\texttt {max()}}{188} -\indexentry{min()@\texttt {min()}}{188} -\indexentry{range()@\texttt {range()}}{188} -\indexentry{quantile()@\texttt {quantile()}}{188} -\indexentry{length()@\texttt {length()}}{188} -\indexentry{summary()@\texttt {summary()}}{188} +\indexentry{mean()@\texttt {mean()}}{156} +\indexentry{var()@\texttt {var()}}{156} +\indexentry{sd()@\texttt {sd()}}{156} +\indexentry{max()@\texttt {max()}}{156} +\indexentry{min()@\texttt {min()}}{156} +\indexentry{inverse.rle()@\texttt {inverse.rle()}}{156} +\indexentry{sum()@\texttt {sum()}}{156} +\indexentry{prod()@\texttt {prod()}}{156} +\indexentry{cumsum()@\texttt {cumsum()}}{156} +\indexentry{cumprod()@\texttt {cumprod()}}{156} +\indexentry{cummax()@\texttt {cummax()}}{156} +\indexentry{cummin()@\texttt {cummin()}}{156} +\indexentry{runmed()@\texttt {runmed()}}{156} +\indexentry{diff()@\texttt {diff()}}{156} +\indexentry{diffinv()@\texttt {diffinv()}}{156} +\indexentry{factorial()@\texttt {factorial()}}{156} +\indexentry{rle()@\texttt {rle()}}{156} +\indexentry{inverse.rle()@\texttt {inverse.rle()}}{156} +\indexentry{assign()@\texttt {assign()}}{157} +\indexentry{assign()@\texttt {assign()}}{157} +\indexentry{get()@\texttt {get()}}{157} +\indexentry{mget()@\texttt {mget()}}{157} +\indexentry{assign()@\texttt {assign()}}{158} +\indexentry{get()@\texttt {get()}}{158} +\indexentry{mget()@\texttt {mget()}}{158} +\indexentry{do.call()@\texttt {do.call()}}{158} +\indexentry{anova()@\texttt {anova()}}{159} +\indexentry{do.call()@\texttt {do.call()}}{159} +\indexentry{anova()@\texttt {anova()}}{159} +\indexentry{do.call()@\texttt {do.call()}}{159} +\indexentry{anova()@\texttt {anova()}}{159} +\indexentry{print()@\texttt {print()}}{162} +\indexentry{function()@\texttt {function()}}{163} +\indexentry{lm()@\texttt {lm()}}{163} +\indexentry{lm@\texttt {lm}}{163} +\indexentry{list@\texttt {list}}{163} +\indexentry{return()@\texttt {return()}}{164} +\indexentry{return()@\texttt {return()}}{164} +\indexentry{return()@\texttt {return()}}{164} +\indexentry{<<-@\texttt {<<-}}{164} +\indexentry{assign()@\texttt {assign()}}{164} +\indexentry{environment()@\texttt {environment()}}{164} +\indexentry{environment()@\texttt {environment()}}{164} +\indexentry{SEM()@\texttt {SEM()}}{165} +\indexentry{var()@\texttt {var()}}{165} +\indexentry{SEM()@\texttt {SEM()}}{165} +\indexentry{sum()@\texttt {sum()}}{165} +\indexentry{plot()@\texttt {plot()}}{169} +\indexentry{plot()@\texttt {plot()}}{169} +\indexentry{plot()@\texttt {plot()}}{169} +\indexentry{methods()@\texttt {methods()}}{169} +\indexentry{methods()@\texttt {methods()}}{169} +\indexentry{sprintf()@\texttt {sprintf()}}{170} +\indexentry{sprintf()@\texttt {sprintf()}}{170} +\indexentry{my\_print()@\texttt {my\_print()}}{170} +\indexentry{exists()@\texttt {exists()}}{172} +\indexentry{library()@\texttt {library()}}{173} +\indexentry{install.packages()@\texttt {install.packages()}}{173} +\indexentry{install.packages()@\texttt {install.packages()}}{173} +\indexentry{update.packages()@\texttt {update.packages()}}{173} +\indexentry{install.packages()@\texttt {install.packages()}}{173} +\indexentry{update.packages()@\texttt {update.packages()}}{173} +\indexentry{install.packages()@\texttt {install.packages()}}{174} +\indexentry{setRepositories()@\texttt {setRepositories()}}{174} +\indexentry{library()@\texttt {library()}}{174} +\indexentry{citation()@\texttt {citation()}}{174} +\indexentry{library()@\texttt {library()}}{176} +\indexentry{detach()@\texttt {detach()}}{176} +\indexentry{library@\texttt {library}}{177} +\indexentry{list()@\texttt {list()}}{177} +\indexentry{search()@\texttt {search()}}{177} +\indexentry{getAnywhere()@\texttt {getAnywhere()}}{178} +\indexentry{mean()@\texttt {mean()}}{180} +\indexentry{var()@\texttt {var()}}{180} +\indexentry{sd()@\texttt {sd()}}{180} +\indexentry{median()@\texttt {median()}}{180} +\indexentry{mad()@\texttt {mad()}}{180} +\indexentry{mode()@\texttt {mode()}}{180} +\indexentry{max()@\texttt {max()}}{180} +\indexentry{min()@\texttt {min()}}{180} +\indexentry{range()@\texttt {range()}}{180} +\indexentry{quantile()@\texttt {quantile()}}{180} +\indexentry{length()@\texttt {length()}}{180} +\indexentry{summary()@\texttt {summary()}}{180} +\indexentry{summary()@\texttt {summary()}}{180} +\indexentry{boxplot.stats()@\texttt {boxplot.stats()}}{180} +\indexentry{dnorm()@\texttt {dnorm()}}{181} +\indexentry{pnorm()@\texttt {pnorm()}}{181} +\indexentry{qnorm()@\texttt {qnorm()}}{181} +\indexentry{rnorm()@\texttt {rnorm()}}{181} +\indexentry{dt()@\texttt {dt()}}{181} +\indexentry{pt()@\texttt {pt()}}{181} +\indexentry{qt()@\texttt {qt()}}{181} +\indexentry{rt()@\texttt {rt()}}{181} +\indexentry{df()@\texttt {df()}}{181} +\indexentry{pf()@\texttt {pf()}}{181} +\indexentry{qf()@\texttt {qf()}}{181} +\indexentry{rf()@\texttt {rf()}}{181} +\indexentry{dbinom()@\texttt {dbinom()}}{181} +\indexentry{pbinom()@\texttt {pbinom()}}{181} +\indexentry{qbinom()@\texttt {qbinom()}}{181} +\indexentry{rbinom()@\texttt {rbinom()}}{181} +\indexentry{dmultinom()@\texttt {dmultinom()}}{181} +\indexentry{pmultinom()@\texttt {pmultinom()}}{181} +\indexentry{qmultinom()@\texttt {qmultinom()}}{181} +\indexentry{rmultinom()@\texttt {rmultinom()}}{181} +\indexentry{dpois()@\texttt {dpois()}}{181} +\indexentry{ppois()@\texttt {ppois()}}{181} +\indexentry{qpois()@\texttt {qpois()}}{181} +\indexentry{rpois()@\texttt {rpois()}}{181} +\indexentry{dchisq()@\texttt {dchisq()}}{181} +\indexentry{pchisq()@\texttt {pchisq()}}{181} +\indexentry{qchisq()@\texttt {qchisq()}}{181} +\indexentry{rchisq()@\texttt {rchisq()}}{181} +\indexentry{dlnorm()@\texttt {dlnorm()}}{181} +\indexentry{plnorm()@\texttt {plnorm()}}{181} +\indexentry{qlnorm()@\texttt {qlnorm()}}{181} +\indexentry{rlnorm()@\texttt {rlnorm()}}{181} +\indexentry{dunif()@\texttt {dunif()}}{181} +\indexentry{punif()@\texttt {punif()}}{181} +\indexentry{qunif()@\texttt {qunif()}}{181} +\indexentry{runif()@\texttt {runif()}}{181} +\indexentry{pnorm()@\texttt {pnorm()}}{183} +\indexentry{pt()@\texttt {pt()}}{183} +\indexentry{qnorm()@\texttt {qnorm()}}{183} +\indexentry{pnorm()@\texttt {pnorm()}}{183} +\indexentry{rnorm()@\texttt {rnorm()}}{184} +\indexentry{runif()@\texttt {runif()}}{184} +\indexentry{set.seed()@\texttt {set.seed()}}{184} +\indexentry{rnorm()@\texttt {rnorm()}}{184} +\indexentry{set.seed()@\texttt {set.seed()}}{184} +\indexentry{[ ]@\texttt {[ ]}}{185} +\indexentry{sample()@\texttt {sample()}}{185} +\indexentry{cor()@\texttt {cor()}}{186} +\indexentry{rnorm()@\texttt {rnorm()}}{186} +\indexentry{matrix()@\texttt {matrix()}}{186} +\indexentry{cor()@\texttt {cor()}}{186} +\indexentry{cor.test()@\texttt {cor.test()}}{186} +\indexentry{cor()@\texttt {cor()}}{187} +\indexentry{cor.test()@\texttt {cor.test()}}{187} +\indexentry{print()@\texttt {print()}}{187} +\indexentry{str()@\texttt {str()}}{187} +\indexentry{class()@\texttt {class()}}{187} +\indexentry{attributes()@\texttt {attributes()}}{187} +\indexentry{cor()@\texttt {cor()}}{187} +\indexentry{class()@\texttt {class()}}{187} +\indexentry{attributes()@\texttt {attributes()}}{187} +\indexentry{str()@\texttt {str()}}{187} +\indexentry{cor.test()@\texttt {cor.test()}}{187} +\indexentry{cor()@\texttt {cor()}}{187} \indexentry{summary()@\texttt {summary()}}{188} -\indexentry{boxplot.stats()@\texttt {boxplot.stats()}}{188} -\indexentry{dnorm()@\texttt {dnorm()}}{189} -\indexentry{pnorm()@\texttt {pnorm()}}{189} -\indexentry{qnorm()@\texttt {qnorm()}}{189} -\indexentry{rnorm()@\texttt {rnorm()}}{189} -\indexentry{dt()@\texttt {dt()}}{189} -\indexentry{pt()@\texttt {pt()}}{189} -\indexentry{qt()@\texttt {qt()}}{189} -\indexentry{rt()@\texttt {rt()}}{189} -\indexentry{df()@\texttt {df()}}{189} -\indexentry{pf()@\texttt {pf()}}{189} -\indexentry{qf()@\texttt {qf()}}{189} -\indexentry{rf()@\texttt {rf()}}{189} -\indexentry{dbinom()@\texttt {dbinom()}}{189} -\indexentry{pbinom()@\texttt {pbinom()}}{189} -\indexentry{qbinom()@\texttt {qbinom()}}{189} -\indexentry{rbinom()@\texttt {rbinom()}}{189} -\indexentry{dmultinom()@\texttt {dmultinom()}}{189} -\indexentry{pmultinom()@\texttt {pmultinom()}}{189} -\indexentry{qmultinom()@\texttt {qmultinom()}}{189} -\indexentry{rmultinom()@\texttt {rmultinom()}}{189} -\indexentry{dpois()@\texttt {dpois()}}{189} -\indexentry{ppois()@\texttt {ppois()}}{189} -\indexentry{qpois()@\texttt {qpois()}}{189} -\indexentry{rpois()@\texttt {rpois()}}{189} -\indexentry{dchisq()@\texttt {dchisq()}}{189} -\indexentry{pchisq()@\texttt {pchisq()}}{189} -\indexentry{qchisq()@\texttt {qchisq()}}{189} -\indexentry{rchisq()@\texttt {rchisq()}}{189} -\indexentry{dlnorm()@\texttt {dlnorm()}}{189} -\indexentry{plnorm()@\texttt {plnorm()}}{189} -\indexentry{qlnorm()@\texttt {qlnorm()}}{189} -\indexentry{rlnorm()@\texttt {rlnorm()}}{189} -\indexentry{dunif()@\texttt {dunif()}}{189} -\indexentry{punif()@\texttt {punif()}}{189} -\indexentry{qunif()@\texttt {qunif()}}{189} -\indexentry{runif()@\texttt {runif()}}{189} -\indexentry{pnorm()@\texttt {pnorm()}}{191} -\indexentry{pt()@\texttt {pt()}}{191} -\indexentry{qnorm()@\texttt {qnorm()}}{191} -\indexentry{pnorm()@\texttt {pnorm()}}{191} -\indexentry{rnorm()@\texttt {rnorm()}}{192} -\indexentry{runif()@\texttt {runif()}}{192} -\indexentry{set.seed()@\texttt {set.seed()}}{192} -\indexentry{rnorm()@\texttt {rnorm()}}{192} -\indexentry{set.seed()@\texttt {set.seed()}}{192} -\indexentry{[ ]@\texttt {[ ]}}{193} -\indexentry{sample()@\texttt {sample()}}{194} -\indexentry{cor()@\texttt {cor()}}{194} -\indexentry{rnorm()@\texttt {rnorm()}}{194} -\indexentry{matrix()@\texttt {matrix()}}{194} -\indexentry{cor()@\texttt {cor()}}{195} -\indexentry{cor.test()@\texttt {cor.test()}}{195} -\indexentry{cor()@\texttt {cor()}}{195} -\indexentry{cor.test()@\texttt {cor.test()}}{195} -\indexentry{print()@\texttt {print()}}{195} +\indexentry{anova()@\texttt {anova()}}{188} +\indexentry{plot()@\texttt {plot()}}{188} +\indexentry{coef()@\texttt {coef()}}{188} +\indexentry{residuals()@\texttt {residuals()}}{188} +\indexentry{fitted()@\texttt {fitted()}}{188} +\indexentry{predict()@\texttt {predict()}}{188} +\indexentry{AIC()@\texttt {AIC()}}{188} +\indexentry{BIC()@\texttt {BIC()}}{188} +\indexentry{lm()@\texttt {lm()}}{188} +\indexentry{lm()@\texttt {lm()}}{189} +\indexentry{lm()@\texttt {lm()}}{189} +\indexentry{cars@\texttt {cars}}{189} +\indexentry{summary()@\texttt {summary()}}{190} +\indexentry{summary()@\texttt {summary()}}{190} +\indexentry{lm()@\texttt {lm()}}{191} +\indexentry{I()@\texttt {I()}}{191} +\indexentry{poly()@\texttt {poly()}}{191} +\indexentry{poly()@\texttt {poly()}}{191} +\indexentry{anova()@\texttt {anova()}}{192} +\indexentry{anova()@\texttt {anova()}}{192} +\indexentry{anova()@\texttt {anova()}}{192} +\indexentry{BIC()@\texttt {BIC()}}{192} +\indexentry{AIC()@\texttt {AIC()}}{192} +\indexentry{vcov()@\texttt {vcov()}}{192} +\indexentry{coef()@\texttt {coef()}}{192} +\indexentry{coefficients()@\texttt {coefficients()}}{192} +\indexentry{fitted()@\texttt {fitted()}}{192} +\indexentry{fitted.values()@\texttt {fitted.values()}}{192} +\indexentry{resid()@\texttt {resid()}}{192} +\indexentry{residuals()@\texttt {residuals()}}{192} +\indexentry{getCall()@\texttt {getCall()}}{192} +\indexentry{effects()@\texttt {effects()}}{192} +\indexentry{terms()@\texttt {terms()}}{192} +\indexentry{model.frame()@\texttt {model.frame()}}{192} +\indexentry{model.matrix()@\texttt {model.matrix()}}{192} +\indexentry{str()@\texttt {str()}}{193} +\indexentry{str()@\texttt {str()}}{193} +\indexentry{anova()@\texttt {anova()}}{194} +\indexentry{summary()@\texttt {summary()}}{194} +\indexentry{anova()@\texttt {anova()}}{194} +\indexentry{summary()@\texttt {summary()}}{194} +\indexentry{summary()@\texttt {summary()}}{195} \indexentry{str()@\texttt {str()}}{195} -\indexentry{class()@\texttt {class()}}{195} -\indexentry{attributes()@\texttt {attributes()}}{195} -\indexentry{cor()@\texttt {cor()}}{195} -\indexentry{class()@\texttt {class()}}{195} -\indexentry{attributes()@\texttt {attributes()}}{195} -\indexentry{str()@\texttt {str()}}{195} -\indexentry{cor.test()@\texttt {cor.test()}}{196} -\indexentry{cor()@\texttt {cor()}}{196} -\indexentry{summary()@\texttt {summary()}}{196} \indexentry{anova()@\texttt {anova()}}{196} -\indexentry{plot()@\texttt {plot()}}{196} -\indexentry{coef()@\texttt {coef()}}{197} -\indexentry{residuals()@\texttt {residuals()}}{197} -\indexentry{fitted()@\texttt {fitted()}}{197} +\indexentry{summary()@\texttt {summary()}}{196} +\indexentry{pt()@\texttt {pt()}}{196} +\indexentry{lm()@\texttt {lm()}}{196} \indexentry{predict()@\texttt {predict()}}{197} -\indexentry{AIC()@\texttt {AIC()}}{197} -\indexentry{BIC()@\texttt {BIC()}}{197} -\indexentry{lm()@\texttt {lm()}}{197} -\indexentry{lm()@\texttt {lm()}}{197} -\indexentry{lm()@\texttt {lm()}}{197} -\indexentry{cars@\texttt {cars}}{198} +\indexentry{predict()@\texttt {predict()}}{197} +\indexentry{predict()@\texttt {predict()}}{197} +\indexentry{predict()@\texttt {predict()}}{197} +\indexentry{predict()@\texttt {predict()}}{197} +\indexentry{InsectSprays@\texttt {InsectSprays}}{197} +\indexentry{anova()@\texttt {anova()}}{198} +\indexentry{summary()@\texttt {summary()}}{198} +\indexentry{summary()@\texttt {summary()}}{198} +\indexentry{aov()@\texttt {aov()}}{198} +\indexentry{lm()@\texttt {lm()}}{198} +\indexentry{anova()@\texttt {anova()}}{198} +\indexentry{coef()@\texttt {coef()}}{198} \indexentry{summary()@\texttt {summary()}}{198} -\indexentry{summary()@\texttt {summary()}}{199} -\indexentry{lm()@\texttt {lm()}}{200} -\indexentry{I()@\texttt {I()}}{200} -\indexentry{poly()@\texttt {poly()}}{200} -\indexentry{poly()@\texttt {poly()}}{200} -\indexentry{anova()@\texttt {anova()}}{200} -\indexentry{anova()@\texttt {anova()}}{200} +\indexentry{factor()@\texttt {factor()}}{199} +\indexentry{ordered()@\texttt {ordered()}}{199} +\indexentry{contr.treatment()@\texttt {contr.treatment()}}{199} +\indexentry{contr.treatment()@\texttt {contr.treatment()}}{199} +\indexentry{contr.SAS()@\texttt {contr.SAS()}}{199} +\indexentry{contr.helmert()@\texttt {contr.helmert()}}{199} +\indexentry{contr.sum()@\texttt {contr.sum()}}{200} +\indexentry{contr.SAS()@\texttt {contr.SAS()}}{201} +\indexentry{contr.treatment()@\texttt {contr.treatment()}}{201} +\indexentry{contr.SAS()@\texttt {contr.SAS()}}{201} +\indexentry{contr.treatment()@\texttt {contr.treatment()}}{201} +\indexentry{contr.poly()@\texttt {contr.poly()}}{201} +\indexentry{contr.helmert()@\texttt {contr.helmert()}}{201} \indexentry{anova()@\texttt {anova()}}{201} -\indexentry{BIC()@\texttt {BIC()}}{201} -\indexentry{AIC()@\texttt {AIC()}}{201} -\indexentry{vcov()@\texttt {vcov()}}{201} -\indexentry{coef()@\texttt {coef()}}{201} -\indexentry{coefficients()@\texttt {coefficients()}}{201} -\indexentry{fitted()@\texttt {fitted()}}{201} -\indexentry{fitted.values()@\texttt {fitted.values()}}{201} -\indexentry{resid()@\texttt {resid()}}{201} -\indexentry{residuals()@\texttt {residuals()}}{201} -\indexentry{getCall()@\texttt {getCall()}}{201} -\indexentry{effects()@\texttt {effects()}}{201} -\indexentry{terms()@\texttt {terms()}}{201} -\indexentry{model.frame()@\texttt {model.frame()}}{201} -\indexentry{model.matrix()@\texttt {model.matrix()}}{201} -\indexentry{str()@\texttt {str()}}{202} -\indexentry{str()@\texttt {str()}}{202} -\indexentry{anova()@\texttt {anova()}}{202} -\indexentry{summary()@\texttt {summary()}}{202} -\indexentry{anova()@\texttt {anova()}}{202} -\indexentry{summary()@\texttt {summary()}}{202} -\indexentry{summary()@\texttt {summary()}}{203} -\indexentry{str()@\texttt {str()}}{203} -\indexentry{anova()@\texttt {anova()}}{204} +\indexentry{update()@\texttt {update()}}{201} +\indexentry{update()@\texttt {update()}}{202} +\indexentry{getCall()@\texttt {getCall()}}{202} +\indexentry{update()@\texttt {update()}}{202} +\indexentry{getCall()@\texttt {getCall()}}{202} +\indexentry{update()@\texttt {update()}}{202} +\indexentry{update()@\texttt {update()}}{202} +\indexentry{update()@\texttt {update()}}{203} +\indexentry{anova()@\texttt {anova()}}{203} +\indexentry{update()@\texttt {update()}}{203} +\indexentry{update()@\texttt {update()}}{203} +\indexentry{update()@\texttt {update()}}{203} +\indexentry{step()@\texttt {step()}}{203} +\indexentry{step()@\texttt {step()}}{203} +\indexentry{step()@\texttt {step()}}{203} \indexentry{summary()@\texttt {summary()}}{204} -\indexentry{pt()@\texttt {pt()}}{205} -\indexentry{lm()@\texttt {lm()}}{205} -\indexentry{predict()@\texttt {predict()}}{205} -\indexentry{predict()@\texttt {predict()}}{205} -\indexentry{predict()@\texttt {predict()}}{205} -\indexentry{predict()@\texttt {predict()}}{205} -\indexentry{predict()@\texttt {predict()}}{205} +\indexentry{update()@\texttt {update()}}{205} +\indexentry{step()@\texttt {step()}}{205} +\indexentry{glm()@\texttt {glm()}}{206} \indexentry{InsectSprays@\texttt {InsectSprays}}{206} -\indexentry{anova()@\texttt {anova()}}{207} -\indexentry{summary()@\texttt {summary()}}{207} -\indexentry{summary()@\texttt {summary()}}{207} -\indexentry{aov()@\texttt {aov()}}{207} -\indexentry{lm()@\texttt {lm()}}{207} -\indexentry{anova()@\texttt {anova()}}{207} -\indexentry{coef()@\texttt {coef()}}{207} -\indexentry{summary()@\texttt {summary()}}{207} -\indexentry{factor()@\texttt {factor()}}{207} -\indexentry{ordered()@\texttt {ordered()}}{207} -\indexentry{contr.treatment()@\texttt {contr.treatment()}}{208} -\indexentry{contr.treatment()@\texttt {contr.treatment()}}{208} -\indexentry{contr.SAS()@\texttt {contr.SAS()}}{208} -\indexentry{contr.helmert()@\texttt {contr.helmert()}}{208} -\indexentry{contr.sum()@\texttt {contr.sum()}}{209} -\indexentry{contr.SAS()@\texttt {contr.SAS()}}{209} -\indexentry{contr.treatment()@\texttt {contr.treatment()}}{209} -\indexentry{contr.SAS()@\texttt {contr.SAS()}}{209} -\indexentry{contr.treatment()@\texttt {contr.treatment()}}{209} -\indexentry{contr.poly()@\texttt {contr.poly()}}{209} -\indexentry{contr.helmert()@\texttt {contr.helmert()}}{209} -\indexentry{anova()@\texttt {anova()}}{209} -\indexentry{update()@\texttt {update()}}{210} -\indexentry{update()@\texttt {update()}}{210} -\indexentry{getCall()@\texttt {getCall()}}{210} -\indexentry{update()@\texttt {update()}}{210} -\indexentry{getCall()@\texttt {getCall()}}{210} -\indexentry{update()@\texttt {update()}}{210} -\indexentry{update()@\texttt {update()}}{210} -\indexentry{update()@\texttt {update()}}{212} -\indexentry{anova()@\texttt {anova()}}{212} -\indexentry{update()@\texttt {update()}}{212} -\indexentry{update()@\texttt {update()}}{212} -\indexentry{update()@\texttt {update()}}{212} -\indexentry{step()@\texttt {step()}}{212} -\indexentry{step()@\texttt {step()}}{212} -\indexentry{step()@\texttt {step()}}{212} -\indexentry{summary()@\texttt {summary()}}{212} -\indexentry{update()@\texttt {update()}}{214} -\indexentry{step()@\texttt {step()}}{214} -\indexentry{glm()@\texttt {glm()}}{214} -\indexentry{InsectSprays@\texttt {InsectSprays}}{215} -\indexentry{anova()@\texttt {anova()}}{215} -\indexentry{plot()@\texttt {plot()}}{216} -\indexentry{nls()@\texttt {nls()}}{217} -\indexentry{nls@\texttt {nls}}{218} -\indexentry{nlme@\texttt {nlme}}{218} -\indexentry{nls()@\texttt {nls()}}{218} -\indexentry{SSmicmen()@\texttt {SSmicmen()}}{218} -\indexentry{Puromycin@\texttt {Puromycin}}{218} -\indexentry{spline()@\texttt {spline()}}{221} -\indexentry{smooth.spline()@\texttt {smooth.spline()}}{221} -\indexentry{smooth.spline()@\texttt {smooth.spline()}}{221} -\indexentry{loess@\texttt {loess}}{221} -\indexentry{plot()@\texttt {plot()}}{222} -\indexentry{formula@\texttt {formula}}{222} -\indexentry{call@\texttt {call}}{222} -\indexentry{formula@\texttt {formula}}{223} -\indexentry{is.empty.model()@\texttt {is.empty.model()}}{223} -\indexentry{numeric@\texttt {numeric}}{223} -\indexentry{formula@\texttt {formula}}{223} -\indexentry{length()@\texttt {length()}}{224} -\indexentry{list@\texttt {list}}{224} -\indexentry{length()@\texttt {length()}}{224} -\indexentry{length()@\texttt {length()}}{224} -\indexentry{length()@\texttt {length()}}{224} -\indexentry{is.empty.model()@\texttt {is.empty.model()}}{224} -\indexentry{I()@\texttt {I()}}{225} -\indexentry{log()@\texttt {log()}}{225} -\indexentry{terms()@\texttt {terms()}}{227} -\indexentry{npk@\texttt {npk}}{227} -\indexentry{"formula"@\texttt {"formula"}}{228} -\indexentry{inherits()@\texttt {inherits()}}{228} -\indexentry{as.formula()@\texttt {as.formula()}}{229} -\indexentry{as.formula()@\texttt {as.formula()}}{229} -\indexentry{as.formula()@\texttt {as.formula()}}{229} -\indexentry{update()@\texttt {update()}}{230} -\indexentry{"ts"@\texttt {"ts"}}{232} -\indexentry{ts()@\texttt {ts()}}{232} -\indexentry{as.ts()@\texttt {as.ts()}}{232} -\indexentry{nottem@\texttt {nottem}}{233} -\indexentry{decompose()@\texttt {decompose()}}{234} -\indexentry{stl()@\texttt {stl()}}{234} -\indexentry{stl()@\texttt {stl()}}{234} -\indexentry{summary()@\texttt {summary()}}{234} -\indexentry{aov()@\texttt {aov()}}{235} -\indexentry{lm()@\texttt {lm()}}{235} -\indexentry{manova()@\texttt {manova()}}{235} -\indexentry{aov()@\texttt {aov()}}{235} -\indexentry{iris@\texttt {iris}}{235} -\indexentry{prcomp()@\texttt {prcomp()}}{237} -\indexentry{biplot()@\texttt {biplot()}}{238} -\indexentry{prcomp()@\texttt {prcomp()}}{239} -\indexentry{eurodist@\texttt {eurodist}}{239} -\indexentry{dist@\texttt {dist}}{241} -\indexentry{hclust()@\texttt {hclust()}}{241} -\indexentry{eurodist@\texttt {eurodist}}{241} -\indexentry{dist@\texttt {dist}}{241} -\indexentry{cutree()@\texttt {cutree()}}{242} -\indexentry{hclust()@\texttt {hclust()}}{242} -\indexentry{subset()@\texttt {subset()}}{247} -\indexentry{[ , ]@\texttt {[ , ]}}{247} -\indexentry{[[ ]]@\texttt {[[ ]]}}{247} -\indexentry{tbl@\texttt {tbl}}{249} -\indexentry{data.frame@\texttt {data.frame}}{249} -\indexentry{list@\texttt {list}}{249} -\indexentry{matrix@\texttt {matrix}}{249} -\indexentry{tbl@\texttt {tbl}}{249} -\indexentry{data.frame@\texttt {data.frame}}{249} -\indexentry{tibble()@\texttt {tibble()}}{250} -\indexentry{as\_tibble()@\texttt {as\_tibble()}}{250} -\indexentry{is\_tibble()@\texttt {is\_tibble()}}{250} -\indexentry{tibble@\texttt {tibble}}{250} -\indexentry{tbl\_df@\texttt {tbl\_df}}{250} -\indexentry{tibble()@\texttt {tibble()}}{250} -\indexentry{data.frame()@\texttt {data.frame()}}{250} -\indexentry{data.frame()@\texttt {data.frame()}}{250} -\indexentry{read.table()@\texttt {read.table()}}{250} -\indexentry{tibble@\texttt {tibble}}{251} -\indexentry{print()@\texttt {print()}}{251} -\indexentry{options()@\texttt {options()}}{251} -\indexentry{print()@\texttt {print()}}{251} -\indexentry{as.data.frame()@\texttt {as.data.frame()}}{252} -\indexentry{identical()@\texttt {identical()}}{252} -\indexentry{class()@\texttt {class()}}{252} -\indexentry{tibble()@\texttt {tibble()}}{253} -\indexentry{tibble()@\texttt {tibble()}}{253} -\indexentry{tibble()@\texttt {tibble()}}{254} -\indexentry{data.frame()@\texttt {data.frame()}}{254} -\indexentry{data.frame()@\texttt {data.frame()}}{254} -\indexentry{tibble()@\texttt {tibble()}}{254} -\indexentry{I()@\texttt {I()}}{254} -\indexentry{\textbar >@\texttt {\textbar >}}{255} -\indexentry{\%>\%@\texttt {\%>\%}}{255} -\indexentry{\%>\%@\texttt {\%>\%}}{255} -\indexentry{\textbar >@\texttt {\textbar >}}{255} -\indexentry{\%>\%@\texttt {\%>\%}}{255} -\indexentry{\%T>\%@\texttt {\%T>\%}}{255} -\indexentry{\%<>\%@\texttt {\%<>\%}}{255} -\indexentry{\%>\%@\texttt {\%>\%}}{255} -\indexentry{\%.>\%@\texttt {\%.>\%}}{255} -\indexentry{\%>\%@\texttt {\%>\%}}{256} -\indexentry{\%.>\%@\texttt {\%.>\%}}{256} -\indexentry{\%>\%@\texttt {\%>\%}}{256} -\indexentry{\textbar >@\texttt {\textbar >}}{256} -\indexentry{\%.>\%@\texttt {\%.>\%}}{256} -\indexentry{\textbar >@\texttt {\textbar >}}{256} -\indexentry{\%>\%@\texttt {\%>\%}}{256} -\indexentry{\%.>\%@\texttt {\%.>\%}}{256} -\indexentry{\%.>\%@\texttt {\%.>\%}}{256} -\indexentry{\textbar >@\texttt {\textbar >}}{257} -\indexentry{\%>\%@\texttt {\%>\%}}{257} -\indexentry{\%.>\%@\texttt {\%.>\%}}{257} -\indexentry{\textbar >@\texttt {\textbar >}}{257} -\indexentry{\%.>\%@\texttt {\%.>\%}}{257} -\indexentry{\%>\%@\texttt {\%>\%}}{257} -\indexentry{\textbar >@\texttt {\textbar >}}{257} -\indexentry{\textbar >@\texttt {\textbar >}}{257} -\indexentry{\textbar >@\texttt {\textbar >}}{257} -\indexentry{\%>\%@\texttt {\%>\%}}{257} -\indexentry{print()@\texttt {print()}}{257} -\indexentry{print()@\texttt {print()}}{257} -\indexentry{\textbar >@\texttt {\textbar >}}{257} -\indexentry{\textbar >@\texttt {\textbar >}}{258} -\indexentry{\%>\%@\texttt {\%>\%}}{258} -\indexentry{\textbar >@\texttt {\textbar >}}{258} -\indexentry{\%>\%@\texttt {\%>\%}}{258} -\indexentry{\%.>\%@\texttt {\%.>\%}}{258} -\indexentry{\%>\%@\texttt {\%>\%}}{258} -\indexentry{assign()@\texttt {assign()}}{258} -\indexentry{\textbar >@\texttt {\textbar >}}{258} -\indexentry{\%>\%@\texttt {\%>\%}}{258} -\indexentry{plot()@\texttt {plot()}}{259} -\indexentry{iris@\texttt {iris}}{259} -\indexentry{"tb"@\texttt {"tb"}}{259} -\indexentry{pivot\_longer()@\texttt {pivot\_longer()}}{259} -\indexentry{pivot\_longer()@\texttt {pivot\_longer()}}{259} -\indexentry{pivot\_wider()@\texttt {pivot\_wider()}}{260} -\indexentry{pivot\_longer()@\texttt {pivot\_longer()}}{260} -\indexentry{unnest()@\texttt {unnest()}}{260} -\indexentry{gather()@\texttt {gather()}}{260} -\indexentry{spread()@\texttt {spread()}}{260} -\indexentry{pivot\_longer()@\texttt {pivot\_longer()}}{260} -\indexentry{pivot\_wider()@\texttt {pivot\_wider()}}{260} -\indexentry{pivot\_longer()@\texttt {pivot\_longer()}}{261} -\indexentry{pivot\_wider()@\texttt {pivot\_wider()}}{261} -\indexentry{tibble@\texttt {tibble}}{261} -\indexentry{mutate()@\texttt {mutate()}}{261} -\indexentry{transmute()@\texttt {transmute()}}{261} -\indexentry{mutate()@\texttt {mutate()}}{262} -\indexentry{transmute()@\texttt {transmute()}}{262} -\indexentry{tibble()@\texttt {tibble()}}{262} -\indexentry{mutate()@\texttt {mutate()}}{262} -\indexentry{transmute()@\texttt {transmute()}}{262} -\indexentry{str\_extract()@\texttt {str\_extract()}}{262} -\indexentry{mutate()@\texttt {mutate()}}{262} -\indexentry{\%.>\%@\texttt {\%.>\%}}{262} -\indexentry{arrange()@\texttt {arrange()}}{262} -\indexentry{sort()@\texttt {sort()}}{262} -\indexentry{order()@\texttt {order()}}{262} -\indexentry{filter()@\texttt {filter()}}{263} -\indexentry{subset()@\texttt {subset()}}{263} -\indexentry{slice()@\texttt {slice()}}{263} -\indexentry{select()@\texttt {select()}}{263} -\indexentry{select()@\texttt {select()}}{263} -\indexentry{select()@\texttt {select()}}{263} -\indexentry{starts\_with()@\texttt {starts\_with()}}{263} -\indexentry{ends\_with()@\texttt {ends\_with()}}{263} -\indexentry{contains()@\texttt {contains()}}{263} -\indexentry{matches()@\texttt {matches()}}{263} -\indexentry{rename()@\texttt {rename()}}{264} -\indexentry{names()@\texttt {names()}}{264} -\indexentry{names()<-@\texttt {names()<-}}{264} -\indexentry{aggregate()@\texttt {aggregate()}}{264} -\indexentry{group\_by()@\texttt {group\_by()}}{264} -\indexentry{summarise()@\texttt {summarise()}}{264} -\indexentry{==@\texttt {==}}{266} -\indexentry{group\_by()@\texttt {group\_by()}}{266} -\indexentry{ungroup()@\texttt {ungroup()}}{266} -\indexentry{[ , ]@\texttt {[ , ]}}{266} -\indexentry{full\_join()@\texttt {full\_join()}}{266} -\indexentry{left\_join()@\texttt {left\_join()}}{266} -\indexentry{right\_join()@\texttt {right\_join()}}{266} -\indexentry{inner\_join()@\texttt {inner\_join()}}{266} -\indexentry{semi\_join()@\texttt {semi\_join()}}{268} -\indexentry{anti\_join()@\texttt {anti\_join()}}{268} -\indexentry{geom\_point()@\texttt {geom\_point()}}{275} -\indexentry{geom\_line()@\texttt {geom\_line()}}{275} -\indexentry{position\_identity()@\texttt {position\_identity()}}{275} -\indexentry{position\_stack()@\texttt {position\_stack()}}{275} -\indexentry{stat\_smooth()@\texttt {stat\_smooth()}}{275} -\indexentry{stat\_summary()@\texttt {stat\_summary()}}{275} -\indexentry{scale\_color\_continuous()@\texttt {scale\_color\_continuous()}}{275} -\indexentry{+@\texttt {+}}{276} -\indexentry{\%+\%@\texttt {\%+\%}}{276} -\indexentry{aes()@\texttt {aes()}}{277} -\indexentry{stat\_indentity()@\texttt {stat\_indentity()}}{277} -\indexentry{stat\_identity()@\texttt {stat\_identity()}}{278} -\indexentry{stat\_identity()@\texttt {stat\_identity()}}{278} -\indexentry{geom\_smooth()@\texttt {geom\_smooth()}}{278} -\indexentry{stat\_smooth()@\texttt {stat\_smooth()}}{278} -\indexentry{mtcars@\texttt {mtcars}}{279} -\indexentry{geom\_point()@\texttt {geom\_point()}}{279} -\indexentry{geom\_line()@\texttt {geom\_line()}}{281} -\indexentry{geom\_point()@\texttt {geom\_point()}}{281} -\indexentry{geom\_line()@\texttt {geom\_line()}}{281} -\indexentry{ggplot()@\texttt {ggplot()}}{285} -\indexentry{ggplot()@\texttt {ggplot()}}{288} -\indexentry{aes()@\texttt {aes()}}{288} -\indexentry{ggplot()@\texttt {ggplot()}}{288} -\indexentry{ggplot()@\texttt {ggplot()}}{288} -\indexentry{\textbar >@\texttt {\textbar >}}{289} -\indexentry{stat()@\texttt {stat()}}{289} -\indexentry{stage()@\texttt {stage()}}{289} -\indexentry{after\_stat()@\texttt {after\_stat()}}{289} -\indexentry{after\_scale()@\texttt {after\_scale()}}{289} -\indexentry{after\_stat()@\texttt {after\_stat()}}{289} -\indexentry{stat()@\texttt {stat()}}{289} -\indexentry{after\_stat()@\texttt {after\_stat()}}{289} -\indexentry{after\_scale()@\texttt {after\_scale()}}{289} -\indexentry{rlm()@\texttt {rlm()}}{290} -\indexentry{after\_stat()@\texttt {after\_stat()}}{290} -\indexentry{stat\_fit\_residuals()@\texttt {stat\_fit\_residuals()}}{290} -\indexentry{geom\_point()@\texttt {geom\_point()}}{290} -\indexentry{stage()@\texttt {stage()}}{290} -\indexentry{geom\_point()@\texttt {geom\_point()}}{291} -\indexentry{stat\_fit\_residuals()@\texttt {stat\_fit\_residuals()}}{291} -\indexentry{stat\_fit\_residuals()@\texttt {stat\_fit\_residuals()}}{291} -\indexentry{geom\_point()@\texttt {geom\_point()}}{291} -\indexentry{geom\_point()@\texttt {geom\_point()}}{291} -\indexentry{geom\_line()@\texttt {geom\_line()}}{291} +\indexentry{anova()@\texttt {anova()}}{206} +\indexentry{plot()@\texttt {plot()}}{207} +\indexentry{nls()@\texttt {nls()}}{208} +\indexentry{nls@\texttt {nls}}{209} +\indexentry{nlme@\texttt {nlme}}{209} +\indexentry{nls()@\texttt {nls()}}{209} +\indexentry{SSmicmen()@\texttt {SSmicmen()}}{209} +\indexentry{Puromycin@\texttt {Puromycin}}{209} +\indexentry{spline()@\texttt {spline()}}{212} +\indexentry{smooth.spline()@\texttt {smooth.spline()}}{212} +\indexentry{smooth.spline()@\texttt {smooth.spline()}}{212} +\indexentry{loess@\texttt {loess}}{212} +\indexentry{plot()@\texttt {plot()}}{213} +\indexentry{formula@\texttt {formula}}{213} +\indexentry{call@\texttt {call}}{213} +\indexentry{formula@\texttt {formula}}{214} +\indexentry{is.empty.model()@\texttt {is.empty.model()}}{214} +\indexentry{numeric@\texttt {numeric}}{214} +\indexentry{formula@\texttt {formula}}{214} +\indexentry{length()@\texttt {length()}}{214} +\indexentry{list@\texttt {list}}{215} +\indexentry{length()@\texttt {length()}}{215} +\indexentry{length()@\texttt {length()}}{215} +\indexentry{length()@\texttt {length()}}{215} +\indexentry{is.empty.model()@\texttt {is.empty.model()}}{215} +\indexentry{I()@\texttt {I()}}{215} +\indexentry{log()@\texttt {log()}}{215} +\indexentry{terms()@\texttt {terms()}}{217} +\indexentry{npk@\texttt {npk}}{218} +\indexentry{"formula"@\texttt {"formula"}}{219} +\indexentry{inherits()@\texttt {inherits()}}{219} +\indexentry{as.formula()@\texttt {as.formula()}}{219} +\indexentry{as.formula()@\texttt {as.formula()}}{219} +\indexentry{as.formula()@\texttt {as.formula()}}{220} +\indexentry{update()@\texttt {update()}}{220} +\indexentry{"ts"@\texttt {"ts"}}{222} +\indexentry{ts()@\texttt {ts()}}{222} +\indexentry{as.ts()@\texttt {as.ts()}}{222} +\indexentry{nottem@\texttt {nottem}}{223} +\indexentry{decompose()@\texttt {decompose()}}{224} +\indexentry{stl()@\texttt {stl()}}{224} +\indexentry{stl()@\texttt {stl()}}{225} +\indexentry{summary()@\texttt {summary()}}{225} +\indexentry{aov()@\texttt {aov()}}{226} +\indexentry{lm()@\texttt {lm()}}{226} +\indexentry{manova()@\texttt {manova()}}{226} +\indexentry{aov()@\texttt {aov()}}{226} +\indexentry{iris@\texttt {iris}}{226} +\indexentry{prcomp()@\texttt {prcomp()}}{227} +\indexentry{biplot()@\texttt {biplot()}}{228} +\indexentry{prcomp()@\texttt {prcomp()}}{229} +\indexentry{eurodist@\texttt {eurodist}}{229} +\indexentry{dist@\texttt {dist}}{231} +\indexentry{hclust()@\texttt {hclust()}}{231} +\indexentry{eurodist@\texttt {eurodist}}{231} +\indexentry{dist@\texttt {dist}}{231} +\indexentry{cutree()@\texttt {cutree()}}{231} +\indexentry{hclust()@\texttt {hclust()}}{232} +\indexentry{subset()@\texttt {subset()}}{235} +\indexentry{[ , ]@\texttt {[ , ]}}{235} +\indexentry{[[ ]]@\texttt {[[ ]]}}{235} +\indexentry{tbl@\texttt {tbl}}{237} +\indexentry{data.frame@\texttt {data.frame}}{237} +\indexentry{list@\texttt {list}}{237} +\indexentry{matrix@\texttt {matrix}}{237} +\indexentry{tbl@\texttt {tbl}}{237} +\indexentry{data.frame@\texttt {data.frame}}{237} +\indexentry{tibble()@\texttt {tibble()}}{238} +\indexentry{as\_tibble()@\texttt {as\_tibble()}}{238} +\indexentry{is\_tibble()@\texttt {is\_tibble()}}{238} +\indexentry{tibble@\texttt {tibble}}{238} +\indexentry{tbl\_df@\texttt {tbl\_df}}{238} +\indexentry{tibble()@\texttt {tibble()}}{238} +\indexentry{data.frame()@\texttt {data.frame()}}{238} +\indexentry{data.frame()@\texttt {data.frame()}}{238} +\indexentry{read.table()@\texttt {read.table()}}{238} +\indexentry{tibble@\texttt {tibble}}{238} +\indexentry{print()@\texttt {print()}}{239} +\indexentry{options()@\texttt {options()}}{239} +\indexentry{print()@\texttt {print()}}{239} +\indexentry{as.data.frame()@\texttt {as.data.frame()}}{240} +\indexentry{identical()@\texttt {identical()}}{240} +\indexentry{class()@\texttt {class()}}{240} +\indexentry{tibble()@\texttt {tibble()}}{241} +\indexentry{tibble()@\texttt {tibble()}}{241} +\indexentry{tibble()@\texttt {tibble()}}{241} +\indexentry{data.frame()@\texttt {data.frame()}}{241} +\indexentry{data.frame()@\texttt {data.frame()}}{241} +\indexentry{tibble()@\texttt {tibble()}}{241} +\indexentry{I()@\texttt {I()}}{241} +\indexentry{\textbar >@\texttt {\textbar >}}{242} +\indexentry{\%>\%@\texttt {\%>\%}}{242} +\indexentry{\%>\%@\texttt {\%>\%}}{242} +\indexentry{\textbar >@\texttt {\textbar >}}{242} +\indexentry{\%>\%@\texttt {\%>\%}}{242} +\indexentry{\%T>\%@\texttt {\%T>\%}}{243} +\indexentry{\%<>\%@\texttt {\%<>\%}}{243} +\indexentry{\%>\%@\texttt {\%>\%}}{243} +\indexentry{\%.>\%@\texttt {\%.>\%}}{243} +\indexentry{\%>\%@\texttt {\%>\%}}{243} +\indexentry{\%.>\%@\texttt {\%.>\%}}{243} +\indexentry{\%>\%@\texttt {\%>\%}}{243} +\indexentry{\textbar >@\texttt {\textbar >}}{243} +\indexentry{\%.>\%@\texttt {\%.>\%}}{243} +\indexentry{\textbar >@\texttt {\textbar >}}{243} +\indexentry{\%>\%@\texttt {\%>\%}}{243} +\indexentry{\%.>\%@\texttt {\%.>\%}}{244} +\indexentry{\%.>\%@\texttt {\%.>\%}}{244} +\indexentry{\textbar >@\texttt {\textbar >}}{244} +\indexentry{\%>\%@\texttt {\%>\%}}{244} +\indexentry{\%.>\%@\texttt {\%.>\%}}{244} +\indexentry{\textbar >@\texttt {\textbar >}}{244} +\indexentry{\%.>\%@\texttt {\%.>\%}}{244} +\indexentry{\%>\%@\texttt {\%>\%}}{244} +\indexentry{\textbar >@\texttt {\textbar >}}{244} +\indexentry{\textbar >@\texttt {\textbar >}}{244} +\indexentry{\textbar >@\texttt {\textbar >}}{244} +\indexentry{\%>\%@\texttt {\%>\%}}{244} +\indexentry{print()@\texttt {print()}}{244} +\indexentry{print()@\texttt {print()}}{244} +\indexentry{\textbar >@\texttt {\textbar >}}{245} +\indexentry{\textbar >@\texttt {\textbar >}}{245} +\indexentry{\%>\%@\texttt {\%>\%}}{245} +\indexentry{\textbar >@\texttt {\textbar >}}{245} +\indexentry{\%>\%@\texttt {\%>\%}}{245} +\indexentry{\%.>\%@\texttt {\%.>\%}}{245} +\indexentry{\%>\%@\texttt {\%>\%}}{245} +\indexentry{assign()@\texttt {assign()}}{245} +\indexentry{\textbar >@\texttt {\textbar >}}{245} +\indexentry{\%>\%@\texttt {\%>\%}}{246} +\indexentry{plot()@\texttt {plot()}}{246} +\indexentry{iris@\texttt {iris}}{247} +\indexentry{"tb"@\texttt {"tb"}}{247} +\indexentry{pivot\_longer()@\texttt {pivot\_longer()}}{247} +\indexentry{pivot\_longer()@\texttt {pivot\_longer()}}{247} +\indexentry{pivot\_wider()@\texttt {pivot\_wider()}}{247} +\indexentry{pivot\_longer()@\texttt {pivot\_longer()}}{247} +\indexentry{unnest()@\texttt {unnest()}}{247} +\indexentry{gather()@\texttt {gather()}}{248} +\indexentry{spread()@\texttt {spread()}}{248} +\indexentry{pivot\_longer()@\texttt {pivot\_longer()}}{248} +\indexentry{pivot\_wider()@\texttt {pivot\_wider()}}{248} +\indexentry{pivot\_longer()@\texttt {pivot\_longer()}}{248} +\indexentry{pivot\_wider()@\texttt {pivot\_wider()}}{248} +\indexentry{tibble@\texttt {tibble}}{248} +\indexentry{mutate()@\texttt {mutate()}}{249} +\indexentry{transmute()@\texttt {transmute()}}{249} +\indexentry{mutate()@\texttt {mutate()}}{249} +\indexentry{transmute()@\texttt {transmute()}}{249} +\indexentry{tibble()@\texttt {tibble()}}{249} +\indexentry{mutate()@\texttt {mutate()}}{249} +\indexentry{transmute()@\texttt {transmute()}}{249} +\indexentry{str\_extract()@\texttt {str\_extract()}}{249} +\indexentry{mutate()@\texttt {mutate()}}{249} +\indexentry{\%.>\%@\texttt {\%.>\%}}{249} +\indexentry{arrange()@\texttt {arrange()}}{249} +\indexentry{sort()@\texttt {sort()}}{249} +\indexentry{order()@\texttt {order()}}{249} +\indexentry{filter()@\texttt {filter()}}{250} +\indexentry{subset()@\texttt {subset()}}{250} +\indexentry{slice()@\texttt {slice()}}{250} +\indexentry{select()@\texttt {select()}}{250} +\indexentry{select()@\texttt {select()}}{250} +\indexentry{select()@\texttt {select()}}{250} +\indexentry{starts\_with()@\texttt {starts\_with()}}{250} +\indexentry{ends\_with()@\texttt {ends\_with()}}{250} +\indexentry{contains()@\texttt {contains()}}{250} +\indexentry{matches()@\texttt {matches()}}{250} +\indexentry{rename()@\texttt {rename()}}{251} +\indexentry{names()@\texttt {names()}}{251} +\indexentry{names()<-@\texttt {names()<-}}{251} +\indexentry{aggregate()@\texttt {aggregate()}}{251} +\indexentry{group\_by()@\texttt {group\_by()}}{251} +\indexentry{summarise()@\texttt {summarise()}}{251} +\indexentry{==@\texttt {==}}{252} +\indexentry{group\_by()@\texttt {group\_by()}}{252} +\indexentry{ungroup()@\texttt {ungroup()}}{253} +\indexentry{[ , ]@\texttt {[ , ]}}{253} +\indexentry{full\_join()@\texttt {full\_join()}}{253} +\indexentry{left\_join()@\texttt {left\_join()}}{253} +\indexentry{right\_join()@\texttt {right\_join()}}{253} +\indexentry{inner\_join()@\texttt {inner\_join()}}{253} +\indexentry{semi\_join()@\texttt {semi\_join()}}{255} +\indexentry{anti\_join()@\texttt {anti\_join()}}{255} +\indexentry{geom\_point()@\texttt {geom\_point()}}{261} +\indexentry{geom\_line()@\texttt {geom\_line()}}{261} +\indexentry{position\_identity()@\texttt {position\_identity()}}{261} +\indexentry{position\_stack()@\texttt {position\_stack()}}{261} +\indexentry{stat\_smooth()@\texttt {stat\_smooth()}}{261} +\indexentry{stat\_summary()@\texttt {stat\_summary()}}{261} +\indexentry{scale\_color\_continuous()@\texttt {scale\_color\_continuous()}}{261} +\indexentry{+@\texttt {+}}{262} +\indexentry{\%+\%@\texttt {\%+\%}}{262} +\indexentry{aes()@\texttt {aes()}}{263} +\indexentry{stat\_indentity()@\texttt {stat\_indentity()}}{263} +\indexentry{stat\_identity()@\texttt {stat\_identity()}}{264} +\indexentry{stat\_identity()@\texttt {stat\_identity()}}{264} +\indexentry{geom\_smooth()@\texttt {geom\_smooth()}}{264} +\indexentry{stat\_smooth()@\texttt {stat\_smooth()}}{264} +\indexentry{mtcars@\texttt {mtcars}}{265} +\indexentry{geom\_point()@\texttt {geom\_point()}}{266} +\indexentry{geom\_line()@\texttt {geom\_line()}}{267} +\indexentry{geom\_point()@\texttt {geom\_point()}}{267} +\indexentry{geom\_line()@\texttt {geom\_line()}}{267} +\indexentry{ggplot()@\texttt {ggplot()}}{271} +\indexentry{ggplot()@\texttt {ggplot()}}{273} +\indexentry{aes()@\texttt {aes()}}{273} +\indexentry{ggplot()@\texttt {ggplot()}}{274} +\indexentry{ggplot()@\texttt {ggplot()}}{274} +\indexentry{\textbar >@\texttt {\textbar >}}{274} +\indexentry{stat()@\texttt {stat()}}{275} +\indexentry{stage()@\texttt {stage()}}{275} +\indexentry{after\_stat()@\texttt {after\_stat()}}{275} +\indexentry{after\_scale()@\texttt {after\_scale()}}{275} +\indexentry{after\_stat()@\texttt {after\_stat()}}{275} +\indexentry{stat()@\texttt {stat()}}{275} +\indexentry{after\_stat()@\texttt {after\_stat()}}{275} +\indexentry{after\_scale()@\texttt {after\_scale()}}{275} +\indexentry{rlm()@\texttt {rlm()}}{275} +\indexentry{after\_stat()@\texttt {after\_stat()}}{276} +\indexentry{stat\_fit\_residuals()@\texttt {stat\_fit\_residuals()}}{276} +\indexentry{geom\_point()@\texttt {geom\_point()}}{276} +\indexentry{stage()@\texttt {stage()}}{276} +\indexentry{geom\_point()@\texttt {geom\_point()}}{276} +\indexentry{stat\_fit\_residuals()@\texttt {stat\_fit\_residuals()}}{276} +\indexentry{stat\_fit\_residuals()@\texttt {stat\_fit\_residuals()}}{276} +\indexentry{geom\_point()@\texttt {geom\_point()}}{276} +\indexentry{geom\_point()@\texttt {geom\_point()}}{277} +\indexentry{geom\_line()@\texttt {geom\_line()}}{277} +\indexentry{geom\_point()@\texttt {geom\_point()}}{277} +\indexentry{position\_identity()@\texttt {position\_identity()}}{280} +\indexentry{geom\_point()@\texttt {geom\_point()}}{280} +\indexentry{position\_jitter()@\texttt {position\_jitter()}}{280} +\indexentry{geom\_point\_s()@\texttt {geom\_point\_s()}}{281} +\indexentry{geom\_point()@\texttt {geom\_point()}}{282} +\indexentry{geom\_pointrange()@\texttt {geom\_pointrange()}}{283} +\indexentry{geom\_range()@\texttt {geom\_range()}}{283} +\indexentry{geom\_errorbar()@\texttt {geom\_errorbar()}}{283} +\indexentry{geom\_rug()@\texttt {geom\_rug()}}{283} +\indexentry{geom\_line()@\texttt {geom\_line()}}{284} +\indexentry{Orange@\texttt {Orange}}{284} +\indexentry{geom\_segment()@\texttt {geom\_segment()}}{284} +\indexentry{geom\_curve()@\texttt {geom\_curve()}}{284} +\indexentry{geom\_path()@\texttt {geom\_path()}}{284} +\indexentry{geom\_line()@\texttt {geom\_line()}}{284} +\indexentry{geom\_spoke()@\texttt {geom\_spoke()}}{285} +\indexentry{geom\_segment()@\texttt {geom\_segment()}}{285} +\indexentry{geom\_step()@\texttt {geom\_step()}}{285} +\indexentry{geom\_line()@\texttt {geom\_line()}}{285} +\indexentry{geom\_area()@\texttt {geom\_area()}}{285} +\indexentry{geom\_ribbon()@\texttt {geom\_ribbon()}}{285} +\indexentry{geom\_polygon()@\texttt {geom\_polygon()}}{285} +\indexentry{geom\_path()@\texttt {geom\_path()}}{285} +\indexentry{geom\_point()@\texttt {geom\_point()}}{285} +\indexentry{geom\_line()@\texttt {geom\_line()}}{285} +\indexentry{geom\_ribbon()@\texttt {geom\_ribbon()}}{285} +\indexentry{geom\_area()@\texttt {geom\_area()}}{285} +\indexentry{geom\_hline()@\texttt {geom\_hline()}}{286} +\indexentry{geom\_vline()@\texttt {geom\_vline()}}{286} +\indexentry{geom\_abline()@\texttt {geom\_abline()}}{286} +\indexentry{geom\_hline()@\texttt {geom\_hline()}}{286} +\indexentry{geom\_vline()@\texttt {geom\_vline()}}{286} +\indexentry{geom\_col()@\texttt {geom\_col()}}{286} +\indexentry{geom\_bar()@\texttt {geom\_bar()}}{287} +\indexentry{stat\_count()@\texttt {stat\_count()}}{287} +\indexentry{geom\_col()@\texttt {geom\_col()}}{287} +\indexentry{geom\_bar()@\texttt {geom\_bar()}}{287} +\indexentry{geom\_col()@\texttt {geom\_col()}}{288} +\indexentry{geom\_tile()@\texttt {geom\_tile()}}{288} +\indexentry{geom\_tile()@\texttt {geom\_tile()}}{288} +\indexentry{geom\_tile()@\texttt {geom\_tile()}}{289} +\indexentry{geom\_rect()@\texttt {geom\_rect()}}{289} +\indexentry{geom\_sf()@\texttt {geom\_sf()}}{290} +\indexentry{geom\_sf\_text()@\texttt {geom\_sf\_text()}}{290} +\indexentry{geom\_sf\_label()@\texttt {geom\_sf\_label()}}{290} +\indexentry{stat\_sf()@\texttt {stat\_sf()}}{290} +\indexentry{geom\_text()@\texttt {geom\_text()}}{290} +\indexentry{geom\_label()@\texttt {geom\_label()}}{290} +\indexentry{geom\_text()@\texttt {geom\_text()}}{290} +\indexentry{geom\_label()@\texttt {geom\_label()}}{290} +\indexentry{geom\_label()@\texttt {geom\_label()}}{291} +\indexentry{geom\_label()@\texttt {geom\_label()}}{291} +\indexentry{geom\_text()@\texttt {geom\_text()}}{291} +\indexentry{geom\_label()@\texttt {geom\_label()}}{292} \indexentry{geom\_point()@\texttt {geom\_point()}}{292} -\indexentry{position\_identity()@\texttt {position\_identity()}}{294} -\indexentry{geom\_point()@\texttt {geom\_point()}}{294} -\indexentry{position\_jitter()@\texttt {position\_jitter()}}{294} -\indexentry{geom\_point\_s()@\texttt {geom\_point\_s()}}{295} -\indexentry{geom\_point()@\texttt {geom\_point()}}{297} -\indexentry{geom\_pointrange()@\texttt {geom\_pointrange()}}{298} -\indexentry{geom\_range()@\texttt {geom\_range()}}{298} -\indexentry{geom\_errorbar()@\texttt {geom\_errorbar()}}{298} -\indexentry{geom\_rug()@\texttt {geom\_rug()}}{298} -\indexentry{geom\_line()@\texttt {geom\_line()}}{298} -\indexentry{Orange@\texttt {Orange}}{298} -\indexentry{geom\_segment()@\texttt {geom\_segment()}}{299} -\indexentry{geom\_curve()@\texttt {geom\_curve()}}{299} -\indexentry{geom\_path()@\texttt {geom\_path()}}{299} -\indexentry{geom\_line()@\texttt {geom\_line()}}{299} -\indexentry{geom\_spoke()@\texttt {geom\_spoke()}}{299} -\indexentry{geom\_segment()@\texttt {geom\_segment()}}{299} -\indexentry{geom\_step()@\texttt {geom\_step()}}{299} -\indexentry{geom\_line()@\texttt {geom\_line()}}{300} -\indexentry{geom\_area()@\texttt {geom\_area()}}{300} -\indexentry{geom\_ribbon()@\texttt {geom\_ribbon()}}{300} -\indexentry{geom\_polygon()@\texttt {geom\_polygon()}}{300} -\indexentry{geom\_path()@\texttt {geom\_path()}}{300} -\indexentry{geom\_point()@\texttt {geom\_point()}}{300} -\indexentry{geom\_line()@\texttt {geom\_line()}}{300} -\indexentry{geom\_ribbon()@\texttt {geom\_ribbon()}}{300} -\indexentry{geom\_area()@\texttt {geom\_area()}}{300} -\indexentry{geom\_hline()@\texttt {geom\_hline()}}{300} -\indexentry{geom\_vline()@\texttt {geom\_vline()}}{300} -\indexentry{geom\_abline()@\texttt {geom\_abline()}}{300} -\indexentry{geom\_hline()@\texttt {geom\_hline()}}{300} -\indexentry{geom\_vline()@\texttt {geom\_vline()}}{300} -\indexentry{geom\_col()@\texttt {geom\_col()}}{301} -\indexentry{geom\_bar()@\texttt {geom\_bar()}}{301} -\indexentry{stat\_count()@\texttt {stat\_count()}}{301} -\indexentry{geom\_col()@\texttt {geom\_col()}}{301} -\indexentry{geom\_bar()@\texttt {geom\_bar()}}{301} -\indexentry{geom\_col()@\texttt {geom\_col()}}{303} -\indexentry{geom\_tile()@\texttt {geom\_tile()}}{303} -\indexentry{geom\_tile()@\texttt {geom\_tile()}}{303} -\indexentry{geom\_tile()@\texttt {geom\_tile()}}{304} -\indexentry{geom\_rect()@\texttt {geom\_rect()}}{304} -\indexentry{geom\_sf()@\texttt {geom\_sf()}}{304} -\indexentry{geom\_sf\_text()@\texttt {geom\_sf\_text()}}{304} -\indexentry{geom\_sf\_label()@\texttt {geom\_sf\_label()}}{304} -\indexentry{stat\_sf()@\texttt {stat\_sf()}}{304} -\indexentry{geom\_text()@\texttt {geom\_text()}}{305} -\indexentry{geom\_label()@\texttt {geom\_label()}}{305} -\indexentry{geom\_text()@\texttt {geom\_text()}}{305} -\indexentry{geom\_label()@\texttt {geom\_label()}}{305} -\indexentry{geom\_label()@\texttt {geom\_label()}}{306} -\indexentry{geom\_label()@\texttt {geom\_label()}}{306} -\indexentry{geom\_text()@\texttt {geom\_text()}}{306} -\indexentry{geom\_label()@\texttt {geom\_label()}}{306} -\indexentry{geom\_point()@\texttt {geom\_point()}}{306} -\indexentry{geom\_label()@\texttt {geom\_label()}}{306} -\indexentry{geom\_text()@\texttt {geom\_text()}}{306} -\indexentry{paste()@\texttt {paste()}}{307} -\indexentry{paste()@\texttt {paste()}}{307} -\indexentry{geom\_text()@\texttt {geom\_text()}}{307} -\indexentry{aes()@\texttt {aes()}}{307} -\indexentry{geom\_label()@\texttt {geom\_label()}}{308} -\indexentry{geom\_text()@\texttt {geom\_text()}}{308} -\indexentry{geom\_text()@\texttt {geom\_text()}}{308} -\indexentry{geom\_text()@\texttt {geom\_text()}}{308} -\indexentry{geom\_text()@\texttt {geom\_text()}}{308} -\indexentry{geom\_label()@\texttt {geom\_label()}}{308} -\indexentry{geom\_text\_repel()@\texttt {geom\_text\_repel()}}{308} -\indexentry{geom\_label\_repel()@\texttt {geom\_label\_repel()}}{308} -\indexentry{geom\_table()@\texttt {geom\_table()}}{309} -\indexentry{geom\_plot()@\texttt {geom\_plot()}}{309} -\indexentry{geom\_grob()@\texttt {geom\_grob()}}{309} -\indexentry{geom\_table()@\texttt {geom\_table()}}{309} -\indexentry{geom\_plot()@\texttt {geom\_plot()}}{309} -\indexentry{geom\_grob()@\texttt {geom\_grob()}}{309} -\indexentry{geom\_table()@\texttt {geom\_table()}}{309} -\indexentry{geom\_text()@\texttt {geom\_text()}}{309} -\indexentry{geom\_table()@\texttt {geom\_table()}}{310} -\indexentry{geom\_table()@\texttt {geom\_table()}}{310} -\indexentry{geom\_table()@\texttt {geom\_table()}}{311} -\indexentry{geom\_plot()@\texttt {geom\_plot()}}{311} -\indexentry{annotate()@\texttt {annotate()}}{312} -\indexentry{geom\_grob()@\texttt {geom\_grob()}}{312} -\indexentry{annotation\_custom()@\texttt {annotation\_custom()}}{312} -\indexentry{geom\_text\_npc()@\texttt {geom\_text\_npc()}}{313} -\indexentry{geom\_label\_npc()@\texttt {geom\_label\_npc()}}{313} -\indexentry{geom\_table\_npc()@\texttt {geom\_table\_npc()}}{313} -\indexentry{geom\_plot\_npc()@\texttt {geom\_plot\_npc()}}{313} -\indexentry{geom\_grob\_npc()@\texttt {geom\_grob\_npc()}}{313} -\indexentry{stat\_function()@\texttt {stat\_function()}}{314} -\indexentry{xlim()@\texttt {xlim()}}{315} -\indexentry{ylim()@\texttt {ylim()}}{315} -\indexentry{stat\_summary()@\texttt {stat\_summary()}}{315} -\indexentry{stat\_summary()@\texttt {stat\_summary()}}{315} -\indexentry{geom\_pointrange()@\texttt {geom\_pointrange()}}{315} -\indexentry{stat\_summary()@\texttt {stat\_summary()}}{316} -\indexentry{stat\_summary()@\texttt {stat\_summary()}}{317} -\indexentry{geom\_pointrange()@\texttt {geom\_pointrange()}}{317} -\indexentry{geom\_errorbar()@\texttt {geom\_errorbar()}}{317} -\indexentry{geom\_linerange()@\texttt {geom\_linerange()}}{317} -\indexentry{stat\_smooth()@\texttt {stat\_smooth()}}{318} -\indexentry{geom\_smooth()@\texttt {geom\_smooth()}}{318} -\indexentry{stat\_smooth()@\texttt {stat\_smooth()}}{318} -\indexentry{lm()@\texttt {lm()}}{318} -\indexentry{stat\_smooth()@\texttt {stat\_smooth()}}{319} -\indexentry{Puromycin@\texttt {Puromycin}}{319} -\indexentry{SSmicmen()@\texttt {SSmicmen()}}{319} -\indexentry{stat\_poly\_line()@\texttt {stat\_poly\_line()}}{320} -\indexentry{stat\_smooth()@\texttt {stat\_smooth()}}{320} -\indexentry{stat\_bin()@\texttt {stat\_bin()}}{321} -\indexentry{geom\_histogram()@\texttt {geom\_histogram()}}{321} -\indexentry{stat\_count()@\texttt {stat\_count()}}{321} -\indexentry{geom\_bar()@\texttt {geom\_bar()}}{321} -\indexentry{stat\_bin()@\texttt {stat\_bin()}}{322} -\indexentry{geom\_histogram()@\texttt {geom\_histogram()}}{323} -\indexentry{stat\_bin()@\texttt {stat\_bin()}}{323} -\indexentry{stat\_count()@\texttt {stat\_count()}}{323} -\indexentry{stat\_bin2d()@\texttt {stat\_bin2d()}}{323} -\indexentry{geom\_bin2d()@\texttt {geom\_bin2d()}}{323} -\indexentry{stat\_bin()@\texttt {stat\_bin()}}{323} -\indexentry{coord\_fixed()@\texttt {coord\_fixed()}}{323} -\indexentry{coord\_cartesian()@\texttt {coord\_cartesian()}}{323} -\indexentry{stat\_bin\_hex()@\texttt {stat\_bin\_hex()}}{323} -\indexentry{geom\_hex()@\texttt {geom\_hex()}}{323} -\indexentry{stat\_bin2d()@\texttt {stat\_bin2d()}}{323} -\indexentry{geom\_density()@\texttt {geom\_density()}}{324} -\indexentry{stat\_density\_2d()@\texttt {stat\_density\_2d()}}{324} -\indexentry{geom\_density\_2d()@\texttt {geom\_density\_2d()}}{325} -\indexentry{stat\_boxplot()@\texttt {stat\_boxplot()}}{325} -\indexentry{geom\_boxplot()@\texttt {geom\_boxplot()}}{325} -\indexentry{geom\_violin()@\texttt {geom\_violin()}}{326} -\indexentry{geom\_point()@\texttt {geom\_point()}}{328} -\indexentry{geom\_line()@\texttt {geom\_line()}}{328} -\indexentry{coord\_flip()@\texttt {coord\_flip()}}{328} -\indexentry{stat\_smooth()@\texttt {stat\_smooth()}}{328} -\indexentry{geom\_line()@\texttt {geom\_line()}}{328} -\indexentry{geom\_point()@\texttt {geom\_point()}}{328} -\indexentry{stat\_boxplot()@\texttt {stat\_boxplot()}}{329} -\indexentry{stat\_boxplot()@\texttt {stat\_boxplot()}}{329} -\indexentry{stat\_summary()@\texttt {stat\_summary()}}{329} -\indexentry{stat\_histogram()@\texttt {stat\_histogram()}}{329} -\indexentry{stat\_density()@\texttt {stat\_density()}}{329} -\indexentry{geom\_smooth()@\texttt {geom\_smooth()}}{331} -\indexentry{coord\_flip()@\texttt {coord\_flip()}}{332} -\indexentry{stat\_poly\_line()@\texttt {stat\_poly\_line()}}{332} +\indexentry{geom\_label()@\texttt {geom\_label()}}{292} +\indexentry{geom\_text()@\texttt {geom\_text()}}{292} +\indexentry{paste()@\texttt {paste()}}{292} +\indexentry{paste()@\texttt {paste()}}{292} +\indexentry{geom\_text()@\texttt {geom\_text()}}{293} +\indexentry{aes()@\texttt {aes()}}{293} +\indexentry{geom\_label()@\texttt {geom\_label()}}{293} +\indexentry{geom\_text()@\texttt {geom\_text()}}{293} +\indexentry{geom\_text()@\texttt {geom\_text()}}{293} +\indexentry{geom\_text()@\texttt {geom\_text()}}{294} +\indexentry{geom\_text()@\texttt {geom\_text()}}{294} +\indexentry{geom\_label()@\texttt {geom\_label()}}{294} +\indexentry{geom\_text\_repel()@\texttt {geom\_text\_repel()}}{294} +\indexentry{geom\_label\_repel()@\texttt {geom\_label\_repel()}}{294} +\indexentry{geom\_table()@\texttt {geom\_table()}}{294} +\indexentry{geom\_plot()@\texttt {geom\_plot()}}{294} +\indexentry{geom\_grob()@\texttt {geom\_grob()}}{294} +\indexentry{geom\_table()@\texttt {geom\_table()}}{294} +\indexentry{geom\_plot()@\texttt {geom\_plot()}}{294} +\indexentry{geom\_grob()@\texttt {geom\_grob()}}{294} +\indexentry{geom\_table()@\texttt {geom\_table()}}{295} +\indexentry{geom\_text()@\texttt {geom\_text()}}{295} +\indexentry{geom\_table()@\texttt {geom\_table()}}{296} +\indexentry{geom\_table()@\texttt {geom\_table()}}{296} +\indexentry{geom\_table()@\texttt {geom\_table()}}{296} +\indexentry{geom\_plot()@\texttt {geom\_plot()}}{296} +\indexentry{annotate()@\texttt {annotate()}}{297} +\indexentry{geom\_grob()@\texttt {geom\_grob()}}{297} +\indexentry{annotation\_custom()@\texttt {annotation\_custom()}}{297} +\indexentry{geom\_text\_npc()@\texttt {geom\_text\_npc()}}{298} +\indexentry{geom\_label\_npc()@\texttt {geom\_label\_npc()}}{298} +\indexentry{geom\_table\_npc()@\texttt {geom\_table\_npc()}}{298} +\indexentry{geom\_plot\_npc()@\texttt {geom\_plot\_npc()}}{298} +\indexentry{geom\_grob\_npc()@\texttt {geom\_grob\_npc()}}{298} +\indexentry{stat\_function()@\texttt {stat\_function()}}{299} +\indexentry{xlim()@\texttt {xlim()}}{300} +\indexentry{ylim()@\texttt {ylim()}}{300} +\indexentry{stat\_summary()@\texttt {stat\_summary()}}{300} +\indexentry{stat\_summary()@\texttt {stat\_summary()}}{301} +\indexentry{geom\_pointrange()@\texttt {geom\_pointrange()}}{301} +\indexentry{stat\_summary()@\texttt {stat\_summary()}}{302} +\indexentry{stat\_summary()@\texttt {stat\_summary()}}{302} +\indexentry{geom\_pointrange()@\texttt {geom\_pointrange()}}{302} +\indexentry{geom\_errorbar()@\texttt {geom\_errorbar()}}{302} +\indexentry{geom\_linerange()@\texttt {geom\_linerange()}}{302} +\indexentry{stat\_smooth()@\texttt {stat\_smooth()}}{303} +\indexentry{geom\_smooth()@\texttt {geom\_smooth()}}{303} +\indexentry{stat\_smooth()@\texttt {stat\_smooth()}}{303} +\indexentry{lm()@\texttt {lm()}}{303} +\indexentry{stat\_smooth()@\texttt {stat\_smooth()}}{304} +\indexentry{Puromycin@\texttt {Puromycin}}{304} +\indexentry{SSmicmen()@\texttt {SSmicmen()}}{305} +\indexentry{stat\_poly\_line()@\texttt {stat\_poly\_line()}}{305} +\indexentry{stat\_smooth()@\texttt {stat\_smooth()}}{305} +\indexentry{stat\_bin()@\texttt {stat\_bin()}}{306} +\indexentry{geom\_histogram()@\texttt {geom\_histogram()}}{306} +\indexentry{stat\_count()@\texttt {stat\_count()}}{306} +\indexentry{geom\_bar()@\texttt {geom\_bar()}}{306} +\indexentry{stat\_bin()@\texttt {stat\_bin()}}{307} +\indexentry{geom\_histogram()@\texttt {geom\_histogram()}}{308} +\indexentry{stat\_bin()@\texttt {stat\_bin()}}{308} +\indexentry{stat\_count()@\texttt {stat\_count()}}{308} +\indexentry{stat\_bin2d()@\texttt {stat\_bin2d()}}{308} +\indexentry{geom\_bin2d()@\texttt {geom\_bin2d()}}{308} +\indexentry{stat\_bin()@\texttt {stat\_bin()}}{308} +\indexentry{coord\_fixed()@\texttt {coord\_fixed()}}{308} +\indexentry{coord\_cartesian()@\texttt {coord\_cartesian()}}{308} +\indexentry{stat\_bin\_hex()@\texttt {stat\_bin\_hex()}}{308} +\indexentry{geom\_hex()@\texttt {geom\_hex()}}{308} +\indexentry{stat\_bin2d()@\texttt {stat\_bin2d()}}{308} +\indexentry{geom\_density()@\texttt {geom\_density()}}{309} +\indexentry{stat\_density\_2d()@\texttt {stat\_density\_2d()}}{309} +\indexentry{geom\_density\_2d()@\texttt {geom\_density\_2d()}}{310} +\indexentry{stat\_boxplot()@\texttt {stat\_boxplot()}}{310} +\indexentry{geom\_boxplot()@\texttt {geom\_boxplot()}}{310} +\indexentry{geom\_violin()@\texttt {geom\_violin()}}{311} +\indexentry{geom\_point()@\texttt {geom\_point()}}{313} +\indexentry{geom\_line()@\texttt {geom\_line()}}{313} +\indexentry{coord\_flip()@\texttt {coord\_flip()}}{313} +\indexentry{stat\_smooth()@\texttt {stat\_smooth()}}{313} +\indexentry{geom\_line()@\texttt {geom\_line()}}{313} +\indexentry{geom\_point()@\texttt {geom\_point()}}{313} +\indexentry{stat\_boxplot()@\texttt {stat\_boxplot()}}{314} +\indexentry{stat\_boxplot()@\texttt {stat\_boxplot()}}{314} +\indexentry{stat\_summary()@\texttt {stat\_summary()}}{314} +\indexentry{stat\_histogram()@\texttt {stat\_histogram()}}{314} +\indexentry{stat\_density()@\texttt {stat\_density()}}{314} +\indexentry{geom\_smooth()@\texttt {geom\_smooth()}}{316} +\indexentry{coord\_flip()@\texttt {coord\_flip()}}{316} +\indexentry{stat\_poly\_line()@\texttt {stat\_poly\_line()}}{317} +\indexentry{geom\_point()@\texttt {geom\_point()}}{318} +\indexentry{stat\_density\_2d()@\texttt {stat\_density\_2d()}}{318} +\indexentry{stat\_summary\_2d()@\texttt {stat\_summary\_2d()}}{318} +\indexentry{stat\_summary\_2d()@\texttt {stat\_summary\_2d()}}{318} +\indexentry{stat\_density\_2d()@\texttt {stat\_density\_2d()}}{318} +\indexentry{stat\_summary()@\texttt {stat\_summary()}}{318} +\indexentry{stat\_centroid()@\texttt {stat\_centroid()}}{318} +\indexentry{stat\_summary\_xy()@\texttt {stat\_summary\_xy()}}{318} +\indexentry{stat\_summary()@\texttt {stat\_summary()}}{319} +\indexentry{stat\_summary()@\texttt {stat\_summary()}}{319} +\indexentry{facet\_grid()@\texttt {facet\_grid()}}{319} +\indexentry{facet\_wrap()@\texttt {facet\_wrap()}}{319} +\indexentry{geom\_point()@\texttt {geom\_point()}}{319} +\indexentry{label\_bquote()@\texttt {label\_bquote()}}{321} +\indexentry{label\_bquote()@\texttt {label\_bquote()}}{321} +\indexentry{facet\_wrap()@\texttt {facet\_wrap()}}{322} +\indexentry{scale\_color\_identity()@\texttt {scale\_color\_identity()}}{323} +\indexentry{scale\_color\_discrete()@\texttt {scale\_color\_discrete()}}{323} +\indexentry{ggtitle()@\texttt {ggtitle()}}{323} +\indexentry{xlab()@\texttt {xlab()}}{324} +\indexentry{ylab()@\texttt {ylab()}}{324} +\indexentry{labs()@\texttt {labs()}}{324} +\indexentry{labs()@\texttt {labs()}}{324} +\indexentry{ggtitle()@\texttt {ggtitle()}}{324} +\indexentry{ylim()@\texttt {ylim()}}{326} +\indexentry{xlim()@\texttt {xlim()}}{326} +\indexentry{ylim()@\texttt {ylim()}}{326} +\indexentry{xlim()@\texttt {xlim()}}{326} +\indexentry{expand\_limits()@\texttt {expand\_limits()}}{326} +\indexentry{expand\_limits()@\texttt {expand\_limits()}}{326} +\indexentry{xlim()@\texttt {xlim()}}{327} +\indexentry{ylim()@\texttt {ylim()}}{327} +\indexentry{pretty\_breaks()@\texttt {pretty\_breaks()}}{327} +\indexentry{label\_date()@\texttt {label\_date()}}{328} +\indexentry{label\_date\_short()@\texttt {label\_date\_short()}}{328} +\indexentry{label\_time()@\texttt {label\_time()}}{328} +\indexentry{scale\_x\_continuous()@\texttt {scale\_x\_continuous()}}{329} +\indexentry{scale\_y\_continuous()@\texttt {scale\_y\_continuous()}}{329} +\indexentry{scale\_x\_log10()@\texttt {scale\_x\_log10()}}{329} +\indexentry{scale\_y\_log10()@\texttt {scale\_y\_log10()}}{329} +\indexentry{scale\_y\_log()@\texttt {scale\_y\_log()}}{329} +\indexentry{scale\_x\_reverse()@\texttt {scale\_x\_reverse()}}{329} +\indexentry{scale\_y\_log10()@\texttt {scale\_y\_log10()}}{329} +\indexentry{strptime()@\texttt {strptime()}}{332} +\indexentry{scale\_x\_discrete()@\texttt {scale\_x\_discrete()}}{332} +\indexentry{toupper()@\texttt {toupper()}}{333} +\indexentry{tolower()@\texttt {tolower()}}{333} \indexentry{geom\_point()@\texttt {geom\_point()}}{333} -\indexentry{stat\_density\_2d()@\texttt {stat\_density\_2d()}}{333} -\indexentry{stat\_summary\_2d()@\texttt {stat\_summary\_2d()}}{333} -\indexentry{stat\_summary\_2d()@\texttt {stat\_summary\_2d()}}{333} -\indexentry{stat\_density\_2d()@\texttt {stat\_density\_2d()}}{333} -\indexentry{stat\_summary()@\texttt {stat\_summary()}}{333} -\indexentry{stat\_centroid()@\texttt {stat\_centroid()}}{333} -\indexentry{stat\_summary\_xy()@\texttt {stat\_summary\_xy()}}{333} -\indexentry{stat\_summary()@\texttt {stat\_summary()}}{334} -\indexentry{stat\_summary()@\texttt {stat\_summary()}}{334} -\indexentry{facet\_grid()@\texttt {facet\_grid()}}{334} -\indexentry{facet\_wrap()@\texttt {facet\_wrap()}}{334} -\indexentry{geom\_point()@\texttt {geom\_point()}}{334} -\indexentry{label\_bquote()@\texttt {label\_bquote()}}{336} -\indexentry{label\_bquote()@\texttt {label\_bquote()}}{336} -\indexentry{facet\_wrap()@\texttt {facet\_wrap()}}{337} -\indexentry{scale\_color\_identity()@\texttt {scale\_color\_identity()}}{338} -\indexentry{scale\_color\_discrete()@\texttt {scale\_color\_discrete()}}{338} -\indexentry{ggtitle()@\texttt {ggtitle()}}{338} -\indexentry{xlab()@\texttt {xlab()}}{339} -\indexentry{ylab()@\texttt {ylab()}}{339} -\indexentry{labs()@\texttt {labs()}}{339} -\indexentry{labs()@\texttt {labs()}}{339} -\indexentry{ggtitle()@\texttt {ggtitle()}}{339} -\indexentry{ylim()@\texttt {ylim()}}{341} -\indexentry{xlim()@\texttt {xlim()}}{341} -\indexentry{ylim()@\texttt {ylim()}}{341} -\indexentry{xlim()@\texttt {xlim()}}{341} -\indexentry{expand\_limits()@\texttt {expand\_limits()}}{341} -\indexentry{expand\_limits()@\texttt {expand\_limits()}}{341} -\indexentry{xlim()@\texttt {xlim()}}{342} -\indexentry{ylim()@\texttt {ylim()}}{342} -\indexentry{pretty\_breaks()@\texttt {pretty\_breaks()}}{342} -\indexentry{label\_date()@\texttt {label\_date()}}{344} -\indexentry{label\_date\_short()@\texttt {label\_date\_short()}}{344} -\indexentry{label\_time()@\texttt {label\_time()}}{344} -\indexentry{scale\_x\_continuous()@\texttt {scale\_x\_continuous()}}{344} -\indexentry{scale\_y\_continuous()@\texttt {scale\_y\_continuous()}}{344} -\indexentry{scale\_x\_log10()@\texttt {scale\_x\_log10()}}{344} -\indexentry{scale\_y\_log10()@\texttt {scale\_y\_log10()}}{344} -\indexentry{scale\_y\_log()@\texttt {scale\_y\_log()}}{344} -\indexentry{scale\_x\_reverse()@\texttt {scale\_x\_reverse()}}{344} -\indexentry{scale\_y\_log10()@\texttt {scale\_y\_log10()}}{345} -\indexentry{strptime()@\texttt {strptime()}}{348} -\indexentry{scale\_x\_discrete()@\texttt {scale\_x\_discrete()}}{348} -\indexentry{toupper()@\texttt {toupper()}}{349} -\indexentry{tolower()@\texttt {tolower()}}{349} -\indexentry{geom\_point()@\texttt {geom\_point()}}{349} -\indexentry{geom\_line()@\texttt {geom\_line()}}{349} -\indexentry{geom\_hline()@\texttt {geom\_hline()}}{349} -\indexentry{geom\_vline()@\texttt {geom\_vline()}}{349} +\indexentry{geom\_line()@\texttt {geom\_line()}}{333} +\indexentry{geom\_hline()@\texttt {geom\_hline()}}{333} +\indexentry{geom\_vline()@\texttt {geom\_vline()}}{333} +\indexentry{geom\_text()@\texttt {geom\_text()}}{333} +\indexentry{geom\_label()@\texttt {geom\_label()}}{333} +\indexentry{geom\_bar()@\texttt {geom\_bar()}}{333} +\indexentry{geom\_col()@\texttt {geom\_col()}}{333} +\indexentry{geom\_area()@\texttt {geom\_area()}}{333} +\indexentry{rgb()@\texttt {rgb()}}{334} +\indexentry{hcl()@\texttt {hcl()}}{335} +\indexentry{scale\_color\_continuous()@\texttt {scale\_color\_continuous()}}{335} +\indexentry{scale\_color\_gradient()@\texttt {scale\_color\_gradient()}}{335} +\indexentry{scale\_color\_gradient2()@\texttt {scale\_color\_gradient2()}}{335} +\indexentry{scale\_color\_gradientn()@\texttt {scale\_color\_gradientn()}}{335} +\indexentry{scale\_color\_date()@\texttt {scale\_color\_date()}}{335} +\indexentry{scale\_color\_datetime()@\texttt {scale\_color\_datetime()}}{335} +\indexentry{scale\_color\_viridis\_c()@\texttt {scale\_color\_viridis\_c()}}{335} +\indexentry{scale\_color\_distiller()@\texttt {scale\_color\_distiller()}}{335} +\indexentry{scale\_color\_discrete()@\texttt {scale\_color\_discrete()}}{335} +\indexentry{scale\_color\_hue()@\texttt {scale\_color\_hue()}}{335} +\indexentry{scale\_color\_gray()@\texttt {scale\_color\_gray()}}{335} +\indexentry{scale\_color\_viridis\_d()@\texttt {scale\_color\_viridis\_d()}}{335} +\indexentry{scale\_color\_brewer()@\texttt {scale\_color\_brewer()}}{335} +\indexentry{scale\_color\_gradient()@\texttt {scale\_color\_gradient()}}{336} +\indexentry{scale\_color\_binned()@\texttt {scale\_color\_binned()}}{336} +\indexentry{scale\_color\_identity()@\texttt {scale\_color\_identity()}}{337} +\indexentry{scale\_fill\_identity()@\texttt {scale\_fill\_identity()}}{337} +\indexentry{annotate()@\texttt {annotate()}}{337} +\indexentry{annotate()@\texttt {annotate()}}{337} +\indexentry{annotate()@\texttt {annotate()}}{338} +\indexentry{annotate()@\texttt {annotate()}}{338} +\indexentry{annotation\_custom()@\texttt {annotation\_custom()}}{338} +\indexentry{ggplotGrob()@\texttt {ggplotGrob()}}{338} +\indexentry{annotate()@\texttt {annotate()}}{340} +\indexentry{geom\_vline()@\texttt {geom\_vline()}}{340} +\indexentry{geom\_hline()@\texttt {geom\_hline()}}{340} +\indexentry{coord\_polar()@\texttt {coord\_polar()}}{340} +\indexentry{coord\_polar()@\texttt {coord\_polar()}}{340} +\indexentry{stat\_bin()@\texttt {stat\_bin()}}{340} +\indexentry{stat\_density()@\texttt {stat\_density()}}{341} +\indexentry{stat\_bin()@\texttt {stat\_bin()}}{341} +\indexentry{geom\_polygon()@\texttt {geom\_polygon()}}{341} +\indexentry{geom\_bar()@\texttt {geom\_bar()}}{341} +\indexentry{facet\_wrap()@\texttt {facet\_wrap()}}{341} +\indexentry{geom\_bar()@\texttt {geom\_bar()}}{342} +\indexentry{theme\_gray()@\texttt {theme\_gray()}}{343} +\indexentry{theme\_bw()@\texttt {theme\_bw()}}{343} +\indexentry{theme\_gray()@\texttt {theme\_gray()}}{343} +\indexentry{theme\_bw()@\texttt {theme\_bw()}}{344} +\indexentry{theme\_classic()@\texttt {theme\_classic()}}{344} +\indexentry{theme\_minimal()@\texttt {theme\_minimal()}}{344} +\indexentry{theme\_linedraw()@\texttt {theme\_linedraw()}}{344} +\indexentry{theme\_light()@\texttt {theme\_light()}}{344} +\indexentry{theme\_dark()@\texttt {theme\_dark()}}{344} +\indexentry{theme\_void()@\texttt {theme\_void()}}{344} +\indexentry{theme\_gray()@\texttt {theme\_gray()}}{344} +\indexentry{theme\_set()@\texttt {theme\_set()}}{344} +\indexentry{theme\_set()@\texttt {theme\_set()}}{344} +\indexentry{theme\_bw()@\texttt {theme\_bw()}}{344} +\indexentry{theme\_classic()@\texttt {theme\_classic()}}{344} +\indexentry{theme()@\texttt {theme()}}{345} +\indexentry{rel()@\texttt {rel()}}{345} +\indexentry{theme\_gray()@\texttt {theme\_gray()}}{347} +\indexentry{theme()@\texttt {theme()}}{347} +\indexentry{+@\texttt {+}}{348} +\indexentry{|@\texttt {|}}{348} +\indexentry{/@\texttt {/}}{348} +\indexentry{+@\texttt {+}}{348} +\indexentry{|@\texttt {|}}{348} +\indexentry{/@\texttt {/}}{348} +\indexentry{expression()@\texttt {expression()}}{349} \indexentry{geom\_text()@\texttt {geom\_text()}}{349} \indexentry{geom\_label()@\texttt {geom\_label()}}{349} -\indexentry{geom\_bar()@\texttt {geom\_bar()}}{349} -\indexentry{geom\_col()@\texttt {geom\_col()}}{349} -\indexentry{geom\_area()@\texttt {geom\_area()}}{349} -\indexentry{rgb()@\texttt {rgb()}}{351} -\indexentry{hcl()@\texttt {hcl()}}{351} -\indexentry{scale\_color\_continuous()@\texttt {scale\_color\_continuous()}}{351} -\indexentry{scale\_color\_gradient()@\texttt {scale\_color\_gradient()}}{351} -\indexentry{scale\_color\_gradient2()@\texttt {scale\_color\_gradient2()}}{351} -\indexentry{scale\_color\_gradientn()@\texttt {scale\_color\_gradientn()}}{351} -\indexentry{scale\_color\_date()@\texttt {scale\_color\_date()}}{351} -\indexentry{scale\_color\_datetime()@\texttt {scale\_color\_datetime()}}{351} -\indexentry{scale\_color\_viridis\_c()@\texttt {scale\_color\_viridis\_c()}}{351} -\indexentry{scale\_color\_distiller()@\texttt {scale\_color\_distiller()}}{351} -\indexentry{scale\_color\_discrete()@\texttt {scale\_color\_discrete()}}{351} -\indexentry{scale\_color\_hue()@\texttt {scale\_color\_hue()}}{351} -\indexentry{scale\_color\_gray()@\texttt {scale\_color\_gray()}}{351} -\indexentry{scale\_color\_viridis\_d()@\texttt {scale\_color\_viridis\_d()}}{352} -\indexentry{scale\_color\_brewer()@\texttt {scale\_color\_brewer()}}{352} -\indexentry{scale\_color\_gradient()@\texttt {scale\_color\_gradient()}}{352} -\indexentry{scale\_color\_binned()@\texttt {scale\_color\_binned()}}{352} -\indexentry{scale\_color\_identity()@\texttt {scale\_color\_identity()}}{353} -\indexentry{scale\_fill\_identity()@\texttt {scale\_fill\_identity()}}{353} -\indexentry{annotate()@\texttt {annotate()}}{353} -\indexentry{annotate()@\texttt {annotate()}}{353} -\indexentry{annotate()@\texttt {annotate()}}{354} -\indexentry{annotate()@\texttt {annotate()}}{354} -\indexentry{annotation\_custom()@\texttt {annotation\_custom()}}{354} -\indexentry{ggplotGrob()@\texttt {ggplotGrob()}}{354} -\indexentry{annotate()@\texttt {annotate()}}{356} -\indexentry{geom\_vline()@\texttt {geom\_vline()}}{356} -\indexentry{geom\_hline()@\texttt {geom\_hline()}}{356} -\indexentry{coord\_polar()@\texttt {coord\_polar()}}{356} -\indexentry{coord\_polar()@\texttt {coord\_polar()}}{356} -\indexentry{stat\_bin()@\texttt {stat\_bin()}}{356} -\indexentry{stat\_density()@\texttt {stat\_density()}}{357} -\indexentry{stat\_bin()@\texttt {stat\_bin()}}{357} -\indexentry{geom\_polygon()@\texttt {geom\_polygon()}}{357} -\indexentry{geom\_bar()@\texttt {geom\_bar()}}{357} -\indexentry{facet\_wrap()@\texttt {facet\_wrap()}}{357} -\indexentry{geom\_bar()@\texttt {geom\_bar()}}{358} -\indexentry{theme\_gray()@\texttt {theme\_gray()}}{359} -\indexentry{theme\_bw()@\texttt {theme\_bw()}}{359} -\indexentry{theme\_gray()@\texttt {theme\_gray()}}{359} -\indexentry{theme\_bw()@\texttt {theme\_bw()}}{360} -\indexentry{theme\_classic()@\texttt {theme\_classic()}}{360} -\indexentry{theme\_minimal()@\texttt {theme\_minimal()}}{360} -\indexentry{theme\_linedraw()@\texttt {theme\_linedraw()}}{360} -\indexentry{theme\_light()@\texttt {theme\_light()}}{360} -\indexentry{theme\_dark()@\texttt {theme\_dark()}}{360} -\indexentry{theme\_void()@\texttt {theme\_void()}}{360} -\indexentry{theme\_gray()@\texttt {theme\_gray()}}{360} -\indexentry{theme\_set()@\texttt {theme\_set()}}{360} -\indexentry{theme\_set()@\texttt {theme\_set()}}{360} -\indexentry{theme\_bw()@\texttt {theme\_bw()}}{361} -\indexentry{theme\_classic()@\texttt {theme\_classic()}}{361} -\indexentry{theme()@\texttt {theme()}}{362} -\indexentry{rel()@\texttt {rel()}}{362} -\indexentry{theme\_gray()@\texttt {theme\_gray()}}{363} -\indexentry{theme()@\texttt {theme()}}{363} -\indexentry{+@\texttt {+}}{364} -\indexentry{|@\texttt {|}}{364} -\indexentry{/@\texttt {/}}{364} -\indexentry{+@\texttt {+}}{364} -\indexentry{|@\texttt {|}}{364} -\indexentry{/@\texttt {/}}{364} -\indexentry{expression()@\texttt {expression()}}{366} -\indexentry{geom\_text()@\texttt {geom\_text()}}{366} -\indexentry{geom\_label()@\texttt {geom\_label()}}{366} -\indexentry{labs()@\texttt {labs()}}{366} -\indexentry{geom\_text()@\texttt {geom\_text()}}{366} -\indexentry{paste()@\texttt {paste()}}{366} -\indexentry{expression()@\texttt {expression()}}{366} -\indexentry{parse()@\texttt {parse()}}{367} -\indexentry{expression()@\texttt {expression()}}{367} -\indexentry{parse()@\texttt {parse()}}{367} -\indexentry{parse()@\texttt {parse()}}{367} -\indexentry{expression()@\texttt {expression()}}{367} -\indexentry{parse()@\texttt {parse()}}{367} -\indexentry{expression()@\texttt {expression()}}{368} -\indexentry{parse()@\texttt {parse()}}{368} -\indexentry{plain()@\texttt {plain()}}{368} -\indexentry{italic()@\texttt {italic()}}{368} -\indexentry{bold()@\texttt {bold()}}{368} -\indexentry{bolditalic()@\texttt {bolditalic()}}{368} -\indexentry{expression()@\texttt {expression()}}{368} -\indexentry{parse()@\texttt {parse()}}{368} -\indexentry{expression()@\texttt {expression()}}{368} -\indexentry{ggplot()@\texttt {ggplot()}}{368} -\indexentry{paste()@\texttt {paste()}}{369} -\indexentry{format()@\texttt {format()}}{369} -\indexentry{sprintf()@\texttt {sprintf()}}{369} -\indexentry{strftime()@\texttt {strftime()}}{369} -\indexentry{sprintf()@\texttt {sprintf()}}{369} -\indexentry{format()@\texttt {format()}}{369} -\indexentry{sprintf()@\texttt {sprintf()}}{369} -\indexentry{strftime()@\texttt {strftime()}}{369} -\indexentry{bquote()@\texttt {bquote()}}{369} -\indexentry{bquote()@\texttt {bquote()}}{369} -\indexentry{substitute()@\texttt {substitute()}}{370} -\indexentry{shell()@\texttt {shell()}}{378} -\indexentry{system()@\texttt {system()}}{378} -\indexentry{basename()@\texttt {basename()}}{378} -\indexentry{dirname()@\texttt {dirname()}}{378} -\indexentry{getwd()@\texttt {getwd()}}{378} -\indexentry{setwd()@\texttt {setwd()}}{378} -\indexentry{setwd()@\texttt {setwd()}}{378} -\indexentry{list.files()@\texttt {list.files()}}{379} -\indexentry{dir()@\texttt {dir()}}{379} -\indexentry{list.dirs()@\texttt {list.dirs()}}{379} -\indexentry{list.dirs()@\texttt {list.dirs()}}{379} -\indexentry{dir()@\texttt {dir()}}{379} -\indexentry{file.path()@\texttt {file.path()}}{380} -\indexentry{readLines()@\texttt {readLines()}}{380} -\indexentry{tools:::showNonASCIIfile()@\texttt {tools:::showNonASCIIfile()}}{382} -\indexentry{read.csv()@\texttt {read.csv()}}{382} -\indexentry{write.csv()@\texttt {write.csv()}}{382} -\indexentry{read.csv2()@\texttt {read.csv2()}}{383} -\indexentry{read.csv()@\texttt {read.csv()}}{383} -\indexentry{read.csv2()@\texttt {read.csv2()}}{384} -\indexentry{write.csv2()@\texttt {write.csv2()}}{384} -\indexentry{read.table()@\texttt {read.table()}}{384} -\indexentry{read.csv()@\texttt {read.csv()}}{384} -\indexentry{read.table()@\texttt {read.table()}}{384} -\indexentry{read.fwf()@\texttt {read.fwf()}}{385} -\indexentry{read.fortran()@\texttt {read.fortran()}}{385} -\indexentry{read.fwf()@\texttt {read.fwf()}}{385} -\indexentry{read.table()@\texttt {read.table()}}{385} -\indexentry{read.csv()@\texttt {read.csv()}}{386} -\indexentry{read.table()@\texttt {read.table()}}{386} -\indexentry{read.csv()@\texttt {read.csv()}}{386} -\indexentry{read.table()@\texttt {read.table()}}{386} -\indexentry{read.table()@\texttt {read.table()}}{386} -\indexentry{read.csv2()@\texttt {read.csv2()}}{386} -\indexentry{write.csv()@\texttt {write.csv()}}{386} -\indexentry{write.csv2()@\texttt {write.csv2()}}{386} -\indexentry{write.table()@\texttt {write.table()}}{386} -\indexentry{read.csv()@\texttt {read.csv()}}{386} -\indexentry{cat()@\texttt {cat()}}{386} -\indexentry{read\_csv()@\texttt {read\_csv()}}{387} -\indexentry{read.csv()@\texttt {read.csv()}}{387} -\indexentry{read.table()@\texttt {read.table()}}{387} +\indexentry{labs()@\texttt {labs()}}{350} +\indexentry{geom\_text()@\texttt {geom\_text()}}{350} +\indexentry{paste()@\texttt {paste()}}{350} +\indexentry{expression()@\texttt {expression()}}{350} +\indexentry{parse()@\texttt {parse()}}{351} +\indexentry{expression()@\texttt {expression()}}{351} +\indexentry{parse()@\texttt {parse()}}{351} +\indexentry{parse()@\texttt {parse()}}{351} +\indexentry{expression()@\texttt {expression()}}{351} +\indexentry{parse()@\texttt {parse()}}{351} +\indexentry{expression()@\texttt {expression()}}{351} +\indexentry{parse()@\texttt {parse()}}{351} +\indexentry{plain()@\texttt {plain()}}{351} +\indexentry{italic()@\texttt {italic()}}{351} +\indexentry{bold()@\texttt {bold()}}{351} +\indexentry{bolditalic()@\texttt {bolditalic()}}{351} +\indexentry{expression()@\texttt {expression()}}{352} +\indexentry{parse()@\texttt {parse()}}{352} +\indexentry{expression()@\texttt {expression()}}{352} +\indexentry{ggplot()@\texttt {ggplot()}}{352} +\indexentry{paste()@\texttt {paste()}}{352} +\indexentry{format()@\texttt {format()}}{352} +\indexentry{sprintf()@\texttt {sprintf()}}{352} +\indexentry{strftime()@\texttt {strftime()}}{352} +\indexentry{sprintf()@\texttt {sprintf()}}{353} +\indexentry{format()@\texttt {format()}}{353} +\indexentry{sprintf()@\texttt {sprintf()}}{353} +\indexentry{strftime()@\texttt {strftime()}}{353} +\indexentry{bquote()@\texttt {bquote()}}{353} +\indexentry{bquote()@\texttt {bquote()}}{353} +\indexentry{substitute()@\texttt {substitute()}}{353} +\indexentry{shell()@\texttt {shell()}}{361} +\indexentry{system()@\texttt {system()}}{361} +\indexentry{basename()@\texttt {basename()}}{361} +\indexentry{dirname()@\texttt {dirname()}}{362} +\indexentry{getwd()@\texttt {getwd()}}{362} +\indexentry{setwd()@\texttt {setwd()}}{362} +\indexentry{setwd()@\texttt {setwd()}}{362} +\indexentry{list.files()@\texttt {list.files()}}{363} +\indexentry{dir()@\texttt {dir()}}{363} +\indexentry{list.dirs()@\texttt {list.dirs()}}{363} +\indexentry{list.dirs()@\texttt {list.dirs()}}{363} +\indexentry{dir()@\texttt {dir()}}{363} +\indexentry{file.path()@\texttt {file.path()}}{363} +\indexentry{readLines()@\texttt {readLines()}}{364} +\indexentry{tools:::showNonASCIIfile()@\texttt {tools:::showNonASCIIfile()}}{366} +\indexentry{read.csv()@\texttt {read.csv()}}{366} +\indexentry{write.csv()@\texttt {write.csv()}}{366} +\indexentry{read.csv2()@\texttt {read.csv2()}}{367} +\indexentry{read.csv()@\texttt {read.csv()}}{367} +\indexentry{read.csv2()@\texttt {read.csv2()}}{368} +\indexentry{write.csv2()@\texttt {write.csv2()}}{368} +\indexentry{read.table()@\texttt {read.table()}}{368} +\indexentry{read.csv()@\texttt {read.csv()}}{368} +\indexentry{read.table()@\texttt {read.table()}}{368} +\indexentry{read.fwf()@\texttt {read.fwf()}}{368} +\indexentry{read.fortran()@\texttt {read.fortran()}}{368} +\indexentry{read.fwf()@\texttt {read.fwf()}}{368} +\indexentry{read.table()@\texttt {read.table()}}{369} +\indexentry{read.csv()@\texttt {read.csv()}}{369} +\indexentry{read.table()@\texttt {read.table()}}{369} +\indexentry{read.csv()@\texttt {read.csv()}}{369} +\indexentry{read.table()@\texttt {read.table()}}{369} +\indexentry{read.table()@\texttt {read.table()}}{369} +\indexentry{read.csv2()@\texttt {read.csv2()}}{369} +\indexentry{write.csv()@\texttt {write.csv()}}{369} +\indexentry{write.csv2()@\texttt {write.csv2()}}{369} +\indexentry{write.table()@\texttt {write.table()}}{369} +\indexentry{read.csv()@\texttt {read.csv()}}{369} +\indexentry{cat()@\texttt {cat()}}{369} +\indexentry{read\_csv()@\texttt {read\_csv()}}{370} +\indexentry{read.csv()@\texttt {read.csv()}}{370} +\indexentry{read.table()@\texttt {read.table()}}{370} +\indexentry{tibble@\texttt {tibble}}{370} +\indexentry{data.frame@\texttt {data.frame}}{370} +\indexentry{read\_table2()@\texttt {read\_table2()}}{370} +\indexentry{read\_table2()@\texttt {read\_table2()}}{370} +\indexentry{read\_table2()@\texttt {read\_table2()}}{371} +\indexentry{read.table()@\texttt {read.table()}}{371} +\indexentry{read\_table()@\texttt {read\_table()}}{371} +\indexentry{read\_table2()@\texttt {read\_table2()}}{371} +\indexentry{read\_table()@\texttt {read\_table()}}{371} +\indexentry{read\_delim()@\texttt {read\_delim()}}{372} +\indexentry{read\_table()@\texttt {read\_table()}}{372} +\indexentry{read\_tsv()@\texttt {read\_tsv()}}{372} +\indexentry{read\_fwf()@\texttt {read\_fwf()}}{372} +\indexentry{read.fortran()@\texttt {read.fortran()}}{372} +\indexentry{write\_csv()@\texttt {write\_csv()}}{374} +\indexentry{write\_csv2()@\texttt {write\_csv2()}}{374} +\indexentry{write\_tsv()@\texttt {write\_tsv()}}{374} +\indexentry{write\_delim()@\texttt {write\_delim()}}{374} +\indexentry{write\_excel\_csv()@\texttt {write\_excel\_csv()}}{374} +\indexentry{write\_excel\_csv()@\texttt {write\_excel\_csv()}}{374} +\indexentry{write\_csv()@\texttt {write\_csv()}}{374} +\indexentry{read\_lines()@\texttt {read\_lines()}}{374} +\indexentry{write\_lines()@\texttt {write\_lines()}}{374} +\indexentry{read\_file()@\texttt {read\_file()}}{374} +\indexentry{write\_file()@\texttt {write\_file()}}{374} +\indexentry{read\_file()@\texttt {read\_file()}}{374} +\indexentry{write\_file()@\texttt {write\_file()}}{374} +\indexentry{write\_file()@\texttt {write\_file()}}{375} +\indexentry{read\_csv()@\texttt {read\_csv()}}{375} +\indexentry{read\_html()@\texttt {read\_html()}}{375} +\indexentry{xml\_find\_all()@\texttt {xml\_find\_all()}}{378} +\indexentry{xml\_text()@\texttt {xml\_text()}}{378} +\indexentry{excel\_sheets()@\texttt {excel\_sheets()}}{381} +\indexentry{read\_excel()@\texttt {read\_excel()}}{381} +\indexentry{read.xlsx()@\texttt {read.xlsx()}}{382} +\indexentry{write.xlsx()@\texttt {write.xlsx()}}{382} +\indexentry{read\_ods()@\texttt {read\_ods()}}{383} +\indexentry{write\_ods()@\texttt {write\_ods()}}{384} +\indexentry{read.spss()@\texttt {read.spss()}}{384} +\indexentry{read.systat()@\texttt {read.systat()}}{384} +\indexentry{tibble@\texttt {tibble}}{385} +\indexentry{read\_sav()@\texttt {read\_sav()}}{385} +\indexentry{names()@\texttt {names()}}{386} +\indexentry{str()@\texttt {str()}}{386} +\indexentry{class()@\texttt {class()}}{386} +\indexentry{attributes()@\texttt {attributes()}}{386} +\indexentry{mode()@\texttt {mode()}}{386} +\indexentry{dim()@\texttt {dim()}}{386} +\indexentry{dimnames()@\texttt {dimnames()}}{386} +\indexentry{nrow()@\texttt {nrow()}}{386} +\indexentry{ncol()@\texttt {ncol()}}{386} +\indexentry{print()@\texttt {print()}}{386} +\indexentry{nc\_open()@\texttt {nc\_open()}}{386} +\indexentry{str()@\texttt {str()}}{387} +\indexentry{ncvar\_get()@\texttt {ncvar\_get()}}{387} \indexentry{tibble@\texttt {tibble}}{387} -\indexentry{data.frame@\texttt {data.frame}}{387} -\indexentry{read\_table2()@\texttt {read\_table2()}}{387} -\indexentry{read\_table2()@\texttt {read\_table2()}}{387} -\indexentry{read\_table2()@\texttt {read\_table2()}}{388} -\indexentry{read.table()@\texttt {read.table()}}{388} -\indexentry{read\_table()@\texttt {read\_table()}}{388} -\indexentry{read\_table2()@\texttt {read\_table2()}}{388} -\indexentry{read\_table()@\texttt {read\_table()}}{388} -\indexentry{read\_delim()@\texttt {read\_delim()}}{389} -\indexentry{read\_table()@\texttt {read\_table()}}{389} -\indexentry{read\_tsv()@\texttt {read\_tsv()}}{389} -\indexentry{read\_fwf()@\texttt {read\_fwf()}}{389} -\indexentry{read.fortran()@\texttt {read.fortran()}}{389} -\indexentry{write\_csv()@\texttt {write\_csv()}}{391} -\indexentry{write\_csv2()@\texttt {write\_csv2()}}{391} -\indexentry{write\_tsv()@\texttt {write\_tsv()}}{391} -\indexentry{write\_delim()@\texttt {write\_delim()}}{391} -\indexentry{write\_excel\_csv()@\texttt {write\_excel\_csv()}}{391} -\indexentry{write\_excel\_csv()@\texttt {write\_excel\_csv()}}{391} -\indexentry{write\_csv()@\texttt {write\_csv()}}{391} -\indexentry{read\_lines()@\texttt {read\_lines()}}{391} -\indexentry{write\_lines()@\texttt {write\_lines()}}{391} -\indexentry{read\_file()@\texttt {read\_file()}}{391} -\indexentry{write\_file()@\texttt {write\_file()}}{391} -\indexentry{read\_file()@\texttt {read\_file()}}{391} -\indexentry{write\_file()@\texttt {write\_file()}}{391} -\indexentry{write\_file()@\texttt {write\_file()}}{392} -\indexentry{read\_csv()@\texttt {read\_csv()}}{392} -\indexentry{read\_html()@\texttt {read\_html()}}{392} -\indexentry{xml\_find\_all()@\texttt {xml\_find\_all()}}{395} -\indexentry{xml\_text()@\texttt {xml\_text()}}{395} -\indexentry{excel\_sheets()@\texttt {excel\_sheets()}}{398} -\indexentry{read\_excel()@\texttt {read\_excel()}}{398} -\indexentry{read.xlsx()@\texttt {read.xlsx()}}{399} -\indexentry{write.xlsx()@\texttt {write.xlsx()}}{400} -\indexentry{read\_ods()@\texttt {read\_ods()}}{401} -\indexentry{write\_ods()@\texttt {write\_ods()}}{401} -\indexentry{read.spss()@\texttt {read.spss()}}{401} -\indexentry{read.systat()@\texttt {read.systat()}}{402} -\indexentry{tibble@\texttt {tibble}}{402} -\indexentry{read\_sav()@\texttt {read\_sav()}}{402} -\indexentry{names()@\texttt {names()}}{403} -\indexentry{str()@\texttt {str()}}{403} -\indexentry{class()@\texttt {class()}}{403} -\indexentry{attributes()@\texttt {attributes()}}{403} -\indexentry{mode()@\texttt {mode()}}{403} -\indexentry{dim()@\texttt {dim()}}{403} -\indexentry{dimnames()@\texttt {dimnames()}}{403} -\indexentry{nrow()@\texttt {nrow()}}{403} -\indexentry{ncol()@\texttt {ncol()}}{403} -\indexentry{print()@\texttt {print()}}{404} -\indexentry{nc\_open()@\texttt {nc\_open()}}{404} -\indexentry{str()@\texttt {str()}}{404} -\indexentry{ncvar\_get()@\texttt {ncvar\_get()}}{404} -\indexentry{tibble@\texttt {tibble}}{405} -\indexentry{download.file()@\texttt {download.file()}}{408} -\indexentry{fromJSON()@\texttt {fromJSON()}}{409} +\indexentry{download.file()@\texttt {download.file()}}{390} +\indexentry{fromJSON()@\texttt {fromJSON()}}{392} diff --git a/rindex.ilg b/rindex.ilg index a958b565..74425183 100644 --- a/rindex.ilg +++ b/rindex.ilg @@ -1,33 +1,33 @@ This is makeindex, version 2.16 [MiKTeX 23.5]. Scanning input file rindex.idx.... -!! Input index error (file = rindex.idx, line = 149): +!! Input index error (file = rindex.idx, line = 153): -- Illegal null field. -!! Input index error (file = rindex.idx, line = 163): +!! Input index error (file = rindex.idx, line = 167): -- Illegal null field. -!! Input index error (file = rindex.idx, line = 170): +!! Input index error (file = rindex.idx, line = 174): -- Illegal null field. -!! Input index error (file = rindex.idx, line = 173): +!! Input index error (file = rindex.idx, line = 177): -- Extra `@' at position 2 of first argument. -!! Input index error (file = rindex.idx, line = 814): +!! Input index error (file = rindex.idx, line = 820): -- Incomplete first argument (premature LFD). -!! Input index error (file = rindex.idx, line = 820): +!! Input index error (file = rindex.idx, line = 826): -- Incomplete first argument (premature LFD). -!! Input index error (file = rindex.idx, line = 917): +!! Input index error (file = rindex.idx, line = 923): -- Incomplete first argument (premature LFD). . -!! Input index error (file = rindex.idx, line = 1273): +!! Input index error (file = rindex.idx, line = 1279): -- Extra `@' at position 2 of first argument. -!! Input index error (file = rindex.idx, line = 1276): +!! Input index error (file = rindex.idx, line = 1282): -- Extra `@' at position 2 of first argument. -done (1402 entries accepted, 9 rejected). -Sorting entries..............done (15666 comparisons). -Generating output file rindex.ind.....done (642 lines written, 0 warnings). +done (1408 entries accepted, 9 rejected). +Sorting entries..............done (15715 comparisons). +Generating output file rindex.ind.....done (644 lines written, 0 warnings). Output written in rindex.ind. Transcript written in rindex.ilg. diff --git a/rindex.ind b/rindex.ind index e48c9211..9e4f56a4 100644 --- a/rindex.ind +++ b/rindex.ind @@ -1,642 +1,644 @@ \begin{theindex} - \item \texttt {*}, 24, 37 - \item \texttt {+}, 24, 39, 276, 364 - \item \texttt {-}, 24, 39 - \item \texttt {->}, 27, 133 + \item \texttt {*}, 24, 36 + \item \texttt {+}, 24, 38, 262, 348 + \item \texttt {-}, 24, 38 + \item \texttt {->}, 27, 129 \item \texttt {-Inf}, 32, 36 - \item \texttt {.Machine\$double.eps}, 36 - \item \texttt {.Machine\$double.max}, 36 - \item \texttt {.Machine\$double.min}, 36 - \item \texttt {.Machine\$double.neg.eps}, 36 - \item \texttt {.Machine\$double.xmax}, 36 - \item \texttt {.Machine\$integer.max}, 36 - \item \texttt {/}, 24, 364 - \item \texttt {:}, 30 - \item \texttt {<}, 52 - \item \texttt {<-}, 26, 27, 69, 106, 133 - \item \texttt {<<-}, 170 - \item \texttt {<=}, 52 + \item \texttt {.Machine\$double.eps}, 35 + \item \texttt {.Machine\$double.max}, 35 + \item \texttt {.Machine\$double.min}, 35 + \item \texttt {.Machine\$double.neg.eps}, 35 + \item \texttt {.Machine\$double.xmax}, 35 + \item \texttt {.Machine\$integer.max}, 35 + \item \texttt {/}, 24, 348 + \item \texttt {:}, 29 + \item \texttt {<}, 50 + \item \texttt {<-}, 26, 27, 66, 101, 129 + \item \texttt {<<-}, 164 + \item \texttt {<=}, 50 \item \texttt {=}, 27 - \item \texttt {==}, 52, 266 - \item \texttt {>}, 52 - \item \texttt {>=}, 52 - \item \texttt {[ , ]}, 247, 266 - \item \texttt {[ ]}, 89, 90, 93, 99, 101, 104, 106, 109--111, 147, - 193 - \item \texttt {[[ ]]}, 90, 93, 97, 99--101, 104, 247 - \item \texttt {\$}, 97, 100, 101, 104 - \item \texttt {\%*\%}, 79 - \item \texttt {\%+\%}, 276 - \item \texttt {\%.>\%}, 255--258, 262 - \item \texttt {\%/\%}, 34 - \item \texttt {\%<>\%}, 255 - \item \texttt {\%>\%}, 255--258 - \item \texttt {\%T>\%}, 255 - \item \texttt {\%\%}, 34 - \item \texttt {\%in\%}, 57, 58 - \item \texttt {\&}, 50, 53 - \item \texttt {\&\&}, 50 - \item \texttt {\^{}}, 37 - \item \texttt {\textbar }, 50, 54 - \item \texttt {\textbar >}, 133, 255--258, 289 - \item \texttt {\textbar \textbar }, 50 + \item \texttt {==}, 50, 252 + \item \texttt {>}, 50 + \item \texttt {>=}, 50 + \item \texttt {[ , ]}, 235, 253 + \item \texttt {[ ]}, 85, 86, 89, 95, 97, 99, 101, 104, 105, 142, 185 + \item \texttt {[[ ]]}, 86, 89, 93, 95, 96, 99, 235 + \item \texttt {\$}, 93, 96, 99 + \item \texttt {\%*\%}, 76 + \item \texttt {\%+\%}, 262 + \item \texttt {\%.>\%}, 243--245, 249 + \item \texttt {\%/\%}, 33 + \item \texttt {\%<>\%}, 243 + \item \texttt {\%>\%}, 242--246 + \item \texttt {\%T>\%}, 243 + \item \texttt {\%\%}, 33 + \item \texttt {\%in\%}, 54, 55 + \item \texttt {\&}, 48, 51 + \item \texttt {\&\&}, 48 + \item \texttt {\^{}}, 36 + \item \texttt {\textbar }, 48, 52 + \item \texttt {\textbar >}, 129, 242--245, 274 + \item \texttt {\textbar \textbar }, 48 \indexspace - \item \texttt {abs()}, 39, 54 - \item \texttt {aes()}, 277, 288, 307 - \item \texttt {after\_scale()}, 289 - \item \texttt {after\_stat()}, 289, 290 - \item \texttt {aggregate()}, 107--109, 264 - \item \texttt {AIC()}, 197, 201 - \item \texttt {all()}, 50, 51 - \item \texttt {annotate()}, 312, 353, 354, 356 - \item \texttt {annotation\_custom()}, 312, 354 - \item \texttt {anova()}, 165, 196, 200--202, 204, 207, 209, 212, 215 - \item \texttt {anti\_join()}, 268 - \item \texttt {any()}, 50, 52 - \item \texttt {aov()}, 207, 235 - \item \texttt {append()}, 29, 92 - \item \texttt {apply()}, 155, 156, 159--161 - \item \texttt {arrange()}, 262 - \item \texttt {array}, 72, 110 - \item \texttt {array()}, 78 - \item \texttt {as.character()}, 62, 84 - \item \texttt {as.data.frame()}, 252 - \item \texttt {as.formula()}, 229 - \item \texttt {as.integer()}, 62 - \item \texttt {as.logical()}, 62 - \item \texttt {as.matrix()}, 73 - \item \texttt {as.numeric()}, 62, 63, 84 - \item \texttt {as.ts()}, 232 - \item \texttt {as.vector()}, 78 - \item \texttt {as\_tibble()}, 250 - \item \texttt {assign()}, 134, 162, 163, 170, 258 - \item \texttt {attach()}, 105, 112, 113 - \item \texttt {attr()}, 115, 116 - \item \texttt {attr()<-}, 115 - \item \texttt {attributes()}, 115, 195, 403 + \item \texttt {abs()}, 38, 52 + \item \texttt {aes()}, 263, 273, 293 + \item \texttt {after\_scale()}, 275 + \item \texttt {after\_stat()}, 275, 276 + \item \texttt {aggregate()}, 102, 103, 251 + \item \texttt {AIC()}, 188, 192 + \item \texttt {all()}, 48--50 + \item \texttt {annotate()}, 297, 337, 338, 340 + \item \texttt {annotation\_custom()}, 297, 338 + \item \texttt {anova()}, 159, 188, 192, 194, 196, 198, 201, 203, 206 + \item \texttt {anti\_join()}, 255 + \item \texttt {any()}, 48--50 + \item \texttt {aov()}, 198, 226 + \item \texttt {append()}, 29, 87 + \item \texttt {apply()}, 149, 151, 154, 155 + \item \texttt {arrange()}, 249 + \item \texttt {array}, 69, 104 + \item \texttt {array()}, 74 + \item \texttt {as.character()}, 59, 60, 80 + \item \texttt {as.data.frame()}, 240 + \item \texttt {as.formula()}, 219, 220 + \item \texttt {as.integer()}, 60 + \item \texttt {as.logical()}, 59, 60 + \item \texttt {as.matrix()}, 70 + \item \texttt {as.numeric()}, 59, 60, 80 + \item \texttt {as.ts()}, 222 + \item \texttt {as.vector()}, 75 + \item \texttt {as\_tibble()}, 238 + \item \texttt {assign()}, 130, 157, 158, 164, 245 + \item \texttt {attach()}, 100, 107, 108 + \item \texttt {attr()}, 109, 111 + \item \texttt {attr()<-}, 109 + \item \texttt {attributes()}, 109, 187, 386 \indexspace - \item \texttt {basename()}, 378 - \item \texttt {BIC()}, 197, 201 - \item \texttt {biplot()}, 238 - \item \texttt {bold()}, 368 - \item \texttt {bolditalic()}, 368 - \item \texttt {boxplot.stats()}, 188 - \item \texttt {bquote()}, 369 - \item \texttt {break()}, 149, 151, 152 + \item \texttt {basename()}, 361 + \item \texttt {BIC()}, 188, 192 + \item \texttt {biplot()}, 228 + \item \texttt {bold()}, 351 + \item \texttt {bolditalic()}, 351 + \item \texttt {boxplot.stats()}, 180 + \item \texttt {bquote()}, 353 + \item \texttt {break()}, 144, 146, 147 \indexspace - \item \texttt {c()}, 28, 88, 92 - \item \texttt {call}, 222 - \item \texttt {cars}, 198 - \item \texttt {cat()}, 41, 42, 386 - \item \texttt {ceiling()}, 38, 39 - \item \texttt {character}, 40, 44, 59, 63 - \item \texttt {charmatch()}, 57 - \item \texttt {citation()}, 181 - \item \texttt {class()}, 60, 97, 195, 252, 403 - \item \texttt {coef()}, 197, 201, 207 - \item \texttt {coefficients()}, 201 - \item \texttt {comment()}, 114 - \item \texttt {comment()<-}, 114 - \item \texttt {contains()}, 263 - \item \texttt {contr.helmert()}, 208, 209 - \item \texttt {contr.poly()}, 209 - \item \texttt {contr.SAS()}, 208, 209 - \item \texttt {contr.sum()}, 209 - \item \texttt {contr.treatment()}, 208, 209 - \item \texttt {coord\_cartesian()}, 323 - \item \texttt {coord\_fixed()}, 323 - \item \texttt {coord\_flip()}, 328, 332 - \item \texttt {coord\_polar()}, 356 - \item \texttt {cor()}, 194--196 - \item \texttt {cor.test()}, 195, 196 + \item \texttt {c()}, 28, 84, 87 + \item \texttt {call}, 213 + \item \texttt {cars}, 189 + \item \texttt {cat()}, 40, 41, 369 + \item \texttt {ceiling()}, 37, 38 + \item \texttt {character}, 39, 43, 56, 60 + \item \texttt {charmatch()}, 55 + \item \texttt {citation()}, 174 + \item \texttt {class()}, 57, 93, 187, 240, 386 + \item \texttt {coef()}, 188, 192, 198 + \item \texttt {coefficients()}, 192 + \item \texttt {comment()}, 109 + \item \texttt {comment()<-}, 109 + \item \texttt {complex}, 38 + \item \texttt {contains()}, 250 + \item \texttt {contr.helmert()}, 199, 201 + \item \texttt {contr.poly()}, 201 + \item \texttt {contr.SAS()}, 199, 201 + \item \texttt {contr.sum()}, 200 + \item \texttt {contr.treatment()}, 199, 201 + \item \texttt {coord\_cartesian()}, 308 + \item \texttt {coord\_fixed()}, 308 + \item \texttt {coord\_flip()}, 313, 316 + \item \texttt {coord\_polar()}, 340 + \item \texttt {cor()}, 186, 187 + \item \texttt {cor.test()}, 186, 187 \item \texttt {cos()}, 25 - \item \texttt {crossprod()}, 80 - \item \texttt {cummax()}, 162 - \item \texttt {cummin()}, 162 - \item \texttt {cumprod()}, 162 - \item \texttt {cumsum()}, 162 - \item \texttt {cutree()}, 242 + \item \texttt {cummax()}, 156 + \item \texttt {cummin()}, 156 + \item \texttt {cumprod()}, 156 + \item \texttt {cumsum()}, 156 + \item \texttt {cutree()}, 231 \indexspace - \item \texttt {data()}, 117 - \item \texttt {data.frame}, 96, 97, 249, 387 - \item \texttt {data.frame()}, 96, 103, 250, 254 - \item \texttt {dbinom()}, 189 - \item \texttt {dchisq()}, 189 - \item \texttt {decompose()}, 234 - \item \texttt {detach()}, 112, 113, 183 - \item \texttt {df()}, 189 - \item \texttt {diag()}, 80 - \item \texttt {diff()}, 162 - \item \texttt {diffinv()}, 162 - \item \texttt {dim()}, 73, 77, 115, 116, 403 - \item \texttt {dim()<-}, 115 - \item \texttt {dimnames()}, 403 - \item \texttt {dir()}, 379 - \item \texttt {dirname()}, 378 - \item \texttt {dist}, 241 - \item \texttt {dlnorm()}, 189 - \item \texttt {dmultinom()}, 189 - \item \texttt {dnorm()}, 189 - \item \texttt {do.call()}, 164, 165 - \item \texttt {double}, 27, 35--37, 70 + \item \texttt {data()}, 111 + \item \texttt {data.frame}, 91, 93, 237, 370 + \item \texttt {data.frame()}, 92, 99, 238, 241 + \item \texttt {dbinom()}, 181 + \item \texttt {dchisq()}, 181 + \item \texttt {decompose()}, 224 + \item \texttt {detach()}, 107, 108, 176 + \item \texttt {df()}, 181 + \item \texttt {diag()}, 76 + \item \texttt {diff()}, 156 + \item \texttt {diffinv()}, 156 + \item \texttt {dim()}, 69, 73, 109, 111, 386 + \item \texttt {dim()<-}, 109 + \item \texttt {dimnames()}, 386 + \item \texttt {dir()}, 363 + \item \texttt {dirname()}, 362 + \item \texttt {dist}, 231 + \item \texttt {dlnorm()}, 181 + \item \texttt {dmultinom()}, 181 + \item \texttt {dnorm()}, 181 + \item \texttt {do.call()}, 158, 159 + \item \texttt {double}, 27, 34--36, 67 \item \texttt {double()}, 27 - \item \texttt {download.file()}, 408 - \item \texttt {dpois()}, 189 - \item \texttt {dt()}, 189 - \item \texttt {dunif()}, 189 - \item \texttt {duplicated()}, 58 + \item \texttt {download.file()}, 390 + \item \texttt {dpois()}, 181 + \item \texttt {dt()}, 181 + \item \texttt {dunif()}, 181 + \item \texttt {duplicated()}, 56 \indexspace - \item \texttt {edit()}, 114 - \item \texttt {effects()}, 201 - \item \texttt {ends\_with()}, 263 - \item \texttt {environment()}, 171 - \item \texttt {eurodist}, 239, 241 - \item \texttt {excel\_sheets()}, 398 - \item \texttt {exists()}, 178 + \item \texttt {edit()}, 108 + \item \texttt {effects()}, 192 + \item \texttt {ends\_with()}, 250 + \item \texttt {environment()}, 164 + \item \texttt {eurodist}, 229, 231 + \item \texttt {excel\_sheets()}, 381 + \item \texttt {exists()}, 172 \item \texttt {exp()}, 25 - \item \texttt {expand\_limits()}, 341 - \item \texttt {expression()}, 366--368 + \item \texttt {expand\_limits()}, 326 + \item \texttt {expression()}, 349--352 \indexspace - \item \texttt {facet\_grid()}, 334 - \item \texttt {facet\_wrap()}, 334, 337, 357 - \item \texttt {factor}, 80 - \item \texttt {factor()}, 80--82, 84, 207 - \item \texttt {factorial()}, 162 - \item \texttt {file.path()}, 380 - \item \texttt {filter()}, 263 - \item \texttt {fitted()}, 197, 201 - \item \texttt {fitted.values()}, 201 - \item \texttt {fix()}, 114 - \item \texttt {for}, 145, 147, 149, 152 - \item \texttt {format()}, 63, 64, 369 - \item \texttt {formula}, 222, 223 - \item \texttt {fromJSON()}, 409 - \item \texttt {full\_join()}, 266 - \item \texttt {function()}, 169 + \item \texttt {facet\_grid()}, 319 + \item \texttt {facet\_wrap()}, 319, 322, 341 + \item \texttt {factor}, 77 + \item \texttt {factor()}, 77--80, 199 + \item \texttt {factorial()}, 156 + \item \texttt {file.path()}, 363 + \item \texttt {filter()}, 250 + \item \texttt {fitted()}, 188, 192 + \item \texttt {fitted.values()}, 192 + \item \texttt {fix()}, 108 + \item \texttt {for}, 140--142, 144, 147 + \item \texttt {format()}, 60, 61, 352, 353 + \item \texttt {formula}, 213, 214 + \item \texttt {fromJSON()}, 392 + \item \texttt {full\_join()}, 253 + \item \texttt {function()}, 163 \indexspace - \item \texttt {gather()}, 260 - \item \texttt {geom\_abline()}, 300 - \item \texttt {geom\_area()}, 300, 349 - \item \texttt {geom\_bar()}, 301, 321, 349, 357, 358 - \item \texttt {geom\_bin2d()}, 323 - \item \texttt {geom\_boxplot()}, 325 - \item \texttt {geom\_col()}, 301, 303, 349 - \item \texttt {geom\_curve()}, 299 - \item \texttt {geom\_density()}, 324 - \item \texttt {geom\_density\_2d()}, 325 - \item \texttt {geom\_errorbar()}, 298, 317 - \item \texttt {geom\_grob()}, 309, 312 - \item \texttt {geom\_grob\_npc()}, 313 - \item \texttt {geom\_hex()}, 323 - \item \texttt {geom\_histogram()}, 321, 323 - \item \texttt {geom\_hline()}, 300, 349, 356 - \item \texttt {geom\_label()}, 305, 306, 308, 349, 366 - \item \texttt {geom\_label\_npc()}, 313 - \item \texttt {geom\_label\_repel()}, 308 - \item \texttt {geom\_line()}, 275, 281, 291, 298--300, 328, 349 - \item \texttt {geom\_linerange()}, 317 - \item \texttt {geom\_path()}, 299, 300 - \item \texttt {geom\_plot()}, 309, 311 - \item \texttt {geom\_plot\_npc()}, 313 - \item \texttt {geom\_point()}, 275, 279, 281, 290--292, 294, 297, - 300, 306, 328, 333, 334, 349 - \item \texttt {geom\_point\_s()}, 295 - \item \texttt {geom\_pointrange()}, 298, 315, 317 - \item \texttt {geom\_polygon()}, 300, 357 - \item \texttt {geom\_range()}, 298 - \item \texttt {geom\_rect()}, 304 - \item \texttt {geom\_ribbon()}, 300 - \item \texttt {geom\_rug()}, 298 - \item \texttt {geom\_segment()}, 299 - \item \texttt {geom\_sf()}, 304 - \item \texttt {geom\_sf\_label()}, 304 - \item \texttt {geom\_sf\_text()}, 304 - \item \texttt {geom\_smooth()}, 278, 318, 331 - \item \texttt {geom\_spoke()}, 299 - \item \texttt {geom\_step()}, 299 - \item \texttt {geom\_table()}, 309--311 - \item \texttt {geom\_table\_npc()}, 313 - \item \texttt {geom\_text()}, 305--309, 349, 366 - \item \texttt {geom\_text\_npc()}, 313 - \item \texttt {geom\_text\_repel()}, 308 - \item \texttt {geom\_tile()}, 303, 304 - \item \texttt {geom\_violin()}, 326 - \item \texttt {geom\_vline()}, 300, 349, 356 - \item \texttt {get()}, 163 - \item \texttt {getAnywhere()}, 185 - \item \texttt {getCall()}, 201, 210 - \item \texttt {getElement()}, 135 - \item \texttt {getwd()}, 378 - \item \texttt {ggplot()}, 125, 285, 288, 368 - \item \texttt {ggplotGrob()}, 354 - \item \texttt {ggtitle()}, 338, 339 - \item \texttt {gl()}, 81 - \item \texttt {glm()}, 214 - \item \texttt {grep()}, 45, 46 - \item \texttt {grepl()}, 45, 46 - \item \texttt {group\_by()}, 264, 266 - \item \texttt {gsub()}, 45, 46 + \item \texttt {gather()}, 248 + \item \texttt {geom\_abline()}, 286 + \item \texttt {geom\_area()}, 285, 333 + \item \texttt {geom\_bar()}, 287, 306, 333, 341, 342 + \item \texttt {geom\_bin2d()}, 308 + \item \texttt {geom\_boxplot()}, 310 + \item \texttt {geom\_col()}, 286--288, 333 + \item \texttt {geom\_curve()}, 284 + \item \texttt {geom\_density()}, 309 + \item \texttt {geom\_density\_2d()}, 310 + \item \texttt {geom\_errorbar()}, 283, 302 + \item \texttt {geom\_grob()}, 294, 297 + \item \texttt {geom\_grob\_npc()}, 298 + \item \texttt {geom\_hex()}, 308 + \item \texttt {geom\_histogram()}, 306, 308 + \item \texttt {geom\_hline()}, 286, 333, 340 + \item \texttt {geom\_label()}, 290--294, 333, 349 + \item \texttt {geom\_label\_npc()}, 298 + \item \texttt {geom\_label\_repel()}, 294 + \item \texttt {geom\_line()}, 261, 267, 277, 284, 285, 313, 333 + \item \texttt {geom\_linerange()}, 302 + \item \texttt {geom\_path()}, 284, 285 + \item \texttt {geom\_plot()}, 294, 296 + \item \texttt {geom\_plot\_npc()}, 298 + \item \texttt {geom\_point()}, 261, 266, 267, 276, 277, 280, 282, + 285, 292, 313, 318, 319, 333 + \item \texttt {geom\_point\_s()}, 281 + \item \texttt {geom\_pointrange()}, 283, 301, 302 + \item \texttt {geom\_polygon()}, 285, 341 + \item \texttt {geom\_range()}, 283 + \item \texttt {geom\_rect()}, 289 + \item \texttt {geom\_ribbon()}, 285 + \item \texttt {geom\_rug()}, 283 + \item \texttt {geom\_segment()}, 284, 285 + \item \texttt {geom\_sf()}, 290 + \item \texttt {geom\_sf\_label()}, 290 + \item \texttt {geom\_sf\_text()}, 290 + \item \texttt {geom\_smooth()}, 264, 303, 316 + \item \texttt {geom\_spoke()}, 285 + \item \texttt {geom\_step()}, 285 + \item \texttt {geom\_table()}, 294--296 + \item \texttt {geom\_table\_npc()}, 298 + \item \texttt {geom\_text()}, 290--295, 333, 349, 350 + \item \texttt {geom\_text\_npc()}, 298 + \item \texttt {geom\_text\_repel()}, 294 + \item \texttt {geom\_tile()}, 288, 289 + \item \texttt {geom\_violin()}, 311 + \item \texttt {geom\_vline()}, 286, 333, 340 + \item \texttt {get()}, 157, 158 + \item \texttt {getAnywhere()}, 178 + \item \texttt {getCall()}, 192, 202 + \item \texttt {getElement()}, 131 + \item \texttt {getwd()}, 362 + \item \texttt {ggplot()}, 121, 271, 273, 274, 352 + \item \texttt {ggplotGrob()}, 338 + \item \texttt {ggtitle()}, 323, 324 + \item \texttt {gl()}, 78 + \item \texttt {glm()}, 206 + \item \texttt {grep()}, 44, 45 + \item \texttt {grepl()}, 44, 45 + \item \texttt {group\_by()}, 251, 252 + \item \texttt {gsub()}, 44, 45 \indexspace - \item \texttt {hcl()}, 351 - \item \texttt {hclust()}, 241, 242 - \item \texttt {help()}, 17 + \item \texttt {hcl()}, 335 + \item \texttt {hclust()}, 231, 232 + \item \texttt {help()}, 16, 17 \indexspace - \item \texttt {I()}, 102, 103, 200, 225, 254 - \item \texttt {identical()}, 252 - \item \texttt {if ()}, 136, 140 - \item \texttt {if () \ldots \ else}, 136, 140 - \item \texttt {if()}, 137 - \item \texttt {ifelse()}, 143--145 + \item \texttt {I()}, 97, 98, 191, 215, 241 + \item \texttt {identical()}, 240 + \item \texttt {if ()}, 132, 135 + \item \texttt {if () \ldots \ else}, 132, 135 + \item \texttt {if()}, 133 + \item \texttt {ifelse()}, 138--140 \item \texttt {Inf}, 32, 36 - \item \texttt {inherits()}, 60, 228 - \item \texttt {inner\_join()}, 266 - \item \texttt {InsectSprays}, 206, 215 - \item \texttt {install.packages()}, 180 - \item \texttt {integer}, 27, 33, 35--37, 70 - \item \texttt {inverse.rle()}, 162 - \item \texttt {iris}, 235, 259 - \item \texttt {is.array()}, 77 - \item \texttt {is.character()}, 60 - \item \texttt {is.element()}, 57 - \item \texttt {is.empty.model()}, 223, 224 - \item \texttt {is.logical()}, 60 - \item \texttt {is.matrix()}, 73 - \item \texttt {is.na()}, 33, 51 - \item \texttt {is.numeric()}, 27, 60 - \item \texttt {is\_tibble()}, 250 - \item \texttt {italic()}, 368 + \item \texttt {inherits()}, 57, 219 + \item \texttt {inner\_join()}, 253 + \item \texttt {InsectSprays}, 197, 206 + \item \texttt {install.packages()}, 173, 174 + \item \texttt {integer}, 27, 33, 34, 36, 67 + \item \texttt {inverse.rle()}, 156 + \item \texttt {iris}, 226, 247 + \item \texttt {is.array()}, 73 + \item \texttt {is.character()}, 58 + \item \texttt {is.element()}, 54, 55 + \item \texttt {is.empty.model()}, 214, 215 + \item \texttt {is.logical()}, 58 + \item \texttt {is.matrix()}, 69 + \item \texttt {is.na()}, 33, 50 + \item \texttt {is.numeric()}, 27, 58 + \item \texttt {is\_tibble()}, 238 + \item \texttt {italic()}, 351 \indexspace - \item \texttt {label\_bquote()}, 336 - \item \texttt {label\_date()}, 344 - \item \texttt {label\_date\_short()}, 344 - \item \texttt {label\_time()}, 344 - \item \texttt {labs()}, 339, 366 - \item \texttt {lapply()}, 106, 155--157 - \item \texttt {left\_join()}, 266 - \item \texttt {length()}, 28, 63, 73, 188, 224 - \item \texttt {LETTERS}, 65 - \item \texttt {letters}, 65 - \item \texttt {levels()}, 83, 84, 115 - \item \texttt {levels()<-}, 115 - \item \texttt {library}, 183 - \item \texttt {library()}, 180, 181, 183 - \item \texttt {list}, 88, 96, 170, 224, 249 - \item \texttt {list()}, 88, 184 - \item \texttt {list.dirs()}, 379 - \item \texttt {list.files()}, 379 - \item \texttt {lm}, 170 - \item \texttt {lm()}, 116, 170, 197, 200, 205, 207, 235, 318 - \item \texttt {load()}, 118 - \item \texttt {loess}, 221 - \item \texttt {log()}, 25, 225 + \item \texttt {label\_bquote()}, 321 + \item \texttt {label\_date()}, 328 + \item \texttt {label\_date\_short()}, 328 + \item \texttt {label\_time()}, 328 + \item \texttt {labs()}, 324, 350 + \item \texttt {lapply()}, 101, 149, 151, 152 + \item \texttt {left\_join()}, 253 + \item \texttt {length()}, 28, 60, 69, 180, 214, 215 + \item \texttt {LETTERS}, 63 + \item \texttt {letters}, 63 + \item \texttt {levels()}, 79, 80, 109 + \item \texttt {levels()<-}, 109 + \item \texttt {library}, 177 + \item \texttt {library()}, 173, 174, 176 + \item \texttt {list}, 84, 92, 163, 215, 237 + \item \texttt {list()}, 84, 177 + \item \texttt {list.dirs()}, 363 + \item \texttt {list.files()}, 363 + \item \texttt {lm}, 163 + \item \texttt {lm()}, 111, 163, 188, 189, 191, 196, 198, 226, 303 + \item \texttt {load()}, 112 + \item \texttt {loess}, 212 + \item \texttt {log()}, 25, 215 \item \texttt {log10()}, 25 \item \texttt {log2()}, 25 - \item \texttt {logical}, 49, 54, 64, 138, 140 - \item \texttt {ls()}, 39, 118 + \item \texttt {logical}, 47, 48, 52, 62, 133, 135 + \item \texttt {ls()}, 39, 112, 113 \indexspace - \item \texttt {mad()}, 188 - \item \texttt {manova()}, 235 - \item \texttt {match()}, 57 - \item \texttt {matches()}, 263 - \item \texttt {matrix}, 72, 77, 110, 249 - \item \texttt {matrix()}, 73, 194 - \item \texttt {max()}, 162, 188 - \item \texttt {mean()}, 159, 162, 188 - \item \texttt {median()}, 188 - \item \texttt {methods()}, 176 - \item \texttt {mget()}, 163 - \item \texttt {min()}, 162, 188 - \item \texttt {mode()}, 188, 403 - \item \texttt {model.frame()}, 201 - \item \texttt {model.matrix()}, 201 - \item \texttt {month.abb}, 65 - \item \texttt {month.name}, 65 - \item \texttt {mtcars}, 279 - \item \texttt {mutate()}, 261, 262 - \item \texttt {my\_print()}, 177 + \item \texttt {mad()}, 180 + \item \texttt {manova()}, 226 + \item \texttt {match()}, 55 + \item \texttt {matches()}, 250 + \item \texttt {matrix}, 69, 73, 75, 104, 237 + \item \texttt {matrix()}, 70, 186 + \item \texttt {max()}, 156, 180 + \item \texttt {mean()}, 154, 156, 180 + \item \texttt {median()}, 180 + \item \texttt {methods()}, 169 + \item \texttt {mget()}, 157, 158 + \item \texttt {min()}, 156, 180 + \item \texttt {mode()}, 180, 386 + \item \texttt {model.frame()}, 192 + \item \texttt {model.matrix()}, 192 + \item \texttt {month.abb}, 63 + \item \texttt {month.name}, 63 + \item \texttt {mtcars}, 265 + \item \texttt {mutate()}, 249 + \item \texttt {my\_print()}, 170 \indexspace - \item \texttt {NA}, 32, 33, 64 - \item \texttt {NA\_character\_}, 64 - \item \texttt {NA\_real\_}, 64 - \item \texttt {names()}, 115, 264, 403 - \item \texttt {names()<-}, 115, 264 + \item \texttt {NA}, 32, 33, 62 + \item \texttt {NA\_character\_}, 62 + \item \texttt {NA\_real\_}, 62 + \item \texttt {names()}, 109, 251, 386 + \item \texttt {names()<-}, 109, 251 \item \texttt {NaN}, 32 - \item \texttt {nc\_open()}, 404 - \item \texttt {nchar()}, 41 - \item \texttt {ncol()}, 73, 403 - \item \texttt {ncvar\_get()}, 404 - \item \texttt {next()}, 149 - \item \texttt {nlme}, 218 - \item \texttt {nls}, 218 - \item \texttt {nls()}, 217, 218 - \item \texttt {nottem}, 233 - \item \texttt {npk}, 227 - \item \texttt {nrow()}, 73, 403 - \item \texttt {numeric}, 24, 27, 59, 70, 140, 223 - \item \texttt {numeric()}, 27, 31, 32 + \item \texttt {nc\_open()}, 386 + \item \texttt {nchar()}, 40 + \item \texttt {ncol()}, 69, 386 + \item \texttt {ncvar\_get()}, 387 + \item \texttt {next()}, 144 + \item \texttt {nlme}, 209 + \item \texttt {nls}, 209 + \item \texttt {nls()}, 208, 209 + \item \texttt {nottem}, 223 + \item \texttt {npk}, 218 + \item \texttt {nrow()}, 69, 386 + \item \texttt {numeric}, 24, 27, 56, 57, 67, 135, 214 + \item \texttt {numeric()}, 27, 31 \indexspace - \item \texttt {objects()}, 39 - \item \texttt {on.exit()}, 155 - \item \texttt {options()}, 251 - \item \texttt {Orange}, 298 - \item \texttt {order()}, 71, 85, 110, 262 - \item \texttt {ordered()}, 80, 207 + \item \texttt {objects()}, 38, 39 + \item \texttt {on.exit()}, 150 + \item \texttt {options()}, 239 + \item \texttt {Orange}, 284 + \item \texttt {order()}, 68, 82, 104, 105, 249 + \item \texttt {ordered()}, 77, 199 \indexspace - \item \texttt {parse()}, 367, 368 - \item \texttt {paste()}, 42, 43, 307, 366, 369 - \item \texttt {pbinom()}, 189 - \item \texttt {pchisq()}, 189 - \item \texttt {pf()}, 189 + \item \texttt {parse()}, 351, 352 + \item \texttt {paste()}, 42, 292, 350, 352 + \item \texttt {pbinom()}, 181 + \item \texttt {pchisq()}, 181 + \item \texttt {pf()}, 181 \item \texttt {pi}, 25 - \item \texttt {pivot\_longer()}, 259--261 - \item \texttt {pivot\_wider()}, 260, 261 - \item \texttt {plain()}, 368 - \item \texttt {plnorm()}, 189 - \item \texttt {plot()}, 119--121, 175, 196, 216, 222, 259 - \item \texttt {pmatch()}, 57 - \item \texttt {pmultinom()}, 189 - \item \texttt {pnorm()}, 189, 191 - \item \texttt {poly()}, 200 - \item \texttt {position\_identity()}, 275, 294 - \item \texttt {position\_jitter()}, 294 - \item \texttt {position\_stack()}, 275 - \item \texttt {ppois()}, 189 - \item \texttt {prcomp()}, 237, 239 - \item \texttt {predict()}, 197, 205 - \item \texttt {pretty\_breaks()}, 342 - \item \texttt {print()}, 17, 41, 63, 94, 125, 148, 168, 195, 251, - 257, 404 - \item \texttt {prod()}, 162 - \item \texttt {pt()}, 189, 191, 205 - \item \texttt {punif()}, 189 - \item \texttt {Puromycin}, 218, 319 + \item \texttt {pivot\_longer()}, 247, 248 + \item \texttt {pivot\_wider()}, 247, 248 + \item \texttt {plain()}, 351 + \item \texttt {plnorm()}, 181 + \item \texttt {plot()}, 113--115, 169, 188, 207, 213, 246 + \item \texttt {pmatch()}, 55 + \item \texttt {pmultinom()}, 181 + \item \texttt {pnorm()}, 181, 183 + \item \texttt {poly()}, 191 + \item \texttt {position\_identity()}, 261, 280 + \item \texttt {position\_jitter()}, 280 + \item \texttt {position\_stack()}, 261 + \item \texttt {POSIXct}, 39 + \item \texttt {POSIXlt}, 39 + \item \texttt {ppois()}, 181 + \item \texttt {prcomp()}, 227, 229 + \item \texttt {predict()}, 188, 197 + \item \texttt {pretty\_breaks()}, 327 + \item \texttt {print()}, 18, 40, 61, 89, 121, 143, 162, 187, 239, + 244, 386 + \item \texttt {prod()}, 156 + \item \texttt {pt()}, 181, 183, 196 + \item \texttt {punif()}, 181 + \item \texttt {Puromycin}, 209, 304 \indexspace - \item \texttt {qbinom()}, 189 - \item \texttt {qchisq()}, 189 - \item \texttt {qf()}, 189 - \item \texttt {qlnorm()}, 189 - \item \texttt {qmultinom()}, 189 - \item \texttt {qnorm()}, 189, 191 - \item \texttt {qpois()}, 189 - \item \texttt {qt()}, 189 - \item \texttt {quantile()}, 188 - \item \texttt {qunif()}, 189 + \item \texttt {qbinom()}, 181 + \item \texttt {qchisq()}, 181 + \item \texttt {qf()}, 181 + \item \texttt {qlnorm()}, 181 + \item \texttt {qmultinom()}, 181 + \item \texttt {qnorm()}, 181, 183 + \item \texttt {qpois()}, 181 + \item \texttt {qt()}, 181 + \item \texttt {quantile()}, 180 + \item \texttt {qunif()}, 181 \indexspace - \item \texttt {range()}, 188 - \item \texttt {rbinom()}, 189 - \item \texttt {rchisq()}, 189 - \item \texttt {read.csv()}, 382--384, 386, 387 - \item \texttt {read.csv2()}, 383, 384, 386 - \item \texttt {read.fortran()}, 385, 389 - \item \texttt {read.fwf()}, 385 - \item \texttt {read.spss()}, 401 - \item \texttt {read.systat()}, 402 - \item \texttt {read.table()}, 250, 384--388 - \item \texttt {read.xlsx()}, 399 - \item \texttt {read\_csv()}, 387, 392 - \item \texttt {read\_delim()}, 389 - \item \texttt {read\_excel()}, 398 - \item \texttt {read\_file()}, 391 - \item \texttt {read\_fwf()}, 389 - \item \texttt {read\_html()}, 392 - \item \texttt {read\_lines()}, 391 - \item \texttt {read\_ods()}, 401 - \item \texttt {read\_sav()}, 402 - \item \texttt {read\_table()}, 388, 389 - \item \texttt {read\_table2()}, 387, 388 - \item \texttt {read\_tsv()}, 389 - \item \texttt {readLines()}, 380 - \item \texttt {readRDS()}, 119 - \item \texttt {rel()}, 362 - \item \texttt {remove()}, 39 - \item \texttt {rename()}, 264 - \item \texttt {reorder()}, 85 - \item \texttt {rep()}, 30, 43 - \item \texttt {repeat}, 145, 149, 151, 152 - \item \texttt {reshape()}, 114 - \item \texttt {resid()}, 201 - \item \texttt {residuals()}, 197, 201 - \item \texttt {return()}, 170 - \item \texttt {rev()}, 84 - \item \texttt {rf()}, 189 - \item \texttt {rgb()}, 351 - \item \texttt {right\_join()}, 266 - \item \texttt {rle()}, 71, 162 - \item \texttt {rlm()}, 290 - \item \texttt {rlnorm()}, 189 + \item \texttt {range()}, 180 + \item \texttt {rbinom()}, 181 + \item \texttt {rchisq()}, 181 + \item \texttt {read.csv()}, 366--370 + \item \texttt {read.csv2()}, 367--369 + \item \texttt {read.fortran()}, 368, 372 + \item \texttt {read.fwf()}, 368 + \item \texttt {read.spss()}, 384 + \item \texttt {read.systat()}, 384 + \item \texttt {read.table()}, 238, 368--371 + \item \texttt {read.xlsx()}, 382 + \item \texttt {read\_csv()}, 370, 375 + \item \texttt {read\_delim()}, 372 + \item \texttt {read\_excel()}, 381 + \item \texttt {read\_file()}, 374 + \item \texttt {read\_fwf()}, 372 + \item \texttt {read\_html()}, 375 + \item \texttt {read\_lines()}, 374 + \item \texttt {read\_ods()}, 383 + \item \texttt {read\_sav()}, 385 + \item \texttt {read\_table()}, 371, 372 + \item \texttt {read\_table2()}, 370, 371 + \item \texttt {read\_tsv()}, 372 + \item \texttt {readLines()}, 364 + \item \texttt {readRDS()}, 113 + \item \texttt {rel()}, 345 + \item \texttt {remove()}, 38, 39 + \item \texttt {rename()}, 251 + \item \texttt {reorder()}, 81 + \item \texttt {rep()}, 29, 42 + \item \texttt {repeat}, 140, 144, 146, 147 + \item \texttt {reshape()}, 108 + \item \texttt {resid()}, 192 + \item \texttt {residuals()}, 188, 192 + \item \texttt {return()}, 164 + \item \texttt {rev()}, 81 + \item \texttt {rf()}, 181 + \item \texttt {rgb()}, 334 + \item \texttt {right\_join()}, 253 + \item \texttt {rle()}, 68, 156 + \item \texttt {rlm()}, 275 + \item \texttt {rlnorm()}, 181 \item \texttt {rm()}, 39 - \item \texttt {rmultinom()}, 189 - \item \texttt {rnorm()}, 189, 192, 194 - \item \texttt {round()}, 37 - \item \texttt {rpois()}, 189 - \item \texttt {rt()}, 189 - \item \texttt {runif()}, 189, 192 - \item \texttt {runmed()}, 162 + \item \texttt {rmultinom()}, 181 + \item \texttt {rnorm()}, 181, 184, 186 + \item \texttt {round()}, 36 + \item \texttt {rpois()}, 181 + \item \texttt {rt()}, 181 + \item \texttt {runif()}, 181, 184 + \item \texttt {runmed()}, 156 \indexspace - \item \texttt {sample()}, 194 - \item \texttt {sapply()}, 106, 155--157 - \item \texttt {save()}, 117 - \item \texttt {saveRDS()}, 119 - \item \texttt {scale\_color\_binned()}, 352 - \item \texttt {scale\_color\_brewer()}, 352 - \item \texttt {scale\_color\_continuous()}, 275, 351 - \item \texttt {scale\_color\_date()}, 351 - \item \texttt {scale\_color\_datetime()}, 351 - \item \texttt {scale\_color\_discrete()}, 338, 351 - \item \texttt {scale\_color\_distiller()}, 351 - \item \texttt {scale\_color\_gradient()}, 351, 352 - \item \texttt {scale\_color\_gradient2()}, 351 - \item \texttt {scale\_color\_gradientn()}, 351 - \item \texttt {scale\_color\_gray()}, 351 - \item \texttt {scale\_color\_hue()}, 351 - \item \texttt {scale\_color\_identity()}, 338, 353 - \item \texttt {scale\_color\_viridis\_c()}, 351 - \item \texttt {scale\_color\_viridis\_d()}, 352 - \item \texttt {scale\_fill\_identity()}, 353 - \item \texttt {scale\_x\_continuous()}, 344 - \item \texttt {scale\_x\_discrete()}, 348 - \item \texttt {scale\_x\_log10()}, 344 - \item \texttt {scale\_x\_reverse()}, 344 - \item \texttt {scale\_y\_continuous()}, 344 - \item \texttt {scale\_y\_log()}, 344 - \item \texttt {scale\_y\_log10()}, 344, 345 - \item \texttt {sd()}, 162, 188 - \item \texttt {search()}, 184 - \item \texttt {select()}, 263 - \item \texttt {SEM()}, 171, 172 - \item \texttt {semi\_join()}, 268 - \item \texttt {seq()}, 30, 149 - \item \texttt {set.seed()}, 192 - \item \texttt {setRepositories()}, 181 - \item \texttt {setwd()}, 378 - \item \texttt {shell()}, 378 + \item \texttt {sample()}, 185 + \item \texttt {sapply()}, 101, 149, 151, 152 + \item \texttt {save()}, 112 + \item \texttt {saveRDS()}, 113 + \item \texttt {scale\_color\_binned()}, 336 + \item \texttt {scale\_color\_brewer()}, 335 + \item \texttt {scale\_color\_continuous()}, 261, 335 + \item \texttt {scale\_color\_date()}, 335 + \item \texttt {scale\_color\_datetime()}, 335 + \item \texttt {scale\_color\_discrete()}, 323, 335 + \item \texttt {scale\_color\_distiller()}, 335 + \item \texttt {scale\_color\_gradient()}, 335, 336 + \item \texttt {scale\_color\_gradient2()}, 335 + \item \texttt {scale\_color\_gradientn()}, 335 + \item \texttt {scale\_color\_gray()}, 335 + \item \texttt {scale\_color\_hue()}, 335 + \item \texttt {scale\_color\_identity()}, 323, 337 + \item \texttt {scale\_color\_viridis\_c()}, 335 + \item \texttt {scale\_color\_viridis\_d()}, 335 + \item \texttt {scale\_fill\_identity()}, 337 + \item \texttt {scale\_x\_continuous()}, 329 + \item \texttt {scale\_x\_discrete()}, 332 + \item \texttt {scale\_x\_log10()}, 329 + \item \texttt {scale\_x\_reverse()}, 329 + \item \texttt {scale\_y\_continuous()}, 329 + \item \texttt {scale\_y\_log()}, 329 + \item \texttt {scale\_y\_log10()}, 329 + \item \texttt {sd()}, 156, 180 + \item \texttt {search()}, 177 + \item \texttt {select()}, 250 + \item \texttt {SEM()}, 165 + \item \texttt {semi\_join()}, 255 + \item \texttt {seq()}, 29, 143 + \item \texttt {set.seed()}, 184 + \item \texttt {setRepositories()}, 174 + \item \texttt {setwd()}, 362 + \item \texttt {shell()}, 361 \item \texttt {signif()}, 37 \item \texttt {sin()}, 25 - \item \texttt {slice()}, 263 - \item \texttt {smooth.spline()}, 221 - \item \texttt {sort()}, 71, 85, 110, 262 - \item \texttt {source()}, 125 - \item \texttt {spline()}, 221 - \item \texttt {split()}, 107 - \item \texttt {spread()}, 260 - \item \texttt {sprintf()}, 63, 64, 176, 369 + \item \texttt {slice()}, 250 + \item \texttt {smooth.spline()}, 212 + \item \texttt {solve()}, 76 + \item \texttt {sort()}, 68, 82, 105, 249 + \item \texttt {source()}, 121 + \item \texttt {spline()}, 212 + \item \texttt {split()}, 102 + \item \texttt {spread()}, 248 + \item \texttt {sprintf()}, 60, 61, 170, 352, 353 \item \texttt {sqrt()}, 25 - \item \texttt {SSmicmen()}, 218, 319 - \item \texttt {stage()}, 289, 290 - \item \texttt {starts\_with()}, 263 - \item \texttt {stat()}, 289 - \item \texttt {stat\_bin()}, 321--323, 356, 357 - \item \texttt {stat\_bin2d()}, 323 - \item \texttt {stat\_bin\_hex()}, 323 - \item \texttt {stat\_boxplot()}, 325, 329 - \item \texttt {stat\_centroid()}, 333 - \item \texttt {stat\_count()}, 301, 321, 323 - \item \texttt {stat\_density()}, 329, 357 - \item \texttt {stat\_density\_2d()}, 324, 333 - \item \texttt {stat\_fit\_residuals()}, 290, 291 - \item \texttt {stat\_function()}, 314 - \item \texttt {stat\_histogram()}, 329 - \item \texttt {stat\_identity()}, 278 - \item \texttt {stat\_indentity()}, 277 - \item \texttt {stat\_poly\_line()}, 320, 332 - \item \texttt {stat\_sf()}, 304 - \item \texttt {stat\_smooth()}, 275, 278, 318--320, 328 - \item \texttt {stat\_summary()}, 275, 315--317, 329, 333, 334 - \item \texttt {stat\_summary\_2d()}, 333 - \item \texttt {stat\_summary\_xy()}, 333 - \item \texttt {step()}, 212, 214 - \item \texttt {stl()}, 234 - \item \texttt {str()}, 92, 94, 95, 115, 195, 202, 203, 403, 404 - \item \texttt {str\_extract()}, 262 - \item \texttt {strftime()}, 369 - \item \texttt {strptime()}, 348 - \item \texttt {strrep()}, 43 - \item \texttt {strsplit()}, 47 + \item \texttt {SSmicmen()}, 209, 305 + \item \texttt {stage()}, 275, 276 + \item \texttt {starts\_with()}, 250 + \item \texttt {stat()}, 275 + \item \texttt {stat\_bin()}, 306--308, 340, 341 + \item \texttt {stat\_bin2d()}, 308 + \item \texttt {stat\_bin\_hex()}, 308 + \item \texttt {stat\_boxplot()}, 310, 314 + \item \texttt {stat\_centroid()}, 318 + \item \texttt {stat\_count()}, 287, 306, 308 + \item \texttt {stat\_density()}, 314, 341 + \item \texttt {stat\_density\_2d()}, 309, 318 + \item \texttt {stat\_fit\_residuals()}, 276 + \item \texttt {stat\_function()}, 299 + \item \texttt {stat\_histogram()}, 314 + \item \texttt {stat\_identity()}, 264 + \item \texttt {stat\_indentity()}, 263 + \item \texttt {stat\_poly\_line()}, 305, 317 + \item \texttt {stat\_sf()}, 290 + \item \texttt {stat\_smooth()}, 261, 264, 303--305, 313 + \item \texttt {stat\_summary()}, 261, 300--302, 314, 318, 319 + \item \texttt {stat\_summary\_2d()}, 318 + \item \texttt {stat\_summary\_xy()}, 318 + \item \texttt {step()}, 203, 205 + \item \texttt {stl()}, 224, 225 + \item \texttt {str()}, 88--90, 109, 187, 193, 195, 386, 387 + \item \texttt {str\_extract()}, 249 + \item \texttt {strftime()}, 352, 353 + \item \texttt {strptime()}, 332 + \item \texttt {strrep()}, 42 + \item \texttt {strsplit()}, 46 \item \texttt {strtrim()}, 41 \item \texttt {strwrap()}, 41 - \item \texttt {sub()}, 45 - \item \texttt {subset()}, 103--105, 134, 247, 263 - \item \texttt {substitute()}, 370 - \item \texttt {substr()}, 44 - \item \texttt {substring()}, 44 - \item \texttt {sum()}, 162, 172 - \item \texttt {summarise()}, 264 - \item \texttt {summary()}, 106, 159, 188, 196, 198, 199, 202--204, - 207, 212, 234 - \item \texttt {switch()}, 140--143 - \item \texttt {system()}, 378 - \item \texttt {system.time()}, 152, 153 + \item \texttt {sub()}, 44 + \item \texttt {subset()}, 99, 100, 130, 235, 250 + \item \texttt {substitute()}, 353 + \item \texttt {substr()}, 43 + \item \texttt {substring()}, 43 + \item \texttt {sum()}, 156, 165 + \item \texttt {summarise()}, 251 + \item \texttt {summary()}, 101, 153, 180, 188, 190, 194--196, 198, + 204, 225 + \item \texttt {switch()}, 135--138 + \item \texttt {system()}, 361 + \item \texttt {system.time()}, 147, 148 \indexspace - \item \texttt {t()}, 79, 160 - \item \texttt {tbl}, 249 - \item \texttt {tbl\_df}, 250 - \item \texttt {terms()}, 201, 227 - \item \texttt {theme()}, 362, 363 - \item \texttt {theme\_bw()}, 359--361 - \item \texttt {theme\_classic()}, 360, 361 - \item \texttt {theme\_dark()}, 360 - \item \texttt {theme\_gray()}, 359, 360, 363 - \item \texttt {theme\_light()}, 360 - \item \texttt {theme\_linedraw()}, 360 - \item \texttt {theme\_minimal()}, 360 - \item \texttt {theme\_set()}, 360 - \item \texttt {theme\_void()}, 360 - \item \texttt {tibble}, 250, 251, 261, 387, 402, 405 - \item \texttt {tibble()}, 250, 253, 254, 262 - \item \texttt {tolower()}, 41, 349 - \item \texttt {tools:::showNonASCIIfile()}, 382 - \item \texttt {toupper()}, 41, 349 - \item \texttt {transform()}, 111 - \item \texttt {transmute()}, 261, 262 - \item \texttt {trimws()}, 43, 44 - \item \texttt {trunc()}, 38, 39, 62 - \item \texttt {ts()}, 232 + \item \texttt {t()}, 76, 155 + \item \texttt {tbl}, 237 + \item \texttt {tbl\_df}, 238 + \item \texttt {terms()}, 192, 217 + \item \texttt {theme()}, 345, 347 + \item \texttt {theme\_bw()}, 343, 344 + \item \texttt {theme\_classic()}, 344 + \item \texttt {theme\_dark()}, 344 + \item \texttt {theme\_gray()}, 343, 344, 347 + \item \texttt {theme\_light()}, 344 + \item \texttt {theme\_linedraw()}, 344 + \item \texttt {theme\_minimal()}, 344 + \item \texttt {theme\_set()}, 344 + \item \texttt {theme\_void()}, 344 + \item \texttt {tibble}, 238, 248, 370, 385, 387 + \item \texttt {tibble()}, 238, 241, 249 + \item \texttt {tolower()}, 41, 333 + \item \texttt {tools:::showNonASCIIfile()}, 366 + \item \texttt {toupper()}, 41, 333 + \item \texttt {transform()}, 106 + \item \texttt {transmute()}, 249 + \item \texttt {trimws()}, 43 + \item \texttt {trunc()}, 37, 38, 60 + \item \texttt {ts()}, 222 \indexspace - \item \texttt {ungroup()}, 266 - \item \texttt {unique()}, 58 - \item \texttt {unlink()}, 118 - \item \texttt {unlist()}, 78, 94, 95 - \item \texttt {unname()}, 95 - \item \texttt {unnest()}, 260 - \item \texttt {unsplit()}, 107 - \item \texttt {update()}, 210, 212, 214, 230 - \item \texttt {update.packages()}, 180 + \item \texttt {ungroup()}, 253 + \item \texttt {unique()}, 55, 56 + \item \texttt {unlink()}, 113 + \item \texttt {unlist()}, 90 + \item \texttt {unname()}, 91 + \item \texttt {unnest()}, 247 + \item \texttt {unsplit()}, 102 + \item \texttt {update()}, 201--203, 205, 220 + \item \texttt {update.packages()}, 173 \indexspace - \item \texttt {vapply()}, 106, 156--159 - \item \texttt {var()}, 162, 171, 188 - \item \texttt {vcov()}, 201 + \item \texttt {vapply()}, 101, 151, 153 + \item \texttt {var()}, 156, 165, 180 + \item \texttt {vcov()}, 192 \item \texttt {vector}, 28 - \item \texttt {View()}, 114 + \item \texttt {View()}, 108 \indexspace - \item \texttt {while}, 145, 149--152 - \item \texttt {with()}, 105, 111--113 - \item \texttt {within()}, 111--113, 134 - \item \texttt {write.csv()}, 382, 386 - \item \texttt {write.csv2()}, 384, 386 - \item \texttt {write.table()}, 386 - \item \texttt {write.xlsx()}, 400 - \item \texttt {write\_csv()}, 391 - \item \texttt {write\_csv2()}, 391 - \item \texttt {write\_delim()}, 391 - \item \texttt {write\_excel\_csv()}, 391 - \item \texttt {write\_file()}, 391, 392 - \item \texttt {write\_lines()}, 391 - \item \texttt {write\_ods()}, 401 - \item \texttt {write\_tsv()}, 391 + \item \texttt {while}, 140, 144--147 + \item \texttt {with()}, 100, 106--108 + \item \texttt {within()}, 106--108, 130 + \item \texttt {write.csv()}, 366, 369 + \item \texttt {write.csv2()}, 368, 369 + \item \texttt {write.table()}, 369 + \item \texttt {write.xlsx()}, 382 + \item \texttt {write\_csv()}, 374 + \item \texttt {write\_csv2()}, 374 + \item \texttt {write\_delim()}, 374 + \item \texttt {write\_excel\_csv()}, 374 + \item \texttt {write\_file()}, 374, 375 + \item \texttt {write\_lines()}, 374 + \item \texttt {write\_ods()}, 384 + \item \texttt {write\_tsv()}, 374 \indexspace - \item \texttt {xlab()}, 339 - \item \texttt {xlim()}, 315, 341, 342 - \item \texttt {xml\_find\_all()}, 395 - \item \texttt {xml\_text()}, 395 + \item \texttt {xlab()}, 324 + \item \texttt {xlim()}, 300, 326, 327 + \item \texttt {xml\_find\_all()}, 378 + \item \texttt {xml\_text()}, 378 \indexspace - \item \texttt {ylab()}, 339 - \item \texttt {ylim()}, 315, 341, 342 + \item \texttt {ylab()}, 324 + \item \texttt {ylim()}, 300, 326, 327 \end{theindex} diff --git a/using-r-main-crc.Rnw b/using-r-main-crc.Rnw index 06f1f05d..2c380e85 100644 --- a/using-r-main-crc.Rnw +++ b/using-r-main-crc.Rnw @@ -26,13 +26,6 @@ \usepackage{imakeidx} -% this is to reduce spacing above and below verbatim, which is used by knitr -% to show returned values -\usepackage{etoolbox} -\makeatletter -\preto{\@verbatim}{\topsep=-5pt \partopsep=-5pt} -\makeatother - % for drawing flowcharts \usepackage{tikz} \usetikzlibrary{shapes.geometric,shapes.symbols,shapes.multipart,positioning,fit,arrows,matrix,backgrounds} @@ -119,7 +112,8 @@ opts_knit$set(unnamed.chunk.label = 'main-chunk') opts_knit$set(child.command = 'include') opts_knit$set(self.contained=FALSE) opts_chunk$set(fig.path='figure/pos-', fig.align='center', fig.show='hold', size="footnotesize", dev='cairo_pdf', dev.args=list(family='ArialMT'), cache=FALSE) # -opts_chunk$set(tidy=FALSE,size='footnotesize') +opts_chunk$set(tidy=FALSE, background='#FFFFFF') +# opts_chunk$set(tidy='formatR') # options(replace.assign=TRUE,width=70,tidy.opts=list(blank=FALSE)) @ @@ -194,15 +188,15 @@ incl_all <- TRUE %\include{frontmatter/foreword} -<>= +<>= @ \mainmatter -<>= +<>= @ -<>= +<>= @ <>= diff --git a/using-r-main-crc.idx b/using-r-main-crc.idx index 3675fc17..b408c7ae 100644 --- a/using-r-main-crc.idx +++ b/using-r-main-crc.idx @@ -68,8 +68,8 @@ \indexentry{languages!FORTRAN@\textsf {FORTRAN}}{10} \indexentry{Python@\textsf {Python}}{10} \indexentry{languages!Python@\textsf {Python}}{10} -\indexentry{Java@\textsf {Java}}{10} -\indexentry{languages!Java@\textsf {Java}}{10} +\indexentry{Java@\textsf {Java}}{11} +\indexentry{languages!Java@\textsf {Java}}{11} \indexentry{base R@{base \Rlang}}{11} \indexentry{Pascal@\textsf {Pascal}}{11} \indexentry{languages!Pascal@\textsf {Pascal}}{11} @@ -92,8 +92,8 @@ \indexentry{Raspberry Pi}{12} \indexentry{integrated development environment}{12} \indexentry{IDE|see{integrated development environment}}{12} -\indexentry{RStudio@\textsf {RStudio}}{12} -\indexentry{programmes!RStudio@\textsf {RStudio}}{12} +\indexentry{RStudio@\textsf {RStudio}}{13} +\indexentry{programmes!RStudio@\textsf {RStudio}}{13} \indexentry{RStudio@\textsf {RStudio}}{13} \indexentry{programmes!RStudio@\textsf {RStudio}}{13} \indexentry{RStudio@\textsf {RStudio}}{13} @@ -167,35 +167,35 @@ \indexentry{programmes!RGUI@\textsf {RGUI}}{17} \indexentry{scripts}{17} \indexentry{batch job}{17} -\indexentry{Linux@\textsf {Linux}}{17} -\indexentry{operating systems!Linux@\textsf {Linux}}{17} -\indexentry{Unix@\textsf {Unix}}{17} -\indexentry{operating systems!Unix@\textsf {Unix}}{17} -\indexentry{OS X@\textsf {OS X}}{17} -\indexentry{operating systems!OS X@\textsf {OS X}}{17} -\indexentry{MS-Windows@\textsf {MS-Windows}}{17} -\indexentry{operating systems!MS-Windows@\textsf {MS-Windows}}{17} -\indexentry{RStudio@\textsf {RStudio}}{17} -\indexentry{programmes!RStudio@\textsf {RStudio}}{17} \indexentry{MS-Windows@\textsf {MS-Windows}}{18} \indexentry{operating systems!MS-Windows@\textsf {MS-Windows}}{18} -\indexentry{reproducible data analysis|(}{19} +\indexentry{Linux@\textsf {Linux}}{18} +\indexentry{operating systems!Linux@\textsf {Linux}}{18} +\indexentry{Unix@\textsf {Unix}}{18} +\indexentry{operating systems!Unix@\textsf {Unix}}{18} +\indexentry{OS X@\textsf {OS X}}{18} +\indexentry{operating systems!OS X@\textsf {OS X}}{18} +\indexentry{MS-Windows@\textsf {MS-Windows}}{18} +\indexentry{operating systems!MS-Windows@\textsf {MS-Windows}}{18} +\indexentry{RStudio@\textsf {RStudio}}{18} +\indexentry{programmes!RStudio@\textsf {RStudio}}{18} +\indexentry{reproducible data analysis|(}{18} \indexentry{Sweave@\textsf {`Sweave'}}{19} \indexentry{packages!Sweave@\textsf {`Sweave'}}{19} \indexentry{knitr@\textsf {`knitr'}}{19} \indexentry{packages!knitr@\textsf {`knitr'}}{19} \indexentry{RStudio@\textsf {RStudio}}{19} \indexentry{programmes!RStudio@\textsf {RStudio}}{19} -\indexentry{knitr@\textsf {`knitr'}}{20} -\indexentry{packages!knitr@\textsf {`knitr'}}{20} -\indexentry{Markdown@\textsf {Markdown}}{20} -\indexentry{languages!Markdown@\textsf {Markdown}}{20} -\indexentry{Latex@{\LaTeX }}{20} -\indexentry{languages!Latex@{\LaTeX }}{20} -\indexentry{Markdown@\textsf {Markdown}}{20} -\indexentry{languages!Markdown@\textsf {Markdown}}{20} -\indexentry{Latex@{\LaTeX }}{20} -\indexentry{languages!Latex@{\LaTeX }}{20} +\indexentry{knitr@\textsf {`knitr'}}{19} +\indexentry{packages!knitr@\textsf {`knitr'}}{19} +\indexentry{Markdown@\textsf {Markdown}}{19} +\indexentry{languages!Markdown@\textsf {Markdown}}{19} +\indexentry{Latex@{\LaTeX }}{19} +\indexentry{languages!Latex@{\LaTeX }}{19} +\indexentry{Markdown@\textsf {Markdown}}{19} +\indexentry{languages!Markdown@\textsf {Markdown}}{19} +\indexentry{Latex@{\LaTeX }}{19} +\indexentry{languages!Latex@{\LaTeX }}{19} \indexentry{Markdown@\textsf {Markdown}}{20} \indexentry{languages!Markdown@\textsf {Markdown}}{20} \indexentry{R markdown@\textsf {R markdown}}{20} @@ -221,8 +221,8 @@ \indexentry{programmes!RStudio@\textsf {RStudio}}{20} \indexentry{learnrbook@\textsf {`learnrbook'}}{20} \indexentry{packages!learnrbook@\textsf {`learnrbook'}}{20} -\indexentry{learnrbook@\textsf {`learnrbook'}}{21} -\indexentry{packages!learnrbook@\textsf {`learnrbook'}}{21} +\indexentry{learnrbook@\textsf {`learnrbook'}}{20} +\indexentry{packages!learnrbook@\textsf {`learnrbook'}}{20} \indexentry{Raspberry Pi}{21} \indexentry{RStudio@\textsf {RStudio}}{21} \indexentry{programmes!RStudio@\textsf {RStudio}}{21} @@ -235,14 +235,14 @@ \indexentry{programmes!Unix@\textsf {Unix}}{21} \indexentry{bash@\textsf {bash}}{21} \indexentry{programmes!bash@\textsf {bash}}{21} -\indexentry{C@\textsf {C}}{22} -\indexentry{languages!C@\textsf {C}}{22} -\indexentry{C++@\textsf {C++}}{22} -\indexentry{languages!C++@\textsf {C++}}{22} -\indexentry{Java@\textsf {Java}}{22} -\indexentry{languages!Java@\textsf {Java}}{22} -\indexentry{S@\textsf {S}}{22} -\indexentry{languages!S@\textsf {S}}{22} +\indexentry{C@\textsf {C}}{21} +\indexentry{languages!C@\textsf {C}}{21} +\indexentry{C++@\textsf {C++}}{21} +\indexentry{languages!C++@\textsf {C++}}{21} +\indexentry{Java@\textsf {Java}}{21} +\indexentry{languages!Java@\textsf {Java}}{21} +\indexentry{S@\textsf {S}}{21} +\indexentry{languages!S@\textsf {S}}{21} \indexentry{languages!natural and computer}{24} \indexentry{classes and modes!numeric, integer, double|(}{24} \indexentry{numbers and their arithmetic|(}{24} @@ -255,7 +255,7 @@ \indexentry{assignment!chaining}{27} \indexentry{numeric, integer and double values}{27} \indexentry{vectors!introduction|(}{28} -\indexentry{sequence}{30} +\indexentry{sequence}{29} \indexentry{vectorized arithmetic}{30} \indexentry{recycling of arguments}{30} \indexentry{tibble@\textsf {`tibble'}}{31} @@ -267,1514 +267,1518 @@ \indexentry{vectors!introduction|)}{32} \indexentry{special values!NA}{32} \indexentry{special values!NaN}{32} -\indexentry{zero length objects}{33} -\indexentry{vectors!zero length}{33} +\indexentry{zero length objects}{32} +\indexentry{vectors!zero length}{32} \indexentry{precision!math operations}{33} \indexentry{numbers!floating point}{33} \indexentry{numbers!whole}{33} \indexentry{numbers!integer}{33} -\indexentry{numbers!double}{34} -\indexentry{numbers!integer}{34} -\indexentry{integer numbers!arithmetic|(}{35} -\indexentry{double precision numbers!arithmetic|(}{35} -\indexentry{floating point numbers!arithmetic|(}{35} -\indexentry{machine arithmetic!precision|(}{35} -\indexentry{floats|see{floating point numbers}}{35} -\indexentry{machine arithmetic!rounding errors}{35} -\indexentry{Real numbers and computers}{35} -\indexentry{Integer numbers and computers}{35} -\indexentry{EPS ($\epsilon$)|see{machine arithmetic precision}}{35} -\indexentry{C@\textsf {C}}{35} -\indexentry{languages!C@\textsf {C}}{35} -\indexentry{C@\textsf {C}}{35} -\indexentry{languages!C@\textsf {C}}{35} -\indexentry{C@\textsf {C}}{35} -\indexentry{languages!C@\textsf {C}}{35} -\indexentry{arithmetic overflow}{37} -\indexentry{overflow|see{arithmetic overflow}}{37} -\indexentry{type promotion}{37} -\indexentry{arithmetic overflow!type promotion}{37} -\indexentry{integer numbers!arithmetic|)}{37} -\indexentry{double precision numbers!arithmetic|)}{37} -\indexentry{floating point numbers!arithmetic|)}{37} -\indexentry{machine arithmetic!precision|)}{37} +\indexentry{numbers!double}{33} +\indexentry{numbers!integer}{33} +\indexentry{integer numbers!arithmetic|(}{34} +\indexentry{double precision numbers!arithmetic|(}{34} +\indexentry{floating point numbers!arithmetic|(}{34} +\indexentry{machine arithmetic!precision|(}{34} +\indexentry{floats|see{floating point numbers}}{34} +\indexentry{machine arithmetic!rounding errors}{34} +\indexentry{Real numbers and computers}{34} +\indexentry{Integer numbers and computers}{34} +\indexentry{EPS ($\epsilon$)|see{machine arithmetic precision}}{34} +\indexentry{C@\textsf {C}}{34} +\indexentry{languages!C@\textsf {C}}{34} +\indexentry{C@\textsf {C}}{34} +\indexentry{languages!C@\textsf {C}}{34} +\indexentry{C@\textsf {C}}{34} +\indexentry{languages!C@\textsf {C}}{34} +\indexentry{arithmetic overflow}{36} +\indexentry{overflow|see{arithmetic overflow}}{36} +\indexentry{type promotion}{36} +\indexentry{arithmetic overflow!type promotion}{36} +\indexentry{integer numbers!arithmetic|)}{36} +\indexentry{double precision numbers!arithmetic|)}{36} +\indexentry{floating point numbers!arithmetic|)}{36} +\indexentry{machine arithmetic!precision|)}{36} \indexentry{RStudio@\textsf {RStudio}}{38} \indexentry{programmes!RStudio@\textsf {RStudio}}{38} -\indexentry{classes and modes!numeric, integer, double|)}{39} -\indexentry{numbers and their arithmetic|)}{39} -\indexentry{removing objects}{39} -\indexentry{deleting objects|see {removing objects}}{39} -\indexentry{RStudio@\textsf {RStudio}}{39} -\indexentry{programmes!RStudio@\textsf {RStudio}}{39} -\indexentry{character strings}{40} -\indexentry{classes and modes!character|(}{40} +\indexentry{classes and modes!numeric, integer, double|)}{38} +\indexentry{numbers and their arithmetic|)}{38} +\indexentry{removing objects}{38} +\indexentry{deleting objects|see {removing objects}}{38} +\indexentry{RStudio@\textsf {RStudio}}{38} +\indexentry{programmes!RStudio@\textsf {RStudio}}{38} +\indexentry{lubridate@\textsf {`lubridate'}}{39} +\indexentry{packages!lubridate@\textsf {`lubridate'}}{39} +\indexentry{anytime@\textsf {`anytime'}}{39} +\indexentry{packages!anytime@\textsf {`anytime'}}{39} +\indexentry{character strings}{39} +\indexentry{classes and modes!character|(}{39} \indexentry{C@\textsf {C}}{40} \indexentry{languages!C@\textsf {C}}{40} \indexentry{C++@\textsf {C++}}{40} \indexentry{languages!C++@\textsf {C++}}{40} \indexentry{C@\textsf {C}}{40} \indexentry{languages!C@\textsf {C}}{40} -\indexentry{character string delimiters}{41} -\indexentry{character escape codes}{41} -\indexentry{character strings!number of characters}{41} +\indexentry{character string delimiters}{40} +\indexentry{character escape codes}{40} +\indexentry{character strings!number of characters}{40} \indexentry{character strings!whitespace trimming}{43} -\indexentry{character strings!position-based operations}{44} -\indexentry{character strings!partial matching and substitution}{44} -\indexentry{regular expressions|(}{45} -\indexentry{Perl@\textsf {Perl}}{46} -\indexentry{languages!Perl@\textsf {Perl}}{46} -\indexentry{C++@\textsf {C++}}{46} -\indexentry{languages!C++@\textsf {C++}}{46} -\indexentry{character strings!splitting of}{47} -\indexentry{regular expressions|)}{48} -\indexentry{classes and modes!character|)}{48} -\indexentry{RStudio@\textsf {RStudio}}{49} -\indexentry{programmes!RStudio@\textsf {RStudio}}{49} -\indexentry{classes and modes!logical|(}{49} -\indexentry{logical operators}{49} -\indexentry{logical values and their algebra|(}{49} -\indexentry{Boolean arithmetic}{49} -\indexentry{logical values and their algebra|)}{52} -\indexentry{classes and modes!logical|)}{52} -\indexentry{comparison operators|(}{52} -\indexentry{operators!comparison|(}{52} -\indexentry{comparison of floating point numbers|(}{54} -\indexentry{inequality and equality tests|(}{54} -\indexentry{loss of numeric precision}{54} -\indexentry{comparison of floating point numbers|)}{55} -\indexentry{inequality and equality tests|)}{55} -\indexentry{comparison operators|)}{55} -\indexentry{operators!comparison|)}{55} -\indexentry{sets|(}{55} -\indexentry{algebra of sets}{55} -\indexentry{operators!set|(}{55} -\indexentry{operators!set|)}{60} -\indexentry{sets|)}{60} -\indexentry{objects!mode}{60} -\indexentry{type conversion|(}{62} -\indexentry{formatted character strings from numbers}{63} +\indexentry{character strings!position-based operations}{43} +\indexentry{character strings!partial matching and substitution}{43} +\indexentry{regular expressions|(}{44} +\indexentry{Perl@\textsf {Perl}}{45} +\indexentry{languages!Perl@\textsf {Perl}}{45} +\indexentry{C++@\textsf {C++}}{45} +\indexentry{languages!C++@\textsf {C++}}{45} +\indexentry{character strings!splitting of}{46} +\indexentry{regular expressions|)}{47} +\indexentry{classes and modes!character|)}{47} +\indexentry{RStudio@\textsf {RStudio}}{47} +\indexentry{programmes!RStudio@\textsf {RStudio}}{47} +\indexentry{classes and modes!logical|(}{47} +\indexentry{logical operators}{47} +\indexentry{logical values and their algebra|(}{47} +\indexentry{Boolean arithmetic}{47} +\indexentry{logical values and their algebra|)}{50} +\indexentry{classes and modes!logical|)}{50} +\indexentry{comparison operators|(}{50} +\indexentry{operators!comparison|(}{50} +\indexentry{comparison of floating point numbers|(}{52} +\indexentry{inequality and equality tests|(}{52} +\indexentry{loss of numeric precision}{52} +\indexentry{comparison of floating point numbers|)}{53} +\indexentry{inequality and equality tests|)}{53} +\indexentry{comparison operators|)}{53} +\indexentry{operators!comparison|)}{53} +\indexentry{sets|(}{53} +\indexentry{algebra of sets}{53} +\indexentry{operators!set|(}{53} +\indexentry{operators!set|)}{57} +\indexentry{sets|)}{57} +\indexentry{objects!mode}{57} +\indexentry{type conversion|(}{59} +\indexentry{formatted character strings from numbers}{60} +\indexentry{C@\textsf {C}}{61} +\indexentry{languages!C@\textsf {C}}{61} +\indexentry{C@\textsf {C}}{61} +\indexentry{languages!C@\textsf {C}}{61} +\indexentry{C@\textsf {C}}{61} +\indexentry{languages!C@\textsf {C}}{61} +\indexentry{type conversion|)}{62} +\indexentry{vectors!indexing|(}{62} +\indexentry{vectors!member extraction}{62} \indexentry{C@\textsf {C}}{63} \indexentry{languages!C@\textsf {C}}{63} -\indexentry{C@\textsf {C}}{64} -\indexentry{languages!C@\textsf {C}}{64} -\indexentry{C@\textsf {C}}{64} -\indexentry{languages!C@\textsf {C}}{64} -\indexentry{type conversion|)}{65} -\indexentry{vectors!indexing|(}{65} -\indexentry{vectors!member extraction}{65} -\indexentry{C@\textsf {C}}{66} -\indexentry{languages!C@\textsf {C}}{66} -\indexentry{C++@\textsf {C++}}{66} -\indexentry{languages!C++@\textsf {C++}}{66} -\indexentry{vectors!named elements}{68} -\indexentry{vectors!sorting}{71} -\indexentry{vector!run length encoding}{71} -\indexentry{vectors!indexing|)}{72} -\indexentry{matrices|(}{72} -\indexentry{arrays|(}{72} -\indexentry{matrix!dimensions}{77} -\indexentry{arrays!dimensions}{77} -\indexentry{arrays|)}{79} -\indexentry{matrix!operators|(}{79} -\indexentry{matrix!transpose}{79} -\indexentry{matrix!operations with vectors}{79} -\indexentry{matrix!multiplication}{79} -\indexentry{matrixStats@\textsf {`matrixStats'}}{80} -\indexentry{packages!matrixStats@\textsf {`matrixStats'}}{80} -\indexentry{matrix!operators|)}{80} -\indexentry{matrices|)}{80} -\indexentry{factors|(}{80} -\indexentry{categorical variables|see{factors}}{80} -\indexentry{factors!ordered}{80} -\indexentry{factors!labels}{81} -\indexentry{factors!levels}{81} -\indexentry{factors!merge levels}{82} -\indexentry{factors!drop unused levels}{83} -\indexentry{factors!convert to numeric}{84} -\indexentry{factors!reorder levels}{84} -\indexentry{factors!reorder values}{85} -\indexentry{factors!arrange values}{85} -\indexentry{factors|)}{85} -\indexentry{further reading!using the R language}{86} -\indexentry{data sets!their storage|(}{87} -\indexentry{data sets!origin}{88} -\indexentry{data sets!characteristics}{88} -\indexentry{lists|(}{88} -\indexentry{C@\textsf {C}}{88} -\indexentry{languages!C@\textsf {C}}{88} -\indexentry{C++@\textsf {C++}}{88} -\indexentry{languages!C++@\textsf {C++}}{88} -\indexentry{Pascal@\textsf {Pascal}}{88} -\indexentry{languages!Pascal@\textsf {Pascal}}{88} -\indexentry{lists!member extraction|(}{89} -\indexentry{lists!member indexing|see{lists, member extraction}}{89} -\indexentry{lists!deletion and addition of members|(}{89} -\indexentry{C@\textsf {C}}{91} -\indexentry{languages!C@\textsf {C}}{91} -\indexentry{lists!insert into}{92} -\indexentry{lists!append to}{92} -\indexentry{lists!deletion and addition of members|)}{92} -\indexentry{lists!member extraction|)}{92} -\indexentry{lists!nested}{92} -\indexentry{lists!nested}{93} -\indexentry{lists!nested}{94} -\indexentry{lists!structure}{94} -\indexentry{lists!flattening}{94} -\indexentry{lists!nested}{94} -\indexentry{lists!convert into vector}{95} -\indexentry{lists|)}{95} -\indexentry{data frames|(}{96} -\indexentry{worksheet@`worksheet'|see{data frame}}{96} -\indexentry{tibble@\textsf {`tibble'}}{101} -\indexentry{packages!tibble@\textsf {`tibble'}}{101} -\indexentry{tibble@\textsf {`tibble'}}{103} -\indexentry{packages!tibble@\textsf {`tibble'}}{103} -\indexentry{data frames!subsetting}{103} -\indexentry{data frames!``filtering rows''}{103} -\indexentry{data frames!summarizing}{106} -\indexentry{data frames!splitting}{107} -\indexentry{data frames!summarizing}{108} -\indexentry{data frames!ordering rows}{109} -\indexentry{data frames!ordering columns}{109} -\indexentry{data frames!ordering rows}{110} -\indexentry{named vectors!mapping with}{110} -\indexentry{data frames!attaching}{113} -\indexentry{data frames!long vs.\ wide shape}{113} -\indexentry{data frames|)}{114} -\indexentry{RStudio@\textsf {RStudio}}{114} -\indexentry{programmes!RStudio@\textsf {RStudio}}{114} -\indexentry{RStudio@\textsf {RStudio}}{114} -\indexentry{programmes!RStudio@\textsf {RStudio}}{114} -\indexentry{attributes|(}{114} -\indexentry{tidyverse@\textsf {`tidyverse'}}{116} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{116} -\indexentry{attributes|)}{116} -\indexentry{data!loading data sets|(}{117} -\indexentry{foreign@\textsf {`foreign'}}{117} -\indexentry{packages!foreign@\textsf {`foreign'}}{117} -\indexentry{data!loading data sets|)}{117} -\indexentry{plots!base R graphics}{119} -\indexentry{ggplot2@\textsf {`ggplot2'}}{119} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{119} -\indexentry{MS-Windows@\textsf {MS-Windows}}{121} -\indexentry{operating systems!MS-Windows@\textsf {MS-Windows}}{121} -\indexentry{Linux@\textsf {Linux}}{121} -\indexentry{operating systems!Linux@\textsf {Linux}}{121} +\indexentry{C++@\textsf {C++}}{63} +\indexentry{languages!C++@\textsf {C++}}{63} +\indexentry{vectors!named elements}{65} +\indexentry{vectors!sorting}{68} +\indexentry{vector!run length encoding}{68} +\indexentry{vectors!indexing|)}{68} +\indexentry{matrices|(}{69} +\indexentry{arrays|(}{69} +\indexentry{matrix!dimensions}{73} +\indexentry{arrays!dimensions}{73} +\indexentry{arrays|)}{75} +\indexentry{matrix!operators|(}{75} +\indexentry{matrix!operations with vectors}{75} +\indexentry{matrix!transpose}{76} +\indexentry{matrix!multiplication}{76} +\indexentry{matrixStats@\textsf {`matrixStats'}}{77} +\indexentry{packages!matrixStats@\textsf {`matrixStats'}}{77} +\indexentry{matrix!operators|)}{77} +\indexentry{matrices|)}{77} +\indexentry{factors|(}{77} +\indexentry{categorical variables|see{factors}}{77} +\indexentry{factors!ordered}{77} +\indexentry{factors!labels}{78} +\indexentry{factors!levels}{78} +\indexentry{factors!merge levels}{79} +\indexentry{factors!drop unused levels}{80} +\indexentry{factors!convert to numeric}{80} +\indexentry{factors!reorder levels}{80} +\indexentry{factors!reorder values}{81} +\indexentry{factors!arrange values}{81} +\indexentry{factors|)}{82} +\indexentry{further reading!using the R language}{82} +\indexentry{data sets!their storage|(}{83} +\indexentry{data sets!origin}{84} +\indexentry{data sets!characteristics}{84} +\indexentry{lists|(}{84} +\indexentry{C@\textsf {C}}{84} +\indexentry{languages!C@\textsf {C}}{84} +\indexentry{C++@\textsf {C++}}{84} +\indexentry{languages!C++@\textsf {C++}}{84} +\indexentry{Pascal@\textsf {Pascal}}{84} +\indexentry{languages!Pascal@\textsf {Pascal}}{84} +\indexentry{lists!member extraction|(}{85} +\indexentry{lists!member indexing|see{lists, member extraction}}{85} +\indexentry{lists!deletion and addition of members|(}{85} +\indexentry{C@\textsf {C}}{87} +\indexentry{languages!C@\textsf {C}}{87} +\indexentry{lists!insert into}{87} +\indexentry{lists!append to}{87} +\indexentry{lists!deletion and addition of members|)}{88} +\indexentry{lists!member extraction|)}{88} +\indexentry{lists!nested}{88} +\indexentry{lists!nested}{88} +\indexentry{lists!nested}{89} +\indexentry{lists!structure}{89} +\indexentry{lists!flattening}{90} +\indexentry{lists!nested}{90} +\indexentry{lists!convert into vector}{90} +\indexentry{lists|)}{91} +\indexentry{data frames|(}{91} +\indexentry{worksheet@`worksheet'|see{data frame}}{91} +\indexentry{tibble@\textsf {`tibble'}}{97} +\indexentry{packages!tibble@\textsf {`tibble'}}{97} +\indexentry{tibble@\textsf {`tibble'}}{98} +\indexentry{packages!tibble@\textsf {`tibble'}}{98} +\indexentry{data frames!subsetting}{99} +\indexentry{data frames!``filtering rows''}{99} +\indexentry{data frames!summarizing}{101} +\indexentry{data frames!splitting}{102} +\indexentry{data frames!summarizing}{103} +\indexentry{data frames!ordering rows}{103} +\indexentry{data frames!ordering columns}{103} +\indexentry{data frames!ordering rows}{105} +\indexentry{named vectors!mapping with}{105} +\indexentry{data frames!attaching}{107} +\indexentry{data frames!long vs.\ wide shape}{108} +\indexentry{data frames|)}{108} +\indexentry{RStudio@\textsf {RStudio}}{108} +\indexentry{programmes!RStudio@\textsf {RStudio}}{108} +\indexentry{RStudio@\textsf {RStudio}}{108} +\indexentry{programmes!RStudio@\textsf {RStudio}}{108} +\indexentry{attributes|(}{109} +\indexentry{tidyverse@\textsf {`tidyverse'}}{111} +\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{111} +\indexentry{attributes|)}{111} +\indexentry{data!loading data sets|(}{111} +\indexentry{foreign@\textsf {`foreign'}}{111} +\indexentry{packages!foreign@\textsf {`foreign'}}{111} +\indexentry{data!loading data sets|)}{111} +\indexentry{plots!base R graphics}{113} +\indexentry{ggplot2@\textsf {`ggplot2'}}{114} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{114} +\indexentry{MS-Windows@\textsf {MS-Windows}}{116} +\indexentry{operating systems!MS-Windows@\textsf {MS-Windows}}{116} +\indexentry{Linux@\textsf {Linux}}{116} +\indexentry{operating systems!Linux@\textsf {Linux}}{116} +\indexentry{RStudio@\textsf {RStudio}}{116} +\indexentry{programmes!RStudio@\textsf {RStudio}}{116} +\indexentry{data!exploration at the R console|)}{116} +\indexentry{further reading!using the R language}{117} +\indexentry{data sets!their storage|)}{117} +\indexentry{scripts}{119} +\indexentry{scripts!definition}{120} +\indexentry{scripts!sourcing}{121} \indexentry{RStudio@\textsf {RStudio}}{121} \indexentry{programmes!RStudio@\textsf {RStudio}}{121} -\indexentry{data!exploration at the R console|)}{122} -\indexentry{further reading!using the R language}{122} -\indexentry{data sets!their storage|)}{122} -\indexentry{scripts}{123} -\indexentry{scripts!definition}{124} -\indexentry{scripts!sourcing}{125} -\indexentry{RStudio@\textsf {RStudio}}{125} -\indexentry{programmes!RStudio@\textsf {RStudio}}{125} -\indexentry{RStudio@\textsf {RStudio}}{125} -\indexentry{programmes!RStudio@\textsf {RStudio}}{125} -\indexentry{RStudio@\textsf {RStudio}}{126} -\indexentry{programmes!RStudio@\textsf {RStudio}}{126} -\indexentry{scripts!writing}{126} -\indexentry{RStudio@\textsf {RStudio}}{126} -\indexentry{programmes!RStudio@\textsf {RStudio}}{126} -\indexentry{RStudio@\textsf {RStudio}}{126} -\indexentry{programmes!RStudio@\textsf {RStudio}}{126} -\indexentry{RStudio@\textsf {RStudio}}{126} -\indexentry{programmes!RStudio@\textsf {RStudio}}{126} +\indexentry{RStudio@\textsf {RStudio}}{121} +\indexentry{programmes!RStudio@\textsf {RStudio}}{121} +\indexentry{RStudio@\textsf {RStudio}}{122} +\indexentry{programmes!RStudio@\textsf {RStudio}}{122} +\indexentry{scripts!writing}{122} +\indexentry{RStudio@\textsf {RStudio}}{122} +\indexentry{programmes!RStudio@\textsf {RStudio}}{122} +\indexentry{RStudio@\textsf {RStudio}}{122} +\indexentry{programmes!RStudio@\textsf {RStudio}}{122} +\indexentry{RStudio@\textsf {RStudio}}{122} +\indexentry{programmes!RStudio@\textsf {RStudio}}{122} +\indexentry{RStudio@\textsf {RStudio}}{122} +\indexentry{programmes!RStudio@\textsf {RStudio}}{122} +\indexentry{scripts!readability}{122} +\indexentry{literate programming}{124} +\indexentry{WEB@\textsf {WEB}}{124} +\indexentry{programmes!WEB@\textsf {WEB}}{124} +\indexentry{Sweave@\textsf {`Sweave'}}{124} +\indexentry{packages!Sweave@\textsf {`Sweave'}}{124} +\indexentry{knitr@\textsf {`knitr'}}{124} +\indexentry{packages!knitr@\textsf {`knitr'}}{124} +\indexentry{Markdown@\textsf {Markdown}}{124} +\indexentry{languages!Markdown@\textsf {Markdown}}{124} +\indexentry{Latex@{\LaTeX }}{124} +\indexentry{languages!Latex@{\LaTeX }}{124} +\indexentry{Rmarkdown@\textsf {Rmarkdown}}{124} +\indexentry{languages!Rmarkdown@\textsf {Rmarkdown}}{124} +\indexentry{Markdown@\textsf {Markdown}}{124} +\indexentry{languages!Markdown@\textsf {Markdown}}{124} +\indexentry{bookdown@\textsf {`bookdown'}}{124} +\indexentry{packages!bookdown@\textsf {`bookdown'}}{124} +\indexentry{blogdown@\textsf {`blogdown'}}{124} +\indexentry{packages!blogdown@\textsf {`blogdown'}}{124} +\indexentry{pkgdown@\textsf {`pkgdown'}}{124} +\indexentry{packages!pkgdown@\textsf {`pkgdown'}}{124} +\indexentry{Quarto@\textsf {Quarto}}{124} +\indexentry{programmes!Quarto@\textsf {Quarto}}{124} +\indexentry{R markdown@\textsf {R markdown}}{124} +\indexentry{languages!R markdown@\textsf {R markdown}}{124} +\indexentry{quarto@\textsf {`quarto'}}{124} +\indexentry{packages!quarto@\textsf {`quarto'}}{124} +\indexentry{knitr@\textsf {`knitr'}}{124} +\indexentry{packages!knitr@\textsf {`knitr'}}{124} +\indexentry{quarto@\textsf {`quarto'}}{124} +\indexentry{packages!quarto@\textsf {`quarto'}}{124} +\indexentry{RStudio@\textsf {RStudio}}{124} +\indexentry{programmes!RStudio@\textsf {RStudio}}{124} +\indexentry{knitr@\textsf {`knitr'}}{124} +\indexentry{packages!knitr@\textsf {`knitr'}}{124} +\indexentry{scripts!debugging}{124} \indexentry{RStudio@\textsf {RStudio}}{126} \indexentry{programmes!RStudio@\textsf {RStudio}}{126} -\indexentry{scripts!readability}{126} -\indexentry{literate programming}{128} -\indexentry{WEB@\textsf {WEB}}{128} -\indexentry{programmes!WEB@\textsf {WEB}}{128} -\indexentry{Sweave@\textsf {`Sweave'}}{128} -\indexentry{packages!Sweave@\textsf {`Sweave'}}{128} -\indexentry{knitr@\textsf {`knitr'}}{128} -\indexentry{packages!knitr@\textsf {`knitr'}}{128} -\indexentry{Markdown@\textsf {Markdown}}{128} -\indexentry{languages!Markdown@\textsf {Markdown}}{128} -\indexentry{Latex@{\LaTeX }}{128} -\indexentry{languages!Latex@{\LaTeX }}{128} -\indexentry{Rmarkdown@\textsf {Rmarkdown}}{128} -\indexentry{languages!Rmarkdown@\textsf {Rmarkdown}}{128} -\indexentry{Markdown@\textsf {Markdown}}{128} -\indexentry{languages!Markdown@\textsf {Markdown}}{128} -\indexentry{bookdown@\textsf {`bookdown'}}{128} -\indexentry{packages!bookdown@\textsf {`bookdown'}}{128} -\indexentry{blogdown@\textsf {`blogdown'}}{128} -\indexentry{packages!blogdown@\textsf {`blogdown'}}{128} -\indexentry{pkgdown@\textsf {`pkgdown'}}{128} -\indexentry{packages!pkgdown@\textsf {`pkgdown'}}{128} -\indexentry{Quarto@\textsf {Quarto}}{128} -\indexentry{programmes!Quarto@\textsf {Quarto}}{128} -\indexentry{R markdown@\textsf {R markdown}}{128} -\indexentry{languages!R markdown@\textsf {R markdown}}{128} -\indexentry{quarto@\textsf {`quarto'}}{128} -\indexentry{packages!quarto@\textsf {`quarto'}}{128} -\indexentry{knitr@\textsf {`knitr'}}{128} -\indexentry{packages!knitr@\textsf {`knitr'}}{128} -\indexentry{quarto@\textsf {`quarto'}}{128} -\indexentry{packages!quarto@\textsf {`quarto'}}{128} -\indexentry{RStudio@\textsf {RStudio}}{128} -\indexentry{programmes!RStudio@\textsf {RStudio}}{128} -\indexentry{knitr@\textsf {`knitr'}}{128} -\indexentry{packages!knitr@\textsf {`knitr'}}{128} -\indexentry{scripts!debugging}{128} -\indexentry{RStudio@\textsf {RStudio}}{130} -\indexentry{programmes!RStudio@\textsf {RStudio}}{130} -\indexentry{CRAN@\textsf {CRAN}}{130} -\indexentry{compound code statements}{130} -\indexentry{simple code statements}{130} -\indexentry{functions!call}{132} -\indexentry{pipes!base R|(}{132} -\indexentry{pipe operator}{132} -\indexentry{chaining statements with \emph{pipes}}{132} -\indexentry{Unix@\textsf {Unix}}{132} -\indexentry{operating systems!Unix@\textsf {Unix}}{132} -\indexentry{Linux@\textsf {Linux}}{132} -\indexentry{operating systems!Linux@\textsf {Linux}}{132} -\indexentry{Unix@\textsf {Unix}}{132} -\indexentry{operating systems!Unix@\textsf {Unix}}{132} -\indexentry{sh@\textsf {sh}}{132} -\indexentry{programmes!sh@\textsf {sh}}{132} -\indexentry{bash@\textsf {bash}}{132} -\indexentry{programmes!bash@\textsf {bash}}{132} -\indexentry{Unix@\textsf {Unix}}{132} -\indexentry{operating systems!Unix@\textsf {Unix}}{132} -\indexentry{Unix@\textsf {Unix}}{132} -\indexentry{operating systems!Unix@\textsf {Unix}}{132} -\indexentry{pipes!base R|)}{136} -\indexentry{control of execution flow}{136} -\indexentry{conditional statements}{136} -\indexentry{vectorized ifelse}{143} -\indexentry{loops|seealso{iteration}}{145} -\indexentry{for loop}{145} -\indexentry{iteration!for loop}{145} -\indexentry{for loop!unrolled}{146} -\indexentry{iteration!while loop}{150} -\indexentry{iteration!repeat loop}{151} -\indexentry{vectorization}{152} -\indexentry{recycling of arguments}{152} -\indexentry{iteration}{152} -\indexentry{loops!faster alternatives|(}{152} -\indexentry{microbenchmark@\textsf {`microbenchmark'}}{152} -\indexentry{packages!microbenchmark@\textsf {`microbenchmark'}}{152} -\indexentry{loops!faster alternatives|)}{153} -\indexentry{iteration!nesting of loops}{154} -\indexentry{nested iteration loops}{154} -\indexentry{loops!nested}{154} -\indexentry{apply functions}{155} -\indexentry{apply functions}{156} -\indexentry{loops!faster alternatives}{156} -\indexentry{datasets@\textsf {`datasets'}}{158} -\indexentry{packages!datasets@\textsf {`datasets'}}{158} -\indexentry{datasets@\textsf {`datasets'}}{159} -\indexentry{packages!datasets@\textsf {`datasets'}}{159} -\indexentry{C@\textsf {C}}{162} -\indexentry{languages!C@\textsf {C}}{162} -\indexentry{object names}{162} -\indexentry{object names!as character strings}{162} -\indexentry{further reading!the R language}{166} -\indexentry{functions!defining new}{167} +\indexentry{CRAN@\textsf {CRAN}}{126} +\indexentry{compound code statements}{126} +\indexentry{simple code statements}{126} +\indexentry{functions!call}{128} +\indexentry{pipes!base R|(}{128} +\indexentry{pipe operator}{128} +\indexentry{chaining statements with \emph{pipes}}{128} +\indexentry{Unix@\textsf {Unix}}{128} +\indexentry{operating systems!Unix@\textsf {Unix}}{128} +\indexentry{Linux@\textsf {Linux}}{128} +\indexentry{operating systems!Linux@\textsf {Linux}}{128} +\indexentry{Unix@\textsf {Unix}}{128} +\indexentry{operating systems!Unix@\textsf {Unix}}{128} +\indexentry{sh@\textsf {sh}}{128} +\indexentry{programmes!sh@\textsf {sh}}{128} +\indexentry{bash@\textsf {bash}}{128} +\indexentry{programmes!bash@\textsf {bash}}{128} +\indexentry{Unix@\textsf {Unix}}{128} +\indexentry{operating systems!Unix@\textsf {Unix}}{128} +\indexentry{Unix@\textsf {Unix}}{128} +\indexentry{operating systems!Unix@\textsf {Unix}}{128} +\indexentry{pipes!base R|)}{131} +\indexentry{control of execution flow}{132} +\indexentry{conditional statements}{132} +\indexentry{vectorized ifelse}{138} +\indexentry{loops|seealso{iteration}}{140} +\indexentry{for loop}{141} +\indexentry{iteration!for loop}{141} +\indexentry{for loop!unrolled}{141} +\indexentry{iteration!while loop}{144} +\indexentry{iteration!repeat loop}{146} +\indexentry{vectorization}{147} +\indexentry{recycling of arguments}{147} +\indexentry{iteration}{147} +\indexentry{loops!faster alternatives|(}{147} +\indexentry{microbenchmark@\textsf {`microbenchmark'}}{147} +\indexentry{packages!microbenchmark@\textsf {`microbenchmark'}}{147} +\indexentry{loops!faster alternatives|)}{148} +\indexentry{iteration!nesting of loops}{148} +\indexentry{nested iteration loops}{148} +\indexentry{loops!nested}{148} +\indexentry{apply functions}{149} +\indexentry{apply functions}{150} +\indexentry{loops!faster alternatives}{150} +\indexentry{datasets@\textsf {`datasets'}}{152} +\indexentry{packages!datasets@\textsf {`datasets'}}{152} +\indexentry{datasets@\textsf {`datasets'}}{153} +\indexentry{packages!datasets@\textsf {`datasets'}}{153} +\indexentry{C@\textsf {C}}{156} +\indexentry{languages!C@\textsf {C}}{156} +\indexentry{object names}{157} +\indexentry{object names!as character strings}{157} +\indexentry{further reading!the R language}{160} +\indexentry{functions!defining new}{161} +\indexentry{operators!defining new}{161} +\indexentry{functions!arguments}{163} +\indexentry{data.table@\textsf {`data.table'}}{163} +\indexentry{packages!data.table@\textsf {`data.table'}}{163} +\indexentry{functions!defining new}{165} \indexentry{operators!defining new}{167} -\indexentry{functions!arguments}{169} -\indexentry{data.table@\textsf {`data.table'}}{169} -\indexentry{packages!data.table@\textsf {`data.table'}}{169} -\indexentry{functions!defining new}{171} -\indexentry{operators!defining new}{174} -\indexentry{objects}{175} -\indexentry{classes}{175} -\indexentry{methods}{175} -\indexentry{object-oriented programming}{175} -\indexentry{S3 class system}{175} -\indexentry{classes!S3 class system}{175} -\indexentry{methods!S3 class system}{175} -\indexentry{generic method!S3 class system}{177} -\indexentry{names and scoping}{178} -\indexentry{scoping rules}{178} -\indexentry{namespaces}{178} -\indexentry{extensions to R}{179} -\indexentry{CRAN@\textsf {CRAN}}{179} -\indexentry{CRAN@\textsf {CRAN}}{179} -\indexentry{CRAN@\textsf {CRAN}}{179} -\indexentry{Bioconductor}{179} -\indexentry{ROpenScience}{179} -\indexentry{CRAN@\textsf {CRAN}}{179} -\indexentry{CRAN@\textsf {CRAN}}{179} -\indexentry{devtools@\textsf {`devtools'}}{179} -\indexentry{packages!devtools@\textsf {`devtools'}}{179} -\indexentry{GitHub@\textsf {GitHub}}{179} -\indexentry{Bitbucket@\textsf {Bitbucket}}{179} -\indexentry{Git@\textsf {Git}}{179} -\indexentry{programmes!Git@\textsf {Git}}{179} -\indexentry{packages!using}{180} -\indexentry{RStudio@\textsf {RStudio}}{180} -\indexentry{programmes!RStudio@\textsf {RStudio}}{180} -\indexentry{RGUI@\textsf {RGUI}}{180} -\indexentry{programmes!RGUI@\textsf {RGUI}}{180} -\indexentry{MS-Windows@\textsf {MS-Windows}}{180} -\indexentry{programmes!MS-Windows@\textsf {MS-Windows}}{180} -\indexentry{MS-Windows@\textsf {MS-Windows}}{180} -\indexentry{programmes!MS-Windows@\textsf {MS-Windows}}{180} -\indexentry{RTools@\textsf {RTools}}{180} -\indexentry{programmes!RTools@\textsf {RTools}}{180} -\indexentry{MiKTeX@\textsf {\hologoRobust {MiKTeX}}}{180} -\indexentry{programmes!MiKTeX@\textsf {\hologoRobust {MiKTeX}}}{180} -\indexentry{MS-Windows@\textsf {MS-Windows}}{180} -\indexentry{programmes!MS-Windows@\textsf {MS-Windows}}{180} -\indexentry{OS X@\textsf {OS X}}{180} -\indexentry{programmes!OS X@\textsf {OS X}}{180} -\indexentry{RStudio@\textsf {RStudio}}{180} -\indexentry{programmes!RStudio@\textsf {RStudio}}{180} -\indexentry{CRAN@\textsf {CRAN}}{182} -\indexentry{CRAN@\textsf {CRAN}}{182} -\indexentry{CRAN@\textsf {CRAN}}{182} -\indexentry{CRAN@\textsf {CRAN}}{182} -\indexentry{CRAN@\textsf {CRAN}}{182} -\indexentry{CRAN@\textsf {CRAN}}{182} -\indexentry{RStudio@\textsf {RStudio}}{183} -\indexentry{programmes!RStudio@\textsf {RStudio}}{183} -\indexentry{C@\textsf {C}}{183} -\indexentry{languages!C@\textsf {C}}{183} -\indexentry{C++@\textsf {C++}}{183} -\indexentry{languages!C++@\textsf {C++}}{183} -\indexentry{FORTRAN@\textsf {FORTRAN}}{183} -\indexentry{languages!FORTRAN@\textsf {FORTRAN}}{183} -\indexentry{Java@\textsf {Java}}{183} -\indexentry{languages!Java@\textsf {Java}}{183} -\indexentry{Python@\textsf {Python}}{183} -\indexentry{languages!Python@\textsf {Python}}{183} -\indexentry{C++@\textsf {C++}}{183} -\indexentry{languages!C++@\textsf {C++}}{183} -\indexentry{Rcpp@\textsf {`Rcpp'}}{183} -\indexentry{packages!Rcpp@\textsf {`Rcpp'}}{183} -\indexentry{Python@\textsf {Python}}{183} -\indexentry{languages!Python@\textsf {Python}}{183} -\indexentry{reticulate@\textsf {`reticulate'}}{183} -\indexentry{packages!reticulate@\textsf {`reticulate'}}{183} -\indexentry{Python@\textsf {Python}}{183} -\indexentry{languages!Python@\textsf {Python}}{183} -\indexentry{RStudio@\textsf {RStudio}}{183} -\indexentry{programmes!RStudio@\textsf {RStudio}}{183} -\indexentry{Java@\textsf {Java}}{183} -\indexentry{languages!Java@\textsf {Java}}{183} -\indexentry{RJava@\textsf {`RJava'}}{183} -\indexentry{packages!RJava@\textsf {`RJava'}}{183} -\indexentry{C@\textsf {C}}{183} -\indexentry{languages!C@\textsf {C}}{183} -\indexentry{FORTRAN@\textsf {FORTRAN}}{183} -\indexentry{languages!FORTRAN@\textsf {FORTRAN}}{183} -\indexentry{stats@\textsf {`stats'}}{183} -\indexentry{packages!stats@\textsf {`stats'}}{183} -\indexentry{datasets@\textsf {`datasets'}}{183} -\indexentry{packages!datasets@\textsf {`datasets'}}{183} -\indexentry{further reading!object oriented programming in R}{185} -\indexentry{further reading!package development}{185} -\indexentry{functions!base R}{188} -\indexentry{summaries!statistical}{188} -\indexentry{distributions|(}{189} -\indexentry{Normal distribution}{189} -\indexentry{distributions!density from parameters}{190} -\indexentry{distributions!probabilities from quantiles}{190} -\indexentry{distributions!quantiles from probabilities}{191} -\indexentry{random draws|see{distributions, pseudo-random draws}}{192} -\indexentry{distributions!pseudo-random draws}{192} -\indexentry{random numbers|see{pseudo-random numbers}}{192} -\indexentry{pseudo-random numbers}{192} -\indexentry{random sampling|see{pseudo-random sampling}}{193} -\indexentry{pseudo-random sampling}{193} -\indexentry{distributions|)}{194} -\indexentry{correlation|(}{194} -\indexentry{correlation!parametric}{194} -\indexentry{correlation!Pearson}{194} -\indexentry{correlation!non-parametric}{196} -\indexentry{correlation!Kendall}{196} -\indexentry{correlation!Spearman}{196} -\indexentry{correlation|)}{196} -\indexentry{models fitting|(}{196} -\indexentry{models fitting|)}{197} -\indexentry{models!linear|see{linear models}}{197} -\indexentry{linear models|(}{197} -\indexentry{LM|see{linear models}}{197} -\indexentry{linear regression|see{linear models, linear regression}}{198} -\indexentry{linear models!linear regression}{198} -\indexentry{linear models!summary table}{199} -\indexentry{linear models!polynomial regression}{200} -\indexentry{polynomial regression}{200} -\indexentry{Akaike's An Information Criterion@Akaike's \emph{An Information Criterion}}{200} -\indexentry{AIC|see \emph{An Information Criterion}}{200} -\indexentry{Bayesian Information Criterion@\emph{Bayesian Information Criterion}}{200} -\indexentry{BIC|see \emph{Bayesian Information Criterion}}{200} -\indexentry{Schwarz's Bayesian criterion@\emph{Schwarz's Bayesian criterion}|see \emph{Bayesian Information Criterion}}{200} -\indexentry{linear models!structure of model fit object}{201} -\indexentry{linear models!structure of summary object}{202} -\indexentry{linear models!test parameters for $H_0 \neq 0$}{204} -\indexentry{analysis of variance|see{linear models, analysis of variance}}{206} -\indexentry{linear models!analysis of variance}{206} -\indexentry{ANOVA|see{analysis of variance}}{206} -\indexentry{SPSS@\textsf {SPSS}}{207} -\indexentry{programmes!SPSS@\textsf {SPSS}}{207} -\indexentry{SAS@\textsf {SAS}}{207} -\indexentry{programmes!SAS@\textsf {SAS}}{207} -\indexentry{linear models!contrasts|(}{207} -\indexentry{S@\textsf {S}}{207} -\indexentry{languages!S@\textsf {S}}{207} -\indexentry{SPSS@\textsf {SPSS}}{208} -\indexentry{programmes!SPSS@\textsf {SPSS}}{208} -\indexentry{SAS@\textsf {SAS}}{208} -\indexentry{programmes!SAS@\textsf {SAS}}{208} -\indexentry{SAS@\textsf {SAS}}{208} -\indexentry{programmes!SAS@\textsf {SAS}}{208} -\indexentry{S@\textsf {S}}{208} -\indexentry{programmes!S@\textsf {S}}{208} -\indexentry{linear models!contrasts|)}{210} -\indexentry{analysis of covariance|see{linear models, analysis of covariance}}{210} -\indexentry{linear models!analysis of covariance}{210} -\indexentry{ANCOVA|see{analysis of covariance}}{210} -\indexentry{linear models|)}{210} -\indexentry{fitted models!updating|(}{210} -\indexentry{fitted models!updating|)}{212} -\indexentry{fitted models!stepwise selection|(}{212} -\indexentry{linear models!stepwise regression|(}{212} -\indexentry{Akaike's An Information Criterion@Akaike's \emph{An Information Criterion}}{212} -\indexentry{linear models!stepwise regression|)}{214} -\indexentry{fitted models!stepwise selection|)}{214} -\indexentry{generalized linear models|(}{214} -\indexentry{models!generalized linear|see{generalized linear models}}{214} -\indexentry{GLM|see{generalized linear models}}{214} -\indexentry{generalized linear models|)}{217} -\indexentry{non-linear models|(}{217} -\indexentry{models!non-linear|see{non-linear models}}{217} -\indexentry{NLS|see{non-linear models}}{217} -\indexentry{self-starting functions}{218} -\indexentry{Michaelis-Menten equation}{218} -\indexentry{chemical reaction kinetics}{218} -\indexentry{models!selfstart@{\texttt{selfStart}}}{218} -\indexentry{non-linear models|)}{220} -\indexentry{model formulas|(}{222} -\indexentry{analysis of variance!model formula}{227} -\indexentry{nlme@\textsf {`nlme'}}{228} -\indexentry{packages!nlme@\textsf {`nlme'}}{228} -\indexentry{lme4@\textsf {`lme4'}}{228} -\indexentry{packages!lme4@\textsf {`lme4'}}{228} -\indexentry{model formulas!manipulation}{229} -\indexentry{model formulas|)}{231} -\indexentry{time series|(}{232} -\indexentry{time series!decomposition}{233} -\indexentry{time series|)}{235} -\indexentry{multivariate methods|(}{235} -\indexentry{multivariate analysis of variance|(}{235} -\indexentry{MANOVA|see{multivariate analysis of variance}}{235} -\indexentry{multivariate analysis of variance|)}{237} -\indexentry{principal components analysis|(}{237} -\indexentry{PCA|see {principal components analysis}}{237} -\indexentry{principal components analysis|)}{239} -\indexentry{multidimensional scaling|(}{239} -\indexentry{MDS|see {multidimensional scaling}}{239} -\indexentry{multidimensional scaling|)}{241} -\indexentry{cluster analysis|(}{241} -\indexentry{stats@\textsf {`stats'}}{241} -\indexentry{packages!stats@\textsf {`stats'}}{241} -\indexentry{cluster analysis|)}{242} -\indexentry{multivariate methods|)}{242} -\indexentry{further reading!statistics in R}{243} -\indexentry{tidyverse@\textsf {`tidyverse'}}{245} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{245} -\indexentry{tidyverse@\textsf {`tidyverse'}}{245} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{245} -\indexentry{data.table@\textsf {`data.table'}}{245} -\indexentry{packages!data.table@\textsf {`data.table'}}{245} -\indexentry{data.table@\textsf {`data.table'}}{246} -\indexentry{packages!data.table@\textsf {`data.table'}}{246} -\indexentry{data.table@\textsf {`data.table'}}{246} -\indexentry{packages!data.table@\textsf {`data.table'}}{246} -\indexentry{tidyverse@\textsf {`tidyverse'}}{246} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{246} +\indexentry{objects}{168} +\indexentry{classes}{168} +\indexentry{methods}{168} +\indexentry{object-oriented programming}{168} +\indexentry{S3 class system}{168} +\indexentry{classes!S3 class system}{168} +\indexentry{methods!S3 class system}{168} +\indexentry{generic method!S3 class system}{170} +\indexentry{names and scoping}{171} +\indexentry{scoping rules}{171} +\indexentry{namespaces}{171} +\indexentry{extensions to R}{172} +\indexentry{CRAN@\textsf {CRAN}}{172} +\indexentry{CRAN@\textsf {CRAN}}{172} +\indexentry{CRAN@\textsf {CRAN}}{172} +\indexentry{Bioconductor}{172} +\indexentry{ROpenScience}{173} +\indexentry{CRAN@\textsf {CRAN}}{173} +\indexentry{CRAN@\textsf {CRAN}}{173} +\indexentry{devtools@\textsf {`devtools'}}{173} +\indexentry{packages!devtools@\textsf {`devtools'}}{173} +\indexentry{GitHub@\textsf {GitHub}}{173} +\indexentry{Bitbucket@\textsf {Bitbucket}}{173} +\indexentry{Git@\textsf {Git}}{173} +\indexentry{programmes!Git@\textsf {Git}}{173} +\indexentry{packages!using}{173} +\indexentry{RStudio@\textsf {RStudio}}{173} +\indexentry{programmes!RStudio@\textsf {RStudio}}{173} +\indexentry{RGUI@\textsf {RGUI}}{173} +\indexentry{programmes!RGUI@\textsf {RGUI}}{173} +\indexentry{MS-Windows@\textsf {MS-Windows}}{173} +\indexentry{programmes!MS-Windows@\textsf {MS-Windows}}{173} +\indexentry{MS-Windows@\textsf {MS-Windows}}{173} +\indexentry{programmes!MS-Windows@\textsf {MS-Windows}}{173} +\indexentry{RTools@\textsf {RTools}}{173} +\indexentry{programmes!RTools@\textsf {RTools}}{173} +\indexentry{MiKTeX@\textsf {\hologoRobust {MiKTeX}}}{173} +\indexentry{programmes!MiKTeX@\textsf {\hologoRobust {MiKTeX}}}{173} +\indexentry{MS-Windows@\textsf {MS-Windows}}{173} +\indexentry{programmes!MS-Windows@\textsf {MS-Windows}}{173} +\indexentry{OS X@\textsf {OS X}}{174} +\indexentry{programmes!OS X@\textsf {OS X}}{174} +\indexentry{RStudio@\textsf {RStudio}}{174} +\indexentry{programmes!RStudio@\textsf {RStudio}}{174} +\indexentry{CRAN@\textsf {CRAN}}{175} +\indexentry{CRAN@\textsf {CRAN}}{175} +\indexentry{CRAN@\textsf {CRAN}}{175} +\indexentry{CRAN@\textsf {CRAN}}{176} +\indexentry{CRAN@\textsf {CRAN}}{176} +\indexentry{CRAN@\textsf {CRAN}}{176} +\indexentry{RStudio@\textsf {RStudio}}{176} +\indexentry{programmes!RStudio@\textsf {RStudio}}{176} +\indexentry{C@\textsf {C}}{176} +\indexentry{languages!C@\textsf {C}}{176} +\indexentry{C++@\textsf {C++}}{176} +\indexentry{languages!C++@\textsf {C++}}{176} +\indexentry{FORTRAN@\textsf {FORTRAN}}{176} +\indexentry{languages!FORTRAN@\textsf {FORTRAN}}{176} +\indexentry{Java@\textsf {Java}}{176} +\indexentry{languages!Java@\textsf {Java}}{176} +\indexentry{Python@\textsf {Python}}{176} +\indexentry{languages!Python@\textsf {Python}}{176} +\indexentry{C++@\textsf {C++}}{176} +\indexentry{languages!C++@\textsf {C++}}{176} +\indexentry{Rcpp@\textsf {`Rcpp'}}{176} +\indexentry{packages!Rcpp@\textsf {`Rcpp'}}{176} +\indexentry{Python@\textsf {Python}}{176} +\indexentry{languages!Python@\textsf {Python}}{176} +\indexentry{reticulate@\textsf {`reticulate'}}{176} +\indexentry{packages!reticulate@\textsf {`reticulate'}}{176} +\indexentry{Python@\textsf {Python}}{176} +\indexentry{languages!Python@\textsf {Python}}{176} +\indexentry{RStudio@\textsf {RStudio}}{176} +\indexentry{programmes!RStudio@\textsf {RStudio}}{176} +\indexentry{Java@\textsf {Java}}{176} +\indexentry{languages!Java@\textsf {Java}}{176} +\indexentry{RJava@\textsf {`RJava'}}{176} +\indexentry{packages!RJava@\textsf {`RJava'}}{176} +\indexentry{C@\textsf {C}}{176} +\indexentry{languages!C@\textsf {C}}{176} +\indexentry{FORTRAN@\textsf {FORTRAN}}{176} +\indexentry{languages!FORTRAN@\textsf {FORTRAN}}{176} +\indexentry{stats@\textsf {`stats'}}{177} +\indexentry{packages!stats@\textsf {`stats'}}{177} +\indexentry{datasets@\textsf {`datasets'}}{177} +\indexentry{packages!datasets@\textsf {`datasets'}}{177} +\indexentry{further reading!object oriented programming in R}{178} +\indexentry{further reading!package development}{178} +\indexentry{functions!base R}{180} +\indexentry{summaries!statistical}{180} +\indexentry{distributions|(}{181} +\indexentry{Normal distribution}{181} +\indexentry{distributions!density from parameters}{181} +\indexentry{distributions!probabilities from quantiles}{182} +\indexentry{distributions!quantiles from probabilities}{183} +\indexentry{random draws|see{distributions, pseudo-random draws}}{183} +\indexentry{distributions!pseudo-random draws}{183} +\indexentry{random numbers|see{pseudo-random numbers}}{184} +\indexentry{pseudo-random numbers}{184} +\indexentry{random sampling|see{pseudo-random sampling}}{184} +\indexentry{pseudo-random sampling}{184} +\indexentry{distributions|)}{185} +\indexentry{correlation|(}{185} +\indexentry{correlation!parametric}{186} +\indexentry{correlation!Pearson}{186} +\indexentry{correlation!non-parametric}{187} +\indexentry{correlation!Kendall}{187} +\indexentry{correlation!Spearman}{187} +\indexentry{correlation|)}{187} +\indexentry{models fitting|(}{187} +\indexentry{models fitting|)}{188} +\indexentry{models!linear|see{linear models}}{188} +\indexentry{linear models|(}{188} +\indexentry{LM|see{linear models}}{188} +\indexentry{linear regression|see{linear models, linear regression}}{189} +\indexentry{linear models!linear regression}{189} +\indexentry{linear models!summary table}{190} +\indexentry{linear models!polynomial regression}{191} +\indexentry{polynomial regression}{191} +\indexentry{Akaike's An Information Criterion@Akaike's \emph{An Information Criterion}}{192} +\indexentry{AIC|see \emph{An Information Criterion}}{192} +\indexentry{Bayesian Information Criterion@\emph{Bayesian Information Criterion}}{192} +\indexentry{BIC|see \emph{Bayesian Information Criterion}}{192} +\indexentry{Schwarz's Bayesian criterion@\emph{Schwarz's Bayesian criterion}|see \emph{Bayesian Information Criterion}}{192} +\indexentry{linear models!structure of model fit object}{193} +\indexentry{linear models!structure of summary object}{194} +\indexentry{linear models!test parameters for $H_0 \neq 0$}{195} +\indexentry{analysis of variance|see{linear models, analysis of variance}}{197} +\indexentry{linear models!analysis of variance}{197} +\indexentry{ANOVA|see{analysis of variance}}{197} +\indexentry{SPSS@\textsf {SPSS}}{198} +\indexentry{programmes!SPSS@\textsf {SPSS}}{198} +\indexentry{SAS@\textsf {SAS}}{198} +\indexentry{programmes!SAS@\textsf {SAS}}{198} +\indexentry{linear models!contrasts|(}{198} +\indexentry{S@\textsf {S}}{198} +\indexentry{languages!S@\textsf {S}}{198} +\indexentry{SPSS@\textsf {SPSS}}{199} +\indexentry{programmes!SPSS@\textsf {SPSS}}{199} +\indexentry{SAS@\textsf {SAS}}{199} +\indexentry{programmes!SAS@\textsf {SAS}}{199} +\indexentry{SAS@\textsf {SAS}}{199} +\indexentry{programmes!SAS@\textsf {SAS}}{199} +\indexentry{S@\textsf {S}}{199} +\indexentry{programmes!S@\textsf {S}}{199} +\indexentry{linear models!contrasts|)}{201} +\indexentry{analysis of covariance|see{linear models, analysis of covariance}}{201} +\indexentry{linear models!analysis of covariance}{201} +\indexentry{ANCOVA|see{analysis of covariance}}{201} +\indexentry{linear models|)}{201} +\indexentry{fitted models!updating|(}{201} +\indexentry{fitted models!updating|)}{203} +\indexentry{fitted models!stepwise selection|(}{203} +\indexentry{linear models!stepwise regression|(}{203} +\indexentry{Akaike's An Information Criterion@Akaike's \emph{An Information Criterion}}{203} +\indexentry{linear models!stepwise regression|)}{205} +\indexentry{fitted models!stepwise selection|)}{205} +\indexentry{generalized linear models|(}{206} +\indexentry{models!generalized linear|see{generalized linear models}}{206} +\indexentry{GLM|see{generalized linear models}}{206} +\indexentry{generalized linear models|)}{208} +\indexentry{non-linear models|(}{208} +\indexentry{models!non-linear|see{non-linear models}}{208} +\indexentry{NLS|see{non-linear models}}{208} +\indexentry{self-starting functions}{209} +\indexentry{Michaelis-Menten equation}{209} +\indexentry{chemical reaction kinetics}{209} +\indexentry{models!selfstart@{\texttt{selfStart}}}{209} +\indexentry{non-linear models|)}{211} +\indexentry{model formulas|(}{213} +\indexentry{analysis of variance!model formula}{218} +\indexentry{nlme@\textsf {`nlme'}}{218} +\indexentry{packages!nlme@\textsf {`nlme'}}{218} +\indexentry{lme4@\textsf {`lme4'}}{218} +\indexentry{packages!lme4@\textsf {`lme4'}}{218} +\indexentry{model formulas!manipulation}{219} +\indexentry{model formulas|)}{222} +\indexentry{time series|(}{222} +\indexentry{time series!decomposition}{224} +\indexentry{time series|)}{225} +\indexentry{multivariate methods|(}{226} +\indexentry{multivariate analysis of variance|(}{226} +\indexentry{MANOVA|see{multivariate analysis of variance}}{226} +\indexentry{multivariate analysis of variance|)}{227} +\indexentry{principal components analysis|(}{227} +\indexentry{PCA|see {principal components analysis}}{227} +\indexentry{principal components analysis|)}{229} +\indexentry{multidimensional scaling|(}{229} +\indexentry{MDS|see {multidimensional scaling}}{229} +\indexentry{multidimensional scaling|)}{231} +\indexentry{cluster analysis|(}{231} +\indexentry{stats@\textsf {`stats'}}{231} +\indexentry{packages!stats@\textsf {`stats'}}{231} +\indexentry{cluster analysis|)}{232} +\indexentry{multivariate methods|)}{232} +\indexentry{further reading!statistics in R}{232} +\indexentry{tidyverse@\textsf {`tidyverse'}}{233} +\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{233} +\indexentry{tidyverse@\textsf {`tidyverse'}}{233} +\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{233} +\indexentry{data.table@\textsf {`data.table'}}{233} +\indexentry{packages!data.table@\textsf {`data.table'}}{233} +\indexentry{data.table@\textsf {`data.table'}}{234} +\indexentry{packages!data.table@\textsf {`data.table'}}{234} +\indexentry{data.table@\textsf {`data.table'}}{234} +\indexentry{packages!data.table@\textsf {`data.table'}}{234} +\indexentry{tidyverse@\textsf {`tidyverse'}}{234} +\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{234} +\indexentry{tidyverse@\textsf {`tidyverse'}}{234} +\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{234} +\indexentry{tidyverse@\textsf {`tidyverse'}}{234} +\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{234} +\indexentry{magrittr@\textsf {`magrittr'}}{235} +\indexentry{packages!magrittr@\textsf {`magrittr'}}{235} +\indexentry{wrapr@\textsf {`wrapr'}}{235} +\indexentry{packages!wrapr@\textsf {`wrapr'}}{235} +\indexentry{tidyverse@\textsf {`tidyverse'}}{235} +\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{235} +\indexentry{tibble@\textsf {`tibble'}}{235} +\indexentry{packages!tibble@\textsf {`tibble'}}{235} +\indexentry{dplyr@\textsf {`dplyr'}}{235} +\indexentry{packages!dplyr@\textsf {`dplyr'}}{235} +\indexentry{tidyr@\textsf {`tidyr'}}{235} +\indexentry{packages!tidyr@\textsf {`tidyr'}}{235} +\indexentry{tidyverse@\textsf {`tidyverse'}}{235} +\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{235} +\indexentry{dplyr@\textsf {`dplyr'}}{235} +\indexentry{packages!dplyr@\textsf {`dplyr'}}{235} +\indexentry{tidyverse@\textsf {`tidyverse'}}{235} +\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{235} +\indexentry{dplyr@\textsf {`dplyr'}}{235} +\indexentry{packages!dplyr@\textsf {`dplyr'}}{235} +\indexentry{tidyverse@\textsf {`tidyverse'}}{235} +\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{235} +\indexentry{dplyr@\textsf {`dplyr'}}{236} +\indexentry{packages!dplyr@\textsf {`dplyr'}}{236} +\indexentry{poorman@\textsf {`poorman'}}{236} +\indexentry{packages!poorman@\textsf {`poorman'}}{236} +\indexentry{dplyr@\textsf {`dplyr'}}{236} +\indexentry{packages!dplyr@\textsf {`dplyr'}}{236} +\indexentry{tidyr@\textsf {`tidyr'}}{236} +\indexentry{packages!tidyr@\textsf {`tidyr'}}{236} +\indexentry{C++@\textsf {C++}}{236} +\indexentry{languages!C++@\textsf {C++}}{236} +\indexentry{data frame!replacements|(}{236} +\indexentry{data.table@\textsf {`data.table'}}{236} +\indexentry{packages!data.table@\textsf {`data.table'}}{236} +\indexentry{data.table@\textsf {`data.table'}}{236} +\indexentry{packages!data.table@\textsf {`data.table'}}{236} +\indexentry{data.table@\textsf {`data.table'}}{237} +\indexentry{packages!data.table@\textsf {`data.table'}}{237} +\indexentry{data.table@\textsf {`data.table'}}{237} +\indexentry{packages!data.table@\textsf {`data.table'}}{237} +\indexentry{data.table@\textsf {`data.table'}}{237} +\indexentry{packages!data.table@\textsf {`data.table'}}{237} +\indexentry{tidyverse@\textsf {`tidyverse'}}{237} +\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{237} +\indexentry{data.table@\textsf {`data.table'}}{237} +\indexentry{packages!data.table@\textsf {`data.table'}}{237} +\indexentry{tidyverse@\textsf {`tidyverse'}}{237} +\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{237} +\indexentry{tidyverse@\textsf {`tidyverse'}}{237} +\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{237} +\indexentry{data.table@\textsf {`data.table'}}{237} +\indexentry{packages!data.table@\textsf {`data.table'}}{237} +\indexentry{tibble@\textsf {`tibble'}}{237} +\indexentry{packages!tibble@\textsf {`tibble'}}{237} +\indexentry{tibble!differences with data frames|(}{237} +\indexentry{tibble@\textsf {`tibble'}}{237} +\indexentry{packages!tibble@\textsf {`tibble'}}{237} +\indexentry{tibble@\textsf {`tibble'}}{237} +\indexentry{packages!tibble@\textsf {`tibble'}}{237} +\indexentry{tidyverse@\textsf {`tidyverse'}}{237} +\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{237} +\indexentry{tidyverse@\textsf {`tidyverse'}}{240} +\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{240} +\indexentry{tibble!differences with data frames|)}{242} +\indexentry{data frame!replacements|)}{242} +\indexentry{chaining statements with \emph{pipes}|(}{242} +\indexentry{tidyverse@\textsf {`tidyverse'}}{242} +\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{242} +\indexentry{magrittr@\textsf {`magrittr'}}{242} +\indexentry{packages!magrittr@\textsf {`magrittr'}}{242} +\indexentry{pipes!tidyverse|(}{242} +\indexentry{pipe operator}{242} +\indexentry{magrittr@\textsf {`magrittr'}}{242} +\indexentry{packages!magrittr@\textsf {`magrittr'}}{242} +\indexentry{magrittr@\textsf {`magrittr'}}{242} +\indexentry{packages!magrittr@\textsf {`magrittr'}}{242} +\indexentry{dplyr@\textsf {`dplyr'}}{242} +\indexentry{packages!dplyr@\textsf {`dplyr'}}{242} +\indexentry{magrittr@\textsf {`magrittr'}}{242} +\indexentry{packages!magrittr@\textsf {`magrittr'}}{242} +\indexentry{magrittr@\textsf {`magrittr'}}{242} +\indexentry{packages!magrittr@\textsf {`magrittr'}}{242} +\indexentry{magrittr@\textsf {`magrittr'}}{243} +\indexentry{packages!magrittr@\textsf {`magrittr'}}{243} +\indexentry{pipes!tidyverse|)}{243} +\indexentry{wrapr@\textsf {`wrapr'}}{243} +\indexentry{packages!wrapr@\textsf {`wrapr'}}{243} +\indexentry{pipes!wrapr|(}{243} +\indexentry{dot-pipe operator}{243} +\indexentry{wrapr@\textsf {`wrapr'}}{243} +\indexentry{packages!wrapr@\textsf {`wrapr'}}{243} +\indexentry{dplyr@\textsf {`dplyr'}}{243} +\indexentry{packages!dplyr@\textsf {`dplyr'}}{243} +\indexentry{magrittr@\textsf {`magrittr'}}{243} +\indexentry{packages!magrittr@\textsf {`magrittr'}}{243} +\indexentry{magrittr@\textsf {`magrittr'}}{243} +\indexentry{packages!magrittr@\textsf {`magrittr'}}{243} +\indexentry{pipes!expressions in rhs}{243} +\indexentry{wrapr@\textsf {`wrapr'}}{243} +\indexentry{packages!wrapr@\textsf {`wrapr'}}{243} +\indexentry{wrapr@\textsf {`wrapr'}}{244} +\indexentry{packages!wrapr@\textsf {`wrapr'}}{244} +\indexentry{tidyverse@\textsf {`tidyverse'}}{244} +\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{244} +\indexentry{magrittr@\textsf {`magrittr'}}{245} +\indexentry{packages!magrittr@\textsf {`magrittr'}}{245} +\indexentry{wrapr@\textsf {`wrapr'}}{245} +\indexentry{packages!wrapr@\textsf {`wrapr'}}{245} +\indexentry{magrittr@\textsf {`magrittr'}}{245} +\indexentry{packages!magrittr@\textsf {`magrittr'}}{245} +\indexentry{magrittr@\textsf {`magrittr'}}{245} +\indexentry{packages!magrittr@\textsf {`magrittr'}}{245} +\indexentry{magrittr@\textsf {`magrittr'}}{245} +\indexentry{packages!magrittr@\textsf {`magrittr'}}{245} +\indexentry{wrapr@\textsf {`wrapr'}}{245} +\indexentry{packages!wrapr@\textsf {`wrapr'}}{245} +\indexentry{magrittr@\textsf {`magrittr'}}{246} +\indexentry{packages!magrittr@\textsf {`magrittr'}}{246} +\indexentry{pipes!wrapr|)}{246} +\indexentry{chaining statements with \emph{pipes}|)}{246} +\indexentry{tidyr@\textsf {`tidyr'}}{246} +\indexentry{packages!tidyr@\textsf {`tidyr'}}{246} +\indexentry{reshaping tibbles|(}{246} +\indexentry{long-form- and wide-form tabular data}{246} \indexentry{tidyverse@\textsf {`tidyverse'}}{246} \indexentry{packages!tidyverse@\textsf {`tidyverse'}}{246} +\indexentry{S@\textsf {S}}{246} +\indexentry{languages!S@\textsf {S}}{246} \indexentry{tidyverse@\textsf {`tidyverse'}}{246} \indexentry{packages!tidyverse@\textsf {`tidyverse'}}{246} -\indexentry{magrittr@\textsf {`magrittr'}}{247} -\indexentry{packages!magrittr@\textsf {`magrittr'}}{247} -\indexentry{wrapr@\textsf {`wrapr'}}{247} -\indexentry{packages!wrapr@\textsf {`wrapr'}}{247} +\indexentry{tidyr@\textsf {`tidyr'}}{246} +\indexentry{packages!tidyr@\textsf {`tidyr'}}{246} +\indexentry{tidyr@\textsf {`tidyr'}}{246} +\indexentry{packages!tidyr@\textsf {`tidyr'}}{246} +\indexentry{reshape2@\textsf {`reshape2'}}{246} +\indexentry{packages!reshape2@\textsf {`reshape2'}}{246} +\indexentry{reshape@\textsf {`reshape'}}{246} +\indexentry{packages!reshape@\textsf {`reshape'}}{246} +\indexentry{tidyr@\textsf {`tidyr'}}{246} +\indexentry{packages!tidyr@\textsf {`tidyr'}}{246} \indexentry{tidyverse@\textsf {`tidyverse'}}{247} \indexentry{packages!tidyverse@\textsf {`tidyverse'}}{247} -\indexentry{tibble@\textsf {`tibble'}}{247} -\indexentry{packages!tibble@\textsf {`tibble'}}{247} -\indexentry{dplyr@\textsf {`dplyr'}}{247} -\indexentry{packages!dplyr@\textsf {`dplyr'}}{247} \indexentry{tidyr@\textsf {`tidyr'}}{247} \indexentry{packages!tidyr@\textsf {`tidyr'}}{247} \indexentry{tidyverse@\textsf {`tidyverse'}}{247} \indexentry{packages!tidyverse@\textsf {`tidyverse'}}{247} -\indexentry{dplyr@\textsf {`dplyr'}}{247} -\indexentry{packages!dplyr@\textsf {`dplyr'}}{247} -\indexentry{tidyverse@\textsf {`tidyverse'}}{247} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{247} -\indexentry{dplyr@\textsf {`dplyr'}}{247} -\indexentry{packages!dplyr@\textsf {`dplyr'}}{247} -\indexentry{tidyverse@\textsf {`tidyverse'}}{247} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{247} -\indexentry{dplyr@\textsf {`dplyr'}}{248} -\indexentry{packages!dplyr@\textsf {`dplyr'}}{248} +\indexentry{tidyr@\textsf {`tidyr'}}{248} +\indexentry{packages!tidyr@\textsf {`tidyr'}}{248} \indexentry{poorman@\textsf {`poorman'}}{248} \indexentry{packages!poorman@\textsf {`poorman'}}{248} -\indexentry{dplyr@\textsf {`dplyr'}}{248} -\indexentry{packages!dplyr@\textsf {`dplyr'}}{248} \indexentry{tidyr@\textsf {`tidyr'}}{248} \indexentry{packages!tidyr@\textsf {`tidyr'}}{248} -\indexentry{C++@\textsf {C++}}{248} -\indexentry{languages!C++@\textsf {C++}}{248} -\indexentry{data frame!replacements|(}{248} -\indexentry{data.table@\textsf {`data.table'}}{248} -\indexentry{packages!data.table@\textsf {`data.table'}}{248} -\indexentry{data.table@\textsf {`data.table'}}{248} -\indexentry{packages!data.table@\textsf {`data.table'}}{248} -\indexentry{data.table@\textsf {`data.table'}}{249} -\indexentry{packages!data.table@\textsf {`data.table'}}{249} -\indexentry{data.table@\textsf {`data.table'}}{249} -\indexentry{packages!data.table@\textsf {`data.table'}}{249} -\indexentry{data.table@\textsf {`data.table'}}{249} -\indexentry{packages!data.table@\textsf {`data.table'}}{249} -\indexentry{tidyverse@\textsf {`tidyverse'}}{249} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{249} -\indexentry{data.table@\textsf {`data.table'}}{249} -\indexentry{packages!data.table@\textsf {`data.table'}}{249} -\indexentry{tidyverse@\textsf {`tidyverse'}}{249} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{249} -\indexentry{tidyverse@\textsf {`tidyverse'}}{249} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{249} -\indexentry{data.table@\textsf {`data.table'}}{249} -\indexentry{packages!data.table@\textsf {`data.table'}}{249} -\indexentry{tibble@\textsf {`tibble'}}{249} -\indexentry{packages!tibble@\textsf {`tibble'}}{249} -\indexentry{tibble!differences with data frames|(}{249} -\indexentry{tibble@\textsf {`tibble'}}{249} -\indexentry{packages!tibble@\textsf {`tibble'}}{249} -\indexentry{tibble@\textsf {`tibble'}}{249} -\indexentry{packages!tibble@\textsf {`tibble'}}{249} -\indexentry{tidyverse@\textsf {`tidyverse'}}{249} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{249} -\indexentry{tidyverse@\textsf {`tidyverse'}}{253} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{253} -\indexentry{tibble!differences with data frames|)}{254} -\indexentry{data frame!replacements|)}{254} -\indexentry{chaining statements with \emph{pipes}|(}{254} -\indexentry{tidyverse@\textsf {`tidyverse'}}{254} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{254} -\indexentry{magrittr@\textsf {`magrittr'}}{255} -\indexentry{packages!magrittr@\textsf {`magrittr'}}{255} -\indexentry{pipes!tidyverse|(}{255} -\indexentry{pipe operator}{255} -\indexentry{magrittr@\textsf {`magrittr'}}{255} -\indexentry{packages!magrittr@\textsf {`magrittr'}}{255} -\indexentry{magrittr@\textsf {`magrittr'}}{255} -\indexentry{packages!magrittr@\textsf {`magrittr'}}{255} -\indexentry{dplyr@\textsf {`dplyr'}}{255} -\indexentry{packages!dplyr@\textsf {`dplyr'}}{255} -\indexentry{magrittr@\textsf {`magrittr'}}{255} -\indexentry{packages!magrittr@\textsf {`magrittr'}}{255} -\indexentry{magrittr@\textsf {`magrittr'}}{255} -\indexentry{packages!magrittr@\textsf {`magrittr'}}{255} -\indexentry{magrittr@\textsf {`magrittr'}}{255} -\indexentry{packages!magrittr@\textsf {`magrittr'}}{255} -\indexentry{pipes!tidyverse|)}{255} -\indexentry{wrapr@\textsf {`wrapr'}}{255} -\indexentry{packages!wrapr@\textsf {`wrapr'}}{255} -\indexentry{pipes!wrapr|(}{255} -\indexentry{dot-pipe operator}{255} -\indexentry{wrapr@\textsf {`wrapr'}}{255} -\indexentry{packages!wrapr@\textsf {`wrapr'}}{255} +\indexentry{poorman@\textsf {`poorman'}}{248} +\indexentry{packages!poorman@\textsf {`poorman'}}{248} +\indexentry{tidyr@\textsf {`tidyr'}}{248} +\indexentry{packages!tidyr@\textsf {`tidyr'}}{248} +\indexentry{poorman@\textsf {`poorman'}}{248} +\indexentry{packages!poorman@\textsf {`poorman'}}{248} +\indexentry{reshaping tibbles|)}{248} +\indexentry{dplyr@\textsf {`dplyr'}}{248} +\indexentry{packages!dplyr@\textsf {`dplyr'}}{248} +\indexentry{data manipulation in the tidyverse|(}{248} +\indexentry{dplyr@\textsf {`dplyr'}}{248} +\indexentry{packages!dplyr@\textsf {`dplyr'}}{248} +\indexentry{dtplyr@\textsf {`dtplyr'}}{248} +\indexentry{packages!dtplyr@\textsf {`dtplyr'}}{248} +\indexentry{dbplyr@\textsf {`dbplyr'}}{248} +\indexentry{packages!dbplyr@\textsf {`dbplyr'}}{248} +\indexentry{dplyr@\textsf {`dplyr'}}{248} +\indexentry{packages!dplyr@\textsf {`dplyr'}}{248} +\indexentry{tidyverse@\textsf {`tidyverse'}}{248} +\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{248} +\indexentry{tidyverse@\textsf {`tidyverse'}}{248} +\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{248} +\indexentry{tidyverse@\textsf {`tidyverse'}}{248} +\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{248} +\indexentry{row-wise operations on data|(}{249} +\indexentry{dplyr@\textsf {`dplyr'}}{249} +\indexentry{packages!dplyr@\textsf {`dplyr'}}{249} +\indexentry{stringr@\textsf {`stringr'}}{249} +\indexentry{packages!stringr@\textsf {`stringr'}}{249} +\indexentry{tidyverse@\textsf {`tidyverse'}}{250} +\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{250} +\indexentry{dplyr@\textsf {`dplyr'}}{250} +\indexentry{packages!dplyr@\textsf {`dplyr'}}{250} +\indexentry{row-wise operations on data|)}{251} +\indexentry{group-wise operations on data|(}{251} +\indexentry{dplyr@\textsf {`dplyr'}}{251} +\indexentry{packages!dplyr@\textsf {`dplyr'}}{251} +\indexentry{grouping!implementation in tidyverse}{251} +\indexentry{dplyr@\textsf {`dplyr'}}{253} +\indexentry{packages!dplyr@\textsf {`dplyr'}}{253} +\indexentry{tidyr@\textsf {`tidyr'}}{253} +\indexentry{packages!tidyr@\textsf {`tidyr'}}{253} +\indexentry{group-wise operations on data|)}{253} +\indexentry{dplyr@\textsf {`dplyr'}}{253} +\indexentry{packages!dplyr@\textsf {`dplyr'}}{253} +\indexentry{joins between data sources|(}{253} +\indexentry{merging data from two tibbles|(}{253} +\indexentry{dplyr@\textsf {`dplyr'}}{253} +\indexentry{packages!dplyr@\textsf {`dplyr'}}{253} +\indexentry{joins between data sources!mutating}{253} +\indexentry{dplyr@\textsf {`dplyr'}}{253} +\indexentry{packages!dplyr@\textsf {`dplyr'}}{253} +\indexentry{joins between data sources!filtering}{255} \indexentry{dplyr@\textsf {`dplyr'}}{255} \indexentry{packages!dplyr@\textsf {`dplyr'}}{255} -\indexentry{magrittr@\textsf {`magrittr'}}{255} -\indexentry{packages!magrittr@\textsf {`magrittr'}}{255} -\indexentry{magrittr@\textsf {`magrittr'}}{256} -\indexentry{packages!magrittr@\textsf {`magrittr'}}{256} -\indexentry{pipes!expressions in rhs}{256} -\indexentry{wrapr@\textsf {`wrapr'}}{256} -\indexentry{packages!wrapr@\textsf {`wrapr'}}{256} -\indexentry{wrapr@\textsf {`wrapr'}}{256} -\indexentry{packages!wrapr@\textsf {`wrapr'}}{256} -\indexentry{tidyverse@\textsf {`tidyverse'}}{257} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{257} -\indexentry{magrittr@\textsf {`magrittr'}}{257} -\indexentry{packages!magrittr@\textsf {`magrittr'}}{257} -\indexentry{wrapr@\textsf {`wrapr'}}{257} -\indexentry{packages!wrapr@\textsf {`wrapr'}}{257} -\indexentry{magrittr@\textsf {`magrittr'}}{257} -\indexentry{packages!magrittr@\textsf {`magrittr'}}{257} -\indexentry{magrittr@\textsf {`magrittr'}}{258} -\indexentry{packages!magrittr@\textsf {`magrittr'}}{258} -\indexentry{magrittr@\textsf {`magrittr'}}{258} -\indexentry{packages!magrittr@\textsf {`magrittr'}}{258} -\indexentry{wrapr@\textsf {`wrapr'}}{258} -\indexentry{packages!wrapr@\textsf {`wrapr'}}{258} -\indexentry{magrittr@\textsf {`magrittr'}}{258} -\indexentry{packages!magrittr@\textsf {`magrittr'}}{258} -\indexentry{pipes!wrapr|)}{258} -\indexentry{chaining statements with \emph{pipes}|)}{258} -\indexentry{tidyr@\textsf {`tidyr'}}{259} -\indexentry{packages!tidyr@\textsf {`tidyr'}}{259} -\indexentry{reshaping tibbles|(}{259} -\indexentry{long-form- and wide-form tabular data}{259} -\indexentry{tidyverse@\textsf {`tidyverse'}}{259} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{259} -\indexentry{S@\textsf {S}}{259} -\indexentry{languages!S@\textsf {S}}{259} -\indexentry{tidyverse@\textsf {`tidyverse'}}{259} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{259} -\indexentry{tidyr@\textsf {`tidyr'}}{259} -\indexentry{packages!tidyr@\textsf {`tidyr'}}{259} -\indexentry{tidyr@\textsf {`tidyr'}}{259} -\indexentry{packages!tidyr@\textsf {`tidyr'}}{259} -\indexentry{reshape2@\textsf {`reshape2'}}{259} -\indexentry{packages!reshape2@\textsf {`reshape2'}}{259} -\indexentry{reshape@\textsf {`reshape'}}{259} -\indexentry{packages!reshape@\textsf {`reshape'}}{259} -\indexentry{tidyr@\textsf {`tidyr'}}{259} -\indexentry{packages!tidyr@\textsf {`tidyr'}}{259} -\indexentry{tidyverse@\textsf {`tidyverse'}}{259} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{259} -\indexentry{tidyr@\textsf {`tidyr'}}{259} -\indexentry{packages!tidyr@\textsf {`tidyr'}}{259} -\indexentry{tidyverse@\textsf {`tidyverse'}}{260} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{260} -\indexentry{tidyr@\textsf {`tidyr'}}{260} -\indexentry{packages!tidyr@\textsf {`tidyr'}}{260} -\indexentry{poorman@\textsf {`poorman'}}{261} -\indexentry{packages!poorman@\textsf {`poorman'}}{261} -\indexentry{tidyr@\textsf {`tidyr'}}{261} -\indexentry{packages!tidyr@\textsf {`tidyr'}}{261} -\indexentry{poorman@\textsf {`poorman'}}{261} -\indexentry{packages!poorman@\textsf {`poorman'}}{261} -\indexentry{tidyr@\textsf {`tidyr'}}{261} -\indexentry{packages!tidyr@\textsf {`tidyr'}}{261} -\indexentry{poorman@\textsf {`poorman'}}{261} -\indexentry{packages!poorman@\textsf {`poorman'}}{261} -\indexentry{reshaping tibbles|)}{261} -\indexentry{dplyr@\textsf {`dplyr'}}{261} -\indexentry{packages!dplyr@\textsf {`dplyr'}}{261} -\indexentry{data manipulation in the tidyverse|(}{261} -\indexentry{dplyr@\textsf {`dplyr'}}{261} -\indexentry{packages!dplyr@\textsf {`dplyr'}}{261} -\indexentry{dtplyr@\textsf {`dtplyr'}}{261} -\indexentry{packages!dtplyr@\textsf {`dtplyr'}}{261} -\indexentry{dbplyr@\textsf {`dbplyr'}}{261} -\indexentry{packages!dbplyr@\textsf {`dbplyr'}}{261} -\indexentry{dplyr@\textsf {`dplyr'}}{261} -\indexentry{packages!dplyr@\textsf {`dplyr'}}{261} -\indexentry{tidyverse@\textsf {`tidyverse'}}{261} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{261} -\indexentry{tidyverse@\textsf {`tidyverse'}}{261} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{261} -\indexentry{tidyverse@\textsf {`tidyverse'}}{261} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{261} -\indexentry{row-wise operations on data|(}{261} -\indexentry{dplyr@\textsf {`dplyr'}}{262} -\indexentry{packages!dplyr@\textsf {`dplyr'}}{262} -\indexentry{stringr@\textsf {`stringr'}}{262} -\indexentry{packages!stringr@\textsf {`stringr'}}{262} -\indexentry{tidyverse@\textsf {`tidyverse'}}{263} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{263} -\indexentry{dplyr@\textsf {`dplyr'}}{263} -\indexentry{packages!dplyr@\textsf {`dplyr'}}{263} -\indexentry{row-wise operations on data|)}{264} -\indexentry{group-wise operations on data|(}{264} -\indexentry{dplyr@\textsf {`dplyr'}}{264} -\indexentry{packages!dplyr@\textsf {`dplyr'}}{264} -\indexentry{grouping!implementation in tidyverse}{265} -\indexentry{dplyr@\textsf {`dplyr'}}{266} -\indexentry{packages!dplyr@\textsf {`dplyr'}}{266} -\indexentry{tidyr@\textsf {`tidyr'}}{266} -\indexentry{packages!tidyr@\textsf {`tidyr'}}{266} -\indexentry{group-wise operations on data|)}{266} -\indexentry{dplyr@\textsf {`dplyr'}}{266} -\indexentry{packages!dplyr@\textsf {`dplyr'}}{266} -\indexentry{joins between data sources|(}{266} -\indexentry{merging data from two tibbles|(}{266} -\indexentry{dplyr@\textsf {`dplyr'}}{266} -\indexentry{packages!dplyr@\textsf {`dplyr'}}{266} -\indexentry{joins between data sources!mutating}{266} -\indexentry{dplyr@\textsf {`dplyr'}}{266} -\indexentry{packages!dplyr@\textsf {`dplyr'}}{266} -\indexentry{joins between data sources!filtering}{268} -\indexentry{dplyr@\textsf {`dplyr'}}{268} -\indexentry{packages!dplyr@\textsf {`dplyr'}}{268} -\indexentry{merging data from two tibbles|)}{269} -\indexentry{joins between data sources|)}{269} -\indexentry{data manipulation in the tidyverse|)}{269} -\indexentry{further reading!new grammars of data}{270} -\indexentry{tidyverse@\textsf {`tidyverse'}}{270} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{270} -\indexentry{geometries ('ggplot2')|see{grammar of graphics, geometries}}{271} -\indexentry{statistics ('ggplot2')|see{grammar of graphics, statistics}}{271} -\indexentry{scales ('ggplot2')|see{grammar of graphics, scales}}{271} -\indexentry{coordinates ('ggplot2')|see{grammar of graphics, coordinates}}{271} -\indexentry{themes ('ggplot2')|see{grammar of graphics, themes}}{271} -\indexentry{facets ('ggplot2')|see{grammar of graphics, facets}}{271} -\indexentry{annotations ('ggplot2')|see{grammar of graphics, annotations}}{271} -\indexentry{aesthetics ('ggplot2')|see{grammar of graphics, aesthetics}}{271} -\indexentry{lattice@\textsf {`lattice'}}{271} -\indexentry{packages!lattice@\textsf {`lattice'}}{271} -\indexentry{ggplot2@\textsf {`ggplot2'}}{271} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{271} -\indexentry{grid@\textsf {`grid'}}{271} -\indexentry{packages!grid@\textsf {`grid'}}{271} -\indexentry{ggplot2@\textsf {`ggplot2'}}{271} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{271} -\indexentry{ggplot2@\textsf {`ggplot2'}}{271} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{271} -\indexentry{ggplot2@\textsf {`ggplot2'}}{271} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{271} -\indexentry{ggplot2@\textsf {`ggplot2'}}{271} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{271} -\indexentry{learnrbook@\textsf {`learnrbook'}}{271} -\indexentry{packages!learnrbook@\textsf {`learnrbook'}}{271} -\indexentry{grammar of graphics!elements|(}{273} -\indexentry{ggplot2@\textsf {`ggplot2'}}{273} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{273} -\indexentry{grammar of graphics}{273} -\indexentry{ggplot2@\textsf {`ggplot2'}}{273} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{273} -\indexentry{grammar of graphics!cartesian coordinates}{273} -\indexentry{ggplot2@\textsf {`ggplot2'}}{273} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{273} -\indexentry{ggplot2@\textsf {`ggplot2'}}{274} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{274} -\indexentry{ggplot2@\textsf {`ggplot2'}}{274} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{274} -\indexentry{plots!layers}{274} -\indexentry{ggplot2@\textsf {`ggplot2'}}{274} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{274} -\indexentry{grammar of graphics!data}{274} -\indexentry{ggplot2@\textsf {`ggplot2'}}{274} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{274} -\indexentry{grammar of graphics!mapping of data}{274} -\indexentry{plots!aesthetics}{274} -\indexentry{grammar of graphics!geometries}{275} -\indexentry{grammar of graphics!positions}{275} -\indexentry{grammar of graphics!statistics}{275} -\indexentry{grammar of graphics!scales}{275} -\indexentry{grammar of graphics!coordinates}{276} -\indexentry{ggplot2@\textsf {`ggplot2'}}{276} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{276} -\indexentry{ggtern@\textsf {`ggtern'}}{276} -\indexentry{packages!ggtern@\textsf {`ggtern'}}{276} -\indexentry{grammar of graphics!themes}{276} -\indexentry{grammar of graphics!operators}{276} -\indexentry{grammar of graphics!elements|)}{276} -\indexentry{grammar of graphics!plot structure|(}{276} -\indexentry{grammar of graphics!plot workings|(}{276} -\indexentry{ggplot2@\textsf {`ggplot2'}}{276} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{276} +\indexentry{merging data from two tibbles|)}{256} +\indexentry{joins between data sources|)}{256} +\indexentry{data manipulation in the tidyverse|)}{256} +\indexentry{further reading!new grammars of data}{256} +\indexentry{tidyverse@\textsf {`tidyverse'}}{256} +\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{256} +\indexentry{geometries ('ggplot2')|see{grammar of graphics, geometries}}{257} +\indexentry{statistics ('ggplot2')|see{grammar of graphics, statistics}}{257} +\indexentry{scales ('ggplot2')|see{grammar of graphics, scales}}{257} +\indexentry{coordinates ('ggplot2')|see{grammar of graphics, coordinates}}{257} +\indexentry{themes ('ggplot2')|see{grammar of graphics, themes}}{257} +\indexentry{facets ('ggplot2')|see{grammar of graphics, facets}}{257} +\indexentry{annotations ('ggplot2')|see{grammar of graphics, annotations}}{257} +\indexentry{aesthetics ('ggplot2')|see{grammar of graphics, aesthetics}}{257} +\indexentry{lattice@\textsf {`lattice'}}{257} +\indexentry{packages!lattice@\textsf {`lattice'}}{257} +\indexentry{ggplot2@\textsf {`ggplot2'}}{257} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{257} +\indexentry{grid@\textsf {`grid'}}{257} +\indexentry{packages!grid@\textsf {`grid'}}{257} +\indexentry{ggplot2@\textsf {`ggplot2'}}{257} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{257} +\indexentry{ggplot2@\textsf {`ggplot2'}}{257} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{257} +\indexentry{ggplot2@\textsf {`ggplot2'}}{257} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{257} +\indexentry{ggplot2@\textsf {`ggplot2'}}{257} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{257} +\indexentry{learnrbook@\textsf {`learnrbook'}}{257} +\indexentry{packages!learnrbook@\textsf {`learnrbook'}}{257} +\indexentry{grammar of graphics!elements|(}{259} +\indexentry{ggplot2@\textsf {`ggplot2'}}{259} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{259} +\indexentry{grammar of graphics}{259} +\indexentry{ggplot2@\textsf {`ggplot2'}}{259} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{259} +\indexentry{grammar of graphics!cartesian coordinates}{259} +\indexentry{ggplot2@\textsf {`ggplot2'}}{259} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{259} +\indexentry{ggplot2@\textsf {`ggplot2'}}{260} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{260} +\indexentry{ggplot2@\textsf {`ggplot2'}}{260} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{260} +\indexentry{plots!layers}{260} +\indexentry{ggplot2@\textsf {`ggplot2'}}{260} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{260} +\indexentry{grammar of graphics!data}{260} +\indexentry{ggplot2@\textsf {`ggplot2'}}{260} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{260} +\indexentry{grammar of graphics!mapping of data}{260} +\indexentry{plots!aesthetics}{260} +\indexentry{grammar of graphics!geometries}{261} +\indexentry{grammar of graphics!positions}{261} +\indexentry{grammar of graphics!statistics}{261} +\indexentry{grammar of graphics!scales}{261} +\indexentry{grammar of graphics!coordinates}{262} +\indexentry{ggplot2@\textsf {`ggplot2'}}{262} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{262} +\indexentry{ggtern@\textsf {`ggtern'}}{262} +\indexentry{packages!ggtern@\textsf {`ggtern'}}{262} +\indexentry{grammar of graphics!themes}{262} +\indexentry{grammar of graphics!operators}{262} +\indexentry{grammar of graphics!elements|)}{262} +\indexentry{grammar of graphics!plot structure|(}{262} +\indexentry{grammar of graphics!plot workings|(}{262} +\indexentry{ggplot2@\textsf {`ggplot2'}}{263} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{263} +\indexentry{ggplot2@\textsf {`ggplot2'}}{263} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{263} +\indexentry{ggplot2@\textsf {`ggplot2'}}{264} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{264} +\indexentry{grammar of graphics!plot workings|)}{264} +\indexentry{grammar of graphics!plot structure|)}{264} +\indexentry{grammar of graphics!plot construction|(}{264} +\indexentry{ggplot2@\textsf {`ggplot2'}}{266} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{266} +\indexentry{gginnards@\textsf {`gginnards'}}{266} +\indexentry{packages!gginnards@\textsf {`gginnards'}}{266} +\indexentry{grammar of graphics!cartesian coordinates}{268} +\indexentry{grammar of graphics!plot construction|)}{271} +\indexentry{grammar of graphics!plots as R objects|(}{271} +\indexentry{grammar of graphics!structure of plot objects|(}{272} +\indexentry{ggplot2@\textsf {`ggplot2'}}{272} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{272} +\indexentry{grammar of graphics!structure of plot objects|)}{273} +\indexentry{grammar of graphics!plots as R objects|)}{273} +\indexentry{grammar of graphics!mapping of data|(}{273} +\indexentry{grammar of graphics!aesthetics(}{273} +\indexentry{magrittr@\textsf {`magrittr'}}{274} +\indexentry{packages!magrittr@\textsf {`magrittr'}}{274} +\indexentry{wrapr@\textsf {`wrapr'}}{274} +\indexentry{packages!wrapr@\textsf {`wrapr'}}{274} +\indexentry{grammar of graphics!mapping of data!late}{275} +\indexentry{ggplot2@\textsf {`ggplot2'}}{275} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{275} +\indexentry{ggplot2@\textsf {`ggplot2'}}{275} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{275} +\indexentry{ggplot2@\textsf {`ggplot2'}}{275} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{275} +\indexentry{ggplot2@\textsf {`ggplot2'}}{275} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{275} +\indexentry{grammar of graphics!mapping of data|)}{277} +\indexentry{grammar of graphics!aesthetics)}{277} +\indexentry{grammar of graphics!geometries|(}{277} \indexentry{ggplot2@\textsf {`ggplot2'}}{277} \indexentry{packages!ggplot2@\textsf {`ggplot2'}}{277} -\indexentry{ggplot2@\textsf {`ggplot2'}}{278} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{278} -\indexentry{grammar of graphics!plot workings|)}{278} -\indexentry{grammar of graphics!plot structure|)}{278} -\indexentry{grammar of graphics!plot construction|(}{278} -\indexentry{ggplot2@\textsf {`ggplot2'}}{280} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{280} -\indexentry{gginnards@\textsf {`gginnards'}}{280} -\indexentry{packages!gginnards@\textsf {`gginnards'}}{280} -\indexentry{grammar of graphics!cartesian coordinates}{282} -\indexentry{grammar of graphics!plot construction|)}{285} -\indexentry{grammar of graphics!plots as R objects|(}{285} -\indexentry{grammar of graphics!structure of plot objects|(}{286} +\indexentry{ggplot2@\textsf {`ggplot2'}}{277} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{277} +\indexentry{grammar of graphics!point geometry|(}{277} +\indexentry{plots!scatter plot|(}{277} +\indexentry{scales@\textsf {`scales'}}{278} +\indexentry{packages!scales@\textsf {`scales'}}{278} +\indexentry{plots!scatter plot|)}{279} +\indexentry{plots!dot plot|(}{279} +\indexentry{ggpp@\textsf {`ggpp'}}{281} +\indexentry{packages!ggpp@\textsf {`ggpp'}}{281} +\indexentry{plots!dot plot|)}{282} +\indexentry{plots!bubble plot|(}{282} +\indexentry{plots!bubble plot|)}{282} +\indexentry{grammar of graphics!point geometry|)}{283} +\indexentry{plots!rug marging|(}{283} +\indexentry{plots!rug marging|)}{284} +\indexentry{grammar of graphics!various line and path geometries|(}{284} +\indexentry{plots!line plot|(}{284} +\indexentry{plots!line plot|)}{284} +\indexentry{plots!step plot|(}{284} +\indexentry{plots!step plot|)}{285} +\indexentry{plots!filled-area plot|(}{285} +\indexentry{plots!filled-area plot|)}{286} +\indexentry{plots!reference lines|(}{286} +\indexentry{plots!reference lines|)}{286} +\indexentry{grammar of graphics!various line and path geometries|)}{286} +\indexentry{grammar of graphics!column geometry|(}{286} +\indexentry{plots!column plot|(}{286} \indexentry{ggplot2@\textsf {`ggplot2'}}{287} \indexentry{packages!ggplot2@\textsf {`ggplot2'}}{287} -\indexentry{grammar of graphics!structure of plot objects|)}{288} -\indexentry{grammar of graphics!plots as R objects|)}{288} -\indexentry{grammar of graphics!mapping of data|(}{288} -\indexentry{grammar of graphics!aesthetics(}{288} -\indexentry{magrittr@\textsf {`magrittr'}}{289} -\indexentry{packages!magrittr@\textsf {`magrittr'}}{289} -\indexentry{wrapr@\textsf {`wrapr'}}{289} -\indexentry{packages!wrapr@\textsf {`wrapr'}}{289} -\indexentry{grammar of graphics!mapping of data!late}{289} -\indexentry{ggplot2@\textsf {`ggplot2'}}{289} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{289} -\indexentry{ggplot2@\textsf {`ggplot2'}}{289} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{289} -\indexentry{ggplot2@\textsf {`ggplot2'}}{289} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{289} +\indexentry{grammar of graphics!column geometry|)}{288} +\indexentry{plots!column plot|)}{288} +\indexentry{grammar of graphics!tile geometry|(}{288} +\indexentry{plots!tile plot|(}{288} +\indexentry{plots!tile plot|)}{289} +\indexentry{grammar of graphics!tile geometry|)}{289} +\indexentry{grammar of graphics!sf geometries|(}{290} +\indexentry{plots!maps and spatial plots|(}{290} \indexentry{ggplot2@\textsf {`ggplot2'}}{290} \indexentry{packages!ggplot2@\textsf {`ggplot2'}}{290} -\indexentry{grammar of graphics!mapping of data|)}{291} -\indexentry{grammar of graphics!aesthetics)}{291} -\indexentry{grammar of graphics!geometries|(}{291} +\indexentry{sf@\textsf {`sf'}}{290} +\indexentry{packages!sf@\textsf {`sf'}}{290} +\indexentry{grammar of graphics!sf geometries|)}{290} +\indexentry{plots!maps and spatial plots|)}{290} +\indexentry{grammar of graphics!text and label geometries|(}{290} +\indexentry{plots!text in|(}{290} +\indexentry{plots!maths in|(}{290} \indexentry{ggplot2@\textsf {`ggplot2'}}{291} \indexentry{packages!ggplot2@\textsf {`ggplot2'}}{291} +\indexentry{plots!fonts}{291} \indexentry{ggplot2@\textsf {`ggplot2'}}{291} \indexentry{packages!ggplot2@\textsf {`ggplot2'}}{291} -\indexentry{grammar of graphics!point geometry|(}{292} -\indexentry{plots!scatter plot|(}{292} -\indexentry{scales@\textsf {`scales'}}{293} -\indexentry{packages!scales@\textsf {`scales'}}{293} -\indexentry{plots!scatter plot|)}{294} -\indexentry{plots!dot plot|(}{294} -\indexentry{ggpp@\textsf {`ggpp'}}{295} -\indexentry{packages!ggpp@\textsf {`ggpp'}}{295} -\indexentry{plots!dot plot|)}{296} -\indexentry{plots!bubble plot|(}{296} -\indexentry{plots!bubble plot|)}{297} -\indexentry{grammar of graphics!point geometry|)}{298} -\indexentry{plots!rug marging|(}{298} -\indexentry{plots!rug marging|)}{298} -\indexentry{grammar of graphics!various line and path geometries|(}{298} -\indexentry{plots!line plot|(}{298} -\indexentry{plots!line plot|)}{299} -\indexentry{plots!step plot|(}{299} -\indexentry{plots!step plot|)}{299} -\indexentry{plots!filled-area plot|(}{300} -\indexentry{plots!filled-area plot|)}{300} -\indexentry{plots!reference lines|(}{300} -\indexentry{plots!reference lines|)}{301} -\indexentry{grammar of graphics!various line and path geometries|)}{301} -\indexentry{grammar of graphics!column geometry|(}{301} -\indexentry{plots!column plot|(}{301} +\indexentry{UNICODE}{291} +\indexentry{UTF8}{291} +\indexentry{portability}{291} +\indexentry{showtext@\textsf {`showtext'}}{291} +\indexentry{packages!showtext@\textsf {`showtext'}}{291} +\indexentry{extrafont@\textsf {`extrafont'}}{291} +\indexentry{packages!extrafont@\textsf {`extrafont'}}{291} +\indexentry{grammar of graphics!text and label geometries!repulsive}{294} +\indexentry{ggrepel@\textsf {`ggrepel'}}{294} +\indexentry{packages!ggrepel@\textsf {`ggrepel'}}{294} +\indexentry{plots!maths in|)}{294} +\indexentry{plots!text in|)}{294} +\indexentry{grammar of graphics!text and label geometries|)}{294} +\indexentry{grammar of graphics!inset-related geometries|(}{294} +\indexentry{plots!insets|(}{294} +\indexentry{ggplot2@\textsf {`ggplot2'}}{294} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{294} +\indexentry{ggpmisc@\textsf {`ggpmisc'}}{294} +\indexentry{packages!ggpmisc@\textsf {`ggpmisc'}}{294} +\indexentry{plots!inset tables|(}{295} +\indexentry{tibble@\textsf {`tibble'}}{295} +\indexentry{packages!tibble@\textsf {`tibble'}}{295} +\indexentry{tidyverse@\textsf {`tidyverse'}}{295} +\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{295} +\indexentry{gridExtra@\textsf {`gridExtra'}}{296} +\indexentry{packages!gridExtra@\textsf {`gridExtra'}}{296} +\indexentry{plots!inset tables|)}{296} +\indexentry{plots!inset plots|(}{296} +\indexentry{ggplot2@\textsf {`ggplot2'}}{297} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{297} +\indexentry{plots!inset plots|)}{297} +\indexentry{plots!inset graphical objects|(}{297} +\indexentry{grid@\textsf {`grid'}}{297} +\indexentry{packages!grid@\textsf {`grid'}}{297} +\indexentry{grid@\textsf {`grid'}}{297} +\indexentry{packages!grid@\textsf {`grid'}}{297} +\indexentry{plots!inset graphical objects|)}{298} +\indexentry{grid graphics coordinate systems}{298} +\indexentry{ggplot2@\textsf {`ggplot2'}}{298} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{298} +\indexentry{lattice@\textsf {`lattice'}}{298} +\indexentry{packages!lattice@\textsf {`lattice'}}{298} +\indexentry{ggplot2@\textsf {`ggplot2'}}{298} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{298} +\indexentry{ggpmisc@\textsf {`ggpmisc'}}{298} +\indexentry{packages!ggpmisc@\textsf {`ggpmisc'}}{298} +\indexentry{grammar of graphics!inset-related geometries|)}{299} +\indexentry{plots!insets|)}{299} +\indexentry{grammar of graphics!geometries|)}{299} +\indexentry{grammar of graphics!statistics|(}{299} +\indexentry{ggplot2@\textsf {`ggplot2'}}{299} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{299} +\indexentry{grammar of graphics!function statistic|(}{299} +\indexentry{plots!plots of functions|(}{299} +\indexentry{plots!plots of functions|)}{300} +\indexentry{grammar of graphics!function statistic|)}{300} +\indexentry{grammar of graphics!summary statistic|(}{300} +\indexentry{plots!data summaries|(}{300} +\indexentry{plots!means}{300} +\indexentry{plots!medians}{300} +\indexentry{plots!error bars}{300} \indexentry{ggplot2@\textsf {`ggplot2'}}{301} \indexentry{packages!ggplot2@\textsf {`ggplot2'}}{301} -\indexentry{grammar of graphics!column geometry|)}{303} -\indexentry{plots!column plot|)}{303} -\indexentry{grammar of graphics!tile geometry|(}{303} -\indexentry{plots!tile plot|(}{303} -\indexentry{plots!tile plot|)}{304} -\indexentry{grammar of graphics!tile geometry|)}{304} -\indexentry{grammar of graphics!sf geometries|(}{304} -\indexentry{plots!maps and spatial plots|(}{304} -\indexentry{ggplot2@\textsf {`ggplot2'}}{304} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{304} -\indexentry{sf@\textsf {`sf'}}{304} -\indexentry{packages!sf@\textsf {`sf'}}{304} -\indexentry{grammar of graphics!sf geometries|)}{305} -\indexentry{plots!maps and spatial plots|)}{305} -\indexentry{grammar of graphics!text and label geometries|(}{305} -\indexentry{plots!text in|(}{305} -\indexentry{plots!maths in|(}{305} -\indexentry{ggplot2@\textsf {`ggplot2'}}{306} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{306} -\indexentry{plots!fonts}{306} -\indexentry{ggplot2@\textsf {`ggplot2'}}{306} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{306} -\indexentry{UNICODE}{306} -\indexentry{UTF8}{306} -\indexentry{portability}{306} -\indexentry{showtext@\textsf {`showtext'}}{306} -\indexentry{packages!showtext@\textsf {`showtext'}}{306} -\indexentry{extrafont@\textsf {`extrafont'}}{306} -\indexentry{packages!extrafont@\textsf {`extrafont'}}{306} -\indexentry{grammar of graphics!text and label geometries!repulsive}{308} -\indexentry{ggrepel@\textsf {`ggrepel'}}{308} -\indexentry{packages!ggrepel@\textsf {`ggrepel'}}{308} -\indexentry{plots!maths in|)}{309} -\indexentry{plots!text in|)}{309} -\indexentry{grammar of graphics!text and label geometries|)}{309} -\indexentry{grammar of graphics!inset-related geometries|(}{309} -\indexentry{plots!insets|(}{309} -\indexentry{ggplot2@\textsf {`ggplot2'}}{309} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{309} -\indexentry{ggpmisc@\textsf {`ggpmisc'}}{309} -\indexentry{packages!ggpmisc@\textsf {`ggpmisc'}}{309} -\indexentry{plots!inset tables|(}{309} -\indexentry{tibble@\textsf {`tibble'}}{309} -\indexentry{packages!tibble@\textsf {`tibble'}}{309} -\indexentry{tidyverse@\textsf {`tidyverse'}}{309} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{309} -\indexentry{gridExtra@\textsf {`gridExtra'}}{311} -\indexentry{packages!gridExtra@\textsf {`gridExtra'}}{311} -\indexentry{plots!inset tables|)}{311} -\indexentry{plots!inset plots|(}{311} -\indexentry{ggplot2@\textsf {`ggplot2'}}{312} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{312} -\indexentry{plots!inset plots|)}{312} -\indexentry{plots!inset graphical objects|(}{312} -\indexentry{grid@\textsf {`grid'}}{312} -\indexentry{packages!grid@\textsf {`grid'}}{312} -\indexentry{grid@\textsf {`grid'}}{312} -\indexentry{packages!grid@\textsf {`grid'}}{312} -\indexentry{plots!inset graphical objects|)}{313} -\indexentry{grid graphics coordinate systems}{313} +\indexentry{Hmisc@\textsf {`Hmisc'}}{301} +\indexentry{packages!Hmisc@\textsf {`Hmisc'}}{301} +\indexentry{plots!data summaries|)}{303} +\indexentry{grammar of graphics!summary statistic|)}{303} +\indexentry{plots!smooth curves|(}{303} +\indexentry{plots!fitted curves|(}{303} +\indexentry{plots!statistics!smooth}{303} +\indexentry{self-starting functions}{305} +\indexentry{ggpmisc@\textsf {`ggpmisc'}}{305} +\indexentry{packages!ggpmisc@\textsf {`ggpmisc'}}{305} +\indexentry{ggpmisc@\textsf {`ggpmisc'}}{306} +\indexentry{packages!ggpmisc@\textsf {`ggpmisc'}}{306} +\indexentry{broom@\textsf {`broom'}}{306} +\indexentry{packages!broom@\textsf {`broom'}}{306} +\indexentry{plots!smooth curves|)}{306} +\indexentry{plots!fitted curves|)}{306} +\indexentry{plots!histograms|(}{306} +\indexentry{plots!histograms|)}{309} +\indexentry{plots!density plot!1 dimension|(}{309} +\indexentry{plots!statistics!density}{309} +\indexentry{plots!density plot!1 dimension|)}{309} +\indexentry{plots!density plot!2 dimensions|(}{309} +\indexentry{plots!statistics!density 2d}{309} +\indexentry{plots!density plot!2 dimensions|)}{310} +\indexentry{box plots|see{plots, box and whiskers plot}}{310} +\indexentry{plots!box and whiskers plot|(}{310} +\indexentry{plots!box and whiskers plot|)}{311} +\indexentry{plots!violin plot|(}{311} +\indexentry{ggbeeswarm@\textsf {`ggbeeswarm'}}{312} +\indexentry{packages!ggbeeswarm@\textsf {`ggbeeswarm'}}{312} +\indexentry{ggforce@\textsf {`ggforce'}}{312} +\indexentry{packages!ggforce@\textsf {`ggforce'}}{312} +\indexentry{plots!violin plot|)}{312} +\indexentry{grammar of graphics!statistics|)}{312} +\indexentry{grammar of graphics!flipped axes(}{312} +\indexentry{grammar of graphics!swap axes}{312} +\indexentry{grammar of graphics!orientation}{312} +\indexentry{grammar of graphics!horizontal geometries}{312} +\indexentry{grammar of graphics!horizontal statistics}{312} +\indexentry{ggplot2@\textsf {`ggplot2'}}{313} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{313} +\indexentry{ggstance@\textsf {`ggstance'}}{313} +\indexentry{packages!ggstance@\textsf {`ggstance'}}{313} +\indexentry{ggstance@\textsf {`ggstance'}}{313} +\indexentry{packages!ggstance@\textsf {`ggstance'}}{313} \indexentry{ggplot2@\textsf {`ggplot2'}}{313} \indexentry{packages!ggplot2@\textsf {`ggplot2'}}{313} -\indexentry{lattice@\textsf {`lattice'}}{313} -\indexentry{packages!lattice@\textsf {`lattice'}}{313} +\indexentry{ggstance@\textsf {`ggstance'}}{313} +\indexentry{packages!ggstance@\textsf {`ggstance'}}{313} \indexentry{ggplot2@\textsf {`ggplot2'}}{313} \indexentry{packages!ggplot2@\textsf {`ggplot2'}}{313} -\indexentry{ggpmisc@\textsf {`ggpmisc'}}{313} -\indexentry{packages!ggpmisc@\textsf {`ggpmisc'}}{313} -\indexentry{grammar of graphics!inset-related geometries|)}{313} -\indexentry{plots!insets|)}{313} -\indexentry{grammar of graphics!geometries|)}{313} -\indexentry{grammar of graphics!statistics|(}{314} -\indexentry{ggplot2@\textsf {`ggplot2'}}{314} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{314} -\indexentry{grammar of graphics!function statistic|(}{314} -\indexentry{plots!plots of functions|(}{314} -\indexentry{plots!plots of functions|)}{315} -\indexentry{grammar of graphics!function statistic|)}{315} -\indexentry{grammar of graphics!summary statistic|(}{315} -\indexentry{plots!data summaries|(}{315} -\indexentry{plots!means}{315} -\indexentry{plots!medians}{315} -\indexentry{plots!error bars}{315} -\indexentry{ggplot2@\textsf {`ggplot2'}}{316} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{316} -\indexentry{Hmisc@\textsf {`Hmisc'}}{316} -\indexentry{packages!Hmisc@\textsf {`Hmisc'}}{316} -\indexentry{plots!data summaries|)}{317} -\indexentry{grammar of graphics!summary statistic|)}{317} -\indexentry{plots!smooth curves|(}{317} -\indexentry{plots!fitted curves|(}{317} -\indexentry{plots!statistics!smooth}{317} -\indexentry{self-starting functions}{319} -\indexentry{ggpmisc@\textsf {`ggpmisc'}}{320} -\indexentry{packages!ggpmisc@\textsf {`ggpmisc'}}{320} -\indexentry{ggpmisc@\textsf {`ggpmisc'}}{321} -\indexentry{packages!ggpmisc@\textsf {`ggpmisc'}}{321} -\indexentry{broom@\textsf {`broom'}}{321} -\indexentry{packages!broom@\textsf {`broom'}}{321} -\indexentry{plots!smooth curves|)}{321} -\indexentry{plots!fitted curves|)}{321} -\indexentry{plots!histograms|(}{321} -\indexentry{plots!histograms|)}{324} -\indexentry{plots!density plot!1 dimension|(}{324} -\indexentry{plots!statistics!density}{324} -\indexentry{plots!density plot!1 dimension|)}{324} -\indexentry{plots!density plot!2 dimensions|(}{324} -\indexentry{plots!statistics!density 2d}{324} -\indexentry{plots!density plot!2 dimensions|)}{325} -\indexentry{box plots|see{plots, box and whiskers plot}}{325} -\indexentry{plots!box and whiskers plot|(}{325} -\indexentry{plots!box and whiskers plot|)}{326} -\indexentry{plots!violin plot|(}{326} -\indexentry{ggbeeswarm@\textsf {`ggbeeswarm'}}{327} -\indexentry{packages!ggbeeswarm@\textsf {`ggbeeswarm'}}{327} -\indexentry{ggforce@\textsf {`ggforce'}}{327} -\indexentry{packages!ggforce@\textsf {`ggforce'}}{327} -\indexentry{plots!violin plot|)}{327} -\indexentry{grammar of graphics!statistics|)}{327} -\indexentry{grammar of graphics!flipped axes(}{328} -\indexentry{grammar of graphics!swap axes}{328} -\indexentry{grammar of graphics!orientation}{328} -\indexentry{grammar of graphics!horizontal geometries}{328} -\indexentry{grammar of graphics!horizontal statistics}{328} -\indexentry{ggplot2@\textsf {`ggplot2'}}{328} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{328} -\indexentry{ggstance@\textsf {`ggstance'}}{328} -\indexentry{packages!ggstance@\textsf {`ggstance'}}{328} -\indexentry{ggstance@\textsf {`ggstance'}}{328} -\indexentry{packages!ggstance@\textsf {`ggstance'}}{328} -\indexentry{ggplot2@\textsf {`ggplot2'}}{328} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{328} -\indexentry{ggstance@\textsf {`ggstance'}}{328} -\indexentry{packages!ggstance@\textsf {`ggstance'}}{328} -\indexentry{ggplot2@\textsf {`ggplot2'}}{328} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{328} -\indexentry{ggstance@\textsf {`ggstance'}}{328} -\indexentry{packages!ggstance@\textsf {`ggstance'}}{328} -\indexentry{ggpmisc@\textsf {`ggpmisc'}}{332} -\indexentry{packages!ggpmisc@\textsf {`ggpmisc'}}{332} -\indexentry{ggplot2@\textsf {`ggplot2'}}{332} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{332} -\indexentry{plots!major axis regression}{333} -\indexentry{ggplot2@\textsf {`ggplot2'}}{333} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{333} -\indexentry{ggpmisc@\textsf {`ggpmisc'}}{333} -\indexentry{packages!ggpmisc@\textsf {`ggpmisc'}}{333} -\indexentry{grammar of graphics!flipped axes)}{334} -\indexentry{grammar of graphics!facets|(}{334} -\indexentry{plots!trellis-like}{334} -\indexentry{plots!coordinated panels}{334} -\indexentry{S@\textsf {S}}{334} -\indexentry{languages!S@\textsf {S}}{334} -\indexentry{lattice@\textsf {`lattice'}}{334} -\indexentry{packages!lattice@\textsf {`lattice'}}{334} -\indexentry{ggplot2@\textsf {`ggplot2'}}{334} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{334} -\indexentry{grammar of graphics!facets|)}{337} -\indexentry{grammar of graphics!scales|(}{337} -\indexentry{ggplot2@\textsf {`ggplot2'}}{338} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{338} -\indexentry{plots!labels|(}{338} -\indexentry{plots!title|(}{338} -\indexentry{plots!subtitle|(}{338} -\indexentry{plots!tag|(}{338} -\indexentry{plots!caption|(}{338} -\indexentry{plots!tag|)}{340} -\indexentry{plots!caption|)}{340} -\indexentry{plots!subtitle|)}{340} -\indexentry{plots!title|)}{340} -\indexentry{plots!labels|)}{340} -\indexentry{grammar of graphics!continuous scales|(}{340} -\indexentry{ggplot2@\textsf {`ggplot2'}}{342} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{342} -\indexentry{plots!scales!tick breaks}{342} -\indexentry{plots!scales!tick labels}{342} -\indexentry{scales@\textsf {`scales'}}{342} -\indexentry{packages!scales@\textsf {`scales'}}{342} -\indexentry{scales@\textsf {`scales'}}{343} -\indexentry{packages!scales@\textsf {`scales'}}{343} -\indexentry{plots!scales!transformations}{344} -\indexentry{plots!axis position}{345} -\indexentry{plots!secondary axes}{346} -\indexentry{grammar of graphics!continuous scales|)}{346} -\indexentry{grammar of graphics!time and date scales|(}{346} -\indexentry{lubridate@\textsf {`lubridate'}}{346} -\indexentry{packages!lubridate@\textsf {`lubridate'}}{346} -\indexentry{anytime@\textsf {`anytime'}}{346} -\indexentry{packages!anytime@\textsf {`anytime'}}{346} -\indexentry{plots!scales!axis labels}{347} -\indexentry{grammar of graphics!time and date scales|)}{348} -\indexentry{grammar of graphics!discrete scales|(}{348} -\indexentry{plots!scales!limits}{348} -\indexentry{grammar of graphics!discrete scales|)}{349} -\indexentry{grammar of graphics!size scales|(}{349} -\indexentry{grammar of graphics!size scales|)}{349} -\indexentry{grammar of graphics!color and fill scales|(}{349} -\indexentry{plots!with colors|(}{349} -\indexentry{color!definitions|(}{350} -\indexentry{color!names}{350} -\indexentry{ggplot2@\textsf {`ggplot2'}}{351} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{351} -\indexentry{color!definitions|)}{351} -\indexentry{grammar of graphics!binned scales|(}{352} -\indexentry{ggplot2@\textsf {`ggplot2'}}{352} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{352} -\indexentry{grammar of graphics!binned scales|)}{353} -\indexentry{grammar of graphics!identity color scales|(}{353} -\indexentry{grammar of graphics!identity color scales|)}{353} -\indexentry{plots!with colors|)}{353} -\indexentry{grammar of graphics!color and fill scales|)}{353} -\indexentry{grammar of graphics!scales|)}{353} -\indexentry{grammar of graphics!annotations|(}{353} -\indexentry{plots!insets as annotations|(}{354} -\indexentry{grid@\textsf {`grid'}}{354} -\indexentry{packages!grid@\textsf {`grid'}}{354} -\indexentry{plots!insets as annotations|)}{355} -\indexentry{grammar of graphics!annotations|)}{356} -\indexentry{grammar of graphics!polar coordinates|(}{356} -\indexentry{plots!circular|(}{356} -\indexentry{ggplot2@\textsf {`ggplot2'}}{356} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{356} -\indexentry{plots!wind rose|(}{356} -\indexentry{learnrbook@\textsf {`learnrbook'}}{356} -\indexentry{packages!learnrbook@\textsf {`learnrbook'}}{356} -\indexentry{plots!wind rose|)}{358} -\indexentry{plots!pie charts|(}{358} -\indexentry{plots!pie charts|)}{358} -\indexentry{plots!circular|)}{358} -\indexentry{grammar of graphics!polar coordinates|)}{358} -\indexentry{grammar of graphics!themes|(}{359} -\indexentry{plots!styling|(}{359} -\indexentry{ggplot2@\textsf {`ggplot2'}}{359} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{359} -\indexentry{ggplot2@\textsf {`ggplot2'}}{359} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{359} -\indexentry{ggplot2@\textsf {`ggplot2'}}{359} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{359} -\indexentry{grammar of graphics!complete themes|(}{359} -\indexentry{ggplot2@\textsf {`ggplot2'}}{360} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{360} -\indexentry{grammar of graphics!complete themes|)}{361} -\indexentry{grammar of graphics!incomplete themes|(}{361} -\indexentry{grammar of graphics!incomplete themes|)}{362} -\indexentry{grammar of graphics!creating a theme|(}{362} -\indexentry{ggplot2@\textsf {`ggplot2'}}{363} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{363} -\indexentry{ggplot2@\textsf {`ggplot2'}}{363} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{363} -\indexentry{ggplot2@\textsf {`ggplot2'}}{363} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{363} -\indexentry{ggplot2@\textsf {`ggplot2'}}{364} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{364} -\indexentry{ggplot2@\textsf {`ggplot2'}}{364} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{364} -\indexentry{ggplot2@\textsf {`ggplot2'}}{364} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{364} -\indexentry{ggplot2@\textsf {`ggplot2'}}{364} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{364} -\indexentry{grammar of graphics!creating a theme|)}{364} -\indexentry{plots!styling|)}{364} -\indexentry{grammar of graphics!themes|)}{364} -\indexentry{plots!composing|(}{364} -\indexentry{patchwork@\textsf {`patchwork'}}{364} -\indexentry{packages!patchwork@\textsf {`patchwork'}}{364} -\indexentry{ggplot2@\textsf {`ggplot2'}}{364} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{364} -\indexentry{patchwork@\textsf {`patchwork'}}{364} -\indexentry{packages!patchwork@\textsf {`patchwork'}}{364} -\indexentry{patchwork@\textsf {`patchwork'}}{365} -\indexentry{packages!patchwork@\textsf {`patchwork'}}{365} -\indexentry{plots!composing|)}{365} -\indexentry{plotmath}{366} -\indexentry{plots!math expressions|(}{366} -\indexentry{ggplot2@\textsf {`ggplot2'}}{366} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{366} -\indexentry{C@\textsf {C}}{369} -\indexentry{languages!C@\textsf {C}}{369} -\indexentry{C++@\textsf {C++}}{369} -\indexentry{languages!C++@\textsf {C++}}{369} -\indexentry{ggtext@\textsf {`ggtext'}}{370} -\indexentry{packages!ggtext@\textsf {`ggtext'}}{370} -\indexentry{CRAN@\textsf {CRAN}}{370} -\indexentry{HTML@\textsf {HTML}}{370} -\indexentry{languages!HTML@\textsf {HTML}}{370} -\indexentry{Markdown@\textsf {Markdown}}{370} -\indexentry{languages!Markdown@\textsf {Markdown}}{370} -\indexentry{ggplot2@\textsf {`ggplot2'}}{370} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{370} -\indexentry{plots!math expressions|)}{370} -\indexentry{plots!modular construction|(}{370} -\indexentry{grammar of graphics}{370} -\indexentry{plots!layers}{370} -\indexentry{plots!consistent styling}{371} -\indexentry{plots!programatic construction|(}{371} -\indexentry{ggplot2@\textsf {`ggplot2'}}{371} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{371} -\indexentry{plots!reusing parts of}{371} -\indexentry{plots!programatic construction|)}{373} -\indexentry{plots!modular construction|)}{373} -\indexentry{devices!output|see{graphic output devices}}{373} -\indexentry{plots!saving to file|see{plots, rendering}}{373} -\indexentry{graphic output devices|(}{373} -\indexentry{plots!rendering|(}{373} -\indexentry{RStudio@\textsf {RStudio}}{373} -\indexentry{programmes!RStudio@\textsf {RStudio}}{373} -\indexentry{plots!printing}{373} -\indexentry{plots!saving}{373} -\indexentry{plots!output to files}{373} -\indexentry{RStudio@\textsf {RStudio}}{373} -\indexentry{programmes!RStudio@\textsf {RStudio}}{373} -\indexentry{plots!PDF output}{373} -\indexentry{plots!Postscript output}{373} -\indexentry{plots!SVG output}{373} -\indexentry{plots!bitmap output}{373} -\indexentry{plots!rendering|)}{373} -\indexentry{graphic output devices|)}{373} -\indexentry{further reading!grammar of graphics}{374} -\indexentry{further reading!plotting}{374} -\indexentry{ggplot2@\textsf {`ggplot2'}}{374} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{374} -\indexentry{ggplot2@\textsf {`ggplot2'}}{374} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{374} -\indexentry{foreign@\textsf {`foreign'}}{375} -\indexentry{packages!foreign@\textsf {`foreign'}}{375} -\indexentry{learnrbook@\textsf {`learnrbook'}}{377} -\indexentry{packages!learnrbook@\textsf {`learnrbook'}}{377} -\indexentry{file names!portable}{377} -\indexentry{file operations|(}{377} -\indexentry{file names!script portability}{377} -\indexentry{file paths!script portability}{378} -\indexentry{folders|see{file paths}}{378} -\indexentry{file paths!parsing|(}{378} -\indexentry{Unix@\textsf {Unix}}{378} -\indexentry{programmes!Unix@\textsf {Unix}}{378} -\indexentry{Linux@\textsf {Linux}}{378} -\indexentry{programmes!Linux@\textsf {Linux}}{378} -\indexentry{MS-Windows@\textsf {MS-Windows}}{378} -\indexentry{programmes!MS-Windows@\textsf {MS-Windows}}{378} -\indexentry{file paths!parsing|)}{378} -\indexentry{working directory|(}{378} -\indexentry{working directory|)}{379} -\indexentry{listing files or directories|(}{379} -\indexentry{listing files or directories|)}{379} -\indexentry{file operations|)}{380} -\indexentry{C@\textsf {C}}{380} -\indexentry{languages!C@\textsf {C}}{380} -\indexentry{importing data!text files|(}{381} -\indexentry{readr@\textsf {`readr'}}{381} -\indexentry{packages!readr@\textsf {`readr'}}{381} -\indexentry{readr@\textsf {`readr'}}{381} -\indexentry{packages!readr@\textsf {`readr'}}{381} +\indexentry{ggstance@\textsf {`ggstance'}}{313} +\indexentry{packages!ggstance@\textsf {`ggstance'}}{313} +\indexentry{ggpmisc@\textsf {`ggpmisc'}}{317} +\indexentry{packages!ggpmisc@\textsf {`ggpmisc'}}{317} +\indexentry{ggplot2@\textsf {`ggplot2'}}{317} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{317} +\indexentry{plots!major axis regression}{317} +\indexentry{ggplot2@\textsf {`ggplot2'}}{318} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{318} +\indexentry{ggpmisc@\textsf {`ggpmisc'}}{318} +\indexentry{packages!ggpmisc@\textsf {`ggpmisc'}}{318} +\indexentry{grammar of graphics!flipped axes)}{319} +\indexentry{grammar of graphics!facets|(}{319} +\indexentry{plots!trellis-like}{319} +\indexentry{plots!coordinated panels}{319} +\indexentry{S@\textsf {S}}{319} +\indexentry{languages!S@\textsf {S}}{319} +\indexentry{lattice@\textsf {`lattice'}}{319} +\indexentry{packages!lattice@\textsf {`lattice'}}{319} +\indexentry{ggplot2@\textsf {`ggplot2'}}{319} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{319} +\indexentry{grammar of graphics!facets|)}{322} +\indexentry{grammar of graphics!scales|(}{322} +\indexentry{ggplot2@\textsf {`ggplot2'}}{323} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{323} +\indexentry{plots!labels|(}{323} +\indexentry{plots!title|(}{323} +\indexentry{plots!subtitle|(}{323} +\indexentry{plots!tag|(}{323} +\indexentry{plots!caption|(}{323} +\indexentry{plots!tag|)}{325} +\indexentry{plots!caption|)}{325} +\indexentry{plots!subtitle|)}{325} +\indexentry{plots!title|)}{325} +\indexentry{plots!labels|)}{325} +\indexentry{grammar of graphics!continuous scales|(}{325} +\indexentry{ggplot2@\textsf {`ggplot2'}}{326} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{326} +\indexentry{plots!scales!tick breaks}{327} +\indexentry{plots!scales!tick labels}{327} +\indexentry{scales@\textsf {`scales'}}{327} +\indexentry{packages!scales@\textsf {`scales'}}{327} +\indexentry{scales@\textsf {`scales'}}{328} +\indexentry{packages!scales@\textsf {`scales'}}{328} +\indexentry{plots!scales!transformations}{329} +\indexentry{plots!axis position}{330} +\indexentry{plots!secondary axes}{330} +\indexentry{grammar of graphics!continuous scales|)}{330} +\indexentry{grammar of graphics!time and date scales|(}{331} +\indexentry{lubridate@\textsf {`lubridate'}}{331} +\indexentry{packages!lubridate@\textsf {`lubridate'}}{331} +\indexentry{anytime@\textsf {`anytime'}}{331} +\indexentry{packages!anytime@\textsf {`anytime'}}{331} +\indexentry{plots!scales!axis labels}{331} +\indexentry{grammar of graphics!time and date scales|)}{332} +\indexentry{grammar of graphics!discrete scales|(}{332} +\indexentry{plots!scales!limits}{332} +\indexentry{grammar of graphics!discrete scales|)}{333} +\indexentry{grammar of graphics!size scales|(}{333} +\indexentry{grammar of graphics!size scales|)}{333} +\indexentry{grammar of graphics!color and fill scales|(}{333} +\indexentry{plots!with colors|(}{333} +\indexentry{color!definitions|(}{334} +\indexentry{color!names}{334} +\indexentry{ggplot2@\textsf {`ggplot2'}}{335} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{335} +\indexentry{color!definitions|)}{335} +\indexentry{grammar of graphics!binned scales|(}{336} +\indexentry{ggplot2@\textsf {`ggplot2'}}{336} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{336} +\indexentry{grammar of graphics!binned scales|)}{336} +\indexentry{grammar of graphics!identity color scales|(}{337} +\indexentry{grammar of graphics!identity color scales|)}{337} +\indexentry{plots!with colors|)}{337} +\indexentry{grammar of graphics!color and fill scales|)}{337} +\indexentry{grammar of graphics!scales|)}{337} +\indexentry{grammar of graphics!annotations|(}{337} +\indexentry{plots!insets as annotations|(}{338} +\indexentry{grid@\textsf {`grid'}}{338} +\indexentry{packages!grid@\textsf {`grid'}}{338} +\indexentry{plots!insets as annotations|)}{339} +\indexentry{grammar of graphics!annotations|)}{340} +\indexentry{grammar of graphics!polar coordinates|(}{340} +\indexentry{plots!circular|(}{340} +\indexentry{ggplot2@\textsf {`ggplot2'}}{340} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{340} +\indexentry{plots!wind rose|(}{340} +\indexentry{learnrbook@\textsf {`learnrbook'}}{340} +\indexentry{packages!learnrbook@\textsf {`learnrbook'}}{340} +\indexentry{plots!wind rose|)}{342} +\indexentry{plots!pie charts|(}{342} +\indexentry{plots!pie charts|)}{342} +\indexentry{plots!circular|)}{342} +\indexentry{grammar of graphics!polar coordinates|)}{342} +\indexentry{grammar of graphics!themes|(}{343} +\indexentry{plots!styling|(}{343} +\indexentry{ggplot2@\textsf {`ggplot2'}}{343} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{343} +\indexentry{ggplot2@\textsf {`ggplot2'}}{343} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{343} +\indexentry{ggplot2@\textsf {`ggplot2'}}{343} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{343} +\indexentry{grammar of graphics!complete themes|(}{343} +\indexentry{ggplot2@\textsf {`ggplot2'}}{344} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{344} +\indexentry{grammar of graphics!complete themes|)}{345} +\indexentry{grammar of graphics!incomplete themes|(}{345} +\indexentry{grammar of graphics!incomplete themes|)}{346} +\indexentry{grammar of graphics!creating a theme|(}{346} +\indexentry{ggplot2@\textsf {`ggplot2'}}{347} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{347} +\indexentry{ggplot2@\textsf {`ggplot2'}}{347} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{347} +\indexentry{ggplot2@\textsf {`ggplot2'}}{347} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{347} +\indexentry{ggplot2@\textsf {`ggplot2'}}{347} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{347} +\indexentry{ggplot2@\textsf {`ggplot2'}}{347} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{347} +\indexentry{ggplot2@\textsf {`ggplot2'}}{347} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{347} +\indexentry{ggplot2@\textsf {`ggplot2'}}{347} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{347} +\indexentry{grammar of graphics!creating a theme|)}{348} +\indexentry{plots!styling|)}{348} +\indexentry{grammar of graphics!themes|)}{348} +\indexentry{plots!composing|(}{348} +\indexentry{patchwork@\textsf {`patchwork'}}{348} +\indexentry{packages!patchwork@\textsf {`patchwork'}}{348} +\indexentry{ggplot2@\textsf {`ggplot2'}}{348} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{348} +\indexentry{patchwork@\textsf {`patchwork'}}{348} +\indexentry{packages!patchwork@\textsf {`patchwork'}}{348} +\indexentry{patchwork@\textsf {`patchwork'}}{349} +\indexentry{packages!patchwork@\textsf {`patchwork'}}{349} +\indexentry{plots!composing|)}{349} +\indexentry{plotmath}{349} +\indexentry{plots!math expressions|(}{349} +\indexentry{ggplot2@\textsf {`ggplot2'}}{349} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{349} +\indexentry{C@\textsf {C}}{353} +\indexentry{languages!C@\textsf {C}}{353} +\indexentry{C++@\textsf {C++}}{353} +\indexentry{languages!C++@\textsf {C++}}{353} +\indexentry{ggtext@\textsf {`ggtext'}}{354} +\indexentry{packages!ggtext@\textsf {`ggtext'}}{354} +\indexentry{CRAN@\textsf {CRAN}}{354} +\indexentry{HTML@\textsf {HTML}}{354} +\indexentry{languages!HTML@\textsf {HTML}}{354} +\indexentry{Markdown@\textsf {Markdown}}{354} +\indexentry{languages!Markdown@\textsf {Markdown}}{354} +\indexentry{ggplot2@\textsf {`ggplot2'}}{354} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{354} +\indexentry{plots!math expressions|)}{354} +\indexentry{plots!modular construction|(}{354} +\indexentry{grammar of graphics}{354} +\indexentry{plots!layers}{354} +\indexentry{plots!consistent styling}{355} +\indexentry{plots!programatic construction|(}{355} +\indexentry{ggplot2@\textsf {`ggplot2'}}{355} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{355} +\indexentry{plots!reusing parts of}{355} +\indexentry{plots!programatic construction|)}{356} +\indexentry{plots!modular construction|)}{356} +\indexentry{devices!output|see{graphic output devices}}{356} +\indexentry{plots!saving to file|see{plots, rendering}}{356} +\indexentry{graphic output devices|(}{356} +\indexentry{plots!rendering|(}{356} +\indexentry{RStudio@\textsf {RStudio}}{356} +\indexentry{programmes!RStudio@\textsf {RStudio}}{356} +\indexentry{plots!printing}{356} +\indexentry{plots!saving}{356} +\indexentry{plots!output to files}{356} +\indexentry{RStudio@\textsf {RStudio}}{356} +\indexentry{programmes!RStudio@\textsf {RStudio}}{356} +\indexentry{plots!PDF output}{357} +\indexentry{plots!Postscript output}{357} +\indexentry{plots!SVG output}{357} +\indexentry{plots!bitmap output}{357} +\indexentry{plots!rendering|)}{357} +\indexentry{graphic output devices|)}{357} +\indexentry{further reading!grammar of graphics}{357} +\indexentry{further reading!plotting}{357} +\indexentry{ggplot2@\textsf {`ggplot2'}}{357} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{357} +\indexentry{ggplot2@\textsf {`ggplot2'}}{357} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{357} +\indexentry{foreign@\textsf {`foreign'}}{359} +\indexentry{packages!foreign@\textsf {`foreign'}}{359} +\indexentry{learnrbook@\textsf {`learnrbook'}}{361} +\indexentry{packages!learnrbook@\textsf {`learnrbook'}}{361} +\indexentry{file names!portable}{361} +\indexentry{file operations|(}{361} +\indexentry{file names!script portability}{361} +\indexentry{file paths!script portability}{362} +\indexentry{folders|see{file paths}}{362} +\indexentry{file paths!parsing|(}{362} +\indexentry{Unix@\textsf {Unix}}{362} +\indexentry{programmes!Unix@\textsf {Unix}}{362} +\indexentry{Linux@\textsf {Linux}}{362} +\indexentry{programmes!Linux@\textsf {Linux}}{362} +\indexentry{MS-Windows@\textsf {MS-Windows}}{362} +\indexentry{programmes!MS-Windows@\textsf {MS-Windows}}{362} +\indexentry{file paths!parsing|)}{362} +\indexentry{working directory|(}{362} +\indexentry{working directory|)}{362} +\indexentry{listing files or directories|(}{362} +\indexentry{listing files or directories|)}{363} +\indexentry{file operations|)}{364} +\indexentry{C@\textsf {C}}{364} +\indexentry{languages!C@\textsf {C}}{364} +\indexentry{importing data!text files|(}{364} +\indexentry{readr@\textsf {`readr'}}{365} +\indexentry{packages!readr@\textsf {`readr'}}{365} +\indexentry{readr@\textsf {`readr'}}{365} +\indexentry{packages!readr@\textsf {`readr'}}{365} +\indexentry{MS-Excel@\textsf {MS-Excel}}{366} +\indexentry{programmes!MS-Excel@\textsf {MS-Excel}}{366} +\indexentry{tools@\textsf {`tools'}}{366} +\indexentry{packages!tools@\textsf {`tools'}}{366} +\indexentry{utils@\textsf {`utils'}}{366} +\indexentry{packages!utils@\textsf {`utils'}}{366} +\indexentry{text files!with field markers}{366} +\indexentry{FORTRAN@\textsf {FORTRAN}}{366} +\indexentry{languages!FORTRAN@\textsf {FORTRAN}}{366} +\indexentry{COBOL@\textsf {COBOL}}{366} +\indexentry{languages!COBOL@\textsf {COBOL}}{366} +\indexentry{text files!fixed width fields}{368} +\indexentry{FORTRAN@\textsf {FORTRAN}}{368} +\indexentry{languages!FORTRAN@\textsf {FORTRAN}}{368} +\indexentry{FORTRAN@\textsf {FORTRAN}}{368} +\indexentry{languages!FORTRAN@\textsf {FORTRAN}}{368} +\indexentry{FORTRAN@\textsf {FORTRAN}}{368} +\indexentry{languages!FORTRAN@\textsf {FORTRAN}}{368} +\indexentry{importing data!text files|)}{369} +\indexentry{exporting data!text files|(}{369} +\indexentry{exporting data!text files|)}{370} +\indexentry{readr@\textsf {`readr'}}{370} +\indexentry{packages!readr@\textsf {`readr'}}{370} +\indexentry{importing data!text files|(}{370} +\indexentry{readr@\textsf {`readr'}}{370} +\indexentry{packages!readr@\textsf {`readr'}}{370} +\indexentry{tidyverse@\textsf {`tidyverse'}}{370} +\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{370} +\indexentry{readr@\textsf {`readr'}}{370} +\indexentry{packages!readr@\textsf {`readr'}}{370} +\indexentry{readr@\textsf {`readr'}}{370} +\indexentry{packages!readr@\textsf {`readr'}}{370} +\indexentry{readr@\textsf {`readr'}}{370} +\indexentry{packages!readr@\textsf {`readr'}}{370} +\indexentry{readr@\textsf {`readr'}}{370} +\indexentry{packages!readr@\textsf {`readr'}}{370} +\indexentry{readr@\textsf {`readr'}}{370} +\indexentry{packages!readr@\textsf {`readr'}}{370} +\indexentry{readr@\textsf {`readr'}}{371} +\indexentry{packages!readr@\textsf {`readr'}}{371} +\indexentry{utils@\textsf {`utils'}}{373} +\indexentry{packages!utils@\textsf {`utils'}}{373} +\indexentry{readr@\textsf {`readr'}}{373} +\indexentry{packages!readr@\textsf {`readr'}}{373} +\indexentry{utils@\textsf {`utils'}}{373} +\indexentry{packages!utils@\textsf {`utils'}}{373} +\indexentry{readr@\textsf {`readr'}}{373} +\indexentry{packages!readr@\textsf {`readr'}}{373} +\indexentry{readr@\textsf {`readr'}}{373} +\indexentry{packages!readr@\textsf {`readr'}}{373} +\indexentry{utils@\textsf {`utils'}}{373} +\indexentry{packages!utils@\textsf {`utils'}}{373} +\indexentry{importing data!text files|)}{374} +\indexentry{exporting data!text files|(}{374} +\indexentry{readr@\textsf {`readr'}}{374} +\indexentry{packages!readr@\textsf {`readr'}}{374} +\indexentry{utils@\textsf {`utils'}}{374} +\indexentry{packages!utils@\textsf {`utils'}}{374} +\indexentry{readr@\textsf {`readr'}}{374} +\indexentry{packages!readr@\textsf {`readr'}}{374} +\indexentry{MS-Excel@\textsf {MS-Excel}}{374} +\indexentry{programmes!MS-Excel@\textsf {MS-Excel}}{374} +\indexentry{MS-Excel@\textsf {MS-Excel}}{374} +\indexentry{programmes!MS-Excel@\textsf {MS-Excel}}{374} +\indexentry{exporting data!text files|)}{375} +\indexentry{importing data!XML and HTML files|(}{375} +\indexentry{XML@\textsf {XML}}{375} +\indexentry{languages!XML@\textsf {XML}}{375} +\indexentry{XHTML@\textsf {XHTML}}{375} +\indexentry{languages!XHTML@\textsf {XHTML}}{375} +\indexentry{HTML@\textsf {HTML}}{375} +\indexentry{languages!HTML@\textsf {HTML}}{375} +\indexentry{xml2@\textsf {`xml2'}}{375} +\indexentry{packages!xml2@\textsf {`xml2'}}{375} +\indexentry{xml2@\textsf {`xml2'}}{375} +\indexentry{packages!xml2@\textsf {`xml2'}}{375} +\indexentry{XTML@\textsf {XTML}}{375} +\indexentry{languages!XTML@\textsf {XTML}}{375} +\indexentry{HTML@\textsf {HTML}}{375} +\indexentry{languages!HTML@\textsf {HTML}}{375} +\indexentry{XML@\textsf {XML}}{378} +\indexentry{languages!XML@\textsf {XML}}{378} +\indexentry{importing data!XML and HTML files|)}{378} +\indexentry{importing data!GPX files|(}{379} +\indexentry{sf@\textsf {`sf'}}{379} +\indexentry{packages!sf@\textsf {`sf'}}{379} +\indexentry{importing data!GPX files|)}{379} +\indexentry{importing data!worksheets and workbooks|(}{379} +\indexentry{MS-Excel@\textsf {MS-Excel}}{379} +\indexentry{programmes!MS-Excel@\textsf {MS-Excel}}{379} +\indexentry{MS-Excel@\textsf {MS-Excel}}{379} +\indexentry{programmes!MS-Excel@\textsf {MS-Excel}}{379} +\indexentry{MS-Excel@\textsf {MS-Excel}}{379} +\indexentry{programmes!MS-Excel@\textsf {MS-Excel}}{379} +\indexentry{Excel@\textsf {Excel}}{380} +\indexentry{programmes!Excel@\textsf {Excel}}{380} +\indexentry{readr@\textsf {`readr'}}{380} +\indexentry{packages!readr@\textsf {`readr'}}{380} +\indexentry{RStudio@\textsf {RStudio}}{380} +\indexentry{programmes!RStudio@\textsf {RStudio}}{380} +\indexentry{Notepad@\textsf {Notepad}}{380} +\indexentry{programmes!Notepad@\textsf {Notepad}}{380} +\indexentry{Nano@\textsf {Nano}}{380} +\indexentry{programmes!Nano@\textsf {Nano}}{380} +\indexentry{Emacs@\textsf {Emacs}}{380} +\indexentry{programmes!Emacs@\textsf {Emacs}}{380} +\indexentry{readxl@\textsf {`readxl'}}{381} +\indexentry{packages!readxl@\textsf {`readxl'}}{381} +\indexentry{importing data!.xlsx files|(}{381} +\indexentry{readxl@\textsf {`readxl'}}{381} +\indexentry{packages!readxl@\textsf {`readxl'}}{381} +\indexentry{MS-Excel@\textsf {MS-Excel}}{381} +\indexentry{programmes!MS-Excel@\textsf {MS-Excel}}{381} +\indexentry{MS-Excel@\textsf {MS-Excel}}{381} +\indexentry{programmes!MS-Excel@\textsf {MS-Excel}}{381} +\indexentry{MS-Excel@\textsf {MS-Excel}}{381} +\indexentry{programmes!MS-Excel@\textsf {MS-Excel}}{381} +\indexentry{tidyverse@\textsf {`tidyverse'}}{381} +\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{381} +\indexentry{readr@\textsf {`readr'}}{382} +\indexentry{packages!readr@\textsf {`readr'}}{382} +\indexentry{xlsx@\textsf {`xlsx'}}{382} +\indexentry{packages!xlsx@\textsf {`xlsx'}}{382} +\indexentry{xlsx@\textsf {`xlsx'}}{382} +\indexentry{packages!xlsx@\textsf {`xlsx'}}{382} \indexentry{MS-Excel@\textsf {MS-Excel}}{382} \indexentry{programmes!MS-Excel@\textsf {MS-Excel}}{382} -\indexentry{tools@\textsf {`tools'}}{382} -\indexentry{packages!tools@\textsf {`tools'}}{382} -\indexentry{utils@\textsf {`utils'}}{382} -\indexentry{packages!utils@\textsf {`utils'}}{382} -\indexentry{text files!with field markers}{382} -\indexentry{FORTRAN@\textsf {FORTRAN}}{382} -\indexentry{languages!FORTRAN@\textsf {FORTRAN}}{382} -\indexentry{COBOL@\textsf {COBOL}}{382} -\indexentry{languages!COBOL@\textsf {COBOL}}{382} -\indexentry{text files!fixed width fields}{385} -\indexentry{FORTRAN@\textsf {FORTRAN}}{385} -\indexentry{languages!FORTRAN@\textsf {FORTRAN}}{385} -\indexentry{FORTRAN@\textsf {FORTRAN}}{385} -\indexentry{languages!FORTRAN@\textsf {FORTRAN}}{385} -\indexentry{FORTRAN@\textsf {FORTRAN}}{385} -\indexentry{languages!FORTRAN@\textsf {FORTRAN}}{385} -\indexentry{importing data!text files|)}{386} -\indexentry{exporting data!text files|(}{386} -\indexentry{exporting data!text files|)}{387} -\indexentry{readr@\textsf {`readr'}}{387} -\indexentry{packages!readr@\textsf {`readr'}}{387} -\indexentry{importing data!text files|(}{387} -\indexentry{readr@\textsf {`readr'}}{387} -\indexentry{packages!readr@\textsf {`readr'}}{387} -\indexentry{tidyverse@\textsf {`tidyverse'}}{387} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{387} -\indexentry{readr@\textsf {`readr'}}{387} -\indexentry{packages!readr@\textsf {`readr'}}{387} -\indexentry{readr@\textsf {`readr'}}{387} -\indexentry{packages!readr@\textsf {`readr'}}{387} -\indexentry{readr@\textsf {`readr'}}{387} -\indexentry{packages!readr@\textsf {`readr'}}{387} -\indexentry{readr@\textsf {`readr'}}{387} -\indexentry{packages!readr@\textsf {`readr'}}{387} -\indexentry{readr@\textsf {`readr'}}{387} -\indexentry{packages!readr@\textsf {`readr'}}{387} -\indexentry{readr@\textsf {`readr'}}{388} -\indexentry{packages!readr@\textsf {`readr'}}{388} -\indexentry{utils@\textsf {`utils'}}{390} -\indexentry{packages!utils@\textsf {`utils'}}{390} -\indexentry{readr@\textsf {`readr'}}{390} -\indexentry{packages!readr@\textsf {`readr'}}{390} -\indexentry{utils@\textsf {`utils'}}{390} -\indexentry{packages!utils@\textsf {`utils'}}{390} -\indexentry{readr@\textsf {`readr'}}{390} -\indexentry{packages!readr@\textsf {`readr'}}{390} +\indexentry{readr@\textsf {`readr'}}{382} +\indexentry{packages!readr@\textsf {`readr'}}{382} +\indexentry{importing data!.xlsx files|)}{383} +\indexentry{readODS@\textsf {`readODS'}}{383} +\indexentry{packages!readODS@\textsf {`readODS'}}{383} +\indexentry{importing data!.ods files|(}{383} +\indexentry{readODS@\textsf {`readODS'}}{383} +\indexentry{packages!readODS@\textsf {`readODS'}}{383} +\indexentry{importing data!.ods files|)}{384} +\indexentry{importing data!worksheets and workbooks|)}{384} +\indexentry{importing data!other statistical software|(}{384} +\indexentry{foreign@\textsf {`foreign'}}{384} +\indexentry{packages!foreign@\textsf {`foreign'}}{384} +\indexentry{haven@\textsf {`haven'}}{384} +\indexentry{packages!haven@\textsf {`haven'}}{384} +\indexentry{foreign@\textsf {`foreign'}}{384} +\indexentry{packages!foreign@\textsf {`foreign'}}{384} +\indexentry{haven@\textsf {`haven'}}{384} +\indexentry{packages!haven@\textsf {`haven'}}{384} +\indexentry{foreign@\textsf {`foreign'}}{384} +\indexentry{packages!foreign@\textsf {`foreign'}}{384} +\indexentry{foreign@\textsf {`foreign'}}{384} +\indexentry{packages!foreign@\textsf {`foreign'}}{384} +\indexentry{SAS@\textsf {SAS}}{384} +\indexentry{programmes!SAS@\textsf {SAS}}{384} +\indexentry{Stata@\textsf {Stata}}{384} +\indexentry{programmes!Stata@\textsf {Stata}}{384} +\indexentry{SPSS@\textsf {SPSS}}{384} +\indexentry{programmes!SPSS@\textsf {SPSS}}{384} +\indexentry{Systat@\textsf {Systat}}{384} +\indexentry{programmes!Systat@\textsf {Systat}}{384} +\indexentry{Octave@\textsf {Octave}}{384} +\indexentry{programmes!Octave@\textsf {Octave}}{384} +\indexentry{SAS@\textsf {SAS}}{384} +\indexentry{programmes!SAS@\textsf {SAS}}{384} +\indexentry{Stata@\textsf {Stata}}{384} +\indexentry{programmes!Stata@\textsf {Stata}}{384} +\indexentry{SPSS@\textsf {SPSS}}{384} +\indexentry{programmes!SPSS@\textsf {SPSS}}{384} +\indexentry{SPSS@\textsf {SPSS}}{384} +\indexentry{programmes!SPSS@\textsf {SPSS}}{384} +\indexentry{Systat@\textsf {Systat}}{384} +\indexentry{programmes!Systat@\textsf {Systat}}{384} +\indexentry{foreign@\textsf {`foreign'}}{385} +\indexentry{packages!foreign@\textsf {`foreign'}}{385} +\indexentry{haven@\textsf {`haven'}}{385} +\indexentry{packages!haven@\textsf {`haven'}}{385} +\indexentry{haven@\textsf {`haven'}}{385} +\indexentry{packages!haven@\textsf {`haven'}}{385} +\indexentry{SAS@\textsf {SAS}}{385} +\indexentry{programmes!SAS@\textsf {SAS}}{385} +\indexentry{Stata@\textsf {Stata}}{385} +\indexentry{programmes!Stata@\textsf {Stata}}{385} +\indexentry{SPSS@\textsf {SPSS}}{385} +\indexentry{programmes!SPSS@\textsf {SPSS}}{385} +\indexentry{haven@\textsf {`haven'}}{385} +\indexentry{packages!haven@\textsf {`haven'}}{385} +\indexentry{SPSS@\textsf {SPSS}}{385} +\indexentry{programmes!SPSS@\textsf {SPSS}}{385} +\indexentry{SPSS@\textsf {SPSS}}{385} +\indexentry{programmes!SPSS@\textsf {SPSS}}{385} +\indexentry{SPSS@\textsf {SPSS}}{385} +\indexentry{programmes!SPSS@\textsf {SPSS}}{385} +\indexentry{Python@\textsf {Python}}{386} +\indexentry{languages!Python@\textsf {Python}}{386} +\indexentry{importing data!other statistical software|)}{386} +\indexentry{importing data!NeCDF files|(}{386} +\indexentry{NetCDF@\textsf {NetCDF}}{386} +\indexentry{programmes!NetCDF@\textsf {NetCDF}}{386} +\indexentry{NetCDF@\textsf {NetCDF}}{386} +\indexentry{programmes!NetCDF@\textsf {NetCDF}}{386} +\indexentry{NetCDF@\textsf {NetCDF}}{386} +\indexentry{programmes!NetCDF@\textsf {NetCDF}}{386} +\indexentry{NetCDF@\textsf {NetCDF}}{386} +\indexentry{programmes!NetCDF@\textsf {NetCDF}}{386} +\indexentry{ncdf4@\textsf {`ncdf4'}}{386} +\indexentry{packages!ncdf4@\textsf {`ncdf4'}}{386} +\indexentry{RNetCDF@\textsf {`RNetCDF'}}{386} +\indexentry{packages!RNetCDF@\textsf {`RNetCDF'}}{386} +\indexentry{NetCDF@\textsf {NetCDF}}{386} +\indexentry{programmes!NetCDF@\textsf {NetCDF}}{386} +\indexentry{ncdf4@\textsf {`ncdf4'}}{386} +\indexentry{packages!ncdf4@\textsf {`ncdf4'}}{386} +\indexentry{ncdf4@\textsf {`ncdf4'}}{386} +\indexentry{packages!ncdf4@\textsf {`ncdf4'}}{386} +\indexentry{NetCDF@\textsf {NetCDF}}{386} +\indexentry{programmes!NetCDF@\textsf {NetCDF}}{386} +\indexentry{ncdf4@\textsf {`ncdf4'}}{386} +\indexentry{packages!ncdf4@\textsf {`ncdf4'}}{386} +\indexentry{lubridate@\textsf {`lubridate'}}{387} +\indexentry{packages!lubridate@\textsf {`lubridate'}}{387} +\indexentry{tidync@\textsf {`tidync'}}{388} +\indexentry{packages!tidync@\textsf {`tidync'}}{388} +\indexentry{tidync@\textsf {`tidync'}}{388} +\indexentry{packages!tidync@\textsf {`tidync'}}{388} +\indexentry{NetCDF@\textsf {NetCDF}}{388} +\indexentry{programmes!NetCDF@\textsf {NetCDF}}{388} +\indexentry{wrapr@\textsf {`wrapr'}}{389} +\indexentry{packages!wrapr@\textsf {`wrapr'}}{389} +\indexentry{dplyr@\textsf {`dplyr'}}{389} +\indexentry{packages!dplyr@\textsf {`dplyr'}}{389} +\indexentry{importing data!NeCDF files|)}{389} +\indexentry{importing data!remote connections|(}{389} \indexentry{readr@\textsf {`readr'}}{390} \indexentry{packages!readr@\textsf {`readr'}}{390} +\indexentry{readxl@\textsf {`readxl'}}{390} +\indexentry{packages!readxl@\textsf {`readxl'}}{390} +\indexentry{xlsx@\textsf {`xlsx'}}{390} +\indexentry{packages!xlsx@\textsf {`xlsx'}}{390} \indexentry{utils@\textsf {`utils'}}{390} \indexentry{packages!utils@\textsf {`utils'}}{390} -\indexentry{importing data!text files|)}{391} -\indexentry{exporting data!text files|(}{391} -\indexentry{readr@\textsf {`readr'}}{391} -\indexentry{packages!readr@\textsf {`readr'}}{391} -\indexentry{utils@\textsf {`utils'}}{391} -\indexentry{packages!utils@\textsf {`utils'}}{391} -\indexentry{readr@\textsf {`readr'}}{391} -\indexentry{packages!readr@\textsf {`readr'}}{391} -\indexentry{MS-Excel@\textsf {MS-Excel}}{391} -\indexentry{programmes!MS-Excel@\textsf {MS-Excel}}{391} -\indexentry{MS-Excel@\textsf {MS-Excel}}{391} -\indexentry{programmes!MS-Excel@\textsf {MS-Excel}}{391} -\indexentry{exporting data!text files|)}{392} -\indexentry{importing data!XML and HTML files|(}{392} -\indexentry{XML@\textsf {XML}}{392} -\indexentry{languages!XML@\textsf {XML}}{392} -\indexentry{XHTML@\textsf {XHTML}}{392} -\indexentry{languages!XHTML@\textsf {XHTML}}{392} -\indexentry{HTML@\textsf {HTML}}{392} -\indexentry{languages!HTML@\textsf {HTML}}{392} -\indexentry{xml2@\textsf {`xml2'}}{392} -\indexentry{packages!xml2@\textsf {`xml2'}}{392} -\indexentry{xml2@\textsf {`xml2'}}{392} -\indexentry{packages!xml2@\textsf {`xml2'}}{392} -\indexentry{XTML@\textsf {XTML}}{392} -\indexentry{languages!XTML@\textsf {XTML}}{392} -\indexentry{HTML@\textsf {HTML}}{392} -\indexentry{languages!HTML@\textsf {HTML}}{392} -\indexentry{XML@\textsf {XML}}{396} -\indexentry{languages!XML@\textsf {XML}}{396} -\indexentry{importing data!XML and HTML files|)}{396} -\indexentry{importing data!GPX files|(}{396} -\indexentry{sf@\textsf {`sf'}}{396} -\indexentry{packages!sf@\textsf {`sf'}}{396} -\indexentry{importing data!GPX files|)}{396} -\indexentry{importing data!worksheets and workbooks|(}{396} -\indexentry{MS-Excel@\textsf {MS-Excel}}{396} -\indexentry{programmes!MS-Excel@\textsf {MS-Excel}}{396} -\indexentry{MS-Excel@\textsf {MS-Excel}}{396} -\indexentry{programmes!MS-Excel@\textsf {MS-Excel}}{396} -\indexentry{MS-Excel@\textsf {MS-Excel}}{397} -\indexentry{programmes!MS-Excel@\textsf {MS-Excel}}{397} -\indexentry{Excel@\textsf {Excel}}{397} -\indexentry{programmes!Excel@\textsf {Excel}}{397} -\indexentry{readr@\textsf {`readr'}}{397} -\indexentry{packages!readr@\textsf {`readr'}}{397} -\indexentry{RStudio@\textsf {RStudio}}{397} -\indexentry{programmes!RStudio@\textsf {RStudio}}{397} -\indexentry{Notepad@\textsf {Notepad}}{397} -\indexentry{programmes!Notepad@\textsf {Notepad}}{397} -\indexentry{Nano@\textsf {Nano}}{397} -\indexentry{programmes!Nano@\textsf {Nano}}{397} -\indexentry{Emacs@\textsf {Emacs}}{397} -\indexentry{programmes!Emacs@\textsf {Emacs}}{397} -\indexentry{readxl@\textsf {`readxl'}}{398} -\indexentry{packages!readxl@\textsf {`readxl'}}{398} -\indexentry{importing data!.xlsx files|(}{398} -\indexentry{readxl@\textsf {`readxl'}}{398} -\indexentry{packages!readxl@\textsf {`readxl'}}{398} -\indexentry{MS-Excel@\textsf {MS-Excel}}{398} -\indexentry{programmes!MS-Excel@\textsf {MS-Excel}}{398} -\indexentry{MS-Excel@\textsf {MS-Excel}}{398} -\indexentry{programmes!MS-Excel@\textsf {MS-Excel}}{398} -\indexentry{MS-Excel@\textsf {MS-Excel}}{398} -\indexentry{programmes!MS-Excel@\textsf {MS-Excel}}{398} -\indexentry{tidyverse@\textsf {`tidyverse'}}{398} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{398} -\indexentry{readr@\textsf {`readr'}}{399} -\indexentry{packages!readr@\textsf {`readr'}}{399} -\indexentry{xlsx@\textsf {`xlsx'}}{399} -\indexentry{packages!xlsx@\textsf {`xlsx'}}{399} -\indexentry{xlsx@\textsf {`xlsx'}}{399} -\indexentry{packages!xlsx@\textsf {`xlsx'}}{399} -\indexentry{MS-Excel@\textsf {MS-Excel}}{399} -\indexentry{programmes!MS-Excel@\textsf {MS-Excel}}{399} -\indexentry{readr@\textsf {`readr'}}{399} -\indexentry{packages!readr@\textsf {`readr'}}{399} -\indexentry{importing data!.xlsx files|)}{400} -\indexentry{readODS@\textsf {`readODS'}}{401} -\indexentry{packages!readODS@\textsf {`readODS'}}{401} -\indexentry{importing data!.ods files|(}{401} -\indexentry{readODS@\textsf {`readODS'}}{401} -\indexentry{packages!readODS@\textsf {`readODS'}}{401} -\indexentry{importing data!.ods files|)}{401} -\indexentry{importing data!worksheets and workbooks|)}{401} -\indexentry{importing data!other statistical software|(}{401} -\indexentry{foreign@\textsf {`foreign'}}{401} -\indexentry{packages!foreign@\textsf {`foreign'}}{401} -\indexentry{haven@\textsf {`haven'}}{401} -\indexentry{packages!haven@\textsf {`haven'}}{401} -\indexentry{foreign@\textsf {`foreign'}}{401} -\indexentry{packages!foreign@\textsf {`foreign'}}{401} -\indexentry{haven@\textsf {`haven'}}{401} -\indexentry{packages!haven@\textsf {`haven'}}{401} -\indexentry{foreign@\textsf {`foreign'}}{401} -\indexentry{packages!foreign@\textsf {`foreign'}}{401} -\indexentry{foreign@\textsf {`foreign'}}{401} -\indexentry{packages!foreign@\textsf {`foreign'}}{401} -\indexentry{SAS@\textsf {SAS}}{401} -\indexentry{programmes!SAS@\textsf {SAS}}{401} -\indexentry{Stata@\textsf {Stata}}{401} -\indexentry{programmes!Stata@\textsf {Stata}}{401} -\indexentry{SPSS@\textsf {SPSS}}{401} -\indexentry{programmes!SPSS@\textsf {SPSS}}{401} -\indexentry{Systat@\textsf {Systat}}{401} -\indexentry{programmes!Systat@\textsf {Systat}}{401} -\indexentry{Octave@\textsf {Octave}}{401} -\indexentry{programmes!Octave@\textsf {Octave}}{401} -\indexentry{SAS@\textsf {SAS}}{401} -\indexentry{programmes!SAS@\textsf {SAS}}{401} -\indexentry{Stata@\textsf {Stata}}{401} -\indexentry{programmes!Stata@\textsf {Stata}}{401} -\indexentry{SPSS@\textsf {SPSS}}{401} -\indexentry{programmes!SPSS@\textsf {SPSS}}{401} -\indexentry{SPSS@\textsf {SPSS}}{401} -\indexentry{programmes!SPSS@\textsf {SPSS}}{401} -\indexentry{Systat@\textsf {Systat}}{402} -\indexentry{programmes!Systat@\textsf {Systat}}{402} -\indexentry{foreign@\textsf {`foreign'}}{402} -\indexentry{packages!foreign@\textsf {`foreign'}}{402} -\indexentry{haven@\textsf {`haven'}}{402} -\indexentry{packages!haven@\textsf {`haven'}}{402} -\indexentry{haven@\textsf {`haven'}}{402} -\indexentry{packages!haven@\textsf {`haven'}}{402} -\indexentry{SAS@\textsf {SAS}}{402} -\indexentry{programmes!SAS@\textsf {SAS}}{402} -\indexentry{Stata@\textsf {Stata}}{402} -\indexentry{programmes!Stata@\textsf {Stata}}{402} -\indexentry{SPSS@\textsf {SPSS}}{402} -\indexentry{programmes!SPSS@\textsf {SPSS}}{402} -\indexentry{haven@\textsf {`haven'}}{402} -\indexentry{packages!haven@\textsf {`haven'}}{402} -\indexentry{SPSS@\textsf {SPSS}}{402} -\indexentry{programmes!SPSS@\textsf {SPSS}}{402} -\indexentry{SPSS@\textsf {SPSS}}{402} -\indexentry{programmes!SPSS@\textsf {SPSS}}{402} -\indexentry{SPSS@\textsf {SPSS}}{403} -\indexentry{programmes!SPSS@\textsf {SPSS}}{403} -\indexentry{Python@\textsf {Python}}{403} -\indexentry{languages!Python@\textsf {Python}}{403} -\indexentry{importing data!other statistical software|)}{403} -\indexentry{importing data!NeCDF files|(}{403} -\indexentry{NetCDF@\textsf {NetCDF}}{403} -\indexentry{programmes!NetCDF@\textsf {NetCDF}}{403} -\indexentry{NetCDF@\textsf {NetCDF}}{403} -\indexentry{programmes!NetCDF@\textsf {NetCDF}}{403} -\indexentry{NetCDF@\textsf {NetCDF}}{403} -\indexentry{programmes!NetCDF@\textsf {NetCDF}}{403} -\indexentry{NetCDF@\textsf {NetCDF}}{403} -\indexentry{programmes!NetCDF@\textsf {NetCDF}}{403} -\indexentry{ncdf4@\textsf {`ncdf4'}}{403} -\indexentry{packages!ncdf4@\textsf {`ncdf4'}}{403} -\indexentry{RNetCDF@\textsf {`RNetCDF'}}{403} -\indexentry{packages!RNetCDF@\textsf {`RNetCDF'}}{403} -\indexentry{NetCDF@\textsf {NetCDF}}{404} -\indexentry{programmes!NetCDF@\textsf {NetCDF}}{404} -\indexentry{ncdf4@\textsf {`ncdf4'}}{404} -\indexentry{packages!ncdf4@\textsf {`ncdf4'}}{404} -\indexentry{ncdf4@\textsf {`ncdf4'}}{404} -\indexentry{packages!ncdf4@\textsf {`ncdf4'}}{404} -\indexentry{NetCDF@\textsf {NetCDF}}{404} -\indexentry{programmes!NetCDF@\textsf {NetCDF}}{404} -\indexentry{ncdf4@\textsf {`ncdf4'}}{404} -\indexentry{packages!ncdf4@\textsf {`ncdf4'}}{404} -\indexentry{lubridate@\textsf {`lubridate'}}{405} -\indexentry{packages!lubridate@\textsf {`lubridate'}}{405} -\indexentry{tidync@\textsf {`tidync'}}{405} -\indexentry{packages!tidync@\textsf {`tidync'}}{405} -\indexentry{tidync@\textsf {`tidync'}}{405} -\indexentry{packages!tidync@\textsf {`tidync'}}{405} -\indexentry{NetCDF@\textsf {NetCDF}}{405} -\indexentry{programmes!NetCDF@\textsf {NetCDF}}{405} -\indexentry{wrapr@\textsf {`wrapr'}}{406} -\indexentry{packages!wrapr@\textsf {`wrapr'}}{406} -\indexentry{dplyr@\textsf {`dplyr'}}{406} -\indexentry{packages!dplyr@\textsf {`dplyr'}}{406} -\indexentry{importing data!NeCDF files|)}{407} -\indexentry{importing data!remote connections|(}{407} -\indexentry{readr@\textsf {`readr'}}{407} -\indexentry{packages!readr@\textsf {`readr'}}{407} -\indexentry{readxl@\textsf {`readxl'}}{408} -\indexentry{packages!readxl@\textsf {`readxl'}}{408} -\indexentry{xlsx@\textsf {`xlsx'}}{408} -\indexentry{packages!xlsx@\textsf {`xlsx'}}{408} -\indexentry{utils@\textsf {`utils'}}{408} -\indexentry{packages!utils@\textsf {`utils'}}{408} -\indexentry{MS-Excel@\textsf {MS-Excel}}{408} -\indexentry{programmes!MS-Excel@\textsf {MS-Excel}}{408} -\indexentry{MS-Windows@\textsf {MS-Windows}}{408} -\indexentry{operating systems!MS-Windows@\textsf {MS-Windows}}{408} -\indexentry{foreign@\textsf {`foreign'}}{408} -\indexentry{packages!foreign@\textsf {`foreign'}}{408} -\indexentry{haven@\textsf {`haven'}}{408} -\indexentry{packages!haven@\textsf {`haven'}}{408} -\indexentry{ncdf4@\textsf {`ncdf4'}}{408} -\indexentry{packages!ncdf4@\textsf {`ncdf4'}}{408} -\indexentry{NetCDF@\textsf {NetCDF}}{409} -\indexentry{programmes!NetCDF@\textsf {NetCDF}}{409} -\indexentry{MS-Windows@\textsf {MS-Windows}}{409} -\indexentry{operating systems!MS-Windows@\textsf {MS-Windows}}{409} -\indexentry{importing data!remote connections|)}{409} -\indexentry{importing data!physical devices|(}{409} -\indexentry{internet-of-things}{409} -\indexentry{jsonlite@\textsf {`jsonlite'}}{409} -\indexentry{packages!jsonlite@\textsf {`jsonlite'}}{409} -\indexentry{importing data!jsonlite}{409} -\indexentry{YoctoPuce modules}{409} -\indexentry{jsonlite@\textsf {`jsonlite'}}{409} -\indexentry{packages!jsonlite@\textsf {`jsonlite'}}{409} -\indexentry{reticulate@\textsf {`reticulate'}}{410} -\indexentry{packages!reticulate@\textsf {`reticulate'}}{410} -\indexentry{Python@\textsf {Python}}{410} -\indexentry{languages!Python@\textsf {Python}}{410} -\indexentry{importing data!physical devices|)}{410} -\indexentry{importing data!databases|(}{410} -\indexentry{dbplyr@\textsf {`dbplyr'}}{410} -\indexentry{packages!dbplyr@\textsf {`dbplyr'}}{410} -\indexentry{dplyr@\textsf {`dplyr'}}{410} -\indexentry{packages!dplyr@\textsf {`dplyr'}}{410} -\indexentry{dplyr@\textsf {`dplyr'}}{410} -\indexentry{packages!dplyr@\textsf {`dplyr'}}{410} -\indexentry{RSQLite@\textsf {`RSQLite'}}{410} -\indexentry{packages!RSQLite@\textsf {`RSQLite'}}{410} -\indexentry{SQLite@\textsf {SQLite}}{410} -\indexentry{programmes!SQLite@\textsf {SQLite}}{410} -\indexentry{dbplyr@\textsf {`dbplyr'}}{410} -\indexentry{packages!dbplyr@\textsf {`dbplyr'}}{410} -\indexentry{learnrbook@\textsf {`learnrbook'}}{410} -\indexentry{packages!learnrbook@\textsf {`learnrbook'}}{410} -\indexentry{dbplyr@\textsf {`dbplyr'}}{411} -\indexentry{packages!dbplyr@\textsf {`dbplyr'}}{411} -\indexentry{dplyr@\textsf {`dplyr'}}{411} -\indexentry{packages!dplyr@\textsf {`dplyr'}}{411} -\indexentry{importing data!databases|)}{411} -\indexentry{further reading!elegant R code}{411} -\indexentry{further reading!idiosyncracies or R}{411} +\indexentry{MS-Excel@\textsf {MS-Excel}}{390} +\indexentry{programmes!MS-Excel@\textsf {MS-Excel}}{390} +\indexentry{MS-Windows@\textsf {MS-Windows}}{390} +\indexentry{operating systems!MS-Windows@\textsf {MS-Windows}}{390} +\indexentry{foreign@\textsf {`foreign'}}{390} +\indexentry{packages!foreign@\textsf {`foreign'}}{390} +\indexentry{haven@\textsf {`haven'}}{390} +\indexentry{packages!haven@\textsf {`haven'}}{390} +\indexentry{ncdf4@\textsf {`ncdf4'}}{391} +\indexentry{packages!ncdf4@\textsf {`ncdf4'}}{391} +\indexentry{NetCDF@\textsf {NetCDF}}{391} +\indexentry{programmes!NetCDF@\textsf {NetCDF}}{391} +\indexentry{MS-Windows@\textsf {MS-Windows}}{391} +\indexentry{operating systems!MS-Windows@\textsf {MS-Windows}}{391} +\indexentry{importing data!remote connections|)}{391} +\indexentry{importing data!physical devices|(}{391} +\indexentry{internet-of-things}{391} +\indexentry{jsonlite@\textsf {`jsonlite'}}{391} +\indexentry{packages!jsonlite@\textsf {`jsonlite'}}{391} +\indexentry{importing data!jsonlite}{391} +\indexentry{YoctoPuce modules}{391} +\indexentry{jsonlite@\textsf {`jsonlite'}}{392} +\indexentry{packages!jsonlite@\textsf {`jsonlite'}}{392} +\indexentry{reticulate@\textsf {`reticulate'}}{392} +\indexentry{packages!reticulate@\textsf {`reticulate'}}{392} +\indexentry{Python@\textsf {Python}}{392} +\indexentry{languages!Python@\textsf {Python}}{392} +\indexentry{importing data!physical devices|)}{392} +\indexentry{importing data!databases|(}{392} +\indexentry{dbplyr@\textsf {`dbplyr'}}{392} +\indexentry{packages!dbplyr@\textsf {`dbplyr'}}{392} +\indexentry{dplyr@\textsf {`dplyr'}}{392} +\indexentry{packages!dplyr@\textsf {`dplyr'}}{392} +\indexentry{dplyr@\textsf {`dplyr'}}{393} +\indexentry{packages!dplyr@\textsf {`dplyr'}}{393} +\indexentry{RSQLite@\textsf {`RSQLite'}}{393} +\indexentry{packages!RSQLite@\textsf {`RSQLite'}}{393} +\indexentry{SQLite@\textsf {SQLite}}{393} +\indexentry{programmes!SQLite@\textsf {SQLite}}{393} +\indexentry{dbplyr@\textsf {`dbplyr'}}{393} +\indexentry{packages!dbplyr@\textsf {`dbplyr'}}{393} +\indexentry{learnrbook@\textsf {`learnrbook'}}{393} +\indexentry{packages!learnrbook@\textsf {`learnrbook'}}{393} +\indexentry{dbplyr@\textsf {`dbplyr'}}{393} +\indexentry{packages!dbplyr@\textsf {`dbplyr'}}{393} +\indexentry{dplyr@\textsf {`dplyr'}}{393} +\indexentry{packages!dplyr@\textsf {`dplyr'}}{393} +\indexentry{importing data!databases|)}{393} +\indexentry{further reading!elegant R code}{394} +\indexentry{further reading!idiosyncracies or R}{394} diff --git a/using-r-main-crc.ilg b/using-r-main-crc.ilg index 75ce075f..b402382a 100644 --- a/using-r-main-crc.ilg +++ b/using-r-main-crc.ilg @@ -1,8 +1,8 @@ This is makeindex, version 2.16 [MiKTeX 23.5]. -Scanning input file using-r-main-crc.idx.....done (1780 entries accepted, 0 rejected). -Sorting entries..................done (21405 comparisons). +Scanning input file using-r-main-crc.idx.....done (1784 entries accepted, 0 rejected). +Sorting entries...................done (22848 comparisons). Generating output file using-r-main-crc.ind.... -## Warning (input = using-r-main-crc.idx, line = 465; output = using-r-main-crc.ind, line = 89): +## Warning (input = using-r-main-crc.idx, line = 469; output = using-r-main-crc.ind, line = 89): -- Unmatched range closing operator ). .done (815 lines written, 1 warning). Output written in using-r-main-crc.ind. diff --git a/using-r-main-crc.ind b/using-r-main-crc.ind index d0d1fe1e..8596ba31 100644 --- a/using-r-main-crc.ind +++ b/using-r-main-crc.ind @@ -1,815 +1,815 @@ \begin{theindex} \item aesthetics ('ggplot2'), - \see{grammar of graphics, aesthetics}{271} - \item AIC, \see \emph{An Information Criterion}{200} - \item Akaike's \emph{An Information Criterion}, 200, 212 - \item algebra of sets, 55 + \see{grammar of graphics, aesthetics}{257} + \item AIC, \see \emph{An Information Criterion}{192} + \item Akaike's \emph{An Information Criterion}, 192, 203 + \item algebra of sets, 53 \item analysis of covariance, - \see{linear models, analysis of covariance}{210} + \see{linear models, analysis of covariance}{201} \item analysis of variance, - \see{linear models, analysis of variance}{206} - \subitem model formula, 227 - \item ANCOVA, \see{analysis of covariance}{210} + \see{linear models, analysis of variance}{197} + \subitem model formula, 218 + \item ANCOVA, \see{analysis of covariance}{201} \item annotations ('ggplot2'), - \see{grammar of graphics, annotations}{271} - \item ANOVA, \see{analysis of variance}{206} - \item \textsf {`anytime'}, 346 - \item apply functions, 155, 156 - \item arithmetic overflow, 37 - \subitem type promotion, 37 - \item arrays, 72--79 - \subitem dimensions, 77 + \see{grammar of graphics, annotations}{257} + \item ANOVA, \see{analysis of variance}{197} + \item \textsf {`anytime'}, 39, 331 + \item apply functions, 149, 150 + \item arithmetic overflow, 36 + \subitem type promotion, 36 + \item arrays, 69--75 + \subitem dimensions, 73 \item assignment, 26 \subitem chaining, 27 \subitem leftwise, 27 - \item attributes, 114--116 + \item attributes, 109--111 \indexspace \item {base \Rlang}, 11 - \item \textsf {bash}, 21, 132 + \item \textsf {bash}, 21, 128 \item batch job, 17 - \item \emph{Bayesian Information Criterion}, 200 - \item BIC, \see \emph{Bayesian Information Criterion}{200} - \item Bioconductor, 179 - \item \textsf {Bitbucket}, 179 - \item \textsf {`blogdown'}, 128 - \item \textsf {`bookdown'}, 128 - \item Boolean arithmetic, 49 - \item box plots, \see{plots, box and whiskers plot}{325} - \item \textsf {`broom'}, 321 + \item \emph{Bayesian Information Criterion}, 192 + \item BIC, \see \emph{Bayesian Information Criterion}{192} + \item Bioconductor, 172 + \item \textsf {Bitbucket}, 173 + \item \textsf {`blogdown'}, 124 + \item \textsf {`bookdown'}, 124 + \item Boolean arithmetic, 47 + \item box plots, \see{plots, box and whiskers plot}{310} + \item \textsf {`broom'}, 306 \indexspace - \item \textsf {C}, 10, 22, 35, 40, 63, 64, 66, 88, 91, 162, 183, 369, - 380 - \item \textsf {C++}, 10, 11, 22, 40, 46, 66, 88, 183, 248, 369 - \item categorical variables, \see{factors}{80} - \item chaining statements with \emph{pipes}, 132, 254--258 - \item character escape codes, 41 - \item character string delimiters, 41 - \item character strings, 40 - \subitem number of characters, 41 - \subitem partial matching and substitution, 44 - \subitem position-based operations, 44 - \subitem splitting of, 47 + \item \textsf {C}, 10, 21, 34, 40, 61, 63, 84, 87, 156, 176, 353, + 364 + \item \textsf {C++}, 10, 11, 21, 40, 45, 63, 84, 176, 236, 353 + \item categorical variables, \see{factors}{77} + \item chaining statements with \emph{pipes}, 128, 242--246 + \item character escape codes, 40 + \item character string delimiters, 40 + \item character strings, 39 + \subitem number of characters, 40 + \subitem partial matching and substitution, 43 + \subitem position-based operations, 43 + \subitem splitting of, 46 \subitem whitespace trimming, 43 - \item chemical reaction kinetics, 218 - \item classes, 175 - \subitem S3 class system, 175 + \item chemical reaction kinetics, 209 + \item classes, 168 + \subitem S3 class system, 168 \item classes and modes - \subitem character, 40--48 - \subitem logical, 49--52 - \subitem numeric, integer, double, 24--39 - \item cluster analysis, 241--242 - \item \textsf {COBOL}, 382 + \subitem character, 39--47 + \subitem logical, 47--50 + \subitem numeric, integer, double, 24--38 + \item cluster analysis, 231--232 + \item \textsf {COBOL}, 366 \item color - \subitem definitions, 350--351 - \subitem names, 350 - \item comparison of floating point numbers, 54--55 - \item comparison operators, 52--55 - \item compound code statements, 130 - \item conditional statements, 136 + \subitem definitions, 334--335 + \subitem names, 334 + \item comparison of floating point numbers, 52--53 + \item comparison operators, 50--53 + \item compound code statements, 126 + \item conditional statements, 132 \item console, 15 - \item control of execution flow, 136 + \item control of execution flow, 132 \item coordinates ('ggplot2'), - \see{grammar of graphics, coordinates}{271} - \item correlation, 194--196 - \subitem Kendall, 196 - \subitem non-parametric, 196 - \subitem parametric, 194 - \subitem Pearson, 194 - \subitem Spearman, 196 - \item \textsf {CRAN}, 130, 179, 182, 370 + \see{grammar of graphics, coordinates}{257} + \item correlation, 185--187 + \subitem Kendall, 187 + \subitem non-parametric, 187 + \subitem parametric, 186 + \subitem Pearson, 186 + \subitem Spearman, 187 + \item \textsf {CRAN}, 126, 172, 173, 175, 176, 354 \indexspace \item data - \subitem exploration at the R console, 122 - \subitem loading data sets, 117 + \subitem exploration at the R console, 116 + \subitem loading data sets, 111 \item data frame - \subitem replacements, 248--254 - \item data frames, 96--114 - \subitem ``filtering rows'', 103 - \subitem attaching, 113 - \subitem long vs.\ wide shape, 113 - \subitem ordering columns, 109 - \subitem ordering rows, 109, 110 - \subitem splitting, 107 - \subitem subsetting, 103 - \subitem summarizing, 106, 108 - \item data manipulation in the tidyverse, 261--269 + \subitem replacements, 236--242 + \item data frames, 91--108 + \subitem ``filtering rows'', 99 + \subitem attaching, 107 + \subitem long vs.\ wide shape, 108 + \subitem ordering columns, 103 + \subitem ordering rows, 103, 105 + \subitem splitting, 102 + \subitem subsetting, 99 + \subitem summarizing, 101, 103 + \item data manipulation in the tidyverse, 248--256 \item data sets - \subitem characteristics, 88 - \subitem origin, 88 - \subitem their storage, 87--122 - \item \textsf {`data.table'}, 169, 245, 246, 248, 249 - \item \textsf {`datasets'}, 158, 159, 183 - \item \textsf {`dbplyr'}, 261, 410, 411 - \item deleting objects, \see {removing objects}{39} + \subitem characteristics, 84 + \subitem origin, 84 + \subitem their storage, 83--117 + \item \textsf {`data.table'}, 163, 233, 234, 236, 237 + \item \textsf {`datasets'}, 152, 153, 177 + \item \textsf {`dbplyr'}, 248, 392, 393 + \item deleting objects, \see {removing objects}{38} \item devices - \subitem output, \see{graphic output devices}{373} - \item \textsf {`devtools'}, 179 - \item distributions, 189--194 - \subitem density from parameters, 190 - \subitem probabilities from quantiles, 190 - \subitem pseudo-random draws, 192 - \subitem quantiles from probabilities, 191 - \item dot-pipe operator, 255 + \subitem output, \see{graphic output devices}{356} + \item \textsf {`devtools'}, 173 + \item distributions, 181--185 + \subitem density from parameters, 181 + \subitem probabilities from quantiles, 182 + \subitem pseudo-random draws, 183 + \subitem quantiles from probabilities, 183 + \item dot-pipe operator, 243 \item double precision numbers - \subitem arithmetic, 35--37 - \item \textsf {`dplyr'}, 247, 248, 255, 261--264, 266, 268, 406, - 410, 411 - \item \textsf {`dtplyr'}, 261 + \subitem arithmetic, 34--36 + \item \textsf {`dplyr'}, 235, 236, 242, 243, 248--251, 253, 255, 389, + 392, 393 + \item \textsf {`dtplyr'}, 248 \indexspace \item \textsf {Eclipse}, 13 - \item \textsf {Emacs}, 397 - \item EPS ($\epsilon$), \see{machine arithmetic precision}{35} - \item \textsf {Excel}, 397 + \item \textsf {Emacs}, 380 + \item EPS ($\epsilon$), \see{machine arithmetic precision}{34} + \item \textsf {Excel}, 380 \item exporting data - \subitem text files, 386--387, 391--392 - \item extensions to R, 179 - \item \textsf {`extrafont'}, 306 + \subitem text files, 369--370, 374--375 + \item extensions to R, 172 + \item \textsf {`extrafont'}, 291 \indexspace - \item facets ('ggplot2'), \see{grammar of graphics, facets}{271} - \item factors, 80--85 - \subitem arrange values, 85 - \subitem convert to numeric, 84 - \subitem drop unused levels, 83 - \subitem labels, 81 - \subitem levels, 81 - \subitem merge levels, 82 - \subitem ordered, 80 - \subitem reorder levels, 84 - \subitem reorder values, 85 + \item facets ('ggplot2'), \see{grammar of graphics, facets}{257} + \item factors, 77--82 + \subitem arrange values, 81 + \subitem convert to numeric, 80 + \subitem drop unused levels, 80 + \subitem labels, 78 + \subitem levels, 78 + \subitem merge levels, 79 + \subitem ordered, 77 + \subitem reorder levels, 80 + \subitem reorder values, 81 \item file names - \subitem portable, 377 - \subitem script portability, 377 - \item file operations, 377--380 + \subitem portable, 361 + \subitem script portability, 361 + \item file operations, 361--364 \item file paths - \subitem parsing, 378 - \subitem script portability, 378 + \subitem parsing, 362 + \subitem script portability, 362 \item fitted models - \subitem stepwise selection, 212--214 - \subitem updating, 210--212 + \subitem stepwise selection, 203--205 + \subitem updating, 201--203 \item floating point numbers - \subitem arithmetic, 35--37 - \item floats, \see{floating point numbers}{35} - \item folders, \see{file paths}{378} - \item for loop, 145 - \subitem unrolled, 146 - \item \textsf {`foreign'}, 117, 375, 401, 402, 408 - \item formatted character strings from numbers, 63 - \item \textsf {FORTRAN}, 10, 183, 382, 385 + \subitem arithmetic, 34--36 + \item floats, \see{floating point numbers}{34} + \item folders, \see{file paths}{362} + \item for loop, 141 + \subitem unrolled, 141 + \item \textsf {`foreign'}, 111, 359, 384, 385, 390 + \item formatted character strings from numbers, 60 + \item \textsf {FORTRAN}, 10, 176, 366, 368 \item functions - \subitem arguments, 169 - \subitem base R, 188 - \subitem call, 132 - \subitem defining new, 167, 171 + \subitem arguments, 163 + \subitem base R, 180 + \subitem call, 128 + \subitem defining new, 161, 165 \item further reading - \subitem elegant R code, 411 - \subitem grammar of graphics, 374 - \subitem idiosyncracies or R, 411 - \subitem new grammars of data, 270 - \subitem object oriented programming in R, 185 - \subitem package development, 185 - \subitem plotting, 374 + \subitem elegant R code, 394 + \subitem grammar of graphics, 357 + \subitem idiosyncracies or R, 394 + \subitem new grammars of data, 256 + \subitem object oriented programming in R, 178 + \subitem package development, 178 + \subitem plotting, 357 \subitem shell scripts in Unix and Linux, 21 - \subitem statistics in R, 243 - \subitem the R language, 166 - \subitem using the R language, 86, 122 + \subitem statistics in R, 232 + \subitem the R language, 160 + \subitem using the R language, 82, 117 \indexspace - \item generalized linear models, 214--217 + \item generalized linear models, 206--208 \item generic method - \subitem S3 class system, 177 + \subitem S3 class system, 170 \item geometries ('ggplot2'), - \see{grammar of graphics, geometries}{271} - \item \textsf {`ggbeeswarm'}, 327 - \item \textsf {`ggforce'}, 327 - \item \textsf {`gginnards'}, 280 - \item \textsf {`ggplot2'}, 119, 271, 273, 274, 276--278, 280, 287, - 289--291, 301, 304, 306, 309, 312--314, 316, 328, - 332--334, 338, 342, 351, 352, 356, 359, 360, 363, 364, - 366, 370, 371, 374 - \item \textsf {`ggpmisc'}, 309, 313, 320, 321, 332, 333 - \item \textsf {`ggpp'}, 295 - \item \textsf {`ggrepel'}, 308 - \item \textsf {`ggstance'}, 328 - \item \textsf {`ggtern'}, 276 - \item \textsf {`ggtext'}, 370 - \item \textsf {Git}, 179 - \item \textsf {GitHub}, 7, 179 - \item GLM, \see{generalized linear models}{214} - \item grammar of graphics, 273, 370 - \subitem aesthetics(, 288 - \subitem aesthetics), 291 - \subitem annotations, 353--356 - \subitem binned scales, 352--353 - \subitem cartesian coordinates, 273, 282 - \subitem color and fill scales, 349--353 - \subitem column geometry, 301--303 - \subitem complete themes, 359--361 - \subitem continuous scales, 340--346 - \subitem coordinates, 276 - \subitem creating a theme, 362--364 - \subitem data, 274 - \subitem discrete scales, 348--349 - \subitem elements, 273--276 - \subitem facets, 334--337 - \subitem flipped axes(, 328 - \subitem flipped axes), 334 - \subitem function statistic, 314--315 - \subitem geometries, 275, 291--313 - \subitem horizontal geometries, 328 - \subitem horizontal statistics, 328 - \subitem identity color scales, 353 - \subitem incomplete themes, 361--362 - \subitem inset-related geometries, 309--313 - \subitem mapping of data, 274, 288--291 - \subsubitem late, 289 - \subitem operators, 276 - \subitem orientation, 328 - \subitem plot construction, 278--285 - \subitem plot structure, 276--278 - \subitem plot workings, 276--278 - \subitem plots as R objects, 285--288 - \subitem point geometry, 292--298 - \subitem polar coordinates, 356--358 - \subitem positions, 275 - \subitem scales, 275, 337--353 - \subitem sf geometries, 304--305 - \subitem size scales, 349 - \subitem statistics, 275, 314--327 - \subitem structure of plot objects, 286--288 - \subitem summary statistic, 315--317 - \subitem swap axes, 328 - \subitem text and label geometries, 305--309 - \subsubitem repulsive, 308 - \subitem themes, 276, 359--364 - \subitem tile geometry, 303--304 - \subitem time and date scales, 346--348 - \subitem various line and path geometries, 298--301 - \item graphic output devices, 373 - \item \textsf {`grid'}, 271, 312, 354 - \item grid graphics coordinate systems, 313 - \item \textsf {`gridExtra'}, 311 - \item group-wise operations on data, 264--266 + \see{grammar of graphics, geometries}{257} + \item \textsf {`ggbeeswarm'}, 312 + \item \textsf {`ggforce'}, 312 + \item \textsf {`gginnards'}, 266 + \item \textsf {`ggplot2'}, 114, 257, 259, 260, 262--264, 266, 272, + 275, 277, 287, 290, 291, 294, 297--299, 301, 313, + 317--319, 323, 326, 335, 336, 340, 343, 344, 347--349, + 354, 355, 357 + \item \textsf {`ggpmisc'}, 294, 298, 305, 306, 317, 318 + \item \textsf {`ggpp'}, 281 + \item \textsf {`ggrepel'}, 294 + \item \textsf {`ggstance'}, 313 + \item \textsf {`ggtern'}, 262 + \item \textsf {`ggtext'}, 354 + \item \textsf {Git}, 173 + \item \textsf {GitHub}, 7, 173 + \item GLM, \see{generalized linear models}{206} + \item grammar of graphics, 259, 354 + \subitem aesthetics(, 273 + \subitem aesthetics), 277 + \subitem annotations, 337--340 + \subitem binned scales, 336 + \subitem cartesian coordinates, 259, 268 + \subitem color and fill scales, 333--337 + \subitem column geometry, 286--288 + \subitem complete themes, 343--345 + \subitem continuous scales, 325--330 + \subitem coordinates, 262 + \subitem creating a theme, 346--348 + \subitem data, 260 + \subitem discrete scales, 332--333 + \subitem elements, 259--262 + \subitem facets, 319--322 + \subitem flipped axes(, 312 + \subitem flipped axes), 319 + \subitem function statistic, 299--300 + \subitem geometries, 261, 277--299 + \subitem horizontal geometries, 312 + \subitem horizontal statistics, 312 + \subitem identity color scales, 337 + \subitem incomplete themes, 345--346 + \subitem inset-related geometries, 294--299 + \subitem mapping of data, 260, 273--277 + \subsubitem late, 275 + \subitem operators, 262 + \subitem orientation, 312 + \subitem plot construction, 264--271 + \subitem plot structure, 262--264 + \subitem plot workings, 262--264 + \subitem plots as R objects, 271--273 + \subitem point geometry, 277--283 + \subitem polar coordinates, 340--342 + \subitem positions, 261 + \subitem scales, 261, 322--337 + \subitem sf geometries, 290 + \subitem size scales, 333 + \subitem statistics, 261, 299--312 + \subitem structure of plot objects, 272--273 + \subitem summary statistic, 300--303 + \subitem swap axes, 312 + \subitem text and label geometries, 290--294 + \subsubitem repulsive, 294 + \subitem themes, 262, 343--348 + \subitem tile geometry, 288--289 + \subitem time and date scales, 331--332 + \subitem various line and path geometries, 284--286 + \item graphic output devices, 356--357 + \item \textsf {`grid'}, 257, 297, 338 + \item grid graphics coordinate systems, 298 + \item \textsf {`gridExtra'}, 296 + \item group-wise operations on data, 251--253 \item grouping - \subitem implementation in tidyverse, 265 + \subitem implementation in tidyverse, 251 \indexspace - \item \textsf {`haven'}, 401, 402, 408 - \item \textsf {`Hmisc'}, 316 - \item \textsf {HTML}, 370, 392 + \item \textsf {`haven'}, 384, 385, 390 + \item \textsf {`Hmisc'}, 301 + \item \textsf {HTML}, 354, 375 \indexspace \item IDE, \see{integrated development environment}{12} \item importing data - \subitem .ods files, 401 - \subitem .xlsx files, 398--400 - \subitem databases, 410--411 - \subitem GPX files, 396 - \subitem jsonlite, 409 - \subitem NeCDF files, 403--407 - \subitem other statistical software, 401--403 - \subitem physical devices, 409--410 - \subitem remote connections, 407--409 - \subitem text files, 381--391 - \subitem worksheets and workbooks, 396--401 - \subitem XML and HTML files, 392--396 - \item inequality and equality tests, 54--55 + \subitem .ods files, 383--384 + \subitem .xlsx files, 381--383 + \subitem databases, 392--393 + \subitem GPX files, 379 + \subitem jsonlite, 391 + \subitem NeCDF files, 386--389 + \subitem other statistical software, 384--386 + \subitem physical devices, 391--392 + \subitem remote connections, 389--391 + \subitem text files, 364--374 + \subitem worksheets and workbooks, 379--384 + \subitem XML and HTML files, 375--378 + \item inequality and equality tests, 52--53 \item integer numbers - \subitem arithmetic, 35--37 - \item Integer numbers and computers, 35 + \subitem arithmetic, 34--36 + \item Integer numbers and computers, 34 \item integrated development environment, 12 - \item internet-of-things, 409 - \item iteration, 152 - \subitem for loop, 145 - \subitem nesting of loops, 154 - \subitem repeat loop, 151 - \subitem while loop, 150 + \item internet-of-things, 391 + \item iteration, 147 + \subitem for loop, 141 + \subitem nesting of loops, 148 + \subitem repeat loop, 146 + \subitem while loop, 144 \indexspace - \item \textsf {Java}, 10, 22, 183 - \item joins between data sources, 266--269 - \subitem filtering, 268 - \subitem mutating, 266 - \item \textsf {`jsonlite'}, 409 + \item \textsf {Java}, 11, 21, 176 + \item joins between data sources, 253--256 + \subitem filtering, 255 + \subitem mutating, 253 + \item \textsf {`jsonlite'}, 391, 392 \indexspace - \item \textsf {`knitr'}, 19, 20, 128 + \item \textsf {`knitr'}, 19, 20, 124 \indexspace \item languages - \subitem \textsf {C}, 10, 22, 35, 40, 63, 64, 66, 88, 91, 162, 183, - 369, 380 - \subitem \textsf {C++}, 10, 11, 22, 40, 46, 66, 88, 183, 248, 369 - \subitem \textsf {COBOL}, 382 - \subitem \textsf {FORTRAN}, 10, 183, 382, 385 - \subitem \textsf {HTML}, 370, 392 - \subitem \textsf {Java}, 10, 22, 183 - \subitem {\LaTeX }, 20, 128 - \subitem \textsf {Markdown}, 7, 20, 128, 370 + \subitem \textsf {C}, 10, 21, 34, 40, 61, 63, 84, 87, 156, 176, + 353, 364 + \subitem \textsf {C++}, 10, 11, 21, 40, 45, 63, 84, 176, 236, 353 + \subitem \textsf {COBOL}, 366 + \subitem \textsf {FORTRAN}, 10, 176, 366, 368 + \subitem \textsf {HTML}, 354, 375 + \subitem \textsf {Java}, 11, 21, 176 + \subitem {\LaTeX }, 19, 124 + \subitem \textsf {Markdown}, 7, 19, 20, 124, 354 \subitem natural and computer, 24 - \subitem \textsf {Pascal}, 10, 11, 88 - \subitem \textsf {Perl}, 46 - \subitem \textsf {Python}, 10, 13, 183, 403, 410 - \subitem \textsf {R markdown}, 20, 128 - \subitem \textsf {Rmarkdown}, 128 - \subitem \textsf {S}, 10, 22, 207, 259, 334 + \subitem \textsf {Pascal}, 10, 11, 84 + \subitem \textsf {Perl}, 45 + \subitem \textsf {Python}, 10, 13, 176, 386, 392 + \subitem \textsf {R markdown}, 20, 124 + \subitem \textsf {Rmarkdown}, 124 + \subitem \textsf {S}, 10, 21, 198, 246, 319 \subitem \textsf {S-Plus}, 10 - \subitem \textsf {XHTML}, 392 - \subitem \textsf {XML}, 392, 396 - \subitem \textsf {XTML}, 392 - \item {\LaTeX }, 20, 128 - \item \textsf {`lattice'}, 271, 313, 334 - \item \textsf {`learnrbook'}, 20, 21, 271, 356, 377, 410 - \item linear models, 197--210 - \subitem analysis of covariance, 210 - \subitem analysis of variance, 206 - \subitem contrasts, 207--210 - \subitem linear regression, 198 - \subitem polynomial regression, 200 - \subitem stepwise regression, 212--214 - \subitem structure of model fit object, 201 - \subitem structure of summary object, 202 - \subitem summary table, 199 - \subitem test parameters for $H_0 \neq 0$, 204 - \item linear regression, \see{linear models, linear regression}{198} - \item \textsf {Linux}, 11, 14, 17, 21, 121, 132, 378 - \item listing files or directories, 379 - \item lists, 88--95 - \subitem append to, 92 - \subitem convert into vector, 95 - \subitem deletion and addition of members, 89--92 - \subitem flattening, 94 - \subitem insert into, 92 - \subitem member extraction, 89--92 - \subitem member indexing, \see{lists, member extraction}{89} - \subitem nested, 92--94 - \subitem structure, 94 - \item literate programming, 128 - \item LM, \see{linear models}{197} - \item \textsf {`lme4'}, 228 - \item logical operators, 49 - \item logical values and their algebra, 49--52 - \item long-form- and wide-form tabular data, 259 - \item loops, \seealso{iteration}{145} - \subitem faster alternatives, 152--153, 156 - \subitem nested, 154 - \item loss of numeric precision, 54 - \item \textsf {`lubridate'}, 346, 405 + \subitem \textsf {XHTML}, 375 + \subitem \textsf {XML}, 375, 378 + \subitem \textsf {XTML}, 375 + \item {\LaTeX }, 19, 124 + \item \textsf {`lattice'}, 257, 298, 319 + \item \textsf {`learnrbook'}, 20, 257, 340, 361, 393 + \item linear models, 188--201 + \subitem analysis of covariance, 201 + \subitem analysis of variance, 197 + \subitem contrasts, 198--201 + \subitem linear regression, 189 + \subitem polynomial regression, 191 + \subitem stepwise regression, 203--205 + \subitem structure of model fit object, 193 + \subitem structure of summary object, 194 + \subitem summary table, 190 + \subitem test parameters for $H_0 \neq 0$, 195 + \item linear regression, \see{linear models, linear regression}{189} + \item \textsf {Linux}, 11, 14, 18, 21, 116, 128, 362 + \item listing files or directories, 362--363 + \item lists, 84--91 + \subitem append to, 87 + \subitem convert into vector, 90 + \subitem deletion and addition of members, 85--88 + \subitem flattening, 90 + \subitem insert into, 87 + \subitem member extraction, 85--88 + \subitem member indexing, \see{lists, member extraction}{85} + \subitem nested, 88--90 + \subitem structure, 89 + \item literate programming, 124 + \item LM, \see{linear models}{188} + \item \textsf {`lme4'}, 218 + \item logical operators, 47 + \item logical values and their algebra, 47--50 + \item long-form- and wide-form tabular data, 246 + \item loops, \seealso{iteration}{140} + \subitem faster alternatives, 147--148, 150 + \subitem nested, 148 + \item loss of numeric precision, 52 + \item \textsf {`lubridate'}, 39, 331, 387 \indexspace \item machine arithmetic - \subitem precision, 35--37 - \subitem rounding errors, 35 - \item \textsf {`magrittr'}, 247, 255--258, 289 - \item MANOVA, \see{multivariate analysis of variance}{235} - \item \textsf {Markdown}, 7, 20, 128, 370 + \subitem precision, 34--36 + \subitem rounding errors, 34 + \item \textsf {`magrittr'}, 235, 242, 243, 245, 246, 274 + \item MANOVA, \see{multivariate analysis of variance}{226} + \item \textsf {Markdown}, 7, 19, 20, 124, 354 \item math functions, 24 \item math operators, 24 - \item matrices, 72--80 + \item matrices, 69--77 \item matrix - \subitem dimensions, 77 - \subitem multiplication, 79 - \subitem operations with vectors, 79 - \subitem operators, 79--80 - \subitem transpose, 79 - \item \textsf {`matrixStats'}, 80 - \item MDS, \see {multidimensional scaling}{239} - \item merging data from two tibbles, 266--269 - \item methods, 175 - \subitem S3 class system, 175 - \item Michaelis-Menten equation, 218 - \item \textsf {`microbenchmark'}, 152 - \item \textsf {\hologoRobust {MiKTeX}}, 180 - \item model formulas, 222--231 - \subitem manipulation, 229 + \subitem dimensions, 73 + \subitem multiplication, 76 + \subitem operations with vectors, 75 + \subitem operators, 75--77 + \subitem transpose, 76 + \item \textsf {`matrixStats'}, 77 + \item MDS, \see {multidimensional scaling}{229} + \item merging data from two tibbles, 253--256 + \item methods, 168 + \subitem S3 class system, 168 + \item Michaelis-Menten equation, 209 + \item \textsf {`microbenchmark'}, 147 + \item \textsf {\hologoRobust {MiKTeX}}, 173 + \item model formulas, 213--222 + \subitem manipulation, 219 \item models - \subitem generalized linear, \see{generalized linear models}{214} - \subitem linear, \see{linear models}{197} - \subitem non-linear, \see{non-linear models}{217} - \subitem {\texttt{selfStart}}, 218 - \item models fitting, 196--197 - \item \textsf {MS-Excel}, 382, 391, 396--399, 408 - \item \textsf {MS-Windows}, 11, 14, 17, 18, 121, 180, 378, 408, 409 - \item multidimensional scaling, 239--241 - \item multivariate analysis of variance, 235--237 - \item multivariate methods, 235--242 + \subitem generalized linear, \see{generalized linear models}{206} + \subitem linear, \see{linear models}{188} + \subitem non-linear, \see{non-linear models}{208} + \subitem {\texttt{selfStart}}, 209 + \item models fitting, 187--188 + \item \textsf {MS-Excel}, 366, 374, 379, 381, 382, 390 + \item \textsf {MS-Windows}, 11, 14, 18, 116, 173, 362, 390, 391 + \item multidimensional scaling, 229--231 + \item multivariate analysis of variance, 226--227 + \item multivariate methods, 226--232 \indexspace \item named vectors - \subitem mapping with, 110 - \item names and scoping, 178 - \item namespaces, 178 - \item \textsf {Nano}, 397 - \item \textsf {`ncdf4'}, 403, 404, 408 - \item nested iteration loops, 154 - \item \textsf {NetCDF}, 403--405, 409 + \subitem mapping with, 105 + \item names and scoping, 171 + \item namespaces, 171 + \item \textsf {Nano}, 380 + \item \textsf {`ncdf4'}, 386, 391 + \item nested iteration loops, 148 + \item \textsf {NetCDF}, 386, 388, 391 \item netiquette, 6 \item network etiquette, 6 - \item \textsf {`nlme'}, 228 - \item NLS, \see{non-linear models}{217} - \item non-linear models, 217--220 - \item Normal distribution, 189 - \item \textsf {Notepad}, 397 + \item \textsf {`nlme'}, 218 + \item NLS, \see{non-linear models}{208} + \item non-linear models, 208--211 + \item Normal distribution, 181 + \item \textsf {Notepad}, 380 \item numbers - \subitem double, 34 + \subitem double, 33 \subitem floating point, 33 - \subitem integer, 33, 34 + \subitem integer, 33 \subitem whole, 33 - \item numbers and their arithmetic, 24--39 + \item numbers and their arithmetic, 24--38 \item numeric values, 24 \item numeric, integer and double values, 27 \indexspace - \item object names, 162 - \subitem as character strings, 162 - \item object-oriented programming, 175 - \item objects, 175 - \subitem mode, 60 - \item \textsf {Octave}, 401 + \item object names, 157 + \subitem as character strings, 157 + \item object-oriented programming, 168 + \item objects, 168 + \subitem mode, 57 + \item \textsf {Octave}, 384 \item operating systems - \subitem \textsf {Linux}, 11, 14, 17, 121, 132 - \subitem \textsf {MS-Windows}, 11, 14, 17, 18, 121, 408, 409 - \subitem \textsf {OS X}, 11, 14, 17 - \subitem \textsf {Unix}, 11, 14, 17, 132 + \subitem \textsf {Linux}, 11, 14, 18, 116, 128 + \subitem \textsf {MS-Windows}, 11, 14, 18, 116, 390, 391 + \subitem \textsf {OS X}, 11, 14, 18 + \subitem \textsf {Unix}, 11, 14, 18, 128 \item operators - \subitem comparison, 52--55 - \subitem defining new, 167, 174 - \subitem set, 55--60 - \item \textsf {OS X}, 11, 14, 17, 180 - \item overflow, \see{arithmetic overflow}{37} + \subitem comparison, 50--53 + \subitem defining new, 161, 167 + \subitem set, 53--57 + \item \textsf {OS X}, 11, 14, 18, 174 + \item overflow, \see{arithmetic overflow}{36} \indexspace \item packages - \subitem \textsf {`anytime'}, 346 - \subitem \textsf {`blogdown'}, 128 - \subitem \textsf {`bookdown'}, 128 - \subitem \textsf {`broom'}, 321 - \subitem \textsf {`data.table'}, 169, 245, 246, 248, 249 - \subitem \textsf {`datasets'}, 158, 159, 183 - \subitem \textsf {`dbplyr'}, 261, 410, 411 - \subitem \textsf {`devtools'}, 179 - \subitem \textsf {`dplyr'}, 247, 248, 255, 261--264, 266, 268, 406, - 410, 411 - \subitem \textsf {`dtplyr'}, 261 - \subitem \textsf {`extrafont'}, 306 - \subitem \textsf {`foreign'}, 117, 375, 401, 402, 408 - \subitem \textsf {`ggbeeswarm'}, 327 - \subitem \textsf {`ggforce'}, 327 - \subitem \textsf {`gginnards'}, 280 - \subitem \textsf {`ggplot2'}, 119, 271, 273, 274, 276--278, 280, - 287, 289--291, 301, 304, 306, 309, 312--314, 316, 328, - 332--334, 338, 342, 351, 352, 356, 359, 360, 363, 364, - 366, 370, 371, 374 - \subitem \textsf {`ggpmisc'}, 309, 313, 320, 321, 332, 333 - \subitem \textsf {`ggpp'}, 295 - \subitem \textsf {`ggrepel'}, 308 - \subitem \textsf {`ggstance'}, 328 - \subitem \textsf {`ggtern'}, 276 - \subitem \textsf {`ggtext'}, 370 - \subitem \textsf {`grid'}, 271, 312, 354 - \subitem \textsf {`gridExtra'}, 311 - \subitem \textsf {`haven'}, 401, 402, 408 - \subitem \textsf {`Hmisc'}, 316 - \subitem \textsf {`jsonlite'}, 409 - \subitem \textsf {`knitr'}, 19, 20, 128 - \subitem \textsf {`lattice'}, 271, 313, 334 - \subitem \textsf {`learnrbook'}, 20, 21, 271, 356, 377, 410 - \subitem \textsf {`lme4'}, 228 - \subitem \textsf {`lubridate'}, 346, 405 - \subitem \textsf {`magrittr'}, 247, 255--258, 289 - \subitem \textsf {`matrixStats'}, 80 - \subitem \textsf {`microbenchmark'}, 152 - \subitem \textsf {`ncdf4'}, 403, 404, 408 - \subitem \textsf {`nlme'}, 228 - \subitem \textsf {`patchwork'}, 364, 365 - \subitem \textsf {`pkgdown'}, 128 - \subitem \textsf {`poorman'}, 248, 261 - \subitem \textsf {`quarto'}, 128 - \subitem \textsf {`Rcpp'}, 183 - \subitem \textsf {`readODS'}, 401 - \subitem \textsf {`readr'}, 381, 387, 388, 390, 391, 397, 399, 407 - \subitem \textsf {`readxl'}, 398, 408 + \subitem \textsf {`anytime'}, 39, 331 + \subitem \textsf {`blogdown'}, 124 + \subitem \textsf {`bookdown'}, 124 + \subitem \textsf {`broom'}, 306 + \subitem \textsf {`data.table'}, 163, 233, 234, 236, 237 + \subitem \textsf {`datasets'}, 152, 153, 177 + \subitem \textsf {`dbplyr'}, 248, 392, 393 + \subitem \textsf {`devtools'}, 173 + \subitem \textsf {`dplyr'}, 235, 236, 242, 243, 248--251, 253, 255, + 389, 392, 393 + \subitem \textsf {`dtplyr'}, 248 + \subitem \textsf {`extrafont'}, 291 + \subitem \textsf {`foreign'}, 111, 359, 384, 385, 390 + \subitem \textsf {`ggbeeswarm'}, 312 + \subitem \textsf {`ggforce'}, 312 + \subitem \textsf {`gginnards'}, 266 + \subitem \textsf {`ggplot2'}, 114, 257, 259, 260, 262--264, 266, + 272, 275, 277, 287, 290, 291, 294, 297--299, 301, 313, + 317--319, 323, 326, 335, 336, 340, 343, 344, 347--349, + 354, 355, 357 + \subitem \textsf {`ggpmisc'}, 294, 298, 305, 306, 317, 318 + \subitem \textsf {`ggpp'}, 281 + \subitem \textsf {`ggrepel'}, 294 + \subitem \textsf {`ggstance'}, 313 + \subitem \textsf {`ggtern'}, 262 + \subitem \textsf {`ggtext'}, 354 + \subitem \textsf {`grid'}, 257, 297, 338 + \subitem \textsf {`gridExtra'}, 296 + \subitem \textsf {`haven'}, 384, 385, 390 + \subitem \textsf {`Hmisc'}, 301 + \subitem \textsf {`jsonlite'}, 391, 392 + \subitem \textsf {`knitr'}, 19, 20, 124 + \subitem \textsf {`lattice'}, 257, 298, 319 + \subitem \textsf {`learnrbook'}, 20, 257, 340, 361, 393 + \subitem \textsf {`lme4'}, 218 + \subitem \textsf {`lubridate'}, 39, 331, 387 + \subitem \textsf {`magrittr'}, 235, 242, 243, 245, 246, 274 + \subitem \textsf {`matrixStats'}, 77 + \subitem \textsf {`microbenchmark'}, 147 + \subitem \textsf {`ncdf4'}, 386, 391 + \subitem \textsf {`nlme'}, 218 + \subitem \textsf {`patchwork'}, 348, 349 + \subitem \textsf {`pkgdown'}, 124 + \subitem \textsf {`poorman'}, 236, 248 + \subitem \textsf {`quarto'}, 124 + \subitem \textsf {`Rcpp'}, 176 + \subitem \textsf {`readODS'}, 383 + \subitem \textsf {`readr'}, 365, 370, 371, 373, 374, 380, 382, 390 + \subitem \textsf {`readxl'}, 381, 390 \subitem \textsf {`reprex'}, 7 - \subitem \textsf {`reshape'}, 259 - \subitem \textsf {`reshape2'}, 259 - \subitem \textsf {`reticulate'}, 183, 410 - \subitem \textsf {`RJava'}, 183 - \subitem \textsf {`RNetCDF'}, 403 - \subitem \textsf {`RSQLite'}, 410 - \subitem \textsf {`scales'}, 293, 342, 343 - \subitem \textsf {`sf'}, 304, 396 - \subitem \textsf {`showtext'}, 306 - \subitem \textsf {`stats'}, 183, 241 - \subitem \textsf {`stringr'}, 262 - \subitem \textsf {`Sweave'}, 19, 128 - \subitem \textsf {`tibble'}, 31, 101, 103, 247, 249, 309 - \subitem \textsf {`tidync'}, 405 - \subitem \textsf {`tidyr'}, 247, 248, 259--261, 266 - \subitem \textsf {`tidyverse'}, xvi, 31, 116, 245--247, 249, - 253, 254, 257, 259--261, 263, 270, 309, 387, 398 - \subitem \textsf {`tools'}, 382 - \subitem using, 180 - \subitem \textsf {`utils'}, 382, 390, 391, 408 - \subitem \textsf {`wrapr'}, 247, 255--258, 289, 406 - \subitem \textsf {`xlsx'}, 399, 408 - \subitem \textsf {`xml2'}, 392 - \item \textsf {Pascal}, 10, 11, 88 - \item \textsf {`patchwork'}, 364, 365 - \item PCA, \see {principal components analysis}{237} - \item \textsf {Perl}, 46 - \item pipe operator, 132, 255 + \subitem \textsf {`reshape'}, 246 + \subitem \textsf {`reshape2'}, 246 + \subitem \textsf {`reticulate'}, 176, 392 + \subitem \textsf {`RJava'}, 176 + \subitem \textsf {`RNetCDF'}, 386 + \subitem \textsf {`RSQLite'}, 393 + \subitem \textsf {`scales'}, 278, 327, 328 + \subitem \textsf {`sf'}, 290, 379 + \subitem \textsf {`showtext'}, 291 + \subitem \textsf {`stats'}, 177, 231 + \subitem \textsf {`stringr'}, 249 + \subitem \textsf {`Sweave'}, 19, 124 + \subitem \textsf {`tibble'}, 31, 97, 98, 235, 237, 295 + \subitem \textsf {`tidync'}, 388 + \subitem \textsf {`tidyr'}, 235, 236, 246--248, 253 + \subitem \textsf {`tidyverse'}, xvi, 31, 111, 233--235, 237, 240, + 242, 244, 246--248, 250, 256, 295, 370, 381 + \subitem \textsf {`tools'}, 366 + \subitem using, 173 + \subitem \textsf {`utils'}, 366, 373, 374, 390 + \subitem \textsf {`wrapr'}, 235, 243--245, 274, 389 + \subitem \textsf {`xlsx'}, 382, 390 + \subitem \textsf {`xml2'}, 375 + \item \textsf {Pascal}, 10, 11, 84 + \item \textsf {`patchwork'}, 348, 349 + \item PCA, \see {principal components analysis}{227} + \item \textsf {Perl}, 45 + \item pipe operator, 128, 242 \item pipes - \subitem base R, 132--136 - \subitem expressions in rhs, 256 - \subitem tidyverse, 255 - \subitem wrapr, 255--258 - \item \textsf {`pkgdown'}, 128 - \item plotmath, 366 + \subitem base R, 128--131 + \subitem expressions in rhs, 243 + \subitem tidyverse, 242--243 + \subitem wrapr, 243--246 + \item \textsf {`pkgdown'}, 124 + \item plotmath, 349 \item plots - \subitem aesthetics, 274 - \subitem axis position, 345 - \subitem base R graphics, 119 - \subitem bitmap output, 373 - \subitem box and whiskers plot, 325--326 - \subitem bubble plot, 296--297 - \subitem caption, 338--340 - \subitem circular, 356--358 - \subitem column plot, 301--303 - \subitem composing, 364--365 - \subitem consistent styling, 371 - \subitem coordinated panels, 334 - \subitem data summaries, 315--317 + \subitem aesthetics, 260 + \subitem axis position, 330 + \subitem base R graphics, 113 + \subitem bitmap output, 357 + \subitem box and whiskers plot, 310--311 + \subitem bubble plot, 282 + \subitem caption, 323--325 + \subitem circular, 340--342 + \subitem column plot, 286--288 + \subitem composing, 348--349 + \subitem consistent styling, 355 + \subitem coordinated panels, 319 + \subitem data summaries, 300--303 \subitem density plot - \subsubitem 1 dimension, 324 - \subsubitem 2 dimensions, 324--325 - \subitem dot plot, 294--296 - \subitem error bars, 315 - \subitem filled-area plot, 300 - \subitem fitted curves, 317--321 - \subitem fonts, 306 - \subitem histograms, 321--324 - \subitem inset graphical objects, 312--313 - \subitem inset plots, 311--312 - \subitem inset tables, 309--311 - \subitem insets, 309--313 - \subitem insets as annotations, 354--355 - \subitem labels, 338--340 - \subitem layers, 274, 370 - \subitem line plot, 298--299 - \subitem major axis regression, 333 - \subitem maps and spatial plots, 304--305 - \subitem math expressions, 366--370 - \subitem maths in, 305--309 - \subitem means, 315 - \subitem medians, 315 - \subitem modular construction, 370--373 - \subitem output to files, 373 - \subitem PDF output, 373 - \subitem pie charts, 358 - \subitem plots of functions, 314--315 - \subitem Postscript output, 373 - \subitem printing, 373 - \subitem programatic construction, 371--373 - \subitem reference lines, 300--301 - \subitem rendering, 373 - \subitem reusing parts of, 371 - \subitem rug marging, 298 - \subitem saving, 373 - \subitem saving to file, \see{plots, rendering}{373} + \subsubitem 1 dimension, 309 + \subsubitem 2 dimensions, 309--310 + \subitem dot plot, 279--282 + \subitem error bars, 300 + \subitem filled-area plot, 285--286 + \subitem fitted curves, 303--306 + \subitem fonts, 291 + \subitem histograms, 306--309 + \subitem inset graphical objects, 297--298 + \subitem inset plots, 296--297 + \subitem inset tables, 295--296 + \subitem insets, 294--299 + \subitem insets as annotations, 338--339 + \subitem labels, 323--325 + \subitem layers, 260, 354 + \subitem line plot, 284 + \subitem major axis regression, 317 + \subitem maps and spatial plots, 290 + \subitem math expressions, 349--354 + \subitem maths in, 290--294 + \subitem means, 300 + \subitem medians, 300 + \subitem modular construction, 354--356 + \subitem output to files, 356 + \subitem PDF output, 357 + \subitem pie charts, 342 + \subitem plots of functions, 299--300 + \subitem Postscript output, 357 + \subitem printing, 356 + \subitem programatic construction, 355--356 + \subitem reference lines, 286 + \subitem rendering, 356--357 + \subitem reusing parts of, 355 + \subitem rug marging, 283--284 + \subitem saving, 356 + \subitem saving to file, \see{plots, rendering}{356} \subitem scales - \subsubitem axis labels, 347 - \subsubitem limits, 348 - \subsubitem tick breaks, 342 - \subsubitem tick labels, 342 - \subsubitem transformations, 344 - \subitem scatter plot, 292--294 - \subitem secondary axes, 346 - \subitem smooth curves, 317--321 + \subsubitem axis labels, 331 + \subsubitem limits, 332 + \subsubitem tick breaks, 327 + \subsubitem tick labels, 327 + \subsubitem transformations, 329 + \subitem scatter plot, 277--279 + \subitem secondary axes, 330 + \subitem smooth curves, 303--306 \subitem statistics - \subsubitem density, 324 - \subsubitem density 2d, 324 - \subsubitem smooth, 317 - \subitem step plot, 299 - \subitem styling, 359--364 - \subitem subtitle, 338--340 - \subitem SVG output, 373 - \subitem tag, 338--340 - \subitem text in, 305--309 - \subitem tile plot, 303--304 - \subitem title, 338--340 - \subitem trellis-like, 334 - \subitem violin plot, 326--327 - \subitem wind rose, 356--358 - \subitem with colors, 349--353 - \item polynomial regression, 200 - \item \textsf {`poorman'}, 248, 261 - \item portability, 306 + \subsubitem density, 309 + \subsubitem density 2d, 309 + \subsubitem smooth, 303 + \subitem step plot, 284--285 + \subitem styling, 343--348 + \subitem subtitle, 323--325 + \subitem SVG output, 357 + \subitem tag, 323--325 + \subitem text in, 290--294 + \subitem tile plot, 288--289 + \subitem title, 323--325 + \subitem trellis-like, 319 + \subitem violin plot, 311--312 + \subitem wind rose, 340--342 + \subitem with colors, 333--337 + \item polynomial regression, 191 + \item \textsf {`poorman'}, 236, 248 + \item portability, 291 \item precision \subitem math operations, 33 - \item principal components analysis, 237--239 + \item principal components analysis, 227--229 \item programmes - \subitem \textsf {bash}, 21, 132 + \subitem \textsf {bash}, 21, 128 \subitem \textsf {Eclipse}, 13 - \subitem \textsf {Emacs}, 397 - \subitem \textsf {Excel}, 397 - \subitem \textsf {Git}, 179 - \subitem \textsf {Linux}, 21, 378 - \subitem \textsf {\hologoRobust {MiKTeX}}, 180 - \subitem \textsf {MS-Excel}, 382, 391, 396--399, 408 - \subitem \textsf {MS-Windows}, 180, 378 - \subitem \textsf {Nano}, 397 - \subitem \textsf {NetCDF}, 403--405, 409 - \subitem \textsf {Notepad}, 397 - \subitem \textsf {Octave}, 401 - \subitem \textsf {OS X}, 180 - \subitem \textsf {Quarto}, 20, 128 - \subitem \textsf {RGUI}, 17, 180 - \subitem \textsf {RStudio}, 7, 9, 12--15, 17, 19--21, 38, 39, 49, - 114, 121, 125, 126, 128, 130, 180, 183, 373, 397 - \subitem \textsf {RTools}, 180 - \subitem \textsf {S}, 208 - \subitem \textsf {SAS}, 10, 207, 208, 401, 402 - \subitem \textsf {sh}, 132 + \subitem \textsf {Emacs}, 380 + \subitem \textsf {Excel}, 380 + \subitem \textsf {Git}, 173 + \subitem \textsf {Linux}, 21, 362 + \subitem \textsf {\hologoRobust {MiKTeX}}, 173 + \subitem \textsf {MS-Excel}, 366, 374, 379, 381, 382, 390 + \subitem \textsf {MS-Windows}, 173, 362 + \subitem \textsf {Nano}, 380 + \subitem \textsf {NetCDF}, 386, 388, 391 + \subitem \textsf {Notepad}, 380 + \subitem \textsf {Octave}, 384 + \subitem \textsf {OS X}, 174 + \subitem \textsf {Quarto}, 20, 124 + \subitem \textsf {RGUI}, 17, 173 + \subitem \textsf {RStudio}, 7, 9, 13--15, 17--21, 38, 47, 108, 116, + 121, 122, 124, 126, 173, 174, 176, 356, 380 + \subitem \textsf {RTools}, 173 + \subitem \textsf {S}, 199 + \subitem \textsf {SAS}, 10, 198, 199, 384, 385 + \subitem \textsf {sh}, 128 \subitem \textsf {SPPS}, 10 - \subitem \textsf {SPSS}, 10, 207, 208, 401--403 - \subitem \textsf {SQLite}, 410 - \subitem \textsf {Stata}, 401, 402 - \subitem \textsf {Systat}, 401, 402 - \subitem \textsf {Unix}, 21, 378 + \subitem \textsf {SPSS}, 10, 198, 199, 384, 385 + \subitem \textsf {SQLite}, 393 + \subitem \textsf {Stata}, 384, 385 + \subitem \textsf {Systat}, 384 + \subitem \textsf {Unix}, 21, 362 \subitem \textsf {Visual Studio Code}, 13 - \subitem \textsf {WEB}, 128 - \item pseudo-random numbers, 192 - \item pseudo-random sampling, 193 - \item \textsf {Python}, 10, 13, 183, 403, 410 + \subitem \textsf {WEB}, 124 + \item pseudo-random numbers, 184 + \item pseudo-random sampling, 184 + \item \textsf {Python}, 10, 13, 176, 386, 392 \indexspace - \item \textsf {Quarto}, 20, 128 - \item \textsf {`quarto'}, 128 + \item \textsf {Quarto}, 20, 124 + \item \textsf {`quarto'}, 124 \indexspace \item {\Rlang as a language}, 10 \item {\Rlang as a program}, 10 \item {\Rpgrm as a program}, 11 - \item \textsf {R markdown}, 20, 128 - \item random draws, \see{distributions, pseudo-random draws}{192} - \item random numbers, \see{pseudo-random numbers}{192} - \item random sampling, \see{pseudo-random sampling}{193} + \item \textsf {R markdown}, 20, 124 + \item random draws, \see{distributions, pseudo-random draws}{183} + \item random numbers, \see{pseudo-random numbers}{184} + \item random sampling, \see{pseudo-random sampling}{184} \item Raspberry Pi, 12, 21 - \item \textsf {`Rcpp'}, 183 - \item \textsf {`readODS'}, 401 - \item \textsf {`readr'}, 381, 387, 388, 390, 391, 397, 399, 407 - \item \textsf {`readxl'}, 398, 408 - \item Real numbers and computers, 35 - \item recycling of arguments, 30, 152 - \item regular expressions, 45--48 - \item removing objects, 39 + \item \textsf {`Rcpp'}, 176 + \item \textsf {`readODS'}, 383 + \item \textsf {`readr'}, 365, 370, 371, 373, 374, 380, 382, 390 + \item \textsf {`readxl'}, 381, 390 + \item Real numbers and computers, 34 + \item recycling of arguments, 30, 147 + \item regular expressions, 44--47 + \item removing objects, 38 \item reprex, \see{reproducible example}{7} \item \textsf {`reprex'}, 7 - \item reproducible data analysis, 19--20 + \item reproducible data analysis, 18--20 \item reproducible example, 6, 7 - \item \textsf {`reshape'}, 259 - \item \textsf {`reshape2'}, 259 - \item reshaping tibbles, 259--261 - \item \textsf {`reticulate'}, 183, 410 - \item \textsf {RGUI}, 17, 180 - \item \textsf {`RJava'}, 183 - \item \textsf {Rmarkdown}, 128 - \item \textsf {`RNetCDF'}, 403 - \item ROpenScience, 179 - \item row-wise operations on data, 261--264 - \item \textsf {`RSQLite'}, 410 - \item \textsf {RStudio}, 7, 9, 12--15, 17, 19--21, 38, 39, 49, 114, - 121, 125, 126, 128, 130, 180, 183, 373, 397 - \item \textsf {RTools}, 180 + \item \textsf {`reshape'}, 246 + \item \textsf {`reshape2'}, 246 + \item reshaping tibbles, 246--248 + \item \textsf {`reticulate'}, 176, 392 + \item \textsf {RGUI}, 17, 173 + \item \textsf {`RJava'}, 176 + \item \textsf {Rmarkdown}, 124 + \item \textsf {`RNetCDF'}, 386 + \item ROpenScience, 173 + \item row-wise operations on data, 249--251 + \item \textsf {`RSQLite'}, 393 + \item \textsf {RStudio}, 7, 9, 13--15, 17--21, 38, 47, 108, 116, + 121, 122, 124, 126, 173, 174, 176, 356, 380 + \item \textsf {RTools}, 173 \indexspace - \item \textsf {S}, 10, 22, 207, 208, 259, 334 + \item \textsf {S}, 10, 21, 198, 199, 246, 319 \item \textsf {S-Plus}, 10 - \item S3 class system, 175 - \item \textsf {SAS}, 10, 207, 208, 401, 402 - \item \textsf {`scales'}, 293, 342, 343 - \item scales ('ggplot2'), \see{grammar of graphics, scales}{271} + \item S3 class system, 168 + \item \textsf {SAS}, 10, 198, 199, 384, 385 + \item \textsf {`scales'}, 278, 327, 328 + \item scales ('ggplot2'), \see{grammar of graphics, scales}{257} \item \emph{Schwarz's Bayesian criterion}, - \see \emph{Bayesian Information Criterion}{200} - \item scoping rules, 178 - \item scripts, 17, 123 - \subitem debugging, 128 - \subitem definition, 124 - \subitem readability, 126 - \subitem sourcing, 125 - \subitem writing, 126 - \item self-starting functions, 218, 319 - \item sequence, 30 - \item sets, 55--60 - \item \textsf {`sf'}, 304, 396 - \item \textsf {sh}, 132 - \item \textsf {`showtext'}, 306 - \item simple code statements, 130 + \see \emph{Bayesian Information Criterion}{192} + \item scoping rules, 171 + \item scripts, 17, 119 + \subitem debugging, 124 + \subitem definition, 120 + \subitem readability, 122 + \subitem sourcing, 121 + \subitem writing, 122 + \item self-starting functions, 209, 305 + \item sequence, 29 + \item sets, 53--57 + \item \textsf {`sf'}, 290, 379 + \item \textsf {sh}, 128 + \item \textsf {`showtext'}, 291 + \item simple code statements, 126 \item special values \subitem NA, 32 \subitem NaN, 32 \item \textsf {SPPS}, 10 - \item \textsf {SPSS}, 10, 207, 208, 401--403 - \item \textsf {SQLite}, 410 + \item \textsf {SPSS}, 10, 198, 199, 384, 385 + \item \textsf {SQLite}, 393 \item \textsf {StackOverflow}, xvii, 7 - \item \textsf {Stata}, 401, 402 + \item \textsf {Stata}, 384, 385 \item statistics ('ggplot2'), - \see{grammar of graphics, statistics}{271} - \item \textsf {`stats'}, 183, 241 - \item \textsf {`stringr'}, 262 + \see{grammar of graphics, statistics}{257} + \item \textsf {`stats'}, 177, 231 + \item \textsf {`stringr'}, 249 \item summaries - \subitem statistical, 188 - \item \textsf {`Sweave'}, 19, 128 - \item \textsf {Systat}, 401, 402 + \subitem statistical, 180 + \item \textsf {`Sweave'}, 19, 124 + \item \textsf {Systat}, 384 \indexspace \item text files - \subitem fixed width fields, 385 - \subitem with field markers, 382 - \item themes ('ggplot2'), \see{grammar of graphics, themes}{271} + \subitem fixed width fields, 368 + \subitem with field markers, 366 + \item themes ('ggplot2'), \see{grammar of graphics, themes}{257} \item tibble - \subitem differences with data frames, 249--254 - \item \textsf {`tibble'}, 31, 101, 103, 247, 249, 309 - \item \textsf {`tidync'}, 405 - \item \textsf {`tidyr'}, 247, 248, 259--261, 266 - \item \textsf {`tidyverse'}, xvi, 31, 116, 245--247, 249, 253, 254, - 257, 259--261, 263, 270, 309, 387, 398 - \item time series, 232--235 - \subitem decomposition, 233 - \item \textsf {`tools'}, 382 - \item type conversion, 62--65 - \item type promotion, 37 + \subitem differences with data frames, 237--242 + \item \textsf {`tibble'}, 31, 97, 98, 235, 237, 295 + \item \textsf {`tidync'}, 388 + \item \textsf {`tidyr'}, 235, 236, 246--248, 253 + \item \textsf {`tidyverse'}, xvi, 31, 111, 233--235, 237, 240, 242, + 244, 246--248, 250, 256, 295, 370, 381 + \item time series, 222--225 + \subitem decomposition, 224 + \item \textsf {`tools'}, 366 + \item type conversion, 59--62 + \item type promotion, 36 \indexspace - \item UNICODE, 306 - \item \textsf {Unix}, 11, 14, 17, 21, 132, 378 - \item UTF8, 306 - \item \textsf {`utils'}, 382, 390, 391, 408 + \item UNICODE, 291 + \item \textsf {Unix}, 11, 14, 18, 21, 128, 362 + \item UTF8, 291 + \item \textsf {`utils'}, 366, 373, 374, 390 \indexspace \item variables, 26 \item vector - \subitem run length encoding, 71 - \item vectorization, 152 + \subitem run length encoding, 68 + \item vectorization, 147 \item vectorized arithmetic, 30 - \item vectorized ifelse, 143 + \item vectorized ifelse, 138 \item vectors - \subitem indexing, 65--72 + \subitem indexing, 62--68 \subitem introduction, 28--32 - \subitem member extraction, 65 - \subitem named elements, 68 - \subitem sorting, 71 - \subitem zero length, 33 + \subitem member extraction, 62 + \subitem named elements, 65 + \subitem sorting, 68 + \subitem zero length, 32 \item \textsf {Visual Studio Code}, 13 \indexspace - \item \textsf {WEB}, 128 + \item \textsf {WEB}, 124 \item {\textsf{Windows}}, \see{\textsf{MS-Windows}}{11} - \item working directory, 378--379 - \item `worksheet', \see{data frame}{96} - \item \textsf {`wrapr'}, 247, 255--258, 289, 406 + \item working directory, 362 + \item `worksheet', \see{data frame}{91} + \item \textsf {`wrapr'}, 235, 243--245, 274, 389 \indexspace - \item \textsf {XHTML}, 392 - \item \textsf {`xlsx'}, 399, 408 - \item \textsf {XML}, 392, 396 - \item \textsf {`xml2'}, 392 - \item \textsf {XTML}, 392 + \item \textsf {XHTML}, 375 + \item \textsf {`xlsx'}, 382, 390 + \item \textsf {XML}, 375, 378 + \item \textsf {`xml2'}, 375 + \item \textsf {XTML}, 375 \indexspace - \item YoctoPuce modules, 409 + \item YoctoPuce modules, 391 \indexspace - \item zero length objects, 33 + \item zero length objects, 32 \end{theindex} diff --git a/using-r-main-crc.lof b/using-r-main-crc.lof index fc45a186..be66d00c 100644 --- a/using-r-main-crc.lof +++ b/using-r-main-crc.lof @@ -4,7 +4,7 @@ \contentsline {figure}{\numberline {2.2}{\ignorespaces Script in Rstudio}}{13}{}% \contentsline {figure}{\numberline {2.3}{\ignorespaces The R console}}{15}{}% \contentsline {figure}{\numberline {2.4}{\ignorespaces The R console}}{16}{}% -\contentsline {figure}{\numberline {2.5}{\ignorespaces Script sourced at the R console}}{18}{}% +\contentsline {figure}{\numberline {2.5}{\ignorespaces Script sourced at the R console}}{17}{}% \contentsline {figure}{\numberline {2.6}{\ignorespaces Script at the Windows cmd promt}}{18}{}% \addvspace {10\p@ } \addvspace {10\p@ } diff --git a/using-r-main-crc.log b/using-r-main-crc.log index 46776f33..f02bbaaa 100644 --- a/using-r-main-crc.log +++ b/using-r-main-crc.log @@ -1,4 +1,4 @@ -This is XeTeX, Version 3.141592653-2.6-0.999995 (MiKTeX 23.5) (preloaded format=xelatex 2023.9.7) 8 SEP 2023 01:03 +This is XeTeX, Version 3.141592653-2.6-0.999995 (MiKTeX 23.5) (preloaded format=xelatex 2023.9.7) 9 SEP 2023 03:20 entering extended mode restricted \write18 enabled. %&-line parsing enabled. @@ -853,37 +853,38 @@ spec) Package fontspec Info: Font family 'LucidaConsoleDK(0)' created for font (fontspec) 'Lucida Console DK' with options (fontspec) [WordSpace={1,0,0},HyphenChar=None,PunctuationSpace=Word -Space]. +Space,Scale=1.05]. (fontspec) (fontspec) This font family consists of the following NFSS (fontspec) series/shapes: (fontspec) -(fontspec) - 'normal' (m/n) with NFSS spec.: <->"Lucida Console -(fontspec) DK/OT:script=latn;language=dflt;" +(fontspec) - 'normal' (m/n) with NFSS spec.: <->s*[1.05]"Lucida +(fontspec) Console DK/OT:script=latn;language=dflt;" (fontspec) - 'small caps' (m/sc) with NFSS spec.: (fontspec) and font adjustment code: (fontspec) \fontdimen 2\font =1\fontdimen 2\font \fontdimen 3\font (fontspec) =0\fontdimen 3\font \fontdimen 4\font =0\fontdimen (fontspec) 4\font \fontdimen 7\font =0\fontdimen 2\font (fontspec) \tex_hyphenchar:D \font =-1\scan_stop: -(fontspec) - 'bold' (b/n) with NFSS spec.: <->"Lucida Console -(fontspec) DK/B/OT:script=latn;language=dflt;" +(fontspec) - 'bold' (b/n) with NFSS spec.: <->s*[1.05]"Lucida +(fontspec) Console DK/B/OT:script=latn;language=dflt;" (fontspec) - 'bold small caps' (b/sc) with NFSS spec.: (fontspec) and font adjustment code: (fontspec) \fontdimen 2\font =1\fontdimen 2\font \fontdimen 3\font (fontspec) =0\fontdimen 3\font \fontdimen 4\font =0\fontdimen (fontspec) 4\font \fontdimen 7\font =0\fontdimen 2\font (fontspec) \tex_hyphenchar:D \font =-1\scan_stop: -(fontspec) - 'italic' (m/it) with NFSS spec.: <->"Lucida Console -(fontspec) DK/I/OT:script=latn;language=dflt;" +(fontspec) - 'italic' (m/it) with NFSS spec.: <->s*[1.05]"Lucida +(fontspec) Console DK/I/OT:script=latn;language=dflt;" (fontspec) - 'italic small caps' (m/scit) with NFSS spec.: (fontspec) and font adjustment code: (fontspec) \fontdimen 2\font =1\fontdimen 2\font \fontdimen 3\font (fontspec) =0\fontdimen 3\font \fontdimen 4\font =0\fontdimen (fontspec) 4\font \fontdimen 7\font =0\fontdimen 2\font (fontspec) \tex_hyphenchar:D \font =-1\scan_stop: -(fontspec) - 'bold italic' (b/it) with NFSS spec.: <->"Lucida -(fontspec) Console DK/BI/OT:script=latn;language=dflt;" +(fontspec) - 'bold italic' (b/it) with NFSS spec.: +(fontspec) <->s*[1.05]"Lucida Console +(fontspec) DK/BI/OT:script=latn;language=dflt;" (fontspec) - 'bold italic small caps' (b/scit) with NFSS spec.: (fontspec) and font adjustment code: (fontspec) \fontdimen 2\font =1\fontdimen 2\font \fontdimen 3\font @@ -900,30 +901,31 @@ spec) spec) Package fontspec Info: Font family 'LucidaConsoleDK(1)' created for font -(fontspec) 'Lucida Console DK' with options []. +(fontspec) 'Lucida Console DK' with options [Scale=1.05]. (fontspec) (fontspec) This font family consists of the following NFSS (fontspec) series/shapes: (fontspec) -(fontspec) - 'normal' (m/n) with NFSS spec.: <->"Lucida Console -(fontspec) DK/OT:script=latn;language=dflt;" +(fontspec) - 'normal' (m/n) with NFSS spec.: <->s*[1.05]"Lucida +(fontspec) Console DK/OT:script=latn;language=dflt;" (fontspec) - 'small caps' (m/sc) with NFSS spec.: -(fontspec) - 'bold' (b/n) with NFSS spec.: <->"Lucida Console -(fontspec) DK/B/OT:script=latn;language=dflt;" +(fontspec) - 'bold' (b/n) with NFSS spec.: <->s*[1.05]"Lucida +(fontspec) Console DK/B/OT:script=latn;language=dflt;" (fontspec) - 'bold small caps' (b/sc) with NFSS spec.: -(fontspec) - 'italic' (m/it) with NFSS spec.: <->"Lucida Console -(fontspec) DK/I/OT:script=latn;language=dflt;" +(fontspec) - 'italic' (m/it) with NFSS spec.: <->s*[1.05]"Lucida +(fontspec) Console DK/I/OT:script=latn;language=dflt;" (fontspec) - 'italic small caps' (m/scit) with NFSS spec.: -(fontspec) - 'bold italic' (b/it) with NFSS spec.: <->"Lucida -(fontspec) Console DK/BI/OT:script=latn;language=dflt;" +(fontspec) - 'bold italic' (b/it) with NFSS spec.: +(fontspec) <->s*[1.05]"Lucida Console +(fontspec) DK/BI/OT:script=latn;language=dflt;" (fontspec) - 'bold italic small caps' (b/scit) with NFSS spec.: LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal' (Font) OT1/cmtt/m/n --> TU/LucidaConsoleDK(1)/m/n on input lin -e 17. +e 16. LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold' (Font) OT1/cmtt/m/n --> TU/LucidaConsoleDK(1)/b/n on input lin -e 17. +e 16. Package fontspec Info: Font family 'LucidaBrightMathOT(0)' created for font (fontspec) 'Lucida Bright Math OT' with options @@ -1204,6 +1206,9 @@ Package fontspec Info: Font family 'Wingdings3(0)' created for font Missing character: There is no in font Typicons! Missing character: There is no in font Typicons/OT! + +Package fontspec Info: Typicons scale = 0.9037460184249174. + Missing character: There is no in font Typicons/OT:script=latn;language=dflt; ! @@ -1221,38 +1226,22 @@ Package fontspec Info: Could not resolve font "Typicons/I" (it probably Missing character: There is no in font Typicons/OT:script=latn;language=dflt; ! +Package fontspec Info: Typicons scale = 0.9037460184249174. + + Package fontspec Info: Font family 'Typicons(0)' created for font 'Typicons' -(fontspec) with options []. +(fontspec) with options [Scale=MatchUppercase]. (fontspec) (fontspec) This font family consists of the following NFSS (fontspec) series/shapes: (fontspec) (fontspec) - 'normal' (m/n) with NFSS spec.: -(fontspec) <->"Typicons/OT:script=latn;language=dflt;" +(fontspec) <->s*[0.9037460184249174]"Typicons/OT:script=latn;langua +ge=dflt;" (fontspec) - 'small caps' (m/sc) with NFSS spec.: -Package fontspec Info: Could not resolve font "Notice2Std/BI" (it probably -(fontspec) doesn't exist). - - -Package fontspec Info: Could not resolve font "Notice2Std/B" (it probably -(fontspec) doesn't exist). - - -Package fontspec Info: Could not resolve font "Notice2Std/I" (it probably -(fontspec) doesn't exist). - - -Package fontspec Info: Font family 'Notice2Std(0)' created for font -(fontspec) 'Notice2Std' with options []. -(fontspec) -(fontspec) This font family consists of the following NFSS -(fontspec) series/shapes: -(fontspec) -(fontspec) - 'normal' (m/n) with NFSS spec.: -(fontspec) <->"Notice2Std/OT:language=dflt;" -(fontspec) - 'small caps' (m/sc) with NFSS spec.: +Package fontspec Info: ModernPictograms scale = 1.032854281061922. Package fontspec Info: Could not resolve font "ModernPictograms/BI" (it @@ -1267,14 +1256,18 @@ Package fontspec Info: Could not resolve font "ModernPictograms/I" (it (fontspec) probably doesn't exist). +Package fontspec Info: ModernPictograms scale = 1.032854281061922. + + Package fontspec Info: Font family 'ModernPictograms(0)' created for font -(fontspec) 'ModernPictograms' with options []. +(fontspec) 'ModernPictograms' with options [Scale=MatchUppercase]. (fontspec) (fontspec) This font family consists of the following NFSS (fontspec) series/shapes: (fontspec) (fontspec) - 'normal' (m/n) with NFSS spec.: -(fontspec) <->"ModernPictograms/OT:language=dflt;" +(fontspec) <->s*[1.032854281061922]"ModernPictograms/OT:language=df +lt;" (fontspec) - 'small caps' (m/sc) with NFSS spec.: \iconsep=\skip107 @@ -1718,22 +1711,22 @@ Package csquotes Info: ... none found. (using-r-main-crc.aux) \openout1 = `using-r-main-crc.aux'. -LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 101. -LaTeX Font Info: ... okay on input line 101. -LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 101. -LaTeX Font Info: ... okay on input line 101. -LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 101. -LaTeX Font Info: ... okay on input line 101. -LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 101. -LaTeX Font Info: ... okay on input line 101. -LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 101. -LaTeX Font Info: ... okay on input line 101. -LaTeX Font Info: Checking defaults for TU/lmr/m/n on input line 101. -LaTeX Font Info: ... okay on input line 101. -LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 101. -LaTeX Font Info: ... okay on input line 101. -LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 101. -LaTeX Font Info: ... okay on input line 101. +LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 94. +LaTeX Font Info: ... okay on input line 94. +LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 94. +LaTeX Font Info: ... okay on input line 94. +LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 94. +LaTeX Font Info: ... okay on input line 94. +LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 94. +LaTeX Font Info: ... okay on input line 94. +LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 94. +LaTeX Font Info: ... okay on input line 94. +LaTeX Font Info: Checking defaults for TU/lmr/m/n on input line 94. +LaTeX Font Info: ... okay on input line 94. +LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 94. +LaTeX Font Info: ... okay on input line 94. +LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 94. +LaTeX Font Info: ... okay on input line 94. Package biblatex Info: Trying to load language 'english'... Package biblatex Info: ... file 'english.lbx' found. @@ -1750,24 +1743,24 @@ Package biblatex Info: Trying to load bibliographic data... Package biblatex Info: ... file 'using-r-main-crc.bbl' found. (using-r-main-crc.bbl) -Package biblatex Info: Reference section=0 on input line 101. -Package biblatex Info: Reference segment=0 on input line 101. +Package biblatex Info: Reference section=0 on input line 94. +Package biblatex Info: Reference segment=0 on input line 94. LaTeX Font Info: Font shape `TU/LucidaBrightOT(0)/m/sl' in size <24> not ava ilable (Font) Font shape `TU/LucidaBrightOT(0)/m/it' tried instead on inp -ut line 130. +ut line 123. LaTeX Font Info: Font shape `TU/LucidaBrightOT(0)/b/sl' in size <24> not ava ilable (Font) Font shape `TU/LucidaBrightOT(0)/b/it' tried instead on inp -ut line 130. +ut line 123. LaTeX Font Info: Font shape `TU/LucidaBrightOT(0)/b/sl' in size <24.88> not available (Font) Font shape `TU/LucidaBrightOT(0)/b/it' tried instead on inp -ut line 130. +ut line 123. LaTeX Font Warning: Font shape `TU/LucidaSansOT(0)/ub/sl' undefined -(Font) using `TU/LucidaSansOT(0)/m/n' instead on input line 130. +(Font) using `TU/LucidaSansOT(0)/m/n' instead on input line 123. Underfull \vbox (badness 10000) has occurred while \output is active [] @@ -1811,54 +1804,54 @@ Underfull \hbox (badness 10000) has occurred while \output is active ] -Underfull \vbox (badness 10000) detected at line 135 +Underfull \vbox (badness 10000) detected at line 128 [] -Overfull \hbox (395.75pt too wide) detected at line 135 +Overfull \hbox (395.75pt too wide) detected at line 128 [] [] -Underfull \vbox (badness 10000) detected at line 135 +Underfull \vbox (badness 10000) detected at line 128 [] -Overfull \hbox (395.75pt too wide) detected at line 135 +Overfull \hbox (395.75pt too wide) detected at line 128 [] [] -Underfull \vbox (badness 10000) detected at line 135 +Underfull \vbox (badness 10000) detected at line 128 [] -Overfull \hbox (395.75pt too wide) detected at line 135 +Overfull \hbox (395.75pt too wide) detected at line 128 [] [] -Underfull \vbox (badness 10000) detected at line 135 +Underfull \vbox (badness 10000) detected at line 128 [] -Overfull \hbox (395.75pt too wide) detected at line 135 +Overfull \hbox (395.75pt too wide) detected at line 128 [] [] -Underfull \hbox (badness 10000) detected at line 135 +Underfull \hbox (badness 10000) detected at line 128 [] [] LaTeX Font Info: Font shape `TU/LucidaBrightOT(0)/m/sl' in size <18> not ava ilable (Font) Font shape `TU/LucidaBrightOT(0)/m/it' tried instead on inp -ut line 135. +ut line 128. LaTeX Font Info: Font shape `TU/LucidaBrightOT(0)/b/sl' in size <18> not ava ilable (Font) Font shape `TU/LucidaBrightOT(0)/b/it' tried instead on inp -ut line 135. +ut line 128. (using-r-main-crc.toc LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(2)/m/n' will be (Font) scaled to size 10.00107pt on input line 6. @@ -1879,48 +1872,51 @@ Underfull \hbox (badness 10000) has occurred while \output is active [5 -] [6] [7] [8] [9]) +] +LaTeX Font Info: Font shape `TU/LucidaConsoleDK(0)/m/n' will be +(Font) scaled to size 10.50003pt on input line 76. + [6] [7] [8] [9]) \tf@toc=\write10 \openout10 = `using-r-main-crc.toc'. [10] -Underfull \vbox (badness 10000) detected at line 136 +Underfull \vbox (badness 10000) detected at line 129 [] -Overfull \hbox (395.75pt too wide) detected at line 136 +Overfull \hbox (395.75pt too wide) detected at line 129 [] [] -Underfull \vbox (badness 10000) detected at line 136 +Underfull \vbox (badness 10000) detected at line 129 [] -Overfull \hbox (395.75pt too wide) detected at line 136 +Overfull \hbox (395.75pt too wide) detected at line 129 [] [] -Underfull \vbox (badness 10000) detected at line 136 +Underfull \vbox (badness 10000) detected at line 129 [] -Overfull \hbox (395.75pt too wide) detected at line 136 +Overfull \hbox (395.75pt too wide) detected at line 129 [] [] -Underfull \vbox (badness 10000) detected at line 136 +Underfull \vbox (badness 10000) detected at line 129 [] -Overfull \hbox (395.75pt too wide) detected at line 136 +Overfull \hbox (395.75pt too wide) detected at line 129 [] [] -Underfull \hbox (badness 10000) detected at line 136 +Underfull \hbox (badness 10000) detected at line 129 [] [] @@ -1976,43 +1972,43 @@ Underfull \hbox (badness 10000) has occurred while \output is active [12 ] -Underfull \vbox (badness 10000) detected at line 137 +Underfull \vbox (badness 10000) detected at line 130 [] -Overfull \hbox (395.75pt too wide) detected at line 137 +Overfull \hbox (395.75pt too wide) detected at line 130 [] [] -Underfull \vbox (badness 10000) detected at line 137 +Underfull \vbox (badness 10000) detected at line 130 [] -Overfull \hbox (395.75pt too wide) detected at line 137 +Overfull \hbox (395.75pt too wide) detected at line 130 [] [] -Underfull \vbox (badness 10000) detected at line 137 +Underfull \vbox (badness 10000) detected at line 130 [] -Overfull \hbox (395.75pt too wide) detected at line 137 +Overfull \hbox (395.75pt too wide) detected at line 130 [] [] -Underfull \vbox (badness 10000) detected at line 137 +Underfull \vbox (badness 10000) detected at line 130 [] -Overfull \hbox (395.75pt too wide) detected at line 137 +Overfull \hbox (395.75pt too wide) detected at line 130 [] [] -Underfull \hbox (badness 10000) detected at line 137 +Underfull \hbox (badness 10000) detected at line 130 [] [] @@ -2067,48 +2063,48 @@ Underfull \hbox (badness 10000) has occurred while \output is active [14 ] -Underfull \vbox (badness 10000) detected at line 144 +Underfull \vbox (badness 10000) detected at line 137 [] -Overfull \hbox (395.75pt too wide) detected at line 144 +Overfull \hbox (395.75pt too wide) detected at line 137 [] [] -Underfull \vbox (badness 10000) detected at line 144 +Underfull \vbox (badness 10000) detected at line 137 [] -Overfull \hbox (395.75pt too wide) detected at line 144 +Overfull \hbox (395.75pt too wide) detected at line 137 [] [] -Underfull \vbox (badness 10000) detected at line 144 +Underfull \vbox (badness 10000) detected at line 137 [] -Overfull \hbox (395.75pt too wide) detected at line 144 +Overfull \hbox (395.75pt too wide) detected at line 137 [] [] -Underfull \vbox (badness 10000) detected at line 144 +Underfull \vbox (badness 10000) detected at line 137 [] -Overfull \hbox (395.75pt too wide) detected at line 144 +Overfull \hbox (395.75pt too wide) detected at line 137 [] [] -Underfull \hbox (badness 10000) detected at line 144 +Underfull \hbox (badness 10000) detected at line 137 [] [] -Overfull \hbox (30.0pt too wide) in paragraph at lines 150--150 +Overfull \hbox (30.0pt too wide) in paragraph at lines 143--143 | [] @@ -2120,7 +2116,7 @@ Underfull \hbox (badness 10000) has occurred while \output is active [15 ] [16] -Underfull \hbox (badness 10000) in paragraph at lines 172--174 +Underfull \hbox (badness 10000) in paragraph at lines 167--169 [] @@ -2164,38 +2160,38 @@ Underfull \hbox (badness 10000) has occurred while \output is active [18 ] -Underfull \vbox (badness 10000) detected at line 223 +Underfull \vbox (badness 10000) detected at line 218 [] -Overfull \hbox (395.75pt too wide) detected at line 223 +Overfull \hbox (395.75pt too wide) detected at line 218 [] [] -Underfull \vbox (badness 10000) detected at line 223 +Underfull \vbox (badness 10000) detected at line 218 [] -Overfull \hbox (395.75pt too wide) detected at line 223 +Overfull \hbox (395.75pt too wide) detected at line 218 [] [] -Underfull \vbox (badness 10000) detected at line 223 +Underfull \vbox (badness 10000) detected at line 218 [] -Overfull \hbox (395.75pt too wide) detected at line 223 +Overfull \hbox (395.75pt too wide) detected at line 218 [] [] -Underfull \vbox (badness 10000) detected at line 223 +Underfull \vbox (badness 10000) detected at line 218 [] -Overfull \hbox (395.75pt too wide) detected at line 223 +Overfull \hbox (395.75pt too wide) detected at line 218 [] [] @@ -2203,9 +2199,9 @@ Chapter 1. LaTeX Font Info: Font shape `TU/LucidaSansOT(0)/m/sl' in size <18> not avail able (Font) Font shape `TU/LucidaSansOT(0)/m/it' tried instead on input - line 223. + line 218. -Overfull \hbox (30.0pt too wide) in paragraph at lines 231--231 +Overfull \hbox (30.0pt too wide) in paragraph at lines 226--226 | [] @@ -2218,6 +2214,11 @@ Underfull \hbox (badness 10000) has occurred while \output is active ] [2] +LaTeX Font Info: Font shape `TU/ModernPictograms(0)/m/n' will be +(Font) scaled to size 14.87306pt on input line 261. +LaTeX Font Info: Font shape `TU/Typicons(0)/m/n' will be +(Font) scaled to size 13.01395pt on input line 265. + Missing character: There is no in font Typicons/OT:script=latn;language=dflt; ! @@ -2231,7 +2232,7 @@ spec) Package fontspec Info: Font family 'LucidaConsoleDK(2)' created for font (fontspec) 'Lucida Console DK' with options (fontspec) [WordSpace={1,0,0},HyphenChar=None,PunctuationSpace=Word -Space,Scale +Space,Scale=1.05,Scale (fontspec) = 0.89]. (fontspec) (fontspec) This font family consists of the following NFSS @@ -2272,7 +2273,7 @@ Space,Scale (fontspec) \tex_hyphenchar:D \font =-1\scan_stop: LaTeX Font Info: Font shape `TU/LucidaConsoleDK(2)/m/n' will be -(Font) scaled to size 8.9pt on input line 291. +(Font) scaled to size 8.9pt on input line 286. (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -2283,13 +2284,24 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) [3] +LaTeX Font Info: Font shape `TU/LucidaConsoleDK(0)/m/n' will be +(Font) scaled to size 8.40002pt on input line 290. +LaTeX Font Info: Font shape `TU/LucidaConsoleDK(0)/b/n' will be +(Font) scaled to size 8.40002pt on input line 291. + +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) LaTeX Font Info: Font shape `TU/LucidaConsoleDK(2)/m/n' will be -(Font) scaled to size 7.12pt on input line 329. +(Font) scaled to size 7.12pt on input line 324. (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -2299,44 +2311,44 @@ spec) spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) [4] [5] [6] [7] [8] -Underfull \vbox (badness 10000) detected at line 417 +Underfull \vbox (badness 10000) detected at line 412 [] -Overfull \hbox (395.75pt too wide) detected at line 417 +Overfull \hbox (395.75pt too wide) detected at line 412 [] [] -Underfull \vbox (badness 10000) detected at line 417 +Underfull \vbox (badness 10000) detected at line 412 [] -Overfull \hbox (395.75pt too wide) detected at line 417 +Overfull \hbox (395.75pt too wide) detected at line 412 [] [] -Underfull \vbox (badness 10000) detected at line 417 +Underfull \vbox (badness 10000) detected at line 412 [] -Overfull \hbox (395.75pt too wide) detected at line 417 +Overfull \hbox (395.75pt too wide) detected at line 412 [] [] -Underfull \vbox (badness 10000) detected at line 417 +Underfull \vbox (badness 10000) detected at line 412 [] -Overfull \hbox (395.75pt too wide) detected at line 417 +Overfull \hbox (395.75pt too wide) detected at line 412 [] [] Chapter 2. -Overfull \hbox (30.0pt too wide) in paragraph at lines 423--423 +Overfull \hbox (30.0pt too wide) in paragraph at lines 418--418 | [] @@ -2385,9 +2397,10 @@ spec) spec) File: figures/r-console-rstudio.png Graphic file (type bmp) + [15] File: figures/r-console-capture.png Graphic file (type bmp) - [15] + (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -2419,56 +2432,112 @@ File: figures/R-console-script.png Graphic file (type bmp) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) +Underfull \vbox (badness 3439) detected at line 578 + [] + +[17] File: figures/windows-cmd-script.png Graphic file (type bmp) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [17] [18] [19] [20] +spec) [18] +Underfull \hbox (badness 1067) in paragraph at lines 602--603 +\TU/LucidaBrightOT(0)/m/n/10 While \TU/LucidaSansOT(0)/m/n/10 Markdown[][] \TU/ +LucidaBrightOT(0)/m/n/10 ($[][][][][] [] [] [] [][][][][][][][][][][][][][] [] +[][][] [] [][][][][][][][] [] [][][][][][][][][]$) is + [] + +[19] [20] LaTeX Font Info: Font shape `TU/LucidaBrightOT(0)/m/sl' in size <10> not ava ilable (Font) Font shape `TU/LucidaBrightOT(0)/m/it' tried instead on inp -ut line 625. - [21] [22] -Underfull \vbox (badness 10000) detected at line 651 +ut line 620. + +Underfull \hbox (badness 4096) in paragraph at lines 626--627 +\TU/LucidaSansOT(0)/m/n/10 RStudio[][] \TU/LucidaBrightOT(0)/m/n/10 installers +are available at Posit’s web site ($[][][][][] [] [] [] [][][][][] [] [][] [] + [] + +[21] +Underfull \vbox (badness 10000) has occurred while \output is active [] + + +Overfull \hbox (395.75pt too wide) has occurred while \output is active +[] + [] + + +Underfull \vbox (badness 10000) has occurred while \output is active [] + + +Overfull \hbox (395.75pt too wide) has occurred while \output is active +[] + [] + + +Underfull \vbox (badness 10000) has occurred while \output is active [] + + +Overfull \hbox (395.75pt too wide) has occurred while \output is active +[] + [] + + +Underfull \vbox (badness 10000) has occurred while \output is active [] + + +Overfull \hbox (395.75pt too wide) has occurred while \output is active +[] + [] + + +Underfull \hbox (badness 10000) has occurred while \output is active + [][][][] + [] + +[22 + +] +Underfull \vbox (badness 10000) detected at line 646 [] -Overfull \hbox (395.75pt too wide) detected at line 651 +Overfull \hbox (395.75pt too wide) detected at line 646 [] [] -Underfull \vbox (badness 10000) detected at line 651 +Underfull \vbox (badness 10000) detected at line 646 [] -Overfull \hbox (395.75pt too wide) detected at line 651 +Overfull \hbox (395.75pt too wide) detected at line 646 [] [] -Underfull \vbox (badness 10000) detected at line 651 +Underfull \vbox (badness 10000) detected at line 646 [] -Overfull \hbox (395.75pt too wide) detected at line 651 +Overfull \hbox (395.75pt too wide) detected at line 646 [] [] -Underfull \vbox (badness 10000) detected at line 651 +Underfull \vbox (badness 10000) detected at line 646 [] -Overfull \hbox (395.75pt too wide) detected at line 651 +Overfull \hbox (395.75pt too wide) detected at line 646 [] [] Chapter 3. -Overfull \hbox (30.0pt too wide) in paragraph at lines 657--657 +Overfull \hbox (30.0pt too wide) in paragraph at lines 652--652 | [] @@ -2479,7 +2548,6 @@ Underfull \hbox (badness 10000) has occurred while \output is active [23 - ] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -2526,6 +2594,8 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) [25] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -2560,7 +2630,10 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [26] +spec) +LaTeX Font Info: Font shape `TU/LucidaConsoleDK(0)/m/it' will be +(Font) scaled to size 8.40002pt on input line 850. + [26] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -2577,7 +2650,7 @@ spec) spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) -Underfull \vbox (badness 1077) detected at line 919 +Underfull \vbox (badness 4686) detected at line 928 [] [27] @@ -2623,11 +2696,6 @@ spec) spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) -Missing character: There is no ⨆ in font Lucida Bright OT/OT:script=latn;langua -ge=dflt;mapping=tex-text;! -Missing character: There is no ⨆ in font Lucida Bright OT/OT:script=latn;langua -ge=dflt;mapping=tex-text;! - (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -2639,8 +2707,6 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [29] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -2651,6 +2717,8 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [29] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -2667,7 +2735,11 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [31] +spec) +Overfull \vbox (1.5824pt too high) detected at line 1384 + [] + +[31] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -2687,11 +2759,14 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [32] +spec) +LaTeX Font Info: Font shape `TU/LucidaConsoleDK(0)/b/n' will be +(Font) scaled to size 10.50003pt on input line 1457. + (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) LaTeX Font Info: Font shape `TU/LucidaConsoleDK(2)/b/n' will be -(Font) scaled to size 8.9pt on input line 1440. +(Font) scaled to size 8.9pt on input line 1457. (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -2704,6 +2779,8 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [32] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -2718,7 +2795,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [33] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -2732,11 +2809,13 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [33] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [34] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -2761,7 +2840,7 @@ spec) spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) -Underfull \hbox (badness 1466) in paragraph at lines 1629--1630 +Underfull \hbox (badness 1527) in paragraph at lines 1646--1647 []\TU/LucidaBrightOT(0)/m/n/10 Another way of revealing the limited precision i s during conversion to [] @@ -2818,7 +2897,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [35] [36] +spec) [34] [35] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -2826,7 +2905,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [37] +spec) [36] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -2838,6 +2917,8 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [37] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -2860,7 +2941,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [38] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -2881,13 +2962,13 @@ spec) spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) -Underfull \hbox (badness 3977) in paragraph at lines 1922--1923 +Underfull \hbox (badness 4391) in paragraph at lines 1974--1975 [][][][][][] \TU/LucidaBrightOT(0)/m/n/10 Function [][][][][][][][][] accepts both bare names of objects as in the [] -Underfull \hbox (badness 1297) in paragraph at lines 1922--1923 +Underfull \hbox (badness 1354) in paragraph at lines 1974--1975 \TU/LucidaBrightOT(0)/m/n/10 chunk above and [][][][][][] strings corresponding to object names like in [] @@ -2916,7 +2997,9 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [39] +spec) [38] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -2932,6 +3015,8 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [39] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -2942,7 +3027,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [40] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -2956,15 +3041,17 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [40] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) -Underfull \hbox (badness 2735) in paragraph at lines 2122--2122 +Underfull \hbox (badness 1314) in paragraph at lines 2179--2179 [][]\TU/LucidaConsoleDK(0)/b/n/8 strwrap[][]\TU/LucidaConsoleDK(0)/m/n/8 ([][]x [] []=[] []"This is a long sentence used to show how line wrap- [] -[41] + (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -2980,7 +3067,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) +spec) [41] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -2990,20 +3077,27 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [42] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) -Overfull \hbox (10.14806pt too wide) in paragraph at lines 2214--2214 +Overfull \hbox (29.82977pt too wide) in paragraph at lines 2271--2271 []\TU/LucidaConsoleDK(0)/m/n/8 ## [1] "My friends like to eat apples, lichees, oranges, strawberries and other fruits."[] [] -Overfull \hbox (10.14806pt too wide) in paragraph at lines 2227--2227 +Underfull \hbox (badness 10000) in paragraph at lines 2280--2280 +[][]\TU/LucidaConsoleDK(0)/b/n/8 paste[][]\TU/LucidaConsoleDK(0)/m/n/8 ([][]"My + friends like to eat"[][],[] []\TU/LucidaConsoleDK(0)/b/n/8 paste[][]\TU/Lucida +ConsoleDK(0)/m/n/8 (fruits,[] []col- + [] + + +Overfull \hbox (29.82977pt too wide) in paragraph at lines 2284--2284 []\TU/LucidaConsoleDK(0)/m/n/8 ## [1] "My friends like to eat apples, lichees, oranges, strawberries and other fruits."[] [] @@ -3014,12 +3108,10 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) +spec) [42] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [43] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -3058,13 +3150,15 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [43] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [44] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -3090,7 +3184,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [45] +spec) [44] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -3119,12 +3213,12 @@ spec) spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) -Underfull \hbox (badness 4531) in paragraph at lines 2548--2549 +Underfull \hbox (badness 4120) in paragraph at lines 2605--2606 [][][][][][] []\TU/LucidaBrightOT(0)/b/n/10 3.13[] \TU/LucidaBrightOT(0)/m/n/10 How would you modify the last code example above to edit [] -[46] + (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -3153,21 +3247,19 @@ age=dflt;! (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) +spec) [45] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [47] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) +spec) [46] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [48] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -3185,11 +3277,13 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [47] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [49] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -3219,11 +3313,11 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [50] +spec) [48] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) +spec) [49] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -3237,7 +3331,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [51] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -3269,13 +3363,13 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [52] +spec) [50] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [53] +spec) [51] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -3295,7 +3389,11 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [54] +spec) +Underfull \vbox (badness 1178) detected at line 3291 + [] + +[52] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -3315,20 +3413,20 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(2)/m/n' will be -(Font) scaled to size 8.00085pt on input line 3261. +(Font) scaled to size 8.00085pt on input line 3320. LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(2)/m/n' will be -(Font) scaled to size 6.00064pt on input line 3261. +(Font) scaled to size 6.00064pt on input line 3320. LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(3)/m/n' will be -(Font) scaled to size 7.99915pt on input line 3261. +(Font) scaled to size 7.99915pt on input line 3320. LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(3)/m/n' will be -(Font) scaled to size 5.99936pt on input line 3261. - [55] [56] +(Font) scaled to size 5.99936pt on input line 3320. + [53] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) +spec) [54] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -3358,8 +3456,6 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [57] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -3376,19 +3472,25 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [55] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [58] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) +Underfull \vbox (badness 10000) detected at line 3733 + [] + +[56] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [59] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -3399,12 +3501,12 @@ spec) spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) -Underfull \hbox (badness 1259) in paragraph at lines 3721--3722 +Underfull \hbox (badness 1259) in paragraph at lines 3780--3781 []\TU/LucidaBrightOT(0)/m/n/10 Function [][][][][][][][][] is used to query the class of an object, and function [] - +[57] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -3412,17 +3514,21 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [60] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) +Underfull \vbox (badness 1231) detected at line 3955 + [] + +[58] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [61] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -3436,7 +3542,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [62] +spec) [59] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -3470,8 +3576,6 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [63] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -3484,6 +3588,8 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [60] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -3510,7 +3616,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [64] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -3527,6 +3633,10 @@ spec) spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) +Underfull \vbox (badness 2418) detected at line 4186 + [] + +[61] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -3538,9 +3648,9 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [65] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [66] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -3550,10 +3660,12 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [67] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [62] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -3564,14 +3676,16 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [68] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [69] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [63] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -3580,15 +3694,13 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [64] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) -Underfull \vbox (badness 6741) detected at line 4691 - [] - -[70] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -3596,7 +3708,9 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [71] +spec) [65] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [66] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -3604,7 +3718,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [72] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -3614,6 +3728,8 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [67] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -3626,11 +3742,11 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [73] [74] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [75] +spec) [68] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [76] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -3641,28 +3757,52 @@ spec) spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) -\c@kmargincount=\count479 - (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [77] -Underfull \hbox (badness 10000) detected at line 5385 - [][] - [] - - -Underfull \hbox (badness 10000) detected at line 5385 -[][][] - [] - - -Underfull \hbox (badness 10000) detected at line 5386 - [][] +spec) +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [69] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [70] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [71] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [72] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) +\c@kmargincount=\count479 + [73] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [74] +Underfull \hbox (badness 10000) detected at line 5513 + [][] + [] + + +Underfull \hbox (badness 10000) detected at line 5513 +[][][] + [] + + +Underfull \hbox (badness 10000) detected at line 5514 + [][] [] -Underfull \hbox (badness 10000) detected at line 5386 +Underfull \hbox (badness 10000) detected at line 5514 [][][] [] @@ -3670,7 +3810,7 @@ Underfull \hbox (badness 10000) detected at line 5386 (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [78] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -3678,14 +3818,24 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [79] +spec) [75] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [76] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) -Underfull \hbox (badness 7326) in paragraph at lines 5489--5490 -[]\TU/LucidaBrightOT(0)/m/n/10 Other operators and functions for matrix algebra - like cross-product +Underfull \hbox (badness 1137) in paragraph at lines 5676--5677 +[]\TU/LucidaBrightOT(0)/m/n/10 Additional operators and functions for matrix al +gebra like cross-product [] @@ -3710,7 +3860,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [80] +spec) [77] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -3735,21 +3885,10 @@ spec) spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [81] -Underfull \hbox (badness 1033) in paragraph at lines 5596--5596 -[][]\TU/LucidaConsoleDK(0)/b/n/8 factor[][]\TU/LucidaConsoleDK(0)/m/n/8 ([][]x[ -] []=[] []\TU/LucidaConsoleDK(0)/b/n/8 c[][]\TU/LucidaConsoleDK(0)/m/n/8 ([][]" -a"[][],[] []"a"[][],[] []"b"[][],[] []"b"[][],[] []"b"[][],[] []"a"[][]),[] []l -evels[] []=[] []\TU/LucidaConsoleDK(0)/b/n/8 c[][]\TU/LucidaConsoleDK(0)/m/n/8 -([][]"a"[][],[] []"b"[][]),[] []la- - [] - - (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) +spec) [78] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -3763,12 +3902,14 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [82] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [79] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -3785,7 +3926,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [83] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -3796,6 +3937,14 @@ spec) spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) +Underfull \hbox (badness 6032) in paragraph at lines 6003--6003 +[][]\TU/LucidaConsoleDK(0)/m/n/8 fct4[] []<-[] []\TU/LucidaConsoleDK(0)/b/n/8 f +actor[][]\TU/LucidaConsoleDK(0)/m/n/8 ([][]\TU/LucidaConsoleDK(0)/b/n/8 c[][]\T +U/LucidaConsoleDK(0)/m/n/8 ([][]"treated"[][],[] []"treated"[][],[] []"control" +[][],[] []"control"[][],[] []"con- + [] + + (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -3803,51 +3952,68 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [84] +spec) [80] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) +Overfull \hbox (7.88054pt too wide) in paragraph at lines 6100--6100 +[][]\TU/LucidaConsoleDK(0)/m/n/8 FCT2[] []<-[] []\TU/LucidaConsoleDK(0)/b/n/8 f +actor[][]\TU/LucidaConsoleDK(0)/m/n/8 ([][]\TU/LucidaConsoleDK(0)/b/n/8 rep[][] +\TU/LucidaConsoleDK(0)/m/n/8 ([][]\TU/LucidaConsoleDK(0)/b/n/8 c[][]\TU/LucidaC +onsoleDK(0)/m/n/8 ([][]"A"[][],[] []"F"[][],[] []"B"[][],[] []"Z"[][]),[] []tim +es[] []=[] []\TU/LucidaConsoleDK(0)/b/n/8 rep[][]\TU/LucidaConsoleDK(0)/m/n/8 ( +[][]3[][],[] []times[] []=[] []4[][])))[] []\TU/LucidaConsoleDK(0)/m/it/8 # nes +ted calls[][] + [] + + (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) +Underfull \vbox (badness 5893) detected at line 6121 + [] + +[81] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [85] [86] -Underfull \vbox (badness 10000) detected at line 5950 +spec) [82] +Underfull \vbox (badness 10000) detected at line 6148 [] -Overfull \hbox (395.75pt too wide) detected at line 5950 +Overfull \hbox (395.75pt too wide) detected at line 6148 [] [] -Underfull \vbox (badness 10000) detected at line 5950 +Underfull \vbox (badness 10000) detected at line 6148 [] -Overfull \hbox (395.75pt too wide) detected at line 5950 +Overfull \hbox (395.75pt too wide) detected at line 6148 [] [] -Underfull \vbox (badness 10000) detected at line 5950 +Underfull \vbox (badness 10000) detected at line 6148 [] -Overfull \hbox (395.75pt too wide) detected at line 5950 +Overfull \hbox (395.75pt too wide) detected at line 6148 [] [] -Underfull \vbox (badness 10000) detected at line 5950 +Underfull \vbox (badness 10000) detected at line 6148 [] -Overfull \hbox (395.75pt too wide) detected at line 5950 +Overfull \hbox (395.75pt too wide) detected at line 6148 [] [] Chapter 4. -Overfull \hbox (30.0pt too wide) in paragraph at lines 5956--5956 +Overfull \hbox (30.0pt too wide) in paragraph at lines 6154--6154 | [] @@ -3856,7 +4022,7 @@ Underfull \hbox (badness 10000) has occurred while \output is active [][][][] [] -[87 +[83 ] @@ -3864,10 +4030,8 @@ Underfull \hbox (badness 10000) has occurred while \output is active spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) -Overfull \vbox (1.63309pt too high) detected at line 5988 - [] - -[88] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [84] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -3881,7 +4045,7 @@ spec) LaTeX Font Info: Font shape `TU/LucidaSansOT(0)/m/sl' in size <8> not availa ble (Font) Font shape `TU/LucidaSansOT(0)/m/it' tried instead on input - line 6041. + line 6241. (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -3896,7 +4060,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [89] +spec) [85] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -3912,7 +4076,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [90] +spec) [86] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -3928,13 +4092,13 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [91] +spec) [87] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [92] +spec) [88] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -3946,19 +4110,23 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [93] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) +Overfull \vbox (1.10246pt too high) detected at line 6658 + [] + +[89] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [94] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -3972,6 +4140,8 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [90] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -3982,7 +4152,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [95] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -3992,10 +4162,12 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [96] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [91] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -4008,25 +4180,31 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [92] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [97] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [98] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [99] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) +Underfull \vbox (badness 1442) detected at line 6995 + [] + +[93] [94] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -4044,7 +4222,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [100] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -4052,6 +4230,10 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [95] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [96] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -4064,15 +4246,17 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [101] [102] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [97] [98] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [103] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -4105,10 +4289,8 @@ spec) spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) -Underfull \vbox (badness 2644) detected at line 7311 - [] - -[104] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [99] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -4144,7 +4326,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [105] +spec) [100] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -4166,7 +4348,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [106] +spec) [101] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -4182,11 +4364,20 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [107] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [102] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) +Overfull \hbox (18.01091pt too wide) in paragraph at lines 7730--7730 +[][]\TU/LucidaConsoleDK(0)/b/n/8 aggregate[][]\TU/LucidaConsoleDK(0)/m/n/8 ([][ +]x[] []= iris[ ,[] []\TU/LucidaConsoleDK(0)/b/n/8 sapply[][]\TU/LucidaConsoleDK +(0)/m/n/8 (iris, is.numeric)],[] []by[] []=[] []\TU/LucidaConsoleDK(0)/b/n/8 li +st[][]\TU/LucidaConsoleDK(0)/m/n/8 (iris[][]$[][]Species),[] []FUN[] []= mean)[ +][] + [] + + (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -4200,11 +4391,11 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [108] +spec) [103] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [109] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -4231,6 +4422,10 @@ spec) spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) +Underfull \vbox (badness 5091) detected at line 7893 + [] + +[104] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -4252,7 +4447,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [110] +spec) [105] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -4276,14 +4471,14 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [111] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [106] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -4298,12 +4493,12 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) -LaTeX Warning: Reference `sec:calc:looking:at:data' on page 112 undefined on in -put line 7824. +LaTeX Warning: Reference `sec:calc:looking:at:data' on page 107 undefined on in +put line 8027. -LaTeX Warning: Reference `sec:calc:looking:at:data' on page 112 undefined on in -put line 7824. +LaTeX Warning: Reference `sec:calc:looking:at:data' on page 107 undefined on in +put line 8027. (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -4339,9 +4534,11 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [112] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [113] +spec) +Overfull \vbox (0.81264pt too high) detected at line 8069 + [] + +[107] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -4355,7 +4552,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [114] +spec) [108] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -4391,11 +4588,11 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) +spec) [109] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [115] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -4407,6 +4604,8 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [110] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -4415,7 +4614,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [116] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -4423,12 +4622,12 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) -LaTeX Warning: Reference `sec:calc:looking:at:data' on page 117 undefined on in -put line 8095. +LaTeX Warning: Reference `sec:calc:looking:at:data' on page 111 undefined on in +put line 8308. -LaTeX Warning: Reference `sec:calc:looking:at:data' on page 117 undefined on in -put line 8095. +LaTeX Warning: Reference `sec:calc:looking:at:data' on page 111 undefined on in +put line 8308. (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -4440,7 +4639,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [117] +spec) [111] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -4450,12 +4649,10 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) +spec) [112] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [118] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -4464,11 +4661,13 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [113] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [119] +spec) File: figure/pos-plot-1-1.pdf Graphic file (type pdf) @@ -4486,7 +4685,7 @@ spec) spec) File: figure/pos-plot-2-1.pdf Graphic file (type pdf) - + [114] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -4496,12 +4695,12 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [120] +spec) File: figure/pos-plot-3-1.pdf Graphic file (type pdf) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) +spec) [115] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -4509,51 +4708,90 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [121] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [122] -Underfull \vbox (badness 10000) detected at line 8393 +spec) [116] [117] +Underfull \vbox (badness 10000) has occurred while \output is active [] + + +Overfull \hbox (395.75pt too wide) has occurred while \output is active +[] + [] + + +Underfull \vbox (badness 10000) has occurred while \output is active [] + + +Overfull \hbox (395.75pt too wide) has occurred while \output is active +[] + [] + + +Underfull \vbox (badness 10000) has occurred while \output is active [] + + +Overfull \hbox (395.75pt too wide) has occurred while \output is active +[] + [] + + +Underfull \vbox (badness 10000) has occurred while \output is active [] + + +Overfull \hbox (395.75pt too wide) has occurred while \output is active +[] + [] + + +Underfull \hbox (badness 10000) has occurred while \output is active + [][][][] + [] + +[118 + +] +Underfull \vbox (badness 10000) detected at line 8606 [] -Overfull \hbox (395.75pt too wide) detected at line 8393 +Overfull \hbox (395.75pt too wide) detected at line 8606 [] [] -Underfull \vbox (badness 10000) detected at line 8393 +Underfull \vbox (badness 10000) detected at line 8606 [] -Overfull \hbox (395.75pt too wide) detected at line 8393 +Overfull \hbox (395.75pt too wide) detected at line 8606 [] [] -Underfull \vbox (badness 10000) detected at line 8393 +Underfull \vbox (badness 10000) detected at line 8606 [] -Overfull \hbox (395.75pt too wide) detected at line 8393 +Overfull \hbox (395.75pt too wide) detected at line 8606 [] [] -Underfull \vbox (badness 10000) detected at line 8393 +Underfull \vbox (badness 10000) detected at line 8606 [] -Overfull \hbox (395.75pt too wide) detected at line 8393 +Overfull \hbox (395.75pt too wide) detected at line 8606 [] [] Chapter 5. -Overfull \hbox (30.0pt too wide) in paragraph at lines 8400--8400 +Overfull \hbox (30.0pt too wide) in paragraph at lines 8613--8613 | [] @@ -4562,8 +4800,7 @@ Underfull \hbox (badness 10000) has occurred while \output is active [][][][] [] -[123 - +[119 ] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -4571,20 +4808,22 @@ spec) LaTeX Font Info: Font shape `TU/LucidaBrightOT(0)/m/sl' in size <9> not avai lable (Font) Font shape `TU/LucidaBrightOT(0)/m/it' tried instead on inp -ut line 8438. +ut line 8651. +LaTeX Font Info: Font shape `TU/LucidaConsoleDK(0)/m/n' will be +(Font) scaled to size 9.45003pt on input line 8652. (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) LaTeX Font Info: Font shape `TU/LucidaConsoleDK(2)/m/n' will be -(Font) scaled to size 8.01pt on input line 8439. +(Font) scaled to size 8.01pt on input line 8652. (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(2)/m/n' will be -(Font) scaled to size 9.00096pt on input line 8441. +(Font) scaled to size 9.00096pt on input line 8654. LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(3)/m/n' will be -(Font) scaled to size 8.99904pt on input line 8441. - [124] +(Font) scaled to size 8.99904pt on input line 8654. + [120] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -4592,57 +4831,57 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [125] -Underfull \hbox (badness 10000) detected at line 8517 +spec) [121] +Underfull \hbox (badness 10000) detected at line 8730 [][] [] -Underfull \hbox (badness 10000) detected at line 8517 +Underfull \hbox (badness 10000) detected at line 8730 [][][] [] -Underfull \hbox (badness 10000) detected at line 8518 +Underfull \hbox (badness 10000) detected at line 8731 [][] [] -Underfull \hbox (badness 10000) detected at line 8518 +Underfull \hbox (badness 10000) detected at line 8731 [][][] [] -Underfull \hbox (badness 10000) detected at line 8519 +Underfull \hbox (badness 10000) detected at line 8732 [][] [] -Underfull \hbox (badness 10000) detected at line 8519 +Underfull \hbox (badness 10000) detected at line 8732 [][][] [] -Underfull \hbox (badness 10000) detected at line 8520 +Underfull \hbox (badness 10000) detected at line 8733 [][] [] -Underfull \hbox (badness 10000) detected at line 8520 +Underfull \hbox (badness 10000) detected at line 8733 [][][] [] -Underfull \hbox (badness 10000) detected at line 8521 +Underfull \hbox (badness 10000) detected at line 8734 [][] [] -Underfull \hbox (badness 10000) detected at line 8521 +Underfull \hbox (badness 10000) detected at line 8734 [][][] [] -[126] +[122] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -4656,19 +4895,19 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [127] [128] +spec) [123] [124] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [129] +spec) [125] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [130] +spec) [126] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [131] +spec) [127] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -4688,7 +4927,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [132] +spec) [128] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -4704,7 +4943,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [133] +spec) [129] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -4720,13 +4959,16 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [134] +spec) [130] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [135] +spec) [131] +LaTeX Font Info: Font shape `TU/LucidaConsoleDK(0)/b/n' will be +(Font) scaled to size 11.55003pt on input line 9197. + (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) LaTeX Font Info: Font shape `TU/LucidaConsoleDK(2)/b/n' will be -(Font) scaled to size 9.79pt on input line 8984. +(Font) scaled to size 9.79pt on input line 9197. (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -4757,8 +4999,6 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [136] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -4767,7 +5007,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) +spec) [132] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -4785,7 +5025,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [137] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -4817,6 +5057,8 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [133] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -4829,7 +5071,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [138] +spec) [134] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -4843,8 +5085,6 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [139] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -4871,6 +5111,8 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [135] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -4893,7 +5135,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [140] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -4919,7 +5161,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [141] +spec) [136] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -4948,7 +5190,7 @@ spec) spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) -Underfull \hbox (badness 2096) in paragraph at lines 9324--9325 +Underfull \hbox (badness 1831) in paragraph at lines 9537--9538 [][][][][][] []\TU/LucidaBrightOT(0)/b/n/10 5.10[] \TU/LucidaBrightOT(0)/m/n/10 Continue playing with the use of the switch statement. Explore [] @@ -4957,9 +5199,11 @@ Underfull \hbox (badness 2096) in paragraph at lines 9324--9325 (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [142] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) +Underfull \vbox (badness 2165) detected at line 9565 + [] + +[137] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -5021,11 +5265,13 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [138] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [143] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -5063,7 +5309,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [144] +spec) [139] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -5076,6 +5322,12 @@ spec) spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) +Underfull \hbox (badness 1789) in paragraph at lines 9703--9704 +[][][][][][] []\TU/LucidaBrightOT(0)/b/n/10 5.13[] \TU/LucidaBrightOT(0)/m/n/10 + Continuing from the playground above, test the behaviour of + [] + + (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -5085,7 +5337,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [145] +spec) [140] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -5113,7 +5365,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [146] +spec) [141] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -5127,7 +5379,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [147] +spec) [142] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -5167,7 +5419,11 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [148] +spec) +Underfull \vbox (badness 1895) detected at line 9941 + [] + +[143] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -5205,8 +5461,6 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [149] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -5217,6 +5471,8 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [144] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -5229,7 +5485,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [150] +spec) [145] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -5259,8 +5515,6 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [151] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -5271,6 +5525,8 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [146] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -5279,9 +5535,13 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [152] +spec) +Underfull \vbox (badness 10000) detected at line 10251 + [] + +[147] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [153] +spec) [148] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -5325,7 +5585,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [154] +spec) [149] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -5333,8 +5593,6 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [155] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -5347,7 +5605,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) +spec) [150] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -5395,14 +5653,14 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [156] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [151] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -5413,7 +5671,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [157] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -5429,6 +5687,8 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [152] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -5439,7 +5699,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [158] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -5471,7 +5731,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [159] +spec) [153] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -5485,7 +5745,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) +spec) [154] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -5493,8 +5753,6 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [160] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -5507,7 +5765,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) +spec) [155] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -5517,7 +5775,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [161] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -5553,7 +5811,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [162] +spec) [156] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -5569,11 +5827,13 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [157] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [163] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -5583,7 +5843,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [164] +spec) [158] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -5599,45 +5859,45 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [165] [166] -Underfull \vbox (badness 10000) detected at line 10825 +spec) [159] [160] +Underfull \vbox (badness 10000) detected at line 11038 [] -Overfull \hbox (395.75pt too wide) detected at line 10825 +Overfull \hbox (395.75pt too wide) detected at line 11038 [] [] -Underfull \vbox (badness 10000) detected at line 10825 +Underfull \vbox (badness 10000) detected at line 11038 [] -Overfull \hbox (395.75pt too wide) detected at line 10825 +Overfull \hbox (395.75pt too wide) detected at line 11038 [] [] -Underfull \vbox (badness 10000) detected at line 10825 +Underfull \vbox (badness 10000) detected at line 11038 [] -Overfull \hbox (395.75pt too wide) detected at line 10825 +Overfull \hbox (395.75pt too wide) detected at line 11038 [] [] -Underfull \vbox (badness 10000) detected at line 10825 +Underfull \vbox (badness 10000) detected at line 11038 [] -Overfull \hbox (395.75pt too wide) detected at line 10825 +Overfull \hbox (395.75pt too wide) detected at line 11038 [] [] Chapter 6. -Overfull \hbox (30.0pt too wide) in paragraph at lines 10831--10831 +Overfull \hbox (30.0pt too wide) in paragraph at lines 11044--11044 | [] @@ -5646,7 +5906,7 @@ Underfull \hbox (badness 10000) has occurred while \output is active [][][][] [] -[167 +[161 ] @@ -5659,7 +5919,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [168] +spec) [162] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -5673,7 +5933,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [169] +spec) [163] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -5691,11 +5951,9 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [170] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) +spec) [164] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -5717,7 +5975,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [171] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -5727,15 +5985,17 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [165] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) -Overfull \hbox (34.94408pt too wide) in paragraph at lines 11179--11179 +Overfull \hbox (56.4927pt too wide) in paragraph at lines 11392--11392 []\TU/LucidaConsoleDK(0)/m/n/8 ## stop(gettextf("number of offsets is %d, should equal %d (number of observations)",[] [] -[172] +[166] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -5745,21 +6005,19 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [173] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [174] +spec) [167] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) +spec) [168] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [175] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -5767,6 +6025,8 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [169] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -5775,17 +6035,9 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [176] -Underfull \vbox (badness 1097) detected at line 11519 - [] - - -Underfull \vbox (badness 1097) detected at line 11519 - [] - -[177] +spec) [170] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [178] [179] +spec) [171] [172] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -5797,14 +6049,12 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) +spec) [173] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [180] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -5815,12 +6065,14 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [181] [182] +spec) [174] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) +spec) [175] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [176] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -5829,92 +6081,53 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [183] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) -Underfull \vbox (badness 10000) detected at line 11821 - [] - -[184] [185] -Underfull \vbox (badness 10000) has occurred while \output is active [] - - -Overfull \hbox (395.75pt too wide) has occurred while \output is active -[] - [] - - -Underfull \vbox (badness 10000) has occurred while \output is active [] - - -Overfull \hbox (395.75pt too wide) has occurred while \output is active -[] - [] - - -Underfull \vbox (badness 10000) has occurred while \output is active [] - - -Overfull \hbox (395.75pt too wide) has occurred while \output is active -[] - [] - - -Underfull \vbox (badness 10000) has occurred while \output is active [] - - -Overfull \hbox (395.75pt too wide) has occurred while \output is active -[] - [] - - -Underfull \hbox (badness 10000) has occurred while \output is active - [][][][] +Underfull \vbox (badness 10000) detected at line 12034 [] -[186 - -] -Underfull \vbox (badness 10000) detected at line 11836 +[177] [178] +Underfull \vbox (badness 10000) detected at line 12049 [] -Overfull \hbox (395.75pt too wide) detected at line 11836 +Overfull \hbox (395.75pt too wide) detected at line 12049 [] [] -Underfull \vbox (badness 10000) detected at line 11836 +Underfull \vbox (badness 10000) detected at line 12049 [] -Overfull \hbox (395.75pt too wide) detected at line 11836 +Overfull \hbox (395.75pt too wide) detected at line 12049 [] [] -Underfull \vbox (badness 10000) detected at line 11836 +Underfull \vbox (badness 10000) detected at line 12049 [] -Overfull \hbox (395.75pt too wide) detected at line 11836 +Overfull \hbox (395.75pt too wide) detected at line 12049 [] [] -Underfull \vbox (badness 10000) detected at line 11836 +Underfull \vbox (badness 10000) detected at line 12049 [] -Overfull \hbox (395.75pt too wide) detected at line 11836 +Overfull \hbox (395.75pt too wide) detected at line 12049 [] [] Chapter 7. -Overfull \hbox (30.0pt too wide) in paragraph at lines 11842--11842 +Overfull \hbox (30.0pt too wide) in paragraph at lines 12055--12055 | [] @@ -5949,7 +6162,8 @@ Underfull \hbox (badness 10000) has occurred while \output is active [][][][] [] -[187 +[179 + ] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -5965,7 +6179,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [188] +spec) [180] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -6049,7 +6263,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [189] +spec) [181] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) File: figure/pos-distrib-01b-1.pdf Graphic file (type pdf) @@ -6060,7 +6274,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [190] +spec) [182] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -6072,7 +6286,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [191] +spec) [183] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -6094,38 +6308,36 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [192] +spec) [184] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [193] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) -LaTeX Font Info: Calculating math sizes for size <11> on input line 12192. +LaTeX Font Info: Calculating math sizes for size <11> on input line 12405. LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(2)/m/n' will be -(Font) scaled to size 11.00117pt on input line 12192. +(Font) scaled to size 11.00117pt on input line 12405. LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(2)/m/n' will be -(Font) scaled to size 7.70078pt on input line 12192. +(Font) scaled to size 7.70078pt on input line 12405. LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(2)/m/n' will be -(Font) scaled to size 5.50058pt on input line 12192. +(Font) scaled to size 5.50058pt on input line 12405. LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(3)/m/n' will be -(Font) scaled to size 10.99883pt on input line 12192. +(Font) scaled to size 10.99883pt on input line 12405. LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(3)/m/n' will be -(Font) scaled to size 7.69914pt on input line 12192. +(Font) scaled to size 7.69914pt on input line 12405. LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(3)/m/n' will be -(Font) scaled to size 5.4994pt on input line 12192. +(Font) scaled to size 5.4994pt on input line 12405. (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) +spec) [185] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [194] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -6144,6 +6356,8 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [186] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -6162,7 +6376,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [195] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -6170,6 +6384,8 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [187] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -6190,7 +6406,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [196] +spec) [188] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -6212,8 +6428,6 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [197] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -6228,16 +6442,14 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) +spec) [189] File: figure/pos-models-1a-1.pdf Graphic file (type pdf) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [198] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [199] +spec) [190] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -6259,9 +6471,13 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [200] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) +Underfull \vbox (badness 1014) detected at line 12778 + [] + +[191] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -6309,6 +6525,8 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [192] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -6342,6 +6560,12 @@ spec) spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) +Overfull \hbox (6.19205pt too wide) in paragraph at lines 12926--12926 +[]\TU/LucidaConsoleDK(0)/m/n/8 ## - attr(*, "heading")= chr [1:2] "Analysis of + Variance Table\n" "Response: dist"[] + [] + + (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -6350,10 +6574,10 @@ spec) spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) -Underfull \vbox (badness 1859) detected at line 12804 +Underfull \vbox (badness 10000) detected at line 13017 [] -[201] [202] [203] +[193] [194] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -6362,6 +6586,14 @@ spec) spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) +Underfull \hbox (badness 10000) in paragraph at lines 13044--13044 +[][]\TU/LucidaConsoleDK(0)/b/n/8 cat[][]\TU/LucidaConsoleDK(0)/m/n/8 ([][]"slop +e ="[][],[] []\TU/LucidaConsoleDK(0)/b/n/8 signif[][]\TU/LucidaConsoleDK(0)/m/n +/8 (est.slope.value,[] []3[][]),[] []"with s.e. ="[][],[] []\TU/LucidaConsoleDK +(0)/b/n/8 sig- + [] + + (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -6375,9 +6607,11 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [204] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) +Underfull \vbox (badness 8019) detected at line 13062 + [] + +[195] [196] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -6385,7 +6619,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [205] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -6404,6 +6638,8 @@ spec) spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [197] File: figure/pos-model-6a-1.pdf Graphic file (type pdf) @@ -6418,8 +6654,6 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [206] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -6428,6 +6662,8 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [198] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -6440,7 +6676,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [207] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -6461,22 +6697,22 @@ spec) spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) -Overfull \hbox (36.5521pt too wide) in paragraph at lines 13032--13032 +Overfull \hbox (58.18103pt too wide) in paragraph at lines 13245--13245 []\TU/LucidaConsoleDK(0)/m/n/8 ## lm(formula = count ~ spray, data = InsectSpra ys, contrasts = list(spray = contr.treatment))[] [] -[208] +[199] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) -Overfull \hbox (7.60808pt too wide) in paragraph at lines 13083--13083 +Overfull \hbox (27.78973pt too wide) in paragraph at lines 13296--13296 []\TU/LucidaConsoleDK(0)/m/n/8 ## lm(formula = count ~ spray, data = InsectSpra ys, contrasts = list(spray = contr.sum))[] [] - +[200] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -6492,8 +6728,6 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [209] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -6516,7 +6750,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) +spec) [201] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -6530,8 +6764,6 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [210] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -6554,9 +6786,11 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [202] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [211] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -6588,7 +6822,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [212] +spec) [203] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -6596,11 +6830,9 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [213] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) +spec) [204] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -6608,6 +6840,8 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [205] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -6622,7 +6856,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [214] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -6636,10 +6870,12 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [215] +spec) [206] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) File: figure/pos-model-11-1.pdf Graphic file (type pdf) - [216] + [207] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -6657,7 +6893,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [217] +spec) [208] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -6707,7 +6943,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [218] +spec) [209] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -6718,19 +6954,23 @@ spec) spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) -Overfull \hbox (320.49217pt too wide) in paragraph at lines 13730--13730 +Overfull \hbox (355.69205pt too wide) in paragraph at lines 13943--13943 []\TU/LucidaConsoleDK(0)/m/n/8 ## $ call : language nls(formula = rate ~ SSmicmen(conc, Vm, K), data = Puromycin, subset = state == "treated", alg orithm = "defa| __truncated__ ...[] [] -[219] + +Underfull \vbox (badness 3525) detected at line 13970 + [] + +[210] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [220] +spec) [211] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -6773,7 +7013,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [221] +spec) [212] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -6799,7 +7039,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [222] +spec) [213] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -6831,11 +7071,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) -Underfull \vbox (badness 1097) detected at line 14065 - [] - -[223] +spec) [214] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -6843,32 +7079,30 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [224] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [225] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [226] +spec) [215] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) +spec) [216] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [227] +spec) [217] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [218] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -6878,7 +7112,9 @@ spec) spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) -Underfull \hbox (badness 1533) in paragraph at lines 14387--14388 +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) +Underfull \hbox (badness 1596) in paragraph at lines 14600--14601 []\TU/LucidaBrightOT(0)/m/n/10 As could be expected, a conversion constructor i s available with name [] @@ -6899,9 +7135,27 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [228] [229] [230] [231] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) +Overfull \vbox (1.79254pt too high) detected at line 14796 + [] + +[219] +Underfull \vbox (badness 10000) detected at line 14796 + [] + + +Underfull \vbox (badness 10000) detected at line 14796 + [] + +[220] +Underfull \vbox (badness 10000) detected at line 14796 + [] + + +Underfull \vbox (badness 10000) detected at line 14796 + [] + +[221] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -6925,16 +7179,18 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [232] +spec) [222] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) File: figure/pos-ts-03plot-1.pdf Graphic file (type pdf) - + [223] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [233] +spec) File: figure/pos-ts-05-1.pdf Graphic file (type pdf) @@ -6943,7 +7199,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) +spec) [224] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -6953,8 +7209,6 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [234] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -6969,9 +7223,11 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [225] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [235] [236] +spec) [226] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -6997,7 +7253,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [237] +spec) [227] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) File: figure/pos-pca-05-1.pdf Graphic file (type pdf) @@ -7007,118 +7263,79 @@ File: figure/pos-pca-05-1.pdf Graphic file (type pdf) spec) File: figure/pos-pca-04-1.pdf Graphic file (type pdf) - [238] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [239] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) -File: figure/pos-mds-03-1.pdf Graphic file (type pdf) - - [240] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [241] -File: figure/pos-cluster-02-1.pdf Graphic file (type pdf) - - + [228] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [242] [243] -Underfull \vbox (badness 10000) has occurred while \output is active [] - - -Overfull \hbox (395.75pt too wide) has occurred while \output is active -[] - [] - - -Underfull \vbox (badness 10000) has occurred while \output is active [] - - -Overfull \hbox (395.75pt too wide) has occurred while \output is active -[] - [] - - -Underfull \vbox (badness 10000) has occurred while \output is active [] - - -Overfull \hbox (395.75pt too wide) has occurred while \output is active -[] - [] - - -Underfull \vbox (badness 10000) has occurred while \output is active [] - - -Overfull \hbox (395.75pt too wide) has occurred while \output is active -[] - [] - - -Underfull \hbox (badness 10000) has occurred while \output is active - [][][][] - [] +spec) +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [229] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) +File: figure/pos-mds-03-1.pdf Graphic file (type pdf) + -[244 +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [230] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) +File: figure/pos-cluster-02-1.pdf Graphic file (type pdf) + -] -Underfull \vbox (badness 10000) detected at line 15243 +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [231] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [232] +Underfull \vbox (badness 10000) detected at line 15456 [] -Overfull \hbox (395.75pt too wide) detected at line 15243 +Overfull \hbox (395.75pt too wide) detected at line 15456 [] [] -Underfull \vbox (badness 10000) detected at line 15243 +Underfull \vbox (badness 10000) detected at line 15456 [] -Overfull \hbox (395.75pt too wide) detected at line 15243 +Overfull \hbox (395.75pt too wide) detected at line 15456 [] [] -Underfull \vbox (badness 10000) detected at line 15243 +Underfull \vbox (badness 10000) detected at line 15456 [] -Overfull \hbox (395.75pt too wide) detected at line 15243 +Overfull \hbox (395.75pt too wide) detected at line 15456 [] [] -Underfull \vbox (badness 10000) detected at line 15243 +Underfull \vbox (badness 10000) detected at line 15456 [] -Overfull \hbox (395.75pt too wide) detected at line 15243 +Overfull \hbox (395.75pt too wide) detected at line 15456 [] [] Chapter 8. -Overfull \hbox (30.0pt too wide) in paragraph at lines 15249--15249 +Overfull \hbox (30.0pt too wide) in paragraph at lines 15462--15462 | [] @@ -7127,9 +7344,10 @@ Underfull \hbox (badness 10000) has occurred while \output is active [][][][] [] -[245 +[233 + -] [246] +] [234] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -7139,18 +7357,17 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) -Overfull \vbox (0.8988pt too high) detected at line 15274 - [] +spec) [235] +LaTeX Font Info: Font shape `TU/LucidaConsoleDK(0)/b/n' will be +(Font) scaled to size 12.60004pt on input line 15520. -[247] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) LaTeX Font Info: Font shape `TU/LucidaConsoleDK(2)/b/n' will be -(Font) scaled to size 10.68pt on input line 15307. +(Font) scaled to size 10.68pt on input line 15520. (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [248] +spec) [236] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -7159,17 +7376,16 @@ spec) spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) +LaTeX Font Info: Font shape `TU/LucidaConsoleDK(0)/m/it' will be +(Font) scaled to size 10.50003pt on input line 15536. + (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) LaTeX Font Info: Font shape `TU/LucidaConsoleDK(2)/m/it' will be -(Font) scaled to size 8.9pt on input line 15323. +(Font) scaled to size 8.9pt on input line 15536. (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) -Underfull \vbox (badness 1178) detected at line 15333 - [] - -[249] +spec) [237] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -7199,7 +7415,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [250] +spec) [238] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -7211,10 +7427,10 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [251] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [239] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -7227,14 +7443,12 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [252] +spec) [240] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [253] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -7251,9 +7465,11 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [254] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) +Underfull \vbox (badness 5578) detected at line 15934 + [] + +[241] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -7267,7 +7483,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) +spec) [242] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -7281,8 +7497,6 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [255] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -7299,6 +7513,8 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [243] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -7311,7 +7527,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [256] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -7327,6 +7543,8 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [244] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -7341,7 +7559,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [257] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -7355,9 +7573,13 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [258] +spec) [245] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) +Overfull \vbox (1.86848pt too high) detected at line 16225 + [] + +[246] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -7371,7 +7593,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [259] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -7384,12 +7606,16 @@ spec) spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) +Underfull \vbox (badness 1303) detected at line 16306 + [] + +[247] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [260] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -7407,7 +7633,9 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [261] +spec) +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [248] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -7425,7 +7653,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) -LaTeX Warning: Reference `' on page 262 undefined on input line 16156. +LaTeX Warning: Reference `' on page 249 undefined on input line 16369. (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -7443,11 +7671,11 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) +spec) [249] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [262] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -7473,7 +7701,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [263] +spec) [250] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -7511,15 +7739,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [264] -Underfull \vbox (badness 3919) detected at line 16462 - [] - - -Underfull \vbox (badness 3919) detected at line 16462 - [] - -[265] +spec) [251] [252] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -7553,17 +7773,15 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [266] +spec) [253] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [267] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) +spec) [254] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -7573,61 +7791,63 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [268] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [255] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [269] [270] -Underfull \vbox (badness 10000) detected at line 16770 +spec) [256] +Underfull \vbox (badness 10000) detected at line 16983 [] -Overfull \hbox (395.75pt too wide) detected at line 16770 +Overfull \hbox (395.75pt too wide) detected at line 16983 [] [] -Underfull \vbox (badness 10000) detected at line 16770 +Underfull \vbox (badness 10000) detected at line 16983 [] -Overfull \hbox (395.75pt too wide) detected at line 16770 +Overfull \hbox (395.75pt too wide) detected at line 16983 [] [] -Underfull \vbox (badness 10000) detected at line 16770 +Underfull \vbox (badness 10000) detected at line 16983 [] -Overfull \hbox (395.75pt too wide) detected at line 16770 +Overfull \hbox (395.75pt too wide) detected at line 16983 [] [] -Underfull \vbox (badness 10000) detected at line 16770 +Underfull \vbox (badness 10000) detected at line 16983 [] -Overfull \hbox (395.75pt too wide) detected at line 16770 +Overfull \hbox (395.75pt too wide) detected at line 16983 [] [] Chapter 9. -Underfull \hbox (badness 2503) in paragraph at lines 16772--16774 +Underfull \hbox (badness 2503) in paragraph at lines 16985--16987 \TU/LucidaBrightOT(0)/m/n/10 The commonality between science and art is in try ing to see [] -Overfull \hbox (30.0pt too wide) in paragraph at lines 16776--16776 +Overfull \hbox (30.0pt too wide) in paragraph at lines 16989--16989 | [] @@ -7636,12 +7856,12 @@ Underfull \hbox (badness 10000) has occurred while \output is active [][][][] [] -[271 +[257 -] [272] +] [258] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [273] +spec) [259] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -7655,7 +7875,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [274] +spec) [260] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -7677,7 +7897,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [275] +spec) [261] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -7699,13 +7919,17 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [276] +spec) [262] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) +Underfull \vbox (badness 5316) detected at line 17147 + [] + +[263] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -7713,7 +7937,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [277] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -7724,13 +7948,13 @@ spec) spec) File: figure/pos-ggplot-basics-01-1.pdf Graphic file (type pdf) - + [264] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [278] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -7747,10 +7971,10 @@ File: figure/pos-ggplot-basics-03-1.pdf Graphic file (type pdf) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) +spec) [265] File: figure/pos-ggplot-basics-04-1.pdf Graphic file (type pdf) - [279] + (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -7782,10 +8006,10 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) +spec) [266] File: figure/pos-ggplot-basics-04a-1.pdf Graphic file (type pdf) - [280] + (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -7808,19 +8032,19 @@ File: figure/pos-ggplot-basics-05-1.pdf Graphic file (type pdf) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [281] +spec) [267] File: figure/pos-ggplot-basics-06-1.pdf Graphic file (type pdf) File: figure/pos-ggplot-basics-07-1.pdf Graphic file (type pdf) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [282] +spec) [268] File: figure/pos-ggplot-basics-08-1.pdf Graphic file (type pdf) File: figure/pos-ggplot-basics-09-1.pdf Graphic file (type pdf) - [283] + [269] File: figure/pos-ggplot-basics-10-1.pdf Graphic file (type pdf) @@ -7859,7 +8083,11 @@ spec) spec) File: figure/pos-ggplot-basics-info-01-1.pdf Graphic file (type pdf) - [284] + +Overfull \vbox (1.51456pt too high) detected at line 17437 + [] + +[270] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -7871,10 +8099,10 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [285] +spec) File: figure/pos-ggplot-objects-02-1.pdf Graphic file (type pdf) - + [271] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -7887,7 +8115,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [286] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -7902,6 +8130,10 @@ spec) spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) +Overfull \vbox (1.12296pt too high) detected at line 17563 + [] + +[272] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -7911,7 +8143,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [287] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -7919,6 +8151,8 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [273] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -7931,7 +8165,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [288] +spec) [274] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -7963,9 +8197,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [289] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) +spec) [275] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -8002,10 +8234,10 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [290] +spec) File: figure/pos-mapping-stage-03-1.pdf Graphic file (type pdf) - + [276] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -8029,7 +8261,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [291] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -8038,7 +8270,7 @@ spec) spec) File: figure/pos-scatter-01-1.pdf Graphic file (type pdf) - + [277] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -8054,14 +8286,14 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [292] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [278] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -8069,7 +8301,7 @@ spec) spec) File: figure/pos-scatter-12-1.pdf Graphic file (type pdf) - [293] + (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -8078,7 +8310,7 @@ spec) spec) File: figure/pos-scatter-12a-1.pdf Graphic file (type pdf) - + [279] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -8093,10 +8325,13 @@ spec) spec) File: figure/pos-scatter-13-1.pdf Graphic file (type pdf) - [294] File: figure/pos-scatter-13info-1.pdf Graphic file (type pdf) +Underfull \vbox (badness 10000) detected at line 17964 + [] + +[280] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -8113,17 +8348,17 @@ spec) File: figure/pos-scatter-13b-1.pdf Graphic file (type pdf) -Underfull \vbox (badness 10000) detected at line 17793 +Underfull \vbox (badness 10000) detected at line 18006 [] -[295] +[281] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) File: figure/pos-scatter-16-1.pdf Graphic file (type pdf) - [296] + (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) +spec) [282] File: figure/pos-scatter-18-1.pdf Graphic file (type pdf) @@ -8148,12 +8383,12 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [297] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) File: figure/pos-rug-plot-01-1.pdf Graphic file (type pdf) - + [283] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -8167,7 +8402,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [298] +spec) File: figure/pos-line-plot-01-1.pdf Graphic file (type pdf) @@ -8204,7 +8439,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) +spec) [284] File: figure/pos-step-plot-01-1.pdf Graphic file (type pdf) @@ -8214,12 +8449,6 @@ spec) spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) -Underfull \hbox (badness 1163) in paragraph at lines 17937--17938 -[][][][][][] []\TU/LucidaBrightOT(0)/b/n/10 9.9[] \TU/LucidaBrightOT(0)/m/n/10 -Using the following toy data, make three plots using [][][][][][], - [] - - (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -8242,20 +8471,20 @@ spec) spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) -Underfull \hbox (badness 1454) in paragraph at lines 17949--17950 +Underfull \hbox (badness 1454) in paragraph at lines 18162--18163 \TU/LucidaBrightOT(0)/m/n/10 filling the area below the line according to the [ ][][][][][] \TU/LucidaBrightOT(0)/m/it/10 aesthetic\TU/LucidaBrightOT(0)/m/n/10 . In contrast [] -Underfull \hbox (badness 1642) in paragraph at lines 17949--17950 +Underfull \hbox (badness 1642) in paragraph at lines 18162--18163 \TU/LucidaBrightOT(0)/m/n/10 the space between the lines filled according to th e [][][][][][] \TU/LucidaBrightOT(0)/m/it/10 aesthetic\TU/LucidaBrightOT(0)/m/n /10 . Finally, [] -[299] + (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -8270,14 +8499,14 @@ spec) spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) -Underfull \hbox (badness 1092) in paragraph at lines 17951--17952 +Underfull \hbox (badness 1092) in paragraph at lines 18164--18165 []\TU/LucidaBrightOT(0)/m/n/10 Much of what was described above for [][][][][][ ][][][] can be adapted to [] File: figure/pos-area-plot-01-1.pdf Graphic file (type pdf) - +[285] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -8298,7 +8527,7 @@ spec) spec) File: figure/pos-area-plot-02-1.pdf Graphic file (type pdf) - [300] + (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -8312,10 +8541,10 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) +spec) [286] File: figure/pos-col-plot-02-1.pdf Graphic file (type pdf) - [301] + (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -8328,10 +8557,10 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) +spec) [287] File: figure/pos-col-plot-04-1.pdf Graphic file (type pdf) - [302] + (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -8366,11 +8595,11 @@ spec) spec) File: figure/pos-tile-plot-02-1.pdf Graphic file (type pdf) - + [288] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [303] +spec) File: figure/pos-tile-plot-03-1.pdf Graphic file (type pdf) @@ -8403,7 +8632,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [304] +spec) [289] File: figure/pos-sf_plot-01-1.pdf Graphic file (type pdf) @@ -8427,7 +8656,7 @@ spec) spec) File: figure/pos-text-plot-01-1.pdf Graphic file (type pdf) - + [290] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -8463,8 +8692,6 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [305] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -8479,6 +8706,8 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [291] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -8493,7 +8722,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [306] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -8508,7 +8737,7 @@ spec) spec) File: figure/pos-text-plot-06-1.pdf Graphic file (type pdf) - + [292] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -8532,10 +8761,10 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [307] +spec) File: figure/pos-label-plot-01-1.pdf Graphic file (type pdf) - + [293] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -8557,7 +8786,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [308] +spec) File: figure/pos-repel-plot-01-1.pdf Graphic file (type pdf) @@ -8586,7 +8815,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) +spec) [294] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -8604,7 +8833,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [309] +spec) File: figure/pos-table-plot-02-1.pdf Graphic file (type pdf) @@ -8619,7 +8848,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) +spec) [295] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -8627,7 +8856,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [310] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -8644,9 +8873,9 @@ spec) spec) File: figure/pos-plot-plot-02-1.pdf Graphic file (type pdf) - + [296] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [311] +spec) File: figure/pos-plot-plot-03-1.pdf Graphic file (type pdf) @@ -8659,7 +8888,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [312] +spec) [297] File: figure/pos-plot-grob-01-1.pdf Graphic file (type pdf) @@ -8683,23 +8912,34 @@ spec) spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) -Underfull \hbox (badness 1112) in paragraph at lines 18550--18551 +Underfull \hbox (badness 1152) in paragraph at lines 18763--18764 \TU/LucidaBrightOT(0)/m/n/10 dinates, and trickery seems to be needed to get ar ound this limitation. A [] -Underfull \hbox (badness 1721) in paragraph at lines 18550--18551 +Underfull \hbox (badness 1796) in paragraph at lines 18763--18764 \TU/LucidaBrightOT(0)/m/n/10 rather general solution is provided by package ‘\T U/LucidaSansOT(0)/m/n/10 ggpmisc\TU/LucidaBrightOT(0)/m/n/10 ’[][] through \TU/ LucidaBrightOT(0)/m/it/10 aesthet- [] + +Underfull \hbox (badness 1014) in paragraph at lines 18763--18764 +\TU/LucidaBrightOT(0)/m/it/10 ics [][][][][][] \TU/LucidaBrightOT(0)/m/n/10 and + [][][][][][] and \TU/LucidaBrightOT(0)/m/it/10 geometries \TU/LucidaBrightOT(0 +)/m/n/10 that support them. At the time of writ- + [] + File: figure/pos-plot-npc-eb-01-1.pdf Graphic file (type pdf) +Underfull \vbox (badness 1215) detected at line 18781 + [] + +[298] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [313] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -8720,12 +8960,10 @@ spec) spec) File: figure/pos-function-plot-01-1.pdf Graphic file (type pdf) - + [299] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [314] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -8755,9 +8993,11 @@ spec) spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [300] File: figure/pos-summary-plot-02-1.pdf Graphic file (type pdf) - [315] + (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -8777,7 +9017,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) +spec) [301] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -8787,7 +9027,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [316] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -8817,7 +9057,7 @@ spec) spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) -Underfull \hbox (badness 1466) in paragraph at lines 18755--18756 +Underfull \hbox (badness 1466) in paragraph at lines 18968--18969 []\TU/LucidaBrightOT(0)/m/n/10 Passing [][][][][][] instead of [][][][][][] to [][][][][][] results in traditional [] @@ -8834,7 +9074,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [317] +spec) [302] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -8849,14 +9089,14 @@ File: figure/pos-smooth-plot-02-1.pdf Graphic file (type pdf) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) +spec) [303] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) File: figure/pos-smooth-plot-04-1.pdf Graphic file (type pdf) - [318] + (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -8891,7 +9131,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [319] +spec) [304] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -8904,7 +9144,7 @@ spec) spec) File: figure/pos-smooth-plot-12-1.pdf Graphic file (type pdf) - [320] + [305] File: figure/pos-smooth-plot-13-1.pdf Graphic file (type pdf) @@ -8923,7 +9163,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [321] +spec) [306] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -8955,7 +9195,7 @@ spec) spec) File: figure/pos-histogram-plot-03-1.pdf Graphic file (type pdf) - [322] + [307] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -8998,10 +9238,10 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [323] +spec) File: figure/pos-hex-plot-01-1.pdf Graphic file (type pdf) - + [308] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) File: figure/pos-density-plot-01-1.pdf Graphic file (type pdf) @@ -9016,10 +9256,10 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [324] +spec) File: figure/pos-density-plot-10-1.pdf Graphic file (type pdf) - + [309] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -9034,10 +9274,10 @@ File: figure/pos-density-plot-12-1.pdf Graphic file (type pdf) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [325] +spec) File: figure/pos-bw-plot-01-1.pdf Graphic file (type pdf) - + [310] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -9062,7 +9302,7 @@ spec) spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) -Underfull \hbox (badness 1184) in paragraph at lines 19175--19176 +Underfull \hbox (badness 1184) in paragraph at lines 19388--19389 [][][][][][]\TU/LucidaBrightOT(0)/m/n/10 , which affect the outliers in a way s imilar to the equivalent [] @@ -9071,7 +9311,7 @@ File: figure/pos-bw-plot-02-1.pdf Graphic file (type pdf) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [326] +spec) [311] File: figure/pos-violin-plot-02-1.pdf Graphic file (type pdf) File: figure/pos-ggbeeswarm-plot-01-1.pdf Graphic file (type pdf) @@ -9082,7 +9322,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [327] +spec) [312] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -9094,10 +9334,10 @@ spec) File: figure/pos-flipping_box-01-ggplot-1.pdf Graphic file (type pdf) -Underfull \vbox (badness 1102) detected at line 19300 +Underfull \vbox (badness 10000) detected at line 19513 [] -[328] +[313] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -9114,26 +9354,26 @@ File: figure/pos-flipping-01-ggplot-1.pdf Graphic file (type pdf) File: figure/pos-flipping-02-ggplot-1.pdf Graphic file (type pdf) - [329] + [314] File: figure/pos-flipping-03-ggplot-1.pdf Graphic file (type pdf) File: figure/pos-flipping-04-ggplot-1.pdf Graphic file (type pdf) -LaTeX Warning: Reference `chap:R:case:fitted:models' on page 330 undefined on i -nput line 19367. +LaTeX Warning: Reference `chap:R:case:fitted:models' on page 315 undefined on i +nput line 19580. -LaTeX Warning: Reference `chap:R:case:fitted:models' on page 330 undefined on i -nput line 19367. +LaTeX Warning: Reference `chap:R:case:fitted:models' on page 315 undefined on i +nput line 19580. + -[330] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) File: figure/pos-flipping-05-ggplot-1.pdf Graphic file (type pdf) - + [315] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -9151,7 +9391,11 @@ spec) spec) File: figure/pos-flipping-06a-ggplot-1.pdf Graphic file (type pdf) - [331] + +Underfull \vbox (badness 10000) detected at line 19643 + [] + +[316] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -9166,10 +9410,10 @@ File: figure/pos-flipping-07-ggpmisc-1.pdf Graphic file (type pdf) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [332] +spec) File: figure/pos-flipping-08-ggpmisc-1.pdf Graphic file (type pdf) - + [317] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -9188,10 +9432,9 @@ spec) spec) File: figure/pos-flipping-09-ggpmisc-1.pdf Graphic file (type pdf) - [333] File: figure/pos-flipping-10-ggpmisc-1.pdf Graphic file (type pdf) - + [318] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -9210,7 +9453,7 @@ spec) spec) File: figure/pos-facets-00-1.pdf Graphic file (type pdf) - [334] + [319] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -9232,7 +9475,7 @@ spec) spec) File: figure/pos-facets-06-1.pdf Graphic file (type pdf) - [335] + [320] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) File: figure/pos-facets-07-1.pdf Graphic file (type pdf) @@ -9257,7 +9500,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [336] +spec) [321] File: figure/pos-facets-13-1.pdf Graphic file (type pdf) @@ -9302,7 +9545,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [337] +spec) [322] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -9364,7 +9607,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [338] +spec) [323] File: figure/pos-axis-labels-01-1.pdf Graphic file (type pdf) @@ -9390,7 +9633,7 @@ spec) spec) File: figure/pos-axis-labels-03-1.pdf Graphic file (type pdf) - [339] + [324] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -9470,14 +9713,14 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [340] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [325] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -9501,10 +9744,10 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [341] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [326] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -9519,14 +9762,14 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [342] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) File: figure/pos-scale-ticks-02-1.pdf Graphic file (type pdf) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) +spec) [327] File: figure/pos-scale-ticks-03-1.pdf Graphic file (type pdf) @@ -9542,29 +9785,35 @@ spec) spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) -Underfull \hbox (badness 1132) in paragraph at lines 19991--19992 +Underfull \hbox (badness 1132) in paragraph at lines 20204--20205 []\TU/LucidaBrightOT(0)/m/n/10 For currency, we can use [][][][][][], to includ e commas separating thou- [] -Underfull \hbox (badness 5726) in paragraph at lines 19991--19992 +Underfull \hbox (badness 5726) in paragraph at lines 20204--20205 \TU/LucidaBrightOT(0)/m/n/10 sands, millions, so on, we can use [][][][][][], a nd for numbers format- [] -Underfull \hbox (badness 3138) in paragraph at lines 19991--19992 +Underfull \hbox (badness 3138) in paragraph at lines 20204--20205 \TU/LucidaBrightOT(0)/m/n/10 ted using exponents of 10—useful for logarithmic-t ransformed scales—we [] -Underfull \hbox (badness 3646) in paragraph at lines 19991--19992 +Underfull \hbox (badness 3646) in paragraph at lines 20204--20205 \TU/LucidaBrightOT(0)/m/n/10 can use [][][][][][], [][][][][][], [] -[343] + +Underfull \hbox (badness 10000) in paragraph at lines 20211--20211 +[] []\TU/LucidaConsoleDK(0)/b/n/8 scale_y_continuous[][]\TU/LucidaConsoleDK(0) +/m/n/8 ([][]name[] []=[] []"Mass"[][],[] []labels[] []=[] []\TU/LucidaConsoleDK +(0)/b/n/8 la- + [] + File: figure/pos-scale-ticks-04-1.pdf Graphic file (type pdf) @@ -9589,7 +9838,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) +spec) [328] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -9598,7 +9847,7 @@ spec) spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) -Underfull \hbox (badness 3039) in paragraph at lines 20026--20027 +Underfull \hbox (badness 3333) in paragraph at lines 20239--20240 [][][][][][] \TU/LucidaBrightOT(0)/m/n/10 Similar to the maths functions of \T U/LucidaSansOT(0)/m/n/10 R\TU/LucidaBrightOT(0)/m/n/10 , the name of the scales are @@ -9609,7 +9858,7 @@ U/LucidaSansOT(0)/m/n/10 R\TU/LucidaBrightOT(0)/m/n/10 , the name of the scales spec) File: figure/pos-scale-trans-01-1.pdf Graphic file (type pdf) - [344] + (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -9625,10 +9874,9 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) +spec) [329] File: figure/pos-axis-position-01-1.pdf Graphic file (type pdf) - [345] File: figure/pos-axis-secondary-01-1.pdf Graphic file (type pdf) @@ -9639,14 +9887,14 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [346] +spec) [330] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) File: figure/pos-scale-datetime-01-1.pdf Graphic file (type pdf) File: figure/pos-scale-datetime-02-1.pdf Graphic file (type pdf) - [347] + [331] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -9661,7 +9909,7 @@ spec) spec) File: figure/pos-scale-discrete-10-1.pdf Graphic file (type pdf) - [348] + [332] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -9706,14 +9954,14 @@ spec) spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) -Underfull \hbox (badness 1552) in paragraph at lines 20262--20263 +Underfull \hbox (badness 1552) in paragraph at lines 20475--20476 \TU/LucidaBrightOT(0)/m/n/10 For the [][][][][][] \TU/LucidaBrightOT(0)/m/it/10 aesthetic\TU/LucidaBrightOT(0)/m/n/10 , several scales are available, both dis crete and con- [] -Underfull \hbox (badness 1033) in paragraph at lines 20262--20263 +Underfull \hbox (badness 1033) in paragraph at lines 20475--20476 \TU/LucidaBrightOT(0)/m/n/10 tinuous. They do not differ much from those alread y described above. \TU/LucidaBrightOT(0)/m/it/10 Ge- [] @@ -9738,7 +9986,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [349] +spec) [333] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -9758,7 +10006,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [350] +spec) [334] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -9785,13 +10033,13 @@ spec) spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) -Underfull \hbox (badness 4378) in paragraph at lines 20407--20408 +Underfull \hbox (badness 4378) in paragraph at lines 20620--20621 \TU/LucidaBrightOT(0)/m/n/10 Continuous color scales [][][][][][][][][], [][][] [][][][][][], [] -Underfull \hbox (badness 7963) in paragraph at lines 20407--20408 +Underfull \hbox (badness 7963) in paragraph at lines 20620--20621 [][][][][][][][][]\TU/LucidaBrightOT(0)/m/n/10 , [][][][][][][][][], [][][][][] [][][][] and [] @@ -9807,36 +10055,34 @@ spec) spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) -Underfull \hbox (badness 2103) in paragraph at lines 20411--20412 +Underfull \hbox (badness 2103) in paragraph at lines 20624--20625 \TU/LucidaBrightOT(0)/m/n/10 Color scales [][][][][][][][][], [][][][][][][][][ ], [][][][][][][][][] [] -Underfull \hbox (badness 10000) in paragraph at lines 20411--20412 +Underfull \hbox (badness 10000) in paragraph at lines 20624--20625 \TU/LucidaBrightOT(0)/m/n/10 are used with categorical data stored as factors. Other scales like [] -Underfull \hbox (badness 1735) in paragraph at lines 20411--20412 +Underfull \hbox (badness 1735) in paragraph at lines 20624--20625 [][][][][][][][][] \TU/LucidaBrightOT(0)/m/n/10 and [][][][][][][][][] provide discrete sets of [] -[351] + (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) +spec) [335] File: figure/pos-binned-scales-01-1.pdf Graphic file (type pdf) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [352] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -9847,6 +10093,8 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [336] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) File: figure/pos-scale-color-10-1.pdf Graphic file (type pdf) @@ -9868,7 +10116,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [353] +spec) [337] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -9886,7 +10134,7 @@ spec) spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) -Overfull \hbox (4.39212pt too wide) in paragraph at lines 20544--20544 +Overfull \hbox (24.41295pt too wide) in paragraph at lines 20757--20757 [] []\TU/LucidaConsoleDK(0)/b/n/8 annotation_custom[][]\TU/LucidaConsoleDK(0)/ m/n/8 ([][]\TU/LucidaConsoleDK(0)/b/n/8 ggplotGrob[][]\TU/LucidaConsoleDK(0)/m/ n/8 (p[] []+[] []\TU/LucidaConsoleDK(0)/b/n/8 coord_cartesian[][]\TU/LucidaCons @@ -9898,7 +10146,7 @@ eDK(0)/b/n/8 c[][]\TU/LucidaConsoleDK(0)/m/n/8 ([][]20[][],[] []40[][]))[] []+[ File: figure/pos-inset-01-1.pdf Graphic file (type pdf) -[354] +[338] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -9909,7 +10157,7 @@ File: figure/pos-annotate-03-1.pdf Graphic file (type pdf) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [355] +spec) [339] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -9924,7 +10172,7 @@ spec) spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) -Underfull \hbox (badness 1436) in paragraph at lines 20597--20598 +Underfull \hbox (badness 1454) in paragraph at lines 20810--20811 [][][][][][] \TU/LucidaBrightOT(0)/m/n/10 We cannot use [][][][][][][][][] wit h [][][][][][] or [][][][][][] as [] @@ -9939,7 +10187,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [356] +spec) [340] File: figure/pos-wind-05-1.pdf Graphic file (type pdf) @@ -9955,7 +10203,7 @@ spec) spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) -Underfull \hbox (badness 5374) in paragraph at lines 20637--20638 +Underfull \hbox (badness 5374) in paragraph at lines 20850--20851 []\TU/LucidaBrightOT(0)/m/n/10 For an equivalent plot, using an empirical densi ty, we have to use [] @@ -9964,7 +10212,7 @@ File: figure/pos-wind-06-1.pdf Graphic file (type pdf) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [357] +spec) [341] File: figure/pos-wind-08-1.pdf Graphic file (type pdf) @@ -9974,9 +10222,9 @@ spec) spec) File: figure/pos-main-chunk-66-1.pdf Graphic file (type pdf) - [358] + (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) +spec) [342] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -9995,7 +10243,7 @@ spec) spec) File: figure/pos-themes-01-1.pdf Graphic file (type pdf) - [359] + [343] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -10018,25 +10266,25 @@ spec) spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) -Underfull \hbox (badness 4940) in paragraph at lines 20757--20758 +Underfull \hbox (badness 5519) in paragraph at lines 20970--20971 [][][][][][] \TU/LucidaBrightOT(0)/m/n/10 Predefined “themes” like [][][][][][ ][][][] are, in reality, not themes [] -Underfull \hbox (badness 4013) in paragraph at lines 20757--20758 +Underfull \hbox (badness 4132) in paragraph at lines 20970--20971 \TU/LucidaBrightOT(0)/m/n/10 but instead are constructors of theme objects. The \TU/LucidaBrightOT(0)/m/it/10 themes \TU/LucidaBrightOT(0)/m/n/10 they return [] -Underfull \hbox (badness 5741) in paragraph at lines 20757--20758 +Underfull \hbox (badness 5893) in paragraph at lines 20970--20971 \TU/LucidaBrightOT(0)/m/n/10 when called depend on the arguments passed to thei r parameters. In [] -Underfull \hbox (badness 4217) in paragraph at lines 20757--20758 +Underfull \hbox (badness 4391) in paragraph at lines 20970--20971 \TU/LucidaBrightOT(0)/m/n/10 other words, [][][][][][], creates a different the me than [] @@ -10051,7 +10299,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [360] +spec) [344] File: figure/pos-themes-11-1.pdf Graphic file (type pdf) @@ -10064,8 +10312,6 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [361] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -10076,12 +10322,14 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [345] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [362] +spec) File: figure/pos-themes-21-1.pdf Graphic file (type pdf) - + [346] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -10098,7 +10346,11 @@ spec) spec) File: figure/pos-themes-33-1.pdf Graphic file (type pdf) - [363] + +Underfull \vbox (badness 10000) detected at line 21151 + [] + +[347] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -10110,14 +10362,14 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [364] +spec) File: figure/pos-patchwork-03-1.pdf Graphic file (type pdf) - + [348] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [365] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -10128,13 +10380,13 @@ spec) spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) -Underfull \hbox (badness 3471) in paragraph at lines 21006--21007 +Underfull \hbox (badness 3471) in paragraph at lines 21219--21220 []\TU/LucidaBrightOT(0)/m/n/10 In general it is possible to create \TU/LucidaBr ightOT(0)/m/it/10 expressions \TU/LucidaBrightOT(0)/m/n/10 explicitly with func tion [] - +[349] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -10152,10 +10404,10 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [366] +spec) File: figure/pos-plotmath-02-1.pdf Graphic file (type pdf) - + [350] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -10202,7 +10454,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [367] [368] +spec) [351] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -10214,7 +10466,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) +spec) [352] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -10239,10 +10491,10 @@ File: figure/pos-expr-bquote-01-1.pdf Graphic file (type pdf) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [369] +spec) File: figure/pos-expr-substitute-01-1.pdf Graphic file (type pdf) - + [353] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -10250,7 +10502,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [370] +spec) [354] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -10264,12 +10516,12 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [371] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [355] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -10278,7 +10530,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [372] +spec) [356] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -10292,45 +10544,84 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [373] [374] -Underfull \vbox (badness 10000) detected at line 21457 +spec) [357] +Underfull \vbox (badness 10000) has occurred while \output is active [] + + +Overfull \hbox (395.75pt too wide) has occurred while \output is active +[] + [] + + +Underfull \vbox (badness 10000) has occurred while \output is active [] + + +Overfull \hbox (395.75pt too wide) has occurred while \output is active +[] + [] + + +Underfull \vbox (badness 10000) has occurred while \output is active [] + + +Overfull \hbox (395.75pt too wide) has occurred while \output is active +[] + [] + + +Underfull \vbox (badness 10000) has occurred while \output is active [] + + +Overfull \hbox (395.75pt too wide) has occurred while \output is active +[] + [] + + +Underfull \hbox (badness 10000) has occurred while \output is active + [][][][] + [] + +[358 + +] +Underfull \vbox (badness 10000) detected at line 21670 [] -Overfull \hbox (395.75pt too wide) detected at line 21457 +Overfull \hbox (395.75pt too wide) detected at line 21670 [] [] -Underfull \vbox (badness 10000) detected at line 21457 +Underfull \vbox (badness 10000) detected at line 21670 [] -Overfull \hbox (395.75pt too wide) detected at line 21457 +Overfull \hbox (395.75pt too wide) detected at line 21670 [] [] -Underfull \vbox (badness 10000) detected at line 21457 +Underfull \vbox (badness 10000) detected at line 21670 [] -Overfull \hbox (395.75pt too wide) detected at line 21457 +Overfull \hbox (395.75pt too wide) detected at line 21670 [] [] -Underfull \vbox (badness 10000) detected at line 21457 +Underfull \vbox (badness 10000) detected at line 21670 [] -Overfull \hbox (395.75pt too wide) detected at line 21457 +Overfull \hbox (395.75pt too wide) detected at line 21670 [] [] Chapter 10. -Overfull \hbox (30.0pt too wide) in paragraph at lines 21463--21463 +Overfull \hbox (30.0pt too wide) in paragraph at lines 21676--21676 | [] @@ -10347,10 +10638,13 @@ Underfull \hbox (badness 10000) has occurred while \output is active [][][][] [] -[375 +[359 +] +Overfull \vbox (1.09894pt too high) detected at line 21734 + [] -] [376] +[360] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -10362,7 +10656,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [377] +spec) [361] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -10376,7 +10670,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [378] +spec) [362] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -10398,10 +10692,10 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [379] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [363] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -10414,7 +10708,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [380] +spec) [364] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -10430,37 +10724,23 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [381] +spec) [365] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) -Overfull \vbox (1.17342pt too high) detected at line 21866 - [] - -[382] -Underfull \hbox (badness 10000) in paragraph at lines 21872--21872 -[][]\TU/LucidaConsoleDK(0)/m/n/8 from_csv_a.df[] []<-[] []\TU/LucidaConsoleDK(0 -)/b/n/8 read.csv[][]\TU/LucidaConsoleDK(0)/m/n/8 ([][]"extdata/not-aligned-ASCI -I-UK.csv"[][],[] []stringsAsFac- - [] - - (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) -Underfull \hbox (badness 10000) in paragraph at lines 21901--21901 -[][]\TU/LucidaConsoleDK(0)/m/n/8 from_csv_a.df[] []<-[] []\TU/LucidaConsoleDK(0 -)/b/n/8 read.csv[][]\TU/LucidaConsoleDK(0)/m/n/8 ([][]"extdata/not-aligned-ASCI -I-UK.csv"[][],[] []stringsAsFac- +Underfull \vbox (badness 1603) detected at line 22143 [] - +[366] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -10469,12 +10749,19 @@ spec) spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) -Underfull \hbox (badness 1708) in paragraph at lines 21936--21937 +Underfull \hbox (badness 1708) in paragraph at lines 22149--22150 []\TU/LucidaBrightOT(0)/m/n/10 Example file [][][][][][] contains comma-separat ed-values with [] -[383] + +Underfull \hbox (badness 10000) in paragraph at lines 22166--22166 +[][]\TU/LucidaConsoleDK(0)/m/n/8 from_csv_b.df[] []<-[] []\TU/LucidaConsoleDK(0 +)/b/n/8 read.csv[][]\TU/LucidaConsoleDK(0)/m/n/8 ([][]"extdata/aligned-ASCII-UK +.csv"[][],[] []stringsAsFac- + [] + + (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -10492,7 +10779,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [384] +spec) [367] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -10512,7 +10799,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) +spec) [368] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -10526,7 +10813,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [385] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -10552,7 +10839,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [386] +spec) [369] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -10574,7 +10861,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [387] +spec) [370] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -10586,7 +10873,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [388] +spec) [371] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -10598,21 +10885,21 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) +spec) [372] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [389] -Underfull \vbox (badness 10000) detected at line 22343 +spec) +Underfull \vbox (badness 10000) detected at line 22556 [] -Underfull \vbox (badness 10000) detected at line 22343 +Underfull \vbox (badness 10000) detected at line 22556 [] -[390] +[373] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -10648,47 +10935,47 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [391] +spec) [374] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [392] -Underfull \vbox (badness 10000) detected at line 22617 +spec) [375] +Underfull \vbox (badness 10000) detected at line 22830 [] -Underfull \vbox (badness 10000) detected at line 22617 +Underfull \vbox (badness 10000) detected at line 22830 [] -[393] -Underfull \vbox (badness 10000) detected at line 22617 +[376] +Underfull \vbox (badness 10000) detected at line 22830 [] -Underfull \vbox (badness 10000) detected at line 22617 +Underfull \vbox (badness 10000) detected at line 22830 [] -[394] +[377] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) -Underfull \hbox (badness 10000) in paragraph at lines 22620--22621 +Underfull \hbox (badness 10000) in paragraph at lines 22833--22834 []\TU/LucidaBrightOT(0)/m/n/10 Next we extract the text from its [][][][][][] a ttribute, using functions [] -[395] + (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [396] +spec) [378] [379] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -10722,7 +11009,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [397] +spec) [380] File: figures/Book1-xlsx.png Graphic file (type bmp) @@ -10735,12 +11022,12 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [398] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [399] +spec) [381] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [382] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) File: figures/my-data-xlsx.png Graphic file (type bmp) @@ -10748,16 +11035,16 @@ File: figures/my-data-xlsx.png Graphic file (type bmp) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [400] +spec) [383] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [401] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [384] +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) @@ -10768,7 +11055,7 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [402] +spec) [385] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -10788,31 +11075,31 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [403] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) +spec) [386] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [404] +spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) -Overfull \hbox (14.04007pt too wide) in paragraph at lines 23165--23165 +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [387] +Overfull \hbox (34.54341pt too wide) in paragraph at lines 23378--23378 []\TU/LucidaConsoleDK(0)/m/n/8 ## [1] D0,D1,D2 : pevpr, valid_yr_count **A CTIVE GRID** ( 216576 values per variable)[] [] -[405] +[388] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [406] +spec) [389] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font @@ -10820,96 +11107,57 @@ spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [407] -(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font spec) (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [408] +spec) [390] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [409] +spec) [391] (C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font -spec) [410] [411] -Underfull \vbox (badness 10000) has occurred while \output is active [] - - -Overfull \hbox (395.75pt too wide) has occurred while \output is active -[] - [] - - -Underfull \vbox (badness 10000) has occurred while \output is active [] - - -Overfull \hbox (395.75pt too wide) has occurred while \output is active -[] - [] - - -Underfull \vbox (badness 10000) has occurred while \output is active [] - - -Overfull \hbox (395.75pt too wide) has occurred while \output is active -[] - [] - - -Underfull \vbox (badness 10000) has occurred while \output is active [] - - -Overfull \hbox (395.75pt too wide) has occurred while \output is active -[] - [] - - -Underfull \hbox (badness 10000) has occurred while \output is active - [][][][] - [] - -[412 - -] -Underfull \vbox (badness 10000) detected at line 23534 +spec) +(C:/Users/aphalo_2/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.font +spec) [392] [393] [394] +Underfull \vbox (badness 10000) detected at line 23747 [] -Overfull \hbox (395.75pt too wide) detected at line 23534 +Overfull \hbox (395.75pt too wide) detected at line 23747 [] [] -Underfull \vbox (badness 10000) detected at line 23534 +Underfull \vbox (badness 10000) detected at line 23747 [] -Overfull \hbox (395.75pt too wide) detected at line 23534 +Overfull \hbox (395.75pt too wide) detected at line 23747 [] [] -Underfull \vbox (badness 10000) detected at line 23534 +Underfull \vbox (badness 10000) detected at line 23747 [] -Overfull \hbox (395.75pt too wide) detected at line 23534 +Overfull \hbox (395.75pt too wide) detected at line 23747 [] [] -Underfull \vbox (badness 10000) detected at line 23534 +Underfull \vbox (badness 10000) detected at line 23747 [] -Overfull \hbox (395.75pt too wide) detected at line 23534 +Overfull \hbox (395.75pt too wide) detected at line 23747 [] [] -Underfull \hbox (badness 10000) detected at line 23534 +Underfull \hbox (badness 10000) detected at line 23747 [] [] -Underfull \hbox (badness 3049) in paragraph at lines 23534--23534 +Underfull \hbox (badness 3049) in paragraph at lines 23747--23747 [][]\TU/LucidaBrightOT(0)/m/n/10 Dalgaard, P. (2008). \TU/LucidaBrightOT(0)/m/i t/10 Introductory Statistics with R\TU/LucidaBrightOT(0)/m/n/10 . Springer, p. 380. \TU/LucidaBrightOT(0)/m/sc/10 isbn\TU/LucidaBrightOT(0)/m/n/10 : @@ -10920,10 +11168,11 @@ Underfull \hbox (badness 10000) has occurred while \output is active [][][][] [] -[413 +[395 -] [414] [415] + +] [396] [397] Underfull \vbox (badness 10000) has occurred while \output is active [] @@ -10960,7 +11209,7 @@ Underfull \hbox (badness 10000) has occurred while \output is active [][][][] [] -[416 +[398 ] runsystem(makeindex using-r-main-crc.idx)...executed safely (allowed). @@ -11011,49 +11260,10 @@ Underfull \hbox (badness 10000) has occurred while \output is active [][][][] [] -[417 - - -] [418] [419] [420] [421] [422] [423] [424]) [425] -Underfull \vbox (badness 10000) has occurred while \output is active [] - - -Overfull \hbox (395.75pt too wide) has occurred while \output is active -[] - [] - +[399 -Underfull \vbox (badness 10000) has occurred while \output is active [] - - -Overfull \hbox (395.75pt too wide) has occurred while \output is active -[] - [] - - -Underfull \vbox (badness 10000) has occurred while \output is active [] - - -Overfull \hbox (395.75pt too wide) has occurred while \output is active -[] - [] - - -Underfull \vbox (badness 10000) has occurred while \output is active [] - - -Overfull \hbox (395.75pt too wide) has occurred while \output is active -[] - [] - - -Underfull \hbox (badness 10000) has occurred while \output is active - [][][][] - [] - -[426 -] +] [400] [401] [402] [403] [404] [405] [406] [407]) [408] runsystem(makeindex rindex.idx)...executed safely (allowed). (rindex.ind @@ -11106,10 +11316,11 @@ Underfull \hbox (badness 10000) has occurred while \output is active [][][][] [] -[427 +[409 + -] [428] [429] [430] [431] [432]) [433] +] [410] [411] [412] [413] [414]) [415] Underfull \vbox (badness 10000) has occurred while \output is active [] @@ -11146,7 +11357,7 @@ Underfull \hbox (badness 10000) has occurred while \output is active [][][][] [] -[434 +[416 ] runsystem(makeindex rcatsidx.idx)...executed safely (allowed). @@ -11197,49 +11408,23 @@ Underfull \hbox (badness 10000) has occurred while \output is active [][][][] [] -[435 - - -] [436] [437] [438] [439] [440]) [441] -Underfull \vbox (badness 10000) has occurred while \output is active [] - - -Overfull \hbox (395.75pt too wide) has occurred while \output is active -[] - [] - - -Underfull \vbox (badness 10000) has occurred while \output is active [] - - -Overfull \hbox (395.75pt too wide) has occurred while \output is active -[] - [] - - -Underfull \vbox (badness 10000) has occurred while \output is active [] +[417 -Overfull \hbox (395.75pt too wide) has occurred while \output is active -[] +] [418] [419] [420] [421] [422] +Overfull \hbox (6.76949pt too wide) in paragraph at lines 514--515 +[]| \TU/LucidaConsoleDK(0)/m/n/10 tools:::showNonASCIIfile()\TU/LucidaBrightOT( +0)/m/n/10 , [] -Underfull \vbox (badness 10000) has occurred while \output is active [] - - -Overfull \hbox (395.75pt too wide) has occurred while \output is active -[] - [] +Overfull \vbox (6.0033pt too high) has occurred while \output is active [] -Underfull \hbox (badness 10000) has occurred while \output is active - [][][][] - [] +Overfull \vbox (18.40344pt too high) has occurred while \output is active [] -[442 -] +[423]) [424] runsystem(makeindex faqindex.idx)...executed safely (allowed). (faqindex.ind @@ -11296,7 +11481,8 @@ Underfull \hbox (badness 10000) has occurred while \output is active [][][][] [] -[443 +[425 + ] (using-r-main-crc.aux) @@ -11316,12 +11502,12 @@ Package logreq Info: Writing requests to 'using-r-main-crc.run.xml'. ) Here is how much of TeX's memory you used: - 44324 strings out of 410378 - 1178654 string characters out of 5792294 - 1985432 words of memory out of 5000000 - 57739 multiletter control sequences out of 15000+600000 - 565999 words of font info for 221 fonts, out of 8000000 for 9000 + 44387 strings out of 410378 + 1182621 string characters out of 5792294 + 1984432 words of memory out of 5000000 + 57731 multiletter control sequences out of 15000+600000 + 565951 words of font info for 215 fonts, out of 8000000 for 9000 1354 hyphenation exceptions out of 8191 - 105i,15n,128p,1994b,5680s stack positions out of 10000i,1000n,20000p,200000b,200000s + 105i,15n,132p,1994b,5678s stack positions out of 10000i,1000n,20000p,200000b,200000s -Output written on using-r-main-crc.pdf (458 pages). +Output written on using-r-main-crc.pdf (440 pages). diff --git a/using-r-main-crc.lot b/using-r-main-crc.lot index a6d851d7..cf81d4f7 100644 --- a/using-r-main-crc.lot +++ b/using-r-main-crc.lot @@ -5,7 +5,7 @@ \addvspace {10\p@ } \addvspace {10\p@ } \addvspace {10\p@ } -\contentsline {table}{\numberline {7.1}{\ignorespaces Theoretical probability distributions}}{189}{}% +\contentsline {table}{\numberline {7.1}{\ignorespaces Theoretical probability distributions}}{181}{}% \addvspace {10\p@ } \addvspace {10\p@ } \addvspace {10\p@ } diff --git a/using-r-main-crc.pdf b/using-r-main-crc.pdf index 2e1106a8..2a9abf3e 100644 Binary files a/using-r-main-crc.pdf and b/using-r-main-crc.pdf differ diff --git a/using-r-main-crc.synctex b/using-r-main-crc.synctex index 5fc90f82..bcefdae1 100644 --- a/using-r-main-crc.synctex +++ b/using-r-main-crc.synctex @@ -192,178 +192,178 @@ Y Offset:0 Content: !14337 {1 -[1,130:4262630,47279633:28320399,43253760,0 -(1,130:4262630,4025873:0,0,0 -[1,130:-473656,4025873:0,0,0 -(1,130:-473656,-710413:0,0,0 -(1,130:-473656,-644877:0,0,0 -k1,130:-473656,-644877:-65536 +[1,123:4262630,47279633:28320399,43253760,0 +(1,123:4262630,4025873:0,0,0 +[1,123:-473656,4025873:0,0,0 +(1,123:-473656,-710413:0,0,0 +(1,123:-473656,-644877:0,0,0 +k1,123:-473656,-644877:-65536 ) -(1,130:-473656,4736287:0,0,0 -k1,130:-473656,4736287:5209943 +(1,123:-473656,4736287:0,0,0 +k1,123:-473656,4736287:5209943 ) -g1,130:-473656,-710413 +g1,123:-473656,-710413 ) ] ) -[1,130:6630773,47279633:25952256,43253760,0 -[1,130:6630773,4812305:25952256,786432,0 -(1,130:6630773,4812305:25952256,0,0 -(1,130:6630773,4812305:25952256,0,0 -g1,130:3078558,4812305 -[1,130:3078558,4812305:0,0,0 -(1,130:3078558,2439708:0,1703936,0 -k1,130:1358238,2439708:-1720320 -(1,130:1358238,2439708:1720320,1703936,0 -(1,130:1358238,2439708:1179648,16384,0 -r1,130:2537886,2439708:1179648,16384,0 +[1,123:6630773,47279633:25952256,43253760,0 +[1,123:6630773,4812305:25952256,786432,0 +(1,123:6630773,4812305:25952256,0,0 +(1,123:6630773,4812305:25952256,0,0 +g1,123:3078558,4812305 +[1,123:3078558,4812305:0,0,0 +(1,123:3078558,2439708:0,1703936,0 +k1,123:1358238,2439708:-1720320 +(1,123:1358238,2439708:1720320,1703936,0 +(1,123:1358238,2439708:1179648,16384,0 +r1,123:2537886,2439708:1179648,16384,0 ) -g1,130:3062174,2439708 -(1,130:3062174,2439708:16384,1703936,0 -[1,130:3062174,2439708:25952256,1703936,0 -(1,130:3062174,1915420:25952256,1179648,0 -(1,130:3062174,1915420:16384,1179648,0 -r1,130:3078558,1915420:16384,1179648,0 +g1,123:3062174,2439708 +(1,123:3062174,2439708:16384,1703936,0 +[1,123:3062174,2439708:25952256,1703936,0 +(1,123:3062174,1915420:25952256,1179648,0 +(1,123:3062174,1915420:16384,1179648,0 +r1,123:3078558,1915420:16384,1179648,0 ) -k1,130:29014430,1915420:25935872 -g1,130:29014430,1915420 +k1,123:29014430,1915420:25935872 +g1,123:29014430,1915420 ) ] ) ) ) ] -[1,130:3078558,4812305:0,0,0 -(1,130:3078558,2439708:0,1703936,0 -g1,130:29030814,2439708 -g1,130:36135244,2439708 -(1,130:36135244,2439708:1720320,1703936,0 -(1,130:36135244,2439708:16384,1703936,0 -[1,130:36135244,2439708:25952256,1703936,0 -(1,130:36135244,1915420:25952256,1179648,0 -(1,130:36135244,1915420:16384,1179648,0 -r1,130:36151628,1915420:16384,1179648,0 +[1,123:3078558,4812305:0,0,0 +(1,123:3078558,2439708:0,1703936,0 +g1,123:29030814,2439708 +g1,123:36135244,2439708 +(1,123:36135244,2439708:1720320,1703936,0 +(1,123:36135244,2439708:16384,1703936,0 +[1,123:36135244,2439708:25952256,1703936,0 +(1,123:36135244,1915420:25952256,1179648,0 +(1,123:36135244,1915420:16384,1179648,0 +r1,123:36151628,1915420:16384,1179648,0 ) -k1,130:62087500,1915420:25935872 -g1,130:62087500,1915420 +k1,123:62087500,1915420:25935872 +g1,123:62087500,1915420 ) ] ) -g1,130:36675916,2439708 -(1,130:36675916,2439708:1179648,16384,0 -r1,130:37855564,2439708:1179648,16384,0 +g1,123:36675916,2439708 +(1,123:36675916,2439708:1179648,16384,0 +r1,123:37855564,2439708:1179648,16384,0 ) ) -k1,130:3078556,2439708:-34777008 +k1,123:3078556,2439708:-34777008 ) ] -[1,130:3078558,4812305:0,0,0 -(1,130:3078558,49800853:0,16384,2228224 -k1,130:1358238,49800853:-1720320 -(1,130:1358238,49800853:1720320,16384,2228224 -(1,130:1358238,49800853:1179648,16384,0 -r1,130:2537886,49800853:1179648,16384,0 +[1,123:3078558,4812305:0,0,0 +(1,123:3078558,49800853:0,16384,2228224 +k1,123:1358238,49800853:-1720320 +(1,123:1358238,49800853:1720320,16384,2228224 +(1,123:1358238,49800853:1179648,16384,0 +r1,123:2537886,49800853:1179648,16384,0 ) -g1,130:3062174,49800853 -(1,130:3062174,52029077:16384,1703936,0 -[1,130:3062174,52029077:25952256,1703936,0 -(1,130:3062174,51504789:25952256,1179648,0 -(1,130:3062174,51504789:16384,1179648,0 -r1,130:3078558,51504789:16384,1179648,0 +g1,123:3062174,49800853 +(1,123:3062174,52029077:16384,1703936,0 +[1,123:3062174,52029077:25952256,1703936,0 +(1,123:3062174,51504789:25952256,1179648,0 +(1,123:3062174,51504789:16384,1179648,0 +r1,123:3078558,51504789:16384,1179648,0 ) -k1,130:29014430,51504789:25935872 -g1,130:29014430,51504789 +k1,123:29014430,51504789:25935872 +g1,123:29014430,51504789 ) ] ) ) ) ] -[1,130:3078558,4812305:0,0,0 -(1,130:3078558,49800853:0,16384,2228224 -g1,130:29030814,49800853 -g1,130:36135244,49800853 -(1,130:36135244,49800853:1720320,16384,2228224 -(1,130:36135244,52029077:16384,1703936,0 -[1,130:36135244,52029077:25952256,1703936,0 -(1,130:36135244,51504789:25952256,1179648,0 -(1,130:36135244,51504789:16384,1179648,0 -r1,130:36151628,51504789:16384,1179648,0 +[1,123:3078558,4812305:0,0,0 +(1,123:3078558,49800853:0,16384,2228224 +g1,123:29030814,49800853 +g1,123:36135244,49800853 +(1,123:36135244,49800853:1720320,16384,2228224 +(1,123:36135244,52029077:16384,1703936,0 +[1,123:36135244,52029077:25952256,1703936,0 +(1,123:36135244,51504789:25952256,1179648,0 +(1,123:36135244,51504789:16384,1179648,0 +r1,123:36151628,51504789:16384,1179648,0 ) -k1,130:62087500,51504789:25935872 -g1,130:62087500,51504789 +k1,123:62087500,51504789:25935872 +g1,123:62087500,51504789 ) ] ) -g1,130:36675916,49800853 -(1,130:36675916,49800853:1179648,16384,0 -r1,130:37855564,49800853:1179648,16384,0 +g1,123:36675916,49800853 +(1,123:36675916,49800853:1179648,16384,0 +r1,123:37855564,49800853:1179648,16384,0 ) ) -k1,130:3078556,49800853:-34777008 +k1,123:3078556,49800853:-34777008 ) ] -g1,130:6630773,4812305 +g1,123:6630773,4812305 ) ) ] -[1,130:6630773,45706769:25952256,40108032,0 -(1,130:6630773,45706769:25952256,40108032,0 -(1,130:6630773,45706769:0,0,0 -g1,130:6630773,45706769 +[1,123:6630773,45706769:25952256,40108032,0 +(1,123:6630773,45706769:25952256,40108032,0 +(1,123:6630773,45706769:0,0,0 +g1,123:6630773,45706769 ) -[1,130:6630773,45706769:25952256,40108032,0 -[1,130:6630773,12262553:25952256,6663816,193461 -(1,130:6630773,5643548:25952256,505283,126483 -h1,130:6630773,5643548:0,0,0 -g1,130:8622412,5643548 -g1,130:9271873,5643548 -k1,130:22055654,5643548:10527376 -k1,130:32583030,5643548:10527376 +[1,123:6630773,45706769:25952256,40108032,0 +[1,123:6630773,12400173:25952256,6801436,193461 +(1,123:6630773,5643548:25952256,505283,126483 +h1,123:6630773,5643548:0,0,0 +g1,123:8622412,5643548 +g1,123:9271873,5643548 +k1,123:22055654,5643548:10527376 +k1,123:32583030,5643548:10527376 ) -(1,130:6630773,6607915:25952256,32768,229376 -(1,130:6630773,6607915:0,32768,229376 -(1,130:6630773,6607915:5505024,32768,229376 -r1,130:12135797,6607915:5505024,262144,229376 +(1,123:6630773,6627575:25952256,32768,229376 +(1,123:6630773,6627575:0,32768,229376 +(1,123:6630773,6627575:5505024,32768,229376 +r1,123:12135797,6627575:5505024,262144,229376 ) -k1,130:6630773,6607915:-5505024 +k1,123:6630773,6627575:-5505024 ) -(1,130:6630773,6607915:25952256,32768,0 -r1,130:32583029,6607915:25952256,32768,0 +(1,123:6630773,6627575:25952256,32768,0 +r1,123:32583029,6627575:25952256,32768,0 ) ) -(1,130:6630773,10158833:25952256,1178878,19565 -h1,130:6630773,10158833:0,0,0 -g1,130:11501184,10158833 -k1,130:22558171,10158833:10024858 -k1,130:32583029,10158833:10024858 +(1,123:6630773,10237473:25952256,1178878,19565 +h1,123:6630773,10237473:0,0,0 +g1,123:11501184,10237473 +k1,123:22558171,10237473:10024858 +k1,123:32583029,10237473:10024858 ) -(1,130:6630773,12262553:25952256,682308,193461 -h1,130:6630773,12262553:0,0,0 -g1,130:8060506,12262553 -g1,130:8879653,12262553 -k1,130:22939641,12262553:9643388 -k1,130:32583029,12262553:9643388 +(1,123:6630773,12400173:25952256,682308,193461 +h1,123:6630773,12400173:0,0,0 +g1,123:8060506,12400173 +g1,123:8879653,12400173 +k1,123:22939641,12400173:9643388 +k1,123:32583029,12400173:9643388 ) ] -h1,130:6630773,29404534:0,0,0 +h1,123:6630773,29485145:0,0,0 ] -(1,130:32583029,45706769:0,0,0 -g1,130:32583029,45706769 +(1,123:32583029,45706769:0,0,0 +g1,123:32583029,45706769 ) ) ] -(1,130:6630773,47279633:25952256,0,0 -h1,130:6630773,47279633:25952256,0,0 +(1,123:6630773,47279633:25952256,0,0 +h1,123:6630773,47279633:25952256,0,0 ) ] -(1,130:4262630,4025873:0,0,0 -[1,130:-473656,4025873:0,0,0 -(1,130:-473656,-710413:0,0,0 -(1,130:-473656,-710413:0,0,0 -g1,130:-473656,-710413 +(1,123:4262630,4025873:0,0,0 +[1,123:-473656,4025873:0,0,0 +(1,123:-473656,-710413:0,0,0 +(1,123:-473656,-710413:0,0,0 +g1,123:-473656,-710413 ) -g1,130:-473656,-710413 +g1,123:-473656,-710413 ) ] ) @@ -373,29677 +373,30001 @@ g1,130:-473656,-710413 Input:186:C:\Users\aphalo_2\Documents\Own_manuscripts\Books\learnr-book-crc\using-r-main-crc.toc !106 {2 -[186,38:4262630,47279633:28320399,43253760,3931 -(186,38:4262630,4025873:0,0,0 -[186,38:-473656,4025873:0,0,0 -(186,38:-473656,-710413:0,0,0 -(186,38:-473656,-644877:0,0,0 -k186,38:-473656,-644877:-65536 +[186,37:4262630,47279633:28320399,43253760,3931 +(186,37:4262630,4025873:0,0,0 +[186,37:-473656,4025873:0,0,0 +(186,37:-473656,-710413:0,0,0 +(186,37:-473656,-644877:0,0,0 +k186,37:-473656,-644877:-65536 ) -(186,38:-473656,4736287:0,0,0 -k186,38:-473656,4736287:5209943 +(186,37:-473656,4736287:0,0,0 +k186,37:-473656,4736287:5209943 ) -g186,38:-473656,-710413 +g186,37:-473656,-710413 ) ] ) -[186,38:6630773,47279633:25952256,43253760,3931 -[186,38:6630773,4812305:25952256,786432,0 -(186,38:6630773,4812305:25952256,0,0 -(186,38:6630773,4812305:25952256,0,0 -g186,38:3078558,4812305 -[186,38:3078558,4812305:0,0,0 -(186,38:3078558,2439708:0,1703936,0 -k186,38:1358238,2439708:-1720320 -(1,135:1358238,2439708:1720320,1703936,0 -(1,135:1358238,2439708:1179648,16384,0 -r186,38:2537886,2439708:1179648,16384,0 +[186,37:6630773,47279633:25952256,43253760,3931 +[186,37:6630773,4812305:25952256,786432,0 +(186,37:6630773,4812305:25952256,0,0 +(186,37:6630773,4812305:25952256,0,0 +g186,37:3078558,4812305 +[186,37:3078558,4812305:0,0,0 +(186,37:3078558,2439708:0,1703936,0 +k186,37:1358238,2439708:-1720320 +(1,128:1358238,2439708:1720320,1703936,0 +(1,128:1358238,2439708:1179648,16384,0 +r186,37:2537886,2439708:1179648,16384,0 ) -g1,135:3062174,2439708 -(1,135:3062174,2439708:16384,1703936,0 -[1,135:3062174,2439708:25952256,1703936,0 -(1,135:3062174,1915420:25952256,1179648,0 -(1,135:3062174,1915420:16384,1179648,0 -r186,38:3078558,1915420:16384,1179648,0 +g1,128:3062174,2439708 +(1,128:3062174,2439708:16384,1703936,0 +[1,128:3062174,2439708:25952256,1703936,0 +(1,128:3062174,1915420:25952256,1179648,0 +(1,128:3062174,1915420:16384,1179648,0 +r186,37:3078558,1915420:16384,1179648,0 ) -k1,135:29014430,1915420:25935872 -g1,135:29014430,1915420 +k1,128:29014430,1915420:25935872 +g1,128:29014430,1915420 ) ] ) ) ) ] -[186,38:3078558,4812305:0,0,0 -(186,38:3078558,2439708:0,1703936,0 -g186,38:29030814,2439708 -g186,38:36135244,2439708 -(1,135:36135244,2439708:1720320,1703936,0 -(1,135:36135244,2439708:16384,1703936,0 -[1,135:36135244,2439708:25952256,1703936,0 -(1,135:36135244,1915420:25952256,1179648,0 -(1,135:36135244,1915420:16384,1179648,0 -r186,38:36151628,1915420:16384,1179648,0 +[186,37:3078558,4812305:0,0,0 +(186,37:3078558,2439708:0,1703936,0 +g186,37:29030814,2439708 +g186,37:36135244,2439708 +(1,128:36135244,2439708:1720320,1703936,0 +(1,128:36135244,2439708:16384,1703936,0 +[1,128:36135244,2439708:25952256,1703936,0 +(1,128:36135244,1915420:25952256,1179648,0 +(1,128:36135244,1915420:16384,1179648,0 +r186,37:36151628,1915420:16384,1179648,0 ) -k1,135:62087500,1915420:25935872 -g1,135:62087500,1915420 +k1,128:62087500,1915420:25935872 +g1,128:62087500,1915420 ) ] ) -g1,135:36675916,2439708 -(1,135:36675916,2439708:1179648,16384,0 -r186,38:37855564,2439708:1179648,16384,0 +g1,128:36675916,2439708 +(1,128:36675916,2439708:1179648,16384,0 +r186,37:37855564,2439708:1179648,16384,0 ) ) -k186,38:3078556,2439708:-34777008 +k186,37:3078556,2439708:-34777008 ) ] -[186,38:3078558,4812305:0,0,0 -(186,38:3078558,49800853:0,16384,2228224 -k186,38:1358238,49800853:-1720320 -(1,135:1358238,49800853:1720320,16384,2228224 -(1,135:1358238,49800853:1179648,16384,0 -r186,38:2537886,49800853:1179648,16384,0 +[186,37:3078558,4812305:0,0,0 +(186,37:3078558,49800853:0,16384,2228224 +k186,37:1358238,49800853:-1720320 +(1,128:1358238,49800853:1720320,16384,2228224 +(1,128:1358238,49800853:1179648,16384,0 +r186,37:2537886,49800853:1179648,16384,0 ) -g1,135:3062174,49800853 -(1,135:3062174,52029077:16384,1703936,0 -[1,135:3062174,52029077:25952256,1703936,0 -(1,135:3062174,51504789:25952256,1179648,0 -(1,135:3062174,51504789:16384,1179648,0 -r186,38:3078558,51504789:16384,1179648,0 +g1,128:3062174,49800853 +(1,128:3062174,52029077:16384,1703936,0 +[1,128:3062174,52029077:25952256,1703936,0 +(1,128:3062174,51504789:25952256,1179648,0 +(1,128:3062174,51504789:16384,1179648,0 +r186,37:3078558,51504789:16384,1179648,0 ) -k1,135:29014430,51504789:25935872 -g1,135:29014430,51504789 +k1,128:29014430,51504789:25935872 +g1,128:29014430,51504789 ) ] ) ) ) ] -[186,38:3078558,4812305:0,0,0 -(186,38:3078558,49800853:0,16384,2228224 -g186,38:29030814,49800853 -g186,38:36135244,49800853 -(1,135:36135244,49800853:1720320,16384,2228224 -(1,135:36135244,52029077:16384,1703936,0 -[1,135:36135244,52029077:25952256,1703936,0 -(1,135:36135244,51504789:25952256,1179648,0 -(1,135:36135244,51504789:16384,1179648,0 -r186,38:36151628,51504789:16384,1179648,0 +[186,37:3078558,4812305:0,0,0 +(186,37:3078558,49800853:0,16384,2228224 +g186,37:29030814,49800853 +g186,37:36135244,49800853 +(1,128:36135244,49800853:1720320,16384,2228224 +(1,128:36135244,52029077:16384,1703936,0 +[1,128:36135244,52029077:25952256,1703936,0 +(1,128:36135244,51504789:25952256,1179648,0 +(1,128:36135244,51504789:16384,1179648,0 +r186,37:36151628,51504789:16384,1179648,0 ) -k1,135:62087500,51504789:25935872 -g1,135:62087500,51504789 +k1,128:62087500,51504789:25935872 +g1,128:62087500,51504789 ) ] ) -g1,135:36675916,49800853 -(1,135:36675916,49800853:1179648,16384,0 -r186,38:37855564,49800853:1179648,16384,0 +g1,128:36675916,49800853 +(1,128:36675916,49800853:1179648,16384,0 +r186,37:37855564,49800853:1179648,16384,0 ) ) -k186,38:3078556,49800853:-34777008 +k186,37:3078556,49800853:-34777008 ) ] -g186,38:6630773,4812305 +g186,37:6630773,4812305 ) ) ] -[186,38:6630773,45706769:25952256,40108032,0 -(186,38:6630773,45706769:25952256,40108032,0 -(186,38:6630773,45706769:0,0,0 -g186,38:6630773,45706769 +[186,37:6630773,45706769:25952256,40108032,0 +(186,37:6630773,45706769:25952256,40108032,0 +(186,37:6630773,45706769:0,0,0 +g186,37:6630773,45706769 ) -[186,38:6630773,45706769:25952256,40108032,0 -[1,135:6630773,12106481:25952256,6507744,0 -(1,135:6630773,7073297:25952256,32768,229376 -(1,135:6630773,7073297:0,32768,229376 -(1,135:6630773,7073297:5505024,32768,229376 -r186,38:12135797,7073297:5505024,262144,229376 +[186,37:6630773,45706769:25952256,40108032,0 +[1,128:6630773,12185121:25952256,6586384,0 +(1,128:6630773,7073297:25952256,32768,229376 +(1,128:6630773,7073297:0,32768,229376 +(1,128:6630773,7073297:5505024,32768,229376 +r186,37:12135797,7073297:5505024,262144,229376 ) -k1,135:6630773,7073297:-5505024 +k1,128:6630773,7073297:-5505024 ) ) -(1,135:6630773,8803457:25952256,874119,23592 -h1,135:6630773,8803457:0,0,0 -k1,135:22218642,8803457:10364387 -k1,135:32583029,8803457:10364387 +(1,128:6630773,8842777:25952256,874119,23592 +h1,128:6630773,8842777:0,0,0 +k1,128:22218642,8842777:10364387 +k1,128:32583029,8842777:10364387 ) -(1,135:6630773,9419505:25952256,32768,0 -(1,135:6630773,9419505:5505024,32768,0 -r186,38:12135797,9419505:5505024,32768,0 +(1,128:6630773,9498145:25952256,32768,0 +(1,128:6630773,9498145:5505024,32768,0 +r186,37:12135797,9498145:5505024,32768,0 ) -k1,135:22359413,9419505:10223616 -k1,135:32583029,9419505:10223616 +k1,128:22359413,9498145:10223616 +k1,128:32583029,9498145:10223616 ) ] -(186,2:6630773,13603329:25952256,513147,134348 -g186,2:7613813,13603329 -h186,2:7613813,13603329:0,0,0 -g186,2:6630773,13603329 -g186,2:8029311,13603329 -g186,2:8910770,13603329 -k186,2:21290848,13603329:9948692 -k186,2:31239540,13603329:9948692 -(186,2:31239540,13603329:1343490,505283,0 -k186,2:31971579,13603329:732039 +(186,2:6630773,13705561:25952256,513147,134348 +g186,2:7613813,13705561 +h186,2:7613813,13705561:0,0,0 +g186,2:6630773,13705561 +g186,2:8029311,13705561 +g186,2:8910770,13705561 +k186,2:21290848,13705561:9948692 +k186,2:31239540,13705561:9948692 +(186,2:31239540,13705561:1343490,505283,0 +k186,2:31971579,13705561:732039 ) -g186,2:31239540,13603329 -g186,2:32583030,13603329 +g186,2:31239540,13705561 +g186,2:32583030,13705561 ) -(186,3:6630773,15100177:25952256,513147,7863 -g186,3:7613813,15100177 -h186,3:7613813,15100177:0,0,0 -g186,3:6630773,15100177 -g186,3:8029311,15100177 -g186,3:8910770,15100177 -k186,3:21163380,15100177:10076159 -k186,3:31239539,15100177:10076159 -(186,3:31239539,15100177:1343490,505283,0 -k186,3:31545594,15100177:306055 +(186,3:6630773,15226001:25952256,513147,7863 +g186,3:7613813,15226001 +h186,3:7613813,15226001:0,0,0 +g186,3:6630773,15226001 +g186,3:8029311,15226001 +g186,3:8910770,15226001 +k186,3:21163380,15226001:10076159 +k186,3:31239539,15226001:10076159 +(186,3:31239539,15226001:1343490,505283,0 +k186,3:31545594,15226001:306055 ) -g186,3:31239539,15100177 -g186,3:32583029,15100177 +g186,3:31239539,15226001 +g186,3:32583029,15226001 ) -(186,4:6630773,16597025:25952256,513147,7863 -g186,4:7613813,16597025 -h186,4:7613813,16597025:0,0,0 -g186,4:6630773,16597025 -k186,4:20151832,16597025:11087707 -k186,4:31239539,16597025:11087707 -(186,4:31239539,16597025:1343490,351273,3931 -k186,4:31753999,16597025:514460 +(186,4:6630773,16746441:25952256,513147,7863 +g186,4:7613813,16746441 +h186,4:7613813,16746441:0,0,0 +g186,4:6630773,16746441 +k186,4:20151832,16746441:11087707 +k186,4:31239539,16746441:11087707 +(186,4:31239539,16746441:1343490,351273,3931 +k186,4:31753999,16746441:514460 ) -g186,4:31239539,16597025 -g186,4:32583029,16597025 +g186,4:31239539,16746441 +g186,4:32583029,16746441 ) -(186,5:6630773,18093873:25952256,505283,134348 -g186,5:7613813,18093873 -h186,5:7613813,18093873:0,0,0 -g186,5:6630773,18093873 -(186,5:6630773,18093873:983040,477757,0 -k186,5:7613813,18093873:574751 +(186,5:6630773,18266881:25952256,505283,134348 +g186,5:7613813,18266881 +h186,5:7613813,18266881:0,0,0 +g186,5:6630773,18266881 +(186,5:6630773,18266881:983040,477757,0 +k186,5:7613813,18266881:574751 ) -g186,5:9685406,18093873 -g186,5:10941731,18093873 -g186,5:12802298,18093873 -g186,5:13666062,18093873 -g186,5:15717339,18093873 -g186,5:16374009,18093873 -k186,5:23806774,18093873:7432765 -k186,5:31239539,18093873:7432765 -(186,5:31239539,18093873:1343490,477757,0 -k186,5:32174740,18093873:935201 +g186,5:9685406,18266881 +g186,5:10941731,18266881 +g186,5:12802298,18266881 +g186,5:13666062,18266881 +g186,5:15717339,18266881 +g186,5:16374009,18266881 +k186,5:23806774,18266881:7432765 +k186,5:31239539,18266881:7432765 +(186,5:31239539,18266881:1343490,477757,0 +k186,5:32174740,18266881:935201 ) -g186,5:31239539,18093873 -g186,5:32583029,18093873 +g186,5:31239539,18266881 +g186,5:32583029,18266881 ) -(186,6:6630773,18935361:25952256,513147,126483 -g186,6:9448823,18935361 -h186,6:9448823,18935361:983040,0,0 -h186,6:10431863,18935361:0,0,0 -g186,6:7613813,18935361 -(186,6:7613813,18935361:1835010,477757,0 -k186,6:9448823,18935361:864422 +(186,6:6630773,19131961:25952256,513147,126483 +g186,6:9710963,19131961 +h186,6:9710963,19131961:983040,0,0 +h186,6:10694003,19131961:0,0,0 +g186,6:7613813,19131961 +(186,6:7613813,19131961:2097150,477757,0 +k186,6:9710963,19131961:1126562 ) -g186,6:11287107,18935361 -g186,6:12145628,18935361 -g186,6:13548098,18935361 -g186,6:16164950,18935361 -g186,6:16164950,18935361 -(186,6:16658333,18935361:501378,78643,0 -$186,6:16658333,18935361 -(186,6:16822187,18935361:173670,78643,0 +g186,6:11549247,19131961 +g186,6:12407768,19131961 +g186,6:13810238,19131961 +g186,6:16427090,19131961 +g186,6:16427090,19131961 +(186,6:16658333,19131961:501378,78643,0 +$186,6:16658333,19131961 +(186,6:16822187,19131961:173670,78643,0 ) -$186,6:17159711,18935361 +$186,6:17159711,19131961 ) -(186,6:17159711,18935361:501378,78643,0 -(186,6:17323565,18935361:173670,78643,0 +(186,6:17159711,19131961:501378,78643,0 +(186,6:17323565,19131961:173670,78643,0 ) ) -(186,6:17661089,18935361:501378,78643,0 -(186,6:17824943,18935361:173670,78643,0 +(186,6:17661089,19131961:501378,78643,0 +(186,6:17824943,19131961:173670,78643,0 ) ) -(186,6:18162467,18935361:501378,78643,0 -(186,6:18326321,18935361:173670,78643,0 +(186,6:18162467,19131961:501378,78643,0 +(186,6:18326321,19131961:173670,78643,0 ) ) -(186,6:18663845,18935361:501378,78643,0 -(186,6:18827699,18935361:173670,78643,0 +(186,6:18663845,19131961:501378,78643,0 +(186,6:18827699,19131961:173670,78643,0 ) ) -(186,6:19165223,18935361:501378,78643,0 -(186,6:19329077,18935361:173670,78643,0 +(186,6:19165223,19131961:501378,78643,0 +(186,6:19329077,19131961:173670,78643,0 ) ) -(186,6:19666601,18935361:501378,78643,0 -(186,6:19830455,18935361:173670,78643,0 +(186,6:19666601,19131961:501378,78643,0 +(186,6:19830455,19131961:173670,78643,0 ) ) -(186,6:20167979,18935361:501378,78643,0 -(186,6:20331833,18935361:173670,78643,0 +(186,6:20167979,19131961:501378,78643,0 +(186,6:20331833,19131961:173670,78643,0 ) ) -(186,6:20669357,18935361:501378,78643,0 -(186,6:20833211,18935361:173670,78643,0 +(186,6:20669357,19131961:501378,78643,0 +(186,6:20833211,19131961:173670,78643,0 ) ) -(186,6:21170735,18935361:501378,78643,0 -(186,6:21334589,18935361:173670,78643,0 +(186,6:21170735,19131961:501378,78643,0 +(186,6:21334589,19131961:173670,78643,0 ) ) -(186,6:21672113,18935361:501378,78643,0 -(186,6:21835967,18935361:173670,78643,0 +(186,6:21672113,19131961:501378,78643,0 +(186,6:21835967,19131961:173670,78643,0 ) ) -(186,6:22173491,18935361:501378,78643,0 -(186,6:22337345,18935361:173670,78643,0 +(186,6:22173491,19131961:501378,78643,0 +(186,6:22337345,19131961:173670,78643,0 ) ) -(186,6:22674869,18935361:501378,78643,0 -(186,6:22838723,18935361:173670,78643,0 +(186,6:22674869,19131961:501378,78643,0 +(186,6:22838723,19131961:173670,78643,0 ) ) -(186,6:23176247,18935361:501378,78643,0 -(186,6:23340101,18935361:173670,78643,0 +(186,6:23176247,19131961:501378,78643,0 +(186,6:23340101,19131961:173670,78643,0 ) ) -(186,6:23677625,18935361:501378,78643,0 -(186,6:23841479,18935361:173670,78643,0 +(186,6:23677625,19131961:501378,78643,0 +(186,6:23841479,19131961:173670,78643,0 ) ) -(186,6:24179003,18935361:501378,78643,0 -(186,6:24342857,18935361:173670,78643,0 +(186,6:24179003,19131961:501378,78643,0 +(186,6:24342857,19131961:173670,78643,0 ) ) -(186,6:24680381,18935361:501378,78643,0 -(186,6:24844235,18935361:173670,78643,0 +(186,6:24680381,19131961:501378,78643,0 +(186,6:24844235,19131961:173670,78643,0 ) ) -(186,6:25181759,18935361:501378,78643,0 -(186,6:25345613,18935361:173670,78643,0 +(186,6:25181759,19131961:501378,78643,0 +(186,6:25345613,19131961:173670,78643,0 ) ) -(186,6:25683137,18935361:501378,78643,0 -(186,6:25846991,18935361:173670,78643,0 +(186,6:25683137,19131961:501378,78643,0 +(186,6:25846991,19131961:173670,78643,0 ) ) -(186,6:26184515,18935361:501378,78643,0 -(186,6:26348369,18935361:173670,78643,0 +(186,6:26184515,19131961:501378,78643,0 +(186,6:26348369,19131961:173670,78643,0 ) ) -(186,6:26685893,18935361:501378,78643,0 -(186,6:26849747,18935361:173670,78643,0 +(186,6:26685893,19131961:501378,78643,0 +(186,6:26849747,19131961:173670,78643,0 ) ) -(186,6:27187271,18935361:501378,78643,0 -(186,6:27351125,18935361:173670,78643,0 +(186,6:27187271,19131961:501378,78643,0 +(186,6:27351125,19131961:173670,78643,0 ) ) -(186,6:27688649,18935361:501378,78643,0 -(186,6:27852503,18935361:173670,78643,0 +(186,6:27688649,19131961:501378,78643,0 +(186,6:27852503,19131961:173670,78643,0 ) ) -(186,6:28190027,18935361:501378,78643,0 -(186,6:28353881,18935361:173670,78643,0 +(186,6:28190027,19131961:501378,78643,0 +(186,6:28353881,19131961:173670,78643,0 ) ) -(186,6:28691405,18935361:501378,78643,0 -(186,6:28855259,18935361:173670,78643,0 +(186,6:28691405,19131961:501378,78643,0 +(186,6:28855259,19131961:173670,78643,0 ) ) -(186,6:29192783,18935361:501378,78643,0 -(186,6:29356637,18935361:173670,78643,0 +(186,6:29192783,19131961:501378,78643,0 +(186,6:29356637,19131961:173670,78643,0 ) ) -(186,6:29694161,18935361:501378,78643,0 -(186,6:29858015,18935361:173670,78643,0 +(186,6:29694161,19131961:501378,78643,0 +(186,6:29858015,19131961:173670,78643,0 ) ) -(186,6:30195539,18935361:501378,78643,0 -(186,6:30359393,18935361:173670,78643,0 +(186,6:30195539,19131961:501378,78643,0 +(186,6:30359393,19131961:173670,78643,0 ) ) -(186,6:30696917,18935361:501378,78643,0 -(186,6:30860771,18935361:173670,78643,0 +(186,6:30696917,19131961:501378,78643,0 +(186,6:30860771,19131961:173670,78643,0 ) ) -(186,6:31239539,18935361:1343490,477757,0 -k186,6:31985341,18935361:745802 -g186,6:32184570,18935361 +(186,6:31239539,19131961:1343490,477757,0 +k186,6:31985341,19131961:745802 +g186,6:32184570,19131961 ) -g186,6:30911859,18935361 -g186,6:32583029,18935361 +g186,6:30911859,19131961 +g186,6:32583029,19131961 ) -(186,7:6630773,19776849:25952256,505283,126483 -g186,7:9448823,19776849 -h186,7:9448823,19776849:983040,0,0 -h186,7:10431863,19776849:0,0,0 -g186,7:7613813,19776849 -(186,7:7613813,19776849:1835010,485622,0 -k186,7:9448823,19776849:864422 +(186,7:6630773,19997041:25952256,505283,126483 +g186,7:9710963,19997041 +h186,7:9710963,19997041:983040,0,0 +h186,7:10694003,19997041:0,0,0 +g186,7:7613813,19997041 +(186,7:7613813,19997041:2097150,485622,0 +k186,7:9710963,19997041:1126562 ) -g186,7:12764289,19776849 -g186,7:14154963,19776849 -g186,7:17285617,19776849 -g186,7:17285617,19776849 -(186,7:17661089,19776849:501378,78643,0 -$186,7:17661089,19776849 -(186,7:17824943,19776849:173670,78643,0 +g186,7:13026429,19997041 +g186,7:14417103,19997041 +g186,7:17547757,19997041 +g186,7:17547757,19997041 +(186,7:17661089,19997041:501378,78643,0 +$186,7:17661089,19997041 +(186,7:17824943,19997041:173670,78643,0 ) -$186,7:18162467,19776849 +$186,7:18162467,19997041 ) -(186,7:18162467,19776849:501378,78643,0 -(186,7:18326321,19776849:173670,78643,0 +(186,7:18162467,19997041:501378,78643,0 +(186,7:18326321,19997041:173670,78643,0 ) ) -(186,7:18663845,19776849:501378,78643,0 -(186,7:18827699,19776849:173670,78643,0 +(186,7:18663845,19997041:501378,78643,0 +(186,7:18827699,19997041:173670,78643,0 ) ) -(186,7:19165223,19776849:501378,78643,0 -(186,7:19329077,19776849:173670,78643,0 +(186,7:19165223,19997041:501378,78643,0 +(186,7:19329077,19997041:173670,78643,0 ) ) -(186,7:19666601,19776849:501378,78643,0 -(186,7:19830455,19776849:173670,78643,0 +(186,7:19666601,19997041:501378,78643,0 +(186,7:19830455,19997041:173670,78643,0 ) ) -(186,7:20167979,19776849:501378,78643,0 -(186,7:20331833,19776849:173670,78643,0 +(186,7:20167979,19997041:501378,78643,0 +(186,7:20331833,19997041:173670,78643,0 ) ) -(186,7:20669357,19776849:501378,78643,0 -(186,7:20833211,19776849:173670,78643,0 +(186,7:20669357,19997041:501378,78643,0 +(186,7:20833211,19997041:173670,78643,0 ) ) -(186,7:21170735,19776849:501378,78643,0 -(186,7:21334589,19776849:173670,78643,0 +(186,7:21170735,19997041:501378,78643,0 +(186,7:21334589,19997041:173670,78643,0 ) ) -(186,7:21672113,19776849:501378,78643,0 -(186,7:21835967,19776849:173670,78643,0 +(186,7:21672113,19997041:501378,78643,0 +(186,7:21835967,19997041:173670,78643,0 ) ) -(186,7:22173491,19776849:501378,78643,0 -(186,7:22337345,19776849:173670,78643,0 +(186,7:22173491,19997041:501378,78643,0 +(186,7:22337345,19997041:173670,78643,0 ) ) -(186,7:22674869,19776849:501378,78643,0 -(186,7:22838723,19776849:173670,78643,0 +(186,7:22674869,19997041:501378,78643,0 +(186,7:22838723,19997041:173670,78643,0 ) ) -(186,7:23176247,19776849:501378,78643,0 -(186,7:23340101,19776849:173670,78643,0 +(186,7:23176247,19997041:501378,78643,0 +(186,7:23340101,19997041:173670,78643,0 ) ) -(186,7:23677625,19776849:501378,78643,0 -(186,7:23841479,19776849:173670,78643,0 +(186,7:23677625,19997041:501378,78643,0 +(186,7:23841479,19997041:173670,78643,0 ) ) -(186,7:24179003,19776849:501378,78643,0 -(186,7:24342857,19776849:173670,78643,0 +(186,7:24179003,19997041:501378,78643,0 +(186,7:24342857,19997041:173670,78643,0 ) ) -(186,7:24680381,19776849:501378,78643,0 -(186,7:24844235,19776849:173670,78643,0 +(186,7:24680381,19997041:501378,78643,0 +(186,7:24844235,19997041:173670,78643,0 ) ) -(186,7:25181759,19776849:501378,78643,0 -(186,7:25345613,19776849:173670,78643,0 +(186,7:25181759,19997041:501378,78643,0 +(186,7:25345613,19997041:173670,78643,0 ) ) -(186,7:25683137,19776849:501378,78643,0 -(186,7:25846991,19776849:173670,78643,0 +(186,7:25683137,19997041:501378,78643,0 +(186,7:25846991,19997041:173670,78643,0 ) ) -(186,7:26184515,19776849:501378,78643,0 -(186,7:26348369,19776849:173670,78643,0 +(186,7:26184515,19997041:501378,78643,0 +(186,7:26348369,19997041:173670,78643,0 ) ) -(186,7:26685893,19776849:501378,78643,0 -(186,7:26849747,19776849:173670,78643,0 +(186,7:26685893,19997041:501378,78643,0 +(186,7:26849747,19997041:173670,78643,0 ) ) -(186,7:27187271,19776849:501378,78643,0 -(186,7:27351125,19776849:173670,78643,0 +(186,7:27187271,19997041:501378,78643,0 +(186,7:27351125,19997041:173670,78643,0 ) ) -(186,7:27688649,19776849:501378,78643,0 -(186,7:27852503,19776849:173670,78643,0 +(186,7:27688649,19997041:501378,78643,0 +(186,7:27852503,19997041:173670,78643,0 ) ) -(186,7:28190027,19776849:501378,78643,0 -(186,7:28353881,19776849:173670,78643,0 +(186,7:28190027,19997041:501378,78643,0 +(186,7:28353881,19997041:173670,78643,0 ) ) -(186,7:28691405,19776849:501378,78643,0 -(186,7:28855259,19776849:173670,78643,0 +(186,7:28691405,19997041:501378,78643,0 +(186,7:28855259,19997041:173670,78643,0 ) ) -(186,7:29192783,19776849:501378,78643,0 -(186,7:29356637,19776849:173670,78643,0 +(186,7:29192783,19997041:501378,78643,0 +(186,7:29356637,19997041:173670,78643,0 ) ) -(186,7:29694161,19776849:501378,78643,0 -(186,7:29858015,19776849:173670,78643,0 +(186,7:29694161,19997041:501378,78643,0 +(186,7:29858015,19997041:173670,78643,0 ) ) -(186,7:30195539,19776849:501378,78643,0 -(186,7:30359393,19776849:173670,78643,0 +(186,7:30195539,19997041:501378,78643,0 +(186,7:30359393,19997041:173670,78643,0 ) ) -(186,7:30696917,19776849:501378,78643,0 -(186,7:30860771,19776849:173670,78643,0 +(186,7:30696917,19997041:501378,78643,0 +(186,7:30860771,19997041:173670,78643,0 ) ) -(186,7:31239539,19776849:1343490,477757,0 -k186,7:31985341,19776849:745802 -g186,7:32184570,19776849 +(186,7:31239539,19997041:1343490,477757,0 +k186,7:31985341,19997041:745802 +g186,7:32184570,19997041 ) -g186,7:30911859,19776849 -g186,7:32583029,19776849 +g186,7:30911859,19997041 +g186,7:32583029,19997041 ) -(186,8:6630773,20618337:25952256,505283,134348 -g186,8:9448823,20618337 -h186,8:9448823,20618337:983040,0,0 -h186,8:10431863,20618337:0,0,0 -g186,8:7613813,20618337 -(186,8:7613813,20618337:1835010,485622,11795 -k186,8:9448823,20618337:864422 +(186,8:6630773,20862121:25952256,505283,134348 +g186,8:9710963,20862121 +h186,8:9710963,20862121:983040,0,0 +h186,8:10694003,20862121:0,0,0 +g186,8:7613813,20862121 +(186,8:7613813,20862121:2097150,485622,11795 +k186,8:9710963,20862121:1126562 ) -g186,8:13647714,20618337 -g186,8:15038388,20618337 -g186,8:17618540,20618337 -g186,8:21677840,20618337 -g186,8:21677840,20618337 -(186,8:22173491,20618337:501378,78643,0 -$186,8:22173491,20618337 -(186,8:22337345,20618337:173670,78643,0 +g186,8:13909854,20862121 +g186,8:15300528,20862121 +g186,8:17880680,20862121 +g186,8:21939980,20862121 +g186,8:21939980,20862121 +(186,8:22173491,20862121:501378,78643,0 +$186,8:22173491,20862121 +(186,8:22337345,20862121:173670,78643,0 ) -$186,8:22674869,20618337 +$186,8:22674869,20862121 ) -(186,8:22674869,20618337:501378,78643,0 -(186,8:22838723,20618337:173670,78643,0 +(186,8:22674869,20862121:501378,78643,0 +(186,8:22838723,20862121:173670,78643,0 ) ) -(186,8:23176247,20618337:501378,78643,0 -(186,8:23340101,20618337:173670,78643,0 +(186,8:23176247,20862121:501378,78643,0 +(186,8:23340101,20862121:173670,78643,0 ) ) -(186,8:23677625,20618337:501378,78643,0 -(186,8:23841479,20618337:173670,78643,0 +(186,8:23677625,20862121:501378,78643,0 +(186,8:23841479,20862121:173670,78643,0 ) ) -(186,8:24179003,20618337:501378,78643,0 -(186,8:24342857,20618337:173670,78643,0 +(186,8:24179003,20862121:501378,78643,0 +(186,8:24342857,20862121:173670,78643,0 ) ) -(186,8:24680381,20618337:501378,78643,0 -(186,8:24844235,20618337:173670,78643,0 +(186,8:24680381,20862121:501378,78643,0 +(186,8:24844235,20862121:173670,78643,0 ) ) -(186,8:25181759,20618337:501378,78643,0 -(186,8:25345613,20618337:173670,78643,0 +(186,8:25181759,20862121:501378,78643,0 +(186,8:25345613,20862121:173670,78643,0 ) ) -(186,8:25683137,20618337:501378,78643,0 -(186,8:25846991,20618337:173670,78643,0 +(186,8:25683137,20862121:501378,78643,0 +(186,8:25846991,20862121:173670,78643,0 ) ) -(186,8:26184515,20618337:501378,78643,0 -(186,8:26348369,20618337:173670,78643,0 +(186,8:26184515,20862121:501378,78643,0 +(186,8:26348369,20862121:173670,78643,0 ) ) -(186,8:26685893,20618337:501378,78643,0 -(186,8:26849747,20618337:173670,78643,0 +(186,8:26685893,20862121:501378,78643,0 +(186,8:26849747,20862121:173670,78643,0 ) ) -(186,8:27187271,20618337:501378,78643,0 -(186,8:27351125,20618337:173670,78643,0 +(186,8:27187271,20862121:501378,78643,0 +(186,8:27351125,20862121:173670,78643,0 ) ) -(186,8:27688649,20618337:501378,78643,0 -(186,8:27852503,20618337:173670,78643,0 +(186,8:27688649,20862121:501378,78643,0 +(186,8:27852503,20862121:173670,78643,0 ) ) -(186,8:28190027,20618337:501378,78643,0 -(186,8:28353881,20618337:173670,78643,0 +(186,8:28190027,20862121:501378,78643,0 +(186,8:28353881,20862121:173670,78643,0 ) ) -(186,8:28691405,20618337:501378,78643,0 -(186,8:28855259,20618337:173670,78643,0 +(186,8:28691405,20862121:501378,78643,0 +(186,8:28855259,20862121:173670,78643,0 ) ) -(186,8:29192783,20618337:501378,78643,0 -(186,8:29356637,20618337:173670,78643,0 +(186,8:29192783,20862121:501378,78643,0 +(186,8:29356637,20862121:173670,78643,0 ) ) -(186,8:29694161,20618337:501378,78643,0 -(186,8:29858015,20618337:173670,78643,0 +(186,8:29694161,20862121:501378,78643,0 +(186,8:29858015,20862121:173670,78643,0 ) ) -(186,8:30195539,20618337:501378,78643,0 -(186,8:30359393,20618337:173670,78643,0 +(186,8:30195539,20862121:501378,78643,0 +(186,8:30359393,20862121:173670,78643,0 ) ) -(186,8:30696917,20618337:501378,78643,0 -(186,8:30860771,20618337:173670,78643,0 +(186,8:30696917,20862121:501378,78643,0 +(186,8:30860771,20862121:173670,78643,0 ) ) -(186,8:31239539,20618337:1343490,485622,11795 -k186,8:31985341,20618337:745802 -g186,8:32184570,20618337 +(186,8:31239539,20862121:1343490,485622,11795 +k186,8:31985341,20862121:745802 +g186,8:32184570,20862121 ) -g186,8:30911859,20618337 -g186,8:32583029,20618337 +g186,8:30911859,20862121 +g186,8:32583029,20862121 ) -(186,9:6630773,21459825:25952256,505283,11795 -g186,9:11873653,21459825 -h186,9:11873653,21459825:2818050,0,0 -h186,9:14691703,21459825:0,0,0 -g186,9:9448823,21459825 -(186,9:9448823,21459825:2424830,485622,11795 -k186,9:11873653,21459825:882112 +(186,9:6630773,21727201:25952256,505283,11795 +g186,9:12529013,21727201 +h186,9:12529013,21727201:3080190,0,0 +h186,9:15609203,21727201:0,0,0 +g186,9:9710963,21727201 +(186,9:9710963,21727201:2818050,485622,11795 +k186,9:12529013,21727201:1275332 ) -g186,9:13294473,21459825 -g186,9:14691045,21459825 -(186,9:15154199,21459825:501378,78643,0 -$186,9:15154199,21459825 -(186,9:15318053,21459825:173670,78643,0 +g186,9:13949833,21727201 +g186,9:15346405,21727201 +(186,9:15655577,21727201:501378,78643,0 +$186,9:15655577,21727201 +(186,9:15819431,21727201:173670,78643,0 ) -$186,9:15655577,21459825 +$186,9:16156955,21727201 ) -(186,9:15655577,21459825:501378,78643,0 -(186,9:15819431,21459825:173670,78643,0 +(186,9:16156955,21727201:501378,78643,0 +(186,9:16320809,21727201:173670,78643,0 ) ) -(186,9:16156955,21459825:501378,78643,0 -(186,9:16320809,21459825:173670,78643,0 +(186,9:16658333,21727201:501378,78643,0 +(186,9:16822187,21727201:173670,78643,0 ) ) -(186,9:16658333,21459825:501378,78643,0 -(186,9:16822187,21459825:173670,78643,0 +(186,9:17159711,21727201:501378,78643,0 +(186,9:17323565,21727201:173670,78643,0 ) ) -(186,9:17159711,21459825:501378,78643,0 -(186,9:17323565,21459825:173670,78643,0 +(186,9:17661089,21727201:501378,78643,0 +(186,9:17824943,21727201:173670,78643,0 ) ) -(186,9:17661089,21459825:501378,78643,0 -(186,9:17824943,21459825:173670,78643,0 +(186,9:18162467,21727201:501378,78643,0 +(186,9:18326321,21727201:173670,78643,0 ) ) -(186,9:18162467,21459825:501378,78643,0 -(186,9:18326321,21459825:173670,78643,0 +(186,9:18663845,21727201:501378,78643,0 +(186,9:18827699,21727201:173670,78643,0 ) ) -(186,9:18663845,21459825:501378,78643,0 -(186,9:18827699,21459825:173670,78643,0 +(186,9:19165223,21727201:501378,78643,0 +(186,9:19329077,21727201:173670,78643,0 ) ) -(186,9:19165223,21459825:501378,78643,0 -(186,9:19329077,21459825:173670,78643,0 +(186,9:19666601,21727201:501378,78643,0 +(186,9:19830455,21727201:173670,78643,0 ) ) -(186,9:19666601,21459825:501378,78643,0 -(186,9:19830455,21459825:173670,78643,0 +(186,9:20167979,21727201:501378,78643,0 +(186,9:20331833,21727201:173670,78643,0 ) ) -(186,9:20167979,21459825:501378,78643,0 -(186,9:20331833,21459825:173670,78643,0 +(186,9:20669357,21727201:501378,78643,0 +(186,9:20833211,21727201:173670,78643,0 ) ) -(186,9:20669357,21459825:501378,78643,0 -(186,9:20833211,21459825:173670,78643,0 +(186,9:21170735,21727201:501378,78643,0 +(186,9:21334589,21727201:173670,78643,0 ) ) -(186,9:21170735,21459825:501378,78643,0 -(186,9:21334589,21459825:173670,78643,0 +(186,9:21672113,21727201:501378,78643,0 +(186,9:21835967,21727201:173670,78643,0 ) ) -(186,9:21672113,21459825:501378,78643,0 -(186,9:21835967,21459825:173670,78643,0 +(186,9:22173491,21727201:501378,78643,0 +(186,9:22337345,21727201:173670,78643,0 ) ) -(186,9:22173491,21459825:501378,78643,0 -(186,9:22337345,21459825:173670,78643,0 +(186,9:22674869,21727201:501378,78643,0 +(186,9:22838723,21727201:173670,78643,0 ) ) -(186,9:22674869,21459825:501378,78643,0 -(186,9:22838723,21459825:173670,78643,0 +(186,9:23176247,21727201:501378,78643,0 +(186,9:23340101,21727201:173670,78643,0 ) ) -(186,9:23176247,21459825:501378,78643,0 -(186,9:23340101,21459825:173670,78643,0 +(186,9:23677625,21727201:501378,78643,0 +(186,9:23841479,21727201:173670,78643,0 ) ) -(186,9:23677625,21459825:501378,78643,0 -(186,9:23841479,21459825:173670,78643,0 +(186,9:24179003,21727201:501378,78643,0 +(186,9:24342857,21727201:173670,78643,0 ) ) -(186,9:24179003,21459825:501378,78643,0 -(186,9:24342857,21459825:173670,78643,0 +(186,9:24680381,21727201:501378,78643,0 +(186,9:24844235,21727201:173670,78643,0 ) ) -(186,9:24680381,21459825:501378,78643,0 -(186,9:24844235,21459825:173670,78643,0 +(186,9:25181759,21727201:501378,78643,0 +(186,9:25345613,21727201:173670,78643,0 ) ) -(186,9:25181759,21459825:501378,78643,0 -(186,9:25345613,21459825:173670,78643,0 +(186,9:25683137,21727201:501378,78643,0 +(186,9:25846991,21727201:173670,78643,0 ) ) -(186,9:25683137,21459825:501378,78643,0 -(186,9:25846991,21459825:173670,78643,0 +(186,9:26184515,21727201:501378,78643,0 +(186,9:26348369,21727201:173670,78643,0 ) ) -(186,9:26184515,21459825:501378,78643,0 -(186,9:26348369,21459825:173670,78643,0 +(186,9:26685893,21727201:501378,78643,0 +(186,9:26849747,21727201:173670,78643,0 ) ) -(186,9:26685893,21459825:501378,78643,0 -(186,9:26849747,21459825:173670,78643,0 +(186,9:27187271,21727201:501378,78643,0 +(186,9:27351125,21727201:173670,78643,0 ) ) -(186,9:27187271,21459825:501378,78643,0 -(186,9:27351125,21459825:173670,78643,0 +(186,9:27688649,21727201:501378,78643,0 +(186,9:27852503,21727201:173670,78643,0 ) ) -(186,9:27688649,21459825:501378,78643,0 -(186,9:27852503,21459825:173670,78643,0 +(186,9:28190027,21727201:501378,78643,0 +(186,9:28353881,21727201:173670,78643,0 ) ) -(186,9:28190027,21459825:501378,78643,0 -(186,9:28353881,21459825:173670,78643,0 +(186,9:28691405,21727201:501378,78643,0 +(186,9:28855259,21727201:173670,78643,0 ) ) -(186,9:28691405,21459825:501378,78643,0 -(186,9:28855259,21459825:173670,78643,0 +(186,9:29192783,21727201:501378,78643,0 +(186,9:29356637,21727201:173670,78643,0 ) ) -(186,9:29192783,21459825:501378,78643,0 -(186,9:29356637,21459825:173670,78643,0 +(186,9:29694161,21727201:501378,78643,0 +(186,9:29858015,21727201:173670,78643,0 ) ) -(186,9:29694161,21459825:501378,78643,0 -(186,9:29858015,21459825:173670,78643,0 +(186,9:30195539,21727201:501378,78643,0 +(186,9:30359393,21727201:173670,78643,0 ) ) -(186,9:30195539,21459825:501378,78643,0 -(186,9:30359393,21459825:173670,78643,0 +(186,9:30696917,21727201:501378,78643,0 +(186,9:30860771,21727201:173670,78643,0 ) ) -(186,9:30696917,21459825:501378,78643,0 -(186,9:30860771,21459825:173670,78643,0 +(186,9:31239539,21727201:1343490,485622,11795 +k186,9:31985341,21727201:745802 +g186,9:32184570,21727201 ) +g186,9:30911859,21727201 +g186,9:32583029,21727201 ) -(186,9:31239539,21459825:1343490,485622,11795 -k186,9:31985341,21459825:745802 -g186,9:32184570,21459825 +(186,10:6630773,22592281:25952256,505283,134348 +g186,10:12529013,22592281 +h186,10:12529013,22592281:3080190,0,0 +h186,10:15609203,22592281:0,0,0 +g186,10:9710963,22592281 +(186,10:9710963,22592281:2818050,485622,11795 +k186,10:12529013,22592281:1275332 ) -g186,9:30911859,21459825 -g186,9:32583029,21459825 +g186,10:14346326,22592281 +g186,10:18405626,22592281 +g186,10:19796300,22592281 +g186,10:22079574,22592281 +g186,10:25927193,22592281 +(186,10:26184515,22592281:501378,78643,0 +$186,10:26184515,22592281 +(186,10:26348369,22592281:173670,78643,0 ) -(186,10:6630773,22301313:25952256,505283,134348 -g186,10:11873653,22301313 -h186,10:11873653,22301313:2818050,0,0 -h186,10:14691703,22301313:0,0,0 -g186,10:9448823,22301313 -(186,10:9448823,22301313:2424830,485622,11795 -k186,10:11873653,22301313:882112 +$186,10:26685893,22592281 ) -g186,10:13690966,22301313 -g186,10:17750266,22301313 -g186,10:19140940,22301313 -g186,10:21424214,22301313 -g186,10:25271833,22301313 -(186,10:25683137,22301313:501378,78643,0 -$186,10:25683137,22301313 -(186,10:25846991,22301313:173670,78643,0 +(186,10:26685893,22592281:501378,78643,0 +(186,10:26849747,22592281:173670,78643,0 ) -$186,10:26184515,22301313 ) -(186,10:26184515,22301313:501378,78643,0 -(186,10:26348369,22301313:173670,78643,0 +(186,10:27187271,22592281:501378,78643,0 +(186,10:27351125,22592281:173670,78643,0 ) ) -(186,10:26685893,22301313:501378,78643,0 -(186,10:26849747,22301313:173670,78643,0 +(186,10:27688649,22592281:501378,78643,0 +(186,10:27852503,22592281:173670,78643,0 ) ) -(186,10:27187271,22301313:501378,78643,0 -(186,10:27351125,22301313:173670,78643,0 +(186,10:28190027,22592281:501378,78643,0 +(186,10:28353881,22592281:173670,78643,0 ) ) -(186,10:27688649,22301313:501378,78643,0 -(186,10:27852503,22301313:173670,78643,0 +(186,10:28691405,22592281:501378,78643,0 +(186,10:28855259,22592281:173670,78643,0 ) ) -(186,10:28190027,22301313:501378,78643,0 -(186,10:28353881,22301313:173670,78643,0 +(186,10:29192783,22592281:501378,78643,0 +(186,10:29356637,22592281:173670,78643,0 ) ) -(186,10:28691405,22301313:501378,78643,0 -(186,10:28855259,22301313:173670,78643,0 +(186,10:29694161,22592281:501378,78643,0 +(186,10:29858015,22592281:173670,78643,0 ) ) -(186,10:29192783,22301313:501378,78643,0 -(186,10:29356637,22301313:173670,78643,0 +(186,10:30195539,22592281:501378,78643,0 +(186,10:30359393,22592281:173670,78643,0 ) ) -(186,10:29694161,22301313:501378,78643,0 -(186,10:29858015,22301313:173670,78643,0 +(186,10:30696917,22592281:501378,78643,0 +(186,10:30860771,22592281:173670,78643,0 ) ) -(186,10:30195539,22301313:501378,78643,0 -(186,10:30359393,22301313:173670,78643,0 +(186,10:31239539,22592281:1343490,481690,0 +k186,10:31985341,22592281:745802 +g186,10:32184570,22592281 ) +g186,10:30911859,22592281 +g186,10:32583029,22592281 ) -(186,10:30696917,22301313:501378,78643,0 -(186,10:30860771,22301313:173670,78643,0 +(186,11:6630773,23457361:25952256,485622,134348 +g186,11:12529013,23457361 +h186,11:12529013,23457361:3080190,0,0 +h186,11:15609203,23457361:0,0,0 +g186,11:9710963,23457361 +(186,11:9710963,23457361:2818050,485622,11795 +k186,11:12529013,23457361:1275332 ) +g186,11:15558087,23457361 +(186,11:15655577,23457361:501378,78643,0 +$186,11:15655577,23457361 +(186,11:15819431,23457361:173670,78643,0 ) -(186,10:31239539,22301313:1343490,481690,0 -k186,10:31985341,22301313:745802 -g186,10:32184570,22301313 +$186,11:16156955,23457361 ) -g186,10:30911859,22301313 -g186,10:32583029,22301313 +(186,11:16156955,23457361:501378,78643,0 +(186,11:16320809,23457361:173670,78643,0 ) -(186,11:6630773,23142801:25952256,485622,134348 -g186,11:11873653,23142801 -h186,11:11873653,23142801:2818050,0,0 -h186,11:14691703,23142801:0,0,0 -g186,11:9448823,23142801 -(186,11:9448823,23142801:2424830,485622,11795 -k186,11:11873653,23142801:882112 ) -g186,11:14902727,23142801 -(186,11:15154199,23142801:501378,78643,0 -$186,11:15154199,23142801 -(186,11:15318053,23142801:173670,78643,0 +(186,11:16658333,23457361:501378,78643,0 +(186,11:16822187,23457361:173670,78643,0 ) -$186,11:15655577,23142801 ) -(186,11:15655577,23142801:501378,78643,0 -(186,11:15819431,23142801:173670,78643,0 +(186,11:17159711,23457361:501378,78643,0 +(186,11:17323565,23457361:173670,78643,0 ) ) -(186,11:16156955,23142801:501378,78643,0 -(186,11:16320809,23142801:173670,78643,0 +(186,11:17661089,23457361:501378,78643,0 +(186,11:17824943,23457361:173670,78643,0 ) ) -(186,11:16658333,23142801:501378,78643,0 -(186,11:16822187,23142801:173670,78643,0 +(186,11:18162467,23457361:501378,78643,0 +(186,11:18326321,23457361:173670,78643,0 ) ) -(186,11:17159711,23142801:501378,78643,0 -(186,11:17323565,23142801:173670,78643,0 +(186,11:18663845,23457361:501378,78643,0 +(186,11:18827699,23457361:173670,78643,0 ) ) -(186,11:17661089,23142801:501378,78643,0 -(186,11:17824943,23142801:173670,78643,0 +(186,11:19165223,23457361:501378,78643,0 +(186,11:19329077,23457361:173670,78643,0 ) ) -(186,11:18162467,23142801:501378,78643,0 -(186,11:18326321,23142801:173670,78643,0 +(186,11:19666601,23457361:501378,78643,0 +(186,11:19830455,23457361:173670,78643,0 ) ) -(186,11:18663845,23142801:501378,78643,0 -(186,11:18827699,23142801:173670,78643,0 +(186,11:20167979,23457361:501378,78643,0 +(186,11:20331833,23457361:173670,78643,0 ) ) -(186,11:19165223,23142801:501378,78643,0 -(186,11:19329077,23142801:173670,78643,0 +(186,11:20669357,23457361:501378,78643,0 +(186,11:20833211,23457361:173670,78643,0 ) ) -(186,11:19666601,23142801:501378,78643,0 -(186,11:19830455,23142801:173670,78643,0 +(186,11:21170735,23457361:501378,78643,0 +(186,11:21334589,23457361:173670,78643,0 ) ) -(186,11:20167979,23142801:501378,78643,0 -(186,11:20331833,23142801:173670,78643,0 +(186,11:21672113,23457361:501378,78643,0 +(186,11:21835967,23457361:173670,78643,0 ) ) -(186,11:20669357,23142801:501378,78643,0 -(186,11:20833211,23142801:173670,78643,0 +(186,11:22173491,23457361:501378,78643,0 +(186,11:22337345,23457361:173670,78643,0 ) ) -(186,11:21170735,23142801:501378,78643,0 -(186,11:21334589,23142801:173670,78643,0 +(186,11:22674869,23457361:501378,78643,0 +(186,11:22838723,23457361:173670,78643,0 ) ) -(186,11:21672113,23142801:501378,78643,0 -(186,11:21835967,23142801:173670,78643,0 +(186,11:23176247,23457361:501378,78643,0 +(186,11:23340101,23457361:173670,78643,0 ) ) -(186,11:22173491,23142801:501378,78643,0 -(186,11:22337345,23142801:173670,78643,0 +(186,11:23677625,23457361:501378,78643,0 +(186,11:23841479,23457361:173670,78643,0 ) ) -(186,11:22674869,23142801:501378,78643,0 -(186,11:22838723,23142801:173670,78643,0 +(186,11:24179003,23457361:501378,78643,0 +(186,11:24342857,23457361:173670,78643,0 ) ) -(186,11:23176247,23142801:501378,78643,0 -(186,11:23340101,23142801:173670,78643,0 +(186,11:24680381,23457361:501378,78643,0 +(186,11:24844235,23457361:173670,78643,0 ) ) -(186,11:23677625,23142801:501378,78643,0 -(186,11:23841479,23142801:173670,78643,0 +(186,11:25181759,23457361:501378,78643,0 +(186,11:25345613,23457361:173670,78643,0 ) ) -(186,11:24179003,23142801:501378,78643,0 -(186,11:24342857,23142801:173670,78643,0 +(186,11:25683137,23457361:501378,78643,0 +(186,11:25846991,23457361:173670,78643,0 ) ) -(186,11:24680381,23142801:501378,78643,0 -(186,11:24844235,23142801:173670,78643,0 +(186,11:26184515,23457361:501378,78643,0 +(186,11:26348369,23457361:173670,78643,0 ) ) -(186,11:25181759,23142801:501378,78643,0 -(186,11:25345613,23142801:173670,78643,0 +(186,11:26685893,23457361:501378,78643,0 +(186,11:26849747,23457361:173670,78643,0 ) ) -(186,11:25683137,23142801:501378,78643,0 -(186,11:25846991,23142801:173670,78643,0 +(186,11:27187271,23457361:501378,78643,0 +(186,11:27351125,23457361:173670,78643,0 ) ) -(186,11:26184515,23142801:501378,78643,0 -(186,11:26348369,23142801:173670,78643,0 +(186,11:27688649,23457361:501378,78643,0 +(186,11:27852503,23457361:173670,78643,0 ) ) -(186,11:26685893,23142801:501378,78643,0 -(186,11:26849747,23142801:173670,78643,0 +(186,11:28190027,23457361:501378,78643,0 +(186,11:28353881,23457361:173670,78643,0 ) ) -(186,11:27187271,23142801:501378,78643,0 -(186,11:27351125,23142801:173670,78643,0 +(186,11:28691405,23457361:501378,78643,0 +(186,11:28855259,23457361:173670,78643,0 ) ) -(186,11:27688649,23142801:501378,78643,0 -(186,11:27852503,23142801:173670,78643,0 +(186,11:29192783,23457361:501378,78643,0 +(186,11:29356637,23457361:173670,78643,0 ) ) -(186,11:28190027,23142801:501378,78643,0 -(186,11:28353881,23142801:173670,78643,0 +(186,11:29694161,23457361:501378,78643,0 +(186,11:29858015,23457361:173670,78643,0 ) ) -(186,11:28691405,23142801:501378,78643,0 -(186,11:28855259,23142801:173670,78643,0 +(186,11:30195539,23457361:501378,78643,0 +(186,11:30359393,23457361:173670,78643,0 ) ) -(186,11:29192783,23142801:501378,78643,0 -(186,11:29356637,23142801:173670,78643,0 +(186,11:30696917,23457361:501378,78643,0 +(186,11:30860771,23457361:173670,78643,0 ) ) -(186,11:29694161,23142801:501378,78643,0 -(186,11:29858015,23142801:173670,78643,0 +(186,11:31239539,23457361:1343490,481690,0 +k186,11:31985341,23457361:745802 +g186,11:32184570,23457361 ) +g186,11:30911859,23457361 +g186,11:32583029,23457361 ) -(186,11:30195539,23142801:501378,78643,0 -(186,11:30359393,23142801:173670,78643,0 +(186,12:6630773,24322441:25952256,505283,134348 +g186,12:9710963,24322441 +h186,12:9710963,24322441:983040,0,0 +h186,12:10694003,24322441:0,0,0 +g186,12:7613813,24322441 +(186,12:7613813,24322441:2097150,481690,0 +k186,12:9710963,24322441:1126562 ) +g186,12:12626659,24322441 +g186,12:15413905,24322441 +g186,12:16264562,24322441 +g186,12:19470583,24322441 +g186,12:19470583,24322441 +(186,12:19666601,24322441:501378,78643,0 +$186,12:19666601,24322441 +(186,12:19830455,24322441:173670,78643,0 ) -(186,11:30696917,23142801:501378,78643,0 -(186,11:30860771,23142801:173670,78643,0 +$186,12:20167979,24322441 ) +(186,12:20167979,24322441:501378,78643,0 +(186,12:20331833,24322441:173670,78643,0 ) -(186,11:31239539,23142801:1343490,481690,0 -k186,11:31985341,23142801:745802 -g186,11:32184570,23142801 ) -g186,11:30911859,23142801 -g186,11:32583029,23142801 +(186,12:20669357,24322441:501378,78643,0 +(186,12:20833211,24322441:173670,78643,0 ) -(186,12:6630773,23984289:25952256,505283,134348 -g186,12:9448823,23984289 -h186,12:9448823,23984289:983040,0,0 -h186,12:10431863,23984289:0,0,0 -g186,12:7613813,23984289 -(186,12:7613813,23984289:1835010,481690,0 -k186,12:9448823,23984289:864422 ) -g186,12:12364519,23984289 -g186,12:15151765,23984289 -g186,12:16002422,23984289 -g186,12:19208443,23984289 -g186,12:19208443,23984289 -(186,12:19666601,23984289:501378,78643,0 -$186,12:19666601,23984289 -(186,12:19830455,23984289:173670,78643,0 +(186,12:21170735,24322441:501378,78643,0 +(186,12:21334589,24322441:173670,78643,0 ) -$186,12:20167979,23984289 ) -(186,12:20167979,23984289:501378,78643,0 -(186,12:20331833,23984289:173670,78643,0 +(186,12:21672113,24322441:501378,78643,0 +(186,12:21835967,24322441:173670,78643,0 ) ) -(186,12:20669357,23984289:501378,78643,0 -(186,12:20833211,23984289:173670,78643,0 +(186,12:22173491,24322441:501378,78643,0 +(186,12:22337345,24322441:173670,78643,0 ) ) -(186,12:21170735,23984289:501378,78643,0 -(186,12:21334589,23984289:173670,78643,0 +(186,12:22674869,24322441:501378,78643,0 +(186,12:22838723,24322441:173670,78643,0 ) ) -(186,12:21672113,23984289:501378,78643,0 -(186,12:21835967,23984289:173670,78643,0 +(186,12:23176247,24322441:501378,78643,0 +(186,12:23340101,24322441:173670,78643,0 ) ) -(186,12:22173491,23984289:501378,78643,0 -(186,12:22337345,23984289:173670,78643,0 +(186,12:23677625,24322441:501378,78643,0 +(186,12:23841479,24322441:173670,78643,0 ) ) -(186,12:22674869,23984289:501378,78643,0 -(186,12:22838723,23984289:173670,78643,0 +(186,12:24179003,24322441:501378,78643,0 +(186,12:24342857,24322441:173670,78643,0 ) ) -(186,12:23176247,23984289:501378,78643,0 -(186,12:23340101,23984289:173670,78643,0 +(186,12:24680381,24322441:501378,78643,0 +(186,12:24844235,24322441:173670,78643,0 ) ) -(186,12:23677625,23984289:501378,78643,0 -(186,12:23841479,23984289:173670,78643,0 +(186,12:25181759,24322441:501378,78643,0 +(186,12:25345613,24322441:173670,78643,0 ) ) -(186,12:24179003,23984289:501378,78643,0 -(186,12:24342857,23984289:173670,78643,0 +(186,12:25683137,24322441:501378,78643,0 +(186,12:25846991,24322441:173670,78643,0 ) ) -(186,12:24680381,23984289:501378,78643,0 -(186,12:24844235,23984289:173670,78643,0 +(186,12:26184515,24322441:501378,78643,0 +(186,12:26348369,24322441:173670,78643,0 ) ) -(186,12:25181759,23984289:501378,78643,0 -(186,12:25345613,23984289:173670,78643,0 +(186,12:26685893,24322441:501378,78643,0 +(186,12:26849747,24322441:173670,78643,0 ) ) -(186,12:25683137,23984289:501378,78643,0 -(186,12:25846991,23984289:173670,78643,0 +(186,12:27187271,24322441:501378,78643,0 +(186,12:27351125,24322441:173670,78643,0 ) ) -(186,12:26184515,23984289:501378,78643,0 -(186,12:26348369,23984289:173670,78643,0 +(186,12:27688649,24322441:501378,78643,0 +(186,12:27852503,24322441:173670,78643,0 ) ) -(186,12:26685893,23984289:501378,78643,0 -(186,12:26849747,23984289:173670,78643,0 +(186,12:28190027,24322441:501378,78643,0 +(186,12:28353881,24322441:173670,78643,0 ) ) -(186,12:27187271,23984289:501378,78643,0 -(186,12:27351125,23984289:173670,78643,0 +(186,12:28691405,24322441:501378,78643,0 +(186,12:28855259,24322441:173670,78643,0 ) ) -(186,12:27688649,23984289:501378,78643,0 -(186,12:27852503,23984289:173670,78643,0 +(186,12:29192783,24322441:501378,78643,0 +(186,12:29356637,24322441:173670,78643,0 ) ) -(186,12:28190027,23984289:501378,78643,0 -(186,12:28353881,23984289:173670,78643,0 +(186,12:29694161,24322441:501378,78643,0 +(186,12:29858015,24322441:173670,78643,0 ) ) -(186,12:28691405,23984289:501378,78643,0 -(186,12:28855259,23984289:173670,78643,0 +(186,12:30195539,24322441:501378,78643,0 +(186,12:30359393,24322441:173670,78643,0 ) ) -(186,12:29192783,23984289:501378,78643,0 -(186,12:29356637,23984289:173670,78643,0 +(186,12:30696917,24322441:501378,78643,0 +(186,12:30860771,24322441:173670,78643,0 ) ) -(186,12:29694161,23984289:501378,78643,0 -(186,12:29858015,23984289:173670,78643,0 +(186,12:31239539,24322441:1343490,473825,11795 +k186,12:31985341,24322441:745802 +g186,12:32184570,24322441 ) +g186,12:30911859,24322441 +g186,12:32583029,24322441 ) -(186,12:30195539,23984289:501378,78643,0 -(186,12:30359393,23984289:173670,78643,0 +(186,13:6630773,25187521:25952256,505283,126483 +g186,13:12529013,25187521 +h186,13:12529013,25187521:3080190,0,0 +h186,13:15609203,25187521:0,0,0 +g186,13:9710963,25187521 +(186,13:9710963,25187521:2818050,481690,0 +k186,13:12529013,25187521:1275332 ) +g186,13:14362055,25187521 +g186,13:15552844,25187521 +g186,13:16771158,25187521 +g186,13:19184194,25187521 +(186,13:19666601,25187521:501378,78643,0 +$186,13:19666601,25187521 +(186,13:19830455,25187521:173670,78643,0 ) -(186,12:30696917,23984289:501378,78643,0 -(186,12:30860771,23984289:173670,78643,0 +$186,13:20167979,25187521 ) +(186,13:20167979,25187521:501378,78643,0 +(186,13:20331833,25187521:173670,78643,0 ) -(186,12:31239539,23984289:1343490,473825,11795 -k186,12:31985341,23984289:745802 -g186,12:32184570,23984289 ) -g186,12:30911859,23984289 -g186,12:32583029,23984289 +(186,13:20669357,25187521:501378,78643,0 +(186,13:20833211,25187521:173670,78643,0 ) -(186,13:6630773,24825777:25952256,505283,126483 -g186,13:11873653,24825777 -h186,13:11873653,24825777:2818050,0,0 -h186,13:14691703,24825777:0,0,0 -g186,13:9448823,24825777 -(186,13:9448823,24825777:2424830,481690,0 -k186,13:11873653,24825777:882112 ) -g186,13:13706695,24825777 -g186,13:14897484,24825777 -g186,13:16115798,24825777 -g186,13:18528834,24825777 -(186,13:18663845,24825777:501378,78643,0 -$186,13:18663845,24825777 -(186,13:18827699,24825777:173670,78643,0 +(186,13:21170735,25187521:501378,78643,0 +(186,13:21334589,25187521:173670,78643,0 ) -$186,13:19165223,24825777 ) -(186,13:19165223,24825777:501378,78643,0 -(186,13:19329077,24825777:173670,78643,0 +(186,13:21672113,25187521:501378,78643,0 +(186,13:21835967,25187521:173670,78643,0 ) ) -(186,13:19666601,24825777:501378,78643,0 -(186,13:19830455,24825777:173670,78643,0 +(186,13:22173491,25187521:501378,78643,0 +(186,13:22337345,25187521:173670,78643,0 ) ) -(186,13:20167979,24825777:501378,78643,0 -(186,13:20331833,24825777:173670,78643,0 +(186,13:22674869,25187521:501378,78643,0 +(186,13:22838723,25187521:173670,78643,0 ) ) -(186,13:20669357,24825777:501378,78643,0 -(186,13:20833211,24825777:173670,78643,0 +(186,13:23176247,25187521:501378,78643,0 +(186,13:23340101,25187521:173670,78643,0 ) ) -(186,13:21170735,24825777:501378,78643,0 -(186,13:21334589,24825777:173670,78643,0 +(186,13:23677625,25187521:501378,78643,0 +(186,13:23841479,25187521:173670,78643,0 ) ) -(186,13:21672113,24825777:501378,78643,0 -(186,13:21835967,24825777:173670,78643,0 +(186,13:24179003,25187521:501378,78643,0 +(186,13:24342857,25187521:173670,78643,0 ) ) -(186,13:22173491,24825777:501378,78643,0 -(186,13:22337345,24825777:173670,78643,0 +(186,13:24680381,25187521:501378,78643,0 +(186,13:24844235,25187521:173670,78643,0 ) ) -(186,13:22674869,24825777:501378,78643,0 -(186,13:22838723,24825777:173670,78643,0 +(186,13:25181759,25187521:501378,78643,0 +(186,13:25345613,25187521:173670,78643,0 ) ) -(186,13:23176247,24825777:501378,78643,0 -(186,13:23340101,24825777:173670,78643,0 +(186,13:25683137,25187521:501378,78643,0 +(186,13:25846991,25187521:173670,78643,0 ) ) -(186,13:23677625,24825777:501378,78643,0 -(186,13:23841479,24825777:173670,78643,0 +(186,13:26184515,25187521:501378,78643,0 +(186,13:26348369,25187521:173670,78643,0 ) ) -(186,13:24179003,24825777:501378,78643,0 -(186,13:24342857,24825777:173670,78643,0 +(186,13:26685893,25187521:501378,78643,0 +(186,13:26849747,25187521:173670,78643,0 ) ) -(186,13:24680381,24825777:501378,78643,0 -(186,13:24844235,24825777:173670,78643,0 +(186,13:27187271,25187521:501378,78643,0 +(186,13:27351125,25187521:173670,78643,0 ) ) -(186,13:25181759,24825777:501378,78643,0 -(186,13:25345613,24825777:173670,78643,0 +(186,13:27688649,25187521:501378,78643,0 +(186,13:27852503,25187521:173670,78643,0 ) ) -(186,13:25683137,24825777:501378,78643,0 -(186,13:25846991,24825777:173670,78643,0 +(186,13:28190027,25187521:501378,78643,0 +(186,13:28353881,25187521:173670,78643,0 ) ) -(186,13:26184515,24825777:501378,78643,0 -(186,13:26348369,24825777:173670,78643,0 +(186,13:28691405,25187521:501378,78643,0 +(186,13:28855259,25187521:173670,78643,0 ) ) -(186,13:26685893,24825777:501378,78643,0 -(186,13:26849747,24825777:173670,78643,0 +(186,13:29192783,25187521:501378,78643,0 +(186,13:29356637,25187521:173670,78643,0 ) ) -(186,13:27187271,24825777:501378,78643,0 -(186,13:27351125,24825777:173670,78643,0 +(186,13:29694161,25187521:501378,78643,0 +(186,13:29858015,25187521:173670,78643,0 ) ) -(186,13:27688649,24825777:501378,78643,0 -(186,13:27852503,24825777:173670,78643,0 +(186,13:30195539,25187521:501378,78643,0 +(186,13:30359393,25187521:173670,78643,0 ) ) -(186,13:28190027,24825777:501378,78643,0 -(186,13:28353881,24825777:173670,78643,0 +(186,13:30696917,25187521:501378,78643,0 +(186,13:30860771,25187521:173670,78643,0 ) ) -(186,13:28691405,24825777:501378,78643,0 -(186,13:28855259,24825777:173670,78643,0 +(186,13:31239539,25187521:1343490,473825,11795 +k186,13:31985341,25187521:745802 +g186,13:32184570,25187521 ) +g186,13:30911859,25187521 +g186,13:32583029,25187521 ) -(186,13:29192783,24825777:501378,78643,0 -(186,13:29356637,24825777:173670,78643,0 +(186,14:6630773,26052601:25952256,505283,126483 +g186,14:12529013,26052601 +h186,14:12529013,26052601:3080190,0,0 +h186,14:15609203,26052601:0,0,0 +g186,14:9710963,26052601 +(186,14:9710963,26052601:2818050,485622,0 +k186,14:12529013,26052601:1275332 ) +g186,14:13677203,26052601 +g186,14:16183955,26052601 +g186,14:17572008,26052601 +(186,14:17661089,26052601:501378,78643,0 +$186,14:17661089,26052601 +(186,14:17824943,26052601:173670,78643,0 ) -(186,13:29694161,24825777:501378,78643,0 -(186,13:29858015,24825777:173670,78643,0 +$186,14:18162467,26052601 ) +(186,14:18162467,26052601:501378,78643,0 +(186,14:18326321,26052601:173670,78643,0 ) -(186,13:30195539,24825777:501378,78643,0 -(186,13:30359393,24825777:173670,78643,0 ) +(186,14:18663845,26052601:501378,78643,0 +(186,14:18827699,26052601:173670,78643,0 ) -(186,13:30696917,24825777:501378,78643,0 -(186,13:30860771,24825777:173670,78643,0 ) +(186,14:19165223,26052601:501378,78643,0 +(186,14:19329077,26052601:173670,78643,0 ) -(186,13:31239539,24825777:1343490,473825,11795 -k186,13:31985341,24825777:745802 -g186,13:32184570,24825777 ) -g186,13:30911859,24825777 -g186,13:32583029,24825777 +(186,14:19666601,26052601:501378,78643,0 +(186,14:19830455,26052601:173670,78643,0 ) -(186,14:6630773,25667265:25952256,505283,126483 -g186,14:11873653,25667265 -h186,14:11873653,25667265:2818050,0,0 -h186,14:14691703,25667265:0,0,0 -g186,14:9448823,25667265 -(186,14:9448823,25667265:2424830,485622,0 -k186,14:11873653,25667265:882112 ) -g186,14:13021843,25667265 -g186,14:15528595,25667265 -g186,14:16916648,25667265 -(186,14:17159711,25667265:501378,78643,0 -$186,14:17159711,25667265 -(186,14:17323565,25667265:173670,78643,0 +(186,14:20167979,26052601:501378,78643,0 +(186,14:20331833,26052601:173670,78643,0 ) -$186,14:17661089,25667265 ) -(186,14:17661089,25667265:501378,78643,0 -(186,14:17824943,25667265:173670,78643,0 +(186,14:20669357,26052601:501378,78643,0 +(186,14:20833211,26052601:173670,78643,0 ) ) -(186,14:18162467,25667265:501378,78643,0 -(186,14:18326321,25667265:173670,78643,0 +(186,14:21170735,26052601:501378,78643,0 +(186,14:21334589,26052601:173670,78643,0 ) ) -(186,14:18663845,25667265:501378,78643,0 -(186,14:18827699,25667265:173670,78643,0 +(186,14:21672113,26052601:501378,78643,0 +(186,14:21835967,26052601:173670,78643,0 ) ) -(186,14:19165223,25667265:501378,78643,0 -(186,14:19329077,25667265:173670,78643,0 +(186,14:22173491,26052601:501378,78643,0 +(186,14:22337345,26052601:173670,78643,0 ) ) -(186,14:19666601,25667265:501378,78643,0 -(186,14:19830455,25667265:173670,78643,0 +(186,14:22674869,26052601:501378,78643,0 +(186,14:22838723,26052601:173670,78643,0 ) ) -(186,14:20167979,25667265:501378,78643,0 -(186,14:20331833,25667265:173670,78643,0 +(186,14:23176247,26052601:501378,78643,0 +(186,14:23340101,26052601:173670,78643,0 ) ) -(186,14:20669357,25667265:501378,78643,0 -(186,14:20833211,25667265:173670,78643,0 +(186,14:23677625,26052601:501378,78643,0 +(186,14:23841479,26052601:173670,78643,0 ) ) -(186,14:21170735,25667265:501378,78643,0 -(186,14:21334589,25667265:173670,78643,0 +(186,14:24179003,26052601:501378,78643,0 +(186,14:24342857,26052601:173670,78643,0 ) ) -(186,14:21672113,25667265:501378,78643,0 -(186,14:21835967,25667265:173670,78643,0 +(186,14:24680381,26052601:501378,78643,0 +(186,14:24844235,26052601:173670,78643,0 ) ) -(186,14:22173491,25667265:501378,78643,0 -(186,14:22337345,25667265:173670,78643,0 +(186,14:25181759,26052601:501378,78643,0 +(186,14:25345613,26052601:173670,78643,0 ) ) -(186,14:22674869,25667265:501378,78643,0 -(186,14:22838723,25667265:173670,78643,0 +(186,14:25683137,26052601:501378,78643,0 +(186,14:25846991,26052601:173670,78643,0 ) ) -(186,14:23176247,25667265:501378,78643,0 -(186,14:23340101,25667265:173670,78643,0 +(186,14:26184515,26052601:501378,78643,0 +(186,14:26348369,26052601:173670,78643,0 ) ) -(186,14:23677625,25667265:501378,78643,0 -(186,14:23841479,25667265:173670,78643,0 +(186,14:26685893,26052601:501378,78643,0 +(186,14:26849747,26052601:173670,78643,0 ) ) -(186,14:24179003,25667265:501378,78643,0 -(186,14:24342857,25667265:173670,78643,0 +(186,14:27187271,26052601:501378,78643,0 +(186,14:27351125,26052601:173670,78643,0 ) ) -(186,14:24680381,25667265:501378,78643,0 -(186,14:24844235,25667265:173670,78643,0 +(186,14:27688649,26052601:501378,78643,0 +(186,14:27852503,26052601:173670,78643,0 ) ) -(186,14:25181759,25667265:501378,78643,0 -(186,14:25345613,25667265:173670,78643,0 +(186,14:28190027,26052601:501378,78643,0 +(186,14:28353881,26052601:173670,78643,0 ) ) -(186,14:25683137,25667265:501378,78643,0 -(186,14:25846991,25667265:173670,78643,0 +(186,14:28691405,26052601:501378,78643,0 +(186,14:28855259,26052601:173670,78643,0 ) ) -(186,14:26184515,25667265:501378,78643,0 -(186,14:26348369,25667265:173670,78643,0 +(186,14:29192783,26052601:501378,78643,0 +(186,14:29356637,26052601:173670,78643,0 ) ) -(186,14:26685893,25667265:501378,78643,0 -(186,14:26849747,25667265:173670,78643,0 +(186,14:29694161,26052601:501378,78643,0 +(186,14:29858015,26052601:173670,78643,0 ) ) -(186,14:27187271,25667265:501378,78643,0 -(186,14:27351125,25667265:173670,78643,0 +(186,14:30195539,26052601:501378,78643,0 +(186,14:30359393,26052601:173670,78643,0 ) ) -(186,14:27688649,25667265:501378,78643,0 -(186,14:27852503,25667265:173670,78643,0 +(186,14:30696917,26052601:501378,78643,0 +(186,14:30860771,26052601:173670,78643,0 ) ) -(186,14:28190027,25667265:501378,78643,0 -(186,14:28353881,25667265:173670,78643,0 +(186,14:31239539,26052601:1343490,473825,11795 +k186,14:31985341,26052601:745802 +g186,14:32184570,26052601 ) +g186,14:30911859,26052601 +g186,14:32583029,26052601 ) -(186,14:28691405,25667265:501378,78643,0 -(186,14:28855259,25667265:173670,78643,0 +(186,15:6630773,26917681:25952256,513147,11795 +g186,15:12529013,26917681 +h186,15:12529013,26917681:3080190,0,0 +h186,15:15609203,26917681:0,0,0 +g186,15:9710963,26917681 +(186,15:9710963,26917681:2818050,485622,11795 +k186,15:12529013,26917681:1275332 ) +g186,15:14820807,26917681 +g186,15:17133573,26917681 +(186,15:17159711,26917681:501378,78643,0 +$186,15:17159711,26917681 +(186,15:17323565,26917681:173670,78643,0 ) -(186,14:29192783,25667265:501378,78643,0 -(186,14:29356637,25667265:173670,78643,0 +$186,15:17661089,26917681 ) +(186,15:17661089,26917681:501378,78643,0 +(186,15:17824943,26917681:173670,78643,0 ) -(186,14:29694161,25667265:501378,78643,0 -(186,14:29858015,25667265:173670,78643,0 ) +(186,15:18162467,26917681:501378,78643,0 +(186,15:18326321,26917681:173670,78643,0 ) -(186,14:30195539,25667265:501378,78643,0 -(186,14:30359393,25667265:173670,78643,0 ) +(186,15:18663845,26917681:501378,78643,0 +(186,15:18827699,26917681:173670,78643,0 ) -(186,14:30696917,25667265:501378,78643,0 -(186,14:30860771,25667265:173670,78643,0 ) +(186,15:19165223,26917681:501378,78643,0 +(186,15:19329077,26917681:173670,78643,0 ) -(186,14:31239539,25667265:1343490,473825,11795 -k186,14:31985341,25667265:745802 -g186,14:32184570,25667265 ) -g186,14:30911859,25667265 -g186,14:32583029,25667265 +(186,15:19666601,26917681:501378,78643,0 +(186,15:19830455,26917681:173670,78643,0 ) -(186,15:6630773,26508753:25952256,513147,11795 -g186,15:11873653,26508753 -h186,15:11873653,26508753:2818050,0,0 -h186,15:14691703,26508753:0,0,0 -g186,15:9448823,26508753 -(186,15:9448823,26508753:2424830,485622,11795 -k186,15:11873653,26508753:882112 ) -g186,15:14165447,26508753 -g186,15:16478213,26508753 -(186,15:16658333,26508753:501378,78643,0 -$186,15:16658333,26508753 -(186,15:16822187,26508753:173670,78643,0 +(186,15:20167979,26917681:501378,78643,0 +(186,15:20331833,26917681:173670,78643,0 ) -$186,15:17159711,26508753 ) -(186,15:17159711,26508753:501378,78643,0 -(186,15:17323565,26508753:173670,78643,0 +(186,15:20669357,26917681:501378,78643,0 +(186,15:20833211,26917681:173670,78643,0 ) ) -(186,15:17661089,26508753:501378,78643,0 -(186,15:17824943,26508753:173670,78643,0 +(186,15:21170735,26917681:501378,78643,0 +(186,15:21334589,26917681:173670,78643,0 ) ) -(186,15:18162467,26508753:501378,78643,0 -(186,15:18326321,26508753:173670,78643,0 +(186,15:21672113,26917681:501378,78643,0 +(186,15:21835967,26917681:173670,78643,0 ) ) -(186,15:18663845,26508753:501378,78643,0 -(186,15:18827699,26508753:173670,78643,0 +(186,15:22173491,26917681:501378,78643,0 +(186,15:22337345,26917681:173670,78643,0 ) ) -(186,15:19165223,26508753:501378,78643,0 -(186,15:19329077,26508753:173670,78643,0 +(186,15:22674869,26917681:501378,78643,0 +(186,15:22838723,26917681:173670,78643,0 ) ) -(186,15:19666601,26508753:501378,78643,0 -(186,15:19830455,26508753:173670,78643,0 +(186,15:23176247,26917681:501378,78643,0 +(186,15:23340101,26917681:173670,78643,0 ) ) -(186,15:20167979,26508753:501378,78643,0 -(186,15:20331833,26508753:173670,78643,0 +(186,15:23677625,26917681:501378,78643,0 +(186,15:23841479,26917681:173670,78643,0 ) ) -(186,15:20669357,26508753:501378,78643,0 -(186,15:20833211,26508753:173670,78643,0 +(186,15:24179003,26917681:501378,78643,0 +(186,15:24342857,26917681:173670,78643,0 ) ) -(186,15:21170735,26508753:501378,78643,0 -(186,15:21334589,26508753:173670,78643,0 +(186,15:24680381,26917681:501378,78643,0 +(186,15:24844235,26917681:173670,78643,0 ) ) -(186,15:21672113,26508753:501378,78643,0 -(186,15:21835967,26508753:173670,78643,0 +(186,15:25181759,26917681:501378,78643,0 +(186,15:25345613,26917681:173670,78643,0 ) ) -(186,15:22173491,26508753:501378,78643,0 -(186,15:22337345,26508753:173670,78643,0 +(186,15:25683137,26917681:501378,78643,0 +(186,15:25846991,26917681:173670,78643,0 ) ) -(186,15:22674869,26508753:501378,78643,0 -(186,15:22838723,26508753:173670,78643,0 +(186,15:26184515,26917681:501378,78643,0 +(186,15:26348369,26917681:173670,78643,0 ) ) -(186,15:23176247,26508753:501378,78643,0 -(186,15:23340101,26508753:173670,78643,0 +(186,15:26685893,26917681:501378,78643,0 +(186,15:26849747,26917681:173670,78643,0 ) ) -(186,15:23677625,26508753:501378,78643,0 -(186,15:23841479,26508753:173670,78643,0 +(186,15:27187271,26917681:501378,78643,0 +(186,15:27351125,26917681:173670,78643,0 ) ) -(186,15:24179003,26508753:501378,78643,0 -(186,15:24342857,26508753:173670,78643,0 +(186,15:27688649,26917681:501378,78643,0 +(186,15:27852503,26917681:173670,78643,0 ) ) -(186,15:24680381,26508753:501378,78643,0 -(186,15:24844235,26508753:173670,78643,0 +(186,15:28190027,26917681:501378,78643,0 +(186,15:28353881,26917681:173670,78643,0 ) ) -(186,15:25181759,26508753:501378,78643,0 -(186,15:25345613,26508753:173670,78643,0 +(186,15:28691405,26917681:501378,78643,0 +(186,15:28855259,26917681:173670,78643,0 ) ) -(186,15:25683137,26508753:501378,78643,0 -(186,15:25846991,26508753:173670,78643,0 +(186,15:29192783,26917681:501378,78643,0 +(186,15:29356637,26917681:173670,78643,0 ) ) -(186,15:26184515,26508753:501378,78643,0 -(186,15:26348369,26508753:173670,78643,0 +(186,15:29694161,26917681:501378,78643,0 +(186,15:29858015,26917681:173670,78643,0 ) ) -(186,15:26685893,26508753:501378,78643,0 -(186,15:26849747,26508753:173670,78643,0 +(186,15:30195539,26917681:501378,78643,0 +(186,15:30359393,26917681:173670,78643,0 ) ) -(186,15:27187271,26508753:501378,78643,0 -(186,15:27351125,26508753:173670,78643,0 +(186,15:30696917,26917681:501378,78643,0 +(186,15:30860771,26917681:173670,78643,0 ) ) -(186,15:27688649,26508753:501378,78643,0 -(186,15:27852503,26508753:173670,78643,0 +(186,15:31239539,26917681:1343490,485622,11795 +k186,15:31985341,26917681:745802 +g186,15:32184570,26917681 ) +g186,15:30911859,26917681 +g186,15:32583029,26917681 ) -(186,15:28190027,26508753:501378,78643,0 -(186,15:28353881,26508753:173670,78643,0 +(186,16:6630773,27782761:25952256,505283,134348 +g186,16:9710963,27782761 +h186,16:9710963,27782761:983040,0,0 +h186,16:10694003,27782761:0,0,0 +g186,16:7613813,27782761 +(186,16:7613813,27782761:2097150,477757,11795 +k186,16:9710963,27782761:1126562 ) +g186,16:12279974,27782761 +g186,16:14881753,27782761 +g186,16:14881753,27782761 +(186,16:15154199,27782761:501378,78643,0 +$186,16:15154199,27782761 +(186,16:15318053,27782761:173670,78643,0 ) -(186,15:28691405,26508753:501378,78643,0 -(186,15:28855259,26508753:173670,78643,0 +$186,16:15655577,27782761 ) +(186,16:15655577,27782761:501378,78643,0 +(186,16:15819431,27782761:173670,78643,0 ) -(186,15:29192783,26508753:501378,78643,0 -(186,15:29356637,26508753:173670,78643,0 ) +(186,16:16156955,27782761:501378,78643,0 +(186,16:16320809,27782761:173670,78643,0 ) -(186,15:29694161,26508753:501378,78643,0 -(186,15:29858015,26508753:173670,78643,0 ) +(186,16:16658333,27782761:501378,78643,0 +(186,16:16822187,27782761:173670,78643,0 ) -(186,15:30195539,26508753:501378,78643,0 -(186,15:30359393,26508753:173670,78643,0 ) +(186,16:17159711,27782761:501378,78643,0 +(186,16:17323565,27782761:173670,78643,0 ) -(186,15:30696917,26508753:501378,78643,0 -(186,15:30860771,26508753:173670,78643,0 ) +(186,16:17661089,27782761:501378,78643,0 +(186,16:17824943,27782761:173670,78643,0 ) -(186,15:31239539,26508753:1343490,485622,11795 -k186,15:31985341,26508753:745802 -g186,15:32184570,26508753 ) -g186,15:30911859,26508753 -g186,15:32583029,26508753 +(186,16:18162467,27782761:501378,78643,0 +(186,16:18326321,27782761:173670,78643,0 ) -(186,16:6630773,27350241:25952256,505283,134348 -g186,16:9448823,27350241 -h186,16:9448823,27350241:983040,0,0 -h186,16:10431863,27350241:0,0,0 -g186,16:7613813,27350241 -(186,16:7613813,27350241:1835010,477757,11795 -k186,16:9448823,27350241:864422 ) -g186,16:12017834,27350241 -g186,16:14619613,27350241 -g186,16:14619613,27350241 -(186,16:14652821,27350241:501378,78643,0 -$186,16:14652821,27350241 -(186,16:14816675,27350241:173670,78643,0 +(186,16:18663845,27782761:501378,78643,0 +(186,16:18827699,27782761:173670,78643,0 ) -$186,16:15154199,27350241 ) -(186,16:15154199,27350241:501378,78643,0 -(186,16:15318053,27350241:173670,78643,0 +(186,16:19165223,27782761:501378,78643,0 +(186,16:19329077,27782761:173670,78643,0 ) ) -(186,16:15655577,27350241:501378,78643,0 -(186,16:15819431,27350241:173670,78643,0 +(186,16:19666601,27782761:501378,78643,0 +(186,16:19830455,27782761:173670,78643,0 ) ) -(186,16:16156955,27350241:501378,78643,0 -(186,16:16320809,27350241:173670,78643,0 +(186,16:20167979,27782761:501378,78643,0 +(186,16:20331833,27782761:173670,78643,0 ) ) -(186,16:16658333,27350241:501378,78643,0 -(186,16:16822187,27350241:173670,78643,0 +(186,16:20669357,27782761:501378,78643,0 +(186,16:20833211,27782761:173670,78643,0 ) ) -(186,16:17159711,27350241:501378,78643,0 -(186,16:17323565,27350241:173670,78643,0 +(186,16:21170735,27782761:501378,78643,0 +(186,16:21334589,27782761:173670,78643,0 ) ) -(186,16:17661089,27350241:501378,78643,0 -(186,16:17824943,27350241:173670,78643,0 +(186,16:21672113,27782761:501378,78643,0 +(186,16:21835967,27782761:173670,78643,0 ) ) -(186,16:18162467,27350241:501378,78643,0 -(186,16:18326321,27350241:173670,78643,0 +(186,16:22173491,27782761:501378,78643,0 +(186,16:22337345,27782761:173670,78643,0 ) ) -(186,16:18663845,27350241:501378,78643,0 -(186,16:18827699,27350241:173670,78643,0 +(186,16:22674869,27782761:501378,78643,0 +(186,16:22838723,27782761:173670,78643,0 ) ) -(186,16:19165223,27350241:501378,78643,0 -(186,16:19329077,27350241:173670,78643,0 +(186,16:23176247,27782761:501378,78643,0 +(186,16:23340101,27782761:173670,78643,0 ) ) -(186,16:19666601,27350241:501378,78643,0 -(186,16:19830455,27350241:173670,78643,0 +(186,16:23677625,27782761:501378,78643,0 +(186,16:23841479,27782761:173670,78643,0 ) ) -(186,16:20167979,27350241:501378,78643,0 -(186,16:20331833,27350241:173670,78643,0 +(186,16:24179003,27782761:501378,78643,0 +(186,16:24342857,27782761:173670,78643,0 ) ) -(186,16:20669357,27350241:501378,78643,0 -(186,16:20833211,27350241:173670,78643,0 +(186,16:24680381,27782761:501378,78643,0 +(186,16:24844235,27782761:173670,78643,0 ) ) -(186,16:21170735,27350241:501378,78643,0 -(186,16:21334589,27350241:173670,78643,0 +(186,16:25181759,27782761:501378,78643,0 +(186,16:25345613,27782761:173670,78643,0 ) ) -(186,16:21672113,27350241:501378,78643,0 -(186,16:21835967,27350241:173670,78643,0 +(186,16:25683137,27782761:501378,78643,0 +(186,16:25846991,27782761:173670,78643,0 ) ) -(186,16:22173491,27350241:501378,78643,0 -(186,16:22337345,27350241:173670,78643,0 +(186,16:26184515,27782761:501378,78643,0 +(186,16:26348369,27782761:173670,78643,0 ) ) -(186,16:22674869,27350241:501378,78643,0 -(186,16:22838723,27350241:173670,78643,0 +(186,16:26685893,27782761:501378,78643,0 +(186,16:26849747,27782761:173670,78643,0 ) ) -(186,16:23176247,27350241:501378,78643,0 -(186,16:23340101,27350241:173670,78643,0 +(186,16:27187271,27782761:501378,78643,0 +(186,16:27351125,27782761:173670,78643,0 ) ) -(186,16:23677625,27350241:501378,78643,0 -(186,16:23841479,27350241:173670,78643,0 +(186,16:27688649,27782761:501378,78643,0 +(186,16:27852503,27782761:173670,78643,0 ) ) -(186,16:24179003,27350241:501378,78643,0 -(186,16:24342857,27350241:173670,78643,0 +(186,16:28190027,27782761:501378,78643,0 +(186,16:28353881,27782761:173670,78643,0 ) ) -(186,16:24680381,27350241:501378,78643,0 -(186,16:24844235,27350241:173670,78643,0 +(186,16:28691405,27782761:501378,78643,0 +(186,16:28855259,27782761:173670,78643,0 ) ) -(186,16:25181759,27350241:501378,78643,0 -(186,16:25345613,27350241:173670,78643,0 +(186,16:29192783,27782761:501378,78643,0 +(186,16:29356637,27782761:173670,78643,0 ) ) -(186,16:25683137,27350241:501378,78643,0 -(186,16:25846991,27350241:173670,78643,0 +(186,16:29694161,27782761:501378,78643,0 +(186,16:29858015,27782761:173670,78643,0 ) ) -(186,16:26184515,27350241:501378,78643,0 -(186,16:26348369,27350241:173670,78643,0 +(186,16:30195539,27782761:501378,78643,0 +(186,16:30359393,27782761:173670,78643,0 ) ) -(186,16:26685893,27350241:501378,78643,0 -(186,16:26849747,27350241:173670,78643,0 +(186,16:30696917,27782761:501378,78643,0 +(186,16:30860771,27782761:173670,78643,0 ) ) -(186,16:27187271,27350241:501378,78643,0 -(186,16:27351125,27350241:173670,78643,0 +(186,16:31239539,27782761:1343490,485622,11795 +k186,16:31985341,27782761:745802 +g186,16:32184570,27782761 ) +g186,16:30911859,27782761 +g186,16:32583029,27782761 ) -(186,16:27688649,27350241:501378,78643,0 -(186,16:27852503,27350241:173670,78643,0 +(186,17:6630773,29303201:25952256,505283,134348 +g186,17:7613813,29303201 +h186,17:7613813,29303201:0,0,0 +g186,17:6630773,29303201 +(186,17:6630773,29303201:983040,485622,0 +k186,17:7613813,29303201:574751 ) +g186,17:8444153,29303201 +g186,17:9700478,29303201 +g186,17:13027085,29303201 +g186,17:14451837,29303201 +g186,17:15708162,29303201 +k186,17:24875338,29303201:6364201 +k186,17:31239539,29303201:6364201 +(186,17:31239539,29303201:1343490,485622,11795 +k186,17:32174740,29303201:935201 ) -(186,16:28190027,27350241:501378,78643,0 -(186,16:28353881,27350241:173670,78643,0 +g186,17:31239539,29303201 +g186,17:32583029,29303201 ) +(186,18:6630773,30168281:25952256,513147,126483 +g186,18:9710963,30168281 +h186,18:9710963,30168281:983040,0,0 +h186,18:10694003,30168281:0,0,0 +g186,18:7613813,30168281 +(186,18:7613813,30168281:2097150,485622,0 +k186,18:9710963,30168281:1126562 ) -(186,16:28691405,27350241:501378,78643,0 -(186,16:28855259,27350241:173670,78643,0 +g186,18:11549247,30168281 +g186,18:12407768,30168281 +g186,18:13810238,30168281 +g186,18:16427090,30168281 +g186,18:16427090,30168281 +(186,18:16658333,30168281:501378,78643,0 +$186,18:16658333,30168281 +(186,18:16822187,30168281:173670,78643,0 ) +$186,18:17159711,30168281 ) -(186,16:29192783,27350241:501378,78643,0 -(186,16:29356637,27350241:173670,78643,0 +(186,18:17159711,30168281:501378,78643,0 +(186,18:17323565,30168281:173670,78643,0 ) ) -(186,16:29694161,27350241:501378,78643,0 -(186,16:29858015,27350241:173670,78643,0 +(186,18:17661089,30168281:501378,78643,0 +(186,18:17824943,30168281:173670,78643,0 ) ) -(186,16:30195539,27350241:501378,78643,0 -(186,16:30359393,27350241:173670,78643,0 +(186,18:18162467,30168281:501378,78643,0 +(186,18:18326321,30168281:173670,78643,0 ) ) -(186,16:30696917,27350241:501378,78643,0 -(186,16:30860771,27350241:173670,78643,0 +(186,18:18663845,30168281:501378,78643,0 +(186,18:18827699,30168281:173670,78643,0 ) ) -(186,16:31239539,27350241:1343490,485622,11795 -k186,16:31985341,27350241:745802 -g186,16:32184570,27350241 +(186,18:19165223,30168281:501378,78643,0 +(186,18:19329077,30168281:173670,78643,0 ) -g186,16:30911859,27350241 -g186,16:32583029,27350241 ) -(186,17:6630773,28847089:25952256,505283,134348 -g186,17:7613813,28847089 -h186,17:7613813,28847089:0,0,0 -g186,17:6630773,28847089 -(186,17:6630773,28847089:983040,485622,0 -k186,17:7613813,28847089:574751 +(186,18:19666601,30168281:501378,78643,0 +(186,18:19830455,30168281:173670,78643,0 ) -g186,17:8444153,28847089 -g186,17:9700478,28847089 -g186,17:13027085,28847089 -g186,17:14451837,28847089 -g186,17:15708162,28847089 -k186,17:24875338,28847089:6364201 -k186,17:31239539,28847089:6364201 -(186,17:31239539,28847089:1343490,485622,11795 -k186,17:32174740,28847089:935201 ) -g186,17:31239539,28847089 -g186,17:32583029,28847089 +(186,18:20167979,30168281:501378,78643,0 +(186,18:20331833,30168281:173670,78643,0 ) -(186,18:6630773,29688577:25952256,513147,126483 -g186,18:9448823,29688577 -h186,18:9448823,29688577:983040,0,0 -h186,18:10431863,29688577:0,0,0 -g186,18:7613813,29688577 -(186,18:7613813,29688577:1835010,485622,0 -k186,18:9448823,29688577:864422 ) -g186,18:11287107,29688577 -g186,18:12145628,29688577 -g186,18:13548098,29688577 -g186,18:16164950,29688577 -g186,18:16164950,29688577 -(186,18:16658333,29688577:501378,78643,0 -$186,18:16658333,29688577 -(186,18:16822187,29688577:173670,78643,0 +(186,18:20669357,30168281:501378,78643,0 +(186,18:20833211,30168281:173670,78643,0 ) -$186,18:17159711,29688577 ) -(186,18:17159711,29688577:501378,78643,0 -(186,18:17323565,29688577:173670,78643,0 +(186,18:21170735,30168281:501378,78643,0 +(186,18:21334589,30168281:173670,78643,0 ) ) -(186,18:17661089,29688577:501378,78643,0 -(186,18:17824943,29688577:173670,78643,0 +(186,18:21672113,30168281:501378,78643,0 +(186,18:21835967,30168281:173670,78643,0 ) ) -(186,18:18162467,29688577:501378,78643,0 -(186,18:18326321,29688577:173670,78643,0 +(186,18:22173491,30168281:501378,78643,0 +(186,18:22337345,30168281:173670,78643,0 ) ) -(186,18:18663845,29688577:501378,78643,0 -(186,18:18827699,29688577:173670,78643,0 +(186,18:22674869,30168281:501378,78643,0 +(186,18:22838723,30168281:173670,78643,0 ) ) -(186,18:19165223,29688577:501378,78643,0 -(186,18:19329077,29688577:173670,78643,0 +(186,18:23176247,30168281:501378,78643,0 +(186,18:23340101,30168281:173670,78643,0 ) ) -(186,18:19666601,29688577:501378,78643,0 -(186,18:19830455,29688577:173670,78643,0 +(186,18:23677625,30168281:501378,78643,0 +(186,18:23841479,30168281:173670,78643,0 ) ) -(186,18:20167979,29688577:501378,78643,0 -(186,18:20331833,29688577:173670,78643,0 +(186,18:24179003,30168281:501378,78643,0 +(186,18:24342857,30168281:173670,78643,0 ) ) -(186,18:20669357,29688577:501378,78643,0 -(186,18:20833211,29688577:173670,78643,0 +(186,18:24680381,30168281:501378,78643,0 +(186,18:24844235,30168281:173670,78643,0 ) ) -(186,18:21170735,29688577:501378,78643,0 -(186,18:21334589,29688577:173670,78643,0 +(186,18:25181759,30168281:501378,78643,0 +(186,18:25345613,30168281:173670,78643,0 ) ) -(186,18:21672113,29688577:501378,78643,0 -(186,18:21835967,29688577:173670,78643,0 +(186,18:25683137,30168281:501378,78643,0 +(186,18:25846991,30168281:173670,78643,0 ) ) -(186,18:22173491,29688577:501378,78643,0 -(186,18:22337345,29688577:173670,78643,0 +(186,18:26184515,30168281:501378,78643,0 +(186,18:26348369,30168281:173670,78643,0 ) ) -(186,18:22674869,29688577:501378,78643,0 -(186,18:22838723,29688577:173670,78643,0 +(186,18:26685893,30168281:501378,78643,0 +(186,18:26849747,30168281:173670,78643,0 ) ) -(186,18:23176247,29688577:501378,78643,0 -(186,18:23340101,29688577:173670,78643,0 +(186,18:27187271,30168281:501378,78643,0 +(186,18:27351125,30168281:173670,78643,0 ) ) -(186,18:23677625,29688577:501378,78643,0 -(186,18:23841479,29688577:173670,78643,0 +(186,18:27688649,30168281:501378,78643,0 +(186,18:27852503,30168281:173670,78643,0 ) ) -(186,18:24179003,29688577:501378,78643,0 -(186,18:24342857,29688577:173670,78643,0 +(186,18:28190027,30168281:501378,78643,0 +(186,18:28353881,30168281:173670,78643,0 ) ) -(186,18:24680381,29688577:501378,78643,0 -(186,18:24844235,29688577:173670,78643,0 +(186,18:28691405,30168281:501378,78643,0 +(186,18:28855259,30168281:173670,78643,0 ) ) -(186,18:25181759,29688577:501378,78643,0 -(186,18:25345613,29688577:173670,78643,0 +(186,18:29192783,30168281:501378,78643,0 +(186,18:29356637,30168281:173670,78643,0 ) ) -(186,18:25683137,29688577:501378,78643,0 -(186,18:25846991,29688577:173670,78643,0 +(186,18:29694161,30168281:501378,78643,0 +(186,18:29858015,30168281:173670,78643,0 ) ) -(186,18:26184515,29688577:501378,78643,0 -(186,18:26348369,29688577:173670,78643,0 +(186,18:30195539,30168281:501378,78643,0 +(186,18:30359393,30168281:173670,78643,0 ) ) -(186,18:26685893,29688577:501378,78643,0 -(186,18:26849747,29688577:173670,78643,0 +(186,18:30696917,30168281:501378,78643,0 +(186,18:30860771,30168281:173670,78643,0 ) ) -(186,18:27187271,29688577:501378,78643,0 -(186,18:27351125,29688577:173670,78643,0 +(186,18:31239539,30168281:1343490,485622,11795 +k186,18:31985341,30168281:745802 +g186,18:32184570,30168281 ) +g186,18:30911859,30168281 +g186,18:32583029,30168281 ) -(186,18:27688649,29688577:501378,78643,0 -(186,18:27852503,29688577:173670,78643,0 +(186,19:6630773,31033361:25952256,505283,11795 +g186,19:9710963,31033361 +h186,19:9710963,31033361:983040,0,0 +h186,19:10694003,31033361:0,0,0 +g186,19:7613813,31033361 +(186,19:7613813,31033361:2097150,485622,0 +k186,19:9710963,31033361:1126562 ) +g186,19:11544005,31033361 +g186,19:12274731,31033361 +g186,19:13215828,31033361 +g186,19:13215828,31033361 +(186,19:13650065,31033361:501378,78643,0 +$186,19:13650065,31033361 +(186,19:13813919,31033361:173670,78643,0 ) -(186,18:28190027,29688577:501378,78643,0 -(186,18:28353881,29688577:173670,78643,0 +$186,19:14151443,31033361 ) +(186,19:14151443,31033361:501378,78643,0 +(186,19:14315297,31033361:173670,78643,0 ) -(186,18:28691405,29688577:501378,78643,0 -(186,18:28855259,29688577:173670,78643,0 ) +(186,19:14652821,31033361:501378,78643,0 +(186,19:14816675,31033361:173670,78643,0 ) -(186,18:29192783,29688577:501378,78643,0 -(186,18:29356637,29688577:173670,78643,0 ) +(186,19:15154199,31033361:501378,78643,0 +(186,19:15318053,31033361:173670,78643,0 ) -(186,18:29694161,29688577:501378,78643,0 -(186,18:29858015,29688577:173670,78643,0 ) +(186,19:15655577,31033361:501378,78643,0 +(186,19:15819431,31033361:173670,78643,0 ) -(186,18:30195539,29688577:501378,78643,0 -(186,18:30359393,29688577:173670,78643,0 ) +(186,19:16156955,31033361:501378,78643,0 +(186,19:16320809,31033361:173670,78643,0 ) -(186,18:30696917,29688577:501378,78643,0 -(186,18:30860771,29688577:173670,78643,0 ) +(186,19:16658333,31033361:501378,78643,0 +(186,19:16822187,31033361:173670,78643,0 ) -(186,18:31239539,29688577:1343490,485622,11795 -k186,18:31985341,29688577:745802 -g186,18:32184570,29688577 ) -g186,18:30911859,29688577 -g186,18:32583029,29688577 +(186,19:17159711,31033361:501378,78643,0 +(186,19:17323565,31033361:173670,78643,0 ) -(186,19:6630773,30530065:25952256,505283,11795 -g186,19:9448823,30530065 -h186,19:9448823,30530065:983040,0,0 -h186,19:10431863,30530065:0,0,0 -g186,19:7613813,30530065 -(186,19:7613813,30530065:1835010,485622,0 -k186,19:9448823,30530065:864422 ) -g186,19:11281865,30530065 -g186,19:12012591,30530065 -g186,19:12953688,30530065 -g186,19:12953688,30530065 -(186,19:13148687,30530065:501378,78643,0 -$186,19:13148687,30530065 -(186,19:13312541,30530065:173670,78643,0 +(186,19:17661089,31033361:501378,78643,0 +(186,19:17824943,31033361:173670,78643,0 ) -$186,19:13650065,30530065 ) -(186,19:13650065,30530065:501378,78643,0 -(186,19:13813919,30530065:173670,78643,0 +(186,19:18162467,31033361:501378,78643,0 +(186,19:18326321,31033361:173670,78643,0 ) ) -(186,19:14151443,30530065:501378,78643,0 -(186,19:14315297,30530065:173670,78643,0 +(186,19:18663845,31033361:501378,78643,0 +(186,19:18827699,31033361:173670,78643,0 ) ) -(186,19:14652821,30530065:501378,78643,0 -(186,19:14816675,30530065:173670,78643,0 +(186,19:19165223,31033361:501378,78643,0 +(186,19:19329077,31033361:173670,78643,0 ) ) -(186,19:15154199,30530065:501378,78643,0 -(186,19:15318053,30530065:173670,78643,0 +(186,19:19666601,31033361:501378,78643,0 +(186,19:19830455,31033361:173670,78643,0 ) ) -(186,19:15655577,30530065:501378,78643,0 -(186,19:15819431,30530065:173670,78643,0 +(186,19:20167979,31033361:501378,78643,0 +(186,19:20331833,31033361:173670,78643,0 ) ) -(186,19:16156955,30530065:501378,78643,0 -(186,19:16320809,30530065:173670,78643,0 +(186,19:20669357,31033361:501378,78643,0 +(186,19:20833211,31033361:173670,78643,0 ) ) -(186,19:16658333,30530065:501378,78643,0 -(186,19:16822187,30530065:173670,78643,0 +(186,19:21170735,31033361:501378,78643,0 +(186,19:21334589,31033361:173670,78643,0 ) ) -(186,19:17159711,30530065:501378,78643,0 -(186,19:17323565,30530065:173670,78643,0 +(186,19:21672113,31033361:501378,78643,0 +(186,19:21835967,31033361:173670,78643,0 ) ) -(186,19:17661089,30530065:501378,78643,0 -(186,19:17824943,30530065:173670,78643,0 +(186,19:22173491,31033361:501378,78643,0 +(186,19:22337345,31033361:173670,78643,0 ) ) -(186,19:18162467,30530065:501378,78643,0 -(186,19:18326321,30530065:173670,78643,0 +(186,19:22674869,31033361:501378,78643,0 +(186,19:22838723,31033361:173670,78643,0 ) ) -(186,19:18663845,30530065:501378,78643,0 -(186,19:18827699,30530065:173670,78643,0 +(186,19:23176247,31033361:501378,78643,0 +(186,19:23340101,31033361:173670,78643,0 ) ) -(186,19:19165223,30530065:501378,78643,0 -(186,19:19329077,30530065:173670,78643,0 +(186,19:23677625,31033361:501378,78643,0 +(186,19:23841479,31033361:173670,78643,0 ) ) -(186,19:19666601,30530065:501378,78643,0 -(186,19:19830455,30530065:173670,78643,0 +(186,19:24179003,31033361:501378,78643,0 +(186,19:24342857,31033361:173670,78643,0 ) ) -(186,19:20167979,30530065:501378,78643,0 -(186,19:20331833,30530065:173670,78643,0 +(186,19:24680381,31033361:501378,78643,0 +(186,19:24844235,31033361:173670,78643,0 ) ) -(186,19:20669357,30530065:501378,78643,0 -(186,19:20833211,30530065:173670,78643,0 +(186,19:25181759,31033361:501378,78643,0 +(186,19:25345613,31033361:173670,78643,0 ) ) -(186,19:21170735,30530065:501378,78643,0 -(186,19:21334589,30530065:173670,78643,0 +(186,19:25683137,31033361:501378,78643,0 +(186,19:25846991,31033361:173670,78643,0 ) ) -(186,19:21672113,30530065:501378,78643,0 -(186,19:21835967,30530065:173670,78643,0 +(186,19:26184515,31033361:501378,78643,0 +(186,19:26348369,31033361:173670,78643,0 ) ) -(186,19:22173491,30530065:501378,78643,0 -(186,19:22337345,30530065:173670,78643,0 +(186,19:26685893,31033361:501378,78643,0 +(186,19:26849747,31033361:173670,78643,0 ) ) -(186,19:22674869,30530065:501378,78643,0 -(186,19:22838723,30530065:173670,78643,0 +(186,19:27187271,31033361:501378,78643,0 +(186,19:27351125,31033361:173670,78643,0 ) ) -(186,19:23176247,30530065:501378,78643,0 -(186,19:23340101,30530065:173670,78643,0 +(186,19:27688649,31033361:501378,78643,0 +(186,19:27852503,31033361:173670,78643,0 ) ) -(186,19:23677625,30530065:501378,78643,0 -(186,19:23841479,30530065:173670,78643,0 +(186,19:28190027,31033361:501378,78643,0 +(186,19:28353881,31033361:173670,78643,0 ) ) -(186,19:24179003,30530065:501378,78643,0 -(186,19:24342857,30530065:173670,78643,0 +(186,19:28691405,31033361:501378,78643,0 +(186,19:28855259,31033361:173670,78643,0 ) ) -(186,19:24680381,30530065:501378,78643,0 -(186,19:24844235,30530065:173670,78643,0 +(186,19:29192783,31033361:501378,78643,0 +(186,19:29356637,31033361:173670,78643,0 ) ) -(186,19:25181759,30530065:501378,78643,0 -(186,19:25345613,30530065:173670,78643,0 +(186,19:29694161,31033361:501378,78643,0 +(186,19:29858015,31033361:173670,78643,0 ) ) -(186,19:25683137,30530065:501378,78643,0 -(186,19:25846991,30530065:173670,78643,0 +(186,19:30195539,31033361:501378,78643,0 +(186,19:30359393,31033361:173670,78643,0 ) ) -(186,19:26184515,30530065:501378,78643,0 -(186,19:26348369,30530065:173670,78643,0 +(186,19:30696917,31033361:501378,78643,0 +(186,19:30860771,31033361:173670,78643,0 ) ) -(186,19:26685893,30530065:501378,78643,0 -(186,19:26849747,30530065:173670,78643,0 +(186,19:31239540,31033361:1343490,485622,11795 +k186,19:31586883,31033361:347343 +g186,19:31786112,31033361 ) +g186,19:30911860,31033361 +g186,19:32583030,31033361 ) -(186,19:27187271,30530065:501378,78643,0 -(186,19:27351125,30530065:173670,78643,0 +(186,20:6630773,31898441:25952256,505283,134348 +g186,20:12529013,31898441 +h186,20:12529013,31898441:3080190,0,0 +h186,20:15609203,31898441:0,0,0 +g186,20:9710963,31898441 +(186,20:9710963,31898441:2818050,485622,0 +k186,20:12529013,31898441:1275332 ) +g186,20:13173231,31898441 +g186,20:14058622,31898441 +g186,20:14613711,31898441 +g186,20:17456007,31898441 +(186,20:17661089,31898441:501378,78643,0 +$186,20:17661089,31898441 +(186,20:17824943,31898441:173670,78643,0 ) -(186,19:27688649,30530065:501378,78643,0 -(186,19:27852503,30530065:173670,78643,0 +$186,20:18162467,31898441 ) +(186,20:18162467,31898441:501378,78643,0 +(186,20:18326321,31898441:173670,78643,0 ) -(186,19:28190027,30530065:501378,78643,0 -(186,19:28353881,30530065:173670,78643,0 ) +(186,20:18663845,31898441:501378,78643,0 +(186,20:18827699,31898441:173670,78643,0 ) -(186,19:28691405,30530065:501378,78643,0 -(186,19:28855259,30530065:173670,78643,0 ) +(186,20:19165223,31898441:501378,78643,0 +(186,20:19329077,31898441:173670,78643,0 ) -(186,19:29192783,30530065:501378,78643,0 -(186,19:29356637,30530065:173670,78643,0 ) +(186,20:19666601,31898441:501378,78643,0 +(186,20:19830455,31898441:173670,78643,0 ) -(186,19:29694161,30530065:501378,78643,0 -(186,19:29858015,30530065:173670,78643,0 ) +(186,20:20167979,31898441:501378,78643,0 +(186,20:20331833,31898441:173670,78643,0 ) -(186,19:30195539,30530065:501378,78643,0 -(186,19:30359393,30530065:173670,78643,0 ) +(186,20:20669357,31898441:501378,78643,0 +(186,20:20833211,31898441:173670,78643,0 ) -(186,19:30696917,30530065:501378,78643,0 -(186,19:30860771,30530065:173670,78643,0 ) +(186,20:21170735,31898441:501378,78643,0 +(186,20:21334589,31898441:173670,78643,0 ) -(186,19:31239540,30530065:1343490,485622,11795 -k186,19:31586883,30530065:347343 -g186,19:31786112,30530065 ) -g186,19:30911860,30530065 -g186,19:32583030,30530065 +(186,20:21672113,31898441:501378,78643,0 +(186,20:21835967,31898441:173670,78643,0 ) -(186,20:6630773,31371553:25952256,505283,134348 -g186,20:11873653,31371553 -h186,20:11873653,31371553:2818050,0,0 -h186,20:14691703,31371553:0,0,0 -g186,20:9448823,31371553 -(186,20:9448823,31371553:2424830,485622,0 -k186,20:11873653,31371553:882112 ) -g186,20:12517871,31371553 -g186,20:13403262,31371553 -g186,20:13958351,31371553 -g186,20:16800647,31371553 -(186,20:17159711,31371553:501378,78643,0 -$186,20:17159711,31371553 -(186,20:17323565,31371553:173670,78643,0 +(186,20:22173491,31898441:501378,78643,0 +(186,20:22337345,31898441:173670,78643,0 ) -$186,20:17661089,31371553 ) -(186,20:17661089,31371553:501378,78643,0 -(186,20:17824943,31371553:173670,78643,0 +(186,20:22674869,31898441:501378,78643,0 +(186,20:22838723,31898441:173670,78643,0 ) ) -(186,20:18162467,31371553:501378,78643,0 -(186,20:18326321,31371553:173670,78643,0 +(186,20:23176247,31898441:501378,78643,0 +(186,20:23340101,31898441:173670,78643,0 ) ) -(186,20:18663845,31371553:501378,78643,0 -(186,20:18827699,31371553:173670,78643,0 +(186,20:23677625,31898441:501378,78643,0 +(186,20:23841479,31898441:173670,78643,0 ) ) -(186,20:19165223,31371553:501378,78643,0 -(186,20:19329077,31371553:173670,78643,0 +(186,20:24179003,31898441:501378,78643,0 +(186,20:24342857,31898441:173670,78643,0 ) ) -(186,20:19666601,31371553:501378,78643,0 -(186,20:19830455,31371553:173670,78643,0 +(186,20:24680381,31898441:501378,78643,0 +(186,20:24844235,31898441:173670,78643,0 ) ) -(186,20:20167979,31371553:501378,78643,0 -(186,20:20331833,31371553:173670,78643,0 +(186,20:25181759,31898441:501378,78643,0 +(186,20:25345613,31898441:173670,78643,0 ) ) -(186,20:20669357,31371553:501378,78643,0 -(186,20:20833211,31371553:173670,78643,0 +(186,20:25683137,31898441:501378,78643,0 +(186,20:25846991,31898441:173670,78643,0 ) ) -(186,20:21170735,31371553:501378,78643,0 -(186,20:21334589,31371553:173670,78643,0 +(186,20:26184515,31898441:501378,78643,0 +(186,20:26348369,31898441:173670,78643,0 ) ) -(186,20:21672113,31371553:501378,78643,0 -(186,20:21835967,31371553:173670,78643,0 +(186,20:26685893,31898441:501378,78643,0 +(186,20:26849747,31898441:173670,78643,0 ) ) -(186,20:22173491,31371553:501378,78643,0 -(186,20:22337345,31371553:173670,78643,0 +(186,20:27187271,31898441:501378,78643,0 +(186,20:27351125,31898441:173670,78643,0 ) ) -(186,20:22674869,31371553:501378,78643,0 -(186,20:22838723,31371553:173670,78643,0 +(186,20:27688649,31898441:501378,78643,0 +(186,20:27852503,31898441:173670,78643,0 ) ) -(186,20:23176247,31371553:501378,78643,0 -(186,20:23340101,31371553:173670,78643,0 +(186,20:28190027,31898441:501378,78643,0 +(186,20:28353881,31898441:173670,78643,0 ) ) -(186,20:23677625,31371553:501378,78643,0 -(186,20:23841479,31371553:173670,78643,0 +(186,20:28691405,31898441:501378,78643,0 +(186,20:28855259,31898441:173670,78643,0 ) ) -(186,20:24179003,31371553:501378,78643,0 -(186,20:24342857,31371553:173670,78643,0 +(186,20:29192783,31898441:501378,78643,0 +(186,20:29356637,31898441:173670,78643,0 ) ) -(186,20:24680381,31371553:501378,78643,0 -(186,20:24844235,31371553:173670,78643,0 +(186,20:29694161,31898441:501378,78643,0 +(186,20:29858015,31898441:173670,78643,0 ) ) -(186,20:25181759,31371553:501378,78643,0 -(186,20:25345613,31371553:173670,78643,0 +(186,20:30195539,31898441:501378,78643,0 +(186,20:30359393,31898441:173670,78643,0 ) ) -(186,20:25683137,31371553:501378,78643,0 -(186,20:25846991,31371553:173670,78643,0 +(186,20:30696917,31898441:501378,78643,0 +(186,20:30860771,31898441:173670,78643,0 ) ) -(186,20:26184515,31371553:501378,78643,0 -(186,20:26348369,31371553:173670,78643,0 +(186,20:31239539,31898441:1343490,485622,11795 +k186,20:31586882,31898441:347343 +g186,20:31786111,31898441 ) +g186,20:30911859,31898441 +g186,20:32583029,31898441 ) -(186,20:26685893,31371553:501378,78643,0 -(186,20:26849747,31371553:173670,78643,0 +(186,21:6630773,32763521:25952256,485622,134348 +g186,21:12529013,32763521 +h186,21:12529013,32763521:3080190,0,0 +h186,21:15609203,32763521:0,0,0 +g186,21:9710963,32763521 +(186,21:9710963,32763521:2818050,485622,0 +k186,21:12529013,32763521:1275332 ) +g186,21:13173231,32763521 +g186,21:14058622,32763521 +g186,21:14613711,32763521 +g186,21:17889200,32763521 +g186,21:20631226,32763521 +(186,21:20669357,32763521:501378,78643,0 +$186,21:20669357,32763521 +(186,21:20833211,32763521:173670,78643,0 ) -(186,20:27187271,31371553:501378,78643,0 -(186,20:27351125,31371553:173670,78643,0 +$186,21:21170735,32763521 ) +(186,21:21170735,32763521:501378,78643,0 +(186,21:21334589,32763521:173670,78643,0 ) -(186,20:27688649,31371553:501378,78643,0 -(186,20:27852503,31371553:173670,78643,0 ) +(186,21:21672113,32763521:501378,78643,0 +(186,21:21835967,32763521:173670,78643,0 ) -(186,20:28190027,31371553:501378,78643,0 -(186,20:28353881,31371553:173670,78643,0 ) +(186,21:22173491,32763521:501378,78643,0 +(186,21:22337345,32763521:173670,78643,0 ) -(186,20:28691405,31371553:501378,78643,0 -(186,20:28855259,31371553:173670,78643,0 ) +(186,21:22674869,32763521:501378,78643,0 +(186,21:22838723,32763521:173670,78643,0 ) -(186,20:29192783,31371553:501378,78643,0 -(186,20:29356637,31371553:173670,78643,0 ) +(186,21:23176247,32763521:501378,78643,0 +(186,21:23340101,32763521:173670,78643,0 ) -(186,20:29694161,31371553:501378,78643,0 -(186,20:29858015,31371553:173670,78643,0 ) +(186,21:23677625,32763521:501378,78643,0 +(186,21:23841479,32763521:173670,78643,0 ) -(186,20:30195539,31371553:501378,78643,0 -(186,20:30359393,31371553:173670,78643,0 ) +(186,21:24179003,32763521:501378,78643,0 +(186,21:24342857,32763521:173670,78643,0 ) -(186,20:30696917,31371553:501378,78643,0 -(186,20:30860771,31371553:173670,78643,0 ) +(186,21:24680381,32763521:501378,78643,0 +(186,21:24844235,32763521:173670,78643,0 ) -(186,20:31239539,31371553:1343490,485622,11795 -k186,20:31586882,31371553:347343 -g186,20:31786111,31371553 ) -g186,20:30911859,31371553 -g186,20:32583029,31371553 +(186,21:25181759,32763521:501378,78643,0 +(186,21:25345613,32763521:173670,78643,0 ) -(186,21:6630773,32213041:25952256,485622,134348 -g186,21:11873653,32213041 -h186,21:11873653,32213041:2818050,0,0 -h186,21:14691703,32213041:0,0,0 -g186,21:9448823,32213041 -(186,21:9448823,32213041:2424830,485622,0 -k186,21:11873653,32213041:882112 ) -g186,21:12517871,32213041 -g186,21:13403262,32213041 -g186,21:13958351,32213041 -g186,21:17233840,32213041 -g186,21:19975866,32213041 -(186,21:20167979,32213041:501378,78643,0 -$186,21:20167979,32213041 -(186,21:20331833,32213041:173670,78643,0 +(186,21:25683137,32763521:501378,78643,0 +(186,21:25846991,32763521:173670,78643,0 ) -$186,21:20669357,32213041 ) -(186,21:20669357,32213041:501378,78643,0 -(186,21:20833211,32213041:173670,78643,0 +(186,21:26184515,32763521:501378,78643,0 +(186,21:26348369,32763521:173670,78643,0 ) ) -(186,21:21170735,32213041:501378,78643,0 -(186,21:21334589,32213041:173670,78643,0 +(186,21:26685893,32763521:501378,78643,0 +(186,21:26849747,32763521:173670,78643,0 ) ) -(186,21:21672113,32213041:501378,78643,0 -(186,21:21835967,32213041:173670,78643,0 +(186,21:27187271,32763521:501378,78643,0 +(186,21:27351125,32763521:173670,78643,0 ) ) -(186,21:22173491,32213041:501378,78643,0 -(186,21:22337345,32213041:173670,78643,0 +(186,21:27688649,32763521:501378,78643,0 +(186,21:27852503,32763521:173670,78643,0 ) ) -(186,21:22674869,32213041:501378,78643,0 -(186,21:22838723,32213041:173670,78643,0 +(186,21:28190027,32763521:501378,78643,0 +(186,21:28353881,32763521:173670,78643,0 ) ) -(186,21:23176247,32213041:501378,78643,0 -(186,21:23340101,32213041:173670,78643,0 +(186,21:28691405,32763521:501378,78643,0 +(186,21:28855259,32763521:173670,78643,0 ) ) -(186,21:23677625,32213041:501378,78643,0 -(186,21:23841479,32213041:173670,78643,0 +(186,21:29192783,32763521:501378,78643,0 +(186,21:29356637,32763521:173670,78643,0 ) ) -(186,21:24179003,32213041:501378,78643,0 -(186,21:24342857,32213041:173670,78643,0 +(186,21:29694161,32763521:501378,78643,0 +(186,21:29858015,32763521:173670,78643,0 ) ) -(186,21:24680381,32213041:501378,78643,0 -(186,21:24844235,32213041:173670,78643,0 +(186,21:30195539,32763521:501378,78643,0 +(186,21:30359393,32763521:173670,78643,0 ) ) -(186,21:25181759,32213041:501378,78643,0 -(186,21:25345613,32213041:173670,78643,0 +(186,21:30696917,32763521:501378,78643,0 +(186,21:30860771,32763521:173670,78643,0 ) ) -(186,21:25683137,32213041:501378,78643,0 -(186,21:25846991,32213041:173670,78643,0 +(186,21:31239539,32763521:1343490,477757,0 +k186,21:31586882,32763521:347343 +g186,21:31786111,32763521 ) +g186,21:30911859,32763521 +g186,21:32583029,32763521 ) -(186,21:26184515,32213041:501378,78643,0 -(186,21:26348369,32213041:173670,78643,0 +(186,22:6630773,33628601:25952256,485622,134348 +g186,22:9710963,33628601 +h186,22:9710963,33628601:983040,0,0 +h186,22:10694003,33628601:0,0,0 +g186,22:7613813,33628601 +(186,22:7613813,33628601:2097150,485622,11795 +k186,22:9710963,33628601:1126562 ) +g186,22:11701946,33628601 +g186,22:12316018,33628601 +g186,22:12316018,33628601 +(186,22:12647309,33628601:501378,78643,0 +$186,22:12647309,33628601 +(186,22:12811163,33628601:173670,78643,0 ) -(186,21:26685893,32213041:501378,78643,0 -(186,21:26849747,32213041:173670,78643,0 +$186,22:13148687,33628601 ) +(186,22:13148687,33628601:501378,78643,0 +(186,22:13312541,33628601:173670,78643,0 ) -(186,21:27187271,32213041:501378,78643,0 -(186,21:27351125,32213041:173670,78643,0 ) +(186,22:13650065,33628601:501378,78643,0 +(186,22:13813919,33628601:173670,78643,0 ) -(186,21:27688649,32213041:501378,78643,0 -(186,21:27852503,32213041:173670,78643,0 ) +(186,22:14151443,33628601:501378,78643,0 +(186,22:14315297,33628601:173670,78643,0 ) -(186,21:28190027,32213041:501378,78643,0 -(186,21:28353881,32213041:173670,78643,0 ) +(186,22:14652821,33628601:501378,78643,0 +(186,22:14816675,33628601:173670,78643,0 ) -(186,21:28691405,32213041:501378,78643,0 -(186,21:28855259,32213041:173670,78643,0 ) +(186,22:15154199,33628601:501378,78643,0 +(186,22:15318053,33628601:173670,78643,0 ) -(186,21:29192783,32213041:501378,78643,0 -(186,21:29356637,32213041:173670,78643,0 ) +(186,22:15655577,33628601:501378,78643,0 +(186,22:15819431,33628601:173670,78643,0 ) -(186,21:29694161,32213041:501378,78643,0 -(186,21:29858015,32213041:173670,78643,0 ) +(186,22:16156955,33628601:501378,78643,0 +(186,22:16320809,33628601:173670,78643,0 ) -(186,21:30195539,32213041:501378,78643,0 -(186,21:30359393,32213041:173670,78643,0 ) +(186,22:16658333,33628601:501378,78643,0 +(186,22:16822187,33628601:173670,78643,0 ) -(186,21:30696917,32213041:501378,78643,0 -(186,21:30860771,32213041:173670,78643,0 ) +(186,22:17159711,33628601:501378,78643,0 +(186,22:17323565,33628601:173670,78643,0 ) -(186,21:31239539,32213041:1343490,477757,0 -k186,21:31586882,32213041:347343 -g186,21:31786111,32213041 ) -g186,21:30911859,32213041 -g186,21:32583029,32213041 +(186,22:17661089,33628601:501378,78643,0 +(186,22:17824943,33628601:173670,78643,0 ) -(186,22:6630773,33054529:25952256,485622,134348 -g186,22:9448823,33054529 -h186,22:9448823,33054529:983040,0,0 -h186,22:10431863,33054529:0,0,0 -g186,22:7613813,33054529 -(186,22:7613813,33054529:1835010,485622,11795 -k186,22:9448823,33054529:864422 ) -g186,22:11439806,33054529 -g186,22:12053878,33054529 -g186,22:12053878,33054529 -(186,22:12145931,33054529:501378,78643,0 -$186,22:12145931,33054529 -(186,22:12309785,33054529:173670,78643,0 +(186,22:18162467,33628601:501378,78643,0 +(186,22:18326321,33628601:173670,78643,0 ) -$186,22:12647309,33054529 ) -(186,22:12647309,33054529:501378,78643,0 -(186,22:12811163,33054529:173670,78643,0 +(186,22:18663845,33628601:501378,78643,0 +(186,22:18827699,33628601:173670,78643,0 ) ) -(186,22:13148687,33054529:501378,78643,0 -(186,22:13312541,33054529:173670,78643,0 +(186,22:19165223,33628601:501378,78643,0 +(186,22:19329077,33628601:173670,78643,0 ) ) -(186,22:13650065,33054529:501378,78643,0 -(186,22:13813919,33054529:173670,78643,0 +(186,22:19666601,33628601:501378,78643,0 +(186,22:19830455,33628601:173670,78643,0 ) ) -(186,22:14151443,33054529:501378,78643,0 -(186,22:14315297,33054529:173670,78643,0 +(186,22:20167979,33628601:501378,78643,0 +(186,22:20331833,33628601:173670,78643,0 ) ) -(186,22:14652821,33054529:501378,78643,0 -(186,22:14816675,33054529:173670,78643,0 +(186,22:20669357,33628601:501378,78643,0 +(186,22:20833211,33628601:173670,78643,0 ) ) -(186,22:15154199,33054529:501378,78643,0 -(186,22:15318053,33054529:173670,78643,0 +(186,22:21170735,33628601:501378,78643,0 +(186,22:21334589,33628601:173670,78643,0 ) ) -(186,22:15655577,33054529:501378,78643,0 -(186,22:15819431,33054529:173670,78643,0 +(186,22:21672113,33628601:501378,78643,0 +(186,22:21835967,33628601:173670,78643,0 ) ) -(186,22:16156955,33054529:501378,78643,0 -(186,22:16320809,33054529:173670,78643,0 +(186,22:22173491,33628601:501378,78643,0 +(186,22:22337345,33628601:173670,78643,0 ) ) -(186,22:16658333,33054529:501378,78643,0 -(186,22:16822187,33054529:173670,78643,0 +(186,22:22674869,33628601:501378,78643,0 +(186,22:22838723,33628601:173670,78643,0 ) ) -(186,22:17159711,33054529:501378,78643,0 -(186,22:17323565,33054529:173670,78643,0 +(186,22:23176247,33628601:501378,78643,0 +(186,22:23340101,33628601:173670,78643,0 ) ) -(186,22:17661089,33054529:501378,78643,0 -(186,22:17824943,33054529:173670,78643,0 +(186,22:23677625,33628601:501378,78643,0 +(186,22:23841479,33628601:173670,78643,0 ) ) -(186,22:18162467,33054529:501378,78643,0 -(186,22:18326321,33054529:173670,78643,0 +(186,22:24179003,33628601:501378,78643,0 +(186,22:24342857,33628601:173670,78643,0 ) ) -(186,22:18663845,33054529:501378,78643,0 -(186,22:18827699,33054529:173670,78643,0 +(186,22:24680381,33628601:501378,78643,0 +(186,22:24844235,33628601:173670,78643,0 ) ) -(186,22:19165223,33054529:501378,78643,0 -(186,22:19329077,33054529:173670,78643,0 +(186,22:25181759,33628601:501378,78643,0 +(186,22:25345613,33628601:173670,78643,0 ) ) -(186,22:19666601,33054529:501378,78643,0 -(186,22:19830455,33054529:173670,78643,0 +(186,22:25683137,33628601:501378,78643,0 +(186,22:25846991,33628601:173670,78643,0 ) ) -(186,22:20167979,33054529:501378,78643,0 -(186,22:20331833,33054529:173670,78643,0 +(186,22:26184515,33628601:501378,78643,0 +(186,22:26348369,33628601:173670,78643,0 ) ) -(186,22:20669357,33054529:501378,78643,0 -(186,22:20833211,33054529:173670,78643,0 +(186,22:26685893,33628601:501378,78643,0 +(186,22:26849747,33628601:173670,78643,0 ) ) -(186,22:21170735,33054529:501378,78643,0 -(186,22:21334589,33054529:173670,78643,0 +(186,22:27187271,33628601:501378,78643,0 +(186,22:27351125,33628601:173670,78643,0 ) ) -(186,22:21672113,33054529:501378,78643,0 -(186,22:21835967,33054529:173670,78643,0 +(186,22:27688649,33628601:501378,78643,0 +(186,22:27852503,33628601:173670,78643,0 ) ) -(186,22:22173491,33054529:501378,78643,0 -(186,22:22337345,33054529:173670,78643,0 +(186,22:28190027,33628601:501378,78643,0 +(186,22:28353881,33628601:173670,78643,0 ) ) -(186,22:22674869,33054529:501378,78643,0 -(186,22:22838723,33054529:173670,78643,0 +(186,22:28691405,33628601:501378,78643,0 +(186,22:28855259,33628601:173670,78643,0 ) ) -(186,22:23176247,33054529:501378,78643,0 -(186,22:23340101,33054529:173670,78643,0 +(186,22:29192783,33628601:501378,78643,0 +(186,22:29356637,33628601:173670,78643,0 ) ) -(186,22:23677625,33054529:501378,78643,0 -(186,22:23841479,33054529:173670,78643,0 +(186,22:29694161,33628601:501378,78643,0 +(186,22:29858015,33628601:173670,78643,0 ) ) -(186,22:24179003,33054529:501378,78643,0 -(186,22:24342857,33054529:173670,78643,0 +(186,22:30195539,33628601:501378,78643,0 +(186,22:30359393,33628601:173670,78643,0 ) ) -(186,22:24680381,33054529:501378,78643,0 -(186,22:24844235,33054529:173670,78643,0 +(186,22:30696917,33628601:501378,78643,0 +(186,22:30860771,33628601:173670,78643,0 ) ) -(186,22:25181759,33054529:501378,78643,0 -(186,22:25345613,33054529:173670,78643,0 +(186,22:31239538,33628601:1343490,485622,0 +k186,22:31586881,33628601:347343 +g186,22:31786110,33628601 ) +g186,22:30911858,33628601 +g186,22:32583028,33628601 ) -(186,22:25683137,33054529:501378,78643,0 -(186,22:25846991,33054529:173670,78643,0 +(186,23:6630773,34493681:25952256,505283,11795 +g186,23:12529013,34493681 +h186,23:12529013,34493681:3080190,0,0 +h186,23:15609203,34493681:0,0,0 +g186,23:9710963,34493681 +(186,23:9710963,34493681:2818050,485622,11795 +k186,23:12529013,34493681:1275332 ) +g186,23:14991200,34493681 +g186,23:16381874,34493681 +g186,23:17799418,34493681 +(186,23:18162467,34493681:501378,78643,0 +$186,23:18162467,34493681 +(186,23:18326321,34493681:173670,78643,0 ) -(186,22:26184515,33054529:501378,78643,0 -(186,22:26348369,33054529:173670,78643,0 +$186,23:18663845,34493681 ) +(186,23:18663845,34493681:501378,78643,0 +(186,23:18827699,34493681:173670,78643,0 ) -(186,22:26685893,33054529:501378,78643,0 -(186,22:26849747,33054529:173670,78643,0 ) +(186,23:19165223,34493681:501378,78643,0 +(186,23:19329077,34493681:173670,78643,0 ) -(186,22:27187271,33054529:501378,78643,0 -(186,22:27351125,33054529:173670,78643,0 ) +(186,23:19666601,34493681:501378,78643,0 +(186,23:19830455,34493681:173670,78643,0 ) -(186,22:27688649,33054529:501378,78643,0 -(186,22:27852503,33054529:173670,78643,0 ) +(186,23:20167979,34493681:501378,78643,0 +(186,23:20331833,34493681:173670,78643,0 ) -(186,22:28190027,33054529:501378,78643,0 -(186,22:28353881,33054529:173670,78643,0 ) +(186,23:20669357,34493681:501378,78643,0 +(186,23:20833211,34493681:173670,78643,0 ) -(186,22:28691405,33054529:501378,78643,0 -(186,22:28855259,33054529:173670,78643,0 ) +(186,23:21170735,34493681:501378,78643,0 +(186,23:21334589,34493681:173670,78643,0 ) -(186,22:29192783,33054529:501378,78643,0 -(186,22:29356637,33054529:173670,78643,0 ) +(186,23:21672113,34493681:501378,78643,0 +(186,23:21835967,34493681:173670,78643,0 ) -(186,22:29694161,33054529:501378,78643,0 -(186,22:29858015,33054529:173670,78643,0 ) +(186,23:22173491,34493681:501378,78643,0 +(186,23:22337345,34493681:173670,78643,0 ) -(186,22:30195539,33054529:501378,78643,0 -(186,22:30359393,33054529:173670,78643,0 ) +(186,23:22674869,34493681:501378,78643,0 +(186,23:22838723,34493681:173670,78643,0 ) -(186,22:30696917,33054529:501378,78643,0 -(186,22:30860771,33054529:173670,78643,0 ) +(186,23:23176247,34493681:501378,78643,0 +(186,23:23340101,34493681:173670,78643,0 ) -(186,22:31239538,33054529:1343490,485622,0 -k186,22:31586881,33054529:347343 -g186,22:31786110,33054529 ) -g186,22:30911858,33054529 -g186,22:32583028,33054529 +(186,23:23677625,34493681:501378,78643,0 +(186,23:23841479,34493681:173670,78643,0 ) -(186,23:6630773,33896017:25952256,505283,11795 -g186,23:11873653,33896017 -h186,23:11873653,33896017:2818050,0,0 -h186,23:14691703,33896017:0,0,0 -g186,23:9448823,33896017 -(186,23:9448823,33896017:2424830,485622,11795 -k186,23:11873653,33896017:882112 ) -g186,23:14335840,33896017 -g186,23:15726514,33896017 -g186,23:17144058,33896017 -(186,23:17159711,33896017:501378,78643,0 -$186,23:17159711,33896017 -(186,23:17323565,33896017:173670,78643,0 +(186,23:24179003,34493681:501378,78643,0 +(186,23:24342857,34493681:173670,78643,0 ) -$186,23:17661089,33896017 ) -(186,23:17661089,33896017:501378,78643,0 -(186,23:17824943,33896017:173670,78643,0 +(186,23:24680381,34493681:501378,78643,0 +(186,23:24844235,34493681:173670,78643,0 ) ) -(186,23:18162467,33896017:501378,78643,0 -(186,23:18326321,33896017:173670,78643,0 +(186,23:25181759,34493681:501378,78643,0 +(186,23:25345613,34493681:173670,78643,0 ) ) -(186,23:18663845,33896017:501378,78643,0 -(186,23:18827699,33896017:173670,78643,0 +(186,23:25683137,34493681:501378,78643,0 +(186,23:25846991,34493681:173670,78643,0 ) ) -(186,23:19165223,33896017:501378,78643,0 -(186,23:19329077,33896017:173670,78643,0 +(186,23:26184515,34493681:501378,78643,0 +(186,23:26348369,34493681:173670,78643,0 ) ) -(186,23:19666601,33896017:501378,78643,0 -(186,23:19830455,33896017:173670,78643,0 +(186,23:26685893,34493681:501378,78643,0 +(186,23:26849747,34493681:173670,78643,0 ) ) -(186,23:20167979,33896017:501378,78643,0 -(186,23:20331833,33896017:173670,78643,0 +(186,23:27187271,34493681:501378,78643,0 +(186,23:27351125,34493681:173670,78643,0 ) ) -(186,23:20669357,33896017:501378,78643,0 -(186,23:20833211,33896017:173670,78643,0 +(186,23:27688649,34493681:501378,78643,0 +(186,23:27852503,34493681:173670,78643,0 ) ) -(186,23:21170735,33896017:501378,78643,0 -(186,23:21334589,33896017:173670,78643,0 +(186,23:28190027,34493681:501378,78643,0 +(186,23:28353881,34493681:173670,78643,0 ) ) -(186,23:21672113,33896017:501378,78643,0 -(186,23:21835967,33896017:173670,78643,0 +(186,23:28691405,34493681:501378,78643,0 +(186,23:28855259,34493681:173670,78643,0 ) ) -(186,23:22173491,33896017:501378,78643,0 -(186,23:22337345,33896017:173670,78643,0 +(186,23:29192783,34493681:501378,78643,0 +(186,23:29356637,34493681:173670,78643,0 ) ) -(186,23:22674869,33896017:501378,78643,0 -(186,23:22838723,33896017:173670,78643,0 +(186,23:29694161,34493681:501378,78643,0 +(186,23:29858015,34493681:173670,78643,0 ) ) -(186,23:23176247,33896017:501378,78643,0 -(186,23:23340101,33896017:173670,78643,0 +(186,23:30195539,34493681:501378,78643,0 +(186,23:30359393,34493681:173670,78643,0 ) ) -(186,23:23677625,33896017:501378,78643,0 -(186,23:23841479,33896017:173670,78643,0 +(186,23:30696917,34493681:501378,78643,0 +(186,23:30860771,34493681:173670,78643,0 ) ) -(186,23:24179003,33896017:501378,78643,0 -(186,23:24342857,33896017:173670,78643,0 +(186,23:31239539,34493681:1343490,485622,0 +k186,23:31586882,34493681:347343 +g186,23:31786111,34493681 ) +g186,23:30911859,34493681 +g186,23:32583029,34493681 ) -(186,23:24680381,33896017:501378,78643,0 -(186,23:24844235,33896017:173670,78643,0 +(186,24:6630773,35358761:25952256,505283,126483 +g186,24:12529013,35358761 +h186,24:12529013,35358761:3080190,0,0 +h186,24:15609203,35358761:0,0,0 +g186,24:9710963,35358761 +(186,24:9710963,35358761:2818050,485622,11795 +k186,24:12529013,35358761:1275332 ) +g186,24:13143085,35358761 +g186,24:16021426,35358761 +g186,24:17412100,35358761 +g186,24:21126681,35358761 +(186,24:21170735,35358761:501378,78643,0 +$186,24:21170735,35358761 +(186,24:21334589,35358761:173670,78643,0 ) -(186,23:25181759,33896017:501378,78643,0 -(186,23:25345613,33896017:173670,78643,0 +$186,24:21672113,35358761 ) +(186,24:21672113,35358761:501378,78643,0 +(186,24:21835967,35358761:173670,78643,0 ) -(186,23:25683137,33896017:501378,78643,0 -(186,23:25846991,33896017:173670,78643,0 ) +(186,24:22173491,35358761:501378,78643,0 +(186,24:22337345,35358761:173670,78643,0 ) -(186,23:26184515,33896017:501378,78643,0 -(186,23:26348369,33896017:173670,78643,0 ) +(186,24:22674869,35358761:501378,78643,0 +(186,24:22838723,35358761:173670,78643,0 ) -(186,23:26685893,33896017:501378,78643,0 -(186,23:26849747,33896017:173670,78643,0 ) +(186,24:23176247,35358761:501378,78643,0 +(186,24:23340101,35358761:173670,78643,0 ) -(186,23:27187271,33896017:501378,78643,0 -(186,23:27351125,33896017:173670,78643,0 ) +(186,24:23677625,35358761:501378,78643,0 +(186,24:23841479,35358761:173670,78643,0 ) -(186,23:27688649,33896017:501378,78643,0 -(186,23:27852503,33896017:173670,78643,0 ) +(186,24:24179003,35358761:501378,78643,0 +(186,24:24342857,35358761:173670,78643,0 ) -(186,23:28190027,33896017:501378,78643,0 -(186,23:28353881,33896017:173670,78643,0 ) +(186,24:24680381,35358761:501378,78643,0 +(186,24:24844235,35358761:173670,78643,0 ) -(186,23:28691405,33896017:501378,78643,0 -(186,23:28855259,33896017:173670,78643,0 ) +(186,24:25181759,35358761:501378,78643,0 +(186,24:25345613,35358761:173670,78643,0 ) -(186,23:29192783,33896017:501378,78643,0 -(186,23:29356637,33896017:173670,78643,0 ) +(186,24:25683137,35358761:501378,78643,0 +(186,24:25846991,35358761:173670,78643,0 ) -(186,23:29694161,33896017:501378,78643,0 -(186,23:29858015,33896017:173670,78643,0 ) +(186,24:26184515,35358761:501378,78643,0 +(186,24:26348369,35358761:173670,78643,0 ) -(186,23:30195539,33896017:501378,78643,0 -(186,23:30359393,33896017:173670,78643,0 ) +(186,24:26685893,35358761:501378,78643,0 +(186,24:26849747,35358761:173670,78643,0 ) -(186,23:30696917,33896017:501378,78643,0 -(186,23:30860771,33896017:173670,78643,0 ) +(186,24:27187271,35358761:501378,78643,0 +(186,24:27351125,35358761:173670,78643,0 ) -(186,23:31239539,33896017:1343490,485622,0 -k186,23:31586882,33896017:347343 -g186,23:31786111,33896017 ) -g186,23:30911859,33896017 -g186,23:32583029,33896017 +(186,24:27688649,35358761:501378,78643,0 +(186,24:27852503,35358761:173670,78643,0 ) -(186,24:6630773,34737505:25952256,505283,126483 -g186,24:11873653,34737505 -h186,24:11873653,34737505:2818050,0,0 -h186,24:14691703,34737505:0,0,0 -g186,24:9448823,34737505 -(186,24:9448823,34737505:2424830,485622,11795 -k186,24:11873653,34737505:882112 ) -g186,24:12487725,34737505 -g186,24:15366066,34737505 -g186,24:16756740,34737505 -g186,24:20471321,34737505 -(186,24:20669357,34737505:501378,78643,0 -$186,24:20669357,34737505 -(186,24:20833211,34737505:173670,78643,0 +(186,24:28190027,35358761:501378,78643,0 +(186,24:28353881,35358761:173670,78643,0 ) -$186,24:21170735,34737505 ) -(186,24:21170735,34737505:501378,78643,0 -(186,24:21334589,34737505:173670,78643,0 +(186,24:28691405,35358761:501378,78643,0 +(186,24:28855259,35358761:173670,78643,0 ) ) -(186,24:21672113,34737505:501378,78643,0 -(186,24:21835967,34737505:173670,78643,0 +(186,24:29192783,35358761:501378,78643,0 +(186,24:29356637,35358761:173670,78643,0 ) ) -(186,24:22173491,34737505:501378,78643,0 -(186,24:22337345,34737505:173670,78643,0 +(186,24:29694161,35358761:501378,78643,0 +(186,24:29858015,35358761:173670,78643,0 ) ) -(186,24:22674869,34737505:501378,78643,0 -(186,24:22838723,34737505:173670,78643,0 +(186,24:30195539,35358761:501378,78643,0 +(186,24:30359393,35358761:173670,78643,0 ) ) -(186,24:23176247,34737505:501378,78643,0 -(186,24:23340101,34737505:173670,78643,0 +(186,24:30696917,35358761:501378,78643,0 +(186,24:30860771,35358761:173670,78643,0 ) ) -(186,24:23677625,34737505:501378,78643,0 -(186,24:23841479,34737505:173670,78643,0 +(186,24:31239539,35358761:1343490,481690,0 +k186,24:31586882,35358761:347343 +g186,24:31786111,35358761 ) +g186,24:30911859,35358761 +g186,24:32583029,35358761 ) -(186,24:24179003,34737505:501378,78643,0 -(186,24:24342857,34737505:173670,78643,0 +(186,25:6630773,36223841:25952256,505283,134348 +g186,25:12529013,36223841 +h186,25:12529013,36223841:3080190,0,0 +h186,25:15609203,36223841:0,0,0 +g186,25:9710963,36223841 +(186,25:9710963,36223841:2818050,485622,11795 +k186,25:12529013,36223841:1275332 ) +g186,25:14519996,36223841 +g186,25:15134068,36223841 +g186,25:19060985,36223841 +(186,25:19165223,36223841:501378,78643,0 +$186,25:19165223,36223841 +(186,25:19329077,36223841:173670,78643,0 ) -(186,24:24680381,34737505:501378,78643,0 -(186,24:24844235,34737505:173670,78643,0 +$186,25:19666601,36223841 ) +(186,25:19666601,36223841:501378,78643,0 +(186,25:19830455,36223841:173670,78643,0 ) -(186,24:25181759,34737505:501378,78643,0 -(186,24:25345613,34737505:173670,78643,0 ) +(186,25:20167979,36223841:501378,78643,0 +(186,25:20331833,36223841:173670,78643,0 ) -(186,24:25683137,34737505:501378,78643,0 -(186,24:25846991,34737505:173670,78643,0 ) +(186,25:20669357,36223841:501378,78643,0 +(186,25:20833211,36223841:173670,78643,0 ) -(186,24:26184515,34737505:501378,78643,0 -(186,24:26348369,34737505:173670,78643,0 ) +(186,25:21170735,36223841:501378,78643,0 +(186,25:21334589,36223841:173670,78643,0 ) -(186,24:26685893,34737505:501378,78643,0 -(186,24:26849747,34737505:173670,78643,0 ) +(186,25:21672113,36223841:501378,78643,0 +(186,25:21835967,36223841:173670,78643,0 ) -(186,24:27187271,34737505:501378,78643,0 -(186,24:27351125,34737505:173670,78643,0 ) +(186,25:22173491,36223841:501378,78643,0 +(186,25:22337345,36223841:173670,78643,0 ) -(186,24:27688649,34737505:501378,78643,0 -(186,24:27852503,34737505:173670,78643,0 ) +(186,25:22674869,36223841:501378,78643,0 +(186,25:22838723,36223841:173670,78643,0 ) -(186,24:28190027,34737505:501378,78643,0 -(186,24:28353881,34737505:173670,78643,0 ) +(186,25:23176247,36223841:501378,78643,0 +(186,25:23340101,36223841:173670,78643,0 ) -(186,24:28691405,34737505:501378,78643,0 -(186,24:28855259,34737505:173670,78643,0 ) +(186,25:23677625,36223841:501378,78643,0 +(186,25:23841479,36223841:173670,78643,0 ) -(186,24:29192783,34737505:501378,78643,0 -(186,24:29356637,34737505:173670,78643,0 ) +(186,25:24179003,36223841:501378,78643,0 +(186,25:24342857,36223841:173670,78643,0 ) -(186,24:29694161,34737505:501378,78643,0 -(186,24:29858015,34737505:173670,78643,0 ) +(186,25:24680381,36223841:501378,78643,0 +(186,25:24844235,36223841:173670,78643,0 ) -(186,24:30195539,34737505:501378,78643,0 -(186,24:30359393,34737505:173670,78643,0 ) +(186,25:25181759,36223841:501378,78643,0 +(186,25:25345613,36223841:173670,78643,0 ) -(186,24:30696917,34737505:501378,78643,0 -(186,24:30860771,34737505:173670,78643,0 ) +(186,25:25683137,36223841:501378,78643,0 +(186,25:25846991,36223841:173670,78643,0 ) -(186,24:31239539,34737505:1343490,481690,0 -k186,24:31586882,34737505:347343 -g186,24:31786111,34737505 ) -g186,24:30911859,34737505 -g186,24:32583029,34737505 +(186,25:26184515,36223841:501378,78643,0 +(186,25:26348369,36223841:173670,78643,0 ) -(186,25:6630773,35578993:25952256,505283,134348 -g186,25:11873653,35578993 -h186,25:11873653,35578993:2818050,0,0 -h186,25:14691703,35578993:0,0,0 -g186,25:9448823,35578993 -(186,25:9448823,35578993:2424830,485622,11795 -k186,25:11873653,35578993:882112 ) -g186,25:13864636,35578993 -g186,25:14478708,35578993 -g186,25:18405625,35578993 -(186,25:18663845,35578993:501378,78643,0 -$186,25:18663845,35578993 -(186,25:18827699,35578993:173670,78643,0 +(186,25:26685893,36223841:501378,78643,0 +(186,25:26849747,36223841:173670,78643,0 ) -$186,25:19165223,35578993 ) -(186,25:19165223,35578993:501378,78643,0 -(186,25:19329077,35578993:173670,78643,0 +(186,25:27187271,36223841:501378,78643,0 +(186,25:27351125,36223841:173670,78643,0 ) ) -(186,25:19666601,35578993:501378,78643,0 -(186,25:19830455,35578993:173670,78643,0 +(186,25:27688649,36223841:501378,78643,0 +(186,25:27852503,36223841:173670,78643,0 ) ) -(186,25:20167979,35578993:501378,78643,0 -(186,25:20331833,35578993:173670,78643,0 +(186,25:28190027,36223841:501378,78643,0 +(186,25:28353881,36223841:173670,78643,0 ) ) -(186,25:20669357,35578993:501378,78643,0 -(186,25:20833211,35578993:173670,78643,0 +(186,25:28691405,36223841:501378,78643,0 +(186,25:28855259,36223841:173670,78643,0 ) ) -(186,25:21170735,35578993:501378,78643,0 -(186,25:21334589,35578993:173670,78643,0 +(186,25:29192783,36223841:501378,78643,0 +(186,25:29356637,36223841:173670,78643,0 ) ) -(186,25:21672113,35578993:501378,78643,0 -(186,25:21835967,35578993:173670,78643,0 +(186,25:29694161,36223841:501378,78643,0 +(186,25:29858015,36223841:173670,78643,0 ) ) -(186,25:22173491,35578993:501378,78643,0 -(186,25:22337345,35578993:173670,78643,0 +(186,25:30195539,36223841:501378,78643,0 +(186,25:30359393,36223841:173670,78643,0 ) ) -(186,25:22674869,35578993:501378,78643,0 -(186,25:22838723,35578993:173670,78643,0 +(186,25:30696917,36223841:501378,78643,0 +(186,25:30860771,36223841:173670,78643,0 ) ) -(186,25:23176247,35578993:501378,78643,0 -(186,25:23340101,35578993:173670,78643,0 +(186,25:31239539,36223841:1343490,477757,11795 +k186,25:31586882,36223841:347343 +g186,25:31786111,36223841 ) +g186,25:30911859,36223841 +g186,25:32583029,36223841 ) -(186,25:23677625,35578993:501378,78643,0 -(186,25:23841479,35578993:173670,78643,0 +(186,26:6630773,37088921:25952256,505283,134348 +g186,26:12529013,37088921 +h186,26:12529013,37088921:3080190,0,0 +h186,26:15609203,37088921:0,0,0 +g186,26:9710963,37088921 +(186,26:9710963,37088921:2818050,485622,11795 +k186,26:12529013,37088921:1275332 ) +g186,26:14519996,37088921 +g186,26:15134068,37088921 +g186,26:15949335,37088921 +g186,26:16504424,37088921 +g186,26:18765416,37088921 +g186,26:20087277,37088921 +(186,26:20167979,37088921:501378,78643,0 +$186,26:20167979,37088921 +(186,26:20331833,37088921:173670,78643,0 ) -(186,25:24179003,35578993:501378,78643,0 -(186,25:24342857,35578993:173670,78643,0 +$186,26:20669357,37088921 ) +(186,26:20669357,37088921:501378,78643,0 +(186,26:20833211,37088921:173670,78643,0 ) -(186,25:24680381,35578993:501378,78643,0 -(186,25:24844235,35578993:173670,78643,0 ) +(186,26:21170735,37088921:501378,78643,0 +(186,26:21334589,37088921:173670,78643,0 ) -(186,25:25181759,35578993:501378,78643,0 -(186,25:25345613,35578993:173670,78643,0 ) +(186,26:21672113,37088921:501378,78643,0 +(186,26:21835967,37088921:173670,78643,0 ) -(186,25:25683137,35578993:501378,78643,0 -(186,25:25846991,35578993:173670,78643,0 ) +(186,26:22173491,37088921:501378,78643,0 +(186,26:22337345,37088921:173670,78643,0 ) -(186,25:26184515,35578993:501378,78643,0 -(186,25:26348369,35578993:173670,78643,0 ) +(186,26:22674869,37088921:501378,78643,0 +(186,26:22838723,37088921:173670,78643,0 ) -(186,25:26685893,35578993:501378,78643,0 -(186,25:26849747,35578993:173670,78643,0 ) +(186,26:23176247,37088921:501378,78643,0 +(186,26:23340101,37088921:173670,78643,0 ) -(186,25:27187271,35578993:501378,78643,0 -(186,25:27351125,35578993:173670,78643,0 ) +(186,26:23677625,37088921:501378,78643,0 +(186,26:23841479,37088921:173670,78643,0 ) -(186,25:27688649,35578993:501378,78643,0 -(186,25:27852503,35578993:173670,78643,0 ) +(186,26:24179003,37088921:501378,78643,0 +(186,26:24342857,37088921:173670,78643,0 ) -(186,25:28190027,35578993:501378,78643,0 -(186,25:28353881,35578993:173670,78643,0 ) +(186,26:24680381,37088921:501378,78643,0 +(186,26:24844235,37088921:173670,78643,0 ) -(186,25:28691405,35578993:501378,78643,0 -(186,25:28855259,35578993:173670,78643,0 ) +(186,26:25181759,37088921:501378,78643,0 +(186,26:25345613,37088921:173670,78643,0 ) -(186,25:29192783,35578993:501378,78643,0 -(186,25:29356637,35578993:173670,78643,0 ) +(186,26:25683137,37088921:501378,78643,0 +(186,26:25846991,37088921:173670,78643,0 ) -(186,25:29694161,35578993:501378,78643,0 -(186,25:29858015,35578993:173670,78643,0 ) +(186,26:26184515,37088921:501378,78643,0 +(186,26:26348369,37088921:173670,78643,0 ) -(186,25:30195539,35578993:501378,78643,0 -(186,25:30359393,35578993:173670,78643,0 ) +(186,26:26685893,37088921:501378,78643,0 +(186,26:26849747,37088921:173670,78643,0 ) -(186,25:30696917,35578993:501378,78643,0 -(186,25:30860771,35578993:173670,78643,0 ) +(186,26:27187271,37088921:501378,78643,0 +(186,26:27351125,37088921:173670,78643,0 ) -(186,25:31239539,35578993:1343490,477757,11795 -k186,25:31586882,35578993:347343 -g186,25:31786111,35578993 ) -g186,25:30911859,35578993 -g186,25:32583029,35578993 +(186,26:27688649,37088921:501378,78643,0 +(186,26:27852503,37088921:173670,78643,0 ) -(186,26:6630773,36420481:25952256,505283,134348 -g186,26:11873653,36420481 -h186,26:11873653,36420481:2818050,0,0 -h186,26:14691703,36420481:0,0,0 -g186,26:9448823,36420481 -(186,26:9448823,36420481:2424830,485622,11795 -k186,26:11873653,36420481:882112 ) -g186,26:13864636,36420481 -g186,26:14478708,36420481 -g186,26:15293975,36420481 -g186,26:15849064,36420481 -g186,26:18110056,36420481 -g186,26:19431917,36420481 -(186,26:19666601,36420481:501378,78643,0 -$186,26:19666601,36420481 -(186,26:19830455,36420481:173670,78643,0 +(186,26:28190027,37088921:501378,78643,0 +(186,26:28353881,37088921:173670,78643,0 ) -$186,26:20167979,36420481 ) -(186,26:20167979,36420481:501378,78643,0 -(186,26:20331833,36420481:173670,78643,0 +(186,26:28691405,37088921:501378,78643,0 +(186,26:28855259,37088921:173670,78643,0 ) ) -(186,26:20669357,36420481:501378,78643,0 -(186,26:20833211,36420481:173670,78643,0 +(186,26:29192783,37088921:501378,78643,0 +(186,26:29356637,37088921:173670,78643,0 ) ) -(186,26:21170735,36420481:501378,78643,0 -(186,26:21334589,36420481:173670,78643,0 +(186,26:29694161,37088921:501378,78643,0 +(186,26:29858015,37088921:173670,78643,0 ) ) -(186,26:21672113,36420481:501378,78643,0 -(186,26:21835967,36420481:173670,78643,0 +(186,26:30195539,37088921:501378,78643,0 +(186,26:30359393,37088921:173670,78643,0 ) ) -(186,26:22173491,36420481:501378,78643,0 -(186,26:22337345,36420481:173670,78643,0 +(186,26:30696917,37088921:501378,78643,0 +(186,26:30860771,37088921:173670,78643,0 ) ) -(186,26:22674869,36420481:501378,78643,0 -(186,26:22838723,36420481:173670,78643,0 +(186,26:31239539,37088921:1343490,477757,0 +k186,26:31586882,37088921:347343 +g186,26:31786111,37088921 ) +g186,26:30911859,37088921 +g186,26:32583029,37088921 ) -(186,26:23176247,36420481:501378,78643,0 -(186,26:23340101,36420481:173670,78643,0 +(186,27:6630773,37954001:25952256,505283,126483 +g186,27:9710963,37954001 +h186,27:9710963,37954001:983040,0,0 +h186,27:10694003,37954001:0,0,0 +g186,27:7613813,37954001 +(186,27:7613813,37954001:2097150,485622,0 +k186,27:9710963,37954001:1126562 ) +g186,27:14129400,37954001 +g186,27:15717992,37954001 +g186,27:18471814,37954001 +g186,27:20064994,37954001 +g186,27:20679066,37954001 +g186,27:20679066,37954001 +(186,27:21170735,37954001:501378,78643,0 +$186,27:21170735,37954001 +(186,27:21334589,37954001:173670,78643,0 ) -(186,26:23677625,36420481:501378,78643,0 -(186,26:23841479,36420481:173670,78643,0 +$186,27:21672113,37954001 ) +(186,27:21672113,37954001:501378,78643,0 +(186,27:21835967,37954001:173670,78643,0 ) -(186,26:24179003,36420481:501378,78643,0 -(186,26:24342857,36420481:173670,78643,0 ) +(186,27:22173491,37954001:501378,78643,0 +(186,27:22337345,37954001:173670,78643,0 ) -(186,26:24680381,36420481:501378,78643,0 -(186,26:24844235,36420481:173670,78643,0 ) +(186,27:22674869,37954001:501378,78643,0 +(186,27:22838723,37954001:173670,78643,0 ) -(186,26:25181759,36420481:501378,78643,0 -(186,26:25345613,36420481:173670,78643,0 ) +(186,27:23176247,37954001:501378,78643,0 +(186,27:23340101,37954001:173670,78643,0 ) -(186,26:25683137,36420481:501378,78643,0 -(186,26:25846991,36420481:173670,78643,0 ) +(186,27:23677625,37954001:501378,78643,0 +(186,27:23841479,37954001:173670,78643,0 ) -(186,26:26184515,36420481:501378,78643,0 -(186,26:26348369,36420481:173670,78643,0 ) +(186,27:24179003,37954001:501378,78643,0 +(186,27:24342857,37954001:173670,78643,0 ) -(186,26:26685893,36420481:501378,78643,0 -(186,26:26849747,36420481:173670,78643,0 ) +(186,27:24680381,37954001:501378,78643,0 +(186,27:24844235,37954001:173670,78643,0 ) -(186,26:27187271,36420481:501378,78643,0 -(186,26:27351125,36420481:173670,78643,0 ) +(186,27:25181759,37954001:501378,78643,0 +(186,27:25345613,37954001:173670,78643,0 ) -(186,26:27688649,36420481:501378,78643,0 -(186,26:27852503,36420481:173670,78643,0 ) +(186,27:25683137,37954001:501378,78643,0 +(186,27:25846991,37954001:173670,78643,0 ) -(186,26:28190027,36420481:501378,78643,0 -(186,26:28353881,36420481:173670,78643,0 ) +(186,27:26184515,37954001:501378,78643,0 +(186,27:26348369,37954001:173670,78643,0 ) -(186,26:28691405,36420481:501378,78643,0 -(186,26:28855259,36420481:173670,78643,0 ) +(186,27:26685893,37954001:501378,78643,0 +(186,27:26849747,37954001:173670,78643,0 ) -(186,26:29192783,36420481:501378,78643,0 -(186,26:29356637,36420481:173670,78643,0 ) +(186,27:27187271,37954001:501378,78643,0 +(186,27:27351125,37954001:173670,78643,0 ) -(186,26:29694161,36420481:501378,78643,0 -(186,26:29858015,36420481:173670,78643,0 ) +(186,27:27688649,37954001:501378,78643,0 +(186,27:27852503,37954001:173670,78643,0 ) -(186,26:30195539,36420481:501378,78643,0 -(186,26:30359393,36420481:173670,78643,0 ) +(186,27:28190027,37954001:501378,78643,0 +(186,27:28353881,37954001:173670,78643,0 ) -(186,26:30696917,36420481:501378,78643,0 -(186,26:30860771,36420481:173670,78643,0 ) +(186,27:28691405,37954001:501378,78643,0 +(186,27:28855259,37954001:173670,78643,0 ) -(186,26:31239539,36420481:1343490,477757,0 -k186,26:31586882,36420481:347343 -g186,26:31786111,36420481 ) -g186,26:30911859,36420481 -g186,26:32583029,36420481 +(186,27:29192783,37954001:501378,78643,0 +(186,27:29356637,37954001:173670,78643,0 ) -(186,27:6630773,37261969:25952256,505283,126483 -g186,27:9448823,37261969 -h186,27:9448823,37261969:983040,0,0 -h186,27:10431863,37261969:0,0,0 -g186,27:7613813,37261969 -(186,27:7613813,37261969:1835010,485622,0 -k186,27:9448823,37261969:864422 ) -g186,27:13867260,37261969 -g186,27:15455852,37261969 -g186,27:18209674,37261969 -g186,27:19802854,37261969 -g186,27:20416926,37261969 -g186,27:20416926,37261969 -(186,27:20669357,37261969:501378,78643,0 -$186,27:20669357,37261969 -(186,27:20833211,37261969:173670,78643,0 +(186,27:29694161,37954001:501378,78643,0 +(186,27:29858015,37954001:173670,78643,0 ) -$186,27:21170735,37261969 ) -(186,27:21170735,37261969:501378,78643,0 -(186,27:21334589,37261969:173670,78643,0 +(186,27:30195539,37954001:501378,78643,0 +(186,27:30359393,37954001:173670,78643,0 ) ) -(186,27:21672113,37261969:501378,78643,0 -(186,27:21835967,37261969:173670,78643,0 +(186,27:30696917,37954001:501378,78643,0 +(186,27:30860771,37954001:173670,78643,0 ) ) -(186,27:22173491,37261969:501378,78643,0 -(186,27:22337345,37261969:173670,78643,0 +(186,27:31239539,37954001:1343490,485622,11795 +k186,27:31586882,37954001:347343 +g186,27:31786111,37954001 ) +g186,27:30911859,37954001 +g186,27:32583029,37954001 ) -(186,27:22674869,37261969:501378,78643,0 -(186,27:22838723,37261969:173670,78643,0 +(186,28:6630773,38819081:25952256,505283,134348 +g186,28:9710963,38819081 +h186,28:9710963,38819081:983040,0,0 +h186,28:10694003,38819081:0,0,0 +g186,28:7613813,38819081 +(186,28:7613813,38819081:2097150,485622,11795 +k186,28:9710963,38819081:1126562 ) +g186,28:12241308,38819081 +g186,28:14213941,38819081 +g186,28:15064598,38819081 +g186,28:16356312,38819081 +g186,28:16970384,38819081 +g186,28:16970384,38819081 +(186,28:17159711,38819081:501378,78643,0 +$186,28:17159711,38819081 +(186,28:17323565,38819081:173670,78643,0 ) -(186,27:23176247,37261969:501378,78643,0 -(186,27:23340101,37261969:173670,78643,0 +$186,28:17661089,38819081 ) +(186,28:17661089,38819081:501378,78643,0 +(186,28:17824943,38819081:173670,78643,0 ) -(186,27:23677625,37261969:501378,78643,0 -(186,27:23841479,37261969:173670,78643,0 ) +(186,28:18162467,38819081:501378,78643,0 +(186,28:18326321,38819081:173670,78643,0 ) -(186,27:24179003,37261969:501378,78643,0 -(186,27:24342857,37261969:173670,78643,0 ) +(186,28:18663845,38819081:501378,78643,0 +(186,28:18827699,38819081:173670,78643,0 ) -(186,27:24680381,37261969:501378,78643,0 -(186,27:24844235,37261969:173670,78643,0 ) +(186,28:19165223,38819081:501378,78643,0 +(186,28:19329077,38819081:173670,78643,0 ) -(186,27:25181759,37261969:501378,78643,0 -(186,27:25345613,37261969:173670,78643,0 ) +(186,28:19666601,38819081:501378,78643,0 +(186,28:19830455,38819081:173670,78643,0 ) -(186,27:25683137,37261969:501378,78643,0 -(186,27:25846991,37261969:173670,78643,0 ) +(186,28:20167979,38819081:501378,78643,0 +(186,28:20331833,38819081:173670,78643,0 ) -(186,27:26184515,37261969:501378,78643,0 -(186,27:26348369,37261969:173670,78643,0 ) +(186,28:20669357,38819081:501378,78643,0 +(186,28:20833211,38819081:173670,78643,0 ) -(186,27:26685893,37261969:501378,78643,0 -(186,27:26849747,37261969:173670,78643,0 ) +(186,28:21170735,38819081:501378,78643,0 +(186,28:21334589,38819081:173670,78643,0 ) -(186,27:27187271,37261969:501378,78643,0 -(186,27:27351125,37261969:173670,78643,0 ) +(186,28:21672113,38819081:501378,78643,0 +(186,28:21835967,38819081:173670,78643,0 ) -(186,27:27688649,37261969:501378,78643,0 -(186,27:27852503,37261969:173670,78643,0 ) +(186,28:22173491,38819081:501378,78643,0 +(186,28:22337345,38819081:173670,78643,0 ) -(186,27:28190027,37261969:501378,78643,0 -(186,27:28353881,37261969:173670,78643,0 ) +(186,28:22674869,38819081:501378,78643,0 +(186,28:22838723,38819081:173670,78643,0 ) -(186,27:28691405,37261969:501378,78643,0 -(186,27:28855259,37261969:173670,78643,0 ) +(186,28:23176247,38819081:501378,78643,0 +(186,28:23340101,38819081:173670,78643,0 ) -(186,27:29192783,37261969:501378,78643,0 -(186,27:29356637,37261969:173670,78643,0 ) +(186,28:23677625,38819081:501378,78643,0 +(186,28:23841479,38819081:173670,78643,0 ) -(186,27:29694161,37261969:501378,78643,0 -(186,27:29858015,37261969:173670,78643,0 ) +(186,28:24179003,38819081:501378,78643,0 +(186,28:24342857,38819081:173670,78643,0 ) -(186,27:30195539,37261969:501378,78643,0 -(186,27:30359393,37261969:173670,78643,0 ) +(186,28:24680381,38819081:501378,78643,0 +(186,28:24844235,38819081:173670,78643,0 ) -(186,27:30696917,37261969:501378,78643,0 -(186,27:30860771,37261969:173670,78643,0 ) +(186,28:25181759,38819081:501378,78643,0 +(186,28:25345613,38819081:173670,78643,0 ) -(186,27:31239539,37261969:1343490,485622,11795 -k186,27:31586882,37261969:347343 -g186,27:31786111,37261969 ) -g186,27:30911859,37261969 -g186,27:32583029,37261969 +(186,28:25683137,38819081:501378,78643,0 +(186,28:25846991,38819081:173670,78643,0 ) -(186,28:6630773,38103457:25952256,505283,134348 -g186,28:9448823,38103457 -h186,28:9448823,38103457:983040,0,0 -h186,28:10431863,38103457:0,0,0 -g186,28:7613813,38103457 -(186,28:7613813,38103457:1835010,485622,11795 -k186,28:9448823,38103457:864422 ) -g186,28:11979168,38103457 -g186,28:13951801,38103457 -g186,28:14802458,38103457 -g186,28:16094172,38103457 -g186,28:16708244,38103457 -g186,28:16708244,38103457 -(186,28:17159711,38103457:501378,78643,0 -$186,28:17159711,38103457 -(186,28:17323565,38103457:173670,78643,0 +(186,28:26184515,38819081:501378,78643,0 +(186,28:26348369,38819081:173670,78643,0 ) -$186,28:17661089,38103457 ) -(186,28:17661089,38103457:501378,78643,0 -(186,28:17824943,38103457:173670,78643,0 +(186,28:26685893,38819081:501378,78643,0 +(186,28:26849747,38819081:173670,78643,0 ) ) -(186,28:18162467,38103457:501378,78643,0 -(186,28:18326321,38103457:173670,78643,0 +(186,28:27187271,38819081:501378,78643,0 +(186,28:27351125,38819081:173670,78643,0 ) ) -(186,28:18663845,38103457:501378,78643,0 -(186,28:18827699,38103457:173670,78643,0 +(186,28:27688649,38819081:501378,78643,0 +(186,28:27852503,38819081:173670,78643,0 ) ) -(186,28:19165223,38103457:501378,78643,0 -(186,28:19329077,38103457:173670,78643,0 +(186,28:28190027,38819081:501378,78643,0 +(186,28:28353881,38819081:173670,78643,0 ) ) -(186,28:19666601,38103457:501378,78643,0 -(186,28:19830455,38103457:173670,78643,0 +(186,28:28691405,38819081:501378,78643,0 +(186,28:28855259,38819081:173670,78643,0 ) ) -(186,28:20167979,38103457:501378,78643,0 -(186,28:20331833,38103457:173670,78643,0 +(186,28:29192783,38819081:501378,78643,0 +(186,28:29356637,38819081:173670,78643,0 ) ) -(186,28:20669357,38103457:501378,78643,0 -(186,28:20833211,38103457:173670,78643,0 +(186,28:29694161,38819081:501378,78643,0 +(186,28:29858015,38819081:173670,78643,0 ) ) -(186,28:21170735,38103457:501378,78643,0 -(186,28:21334589,38103457:173670,78643,0 +(186,28:30195539,38819081:501378,78643,0 +(186,28:30359393,38819081:173670,78643,0 ) ) -(186,28:21672113,38103457:501378,78643,0 -(186,28:21835967,38103457:173670,78643,0 +(186,28:30696917,38819081:501378,78643,0 +(186,28:30860771,38819081:173670,78643,0 ) ) -(186,28:22173491,38103457:501378,78643,0 -(186,28:22337345,38103457:173670,78643,0 +(186,28:31239539,38819081:1343490,485622,11795 +k186,28:31586882,38819081:347343 +g186,28:31786111,38819081 ) +g186,28:30911859,38819081 +g186,28:32583029,38819081 ) -(186,28:22674869,38103457:501378,78643,0 -(186,28:22838723,38103457:173670,78643,0 +(186,29:6630773,39684161:25952256,505283,134348 +g186,29:9710963,39684161 +h186,29:9710963,39684161:983040,0,0 +h186,29:10694003,39684161:0,0,0 +g186,29:7613813,39684161 +(186,29:7613813,39684161:2097150,485622,11795 +k186,29:9710963,39684161:1126562 ) +g186,29:12279974,39684161 +g186,29:14881753,39684161 +g186,29:14881753,39684161 +(186,29:15154199,39684161:501378,78643,0 +$186,29:15154199,39684161 +(186,29:15318053,39684161:173670,78643,0 ) -(186,28:23176247,38103457:501378,78643,0 -(186,28:23340101,38103457:173670,78643,0 +$186,29:15655577,39684161 ) +(186,29:15655577,39684161:501378,78643,0 +(186,29:15819431,39684161:173670,78643,0 ) -(186,28:23677625,38103457:501378,78643,0 -(186,28:23841479,38103457:173670,78643,0 ) +(186,29:16156955,39684161:501378,78643,0 +(186,29:16320809,39684161:173670,78643,0 ) -(186,28:24179003,38103457:501378,78643,0 -(186,28:24342857,38103457:173670,78643,0 ) +(186,29:16658333,39684161:501378,78643,0 +(186,29:16822187,39684161:173670,78643,0 ) -(186,28:24680381,38103457:501378,78643,0 -(186,28:24844235,38103457:173670,78643,0 ) +(186,29:17159711,39684161:501378,78643,0 +(186,29:17323565,39684161:173670,78643,0 ) -(186,28:25181759,38103457:501378,78643,0 -(186,28:25345613,38103457:173670,78643,0 ) +(186,29:17661089,39684161:501378,78643,0 +(186,29:17824943,39684161:173670,78643,0 ) -(186,28:25683137,38103457:501378,78643,0 -(186,28:25846991,38103457:173670,78643,0 ) +(186,29:18162467,39684161:501378,78643,0 +(186,29:18326321,39684161:173670,78643,0 ) -(186,28:26184515,38103457:501378,78643,0 -(186,28:26348369,38103457:173670,78643,0 ) +(186,29:18663845,39684161:501378,78643,0 +(186,29:18827699,39684161:173670,78643,0 ) -(186,28:26685893,38103457:501378,78643,0 -(186,28:26849747,38103457:173670,78643,0 ) +(186,29:19165223,39684161:501378,78643,0 +(186,29:19329077,39684161:173670,78643,0 ) -(186,28:27187271,38103457:501378,78643,0 -(186,28:27351125,38103457:173670,78643,0 ) +(186,29:19666601,39684161:501378,78643,0 +(186,29:19830455,39684161:173670,78643,0 ) -(186,28:27688649,38103457:501378,78643,0 -(186,28:27852503,38103457:173670,78643,0 ) +(186,29:20167979,39684161:501378,78643,0 +(186,29:20331833,39684161:173670,78643,0 ) -(186,28:28190027,38103457:501378,78643,0 -(186,28:28353881,38103457:173670,78643,0 ) +(186,29:20669357,39684161:501378,78643,0 +(186,29:20833211,39684161:173670,78643,0 ) -(186,28:28691405,38103457:501378,78643,0 -(186,28:28855259,38103457:173670,78643,0 ) +(186,29:21170735,39684161:501378,78643,0 +(186,29:21334589,39684161:173670,78643,0 ) -(186,28:29192783,38103457:501378,78643,0 -(186,28:29356637,38103457:173670,78643,0 ) +(186,29:21672113,39684161:501378,78643,0 +(186,29:21835967,39684161:173670,78643,0 ) -(186,28:29694161,38103457:501378,78643,0 -(186,28:29858015,38103457:173670,78643,0 ) +(186,29:22173491,39684161:501378,78643,0 +(186,29:22337345,39684161:173670,78643,0 ) -(186,28:30195539,38103457:501378,78643,0 -(186,28:30359393,38103457:173670,78643,0 ) +(186,29:22674869,39684161:501378,78643,0 +(186,29:22838723,39684161:173670,78643,0 ) -(186,28:30696917,38103457:501378,78643,0 -(186,28:30860771,38103457:173670,78643,0 ) +(186,29:23176247,39684161:501378,78643,0 +(186,29:23340101,39684161:173670,78643,0 ) -(186,28:31239539,38103457:1343490,485622,11795 -k186,28:31586882,38103457:347343 -g186,28:31786111,38103457 ) -g186,28:30911859,38103457 -g186,28:32583029,38103457 +(186,29:23677625,39684161:501378,78643,0 +(186,29:23841479,39684161:173670,78643,0 ) -(186,29:6630773,38944945:25952256,505283,134348 -g186,29:9448823,38944945 -h186,29:9448823,38944945:983040,0,0 -h186,29:10431863,38944945:0,0,0 -g186,29:7613813,38944945 -(186,29:7613813,38944945:1835010,485622,11795 -k186,29:9448823,38944945:864422 ) -g186,29:12017834,38944945 -g186,29:14619613,38944945 -g186,29:14619613,38944945 -(186,29:14652821,38944945:501378,78643,0 -$186,29:14652821,38944945 -(186,29:14816675,38944945:173670,78643,0 +(186,29:24179003,39684161:501378,78643,0 +(186,29:24342857,39684161:173670,78643,0 ) -$186,29:15154199,38944945 ) -(186,29:15154199,38944945:501378,78643,0 -(186,29:15318053,38944945:173670,78643,0 +(186,29:24680381,39684161:501378,78643,0 +(186,29:24844235,39684161:173670,78643,0 ) ) -(186,29:15655577,38944945:501378,78643,0 -(186,29:15819431,38944945:173670,78643,0 +(186,29:25181759,39684161:501378,78643,0 +(186,29:25345613,39684161:173670,78643,0 ) ) -(186,29:16156955,38944945:501378,78643,0 -(186,29:16320809,38944945:173670,78643,0 +(186,29:25683137,39684161:501378,78643,0 +(186,29:25846991,39684161:173670,78643,0 ) ) -(186,29:16658333,38944945:501378,78643,0 -(186,29:16822187,38944945:173670,78643,0 +(186,29:26184515,39684161:501378,78643,0 +(186,29:26348369,39684161:173670,78643,0 ) ) -(186,29:17159711,38944945:501378,78643,0 -(186,29:17323565,38944945:173670,78643,0 +(186,29:26685893,39684161:501378,78643,0 +(186,29:26849747,39684161:173670,78643,0 ) ) -(186,29:17661089,38944945:501378,78643,0 -(186,29:17824943,38944945:173670,78643,0 +(186,29:27187271,39684161:501378,78643,0 +(186,29:27351125,39684161:173670,78643,0 ) ) -(186,29:18162467,38944945:501378,78643,0 -(186,29:18326321,38944945:173670,78643,0 +(186,29:27688649,39684161:501378,78643,0 +(186,29:27852503,39684161:173670,78643,0 ) ) -(186,29:18663845,38944945:501378,78643,0 -(186,29:18827699,38944945:173670,78643,0 +(186,29:28190027,39684161:501378,78643,0 +(186,29:28353881,39684161:173670,78643,0 ) ) -(186,29:19165223,38944945:501378,78643,0 -(186,29:19329077,38944945:173670,78643,0 +(186,29:28691405,39684161:501378,78643,0 +(186,29:28855259,39684161:173670,78643,0 ) ) -(186,29:19666601,38944945:501378,78643,0 -(186,29:19830455,38944945:173670,78643,0 +(186,29:29192783,39684161:501378,78643,0 +(186,29:29356637,39684161:173670,78643,0 ) ) -(186,29:20167979,38944945:501378,78643,0 -(186,29:20331833,38944945:173670,78643,0 +(186,29:29694161,39684161:501378,78643,0 +(186,29:29858015,39684161:173670,78643,0 ) ) -(186,29:20669357,38944945:501378,78643,0 -(186,29:20833211,38944945:173670,78643,0 +(186,29:30195539,39684161:501378,78643,0 +(186,29:30359393,39684161:173670,78643,0 ) ) -(186,29:21170735,38944945:501378,78643,0 -(186,29:21334589,38944945:173670,78643,0 +(186,29:30696917,39684161:501378,78643,0 +(186,29:30860771,39684161:173670,78643,0 ) ) -(186,29:21672113,38944945:501378,78643,0 -(186,29:21835967,38944945:173670,78643,0 +(186,29:31239539,39684161:1343490,485622,0 +k186,29:31586882,39684161:347343 +g186,29:31786111,39684161 ) +g186,29:30911859,39684161 +g186,29:32583029,39684161 ) -(186,29:22173491,38944945:501378,78643,0 -(186,29:22337345,38944945:173670,78643,0 +(186,30:6630773,41204601:25952256,505283,11795 +g186,30:7613813,41204601 +h186,30:7613813,41204601:0,0,0 +g186,30:6630773,41204601 +(186,30:6630773,41204601:983040,485622,11795 +k186,30:7613813,41204601:574751 ) +g186,30:9313161,41204601 +g186,30:10163163,41204601 +g186,30:13087379,41204601 +g186,30:14512131,41204601 +k186,30:24823565,41204601:6415974 +k186,30:31239539,41204601:6415974 +(186,30:31239539,41204601:1343490,485622,11795 +k186,30:31766450,41204601:526911 ) -(186,29:22674869,38944945:501378,78643,0 -(186,29:22838723,38944945:173670,78643,0 +g186,30:31239539,41204601 +g186,30:32583029,41204601 ) +(186,31:6630773,42069681:25952256,513147,126483 +g186,31:9710963,42069681 +h186,31:9710963,42069681:983040,0,0 +h186,31:10694003,42069681:0,0,0 +g186,31:7613813,42069681 +(186,31:7613813,42069681:2097150,485622,11795 +k186,31:9710963,42069681:1126562 ) -(186,29:23176247,38944945:501378,78643,0 -(186,29:23340101,38944945:173670,78643,0 +g186,31:11549247,42069681 +g186,31:12407768,42069681 +g186,31:13810238,42069681 +g186,31:16427090,42069681 +g186,31:16427090,42069681 +(186,31:16658333,42069681:501378,78643,0 +$186,31:16658333,42069681 +(186,31:16822187,42069681:173670,78643,0 ) +$186,31:17159711,42069681 ) -(186,29:23677625,38944945:501378,78643,0 -(186,29:23841479,38944945:173670,78643,0 +(186,31:17159711,42069681:501378,78643,0 +(186,31:17323565,42069681:173670,78643,0 ) ) -(186,29:24179003,38944945:501378,78643,0 -(186,29:24342857,38944945:173670,78643,0 +(186,31:17661089,42069681:501378,78643,0 +(186,31:17824943,42069681:173670,78643,0 ) ) -(186,29:24680381,38944945:501378,78643,0 -(186,29:24844235,38944945:173670,78643,0 +(186,31:18162467,42069681:501378,78643,0 +(186,31:18326321,42069681:173670,78643,0 ) ) -(186,29:25181759,38944945:501378,78643,0 -(186,29:25345613,38944945:173670,78643,0 +(186,31:18663845,42069681:501378,78643,0 +(186,31:18827699,42069681:173670,78643,0 ) ) -(186,29:25683137,38944945:501378,78643,0 -(186,29:25846991,38944945:173670,78643,0 +(186,31:19165223,42069681:501378,78643,0 +(186,31:19329077,42069681:173670,78643,0 ) ) -(186,29:26184515,38944945:501378,78643,0 -(186,29:26348369,38944945:173670,78643,0 +(186,31:19666601,42069681:501378,78643,0 +(186,31:19830455,42069681:173670,78643,0 ) ) -(186,29:26685893,38944945:501378,78643,0 -(186,29:26849747,38944945:173670,78643,0 +(186,31:20167979,42069681:501378,78643,0 +(186,31:20331833,42069681:173670,78643,0 ) ) -(186,29:27187271,38944945:501378,78643,0 -(186,29:27351125,38944945:173670,78643,0 +(186,31:20669357,42069681:501378,78643,0 +(186,31:20833211,42069681:173670,78643,0 ) ) -(186,29:27688649,38944945:501378,78643,0 -(186,29:27852503,38944945:173670,78643,0 +(186,31:21170735,42069681:501378,78643,0 +(186,31:21334589,42069681:173670,78643,0 ) ) -(186,29:28190027,38944945:501378,78643,0 -(186,29:28353881,38944945:173670,78643,0 +(186,31:21672113,42069681:501378,78643,0 +(186,31:21835967,42069681:173670,78643,0 ) ) -(186,29:28691405,38944945:501378,78643,0 -(186,29:28855259,38944945:173670,78643,0 +(186,31:22173491,42069681:501378,78643,0 +(186,31:22337345,42069681:173670,78643,0 ) ) -(186,29:29192783,38944945:501378,78643,0 -(186,29:29356637,38944945:173670,78643,0 +(186,31:22674869,42069681:501378,78643,0 +(186,31:22838723,42069681:173670,78643,0 ) ) -(186,29:29694161,38944945:501378,78643,0 -(186,29:29858015,38944945:173670,78643,0 +(186,31:23176247,42069681:501378,78643,0 +(186,31:23340101,42069681:173670,78643,0 ) ) -(186,29:30195539,38944945:501378,78643,0 -(186,29:30359393,38944945:173670,78643,0 +(186,31:23677625,42069681:501378,78643,0 +(186,31:23841479,42069681:173670,78643,0 ) ) -(186,29:30696917,38944945:501378,78643,0 -(186,29:30860771,38944945:173670,78643,0 +(186,31:24179003,42069681:501378,78643,0 +(186,31:24342857,42069681:173670,78643,0 ) ) -(186,29:31239539,38944945:1343490,485622,0 -k186,29:31586882,38944945:347343 -g186,29:31786111,38944945 +(186,31:24680381,42069681:501378,78643,0 +(186,31:24844235,42069681:173670,78643,0 ) -g186,29:30911859,38944945 -g186,29:32583029,38944945 ) -(186,30:6630773,40441793:25952256,505283,11795 -g186,30:7613813,40441793 -h186,30:7613813,40441793:0,0,0 -g186,30:6630773,40441793 -(186,30:6630773,40441793:983040,485622,11795 -k186,30:7613813,40441793:574751 +(186,31:25181759,42069681:501378,78643,0 +(186,31:25345613,42069681:173670,78643,0 ) -g186,30:9313161,40441793 -g186,30:10163163,40441793 -g186,30:13087379,40441793 -g186,30:14512131,40441793 -k186,30:24823565,40441793:6415974 -k186,30:31239539,40441793:6415974 -(186,30:31239539,40441793:1343490,485622,11795 -k186,30:31766450,40441793:526911 ) -g186,30:31239539,40441793 -g186,30:32583029,40441793 +(186,31:25683137,42069681:501378,78643,0 +(186,31:25846991,42069681:173670,78643,0 ) -(186,31:6630773,41283281:25952256,513147,126483 -g186,31:9448823,41283281 -h186,31:9448823,41283281:983040,0,0 -h186,31:10431863,41283281:0,0,0 -g186,31:7613813,41283281 -(186,31:7613813,41283281:1835010,485622,11795 -k186,31:9448823,41283281:864422 ) -g186,31:11287107,41283281 -g186,31:12145628,41283281 -g186,31:13548098,41283281 -g186,31:16164950,41283281 -g186,31:16164950,41283281 -(186,31:16658333,41283281:501378,78643,0 -$186,31:16658333,41283281 -(186,31:16822187,41283281:173670,78643,0 +(186,31:26184515,42069681:501378,78643,0 +(186,31:26348369,42069681:173670,78643,0 ) -$186,31:17159711,41283281 ) -(186,31:17159711,41283281:501378,78643,0 -(186,31:17323565,41283281:173670,78643,0 +(186,31:26685893,42069681:501378,78643,0 +(186,31:26849747,42069681:173670,78643,0 ) ) -(186,31:17661089,41283281:501378,78643,0 -(186,31:17824943,41283281:173670,78643,0 +(186,31:27187271,42069681:501378,78643,0 +(186,31:27351125,42069681:173670,78643,0 ) ) -(186,31:18162467,41283281:501378,78643,0 -(186,31:18326321,41283281:173670,78643,0 +(186,31:27688649,42069681:501378,78643,0 +(186,31:27852503,42069681:173670,78643,0 ) ) -(186,31:18663845,41283281:501378,78643,0 -(186,31:18827699,41283281:173670,78643,0 +(186,31:28190027,42069681:501378,78643,0 +(186,31:28353881,42069681:173670,78643,0 ) ) -(186,31:19165223,41283281:501378,78643,0 -(186,31:19329077,41283281:173670,78643,0 +(186,31:28691405,42069681:501378,78643,0 +(186,31:28855259,42069681:173670,78643,0 ) ) -(186,31:19666601,41283281:501378,78643,0 -(186,31:19830455,41283281:173670,78643,0 +(186,31:29192783,42069681:501378,78643,0 +(186,31:29356637,42069681:173670,78643,0 ) ) -(186,31:20167979,41283281:501378,78643,0 -(186,31:20331833,41283281:173670,78643,0 +(186,31:29694161,42069681:501378,78643,0 +(186,31:29858015,42069681:173670,78643,0 ) ) -(186,31:20669357,41283281:501378,78643,0 -(186,31:20833211,41283281:173670,78643,0 +(186,31:30195539,42069681:501378,78643,0 +(186,31:30359393,42069681:173670,78643,0 ) ) -(186,31:21170735,41283281:501378,78643,0 -(186,31:21334589,41283281:173670,78643,0 +(186,31:30696917,42069681:501378,78643,0 +(186,31:30860771,42069681:173670,78643,0 ) ) -(186,31:21672113,41283281:501378,78643,0 -(186,31:21835967,41283281:173670,78643,0 +(186,31:31239539,42069681:1343490,485622,11795 +k186,31:31586882,42069681:347343 +g186,31:31786111,42069681 ) +g186,31:30911859,42069681 +g186,31:32583029,42069681 ) -(186,31:22173491,41283281:501378,78643,0 -(186,31:22337345,41283281:173670,78643,0 +(186,32:6630773,42934761:25952256,505283,134348 +g186,32:9710963,42934761 +h186,32:9710963,42934761:983040,0,0 +h186,32:10694003,42934761:0,0,0 +g186,32:7613813,42934761 +(186,32:7613813,42934761:2097150,485622,11795 +k186,32:9710963,42934761:1126562 ) +g186,32:12279319,42934761 +g186,32:13669993,42934761 +g186,32:16945482,42934761 +g186,32:20317309,42934761 +g186,32:20317309,42934761 +(186,32:20669357,42934761:501378,78643,0 +$186,32:20669357,42934761 +(186,32:20833211,42934761:173670,78643,0 ) -(186,31:22674869,41283281:501378,78643,0 -(186,31:22838723,41283281:173670,78643,0 +$186,32:21170735,42934761 ) +(186,32:21170735,42934761:501378,78643,0 +(186,32:21334589,42934761:173670,78643,0 ) -(186,31:23176247,41283281:501378,78643,0 -(186,31:23340101,41283281:173670,78643,0 ) +(186,32:21672113,42934761:501378,78643,0 +(186,32:21835967,42934761:173670,78643,0 ) -(186,31:23677625,41283281:501378,78643,0 -(186,31:23841479,41283281:173670,78643,0 ) +(186,32:22173491,42934761:501378,78643,0 +(186,32:22337345,42934761:173670,78643,0 ) -(186,31:24179003,41283281:501378,78643,0 -(186,31:24342857,41283281:173670,78643,0 ) +(186,32:22674869,42934761:501378,78643,0 +(186,32:22838723,42934761:173670,78643,0 ) -(186,31:24680381,41283281:501378,78643,0 -(186,31:24844235,41283281:173670,78643,0 ) +(186,32:23176247,42934761:501378,78643,0 +(186,32:23340101,42934761:173670,78643,0 ) -(186,31:25181759,41283281:501378,78643,0 -(186,31:25345613,41283281:173670,78643,0 ) +(186,32:23677625,42934761:501378,78643,0 +(186,32:23841479,42934761:173670,78643,0 ) -(186,31:25683137,41283281:501378,78643,0 -(186,31:25846991,41283281:173670,78643,0 ) +(186,32:24179003,42934761:501378,78643,0 +(186,32:24342857,42934761:173670,78643,0 ) -(186,31:26184515,41283281:501378,78643,0 -(186,31:26348369,41283281:173670,78643,0 ) +(186,32:24680381,42934761:501378,78643,0 +(186,32:24844235,42934761:173670,78643,0 ) -(186,31:26685893,41283281:501378,78643,0 -(186,31:26849747,41283281:173670,78643,0 ) +(186,32:25181759,42934761:501378,78643,0 +(186,32:25345613,42934761:173670,78643,0 ) -(186,31:27187271,41283281:501378,78643,0 -(186,31:27351125,41283281:173670,78643,0 ) +(186,32:25683137,42934761:501378,78643,0 +(186,32:25846991,42934761:173670,78643,0 ) -(186,31:27688649,41283281:501378,78643,0 -(186,31:27852503,41283281:173670,78643,0 ) +(186,32:26184515,42934761:501378,78643,0 +(186,32:26348369,42934761:173670,78643,0 ) -(186,31:28190027,41283281:501378,78643,0 -(186,31:28353881,41283281:173670,78643,0 ) +(186,32:26685893,42934761:501378,78643,0 +(186,32:26849747,42934761:173670,78643,0 ) -(186,31:28691405,41283281:501378,78643,0 -(186,31:28855259,41283281:173670,78643,0 ) +(186,32:27187271,42934761:501378,78643,0 +(186,32:27351125,42934761:173670,78643,0 ) -(186,31:29192783,41283281:501378,78643,0 -(186,31:29356637,41283281:173670,78643,0 ) +(186,32:27688649,42934761:501378,78643,0 +(186,32:27852503,42934761:173670,78643,0 ) -(186,31:29694161,41283281:501378,78643,0 -(186,31:29858015,41283281:173670,78643,0 ) +(186,32:28190027,42934761:501378,78643,0 +(186,32:28353881,42934761:173670,78643,0 ) -(186,31:30195539,41283281:501378,78643,0 -(186,31:30359393,41283281:173670,78643,0 ) +(186,32:28691405,42934761:501378,78643,0 +(186,32:28855259,42934761:173670,78643,0 ) -(186,31:30696917,41283281:501378,78643,0 -(186,31:30860771,41283281:173670,78643,0 ) +(186,32:29192783,42934761:501378,78643,0 +(186,32:29356637,42934761:173670,78643,0 ) -(186,31:31239539,41283281:1343490,485622,11795 -k186,31:31586882,41283281:347343 -g186,31:31786111,41283281 ) -g186,31:30911859,41283281 -g186,31:32583029,41283281 +(186,32:29694161,42934761:501378,78643,0 +(186,32:29858015,42934761:173670,78643,0 ) -(186,32:6630773,42124769:25952256,505283,134348 -g186,32:9448823,42124769 -h186,32:9448823,42124769:983040,0,0 -h186,32:10431863,42124769:0,0,0 -g186,32:7613813,42124769 -(186,32:7613813,42124769:1835010,485622,11795 -k186,32:9448823,42124769:864422 ) -g186,32:12017179,42124769 -g186,32:13407853,42124769 -g186,32:16683342,42124769 -g186,32:20055169,42124769 -g186,32:20055169,42124769 -(186,32:20167979,42124769:501378,78643,0 -$186,32:20167979,42124769 -(186,32:20331833,42124769:173670,78643,0 +(186,32:30195539,42934761:501378,78643,0 +(186,32:30359393,42934761:173670,78643,0 ) -$186,32:20669357,42124769 ) -(186,32:20669357,42124769:501378,78643,0 -(186,32:20833211,42124769:173670,78643,0 +(186,32:30696917,42934761:501378,78643,0 +(186,32:30860771,42934761:173670,78643,0 ) ) -(186,32:21170735,42124769:501378,78643,0 -(186,32:21334589,42124769:173670,78643,0 +(186,32:31239539,42934761:1343490,485622,0 +k186,32:31586882,42934761:347343 +g186,32:31786111,42934761 ) +g186,32:30911859,42934761 +g186,32:32583029,42934761 ) -(186,32:21672113,42124769:501378,78643,0 -(186,32:21835967,42124769:173670,78643,0 +(186,33:6630773,43799841:25952256,505283,11795 +g186,33:9710963,43799841 +h186,33:9710963,43799841:983040,0,0 +h186,33:10694003,43799841:0,0,0 +g186,33:7613813,43799841 +(186,33:7613813,43799841:2097150,485622,11795 +k186,33:9710963,43799841:1126562 ) +g186,33:12607654,43799841 +g186,33:14817528,43799841 +g186,33:16208202,43799841 +g186,33:19683576,43799841 +g186,33:19683576,43799841 +(186,33:20167979,43799841:501378,78643,0 +$186,33:20167979,43799841 +(186,33:20331833,43799841:173670,78643,0 ) -(186,32:22173491,42124769:501378,78643,0 -(186,32:22337345,42124769:173670,78643,0 +$186,33:20669357,43799841 ) +(186,33:20669357,43799841:501378,78643,0 +(186,33:20833211,43799841:173670,78643,0 ) -(186,32:22674869,42124769:501378,78643,0 -(186,32:22838723,42124769:173670,78643,0 ) +(186,33:21170735,43799841:501378,78643,0 +(186,33:21334589,43799841:173670,78643,0 ) -(186,32:23176247,42124769:501378,78643,0 -(186,32:23340101,42124769:173670,78643,0 ) +(186,33:21672113,43799841:501378,78643,0 +(186,33:21835967,43799841:173670,78643,0 ) -(186,32:23677625,42124769:501378,78643,0 -(186,32:23841479,42124769:173670,78643,0 ) +(186,33:22173491,43799841:501378,78643,0 +(186,33:22337345,43799841:173670,78643,0 ) -(186,32:24179003,42124769:501378,78643,0 -(186,32:24342857,42124769:173670,78643,0 ) +(186,33:22674869,43799841:501378,78643,0 +(186,33:22838723,43799841:173670,78643,0 ) -(186,32:24680381,42124769:501378,78643,0 -(186,32:24844235,42124769:173670,78643,0 ) +(186,33:23176247,43799841:501378,78643,0 +(186,33:23340101,43799841:173670,78643,0 ) -(186,32:25181759,42124769:501378,78643,0 -(186,32:25345613,42124769:173670,78643,0 ) +(186,33:23677625,43799841:501378,78643,0 +(186,33:23841479,43799841:173670,78643,0 ) -(186,32:25683137,42124769:501378,78643,0 -(186,32:25846991,42124769:173670,78643,0 ) +(186,33:24179003,43799841:501378,78643,0 +(186,33:24342857,43799841:173670,78643,0 ) -(186,32:26184515,42124769:501378,78643,0 -(186,32:26348369,42124769:173670,78643,0 ) +(186,33:24680381,43799841:501378,78643,0 +(186,33:24844235,43799841:173670,78643,0 ) -(186,32:26685893,42124769:501378,78643,0 -(186,32:26849747,42124769:173670,78643,0 ) +(186,33:25181759,43799841:501378,78643,0 +(186,33:25345613,43799841:173670,78643,0 ) -(186,32:27187271,42124769:501378,78643,0 -(186,32:27351125,42124769:173670,78643,0 ) +(186,33:25683137,43799841:501378,78643,0 +(186,33:25846991,43799841:173670,78643,0 ) -(186,32:27688649,42124769:501378,78643,0 -(186,32:27852503,42124769:173670,78643,0 ) +(186,33:26184515,43799841:501378,78643,0 +(186,33:26348369,43799841:173670,78643,0 ) -(186,32:28190027,42124769:501378,78643,0 -(186,32:28353881,42124769:173670,78643,0 ) +(186,33:26685893,43799841:501378,78643,0 +(186,33:26849747,43799841:173670,78643,0 ) -(186,32:28691405,42124769:501378,78643,0 -(186,32:28855259,42124769:173670,78643,0 ) +(186,33:27187271,43799841:501378,78643,0 +(186,33:27351125,43799841:173670,78643,0 ) -(186,32:29192783,42124769:501378,78643,0 -(186,32:29356637,42124769:173670,78643,0 ) +(186,33:27688649,43799841:501378,78643,0 +(186,33:27852503,43799841:173670,78643,0 ) -(186,32:29694161,42124769:501378,78643,0 -(186,32:29858015,42124769:173670,78643,0 ) +(186,33:28190027,43799841:501378,78643,0 +(186,33:28353881,43799841:173670,78643,0 ) -(186,32:30195539,42124769:501378,78643,0 -(186,32:30359393,42124769:173670,78643,0 ) +(186,33:28691405,43799841:501378,78643,0 +(186,33:28855259,43799841:173670,78643,0 ) -(186,32:30696917,42124769:501378,78643,0 -(186,32:30860771,42124769:173670,78643,0 ) +(186,33:29192783,43799841:501378,78643,0 +(186,33:29356637,43799841:173670,78643,0 ) -(186,32:31239539,42124769:1343490,485622,0 -k186,32:31586882,42124769:347343 -g186,32:31786111,42124769 ) -g186,32:30911859,42124769 -g186,32:32583029,42124769 +(186,33:29694161,43799841:501378,78643,0 +(186,33:29858015,43799841:173670,78643,0 ) -(186,33:6630773,42966257:25952256,505283,11795 -g186,33:9448823,42966257 -h186,33:9448823,42966257:983040,0,0 -h186,33:10431863,42966257:0,0,0 -g186,33:7613813,42966257 -(186,33:7613813,42966257:1835010,485622,11795 -k186,33:9448823,42966257:864422 ) -g186,33:12345514,42966257 -g186,33:14555388,42966257 -g186,33:15946062,42966257 -g186,33:19421436,42966257 -g186,33:19421436,42966257 -(186,33:19666601,42966257:501378,78643,0 -$186,33:19666601,42966257 -(186,33:19830455,42966257:173670,78643,0 +(186,33:30195539,43799841:501378,78643,0 +(186,33:30359393,43799841:173670,78643,0 ) -$186,33:20167979,42966257 ) -(186,33:20167979,42966257:501378,78643,0 -(186,33:20331833,42966257:173670,78643,0 +(186,33:30696917,43799841:501378,78643,0 +(186,33:30860771,43799841:173670,78643,0 ) ) -(186,33:20669357,42966257:501378,78643,0 -(186,33:20833211,42966257:173670,78643,0 +(186,33:31239539,43799841:1343490,485622,0 +k186,33:31586882,43799841:347343 +g186,33:31786111,43799841 ) +g186,33:30911859,43799841 +g186,33:32583029,43799841 ) -(186,33:21170735,42966257:501378,78643,0 -(186,33:21334589,42966257:173670,78643,0 +(186,34:6630773,44664921:25952256,505283,11795 +g186,34:9710963,44664921 +h186,34:9710963,44664921:983040,0,0 +h186,34:10694003,44664921:0,0,0 +g186,34:7613813,44664921 +(186,34:7613813,44664921:2097150,485622,11795 +k186,34:9710963,44664921:1126562 ) +g186,34:13006768,44664921 +g186,34:15216642,44664921 +g186,34:15216642,44664921 +(186,34:15655577,44664921:501378,78643,0 +$186,34:15655577,44664921 +(186,34:15819431,44664921:173670,78643,0 ) -(186,33:21672113,42966257:501378,78643,0 -(186,33:21835967,42966257:173670,78643,0 +$186,34:16156955,44664921 ) +(186,34:16156955,44664921:501378,78643,0 +(186,34:16320809,44664921:173670,78643,0 ) -(186,33:22173491,42966257:501378,78643,0 -(186,33:22337345,42966257:173670,78643,0 ) +(186,34:16658333,44664921:501378,78643,0 +(186,34:16822187,44664921:173670,78643,0 ) -(186,33:22674869,42966257:501378,78643,0 -(186,33:22838723,42966257:173670,78643,0 ) +(186,34:17159711,44664921:501378,78643,0 +(186,34:17323565,44664921:173670,78643,0 ) -(186,33:23176247,42966257:501378,78643,0 -(186,33:23340101,42966257:173670,78643,0 ) +(186,34:17661089,44664921:501378,78643,0 +(186,34:17824943,44664921:173670,78643,0 ) -(186,33:23677625,42966257:501378,78643,0 -(186,33:23841479,42966257:173670,78643,0 ) +(186,34:18162467,44664921:501378,78643,0 +(186,34:18326321,44664921:173670,78643,0 ) -(186,33:24179003,42966257:501378,78643,0 -(186,33:24342857,42966257:173670,78643,0 ) +(186,34:18663845,44664921:501378,78643,0 +(186,34:18827699,44664921:173670,78643,0 ) -(186,33:24680381,42966257:501378,78643,0 -(186,33:24844235,42966257:173670,78643,0 ) +(186,34:19165223,44664921:501378,78643,0 +(186,34:19329077,44664921:173670,78643,0 ) -(186,33:25181759,42966257:501378,78643,0 -(186,33:25345613,42966257:173670,78643,0 ) +(186,34:19666601,44664921:501378,78643,0 +(186,34:19830455,44664921:173670,78643,0 ) -(186,33:25683137,42966257:501378,78643,0 -(186,33:25846991,42966257:173670,78643,0 ) +(186,34:20167979,44664921:501378,78643,0 +(186,34:20331833,44664921:173670,78643,0 ) -(186,33:26184515,42966257:501378,78643,0 -(186,33:26348369,42966257:173670,78643,0 ) +(186,34:20669357,44664921:501378,78643,0 +(186,34:20833211,44664921:173670,78643,0 ) -(186,33:26685893,42966257:501378,78643,0 -(186,33:26849747,42966257:173670,78643,0 ) +(186,34:21170735,44664921:501378,78643,0 +(186,34:21334589,44664921:173670,78643,0 ) -(186,33:27187271,42966257:501378,78643,0 -(186,33:27351125,42966257:173670,78643,0 ) +(186,34:21672113,44664921:501378,78643,0 +(186,34:21835967,44664921:173670,78643,0 ) -(186,33:27688649,42966257:501378,78643,0 -(186,33:27852503,42966257:173670,78643,0 ) +(186,34:22173491,44664921:501378,78643,0 +(186,34:22337345,44664921:173670,78643,0 ) -(186,33:28190027,42966257:501378,78643,0 -(186,33:28353881,42966257:173670,78643,0 ) +(186,34:22674869,44664921:501378,78643,0 +(186,34:22838723,44664921:173670,78643,0 ) -(186,33:28691405,42966257:501378,78643,0 -(186,33:28855259,42966257:173670,78643,0 ) +(186,34:23176247,44664921:501378,78643,0 +(186,34:23340101,44664921:173670,78643,0 ) -(186,33:29192783,42966257:501378,78643,0 -(186,33:29356637,42966257:173670,78643,0 ) +(186,34:23677625,44664921:501378,78643,0 +(186,34:23841479,44664921:173670,78643,0 ) -(186,33:29694161,42966257:501378,78643,0 -(186,33:29858015,42966257:173670,78643,0 ) +(186,34:24179003,44664921:501378,78643,0 +(186,34:24342857,44664921:173670,78643,0 ) -(186,33:30195539,42966257:501378,78643,0 -(186,33:30359393,42966257:173670,78643,0 ) +(186,34:24680381,44664921:501378,78643,0 +(186,34:24844235,44664921:173670,78643,0 ) -(186,33:30696917,42966257:501378,78643,0 -(186,33:30860771,42966257:173670,78643,0 ) +(186,34:25181759,44664921:501378,78643,0 +(186,34:25345613,44664921:173670,78643,0 ) -(186,33:31239539,42966257:1343490,485622,0 -k186,33:31586882,42966257:347343 -g186,33:31786111,42966257 ) -g186,33:30911859,42966257 -g186,33:32583029,42966257 +(186,34:25683137,44664921:501378,78643,0 +(186,34:25846991,44664921:173670,78643,0 ) -(186,34:6630773,43807745:25952256,505283,11795 -g186,34:9448823,43807745 -h186,34:9448823,43807745:983040,0,0 -h186,34:10431863,43807745:0,0,0 -g186,34:7613813,43807745 -(186,34:7613813,43807745:1835010,485622,11795 -k186,34:9448823,43807745:864422 ) -g186,34:12744628,43807745 -g186,34:14954502,43807745 -g186,34:14954502,43807745 -(186,34:15154199,43807745:501378,78643,0 -$186,34:15154199,43807745 -(186,34:15318053,43807745:173670,78643,0 +(186,34:26184515,44664921:501378,78643,0 +(186,34:26348369,44664921:173670,78643,0 ) -$186,34:15655577,43807745 ) -(186,34:15655577,43807745:501378,78643,0 -(186,34:15819431,43807745:173670,78643,0 +(186,34:26685893,44664921:501378,78643,0 +(186,34:26849747,44664921:173670,78643,0 ) ) -(186,34:16156955,43807745:501378,78643,0 -(186,34:16320809,43807745:173670,78643,0 +(186,34:27187271,44664921:501378,78643,0 +(186,34:27351125,44664921:173670,78643,0 ) ) -(186,34:16658333,43807745:501378,78643,0 -(186,34:16822187,43807745:173670,78643,0 +(186,34:27688649,44664921:501378,78643,0 +(186,34:27852503,44664921:173670,78643,0 ) ) -(186,34:17159711,43807745:501378,78643,0 -(186,34:17323565,43807745:173670,78643,0 +(186,34:28190027,44664921:501378,78643,0 +(186,34:28353881,44664921:173670,78643,0 ) ) -(186,34:17661089,43807745:501378,78643,0 -(186,34:17824943,43807745:173670,78643,0 +(186,34:28691405,44664921:501378,78643,0 +(186,34:28855259,44664921:173670,78643,0 ) ) -(186,34:18162467,43807745:501378,78643,0 -(186,34:18326321,43807745:173670,78643,0 +(186,34:29192783,44664921:501378,78643,0 +(186,34:29356637,44664921:173670,78643,0 ) ) -(186,34:18663845,43807745:501378,78643,0 -(186,34:18827699,43807745:173670,78643,0 +(186,34:29694161,44664921:501378,78643,0 +(186,34:29858015,44664921:173670,78643,0 ) ) -(186,34:19165223,43807745:501378,78643,0 -(186,34:19329077,43807745:173670,78643,0 +(186,34:30195539,44664921:501378,78643,0 +(186,34:30359393,44664921:173670,78643,0 ) ) -(186,34:19666601,43807745:501378,78643,0 -(186,34:19830455,43807745:173670,78643,0 +(186,34:30696917,44664921:501378,78643,0 +(186,34:30860771,44664921:173670,78643,0 ) ) -(186,34:20167979,43807745:501378,78643,0 -(186,34:20331833,43807745:173670,78643,0 +(186,34:31239539,44664921:1343490,485622,11795 +k186,34:31586882,44664921:347343 +g186,34:31786111,44664921 ) +g186,34:30911859,44664921 +g186,34:32583029,44664921 ) -(186,34:20669357,43807745:501378,78643,0 -(186,34:20833211,43807745:173670,78643,0 +(186,35:6630773,45530001:25952256,505283,134348 +g186,35:9710963,45530001 +h186,35:9710963,45530001:983040,0,0 +h186,35:10694003,45530001:0,0,0 +g186,35:7613813,45530001 +(186,35:7613813,45530001:2097150,485622,11795 +k186,35:9710963,45530001:1126562 ) +g186,35:12139727,45530001 +g186,35:14349601,45530001 +g186,35:15740275,45530001 +g186,35:18450844,45530001 +g186,35:20977256,45530001 +g186,35:20977256,45530001 +(186,35:21170735,45530001:501378,78643,0 +$186,35:21170735,45530001 +(186,35:21334589,45530001:173670,78643,0 ) -(186,34:21170735,43807745:501378,78643,0 -(186,34:21334589,43807745:173670,78643,0 +$186,35:21672113,45530001 ) +(186,35:21672113,45530001:501378,78643,0 +(186,35:21835967,45530001:173670,78643,0 ) -(186,34:21672113,43807745:501378,78643,0 -(186,34:21835967,43807745:173670,78643,0 ) +(186,35:22173491,45530001:501378,78643,0 +(186,35:22337345,45530001:173670,78643,0 ) -(186,34:22173491,43807745:501378,78643,0 -(186,34:22337345,43807745:173670,78643,0 ) +(186,35:22674869,45530001:501378,78643,0 +(186,35:22838723,45530001:173670,78643,0 ) -(186,34:22674869,43807745:501378,78643,0 -(186,34:22838723,43807745:173670,78643,0 ) +(186,35:23176247,45530001:501378,78643,0 +(186,35:23340101,45530001:173670,78643,0 ) -(186,34:23176247,43807745:501378,78643,0 -(186,34:23340101,43807745:173670,78643,0 ) +(186,35:23677625,45530001:501378,78643,0 +(186,35:23841479,45530001:173670,78643,0 ) -(186,34:23677625,43807745:501378,78643,0 -(186,34:23841479,43807745:173670,78643,0 ) +(186,35:24179003,45530001:501378,78643,0 +(186,35:24342857,45530001:173670,78643,0 ) -(186,34:24179003,43807745:501378,78643,0 -(186,34:24342857,43807745:173670,78643,0 ) +(186,35:24680381,45530001:501378,78643,0 +(186,35:24844235,45530001:173670,78643,0 ) -(186,34:24680381,43807745:501378,78643,0 -(186,34:24844235,43807745:173670,78643,0 ) +(186,35:25181759,45530001:501378,78643,0 +(186,35:25345613,45530001:173670,78643,0 ) -(186,34:25181759,43807745:501378,78643,0 -(186,34:25345613,43807745:173670,78643,0 ) +(186,35:25683137,45530001:501378,78643,0 +(186,35:25846991,45530001:173670,78643,0 ) -(186,34:25683137,43807745:501378,78643,0 -(186,34:25846991,43807745:173670,78643,0 ) +(186,35:26184515,45530001:501378,78643,0 +(186,35:26348369,45530001:173670,78643,0 ) -(186,34:26184515,43807745:501378,78643,0 -(186,34:26348369,43807745:173670,78643,0 ) +(186,35:26685893,45530001:501378,78643,0 +(186,35:26849747,45530001:173670,78643,0 ) -(186,34:26685893,43807745:501378,78643,0 -(186,34:26849747,43807745:173670,78643,0 ) +(186,35:27187271,45530001:501378,78643,0 +(186,35:27351125,45530001:173670,78643,0 ) -(186,34:27187271,43807745:501378,78643,0 -(186,34:27351125,43807745:173670,78643,0 ) +(186,35:27688649,45530001:501378,78643,0 +(186,35:27852503,45530001:173670,78643,0 ) -(186,34:27688649,43807745:501378,78643,0 -(186,34:27852503,43807745:173670,78643,0 ) +(186,35:28190027,45530001:501378,78643,0 +(186,35:28353881,45530001:173670,78643,0 ) -(186,34:28190027,43807745:501378,78643,0 -(186,34:28353881,43807745:173670,78643,0 ) +(186,35:28691405,45530001:501378,78643,0 +(186,35:28855259,45530001:173670,78643,0 ) -(186,34:28691405,43807745:501378,78643,0 -(186,34:28855259,43807745:173670,78643,0 ) +(186,35:29192783,45530001:501378,78643,0 +(186,35:29356637,45530001:173670,78643,0 ) -(186,34:29192783,43807745:501378,78643,0 -(186,34:29356637,43807745:173670,78643,0 ) +(186,35:29694161,45530001:501378,78643,0 +(186,35:29858015,45530001:173670,78643,0 ) -(186,34:29694161,43807745:501378,78643,0 -(186,34:29858015,43807745:173670,78643,0 ) +(186,35:30195539,45530001:501378,78643,0 +(186,35:30359393,45530001:173670,78643,0 ) -(186,34:30195539,43807745:501378,78643,0 -(186,34:30359393,43807745:173670,78643,0 ) +(186,35:30696917,45530001:501378,78643,0 +(186,35:30860771,45530001:173670,78643,0 ) -(186,34:30696917,43807745:501378,78643,0 -(186,34:30860771,43807745:173670,78643,0 ) +(186,35:31239539,45530001:1343490,481690,0 +k186,35:31586882,45530001:347343 +g186,35:31786111,45530001 ) -(186,34:31239539,43807745:1343490,485622,11795 -k186,34:31586882,43807745:347343 -g186,34:31786111,43807745 +g186,35:30911859,45530001 +g186,35:32583029,45530001 ) -g186,34:30911859,43807745 -g186,34:32583029,43807745 +] +(186,37:32583029,45706769:0,0,0 +g186,37:32583029,45706769 ) -(186,35:6630773,44649233:25952256,505283,134348 -g186,35:9448823,44649233 -h186,35:9448823,44649233:983040,0,0 -h186,35:10431863,44649233:0,0,0 -g186,35:7613813,44649233 -(186,35:7613813,44649233:1835010,485622,11795 -k186,35:9448823,44649233:864422 ) -g186,35:11877587,44649233 -g186,35:14087461,44649233 -g186,35:15478135,44649233 -g186,35:18188704,44649233 -g186,35:20715116,44649233 -g186,35:20715116,44649233 -(186,35:21170735,44649233:501378,78643,0 -$186,35:21170735,44649233 -(186,35:21334589,44649233:173670,78643,0 +] +(186,37:6630773,47279633:25952256,347341,3931 +(186,37:6630773,47279633:25952256,347341,3931 +(186,37:6630773,47279633:0,0,0 +v186,37:6630773,47279633:0,0,0 ) -$186,35:21672113,44649233 +g186,37:6830002,47279633 +k186,37:32225858,47279633:25395856 ) -(186,35:21672113,44649233:501378,78643,0 -(186,35:21835967,44649233:173670,78643,0 ) +] +(186,37:4262630,4025873:0,0,0 +[186,37:-473656,4025873:0,0,0 +(186,37:-473656,-710413:0,0,0 +(186,37:-473656,-710413:0,0,0 +g186,37:-473656,-710413 ) -(186,35:22173491,44649233:501378,78643,0 -(186,35:22337345,44649233:173670,78643,0 +g186,37:-473656,-710413 ) +] ) -(186,35:22674869,44649233:501378,78643,0 -(186,35:22838723,44649233:173670,78643,0 +] +!84392 +}2 +!10 +{3 +[186,82:4262630,47279633:28320399,43253760,0 +(186,82:4262630,4025873:0,0,0 +[186,82:-473656,4025873:0,0,0 +(186,82:-473656,-710413:0,0,0 +(186,82:-473656,-644877:0,0,0 +k186,82:-473656,-644877:-65536 ) +(186,82:-473656,4736287:0,0,0 +k186,82:-473656,4736287:5209943 ) -(186,35:23176247,44649233:501378,78643,0 -(186,35:23340101,44649233:173670,78643,0 +g186,82:-473656,-710413 ) +] ) -(186,35:23677625,44649233:501378,78643,0 -(186,35:23841479,44649233:173670,78643,0 +[186,82:6630773,47279633:25952256,43253760,0 +[186,82:6630773,4812305:25952256,786432,0 +(186,82:6630773,4812305:25952256,485622,11795 +(186,82:6630773,4812305:25952256,485622,11795 +g186,82:3078558,4812305 +[186,82:3078558,4812305:0,0,0 +(186,82:3078558,2439708:0,1703936,0 +k186,82:1358238,2439708:-1720320 +(1,128:1358238,2439708:1720320,1703936,0 +(1,128:1358238,2439708:1179648,16384,0 +r186,82:2537886,2439708:1179648,16384,0 ) +g1,128:3062174,2439708 +(1,128:3062174,2439708:16384,1703936,0 +[1,128:3062174,2439708:25952256,1703936,0 +(1,128:3062174,1915420:25952256,1179648,0 +(1,128:3062174,1915420:16384,1179648,0 +r186,82:3078558,1915420:16384,1179648,0 ) -(186,35:24179003,44649233:501378,78643,0 -(186,35:24342857,44649233:173670,78643,0 +k1,128:29014430,1915420:25935872 +g1,128:29014430,1915420 ) +] ) -(186,35:24680381,44649233:501378,78643,0 -(186,35:24844235,44649233:173670,78643,0 ) ) -(186,35:25181759,44649233:501378,78643,0 -(186,35:25345613,44649233:173670,78643,0 +] +[186,82:3078558,4812305:0,0,0 +(186,82:3078558,2439708:0,1703936,0 +g186,82:29030814,2439708 +g186,82:36135244,2439708 +(1,128:36135244,2439708:1720320,1703936,0 +(1,128:36135244,2439708:16384,1703936,0 +[1,128:36135244,2439708:25952256,1703936,0 +(1,128:36135244,1915420:25952256,1179648,0 +(1,128:36135244,1915420:16384,1179648,0 +r186,82:36151628,1915420:16384,1179648,0 ) +k1,128:62087500,1915420:25935872 +g1,128:62087500,1915420 ) -(186,35:25683137,44649233:501378,78643,0 -(186,35:25846991,44649233:173670,78643,0 +] ) +g1,128:36675916,2439708 +(1,128:36675916,2439708:1179648,16384,0 +r186,82:37855564,2439708:1179648,16384,0 ) -(186,35:26184515,44649233:501378,78643,0 -(186,35:26348369,44649233:173670,78643,0 ) +k186,82:3078556,2439708:-34777008 ) -(186,35:26685893,44649233:501378,78643,0 -(186,35:26849747,44649233:173670,78643,0 +] +[186,82:3078558,4812305:0,0,0 +(186,82:3078558,49800853:0,16384,2228224 +k186,82:1358238,49800853:-1720320 +(1,128:1358238,49800853:1720320,16384,2228224 +(1,128:1358238,49800853:1179648,16384,0 +r186,82:2537886,49800853:1179648,16384,0 ) +g1,128:3062174,49800853 +(1,128:3062174,52029077:16384,1703936,0 +[1,128:3062174,52029077:25952256,1703936,0 +(1,128:3062174,51504789:25952256,1179648,0 +(1,128:3062174,51504789:16384,1179648,0 +r186,82:3078558,51504789:16384,1179648,0 ) -(186,35:27187271,44649233:501378,78643,0 -(186,35:27351125,44649233:173670,78643,0 +k1,128:29014430,51504789:25935872 +g1,128:29014430,51504789 ) +] ) -(186,35:27688649,44649233:501378,78643,0 -(186,35:27852503,44649233:173670,78643,0 ) ) -(186,35:28190027,44649233:501378,78643,0 -(186,35:28353881,44649233:173670,78643,0 +] +[186,82:3078558,4812305:0,0,0 +(186,82:3078558,49800853:0,16384,2228224 +g186,82:29030814,49800853 +g186,82:36135244,49800853 +(1,128:36135244,49800853:1720320,16384,2228224 +(1,128:36135244,52029077:16384,1703936,0 +[1,128:36135244,52029077:25952256,1703936,0 +(1,128:36135244,51504789:25952256,1179648,0 +(1,128:36135244,51504789:16384,1179648,0 +r186,82:36151628,51504789:16384,1179648,0 ) +k1,128:62087500,51504789:25935872 +g1,128:62087500,51504789 ) -(186,35:28691405,44649233:501378,78643,0 -(186,35:28855259,44649233:173670,78643,0 +] ) +g1,128:36675916,49800853 +(1,128:36675916,49800853:1179648,16384,0 +r186,82:37855564,49800853:1179648,16384,0 ) -(186,35:29192783,44649233:501378,78643,0 -(186,35:29356637,44649233:173670,78643,0 ) +k186,82:3078556,49800853:-34777008 ) -(186,35:29694161,44649233:501378,78643,0 -(186,35:29858015,44649233:173670,78643,0 +] +g186,82:6630773,4812305 +k186,82:29827896,4812305:22638756 ) ) -(186,35:30195539,44649233:501378,78643,0 -(186,35:30359393,44649233:173670,78643,0 +] +[186,82:6630773,45706769:25952256,40108032,0 +(186,82:6630773,45706769:25952256,40108032,0 +(186,82:6630773,45706769:0,0,0 +g186,82:6630773,45706769 ) +[186,82:6630773,45706769:25952256,40108032,0 +(186,36:6630773,6254097:25952256,505283,126483 +g186,36:9710963,6254097 +h186,36:9710963,6254097:983040,0,0 +h186,36:10694003,6254097:0,0,0 +g186,36:7613813,6254097 +(186,36:7613813,6254097:2097150,485622,11795 +k186,36:9710963,6254097:1126562 ) -(186,35:30696917,44649233:501378,78643,0 -(186,35:30860771,44649233:173670,78643,0 +g186,36:13785991,6254097 +g186,36:17062135,6254097 +g186,36:18452809,6254097 +g186,36:22056633,6254097 +g186,36:22056633,6254097 +(186,36:22173491,6254097:501378,78643,0 +$186,36:22173491,6254097 +(186,36:22337345,6254097:173670,78643,0 ) +$186,36:22674869,6254097 ) -(186,35:31239539,44649233:1343490,485622,11795 -k186,35:31586882,44649233:347343 -g186,35:31786111,44649233 +(186,36:22674869,6254097:501378,78643,0 +(186,36:22838723,6254097:173670,78643,0 ) -g186,35:30911859,44649233 -g186,35:32583029,44649233 ) -(186,36:6630773,45490721:25952256,505283,126483 -g186,36:9448823,45490721 -h186,36:9448823,45490721:983040,0,0 -h186,36:10431863,45490721:0,0,0 -g186,36:7613813,45490721 -(186,36:7613813,45490721:1835010,485622,11795 -k186,36:9448823,45490721:864422 +(186,36:23176247,6254097:501378,78643,0 +(186,36:23340101,6254097:173670,78643,0 ) -g186,36:13523851,45490721 -g186,36:16799995,45490721 -g186,36:18190669,45490721 -g186,36:21794493,45490721 -g186,36:21794493,45490721 -(186,36:22173491,45490721:501378,78643,0 -$186,36:22173491,45490721 -(186,36:22337345,45490721:173670,78643,0 ) -$186,36:22674869,45490721 +(186,36:23677625,6254097:501378,78643,0 +(186,36:23841479,6254097:173670,78643,0 ) -(186,36:22674869,45490721:501378,78643,0 -(186,36:22838723,45490721:173670,78643,0 ) +(186,36:24179003,6254097:501378,78643,0 +(186,36:24342857,6254097:173670,78643,0 ) -(186,36:23176247,45490721:501378,78643,0 -(186,36:23340101,45490721:173670,78643,0 ) +(186,36:24680381,6254097:501378,78643,0 +(186,36:24844235,6254097:173670,78643,0 ) -(186,36:23677625,45490721:501378,78643,0 -(186,36:23841479,45490721:173670,78643,0 ) +(186,36:25181759,6254097:501378,78643,0 +(186,36:25345613,6254097:173670,78643,0 ) -(186,36:24179003,45490721:501378,78643,0 -(186,36:24342857,45490721:173670,78643,0 ) +(186,36:25683137,6254097:501378,78643,0 +(186,36:25846991,6254097:173670,78643,0 ) -(186,36:24680381,45490721:501378,78643,0 -(186,36:24844235,45490721:173670,78643,0 ) +(186,36:26184515,6254097:501378,78643,0 +(186,36:26348369,6254097:173670,78643,0 ) -(186,36:25181759,45490721:501378,78643,0 -(186,36:25345613,45490721:173670,78643,0 ) +(186,36:26685893,6254097:501378,78643,0 +(186,36:26849747,6254097:173670,78643,0 ) -(186,36:25683137,45490721:501378,78643,0 -(186,36:25846991,45490721:173670,78643,0 ) +(186,36:27187271,6254097:501378,78643,0 +(186,36:27351125,6254097:173670,78643,0 ) -(186,36:26184515,45490721:501378,78643,0 -(186,36:26348369,45490721:173670,78643,0 ) +(186,36:27688649,6254097:501378,78643,0 +(186,36:27852503,6254097:173670,78643,0 ) -(186,36:26685893,45490721:501378,78643,0 -(186,36:26849747,45490721:173670,78643,0 ) +(186,36:28190027,6254097:501378,78643,0 +(186,36:28353881,6254097:173670,78643,0 ) -(186,36:27187271,45490721:501378,78643,0 -(186,36:27351125,45490721:173670,78643,0 ) +(186,36:28691405,6254097:501378,78643,0 +(186,36:28855259,6254097:173670,78643,0 ) -(186,36:27688649,45490721:501378,78643,0 -(186,36:27852503,45490721:173670,78643,0 ) +(186,36:29192783,6254097:501378,78643,0 +(186,36:29356637,6254097:173670,78643,0 ) -(186,36:28190027,45490721:501378,78643,0 -(186,36:28353881,45490721:173670,78643,0 ) +(186,36:29694161,6254097:501378,78643,0 +(186,36:29858015,6254097:173670,78643,0 ) -(186,36:28691405,45490721:501378,78643,0 -(186,36:28855259,45490721:173670,78643,0 ) +(186,36:30195539,6254097:501378,78643,0 +(186,36:30359393,6254097:173670,78643,0 ) -(186,36:29192783,45490721:501378,78643,0 -(186,36:29356637,45490721:173670,78643,0 ) +(186,36:30696917,6254097:501378,78643,0 +(186,36:30860771,6254097:173670,78643,0 ) -(186,36:29694161,45490721:501378,78643,0 -(186,36:29858015,45490721:173670,78643,0 ) +(186,36:31239539,6254097:1343490,485622,11795 +k186,36:31586882,6254097:347343 +g186,36:31786111,6254097 ) -(186,36:30195539,45490721:501378,78643,0 -(186,36:30359393,45490721:173670,78643,0 +g186,36:30911859,6254097 +g186,36:32583029,6254097 ) +(186,37:6630773,7119177:25952256,505283,126483 +g186,37:9710963,7119177 +h186,37:9710963,7119177:983040,0,0 +h186,37:10694003,7119177:0,0,0 +g186,37:7613813,7119177 +(186,37:7613813,7119177:2097150,485622,11795 +k186,37:9710963,7119177:1126562 ) -(186,36:30696917,45490721:501378,78643,0 -(186,36:30860771,45490721:173670,78643,0 +g186,37:11199941,7119177 +g186,37:12590615,7119177 +g186,37:13724387,7119177 +g186,37:17328211,7119177 +g186,37:17328211,7119177 +(186,37:17661089,7119177:501378,78643,0 +$186,37:17661089,7119177 +(186,37:17824943,7119177:173670,78643,0 ) +$186,37:18162467,7119177 ) -(186,36:31239539,45490721:1343490,485622,11795 -k186,36:31586882,45490721:347343 -g186,36:31786111,45490721 +(186,37:18162467,7119177:501378,78643,0 +(186,37:18326321,7119177:173670,78643,0 ) -g186,36:30911859,45490721 -g186,36:32583029,45490721 ) -] -(186,38:32583029,45706769:0,0,0 -g186,38:32583029,45706769 +(186,37:18663845,7119177:501378,78643,0 +(186,37:18827699,7119177:173670,78643,0 ) ) -] -(186,38:6630773,47279633:25952256,347341,3931 -(186,38:6630773,47279633:25952256,347341,3931 -(186,38:6630773,47279633:0,0,0 -v186,38:6630773,47279633:0,0,0 +(186,37:19165223,7119177:501378,78643,0 +(186,37:19329077,7119177:173670,78643,0 ) -g186,38:6830002,47279633 -k186,38:32225858,47279633:25395856 ) +(186,37:19666601,7119177:501378,78643,0 +(186,37:19830455,7119177:173670,78643,0 ) -] -(186,38:4262630,4025873:0,0,0 -[186,38:-473656,4025873:0,0,0 -(186,38:-473656,-710413:0,0,0 -(186,38:-473656,-710413:0,0,0 -g186,38:-473656,-710413 ) -g186,38:-473656,-710413 +(186,37:20167979,7119177:501378,78643,0 +(186,37:20331833,7119177:173670,78643,0 ) -] ) -] -!88396 -}2 -!10 -{3 -[186,85:4262630,47279633:28320399,43253760,0 -(186,85:4262630,4025873:0,0,0 -[186,85:-473656,4025873:0,0,0 -(186,85:-473656,-710413:0,0,0 -(186,85:-473656,-644877:0,0,0 -k186,85:-473656,-644877:-65536 +(186,37:20669357,7119177:501378,78643,0 +(186,37:20833211,7119177:173670,78643,0 ) -(186,85:-473656,4736287:0,0,0 -k186,85:-473656,4736287:5209943 ) -g186,85:-473656,-710413 +(186,37:21170735,7119177:501378,78643,0 +(186,37:21334589,7119177:173670,78643,0 ) -] ) -[186,85:6630773,47279633:25952256,43253760,0 -[186,85:6630773,4812305:25952256,786432,0 -(186,85:6630773,4812305:25952256,485622,11795 -(186,85:6630773,4812305:25952256,485622,11795 -g186,85:3078558,4812305 -[186,85:3078558,4812305:0,0,0 -(186,85:3078558,2439708:0,1703936,0 -k186,85:1358238,2439708:-1720320 -(1,135:1358238,2439708:1720320,1703936,0 -(1,135:1358238,2439708:1179648,16384,0 -r186,85:2537886,2439708:1179648,16384,0 +(186,37:21672113,7119177:501378,78643,0 +(186,37:21835967,7119177:173670,78643,0 ) -g1,135:3062174,2439708 -(1,135:3062174,2439708:16384,1703936,0 -[1,135:3062174,2439708:25952256,1703936,0 -(1,135:3062174,1915420:25952256,1179648,0 -(1,135:3062174,1915420:16384,1179648,0 -r186,85:3078558,1915420:16384,1179648,0 ) -k1,135:29014430,1915420:25935872 -g1,135:29014430,1915420 +(186,37:22173491,7119177:501378,78643,0 +(186,37:22337345,7119177:173670,78643,0 ) -] ) +(186,37:22674869,7119177:501378,78643,0 +(186,37:22838723,7119177:173670,78643,0 ) ) -] -[186,85:3078558,4812305:0,0,0 -(186,85:3078558,2439708:0,1703936,0 -g186,85:29030814,2439708 -g186,85:36135244,2439708 -(1,135:36135244,2439708:1720320,1703936,0 -(1,135:36135244,2439708:16384,1703936,0 -[1,135:36135244,2439708:25952256,1703936,0 -(1,135:36135244,1915420:25952256,1179648,0 -(1,135:36135244,1915420:16384,1179648,0 -r186,85:36151628,1915420:16384,1179648,0 +(186,37:23176247,7119177:501378,78643,0 +(186,37:23340101,7119177:173670,78643,0 ) -k1,135:62087500,1915420:25935872 -g1,135:62087500,1915420 ) -] +(186,37:23677625,7119177:501378,78643,0 +(186,37:23841479,7119177:173670,78643,0 ) -g1,135:36675916,2439708 -(1,135:36675916,2439708:1179648,16384,0 -r186,85:37855564,2439708:1179648,16384,0 ) +(186,37:24179003,7119177:501378,78643,0 +(186,37:24342857,7119177:173670,78643,0 ) -k186,85:3078556,2439708:-34777008 ) -] -[186,85:3078558,4812305:0,0,0 -(186,85:3078558,49800853:0,16384,2228224 -k186,85:1358238,49800853:-1720320 -(1,135:1358238,49800853:1720320,16384,2228224 -(1,135:1358238,49800853:1179648,16384,0 -r186,85:2537886,49800853:1179648,16384,0 +(186,37:24680381,7119177:501378,78643,0 +(186,37:24844235,7119177:173670,78643,0 ) -g1,135:3062174,49800853 -(1,135:3062174,52029077:16384,1703936,0 -[1,135:3062174,52029077:25952256,1703936,0 -(1,135:3062174,51504789:25952256,1179648,0 -(1,135:3062174,51504789:16384,1179648,0 -r186,85:3078558,51504789:16384,1179648,0 ) -k1,135:29014430,51504789:25935872 -g1,135:29014430,51504789 +(186,37:25181759,7119177:501378,78643,0 +(186,37:25345613,7119177:173670,78643,0 ) -] ) +(186,37:25683137,7119177:501378,78643,0 +(186,37:25846991,7119177:173670,78643,0 ) ) -] -[186,85:3078558,4812305:0,0,0 -(186,85:3078558,49800853:0,16384,2228224 -g186,85:29030814,49800853 -g186,85:36135244,49800853 -(1,135:36135244,49800853:1720320,16384,2228224 -(1,135:36135244,52029077:16384,1703936,0 -[1,135:36135244,52029077:25952256,1703936,0 -(1,135:36135244,51504789:25952256,1179648,0 -(1,135:36135244,51504789:16384,1179648,0 -r186,85:36151628,51504789:16384,1179648,0 +(186,37:26184515,7119177:501378,78643,0 +(186,37:26348369,7119177:173670,78643,0 ) -k1,135:62087500,51504789:25935872 -g1,135:62087500,51504789 ) -] +(186,37:26685893,7119177:501378,78643,0 +(186,37:26849747,7119177:173670,78643,0 ) -g1,135:36675916,49800853 -(1,135:36675916,49800853:1179648,16384,0 -r186,85:37855564,49800853:1179648,16384,0 ) +(186,37:27187271,7119177:501378,78643,0 +(186,37:27351125,7119177:173670,78643,0 ) -k186,85:3078556,49800853:-34777008 ) -] -g186,85:6630773,4812305 -k186,85:29827896,4812305:22638756 +(186,37:27688649,7119177:501378,78643,0 +(186,37:27852503,7119177:173670,78643,0 ) ) -] -[186,85:6630773,45706769:25952256,40108032,0 -(186,85:6630773,45706769:25952256,40108032,0 -(186,85:6630773,45706769:0,0,0 -g186,85:6630773,45706769 +(186,37:28190027,7119177:501378,78643,0 +(186,37:28353881,7119177:173670,78643,0 ) -[186,85:6630773,45706769:25952256,40108032,0 -(186,37:6630773,6254097:25952256,505283,126483 -g186,37:9448823,6254097 -h186,37:9448823,6254097:983040,0,0 -h186,37:10431863,6254097:0,0,0 -g186,37:7613813,6254097 -(186,37:7613813,6254097:1835010,485622,11795 -k186,37:9448823,6254097:864422 ) -g186,37:10937801,6254097 -g186,37:12328475,6254097 -g186,37:13462247,6254097 -g186,37:17066071,6254097 -g186,37:17066071,6254097 -(186,37:17159711,6254097:501378,78643,0 -$186,37:17159711,6254097 -(186,37:17323565,6254097:173670,78643,0 +(186,37:28691405,7119177:501378,78643,0 +(186,37:28855259,7119177:173670,78643,0 ) -$186,37:17661089,6254097 ) -(186,37:17661089,6254097:501378,78643,0 -(186,37:17824943,6254097:173670,78643,0 +(186,37:29192783,7119177:501378,78643,0 +(186,37:29356637,7119177:173670,78643,0 ) ) -(186,37:18162467,6254097:501378,78643,0 -(186,37:18326321,6254097:173670,78643,0 +(186,37:29694161,7119177:501378,78643,0 +(186,37:29858015,7119177:173670,78643,0 ) ) -(186,37:18663845,6254097:501378,78643,0 -(186,37:18827699,6254097:173670,78643,0 +(186,37:30195539,7119177:501378,78643,0 +(186,37:30359393,7119177:173670,78643,0 ) ) -(186,37:19165223,6254097:501378,78643,0 -(186,37:19329077,6254097:173670,78643,0 +(186,37:30696917,7119177:501378,78643,0 +(186,37:30860771,7119177:173670,78643,0 ) ) -(186,37:19666601,6254097:501378,78643,0 -(186,37:19830455,6254097:173670,78643,0 +(186,37:31239539,7119177:1343490,485622,11795 +k186,37:31586882,7119177:347343 +g186,37:31786111,7119177 ) +g186,37:30911859,7119177 +g186,37:32583029,7119177 ) -(186,37:20167979,6254097:501378,78643,0 -(186,37:20331833,6254097:173670,78643,0 +(186,38:6630773,7984257:25952256,513147,134348 +g186,38:9710963,7984257 +h186,38:9710963,7984257:983040,0,0 +h186,38:10694003,7984257:0,0,0 +g186,38:7613813,7984257 +(186,38:7613813,7984257:2097150,485622,11795 +k186,38:9710963,7984257:1126562 ) +g186,38:11106879,7984257 +g186,38:13436028,7984257 +g186,38:14826702,7984257 +g186,38:16928441,7984257 +g186,38:17786962,7984257 +g186,38:20276019,7984257 +g186,38:20276019,7984257 +(186,38:20669357,7984257:501378,78643,0 +$186,38:20669357,7984257 +(186,38:20833211,7984257:173670,78643,0 ) -(186,37:20669357,6254097:501378,78643,0 -(186,37:20833211,6254097:173670,78643,0 +$186,38:21170735,7984257 ) +(186,38:21170735,7984257:501378,78643,0 +(186,38:21334589,7984257:173670,78643,0 ) -(186,37:21170735,6254097:501378,78643,0 -(186,37:21334589,6254097:173670,78643,0 ) +(186,38:21672113,7984257:501378,78643,0 +(186,38:21835967,7984257:173670,78643,0 ) -(186,37:21672113,6254097:501378,78643,0 -(186,37:21835967,6254097:173670,78643,0 ) +(186,38:22173491,7984257:501378,78643,0 +(186,38:22337345,7984257:173670,78643,0 ) -(186,37:22173491,6254097:501378,78643,0 -(186,37:22337345,6254097:173670,78643,0 ) +(186,38:22674869,7984257:501378,78643,0 +(186,38:22838723,7984257:173670,78643,0 ) -(186,37:22674869,6254097:501378,78643,0 -(186,37:22838723,6254097:173670,78643,0 ) +(186,38:23176247,7984257:501378,78643,0 +(186,38:23340101,7984257:173670,78643,0 ) -(186,37:23176247,6254097:501378,78643,0 -(186,37:23340101,6254097:173670,78643,0 ) +(186,38:23677625,7984257:501378,78643,0 +(186,38:23841479,7984257:173670,78643,0 ) -(186,37:23677625,6254097:501378,78643,0 -(186,37:23841479,6254097:173670,78643,0 ) +(186,38:24179003,7984257:501378,78643,0 +(186,38:24342857,7984257:173670,78643,0 ) -(186,37:24179003,6254097:501378,78643,0 -(186,37:24342857,6254097:173670,78643,0 ) +(186,38:24680381,7984257:501378,78643,0 +(186,38:24844235,7984257:173670,78643,0 ) -(186,37:24680381,6254097:501378,78643,0 -(186,37:24844235,6254097:173670,78643,0 ) +(186,38:25181759,7984257:501378,78643,0 +(186,38:25345613,7984257:173670,78643,0 ) -(186,37:25181759,6254097:501378,78643,0 -(186,37:25345613,6254097:173670,78643,0 ) +(186,38:25683137,7984257:501378,78643,0 +(186,38:25846991,7984257:173670,78643,0 ) -(186,37:25683137,6254097:501378,78643,0 -(186,37:25846991,6254097:173670,78643,0 ) +(186,38:26184515,7984257:501378,78643,0 +(186,38:26348369,7984257:173670,78643,0 ) -(186,37:26184515,6254097:501378,78643,0 -(186,37:26348369,6254097:173670,78643,0 ) +(186,38:26685893,7984257:501378,78643,0 +(186,38:26849747,7984257:173670,78643,0 ) -(186,37:26685893,6254097:501378,78643,0 -(186,37:26849747,6254097:173670,78643,0 ) +(186,38:27187271,7984257:501378,78643,0 +(186,38:27351125,7984257:173670,78643,0 ) -(186,37:27187271,6254097:501378,78643,0 -(186,37:27351125,6254097:173670,78643,0 ) +(186,38:27688649,7984257:501378,78643,0 +(186,38:27852503,7984257:173670,78643,0 ) -(186,37:27688649,6254097:501378,78643,0 -(186,37:27852503,6254097:173670,78643,0 ) +(186,38:28190027,7984257:501378,78643,0 +(186,38:28353881,7984257:173670,78643,0 ) -(186,37:28190027,6254097:501378,78643,0 -(186,37:28353881,6254097:173670,78643,0 ) +(186,38:28691405,7984257:501378,78643,0 +(186,38:28855259,7984257:173670,78643,0 ) -(186,37:28691405,6254097:501378,78643,0 -(186,37:28855259,6254097:173670,78643,0 ) +(186,38:29192783,7984257:501378,78643,0 +(186,38:29356637,7984257:173670,78643,0 ) -(186,37:29192783,6254097:501378,78643,0 -(186,37:29356637,6254097:173670,78643,0 ) +(186,38:29694161,7984257:501378,78643,0 +(186,38:29858015,7984257:173670,78643,0 ) -(186,37:29694161,6254097:501378,78643,0 -(186,37:29858015,6254097:173670,78643,0 ) +(186,38:30195539,7984257:501378,78643,0 +(186,38:30359393,7984257:173670,78643,0 ) -(186,37:30195539,6254097:501378,78643,0 -(186,37:30359393,6254097:173670,78643,0 ) +(186,38:30696917,7984257:501378,78643,0 +(186,38:30860771,7984257:173670,78643,0 ) -(186,37:30696917,6254097:501378,78643,0 -(186,37:30860771,6254097:173670,78643,0 ) +(186,38:31239539,7984257:1343490,473825,11795 +k186,38:31586882,7984257:347343 +g186,38:31786111,7984257 ) -(186,37:31239539,6254097:1343490,473825,11795 -k186,37:31586882,6254097:347343 -g186,37:31786111,6254097 +g186,38:30911859,7984257 +g186,38:32583029,7984257 ) -g186,37:30911859,6254097 -g186,37:32583029,6254097 +(186,39:6630773,8849337:25952256,505283,126483 +g186,39:9710963,8849337 +h186,39:9710963,8849337:983040,0,0 +h186,39:10694003,8849337:0,0,0 +g186,39:7613813,8849337 +(186,39:7613813,8849337:2097150,485622,11795 +k186,39:9710963,8849337:1126562 ) -(186,38:6630773,7095585:25952256,513147,134348 -g186,38:9448823,7095585 -h186,38:9448823,7095585:983040,0,0 -h186,38:10431863,7095585:0,0,0 -g186,38:7613813,7095585 -(186,38:7613813,7095585:1835010,485622,11795 -k186,38:9448823,7095585:864422 +g186,39:11821222,8849337 +g186,39:15827437,8849337 +g186,39:15827437,8849337 +(186,39:16156955,8849337:501378,78643,0 +$186,39:16156955,8849337 +(186,39:16320809,8849337:173670,78643,0 ) -g186,38:10844739,7095585 -g186,38:13173888,7095585 -g186,38:14564562,7095585 -g186,38:16666301,7095585 -g186,38:17524822,7095585 -g186,38:20013879,7095585 -g186,38:20013879,7095585 -(186,38:20167979,7095585:501378,78643,0 -$186,38:20167979,7095585 -(186,38:20331833,7095585:173670,78643,0 +$186,39:16658333,8849337 ) -$186,38:20669357,7095585 +(186,39:16658333,8849337:501378,78643,0 +(186,39:16822187,8849337:173670,78643,0 ) -(186,38:20669357,7095585:501378,78643,0 -(186,38:20833211,7095585:173670,78643,0 ) +(186,39:17159711,8849337:501378,78643,0 +(186,39:17323565,8849337:173670,78643,0 ) -(186,38:21170735,7095585:501378,78643,0 -(186,38:21334589,7095585:173670,78643,0 ) +(186,39:17661089,8849337:501378,78643,0 +(186,39:17824943,8849337:173670,78643,0 ) -(186,38:21672113,7095585:501378,78643,0 -(186,38:21835967,7095585:173670,78643,0 ) +(186,39:18162467,8849337:501378,78643,0 +(186,39:18326321,8849337:173670,78643,0 ) -(186,38:22173491,7095585:501378,78643,0 -(186,38:22337345,7095585:173670,78643,0 ) +(186,39:18663845,8849337:501378,78643,0 +(186,39:18827699,8849337:173670,78643,0 ) -(186,38:22674869,7095585:501378,78643,0 -(186,38:22838723,7095585:173670,78643,0 ) +(186,39:19165223,8849337:501378,78643,0 +(186,39:19329077,8849337:173670,78643,0 ) -(186,38:23176247,7095585:501378,78643,0 -(186,38:23340101,7095585:173670,78643,0 ) +(186,39:19666601,8849337:501378,78643,0 +(186,39:19830455,8849337:173670,78643,0 ) -(186,38:23677625,7095585:501378,78643,0 -(186,38:23841479,7095585:173670,78643,0 ) +(186,39:20167979,8849337:501378,78643,0 +(186,39:20331833,8849337:173670,78643,0 ) -(186,38:24179003,7095585:501378,78643,0 -(186,38:24342857,7095585:173670,78643,0 ) +(186,39:20669357,8849337:501378,78643,0 +(186,39:20833211,8849337:173670,78643,0 ) -(186,38:24680381,7095585:501378,78643,0 -(186,38:24844235,7095585:173670,78643,0 ) +(186,39:21170735,8849337:501378,78643,0 +(186,39:21334589,8849337:173670,78643,0 ) -(186,38:25181759,7095585:501378,78643,0 -(186,38:25345613,7095585:173670,78643,0 ) +(186,39:21672113,8849337:501378,78643,0 +(186,39:21835967,8849337:173670,78643,0 ) -(186,38:25683137,7095585:501378,78643,0 -(186,38:25846991,7095585:173670,78643,0 ) +(186,39:22173491,8849337:501378,78643,0 +(186,39:22337345,8849337:173670,78643,0 ) -(186,38:26184515,7095585:501378,78643,0 -(186,38:26348369,7095585:173670,78643,0 ) +(186,39:22674869,8849337:501378,78643,0 +(186,39:22838723,8849337:173670,78643,0 ) -(186,38:26685893,7095585:501378,78643,0 -(186,38:26849747,7095585:173670,78643,0 ) +(186,39:23176247,8849337:501378,78643,0 +(186,39:23340101,8849337:173670,78643,0 ) -(186,38:27187271,7095585:501378,78643,0 -(186,38:27351125,7095585:173670,78643,0 ) +(186,39:23677625,8849337:501378,78643,0 +(186,39:23841479,8849337:173670,78643,0 ) -(186,38:27688649,7095585:501378,78643,0 -(186,38:27852503,7095585:173670,78643,0 ) +(186,39:24179003,8849337:501378,78643,0 +(186,39:24342857,8849337:173670,78643,0 ) -(186,38:28190027,7095585:501378,78643,0 -(186,38:28353881,7095585:173670,78643,0 ) +(186,39:24680381,8849337:501378,78643,0 +(186,39:24844235,8849337:173670,78643,0 ) -(186,38:28691405,7095585:501378,78643,0 -(186,38:28855259,7095585:173670,78643,0 ) +(186,39:25181759,8849337:501378,78643,0 +(186,39:25345613,8849337:173670,78643,0 ) -(186,38:29192783,7095585:501378,78643,0 -(186,38:29356637,7095585:173670,78643,0 ) +(186,39:25683137,8849337:501378,78643,0 +(186,39:25846991,8849337:173670,78643,0 ) -(186,38:29694161,7095585:501378,78643,0 -(186,38:29858015,7095585:173670,78643,0 ) +(186,39:26184515,8849337:501378,78643,0 +(186,39:26348369,8849337:173670,78643,0 ) -(186,38:30195539,7095585:501378,78643,0 -(186,38:30359393,7095585:173670,78643,0 ) +(186,39:26685893,8849337:501378,78643,0 +(186,39:26849747,8849337:173670,78643,0 ) -(186,38:30696917,7095585:501378,78643,0 -(186,38:30860771,7095585:173670,78643,0 ) +(186,39:27187271,8849337:501378,78643,0 +(186,39:27351125,8849337:173670,78643,0 ) -(186,38:31239539,7095585:1343490,485622,11795 -k186,38:31586882,7095585:347343 -g186,38:31786111,7095585 ) -g186,38:30911859,7095585 -g186,38:32583029,7095585 +(186,39:27688649,8849337:501378,78643,0 +(186,39:27852503,8849337:173670,78643,0 ) -(186,39:6630773,7937073:25952256,505283,126483 -g186,39:9448823,7937073 -h186,39:9448823,7937073:983040,0,0 -h186,39:10431863,7937073:0,0,0 -g186,39:7613813,7937073 -(186,39:7613813,7937073:1835010,485622,11795 -k186,39:9448823,7937073:864422 ) -g186,39:11559082,7937073 -g186,39:15565297,7937073 -g186,39:15565297,7937073 -(186,39:15655577,7937073:501378,78643,0 -$186,39:15655577,7937073 -(186,39:15819431,7937073:173670,78643,0 +(186,39:28190027,8849337:501378,78643,0 +(186,39:28353881,8849337:173670,78643,0 ) -$186,39:16156955,7937073 ) -(186,39:16156955,7937073:501378,78643,0 -(186,39:16320809,7937073:173670,78643,0 +(186,39:28691405,8849337:501378,78643,0 +(186,39:28855259,8849337:173670,78643,0 ) ) -(186,39:16658333,7937073:501378,78643,0 -(186,39:16822187,7937073:173670,78643,0 +(186,39:29192783,8849337:501378,78643,0 +(186,39:29356637,8849337:173670,78643,0 ) ) -(186,39:17159711,7937073:501378,78643,0 -(186,39:17323565,7937073:173670,78643,0 +(186,39:29694161,8849337:501378,78643,0 +(186,39:29858015,8849337:173670,78643,0 ) ) -(186,39:17661089,7937073:501378,78643,0 -(186,39:17824943,7937073:173670,78643,0 +(186,39:30195539,8849337:501378,78643,0 +(186,39:30359393,8849337:173670,78643,0 ) ) -(186,39:18162467,7937073:501378,78643,0 -(186,39:18326321,7937073:173670,78643,0 +(186,39:30696917,8849337:501378,78643,0 +(186,39:30860771,8849337:173670,78643,0 ) ) -(186,39:18663845,7937073:501378,78643,0 -(186,39:18827699,7937073:173670,78643,0 +(186,39:31239539,8849337:1343490,485622,11795 +k186,39:31586882,8849337:347343 +g186,39:31786111,8849337 ) +g186,39:30911859,8849337 +g186,39:32583029,8849337 ) -(186,39:19165223,7937073:501378,78643,0 -(186,39:19329077,7937073:173670,78643,0 +(186,40:6630773,9714417:25952256,505283,126483 +g186,40:9710963,9714417 +h186,40:9710963,9714417:983040,0,0 +h186,40:10694003,9714417:0,0,0 +g186,40:7613813,9714417 +(186,40:7613813,9714417:2097150,485622,11795 +k186,40:9710963,9714417:728103 ) +g186,40:11988994,9714417 +g186,40:16444131,9714417 +g186,40:16444131,9714417 +(186,40:16658333,9714417:501378,78643,0 +$186,40:16658333,9714417 +(186,40:16822187,9714417:173670,78643,0 ) -(186,39:19666601,7937073:501378,78643,0 -(186,39:19830455,7937073:173670,78643,0 +$186,40:17159711,9714417 ) +(186,40:17159711,9714417:501378,78643,0 +(186,40:17323565,9714417:173670,78643,0 ) -(186,39:20167979,7937073:501378,78643,0 -(186,39:20331833,7937073:173670,78643,0 ) +(186,40:17661089,9714417:501378,78643,0 +(186,40:17824943,9714417:173670,78643,0 ) -(186,39:20669357,7937073:501378,78643,0 -(186,39:20833211,7937073:173670,78643,0 ) +(186,40:18162467,9714417:501378,78643,0 +(186,40:18326321,9714417:173670,78643,0 ) -(186,39:21170735,7937073:501378,78643,0 -(186,39:21334589,7937073:173670,78643,0 ) +(186,40:18663845,9714417:501378,78643,0 +(186,40:18827699,9714417:173670,78643,0 ) -(186,39:21672113,7937073:501378,78643,0 -(186,39:21835967,7937073:173670,78643,0 ) +(186,40:19165223,9714417:501378,78643,0 +(186,40:19329077,9714417:173670,78643,0 ) -(186,39:22173491,7937073:501378,78643,0 -(186,39:22337345,7937073:173670,78643,0 ) +(186,40:19666601,9714417:501378,78643,0 +(186,40:19830455,9714417:173670,78643,0 ) -(186,39:22674869,7937073:501378,78643,0 -(186,39:22838723,7937073:173670,78643,0 ) +(186,40:20167979,9714417:501378,78643,0 +(186,40:20331833,9714417:173670,78643,0 ) -(186,39:23176247,7937073:501378,78643,0 -(186,39:23340101,7937073:173670,78643,0 ) +(186,40:20669357,9714417:501378,78643,0 +(186,40:20833211,9714417:173670,78643,0 ) -(186,39:23677625,7937073:501378,78643,0 -(186,39:23841479,7937073:173670,78643,0 ) +(186,40:21170735,9714417:501378,78643,0 +(186,40:21334589,9714417:173670,78643,0 ) -(186,39:24179003,7937073:501378,78643,0 -(186,39:24342857,7937073:173670,78643,0 ) +(186,40:21672113,9714417:501378,78643,0 +(186,40:21835967,9714417:173670,78643,0 ) -(186,39:24680381,7937073:501378,78643,0 -(186,39:24844235,7937073:173670,78643,0 ) +(186,40:22173491,9714417:501378,78643,0 +(186,40:22337345,9714417:173670,78643,0 ) -(186,39:25181759,7937073:501378,78643,0 -(186,39:25345613,7937073:173670,78643,0 ) +(186,40:22674869,9714417:501378,78643,0 +(186,40:22838723,9714417:173670,78643,0 ) -(186,39:25683137,7937073:501378,78643,0 -(186,39:25846991,7937073:173670,78643,0 ) +(186,40:23176247,9714417:501378,78643,0 +(186,40:23340101,9714417:173670,78643,0 ) -(186,39:26184515,7937073:501378,78643,0 -(186,39:26348369,7937073:173670,78643,0 ) +(186,40:23677625,9714417:501378,78643,0 +(186,40:23841479,9714417:173670,78643,0 ) -(186,39:26685893,7937073:501378,78643,0 -(186,39:26849747,7937073:173670,78643,0 ) +(186,40:24179003,9714417:501378,78643,0 +(186,40:24342857,9714417:173670,78643,0 ) -(186,39:27187271,7937073:501378,78643,0 -(186,39:27351125,7937073:173670,78643,0 ) +(186,40:24680381,9714417:501378,78643,0 +(186,40:24844235,9714417:173670,78643,0 ) -(186,39:27688649,7937073:501378,78643,0 -(186,39:27852503,7937073:173670,78643,0 ) +(186,40:25181759,9714417:501378,78643,0 +(186,40:25345613,9714417:173670,78643,0 ) -(186,39:28190027,7937073:501378,78643,0 -(186,39:28353881,7937073:173670,78643,0 ) +(186,40:25683137,9714417:501378,78643,0 +(186,40:25846991,9714417:173670,78643,0 ) -(186,39:28691405,7937073:501378,78643,0 -(186,39:28855259,7937073:173670,78643,0 ) +(186,40:26184515,9714417:501378,78643,0 +(186,40:26348369,9714417:173670,78643,0 ) -(186,39:29192783,7937073:501378,78643,0 -(186,39:29356637,7937073:173670,78643,0 ) +(186,40:26685893,9714417:501378,78643,0 +(186,40:26849747,9714417:173670,78643,0 ) -(186,39:29694161,7937073:501378,78643,0 -(186,39:29858015,7937073:173670,78643,0 ) +(186,40:27187271,9714417:501378,78643,0 +(186,40:27351125,9714417:173670,78643,0 ) -(186,39:30195539,7937073:501378,78643,0 -(186,39:30359393,7937073:173670,78643,0 ) +(186,40:27688649,9714417:501378,78643,0 +(186,40:27852503,9714417:173670,78643,0 ) -(186,39:30696917,7937073:501378,78643,0 -(186,39:30860771,7937073:173670,78643,0 ) +(186,40:28190027,9714417:501378,78643,0 +(186,40:28353881,9714417:173670,78643,0 ) -(186,39:31239539,7937073:1343490,485622,11795 -k186,39:31586882,7937073:347343 -g186,39:31786111,7937073 ) -g186,39:30911859,7937073 -g186,39:32583029,7937073 +(186,40:28691405,9714417:501378,78643,0 +(186,40:28855259,9714417:173670,78643,0 ) -(186,40:6630773,8778561:25952256,505283,126483 -g186,40:9448823,8778561 -h186,40:9448823,8778561:983040,0,0 -h186,40:10431863,8778561:0,0,0 -g186,40:7613813,8778561 -(186,40:7613813,8778561:1835010,485622,11795 -k186,40:9448823,8778561:465963 ) -g186,40:11726854,8778561 -g186,40:16181991,8778561 -g186,40:16181991,8778561 -(186,40:16658333,8778561:501378,78643,0 -$186,40:16658333,8778561 -(186,40:16822187,8778561:173670,78643,0 +(186,40:29192783,9714417:501378,78643,0 +(186,40:29356637,9714417:173670,78643,0 ) -$186,40:17159711,8778561 ) -(186,40:17159711,8778561:501378,78643,0 -(186,40:17323565,8778561:173670,78643,0 +(186,40:29694161,9714417:501378,78643,0 +(186,40:29858015,9714417:173670,78643,0 ) ) -(186,40:17661089,8778561:501378,78643,0 -(186,40:17824943,8778561:173670,78643,0 +(186,40:30195539,9714417:501378,78643,0 +(186,40:30359393,9714417:173670,78643,0 ) ) -(186,40:18162467,8778561:501378,78643,0 -(186,40:18326321,8778561:173670,78643,0 +(186,40:30696917,9714417:501378,78643,0 +(186,40:30860771,9714417:173670,78643,0 ) ) -(186,40:18663845,8778561:501378,78643,0 -(186,40:18827699,8778561:173670,78643,0 +(186,40:31239539,9714417:1343490,485622,11795 +k186,40:31586882,9714417:347343 +g186,40:31786111,9714417 ) +g186,40:30911859,9714417 +g186,40:32583029,9714417 ) -(186,40:19165223,8778561:501378,78643,0 -(186,40:19329077,8778561:173670,78643,0 +(186,41:6630773,10579497:25952256,505283,126483 +g186,41:9710963,10579497 +h186,41:9710963,10579497:983040,0,0 +h186,41:10694003,10579497:0,0,0 +g186,41:7613813,10579497 +(186,41:7613813,10579497:2097150,485622,11795 +k186,41:9710963,10579497:728103 ) +g186,41:12587338,10579497 +g186,41:13978012,10579497 +g186,41:19781225,10579497 +g186,41:21960297,10579497 +g186,41:21960297,10579497 +(186,41:22173491,10579497:501378,78643,0 +$186,41:22173491,10579497 +(186,41:22337345,10579497:173670,78643,0 ) -(186,40:19666601,8778561:501378,78643,0 -(186,40:19830455,8778561:173670,78643,0 +$186,41:22674869,10579497 ) +(186,41:22674869,10579497:501378,78643,0 +(186,41:22838723,10579497:173670,78643,0 ) -(186,40:20167979,8778561:501378,78643,0 -(186,40:20331833,8778561:173670,78643,0 ) +(186,41:23176247,10579497:501378,78643,0 +(186,41:23340101,10579497:173670,78643,0 ) -(186,40:20669357,8778561:501378,78643,0 -(186,40:20833211,8778561:173670,78643,0 ) +(186,41:23677625,10579497:501378,78643,0 +(186,41:23841479,10579497:173670,78643,0 ) -(186,40:21170735,8778561:501378,78643,0 -(186,40:21334589,8778561:173670,78643,0 ) +(186,41:24179003,10579497:501378,78643,0 +(186,41:24342857,10579497:173670,78643,0 ) -(186,40:21672113,8778561:501378,78643,0 -(186,40:21835967,8778561:173670,78643,0 ) +(186,41:24680381,10579497:501378,78643,0 +(186,41:24844235,10579497:173670,78643,0 ) -(186,40:22173491,8778561:501378,78643,0 -(186,40:22337345,8778561:173670,78643,0 ) +(186,41:25181759,10579497:501378,78643,0 +(186,41:25345613,10579497:173670,78643,0 ) -(186,40:22674869,8778561:501378,78643,0 -(186,40:22838723,8778561:173670,78643,0 ) +(186,41:25683137,10579497:501378,78643,0 +(186,41:25846991,10579497:173670,78643,0 ) -(186,40:23176247,8778561:501378,78643,0 -(186,40:23340101,8778561:173670,78643,0 ) +(186,41:26184515,10579497:501378,78643,0 +(186,41:26348369,10579497:173670,78643,0 ) -(186,40:23677625,8778561:501378,78643,0 -(186,40:23841479,8778561:173670,78643,0 ) +(186,41:26685893,10579497:501378,78643,0 +(186,41:26849747,10579497:173670,78643,0 ) -(186,40:24179003,8778561:501378,78643,0 -(186,40:24342857,8778561:173670,78643,0 ) +(186,41:27187271,10579497:501378,78643,0 +(186,41:27351125,10579497:173670,78643,0 ) -(186,40:24680381,8778561:501378,78643,0 -(186,40:24844235,8778561:173670,78643,0 ) +(186,41:27688649,10579497:501378,78643,0 +(186,41:27852503,10579497:173670,78643,0 ) -(186,40:25181759,8778561:501378,78643,0 -(186,40:25345613,8778561:173670,78643,0 ) +(186,41:28190027,10579497:501378,78643,0 +(186,41:28353881,10579497:173670,78643,0 ) -(186,40:25683137,8778561:501378,78643,0 -(186,40:25846991,8778561:173670,78643,0 ) +(186,41:28691405,10579497:501378,78643,0 +(186,41:28855259,10579497:173670,78643,0 ) -(186,40:26184515,8778561:501378,78643,0 -(186,40:26348369,8778561:173670,78643,0 ) +(186,41:29192783,10579497:501378,78643,0 +(186,41:29356637,10579497:173670,78643,0 ) -(186,40:26685893,8778561:501378,78643,0 -(186,40:26849747,8778561:173670,78643,0 ) +(186,41:29694161,10579497:501378,78643,0 +(186,41:29858015,10579497:173670,78643,0 ) -(186,40:27187271,8778561:501378,78643,0 -(186,40:27351125,8778561:173670,78643,0 ) +(186,41:30195539,10579497:501378,78643,0 +(186,41:30359393,10579497:173670,78643,0 ) -(186,40:27688649,8778561:501378,78643,0 -(186,40:27852503,8778561:173670,78643,0 ) +(186,41:30696917,10579497:501378,78643,0 +(186,41:30860771,10579497:173670,78643,0 ) -(186,40:28190027,8778561:501378,78643,0 -(186,40:28353881,8778561:173670,78643,0 ) +(186,41:31239539,10579497:1343490,485622,11795 +k186,41:31586882,10579497:347343 +g186,41:31786111,10579497 ) -(186,40:28691405,8778561:501378,78643,0 -(186,40:28855259,8778561:173670,78643,0 +g186,41:30911859,10579497 +g186,41:32583029,10579497 ) +(186,42:6630773,11444577:25952256,485622,11795 +g186,42:9710963,11444577 +h186,42:9710963,11444577:983040,0,0 +h186,42:10694003,11444577:0,0,0 +g186,42:7613813,11444577 +(186,42:7613813,11444577:2097150,485622,11795 +k186,42:9710963,11444577:728103 ) -(186,40:29192783,8778561:501378,78643,0 -(186,40:29356637,8778561:173670,78643,0 +g186,42:12228856,11444577 +g186,42:12228856,11444577 +(186,42:12647309,11444577:501378,78643,0 +$186,42:12647309,11444577 +(186,42:12811163,11444577:173670,78643,0 ) +$186,42:13148687,11444577 ) -(186,40:29694161,8778561:501378,78643,0 -(186,40:29858015,8778561:173670,78643,0 +(186,42:13148687,11444577:501378,78643,0 +(186,42:13312541,11444577:173670,78643,0 ) ) -(186,40:30195539,8778561:501378,78643,0 -(186,40:30359393,8778561:173670,78643,0 +(186,42:13650065,11444577:501378,78643,0 +(186,42:13813919,11444577:173670,78643,0 ) ) -(186,40:30696917,8778561:501378,78643,0 -(186,40:30860771,8778561:173670,78643,0 +(186,42:14151443,11444577:501378,78643,0 +(186,42:14315297,11444577:173670,78643,0 ) ) -(186,40:31239539,8778561:1343490,485622,11795 -k186,40:31586882,8778561:347343 -g186,40:31786111,8778561 +(186,42:14652821,11444577:501378,78643,0 +(186,42:14816675,11444577:173670,78643,0 ) -g186,40:30911859,8778561 -g186,40:32583029,8778561 ) -(186,41:6630773,9620049:25952256,505283,126483 -g186,41:9448823,9620049 -h186,41:9448823,9620049:983040,0,0 -h186,41:10431863,9620049:0,0,0 -g186,41:7613813,9620049 -(186,41:7613813,9620049:1835010,485622,11795 -k186,41:9448823,9620049:465963 +(186,42:15154199,11444577:501378,78643,0 +(186,42:15318053,11444577:173670,78643,0 ) -g186,41:12325198,9620049 -g186,41:13715872,9620049 -g186,41:19519085,9620049 -g186,41:21698157,9620049 -g186,41:21698157,9620049 -(186,41:22173491,9620049:501378,78643,0 -$186,41:22173491,9620049 -(186,41:22337345,9620049:173670,78643,0 ) -$186,41:22674869,9620049 +(186,42:15655577,11444577:501378,78643,0 +(186,42:15819431,11444577:173670,78643,0 ) -(186,41:22674869,9620049:501378,78643,0 -(186,41:22838723,9620049:173670,78643,0 ) +(186,42:16156955,11444577:501378,78643,0 +(186,42:16320809,11444577:173670,78643,0 ) -(186,41:23176247,9620049:501378,78643,0 -(186,41:23340101,9620049:173670,78643,0 ) +(186,42:16658333,11444577:501378,78643,0 +(186,42:16822187,11444577:173670,78643,0 ) -(186,41:23677625,9620049:501378,78643,0 -(186,41:23841479,9620049:173670,78643,0 ) +(186,42:17159711,11444577:501378,78643,0 +(186,42:17323565,11444577:173670,78643,0 ) -(186,41:24179003,9620049:501378,78643,0 -(186,41:24342857,9620049:173670,78643,0 ) +(186,42:17661089,11444577:501378,78643,0 +(186,42:17824943,11444577:173670,78643,0 ) -(186,41:24680381,9620049:501378,78643,0 -(186,41:24844235,9620049:173670,78643,0 ) +(186,42:18162467,11444577:501378,78643,0 +(186,42:18326321,11444577:173670,78643,0 ) -(186,41:25181759,9620049:501378,78643,0 -(186,41:25345613,9620049:173670,78643,0 ) +(186,42:18663845,11444577:501378,78643,0 +(186,42:18827699,11444577:173670,78643,0 ) -(186,41:25683137,9620049:501378,78643,0 -(186,41:25846991,9620049:173670,78643,0 ) +(186,42:19165223,11444577:501378,78643,0 +(186,42:19329077,11444577:173670,78643,0 ) -(186,41:26184515,9620049:501378,78643,0 -(186,41:26348369,9620049:173670,78643,0 ) +(186,42:19666601,11444577:501378,78643,0 +(186,42:19830455,11444577:173670,78643,0 ) -(186,41:26685893,9620049:501378,78643,0 -(186,41:26849747,9620049:173670,78643,0 ) +(186,42:20167979,11444577:501378,78643,0 +(186,42:20331833,11444577:173670,78643,0 ) -(186,41:27187271,9620049:501378,78643,0 -(186,41:27351125,9620049:173670,78643,0 ) +(186,42:20669357,11444577:501378,78643,0 +(186,42:20833211,11444577:173670,78643,0 ) -(186,41:27688649,9620049:501378,78643,0 -(186,41:27852503,9620049:173670,78643,0 ) +(186,42:21170735,11444577:501378,78643,0 +(186,42:21334589,11444577:173670,78643,0 ) -(186,41:28190027,9620049:501378,78643,0 -(186,41:28353881,9620049:173670,78643,0 ) +(186,42:21672113,11444577:501378,78643,0 +(186,42:21835967,11444577:173670,78643,0 ) -(186,41:28691405,9620049:501378,78643,0 -(186,41:28855259,9620049:173670,78643,0 ) +(186,42:22173491,11444577:501378,78643,0 +(186,42:22337345,11444577:173670,78643,0 ) -(186,41:29192783,9620049:501378,78643,0 -(186,41:29356637,9620049:173670,78643,0 ) +(186,42:22674869,11444577:501378,78643,0 +(186,42:22838723,11444577:173670,78643,0 ) -(186,41:29694161,9620049:501378,78643,0 -(186,41:29858015,9620049:173670,78643,0 ) +(186,42:23176247,11444577:501378,78643,0 +(186,42:23340101,11444577:173670,78643,0 ) -(186,41:30195539,9620049:501378,78643,0 -(186,41:30359393,9620049:173670,78643,0 ) +(186,42:23677625,11444577:501378,78643,0 +(186,42:23841479,11444577:173670,78643,0 ) -(186,41:30696917,9620049:501378,78643,0 -(186,41:30860771,9620049:173670,78643,0 ) +(186,42:24179003,11444577:501378,78643,0 +(186,42:24342857,11444577:173670,78643,0 ) -(186,41:31239539,9620049:1343490,485622,0 -k186,41:31586882,9620049:347343 -g186,41:31786111,9620049 ) -g186,41:30911859,9620049 -g186,41:32583029,9620049 +(186,42:24680381,11444577:501378,78643,0 +(186,42:24844235,11444577:173670,78643,0 ) -(186,42:6630773,10461537:25952256,485622,11795 -g186,42:9448823,10461537 -h186,42:9448823,10461537:983040,0,0 -h186,42:10431863,10461537:0,0,0 -g186,42:7613813,10461537 -(186,42:7613813,10461537:1835010,485622,11795 -k186,42:9448823,10461537:465963 ) -g186,42:11966716,10461537 -g186,42:11966716,10461537 -(186,42:12145931,10461537:501378,78643,0 -$186,42:12145931,10461537 -(186,42:12309785,10461537:173670,78643,0 +(186,42:25181759,11444577:501378,78643,0 +(186,42:25345613,11444577:173670,78643,0 ) -$186,42:12647309,10461537 ) -(186,42:12647309,10461537:501378,78643,0 -(186,42:12811163,10461537:173670,78643,0 +(186,42:25683137,11444577:501378,78643,0 +(186,42:25846991,11444577:173670,78643,0 ) ) -(186,42:13148687,10461537:501378,78643,0 -(186,42:13312541,10461537:173670,78643,0 +(186,42:26184515,11444577:501378,78643,0 +(186,42:26348369,11444577:173670,78643,0 ) ) -(186,42:13650065,10461537:501378,78643,0 -(186,42:13813919,10461537:173670,78643,0 +(186,42:26685893,11444577:501378,78643,0 +(186,42:26849747,11444577:173670,78643,0 ) ) -(186,42:14151443,10461537:501378,78643,0 -(186,42:14315297,10461537:173670,78643,0 +(186,42:27187271,11444577:501378,78643,0 +(186,42:27351125,11444577:173670,78643,0 ) ) -(186,42:14652821,10461537:501378,78643,0 -(186,42:14816675,10461537:173670,78643,0 +(186,42:27688649,11444577:501378,78643,0 +(186,42:27852503,11444577:173670,78643,0 ) ) -(186,42:15154199,10461537:501378,78643,0 -(186,42:15318053,10461537:173670,78643,0 +(186,42:28190027,11444577:501378,78643,0 +(186,42:28353881,11444577:173670,78643,0 ) ) -(186,42:15655577,10461537:501378,78643,0 -(186,42:15819431,10461537:173670,78643,0 +(186,42:28691405,11444577:501378,78643,0 +(186,42:28855259,11444577:173670,78643,0 ) ) -(186,42:16156955,10461537:501378,78643,0 -(186,42:16320809,10461537:173670,78643,0 +(186,42:29192783,11444577:501378,78643,0 +(186,42:29356637,11444577:173670,78643,0 ) ) -(186,42:16658333,10461537:501378,78643,0 -(186,42:16822187,10461537:173670,78643,0 +(186,42:29694161,11444577:501378,78643,0 +(186,42:29858015,11444577:173670,78643,0 ) ) -(186,42:17159711,10461537:501378,78643,0 -(186,42:17323565,10461537:173670,78643,0 +(186,42:30195539,11444577:501378,78643,0 +(186,42:30359393,11444577:173670,78643,0 ) ) -(186,42:17661089,10461537:501378,78643,0 -(186,42:17824943,10461537:173670,78643,0 +(186,42:30696917,11444577:501378,78643,0 +(186,42:30860771,11444577:173670,78643,0 ) ) -(186,42:18162467,10461537:501378,78643,0 -(186,42:18326321,10461537:173670,78643,0 +(186,42:31239540,11444577:1343490,473825,0 +k186,42:31586883,11444577:347343 +g186,42:31786112,11444577 ) +g186,42:30911860,11444577 +g186,42:32583030,11444577 ) -(186,42:18663845,10461537:501378,78643,0 -(186,42:18827699,10461537:173670,78643,0 +(186,43:6630773,12309657:25952256,505283,134348 +g186,43:9710963,12309657 +h186,43:9710963,12309657:983040,0,0 +h186,43:10694003,12309657:0,0,0 +g186,43:7613813,12309657 +(186,43:7613813,12309657:2097150,485622,11795 +k186,43:9710963,12309657:728103 ) +g186,43:12279974,12309657 +g186,43:14881753,12309657 +g186,43:14881753,12309657 +(186,43:15154199,12309657:501378,78643,0 +$186,43:15154199,12309657 +(186,43:15318053,12309657:173670,78643,0 ) -(186,42:19165223,10461537:501378,78643,0 -(186,42:19329077,10461537:173670,78643,0 +$186,43:15655577,12309657 ) +(186,43:15655577,12309657:501378,78643,0 +(186,43:15819431,12309657:173670,78643,0 ) -(186,42:19666601,10461537:501378,78643,0 -(186,42:19830455,10461537:173670,78643,0 ) +(186,43:16156955,12309657:501378,78643,0 +(186,43:16320809,12309657:173670,78643,0 ) -(186,42:20167979,10461537:501378,78643,0 -(186,42:20331833,10461537:173670,78643,0 ) +(186,43:16658333,12309657:501378,78643,0 +(186,43:16822187,12309657:173670,78643,0 ) -(186,42:20669357,10461537:501378,78643,0 -(186,42:20833211,10461537:173670,78643,0 ) +(186,43:17159711,12309657:501378,78643,0 +(186,43:17323565,12309657:173670,78643,0 ) -(186,42:21170735,10461537:501378,78643,0 -(186,42:21334589,10461537:173670,78643,0 ) +(186,43:17661089,12309657:501378,78643,0 +(186,43:17824943,12309657:173670,78643,0 ) -(186,42:21672113,10461537:501378,78643,0 -(186,42:21835967,10461537:173670,78643,0 ) +(186,43:18162467,12309657:501378,78643,0 +(186,43:18326321,12309657:173670,78643,0 ) -(186,42:22173491,10461537:501378,78643,0 -(186,42:22337345,10461537:173670,78643,0 ) +(186,43:18663845,12309657:501378,78643,0 +(186,43:18827699,12309657:173670,78643,0 ) -(186,42:22674869,10461537:501378,78643,0 -(186,42:22838723,10461537:173670,78643,0 ) +(186,43:19165223,12309657:501378,78643,0 +(186,43:19329077,12309657:173670,78643,0 ) -(186,42:23176247,10461537:501378,78643,0 -(186,42:23340101,10461537:173670,78643,0 ) +(186,43:19666601,12309657:501378,78643,0 +(186,43:19830455,12309657:173670,78643,0 ) -(186,42:23677625,10461537:501378,78643,0 -(186,42:23841479,10461537:173670,78643,0 ) +(186,43:20167979,12309657:501378,78643,0 +(186,43:20331833,12309657:173670,78643,0 ) -(186,42:24179003,10461537:501378,78643,0 -(186,42:24342857,10461537:173670,78643,0 ) +(186,43:20669357,12309657:501378,78643,0 +(186,43:20833211,12309657:173670,78643,0 ) -(186,42:24680381,10461537:501378,78643,0 -(186,42:24844235,10461537:173670,78643,0 ) +(186,43:21170735,12309657:501378,78643,0 +(186,43:21334589,12309657:173670,78643,0 ) -(186,42:25181759,10461537:501378,78643,0 -(186,42:25345613,10461537:173670,78643,0 ) +(186,43:21672113,12309657:501378,78643,0 +(186,43:21835967,12309657:173670,78643,0 ) -(186,42:25683137,10461537:501378,78643,0 -(186,42:25846991,10461537:173670,78643,0 ) +(186,43:22173491,12309657:501378,78643,0 +(186,43:22337345,12309657:173670,78643,0 ) -(186,42:26184515,10461537:501378,78643,0 -(186,42:26348369,10461537:173670,78643,0 ) +(186,43:22674869,12309657:501378,78643,0 +(186,43:22838723,12309657:173670,78643,0 ) -(186,42:26685893,10461537:501378,78643,0 -(186,42:26849747,10461537:173670,78643,0 ) +(186,43:23176247,12309657:501378,78643,0 +(186,43:23340101,12309657:173670,78643,0 ) -(186,42:27187271,10461537:501378,78643,0 -(186,42:27351125,10461537:173670,78643,0 ) +(186,43:23677625,12309657:501378,78643,0 +(186,43:23841479,12309657:173670,78643,0 ) -(186,42:27688649,10461537:501378,78643,0 -(186,42:27852503,10461537:173670,78643,0 ) +(186,43:24179003,12309657:501378,78643,0 +(186,43:24342857,12309657:173670,78643,0 ) -(186,42:28190027,10461537:501378,78643,0 -(186,42:28353881,10461537:173670,78643,0 ) +(186,43:24680381,12309657:501378,78643,0 +(186,43:24844235,12309657:173670,78643,0 ) -(186,42:28691405,10461537:501378,78643,0 -(186,42:28855259,10461537:173670,78643,0 ) +(186,43:25181759,12309657:501378,78643,0 +(186,43:25345613,12309657:173670,78643,0 ) -(186,42:29192783,10461537:501378,78643,0 -(186,42:29356637,10461537:173670,78643,0 ) +(186,43:25683137,12309657:501378,78643,0 +(186,43:25846991,12309657:173670,78643,0 ) -(186,42:29694161,10461537:501378,78643,0 -(186,42:29858015,10461537:173670,78643,0 ) +(186,43:26184515,12309657:501378,78643,0 +(186,43:26348369,12309657:173670,78643,0 ) -(186,42:30195539,10461537:501378,78643,0 -(186,42:30359393,10461537:173670,78643,0 ) +(186,43:26685893,12309657:501378,78643,0 +(186,43:26849747,12309657:173670,78643,0 ) -(186,42:30696917,10461537:501378,78643,0 -(186,42:30860771,10461537:173670,78643,0 ) +(186,43:27187271,12309657:501378,78643,0 +(186,43:27351125,12309657:173670,78643,0 ) -(186,42:31239540,10461537:1343490,485622,11795 -k186,42:31586883,10461537:347343 -g186,42:31786112,10461537 ) -g186,42:30911860,10461537 -g186,42:32583030,10461537 +(186,43:27688649,12309657:501378,78643,0 +(186,43:27852503,12309657:173670,78643,0 ) -(186,43:6630773,11303025:25952256,505283,134348 -g186,43:9448823,11303025 -h186,43:9448823,11303025:983040,0,0 -h186,43:10431863,11303025:0,0,0 -g186,43:7613813,11303025 -(186,43:7613813,11303025:1835010,485622,11795 -k186,43:9448823,11303025:465963 ) -g186,43:12017834,11303025 -g186,43:14619613,11303025 -g186,43:14619613,11303025 -(186,43:14652821,11303025:501378,78643,0 -$186,43:14652821,11303025 -(186,43:14816675,11303025:173670,78643,0 +(186,43:28190027,12309657:501378,78643,0 +(186,43:28353881,12309657:173670,78643,0 ) -$186,43:15154199,11303025 ) -(186,43:15154199,11303025:501378,78643,0 -(186,43:15318053,11303025:173670,78643,0 +(186,43:28691405,12309657:501378,78643,0 +(186,43:28855259,12309657:173670,78643,0 ) ) -(186,43:15655577,11303025:501378,78643,0 -(186,43:15819431,11303025:173670,78643,0 +(186,43:29192783,12309657:501378,78643,0 +(186,43:29356637,12309657:173670,78643,0 ) ) -(186,43:16156955,11303025:501378,78643,0 -(186,43:16320809,11303025:173670,78643,0 +(186,43:29694161,12309657:501378,78643,0 +(186,43:29858015,12309657:173670,78643,0 ) ) -(186,43:16658333,11303025:501378,78643,0 -(186,43:16822187,11303025:173670,78643,0 +(186,43:30195539,12309657:501378,78643,0 +(186,43:30359393,12309657:173670,78643,0 ) ) -(186,43:17159711,11303025:501378,78643,0 -(186,43:17323565,11303025:173670,78643,0 +(186,43:30696917,12309657:501378,78643,0 +(186,43:30860771,12309657:173670,78643,0 ) ) -(186,43:17661089,11303025:501378,78643,0 -(186,43:17824943,11303025:173670,78643,0 +(186,43:31239539,12309657:1343490,485622,11795 +k186,43:31586882,12309657:347343 +g186,43:31786111,12309657 ) +g186,43:30911859,12309657 +g186,43:32583029,12309657 ) -(186,43:18162467,11303025:501378,78643,0 -(186,43:18326321,11303025:173670,78643,0 +(186,44:6630773,13830097:25952256,505283,11795 +g186,44:7613813,13830097 +h186,44:7613813,13830097:0,0,0 +g186,44:6630773,13830097 +(186,44:6630773,13830097:983040,479724,0 +k186,44:7613813,13830097:574751 ) +g186,44:9313161,13830097 +g186,44:10163163,13830097 +g186,44:13961629,13830097 +k186,44:23815294,13830097:7424245 +k186,44:31239539,13830097:7424245 +(186,44:31239539,13830097:1343490,485622,11795 +k186,44:31766450,13830097:526911 ) -(186,43:18663845,11303025:501378,78643,0 -(186,43:18827699,11303025:173670,78643,0 +g186,44:31239539,13830097 +g186,44:32583029,13830097 ) +(186,45:6630773,14695177:25952256,513147,126483 +g186,45:9710963,14695177 +h186,45:9710963,14695177:983040,0,0 +h186,45:10694003,14695177:0,0,0 +g186,45:7613813,14695177 +(186,45:7613813,14695177:2097150,481690,0 +k186,45:9710963,14695177:1126562 ) -(186,43:19165223,11303025:501378,78643,0 -(186,43:19329077,11303025:173670,78643,0 +g186,45:11549247,14695177 +g186,45:12407768,14695177 +g186,45:13810238,14695177 +g186,45:16427090,14695177 +g186,45:16427090,14695177 +(186,45:16658333,14695177:501378,78643,0 +$186,45:16658333,14695177 +(186,45:16822187,14695177:173670,78643,0 ) +$186,45:17159711,14695177 ) -(186,43:19666601,11303025:501378,78643,0 -(186,43:19830455,11303025:173670,78643,0 +(186,45:17159711,14695177:501378,78643,0 +(186,45:17323565,14695177:173670,78643,0 ) ) -(186,43:20167979,11303025:501378,78643,0 -(186,43:20331833,11303025:173670,78643,0 +(186,45:17661089,14695177:501378,78643,0 +(186,45:17824943,14695177:173670,78643,0 ) ) -(186,43:20669357,11303025:501378,78643,0 -(186,43:20833211,11303025:173670,78643,0 +(186,45:18162467,14695177:501378,78643,0 +(186,45:18326321,14695177:173670,78643,0 ) ) -(186,43:21170735,11303025:501378,78643,0 -(186,43:21334589,11303025:173670,78643,0 +(186,45:18663845,14695177:501378,78643,0 +(186,45:18827699,14695177:173670,78643,0 ) ) -(186,43:21672113,11303025:501378,78643,0 -(186,43:21835967,11303025:173670,78643,0 +(186,45:19165223,14695177:501378,78643,0 +(186,45:19329077,14695177:173670,78643,0 ) ) -(186,43:22173491,11303025:501378,78643,0 -(186,43:22337345,11303025:173670,78643,0 +(186,45:19666601,14695177:501378,78643,0 +(186,45:19830455,14695177:173670,78643,0 ) ) -(186,43:22674869,11303025:501378,78643,0 -(186,43:22838723,11303025:173670,78643,0 +(186,45:20167979,14695177:501378,78643,0 +(186,45:20331833,14695177:173670,78643,0 ) ) -(186,43:23176247,11303025:501378,78643,0 -(186,43:23340101,11303025:173670,78643,0 +(186,45:20669357,14695177:501378,78643,0 +(186,45:20833211,14695177:173670,78643,0 ) ) -(186,43:23677625,11303025:501378,78643,0 -(186,43:23841479,11303025:173670,78643,0 +(186,45:21170735,14695177:501378,78643,0 +(186,45:21334589,14695177:173670,78643,0 ) ) -(186,43:24179003,11303025:501378,78643,0 -(186,43:24342857,11303025:173670,78643,0 +(186,45:21672113,14695177:501378,78643,0 +(186,45:21835967,14695177:173670,78643,0 ) ) -(186,43:24680381,11303025:501378,78643,0 -(186,43:24844235,11303025:173670,78643,0 +(186,45:22173491,14695177:501378,78643,0 +(186,45:22337345,14695177:173670,78643,0 ) ) -(186,43:25181759,11303025:501378,78643,0 -(186,43:25345613,11303025:173670,78643,0 +(186,45:22674869,14695177:501378,78643,0 +(186,45:22838723,14695177:173670,78643,0 ) ) -(186,43:25683137,11303025:501378,78643,0 -(186,43:25846991,11303025:173670,78643,0 +(186,45:23176247,14695177:501378,78643,0 +(186,45:23340101,14695177:173670,78643,0 ) ) -(186,43:26184515,11303025:501378,78643,0 -(186,43:26348369,11303025:173670,78643,0 +(186,45:23677625,14695177:501378,78643,0 +(186,45:23841479,14695177:173670,78643,0 ) ) -(186,43:26685893,11303025:501378,78643,0 -(186,43:26849747,11303025:173670,78643,0 +(186,45:24179003,14695177:501378,78643,0 +(186,45:24342857,14695177:173670,78643,0 ) ) -(186,43:27187271,11303025:501378,78643,0 -(186,43:27351125,11303025:173670,78643,0 +(186,45:24680381,14695177:501378,78643,0 +(186,45:24844235,14695177:173670,78643,0 ) ) -(186,43:27688649,11303025:501378,78643,0 -(186,43:27852503,11303025:173670,78643,0 +(186,45:25181759,14695177:501378,78643,0 +(186,45:25345613,14695177:173670,78643,0 ) ) -(186,43:28190027,11303025:501378,78643,0 -(186,43:28353881,11303025:173670,78643,0 +(186,45:25683137,14695177:501378,78643,0 +(186,45:25846991,14695177:173670,78643,0 ) ) -(186,43:28691405,11303025:501378,78643,0 -(186,43:28855259,11303025:173670,78643,0 +(186,45:26184515,14695177:501378,78643,0 +(186,45:26348369,14695177:173670,78643,0 ) ) -(186,43:29192783,11303025:501378,78643,0 -(186,43:29356637,11303025:173670,78643,0 +(186,45:26685893,14695177:501378,78643,0 +(186,45:26849747,14695177:173670,78643,0 ) ) -(186,43:29694161,11303025:501378,78643,0 -(186,43:29858015,11303025:173670,78643,0 +(186,45:27187271,14695177:501378,78643,0 +(186,45:27351125,14695177:173670,78643,0 ) ) -(186,43:30195539,11303025:501378,78643,0 -(186,43:30359393,11303025:173670,78643,0 +(186,45:27688649,14695177:501378,78643,0 +(186,45:27852503,14695177:173670,78643,0 ) ) -(186,43:30696917,11303025:501378,78643,0 -(186,43:30860771,11303025:173670,78643,0 +(186,45:28190027,14695177:501378,78643,0 +(186,45:28353881,14695177:173670,78643,0 ) ) -(186,43:31239539,11303025:1343490,485622,11795 -k186,43:31586882,11303025:347343 -g186,43:31786111,11303025 +(186,45:28691405,14695177:501378,78643,0 +(186,45:28855259,14695177:173670,78643,0 ) -g186,43:30911859,11303025 -g186,43:32583029,11303025 ) -(186,44:6630773,12799873:25952256,505283,11795 -g186,44:7613813,12799873 -h186,44:7613813,12799873:0,0,0 -g186,44:6630773,12799873 -(186,44:6630773,12799873:983040,479724,0 -k186,44:7613813,12799873:574751 +(186,45:29192783,14695177:501378,78643,0 +(186,45:29356637,14695177:173670,78643,0 ) -g186,44:9313161,12799873 -g186,44:10163163,12799873 -g186,44:13961629,12799873 -k186,44:23815294,12799873:7424245 -k186,44:31239539,12799873:7424245 -(186,44:31239539,12799873:1343490,485622,11795 -k186,44:31766450,12799873:526911 ) -g186,44:31239539,12799873 -g186,44:32583029,12799873 +(186,45:29694161,14695177:501378,78643,0 +(186,45:29858015,14695177:173670,78643,0 ) -(186,45:6630773,13641361:25952256,513147,126483 -g186,45:9448823,13641361 -h186,45:9448823,13641361:983040,0,0 -h186,45:10431863,13641361:0,0,0 -g186,45:7613813,13641361 -(186,45:7613813,13641361:1835010,481690,0 -k186,45:9448823,13641361:864422 ) -g186,45:11287107,13641361 -g186,45:12145628,13641361 -g186,45:13548098,13641361 -g186,45:16164950,13641361 -g186,45:16164950,13641361 -(186,45:16658333,13641361:501378,78643,0 -$186,45:16658333,13641361 -(186,45:16822187,13641361:173670,78643,0 +(186,45:30195539,14695177:501378,78643,0 +(186,45:30359393,14695177:173670,78643,0 ) -$186,45:17159711,13641361 ) -(186,45:17159711,13641361:501378,78643,0 -(186,45:17323565,13641361:173670,78643,0 +(186,45:30696917,14695177:501378,78643,0 +(186,45:30860771,14695177:173670,78643,0 ) ) -(186,45:17661089,13641361:501378,78643,0 -(186,45:17824943,13641361:173670,78643,0 +(186,45:31239539,14695177:1343490,485622,11795 +k186,45:31586882,14695177:347343 +g186,45:31786111,14695177 ) +g186,45:30911859,14695177 +g186,45:32583029,14695177 ) -(186,45:18162467,13641361:501378,78643,0 -(186,45:18326321,13641361:173670,78643,0 +(186,46:6630773,15560257:25952256,513147,126483 +g186,46:9710963,15560257 +h186,46:9710963,15560257:983040,0,0 +h186,46:10694003,15560257:0,0,0 +g186,46:7613813,15560257 +(186,46:7613813,15560257:2097150,485622,0 +k186,46:9710963,15560257:1126562 ) +g186,46:11382131,15560257 +g186,46:13148981,15560257 +g186,46:15777630,15560257 +g186,46:17168304,15560257 +g186,46:21306902,15560257 +g186,46:21306902,15560257 +(186,46:21672113,15560257:501378,78643,0 +$186,46:21672113,15560257 +(186,46:21835967,15560257:173670,78643,0 ) -(186,45:18663845,13641361:501378,78643,0 -(186,45:18827699,13641361:173670,78643,0 +$186,46:22173491,15560257 ) +(186,46:22173491,15560257:501378,78643,0 +(186,46:22337345,15560257:173670,78643,0 ) -(186,45:19165223,13641361:501378,78643,0 -(186,45:19329077,13641361:173670,78643,0 ) +(186,46:22674869,15560257:501378,78643,0 +(186,46:22838723,15560257:173670,78643,0 ) -(186,45:19666601,13641361:501378,78643,0 -(186,45:19830455,13641361:173670,78643,0 ) +(186,46:23176247,15560257:501378,78643,0 +(186,46:23340101,15560257:173670,78643,0 ) -(186,45:20167979,13641361:501378,78643,0 -(186,45:20331833,13641361:173670,78643,0 ) +(186,46:23677625,15560257:501378,78643,0 +(186,46:23841479,15560257:173670,78643,0 ) -(186,45:20669357,13641361:501378,78643,0 -(186,45:20833211,13641361:173670,78643,0 ) +(186,46:24179003,15560257:501378,78643,0 +(186,46:24342857,15560257:173670,78643,0 ) -(186,45:21170735,13641361:501378,78643,0 -(186,45:21334589,13641361:173670,78643,0 ) +(186,46:24680381,15560257:501378,78643,0 +(186,46:24844235,15560257:173670,78643,0 ) -(186,45:21672113,13641361:501378,78643,0 -(186,45:21835967,13641361:173670,78643,0 ) +(186,46:25181759,15560257:501378,78643,0 +(186,46:25345613,15560257:173670,78643,0 ) -(186,45:22173491,13641361:501378,78643,0 -(186,45:22337345,13641361:173670,78643,0 ) +(186,46:25683137,15560257:501378,78643,0 +(186,46:25846991,15560257:173670,78643,0 ) -(186,45:22674869,13641361:501378,78643,0 -(186,45:22838723,13641361:173670,78643,0 ) +(186,46:26184515,15560257:501378,78643,0 +(186,46:26348369,15560257:173670,78643,0 ) -(186,45:23176247,13641361:501378,78643,0 -(186,45:23340101,13641361:173670,78643,0 ) +(186,46:26685893,15560257:501378,78643,0 +(186,46:26849747,15560257:173670,78643,0 ) -(186,45:23677625,13641361:501378,78643,0 -(186,45:23841479,13641361:173670,78643,0 ) +(186,46:27187271,15560257:501378,78643,0 +(186,46:27351125,15560257:173670,78643,0 ) -(186,45:24179003,13641361:501378,78643,0 -(186,45:24342857,13641361:173670,78643,0 ) +(186,46:27688649,15560257:501378,78643,0 +(186,46:27852503,15560257:173670,78643,0 ) -(186,45:24680381,13641361:501378,78643,0 -(186,45:24844235,13641361:173670,78643,0 ) +(186,46:28190027,15560257:501378,78643,0 +(186,46:28353881,15560257:173670,78643,0 ) -(186,45:25181759,13641361:501378,78643,0 -(186,45:25345613,13641361:173670,78643,0 ) +(186,46:28691405,15560257:501378,78643,0 +(186,46:28855259,15560257:173670,78643,0 ) -(186,45:25683137,13641361:501378,78643,0 -(186,45:25846991,13641361:173670,78643,0 ) +(186,46:29192783,15560257:501378,78643,0 +(186,46:29356637,15560257:173670,78643,0 ) -(186,45:26184515,13641361:501378,78643,0 -(186,45:26348369,13641361:173670,78643,0 ) +(186,46:29694161,15560257:501378,78643,0 +(186,46:29858015,15560257:173670,78643,0 ) -(186,45:26685893,13641361:501378,78643,0 -(186,45:26849747,13641361:173670,78643,0 ) +(186,46:30195539,15560257:501378,78643,0 +(186,46:30359393,15560257:173670,78643,0 ) -(186,45:27187271,13641361:501378,78643,0 -(186,45:27351125,13641361:173670,78643,0 ) +(186,46:30696917,15560257:501378,78643,0 +(186,46:30860771,15560257:173670,78643,0 ) -(186,45:27688649,13641361:501378,78643,0 -(186,45:27852503,13641361:173670,78643,0 ) +(186,46:31239539,15560257:1343490,485622,11795 +k186,46:31586882,15560257:347343 +g186,46:31786111,15560257 ) -(186,45:28190027,13641361:501378,78643,0 -(186,45:28353881,13641361:173670,78643,0 +g186,46:30911859,15560257 +g186,46:32583029,15560257 ) +(186,47:6630773,16425337:25952256,485622,11795 +g186,47:9710963,16425337 +h186,47:9710963,16425337:983040,0,0 +h186,47:10694003,16425337:0,0,0 +g186,47:7613813,16425337 +(186,47:7613813,16425337:2097150,485622,11795 +k186,47:9710963,16425337:1126562 ) -(186,45:28691405,13641361:501378,78643,0 -(186,45:28855259,13641361:173670,78643,0 +g186,47:11393927,16425337 +g186,47:11393927,16425337 +(186,47:11644553,16425337:501378,78643,0 +$186,47:11644553,16425337 +(186,47:11808407,16425337:173670,78643,0 ) +$186,47:12145931,16425337 ) -(186,45:29192783,13641361:501378,78643,0 -(186,45:29356637,13641361:173670,78643,0 +(186,47:12145931,16425337:501378,78643,0 +(186,47:12309785,16425337:173670,78643,0 ) ) -(186,45:29694161,13641361:501378,78643,0 -(186,45:29858015,13641361:173670,78643,0 +(186,47:12647309,16425337:501378,78643,0 +(186,47:12811163,16425337:173670,78643,0 ) ) -(186,45:30195539,13641361:501378,78643,0 -(186,45:30359393,13641361:173670,78643,0 +(186,47:13148687,16425337:501378,78643,0 +(186,47:13312541,16425337:173670,78643,0 ) ) -(186,45:30696917,13641361:501378,78643,0 -(186,45:30860771,13641361:173670,78643,0 +(186,47:13650065,16425337:501378,78643,0 +(186,47:13813919,16425337:173670,78643,0 ) ) -(186,45:31239539,13641361:1343490,485622,11795 -k186,45:31586882,13641361:347343 -g186,45:31786111,13641361 +(186,47:14151443,16425337:501378,78643,0 +(186,47:14315297,16425337:173670,78643,0 ) -g186,45:30911859,13641361 -g186,45:32583029,13641361 ) -(186,46:6630773,14482849:25952256,513147,126483 -g186,46:9448823,14482849 -h186,46:9448823,14482849:983040,0,0 -h186,46:10431863,14482849:0,0,0 -g186,46:7613813,14482849 -(186,46:7613813,14482849:1835010,485622,0 -k186,46:9448823,14482849:864422 +(186,47:14652821,16425337:501378,78643,0 +(186,47:14816675,16425337:173670,78643,0 ) -g186,46:11119991,14482849 -g186,46:12886841,14482849 -g186,46:15515490,14482849 -g186,46:16906164,14482849 -g186,46:21044762,14482849 -g186,46:21044762,14482849 -(186,46:21170735,14482849:501378,78643,0 -$186,46:21170735,14482849 -(186,46:21334589,14482849:173670,78643,0 ) -$186,46:21672113,14482849 +(186,47:15154199,16425337:501378,78643,0 +(186,47:15318053,16425337:173670,78643,0 ) -(186,46:21672113,14482849:501378,78643,0 -(186,46:21835967,14482849:173670,78643,0 ) +(186,47:15655577,16425337:501378,78643,0 +(186,47:15819431,16425337:173670,78643,0 ) -(186,46:22173491,14482849:501378,78643,0 -(186,46:22337345,14482849:173670,78643,0 ) +(186,47:16156955,16425337:501378,78643,0 +(186,47:16320809,16425337:173670,78643,0 ) -(186,46:22674869,14482849:501378,78643,0 -(186,46:22838723,14482849:173670,78643,0 ) +(186,47:16658333,16425337:501378,78643,0 +(186,47:16822187,16425337:173670,78643,0 ) -(186,46:23176247,14482849:501378,78643,0 -(186,46:23340101,14482849:173670,78643,0 ) +(186,47:17159711,16425337:501378,78643,0 +(186,47:17323565,16425337:173670,78643,0 ) -(186,46:23677625,14482849:501378,78643,0 -(186,46:23841479,14482849:173670,78643,0 ) +(186,47:17661089,16425337:501378,78643,0 +(186,47:17824943,16425337:173670,78643,0 ) -(186,46:24179003,14482849:501378,78643,0 -(186,46:24342857,14482849:173670,78643,0 ) +(186,47:18162467,16425337:501378,78643,0 +(186,47:18326321,16425337:173670,78643,0 ) -(186,46:24680381,14482849:501378,78643,0 -(186,46:24844235,14482849:173670,78643,0 ) +(186,47:18663845,16425337:501378,78643,0 +(186,47:18827699,16425337:173670,78643,0 ) -(186,46:25181759,14482849:501378,78643,0 -(186,46:25345613,14482849:173670,78643,0 ) +(186,47:19165223,16425337:501378,78643,0 +(186,47:19329077,16425337:173670,78643,0 ) -(186,46:25683137,14482849:501378,78643,0 -(186,46:25846991,14482849:173670,78643,0 ) +(186,47:19666601,16425337:501378,78643,0 +(186,47:19830455,16425337:173670,78643,0 ) -(186,46:26184515,14482849:501378,78643,0 -(186,46:26348369,14482849:173670,78643,0 ) +(186,47:20167979,16425337:501378,78643,0 +(186,47:20331833,16425337:173670,78643,0 ) -(186,46:26685893,14482849:501378,78643,0 -(186,46:26849747,14482849:173670,78643,0 ) +(186,47:20669357,16425337:501378,78643,0 +(186,47:20833211,16425337:173670,78643,0 ) -(186,46:27187271,14482849:501378,78643,0 -(186,46:27351125,14482849:173670,78643,0 ) +(186,47:21170735,16425337:501378,78643,0 +(186,47:21334589,16425337:173670,78643,0 ) -(186,46:27688649,14482849:501378,78643,0 -(186,46:27852503,14482849:173670,78643,0 ) +(186,47:21672113,16425337:501378,78643,0 +(186,47:21835967,16425337:173670,78643,0 ) -(186,46:28190027,14482849:501378,78643,0 -(186,46:28353881,14482849:173670,78643,0 ) +(186,47:22173491,16425337:501378,78643,0 +(186,47:22337345,16425337:173670,78643,0 ) -(186,46:28691405,14482849:501378,78643,0 -(186,46:28855259,14482849:173670,78643,0 ) +(186,47:22674869,16425337:501378,78643,0 +(186,47:22838723,16425337:173670,78643,0 ) -(186,46:29192783,14482849:501378,78643,0 -(186,46:29356637,14482849:173670,78643,0 ) +(186,47:23176247,16425337:501378,78643,0 +(186,47:23340101,16425337:173670,78643,0 ) -(186,46:29694161,14482849:501378,78643,0 -(186,46:29858015,14482849:173670,78643,0 ) +(186,47:23677625,16425337:501378,78643,0 +(186,47:23841479,16425337:173670,78643,0 ) -(186,46:30195539,14482849:501378,78643,0 -(186,46:30359393,14482849:173670,78643,0 ) +(186,47:24179003,16425337:501378,78643,0 +(186,47:24342857,16425337:173670,78643,0 ) -(186,46:30696917,14482849:501378,78643,0 -(186,46:30860771,14482849:173670,78643,0 ) +(186,47:24680381,16425337:501378,78643,0 +(186,47:24844235,16425337:173670,78643,0 ) -(186,46:31239539,14482849:1343490,485622,11795 -k186,46:31586882,14482849:347343 -g186,46:31786111,14482849 ) -g186,46:30911859,14482849 -g186,46:32583029,14482849 +(186,47:25181759,16425337:501378,78643,0 +(186,47:25345613,16425337:173670,78643,0 ) -(186,47:6630773,15324337:25952256,485622,11795 -g186,47:9448823,15324337 -h186,47:9448823,15324337:983040,0,0 -h186,47:10431863,15324337:0,0,0 -g186,47:7613813,15324337 -(186,47:7613813,15324337:1835010,485622,11795 -k186,47:9448823,15324337:864422 ) -g186,47:11131787,15324337 -g186,47:11131787,15324337 -(186,47:11143175,15324337:501378,78643,0 -$186,47:11143175,15324337 -(186,47:11307029,15324337:173670,78643,0 +(186,47:25683137,16425337:501378,78643,0 +(186,47:25846991,16425337:173670,78643,0 ) -$186,47:11644553,15324337 ) -(186,47:11644553,15324337:501378,78643,0 -(186,47:11808407,15324337:173670,78643,0 +(186,47:26184515,16425337:501378,78643,0 +(186,47:26348369,16425337:173670,78643,0 ) ) -(186,47:12145931,15324337:501378,78643,0 -(186,47:12309785,15324337:173670,78643,0 +(186,47:26685893,16425337:501378,78643,0 +(186,47:26849747,16425337:173670,78643,0 ) ) -(186,47:12647309,15324337:501378,78643,0 -(186,47:12811163,15324337:173670,78643,0 +(186,47:27187271,16425337:501378,78643,0 +(186,47:27351125,16425337:173670,78643,0 ) ) -(186,47:13148687,15324337:501378,78643,0 -(186,47:13312541,15324337:173670,78643,0 +(186,47:27688649,16425337:501378,78643,0 +(186,47:27852503,16425337:173670,78643,0 ) ) -(186,47:13650065,15324337:501378,78643,0 -(186,47:13813919,15324337:173670,78643,0 +(186,47:28190027,16425337:501378,78643,0 +(186,47:28353881,16425337:173670,78643,0 ) ) -(186,47:14151443,15324337:501378,78643,0 -(186,47:14315297,15324337:173670,78643,0 +(186,47:28691405,16425337:501378,78643,0 +(186,47:28855259,16425337:173670,78643,0 ) ) -(186,47:14652821,15324337:501378,78643,0 -(186,47:14816675,15324337:173670,78643,0 +(186,47:29192783,16425337:501378,78643,0 +(186,47:29356637,16425337:173670,78643,0 ) ) -(186,47:15154199,15324337:501378,78643,0 -(186,47:15318053,15324337:173670,78643,0 +(186,47:29694161,16425337:501378,78643,0 +(186,47:29858015,16425337:173670,78643,0 ) ) -(186,47:15655577,15324337:501378,78643,0 -(186,47:15819431,15324337:173670,78643,0 +(186,47:30195539,16425337:501378,78643,0 +(186,47:30359393,16425337:173670,78643,0 ) ) -(186,47:16156955,15324337:501378,78643,0 -(186,47:16320809,15324337:173670,78643,0 +(186,47:30696917,16425337:501378,78643,0 +(186,47:30860771,16425337:173670,78643,0 ) ) -(186,47:16658333,15324337:501378,78643,0 -(186,47:16822187,15324337:173670,78643,0 +(186,47:31239539,16425337:1343490,485622,11795 +k186,47:31586882,16425337:347343 +g186,47:31786111,16425337 ) +g186,47:30911859,16425337 +g186,47:32583029,16425337 ) -(186,47:17159711,15324337:501378,78643,0 -(186,47:17323565,15324337:173670,78643,0 +(186,48:6630773,17290417:25952256,505283,102891 +g186,48:12529013,17290417 +h186,48:12529013,17290417:3080190,0,0 +h186,48:15609203,17290417:0,0,0 +g186,48:9710963,17290417 +(186,48:9710963,17290417:2818050,485622,11795 +k186,48:12529013,17290417:1275332 ) +g186,48:15295287,17290417 +g186,48:18882727,17290417 +g186,48:21669973,17290417 +g186,48:23060647,17290417 +g186,48:25910152,17290417 +(186,48:26184515,17290417:501378,78643,0 +$186,48:26184515,17290417 +(186,48:26348369,17290417:173670,78643,0 ) -(186,47:17661089,15324337:501378,78643,0 -(186,47:17824943,15324337:173670,78643,0 +$186,48:26685893,17290417 ) +(186,48:26685893,17290417:501378,78643,0 +(186,48:26849747,17290417:173670,78643,0 ) -(186,47:18162467,15324337:501378,78643,0 -(186,47:18326321,15324337:173670,78643,0 ) +(186,48:27187271,17290417:501378,78643,0 +(186,48:27351125,17290417:173670,78643,0 ) -(186,47:18663845,15324337:501378,78643,0 -(186,47:18827699,15324337:173670,78643,0 ) +(186,48:27688649,17290417:501378,78643,0 +(186,48:27852503,17290417:173670,78643,0 ) -(186,47:19165223,15324337:501378,78643,0 -(186,47:19329077,15324337:173670,78643,0 ) +(186,48:28190027,17290417:501378,78643,0 +(186,48:28353881,17290417:173670,78643,0 ) -(186,47:19666601,15324337:501378,78643,0 -(186,47:19830455,15324337:173670,78643,0 ) +(186,48:28691405,17290417:501378,78643,0 +(186,48:28855259,17290417:173670,78643,0 ) -(186,47:20167979,15324337:501378,78643,0 -(186,47:20331833,15324337:173670,78643,0 ) +(186,48:29192783,17290417:501378,78643,0 +(186,48:29356637,17290417:173670,78643,0 ) -(186,47:20669357,15324337:501378,78643,0 -(186,47:20833211,15324337:173670,78643,0 ) +(186,48:29694161,17290417:501378,78643,0 +(186,48:29858015,17290417:173670,78643,0 ) -(186,47:21170735,15324337:501378,78643,0 -(186,47:21334589,15324337:173670,78643,0 ) +(186,48:30195539,17290417:501378,78643,0 +(186,48:30359393,17290417:173670,78643,0 ) -(186,47:21672113,15324337:501378,78643,0 -(186,47:21835967,15324337:173670,78643,0 ) +(186,48:30696917,17290417:501378,78643,0 +(186,48:30860771,17290417:173670,78643,0 ) -(186,47:22173491,15324337:501378,78643,0 -(186,47:22337345,15324337:173670,78643,0 ) +(186,48:31239539,17290417:1343490,485622,11795 +k186,48:31586882,17290417:347343 +g186,48:31786111,17290417 ) -(186,47:22674869,15324337:501378,78643,0 -(186,47:22838723,15324337:173670,78643,0 +g186,48:30911859,17290417 +g186,48:32583029,17290417 ) +(186,49:6630773,18155497:25952256,505283,11795 +g186,49:12529013,18155497 +h186,49:12529013,18155497:3080190,0,0 +h186,49:15609203,18155497:0,0,0 +g186,49:9710963,18155497 +(186,49:9710963,18155497:2818050,485622,11795 +k186,49:12529013,18155497:1275332 ) -(186,47:23176247,15324337:501378,78643,0 -(186,47:23340101,15324337:173670,78643,0 +g186,49:14923043,18155497 +g186,49:16246870,18155497 +(186,49:16658333,18155497:501378,78643,0 +$186,49:16658333,18155497 +(186,49:16822187,18155497:173670,78643,0 ) +$186,49:17159711,18155497 ) -(186,47:23677625,15324337:501378,78643,0 -(186,47:23841479,15324337:173670,78643,0 +(186,49:17159711,18155497:501378,78643,0 +(186,49:17323565,18155497:173670,78643,0 ) ) -(186,47:24179003,15324337:501378,78643,0 -(186,47:24342857,15324337:173670,78643,0 +(186,49:17661089,18155497:501378,78643,0 +(186,49:17824943,18155497:173670,78643,0 ) ) -(186,47:24680381,15324337:501378,78643,0 -(186,47:24844235,15324337:173670,78643,0 +(186,49:18162467,18155497:501378,78643,0 +(186,49:18326321,18155497:173670,78643,0 ) ) -(186,47:25181759,15324337:501378,78643,0 -(186,47:25345613,15324337:173670,78643,0 +(186,49:18663845,18155497:501378,78643,0 +(186,49:18827699,18155497:173670,78643,0 ) ) -(186,47:25683137,15324337:501378,78643,0 -(186,47:25846991,15324337:173670,78643,0 +(186,49:19165223,18155497:501378,78643,0 +(186,49:19329077,18155497:173670,78643,0 ) ) -(186,47:26184515,15324337:501378,78643,0 -(186,47:26348369,15324337:173670,78643,0 +(186,49:19666601,18155497:501378,78643,0 +(186,49:19830455,18155497:173670,78643,0 ) ) -(186,47:26685893,15324337:501378,78643,0 -(186,47:26849747,15324337:173670,78643,0 +(186,49:20167979,18155497:501378,78643,0 +(186,49:20331833,18155497:173670,78643,0 ) ) -(186,47:27187271,15324337:501378,78643,0 -(186,47:27351125,15324337:173670,78643,0 +(186,49:20669357,18155497:501378,78643,0 +(186,49:20833211,18155497:173670,78643,0 ) ) -(186,47:27688649,15324337:501378,78643,0 -(186,47:27852503,15324337:173670,78643,0 +(186,49:21170735,18155497:501378,78643,0 +(186,49:21334589,18155497:173670,78643,0 ) ) -(186,47:28190027,15324337:501378,78643,0 -(186,47:28353881,15324337:173670,78643,0 +(186,49:21672113,18155497:501378,78643,0 +(186,49:21835967,18155497:173670,78643,0 ) ) -(186,47:28691405,15324337:501378,78643,0 -(186,47:28855259,15324337:173670,78643,0 +(186,49:22173491,18155497:501378,78643,0 +(186,49:22337345,18155497:173670,78643,0 ) ) -(186,47:29192783,15324337:501378,78643,0 -(186,47:29356637,15324337:173670,78643,0 +(186,49:22674869,18155497:501378,78643,0 +(186,49:22838723,18155497:173670,78643,0 ) ) -(186,47:29694161,15324337:501378,78643,0 -(186,47:29858015,15324337:173670,78643,0 +(186,49:23176247,18155497:501378,78643,0 +(186,49:23340101,18155497:173670,78643,0 ) ) -(186,47:30195539,15324337:501378,78643,0 -(186,47:30359393,15324337:173670,78643,0 +(186,49:23677625,18155497:501378,78643,0 +(186,49:23841479,18155497:173670,78643,0 ) ) -(186,47:30696917,15324337:501378,78643,0 -(186,47:30860771,15324337:173670,78643,0 +(186,49:24179003,18155497:501378,78643,0 +(186,49:24342857,18155497:173670,78643,0 ) ) -(186,47:31239539,15324337:1343490,485622,11795 -k186,47:31586882,15324337:347343 -g186,47:31786111,15324337 +(186,49:24680381,18155497:501378,78643,0 +(186,49:24844235,18155497:173670,78643,0 ) -g186,47:30911859,15324337 -g186,47:32583029,15324337 ) -(186,48:6630773,16165825:25952256,505283,102891 -g186,48:11873653,16165825 -h186,48:11873653,16165825:2818050,0,0 -h186,48:14691703,16165825:0,0,0 -g186,48:9448823,16165825 -(186,48:9448823,16165825:2424830,485622,11795 -k186,48:11873653,16165825:882112 +(186,49:25181759,18155497:501378,78643,0 +(186,49:25345613,18155497:173670,78643,0 ) -g186,48:14639927,16165825 -g186,48:18227367,16165825 -g186,48:21014613,16165825 -g186,48:22405287,16165825 -g186,48:25254792,16165825 -(186,48:25683137,16165825:501378,78643,0 -$186,48:25683137,16165825 -(186,48:25846991,16165825:173670,78643,0 ) -$186,48:26184515,16165825 +(186,49:25683137,18155497:501378,78643,0 +(186,49:25846991,18155497:173670,78643,0 ) -(186,48:26184515,16165825:501378,78643,0 -(186,48:26348369,16165825:173670,78643,0 ) +(186,49:26184515,18155497:501378,78643,0 +(186,49:26348369,18155497:173670,78643,0 ) -(186,48:26685893,16165825:501378,78643,0 -(186,48:26849747,16165825:173670,78643,0 ) +(186,49:26685893,18155497:501378,78643,0 +(186,49:26849747,18155497:173670,78643,0 ) -(186,48:27187271,16165825:501378,78643,0 -(186,48:27351125,16165825:173670,78643,0 ) +(186,49:27187271,18155497:501378,78643,0 +(186,49:27351125,18155497:173670,78643,0 ) -(186,48:27688649,16165825:501378,78643,0 -(186,48:27852503,16165825:173670,78643,0 ) +(186,49:27688649,18155497:501378,78643,0 +(186,49:27852503,18155497:173670,78643,0 ) -(186,48:28190027,16165825:501378,78643,0 -(186,48:28353881,16165825:173670,78643,0 ) +(186,49:28190027,18155497:501378,78643,0 +(186,49:28353881,18155497:173670,78643,0 ) -(186,48:28691405,16165825:501378,78643,0 -(186,48:28855259,16165825:173670,78643,0 ) +(186,49:28691405,18155497:501378,78643,0 +(186,49:28855259,18155497:173670,78643,0 ) -(186,48:29192783,16165825:501378,78643,0 -(186,48:29356637,16165825:173670,78643,0 ) +(186,49:29192783,18155497:501378,78643,0 +(186,49:29356637,18155497:173670,78643,0 ) -(186,48:29694161,16165825:501378,78643,0 -(186,48:29858015,16165825:173670,78643,0 ) +(186,49:29694161,18155497:501378,78643,0 +(186,49:29858015,18155497:173670,78643,0 ) -(186,48:30195539,16165825:501378,78643,0 -(186,48:30359393,16165825:173670,78643,0 ) +(186,49:30195539,18155497:501378,78643,0 +(186,49:30359393,18155497:173670,78643,0 ) -(186,48:30696917,16165825:501378,78643,0 -(186,48:30860771,16165825:173670,78643,0 ) +(186,49:30696917,18155497:501378,78643,0 +(186,49:30860771,18155497:173670,78643,0 ) -(186,48:31239539,16165825:1343490,485622,11795 -k186,48:31586882,16165825:347343 -g186,48:31786111,16165825 ) -g186,48:30911859,16165825 -g186,48:32583029,16165825 +(186,49:31239539,18155497:1343490,485622,11795 +k186,49:31586882,18155497:347343 +g186,49:31786111,18155497 ) -(186,49:6630773,17007313:25952256,505283,11795 -g186,49:11873653,17007313 -h186,49:11873653,17007313:2818050,0,0 -h186,49:14691703,17007313:0,0,0 -g186,49:9448823,17007313 -(186,49:9448823,17007313:2424830,485622,11795 -k186,49:11873653,17007313:882112 +g186,49:30911859,18155497 +g186,49:32583029,18155497 ) -g186,49:14267683,17007313 -g186,49:15591510,17007313 -(186,49:15655577,17007313:501378,78643,0 -$186,49:15655577,17007313 -(186,49:15819431,17007313:173670,78643,0 +(186,50:6630773,19020577:25952256,513147,11795 +g186,50:9710963,19020577 +h186,50:9710963,19020577:983040,0,0 +h186,50:10694003,19020577:0,0,0 +g186,50:7613813,19020577 +(186,50:7613813,19020577:2097150,481690,0 +k186,50:9710963,19020577:1126562 ) -$186,49:16156955,17007313 +g186,50:11382131,19020577 +g186,50:13787957,19020577 +g186,50:13787957,19020577 +(186,50:14151443,19020577:501378,78643,0 +$186,50:14151443,19020577 +(186,50:14315297,19020577:173670,78643,0 ) -(186,49:16156955,17007313:501378,78643,0 -(186,49:16320809,17007313:173670,78643,0 +$186,50:14652821,19020577 ) +(186,50:14652821,19020577:501378,78643,0 +(186,50:14816675,19020577:173670,78643,0 ) -(186,49:16658333,17007313:501378,78643,0 -(186,49:16822187,17007313:173670,78643,0 ) +(186,50:15154199,19020577:501378,78643,0 +(186,50:15318053,19020577:173670,78643,0 ) -(186,49:17159711,17007313:501378,78643,0 -(186,49:17323565,17007313:173670,78643,0 ) +(186,50:15655577,19020577:501378,78643,0 +(186,50:15819431,19020577:173670,78643,0 ) -(186,49:17661089,17007313:501378,78643,0 -(186,49:17824943,17007313:173670,78643,0 ) +(186,50:16156955,19020577:501378,78643,0 +(186,50:16320809,19020577:173670,78643,0 ) -(186,49:18162467,17007313:501378,78643,0 -(186,49:18326321,17007313:173670,78643,0 ) +(186,50:16658333,19020577:501378,78643,0 +(186,50:16822187,19020577:173670,78643,0 ) -(186,49:18663845,17007313:501378,78643,0 -(186,49:18827699,17007313:173670,78643,0 ) +(186,50:17159711,19020577:501378,78643,0 +(186,50:17323565,19020577:173670,78643,0 ) -(186,49:19165223,17007313:501378,78643,0 -(186,49:19329077,17007313:173670,78643,0 ) +(186,50:17661089,19020577:501378,78643,0 +(186,50:17824943,19020577:173670,78643,0 ) -(186,49:19666601,17007313:501378,78643,0 -(186,49:19830455,17007313:173670,78643,0 ) +(186,50:18162467,19020577:501378,78643,0 +(186,50:18326321,19020577:173670,78643,0 ) -(186,49:20167979,17007313:501378,78643,0 -(186,49:20331833,17007313:173670,78643,0 ) +(186,50:18663845,19020577:501378,78643,0 +(186,50:18827699,19020577:173670,78643,0 ) -(186,49:20669357,17007313:501378,78643,0 -(186,49:20833211,17007313:173670,78643,0 ) +(186,50:19165223,19020577:501378,78643,0 +(186,50:19329077,19020577:173670,78643,0 ) -(186,49:21170735,17007313:501378,78643,0 -(186,49:21334589,17007313:173670,78643,0 ) +(186,50:19666601,19020577:501378,78643,0 +(186,50:19830455,19020577:173670,78643,0 ) -(186,49:21672113,17007313:501378,78643,0 -(186,49:21835967,17007313:173670,78643,0 ) +(186,50:20167979,19020577:501378,78643,0 +(186,50:20331833,19020577:173670,78643,0 ) -(186,49:22173491,17007313:501378,78643,0 -(186,49:22337345,17007313:173670,78643,0 ) +(186,50:20669357,19020577:501378,78643,0 +(186,50:20833211,19020577:173670,78643,0 ) -(186,49:22674869,17007313:501378,78643,0 -(186,49:22838723,17007313:173670,78643,0 ) +(186,50:21170735,19020577:501378,78643,0 +(186,50:21334589,19020577:173670,78643,0 ) -(186,49:23176247,17007313:501378,78643,0 -(186,49:23340101,17007313:173670,78643,0 ) +(186,50:21672113,19020577:501378,78643,0 +(186,50:21835967,19020577:173670,78643,0 ) -(186,49:23677625,17007313:501378,78643,0 -(186,49:23841479,17007313:173670,78643,0 ) +(186,50:22173491,19020577:501378,78643,0 +(186,50:22337345,19020577:173670,78643,0 ) -(186,49:24179003,17007313:501378,78643,0 -(186,49:24342857,17007313:173670,78643,0 ) +(186,50:22674869,19020577:501378,78643,0 +(186,50:22838723,19020577:173670,78643,0 ) -(186,49:24680381,17007313:501378,78643,0 -(186,49:24844235,17007313:173670,78643,0 ) +(186,50:23176247,19020577:501378,78643,0 +(186,50:23340101,19020577:173670,78643,0 ) -(186,49:25181759,17007313:501378,78643,0 -(186,49:25345613,17007313:173670,78643,0 ) +(186,50:23677625,19020577:501378,78643,0 +(186,50:23841479,19020577:173670,78643,0 ) -(186,49:25683137,17007313:501378,78643,0 -(186,49:25846991,17007313:173670,78643,0 ) +(186,50:24179003,19020577:501378,78643,0 +(186,50:24342857,19020577:173670,78643,0 ) -(186,49:26184515,17007313:501378,78643,0 -(186,49:26348369,17007313:173670,78643,0 ) +(186,50:24680381,19020577:501378,78643,0 +(186,50:24844235,19020577:173670,78643,0 ) -(186,49:26685893,17007313:501378,78643,0 -(186,49:26849747,17007313:173670,78643,0 ) +(186,50:25181759,19020577:501378,78643,0 +(186,50:25345613,19020577:173670,78643,0 ) -(186,49:27187271,17007313:501378,78643,0 -(186,49:27351125,17007313:173670,78643,0 ) +(186,50:25683137,19020577:501378,78643,0 +(186,50:25846991,19020577:173670,78643,0 ) -(186,49:27688649,17007313:501378,78643,0 -(186,49:27852503,17007313:173670,78643,0 ) +(186,50:26184515,19020577:501378,78643,0 +(186,50:26348369,19020577:173670,78643,0 ) -(186,49:28190027,17007313:501378,78643,0 -(186,49:28353881,17007313:173670,78643,0 ) +(186,50:26685893,19020577:501378,78643,0 +(186,50:26849747,19020577:173670,78643,0 ) -(186,49:28691405,17007313:501378,78643,0 -(186,49:28855259,17007313:173670,78643,0 ) +(186,50:27187271,19020577:501378,78643,0 +(186,50:27351125,19020577:173670,78643,0 ) -(186,49:29192783,17007313:501378,78643,0 -(186,49:29356637,17007313:173670,78643,0 ) +(186,50:27688649,19020577:501378,78643,0 +(186,50:27852503,19020577:173670,78643,0 ) -(186,49:29694161,17007313:501378,78643,0 -(186,49:29858015,17007313:173670,78643,0 ) +(186,50:28190027,19020577:501378,78643,0 +(186,50:28353881,19020577:173670,78643,0 ) -(186,49:30195539,17007313:501378,78643,0 -(186,49:30359393,17007313:173670,78643,0 ) +(186,50:28691405,19020577:501378,78643,0 +(186,50:28855259,19020577:173670,78643,0 ) -(186,49:30696917,17007313:501378,78643,0 -(186,49:30860771,17007313:173670,78643,0 ) +(186,50:29192783,19020577:501378,78643,0 +(186,50:29356637,19020577:173670,78643,0 ) -(186,49:31239539,17007313:1343490,485622,11795 -k186,49:31586882,17007313:347343 -g186,49:31786111,17007313 ) -g186,49:30911859,17007313 -g186,49:32583029,17007313 +(186,50:29694161,19020577:501378,78643,0 +(186,50:29858015,19020577:173670,78643,0 ) -(186,50:6630773,17848801:25952256,513147,11795 -g186,50:9448823,17848801 -h186,50:9448823,17848801:983040,0,0 -h186,50:10431863,17848801:0,0,0 -g186,50:7613813,17848801 -(186,50:7613813,17848801:1835010,481690,0 -k186,50:9448823,17848801:864422 ) -g186,50:11119991,17848801 -g186,50:13525817,17848801 -g186,50:13525817,17848801 -(186,50:13650065,17848801:501378,78643,0 -$186,50:13650065,17848801 -(186,50:13813919,17848801:173670,78643,0 +(186,50:30195539,19020577:501378,78643,0 +(186,50:30359393,19020577:173670,78643,0 ) -$186,50:14151443,17848801 ) -(186,50:14151443,17848801:501378,78643,0 -(186,50:14315297,17848801:173670,78643,0 +(186,50:30696917,19020577:501378,78643,0 +(186,50:30860771,19020577:173670,78643,0 ) ) -(186,50:14652821,17848801:501378,78643,0 -(186,50:14816675,17848801:173670,78643,0 +(186,50:31239539,19020577:1343490,485622,11795 +k186,50:31586882,19020577:347343 +g186,50:31786111,19020577 ) +g186,50:30911859,19020577 +g186,50:32583029,19020577 ) -(186,50:15154199,17848801:501378,78643,0 -(186,50:15318053,17848801:173670,78643,0 +(186,51:6630773,19885657:25952256,513147,134348 +g186,51:12529013,19885657 +h186,51:12529013,19885657:3080190,0,0 +h186,51:15609203,19885657:0,0,0 +g186,51:9710963,19885657 +(186,51:9710963,19885657:2818050,481690,0 +k186,51:12529013,19885657:1275332 ) +g186,51:16293401,19885657 +g186,51:17881993,19885657 +g186,51:20088590,19885657 +(186,51:20167979,19885657:501378,78643,0 +$186,51:20167979,19885657 +(186,51:20331833,19885657:173670,78643,0 ) -(186,50:15655577,17848801:501378,78643,0 -(186,50:15819431,17848801:173670,78643,0 +$186,51:20669357,19885657 ) +(186,51:20669357,19885657:501378,78643,0 +(186,51:20833211,19885657:173670,78643,0 ) -(186,50:16156955,17848801:501378,78643,0 -(186,50:16320809,17848801:173670,78643,0 ) +(186,51:21170735,19885657:501378,78643,0 +(186,51:21334589,19885657:173670,78643,0 ) -(186,50:16658333,17848801:501378,78643,0 -(186,50:16822187,17848801:173670,78643,0 ) +(186,51:21672113,19885657:501378,78643,0 +(186,51:21835967,19885657:173670,78643,0 ) -(186,50:17159711,17848801:501378,78643,0 -(186,50:17323565,17848801:173670,78643,0 ) +(186,51:22173491,19885657:501378,78643,0 +(186,51:22337345,19885657:173670,78643,0 ) -(186,50:17661089,17848801:501378,78643,0 -(186,50:17824943,17848801:173670,78643,0 ) +(186,51:22674869,19885657:501378,78643,0 +(186,51:22838723,19885657:173670,78643,0 ) -(186,50:18162467,17848801:501378,78643,0 -(186,50:18326321,17848801:173670,78643,0 ) +(186,51:23176247,19885657:501378,78643,0 +(186,51:23340101,19885657:173670,78643,0 ) -(186,50:18663845,17848801:501378,78643,0 -(186,50:18827699,17848801:173670,78643,0 ) +(186,51:23677625,19885657:501378,78643,0 +(186,51:23841479,19885657:173670,78643,0 ) -(186,50:19165223,17848801:501378,78643,0 -(186,50:19329077,17848801:173670,78643,0 ) +(186,51:24179003,19885657:501378,78643,0 +(186,51:24342857,19885657:173670,78643,0 ) -(186,50:19666601,17848801:501378,78643,0 -(186,50:19830455,17848801:173670,78643,0 ) +(186,51:24680381,19885657:501378,78643,0 +(186,51:24844235,19885657:173670,78643,0 ) -(186,50:20167979,17848801:501378,78643,0 -(186,50:20331833,17848801:173670,78643,0 ) +(186,51:25181759,19885657:501378,78643,0 +(186,51:25345613,19885657:173670,78643,0 ) -(186,50:20669357,17848801:501378,78643,0 -(186,50:20833211,17848801:173670,78643,0 ) +(186,51:25683137,19885657:501378,78643,0 +(186,51:25846991,19885657:173670,78643,0 ) -(186,50:21170735,17848801:501378,78643,0 -(186,50:21334589,17848801:173670,78643,0 ) +(186,51:26184515,19885657:501378,78643,0 +(186,51:26348369,19885657:173670,78643,0 ) -(186,50:21672113,17848801:501378,78643,0 -(186,50:21835967,17848801:173670,78643,0 ) +(186,51:26685893,19885657:501378,78643,0 +(186,51:26849747,19885657:173670,78643,0 ) -(186,50:22173491,17848801:501378,78643,0 -(186,50:22337345,17848801:173670,78643,0 ) +(186,51:27187271,19885657:501378,78643,0 +(186,51:27351125,19885657:173670,78643,0 ) -(186,50:22674869,17848801:501378,78643,0 -(186,50:22838723,17848801:173670,78643,0 ) +(186,51:27688649,19885657:501378,78643,0 +(186,51:27852503,19885657:173670,78643,0 ) -(186,50:23176247,17848801:501378,78643,0 -(186,50:23340101,17848801:173670,78643,0 ) +(186,51:28190027,19885657:501378,78643,0 +(186,51:28353881,19885657:173670,78643,0 ) -(186,50:23677625,17848801:501378,78643,0 -(186,50:23841479,17848801:173670,78643,0 ) +(186,51:28691405,19885657:501378,78643,0 +(186,51:28855259,19885657:173670,78643,0 ) -(186,50:24179003,17848801:501378,78643,0 -(186,50:24342857,17848801:173670,78643,0 ) +(186,51:29192783,19885657:501378,78643,0 +(186,51:29356637,19885657:173670,78643,0 ) -(186,50:24680381,17848801:501378,78643,0 -(186,50:24844235,17848801:173670,78643,0 ) +(186,51:29694161,19885657:501378,78643,0 +(186,51:29858015,19885657:173670,78643,0 ) -(186,50:25181759,17848801:501378,78643,0 -(186,50:25345613,17848801:173670,78643,0 ) +(186,51:30195539,19885657:501378,78643,0 +(186,51:30359393,19885657:173670,78643,0 ) -(186,50:25683137,17848801:501378,78643,0 -(186,50:25846991,17848801:173670,78643,0 ) +(186,51:30696917,19885657:501378,78643,0 +(186,51:30860771,19885657:173670,78643,0 ) -(186,50:26184515,17848801:501378,78643,0 -(186,50:26348369,17848801:173670,78643,0 ) +(186,51:31239539,19885657:1343490,485622,11795 +k186,51:31586882,19885657:347343 +g186,51:31786111,19885657 ) -(186,50:26685893,17848801:501378,78643,0 -(186,50:26849747,17848801:173670,78643,0 +g186,51:30911859,19885657 +g186,51:32583029,19885657 ) +(186,52:6630773,20750737:25952256,513147,134348 +g186,52:12529013,20750737 +h186,52:12529013,20750737:3080190,0,0 +h186,52:15609203,20750737:0,0,0 +g186,52:9710963,20750737 +(186,52:9710963,20750737:2818050,485622,0 +k186,52:12529013,20750737:1275332 ) -(186,50:27187271,17848801:501378,78643,0 -(186,50:27351125,17848801:173670,78643,0 +g186,52:16963834,20750737 +g186,52:18354508,20750737 +g186,52:21215154,20750737 +g186,52:22803746,20750737 +g186,52:25010343,20750737 +(186,52:25181759,20750737:501378,78643,0 +$186,52:25181759,20750737 +(186,52:25345613,20750737:173670,78643,0 ) +$186,52:25683137,20750737 ) -(186,50:27688649,17848801:501378,78643,0 -(186,50:27852503,17848801:173670,78643,0 +(186,52:25683137,20750737:501378,78643,0 +(186,52:25846991,20750737:173670,78643,0 ) ) -(186,50:28190027,17848801:501378,78643,0 -(186,50:28353881,17848801:173670,78643,0 +(186,52:26184515,20750737:501378,78643,0 +(186,52:26348369,20750737:173670,78643,0 ) ) -(186,50:28691405,17848801:501378,78643,0 -(186,50:28855259,17848801:173670,78643,0 +(186,52:26685893,20750737:501378,78643,0 +(186,52:26849747,20750737:173670,78643,0 ) ) -(186,50:29192783,17848801:501378,78643,0 -(186,50:29356637,17848801:173670,78643,0 +(186,52:27187271,20750737:501378,78643,0 +(186,52:27351125,20750737:173670,78643,0 ) ) -(186,50:29694161,17848801:501378,78643,0 -(186,50:29858015,17848801:173670,78643,0 +(186,52:27688649,20750737:501378,78643,0 +(186,52:27852503,20750737:173670,78643,0 ) ) -(186,50:30195539,17848801:501378,78643,0 -(186,50:30359393,17848801:173670,78643,0 +(186,52:28190027,20750737:501378,78643,0 +(186,52:28353881,20750737:173670,78643,0 ) ) -(186,50:30696917,17848801:501378,78643,0 -(186,50:30860771,17848801:173670,78643,0 +(186,52:28691405,20750737:501378,78643,0 +(186,52:28855259,20750737:173670,78643,0 ) ) -(186,50:31239539,17848801:1343490,485622,11795 -k186,50:31586882,17848801:347343 -g186,50:31786111,17848801 +(186,52:29192783,20750737:501378,78643,0 +(186,52:29356637,20750737:173670,78643,0 ) -g186,50:30911859,17848801 -g186,50:32583029,17848801 ) -(186,51:6630773,18690289:25952256,513147,134348 -g186,51:11873653,18690289 -h186,51:11873653,18690289:2818050,0,0 -h186,51:14691703,18690289:0,0,0 -g186,51:9448823,18690289 -(186,51:9448823,18690289:2424830,481690,0 -k186,51:11873653,18690289:882112 +(186,52:29694161,20750737:501378,78643,0 +(186,52:29858015,20750737:173670,78643,0 ) -g186,51:15638041,18690289 -g186,51:17226633,18690289 -g186,51:19433230,18690289 -(186,51:19666601,18690289:501378,78643,0 -$186,51:19666601,18690289 -(186,51:19830455,18690289:173670,78643,0 ) -$186,51:20167979,18690289 +(186,52:30195539,20750737:501378,78643,0 +(186,52:30359393,20750737:173670,78643,0 ) -(186,51:20167979,18690289:501378,78643,0 -(186,51:20331833,18690289:173670,78643,0 ) +(186,52:30696917,20750737:501378,78643,0 +(186,52:30860771,20750737:173670,78643,0 ) -(186,51:20669357,18690289:501378,78643,0 -(186,51:20833211,18690289:173670,78643,0 ) +(186,52:31239539,20750737:1343490,485622,11795 +k186,52:31239539,20750737:0 +k186,52:31387652,20750737:148113 ) -(186,51:21170735,18690289:501378,78643,0 -(186,51:21334589,18690289:173670,78643,0 +g186,52:30911859,20750737 +g186,52:32583029,20750737 ) +(186,53:6630773,21615817:25952256,505283,134348 +g186,53:12529013,21615817 +h186,53:12529013,21615817:3080190,0,0 +h186,53:15609203,21615817:0,0,0 +g186,53:9710963,21615817 +(186,53:9710963,21615817:2818050,485622,11795 +k186,53:12529013,21615817:1275332 ) -(186,51:21672113,18690289:501378,78643,0 -(186,51:21835967,18690289:173670,78643,0 +g186,53:16801305,21615817 +g186,53:19713725,21615817 +g186,53:21104399,21615817 +g186,53:22638597,21615817 +(186,53:22674869,21615817:501378,78643,0 +$186,53:22674869,21615817 +(186,53:22838723,21615817:173670,78643,0 ) +$186,53:23176247,21615817 ) -(186,51:22173491,18690289:501378,78643,0 -(186,51:22337345,18690289:173670,78643,0 +(186,53:23176247,21615817:501378,78643,0 +(186,53:23340101,21615817:173670,78643,0 ) ) -(186,51:22674869,18690289:501378,78643,0 -(186,51:22838723,18690289:173670,78643,0 +(186,53:23677625,21615817:501378,78643,0 +(186,53:23841479,21615817:173670,78643,0 ) ) -(186,51:23176247,18690289:501378,78643,0 -(186,51:23340101,18690289:173670,78643,0 +(186,53:24179003,21615817:501378,78643,0 +(186,53:24342857,21615817:173670,78643,0 ) ) -(186,51:23677625,18690289:501378,78643,0 -(186,51:23841479,18690289:173670,78643,0 +(186,53:24680381,21615817:501378,78643,0 +(186,53:24844235,21615817:173670,78643,0 ) ) -(186,51:24179003,18690289:501378,78643,0 -(186,51:24342857,18690289:173670,78643,0 +(186,53:25181759,21615817:501378,78643,0 +(186,53:25345613,21615817:173670,78643,0 ) ) -(186,51:24680381,18690289:501378,78643,0 -(186,51:24844235,18690289:173670,78643,0 +(186,53:25683137,21615817:501378,78643,0 +(186,53:25846991,21615817:173670,78643,0 ) ) -(186,51:25181759,18690289:501378,78643,0 -(186,51:25345613,18690289:173670,78643,0 +(186,53:26184515,21615817:501378,78643,0 +(186,53:26348369,21615817:173670,78643,0 ) ) -(186,51:25683137,18690289:501378,78643,0 -(186,51:25846991,18690289:173670,78643,0 +(186,53:26685893,21615817:501378,78643,0 +(186,53:26849747,21615817:173670,78643,0 ) ) -(186,51:26184515,18690289:501378,78643,0 -(186,51:26348369,18690289:173670,78643,0 +(186,53:27187271,21615817:501378,78643,0 +(186,53:27351125,21615817:173670,78643,0 ) ) -(186,51:26685893,18690289:501378,78643,0 -(186,51:26849747,18690289:173670,78643,0 +(186,53:27688649,21615817:501378,78643,0 +(186,53:27852503,21615817:173670,78643,0 ) ) -(186,51:27187271,18690289:501378,78643,0 -(186,51:27351125,18690289:173670,78643,0 +(186,53:28190027,21615817:501378,78643,0 +(186,53:28353881,21615817:173670,78643,0 ) ) -(186,51:27688649,18690289:501378,78643,0 -(186,51:27852503,18690289:173670,78643,0 +(186,53:28691405,21615817:501378,78643,0 +(186,53:28855259,21615817:173670,78643,0 ) ) -(186,51:28190027,18690289:501378,78643,0 -(186,51:28353881,18690289:173670,78643,0 +(186,53:29192783,21615817:501378,78643,0 +(186,53:29356637,21615817:173670,78643,0 ) ) -(186,51:28691405,18690289:501378,78643,0 -(186,51:28855259,18690289:173670,78643,0 +(186,53:29694161,21615817:501378,78643,0 +(186,53:29858015,21615817:173670,78643,0 ) ) -(186,51:29192783,18690289:501378,78643,0 -(186,51:29356637,18690289:173670,78643,0 +(186,53:30195539,21615817:501378,78643,0 +(186,53:30359393,21615817:173670,78643,0 ) ) -(186,51:29694161,18690289:501378,78643,0 -(186,51:29858015,18690289:173670,78643,0 +(186,53:30696917,21615817:501378,78643,0 +(186,53:30860771,21615817:173670,78643,0 ) ) -(186,51:30195539,18690289:501378,78643,0 -(186,51:30359393,18690289:173670,78643,0 +(186,53:31239539,21615817:1343490,485622,11795 +k186,53:31239539,21615817:0 +k186,53:31387652,21615817:148113 ) +g186,53:30911859,21615817 +g186,53:32583029,21615817 ) -(186,51:30696917,18690289:501378,78643,0 -(186,51:30860771,18690289:173670,78643,0 +(186,54:6630773,22480897:25952256,505283,134348 +g186,54:12529013,22480897 +h186,54:12529013,22480897:3080190,0,0 +h186,54:15609203,22480897:0,0,0 +g186,54:9710963,22480897 +(186,54:9710963,22480897:2818050,481690,0 +k186,54:12529013,22480897:1275332 ) +g186,54:16634843,22480897 +g186,54:17516957,22480897 +g186,54:19903778,22480897 +g186,54:22745419,22480897 +(186,54:23176247,22480897:501378,78643,0 +$186,54:23176247,22480897 +(186,54:23340101,22480897:173670,78643,0 ) -(186,51:31239539,18690289:1343490,485622,11795 -k186,51:31239539,18690289:0 -k186,51:31387652,18690289:148113 +$186,54:23677625,22480897 ) -g186,51:30911859,18690289 -g186,51:32583029,18690289 +(186,54:23677625,22480897:501378,78643,0 +(186,54:23841479,22480897:173670,78643,0 ) -(186,52:6630773,19531777:25952256,513147,134348 -g186,52:11873653,19531777 -h186,52:11873653,19531777:2818050,0,0 -h186,52:14691703,19531777:0,0,0 -g186,52:9448823,19531777 -(186,52:9448823,19531777:2424830,485622,0 -k186,52:11873653,19531777:882112 ) -g186,52:16308474,19531777 -g186,52:17699148,19531777 -g186,52:20559794,19531777 -g186,52:22148386,19531777 -g186,52:24354983,19531777 -(186,52:24680381,19531777:501378,78643,0 -$186,52:24680381,19531777 -(186,52:24844235,19531777:173670,78643,0 +(186,54:24179003,22480897:501378,78643,0 +(186,54:24342857,22480897:173670,78643,0 ) -$186,52:25181759,19531777 ) -(186,52:25181759,19531777:501378,78643,0 -(186,52:25345613,19531777:173670,78643,0 +(186,54:24680381,22480897:501378,78643,0 +(186,54:24844235,22480897:173670,78643,0 ) ) -(186,52:25683137,19531777:501378,78643,0 -(186,52:25846991,19531777:173670,78643,0 +(186,54:25181759,22480897:501378,78643,0 +(186,54:25345613,22480897:173670,78643,0 ) ) -(186,52:26184515,19531777:501378,78643,0 -(186,52:26348369,19531777:173670,78643,0 +(186,54:25683137,22480897:501378,78643,0 +(186,54:25846991,22480897:173670,78643,0 ) ) -(186,52:26685893,19531777:501378,78643,0 -(186,52:26849747,19531777:173670,78643,0 +(186,54:26184515,22480897:501378,78643,0 +(186,54:26348369,22480897:173670,78643,0 ) ) -(186,52:27187271,19531777:501378,78643,0 -(186,52:27351125,19531777:173670,78643,0 +(186,54:26685893,22480897:501378,78643,0 +(186,54:26849747,22480897:173670,78643,0 ) ) -(186,52:27688649,19531777:501378,78643,0 -(186,52:27852503,19531777:173670,78643,0 +(186,54:27187271,22480897:501378,78643,0 +(186,54:27351125,22480897:173670,78643,0 ) ) -(186,52:28190027,19531777:501378,78643,0 -(186,52:28353881,19531777:173670,78643,0 +(186,54:27688649,22480897:501378,78643,0 +(186,54:27852503,22480897:173670,78643,0 ) ) -(186,52:28691405,19531777:501378,78643,0 -(186,52:28855259,19531777:173670,78643,0 +(186,54:28190027,22480897:501378,78643,0 +(186,54:28353881,22480897:173670,78643,0 ) ) -(186,52:29192783,19531777:501378,78643,0 -(186,52:29356637,19531777:173670,78643,0 +(186,54:28691405,22480897:501378,78643,0 +(186,54:28855259,22480897:173670,78643,0 ) ) -(186,52:29694161,19531777:501378,78643,0 -(186,52:29858015,19531777:173670,78643,0 +(186,54:29192783,22480897:501378,78643,0 +(186,54:29356637,22480897:173670,78643,0 ) ) -(186,52:30195539,19531777:501378,78643,0 -(186,52:30359393,19531777:173670,78643,0 +(186,54:29694161,22480897:501378,78643,0 +(186,54:29858015,22480897:173670,78643,0 ) ) -(186,52:30696917,19531777:501378,78643,0 -(186,52:30860771,19531777:173670,78643,0 +(186,54:30195539,22480897:501378,78643,0 +(186,54:30359393,22480897:173670,78643,0 ) ) -(186,52:31239539,19531777:1343490,485622,11795 -k186,52:31239539,19531777:0 -k186,52:31387652,19531777:148113 +(186,54:30696917,22480897:501378,78643,0 +(186,54:30860771,22480897:173670,78643,0 ) -g186,52:30911859,19531777 -g186,52:32583029,19531777 ) -(186,53:6630773,20373265:25952256,505283,134348 -g186,53:11873653,20373265 -h186,53:11873653,20373265:2818050,0,0 -h186,53:14691703,20373265:0,0,0 -g186,53:9448823,20373265 -(186,53:9448823,20373265:2424830,485622,11795 -k186,53:11873653,20373265:882112 +(186,54:31239539,22480897:1343490,485622,11795 +k186,54:31239539,22480897:0 +k186,54:31387652,22480897:148113 ) -g186,53:16145945,20373265 -g186,53:19058365,20373265 -g186,53:20449039,20373265 -g186,53:21983237,20373265 -(186,53:22173491,20373265:501378,78643,0 -$186,53:22173491,20373265 -(186,53:22337345,20373265:173670,78643,0 +g186,54:30911859,22480897 +g186,54:32583029,22480897 ) -$186,53:22674869,20373265 +(186,55:6630773,23345977:25952256,513147,134348 +g186,55:12529013,23345977 +h186,55:12529013,23345977:3080190,0,0 +h186,55:15609203,23345977:0,0,0 +g186,55:9710963,23345977 +(186,55:9710963,23345977:2818050,481690,11795 +k186,55:12529013,23345977:1275332 ) -(186,53:22674869,20373265:501378,78643,0 -(186,53:22838723,20373265:173670,78643,0 +g186,55:15896908,23345977 +g186,55:18106126,23345977 +g186,55:19694718,23345977 +g186,55:21901315,23345977 +(186,55:22173491,23345977:501378,78643,0 +$186,55:22173491,23345977 +(186,55:22337345,23345977:173670,78643,0 ) +$186,55:22674869,23345977 ) -(186,53:23176247,20373265:501378,78643,0 -(186,53:23340101,20373265:173670,78643,0 +(186,55:22674869,23345977:501378,78643,0 +(186,55:22838723,23345977:173670,78643,0 ) ) -(186,53:23677625,20373265:501378,78643,0 -(186,53:23841479,20373265:173670,78643,0 +(186,55:23176247,23345977:501378,78643,0 +(186,55:23340101,23345977:173670,78643,0 ) ) -(186,53:24179003,20373265:501378,78643,0 -(186,53:24342857,20373265:173670,78643,0 +(186,55:23677625,23345977:501378,78643,0 +(186,55:23841479,23345977:173670,78643,0 ) ) -(186,53:24680381,20373265:501378,78643,0 -(186,53:24844235,20373265:173670,78643,0 +(186,55:24179003,23345977:501378,78643,0 +(186,55:24342857,23345977:173670,78643,0 ) ) -(186,53:25181759,20373265:501378,78643,0 -(186,53:25345613,20373265:173670,78643,0 +(186,55:24680381,23345977:501378,78643,0 +(186,55:24844235,23345977:173670,78643,0 ) ) -(186,53:25683137,20373265:501378,78643,0 -(186,53:25846991,20373265:173670,78643,0 +(186,55:25181759,23345977:501378,78643,0 +(186,55:25345613,23345977:173670,78643,0 ) ) -(186,53:26184515,20373265:501378,78643,0 -(186,53:26348369,20373265:173670,78643,0 +(186,55:25683137,23345977:501378,78643,0 +(186,55:25846991,23345977:173670,78643,0 ) ) -(186,53:26685893,20373265:501378,78643,0 -(186,53:26849747,20373265:173670,78643,0 +(186,55:26184515,23345977:501378,78643,0 +(186,55:26348369,23345977:173670,78643,0 ) ) -(186,53:27187271,20373265:501378,78643,0 -(186,53:27351125,20373265:173670,78643,0 +(186,55:26685893,23345977:501378,78643,0 +(186,55:26849747,23345977:173670,78643,0 ) ) -(186,53:27688649,20373265:501378,78643,0 -(186,53:27852503,20373265:173670,78643,0 +(186,55:27187271,23345977:501378,78643,0 +(186,55:27351125,23345977:173670,78643,0 ) ) -(186,53:28190027,20373265:501378,78643,0 -(186,53:28353881,20373265:173670,78643,0 +(186,55:27688649,23345977:501378,78643,0 +(186,55:27852503,23345977:173670,78643,0 ) ) -(186,53:28691405,20373265:501378,78643,0 -(186,53:28855259,20373265:173670,78643,0 +(186,55:28190027,23345977:501378,78643,0 +(186,55:28353881,23345977:173670,78643,0 ) ) -(186,53:29192783,20373265:501378,78643,0 -(186,53:29356637,20373265:173670,78643,0 +(186,55:28691405,23345977:501378,78643,0 +(186,55:28855259,23345977:173670,78643,0 ) ) -(186,53:29694161,20373265:501378,78643,0 -(186,53:29858015,20373265:173670,78643,0 +(186,55:29192783,23345977:501378,78643,0 +(186,55:29356637,23345977:173670,78643,0 ) ) -(186,53:30195539,20373265:501378,78643,0 -(186,53:30359393,20373265:173670,78643,0 +(186,55:29694161,23345977:501378,78643,0 +(186,55:29858015,23345977:173670,78643,0 ) ) -(186,53:30696917,20373265:501378,78643,0 -(186,53:30860771,20373265:173670,78643,0 +(186,55:30195539,23345977:501378,78643,0 +(186,55:30359393,23345977:173670,78643,0 ) ) -(186,53:31239539,20373265:1343490,485622,11795 -k186,53:31239539,20373265:0 -k186,53:31387652,20373265:148113 +(186,55:30696917,23345977:501378,78643,0 +(186,55:30860771,23345977:173670,78643,0 ) -g186,53:30911859,20373265 -g186,53:32583029,20373265 ) -(186,54:6630773,21214753:25952256,505283,134348 -g186,54:11873653,21214753 -h186,54:11873653,21214753:2818050,0,0 -h186,54:14691703,21214753:0,0,0 -g186,54:9448823,21214753 -(186,54:9448823,21214753:2424830,481690,0 -k186,54:11873653,21214753:882112 +(186,55:31239539,23345977:1343490,485622,11795 +k186,55:31239539,23345977:0 +k186,55:31387652,23345977:148113 ) -g186,54:15979483,21214753 -g186,54:16861597,21214753 -g186,54:19248418,21214753 -g186,54:22090059,21214753 -(186,54:22173491,21214753:501378,78643,0 -$186,54:22173491,21214753 -(186,54:22337345,21214753:173670,78643,0 +g186,55:30911859,23345977 +g186,55:32583029,23345977 ) -$186,54:22674869,21214753 +(186,56:6630773,24211057:25952256,513147,134348 +g186,56:9710963,24211057 +h186,56:9710963,24211057:983040,0,0 +h186,56:10694003,24211057:0,0,0 +g186,56:7613813,24211057 +(186,56:7613813,24211057:2097150,481690,11795 +k186,56:9710963,24211057:1126562 ) -(186,54:22674869,21214753:501378,78643,0 -(186,54:22838723,21214753:173670,78643,0 +g186,56:13214517,24211057 +g186,56:14605191,24211057 +g186,56:17020848,24211057 +g186,56:18609440,24211057 +g186,56:21015266,24211057 +g186,56:21015266,24211057 +(186,56:21170735,24211057:501378,78643,0 +$186,56:21170735,24211057 +(186,56:21334589,24211057:173670,78643,0 ) +$186,56:21672113,24211057 ) -(186,54:23176247,21214753:501378,78643,0 -(186,54:23340101,21214753:173670,78643,0 +(186,56:21672113,24211057:501378,78643,0 +(186,56:21835967,24211057:173670,78643,0 ) ) -(186,54:23677625,21214753:501378,78643,0 -(186,54:23841479,21214753:173670,78643,0 +(186,56:22173491,24211057:501378,78643,0 +(186,56:22337345,24211057:173670,78643,0 ) ) -(186,54:24179003,21214753:501378,78643,0 -(186,54:24342857,21214753:173670,78643,0 +(186,56:22674869,24211057:501378,78643,0 +(186,56:22838723,24211057:173670,78643,0 ) ) -(186,54:24680381,21214753:501378,78643,0 -(186,54:24844235,21214753:173670,78643,0 +(186,56:23176247,24211057:501378,78643,0 +(186,56:23340101,24211057:173670,78643,0 ) ) -(186,54:25181759,21214753:501378,78643,0 -(186,54:25345613,21214753:173670,78643,0 +(186,56:23677625,24211057:501378,78643,0 +(186,56:23841479,24211057:173670,78643,0 ) ) -(186,54:25683137,21214753:501378,78643,0 -(186,54:25846991,21214753:173670,78643,0 +(186,56:24179003,24211057:501378,78643,0 +(186,56:24342857,24211057:173670,78643,0 ) ) -(186,54:26184515,21214753:501378,78643,0 -(186,54:26348369,21214753:173670,78643,0 +(186,56:24680381,24211057:501378,78643,0 +(186,56:24844235,24211057:173670,78643,0 ) ) -(186,54:26685893,21214753:501378,78643,0 -(186,54:26849747,21214753:173670,78643,0 +(186,56:25181759,24211057:501378,78643,0 +(186,56:25345613,24211057:173670,78643,0 ) ) -(186,54:27187271,21214753:501378,78643,0 -(186,54:27351125,21214753:173670,78643,0 +(186,56:25683137,24211057:501378,78643,0 +(186,56:25846991,24211057:173670,78643,0 ) ) -(186,54:27688649,21214753:501378,78643,0 -(186,54:27852503,21214753:173670,78643,0 +(186,56:26184515,24211057:501378,78643,0 +(186,56:26348369,24211057:173670,78643,0 ) ) -(186,54:28190027,21214753:501378,78643,0 -(186,54:28353881,21214753:173670,78643,0 +(186,56:26685893,24211057:501378,78643,0 +(186,56:26849747,24211057:173670,78643,0 ) ) -(186,54:28691405,21214753:501378,78643,0 -(186,54:28855259,21214753:173670,78643,0 +(186,56:27187271,24211057:501378,78643,0 +(186,56:27351125,24211057:173670,78643,0 ) ) -(186,54:29192783,21214753:501378,78643,0 -(186,54:29356637,21214753:173670,78643,0 +(186,56:27688649,24211057:501378,78643,0 +(186,56:27852503,24211057:173670,78643,0 ) ) -(186,54:29694161,21214753:501378,78643,0 -(186,54:29858015,21214753:173670,78643,0 +(186,56:28190027,24211057:501378,78643,0 +(186,56:28353881,24211057:173670,78643,0 ) ) -(186,54:30195539,21214753:501378,78643,0 -(186,54:30359393,21214753:173670,78643,0 +(186,56:28691405,24211057:501378,78643,0 +(186,56:28855259,24211057:173670,78643,0 ) ) -(186,54:30696917,21214753:501378,78643,0 -(186,54:30860771,21214753:173670,78643,0 +(186,56:29192783,24211057:501378,78643,0 +(186,56:29356637,24211057:173670,78643,0 ) ) -(186,54:31239539,21214753:1343490,485622,11795 -k186,54:31239539,21214753:0 -k186,54:31387652,21214753:148113 +(186,56:29694161,24211057:501378,78643,0 +(186,56:29858015,24211057:173670,78643,0 ) -g186,54:30911859,21214753 -g186,54:32583029,21214753 ) -(186,55:6630773,22056241:25952256,513147,134348 -g186,55:11873653,22056241 -h186,55:11873653,22056241:2818050,0,0 -h186,55:14691703,22056241:0,0,0 -g186,55:9448823,22056241 -(186,55:9448823,22056241:2424830,481690,11795 -k186,55:11873653,22056241:882112 +(186,56:30195539,24211057:501378,78643,0 +(186,56:30359393,24211057:173670,78643,0 ) -g186,55:15241548,22056241 -g186,55:17450766,22056241 -g186,55:19039358,22056241 -g186,55:21245955,22056241 -(186,55:21672113,22056241:501378,78643,0 -$186,55:21672113,22056241 -(186,55:21835967,22056241:173670,78643,0 ) -$186,55:22173491,22056241 +(186,56:30696917,24211057:501378,78643,0 +(186,56:30860771,24211057:173670,78643,0 ) -(186,55:22173491,22056241:501378,78643,0 -(186,55:22337345,22056241:173670,78643,0 ) +(186,56:31239539,24211057:1343490,485622,11795 +k186,56:31239539,24211057:0 +k186,56:31387652,24211057:148113 ) -(186,55:22674869,22056241:501378,78643,0 -(186,55:22838723,22056241:173670,78643,0 +g186,56:30911859,24211057 +g186,56:32583029,24211057 ) +(186,57:6630773,25076137:25952256,513147,134348 +g186,57:9710963,25076137 +h186,57:9710963,25076137:983040,0,0 +h186,57:10694003,25076137:0,0,0 +g186,57:7613813,25076137 +(186,57:7613813,25076137:2097150,485622,11795 +k186,57:9710963,25076137:1126562 ) -(186,55:23176247,22056241:501378,78643,0 -(186,55:23340101,22056241:173670,78643,0 +g186,57:13150947,25076137 +g186,57:14017332,25076137 +g186,57:14631404,25076137 +g186,57:17120461,25076137 +g186,57:17120461,25076137 +(186,57:17159711,25076137:501378,78643,0 +$186,57:17159711,25076137 +(186,57:17323565,25076137:173670,78643,0 ) +$186,57:17661089,25076137 ) -(186,55:23677625,22056241:501378,78643,0 -(186,55:23841479,22056241:173670,78643,0 +(186,57:17661089,25076137:501378,78643,0 +(186,57:17824943,25076137:173670,78643,0 ) ) -(186,55:24179003,22056241:501378,78643,0 -(186,55:24342857,22056241:173670,78643,0 +(186,57:18162467,25076137:501378,78643,0 +(186,57:18326321,25076137:173670,78643,0 ) ) -(186,55:24680381,22056241:501378,78643,0 -(186,55:24844235,22056241:173670,78643,0 +(186,57:18663845,25076137:501378,78643,0 +(186,57:18827699,25076137:173670,78643,0 ) ) -(186,55:25181759,22056241:501378,78643,0 -(186,55:25345613,22056241:173670,78643,0 +(186,57:19165223,25076137:501378,78643,0 +(186,57:19329077,25076137:173670,78643,0 ) ) -(186,55:25683137,22056241:501378,78643,0 -(186,55:25846991,22056241:173670,78643,0 +(186,57:19666601,25076137:501378,78643,0 +(186,57:19830455,25076137:173670,78643,0 ) ) -(186,55:26184515,22056241:501378,78643,0 -(186,55:26348369,22056241:173670,78643,0 +(186,57:20167979,25076137:501378,78643,0 +(186,57:20331833,25076137:173670,78643,0 ) ) -(186,55:26685893,22056241:501378,78643,0 -(186,55:26849747,22056241:173670,78643,0 +(186,57:20669357,25076137:501378,78643,0 +(186,57:20833211,25076137:173670,78643,0 ) ) -(186,55:27187271,22056241:501378,78643,0 -(186,55:27351125,22056241:173670,78643,0 +(186,57:21170735,25076137:501378,78643,0 +(186,57:21334589,25076137:173670,78643,0 ) ) -(186,55:27688649,22056241:501378,78643,0 -(186,55:27852503,22056241:173670,78643,0 +(186,57:21672113,25076137:501378,78643,0 +(186,57:21835967,25076137:173670,78643,0 ) ) -(186,55:28190027,22056241:501378,78643,0 -(186,55:28353881,22056241:173670,78643,0 +(186,57:22173491,25076137:501378,78643,0 +(186,57:22337345,25076137:173670,78643,0 ) ) -(186,55:28691405,22056241:501378,78643,0 -(186,55:28855259,22056241:173670,78643,0 +(186,57:22674869,25076137:501378,78643,0 +(186,57:22838723,25076137:173670,78643,0 ) ) -(186,55:29192783,22056241:501378,78643,0 -(186,55:29356637,22056241:173670,78643,0 +(186,57:23176247,25076137:501378,78643,0 +(186,57:23340101,25076137:173670,78643,0 ) ) -(186,55:29694161,22056241:501378,78643,0 -(186,55:29858015,22056241:173670,78643,0 +(186,57:23677625,25076137:501378,78643,0 +(186,57:23841479,25076137:173670,78643,0 ) ) -(186,55:30195539,22056241:501378,78643,0 -(186,55:30359393,22056241:173670,78643,0 +(186,57:24179003,25076137:501378,78643,0 +(186,57:24342857,25076137:173670,78643,0 ) ) -(186,55:30696917,22056241:501378,78643,0 -(186,55:30860771,22056241:173670,78643,0 +(186,57:24680381,25076137:501378,78643,0 +(186,57:24844235,25076137:173670,78643,0 ) ) -(186,55:31239539,22056241:1343490,477757,0 -k186,55:31239539,22056241:0 -k186,55:31387652,22056241:148113 +(186,57:25181759,25076137:501378,78643,0 +(186,57:25345613,25076137:173670,78643,0 ) -g186,55:30911859,22056241 -g186,55:32583029,22056241 ) -(186,56:6630773,22897729:25952256,513147,134348 -g186,56:9448823,22897729 -h186,56:9448823,22897729:983040,0,0 -h186,56:10431863,22897729:0,0,0 -g186,56:7613813,22897729 -(186,56:7613813,22897729:1835010,481690,11795 -k186,56:9448823,22897729:864422 +(186,57:25683137,25076137:501378,78643,0 +(186,57:25846991,25076137:173670,78643,0 ) -g186,56:12952377,22897729 -g186,56:14343051,22897729 -g186,56:16758708,22897729 -g186,56:18347300,22897729 -g186,56:20753126,22897729 -g186,56:20753126,22897729 -(186,56:21170735,22897729:501378,78643,0 -$186,56:21170735,22897729 -(186,56:21334589,22897729:173670,78643,0 ) -$186,56:21672113,22897729 +(186,57:26184515,25076137:501378,78643,0 +(186,57:26348369,25076137:173670,78643,0 ) -(186,56:21672113,22897729:501378,78643,0 -(186,56:21835967,22897729:173670,78643,0 ) +(186,57:26685893,25076137:501378,78643,0 +(186,57:26849747,25076137:173670,78643,0 ) -(186,56:22173491,22897729:501378,78643,0 -(186,56:22337345,22897729:173670,78643,0 ) +(186,57:27187271,25076137:501378,78643,0 +(186,57:27351125,25076137:173670,78643,0 ) -(186,56:22674869,22897729:501378,78643,0 -(186,56:22838723,22897729:173670,78643,0 ) +(186,57:27688649,25076137:501378,78643,0 +(186,57:27852503,25076137:173670,78643,0 ) -(186,56:23176247,22897729:501378,78643,0 -(186,56:23340101,22897729:173670,78643,0 ) +(186,57:28190027,25076137:501378,78643,0 +(186,57:28353881,25076137:173670,78643,0 ) -(186,56:23677625,22897729:501378,78643,0 -(186,56:23841479,22897729:173670,78643,0 ) +(186,57:28691405,25076137:501378,78643,0 +(186,57:28855259,25076137:173670,78643,0 ) -(186,56:24179003,22897729:501378,78643,0 -(186,56:24342857,22897729:173670,78643,0 ) +(186,57:29192783,25076137:501378,78643,0 +(186,57:29356637,25076137:173670,78643,0 ) -(186,56:24680381,22897729:501378,78643,0 -(186,56:24844235,22897729:173670,78643,0 ) +(186,57:29694161,25076137:501378,78643,0 +(186,57:29858015,25076137:173670,78643,0 ) -(186,56:25181759,22897729:501378,78643,0 -(186,56:25345613,22897729:173670,78643,0 ) +(186,57:30195539,25076137:501378,78643,0 +(186,57:30359393,25076137:173670,78643,0 ) -(186,56:25683137,22897729:501378,78643,0 -(186,56:25846991,22897729:173670,78643,0 ) +(186,57:30696917,25076137:501378,78643,0 +(186,57:30860771,25076137:173670,78643,0 ) -(186,56:26184515,22897729:501378,78643,0 -(186,56:26348369,22897729:173670,78643,0 ) +(186,57:31239539,25076137:1343490,485622,11795 +k186,57:31239539,25076137:0 +k186,57:31387652,25076137:148113 ) -(186,56:26685893,22897729:501378,78643,0 -(186,56:26849747,22897729:173670,78643,0 +g186,57:30911859,25076137 +g186,57:32583029,25076137 ) +(186,58:6630773,25941217:25952256,505283,134348 +g186,58:9710963,25941217 +h186,58:9710963,25941217:983040,0,0 +h186,58:10694003,25941217:0,0,0 +g186,58:7613813,25941217 +(186,58:7613813,25941217:2097150,481690,0 +k186,58:9710963,25941217:1126562 ) -(186,56:27187271,22897729:501378,78643,0 -(186,56:27351125,22897729:173670,78643,0 +g186,58:11968678,25941217 +g186,58:13359352,25941217 +g186,58:15925086,25941217 +g186,58:17513678,25941217 +g186,58:17513678,25941217 +(186,58:17661089,25941217:501378,78643,0 +$186,58:17661089,25941217 +(186,58:17824943,25941217:173670,78643,0 ) +$186,58:18162467,25941217 ) -(186,56:27688649,22897729:501378,78643,0 -(186,56:27852503,22897729:173670,78643,0 +(186,58:18162467,25941217:501378,78643,0 +(186,58:18326321,25941217:173670,78643,0 ) ) -(186,56:28190027,22897729:501378,78643,0 -(186,56:28353881,22897729:173670,78643,0 +(186,58:18663845,25941217:501378,78643,0 +(186,58:18827699,25941217:173670,78643,0 ) ) -(186,56:28691405,22897729:501378,78643,0 -(186,56:28855259,22897729:173670,78643,0 +(186,58:19165223,25941217:501378,78643,0 +(186,58:19329077,25941217:173670,78643,0 ) ) -(186,56:29192783,22897729:501378,78643,0 -(186,56:29356637,22897729:173670,78643,0 +(186,58:19666601,25941217:501378,78643,0 +(186,58:19830455,25941217:173670,78643,0 ) ) -(186,56:29694161,22897729:501378,78643,0 -(186,56:29858015,22897729:173670,78643,0 +(186,58:20167979,25941217:501378,78643,0 +(186,58:20331833,25941217:173670,78643,0 ) ) -(186,56:30195539,22897729:501378,78643,0 -(186,56:30359393,22897729:173670,78643,0 +(186,58:20669357,25941217:501378,78643,0 +(186,58:20833211,25941217:173670,78643,0 ) ) -(186,56:30696917,22897729:501378,78643,0 -(186,56:30860771,22897729:173670,78643,0 +(186,58:21170735,25941217:501378,78643,0 +(186,58:21334589,25941217:173670,78643,0 ) ) -(186,56:31239539,22897729:1343490,485622,11795 -k186,56:31239539,22897729:0 -k186,56:31387652,22897729:148113 +(186,58:21672113,25941217:501378,78643,0 +(186,58:21835967,25941217:173670,78643,0 ) -g186,56:30911859,22897729 -g186,56:32583029,22897729 ) -(186,57:6630773,23739217:25952256,513147,134348 -g186,57:9448823,23739217 -h186,57:9448823,23739217:983040,0,0 -h186,57:10431863,23739217:0,0,0 -g186,57:7613813,23739217 -(186,57:7613813,23739217:1835010,485622,11795 -k186,57:9448823,23739217:864422 +(186,58:22173491,25941217:501378,78643,0 +(186,58:22337345,25941217:173670,78643,0 ) -g186,57:12888807,23739217 -g186,57:13755192,23739217 -g186,57:14369264,23739217 -g186,57:16858321,23739217 -g186,57:16858321,23739217 -(186,57:17159711,23739217:501378,78643,0 -$186,57:17159711,23739217 -(186,57:17323565,23739217:173670,78643,0 ) -$186,57:17661089,23739217 +(186,58:22674869,25941217:501378,78643,0 +(186,58:22838723,25941217:173670,78643,0 ) -(186,57:17661089,23739217:501378,78643,0 -(186,57:17824943,23739217:173670,78643,0 ) +(186,58:23176247,25941217:501378,78643,0 +(186,58:23340101,25941217:173670,78643,0 ) -(186,57:18162467,23739217:501378,78643,0 -(186,57:18326321,23739217:173670,78643,0 ) +(186,58:23677625,25941217:501378,78643,0 +(186,58:23841479,25941217:173670,78643,0 ) -(186,57:18663845,23739217:501378,78643,0 -(186,57:18827699,23739217:173670,78643,0 ) +(186,58:24179003,25941217:501378,78643,0 +(186,58:24342857,25941217:173670,78643,0 ) -(186,57:19165223,23739217:501378,78643,0 -(186,57:19329077,23739217:173670,78643,0 ) +(186,58:24680381,25941217:501378,78643,0 +(186,58:24844235,25941217:173670,78643,0 ) -(186,57:19666601,23739217:501378,78643,0 -(186,57:19830455,23739217:173670,78643,0 ) +(186,58:25181759,25941217:501378,78643,0 +(186,58:25345613,25941217:173670,78643,0 ) -(186,57:20167979,23739217:501378,78643,0 -(186,57:20331833,23739217:173670,78643,0 ) +(186,58:25683137,25941217:501378,78643,0 +(186,58:25846991,25941217:173670,78643,0 ) -(186,57:20669357,23739217:501378,78643,0 -(186,57:20833211,23739217:173670,78643,0 ) +(186,58:26184515,25941217:501378,78643,0 +(186,58:26348369,25941217:173670,78643,0 ) -(186,57:21170735,23739217:501378,78643,0 -(186,57:21334589,23739217:173670,78643,0 ) +(186,58:26685893,25941217:501378,78643,0 +(186,58:26849747,25941217:173670,78643,0 ) -(186,57:21672113,23739217:501378,78643,0 -(186,57:21835967,23739217:173670,78643,0 ) +(186,58:27187271,25941217:501378,78643,0 +(186,58:27351125,25941217:173670,78643,0 ) -(186,57:22173491,23739217:501378,78643,0 -(186,57:22337345,23739217:173670,78643,0 ) +(186,58:27688649,25941217:501378,78643,0 +(186,58:27852503,25941217:173670,78643,0 ) -(186,57:22674869,23739217:501378,78643,0 -(186,57:22838723,23739217:173670,78643,0 ) +(186,58:28190027,25941217:501378,78643,0 +(186,58:28353881,25941217:173670,78643,0 ) -(186,57:23176247,23739217:501378,78643,0 -(186,57:23340101,23739217:173670,78643,0 ) +(186,58:28691405,25941217:501378,78643,0 +(186,58:28855259,25941217:173670,78643,0 ) -(186,57:23677625,23739217:501378,78643,0 -(186,57:23841479,23739217:173670,78643,0 ) +(186,58:29192783,25941217:501378,78643,0 +(186,58:29356637,25941217:173670,78643,0 ) -(186,57:24179003,23739217:501378,78643,0 -(186,57:24342857,23739217:173670,78643,0 ) +(186,58:29694161,25941217:501378,78643,0 +(186,58:29858015,25941217:173670,78643,0 ) -(186,57:24680381,23739217:501378,78643,0 -(186,57:24844235,23739217:173670,78643,0 ) +(186,58:30195539,25941217:501378,78643,0 +(186,58:30359393,25941217:173670,78643,0 ) -(186,57:25181759,23739217:501378,78643,0 -(186,57:25345613,23739217:173670,78643,0 ) +(186,58:30696917,25941217:501378,78643,0 +(186,58:30860771,25941217:173670,78643,0 ) -(186,57:25683137,23739217:501378,78643,0 -(186,57:25846991,23739217:173670,78643,0 ) +(186,58:31239539,25941217:1343490,477757,0 +k186,58:31239539,25941217:0 +k186,58:31387652,25941217:148113 ) -(186,57:26184515,23739217:501378,78643,0 -(186,57:26348369,23739217:173670,78643,0 +g186,58:30911859,25941217 +g186,58:32583029,25941217 ) +(186,59:6630773,26806297:25952256,505283,134348 +g186,59:12529013,26806297 +h186,59:12529013,26806297:3080190,0,0 +h186,59:15609203,26806297:0,0,0 +g186,59:9710963,26806297 +(186,59:9710963,26806297:2818050,481690,0 +k186,59:12529013,26806297:1275332 ) -(186,57:26685893,23739217:501378,78643,0 -(186,57:26849747,23739217:173670,78643,0 +g186,59:14200181,26806297 +g186,59:15664255,26806297 +g186,59:16479522,26806297 +g186,59:17093594,26806297 +g186,59:18484268,26806297 +g186,59:21394722,26806297 +(186,59:21672113,26806297:501378,78643,0 +$186,59:21672113,26806297 +(186,59:21835967,26806297:173670,78643,0 ) +$186,59:22173491,26806297 ) -(186,57:27187271,23739217:501378,78643,0 -(186,57:27351125,23739217:173670,78643,0 +(186,59:22173491,26806297:501378,78643,0 +(186,59:22337345,26806297:173670,78643,0 ) ) -(186,57:27688649,23739217:501378,78643,0 -(186,57:27852503,23739217:173670,78643,0 +(186,59:22674869,26806297:501378,78643,0 +(186,59:22838723,26806297:173670,78643,0 ) ) -(186,57:28190027,23739217:501378,78643,0 -(186,57:28353881,23739217:173670,78643,0 +(186,59:23176247,26806297:501378,78643,0 +(186,59:23340101,26806297:173670,78643,0 ) ) -(186,57:28691405,23739217:501378,78643,0 -(186,57:28855259,23739217:173670,78643,0 +(186,59:23677625,26806297:501378,78643,0 +(186,59:23841479,26806297:173670,78643,0 ) ) -(186,57:29192783,23739217:501378,78643,0 -(186,57:29356637,23739217:173670,78643,0 +(186,59:24179003,26806297:501378,78643,0 +(186,59:24342857,26806297:173670,78643,0 ) ) -(186,57:29694161,23739217:501378,78643,0 -(186,57:29858015,23739217:173670,78643,0 +(186,59:24680381,26806297:501378,78643,0 +(186,59:24844235,26806297:173670,78643,0 ) ) -(186,57:30195539,23739217:501378,78643,0 -(186,57:30359393,23739217:173670,78643,0 +(186,59:25181759,26806297:501378,78643,0 +(186,59:25345613,26806297:173670,78643,0 ) ) -(186,57:30696917,23739217:501378,78643,0 -(186,57:30860771,23739217:173670,78643,0 +(186,59:25683137,26806297:501378,78643,0 +(186,59:25846991,26806297:173670,78643,0 ) ) -(186,57:31239539,23739217:1343490,481690,0 -k186,57:31239539,23739217:0 -k186,57:31387652,23739217:148113 +(186,59:26184515,26806297:501378,78643,0 +(186,59:26348369,26806297:173670,78643,0 ) -g186,57:30911859,23739217 -g186,57:32583029,23739217 ) -(186,58:6630773,24580705:25952256,505283,134348 -g186,58:9448823,24580705 -h186,58:9448823,24580705:983040,0,0 -h186,58:10431863,24580705:0,0,0 -g186,58:7613813,24580705 -(186,58:7613813,24580705:1835010,481690,0 -k186,58:9448823,24580705:864422 +(186,59:26685893,26806297:501378,78643,0 +(186,59:26849747,26806297:173670,78643,0 ) -g186,58:11706538,24580705 -g186,58:13097212,24580705 -g186,58:15662946,24580705 -g186,58:17251538,24580705 -g186,58:17251538,24580705 -(186,58:17661089,24580705:501378,78643,0 -$186,58:17661089,24580705 -(186,58:17824943,24580705:173670,78643,0 ) -$186,58:18162467,24580705 +(186,59:27187271,26806297:501378,78643,0 +(186,59:27351125,26806297:173670,78643,0 ) -(186,58:18162467,24580705:501378,78643,0 -(186,58:18326321,24580705:173670,78643,0 ) +(186,59:27688649,26806297:501378,78643,0 +(186,59:27852503,26806297:173670,78643,0 ) -(186,58:18663845,24580705:501378,78643,0 -(186,58:18827699,24580705:173670,78643,0 ) +(186,59:28190027,26806297:501378,78643,0 +(186,59:28353881,26806297:173670,78643,0 ) -(186,58:19165223,24580705:501378,78643,0 -(186,58:19329077,24580705:173670,78643,0 ) +(186,59:28691405,26806297:501378,78643,0 +(186,59:28855259,26806297:173670,78643,0 ) -(186,58:19666601,24580705:501378,78643,0 -(186,58:19830455,24580705:173670,78643,0 ) +(186,59:29192783,26806297:501378,78643,0 +(186,59:29356637,26806297:173670,78643,0 ) -(186,58:20167979,24580705:501378,78643,0 -(186,58:20331833,24580705:173670,78643,0 ) +(186,59:29694161,26806297:501378,78643,0 +(186,59:29858015,26806297:173670,78643,0 ) -(186,58:20669357,24580705:501378,78643,0 -(186,58:20833211,24580705:173670,78643,0 ) +(186,59:30195539,26806297:501378,78643,0 +(186,59:30359393,26806297:173670,78643,0 ) -(186,58:21170735,24580705:501378,78643,0 -(186,58:21334589,24580705:173670,78643,0 ) +(186,59:30696917,26806297:501378,78643,0 +(186,59:30860771,26806297:173670,78643,0 ) -(186,58:21672113,24580705:501378,78643,0 -(186,58:21835967,24580705:173670,78643,0 ) +(186,59:31239539,26806297:1343490,477757,0 +k186,59:31239539,26806297:0 +k186,59:31387652,26806297:148113 ) -(186,58:22173491,24580705:501378,78643,0 -(186,58:22337345,24580705:173670,78643,0 +g186,59:30911859,26806297 +g186,59:32583029,26806297 ) +(186,60:6630773,27671377:25952256,513147,7863 +g186,60:12529013,27671377 +h186,60:12529013,27671377:3080190,0,0 +h186,60:15609203,27671377:0,0,0 +g186,60:9710963,27671377 +(186,60:9710963,27671377:2818050,485622,0 +k186,60:12529013,27671377:1275332 ) -(186,58:22674869,24580705:501378,78643,0 -(186,58:22838723,24580705:173670,78643,0 +g186,60:13966872,27671377 +g186,60:15280214,27671377 +(186,60:15655577,27671377:501378,78643,0 +$186,60:15655577,27671377 +(186,60:15819431,27671377:173670,78643,0 ) +$186,60:16156955,27671377 ) -(186,58:23176247,24580705:501378,78643,0 -(186,58:23340101,24580705:173670,78643,0 +(186,60:16156955,27671377:501378,78643,0 +(186,60:16320809,27671377:173670,78643,0 ) ) -(186,58:23677625,24580705:501378,78643,0 -(186,58:23841479,24580705:173670,78643,0 +(186,60:16658333,27671377:501378,78643,0 +(186,60:16822187,27671377:173670,78643,0 ) ) -(186,58:24179003,24580705:501378,78643,0 -(186,58:24342857,24580705:173670,78643,0 +(186,60:17159711,27671377:501378,78643,0 +(186,60:17323565,27671377:173670,78643,0 ) ) -(186,58:24680381,24580705:501378,78643,0 -(186,58:24844235,24580705:173670,78643,0 +(186,60:17661089,27671377:501378,78643,0 +(186,60:17824943,27671377:173670,78643,0 ) ) -(186,58:25181759,24580705:501378,78643,0 -(186,58:25345613,24580705:173670,78643,0 +(186,60:18162467,27671377:501378,78643,0 +(186,60:18326321,27671377:173670,78643,0 ) ) -(186,58:25683137,24580705:501378,78643,0 -(186,58:25846991,24580705:173670,78643,0 +(186,60:18663845,27671377:501378,78643,0 +(186,60:18827699,27671377:173670,78643,0 ) ) -(186,58:26184515,24580705:501378,78643,0 -(186,58:26348369,24580705:173670,78643,0 +(186,60:19165223,27671377:501378,78643,0 +(186,60:19329077,27671377:173670,78643,0 ) ) -(186,58:26685893,24580705:501378,78643,0 -(186,58:26849747,24580705:173670,78643,0 +(186,60:19666601,27671377:501378,78643,0 +(186,60:19830455,27671377:173670,78643,0 ) ) -(186,58:27187271,24580705:501378,78643,0 -(186,58:27351125,24580705:173670,78643,0 +(186,60:20167979,27671377:501378,78643,0 +(186,60:20331833,27671377:173670,78643,0 ) ) -(186,58:27688649,24580705:501378,78643,0 -(186,58:27852503,24580705:173670,78643,0 +(186,60:20669357,27671377:501378,78643,0 +(186,60:20833211,27671377:173670,78643,0 ) ) -(186,58:28190027,24580705:501378,78643,0 -(186,58:28353881,24580705:173670,78643,0 +(186,60:21170735,27671377:501378,78643,0 +(186,60:21334589,27671377:173670,78643,0 ) ) -(186,58:28691405,24580705:501378,78643,0 -(186,58:28855259,24580705:173670,78643,0 +(186,60:21672113,27671377:501378,78643,0 +(186,60:21835967,27671377:173670,78643,0 ) ) -(186,58:29192783,24580705:501378,78643,0 -(186,58:29356637,24580705:173670,78643,0 +(186,60:22173491,27671377:501378,78643,0 +(186,60:22337345,27671377:173670,78643,0 ) ) -(186,58:29694161,24580705:501378,78643,0 -(186,58:29858015,24580705:173670,78643,0 +(186,60:22674869,27671377:501378,78643,0 +(186,60:22838723,27671377:173670,78643,0 ) ) -(186,58:30195539,24580705:501378,78643,0 -(186,58:30359393,24580705:173670,78643,0 +(186,60:23176247,27671377:501378,78643,0 +(186,60:23340101,27671377:173670,78643,0 ) ) -(186,58:30696917,24580705:501378,78643,0 -(186,58:30860771,24580705:173670,78643,0 +(186,60:23677625,27671377:501378,78643,0 +(186,60:23841479,27671377:173670,78643,0 ) ) -(186,58:31239539,24580705:1343490,477757,0 -k186,58:31239539,24580705:0 -k186,58:31387652,24580705:148113 +(186,60:24179003,27671377:501378,78643,0 +(186,60:24342857,27671377:173670,78643,0 ) -g186,58:30911859,24580705 -g186,58:32583029,24580705 ) -(186,59:6630773,25422193:25952256,505283,134348 -g186,59:11873653,25422193 -h186,59:11873653,25422193:2818050,0,0 -h186,59:14691703,25422193:0,0,0 -g186,59:9448823,25422193 -(186,59:9448823,25422193:2424830,481690,0 -k186,59:11873653,25422193:882112 +(186,60:24680381,27671377:501378,78643,0 +(186,60:24844235,27671377:173670,78643,0 ) -g186,59:13544821,25422193 -g186,59:15008895,25422193 -g186,59:15824162,25422193 -g186,59:16438234,25422193 -g186,59:17828908,25422193 -g186,59:20739362,25422193 -(186,59:21170735,25422193:501378,78643,0 -$186,59:21170735,25422193 -(186,59:21334589,25422193:173670,78643,0 ) -$186,59:21672113,25422193 +(186,60:25181759,27671377:501378,78643,0 +(186,60:25345613,27671377:173670,78643,0 ) -(186,59:21672113,25422193:501378,78643,0 -(186,59:21835967,25422193:173670,78643,0 ) +(186,60:25683137,27671377:501378,78643,0 +(186,60:25846991,27671377:173670,78643,0 ) -(186,59:22173491,25422193:501378,78643,0 -(186,59:22337345,25422193:173670,78643,0 ) +(186,60:26184515,27671377:501378,78643,0 +(186,60:26348369,27671377:173670,78643,0 ) -(186,59:22674869,25422193:501378,78643,0 -(186,59:22838723,25422193:173670,78643,0 ) +(186,60:26685893,27671377:501378,78643,0 +(186,60:26849747,27671377:173670,78643,0 ) -(186,59:23176247,25422193:501378,78643,0 -(186,59:23340101,25422193:173670,78643,0 ) +(186,60:27187271,27671377:501378,78643,0 +(186,60:27351125,27671377:173670,78643,0 ) -(186,59:23677625,25422193:501378,78643,0 -(186,59:23841479,25422193:173670,78643,0 ) +(186,60:27688649,27671377:501378,78643,0 +(186,60:27852503,27671377:173670,78643,0 ) -(186,59:24179003,25422193:501378,78643,0 -(186,59:24342857,25422193:173670,78643,0 ) +(186,60:28190027,27671377:501378,78643,0 +(186,60:28353881,27671377:173670,78643,0 ) -(186,59:24680381,25422193:501378,78643,0 -(186,59:24844235,25422193:173670,78643,0 ) +(186,60:28691405,27671377:501378,78643,0 +(186,60:28855259,27671377:173670,78643,0 ) -(186,59:25181759,25422193:501378,78643,0 -(186,59:25345613,25422193:173670,78643,0 ) +(186,60:29192783,27671377:501378,78643,0 +(186,60:29356637,27671377:173670,78643,0 ) -(186,59:25683137,25422193:501378,78643,0 -(186,59:25846991,25422193:173670,78643,0 ) +(186,60:29694161,27671377:501378,78643,0 +(186,60:29858015,27671377:173670,78643,0 ) -(186,59:26184515,25422193:501378,78643,0 -(186,59:26348369,25422193:173670,78643,0 ) +(186,60:30195539,27671377:501378,78643,0 +(186,60:30359393,27671377:173670,78643,0 ) -(186,59:26685893,25422193:501378,78643,0 -(186,59:26849747,25422193:173670,78643,0 ) +(186,60:30696917,27671377:501378,78643,0 +(186,60:30860771,27671377:173670,78643,0 ) -(186,59:27187271,25422193:501378,78643,0 -(186,59:27351125,25422193:173670,78643,0 ) +(186,60:31239539,27671377:1343490,477757,0 +k186,60:31239539,27671377:0 +k186,60:31387652,27671377:148113 ) -(186,59:27688649,25422193:501378,78643,0 -(186,59:27852503,25422193:173670,78643,0 +g186,60:30911859,27671377 +g186,60:32583029,27671377 ) +(186,61:6630773,28536457:25952256,513147,11795 +g186,61:12529013,28536457 +h186,61:12529013,28536457:3080190,0,0 +h186,61:15609203,28536457:0,0,0 +g186,61:9710963,28536457 +(186,61:9710963,28536457:2818050,485622,11795 +k186,61:12529013,28536457:1275332 ) -(186,59:28190027,25422193:501378,78643,0 -(186,59:28353881,25422193:173670,78643,0 +g186,61:13941313,28536457 +g186,61:15254655,28536457 +(186,61:15655577,28536457:501378,78643,0 +$186,61:15655577,28536457 +(186,61:15819431,28536457:173670,78643,0 ) +$186,61:16156955,28536457 ) -(186,59:28691405,25422193:501378,78643,0 -(186,59:28855259,25422193:173670,78643,0 +(186,61:16156955,28536457:501378,78643,0 +(186,61:16320809,28536457:173670,78643,0 ) ) -(186,59:29192783,25422193:501378,78643,0 -(186,59:29356637,25422193:173670,78643,0 +(186,61:16658333,28536457:501378,78643,0 +(186,61:16822187,28536457:173670,78643,0 ) ) -(186,59:29694161,25422193:501378,78643,0 -(186,59:29858015,25422193:173670,78643,0 +(186,61:17159711,28536457:501378,78643,0 +(186,61:17323565,28536457:173670,78643,0 ) ) -(186,59:30195539,25422193:501378,78643,0 -(186,59:30359393,25422193:173670,78643,0 +(186,61:17661089,28536457:501378,78643,0 +(186,61:17824943,28536457:173670,78643,0 ) ) -(186,59:30696917,25422193:501378,78643,0 -(186,59:30860771,25422193:173670,78643,0 +(186,61:18162467,28536457:501378,78643,0 +(186,61:18326321,28536457:173670,78643,0 ) ) -(186,59:31239539,25422193:1343490,477757,0 -k186,59:31239539,25422193:0 -k186,59:31387652,25422193:148113 +(186,61:18663845,28536457:501378,78643,0 +(186,61:18827699,28536457:173670,78643,0 ) -g186,59:30911859,25422193 -g186,59:32583029,25422193 ) -(186,60:6630773,26263681:25952256,513147,7863 -g186,60:11873653,26263681 -h186,60:11873653,26263681:2818050,0,0 -h186,60:14691703,26263681:0,0,0 -g186,60:9448823,26263681 -(186,60:9448823,26263681:2424830,485622,0 -k186,60:11873653,26263681:882112 +(186,61:19165223,28536457:501378,78643,0 +(186,61:19329077,28536457:173670,78643,0 ) -g186,60:13311512,26263681 -g186,60:14624854,26263681 -(186,60:14652821,26263681:501378,78643,0 -$186,60:14652821,26263681 -(186,60:14816675,26263681:173670,78643,0 ) -$186,60:15154199,26263681 +(186,61:19666601,28536457:501378,78643,0 +(186,61:19830455,28536457:173670,78643,0 ) -(186,60:15154199,26263681:501378,78643,0 -(186,60:15318053,26263681:173670,78643,0 ) +(186,61:20167979,28536457:501378,78643,0 +(186,61:20331833,28536457:173670,78643,0 ) -(186,60:15655577,26263681:501378,78643,0 -(186,60:15819431,26263681:173670,78643,0 ) +(186,61:20669357,28536457:501378,78643,0 +(186,61:20833211,28536457:173670,78643,0 ) -(186,60:16156955,26263681:501378,78643,0 -(186,60:16320809,26263681:173670,78643,0 ) +(186,61:21170735,28536457:501378,78643,0 +(186,61:21334589,28536457:173670,78643,0 ) -(186,60:16658333,26263681:501378,78643,0 -(186,60:16822187,26263681:173670,78643,0 ) +(186,61:21672113,28536457:501378,78643,0 +(186,61:21835967,28536457:173670,78643,0 ) -(186,60:17159711,26263681:501378,78643,0 -(186,60:17323565,26263681:173670,78643,0 ) +(186,61:22173491,28536457:501378,78643,0 +(186,61:22337345,28536457:173670,78643,0 ) -(186,60:17661089,26263681:501378,78643,0 -(186,60:17824943,26263681:173670,78643,0 ) +(186,61:22674869,28536457:501378,78643,0 +(186,61:22838723,28536457:173670,78643,0 ) -(186,60:18162467,26263681:501378,78643,0 -(186,60:18326321,26263681:173670,78643,0 ) +(186,61:23176247,28536457:501378,78643,0 +(186,61:23340101,28536457:173670,78643,0 ) -(186,60:18663845,26263681:501378,78643,0 -(186,60:18827699,26263681:173670,78643,0 ) +(186,61:23677625,28536457:501378,78643,0 +(186,61:23841479,28536457:173670,78643,0 ) -(186,60:19165223,26263681:501378,78643,0 -(186,60:19329077,26263681:173670,78643,0 ) +(186,61:24179003,28536457:501378,78643,0 +(186,61:24342857,28536457:173670,78643,0 ) -(186,60:19666601,26263681:501378,78643,0 -(186,60:19830455,26263681:173670,78643,0 ) +(186,61:24680381,28536457:501378,78643,0 +(186,61:24844235,28536457:173670,78643,0 ) -(186,60:20167979,26263681:501378,78643,0 -(186,60:20331833,26263681:173670,78643,0 ) +(186,61:25181759,28536457:501378,78643,0 +(186,61:25345613,28536457:173670,78643,0 ) -(186,60:20669357,26263681:501378,78643,0 -(186,60:20833211,26263681:173670,78643,0 ) +(186,61:25683137,28536457:501378,78643,0 +(186,61:25846991,28536457:173670,78643,0 ) -(186,60:21170735,26263681:501378,78643,0 -(186,60:21334589,26263681:173670,78643,0 ) +(186,61:26184515,28536457:501378,78643,0 +(186,61:26348369,28536457:173670,78643,0 ) -(186,60:21672113,26263681:501378,78643,0 -(186,60:21835967,26263681:173670,78643,0 ) +(186,61:26685893,28536457:501378,78643,0 +(186,61:26849747,28536457:173670,78643,0 ) -(186,60:22173491,26263681:501378,78643,0 -(186,60:22337345,26263681:173670,78643,0 ) +(186,61:27187271,28536457:501378,78643,0 +(186,61:27351125,28536457:173670,78643,0 ) -(186,60:22674869,26263681:501378,78643,0 -(186,60:22838723,26263681:173670,78643,0 ) +(186,61:27688649,28536457:501378,78643,0 +(186,61:27852503,28536457:173670,78643,0 ) -(186,60:23176247,26263681:501378,78643,0 -(186,60:23340101,26263681:173670,78643,0 ) +(186,61:28190027,28536457:501378,78643,0 +(186,61:28353881,28536457:173670,78643,0 ) -(186,60:23677625,26263681:501378,78643,0 -(186,60:23841479,26263681:173670,78643,0 ) +(186,61:28691405,28536457:501378,78643,0 +(186,61:28855259,28536457:173670,78643,0 ) -(186,60:24179003,26263681:501378,78643,0 -(186,60:24342857,26263681:173670,78643,0 ) +(186,61:29192783,28536457:501378,78643,0 +(186,61:29356637,28536457:173670,78643,0 ) -(186,60:24680381,26263681:501378,78643,0 -(186,60:24844235,26263681:173670,78643,0 ) +(186,61:29694161,28536457:501378,78643,0 +(186,61:29858015,28536457:173670,78643,0 ) -(186,60:25181759,26263681:501378,78643,0 -(186,60:25345613,26263681:173670,78643,0 ) +(186,61:30195539,28536457:501378,78643,0 +(186,61:30359393,28536457:173670,78643,0 ) -(186,60:25683137,26263681:501378,78643,0 -(186,60:25846991,26263681:173670,78643,0 ) +(186,61:30696917,28536457:501378,78643,0 +(186,61:30860771,28536457:173670,78643,0 ) -(186,60:26184515,26263681:501378,78643,0 -(186,60:26348369,26263681:173670,78643,0 ) +(186,61:31239539,28536457:1343490,485622,11795 +k186,61:31239539,28536457:0 +k186,61:31387652,28536457:148113 ) -(186,60:26685893,26263681:501378,78643,0 -(186,60:26849747,26263681:173670,78643,0 +g186,61:30911859,28536457 +g186,61:32583029,28536457 ) +(186,62:6630773,29401537:25952256,505283,134348 +g186,62:9710963,29401537 +h186,62:9710963,29401537:983040,0,0 +h186,62:10694003,29401537:0,0,0 +g186,62:7613813,29401537 +(186,62:7613813,29401537:2097150,485622,11795 +k186,62:9710963,29401537:1126562 ) -(186,60:27187271,26263681:501378,78643,0 -(186,60:27351125,26263681:173670,78643,0 +g186,62:12389419,29401537 +g186,62:12389419,29401537 +(186,62:12647309,29401537:501378,78643,0 +$186,62:12647309,29401537 +(186,62:12811163,29401537:173670,78643,0 ) +$186,62:13148687,29401537 ) -(186,60:27688649,26263681:501378,78643,0 -(186,60:27852503,26263681:173670,78643,0 +(186,62:13148687,29401537:501378,78643,0 +(186,62:13312541,29401537:173670,78643,0 ) ) -(186,60:28190027,26263681:501378,78643,0 -(186,60:28353881,26263681:173670,78643,0 +(186,62:13650065,29401537:501378,78643,0 +(186,62:13813919,29401537:173670,78643,0 ) ) -(186,60:28691405,26263681:501378,78643,0 -(186,60:28855259,26263681:173670,78643,0 +(186,62:14151443,29401537:501378,78643,0 +(186,62:14315297,29401537:173670,78643,0 ) ) -(186,60:29192783,26263681:501378,78643,0 -(186,60:29356637,26263681:173670,78643,0 +(186,62:14652821,29401537:501378,78643,0 +(186,62:14816675,29401537:173670,78643,0 ) ) -(186,60:29694161,26263681:501378,78643,0 -(186,60:29858015,26263681:173670,78643,0 +(186,62:15154199,29401537:501378,78643,0 +(186,62:15318053,29401537:173670,78643,0 ) ) -(186,60:30195539,26263681:501378,78643,0 -(186,60:30359393,26263681:173670,78643,0 +(186,62:15655577,29401537:501378,78643,0 +(186,62:15819431,29401537:173670,78643,0 ) ) -(186,60:30696917,26263681:501378,78643,0 -(186,60:30860771,26263681:173670,78643,0 +(186,62:16156955,29401537:501378,78643,0 +(186,62:16320809,29401537:173670,78643,0 ) ) -(186,60:31239539,26263681:1343490,477757,0 -k186,60:31239539,26263681:0 -k186,60:31387652,26263681:148113 +(186,62:16658333,29401537:501378,78643,0 +(186,62:16822187,29401537:173670,78643,0 ) -g186,60:30911859,26263681 -g186,60:32583029,26263681 ) -(186,61:6630773,27105169:25952256,513147,11795 -g186,61:11873653,27105169 -h186,61:11873653,27105169:2818050,0,0 -h186,61:14691703,27105169:0,0,0 -g186,61:9448823,27105169 -(186,61:9448823,27105169:2424830,485622,11795 -k186,61:11873653,27105169:882112 +(186,62:17159711,29401537:501378,78643,0 +(186,62:17323565,29401537:173670,78643,0 ) -g186,61:13285953,27105169 -g186,61:14599295,27105169 -(186,61:14652821,27105169:501378,78643,0 -$186,61:14652821,27105169 -(186,61:14816675,27105169:173670,78643,0 ) -$186,61:15154199,27105169 +(186,62:17661089,29401537:501378,78643,0 +(186,62:17824943,29401537:173670,78643,0 ) -(186,61:15154199,27105169:501378,78643,0 -(186,61:15318053,27105169:173670,78643,0 ) +(186,62:18162467,29401537:501378,78643,0 +(186,62:18326321,29401537:173670,78643,0 ) -(186,61:15655577,27105169:501378,78643,0 -(186,61:15819431,27105169:173670,78643,0 ) +(186,62:18663845,29401537:501378,78643,0 +(186,62:18827699,29401537:173670,78643,0 ) -(186,61:16156955,27105169:501378,78643,0 -(186,61:16320809,27105169:173670,78643,0 ) +(186,62:19165223,29401537:501378,78643,0 +(186,62:19329077,29401537:173670,78643,0 ) -(186,61:16658333,27105169:501378,78643,0 -(186,61:16822187,27105169:173670,78643,0 ) +(186,62:19666601,29401537:501378,78643,0 +(186,62:19830455,29401537:173670,78643,0 ) -(186,61:17159711,27105169:501378,78643,0 -(186,61:17323565,27105169:173670,78643,0 ) +(186,62:20167979,29401537:501378,78643,0 +(186,62:20331833,29401537:173670,78643,0 ) -(186,61:17661089,27105169:501378,78643,0 -(186,61:17824943,27105169:173670,78643,0 ) +(186,62:20669357,29401537:501378,78643,0 +(186,62:20833211,29401537:173670,78643,0 ) -(186,61:18162467,27105169:501378,78643,0 -(186,61:18326321,27105169:173670,78643,0 ) +(186,62:21170735,29401537:501378,78643,0 +(186,62:21334589,29401537:173670,78643,0 ) -(186,61:18663845,27105169:501378,78643,0 -(186,61:18827699,27105169:173670,78643,0 ) +(186,62:21672113,29401537:501378,78643,0 +(186,62:21835967,29401537:173670,78643,0 ) -(186,61:19165223,27105169:501378,78643,0 -(186,61:19329077,27105169:173670,78643,0 ) +(186,62:22173491,29401537:501378,78643,0 +(186,62:22337345,29401537:173670,78643,0 ) -(186,61:19666601,27105169:501378,78643,0 -(186,61:19830455,27105169:173670,78643,0 ) +(186,62:22674869,29401537:501378,78643,0 +(186,62:22838723,29401537:173670,78643,0 ) -(186,61:20167979,27105169:501378,78643,0 -(186,61:20331833,27105169:173670,78643,0 ) +(186,62:23176247,29401537:501378,78643,0 +(186,62:23340101,29401537:173670,78643,0 ) -(186,61:20669357,27105169:501378,78643,0 -(186,61:20833211,27105169:173670,78643,0 ) +(186,62:23677625,29401537:501378,78643,0 +(186,62:23841479,29401537:173670,78643,0 ) -(186,61:21170735,27105169:501378,78643,0 -(186,61:21334589,27105169:173670,78643,0 ) +(186,62:24179003,29401537:501378,78643,0 +(186,62:24342857,29401537:173670,78643,0 ) -(186,61:21672113,27105169:501378,78643,0 -(186,61:21835967,27105169:173670,78643,0 ) +(186,62:24680381,29401537:501378,78643,0 +(186,62:24844235,29401537:173670,78643,0 ) -(186,61:22173491,27105169:501378,78643,0 -(186,61:22337345,27105169:173670,78643,0 ) +(186,62:25181759,29401537:501378,78643,0 +(186,62:25345613,29401537:173670,78643,0 ) -(186,61:22674869,27105169:501378,78643,0 -(186,61:22838723,27105169:173670,78643,0 ) +(186,62:25683137,29401537:501378,78643,0 +(186,62:25846991,29401537:173670,78643,0 ) -(186,61:23176247,27105169:501378,78643,0 -(186,61:23340101,27105169:173670,78643,0 ) +(186,62:26184515,29401537:501378,78643,0 +(186,62:26348369,29401537:173670,78643,0 ) -(186,61:23677625,27105169:501378,78643,0 -(186,61:23841479,27105169:173670,78643,0 ) +(186,62:26685893,29401537:501378,78643,0 +(186,62:26849747,29401537:173670,78643,0 ) -(186,61:24179003,27105169:501378,78643,0 -(186,61:24342857,27105169:173670,78643,0 ) +(186,62:27187271,29401537:501378,78643,0 +(186,62:27351125,29401537:173670,78643,0 ) -(186,61:24680381,27105169:501378,78643,0 -(186,61:24844235,27105169:173670,78643,0 ) +(186,62:27688649,29401537:501378,78643,0 +(186,62:27852503,29401537:173670,78643,0 ) -(186,61:25181759,27105169:501378,78643,0 -(186,61:25345613,27105169:173670,78643,0 ) +(186,62:28190027,29401537:501378,78643,0 +(186,62:28353881,29401537:173670,78643,0 ) -(186,61:25683137,27105169:501378,78643,0 -(186,61:25846991,27105169:173670,78643,0 ) +(186,62:28691405,29401537:501378,78643,0 +(186,62:28855259,29401537:173670,78643,0 ) -(186,61:26184515,27105169:501378,78643,0 -(186,61:26348369,27105169:173670,78643,0 ) +(186,62:29192783,29401537:501378,78643,0 +(186,62:29356637,29401537:173670,78643,0 ) -(186,61:26685893,27105169:501378,78643,0 -(186,61:26849747,27105169:173670,78643,0 ) +(186,62:29694161,29401537:501378,78643,0 +(186,62:29858015,29401537:173670,78643,0 ) -(186,61:27187271,27105169:501378,78643,0 -(186,61:27351125,27105169:173670,78643,0 ) +(186,62:30195539,29401537:501378,78643,0 +(186,62:30359393,29401537:173670,78643,0 ) -(186,61:27688649,27105169:501378,78643,0 -(186,61:27852503,27105169:173670,78643,0 ) +(186,62:30696917,29401537:501378,78643,0 +(186,62:30860771,29401537:173670,78643,0 ) -(186,61:28190027,27105169:501378,78643,0 -(186,61:28353881,27105169:173670,78643,0 ) +(186,62:31239539,29401537:1343490,485622,11795 +k186,62:31239539,29401537:0 +k186,62:31387652,29401537:148113 ) -(186,61:28691405,27105169:501378,78643,0 -(186,61:28855259,27105169:173670,78643,0 +g186,62:30911859,29401537 +g186,62:32583029,29401537 ) +(186,63:6630773,30266617:25952256,505283,134348 +g186,63:9710963,30266617 +h186,63:9710963,30266617:983040,0,0 +h186,63:10694003,30266617:0,0,0 +g186,63:7613813,30266617 +(186,63:7613813,30266617:2097150,485622,11795 +k186,63:9710963,30266617:1126562 ) -(186,61:29192783,27105169:501378,78643,0 -(186,61:29356637,27105169:173670,78643,0 +g186,63:12279974,30266617 +g186,63:14881753,30266617 +g186,63:14881753,30266617 +(186,63:15154199,30266617:501378,78643,0 +$186,63:15154199,30266617 +(186,63:15318053,30266617:173670,78643,0 ) +$186,63:15655577,30266617 ) -(186,61:29694161,27105169:501378,78643,0 -(186,61:29858015,27105169:173670,78643,0 +(186,63:15655577,30266617:501378,78643,0 +(186,63:15819431,30266617:173670,78643,0 ) ) -(186,61:30195539,27105169:501378,78643,0 -(186,61:30359393,27105169:173670,78643,0 +(186,63:16156955,30266617:501378,78643,0 +(186,63:16320809,30266617:173670,78643,0 ) ) -(186,61:30696917,27105169:501378,78643,0 -(186,61:30860771,27105169:173670,78643,0 +(186,63:16658333,30266617:501378,78643,0 +(186,63:16822187,30266617:173670,78643,0 ) ) -(186,61:31239539,27105169:1343490,485622,11795 -k186,61:31239539,27105169:0 -k186,61:31387652,27105169:148113 +(186,63:17159711,30266617:501378,78643,0 +(186,63:17323565,30266617:173670,78643,0 ) -g186,61:30911859,27105169 -g186,61:32583029,27105169 ) -(186,62:6630773,27946657:25952256,505283,134348 -g186,62:9448823,27946657 -h186,62:9448823,27946657:983040,0,0 -h186,62:10431863,27946657:0,0,0 -g186,62:7613813,27946657 -(186,62:7613813,27946657:1835010,485622,11795 -k186,62:9448823,27946657:864422 +(186,63:17661089,30266617:501378,78643,0 +(186,63:17824943,30266617:173670,78643,0 ) -g186,62:12127279,27946657 -g186,62:12127279,27946657 -(186,62:12145931,27946657:501378,78643,0 -$186,62:12145931,27946657 -(186,62:12309785,27946657:173670,78643,0 ) -$186,62:12647309,27946657 +(186,63:18162467,30266617:501378,78643,0 +(186,63:18326321,30266617:173670,78643,0 ) -(186,62:12647309,27946657:501378,78643,0 -(186,62:12811163,27946657:173670,78643,0 ) +(186,63:18663845,30266617:501378,78643,0 +(186,63:18827699,30266617:173670,78643,0 ) -(186,62:13148687,27946657:501378,78643,0 -(186,62:13312541,27946657:173670,78643,0 ) +(186,63:19165223,30266617:501378,78643,0 +(186,63:19329077,30266617:173670,78643,0 ) -(186,62:13650065,27946657:501378,78643,0 -(186,62:13813919,27946657:173670,78643,0 ) +(186,63:19666601,30266617:501378,78643,0 +(186,63:19830455,30266617:173670,78643,0 ) -(186,62:14151443,27946657:501378,78643,0 -(186,62:14315297,27946657:173670,78643,0 ) +(186,63:20167979,30266617:501378,78643,0 +(186,63:20331833,30266617:173670,78643,0 ) -(186,62:14652821,27946657:501378,78643,0 -(186,62:14816675,27946657:173670,78643,0 ) +(186,63:20669357,30266617:501378,78643,0 +(186,63:20833211,30266617:173670,78643,0 ) -(186,62:15154199,27946657:501378,78643,0 -(186,62:15318053,27946657:173670,78643,0 ) +(186,63:21170735,30266617:501378,78643,0 +(186,63:21334589,30266617:173670,78643,0 ) -(186,62:15655577,27946657:501378,78643,0 -(186,62:15819431,27946657:173670,78643,0 ) +(186,63:21672113,30266617:501378,78643,0 +(186,63:21835967,30266617:173670,78643,0 ) -(186,62:16156955,27946657:501378,78643,0 -(186,62:16320809,27946657:173670,78643,0 ) +(186,63:22173491,30266617:501378,78643,0 +(186,63:22337345,30266617:173670,78643,0 ) -(186,62:16658333,27946657:501378,78643,0 -(186,62:16822187,27946657:173670,78643,0 ) +(186,63:22674869,30266617:501378,78643,0 +(186,63:22838723,30266617:173670,78643,0 ) -(186,62:17159711,27946657:501378,78643,0 -(186,62:17323565,27946657:173670,78643,0 ) +(186,63:23176247,30266617:501378,78643,0 +(186,63:23340101,30266617:173670,78643,0 ) -(186,62:17661089,27946657:501378,78643,0 -(186,62:17824943,27946657:173670,78643,0 ) +(186,63:23677625,30266617:501378,78643,0 +(186,63:23841479,30266617:173670,78643,0 ) -(186,62:18162467,27946657:501378,78643,0 -(186,62:18326321,27946657:173670,78643,0 ) +(186,63:24179003,30266617:501378,78643,0 +(186,63:24342857,30266617:173670,78643,0 ) -(186,62:18663845,27946657:501378,78643,0 -(186,62:18827699,27946657:173670,78643,0 ) +(186,63:24680381,30266617:501378,78643,0 +(186,63:24844235,30266617:173670,78643,0 ) -(186,62:19165223,27946657:501378,78643,0 -(186,62:19329077,27946657:173670,78643,0 ) +(186,63:25181759,30266617:501378,78643,0 +(186,63:25345613,30266617:173670,78643,0 ) -(186,62:19666601,27946657:501378,78643,0 -(186,62:19830455,27946657:173670,78643,0 ) +(186,63:25683137,30266617:501378,78643,0 +(186,63:25846991,30266617:173670,78643,0 ) -(186,62:20167979,27946657:501378,78643,0 -(186,62:20331833,27946657:173670,78643,0 ) +(186,63:26184515,30266617:501378,78643,0 +(186,63:26348369,30266617:173670,78643,0 ) -(186,62:20669357,27946657:501378,78643,0 -(186,62:20833211,27946657:173670,78643,0 ) +(186,63:26685893,30266617:501378,78643,0 +(186,63:26849747,30266617:173670,78643,0 ) -(186,62:21170735,27946657:501378,78643,0 -(186,62:21334589,27946657:173670,78643,0 ) +(186,63:27187271,30266617:501378,78643,0 +(186,63:27351125,30266617:173670,78643,0 ) -(186,62:21672113,27946657:501378,78643,0 -(186,62:21835967,27946657:173670,78643,0 ) +(186,63:27688649,30266617:501378,78643,0 +(186,63:27852503,30266617:173670,78643,0 ) -(186,62:22173491,27946657:501378,78643,0 -(186,62:22337345,27946657:173670,78643,0 ) +(186,63:28190027,30266617:501378,78643,0 +(186,63:28353881,30266617:173670,78643,0 ) -(186,62:22674869,27946657:501378,78643,0 -(186,62:22838723,27946657:173670,78643,0 ) +(186,63:28691405,30266617:501378,78643,0 +(186,63:28855259,30266617:173670,78643,0 ) -(186,62:23176247,27946657:501378,78643,0 -(186,62:23340101,27946657:173670,78643,0 ) +(186,63:29192783,30266617:501378,78643,0 +(186,63:29356637,30266617:173670,78643,0 ) -(186,62:23677625,27946657:501378,78643,0 -(186,62:23841479,27946657:173670,78643,0 ) +(186,63:29694161,30266617:501378,78643,0 +(186,63:29858015,30266617:173670,78643,0 ) -(186,62:24179003,27946657:501378,78643,0 -(186,62:24342857,27946657:173670,78643,0 ) +(186,63:30195539,30266617:501378,78643,0 +(186,63:30359393,30266617:173670,78643,0 ) -(186,62:24680381,27946657:501378,78643,0 -(186,62:24844235,27946657:173670,78643,0 ) +(186,63:30696917,30266617:501378,78643,0 +(186,63:30860771,30266617:173670,78643,0 ) -(186,62:25181759,27946657:501378,78643,0 -(186,62:25345613,27946657:173670,78643,0 ) +(186,63:31239539,30266617:1343490,477757,0 +k186,63:31239539,30266617:0 +k186,63:31387652,30266617:148113 ) -(186,62:25683137,27946657:501378,78643,0 -(186,62:25846991,27946657:173670,78643,0 +g186,63:30911859,30266617 +g186,63:32583029,30266617 ) +(186,64:6630773,31787057:25952256,505283,134348 +g186,64:7613813,31787057 +h186,64:7613813,31787057:0,0,0 +g186,64:6630773,31787057 +(186,64:6630773,31787057:983040,473825,11795 +k186,64:7613813,31787057:574751 ) -(186,62:26184515,27946657:501378,78643,0 -(186,62:26348369,27946657:173670,78643,0 +g186,64:9313161,31787057 +g186,64:10163163,31787057 +g186,64:14676627,31787057 +g186,64:16101379,31787057 +k186,64:25087020,31787057:6152520 +k186,64:31239539,31787057:6152519 +(186,64:31239539,31787057:1343490,485622,11795 +k186,64:31358161,31787057:118622 ) +g186,64:31239539,31787057 +g186,64:32583029,31787057 ) -(186,62:26685893,27946657:501378,78643,0 -(186,62:26849747,27946657:173670,78643,0 +(186,65:6630773,32652137:25952256,513147,126483 +g186,65:9710963,32652137 +h186,65:9710963,32652137:983040,0,0 +h186,65:10694003,32652137:0,0,0 +g186,65:7613813,32652137 +(186,65:7613813,32652137:2097150,477757,11795 +k186,65:9710963,32652137:1126562 ) +g186,65:11549247,32652137 +g186,65:12407768,32652137 +g186,65:13810238,32652137 +g186,65:16427090,32652137 +g186,65:16427090,32652137 +(186,65:16658333,32652137:501378,78643,0 +$186,65:16658333,32652137 +(186,65:16822187,32652137:173670,78643,0 ) -(186,62:27187271,27946657:501378,78643,0 -(186,62:27351125,27946657:173670,78643,0 +$186,65:17159711,32652137 ) +(186,65:17159711,32652137:501378,78643,0 +(186,65:17323565,32652137:173670,78643,0 ) -(186,62:27688649,27946657:501378,78643,0 -(186,62:27852503,27946657:173670,78643,0 ) +(186,65:17661089,32652137:501378,78643,0 +(186,65:17824943,32652137:173670,78643,0 ) -(186,62:28190027,27946657:501378,78643,0 -(186,62:28353881,27946657:173670,78643,0 ) +(186,65:18162467,32652137:501378,78643,0 +(186,65:18326321,32652137:173670,78643,0 ) -(186,62:28691405,27946657:501378,78643,0 -(186,62:28855259,27946657:173670,78643,0 ) +(186,65:18663845,32652137:501378,78643,0 +(186,65:18827699,32652137:173670,78643,0 ) -(186,62:29192783,27946657:501378,78643,0 -(186,62:29356637,27946657:173670,78643,0 ) +(186,65:19165223,32652137:501378,78643,0 +(186,65:19329077,32652137:173670,78643,0 ) -(186,62:29694161,27946657:501378,78643,0 -(186,62:29858015,27946657:173670,78643,0 ) +(186,65:19666601,32652137:501378,78643,0 +(186,65:19830455,32652137:173670,78643,0 ) -(186,62:30195539,27946657:501378,78643,0 -(186,62:30359393,27946657:173670,78643,0 ) +(186,65:20167979,32652137:501378,78643,0 +(186,65:20331833,32652137:173670,78643,0 ) -(186,62:30696917,27946657:501378,78643,0 -(186,62:30860771,27946657:173670,78643,0 ) +(186,65:20669357,32652137:501378,78643,0 +(186,65:20833211,32652137:173670,78643,0 ) -(186,62:31239539,27946657:1343490,485622,11795 -k186,62:31239539,27946657:0 -k186,62:31387652,27946657:148113 ) -g186,62:30911859,27946657 -g186,62:32583029,27946657 +(186,65:21170735,32652137:501378,78643,0 +(186,65:21334589,32652137:173670,78643,0 ) -(186,63:6630773,28788145:25952256,505283,134348 -g186,63:9448823,28788145 -h186,63:9448823,28788145:983040,0,0 -h186,63:10431863,28788145:0,0,0 -g186,63:7613813,28788145 -(186,63:7613813,28788145:1835010,485622,11795 -k186,63:9448823,28788145:864422 ) -g186,63:12017834,28788145 -g186,63:14619613,28788145 -g186,63:14619613,28788145 -(186,63:14652821,28788145:501378,78643,0 -$186,63:14652821,28788145 -(186,63:14816675,28788145:173670,78643,0 +(186,65:21672113,32652137:501378,78643,0 +(186,65:21835967,32652137:173670,78643,0 ) -$186,63:15154199,28788145 ) -(186,63:15154199,28788145:501378,78643,0 -(186,63:15318053,28788145:173670,78643,0 +(186,65:22173491,32652137:501378,78643,0 +(186,65:22337345,32652137:173670,78643,0 ) ) -(186,63:15655577,28788145:501378,78643,0 -(186,63:15819431,28788145:173670,78643,0 +(186,65:22674869,32652137:501378,78643,0 +(186,65:22838723,32652137:173670,78643,0 ) ) -(186,63:16156955,28788145:501378,78643,0 -(186,63:16320809,28788145:173670,78643,0 +(186,65:23176247,32652137:501378,78643,0 +(186,65:23340101,32652137:173670,78643,0 ) ) -(186,63:16658333,28788145:501378,78643,0 -(186,63:16822187,28788145:173670,78643,0 +(186,65:23677625,32652137:501378,78643,0 +(186,65:23841479,32652137:173670,78643,0 ) ) -(186,63:17159711,28788145:501378,78643,0 -(186,63:17323565,28788145:173670,78643,0 +(186,65:24179003,32652137:501378,78643,0 +(186,65:24342857,32652137:173670,78643,0 ) ) -(186,63:17661089,28788145:501378,78643,0 -(186,63:17824943,28788145:173670,78643,0 +(186,65:24680381,32652137:501378,78643,0 +(186,65:24844235,32652137:173670,78643,0 ) ) -(186,63:18162467,28788145:501378,78643,0 -(186,63:18326321,28788145:173670,78643,0 +(186,65:25181759,32652137:501378,78643,0 +(186,65:25345613,32652137:173670,78643,0 ) ) -(186,63:18663845,28788145:501378,78643,0 -(186,63:18827699,28788145:173670,78643,0 +(186,65:25683137,32652137:501378,78643,0 +(186,65:25846991,32652137:173670,78643,0 ) ) -(186,63:19165223,28788145:501378,78643,0 -(186,63:19329077,28788145:173670,78643,0 +(186,65:26184515,32652137:501378,78643,0 +(186,65:26348369,32652137:173670,78643,0 ) ) -(186,63:19666601,28788145:501378,78643,0 -(186,63:19830455,28788145:173670,78643,0 +(186,65:26685893,32652137:501378,78643,0 +(186,65:26849747,32652137:173670,78643,0 ) ) -(186,63:20167979,28788145:501378,78643,0 -(186,63:20331833,28788145:173670,78643,0 +(186,65:27187271,32652137:501378,78643,0 +(186,65:27351125,32652137:173670,78643,0 ) ) -(186,63:20669357,28788145:501378,78643,0 -(186,63:20833211,28788145:173670,78643,0 +(186,65:27688649,32652137:501378,78643,0 +(186,65:27852503,32652137:173670,78643,0 ) ) -(186,63:21170735,28788145:501378,78643,0 -(186,63:21334589,28788145:173670,78643,0 +(186,65:28190027,32652137:501378,78643,0 +(186,65:28353881,32652137:173670,78643,0 ) ) -(186,63:21672113,28788145:501378,78643,0 -(186,63:21835967,28788145:173670,78643,0 +(186,65:28691405,32652137:501378,78643,0 +(186,65:28855259,32652137:173670,78643,0 ) ) -(186,63:22173491,28788145:501378,78643,0 -(186,63:22337345,28788145:173670,78643,0 +(186,65:29192783,32652137:501378,78643,0 +(186,65:29356637,32652137:173670,78643,0 ) ) -(186,63:22674869,28788145:501378,78643,0 -(186,63:22838723,28788145:173670,78643,0 +(186,65:29694161,32652137:501378,78643,0 +(186,65:29858015,32652137:173670,78643,0 ) ) -(186,63:23176247,28788145:501378,78643,0 -(186,63:23340101,28788145:173670,78643,0 +(186,65:30195539,32652137:501378,78643,0 +(186,65:30359393,32652137:173670,78643,0 ) ) -(186,63:23677625,28788145:501378,78643,0 -(186,63:23841479,28788145:173670,78643,0 +(186,65:30696917,32652137:501378,78643,0 +(186,65:30860771,32652137:173670,78643,0 ) ) -(186,63:24179003,28788145:501378,78643,0 -(186,63:24342857,28788145:173670,78643,0 +(186,65:31239539,32652137:1343490,485622,11795 +k186,65:31239539,32652137:0 +k186,65:31387652,32652137:148113 ) +g186,65:30911859,32652137 +g186,65:32583029,32652137 ) -(186,63:24680381,28788145:501378,78643,0 -(186,63:24844235,28788145:173670,78643,0 +(186,66:6630773,33517217:25952256,485622,134348 +g186,66:9710963,33517217 +h186,66:9710963,33517217:983040,0,0 +h186,66:10694003,33517217:0,0,0 +g186,66:7613813,33517217 +(186,66:7613813,33517217:2097150,485622,11795 +k186,66:9710963,33517217:1126562 ) +g186,66:12253104,33517217 +g186,66:14613710,33517217 +g186,66:14613710,33517217 +(186,66:14652821,33517217:501378,78643,0 +$186,66:14652821,33517217 +(186,66:14816675,33517217:173670,78643,0 ) -(186,63:25181759,28788145:501378,78643,0 -(186,63:25345613,28788145:173670,78643,0 +$186,66:15154199,33517217 ) +(186,66:15154199,33517217:501378,78643,0 +(186,66:15318053,33517217:173670,78643,0 ) -(186,63:25683137,28788145:501378,78643,0 -(186,63:25846991,28788145:173670,78643,0 ) +(186,66:15655577,33517217:501378,78643,0 +(186,66:15819431,33517217:173670,78643,0 ) -(186,63:26184515,28788145:501378,78643,0 -(186,63:26348369,28788145:173670,78643,0 ) +(186,66:16156955,33517217:501378,78643,0 +(186,66:16320809,33517217:173670,78643,0 ) -(186,63:26685893,28788145:501378,78643,0 -(186,63:26849747,28788145:173670,78643,0 ) +(186,66:16658333,33517217:501378,78643,0 +(186,66:16822187,33517217:173670,78643,0 ) -(186,63:27187271,28788145:501378,78643,0 -(186,63:27351125,28788145:173670,78643,0 ) +(186,66:17159711,33517217:501378,78643,0 +(186,66:17323565,33517217:173670,78643,0 ) -(186,63:27688649,28788145:501378,78643,0 -(186,63:27852503,28788145:173670,78643,0 ) +(186,66:17661089,33517217:501378,78643,0 +(186,66:17824943,33517217:173670,78643,0 ) -(186,63:28190027,28788145:501378,78643,0 -(186,63:28353881,28788145:173670,78643,0 ) +(186,66:18162467,33517217:501378,78643,0 +(186,66:18326321,33517217:173670,78643,0 ) -(186,63:28691405,28788145:501378,78643,0 -(186,63:28855259,28788145:173670,78643,0 ) +(186,66:18663845,33517217:501378,78643,0 +(186,66:18827699,33517217:173670,78643,0 ) -(186,63:29192783,28788145:501378,78643,0 -(186,63:29356637,28788145:173670,78643,0 ) +(186,66:19165223,33517217:501378,78643,0 +(186,66:19329077,33517217:173670,78643,0 ) -(186,63:29694161,28788145:501378,78643,0 -(186,63:29858015,28788145:173670,78643,0 ) +(186,66:19666601,33517217:501378,78643,0 +(186,66:19830455,33517217:173670,78643,0 ) -(186,63:30195539,28788145:501378,78643,0 -(186,63:30359393,28788145:173670,78643,0 ) +(186,66:20167979,33517217:501378,78643,0 +(186,66:20331833,33517217:173670,78643,0 ) -(186,63:30696917,28788145:501378,78643,0 -(186,63:30860771,28788145:173670,78643,0 ) +(186,66:20669357,33517217:501378,78643,0 +(186,66:20833211,33517217:173670,78643,0 ) -(186,63:31239539,28788145:1343490,485622,0 -k186,63:31239539,28788145:0 -k186,63:31387652,28788145:148113 ) -g186,63:30911859,28788145 -g186,63:32583029,28788145 +(186,66:21170735,33517217:501378,78643,0 +(186,66:21334589,33517217:173670,78643,0 ) -(186,64:6630773,30284993:25952256,505283,134348 -g186,64:7613813,30284993 -h186,64:7613813,30284993:0,0,0 -g186,64:6630773,30284993 -(186,64:6630773,30284993:983040,473825,11795 -k186,64:7613813,30284993:574751 ) -g186,64:9313161,30284993 -g186,64:10163163,30284993 -g186,64:14676627,30284993 -g186,64:16101379,30284993 -k186,64:25087020,30284993:6152520 -k186,64:31239539,30284993:6152519 -(186,64:31239539,30284993:1343490,485622,11795 -k186,64:31358161,30284993:118622 +(186,66:21672113,33517217:501378,78643,0 +(186,66:21835967,33517217:173670,78643,0 ) -g186,64:31239539,30284993 -g186,64:32583029,30284993 ) -(186,65:6630773,31126481:25952256,513147,126483 -g186,65:9448823,31126481 -h186,65:9448823,31126481:983040,0,0 -h186,65:10431863,31126481:0,0,0 -g186,65:7613813,31126481 -(186,65:7613813,31126481:1835010,477757,11795 -k186,65:9448823,31126481:864422 +(186,66:22173491,33517217:501378,78643,0 +(186,66:22337345,33517217:173670,78643,0 ) -g186,65:11287107,31126481 -g186,65:12145628,31126481 -g186,65:13548098,31126481 -g186,65:16164950,31126481 -g186,65:16164950,31126481 -(186,65:16658333,31126481:501378,78643,0 -$186,65:16658333,31126481 -(186,65:16822187,31126481:173670,78643,0 ) -$186,65:17159711,31126481 +(186,66:22674869,33517217:501378,78643,0 +(186,66:22838723,33517217:173670,78643,0 ) -(186,65:17159711,31126481:501378,78643,0 -(186,65:17323565,31126481:173670,78643,0 ) +(186,66:23176247,33517217:501378,78643,0 +(186,66:23340101,33517217:173670,78643,0 ) -(186,65:17661089,31126481:501378,78643,0 -(186,65:17824943,31126481:173670,78643,0 ) +(186,66:23677625,33517217:501378,78643,0 +(186,66:23841479,33517217:173670,78643,0 ) -(186,65:18162467,31126481:501378,78643,0 -(186,65:18326321,31126481:173670,78643,0 ) +(186,66:24179003,33517217:501378,78643,0 +(186,66:24342857,33517217:173670,78643,0 ) -(186,65:18663845,31126481:501378,78643,0 -(186,65:18827699,31126481:173670,78643,0 ) +(186,66:24680381,33517217:501378,78643,0 +(186,66:24844235,33517217:173670,78643,0 ) -(186,65:19165223,31126481:501378,78643,0 -(186,65:19329077,31126481:173670,78643,0 ) +(186,66:25181759,33517217:501378,78643,0 +(186,66:25345613,33517217:173670,78643,0 ) -(186,65:19666601,31126481:501378,78643,0 -(186,65:19830455,31126481:173670,78643,0 ) +(186,66:25683137,33517217:501378,78643,0 +(186,66:25846991,33517217:173670,78643,0 ) -(186,65:20167979,31126481:501378,78643,0 -(186,65:20331833,31126481:173670,78643,0 ) +(186,66:26184515,33517217:501378,78643,0 +(186,66:26348369,33517217:173670,78643,0 ) -(186,65:20669357,31126481:501378,78643,0 -(186,65:20833211,31126481:173670,78643,0 ) +(186,66:26685893,33517217:501378,78643,0 +(186,66:26849747,33517217:173670,78643,0 ) -(186,65:21170735,31126481:501378,78643,0 -(186,65:21334589,31126481:173670,78643,0 ) +(186,66:27187271,33517217:501378,78643,0 +(186,66:27351125,33517217:173670,78643,0 ) -(186,65:21672113,31126481:501378,78643,0 -(186,65:21835967,31126481:173670,78643,0 ) +(186,66:27688649,33517217:501378,78643,0 +(186,66:27852503,33517217:173670,78643,0 ) -(186,65:22173491,31126481:501378,78643,0 -(186,65:22337345,31126481:173670,78643,0 ) +(186,66:28190027,33517217:501378,78643,0 +(186,66:28353881,33517217:173670,78643,0 ) -(186,65:22674869,31126481:501378,78643,0 -(186,65:22838723,31126481:173670,78643,0 ) +(186,66:28691405,33517217:501378,78643,0 +(186,66:28855259,33517217:173670,78643,0 ) -(186,65:23176247,31126481:501378,78643,0 -(186,65:23340101,31126481:173670,78643,0 ) +(186,66:29192783,33517217:501378,78643,0 +(186,66:29356637,33517217:173670,78643,0 ) -(186,65:23677625,31126481:501378,78643,0 -(186,65:23841479,31126481:173670,78643,0 ) +(186,66:29694161,33517217:501378,78643,0 +(186,66:29858015,33517217:173670,78643,0 ) -(186,65:24179003,31126481:501378,78643,0 -(186,65:24342857,31126481:173670,78643,0 ) +(186,66:30195539,33517217:501378,78643,0 +(186,66:30359393,33517217:173670,78643,0 ) -(186,65:24680381,31126481:501378,78643,0 -(186,65:24844235,31126481:173670,78643,0 ) +(186,66:30696917,33517217:501378,78643,0 +(186,66:30860771,33517217:173670,78643,0 ) -(186,65:25181759,31126481:501378,78643,0 -(186,65:25345613,31126481:173670,78643,0 ) +(186,66:31239539,33517217:1343490,485622,11795 +k186,66:31239539,33517217:0 +k186,66:31387652,33517217:148113 ) -(186,65:25683137,31126481:501378,78643,0 -(186,65:25846991,31126481:173670,78643,0 +g186,66:30911859,33517217 +g186,66:32583029,33517217 ) +(186,67:6630773,34382297:25952256,505283,126483 +g186,67:12529013,34382297 +h186,67:12529013,34382297:3080190,0,0 +h186,67:15609203,34382297:0,0,0 +g186,67:9710963,34382297 +(186,67:9710963,34382297:2818050,485622,11795 +k186,67:12529013,34382297:1275332 ) -(186,65:26184515,31126481:501378,78643,0 -(186,65:26348369,31126481:173670,78643,0 +g186,67:14362055,34382297 +g186,67:15092781,34382297 +g186,67:15647870,34382297 +g186,67:17805971,34382297 +(186,67:18162467,34382297:501378,78643,0 +$186,67:18162467,34382297 +(186,67:18326321,34382297:173670,78643,0 ) +$186,67:18663845,34382297 ) -(186,65:26685893,31126481:501378,78643,0 -(186,65:26849747,31126481:173670,78643,0 +(186,67:18663845,34382297:501378,78643,0 +(186,67:18827699,34382297:173670,78643,0 ) ) -(186,65:27187271,31126481:501378,78643,0 -(186,65:27351125,31126481:173670,78643,0 +(186,67:19165223,34382297:501378,78643,0 +(186,67:19329077,34382297:173670,78643,0 ) ) -(186,65:27688649,31126481:501378,78643,0 -(186,65:27852503,31126481:173670,78643,0 +(186,67:19666601,34382297:501378,78643,0 +(186,67:19830455,34382297:173670,78643,0 ) ) -(186,65:28190027,31126481:501378,78643,0 -(186,65:28353881,31126481:173670,78643,0 +(186,67:20167979,34382297:501378,78643,0 +(186,67:20331833,34382297:173670,78643,0 ) ) -(186,65:28691405,31126481:501378,78643,0 -(186,65:28855259,31126481:173670,78643,0 +(186,67:20669357,34382297:501378,78643,0 +(186,67:20833211,34382297:173670,78643,0 ) ) -(186,65:29192783,31126481:501378,78643,0 -(186,65:29356637,31126481:173670,78643,0 +(186,67:21170735,34382297:501378,78643,0 +(186,67:21334589,34382297:173670,78643,0 ) ) -(186,65:29694161,31126481:501378,78643,0 -(186,65:29858015,31126481:173670,78643,0 +(186,67:21672113,34382297:501378,78643,0 +(186,67:21835967,34382297:173670,78643,0 ) ) -(186,65:30195539,31126481:501378,78643,0 -(186,65:30359393,31126481:173670,78643,0 +(186,67:22173491,34382297:501378,78643,0 +(186,67:22337345,34382297:173670,78643,0 ) ) -(186,65:30696917,31126481:501378,78643,0 -(186,65:30860771,31126481:173670,78643,0 +(186,67:22674869,34382297:501378,78643,0 +(186,67:22838723,34382297:173670,78643,0 ) ) -(186,65:31239539,31126481:1343490,485622,11795 -k186,65:31239539,31126481:0 -k186,65:31387652,31126481:148113 +(186,67:23176247,34382297:501378,78643,0 +(186,67:23340101,34382297:173670,78643,0 ) -g186,65:30911859,31126481 -g186,65:32583029,31126481 ) -(186,66:6630773,31967969:25952256,485622,134348 -g186,66:9448823,31967969 -h186,66:9448823,31967969:983040,0,0 -h186,66:10431863,31967969:0,0,0 -g186,66:7613813,31967969 -(186,66:7613813,31967969:1835010,485622,11795 -k186,66:9448823,31967969:864422 +(186,67:23677625,34382297:501378,78643,0 +(186,67:23841479,34382297:173670,78643,0 ) -g186,66:11990964,31967969 -g186,66:14351570,31967969 -g186,66:14351570,31967969 -(186,66:14652821,31967969:501378,78643,0 -$186,66:14652821,31967969 -(186,66:14816675,31967969:173670,78643,0 ) -$186,66:15154199,31967969 +(186,67:24179003,34382297:501378,78643,0 +(186,67:24342857,34382297:173670,78643,0 ) -(186,66:15154199,31967969:501378,78643,0 -(186,66:15318053,31967969:173670,78643,0 ) +(186,67:24680381,34382297:501378,78643,0 +(186,67:24844235,34382297:173670,78643,0 ) -(186,66:15655577,31967969:501378,78643,0 -(186,66:15819431,31967969:173670,78643,0 ) +(186,67:25181759,34382297:501378,78643,0 +(186,67:25345613,34382297:173670,78643,0 ) -(186,66:16156955,31967969:501378,78643,0 -(186,66:16320809,31967969:173670,78643,0 ) +(186,67:25683137,34382297:501378,78643,0 +(186,67:25846991,34382297:173670,78643,0 ) -(186,66:16658333,31967969:501378,78643,0 -(186,66:16822187,31967969:173670,78643,0 ) +(186,67:26184515,34382297:501378,78643,0 +(186,67:26348369,34382297:173670,78643,0 ) -(186,66:17159711,31967969:501378,78643,0 -(186,66:17323565,31967969:173670,78643,0 ) +(186,67:26685893,34382297:501378,78643,0 +(186,67:26849747,34382297:173670,78643,0 ) -(186,66:17661089,31967969:501378,78643,0 -(186,66:17824943,31967969:173670,78643,0 ) +(186,67:27187271,34382297:501378,78643,0 +(186,67:27351125,34382297:173670,78643,0 ) -(186,66:18162467,31967969:501378,78643,0 -(186,66:18326321,31967969:173670,78643,0 ) +(186,67:27688649,34382297:501378,78643,0 +(186,67:27852503,34382297:173670,78643,0 ) -(186,66:18663845,31967969:501378,78643,0 -(186,66:18827699,31967969:173670,78643,0 ) +(186,67:28190027,34382297:501378,78643,0 +(186,67:28353881,34382297:173670,78643,0 ) -(186,66:19165223,31967969:501378,78643,0 -(186,66:19329077,31967969:173670,78643,0 ) +(186,67:28691405,34382297:501378,78643,0 +(186,67:28855259,34382297:173670,78643,0 ) -(186,66:19666601,31967969:501378,78643,0 -(186,66:19830455,31967969:173670,78643,0 ) +(186,67:29192783,34382297:501378,78643,0 +(186,67:29356637,34382297:173670,78643,0 ) -(186,66:20167979,31967969:501378,78643,0 -(186,66:20331833,31967969:173670,78643,0 ) +(186,67:29694161,34382297:501378,78643,0 +(186,67:29858015,34382297:173670,78643,0 ) -(186,66:20669357,31967969:501378,78643,0 -(186,66:20833211,31967969:173670,78643,0 ) +(186,67:30195539,34382297:501378,78643,0 +(186,67:30359393,34382297:173670,78643,0 ) -(186,66:21170735,31967969:501378,78643,0 -(186,66:21334589,31967969:173670,78643,0 ) +(186,67:30696917,34382297:501378,78643,0 +(186,67:30860771,34382297:173670,78643,0 ) -(186,66:21672113,31967969:501378,78643,0 -(186,66:21835967,31967969:173670,78643,0 ) +(186,67:31239539,34382297:1343490,485622,11795 +k186,67:31239539,34382297:0 +k186,67:31387652,34382297:148113 ) -(186,66:22173491,31967969:501378,78643,0 -(186,66:22337345,31967969:173670,78643,0 +g186,67:30911859,34382297 +g186,67:32583029,34382297 ) +(186,68:6630773,35247377:25952256,505283,126483 +g186,68:12529013,35247377 +h186,68:12529013,35247377:3080190,0,0 +h186,68:15609203,35247377:0,0,0 +g186,68:9710963,35247377 +(186,68:9710963,35247377:2818050,485622,11795 +k186,68:12529013,35247377:1275332 ) -(186,66:22674869,31967969:501378,78643,0 -(186,66:22838723,31967969:173670,78643,0 +g186,68:14149063,35247377 +g186,68:15163560,35247377 +g186,68:16231141,35247377 +g186,68:17522855,35247377 +g186,68:18077944,35247377 +g186,68:20236045,35247377 +(186,68:20669357,35247377:501378,78643,0 +$186,68:20669357,35247377 +(186,68:20833211,35247377:173670,78643,0 ) +$186,68:21170735,35247377 ) -(186,66:23176247,31967969:501378,78643,0 -(186,66:23340101,31967969:173670,78643,0 +(186,68:21170735,35247377:501378,78643,0 +(186,68:21334589,35247377:173670,78643,0 ) ) -(186,66:23677625,31967969:501378,78643,0 -(186,66:23841479,31967969:173670,78643,0 +(186,68:21672113,35247377:501378,78643,0 +(186,68:21835967,35247377:173670,78643,0 ) ) -(186,66:24179003,31967969:501378,78643,0 -(186,66:24342857,31967969:173670,78643,0 +(186,68:22173491,35247377:501378,78643,0 +(186,68:22337345,35247377:173670,78643,0 ) ) -(186,66:24680381,31967969:501378,78643,0 -(186,66:24844235,31967969:173670,78643,0 +(186,68:22674869,35247377:501378,78643,0 +(186,68:22838723,35247377:173670,78643,0 ) ) -(186,66:25181759,31967969:501378,78643,0 -(186,66:25345613,31967969:173670,78643,0 +(186,68:23176247,35247377:501378,78643,0 +(186,68:23340101,35247377:173670,78643,0 ) ) -(186,66:25683137,31967969:501378,78643,0 -(186,66:25846991,31967969:173670,78643,0 +(186,68:23677625,35247377:501378,78643,0 +(186,68:23841479,35247377:173670,78643,0 ) ) -(186,66:26184515,31967969:501378,78643,0 -(186,66:26348369,31967969:173670,78643,0 +(186,68:24179003,35247377:501378,78643,0 +(186,68:24342857,35247377:173670,78643,0 ) ) -(186,66:26685893,31967969:501378,78643,0 -(186,66:26849747,31967969:173670,78643,0 +(186,68:24680381,35247377:501378,78643,0 +(186,68:24844235,35247377:173670,78643,0 ) ) -(186,66:27187271,31967969:501378,78643,0 -(186,66:27351125,31967969:173670,78643,0 +(186,68:25181759,35247377:501378,78643,0 +(186,68:25345613,35247377:173670,78643,0 ) ) -(186,66:27688649,31967969:501378,78643,0 -(186,66:27852503,31967969:173670,78643,0 +(186,68:25683137,35247377:501378,78643,0 +(186,68:25846991,35247377:173670,78643,0 ) ) -(186,66:28190027,31967969:501378,78643,0 -(186,66:28353881,31967969:173670,78643,0 +(186,68:26184515,35247377:501378,78643,0 +(186,68:26348369,35247377:173670,78643,0 ) ) -(186,66:28691405,31967969:501378,78643,0 -(186,66:28855259,31967969:173670,78643,0 +(186,68:26685893,35247377:501378,78643,0 +(186,68:26849747,35247377:173670,78643,0 ) ) -(186,66:29192783,31967969:501378,78643,0 -(186,66:29356637,31967969:173670,78643,0 +(186,68:27187271,35247377:501378,78643,0 +(186,68:27351125,35247377:173670,78643,0 ) ) -(186,66:29694161,31967969:501378,78643,0 -(186,66:29858015,31967969:173670,78643,0 +(186,68:27688649,35247377:501378,78643,0 +(186,68:27852503,35247377:173670,78643,0 ) ) -(186,66:30195539,31967969:501378,78643,0 -(186,66:30359393,31967969:173670,78643,0 +(186,68:28190027,35247377:501378,78643,0 +(186,68:28353881,35247377:173670,78643,0 ) ) -(186,66:30696917,31967969:501378,78643,0 -(186,66:30860771,31967969:173670,78643,0 +(186,68:28691405,35247377:501378,78643,0 +(186,68:28855259,35247377:173670,78643,0 ) ) -(186,66:31239538,31967969:1343490,485622,11795 -k186,66:31239538,31967969:0 -k186,66:31387651,31967969:148113 +(186,68:29192783,35247377:501378,78643,0 +(186,68:29356637,35247377:173670,78643,0 ) -g186,66:30911858,31967969 -g186,66:32583028,31967969 ) -(186,67:6630773,32809457:25952256,505283,126483 -g186,67:11873653,32809457 -h186,67:11873653,32809457:2818050,0,0 -h186,67:14691703,32809457:0,0,0 -g186,67:9448823,32809457 -(186,67:9448823,32809457:2424830,485622,11795 -k186,67:11873653,32809457:882112 +(186,68:29694161,35247377:501378,78643,0 +(186,68:29858015,35247377:173670,78643,0 ) -g186,67:13706695,32809457 -g186,67:14437421,32809457 -g186,67:14992510,32809457 -g186,67:17150611,32809457 -(186,67:17159711,32809457:501378,78643,0 -$186,67:17159711,32809457 -(186,67:17323565,32809457:173670,78643,0 ) -$186,67:17661089,32809457 +(186,68:30195539,35247377:501378,78643,0 +(186,68:30359393,35247377:173670,78643,0 ) -(186,67:17661089,32809457:501378,78643,0 -(186,67:17824943,32809457:173670,78643,0 ) +(186,68:30696917,35247377:501378,78643,0 +(186,68:30860771,35247377:173670,78643,0 ) -(186,67:18162467,32809457:501378,78643,0 -(186,67:18326321,32809457:173670,78643,0 ) +(186,68:31239539,35247377:1343490,485622,0 +k186,68:31239539,35247377:0 +k186,68:31387652,35247377:148113 ) -(186,67:18663845,32809457:501378,78643,0 -(186,67:18827699,32809457:173670,78643,0 +g186,68:30911859,35247377 +g186,68:32583029,35247377 ) +(186,69:6630773,36112457:25952256,485622,126483 +g186,69:12529013,36112457 +h186,69:12529013,36112457:3080190,0,0 +h186,69:15609203,36112457:0,0,0 +g186,69:9710963,36112457 +(186,69:9710963,36112457:2818050,485622,11795 +k186,69:12529013,36112457:1275332 ) -(186,67:19165223,32809457:501378,78643,0 -(186,67:19329077,32809457:173670,78643,0 +g186,69:14149063,36112457 +g186,69:14999720,36112457 +g186,69:16813756,36112457 +g186,69:17368845,36112457 +g186,69:19199921,36112457 +(186,69:19666601,36112457:501378,78643,0 +$186,69:19666601,36112457 +(186,69:19830455,36112457:173670,78643,0 ) +$186,69:20167979,36112457 ) -(186,67:19666601,32809457:501378,78643,0 -(186,67:19830455,32809457:173670,78643,0 +(186,69:20167979,36112457:501378,78643,0 +(186,69:20331833,36112457:173670,78643,0 ) ) -(186,67:20167979,32809457:501378,78643,0 -(186,67:20331833,32809457:173670,78643,0 +(186,69:20669357,36112457:501378,78643,0 +(186,69:20833211,36112457:173670,78643,0 ) ) -(186,67:20669357,32809457:501378,78643,0 -(186,67:20833211,32809457:173670,78643,0 +(186,69:21170735,36112457:501378,78643,0 +(186,69:21334589,36112457:173670,78643,0 ) ) -(186,67:21170735,32809457:501378,78643,0 -(186,67:21334589,32809457:173670,78643,0 +(186,69:21672113,36112457:501378,78643,0 +(186,69:21835967,36112457:173670,78643,0 ) ) -(186,67:21672113,32809457:501378,78643,0 -(186,67:21835967,32809457:173670,78643,0 +(186,69:22173491,36112457:501378,78643,0 +(186,69:22337345,36112457:173670,78643,0 ) ) -(186,67:22173491,32809457:501378,78643,0 -(186,67:22337345,32809457:173670,78643,0 +(186,69:22674869,36112457:501378,78643,0 +(186,69:22838723,36112457:173670,78643,0 ) ) -(186,67:22674869,32809457:501378,78643,0 -(186,67:22838723,32809457:173670,78643,0 +(186,69:23176247,36112457:501378,78643,0 +(186,69:23340101,36112457:173670,78643,0 ) ) -(186,67:23176247,32809457:501378,78643,0 -(186,67:23340101,32809457:173670,78643,0 +(186,69:23677625,36112457:501378,78643,0 +(186,69:23841479,36112457:173670,78643,0 ) ) -(186,67:23677625,32809457:501378,78643,0 -(186,67:23841479,32809457:173670,78643,0 +(186,69:24179003,36112457:501378,78643,0 +(186,69:24342857,36112457:173670,78643,0 ) ) -(186,67:24179003,32809457:501378,78643,0 -(186,67:24342857,32809457:173670,78643,0 +(186,69:24680381,36112457:501378,78643,0 +(186,69:24844235,36112457:173670,78643,0 ) ) -(186,67:24680381,32809457:501378,78643,0 -(186,67:24844235,32809457:173670,78643,0 +(186,69:25181759,36112457:501378,78643,0 +(186,69:25345613,36112457:173670,78643,0 ) ) -(186,67:25181759,32809457:501378,78643,0 -(186,67:25345613,32809457:173670,78643,0 +(186,69:25683137,36112457:501378,78643,0 +(186,69:25846991,36112457:173670,78643,0 ) ) -(186,67:25683137,32809457:501378,78643,0 -(186,67:25846991,32809457:173670,78643,0 +(186,69:26184515,36112457:501378,78643,0 +(186,69:26348369,36112457:173670,78643,0 ) ) -(186,67:26184515,32809457:501378,78643,0 -(186,67:26348369,32809457:173670,78643,0 +(186,69:26685893,36112457:501378,78643,0 +(186,69:26849747,36112457:173670,78643,0 ) ) -(186,67:26685893,32809457:501378,78643,0 -(186,67:26849747,32809457:173670,78643,0 +(186,69:27187271,36112457:501378,78643,0 +(186,69:27351125,36112457:173670,78643,0 ) ) -(186,67:27187271,32809457:501378,78643,0 -(186,67:27351125,32809457:173670,78643,0 +(186,69:27688649,36112457:501378,78643,0 +(186,69:27852503,36112457:173670,78643,0 ) ) -(186,67:27688649,32809457:501378,78643,0 -(186,67:27852503,32809457:173670,78643,0 +(186,69:28190027,36112457:501378,78643,0 +(186,69:28353881,36112457:173670,78643,0 ) ) -(186,67:28190027,32809457:501378,78643,0 -(186,67:28353881,32809457:173670,78643,0 +(186,69:28691405,36112457:501378,78643,0 +(186,69:28855259,36112457:173670,78643,0 ) ) -(186,67:28691405,32809457:501378,78643,0 -(186,67:28855259,32809457:173670,78643,0 +(186,69:29192783,36112457:501378,78643,0 +(186,69:29356637,36112457:173670,78643,0 ) ) -(186,67:29192783,32809457:501378,78643,0 -(186,67:29356637,32809457:173670,78643,0 +(186,69:29694161,36112457:501378,78643,0 +(186,69:29858015,36112457:173670,78643,0 ) ) -(186,67:29694161,32809457:501378,78643,0 -(186,67:29858015,32809457:173670,78643,0 +(186,69:30195539,36112457:501378,78643,0 +(186,69:30359393,36112457:173670,78643,0 ) ) -(186,67:30195539,32809457:501378,78643,0 -(186,67:30359393,32809457:173670,78643,0 +(186,69:30696917,36112457:501378,78643,0 +(186,69:30860771,36112457:173670,78643,0 ) ) -(186,67:30696917,32809457:501378,78643,0 -(186,67:30860771,32809457:173670,78643,0 +(186,69:31239539,36112457:1343490,485622,0 +k186,69:31239539,36112457:0 +k186,69:31387652,36112457:148113 ) +g186,69:30911859,36112457 +g186,69:32583029,36112457 ) -(186,67:31239539,32809457:1343490,485622,0 -k186,67:31239539,32809457:0 -k186,67:31387652,32809457:148113 +(186,70:6630773,36977537:25952256,505283,126483 +g186,70:12529013,36977537 +h186,70:12529013,36977537:3080190,0,0 +h186,70:15609203,36977537:0,0,0 +g186,70:9710963,36977537 +(186,70:9710963,36977537:2818050,485622,11795 +k186,70:12529013,36977537:1275332 ) -g186,67:30911859,32809457 -g186,67:32583029,32809457 +g186,70:13924929,36977537 +g186,70:15654424,36977537 +g186,70:16505081,36977537 +g186,70:17452076,36977537 +g186,70:22624832,36977537 +g186,70:23475489,36977537 +g186,70:25611307,36977537 +(186,70:25683137,36977537:501378,78643,0 +$186,70:25683137,36977537 +(186,70:25846991,36977537:173670,78643,0 ) -(186,68:6630773,33650945:25952256,505283,126483 -g186,68:11873653,33650945 -h186,68:11873653,33650945:2818050,0,0 -h186,68:14691703,33650945:0,0,0 -g186,68:9448823,33650945 -(186,68:9448823,33650945:2424830,485622,11795 -k186,68:11873653,33650945:882112 +$186,70:26184515,36977537 ) -g186,68:13493703,33650945 -g186,68:14508200,33650945 -g186,68:15575781,33650945 -g186,68:16867495,33650945 -g186,68:17422584,33650945 -g186,68:19580685,33650945 -(186,68:19666601,33650945:501378,78643,0 -$186,68:19666601,33650945 -(186,68:19830455,33650945:173670,78643,0 +(186,70:26184515,36977537:501378,78643,0 +(186,70:26348369,36977537:173670,78643,0 ) -$186,68:20167979,33650945 ) -(186,68:20167979,33650945:501378,78643,0 -(186,68:20331833,33650945:173670,78643,0 +(186,70:26685893,36977537:501378,78643,0 +(186,70:26849747,36977537:173670,78643,0 ) ) -(186,68:20669357,33650945:501378,78643,0 -(186,68:20833211,33650945:173670,78643,0 +(186,70:27187271,36977537:501378,78643,0 +(186,70:27351125,36977537:173670,78643,0 ) ) -(186,68:21170735,33650945:501378,78643,0 -(186,68:21334589,33650945:173670,78643,0 +(186,70:27688649,36977537:501378,78643,0 +(186,70:27852503,36977537:173670,78643,0 ) ) -(186,68:21672113,33650945:501378,78643,0 -(186,68:21835967,33650945:173670,78643,0 +(186,70:28190027,36977537:501378,78643,0 +(186,70:28353881,36977537:173670,78643,0 ) ) -(186,68:22173491,33650945:501378,78643,0 -(186,68:22337345,33650945:173670,78643,0 +(186,70:28691405,36977537:501378,78643,0 +(186,70:28855259,36977537:173670,78643,0 ) ) -(186,68:22674869,33650945:501378,78643,0 -(186,68:22838723,33650945:173670,78643,0 +(186,70:29192783,36977537:501378,78643,0 +(186,70:29356637,36977537:173670,78643,0 ) ) -(186,68:23176247,33650945:501378,78643,0 -(186,68:23340101,33650945:173670,78643,0 +(186,70:29694161,36977537:501378,78643,0 +(186,70:29858015,36977537:173670,78643,0 ) ) -(186,68:23677625,33650945:501378,78643,0 -(186,68:23841479,33650945:173670,78643,0 +(186,70:30195539,36977537:501378,78643,0 +(186,70:30359393,36977537:173670,78643,0 ) ) -(186,68:24179003,33650945:501378,78643,0 -(186,68:24342857,33650945:173670,78643,0 +(186,70:30696917,36977537:501378,78643,0 +(186,70:30860771,36977537:173670,78643,0 ) ) -(186,68:24680381,33650945:501378,78643,0 -(186,68:24844235,33650945:173670,78643,0 +(186,70:31239539,36977537:1343490,485622,0 +k186,70:31239539,36977537:0 +k186,70:31387652,36977537:148113 ) +g186,70:30911859,36977537 +g186,70:32583029,36977537 ) -(186,68:25181759,33650945:501378,78643,0 -(186,68:25345613,33650945:173670,78643,0 +(186,71:6630773,37842617:25952256,505283,134348 +g186,71:12529013,37842617 +h186,71:12529013,37842617:3080190,0,0 +h186,71:15609203,37842617:0,0,0 +g186,71:9710963,37842617 +(186,71:9710963,37842617:2818050,485622,11795 +k186,71:12529013,37842617:1275332 ) +g186,71:16132837,37842617 +g186,71:18294214,37842617 +(186,71:18663845,37842617:501378,78643,0 +$186,71:18663845,37842617 +(186,71:18827699,37842617:173670,78643,0 ) -(186,68:25683137,33650945:501378,78643,0 -(186,68:25846991,33650945:173670,78643,0 +$186,71:19165223,37842617 ) +(186,71:19165223,37842617:501378,78643,0 +(186,71:19329077,37842617:173670,78643,0 ) -(186,68:26184515,33650945:501378,78643,0 -(186,68:26348369,33650945:173670,78643,0 ) +(186,71:19666601,37842617:501378,78643,0 +(186,71:19830455,37842617:173670,78643,0 ) -(186,68:26685893,33650945:501378,78643,0 -(186,68:26849747,33650945:173670,78643,0 ) +(186,71:20167979,37842617:501378,78643,0 +(186,71:20331833,37842617:173670,78643,0 ) -(186,68:27187271,33650945:501378,78643,0 -(186,68:27351125,33650945:173670,78643,0 ) +(186,71:20669357,37842617:501378,78643,0 +(186,71:20833211,37842617:173670,78643,0 ) -(186,68:27688649,33650945:501378,78643,0 -(186,68:27852503,33650945:173670,78643,0 ) +(186,71:21170735,37842617:501378,78643,0 +(186,71:21334589,37842617:173670,78643,0 ) -(186,68:28190027,33650945:501378,78643,0 -(186,68:28353881,33650945:173670,78643,0 ) +(186,71:21672113,37842617:501378,78643,0 +(186,71:21835967,37842617:173670,78643,0 ) -(186,68:28691405,33650945:501378,78643,0 -(186,68:28855259,33650945:173670,78643,0 ) +(186,71:22173491,37842617:501378,78643,0 +(186,71:22337345,37842617:173670,78643,0 ) -(186,68:29192783,33650945:501378,78643,0 -(186,68:29356637,33650945:173670,78643,0 ) +(186,71:22674869,37842617:501378,78643,0 +(186,71:22838723,37842617:173670,78643,0 ) -(186,68:29694161,33650945:501378,78643,0 -(186,68:29858015,33650945:173670,78643,0 ) +(186,71:23176247,37842617:501378,78643,0 +(186,71:23340101,37842617:173670,78643,0 ) -(186,68:30195539,33650945:501378,78643,0 -(186,68:30359393,33650945:173670,78643,0 ) +(186,71:23677625,37842617:501378,78643,0 +(186,71:23841479,37842617:173670,78643,0 ) -(186,68:30696917,33650945:501378,78643,0 -(186,68:30860771,33650945:173670,78643,0 ) +(186,71:24179003,37842617:501378,78643,0 +(186,71:24342857,37842617:173670,78643,0 ) -(186,68:31239539,33650945:1343490,485622,11795 -k186,68:31239539,33650945:0 -k186,68:31387652,33650945:148113 ) -g186,68:30911859,33650945 -g186,68:32583029,33650945 +(186,71:24680381,37842617:501378,78643,0 +(186,71:24844235,37842617:173670,78643,0 ) -(186,69:6630773,34492433:25952256,485622,126483 -g186,69:11873653,34492433 -h186,69:11873653,34492433:2818050,0,0 -h186,69:14691703,34492433:0,0,0 -g186,69:9448823,34492433 -(186,69:9448823,34492433:2424830,485622,11795 -k186,69:11873653,34492433:882112 ) -g186,69:13493703,34492433 -g186,69:14344360,34492433 -g186,69:16158396,34492433 -g186,69:16713485,34492433 -g186,69:18544561,34492433 -(186,69:18663845,34492433:501378,78643,0 -$186,69:18663845,34492433 -(186,69:18827699,34492433:173670,78643,0 +(186,71:25181759,37842617:501378,78643,0 +(186,71:25345613,37842617:173670,78643,0 ) -$186,69:19165223,34492433 ) -(186,69:19165223,34492433:501378,78643,0 -(186,69:19329077,34492433:173670,78643,0 +(186,71:25683137,37842617:501378,78643,0 +(186,71:25846991,37842617:173670,78643,0 ) ) -(186,69:19666601,34492433:501378,78643,0 -(186,69:19830455,34492433:173670,78643,0 +(186,71:26184515,37842617:501378,78643,0 +(186,71:26348369,37842617:173670,78643,0 ) ) -(186,69:20167979,34492433:501378,78643,0 -(186,69:20331833,34492433:173670,78643,0 +(186,71:26685893,37842617:501378,78643,0 +(186,71:26849747,37842617:173670,78643,0 ) ) -(186,69:20669357,34492433:501378,78643,0 -(186,69:20833211,34492433:173670,78643,0 +(186,71:27187271,37842617:501378,78643,0 +(186,71:27351125,37842617:173670,78643,0 ) ) -(186,69:21170735,34492433:501378,78643,0 -(186,69:21334589,34492433:173670,78643,0 +(186,71:27688649,37842617:501378,78643,0 +(186,71:27852503,37842617:173670,78643,0 ) ) -(186,69:21672113,34492433:501378,78643,0 -(186,69:21835967,34492433:173670,78643,0 +(186,71:28190027,37842617:501378,78643,0 +(186,71:28353881,37842617:173670,78643,0 ) ) -(186,69:22173491,34492433:501378,78643,0 -(186,69:22337345,34492433:173670,78643,0 +(186,71:28691405,37842617:501378,78643,0 +(186,71:28855259,37842617:173670,78643,0 ) ) -(186,69:22674869,34492433:501378,78643,0 -(186,69:22838723,34492433:173670,78643,0 +(186,71:29192783,37842617:501378,78643,0 +(186,71:29356637,37842617:173670,78643,0 ) ) -(186,69:23176247,34492433:501378,78643,0 -(186,69:23340101,34492433:173670,78643,0 +(186,71:29694161,37842617:501378,78643,0 +(186,71:29858015,37842617:173670,78643,0 ) ) -(186,69:23677625,34492433:501378,78643,0 -(186,69:23841479,34492433:173670,78643,0 +(186,71:30195539,37842617:501378,78643,0 +(186,71:30359393,37842617:173670,78643,0 ) ) -(186,69:24179003,34492433:501378,78643,0 -(186,69:24342857,34492433:173670,78643,0 +(186,71:30696917,37842617:501378,78643,0 +(186,71:30860771,37842617:173670,78643,0 ) ) -(186,69:24680381,34492433:501378,78643,0 -(186,69:24844235,34492433:173670,78643,0 +(186,71:31239539,37842617:1343490,485622,0 +k186,71:31239539,37842617:0 +k186,71:31387652,37842617:148113 ) +g186,71:30911859,37842617 +g186,71:32583029,37842617 ) -(186,69:25181759,34492433:501378,78643,0 -(186,69:25345613,34492433:173670,78643,0 +(186,72:6630773,38707697:25952256,505283,126483 +g186,72:9710963,38707697 +h186,72:9710963,38707697:983040,0,0 +h186,72:10694003,38707697:0,0,0 +g186,72:7613813,38707697 +(186,72:7613813,38707697:2097150,485622,11795 +k186,72:9710963,38707697:1126562 ) +g186,72:13445859,38707697 +g186,72:17161750,38707697 +g186,72:17161750,38707697 +(186,72:17661089,38707697:501378,78643,0 +$186,72:17661089,38707697 +(186,72:17824943,38707697:173670,78643,0 ) -(186,69:25683137,34492433:501378,78643,0 -(186,69:25846991,34492433:173670,78643,0 +$186,72:18162467,38707697 ) +(186,72:18162467,38707697:501378,78643,0 +(186,72:18326321,38707697:173670,78643,0 ) -(186,69:26184515,34492433:501378,78643,0 -(186,69:26348369,34492433:173670,78643,0 ) +(186,72:18663845,38707697:501378,78643,0 +(186,72:18827699,38707697:173670,78643,0 ) -(186,69:26685893,34492433:501378,78643,0 -(186,69:26849747,34492433:173670,78643,0 ) +(186,72:19165223,38707697:501378,78643,0 +(186,72:19329077,38707697:173670,78643,0 ) -(186,69:27187271,34492433:501378,78643,0 -(186,69:27351125,34492433:173670,78643,0 ) +(186,72:19666601,38707697:501378,78643,0 +(186,72:19830455,38707697:173670,78643,0 ) -(186,69:27688649,34492433:501378,78643,0 -(186,69:27852503,34492433:173670,78643,0 ) +(186,72:20167979,38707697:501378,78643,0 +(186,72:20331833,38707697:173670,78643,0 ) -(186,69:28190027,34492433:501378,78643,0 -(186,69:28353881,34492433:173670,78643,0 ) +(186,72:20669357,38707697:501378,78643,0 +(186,72:20833211,38707697:173670,78643,0 ) -(186,69:28691405,34492433:501378,78643,0 -(186,69:28855259,34492433:173670,78643,0 ) +(186,72:21170735,38707697:501378,78643,0 +(186,72:21334589,38707697:173670,78643,0 ) -(186,69:29192783,34492433:501378,78643,0 -(186,69:29356637,34492433:173670,78643,0 ) +(186,72:21672113,38707697:501378,78643,0 +(186,72:21835967,38707697:173670,78643,0 ) -(186,69:29694161,34492433:501378,78643,0 -(186,69:29858015,34492433:173670,78643,0 ) +(186,72:22173491,38707697:501378,78643,0 +(186,72:22337345,38707697:173670,78643,0 ) -(186,69:30195539,34492433:501378,78643,0 -(186,69:30359393,34492433:173670,78643,0 ) +(186,72:22674869,38707697:501378,78643,0 +(186,72:22838723,38707697:173670,78643,0 ) -(186,69:30696917,34492433:501378,78643,0 -(186,69:30860771,34492433:173670,78643,0 ) +(186,72:23176247,38707697:501378,78643,0 +(186,72:23340101,38707697:173670,78643,0 ) -(186,69:31239539,34492433:1343490,485622,11795 -k186,69:31239539,34492433:0 -k186,69:31387652,34492433:148113 ) -g186,69:30911859,34492433 -g186,69:32583029,34492433 +(186,72:23677625,38707697:501378,78643,0 +(186,72:23841479,38707697:173670,78643,0 ) -(186,70:6630773,35333921:25952256,505283,126483 -g186,70:11873653,35333921 -h186,70:11873653,35333921:2818050,0,0 -h186,70:14691703,35333921:0,0,0 -g186,70:9448823,35333921 -(186,70:9448823,35333921:2424830,485622,11795 -k186,70:11873653,35333921:882112 ) -g186,70:13269569,35333921 -g186,70:14999064,35333921 -g186,70:15849721,35333921 -g186,70:16796716,35333921 -g186,70:21969472,35333921 -g186,70:22820129,35333921 -g186,70:24955947,35333921 -(186,70:25181759,35333921:501378,78643,0 -$186,70:25181759,35333921 -(186,70:25345613,35333921:173670,78643,0 +(186,72:24179003,38707697:501378,78643,0 +(186,72:24342857,38707697:173670,78643,0 ) -$186,70:25683137,35333921 ) -(186,70:25683137,35333921:501378,78643,0 -(186,70:25846991,35333921:173670,78643,0 +(186,72:24680381,38707697:501378,78643,0 +(186,72:24844235,38707697:173670,78643,0 ) ) -(186,70:26184515,35333921:501378,78643,0 -(186,70:26348369,35333921:173670,78643,0 +(186,72:25181759,38707697:501378,78643,0 +(186,72:25345613,38707697:173670,78643,0 ) ) -(186,70:26685893,35333921:501378,78643,0 -(186,70:26849747,35333921:173670,78643,0 +(186,72:25683137,38707697:501378,78643,0 +(186,72:25846991,38707697:173670,78643,0 ) ) -(186,70:27187271,35333921:501378,78643,0 -(186,70:27351125,35333921:173670,78643,0 +(186,72:26184515,38707697:501378,78643,0 +(186,72:26348369,38707697:173670,78643,0 ) ) -(186,70:27688649,35333921:501378,78643,0 -(186,70:27852503,35333921:173670,78643,0 +(186,72:26685893,38707697:501378,78643,0 +(186,72:26849747,38707697:173670,78643,0 ) ) -(186,70:28190027,35333921:501378,78643,0 -(186,70:28353881,35333921:173670,78643,0 +(186,72:27187271,38707697:501378,78643,0 +(186,72:27351125,38707697:173670,78643,0 ) ) -(186,70:28691405,35333921:501378,78643,0 -(186,70:28855259,35333921:173670,78643,0 +(186,72:27688649,38707697:501378,78643,0 +(186,72:27852503,38707697:173670,78643,0 ) ) -(186,70:29192783,35333921:501378,78643,0 -(186,70:29356637,35333921:173670,78643,0 +(186,72:28190027,38707697:501378,78643,0 +(186,72:28353881,38707697:173670,78643,0 ) ) -(186,70:29694161,35333921:501378,78643,0 -(186,70:29858015,35333921:173670,78643,0 +(186,72:28691405,38707697:501378,78643,0 +(186,72:28855259,38707697:173670,78643,0 ) ) -(186,70:30195539,35333921:501378,78643,0 -(186,70:30359393,35333921:173670,78643,0 +(186,72:29192783,38707697:501378,78643,0 +(186,72:29356637,38707697:173670,78643,0 ) ) -(186,70:30696917,35333921:501378,78643,0 -(186,70:30860771,35333921:173670,78643,0 +(186,72:29694161,38707697:501378,78643,0 +(186,72:29858015,38707697:173670,78643,0 ) ) -(186,70:31239539,35333921:1343490,485622,11795 -k186,70:31239539,35333921:0 -k186,70:31387652,35333921:148113 +(186,72:30195539,38707697:501378,78643,0 +(186,72:30359393,38707697:173670,78643,0 ) -g186,70:30911859,35333921 -g186,70:32583029,35333921 ) -(186,71:6630773,36175409:25952256,505283,134348 -g186,71:11873653,36175409 -h186,71:11873653,36175409:2818050,0,0 -h186,71:14691703,36175409:0,0,0 -g186,71:9448823,36175409 -(186,71:9448823,36175409:2424830,485622,11795 -k186,71:11873653,36175409:882112 +(186,72:30696917,38707697:501378,78643,0 +(186,72:30860771,38707697:173670,78643,0 ) -g186,71:15477477,36175409 -g186,71:17638854,36175409 -(186,71:17661089,36175409:501378,78643,0 -$186,71:17661089,36175409 -(186,71:17824943,36175409:173670,78643,0 ) -$186,71:18162467,36175409 +(186,72:31239539,38707697:1343490,485622,11795 +k186,72:31239539,38707697:0 +k186,72:31387652,38707697:148113 ) -(186,71:18162467,36175409:501378,78643,0 -(186,71:18326321,36175409:173670,78643,0 +g186,72:30911859,38707697 +g186,72:32583029,38707697 ) +(186,73:6630773,39572777:25952256,505283,11795 +g186,73:9710963,39572777 +h186,73:9710963,39572777:983040,0,0 +h186,73:10694003,39572777:0,0,0 +g186,73:7613813,39572777 +(186,73:7613813,39572777:2097150,481690,11795 +k186,73:9710963,39572777:1126562 ) -(186,71:18663845,36175409:501378,78643,0 -(186,71:18827699,36175409:173670,78643,0 +g186,73:12700060,39572777 +g186,73:14329285,39572777 +g186,73:14329285,39572777 +(186,73:14652821,39572777:501378,78643,0 +$186,73:14652821,39572777 +(186,73:14816675,39572777:173670,78643,0 ) +$186,73:15154199,39572777 ) -(186,71:19165223,36175409:501378,78643,0 -(186,71:19329077,36175409:173670,78643,0 +(186,73:15154199,39572777:501378,78643,0 +(186,73:15318053,39572777:173670,78643,0 ) ) -(186,71:19666601,36175409:501378,78643,0 -(186,71:19830455,36175409:173670,78643,0 +(186,73:15655577,39572777:501378,78643,0 +(186,73:15819431,39572777:173670,78643,0 ) ) -(186,71:20167979,36175409:501378,78643,0 -(186,71:20331833,36175409:173670,78643,0 +(186,73:16156955,39572777:501378,78643,0 +(186,73:16320809,39572777:173670,78643,0 ) ) -(186,71:20669357,36175409:501378,78643,0 -(186,71:20833211,36175409:173670,78643,0 +(186,73:16658333,39572777:501378,78643,0 +(186,73:16822187,39572777:173670,78643,0 ) ) -(186,71:21170735,36175409:501378,78643,0 -(186,71:21334589,36175409:173670,78643,0 +(186,73:17159711,39572777:501378,78643,0 +(186,73:17323565,39572777:173670,78643,0 ) ) -(186,71:21672113,36175409:501378,78643,0 -(186,71:21835967,36175409:173670,78643,0 +(186,73:17661089,39572777:501378,78643,0 +(186,73:17824943,39572777:173670,78643,0 ) ) -(186,71:22173491,36175409:501378,78643,0 -(186,71:22337345,36175409:173670,78643,0 +(186,73:18162467,39572777:501378,78643,0 +(186,73:18326321,39572777:173670,78643,0 ) ) -(186,71:22674869,36175409:501378,78643,0 -(186,71:22838723,36175409:173670,78643,0 +(186,73:18663845,39572777:501378,78643,0 +(186,73:18827699,39572777:173670,78643,0 ) ) -(186,71:23176247,36175409:501378,78643,0 -(186,71:23340101,36175409:173670,78643,0 +(186,73:19165223,39572777:501378,78643,0 +(186,73:19329077,39572777:173670,78643,0 ) ) -(186,71:23677625,36175409:501378,78643,0 -(186,71:23841479,36175409:173670,78643,0 +(186,73:19666601,39572777:501378,78643,0 +(186,73:19830455,39572777:173670,78643,0 ) ) -(186,71:24179003,36175409:501378,78643,0 -(186,71:24342857,36175409:173670,78643,0 +(186,73:20167979,39572777:501378,78643,0 +(186,73:20331833,39572777:173670,78643,0 ) ) -(186,71:24680381,36175409:501378,78643,0 -(186,71:24844235,36175409:173670,78643,0 +(186,73:20669357,39572777:501378,78643,0 +(186,73:20833211,39572777:173670,78643,0 ) ) -(186,71:25181759,36175409:501378,78643,0 -(186,71:25345613,36175409:173670,78643,0 +(186,73:21170735,39572777:501378,78643,0 +(186,73:21334589,39572777:173670,78643,0 ) ) -(186,71:25683137,36175409:501378,78643,0 -(186,71:25846991,36175409:173670,78643,0 +(186,73:21672113,39572777:501378,78643,0 +(186,73:21835967,39572777:173670,78643,0 ) ) -(186,71:26184515,36175409:501378,78643,0 -(186,71:26348369,36175409:173670,78643,0 +(186,73:22173491,39572777:501378,78643,0 +(186,73:22337345,39572777:173670,78643,0 ) ) -(186,71:26685893,36175409:501378,78643,0 -(186,71:26849747,36175409:173670,78643,0 +(186,73:22674869,39572777:501378,78643,0 +(186,73:22838723,39572777:173670,78643,0 ) ) -(186,71:27187271,36175409:501378,78643,0 -(186,71:27351125,36175409:173670,78643,0 +(186,73:23176247,39572777:501378,78643,0 +(186,73:23340101,39572777:173670,78643,0 ) ) -(186,71:27688649,36175409:501378,78643,0 -(186,71:27852503,36175409:173670,78643,0 +(186,73:23677625,39572777:501378,78643,0 +(186,73:23841479,39572777:173670,78643,0 ) ) -(186,71:28190027,36175409:501378,78643,0 -(186,71:28353881,36175409:173670,78643,0 +(186,73:24179003,39572777:501378,78643,0 +(186,73:24342857,39572777:173670,78643,0 ) ) -(186,71:28691405,36175409:501378,78643,0 -(186,71:28855259,36175409:173670,78643,0 +(186,73:24680381,39572777:501378,78643,0 +(186,73:24844235,39572777:173670,78643,0 ) ) -(186,71:29192783,36175409:501378,78643,0 -(186,71:29356637,36175409:173670,78643,0 +(186,73:25181759,39572777:501378,78643,0 +(186,73:25345613,39572777:173670,78643,0 ) ) -(186,71:29694161,36175409:501378,78643,0 -(186,71:29858015,36175409:173670,78643,0 +(186,73:25683137,39572777:501378,78643,0 +(186,73:25846991,39572777:173670,78643,0 ) ) -(186,71:30195539,36175409:501378,78643,0 -(186,71:30359393,36175409:173670,78643,0 +(186,73:26184515,39572777:501378,78643,0 +(186,73:26348369,39572777:173670,78643,0 ) ) -(186,71:30696917,36175409:501378,78643,0 -(186,71:30860771,36175409:173670,78643,0 +(186,73:26685893,39572777:501378,78643,0 +(186,73:26849747,39572777:173670,78643,0 ) ) -(186,71:31239539,36175409:1343490,485622,11795 -k186,71:31239539,36175409:0 -k186,71:31387652,36175409:148113 +(186,73:27187271,39572777:501378,78643,0 +(186,73:27351125,39572777:173670,78643,0 ) -g186,71:30911859,36175409 -g186,71:32583029,36175409 ) -(186,72:6630773,37016897:25952256,505283,126483 -g186,72:9448823,37016897 -h186,72:9448823,37016897:983040,0,0 -h186,72:10431863,37016897:0,0,0 -g186,72:7613813,37016897 -(186,72:7613813,37016897:1835010,485622,11795 -k186,72:9448823,37016897:864422 +(186,73:27688649,39572777:501378,78643,0 +(186,73:27852503,39572777:173670,78643,0 ) -g186,72:13183719,37016897 -g186,72:16899610,37016897 -g186,72:16899610,37016897 -(186,72:17159711,37016897:501378,78643,0 -$186,72:17159711,37016897 -(186,72:17323565,37016897:173670,78643,0 ) -$186,72:17661089,37016897 +(186,73:28190027,39572777:501378,78643,0 +(186,73:28353881,39572777:173670,78643,0 ) -(186,72:17661089,37016897:501378,78643,0 -(186,72:17824943,37016897:173670,78643,0 ) +(186,73:28691405,39572777:501378,78643,0 +(186,73:28855259,39572777:173670,78643,0 ) -(186,72:18162467,37016897:501378,78643,0 -(186,72:18326321,37016897:173670,78643,0 ) +(186,73:29192783,39572777:501378,78643,0 +(186,73:29356637,39572777:173670,78643,0 ) -(186,72:18663845,37016897:501378,78643,0 -(186,72:18827699,37016897:173670,78643,0 ) +(186,73:29694161,39572777:501378,78643,0 +(186,73:29858015,39572777:173670,78643,0 ) -(186,72:19165223,37016897:501378,78643,0 -(186,72:19329077,37016897:173670,78643,0 ) +(186,73:30195539,39572777:501378,78643,0 +(186,73:30359393,39572777:173670,78643,0 ) -(186,72:19666601,37016897:501378,78643,0 -(186,72:19830455,37016897:173670,78643,0 ) +(186,73:30696917,39572777:501378,78643,0 +(186,73:30860771,39572777:173670,78643,0 ) -(186,72:20167979,37016897:501378,78643,0 -(186,72:20331833,37016897:173670,78643,0 ) +(186,73:31239539,39572777:1343490,485622,11795 +k186,73:31239539,39572777:0 +k186,73:31387652,39572777:148113 ) -(186,72:20669357,37016897:501378,78643,0 -(186,72:20833211,37016897:173670,78643,0 +g186,73:30911859,39572777 +g186,73:32583029,39572777 ) +(186,74:6630773,40437857:25952256,485622,126483 +g186,74:9710963,40437857 +h186,74:9710963,40437857:983040,0,0 +h186,74:10694003,40437857:0,0,0 +g186,74:7613813,40437857 +(186,74:7613813,40437857:2097150,473825,11795 +k186,74:9710963,40437857:1126562 ) -(186,72:21170735,37016897:501378,78643,0 -(186,72:21334589,37016897:173670,78643,0 +g186,74:11382131,40437857 +g186,74:13301680,40437857 +g186,74:13301680,40437857 +(186,74:13650065,40437857:501378,78643,0 +$186,74:13650065,40437857 +(186,74:13813919,40437857:173670,78643,0 ) +$186,74:14151443,40437857 ) -(186,72:21672113,37016897:501378,78643,0 -(186,72:21835967,37016897:173670,78643,0 +(186,74:14151443,40437857:501378,78643,0 +(186,74:14315297,40437857:173670,78643,0 ) ) -(186,72:22173491,37016897:501378,78643,0 -(186,72:22337345,37016897:173670,78643,0 +(186,74:14652821,40437857:501378,78643,0 +(186,74:14816675,40437857:173670,78643,0 ) ) -(186,72:22674869,37016897:501378,78643,0 -(186,72:22838723,37016897:173670,78643,0 +(186,74:15154199,40437857:501378,78643,0 +(186,74:15318053,40437857:173670,78643,0 ) ) -(186,72:23176247,37016897:501378,78643,0 -(186,72:23340101,37016897:173670,78643,0 +(186,74:15655577,40437857:501378,78643,0 +(186,74:15819431,40437857:173670,78643,0 ) ) -(186,72:23677625,37016897:501378,78643,0 -(186,72:23841479,37016897:173670,78643,0 +(186,74:16156955,40437857:501378,78643,0 +(186,74:16320809,40437857:173670,78643,0 ) ) -(186,72:24179003,37016897:501378,78643,0 -(186,72:24342857,37016897:173670,78643,0 +(186,74:16658333,40437857:501378,78643,0 +(186,74:16822187,40437857:173670,78643,0 ) ) -(186,72:24680381,37016897:501378,78643,0 -(186,72:24844235,37016897:173670,78643,0 +(186,74:17159711,40437857:501378,78643,0 +(186,74:17323565,40437857:173670,78643,0 ) ) -(186,72:25181759,37016897:501378,78643,0 -(186,72:25345613,37016897:173670,78643,0 +(186,74:17661089,40437857:501378,78643,0 +(186,74:17824943,40437857:173670,78643,0 ) ) -(186,72:25683137,37016897:501378,78643,0 -(186,72:25846991,37016897:173670,78643,0 +(186,74:18162467,40437857:501378,78643,0 +(186,74:18326321,40437857:173670,78643,0 ) ) -(186,72:26184515,37016897:501378,78643,0 -(186,72:26348369,37016897:173670,78643,0 +(186,74:18663845,40437857:501378,78643,0 +(186,74:18827699,40437857:173670,78643,0 ) ) -(186,72:26685893,37016897:501378,78643,0 -(186,72:26849747,37016897:173670,78643,0 +(186,74:19165223,40437857:501378,78643,0 +(186,74:19329077,40437857:173670,78643,0 ) ) -(186,72:27187271,37016897:501378,78643,0 -(186,72:27351125,37016897:173670,78643,0 +(186,74:19666601,40437857:501378,78643,0 +(186,74:19830455,40437857:173670,78643,0 ) ) -(186,72:27688649,37016897:501378,78643,0 -(186,72:27852503,37016897:173670,78643,0 +(186,74:20167979,40437857:501378,78643,0 +(186,74:20331833,40437857:173670,78643,0 ) ) -(186,72:28190027,37016897:501378,78643,0 -(186,72:28353881,37016897:173670,78643,0 +(186,74:20669357,40437857:501378,78643,0 +(186,74:20833211,40437857:173670,78643,0 ) ) -(186,72:28691405,37016897:501378,78643,0 -(186,72:28855259,37016897:173670,78643,0 +(186,74:21170735,40437857:501378,78643,0 +(186,74:21334589,40437857:173670,78643,0 ) ) -(186,72:29192783,37016897:501378,78643,0 -(186,72:29356637,37016897:173670,78643,0 +(186,74:21672113,40437857:501378,78643,0 +(186,74:21835967,40437857:173670,78643,0 ) ) -(186,72:29694161,37016897:501378,78643,0 -(186,72:29858015,37016897:173670,78643,0 +(186,74:22173491,40437857:501378,78643,0 +(186,74:22337345,40437857:173670,78643,0 ) ) -(186,72:30195539,37016897:501378,78643,0 -(186,72:30359393,37016897:173670,78643,0 +(186,74:22674869,40437857:501378,78643,0 +(186,74:22838723,40437857:173670,78643,0 ) ) -(186,72:30696917,37016897:501378,78643,0 -(186,72:30860771,37016897:173670,78643,0 +(186,74:23176247,40437857:501378,78643,0 +(186,74:23340101,40437857:173670,78643,0 ) ) -(186,72:31239539,37016897:1343490,485622,11795 -k186,72:31239539,37016897:0 -k186,72:31387652,37016897:148113 +(186,74:23677625,40437857:501378,78643,0 +(186,74:23841479,40437857:173670,78643,0 ) -g186,72:30911859,37016897 -g186,72:32583029,37016897 ) -(186,73:6630773,37858385:25952256,505283,11795 -g186,73:9448823,37858385 -h186,73:9448823,37858385:983040,0,0 -h186,73:10431863,37858385:0,0,0 -g186,73:7613813,37858385 -(186,73:7613813,37858385:1835010,481690,11795 -k186,73:9448823,37858385:864422 +(186,74:24179003,40437857:501378,78643,0 +(186,74:24342857,40437857:173670,78643,0 ) -g186,73:12437920,37858385 -g186,73:14067145,37858385 -g186,73:14067145,37858385 -(186,73:14151443,37858385:501378,78643,0 -$186,73:14151443,37858385 -(186,73:14315297,37858385:173670,78643,0 ) -$186,73:14652821,37858385 +(186,74:24680381,40437857:501378,78643,0 +(186,74:24844235,40437857:173670,78643,0 ) -(186,73:14652821,37858385:501378,78643,0 -(186,73:14816675,37858385:173670,78643,0 ) +(186,74:25181759,40437857:501378,78643,0 +(186,74:25345613,40437857:173670,78643,0 ) -(186,73:15154199,37858385:501378,78643,0 -(186,73:15318053,37858385:173670,78643,0 ) +(186,74:25683137,40437857:501378,78643,0 +(186,74:25846991,40437857:173670,78643,0 ) -(186,73:15655577,37858385:501378,78643,0 -(186,73:15819431,37858385:173670,78643,0 ) +(186,74:26184515,40437857:501378,78643,0 +(186,74:26348369,40437857:173670,78643,0 ) -(186,73:16156955,37858385:501378,78643,0 -(186,73:16320809,37858385:173670,78643,0 ) +(186,74:26685893,40437857:501378,78643,0 +(186,74:26849747,40437857:173670,78643,0 ) -(186,73:16658333,37858385:501378,78643,0 -(186,73:16822187,37858385:173670,78643,0 ) +(186,74:27187271,40437857:501378,78643,0 +(186,74:27351125,40437857:173670,78643,0 ) -(186,73:17159711,37858385:501378,78643,0 -(186,73:17323565,37858385:173670,78643,0 ) +(186,74:27688649,40437857:501378,78643,0 +(186,74:27852503,40437857:173670,78643,0 ) -(186,73:17661089,37858385:501378,78643,0 -(186,73:17824943,37858385:173670,78643,0 ) +(186,74:28190027,40437857:501378,78643,0 +(186,74:28353881,40437857:173670,78643,0 ) -(186,73:18162467,37858385:501378,78643,0 -(186,73:18326321,37858385:173670,78643,0 ) +(186,74:28691405,40437857:501378,78643,0 +(186,74:28855259,40437857:173670,78643,0 ) -(186,73:18663845,37858385:501378,78643,0 -(186,73:18827699,37858385:173670,78643,0 ) +(186,74:29192783,40437857:501378,78643,0 +(186,74:29356637,40437857:173670,78643,0 ) -(186,73:19165223,37858385:501378,78643,0 -(186,73:19329077,37858385:173670,78643,0 ) +(186,74:29694161,40437857:501378,78643,0 +(186,74:29858015,40437857:173670,78643,0 ) -(186,73:19666601,37858385:501378,78643,0 -(186,73:19830455,37858385:173670,78643,0 ) +(186,74:30195539,40437857:501378,78643,0 +(186,74:30359393,40437857:173670,78643,0 ) -(186,73:20167979,37858385:501378,78643,0 -(186,73:20331833,37858385:173670,78643,0 ) +(186,74:30696917,40437857:501378,78643,0 +(186,74:30860771,40437857:173670,78643,0 ) -(186,73:20669357,37858385:501378,78643,0 -(186,73:20833211,37858385:173670,78643,0 ) +(186,74:31239540,40437857:1343490,485622,11795 +k186,74:31239540,40437857:0 +k186,74:31387653,40437857:148113 ) -(186,73:21170735,37858385:501378,78643,0 -(186,73:21334589,37858385:173670,78643,0 +g186,74:30911860,40437857 +g186,74:32583030,40437857 ) +(186,75:6630773,41302937:25952256,505283,11795 +g186,75:9710963,41302937 +h186,75:9710963,41302937:983040,0,0 +h186,75:10694003,41302937:0,0,0 +g186,75:7613813,41302937 +(186,75:7613813,41302937:2097150,485622,11795 +k186,75:9710963,41302937:1126562 ) -(186,73:21672113,37858385:501378,78643,0 -(186,73:21835967,37858385:173670,78643,0 +g186,75:13625428,41302937 +g186,75:17128327,41302937 +g186,75:17128327,41302937 +(186,75:17159711,41302937:501378,78643,0 +$186,75:17159711,41302937 +(186,75:17323565,41302937:173670,78643,0 ) +$186,75:17661089,41302937 ) -(186,73:22173491,37858385:501378,78643,0 -(186,73:22337345,37858385:173670,78643,0 +(186,75:17661089,41302937:501378,78643,0 +(186,75:17824943,41302937:173670,78643,0 ) ) -(186,73:22674869,37858385:501378,78643,0 -(186,73:22838723,37858385:173670,78643,0 +(186,75:18162467,41302937:501378,78643,0 +(186,75:18326321,41302937:173670,78643,0 ) ) -(186,73:23176247,37858385:501378,78643,0 -(186,73:23340101,37858385:173670,78643,0 +(186,75:18663845,41302937:501378,78643,0 +(186,75:18827699,41302937:173670,78643,0 ) ) -(186,73:23677625,37858385:501378,78643,0 -(186,73:23841479,37858385:173670,78643,0 +(186,75:19165223,41302937:501378,78643,0 +(186,75:19329077,41302937:173670,78643,0 ) ) -(186,73:24179003,37858385:501378,78643,0 -(186,73:24342857,37858385:173670,78643,0 +(186,75:19666601,41302937:501378,78643,0 +(186,75:19830455,41302937:173670,78643,0 ) ) -(186,73:24680381,37858385:501378,78643,0 -(186,73:24844235,37858385:173670,78643,0 +(186,75:20167979,41302937:501378,78643,0 +(186,75:20331833,41302937:173670,78643,0 ) ) -(186,73:25181759,37858385:501378,78643,0 -(186,73:25345613,37858385:173670,78643,0 +(186,75:20669357,41302937:501378,78643,0 +(186,75:20833211,41302937:173670,78643,0 ) ) -(186,73:25683137,37858385:501378,78643,0 -(186,73:25846991,37858385:173670,78643,0 +(186,75:21170735,41302937:501378,78643,0 +(186,75:21334589,41302937:173670,78643,0 ) ) -(186,73:26184515,37858385:501378,78643,0 -(186,73:26348369,37858385:173670,78643,0 +(186,75:21672113,41302937:501378,78643,0 +(186,75:21835967,41302937:173670,78643,0 ) ) -(186,73:26685893,37858385:501378,78643,0 -(186,73:26849747,37858385:173670,78643,0 +(186,75:22173491,41302937:501378,78643,0 +(186,75:22337345,41302937:173670,78643,0 ) ) -(186,73:27187271,37858385:501378,78643,0 -(186,73:27351125,37858385:173670,78643,0 +(186,75:22674869,41302937:501378,78643,0 +(186,75:22838723,41302937:173670,78643,0 ) ) -(186,73:27688649,37858385:501378,78643,0 -(186,73:27852503,37858385:173670,78643,0 +(186,75:23176247,41302937:501378,78643,0 +(186,75:23340101,41302937:173670,78643,0 ) ) -(186,73:28190027,37858385:501378,78643,0 -(186,73:28353881,37858385:173670,78643,0 +(186,75:23677625,41302937:501378,78643,0 +(186,75:23841479,41302937:173670,78643,0 ) ) -(186,73:28691405,37858385:501378,78643,0 -(186,73:28855259,37858385:173670,78643,0 +(186,75:24179003,41302937:501378,78643,0 +(186,75:24342857,41302937:173670,78643,0 ) ) -(186,73:29192783,37858385:501378,78643,0 -(186,73:29356637,37858385:173670,78643,0 +(186,75:24680381,41302937:501378,78643,0 +(186,75:24844235,41302937:173670,78643,0 ) ) -(186,73:29694161,37858385:501378,78643,0 -(186,73:29858015,37858385:173670,78643,0 +(186,75:25181759,41302937:501378,78643,0 +(186,75:25345613,41302937:173670,78643,0 ) ) -(186,73:30195539,37858385:501378,78643,0 -(186,73:30359393,37858385:173670,78643,0 +(186,75:25683137,41302937:501378,78643,0 +(186,75:25846991,41302937:173670,78643,0 ) ) -(186,73:30696917,37858385:501378,78643,0 -(186,73:30860771,37858385:173670,78643,0 +(186,75:26184515,41302937:501378,78643,0 +(186,75:26348369,41302937:173670,78643,0 ) ) -(186,73:31239539,37858385:1343490,485622,11795 -k186,73:31239539,37858385:0 -k186,73:31387652,37858385:148113 +(186,75:26685893,41302937:501378,78643,0 +(186,75:26849747,41302937:173670,78643,0 ) -g186,73:30911859,37858385 -g186,73:32583029,37858385 ) -(186,74:6630773,38699873:25952256,485622,126483 -g186,74:9448823,38699873 -h186,74:9448823,38699873:983040,0,0 -h186,74:10431863,38699873:0,0,0 -g186,74:7613813,38699873 -(186,74:7613813,38699873:1835010,473825,11795 -k186,74:9448823,38699873:864422 +(186,75:27187271,41302937:501378,78643,0 +(186,75:27351125,41302937:173670,78643,0 ) -g186,74:11119991,38699873 -g186,74:13039540,38699873 -g186,74:13039540,38699873 -(186,74:13148687,38699873:501378,78643,0 -$186,74:13148687,38699873 -(186,74:13312541,38699873:173670,78643,0 ) -$186,74:13650065,38699873 +(186,75:27688649,41302937:501378,78643,0 +(186,75:27852503,41302937:173670,78643,0 ) -(186,74:13650065,38699873:501378,78643,0 -(186,74:13813919,38699873:173670,78643,0 ) +(186,75:28190027,41302937:501378,78643,0 +(186,75:28353881,41302937:173670,78643,0 ) -(186,74:14151443,38699873:501378,78643,0 -(186,74:14315297,38699873:173670,78643,0 ) +(186,75:28691405,41302937:501378,78643,0 +(186,75:28855259,41302937:173670,78643,0 ) -(186,74:14652821,38699873:501378,78643,0 -(186,74:14816675,38699873:173670,78643,0 ) +(186,75:29192783,41302937:501378,78643,0 +(186,75:29356637,41302937:173670,78643,0 ) -(186,74:15154199,38699873:501378,78643,0 -(186,74:15318053,38699873:173670,78643,0 ) +(186,75:29694161,41302937:501378,78643,0 +(186,75:29858015,41302937:173670,78643,0 ) -(186,74:15655577,38699873:501378,78643,0 -(186,74:15819431,38699873:173670,78643,0 ) +(186,75:30195539,41302937:501378,78643,0 +(186,75:30359393,41302937:173670,78643,0 ) -(186,74:16156955,38699873:501378,78643,0 -(186,74:16320809,38699873:173670,78643,0 ) +(186,75:30696917,41302937:501378,78643,0 +(186,75:30860771,41302937:173670,78643,0 ) -(186,74:16658333,38699873:501378,78643,0 -(186,74:16822187,38699873:173670,78643,0 ) +(186,75:31239539,41302937:1343490,485622,11795 +k186,75:31239539,41302937:0 +k186,75:31387652,41302937:148113 ) -(186,74:17159711,38699873:501378,78643,0 -(186,74:17323565,38699873:173670,78643,0 +g186,75:30911859,41302937 +g186,75:32583029,41302937 ) +(186,76:6630773,42168017:25952256,538806,102891 +g186,76:12529013,42168017 +h186,76:12529013,42168017:3080190,0,0 +h186,76:15609203,42168017:0,0,0 +g186,76:9710963,42168017 +(186,76:9710963,42168017:2818050,485622,11795 +k186,76:12529013,42168017:1275332 ) -(186,74:17661089,38699873:501378,78643,0 -(186,74:17824943,38699873:173670,78643,0 +g186,76:17579872,42168017 +g186,76:18782656,42168017 +g186,76:20641655,42168017 +g186,76:22032329,42168017 +g186,76:24521983,42168017 +(186,76:24680381,42168017:501378,78643,0 +$186,76:24680381,42168017 +(186,76:24844235,42168017:173670,78643,0 ) +$186,76:25181759,42168017 ) -(186,74:18162467,38699873:501378,78643,0 -(186,74:18326321,38699873:173670,78643,0 +(186,76:25181759,42168017:501378,78643,0 +(186,76:25345613,42168017:173670,78643,0 ) ) -(186,74:18663845,38699873:501378,78643,0 -(186,74:18827699,38699873:173670,78643,0 +(186,76:25683137,42168017:501378,78643,0 +(186,76:25846991,42168017:173670,78643,0 ) ) -(186,74:19165223,38699873:501378,78643,0 -(186,74:19329077,38699873:173670,78643,0 +(186,76:26184515,42168017:501378,78643,0 +(186,76:26348369,42168017:173670,78643,0 ) ) -(186,74:19666601,38699873:501378,78643,0 -(186,74:19830455,38699873:173670,78643,0 +(186,76:26685893,42168017:501378,78643,0 +(186,76:26849747,42168017:173670,78643,0 ) ) -(186,74:20167979,38699873:501378,78643,0 -(186,74:20331833,38699873:173670,78643,0 +(186,76:27187271,42168017:501378,78643,0 +(186,76:27351125,42168017:173670,78643,0 ) ) -(186,74:20669357,38699873:501378,78643,0 -(186,74:20833211,38699873:173670,78643,0 +(186,76:27688649,42168017:501378,78643,0 +(186,76:27852503,42168017:173670,78643,0 ) ) -(186,74:21170735,38699873:501378,78643,0 -(186,74:21334589,38699873:173670,78643,0 +(186,76:28190027,42168017:501378,78643,0 +(186,76:28353881,42168017:173670,78643,0 ) ) -(186,74:21672113,38699873:501378,78643,0 -(186,74:21835967,38699873:173670,78643,0 +(186,76:28691405,42168017:501378,78643,0 +(186,76:28855259,42168017:173670,78643,0 ) ) -(186,74:22173491,38699873:501378,78643,0 -(186,74:22337345,38699873:173670,78643,0 +(186,76:29192783,42168017:501378,78643,0 +(186,76:29356637,42168017:173670,78643,0 ) ) -(186,74:22674869,38699873:501378,78643,0 -(186,74:22838723,38699873:173670,78643,0 +(186,76:29694161,42168017:501378,78643,0 +(186,76:29858015,42168017:173670,78643,0 ) ) -(186,74:23176247,38699873:501378,78643,0 -(186,74:23340101,38699873:173670,78643,0 +(186,76:30195539,42168017:501378,78643,0 +(186,76:30359393,42168017:173670,78643,0 ) ) -(186,74:23677625,38699873:501378,78643,0 -(186,74:23841479,38699873:173670,78643,0 +(186,76:30696917,42168017:501378,78643,0 +(186,76:30860771,42168017:173670,78643,0 ) ) -(186,74:24179003,38699873:501378,78643,0 -(186,74:24342857,38699873:173670,78643,0 +(186,76:31239539,42168017:1343490,485622,11795 +k186,76:31239539,42168017:0 +k186,76:31387652,42168017:148113 ) +g186,76:30911859,42168017 +g186,76:32583029,42168017 ) -(186,74:24680381,38699873:501378,78643,0 -(186,74:24844235,38699873:173670,78643,0 +(186,77:6630773,43033097:25952256,538806,99778 +g186,77:12529013,43033097 +h186,77:12529013,43033097:3080190,0,0 +h186,77:15609203,43033097:0,0,0 +g186,77:9710963,43033097 +(186,77:9710963,43033097:2818050,485622,11795 +k186,77:12529013,43033097:1275332 ) +g186,77:16166261,43033097 +g186,77:19485800,43033097 +(186,77:19666601,43033097:501378,78643,0 +$186,77:19666601,43033097 +(186,77:19830455,43033097:173670,78643,0 ) -(186,74:25181759,38699873:501378,78643,0 -(186,74:25345613,38699873:173670,78643,0 +$186,77:20167979,43033097 ) +(186,77:20167979,43033097:501378,78643,0 +(186,77:20331833,43033097:173670,78643,0 ) -(186,74:25683137,38699873:501378,78643,0 -(186,74:25846991,38699873:173670,78643,0 ) +(186,77:20669357,43033097:501378,78643,0 +(186,77:20833211,43033097:173670,78643,0 ) -(186,74:26184515,38699873:501378,78643,0 -(186,74:26348369,38699873:173670,78643,0 ) +(186,77:21170735,43033097:501378,78643,0 +(186,77:21334589,43033097:173670,78643,0 ) -(186,74:26685893,38699873:501378,78643,0 -(186,74:26849747,38699873:173670,78643,0 ) +(186,77:21672113,43033097:501378,78643,0 +(186,77:21835967,43033097:173670,78643,0 ) -(186,74:27187271,38699873:501378,78643,0 -(186,74:27351125,38699873:173670,78643,0 ) +(186,77:22173491,43033097:501378,78643,0 +(186,77:22337345,43033097:173670,78643,0 ) -(186,74:27688649,38699873:501378,78643,0 -(186,74:27852503,38699873:173670,78643,0 ) +(186,77:22674869,43033097:501378,78643,0 +(186,77:22838723,43033097:173670,78643,0 ) -(186,74:28190027,38699873:501378,78643,0 -(186,74:28353881,38699873:173670,78643,0 ) +(186,77:23176247,43033097:501378,78643,0 +(186,77:23340101,43033097:173670,78643,0 ) -(186,74:28691405,38699873:501378,78643,0 -(186,74:28855259,38699873:173670,78643,0 ) +(186,77:23677625,43033097:501378,78643,0 +(186,77:23841479,43033097:173670,78643,0 ) -(186,74:29192783,38699873:501378,78643,0 -(186,74:29356637,38699873:173670,78643,0 ) +(186,77:24179003,43033097:501378,78643,0 +(186,77:24342857,43033097:173670,78643,0 ) -(186,74:29694161,38699873:501378,78643,0 -(186,74:29858015,38699873:173670,78643,0 ) +(186,77:24680381,43033097:501378,78643,0 +(186,77:24844235,43033097:173670,78643,0 ) -(186,74:30195539,38699873:501378,78643,0 -(186,74:30359393,38699873:173670,78643,0 ) +(186,77:25181759,43033097:501378,78643,0 +(186,77:25345613,43033097:173670,78643,0 ) -(186,74:30696917,38699873:501378,78643,0 -(186,74:30860771,38699873:173670,78643,0 ) +(186,77:25683137,43033097:501378,78643,0 +(186,77:25846991,43033097:173670,78643,0 ) -(186,74:31239540,38699873:1343490,485622,11795 -k186,74:31239540,38699873:0 -k186,74:31387653,38699873:148113 ) -g186,74:30911860,38699873 -g186,74:32583030,38699873 +(186,77:26184515,43033097:501378,78643,0 +(186,77:26348369,43033097:173670,78643,0 ) -(186,75:6630773,39541361:25952256,505283,11795 -g186,75:9448823,39541361 -h186,75:9448823,39541361:983040,0,0 -h186,75:10431863,39541361:0,0,0 -g186,75:7613813,39541361 -(186,75:7613813,39541361:1835010,485622,11795 -k186,75:9448823,39541361:864422 ) -g186,75:13363288,39541361 -g186,75:16866187,39541361 -g186,75:16866187,39541361 -(186,75:17159711,39541361:501378,78643,0 -$186,75:17159711,39541361 -(186,75:17323565,39541361:173670,78643,0 +(186,77:26685893,43033097:501378,78643,0 +(186,77:26849747,43033097:173670,78643,0 ) -$186,75:17661089,39541361 ) -(186,75:17661089,39541361:501378,78643,0 -(186,75:17824943,39541361:173670,78643,0 +(186,77:27187271,43033097:501378,78643,0 +(186,77:27351125,43033097:173670,78643,0 ) ) -(186,75:18162467,39541361:501378,78643,0 -(186,75:18326321,39541361:173670,78643,0 +(186,77:27688649,43033097:501378,78643,0 +(186,77:27852503,43033097:173670,78643,0 ) ) -(186,75:18663845,39541361:501378,78643,0 -(186,75:18827699,39541361:173670,78643,0 +(186,77:28190027,43033097:501378,78643,0 +(186,77:28353881,43033097:173670,78643,0 ) ) -(186,75:19165223,39541361:501378,78643,0 -(186,75:19329077,39541361:173670,78643,0 +(186,77:28691405,43033097:501378,78643,0 +(186,77:28855259,43033097:173670,78643,0 ) ) -(186,75:19666601,39541361:501378,78643,0 -(186,75:19830455,39541361:173670,78643,0 +(186,77:29192783,43033097:501378,78643,0 +(186,77:29356637,43033097:173670,78643,0 ) ) -(186,75:20167979,39541361:501378,78643,0 -(186,75:20331833,39541361:173670,78643,0 +(186,77:29694161,43033097:501378,78643,0 +(186,77:29858015,43033097:173670,78643,0 ) ) -(186,75:20669357,39541361:501378,78643,0 -(186,75:20833211,39541361:173670,78643,0 +(186,77:30195539,43033097:501378,78643,0 +(186,77:30359393,43033097:173670,78643,0 ) ) -(186,75:21170735,39541361:501378,78643,0 -(186,75:21334589,39541361:173670,78643,0 +(186,77:30696917,43033097:501378,78643,0 +(186,77:30860771,43033097:173670,78643,0 ) ) -(186,75:21672113,39541361:501378,78643,0 -(186,75:21835967,39541361:173670,78643,0 +(186,77:31239539,43033097:1343490,485622,11795 +k186,77:31239539,43033097:0 +k186,77:31387652,43033097:148113 ) +g186,77:30911859,43033097 +g186,77:32583029,43033097 ) -(186,75:22173491,39541361:501378,78643,0 -(186,75:22337345,39541361:173670,78643,0 +(186,78:6630773,43898177:25952256,485622,11795 +g186,78:9710963,43898177 +h186,78:9710963,43898177:983040,0,0 +h186,78:10694003,43898177:0,0,0 +g186,78:7613813,43898177 +(186,78:7613813,43898177:2097150,473825,11795 +k186,78:9710963,43898177:1126562 ) +g186,78:12639111,43898177 +g186,78:12639111,43898177 +(186,78:12647309,43898177:501378,78643,0 +$186,78:12647309,43898177 +(186,78:12811163,43898177:173670,78643,0 ) -(186,75:22674869,39541361:501378,78643,0 -(186,75:22838723,39541361:173670,78643,0 +$186,78:13148687,43898177 ) +(186,78:13148687,43898177:501378,78643,0 +(186,78:13312541,43898177:173670,78643,0 ) -(186,75:23176247,39541361:501378,78643,0 -(186,75:23340101,39541361:173670,78643,0 ) +(186,78:13650065,43898177:501378,78643,0 +(186,78:13813919,43898177:173670,78643,0 ) -(186,75:23677625,39541361:501378,78643,0 -(186,75:23841479,39541361:173670,78643,0 ) +(186,78:14151443,43898177:501378,78643,0 +(186,78:14315297,43898177:173670,78643,0 ) -(186,75:24179003,39541361:501378,78643,0 -(186,75:24342857,39541361:173670,78643,0 ) +(186,78:14652821,43898177:501378,78643,0 +(186,78:14816675,43898177:173670,78643,0 ) -(186,75:24680381,39541361:501378,78643,0 -(186,75:24844235,39541361:173670,78643,0 ) +(186,78:15154199,43898177:501378,78643,0 +(186,78:15318053,43898177:173670,78643,0 ) -(186,75:25181759,39541361:501378,78643,0 -(186,75:25345613,39541361:173670,78643,0 ) +(186,78:15655577,43898177:501378,78643,0 +(186,78:15819431,43898177:173670,78643,0 ) -(186,75:25683137,39541361:501378,78643,0 -(186,75:25846991,39541361:173670,78643,0 ) +(186,78:16156955,43898177:501378,78643,0 +(186,78:16320809,43898177:173670,78643,0 ) -(186,75:26184515,39541361:501378,78643,0 -(186,75:26348369,39541361:173670,78643,0 ) +(186,78:16658333,43898177:501378,78643,0 +(186,78:16822187,43898177:173670,78643,0 ) -(186,75:26685893,39541361:501378,78643,0 -(186,75:26849747,39541361:173670,78643,0 ) +(186,78:17159711,43898177:501378,78643,0 +(186,78:17323565,43898177:173670,78643,0 ) -(186,75:27187271,39541361:501378,78643,0 -(186,75:27351125,39541361:173670,78643,0 ) +(186,78:17661089,43898177:501378,78643,0 +(186,78:17824943,43898177:173670,78643,0 ) -(186,75:27688649,39541361:501378,78643,0 -(186,75:27852503,39541361:173670,78643,0 ) +(186,78:18162467,43898177:501378,78643,0 +(186,78:18326321,43898177:173670,78643,0 ) -(186,75:28190027,39541361:501378,78643,0 -(186,75:28353881,39541361:173670,78643,0 ) +(186,78:18663845,43898177:501378,78643,0 +(186,78:18827699,43898177:173670,78643,0 ) -(186,75:28691405,39541361:501378,78643,0 -(186,75:28855259,39541361:173670,78643,0 ) +(186,78:19165223,43898177:501378,78643,0 +(186,78:19329077,43898177:173670,78643,0 ) -(186,75:29192783,39541361:501378,78643,0 -(186,75:29356637,39541361:173670,78643,0 ) +(186,78:19666601,43898177:501378,78643,0 +(186,78:19830455,43898177:173670,78643,0 ) -(186,75:29694161,39541361:501378,78643,0 -(186,75:29858015,39541361:173670,78643,0 ) +(186,78:20167979,43898177:501378,78643,0 +(186,78:20331833,43898177:173670,78643,0 ) -(186,75:30195539,39541361:501378,78643,0 -(186,75:30359393,39541361:173670,78643,0 ) +(186,78:20669357,43898177:501378,78643,0 +(186,78:20833211,43898177:173670,78643,0 ) -(186,75:30696917,39541361:501378,78643,0 -(186,75:30860771,39541361:173670,78643,0 ) +(186,78:21170735,43898177:501378,78643,0 +(186,78:21334589,43898177:173670,78643,0 ) -(186,75:31239539,39541361:1343490,485622,11795 -k186,75:31239539,39541361:0 -k186,75:31387652,39541361:148113 ) -g186,75:30911859,39541361 -g186,75:32583029,39541361 +(186,78:21672113,43898177:501378,78643,0 +(186,78:21835967,43898177:173670,78643,0 ) -(186,76:6630773,40382849:25952256,513147,102891 -g186,76:11873653,40382849 -h186,76:11873653,40382849:2818050,0,0 -h186,76:14691703,40382849:0,0,0 -g186,76:9448823,40382849 -(186,76:9448823,40382849:2424830,485622,11795 -k186,76:11873653,40382849:882112 ) -g186,76:16924512,40382849 -g186,76:18087775,40382849 -g186,76:19867732,40382849 -g186,76:21258406,40382849 -g186,76:23629499,40382849 -(186,76:23677625,40382849:501378,78643,0 -$186,76:23677625,40382849 -(186,76:23841479,40382849:173670,78643,0 +(186,78:22173491,43898177:501378,78643,0 +(186,78:22337345,43898177:173670,78643,0 ) -$186,76:24179003,40382849 ) -(186,76:24179003,40382849:501378,78643,0 -(186,76:24342857,40382849:173670,78643,0 +(186,78:22674869,43898177:501378,78643,0 +(186,78:22838723,43898177:173670,78643,0 ) ) -(186,76:24680381,40382849:501378,78643,0 -(186,76:24844235,40382849:173670,78643,0 +(186,78:23176247,43898177:501378,78643,0 +(186,78:23340101,43898177:173670,78643,0 ) ) -(186,76:25181759,40382849:501378,78643,0 -(186,76:25345613,40382849:173670,78643,0 +(186,78:23677625,43898177:501378,78643,0 +(186,78:23841479,43898177:173670,78643,0 ) ) -(186,76:25683137,40382849:501378,78643,0 -(186,76:25846991,40382849:173670,78643,0 +(186,78:24179003,43898177:501378,78643,0 +(186,78:24342857,43898177:173670,78643,0 ) ) -(186,76:26184515,40382849:501378,78643,0 -(186,76:26348369,40382849:173670,78643,0 +(186,78:24680381,43898177:501378,78643,0 +(186,78:24844235,43898177:173670,78643,0 ) ) -(186,76:26685893,40382849:501378,78643,0 -(186,76:26849747,40382849:173670,78643,0 +(186,78:25181759,43898177:501378,78643,0 +(186,78:25345613,43898177:173670,78643,0 ) ) -(186,76:27187271,40382849:501378,78643,0 -(186,76:27351125,40382849:173670,78643,0 +(186,78:25683137,43898177:501378,78643,0 +(186,78:25846991,43898177:173670,78643,0 ) ) -(186,76:27688649,40382849:501378,78643,0 -(186,76:27852503,40382849:173670,78643,0 +(186,78:26184515,43898177:501378,78643,0 +(186,78:26348369,43898177:173670,78643,0 ) ) -(186,76:28190027,40382849:501378,78643,0 -(186,76:28353881,40382849:173670,78643,0 +(186,78:26685893,43898177:501378,78643,0 +(186,78:26849747,43898177:173670,78643,0 ) ) -(186,76:28691405,40382849:501378,78643,0 -(186,76:28855259,40382849:173670,78643,0 +(186,78:27187271,43898177:501378,78643,0 +(186,78:27351125,43898177:173670,78643,0 ) ) -(186,76:29192783,40382849:501378,78643,0 -(186,76:29356637,40382849:173670,78643,0 +(186,78:27688649,43898177:501378,78643,0 +(186,78:27852503,43898177:173670,78643,0 ) ) -(186,76:29694161,40382849:501378,78643,0 -(186,76:29858015,40382849:173670,78643,0 +(186,78:28190027,43898177:501378,78643,0 +(186,78:28353881,43898177:173670,78643,0 ) ) -(186,76:30195539,40382849:501378,78643,0 -(186,76:30359393,40382849:173670,78643,0 +(186,78:28691405,43898177:501378,78643,0 +(186,78:28855259,43898177:173670,78643,0 ) ) -(186,76:30696917,40382849:501378,78643,0 -(186,76:30860771,40382849:173670,78643,0 +(186,78:29192783,43898177:501378,78643,0 +(186,78:29356637,43898177:173670,78643,0 ) ) -(186,76:31239539,40382849:1343490,485622,11795 -k186,76:31239539,40382849:0 -k186,76:31387652,40382849:148113 +(186,78:29694161,43898177:501378,78643,0 +(186,78:29858015,43898177:173670,78643,0 ) -g186,76:30911859,40382849 -g186,76:32583029,40382849 ) -(186,77:6630773,41224337:25952256,513147,95026 -g186,77:11873653,41224337 -h186,77:11873653,41224337:2818050,0,0 -h186,77:14691703,41224337:0,0,0 -g186,77:9448823,41224337 -(186,77:9448823,41224337:2424830,485622,11795 -k186,77:11873653,41224337:882112 +(186,78:30195539,43898177:501378,78643,0 +(186,78:30359393,43898177:173670,78643,0 ) -g186,77:15510901,41224337 -g186,77:18672358,41224337 -(186,77:19165223,41224337:501378,78643,0 -$186,77:19165223,41224337 -(186,77:19329077,41224337:173670,78643,0 ) -$186,77:19666601,41224337 +(186,78:30696917,43898177:501378,78643,0 +(186,78:30860771,43898177:173670,78643,0 ) -(186,77:19666601,41224337:501378,78643,0 -(186,77:19830455,41224337:173670,78643,0 ) +(186,78:31239539,43898177:1343490,485622,11795 +k186,78:31239539,43898177:0 +k186,78:31387652,43898177:148113 ) -(186,77:20167979,41224337:501378,78643,0 -(186,77:20331833,41224337:173670,78643,0 +g186,78:30911859,43898177 +g186,78:32583029,43898177 ) +(186,79:6630773,44763257:25952256,538806,126483 +g186,79:12529013,44763257 +h186,79:12529013,44763257:3080190,0,0 +h186,79:15609203,44763257:0,0,0 +g186,79:9710963,44763257 +(186,79:9710963,44763257:2818050,477757,11795 +k186,79:12529013,44763257:1275332 ) -(186,77:20669357,41224337:501378,78643,0 -(186,77:20833211,41224337:173670,78643,0 +g186,79:13973069,44763257 +g186,79:15718293,44763257 +(186,79:16156955,44763257:501378,78643,0 +$186,79:16156955,44763257 +(186,79:16320809,44763257:173670,78643,0 ) +$186,79:16658333,44763257 ) -(186,77:21170735,41224337:501378,78643,0 -(186,77:21334589,41224337:173670,78643,0 +(186,79:16658333,44763257:501378,78643,0 +(186,79:16822187,44763257:173670,78643,0 ) ) -(186,77:21672113,41224337:501378,78643,0 -(186,77:21835967,41224337:173670,78643,0 +(186,79:17159711,44763257:501378,78643,0 +(186,79:17323565,44763257:173670,78643,0 ) ) -(186,77:22173491,41224337:501378,78643,0 -(186,77:22337345,41224337:173670,78643,0 +(186,79:17661089,44763257:501378,78643,0 +(186,79:17824943,44763257:173670,78643,0 ) ) -(186,77:22674869,41224337:501378,78643,0 -(186,77:22838723,41224337:173670,78643,0 +(186,79:18162467,44763257:501378,78643,0 +(186,79:18326321,44763257:173670,78643,0 ) ) -(186,77:23176247,41224337:501378,78643,0 -(186,77:23340101,41224337:173670,78643,0 +(186,79:18663845,44763257:501378,78643,0 +(186,79:18827699,44763257:173670,78643,0 ) ) -(186,77:23677625,41224337:501378,78643,0 -(186,77:23841479,41224337:173670,78643,0 +(186,79:19165223,44763257:501378,78643,0 +(186,79:19329077,44763257:173670,78643,0 ) ) -(186,77:24179003,41224337:501378,78643,0 -(186,77:24342857,41224337:173670,78643,0 +(186,79:19666601,44763257:501378,78643,0 +(186,79:19830455,44763257:173670,78643,0 ) ) -(186,77:24680381,41224337:501378,78643,0 -(186,77:24844235,41224337:173670,78643,0 +(186,79:20167979,44763257:501378,78643,0 +(186,79:20331833,44763257:173670,78643,0 ) ) -(186,77:25181759,41224337:501378,78643,0 -(186,77:25345613,41224337:173670,78643,0 +(186,79:20669357,44763257:501378,78643,0 +(186,79:20833211,44763257:173670,78643,0 ) ) -(186,77:25683137,41224337:501378,78643,0 -(186,77:25846991,41224337:173670,78643,0 +(186,79:21170735,44763257:501378,78643,0 +(186,79:21334589,44763257:173670,78643,0 ) ) -(186,77:26184515,41224337:501378,78643,0 -(186,77:26348369,41224337:173670,78643,0 +(186,79:21672113,44763257:501378,78643,0 +(186,79:21835967,44763257:173670,78643,0 ) ) -(186,77:26685893,41224337:501378,78643,0 -(186,77:26849747,41224337:173670,78643,0 +(186,79:22173491,44763257:501378,78643,0 +(186,79:22337345,44763257:173670,78643,0 ) ) -(186,77:27187271,41224337:501378,78643,0 -(186,77:27351125,41224337:173670,78643,0 +(186,79:22674869,44763257:501378,78643,0 +(186,79:22838723,44763257:173670,78643,0 ) ) -(186,77:27688649,41224337:501378,78643,0 -(186,77:27852503,41224337:173670,78643,0 +(186,79:23176247,44763257:501378,78643,0 +(186,79:23340101,44763257:173670,78643,0 ) ) -(186,77:28190027,41224337:501378,78643,0 -(186,77:28353881,41224337:173670,78643,0 +(186,79:23677625,44763257:501378,78643,0 +(186,79:23841479,44763257:173670,78643,0 ) ) -(186,77:28691405,41224337:501378,78643,0 -(186,77:28855259,41224337:173670,78643,0 +(186,79:24179003,44763257:501378,78643,0 +(186,79:24342857,44763257:173670,78643,0 ) ) -(186,77:29192783,41224337:501378,78643,0 -(186,77:29356637,41224337:173670,78643,0 +(186,79:24680381,44763257:501378,78643,0 +(186,79:24844235,44763257:173670,78643,0 ) ) -(186,77:29694161,41224337:501378,78643,0 -(186,77:29858015,41224337:173670,78643,0 +(186,79:25181759,44763257:501378,78643,0 +(186,79:25345613,44763257:173670,78643,0 ) ) -(186,77:30195539,41224337:501378,78643,0 -(186,77:30359393,41224337:173670,78643,0 +(186,79:25683137,44763257:501378,78643,0 +(186,79:25846991,44763257:173670,78643,0 ) ) -(186,77:30696917,41224337:501378,78643,0 -(186,77:30860771,41224337:173670,78643,0 +(186,79:26184515,44763257:501378,78643,0 +(186,79:26348369,44763257:173670,78643,0 ) ) -(186,77:31239539,41224337:1343490,485622,11795 -k186,77:31239539,41224337:0 -k186,77:31387652,41224337:148113 +(186,79:26685893,44763257:501378,78643,0 +(186,79:26849747,44763257:173670,78643,0 ) -g186,77:30911859,41224337 -g186,77:32583029,41224337 ) -(186,78:6630773,42065825:25952256,481690,11795 -g186,78:9448823,42065825 -h186,78:9448823,42065825:983040,0,0 -h186,78:10431863,42065825:0,0,0 -g186,78:7613813,42065825 -(186,78:7613813,42065825:1835010,473825,11795 -k186,78:9448823,42065825:864422 +(186,79:27187271,44763257:501378,78643,0 +(186,79:27351125,44763257:173670,78643,0 ) -g186,78:12376971,42065825 -g186,78:12376971,42065825 -(186,78:12647309,42065825:501378,78643,0 -$186,78:12647309,42065825 -(186,78:12811163,42065825:173670,78643,0 ) -$186,78:13148687,42065825 +(186,79:27688649,44763257:501378,78643,0 +(186,79:27852503,44763257:173670,78643,0 ) -(186,78:13148687,42065825:501378,78643,0 -(186,78:13312541,42065825:173670,78643,0 ) +(186,79:28190027,44763257:501378,78643,0 +(186,79:28353881,44763257:173670,78643,0 ) -(186,78:13650065,42065825:501378,78643,0 -(186,78:13813919,42065825:173670,78643,0 ) +(186,79:28691405,44763257:501378,78643,0 +(186,79:28855259,44763257:173670,78643,0 ) -(186,78:14151443,42065825:501378,78643,0 -(186,78:14315297,42065825:173670,78643,0 ) +(186,79:29192783,44763257:501378,78643,0 +(186,79:29356637,44763257:173670,78643,0 ) -(186,78:14652821,42065825:501378,78643,0 -(186,78:14816675,42065825:173670,78643,0 ) +(186,79:29694161,44763257:501378,78643,0 +(186,79:29858015,44763257:173670,78643,0 ) -(186,78:15154199,42065825:501378,78643,0 -(186,78:15318053,42065825:173670,78643,0 ) +(186,79:30195539,44763257:501378,78643,0 +(186,79:30359393,44763257:173670,78643,0 ) -(186,78:15655577,42065825:501378,78643,0 -(186,78:15819431,42065825:173670,78643,0 ) +(186,79:30696917,44763257:501378,78643,0 +(186,79:30860771,44763257:173670,78643,0 ) -(186,78:16156955,42065825:501378,78643,0 -(186,78:16320809,42065825:173670,78643,0 ) +(186,79:31239539,44763257:1343490,481690,0 +k186,79:31239539,44763257:0 +k186,79:31387652,44763257:148113 ) -(186,78:16658333,42065825:501378,78643,0 -(186,78:16822187,42065825:173670,78643,0 +g186,79:30911859,44763257 +g186,79:32583029,44763257 ) +(186,80:6630773,45628337:25952256,530548,126483 +g186,80:12529013,45628337 +h186,80:12529013,45628337:3080190,0,0 +h186,80:15609203,45628337:0,0,0 +g186,80:9710963,45628337 +(186,80:9710963,45628337:2818050,485622,11795 +k186,80:12529013,45628337:1275332 ) -(186,78:17159711,42065825:501378,78643,0 -(186,78:17323565,42065825:173670,78643,0 +g186,80:14802954,45628337 +g186,80:16548178,45628337 +(186,80:16658333,45628337:501378,78643,0 +$186,80:16658333,45628337 +(186,80:16822187,45628337:173670,78643,0 ) +$186,80:17159711,45628337 ) -(186,78:17661089,42065825:501378,78643,0 -(186,78:17824943,42065825:173670,78643,0 +(186,80:17159711,45628337:501378,78643,0 +(186,80:17323565,45628337:173670,78643,0 ) ) -(186,78:18162467,42065825:501378,78643,0 -(186,78:18326321,42065825:173670,78643,0 +(186,80:17661089,45628337:501378,78643,0 +(186,80:17824943,45628337:173670,78643,0 ) ) -(186,78:18663845,42065825:501378,78643,0 -(186,78:18827699,42065825:173670,78643,0 +(186,80:18162467,45628337:501378,78643,0 +(186,80:18326321,45628337:173670,78643,0 ) ) -(186,78:19165223,42065825:501378,78643,0 -(186,78:19329077,42065825:173670,78643,0 +(186,80:18663845,45628337:501378,78643,0 +(186,80:18827699,45628337:173670,78643,0 ) ) -(186,78:19666601,42065825:501378,78643,0 -(186,78:19830455,42065825:173670,78643,0 +(186,80:19165223,45628337:501378,78643,0 +(186,80:19329077,45628337:173670,78643,0 ) ) -(186,78:20167979,42065825:501378,78643,0 -(186,78:20331833,42065825:173670,78643,0 +(186,80:19666601,45628337:501378,78643,0 +(186,80:19830455,45628337:173670,78643,0 ) ) -(186,78:20669357,42065825:501378,78643,0 -(186,78:20833211,42065825:173670,78643,0 +(186,80:20167979,45628337:501378,78643,0 +(186,80:20331833,45628337:173670,78643,0 ) ) -(186,78:21170735,42065825:501378,78643,0 -(186,78:21334589,42065825:173670,78643,0 +(186,80:20669357,45628337:501378,78643,0 +(186,80:20833211,45628337:173670,78643,0 ) ) -(186,78:21672113,42065825:501378,78643,0 -(186,78:21835967,42065825:173670,78643,0 +(186,80:21170735,45628337:501378,78643,0 +(186,80:21334589,45628337:173670,78643,0 ) ) -(186,78:22173491,42065825:501378,78643,0 -(186,78:22337345,42065825:173670,78643,0 +(186,80:21672113,45628337:501378,78643,0 +(186,80:21835967,45628337:173670,78643,0 ) ) -(186,78:22674869,42065825:501378,78643,0 -(186,78:22838723,42065825:173670,78643,0 +(186,80:22173491,45628337:501378,78643,0 +(186,80:22337345,45628337:173670,78643,0 ) ) -(186,78:23176247,42065825:501378,78643,0 -(186,78:23340101,42065825:173670,78643,0 +(186,80:22674869,45628337:501378,78643,0 +(186,80:22838723,45628337:173670,78643,0 ) ) -(186,78:23677625,42065825:501378,78643,0 -(186,78:23841479,42065825:173670,78643,0 +(186,80:23176247,45628337:501378,78643,0 +(186,80:23340101,45628337:173670,78643,0 ) ) -(186,78:24179003,42065825:501378,78643,0 -(186,78:24342857,42065825:173670,78643,0 +(186,80:23677625,45628337:501378,78643,0 +(186,80:23841479,45628337:173670,78643,0 ) ) -(186,78:24680381,42065825:501378,78643,0 -(186,78:24844235,42065825:173670,78643,0 +(186,80:24179003,45628337:501378,78643,0 +(186,80:24342857,45628337:173670,78643,0 ) ) -(186,78:25181759,42065825:501378,78643,0 -(186,78:25345613,42065825:173670,78643,0 +(186,80:24680381,45628337:501378,78643,0 +(186,80:24844235,45628337:173670,78643,0 ) ) -(186,78:25683137,42065825:501378,78643,0 -(186,78:25846991,42065825:173670,78643,0 +(186,80:25181759,45628337:501378,78643,0 +(186,80:25345613,45628337:173670,78643,0 ) ) -(186,78:26184515,42065825:501378,78643,0 -(186,78:26348369,42065825:173670,78643,0 +(186,80:25683137,45628337:501378,78643,0 +(186,80:25846991,45628337:173670,78643,0 ) ) -(186,78:26685893,42065825:501378,78643,0 -(186,78:26849747,42065825:173670,78643,0 +(186,80:26184515,45628337:501378,78643,0 +(186,80:26348369,45628337:173670,78643,0 ) ) -(186,78:27187271,42065825:501378,78643,0 -(186,78:27351125,42065825:173670,78643,0 +(186,80:26685893,45628337:501378,78643,0 +(186,80:26849747,45628337:173670,78643,0 ) ) -(186,78:27688649,42065825:501378,78643,0 -(186,78:27852503,42065825:173670,78643,0 +(186,80:27187271,45628337:501378,78643,0 +(186,80:27351125,45628337:173670,78643,0 ) ) -(186,78:28190027,42065825:501378,78643,0 -(186,78:28353881,42065825:173670,78643,0 +(186,80:27688649,45628337:501378,78643,0 +(186,80:27852503,45628337:173670,78643,0 ) ) -(186,78:28691405,42065825:501378,78643,0 -(186,78:28855259,42065825:173670,78643,0 +(186,80:28190027,45628337:501378,78643,0 +(186,80:28353881,45628337:173670,78643,0 ) ) -(186,78:29192783,42065825:501378,78643,0 -(186,78:29356637,42065825:173670,78643,0 +(186,80:28691405,45628337:501378,78643,0 +(186,80:28855259,45628337:173670,78643,0 ) ) -(186,78:29694161,42065825:501378,78643,0 -(186,78:29858015,42065825:173670,78643,0 +(186,80:29192783,45628337:501378,78643,0 +(186,80:29356637,45628337:173670,78643,0 ) ) -(186,78:30195539,42065825:501378,78643,0 -(186,78:30359393,42065825:173670,78643,0 +(186,80:29694161,45628337:501378,78643,0 +(186,80:29858015,45628337:173670,78643,0 ) ) -(186,78:30696917,42065825:501378,78643,0 -(186,78:30860771,42065825:173670,78643,0 +(186,80:30195539,45628337:501378,78643,0 +(186,80:30359393,45628337:173670,78643,0 ) ) -(186,78:31239539,42065825:1343490,481690,11795 -k186,78:31239539,42065825:0 -k186,78:31387652,42065825:148113 +(186,80:30696917,45628337:501378,78643,0 +(186,80:30860771,45628337:173670,78643,0 ) -g186,78:30911859,42065825 -g186,78:32583029,42065825 ) -(186,79:6630773,42907313:25952256,513147,126483 -g186,79:11873653,42907313 -h186,79:11873653,42907313:2818050,0,0 -h186,79:14691703,42907313:0,0,0 -g186,79:9448823,42907313 -(186,79:9448823,42907313:2424830,477757,11795 -k186,79:11873653,42907313:882112 +(186,80:31239539,45628337:1343490,481690,0 +k186,80:31239539,45628337:0 +k186,80:31387652,45628337:148113 ) -g186,79:13258428,42907313 -g186,79:15003652,42907313 -(186,79:15154199,42907313:501378,78643,0 -$186,79:15154199,42907313 -(186,79:15318053,42907313:173670,78643,0 +g186,80:30911859,45628337 +g186,80:32583029,45628337 ) -$186,79:15655577,42907313 +] +(186,82:32583029,45706769:0,0,0 +g186,82:32583029,45706769 ) -(186,79:15655577,42907313:501378,78643,0 -(186,79:15819431,42907313:173670,78643,0 ) +] +(186,82:6630773,47279633:25952256,0,0 +h186,82:6630773,47279633:25952256,0,0 ) -(186,79:16156955,42907313:501378,78643,0 -(186,79:16320809,42907313:173670,78643,0 +] +(186,82:4262630,4025873:0,0,0 +[186,82:-473656,4025873:0,0,0 +(186,82:-473656,-710413:0,0,0 +(186,82:-473656,-710413:0,0,0 +g186,82:-473656,-710413 ) +g186,82:-473656,-710413 ) -(186,79:16658333,42907313:501378,78643,0 -(186,79:16822187,42907313:173670,78643,0 +] ) +] +!123125 +}3 +!11 +{4 +[186,128:4262630,47279633:28320399,43253760,0 +(186,128:4262630,4025873:0,0,0 +[186,128:-473656,4025873:0,0,0 +(186,128:-473656,-710413:0,0,0 +(186,128:-473656,-644877:0,0,0 +k186,128:-473656,-644877:-65536 ) -(186,79:17159711,42907313:501378,78643,0 -(186,79:17323565,42907313:173670,78643,0 +(186,128:-473656,4736287:0,0,0 +k186,128:-473656,4736287:5209943 ) +g186,128:-473656,-710413 ) -(186,79:17661089,42907313:501378,78643,0 -(186,79:17824943,42907313:173670,78643,0 +] ) +[186,128:6630773,47279633:25952256,43253760,0 +[186,128:6630773,4812305:25952256,786432,0 +(186,128:6630773,4812305:25952256,485622,11795 +(186,128:6630773,4812305:25952256,485622,11795 +g186,128:3078558,4812305 +[186,128:3078558,4812305:0,0,0 +(186,128:3078558,2439708:0,1703936,0 +k186,128:1358238,2439708:-1720320 +(1,128:1358238,2439708:1720320,1703936,0 +(1,128:1358238,2439708:1179648,16384,0 +r186,128:2537886,2439708:1179648,16384,0 ) -(186,79:18162467,42907313:501378,78643,0 -(186,79:18326321,42907313:173670,78643,0 +g1,128:3062174,2439708 +(1,128:3062174,2439708:16384,1703936,0 +[1,128:3062174,2439708:25952256,1703936,0 +(1,128:3062174,1915420:25952256,1179648,0 +(1,128:3062174,1915420:16384,1179648,0 +r186,128:3078558,1915420:16384,1179648,0 ) +k1,128:29014430,1915420:25935872 +g1,128:29014430,1915420 ) -(186,79:18663845,42907313:501378,78643,0 -(186,79:18827699,42907313:173670,78643,0 +] ) ) -(186,79:19165223,42907313:501378,78643,0 -(186,79:19329077,42907313:173670,78643,0 ) +] +[186,128:3078558,4812305:0,0,0 +(186,128:3078558,2439708:0,1703936,0 +g186,128:29030814,2439708 +g186,128:36135244,2439708 +(1,128:36135244,2439708:1720320,1703936,0 +(1,128:36135244,2439708:16384,1703936,0 +[1,128:36135244,2439708:25952256,1703936,0 +(1,128:36135244,1915420:25952256,1179648,0 +(1,128:36135244,1915420:16384,1179648,0 +r186,128:36151628,1915420:16384,1179648,0 ) -(186,79:19666601,42907313:501378,78643,0 -(186,79:19830455,42907313:173670,78643,0 +k1,128:62087500,1915420:25935872 +g1,128:62087500,1915420 ) +] ) -(186,79:20167979,42907313:501378,78643,0 -(186,79:20331833,42907313:173670,78643,0 +g1,128:36675916,2439708 +(1,128:36675916,2439708:1179648,16384,0 +r186,128:37855564,2439708:1179648,16384,0 ) ) -(186,79:20669357,42907313:501378,78643,0 -(186,79:20833211,42907313:173670,78643,0 +k186,128:3078556,2439708:-34777008 ) +] +[186,128:3078558,4812305:0,0,0 +(186,128:3078558,49800853:0,16384,2228224 +k186,128:1358238,49800853:-1720320 +(1,128:1358238,49800853:1720320,16384,2228224 +(1,128:1358238,49800853:1179648,16384,0 +r186,128:2537886,49800853:1179648,16384,0 ) -(186,79:21170735,42907313:501378,78643,0 -(186,79:21334589,42907313:173670,78643,0 +g1,128:3062174,49800853 +(1,128:3062174,52029077:16384,1703936,0 +[1,128:3062174,52029077:25952256,1703936,0 +(1,128:3062174,51504789:25952256,1179648,0 +(1,128:3062174,51504789:16384,1179648,0 +r186,128:3078558,51504789:16384,1179648,0 ) +k1,128:29014430,51504789:25935872 +g1,128:29014430,51504789 ) -(186,79:21672113,42907313:501378,78643,0 -(186,79:21835967,42907313:173670,78643,0 +] ) ) -(186,79:22173491,42907313:501378,78643,0 -(186,79:22337345,42907313:173670,78643,0 ) +] +[186,128:3078558,4812305:0,0,0 +(186,128:3078558,49800853:0,16384,2228224 +g186,128:29030814,49800853 +g186,128:36135244,49800853 +(1,128:36135244,49800853:1720320,16384,2228224 +(1,128:36135244,52029077:16384,1703936,0 +[1,128:36135244,52029077:25952256,1703936,0 +(1,128:36135244,51504789:25952256,1179648,0 +(1,128:36135244,51504789:16384,1179648,0 +r186,128:36151628,51504789:16384,1179648,0 ) -(186,79:22674869,42907313:501378,78643,0 -(186,79:22838723,42907313:173670,78643,0 +k1,128:62087500,51504789:25935872 +g1,128:62087500,51504789 ) +] ) -(186,79:23176247,42907313:501378,78643,0 -(186,79:23340101,42907313:173670,78643,0 +g1,128:36675916,49800853 +(1,128:36675916,49800853:1179648,16384,0 +r186,128:37855564,49800853:1179648,16384,0 ) ) -(186,79:23677625,42907313:501378,78643,0 -(186,79:23841479,42907313:173670,78643,0 +k186,128:3078556,49800853:-34777008 ) +] +g186,128:6630773,4812305 +g186,128:6630773,4812305 +g186,128:9585136,4812305 +k186,128:31823468,4812305:22238332 ) -(186,79:24179003,42907313:501378,78643,0 -(186,79:24342857,42907313:173670,78643,0 ) +] +[186,128:6630773,45706769:25952256,40108032,0 +(186,128:6630773,45706769:25952256,40108032,0 +(186,128:6630773,45706769:0,0,0 +g186,128:6630773,45706769 ) -(186,79:24680381,42907313:501378,78643,0 -(186,79:24844235,42907313:173670,78643,0 +[186,128:6630773,45706769:25952256,40108032,0 +(186,81:6630773,6254097:25952256,505283,132808 +g186,81:12529013,6254097 +h186,81:12529013,6254097:3080190,0,0 +h186,81:15609203,6254097:0,0,0 +g186,81:9710963,6254097 +(186,81:9710963,6254097:2818050,485622,11795 +k186,81:12529013,6254097:1275332 ) +g186,81:15217896,6254097 +g186,81:16963120,6254097 +(186,81:17159711,6254097:501378,78643,0 +$186,81:17159711,6254097 +(186,81:17323565,6254097:173670,78643,0 ) -(186,79:25181759,42907313:501378,78643,0 -(186,79:25345613,42907313:173670,78643,0 +$186,81:17661089,6254097 ) +(186,81:17661089,6254097:501378,78643,0 +(186,81:17824943,6254097:173670,78643,0 ) -(186,79:25683137,42907313:501378,78643,0 -(186,79:25846991,42907313:173670,78643,0 ) +(186,81:18162467,6254097:501378,78643,0 +(186,81:18326321,6254097:173670,78643,0 ) -(186,79:26184515,42907313:501378,78643,0 -(186,79:26348369,42907313:173670,78643,0 ) +(186,81:18663845,6254097:501378,78643,0 +(186,81:18827699,6254097:173670,78643,0 ) -(186,79:26685893,42907313:501378,78643,0 -(186,79:26849747,42907313:173670,78643,0 ) +(186,81:19165223,6254097:501378,78643,0 +(186,81:19329077,6254097:173670,78643,0 ) -(186,79:27187271,42907313:501378,78643,0 -(186,79:27351125,42907313:173670,78643,0 ) +(186,81:19666601,6254097:501378,78643,0 +(186,81:19830455,6254097:173670,78643,0 ) -(186,79:27688649,42907313:501378,78643,0 -(186,79:27852503,42907313:173670,78643,0 ) +(186,81:20167979,6254097:501378,78643,0 +(186,81:20331833,6254097:173670,78643,0 ) -(186,79:28190027,42907313:501378,78643,0 -(186,79:28353881,42907313:173670,78643,0 ) +(186,81:20669357,6254097:501378,78643,0 +(186,81:20833211,6254097:173670,78643,0 ) -(186,79:28691405,42907313:501378,78643,0 -(186,79:28855259,42907313:173670,78643,0 ) +(186,81:21170735,6254097:501378,78643,0 +(186,81:21334589,6254097:173670,78643,0 ) -(186,79:29192783,42907313:501378,78643,0 -(186,79:29356637,42907313:173670,78643,0 ) +(186,81:21672113,6254097:501378,78643,0 +(186,81:21835967,6254097:173670,78643,0 ) -(186,79:29694161,42907313:501378,78643,0 -(186,79:29858015,42907313:173670,78643,0 ) +(186,81:22173491,6254097:501378,78643,0 +(186,81:22337345,6254097:173670,78643,0 ) -(186,79:30195539,42907313:501378,78643,0 -(186,79:30359393,42907313:173670,78643,0 ) +(186,81:22674869,6254097:501378,78643,0 +(186,81:22838723,6254097:173670,78643,0 ) -(186,79:30696917,42907313:501378,78643,0 -(186,79:30860771,42907313:173670,78643,0 ) +(186,81:23176247,6254097:501378,78643,0 +(186,81:23340101,6254097:173670,78643,0 ) -(186,79:31239539,42907313:1343490,481690,11795 -k186,79:31239539,42907313:0 -k186,79:31387652,42907313:148113 ) -g186,79:30911859,42907313 -g186,79:32583029,42907313 +(186,81:23677625,6254097:501378,78643,0 +(186,81:23841479,6254097:173670,78643,0 ) -(186,80:6630773,43748801:25952256,505283,126483 -g186,80:11873653,43748801 -h186,80:11873653,43748801:2818050,0,0 -h186,80:14691703,43748801:0,0,0 -g186,80:9448823,43748801 -(186,80:9448823,43748801:2424830,485622,11795 -k186,80:11873653,43748801:882112 ) -g186,80:14048792,43748801 -g186,80:15794016,43748801 -(186,80:16156955,43748801:501378,78643,0 -$186,80:16156955,43748801 -(186,80:16320809,43748801:173670,78643,0 +(186,81:24179003,6254097:501378,78643,0 +(186,81:24342857,6254097:173670,78643,0 ) -$186,80:16658333,43748801 ) -(186,80:16658333,43748801:501378,78643,0 -(186,80:16822187,43748801:173670,78643,0 +(186,81:24680381,6254097:501378,78643,0 +(186,81:24844235,6254097:173670,78643,0 ) ) -(186,80:17159711,43748801:501378,78643,0 -(186,80:17323565,43748801:173670,78643,0 +(186,81:25181759,6254097:501378,78643,0 +(186,81:25345613,6254097:173670,78643,0 ) ) -(186,80:17661089,43748801:501378,78643,0 -(186,80:17824943,43748801:173670,78643,0 +(186,81:25683137,6254097:501378,78643,0 +(186,81:25846991,6254097:173670,78643,0 ) ) -(186,80:18162467,43748801:501378,78643,0 -(186,80:18326321,43748801:173670,78643,0 +(186,81:26184515,6254097:501378,78643,0 +(186,81:26348369,6254097:173670,78643,0 ) ) -(186,80:18663845,43748801:501378,78643,0 -(186,80:18827699,43748801:173670,78643,0 +(186,81:26685893,6254097:501378,78643,0 +(186,81:26849747,6254097:173670,78643,0 ) ) -(186,80:19165223,43748801:501378,78643,0 -(186,80:19329077,43748801:173670,78643,0 +(186,81:27187271,6254097:501378,78643,0 +(186,81:27351125,6254097:173670,78643,0 ) ) -(186,80:19666601,43748801:501378,78643,0 -(186,80:19830455,43748801:173670,78643,0 +(186,81:27688649,6254097:501378,78643,0 +(186,81:27852503,6254097:173670,78643,0 ) ) -(186,80:20167979,43748801:501378,78643,0 -(186,80:20331833,43748801:173670,78643,0 +(186,81:28190027,6254097:501378,78643,0 +(186,81:28353881,6254097:173670,78643,0 ) ) -(186,80:20669357,43748801:501378,78643,0 -(186,80:20833211,43748801:173670,78643,0 +(186,81:28691405,6254097:501378,78643,0 +(186,81:28855259,6254097:173670,78643,0 ) ) -(186,80:21170735,43748801:501378,78643,0 -(186,80:21334589,43748801:173670,78643,0 +(186,81:29192783,6254097:501378,78643,0 +(186,81:29356637,6254097:173670,78643,0 ) ) -(186,80:21672113,43748801:501378,78643,0 -(186,80:21835967,43748801:173670,78643,0 +(186,81:29694161,6254097:501378,78643,0 +(186,81:29858015,6254097:173670,78643,0 ) ) -(186,80:22173491,43748801:501378,78643,0 -(186,80:22337345,43748801:173670,78643,0 +(186,81:30195539,6254097:501378,78643,0 +(186,81:30359393,6254097:173670,78643,0 ) ) -(186,80:22674869,43748801:501378,78643,0 -(186,80:22838723,43748801:173670,78643,0 +(186,81:30696917,6254097:501378,78643,0 +(186,81:30860771,6254097:173670,78643,0 ) ) -(186,80:23176247,43748801:501378,78643,0 -(186,80:23340101,43748801:173670,78643,0 +(186,81:31239539,6254097:1343490,485622,11795 +k186,81:31239539,6254097:0 +k186,81:31387652,6254097:148113 ) +g186,81:30911859,6254097 +g186,81:32583029,6254097 ) -(186,80:23677625,43748801:501378,78643,0 -(186,80:23841479,43748801:173670,78643,0 +(186,82:6630773,7119177:25952256,505283,126483 +g186,82:12529013,7119177 +h186,82:12529013,7119177:3080190,0,0 +h186,82:15609203,7119177:0,0,0 +g186,82:9710963,7119177 +(186,82:9710963,7119177:2818050,481690,11795 +k186,82:12529013,7119177:1275332 ) +g186,82:15082951,7119177 +g186,82:17027404,7119177 +g186,82:18330915,7119177 +g186,82:19277910,7119177 +g186,82:20928106,7119177 +g186,82:21743373,7119177 +g186,82:22357445,7119177 +g186,82:22357445,7119177 +(186,82:22674869,7119177:501378,78643,0 +$186,82:22674869,7119177 +(186,82:22838723,7119177:173670,78643,0 ) -(186,80:24179003,43748801:501378,78643,0 -(186,80:24342857,43748801:173670,78643,0 +$186,82:23176247,7119177 ) +(186,82:23176247,7119177:501378,78643,0 +(186,82:23340101,7119177:173670,78643,0 ) -(186,80:24680381,43748801:501378,78643,0 -(186,80:24844235,43748801:173670,78643,0 ) +(186,82:23677625,7119177:501378,78643,0 +(186,82:23841479,7119177:173670,78643,0 ) -(186,80:25181759,43748801:501378,78643,0 -(186,80:25345613,43748801:173670,78643,0 ) +(186,82:24179003,7119177:501378,78643,0 +(186,82:24342857,7119177:173670,78643,0 ) -(186,80:25683137,43748801:501378,78643,0 -(186,80:25846991,43748801:173670,78643,0 ) +(186,82:24680381,7119177:501378,78643,0 +(186,82:24844235,7119177:173670,78643,0 ) -(186,80:26184515,43748801:501378,78643,0 -(186,80:26348369,43748801:173670,78643,0 ) +(186,82:25181759,7119177:501378,78643,0 +(186,82:25345613,7119177:173670,78643,0 ) -(186,80:26685893,43748801:501378,78643,0 -(186,80:26849747,43748801:173670,78643,0 ) +(186,82:25683137,7119177:501378,78643,0 +(186,82:25846991,7119177:173670,78643,0 ) -(186,80:27187271,43748801:501378,78643,0 -(186,80:27351125,43748801:173670,78643,0 ) +(186,82:26184515,7119177:501378,78643,0 +(186,82:26348369,7119177:173670,78643,0 ) -(186,80:27688649,43748801:501378,78643,0 -(186,80:27852503,43748801:173670,78643,0 ) +(186,82:26685893,7119177:501378,78643,0 +(186,82:26849747,7119177:173670,78643,0 ) -(186,80:28190027,43748801:501378,78643,0 -(186,80:28353881,43748801:173670,78643,0 ) +(186,82:27187271,7119177:501378,78643,0 +(186,82:27351125,7119177:173670,78643,0 ) -(186,80:28691405,43748801:501378,78643,0 -(186,80:28855259,43748801:173670,78643,0 ) +(186,82:27688649,7119177:501378,78643,0 +(186,82:27852503,7119177:173670,78643,0 ) -(186,80:29192783,43748801:501378,78643,0 -(186,80:29356637,43748801:173670,78643,0 ) +(186,82:28190027,7119177:501378,78643,0 +(186,82:28353881,7119177:173670,78643,0 ) -(186,80:29694161,43748801:501378,78643,0 -(186,80:29858015,43748801:173670,78643,0 ) +(186,82:28691405,7119177:501378,78643,0 +(186,82:28855259,7119177:173670,78643,0 ) -(186,80:30195539,43748801:501378,78643,0 -(186,80:30359393,43748801:173670,78643,0 ) +(186,82:29192783,7119177:501378,78643,0 +(186,82:29356637,7119177:173670,78643,0 ) -(186,80:30696917,43748801:501378,78643,0 -(186,80:30860771,43748801:173670,78643,0 ) +(186,82:29694161,7119177:501378,78643,0 +(186,82:29858015,7119177:173670,78643,0 ) -(186,80:31239539,43748801:1343490,485622,11795 -k186,80:31239539,43748801:0 -k186,80:31387652,43748801:148113 ) -g186,80:30911859,43748801 -g186,80:32583029,43748801 +(186,82:30195539,7119177:501378,78643,0 +(186,82:30359393,7119177:173670,78643,0 ) -(186,81:6630773,44590289:25952256,505283,126483 -g186,81:11873653,44590289 -h186,81:11873653,44590289:2818050,0,0 -h186,81:14691703,44590289:0,0,0 -g186,81:9448823,44590289 -(186,81:9448823,44590289:2424830,485622,11795 -k186,81:11873653,44590289:882112 ) -g186,81:14443975,44590289 -g186,81:16189199,44590289 -(186,81:16658333,44590289:501378,78643,0 -$186,81:16658333,44590289 -(186,81:16822187,44590289:173670,78643,0 +(186,82:30696917,7119177:501378,78643,0 +(186,82:30860771,7119177:173670,78643,0 ) -$186,81:17159711,44590289 ) -(186,81:17159711,44590289:501378,78643,0 -(186,81:17323565,44590289:173670,78643,0 +(186,82:31239539,7119177:1343490,481690,0 +k186,82:31239539,7119177:0 +k186,82:31387652,7119177:148113 ) +g186,82:30911859,7119177 +g186,82:32583029,7119177 ) -(186,81:17661089,44590289:501378,78643,0 -(186,81:17824943,44590289:173670,78643,0 +(186,83:6630773,7984257:25952256,513147,134348 +g186,83:12529013,7984257 +h186,83:12529013,7984257:3080190,0,0 +h186,83:15609203,7984257:0,0,0 +g186,83:9710963,7984257 +(186,83:9710963,7984257:2818050,473825,11795 +k186,83:12529013,7984257:1275332 ) +g186,83:15145210,7984257 +g186,83:16003731,7984257 +g186,83:17748955,7984257 +(186,83:18162467,7984257:501378,78643,0 +$186,83:18162467,7984257 +(186,83:18326321,7984257:173670,78643,0 ) -(186,81:18162467,44590289:501378,78643,0 -(186,81:18326321,44590289:173670,78643,0 +$186,83:18663845,7984257 ) +(186,83:18663845,7984257:501378,78643,0 +(186,83:18827699,7984257:173670,78643,0 ) -(186,81:18663845,44590289:501378,78643,0 -(186,81:18827699,44590289:173670,78643,0 ) +(186,83:19165223,7984257:501378,78643,0 +(186,83:19329077,7984257:173670,78643,0 ) -(186,81:19165223,44590289:501378,78643,0 -(186,81:19329077,44590289:173670,78643,0 ) +(186,83:19666601,7984257:501378,78643,0 +(186,83:19830455,7984257:173670,78643,0 ) -(186,81:19666601,44590289:501378,78643,0 -(186,81:19830455,44590289:173670,78643,0 ) +(186,83:20167979,7984257:501378,78643,0 +(186,83:20331833,7984257:173670,78643,0 ) -(186,81:20167979,44590289:501378,78643,0 -(186,81:20331833,44590289:173670,78643,0 ) +(186,83:20669357,7984257:501378,78643,0 +(186,83:20833211,7984257:173670,78643,0 ) -(186,81:20669357,44590289:501378,78643,0 -(186,81:20833211,44590289:173670,78643,0 ) +(186,83:21170735,7984257:501378,78643,0 +(186,83:21334589,7984257:173670,78643,0 ) -(186,81:21170735,44590289:501378,78643,0 -(186,81:21334589,44590289:173670,78643,0 ) +(186,83:21672113,7984257:501378,78643,0 +(186,83:21835967,7984257:173670,78643,0 ) -(186,81:21672113,44590289:501378,78643,0 -(186,81:21835967,44590289:173670,78643,0 ) +(186,83:22173491,7984257:501378,78643,0 +(186,83:22337345,7984257:173670,78643,0 ) -(186,81:22173491,44590289:501378,78643,0 -(186,81:22337345,44590289:173670,78643,0 ) +(186,83:22674869,7984257:501378,78643,0 +(186,83:22838723,7984257:173670,78643,0 ) -(186,81:22674869,44590289:501378,78643,0 -(186,81:22838723,44590289:173670,78643,0 ) +(186,83:23176247,7984257:501378,78643,0 +(186,83:23340101,7984257:173670,78643,0 ) -(186,81:23176247,44590289:501378,78643,0 -(186,81:23340101,44590289:173670,78643,0 ) +(186,83:23677625,7984257:501378,78643,0 +(186,83:23841479,7984257:173670,78643,0 ) -(186,81:23677625,44590289:501378,78643,0 -(186,81:23841479,44590289:173670,78643,0 ) +(186,83:24179003,7984257:501378,78643,0 +(186,83:24342857,7984257:173670,78643,0 ) -(186,81:24179003,44590289:501378,78643,0 -(186,81:24342857,44590289:173670,78643,0 ) +(186,83:24680381,7984257:501378,78643,0 +(186,83:24844235,7984257:173670,78643,0 ) -(186,81:24680381,44590289:501378,78643,0 -(186,81:24844235,44590289:173670,78643,0 ) +(186,83:25181759,7984257:501378,78643,0 +(186,83:25345613,7984257:173670,78643,0 ) -(186,81:25181759,44590289:501378,78643,0 -(186,81:25345613,44590289:173670,78643,0 ) +(186,83:25683137,7984257:501378,78643,0 +(186,83:25846991,7984257:173670,78643,0 ) -(186,81:25683137,44590289:501378,78643,0 -(186,81:25846991,44590289:173670,78643,0 ) +(186,83:26184515,7984257:501378,78643,0 +(186,83:26348369,7984257:173670,78643,0 ) -(186,81:26184515,44590289:501378,78643,0 -(186,81:26348369,44590289:173670,78643,0 ) +(186,83:26685893,7984257:501378,78643,0 +(186,83:26849747,7984257:173670,78643,0 ) -(186,81:26685893,44590289:501378,78643,0 -(186,81:26849747,44590289:173670,78643,0 ) +(186,83:27187271,7984257:501378,78643,0 +(186,83:27351125,7984257:173670,78643,0 ) -(186,81:27187271,44590289:501378,78643,0 -(186,81:27351125,44590289:173670,78643,0 ) +(186,83:27688649,7984257:501378,78643,0 +(186,83:27852503,7984257:173670,78643,0 ) -(186,81:27688649,44590289:501378,78643,0 -(186,81:27852503,44590289:173670,78643,0 ) +(186,83:28190027,7984257:501378,78643,0 +(186,83:28353881,7984257:173670,78643,0 ) -(186,81:28190027,44590289:501378,78643,0 -(186,81:28353881,44590289:173670,78643,0 ) +(186,83:28691405,7984257:501378,78643,0 +(186,83:28855259,7984257:173670,78643,0 ) -(186,81:28691405,44590289:501378,78643,0 -(186,81:28855259,44590289:173670,78643,0 ) +(186,83:29192783,7984257:501378,78643,0 +(186,83:29356637,7984257:173670,78643,0 ) -(186,81:29192783,44590289:501378,78643,0 -(186,81:29356637,44590289:173670,78643,0 ) +(186,83:29694161,7984257:501378,78643,0 +(186,83:29858015,7984257:173670,78643,0 ) -(186,81:29694161,44590289:501378,78643,0 -(186,81:29858015,44590289:173670,78643,0 ) +(186,83:30195539,7984257:501378,78643,0 +(186,83:30359393,7984257:173670,78643,0 ) -(186,81:30195539,44590289:501378,78643,0 -(186,81:30359393,44590289:173670,78643,0 ) +(186,83:30696917,7984257:501378,78643,0 +(186,83:30860771,7984257:173670,78643,0 ) -(186,81:30696917,44590289:501378,78643,0 -(186,81:30860771,44590289:173670,78643,0 ) +(186,83:31239539,7984257:1343490,485622,11795 +k186,83:31239539,7984257:0 +k186,83:31387652,7984257:148113 ) -(186,81:31239539,44590289:1343490,477757,11795 -k186,81:31239539,44590289:0 -k186,81:31387652,44590289:148113 +g186,83:30911859,7984257 +g186,83:32583029,7984257 ) -g186,81:30911859,44590289 -g186,81:32583029,44590289 +(186,85:6630773,8849337:25952256,513147,126483 +g186,85:9710963,8849337 +h186,85:9710963,8849337:983040,0,0 +h186,85:10694003,8849337:0,0,0 +g186,85:7613813,8849337 +(186,85:7613813,8849337:2097150,485622,11795 +k186,85:9710963,8849337:1126562 ) -(186,82:6630773,45431777:25952256,505283,126483 -g186,82:11873653,45431777 -h186,82:11873653,45431777:2818050,0,0 -h186,82:14691703,45431777:0,0,0 -g186,82:9448823,45431777 -(186,82:9448823,45431777:2424830,481690,11795 -k186,82:11873653,45431777:882112 +g186,85:11805493,8849337 +g186,85:15030519,8849337 +g186,85:15030519,8849337 +(186,85:15154199,8849337:501378,78643,0 +$186,85:15154199,8849337 +(186,85:15318053,8849337:173670,78643,0 ) -g186,82:14427591,45431777 -g186,82:16372044,45431777 -g186,82:17675555,45431777 -g186,82:18622550,45431777 -g186,82:20272746,45431777 -g186,82:21088013,45431777 -g186,82:21702085,45431777 -g186,82:21702085,45431777 -(186,82:22173491,45431777:501378,78643,0 -$186,82:22173491,45431777 -(186,82:22337345,45431777:173670,78643,0 +$186,85:15655577,8849337 ) -$186,82:22674869,45431777 +(186,85:15655577,8849337:501378,78643,0 +(186,85:15819431,8849337:173670,78643,0 ) -(186,82:22674869,45431777:501378,78643,0 -(186,82:22838723,45431777:173670,78643,0 ) +(186,85:16156955,8849337:501378,78643,0 +(186,85:16320809,8849337:173670,78643,0 ) -(186,82:23176247,45431777:501378,78643,0 -(186,82:23340101,45431777:173670,78643,0 ) +(186,85:16658333,8849337:501378,78643,0 +(186,85:16822187,8849337:173670,78643,0 ) -(186,82:23677625,45431777:501378,78643,0 -(186,82:23841479,45431777:173670,78643,0 ) +(186,85:17159711,8849337:501378,78643,0 +(186,85:17323565,8849337:173670,78643,0 ) -(186,82:24179003,45431777:501378,78643,0 -(186,82:24342857,45431777:173670,78643,0 ) +(186,85:17661089,8849337:501378,78643,0 +(186,85:17824943,8849337:173670,78643,0 ) -(186,82:24680381,45431777:501378,78643,0 -(186,82:24844235,45431777:173670,78643,0 ) +(186,85:18162467,8849337:501378,78643,0 +(186,85:18326321,8849337:173670,78643,0 ) -(186,82:25181759,45431777:501378,78643,0 -(186,82:25345613,45431777:173670,78643,0 ) +(186,85:18663845,8849337:501378,78643,0 +(186,85:18827699,8849337:173670,78643,0 ) -(186,82:25683137,45431777:501378,78643,0 -(186,82:25846991,45431777:173670,78643,0 ) +(186,85:19165223,8849337:501378,78643,0 +(186,85:19329077,8849337:173670,78643,0 ) -(186,82:26184515,45431777:501378,78643,0 -(186,82:26348369,45431777:173670,78643,0 ) +(186,85:19666601,8849337:501378,78643,0 +(186,85:19830455,8849337:173670,78643,0 ) -(186,82:26685893,45431777:501378,78643,0 -(186,82:26849747,45431777:173670,78643,0 ) +(186,85:20167979,8849337:501378,78643,0 +(186,85:20331833,8849337:173670,78643,0 ) -(186,82:27187271,45431777:501378,78643,0 -(186,82:27351125,45431777:173670,78643,0 ) +(186,85:20669357,8849337:501378,78643,0 +(186,85:20833211,8849337:173670,78643,0 ) -(186,82:27688649,45431777:501378,78643,0 -(186,82:27852503,45431777:173670,78643,0 ) +(186,85:21170735,8849337:501378,78643,0 +(186,85:21334589,8849337:173670,78643,0 ) -(186,82:28190027,45431777:501378,78643,0 -(186,82:28353881,45431777:173670,78643,0 ) +(186,85:21672113,8849337:501378,78643,0 +(186,85:21835967,8849337:173670,78643,0 ) -(186,82:28691405,45431777:501378,78643,0 -(186,82:28855259,45431777:173670,78643,0 ) +(186,85:22173491,8849337:501378,78643,0 +(186,85:22337345,8849337:173670,78643,0 ) -(186,82:29192783,45431777:501378,78643,0 -(186,82:29356637,45431777:173670,78643,0 ) +(186,85:22674869,8849337:501378,78643,0 +(186,85:22838723,8849337:173670,78643,0 ) -(186,82:29694161,45431777:501378,78643,0 -(186,82:29858015,45431777:173670,78643,0 ) +(186,85:23176247,8849337:501378,78643,0 +(186,85:23340101,8849337:173670,78643,0 ) -(186,82:30195539,45431777:501378,78643,0 -(186,82:30359393,45431777:173670,78643,0 ) +(186,85:23677625,8849337:501378,78643,0 +(186,85:23841479,8849337:173670,78643,0 ) -(186,82:30696917,45431777:501378,78643,0 -(186,82:30860771,45431777:173670,78643,0 ) +(186,85:24179003,8849337:501378,78643,0 +(186,85:24342857,8849337:173670,78643,0 ) -(186,82:31239539,45431777:1343490,485622,11795 -k186,82:31239539,45431777:0 -k186,82:31387652,45431777:148113 ) -g186,82:30911859,45431777 -g186,82:32583029,45431777 +(186,85:24680381,8849337:501378,78643,0 +(186,85:24844235,8849337:173670,78643,0 ) -] -(186,85:32583029,45706769:0,0,0 -g186,85:32583029,45706769 ) +(186,85:25181759,8849337:501378,78643,0 +(186,85:25345613,8849337:173670,78643,0 ) -] -(186,85:6630773,47279633:25952256,0,0 -h186,85:6630773,47279633:25952256,0,0 ) -] -(186,85:4262630,4025873:0,0,0 -[186,85:-473656,4025873:0,0,0 -(186,85:-473656,-710413:0,0,0 -(186,85:-473656,-710413:0,0,0 -g186,85:-473656,-710413 +(186,85:25683137,8849337:501378,78643,0 +(186,85:25846991,8849337:173670,78643,0 ) -g186,85:-473656,-710413 ) -] +(186,85:26184515,8849337:501378,78643,0 +(186,85:26348369,8849337:173670,78643,0 ) -] -!129802 -}3 -!11 -{4 -[186,131:4262630,47279633:28320399,43253760,0 -(186,131:4262630,4025873:0,0,0 -[186,131:-473656,4025873:0,0,0 -(186,131:-473656,-710413:0,0,0 -(186,131:-473656,-644877:0,0,0 -k186,131:-473656,-644877:-65536 ) -(186,131:-473656,4736287:0,0,0 -k186,131:-473656,4736287:5209943 +(186,85:26685893,8849337:501378,78643,0 +(186,85:26849747,8849337:173670,78643,0 ) -g186,131:-473656,-710413 ) -] +(186,85:27187271,8849337:501378,78643,0 +(186,85:27351125,8849337:173670,78643,0 ) -[186,131:6630773,47279633:25952256,43253760,0 -[186,131:6630773,4812305:25952256,786432,0 -(186,131:6630773,4812305:25952256,485622,11795 -(186,131:6630773,4812305:25952256,485622,11795 -g186,131:3078558,4812305 -[186,131:3078558,4812305:0,0,0 -(186,131:3078558,2439708:0,1703936,0 -k186,131:1358238,2439708:-1720320 -(1,135:1358238,2439708:1720320,1703936,0 -(1,135:1358238,2439708:1179648,16384,0 -r186,131:2537886,2439708:1179648,16384,0 ) -g1,135:3062174,2439708 -(1,135:3062174,2439708:16384,1703936,0 -[1,135:3062174,2439708:25952256,1703936,0 -(1,135:3062174,1915420:25952256,1179648,0 -(1,135:3062174,1915420:16384,1179648,0 -r186,131:3078558,1915420:16384,1179648,0 +(186,85:27688649,8849337:501378,78643,0 +(186,85:27852503,8849337:173670,78643,0 ) -k1,135:29014430,1915420:25935872 -g1,135:29014430,1915420 ) -] +(186,85:28190027,8849337:501378,78643,0 +(186,85:28353881,8849337:173670,78643,0 ) ) +(186,85:28691405,8849337:501378,78643,0 +(186,85:28855259,8849337:173670,78643,0 ) -] -[186,131:3078558,4812305:0,0,0 -(186,131:3078558,2439708:0,1703936,0 -g186,131:29030814,2439708 -g186,131:36135244,2439708 -(1,135:36135244,2439708:1720320,1703936,0 -(1,135:36135244,2439708:16384,1703936,0 -[1,135:36135244,2439708:25952256,1703936,0 -(1,135:36135244,1915420:25952256,1179648,0 -(1,135:36135244,1915420:16384,1179648,0 -r186,131:36151628,1915420:16384,1179648,0 ) -k1,135:62087500,1915420:25935872 -g1,135:62087500,1915420 +(186,85:29192783,8849337:501378,78643,0 +(186,85:29356637,8849337:173670,78643,0 ) -] ) -g1,135:36675916,2439708 -(1,135:36675916,2439708:1179648,16384,0 -r186,131:37855564,2439708:1179648,16384,0 +(186,85:29694161,8849337:501378,78643,0 +(186,85:29858015,8849337:173670,78643,0 ) ) -k186,131:3078556,2439708:-34777008 +(186,85:30195539,8849337:501378,78643,0 +(186,85:30359393,8849337:173670,78643,0 ) -] -[186,131:3078558,4812305:0,0,0 -(186,131:3078558,49800853:0,16384,2228224 -k186,131:1358238,49800853:-1720320 -(1,135:1358238,49800853:1720320,16384,2228224 -(1,135:1358238,49800853:1179648,16384,0 -r186,131:2537886,49800853:1179648,16384,0 ) -g1,135:3062174,49800853 -(1,135:3062174,52029077:16384,1703936,0 -[1,135:3062174,52029077:25952256,1703936,0 -(1,135:3062174,51504789:25952256,1179648,0 -(1,135:3062174,51504789:16384,1179648,0 -r186,131:3078558,51504789:16384,1179648,0 +(186,85:30696917,8849337:501378,78643,0 +(186,85:30860771,8849337:173670,78643,0 ) -k1,135:29014430,51504789:25935872 -g1,135:29014430,51504789 ) -] +(186,85:31239539,8849337:1343490,485622,11795 +k186,85:31239539,8849337:0 +k186,85:31387652,8849337:148113 ) +g186,85:30911859,8849337 +g186,85:32583029,8849337 ) +(186,86:6630773,9714417:25952256,513147,134348 +g186,86:12529013,9714417 +h186,86:12529013,9714417:3080190,0,0 +h186,86:15609203,9714417:0,0,0 +g186,86:9710963,9714417 +(186,86:9710963,9714417:2818050,485622,11795 +k186,86:12529013,9714417:1275332 ) -] -[186,131:3078558,4812305:0,0,0 -(186,131:3078558,49800853:0,16384,2228224 -g186,131:29030814,49800853 -g186,131:36135244,49800853 -(1,135:36135244,49800853:1720320,16384,2228224 -(1,135:36135244,52029077:16384,1703936,0 -[1,135:36135244,52029077:25952256,1703936,0 -(1,135:36135244,51504789:25952256,1179648,0 -(1,135:36135244,51504789:16384,1179648,0 -r186,131:36151628,51504789:16384,1179648,0 +g186,86:15613792,9714417 +g186,86:18838818,9714417 +g186,86:19689475,9714417 +g186,86:22370552,9714417 +g186,86:23893608,9714417 +g186,86:25284282,9714417 +g186,86:26872874,9714417 +g186,86:29079471,9714417 +(186,86:29192783,9714417:501378,78643,0 +$186,86:29192783,9714417 +(186,86:29356637,9714417:173670,78643,0 ) -k1,135:62087500,51504789:25935872 -g1,135:62087500,51504789 +$186,86:29694161,9714417 ) -] +(186,86:29694161,9714417:501378,78643,0 +(186,86:29858015,9714417:173670,78643,0 ) -g1,135:36675916,49800853 -(1,135:36675916,49800853:1179648,16384,0 -r186,131:37855564,49800853:1179648,16384,0 ) +(186,86:30195539,9714417:501378,78643,0 +(186,86:30359393,9714417:173670,78643,0 ) -k186,131:3078556,49800853:-34777008 ) -] -g186,131:6630773,4812305 -g186,131:6630773,4812305 -g186,131:9585136,4812305 -k186,131:31823468,4812305:22238332 +(186,86:30696917,9714417:501378,78643,0 +(186,86:30860771,9714417:173670,78643,0 ) ) -] -[186,131:6630773,45706769:25952256,40108032,0 -(186,131:6630773,45706769:25952256,40108032,0 -(186,131:6630773,45706769:0,0,0 -g186,131:6630773,45706769 +(186,86:31239539,9714417:1343490,477757,11795 +k186,86:31239539,9714417:0 +k186,86:31387652,9714417:148113 ) -[186,131:6630773,45706769:25952256,40108032,0 -(186,83:6630773,6254097:25952256,513147,134348 -g186,83:11873653,6254097 -h186,83:11873653,6254097:2818050,0,0 -h186,83:14691703,6254097:0,0,0 -g186,83:9448823,6254097 -(186,83:9448823,6254097:2424830,473825,11795 -k186,83:11873653,6254097:882112 +g186,86:30911859,9714417 +g186,86:32583029,9714417 ) -g186,83:14489850,6254097 -g186,83:15348371,6254097 -g186,83:17093595,6254097 -(186,83:17159711,6254097:501378,78643,0 -$186,83:17159711,6254097 -(186,83:17323565,6254097:173670,78643,0 +(186,87:6630773,10579497:25952256,513147,134348 +g186,87:12529013,10579497 +h186,87:12529013,10579497:3080190,0,0 +h186,87:15609203,10579497:0,0,0 +g186,87:9710963,10579497 +(186,87:9710963,10579497:2818050,485622,11795 +k186,87:12529013,10579497:1275332 ) -$186,83:17661089,6254097 +g186,87:15613792,10579497 +g186,87:18838818,10579497 +g186,87:19689475,10579497 +g186,87:22622211,10579497 +g186,87:24012885,10579497 +g186,87:25992728,10579497 +(186,87:26184515,10579497:501378,78643,0 +$186,87:26184515,10579497 +(186,87:26348369,10579497:173670,78643,0 ) -(186,83:17661089,6254097:501378,78643,0 -(186,83:17824943,6254097:173670,78643,0 +$186,87:26685893,10579497 ) +(186,87:26685893,10579497:501378,78643,0 +(186,87:26849747,10579497:173670,78643,0 ) -(186,83:18162467,6254097:501378,78643,0 -(186,83:18326321,6254097:173670,78643,0 ) +(186,87:27187271,10579497:501378,78643,0 +(186,87:27351125,10579497:173670,78643,0 ) -(186,83:18663845,6254097:501378,78643,0 -(186,83:18827699,6254097:173670,78643,0 ) +(186,87:27688649,10579497:501378,78643,0 +(186,87:27852503,10579497:173670,78643,0 ) -(186,83:19165223,6254097:501378,78643,0 -(186,83:19329077,6254097:173670,78643,0 ) +(186,87:28190027,10579497:501378,78643,0 +(186,87:28353881,10579497:173670,78643,0 ) -(186,83:19666601,6254097:501378,78643,0 -(186,83:19830455,6254097:173670,78643,0 ) +(186,87:28691405,10579497:501378,78643,0 +(186,87:28855259,10579497:173670,78643,0 ) -(186,83:20167979,6254097:501378,78643,0 -(186,83:20331833,6254097:173670,78643,0 ) +(186,87:29192783,10579497:501378,78643,0 +(186,87:29356637,10579497:173670,78643,0 ) -(186,83:20669357,6254097:501378,78643,0 -(186,83:20833211,6254097:173670,78643,0 ) +(186,87:29694161,10579497:501378,78643,0 +(186,87:29858015,10579497:173670,78643,0 ) -(186,83:21170735,6254097:501378,78643,0 -(186,83:21334589,6254097:173670,78643,0 ) +(186,87:30195539,10579497:501378,78643,0 +(186,87:30359393,10579497:173670,78643,0 ) -(186,83:21672113,6254097:501378,78643,0 -(186,83:21835967,6254097:173670,78643,0 ) +(186,87:30696917,10579497:501378,78643,0 +(186,87:30860771,10579497:173670,78643,0 ) -(186,83:22173491,6254097:501378,78643,0 -(186,83:22337345,6254097:173670,78643,0 ) +(186,87:31239539,10579497:1343490,481690,11795 +k186,87:31239539,10579497:0 +k186,87:31387652,10579497:148113 ) -(186,83:22674869,6254097:501378,78643,0 -(186,83:22838723,6254097:173670,78643,0 +g186,87:30911859,10579497 +g186,87:32583029,10579497 ) +(186,88:6630773,11444577:25952256,505283,126483 +g186,88:9710963,11444577 +h186,88:9710963,11444577:983040,0,0 +h186,88:10694003,11444577:0,0,0 +g186,88:7613813,11444577 +(186,88:7613813,11444577:2097150,485622,11795 +k186,88:9710963,11444577:1126562 ) -(186,83:23176247,6254097:501378,78643,0 -(186,83:23340101,6254097:173670,78643,0 +g186,88:13030361,11444577 +g186,88:14514096,11444577 +g186,88:17011673,11444577 +g186,88:18956126,11444577 +g186,88:18956126,11444577 +(186,88:19165223,11444577:501378,78643,0 +$186,88:19165223,11444577 +(186,88:19329077,11444577:173670,78643,0 ) +$186,88:19666601,11444577 ) -(186,83:23677625,6254097:501378,78643,0 -(186,83:23841479,6254097:173670,78643,0 +(186,88:19666601,11444577:501378,78643,0 +(186,88:19830455,11444577:173670,78643,0 ) ) -(186,83:24179003,6254097:501378,78643,0 -(186,83:24342857,6254097:173670,78643,0 +(186,88:20167979,11444577:501378,78643,0 +(186,88:20331833,11444577:173670,78643,0 ) ) -(186,83:24680381,6254097:501378,78643,0 -(186,83:24844235,6254097:173670,78643,0 +(186,88:20669357,11444577:501378,78643,0 +(186,88:20833211,11444577:173670,78643,0 ) ) -(186,83:25181759,6254097:501378,78643,0 -(186,83:25345613,6254097:173670,78643,0 +(186,88:21170735,11444577:501378,78643,0 +(186,88:21334589,11444577:173670,78643,0 ) ) -(186,83:25683137,6254097:501378,78643,0 -(186,83:25846991,6254097:173670,78643,0 +(186,88:21672113,11444577:501378,78643,0 +(186,88:21835967,11444577:173670,78643,0 ) ) -(186,83:26184515,6254097:501378,78643,0 -(186,83:26348369,6254097:173670,78643,0 +(186,88:22173491,11444577:501378,78643,0 +(186,88:22337345,11444577:173670,78643,0 ) ) -(186,83:26685893,6254097:501378,78643,0 -(186,83:26849747,6254097:173670,78643,0 +(186,88:22674869,11444577:501378,78643,0 +(186,88:22838723,11444577:173670,78643,0 ) ) -(186,83:27187271,6254097:501378,78643,0 -(186,83:27351125,6254097:173670,78643,0 +(186,88:23176247,11444577:501378,78643,0 +(186,88:23340101,11444577:173670,78643,0 ) ) -(186,83:27688649,6254097:501378,78643,0 -(186,83:27852503,6254097:173670,78643,0 +(186,88:23677625,11444577:501378,78643,0 +(186,88:23841479,11444577:173670,78643,0 ) ) -(186,83:28190027,6254097:501378,78643,0 -(186,83:28353881,6254097:173670,78643,0 +(186,88:24179003,11444577:501378,78643,0 +(186,88:24342857,11444577:173670,78643,0 ) ) -(186,83:28691405,6254097:501378,78643,0 -(186,83:28855259,6254097:173670,78643,0 +(186,88:24680381,11444577:501378,78643,0 +(186,88:24844235,11444577:173670,78643,0 ) ) -(186,83:29192783,6254097:501378,78643,0 -(186,83:29356637,6254097:173670,78643,0 +(186,88:25181759,11444577:501378,78643,0 +(186,88:25345613,11444577:173670,78643,0 ) ) -(186,83:29694161,6254097:501378,78643,0 -(186,83:29858015,6254097:173670,78643,0 +(186,88:25683137,11444577:501378,78643,0 +(186,88:25846991,11444577:173670,78643,0 ) ) -(186,83:30195539,6254097:501378,78643,0 -(186,83:30359393,6254097:173670,78643,0 +(186,88:26184515,11444577:501378,78643,0 +(186,88:26348369,11444577:173670,78643,0 ) ) -(186,83:30696917,6254097:501378,78643,0 -(186,83:30860771,6254097:173670,78643,0 +(186,88:26685893,11444577:501378,78643,0 +(186,88:26849747,11444577:173670,78643,0 ) ) -(186,83:31239539,6254097:1343490,481690,11795 -k186,83:31239539,6254097:0 -k186,83:31387652,6254097:148113 +(186,88:27187271,11444577:501378,78643,0 +(186,88:27351125,11444577:173670,78643,0 ) -g186,83:30911859,6254097 -g186,83:32583029,6254097 ) -(186,85:6630773,7095585:25952256,513147,126483 -g186,85:9448823,7095585 -h186,85:9448823,7095585:983040,0,0 -h186,85:10431863,7095585:0,0,0 -g186,85:7613813,7095585 -(186,85:7613813,7095585:1835010,485622,11795 -k186,85:9448823,7095585:864422 +(186,88:27688649,11444577:501378,78643,0 +(186,88:27852503,11444577:173670,78643,0 ) -g186,85:11543353,7095585 -g186,85:14768379,7095585 -g186,85:14768379,7095585 -(186,85:15154199,7095585:501378,78643,0 -$186,85:15154199,7095585 -(186,85:15318053,7095585:173670,78643,0 ) -$186,85:15655577,7095585 +(186,88:28190027,11444577:501378,78643,0 +(186,88:28353881,11444577:173670,78643,0 ) -(186,85:15655577,7095585:501378,78643,0 -(186,85:15819431,7095585:173670,78643,0 ) +(186,88:28691405,11444577:501378,78643,0 +(186,88:28855259,11444577:173670,78643,0 ) -(186,85:16156955,7095585:501378,78643,0 -(186,85:16320809,7095585:173670,78643,0 ) +(186,88:29192783,11444577:501378,78643,0 +(186,88:29356637,11444577:173670,78643,0 ) -(186,85:16658333,7095585:501378,78643,0 -(186,85:16822187,7095585:173670,78643,0 ) +(186,88:29694161,11444577:501378,78643,0 +(186,88:29858015,11444577:173670,78643,0 ) -(186,85:17159711,7095585:501378,78643,0 -(186,85:17323565,7095585:173670,78643,0 ) +(186,88:30195539,11444577:501378,78643,0 +(186,88:30359393,11444577:173670,78643,0 ) -(186,85:17661089,7095585:501378,78643,0 -(186,85:17824943,7095585:173670,78643,0 ) +(186,88:30696917,11444577:501378,78643,0 +(186,88:30860771,11444577:173670,78643,0 ) -(186,85:18162467,7095585:501378,78643,0 -(186,85:18326321,7095585:173670,78643,0 ) +(186,88:31239539,11444577:1343490,485622,11795 +k186,88:31239539,11444577:0 +k186,88:31387652,11444577:148113 ) -(186,85:18663845,7095585:501378,78643,0 -(186,85:18827699,7095585:173670,78643,0 +g186,88:30911859,11444577 +g186,88:32583029,11444577 ) +(186,89:6630773,12309657:25952256,505283,134348 +g186,89:9710963,12309657 +h186,89:9710963,12309657:983040,0,0 +h186,89:10694003,12309657:0,0,0 +g186,89:7613813,12309657 +(186,89:7613813,12309657:2097150,485622,11795 +k186,89:9710963,12309657:728103 ) -(186,85:19165223,7095585:501378,78643,0 -(186,85:19329077,7095585:173670,78643,0 +g186,89:11984406,12309657 +g186,89:14251951,12309657 +g186,89:15642625,12309657 +g186,89:18816533,12309657 +g186,89:21211873,12309657 +g186,89:21211873,12309657 +(186,89:21672113,12309657:501378,78643,0 +$186,89:21672113,12309657 +(186,89:21835967,12309657:173670,78643,0 ) +$186,89:22173491,12309657 ) -(186,85:19666601,7095585:501378,78643,0 -(186,85:19830455,7095585:173670,78643,0 +(186,89:22173491,12309657:501378,78643,0 +(186,89:22337345,12309657:173670,78643,0 ) ) -(186,85:20167979,7095585:501378,78643,0 -(186,85:20331833,7095585:173670,78643,0 +(186,89:22674869,12309657:501378,78643,0 +(186,89:22838723,12309657:173670,78643,0 ) ) -(186,85:20669357,7095585:501378,78643,0 -(186,85:20833211,7095585:173670,78643,0 +(186,89:23176247,12309657:501378,78643,0 +(186,89:23340101,12309657:173670,78643,0 ) ) -(186,85:21170735,7095585:501378,78643,0 -(186,85:21334589,7095585:173670,78643,0 +(186,89:23677625,12309657:501378,78643,0 +(186,89:23841479,12309657:173670,78643,0 ) ) -(186,85:21672113,7095585:501378,78643,0 -(186,85:21835967,7095585:173670,78643,0 +(186,89:24179003,12309657:501378,78643,0 +(186,89:24342857,12309657:173670,78643,0 ) ) -(186,85:22173491,7095585:501378,78643,0 -(186,85:22337345,7095585:173670,78643,0 +(186,89:24680381,12309657:501378,78643,0 +(186,89:24844235,12309657:173670,78643,0 ) ) -(186,85:22674869,7095585:501378,78643,0 -(186,85:22838723,7095585:173670,78643,0 +(186,89:25181759,12309657:501378,78643,0 +(186,89:25345613,12309657:173670,78643,0 ) ) -(186,85:23176247,7095585:501378,78643,0 -(186,85:23340101,7095585:173670,78643,0 +(186,89:25683137,12309657:501378,78643,0 +(186,89:25846991,12309657:173670,78643,0 ) ) -(186,85:23677625,7095585:501378,78643,0 -(186,85:23841479,7095585:173670,78643,0 +(186,89:26184515,12309657:501378,78643,0 +(186,89:26348369,12309657:173670,78643,0 ) ) -(186,85:24179003,7095585:501378,78643,0 -(186,85:24342857,7095585:173670,78643,0 +(186,89:26685893,12309657:501378,78643,0 +(186,89:26849747,12309657:173670,78643,0 ) ) -(186,85:24680381,7095585:501378,78643,0 -(186,85:24844235,7095585:173670,78643,0 +(186,89:27187271,12309657:501378,78643,0 +(186,89:27351125,12309657:173670,78643,0 ) ) -(186,85:25181759,7095585:501378,78643,0 -(186,85:25345613,7095585:173670,78643,0 +(186,89:27688649,12309657:501378,78643,0 +(186,89:27852503,12309657:173670,78643,0 ) ) -(186,85:25683137,7095585:501378,78643,0 -(186,85:25846991,7095585:173670,78643,0 +(186,89:28190027,12309657:501378,78643,0 +(186,89:28353881,12309657:173670,78643,0 ) ) -(186,85:26184515,7095585:501378,78643,0 -(186,85:26348369,7095585:173670,78643,0 +(186,89:28691405,12309657:501378,78643,0 +(186,89:28855259,12309657:173670,78643,0 ) ) -(186,85:26685893,7095585:501378,78643,0 -(186,85:26849747,7095585:173670,78643,0 +(186,89:29192783,12309657:501378,78643,0 +(186,89:29356637,12309657:173670,78643,0 ) ) -(186,85:27187271,7095585:501378,78643,0 -(186,85:27351125,7095585:173670,78643,0 +(186,89:29694161,12309657:501378,78643,0 +(186,89:29858015,12309657:173670,78643,0 ) ) -(186,85:27688649,7095585:501378,78643,0 -(186,85:27852503,7095585:173670,78643,0 +(186,89:30195539,12309657:501378,78643,0 +(186,89:30359393,12309657:173670,78643,0 ) ) -(186,85:28190027,7095585:501378,78643,0 -(186,85:28353881,7095585:173670,78643,0 +(186,89:30696917,12309657:501378,78643,0 +(186,89:30860771,12309657:173670,78643,0 ) ) -(186,85:28691405,7095585:501378,78643,0 -(186,85:28855259,7095585:173670,78643,0 +(186,89:31239539,12309657:1343490,477757,11795 +k186,89:31239539,12309657:0 +k186,89:31387652,12309657:148113 ) +g186,89:30911859,12309657 +g186,89:32583029,12309657 ) -(186,85:29192783,7095585:501378,78643,0 -(186,85:29356637,7095585:173670,78643,0 +(186,90:6630773,13174737:25952256,513147,126483 +g186,90:9710963,13174737 +h186,90:9710963,13174737:983040,0,0 +h186,90:10694003,13174737:0,0,0 +g186,90:7613813,13174737 +(186,90:7613813,13174737:2097150,477757,11795 +k186,90:9710963,13174737:728103 ) +g186,90:11106879,13174737 +g186,90:13977355,13174737 +g186,90:15808430,13174737 +g186,90:16666951,13174737 +g186,90:18611404,13174737 +g186,90:18611404,13174737 +(186,90:18663845,13174737:501378,78643,0 +$186,90:18663845,13174737 +(186,90:18827699,13174737:173670,78643,0 ) -(186,85:29694161,7095585:501378,78643,0 -(186,85:29858015,7095585:173670,78643,0 +$186,90:19165223,13174737 ) +(186,90:19165223,13174737:501378,78643,0 +(186,90:19329077,13174737:173670,78643,0 ) -(186,85:30195539,7095585:501378,78643,0 -(186,85:30359393,7095585:173670,78643,0 ) +(186,90:19666601,13174737:501378,78643,0 +(186,90:19830455,13174737:173670,78643,0 ) -(186,85:30696917,7095585:501378,78643,0 -(186,85:30860771,7095585:173670,78643,0 ) +(186,90:20167979,13174737:501378,78643,0 +(186,90:20331833,13174737:173670,78643,0 ) -(186,85:31239539,7095585:1343490,485622,11795 -k186,85:31239539,7095585:0 -k186,85:31387652,7095585:148113 ) -g186,85:30911859,7095585 -g186,85:32583029,7095585 +(186,90:20669357,13174737:501378,78643,0 +(186,90:20833211,13174737:173670,78643,0 ) -(186,86:6630773,7937073:25952256,513147,134348 -g186,86:11873653,7937073 -h186,86:11873653,7937073:2818050,0,0 -h186,86:14691703,7937073:0,0,0 -g186,86:9448823,7937073 -(186,86:9448823,7937073:2424830,485622,11795 -k186,86:11873653,7937073:882112 ) -g186,86:14958432,7937073 -g186,86:18183458,7937073 -g186,86:19034115,7937073 -g186,86:21715192,7937073 -g186,86:23238248,7937073 -g186,86:24628922,7937073 -g186,86:26217514,7937073 -g186,86:28424111,7937073 -(186,86:28691405,7937073:501378,78643,0 -$186,86:28691405,7937073 -(186,86:28855259,7937073:173670,78643,0 +(186,90:21170735,13174737:501378,78643,0 +(186,90:21334589,13174737:173670,78643,0 ) -$186,86:29192783,7937073 ) -(186,86:29192783,7937073:501378,78643,0 -(186,86:29356637,7937073:173670,78643,0 +(186,90:21672113,13174737:501378,78643,0 +(186,90:21835967,13174737:173670,78643,0 ) ) -(186,86:29694161,7937073:501378,78643,0 -(186,86:29858015,7937073:173670,78643,0 +(186,90:22173491,13174737:501378,78643,0 +(186,90:22337345,13174737:173670,78643,0 ) ) -(186,86:30195539,7937073:501378,78643,0 -(186,86:30359393,7937073:173670,78643,0 +(186,90:22674869,13174737:501378,78643,0 +(186,90:22838723,13174737:173670,78643,0 ) ) -(186,86:30696917,7937073:501378,78643,0 -(186,86:30860771,7937073:173670,78643,0 +(186,90:23176247,13174737:501378,78643,0 +(186,90:23340101,13174737:173670,78643,0 ) ) -(186,86:31239539,7937073:1343490,477757,11795 -k186,86:31239539,7937073:0 -k186,86:31387652,7937073:148113 +(186,90:23677625,13174737:501378,78643,0 +(186,90:23841479,13174737:173670,78643,0 ) -g186,86:30911859,7937073 -g186,86:32583029,7937073 ) -(186,87:6630773,8778561:25952256,513147,134348 -g186,87:11873653,8778561 -h186,87:11873653,8778561:2818050,0,0 -h186,87:14691703,8778561:0,0,0 -g186,87:9448823,8778561 -(186,87:9448823,8778561:2424830,485622,11795 -k186,87:11873653,8778561:882112 +(186,90:24179003,13174737:501378,78643,0 +(186,90:24342857,13174737:173670,78643,0 ) -g186,87:14958432,8778561 -g186,87:18183458,8778561 -g186,87:19034115,8778561 -g186,87:21966851,8778561 -g186,87:23357525,8778561 -g186,87:25337368,8778561 -(186,87:25683137,8778561:501378,78643,0 -$186,87:25683137,8778561 -(186,87:25846991,8778561:173670,78643,0 ) -$186,87:26184515,8778561 +(186,90:24680381,13174737:501378,78643,0 +(186,90:24844235,13174737:173670,78643,0 ) -(186,87:26184515,8778561:501378,78643,0 -(186,87:26348369,8778561:173670,78643,0 ) +(186,90:25181759,13174737:501378,78643,0 +(186,90:25345613,13174737:173670,78643,0 ) -(186,87:26685893,8778561:501378,78643,0 -(186,87:26849747,8778561:173670,78643,0 ) +(186,90:25683137,13174737:501378,78643,0 +(186,90:25846991,13174737:173670,78643,0 ) -(186,87:27187271,8778561:501378,78643,0 -(186,87:27351125,8778561:173670,78643,0 ) +(186,90:26184515,13174737:501378,78643,0 +(186,90:26348369,13174737:173670,78643,0 ) -(186,87:27688649,8778561:501378,78643,0 -(186,87:27852503,8778561:173670,78643,0 ) +(186,90:26685893,13174737:501378,78643,0 +(186,90:26849747,13174737:173670,78643,0 ) -(186,87:28190027,8778561:501378,78643,0 -(186,87:28353881,8778561:173670,78643,0 ) +(186,90:27187271,13174737:501378,78643,0 +(186,90:27351125,13174737:173670,78643,0 ) -(186,87:28691405,8778561:501378,78643,0 -(186,87:28855259,8778561:173670,78643,0 ) +(186,90:27688649,13174737:501378,78643,0 +(186,90:27852503,13174737:173670,78643,0 ) -(186,87:29192783,8778561:501378,78643,0 -(186,87:29356637,8778561:173670,78643,0 ) +(186,90:28190027,13174737:501378,78643,0 +(186,90:28353881,13174737:173670,78643,0 ) -(186,87:29694161,8778561:501378,78643,0 -(186,87:29858015,8778561:173670,78643,0 ) +(186,90:28691405,13174737:501378,78643,0 +(186,90:28855259,13174737:173670,78643,0 ) -(186,87:30195539,8778561:501378,78643,0 -(186,87:30359393,8778561:173670,78643,0 ) +(186,90:29192783,13174737:501378,78643,0 +(186,90:29356637,13174737:173670,78643,0 ) -(186,87:30696917,8778561:501378,78643,0 -(186,87:30860771,8778561:173670,78643,0 ) +(186,90:29694161,13174737:501378,78643,0 +(186,90:29858015,13174737:173670,78643,0 ) -(186,87:31239539,8778561:1343490,485622,11795 -k186,87:31239539,8778561:0 -k186,87:31387652,8778561:148113 ) -g186,87:30911859,8778561 -g186,87:32583029,8778561 +(186,90:30195539,13174737:501378,78643,0 +(186,90:30359393,13174737:173670,78643,0 ) -(186,88:6630773,9620049:25952256,505283,126483 -g186,88:9448823,9620049 -h186,88:9448823,9620049:983040,0,0 -h186,88:10431863,9620049:0,0,0 -g186,88:7613813,9620049 -(186,88:7613813,9620049:1835010,485622,11795 -k186,88:9448823,9620049:864422 ) -g186,88:12768221,9620049 -g186,88:14251956,9620049 -g186,88:16749533,9620049 -g186,88:18693986,9620049 -g186,88:18693986,9620049 -(186,88:19165223,9620049:501378,78643,0 -$186,88:19165223,9620049 -(186,88:19329077,9620049:173670,78643,0 +(186,90:30696917,13174737:501378,78643,0 +(186,90:30860771,13174737:173670,78643,0 ) -$186,88:19666601,9620049 ) -(186,88:19666601,9620049:501378,78643,0 -(186,88:19830455,9620049:173670,78643,0 +(186,90:31239539,13174737:1343490,485622,11795 +k186,90:31239539,13174737:0 +k186,90:31387652,13174737:148113 ) +g186,90:30911859,13174737 +g186,90:32583029,13174737 ) -(186,88:20167979,9620049:501378,78643,0 -(186,88:20331833,9620049:173670,78643,0 +(186,91:6630773,14039817:25952256,505283,134348 +g186,91:9710963,14039817 +h186,91:9710963,14039817:983040,0,0 +h186,91:10694003,14039817:0,0,0 +g186,91:7613813,14039817 +(186,91:7613813,14039817:2097150,485622,11795 +k186,91:9710963,14039817:728103 ) +g186,91:12279974,14039817 +g186,91:14881753,14039817 +g186,91:14881753,14039817 +(186,91:15154199,14039817:501378,78643,0 +$186,91:15154199,14039817 +(186,91:15318053,14039817:173670,78643,0 ) -(186,88:20669357,9620049:501378,78643,0 -(186,88:20833211,9620049:173670,78643,0 +$186,91:15655577,14039817 ) +(186,91:15655577,14039817:501378,78643,0 +(186,91:15819431,14039817:173670,78643,0 ) -(186,88:21170735,9620049:501378,78643,0 -(186,88:21334589,9620049:173670,78643,0 ) +(186,91:16156955,14039817:501378,78643,0 +(186,91:16320809,14039817:173670,78643,0 ) -(186,88:21672113,9620049:501378,78643,0 -(186,88:21835967,9620049:173670,78643,0 ) +(186,91:16658333,14039817:501378,78643,0 +(186,91:16822187,14039817:173670,78643,0 ) -(186,88:22173491,9620049:501378,78643,0 -(186,88:22337345,9620049:173670,78643,0 ) +(186,91:17159711,14039817:501378,78643,0 +(186,91:17323565,14039817:173670,78643,0 ) -(186,88:22674869,9620049:501378,78643,0 -(186,88:22838723,9620049:173670,78643,0 ) +(186,91:17661089,14039817:501378,78643,0 +(186,91:17824943,14039817:173670,78643,0 ) -(186,88:23176247,9620049:501378,78643,0 -(186,88:23340101,9620049:173670,78643,0 ) +(186,91:18162467,14039817:501378,78643,0 +(186,91:18326321,14039817:173670,78643,0 ) -(186,88:23677625,9620049:501378,78643,0 -(186,88:23841479,9620049:173670,78643,0 ) +(186,91:18663845,14039817:501378,78643,0 +(186,91:18827699,14039817:173670,78643,0 ) -(186,88:24179003,9620049:501378,78643,0 -(186,88:24342857,9620049:173670,78643,0 ) +(186,91:19165223,14039817:501378,78643,0 +(186,91:19329077,14039817:173670,78643,0 ) -(186,88:24680381,9620049:501378,78643,0 -(186,88:24844235,9620049:173670,78643,0 ) +(186,91:19666601,14039817:501378,78643,0 +(186,91:19830455,14039817:173670,78643,0 ) -(186,88:25181759,9620049:501378,78643,0 -(186,88:25345613,9620049:173670,78643,0 ) +(186,91:20167979,14039817:501378,78643,0 +(186,91:20331833,14039817:173670,78643,0 ) -(186,88:25683137,9620049:501378,78643,0 -(186,88:25846991,9620049:173670,78643,0 ) +(186,91:20669357,14039817:501378,78643,0 +(186,91:20833211,14039817:173670,78643,0 ) -(186,88:26184515,9620049:501378,78643,0 -(186,88:26348369,9620049:173670,78643,0 ) +(186,91:21170735,14039817:501378,78643,0 +(186,91:21334589,14039817:173670,78643,0 ) -(186,88:26685893,9620049:501378,78643,0 -(186,88:26849747,9620049:173670,78643,0 ) +(186,91:21672113,14039817:501378,78643,0 +(186,91:21835967,14039817:173670,78643,0 ) -(186,88:27187271,9620049:501378,78643,0 -(186,88:27351125,9620049:173670,78643,0 ) +(186,91:22173491,14039817:501378,78643,0 +(186,91:22337345,14039817:173670,78643,0 ) -(186,88:27688649,9620049:501378,78643,0 -(186,88:27852503,9620049:173670,78643,0 ) +(186,91:22674869,14039817:501378,78643,0 +(186,91:22838723,14039817:173670,78643,0 ) -(186,88:28190027,9620049:501378,78643,0 -(186,88:28353881,9620049:173670,78643,0 ) +(186,91:23176247,14039817:501378,78643,0 +(186,91:23340101,14039817:173670,78643,0 ) -(186,88:28691405,9620049:501378,78643,0 -(186,88:28855259,9620049:173670,78643,0 ) +(186,91:23677625,14039817:501378,78643,0 +(186,91:23841479,14039817:173670,78643,0 ) -(186,88:29192783,9620049:501378,78643,0 -(186,88:29356637,9620049:173670,78643,0 ) +(186,91:24179003,14039817:501378,78643,0 +(186,91:24342857,14039817:173670,78643,0 ) -(186,88:29694161,9620049:501378,78643,0 -(186,88:29858015,9620049:173670,78643,0 ) +(186,91:24680381,14039817:501378,78643,0 +(186,91:24844235,14039817:173670,78643,0 ) -(186,88:30195539,9620049:501378,78643,0 -(186,88:30359393,9620049:173670,78643,0 ) +(186,91:25181759,14039817:501378,78643,0 +(186,91:25345613,14039817:173670,78643,0 ) -(186,88:30696917,9620049:501378,78643,0 -(186,88:30860771,9620049:173670,78643,0 ) +(186,91:25683137,14039817:501378,78643,0 +(186,91:25846991,14039817:173670,78643,0 ) -(186,88:31239539,9620049:1343490,485622,11795 -k186,88:31239539,9620049:0 -k186,88:31387652,9620049:148113 ) -g186,88:30911859,9620049 -g186,88:32583029,9620049 +(186,91:26184515,14039817:501378,78643,0 +(186,91:26348369,14039817:173670,78643,0 ) -(186,89:6630773,10461537:25952256,505283,134348 -g186,89:9448823,10461537 -h186,89:9448823,10461537:983040,0,0 -h186,89:10431863,10461537:0,0,0 -g186,89:7613813,10461537 -(186,89:7613813,10461537:1835010,485622,11795 -k186,89:9448823,10461537:465963 ) -g186,89:11722266,10461537 -g186,89:13989811,10461537 -g186,89:15380485,10461537 -g186,89:18554393,10461537 -g186,89:20949733,10461537 -g186,89:20949733,10461537 -(186,89:21170735,10461537:501378,78643,0 -$186,89:21170735,10461537 -(186,89:21334589,10461537:173670,78643,0 +(186,91:26685893,14039817:501378,78643,0 +(186,91:26849747,14039817:173670,78643,0 ) -$186,89:21672113,10461537 ) -(186,89:21672113,10461537:501378,78643,0 -(186,89:21835967,10461537:173670,78643,0 +(186,91:27187271,14039817:501378,78643,0 +(186,91:27351125,14039817:173670,78643,0 ) ) -(186,89:22173491,10461537:501378,78643,0 -(186,89:22337345,10461537:173670,78643,0 +(186,91:27688649,14039817:501378,78643,0 +(186,91:27852503,14039817:173670,78643,0 ) ) -(186,89:22674869,10461537:501378,78643,0 -(186,89:22838723,10461537:173670,78643,0 +(186,91:28190027,14039817:501378,78643,0 +(186,91:28353881,14039817:173670,78643,0 ) ) -(186,89:23176247,10461537:501378,78643,0 -(186,89:23340101,10461537:173670,78643,0 +(186,91:28691405,14039817:501378,78643,0 +(186,91:28855259,14039817:173670,78643,0 ) ) -(186,89:23677625,10461537:501378,78643,0 -(186,89:23841479,10461537:173670,78643,0 +(186,91:29192783,14039817:501378,78643,0 +(186,91:29356637,14039817:173670,78643,0 ) ) -(186,89:24179003,10461537:501378,78643,0 -(186,89:24342857,10461537:173670,78643,0 +(186,91:29694161,14039817:501378,78643,0 +(186,91:29858015,14039817:173670,78643,0 ) ) -(186,89:24680381,10461537:501378,78643,0 -(186,89:24844235,10461537:173670,78643,0 +(186,91:30195539,14039817:501378,78643,0 +(186,91:30359393,14039817:173670,78643,0 ) ) -(186,89:25181759,10461537:501378,78643,0 -(186,89:25345613,10461537:173670,78643,0 +(186,91:30696917,14039817:501378,78643,0 +(186,91:30860771,14039817:173670,78643,0 ) ) -(186,89:25683137,10461537:501378,78643,0 -(186,89:25846991,10461537:173670,78643,0 +(186,91:31239539,14039817:1343490,485622,11795 +k186,91:31239539,14039817:0 +k186,91:31387652,14039817:148113 ) +g186,91:30911859,14039817 +g186,91:32583029,14039817 ) -(186,89:26184515,10461537:501378,78643,0 -(186,89:26348369,10461537:173670,78643,0 +(186,92:6630773,15560257:25952256,505283,134348 +g186,92:7613813,15560257 +h186,92:7613813,15560257:0,0,0 +g186,92:6630773,15560257 +(186,92:6630773,15560257:983040,485622,11795 +k186,92:7613813,15560257:574751 ) +g186,92:9313161,15560257 +g186,92:10163163,15560257 +g186,92:12777394,15560257 +g186,92:14443319,15560257 +k186,92:24201301,15560257:7038238 +k186,92:31239539,15560257:7038238 +(186,92:31239539,15560257:1343490,485622,11795 +k186,92:31358161,15560257:118622 ) -(186,89:26685893,10461537:501378,78643,0 -(186,89:26849747,10461537:173670,78643,0 +g186,92:31239539,15560257 +g186,92:32583029,15560257 ) +(186,93:6630773,16425337:25952256,513147,126483 +g186,93:9710963,16425337 +h186,93:9710963,16425337:983040,0,0 +h186,93:10694003,16425337:0,0,0 +g186,93:7613813,16425337 +(186,93:7613813,16425337:2097150,485622,11795 +k186,93:9710963,16425337:1126562 ) -(186,89:27187271,10461537:501378,78643,0 -(186,89:27351125,10461537:173670,78643,0 +g186,93:11549247,16425337 +g186,93:12407768,16425337 +g186,93:13810238,16425337 +g186,93:16427090,16425337 +g186,93:16427090,16425337 +(186,93:16658333,16425337:501378,78643,0 +$186,93:16658333,16425337 +(186,93:16822187,16425337:173670,78643,0 ) +$186,93:17159711,16425337 ) -(186,89:27688649,10461537:501378,78643,0 -(186,89:27852503,10461537:173670,78643,0 +(186,93:17159711,16425337:501378,78643,0 +(186,93:17323565,16425337:173670,78643,0 ) ) -(186,89:28190027,10461537:501378,78643,0 -(186,89:28353881,10461537:173670,78643,0 +(186,93:17661089,16425337:501378,78643,0 +(186,93:17824943,16425337:173670,78643,0 ) ) -(186,89:28691405,10461537:501378,78643,0 -(186,89:28855259,10461537:173670,78643,0 +(186,93:18162467,16425337:501378,78643,0 +(186,93:18326321,16425337:173670,78643,0 ) ) -(186,89:29192783,10461537:501378,78643,0 -(186,89:29356637,10461537:173670,78643,0 +(186,93:18663845,16425337:501378,78643,0 +(186,93:18827699,16425337:173670,78643,0 ) ) -(186,89:29694161,10461537:501378,78643,0 -(186,89:29858015,10461537:173670,78643,0 +(186,93:19165223,16425337:501378,78643,0 +(186,93:19329077,16425337:173670,78643,0 ) ) -(186,89:30195539,10461537:501378,78643,0 -(186,89:30359393,10461537:173670,78643,0 +(186,93:19666601,16425337:501378,78643,0 +(186,93:19830455,16425337:173670,78643,0 ) ) -(186,89:30696917,10461537:501378,78643,0 -(186,89:30860771,10461537:173670,78643,0 +(186,93:20167979,16425337:501378,78643,0 +(186,93:20331833,16425337:173670,78643,0 ) ) -(186,89:31239539,10461537:1343490,485622,11795 -k186,89:31239539,10461537:0 -k186,89:31387652,10461537:148113 +(186,93:20669357,16425337:501378,78643,0 +(186,93:20833211,16425337:173670,78643,0 ) -g186,89:30911859,10461537 -g186,89:32583029,10461537 ) -(186,90:6630773,11303025:25952256,513147,126483 -g186,90:9448823,11303025 -h186,90:9448823,11303025:983040,0,0 -h186,90:10431863,11303025:0,0,0 -g186,90:7613813,11303025 -(186,90:7613813,11303025:1835010,477757,11795 -k186,90:9448823,11303025:465963 +(186,93:21170735,16425337:501378,78643,0 +(186,93:21334589,16425337:173670,78643,0 ) -g186,90:10844739,11303025 -g186,90:13715215,11303025 -g186,90:15546290,11303025 -g186,90:16404811,11303025 -g186,90:18349264,11303025 -g186,90:18349264,11303025 -(186,90:18663845,11303025:501378,78643,0 -$186,90:18663845,11303025 -(186,90:18827699,11303025:173670,78643,0 ) -$186,90:19165223,11303025 +(186,93:21672113,16425337:501378,78643,0 +(186,93:21835967,16425337:173670,78643,0 ) -(186,90:19165223,11303025:501378,78643,0 -(186,90:19329077,11303025:173670,78643,0 ) +(186,93:22173491,16425337:501378,78643,0 +(186,93:22337345,16425337:173670,78643,0 ) -(186,90:19666601,11303025:501378,78643,0 -(186,90:19830455,11303025:173670,78643,0 ) +(186,93:22674869,16425337:501378,78643,0 +(186,93:22838723,16425337:173670,78643,0 ) -(186,90:20167979,11303025:501378,78643,0 -(186,90:20331833,11303025:173670,78643,0 ) +(186,93:23176247,16425337:501378,78643,0 +(186,93:23340101,16425337:173670,78643,0 ) -(186,90:20669357,11303025:501378,78643,0 -(186,90:20833211,11303025:173670,78643,0 ) +(186,93:23677625,16425337:501378,78643,0 +(186,93:23841479,16425337:173670,78643,0 ) -(186,90:21170735,11303025:501378,78643,0 -(186,90:21334589,11303025:173670,78643,0 ) +(186,93:24179003,16425337:501378,78643,0 +(186,93:24342857,16425337:173670,78643,0 ) -(186,90:21672113,11303025:501378,78643,0 -(186,90:21835967,11303025:173670,78643,0 ) +(186,93:24680381,16425337:501378,78643,0 +(186,93:24844235,16425337:173670,78643,0 ) -(186,90:22173491,11303025:501378,78643,0 -(186,90:22337345,11303025:173670,78643,0 ) +(186,93:25181759,16425337:501378,78643,0 +(186,93:25345613,16425337:173670,78643,0 ) -(186,90:22674869,11303025:501378,78643,0 -(186,90:22838723,11303025:173670,78643,0 ) +(186,93:25683137,16425337:501378,78643,0 +(186,93:25846991,16425337:173670,78643,0 ) -(186,90:23176247,11303025:501378,78643,0 -(186,90:23340101,11303025:173670,78643,0 ) +(186,93:26184515,16425337:501378,78643,0 +(186,93:26348369,16425337:173670,78643,0 ) -(186,90:23677625,11303025:501378,78643,0 -(186,90:23841479,11303025:173670,78643,0 ) +(186,93:26685893,16425337:501378,78643,0 +(186,93:26849747,16425337:173670,78643,0 ) -(186,90:24179003,11303025:501378,78643,0 -(186,90:24342857,11303025:173670,78643,0 ) +(186,93:27187271,16425337:501378,78643,0 +(186,93:27351125,16425337:173670,78643,0 ) -(186,90:24680381,11303025:501378,78643,0 -(186,90:24844235,11303025:173670,78643,0 ) +(186,93:27688649,16425337:501378,78643,0 +(186,93:27852503,16425337:173670,78643,0 ) -(186,90:25181759,11303025:501378,78643,0 -(186,90:25345613,11303025:173670,78643,0 ) +(186,93:28190027,16425337:501378,78643,0 +(186,93:28353881,16425337:173670,78643,0 ) -(186,90:25683137,11303025:501378,78643,0 -(186,90:25846991,11303025:173670,78643,0 ) +(186,93:28691405,16425337:501378,78643,0 +(186,93:28855259,16425337:173670,78643,0 ) -(186,90:26184515,11303025:501378,78643,0 -(186,90:26348369,11303025:173670,78643,0 ) +(186,93:29192783,16425337:501378,78643,0 +(186,93:29356637,16425337:173670,78643,0 ) -(186,90:26685893,11303025:501378,78643,0 -(186,90:26849747,11303025:173670,78643,0 ) +(186,93:29694161,16425337:501378,78643,0 +(186,93:29858015,16425337:173670,78643,0 ) -(186,90:27187271,11303025:501378,78643,0 -(186,90:27351125,11303025:173670,78643,0 ) +(186,93:30195539,16425337:501378,78643,0 +(186,93:30359393,16425337:173670,78643,0 ) -(186,90:27688649,11303025:501378,78643,0 -(186,90:27852503,11303025:173670,78643,0 ) +(186,93:30696917,16425337:501378,78643,0 +(186,93:30860771,16425337:173670,78643,0 ) -(186,90:28190027,11303025:501378,78643,0 -(186,90:28353881,11303025:173670,78643,0 ) +(186,93:31239539,16425337:1343490,485622,11795 +k186,93:31239539,16425337:0 +k186,93:31387652,16425337:148113 ) -(186,90:28691405,11303025:501378,78643,0 -(186,90:28855259,11303025:173670,78643,0 +g186,93:30911859,16425337 +g186,93:32583029,16425337 ) +(186,94:6630773,17290417:25952256,513147,134348 +g186,94:9710963,17290417 +h186,94:9710963,17290417:983040,0,0 +h186,94:10694003,17290417:0,0,0 +g186,94:7613813,17290417 +(186,94:7613813,17290417:2097150,485622,11795 +k186,94:9710963,17290417:1126562 ) -(186,90:29192783,11303025:501378,78643,0 -(186,90:29356637,11303025:173670,78643,0 +g186,94:12596513,17290417 +g186,94:15821539,17290417 +g186,94:17212213,17290417 +g186,94:20488357,17290417 +g186,94:20488357,17290417 +(186,94:20669357,17290417:501378,78643,0 +$186,94:20669357,17290417 +(186,94:20833211,17290417:173670,78643,0 ) +$186,94:21170735,17290417 ) -(186,90:29694161,11303025:501378,78643,0 -(186,90:29858015,11303025:173670,78643,0 +(186,94:21170735,17290417:501378,78643,0 +(186,94:21334589,17290417:173670,78643,0 ) ) -(186,90:30195539,11303025:501378,78643,0 -(186,90:30359393,11303025:173670,78643,0 +(186,94:21672113,17290417:501378,78643,0 +(186,94:21835967,17290417:173670,78643,0 ) ) -(186,90:30696917,11303025:501378,78643,0 -(186,90:30860771,11303025:173670,78643,0 +(186,94:22173491,17290417:501378,78643,0 +(186,94:22337345,17290417:173670,78643,0 ) ) -(186,90:31239539,11303025:1343490,485622,11795 -k186,90:31239539,11303025:0 -k186,90:31387652,11303025:148113 +(186,94:22674869,17290417:501378,78643,0 +(186,94:22838723,17290417:173670,78643,0 ) -g186,90:30911859,11303025 -g186,90:32583029,11303025 ) -(186,91:6630773,12144513:25952256,505283,134348 -g186,91:9448823,12144513 -h186,91:9448823,12144513:983040,0,0 -h186,91:10431863,12144513:0,0,0 -g186,91:7613813,12144513 -(186,91:7613813,12144513:1835010,485622,11795 -k186,91:9448823,12144513:465963 +(186,94:23176247,17290417:501378,78643,0 +(186,94:23340101,17290417:173670,78643,0 ) -g186,91:12017834,12144513 -g186,91:14619613,12144513 -g186,91:14619613,12144513 -(186,91:14652821,12144513:501378,78643,0 -$186,91:14652821,12144513 -(186,91:14816675,12144513:173670,78643,0 ) -$186,91:15154199,12144513 +(186,94:23677625,17290417:501378,78643,0 +(186,94:23841479,17290417:173670,78643,0 ) -(186,91:15154199,12144513:501378,78643,0 -(186,91:15318053,12144513:173670,78643,0 ) +(186,94:24179003,17290417:501378,78643,0 +(186,94:24342857,17290417:173670,78643,0 ) -(186,91:15655577,12144513:501378,78643,0 -(186,91:15819431,12144513:173670,78643,0 ) +(186,94:24680381,17290417:501378,78643,0 +(186,94:24844235,17290417:173670,78643,0 ) -(186,91:16156955,12144513:501378,78643,0 -(186,91:16320809,12144513:173670,78643,0 ) +(186,94:25181759,17290417:501378,78643,0 +(186,94:25345613,17290417:173670,78643,0 ) -(186,91:16658333,12144513:501378,78643,0 -(186,91:16822187,12144513:173670,78643,0 ) +(186,94:25683137,17290417:501378,78643,0 +(186,94:25846991,17290417:173670,78643,0 ) -(186,91:17159711,12144513:501378,78643,0 -(186,91:17323565,12144513:173670,78643,0 ) +(186,94:26184515,17290417:501378,78643,0 +(186,94:26348369,17290417:173670,78643,0 ) -(186,91:17661089,12144513:501378,78643,0 -(186,91:17824943,12144513:173670,78643,0 ) +(186,94:26685893,17290417:501378,78643,0 +(186,94:26849747,17290417:173670,78643,0 ) -(186,91:18162467,12144513:501378,78643,0 -(186,91:18326321,12144513:173670,78643,0 ) +(186,94:27187271,17290417:501378,78643,0 +(186,94:27351125,17290417:173670,78643,0 ) -(186,91:18663845,12144513:501378,78643,0 -(186,91:18827699,12144513:173670,78643,0 ) +(186,94:27688649,17290417:501378,78643,0 +(186,94:27852503,17290417:173670,78643,0 ) -(186,91:19165223,12144513:501378,78643,0 -(186,91:19329077,12144513:173670,78643,0 ) +(186,94:28190027,17290417:501378,78643,0 +(186,94:28353881,17290417:173670,78643,0 ) -(186,91:19666601,12144513:501378,78643,0 -(186,91:19830455,12144513:173670,78643,0 ) +(186,94:28691405,17290417:501378,78643,0 +(186,94:28855259,17290417:173670,78643,0 ) -(186,91:20167979,12144513:501378,78643,0 -(186,91:20331833,12144513:173670,78643,0 ) +(186,94:29192783,17290417:501378,78643,0 +(186,94:29356637,17290417:173670,78643,0 ) -(186,91:20669357,12144513:501378,78643,0 -(186,91:20833211,12144513:173670,78643,0 ) +(186,94:29694161,17290417:501378,78643,0 +(186,94:29858015,17290417:173670,78643,0 ) -(186,91:21170735,12144513:501378,78643,0 -(186,91:21334589,12144513:173670,78643,0 ) +(186,94:30195539,17290417:501378,78643,0 +(186,94:30359393,17290417:173670,78643,0 ) -(186,91:21672113,12144513:501378,78643,0 -(186,91:21835967,12144513:173670,78643,0 ) +(186,94:30696917,17290417:501378,78643,0 +(186,94:30860771,17290417:173670,78643,0 ) -(186,91:22173491,12144513:501378,78643,0 -(186,91:22337345,12144513:173670,78643,0 ) +(186,94:31239539,17290417:1343490,485622,11795 +k186,94:31239539,17290417:0 +k186,94:31387652,17290417:148113 ) -(186,91:22674869,12144513:501378,78643,0 -(186,91:22838723,12144513:173670,78643,0 +g186,94:30911859,17290417 +g186,94:32583029,17290417 ) +(186,95:6630773,18155497:25952256,513147,126483 +g186,95:12529013,18155497 +h186,95:12529013,18155497:3080190,0,0 +h186,95:15609203,18155497:0,0,0 +g186,95:9710963,18155497 +(186,95:9710963,18155497:2818050,485622,11795 +k186,95:12529013,18155497:1275332 ) -(186,91:23176247,12144513:501378,78643,0 -(186,91:23340101,12144513:173670,78643,0 +g186,95:15567917,18155497 +g186,95:18593714,18155497 +(186,95:18663845,18155497:501378,78643,0 +$186,95:18663845,18155497 +(186,95:18827699,18155497:173670,78643,0 ) +$186,95:19165223,18155497 ) -(186,91:23677625,12144513:501378,78643,0 -(186,91:23841479,12144513:173670,78643,0 +(186,95:19165223,18155497:501378,78643,0 +(186,95:19329077,18155497:173670,78643,0 ) ) -(186,91:24179003,12144513:501378,78643,0 -(186,91:24342857,12144513:173670,78643,0 +(186,95:19666601,18155497:501378,78643,0 +(186,95:19830455,18155497:173670,78643,0 ) ) -(186,91:24680381,12144513:501378,78643,0 -(186,91:24844235,12144513:173670,78643,0 +(186,95:20167979,18155497:501378,78643,0 +(186,95:20331833,18155497:173670,78643,0 ) ) -(186,91:25181759,12144513:501378,78643,0 -(186,91:25345613,12144513:173670,78643,0 +(186,95:20669357,18155497:501378,78643,0 +(186,95:20833211,18155497:173670,78643,0 ) ) -(186,91:25683137,12144513:501378,78643,0 -(186,91:25846991,12144513:173670,78643,0 +(186,95:21170735,18155497:501378,78643,0 +(186,95:21334589,18155497:173670,78643,0 ) ) -(186,91:26184515,12144513:501378,78643,0 -(186,91:26348369,12144513:173670,78643,0 +(186,95:21672113,18155497:501378,78643,0 +(186,95:21835967,18155497:173670,78643,0 ) ) -(186,91:26685893,12144513:501378,78643,0 -(186,91:26849747,12144513:173670,78643,0 +(186,95:22173491,18155497:501378,78643,0 +(186,95:22337345,18155497:173670,78643,0 ) ) -(186,91:27187271,12144513:501378,78643,0 -(186,91:27351125,12144513:173670,78643,0 +(186,95:22674869,18155497:501378,78643,0 +(186,95:22838723,18155497:173670,78643,0 ) ) -(186,91:27688649,12144513:501378,78643,0 -(186,91:27852503,12144513:173670,78643,0 +(186,95:23176247,18155497:501378,78643,0 +(186,95:23340101,18155497:173670,78643,0 ) ) -(186,91:28190027,12144513:501378,78643,0 -(186,91:28353881,12144513:173670,78643,0 +(186,95:23677625,18155497:501378,78643,0 +(186,95:23841479,18155497:173670,78643,0 ) ) -(186,91:28691405,12144513:501378,78643,0 -(186,91:28855259,12144513:173670,78643,0 +(186,95:24179003,18155497:501378,78643,0 +(186,95:24342857,18155497:173670,78643,0 ) ) -(186,91:29192783,12144513:501378,78643,0 -(186,91:29356637,12144513:173670,78643,0 +(186,95:24680381,18155497:501378,78643,0 +(186,95:24844235,18155497:173670,78643,0 ) ) -(186,91:29694161,12144513:501378,78643,0 -(186,91:29858015,12144513:173670,78643,0 +(186,95:25181759,18155497:501378,78643,0 +(186,95:25345613,18155497:173670,78643,0 ) ) -(186,91:30195539,12144513:501378,78643,0 -(186,91:30359393,12144513:173670,78643,0 +(186,95:25683137,18155497:501378,78643,0 +(186,95:25846991,18155497:173670,78643,0 ) ) -(186,91:30696917,12144513:501378,78643,0 -(186,91:30860771,12144513:173670,78643,0 +(186,95:26184515,18155497:501378,78643,0 +(186,95:26348369,18155497:173670,78643,0 ) ) -(186,91:31239539,12144513:1343490,485622,11795 -k186,91:31239539,12144513:0 -k186,91:31387652,12144513:148113 +(186,95:26685893,18155497:501378,78643,0 +(186,95:26849747,18155497:173670,78643,0 ) -g186,91:30911859,12144513 -g186,91:32583029,12144513 ) -(186,92:6630773,13641361:25952256,505283,134348 -g186,92:7613813,13641361 -h186,92:7613813,13641361:0,0,0 -g186,92:6630773,13641361 -(186,92:6630773,13641361:983040,485622,11795 -k186,92:7613813,13641361:574751 +(186,95:27187271,18155497:501378,78643,0 +(186,95:27351125,18155497:173670,78643,0 ) -g186,92:9313161,13641361 -g186,92:10163163,13641361 -g186,92:12777394,13641361 -g186,92:14443319,13641361 -k186,92:24201301,13641361:7038238 -k186,92:31239539,13641361:7038238 -(186,92:31239539,13641361:1343490,485622,11795 -k186,92:31358161,13641361:118622 ) -g186,92:31239539,13641361 -g186,92:32583029,13641361 +(186,95:27688649,18155497:501378,78643,0 +(186,95:27852503,18155497:173670,78643,0 ) -(186,93:6630773,14482849:25952256,513147,126483 -g186,93:9448823,14482849 -h186,93:9448823,14482849:983040,0,0 -h186,93:10431863,14482849:0,0,0 -g186,93:7613813,14482849 -(186,93:7613813,14482849:1835010,485622,11795 -k186,93:9448823,14482849:864422 ) -g186,93:11287107,14482849 -g186,93:12145628,14482849 -g186,93:13548098,14482849 -g186,93:16164950,14482849 -g186,93:16164950,14482849 -(186,93:16658333,14482849:501378,78643,0 -$186,93:16658333,14482849 -(186,93:16822187,14482849:173670,78643,0 +(186,95:28190027,18155497:501378,78643,0 +(186,95:28353881,18155497:173670,78643,0 ) -$186,93:17159711,14482849 ) -(186,93:17159711,14482849:501378,78643,0 -(186,93:17323565,14482849:173670,78643,0 +(186,95:28691405,18155497:501378,78643,0 +(186,95:28855259,18155497:173670,78643,0 ) ) -(186,93:17661089,14482849:501378,78643,0 -(186,93:17824943,14482849:173670,78643,0 +(186,95:29192783,18155497:501378,78643,0 +(186,95:29356637,18155497:173670,78643,0 ) ) -(186,93:18162467,14482849:501378,78643,0 -(186,93:18326321,14482849:173670,78643,0 +(186,95:29694161,18155497:501378,78643,0 +(186,95:29858015,18155497:173670,78643,0 ) ) -(186,93:18663845,14482849:501378,78643,0 -(186,93:18827699,14482849:173670,78643,0 +(186,95:30195539,18155497:501378,78643,0 +(186,95:30359393,18155497:173670,78643,0 ) ) -(186,93:19165223,14482849:501378,78643,0 -(186,93:19329077,14482849:173670,78643,0 +(186,95:30696917,18155497:501378,78643,0 +(186,95:30860771,18155497:173670,78643,0 ) ) -(186,93:19666601,14482849:501378,78643,0 -(186,93:19830455,14482849:173670,78643,0 +(186,95:31239539,18155497:1343490,485622,11795 +k186,95:31239539,18155497:0 +k186,95:31387652,18155497:148113 ) +g186,95:30911859,18155497 +g186,95:32583029,18155497 ) -(186,93:20167979,14482849:501378,78643,0 -(186,93:20331833,14482849:173670,78643,0 +(186,96:6630773,19020577:25952256,485622,126483 +g186,96:12529013,19020577 +h186,96:12529013,19020577:3080190,0,0 +h186,96:15609203,19020577:0,0,0 +g186,96:9710963,19020577 +(186,96:9710963,19020577:2818050,485622,11795 +k186,96:12529013,19020577:1275332 ) +g186,96:15720616,19020577 +(186,96:16156955,19020577:501378,78643,0 +$186,96:16156955,19020577 +(186,96:16320809,19020577:173670,78643,0 ) -(186,93:20669357,14482849:501378,78643,0 -(186,93:20833211,14482849:173670,78643,0 +$186,96:16658333,19020577 ) +(186,96:16658333,19020577:501378,78643,0 +(186,96:16822187,19020577:173670,78643,0 ) -(186,93:21170735,14482849:501378,78643,0 -(186,93:21334589,14482849:173670,78643,0 ) +(186,96:17159711,19020577:501378,78643,0 +(186,96:17323565,19020577:173670,78643,0 ) -(186,93:21672113,14482849:501378,78643,0 -(186,93:21835967,14482849:173670,78643,0 ) +(186,96:17661089,19020577:501378,78643,0 +(186,96:17824943,19020577:173670,78643,0 ) -(186,93:22173491,14482849:501378,78643,0 -(186,93:22337345,14482849:173670,78643,0 ) +(186,96:18162467,19020577:501378,78643,0 +(186,96:18326321,19020577:173670,78643,0 ) -(186,93:22674869,14482849:501378,78643,0 -(186,93:22838723,14482849:173670,78643,0 ) +(186,96:18663845,19020577:501378,78643,0 +(186,96:18827699,19020577:173670,78643,0 ) -(186,93:23176247,14482849:501378,78643,0 -(186,93:23340101,14482849:173670,78643,0 ) +(186,96:19165223,19020577:501378,78643,0 +(186,96:19329077,19020577:173670,78643,0 ) -(186,93:23677625,14482849:501378,78643,0 -(186,93:23841479,14482849:173670,78643,0 ) +(186,96:19666601,19020577:501378,78643,0 +(186,96:19830455,19020577:173670,78643,0 ) -(186,93:24179003,14482849:501378,78643,0 -(186,93:24342857,14482849:173670,78643,0 ) +(186,96:20167979,19020577:501378,78643,0 +(186,96:20331833,19020577:173670,78643,0 ) -(186,93:24680381,14482849:501378,78643,0 -(186,93:24844235,14482849:173670,78643,0 ) +(186,96:20669357,19020577:501378,78643,0 +(186,96:20833211,19020577:173670,78643,0 ) -(186,93:25181759,14482849:501378,78643,0 -(186,93:25345613,14482849:173670,78643,0 ) +(186,96:21170735,19020577:501378,78643,0 +(186,96:21334589,19020577:173670,78643,0 ) -(186,93:25683137,14482849:501378,78643,0 -(186,93:25846991,14482849:173670,78643,0 ) +(186,96:21672113,19020577:501378,78643,0 +(186,96:21835967,19020577:173670,78643,0 ) -(186,93:26184515,14482849:501378,78643,0 -(186,93:26348369,14482849:173670,78643,0 ) +(186,96:22173491,19020577:501378,78643,0 +(186,96:22337345,19020577:173670,78643,0 ) -(186,93:26685893,14482849:501378,78643,0 -(186,93:26849747,14482849:173670,78643,0 ) +(186,96:22674869,19020577:501378,78643,0 +(186,96:22838723,19020577:173670,78643,0 ) -(186,93:27187271,14482849:501378,78643,0 -(186,93:27351125,14482849:173670,78643,0 ) +(186,96:23176247,19020577:501378,78643,0 +(186,96:23340101,19020577:173670,78643,0 ) -(186,93:27688649,14482849:501378,78643,0 -(186,93:27852503,14482849:173670,78643,0 ) +(186,96:23677625,19020577:501378,78643,0 +(186,96:23841479,19020577:173670,78643,0 ) -(186,93:28190027,14482849:501378,78643,0 -(186,93:28353881,14482849:173670,78643,0 ) +(186,96:24179003,19020577:501378,78643,0 +(186,96:24342857,19020577:173670,78643,0 ) -(186,93:28691405,14482849:501378,78643,0 -(186,93:28855259,14482849:173670,78643,0 ) +(186,96:24680381,19020577:501378,78643,0 +(186,96:24844235,19020577:173670,78643,0 ) -(186,93:29192783,14482849:501378,78643,0 -(186,93:29356637,14482849:173670,78643,0 ) +(186,96:25181759,19020577:501378,78643,0 +(186,96:25345613,19020577:173670,78643,0 ) -(186,93:29694161,14482849:501378,78643,0 -(186,93:29858015,14482849:173670,78643,0 ) +(186,96:25683137,19020577:501378,78643,0 +(186,96:25846991,19020577:173670,78643,0 ) -(186,93:30195539,14482849:501378,78643,0 -(186,93:30359393,14482849:173670,78643,0 ) +(186,96:26184515,19020577:501378,78643,0 +(186,96:26348369,19020577:173670,78643,0 ) -(186,93:30696917,14482849:501378,78643,0 -(186,93:30860771,14482849:173670,78643,0 ) +(186,96:26685893,19020577:501378,78643,0 +(186,96:26849747,19020577:173670,78643,0 ) -(186,93:31239539,14482849:1343490,485622,11795 -k186,93:31239539,14482849:0 -k186,93:31387652,14482849:148113 ) -g186,93:30911859,14482849 -g186,93:32583029,14482849 +(186,96:27187271,19020577:501378,78643,0 +(186,96:27351125,19020577:173670,78643,0 ) -(186,94:6630773,15324337:25952256,513147,134348 -g186,94:9448823,15324337 -h186,94:9448823,15324337:983040,0,0 -h186,94:10431863,15324337:0,0,0 -g186,94:7613813,15324337 -(186,94:7613813,15324337:1835010,485622,11795 -k186,94:9448823,15324337:864422 ) -g186,94:12334373,15324337 -g186,94:15559399,15324337 -g186,94:16950073,15324337 -g186,94:20226217,15324337 -g186,94:20226217,15324337 -(186,94:20669357,15324337:501378,78643,0 -$186,94:20669357,15324337 -(186,94:20833211,15324337:173670,78643,0 +(186,96:27688649,19020577:501378,78643,0 +(186,96:27852503,19020577:173670,78643,0 ) -$186,94:21170735,15324337 ) -(186,94:21170735,15324337:501378,78643,0 -(186,94:21334589,15324337:173670,78643,0 +(186,96:28190027,19020577:501378,78643,0 +(186,96:28353881,19020577:173670,78643,0 ) ) -(186,94:21672113,15324337:501378,78643,0 -(186,94:21835967,15324337:173670,78643,0 +(186,96:28691405,19020577:501378,78643,0 +(186,96:28855259,19020577:173670,78643,0 ) ) -(186,94:22173491,15324337:501378,78643,0 -(186,94:22337345,15324337:173670,78643,0 +(186,96:29192783,19020577:501378,78643,0 +(186,96:29356637,19020577:173670,78643,0 ) ) -(186,94:22674869,15324337:501378,78643,0 -(186,94:22838723,15324337:173670,78643,0 +(186,96:29694161,19020577:501378,78643,0 +(186,96:29858015,19020577:173670,78643,0 ) ) -(186,94:23176247,15324337:501378,78643,0 -(186,94:23340101,15324337:173670,78643,0 +(186,96:30195539,19020577:501378,78643,0 +(186,96:30359393,19020577:173670,78643,0 ) ) -(186,94:23677625,15324337:501378,78643,0 -(186,94:23841479,15324337:173670,78643,0 +(186,96:30696917,19020577:501378,78643,0 +(186,96:30860771,19020577:173670,78643,0 ) ) -(186,94:24179003,15324337:501378,78643,0 -(186,94:24342857,15324337:173670,78643,0 +(186,96:31239539,19020577:1343490,485622,11795 +k186,96:31239539,19020577:0 +k186,96:31387652,19020577:148113 ) +g186,96:30911859,19020577 +g186,96:32583029,19020577 ) -(186,94:24680381,15324337:501378,78643,0 -(186,94:24844235,15324337:173670,78643,0 +(186,97:6630773,19885657:25952256,505283,134348 +g186,97:9710963,19885657 +h186,97:9710963,19885657:983040,0,0 +h186,97:10694003,19885657:0,0,0 +g186,97:7613813,19885657 +(186,97:7613813,19885657:2097150,485622,11795 +k186,97:9710963,19885657:1126562 ) +g186,97:12488378,19885657 +g186,97:15094089,19885657 +g186,97:16484763,19885657 +g186,97:19468617,19885657 +g186,97:19468617,19885657 +(186,97:19666601,19885657:501378,78643,0 +$186,97:19666601,19885657 +(186,97:19830455,19885657:173670,78643,0 ) -(186,94:25181759,15324337:501378,78643,0 -(186,94:25345613,15324337:173670,78643,0 +$186,97:20167979,19885657 ) +(186,97:20167979,19885657:501378,78643,0 +(186,97:20331833,19885657:173670,78643,0 ) -(186,94:25683137,15324337:501378,78643,0 -(186,94:25846991,15324337:173670,78643,0 ) +(186,97:20669357,19885657:501378,78643,0 +(186,97:20833211,19885657:173670,78643,0 ) -(186,94:26184515,15324337:501378,78643,0 -(186,94:26348369,15324337:173670,78643,0 ) +(186,97:21170735,19885657:501378,78643,0 +(186,97:21334589,19885657:173670,78643,0 ) -(186,94:26685893,15324337:501378,78643,0 -(186,94:26849747,15324337:173670,78643,0 ) +(186,97:21672113,19885657:501378,78643,0 +(186,97:21835967,19885657:173670,78643,0 ) -(186,94:27187271,15324337:501378,78643,0 -(186,94:27351125,15324337:173670,78643,0 ) +(186,97:22173491,19885657:501378,78643,0 +(186,97:22337345,19885657:173670,78643,0 ) -(186,94:27688649,15324337:501378,78643,0 -(186,94:27852503,15324337:173670,78643,0 ) +(186,97:22674869,19885657:501378,78643,0 +(186,97:22838723,19885657:173670,78643,0 ) -(186,94:28190027,15324337:501378,78643,0 -(186,94:28353881,15324337:173670,78643,0 ) +(186,97:23176247,19885657:501378,78643,0 +(186,97:23340101,19885657:173670,78643,0 ) -(186,94:28691405,15324337:501378,78643,0 -(186,94:28855259,15324337:173670,78643,0 ) +(186,97:23677625,19885657:501378,78643,0 +(186,97:23841479,19885657:173670,78643,0 ) -(186,94:29192783,15324337:501378,78643,0 -(186,94:29356637,15324337:173670,78643,0 ) +(186,97:24179003,19885657:501378,78643,0 +(186,97:24342857,19885657:173670,78643,0 ) -(186,94:29694161,15324337:501378,78643,0 -(186,94:29858015,15324337:173670,78643,0 ) +(186,97:24680381,19885657:501378,78643,0 +(186,97:24844235,19885657:173670,78643,0 ) -(186,94:30195539,15324337:501378,78643,0 -(186,94:30359393,15324337:173670,78643,0 ) +(186,97:25181759,19885657:501378,78643,0 +(186,97:25345613,19885657:173670,78643,0 ) -(186,94:30696917,15324337:501378,78643,0 -(186,94:30860771,15324337:173670,78643,0 ) +(186,97:25683137,19885657:501378,78643,0 +(186,97:25846991,19885657:173670,78643,0 ) -(186,94:31239539,15324337:1343490,485622,11795 -k186,94:31239539,15324337:0 -k186,94:31387652,15324337:148113 ) -g186,94:30911859,15324337 -g186,94:32583029,15324337 +(186,97:26184515,19885657:501378,78643,0 +(186,97:26348369,19885657:173670,78643,0 ) -(186,95:6630773,16165825:25952256,513147,126483 -g186,95:11873653,16165825 -h186,95:11873653,16165825:2818050,0,0 -h186,95:14691703,16165825:0,0,0 -g186,95:9448823,16165825 -(186,95:9448823,16165825:2424830,485622,11795 -k186,95:11873653,16165825:882112 ) -g186,95:14912557,16165825 -g186,95:17938354,16165825 -(186,95:18162467,16165825:501378,78643,0 -$186,95:18162467,16165825 -(186,95:18326321,16165825:173670,78643,0 +(186,97:26685893,19885657:501378,78643,0 +(186,97:26849747,19885657:173670,78643,0 ) -$186,95:18663845,16165825 ) -(186,95:18663845,16165825:501378,78643,0 -(186,95:18827699,16165825:173670,78643,0 +(186,97:27187271,19885657:501378,78643,0 +(186,97:27351125,19885657:173670,78643,0 ) ) -(186,95:19165223,16165825:501378,78643,0 -(186,95:19329077,16165825:173670,78643,0 +(186,97:27688649,19885657:501378,78643,0 +(186,97:27852503,19885657:173670,78643,0 ) ) -(186,95:19666601,16165825:501378,78643,0 -(186,95:19830455,16165825:173670,78643,0 +(186,97:28190027,19885657:501378,78643,0 +(186,97:28353881,19885657:173670,78643,0 ) ) -(186,95:20167979,16165825:501378,78643,0 -(186,95:20331833,16165825:173670,78643,0 +(186,97:28691405,19885657:501378,78643,0 +(186,97:28855259,19885657:173670,78643,0 ) ) -(186,95:20669357,16165825:501378,78643,0 -(186,95:20833211,16165825:173670,78643,0 +(186,97:29192783,19885657:501378,78643,0 +(186,97:29356637,19885657:173670,78643,0 ) ) -(186,95:21170735,16165825:501378,78643,0 -(186,95:21334589,16165825:173670,78643,0 +(186,97:29694161,19885657:501378,78643,0 +(186,97:29858015,19885657:173670,78643,0 ) ) -(186,95:21672113,16165825:501378,78643,0 -(186,95:21835967,16165825:173670,78643,0 +(186,97:30195539,19885657:501378,78643,0 +(186,97:30359393,19885657:173670,78643,0 ) ) -(186,95:22173491,16165825:501378,78643,0 -(186,95:22337345,16165825:173670,78643,0 +(186,97:30696917,19885657:501378,78643,0 +(186,97:30860771,19885657:173670,78643,0 ) ) -(186,95:22674869,16165825:501378,78643,0 -(186,95:22838723,16165825:173670,78643,0 +(186,97:31239539,19885657:1343490,485622,11795 +k186,97:31239539,19885657:0 +k186,97:31387652,19885657:148113 ) +g186,97:30911859,19885657 +g186,97:32583029,19885657 ) -(186,95:23176247,16165825:501378,78643,0 -(186,95:23340101,16165825:173670,78643,0 +(186,98:6630773,20750737:25952256,513147,126483 +g186,98:9710963,20750737 +h186,98:9710963,20750737:983040,0,0 +h186,98:10694003,20750737:0,0,0 +g186,98:7613813,20750737 +(186,98:7613813,20750737:2097150,485622,11795 +k186,98:9710963,20750737:1126562 ) +g186,98:11761584,20750737 +g186,98:12620105,20750737 +g186,98:14887650,20750737 +g186,98:14887650,20750737 +(186,98:15154199,20750737:501378,78643,0 +$186,98:15154199,20750737 +(186,98:15318053,20750737:173670,78643,0 ) -(186,95:23677625,16165825:501378,78643,0 -(186,95:23841479,16165825:173670,78643,0 +$186,98:15655577,20750737 ) +(186,98:15655577,20750737:501378,78643,0 +(186,98:15819431,20750737:173670,78643,0 ) -(186,95:24179003,16165825:501378,78643,0 -(186,95:24342857,16165825:173670,78643,0 ) +(186,98:16156955,20750737:501378,78643,0 +(186,98:16320809,20750737:173670,78643,0 ) -(186,95:24680381,16165825:501378,78643,0 -(186,95:24844235,16165825:173670,78643,0 ) +(186,98:16658333,20750737:501378,78643,0 +(186,98:16822187,20750737:173670,78643,0 ) -(186,95:25181759,16165825:501378,78643,0 -(186,95:25345613,16165825:173670,78643,0 ) +(186,98:17159711,20750737:501378,78643,0 +(186,98:17323565,20750737:173670,78643,0 ) -(186,95:25683137,16165825:501378,78643,0 -(186,95:25846991,16165825:173670,78643,0 ) +(186,98:17661089,20750737:501378,78643,0 +(186,98:17824943,20750737:173670,78643,0 ) -(186,95:26184515,16165825:501378,78643,0 -(186,95:26348369,16165825:173670,78643,0 ) +(186,98:18162467,20750737:501378,78643,0 +(186,98:18326321,20750737:173670,78643,0 ) -(186,95:26685893,16165825:501378,78643,0 -(186,95:26849747,16165825:173670,78643,0 ) +(186,98:18663845,20750737:501378,78643,0 +(186,98:18827699,20750737:173670,78643,0 ) -(186,95:27187271,16165825:501378,78643,0 -(186,95:27351125,16165825:173670,78643,0 ) +(186,98:19165223,20750737:501378,78643,0 +(186,98:19329077,20750737:173670,78643,0 ) -(186,95:27688649,16165825:501378,78643,0 -(186,95:27852503,16165825:173670,78643,0 ) +(186,98:19666601,20750737:501378,78643,0 +(186,98:19830455,20750737:173670,78643,0 ) -(186,95:28190027,16165825:501378,78643,0 -(186,95:28353881,16165825:173670,78643,0 ) +(186,98:20167979,20750737:501378,78643,0 +(186,98:20331833,20750737:173670,78643,0 ) -(186,95:28691405,16165825:501378,78643,0 -(186,95:28855259,16165825:173670,78643,0 ) +(186,98:20669357,20750737:501378,78643,0 +(186,98:20833211,20750737:173670,78643,0 ) -(186,95:29192783,16165825:501378,78643,0 -(186,95:29356637,16165825:173670,78643,0 ) +(186,98:21170735,20750737:501378,78643,0 +(186,98:21334589,20750737:173670,78643,0 ) -(186,95:29694161,16165825:501378,78643,0 -(186,95:29858015,16165825:173670,78643,0 ) +(186,98:21672113,20750737:501378,78643,0 +(186,98:21835967,20750737:173670,78643,0 ) -(186,95:30195539,16165825:501378,78643,0 -(186,95:30359393,16165825:173670,78643,0 ) +(186,98:22173491,20750737:501378,78643,0 +(186,98:22337345,20750737:173670,78643,0 ) -(186,95:30696917,16165825:501378,78643,0 -(186,95:30860771,16165825:173670,78643,0 ) +(186,98:22674869,20750737:501378,78643,0 +(186,98:22838723,20750737:173670,78643,0 ) -(186,95:31239539,16165825:1343490,477757,0 -k186,95:31239539,16165825:0 -k186,95:31387652,16165825:148113 ) -g186,95:30911859,16165825 -g186,95:32583029,16165825 +(186,98:23176247,20750737:501378,78643,0 +(186,98:23340101,20750737:173670,78643,0 ) -(186,96:6630773,17007313:25952256,485622,126483 -g186,96:11873653,17007313 -h186,96:11873653,17007313:2818050,0,0 -h186,96:14691703,17007313:0,0,0 -g186,96:9448823,17007313 -(186,96:9448823,17007313:2424830,485622,11795 -k186,96:11873653,17007313:882112 ) -g186,96:15065256,17007313 -(186,96:15154199,17007313:501378,78643,0 -$186,96:15154199,17007313 -(186,96:15318053,17007313:173670,78643,0 +(186,98:23677625,20750737:501378,78643,0 +(186,98:23841479,20750737:173670,78643,0 ) -$186,96:15655577,17007313 ) -(186,96:15655577,17007313:501378,78643,0 -(186,96:15819431,17007313:173670,78643,0 +(186,98:24179003,20750737:501378,78643,0 +(186,98:24342857,20750737:173670,78643,0 ) ) -(186,96:16156955,17007313:501378,78643,0 -(186,96:16320809,17007313:173670,78643,0 +(186,98:24680381,20750737:501378,78643,0 +(186,98:24844235,20750737:173670,78643,0 ) ) -(186,96:16658333,17007313:501378,78643,0 -(186,96:16822187,17007313:173670,78643,0 +(186,98:25181759,20750737:501378,78643,0 +(186,98:25345613,20750737:173670,78643,0 ) ) -(186,96:17159711,17007313:501378,78643,0 -(186,96:17323565,17007313:173670,78643,0 +(186,98:25683137,20750737:501378,78643,0 +(186,98:25846991,20750737:173670,78643,0 ) ) -(186,96:17661089,17007313:501378,78643,0 -(186,96:17824943,17007313:173670,78643,0 +(186,98:26184515,20750737:501378,78643,0 +(186,98:26348369,20750737:173670,78643,0 ) ) -(186,96:18162467,17007313:501378,78643,0 -(186,96:18326321,17007313:173670,78643,0 +(186,98:26685893,20750737:501378,78643,0 +(186,98:26849747,20750737:173670,78643,0 ) ) -(186,96:18663845,17007313:501378,78643,0 -(186,96:18827699,17007313:173670,78643,0 +(186,98:27187271,20750737:501378,78643,0 +(186,98:27351125,20750737:173670,78643,0 ) ) -(186,96:19165223,17007313:501378,78643,0 -(186,96:19329077,17007313:173670,78643,0 +(186,98:27688649,20750737:501378,78643,0 +(186,98:27852503,20750737:173670,78643,0 ) ) -(186,96:19666601,17007313:501378,78643,0 -(186,96:19830455,17007313:173670,78643,0 +(186,98:28190027,20750737:501378,78643,0 +(186,98:28353881,20750737:173670,78643,0 ) ) -(186,96:20167979,17007313:501378,78643,0 -(186,96:20331833,17007313:173670,78643,0 +(186,98:28691405,20750737:501378,78643,0 +(186,98:28855259,20750737:173670,78643,0 ) ) -(186,96:20669357,17007313:501378,78643,0 -(186,96:20833211,17007313:173670,78643,0 +(186,98:29192783,20750737:501378,78643,0 +(186,98:29356637,20750737:173670,78643,0 ) ) -(186,96:21170735,17007313:501378,78643,0 -(186,96:21334589,17007313:173670,78643,0 +(186,98:29694161,20750737:501378,78643,0 +(186,98:29858015,20750737:173670,78643,0 ) ) -(186,96:21672113,17007313:501378,78643,0 -(186,96:21835967,17007313:173670,78643,0 +(186,98:30195539,20750737:501378,78643,0 +(186,98:30359393,20750737:173670,78643,0 ) ) -(186,96:22173491,17007313:501378,78643,0 -(186,96:22337345,17007313:173670,78643,0 +(186,98:30696917,20750737:501378,78643,0 +(186,98:30860771,20750737:173670,78643,0 ) ) -(186,96:22674869,17007313:501378,78643,0 -(186,96:22838723,17007313:173670,78643,0 +(186,98:31239539,20750737:1343490,477757,0 +k186,98:31239539,20750737:0 +k186,98:31387652,20750737:148113 ) +g186,98:30911859,20750737 +g186,98:32583029,20750737 ) -(186,96:23176247,17007313:501378,78643,0 -(186,96:23340101,17007313:173670,78643,0 +(186,99:6630773,21615817:25952256,505283,134348 +g186,99:9710963,21615817 +h186,99:9710963,21615817:983040,0,0 +h186,99:10694003,21615817:0,0,0 +g186,99:7613813,21615817 +(186,99:7613813,21615817:2097150,485622,11795 +k186,99:9710963,21615817:1126562 ) +g186,99:12775426,21615817 +g186,99:12775426,21615817 +(186,99:13148687,21615817:501378,78643,0 +$186,99:13148687,21615817 +(186,99:13312541,21615817:173670,78643,0 ) -(186,96:23677625,17007313:501378,78643,0 -(186,96:23841479,17007313:173670,78643,0 +$186,99:13650065,21615817 ) +(186,99:13650065,21615817:501378,78643,0 +(186,99:13813919,21615817:173670,78643,0 ) -(186,96:24179003,17007313:501378,78643,0 -(186,96:24342857,17007313:173670,78643,0 ) +(186,99:14151443,21615817:501378,78643,0 +(186,99:14315297,21615817:173670,78643,0 ) -(186,96:24680381,17007313:501378,78643,0 -(186,96:24844235,17007313:173670,78643,0 ) +(186,99:14652821,21615817:501378,78643,0 +(186,99:14816675,21615817:173670,78643,0 ) -(186,96:25181759,17007313:501378,78643,0 -(186,96:25345613,17007313:173670,78643,0 ) +(186,99:15154199,21615817:501378,78643,0 +(186,99:15318053,21615817:173670,78643,0 ) -(186,96:25683137,17007313:501378,78643,0 -(186,96:25846991,17007313:173670,78643,0 ) +(186,99:15655577,21615817:501378,78643,0 +(186,99:15819431,21615817:173670,78643,0 ) -(186,96:26184515,17007313:501378,78643,0 -(186,96:26348369,17007313:173670,78643,0 ) +(186,99:16156955,21615817:501378,78643,0 +(186,99:16320809,21615817:173670,78643,0 ) -(186,96:26685893,17007313:501378,78643,0 -(186,96:26849747,17007313:173670,78643,0 ) +(186,99:16658333,21615817:501378,78643,0 +(186,99:16822187,21615817:173670,78643,0 ) -(186,96:27187271,17007313:501378,78643,0 -(186,96:27351125,17007313:173670,78643,0 ) +(186,99:17159711,21615817:501378,78643,0 +(186,99:17323565,21615817:173670,78643,0 ) -(186,96:27688649,17007313:501378,78643,0 -(186,96:27852503,17007313:173670,78643,0 ) +(186,99:17661089,21615817:501378,78643,0 +(186,99:17824943,21615817:173670,78643,0 ) -(186,96:28190027,17007313:501378,78643,0 -(186,96:28353881,17007313:173670,78643,0 ) +(186,99:18162467,21615817:501378,78643,0 +(186,99:18326321,21615817:173670,78643,0 ) -(186,96:28691405,17007313:501378,78643,0 -(186,96:28855259,17007313:173670,78643,0 ) +(186,99:18663845,21615817:501378,78643,0 +(186,99:18827699,21615817:173670,78643,0 ) -(186,96:29192783,17007313:501378,78643,0 -(186,96:29356637,17007313:173670,78643,0 ) +(186,99:19165223,21615817:501378,78643,0 +(186,99:19329077,21615817:173670,78643,0 ) -(186,96:29694161,17007313:501378,78643,0 -(186,96:29858015,17007313:173670,78643,0 ) +(186,99:19666601,21615817:501378,78643,0 +(186,99:19830455,21615817:173670,78643,0 ) -(186,96:30195539,17007313:501378,78643,0 -(186,96:30359393,17007313:173670,78643,0 ) +(186,99:20167979,21615817:501378,78643,0 +(186,99:20331833,21615817:173670,78643,0 ) -(186,96:30696917,17007313:501378,78643,0 -(186,96:30860771,17007313:173670,78643,0 ) +(186,99:20669357,21615817:501378,78643,0 +(186,99:20833211,21615817:173670,78643,0 ) -(186,96:31239539,17007313:1343490,481690,0 -k186,96:31239539,17007313:0 -k186,96:31387652,17007313:148113 ) -g186,96:30911859,17007313 -g186,96:32583029,17007313 +(186,99:21170735,21615817:501378,78643,0 +(186,99:21334589,21615817:173670,78643,0 ) -(186,97:6630773,17848801:25952256,505283,134348 -g186,97:9448823,17848801 -h186,97:9448823,17848801:983040,0,0 -h186,97:10431863,17848801:0,0,0 -g186,97:7613813,17848801 -(186,97:7613813,17848801:1835010,485622,11795 -k186,97:9448823,17848801:864422 ) -g186,97:12226238,17848801 -g186,97:14831949,17848801 -g186,97:16222623,17848801 -g186,97:19206477,17848801 -g186,97:19206477,17848801 -(186,97:19666601,17848801:501378,78643,0 -$186,97:19666601,17848801 -(186,97:19830455,17848801:173670,78643,0 +(186,99:21672113,21615817:501378,78643,0 +(186,99:21835967,21615817:173670,78643,0 ) -$186,97:20167979,17848801 ) -(186,97:20167979,17848801:501378,78643,0 -(186,97:20331833,17848801:173670,78643,0 +(186,99:22173491,21615817:501378,78643,0 +(186,99:22337345,21615817:173670,78643,0 ) ) -(186,97:20669357,17848801:501378,78643,0 -(186,97:20833211,17848801:173670,78643,0 +(186,99:22674869,21615817:501378,78643,0 +(186,99:22838723,21615817:173670,78643,0 ) ) -(186,97:21170735,17848801:501378,78643,0 -(186,97:21334589,17848801:173670,78643,0 +(186,99:23176247,21615817:501378,78643,0 +(186,99:23340101,21615817:173670,78643,0 ) ) -(186,97:21672113,17848801:501378,78643,0 -(186,97:21835967,17848801:173670,78643,0 +(186,99:23677625,21615817:501378,78643,0 +(186,99:23841479,21615817:173670,78643,0 ) ) -(186,97:22173491,17848801:501378,78643,0 -(186,97:22337345,17848801:173670,78643,0 +(186,99:24179003,21615817:501378,78643,0 +(186,99:24342857,21615817:173670,78643,0 ) ) -(186,97:22674869,17848801:501378,78643,0 -(186,97:22838723,17848801:173670,78643,0 +(186,99:24680381,21615817:501378,78643,0 +(186,99:24844235,21615817:173670,78643,0 ) ) -(186,97:23176247,17848801:501378,78643,0 -(186,97:23340101,17848801:173670,78643,0 +(186,99:25181759,21615817:501378,78643,0 +(186,99:25345613,21615817:173670,78643,0 ) ) -(186,97:23677625,17848801:501378,78643,0 -(186,97:23841479,17848801:173670,78643,0 +(186,99:25683137,21615817:501378,78643,0 +(186,99:25846991,21615817:173670,78643,0 ) ) -(186,97:24179003,17848801:501378,78643,0 -(186,97:24342857,17848801:173670,78643,0 +(186,99:26184515,21615817:501378,78643,0 +(186,99:26348369,21615817:173670,78643,0 ) ) -(186,97:24680381,17848801:501378,78643,0 -(186,97:24844235,17848801:173670,78643,0 +(186,99:26685893,21615817:501378,78643,0 +(186,99:26849747,21615817:173670,78643,0 ) ) -(186,97:25181759,17848801:501378,78643,0 -(186,97:25345613,17848801:173670,78643,0 +(186,99:27187271,21615817:501378,78643,0 +(186,99:27351125,21615817:173670,78643,0 ) ) -(186,97:25683137,17848801:501378,78643,0 -(186,97:25846991,17848801:173670,78643,0 +(186,99:27688649,21615817:501378,78643,0 +(186,99:27852503,21615817:173670,78643,0 ) ) -(186,97:26184515,17848801:501378,78643,0 -(186,97:26348369,17848801:173670,78643,0 +(186,99:28190027,21615817:501378,78643,0 +(186,99:28353881,21615817:173670,78643,0 ) ) -(186,97:26685893,17848801:501378,78643,0 -(186,97:26849747,17848801:173670,78643,0 +(186,99:28691405,21615817:501378,78643,0 +(186,99:28855259,21615817:173670,78643,0 ) ) -(186,97:27187271,17848801:501378,78643,0 -(186,97:27351125,17848801:173670,78643,0 +(186,99:29192783,21615817:501378,78643,0 +(186,99:29356637,21615817:173670,78643,0 ) ) -(186,97:27688649,17848801:501378,78643,0 -(186,97:27852503,17848801:173670,78643,0 +(186,99:29694161,21615817:501378,78643,0 +(186,99:29858015,21615817:173670,78643,0 ) ) -(186,97:28190027,17848801:501378,78643,0 -(186,97:28353881,17848801:173670,78643,0 +(186,99:30195539,21615817:501378,78643,0 +(186,99:30359393,21615817:173670,78643,0 ) ) -(186,97:28691405,17848801:501378,78643,0 -(186,97:28855259,17848801:173670,78643,0 +(186,99:30696917,21615817:501378,78643,0 +(186,99:30860771,21615817:173670,78643,0 ) ) -(186,97:29192783,17848801:501378,78643,0 -(186,97:29356637,17848801:173670,78643,0 +(186,99:31239538,21615817:1343490,485622,0 +k186,99:31239538,21615817:0 +k186,99:31387651,21615817:148113 ) +g186,99:30911858,21615817 +g186,99:32583028,21615817 ) -(186,97:29694161,17848801:501378,78643,0 -(186,97:29858015,17848801:173670,78643,0 +(186,100:6630773,22480897:25952256,513147,134348 +g186,100:12529013,22480897 +h186,100:12529013,22480897:3080190,0,0 +h186,100:15609203,22480897:0,0,0 +g186,100:9710963,22480897 +(186,100:9710963,22480897:2818050,485622,11795 +k186,100:12529013,22480897:1275332 ) +g186,100:15132758,22480897 +g186,100:15999143,22480897 +g186,100:19668503,22480897 +g186,100:23071132,22480897 +(186,100:23176247,22480897:501378,78643,0 +$186,100:23176247,22480897 +(186,100:23340101,22480897:173670,78643,0 ) -(186,97:30195539,17848801:501378,78643,0 -(186,97:30359393,17848801:173670,78643,0 +$186,100:23677625,22480897 ) +(186,100:23677625,22480897:501378,78643,0 +(186,100:23841479,22480897:173670,78643,0 ) -(186,97:30696917,17848801:501378,78643,0 -(186,97:30860771,17848801:173670,78643,0 ) +(186,100:24179003,22480897:501378,78643,0 +(186,100:24342857,22480897:173670,78643,0 ) -(186,97:31239539,17848801:1343490,477757,11795 -k186,97:31239539,17848801:0 -k186,97:31387652,17848801:148113 ) -g186,97:30911859,17848801 -g186,97:32583029,17848801 +(186,100:24680381,22480897:501378,78643,0 +(186,100:24844235,22480897:173670,78643,0 ) -(186,98:6630773,18690289:25952256,513147,126483 -g186,98:9448823,18690289 -h186,98:9448823,18690289:983040,0,0 -h186,98:10431863,18690289:0,0,0 -g186,98:7613813,18690289 -(186,98:7613813,18690289:1835010,485622,11795 -k186,98:9448823,18690289:864422 ) -g186,98:11499444,18690289 -g186,98:12357965,18690289 -g186,98:14625510,18690289 -g186,98:14625510,18690289 -(186,98:14652821,18690289:501378,78643,0 -$186,98:14652821,18690289 -(186,98:14816675,18690289:173670,78643,0 +(186,100:25181759,22480897:501378,78643,0 +(186,100:25345613,22480897:173670,78643,0 ) -$186,98:15154199,18690289 ) -(186,98:15154199,18690289:501378,78643,0 -(186,98:15318053,18690289:173670,78643,0 +(186,100:25683137,22480897:501378,78643,0 +(186,100:25846991,22480897:173670,78643,0 ) ) -(186,98:15655577,18690289:501378,78643,0 -(186,98:15819431,18690289:173670,78643,0 +(186,100:26184515,22480897:501378,78643,0 +(186,100:26348369,22480897:173670,78643,0 ) ) -(186,98:16156955,18690289:501378,78643,0 -(186,98:16320809,18690289:173670,78643,0 +(186,100:26685893,22480897:501378,78643,0 +(186,100:26849747,22480897:173670,78643,0 ) ) -(186,98:16658333,18690289:501378,78643,0 -(186,98:16822187,18690289:173670,78643,0 +(186,100:27187271,22480897:501378,78643,0 +(186,100:27351125,22480897:173670,78643,0 ) ) -(186,98:17159711,18690289:501378,78643,0 -(186,98:17323565,18690289:173670,78643,0 +(186,100:27688649,22480897:501378,78643,0 +(186,100:27852503,22480897:173670,78643,0 ) ) -(186,98:17661089,18690289:501378,78643,0 -(186,98:17824943,18690289:173670,78643,0 +(186,100:28190027,22480897:501378,78643,0 +(186,100:28353881,22480897:173670,78643,0 ) ) -(186,98:18162467,18690289:501378,78643,0 -(186,98:18326321,18690289:173670,78643,0 +(186,100:28691405,22480897:501378,78643,0 +(186,100:28855259,22480897:173670,78643,0 ) ) -(186,98:18663845,18690289:501378,78643,0 -(186,98:18827699,18690289:173670,78643,0 +(186,100:29192783,22480897:501378,78643,0 +(186,100:29356637,22480897:173670,78643,0 ) ) -(186,98:19165223,18690289:501378,78643,0 -(186,98:19329077,18690289:173670,78643,0 +(186,100:29694161,22480897:501378,78643,0 +(186,100:29858015,22480897:173670,78643,0 ) ) -(186,98:19666601,18690289:501378,78643,0 -(186,98:19830455,18690289:173670,78643,0 +(186,100:30195539,22480897:501378,78643,0 +(186,100:30359393,22480897:173670,78643,0 ) ) -(186,98:20167979,18690289:501378,78643,0 -(186,98:20331833,18690289:173670,78643,0 +(186,100:30696917,22480897:501378,78643,0 +(186,100:30860771,22480897:173670,78643,0 ) ) -(186,98:20669357,18690289:501378,78643,0 -(186,98:20833211,18690289:173670,78643,0 +(186,100:31239539,22480897:1343490,485622,0 +k186,100:31239539,22480897:0 +k186,100:31387652,22480897:148113 ) +g186,100:30911859,22480897 +g186,100:32583029,22480897 ) -(186,98:21170735,18690289:501378,78643,0 -(186,98:21334589,18690289:173670,78643,0 +(186,101:6630773,23345977:25952256,505283,102891 +g186,101:12529013,23345977 +h186,101:12529013,23345977:3080190,0,0 +h186,101:15609203,23345977:0,0,0 +g186,101:9710963,23345977 +(186,101:9710963,23345977:2818050,485622,11795 +k186,101:12529013,23345977:1275332 ) +g186,101:16111866,23345977 +g186,101:19903779,23345977 +g186,101:21294453,23345977 +g186,101:22386938,23345977 +(186,101:22674869,23345977:501378,78643,0 +$186,101:22674869,23345977 +(186,101:22838723,23345977:173670,78643,0 ) -(186,98:21672113,18690289:501378,78643,0 -(186,98:21835967,18690289:173670,78643,0 +$186,101:23176247,23345977 ) +(186,101:23176247,23345977:501378,78643,0 +(186,101:23340101,23345977:173670,78643,0 ) -(186,98:22173491,18690289:501378,78643,0 -(186,98:22337345,18690289:173670,78643,0 ) +(186,101:23677625,23345977:501378,78643,0 +(186,101:23841479,23345977:173670,78643,0 ) -(186,98:22674869,18690289:501378,78643,0 -(186,98:22838723,18690289:173670,78643,0 ) +(186,101:24179003,23345977:501378,78643,0 +(186,101:24342857,23345977:173670,78643,0 ) -(186,98:23176247,18690289:501378,78643,0 -(186,98:23340101,18690289:173670,78643,0 ) +(186,101:24680381,23345977:501378,78643,0 +(186,101:24844235,23345977:173670,78643,0 ) -(186,98:23677625,18690289:501378,78643,0 -(186,98:23841479,18690289:173670,78643,0 ) +(186,101:25181759,23345977:501378,78643,0 +(186,101:25345613,23345977:173670,78643,0 ) -(186,98:24179003,18690289:501378,78643,0 -(186,98:24342857,18690289:173670,78643,0 ) +(186,101:25683137,23345977:501378,78643,0 +(186,101:25846991,23345977:173670,78643,0 ) -(186,98:24680381,18690289:501378,78643,0 -(186,98:24844235,18690289:173670,78643,0 ) +(186,101:26184515,23345977:501378,78643,0 +(186,101:26348369,23345977:173670,78643,0 ) -(186,98:25181759,18690289:501378,78643,0 -(186,98:25345613,18690289:173670,78643,0 ) +(186,101:26685893,23345977:501378,78643,0 +(186,101:26849747,23345977:173670,78643,0 ) -(186,98:25683137,18690289:501378,78643,0 -(186,98:25846991,18690289:173670,78643,0 ) +(186,101:27187271,23345977:501378,78643,0 +(186,101:27351125,23345977:173670,78643,0 ) -(186,98:26184515,18690289:501378,78643,0 -(186,98:26348369,18690289:173670,78643,0 ) +(186,101:27688649,23345977:501378,78643,0 +(186,101:27852503,23345977:173670,78643,0 ) -(186,98:26685893,18690289:501378,78643,0 -(186,98:26849747,18690289:173670,78643,0 ) +(186,101:28190027,23345977:501378,78643,0 +(186,101:28353881,23345977:173670,78643,0 ) -(186,98:27187271,18690289:501378,78643,0 -(186,98:27351125,18690289:173670,78643,0 ) +(186,101:28691405,23345977:501378,78643,0 +(186,101:28855259,23345977:173670,78643,0 ) -(186,98:27688649,18690289:501378,78643,0 -(186,98:27852503,18690289:173670,78643,0 ) +(186,101:29192783,23345977:501378,78643,0 +(186,101:29356637,23345977:173670,78643,0 ) -(186,98:28190027,18690289:501378,78643,0 -(186,98:28353881,18690289:173670,78643,0 ) +(186,101:29694161,23345977:501378,78643,0 +(186,101:29858015,23345977:173670,78643,0 ) -(186,98:28691405,18690289:501378,78643,0 -(186,98:28855259,18690289:173670,78643,0 ) +(186,101:30195539,23345977:501378,78643,0 +(186,101:30359393,23345977:173670,78643,0 ) -(186,98:29192783,18690289:501378,78643,0 -(186,98:29356637,18690289:173670,78643,0 ) +(186,101:30696917,23345977:501378,78643,0 +(186,101:30860771,23345977:173670,78643,0 ) -(186,98:29694161,18690289:501378,78643,0 -(186,98:29858015,18690289:173670,78643,0 ) +(186,101:31239539,23345977:1343490,485622,11795 +k186,101:31239539,23345977:0 +k186,101:31387652,23345977:148113 ) -(186,98:30195539,18690289:501378,78643,0 -(186,98:30359393,18690289:173670,78643,0 +g186,101:30911859,23345977 +g186,101:32583029,23345977 ) +(186,102:6630773,24211057:25952256,505283,134348 +g186,102:12529013,24211057 +h186,102:12529013,24211057:3080190,0,0 +h186,102:15609203,24211057:0,0,0 +g186,102:9710963,24211057 +(186,102:9710963,24211057:2818050,485622,11795 +k186,102:12529013,24211057:1275332 ) -(186,98:30696917,18690289:501378,78643,0 -(186,98:30860771,18690289:173670,78643,0 +g186,102:15114408,24211057 +g186,102:17825632,24211057 +g186,102:20736086,24211057 +(186,102:21170735,24211057:501378,78643,0 +$186,102:21170735,24211057 +(186,102:21334589,24211057:173670,78643,0 ) +$186,102:21672113,24211057 ) -(186,98:31239539,18690289:1343490,485622,11795 -k186,98:31239539,18690289:0 -k186,98:31387652,18690289:148113 +(186,102:21672113,24211057:501378,78643,0 +(186,102:21835967,24211057:173670,78643,0 ) -g186,98:30911859,18690289 -g186,98:32583029,18690289 ) -(186,99:6630773,19531777:25952256,505283,134348 -g186,99:9448823,19531777 -h186,99:9448823,19531777:983040,0,0 -h186,99:10431863,19531777:0,0,0 -g186,99:7613813,19531777 -(186,99:7613813,19531777:1835010,485622,11795 -k186,99:9448823,19531777:864422 +(186,102:22173491,24211057:501378,78643,0 +(186,102:22337345,24211057:173670,78643,0 ) -g186,99:12513286,19531777 -g186,99:12513286,19531777 -(186,99:12647309,19531777:501378,78643,0 -$186,99:12647309,19531777 -(186,99:12811163,19531777:173670,78643,0 ) -$186,99:13148687,19531777 +(186,102:22674869,24211057:501378,78643,0 +(186,102:22838723,24211057:173670,78643,0 ) -(186,99:13148687,19531777:501378,78643,0 -(186,99:13312541,19531777:173670,78643,0 ) +(186,102:23176247,24211057:501378,78643,0 +(186,102:23340101,24211057:173670,78643,0 ) -(186,99:13650065,19531777:501378,78643,0 -(186,99:13813919,19531777:173670,78643,0 ) +(186,102:23677625,24211057:501378,78643,0 +(186,102:23841479,24211057:173670,78643,0 ) -(186,99:14151443,19531777:501378,78643,0 -(186,99:14315297,19531777:173670,78643,0 ) +(186,102:24179003,24211057:501378,78643,0 +(186,102:24342857,24211057:173670,78643,0 ) -(186,99:14652821,19531777:501378,78643,0 -(186,99:14816675,19531777:173670,78643,0 ) +(186,102:24680381,24211057:501378,78643,0 +(186,102:24844235,24211057:173670,78643,0 ) -(186,99:15154199,19531777:501378,78643,0 -(186,99:15318053,19531777:173670,78643,0 ) +(186,102:25181759,24211057:501378,78643,0 +(186,102:25345613,24211057:173670,78643,0 ) -(186,99:15655577,19531777:501378,78643,0 -(186,99:15819431,19531777:173670,78643,0 ) +(186,102:25683137,24211057:501378,78643,0 +(186,102:25846991,24211057:173670,78643,0 ) -(186,99:16156955,19531777:501378,78643,0 -(186,99:16320809,19531777:173670,78643,0 ) +(186,102:26184515,24211057:501378,78643,0 +(186,102:26348369,24211057:173670,78643,0 ) -(186,99:16658333,19531777:501378,78643,0 -(186,99:16822187,19531777:173670,78643,0 ) +(186,102:26685893,24211057:501378,78643,0 +(186,102:26849747,24211057:173670,78643,0 ) -(186,99:17159711,19531777:501378,78643,0 -(186,99:17323565,19531777:173670,78643,0 ) +(186,102:27187271,24211057:501378,78643,0 +(186,102:27351125,24211057:173670,78643,0 ) -(186,99:17661089,19531777:501378,78643,0 -(186,99:17824943,19531777:173670,78643,0 ) +(186,102:27688649,24211057:501378,78643,0 +(186,102:27852503,24211057:173670,78643,0 ) -(186,99:18162467,19531777:501378,78643,0 -(186,99:18326321,19531777:173670,78643,0 ) +(186,102:28190027,24211057:501378,78643,0 +(186,102:28353881,24211057:173670,78643,0 ) -(186,99:18663845,19531777:501378,78643,0 -(186,99:18827699,19531777:173670,78643,0 ) +(186,102:28691405,24211057:501378,78643,0 +(186,102:28855259,24211057:173670,78643,0 ) -(186,99:19165223,19531777:501378,78643,0 -(186,99:19329077,19531777:173670,78643,0 ) +(186,102:29192783,24211057:501378,78643,0 +(186,102:29356637,24211057:173670,78643,0 ) -(186,99:19666601,19531777:501378,78643,0 -(186,99:19830455,19531777:173670,78643,0 ) +(186,102:29694161,24211057:501378,78643,0 +(186,102:29858015,24211057:173670,78643,0 ) -(186,99:20167979,19531777:501378,78643,0 -(186,99:20331833,19531777:173670,78643,0 ) +(186,102:30195539,24211057:501378,78643,0 +(186,102:30359393,24211057:173670,78643,0 ) -(186,99:20669357,19531777:501378,78643,0 -(186,99:20833211,19531777:173670,78643,0 ) +(186,102:30696917,24211057:501378,78643,0 +(186,102:30860771,24211057:173670,78643,0 ) -(186,99:21170735,19531777:501378,78643,0 -(186,99:21334589,19531777:173670,78643,0 ) +(186,102:31239539,24211057:1343490,477757,11795 +k186,102:31239539,24211057:0 +k186,102:31387652,24211057:148113 ) -(186,99:21672113,19531777:501378,78643,0 -(186,99:21835967,19531777:173670,78643,0 +g186,102:30911859,24211057 +g186,102:32583029,24211057 ) +(186,103:6630773,25076137:25952256,505283,134348 +g186,103:12529013,25076137 +h186,103:12529013,25076137:3080190,0,0 +h186,103:15609203,25076137:0,0,0 +g186,103:9710963,25076137 +(186,103:9710963,25076137:2818050,485622,11795 +k186,103:12529013,25076137:1275332 ) -(186,99:22173491,19531777:501378,78643,0 -(186,99:22337345,19531777:173670,78643,0 +g186,103:14149063,25076137 +g186,103:17258746,25076137 +g186,103:18855203,25076137 +(186,103:19165223,25076137:501378,78643,0 +$186,103:19165223,25076137 +(186,103:19329077,25076137:173670,78643,0 ) +$186,103:19666601,25076137 ) -(186,99:22674869,19531777:501378,78643,0 -(186,99:22838723,19531777:173670,78643,0 +(186,103:19666601,25076137:501378,78643,0 +(186,103:19830455,25076137:173670,78643,0 ) ) -(186,99:23176247,19531777:501378,78643,0 -(186,99:23340101,19531777:173670,78643,0 +(186,103:20167979,25076137:501378,78643,0 +(186,103:20331833,25076137:173670,78643,0 ) ) -(186,99:23677625,19531777:501378,78643,0 -(186,99:23841479,19531777:173670,78643,0 +(186,103:20669357,25076137:501378,78643,0 +(186,103:20833211,25076137:173670,78643,0 ) ) -(186,99:24179003,19531777:501378,78643,0 -(186,99:24342857,19531777:173670,78643,0 +(186,103:21170735,25076137:501378,78643,0 +(186,103:21334589,25076137:173670,78643,0 ) ) -(186,99:24680381,19531777:501378,78643,0 -(186,99:24844235,19531777:173670,78643,0 +(186,103:21672113,25076137:501378,78643,0 +(186,103:21835967,25076137:173670,78643,0 ) ) -(186,99:25181759,19531777:501378,78643,0 -(186,99:25345613,19531777:173670,78643,0 +(186,103:22173491,25076137:501378,78643,0 +(186,103:22337345,25076137:173670,78643,0 ) ) -(186,99:25683137,19531777:501378,78643,0 -(186,99:25846991,19531777:173670,78643,0 +(186,103:22674869,25076137:501378,78643,0 +(186,103:22838723,25076137:173670,78643,0 ) ) -(186,99:26184515,19531777:501378,78643,0 -(186,99:26348369,19531777:173670,78643,0 +(186,103:23176247,25076137:501378,78643,0 +(186,103:23340101,25076137:173670,78643,0 ) ) -(186,99:26685893,19531777:501378,78643,0 -(186,99:26849747,19531777:173670,78643,0 +(186,103:23677625,25076137:501378,78643,0 +(186,103:23841479,25076137:173670,78643,0 ) ) -(186,99:27187271,19531777:501378,78643,0 -(186,99:27351125,19531777:173670,78643,0 +(186,103:24179003,25076137:501378,78643,0 +(186,103:24342857,25076137:173670,78643,0 ) ) -(186,99:27688649,19531777:501378,78643,0 -(186,99:27852503,19531777:173670,78643,0 +(186,103:24680381,25076137:501378,78643,0 +(186,103:24844235,25076137:173670,78643,0 ) ) -(186,99:28190027,19531777:501378,78643,0 -(186,99:28353881,19531777:173670,78643,0 +(186,103:25181759,25076137:501378,78643,0 +(186,103:25345613,25076137:173670,78643,0 ) ) -(186,99:28691405,19531777:501378,78643,0 -(186,99:28855259,19531777:173670,78643,0 +(186,103:25683137,25076137:501378,78643,0 +(186,103:25846991,25076137:173670,78643,0 ) ) -(186,99:29192783,19531777:501378,78643,0 -(186,99:29356637,19531777:173670,78643,0 +(186,103:26184515,25076137:501378,78643,0 +(186,103:26348369,25076137:173670,78643,0 ) ) -(186,99:29694161,19531777:501378,78643,0 -(186,99:29858015,19531777:173670,78643,0 +(186,103:26685893,25076137:501378,78643,0 +(186,103:26849747,25076137:173670,78643,0 ) ) -(186,99:30195539,19531777:501378,78643,0 -(186,99:30359393,19531777:173670,78643,0 +(186,103:27187271,25076137:501378,78643,0 +(186,103:27351125,25076137:173670,78643,0 ) ) -(186,99:30696917,19531777:501378,78643,0 -(186,99:30860771,19531777:173670,78643,0 +(186,103:27688649,25076137:501378,78643,0 +(186,103:27852503,25076137:173670,78643,0 ) ) -(186,99:31239538,19531777:1343490,485622,11795 -k186,99:31239538,19531777:0 -k186,99:31387651,19531777:148113 +(186,103:28190027,25076137:501378,78643,0 +(186,103:28353881,25076137:173670,78643,0 ) -g186,99:30911858,19531777 -g186,99:32583028,19531777 ) -(186,100:6630773,20373265:25952256,513147,134348 -g186,100:11873653,20373265 -h186,100:11873653,20373265:2818050,0,0 -h186,100:14691703,20373265:0,0,0 -g186,100:9448823,20373265 -(186,100:9448823,20373265:2424830,485622,11795 -k186,100:11873653,20373265:882112 +(186,103:28691405,25076137:501378,78643,0 +(186,103:28855259,25076137:173670,78643,0 ) -g186,100:14477398,20373265 -g186,100:15343783,20373265 -g186,100:19013143,20373265 -g186,100:22415772,20373265 -(186,100:22674869,20373265:501378,78643,0 -$186,100:22674869,20373265 -(186,100:22838723,20373265:173670,78643,0 ) -$186,100:23176247,20373265 +(186,103:29192783,25076137:501378,78643,0 +(186,103:29356637,25076137:173670,78643,0 ) -(186,100:23176247,20373265:501378,78643,0 -(186,100:23340101,20373265:173670,78643,0 ) +(186,103:29694161,25076137:501378,78643,0 +(186,103:29858015,25076137:173670,78643,0 ) -(186,100:23677625,20373265:501378,78643,0 -(186,100:23841479,20373265:173670,78643,0 ) +(186,103:30195539,25076137:501378,78643,0 +(186,103:30359393,25076137:173670,78643,0 ) -(186,100:24179003,20373265:501378,78643,0 -(186,100:24342857,20373265:173670,78643,0 ) +(186,103:30696917,25076137:501378,78643,0 +(186,103:30860771,25076137:173670,78643,0 ) -(186,100:24680381,20373265:501378,78643,0 -(186,100:24844235,20373265:173670,78643,0 ) +(186,103:31239539,25076137:1343490,485622,11795 +k186,103:31239539,25076137:0 +k186,103:31387652,25076137:148113 ) -(186,100:25181759,20373265:501378,78643,0 -(186,100:25345613,20373265:173670,78643,0 +g186,103:30911859,25076137 +g186,103:32583029,25076137 ) +(186,104:6630773,25941217:25952256,505283,134348 +g186,104:9710963,25941217 +h186,104:9710963,25941217:983040,0,0 +h186,104:10694003,25941217:0,0,0 +g186,104:7613813,25941217 +(186,104:7613813,25941217:2097150,485622,11795 +k186,104:9710963,25941217:1126562 ) -(186,100:25683137,20373265:501378,78643,0 -(186,100:25846991,20373265:173670,78643,0 +g186,104:12279974,25941217 +g186,104:14881753,25941217 +g186,104:14881753,25941217 +(186,104:15154199,25941217:501378,78643,0 +$186,104:15154199,25941217 +(186,104:15318053,25941217:173670,78643,0 ) +$186,104:15655577,25941217 ) -(186,100:26184515,20373265:501378,78643,0 -(186,100:26348369,20373265:173670,78643,0 +(186,104:15655577,25941217:501378,78643,0 +(186,104:15819431,25941217:173670,78643,0 ) ) -(186,100:26685893,20373265:501378,78643,0 -(186,100:26849747,20373265:173670,78643,0 +(186,104:16156955,25941217:501378,78643,0 +(186,104:16320809,25941217:173670,78643,0 ) ) -(186,100:27187271,20373265:501378,78643,0 -(186,100:27351125,20373265:173670,78643,0 +(186,104:16658333,25941217:501378,78643,0 +(186,104:16822187,25941217:173670,78643,0 ) ) -(186,100:27688649,20373265:501378,78643,0 -(186,100:27852503,20373265:173670,78643,0 +(186,104:17159711,25941217:501378,78643,0 +(186,104:17323565,25941217:173670,78643,0 ) ) -(186,100:28190027,20373265:501378,78643,0 -(186,100:28353881,20373265:173670,78643,0 +(186,104:17661089,25941217:501378,78643,0 +(186,104:17824943,25941217:173670,78643,0 ) ) -(186,100:28691405,20373265:501378,78643,0 -(186,100:28855259,20373265:173670,78643,0 +(186,104:18162467,25941217:501378,78643,0 +(186,104:18326321,25941217:173670,78643,0 ) ) -(186,100:29192783,20373265:501378,78643,0 -(186,100:29356637,20373265:173670,78643,0 +(186,104:18663845,25941217:501378,78643,0 +(186,104:18827699,25941217:173670,78643,0 ) ) -(186,100:29694161,20373265:501378,78643,0 -(186,100:29858015,20373265:173670,78643,0 +(186,104:19165223,25941217:501378,78643,0 +(186,104:19329077,25941217:173670,78643,0 ) ) -(186,100:30195539,20373265:501378,78643,0 -(186,100:30359393,20373265:173670,78643,0 +(186,104:19666601,25941217:501378,78643,0 +(186,104:19830455,25941217:173670,78643,0 ) ) -(186,100:30696917,20373265:501378,78643,0 -(186,100:30860771,20373265:173670,78643,0 +(186,104:20167979,25941217:501378,78643,0 +(186,104:20331833,25941217:173670,78643,0 ) ) -(186,100:31239539,20373265:1343490,485622,11795 -k186,100:31239539,20373265:0 -k186,100:31387652,20373265:148113 +(186,104:20669357,25941217:501378,78643,0 +(186,104:20833211,25941217:173670,78643,0 ) -g186,100:30911859,20373265 -g186,100:32583029,20373265 ) -(186,101:6630773,21214753:25952256,505283,102891 -g186,101:11873653,21214753 -h186,101:11873653,21214753:2818050,0,0 -h186,101:14691703,21214753:0,0,0 -g186,101:9448823,21214753 -(186,101:9448823,21214753:2424830,485622,11795 -k186,101:11873653,21214753:882112 +(186,104:21170735,25941217:501378,78643,0 +(186,104:21334589,25941217:173670,78643,0 ) -g186,101:15456506,21214753 -g186,101:19248419,21214753 -g186,101:20639093,21214753 -g186,101:21731578,21214753 -(186,101:22173491,21214753:501378,78643,0 -$186,101:22173491,21214753 -(186,101:22337345,21214753:173670,78643,0 ) -$186,101:22674869,21214753 +(186,104:21672113,25941217:501378,78643,0 +(186,104:21835967,25941217:173670,78643,0 ) -(186,101:22674869,21214753:501378,78643,0 -(186,101:22838723,21214753:173670,78643,0 ) +(186,104:22173491,25941217:501378,78643,0 +(186,104:22337345,25941217:173670,78643,0 ) -(186,101:23176247,21214753:501378,78643,0 -(186,101:23340101,21214753:173670,78643,0 ) +(186,104:22674869,25941217:501378,78643,0 +(186,104:22838723,25941217:173670,78643,0 ) -(186,101:23677625,21214753:501378,78643,0 -(186,101:23841479,21214753:173670,78643,0 ) +(186,104:23176247,25941217:501378,78643,0 +(186,104:23340101,25941217:173670,78643,0 ) -(186,101:24179003,21214753:501378,78643,0 -(186,101:24342857,21214753:173670,78643,0 ) +(186,104:23677625,25941217:501378,78643,0 +(186,104:23841479,25941217:173670,78643,0 ) -(186,101:24680381,21214753:501378,78643,0 -(186,101:24844235,21214753:173670,78643,0 ) +(186,104:24179003,25941217:501378,78643,0 +(186,104:24342857,25941217:173670,78643,0 ) -(186,101:25181759,21214753:501378,78643,0 -(186,101:25345613,21214753:173670,78643,0 ) +(186,104:24680381,25941217:501378,78643,0 +(186,104:24844235,25941217:173670,78643,0 ) -(186,101:25683137,21214753:501378,78643,0 -(186,101:25846991,21214753:173670,78643,0 ) +(186,104:25181759,25941217:501378,78643,0 +(186,104:25345613,25941217:173670,78643,0 ) -(186,101:26184515,21214753:501378,78643,0 -(186,101:26348369,21214753:173670,78643,0 ) +(186,104:25683137,25941217:501378,78643,0 +(186,104:25846991,25941217:173670,78643,0 ) -(186,101:26685893,21214753:501378,78643,0 -(186,101:26849747,21214753:173670,78643,0 ) +(186,104:26184515,25941217:501378,78643,0 +(186,104:26348369,25941217:173670,78643,0 ) -(186,101:27187271,21214753:501378,78643,0 -(186,101:27351125,21214753:173670,78643,0 ) +(186,104:26685893,25941217:501378,78643,0 +(186,104:26849747,25941217:173670,78643,0 ) -(186,101:27688649,21214753:501378,78643,0 -(186,101:27852503,21214753:173670,78643,0 ) +(186,104:27187271,25941217:501378,78643,0 +(186,104:27351125,25941217:173670,78643,0 ) -(186,101:28190027,21214753:501378,78643,0 -(186,101:28353881,21214753:173670,78643,0 ) +(186,104:27688649,25941217:501378,78643,0 +(186,104:27852503,25941217:173670,78643,0 ) -(186,101:28691405,21214753:501378,78643,0 -(186,101:28855259,21214753:173670,78643,0 ) +(186,104:28190027,25941217:501378,78643,0 +(186,104:28353881,25941217:173670,78643,0 ) -(186,101:29192783,21214753:501378,78643,0 -(186,101:29356637,21214753:173670,78643,0 ) +(186,104:28691405,25941217:501378,78643,0 +(186,104:28855259,25941217:173670,78643,0 ) -(186,101:29694161,21214753:501378,78643,0 -(186,101:29858015,21214753:173670,78643,0 ) +(186,104:29192783,25941217:501378,78643,0 +(186,104:29356637,25941217:173670,78643,0 ) -(186,101:30195539,21214753:501378,78643,0 -(186,101:30359393,21214753:173670,78643,0 ) +(186,104:29694161,25941217:501378,78643,0 +(186,104:29858015,25941217:173670,78643,0 ) -(186,101:30696917,21214753:501378,78643,0 -(186,101:30860771,21214753:173670,78643,0 ) +(186,104:30195539,25941217:501378,78643,0 +(186,104:30359393,25941217:173670,78643,0 ) -(186,101:31239539,21214753:1343490,485622,11795 -k186,101:31239539,21214753:0 -k186,101:31387652,21214753:148113 ) -g186,101:30911859,21214753 -g186,101:32583029,21214753 +(186,104:30696917,25941217:501378,78643,0 +(186,104:30860771,25941217:173670,78643,0 ) -(186,102:6630773,22056241:25952256,505283,134348 -g186,102:11873653,22056241 -h186,102:11873653,22056241:2818050,0,0 -h186,102:14691703,22056241:0,0,0 -g186,102:9448823,22056241 -(186,102:9448823,22056241:2424830,485622,11795 -k186,102:11873653,22056241:882112 ) -g186,102:14459048,22056241 -g186,102:17170272,22056241 -g186,102:20080726,22056241 -(186,102:20167979,22056241:501378,78643,0 -$186,102:20167979,22056241 -(186,102:20331833,22056241:173670,78643,0 +(186,104:31239539,25941217:1343490,485622,11795 +k186,104:31239539,25941217:0 +k186,104:31387652,25941217:148113 ) -$186,102:20669357,22056241 +g186,104:30911859,25941217 +g186,104:32583029,25941217 ) -(186,102:20669357,22056241:501378,78643,0 -(186,102:20833211,22056241:173670,78643,0 +(186,105:6630773,27461657:25952256,513147,11795 +g186,105:7613813,27461657 +h186,105:7613813,27461657:0,0,0 +g186,105:6630773,27461657 +(186,105:6630773,27461657:983040,473825,0 +k186,105:7613813,27461657:574751 ) +g186,105:9313161,27461657 +g186,105:10163163,27461657 +g186,105:12911087,27461657 +g186,105:14335839,27461657 +g186,105:17277750,27461657 +g186,105:18461985,27461657 +k186,105:26331221,27461657:4908319 +k186,105:31239539,27461657:4908318 +(186,105:31239539,27461657:1343490,485622,11795 +k186,105:31358161,27461657:118622 ) -(186,102:21170735,22056241:501378,78643,0 -(186,102:21334589,22056241:173670,78643,0 +g186,105:31239539,27461657 +g186,105:32583029,27461657 ) +(186,106:6630773,28326737:25952256,513147,126483 +g186,106:9710963,28326737 +h186,106:9710963,28326737:983040,0,0 +h186,106:10694003,28326737:0,0,0 +g186,106:7613813,28326737 +(186,106:7613813,28326737:2097150,477757,0 +k186,106:9710963,28326737:1126562 ) -(186,102:21672113,22056241:501378,78643,0 -(186,102:21835967,22056241:173670,78643,0 +g186,106:11549247,28326737 +g186,106:12407768,28326737 +g186,106:13810238,28326737 +g186,106:16427090,28326737 +g186,106:16427090,28326737 +(186,106:16658333,28326737:501378,78643,0 +$186,106:16658333,28326737 +(186,106:16822187,28326737:173670,78643,0 ) +$186,106:17159711,28326737 ) -(186,102:22173491,22056241:501378,78643,0 -(186,102:22337345,22056241:173670,78643,0 +(186,106:17159711,28326737:501378,78643,0 +(186,106:17323565,28326737:173670,78643,0 ) ) -(186,102:22674869,22056241:501378,78643,0 -(186,102:22838723,22056241:173670,78643,0 +(186,106:17661089,28326737:501378,78643,0 +(186,106:17824943,28326737:173670,78643,0 ) ) -(186,102:23176247,22056241:501378,78643,0 -(186,102:23340101,22056241:173670,78643,0 +(186,106:18162467,28326737:501378,78643,0 +(186,106:18326321,28326737:173670,78643,0 ) ) -(186,102:23677625,22056241:501378,78643,0 -(186,102:23841479,22056241:173670,78643,0 +(186,106:18663845,28326737:501378,78643,0 +(186,106:18827699,28326737:173670,78643,0 ) ) -(186,102:24179003,22056241:501378,78643,0 -(186,102:24342857,22056241:173670,78643,0 +(186,106:19165223,28326737:501378,78643,0 +(186,106:19329077,28326737:173670,78643,0 ) ) -(186,102:24680381,22056241:501378,78643,0 -(186,102:24844235,22056241:173670,78643,0 +(186,106:19666601,28326737:501378,78643,0 +(186,106:19830455,28326737:173670,78643,0 ) ) -(186,102:25181759,22056241:501378,78643,0 -(186,102:25345613,22056241:173670,78643,0 +(186,106:20167979,28326737:501378,78643,0 +(186,106:20331833,28326737:173670,78643,0 ) ) -(186,102:25683137,22056241:501378,78643,0 -(186,102:25846991,22056241:173670,78643,0 +(186,106:20669357,28326737:501378,78643,0 +(186,106:20833211,28326737:173670,78643,0 ) ) -(186,102:26184515,22056241:501378,78643,0 -(186,102:26348369,22056241:173670,78643,0 +(186,106:21170735,28326737:501378,78643,0 +(186,106:21334589,28326737:173670,78643,0 ) ) -(186,102:26685893,22056241:501378,78643,0 -(186,102:26849747,22056241:173670,78643,0 +(186,106:21672113,28326737:501378,78643,0 +(186,106:21835967,28326737:173670,78643,0 ) ) -(186,102:27187271,22056241:501378,78643,0 -(186,102:27351125,22056241:173670,78643,0 +(186,106:22173491,28326737:501378,78643,0 +(186,106:22337345,28326737:173670,78643,0 ) ) -(186,102:27688649,22056241:501378,78643,0 -(186,102:27852503,22056241:173670,78643,0 +(186,106:22674869,28326737:501378,78643,0 +(186,106:22838723,28326737:173670,78643,0 ) ) -(186,102:28190027,22056241:501378,78643,0 -(186,102:28353881,22056241:173670,78643,0 +(186,106:23176247,28326737:501378,78643,0 +(186,106:23340101,28326737:173670,78643,0 ) ) -(186,102:28691405,22056241:501378,78643,0 -(186,102:28855259,22056241:173670,78643,0 +(186,106:23677625,28326737:501378,78643,0 +(186,106:23841479,28326737:173670,78643,0 ) ) -(186,102:29192783,22056241:501378,78643,0 -(186,102:29356637,22056241:173670,78643,0 +(186,106:24179003,28326737:501378,78643,0 +(186,106:24342857,28326737:173670,78643,0 ) ) -(186,102:29694161,22056241:501378,78643,0 -(186,102:29858015,22056241:173670,78643,0 +(186,106:24680381,28326737:501378,78643,0 +(186,106:24844235,28326737:173670,78643,0 ) ) -(186,102:30195539,22056241:501378,78643,0 -(186,102:30359393,22056241:173670,78643,0 +(186,106:25181759,28326737:501378,78643,0 +(186,106:25345613,28326737:173670,78643,0 ) ) -(186,102:30696917,22056241:501378,78643,0 -(186,102:30860771,22056241:173670,78643,0 +(186,106:25683137,28326737:501378,78643,0 +(186,106:25846991,28326737:173670,78643,0 ) ) -(186,102:31239539,22056241:1343490,485622,11795 -k186,102:31239539,22056241:0 -k186,102:31387652,22056241:148113 +(186,106:26184515,28326737:501378,78643,0 +(186,106:26348369,28326737:173670,78643,0 ) -g186,102:30911859,22056241 -g186,102:32583029,22056241 ) -(186,103:6630773,22897729:25952256,505283,134348 -g186,103:11873653,22897729 -h186,103:11873653,22897729:2818050,0,0 -h186,103:14691703,22897729:0,0,0 -g186,103:9448823,22897729 -(186,103:9448823,22897729:2424830,485622,11795 -k186,103:11873653,22897729:882112 +(186,106:26685893,28326737:501378,78643,0 +(186,106:26849747,28326737:173670,78643,0 ) -g186,103:13493703,22897729 -g186,103:16603386,22897729 -g186,103:18199843,22897729 -(186,103:18663845,22897729:501378,78643,0 -$186,103:18663845,22897729 -(186,103:18827699,22897729:173670,78643,0 ) -$186,103:19165223,22897729 +(186,106:27187271,28326737:501378,78643,0 +(186,106:27351125,28326737:173670,78643,0 ) -(186,103:19165223,22897729:501378,78643,0 -(186,103:19329077,22897729:173670,78643,0 ) +(186,106:27688649,28326737:501378,78643,0 +(186,106:27852503,28326737:173670,78643,0 ) -(186,103:19666601,22897729:501378,78643,0 -(186,103:19830455,22897729:173670,78643,0 ) +(186,106:28190027,28326737:501378,78643,0 +(186,106:28353881,28326737:173670,78643,0 ) -(186,103:20167979,22897729:501378,78643,0 -(186,103:20331833,22897729:173670,78643,0 ) +(186,106:28691405,28326737:501378,78643,0 +(186,106:28855259,28326737:173670,78643,0 ) -(186,103:20669357,22897729:501378,78643,0 -(186,103:20833211,22897729:173670,78643,0 ) +(186,106:29192783,28326737:501378,78643,0 +(186,106:29356637,28326737:173670,78643,0 ) -(186,103:21170735,22897729:501378,78643,0 -(186,103:21334589,22897729:173670,78643,0 ) +(186,106:29694161,28326737:501378,78643,0 +(186,106:29858015,28326737:173670,78643,0 ) -(186,103:21672113,22897729:501378,78643,0 -(186,103:21835967,22897729:173670,78643,0 ) +(186,106:30195539,28326737:501378,78643,0 +(186,106:30359393,28326737:173670,78643,0 ) -(186,103:22173491,22897729:501378,78643,0 -(186,103:22337345,22897729:173670,78643,0 ) +(186,106:30696917,28326737:501378,78643,0 +(186,106:30860771,28326737:173670,78643,0 ) -(186,103:22674869,22897729:501378,78643,0 -(186,103:22838723,22897729:173670,78643,0 ) +(186,106:31239539,28326737:1343490,485622,11795 +k186,106:31239539,28326737:0 +k186,106:31387652,28326737:148113 ) -(186,103:23176247,22897729:501378,78643,0 -(186,103:23340101,22897729:173670,78643,0 +g186,106:30911859,28326737 +g186,106:32583029,28326737 ) +(186,107:6630773,29191817:25952256,505283,11795 +g186,107:9710963,29191817 +h186,107:9710963,29191817:983040,0,0 +h186,107:10694003,29191817:0,0,0 +g186,107:7613813,29191817 +(186,107:7613813,29191817:2097150,485622,0 +k186,107:9710963,29191817:1126562 ) -(186,103:23677625,22897729:501378,78643,0 -(186,103:23841479,22897729:173670,78643,0 +g186,107:13019220,29191817 +g186,107:16726591,29191817 +g186,107:16726591,29191817 +(186,107:17159711,29191817:501378,78643,0 +$186,107:17159711,29191817 +(186,107:17323565,29191817:173670,78643,0 ) +$186,107:17661089,29191817 ) -(186,103:24179003,22897729:501378,78643,0 -(186,103:24342857,22897729:173670,78643,0 +(186,107:17661089,29191817:501378,78643,0 +(186,107:17824943,29191817:173670,78643,0 ) ) -(186,103:24680381,22897729:501378,78643,0 -(186,103:24844235,22897729:173670,78643,0 +(186,107:18162467,29191817:501378,78643,0 +(186,107:18326321,29191817:173670,78643,0 ) ) -(186,103:25181759,22897729:501378,78643,0 -(186,103:25345613,22897729:173670,78643,0 +(186,107:18663845,29191817:501378,78643,0 +(186,107:18827699,29191817:173670,78643,0 ) ) -(186,103:25683137,22897729:501378,78643,0 -(186,103:25846991,22897729:173670,78643,0 +(186,107:19165223,29191817:501378,78643,0 +(186,107:19329077,29191817:173670,78643,0 ) ) -(186,103:26184515,22897729:501378,78643,0 -(186,103:26348369,22897729:173670,78643,0 +(186,107:19666601,29191817:501378,78643,0 +(186,107:19830455,29191817:173670,78643,0 ) ) -(186,103:26685893,22897729:501378,78643,0 -(186,103:26849747,22897729:173670,78643,0 +(186,107:20167979,29191817:501378,78643,0 +(186,107:20331833,29191817:173670,78643,0 ) ) -(186,103:27187271,22897729:501378,78643,0 -(186,103:27351125,22897729:173670,78643,0 +(186,107:20669357,29191817:501378,78643,0 +(186,107:20833211,29191817:173670,78643,0 ) ) -(186,103:27688649,22897729:501378,78643,0 -(186,103:27852503,22897729:173670,78643,0 +(186,107:21170735,29191817:501378,78643,0 +(186,107:21334589,29191817:173670,78643,0 ) ) -(186,103:28190027,22897729:501378,78643,0 -(186,103:28353881,22897729:173670,78643,0 +(186,107:21672113,29191817:501378,78643,0 +(186,107:21835967,29191817:173670,78643,0 ) ) -(186,103:28691405,22897729:501378,78643,0 -(186,103:28855259,22897729:173670,78643,0 +(186,107:22173491,29191817:501378,78643,0 +(186,107:22337345,29191817:173670,78643,0 ) ) -(186,103:29192783,22897729:501378,78643,0 -(186,103:29356637,22897729:173670,78643,0 +(186,107:22674869,29191817:501378,78643,0 +(186,107:22838723,29191817:173670,78643,0 ) ) -(186,103:29694161,22897729:501378,78643,0 -(186,103:29858015,22897729:173670,78643,0 +(186,107:23176247,29191817:501378,78643,0 +(186,107:23340101,29191817:173670,78643,0 ) ) -(186,103:30195539,22897729:501378,78643,0 -(186,103:30359393,22897729:173670,78643,0 +(186,107:23677625,29191817:501378,78643,0 +(186,107:23841479,29191817:173670,78643,0 ) ) -(186,103:30696917,22897729:501378,78643,0 -(186,103:30860771,22897729:173670,78643,0 +(186,107:24179003,29191817:501378,78643,0 +(186,107:24342857,29191817:173670,78643,0 ) ) -(186,103:31239539,22897729:1343490,485622,11795 -k186,103:31239539,22897729:0 -k186,103:31387652,22897729:148113 +(186,107:24680381,29191817:501378,78643,0 +(186,107:24844235,29191817:173670,78643,0 ) -g186,103:30911859,22897729 -g186,103:32583029,22897729 ) -(186,104:6630773,23739217:25952256,505283,134348 -g186,104:9448823,23739217 -h186,104:9448823,23739217:983040,0,0 -h186,104:10431863,23739217:0,0,0 -g186,104:7613813,23739217 -(186,104:7613813,23739217:1835010,485622,11795 -k186,104:9448823,23739217:864422 +(186,107:25181759,29191817:501378,78643,0 +(186,107:25345613,29191817:173670,78643,0 ) -g186,104:12017834,23739217 -g186,104:14619613,23739217 -g186,104:14619613,23739217 -(186,104:14652821,23739217:501378,78643,0 -$186,104:14652821,23739217 -(186,104:14816675,23739217:173670,78643,0 ) -$186,104:15154199,23739217 +(186,107:25683137,29191817:501378,78643,0 +(186,107:25846991,29191817:173670,78643,0 ) -(186,104:15154199,23739217:501378,78643,0 -(186,104:15318053,23739217:173670,78643,0 ) +(186,107:26184515,29191817:501378,78643,0 +(186,107:26348369,29191817:173670,78643,0 ) -(186,104:15655577,23739217:501378,78643,0 -(186,104:15819431,23739217:173670,78643,0 ) +(186,107:26685893,29191817:501378,78643,0 +(186,107:26849747,29191817:173670,78643,0 ) -(186,104:16156955,23739217:501378,78643,0 -(186,104:16320809,23739217:173670,78643,0 ) +(186,107:27187271,29191817:501378,78643,0 +(186,107:27351125,29191817:173670,78643,0 ) -(186,104:16658333,23739217:501378,78643,0 -(186,104:16822187,23739217:173670,78643,0 ) +(186,107:27688649,29191817:501378,78643,0 +(186,107:27852503,29191817:173670,78643,0 ) -(186,104:17159711,23739217:501378,78643,0 -(186,104:17323565,23739217:173670,78643,0 ) +(186,107:28190027,29191817:501378,78643,0 +(186,107:28353881,29191817:173670,78643,0 ) -(186,104:17661089,23739217:501378,78643,0 -(186,104:17824943,23739217:173670,78643,0 ) +(186,107:28691405,29191817:501378,78643,0 +(186,107:28855259,29191817:173670,78643,0 ) -(186,104:18162467,23739217:501378,78643,0 -(186,104:18326321,23739217:173670,78643,0 ) +(186,107:29192783,29191817:501378,78643,0 +(186,107:29356637,29191817:173670,78643,0 ) -(186,104:18663845,23739217:501378,78643,0 -(186,104:18827699,23739217:173670,78643,0 ) +(186,107:29694161,29191817:501378,78643,0 +(186,107:29858015,29191817:173670,78643,0 ) -(186,104:19165223,23739217:501378,78643,0 -(186,104:19329077,23739217:173670,78643,0 ) +(186,107:30195539,29191817:501378,78643,0 +(186,107:30359393,29191817:173670,78643,0 ) -(186,104:19666601,23739217:501378,78643,0 -(186,104:19830455,23739217:173670,78643,0 ) +(186,107:30696917,29191817:501378,78643,0 +(186,107:30860771,29191817:173670,78643,0 ) -(186,104:20167979,23739217:501378,78643,0 -(186,104:20331833,23739217:173670,78643,0 ) +(186,107:31239539,29191817:1343490,485622,11795 +k186,107:31239539,29191817:0 +k186,107:31387652,29191817:148113 ) -(186,104:20669357,23739217:501378,78643,0 -(186,104:20833211,23739217:173670,78643,0 +g186,107:30911859,29191817 +g186,107:32583029,29191817 ) +(186,108:6630773,30056897:25952256,505283,11795 +g186,108:9710963,30056897 +h186,108:9710963,30056897:983040,0,0 +h186,108:10694003,30056897:0,0,0 +g186,108:7613813,30056897 +(186,108:7613813,30056897:2097150,485622,11795 +k186,108:9710963,30056897:1126562 ) -(186,104:21170735,23739217:501378,78643,0 -(186,104:21334589,23739217:173670,78643,0 +g186,108:14104496,30056897 +g186,108:14104496,30056897 +(186,108:14151443,30056897:501378,78643,0 +$186,108:14151443,30056897 +(186,108:14315297,30056897:173670,78643,0 ) +$186,108:14652821,30056897 ) -(186,104:21672113,23739217:501378,78643,0 -(186,104:21835967,23739217:173670,78643,0 +(186,108:14652821,30056897:501378,78643,0 +(186,108:14816675,30056897:173670,78643,0 ) ) -(186,104:22173491,23739217:501378,78643,0 -(186,104:22337345,23739217:173670,78643,0 +(186,108:15154199,30056897:501378,78643,0 +(186,108:15318053,30056897:173670,78643,0 ) ) -(186,104:22674869,23739217:501378,78643,0 -(186,104:22838723,23739217:173670,78643,0 +(186,108:15655577,30056897:501378,78643,0 +(186,108:15819431,30056897:173670,78643,0 ) ) -(186,104:23176247,23739217:501378,78643,0 -(186,104:23340101,23739217:173670,78643,0 +(186,108:16156955,30056897:501378,78643,0 +(186,108:16320809,30056897:173670,78643,0 ) ) -(186,104:23677625,23739217:501378,78643,0 -(186,104:23841479,23739217:173670,78643,0 +(186,108:16658333,30056897:501378,78643,0 +(186,108:16822187,30056897:173670,78643,0 ) ) -(186,104:24179003,23739217:501378,78643,0 -(186,104:24342857,23739217:173670,78643,0 +(186,108:17159711,30056897:501378,78643,0 +(186,108:17323565,30056897:173670,78643,0 ) ) -(186,104:24680381,23739217:501378,78643,0 -(186,104:24844235,23739217:173670,78643,0 +(186,108:17661089,30056897:501378,78643,0 +(186,108:17824943,30056897:173670,78643,0 ) ) -(186,104:25181759,23739217:501378,78643,0 -(186,104:25345613,23739217:173670,78643,0 +(186,108:18162467,30056897:501378,78643,0 +(186,108:18326321,30056897:173670,78643,0 ) ) -(186,104:25683137,23739217:501378,78643,0 -(186,104:25846991,23739217:173670,78643,0 +(186,108:18663845,30056897:501378,78643,0 +(186,108:18827699,30056897:173670,78643,0 ) ) -(186,104:26184515,23739217:501378,78643,0 -(186,104:26348369,23739217:173670,78643,0 +(186,108:19165223,30056897:501378,78643,0 +(186,108:19329077,30056897:173670,78643,0 ) ) -(186,104:26685893,23739217:501378,78643,0 -(186,104:26849747,23739217:173670,78643,0 +(186,108:19666601,30056897:501378,78643,0 +(186,108:19830455,30056897:173670,78643,0 ) ) -(186,104:27187271,23739217:501378,78643,0 -(186,104:27351125,23739217:173670,78643,0 +(186,108:20167979,30056897:501378,78643,0 +(186,108:20331833,30056897:173670,78643,0 ) ) -(186,104:27688649,23739217:501378,78643,0 -(186,104:27852503,23739217:173670,78643,0 +(186,108:20669357,30056897:501378,78643,0 +(186,108:20833211,30056897:173670,78643,0 ) ) -(186,104:28190027,23739217:501378,78643,0 -(186,104:28353881,23739217:173670,78643,0 +(186,108:21170735,30056897:501378,78643,0 +(186,108:21334589,30056897:173670,78643,0 ) ) -(186,104:28691405,23739217:501378,78643,0 -(186,104:28855259,23739217:173670,78643,0 +(186,108:21672113,30056897:501378,78643,0 +(186,108:21835967,30056897:173670,78643,0 ) ) -(186,104:29192783,23739217:501378,78643,0 -(186,104:29356637,23739217:173670,78643,0 +(186,108:22173491,30056897:501378,78643,0 +(186,108:22337345,30056897:173670,78643,0 ) ) -(186,104:29694161,23739217:501378,78643,0 -(186,104:29858015,23739217:173670,78643,0 +(186,108:22674869,30056897:501378,78643,0 +(186,108:22838723,30056897:173670,78643,0 ) ) -(186,104:30195539,23739217:501378,78643,0 -(186,104:30359393,23739217:173670,78643,0 +(186,108:23176247,30056897:501378,78643,0 +(186,108:23340101,30056897:173670,78643,0 ) ) -(186,104:30696917,23739217:501378,78643,0 -(186,104:30860771,23739217:173670,78643,0 +(186,108:23677625,30056897:501378,78643,0 +(186,108:23841479,30056897:173670,78643,0 ) ) -(186,104:31239539,23739217:1343490,485622,11795 -k186,104:31239539,23739217:0 -k186,104:31387652,23739217:148113 +(186,108:24179003,30056897:501378,78643,0 +(186,108:24342857,30056897:173670,78643,0 ) -g186,104:30911859,23739217 -g186,104:32583029,23739217 ) -(186,105:6630773,25236065:25952256,513147,11795 -g186,105:7613813,25236065 -h186,105:7613813,25236065:0,0,0 -g186,105:6630773,25236065 -(186,105:6630773,25236065:983040,473825,0 -k186,105:7613813,25236065:574751 +(186,108:24680381,30056897:501378,78643,0 +(186,108:24844235,30056897:173670,78643,0 ) -g186,105:9313161,25236065 -g186,105:10163163,25236065 -g186,105:12911087,25236065 -g186,105:14335839,25236065 -g186,105:17277750,25236065 -g186,105:18461985,25236065 -k186,105:26331221,25236065:4908319 -k186,105:31239539,25236065:4908318 -(186,105:31239539,25236065:1343490,485622,11795 -k186,105:31358161,25236065:118622 ) -g186,105:31239539,25236065 -g186,105:32583029,25236065 +(186,108:25181759,30056897:501378,78643,0 +(186,108:25345613,30056897:173670,78643,0 ) -(186,106:6630773,26077553:25952256,513147,126483 -g186,106:9448823,26077553 -h186,106:9448823,26077553:983040,0,0 -h186,106:10431863,26077553:0,0,0 -g186,106:7613813,26077553 -(186,106:7613813,26077553:1835010,477757,0 -k186,106:9448823,26077553:864422 ) -g186,106:11287107,26077553 -g186,106:12145628,26077553 -g186,106:13548098,26077553 -g186,106:16164950,26077553 -g186,106:16164950,26077553 -(186,106:16658333,26077553:501378,78643,0 -$186,106:16658333,26077553 -(186,106:16822187,26077553:173670,78643,0 +(186,108:25683137,30056897:501378,78643,0 +(186,108:25846991,30056897:173670,78643,0 ) -$186,106:17159711,26077553 ) -(186,106:17159711,26077553:501378,78643,0 -(186,106:17323565,26077553:173670,78643,0 +(186,108:26184515,30056897:501378,78643,0 +(186,108:26348369,30056897:173670,78643,0 ) ) -(186,106:17661089,26077553:501378,78643,0 -(186,106:17824943,26077553:173670,78643,0 +(186,108:26685893,30056897:501378,78643,0 +(186,108:26849747,30056897:173670,78643,0 ) ) -(186,106:18162467,26077553:501378,78643,0 -(186,106:18326321,26077553:173670,78643,0 +(186,108:27187271,30056897:501378,78643,0 +(186,108:27351125,30056897:173670,78643,0 ) ) -(186,106:18663845,26077553:501378,78643,0 -(186,106:18827699,26077553:173670,78643,0 +(186,108:27688649,30056897:501378,78643,0 +(186,108:27852503,30056897:173670,78643,0 ) ) -(186,106:19165223,26077553:501378,78643,0 -(186,106:19329077,26077553:173670,78643,0 +(186,108:28190027,30056897:501378,78643,0 +(186,108:28353881,30056897:173670,78643,0 ) ) -(186,106:19666601,26077553:501378,78643,0 -(186,106:19830455,26077553:173670,78643,0 +(186,108:28691405,30056897:501378,78643,0 +(186,108:28855259,30056897:173670,78643,0 ) ) -(186,106:20167979,26077553:501378,78643,0 -(186,106:20331833,26077553:173670,78643,0 +(186,108:29192783,30056897:501378,78643,0 +(186,108:29356637,30056897:173670,78643,0 ) ) -(186,106:20669357,26077553:501378,78643,0 -(186,106:20833211,26077553:173670,78643,0 +(186,108:29694161,30056897:501378,78643,0 +(186,108:29858015,30056897:173670,78643,0 ) ) -(186,106:21170735,26077553:501378,78643,0 -(186,106:21334589,26077553:173670,78643,0 +(186,108:30195539,30056897:501378,78643,0 +(186,108:30359393,30056897:173670,78643,0 ) ) -(186,106:21672113,26077553:501378,78643,0 -(186,106:21835967,26077553:173670,78643,0 +(186,108:30696917,30056897:501378,78643,0 +(186,108:30860771,30056897:173670,78643,0 ) ) -(186,106:22173491,26077553:501378,78643,0 -(186,106:22337345,26077553:173670,78643,0 +(186,108:31239540,30056897:1343490,485622,11795 +k186,108:31239540,30056897:0 +k186,108:31387653,30056897:148113 ) +g186,108:30911860,30056897 +g186,108:32583030,30056897 ) -(186,106:22674869,26077553:501378,78643,0 -(186,106:22838723,26077553:173670,78643,0 +(186,109:6630773,30921977:25952256,513147,126483 +g186,109:12529013,30921977 +h186,109:12529013,30921977:3080190,0,0 +h186,109:15609203,30921977:0,0,0 +g186,109:9710963,30921977 +(186,109:9710963,30921977:2818050,485622,11795 +k186,109:12529013,30921977:1275332 ) +g186,109:15143244,30921977 +g186,109:16910094,30921977 +g186,109:20521128,30921977 +(186,109:20669357,30921977:501378,78643,0 +$186,109:20669357,30921977 +(186,109:20833211,30921977:173670,78643,0 ) -(186,106:23176247,26077553:501378,78643,0 -(186,106:23340101,26077553:173670,78643,0 +$186,109:21170735,30921977 ) +(186,109:21170735,30921977:501378,78643,0 +(186,109:21334589,30921977:173670,78643,0 ) -(186,106:23677625,26077553:501378,78643,0 -(186,106:23841479,26077553:173670,78643,0 ) +(186,109:21672113,30921977:501378,78643,0 +(186,109:21835967,30921977:173670,78643,0 ) -(186,106:24179003,26077553:501378,78643,0 -(186,106:24342857,26077553:173670,78643,0 ) +(186,109:22173491,30921977:501378,78643,0 +(186,109:22337345,30921977:173670,78643,0 ) -(186,106:24680381,26077553:501378,78643,0 -(186,106:24844235,26077553:173670,78643,0 ) +(186,109:22674869,30921977:501378,78643,0 +(186,109:22838723,30921977:173670,78643,0 ) -(186,106:25181759,26077553:501378,78643,0 -(186,106:25345613,26077553:173670,78643,0 ) +(186,109:23176247,30921977:501378,78643,0 +(186,109:23340101,30921977:173670,78643,0 ) -(186,106:25683137,26077553:501378,78643,0 -(186,106:25846991,26077553:173670,78643,0 ) +(186,109:23677625,30921977:501378,78643,0 +(186,109:23841479,30921977:173670,78643,0 ) -(186,106:26184515,26077553:501378,78643,0 -(186,106:26348369,26077553:173670,78643,0 ) +(186,109:24179003,30921977:501378,78643,0 +(186,109:24342857,30921977:173670,78643,0 ) -(186,106:26685893,26077553:501378,78643,0 -(186,106:26849747,26077553:173670,78643,0 ) +(186,109:24680381,30921977:501378,78643,0 +(186,109:24844235,30921977:173670,78643,0 ) -(186,106:27187271,26077553:501378,78643,0 -(186,106:27351125,26077553:173670,78643,0 ) +(186,109:25181759,30921977:501378,78643,0 +(186,109:25345613,30921977:173670,78643,0 ) -(186,106:27688649,26077553:501378,78643,0 -(186,106:27852503,26077553:173670,78643,0 ) +(186,109:25683137,30921977:501378,78643,0 +(186,109:25846991,30921977:173670,78643,0 ) -(186,106:28190027,26077553:501378,78643,0 -(186,106:28353881,26077553:173670,78643,0 ) +(186,109:26184515,30921977:501378,78643,0 +(186,109:26348369,30921977:173670,78643,0 ) -(186,106:28691405,26077553:501378,78643,0 -(186,106:28855259,26077553:173670,78643,0 ) +(186,109:26685893,30921977:501378,78643,0 +(186,109:26849747,30921977:173670,78643,0 ) -(186,106:29192783,26077553:501378,78643,0 -(186,106:29356637,26077553:173670,78643,0 ) +(186,109:27187271,30921977:501378,78643,0 +(186,109:27351125,30921977:173670,78643,0 ) -(186,106:29694161,26077553:501378,78643,0 -(186,106:29858015,26077553:173670,78643,0 ) +(186,109:27688649,30921977:501378,78643,0 +(186,109:27852503,30921977:173670,78643,0 ) -(186,106:30195539,26077553:501378,78643,0 -(186,106:30359393,26077553:173670,78643,0 ) +(186,109:28190027,30921977:501378,78643,0 +(186,109:28353881,30921977:173670,78643,0 ) -(186,106:30696917,26077553:501378,78643,0 -(186,106:30860771,26077553:173670,78643,0 ) +(186,109:28691405,30921977:501378,78643,0 +(186,109:28855259,30921977:173670,78643,0 ) -(186,106:31239539,26077553:1343490,485622,11795 -k186,106:31239539,26077553:0 -k186,106:31387652,26077553:148113 ) -g186,106:30911859,26077553 -g186,106:32583029,26077553 +(186,109:29192783,30921977:501378,78643,0 +(186,109:29356637,30921977:173670,78643,0 ) -(186,107:6630773,26919041:25952256,505283,11795 -g186,107:9448823,26919041 -h186,107:9448823,26919041:983040,0,0 -h186,107:10431863,26919041:0,0,0 -g186,107:7613813,26919041 -(186,107:7613813,26919041:1835010,485622,0 -k186,107:9448823,26919041:864422 ) -g186,107:12757080,26919041 -g186,107:16464451,26919041 -g186,107:16464451,26919041 -(186,107:16658333,26919041:501378,78643,0 -$186,107:16658333,26919041 -(186,107:16822187,26919041:173670,78643,0 +(186,109:29694161,30921977:501378,78643,0 +(186,109:29858015,30921977:173670,78643,0 ) -$186,107:17159711,26919041 ) -(186,107:17159711,26919041:501378,78643,0 -(186,107:17323565,26919041:173670,78643,0 +(186,109:30195539,30921977:501378,78643,0 +(186,109:30359393,30921977:173670,78643,0 ) ) -(186,107:17661089,26919041:501378,78643,0 -(186,107:17824943,26919041:173670,78643,0 +(186,109:30696917,30921977:501378,78643,0 +(186,109:30860771,30921977:173670,78643,0 ) ) -(186,107:18162467,26919041:501378,78643,0 -(186,107:18326321,26919041:173670,78643,0 +(186,109:31239539,30921977:1343490,485622,11795 +k186,109:31239539,30921977:0 +k186,109:31387652,30921977:148113 ) +g186,109:30911859,30921977 +g186,109:32583029,30921977 ) -(186,107:18663845,26919041:501378,78643,0 -(186,107:18827699,26919041:173670,78643,0 +(186,110:6630773,31787057:25952256,513147,126483 +g186,110:12529013,31787057 +h186,110:12529013,31787057:3080190,0,0 +h186,110:15609203,31787057:0,0,0 +g186,110:9710963,31787057 +(186,110:9710963,31787057:2818050,485622,11795 +k186,110:12529013,31787057:1275332 ) +g186,110:16686617,31787057 +g186,110:18453467,31787057 +g186,110:22263730,31787057 +g186,110:23654404,31787057 +g186,110:26585174,31787057 +(186,110:26685893,31787057:501378,78643,0 +$186,110:26685893,31787057 +(186,110:26849747,31787057:173670,78643,0 ) -(186,107:19165223,26919041:501378,78643,0 -(186,107:19329077,26919041:173670,78643,0 +$186,110:27187271,31787057 ) +(186,110:27187271,31787057:501378,78643,0 +(186,110:27351125,31787057:173670,78643,0 ) -(186,107:19666601,26919041:501378,78643,0 -(186,107:19830455,26919041:173670,78643,0 ) +(186,110:27688649,31787057:501378,78643,0 +(186,110:27852503,31787057:173670,78643,0 ) -(186,107:20167979,26919041:501378,78643,0 -(186,107:20331833,26919041:173670,78643,0 ) +(186,110:28190027,31787057:501378,78643,0 +(186,110:28353881,31787057:173670,78643,0 ) -(186,107:20669357,26919041:501378,78643,0 -(186,107:20833211,26919041:173670,78643,0 ) +(186,110:28691405,31787057:501378,78643,0 +(186,110:28855259,31787057:173670,78643,0 ) -(186,107:21170735,26919041:501378,78643,0 -(186,107:21334589,26919041:173670,78643,0 ) +(186,110:29192783,31787057:501378,78643,0 +(186,110:29356637,31787057:173670,78643,0 ) -(186,107:21672113,26919041:501378,78643,0 -(186,107:21835967,26919041:173670,78643,0 ) +(186,110:29694161,31787057:501378,78643,0 +(186,110:29858015,31787057:173670,78643,0 ) -(186,107:22173491,26919041:501378,78643,0 -(186,107:22337345,26919041:173670,78643,0 ) +(186,110:30195539,31787057:501378,78643,0 +(186,110:30359393,31787057:173670,78643,0 ) -(186,107:22674869,26919041:501378,78643,0 -(186,107:22838723,26919041:173670,78643,0 ) +(186,110:30696917,31787057:501378,78643,0 +(186,110:30860771,31787057:173670,78643,0 ) -(186,107:23176247,26919041:501378,78643,0 -(186,107:23340101,26919041:173670,78643,0 ) +(186,110:31239539,31787057:1343490,485622,11795 +k186,110:31239539,31787057:0 +k186,110:31387652,31787057:148113 ) -(186,107:23677625,26919041:501378,78643,0 -(186,107:23841479,26919041:173670,78643,0 +g186,110:30911859,31787057 +g186,110:32583029,31787057 ) +(186,111:6630773,32652137:25952256,513147,126483 +g186,111:12529013,32652137 +h186,111:12529013,32652137:3080190,0,0 +h186,111:15609203,32652137:0,0,0 +g186,111:9710963,32652137 +(186,111:9710963,32652137:2818050,485622,11795 +k186,111:12529013,32652137:1275332 ) -(186,107:24179003,26919041:501378,78643,0 -(186,107:24342857,26919041:173670,78643,0 +g186,111:15764525,32652137 +g186,111:17531375,32652137 +g186,111:21341638,32652137 +g186,111:22732312,32652137 +g186,111:26735906,32652137 +(186,111:27187271,32652137:501378,78643,0 +$186,111:27187271,32652137 +(186,111:27351125,32652137:173670,78643,0 ) +$186,111:27688649,32652137 ) -(186,107:24680381,26919041:501378,78643,0 -(186,107:24844235,26919041:173670,78643,0 +(186,111:27688649,32652137:501378,78643,0 +(186,111:27852503,32652137:173670,78643,0 ) ) -(186,107:25181759,26919041:501378,78643,0 -(186,107:25345613,26919041:173670,78643,0 +(186,111:28190027,32652137:501378,78643,0 +(186,111:28353881,32652137:173670,78643,0 ) ) -(186,107:25683137,26919041:501378,78643,0 -(186,107:25846991,26919041:173670,78643,0 +(186,111:28691405,32652137:501378,78643,0 +(186,111:28855259,32652137:173670,78643,0 ) ) -(186,107:26184515,26919041:501378,78643,0 -(186,107:26348369,26919041:173670,78643,0 +(186,111:29192783,32652137:501378,78643,0 +(186,111:29356637,32652137:173670,78643,0 ) ) -(186,107:26685893,26919041:501378,78643,0 -(186,107:26849747,26919041:173670,78643,0 +(186,111:29694161,32652137:501378,78643,0 +(186,111:29858015,32652137:173670,78643,0 ) ) -(186,107:27187271,26919041:501378,78643,0 -(186,107:27351125,26919041:173670,78643,0 +(186,111:30195539,32652137:501378,78643,0 +(186,111:30359393,32652137:173670,78643,0 ) ) -(186,107:27688649,26919041:501378,78643,0 -(186,107:27852503,26919041:173670,78643,0 +(186,111:30696917,32652137:501378,78643,0 +(186,111:30860771,32652137:173670,78643,0 ) ) -(186,107:28190027,26919041:501378,78643,0 -(186,107:28353881,26919041:173670,78643,0 +(186,111:31239539,32652137:1343490,485622,11795 +k186,111:31239539,32652137:0 +k186,111:31387652,32652137:148113 ) +g186,111:30911859,32652137 +g186,111:32583029,32652137 ) -(186,107:28691405,26919041:501378,78643,0 -(186,107:28855259,26919041:173670,78643,0 +(186,112:6630773,33517217:25952256,513147,11795 +g186,112:12529013,33517217 +h186,112:12529013,33517217:3080190,0,0 +h186,112:15609203,33517217:0,0,0 +g186,112:9710963,33517217 +(186,112:9710963,33517217:2818050,485622,11795 +k186,112:12529013,33517217:1275332 ) +g186,112:15979483,33517217 +g186,112:18094985,33517217 +g186,112:19861835,33517217 +g186,112:20416924,33517217 +g186,112:24198351,33517217 +(186,112:24680381,33517217:501378,78643,0 +$186,112:24680381,33517217 +(186,112:24844235,33517217:173670,78643,0 ) -(186,107:29192783,26919041:501378,78643,0 -(186,107:29356637,26919041:173670,78643,0 +$186,112:25181759,33517217 ) +(186,112:25181759,33517217:501378,78643,0 +(186,112:25345613,33517217:173670,78643,0 ) -(186,107:29694161,26919041:501378,78643,0 -(186,107:29858015,26919041:173670,78643,0 ) +(186,112:25683137,33517217:501378,78643,0 +(186,112:25846991,33517217:173670,78643,0 ) -(186,107:30195539,26919041:501378,78643,0 -(186,107:30359393,26919041:173670,78643,0 ) +(186,112:26184515,33517217:501378,78643,0 +(186,112:26348369,33517217:173670,78643,0 ) -(186,107:30696917,26919041:501378,78643,0 -(186,107:30860771,26919041:173670,78643,0 ) +(186,112:26685893,33517217:501378,78643,0 +(186,112:26849747,33517217:173670,78643,0 ) -(186,107:31239539,26919041:1343490,485622,11795 -k186,107:31239539,26919041:0 -k186,107:31387652,26919041:148113 ) -g186,107:30911859,26919041 -g186,107:32583029,26919041 +(186,112:27187271,33517217:501378,78643,0 +(186,112:27351125,33517217:173670,78643,0 ) -(186,108:6630773,27760529:25952256,505283,11795 -g186,108:9448823,27760529 -h186,108:9448823,27760529:983040,0,0 -h186,108:10431863,27760529:0,0,0 -g186,108:7613813,27760529 -(186,108:7613813,27760529:1835010,485622,11795 -k186,108:9448823,27760529:864422 ) -g186,108:13842356,27760529 -g186,108:13842356,27760529 -(186,108:14151443,27760529:501378,78643,0 -$186,108:14151443,27760529 -(186,108:14315297,27760529:173670,78643,0 +(186,112:27688649,33517217:501378,78643,0 +(186,112:27852503,33517217:173670,78643,0 ) -$186,108:14652821,27760529 ) -(186,108:14652821,27760529:501378,78643,0 -(186,108:14816675,27760529:173670,78643,0 +(186,112:28190027,33517217:501378,78643,0 +(186,112:28353881,33517217:173670,78643,0 ) ) -(186,108:15154199,27760529:501378,78643,0 -(186,108:15318053,27760529:173670,78643,0 +(186,112:28691405,33517217:501378,78643,0 +(186,112:28855259,33517217:173670,78643,0 ) ) -(186,108:15655577,27760529:501378,78643,0 -(186,108:15819431,27760529:173670,78643,0 +(186,112:29192783,33517217:501378,78643,0 +(186,112:29356637,33517217:173670,78643,0 ) ) -(186,108:16156955,27760529:501378,78643,0 -(186,108:16320809,27760529:173670,78643,0 +(186,112:29694161,33517217:501378,78643,0 +(186,112:29858015,33517217:173670,78643,0 ) ) -(186,108:16658333,27760529:501378,78643,0 -(186,108:16822187,27760529:173670,78643,0 +(186,112:30195539,33517217:501378,78643,0 +(186,112:30359393,33517217:173670,78643,0 ) ) -(186,108:17159711,27760529:501378,78643,0 -(186,108:17323565,27760529:173670,78643,0 +(186,112:30696917,33517217:501378,78643,0 +(186,112:30860771,33517217:173670,78643,0 ) ) -(186,108:17661089,27760529:501378,78643,0 -(186,108:17824943,27760529:173670,78643,0 +(186,112:31239539,33517217:1343490,485622,11795 +k186,112:31239539,33517217:0 +k186,112:31387652,33517217:148113 ) +g186,112:30911859,33517217 +g186,112:32583029,33517217 ) -(186,108:18162467,27760529:501378,78643,0 -(186,108:18326321,27760529:173670,78643,0 +(186,113:6630773,34382297:25952256,505283,134348 +g186,113:9710963,34382297 +h186,113:9710963,34382297:983040,0,0 +h186,113:10694003,34382297:0,0,0 +g186,113:7613813,34382297 +(186,113:7613813,34382297:2097150,481690,0 +k186,113:9710963,34382297:1126562 ) +g186,113:13161433,34382297 +g186,113:16282912,34382297 +g186,113:16282912,34382297 +(186,113:16658333,34382297:501378,78643,0 +$186,113:16658333,34382297 +(186,113:16822187,34382297:173670,78643,0 ) -(186,108:18663845,27760529:501378,78643,0 -(186,108:18827699,27760529:173670,78643,0 +$186,113:17159711,34382297 ) +(186,113:17159711,34382297:501378,78643,0 +(186,113:17323565,34382297:173670,78643,0 ) -(186,108:19165223,27760529:501378,78643,0 -(186,108:19329077,27760529:173670,78643,0 ) +(186,113:17661089,34382297:501378,78643,0 +(186,113:17824943,34382297:173670,78643,0 ) -(186,108:19666601,27760529:501378,78643,0 -(186,108:19830455,27760529:173670,78643,0 ) +(186,113:18162467,34382297:501378,78643,0 +(186,113:18326321,34382297:173670,78643,0 ) -(186,108:20167979,27760529:501378,78643,0 -(186,108:20331833,27760529:173670,78643,0 ) +(186,113:18663845,34382297:501378,78643,0 +(186,113:18827699,34382297:173670,78643,0 ) -(186,108:20669357,27760529:501378,78643,0 -(186,108:20833211,27760529:173670,78643,0 ) +(186,113:19165223,34382297:501378,78643,0 +(186,113:19329077,34382297:173670,78643,0 ) -(186,108:21170735,27760529:501378,78643,0 -(186,108:21334589,27760529:173670,78643,0 ) +(186,113:19666601,34382297:501378,78643,0 +(186,113:19830455,34382297:173670,78643,0 ) -(186,108:21672113,27760529:501378,78643,0 -(186,108:21835967,27760529:173670,78643,0 ) +(186,113:20167979,34382297:501378,78643,0 +(186,113:20331833,34382297:173670,78643,0 ) -(186,108:22173491,27760529:501378,78643,0 -(186,108:22337345,27760529:173670,78643,0 ) +(186,113:20669357,34382297:501378,78643,0 +(186,113:20833211,34382297:173670,78643,0 ) -(186,108:22674869,27760529:501378,78643,0 -(186,108:22838723,27760529:173670,78643,0 ) +(186,113:21170735,34382297:501378,78643,0 +(186,113:21334589,34382297:173670,78643,0 ) -(186,108:23176247,27760529:501378,78643,0 -(186,108:23340101,27760529:173670,78643,0 ) +(186,113:21672113,34382297:501378,78643,0 +(186,113:21835967,34382297:173670,78643,0 ) -(186,108:23677625,27760529:501378,78643,0 -(186,108:23841479,27760529:173670,78643,0 ) +(186,113:22173491,34382297:501378,78643,0 +(186,113:22337345,34382297:173670,78643,0 ) -(186,108:24179003,27760529:501378,78643,0 -(186,108:24342857,27760529:173670,78643,0 ) +(186,113:22674869,34382297:501378,78643,0 +(186,113:22838723,34382297:173670,78643,0 ) -(186,108:24680381,27760529:501378,78643,0 -(186,108:24844235,27760529:173670,78643,0 ) +(186,113:23176247,34382297:501378,78643,0 +(186,113:23340101,34382297:173670,78643,0 ) -(186,108:25181759,27760529:501378,78643,0 -(186,108:25345613,27760529:173670,78643,0 ) +(186,113:23677625,34382297:501378,78643,0 +(186,113:23841479,34382297:173670,78643,0 ) -(186,108:25683137,27760529:501378,78643,0 -(186,108:25846991,27760529:173670,78643,0 ) +(186,113:24179003,34382297:501378,78643,0 +(186,113:24342857,34382297:173670,78643,0 ) -(186,108:26184515,27760529:501378,78643,0 -(186,108:26348369,27760529:173670,78643,0 ) +(186,113:24680381,34382297:501378,78643,0 +(186,113:24844235,34382297:173670,78643,0 ) -(186,108:26685893,27760529:501378,78643,0 -(186,108:26849747,27760529:173670,78643,0 ) +(186,113:25181759,34382297:501378,78643,0 +(186,113:25345613,34382297:173670,78643,0 ) -(186,108:27187271,27760529:501378,78643,0 -(186,108:27351125,27760529:173670,78643,0 ) +(186,113:25683137,34382297:501378,78643,0 +(186,113:25846991,34382297:173670,78643,0 ) -(186,108:27688649,27760529:501378,78643,0 -(186,108:27852503,27760529:173670,78643,0 ) +(186,113:26184515,34382297:501378,78643,0 +(186,113:26348369,34382297:173670,78643,0 ) -(186,108:28190027,27760529:501378,78643,0 -(186,108:28353881,27760529:173670,78643,0 ) +(186,113:26685893,34382297:501378,78643,0 +(186,113:26849747,34382297:173670,78643,0 ) -(186,108:28691405,27760529:501378,78643,0 -(186,108:28855259,27760529:173670,78643,0 ) +(186,113:27187271,34382297:501378,78643,0 +(186,113:27351125,34382297:173670,78643,0 ) -(186,108:29192783,27760529:501378,78643,0 -(186,108:29356637,27760529:173670,78643,0 ) +(186,113:27688649,34382297:501378,78643,0 +(186,113:27852503,34382297:173670,78643,0 ) -(186,108:29694161,27760529:501378,78643,0 -(186,108:29858015,27760529:173670,78643,0 ) +(186,113:28190027,34382297:501378,78643,0 +(186,113:28353881,34382297:173670,78643,0 ) -(186,108:30195539,27760529:501378,78643,0 -(186,108:30359393,27760529:173670,78643,0 ) +(186,113:28691405,34382297:501378,78643,0 +(186,113:28855259,34382297:173670,78643,0 ) -(186,108:30696917,27760529:501378,78643,0 -(186,108:30860771,27760529:173670,78643,0 ) +(186,113:29192783,34382297:501378,78643,0 +(186,113:29356637,34382297:173670,78643,0 ) -(186,108:31239540,27760529:1343490,485622,11795 -k186,108:31239540,27760529:0 -k186,108:31387653,27760529:148113 ) -g186,108:30911860,27760529 -g186,108:32583030,27760529 +(186,113:29694161,34382297:501378,78643,0 +(186,113:29858015,34382297:173670,78643,0 ) -(186,109:6630773,28602017:25952256,513147,126483 -g186,109:11873653,28602017 -h186,109:11873653,28602017:2818050,0,0 -h186,109:14691703,28602017:0,0,0 -g186,109:9448823,28602017 -(186,109:9448823,28602017:2424830,485622,11795 -k186,109:11873653,28602017:882112 ) -g186,109:14487884,28602017 -g186,109:16254734,28602017 -g186,109:19865768,28602017 -(186,109:20167979,28602017:501378,78643,0 -$186,109:20167979,28602017 -(186,109:20331833,28602017:173670,78643,0 +(186,113:30195539,34382297:501378,78643,0 +(186,113:30359393,34382297:173670,78643,0 ) -$186,109:20669357,28602017 ) -(186,109:20669357,28602017:501378,78643,0 -(186,109:20833211,28602017:173670,78643,0 +(186,113:30696917,34382297:501378,78643,0 +(186,113:30860771,34382297:173670,78643,0 ) ) -(186,109:21170735,28602017:501378,78643,0 -(186,109:21334589,28602017:173670,78643,0 +(186,113:31239539,34382297:1343490,485622,11795 +k186,113:31239539,34382297:0 +k186,113:31387652,34382297:148113 ) +g186,113:30911859,34382297 +g186,113:32583029,34382297 ) -(186,109:21672113,28602017:501378,78643,0 -(186,109:21835967,28602017:173670,78643,0 +(186,114:6630773,35247377:25952256,505283,11795 +g186,114:9710963,35247377 +h186,114:9710963,35247377:983040,0,0 +h186,114:10694003,35247377:0,0,0 +g186,114:7613813,35247377 +(186,114:7613813,35247377:2097150,473825,11795 +k186,114:9710963,35247377:1126562 ) +g186,114:13512706,35247377 +g186,114:13512706,35247377 +(186,114:13650065,35247377:501378,78643,0 +$186,114:13650065,35247377 +(186,114:13813919,35247377:173670,78643,0 ) -(186,109:22173491,28602017:501378,78643,0 -(186,109:22337345,28602017:173670,78643,0 +$186,114:14151443,35247377 ) +(186,114:14151443,35247377:501378,78643,0 +(186,114:14315297,35247377:173670,78643,0 ) -(186,109:22674869,28602017:501378,78643,0 -(186,109:22838723,28602017:173670,78643,0 ) +(186,114:14652821,35247377:501378,78643,0 +(186,114:14816675,35247377:173670,78643,0 ) -(186,109:23176247,28602017:501378,78643,0 -(186,109:23340101,28602017:173670,78643,0 ) +(186,114:15154199,35247377:501378,78643,0 +(186,114:15318053,35247377:173670,78643,0 ) -(186,109:23677625,28602017:501378,78643,0 -(186,109:23841479,28602017:173670,78643,0 ) +(186,114:15655577,35247377:501378,78643,0 +(186,114:15819431,35247377:173670,78643,0 ) -(186,109:24179003,28602017:501378,78643,0 -(186,109:24342857,28602017:173670,78643,0 ) +(186,114:16156955,35247377:501378,78643,0 +(186,114:16320809,35247377:173670,78643,0 ) -(186,109:24680381,28602017:501378,78643,0 -(186,109:24844235,28602017:173670,78643,0 ) +(186,114:16658333,35247377:501378,78643,0 +(186,114:16822187,35247377:173670,78643,0 ) -(186,109:25181759,28602017:501378,78643,0 -(186,109:25345613,28602017:173670,78643,0 ) +(186,114:17159711,35247377:501378,78643,0 +(186,114:17323565,35247377:173670,78643,0 ) -(186,109:25683137,28602017:501378,78643,0 -(186,109:25846991,28602017:173670,78643,0 ) +(186,114:17661089,35247377:501378,78643,0 +(186,114:17824943,35247377:173670,78643,0 ) -(186,109:26184515,28602017:501378,78643,0 -(186,109:26348369,28602017:173670,78643,0 ) +(186,114:18162467,35247377:501378,78643,0 +(186,114:18326321,35247377:173670,78643,0 ) -(186,109:26685893,28602017:501378,78643,0 -(186,109:26849747,28602017:173670,78643,0 ) +(186,114:18663845,35247377:501378,78643,0 +(186,114:18827699,35247377:173670,78643,0 ) -(186,109:27187271,28602017:501378,78643,0 -(186,109:27351125,28602017:173670,78643,0 ) +(186,114:19165223,35247377:501378,78643,0 +(186,114:19329077,35247377:173670,78643,0 ) -(186,109:27688649,28602017:501378,78643,0 -(186,109:27852503,28602017:173670,78643,0 ) +(186,114:19666601,35247377:501378,78643,0 +(186,114:19830455,35247377:173670,78643,0 ) -(186,109:28190027,28602017:501378,78643,0 -(186,109:28353881,28602017:173670,78643,0 ) +(186,114:20167979,35247377:501378,78643,0 +(186,114:20331833,35247377:173670,78643,0 ) -(186,109:28691405,28602017:501378,78643,0 -(186,109:28855259,28602017:173670,78643,0 ) +(186,114:20669357,35247377:501378,78643,0 +(186,114:20833211,35247377:173670,78643,0 ) -(186,109:29192783,28602017:501378,78643,0 -(186,109:29356637,28602017:173670,78643,0 ) +(186,114:21170735,35247377:501378,78643,0 +(186,114:21334589,35247377:173670,78643,0 ) -(186,109:29694161,28602017:501378,78643,0 -(186,109:29858015,28602017:173670,78643,0 ) +(186,114:21672113,35247377:501378,78643,0 +(186,114:21835967,35247377:173670,78643,0 ) -(186,109:30195539,28602017:501378,78643,0 -(186,109:30359393,28602017:173670,78643,0 ) +(186,114:22173491,35247377:501378,78643,0 +(186,114:22337345,35247377:173670,78643,0 ) -(186,109:30696917,28602017:501378,78643,0 -(186,109:30860771,28602017:173670,78643,0 ) +(186,114:22674869,35247377:501378,78643,0 +(186,114:22838723,35247377:173670,78643,0 ) -(186,109:31239539,28602017:1343490,485622,11795 -k186,109:31239539,28602017:0 -k186,109:31387652,28602017:148113 ) -g186,109:30911859,28602017 -g186,109:32583029,28602017 +(186,114:23176247,35247377:501378,78643,0 +(186,114:23340101,35247377:173670,78643,0 ) -(186,110:6630773,29443505:25952256,513147,126483 -g186,110:11873653,29443505 -h186,110:11873653,29443505:2818050,0,0 -h186,110:14691703,29443505:0,0,0 -g186,110:9448823,29443505 -(186,110:9448823,29443505:2424830,485622,11795 -k186,110:11873653,29443505:882112 ) -g186,110:16031257,29443505 -g186,110:17798107,29443505 -g186,110:21608370,29443505 -g186,110:22999044,29443505 -g186,110:25929814,29443505 -(186,110:26184515,29443505:501378,78643,0 -$186,110:26184515,29443505 -(186,110:26348369,29443505:173670,78643,0 +(186,114:23677625,35247377:501378,78643,0 +(186,114:23841479,35247377:173670,78643,0 ) -$186,110:26685893,29443505 ) -(186,110:26685893,29443505:501378,78643,0 -(186,110:26849747,29443505:173670,78643,0 +(186,114:24179003,35247377:501378,78643,0 +(186,114:24342857,35247377:173670,78643,0 ) ) -(186,110:27187271,29443505:501378,78643,0 -(186,110:27351125,29443505:173670,78643,0 +(186,114:24680381,35247377:501378,78643,0 +(186,114:24844235,35247377:173670,78643,0 ) ) -(186,110:27688649,29443505:501378,78643,0 -(186,110:27852503,29443505:173670,78643,0 +(186,114:25181759,35247377:501378,78643,0 +(186,114:25345613,35247377:173670,78643,0 ) ) -(186,110:28190027,29443505:501378,78643,0 -(186,110:28353881,29443505:173670,78643,0 +(186,114:25683137,35247377:501378,78643,0 +(186,114:25846991,35247377:173670,78643,0 ) ) -(186,110:28691405,29443505:501378,78643,0 -(186,110:28855259,29443505:173670,78643,0 +(186,114:26184515,35247377:501378,78643,0 +(186,114:26348369,35247377:173670,78643,0 ) ) -(186,110:29192783,29443505:501378,78643,0 -(186,110:29356637,29443505:173670,78643,0 +(186,114:26685893,35247377:501378,78643,0 +(186,114:26849747,35247377:173670,78643,0 ) ) -(186,110:29694161,29443505:501378,78643,0 -(186,110:29858015,29443505:173670,78643,0 +(186,114:27187271,35247377:501378,78643,0 +(186,114:27351125,35247377:173670,78643,0 ) ) -(186,110:30195539,29443505:501378,78643,0 -(186,110:30359393,29443505:173670,78643,0 +(186,114:27688649,35247377:501378,78643,0 +(186,114:27852503,35247377:173670,78643,0 ) ) -(186,110:30696917,29443505:501378,78643,0 -(186,110:30860771,29443505:173670,78643,0 +(186,114:28190027,35247377:501378,78643,0 +(186,114:28353881,35247377:173670,78643,0 ) ) -(186,110:31239539,29443505:1343490,485622,11795 -k186,110:31239539,29443505:0 -k186,110:31387652,29443505:148113 +(186,114:28691405,35247377:501378,78643,0 +(186,114:28855259,35247377:173670,78643,0 ) -g186,110:30911859,29443505 -g186,110:32583029,29443505 ) -(186,111:6630773,30284993:25952256,513147,126483 -g186,111:11873653,30284993 -h186,111:11873653,30284993:2818050,0,0 -h186,111:14691703,30284993:0,0,0 -g186,111:9448823,30284993 -(186,111:9448823,30284993:2424830,485622,11795 -k186,111:11873653,30284993:882112 +(186,114:29192783,35247377:501378,78643,0 +(186,114:29356637,35247377:173670,78643,0 ) -g186,111:15109165,30284993 -g186,111:16876015,30284993 -g186,111:20686278,30284993 -g186,111:22076952,30284993 -g186,111:26080546,30284993 -(186,111:26184515,30284993:501378,78643,0 -$186,111:26184515,30284993 -(186,111:26348369,30284993:173670,78643,0 ) -$186,111:26685893,30284993 +(186,114:29694161,35247377:501378,78643,0 +(186,114:29858015,35247377:173670,78643,0 ) -(186,111:26685893,30284993:501378,78643,0 -(186,111:26849747,30284993:173670,78643,0 ) +(186,114:30195539,35247377:501378,78643,0 +(186,114:30359393,35247377:173670,78643,0 ) -(186,111:27187271,30284993:501378,78643,0 -(186,111:27351125,30284993:173670,78643,0 ) +(186,114:30696917,35247377:501378,78643,0 +(186,114:30860771,35247377:173670,78643,0 ) -(186,111:27688649,30284993:501378,78643,0 -(186,111:27852503,30284993:173670,78643,0 ) +(186,114:31239538,35247377:1343490,485622,11795 +k186,114:31239538,35247377:0 +k186,114:31387651,35247377:148113 ) -(186,111:28190027,30284993:501378,78643,0 -(186,111:28353881,30284993:173670,78643,0 +g186,114:30911858,35247377 +g186,114:32583028,35247377 ) +(186,115:6630773,36112457:25952256,505283,11795 +g186,115:12529013,36112457 +h186,115:12529013,36112457:3080190,0,0 +h186,115:15609203,36112457:0,0,0 +g186,115:9710963,36112457 +(186,115:9710963,36112457:2818050,477757,11795 +k186,115:12529013,36112457:1275332 ) -(186,111:28691405,30284993:501378,78643,0 -(186,111:28855259,30284993:173670,78643,0 +g186,115:15738966,36112457 +$186,115:15738966,36112457 +$186,115:16183955,36112457 +g186,115:16183955,36112457 +(186,115:16658333,36112457:501378,78643,0 +$186,115:16658333,36112457 +(186,115:16822187,36112457:173670,78643,0 ) +$186,115:17159711,36112457 ) -(186,111:29192783,30284993:501378,78643,0 -(186,111:29356637,30284993:173670,78643,0 +(186,115:17159711,36112457:501378,78643,0 +(186,115:17323565,36112457:173670,78643,0 ) ) -(186,111:29694161,30284993:501378,78643,0 -(186,111:29858015,30284993:173670,78643,0 +(186,115:17661089,36112457:501378,78643,0 +(186,115:17824943,36112457:173670,78643,0 ) ) -(186,111:30195539,30284993:501378,78643,0 -(186,111:30359393,30284993:173670,78643,0 +(186,115:18162467,36112457:501378,78643,0 +(186,115:18326321,36112457:173670,78643,0 ) ) -(186,111:30696917,30284993:501378,78643,0 -(186,111:30860771,30284993:173670,78643,0 +(186,115:18663845,36112457:501378,78643,0 +(186,115:18827699,36112457:173670,78643,0 ) ) -(186,111:31239539,30284993:1343490,485622,11795 -k186,111:31239539,30284993:0 -k186,111:31387652,30284993:148113 +(186,115:19165223,36112457:501378,78643,0 +(186,115:19329077,36112457:173670,78643,0 ) -g186,111:30911859,30284993 -g186,111:32583029,30284993 ) -(186,112:6630773,31126481:25952256,513147,11795 -g186,112:11873653,31126481 -h186,112:11873653,31126481:2818050,0,0 -h186,112:14691703,31126481:0,0,0 -g186,112:9448823,31126481 -(186,112:9448823,31126481:2424830,485622,11795 -k186,112:11873653,31126481:882112 +(186,115:19666601,36112457:501378,78643,0 +(186,115:19830455,36112457:173670,78643,0 ) -g186,112:15324123,31126481 -g186,112:17439625,31126481 -g186,112:19206475,31126481 -g186,112:19761564,31126481 -g186,112:23542991,31126481 -(186,112:23677625,31126481:501378,78643,0 -$186,112:23677625,31126481 -(186,112:23841479,31126481:173670,78643,0 ) -$186,112:24179003,31126481 +(186,115:20167979,36112457:501378,78643,0 +(186,115:20331833,36112457:173670,78643,0 ) -(186,112:24179003,31126481:501378,78643,0 -(186,112:24342857,31126481:173670,78643,0 ) +(186,115:20669357,36112457:501378,78643,0 +(186,115:20833211,36112457:173670,78643,0 ) -(186,112:24680381,31126481:501378,78643,0 -(186,112:24844235,31126481:173670,78643,0 ) +(186,115:21170735,36112457:501378,78643,0 +(186,115:21334589,36112457:173670,78643,0 ) -(186,112:25181759,31126481:501378,78643,0 -(186,112:25345613,31126481:173670,78643,0 ) +(186,115:21672113,36112457:501378,78643,0 +(186,115:21835967,36112457:173670,78643,0 ) -(186,112:25683137,31126481:501378,78643,0 -(186,112:25846991,31126481:173670,78643,0 ) +(186,115:22173491,36112457:501378,78643,0 +(186,115:22337345,36112457:173670,78643,0 ) -(186,112:26184515,31126481:501378,78643,0 -(186,112:26348369,31126481:173670,78643,0 ) +(186,115:22674869,36112457:501378,78643,0 +(186,115:22838723,36112457:173670,78643,0 ) -(186,112:26685893,31126481:501378,78643,0 -(186,112:26849747,31126481:173670,78643,0 ) +(186,115:23176247,36112457:501378,78643,0 +(186,115:23340101,36112457:173670,78643,0 ) -(186,112:27187271,31126481:501378,78643,0 -(186,112:27351125,31126481:173670,78643,0 ) +(186,115:23677625,36112457:501378,78643,0 +(186,115:23841479,36112457:173670,78643,0 ) -(186,112:27688649,31126481:501378,78643,0 -(186,112:27852503,31126481:173670,78643,0 ) +(186,115:24179003,36112457:501378,78643,0 +(186,115:24342857,36112457:173670,78643,0 ) -(186,112:28190027,31126481:501378,78643,0 -(186,112:28353881,31126481:173670,78643,0 ) +(186,115:24680381,36112457:501378,78643,0 +(186,115:24844235,36112457:173670,78643,0 ) -(186,112:28691405,31126481:501378,78643,0 -(186,112:28855259,31126481:173670,78643,0 ) +(186,115:25181759,36112457:501378,78643,0 +(186,115:25345613,36112457:173670,78643,0 ) -(186,112:29192783,31126481:501378,78643,0 -(186,112:29356637,31126481:173670,78643,0 ) +(186,115:25683137,36112457:501378,78643,0 +(186,115:25846991,36112457:173670,78643,0 ) -(186,112:29694161,31126481:501378,78643,0 -(186,112:29858015,31126481:173670,78643,0 ) +(186,115:26184515,36112457:501378,78643,0 +(186,115:26348369,36112457:173670,78643,0 ) -(186,112:30195539,31126481:501378,78643,0 -(186,112:30359393,31126481:173670,78643,0 ) +(186,115:26685893,36112457:501378,78643,0 +(186,115:26849747,36112457:173670,78643,0 ) -(186,112:30696917,31126481:501378,78643,0 -(186,112:30860771,31126481:173670,78643,0 ) +(186,115:27187271,36112457:501378,78643,0 +(186,115:27351125,36112457:173670,78643,0 ) -(186,112:31239539,31126481:1343490,485622,11795 -k186,112:31239539,31126481:0 -k186,112:31387652,31126481:148113 ) -g186,112:30911859,31126481 -g186,112:32583029,31126481 +(186,115:27688649,36112457:501378,78643,0 +(186,115:27852503,36112457:173670,78643,0 ) -(186,113:6630773,31967969:25952256,505283,134348 -g186,113:9448823,31967969 -h186,113:9448823,31967969:983040,0,0 -h186,113:10431863,31967969:0,0,0 -g186,113:7613813,31967969 -(186,113:7613813,31967969:1835010,481690,0 -k186,113:9448823,31967969:864422 ) -g186,113:12899293,31967969 -g186,113:16020772,31967969 -g186,113:16020772,31967969 -(186,113:16156955,31967969:501378,78643,0 -$186,113:16156955,31967969 -(186,113:16320809,31967969:173670,78643,0 +(186,115:28190027,36112457:501378,78643,0 +(186,115:28353881,36112457:173670,78643,0 ) -$186,113:16658333,31967969 ) -(186,113:16658333,31967969:501378,78643,0 -(186,113:16822187,31967969:173670,78643,0 +(186,115:28691405,36112457:501378,78643,0 +(186,115:28855259,36112457:173670,78643,0 ) ) -(186,113:17159711,31967969:501378,78643,0 -(186,113:17323565,31967969:173670,78643,0 +(186,115:29192783,36112457:501378,78643,0 +(186,115:29356637,36112457:173670,78643,0 ) ) -(186,113:17661089,31967969:501378,78643,0 -(186,113:17824943,31967969:173670,78643,0 +(186,115:29694161,36112457:501378,78643,0 +(186,115:29858015,36112457:173670,78643,0 ) ) -(186,113:18162467,31967969:501378,78643,0 -(186,113:18326321,31967969:173670,78643,0 +(186,115:30195539,36112457:501378,78643,0 +(186,115:30359393,36112457:173670,78643,0 ) ) -(186,113:18663845,31967969:501378,78643,0 -(186,113:18827699,31967969:173670,78643,0 +(186,115:30696917,36112457:501378,78643,0 +(186,115:30860771,36112457:173670,78643,0 ) ) -(186,113:19165223,31967969:501378,78643,0 -(186,113:19329077,31967969:173670,78643,0 +(186,115:31239539,36112457:1343490,485622,11795 +k186,115:31239539,36112457:0 +k186,115:31387652,36112457:148113 ) +g186,115:30911859,36112457 +g186,115:32583029,36112457 ) -(186,113:19666601,31967969:501378,78643,0 -(186,113:19830455,31967969:173670,78643,0 +(186,116:6630773,36977537:25952256,505283,126484 +g186,116:12529013,36977537 +h186,116:12529013,36977537:3080190,0,0 +h186,116:15609203,36977537:0,0,0 +g186,116:9710963,36977537 +(186,116:9710963,36977537:2818050,485622,11795 +k186,116:12529013,36977537:1275332 ) +g186,116:15645249,36977537 +$186,116:15645249,36977537 +$186,116:16113831,36977537 +g186,116:16313060,36977537 +g186,116:17703734,36977537 +g186,116:21565115,36977537 +$186,116:21565115,36977537 +$186,116:22023212,36977537 +g186,116:22023212,36977537 +(186,116:22173491,36977537:501378,78643,0 +$186,116:22173491,36977537 +(186,116:22337345,36977537:173670,78643,0 ) -(186,113:20167979,31967969:501378,78643,0 -(186,113:20331833,31967969:173670,78643,0 +$186,116:22674869,36977537 ) +(186,116:22674869,36977537:501378,78643,0 +(186,116:22838723,36977537:173670,78643,0 ) -(186,113:20669357,31967969:501378,78643,0 -(186,113:20833211,31967969:173670,78643,0 ) +(186,116:23176247,36977537:501378,78643,0 +(186,116:23340101,36977537:173670,78643,0 ) -(186,113:21170735,31967969:501378,78643,0 -(186,113:21334589,31967969:173670,78643,0 ) +(186,116:23677625,36977537:501378,78643,0 +(186,116:23841479,36977537:173670,78643,0 ) -(186,113:21672113,31967969:501378,78643,0 -(186,113:21835967,31967969:173670,78643,0 ) +(186,116:24179003,36977537:501378,78643,0 +(186,116:24342857,36977537:173670,78643,0 ) -(186,113:22173491,31967969:501378,78643,0 -(186,113:22337345,31967969:173670,78643,0 ) +(186,116:24680381,36977537:501378,78643,0 +(186,116:24844235,36977537:173670,78643,0 ) -(186,113:22674869,31967969:501378,78643,0 -(186,113:22838723,31967969:173670,78643,0 ) +(186,116:25181759,36977537:501378,78643,0 +(186,116:25345613,36977537:173670,78643,0 ) -(186,113:23176247,31967969:501378,78643,0 -(186,113:23340101,31967969:173670,78643,0 ) +(186,116:25683137,36977537:501378,78643,0 +(186,116:25846991,36977537:173670,78643,0 ) -(186,113:23677625,31967969:501378,78643,0 -(186,113:23841479,31967969:173670,78643,0 ) +(186,116:26184515,36977537:501378,78643,0 +(186,116:26348369,36977537:173670,78643,0 ) -(186,113:24179003,31967969:501378,78643,0 -(186,113:24342857,31967969:173670,78643,0 ) +(186,116:26685893,36977537:501378,78643,0 +(186,116:26849747,36977537:173670,78643,0 ) -(186,113:24680381,31967969:501378,78643,0 -(186,113:24844235,31967969:173670,78643,0 ) +(186,116:27187271,36977537:501378,78643,0 +(186,116:27351125,36977537:173670,78643,0 ) -(186,113:25181759,31967969:501378,78643,0 -(186,113:25345613,31967969:173670,78643,0 ) +(186,116:27688649,36977537:501378,78643,0 +(186,116:27852503,36977537:173670,78643,0 ) -(186,113:25683137,31967969:501378,78643,0 -(186,113:25846991,31967969:173670,78643,0 ) +(186,116:28190027,36977537:501378,78643,0 +(186,116:28353881,36977537:173670,78643,0 ) -(186,113:26184515,31967969:501378,78643,0 -(186,113:26348369,31967969:173670,78643,0 ) +(186,116:28691405,36977537:501378,78643,0 +(186,116:28855259,36977537:173670,78643,0 ) -(186,113:26685893,31967969:501378,78643,0 -(186,113:26849747,31967969:173670,78643,0 ) +(186,116:29192783,36977537:501378,78643,0 +(186,116:29356637,36977537:173670,78643,0 ) -(186,113:27187271,31967969:501378,78643,0 -(186,113:27351125,31967969:173670,78643,0 ) +(186,116:29694161,36977537:501378,78643,0 +(186,116:29858015,36977537:173670,78643,0 ) -(186,113:27688649,31967969:501378,78643,0 -(186,113:27852503,31967969:173670,78643,0 ) +(186,116:30195539,36977537:501378,78643,0 +(186,116:30359393,36977537:173670,78643,0 ) -(186,113:28190027,31967969:501378,78643,0 -(186,113:28353881,31967969:173670,78643,0 ) +(186,116:30696917,36977537:501378,78643,0 +(186,116:30860771,36977537:173670,78643,0 ) -(186,113:28691405,31967969:501378,78643,0 -(186,113:28855259,31967969:173670,78643,0 ) +(186,116:31239539,36977537:1343490,485622,11795 +k186,116:31239539,36977537:0 +k186,116:31387652,36977537:148113 ) -(186,113:29192783,31967969:501378,78643,0 -(186,113:29356637,31967969:173670,78643,0 +g186,116:30911859,36977537 +g186,116:32583029,36977537 ) +(186,117:6630773,37842617:25952256,513147,134348 +g186,117:9710963,37842617 +h186,117:9710963,37842617:983040,0,0 +h186,117:10694003,37842617:0,0,0 +g186,117:7613813,37842617 +(186,117:7613813,37842617:2097150,485622,11795 +k186,117:9710963,37842617:1126562 ) -(186,113:29694161,31967969:501378,78643,0 -(186,113:29858015,31967969:173670,78643,0 +g186,117:11841538,37842617 +g186,117:13975390,37842617 +g186,117:14790657,37842617 +g186,117:15434875,37842617 +g186,117:15434875,37842617 +(186,117:15655577,37842617:501378,78643,0 +$186,117:15655577,37842617 +(186,117:15819431,37842617:173670,78643,0 ) +$186,117:16156955,37842617 ) -(186,113:30195539,31967969:501378,78643,0 -(186,113:30359393,31967969:173670,78643,0 +(186,117:16156955,37842617:501378,78643,0 +(186,117:16320809,37842617:173670,78643,0 ) ) -(186,113:30696917,31967969:501378,78643,0 -(186,113:30860771,31967969:173670,78643,0 +(186,117:16658333,37842617:501378,78643,0 +(186,117:16822187,37842617:173670,78643,0 ) ) -(186,113:31239539,31967969:1343490,485622,11795 -k186,113:31239539,31967969:0 -k186,113:31387652,31967969:148113 +(186,117:17159711,37842617:501378,78643,0 +(186,117:17323565,37842617:173670,78643,0 ) -g186,113:30911859,31967969 -g186,113:32583029,31967969 ) -(186,114:6630773,32809457:25952256,505283,11795 -g186,114:9448823,32809457 -h186,114:9448823,32809457:983040,0,0 -h186,114:10431863,32809457:0,0,0 -g186,114:7613813,32809457 -(186,114:7613813,32809457:1835010,473825,11795 -k186,114:9448823,32809457:864422 +(186,117:17661089,37842617:501378,78643,0 +(186,117:17824943,37842617:173670,78643,0 ) -g186,114:13250566,32809457 -g186,114:13250566,32809457 -(186,114:13650065,32809457:501378,78643,0 -$186,114:13650065,32809457 -(186,114:13813919,32809457:173670,78643,0 ) -$186,114:14151443,32809457 +(186,117:18162467,37842617:501378,78643,0 +(186,117:18326321,37842617:173670,78643,0 ) -(186,114:14151443,32809457:501378,78643,0 -(186,114:14315297,32809457:173670,78643,0 ) +(186,117:18663845,37842617:501378,78643,0 +(186,117:18827699,37842617:173670,78643,0 ) -(186,114:14652821,32809457:501378,78643,0 -(186,114:14816675,32809457:173670,78643,0 ) +(186,117:19165223,37842617:501378,78643,0 +(186,117:19329077,37842617:173670,78643,0 ) -(186,114:15154199,32809457:501378,78643,0 -(186,114:15318053,32809457:173670,78643,0 ) +(186,117:19666601,37842617:501378,78643,0 +(186,117:19830455,37842617:173670,78643,0 ) -(186,114:15655577,32809457:501378,78643,0 -(186,114:15819431,32809457:173670,78643,0 ) +(186,117:20167979,37842617:501378,78643,0 +(186,117:20331833,37842617:173670,78643,0 ) -(186,114:16156955,32809457:501378,78643,0 -(186,114:16320809,32809457:173670,78643,0 ) +(186,117:20669357,37842617:501378,78643,0 +(186,117:20833211,37842617:173670,78643,0 ) -(186,114:16658333,32809457:501378,78643,0 -(186,114:16822187,32809457:173670,78643,0 ) +(186,117:21170735,37842617:501378,78643,0 +(186,117:21334589,37842617:173670,78643,0 ) -(186,114:17159711,32809457:501378,78643,0 -(186,114:17323565,32809457:173670,78643,0 ) +(186,117:21672113,37842617:501378,78643,0 +(186,117:21835967,37842617:173670,78643,0 ) -(186,114:17661089,32809457:501378,78643,0 -(186,114:17824943,32809457:173670,78643,0 ) +(186,117:22173491,37842617:501378,78643,0 +(186,117:22337345,37842617:173670,78643,0 ) -(186,114:18162467,32809457:501378,78643,0 -(186,114:18326321,32809457:173670,78643,0 ) +(186,117:22674869,37842617:501378,78643,0 +(186,117:22838723,37842617:173670,78643,0 ) -(186,114:18663845,32809457:501378,78643,0 -(186,114:18827699,32809457:173670,78643,0 ) +(186,117:23176247,37842617:501378,78643,0 +(186,117:23340101,37842617:173670,78643,0 ) -(186,114:19165223,32809457:501378,78643,0 -(186,114:19329077,32809457:173670,78643,0 ) +(186,117:23677625,37842617:501378,78643,0 +(186,117:23841479,37842617:173670,78643,0 ) -(186,114:19666601,32809457:501378,78643,0 -(186,114:19830455,32809457:173670,78643,0 ) +(186,117:24179003,37842617:501378,78643,0 +(186,117:24342857,37842617:173670,78643,0 ) -(186,114:20167979,32809457:501378,78643,0 -(186,114:20331833,32809457:173670,78643,0 ) +(186,117:24680381,37842617:501378,78643,0 +(186,117:24844235,37842617:173670,78643,0 ) -(186,114:20669357,32809457:501378,78643,0 -(186,114:20833211,32809457:173670,78643,0 ) +(186,117:25181759,37842617:501378,78643,0 +(186,117:25345613,37842617:173670,78643,0 ) -(186,114:21170735,32809457:501378,78643,0 -(186,114:21334589,32809457:173670,78643,0 ) +(186,117:25683137,37842617:501378,78643,0 +(186,117:25846991,37842617:173670,78643,0 ) -(186,114:21672113,32809457:501378,78643,0 -(186,114:21835967,32809457:173670,78643,0 ) +(186,117:26184515,37842617:501378,78643,0 +(186,117:26348369,37842617:173670,78643,0 ) -(186,114:22173491,32809457:501378,78643,0 -(186,114:22337345,32809457:173670,78643,0 ) +(186,117:26685893,37842617:501378,78643,0 +(186,117:26849747,37842617:173670,78643,0 ) -(186,114:22674869,32809457:501378,78643,0 -(186,114:22838723,32809457:173670,78643,0 ) +(186,117:27187271,37842617:501378,78643,0 +(186,117:27351125,37842617:173670,78643,0 ) -(186,114:23176247,32809457:501378,78643,0 -(186,114:23340101,32809457:173670,78643,0 ) +(186,117:27688649,37842617:501378,78643,0 +(186,117:27852503,37842617:173670,78643,0 ) -(186,114:23677625,32809457:501378,78643,0 -(186,114:23841479,32809457:173670,78643,0 ) +(186,117:28190027,37842617:501378,78643,0 +(186,117:28353881,37842617:173670,78643,0 ) -(186,114:24179003,32809457:501378,78643,0 -(186,114:24342857,32809457:173670,78643,0 ) +(186,117:28691405,37842617:501378,78643,0 +(186,117:28855259,37842617:173670,78643,0 ) -(186,114:24680381,32809457:501378,78643,0 -(186,114:24844235,32809457:173670,78643,0 ) +(186,117:29192783,37842617:501378,78643,0 +(186,117:29356637,37842617:173670,78643,0 ) -(186,114:25181759,32809457:501378,78643,0 -(186,114:25345613,32809457:173670,78643,0 ) +(186,117:29694161,37842617:501378,78643,0 +(186,117:29858015,37842617:173670,78643,0 ) -(186,114:25683137,32809457:501378,78643,0 -(186,114:25846991,32809457:173670,78643,0 ) +(186,117:30195539,37842617:501378,78643,0 +(186,117:30359393,37842617:173670,78643,0 ) -(186,114:26184515,32809457:501378,78643,0 -(186,114:26348369,32809457:173670,78643,0 ) +(186,117:30696917,37842617:501378,78643,0 +(186,117:30860771,37842617:173670,78643,0 ) -(186,114:26685893,32809457:501378,78643,0 -(186,114:26849747,32809457:173670,78643,0 ) +(186,117:31239539,37842617:1343490,485622,11795 +k186,117:31239539,37842617:0 +k186,117:31387652,37842617:148113 ) -(186,114:27187271,32809457:501378,78643,0 -(186,114:27351125,32809457:173670,78643,0 +g186,117:30911859,37842617 +g186,117:32583029,37842617 ) +(186,118:6630773,38707697:25952256,505283,134348 +g186,118:9710963,38707697 +h186,118:9710963,38707697:983040,0,0 +h186,118:10694003,38707697:0,0,0 +g186,118:7613813,38707697 +(186,118:7613813,38707697:2097150,473825,0 +k186,118:9710963,38707697:1126562 ) -(186,114:27688649,32809457:501378,78643,0 -(186,114:27852503,32809457:173670,78643,0 +g186,118:11974576,38707697 +g186,118:13986531,38707697 +g186,118:16503768,38707697 +g186,118:16503768,38707697 +(186,118:16658333,38707697:501378,78643,0 +$186,118:16658333,38707697 +(186,118:16822187,38707697:173670,78643,0 ) +$186,118:17159711,38707697 ) -(186,114:28190027,32809457:501378,78643,0 -(186,114:28353881,32809457:173670,78643,0 +(186,118:17159711,38707697:501378,78643,0 +(186,118:17323565,38707697:173670,78643,0 ) ) -(186,114:28691405,32809457:501378,78643,0 -(186,114:28855259,32809457:173670,78643,0 +(186,118:17661089,38707697:501378,78643,0 +(186,118:17824943,38707697:173670,78643,0 ) ) -(186,114:29192783,32809457:501378,78643,0 -(186,114:29356637,32809457:173670,78643,0 +(186,118:18162467,38707697:501378,78643,0 +(186,118:18326321,38707697:173670,78643,0 ) ) -(186,114:29694161,32809457:501378,78643,0 -(186,114:29858015,32809457:173670,78643,0 +(186,118:18663845,38707697:501378,78643,0 +(186,118:18827699,38707697:173670,78643,0 ) ) -(186,114:30195539,32809457:501378,78643,0 -(186,114:30359393,32809457:173670,78643,0 +(186,118:19165223,38707697:501378,78643,0 +(186,118:19329077,38707697:173670,78643,0 ) ) -(186,114:30696917,32809457:501378,78643,0 -(186,114:30860771,32809457:173670,78643,0 +(186,118:19666601,38707697:501378,78643,0 +(186,118:19830455,38707697:173670,78643,0 ) ) -(186,114:31239538,32809457:1343490,485622,11795 -k186,114:31239538,32809457:0 -k186,114:31387651,32809457:148113 +(186,118:20167979,38707697:501378,78643,0 +(186,118:20331833,38707697:173670,78643,0 ) -g186,114:30911858,32809457 -g186,114:32583028,32809457 ) -(186,115:6630773,33650945:25952256,505283,11795 -g186,115:11873653,33650945 -h186,115:11873653,33650945:2818050,0,0 -h186,115:14691703,33650945:0,0,0 -g186,115:9448823,33650945 -(186,115:9448823,33650945:2424830,477757,11795 -k186,115:11873653,33650945:882112 +(186,118:20669357,38707697:501378,78643,0 +(186,118:20833211,38707697:173670,78643,0 ) -g186,115:15083606,33650945 -$186,115:15083606,33650945 -$186,115:15528595,33650945 -g186,115:15528595,33650945 -(186,115:15655577,33650945:501378,78643,0 -$186,115:15655577,33650945 -(186,115:15819431,33650945:173670,78643,0 ) -$186,115:16156955,33650945 +(186,118:21170735,38707697:501378,78643,0 +(186,118:21334589,38707697:173670,78643,0 ) -(186,115:16156955,33650945:501378,78643,0 -(186,115:16320809,33650945:173670,78643,0 ) +(186,118:21672113,38707697:501378,78643,0 +(186,118:21835967,38707697:173670,78643,0 ) -(186,115:16658333,33650945:501378,78643,0 -(186,115:16822187,33650945:173670,78643,0 ) +(186,118:22173491,38707697:501378,78643,0 +(186,118:22337345,38707697:173670,78643,0 ) -(186,115:17159711,33650945:501378,78643,0 -(186,115:17323565,33650945:173670,78643,0 ) +(186,118:22674869,38707697:501378,78643,0 +(186,118:22838723,38707697:173670,78643,0 ) -(186,115:17661089,33650945:501378,78643,0 -(186,115:17824943,33650945:173670,78643,0 ) +(186,118:23176247,38707697:501378,78643,0 +(186,118:23340101,38707697:173670,78643,0 ) -(186,115:18162467,33650945:501378,78643,0 -(186,115:18326321,33650945:173670,78643,0 ) +(186,118:23677625,38707697:501378,78643,0 +(186,118:23841479,38707697:173670,78643,0 ) -(186,115:18663845,33650945:501378,78643,0 -(186,115:18827699,33650945:173670,78643,0 ) +(186,118:24179003,38707697:501378,78643,0 +(186,118:24342857,38707697:173670,78643,0 ) -(186,115:19165223,33650945:501378,78643,0 -(186,115:19329077,33650945:173670,78643,0 ) +(186,118:24680381,38707697:501378,78643,0 +(186,118:24844235,38707697:173670,78643,0 ) -(186,115:19666601,33650945:501378,78643,0 -(186,115:19830455,33650945:173670,78643,0 ) +(186,118:25181759,38707697:501378,78643,0 +(186,118:25345613,38707697:173670,78643,0 ) -(186,115:20167979,33650945:501378,78643,0 -(186,115:20331833,33650945:173670,78643,0 ) +(186,118:25683137,38707697:501378,78643,0 +(186,118:25846991,38707697:173670,78643,0 ) -(186,115:20669357,33650945:501378,78643,0 -(186,115:20833211,33650945:173670,78643,0 ) +(186,118:26184515,38707697:501378,78643,0 +(186,118:26348369,38707697:173670,78643,0 ) -(186,115:21170735,33650945:501378,78643,0 -(186,115:21334589,33650945:173670,78643,0 ) +(186,118:26685893,38707697:501378,78643,0 +(186,118:26849747,38707697:173670,78643,0 ) -(186,115:21672113,33650945:501378,78643,0 -(186,115:21835967,33650945:173670,78643,0 ) +(186,118:27187271,38707697:501378,78643,0 +(186,118:27351125,38707697:173670,78643,0 ) -(186,115:22173491,33650945:501378,78643,0 -(186,115:22337345,33650945:173670,78643,0 ) +(186,118:27688649,38707697:501378,78643,0 +(186,118:27852503,38707697:173670,78643,0 ) -(186,115:22674869,33650945:501378,78643,0 -(186,115:22838723,33650945:173670,78643,0 ) +(186,118:28190027,38707697:501378,78643,0 +(186,118:28353881,38707697:173670,78643,0 ) -(186,115:23176247,33650945:501378,78643,0 -(186,115:23340101,33650945:173670,78643,0 ) +(186,118:28691405,38707697:501378,78643,0 +(186,118:28855259,38707697:173670,78643,0 ) -(186,115:23677625,33650945:501378,78643,0 -(186,115:23841479,33650945:173670,78643,0 ) +(186,118:29192783,38707697:501378,78643,0 +(186,118:29356637,38707697:173670,78643,0 ) -(186,115:24179003,33650945:501378,78643,0 -(186,115:24342857,33650945:173670,78643,0 ) +(186,118:29694161,38707697:501378,78643,0 +(186,118:29858015,38707697:173670,78643,0 ) -(186,115:24680381,33650945:501378,78643,0 -(186,115:24844235,33650945:173670,78643,0 ) +(186,118:30195539,38707697:501378,78643,0 +(186,118:30359393,38707697:173670,78643,0 ) -(186,115:25181759,33650945:501378,78643,0 -(186,115:25345613,33650945:173670,78643,0 ) +(186,118:30696917,38707697:501378,78643,0 +(186,118:30860771,38707697:173670,78643,0 ) -(186,115:25683137,33650945:501378,78643,0 -(186,115:25846991,33650945:173670,78643,0 ) +(186,118:31239539,38707697:1343490,485622,11795 +k186,118:31239539,38707697:0 +k186,118:31387652,38707697:148113 ) -(186,115:26184515,33650945:501378,78643,0 -(186,115:26348369,33650945:173670,78643,0 +g186,118:30911859,38707697 +g186,118:32583029,38707697 ) +(186,119:6630773,39572777:25952256,485622,134348 +g186,119:12529013,39572777 +h186,119:12529013,39572777:3080190,0,0 +h186,119:15609203,39572777:0,0,0 +g186,119:9710963,39572777 +(186,119:9710963,39572777:2818050,477757,0 +k186,119:12529013,39572777:1275332 ) -(186,115:26685893,33650945:501378,78643,0 -(186,115:26849747,33650945:173670,78643,0 +g186,119:16002421,39572777 +(186,119:16156955,39572777:501378,78643,0 +$186,119:16156955,39572777 +(186,119:16320809,39572777:173670,78643,0 ) +$186,119:16658333,39572777 ) -(186,115:27187271,33650945:501378,78643,0 -(186,115:27351125,33650945:173670,78643,0 +(186,119:16658333,39572777:501378,78643,0 +(186,119:16822187,39572777:173670,78643,0 ) ) -(186,115:27688649,33650945:501378,78643,0 -(186,115:27852503,33650945:173670,78643,0 +(186,119:17159711,39572777:501378,78643,0 +(186,119:17323565,39572777:173670,78643,0 ) ) -(186,115:28190027,33650945:501378,78643,0 -(186,115:28353881,33650945:173670,78643,0 +(186,119:17661089,39572777:501378,78643,0 +(186,119:17824943,39572777:173670,78643,0 ) ) -(186,115:28691405,33650945:501378,78643,0 -(186,115:28855259,33650945:173670,78643,0 +(186,119:18162467,39572777:501378,78643,0 +(186,119:18326321,39572777:173670,78643,0 ) ) -(186,115:29192783,33650945:501378,78643,0 -(186,115:29356637,33650945:173670,78643,0 +(186,119:18663845,39572777:501378,78643,0 +(186,119:18827699,39572777:173670,78643,0 ) ) -(186,115:29694161,33650945:501378,78643,0 -(186,115:29858015,33650945:173670,78643,0 +(186,119:19165223,39572777:501378,78643,0 +(186,119:19329077,39572777:173670,78643,0 ) ) -(186,115:30195539,33650945:501378,78643,0 -(186,115:30359393,33650945:173670,78643,0 +(186,119:19666601,39572777:501378,78643,0 +(186,119:19830455,39572777:173670,78643,0 ) ) -(186,115:30696917,33650945:501378,78643,0 -(186,115:30860771,33650945:173670,78643,0 +(186,119:20167979,39572777:501378,78643,0 +(186,119:20331833,39572777:173670,78643,0 ) ) -(186,115:31239539,33650945:1343490,485622,11795 -k186,115:31239539,33650945:0 -k186,115:31387652,33650945:148113 +(186,119:20669357,39572777:501378,78643,0 +(186,119:20833211,39572777:173670,78643,0 ) -g186,115:30911859,33650945 -g186,115:32583029,33650945 ) -(186,116:6630773,34492433:25952256,505283,126484 -g186,116:11873653,34492433 -h186,116:11873653,34492433:2818050,0,0 -h186,116:14691703,34492433:0,0,0 -g186,116:9448823,34492433 -(186,116:9448823,34492433:2424830,485622,11795 -k186,116:11873653,34492433:882112 +(186,119:21170735,39572777:501378,78643,0 +(186,119:21334589,39572777:173670,78643,0 ) -g186,116:14989889,34492433 -$186,116:14989889,34492433 -$186,116:15458471,34492433 -g186,116:15657700,34492433 -g186,116:17048374,34492433 -g186,116:20909755,34492433 -$186,116:20909755,34492433 -$186,116:21367852,34492433 -g186,116:21367852,34492433 -(186,116:21672113,34492433:501378,78643,0 -$186,116:21672113,34492433 -(186,116:21835967,34492433:173670,78643,0 ) -$186,116:22173491,34492433 +(186,119:21672113,39572777:501378,78643,0 +(186,119:21835967,39572777:173670,78643,0 ) -(186,116:22173491,34492433:501378,78643,0 -(186,116:22337345,34492433:173670,78643,0 ) +(186,119:22173491,39572777:501378,78643,0 +(186,119:22337345,39572777:173670,78643,0 ) -(186,116:22674869,34492433:501378,78643,0 -(186,116:22838723,34492433:173670,78643,0 ) +(186,119:22674869,39572777:501378,78643,0 +(186,119:22838723,39572777:173670,78643,0 ) -(186,116:23176247,34492433:501378,78643,0 -(186,116:23340101,34492433:173670,78643,0 ) +(186,119:23176247,39572777:501378,78643,0 +(186,119:23340101,39572777:173670,78643,0 ) -(186,116:23677625,34492433:501378,78643,0 -(186,116:23841479,34492433:173670,78643,0 ) +(186,119:23677625,39572777:501378,78643,0 +(186,119:23841479,39572777:173670,78643,0 ) -(186,116:24179003,34492433:501378,78643,0 -(186,116:24342857,34492433:173670,78643,0 ) +(186,119:24179003,39572777:501378,78643,0 +(186,119:24342857,39572777:173670,78643,0 ) -(186,116:24680381,34492433:501378,78643,0 -(186,116:24844235,34492433:173670,78643,0 ) +(186,119:24680381,39572777:501378,78643,0 +(186,119:24844235,39572777:173670,78643,0 ) -(186,116:25181759,34492433:501378,78643,0 -(186,116:25345613,34492433:173670,78643,0 ) +(186,119:25181759,39572777:501378,78643,0 +(186,119:25345613,39572777:173670,78643,0 ) -(186,116:25683137,34492433:501378,78643,0 -(186,116:25846991,34492433:173670,78643,0 ) +(186,119:25683137,39572777:501378,78643,0 +(186,119:25846991,39572777:173670,78643,0 ) -(186,116:26184515,34492433:501378,78643,0 -(186,116:26348369,34492433:173670,78643,0 ) +(186,119:26184515,39572777:501378,78643,0 +(186,119:26348369,39572777:173670,78643,0 ) -(186,116:26685893,34492433:501378,78643,0 -(186,116:26849747,34492433:173670,78643,0 ) +(186,119:26685893,39572777:501378,78643,0 +(186,119:26849747,39572777:173670,78643,0 ) -(186,116:27187271,34492433:501378,78643,0 -(186,116:27351125,34492433:173670,78643,0 ) +(186,119:27187271,39572777:501378,78643,0 +(186,119:27351125,39572777:173670,78643,0 ) -(186,116:27688649,34492433:501378,78643,0 -(186,116:27852503,34492433:173670,78643,0 ) +(186,119:27688649,39572777:501378,78643,0 +(186,119:27852503,39572777:173670,78643,0 ) -(186,116:28190027,34492433:501378,78643,0 -(186,116:28353881,34492433:173670,78643,0 ) +(186,119:28190027,39572777:501378,78643,0 +(186,119:28353881,39572777:173670,78643,0 ) -(186,116:28691405,34492433:501378,78643,0 -(186,116:28855259,34492433:173670,78643,0 ) +(186,119:28691405,39572777:501378,78643,0 +(186,119:28855259,39572777:173670,78643,0 ) -(186,116:29192783,34492433:501378,78643,0 -(186,116:29356637,34492433:173670,78643,0 ) +(186,119:29192783,39572777:501378,78643,0 +(186,119:29356637,39572777:173670,78643,0 ) -(186,116:29694161,34492433:501378,78643,0 -(186,116:29858015,34492433:173670,78643,0 ) +(186,119:29694161,39572777:501378,78643,0 +(186,119:29858015,39572777:173670,78643,0 ) -(186,116:30195539,34492433:501378,78643,0 -(186,116:30359393,34492433:173670,78643,0 ) +(186,119:30195539,39572777:501378,78643,0 +(186,119:30359393,39572777:173670,78643,0 ) -(186,116:30696917,34492433:501378,78643,0 -(186,116:30860771,34492433:173670,78643,0 ) +(186,119:30696917,39572777:501378,78643,0 +(186,119:30860771,39572777:173670,78643,0 ) -(186,116:31239539,34492433:1343490,485622,11795 -k186,116:31239539,34492433:0 -k186,116:31387652,34492433:148113 ) -g186,116:30911859,34492433 -g186,116:32583029,34492433 +(186,119:31239539,39572777:1343490,485622,11795 +k186,119:31239539,39572777:0 +k186,119:31387652,39572777:148113 ) -(186,117:6630773,35333921:25952256,513147,134348 -g186,117:9448823,35333921 -h186,117:9448823,35333921:983040,0,0 -h186,117:10431863,35333921:0,0,0 -g186,117:7613813,35333921 -(186,117:7613813,35333921:1835010,485622,11795 -k186,117:9448823,35333921:864422 +g186,119:30911859,39572777 +g186,119:32583029,39572777 ) -g186,117:11579398,35333921 -g186,117:13713250,35333921 -g186,117:14528517,35333921 -g186,117:15172735,35333921 -g186,117:15172735,35333921 -(186,117:15655577,35333921:501378,78643,0 -$186,117:15655577,35333921 -(186,117:15819431,35333921:173670,78643,0 +(186,120:6630773,40437857:25952256,513147,126483 +g186,120:12529013,40437857 +h186,120:12529013,40437857:3080190,0,0 +h186,120:15609203,40437857:0,0,0 +g186,120:9710963,40437857 +(186,120:9710963,40437857:2818050,485622,0 +k186,120:12529013,40437857:1275332 ) -$186,117:16156955,35333921 +g186,120:15414563,40437857 +g186,120:16273084,40437857 +g186,120:19300192,40437857 +g186,120:21734855,40437857 +(186,120:22173491,40437857:501378,78643,0 +$186,120:22173491,40437857 +(186,120:22337345,40437857:173670,78643,0 ) -(186,117:16156955,35333921:501378,78643,0 -(186,117:16320809,35333921:173670,78643,0 +$186,120:22674869,40437857 ) +(186,120:22674869,40437857:501378,78643,0 +(186,120:22838723,40437857:173670,78643,0 ) -(186,117:16658333,35333921:501378,78643,0 -(186,117:16822187,35333921:173670,78643,0 ) +(186,120:23176247,40437857:501378,78643,0 +(186,120:23340101,40437857:173670,78643,0 ) -(186,117:17159711,35333921:501378,78643,0 -(186,117:17323565,35333921:173670,78643,0 ) +(186,120:23677625,40437857:501378,78643,0 +(186,120:23841479,40437857:173670,78643,0 ) -(186,117:17661089,35333921:501378,78643,0 -(186,117:17824943,35333921:173670,78643,0 ) +(186,120:24179003,40437857:501378,78643,0 +(186,120:24342857,40437857:173670,78643,0 ) -(186,117:18162467,35333921:501378,78643,0 -(186,117:18326321,35333921:173670,78643,0 ) +(186,120:24680381,40437857:501378,78643,0 +(186,120:24844235,40437857:173670,78643,0 ) -(186,117:18663845,35333921:501378,78643,0 -(186,117:18827699,35333921:173670,78643,0 ) +(186,120:25181759,40437857:501378,78643,0 +(186,120:25345613,40437857:173670,78643,0 ) -(186,117:19165223,35333921:501378,78643,0 -(186,117:19329077,35333921:173670,78643,0 ) +(186,120:25683137,40437857:501378,78643,0 +(186,120:25846991,40437857:173670,78643,0 ) -(186,117:19666601,35333921:501378,78643,0 -(186,117:19830455,35333921:173670,78643,0 ) +(186,120:26184515,40437857:501378,78643,0 +(186,120:26348369,40437857:173670,78643,0 ) -(186,117:20167979,35333921:501378,78643,0 -(186,117:20331833,35333921:173670,78643,0 ) +(186,120:26685893,40437857:501378,78643,0 +(186,120:26849747,40437857:173670,78643,0 ) -(186,117:20669357,35333921:501378,78643,0 -(186,117:20833211,35333921:173670,78643,0 ) +(186,120:27187271,40437857:501378,78643,0 +(186,120:27351125,40437857:173670,78643,0 ) -(186,117:21170735,35333921:501378,78643,0 -(186,117:21334589,35333921:173670,78643,0 ) +(186,120:27688649,40437857:501378,78643,0 +(186,120:27852503,40437857:173670,78643,0 ) -(186,117:21672113,35333921:501378,78643,0 -(186,117:21835967,35333921:173670,78643,0 ) +(186,120:28190027,40437857:501378,78643,0 +(186,120:28353881,40437857:173670,78643,0 ) -(186,117:22173491,35333921:501378,78643,0 -(186,117:22337345,35333921:173670,78643,0 ) +(186,120:28691405,40437857:501378,78643,0 +(186,120:28855259,40437857:173670,78643,0 ) -(186,117:22674869,35333921:501378,78643,0 -(186,117:22838723,35333921:173670,78643,0 ) +(186,120:29192783,40437857:501378,78643,0 +(186,120:29356637,40437857:173670,78643,0 ) -(186,117:23176247,35333921:501378,78643,0 -(186,117:23340101,35333921:173670,78643,0 ) +(186,120:29694161,40437857:501378,78643,0 +(186,120:29858015,40437857:173670,78643,0 ) -(186,117:23677625,35333921:501378,78643,0 -(186,117:23841479,35333921:173670,78643,0 ) +(186,120:30195539,40437857:501378,78643,0 +(186,120:30359393,40437857:173670,78643,0 ) -(186,117:24179003,35333921:501378,78643,0 -(186,117:24342857,35333921:173670,78643,0 ) +(186,120:30696917,40437857:501378,78643,0 +(186,120:30860771,40437857:173670,78643,0 ) -(186,117:24680381,35333921:501378,78643,0 -(186,117:24844235,35333921:173670,78643,0 ) +(186,120:31239539,40437857:1343490,485622,11795 +k186,120:31239539,40437857:0 +k186,120:31387652,40437857:148113 ) -(186,117:25181759,35333921:501378,78643,0 -(186,117:25345613,35333921:173670,78643,0 +g186,120:30911859,40437857 +g186,120:32583029,40437857 ) +(186,121:6630773,41302937:25952256,513147,126483 +g186,121:12529013,41302937 +h186,121:12529013,41302937:3080190,0,0 +h186,121:15609203,41302937:0,0,0 +g186,121:9710963,41302937 +(186,121:9710963,41302937:2818050,485622,11795 +k186,121:12529013,41302937:1275332 ) -(186,117:25683137,35333921:501378,78643,0 -(186,117:25846991,35333921:173670,78643,0 +g186,121:15414563,41302937 +g186,121:16273084,41302937 +g186,121:20028296,41302937 +g186,121:22918434,41302937 +(186,121:23176247,41302937:501378,78643,0 +$186,121:23176247,41302937 +(186,121:23340101,41302937:173670,78643,0 ) +$186,121:23677625,41302937 ) -(186,117:26184515,35333921:501378,78643,0 -(186,117:26348369,35333921:173670,78643,0 +(186,121:23677625,41302937:501378,78643,0 +(186,121:23841479,41302937:173670,78643,0 ) ) -(186,117:26685893,35333921:501378,78643,0 -(186,117:26849747,35333921:173670,78643,0 +(186,121:24179003,41302937:501378,78643,0 +(186,121:24342857,41302937:173670,78643,0 ) ) -(186,117:27187271,35333921:501378,78643,0 -(186,117:27351125,35333921:173670,78643,0 +(186,121:24680381,41302937:501378,78643,0 +(186,121:24844235,41302937:173670,78643,0 ) ) -(186,117:27688649,35333921:501378,78643,0 -(186,117:27852503,35333921:173670,78643,0 +(186,121:25181759,41302937:501378,78643,0 +(186,121:25345613,41302937:173670,78643,0 ) ) -(186,117:28190027,35333921:501378,78643,0 -(186,117:28353881,35333921:173670,78643,0 +(186,121:25683137,41302937:501378,78643,0 +(186,121:25846991,41302937:173670,78643,0 ) ) -(186,117:28691405,35333921:501378,78643,0 -(186,117:28855259,35333921:173670,78643,0 +(186,121:26184515,41302937:501378,78643,0 +(186,121:26348369,41302937:173670,78643,0 ) ) -(186,117:29192783,35333921:501378,78643,0 -(186,117:29356637,35333921:173670,78643,0 +(186,121:26685893,41302937:501378,78643,0 +(186,121:26849747,41302937:173670,78643,0 ) ) -(186,117:29694161,35333921:501378,78643,0 -(186,117:29858015,35333921:173670,78643,0 +(186,121:27187271,41302937:501378,78643,0 +(186,121:27351125,41302937:173670,78643,0 ) ) -(186,117:30195539,35333921:501378,78643,0 -(186,117:30359393,35333921:173670,78643,0 +(186,121:27688649,41302937:501378,78643,0 +(186,121:27852503,41302937:173670,78643,0 ) ) -(186,117:30696917,35333921:501378,78643,0 -(186,117:30860771,35333921:173670,78643,0 +(186,121:28190027,41302937:501378,78643,0 +(186,121:28353881,41302937:173670,78643,0 ) ) -(186,117:31239539,35333921:1343490,485622,11795 -k186,117:31239539,35333921:0 -k186,117:31387652,35333921:148113 +(186,121:28691405,41302937:501378,78643,0 +(186,121:28855259,41302937:173670,78643,0 ) -g186,117:30911859,35333921 -g186,117:32583029,35333921 ) -(186,118:6630773,36175409:25952256,505283,134348 -g186,118:9448823,36175409 -h186,118:9448823,36175409:983040,0,0 -h186,118:10431863,36175409:0,0,0 -g186,118:7613813,36175409 -(186,118:7613813,36175409:1835010,473825,0 -k186,118:9448823,36175409:864422 +(186,121:29192783,41302937:501378,78643,0 +(186,121:29356637,41302937:173670,78643,0 ) -g186,118:11712436,36175409 -g186,118:13724391,36175409 -g186,118:16241628,36175409 -g186,118:16241628,36175409 -(186,118:16658333,36175409:501378,78643,0 -$186,118:16658333,36175409 -(186,118:16822187,36175409:173670,78643,0 ) -$186,118:17159711,36175409 +(186,121:29694161,41302937:501378,78643,0 +(186,121:29858015,41302937:173670,78643,0 ) -(186,118:17159711,36175409:501378,78643,0 -(186,118:17323565,36175409:173670,78643,0 ) +(186,121:30195539,41302937:501378,78643,0 +(186,121:30359393,41302937:173670,78643,0 ) -(186,118:17661089,36175409:501378,78643,0 -(186,118:17824943,36175409:173670,78643,0 ) +(186,121:30696917,41302937:501378,78643,0 +(186,121:30860771,41302937:173670,78643,0 ) -(186,118:18162467,36175409:501378,78643,0 -(186,118:18326321,36175409:173670,78643,0 ) +(186,121:31239539,41302937:1343490,485622,11795 +k186,121:31239539,41302937:0 +k186,121:31387652,41302937:148113 ) -(186,118:18663845,36175409:501378,78643,0 -(186,118:18827699,36175409:173670,78643,0 +g186,121:30911859,41302937 +g186,121:32583029,41302937 ) +(186,122:6630773,42168017:25952256,505283,126483 +g186,122:12529013,42168017 +h186,122:12529013,42168017:3080190,0,0 +h186,122:15609203,42168017:0,0,0 +g186,122:9710963,42168017 +(186,122:9710963,42168017:2818050,481690,0 +k186,122:12529013,42168017:1275332 ) -(186,118:19165223,36175409:501378,78643,0 -(186,118:19329077,36175409:173670,78643,0 +g186,122:14659588,42168017 +g186,122:17075245,42168017 +g186,122:18465919,42168017 +g186,122:21297074,42168017 +(186,122:21672113,42168017:501378,78643,0 +$186,122:21672113,42168017 +(186,122:21835967,42168017:173670,78643,0 ) +$186,122:22173491,42168017 ) -(186,118:19666601,36175409:501378,78643,0 -(186,118:19830455,36175409:173670,78643,0 +(186,122:22173491,42168017:501378,78643,0 +(186,122:22337345,42168017:173670,78643,0 ) ) -(186,118:20167979,36175409:501378,78643,0 -(186,118:20331833,36175409:173670,78643,0 +(186,122:22674869,42168017:501378,78643,0 +(186,122:22838723,42168017:173670,78643,0 ) ) -(186,118:20669357,36175409:501378,78643,0 -(186,118:20833211,36175409:173670,78643,0 +(186,122:23176247,42168017:501378,78643,0 +(186,122:23340101,42168017:173670,78643,0 ) ) -(186,118:21170735,36175409:501378,78643,0 -(186,118:21334589,36175409:173670,78643,0 +(186,122:23677625,42168017:501378,78643,0 +(186,122:23841479,42168017:173670,78643,0 ) ) -(186,118:21672113,36175409:501378,78643,0 -(186,118:21835967,36175409:173670,78643,0 +(186,122:24179003,42168017:501378,78643,0 +(186,122:24342857,42168017:173670,78643,0 ) ) -(186,118:22173491,36175409:501378,78643,0 -(186,118:22337345,36175409:173670,78643,0 +(186,122:24680381,42168017:501378,78643,0 +(186,122:24844235,42168017:173670,78643,0 ) ) -(186,118:22674869,36175409:501378,78643,0 -(186,118:22838723,36175409:173670,78643,0 +(186,122:25181759,42168017:501378,78643,0 +(186,122:25345613,42168017:173670,78643,0 ) ) -(186,118:23176247,36175409:501378,78643,0 -(186,118:23340101,36175409:173670,78643,0 +(186,122:25683137,42168017:501378,78643,0 +(186,122:25846991,42168017:173670,78643,0 ) ) -(186,118:23677625,36175409:501378,78643,0 -(186,118:23841479,36175409:173670,78643,0 +(186,122:26184515,42168017:501378,78643,0 +(186,122:26348369,42168017:173670,78643,0 ) ) -(186,118:24179003,36175409:501378,78643,0 -(186,118:24342857,36175409:173670,78643,0 +(186,122:26685893,42168017:501378,78643,0 +(186,122:26849747,42168017:173670,78643,0 ) ) -(186,118:24680381,36175409:501378,78643,0 -(186,118:24844235,36175409:173670,78643,0 +(186,122:27187271,42168017:501378,78643,0 +(186,122:27351125,42168017:173670,78643,0 ) ) -(186,118:25181759,36175409:501378,78643,0 -(186,118:25345613,36175409:173670,78643,0 +(186,122:27688649,42168017:501378,78643,0 +(186,122:27852503,42168017:173670,78643,0 ) ) -(186,118:25683137,36175409:501378,78643,0 -(186,118:25846991,36175409:173670,78643,0 +(186,122:28190027,42168017:501378,78643,0 +(186,122:28353881,42168017:173670,78643,0 ) ) -(186,118:26184515,36175409:501378,78643,0 -(186,118:26348369,36175409:173670,78643,0 +(186,122:28691405,42168017:501378,78643,0 +(186,122:28855259,42168017:173670,78643,0 ) ) -(186,118:26685893,36175409:501378,78643,0 -(186,118:26849747,36175409:173670,78643,0 +(186,122:29192783,42168017:501378,78643,0 +(186,122:29356637,42168017:173670,78643,0 ) ) -(186,118:27187271,36175409:501378,78643,0 -(186,118:27351125,36175409:173670,78643,0 +(186,122:29694161,42168017:501378,78643,0 +(186,122:29858015,42168017:173670,78643,0 ) ) -(186,118:27688649,36175409:501378,78643,0 -(186,118:27852503,36175409:173670,78643,0 +(186,122:30195539,42168017:501378,78643,0 +(186,122:30359393,42168017:173670,78643,0 ) ) -(186,118:28190027,36175409:501378,78643,0 -(186,118:28353881,36175409:173670,78643,0 +(186,122:30696917,42168017:501378,78643,0 +(186,122:30860771,42168017:173670,78643,0 ) ) -(186,118:28691405,36175409:501378,78643,0 -(186,118:28855259,36175409:173670,78643,0 +(186,122:31239539,42168017:1343490,485622,11795 +k186,122:31239539,42168017:0 +k186,122:31387652,42168017:148113 ) +g186,122:30911859,42168017 +g186,122:32583029,42168017 ) -(186,118:29192783,36175409:501378,78643,0 -(186,118:29356637,36175409:173670,78643,0 +(186,123:6630773,43033097:25952256,505283,11795 +g186,123:9710963,43033097 +h186,123:9710963,43033097:983040,0,0 +h186,123:10694003,43033097:0,0,0 +g186,123:7613813,43033097 +(186,123:7613813,43033097:2097150,485622,11795 +k186,123:9710963,43033097:1126562 ) +g186,123:13708003,43033097 +g186,123:15719958,43033097 +g186,123:18237195,43033097 +g186,123:18237195,43033097 +(186,123:18663845,43033097:501378,78643,0 +$186,123:18663845,43033097 +(186,123:18827699,43033097:173670,78643,0 ) -(186,118:29694161,36175409:501378,78643,0 -(186,118:29858015,36175409:173670,78643,0 +$186,123:19165223,43033097 ) +(186,123:19165223,43033097:501378,78643,0 +(186,123:19329077,43033097:173670,78643,0 ) -(186,118:30195539,36175409:501378,78643,0 -(186,118:30359393,36175409:173670,78643,0 ) +(186,123:19666601,43033097:501378,78643,0 +(186,123:19830455,43033097:173670,78643,0 ) -(186,118:30696917,36175409:501378,78643,0 -(186,118:30860771,36175409:173670,78643,0 ) +(186,123:20167979,43033097:501378,78643,0 +(186,123:20331833,43033097:173670,78643,0 ) -(186,118:31239539,36175409:1343490,485622,11795 -k186,118:31239539,36175409:0 -k186,118:31387652,36175409:148113 ) -g186,118:30911859,36175409 -g186,118:32583029,36175409 +(186,123:20669357,43033097:501378,78643,0 +(186,123:20833211,43033097:173670,78643,0 ) -(186,119:6630773,37016897:25952256,485622,134348 -g186,119:11873653,37016897 -h186,119:11873653,37016897:2818050,0,0 -h186,119:14691703,37016897:0,0,0 -g186,119:9448823,37016897 -(186,119:9448823,37016897:2424830,477757,0 -k186,119:11873653,37016897:882112 ) -g186,119:15347061,37016897 -(186,119:15655577,37016897:501378,78643,0 -$186,119:15655577,37016897 -(186,119:15819431,37016897:173670,78643,0 +(186,123:21170735,43033097:501378,78643,0 +(186,123:21334589,43033097:173670,78643,0 ) -$186,119:16156955,37016897 ) -(186,119:16156955,37016897:501378,78643,0 -(186,119:16320809,37016897:173670,78643,0 +(186,123:21672113,43033097:501378,78643,0 +(186,123:21835967,43033097:173670,78643,0 ) ) -(186,119:16658333,37016897:501378,78643,0 -(186,119:16822187,37016897:173670,78643,0 +(186,123:22173491,43033097:501378,78643,0 +(186,123:22337345,43033097:173670,78643,0 ) ) -(186,119:17159711,37016897:501378,78643,0 -(186,119:17323565,37016897:173670,78643,0 +(186,123:22674869,43033097:501378,78643,0 +(186,123:22838723,43033097:173670,78643,0 ) ) -(186,119:17661089,37016897:501378,78643,0 -(186,119:17824943,37016897:173670,78643,0 +(186,123:23176247,43033097:501378,78643,0 +(186,123:23340101,43033097:173670,78643,0 ) ) -(186,119:18162467,37016897:501378,78643,0 -(186,119:18326321,37016897:173670,78643,0 +(186,123:23677625,43033097:501378,78643,0 +(186,123:23841479,43033097:173670,78643,0 ) ) -(186,119:18663845,37016897:501378,78643,0 -(186,119:18827699,37016897:173670,78643,0 +(186,123:24179003,43033097:501378,78643,0 +(186,123:24342857,43033097:173670,78643,0 ) ) -(186,119:19165223,37016897:501378,78643,0 -(186,119:19329077,37016897:173670,78643,0 +(186,123:24680381,43033097:501378,78643,0 +(186,123:24844235,43033097:173670,78643,0 ) ) -(186,119:19666601,37016897:501378,78643,0 -(186,119:19830455,37016897:173670,78643,0 +(186,123:25181759,43033097:501378,78643,0 +(186,123:25345613,43033097:173670,78643,0 ) ) -(186,119:20167979,37016897:501378,78643,0 -(186,119:20331833,37016897:173670,78643,0 +(186,123:25683137,43033097:501378,78643,0 +(186,123:25846991,43033097:173670,78643,0 ) ) -(186,119:20669357,37016897:501378,78643,0 -(186,119:20833211,37016897:173670,78643,0 +(186,123:26184515,43033097:501378,78643,0 +(186,123:26348369,43033097:173670,78643,0 ) ) -(186,119:21170735,37016897:501378,78643,0 -(186,119:21334589,37016897:173670,78643,0 +(186,123:26685893,43033097:501378,78643,0 +(186,123:26849747,43033097:173670,78643,0 ) ) -(186,119:21672113,37016897:501378,78643,0 -(186,119:21835967,37016897:173670,78643,0 +(186,123:27187271,43033097:501378,78643,0 +(186,123:27351125,43033097:173670,78643,0 ) ) -(186,119:22173491,37016897:501378,78643,0 -(186,119:22337345,37016897:173670,78643,0 +(186,123:27688649,43033097:501378,78643,0 +(186,123:27852503,43033097:173670,78643,0 ) ) -(186,119:22674869,37016897:501378,78643,0 -(186,119:22838723,37016897:173670,78643,0 +(186,123:28190027,43033097:501378,78643,0 +(186,123:28353881,43033097:173670,78643,0 ) ) -(186,119:23176247,37016897:501378,78643,0 -(186,119:23340101,37016897:173670,78643,0 +(186,123:28691405,43033097:501378,78643,0 +(186,123:28855259,43033097:173670,78643,0 ) ) -(186,119:23677625,37016897:501378,78643,0 -(186,119:23841479,37016897:173670,78643,0 +(186,123:29192783,43033097:501378,78643,0 +(186,123:29356637,43033097:173670,78643,0 ) ) -(186,119:24179003,37016897:501378,78643,0 -(186,119:24342857,37016897:173670,78643,0 +(186,123:29694161,43033097:501378,78643,0 +(186,123:29858015,43033097:173670,78643,0 ) ) -(186,119:24680381,37016897:501378,78643,0 -(186,119:24844235,37016897:173670,78643,0 +(186,123:30195539,43033097:501378,78643,0 +(186,123:30359393,43033097:173670,78643,0 ) ) -(186,119:25181759,37016897:501378,78643,0 -(186,119:25345613,37016897:173670,78643,0 +(186,123:30696917,43033097:501378,78643,0 +(186,123:30860771,43033097:173670,78643,0 ) ) -(186,119:25683137,37016897:501378,78643,0 -(186,119:25846991,37016897:173670,78643,0 +(186,123:31239539,43033097:1343490,485622,11795 +k186,123:31239539,43033097:0 +k186,123:31387652,43033097:148113 ) +g186,123:30911859,43033097 +g186,123:32583029,43033097 ) -(186,119:26184515,37016897:501378,78643,0 -(186,119:26348369,37016897:173670,78643,0 +(186,124:6630773,43898177:25952256,505283,134348 +g186,124:9710963,43898177 +h186,124:9710963,43898177:983040,0,0 +h186,124:10694003,43898177:0,0,0 +g186,124:7613813,43898177 +(186,124:7613813,43898177:2097150,485622,11795 +k186,124:9710963,43898177:1126562 ) +g186,124:13237455,43898177 +g186,124:16753461,43898177 +g186,124:16753461,43898177 +(186,124:17159711,43898177:501378,78643,0 +$186,124:17159711,43898177 +(186,124:17323565,43898177:173670,78643,0 ) -(186,119:26685893,37016897:501378,78643,0 -(186,119:26849747,37016897:173670,78643,0 +$186,124:17661089,43898177 ) +(186,124:17661089,43898177:501378,78643,0 +(186,124:17824943,43898177:173670,78643,0 ) -(186,119:27187271,37016897:501378,78643,0 -(186,119:27351125,37016897:173670,78643,0 ) +(186,124:18162467,43898177:501378,78643,0 +(186,124:18326321,43898177:173670,78643,0 ) -(186,119:27688649,37016897:501378,78643,0 -(186,119:27852503,37016897:173670,78643,0 ) +(186,124:18663845,43898177:501378,78643,0 +(186,124:18827699,43898177:173670,78643,0 ) -(186,119:28190027,37016897:501378,78643,0 -(186,119:28353881,37016897:173670,78643,0 ) +(186,124:19165223,43898177:501378,78643,0 +(186,124:19329077,43898177:173670,78643,0 ) -(186,119:28691405,37016897:501378,78643,0 -(186,119:28855259,37016897:173670,78643,0 ) +(186,124:19666601,43898177:501378,78643,0 +(186,124:19830455,43898177:173670,78643,0 ) -(186,119:29192783,37016897:501378,78643,0 -(186,119:29356637,37016897:173670,78643,0 ) +(186,124:20167979,43898177:501378,78643,0 +(186,124:20331833,43898177:173670,78643,0 ) -(186,119:29694161,37016897:501378,78643,0 -(186,119:29858015,37016897:173670,78643,0 ) +(186,124:20669357,43898177:501378,78643,0 +(186,124:20833211,43898177:173670,78643,0 ) -(186,119:30195539,37016897:501378,78643,0 -(186,119:30359393,37016897:173670,78643,0 ) +(186,124:21170735,43898177:501378,78643,0 +(186,124:21334589,43898177:173670,78643,0 ) -(186,119:30696917,37016897:501378,78643,0 -(186,119:30860771,37016897:173670,78643,0 ) +(186,124:21672113,43898177:501378,78643,0 +(186,124:21835967,43898177:173670,78643,0 ) -(186,119:31239539,37016897:1343490,485622,11795 -k186,119:31239539,37016897:0 -k186,119:31387652,37016897:148113 ) -g186,119:30911859,37016897 -g186,119:32583029,37016897 +(186,124:22173491,43898177:501378,78643,0 +(186,124:22337345,43898177:173670,78643,0 ) -(186,120:6630773,37858385:25952256,513147,126483 -g186,120:11873653,37858385 -h186,120:11873653,37858385:2818050,0,0 -h186,120:14691703,37858385:0,0,0 -g186,120:9448823,37858385 -(186,120:9448823,37858385:2424830,485622,0 -k186,120:11873653,37858385:882112 ) -g186,120:14759203,37858385 -g186,120:15617724,37858385 -g186,120:18644832,37858385 -g186,120:21079495,37858385 -(186,120:21170735,37858385:501378,78643,0 -$186,120:21170735,37858385 -(186,120:21334589,37858385:173670,78643,0 +(186,124:22674869,43898177:501378,78643,0 +(186,124:22838723,43898177:173670,78643,0 ) -$186,120:21672113,37858385 ) -(186,120:21672113,37858385:501378,78643,0 -(186,120:21835967,37858385:173670,78643,0 +(186,124:23176247,43898177:501378,78643,0 +(186,124:23340101,43898177:173670,78643,0 ) ) -(186,120:22173491,37858385:501378,78643,0 -(186,120:22337345,37858385:173670,78643,0 +(186,124:23677625,43898177:501378,78643,0 +(186,124:23841479,43898177:173670,78643,0 ) ) -(186,120:22674869,37858385:501378,78643,0 -(186,120:22838723,37858385:173670,78643,0 +(186,124:24179003,43898177:501378,78643,0 +(186,124:24342857,43898177:173670,78643,0 ) ) -(186,120:23176247,37858385:501378,78643,0 -(186,120:23340101,37858385:173670,78643,0 +(186,124:24680381,43898177:501378,78643,0 +(186,124:24844235,43898177:173670,78643,0 ) ) -(186,120:23677625,37858385:501378,78643,0 -(186,120:23841479,37858385:173670,78643,0 +(186,124:25181759,43898177:501378,78643,0 +(186,124:25345613,43898177:173670,78643,0 ) ) -(186,120:24179003,37858385:501378,78643,0 -(186,120:24342857,37858385:173670,78643,0 +(186,124:25683137,43898177:501378,78643,0 +(186,124:25846991,43898177:173670,78643,0 ) ) -(186,120:24680381,37858385:501378,78643,0 -(186,120:24844235,37858385:173670,78643,0 +(186,124:26184515,43898177:501378,78643,0 +(186,124:26348369,43898177:173670,78643,0 ) ) -(186,120:25181759,37858385:501378,78643,0 -(186,120:25345613,37858385:173670,78643,0 +(186,124:26685893,43898177:501378,78643,0 +(186,124:26849747,43898177:173670,78643,0 ) ) -(186,120:25683137,37858385:501378,78643,0 -(186,120:25846991,37858385:173670,78643,0 +(186,124:27187271,43898177:501378,78643,0 +(186,124:27351125,43898177:173670,78643,0 ) ) -(186,120:26184515,37858385:501378,78643,0 -(186,120:26348369,37858385:173670,78643,0 +(186,124:27688649,43898177:501378,78643,0 +(186,124:27852503,43898177:173670,78643,0 ) ) -(186,120:26685893,37858385:501378,78643,0 -(186,120:26849747,37858385:173670,78643,0 +(186,124:28190027,43898177:501378,78643,0 +(186,124:28353881,43898177:173670,78643,0 ) ) -(186,120:27187271,37858385:501378,78643,0 -(186,120:27351125,37858385:173670,78643,0 +(186,124:28691405,43898177:501378,78643,0 +(186,124:28855259,43898177:173670,78643,0 ) ) -(186,120:27688649,37858385:501378,78643,0 -(186,120:27852503,37858385:173670,78643,0 +(186,124:29192783,43898177:501378,78643,0 +(186,124:29356637,43898177:173670,78643,0 ) ) -(186,120:28190027,37858385:501378,78643,0 -(186,120:28353881,37858385:173670,78643,0 +(186,124:29694161,43898177:501378,78643,0 +(186,124:29858015,43898177:173670,78643,0 ) ) -(186,120:28691405,37858385:501378,78643,0 -(186,120:28855259,37858385:173670,78643,0 +(186,124:30195539,43898177:501378,78643,0 +(186,124:30359393,43898177:173670,78643,0 ) ) -(186,120:29192783,37858385:501378,78643,0 -(186,120:29356637,37858385:173670,78643,0 +(186,124:30696917,43898177:501378,78643,0 +(186,124:30860771,43898177:173670,78643,0 ) ) -(186,120:29694161,37858385:501378,78643,0 -(186,120:29858015,37858385:173670,78643,0 +(186,124:31239539,43898177:1343490,485622,11795 +k186,124:31239539,43898177:0 +k186,124:31387652,43898177:148113 ) +g186,124:30911859,43898177 +g186,124:32583029,43898177 ) -(186,120:30195539,37858385:501378,78643,0 -(186,120:30359393,37858385:173670,78643,0 +(186,125:6630773,44763257:25952256,505283,134348 +g186,125:9710963,44763257 +h186,125:9710963,44763257:983040,0,0 +h186,125:10694003,44763257:0,0,0 +g186,125:7613813,44763257 +(186,125:7613813,44763257:2097150,485622,11795 +k186,125:9710963,44763257:728103 ) +g186,125:12184947,44763257 +g186,125:13575621,44763257 +g186,125:15269071,44763257 +g186,125:18785077,44763257 +g186,125:18785077,44763257 +(186,125:19165223,44763257:501378,78643,0 +$186,125:19165223,44763257 +(186,125:19329077,44763257:173670,78643,0 ) -(186,120:30696917,37858385:501378,78643,0 -(186,120:30860771,37858385:173670,78643,0 +$186,125:19666601,44763257 ) +(186,125:19666601,44763257:501378,78643,0 +(186,125:19830455,44763257:173670,78643,0 ) -(186,120:31239539,37858385:1343490,485622,11795 -k186,120:31239539,37858385:0 -k186,120:31387652,37858385:148113 ) -g186,120:30911859,37858385 -g186,120:32583029,37858385 +(186,125:20167979,44763257:501378,78643,0 +(186,125:20331833,44763257:173670,78643,0 ) -(186,121:6630773,38699873:25952256,513147,126483 -g186,121:11873653,38699873 -h186,121:11873653,38699873:2818050,0,0 -h186,121:14691703,38699873:0,0,0 -g186,121:9448823,38699873 -(186,121:9448823,38699873:2424830,485622,11795 -k186,121:11873653,38699873:882112 ) -g186,121:14759203,38699873 -g186,121:15617724,38699873 -g186,121:19372936,38699873 -g186,121:22263074,38699873 -(186,121:22674869,38699873:501378,78643,0 -$186,121:22674869,38699873 -(186,121:22838723,38699873:173670,78643,0 +(186,125:20669357,44763257:501378,78643,0 +(186,125:20833211,44763257:173670,78643,0 ) -$186,121:23176247,38699873 ) -(186,121:23176247,38699873:501378,78643,0 -(186,121:23340101,38699873:173670,78643,0 +(186,125:21170735,44763257:501378,78643,0 +(186,125:21334589,44763257:173670,78643,0 ) ) -(186,121:23677625,38699873:501378,78643,0 -(186,121:23841479,38699873:173670,78643,0 +(186,125:21672113,44763257:501378,78643,0 +(186,125:21835967,44763257:173670,78643,0 ) ) -(186,121:24179003,38699873:501378,78643,0 -(186,121:24342857,38699873:173670,78643,0 +(186,125:22173491,44763257:501378,78643,0 +(186,125:22337345,44763257:173670,78643,0 ) ) -(186,121:24680381,38699873:501378,78643,0 -(186,121:24844235,38699873:173670,78643,0 +(186,125:22674869,44763257:501378,78643,0 +(186,125:22838723,44763257:173670,78643,0 ) ) -(186,121:25181759,38699873:501378,78643,0 -(186,121:25345613,38699873:173670,78643,0 +(186,125:23176247,44763257:501378,78643,0 +(186,125:23340101,44763257:173670,78643,0 ) ) -(186,121:25683137,38699873:501378,78643,0 -(186,121:25846991,38699873:173670,78643,0 +(186,125:23677625,44763257:501378,78643,0 +(186,125:23841479,44763257:173670,78643,0 ) ) -(186,121:26184515,38699873:501378,78643,0 -(186,121:26348369,38699873:173670,78643,0 +(186,125:24179003,44763257:501378,78643,0 +(186,125:24342857,44763257:173670,78643,0 ) ) -(186,121:26685893,38699873:501378,78643,0 -(186,121:26849747,38699873:173670,78643,0 +(186,125:24680381,44763257:501378,78643,0 +(186,125:24844235,44763257:173670,78643,0 ) ) -(186,121:27187271,38699873:501378,78643,0 -(186,121:27351125,38699873:173670,78643,0 +(186,125:25181759,44763257:501378,78643,0 +(186,125:25345613,44763257:173670,78643,0 ) ) -(186,121:27688649,38699873:501378,78643,0 -(186,121:27852503,38699873:173670,78643,0 +(186,125:25683137,44763257:501378,78643,0 +(186,125:25846991,44763257:173670,78643,0 ) ) -(186,121:28190027,38699873:501378,78643,0 -(186,121:28353881,38699873:173670,78643,0 +(186,125:26184515,44763257:501378,78643,0 +(186,125:26348369,44763257:173670,78643,0 ) ) -(186,121:28691405,38699873:501378,78643,0 -(186,121:28855259,38699873:173670,78643,0 +(186,125:26685893,44763257:501378,78643,0 +(186,125:26849747,44763257:173670,78643,0 ) ) -(186,121:29192783,38699873:501378,78643,0 -(186,121:29356637,38699873:173670,78643,0 +(186,125:27187271,44763257:501378,78643,0 +(186,125:27351125,44763257:173670,78643,0 ) ) -(186,121:29694161,38699873:501378,78643,0 -(186,121:29858015,38699873:173670,78643,0 +(186,125:27688649,44763257:501378,78643,0 +(186,125:27852503,44763257:173670,78643,0 ) ) -(186,121:30195539,38699873:501378,78643,0 -(186,121:30359393,38699873:173670,78643,0 +(186,125:28190027,44763257:501378,78643,0 +(186,125:28353881,44763257:173670,78643,0 ) ) -(186,121:30696917,38699873:501378,78643,0 -(186,121:30860771,38699873:173670,78643,0 +(186,125:28691405,44763257:501378,78643,0 +(186,125:28855259,44763257:173670,78643,0 ) ) -(186,121:31239539,38699873:1343490,485622,11795 -k186,121:31239539,38699873:0 -k186,121:31387652,38699873:148113 +(186,125:29192783,44763257:501378,78643,0 +(186,125:29356637,44763257:173670,78643,0 ) -g186,121:30911859,38699873 -g186,121:32583029,38699873 ) -(186,122:6630773,39541361:25952256,505283,126483 -g186,122:11873653,39541361 -h186,122:11873653,39541361:2818050,0,0 -h186,122:14691703,39541361:0,0,0 -g186,122:9448823,39541361 -(186,122:9448823,39541361:2424830,481690,0 -k186,122:11873653,39541361:882112 +(186,125:29694161,44763257:501378,78643,0 +(186,125:29858015,44763257:173670,78643,0 ) -g186,122:14004228,39541361 -g186,122:16419885,39541361 -g186,122:17810559,39541361 -g186,122:20641714,39541361 -(186,122:20669357,39541361:501378,78643,0 -$186,122:20669357,39541361 -(186,122:20833211,39541361:173670,78643,0 ) -$186,122:21170735,39541361 +(186,125:30195539,44763257:501378,78643,0 +(186,125:30359393,44763257:173670,78643,0 ) -(186,122:21170735,39541361:501378,78643,0 -(186,122:21334589,39541361:173670,78643,0 ) +(186,125:30696917,44763257:501378,78643,0 +(186,125:30860771,44763257:173670,78643,0 ) -(186,122:21672113,39541361:501378,78643,0 -(186,122:21835967,39541361:173670,78643,0 ) +(186,125:31239539,44763257:1343490,485622,0 +k186,125:31239539,44763257:0 +k186,125:31387652,44763257:148113 ) -(186,122:22173491,39541361:501378,78643,0 -(186,122:22337345,39541361:173670,78643,0 +g186,125:30911859,44763257 +g186,125:32583029,44763257 ) +(186,126:6630773,45628337:25952256,513147,11795 +g186,126:9710963,45628337 +h186,126:9710963,45628337:983040,0,0 +h186,126:10694003,45628337:0,0,0 +g186,126:7613813,45628337 +(186,126:7613813,45628337:2097150,477757,0 +k186,126:9710963,45628337:728103 ) -(186,122:22674869,39541361:501378,78643,0 -(186,122:22838723,39541361:173670,78643,0 +g186,126:11841538,45628337 +g186,126:14914521,45628337 +g186,126:14914521,45628337 +(186,126:15154199,45628337:501378,78643,0 +$186,126:15154199,45628337 +(186,126:15318053,45628337:173670,78643,0 ) +$186,126:15655577,45628337 ) -(186,122:23176247,39541361:501378,78643,0 -(186,122:23340101,39541361:173670,78643,0 +(186,126:15655577,45628337:501378,78643,0 +(186,126:15819431,45628337:173670,78643,0 ) ) -(186,122:23677625,39541361:501378,78643,0 -(186,122:23841479,39541361:173670,78643,0 +(186,126:16156955,45628337:501378,78643,0 +(186,126:16320809,45628337:173670,78643,0 ) ) -(186,122:24179003,39541361:501378,78643,0 -(186,122:24342857,39541361:173670,78643,0 +(186,126:16658333,45628337:501378,78643,0 +(186,126:16822187,45628337:173670,78643,0 ) ) -(186,122:24680381,39541361:501378,78643,0 -(186,122:24844235,39541361:173670,78643,0 +(186,126:17159711,45628337:501378,78643,0 +(186,126:17323565,45628337:173670,78643,0 ) ) -(186,122:25181759,39541361:501378,78643,0 -(186,122:25345613,39541361:173670,78643,0 +(186,126:17661089,45628337:501378,78643,0 +(186,126:17824943,45628337:173670,78643,0 ) ) -(186,122:25683137,39541361:501378,78643,0 -(186,122:25846991,39541361:173670,78643,0 +(186,126:18162467,45628337:501378,78643,0 +(186,126:18326321,45628337:173670,78643,0 ) ) -(186,122:26184515,39541361:501378,78643,0 -(186,122:26348369,39541361:173670,78643,0 +(186,126:18663845,45628337:501378,78643,0 +(186,126:18827699,45628337:173670,78643,0 ) ) -(186,122:26685893,39541361:501378,78643,0 -(186,122:26849747,39541361:173670,78643,0 +(186,126:19165223,45628337:501378,78643,0 +(186,126:19329077,45628337:173670,78643,0 ) ) -(186,122:27187271,39541361:501378,78643,0 -(186,122:27351125,39541361:173670,78643,0 +(186,126:19666601,45628337:501378,78643,0 +(186,126:19830455,45628337:173670,78643,0 ) ) -(186,122:27688649,39541361:501378,78643,0 -(186,122:27852503,39541361:173670,78643,0 +(186,126:20167979,45628337:501378,78643,0 +(186,126:20331833,45628337:173670,78643,0 ) ) -(186,122:28190027,39541361:501378,78643,0 -(186,122:28353881,39541361:173670,78643,0 +(186,126:20669357,45628337:501378,78643,0 +(186,126:20833211,45628337:173670,78643,0 ) ) -(186,122:28691405,39541361:501378,78643,0 -(186,122:28855259,39541361:173670,78643,0 +(186,126:21170735,45628337:501378,78643,0 +(186,126:21334589,45628337:173670,78643,0 ) ) -(186,122:29192783,39541361:501378,78643,0 -(186,122:29356637,39541361:173670,78643,0 +(186,126:21672113,45628337:501378,78643,0 +(186,126:21835967,45628337:173670,78643,0 ) ) -(186,122:29694161,39541361:501378,78643,0 -(186,122:29858015,39541361:173670,78643,0 +(186,126:22173491,45628337:501378,78643,0 +(186,126:22337345,45628337:173670,78643,0 ) ) -(186,122:30195539,39541361:501378,78643,0 -(186,122:30359393,39541361:173670,78643,0 +(186,126:22674869,45628337:501378,78643,0 +(186,126:22838723,45628337:173670,78643,0 ) ) -(186,122:30696917,39541361:501378,78643,0 -(186,122:30860771,39541361:173670,78643,0 +(186,126:23176247,45628337:501378,78643,0 +(186,126:23340101,45628337:173670,78643,0 ) ) -(186,122:31239539,39541361:1343490,485622,11795 -k186,122:31239539,39541361:0 -k186,122:31387652,39541361:148113 +(186,126:23677625,45628337:501378,78643,0 +(186,126:23841479,45628337:173670,78643,0 ) -g186,122:30911859,39541361 -g186,122:32583029,39541361 ) -(186,123:6630773,40382849:25952256,505283,11795 -g186,123:9448823,40382849 -h186,123:9448823,40382849:983040,0,0 -h186,123:10431863,40382849:0,0,0 -g186,123:7613813,40382849 -(186,123:7613813,40382849:1835010,485622,11795 -k186,123:9448823,40382849:864422 +(186,126:24179003,45628337:501378,78643,0 +(186,126:24342857,45628337:173670,78643,0 ) -g186,123:13445863,40382849 -g186,123:15457818,40382849 -g186,123:17975055,40382849 -g186,123:17975055,40382849 -(186,123:18162467,40382849:501378,78643,0 -$186,123:18162467,40382849 -(186,123:18326321,40382849:173670,78643,0 ) -$186,123:18663845,40382849 +(186,126:24680381,45628337:501378,78643,0 +(186,126:24844235,45628337:173670,78643,0 ) -(186,123:18663845,40382849:501378,78643,0 -(186,123:18827699,40382849:173670,78643,0 ) +(186,126:25181759,45628337:501378,78643,0 +(186,126:25345613,45628337:173670,78643,0 ) -(186,123:19165223,40382849:501378,78643,0 -(186,123:19329077,40382849:173670,78643,0 ) +(186,126:25683137,45628337:501378,78643,0 +(186,126:25846991,45628337:173670,78643,0 ) -(186,123:19666601,40382849:501378,78643,0 -(186,123:19830455,40382849:173670,78643,0 ) +(186,126:26184515,45628337:501378,78643,0 +(186,126:26348369,45628337:173670,78643,0 ) -(186,123:20167979,40382849:501378,78643,0 -(186,123:20331833,40382849:173670,78643,0 ) +(186,126:26685893,45628337:501378,78643,0 +(186,126:26849747,45628337:173670,78643,0 ) -(186,123:20669357,40382849:501378,78643,0 -(186,123:20833211,40382849:173670,78643,0 ) +(186,126:27187271,45628337:501378,78643,0 +(186,126:27351125,45628337:173670,78643,0 ) -(186,123:21170735,40382849:501378,78643,0 -(186,123:21334589,40382849:173670,78643,0 ) +(186,126:27688649,45628337:501378,78643,0 +(186,126:27852503,45628337:173670,78643,0 ) -(186,123:21672113,40382849:501378,78643,0 -(186,123:21835967,40382849:173670,78643,0 ) +(186,126:28190027,45628337:501378,78643,0 +(186,126:28353881,45628337:173670,78643,0 ) -(186,123:22173491,40382849:501378,78643,0 -(186,123:22337345,40382849:173670,78643,0 ) +(186,126:28691405,45628337:501378,78643,0 +(186,126:28855259,45628337:173670,78643,0 ) -(186,123:22674869,40382849:501378,78643,0 -(186,123:22838723,40382849:173670,78643,0 ) +(186,126:29192783,45628337:501378,78643,0 +(186,126:29356637,45628337:173670,78643,0 ) -(186,123:23176247,40382849:501378,78643,0 -(186,123:23340101,40382849:173670,78643,0 ) +(186,126:29694161,45628337:501378,78643,0 +(186,126:29858015,45628337:173670,78643,0 ) -(186,123:23677625,40382849:501378,78643,0 -(186,123:23841479,40382849:173670,78643,0 ) +(186,126:30195539,45628337:501378,78643,0 +(186,126:30359393,45628337:173670,78643,0 ) -(186,123:24179003,40382849:501378,78643,0 -(186,123:24342857,40382849:173670,78643,0 ) +(186,126:30696917,45628337:501378,78643,0 +(186,126:30860771,45628337:173670,78643,0 ) -(186,123:24680381,40382849:501378,78643,0 -(186,123:24844235,40382849:173670,78643,0 ) +(186,126:31239539,45628337:1343490,485622,11795 +k186,126:31239539,45628337:0 +k186,126:31387652,45628337:148113 ) -(186,123:25181759,40382849:501378,78643,0 -(186,123:25345613,40382849:173670,78643,0 +g186,126:30911859,45628337 +g186,126:32583029,45628337 ) +] +(186,128:32583029,45706769:0,0,0 +g186,128:32583029,45706769 ) -(186,123:25683137,40382849:501378,78643,0 -(186,123:25846991,40382849:173670,78643,0 ) +] +(186,128:6630773,47279633:25952256,0,0 +h186,128:6630773,47279633:25952256,0,0 ) -(186,123:26184515,40382849:501378,78643,0 -(186,123:26348369,40382849:173670,78643,0 +] +(186,128:4262630,4025873:0,0,0 +[186,128:-473656,4025873:0,0,0 +(186,128:-473656,-710413:0,0,0 +(186,128:-473656,-710413:0,0,0 +g186,128:-473656,-710413 ) +g186,128:-473656,-710413 ) -(186,123:26685893,40382849:501378,78643,0 -(186,123:26849747,40382849:173670,78643,0 +] ) +] +!118674 +}4 +!11 +{5 +[186,182:4262630,47279633:28320399,43253760,0 +(186,182:4262630,4025873:0,0,0 +[186,182:-473656,4025873:0,0,0 +(186,182:-473656,-710413:0,0,0 +(186,182:-473656,-644877:0,0,0 +k186,182:-473656,-644877:-65536 ) -(186,123:27187271,40382849:501378,78643,0 -(186,123:27351125,40382849:173670,78643,0 +(186,182:-473656,4736287:0,0,0 +k186,182:-473656,4736287:5209943 ) +g186,182:-473656,-710413 ) -(186,123:27688649,40382849:501378,78643,0 -(186,123:27852503,40382849:173670,78643,0 +] ) +[186,182:6630773,47279633:25952256,43253760,0 +[186,182:6630773,4812305:25952256,786432,0 +(186,182:6630773,4812305:25952256,485622,11795 +(186,182:6630773,4812305:25952256,485622,11795 +g186,182:3078558,4812305 +[186,182:3078558,4812305:0,0,0 +(186,182:3078558,2439708:0,1703936,0 +k186,182:1358238,2439708:-1720320 +(1,128:1358238,2439708:1720320,1703936,0 +(1,128:1358238,2439708:1179648,16384,0 +r186,182:2537886,2439708:1179648,16384,0 ) -(186,123:28190027,40382849:501378,78643,0 -(186,123:28353881,40382849:173670,78643,0 +g1,128:3062174,2439708 +(1,128:3062174,2439708:16384,1703936,0 +[1,128:3062174,2439708:25952256,1703936,0 +(1,128:3062174,1915420:25952256,1179648,0 +(1,128:3062174,1915420:16384,1179648,0 +r186,182:3078558,1915420:16384,1179648,0 ) +k1,128:29014430,1915420:25935872 +g1,128:29014430,1915420 ) -(186,123:28691405,40382849:501378,78643,0 -(186,123:28855259,40382849:173670,78643,0 +] ) ) -(186,123:29192783,40382849:501378,78643,0 -(186,123:29356637,40382849:173670,78643,0 ) +] +[186,182:3078558,4812305:0,0,0 +(186,182:3078558,2439708:0,1703936,0 +g186,182:29030814,2439708 +g186,182:36135244,2439708 +(1,128:36135244,2439708:1720320,1703936,0 +(1,128:36135244,2439708:16384,1703936,0 +[1,128:36135244,2439708:25952256,1703936,0 +(1,128:36135244,1915420:25952256,1179648,0 +(1,128:36135244,1915420:16384,1179648,0 +r186,182:36151628,1915420:16384,1179648,0 ) -(186,123:29694161,40382849:501378,78643,0 -(186,123:29858015,40382849:173670,78643,0 +k1,128:62087500,1915420:25935872 +g1,128:62087500,1915420 ) +] ) -(186,123:30195539,40382849:501378,78643,0 -(186,123:30359393,40382849:173670,78643,0 +g1,128:36675916,2439708 +(1,128:36675916,2439708:1179648,16384,0 +r186,182:37855564,2439708:1179648,16384,0 ) ) -(186,123:30696917,40382849:501378,78643,0 -(186,123:30860771,40382849:173670,78643,0 +k186,182:3078556,2439708:-34777008 ) +] +[186,182:3078558,4812305:0,0,0 +(186,182:3078558,49800853:0,16384,2228224 +k186,182:1358238,49800853:-1720320 +(1,128:1358238,49800853:1720320,16384,2228224 +(1,128:1358238,49800853:1179648,16384,0 +r186,182:2537886,49800853:1179648,16384,0 ) -(186,123:31239539,40382849:1343490,485622,0 -k186,123:31239539,40382849:0 -k186,123:31387652,40382849:148113 +g1,128:3062174,49800853 +(1,128:3062174,52029077:16384,1703936,0 +[1,128:3062174,52029077:25952256,1703936,0 +(1,128:3062174,51504789:25952256,1179648,0 +(1,128:3062174,51504789:16384,1179648,0 +r186,182:3078558,51504789:16384,1179648,0 ) -g186,123:30911859,40382849 -g186,123:32583029,40382849 +k1,128:29014430,51504789:25935872 +g1,128:29014430,51504789 ) -(186,124:6630773,41224337:25952256,505283,134348 -g186,124:9448823,41224337 -h186,124:9448823,41224337:983040,0,0 -h186,124:10431863,41224337:0,0,0 -g186,124:7613813,41224337 -(186,124:7613813,41224337:1835010,485622,11795 -k186,124:9448823,41224337:864422 +] ) -g186,124:12975315,41224337 -g186,124:16491321,41224337 -g186,124:16491321,41224337 -(186,124:16658333,41224337:501378,78643,0 -$186,124:16658333,41224337 -(186,124:16822187,41224337:173670,78643,0 ) -$186,124:17159711,41224337 ) -(186,124:17159711,41224337:501378,78643,0 -(186,124:17323565,41224337:173670,78643,0 +] +[186,182:3078558,4812305:0,0,0 +(186,182:3078558,49800853:0,16384,2228224 +g186,182:29030814,49800853 +g186,182:36135244,49800853 +(1,128:36135244,49800853:1720320,16384,2228224 +(1,128:36135244,52029077:16384,1703936,0 +[1,128:36135244,52029077:25952256,1703936,0 +(1,128:36135244,51504789:25952256,1179648,0 +(1,128:36135244,51504789:16384,1179648,0 +r186,182:36151628,51504789:16384,1179648,0 ) +k1,128:62087500,51504789:25935872 +g1,128:62087500,51504789 ) -(186,124:17661089,41224337:501378,78643,0 -(186,124:17824943,41224337:173670,78643,0 +] ) +g1,128:36675916,49800853 +(1,128:36675916,49800853:1179648,16384,0 +r186,182:37855564,49800853:1179648,16384,0 ) -(186,124:18162467,41224337:501378,78643,0 -(186,124:18326321,41224337:173670,78643,0 ) +k186,182:3078556,49800853:-34777008 ) -(186,124:18663845,41224337:501378,78643,0 -(186,124:18827699,41224337:173670,78643,0 +] +g186,182:6630773,4812305 +k186,182:29827895,4812305:22236364 ) ) -(186,124:19165223,41224337:501378,78643,0 -(186,124:19329077,41224337:173670,78643,0 +] +[186,182:6630773,45706769:25952256,40108032,0 +(186,182:6630773,45706769:25952256,40108032,0 +(186,182:6630773,45706769:0,0,0 +g186,182:6630773,45706769 ) +[186,182:6630773,45706769:25952256,40108032,0 +(186,127:6630773,6254097:25952256,485622,7863 +g186,127:9710963,6254097 +h186,127:9710963,6254097:983040,0,0 +h186,127:10694003,6254097:0,0,0 +g186,127:7613813,6254097 +(186,127:7613813,6254097:2097150,485622,0 +k186,127:9710963,6254097:728103 ) -(186,124:19666601,41224337:501378,78643,0 -(186,124:19830455,41224337:173670,78643,0 +g186,127:11513203,6254097 +g186,127:13557270,6254097 +g186,127:13557270,6254097 +(186,127:13650065,6254097:501378,78643,0 +$186,127:13650065,6254097 +(186,127:13813919,6254097:173670,78643,0 ) +$186,127:14151443,6254097 ) -(186,124:20167979,41224337:501378,78643,0 -(186,124:20331833,41224337:173670,78643,0 +(186,127:14151443,6254097:501378,78643,0 +(186,127:14315297,6254097:173670,78643,0 ) ) -(186,124:20669357,41224337:501378,78643,0 -(186,124:20833211,41224337:173670,78643,0 +(186,127:14652821,6254097:501378,78643,0 +(186,127:14816675,6254097:173670,78643,0 ) ) -(186,124:21170735,41224337:501378,78643,0 -(186,124:21334589,41224337:173670,78643,0 +(186,127:15154199,6254097:501378,78643,0 +(186,127:15318053,6254097:173670,78643,0 ) ) -(186,124:21672113,41224337:501378,78643,0 -(186,124:21835967,41224337:173670,78643,0 +(186,127:15655577,6254097:501378,78643,0 +(186,127:15819431,6254097:173670,78643,0 ) ) -(186,124:22173491,41224337:501378,78643,0 -(186,124:22337345,41224337:173670,78643,0 +(186,127:16156955,6254097:501378,78643,0 +(186,127:16320809,6254097:173670,78643,0 ) ) -(186,124:22674869,41224337:501378,78643,0 -(186,124:22838723,41224337:173670,78643,0 +(186,127:16658333,6254097:501378,78643,0 +(186,127:16822187,6254097:173670,78643,0 ) ) -(186,124:23176247,41224337:501378,78643,0 -(186,124:23340101,41224337:173670,78643,0 +(186,127:17159711,6254097:501378,78643,0 +(186,127:17323565,6254097:173670,78643,0 ) ) -(186,124:23677625,41224337:501378,78643,0 -(186,124:23841479,41224337:173670,78643,0 +(186,127:17661089,6254097:501378,78643,0 +(186,127:17824943,6254097:173670,78643,0 ) ) -(186,124:24179003,41224337:501378,78643,0 -(186,124:24342857,41224337:173670,78643,0 +(186,127:18162467,6254097:501378,78643,0 +(186,127:18326321,6254097:173670,78643,0 ) ) -(186,124:24680381,41224337:501378,78643,0 -(186,124:24844235,41224337:173670,78643,0 +(186,127:18663845,6254097:501378,78643,0 +(186,127:18827699,6254097:173670,78643,0 ) ) -(186,124:25181759,41224337:501378,78643,0 -(186,124:25345613,41224337:173670,78643,0 +(186,127:19165223,6254097:501378,78643,0 +(186,127:19329077,6254097:173670,78643,0 ) ) -(186,124:25683137,41224337:501378,78643,0 -(186,124:25846991,41224337:173670,78643,0 +(186,127:19666601,6254097:501378,78643,0 +(186,127:19830455,6254097:173670,78643,0 ) ) -(186,124:26184515,41224337:501378,78643,0 -(186,124:26348369,41224337:173670,78643,0 +(186,127:20167979,6254097:501378,78643,0 +(186,127:20331833,6254097:173670,78643,0 ) ) -(186,124:26685893,41224337:501378,78643,0 -(186,124:26849747,41224337:173670,78643,0 +(186,127:20669357,6254097:501378,78643,0 +(186,127:20833211,6254097:173670,78643,0 ) ) -(186,124:27187271,41224337:501378,78643,0 -(186,124:27351125,41224337:173670,78643,0 +(186,127:21170735,6254097:501378,78643,0 +(186,127:21334589,6254097:173670,78643,0 ) ) -(186,124:27688649,41224337:501378,78643,0 -(186,124:27852503,41224337:173670,78643,0 +(186,127:21672113,6254097:501378,78643,0 +(186,127:21835967,6254097:173670,78643,0 ) ) -(186,124:28190027,41224337:501378,78643,0 -(186,124:28353881,41224337:173670,78643,0 +(186,127:22173491,6254097:501378,78643,0 +(186,127:22337345,6254097:173670,78643,0 ) ) -(186,124:28691405,41224337:501378,78643,0 -(186,124:28855259,41224337:173670,78643,0 +(186,127:22674869,6254097:501378,78643,0 +(186,127:22838723,6254097:173670,78643,0 ) ) -(186,124:29192783,41224337:501378,78643,0 -(186,124:29356637,41224337:173670,78643,0 +(186,127:23176247,6254097:501378,78643,0 +(186,127:23340101,6254097:173670,78643,0 ) ) -(186,124:29694161,41224337:501378,78643,0 -(186,124:29858015,41224337:173670,78643,0 +(186,127:23677625,6254097:501378,78643,0 +(186,127:23841479,6254097:173670,78643,0 ) ) -(186,124:30195539,41224337:501378,78643,0 -(186,124:30359393,41224337:173670,78643,0 +(186,127:24179003,6254097:501378,78643,0 +(186,127:24342857,6254097:173670,78643,0 ) ) -(186,124:30696917,41224337:501378,78643,0 -(186,124:30860771,41224337:173670,78643,0 +(186,127:24680381,6254097:501378,78643,0 +(186,127:24844235,6254097:173670,78643,0 ) ) -(186,124:31239539,41224337:1343490,485622,0 -k186,124:31239539,41224337:0 -k186,124:31387652,41224337:148113 +(186,127:25181759,6254097:501378,78643,0 +(186,127:25345613,6254097:173670,78643,0 ) -g186,124:30911859,41224337 -g186,124:32583029,41224337 ) -(186,125:6630773,42065825:25952256,505283,134348 -g186,125:9448823,42065825 -h186,125:9448823,42065825:983040,0,0 -h186,125:10431863,42065825:0,0,0 -g186,125:7613813,42065825 -(186,125:7613813,42065825:1835010,485622,11795 -k186,125:9448823,42065825:465963 +(186,127:25683137,6254097:501378,78643,0 +(186,127:25846991,6254097:173670,78643,0 ) -g186,125:11922807,42065825 -g186,125:13313481,42065825 -g186,125:15006931,42065825 -g186,125:18522937,42065825 -g186,125:18522937,42065825 -(186,125:18663845,42065825:501378,78643,0 -$186,125:18663845,42065825 -(186,125:18827699,42065825:173670,78643,0 ) -$186,125:19165223,42065825 +(186,127:26184515,6254097:501378,78643,0 +(186,127:26348369,6254097:173670,78643,0 ) -(186,125:19165223,42065825:501378,78643,0 -(186,125:19329077,42065825:173670,78643,0 ) +(186,127:26685893,6254097:501378,78643,0 +(186,127:26849747,6254097:173670,78643,0 ) -(186,125:19666601,42065825:501378,78643,0 -(186,125:19830455,42065825:173670,78643,0 ) +(186,127:27187271,6254097:501378,78643,0 +(186,127:27351125,6254097:173670,78643,0 ) -(186,125:20167979,42065825:501378,78643,0 -(186,125:20331833,42065825:173670,78643,0 ) +(186,127:27688649,6254097:501378,78643,0 +(186,127:27852503,6254097:173670,78643,0 ) -(186,125:20669357,42065825:501378,78643,0 -(186,125:20833211,42065825:173670,78643,0 ) +(186,127:28190027,6254097:501378,78643,0 +(186,127:28353881,6254097:173670,78643,0 ) -(186,125:21170735,42065825:501378,78643,0 -(186,125:21334589,42065825:173670,78643,0 ) +(186,127:28691405,6254097:501378,78643,0 +(186,127:28855259,6254097:173670,78643,0 ) -(186,125:21672113,42065825:501378,78643,0 -(186,125:21835967,42065825:173670,78643,0 ) +(186,127:29192783,6254097:501378,78643,0 +(186,127:29356637,6254097:173670,78643,0 ) -(186,125:22173491,42065825:501378,78643,0 -(186,125:22337345,42065825:173670,78643,0 ) +(186,127:29694161,6254097:501378,78643,0 +(186,127:29858015,6254097:173670,78643,0 ) -(186,125:22674869,42065825:501378,78643,0 -(186,125:22838723,42065825:173670,78643,0 ) +(186,127:30195539,6254097:501378,78643,0 +(186,127:30359393,6254097:173670,78643,0 ) -(186,125:23176247,42065825:501378,78643,0 -(186,125:23340101,42065825:173670,78643,0 ) +(186,127:30696917,6254097:501378,78643,0 +(186,127:30860771,6254097:173670,78643,0 ) -(186,125:23677625,42065825:501378,78643,0 -(186,125:23841479,42065825:173670,78643,0 ) +(186,127:31239538,6254097:1343490,485622,0 +k186,127:31239538,6254097:0 +k186,127:31387651,6254097:148113 ) -(186,125:24179003,42065825:501378,78643,0 -(186,125:24342857,42065825:173670,78643,0 +g186,127:30911858,6254097 +g186,127:32583028,6254097 ) +(186,128:6630773,7119177:25952256,505283,11795 +g186,128:9710963,7119177 +h186,128:9710963,7119177:983040,0,0 +h186,128:10694003,7119177:0,0,0 +g186,128:7613813,7119177 +(186,128:7613813,7119177:2097150,485622,11795 +k186,128:9710963,7119177:728103 ) -(186,125:24680381,42065825:501378,78643,0 -(186,125:24844235,42065825:173670,78643,0 +g186,128:13714557,7119177 +g186,128:16767224,7119177 +g186,128:16767224,7119177 +(186,128:17159711,7119177:501378,78643,0 +$186,128:17159711,7119177 +(186,128:17323565,7119177:173670,78643,0 ) +$186,128:17661089,7119177 ) -(186,125:25181759,42065825:501378,78643,0 -(186,125:25345613,42065825:173670,78643,0 +(186,128:17661089,7119177:501378,78643,0 +(186,128:17824943,7119177:173670,78643,0 ) ) -(186,125:25683137,42065825:501378,78643,0 -(186,125:25846991,42065825:173670,78643,0 +(186,128:18162467,7119177:501378,78643,0 +(186,128:18326321,7119177:173670,78643,0 ) ) -(186,125:26184515,42065825:501378,78643,0 -(186,125:26348369,42065825:173670,78643,0 +(186,128:18663845,7119177:501378,78643,0 +(186,128:18827699,7119177:173670,78643,0 ) ) -(186,125:26685893,42065825:501378,78643,0 -(186,125:26849747,42065825:173670,78643,0 +(186,128:19165223,7119177:501378,78643,0 +(186,128:19329077,7119177:173670,78643,0 ) ) -(186,125:27187271,42065825:501378,78643,0 -(186,125:27351125,42065825:173670,78643,0 +(186,128:19666601,7119177:501378,78643,0 +(186,128:19830455,7119177:173670,78643,0 ) ) -(186,125:27688649,42065825:501378,78643,0 -(186,125:27852503,42065825:173670,78643,0 +(186,128:20167979,7119177:501378,78643,0 +(186,128:20331833,7119177:173670,78643,0 ) ) -(186,125:28190027,42065825:501378,78643,0 -(186,125:28353881,42065825:173670,78643,0 +(186,128:20669357,7119177:501378,78643,0 +(186,128:20833211,7119177:173670,78643,0 ) ) -(186,125:28691405,42065825:501378,78643,0 -(186,125:28855259,42065825:173670,78643,0 +(186,128:21170735,7119177:501378,78643,0 +(186,128:21334589,7119177:173670,78643,0 ) ) -(186,125:29192783,42065825:501378,78643,0 -(186,125:29356637,42065825:173670,78643,0 +(186,128:21672113,7119177:501378,78643,0 +(186,128:21835967,7119177:173670,78643,0 ) ) -(186,125:29694161,42065825:501378,78643,0 -(186,125:29858015,42065825:173670,78643,0 +(186,128:22173491,7119177:501378,78643,0 +(186,128:22337345,7119177:173670,78643,0 ) ) -(186,125:30195539,42065825:501378,78643,0 -(186,125:30359393,42065825:173670,78643,0 +(186,128:22674869,7119177:501378,78643,0 +(186,128:22838723,7119177:173670,78643,0 ) ) -(186,125:30696917,42065825:501378,78643,0 -(186,125:30860771,42065825:173670,78643,0 +(186,128:23176247,7119177:501378,78643,0 +(186,128:23340101,7119177:173670,78643,0 ) ) -(186,125:31239539,42065825:1343490,485622,11795 -k186,125:31239539,42065825:0 -k186,125:31387652,42065825:148113 +(186,128:23677625,7119177:501378,78643,0 +(186,128:23841479,7119177:173670,78643,0 ) -g186,125:30911859,42065825 -g186,125:32583029,42065825 ) -(186,126:6630773,42907313:25952256,513147,7863 -g186,126:9448823,42907313 -h186,126:9448823,42907313:983040,0,0 -h186,126:10431863,42907313:0,0,0 -g186,126:7613813,42907313 -(186,126:7613813,42907313:1835010,477757,0 -k186,126:9448823,42907313:465963 +(186,128:24179003,7119177:501378,78643,0 +(186,128:24342857,7119177:173670,78643,0 ) -g186,126:11579398,42907313 -g186,126:14652381,42907313 -g186,126:14652381,42907313 -(186,126:14652821,42907313:501378,78643,0 -$186,126:14652821,42907313 -(186,126:14816675,42907313:173670,78643,0 ) -$186,126:15154199,42907313 +(186,128:24680381,7119177:501378,78643,0 +(186,128:24844235,7119177:173670,78643,0 ) -(186,126:15154199,42907313:501378,78643,0 -(186,126:15318053,42907313:173670,78643,0 ) +(186,128:25181759,7119177:501378,78643,0 +(186,128:25345613,7119177:173670,78643,0 ) -(186,126:15655577,42907313:501378,78643,0 -(186,126:15819431,42907313:173670,78643,0 ) +(186,128:25683137,7119177:501378,78643,0 +(186,128:25846991,7119177:173670,78643,0 ) -(186,126:16156955,42907313:501378,78643,0 -(186,126:16320809,42907313:173670,78643,0 ) +(186,128:26184515,7119177:501378,78643,0 +(186,128:26348369,7119177:173670,78643,0 ) -(186,126:16658333,42907313:501378,78643,0 -(186,126:16822187,42907313:173670,78643,0 ) +(186,128:26685893,7119177:501378,78643,0 +(186,128:26849747,7119177:173670,78643,0 ) -(186,126:17159711,42907313:501378,78643,0 -(186,126:17323565,42907313:173670,78643,0 ) +(186,128:27187271,7119177:501378,78643,0 +(186,128:27351125,7119177:173670,78643,0 ) -(186,126:17661089,42907313:501378,78643,0 -(186,126:17824943,42907313:173670,78643,0 ) +(186,128:27688649,7119177:501378,78643,0 +(186,128:27852503,7119177:173670,78643,0 ) -(186,126:18162467,42907313:501378,78643,0 -(186,126:18326321,42907313:173670,78643,0 ) +(186,128:28190027,7119177:501378,78643,0 +(186,128:28353881,7119177:173670,78643,0 ) -(186,126:18663845,42907313:501378,78643,0 -(186,126:18827699,42907313:173670,78643,0 ) +(186,128:28691405,7119177:501378,78643,0 +(186,128:28855259,7119177:173670,78643,0 ) -(186,126:19165223,42907313:501378,78643,0 -(186,126:19329077,42907313:173670,78643,0 ) +(186,128:29192783,7119177:501378,78643,0 +(186,128:29356637,7119177:173670,78643,0 ) -(186,126:19666601,42907313:501378,78643,0 -(186,126:19830455,42907313:173670,78643,0 ) +(186,128:29694161,7119177:501378,78643,0 +(186,128:29858015,7119177:173670,78643,0 ) -(186,126:20167979,42907313:501378,78643,0 -(186,126:20331833,42907313:173670,78643,0 ) +(186,128:30195539,7119177:501378,78643,0 +(186,128:30359393,7119177:173670,78643,0 ) -(186,126:20669357,42907313:501378,78643,0 -(186,126:20833211,42907313:173670,78643,0 ) +(186,128:30696917,7119177:501378,78643,0 +(186,128:30860771,7119177:173670,78643,0 ) -(186,126:21170735,42907313:501378,78643,0 -(186,126:21334589,42907313:173670,78643,0 ) +(186,128:31239539,7119177:1343490,485622,11795 +k186,128:31239539,7119177:0 +k186,128:31387652,7119177:148113 ) -(186,126:21672113,42907313:501378,78643,0 -(186,126:21835967,42907313:173670,78643,0 +g186,128:30911859,7119177 +g186,128:32583029,7119177 ) +(186,129:6630773,7984257:25952256,513147,126483 +g186,129:12529013,7984257 +h186,129:12529013,7984257:3080190,0,0 +h186,129:15609203,7984257:0,0,0 +g186,129:9710963,7984257 +(186,129:9710963,7984257:2818050,485622,11795 +k186,129:12529013,7984257:876874 ) -(186,126:22173491,42907313:501378,78643,0 -(186,126:22337345,42907313:173670,78643,0 +g186,129:16532607,7984257 +g186,129:19286429,7984257 +g186,129:20144950,7984257 +g186,129:22799158,7984257 +(186,129:23176247,7984257:501378,78643,0 +$186,129:23176247,7984257 +(186,129:23340101,7984257:173670,78643,0 ) +$186,129:23677625,7984257 ) -(186,126:22674869,42907313:501378,78643,0 -(186,126:22838723,42907313:173670,78643,0 +(186,129:23677625,7984257:501378,78643,0 +(186,129:23841479,7984257:173670,78643,0 ) ) -(186,126:23176247,42907313:501378,78643,0 -(186,126:23340101,42907313:173670,78643,0 +(186,129:24179003,7984257:501378,78643,0 +(186,129:24342857,7984257:173670,78643,0 ) ) -(186,126:23677625,42907313:501378,78643,0 -(186,126:23841479,42907313:173670,78643,0 +(186,129:24680381,7984257:501378,78643,0 +(186,129:24844235,7984257:173670,78643,0 ) ) -(186,126:24179003,42907313:501378,78643,0 -(186,126:24342857,42907313:173670,78643,0 +(186,129:25181759,7984257:501378,78643,0 +(186,129:25345613,7984257:173670,78643,0 ) ) -(186,126:24680381,42907313:501378,78643,0 -(186,126:24844235,42907313:173670,78643,0 +(186,129:25683137,7984257:501378,78643,0 +(186,129:25846991,7984257:173670,78643,0 ) ) -(186,126:25181759,42907313:501378,78643,0 -(186,126:25345613,42907313:173670,78643,0 +(186,129:26184515,7984257:501378,78643,0 +(186,129:26348369,7984257:173670,78643,0 ) ) -(186,126:25683137,42907313:501378,78643,0 -(186,126:25846991,42907313:173670,78643,0 +(186,129:26685893,7984257:501378,78643,0 +(186,129:26849747,7984257:173670,78643,0 ) ) -(186,126:26184515,42907313:501378,78643,0 -(186,126:26348369,42907313:173670,78643,0 +(186,129:27187271,7984257:501378,78643,0 +(186,129:27351125,7984257:173670,78643,0 ) ) -(186,126:26685893,42907313:501378,78643,0 -(186,126:26849747,42907313:173670,78643,0 +(186,129:27688649,7984257:501378,78643,0 +(186,129:27852503,7984257:173670,78643,0 ) ) -(186,126:27187271,42907313:501378,78643,0 -(186,126:27351125,42907313:173670,78643,0 +(186,129:28190027,7984257:501378,78643,0 +(186,129:28353881,7984257:173670,78643,0 ) ) -(186,126:27688649,42907313:501378,78643,0 -(186,126:27852503,42907313:173670,78643,0 +(186,129:28691405,7984257:501378,78643,0 +(186,129:28855259,7984257:173670,78643,0 ) ) -(186,126:28190027,42907313:501378,78643,0 -(186,126:28353881,42907313:173670,78643,0 +(186,129:29192783,7984257:501378,78643,0 +(186,129:29356637,7984257:173670,78643,0 ) ) -(186,126:28691405,42907313:501378,78643,0 -(186,126:28855259,42907313:173670,78643,0 +(186,129:29694161,7984257:501378,78643,0 +(186,129:29858015,7984257:173670,78643,0 ) ) -(186,126:29192783,42907313:501378,78643,0 -(186,126:29356637,42907313:173670,78643,0 +(186,129:30195539,7984257:501378,78643,0 +(186,129:30359393,7984257:173670,78643,0 ) ) -(186,126:29694161,42907313:501378,78643,0 -(186,126:29858015,42907313:173670,78643,0 +(186,129:30696917,7984257:501378,78643,0 +(186,129:30860771,7984257:173670,78643,0 ) ) -(186,126:30195539,42907313:501378,78643,0 -(186,126:30359393,42907313:173670,78643,0 +(186,129:31239539,7984257:1343490,485622,11795 +k186,129:31239539,7984257:0 +k186,129:31387652,7984257:148113 ) +g186,129:30911859,7984257 +g186,129:32583029,7984257 ) -(186,126:30696917,42907313:501378,78643,0 -(186,126:30860771,42907313:173670,78643,0 +(186,130:6630773,8849337:25952256,505283,126483 +g186,130:12529013,8849337 +h186,130:12529013,8849337:3080190,0,0 +h186,130:15609203,8849337:0,0,0 +g186,130:9710963,8849337 +(186,130:9710963,8849337:2818050,485622,11795 +k186,130:12529013,8849337:876874 ) +g186,130:15524663,8849337 +g186,130:19651465,8849337 +g186,130:22206058,8849337 +(186,130:22674869,8849337:501378,78643,0 +$186,130:22674869,8849337 +(186,130:22838723,8849337:173670,78643,0 ) -(186,126:31239539,42907313:1343490,485622,0 -k186,126:31239539,42907313:0 -k186,126:31387652,42907313:148113 +$186,130:23176247,8849337 ) -g186,126:30911859,42907313 -g186,126:32583029,42907313 +(186,130:23176247,8849337:501378,78643,0 +(186,130:23340101,8849337:173670,78643,0 ) -(186,127:6630773,43748801:25952256,485622,11795 -g186,127:9448823,43748801 -h186,127:9448823,43748801:983040,0,0 -h186,127:10431863,43748801:0,0,0 -g186,127:7613813,43748801 -(186,127:7613813,43748801:1835010,485622,0 -k186,127:9448823,43748801:465963 ) -g186,127:11251063,43748801 -g186,127:13295130,43748801 -g186,127:13295130,43748801 -(186,127:13650065,43748801:501378,78643,0 -$186,127:13650065,43748801 -(186,127:13813919,43748801:173670,78643,0 +(186,130:23677625,8849337:501378,78643,0 +(186,130:23841479,8849337:173670,78643,0 ) -$186,127:14151443,43748801 ) -(186,127:14151443,43748801:501378,78643,0 -(186,127:14315297,43748801:173670,78643,0 +(186,130:24179003,8849337:501378,78643,0 +(186,130:24342857,8849337:173670,78643,0 ) ) -(186,127:14652821,43748801:501378,78643,0 -(186,127:14816675,43748801:173670,78643,0 +(186,130:24680381,8849337:501378,78643,0 +(186,130:24844235,8849337:173670,78643,0 ) ) -(186,127:15154199,43748801:501378,78643,0 -(186,127:15318053,43748801:173670,78643,0 +(186,130:25181759,8849337:501378,78643,0 +(186,130:25345613,8849337:173670,78643,0 ) ) -(186,127:15655577,43748801:501378,78643,0 -(186,127:15819431,43748801:173670,78643,0 +(186,130:25683137,8849337:501378,78643,0 +(186,130:25846991,8849337:173670,78643,0 ) ) -(186,127:16156955,43748801:501378,78643,0 -(186,127:16320809,43748801:173670,78643,0 +(186,130:26184515,8849337:501378,78643,0 +(186,130:26348369,8849337:173670,78643,0 ) ) -(186,127:16658333,43748801:501378,78643,0 -(186,127:16822187,43748801:173670,78643,0 +(186,130:26685893,8849337:501378,78643,0 +(186,130:26849747,8849337:173670,78643,0 ) ) -(186,127:17159711,43748801:501378,78643,0 -(186,127:17323565,43748801:173670,78643,0 +(186,130:27187271,8849337:501378,78643,0 +(186,130:27351125,8849337:173670,78643,0 ) ) -(186,127:17661089,43748801:501378,78643,0 -(186,127:17824943,43748801:173670,78643,0 +(186,130:27688649,8849337:501378,78643,0 +(186,130:27852503,8849337:173670,78643,0 ) ) -(186,127:18162467,43748801:501378,78643,0 -(186,127:18326321,43748801:173670,78643,0 +(186,130:28190027,8849337:501378,78643,0 +(186,130:28353881,8849337:173670,78643,0 ) ) -(186,127:18663845,43748801:501378,78643,0 -(186,127:18827699,43748801:173670,78643,0 +(186,130:28691405,8849337:501378,78643,0 +(186,130:28855259,8849337:173670,78643,0 ) ) -(186,127:19165223,43748801:501378,78643,0 -(186,127:19329077,43748801:173670,78643,0 +(186,130:29192783,8849337:501378,78643,0 +(186,130:29356637,8849337:173670,78643,0 ) ) -(186,127:19666601,43748801:501378,78643,0 -(186,127:19830455,43748801:173670,78643,0 +(186,130:29694161,8849337:501378,78643,0 +(186,130:29858015,8849337:173670,78643,0 ) ) -(186,127:20167979,43748801:501378,78643,0 -(186,127:20331833,43748801:173670,78643,0 +(186,130:30195539,8849337:501378,78643,0 +(186,130:30359393,8849337:173670,78643,0 ) ) -(186,127:20669357,43748801:501378,78643,0 -(186,127:20833211,43748801:173670,78643,0 +(186,130:30696917,8849337:501378,78643,0 +(186,130:30860771,8849337:173670,78643,0 ) ) -(186,127:21170735,43748801:501378,78643,0 -(186,127:21334589,43748801:173670,78643,0 +(186,130:31239539,8849337:1343490,485622,0 +k186,130:31239539,8849337:0 +k186,130:31387652,8849337:148113 ) +g186,130:30911859,8849337 +g186,130:32583029,8849337 ) -(186,127:21672113,43748801:501378,78643,0 -(186,127:21835967,43748801:173670,78643,0 +(186,131:6630773,9714417:25952256,505283,134348 +g186,131:12529013,9714417 +h186,131:12529013,9714417:3080190,0,0 +h186,131:15609203,9714417:0,0,0 +g186,131:9710963,9714417 +(186,131:9710963,9714417:2818050,485622,11795 +k186,131:12529013,9714417:876874 ) +g186,131:18275865,9714417 +g186,131:20490982,9714417 +(186,131:20669357,9714417:501378,78643,0 +$186,131:20669357,9714417 +(186,131:20833211,9714417:173670,78643,0 ) -(186,127:22173491,43748801:501378,78643,0 -(186,127:22337345,43748801:173670,78643,0 +$186,131:21170735,9714417 ) +(186,131:21170735,9714417:501378,78643,0 +(186,131:21334589,9714417:173670,78643,0 ) -(186,127:22674869,43748801:501378,78643,0 -(186,127:22838723,43748801:173670,78643,0 ) +(186,131:21672113,9714417:501378,78643,0 +(186,131:21835967,9714417:173670,78643,0 ) -(186,127:23176247,43748801:501378,78643,0 -(186,127:23340101,43748801:173670,78643,0 ) +(186,131:22173491,9714417:501378,78643,0 +(186,131:22337345,9714417:173670,78643,0 ) -(186,127:23677625,43748801:501378,78643,0 -(186,127:23841479,43748801:173670,78643,0 ) +(186,131:22674869,9714417:501378,78643,0 +(186,131:22838723,9714417:173670,78643,0 ) -(186,127:24179003,43748801:501378,78643,0 -(186,127:24342857,43748801:173670,78643,0 ) +(186,131:23176247,9714417:501378,78643,0 +(186,131:23340101,9714417:173670,78643,0 ) -(186,127:24680381,43748801:501378,78643,0 -(186,127:24844235,43748801:173670,78643,0 ) +(186,131:23677625,9714417:501378,78643,0 +(186,131:23841479,9714417:173670,78643,0 ) -(186,127:25181759,43748801:501378,78643,0 -(186,127:25345613,43748801:173670,78643,0 ) +(186,131:24179003,9714417:501378,78643,0 +(186,131:24342857,9714417:173670,78643,0 ) -(186,127:25683137,43748801:501378,78643,0 -(186,127:25846991,43748801:173670,78643,0 ) +(186,131:24680381,9714417:501378,78643,0 +(186,131:24844235,9714417:173670,78643,0 ) -(186,127:26184515,43748801:501378,78643,0 -(186,127:26348369,43748801:173670,78643,0 ) +(186,131:25181759,9714417:501378,78643,0 +(186,131:25345613,9714417:173670,78643,0 ) -(186,127:26685893,43748801:501378,78643,0 -(186,127:26849747,43748801:173670,78643,0 ) +(186,131:25683137,9714417:501378,78643,0 +(186,131:25846991,9714417:173670,78643,0 ) -(186,127:27187271,43748801:501378,78643,0 -(186,127:27351125,43748801:173670,78643,0 ) +(186,131:26184515,9714417:501378,78643,0 +(186,131:26348369,9714417:173670,78643,0 ) -(186,127:27688649,43748801:501378,78643,0 -(186,127:27852503,43748801:173670,78643,0 ) +(186,131:26685893,9714417:501378,78643,0 +(186,131:26849747,9714417:173670,78643,0 ) -(186,127:28190027,43748801:501378,78643,0 -(186,127:28353881,43748801:173670,78643,0 ) +(186,131:27187271,9714417:501378,78643,0 +(186,131:27351125,9714417:173670,78643,0 ) -(186,127:28691405,43748801:501378,78643,0 -(186,127:28855259,43748801:173670,78643,0 ) +(186,131:27688649,9714417:501378,78643,0 +(186,131:27852503,9714417:173670,78643,0 ) -(186,127:29192783,43748801:501378,78643,0 -(186,127:29356637,43748801:173670,78643,0 ) +(186,131:28190027,9714417:501378,78643,0 +(186,131:28353881,9714417:173670,78643,0 ) -(186,127:29694161,43748801:501378,78643,0 -(186,127:29858015,43748801:173670,78643,0 ) +(186,131:28691405,9714417:501378,78643,0 +(186,131:28855259,9714417:173670,78643,0 ) -(186,127:30195539,43748801:501378,78643,0 -(186,127:30359393,43748801:173670,78643,0 ) +(186,131:29192783,9714417:501378,78643,0 +(186,131:29356637,9714417:173670,78643,0 ) -(186,127:30696917,43748801:501378,78643,0 -(186,127:30860771,43748801:173670,78643,0 ) +(186,131:29694161,9714417:501378,78643,0 +(186,131:29858015,9714417:173670,78643,0 ) -(186,127:31239538,43748801:1343490,485622,11795 -k186,127:31239538,43748801:0 -k186,127:31387651,43748801:148113 ) -g186,127:30911858,43748801 -g186,127:32583028,43748801 +(186,131:30195539,9714417:501378,78643,0 +(186,131:30359393,9714417:173670,78643,0 ) -(186,128:6630773,44590289:25952256,505283,11795 -g186,128:9448823,44590289 -h186,128:9448823,44590289:983040,0,0 -h186,128:10431863,44590289:0,0,0 -g186,128:7613813,44590289 -(186,128:7613813,44590289:1835010,485622,11795 -k186,128:9448823,44590289:465963 ) -g186,128:13452417,44590289 -g186,128:16505084,44590289 -g186,128:16505084,44590289 -(186,128:16658333,44590289:501378,78643,0 -$186,128:16658333,44590289 -(186,128:16822187,44590289:173670,78643,0 +(186,131:30696917,9714417:501378,78643,0 +(186,131:30860771,9714417:173670,78643,0 ) -$186,128:17159711,44590289 ) -(186,128:17159711,44590289:501378,78643,0 -(186,128:17323565,44590289:173670,78643,0 +(186,131:31239539,9714417:1343490,485622,11795 +k186,131:31239539,9714417:0 +k186,131:31387652,9714417:148113 ) +g186,131:30911859,9714417 +g186,131:32583029,9714417 ) -(186,128:17661089,44590289:501378,78643,0 -(186,128:17824943,44590289:173670,78643,0 +(186,132:6630773,10579497:25952256,505283,126483 +g186,132:12529013,10579497 +h186,132:12529013,10579497:3080190,0,0 +h186,132:15609203,10579497:0,0,0 +g186,132:9710963,10579497 +(186,132:9710963,10579497:2818050,485622,11795 +k186,132:12529013,10579497:876874 ) +g186,132:15026590,10579497 +g186,132:17581183,10579497 +(186,132:17661089,10579497:501378,78643,0 +$186,132:17661089,10579497 +(186,132:17824943,10579497:173670,78643,0 ) -(186,128:18162467,44590289:501378,78643,0 -(186,128:18326321,44590289:173670,78643,0 +$186,132:18162467,10579497 ) +(186,132:18162467,10579497:501378,78643,0 +(186,132:18326321,10579497:173670,78643,0 ) -(186,128:18663845,44590289:501378,78643,0 -(186,128:18827699,44590289:173670,78643,0 ) +(186,132:18663845,10579497:501378,78643,0 +(186,132:18827699,10579497:173670,78643,0 ) -(186,128:19165223,44590289:501378,78643,0 -(186,128:19329077,44590289:173670,78643,0 ) +(186,132:19165223,10579497:501378,78643,0 +(186,132:19329077,10579497:173670,78643,0 ) -(186,128:19666601,44590289:501378,78643,0 -(186,128:19830455,44590289:173670,78643,0 ) +(186,132:19666601,10579497:501378,78643,0 +(186,132:19830455,10579497:173670,78643,0 ) -(186,128:20167979,44590289:501378,78643,0 -(186,128:20331833,44590289:173670,78643,0 ) +(186,132:20167979,10579497:501378,78643,0 +(186,132:20331833,10579497:173670,78643,0 ) -(186,128:20669357,44590289:501378,78643,0 -(186,128:20833211,44590289:173670,78643,0 ) +(186,132:20669357,10579497:501378,78643,0 +(186,132:20833211,10579497:173670,78643,0 ) -(186,128:21170735,44590289:501378,78643,0 -(186,128:21334589,44590289:173670,78643,0 ) +(186,132:21170735,10579497:501378,78643,0 +(186,132:21334589,10579497:173670,78643,0 ) -(186,128:21672113,44590289:501378,78643,0 -(186,128:21835967,44590289:173670,78643,0 ) +(186,132:21672113,10579497:501378,78643,0 +(186,132:21835967,10579497:173670,78643,0 ) -(186,128:22173491,44590289:501378,78643,0 -(186,128:22337345,44590289:173670,78643,0 ) +(186,132:22173491,10579497:501378,78643,0 +(186,132:22337345,10579497:173670,78643,0 ) -(186,128:22674869,44590289:501378,78643,0 -(186,128:22838723,44590289:173670,78643,0 ) +(186,132:22674869,10579497:501378,78643,0 +(186,132:22838723,10579497:173670,78643,0 ) -(186,128:23176247,44590289:501378,78643,0 -(186,128:23340101,44590289:173670,78643,0 ) +(186,132:23176247,10579497:501378,78643,0 +(186,132:23340101,10579497:173670,78643,0 ) -(186,128:23677625,44590289:501378,78643,0 -(186,128:23841479,44590289:173670,78643,0 ) +(186,132:23677625,10579497:501378,78643,0 +(186,132:23841479,10579497:173670,78643,0 ) -(186,128:24179003,44590289:501378,78643,0 -(186,128:24342857,44590289:173670,78643,0 ) +(186,132:24179003,10579497:501378,78643,0 +(186,132:24342857,10579497:173670,78643,0 ) -(186,128:24680381,44590289:501378,78643,0 -(186,128:24844235,44590289:173670,78643,0 ) +(186,132:24680381,10579497:501378,78643,0 +(186,132:24844235,10579497:173670,78643,0 ) -(186,128:25181759,44590289:501378,78643,0 -(186,128:25345613,44590289:173670,78643,0 ) +(186,132:25181759,10579497:501378,78643,0 +(186,132:25345613,10579497:173670,78643,0 ) -(186,128:25683137,44590289:501378,78643,0 -(186,128:25846991,44590289:173670,78643,0 ) +(186,132:25683137,10579497:501378,78643,0 +(186,132:25846991,10579497:173670,78643,0 ) -(186,128:26184515,44590289:501378,78643,0 -(186,128:26348369,44590289:173670,78643,0 ) +(186,132:26184515,10579497:501378,78643,0 +(186,132:26348369,10579497:173670,78643,0 ) -(186,128:26685893,44590289:501378,78643,0 -(186,128:26849747,44590289:173670,78643,0 ) +(186,132:26685893,10579497:501378,78643,0 +(186,132:26849747,10579497:173670,78643,0 ) -(186,128:27187271,44590289:501378,78643,0 -(186,128:27351125,44590289:173670,78643,0 ) +(186,132:27187271,10579497:501378,78643,0 +(186,132:27351125,10579497:173670,78643,0 ) -(186,128:27688649,44590289:501378,78643,0 -(186,128:27852503,44590289:173670,78643,0 ) +(186,132:27688649,10579497:501378,78643,0 +(186,132:27852503,10579497:173670,78643,0 ) -(186,128:28190027,44590289:501378,78643,0 -(186,128:28353881,44590289:173670,78643,0 ) +(186,132:28190027,10579497:501378,78643,0 +(186,132:28353881,10579497:173670,78643,0 ) -(186,128:28691405,44590289:501378,78643,0 -(186,128:28855259,44590289:173670,78643,0 ) +(186,132:28691405,10579497:501378,78643,0 +(186,132:28855259,10579497:173670,78643,0 ) -(186,128:29192783,44590289:501378,78643,0 -(186,128:29356637,44590289:173670,78643,0 ) +(186,132:29192783,10579497:501378,78643,0 +(186,132:29356637,10579497:173670,78643,0 ) -(186,128:29694161,44590289:501378,78643,0 -(186,128:29858015,44590289:173670,78643,0 ) +(186,132:29694161,10579497:501378,78643,0 +(186,132:29858015,10579497:173670,78643,0 ) -(186,128:30195539,44590289:501378,78643,0 -(186,128:30359393,44590289:173670,78643,0 ) +(186,132:30195539,10579497:501378,78643,0 +(186,132:30359393,10579497:173670,78643,0 ) -(186,128:30696917,44590289:501378,78643,0 -(186,128:30860771,44590289:173670,78643,0 ) +(186,132:30696917,10579497:501378,78643,0 +(186,132:30860771,10579497:173670,78643,0 ) -(186,128:31239539,44590289:1343490,485622,11795 -k186,128:31239539,44590289:0 -k186,128:31387652,44590289:148113 ) -g186,128:30911859,44590289 -g186,128:32583029,44590289 +(186,132:31239539,10579497:1343490,485622,11795 +k186,132:31239539,10579497:0 +k186,132:31387652,10579497:148113 ) -(186,129:6630773,45431777:25952256,513147,126483 -g186,129:11873653,45431777 -h186,129:11873653,45431777:2818050,0,0 -h186,129:14691703,45431777:0,0,0 -g186,129:9448823,45431777 -(186,129:9448823,45431777:2424830,485622,11795 -k186,129:11873653,45431777:483654 +g186,132:30911859,10579497 +g186,132:32583029,10579497 ) -g186,129:15877247,45431777 -g186,129:18631069,45431777 -g186,129:19489590,45431777 -g186,129:22143798,45431777 -(186,129:22173491,45431777:501378,78643,0 -$186,129:22173491,45431777 -(186,129:22337345,45431777:173670,78643,0 +(186,133:6630773,11444577:25952256,505283,134348 +g186,133:9710963,11444577 +h186,133:9710963,11444577:983040,0,0 +h186,133:10694003,11444577:0,0,0 +g186,133:7613813,11444577 +(186,133:7613813,11444577:2097150,481690,0 +k186,133:9710963,11444577:728103 ) -$186,129:22674869,45431777 +g186,133:12279974,11444577 +g186,133:14881753,11444577 +g186,133:14881753,11444577 +(186,133:15154199,11444577:501378,78643,0 +$186,133:15154199,11444577 +(186,133:15318053,11444577:173670,78643,0 ) -(186,129:22674869,45431777:501378,78643,0 -(186,129:22838723,45431777:173670,78643,0 +$186,133:15655577,11444577 ) +(186,133:15655577,11444577:501378,78643,0 +(186,133:15819431,11444577:173670,78643,0 ) -(186,129:23176247,45431777:501378,78643,0 -(186,129:23340101,45431777:173670,78643,0 ) +(186,133:16156955,11444577:501378,78643,0 +(186,133:16320809,11444577:173670,78643,0 ) -(186,129:23677625,45431777:501378,78643,0 -(186,129:23841479,45431777:173670,78643,0 ) +(186,133:16658333,11444577:501378,78643,0 +(186,133:16822187,11444577:173670,78643,0 ) -(186,129:24179003,45431777:501378,78643,0 -(186,129:24342857,45431777:173670,78643,0 ) +(186,133:17159711,11444577:501378,78643,0 +(186,133:17323565,11444577:173670,78643,0 ) -(186,129:24680381,45431777:501378,78643,0 -(186,129:24844235,45431777:173670,78643,0 ) +(186,133:17661089,11444577:501378,78643,0 +(186,133:17824943,11444577:173670,78643,0 ) -(186,129:25181759,45431777:501378,78643,0 -(186,129:25345613,45431777:173670,78643,0 ) +(186,133:18162467,11444577:501378,78643,0 +(186,133:18326321,11444577:173670,78643,0 ) -(186,129:25683137,45431777:501378,78643,0 -(186,129:25846991,45431777:173670,78643,0 ) +(186,133:18663845,11444577:501378,78643,0 +(186,133:18827699,11444577:173670,78643,0 ) -(186,129:26184515,45431777:501378,78643,0 -(186,129:26348369,45431777:173670,78643,0 ) +(186,133:19165223,11444577:501378,78643,0 +(186,133:19329077,11444577:173670,78643,0 ) -(186,129:26685893,45431777:501378,78643,0 -(186,129:26849747,45431777:173670,78643,0 ) +(186,133:19666601,11444577:501378,78643,0 +(186,133:19830455,11444577:173670,78643,0 ) -(186,129:27187271,45431777:501378,78643,0 -(186,129:27351125,45431777:173670,78643,0 ) +(186,133:20167979,11444577:501378,78643,0 +(186,133:20331833,11444577:173670,78643,0 ) -(186,129:27688649,45431777:501378,78643,0 -(186,129:27852503,45431777:173670,78643,0 ) +(186,133:20669357,11444577:501378,78643,0 +(186,133:20833211,11444577:173670,78643,0 ) -(186,129:28190027,45431777:501378,78643,0 -(186,129:28353881,45431777:173670,78643,0 ) +(186,133:21170735,11444577:501378,78643,0 +(186,133:21334589,11444577:173670,78643,0 ) -(186,129:28691405,45431777:501378,78643,0 -(186,129:28855259,45431777:173670,78643,0 ) +(186,133:21672113,11444577:501378,78643,0 +(186,133:21835967,11444577:173670,78643,0 ) -(186,129:29192783,45431777:501378,78643,0 -(186,129:29356637,45431777:173670,78643,0 ) +(186,133:22173491,11444577:501378,78643,0 +(186,133:22337345,11444577:173670,78643,0 ) -(186,129:29694161,45431777:501378,78643,0 -(186,129:29858015,45431777:173670,78643,0 ) +(186,133:22674869,11444577:501378,78643,0 +(186,133:22838723,11444577:173670,78643,0 ) -(186,129:30195539,45431777:501378,78643,0 -(186,129:30359393,45431777:173670,78643,0 ) +(186,133:23176247,11444577:501378,78643,0 +(186,133:23340101,11444577:173670,78643,0 ) -(186,129:30696917,45431777:501378,78643,0 -(186,129:30860771,45431777:173670,78643,0 ) +(186,133:23677625,11444577:501378,78643,0 +(186,133:23841479,11444577:173670,78643,0 ) -(186,129:31239539,45431777:1343490,485622,11795 -k186,129:31239539,45431777:0 -k186,129:31387652,45431777:148113 ) -g186,129:30911859,45431777 -g186,129:32583029,45431777 +(186,133:24179003,11444577:501378,78643,0 +(186,133:24342857,11444577:173670,78643,0 ) -] -(186,131:32583029,45706769:0,0,0 -g186,131:32583029,45706769 ) +(186,133:24680381,11444577:501378,78643,0 +(186,133:24844235,11444577:173670,78643,0 ) -] -(186,131:6630773,47279633:25952256,0,0 -h186,131:6630773,47279633:25952256,0,0 ) -] -(186,131:4262630,4025873:0,0,0 -[186,131:-473656,4025873:0,0,0 -(186,131:-473656,-710413:0,0,0 -(186,131:-473656,-710413:0,0,0 -g186,131:-473656,-710413 +(186,133:25181759,11444577:501378,78643,0 +(186,133:25345613,11444577:173670,78643,0 ) -g186,131:-473656,-710413 ) -] +(186,133:25683137,11444577:501378,78643,0 +(186,133:25846991,11444577:173670,78643,0 ) -] -!125820 -}4 -!11 -{5 -[186,186:4262630,47279633:28320399,43253760,0 -(186,186:4262630,4025873:0,0,0 -[186,186:-473656,4025873:0,0,0 -(186,186:-473656,-710413:0,0,0 -(186,186:-473656,-644877:0,0,0 -k186,186:-473656,-644877:-65536 ) -(186,186:-473656,4736287:0,0,0 -k186,186:-473656,4736287:5209943 +(186,133:26184515,11444577:501378,78643,0 +(186,133:26348369,11444577:173670,78643,0 ) -g186,186:-473656,-710413 ) -] +(186,133:26685893,11444577:501378,78643,0 +(186,133:26849747,11444577:173670,78643,0 ) -[186,186:6630773,47279633:25952256,43253760,0 -[186,186:6630773,4812305:25952256,786432,0 -(186,186:6630773,4812305:25952256,485622,11795 -(186,186:6630773,4812305:25952256,485622,11795 -g186,186:3078558,4812305 -[186,186:3078558,4812305:0,0,0 -(186,186:3078558,2439708:0,1703936,0 -k186,186:1358238,2439708:-1720320 -(1,135:1358238,2439708:1720320,1703936,0 -(1,135:1358238,2439708:1179648,16384,0 -r186,186:2537886,2439708:1179648,16384,0 ) -g1,135:3062174,2439708 -(1,135:3062174,2439708:16384,1703936,0 -[1,135:3062174,2439708:25952256,1703936,0 -(1,135:3062174,1915420:25952256,1179648,0 -(1,135:3062174,1915420:16384,1179648,0 -r186,186:3078558,1915420:16384,1179648,0 +(186,133:27187271,11444577:501378,78643,0 +(186,133:27351125,11444577:173670,78643,0 ) -k1,135:29014430,1915420:25935872 -g1,135:29014430,1915420 ) -] +(186,133:27688649,11444577:501378,78643,0 +(186,133:27852503,11444577:173670,78643,0 ) ) +(186,133:28190027,11444577:501378,78643,0 +(186,133:28353881,11444577:173670,78643,0 ) -] -[186,186:3078558,4812305:0,0,0 -(186,186:3078558,2439708:0,1703936,0 -g186,186:29030814,2439708 -g186,186:36135244,2439708 -(1,135:36135244,2439708:1720320,1703936,0 -(1,135:36135244,2439708:16384,1703936,0 -[1,135:36135244,2439708:25952256,1703936,0 -(1,135:36135244,1915420:25952256,1179648,0 -(1,135:36135244,1915420:16384,1179648,0 -r186,186:36151628,1915420:16384,1179648,0 ) -k1,135:62087500,1915420:25935872 -g1,135:62087500,1915420 +(186,133:28691405,11444577:501378,78643,0 +(186,133:28855259,11444577:173670,78643,0 ) -] ) -g1,135:36675916,2439708 -(1,135:36675916,2439708:1179648,16384,0 -r186,186:37855564,2439708:1179648,16384,0 +(186,133:29192783,11444577:501378,78643,0 +(186,133:29356637,11444577:173670,78643,0 ) ) -k186,186:3078556,2439708:-34777008 +(186,133:29694161,11444577:501378,78643,0 +(186,133:29858015,11444577:173670,78643,0 ) -] -[186,186:3078558,4812305:0,0,0 -(186,186:3078558,49800853:0,16384,2228224 -k186,186:1358238,49800853:-1720320 -(1,135:1358238,49800853:1720320,16384,2228224 -(1,135:1358238,49800853:1179648,16384,0 -r186,186:2537886,49800853:1179648,16384,0 ) -g1,135:3062174,49800853 -(1,135:3062174,52029077:16384,1703936,0 -[1,135:3062174,52029077:25952256,1703936,0 -(1,135:3062174,51504789:25952256,1179648,0 -(1,135:3062174,51504789:16384,1179648,0 -r186,186:3078558,51504789:16384,1179648,0 +(186,133:30195539,11444577:501378,78643,0 +(186,133:30359393,11444577:173670,78643,0 ) -k1,135:29014430,51504789:25935872 -g1,135:29014430,51504789 ) -] +(186,133:30696917,11444577:501378,78643,0 +(186,133:30860771,11444577:173670,78643,0 ) ) +(186,133:31239539,11444577:1343490,485622,11795 +k186,133:31239539,11444577:0 +k186,133:31387652,11444577:148113 ) -] -[186,186:3078558,4812305:0,0,0 -(186,186:3078558,49800853:0,16384,2228224 -g186,186:29030814,49800853 -g186,186:36135244,49800853 -(1,135:36135244,49800853:1720320,16384,2228224 -(1,135:36135244,52029077:16384,1703936,0 -[1,135:36135244,52029077:25952256,1703936,0 -(1,135:36135244,51504789:25952256,1179648,0 -(1,135:36135244,51504789:16384,1179648,0 -r186,186:36151628,51504789:16384,1179648,0 +g186,133:30911859,11444577 +g186,133:32583029,11444577 ) -k1,135:62087500,51504789:25935872 -g1,135:62087500,51504789 +(186,134:6630773,12965017:25952256,505283,134348 +g186,134:7613813,12965017 +h186,134:7613813,12965017:0,0,0 +g186,134:6630773,12965017 +(186,134:6630773,12965017:983040,485622,11795 +k186,134:7613813,12965017:574751 ) -] +g186,134:8290144,12965017 +g186,134:12245241,12965017 +g186,134:13953764,12965017 +k186,134:24277323,12965017:6962217 +k186,134:31239539,12965017:6962216 +(186,134:31239539,12965017:1343490,485622,11795 +k186,134:31358161,12965017:118622 ) -g1,135:36675916,49800853 -(1,135:36675916,49800853:1179648,16384,0 -r186,186:37855564,49800853:1179648,16384,0 +g186,134:31239539,12965017 +g186,134:32583029,12965017 ) +(186,135:6630773,13830097:25952256,513147,126483 +g186,135:9710963,13830097 +h186,135:9710963,13830097:983040,0,0 +h186,135:10694003,13830097:0,0,0 +g186,135:7613813,13830097 +(186,135:7613813,13830097:2097150,485622,11795 +k186,135:9710963,13830097:1126562 ) -k186,186:3078556,49800853:-34777008 +g186,135:11549247,13830097 +g186,135:12407768,13830097 +g186,135:13810238,13830097 +g186,135:16427090,13830097 +g186,135:16427090,13830097 +(186,135:16658333,13830097:501378,78643,0 +$186,135:16658333,13830097 +(186,135:16822187,13830097:173670,78643,0 ) -] -g186,186:6630773,4812305 -k186,186:29827895,4812305:22236364 +$186,135:17159711,13830097 ) +(186,135:17159711,13830097:501378,78643,0 +(186,135:17323565,13830097:173670,78643,0 ) -] -[186,186:6630773,45706769:25952256,40108032,0 -(186,186:6630773,45706769:25952256,40108032,0 -(186,186:6630773,45706769:0,0,0 -g186,186:6630773,45706769 ) -[186,186:6630773,45706769:25952256,40108032,0 -(186,130:6630773,6254097:25952256,505283,126483 -g186,130:11873653,6254097 -h186,130:11873653,6254097:2818050,0,0 -h186,130:14691703,6254097:0,0,0 -g186,130:9448823,6254097 -(186,130:9448823,6254097:2424830,485622,11795 -k186,130:11873653,6254097:483654 +(186,135:17661089,13830097:501378,78643,0 +(186,135:17824943,13830097:173670,78643,0 ) -g186,130:14869303,6254097 -g186,130:18996105,6254097 -g186,130:21550698,6254097 -(186,130:21672113,6254097:501378,78643,0 -$186,130:21672113,6254097 -(186,130:21835967,6254097:173670,78643,0 ) -$186,130:22173491,6254097 +(186,135:18162467,13830097:501378,78643,0 +(186,135:18326321,13830097:173670,78643,0 ) -(186,130:22173491,6254097:501378,78643,0 -(186,130:22337345,6254097:173670,78643,0 ) +(186,135:18663845,13830097:501378,78643,0 +(186,135:18827699,13830097:173670,78643,0 ) -(186,130:22674869,6254097:501378,78643,0 -(186,130:22838723,6254097:173670,78643,0 ) +(186,135:19165223,13830097:501378,78643,0 +(186,135:19329077,13830097:173670,78643,0 ) -(186,130:23176247,6254097:501378,78643,0 -(186,130:23340101,6254097:173670,78643,0 ) +(186,135:19666601,13830097:501378,78643,0 +(186,135:19830455,13830097:173670,78643,0 ) -(186,130:23677625,6254097:501378,78643,0 -(186,130:23841479,6254097:173670,78643,0 ) +(186,135:20167979,13830097:501378,78643,0 +(186,135:20331833,13830097:173670,78643,0 ) -(186,130:24179003,6254097:501378,78643,0 -(186,130:24342857,6254097:173670,78643,0 ) +(186,135:20669357,13830097:501378,78643,0 +(186,135:20833211,13830097:173670,78643,0 ) -(186,130:24680381,6254097:501378,78643,0 -(186,130:24844235,6254097:173670,78643,0 ) +(186,135:21170735,13830097:501378,78643,0 +(186,135:21334589,13830097:173670,78643,0 ) -(186,130:25181759,6254097:501378,78643,0 -(186,130:25345613,6254097:173670,78643,0 ) +(186,135:21672113,13830097:501378,78643,0 +(186,135:21835967,13830097:173670,78643,0 ) -(186,130:25683137,6254097:501378,78643,0 -(186,130:25846991,6254097:173670,78643,0 ) +(186,135:22173491,13830097:501378,78643,0 +(186,135:22337345,13830097:173670,78643,0 ) -(186,130:26184515,6254097:501378,78643,0 -(186,130:26348369,6254097:173670,78643,0 ) +(186,135:22674869,13830097:501378,78643,0 +(186,135:22838723,13830097:173670,78643,0 ) -(186,130:26685893,6254097:501378,78643,0 -(186,130:26849747,6254097:173670,78643,0 ) +(186,135:23176247,13830097:501378,78643,0 +(186,135:23340101,13830097:173670,78643,0 ) -(186,130:27187271,6254097:501378,78643,0 -(186,130:27351125,6254097:173670,78643,0 ) +(186,135:23677625,13830097:501378,78643,0 +(186,135:23841479,13830097:173670,78643,0 ) -(186,130:27688649,6254097:501378,78643,0 -(186,130:27852503,6254097:173670,78643,0 ) +(186,135:24179003,13830097:501378,78643,0 +(186,135:24342857,13830097:173670,78643,0 ) -(186,130:28190027,6254097:501378,78643,0 -(186,130:28353881,6254097:173670,78643,0 ) +(186,135:24680381,13830097:501378,78643,0 +(186,135:24844235,13830097:173670,78643,0 ) -(186,130:28691405,6254097:501378,78643,0 -(186,130:28855259,6254097:173670,78643,0 ) +(186,135:25181759,13830097:501378,78643,0 +(186,135:25345613,13830097:173670,78643,0 ) -(186,130:29192783,6254097:501378,78643,0 -(186,130:29356637,6254097:173670,78643,0 ) +(186,135:25683137,13830097:501378,78643,0 +(186,135:25846991,13830097:173670,78643,0 ) -(186,130:29694161,6254097:501378,78643,0 -(186,130:29858015,6254097:173670,78643,0 ) +(186,135:26184515,13830097:501378,78643,0 +(186,135:26348369,13830097:173670,78643,0 ) -(186,130:30195539,6254097:501378,78643,0 -(186,130:30359393,6254097:173670,78643,0 ) +(186,135:26685893,13830097:501378,78643,0 +(186,135:26849747,13830097:173670,78643,0 ) -(186,130:30696917,6254097:501378,78643,0 -(186,130:30860771,6254097:173670,78643,0 ) +(186,135:27187271,13830097:501378,78643,0 +(186,135:27351125,13830097:173670,78643,0 ) -(186,130:31239539,6254097:1343490,485622,11795 -k186,130:31239539,6254097:0 -k186,130:31387652,6254097:148113 ) -g186,130:30911859,6254097 -g186,130:32583029,6254097 +(186,135:27688649,13830097:501378,78643,0 +(186,135:27852503,13830097:173670,78643,0 ) -(186,131:6630773,7095585:25952256,505283,134348 -g186,131:11873653,7095585 -h186,131:11873653,7095585:2818050,0,0 -h186,131:14691703,7095585:0,0,0 -g186,131:9448823,7095585 -(186,131:9448823,7095585:2424830,485622,11795 -k186,131:11873653,7095585:483654 ) -g186,131:17620505,7095585 -g186,131:19835622,7095585 -(186,131:20167979,7095585:501378,78643,0 -$186,131:20167979,7095585 -(186,131:20331833,7095585:173670,78643,0 +(186,135:28190027,13830097:501378,78643,0 +(186,135:28353881,13830097:173670,78643,0 ) -$186,131:20669357,7095585 ) -(186,131:20669357,7095585:501378,78643,0 -(186,131:20833211,7095585:173670,78643,0 +(186,135:28691405,13830097:501378,78643,0 +(186,135:28855259,13830097:173670,78643,0 ) ) -(186,131:21170735,7095585:501378,78643,0 -(186,131:21334589,7095585:173670,78643,0 +(186,135:29192783,13830097:501378,78643,0 +(186,135:29356637,13830097:173670,78643,0 ) ) -(186,131:21672113,7095585:501378,78643,0 -(186,131:21835967,7095585:173670,78643,0 +(186,135:29694161,13830097:501378,78643,0 +(186,135:29858015,13830097:173670,78643,0 ) ) -(186,131:22173491,7095585:501378,78643,0 -(186,131:22337345,7095585:173670,78643,0 +(186,135:30195539,13830097:501378,78643,0 +(186,135:30359393,13830097:173670,78643,0 ) ) -(186,131:22674869,7095585:501378,78643,0 -(186,131:22838723,7095585:173670,78643,0 +(186,135:30696917,13830097:501378,78643,0 +(186,135:30860771,13830097:173670,78643,0 ) ) -(186,131:23176247,7095585:501378,78643,0 -(186,131:23340101,7095585:173670,78643,0 +(186,135:31239539,13830097:1343490,485622,11795 +k186,135:31239539,13830097:0 +k186,135:31387652,13830097:148113 ) +g186,135:30911859,13830097 +g186,135:32583029,13830097 ) -(186,131:23677625,7095585:501378,78643,0 -(186,131:23841479,7095585:173670,78643,0 +(186,136:6630773,14695177:25952256,505283,11795 +g186,136:9710963,14695177 +h186,136:9710963,14695177:983040,0,0 +h186,136:10694003,14695177:0,0,0 +g186,136:7613813,14695177 +(186,136:7613813,14695177:2097150,485622,11795 +k186,136:9710963,14695177:1126562 ) +g186,136:13914442,14695177 +g186,136:13914442,14695177 +(186,136:14151443,14695177:501378,78643,0 +$186,136:14151443,14695177 +(186,136:14315297,14695177:173670,78643,0 ) -(186,131:24179003,7095585:501378,78643,0 -(186,131:24342857,7095585:173670,78643,0 +$186,136:14652821,14695177 ) +(186,136:14652821,14695177:501378,78643,0 +(186,136:14816675,14695177:173670,78643,0 ) -(186,131:24680381,7095585:501378,78643,0 -(186,131:24844235,7095585:173670,78643,0 ) +(186,136:15154199,14695177:501378,78643,0 +(186,136:15318053,14695177:173670,78643,0 ) -(186,131:25181759,7095585:501378,78643,0 -(186,131:25345613,7095585:173670,78643,0 ) +(186,136:15655577,14695177:501378,78643,0 +(186,136:15819431,14695177:173670,78643,0 ) -(186,131:25683137,7095585:501378,78643,0 -(186,131:25846991,7095585:173670,78643,0 ) +(186,136:16156955,14695177:501378,78643,0 +(186,136:16320809,14695177:173670,78643,0 ) -(186,131:26184515,7095585:501378,78643,0 -(186,131:26348369,7095585:173670,78643,0 ) +(186,136:16658333,14695177:501378,78643,0 +(186,136:16822187,14695177:173670,78643,0 ) -(186,131:26685893,7095585:501378,78643,0 -(186,131:26849747,7095585:173670,78643,0 ) +(186,136:17159711,14695177:501378,78643,0 +(186,136:17323565,14695177:173670,78643,0 ) -(186,131:27187271,7095585:501378,78643,0 -(186,131:27351125,7095585:173670,78643,0 ) +(186,136:17661089,14695177:501378,78643,0 +(186,136:17824943,14695177:173670,78643,0 ) -(186,131:27688649,7095585:501378,78643,0 -(186,131:27852503,7095585:173670,78643,0 ) +(186,136:18162467,14695177:501378,78643,0 +(186,136:18326321,14695177:173670,78643,0 ) -(186,131:28190027,7095585:501378,78643,0 -(186,131:28353881,7095585:173670,78643,0 ) +(186,136:18663845,14695177:501378,78643,0 +(186,136:18827699,14695177:173670,78643,0 ) -(186,131:28691405,7095585:501378,78643,0 -(186,131:28855259,7095585:173670,78643,0 ) +(186,136:19165223,14695177:501378,78643,0 +(186,136:19329077,14695177:173670,78643,0 ) -(186,131:29192783,7095585:501378,78643,0 -(186,131:29356637,7095585:173670,78643,0 ) +(186,136:19666601,14695177:501378,78643,0 +(186,136:19830455,14695177:173670,78643,0 ) -(186,131:29694161,7095585:501378,78643,0 -(186,131:29858015,7095585:173670,78643,0 ) +(186,136:20167979,14695177:501378,78643,0 +(186,136:20331833,14695177:173670,78643,0 ) -(186,131:30195539,7095585:501378,78643,0 -(186,131:30359393,7095585:173670,78643,0 ) +(186,136:20669357,14695177:501378,78643,0 +(186,136:20833211,14695177:173670,78643,0 ) -(186,131:30696917,7095585:501378,78643,0 -(186,131:30860771,7095585:173670,78643,0 ) +(186,136:21170735,14695177:501378,78643,0 +(186,136:21334589,14695177:173670,78643,0 ) -(186,131:31239539,7095585:1343490,485622,11795 -k186,131:31239539,7095585:0 -k186,131:31387652,7095585:148113 ) -g186,131:30911859,7095585 -g186,131:32583029,7095585 +(186,136:21672113,14695177:501378,78643,0 +(186,136:21835967,14695177:173670,78643,0 ) -(186,132:6630773,7937073:25952256,505283,126483 -g186,132:11873653,7937073 -h186,132:11873653,7937073:2818050,0,0 -h186,132:14691703,7937073:0,0,0 -g186,132:9448823,7937073 -(186,132:9448823,7937073:2424830,485622,11795 -k186,132:11873653,7937073:483654 ) -g186,132:14371230,7937073 -g186,132:16925823,7937073 -(186,132:17159711,7937073:501378,78643,0 -$186,132:17159711,7937073 -(186,132:17323565,7937073:173670,78643,0 +(186,136:22173491,14695177:501378,78643,0 +(186,136:22337345,14695177:173670,78643,0 ) -$186,132:17661089,7937073 ) -(186,132:17661089,7937073:501378,78643,0 -(186,132:17824943,7937073:173670,78643,0 +(186,136:22674869,14695177:501378,78643,0 +(186,136:22838723,14695177:173670,78643,0 ) ) -(186,132:18162467,7937073:501378,78643,0 -(186,132:18326321,7937073:173670,78643,0 +(186,136:23176247,14695177:501378,78643,0 +(186,136:23340101,14695177:173670,78643,0 ) ) -(186,132:18663845,7937073:501378,78643,0 -(186,132:18827699,7937073:173670,78643,0 +(186,136:23677625,14695177:501378,78643,0 +(186,136:23841479,14695177:173670,78643,0 ) ) -(186,132:19165223,7937073:501378,78643,0 -(186,132:19329077,7937073:173670,78643,0 +(186,136:24179003,14695177:501378,78643,0 +(186,136:24342857,14695177:173670,78643,0 ) ) -(186,132:19666601,7937073:501378,78643,0 -(186,132:19830455,7937073:173670,78643,0 +(186,136:24680381,14695177:501378,78643,0 +(186,136:24844235,14695177:173670,78643,0 ) ) -(186,132:20167979,7937073:501378,78643,0 -(186,132:20331833,7937073:173670,78643,0 +(186,136:25181759,14695177:501378,78643,0 +(186,136:25345613,14695177:173670,78643,0 ) ) -(186,132:20669357,7937073:501378,78643,0 -(186,132:20833211,7937073:173670,78643,0 +(186,136:25683137,14695177:501378,78643,0 +(186,136:25846991,14695177:173670,78643,0 ) ) -(186,132:21170735,7937073:501378,78643,0 -(186,132:21334589,7937073:173670,78643,0 +(186,136:26184515,14695177:501378,78643,0 +(186,136:26348369,14695177:173670,78643,0 ) ) -(186,132:21672113,7937073:501378,78643,0 -(186,132:21835967,7937073:173670,78643,0 +(186,136:26685893,14695177:501378,78643,0 +(186,136:26849747,14695177:173670,78643,0 ) ) -(186,132:22173491,7937073:501378,78643,0 -(186,132:22337345,7937073:173670,78643,0 +(186,136:27187271,14695177:501378,78643,0 +(186,136:27351125,14695177:173670,78643,0 ) ) -(186,132:22674869,7937073:501378,78643,0 -(186,132:22838723,7937073:173670,78643,0 +(186,136:27688649,14695177:501378,78643,0 +(186,136:27852503,14695177:173670,78643,0 ) ) -(186,132:23176247,7937073:501378,78643,0 -(186,132:23340101,7937073:173670,78643,0 +(186,136:28190027,14695177:501378,78643,0 +(186,136:28353881,14695177:173670,78643,0 ) ) -(186,132:23677625,7937073:501378,78643,0 -(186,132:23841479,7937073:173670,78643,0 +(186,136:28691405,14695177:501378,78643,0 +(186,136:28855259,14695177:173670,78643,0 ) ) -(186,132:24179003,7937073:501378,78643,0 -(186,132:24342857,7937073:173670,78643,0 +(186,136:29192783,14695177:501378,78643,0 +(186,136:29356637,14695177:173670,78643,0 ) ) -(186,132:24680381,7937073:501378,78643,0 -(186,132:24844235,7937073:173670,78643,0 +(186,136:29694161,14695177:501378,78643,0 +(186,136:29858015,14695177:173670,78643,0 ) ) -(186,132:25181759,7937073:501378,78643,0 -(186,132:25345613,7937073:173670,78643,0 +(186,136:30195539,14695177:501378,78643,0 +(186,136:30359393,14695177:173670,78643,0 ) ) -(186,132:25683137,7937073:501378,78643,0 -(186,132:25846991,7937073:173670,78643,0 +(186,136:30696917,14695177:501378,78643,0 +(186,136:30860771,14695177:173670,78643,0 ) ) -(186,132:26184515,7937073:501378,78643,0 -(186,132:26348369,7937073:173670,78643,0 +(186,136:31239538,14695177:1343490,485622,11795 +k186,136:31239538,14695177:0 +k186,136:31387651,14695177:148113 ) +g186,136:30911858,14695177 +g186,136:32583028,14695177 ) -(186,132:26685893,7937073:501378,78643,0 -(186,132:26849747,7937073:173670,78643,0 +(186,137:6630773,15560257:25952256,505283,134348 +g186,137:9710963,15560257 +h186,137:9710963,15560257:983040,0,0 +h186,137:10694003,15560257:0,0,0 +g186,137:7613813,15560257 +(186,137:7613813,15560257:2097150,485622,11795 +k186,137:9710963,15560257:1126562 ) +g186,137:12775426,15560257 +g186,137:14487881,15560257 +g186,137:15303148,15560257 +g186,137:16705618,15560257 +g186,137:19322470,15560257 +g186,137:19322470,15560257 +(186,137:19666601,15560257:501378,78643,0 +$186,137:19666601,15560257 +(186,137:19830455,15560257:173670,78643,0 ) -(186,132:27187271,7937073:501378,78643,0 -(186,132:27351125,7937073:173670,78643,0 +$186,137:20167979,15560257 ) +(186,137:20167979,15560257:501378,78643,0 +(186,137:20331833,15560257:173670,78643,0 ) -(186,132:27688649,7937073:501378,78643,0 -(186,132:27852503,7937073:173670,78643,0 ) +(186,137:20669357,15560257:501378,78643,0 +(186,137:20833211,15560257:173670,78643,0 ) -(186,132:28190027,7937073:501378,78643,0 -(186,132:28353881,7937073:173670,78643,0 ) +(186,137:21170735,15560257:501378,78643,0 +(186,137:21334589,15560257:173670,78643,0 ) -(186,132:28691405,7937073:501378,78643,0 -(186,132:28855259,7937073:173670,78643,0 ) +(186,137:21672113,15560257:501378,78643,0 +(186,137:21835967,15560257:173670,78643,0 ) -(186,132:29192783,7937073:501378,78643,0 -(186,132:29356637,7937073:173670,78643,0 ) +(186,137:22173491,15560257:501378,78643,0 +(186,137:22337345,15560257:173670,78643,0 ) -(186,132:29694161,7937073:501378,78643,0 -(186,132:29858015,7937073:173670,78643,0 ) +(186,137:22674869,15560257:501378,78643,0 +(186,137:22838723,15560257:173670,78643,0 ) -(186,132:30195539,7937073:501378,78643,0 -(186,132:30359393,7937073:173670,78643,0 ) +(186,137:23176247,15560257:501378,78643,0 +(186,137:23340101,15560257:173670,78643,0 ) -(186,132:30696917,7937073:501378,78643,0 -(186,132:30860771,7937073:173670,78643,0 ) +(186,137:23677625,15560257:501378,78643,0 +(186,137:23841479,15560257:173670,78643,0 ) -(186,132:31239539,7937073:1343490,485622,0 -k186,132:31239539,7937073:0 -k186,132:31387652,7937073:148113 ) -g186,132:30911859,7937073 -g186,132:32583029,7937073 +(186,137:24179003,15560257:501378,78643,0 +(186,137:24342857,15560257:173670,78643,0 ) -(186,133:6630773,8778561:25952256,505283,134348 -g186,133:9448823,8778561 -h186,133:9448823,8778561:983040,0,0 -h186,133:10431863,8778561:0,0,0 -g186,133:7613813,8778561 -(186,133:7613813,8778561:1835010,481690,0 -k186,133:9448823,8778561:465963 ) -g186,133:12017834,8778561 -g186,133:14619613,8778561 -g186,133:14619613,8778561 -(186,133:14652821,8778561:501378,78643,0 -$186,133:14652821,8778561 -(186,133:14816675,8778561:173670,78643,0 +(186,137:24680381,15560257:501378,78643,0 +(186,137:24844235,15560257:173670,78643,0 ) -$186,133:15154199,8778561 ) -(186,133:15154199,8778561:501378,78643,0 -(186,133:15318053,8778561:173670,78643,0 +(186,137:25181759,15560257:501378,78643,0 +(186,137:25345613,15560257:173670,78643,0 ) ) -(186,133:15655577,8778561:501378,78643,0 -(186,133:15819431,8778561:173670,78643,0 +(186,137:25683137,15560257:501378,78643,0 +(186,137:25846991,15560257:173670,78643,0 ) ) -(186,133:16156955,8778561:501378,78643,0 -(186,133:16320809,8778561:173670,78643,0 +(186,137:26184515,15560257:501378,78643,0 +(186,137:26348369,15560257:173670,78643,0 ) ) -(186,133:16658333,8778561:501378,78643,0 -(186,133:16822187,8778561:173670,78643,0 +(186,137:26685893,15560257:501378,78643,0 +(186,137:26849747,15560257:173670,78643,0 ) ) -(186,133:17159711,8778561:501378,78643,0 -(186,133:17323565,8778561:173670,78643,0 +(186,137:27187271,15560257:501378,78643,0 +(186,137:27351125,15560257:173670,78643,0 ) ) -(186,133:17661089,8778561:501378,78643,0 -(186,133:17824943,8778561:173670,78643,0 +(186,137:27688649,15560257:501378,78643,0 +(186,137:27852503,15560257:173670,78643,0 ) ) -(186,133:18162467,8778561:501378,78643,0 -(186,133:18326321,8778561:173670,78643,0 +(186,137:28190027,15560257:501378,78643,0 +(186,137:28353881,15560257:173670,78643,0 ) ) -(186,133:18663845,8778561:501378,78643,0 -(186,133:18827699,8778561:173670,78643,0 +(186,137:28691405,15560257:501378,78643,0 +(186,137:28855259,15560257:173670,78643,0 ) ) -(186,133:19165223,8778561:501378,78643,0 -(186,133:19329077,8778561:173670,78643,0 +(186,137:29192783,15560257:501378,78643,0 +(186,137:29356637,15560257:173670,78643,0 ) ) -(186,133:19666601,8778561:501378,78643,0 -(186,133:19830455,8778561:173670,78643,0 +(186,137:29694161,15560257:501378,78643,0 +(186,137:29858015,15560257:173670,78643,0 ) ) -(186,133:20167979,8778561:501378,78643,0 -(186,133:20331833,8778561:173670,78643,0 +(186,137:30195539,15560257:501378,78643,0 +(186,137:30359393,15560257:173670,78643,0 ) ) -(186,133:20669357,8778561:501378,78643,0 -(186,133:20833211,8778561:173670,78643,0 +(186,137:30696917,15560257:501378,78643,0 +(186,137:30860771,15560257:173670,78643,0 ) ) -(186,133:21170735,8778561:501378,78643,0 -(186,133:21334589,8778561:173670,78643,0 +(186,137:31239539,15560257:1343490,485622,11795 +k186,137:31239539,15560257:0 +k186,137:31387652,15560257:148113 ) +g186,137:30911859,15560257 +g186,137:32583029,15560257 ) -(186,133:21672113,8778561:501378,78643,0 -(186,133:21835967,8778561:173670,78643,0 +(186,138:6630773,16425337:25952256,538806,126483 +g186,138:9710963,16425337 +h186,138:9710963,16425337:983040,0,0 +h186,138:10694003,16425337:0,0,0 +g186,138:7613813,16425337 +(186,138:7613813,16425337:2097150,485622,11795 +k186,138:9710963,16425337:1126562 ) +g186,138:14334528,16425337 +g186,138:15481408,16425337 +g186,138:19830061,16425337 +g186,138:19830061,16425337 +(186,138:20167979,16425337:501378,78643,0 +$186,138:20167979,16425337 +(186,138:20331833,16425337:173670,78643,0 ) -(186,133:22173491,8778561:501378,78643,0 -(186,133:22337345,8778561:173670,78643,0 +$186,138:20669357,16425337 ) +(186,138:20669357,16425337:501378,78643,0 +(186,138:20833211,16425337:173670,78643,0 ) -(186,133:22674869,8778561:501378,78643,0 -(186,133:22838723,8778561:173670,78643,0 ) +(186,138:21170735,16425337:501378,78643,0 +(186,138:21334589,16425337:173670,78643,0 ) -(186,133:23176247,8778561:501378,78643,0 -(186,133:23340101,8778561:173670,78643,0 ) +(186,138:21672113,16425337:501378,78643,0 +(186,138:21835967,16425337:173670,78643,0 ) -(186,133:23677625,8778561:501378,78643,0 -(186,133:23841479,8778561:173670,78643,0 ) +(186,138:22173491,16425337:501378,78643,0 +(186,138:22337345,16425337:173670,78643,0 ) -(186,133:24179003,8778561:501378,78643,0 -(186,133:24342857,8778561:173670,78643,0 ) +(186,138:22674869,16425337:501378,78643,0 +(186,138:22838723,16425337:173670,78643,0 ) -(186,133:24680381,8778561:501378,78643,0 -(186,133:24844235,8778561:173670,78643,0 ) +(186,138:23176247,16425337:501378,78643,0 +(186,138:23340101,16425337:173670,78643,0 ) -(186,133:25181759,8778561:501378,78643,0 -(186,133:25345613,8778561:173670,78643,0 ) +(186,138:23677625,16425337:501378,78643,0 +(186,138:23841479,16425337:173670,78643,0 ) -(186,133:25683137,8778561:501378,78643,0 -(186,133:25846991,8778561:173670,78643,0 ) +(186,138:24179003,16425337:501378,78643,0 +(186,138:24342857,16425337:173670,78643,0 ) -(186,133:26184515,8778561:501378,78643,0 -(186,133:26348369,8778561:173670,78643,0 ) +(186,138:24680381,16425337:501378,78643,0 +(186,138:24844235,16425337:173670,78643,0 ) -(186,133:26685893,8778561:501378,78643,0 -(186,133:26849747,8778561:173670,78643,0 ) +(186,138:25181759,16425337:501378,78643,0 +(186,138:25345613,16425337:173670,78643,0 ) -(186,133:27187271,8778561:501378,78643,0 -(186,133:27351125,8778561:173670,78643,0 ) +(186,138:25683137,16425337:501378,78643,0 +(186,138:25846991,16425337:173670,78643,0 ) -(186,133:27688649,8778561:501378,78643,0 -(186,133:27852503,8778561:173670,78643,0 ) +(186,138:26184515,16425337:501378,78643,0 +(186,138:26348369,16425337:173670,78643,0 ) -(186,133:28190027,8778561:501378,78643,0 -(186,133:28353881,8778561:173670,78643,0 ) +(186,138:26685893,16425337:501378,78643,0 +(186,138:26849747,16425337:173670,78643,0 ) -(186,133:28691405,8778561:501378,78643,0 -(186,133:28855259,8778561:173670,78643,0 ) +(186,138:27187271,16425337:501378,78643,0 +(186,138:27351125,16425337:173670,78643,0 ) -(186,133:29192783,8778561:501378,78643,0 -(186,133:29356637,8778561:173670,78643,0 ) +(186,138:27688649,16425337:501378,78643,0 +(186,138:27852503,16425337:173670,78643,0 ) -(186,133:29694161,8778561:501378,78643,0 -(186,133:29858015,8778561:173670,78643,0 ) +(186,138:28190027,16425337:501378,78643,0 +(186,138:28353881,16425337:173670,78643,0 ) -(186,133:30195539,8778561:501378,78643,0 -(186,133:30359393,8778561:173670,78643,0 ) +(186,138:28691405,16425337:501378,78643,0 +(186,138:28855259,16425337:173670,78643,0 ) -(186,133:30696917,8778561:501378,78643,0 -(186,133:30860771,8778561:173670,78643,0 ) +(186,138:29192783,16425337:501378,78643,0 +(186,138:29356637,16425337:173670,78643,0 ) -(186,133:31239539,8778561:1343490,485622,11795 -k186,133:31239539,8778561:0 -k186,133:31387652,8778561:148113 ) -g186,133:30911859,8778561 -g186,133:32583029,8778561 +(186,138:29694161,16425337:501378,78643,0 +(186,138:29858015,16425337:173670,78643,0 ) -(186,134:6630773,10275409:25952256,505283,134348 -g186,134:7613813,10275409 -h186,134:7613813,10275409:0,0,0 -g186,134:6630773,10275409 -(186,134:6630773,10275409:983040,485622,11795 -k186,134:7613813,10275409:574751 ) -g186,134:8290144,10275409 -g186,134:12245241,10275409 -g186,134:13953764,10275409 -k186,134:24277323,10275409:6962217 -k186,134:31239539,10275409:6962216 -(186,134:31239539,10275409:1343490,485622,11795 -k186,134:31358161,10275409:118622 +(186,138:30195539,16425337:501378,78643,0 +(186,138:30359393,16425337:173670,78643,0 ) -g186,134:31239539,10275409 -g186,134:32583029,10275409 ) -(186,135:6630773,11116897:25952256,513147,126483 -g186,135:9448823,11116897 -h186,135:9448823,11116897:983040,0,0 -h186,135:10431863,11116897:0,0,0 -g186,135:7613813,11116897 -(186,135:7613813,11116897:1835010,485622,11795 -k186,135:9448823,11116897:864422 +(186,138:30696917,16425337:501378,78643,0 +(186,138:30860771,16425337:173670,78643,0 ) -g186,135:11287107,11116897 -g186,135:12145628,11116897 -g186,135:13548098,11116897 -g186,135:16164950,11116897 -g186,135:16164950,11116897 -(186,135:16658333,11116897:501378,78643,0 -$186,135:16658333,11116897 -(186,135:16822187,11116897:173670,78643,0 ) -$186,135:17159711,11116897 +(186,138:31239539,16425337:1343490,485622,11795 +k186,138:31239539,16425337:0 +k186,138:31387652,16425337:148113 ) -(186,135:17159711,11116897:501378,78643,0 -(186,135:17323565,11116897:173670,78643,0 +g186,138:30911859,16425337 +g186,138:32583029,16425337 ) +(186,139:6630773,17290417:25952256,505283,134348 +g186,139:12529013,17290417 +h186,139:12529013,17290417:3080190,0,0 +h186,139:15609203,17290417:0,0,0 +g186,139:9710963,17290417 +(186,139:9710963,17290417:2818050,485622,11795 +k186,139:12529013,17290417:1275332 ) -(186,135:17661089,11116897:501378,78643,0 -(186,135:17824943,11116897:173670,78643,0 +g186,139:15263175,17290417 +g186,139:18972511,17290417 +g186,139:18972511,17290417 +(186,139:19165223,17290417:501378,78643,0 +$186,139:19165223,17290417 +(186,139:19329077,17290417:173670,78643,0 ) +$186,139:19666601,17290417 ) -(186,135:18162467,11116897:501378,78643,0 -(186,135:18326321,11116897:173670,78643,0 +(186,139:19666601,17290417:501378,78643,0 +(186,139:19830455,17290417:173670,78643,0 ) ) -(186,135:18663845,11116897:501378,78643,0 -(186,135:18827699,11116897:173670,78643,0 +(186,139:20167979,17290417:501378,78643,0 +(186,139:20331833,17290417:173670,78643,0 ) ) -(186,135:19165223,11116897:501378,78643,0 -(186,135:19329077,11116897:173670,78643,0 +(186,139:20669357,17290417:501378,78643,0 +(186,139:20833211,17290417:173670,78643,0 ) ) -(186,135:19666601,11116897:501378,78643,0 -(186,135:19830455,11116897:173670,78643,0 +(186,139:21170735,17290417:501378,78643,0 +(186,139:21334589,17290417:173670,78643,0 ) ) -(186,135:20167979,11116897:501378,78643,0 -(186,135:20331833,11116897:173670,78643,0 +(186,139:21672113,17290417:501378,78643,0 +(186,139:21835967,17290417:173670,78643,0 ) ) -(186,135:20669357,11116897:501378,78643,0 -(186,135:20833211,11116897:173670,78643,0 +(186,139:22173491,17290417:501378,78643,0 +(186,139:22337345,17290417:173670,78643,0 ) ) -(186,135:21170735,11116897:501378,78643,0 -(186,135:21334589,11116897:173670,78643,0 +(186,139:22674869,17290417:501378,78643,0 +(186,139:22838723,17290417:173670,78643,0 ) ) -(186,135:21672113,11116897:501378,78643,0 -(186,135:21835967,11116897:173670,78643,0 +(186,139:23176247,17290417:501378,78643,0 +(186,139:23340101,17290417:173670,78643,0 ) ) -(186,135:22173491,11116897:501378,78643,0 -(186,135:22337345,11116897:173670,78643,0 +(186,139:23677625,17290417:501378,78643,0 +(186,139:23841479,17290417:173670,78643,0 ) ) -(186,135:22674869,11116897:501378,78643,0 -(186,135:22838723,11116897:173670,78643,0 +(186,139:24179003,17290417:501378,78643,0 +(186,139:24342857,17290417:173670,78643,0 ) ) -(186,135:23176247,11116897:501378,78643,0 -(186,135:23340101,11116897:173670,78643,0 +(186,139:24680381,17290417:501378,78643,0 +(186,139:24844235,17290417:173670,78643,0 ) ) -(186,135:23677625,11116897:501378,78643,0 -(186,135:23841479,11116897:173670,78643,0 +(186,139:25181759,17290417:501378,78643,0 +(186,139:25345613,17290417:173670,78643,0 ) ) -(186,135:24179003,11116897:501378,78643,0 -(186,135:24342857,11116897:173670,78643,0 +(186,139:25683137,17290417:501378,78643,0 +(186,139:25846991,17290417:173670,78643,0 ) ) -(186,135:24680381,11116897:501378,78643,0 -(186,135:24844235,11116897:173670,78643,0 +(186,139:26184515,17290417:501378,78643,0 +(186,139:26348369,17290417:173670,78643,0 ) ) -(186,135:25181759,11116897:501378,78643,0 -(186,135:25345613,11116897:173670,78643,0 +(186,139:26685893,17290417:501378,78643,0 +(186,139:26849747,17290417:173670,78643,0 ) ) -(186,135:25683137,11116897:501378,78643,0 -(186,135:25846991,11116897:173670,78643,0 +(186,139:27187271,17290417:501378,78643,0 +(186,139:27351125,17290417:173670,78643,0 ) ) -(186,135:26184515,11116897:501378,78643,0 -(186,135:26348369,11116897:173670,78643,0 +(186,139:27688649,17290417:501378,78643,0 +(186,139:27852503,17290417:173670,78643,0 ) ) -(186,135:26685893,11116897:501378,78643,0 -(186,135:26849747,11116897:173670,78643,0 +(186,139:28190027,17290417:501378,78643,0 +(186,139:28353881,17290417:173670,78643,0 ) ) -(186,135:27187271,11116897:501378,78643,0 -(186,135:27351125,11116897:173670,78643,0 +(186,139:28691405,17290417:501378,78643,0 +(186,139:28855259,17290417:173670,78643,0 ) ) -(186,135:27688649,11116897:501378,78643,0 -(186,135:27852503,11116897:173670,78643,0 +(186,139:29192783,17290417:501378,78643,0 +(186,139:29356637,17290417:173670,78643,0 ) ) -(186,135:28190027,11116897:501378,78643,0 -(186,135:28353881,11116897:173670,78643,0 +(186,139:29694161,17290417:501378,78643,0 +(186,139:29858015,17290417:173670,78643,0 ) ) -(186,135:28691405,11116897:501378,78643,0 -(186,135:28855259,11116897:173670,78643,0 +(186,139:30195539,17290417:501378,78643,0 +(186,139:30359393,17290417:173670,78643,0 ) ) -(186,135:29192783,11116897:501378,78643,0 -(186,135:29356637,11116897:173670,78643,0 +(186,139:30696917,17290417:501378,78643,0 +(186,139:30860771,17290417:173670,78643,0 ) ) -(186,135:29694161,11116897:501378,78643,0 -(186,135:29858015,11116897:173670,78643,0 +(186,139:31239539,17290417:1343490,485622,11795 +k186,139:31239539,17290417:0 +k186,139:31387652,17290417:148113 ) +g186,139:30911859,17290417 +g186,139:32583029,17290417 ) -(186,135:30195539,11116897:501378,78643,0 -(186,135:30359393,11116897:173670,78643,0 +(186,140:6630773,18155497:25952256,505283,134348 +g186,140:12529013,18155497 +h186,140:12529013,18155497:3080190,0,0 +h186,140:15609203,18155497:0,0,0 +g186,140:9710963,18155497 +(186,140:9710963,18155497:2818050,485622,11795 +k186,140:12529013,18155497:1275332 ) +g186,140:15263175,18155497 +g186,140:17624436,18155497 +g186,140:17624436,18155497 +(186,140:17661089,18155497:501378,78643,0 +$186,140:17661089,18155497 +(186,140:17824943,18155497:173670,78643,0 ) -(186,135:30696917,11116897:501378,78643,0 -(186,135:30860771,11116897:173670,78643,0 +$186,140:18162467,18155497 ) +(186,140:18162467,18155497:501378,78643,0 +(186,140:18326321,18155497:173670,78643,0 ) -(186,135:31239539,11116897:1343490,485622,11795 -k186,135:31239539,11116897:0 -k186,135:31387652,11116897:148113 ) -g186,135:30911859,11116897 -g186,135:32583029,11116897 +(186,140:18663845,18155497:501378,78643,0 +(186,140:18827699,18155497:173670,78643,0 ) -(186,136:6630773,11958385:25952256,505283,11795 -g186,136:9448823,11958385 -h186,136:9448823,11958385:983040,0,0 -h186,136:10431863,11958385:0,0,0 -g186,136:7613813,11958385 -(186,136:7613813,11958385:1835010,485622,11795 -k186,136:9448823,11958385:864422 ) -g186,136:13652302,11958385 -g186,136:13652302,11958385 -(186,136:14151443,11958385:501378,78643,0 -$186,136:14151443,11958385 -(186,136:14315297,11958385:173670,78643,0 +(186,140:19165223,18155497:501378,78643,0 +(186,140:19329077,18155497:173670,78643,0 ) -$186,136:14652821,11958385 ) -(186,136:14652821,11958385:501378,78643,0 -(186,136:14816675,11958385:173670,78643,0 +(186,140:19666601,18155497:501378,78643,0 +(186,140:19830455,18155497:173670,78643,0 ) ) -(186,136:15154199,11958385:501378,78643,0 -(186,136:15318053,11958385:173670,78643,0 +(186,140:20167979,18155497:501378,78643,0 +(186,140:20331833,18155497:173670,78643,0 ) ) -(186,136:15655577,11958385:501378,78643,0 -(186,136:15819431,11958385:173670,78643,0 +(186,140:20669357,18155497:501378,78643,0 +(186,140:20833211,18155497:173670,78643,0 ) ) -(186,136:16156955,11958385:501378,78643,0 -(186,136:16320809,11958385:173670,78643,0 +(186,140:21170735,18155497:501378,78643,0 +(186,140:21334589,18155497:173670,78643,0 ) ) -(186,136:16658333,11958385:501378,78643,0 -(186,136:16822187,11958385:173670,78643,0 +(186,140:21672113,18155497:501378,78643,0 +(186,140:21835967,18155497:173670,78643,0 ) ) -(186,136:17159711,11958385:501378,78643,0 -(186,136:17323565,11958385:173670,78643,0 +(186,140:22173491,18155497:501378,78643,0 +(186,140:22337345,18155497:173670,78643,0 ) ) -(186,136:17661089,11958385:501378,78643,0 -(186,136:17824943,11958385:173670,78643,0 +(186,140:22674869,18155497:501378,78643,0 +(186,140:22838723,18155497:173670,78643,0 ) ) -(186,136:18162467,11958385:501378,78643,0 -(186,136:18326321,11958385:173670,78643,0 +(186,140:23176247,18155497:501378,78643,0 +(186,140:23340101,18155497:173670,78643,0 ) ) -(186,136:18663845,11958385:501378,78643,0 -(186,136:18827699,11958385:173670,78643,0 +(186,140:23677625,18155497:501378,78643,0 +(186,140:23841479,18155497:173670,78643,0 ) ) -(186,136:19165223,11958385:501378,78643,0 -(186,136:19329077,11958385:173670,78643,0 +(186,140:24179003,18155497:501378,78643,0 +(186,140:24342857,18155497:173670,78643,0 ) ) -(186,136:19666601,11958385:501378,78643,0 -(186,136:19830455,11958385:173670,78643,0 +(186,140:24680381,18155497:501378,78643,0 +(186,140:24844235,18155497:173670,78643,0 ) ) -(186,136:20167979,11958385:501378,78643,0 -(186,136:20331833,11958385:173670,78643,0 +(186,140:25181759,18155497:501378,78643,0 +(186,140:25345613,18155497:173670,78643,0 ) ) -(186,136:20669357,11958385:501378,78643,0 -(186,136:20833211,11958385:173670,78643,0 +(186,140:25683137,18155497:501378,78643,0 +(186,140:25846991,18155497:173670,78643,0 ) ) -(186,136:21170735,11958385:501378,78643,0 -(186,136:21334589,11958385:173670,78643,0 +(186,140:26184515,18155497:501378,78643,0 +(186,140:26348369,18155497:173670,78643,0 ) ) -(186,136:21672113,11958385:501378,78643,0 -(186,136:21835967,11958385:173670,78643,0 +(186,140:26685893,18155497:501378,78643,0 +(186,140:26849747,18155497:173670,78643,0 ) ) -(186,136:22173491,11958385:501378,78643,0 -(186,136:22337345,11958385:173670,78643,0 +(186,140:27187271,18155497:501378,78643,0 +(186,140:27351125,18155497:173670,78643,0 ) ) -(186,136:22674869,11958385:501378,78643,0 -(186,136:22838723,11958385:173670,78643,0 +(186,140:27688649,18155497:501378,78643,0 +(186,140:27852503,18155497:173670,78643,0 ) ) -(186,136:23176247,11958385:501378,78643,0 -(186,136:23340101,11958385:173670,78643,0 +(186,140:28190027,18155497:501378,78643,0 +(186,140:28353881,18155497:173670,78643,0 ) ) -(186,136:23677625,11958385:501378,78643,0 -(186,136:23841479,11958385:173670,78643,0 +(186,140:28691405,18155497:501378,78643,0 +(186,140:28855259,18155497:173670,78643,0 ) ) -(186,136:24179003,11958385:501378,78643,0 -(186,136:24342857,11958385:173670,78643,0 +(186,140:29192783,18155497:501378,78643,0 +(186,140:29356637,18155497:173670,78643,0 ) ) -(186,136:24680381,11958385:501378,78643,0 -(186,136:24844235,11958385:173670,78643,0 +(186,140:29694161,18155497:501378,78643,0 +(186,140:29858015,18155497:173670,78643,0 ) ) -(186,136:25181759,11958385:501378,78643,0 -(186,136:25345613,11958385:173670,78643,0 +(186,140:30195539,18155497:501378,78643,0 +(186,140:30359393,18155497:173670,78643,0 ) ) -(186,136:25683137,11958385:501378,78643,0 -(186,136:25846991,11958385:173670,78643,0 +(186,140:30696917,18155497:501378,78643,0 +(186,140:30860771,18155497:173670,78643,0 ) ) -(186,136:26184515,11958385:501378,78643,0 -(186,136:26348369,11958385:173670,78643,0 +(186,140:31239539,18155497:1343490,485622,11795 +k186,140:31239539,18155497:0 +k186,140:31387652,18155497:148113 ) +g186,140:30911859,18155497 +g186,140:32583029,18155497 ) -(186,136:26685893,11958385:501378,78643,0 -(186,136:26849747,11958385:173670,78643,0 +(186,141:6630773,19020577:25952256,485622,126483 +g186,141:9710963,19020577 +h186,141:9710963,19020577:983040,0,0 +h186,141:10694003,19020577:0,0,0 +g186,141:7613813,19020577 +(186,141:7613813,19020577:2097150,485622,11795 +k186,141:9710963,19020577:1126562 ) +g186,141:11382131,19020577 +g186,141:13301680,19020577 +g186,141:13301680,19020577 +(186,141:13650065,19020577:501378,78643,0 +$186,141:13650065,19020577 +(186,141:13813919,19020577:173670,78643,0 ) -(186,136:27187271,11958385:501378,78643,0 -(186,136:27351125,11958385:173670,78643,0 +$186,141:14151443,19020577 ) +(186,141:14151443,19020577:501378,78643,0 +(186,141:14315297,19020577:173670,78643,0 ) -(186,136:27688649,11958385:501378,78643,0 -(186,136:27852503,11958385:173670,78643,0 ) +(186,141:14652821,19020577:501378,78643,0 +(186,141:14816675,19020577:173670,78643,0 ) -(186,136:28190027,11958385:501378,78643,0 -(186,136:28353881,11958385:173670,78643,0 ) +(186,141:15154199,19020577:501378,78643,0 +(186,141:15318053,19020577:173670,78643,0 ) -(186,136:28691405,11958385:501378,78643,0 -(186,136:28855259,11958385:173670,78643,0 ) +(186,141:15655577,19020577:501378,78643,0 +(186,141:15819431,19020577:173670,78643,0 ) -(186,136:29192783,11958385:501378,78643,0 -(186,136:29356637,11958385:173670,78643,0 ) +(186,141:16156955,19020577:501378,78643,0 +(186,141:16320809,19020577:173670,78643,0 ) -(186,136:29694161,11958385:501378,78643,0 -(186,136:29858015,11958385:173670,78643,0 ) +(186,141:16658333,19020577:501378,78643,0 +(186,141:16822187,19020577:173670,78643,0 ) -(186,136:30195539,11958385:501378,78643,0 -(186,136:30359393,11958385:173670,78643,0 ) +(186,141:17159711,19020577:501378,78643,0 +(186,141:17323565,19020577:173670,78643,0 ) -(186,136:30696917,11958385:501378,78643,0 -(186,136:30860771,11958385:173670,78643,0 ) +(186,141:17661089,19020577:501378,78643,0 +(186,141:17824943,19020577:173670,78643,0 ) -(186,136:31239538,11958385:1343490,485622,11795 -k186,136:31239538,11958385:0 -k186,136:31387651,11958385:148113 ) -g186,136:30911858,11958385 -g186,136:32583028,11958385 +(186,141:18162467,19020577:501378,78643,0 +(186,141:18326321,19020577:173670,78643,0 ) -(186,137:6630773,12799873:25952256,505283,134348 -g186,137:9448823,12799873 -h186,137:9448823,12799873:983040,0,0 -h186,137:10431863,12799873:0,0,0 -g186,137:7613813,12799873 -(186,137:7613813,12799873:1835010,485622,11795 -k186,137:9448823,12799873:864422 ) -g186,137:12513286,12799873 -g186,137:14225741,12799873 -g186,137:15041008,12799873 -g186,137:16443478,12799873 -g186,137:19060330,12799873 -g186,137:19060330,12799873 -(186,137:19165223,12799873:501378,78643,0 -$186,137:19165223,12799873 -(186,137:19329077,12799873:173670,78643,0 +(186,141:18663845,19020577:501378,78643,0 +(186,141:18827699,19020577:173670,78643,0 ) -$186,137:19666601,12799873 ) -(186,137:19666601,12799873:501378,78643,0 -(186,137:19830455,12799873:173670,78643,0 +(186,141:19165223,19020577:501378,78643,0 +(186,141:19329077,19020577:173670,78643,0 ) ) -(186,137:20167979,12799873:501378,78643,0 -(186,137:20331833,12799873:173670,78643,0 +(186,141:19666601,19020577:501378,78643,0 +(186,141:19830455,19020577:173670,78643,0 ) ) -(186,137:20669357,12799873:501378,78643,0 -(186,137:20833211,12799873:173670,78643,0 +(186,141:20167979,19020577:501378,78643,0 +(186,141:20331833,19020577:173670,78643,0 ) ) -(186,137:21170735,12799873:501378,78643,0 -(186,137:21334589,12799873:173670,78643,0 +(186,141:20669357,19020577:501378,78643,0 +(186,141:20833211,19020577:173670,78643,0 ) ) -(186,137:21672113,12799873:501378,78643,0 -(186,137:21835967,12799873:173670,78643,0 +(186,141:21170735,19020577:501378,78643,0 +(186,141:21334589,19020577:173670,78643,0 ) ) -(186,137:22173491,12799873:501378,78643,0 -(186,137:22337345,12799873:173670,78643,0 +(186,141:21672113,19020577:501378,78643,0 +(186,141:21835967,19020577:173670,78643,0 ) ) -(186,137:22674869,12799873:501378,78643,0 -(186,137:22838723,12799873:173670,78643,0 +(186,141:22173491,19020577:501378,78643,0 +(186,141:22337345,19020577:173670,78643,0 ) ) -(186,137:23176247,12799873:501378,78643,0 -(186,137:23340101,12799873:173670,78643,0 +(186,141:22674869,19020577:501378,78643,0 +(186,141:22838723,19020577:173670,78643,0 ) ) -(186,137:23677625,12799873:501378,78643,0 -(186,137:23841479,12799873:173670,78643,0 +(186,141:23176247,19020577:501378,78643,0 +(186,141:23340101,19020577:173670,78643,0 ) ) -(186,137:24179003,12799873:501378,78643,0 -(186,137:24342857,12799873:173670,78643,0 +(186,141:23677625,19020577:501378,78643,0 +(186,141:23841479,19020577:173670,78643,0 ) ) -(186,137:24680381,12799873:501378,78643,0 -(186,137:24844235,12799873:173670,78643,0 +(186,141:24179003,19020577:501378,78643,0 +(186,141:24342857,19020577:173670,78643,0 ) ) -(186,137:25181759,12799873:501378,78643,0 -(186,137:25345613,12799873:173670,78643,0 +(186,141:24680381,19020577:501378,78643,0 +(186,141:24844235,19020577:173670,78643,0 ) ) -(186,137:25683137,12799873:501378,78643,0 -(186,137:25846991,12799873:173670,78643,0 +(186,141:25181759,19020577:501378,78643,0 +(186,141:25345613,19020577:173670,78643,0 ) ) -(186,137:26184515,12799873:501378,78643,0 -(186,137:26348369,12799873:173670,78643,0 +(186,141:25683137,19020577:501378,78643,0 +(186,141:25846991,19020577:173670,78643,0 ) ) -(186,137:26685893,12799873:501378,78643,0 -(186,137:26849747,12799873:173670,78643,0 +(186,141:26184515,19020577:501378,78643,0 +(186,141:26348369,19020577:173670,78643,0 ) ) -(186,137:27187271,12799873:501378,78643,0 -(186,137:27351125,12799873:173670,78643,0 +(186,141:26685893,19020577:501378,78643,0 +(186,141:26849747,19020577:173670,78643,0 ) ) -(186,137:27688649,12799873:501378,78643,0 -(186,137:27852503,12799873:173670,78643,0 +(186,141:27187271,19020577:501378,78643,0 +(186,141:27351125,19020577:173670,78643,0 ) ) -(186,137:28190027,12799873:501378,78643,0 -(186,137:28353881,12799873:173670,78643,0 +(186,141:27688649,19020577:501378,78643,0 +(186,141:27852503,19020577:173670,78643,0 ) ) -(186,137:28691405,12799873:501378,78643,0 -(186,137:28855259,12799873:173670,78643,0 +(186,141:28190027,19020577:501378,78643,0 +(186,141:28353881,19020577:173670,78643,0 ) ) -(186,137:29192783,12799873:501378,78643,0 -(186,137:29356637,12799873:173670,78643,0 +(186,141:28691405,19020577:501378,78643,0 +(186,141:28855259,19020577:173670,78643,0 ) ) -(186,137:29694161,12799873:501378,78643,0 -(186,137:29858015,12799873:173670,78643,0 +(186,141:29192783,19020577:501378,78643,0 +(186,141:29356637,19020577:173670,78643,0 ) ) -(186,137:30195539,12799873:501378,78643,0 -(186,137:30359393,12799873:173670,78643,0 +(186,141:29694161,19020577:501378,78643,0 +(186,141:29858015,19020577:173670,78643,0 ) ) -(186,137:30696917,12799873:501378,78643,0 -(186,137:30860771,12799873:173670,78643,0 +(186,141:30195539,19020577:501378,78643,0 +(186,141:30359393,19020577:173670,78643,0 ) ) -(186,137:31239539,12799873:1343490,485622,11795 -k186,137:31239539,12799873:0 -k186,137:31387652,12799873:148113 +(186,141:30696917,19020577:501378,78643,0 +(186,141:30860771,19020577:173670,78643,0 ) -g186,137:30911859,12799873 -g186,137:32583029,12799873 ) -(186,138:6630773,13641361:25952256,513147,126483 -g186,138:9448823,13641361 -h186,138:9448823,13641361:983040,0,0 -h186,138:10431863,13641361:0,0,0 -g186,138:7613813,13641361 -(186,138:7613813,13641361:1835010,485622,11795 -k186,138:9448823,13641361:864422 +(186,141:31239540,19020577:1343490,485622,0 +k186,141:31239540,19020577:0 +k186,141:31387653,19020577:148113 ) -g186,138:14072388,13641361 -g186,138:15219268,13641361 -g186,138:19370318,13641361 -g186,138:19370318,13641361 -(186,138:19666601,13641361:501378,78643,0 -$186,138:19666601,13641361 -(186,138:19830455,13641361:173670,78643,0 +g186,141:30911860,19020577 +g186,141:32583030,19020577 ) -$186,138:20167979,13641361 +(186,142:6630773,19885657:25952256,505283,134348 +g186,142:12529013,19885657 +h186,142:12529013,19885657:3080190,0,0 +h186,142:15609203,19885657:0,0,0 +g186,142:9710963,19885657 +(186,142:9710963,19885657:2818050,485622,11795 +k186,142:12529013,19885657:1275332 ) -(186,138:20167979,13641361:501378,78643,0 -(186,138:20331833,13641361:173670,78643,0 +g186,142:15673429,19885657 +g186,142:15673429,19885657 +(186,142:16156955,19885657:501378,78643,0 +$186,142:16156955,19885657 +(186,142:16320809,19885657:173670,78643,0 ) +$186,142:16658333,19885657 ) -(186,138:20669357,13641361:501378,78643,0 -(186,138:20833211,13641361:173670,78643,0 +(186,142:16658333,19885657:501378,78643,0 +(186,142:16822187,19885657:173670,78643,0 ) ) -(186,138:21170735,13641361:501378,78643,0 -(186,138:21334589,13641361:173670,78643,0 +(186,142:17159711,19885657:501378,78643,0 +(186,142:17323565,19885657:173670,78643,0 ) ) -(186,138:21672113,13641361:501378,78643,0 -(186,138:21835967,13641361:173670,78643,0 +(186,142:17661089,19885657:501378,78643,0 +(186,142:17824943,19885657:173670,78643,0 ) ) -(186,138:22173491,13641361:501378,78643,0 -(186,138:22337345,13641361:173670,78643,0 +(186,142:18162467,19885657:501378,78643,0 +(186,142:18326321,19885657:173670,78643,0 ) ) -(186,138:22674869,13641361:501378,78643,0 -(186,138:22838723,13641361:173670,78643,0 +(186,142:18663845,19885657:501378,78643,0 +(186,142:18827699,19885657:173670,78643,0 ) ) -(186,138:23176247,13641361:501378,78643,0 -(186,138:23340101,13641361:173670,78643,0 +(186,142:19165223,19885657:501378,78643,0 +(186,142:19329077,19885657:173670,78643,0 ) ) -(186,138:23677625,13641361:501378,78643,0 -(186,138:23841479,13641361:173670,78643,0 +(186,142:19666601,19885657:501378,78643,0 +(186,142:19830455,19885657:173670,78643,0 ) ) -(186,138:24179003,13641361:501378,78643,0 -(186,138:24342857,13641361:173670,78643,0 +(186,142:20167979,19885657:501378,78643,0 +(186,142:20331833,19885657:173670,78643,0 ) ) -(186,138:24680381,13641361:501378,78643,0 -(186,138:24844235,13641361:173670,78643,0 +(186,142:20669357,19885657:501378,78643,0 +(186,142:20833211,19885657:173670,78643,0 ) ) -(186,138:25181759,13641361:501378,78643,0 -(186,138:25345613,13641361:173670,78643,0 +(186,142:21170735,19885657:501378,78643,0 +(186,142:21334589,19885657:173670,78643,0 ) ) -(186,138:25683137,13641361:501378,78643,0 -(186,138:25846991,13641361:173670,78643,0 +(186,142:21672113,19885657:501378,78643,0 +(186,142:21835967,19885657:173670,78643,0 ) ) -(186,138:26184515,13641361:501378,78643,0 -(186,138:26348369,13641361:173670,78643,0 +(186,142:22173491,19885657:501378,78643,0 +(186,142:22337345,19885657:173670,78643,0 ) ) -(186,138:26685893,13641361:501378,78643,0 -(186,138:26849747,13641361:173670,78643,0 +(186,142:22674869,19885657:501378,78643,0 +(186,142:22838723,19885657:173670,78643,0 ) ) -(186,138:27187271,13641361:501378,78643,0 -(186,138:27351125,13641361:173670,78643,0 +(186,142:23176247,19885657:501378,78643,0 +(186,142:23340101,19885657:173670,78643,0 ) ) -(186,138:27688649,13641361:501378,78643,0 -(186,138:27852503,13641361:173670,78643,0 +(186,142:23677625,19885657:501378,78643,0 +(186,142:23841479,19885657:173670,78643,0 ) ) -(186,138:28190027,13641361:501378,78643,0 -(186,138:28353881,13641361:173670,78643,0 +(186,142:24179003,19885657:501378,78643,0 +(186,142:24342857,19885657:173670,78643,0 ) ) -(186,138:28691405,13641361:501378,78643,0 -(186,138:28855259,13641361:173670,78643,0 +(186,142:24680381,19885657:501378,78643,0 +(186,142:24844235,19885657:173670,78643,0 ) ) -(186,138:29192783,13641361:501378,78643,0 -(186,138:29356637,13641361:173670,78643,0 +(186,142:25181759,19885657:501378,78643,0 +(186,142:25345613,19885657:173670,78643,0 ) ) -(186,138:29694161,13641361:501378,78643,0 -(186,138:29858015,13641361:173670,78643,0 +(186,142:25683137,19885657:501378,78643,0 +(186,142:25846991,19885657:173670,78643,0 ) ) -(186,138:30195539,13641361:501378,78643,0 -(186,138:30359393,13641361:173670,78643,0 +(186,142:26184515,19885657:501378,78643,0 +(186,142:26348369,19885657:173670,78643,0 ) ) -(186,138:30696917,13641361:501378,78643,0 -(186,138:30860771,13641361:173670,78643,0 +(186,142:26685893,19885657:501378,78643,0 +(186,142:26849747,19885657:173670,78643,0 ) ) -(186,138:31239539,13641361:1343490,485622,11795 -k186,138:31239539,13641361:0 -k186,138:31387652,13641361:148113 +(186,142:27187271,19885657:501378,78643,0 +(186,142:27351125,19885657:173670,78643,0 ) -g186,138:30911859,13641361 -g186,138:32583029,13641361 ) -(186,139:6630773,14482849:25952256,505283,134348 -g186,139:11873653,14482849 -h186,139:11873653,14482849:2818050,0,0 -h186,139:14691703,14482849:0,0,0 -g186,139:9448823,14482849 -(186,139:9448823,14482849:2424830,485622,11795 -k186,139:11873653,14482849:882112 +(186,142:27688649,19885657:501378,78643,0 +(186,142:27852503,19885657:173670,78643,0 ) -g186,139:14607815,14482849 -g186,139:18317151,14482849 -g186,139:18317151,14482849 -(186,139:18663845,14482849:501378,78643,0 -$186,139:18663845,14482849 -(186,139:18827699,14482849:173670,78643,0 ) -$186,139:19165223,14482849 +(186,142:28190027,19885657:501378,78643,0 +(186,142:28353881,19885657:173670,78643,0 ) -(186,139:19165223,14482849:501378,78643,0 -(186,139:19329077,14482849:173670,78643,0 ) +(186,142:28691405,19885657:501378,78643,0 +(186,142:28855259,19885657:173670,78643,0 ) -(186,139:19666601,14482849:501378,78643,0 -(186,139:19830455,14482849:173670,78643,0 ) +(186,142:29192783,19885657:501378,78643,0 +(186,142:29356637,19885657:173670,78643,0 ) -(186,139:20167979,14482849:501378,78643,0 -(186,139:20331833,14482849:173670,78643,0 ) +(186,142:29694161,19885657:501378,78643,0 +(186,142:29858015,19885657:173670,78643,0 ) -(186,139:20669357,14482849:501378,78643,0 -(186,139:20833211,14482849:173670,78643,0 ) +(186,142:30195539,19885657:501378,78643,0 +(186,142:30359393,19885657:173670,78643,0 ) -(186,139:21170735,14482849:501378,78643,0 -(186,139:21334589,14482849:173670,78643,0 ) +(186,142:30696917,19885657:501378,78643,0 +(186,142:30860771,19885657:173670,78643,0 ) -(186,139:21672113,14482849:501378,78643,0 -(186,139:21835967,14482849:173670,78643,0 ) +(186,142:31239539,19885657:1343490,485622,0 +k186,142:31239539,19885657:0 +k186,142:31387652,19885657:148113 ) -(186,139:22173491,14482849:501378,78643,0 -(186,139:22337345,14482849:173670,78643,0 +g186,142:30911859,19885657 +g186,142:32583029,19885657 ) +(186,143:6630773,20750737:25952256,505283,126483 +g186,143:12529013,20750737 +h186,143:12529013,20750737:3080190,0,0 +h186,143:15609203,20750737:0,0,0 +g186,143:9710963,20750737 +(186,143:9710963,20750737:2818050,485622,11795 +k186,143:12529013,20750737:1275332 ) -(186,139:22674869,14482849:501378,78643,0 -(186,139:22838723,14482849:173670,78643,0 +g186,143:14890929,20750737 +g186,143:14890929,20750737 +(186,143:15154199,20750737:501378,78643,0 +$186,143:15154199,20750737 +(186,143:15318053,20750737:173670,78643,0 ) +$186,143:15655577,20750737 ) -(186,139:23176247,14482849:501378,78643,0 -(186,139:23340101,14482849:173670,78643,0 +(186,143:15655577,20750737:501378,78643,0 +(186,143:15819431,20750737:173670,78643,0 ) ) -(186,139:23677625,14482849:501378,78643,0 -(186,139:23841479,14482849:173670,78643,0 +(186,143:16156955,20750737:501378,78643,0 +(186,143:16320809,20750737:173670,78643,0 ) ) -(186,139:24179003,14482849:501378,78643,0 -(186,139:24342857,14482849:173670,78643,0 +(186,143:16658333,20750737:501378,78643,0 +(186,143:16822187,20750737:173670,78643,0 ) ) -(186,139:24680381,14482849:501378,78643,0 -(186,139:24844235,14482849:173670,78643,0 +(186,143:17159711,20750737:501378,78643,0 +(186,143:17323565,20750737:173670,78643,0 ) ) -(186,139:25181759,14482849:501378,78643,0 -(186,139:25345613,14482849:173670,78643,0 +(186,143:17661089,20750737:501378,78643,0 +(186,143:17824943,20750737:173670,78643,0 ) ) -(186,139:25683137,14482849:501378,78643,0 -(186,139:25846991,14482849:173670,78643,0 +(186,143:18162467,20750737:501378,78643,0 +(186,143:18326321,20750737:173670,78643,0 ) ) -(186,139:26184515,14482849:501378,78643,0 -(186,139:26348369,14482849:173670,78643,0 +(186,143:18663845,20750737:501378,78643,0 +(186,143:18827699,20750737:173670,78643,0 ) ) -(186,139:26685893,14482849:501378,78643,0 -(186,139:26849747,14482849:173670,78643,0 +(186,143:19165223,20750737:501378,78643,0 +(186,143:19329077,20750737:173670,78643,0 ) ) -(186,139:27187271,14482849:501378,78643,0 -(186,139:27351125,14482849:173670,78643,0 +(186,143:19666601,20750737:501378,78643,0 +(186,143:19830455,20750737:173670,78643,0 ) ) -(186,139:27688649,14482849:501378,78643,0 -(186,139:27852503,14482849:173670,78643,0 +(186,143:20167979,20750737:501378,78643,0 +(186,143:20331833,20750737:173670,78643,0 ) ) -(186,139:28190027,14482849:501378,78643,0 -(186,139:28353881,14482849:173670,78643,0 +(186,143:20669357,20750737:501378,78643,0 +(186,143:20833211,20750737:173670,78643,0 ) ) -(186,139:28691405,14482849:501378,78643,0 -(186,139:28855259,14482849:173670,78643,0 +(186,143:21170735,20750737:501378,78643,0 +(186,143:21334589,20750737:173670,78643,0 ) ) -(186,139:29192783,14482849:501378,78643,0 -(186,139:29356637,14482849:173670,78643,0 +(186,143:21672113,20750737:501378,78643,0 +(186,143:21835967,20750737:173670,78643,0 ) ) -(186,139:29694161,14482849:501378,78643,0 -(186,139:29858015,14482849:173670,78643,0 +(186,143:22173491,20750737:501378,78643,0 +(186,143:22337345,20750737:173670,78643,0 ) ) -(186,139:30195539,14482849:501378,78643,0 -(186,139:30359393,14482849:173670,78643,0 +(186,143:22674869,20750737:501378,78643,0 +(186,143:22838723,20750737:173670,78643,0 ) ) -(186,139:30696917,14482849:501378,78643,0 -(186,139:30860771,14482849:173670,78643,0 +(186,143:23176247,20750737:501378,78643,0 +(186,143:23340101,20750737:173670,78643,0 ) ) -(186,139:31239539,14482849:1343490,485622,11795 -k186,139:31239539,14482849:0 -k186,139:31387652,14482849:148113 +(186,143:23677625,20750737:501378,78643,0 +(186,143:23841479,20750737:173670,78643,0 ) -g186,139:30911859,14482849 -g186,139:32583029,14482849 ) -(186,140:6630773,15324337:25952256,505283,134348 -g186,140:11873653,15324337 -h186,140:11873653,15324337:2818050,0,0 -h186,140:14691703,15324337:0,0,0 -g186,140:9448823,15324337 -(186,140:9448823,15324337:2424830,485622,11795 -k186,140:11873653,15324337:882112 +(186,143:24179003,20750737:501378,78643,0 +(186,143:24342857,20750737:173670,78643,0 ) -g186,140:14607815,15324337 -g186,140:16969076,15324337 -g186,140:16969076,15324337 -(186,140:17159711,15324337:501378,78643,0 -$186,140:17159711,15324337 -(186,140:17323565,15324337:173670,78643,0 ) -$186,140:17661089,15324337 +(186,143:24680381,20750737:501378,78643,0 +(186,143:24844235,20750737:173670,78643,0 ) -(186,140:17661089,15324337:501378,78643,0 -(186,140:17824943,15324337:173670,78643,0 ) +(186,143:25181759,20750737:501378,78643,0 +(186,143:25345613,20750737:173670,78643,0 ) -(186,140:18162467,15324337:501378,78643,0 -(186,140:18326321,15324337:173670,78643,0 ) +(186,143:25683137,20750737:501378,78643,0 +(186,143:25846991,20750737:173670,78643,0 ) -(186,140:18663845,15324337:501378,78643,0 -(186,140:18827699,15324337:173670,78643,0 ) +(186,143:26184515,20750737:501378,78643,0 +(186,143:26348369,20750737:173670,78643,0 ) -(186,140:19165223,15324337:501378,78643,0 -(186,140:19329077,15324337:173670,78643,0 ) +(186,143:26685893,20750737:501378,78643,0 +(186,143:26849747,20750737:173670,78643,0 ) -(186,140:19666601,15324337:501378,78643,0 -(186,140:19830455,15324337:173670,78643,0 ) +(186,143:27187271,20750737:501378,78643,0 +(186,143:27351125,20750737:173670,78643,0 ) -(186,140:20167979,15324337:501378,78643,0 -(186,140:20331833,15324337:173670,78643,0 ) +(186,143:27688649,20750737:501378,78643,0 +(186,143:27852503,20750737:173670,78643,0 ) -(186,140:20669357,15324337:501378,78643,0 -(186,140:20833211,15324337:173670,78643,0 ) +(186,143:28190027,20750737:501378,78643,0 +(186,143:28353881,20750737:173670,78643,0 ) -(186,140:21170735,15324337:501378,78643,0 -(186,140:21334589,15324337:173670,78643,0 ) +(186,143:28691405,20750737:501378,78643,0 +(186,143:28855259,20750737:173670,78643,0 ) -(186,140:21672113,15324337:501378,78643,0 -(186,140:21835967,15324337:173670,78643,0 ) +(186,143:29192783,20750737:501378,78643,0 +(186,143:29356637,20750737:173670,78643,0 ) -(186,140:22173491,15324337:501378,78643,0 -(186,140:22337345,15324337:173670,78643,0 ) +(186,143:29694161,20750737:501378,78643,0 +(186,143:29858015,20750737:173670,78643,0 ) -(186,140:22674869,15324337:501378,78643,0 -(186,140:22838723,15324337:173670,78643,0 ) +(186,143:30195539,20750737:501378,78643,0 +(186,143:30359393,20750737:173670,78643,0 ) -(186,140:23176247,15324337:501378,78643,0 -(186,140:23340101,15324337:173670,78643,0 ) +(186,143:30696917,20750737:501378,78643,0 +(186,143:30860771,20750737:173670,78643,0 ) -(186,140:23677625,15324337:501378,78643,0 -(186,140:23841479,15324337:173670,78643,0 ) +(186,143:31239539,20750737:1343490,485622,11795 +k186,143:31239539,20750737:0 +k186,143:31387652,20750737:148113 ) -(186,140:24179003,15324337:501378,78643,0 -(186,140:24342857,15324337:173670,78643,0 +g186,143:30911859,20750737 +g186,143:32583029,20750737 ) +(186,144:6630773,21615817:25952256,485622,134348 +g186,144:12529013,21615817 +h186,144:12529013,21615817:3080190,0,0 +h186,144:15609203,21615817:0,0,0 +g186,144:9710963,21615817 +(186,144:9710963,21615817:2818050,485622,11795 +k186,144:12529013,21615817:1275332 ) -(186,140:24680381,15324337:501378,78643,0 -(186,140:24844235,15324337:173670,78643,0 +g186,144:16253424,21615817 +g186,144:17973744,21615817 +(186,144:18162467,21615817:501378,78643,0 +$186,144:18162467,21615817 +(186,144:18326321,21615817:173670,78643,0 ) +$186,144:18663845,21615817 ) -(186,140:25181759,15324337:501378,78643,0 -(186,140:25345613,15324337:173670,78643,0 +(186,144:18663845,21615817:501378,78643,0 +(186,144:18827699,21615817:173670,78643,0 ) ) -(186,140:25683137,15324337:501378,78643,0 -(186,140:25846991,15324337:173670,78643,0 +(186,144:19165223,21615817:501378,78643,0 +(186,144:19329077,21615817:173670,78643,0 ) ) -(186,140:26184515,15324337:501378,78643,0 -(186,140:26348369,15324337:173670,78643,0 +(186,144:19666601,21615817:501378,78643,0 +(186,144:19830455,21615817:173670,78643,0 ) ) -(186,140:26685893,15324337:501378,78643,0 -(186,140:26849747,15324337:173670,78643,0 +(186,144:20167979,21615817:501378,78643,0 +(186,144:20331833,21615817:173670,78643,0 ) ) -(186,140:27187271,15324337:501378,78643,0 -(186,140:27351125,15324337:173670,78643,0 +(186,144:20669357,21615817:501378,78643,0 +(186,144:20833211,21615817:173670,78643,0 ) ) -(186,140:27688649,15324337:501378,78643,0 -(186,140:27852503,15324337:173670,78643,0 +(186,144:21170735,21615817:501378,78643,0 +(186,144:21334589,21615817:173670,78643,0 ) ) -(186,140:28190027,15324337:501378,78643,0 -(186,140:28353881,15324337:173670,78643,0 +(186,144:21672113,21615817:501378,78643,0 +(186,144:21835967,21615817:173670,78643,0 ) ) -(186,140:28691405,15324337:501378,78643,0 -(186,140:28855259,15324337:173670,78643,0 +(186,144:22173491,21615817:501378,78643,0 +(186,144:22337345,21615817:173670,78643,0 ) ) -(186,140:29192783,15324337:501378,78643,0 -(186,140:29356637,15324337:173670,78643,0 +(186,144:22674869,21615817:501378,78643,0 +(186,144:22838723,21615817:173670,78643,0 ) ) -(186,140:29694161,15324337:501378,78643,0 -(186,140:29858015,15324337:173670,78643,0 +(186,144:23176247,21615817:501378,78643,0 +(186,144:23340101,21615817:173670,78643,0 ) ) -(186,140:30195539,15324337:501378,78643,0 -(186,140:30359393,15324337:173670,78643,0 +(186,144:23677625,21615817:501378,78643,0 +(186,144:23841479,21615817:173670,78643,0 ) ) -(186,140:30696917,15324337:501378,78643,0 -(186,140:30860771,15324337:173670,78643,0 +(186,144:24179003,21615817:501378,78643,0 +(186,144:24342857,21615817:173670,78643,0 ) ) -(186,140:31239539,15324337:1343490,485622,11795 -k186,140:31239539,15324337:0 -k186,140:31387652,15324337:148113 +(186,144:24680381,21615817:501378,78643,0 +(186,144:24844235,21615817:173670,78643,0 ) -g186,140:30911859,15324337 -g186,140:32583029,15324337 ) -(186,141:6630773,16165825:25952256,485622,126483 -g186,141:9448823,16165825 -h186,141:9448823,16165825:983040,0,0 -h186,141:10431863,16165825:0,0,0 -g186,141:7613813,16165825 -(186,141:7613813,16165825:1835010,485622,11795 -k186,141:9448823,16165825:864422 +(186,144:25181759,21615817:501378,78643,0 +(186,144:25345613,21615817:173670,78643,0 ) -g186,141:11119991,16165825 -g186,141:13039540,16165825 -g186,141:13039540,16165825 -(186,141:13148687,16165825:501378,78643,0 -$186,141:13148687,16165825 -(186,141:13312541,16165825:173670,78643,0 ) -$186,141:13650065,16165825 +(186,144:25683137,21615817:501378,78643,0 +(186,144:25846991,21615817:173670,78643,0 ) -(186,141:13650065,16165825:501378,78643,0 -(186,141:13813919,16165825:173670,78643,0 ) +(186,144:26184515,21615817:501378,78643,0 +(186,144:26348369,21615817:173670,78643,0 ) -(186,141:14151443,16165825:501378,78643,0 -(186,141:14315297,16165825:173670,78643,0 ) +(186,144:26685893,21615817:501378,78643,0 +(186,144:26849747,21615817:173670,78643,0 ) -(186,141:14652821,16165825:501378,78643,0 -(186,141:14816675,16165825:173670,78643,0 ) +(186,144:27187271,21615817:501378,78643,0 +(186,144:27351125,21615817:173670,78643,0 ) -(186,141:15154199,16165825:501378,78643,0 -(186,141:15318053,16165825:173670,78643,0 ) +(186,144:27688649,21615817:501378,78643,0 +(186,144:27852503,21615817:173670,78643,0 ) -(186,141:15655577,16165825:501378,78643,0 -(186,141:15819431,16165825:173670,78643,0 ) +(186,144:28190027,21615817:501378,78643,0 +(186,144:28353881,21615817:173670,78643,0 ) -(186,141:16156955,16165825:501378,78643,0 -(186,141:16320809,16165825:173670,78643,0 ) +(186,144:28691405,21615817:501378,78643,0 +(186,144:28855259,21615817:173670,78643,0 ) -(186,141:16658333,16165825:501378,78643,0 -(186,141:16822187,16165825:173670,78643,0 ) +(186,144:29192783,21615817:501378,78643,0 +(186,144:29356637,21615817:173670,78643,0 ) -(186,141:17159711,16165825:501378,78643,0 -(186,141:17323565,16165825:173670,78643,0 ) +(186,144:29694161,21615817:501378,78643,0 +(186,144:29858015,21615817:173670,78643,0 ) -(186,141:17661089,16165825:501378,78643,0 -(186,141:17824943,16165825:173670,78643,0 ) +(186,144:30195539,21615817:501378,78643,0 +(186,144:30359393,21615817:173670,78643,0 ) -(186,141:18162467,16165825:501378,78643,0 -(186,141:18326321,16165825:173670,78643,0 ) +(186,144:30696917,21615817:501378,78643,0 +(186,144:30860771,21615817:173670,78643,0 ) -(186,141:18663845,16165825:501378,78643,0 -(186,141:18827699,16165825:173670,78643,0 ) +(186,144:31239539,21615817:1343490,485622,0 +k186,144:31239539,21615817:0 +k186,144:31387652,21615817:148113 ) -(186,141:19165223,16165825:501378,78643,0 -(186,141:19329077,16165825:173670,78643,0 +g186,144:30911859,21615817 +g186,144:32583029,21615817 ) +(186,145:6630773,22480897:25952256,505283,134348 +g186,145:9710963,22480897 +h186,145:9710963,22480897:983040,0,0 +h186,145:10694003,22480897:0,0,0 +g186,145:7613813,22480897 +(186,145:7613813,22480897:2097150,485622,11795 +k186,145:9710963,22480897:1126562 ) -(186,141:19666601,16165825:501378,78643,0 -(186,141:19830455,16165825:173670,78643,0 +g186,145:13214517,22480897 +g186,145:14807697,22480897 +g186,145:16811787,22480897 +g186,145:16811787,22480897 +(186,145:17159711,22480897:501378,78643,0 +$186,145:17159711,22480897 +(186,145:17323565,22480897:173670,78643,0 ) +$186,145:17661089,22480897 ) -(186,141:20167979,16165825:501378,78643,0 -(186,141:20331833,16165825:173670,78643,0 +(186,145:17661089,22480897:501378,78643,0 +(186,145:17824943,22480897:173670,78643,0 ) ) -(186,141:20669357,16165825:501378,78643,0 -(186,141:20833211,16165825:173670,78643,0 +(186,145:18162467,22480897:501378,78643,0 +(186,145:18326321,22480897:173670,78643,0 ) ) -(186,141:21170735,16165825:501378,78643,0 -(186,141:21334589,16165825:173670,78643,0 +(186,145:18663845,22480897:501378,78643,0 +(186,145:18827699,22480897:173670,78643,0 ) ) -(186,141:21672113,16165825:501378,78643,0 -(186,141:21835967,16165825:173670,78643,0 +(186,145:19165223,22480897:501378,78643,0 +(186,145:19329077,22480897:173670,78643,0 ) ) -(186,141:22173491,16165825:501378,78643,0 -(186,141:22337345,16165825:173670,78643,0 +(186,145:19666601,22480897:501378,78643,0 +(186,145:19830455,22480897:173670,78643,0 ) ) -(186,141:22674869,16165825:501378,78643,0 -(186,141:22838723,16165825:173670,78643,0 +(186,145:20167979,22480897:501378,78643,0 +(186,145:20331833,22480897:173670,78643,0 ) ) -(186,141:23176247,16165825:501378,78643,0 -(186,141:23340101,16165825:173670,78643,0 +(186,145:20669357,22480897:501378,78643,0 +(186,145:20833211,22480897:173670,78643,0 ) ) -(186,141:23677625,16165825:501378,78643,0 -(186,141:23841479,16165825:173670,78643,0 +(186,145:21170735,22480897:501378,78643,0 +(186,145:21334589,22480897:173670,78643,0 ) ) -(186,141:24179003,16165825:501378,78643,0 -(186,141:24342857,16165825:173670,78643,0 +(186,145:21672113,22480897:501378,78643,0 +(186,145:21835967,22480897:173670,78643,0 ) ) -(186,141:24680381,16165825:501378,78643,0 -(186,141:24844235,16165825:173670,78643,0 +(186,145:22173491,22480897:501378,78643,0 +(186,145:22337345,22480897:173670,78643,0 ) ) -(186,141:25181759,16165825:501378,78643,0 -(186,141:25345613,16165825:173670,78643,0 +(186,145:22674869,22480897:501378,78643,0 +(186,145:22838723,22480897:173670,78643,0 ) ) -(186,141:25683137,16165825:501378,78643,0 -(186,141:25846991,16165825:173670,78643,0 +(186,145:23176247,22480897:501378,78643,0 +(186,145:23340101,22480897:173670,78643,0 ) ) -(186,141:26184515,16165825:501378,78643,0 -(186,141:26348369,16165825:173670,78643,0 +(186,145:23677625,22480897:501378,78643,0 +(186,145:23841479,22480897:173670,78643,0 ) ) -(186,141:26685893,16165825:501378,78643,0 -(186,141:26849747,16165825:173670,78643,0 +(186,145:24179003,22480897:501378,78643,0 +(186,145:24342857,22480897:173670,78643,0 ) ) -(186,141:27187271,16165825:501378,78643,0 -(186,141:27351125,16165825:173670,78643,0 +(186,145:24680381,22480897:501378,78643,0 +(186,145:24844235,22480897:173670,78643,0 ) ) -(186,141:27688649,16165825:501378,78643,0 -(186,141:27852503,16165825:173670,78643,0 +(186,145:25181759,22480897:501378,78643,0 +(186,145:25345613,22480897:173670,78643,0 ) ) -(186,141:28190027,16165825:501378,78643,0 -(186,141:28353881,16165825:173670,78643,0 +(186,145:25683137,22480897:501378,78643,0 +(186,145:25846991,22480897:173670,78643,0 ) ) -(186,141:28691405,16165825:501378,78643,0 -(186,141:28855259,16165825:173670,78643,0 +(186,145:26184515,22480897:501378,78643,0 +(186,145:26348369,22480897:173670,78643,0 ) ) -(186,141:29192783,16165825:501378,78643,0 -(186,141:29356637,16165825:173670,78643,0 +(186,145:26685893,22480897:501378,78643,0 +(186,145:26849747,22480897:173670,78643,0 ) ) -(186,141:29694161,16165825:501378,78643,0 -(186,141:29858015,16165825:173670,78643,0 +(186,145:27187271,22480897:501378,78643,0 +(186,145:27351125,22480897:173670,78643,0 ) ) -(186,141:30195539,16165825:501378,78643,0 -(186,141:30359393,16165825:173670,78643,0 +(186,145:27688649,22480897:501378,78643,0 +(186,145:27852503,22480897:173670,78643,0 ) ) -(186,141:30696917,16165825:501378,78643,0 -(186,141:30860771,16165825:173670,78643,0 +(186,145:28190027,22480897:501378,78643,0 +(186,145:28353881,22480897:173670,78643,0 ) ) -(186,141:31239540,16165825:1343490,485622,11795 -k186,141:31239540,16165825:0 -k186,141:31387653,16165825:148113 +(186,145:28691405,22480897:501378,78643,0 +(186,145:28855259,22480897:173670,78643,0 ) -g186,141:30911860,16165825 -g186,141:32583030,16165825 ) -(186,142:6630773,17007313:25952256,505283,134348 -g186,142:11873653,17007313 -h186,142:11873653,17007313:2818050,0,0 -h186,142:14691703,17007313:0,0,0 -g186,142:9448823,17007313 -(186,142:9448823,17007313:2424830,485622,11795 -k186,142:11873653,17007313:882112 +(186,145:29192783,22480897:501378,78643,0 +(186,145:29356637,22480897:173670,78643,0 ) -g186,142:15018069,17007313 -g186,142:15018069,17007313 -(186,142:15154199,17007313:501378,78643,0 -$186,142:15154199,17007313 -(186,142:15318053,17007313:173670,78643,0 ) -$186,142:15655577,17007313 +(186,145:29694161,22480897:501378,78643,0 +(186,145:29858015,22480897:173670,78643,0 ) -(186,142:15655577,17007313:501378,78643,0 -(186,142:15819431,17007313:173670,78643,0 ) +(186,145:30195539,22480897:501378,78643,0 +(186,145:30359393,22480897:173670,78643,0 ) -(186,142:16156955,17007313:501378,78643,0 -(186,142:16320809,17007313:173670,78643,0 ) +(186,145:30696917,22480897:501378,78643,0 +(186,145:30860771,22480897:173670,78643,0 ) -(186,142:16658333,17007313:501378,78643,0 -(186,142:16822187,17007313:173670,78643,0 ) +(186,145:31239539,22480897:1343490,485622,11795 +k186,145:31239539,22480897:0 +k186,145:31387652,22480897:148113 ) -(186,142:17159711,17007313:501378,78643,0 -(186,142:17323565,17007313:173670,78643,0 +g186,145:30911859,22480897 +g186,145:32583029,22480897 ) +(186,146:6630773,23345977:25952256,505283,126483 +g186,146:9710963,23345977 +h186,146:9710963,23345977:983040,0,0 +h186,146:10694003,23345977:0,0,0 +g186,146:7613813,23345977 +(186,146:7613813,23345977:2097150,485622,11795 +k186,146:9710963,23345977:1126562 ) -(186,142:17661089,17007313:501378,78643,0 -(186,142:17824943,17007313:173670,78643,0 +g186,146:11382131,23345977 +g186,146:15837268,23345977 +g186,146:17430448,23345977 +g186,146:19602310,23345977 +g186,146:19602310,23345977 +(186,146:19666601,23345977:501378,78643,0 +$186,146:19666601,23345977 +(186,146:19830455,23345977:173670,78643,0 ) +$186,146:20167979,23345977 ) -(186,142:18162467,17007313:501378,78643,0 -(186,142:18326321,17007313:173670,78643,0 +(186,146:20167979,23345977:501378,78643,0 +(186,146:20331833,23345977:173670,78643,0 ) ) -(186,142:18663845,17007313:501378,78643,0 -(186,142:18827699,17007313:173670,78643,0 +(186,146:20669357,23345977:501378,78643,0 +(186,146:20833211,23345977:173670,78643,0 ) ) -(186,142:19165223,17007313:501378,78643,0 -(186,142:19329077,17007313:173670,78643,0 +(186,146:21170735,23345977:501378,78643,0 +(186,146:21334589,23345977:173670,78643,0 ) ) -(186,142:19666601,17007313:501378,78643,0 -(186,142:19830455,17007313:173670,78643,0 +(186,146:21672113,23345977:501378,78643,0 +(186,146:21835967,23345977:173670,78643,0 ) ) -(186,142:20167979,17007313:501378,78643,0 -(186,142:20331833,17007313:173670,78643,0 +(186,146:22173491,23345977:501378,78643,0 +(186,146:22337345,23345977:173670,78643,0 ) ) -(186,142:20669357,17007313:501378,78643,0 -(186,142:20833211,17007313:173670,78643,0 +(186,146:22674869,23345977:501378,78643,0 +(186,146:22838723,23345977:173670,78643,0 ) ) -(186,142:21170735,17007313:501378,78643,0 -(186,142:21334589,17007313:173670,78643,0 +(186,146:23176247,23345977:501378,78643,0 +(186,146:23340101,23345977:173670,78643,0 ) ) -(186,142:21672113,17007313:501378,78643,0 -(186,142:21835967,17007313:173670,78643,0 +(186,146:23677625,23345977:501378,78643,0 +(186,146:23841479,23345977:173670,78643,0 ) ) -(186,142:22173491,17007313:501378,78643,0 -(186,142:22337345,17007313:173670,78643,0 +(186,146:24179003,23345977:501378,78643,0 +(186,146:24342857,23345977:173670,78643,0 ) ) -(186,142:22674869,17007313:501378,78643,0 -(186,142:22838723,17007313:173670,78643,0 +(186,146:24680381,23345977:501378,78643,0 +(186,146:24844235,23345977:173670,78643,0 ) ) -(186,142:23176247,17007313:501378,78643,0 -(186,142:23340101,17007313:173670,78643,0 +(186,146:25181759,23345977:501378,78643,0 +(186,146:25345613,23345977:173670,78643,0 ) ) -(186,142:23677625,17007313:501378,78643,0 -(186,142:23841479,17007313:173670,78643,0 +(186,146:25683137,23345977:501378,78643,0 +(186,146:25846991,23345977:173670,78643,0 ) ) -(186,142:24179003,17007313:501378,78643,0 -(186,142:24342857,17007313:173670,78643,0 +(186,146:26184515,23345977:501378,78643,0 +(186,146:26348369,23345977:173670,78643,0 ) ) -(186,142:24680381,17007313:501378,78643,0 -(186,142:24844235,17007313:173670,78643,0 +(186,146:26685893,23345977:501378,78643,0 +(186,146:26849747,23345977:173670,78643,0 ) ) -(186,142:25181759,17007313:501378,78643,0 -(186,142:25345613,17007313:173670,78643,0 +(186,146:27187271,23345977:501378,78643,0 +(186,146:27351125,23345977:173670,78643,0 ) ) -(186,142:25683137,17007313:501378,78643,0 -(186,142:25846991,17007313:173670,78643,0 +(186,146:27688649,23345977:501378,78643,0 +(186,146:27852503,23345977:173670,78643,0 ) ) -(186,142:26184515,17007313:501378,78643,0 -(186,142:26348369,17007313:173670,78643,0 +(186,146:28190027,23345977:501378,78643,0 +(186,146:28353881,23345977:173670,78643,0 ) ) -(186,142:26685893,17007313:501378,78643,0 -(186,142:26849747,17007313:173670,78643,0 +(186,146:28691405,23345977:501378,78643,0 +(186,146:28855259,23345977:173670,78643,0 ) ) -(186,142:27187271,17007313:501378,78643,0 -(186,142:27351125,17007313:173670,78643,0 +(186,146:29192783,23345977:501378,78643,0 +(186,146:29356637,23345977:173670,78643,0 ) ) -(186,142:27688649,17007313:501378,78643,0 -(186,142:27852503,17007313:173670,78643,0 +(186,146:29694161,23345977:501378,78643,0 +(186,146:29858015,23345977:173670,78643,0 ) ) -(186,142:28190027,17007313:501378,78643,0 -(186,142:28353881,17007313:173670,78643,0 +(186,146:30195539,23345977:501378,78643,0 +(186,146:30359393,23345977:173670,78643,0 ) ) -(186,142:28691405,17007313:501378,78643,0 -(186,142:28855259,17007313:173670,78643,0 +(186,146:30696917,23345977:501378,78643,0 +(186,146:30860771,23345977:173670,78643,0 ) ) -(186,142:29192783,17007313:501378,78643,0 -(186,142:29356637,17007313:173670,78643,0 +(186,146:31239539,23345977:1343490,485622,11795 +k186,146:31239539,23345977:0 +k186,146:31387652,23345977:148113 ) +g186,146:30911859,23345977 +g186,146:32583029,23345977 ) -(186,142:29694161,17007313:501378,78643,0 -(186,142:29858015,17007313:173670,78643,0 +(186,147:6630773,24211057:25952256,505283,126483 +g186,147:12529013,24211057 +h186,147:12529013,24211057:3080190,0,0 +h186,147:15609203,24211057:0,0,0 +g186,147:9710963,24211057 +(186,147:9710963,24211057:2818050,485622,11795 +k186,147:12529013,24211057:1275332 ) +g186,147:15701610,24211057 +g186,147:20287820,24211057 +(186,147:20669357,24211057:501378,78643,0 +$186,147:20669357,24211057 +(186,147:20833211,24211057:173670,78643,0 ) -(186,142:30195539,17007313:501378,78643,0 -(186,142:30359393,17007313:173670,78643,0 +$186,147:21170735,24211057 ) +(186,147:21170735,24211057:501378,78643,0 +(186,147:21334589,24211057:173670,78643,0 ) -(186,142:30696917,17007313:501378,78643,0 -(186,142:30860771,17007313:173670,78643,0 ) +(186,147:21672113,24211057:501378,78643,0 +(186,147:21835967,24211057:173670,78643,0 ) -(186,142:31239539,17007313:1343490,485622,11795 -k186,142:31239539,17007313:0 -k186,142:31387652,17007313:148113 ) -g186,142:30911859,17007313 -g186,142:32583029,17007313 +(186,147:22173491,24211057:501378,78643,0 +(186,147:22337345,24211057:173670,78643,0 ) -(186,143:6630773,17848801:25952256,505283,126483 -g186,143:11873653,17848801 -h186,143:11873653,17848801:2818050,0,0 -h186,143:14691703,17848801:0,0,0 -g186,143:9448823,17848801 -(186,143:9448823,17848801:2424830,485622,11795 -k186,143:11873653,17848801:882112 ) -g186,143:14235569,17848801 -g186,143:14235569,17848801 -(186,143:14652821,17848801:501378,78643,0 -$186,143:14652821,17848801 -(186,143:14816675,17848801:173670,78643,0 +(186,147:22674869,24211057:501378,78643,0 +(186,147:22838723,24211057:173670,78643,0 ) -$186,143:15154199,17848801 ) -(186,143:15154199,17848801:501378,78643,0 -(186,143:15318053,17848801:173670,78643,0 +(186,147:23176247,24211057:501378,78643,0 +(186,147:23340101,24211057:173670,78643,0 ) ) -(186,143:15655577,17848801:501378,78643,0 -(186,143:15819431,17848801:173670,78643,0 +(186,147:23677625,24211057:501378,78643,0 +(186,147:23841479,24211057:173670,78643,0 ) ) -(186,143:16156955,17848801:501378,78643,0 -(186,143:16320809,17848801:173670,78643,0 +(186,147:24179003,24211057:501378,78643,0 +(186,147:24342857,24211057:173670,78643,0 ) ) -(186,143:16658333,17848801:501378,78643,0 -(186,143:16822187,17848801:173670,78643,0 +(186,147:24680381,24211057:501378,78643,0 +(186,147:24844235,24211057:173670,78643,0 ) ) -(186,143:17159711,17848801:501378,78643,0 -(186,143:17323565,17848801:173670,78643,0 +(186,147:25181759,24211057:501378,78643,0 +(186,147:25345613,24211057:173670,78643,0 ) ) -(186,143:17661089,17848801:501378,78643,0 -(186,143:17824943,17848801:173670,78643,0 +(186,147:25683137,24211057:501378,78643,0 +(186,147:25846991,24211057:173670,78643,0 ) ) -(186,143:18162467,17848801:501378,78643,0 -(186,143:18326321,17848801:173670,78643,0 +(186,147:26184515,24211057:501378,78643,0 +(186,147:26348369,24211057:173670,78643,0 ) ) -(186,143:18663845,17848801:501378,78643,0 -(186,143:18827699,17848801:173670,78643,0 +(186,147:26685893,24211057:501378,78643,0 +(186,147:26849747,24211057:173670,78643,0 ) ) -(186,143:19165223,17848801:501378,78643,0 -(186,143:19329077,17848801:173670,78643,0 +(186,147:27187271,24211057:501378,78643,0 +(186,147:27351125,24211057:173670,78643,0 ) ) -(186,143:19666601,17848801:501378,78643,0 -(186,143:19830455,17848801:173670,78643,0 +(186,147:27688649,24211057:501378,78643,0 +(186,147:27852503,24211057:173670,78643,0 ) ) -(186,143:20167979,17848801:501378,78643,0 -(186,143:20331833,17848801:173670,78643,0 +(186,147:28190027,24211057:501378,78643,0 +(186,147:28353881,24211057:173670,78643,0 ) ) -(186,143:20669357,17848801:501378,78643,0 -(186,143:20833211,17848801:173670,78643,0 +(186,147:28691405,24211057:501378,78643,0 +(186,147:28855259,24211057:173670,78643,0 ) ) -(186,143:21170735,17848801:501378,78643,0 -(186,143:21334589,17848801:173670,78643,0 +(186,147:29192783,24211057:501378,78643,0 +(186,147:29356637,24211057:173670,78643,0 ) ) -(186,143:21672113,17848801:501378,78643,0 -(186,143:21835967,17848801:173670,78643,0 +(186,147:29694161,24211057:501378,78643,0 +(186,147:29858015,24211057:173670,78643,0 ) ) -(186,143:22173491,17848801:501378,78643,0 -(186,143:22337345,17848801:173670,78643,0 +(186,147:30195539,24211057:501378,78643,0 +(186,147:30359393,24211057:173670,78643,0 ) ) -(186,143:22674869,17848801:501378,78643,0 -(186,143:22838723,17848801:173670,78643,0 +(186,147:30696917,24211057:501378,78643,0 +(186,147:30860771,24211057:173670,78643,0 ) ) -(186,143:23176247,17848801:501378,78643,0 -(186,143:23340101,17848801:173670,78643,0 +(186,147:31239539,24211057:1343490,485622,11795 +k186,147:31239539,24211057:0 +k186,147:31387652,24211057:148113 ) +g186,147:30911859,24211057 +g186,147:32583029,24211057 ) -(186,143:23677625,17848801:501378,78643,0 -(186,143:23841479,17848801:173670,78643,0 +(186,148:6630773,25076137:25952256,505283,126483 +g186,148:12529013,25076137 +h186,148:12529013,25076137:3080190,0,0 +h186,148:15609203,25076137:0,0,0 +g186,148:9710963,25076137 +(186,148:9710963,25076137:2818050,485622,11795 +k186,148:12529013,25076137:1275332 ) +g186,148:16339276,25076137 +g186,148:20925486,25076137 +(186,148:21170735,25076137:501378,78643,0 +$186,148:21170735,25076137 +(186,148:21334589,25076137:173670,78643,0 ) -(186,143:24179003,17848801:501378,78643,0 -(186,143:24342857,17848801:173670,78643,0 +$186,148:21672113,25076137 ) +(186,148:21672113,25076137:501378,78643,0 +(186,148:21835967,25076137:173670,78643,0 ) -(186,143:24680381,17848801:501378,78643,0 -(186,143:24844235,17848801:173670,78643,0 ) +(186,148:22173491,25076137:501378,78643,0 +(186,148:22337345,25076137:173670,78643,0 ) -(186,143:25181759,17848801:501378,78643,0 -(186,143:25345613,17848801:173670,78643,0 ) +(186,148:22674869,25076137:501378,78643,0 +(186,148:22838723,25076137:173670,78643,0 ) -(186,143:25683137,17848801:501378,78643,0 -(186,143:25846991,17848801:173670,78643,0 ) +(186,148:23176247,25076137:501378,78643,0 +(186,148:23340101,25076137:173670,78643,0 ) -(186,143:26184515,17848801:501378,78643,0 -(186,143:26348369,17848801:173670,78643,0 ) +(186,148:23677625,25076137:501378,78643,0 +(186,148:23841479,25076137:173670,78643,0 ) -(186,143:26685893,17848801:501378,78643,0 -(186,143:26849747,17848801:173670,78643,0 ) +(186,148:24179003,25076137:501378,78643,0 +(186,148:24342857,25076137:173670,78643,0 ) -(186,143:27187271,17848801:501378,78643,0 -(186,143:27351125,17848801:173670,78643,0 ) +(186,148:24680381,25076137:501378,78643,0 +(186,148:24844235,25076137:173670,78643,0 ) -(186,143:27688649,17848801:501378,78643,0 -(186,143:27852503,17848801:173670,78643,0 ) +(186,148:25181759,25076137:501378,78643,0 +(186,148:25345613,25076137:173670,78643,0 ) -(186,143:28190027,17848801:501378,78643,0 -(186,143:28353881,17848801:173670,78643,0 ) +(186,148:25683137,25076137:501378,78643,0 +(186,148:25846991,25076137:173670,78643,0 ) -(186,143:28691405,17848801:501378,78643,0 -(186,143:28855259,17848801:173670,78643,0 ) +(186,148:26184515,25076137:501378,78643,0 +(186,148:26348369,25076137:173670,78643,0 ) -(186,143:29192783,17848801:501378,78643,0 -(186,143:29356637,17848801:173670,78643,0 ) +(186,148:26685893,25076137:501378,78643,0 +(186,148:26849747,25076137:173670,78643,0 ) -(186,143:29694161,17848801:501378,78643,0 -(186,143:29858015,17848801:173670,78643,0 ) +(186,148:27187271,25076137:501378,78643,0 +(186,148:27351125,25076137:173670,78643,0 ) -(186,143:30195539,17848801:501378,78643,0 -(186,143:30359393,17848801:173670,78643,0 ) +(186,148:27688649,25076137:501378,78643,0 +(186,148:27852503,25076137:173670,78643,0 ) -(186,143:30696917,17848801:501378,78643,0 -(186,143:30860771,17848801:173670,78643,0 ) +(186,148:28190027,25076137:501378,78643,0 +(186,148:28353881,25076137:173670,78643,0 ) -(186,143:31239539,17848801:1343490,485622,11795 -k186,143:31239539,17848801:0 -k186,143:31387652,17848801:148113 ) -g186,143:30911859,17848801 -g186,143:32583029,17848801 +(186,148:28691405,25076137:501378,78643,0 +(186,148:28855259,25076137:173670,78643,0 ) -(186,144:6630773,18690289:25952256,485622,134348 -g186,144:11873653,18690289 -h186,144:11873653,18690289:2818050,0,0 -h186,144:14691703,18690289:0,0,0 -g186,144:9448823,18690289 -(186,144:9448823,18690289:2424830,485622,11795 -k186,144:11873653,18690289:882112 ) -g186,144:15598064,18690289 -g186,144:17318384,18690289 -(186,144:17661089,18690289:501378,78643,0 -$186,144:17661089,18690289 -(186,144:17824943,18690289:173670,78643,0 +(186,148:29192783,25076137:501378,78643,0 +(186,148:29356637,25076137:173670,78643,0 ) -$186,144:18162467,18690289 ) -(186,144:18162467,18690289:501378,78643,0 -(186,144:18326321,18690289:173670,78643,0 +(186,148:29694161,25076137:501378,78643,0 +(186,148:29858015,25076137:173670,78643,0 ) ) -(186,144:18663845,18690289:501378,78643,0 -(186,144:18827699,18690289:173670,78643,0 +(186,148:30195539,25076137:501378,78643,0 +(186,148:30359393,25076137:173670,78643,0 ) ) -(186,144:19165223,18690289:501378,78643,0 -(186,144:19329077,18690289:173670,78643,0 +(186,148:30696917,25076137:501378,78643,0 +(186,148:30860771,25076137:173670,78643,0 ) ) -(186,144:19666601,18690289:501378,78643,0 -(186,144:19830455,18690289:173670,78643,0 +(186,148:31239539,25076137:1343490,485622,11795 +k186,148:31239539,25076137:0 +k186,148:31387652,25076137:148113 ) +g186,148:30911859,25076137 +g186,148:32583029,25076137 ) -(186,144:20167979,18690289:501378,78643,0 -(186,144:20331833,18690289:173670,78643,0 +(186,149:6630773,25941217:25952256,485622,95026 +g186,149:12529013,25941217 +h186,149:12529013,25941217:3080190,0,0 +h186,149:15609203,25941217:0,0,0 +g186,149:9710963,25941217 +(186,149:9710963,25941217:2818050,485622,11795 +k186,149:12529013,25941217:1275332 ) +g186,149:14146442,25941217 +(186,149:14151443,25941217:501378,78643,0 +$186,149:14151443,25941217 +(186,149:14315297,25941217:173670,78643,0 ) -(186,144:20669357,18690289:501378,78643,0 -(186,144:20833211,18690289:173670,78643,0 +$186,149:14652821,25941217 ) +(186,149:14652821,25941217:501378,78643,0 +(186,149:14816675,25941217:173670,78643,0 ) -(186,144:21170735,18690289:501378,78643,0 -(186,144:21334589,18690289:173670,78643,0 ) +(186,149:15154199,25941217:501378,78643,0 +(186,149:15318053,25941217:173670,78643,0 ) -(186,144:21672113,18690289:501378,78643,0 -(186,144:21835967,18690289:173670,78643,0 ) +(186,149:15655577,25941217:501378,78643,0 +(186,149:15819431,25941217:173670,78643,0 ) -(186,144:22173491,18690289:501378,78643,0 -(186,144:22337345,18690289:173670,78643,0 ) +(186,149:16156955,25941217:501378,78643,0 +(186,149:16320809,25941217:173670,78643,0 ) -(186,144:22674869,18690289:501378,78643,0 -(186,144:22838723,18690289:173670,78643,0 ) +(186,149:16658333,25941217:501378,78643,0 +(186,149:16822187,25941217:173670,78643,0 ) -(186,144:23176247,18690289:501378,78643,0 -(186,144:23340101,18690289:173670,78643,0 ) +(186,149:17159711,25941217:501378,78643,0 +(186,149:17323565,25941217:173670,78643,0 ) -(186,144:23677625,18690289:501378,78643,0 -(186,144:23841479,18690289:173670,78643,0 ) +(186,149:17661089,25941217:501378,78643,0 +(186,149:17824943,25941217:173670,78643,0 ) -(186,144:24179003,18690289:501378,78643,0 -(186,144:24342857,18690289:173670,78643,0 ) +(186,149:18162467,25941217:501378,78643,0 +(186,149:18326321,25941217:173670,78643,0 ) -(186,144:24680381,18690289:501378,78643,0 -(186,144:24844235,18690289:173670,78643,0 ) +(186,149:18663845,25941217:501378,78643,0 +(186,149:18827699,25941217:173670,78643,0 ) -(186,144:25181759,18690289:501378,78643,0 -(186,144:25345613,18690289:173670,78643,0 ) +(186,149:19165223,25941217:501378,78643,0 +(186,149:19329077,25941217:173670,78643,0 ) -(186,144:25683137,18690289:501378,78643,0 -(186,144:25846991,18690289:173670,78643,0 ) +(186,149:19666601,25941217:501378,78643,0 +(186,149:19830455,25941217:173670,78643,0 ) -(186,144:26184515,18690289:501378,78643,0 -(186,144:26348369,18690289:173670,78643,0 ) +(186,149:20167979,25941217:501378,78643,0 +(186,149:20331833,25941217:173670,78643,0 ) -(186,144:26685893,18690289:501378,78643,0 -(186,144:26849747,18690289:173670,78643,0 ) +(186,149:20669357,25941217:501378,78643,0 +(186,149:20833211,25941217:173670,78643,0 ) -(186,144:27187271,18690289:501378,78643,0 -(186,144:27351125,18690289:173670,78643,0 ) +(186,149:21170735,25941217:501378,78643,0 +(186,149:21334589,25941217:173670,78643,0 ) -(186,144:27688649,18690289:501378,78643,0 -(186,144:27852503,18690289:173670,78643,0 ) +(186,149:21672113,25941217:501378,78643,0 +(186,149:21835967,25941217:173670,78643,0 ) -(186,144:28190027,18690289:501378,78643,0 -(186,144:28353881,18690289:173670,78643,0 ) +(186,149:22173491,25941217:501378,78643,0 +(186,149:22337345,25941217:173670,78643,0 ) -(186,144:28691405,18690289:501378,78643,0 -(186,144:28855259,18690289:173670,78643,0 ) +(186,149:22674869,25941217:501378,78643,0 +(186,149:22838723,25941217:173670,78643,0 ) -(186,144:29192783,18690289:501378,78643,0 -(186,144:29356637,18690289:173670,78643,0 ) +(186,149:23176247,25941217:501378,78643,0 +(186,149:23340101,25941217:173670,78643,0 ) -(186,144:29694161,18690289:501378,78643,0 -(186,144:29858015,18690289:173670,78643,0 ) +(186,149:23677625,25941217:501378,78643,0 +(186,149:23841479,25941217:173670,78643,0 ) -(186,144:30195539,18690289:501378,78643,0 -(186,144:30359393,18690289:173670,78643,0 ) +(186,149:24179003,25941217:501378,78643,0 +(186,149:24342857,25941217:173670,78643,0 ) -(186,144:30696917,18690289:501378,78643,0 -(186,144:30860771,18690289:173670,78643,0 ) +(186,149:24680381,25941217:501378,78643,0 +(186,149:24844235,25941217:173670,78643,0 ) -(186,144:31239539,18690289:1343490,485622,11795 -k186,144:31239539,18690289:0 -k186,144:31387652,18690289:148113 ) -g186,144:30911859,18690289 -g186,144:32583029,18690289 +(186,149:25181759,25941217:501378,78643,0 +(186,149:25345613,25941217:173670,78643,0 ) -(186,145:6630773,19531777:25952256,505283,134348 -g186,145:9448823,19531777 -h186,145:9448823,19531777:983040,0,0 -h186,145:10431863,19531777:0,0,0 -g186,145:7613813,19531777 -(186,145:7613813,19531777:1835010,485622,11795 -k186,145:9448823,19531777:864422 ) -g186,145:12952377,19531777 -g186,145:14545557,19531777 -g186,145:16549647,19531777 -g186,145:16549647,19531777 -(186,145:16658333,19531777:501378,78643,0 -$186,145:16658333,19531777 -(186,145:16822187,19531777:173670,78643,0 +(186,149:25683137,25941217:501378,78643,0 +(186,149:25846991,25941217:173670,78643,0 ) -$186,145:17159711,19531777 ) -(186,145:17159711,19531777:501378,78643,0 -(186,145:17323565,19531777:173670,78643,0 +(186,149:26184515,25941217:501378,78643,0 +(186,149:26348369,25941217:173670,78643,0 ) ) -(186,145:17661089,19531777:501378,78643,0 -(186,145:17824943,19531777:173670,78643,0 +(186,149:26685893,25941217:501378,78643,0 +(186,149:26849747,25941217:173670,78643,0 ) ) -(186,145:18162467,19531777:501378,78643,0 -(186,145:18326321,19531777:173670,78643,0 +(186,149:27187271,25941217:501378,78643,0 +(186,149:27351125,25941217:173670,78643,0 ) ) -(186,145:18663845,19531777:501378,78643,0 -(186,145:18827699,19531777:173670,78643,0 +(186,149:27688649,25941217:501378,78643,0 +(186,149:27852503,25941217:173670,78643,0 ) ) -(186,145:19165223,19531777:501378,78643,0 -(186,145:19329077,19531777:173670,78643,0 +(186,149:28190027,25941217:501378,78643,0 +(186,149:28353881,25941217:173670,78643,0 ) ) -(186,145:19666601,19531777:501378,78643,0 -(186,145:19830455,19531777:173670,78643,0 +(186,149:28691405,25941217:501378,78643,0 +(186,149:28855259,25941217:173670,78643,0 ) ) -(186,145:20167979,19531777:501378,78643,0 -(186,145:20331833,19531777:173670,78643,0 +(186,149:29192783,25941217:501378,78643,0 +(186,149:29356637,25941217:173670,78643,0 ) ) -(186,145:20669357,19531777:501378,78643,0 -(186,145:20833211,19531777:173670,78643,0 +(186,149:29694161,25941217:501378,78643,0 +(186,149:29858015,25941217:173670,78643,0 ) ) -(186,145:21170735,19531777:501378,78643,0 -(186,145:21334589,19531777:173670,78643,0 +(186,149:30195539,25941217:501378,78643,0 +(186,149:30359393,25941217:173670,78643,0 ) ) -(186,145:21672113,19531777:501378,78643,0 -(186,145:21835967,19531777:173670,78643,0 +(186,149:30696917,25941217:501378,78643,0 +(186,149:30860771,25941217:173670,78643,0 ) ) -(186,145:22173491,19531777:501378,78643,0 -(186,145:22337345,19531777:173670,78643,0 +(186,149:31239538,25941217:1343490,485622,11795 +k186,149:31239538,25941217:0 +k186,149:31387651,25941217:148113 ) +g186,149:30911858,25941217 +g186,149:32583028,25941217 ) -(186,145:22674869,19531777:501378,78643,0 -(186,145:22838723,19531777:173670,78643,0 +(186,150:6630773,26806297:25952256,505283,134348 +g186,150:9710963,26806297 +h186,150:9710963,26806297:983040,0,0 +h186,150:10694003,26806297:0,0,0 +g186,150:7613813,26806297 +(186,150:7613813,26806297:2097150,485622,11795 +k186,150:9710963,26806297:1126562 ) +g186,150:12279974,26806297 +g186,150:14881753,26806297 +g186,150:14881753,26806297 +(186,150:15154199,26806297:501378,78643,0 +$186,150:15154199,26806297 +(186,150:15318053,26806297:173670,78643,0 ) -(186,145:23176247,19531777:501378,78643,0 -(186,145:23340101,19531777:173670,78643,0 +$186,150:15655577,26806297 ) +(186,150:15655577,26806297:501378,78643,0 +(186,150:15819431,26806297:173670,78643,0 ) -(186,145:23677625,19531777:501378,78643,0 -(186,145:23841479,19531777:173670,78643,0 ) +(186,150:16156955,26806297:501378,78643,0 +(186,150:16320809,26806297:173670,78643,0 ) -(186,145:24179003,19531777:501378,78643,0 -(186,145:24342857,19531777:173670,78643,0 ) +(186,150:16658333,26806297:501378,78643,0 +(186,150:16822187,26806297:173670,78643,0 ) -(186,145:24680381,19531777:501378,78643,0 -(186,145:24844235,19531777:173670,78643,0 ) +(186,150:17159711,26806297:501378,78643,0 +(186,150:17323565,26806297:173670,78643,0 ) -(186,145:25181759,19531777:501378,78643,0 -(186,145:25345613,19531777:173670,78643,0 ) +(186,150:17661089,26806297:501378,78643,0 +(186,150:17824943,26806297:173670,78643,0 ) -(186,145:25683137,19531777:501378,78643,0 -(186,145:25846991,19531777:173670,78643,0 ) +(186,150:18162467,26806297:501378,78643,0 +(186,150:18326321,26806297:173670,78643,0 ) -(186,145:26184515,19531777:501378,78643,0 -(186,145:26348369,19531777:173670,78643,0 ) +(186,150:18663845,26806297:501378,78643,0 +(186,150:18827699,26806297:173670,78643,0 ) -(186,145:26685893,19531777:501378,78643,0 -(186,145:26849747,19531777:173670,78643,0 ) +(186,150:19165223,26806297:501378,78643,0 +(186,150:19329077,26806297:173670,78643,0 ) -(186,145:27187271,19531777:501378,78643,0 -(186,145:27351125,19531777:173670,78643,0 ) +(186,150:19666601,26806297:501378,78643,0 +(186,150:19830455,26806297:173670,78643,0 ) -(186,145:27688649,19531777:501378,78643,0 -(186,145:27852503,19531777:173670,78643,0 ) +(186,150:20167979,26806297:501378,78643,0 +(186,150:20331833,26806297:173670,78643,0 ) -(186,145:28190027,19531777:501378,78643,0 -(186,145:28353881,19531777:173670,78643,0 ) +(186,150:20669357,26806297:501378,78643,0 +(186,150:20833211,26806297:173670,78643,0 ) -(186,145:28691405,19531777:501378,78643,0 -(186,145:28855259,19531777:173670,78643,0 ) +(186,150:21170735,26806297:501378,78643,0 +(186,150:21334589,26806297:173670,78643,0 ) -(186,145:29192783,19531777:501378,78643,0 -(186,145:29356637,19531777:173670,78643,0 ) +(186,150:21672113,26806297:501378,78643,0 +(186,150:21835967,26806297:173670,78643,0 ) -(186,145:29694161,19531777:501378,78643,0 -(186,145:29858015,19531777:173670,78643,0 ) +(186,150:22173491,26806297:501378,78643,0 +(186,150:22337345,26806297:173670,78643,0 ) -(186,145:30195539,19531777:501378,78643,0 -(186,145:30359393,19531777:173670,78643,0 ) +(186,150:22674869,26806297:501378,78643,0 +(186,150:22838723,26806297:173670,78643,0 ) -(186,145:30696917,19531777:501378,78643,0 -(186,145:30860771,19531777:173670,78643,0 ) +(186,150:23176247,26806297:501378,78643,0 +(186,150:23340101,26806297:173670,78643,0 ) -(186,145:31239539,19531777:1343490,485622,11795 -k186,145:31239539,19531777:0 -k186,145:31387652,19531777:148113 ) -g186,145:30911859,19531777 -g186,145:32583029,19531777 +(186,150:23677625,26806297:501378,78643,0 +(186,150:23841479,26806297:173670,78643,0 ) -(186,146:6630773,20373265:25952256,505283,126483 -g186,146:9448823,20373265 -h186,146:9448823,20373265:983040,0,0 -h186,146:10431863,20373265:0,0,0 -g186,146:7613813,20373265 -(186,146:7613813,20373265:1835010,485622,11795 -k186,146:9448823,20373265:864422 ) -g186,146:11119991,20373265 -g186,146:15575128,20373265 -g186,146:17168308,20373265 -g186,146:19340170,20373265 -g186,146:19340170,20373265 -(186,146:19666601,20373265:501378,78643,0 -$186,146:19666601,20373265 -(186,146:19830455,20373265:173670,78643,0 +(186,150:24179003,26806297:501378,78643,0 +(186,150:24342857,26806297:173670,78643,0 ) -$186,146:20167979,20373265 ) -(186,146:20167979,20373265:501378,78643,0 -(186,146:20331833,20373265:173670,78643,0 +(186,150:24680381,26806297:501378,78643,0 +(186,150:24844235,26806297:173670,78643,0 ) ) -(186,146:20669357,20373265:501378,78643,0 -(186,146:20833211,20373265:173670,78643,0 +(186,150:25181759,26806297:501378,78643,0 +(186,150:25345613,26806297:173670,78643,0 ) ) -(186,146:21170735,20373265:501378,78643,0 -(186,146:21334589,20373265:173670,78643,0 +(186,150:25683137,26806297:501378,78643,0 +(186,150:25846991,26806297:173670,78643,0 ) ) -(186,146:21672113,20373265:501378,78643,0 -(186,146:21835967,20373265:173670,78643,0 +(186,150:26184515,26806297:501378,78643,0 +(186,150:26348369,26806297:173670,78643,0 ) ) -(186,146:22173491,20373265:501378,78643,0 -(186,146:22337345,20373265:173670,78643,0 +(186,150:26685893,26806297:501378,78643,0 +(186,150:26849747,26806297:173670,78643,0 ) ) -(186,146:22674869,20373265:501378,78643,0 -(186,146:22838723,20373265:173670,78643,0 +(186,150:27187271,26806297:501378,78643,0 +(186,150:27351125,26806297:173670,78643,0 ) ) -(186,146:23176247,20373265:501378,78643,0 -(186,146:23340101,20373265:173670,78643,0 +(186,150:27688649,26806297:501378,78643,0 +(186,150:27852503,26806297:173670,78643,0 ) ) -(186,146:23677625,20373265:501378,78643,0 -(186,146:23841479,20373265:173670,78643,0 +(186,150:28190027,26806297:501378,78643,0 +(186,150:28353881,26806297:173670,78643,0 ) ) -(186,146:24179003,20373265:501378,78643,0 -(186,146:24342857,20373265:173670,78643,0 +(186,150:28691405,26806297:501378,78643,0 +(186,150:28855259,26806297:173670,78643,0 ) ) -(186,146:24680381,20373265:501378,78643,0 -(186,146:24844235,20373265:173670,78643,0 +(186,150:29192783,26806297:501378,78643,0 +(186,150:29356637,26806297:173670,78643,0 ) ) -(186,146:25181759,20373265:501378,78643,0 -(186,146:25345613,20373265:173670,78643,0 +(186,150:29694161,26806297:501378,78643,0 +(186,150:29858015,26806297:173670,78643,0 ) ) -(186,146:25683137,20373265:501378,78643,0 -(186,146:25846991,20373265:173670,78643,0 +(186,150:30195539,26806297:501378,78643,0 +(186,150:30359393,26806297:173670,78643,0 ) ) -(186,146:26184515,20373265:501378,78643,0 -(186,146:26348369,20373265:173670,78643,0 +(186,150:30696917,26806297:501378,78643,0 +(186,150:30860771,26806297:173670,78643,0 ) ) -(186,146:26685893,20373265:501378,78643,0 -(186,146:26849747,20373265:173670,78643,0 +(186,150:31239539,26806297:1343490,485622,11795 +k186,150:31239539,26806297:0 +k186,150:31387652,26806297:148113 ) +g186,150:30911859,26806297 +g186,150:32583029,26806297 ) -(186,146:27187271,20373265:501378,78643,0 -(186,146:27351125,20373265:173670,78643,0 +(186,151:6630773,28326737:25952256,513147,126483 +g186,151:7613813,28326737 +h186,151:7613813,28326737:0,0,0 +g186,151:6630773,28326737 +(186,151:6630773,28326737:983040,485622,11795 +k186,151:7613813,28326737:574751 ) +g186,151:8290144,28326737 +g186,151:12245241,28326737 +g186,151:15544978,28326737 +g186,151:16426437,28326737 +k186,151:25296735,28326737:5942805 +k186,151:31239539,28326737:5942804 +(186,151:31239539,28326737:1343490,485622,11795 +k186,151:31358161,28326737:118622 ) -(186,146:27688649,20373265:501378,78643,0 -(186,146:27852503,20373265:173670,78643,0 +g186,151:31239539,28326737 +g186,151:32583029,28326737 ) +(186,152:6630773,29191817:25952256,513147,126483 +g186,152:9710963,29191817 +h186,152:9710963,29191817:983040,0,0 +h186,152:10694003,29191817:0,0,0 +g186,152:7613813,29191817 +(186,152:7613813,29191817:2097150,485622,11795 +k186,152:9710963,29191817:1126562 ) -(186,146:28190027,20373265:501378,78643,0 -(186,146:28353881,20373265:173670,78643,0 +g186,152:11549247,29191817 +g186,152:12407768,29191817 +g186,152:13810238,29191817 +g186,152:16427090,29191817 +g186,152:16427090,29191817 +(186,152:16658333,29191817:501378,78643,0 +$186,152:16658333,29191817 +(186,152:16822187,29191817:173670,78643,0 ) +$186,152:17159711,29191817 ) -(186,146:28691405,20373265:501378,78643,0 -(186,146:28855259,20373265:173670,78643,0 +(186,152:17159711,29191817:501378,78643,0 +(186,152:17323565,29191817:173670,78643,0 ) ) -(186,146:29192783,20373265:501378,78643,0 -(186,146:29356637,20373265:173670,78643,0 +(186,152:17661089,29191817:501378,78643,0 +(186,152:17824943,29191817:173670,78643,0 ) ) -(186,146:29694161,20373265:501378,78643,0 -(186,146:29858015,20373265:173670,78643,0 +(186,152:18162467,29191817:501378,78643,0 +(186,152:18326321,29191817:173670,78643,0 ) ) -(186,146:30195539,20373265:501378,78643,0 -(186,146:30359393,20373265:173670,78643,0 +(186,152:18663845,29191817:501378,78643,0 +(186,152:18827699,29191817:173670,78643,0 ) ) -(186,146:30696917,20373265:501378,78643,0 -(186,146:30860771,20373265:173670,78643,0 +(186,152:19165223,29191817:501378,78643,0 +(186,152:19329077,29191817:173670,78643,0 ) ) -(186,146:31239539,20373265:1343490,485622,11795 -k186,146:31239539,20373265:0 -k186,146:31387652,20373265:148113 +(186,152:19666601,29191817:501378,78643,0 +(186,152:19830455,29191817:173670,78643,0 ) -g186,146:30911859,20373265 -g186,146:32583029,20373265 ) -(186,147:6630773,21214753:25952256,505283,126483 -g186,147:11873653,21214753 -h186,147:11873653,21214753:2818050,0,0 -h186,147:14691703,21214753:0,0,0 -g186,147:9448823,21214753 -(186,147:9448823,21214753:2424830,485622,11795 -k186,147:11873653,21214753:882112 +(186,152:20167979,29191817:501378,78643,0 +(186,152:20331833,29191817:173670,78643,0 ) -g186,147:15046250,21214753 -g186,147:19632460,21214753 -(186,147:19666601,21214753:501378,78643,0 -$186,147:19666601,21214753 -(186,147:19830455,21214753:173670,78643,0 ) -$186,147:20167979,21214753 +(186,152:20669357,29191817:501378,78643,0 +(186,152:20833211,29191817:173670,78643,0 ) -(186,147:20167979,21214753:501378,78643,0 -(186,147:20331833,21214753:173670,78643,0 ) +(186,152:21170735,29191817:501378,78643,0 +(186,152:21334589,29191817:173670,78643,0 ) -(186,147:20669357,21214753:501378,78643,0 -(186,147:20833211,21214753:173670,78643,0 ) +(186,152:21672113,29191817:501378,78643,0 +(186,152:21835967,29191817:173670,78643,0 ) -(186,147:21170735,21214753:501378,78643,0 -(186,147:21334589,21214753:173670,78643,0 ) +(186,152:22173491,29191817:501378,78643,0 +(186,152:22337345,29191817:173670,78643,0 ) -(186,147:21672113,21214753:501378,78643,0 -(186,147:21835967,21214753:173670,78643,0 ) +(186,152:22674869,29191817:501378,78643,0 +(186,152:22838723,29191817:173670,78643,0 ) -(186,147:22173491,21214753:501378,78643,0 -(186,147:22337345,21214753:173670,78643,0 ) +(186,152:23176247,29191817:501378,78643,0 +(186,152:23340101,29191817:173670,78643,0 ) -(186,147:22674869,21214753:501378,78643,0 -(186,147:22838723,21214753:173670,78643,0 ) +(186,152:23677625,29191817:501378,78643,0 +(186,152:23841479,29191817:173670,78643,0 ) -(186,147:23176247,21214753:501378,78643,0 -(186,147:23340101,21214753:173670,78643,0 ) +(186,152:24179003,29191817:501378,78643,0 +(186,152:24342857,29191817:173670,78643,0 ) -(186,147:23677625,21214753:501378,78643,0 -(186,147:23841479,21214753:173670,78643,0 ) +(186,152:24680381,29191817:501378,78643,0 +(186,152:24844235,29191817:173670,78643,0 ) -(186,147:24179003,21214753:501378,78643,0 -(186,147:24342857,21214753:173670,78643,0 ) +(186,152:25181759,29191817:501378,78643,0 +(186,152:25345613,29191817:173670,78643,0 ) -(186,147:24680381,21214753:501378,78643,0 -(186,147:24844235,21214753:173670,78643,0 ) +(186,152:25683137,29191817:501378,78643,0 +(186,152:25846991,29191817:173670,78643,0 ) -(186,147:25181759,21214753:501378,78643,0 -(186,147:25345613,21214753:173670,78643,0 ) +(186,152:26184515,29191817:501378,78643,0 +(186,152:26348369,29191817:173670,78643,0 ) -(186,147:25683137,21214753:501378,78643,0 -(186,147:25846991,21214753:173670,78643,0 ) +(186,152:26685893,29191817:501378,78643,0 +(186,152:26849747,29191817:173670,78643,0 ) -(186,147:26184515,21214753:501378,78643,0 -(186,147:26348369,21214753:173670,78643,0 ) +(186,152:27187271,29191817:501378,78643,0 +(186,152:27351125,29191817:173670,78643,0 ) -(186,147:26685893,21214753:501378,78643,0 -(186,147:26849747,21214753:173670,78643,0 ) +(186,152:27688649,29191817:501378,78643,0 +(186,152:27852503,29191817:173670,78643,0 ) -(186,147:27187271,21214753:501378,78643,0 -(186,147:27351125,21214753:173670,78643,0 ) +(186,152:28190027,29191817:501378,78643,0 +(186,152:28353881,29191817:173670,78643,0 ) -(186,147:27688649,21214753:501378,78643,0 -(186,147:27852503,21214753:173670,78643,0 ) +(186,152:28691405,29191817:501378,78643,0 +(186,152:28855259,29191817:173670,78643,0 ) -(186,147:28190027,21214753:501378,78643,0 -(186,147:28353881,21214753:173670,78643,0 ) +(186,152:29192783,29191817:501378,78643,0 +(186,152:29356637,29191817:173670,78643,0 ) -(186,147:28691405,21214753:501378,78643,0 -(186,147:28855259,21214753:173670,78643,0 ) +(186,152:29694161,29191817:501378,78643,0 +(186,152:29858015,29191817:173670,78643,0 ) -(186,147:29192783,21214753:501378,78643,0 -(186,147:29356637,21214753:173670,78643,0 ) +(186,152:30195539,29191817:501378,78643,0 +(186,152:30359393,29191817:173670,78643,0 ) -(186,147:29694161,21214753:501378,78643,0 -(186,147:29858015,21214753:173670,78643,0 ) +(186,152:30696917,29191817:501378,78643,0 +(186,152:30860771,29191817:173670,78643,0 ) -(186,147:30195539,21214753:501378,78643,0 -(186,147:30359393,21214753:173670,78643,0 ) +(186,152:31239539,29191817:1343490,485622,11795 +k186,152:31239539,29191817:0 +k186,152:31387652,29191817:148113 ) -(186,147:30696917,21214753:501378,78643,0 -(186,147:30860771,21214753:173670,78643,0 +g186,152:30911859,29191817 +g186,152:32583029,29191817 ) +(186,153:6630773,30056897:25952256,505283,134348 +g186,153:9710963,30056897 +h186,153:9710963,30056897:983040,0,0 +h186,153:10694003,30056897:0,0,0 +g186,153:7613813,30056897 +(186,153:7613813,30056897:2097150,485622,11795 +k186,153:9710963,30056897:1126562 ) -(186,147:31239539,21214753:1343490,485622,11795 -k186,147:31239539,21214753:0 -k186,147:31387652,21214753:148113 +g186,153:12775426,30056897 +g186,153:14487881,30056897 +g186,153:15303148,30056897 +g186,153:16705618,30056897 +g186,153:19322470,30056897 +g186,153:19322470,30056897 +(186,153:19666601,30056897:501378,78643,0 +$186,153:19666601,30056897 +(186,153:19830455,30056897:173670,78643,0 ) -g186,147:30911859,21214753 -g186,147:32583029,21214753 +$186,153:20167979,30056897 ) -(186,148:6630773,22056241:25952256,505283,126483 -g186,148:11873653,22056241 -h186,148:11873653,22056241:2818050,0,0 -h186,148:14691703,22056241:0,0,0 -g186,148:9448823,22056241 -(186,148:9448823,22056241:2424830,485622,11795 -k186,148:11873653,22056241:882112 +(186,153:20167979,30056897:501378,78643,0 +(186,153:20331833,30056897:173670,78643,0 ) -g186,148:15683916,22056241 -g186,148:20270126,22056241 -(186,148:20669357,22056241:501378,78643,0 -$186,148:20669357,22056241 -(186,148:20833211,22056241:173670,78643,0 ) -$186,148:21170735,22056241 +(186,153:20669357,30056897:501378,78643,0 +(186,153:20833211,30056897:173670,78643,0 ) -(186,148:21170735,22056241:501378,78643,0 -(186,148:21334589,22056241:173670,78643,0 ) +(186,153:21170735,30056897:501378,78643,0 +(186,153:21334589,30056897:173670,78643,0 ) -(186,148:21672113,22056241:501378,78643,0 -(186,148:21835967,22056241:173670,78643,0 ) +(186,153:21672113,30056897:501378,78643,0 +(186,153:21835967,30056897:173670,78643,0 ) -(186,148:22173491,22056241:501378,78643,0 -(186,148:22337345,22056241:173670,78643,0 ) +(186,153:22173491,30056897:501378,78643,0 +(186,153:22337345,30056897:173670,78643,0 ) -(186,148:22674869,22056241:501378,78643,0 -(186,148:22838723,22056241:173670,78643,0 ) +(186,153:22674869,30056897:501378,78643,0 +(186,153:22838723,30056897:173670,78643,0 ) -(186,148:23176247,22056241:501378,78643,0 -(186,148:23340101,22056241:173670,78643,0 ) +(186,153:23176247,30056897:501378,78643,0 +(186,153:23340101,30056897:173670,78643,0 ) -(186,148:23677625,22056241:501378,78643,0 -(186,148:23841479,22056241:173670,78643,0 ) +(186,153:23677625,30056897:501378,78643,0 +(186,153:23841479,30056897:173670,78643,0 ) -(186,148:24179003,22056241:501378,78643,0 -(186,148:24342857,22056241:173670,78643,0 ) +(186,153:24179003,30056897:501378,78643,0 +(186,153:24342857,30056897:173670,78643,0 ) -(186,148:24680381,22056241:501378,78643,0 -(186,148:24844235,22056241:173670,78643,0 ) +(186,153:24680381,30056897:501378,78643,0 +(186,153:24844235,30056897:173670,78643,0 ) -(186,148:25181759,22056241:501378,78643,0 -(186,148:25345613,22056241:173670,78643,0 ) +(186,153:25181759,30056897:501378,78643,0 +(186,153:25345613,30056897:173670,78643,0 ) -(186,148:25683137,22056241:501378,78643,0 -(186,148:25846991,22056241:173670,78643,0 ) +(186,153:25683137,30056897:501378,78643,0 +(186,153:25846991,30056897:173670,78643,0 ) -(186,148:26184515,22056241:501378,78643,0 -(186,148:26348369,22056241:173670,78643,0 ) +(186,153:26184515,30056897:501378,78643,0 +(186,153:26348369,30056897:173670,78643,0 ) -(186,148:26685893,22056241:501378,78643,0 -(186,148:26849747,22056241:173670,78643,0 ) +(186,153:26685893,30056897:501378,78643,0 +(186,153:26849747,30056897:173670,78643,0 ) -(186,148:27187271,22056241:501378,78643,0 -(186,148:27351125,22056241:173670,78643,0 ) +(186,153:27187271,30056897:501378,78643,0 +(186,153:27351125,30056897:173670,78643,0 ) -(186,148:27688649,22056241:501378,78643,0 -(186,148:27852503,22056241:173670,78643,0 ) +(186,153:27688649,30056897:501378,78643,0 +(186,153:27852503,30056897:173670,78643,0 ) -(186,148:28190027,22056241:501378,78643,0 -(186,148:28353881,22056241:173670,78643,0 ) +(186,153:28190027,30056897:501378,78643,0 +(186,153:28353881,30056897:173670,78643,0 ) -(186,148:28691405,22056241:501378,78643,0 -(186,148:28855259,22056241:173670,78643,0 ) +(186,153:28691405,30056897:501378,78643,0 +(186,153:28855259,30056897:173670,78643,0 ) -(186,148:29192783,22056241:501378,78643,0 -(186,148:29356637,22056241:173670,78643,0 ) +(186,153:29192783,30056897:501378,78643,0 +(186,153:29356637,30056897:173670,78643,0 ) -(186,148:29694161,22056241:501378,78643,0 -(186,148:29858015,22056241:173670,78643,0 ) +(186,153:29694161,30056897:501378,78643,0 +(186,153:29858015,30056897:173670,78643,0 ) -(186,148:30195539,22056241:501378,78643,0 -(186,148:30359393,22056241:173670,78643,0 ) +(186,153:30195539,30056897:501378,78643,0 +(186,153:30359393,30056897:173670,78643,0 ) -(186,148:30696917,22056241:501378,78643,0 -(186,148:30860771,22056241:173670,78643,0 ) +(186,153:30696917,30056897:501378,78643,0 +(186,153:30860771,30056897:173670,78643,0 ) -(186,148:31239539,22056241:1343490,485622,11795 -k186,148:31239539,22056241:0 -k186,148:31387652,22056241:148113 ) -g186,148:30911859,22056241 -g186,148:32583029,22056241 +(186,153:31239539,30056897:1343490,485622,11795 +k186,153:31239539,30056897:0 +k186,153:31387652,30056897:148113 ) -(186,149:6630773,22897729:25952256,485622,95026 -g186,149:11873653,22897729 -h186,149:11873653,22897729:2818050,0,0 -h186,149:14691703,22897729:0,0,0 -g186,149:9448823,22897729 -(186,149:9448823,22897729:2424830,485622,11795 -k186,149:11873653,22897729:882112 +g186,153:30911859,30056897 +g186,153:32583029,30056897 ) -g186,149:13491082,22897729 -(186,149:13650065,22897729:501378,78643,0 -$186,149:13650065,22897729 -(186,149:13813919,22897729:173670,78643,0 +(186,154:6630773,30921977:25952256,513147,126483 +g186,154:9710963,30921977 +h186,154:9710963,30921977:983040,0,0 +h186,154:10694003,30921977:0,0,0 +g186,154:7613813,30921977 +(186,154:7613813,30921977:2097150,485622,11795 +k186,154:9710963,30921977:1126562 ) -$186,149:14151443,22897729 +g186,154:11106879,30921977 +g186,154:15233681,30921977 +g186,154:16092202,30921977 +g186,154:16647291,30921977 +g186,154:18123817,30921977 +g186,154:18123817,30921977 +(186,154:18162467,30921977:501378,78643,0 +$186,154:18162467,30921977 +(186,154:18326321,30921977:173670,78643,0 ) -(186,149:14151443,22897729:501378,78643,0 -(186,149:14315297,22897729:173670,78643,0 +$186,154:18663845,30921977 ) +(186,154:18663845,30921977:501378,78643,0 +(186,154:18827699,30921977:173670,78643,0 ) -(186,149:14652821,22897729:501378,78643,0 -(186,149:14816675,22897729:173670,78643,0 ) +(186,154:19165223,30921977:501378,78643,0 +(186,154:19329077,30921977:173670,78643,0 ) -(186,149:15154199,22897729:501378,78643,0 -(186,149:15318053,22897729:173670,78643,0 ) +(186,154:19666601,30921977:501378,78643,0 +(186,154:19830455,30921977:173670,78643,0 ) -(186,149:15655577,22897729:501378,78643,0 -(186,149:15819431,22897729:173670,78643,0 ) +(186,154:20167979,30921977:501378,78643,0 +(186,154:20331833,30921977:173670,78643,0 ) -(186,149:16156955,22897729:501378,78643,0 -(186,149:16320809,22897729:173670,78643,0 ) +(186,154:20669357,30921977:501378,78643,0 +(186,154:20833211,30921977:173670,78643,0 ) -(186,149:16658333,22897729:501378,78643,0 -(186,149:16822187,22897729:173670,78643,0 ) +(186,154:21170735,30921977:501378,78643,0 +(186,154:21334589,30921977:173670,78643,0 ) -(186,149:17159711,22897729:501378,78643,0 -(186,149:17323565,22897729:173670,78643,0 ) +(186,154:21672113,30921977:501378,78643,0 +(186,154:21835967,30921977:173670,78643,0 ) -(186,149:17661089,22897729:501378,78643,0 -(186,149:17824943,22897729:173670,78643,0 ) +(186,154:22173491,30921977:501378,78643,0 +(186,154:22337345,30921977:173670,78643,0 ) -(186,149:18162467,22897729:501378,78643,0 -(186,149:18326321,22897729:173670,78643,0 ) +(186,154:22674869,30921977:501378,78643,0 +(186,154:22838723,30921977:173670,78643,0 ) -(186,149:18663845,22897729:501378,78643,0 -(186,149:18827699,22897729:173670,78643,0 ) +(186,154:23176247,30921977:501378,78643,0 +(186,154:23340101,30921977:173670,78643,0 ) -(186,149:19165223,22897729:501378,78643,0 -(186,149:19329077,22897729:173670,78643,0 ) +(186,154:23677625,30921977:501378,78643,0 +(186,154:23841479,30921977:173670,78643,0 ) -(186,149:19666601,22897729:501378,78643,0 -(186,149:19830455,22897729:173670,78643,0 ) +(186,154:24179003,30921977:501378,78643,0 +(186,154:24342857,30921977:173670,78643,0 ) -(186,149:20167979,22897729:501378,78643,0 -(186,149:20331833,22897729:173670,78643,0 ) +(186,154:24680381,30921977:501378,78643,0 +(186,154:24844235,30921977:173670,78643,0 ) -(186,149:20669357,22897729:501378,78643,0 -(186,149:20833211,22897729:173670,78643,0 ) +(186,154:25181759,30921977:501378,78643,0 +(186,154:25345613,30921977:173670,78643,0 ) -(186,149:21170735,22897729:501378,78643,0 -(186,149:21334589,22897729:173670,78643,0 ) +(186,154:25683137,30921977:501378,78643,0 +(186,154:25846991,30921977:173670,78643,0 ) -(186,149:21672113,22897729:501378,78643,0 -(186,149:21835967,22897729:173670,78643,0 ) +(186,154:26184515,30921977:501378,78643,0 +(186,154:26348369,30921977:173670,78643,0 ) -(186,149:22173491,22897729:501378,78643,0 -(186,149:22337345,22897729:173670,78643,0 ) +(186,154:26685893,30921977:501378,78643,0 +(186,154:26849747,30921977:173670,78643,0 ) -(186,149:22674869,22897729:501378,78643,0 -(186,149:22838723,22897729:173670,78643,0 ) +(186,154:27187271,30921977:501378,78643,0 +(186,154:27351125,30921977:173670,78643,0 ) -(186,149:23176247,22897729:501378,78643,0 -(186,149:23340101,22897729:173670,78643,0 ) +(186,154:27688649,30921977:501378,78643,0 +(186,154:27852503,30921977:173670,78643,0 ) -(186,149:23677625,22897729:501378,78643,0 -(186,149:23841479,22897729:173670,78643,0 ) +(186,154:28190027,30921977:501378,78643,0 +(186,154:28353881,30921977:173670,78643,0 ) -(186,149:24179003,22897729:501378,78643,0 -(186,149:24342857,22897729:173670,78643,0 ) +(186,154:28691405,30921977:501378,78643,0 +(186,154:28855259,30921977:173670,78643,0 ) -(186,149:24680381,22897729:501378,78643,0 -(186,149:24844235,22897729:173670,78643,0 ) +(186,154:29192783,30921977:501378,78643,0 +(186,154:29356637,30921977:173670,78643,0 ) -(186,149:25181759,22897729:501378,78643,0 -(186,149:25345613,22897729:173670,78643,0 ) +(186,154:29694161,30921977:501378,78643,0 +(186,154:29858015,30921977:173670,78643,0 ) -(186,149:25683137,22897729:501378,78643,0 -(186,149:25846991,22897729:173670,78643,0 ) +(186,154:30195539,30921977:501378,78643,0 +(186,154:30359393,30921977:173670,78643,0 ) -(186,149:26184515,22897729:501378,78643,0 -(186,149:26348369,22897729:173670,78643,0 ) +(186,154:30696917,30921977:501378,78643,0 +(186,154:30860771,30921977:173670,78643,0 ) -(186,149:26685893,22897729:501378,78643,0 -(186,149:26849747,22897729:173670,78643,0 ) +(186,154:31239539,30921977:1343490,485622,11795 +k186,154:31239539,30921977:0 +k186,154:31387652,30921977:148113 ) -(186,149:27187271,22897729:501378,78643,0 -(186,149:27351125,22897729:173670,78643,0 +g186,154:30911859,30921977 +g186,154:32583029,30921977 ) +(186,155:6630773,31787057:25952256,513147,134348 +g186,155:9710963,31787057 +h186,155:9710963,31787057:983040,0,0 +h186,155:10694003,31787057:0,0,0 +g186,155:7613813,31787057 +(186,155:7613813,31787057:2097150,485622,11795 +k186,155:9710963,31787057:1126562 ) -(186,149:27688649,22897729:501378,78643,0 -(186,149:27852503,22897729:173670,78643,0 +g186,155:11106879,31787057 +g186,155:14208698,31787057 +g186,155:15067219,31787057 +g186,155:17985537,31787057 +g186,155:17985537,31787057 +(186,155:18162467,31787057:501378,78643,0 +$186,155:18162467,31787057 +(186,155:18326321,31787057:173670,78643,0 ) +$186,155:18663845,31787057 ) -(186,149:28190027,22897729:501378,78643,0 -(186,149:28353881,22897729:173670,78643,0 +(186,155:18663845,31787057:501378,78643,0 +(186,155:18827699,31787057:173670,78643,0 ) ) -(186,149:28691405,22897729:501378,78643,0 -(186,149:28855259,22897729:173670,78643,0 +(186,155:19165223,31787057:501378,78643,0 +(186,155:19329077,31787057:173670,78643,0 ) ) -(186,149:29192783,22897729:501378,78643,0 -(186,149:29356637,22897729:173670,78643,0 +(186,155:19666601,31787057:501378,78643,0 +(186,155:19830455,31787057:173670,78643,0 ) ) -(186,149:29694161,22897729:501378,78643,0 -(186,149:29858015,22897729:173670,78643,0 +(186,155:20167979,31787057:501378,78643,0 +(186,155:20331833,31787057:173670,78643,0 ) ) -(186,149:30195539,22897729:501378,78643,0 -(186,149:30359393,22897729:173670,78643,0 +(186,155:20669357,31787057:501378,78643,0 +(186,155:20833211,31787057:173670,78643,0 ) ) -(186,149:30696917,22897729:501378,78643,0 -(186,149:30860771,22897729:173670,78643,0 +(186,155:21170735,31787057:501378,78643,0 +(186,155:21334589,31787057:173670,78643,0 ) ) -(186,149:31239538,22897729:1343490,485622,11795 -k186,149:31239538,22897729:0 -k186,149:31387651,22897729:148113 +(186,155:21672113,31787057:501378,78643,0 +(186,155:21835967,31787057:173670,78643,0 ) -g186,149:30911858,22897729 -g186,149:32583028,22897729 ) -(186,150:6630773,23739217:25952256,505283,134348 -g186,150:9448823,23739217 -h186,150:9448823,23739217:983040,0,0 -h186,150:10431863,23739217:0,0,0 -g186,150:7613813,23739217 -(186,150:7613813,23739217:1835010,485622,11795 -k186,150:9448823,23739217:864422 +(186,155:22173491,31787057:501378,78643,0 +(186,155:22337345,31787057:173670,78643,0 ) -g186,150:12017834,23739217 -g186,150:14619613,23739217 -g186,150:14619613,23739217 -(186,150:14652821,23739217:501378,78643,0 -$186,150:14652821,23739217 -(186,150:14816675,23739217:173670,78643,0 ) -$186,150:15154199,23739217 +(186,155:22674869,31787057:501378,78643,0 +(186,155:22838723,31787057:173670,78643,0 ) -(186,150:15154199,23739217:501378,78643,0 -(186,150:15318053,23739217:173670,78643,0 ) +(186,155:23176247,31787057:501378,78643,0 +(186,155:23340101,31787057:173670,78643,0 ) -(186,150:15655577,23739217:501378,78643,0 -(186,150:15819431,23739217:173670,78643,0 ) +(186,155:23677625,31787057:501378,78643,0 +(186,155:23841479,31787057:173670,78643,0 ) -(186,150:16156955,23739217:501378,78643,0 -(186,150:16320809,23739217:173670,78643,0 ) +(186,155:24179003,31787057:501378,78643,0 +(186,155:24342857,31787057:173670,78643,0 ) -(186,150:16658333,23739217:501378,78643,0 -(186,150:16822187,23739217:173670,78643,0 ) +(186,155:24680381,31787057:501378,78643,0 +(186,155:24844235,31787057:173670,78643,0 ) -(186,150:17159711,23739217:501378,78643,0 -(186,150:17323565,23739217:173670,78643,0 ) +(186,155:25181759,31787057:501378,78643,0 +(186,155:25345613,31787057:173670,78643,0 ) -(186,150:17661089,23739217:501378,78643,0 -(186,150:17824943,23739217:173670,78643,0 ) +(186,155:25683137,31787057:501378,78643,0 +(186,155:25846991,31787057:173670,78643,0 ) -(186,150:18162467,23739217:501378,78643,0 -(186,150:18326321,23739217:173670,78643,0 ) +(186,155:26184515,31787057:501378,78643,0 +(186,155:26348369,31787057:173670,78643,0 ) -(186,150:18663845,23739217:501378,78643,0 -(186,150:18827699,23739217:173670,78643,0 ) +(186,155:26685893,31787057:501378,78643,0 +(186,155:26849747,31787057:173670,78643,0 ) -(186,150:19165223,23739217:501378,78643,0 -(186,150:19329077,23739217:173670,78643,0 ) +(186,155:27187271,31787057:501378,78643,0 +(186,155:27351125,31787057:173670,78643,0 ) -(186,150:19666601,23739217:501378,78643,0 -(186,150:19830455,23739217:173670,78643,0 ) +(186,155:27688649,31787057:501378,78643,0 +(186,155:27852503,31787057:173670,78643,0 ) -(186,150:20167979,23739217:501378,78643,0 -(186,150:20331833,23739217:173670,78643,0 ) +(186,155:28190027,31787057:501378,78643,0 +(186,155:28353881,31787057:173670,78643,0 ) -(186,150:20669357,23739217:501378,78643,0 -(186,150:20833211,23739217:173670,78643,0 ) +(186,155:28691405,31787057:501378,78643,0 +(186,155:28855259,31787057:173670,78643,0 ) -(186,150:21170735,23739217:501378,78643,0 -(186,150:21334589,23739217:173670,78643,0 ) +(186,155:29192783,31787057:501378,78643,0 +(186,155:29356637,31787057:173670,78643,0 ) -(186,150:21672113,23739217:501378,78643,0 -(186,150:21835967,23739217:173670,78643,0 ) +(186,155:29694161,31787057:501378,78643,0 +(186,155:29858015,31787057:173670,78643,0 ) -(186,150:22173491,23739217:501378,78643,0 -(186,150:22337345,23739217:173670,78643,0 ) +(186,155:30195539,31787057:501378,78643,0 +(186,155:30359393,31787057:173670,78643,0 ) -(186,150:22674869,23739217:501378,78643,0 -(186,150:22838723,23739217:173670,78643,0 ) +(186,155:30696917,31787057:501378,78643,0 +(186,155:30860771,31787057:173670,78643,0 ) -(186,150:23176247,23739217:501378,78643,0 -(186,150:23340101,23739217:173670,78643,0 ) +(186,155:31239539,31787057:1343490,485622,11795 +k186,155:31239539,31787057:0 +k186,155:31387652,31787057:148113 ) -(186,150:23677625,23739217:501378,78643,0 -(186,150:23841479,23739217:173670,78643,0 +g186,155:30911859,31787057 +g186,155:32583029,31787057 ) +(186,156:6630773,32652137:25952256,513147,134348 +g186,156:12529013,32652137 +h186,156:12529013,32652137:3080190,0,0 +h186,156:15609203,32652137:0,0,0 +g186,156:9710963,32652137 +(186,156:9710963,32652137:2818050,485622,11795 +k186,156:12529013,32652137:1275332 ) -(186,150:24179003,23739217:501378,78643,0 -(186,150:24342857,23739217:173670,78643,0 +g186,156:13924929,32652137 +g186,156:16079097,32652137 +g186,156:16937618,32652137 +g186,156:18155932,32652137 +g186,156:21058522,32652137 +(186,156:21170735,32652137:501378,78643,0 +$186,156:21170735,32652137 +(186,156:21334589,32652137:173670,78643,0 ) +$186,156:21672113,32652137 ) -(186,150:24680381,23739217:501378,78643,0 -(186,150:24844235,23739217:173670,78643,0 +(186,156:21672113,32652137:501378,78643,0 +(186,156:21835967,32652137:173670,78643,0 ) ) -(186,150:25181759,23739217:501378,78643,0 -(186,150:25345613,23739217:173670,78643,0 +(186,156:22173491,32652137:501378,78643,0 +(186,156:22337345,32652137:173670,78643,0 ) ) -(186,150:25683137,23739217:501378,78643,0 -(186,150:25846991,23739217:173670,78643,0 +(186,156:22674869,32652137:501378,78643,0 +(186,156:22838723,32652137:173670,78643,0 ) ) -(186,150:26184515,23739217:501378,78643,0 -(186,150:26348369,23739217:173670,78643,0 +(186,156:23176247,32652137:501378,78643,0 +(186,156:23340101,32652137:173670,78643,0 ) ) -(186,150:26685893,23739217:501378,78643,0 -(186,150:26849747,23739217:173670,78643,0 +(186,156:23677625,32652137:501378,78643,0 +(186,156:23841479,32652137:173670,78643,0 ) ) -(186,150:27187271,23739217:501378,78643,0 -(186,150:27351125,23739217:173670,78643,0 +(186,156:24179003,32652137:501378,78643,0 +(186,156:24342857,32652137:173670,78643,0 ) ) -(186,150:27688649,23739217:501378,78643,0 -(186,150:27852503,23739217:173670,78643,0 +(186,156:24680381,32652137:501378,78643,0 +(186,156:24844235,32652137:173670,78643,0 ) ) -(186,150:28190027,23739217:501378,78643,0 -(186,150:28353881,23739217:173670,78643,0 +(186,156:25181759,32652137:501378,78643,0 +(186,156:25345613,32652137:173670,78643,0 ) ) -(186,150:28691405,23739217:501378,78643,0 -(186,150:28855259,23739217:173670,78643,0 +(186,156:25683137,32652137:501378,78643,0 +(186,156:25846991,32652137:173670,78643,0 ) ) -(186,150:29192783,23739217:501378,78643,0 -(186,150:29356637,23739217:173670,78643,0 +(186,156:26184515,32652137:501378,78643,0 +(186,156:26348369,32652137:173670,78643,0 ) ) -(186,150:29694161,23739217:501378,78643,0 -(186,150:29858015,23739217:173670,78643,0 +(186,156:26685893,32652137:501378,78643,0 +(186,156:26849747,32652137:173670,78643,0 ) ) -(186,150:30195539,23739217:501378,78643,0 -(186,150:30359393,23739217:173670,78643,0 +(186,156:27187271,32652137:501378,78643,0 +(186,156:27351125,32652137:173670,78643,0 ) ) -(186,150:30696917,23739217:501378,78643,0 -(186,150:30860771,23739217:173670,78643,0 +(186,156:27688649,32652137:501378,78643,0 +(186,156:27852503,32652137:173670,78643,0 ) ) -(186,150:31239539,23739217:1343490,485622,11795 -k186,150:31239539,23739217:0 -k186,150:31387652,23739217:148113 +(186,156:28190027,32652137:501378,78643,0 +(186,156:28353881,32652137:173670,78643,0 ) -g186,150:30911859,23739217 -g186,150:32583029,23739217 ) -(186,151:6630773,25236065:25952256,513147,126483 -g186,151:7613813,25236065 -h186,151:7613813,25236065:0,0,0 -g186,151:6630773,25236065 -(186,151:6630773,25236065:983040,485622,11795 -k186,151:7613813,25236065:574751 +(186,156:28691405,32652137:501378,78643,0 +(186,156:28855259,32652137:173670,78643,0 ) -g186,151:8290144,25236065 -g186,151:12245241,25236065 -g186,151:15544978,25236065 -g186,151:16426437,25236065 -k186,151:25296735,25236065:5942805 -k186,151:31239539,25236065:5942804 -(186,151:31239539,25236065:1343490,485622,0 -k186,151:31358161,25236065:118622 ) -g186,151:31239539,25236065 -g186,151:32583029,25236065 +(186,156:29192783,32652137:501378,78643,0 +(186,156:29356637,32652137:173670,78643,0 ) -(186,152:6630773,26077553:25952256,513147,126483 -g186,152:9448823,26077553 -h186,152:9448823,26077553:983040,0,0 -h186,152:10431863,26077553:0,0,0 -g186,152:7613813,26077553 -(186,152:7613813,26077553:1835010,485622,11795 -k186,152:9448823,26077553:864422 ) -g186,152:11287107,26077553 -g186,152:12145628,26077553 -g186,152:13548098,26077553 -g186,152:16164950,26077553 -g186,152:16164950,26077553 -(186,152:16658333,26077553:501378,78643,0 -$186,152:16658333,26077553 -(186,152:16822187,26077553:173670,78643,0 +(186,156:29694161,32652137:501378,78643,0 +(186,156:29858015,32652137:173670,78643,0 ) -$186,152:17159711,26077553 ) -(186,152:17159711,26077553:501378,78643,0 -(186,152:17323565,26077553:173670,78643,0 +(186,156:30195539,32652137:501378,78643,0 +(186,156:30359393,32652137:173670,78643,0 ) ) -(186,152:17661089,26077553:501378,78643,0 -(186,152:17824943,26077553:173670,78643,0 +(186,156:30696917,32652137:501378,78643,0 +(186,156:30860771,32652137:173670,78643,0 ) ) -(186,152:18162467,26077553:501378,78643,0 -(186,152:18326321,26077553:173670,78643,0 +(186,156:31239539,32652137:1343490,485622,11795 +k186,156:31239539,32652137:0 +k186,156:31387652,32652137:148113 ) +g186,156:30911859,32652137 +g186,156:32583029,32652137 ) -(186,152:18663845,26077553:501378,78643,0 -(186,152:18827699,26077553:173670,78643,0 +(186,166:6630773,33517217:25952256,513147,134348 +g186,166:12529013,33517217 +h186,166:12529013,33517217:3080190,0,0 +h186,166:15609203,33517217:0,0,0 +g186,166:9710963,33517217 +(186,166:9710963,33517217:2818050,485622,11795 +k186,166:12529013,33517217:1275332 ) +g186,166:13924929,33517217 +g186,166:17041165,33517217 +g186,166:17899686,33517217 +g186,166:19118000,33517217 +g186,166:22020590,33517217 +(186,166:22173491,33517217:501378,78643,0 +$186,166:22173491,33517217 +(186,166:22337345,33517217:173670,78643,0 ) -(186,152:19165223,26077553:501378,78643,0 -(186,152:19329077,26077553:173670,78643,0 +$186,166:22674869,33517217 ) +(186,166:22674869,33517217:501378,78643,0 +(186,166:22838723,33517217:173670,78643,0 ) -(186,152:19666601,26077553:501378,78643,0 -(186,152:19830455,26077553:173670,78643,0 ) +(186,166:23176247,33517217:501378,78643,0 +(186,166:23340101,33517217:173670,78643,0 ) -(186,152:20167979,26077553:501378,78643,0 -(186,152:20331833,26077553:173670,78643,0 ) +(186,166:23677625,33517217:501378,78643,0 +(186,166:23841479,33517217:173670,78643,0 ) -(186,152:20669357,26077553:501378,78643,0 -(186,152:20833211,26077553:173670,78643,0 ) +(186,166:24179003,33517217:501378,78643,0 +(186,166:24342857,33517217:173670,78643,0 ) -(186,152:21170735,26077553:501378,78643,0 -(186,152:21334589,26077553:173670,78643,0 ) +(186,166:24680381,33517217:501378,78643,0 +(186,166:24844235,33517217:173670,78643,0 ) -(186,152:21672113,26077553:501378,78643,0 -(186,152:21835967,26077553:173670,78643,0 ) +(186,166:25181759,33517217:501378,78643,0 +(186,166:25345613,33517217:173670,78643,0 ) -(186,152:22173491,26077553:501378,78643,0 -(186,152:22337345,26077553:173670,78643,0 ) +(186,166:25683137,33517217:501378,78643,0 +(186,166:25846991,33517217:173670,78643,0 ) -(186,152:22674869,26077553:501378,78643,0 -(186,152:22838723,26077553:173670,78643,0 ) +(186,166:26184515,33517217:501378,78643,0 +(186,166:26348369,33517217:173670,78643,0 ) -(186,152:23176247,26077553:501378,78643,0 -(186,152:23340101,26077553:173670,78643,0 ) +(186,166:26685893,33517217:501378,78643,0 +(186,166:26849747,33517217:173670,78643,0 ) -(186,152:23677625,26077553:501378,78643,0 -(186,152:23841479,26077553:173670,78643,0 ) +(186,166:27187271,33517217:501378,78643,0 +(186,166:27351125,33517217:173670,78643,0 ) -(186,152:24179003,26077553:501378,78643,0 -(186,152:24342857,26077553:173670,78643,0 ) +(186,166:27688649,33517217:501378,78643,0 +(186,166:27852503,33517217:173670,78643,0 ) -(186,152:24680381,26077553:501378,78643,0 -(186,152:24844235,26077553:173670,78643,0 ) +(186,166:28190027,33517217:501378,78643,0 +(186,166:28353881,33517217:173670,78643,0 ) -(186,152:25181759,26077553:501378,78643,0 -(186,152:25345613,26077553:173670,78643,0 ) +(186,166:28691405,33517217:501378,78643,0 +(186,166:28855259,33517217:173670,78643,0 ) -(186,152:25683137,26077553:501378,78643,0 -(186,152:25846991,26077553:173670,78643,0 ) +(186,166:29192783,33517217:501378,78643,0 +(186,166:29356637,33517217:173670,78643,0 ) -(186,152:26184515,26077553:501378,78643,0 -(186,152:26348369,26077553:173670,78643,0 ) +(186,166:29694161,33517217:501378,78643,0 +(186,166:29858015,33517217:173670,78643,0 ) -(186,152:26685893,26077553:501378,78643,0 -(186,152:26849747,26077553:173670,78643,0 ) +(186,166:30195539,33517217:501378,78643,0 +(186,166:30359393,33517217:173670,78643,0 ) -(186,152:27187271,26077553:501378,78643,0 -(186,152:27351125,26077553:173670,78643,0 ) +(186,166:30696917,33517217:501378,78643,0 +(186,166:30860771,33517217:173670,78643,0 ) -(186,152:27688649,26077553:501378,78643,0 -(186,152:27852503,26077553:173670,78643,0 ) +(186,166:31239539,33517217:1343490,485622,11795 +k186,166:31239539,33517217:0 +k186,166:31387652,33517217:148113 ) -(186,152:28190027,26077553:501378,78643,0 -(186,152:28353881,26077553:173670,78643,0 +g186,166:30911859,33517217 +g186,166:32583029,33517217 ) +(186,167:6630773,34382297:25952256,505283,11795 +g186,167:12529013,34382297 +h186,167:12529013,34382297:3080190,0,0 +h186,167:15609203,34382297:0,0,0 +g186,167:9710963,34382297 +(186,167:9710963,34382297:2818050,485622,11795 +k186,167:12529013,34382297:1275332 ) -(186,152:28691405,26077553:501378,78643,0 -(186,152:28855259,26077553:173670,78643,0 +g186,167:13960319,34382297 +g186,167:17994715,34382297 +(186,167:18162467,34382297:501378,78643,0 +$186,167:18162467,34382297 +(186,167:18326321,34382297:173670,78643,0 ) +$186,167:18663845,34382297 ) -(186,152:29192783,26077553:501378,78643,0 -(186,152:29356637,26077553:173670,78643,0 +(186,167:18663845,34382297:501378,78643,0 +(186,167:18827699,34382297:173670,78643,0 ) ) -(186,152:29694161,26077553:501378,78643,0 -(186,152:29858015,26077553:173670,78643,0 +(186,167:19165223,34382297:501378,78643,0 +(186,167:19329077,34382297:173670,78643,0 ) ) -(186,152:30195539,26077553:501378,78643,0 -(186,152:30359393,26077553:173670,78643,0 +(186,167:19666601,34382297:501378,78643,0 +(186,167:19830455,34382297:173670,78643,0 ) ) -(186,152:30696917,26077553:501378,78643,0 -(186,152:30860771,26077553:173670,78643,0 +(186,167:20167979,34382297:501378,78643,0 +(186,167:20331833,34382297:173670,78643,0 ) ) -(186,152:31239539,26077553:1343490,485622,0 -k186,152:31239539,26077553:0 -k186,152:31387652,26077553:148113 +(186,167:20669357,34382297:501378,78643,0 +(186,167:20833211,34382297:173670,78643,0 ) -g186,152:30911859,26077553 -g186,152:32583029,26077553 ) -(186,153:6630773,26919041:25952256,505283,134348 -g186,153:9448823,26919041 -h186,153:9448823,26919041:983040,0,0 -h186,153:10431863,26919041:0,0,0 -g186,153:7613813,26919041 -(186,153:7613813,26919041:1835010,485622,11795 -k186,153:9448823,26919041:864422 +(186,167:21170735,34382297:501378,78643,0 +(186,167:21334589,34382297:173670,78643,0 ) -g186,153:12513286,26919041 -g186,153:14225741,26919041 -g186,153:15041008,26919041 -g186,153:16443478,26919041 -g186,153:19060330,26919041 -g186,153:19060330,26919041 -(186,153:19165223,26919041:501378,78643,0 -$186,153:19165223,26919041 -(186,153:19329077,26919041:173670,78643,0 ) -$186,153:19666601,26919041 +(186,167:21672113,34382297:501378,78643,0 +(186,167:21835967,34382297:173670,78643,0 ) -(186,153:19666601,26919041:501378,78643,0 -(186,153:19830455,26919041:173670,78643,0 ) +(186,167:22173491,34382297:501378,78643,0 +(186,167:22337345,34382297:173670,78643,0 ) -(186,153:20167979,26919041:501378,78643,0 -(186,153:20331833,26919041:173670,78643,0 ) +(186,167:22674869,34382297:501378,78643,0 +(186,167:22838723,34382297:173670,78643,0 ) -(186,153:20669357,26919041:501378,78643,0 -(186,153:20833211,26919041:173670,78643,0 ) +(186,167:23176247,34382297:501378,78643,0 +(186,167:23340101,34382297:173670,78643,0 ) -(186,153:21170735,26919041:501378,78643,0 -(186,153:21334589,26919041:173670,78643,0 ) +(186,167:23677625,34382297:501378,78643,0 +(186,167:23841479,34382297:173670,78643,0 ) -(186,153:21672113,26919041:501378,78643,0 -(186,153:21835967,26919041:173670,78643,0 ) +(186,167:24179003,34382297:501378,78643,0 +(186,167:24342857,34382297:173670,78643,0 ) -(186,153:22173491,26919041:501378,78643,0 -(186,153:22337345,26919041:173670,78643,0 ) +(186,167:24680381,34382297:501378,78643,0 +(186,167:24844235,34382297:173670,78643,0 ) -(186,153:22674869,26919041:501378,78643,0 -(186,153:22838723,26919041:173670,78643,0 ) +(186,167:25181759,34382297:501378,78643,0 +(186,167:25345613,34382297:173670,78643,0 ) -(186,153:23176247,26919041:501378,78643,0 -(186,153:23340101,26919041:173670,78643,0 ) +(186,167:25683137,34382297:501378,78643,0 +(186,167:25846991,34382297:173670,78643,0 ) -(186,153:23677625,26919041:501378,78643,0 -(186,153:23841479,26919041:173670,78643,0 ) +(186,167:26184515,34382297:501378,78643,0 +(186,167:26348369,34382297:173670,78643,0 ) -(186,153:24179003,26919041:501378,78643,0 -(186,153:24342857,26919041:173670,78643,0 ) +(186,167:26685893,34382297:501378,78643,0 +(186,167:26849747,34382297:173670,78643,0 ) -(186,153:24680381,26919041:501378,78643,0 -(186,153:24844235,26919041:173670,78643,0 ) +(186,167:27187271,34382297:501378,78643,0 +(186,167:27351125,34382297:173670,78643,0 ) -(186,153:25181759,26919041:501378,78643,0 -(186,153:25345613,26919041:173670,78643,0 ) +(186,167:27688649,34382297:501378,78643,0 +(186,167:27852503,34382297:173670,78643,0 ) -(186,153:25683137,26919041:501378,78643,0 -(186,153:25846991,26919041:173670,78643,0 ) +(186,167:28190027,34382297:501378,78643,0 +(186,167:28353881,34382297:173670,78643,0 ) -(186,153:26184515,26919041:501378,78643,0 -(186,153:26348369,26919041:173670,78643,0 ) +(186,167:28691405,34382297:501378,78643,0 +(186,167:28855259,34382297:173670,78643,0 ) -(186,153:26685893,26919041:501378,78643,0 -(186,153:26849747,26919041:173670,78643,0 ) +(186,167:29192783,34382297:501378,78643,0 +(186,167:29356637,34382297:173670,78643,0 ) -(186,153:27187271,26919041:501378,78643,0 -(186,153:27351125,26919041:173670,78643,0 ) +(186,167:29694161,34382297:501378,78643,0 +(186,167:29858015,34382297:173670,78643,0 ) -(186,153:27688649,26919041:501378,78643,0 -(186,153:27852503,26919041:173670,78643,0 ) +(186,167:30195539,34382297:501378,78643,0 +(186,167:30359393,34382297:173670,78643,0 ) -(186,153:28190027,26919041:501378,78643,0 -(186,153:28353881,26919041:173670,78643,0 ) +(186,167:30696917,34382297:501378,78643,0 +(186,167:30860771,34382297:173670,78643,0 ) -(186,153:28691405,26919041:501378,78643,0 -(186,153:28855259,26919041:173670,78643,0 ) +(186,167:31239539,34382297:1343490,485622,11795 +k186,167:31239539,34382297:0 +k186,167:31387652,34382297:148113 ) -(186,153:29192783,26919041:501378,78643,0 -(186,153:29356637,26919041:173670,78643,0 +g186,167:30911859,34382297 +g186,167:32583029,34382297 ) +(186,168:6630773,35247377:25952256,505283,134348 +g186,168:12529013,35247377 +h186,168:12529013,35247377:3080190,0,0 +h186,168:15609203,35247377:0,0,0 +g186,168:9710963,35247377 +(186,168:9710963,35247377:2818050,485622,11795 +k186,168:12529013,35247377:1275332 ) -(186,153:29694161,26919041:501378,78643,0 -(186,153:29858015,26919041:173670,78643,0 +g186,168:14290620,35247377 +g186,168:15176011,35247377 +g186,168:15790083,35247377 +g186,168:18079911,35247377 +(186,168:18162467,35247377:501378,78643,0 +$186,168:18162467,35247377 +(186,168:18326321,35247377:173670,78643,0 ) +$186,168:18663845,35247377 ) -(186,153:30195539,26919041:501378,78643,0 -(186,153:30359393,26919041:173670,78643,0 +(186,168:18663845,35247377:501378,78643,0 +(186,168:18827699,35247377:173670,78643,0 ) ) -(186,153:30696917,26919041:501378,78643,0 -(186,153:30860771,26919041:173670,78643,0 +(186,168:19165223,35247377:501378,78643,0 +(186,168:19329077,35247377:173670,78643,0 ) ) -(186,153:31239539,26919041:1343490,485622,0 -k186,153:31239539,26919041:0 -k186,153:31387652,26919041:148113 +(186,168:19666601,35247377:501378,78643,0 +(186,168:19830455,35247377:173670,78643,0 ) -g186,153:30911859,26919041 -g186,153:32583029,26919041 ) -(186,154:6630773,27760529:25952256,513147,126483 -g186,154:9448823,27760529 -h186,154:9448823,27760529:983040,0,0 -h186,154:10431863,27760529:0,0,0 -g186,154:7613813,27760529 -(186,154:7613813,27760529:1835010,485622,11795 -k186,154:9448823,27760529:864422 +(186,168:20167979,35247377:501378,78643,0 +(186,168:20331833,35247377:173670,78643,0 ) -g186,154:10844739,27760529 -g186,154:14971541,27760529 -g186,154:15830062,27760529 -g186,154:16385151,27760529 -g186,154:17861677,27760529 -g186,154:17861677,27760529 -(186,154:18162467,27760529:501378,78643,0 -$186,154:18162467,27760529 -(186,154:18326321,27760529:173670,78643,0 ) -$186,154:18663845,27760529 +(186,168:20669357,35247377:501378,78643,0 +(186,168:20833211,35247377:173670,78643,0 ) -(186,154:18663845,27760529:501378,78643,0 -(186,154:18827699,27760529:173670,78643,0 ) +(186,168:21170735,35247377:501378,78643,0 +(186,168:21334589,35247377:173670,78643,0 ) -(186,154:19165223,27760529:501378,78643,0 -(186,154:19329077,27760529:173670,78643,0 ) +(186,168:21672113,35247377:501378,78643,0 +(186,168:21835967,35247377:173670,78643,0 ) -(186,154:19666601,27760529:501378,78643,0 -(186,154:19830455,27760529:173670,78643,0 ) +(186,168:22173491,35247377:501378,78643,0 +(186,168:22337345,35247377:173670,78643,0 ) -(186,154:20167979,27760529:501378,78643,0 -(186,154:20331833,27760529:173670,78643,0 ) +(186,168:22674869,35247377:501378,78643,0 +(186,168:22838723,35247377:173670,78643,0 ) -(186,154:20669357,27760529:501378,78643,0 -(186,154:20833211,27760529:173670,78643,0 ) +(186,168:23176247,35247377:501378,78643,0 +(186,168:23340101,35247377:173670,78643,0 ) -(186,154:21170735,27760529:501378,78643,0 -(186,154:21334589,27760529:173670,78643,0 ) +(186,168:23677625,35247377:501378,78643,0 +(186,168:23841479,35247377:173670,78643,0 ) -(186,154:21672113,27760529:501378,78643,0 -(186,154:21835967,27760529:173670,78643,0 ) +(186,168:24179003,35247377:501378,78643,0 +(186,168:24342857,35247377:173670,78643,0 ) -(186,154:22173491,27760529:501378,78643,0 -(186,154:22337345,27760529:173670,78643,0 ) +(186,168:24680381,35247377:501378,78643,0 +(186,168:24844235,35247377:173670,78643,0 ) -(186,154:22674869,27760529:501378,78643,0 -(186,154:22838723,27760529:173670,78643,0 ) +(186,168:25181759,35247377:501378,78643,0 +(186,168:25345613,35247377:173670,78643,0 ) -(186,154:23176247,27760529:501378,78643,0 -(186,154:23340101,27760529:173670,78643,0 ) +(186,168:25683137,35247377:501378,78643,0 +(186,168:25846991,35247377:173670,78643,0 ) -(186,154:23677625,27760529:501378,78643,0 -(186,154:23841479,27760529:173670,78643,0 ) +(186,168:26184515,35247377:501378,78643,0 +(186,168:26348369,35247377:173670,78643,0 ) -(186,154:24179003,27760529:501378,78643,0 -(186,154:24342857,27760529:173670,78643,0 ) +(186,168:26685893,35247377:501378,78643,0 +(186,168:26849747,35247377:173670,78643,0 ) -(186,154:24680381,27760529:501378,78643,0 -(186,154:24844235,27760529:173670,78643,0 ) +(186,168:27187271,35247377:501378,78643,0 +(186,168:27351125,35247377:173670,78643,0 ) -(186,154:25181759,27760529:501378,78643,0 -(186,154:25345613,27760529:173670,78643,0 ) +(186,168:27688649,35247377:501378,78643,0 +(186,168:27852503,35247377:173670,78643,0 ) -(186,154:25683137,27760529:501378,78643,0 -(186,154:25846991,27760529:173670,78643,0 ) +(186,168:28190027,35247377:501378,78643,0 +(186,168:28353881,35247377:173670,78643,0 ) -(186,154:26184515,27760529:501378,78643,0 -(186,154:26348369,27760529:173670,78643,0 ) +(186,168:28691405,35247377:501378,78643,0 +(186,168:28855259,35247377:173670,78643,0 ) -(186,154:26685893,27760529:501378,78643,0 -(186,154:26849747,27760529:173670,78643,0 ) +(186,168:29192783,35247377:501378,78643,0 +(186,168:29356637,35247377:173670,78643,0 ) -(186,154:27187271,27760529:501378,78643,0 -(186,154:27351125,27760529:173670,78643,0 ) +(186,168:29694161,35247377:501378,78643,0 +(186,168:29858015,35247377:173670,78643,0 ) -(186,154:27688649,27760529:501378,78643,0 -(186,154:27852503,27760529:173670,78643,0 ) +(186,168:30195539,35247377:501378,78643,0 +(186,168:30359393,35247377:173670,78643,0 ) -(186,154:28190027,27760529:501378,78643,0 -(186,154:28353881,27760529:173670,78643,0 ) +(186,168:30696917,35247377:501378,78643,0 +(186,168:30860771,35247377:173670,78643,0 ) -(186,154:28691405,27760529:501378,78643,0 -(186,154:28855259,27760529:173670,78643,0 ) +(186,168:31239539,35247377:1343490,485622,0 +k186,168:31239539,35247377:0 +k186,168:31387652,35247377:148113 ) -(186,154:29192783,27760529:501378,78643,0 -(186,154:29356637,27760529:173670,78643,0 +g186,168:30911859,35247377 +g186,168:32583029,35247377 ) +(186,169:6630773,36112457:25952256,505283,134348 +g186,169:12529013,36112457 +h186,169:12529013,36112457:3080190,0,0 +h186,169:15609203,36112457:0,0,0 +g186,169:9710963,36112457 +(186,169:9710963,36112457:2818050,485622,11795 +k186,169:12529013,36112457:1275332 ) -(186,154:29694161,27760529:501378,78643,0 -(186,154:29858015,27760529:173670,78643,0 +g186,169:15809745,36112457 +g186,169:16625012,36112457 +g186,169:18412179,36112457 +(186,169:18663845,36112457:501378,78643,0 +$186,169:18663845,36112457 +(186,169:18827699,36112457:173670,78643,0 ) +$186,169:19165223,36112457 ) -(186,154:30195539,27760529:501378,78643,0 -(186,154:30359393,27760529:173670,78643,0 +(186,169:19165223,36112457:501378,78643,0 +(186,169:19329077,36112457:173670,78643,0 ) ) -(186,154:30696917,27760529:501378,78643,0 -(186,154:30860771,27760529:173670,78643,0 +(186,169:19666601,36112457:501378,78643,0 +(186,169:19830455,36112457:173670,78643,0 ) ) -(186,154:31239539,27760529:1343490,485622,0 -k186,154:31239539,27760529:0 -k186,154:31387652,27760529:148113 +(186,169:20167979,36112457:501378,78643,0 +(186,169:20331833,36112457:173670,78643,0 ) -g186,154:30911859,27760529 -g186,154:32583029,27760529 ) -(186,155:6630773,28602017:25952256,513147,134348 -g186,155:9448823,28602017 -h186,155:9448823,28602017:983040,0,0 -h186,155:10431863,28602017:0,0,0 -g186,155:7613813,28602017 -(186,155:7613813,28602017:1835010,485622,11795 -k186,155:9448823,28602017:864422 +(186,169:20669357,36112457:501378,78643,0 +(186,169:20833211,36112457:173670,78643,0 ) -g186,155:10844739,28602017 -g186,155:13946558,28602017 -g186,155:14805079,28602017 -g186,155:17723397,28602017 -g186,155:17723397,28602017 -(186,155:18162467,28602017:501378,78643,0 -$186,155:18162467,28602017 -(186,155:18326321,28602017:173670,78643,0 ) -$186,155:18663845,28602017 +(186,169:21170735,36112457:501378,78643,0 +(186,169:21334589,36112457:173670,78643,0 ) -(186,155:18663845,28602017:501378,78643,0 -(186,155:18827699,28602017:173670,78643,0 ) +(186,169:21672113,36112457:501378,78643,0 +(186,169:21835967,36112457:173670,78643,0 ) -(186,155:19165223,28602017:501378,78643,0 -(186,155:19329077,28602017:173670,78643,0 ) +(186,169:22173491,36112457:501378,78643,0 +(186,169:22337345,36112457:173670,78643,0 ) -(186,155:19666601,28602017:501378,78643,0 -(186,155:19830455,28602017:173670,78643,0 ) +(186,169:22674869,36112457:501378,78643,0 +(186,169:22838723,36112457:173670,78643,0 ) -(186,155:20167979,28602017:501378,78643,0 -(186,155:20331833,28602017:173670,78643,0 ) +(186,169:23176247,36112457:501378,78643,0 +(186,169:23340101,36112457:173670,78643,0 ) -(186,155:20669357,28602017:501378,78643,0 -(186,155:20833211,28602017:173670,78643,0 ) +(186,169:23677625,36112457:501378,78643,0 +(186,169:23841479,36112457:173670,78643,0 ) -(186,155:21170735,28602017:501378,78643,0 -(186,155:21334589,28602017:173670,78643,0 ) +(186,169:24179003,36112457:501378,78643,0 +(186,169:24342857,36112457:173670,78643,0 ) -(186,155:21672113,28602017:501378,78643,0 -(186,155:21835967,28602017:173670,78643,0 ) +(186,169:24680381,36112457:501378,78643,0 +(186,169:24844235,36112457:173670,78643,0 ) -(186,155:22173491,28602017:501378,78643,0 -(186,155:22337345,28602017:173670,78643,0 ) +(186,169:25181759,36112457:501378,78643,0 +(186,169:25345613,36112457:173670,78643,0 ) -(186,155:22674869,28602017:501378,78643,0 -(186,155:22838723,28602017:173670,78643,0 ) +(186,169:25683137,36112457:501378,78643,0 +(186,169:25846991,36112457:173670,78643,0 ) -(186,155:23176247,28602017:501378,78643,0 -(186,155:23340101,28602017:173670,78643,0 ) +(186,169:26184515,36112457:501378,78643,0 +(186,169:26348369,36112457:173670,78643,0 ) -(186,155:23677625,28602017:501378,78643,0 -(186,155:23841479,28602017:173670,78643,0 ) +(186,169:26685893,36112457:501378,78643,0 +(186,169:26849747,36112457:173670,78643,0 ) -(186,155:24179003,28602017:501378,78643,0 -(186,155:24342857,28602017:173670,78643,0 ) +(186,169:27187271,36112457:501378,78643,0 +(186,169:27351125,36112457:173670,78643,0 ) -(186,155:24680381,28602017:501378,78643,0 -(186,155:24844235,28602017:173670,78643,0 ) +(186,169:27688649,36112457:501378,78643,0 +(186,169:27852503,36112457:173670,78643,0 ) -(186,155:25181759,28602017:501378,78643,0 -(186,155:25345613,28602017:173670,78643,0 ) +(186,169:28190027,36112457:501378,78643,0 +(186,169:28353881,36112457:173670,78643,0 ) -(186,155:25683137,28602017:501378,78643,0 -(186,155:25846991,28602017:173670,78643,0 ) +(186,169:28691405,36112457:501378,78643,0 +(186,169:28855259,36112457:173670,78643,0 ) -(186,155:26184515,28602017:501378,78643,0 -(186,155:26348369,28602017:173670,78643,0 ) +(186,169:29192783,36112457:501378,78643,0 +(186,169:29356637,36112457:173670,78643,0 ) -(186,155:26685893,28602017:501378,78643,0 -(186,155:26849747,28602017:173670,78643,0 ) +(186,169:29694161,36112457:501378,78643,0 +(186,169:29858015,36112457:173670,78643,0 ) -(186,155:27187271,28602017:501378,78643,0 -(186,155:27351125,28602017:173670,78643,0 ) +(186,169:30195539,36112457:501378,78643,0 +(186,169:30359393,36112457:173670,78643,0 ) -(186,155:27688649,28602017:501378,78643,0 -(186,155:27852503,28602017:173670,78643,0 ) +(186,169:30696917,36112457:501378,78643,0 +(186,169:30860771,36112457:173670,78643,0 ) -(186,155:28190027,28602017:501378,78643,0 -(186,155:28353881,28602017:173670,78643,0 ) +(186,169:31239539,36112457:1343490,485622,11795 +k186,169:31239539,36112457:0 +k186,169:31387652,36112457:148113 ) -(186,155:28691405,28602017:501378,78643,0 -(186,155:28855259,28602017:173670,78643,0 +g186,169:30911859,36112457 +g186,169:32583029,36112457 ) +(186,170:6630773,36977537:25952256,485622,11795 +g186,170:9710963,36977537 +h186,170:9710963,36977537:983040,0,0 +h186,170:10694003,36977537:0,0,0 +g186,170:7613813,36977537 +(186,170:7613813,36977537:2097150,485622,11795 +k186,170:9710963,36977537:1126562 ) -(186,155:29192783,28602017:501378,78643,0 -(186,155:29356637,28602017:173670,78643,0 +g186,170:13523192,36977537 +g186,170:13523192,36977537 +(186,170:13650065,36977537:501378,78643,0 +$186,170:13650065,36977537 +(186,170:13813919,36977537:173670,78643,0 ) +$186,170:14151443,36977537 ) -(186,155:29694161,28602017:501378,78643,0 -(186,155:29858015,28602017:173670,78643,0 +(186,170:14151443,36977537:501378,78643,0 +(186,170:14315297,36977537:173670,78643,0 ) ) -(186,155:30195539,28602017:501378,78643,0 -(186,155:30359393,28602017:173670,78643,0 +(186,170:14652821,36977537:501378,78643,0 +(186,170:14816675,36977537:173670,78643,0 ) ) -(186,155:30696917,28602017:501378,78643,0 -(186,155:30860771,28602017:173670,78643,0 +(186,170:15154199,36977537:501378,78643,0 +(186,170:15318053,36977537:173670,78643,0 ) ) -(186,155:31239539,28602017:1343490,485622,11795 -k186,155:31239539,28602017:0 -k186,155:31387652,28602017:148113 +(186,170:15655577,36977537:501378,78643,0 +(186,170:15819431,36977537:173670,78643,0 ) -g186,155:30911859,28602017 -g186,155:32583029,28602017 ) -(186,156:6630773,29443505:25952256,513147,134348 -g186,156:11873653,29443505 -h186,156:11873653,29443505:2818050,0,0 -h186,156:14691703,29443505:0,0,0 -g186,156:9448823,29443505 -(186,156:9448823,29443505:2424830,485622,11795 -k186,156:11873653,29443505:882112 +(186,170:16156955,36977537:501378,78643,0 +(186,170:16320809,36977537:173670,78643,0 ) -g186,156:13269569,29443505 -g186,156:15423737,29443505 -g186,156:16282258,29443505 -g186,156:17500572,29443505 -g186,156:20403162,29443505 -(186,156:20669357,29443505:501378,78643,0 -$186,156:20669357,29443505 -(186,156:20833211,29443505:173670,78643,0 ) -$186,156:21170735,29443505 +(186,170:16658333,36977537:501378,78643,0 +(186,170:16822187,36977537:173670,78643,0 ) -(186,156:21170735,29443505:501378,78643,0 -(186,156:21334589,29443505:173670,78643,0 ) +(186,170:17159711,36977537:501378,78643,0 +(186,170:17323565,36977537:173670,78643,0 ) -(186,156:21672113,29443505:501378,78643,0 -(186,156:21835967,29443505:173670,78643,0 ) +(186,170:17661089,36977537:501378,78643,0 +(186,170:17824943,36977537:173670,78643,0 ) -(186,156:22173491,29443505:501378,78643,0 -(186,156:22337345,29443505:173670,78643,0 ) +(186,170:18162467,36977537:501378,78643,0 +(186,170:18326321,36977537:173670,78643,0 ) -(186,156:22674869,29443505:501378,78643,0 -(186,156:22838723,29443505:173670,78643,0 ) +(186,170:18663845,36977537:501378,78643,0 +(186,170:18827699,36977537:173670,78643,0 ) -(186,156:23176247,29443505:501378,78643,0 -(186,156:23340101,29443505:173670,78643,0 ) +(186,170:19165223,36977537:501378,78643,0 +(186,170:19329077,36977537:173670,78643,0 ) -(186,156:23677625,29443505:501378,78643,0 -(186,156:23841479,29443505:173670,78643,0 ) +(186,170:19666601,36977537:501378,78643,0 +(186,170:19830455,36977537:173670,78643,0 ) -(186,156:24179003,29443505:501378,78643,0 -(186,156:24342857,29443505:173670,78643,0 ) +(186,170:20167979,36977537:501378,78643,0 +(186,170:20331833,36977537:173670,78643,0 ) -(186,156:24680381,29443505:501378,78643,0 -(186,156:24844235,29443505:173670,78643,0 ) +(186,170:20669357,36977537:501378,78643,0 +(186,170:20833211,36977537:173670,78643,0 ) -(186,156:25181759,29443505:501378,78643,0 -(186,156:25345613,29443505:173670,78643,0 ) +(186,170:21170735,36977537:501378,78643,0 +(186,170:21334589,36977537:173670,78643,0 ) -(186,156:25683137,29443505:501378,78643,0 -(186,156:25846991,29443505:173670,78643,0 ) +(186,170:21672113,36977537:501378,78643,0 +(186,170:21835967,36977537:173670,78643,0 ) -(186,156:26184515,29443505:501378,78643,0 -(186,156:26348369,29443505:173670,78643,0 ) +(186,170:22173491,36977537:501378,78643,0 +(186,170:22337345,36977537:173670,78643,0 ) -(186,156:26685893,29443505:501378,78643,0 -(186,156:26849747,29443505:173670,78643,0 ) +(186,170:22674869,36977537:501378,78643,0 +(186,170:22838723,36977537:173670,78643,0 ) -(186,156:27187271,29443505:501378,78643,0 -(186,156:27351125,29443505:173670,78643,0 ) +(186,170:23176247,36977537:501378,78643,0 +(186,170:23340101,36977537:173670,78643,0 ) -(186,156:27688649,29443505:501378,78643,0 -(186,156:27852503,29443505:173670,78643,0 ) +(186,170:23677625,36977537:501378,78643,0 +(186,170:23841479,36977537:173670,78643,0 ) -(186,156:28190027,29443505:501378,78643,0 -(186,156:28353881,29443505:173670,78643,0 ) +(186,170:24179003,36977537:501378,78643,0 +(186,170:24342857,36977537:173670,78643,0 ) -(186,156:28691405,29443505:501378,78643,0 -(186,156:28855259,29443505:173670,78643,0 ) +(186,170:24680381,36977537:501378,78643,0 +(186,170:24844235,36977537:173670,78643,0 ) -(186,156:29192783,29443505:501378,78643,0 -(186,156:29356637,29443505:173670,78643,0 ) +(186,170:25181759,36977537:501378,78643,0 +(186,170:25345613,36977537:173670,78643,0 ) -(186,156:29694161,29443505:501378,78643,0 -(186,156:29858015,29443505:173670,78643,0 ) +(186,170:25683137,36977537:501378,78643,0 +(186,170:25846991,36977537:173670,78643,0 ) -(186,156:30195539,29443505:501378,78643,0 -(186,156:30359393,29443505:173670,78643,0 ) +(186,170:26184515,36977537:501378,78643,0 +(186,170:26348369,36977537:173670,78643,0 ) -(186,156:30696917,29443505:501378,78643,0 -(186,156:30860771,29443505:173670,78643,0 ) +(186,170:26685893,36977537:501378,78643,0 +(186,170:26849747,36977537:173670,78643,0 ) -(186,156:31239539,29443505:1343490,485622,0 -k186,156:31239539,29443505:0 -k186,156:31387652,29443505:148113 ) -g186,156:30911859,29443505 -g186,156:32583029,29443505 +(186,170:27187271,36977537:501378,78643,0 +(186,170:27351125,36977537:173670,78643,0 ) -(186,166:6630773,30284993:25952256,513147,134348 -g186,166:11873653,30284993 -h186,166:11873653,30284993:2818050,0,0 -h186,166:14691703,30284993:0,0,0 -g186,166:9448823,30284993 -(186,166:9448823,30284993:2424830,485622,11795 -k186,166:11873653,30284993:882112 ) -g186,166:13269569,30284993 -g186,166:16385805,30284993 -g186,166:17244326,30284993 -g186,166:18462640,30284993 -g186,166:21365230,30284993 -(186,166:21672113,30284993:501378,78643,0 -$186,166:21672113,30284993 -(186,166:21835967,30284993:173670,78643,0 +(186,170:27688649,36977537:501378,78643,0 +(186,170:27852503,36977537:173670,78643,0 ) -$186,166:22173491,30284993 ) -(186,166:22173491,30284993:501378,78643,0 -(186,166:22337345,30284993:173670,78643,0 +(186,170:28190027,36977537:501378,78643,0 +(186,170:28353881,36977537:173670,78643,0 ) ) -(186,166:22674869,30284993:501378,78643,0 -(186,166:22838723,30284993:173670,78643,0 +(186,170:28691405,36977537:501378,78643,0 +(186,170:28855259,36977537:173670,78643,0 ) ) -(186,166:23176247,30284993:501378,78643,0 -(186,166:23340101,30284993:173670,78643,0 +(186,170:29192783,36977537:501378,78643,0 +(186,170:29356637,36977537:173670,78643,0 ) ) -(186,166:23677625,30284993:501378,78643,0 -(186,166:23841479,30284993:173670,78643,0 +(186,170:29694161,36977537:501378,78643,0 +(186,170:29858015,36977537:173670,78643,0 ) ) -(186,166:24179003,30284993:501378,78643,0 -(186,166:24342857,30284993:173670,78643,0 +(186,170:30195539,36977537:501378,78643,0 +(186,170:30359393,36977537:173670,78643,0 ) ) -(186,166:24680381,30284993:501378,78643,0 -(186,166:24844235,30284993:173670,78643,0 +(186,170:30696917,36977537:501378,78643,0 +(186,170:30860771,36977537:173670,78643,0 ) ) -(186,166:25181759,30284993:501378,78643,0 -(186,166:25345613,30284993:173670,78643,0 +(186,170:31239540,36977537:1343490,485622,0 +k186,170:31239540,36977537:0 +k186,170:31387653,36977537:148113 ) +g186,170:30911860,36977537 +g186,170:32583030,36977537 ) -(186,166:25683137,30284993:501378,78643,0 -(186,166:25846991,30284993:173670,78643,0 +(186,171:6630773,37842617:25952256,485622,11795 +g186,171:12529013,37842617 +h186,171:12529013,37842617:3080190,0,0 +h186,171:15609203,37842617:0,0,0 +g186,171:9710963,37842617 +(186,171:9710963,37842617:2818050,485622,11795 +k186,171:12529013,37842617:1275332 ) +g186,171:14172001,37842617 +(186,171:14652821,37842617:501378,78643,0 +$186,171:14652821,37842617 +(186,171:14816675,37842617:173670,78643,0 ) -(186,166:26184515,30284993:501378,78643,0 -(186,166:26348369,30284993:173670,78643,0 +$186,171:15154199,37842617 ) +(186,171:15154199,37842617:501378,78643,0 +(186,171:15318053,37842617:173670,78643,0 ) -(186,166:26685893,30284993:501378,78643,0 -(186,166:26849747,30284993:173670,78643,0 ) +(186,171:15655577,37842617:501378,78643,0 +(186,171:15819431,37842617:173670,78643,0 ) -(186,166:27187271,30284993:501378,78643,0 -(186,166:27351125,30284993:173670,78643,0 ) +(186,171:16156955,37842617:501378,78643,0 +(186,171:16320809,37842617:173670,78643,0 ) -(186,166:27688649,30284993:501378,78643,0 -(186,166:27852503,30284993:173670,78643,0 ) +(186,171:16658333,37842617:501378,78643,0 +(186,171:16822187,37842617:173670,78643,0 ) -(186,166:28190027,30284993:501378,78643,0 -(186,166:28353881,30284993:173670,78643,0 ) +(186,171:17159711,37842617:501378,78643,0 +(186,171:17323565,37842617:173670,78643,0 ) -(186,166:28691405,30284993:501378,78643,0 -(186,166:28855259,30284993:173670,78643,0 ) +(186,171:17661089,37842617:501378,78643,0 +(186,171:17824943,37842617:173670,78643,0 ) -(186,166:29192783,30284993:501378,78643,0 -(186,166:29356637,30284993:173670,78643,0 ) +(186,171:18162467,37842617:501378,78643,0 +(186,171:18326321,37842617:173670,78643,0 ) -(186,166:29694161,30284993:501378,78643,0 -(186,166:29858015,30284993:173670,78643,0 ) +(186,171:18663845,37842617:501378,78643,0 +(186,171:18827699,37842617:173670,78643,0 ) -(186,166:30195539,30284993:501378,78643,0 -(186,166:30359393,30284993:173670,78643,0 ) +(186,171:19165223,37842617:501378,78643,0 +(186,171:19329077,37842617:173670,78643,0 ) -(186,166:30696917,30284993:501378,78643,0 -(186,166:30860771,30284993:173670,78643,0 ) +(186,171:19666601,37842617:501378,78643,0 +(186,171:19830455,37842617:173670,78643,0 ) -(186,166:31239539,30284993:1343490,485622,11795 -k186,166:31239539,30284993:0 -k186,166:31387652,30284993:148113 ) -g186,166:30911859,30284993 -g186,166:32583029,30284993 +(186,171:20167979,37842617:501378,78643,0 +(186,171:20331833,37842617:173670,78643,0 ) -(186,167:6630773,31126481:25952256,505283,11795 -g186,167:11873653,31126481 -h186,167:11873653,31126481:2818050,0,0 -h186,167:14691703,31126481:0,0,0 -g186,167:9448823,31126481 -(186,167:9448823,31126481:2424830,485622,11795 -k186,167:11873653,31126481:882112 ) -g186,167:13304959,31126481 -g186,167:17339355,31126481 -(186,167:17661089,31126481:501378,78643,0 -$186,167:17661089,31126481 -(186,167:17824943,31126481:173670,78643,0 +(186,171:20669357,37842617:501378,78643,0 +(186,171:20833211,37842617:173670,78643,0 ) -$186,167:18162467,31126481 ) -(186,167:18162467,31126481:501378,78643,0 -(186,167:18326321,31126481:173670,78643,0 +(186,171:21170735,37842617:501378,78643,0 +(186,171:21334589,37842617:173670,78643,0 ) ) -(186,167:18663845,31126481:501378,78643,0 -(186,167:18827699,31126481:173670,78643,0 +(186,171:21672113,37842617:501378,78643,0 +(186,171:21835967,37842617:173670,78643,0 ) ) -(186,167:19165223,31126481:501378,78643,0 -(186,167:19329077,31126481:173670,78643,0 +(186,171:22173491,37842617:501378,78643,0 +(186,171:22337345,37842617:173670,78643,0 ) ) -(186,167:19666601,31126481:501378,78643,0 -(186,167:19830455,31126481:173670,78643,0 +(186,171:22674869,37842617:501378,78643,0 +(186,171:22838723,37842617:173670,78643,0 ) ) -(186,167:20167979,31126481:501378,78643,0 -(186,167:20331833,31126481:173670,78643,0 +(186,171:23176247,37842617:501378,78643,0 +(186,171:23340101,37842617:173670,78643,0 ) ) -(186,167:20669357,31126481:501378,78643,0 -(186,167:20833211,31126481:173670,78643,0 +(186,171:23677625,37842617:501378,78643,0 +(186,171:23841479,37842617:173670,78643,0 ) ) -(186,167:21170735,31126481:501378,78643,0 -(186,167:21334589,31126481:173670,78643,0 +(186,171:24179003,37842617:501378,78643,0 +(186,171:24342857,37842617:173670,78643,0 ) ) -(186,167:21672113,31126481:501378,78643,0 -(186,167:21835967,31126481:173670,78643,0 +(186,171:24680381,37842617:501378,78643,0 +(186,171:24844235,37842617:173670,78643,0 ) ) -(186,167:22173491,31126481:501378,78643,0 -(186,167:22337345,31126481:173670,78643,0 +(186,171:25181759,37842617:501378,78643,0 +(186,171:25345613,37842617:173670,78643,0 ) ) -(186,167:22674869,31126481:501378,78643,0 -(186,167:22838723,31126481:173670,78643,0 +(186,171:25683137,37842617:501378,78643,0 +(186,171:25846991,37842617:173670,78643,0 ) ) -(186,167:23176247,31126481:501378,78643,0 -(186,167:23340101,31126481:173670,78643,0 +(186,171:26184515,37842617:501378,78643,0 +(186,171:26348369,37842617:173670,78643,0 ) ) -(186,167:23677625,31126481:501378,78643,0 -(186,167:23841479,31126481:173670,78643,0 +(186,171:26685893,37842617:501378,78643,0 +(186,171:26849747,37842617:173670,78643,0 ) ) -(186,167:24179003,31126481:501378,78643,0 -(186,167:24342857,31126481:173670,78643,0 +(186,171:27187271,37842617:501378,78643,0 +(186,171:27351125,37842617:173670,78643,0 ) ) -(186,167:24680381,31126481:501378,78643,0 -(186,167:24844235,31126481:173670,78643,0 +(186,171:27688649,37842617:501378,78643,0 +(186,171:27852503,37842617:173670,78643,0 ) ) -(186,167:25181759,31126481:501378,78643,0 -(186,167:25345613,31126481:173670,78643,0 +(186,171:28190027,37842617:501378,78643,0 +(186,171:28353881,37842617:173670,78643,0 ) ) -(186,167:25683137,31126481:501378,78643,0 -(186,167:25846991,31126481:173670,78643,0 +(186,171:28691405,37842617:501378,78643,0 +(186,171:28855259,37842617:173670,78643,0 ) ) -(186,167:26184515,31126481:501378,78643,0 -(186,167:26348369,31126481:173670,78643,0 +(186,171:29192783,37842617:501378,78643,0 +(186,171:29356637,37842617:173670,78643,0 ) ) -(186,167:26685893,31126481:501378,78643,0 -(186,167:26849747,31126481:173670,78643,0 +(186,171:29694161,37842617:501378,78643,0 +(186,171:29858015,37842617:173670,78643,0 ) ) -(186,167:27187271,31126481:501378,78643,0 -(186,167:27351125,31126481:173670,78643,0 +(186,171:30195539,37842617:501378,78643,0 +(186,171:30359393,37842617:173670,78643,0 ) ) -(186,167:27688649,31126481:501378,78643,0 -(186,167:27852503,31126481:173670,78643,0 +(186,171:30696917,37842617:501378,78643,0 +(186,171:30860771,37842617:173670,78643,0 ) ) -(186,167:28190027,31126481:501378,78643,0 -(186,167:28353881,31126481:173670,78643,0 +(186,171:31239539,37842617:1343490,485622,0 +k186,171:31239539,37842617:0 +k186,171:31387652,37842617:148113 ) +g186,171:30911859,37842617 +g186,171:32583029,37842617 ) -(186,167:28691405,31126481:501378,78643,0 -(186,167:28855259,31126481:173670,78643,0 +(186,172:6630773,38707697:25952256,485622,134348 +g186,172:12529013,38707697 +h186,172:12529013,38707697:3080190,0,0 +h186,172:15609203,38707697:0,0,0 +g186,172:9710963,38707697 +(186,172:9710963,38707697:2818050,485622,11795 +k186,172:12529013,38707697:1275332 ) +g186,172:13763056,38707697 +(186,172:14151443,38707697:501378,78643,0 +$186,172:14151443,38707697 +(186,172:14315297,38707697:173670,78643,0 ) -(186,167:29192783,31126481:501378,78643,0 -(186,167:29356637,31126481:173670,78643,0 +$186,172:14652821,38707697 ) +(186,172:14652821,38707697:501378,78643,0 +(186,172:14816675,38707697:173670,78643,0 ) -(186,167:29694161,31126481:501378,78643,0 -(186,167:29858015,31126481:173670,78643,0 ) +(186,172:15154199,38707697:501378,78643,0 +(186,172:15318053,38707697:173670,78643,0 ) -(186,167:30195539,31126481:501378,78643,0 -(186,167:30359393,31126481:173670,78643,0 ) +(186,172:15655577,38707697:501378,78643,0 +(186,172:15819431,38707697:173670,78643,0 ) -(186,167:30696917,31126481:501378,78643,0 -(186,167:30860771,31126481:173670,78643,0 ) +(186,172:16156955,38707697:501378,78643,0 +(186,172:16320809,38707697:173670,78643,0 ) -(186,167:31239539,31126481:1343490,485622,11795 -k186,167:31239539,31126481:0 -k186,167:31387652,31126481:148113 ) -g186,167:30911859,31126481 -g186,167:32583029,31126481 +(186,172:16658333,38707697:501378,78643,0 +(186,172:16822187,38707697:173670,78643,0 ) -(186,168:6630773,31967969:25952256,505283,134348 -g186,168:11873653,31967969 -h186,168:11873653,31967969:2818050,0,0 -h186,168:14691703,31967969:0,0,0 -g186,168:9448823,31967969 -(186,168:9448823,31967969:2424830,485622,11795 -k186,168:11873653,31967969:882112 ) -g186,168:13635260,31967969 -g186,168:14520651,31967969 -g186,168:15134723,31967969 -g186,168:17424551,31967969 -(186,168:17661089,31967969:501378,78643,0 -$186,168:17661089,31967969 -(186,168:17824943,31967969:173670,78643,0 +(186,172:17159711,38707697:501378,78643,0 +(186,172:17323565,38707697:173670,78643,0 ) -$186,168:18162467,31967969 ) -(186,168:18162467,31967969:501378,78643,0 -(186,168:18326321,31967969:173670,78643,0 +(186,172:17661089,38707697:501378,78643,0 +(186,172:17824943,38707697:173670,78643,0 ) ) -(186,168:18663845,31967969:501378,78643,0 -(186,168:18827699,31967969:173670,78643,0 +(186,172:18162467,38707697:501378,78643,0 +(186,172:18326321,38707697:173670,78643,0 ) ) -(186,168:19165223,31967969:501378,78643,0 -(186,168:19329077,31967969:173670,78643,0 +(186,172:18663845,38707697:501378,78643,0 +(186,172:18827699,38707697:173670,78643,0 ) ) -(186,168:19666601,31967969:501378,78643,0 -(186,168:19830455,31967969:173670,78643,0 +(186,172:19165223,38707697:501378,78643,0 +(186,172:19329077,38707697:173670,78643,0 ) ) -(186,168:20167979,31967969:501378,78643,0 -(186,168:20331833,31967969:173670,78643,0 +(186,172:19666601,38707697:501378,78643,0 +(186,172:19830455,38707697:173670,78643,0 ) ) -(186,168:20669357,31967969:501378,78643,0 -(186,168:20833211,31967969:173670,78643,0 +(186,172:20167979,38707697:501378,78643,0 +(186,172:20331833,38707697:173670,78643,0 ) ) -(186,168:21170735,31967969:501378,78643,0 -(186,168:21334589,31967969:173670,78643,0 +(186,172:20669357,38707697:501378,78643,0 +(186,172:20833211,38707697:173670,78643,0 ) ) -(186,168:21672113,31967969:501378,78643,0 -(186,168:21835967,31967969:173670,78643,0 +(186,172:21170735,38707697:501378,78643,0 +(186,172:21334589,38707697:173670,78643,0 ) ) -(186,168:22173491,31967969:501378,78643,0 -(186,168:22337345,31967969:173670,78643,0 +(186,172:21672113,38707697:501378,78643,0 +(186,172:21835967,38707697:173670,78643,0 ) ) -(186,168:22674869,31967969:501378,78643,0 -(186,168:22838723,31967969:173670,78643,0 +(186,172:22173491,38707697:501378,78643,0 +(186,172:22337345,38707697:173670,78643,0 ) ) -(186,168:23176247,31967969:501378,78643,0 -(186,168:23340101,31967969:173670,78643,0 +(186,172:22674869,38707697:501378,78643,0 +(186,172:22838723,38707697:173670,78643,0 ) ) -(186,168:23677625,31967969:501378,78643,0 -(186,168:23841479,31967969:173670,78643,0 +(186,172:23176247,38707697:501378,78643,0 +(186,172:23340101,38707697:173670,78643,0 ) ) -(186,168:24179003,31967969:501378,78643,0 -(186,168:24342857,31967969:173670,78643,0 +(186,172:23677625,38707697:501378,78643,0 +(186,172:23841479,38707697:173670,78643,0 ) ) -(186,168:24680381,31967969:501378,78643,0 -(186,168:24844235,31967969:173670,78643,0 +(186,172:24179003,38707697:501378,78643,0 +(186,172:24342857,38707697:173670,78643,0 ) ) -(186,168:25181759,31967969:501378,78643,0 -(186,168:25345613,31967969:173670,78643,0 +(186,172:24680381,38707697:501378,78643,0 +(186,172:24844235,38707697:173670,78643,0 ) ) -(186,168:25683137,31967969:501378,78643,0 -(186,168:25846991,31967969:173670,78643,0 +(186,172:25181759,38707697:501378,78643,0 +(186,172:25345613,38707697:173670,78643,0 ) ) -(186,168:26184515,31967969:501378,78643,0 -(186,168:26348369,31967969:173670,78643,0 +(186,172:25683137,38707697:501378,78643,0 +(186,172:25846991,38707697:173670,78643,0 ) ) -(186,168:26685893,31967969:501378,78643,0 -(186,168:26849747,31967969:173670,78643,0 +(186,172:26184515,38707697:501378,78643,0 +(186,172:26348369,38707697:173670,78643,0 ) ) -(186,168:27187271,31967969:501378,78643,0 -(186,168:27351125,31967969:173670,78643,0 +(186,172:26685893,38707697:501378,78643,0 +(186,172:26849747,38707697:173670,78643,0 ) ) -(186,168:27688649,31967969:501378,78643,0 -(186,168:27852503,31967969:173670,78643,0 +(186,172:27187271,38707697:501378,78643,0 +(186,172:27351125,38707697:173670,78643,0 ) ) -(186,168:28190027,31967969:501378,78643,0 -(186,168:28353881,31967969:173670,78643,0 +(186,172:27688649,38707697:501378,78643,0 +(186,172:27852503,38707697:173670,78643,0 ) ) -(186,168:28691405,31967969:501378,78643,0 -(186,168:28855259,31967969:173670,78643,0 +(186,172:28190027,38707697:501378,78643,0 +(186,172:28353881,38707697:173670,78643,0 ) ) -(186,168:29192783,31967969:501378,78643,0 -(186,168:29356637,31967969:173670,78643,0 +(186,172:28691405,38707697:501378,78643,0 +(186,172:28855259,38707697:173670,78643,0 ) ) -(186,168:29694161,31967969:501378,78643,0 -(186,168:29858015,31967969:173670,78643,0 +(186,172:29192783,38707697:501378,78643,0 +(186,172:29356637,38707697:173670,78643,0 ) ) -(186,168:30195539,31967969:501378,78643,0 -(186,168:30359393,31967969:173670,78643,0 +(186,172:29694161,38707697:501378,78643,0 +(186,172:29858015,38707697:173670,78643,0 ) ) -(186,168:30696917,31967969:501378,78643,0 -(186,168:30860771,31967969:173670,78643,0 +(186,172:30195539,38707697:501378,78643,0 +(186,172:30359393,38707697:173670,78643,0 ) ) -(186,168:31239539,31967969:1343490,485622,11795 -k186,168:31239539,31967969:0 -k186,168:31387652,31967969:148113 +(186,172:30696917,38707697:501378,78643,0 +(186,172:30860771,38707697:173670,78643,0 ) -g186,168:30911859,31967969 -g186,168:32583029,31967969 ) -(186,169:6630773,32809457:25952256,505283,134348 -g186,169:11873653,32809457 -h186,169:11873653,32809457:2818050,0,0 -h186,169:14691703,32809457:0,0,0 -g186,169:9448823,32809457 -(186,169:9448823,32809457:2424830,485622,11795 -k186,169:11873653,32809457:882112 +(186,172:31239540,38707697:1343490,485622,11795 +k186,172:31239540,38707697:0 +k186,172:31387653,38707697:148113 ) -g186,169:15154385,32809457 -g186,169:15969652,32809457 -g186,169:17756819,32809457 -(186,169:18162467,32809457:501378,78643,0 -$186,169:18162467,32809457 -(186,169:18326321,32809457:173670,78643,0 +g186,172:30911860,38707697 +g186,172:32583030,38707697 ) -$186,169:18663845,32809457 +(186,173:6630773,39572777:25952256,505283,11795 +g186,173:12529013,39572777 +h186,173:12529013,39572777:3080190,0,0 +h186,173:15609203,39572777:0,0,0 +g186,173:9710963,39572777 +(186,173:9710963,39572777:2818050,485622,11795 +k186,173:12529013,39572777:1275332 ) -(186,169:18663845,32809457:501378,78643,0 -(186,169:18827699,32809457:173670,78643,0 +g186,173:14056657,39572777 +g186,173:15447331,39572777 +g186,173:16794751,39572777 +(186,173:17159711,39572777:501378,78643,0 +$186,173:17159711,39572777 +(186,173:17323565,39572777:173670,78643,0 ) +$186,173:17661089,39572777 ) -(186,169:19165223,32809457:501378,78643,0 -(186,169:19329077,32809457:173670,78643,0 +(186,173:17661089,39572777:501378,78643,0 +(186,173:17824943,39572777:173670,78643,0 ) ) -(186,169:19666601,32809457:501378,78643,0 -(186,169:19830455,32809457:173670,78643,0 +(186,173:18162467,39572777:501378,78643,0 +(186,173:18326321,39572777:173670,78643,0 ) ) -(186,169:20167979,32809457:501378,78643,0 -(186,169:20331833,32809457:173670,78643,0 +(186,173:18663845,39572777:501378,78643,0 +(186,173:18827699,39572777:173670,78643,0 ) ) -(186,169:20669357,32809457:501378,78643,0 -(186,169:20833211,32809457:173670,78643,0 +(186,173:19165223,39572777:501378,78643,0 +(186,173:19329077,39572777:173670,78643,0 ) ) -(186,169:21170735,32809457:501378,78643,0 -(186,169:21334589,32809457:173670,78643,0 +(186,173:19666601,39572777:501378,78643,0 +(186,173:19830455,39572777:173670,78643,0 ) ) -(186,169:21672113,32809457:501378,78643,0 -(186,169:21835967,32809457:173670,78643,0 +(186,173:20167979,39572777:501378,78643,0 +(186,173:20331833,39572777:173670,78643,0 ) ) -(186,169:22173491,32809457:501378,78643,0 -(186,169:22337345,32809457:173670,78643,0 +(186,173:20669357,39572777:501378,78643,0 +(186,173:20833211,39572777:173670,78643,0 ) ) -(186,169:22674869,32809457:501378,78643,0 -(186,169:22838723,32809457:173670,78643,0 +(186,173:21170735,39572777:501378,78643,0 +(186,173:21334589,39572777:173670,78643,0 ) ) -(186,169:23176247,32809457:501378,78643,0 -(186,169:23340101,32809457:173670,78643,0 +(186,173:21672113,39572777:501378,78643,0 +(186,173:21835967,39572777:173670,78643,0 ) ) -(186,169:23677625,32809457:501378,78643,0 -(186,169:23841479,32809457:173670,78643,0 +(186,173:22173491,39572777:501378,78643,0 +(186,173:22337345,39572777:173670,78643,0 ) ) -(186,169:24179003,32809457:501378,78643,0 -(186,169:24342857,32809457:173670,78643,0 +(186,173:22674869,39572777:501378,78643,0 +(186,173:22838723,39572777:173670,78643,0 ) ) -(186,169:24680381,32809457:501378,78643,0 -(186,169:24844235,32809457:173670,78643,0 +(186,173:23176247,39572777:501378,78643,0 +(186,173:23340101,39572777:173670,78643,0 ) ) -(186,169:25181759,32809457:501378,78643,0 -(186,169:25345613,32809457:173670,78643,0 +(186,173:23677625,39572777:501378,78643,0 +(186,173:23841479,39572777:173670,78643,0 ) ) -(186,169:25683137,32809457:501378,78643,0 -(186,169:25846991,32809457:173670,78643,0 +(186,173:24179003,39572777:501378,78643,0 +(186,173:24342857,39572777:173670,78643,0 ) ) -(186,169:26184515,32809457:501378,78643,0 -(186,169:26348369,32809457:173670,78643,0 +(186,173:24680381,39572777:501378,78643,0 +(186,173:24844235,39572777:173670,78643,0 ) ) -(186,169:26685893,32809457:501378,78643,0 -(186,169:26849747,32809457:173670,78643,0 +(186,173:25181759,39572777:501378,78643,0 +(186,173:25345613,39572777:173670,78643,0 ) ) -(186,169:27187271,32809457:501378,78643,0 -(186,169:27351125,32809457:173670,78643,0 +(186,173:25683137,39572777:501378,78643,0 +(186,173:25846991,39572777:173670,78643,0 ) ) -(186,169:27688649,32809457:501378,78643,0 -(186,169:27852503,32809457:173670,78643,0 +(186,173:26184515,39572777:501378,78643,0 +(186,173:26348369,39572777:173670,78643,0 ) ) -(186,169:28190027,32809457:501378,78643,0 -(186,169:28353881,32809457:173670,78643,0 +(186,173:26685893,39572777:501378,78643,0 +(186,173:26849747,39572777:173670,78643,0 ) ) -(186,169:28691405,32809457:501378,78643,0 -(186,169:28855259,32809457:173670,78643,0 +(186,173:27187271,39572777:501378,78643,0 +(186,173:27351125,39572777:173670,78643,0 ) ) -(186,169:29192783,32809457:501378,78643,0 -(186,169:29356637,32809457:173670,78643,0 +(186,173:27688649,39572777:501378,78643,0 +(186,173:27852503,39572777:173670,78643,0 ) ) -(186,169:29694161,32809457:501378,78643,0 -(186,169:29858015,32809457:173670,78643,0 +(186,173:28190027,39572777:501378,78643,0 +(186,173:28353881,39572777:173670,78643,0 ) ) -(186,169:30195539,32809457:501378,78643,0 -(186,169:30359393,32809457:173670,78643,0 +(186,173:28691405,39572777:501378,78643,0 +(186,173:28855259,39572777:173670,78643,0 ) ) -(186,169:30696917,32809457:501378,78643,0 -(186,169:30860771,32809457:173670,78643,0 +(186,173:29192783,39572777:501378,78643,0 +(186,173:29356637,39572777:173670,78643,0 ) ) -(186,169:31239539,32809457:1343490,485622,11795 -k186,169:31239539,32809457:0 -k186,169:31387652,32809457:148113 +(186,173:29694161,39572777:501378,78643,0 +(186,173:29858015,39572777:173670,78643,0 ) -g186,169:30911859,32809457 -g186,169:32583029,32809457 ) -(186,170:6630773,33650945:25952256,485622,11795 -g186,170:9448823,33650945 -h186,170:9448823,33650945:983040,0,0 -h186,170:10431863,33650945:0,0,0 -g186,170:7613813,33650945 -(186,170:7613813,33650945:1835010,485622,11795 -k186,170:9448823,33650945:864422 +(186,173:30195539,39572777:501378,78643,0 +(186,173:30359393,39572777:173670,78643,0 ) -g186,170:13261052,33650945 -g186,170:13261052,33650945 -(186,170:13650065,33650945:501378,78643,0 -$186,170:13650065,33650945 -(186,170:13813919,33650945:173670,78643,0 ) -$186,170:14151443,33650945 +(186,173:30696917,39572777:501378,78643,0 +(186,173:30860771,39572777:173670,78643,0 ) -(186,170:14151443,33650945:501378,78643,0 -(186,170:14315297,33650945:173670,78643,0 ) +(186,173:31239539,39572777:1343490,485622,11795 +k186,173:31239539,39572777:0 +k186,173:31387652,39572777:148113 ) -(186,170:14652821,33650945:501378,78643,0 -(186,170:14816675,33650945:173670,78643,0 +g186,173:30911859,39572777 +g186,173:32583029,39572777 ) +(186,174:6630773,40437857:25952256,505283,11795 +g186,174:12529013,40437857 +h186,174:12529013,40437857:3080190,0,0 +h186,174:15609203,40437857:0,0,0 +g186,174:9710963,40437857 +(186,174:9710963,40437857:2818050,485622,11795 +k186,174:12529013,40437857:1275332 ) -(186,170:15154199,33650945:501378,78643,0 -(186,170:15318053,33650945:173670,78643,0 +g186,174:15033799,40437857 +(186,174:15154199,40437857:501378,78643,0 +$186,174:15154199,40437857 +(186,174:15318053,40437857:173670,78643,0 ) +$186,174:15655577,40437857 ) -(186,170:15655577,33650945:501378,78643,0 -(186,170:15819431,33650945:173670,78643,0 +(186,174:15655577,40437857:501378,78643,0 +(186,174:15819431,40437857:173670,78643,0 ) ) -(186,170:16156955,33650945:501378,78643,0 -(186,170:16320809,33650945:173670,78643,0 +(186,174:16156955,40437857:501378,78643,0 +(186,174:16320809,40437857:173670,78643,0 ) ) -(186,170:16658333,33650945:501378,78643,0 -(186,170:16822187,33650945:173670,78643,0 +(186,174:16658333,40437857:501378,78643,0 +(186,174:16822187,40437857:173670,78643,0 ) ) -(186,170:17159711,33650945:501378,78643,0 -(186,170:17323565,33650945:173670,78643,0 +(186,174:17159711,40437857:501378,78643,0 +(186,174:17323565,40437857:173670,78643,0 ) ) -(186,170:17661089,33650945:501378,78643,0 -(186,170:17824943,33650945:173670,78643,0 +(186,174:17661089,40437857:501378,78643,0 +(186,174:17824943,40437857:173670,78643,0 ) ) -(186,170:18162467,33650945:501378,78643,0 -(186,170:18326321,33650945:173670,78643,0 +(186,174:18162467,40437857:501378,78643,0 +(186,174:18326321,40437857:173670,78643,0 ) ) -(186,170:18663845,33650945:501378,78643,0 -(186,170:18827699,33650945:173670,78643,0 +(186,174:18663845,40437857:501378,78643,0 +(186,174:18827699,40437857:173670,78643,0 ) ) -(186,170:19165223,33650945:501378,78643,0 -(186,170:19329077,33650945:173670,78643,0 +(186,174:19165223,40437857:501378,78643,0 +(186,174:19329077,40437857:173670,78643,0 ) ) -(186,170:19666601,33650945:501378,78643,0 -(186,170:19830455,33650945:173670,78643,0 +(186,174:19666601,40437857:501378,78643,0 +(186,174:19830455,40437857:173670,78643,0 ) ) -(186,170:20167979,33650945:501378,78643,0 -(186,170:20331833,33650945:173670,78643,0 +(186,174:20167979,40437857:501378,78643,0 +(186,174:20331833,40437857:173670,78643,0 ) ) -(186,170:20669357,33650945:501378,78643,0 -(186,170:20833211,33650945:173670,78643,0 +(186,174:20669357,40437857:501378,78643,0 +(186,174:20833211,40437857:173670,78643,0 ) ) -(186,170:21170735,33650945:501378,78643,0 -(186,170:21334589,33650945:173670,78643,0 +(186,174:21170735,40437857:501378,78643,0 +(186,174:21334589,40437857:173670,78643,0 ) ) -(186,170:21672113,33650945:501378,78643,0 -(186,170:21835967,33650945:173670,78643,0 +(186,174:21672113,40437857:501378,78643,0 +(186,174:21835967,40437857:173670,78643,0 ) ) -(186,170:22173491,33650945:501378,78643,0 -(186,170:22337345,33650945:173670,78643,0 +(186,174:22173491,40437857:501378,78643,0 +(186,174:22337345,40437857:173670,78643,0 ) ) -(186,170:22674869,33650945:501378,78643,0 -(186,170:22838723,33650945:173670,78643,0 +(186,174:22674869,40437857:501378,78643,0 +(186,174:22838723,40437857:173670,78643,0 ) ) -(186,170:23176247,33650945:501378,78643,0 -(186,170:23340101,33650945:173670,78643,0 +(186,174:23176247,40437857:501378,78643,0 +(186,174:23340101,40437857:173670,78643,0 ) ) -(186,170:23677625,33650945:501378,78643,0 -(186,170:23841479,33650945:173670,78643,0 +(186,174:23677625,40437857:501378,78643,0 +(186,174:23841479,40437857:173670,78643,0 ) ) -(186,170:24179003,33650945:501378,78643,0 -(186,170:24342857,33650945:173670,78643,0 +(186,174:24179003,40437857:501378,78643,0 +(186,174:24342857,40437857:173670,78643,0 ) ) -(186,170:24680381,33650945:501378,78643,0 -(186,170:24844235,33650945:173670,78643,0 +(186,174:24680381,40437857:501378,78643,0 +(186,174:24844235,40437857:173670,78643,0 ) ) -(186,170:25181759,33650945:501378,78643,0 -(186,170:25345613,33650945:173670,78643,0 +(186,174:25181759,40437857:501378,78643,0 +(186,174:25345613,40437857:173670,78643,0 ) ) -(186,170:25683137,33650945:501378,78643,0 -(186,170:25846991,33650945:173670,78643,0 +(186,174:25683137,40437857:501378,78643,0 +(186,174:25846991,40437857:173670,78643,0 ) ) -(186,170:26184515,33650945:501378,78643,0 -(186,170:26348369,33650945:173670,78643,0 +(186,174:26184515,40437857:501378,78643,0 +(186,174:26348369,40437857:173670,78643,0 ) ) -(186,170:26685893,33650945:501378,78643,0 -(186,170:26849747,33650945:173670,78643,0 +(186,174:26685893,40437857:501378,78643,0 +(186,174:26849747,40437857:173670,78643,0 ) ) -(186,170:27187271,33650945:501378,78643,0 -(186,170:27351125,33650945:173670,78643,0 +(186,174:27187271,40437857:501378,78643,0 +(186,174:27351125,40437857:173670,78643,0 ) ) -(186,170:27688649,33650945:501378,78643,0 -(186,170:27852503,33650945:173670,78643,0 +(186,174:27688649,40437857:501378,78643,0 +(186,174:27852503,40437857:173670,78643,0 ) ) -(186,170:28190027,33650945:501378,78643,0 -(186,170:28353881,33650945:173670,78643,0 +(186,174:28190027,40437857:501378,78643,0 +(186,174:28353881,40437857:173670,78643,0 ) ) -(186,170:28691405,33650945:501378,78643,0 -(186,170:28855259,33650945:173670,78643,0 +(186,174:28691405,40437857:501378,78643,0 +(186,174:28855259,40437857:173670,78643,0 ) ) -(186,170:29192783,33650945:501378,78643,0 -(186,170:29356637,33650945:173670,78643,0 +(186,174:29192783,40437857:501378,78643,0 +(186,174:29356637,40437857:173670,78643,0 ) ) -(186,170:29694161,33650945:501378,78643,0 -(186,170:29858015,33650945:173670,78643,0 +(186,174:29694161,40437857:501378,78643,0 +(186,174:29858015,40437857:173670,78643,0 ) ) -(186,170:30195539,33650945:501378,78643,0 -(186,170:30359393,33650945:173670,78643,0 +(186,174:30195539,40437857:501378,78643,0 +(186,174:30359393,40437857:173670,78643,0 ) ) -(186,170:30696917,33650945:501378,78643,0 -(186,170:30860771,33650945:173670,78643,0 +(186,174:30696917,40437857:501378,78643,0 +(186,174:30860771,40437857:173670,78643,0 ) ) -(186,170:31239540,33650945:1343490,485622,11795 -k186,170:31239540,33650945:0 -k186,170:31387653,33650945:148113 +(186,174:31239539,40437857:1343490,485622,11795 +k186,174:31239539,40437857:0 +k186,174:31387652,40437857:148113 ) -g186,170:30911860,33650945 -g186,170:32583030,33650945 +g186,174:30911859,40437857 +g186,174:32583029,40437857 ) -(186,171:6630773,34492433:25952256,485622,11795 -g186,171:11873653,34492433 -h186,171:11873653,34492433:2818050,0,0 -h186,171:14691703,34492433:0,0,0 -g186,171:9448823,34492433 -(186,171:9448823,34492433:2424830,485622,11795 -k186,171:11873653,34492433:882112 +(186,175:6630773,41302937:25952256,505283,11795 +g186,175:12529013,41302937 +h186,175:12529013,41302937:3080190,0,0 +h186,175:15609203,41302937:0,0,0 +g186,175:9710963,41302937 +(186,175:9710963,41302937:2818050,485622,11795 +k186,175:12529013,41302937:1275332 ) -g186,171:13516641,34492433 -(186,171:13650065,34492433:501378,78643,0 -$186,171:13650065,34492433 -(186,171:13813919,34492433:173670,78643,0 +g186,175:14047482,41302937 +(186,175:14151443,41302937:501378,78643,0 +$186,175:14151443,41302937 +(186,175:14315297,41302937:173670,78643,0 ) -$186,171:14151443,34492433 +$186,175:14652821,41302937 ) -(186,171:14151443,34492433:501378,78643,0 -(186,171:14315297,34492433:173670,78643,0 +(186,175:14652821,41302937:501378,78643,0 +(186,175:14816675,41302937:173670,78643,0 ) ) -(186,171:14652821,34492433:501378,78643,0 -(186,171:14816675,34492433:173670,78643,0 +(186,175:15154199,41302937:501378,78643,0 +(186,175:15318053,41302937:173670,78643,0 ) ) -(186,171:15154199,34492433:501378,78643,0 -(186,171:15318053,34492433:173670,78643,0 +(186,175:15655577,41302937:501378,78643,0 +(186,175:15819431,41302937:173670,78643,0 ) ) -(186,171:15655577,34492433:501378,78643,0 -(186,171:15819431,34492433:173670,78643,0 +(186,175:16156955,41302937:501378,78643,0 +(186,175:16320809,41302937:173670,78643,0 ) ) -(186,171:16156955,34492433:501378,78643,0 -(186,171:16320809,34492433:173670,78643,0 +(186,175:16658333,41302937:501378,78643,0 +(186,175:16822187,41302937:173670,78643,0 ) ) -(186,171:16658333,34492433:501378,78643,0 -(186,171:16822187,34492433:173670,78643,0 +(186,175:17159711,41302937:501378,78643,0 +(186,175:17323565,41302937:173670,78643,0 ) ) -(186,171:17159711,34492433:501378,78643,0 -(186,171:17323565,34492433:173670,78643,0 +(186,175:17661089,41302937:501378,78643,0 +(186,175:17824943,41302937:173670,78643,0 ) ) -(186,171:17661089,34492433:501378,78643,0 -(186,171:17824943,34492433:173670,78643,0 +(186,175:18162467,41302937:501378,78643,0 +(186,175:18326321,41302937:173670,78643,0 ) ) -(186,171:18162467,34492433:501378,78643,0 -(186,171:18326321,34492433:173670,78643,0 +(186,175:18663845,41302937:501378,78643,0 +(186,175:18827699,41302937:173670,78643,0 ) ) -(186,171:18663845,34492433:501378,78643,0 -(186,171:18827699,34492433:173670,78643,0 +(186,175:19165223,41302937:501378,78643,0 +(186,175:19329077,41302937:173670,78643,0 ) ) -(186,171:19165223,34492433:501378,78643,0 -(186,171:19329077,34492433:173670,78643,0 +(186,175:19666601,41302937:501378,78643,0 +(186,175:19830455,41302937:173670,78643,0 ) ) -(186,171:19666601,34492433:501378,78643,0 -(186,171:19830455,34492433:173670,78643,0 +(186,175:20167979,41302937:501378,78643,0 +(186,175:20331833,41302937:173670,78643,0 ) ) -(186,171:20167979,34492433:501378,78643,0 -(186,171:20331833,34492433:173670,78643,0 +(186,175:20669357,41302937:501378,78643,0 +(186,175:20833211,41302937:173670,78643,0 ) ) -(186,171:20669357,34492433:501378,78643,0 -(186,171:20833211,34492433:173670,78643,0 +(186,175:21170735,41302937:501378,78643,0 +(186,175:21334589,41302937:173670,78643,0 ) ) -(186,171:21170735,34492433:501378,78643,0 -(186,171:21334589,34492433:173670,78643,0 +(186,175:21672113,41302937:501378,78643,0 +(186,175:21835967,41302937:173670,78643,0 ) ) -(186,171:21672113,34492433:501378,78643,0 -(186,171:21835967,34492433:173670,78643,0 +(186,175:22173491,41302937:501378,78643,0 +(186,175:22337345,41302937:173670,78643,0 ) ) -(186,171:22173491,34492433:501378,78643,0 -(186,171:22337345,34492433:173670,78643,0 +(186,175:22674869,41302937:501378,78643,0 +(186,175:22838723,41302937:173670,78643,0 ) ) -(186,171:22674869,34492433:501378,78643,0 -(186,171:22838723,34492433:173670,78643,0 +(186,175:23176247,41302937:501378,78643,0 +(186,175:23340101,41302937:173670,78643,0 ) ) -(186,171:23176247,34492433:501378,78643,0 -(186,171:23340101,34492433:173670,78643,0 +(186,175:23677625,41302937:501378,78643,0 +(186,175:23841479,41302937:173670,78643,0 ) ) -(186,171:23677625,34492433:501378,78643,0 -(186,171:23841479,34492433:173670,78643,0 +(186,175:24179003,41302937:501378,78643,0 +(186,175:24342857,41302937:173670,78643,0 ) ) -(186,171:24179003,34492433:501378,78643,0 -(186,171:24342857,34492433:173670,78643,0 +(186,175:24680381,41302937:501378,78643,0 +(186,175:24844235,41302937:173670,78643,0 ) ) -(186,171:24680381,34492433:501378,78643,0 -(186,171:24844235,34492433:173670,78643,0 +(186,175:25181759,41302937:501378,78643,0 +(186,175:25345613,41302937:173670,78643,0 ) ) -(186,171:25181759,34492433:501378,78643,0 -(186,171:25345613,34492433:173670,78643,0 +(186,175:25683137,41302937:501378,78643,0 +(186,175:25846991,41302937:173670,78643,0 ) ) -(186,171:25683137,34492433:501378,78643,0 -(186,171:25846991,34492433:173670,78643,0 +(186,175:26184515,41302937:501378,78643,0 +(186,175:26348369,41302937:173670,78643,0 ) ) -(186,171:26184515,34492433:501378,78643,0 -(186,171:26348369,34492433:173670,78643,0 +(186,175:26685893,41302937:501378,78643,0 +(186,175:26849747,41302937:173670,78643,0 ) ) -(186,171:26685893,34492433:501378,78643,0 -(186,171:26849747,34492433:173670,78643,0 +(186,175:27187271,41302937:501378,78643,0 +(186,175:27351125,41302937:173670,78643,0 ) ) -(186,171:27187271,34492433:501378,78643,0 -(186,171:27351125,34492433:173670,78643,0 +(186,175:27688649,41302937:501378,78643,0 +(186,175:27852503,41302937:173670,78643,0 ) ) -(186,171:27688649,34492433:501378,78643,0 -(186,171:27852503,34492433:173670,78643,0 +(186,175:28190027,41302937:501378,78643,0 +(186,175:28353881,41302937:173670,78643,0 ) ) -(186,171:28190027,34492433:501378,78643,0 -(186,171:28353881,34492433:173670,78643,0 +(186,175:28691405,41302937:501378,78643,0 +(186,175:28855259,41302937:173670,78643,0 ) ) -(186,171:28691405,34492433:501378,78643,0 -(186,171:28855259,34492433:173670,78643,0 +(186,175:29192783,41302937:501378,78643,0 +(186,175:29356637,41302937:173670,78643,0 ) ) -(186,171:29192783,34492433:501378,78643,0 -(186,171:29356637,34492433:173670,78643,0 +(186,175:29694161,41302937:501378,78643,0 +(186,175:29858015,41302937:173670,78643,0 ) ) -(186,171:29694161,34492433:501378,78643,0 -(186,171:29858015,34492433:173670,78643,0 +(186,175:30195539,41302937:501378,78643,0 +(186,175:30359393,41302937:173670,78643,0 ) ) -(186,171:30195539,34492433:501378,78643,0 -(186,171:30359393,34492433:173670,78643,0 +(186,175:30696917,41302937:501378,78643,0 +(186,175:30860771,41302937:173670,78643,0 ) ) -(186,171:30696917,34492433:501378,78643,0 -(186,171:30860771,34492433:173670,78643,0 +(186,175:31239538,41302937:1343490,485622,11795 +k186,175:31239538,41302937:0 +k186,175:31387651,41302937:148113 ) +g186,175:30911858,41302937 +g186,175:32583028,41302937 ) -(186,171:31239539,34492433:1343490,485622,11795 -k186,171:31239539,34492433:0 -k186,171:31387652,34492433:148113 +(186,176:6630773,42168017:25952256,513147,126483 +g186,176:12529013,42168017 +h186,176:12529013,42168017:3080190,0,0 +h186,176:15609203,42168017:0,0,0 +g186,176:9710963,42168017 +(186,176:9710963,42168017:2818050,485622,11795 +k186,176:12529013,42168017:1275332 ) -g186,171:30911859,34492433 -g186,171:32583029,34492433 +g186,176:14877823,42168017 +g186,176:17682763,42168017 +g186,176:18692017,42168017 +(186,176:19165223,42168017:501378,78643,0 +$186,176:19165223,42168017 +(186,176:19329077,42168017:173670,78643,0 ) -(186,172:6630773,35333921:25952256,485622,134348 -g186,172:11873653,35333921 -h186,172:11873653,35333921:2818050,0,0 -h186,172:14691703,35333921:0,0,0 -g186,172:9448823,35333921 -(186,172:9448823,35333921:2424830,485622,11795 -k186,172:11873653,35333921:882112 +$186,176:19666601,42168017 ) -g186,172:13107696,35333921 -(186,172:13148687,35333921:501378,78643,0 -$186,172:13148687,35333921 -(186,172:13312541,35333921:173670,78643,0 +(186,176:19666601,42168017:501378,78643,0 +(186,176:19830455,42168017:173670,78643,0 ) -$186,172:13650065,35333921 ) -(186,172:13650065,35333921:501378,78643,0 -(186,172:13813919,35333921:173670,78643,0 +(186,176:20167979,42168017:501378,78643,0 +(186,176:20331833,42168017:173670,78643,0 ) ) -(186,172:14151443,35333921:501378,78643,0 -(186,172:14315297,35333921:173670,78643,0 +(186,176:20669357,42168017:501378,78643,0 +(186,176:20833211,42168017:173670,78643,0 ) ) -(186,172:14652821,35333921:501378,78643,0 -(186,172:14816675,35333921:173670,78643,0 +(186,176:21170735,42168017:501378,78643,0 +(186,176:21334589,42168017:173670,78643,0 ) ) -(186,172:15154199,35333921:501378,78643,0 -(186,172:15318053,35333921:173670,78643,0 +(186,176:21672113,42168017:501378,78643,0 +(186,176:21835967,42168017:173670,78643,0 ) ) -(186,172:15655577,35333921:501378,78643,0 -(186,172:15819431,35333921:173670,78643,0 +(186,176:22173491,42168017:501378,78643,0 +(186,176:22337345,42168017:173670,78643,0 ) ) -(186,172:16156955,35333921:501378,78643,0 -(186,172:16320809,35333921:173670,78643,0 +(186,176:22674869,42168017:501378,78643,0 +(186,176:22838723,42168017:173670,78643,0 ) ) -(186,172:16658333,35333921:501378,78643,0 -(186,172:16822187,35333921:173670,78643,0 +(186,176:23176247,42168017:501378,78643,0 +(186,176:23340101,42168017:173670,78643,0 ) ) -(186,172:17159711,35333921:501378,78643,0 -(186,172:17323565,35333921:173670,78643,0 +(186,176:23677625,42168017:501378,78643,0 +(186,176:23841479,42168017:173670,78643,0 ) ) -(186,172:17661089,35333921:501378,78643,0 -(186,172:17824943,35333921:173670,78643,0 +(186,176:24179003,42168017:501378,78643,0 +(186,176:24342857,42168017:173670,78643,0 ) ) -(186,172:18162467,35333921:501378,78643,0 -(186,172:18326321,35333921:173670,78643,0 +(186,176:24680381,42168017:501378,78643,0 +(186,176:24844235,42168017:173670,78643,0 ) ) -(186,172:18663845,35333921:501378,78643,0 -(186,172:18827699,35333921:173670,78643,0 +(186,176:25181759,42168017:501378,78643,0 +(186,176:25345613,42168017:173670,78643,0 ) ) -(186,172:19165223,35333921:501378,78643,0 -(186,172:19329077,35333921:173670,78643,0 +(186,176:25683137,42168017:501378,78643,0 +(186,176:25846991,42168017:173670,78643,0 ) ) -(186,172:19666601,35333921:501378,78643,0 -(186,172:19830455,35333921:173670,78643,0 +(186,176:26184515,42168017:501378,78643,0 +(186,176:26348369,42168017:173670,78643,0 ) ) -(186,172:20167979,35333921:501378,78643,0 -(186,172:20331833,35333921:173670,78643,0 +(186,176:26685893,42168017:501378,78643,0 +(186,176:26849747,42168017:173670,78643,0 ) ) -(186,172:20669357,35333921:501378,78643,0 -(186,172:20833211,35333921:173670,78643,0 +(186,176:27187271,42168017:501378,78643,0 +(186,176:27351125,42168017:173670,78643,0 ) ) -(186,172:21170735,35333921:501378,78643,0 -(186,172:21334589,35333921:173670,78643,0 +(186,176:27688649,42168017:501378,78643,0 +(186,176:27852503,42168017:173670,78643,0 ) ) -(186,172:21672113,35333921:501378,78643,0 -(186,172:21835967,35333921:173670,78643,0 +(186,176:28190027,42168017:501378,78643,0 +(186,176:28353881,42168017:173670,78643,0 ) ) -(186,172:22173491,35333921:501378,78643,0 -(186,172:22337345,35333921:173670,78643,0 +(186,176:28691405,42168017:501378,78643,0 +(186,176:28855259,42168017:173670,78643,0 ) ) -(186,172:22674869,35333921:501378,78643,0 -(186,172:22838723,35333921:173670,78643,0 +(186,176:29192783,42168017:501378,78643,0 +(186,176:29356637,42168017:173670,78643,0 ) ) -(186,172:23176247,35333921:501378,78643,0 -(186,172:23340101,35333921:173670,78643,0 +(186,176:29694161,42168017:501378,78643,0 +(186,176:29858015,42168017:173670,78643,0 ) ) -(186,172:23677625,35333921:501378,78643,0 -(186,172:23841479,35333921:173670,78643,0 +(186,176:30195539,42168017:501378,78643,0 +(186,176:30359393,42168017:173670,78643,0 ) ) -(186,172:24179003,35333921:501378,78643,0 -(186,172:24342857,35333921:173670,78643,0 +(186,176:30696917,42168017:501378,78643,0 +(186,176:30860771,42168017:173670,78643,0 ) ) -(186,172:24680381,35333921:501378,78643,0 -(186,172:24844235,35333921:173670,78643,0 +(186,176:31239539,42168017:1343490,485622,11795 +k186,176:31239539,42168017:0 +k186,176:31387652,42168017:148113 ) +g186,176:30911859,42168017 +g186,176:32583029,42168017 ) -(186,172:25181759,35333921:501378,78643,0 -(186,172:25345613,35333921:173670,78643,0 +(186,177:6630773,43033097:25952256,485622,11795 +g186,177:12529013,43033097 +h186,177:12529013,43033097:3080190,0,0 +h186,177:15609203,43033097:0,0,0 +g186,177:9710963,43033097 +(186,177:9710963,43033097:2818050,485622,11795 +k186,177:12529013,43033097:1275332 ) +g186,177:13932794,43033097 +(186,177:14151443,43033097:501378,78643,0 +$186,177:14151443,43033097 +(186,177:14315297,43033097:173670,78643,0 ) -(186,172:25683137,35333921:501378,78643,0 -(186,172:25846991,35333921:173670,78643,0 +$186,177:14652821,43033097 ) +(186,177:14652821,43033097:501378,78643,0 +(186,177:14816675,43033097:173670,78643,0 ) -(186,172:26184515,35333921:501378,78643,0 -(186,172:26348369,35333921:173670,78643,0 ) +(186,177:15154199,43033097:501378,78643,0 +(186,177:15318053,43033097:173670,78643,0 ) -(186,172:26685893,35333921:501378,78643,0 -(186,172:26849747,35333921:173670,78643,0 ) +(186,177:15655577,43033097:501378,78643,0 +(186,177:15819431,43033097:173670,78643,0 ) -(186,172:27187271,35333921:501378,78643,0 -(186,172:27351125,35333921:173670,78643,0 ) +(186,177:16156955,43033097:501378,78643,0 +(186,177:16320809,43033097:173670,78643,0 ) -(186,172:27688649,35333921:501378,78643,0 -(186,172:27852503,35333921:173670,78643,0 ) +(186,177:16658333,43033097:501378,78643,0 +(186,177:16822187,43033097:173670,78643,0 ) -(186,172:28190027,35333921:501378,78643,0 -(186,172:28353881,35333921:173670,78643,0 ) +(186,177:17159711,43033097:501378,78643,0 +(186,177:17323565,43033097:173670,78643,0 ) -(186,172:28691405,35333921:501378,78643,0 -(186,172:28855259,35333921:173670,78643,0 ) +(186,177:17661089,43033097:501378,78643,0 +(186,177:17824943,43033097:173670,78643,0 ) -(186,172:29192783,35333921:501378,78643,0 -(186,172:29356637,35333921:173670,78643,0 ) +(186,177:18162467,43033097:501378,78643,0 +(186,177:18326321,43033097:173670,78643,0 ) -(186,172:29694161,35333921:501378,78643,0 -(186,172:29858015,35333921:173670,78643,0 ) +(186,177:18663845,43033097:501378,78643,0 +(186,177:18827699,43033097:173670,78643,0 ) -(186,172:30195539,35333921:501378,78643,0 -(186,172:30359393,35333921:173670,78643,0 ) +(186,177:19165223,43033097:501378,78643,0 +(186,177:19329077,43033097:173670,78643,0 ) -(186,172:30696917,35333921:501378,78643,0 -(186,172:30860771,35333921:173670,78643,0 ) +(186,177:19666601,43033097:501378,78643,0 +(186,177:19830455,43033097:173670,78643,0 ) -(186,172:31239540,35333921:1343490,485622,11795 -k186,172:31239540,35333921:0 -k186,172:31387653,35333921:148113 ) -g186,172:30911860,35333921 -g186,172:32583030,35333921 +(186,177:20167979,43033097:501378,78643,0 +(186,177:20331833,43033097:173670,78643,0 ) -(186,173:6630773,36175409:25952256,505283,11795 -g186,173:11873653,36175409 -h186,173:11873653,36175409:2818050,0,0 -h186,173:14691703,36175409:0,0,0 -g186,173:9448823,36175409 -(186,173:9448823,36175409:2424830,485622,11795 -k186,173:11873653,36175409:882112 ) -g186,173:13401297,36175409 -g186,173:14791971,36175409 -g186,173:16139391,36175409 -(186,173:16156955,36175409:501378,78643,0 -$186,173:16156955,36175409 -(186,173:16320809,36175409:173670,78643,0 +(186,177:20669357,43033097:501378,78643,0 +(186,177:20833211,43033097:173670,78643,0 ) -$186,173:16658333,36175409 ) -(186,173:16658333,36175409:501378,78643,0 -(186,173:16822187,36175409:173670,78643,0 +(186,177:21170735,43033097:501378,78643,0 +(186,177:21334589,43033097:173670,78643,0 ) ) -(186,173:17159711,36175409:501378,78643,0 -(186,173:17323565,36175409:173670,78643,0 +(186,177:21672113,43033097:501378,78643,0 +(186,177:21835967,43033097:173670,78643,0 ) ) -(186,173:17661089,36175409:501378,78643,0 -(186,173:17824943,36175409:173670,78643,0 +(186,177:22173491,43033097:501378,78643,0 +(186,177:22337345,43033097:173670,78643,0 ) ) -(186,173:18162467,36175409:501378,78643,0 -(186,173:18326321,36175409:173670,78643,0 +(186,177:22674869,43033097:501378,78643,0 +(186,177:22838723,43033097:173670,78643,0 ) ) -(186,173:18663845,36175409:501378,78643,0 -(186,173:18827699,36175409:173670,78643,0 +(186,177:23176247,43033097:501378,78643,0 +(186,177:23340101,43033097:173670,78643,0 ) ) -(186,173:19165223,36175409:501378,78643,0 -(186,173:19329077,36175409:173670,78643,0 +(186,177:23677625,43033097:501378,78643,0 +(186,177:23841479,43033097:173670,78643,0 ) ) -(186,173:19666601,36175409:501378,78643,0 -(186,173:19830455,36175409:173670,78643,0 +(186,177:24179003,43033097:501378,78643,0 +(186,177:24342857,43033097:173670,78643,0 ) ) -(186,173:20167979,36175409:501378,78643,0 -(186,173:20331833,36175409:173670,78643,0 +(186,177:24680381,43033097:501378,78643,0 +(186,177:24844235,43033097:173670,78643,0 ) ) -(186,173:20669357,36175409:501378,78643,0 -(186,173:20833211,36175409:173670,78643,0 +(186,177:25181759,43033097:501378,78643,0 +(186,177:25345613,43033097:173670,78643,0 ) ) -(186,173:21170735,36175409:501378,78643,0 -(186,173:21334589,36175409:173670,78643,0 +(186,177:25683137,43033097:501378,78643,0 +(186,177:25846991,43033097:173670,78643,0 ) ) -(186,173:21672113,36175409:501378,78643,0 -(186,173:21835967,36175409:173670,78643,0 +(186,177:26184515,43033097:501378,78643,0 +(186,177:26348369,43033097:173670,78643,0 ) ) -(186,173:22173491,36175409:501378,78643,0 -(186,173:22337345,36175409:173670,78643,0 +(186,177:26685893,43033097:501378,78643,0 +(186,177:26849747,43033097:173670,78643,0 ) ) -(186,173:22674869,36175409:501378,78643,0 -(186,173:22838723,36175409:173670,78643,0 +(186,177:27187271,43033097:501378,78643,0 +(186,177:27351125,43033097:173670,78643,0 ) ) -(186,173:23176247,36175409:501378,78643,0 -(186,173:23340101,36175409:173670,78643,0 +(186,177:27688649,43033097:501378,78643,0 +(186,177:27852503,43033097:173670,78643,0 ) ) -(186,173:23677625,36175409:501378,78643,0 -(186,173:23841479,36175409:173670,78643,0 +(186,177:28190027,43033097:501378,78643,0 +(186,177:28353881,43033097:173670,78643,0 ) ) -(186,173:24179003,36175409:501378,78643,0 -(186,173:24342857,36175409:173670,78643,0 +(186,177:28691405,43033097:501378,78643,0 +(186,177:28855259,43033097:173670,78643,0 ) ) -(186,173:24680381,36175409:501378,78643,0 -(186,173:24844235,36175409:173670,78643,0 +(186,177:29192783,43033097:501378,78643,0 +(186,177:29356637,43033097:173670,78643,0 ) ) -(186,173:25181759,36175409:501378,78643,0 -(186,173:25345613,36175409:173670,78643,0 +(186,177:29694161,43033097:501378,78643,0 +(186,177:29858015,43033097:173670,78643,0 ) ) -(186,173:25683137,36175409:501378,78643,0 -(186,173:25846991,36175409:173670,78643,0 +(186,177:30195539,43033097:501378,78643,0 +(186,177:30359393,43033097:173670,78643,0 ) ) -(186,173:26184515,36175409:501378,78643,0 -(186,173:26348369,36175409:173670,78643,0 +(186,177:30696917,43033097:501378,78643,0 +(186,177:30860771,43033097:173670,78643,0 ) ) -(186,173:26685893,36175409:501378,78643,0 -(186,173:26849747,36175409:173670,78643,0 +(186,177:31239538,43033097:1343490,485622,11795 +k186,177:31239538,43033097:0 +k186,177:31387651,43033097:148113 ) +g186,177:30911858,43033097 +g186,177:32583028,43033097 ) -(186,173:27187271,36175409:501378,78643,0 -(186,173:27351125,36175409:173670,78643,0 +(186,178:6630773,43898177:25952256,505283,11795 +g186,178:12529013,43898177 +h186,178:12529013,43898177:3080190,0,0 +h186,178:15609203,43898177:0,0,0 +g186,178:9710963,43898177 +(186,178:9710963,43898177:2818050,485622,11795 +k186,178:12529013,43898177:1275332 ) +g186,178:13960319,43898177 +g186,178:15841202,43898177 +(186,178:16156955,43898177:501378,78643,0 +$186,178:16156955,43898177 +(186,178:16320809,43898177:173670,78643,0 ) -(186,173:27688649,36175409:501378,78643,0 -(186,173:27852503,36175409:173670,78643,0 +$186,178:16658333,43898177 ) +(186,178:16658333,43898177:501378,78643,0 +(186,178:16822187,43898177:173670,78643,0 ) -(186,173:28190027,36175409:501378,78643,0 -(186,173:28353881,36175409:173670,78643,0 ) +(186,178:17159711,43898177:501378,78643,0 +(186,178:17323565,43898177:173670,78643,0 ) -(186,173:28691405,36175409:501378,78643,0 -(186,173:28855259,36175409:173670,78643,0 ) +(186,178:17661089,43898177:501378,78643,0 +(186,178:17824943,43898177:173670,78643,0 ) -(186,173:29192783,36175409:501378,78643,0 -(186,173:29356637,36175409:173670,78643,0 ) +(186,178:18162467,43898177:501378,78643,0 +(186,178:18326321,43898177:173670,78643,0 ) -(186,173:29694161,36175409:501378,78643,0 -(186,173:29858015,36175409:173670,78643,0 ) +(186,178:18663845,43898177:501378,78643,0 +(186,178:18827699,43898177:173670,78643,0 ) -(186,173:30195539,36175409:501378,78643,0 -(186,173:30359393,36175409:173670,78643,0 ) +(186,178:19165223,43898177:501378,78643,0 +(186,178:19329077,43898177:173670,78643,0 ) -(186,173:30696917,36175409:501378,78643,0 -(186,173:30860771,36175409:173670,78643,0 ) +(186,178:19666601,43898177:501378,78643,0 +(186,178:19830455,43898177:173670,78643,0 ) -(186,173:31239539,36175409:1343490,485622,11795 -k186,173:31239539,36175409:0 -k186,173:31387652,36175409:148113 ) -g186,173:30911859,36175409 -g186,173:32583029,36175409 +(186,178:20167979,43898177:501378,78643,0 +(186,178:20331833,43898177:173670,78643,0 ) -(186,174:6630773,37016897:25952256,505283,11795 -g186,174:11873653,37016897 -h186,174:11873653,37016897:2818050,0,0 -h186,174:14691703,37016897:0,0,0 -g186,174:9448823,37016897 -(186,174:9448823,37016897:2424830,485622,11795 -k186,174:11873653,37016897:882112 ) -g186,174:14378439,37016897 -(186,174:14652821,37016897:501378,78643,0 -$186,174:14652821,37016897 -(186,174:14816675,37016897:173670,78643,0 +(186,178:20669357,43898177:501378,78643,0 +(186,178:20833211,43898177:173670,78643,0 ) -$186,174:15154199,37016897 ) -(186,174:15154199,37016897:501378,78643,0 -(186,174:15318053,37016897:173670,78643,0 +(186,178:21170735,43898177:501378,78643,0 +(186,178:21334589,43898177:173670,78643,0 ) ) -(186,174:15655577,37016897:501378,78643,0 -(186,174:15819431,37016897:173670,78643,0 +(186,178:21672113,43898177:501378,78643,0 +(186,178:21835967,43898177:173670,78643,0 ) ) -(186,174:16156955,37016897:501378,78643,0 -(186,174:16320809,37016897:173670,78643,0 +(186,178:22173491,43898177:501378,78643,0 +(186,178:22337345,43898177:173670,78643,0 ) ) -(186,174:16658333,37016897:501378,78643,0 -(186,174:16822187,37016897:173670,78643,0 +(186,178:22674869,43898177:501378,78643,0 +(186,178:22838723,43898177:173670,78643,0 ) ) -(186,174:17159711,37016897:501378,78643,0 -(186,174:17323565,37016897:173670,78643,0 +(186,178:23176247,43898177:501378,78643,0 +(186,178:23340101,43898177:173670,78643,0 ) ) -(186,174:17661089,37016897:501378,78643,0 -(186,174:17824943,37016897:173670,78643,0 +(186,178:23677625,43898177:501378,78643,0 +(186,178:23841479,43898177:173670,78643,0 ) ) -(186,174:18162467,37016897:501378,78643,0 -(186,174:18326321,37016897:173670,78643,0 +(186,178:24179003,43898177:501378,78643,0 +(186,178:24342857,43898177:173670,78643,0 ) ) -(186,174:18663845,37016897:501378,78643,0 -(186,174:18827699,37016897:173670,78643,0 +(186,178:24680381,43898177:501378,78643,0 +(186,178:24844235,43898177:173670,78643,0 ) ) -(186,174:19165223,37016897:501378,78643,0 -(186,174:19329077,37016897:173670,78643,0 +(186,178:25181759,43898177:501378,78643,0 +(186,178:25345613,43898177:173670,78643,0 ) ) -(186,174:19666601,37016897:501378,78643,0 -(186,174:19830455,37016897:173670,78643,0 +(186,178:25683137,43898177:501378,78643,0 +(186,178:25846991,43898177:173670,78643,0 ) ) -(186,174:20167979,37016897:501378,78643,0 -(186,174:20331833,37016897:173670,78643,0 +(186,178:26184515,43898177:501378,78643,0 +(186,178:26348369,43898177:173670,78643,0 ) ) -(186,174:20669357,37016897:501378,78643,0 -(186,174:20833211,37016897:173670,78643,0 +(186,178:26685893,43898177:501378,78643,0 +(186,178:26849747,43898177:173670,78643,0 ) ) -(186,174:21170735,37016897:501378,78643,0 -(186,174:21334589,37016897:173670,78643,0 +(186,178:27187271,43898177:501378,78643,0 +(186,178:27351125,43898177:173670,78643,0 ) ) -(186,174:21672113,37016897:501378,78643,0 -(186,174:21835967,37016897:173670,78643,0 +(186,178:27688649,43898177:501378,78643,0 +(186,178:27852503,43898177:173670,78643,0 ) ) -(186,174:22173491,37016897:501378,78643,0 -(186,174:22337345,37016897:173670,78643,0 +(186,178:28190027,43898177:501378,78643,0 +(186,178:28353881,43898177:173670,78643,0 ) ) -(186,174:22674869,37016897:501378,78643,0 -(186,174:22838723,37016897:173670,78643,0 +(186,178:28691405,43898177:501378,78643,0 +(186,178:28855259,43898177:173670,78643,0 ) ) -(186,174:23176247,37016897:501378,78643,0 -(186,174:23340101,37016897:173670,78643,0 +(186,178:29192783,43898177:501378,78643,0 +(186,178:29356637,43898177:173670,78643,0 ) ) -(186,174:23677625,37016897:501378,78643,0 -(186,174:23841479,37016897:173670,78643,0 +(186,178:29694161,43898177:501378,78643,0 +(186,178:29858015,43898177:173670,78643,0 ) ) -(186,174:24179003,37016897:501378,78643,0 -(186,174:24342857,37016897:173670,78643,0 +(186,178:30195539,43898177:501378,78643,0 +(186,178:30359393,43898177:173670,78643,0 ) ) -(186,174:24680381,37016897:501378,78643,0 -(186,174:24844235,37016897:173670,78643,0 +(186,178:30696917,43898177:501378,78643,0 +(186,178:30860771,43898177:173670,78643,0 ) ) -(186,174:25181759,37016897:501378,78643,0 -(186,174:25345613,37016897:173670,78643,0 +(186,178:31239539,43898177:1343490,485622,11795 +k186,178:31239539,43898177:0 +k186,178:31387652,43898177:148113 ) +g186,178:30911859,43898177 +g186,178:32583029,43898177 ) -(186,174:25683137,37016897:501378,78643,0 -(186,174:25846991,37016897:173670,78643,0 +(186,179:6630773,44763257:25952256,485622,11795 +g186,179:9710963,44763257 +h186,179:9710963,44763257:983040,0,0 +h186,179:10694003,44763257:0,0,0 +g186,179:7613813,44763257 +(186,179:7613813,44763257:2097150,485622,11795 +k186,179:9710963,44763257:1126562 ) +g186,179:12788533,44763257 +g186,179:12788533,44763257 +(186,179:13148687,44763257:501378,78643,0 +$186,179:13148687,44763257 +(186,179:13312541,44763257:173670,78643,0 ) -(186,174:26184515,37016897:501378,78643,0 -(186,174:26348369,37016897:173670,78643,0 +$186,179:13650065,44763257 ) +(186,179:13650065,44763257:501378,78643,0 +(186,179:13813919,44763257:173670,78643,0 ) -(186,174:26685893,37016897:501378,78643,0 -(186,174:26849747,37016897:173670,78643,0 ) +(186,179:14151443,44763257:501378,78643,0 +(186,179:14315297,44763257:173670,78643,0 ) -(186,174:27187271,37016897:501378,78643,0 -(186,174:27351125,37016897:173670,78643,0 ) +(186,179:14652821,44763257:501378,78643,0 +(186,179:14816675,44763257:173670,78643,0 ) -(186,174:27688649,37016897:501378,78643,0 -(186,174:27852503,37016897:173670,78643,0 ) +(186,179:15154199,44763257:501378,78643,0 +(186,179:15318053,44763257:173670,78643,0 ) -(186,174:28190027,37016897:501378,78643,0 -(186,174:28353881,37016897:173670,78643,0 ) +(186,179:15655577,44763257:501378,78643,0 +(186,179:15819431,44763257:173670,78643,0 ) -(186,174:28691405,37016897:501378,78643,0 -(186,174:28855259,37016897:173670,78643,0 ) +(186,179:16156955,44763257:501378,78643,0 +(186,179:16320809,44763257:173670,78643,0 ) -(186,174:29192783,37016897:501378,78643,0 -(186,174:29356637,37016897:173670,78643,0 ) +(186,179:16658333,44763257:501378,78643,0 +(186,179:16822187,44763257:173670,78643,0 ) -(186,174:29694161,37016897:501378,78643,0 -(186,174:29858015,37016897:173670,78643,0 ) +(186,179:17159711,44763257:501378,78643,0 +(186,179:17323565,44763257:173670,78643,0 ) -(186,174:30195539,37016897:501378,78643,0 -(186,174:30359393,37016897:173670,78643,0 ) +(186,179:17661089,44763257:501378,78643,0 +(186,179:17824943,44763257:173670,78643,0 ) -(186,174:30696917,37016897:501378,78643,0 -(186,174:30860771,37016897:173670,78643,0 ) +(186,179:18162467,44763257:501378,78643,0 +(186,179:18326321,44763257:173670,78643,0 ) -(186,174:31239539,37016897:1343490,485622,11795 -k186,174:31239539,37016897:0 -k186,174:31387652,37016897:148113 ) -g186,174:30911859,37016897 -g186,174:32583029,37016897 +(186,179:18663845,44763257:501378,78643,0 +(186,179:18827699,44763257:173670,78643,0 ) -(186,175:6630773,37858385:25952256,505283,11795 -g186,175:11873653,37858385 -h186,175:11873653,37858385:2818050,0,0 -h186,175:14691703,37858385:0,0,0 -g186,175:9448823,37858385 -(186,175:9448823,37858385:2424830,485622,11795 -k186,175:11873653,37858385:882112 ) -g186,175:13392122,37858385 -(186,175:13650065,37858385:501378,78643,0 -$186,175:13650065,37858385 -(186,175:13813919,37858385:173670,78643,0 +(186,179:19165223,44763257:501378,78643,0 +(186,179:19329077,44763257:173670,78643,0 ) -$186,175:14151443,37858385 ) -(186,175:14151443,37858385:501378,78643,0 -(186,175:14315297,37858385:173670,78643,0 +(186,179:19666601,44763257:501378,78643,0 +(186,179:19830455,44763257:173670,78643,0 ) ) -(186,175:14652821,37858385:501378,78643,0 -(186,175:14816675,37858385:173670,78643,0 +(186,179:20167979,44763257:501378,78643,0 +(186,179:20331833,44763257:173670,78643,0 ) ) -(186,175:15154199,37858385:501378,78643,0 -(186,175:15318053,37858385:173670,78643,0 +(186,179:20669357,44763257:501378,78643,0 +(186,179:20833211,44763257:173670,78643,0 ) ) -(186,175:15655577,37858385:501378,78643,0 -(186,175:15819431,37858385:173670,78643,0 +(186,179:21170735,44763257:501378,78643,0 +(186,179:21334589,44763257:173670,78643,0 ) ) -(186,175:16156955,37858385:501378,78643,0 -(186,175:16320809,37858385:173670,78643,0 +(186,179:21672113,44763257:501378,78643,0 +(186,179:21835967,44763257:173670,78643,0 ) ) -(186,175:16658333,37858385:501378,78643,0 -(186,175:16822187,37858385:173670,78643,0 +(186,179:22173491,44763257:501378,78643,0 +(186,179:22337345,44763257:173670,78643,0 ) ) -(186,175:17159711,37858385:501378,78643,0 -(186,175:17323565,37858385:173670,78643,0 +(186,179:22674869,44763257:501378,78643,0 +(186,179:22838723,44763257:173670,78643,0 ) ) -(186,175:17661089,37858385:501378,78643,0 -(186,175:17824943,37858385:173670,78643,0 +(186,179:23176247,44763257:501378,78643,0 +(186,179:23340101,44763257:173670,78643,0 ) ) -(186,175:18162467,37858385:501378,78643,0 -(186,175:18326321,37858385:173670,78643,0 +(186,179:23677625,44763257:501378,78643,0 +(186,179:23841479,44763257:173670,78643,0 ) ) -(186,175:18663845,37858385:501378,78643,0 -(186,175:18827699,37858385:173670,78643,0 +(186,179:24179003,44763257:501378,78643,0 +(186,179:24342857,44763257:173670,78643,0 ) ) -(186,175:19165223,37858385:501378,78643,0 -(186,175:19329077,37858385:173670,78643,0 +(186,179:24680381,44763257:501378,78643,0 +(186,179:24844235,44763257:173670,78643,0 ) ) -(186,175:19666601,37858385:501378,78643,0 -(186,175:19830455,37858385:173670,78643,0 +(186,179:25181759,44763257:501378,78643,0 +(186,179:25345613,44763257:173670,78643,0 ) ) -(186,175:20167979,37858385:501378,78643,0 -(186,175:20331833,37858385:173670,78643,0 +(186,179:25683137,44763257:501378,78643,0 +(186,179:25846991,44763257:173670,78643,0 ) ) -(186,175:20669357,37858385:501378,78643,0 -(186,175:20833211,37858385:173670,78643,0 +(186,179:26184515,44763257:501378,78643,0 +(186,179:26348369,44763257:173670,78643,0 ) ) -(186,175:21170735,37858385:501378,78643,0 -(186,175:21334589,37858385:173670,78643,0 +(186,179:26685893,44763257:501378,78643,0 +(186,179:26849747,44763257:173670,78643,0 ) ) -(186,175:21672113,37858385:501378,78643,0 -(186,175:21835967,37858385:173670,78643,0 +(186,179:27187271,44763257:501378,78643,0 +(186,179:27351125,44763257:173670,78643,0 ) ) -(186,175:22173491,37858385:501378,78643,0 -(186,175:22337345,37858385:173670,78643,0 +(186,179:27688649,44763257:501378,78643,0 +(186,179:27852503,44763257:173670,78643,0 ) ) -(186,175:22674869,37858385:501378,78643,0 -(186,175:22838723,37858385:173670,78643,0 +(186,179:28190027,44763257:501378,78643,0 +(186,179:28353881,44763257:173670,78643,0 ) ) -(186,175:23176247,37858385:501378,78643,0 -(186,175:23340101,37858385:173670,78643,0 +(186,179:28691405,44763257:501378,78643,0 +(186,179:28855259,44763257:173670,78643,0 ) ) -(186,175:23677625,37858385:501378,78643,0 -(186,175:23841479,37858385:173670,78643,0 +(186,179:29192783,44763257:501378,78643,0 +(186,179:29356637,44763257:173670,78643,0 ) ) -(186,175:24179003,37858385:501378,78643,0 -(186,175:24342857,37858385:173670,78643,0 +(186,179:29694161,44763257:501378,78643,0 +(186,179:29858015,44763257:173670,78643,0 ) ) -(186,175:24680381,37858385:501378,78643,0 -(186,175:24844235,37858385:173670,78643,0 +(186,179:30195539,44763257:501378,78643,0 +(186,179:30359393,44763257:173670,78643,0 ) ) -(186,175:25181759,37858385:501378,78643,0 -(186,175:25345613,37858385:173670,78643,0 +(186,179:30696917,44763257:501378,78643,0 +(186,179:30860771,44763257:173670,78643,0 ) ) -(186,175:25683137,37858385:501378,78643,0 -(186,175:25846991,37858385:173670,78643,0 +(186,179:31239539,44763257:1343490,485622,11795 +k186,179:31239539,44763257:0 +k186,179:31387652,44763257:148113 ) +g186,179:30911859,44763257 +g186,179:32583029,44763257 ) -(186,175:26184515,37858385:501378,78643,0 -(186,175:26348369,37858385:173670,78643,0 +(186,180:6630773,45628337:25952256,485622,11795 +g186,180:12529013,45628337 +h186,180:12529013,45628337:3080190,0,0 +h186,180:15609203,45628337:0,0,0 +g186,180:9710963,45628337 +(186,180:9710963,45628337:2818050,485622,11795 +k186,180:12529013,45628337:1275332 ) +g186,180:15649182,45628337 +(186,180:15655577,45628337:501378,78643,0 +$186,180:15655577,45628337 +(186,180:15819431,45628337:173670,78643,0 ) -(186,175:26685893,37858385:501378,78643,0 -(186,175:26849747,37858385:173670,78643,0 +$186,180:16156955,45628337 ) +(186,180:16156955,45628337:501378,78643,0 +(186,180:16320809,45628337:173670,78643,0 ) -(186,175:27187271,37858385:501378,78643,0 -(186,175:27351125,37858385:173670,78643,0 ) +(186,180:16658333,45628337:501378,78643,0 +(186,180:16822187,45628337:173670,78643,0 ) -(186,175:27688649,37858385:501378,78643,0 -(186,175:27852503,37858385:173670,78643,0 ) +(186,180:17159711,45628337:501378,78643,0 +(186,180:17323565,45628337:173670,78643,0 ) -(186,175:28190027,37858385:501378,78643,0 -(186,175:28353881,37858385:173670,78643,0 ) +(186,180:17661089,45628337:501378,78643,0 +(186,180:17824943,45628337:173670,78643,0 ) -(186,175:28691405,37858385:501378,78643,0 -(186,175:28855259,37858385:173670,78643,0 ) +(186,180:18162467,45628337:501378,78643,0 +(186,180:18326321,45628337:173670,78643,0 ) -(186,175:29192783,37858385:501378,78643,0 -(186,175:29356637,37858385:173670,78643,0 ) +(186,180:18663845,45628337:501378,78643,0 +(186,180:18827699,45628337:173670,78643,0 ) -(186,175:29694161,37858385:501378,78643,0 -(186,175:29858015,37858385:173670,78643,0 ) +(186,180:19165223,45628337:501378,78643,0 +(186,180:19329077,45628337:173670,78643,0 ) -(186,175:30195539,37858385:501378,78643,0 -(186,175:30359393,37858385:173670,78643,0 ) +(186,180:19666601,45628337:501378,78643,0 +(186,180:19830455,45628337:173670,78643,0 ) -(186,175:30696917,37858385:501378,78643,0 -(186,175:30860771,37858385:173670,78643,0 ) +(186,180:20167979,45628337:501378,78643,0 +(186,180:20331833,45628337:173670,78643,0 ) -(186,175:31239538,37858385:1343490,485622,11795 -k186,175:31239538,37858385:0 -k186,175:31387651,37858385:148113 ) -g186,175:30911858,37858385 -g186,175:32583028,37858385 +(186,180:20669357,45628337:501378,78643,0 +(186,180:20833211,45628337:173670,78643,0 ) -(186,176:6630773,38699873:25952256,513147,126483 -g186,176:11873653,38699873 -h186,176:11873653,38699873:2818050,0,0 -h186,176:14691703,38699873:0,0,0 -g186,176:9448823,38699873 -(186,176:9448823,38699873:2424830,485622,11795 -k186,176:11873653,38699873:882112 ) -g186,176:14222463,38699873 -g186,176:17027403,38699873 -g186,176:18036657,38699873 -(186,176:18162467,38699873:501378,78643,0 -$186,176:18162467,38699873 -(186,176:18326321,38699873:173670,78643,0 +(186,180:21170735,45628337:501378,78643,0 +(186,180:21334589,45628337:173670,78643,0 ) -$186,176:18663845,38699873 ) -(186,176:18663845,38699873:501378,78643,0 -(186,176:18827699,38699873:173670,78643,0 +(186,180:21672113,45628337:501378,78643,0 +(186,180:21835967,45628337:173670,78643,0 ) ) -(186,176:19165223,38699873:501378,78643,0 -(186,176:19329077,38699873:173670,78643,0 +(186,180:22173491,45628337:501378,78643,0 +(186,180:22337345,45628337:173670,78643,0 ) ) -(186,176:19666601,38699873:501378,78643,0 -(186,176:19830455,38699873:173670,78643,0 +(186,180:22674869,45628337:501378,78643,0 +(186,180:22838723,45628337:173670,78643,0 ) ) -(186,176:20167979,38699873:501378,78643,0 -(186,176:20331833,38699873:173670,78643,0 +(186,180:23176247,45628337:501378,78643,0 +(186,180:23340101,45628337:173670,78643,0 ) ) -(186,176:20669357,38699873:501378,78643,0 -(186,176:20833211,38699873:173670,78643,0 +(186,180:23677625,45628337:501378,78643,0 +(186,180:23841479,45628337:173670,78643,0 ) ) -(186,176:21170735,38699873:501378,78643,0 -(186,176:21334589,38699873:173670,78643,0 +(186,180:24179003,45628337:501378,78643,0 +(186,180:24342857,45628337:173670,78643,0 ) ) -(186,176:21672113,38699873:501378,78643,0 -(186,176:21835967,38699873:173670,78643,0 +(186,180:24680381,45628337:501378,78643,0 +(186,180:24844235,45628337:173670,78643,0 ) ) -(186,176:22173491,38699873:501378,78643,0 -(186,176:22337345,38699873:173670,78643,0 +(186,180:25181759,45628337:501378,78643,0 +(186,180:25345613,45628337:173670,78643,0 ) ) -(186,176:22674869,38699873:501378,78643,0 -(186,176:22838723,38699873:173670,78643,0 +(186,180:25683137,45628337:501378,78643,0 +(186,180:25846991,45628337:173670,78643,0 ) ) -(186,176:23176247,38699873:501378,78643,0 -(186,176:23340101,38699873:173670,78643,0 +(186,180:26184515,45628337:501378,78643,0 +(186,180:26348369,45628337:173670,78643,0 ) ) -(186,176:23677625,38699873:501378,78643,0 -(186,176:23841479,38699873:173670,78643,0 +(186,180:26685893,45628337:501378,78643,0 +(186,180:26849747,45628337:173670,78643,0 ) ) -(186,176:24179003,38699873:501378,78643,0 -(186,176:24342857,38699873:173670,78643,0 +(186,180:27187271,45628337:501378,78643,0 +(186,180:27351125,45628337:173670,78643,0 ) ) -(186,176:24680381,38699873:501378,78643,0 -(186,176:24844235,38699873:173670,78643,0 +(186,180:27688649,45628337:501378,78643,0 +(186,180:27852503,45628337:173670,78643,0 ) ) -(186,176:25181759,38699873:501378,78643,0 -(186,176:25345613,38699873:173670,78643,0 +(186,180:28190027,45628337:501378,78643,0 +(186,180:28353881,45628337:173670,78643,0 ) ) -(186,176:25683137,38699873:501378,78643,0 -(186,176:25846991,38699873:173670,78643,0 +(186,180:28691405,45628337:501378,78643,0 +(186,180:28855259,45628337:173670,78643,0 ) ) -(186,176:26184515,38699873:501378,78643,0 -(186,176:26348369,38699873:173670,78643,0 +(186,180:29192783,45628337:501378,78643,0 +(186,180:29356637,45628337:173670,78643,0 ) ) -(186,176:26685893,38699873:501378,78643,0 -(186,176:26849747,38699873:173670,78643,0 +(186,180:29694161,45628337:501378,78643,0 +(186,180:29858015,45628337:173670,78643,0 ) ) -(186,176:27187271,38699873:501378,78643,0 -(186,176:27351125,38699873:173670,78643,0 +(186,180:30195539,45628337:501378,78643,0 +(186,180:30359393,45628337:173670,78643,0 ) ) -(186,176:27688649,38699873:501378,78643,0 -(186,176:27852503,38699873:173670,78643,0 +(186,180:30696917,45628337:501378,78643,0 +(186,180:30860771,45628337:173670,78643,0 ) ) -(186,176:28190027,38699873:501378,78643,0 -(186,176:28353881,38699873:173670,78643,0 +(186,180:31239539,45628337:1343490,485622,11795 +k186,180:31239539,45628337:0 +k186,180:31387652,45628337:148113 ) +g186,180:30911859,45628337 +g186,180:32583029,45628337 ) -(186,176:28691405,38699873:501378,78643,0 -(186,176:28855259,38699873:173670,78643,0 +] +(186,182:32583029,45706769:0,0,0 +g186,182:32583029,45706769 ) ) -(186,176:29192783,38699873:501378,78643,0 -(186,176:29356637,38699873:173670,78643,0 +] +(186,182:6630773,47279633:25952256,0,0 +h186,182:6630773,47279633:25952256,0,0 ) +] +(186,182:4262630,4025873:0,0,0 +[186,182:-473656,4025873:0,0,0 +(186,182:-473656,-710413:0,0,0 +(186,182:-473656,-710413:0,0,0 +g186,182:-473656,-710413 ) -(186,176:29694161,38699873:501378,78643,0 -(186,176:29858015,38699873:173670,78643,0 +g186,182:-473656,-710413 ) +] ) -(186,176:30195539,38699873:501378,78643,0 -(186,176:30359393,38699873:173670,78643,0 +] +!132463 +}5 +!11 +{6 +[186,233:4262630,47279633:28320399,43253760,0 +(186,233:4262630,4025873:0,0,0 +[186,233:-473656,4025873:0,0,0 +(186,233:-473656,-710413:0,0,0 +(186,233:-473656,-644877:0,0,0 +k186,233:-473656,-644877:-65536 ) +(186,233:-473656,4736287:0,0,0 +k186,233:-473656,4736287:5209943 ) -(186,176:30696917,38699873:501378,78643,0 -(186,176:30860771,38699873:173670,78643,0 +g186,233:-473656,-710413 ) +] ) -(186,176:31239539,38699873:1343490,485622,11795 -k186,176:31239539,38699873:0 -k186,176:31387652,38699873:148113 +[186,233:6630773,47279633:25952256,43253760,0 +[186,233:6630773,4812305:25952256,786432,0 +(186,233:6630773,4812305:25952256,485622,11795 +(186,233:6630773,4812305:25952256,485622,11795 +g186,233:3078558,4812305 +[186,233:3078558,4812305:0,0,0 +(186,233:3078558,2439708:0,1703936,0 +k186,233:1358238,2439708:-1720320 +(1,128:1358238,2439708:1720320,1703936,0 +(1,128:1358238,2439708:1179648,16384,0 +r186,233:2537886,2439708:1179648,16384,0 ) -g186,176:30911859,38699873 -g186,176:32583029,38699873 +g1,128:3062174,2439708 +(1,128:3062174,2439708:16384,1703936,0 +[1,128:3062174,2439708:25952256,1703936,0 +(1,128:3062174,1915420:25952256,1179648,0 +(1,128:3062174,1915420:16384,1179648,0 +r186,233:3078558,1915420:16384,1179648,0 ) -(186,177:6630773,39541361:25952256,485622,11795 -g186,177:11873653,39541361 -h186,177:11873653,39541361:2818050,0,0 -h186,177:14691703,39541361:0,0,0 -g186,177:9448823,39541361 -(186,177:9448823,39541361:2424830,485622,11795 -k186,177:11873653,39541361:882112 +k1,128:29014430,1915420:25935872 +g1,128:29014430,1915420 ) -g186,177:13277434,39541361 -(186,177:13650065,39541361:501378,78643,0 -$186,177:13650065,39541361 -(186,177:13813919,39541361:173670,78643,0 +] ) -$186,177:14151443,39541361 ) -(186,177:14151443,39541361:501378,78643,0 -(186,177:14315297,39541361:173670,78643,0 ) +] +[186,233:3078558,4812305:0,0,0 +(186,233:3078558,2439708:0,1703936,0 +g186,233:29030814,2439708 +g186,233:36135244,2439708 +(1,128:36135244,2439708:1720320,1703936,0 +(1,128:36135244,2439708:16384,1703936,0 +[1,128:36135244,2439708:25952256,1703936,0 +(1,128:36135244,1915420:25952256,1179648,0 +(1,128:36135244,1915420:16384,1179648,0 +r186,233:36151628,1915420:16384,1179648,0 ) -(186,177:14652821,39541361:501378,78643,0 -(186,177:14816675,39541361:173670,78643,0 +k1,128:62087500,1915420:25935872 +g1,128:62087500,1915420 ) +] ) -(186,177:15154199,39541361:501378,78643,0 -(186,177:15318053,39541361:173670,78643,0 +g1,128:36675916,2439708 +(1,128:36675916,2439708:1179648,16384,0 +r186,233:37855564,2439708:1179648,16384,0 ) ) -(186,177:15655577,39541361:501378,78643,0 -(186,177:15819431,39541361:173670,78643,0 +k186,233:3078556,2439708:-34777008 ) +] +[186,233:3078558,4812305:0,0,0 +(186,233:3078558,49800853:0,16384,2228224 +k186,233:1358238,49800853:-1720320 +(1,128:1358238,49800853:1720320,16384,2228224 +(1,128:1358238,49800853:1179648,16384,0 +r186,233:2537886,49800853:1179648,16384,0 ) -(186,177:16156955,39541361:501378,78643,0 -(186,177:16320809,39541361:173670,78643,0 +g1,128:3062174,49800853 +(1,128:3062174,52029077:16384,1703936,0 +[1,128:3062174,52029077:25952256,1703936,0 +(1,128:3062174,51504789:25952256,1179648,0 +(1,128:3062174,51504789:16384,1179648,0 +r186,233:3078558,51504789:16384,1179648,0 ) +k1,128:29014430,51504789:25935872 +g1,128:29014430,51504789 ) -(186,177:16658333,39541361:501378,78643,0 -(186,177:16822187,39541361:173670,78643,0 +] ) ) -(186,177:17159711,39541361:501378,78643,0 -(186,177:17323565,39541361:173670,78643,0 ) +] +[186,233:3078558,4812305:0,0,0 +(186,233:3078558,49800853:0,16384,2228224 +g186,233:29030814,49800853 +g186,233:36135244,49800853 +(1,128:36135244,49800853:1720320,16384,2228224 +(1,128:36135244,52029077:16384,1703936,0 +[1,128:36135244,52029077:25952256,1703936,0 +(1,128:36135244,51504789:25952256,1179648,0 +(1,128:36135244,51504789:16384,1179648,0 +r186,233:36151628,51504789:16384,1179648,0 ) -(186,177:17661089,39541361:501378,78643,0 -(186,177:17824943,39541361:173670,78643,0 +k1,128:62087500,51504789:25935872 +g1,128:62087500,51504789 ) +] ) -(186,177:18162467,39541361:501378,78643,0 -(186,177:18326321,39541361:173670,78643,0 +g1,128:36675916,49800853 +(1,128:36675916,49800853:1179648,16384,0 +r186,233:37855564,49800853:1179648,16384,0 ) ) -(186,177:18663845,39541361:501378,78643,0 -(186,177:18827699,39541361:173670,78643,0 +k186,233:3078556,49800853:-34777008 ) +] +g186,233:6630773,4812305 +g186,233:6630773,4812305 +g186,233:9585136,4812305 +k186,233:32016798,4812305:22431662 ) -(186,177:19165223,39541361:501378,78643,0 -(186,177:19329077,39541361:173670,78643,0 ) +] +[186,233:6630773,45706769:25952256,40108032,0 +(186,233:6630773,45706769:25952256,40108032,0 +(186,233:6630773,45706769:0,0,0 +g186,233:6630773,45706769 ) -(186,177:19666601,39541361:501378,78643,0 -(186,177:19830455,39541361:173670,78643,0 +[186,233:6630773,45706769:25952256,40108032,0 +(186,181:6630773,6254097:25952256,485622,11795 +g186,181:12529013,6254097 +h186,181:12529013,6254097:3080190,0,0 +h186,181:15609203,6254097:0,0,0 +g186,181:9710963,6254097 +(186,181:9710963,6254097:2818050,485622,11795 +k186,181:12529013,6254097:1275332 ) +g186,181:16062059,6254097 +(186,181:16156955,6254097:501378,78643,0 +$186,181:16156955,6254097 +(186,181:16320809,6254097:173670,78643,0 ) -(186,177:20167979,39541361:501378,78643,0 -(186,177:20331833,39541361:173670,78643,0 +$186,181:16658333,6254097 ) +(186,181:16658333,6254097:501378,78643,0 +(186,181:16822187,6254097:173670,78643,0 ) -(186,177:20669357,39541361:501378,78643,0 -(186,177:20833211,39541361:173670,78643,0 ) +(186,181:17159711,6254097:501378,78643,0 +(186,181:17323565,6254097:173670,78643,0 ) -(186,177:21170735,39541361:501378,78643,0 -(186,177:21334589,39541361:173670,78643,0 ) +(186,181:17661089,6254097:501378,78643,0 +(186,181:17824943,6254097:173670,78643,0 ) -(186,177:21672113,39541361:501378,78643,0 -(186,177:21835967,39541361:173670,78643,0 ) +(186,181:18162467,6254097:501378,78643,0 +(186,181:18326321,6254097:173670,78643,0 ) -(186,177:22173491,39541361:501378,78643,0 -(186,177:22337345,39541361:173670,78643,0 ) +(186,181:18663845,6254097:501378,78643,0 +(186,181:18827699,6254097:173670,78643,0 ) -(186,177:22674869,39541361:501378,78643,0 -(186,177:22838723,39541361:173670,78643,0 ) +(186,181:19165223,6254097:501378,78643,0 +(186,181:19329077,6254097:173670,78643,0 ) -(186,177:23176247,39541361:501378,78643,0 -(186,177:23340101,39541361:173670,78643,0 ) +(186,181:19666601,6254097:501378,78643,0 +(186,181:19830455,6254097:173670,78643,0 ) -(186,177:23677625,39541361:501378,78643,0 -(186,177:23841479,39541361:173670,78643,0 ) +(186,181:20167979,6254097:501378,78643,0 +(186,181:20331833,6254097:173670,78643,0 ) -(186,177:24179003,39541361:501378,78643,0 -(186,177:24342857,39541361:173670,78643,0 ) +(186,181:20669357,6254097:501378,78643,0 +(186,181:20833211,6254097:173670,78643,0 ) -(186,177:24680381,39541361:501378,78643,0 -(186,177:24844235,39541361:173670,78643,0 ) +(186,181:21170735,6254097:501378,78643,0 +(186,181:21334589,6254097:173670,78643,0 ) -(186,177:25181759,39541361:501378,78643,0 -(186,177:25345613,39541361:173670,78643,0 ) +(186,181:21672113,6254097:501378,78643,0 +(186,181:21835967,6254097:173670,78643,0 ) -(186,177:25683137,39541361:501378,78643,0 -(186,177:25846991,39541361:173670,78643,0 ) +(186,181:22173491,6254097:501378,78643,0 +(186,181:22337345,6254097:173670,78643,0 ) -(186,177:26184515,39541361:501378,78643,0 -(186,177:26348369,39541361:173670,78643,0 ) +(186,181:22674869,6254097:501378,78643,0 +(186,181:22838723,6254097:173670,78643,0 ) -(186,177:26685893,39541361:501378,78643,0 -(186,177:26849747,39541361:173670,78643,0 ) +(186,181:23176247,6254097:501378,78643,0 +(186,181:23340101,6254097:173670,78643,0 ) -(186,177:27187271,39541361:501378,78643,0 -(186,177:27351125,39541361:173670,78643,0 ) +(186,181:23677625,6254097:501378,78643,0 +(186,181:23841479,6254097:173670,78643,0 ) -(186,177:27688649,39541361:501378,78643,0 -(186,177:27852503,39541361:173670,78643,0 ) +(186,181:24179003,6254097:501378,78643,0 +(186,181:24342857,6254097:173670,78643,0 ) -(186,177:28190027,39541361:501378,78643,0 -(186,177:28353881,39541361:173670,78643,0 ) +(186,181:24680381,6254097:501378,78643,0 +(186,181:24844235,6254097:173670,78643,0 ) -(186,177:28691405,39541361:501378,78643,0 -(186,177:28855259,39541361:173670,78643,0 ) +(186,181:25181759,6254097:501378,78643,0 +(186,181:25345613,6254097:173670,78643,0 ) -(186,177:29192783,39541361:501378,78643,0 -(186,177:29356637,39541361:173670,78643,0 ) +(186,181:25683137,6254097:501378,78643,0 +(186,181:25846991,6254097:173670,78643,0 ) -(186,177:29694161,39541361:501378,78643,0 -(186,177:29858015,39541361:173670,78643,0 ) +(186,181:26184515,6254097:501378,78643,0 +(186,181:26348369,6254097:173670,78643,0 ) -(186,177:30195539,39541361:501378,78643,0 -(186,177:30359393,39541361:173670,78643,0 ) +(186,181:26685893,6254097:501378,78643,0 +(186,181:26849747,6254097:173670,78643,0 ) -(186,177:30696917,39541361:501378,78643,0 -(186,177:30860771,39541361:173670,78643,0 ) +(186,181:27187271,6254097:501378,78643,0 +(186,181:27351125,6254097:173670,78643,0 ) -(186,177:31239538,39541361:1343490,485622,11795 -k186,177:31239538,39541361:0 -k186,177:31387651,39541361:148113 ) -g186,177:30911858,39541361 -g186,177:32583028,39541361 +(186,181:27688649,6254097:501378,78643,0 +(186,181:27852503,6254097:173670,78643,0 ) -(186,178:6630773,40382849:25952256,505283,11795 -g186,178:11873653,40382849 -h186,178:11873653,40382849:2818050,0,0 -h186,178:14691703,40382849:0,0,0 -g186,178:9448823,40382849 -(186,178:9448823,40382849:2424830,485622,11795 -k186,178:11873653,40382849:882112 ) -g186,178:13304959,40382849 -g186,178:15185842,40382849 -(186,178:15655577,40382849:501378,78643,0 -$186,178:15655577,40382849 -(186,178:15819431,40382849:173670,78643,0 +(186,181:28190027,6254097:501378,78643,0 +(186,181:28353881,6254097:173670,78643,0 ) -$186,178:16156955,40382849 ) -(186,178:16156955,40382849:501378,78643,0 -(186,178:16320809,40382849:173670,78643,0 +(186,181:28691405,6254097:501378,78643,0 +(186,181:28855259,6254097:173670,78643,0 ) ) -(186,178:16658333,40382849:501378,78643,0 -(186,178:16822187,40382849:173670,78643,0 +(186,181:29192783,6254097:501378,78643,0 +(186,181:29356637,6254097:173670,78643,0 ) ) -(186,178:17159711,40382849:501378,78643,0 -(186,178:17323565,40382849:173670,78643,0 +(186,181:29694161,6254097:501378,78643,0 +(186,181:29858015,6254097:173670,78643,0 ) ) -(186,178:17661089,40382849:501378,78643,0 -(186,178:17824943,40382849:173670,78643,0 +(186,181:30195539,6254097:501378,78643,0 +(186,181:30359393,6254097:173670,78643,0 ) ) -(186,178:18162467,40382849:501378,78643,0 -(186,178:18326321,40382849:173670,78643,0 +(186,181:30696917,6254097:501378,78643,0 +(186,181:30860771,6254097:173670,78643,0 ) ) -(186,178:18663845,40382849:501378,78643,0 -(186,178:18827699,40382849:173670,78643,0 +(186,181:31239539,6254097:1343490,485622,11795 +k186,181:31239539,6254097:0 +k186,181:31387652,6254097:148113 ) +g186,181:30911859,6254097 +g186,181:32583029,6254097 ) -(186,178:19165223,40382849:501378,78643,0 -(186,178:19329077,40382849:173670,78643,0 +(186,182:6630773,7119177:25952256,505283,11795 +g186,182:12529013,7119177 +h186,182:12529013,7119177:3080190,0,0 +h186,182:15609203,7119177:0,0,0 +g186,182:9710963,7119177 +(186,182:9710963,7119177:2818050,485622,11795 +k186,182:12529013,7119177:1275332 ) +g186,182:16130216,7119177 +g186,182:17520890,7119177 +g186,182:19838898,7119177 +(186,182:20167979,7119177:501378,78643,0 +$186,182:20167979,7119177 +(186,182:20331833,7119177:173670,78643,0 ) -(186,178:19666601,40382849:501378,78643,0 -(186,178:19830455,40382849:173670,78643,0 +$186,182:20669357,7119177 ) +(186,182:20669357,7119177:501378,78643,0 +(186,182:20833211,7119177:173670,78643,0 ) -(186,178:20167979,40382849:501378,78643,0 -(186,178:20331833,40382849:173670,78643,0 ) +(186,182:21170735,7119177:501378,78643,0 +(186,182:21334589,7119177:173670,78643,0 ) -(186,178:20669357,40382849:501378,78643,0 -(186,178:20833211,40382849:173670,78643,0 ) +(186,182:21672113,7119177:501378,78643,0 +(186,182:21835967,7119177:173670,78643,0 ) -(186,178:21170735,40382849:501378,78643,0 -(186,178:21334589,40382849:173670,78643,0 ) +(186,182:22173491,7119177:501378,78643,0 +(186,182:22337345,7119177:173670,78643,0 ) -(186,178:21672113,40382849:501378,78643,0 -(186,178:21835967,40382849:173670,78643,0 ) +(186,182:22674869,7119177:501378,78643,0 +(186,182:22838723,7119177:173670,78643,0 ) -(186,178:22173491,40382849:501378,78643,0 -(186,178:22337345,40382849:173670,78643,0 ) +(186,182:23176247,7119177:501378,78643,0 +(186,182:23340101,7119177:173670,78643,0 ) -(186,178:22674869,40382849:501378,78643,0 -(186,178:22838723,40382849:173670,78643,0 ) +(186,182:23677625,7119177:501378,78643,0 +(186,182:23841479,7119177:173670,78643,0 ) -(186,178:23176247,40382849:501378,78643,0 -(186,178:23340101,40382849:173670,78643,0 ) +(186,182:24179003,7119177:501378,78643,0 +(186,182:24342857,7119177:173670,78643,0 ) -(186,178:23677625,40382849:501378,78643,0 -(186,178:23841479,40382849:173670,78643,0 ) +(186,182:24680381,7119177:501378,78643,0 +(186,182:24844235,7119177:173670,78643,0 ) -(186,178:24179003,40382849:501378,78643,0 -(186,178:24342857,40382849:173670,78643,0 ) +(186,182:25181759,7119177:501378,78643,0 +(186,182:25345613,7119177:173670,78643,0 ) -(186,178:24680381,40382849:501378,78643,0 -(186,178:24844235,40382849:173670,78643,0 ) +(186,182:25683137,7119177:501378,78643,0 +(186,182:25846991,7119177:173670,78643,0 ) -(186,178:25181759,40382849:501378,78643,0 -(186,178:25345613,40382849:173670,78643,0 ) +(186,182:26184515,7119177:501378,78643,0 +(186,182:26348369,7119177:173670,78643,0 ) -(186,178:25683137,40382849:501378,78643,0 -(186,178:25846991,40382849:173670,78643,0 ) +(186,182:26685893,7119177:501378,78643,0 +(186,182:26849747,7119177:173670,78643,0 ) -(186,178:26184515,40382849:501378,78643,0 -(186,178:26348369,40382849:173670,78643,0 ) +(186,182:27187271,7119177:501378,78643,0 +(186,182:27351125,7119177:173670,78643,0 ) -(186,178:26685893,40382849:501378,78643,0 -(186,178:26849747,40382849:173670,78643,0 ) +(186,182:27688649,7119177:501378,78643,0 +(186,182:27852503,7119177:173670,78643,0 ) -(186,178:27187271,40382849:501378,78643,0 -(186,178:27351125,40382849:173670,78643,0 ) +(186,182:28190027,7119177:501378,78643,0 +(186,182:28353881,7119177:173670,78643,0 ) -(186,178:27688649,40382849:501378,78643,0 -(186,178:27852503,40382849:173670,78643,0 ) +(186,182:28691405,7119177:501378,78643,0 +(186,182:28855259,7119177:173670,78643,0 ) -(186,178:28190027,40382849:501378,78643,0 -(186,178:28353881,40382849:173670,78643,0 ) +(186,182:29192783,7119177:501378,78643,0 +(186,182:29356637,7119177:173670,78643,0 ) -(186,178:28691405,40382849:501378,78643,0 -(186,178:28855259,40382849:173670,78643,0 ) +(186,182:29694161,7119177:501378,78643,0 +(186,182:29858015,7119177:173670,78643,0 ) -(186,178:29192783,40382849:501378,78643,0 -(186,178:29356637,40382849:173670,78643,0 ) +(186,182:30195539,7119177:501378,78643,0 +(186,182:30359393,7119177:173670,78643,0 ) -(186,178:29694161,40382849:501378,78643,0 -(186,178:29858015,40382849:173670,78643,0 ) +(186,182:30696917,7119177:501378,78643,0 +(186,182:30860771,7119177:173670,78643,0 ) -(186,178:30195539,40382849:501378,78643,0 -(186,178:30359393,40382849:173670,78643,0 ) +(186,182:31239539,7119177:1343490,485622,11795 +k186,182:31239539,7119177:0 +k186,182:31387652,7119177:148113 ) -(186,178:30696917,40382849:501378,78643,0 -(186,178:30860771,40382849:173670,78643,0 +g186,182:30911859,7119177 +g186,182:32583029,7119177 ) +(186,183:6630773,7984257:25952256,505283,126483 +g186,183:12529013,7984257 +h186,183:12529013,7984257:3080190,0,0 +h186,183:15609203,7984257:0,0,0 +g186,183:9710963,7984257 +(186,183:9710963,7984257:2818050,485622,11795 +k186,183:12529013,7984257:1275332 ) -(186,178:31239539,40382849:1343490,485622,11795 -k186,178:31239539,40382849:0 -k186,178:31387652,40382849:148113 +g186,183:16516878,7984257 +g186,183:17907552,7984257 +g186,183:20052545,7984257 +(186,183:20167979,7984257:501378,78643,0 +$186,183:20167979,7984257 +(186,183:20331833,7984257:173670,78643,0 ) -g186,178:30911859,40382849 -g186,178:32583029,40382849 +$186,183:20669357,7984257 ) -(186,179:6630773,41224337:25952256,485622,11795 -g186,179:9448823,41224337 -h186,179:9448823,41224337:983040,0,0 -h186,179:10431863,41224337:0,0,0 -g186,179:7613813,41224337 -(186,179:7613813,41224337:1835010,485622,11795 -k186,179:9448823,41224337:864422 +(186,183:20669357,7984257:501378,78643,0 +(186,183:20833211,7984257:173670,78643,0 ) -g186,179:12526393,41224337 -g186,179:12526393,41224337 -(186,179:12647309,41224337:501378,78643,0 -$186,179:12647309,41224337 -(186,179:12811163,41224337:173670,78643,0 ) -$186,179:13148687,41224337 +(186,183:21170735,7984257:501378,78643,0 +(186,183:21334589,7984257:173670,78643,0 ) -(186,179:13148687,41224337:501378,78643,0 -(186,179:13312541,41224337:173670,78643,0 ) +(186,183:21672113,7984257:501378,78643,0 +(186,183:21835967,7984257:173670,78643,0 ) -(186,179:13650065,41224337:501378,78643,0 -(186,179:13813919,41224337:173670,78643,0 ) +(186,183:22173491,7984257:501378,78643,0 +(186,183:22337345,7984257:173670,78643,0 ) -(186,179:14151443,41224337:501378,78643,0 -(186,179:14315297,41224337:173670,78643,0 ) +(186,183:22674869,7984257:501378,78643,0 +(186,183:22838723,7984257:173670,78643,0 ) -(186,179:14652821,41224337:501378,78643,0 -(186,179:14816675,41224337:173670,78643,0 ) +(186,183:23176247,7984257:501378,78643,0 +(186,183:23340101,7984257:173670,78643,0 ) -(186,179:15154199,41224337:501378,78643,0 -(186,179:15318053,41224337:173670,78643,0 ) +(186,183:23677625,7984257:501378,78643,0 +(186,183:23841479,7984257:173670,78643,0 ) -(186,179:15655577,41224337:501378,78643,0 -(186,179:15819431,41224337:173670,78643,0 ) +(186,183:24179003,7984257:501378,78643,0 +(186,183:24342857,7984257:173670,78643,0 ) -(186,179:16156955,41224337:501378,78643,0 -(186,179:16320809,41224337:173670,78643,0 ) +(186,183:24680381,7984257:501378,78643,0 +(186,183:24844235,7984257:173670,78643,0 ) -(186,179:16658333,41224337:501378,78643,0 -(186,179:16822187,41224337:173670,78643,0 ) +(186,183:25181759,7984257:501378,78643,0 +(186,183:25345613,7984257:173670,78643,0 ) -(186,179:17159711,41224337:501378,78643,0 -(186,179:17323565,41224337:173670,78643,0 ) +(186,183:25683137,7984257:501378,78643,0 +(186,183:25846991,7984257:173670,78643,0 ) -(186,179:17661089,41224337:501378,78643,0 -(186,179:17824943,41224337:173670,78643,0 ) +(186,183:26184515,7984257:501378,78643,0 +(186,183:26348369,7984257:173670,78643,0 ) -(186,179:18162467,41224337:501378,78643,0 -(186,179:18326321,41224337:173670,78643,0 ) +(186,183:26685893,7984257:501378,78643,0 +(186,183:26849747,7984257:173670,78643,0 ) -(186,179:18663845,41224337:501378,78643,0 -(186,179:18827699,41224337:173670,78643,0 ) +(186,183:27187271,7984257:501378,78643,0 +(186,183:27351125,7984257:173670,78643,0 ) -(186,179:19165223,41224337:501378,78643,0 -(186,179:19329077,41224337:173670,78643,0 ) +(186,183:27688649,7984257:501378,78643,0 +(186,183:27852503,7984257:173670,78643,0 ) -(186,179:19666601,41224337:501378,78643,0 -(186,179:19830455,41224337:173670,78643,0 ) +(186,183:28190027,7984257:501378,78643,0 +(186,183:28353881,7984257:173670,78643,0 ) -(186,179:20167979,41224337:501378,78643,0 -(186,179:20331833,41224337:173670,78643,0 ) +(186,183:28691405,7984257:501378,78643,0 +(186,183:28855259,7984257:173670,78643,0 ) -(186,179:20669357,41224337:501378,78643,0 -(186,179:20833211,41224337:173670,78643,0 ) +(186,183:29192783,7984257:501378,78643,0 +(186,183:29356637,7984257:173670,78643,0 ) -(186,179:21170735,41224337:501378,78643,0 -(186,179:21334589,41224337:173670,78643,0 ) +(186,183:29694161,7984257:501378,78643,0 +(186,183:29858015,7984257:173670,78643,0 ) -(186,179:21672113,41224337:501378,78643,0 -(186,179:21835967,41224337:173670,78643,0 ) +(186,183:30195539,7984257:501378,78643,0 +(186,183:30359393,7984257:173670,78643,0 ) -(186,179:22173491,41224337:501378,78643,0 -(186,179:22337345,41224337:173670,78643,0 ) +(186,183:30696917,7984257:501378,78643,0 +(186,183:30860771,7984257:173670,78643,0 ) -(186,179:22674869,41224337:501378,78643,0 -(186,179:22838723,41224337:173670,78643,0 ) +(186,183:31239539,7984257:1343490,485622,11795 +k186,183:31239539,7984257:0 +k186,183:31387652,7984257:148113 ) -(186,179:23176247,41224337:501378,78643,0 -(186,179:23340101,41224337:173670,78643,0 +g186,183:30911859,7984257 +g186,183:32583029,7984257 ) +(186,184:6630773,8849337:25952256,513147,126483 +g186,184:12529013,8849337 +h186,184:12529013,8849337:3080190,0,0 +h186,184:15609203,8849337:0,0,0 +g186,184:9710963,8849337 +(186,184:9710963,8849337:2818050,485622,11795 +k186,184:12529013,8849337:1275332 ) -(186,179:23677625,41224337:501378,78643,0 -(186,179:23841479,41224337:173670,78643,0 +g186,184:15143244,8849337 +g186,184:18169041,8849337 +(186,184:18663845,8849337:501378,78643,0 +$186,184:18663845,8849337 +(186,184:18827699,8849337:173670,78643,0 ) +$186,184:19165223,8849337 ) -(186,179:24179003,41224337:501378,78643,0 -(186,179:24342857,41224337:173670,78643,0 +(186,184:19165223,8849337:501378,78643,0 +(186,184:19329077,8849337:173670,78643,0 ) ) -(186,179:24680381,41224337:501378,78643,0 -(186,179:24844235,41224337:173670,78643,0 +(186,184:19666601,8849337:501378,78643,0 +(186,184:19830455,8849337:173670,78643,0 ) ) -(186,179:25181759,41224337:501378,78643,0 -(186,179:25345613,41224337:173670,78643,0 +(186,184:20167979,8849337:501378,78643,0 +(186,184:20331833,8849337:173670,78643,0 ) ) -(186,179:25683137,41224337:501378,78643,0 -(186,179:25846991,41224337:173670,78643,0 +(186,184:20669357,8849337:501378,78643,0 +(186,184:20833211,8849337:173670,78643,0 ) ) -(186,179:26184515,41224337:501378,78643,0 -(186,179:26348369,41224337:173670,78643,0 +(186,184:21170735,8849337:501378,78643,0 +(186,184:21334589,8849337:173670,78643,0 ) ) -(186,179:26685893,41224337:501378,78643,0 -(186,179:26849747,41224337:173670,78643,0 +(186,184:21672113,8849337:501378,78643,0 +(186,184:21835967,8849337:173670,78643,0 ) ) -(186,179:27187271,41224337:501378,78643,0 -(186,179:27351125,41224337:173670,78643,0 +(186,184:22173491,8849337:501378,78643,0 +(186,184:22337345,8849337:173670,78643,0 ) ) -(186,179:27688649,41224337:501378,78643,0 -(186,179:27852503,41224337:173670,78643,0 +(186,184:22674869,8849337:501378,78643,0 +(186,184:22838723,8849337:173670,78643,0 ) ) -(186,179:28190027,41224337:501378,78643,0 -(186,179:28353881,41224337:173670,78643,0 +(186,184:23176247,8849337:501378,78643,0 +(186,184:23340101,8849337:173670,78643,0 ) ) -(186,179:28691405,41224337:501378,78643,0 -(186,179:28855259,41224337:173670,78643,0 +(186,184:23677625,8849337:501378,78643,0 +(186,184:23841479,8849337:173670,78643,0 ) ) -(186,179:29192783,41224337:501378,78643,0 -(186,179:29356637,41224337:173670,78643,0 +(186,184:24179003,8849337:501378,78643,0 +(186,184:24342857,8849337:173670,78643,0 ) ) -(186,179:29694161,41224337:501378,78643,0 -(186,179:29858015,41224337:173670,78643,0 +(186,184:24680381,8849337:501378,78643,0 +(186,184:24844235,8849337:173670,78643,0 ) ) -(186,179:30195539,41224337:501378,78643,0 -(186,179:30359393,41224337:173670,78643,0 +(186,184:25181759,8849337:501378,78643,0 +(186,184:25345613,8849337:173670,78643,0 ) ) -(186,179:30696917,41224337:501378,78643,0 -(186,179:30860771,41224337:173670,78643,0 +(186,184:25683137,8849337:501378,78643,0 +(186,184:25846991,8849337:173670,78643,0 ) ) -(186,179:31239539,41224337:1343490,485622,11795 -k186,179:31239539,41224337:0 -k186,179:31387652,41224337:148113 +(186,184:26184515,8849337:501378,78643,0 +(186,184:26348369,8849337:173670,78643,0 ) -g186,179:30911859,41224337 -g186,179:32583029,41224337 ) -(186,180:6630773,42065825:25952256,485622,11795 -g186,180:11873653,42065825 -h186,180:11873653,42065825:2818050,0,0 -h186,180:14691703,42065825:0,0,0 -g186,180:9448823,42065825 -(186,180:9448823,42065825:2424830,485622,11795 -k186,180:11873653,42065825:882112 +(186,184:26685893,8849337:501378,78643,0 +(186,184:26849747,8849337:173670,78643,0 ) -g186,180:14993822,42065825 -(186,180:15154199,42065825:501378,78643,0 -$186,180:15154199,42065825 -(186,180:15318053,42065825:173670,78643,0 ) -$186,180:15655577,42065825 +(186,184:27187271,8849337:501378,78643,0 +(186,184:27351125,8849337:173670,78643,0 ) -(186,180:15655577,42065825:501378,78643,0 -(186,180:15819431,42065825:173670,78643,0 ) +(186,184:27688649,8849337:501378,78643,0 +(186,184:27852503,8849337:173670,78643,0 ) -(186,180:16156955,42065825:501378,78643,0 -(186,180:16320809,42065825:173670,78643,0 ) +(186,184:28190027,8849337:501378,78643,0 +(186,184:28353881,8849337:173670,78643,0 ) -(186,180:16658333,42065825:501378,78643,0 -(186,180:16822187,42065825:173670,78643,0 ) +(186,184:28691405,8849337:501378,78643,0 +(186,184:28855259,8849337:173670,78643,0 ) -(186,180:17159711,42065825:501378,78643,0 -(186,180:17323565,42065825:173670,78643,0 ) +(186,184:29192783,8849337:501378,78643,0 +(186,184:29356637,8849337:173670,78643,0 ) -(186,180:17661089,42065825:501378,78643,0 -(186,180:17824943,42065825:173670,78643,0 ) +(186,184:29694161,8849337:501378,78643,0 +(186,184:29858015,8849337:173670,78643,0 ) -(186,180:18162467,42065825:501378,78643,0 -(186,180:18326321,42065825:173670,78643,0 ) +(186,184:30195539,8849337:501378,78643,0 +(186,184:30359393,8849337:173670,78643,0 ) -(186,180:18663845,42065825:501378,78643,0 -(186,180:18827699,42065825:173670,78643,0 ) +(186,184:30696917,8849337:501378,78643,0 +(186,184:30860771,8849337:173670,78643,0 ) -(186,180:19165223,42065825:501378,78643,0 -(186,180:19329077,42065825:173670,78643,0 ) +(186,184:31239539,8849337:1343490,485622,11795 +k186,184:31239539,8849337:0 +k186,184:31387652,8849337:148113 ) -(186,180:19666601,42065825:501378,78643,0 -(186,180:19830455,42065825:173670,78643,0 +g186,184:30911859,8849337 +g186,184:32583029,8849337 ) +(186,185:6630773,9714417:25952256,505283,126483 +g186,185:12529013,9714417 +h186,185:12529013,9714417:3080190,0,0 +h186,185:15609203,9714417:0,0,0 +g186,185:9710963,9714417 +(186,185:9710963,9714417:2818050,485622,11795 +k186,185:12529013,9714417:1275332 ) -(186,180:20167979,42065825:501378,78643,0 -(186,180:20331833,42065825:173670,78643,0 +g186,185:13886919,9714417 +g186,185:15277593,9714417 +g186,185:18302734,9714417 +g186,185:19910332,9714417 +(186,185:20167979,9714417:501378,78643,0 +$186,185:20167979,9714417 +(186,185:20331833,9714417:173670,78643,0 ) +$186,185:20669357,9714417 ) -(186,180:20669357,42065825:501378,78643,0 -(186,180:20833211,42065825:173670,78643,0 +(186,185:20669357,9714417:501378,78643,0 +(186,185:20833211,9714417:173670,78643,0 ) ) -(186,180:21170735,42065825:501378,78643,0 -(186,180:21334589,42065825:173670,78643,0 +(186,185:21170735,9714417:501378,78643,0 +(186,185:21334589,9714417:173670,78643,0 ) ) -(186,180:21672113,42065825:501378,78643,0 -(186,180:21835967,42065825:173670,78643,0 +(186,185:21672113,9714417:501378,78643,0 +(186,185:21835967,9714417:173670,78643,0 ) ) -(186,180:22173491,42065825:501378,78643,0 -(186,180:22337345,42065825:173670,78643,0 +(186,185:22173491,9714417:501378,78643,0 +(186,185:22337345,9714417:173670,78643,0 ) ) -(186,180:22674869,42065825:501378,78643,0 -(186,180:22838723,42065825:173670,78643,0 +(186,185:22674869,9714417:501378,78643,0 +(186,185:22838723,9714417:173670,78643,0 ) ) -(186,180:23176247,42065825:501378,78643,0 -(186,180:23340101,42065825:173670,78643,0 +(186,185:23176247,9714417:501378,78643,0 +(186,185:23340101,9714417:173670,78643,0 ) ) -(186,180:23677625,42065825:501378,78643,0 -(186,180:23841479,42065825:173670,78643,0 +(186,185:23677625,9714417:501378,78643,0 +(186,185:23841479,9714417:173670,78643,0 ) ) -(186,180:24179003,42065825:501378,78643,0 -(186,180:24342857,42065825:173670,78643,0 +(186,185:24179003,9714417:501378,78643,0 +(186,185:24342857,9714417:173670,78643,0 ) ) -(186,180:24680381,42065825:501378,78643,0 -(186,180:24844235,42065825:173670,78643,0 +(186,185:24680381,9714417:501378,78643,0 +(186,185:24844235,9714417:173670,78643,0 ) ) -(186,180:25181759,42065825:501378,78643,0 -(186,180:25345613,42065825:173670,78643,0 +(186,185:25181759,9714417:501378,78643,0 +(186,185:25345613,9714417:173670,78643,0 ) ) -(186,180:25683137,42065825:501378,78643,0 -(186,180:25846991,42065825:173670,78643,0 +(186,185:25683137,9714417:501378,78643,0 +(186,185:25846991,9714417:173670,78643,0 ) ) -(186,180:26184515,42065825:501378,78643,0 -(186,180:26348369,42065825:173670,78643,0 +(186,185:26184515,9714417:501378,78643,0 +(186,185:26348369,9714417:173670,78643,0 ) ) -(186,180:26685893,42065825:501378,78643,0 -(186,180:26849747,42065825:173670,78643,0 +(186,185:26685893,9714417:501378,78643,0 +(186,185:26849747,9714417:173670,78643,0 ) ) -(186,180:27187271,42065825:501378,78643,0 -(186,180:27351125,42065825:173670,78643,0 +(186,185:27187271,9714417:501378,78643,0 +(186,185:27351125,9714417:173670,78643,0 ) ) -(186,180:27688649,42065825:501378,78643,0 -(186,180:27852503,42065825:173670,78643,0 +(186,185:27688649,9714417:501378,78643,0 +(186,185:27852503,9714417:173670,78643,0 ) ) -(186,180:28190027,42065825:501378,78643,0 -(186,180:28353881,42065825:173670,78643,0 +(186,185:28190027,9714417:501378,78643,0 +(186,185:28353881,9714417:173670,78643,0 ) ) -(186,180:28691405,42065825:501378,78643,0 -(186,180:28855259,42065825:173670,78643,0 +(186,185:28691405,9714417:501378,78643,0 +(186,185:28855259,9714417:173670,78643,0 ) ) -(186,180:29192783,42065825:501378,78643,0 -(186,180:29356637,42065825:173670,78643,0 +(186,185:29192783,9714417:501378,78643,0 +(186,185:29356637,9714417:173670,78643,0 ) ) -(186,180:29694161,42065825:501378,78643,0 -(186,180:29858015,42065825:173670,78643,0 +(186,185:29694161,9714417:501378,78643,0 +(186,185:29858015,9714417:173670,78643,0 ) ) -(186,180:30195539,42065825:501378,78643,0 -(186,180:30359393,42065825:173670,78643,0 +(186,185:30195539,9714417:501378,78643,0 +(186,185:30359393,9714417:173670,78643,0 ) ) -(186,180:30696917,42065825:501378,78643,0 -(186,180:30860771,42065825:173670,78643,0 +(186,185:30696917,9714417:501378,78643,0 +(186,185:30860771,9714417:173670,78643,0 ) ) -(186,180:31239539,42065825:1343490,485622,11795 -k186,180:31239539,42065825:0 -k186,180:31387652,42065825:148113 +(186,185:31239539,9714417:1343490,485622,11795 +k186,185:31239539,9714417:0 +k186,185:31387652,9714417:148113 ) -g186,180:30911859,42065825 -g186,180:32583029,42065825 +g186,185:30911859,9714417 +g186,185:32583029,9714417 ) -(186,181:6630773,42907313:25952256,485622,11795 -g186,181:11873653,42907313 -h186,181:11873653,42907313:2818050,0,0 -h186,181:14691703,42907313:0,0,0 -g186,181:9448823,42907313 -(186,181:9448823,42907313:2424830,485622,11795 -k186,181:11873653,42907313:882112 +(186,186:6630773,10579497:25952256,505283,126483 +g186,186:12529013,10579497 +h186,186:12529013,10579497:3080190,0,0 +h186,186:15609203,10579497:0,0,0 +g186,186:9710963,10579497 +(186,186:9710963,10579497:2818050,485622,11795 +k186,186:12529013,10579497:1275332 ) -g186,181:15406699,42907313 -(186,181:15655577,42907313:501378,78643,0 -$186,181:15655577,42907313 -(186,181:15819431,42907313:173670,78643,0 +g186,186:14603227,10579497 +g186,186:16210825,10579497 +(186,186:16658333,10579497:501378,78643,0 +$186,186:16658333,10579497 +(186,186:16822187,10579497:173670,78643,0 ) -$186,181:16156955,42907313 +$186,186:17159711,10579497 ) -(186,181:16156955,42907313:501378,78643,0 -(186,181:16320809,42907313:173670,78643,0 +(186,186:17159711,10579497:501378,78643,0 +(186,186:17323565,10579497:173670,78643,0 ) ) -(186,181:16658333,42907313:501378,78643,0 -(186,181:16822187,42907313:173670,78643,0 +(186,186:17661089,10579497:501378,78643,0 +(186,186:17824943,10579497:173670,78643,0 ) ) -(186,181:17159711,42907313:501378,78643,0 -(186,181:17323565,42907313:173670,78643,0 +(186,186:18162467,10579497:501378,78643,0 +(186,186:18326321,10579497:173670,78643,0 ) ) -(186,181:17661089,42907313:501378,78643,0 -(186,181:17824943,42907313:173670,78643,0 +(186,186:18663845,10579497:501378,78643,0 +(186,186:18827699,10579497:173670,78643,0 ) ) -(186,181:18162467,42907313:501378,78643,0 -(186,181:18326321,42907313:173670,78643,0 +(186,186:19165223,10579497:501378,78643,0 +(186,186:19329077,10579497:173670,78643,0 ) ) -(186,181:18663845,42907313:501378,78643,0 -(186,181:18827699,42907313:173670,78643,0 +(186,186:19666601,10579497:501378,78643,0 +(186,186:19830455,10579497:173670,78643,0 ) ) -(186,181:19165223,42907313:501378,78643,0 -(186,181:19329077,42907313:173670,78643,0 +(186,186:20167979,10579497:501378,78643,0 +(186,186:20331833,10579497:173670,78643,0 ) ) -(186,181:19666601,42907313:501378,78643,0 -(186,181:19830455,42907313:173670,78643,0 +(186,186:20669357,10579497:501378,78643,0 +(186,186:20833211,10579497:173670,78643,0 ) ) -(186,181:20167979,42907313:501378,78643,0 -(186,181:20331833,42907313:173670,78643,0 +(186,186:21170735,10579497:501378,78643,0 +(186,186:21334589,10579497:173670,78643,0 ) ) -(186,181:20669357,42907313:501378,78643,0 -(186,181:20833211,42907313:173670,78643,0 +(186,186:21672113,10579497:501378,78643,0 +(186,186:21835967,10579497:173670,78643,0 ) ) -(186,181:21170735,42907313:501378,78643,0 -(186,181:21334589,42907313:173670,78643,0 +(186,186:22173491,10579497:501378,78643,0 +(186,186:22337345,10579497:173670,78643,0 ) ) -(186,181:21672113,42907313:501378,78643,0 -(186,181:21835967,42907313:173670,78643,0 +(186,186:22674869,10579497:501378,78643,0 +(186,186:22838723,10579497:173670,78643,0 ) ) -(186,181:22173491,42907313:501378,78643,0 -(186,181:22337345,42907313:173670,78643,0 +(186,186:23176247,10579497:501378,78643,0 +(186,186:23340101,10579497:173670,78643,0 ) ) -(186,181:22674869,42907313:501378,78643,0 -(186,181:22838723,42907313:173670,78643,0 +(186,186:23677625,10579497:501378,78643,0 +(186,186:23841479,10579497:173670,78643,0 ) ) -(186,181:23176247,42907313:501378,78643,0 -(186,181:23340101,42907313:173670,78643,0 +(186,186:24179003,10579497:501378,78643,0 +(186,186:24342857,10579497:173670,78643,0 ) ) -(186,181:23677625,42907313:501378,78643,0 -(186,181:23841479,42907313:173670,78643,0 +(186,186:24680381,10579497:501378,78643,0 +(186,186:24844235,10579497:173670,78643,0 ) ) -(186,181:24179003,42907313:501378,78643,0 -(186,181:24342857,42907313:173670,78643,0 +(186,186:25181759,10579497:501378,78643,0 +(186,186:25345613,10579497:173670,78643,0 ) ) -(186,181:24680381,42907313:501378,78643,0 -(186,181:24844235,42907313:173670,78643,0 +(186,186:25683137,10579497:501378,78643,0 +(186,186:25846991,10579497:173670,78643,0 ) ) -(186,181:25181759,42907313:501378,78643,0 -(186,181:25345613,42907313:173670,78643,0 +(186,186:26184515,10579497:501378,78643,0 +(186,186:26348369,10579497:173670,78643,0 ) ) -(186,181:25683137,42907313:501378,78643,0 -(186,181:25846991,42907313:173670,78643,0 +(186,186:26685893,10579497:501378,78643,0 +(186,186:26849747,10579497:173670,78643,0 ) ) -(186,181:26184515,42907313:501378,78643,0 -(186,181:26348369,42907313:173670,78643,0 +(186,186:27187271,10579497:501378,78643,0 +(186,186:27351125,10579497:173670,78643,0 ) ) -(186,181:26685893,42907313:501378,78643,0 -(186,181:26849747,42907313:173670,78643,0 +(186,186:27688649,10579497:501378,78643,0 +(186,186:27852503,10579497:173670,78643,0 ) ) -(186,181:27187271,42907313:501378,78643,0 -(186,181:27351125,42907313:173670,78643,0 +(186,186:28190027,10579497:501378,78643,0 +(186,186:28353881,10579497:173670,78643,0 ) ) -(186,181:27688649,42907313:501378,78643,0 -(186,181:27852503,42907313:173670,78643,0 +(186,186:28691405,10579497:501378,78643,0 +(186,186:28855259,10579497:173670,78643,0 ) ) -(186,181:28190027,42907313:501378,78643,0 -(186,181:28353881,42907313:173670,78643,0 +(186,186:29192783,10579497:501378,78643,0 +(186,186:29356637,10579497:173670,78643,0 ) ) -(186,181:28691405,42907313:501378,78643,0 -(186,181:28855259,42907313:173670,78643,0 +(186,186:29694161,10579497:501378,78643,0 +(186,186:29858015,10579497:173670,78643,0 ) ) -(186,181:29192783,42907313:501378,78643,0 -(186,181:29356637,42907313:173670,78643,0 +(186,186:30195539,10579497:501378,78643,0 +(186,186:30359393,10579497:173670,78643,0 ) ) -(186,181:29694161,42907313:501378,78643,0 -(186,181:29858015,42907313:173670,78643,0 +(186,186:30696917,10579497:501378,78643,0 +(186,186:30860771,10579497:173670,78643,0 ) ) -(186,181:30195539,42907313:501378,78643,0 -(186,181:30359393,42907313:173670,78643,0 +(186,186:31239539,10579497:1343490,485622,11795 +k186,186:31239539,10579497:0 +k186,186:31387652,10579497:148113 ) +g186,186:30911859,10579497 +g186,186:32583029,10579497 ) -(186,181:30696917,42907313:501378,78643,0 -(186,181:30860771,42907313:173670,78643,0 +(186,187:6630773,11444577:25952256,505283,126483 +g186,187:9710963,11444577 +h186,187:9710963,11444577:983040,0,0 +h186,187:10694003,11444577:0,0,0 +g186,187:7613813,11444577 +(186,187:7613813,11444577:2097150,485622,11795 +k186,187:9710963,11444577:1126562 ) +g186,187:12285217,11444577 +g186,187:13761743,11444577 +g186,187:15849064,11444577 +g186,187:15849064,11444577 +(186,187:16156955,11444577:501378,78643,0 +$186,187:16156955,11444577 +(186,187:16320809,11444577:173670,78643,0 ) -(186,181:31239539,42907313:1343490,485622,11795 -k186,181:31239539,42907313:0 -k186,181:31387652,42907313:148113 +$186,187:16658333,11444577 ) -g186,181:30911859,42907313 -g186,181:32583029,42907313 +(186,187:16658333,11444577:501378,78643,0 +(186,187:16822187,11444577:173670,78643,0 ) -(186,182:6630773,43748801:25952256,505283,11795 -g186,182:11873653,43748801 -h186,182:11873653,43748801:2818050,0,0 -h186,182:14691703,43748801:0,0,0 -g186,182:9448823,43748801 -(186,182:9448823,43748801:2424830,485622,11795 -k186,182:11873653,43748801:882112 ) -g186,182:15474856,43748801 -g186,182:16865530,43748801 -g186,182:19183538,43748801 -(186,182:19666601,43748801:501378,78643,0 -$186,182:19666601,43748801 -(186,182:19830455,43748801:173670,78643,0 +(186,187:17159711,11444577:501378,78643,0 +(186,187:17323565,11444577:173670,78643,0 ) -$186,182:20167979,43748801 ) -(186,182:20167979,43748801:501378,78643,0 -(186,182:20331833,43748801:173670,78643,0 +(186,187:17661089,11444577:501378,78643,0 +(186,187:17824943,11444577:173670,78643,0 ) ) -(186,182:20669357,43748801:501378,78643,0 -(186,182:20833211,43748801:173670,78643,0 +(186,187:18162467,11444577:501378,78643,0 +(186,187:18326321,11444577:173670,78643,0 ) ) -(186,182:21170735,43748801:501378,78643,0 -(186,182:21334589,43748801:173670,78643,0 +(186,187:18663845,11444577:501378,78643,0 +(186,187:18827699,11444577:173670,78643,0 ) ) -(186,182:21672113,43748801:501378,78643,0 -(186,182:21835967,43748801:173670,78643,0 +(186,187:19165223,11444577:501378,78643,0 +(186,187:19329077,11444577:173670,78643,0 ) ) -(186,182:22173491,43748801:501378,78643,0 -(186,182:22337345,43748801:173670,78643,0 +(186,187:19666601,11444577:501378,78643,0 +(186,187:19830455,11444577:173670,78643,0 ) ) -(186,182:22674869,43748801:501378,78643,0 -(186,182:22838723,43748801:173670,78643,0 +(186,187:20167979,11444577:501378,78643,0 +(186,187:20331833,11444577:173670,78643,0 ) ) -(186,182:23176247,43748801:501378,78643,0 -(186,182:23340101,43748801:173670,78643,0 +(186,187:20669357,11444577:501378,78643,0 +(186,187:20833211,11444577:173670,78643,0 ) ) -(186,182:23677625,43748801:501378,78643,0 -(186,182:23841479,43748801:173670,78643,0 +(186,187:21170735,11444577:501378,78643,0 +(186,187:21334589,11444577:173670,78643,0 ) ) -(186,182:24179003,43748801:501378,78643,0 -(186,182:24342857,43748801:173670,78643,0 +(186,187:21672113,11444577:501378,78643,0 +(186,187:21835967,11444577:173670,78643,0 ) ) -(186,182:24680381,43748801:501378,78643,0 -(186,182:24844235,43748801:173670,78643,0 +(186,187:22173491,11444577:501378,78643,0 +(186,187:22337345,11444577:173670,78643,0 ) ) -(186,182:25181759,43748801:501378,78643,0 -(186,182:25345613,43748801:173670,78643,0 +(186,187:22674869,11444577:501378,78643,0 +(186,187:22838723,11444577:173670,78643,0 ) ) -(186,182:25683137,43748801:501378,78643,0 -(186,182:25846991,43748801:173670,78643,0 +(186,187:23176247,11444577:501378,78643,0 +(186,187:23340101,11444577:173670,78643,0 ) ) -(186,182:26184515,43748801:501378,78643,0 -(186,182:26348369,43748801:173670,78643,0 +(186,187:23677625,11444577:501378,78643,0 +(186,187:23841479,11444577:173670,78643,0 ) ) -(186,182:26685893,43748801:501378,78643,0 -(186,182:26849747,43748801:173670,78643,0 +(186,187:24179003,11444577:501378,78643,0 +(186,187:24342857,11444577:173670,78643,0 ) ) -(186,182:27187271,43748801:501378,78643,0 -(186,182:27351125,43748801:173670,78643,0 +(186,187:24680381,11444577:501378,78643,0 +(186,187:24844235,11444577:173670,78643,0 ) ) -(186,182:27688649,43748801:501378,78643,0 -(186,182:27852503,43748801:173670,78643,0 +(186,187:25181759,11444577:501378,78643,0 +(186,187:25345613,11444577:173670,78643,0 ) ) -(186,182:28190027,43748801:501378,78643,0 -(186,182:28353881,43748801:173670,78643,0 +(186,187:25683137,11444577:501378,78643,0 +(186,187:25846991,11444577:173670,78643,0 ) ) -(186,182:28691405,43748801:501378,78643,0 -(186,182:28855259,43748801:173670,78643,0 +(186,187:26184515,11444577:501378,78643,0 +(186,187:26348369,11444577:173670,78643,0 ) ) -(186,182:29192783,43748801:501378,78643,0 -(186,182:29356637,43748801:173670,78643,0 +(186,187:26685893,11444577:501378,78643,0 +(186,187:26849747,11444577:173670,78643,0 ) ) -(186,182:29694161,43748801:501378,78643,0 -(186,182:29858015,43748801:173670,78643,0 +(186,187:27187271,11444577:501378,78643,0 +(186,187:27351125,11444577:173670,78643,0 ) ) -(186,182:30195539,43748801:501378,78643,0 -(186,182:30359393,43748801:173670,78643,0 +(186,187:27688649,11444577:501378,78643,0 +(186,187:27852503,11444577:173670,78643,0 ) ) -(186,182:30696917,43748801:501378,78643,0 -(186,182:30860771,43748801:173670,78643,0 +(186,187:28190027,11444577:501378,78643,0 +(186,187:28353881,11444577:173670,78643,0 ) ) -(186,182:31239539,43748801:1343490,485622,11795 -k186,182:31239539,43748801:0 -k186,182:31387652,43748801:148113 +(186,187:28691405,11444577:501378,78643,0 +(186,187:28855259,11444577:173670,78643,0 ) -g186,182:30911859,43748801 -g186,182:32583029,43748801 ) -(186,183:6630773,44590289:25952256,505283,126483 -g186,183:11873653,44590289 -h186,183:11873653,44590289:2818050,0,0 -h186,183:14691703,44590289:0,0,0 -g186,183:9448823,44590289 -(186,183:9448823,44590289:2424830,485622,11795 -k186,183:11873653,44590289:882112 +(186,187:29192783,11444577:501378,78643,0 +(186,187:29356637,11444577:173670,78643,0 ) -g186,183:15861518,44590289 -g186,183:17252192,44590289 -g186,183:19397185,44590289 -(186,183:19666601,44590289:501378,78643,0 -$186,183:19666601,44590289 -(186,183:19830455,44590289:173670,78643,0 ) -$186,183:20167979,44590289 +(186,187:29694161,11444577:501378,78643,0 +(186,187:29858015,11444577:173670,78643,0 ) -(186,183:20167979,44590289:501378,78643,0 -(186,183:20331833,44590289:173670,78643,0 ) +(186,187:30195539,11444577:501378,78643,0 +(186,187:30359393,11444577:173670,78643,0 ) -(186,183:20669357,44590289:501378,78643,0 -(186,183:20833211,44590289:173670,78643,0 ) +(186,187:30696917,11444577:501378,78643,0 +(186,187:30860771,11444577:173670,78643,0 ) -(186,183:21170735,44590289:501378,78643,0 -(186,183:21334589,44590289:173670,78643,0 ) +(186,187:31239539,11444577:1343490,485622,11795 +k186,187:31239539,11444577:0 +k186,187:31387652,11444577:148113 ) -(186,183:21672113,44590289:501378,78643,0 -(186,183:21835967,44590289:173670,78643,0 +g186,187:30911859,11444577 +g186,187:32583029,11444577 ) +(186,188:6630773,12309657:25952256,485622,11795 +g186,188:9710963,12309657 +h186,188:9710963,12309657:983040,0,0 +h186,188:10694003,12309657:0,0,0 +g186,188:7613813,12309657 +(186,188:7613813,12309657:2097150,485622,11795 +k186,188:9710963,12309657:1126562 ) -(186,183:22173491,44590289:501378,78643,0 -(186,183:22337345,44590289:173670,78643,0 +g186,188:11893311,12309657 +g186,188:11893311,12309657 +(186,188:12145931,12309657:501378,78643,0 +$186,188:12145931,12309657 +(186,188:12309785,12309657:173670,78643,0 ) +$186,188:12647309,12309657 ) -(186,183:22674869,44590289:501378,78643,0 -(186,183:22838723,44590289:173670,78643,0 +(186,188:12647309,12309657:501378,78643,0 +(186,188:12811163,12309657:173670,78643,0 ) ) -(186,183:23176247,44590289:501378,78643,0 -(186,183:23340101,44590289:173670,78643,0 +(186,188:13148687,12309657:501378,78643,0 +(186,188:13312541,12309657:173670,78643,0 ) ) -(186,183:23677625,44590289:501378,78643,0 -(186,183:23841479,44590289:173670,78643,0 +(186,188:13650065,12309657:501378,78643,0 +(186,188:13813919,12309657:173670,78643,0 ) ) -(186,183:24179003,44590289:501378,78643,0 -(186,183:24342857,44590289:173670,78643,0 +(186,188:14151443,12309657:501378,78643,0 +(186,188:14315297,12309657:173670,78643,0 ) ) -(186,183:24680381,44590289:501378,78643,0 -(186,183:24844235,44590289:173670,78643,0 +(186,188:14652821,12309657:501378,78643,0 +(186,188:14816675,12309657:173670,78643,0 ) ) -(186,183:25181759,44590289:501378,78643,0 -(186,183:25345613,44590289:173670,78643,0 +(186,188:15154199,12309657:501378,78643,0 +(186,188:15318053,12309657:173670,78643,0 ) ) -(186,183:25683137,44590289:501378,78643,0 -(186,183:25846991,44590289:173670,78643,0 +(186,188:15655577,12309657:501378,78643,0 +(186,188:15819431,12309657:173670,78643,0 ) ) -(186,183:26184515,44590289:501378,78643,0 -(186,183:26348369,44590289:173670,78643,0 +(186,188:16156955,12309657:501378,78643,0 +(186,188:16320809,12309657:173670,78643,0 ) ) -(186,183:26685893,44590289:501378,78643,0 -(186,183:26849747,44590289:173670,78643,0 +(186,188:16658333,12309657:501378,78643,0 +(186,188:16822187,12309657:173670,78643,0 ) ) -(186,183:27187271,44590289:501378,78643,0 -(186,183:27351125,44590289:173670,78643,0 +(186,188:17159711,12309657:501378,78643,0 +(186,188:17323565,12309657:173670,78643,0 ) ) -(186,183:27688649,44590289:501378,78643,0 -(186,183:27852503,44590289:173670,78643,0 +(186,188:17661089,12309657:501378,78643,0 +(186,188:17824943,12309657:173670,78643,0 ) ) -(186,183:28190027,44590289:501378,78643,0 -(186,183:28353881,44590289:173670,78643,0 +(186,188:18162467,12309657:501378,78643,0 +(186,188:18326321,12309657:173670,78643,0 ) ) -(186,183:28691405,44590289:501378,78643,0 -(186,183:28855259,44590289:173670,78643,0 +(186,188:18663845,12309657:501378,78643,0 +(186,188:18827699,12309657:173670,78643,0 ) ) -(186,183:29192783,44590289:501378,78643,0 -(186,183:29356637,44590289:173670,78643,0 +(186,188:19165223,12309657:501378,78643,0 +(186,188:19329077,12309657:173670,78643,0 ) ) -(186,183:29694161,44590289:501378,78643,0 -(186,183:29858015,44590289:173670,78643,0 +(186,188:19666601,12309657:501378,78643,0 +(186,188:19830455,12309657:173670,78643,0 ) ) -(186,183:30195539,44590289:501378,78643,0 -(186,183:30359393,44590289:173670,78643,0 +(186,188:20167979,12309657:501378,78643,0 +(186,188:20331833,12309657:173670,78643,0 ) ) -(186,183:30696917,44590289:501378,78643,0 -(186,183:30860771,44590289:173670,78643,0 +(186,188:20669357,12309657:501378,78643,0 +(186,188:20833211,12309657:173670,78643,0 ) ) -(186,183:31239539,44590289:1343490,485622,11795 -k186,183:31239539,44590289:0 -k186,183:31387652,44590289:148113 +(186,188:21170735,12309657:501378,78643,0 +(186,188:21334589,12309657:173670,78643,0 ) -g186,183:30911859,44590289 -g186,183:32583029,44590289 ) -(186,184:6630773,45431777:25952256,513147,126483 -g186,184:11873653,45431777 -h186,184:11873653,45431777:2818050,0,0 -h186,184:14691703,45431777:0,0,0 -g186,184:9448823,45431777 -(186,184:9448823,45431777:2424830,485622,11795 -k186,184:11873653,45431777:882112 +(186,188:21672113,12309657:501378,78643,0 +(186,188:21835967,12309657:173670,78643,0 ) -g186,184:14487884,45431777 -g186,184:17513681,45431777 -(186,184:17661089,45431777:501378,78643,0 -$186,184:17661089,45431777 -(186,184:17824943,45431777:173670,78643,0 ) -$186,184:18162467,45431777 +(186,188:22173491,12309657:501378,78643,0 +(186,188:22337345,12309657:173670,78643,0 ) -(186,184:18162467,45431777:501378,78643,0 -(186,184:18326321,45431777:173670,78643,0 ) +(186,188:22674869,12309657:501378,78643,0 +(186,188:22838723,12309657:173670,78643,0 ) -(186,184:18663845,45431777:501378,78643,0 -(186,184:18827699,45431777:173670,78643,0 ) +(186,188:23176247,12309657:501378,78643,0 +(186,188:23340101,12309657:173670,78643,0 ) -(186,184:19165223,45431777:501378,78643,0 -(186,184:19329077,45431777:173670,78643,0 ) +(186,188:23677625,12309657:501378,78643,0 +(186,188:23841479,12309657:173670,78643,0 ) -(186,184:19666601,45431777:501378,78643,0 -(186,184:19830455,45431777:173670,78643,0 ) +(186,188:24179003,12309657:501378,78643,0 +(186,188:24342857,12309657:173670,78643,0 ) -(186,184:20167979,45431777:501378,78643,0 -(186,184:20331833,45431777:173670,78643,0 ) +(186,188:24680381,12309657:501378,78643,0 +(186,188:24844235,12309657:173670,78643,0 ) -(186,184:20669357,45431777:501378,78643,0 -(186,184:20833211,45431777:173670,78643,0 ) +(186,188:25181759,12309657:501378,78643,0 +(186,188:25345613,12309657:173670,78643,0 ) -(186,184:21170735,45431777:501378,78643,0 -(186,184:21334589,45431777:173670,78643,0 ) +(186,188:25683137,12309657:501378,78643,0 +(186,188:25846991,12309657:173670,78643,0 ) -(186,184:21672113,45431777:501378,78643,0 -(186,184:21835967,45431777:173670,78643,0 ) +(186,188:26184515,12309657:501378,78643,0 +(186,188:26348369,12309657:173670,78643,0 ) -(186,184:22173491,45431777:501378,78643,0 -(186,184:22337345,45431777:173670,78643,0 ) +(186,188:26685893,12309657:501378,78643,0 +(186,188:26849747,12309657:173670,78643,0 ) -(186,184:22674869,45431777:501378,78643,0 -(186,184:22838723,45431777:173670,78643,0 ) +(186,188:27187271,12309657:501378,78643,0 +(186,188:27351125,12309657:173670,78643,0 ) -(186,184:23176247,45431777:501378,78643,0 -(186,184:23340101,45431777:173670,78643,0 ) +(186,188:27688649,12309657:501378,78643,0 +(186,188:27852503,12309657:173670,78643,0 ) -(186,184:23677625,45431777:501378,78643,0 -(186,184:23841479,45431777:173670,78643,0 ) +(186,188:28190027,12309657:501378,78643,0 +(186,188:28353881,12309657:173670,78643,0 ) -(186,184:24179003,45431777:501378,78643,0 -(186,184:24342857,45431777:173670,78643,0 ) +(186,188:28691405,12309657:501378,78643,0 +(186,188:28855259,12309657:173670,78643,0 ) -(186,184:24680381,45431777:501378,78643,0 -(186,184:24844235,45431777:173670,78643,0 ) +(186,188:29192783,12309657:501378,78643,0 +(186,188:29356637,12309657:173670,78643,0 ) -(186,184:25181759,45431777:501378,78643,0 -(186,184:25345613,45431777:173670,78643,0 ) +(186,188:29694161,12309657:501378,78643,0 +(186,188:29858015,12309657:173670,78643,0 ) -(186,184:25683137,45431777:501378,78643,0 -(186,184:25846991,45431777:173670,78643,0 ) +(186,188:30195539,12309657:501378,78643,0 +(186,188:30359393,12309657:173670,78643,0 ) -(186,184:26184515,45431777:501378,78643,0 -(186,184:26348369,45431777:173670,78643,0 ) +(186,188:30696917,12309657:501378,78643,0 +(186,188:30860771,12309657:173670,78643,0 ) -(186,184:26685893,45431777:501378,78643,0 -(186,184:26849747,45431777:173670,78643,0 ) +(186,188:31239539,12309657:1343490,485622,11795 +k186,188:31239539,12309657:0 +k186,188:31387652,12309657:148113 ) -(186,184:27187271,45431777:501378,78643,0 -(186,184:27351125,45431777:173670,78643,0 +g186,188:30911859,12309657 +g186,188:32583029,12309657 ) +(186,189:6630773,13174737:25952256,505283,11795 +g186,189:9710963,13174737 +h186,189:9710963,13174737:983040,0,0 +h186,189:10694003,13174737:0,0,0 +g186,189:7613813,13174737 +(186,189:7613813,13174737:2097150,485622,11795 +k186,189:9710963,13174737:1126562 ) -(186,184:27688649,45431777:501378,78643,0 -(186,184:27852503,45431777:173670,78643,0 +g186,189:11837606,13174737 +g186,189:11837606,13174737 +(186,189:12145931,13174737:501378,78643,0 +$186,189:12145931,13174737 +(186,189:12309785,13174737:173670,78643,0 ) +$186,189:12647309,13174737 ) -(186,184:28190027,45431777:501378,78643,0 -(186,184:28353881,45431777:173670,78643,0 +(186,189:12647309,13174737:501378,78643,0 +(186,189:12811163,13174737:173670,78643,0 ) ) -(186,184:28691405,45431777:501378,78643,0 -(186,184:28855259,45431777:173670,78643,0 +(186,189:13148687,13174737:501378,78643,0 +(186,189:13312541,13174737:173670,78643,0 ) ) -(186,184:29192783,45431777:501378,78643,0 -(186,184:29356637,45431777:173670,78643,0 +(186,189:13650065,13174737:501378,78643,0 +(186,189:13813919,13174737:173670,78643,0 ) ) -(186,184:29694161,45431777:501378,78643,0 -(186,184:29858015,45431777:173670,78643,0 +(186,189:14151443,13174737:501378,78643,0 +(186,189:14315297,13174737:173670,78643,0 ) ) -(186,184:30195539,45431777:501378,78643,0 -(186,184:30359393,45431777:173670,78643,0 +(186,189:14652821,13174737:501378,78643,0 +(186,189:14816675,13174737:173670,78643,0 ) ) -(186,184:30696917,45431777:501378,78643,0 -(186,184:30860771,45431777:173670,78643,0 +(186,189:15154199,13174737:501378,78643,0 +(186,189:15318053,13174737:173670,78643,0 ) ) -(186,184:31239539,45431777:1343490,485622,11795 -k186,184:31239539,45431777:0 -k186,184:31387652,45431777:148113 +(186,189:15655577,13174737:501378,78643,0 +(186,189:15819431,13174737:173670,78643,0 ) -g186,184:30911859,45431777 -g186,184:32583029,45431777 ) -] -(186,186:32583029,45706769:0,0,0 -g186,186:32583029,45706769 +(186,189:16156955,13174737:501378,78643,0 +(186,189:16320809,13174737:173670,78643,0 ) ) -] -(186,186:6630773,47279633:25952256,0,0 -h186,186:6630773,47279633:25952256,0,0 +(186,189:16658333,13174737:501378,78643,0 +(186,189:16822187,13174737:173670,78643,0 ) -] -(186,186:4262630,4025873:0,0,0 -[186,186:-473656,4025873:0,0,0 -(186,186:-473656,-710413:0,0,0 -(186,186:-473656,-710413:0,0,0 -g186,186:-473656,-710413 ) -g186,186:-473656,-710413 +(186,189:17159711,13174737:501378,78643,0 +(186,189:17323565,13174737:173670,78643,0 ) -] ) -] -!138670 -}5 -!11 -{6 -[186,239:4262630,47279633:28320399,43253760,0 -(186,239:4262630,4025873:0,0,0 -[186,239:-473656,4025873:0,0,0 -(186,239:-473656,-710413:0,0,0 -(186,239:-473656,-644877:0,0,0 -k186,239:-473656,-644877:-65536 +(186,189:17661089,13174737:501378,78643,0 +(186,189:17824943,13174737:173670,78643,0 ) -(186,239:-473656,4736287:0,0,0 -k186,239:-473656,4736287:5209943 ) -g186,239:-473656,-710413 +(186,189:18162467,13174737:501378,78643,0 +(186,189:18326321,13174737:173670,78643,0 ) -] ) -[186,239:6630773,47279633:25952256,43253760,0 -[186,239:6630773,4812305:25952256,786432,0 -(186,239:6630773,4812305:25952256,485622,11795 -(186,239:6630773,4812305:25952256,485622,11795 -g186,239:3078558,4812305 -[186,239:3078558,4812305:0,0,0 -(186,239:3078558,2439708:0,1703936,0 -k186,239:1358238,2439708:-1720320 -(1,135:1358238,2439708:1720320,1703936,0 -(1,135:1358238,2439708:1179648,16384,0 -r186,239:2537886,2439708:1179648,16384,0 +(186,189:18663845,13174737:501378,78643,0 +(186,189:18827699,13174737:173670,78643,0 ) -g1,135:3062174,2439708 -(1,135:3062174,2439708:16384,1703936,0 -[1,135:3062174,2439708:25952256,1703936,0 -(1,135:3062174,1915420:25952256,1179648,0 -(1,135:3062174,1915420:16384,1179648,0 -r186,239:3078558,1915420:16384,1179648,0 ) -k1,135:29014430,1915420:25935872 -g1,135:29014430,1915420 +(186,189:19165223,13174737:501378,78643,0 +(186,189:19329077,13174737:173670,78643,0 ) -] ) +(186,189:19666601,13174737:501378,78643,0 +(186,189:19830455,13174737:173670,78643,0 ) ) -] -[186,239:3078558,4812305:0,0,0 -(186,239:3078558,2439708:0,1703936,0 -g186,239:29030814,2439708 -g186,239:36135244,2439708 -(1,135:36135244,2439708:1720320,1703936,0 -(1,135:36135244,2439708:16384,1703936,0 -[1,135:36135244,2439708:25952256,1703936,0 -(1,135:36135244,1915420:25952256,1179648,0 -(1,135:36135244,1915420:16384,1179648,0 -r186,239:36151628,1915420:16384,1179648,0 +(186,189:20167979,13174737:501378,78643,0 +(186,189:20331833,13174737:173670,78643,0 ) -k1,135:62087500,1915420:25935872 -g1,135:62087500,1915420 ) -] +(186,189:20669357,13174737:501378,78643,0 +(186,189:20833211,13174737:173670,78643,0 ) -g1,135:36675916,2439708 -(1,135:36675916,2439708:1179648,16384,0 -r186,239:37855564,2439708:1179648,16384,0 ) +(186,189:21170735,13174737:501378,78643,0 +(186,189:21334589,13174737:173670,78643,0 ) -k186,239:3078556,2439708:-34777008 ) -] -[186,239:3078558,4812305:0,0,0 -(186,239:3078558,49800853:0,16384,2228224 -k186,239:1358238,49800853:-1720320 -(1,135:1358238,49800853:1720320,16384,2228224 -(1,135:1358238,49800853:1179648,16384,0 -r186,239:2537886,49800853:1179648,16384,0 +(186,189:21672113,13174737:501378,78643,0 +(186,189:21835967,13174737:173670,78643,0 ) -g1,135:3062174,49800853 -(1,135:3062174,52029077:16384,1703936,0 -[1,135:3062174,52029077:25952256,1703936,0 -(1,135:3062174,51504789:25952256,1179648,0 -(1,135:3062174,51504789:16384,1179648,0 -r186,239:3078558,51504789:16384,1179648,0 ) -k1,135:29014430,51504789:25935872 -g1,135:29014430,51504789 +(186,189:22173491,13174737:501378,78643,0 +(186,189:22337345,13174737:173670,78643,0 ) -] ) +(186,189:22674869,13174737:501378,78643,0 +(186,189:22838723,13174737:173670,78643,0 ) ) -] -[186,239:3078558,4812305:0,0,0 -(186,239:3078558,49800853:0,16384,2228224 -g186,239:29030814,49800853 -g186,239:36135244,49800853 -(1,135:36135244,49800853:1720320,16384,2228224 -(1,135:36135244,52029077:16384,1703936,0 -[1,135:36135244,52029077:25952256,1703936,0 -(1,135:36135244,51504789:25952256,1179648,0 -(1,135:36135244,51504789:16384,1179648,0 -r186,239:36151628,51504789:16384,1179648,0 +(186,189:23176247,13174737:501378,78643,0 +(186,189:23340101,13174737:173670,78643,0 ) -k1,135:62087500,51504789:25935872 -g1,135:62087500,51504789 ) -] +(186,189:23677625,13174737:501378,78643,0 +(186,189:23841479,13174737:173670,78643,0 ) -g1,135:36675916,49800853 -(1,135:36675916,49800853:1179648,16384,0 -r186,239:37855564,49800853:1179648,16384,0 ) +(186,189:24179003,13174737:501378,78643,0 +(186,189:24342857,13174737:173670,78643,0 ) -k186,239:3078556,49800853:-34777008 ) -] -g186,239:6630773,4812305 -g186,239:6630773,4812305 -g186,239:9585136,4812305 -k186,239:32016798,4812305:22431662 +(186,189:24680381,13174737:501378,78643,0 +(186,189:24844235,13174737:173670,78643,0 ) ) -] -[186,239:6630773,45706769:25952256,40108032,0 -(186,239:6630773,45706769:25952256,40108032,0 -(186,239:6630773,45706769:0,0,0 -g186,239:6630773,45706769 +(186,189:25181759,13174737:501378,78643,0 +(186,189:25345613,13174737:173670,78643,0 +) ) -[186,239:6630773,45706769:25952256,40108032,0 -(186,185:6630773,6254097:25952256,505283,126483 -g186,185:11873653,6254097 -h186,185:11873653,6254097:2818050,0,0 -h186,185:14691703,6254097:0,0,0 -g186,185:9448823,6254097 -(186,185:9448823,6254097:2424830,485622,11795 -k186,185:11873653,6254097:882112 +(186,189:25683137,13174737:501378,78643,0 +(186,189:25846991,13174737:173670,78643,0 ) -g186,185:13231559,6254097 -g186,185:14622233,6254097 -g186,185:17647374,6254097 -g186,185:19254972,6254097 -(186,185:19666601,6254097:501378,78643,0 -$186,185:19666601,6254097 -(186,185:19830455,6254097:173670,78643,0 ) -$186,185:20167979,6254097 +(186,189:26184515,13174737:501378,78643,0 +(186,189:26348369,13174737:173670,78643,0 ) -(186,185:20167979,6254097:501378,78643,0 -(186,185:20331833,6254097:173670,78643,0 ) +(186,189:26685893,13174737:501378,78643,0 +(186,189:26849747,13174737:173670,78643,0 ) -(186,185:20669357,6254097:501378,78643,0 -(186,185:20833211,6254097:173670,78643,0 ) +(186,189:27187271,13174737:501378,78643,0 +(186,189:27351125,13174737:173670,78643,0 ) -(186,185:21170735,6254097:501378,78643,0 -(186,185:21334589,6254097:173670,78643,0 ) +(186,189:27688649,13174737:501378,78643,0 +(186,189:27852503,13174737:173670,78643,0 ) -(186,185:21672113,6254097:501378,78643,0 -(186,185:21835967,6254097:173670,78643,0 ) +(186,189:28190027,13174737:501378,78643,0 +(186,189:28353881,13174737:173670,78643,0 ) -(186,185:22173491,6254097:501378,78643,0 -(186,185:22337345,6254097:173670,78643,0 ) +(186,189:28691405,13174737:501378,78643,0 +(186,189:28855259,13174737:173670,78643,0 ) -(186,185:22674869,6254097:501378,78643,0 -(186,185:22838723,6254097:173670,78643,0 ) +(186,189:29192783,13174737:501378,78643,0 +(186,189:29356637,13174737:173670,78643,0 ) -(186,185:23176247,6254097:501378,78643,0 -(186,185:23340101,6254097:173670,78643,0 ) +(186,189:29694161,13174737:501378,78643,0 +(186,189:29858015,13174737:173670,78643,0 ) -(186,185:23677625,6254097:501378,78643,0 -(186,185:23841479,6254097:173670,78643,0 ) +(186,189:30195539,13174737:501378,78643,0 +(186,189:30359393,13174737:173670,78643,0 ) -(186,185:24179003,6254097:501378,78643,0 -(186,185:24342857,6254097:173670,78643,0 ) +(186,189:30696917,13174737:501378,78643,0 +(186,189:30860771,13174737:173670,78643,0 ) -(186,185:24680381,6254097:501378,78643,0 -(186,185:24844235,6254097:173670,78643,0 ) +(186,189:31239538,13174737:1343490,485622,11795 +k186,189:31239538,13174737:0 +k186,189:31387651,13174737:148113 ) -(186,185:25181759,6254097:501378,78643,0 -(186,185:25345613,6254097:173670,78643,0 +g186,189:30911858,13174737 +g186,189:32583028,13174737 ) +(186,190:6630773,14039817:25952256,505283,126483 +g186,190:12529013,14039817 +h186,190:12529013,14039817:3080190,0,0 +h186,190:15609203,14039817:0,0,0 +g186,190:9710963,14039817 +(186,190:9710963,14039817:2818050,485622,11795 +k186,190:12529013,14039817:1275332 ) -(186,185:25683137,6254097:501378,78643,0 -(186,185:25846991,6254097:173670,78643,0 +g186,190:14112362,14039817 +g186,190:15503036,14039817 +g186,190:16803270,14039817 +g186,190:18647453,14039817 +(186,190:18663845,14039817:501378,78643,0 +$186,190:18663845,14039817 +(186,190:18827699,14039817:173670,78643,0 ) +$186,190:19165223,14039817 ) -(186,185:26184515,6254097:501378,78643,0 -(186,185:26348369,6254097:173670,78643,0 +(186,190:19165223,14039817:501378,78643,0 +(186,190:19329077,14039817:173670,78643,0 ) ) -(186,185:26685893,6254097:501378,78643,0 -(186,185:26849747,6254097:173670,78643,0 +(186,190:19666601,14039817:501378,78643,0 +(186,190:19830455,14039817:173670,78643,0 ) ) -(186,185:27187271,6254097:501378,78643,0 -(186,185:27351125,6254097:173670,78643,0 +(186,190:20167979,14039817:501378,78643,0 +(186,190:20331833,14039817:173670,78643,0 ) ) -(186,185:27688649,6254097:501378,78643,0 -(186,185:27852503,6254097:173670,78643,0 +(186,190:20669357,14039817:501378,78643,0 +(186,190:20833211,14039817:173670,78643,0 ) ) -(186,185:28190027,6254097:501378,78643,0 -(186,185:28353881,6254097:173670,78643,0 +(186,190:21170735,14039817:501378,78643,0 +(186,190:21334589,14039817:173670,78643,0 ) ) -(186,185:28691405,6254097:501378,78643,0 -(186,185:28855259,6254097:173670,78643,0 +(186,190:21672113,14039817:501378,78643,0 +(186,190:21835967,14039817:173670,78643,0 ) ) -(186,185:29192783,6254097:501378,78643,0 -(186,185:29356637,6254097:173670,78643,0 +(186,190:22173491,14039817:501378,78643,0 +(186,190:22337345,14039817:173670,78643,0 ) ) -(186,185:29694161,6254097:501378,78643,0 -(186,185:29858015,6254097:173670,78643,0 +(186,190:22674869,14039817:501378,78643,0 +(186,190:22838723,14039817:173670,78643,0 ) ) -(186,185:30195539,6254097:501378,78643,0 -(186,185:30359393,6254097:173670,78643,0 +(186,190:23176247,14039817:501378,78643,0 +(186,190:23340101,14039817:173670,78643,0 ) ) -(186,185:30696917,6254097:501378,78643,0 -(186,185:30860771,6254097:173670,78643,0 +(186,190:23677625,14039817:501378,78643,0 +(186,190:23841479,14039817:173670,78643,0 ) ) -(186,185:31239539,6254097:1343490,485622,11795 -k186,185:31239539,6254097:0 -k186,185:31387652,6254097:148113 +(186,190:24179003,14039817:501378,78643,0 +(186,190:24342857,14039817:173670,78643,0 ) -g186,185:30911859,6254097 -g186,185:32583029,6254097 ) -(186,186:6630773,7095585:25952256,505283,126483 -g186,186:11873653,7095585 -h186,186:11873653,7095585:2818050,0,0 -h186,186:14691703,7095585:0,0,0 -g186,186:9448823,7095585 -(186,186:9448823,7095585:2424830,485622,11795 -k186,186:11873653,7095585:882112 +(186,190:24680381,14039817:501378,78643,0 +(186,190:24844235,14039817:173670,78643,0 ) -g186,186:13947867,7095585 -g186,186:15555465,7095585 -(186,186:15655577,7095585:501378,78643,0 -$186,186:15655577,7095585 -(186,186:15819431,7095585:173670,78643,0 ) -$186,186:16156955,7095585 +(186,190:25181759,14039817:501378,78643,0 +(186,190:25345613,14039817:173670,78643,0 ) -(186,186:16156955,7095585:501378,78643,0 -(186,186:16320809,7095585:173670,78643,0 ) +(186,190:25683137,14039817:501378,78643,0 +(186,190:25846991,14039817:173670,78643,0 ) -(186,186:16658333,7095585:501378,78643,0 -(186,186:16822187,7095585:173670,78643,0 ) +(186,190:26184515,14039817:501378,78643,0 +(186,190:26348369,14039817:173670,78643,0 ) -(186,186:17159711,7095585:501378,78643,0 -(186,186:17323565,7095585:173670,78643,0 ) +(186,190:26685893,14039817:501378,78643,0 +(186,190:26849747,14039817:173670,78643,0 ) -(186,186:17661089,7095585:501378,78643,0 -(186,186:17824943,7095585:173670,78643,0 ) +(186,190:27187271,14039817:501378,78643,0 +(186,190:27351125,14039817:173670,78643,0 ) -(186,186:18162467,7095585:501378,78643,0 -(186,186:18326321,7095585:173670,78643,0 ) +(186,190:27688649,14039817:501378,78643,0 +(186,190:27852503,14039817:173670,78643,0 ) -(186,186:18663845,7095585:501378,78643,0 -(186,186:18827699,7095585:173670,78643,0 ) +(186,190:28190027,14039817:501378,78643,0 +(186,190:28353881,14039817:173670,78643,0 ) -(186,186:19165223,7095585:501378,78643,0 -(186,186:19329077,7095585:173670,78643,0 ) +(186,190:28691405,14039817:501378,78643,0 +(186,190:28855259,14039817:173670,78643,0 ) -(186,186:19666601,7095585:501378,78643,0 -(186,186:19830455,7095585:173670,78643,0 ) +(186,190:29192783,14039817:501378,78643,0 +(186,190:29356637,14039817:173670,78643,0 ) -(186,186:20167979,7095585:501378,78643,0 -(186,186:20331833,7095585:173670,78643,0 ) +(186,190:29694161,14039817:501378,78643,0 +(186,190:29858015,14039817:173670,78643,0 ) -(186,186:20669357,7095585:501378,78643,0 -(186,186:20833211,7095585:173670,78643,0 ) +(186,190:30195539,14039817:501378,78643,0 +(186,190:30359393,14039817:173670,78643,0 ) -(186,186:21170735,7095585:501378,78643,0 -(186,186:21334589,7095585:173670,78643,0 ) +(186,190:30696917,14039817:501378,78643,0 +(186,190:30860771,14039817:173670,78643,0 ) -(186,186:21672113,7095585:501378,78643,0 -(186,186:21835967,7095585:173670,78643,0 ) +(186,190:31239539,14039817:1343490,485622,11795 +k186,190:31239539,14039817:0 +k186,190:31387652,14039817:148113 ) -(186,186:22173491,7095585:501378,78643,0 -(186,186:22337345,7095585:173670,78643,0 +g186,190:30911859,14039817 +g186,190:32583029,14039817 ) +(186,191:6630773,14904897:25952256,505283,11795 +g186,191:12529013,14904897 +h186,191:12529013,14904897:3080190,0,0 +h186,191:15609203,14904897:0,0,0 +g186,191:9710963,14904897 +(186,191:9710963,14904897:2818050,485622,11795 +k186,191:12529013,14904897:1275332 ) -(186,186:22674869,7095585:501378,78643,0 -(186,186:22838723,7095585:173670,78643,0 +g186,191:16420540,14904897 +g186,191:18323050,14904897 +(186,191:18663845,14904897:501378,78643,0 +$186,191:18663845,14904897 +(186,191:18827699,14904897:173670,78643,0 ) +$186,191:19165223,14904897 ) -(186,186:23176247,7095585:501378,78643,0 -(186,186:23340101,7095585:173670,78643,0 +(186,191:19165223,14904897:501378,78643,0 +(186,191:19329077,14904897:173670,78643,0 ) ) -(186,186:23677625,7095585:501378,78643,0 -(186,186:23841479,7095585:173670,78643,0 +(186,191:19666601,14904897:501378,78643,0 +(186,191:19830455,14904897:173670,78643,0 ) ) -(186,186:24179003,7095585:501378,78643,0 -(186,186:24342857,7095585:173670,78643,0 +(186,191:20167979,14904897:501378,78643,0 +(186,191:20331833,14904897:173670,78643,0 ) ) -(186,186:24680381,7095585:501378,78643,0 -(186,186:24844235,7095585:173670,78643,0 +(186,191:20669357,14904897:501378,78643,0 +(186,191:20833211,14904897:173670,78643,0 ) ) -(186,186:25181759,7095585:501378,78643,0 -(186,186:25345613,7095585:173670,78643,0 +(186,191:21170735,14904897:501378,78643,0 +(186,191:21334589,14904897:173670,78643,0 ) ) -(186,186:25683137,7095585:501378,78643,0 -(186,186:25846991,7095585:173670,78643,0 +(186,191:21672113,14904897:501378,78643,0 +(186,191:21835967,14904897:173670,78643,0 ) ) -(186,186:26184515,7095585:501378,78643,0 -(186,186:26348369,7095585:173670,78643,0 +(186,191:22173491,14904897:501378,78643,0 +(186,191:22337345,14904897:173670,78643,0 ) ) -(186,186:26685893,7095585:501378,78643,0 -(186,186:26849747,7095585:173670,78643,0 +(186,191:22674869,14904897:501378,78643,0 +(186,191:22838723,14904897:173670,78643,0 ) ) -(186,186:27187271,7095585:501378,78643,0 -(186,186:27351125,7095585:173670,78643,0 +(186,191:23176247,14904897:501378,78643,0 +(186,191:23340101,14904897:173670,78643,0 ) ) -(186,186:27688649,7095585:501378,78643,0 -(186,186:27852503,7095585:173670,78643,0 +(186,191:23677625,14904897:501378,78643,0 +(186,191:23841479,14904897:173670,78643,0 ) ) -(186,186:28190027,7095585:501378,78643,0 -(186,186:28353881,7095585:173670,78643,0 +(186,191:24179003,14904897:501378,78643,0 +(186,191:24342857,14904897:173670,78643,0 ) ) -(186,186:28691405,7095585:501378,78643,0 -(186,186:28855259,7095585:173670,78643,0 +(186,191:24680381,14904897:501378,78643,0 +(186,191:24844235,14904897:173670,78643,0 ) ) -(186,186:29192783,7095585:501378,78643,0 -(186,186:29356637,7095585:173670,78643,0 +(186,191:25181759,14904897:501378,78643,0 +(186,191:25345613,14904897:173670,78643,0 ) ) -(186,186:29694161,7095585:501378,78643,0 -(186,186:29858015,7095585:173670,78643,0 +(186,191:25683137,14904897:501378,78643,0 +(186,191:25846991,14904897:173670,78643,0 ) ) -(186,186:30195539,7095585:501378,78643,0 -(186,186:30359393,7095585:173670,78643,0 +(186,191:26184515,14904897:501378,78643,0 +(186,191:26348369,14904897:173670,78643,0 ) ) -(186,186:30696917,7095585:501378,78643,0 -(186,186:30860771,7095585:173670,78643,0 +(186,191:26685893,14904897:501378,78643,0 +(186,191:26849747,14904897:173670,78643,0 ) ) -(186,186:31239539,7095585:1343490,485622,11795 -k186,186:31239539,7095585:0 -k186,186:31387652,7095585:148113 +(186,191:27187271,14904897:501378,78643,0 +(186,191:27351125,14904897:173670,78643,0 ) -g186,186:30911859,7095585 -g186,186:32583029,7095585 ) -(186,187:6630773,7937073:25952256,505283,126483 -g186,187:9448823,7937073 -h186,187:9448823,7937073:983040,0,0 -h186,187:10431863,7937073:0,0,0 -g186,187:7613813,7937073 -(186,187:7613813,7937073:1835010,485622,11795 -k186,187:9448823,7937073:864422 +(186,191:27688649,14904897:501378,78643,0 +(186,191:27852503,14904897:173670,78643,0 ) -g186,187:12023077,7937073 -g186,187:13499603,7937073 -g186,187:15586924,7937073 -g186,187:15586924,7937073 -(186,187:15655577,7937073:501378,78643,0 -$186,187:15655577,7937073 -(186,187:15819431,7937073:173670,78643,0 ) -$186,187:16156955,7937073 +(186,191:28190027,14904897:501378,78643,0 +(186,191:28353881,14904897:173670,78643,0 ) -(186,187:16156955,7937073:501378,78643,0 -(186,187:16320809,7937073:173670,78643,0 ) +(186,191:28691405,14904897:501378,78643,0 +(186,191:28855259,14904897:173670,78643,0 ) -(186,187:16658333,7937073:501378,78643,0 -(186,187:16822187,7937073:173670,78643,0 ) +(186,191:29192783,14904897:501378,78643,0 +(186,191:29356637,14904897:173670,78643,0 ) -(186,187:17159711,7937073:501378,78643,0 -(186,187:17323565,7937073:173670,78643,0 ) +(186,191:29694161,14904897:501378,78643,0 +(186,191:29858015,14904897:173670,78643,0 ) -(186,187:17661089,7937073:501378,78643,0 -(186,187:17824943,7937073:173670,78643,0 ) +(186,191:30195539,14904897:501378,78643,0 +(186,191:30359393,14904897:173670,78643,0 ) -(186,187:18162467,7937073:501378,78643,0 -(186,187:18326321,7937073:173670,78643,0 ) +(186,191:30696917,14904897:501378,78643,0 +(186,191:30860771,14904897:173670,78643,0 ) -(186,187:18663845,7937073:501378,78643,0 -(186,187:18827699,7937073:173670,78643,0 ) +(186,191:31239539,14904897:1343490,485622,11795 +k186,191:31239539,14904897:0 +k186,191:31387652,14904897:148113 ) -(186,187:19165223,7937073:501378,78643,0 -(186,187:19329077,7937073:173670,78643,0 +g186,191:30911859,14904897 +g186,191:32583029,14904897 ) +(186,197:6630773,15769977:25952256,513147,138281 +g186,197:12529013,15769977 +h186,197:12529013,15769977:3080190,0,0 +h186,197:15609203,15769977:0,0,0 +g186,197:9710963,15769977 +(186,197:9710963,15769977:2818050,485622,11795 +k186,197:12529013,15769977:1275332 ) -(186,187:19666601,7937073:501378,78643,0 -(186,187:19830455,7937073:173670,78643,0 +g186,197:14331253,15769977 +g186,197:15721927,15769977 +g186,197:17302000,15769977 +g186,197:19403739,15769977 +g186,197:20550619,15769977 +$186,197:20550619,15769977 +$186,197:21053280,15769977 +g186,197:21252509,15769977 +g186,197:22643183,15769977 +$186,197:22643183,15769977 +$186,197:23194996,15769977 +g186,197:23194996,15769977 +(186,197:23677625,15769977:501378,78643,0 +$186,197:23677625,15769977 +(186,197:23841479,15769977:173670,78643,0 ) +$186,197:24179003,15769977 ) -(186,187:20167979,7937073:501378,78643,0 -(186,187:20331833,7937073:173670,78643,0 +(186,197:24179003,15769977:501378,78643,0 +(186,197:24342857,15769977:173670,78643,0 ) ) -(186,187:20669357,7937073:501378,78643,0 -(186,187:20833211,7937073:173670,78643,0 +(186,197:24680381,15769977:501378,78643,0 +(186,197:24844235,15769977:173670,78643,0 ) ) -(186,187:21170735,7937073:501378,78643,0 -(186,187:21334589,7937073:173670,78643,0 +(186,197:25181759,15769977:501378,78643,0 +(186,197:25345613,15769977:173670,78643,0 ) ) -(186,187:21672113,7937073:501378,78643,0 -(186,187:21835967,7937073:173670,78643,0 +(186,197:25683137,15769977:501378,78643,0 +(186,197:25846991,15769977:173670,78643,0 ) ) -(186,187:22173491,7937073:501378,78643,0 -(186,187:22337345,7937073:173670,78643,0 +(186,197:26184515,15769977:501378,78643,0 +(186,197:26348369,15769977:173670,78643,0 ) ) -(186,187:22674869,7937073:501378,78643,0 -(186,187:22838723,7937073:173670,78643,0 +(186,197:26685893,15769977:501378,78643,0 +(186,197:26849747,15769977:173670,78643,0 ) ) -(186,187:23176247,7937073:501378,78643,0 -(186,187:23340101,7937073:173670,78643,0 +(186,197:27187271,15769977:501378,78643,0 +(186,197:27351125,15769977:173670,78643,0 ) ) -(186,187:23677625,7937073:501378,78643,0 -(186,187:23841479,7937073:173670,78643,0 +(186,197:27688649,15769977:501378,78643,0 +(186,197:27852503,15769977:173670,78643,0 ) ) -(186,187:24179003,7937073:501378,78643,0 -(186,187:24342857,7937073:173670,78643,0 +(186,197:28190027,15769977:501378,78643,0 +(186,197:28353881,15769977:173670,78643,0 ) ) -(186,187:24680381,7937073:501378,78643,0 -(186,187:24844235,7937073:173670,78643,0 +(186,197:28691405,15769977:501378,78643,0 +(186,197:28855259,15769977:173670,78643,0 ) ) -(186,187:25181759,7937073:501378,78643,0 -(186,187:25345613,7937073:173670,78643,0 +(186,197:29192783,15769977:501378,78643,0 +(186,197:29356637,15769977:173670,78643,0 ) ) -(186,187:25683137,7937073:501378,78643,0 -(186,187:25846991,7937073:173670,78643,0 +(186,197:29694161,15769977:501378,78643,0 +(186,197:29858015,15769977:173670,78643,0 ) ) -(186,187:26184515,7937073:501378,78643,0 -(186,187:26348369,7937073:173670,78643,0 +(186,197:30195539,15769977:501378,78643,0 +(186,197:30359393,15769977:173670,78643,0 ) ) -(186,187:26685893,7937073:501378,78643,0 -(186,187:26849747,7937073:173670,78643,0 +(186,197:30696917,15769977:501378,78643,0 +(186,197:30860771,15769977:173670,78643,0 ) ) -(186,187:27187271,7937073:501378,78643,0 -(186,187:27351125,7937073:173670,78643,0 +(186,197:31239539,15769977:1343490,485622,11795 +k186,197:31239539,15769977:0 +k186,197:31387652,15769977:148113 ) +g186,197:30911859,15769977 +g186,197:32583029,15769977 ) -(186,187:27688649,7937073:501378,78643,0 -(186,187:27852503,7937073:173670,78643,0 +(186,198:6630773,16635057:25952256,513147,138281 +g186,198:12529013,16635057 +h186,198:12529013,16635057:3080190,0,0 +h186,198:15609203,16635057:0,0,0 +g186,198:9710963,16635057 +(186,198:9710963,16635057:2818050,485622,11795 +k186,198:12529013,16635057:1275332 ) +g186,198:15336575,16635057 +g186,198:17438314,16635057 +g186,198:18585194,16635057 +$186,198:18585194,16635057 +$186,198:19087855,16635057 +g186,198:19287084,16635057 +g186,198:20677758,16635057 +$186,198:20677758,16635057 +$186,198:21229571,16635057 +g186,198:21229571,16635057 +(186,198:21672113,16635057:501378,78643,0 +$186,198:21672113,16635057 +(186,198:21835967,16635057:173670,78643,0 ) -(186,187:28190027,7937073:501378,78643,0 -(186,187:28353881,7937073:173670,78643,0 +$186,198:22173491,16635057 ) +(186,198:22173491,16635057:501378,78643,0 +(186,198:22337345,16635057:173670,78643,0 ) -(186,187:28691405,7937073:501378,78643,0 -(186,187:28855259,7937073:173670,78643,0 ) +(186,198:22674869,16635057:501378,78643,0 +(186,198:22838723,16635057:173670,78643,0 ) -(186,187:29192783,7937073:501378,78643,0 -(186,187:29356637,7937073:173670,78643,0 ) +(186,198:23176247,16635057:501378,78643,0 +(186,198:23340101,16635057:173670,78643,0 ) -(186,187:29694161,7937073:501378,78643,0 -(186,187:29858015,7937073:173670,78643,0 ) +(186,198:23677625,16635057:501378,78643,0 +(186,198:23841479,16635057:173670,78643,0 ) -(186,187:30195539,7937073:501378,78643,0 -(186,187:30359393,7937073:173670,78643,0 ) +(186,198:24179003,16635057:501378,78643,0 +(186,198:24342857,16635057:173670,78643,0 ) -(186,187:30696917,7937073:501378,78643,0 -(186,187:30860771,7937073:173670,78643,0 ) +(186,198:24680381,16635057:501378,78643,0 +(186,198:24844235,16635057:173670,78643,0 ) -(186,187:31239539,7937073:1343490,485622,11795 -k186,187:31239539,7937073:0 -k186,187:31387652,7937073:148113 ) -g186,187:30911859,7937073 -g186,187:32583029,7937073 +(186,198:25181759,16635057:501378,78643,0 +(186,198:25345613,16635057:173670,78643,0 ) -(186,188:6630773,8778561:25952256,485622,11795 -g186,188:9448823,8778561 -h186,188:9448823,8778561:983040,0,0 -h186,188:10431863,8778561:0,0,0 -g186,188:7613813,8778561 -(186,188:7613813,8778561:1835010,485622,11795 -k186,188:9448823,8778561:864422 ) -g186,188:11631171,8778561 -g186,188:11631171,8778561 -(186,188:11644553,8778561:501378,78643,0 -$186,188:11644553,8778561 -(186,188:11808407,8778561:173670,78643,0 +(186,198:25683137,16635057:501378,78643,0 +(186,198:25846991,16635057:173670,78643,0 ) -$186,188:12145931,8778561 ) -(186,188:12145931,8778561:501378,78643,0 -(186,188:12309785,8778561:173670,78643,0 +(186,198:26184515,16635057:501378,78643,0 +(186,198:26348369,16635057:173670,78643,0 ) ) -(186,188:12647309,8778561:501378,78643,0 -(186,188:12811163,8778561:173670,78643,0 +(186,198:26685893,16635057:501378,78643,0 +(186,198:26849747,16635057:173670,78643,0 ) ) -(186,188:13148687,8778561:501378,78643,0 -(186,188:13312541,8778561:173670,78643,0 +(186,198:27187271,16635057:501378,78643,0 +(186,198:27351125,16635057:173670,78643,0 ) ) -(186,188:13650065,8778561:501378,78643,0 -(186,188:13813919,8778561:173670,78643,0 +(186,198:27688649,16635057:501378,78643,0 +(186,198:27852503,16635057:173670,78643,0 ) ) -(186,188:14151443,8778561:501378,78643,0 -(186,188:14315297,8778561:173670,78643,0 +(186,198:28190027,16635057:501378,78643,0 +(186,198:28353881,16635057:173670,78643,0 ) ) -(186,188:14652821,8778561:501378,78643,0 -(186,188:14816675,8778561:173670,78643,0 +(186,198:28691405,16635057:501378,78643,0 +(186,198:28855259,16635057:173670,78643,0 ) ) -(186,188:15154199,8778561:501378,78643,0 -(186,188:15318053,8778561:173670,78643,0 +(186,198:29192783,16635057:501378,78643,0 +(186,198:29356637,16635057:173670,78643,0 ) ) -(186,188:15655577,8778561:501378,78643,0 -(186,188:15819431,8778561:173670,78643,0 +(186,198:29694161,16635057:501378,78643,0 +(186,198:29858015,16635057:173670,78643,0 ) ) -(186,188:16156955,8778561:501378,78643,0 -(186,188:16320809,8778561:173670,78643,0 +(186,198:30195539,16635057:501378,78643,0 +(186,198:30359393,16635057:173670,78643,0 ) ) -(186,188:16658333,8778561:501378,78643,0 -(186,188:16822187,8778561:173670,78643,0 +(186,198:30696917,16635057:501378,78643,0 +(186,198:30860771,16635057:173670,78643,0 ) ) -(186,188:17159711,8778561:501378,78643,0 -(186,188:17323565,8778561:173670,78643,0 +(186,198:31239539,16635057:1343490,485622,11795 +k186,198:31239539,16635057:0 +k186,198:31387652,16635057:148113 ) +g186,198:30911859,16635057 +g186,198:32583029,16635057 ) -(186,188:17661089,8778561:501378,78643,0 -(186,188:17824943,8778561:173670,78643,0 +(186,199:6630773,17500137:25952256,485622,11795 +g186,199:12529013,17500137 +h186,199:12529013,17500137:3080190,0,0 +h186,199:15609203,17500137:0,0,0 +g186,199:9710963,17500137 +(186,199:9710963,17500137:2818050,485622,11795 +k186,199:12529013,17500137:1275332 ) +g186,199:13822694,17500137 +(186,199:14151443,17500137:501378,78643,0 +$186,199:14151443,17500137 +(186,199:14315297,17500137:173670,78643,0 ) -(186,188:18162467,8778561:501378,78643,0 -(186,188:18326321,8778561:173670,78643,0 +$186,199:14652821,17500137 ) +(186,199:14652821,17500137:501378,78643,0 +(186,199:14816675,17500137:173670,78643,0 ) -(186,188:18663845,8778561:501378,78643,0 -(186,188:18827699,8778561:173670,78643,0 ) +(186,199:15154199,17500137:501378,78643,0 +(186,199:15318053,17500137:173670,78643,0 ) -(186,188:19165223,8778561:501378,78643,0 -(186,188:19329077,8778561:173670,78643,0 ) +(186,199:15655577,17500137:501378,78643,0 +(186,199:15819431,17500137:173670,78643,0 ) -(186,188:19666601,8778561:501378,78643,0 -(186,188:19830455,8778561:173670,78643,0 ) +(186,199:16156955,17500137:501378,78643,0 +(186,199:16320809,17500137:173670,78643,0 ) -(186,188:20167979,8778561:501378,78643,0 -(186,188:20331833,8778561:173670,78643,0 ) +(186,199:16658333,17500137:501378,78643,0 +(186,199:16822187,17500137:173670,78643,0 ) -(186,188:20669357,8778561:501378,78643,0 -(186,188:20833211,8778561:173670,78643,0 ) +(186,199:17159711,17500137:501378,78643,0 +(186,199:17323565,17500137:173670,78643,0 ) -(186,188:21170735,8778561:501378,78643,0 -(186,188:21334589,8778561:173670,78643,0 ) +(186,199:17661089,17500137:501378,78643,0 +(186,199:17824943,17500137:173670,78643,0 ) -(186,188:21672113,8778561:501378,78643,0 -(186,188:21835967,8778561:173670,78643,0 ) +(186,199:18162467,17500137:501378,78643,0 +(186,199:18326321,17500137:173670,78643,0 ) -(186,188:22173491,8778561:501378,78643,0 -(186,188:22337345,8778561:173670,78643,0 ) +(186,199:18663845,17500137:501378,78643,0 +(186,199:18827699,17500137:173670,78643,0 ) -(186,188:22674869,8778561:501378,78643,0 -(186,188:22838723,8778561:173670,78643,0 ) +(186,199:19165223,17500137:501378,78643,0 +(186,199:19329077,17500137:173670,78643,0 ) -(186,188:23176247,8778561:501378,78643,0 -(186,188:23340101,8778561:173670,78643,0 ) +(186,199:19666601,17500137:501378,78643,0 +(186,199:19830455,17500137:173670,78643,0 ) -(186,188:23677625,8778561:501378,78643,0 -(186,188:23841479,8778561:173670,78643,0 ) +(186,199:20167979,17500137:501378,78643,0 +(186,199:20331833,17500137:173670,78643,0 ) -(186,188:24179003,8778561:501378,78643,0 -(186,188:24342857,8778561:173670,78643,0 ) +(186,199:20669357,17500137:501378,78643,0 +(186,199:20833211,17500137:173670,78643,0 ) -(186,188:24680381,8778561:501378,78643,0 -(186,188:24844235,8778561:173670,78643,0 ) +(186,199:21170735,17500137:501378,78643,0 +(186,199:21334589,17500137:173670,78643,0 ) -(186,188:25181759,8778561:501378,78643,0 -(186,188:25345613,8778561:173670,78643,0 ) +(186,199:21672113,17500137:501378,78643,0 +(186,199:21835967,17500137:173670,78643,0 ) -(186,188:25683137,8778561:501378,78643,0 -(186,188:25846991,8778561:173670,78643,0 ) +(186,199:22173491,17500137:501378,78643,0 +(186,199:22337345,17500137:173670,78643,0 ) -(186,188:26184515,8778561:501378,78643,0 -(186,188:26348369,8778561:173670,78643,0 ) +(186,199:22674869,17500137:501378,78643,0 +(186,199:22838723,17500137:173670,78643,0 ) -(186,188:26685893,8778561:501378,78643,0 -(186,188:26849747,8778561:173670,78643,0 ) +(186,199:23176247,17500137:501378,78643,0 +(186,199:23340101,17500137:173670,78643,0 ) -(186,188:27187271,8778561:501378,78643,0 -(186,188:27351125,8778561:173670,78643,0 ) +(186,199:23677625,17500137:501378,78643,0 +(186,199:23841479,17500137:173670,78643,0 ) -(186,188:27688649,8778561:501378,78643,0 -(186,188:27852503,8778561:173670,78643,0 ) +(186,199:24179003,17500137:501378,78643,0 +(186,199:24342857,17500137:173670,78643,0 ) -(186,188:28190027,8778561:501378,78643,0 -(186,188:28353881,8778561:173670,78643,0 ) +(186,199:24680381,17500137:501378,78643,0 +(186,199:24844235,17500137:173670,78643,0 ) -(186,188:28691405,8778561:501378,78643,0 -(186,188:28855259,8778561:173670,78643,0 ) +(186,199:25181759,17500137:501378,78643,0 +(186,199:25345613,17500137:173670,78643,0 ) -(186,188:29192783,8778561:501378,78643,0 -(186,188:29356637,8778561:173670,78643,0 ) +(186,199:25683137,17500137:501378,78643,0 +(186,199:25846991,17500137:173670,78643,0 ) -(186,188:29694161,8778561:501378,78643,0 -(186,188:29858015,8778561:173670,78643,0 ) +(186,199:26184515,17500137:501378,78643,0 +(186,199:26348369,17500137:173670,78643,0 ) -(186,188:30195539,8778561:501378,78643,0 -(186,188:30359393,8778561:173670,78643,0 ) +(186,199:26685893,17500137:501378,78643,0 +(186,199:26849747,17500137:173670,78643,0 ) -(186,188:30696917,8778561:501378,78643,0 -(186,188:30860771,8778561:173670,78643,0 ) +(186,199:27187271,17500137:501378,78643,0 +(186,199:27351125,17500137:173670,78643,0 ) -(186,188:31239539,8778561:1343490,485622,11795 -k186,188:31239539,8778561:0 -k186,188:31387652,8778561:148113 ) -g186,188:30911859,8778561 -g186,188:32583029,8778561 +(186,199:27688649,17500137:501378,78643,0 +(186,199:27852503,17500137:173670,78643,0 ) -(186,189:6630773,9620049:25952256,505283,11795 -g186,189:9448823,9620049 -h186,189:9448823,9620049:983040,0,0 -h186,189:10431863,9620049:0,0,0 -g186,189:7613813,9620049 -(186,189:7613813,9620049:1835010,485622,11795 -k186,189:9448823,9620049:864422 ) -g186,189:11575466,9620049 -g186,189:11575466,9620049 -(186,189:11644553,9620049:501378,78643,0 -$186,189:11644553,9620049 -(186,189:11808407,9620049:173670,78643,0 +(186,199:28190027,17500137:501378,78643,0 +(186,199:28353881,17500137:173670,78643,0 ) -$186,189:12145931,9620049 ) -(186,189:12145931,9620049:501378,78643,0 -(186,189:12309785,9620049:173670,78643,0 +(186,199:28691405,17500137:501378,78643,0 +(186,199:28855259,17500137:173670,78643,0 ) ) -(186,189:12647309,9620049:501378,78643,0 -(186,189:12811163,9620049:173670,78643,0 +(186,199:29192783,17500137:501378,78643,0 +(186,199:29356637,17500137:173670,78643,0 ) ) -(186,189:13148687,9620049:501378,78643,0 -(186,189:13312541,9620049:173670,78643,0 +(186,199:29694161,17500137:501378,78643,0 +(186,199:29858015,17500137:173670,78643,0 ) ) -(186,189:13650065,9620049:501378,78643,0 -(186,189:13813919,9620049:173670,78643,0 +(186,199:30195539,17500137:501378,78643,0 +(186,199:30359393,17500137:173670,78643,0 ) ) -(186,189:14151443,9620049:501378,78643,0 -(186,189:14315297,9620049:173670,78643,0 +(186,199:30696917,17500137:501378,78643,0 +(186,199:30860771,17500137:173670,78643,0 ) ) -(186,189:14652821,9620049:501378,78643,0 -(186,189:14816675,9620049:173670,78643,0 +(186,199:31239538,17500137:1343490,485622,11795 +k186,199:31239538,17500137:0 +k186,199:31387651,17500137:148113 ) +g186,199:30911858,17500137 +g186,199:32583028,17500137 ) -(186,189:15154199,9620049:501378,78643,0 -(186,189:15318053,9620049:173670,78643,0 +(186,200:6630773,18365217:25952256,513147,11795 +g186,200:12529013,18365217 +h186,200:12529013,18365217:3080190,0,0 +h186,200:15609203,18365217:0,0,0 +g186,200:9710963,18365217 +(186,200:9710963,18365217:2818050,485622,11795 +k186,200:12529013,18365217:1275332 ) +g186,200:14466257,18365217 +g186,200:15856931,18365217 +g186,200:16697758,18365217 +(186,200:17159711,18365217:501378,78643,0 +$186,200:17159711,18365217 +(186,200:17323565,18365217:173670,78643,0 ) -(186,189:15655577,9620049:501378,78643,0 -(186,189:15819431,9620049:173670,78643,0 +$186,200:17661089,18365217 ) +(186,200:17661089,18365217:501378,78643,0 +(186,200:17824943,18365217:173670,78643,0 ) -(186,189:16156955,9620049:501378,78643,0 -(186,189:16320809,9620049:173670,78643,0 ) +(186,200:18162467,18365217:501378,78643,0 +(186,200:18326321,18365217:173670,78643,0 ) -(186,189:16658333,9620049:501378,78643,0 -(186,189:16822187,9620049:173670,78643,0 ) +(186,200:18663845,18365217:501378,78643,0 +(186,200:18827699,18365217:173670,78643,0 ) -(186,189:17159711,9620049:501378,78643,0 -(186,189:17323565,9620049:173670,78643,0 ) +(186,200:19165223,18365217:501378,78643,0 +(186,200:19329077,18365217:173670,78643,0 ) -(186,189:17661089,9620049:501378,78643,0 -(186,189:17824943,9620049:173670,78643,0 ) +(186,200:19666601,18365217:501378,78643,0 +(186,200:19830455,18365217:173670,78643,0 ) -(186,189:18162467,9620049:501378,78643,0 -(186,189:18326321,9620049:173670,78643,0 ) +(186,200:20167979,18365217:501378,78643,0 +(186,200:20331833,18365217:173670,78643,0 ) -(186,189:18663845,9620049:501378,78643,0 -(186,189:18827699,9620049:173670,78643,0 ) +(186,200:20669357,18365217:501378,78643,0 +(186,200:20833211,18365217:173670,78643,0 ) -(186,189:19165223,9620049:501378,78643,0 -(186,189:19329077,9620049:173670,78643,0 ) +(186,200:21170735,18365217:501378,78643,0 +(186,200:21334589,18365217:173670,78643,0 ) -(186,189:19666601,9620049:501378,78643,0 -(186,189:19830455,9620049:173670,78643,0 ) +(186,200:21672113,18365217:501378,78643,0 +(186,200:21835967,18365217:173670,78643,0 ) -(186,189:20167979,9620049:501378,78643,0 -(186,189:20331833,9620049:173670,78643,0 ) +(186,200:22173491,18365217:501378,78643,0 +(186,200:22337345,18365217:173670,78643,0 ) -(186,189:20669357,9620049:501378,78643,0 -(186,189:20833211,9620049:173670,78643,0 ) +(186,200:22674869,18365217:501378,78643,0 +(186,200:22838723,18365217:173670,78643,0 ) -(186,189:21170735,9620049:501378,78643,0 -(186,189:21334589,9620049:173670,78643,0 ) +(186,200:23176247,18365217:501378,78643,0 +(186,200:23340101,18365217:173670,78643,0 ) -(186,189:21672113,9620049:501378,78643,0 -(186,189:21835967,9620049:173670,78643,0 ) +(186,200:23677625,18365217:501378,78643,0 +(186,200:23841479,18365217:173670,78643,0 ) -(186,189:22173491,9620049:501378,78643,0 -(186,189:22337345,9620049:173670,78643,0 ) +(186,200:24179003,18365217:501378,78643,0 +(186,200:24342857,18365217:173670,78643,0 ) -(186,189:22674869,9620049:501378,78643,0 -(186,189:22838723,9620049:173670,78643,0 ) +(186,200:24680381,18365217:501378,78643,0 +(186,200:24844235,18365217:173670,78643,0 ) -(186,189:23176247,9620049:501378,78643,0 -(186,189:23340101,9620049:173670,78643,0 ) +(186,200:25181759,18365217:501378,78643,0 +(186,200:25345613,18365217:173670,78643,0 ) -(186,189:23677625,9620049:501378,78643,0 -(186,189:23841479,9620049:173670,78643,0 ) +(186,200:25683137,18365217:501378,78643,0 +(186,200:25846991,18365217:173670,78643,0 ) -(186,189:24179003,9620049:501378,78643,0 -(186,189:24342857,9620049:173670,78643,0 ) +(186,200:26184515,18365217:501378,78643,0 +(186,200:26348369,18365217:173670,78643,0 ) -(186,189:24680381,9620049:501378,78643,0 -(186,189:24844235,9620049:173670,78643,0 ) +(186,200:26685893,18365217:501378,78643,0 +(186,200:26849747,18365217:173670,78643,0 ) -(186,189:25181759,9620049:501378,78643,0 -(186,189:25345613,9620049:173670,78643,0 ) +(186,200:27187271,18365217:501378,78643,0 +(186,200:27351125,18365217:173670,78643,0 ) -(186,189:25683137,9620049:501378,78643,0 -(186,189:25846991,9620049:173670,78643,0 ) +(186,200:27688649,18365217:501378,78643,0 +(186,200:27852503,18365217:173670,78643,0 ) -(186,189:26184515,9620049:501378,78643,0 -(186,189:26348369,9620049:173670,78643,0 ) +(186,200:28190027,18365217:501378,78643,0 +(186,200:28353881,18365217:173670,78643,0 ) -(186,189:26685893,9620049:501378,78643,0 -(186,189:26849747,9620049:173670,78643,0 ) +(186,200:28691405,18365217:501378,78643,0 +(186,200:28855259,18365217:173670,78643,0 ) -(186,189:27187271,9620049:501378,78643,0 -(186,189:27351125,9620049:173670,78643,0 ) +(186,200:29192783,18365217:501378,78643,0 +(186,200:29356637,18365217:173670,78643,0 ) -(186,189:27688649,9620049:501378,78643,0 -(186,189:27852503,9620049:173670,78643,0 ) +(186,200:29694161,18365217:501378,78643,0 +(186,200:29858015,18365217:173670,78643,0 ) -(186,189:28190027,9620049:501378,78643,0 -(186,189:28353881,9620049:173670,78643,0 ) +(186,200:30195539,18365217:501378,78643,0 +(186,200:30359393,18365217:173670,78643,0 ) -(186,189:28691405,9620049:501378,78643,0 -(186,189:28855259,9620049:173670,78643,0 ) +(186,200:30696917,18365217:501378,78643,0 +(186,200:30860771,18365217:173670,78643,0 ) -(186,189:29192783,9620049:501378,78643,0 -(186,189:29356637,9620049:173670,78643,0 ) +(186,200:31239539,18365217:1343490,485622,11795 +k186,200:31239539,18365217:0 +k186,200:31387652,18365217:148113 ) -(186,189:29694161,9620049:501378,78643,0 -(186,189:29858015,9620049:173670,78643,0 +g186,200:30911859,18365217 +g186,200:32583029,18365217 ) +(186,202:6630773,19230297:25952256,505283,11795 +g186,202:12529013,19230297 +h186,202:12529013,19230297:3080190,0,0 +h186,202:15609203,19230297:0,0,0 +g186,202:9710963,19230297 +(186,202:9710963,19230297:2818050,485622,11795 +k186,202:12529013,19230297:1275332 ) -(186,189:30195539,9620049:501378,78643,0 -(186,189:30359393,9620049:173670,78643,0 +g186,202:16420540,19230297 +g186,202:20670549,19230297 +g186,202:22573059,19230297 +(186,202:22674869,19230297:501378,78643,0 +$186,202:22674869,19230297 +(186,202:22838723,19230297:173670,78643,0 ) +$186,202:23176247,19230297 ) -(186,189:30696917,9620049:501378,78643,0 -(186,189:30860771,9620049:173670,78643,0 +(186,202:23176247,19230297:501378,78643,0 +(186,202:23340101,19230297:173670,78643,0 ) ) -(186,189:31239538,9620049:1343490,485622,11795 -k186,189:31239538,9620049:0 -k186,189:31387651,9620049:148113 +(186,202:23677625,19230297:501378,78643,0 +(186,202:23841479,19230297:173670,78643,0 ) -g186,189:30911858,9620049 -g186,189:32583028,9620049 ) -(186,190:6630773,10461537:25952256,505283,126483 -g186,190:11873653,10461537 -h186,190:11873653,10461537:2818050,0,0 -h186,190:14691703,10461537:0,0,0 -g186,190:9448823,10461537 -(186,190:9448823,10461537:2424830,485622,11795 -k186,190:11873653,10461537:882112 +(186,202:24179003,19230297:501378,78643,0 +(186,202:24342857,19230297:173670,78643,0 ) -g186,190:13457002,10461537 -g186,190:14847676,10461537 -g186,190:16147910,10461537 -g186,190:17992093,10461537 -(186,190:18162467,10461537:501378,78643,0 -$186,190:18162467,10461537 -(186,190:18326321,10461537:173670,78643,0 ) -$186,190:18663845,10461537 +(186,202:24680381,19230297:501378,78643,0 +(186,202:24844235,19230297:173670,78643,0 ) -(186,190:18663845,10461537:501378,78643,0 -(186,190:18827699,10461537:173670,78643,0 ) +(186,202:25181759,19230297:501378,78643,0 +(186,202:25345613,19230297:173670,78643,0 ) -(186,190:19165223,10461537:501378,78643,0 -(186,190:19329077,10461537:173670,78643,0 ) +(186,202:25683137,19230297:501378,78643,0 +(186,202:25846991,19230297:173670,78643,0 ) -(186,190:19666601,10461537:501378,78643,0 -(186,190:19830455,10461537:173670,78643,0 ) +(186,202:26184515,19230297:501378,78643,0 +(186,202:26348369,19230297:173670,78643,0 ) -(186,190:20167979,10461537:501378,78643,0 -(186,190:20331833,10461537:173670,78643,0 ) +(186,202:26685893,19230297:501378,78643,0 +(186,202:26849747,19230297:173670,78643,0 ) -(186,190:20669357,10461537:501378,78643,0 -(186,190:20833211,10461537:173670,78643,0 ) +(186,202:27187271,19230297:501378,78643,0 +(186,202:27351125,19230297:173670,78643,0 ) -(186,190:21170735,10461537:501378,78643,0 -(186,190:21334589,10461537:173670,78643,0 ) +(186,202:27688649,19230297:501378,78643,0 +(186,202:27852503,19230297:173670,78643,0 ) -(186,190:21672113,10461537:501378,78643,0 -(186,190:21835967,10461537:173670,78643,0 ) +(186,202:28190027,19230297:501378,78643,0 +(186,202:28353881,19230297:173670,78643,0 ) -(186,190:22173491,10461537:501378,78643,0 -(186,190:22337345,10461537:173670,78643,0 ) +(186,202:28691405,19230297:501378,78643,0 +(186,202:28855259,19230297:173670,78643,0 ) -(186,190:22674869,10461537:501378,78643,0 -(186,190:22838723,10461537:173670,78643,0 ) +(186,202:29192783,19230297:501378,78643,0 +(186,202:29356637,19230297:173670,78643,0 ) -(186,190:23176247,10461537:501378,78643,0 -(186,190:23340101,10461537:173670,78643,0 ) +(186,202:29694161,19230297:501378,78643,0 +(186,202:29858015,19230297:173670,78643,0 ) -(186,190:23677625,10461537:501378,78643,0 -(186,190:23841479,10461537:173670,78643,0 ) +(186,202:30195539,19230297:501378,78643,0 +(186,202:30359393,19230297:173670,78643,0 ) -(186,190:24179003,10461537:501378,78643,0 -(186,190:24342857,10461537:173670,78643,0 ) +(186,202:30696917,19230297:501378,78643,0 +(186,202:30860771,19230297:173670,78643,0 ) -(186,190:24680381,10461537:501378,78643,0 -(186,190:24844235,10461537:173670,78643,0 ) +(186,202:31239539,19230297:1343490,485622,11795 +k186,202:31239539,19230297:0 +k186,202:31387652,19230297:148113 ) -(186,190:25181759,10461537:501378,78643,0 -(186,190:25345613,10461537:173670,78643,0 +g186,202:30911859,19230297 +g186,202:32583029,19230297 ) +(186,203:6630773,20095377:25952256,505283,11795 +g186,203:12529013,20095377 +h186,203:12529013,20095377:3080190,0,0 +h186,203:15609203,20095377:0,0,0 +g186,203:9710963,20095377 +(186,203:9710963,20095377:2818050,485622,11795 +k186,203:12529013,20095377:1275332 ) -(186,190:25683137,10461537:501378,78643,0 -(186,190:25846991,10461537:173670,78643,0 +g186,203:15336575,20095377 +g186,203:19586584,20095377 +g186,203:21489094,20095377 +(186,203:21672113,20095377:501378,78643,0 +$186,203:21672113,20095377 +(186,203:21835967,20095377:173670,78643,0 ) +$186,203:22173491,20095377 ) -(186,190:26184515,10461537:501378,78643,0 -(186,190:26348369,10461537:173670,78643,0 +(186,203:22173491,20095377:501378,78643,0 +(186,203:22337345,20095377:173670,78643,0 ) ) -(186,190:26685893,10461537:501378,78643,0 -(186,190:26849747,10461537:173670,78643,0 +(186,203:22674869,20095377:501378,78643,0 +(186,203:22838723,20095377:173670,78643,0 ) ) -(186,190:27187271,10461537:501378,78643,0 -(186,190:27351125,10461537:173670,78643,0 +(186,203:23176247,20095377:501378,78643,0 +(186,203:23340101,20095377:173670,78643,0 ) ) -(186,190:27688649,10461537:501378,78643,0 -(186,190:27852503,10461537:173670,78643,0 +(186,203:23677625,20095377:501378,78643,0 +(186,203:23841479,20095377:173670,78643,0 ) ) -(186,190:28190027,10461537:501378,78643,0 -(186,190:28353881,10461537:173670,78643,0 +(186,203:24179003,20095377:501378,78643,0 +(186,203:24342857,20095377:173670,78643,0 ) ) -(186,190:28691405,10461537:501378,78643,0 -(186,190:28855259,10461537:173670,78643,0 +(186,203:24680381,20095377:501378,78643,0 +(186,203:24844235,20095377:173670,78643,0 ) ) -(186,190:29192783,10461537:501378,78643,0 -(186,190:29356637,10461537:173670,78643,0 +(186,203:25181759,20095377:501378,78643,0 +(186,203:25345613,20095377:173670,78643,0 ) ) -(186,190:29694161,10461537:501378,78643,0 -(186,190:29858015,10461537:173670,78643,0 +(186,203:25683137,20095377:501378,78643,0 +(186,203:25846991,20095377:173670,78643,0 ) ) -(186,190:30195539,10461537:501378,78643,0 -(186,190:30359393,10461537:173670,78643,0 +(186,203:26184515,20095377:501378,78643,0 +(186,203:26348369,20095377:173670,78643,0 ) ) -(186,190:30696917,10461537:501378,78643,0 -(186,190:30860771,10461537:173670,78643,0 +(186,203:26685893,20095377:501378,78643,0 +(186,203:26849747,20095377:173670,78643,0 ) ) -(186,190:31239539,10461537:1343490,485622,11795 -k186,190:31239539,10461537:0 -k186,190:31387652,10461537:148113 +(186,203:27187271,20095377:501378,78643,0 +(186,203:27351125,20095377:173670,78643,0 ) -g186,190:30911859,10461537 -g186,190:32583029,10461537 ) -(186,191:6630773,11303025:25952256,505283,11795 -g186,191:11873653,11303025 -h186,191:11873653,11303025:2818050,0,0 -h186,191:14691703,11303025:0,0,0 -g186,191:9448823,11303025 -(186,191:9448823,11303025:2424830,485622,11795 -k186,191:11873653,11303025:882112 +(186,203:27688649,20095377:501378,78643,0 +(186,203:27852503,20095377:173670,78643,0 ) -g186,191:15765180,11303025 -g186,191:17667690,11303025 -(186,191:18162467,11303025:501378,78643,0 -$186,191:18162467,11303025 -(186,191:18326321,11303025:173670,78643,0 ) -$186,191:18663845,11303025 +(186,203:28190027,20095377:501378,78643,0 +(186,203:28353881,20095377:173670,78643,0 ) -(186,191:18663845,11303025:501378,78643,0 -(186,191:18827699,11303025:173670,78643,0 ) +(186,203:28691405,20095377:501378,78643,0 +(186,203:28855259,20095377:173670,78643,0 ) -(186,191:19165223,11303025:501378,78643,0 -(186,191:19329077,11303025:173670,78643,0 ) +(186,203:29192783,20095377:501378,78643,0 +(186,203:29356637,20095377:173670,78643,0 ) -(186,191:19666601,11303025:501378,78643,0 -(186,191:19830455,11303025:173670,78643,0 ) +(186,203:29694161,20095377:501378,78643,0 +(186,203:29858015,20095377:173670,78643,0 ) -(186,191:20167979,11303025:501378,78643,0 -(186,191:20331833,11303025:173670,78643,0 ) +(186,203:30195539,20095377:501378,78643,0 +(186,203:30359393,20095377:173670,78643,0 ) -(186,191:20669357,11303025:501378,78643,0 -(186,191:20833211,11303025:173670,78643,0 ) +(186,203:30696917,20095377:501378,78643,0 +(186,203:30860771,20095377:173670,78643,0 ) -(186,191:21170735,11303025:501378,78643,0 -(186,191:21334589,11303025:173670,78643,0 ) +(186,203:31239539,20095377:1343490,485622,11795 +k186,203:31239539,20095377:0 +k186,203:31387652,20095377:148113 ) -(186,191:21672113,11303025:501378,78643,0 -(186,191:21835967,11303025:173670,78643,0 +g186,203:30911859,20095377 +g186,203:32583029,20095377 ) +(186,204:6630773,20960457:25952256,505283,11795 +g186,204:12529013,20960457 +h186,204:12529013,20960457:3080190,0,0 +h186,204:15609203,20960457:0,0,0 +g186,204:9710963,20960457 +(186,204:9710963,20960457:2818050,485622,11795 +k186,204:12529013,20960457:1275332 ) -(186,191:22173491,11303025:501378,78643,0 -(186,191:22337345,11303025:173670,78643,0 +g186,204:14926320,20960457 +g186,204:16828830,20960457 +(186,204:17159711,20960457:501378,78643,0 +$186,204:17159711,20960457 +(186,204:17323565,20960457:173670,78643,0 ) +$186,204:17661089,20960457 ) -(186,191:22674869,11303025:501378,78643,0 -(186,191:22838723,11303025:173670,78643,0 +(186,204:17661089,20960457:501378,78643,0 +(186,204:17824943,20960457:173670,78643,0 ) ) -(186,191:23176247,11303025:501378,78643,0 -(186,191:23340101,11303025:173670,78643,0 +(186,204:18162467,20960457:501378,78643,0 +(186,204:18326321,20960457:173670,78643,0 ) ) -(186,191:23677625,11303025:501378,78643,0 -(186,191:23841479,11303025:173670,78643,0 +(186,204:18663845,20960457:501378,78643,0 +(186,204:18827699,20960457:173670,78643,0 ) ) -(186,191:24179003,11303025:501378,78643,0 -(186,191:24342857,11303025:173670,78643,0 +(186,204:19165223,20960457:501378,78643,0 +(186,204:19329077,20960457:173670,78643,0 ) ) -(186,191:24680381,11303025:501378,78643,0 -(186,191:24844235,11303025:173670,78643,0 +(186,204:19666601,20960457:501378,78643,0 +(186,204:19830455,20960457:173670,78643,0 ) ) -(186,191:25181759,11303025:501378,78643,0 -(186,191:25345613,11303025:173670,78643,0 +(186,204:20167979,20960457:501378,78643,0 +(186,204:20331833,20960457:173670,78643,0 ) ) -(186,191:25683137,11303025:501378,78643,0 -(186,191:25846991,11303025:173670,78643,0 +(186,204:20669357,20960457:501378,78643,0 +(186,204:20833211,20960457:173670,78643,0 ) ) -(186,191:26184515,11303025:501378,78643,0 -(186,191:26348369,11303025:173670,78643,0 +(186,204:21170735,20960457:501378,78643,0 +(186,204:21334589,20960457:173670,78643,0 ) ) -(186,191:26685893,11303025:501378,78643,0 -(186,191:26849747,11303025:173670,78643,0 +(186,204:21672113,20960457:501378,78643,0 +(186,204:21835967,20960457:173670,78643,0 ) ) -(186,191:27187271,11303025:501378,78643,0 -(186,191:27351125,11303025:173670,78643,0 +(186,204:22173491,20960457:501378,78643,0 +(186,204:22337345,20960457:173670,78643,0 ) ) -(186,191:27688649,11303025:501378,78643,0 -(186,191:27852503,11303025:173670,78643,0 +(186,204:22674869,20960457:501378,78643,0 +(186,204:22838723,20960457:173670,78643,0 ) ) -(186,191:28190027,11303025:501378,78643,0 -(186,191:28353881,11303025:173670,78643,0 +(186,204:23176247,20960457:501378,78643,0 +(186,204:23340101,20960457:173670,78643,0 ) ) -(186,191:28691405,11303025:501378,78643,0 -(186,191:28855259,11303025:173670,78643,0 +(186,204:23677625,20960457:501378,78643,0 +(186,204:23841479,20960457:173670,78643,0 ) ) -(186,191:29192783,11303025:501378,78643,0 -(186,191:29356637,11303025:173670,78643,0 +(186,204:24179003,20960457:501378,78643,0 +(186,204:24342857,20960457:173670,78643,0 ) ) -(186,191:29694161,11303025:501378,78643,0 -(186,191:29858015,11303025:173670,78643,0 +(186,204:24680381,20960457:501378,78643,0 +(186,204:24844235,20960457:173670,78643,0 ) ) -(186,191:30195539,11303025:501378,78643,0 -(186,191:30359393,11303025:173670,78643,0 +(186,204:25181759,20960457:501378,78643,0 +(186,204:25345613,20960457:173670,78643,0 ) ) -(186,191:30696917,11303025:501378,78643,0 -(186,191:30860771,11303025:173670,78643,0 +(186,204:25683137,20960457:501378,78643,0 +(186,204:25846991,20960457:173670,78643,0 ) ) -(186,191:31239539,11303025:1343490,485622,11795 -k186,191:31239539,11303025:0 -k186,191:31387652,11303025:148113 +(186,204:26184515,20960457:501378,78643,0 +(186,204:26348369,20960457:173670,78643,0 ) -g186,191:30911859,11303025 -g186,191:32583029,11303025 ) -(186,197:6630773,12144513:25952256,513147,138281 -g186,197:11873653,12144513 -h186,197:11873653,12144513:2818050,0,0 -h186,197:14691703,12144513:0,0,0 -g186,197:9448823,12144513 -(186,197:9448823,12144513:2424830,485622,11795 -k186,197:11873653,12144513:882112 +(186,204:26685893,20960457:501378,78643,0 +(186,204:26849747,20960457:173670,78643,0 ) -g186,197:13675893,12144513 -g186,197:15066567,12144513 -g186,197:16646640,12144513 -g186,197:18748379,12144513 -g186,197:19895259,12144513 -$186,197:19895259,12144513 -$186,197:20397920,12144513 -g186,197:20597149,12144513 -g186,197:21987823,12144513 -$186,197:21987823,12144513 -$186,197:22539636,12144513 -g186,197:22539636,12144513 -(186,197:22674869,12144513:501378,78643,0 -$186,197:22674869,12144513 -(186,197:22838723,12144513:173670,78643,0 ) -$186,197:23176247,12144513 +(186,204:27187271,20960457:501378,78643,0 +(186,204:27351125,20960457:173670,78643,0 ) -(186,197:23176247,12144513:501378,78643,0 -(186,197:23340101,12144513:173670,78643,0 ) +(186,204:27688649,20960457:501378,78643,0 +(186,204:27852503,20960457:173670,78643,0 ) -(186,197:23677625,12144513:501378,78643,0 -(186,197:23841479,12144513:173670,78643,0 ) +(186,204:28190027,20960457:501378,78643,0 +(186,204:28353881,20960457:173670,78643,0 ) -(186,197:24179003,12144513:501378,78643,0 -(186,197:24342857,12144513:173670,78643,0 ) +(186,204:28691405,20960457:501378,78643,0 +(186,204:28855259,20960457:173670,78643,0 ) -(186,197:24680381,12144513:501378,78643,0 -(186,197:24844235,12144513:173670,78643,0 ) +(186,204:29192783,20960457:501378,78643,0 +(186,204:29356637,20960457:173670,78643,0 ) -(186,197:25181759,12144513:501378,78643,0 -(186,197:25345613,12144513:173670,78643,0 ) +(186,204:29694161,20960457:501378,78643,0 +(186,204:29858015,20960457:173670,78643,0 ) -(186,197:25683137,12144513:501378,78643,0 -(186,197:25846991,12144513:173670,78643,0 ) +(186,204:30195539,20960457:501378,78643,0 +(186,204:30359393,20960457:173670,78643,0 ) -(186,197:26184515,12144513:501378,78643,0 -(186,197:26348369,12144513:173670,78643,0 ) +(186,204:30696917,20960457:501378,78643,0 +(186,204:30860771,20960457:173670,78643,0 ) -(186,197:26685893,12144513:501378,78643,0 -(186,197:26849747,12144513:173670,78643,0 ) +(186,204:31239539,20960457:1343490,485622,11795 +k186,204:31239539,20960457:0 +k186,204:31387652,20960457:148113 ) -(186,197:27187271,12144513:501378,78643,0 -(186,197:27351125,12144513:173670,78643,0 +g186,204:30911859,20960457 +g186,204:32583029,20960457 ) +(186,205:6630773,21825537:25952256,505283,126483 +g186,205:12529013,21825537 +h186,205:12529013,21825537:3080190,0,0 +h186,205:15609203,21825537:0,0,0 +g186,205:9710963,21825537 +(186,205:9710963,21825537:2818050,485622,11795 +k186,205:12529013,21825537:876874 ) -(186,197:27688649,12144513:501378,78643,0 -(186,197:27852503,12144513:173670,78643,0 +g186,205:15200260,21825537 +g186,205:17102770,21825537 +(186,205:17159711,21825537:501378,78643,0 +$186,205:17159711,21825537 +(186,205:17323565,21825537:173670,78643,0 ) +$186,205:17661089,21825537 ) -(186,197:28190027,12144513:501378,78643,0 -(186,197:28353881,12144513:173670,78643,0 +(186,205:17661089,21825537:501378,78643,0 +(186,205:17824943,21825537:173670,78643,0 ) ) -(186,197:28691405,12144513:501378,78643,0 -(186,197:28855259,12144513:173670,78643,0 +(186,205:18162467,21825537:501378,78643,0 +(186,205:18326321,21825537:173670,78643,0 ) ) -(186,197:29192783,12144513:501378,78643,0 -(186,197:29356637,12144513:173670,78643,0 +(186,205:18663845,21825537:501378,78643,0 +(186,205:18827699,21825537:173670,78643,0 ) ) -(186,197:29694161,12144513:501378,78643,0 -(186,197:29858015,12144513:173670,78643,0 +(186,205:19165223,21825537:501378,78643,0 +(186,205:19329077,21825537:173670,78643,0 ) ) -(186,197:30195539,12144513:501378,78643,0 -(186,197:30359393,12144513:173670,78643,0 +(186,205:19666601,21825537:501378,78643,0 +(186,205:19830455,21825537:173670,78643,0 ) ) -(186,197:30696917,12144513:501378,78643,0 -(186,197:30860771,12144513:173670,78643,0 +(186,205:20167979,21825537:501378,78643,0 +(186,205:20331833,21825537:173670,78643,0 ) ) -(186,197:31239539,12144513:1343490,485622,11795 -k186,197:31239539,12144513:0 -k186,197:31387652,12144513:148113 +(186,205:20669357,21825537:501378,78643,0 +(186,205:20833211,21825537:173670,78643,0 ) -g186,197:30911859,12144513 -g186,197:32583029,12144513 ) -(186,198:6630773,12986001:25952256,513147,138281 -g186,198:11873653,12986001 -h186,198:11873653,12986001:2818050,0,0 -h186,198:14691703,12986001:0,0,0 -g186,198:9448823,12986001 -(186,198:9448823,12986001:2424830,485622,11795 -k186,198:11873653,12986001:882112 +(186,205:21170735,21825537:501378,78643,0 +(186,205:21334589,21825537:173670,78643,0 ) -g186,198:14681215,12986001 -g186,198:16782954,12986001 -g186,198:17929834,12986001 -$186,198:17929834,12986001 -$186,198:18432495,12986001 -g186,198:18631724,12986001 -g186,198:20022398,12986001 -$186,198:20022398,12986001 -$186,198:20574211,12986001 -g186,198:20574211,12986001 -(186,198:20669357,12986001:501378,78643,0 -$186,198:20669357,12986001 -(186,198:20833211,12986001:173670,78643,0 ) -$186,198:21170735,12986001 +(186,205:21672113,21825537:501378,78643,0 +(186,205:21835967,21825537:173670,78643,0 ) -(186,198:21170735,12986001:501378,78643,0 -(186,198:21334589,12986001:173670,78643,0 ) +(186,205:22173491,21825537:501378,78643,0 +(186,205:22337345,21825537:173670,78643,0 ) -(186,198:21672113,12986001:501378,78643,0 -(186,198:21835967,12986001:173670,78643,0 ) +(186,205:22674869,21825537:501378,78643,0 +(186,205:22838723,21825537:173670,78643,0 ) -(186,198:22173491,12986001:501378,78643,0 -(186,198:22337345,12986001:173670,78643,0 ) +(186,205:23176247,21825537:501378,78643,0 +(186,205:23340101,21825537:173670,78643,0 ) -(186,198:22674869,12986001:501378,78643,0 -(186,198:22838723,12986001:173670,78643,0 ) +(186,205:23677625,21825537:501378,78643,0 +(186,205:23841479,21825537:173670,78643,0 ) -(186,198:23176247,12986001:501378,78643,0 -(186,198:23340101,12986001:173670,78643,0 ) +(186,205:24179003,21825537:501378,78643,0 +(186,205:24342857,21825537:173670,78643,0 ) -(186,198:23677625,12986001:501378,78643,0 -(186,198:23841479,12986001:173670,78643,0 ) +(186,205:24680381,21825537:501378,78643,0 +(186,205:24844235,21825537:173670,78643,0 ) -(186,198:24179003,12986001:501378,78643,0 -(186,198:24342857,12986001:173670,78643,0 ) +(186,205:25181759,21825537:501378,78643,0 +(186,205:25345613,21825537:173670,78643,0 ) -(186,198:24680381,12986001:501378,78643,0 -(186,198:24844235,12986001:173670,78643,0 ) +(186,205:25683137,21825537:501378,78643,0 +(186,205:25846991,21825537:173670,78643,0 ) -(186,198:25181759,12986001:501378,78643,0 -(186,198:25345613,12986001:173670,78643,0 ) +(186,205:26184515,21825537:501378,78643,0 +(186,205:26348369,21825537:173670,78643,0 ) -(186,198:25683137,12986001:501378,78643,0 -(186,198:25846991,12986001:173670,78643,0 ) +(186,205:26685893,21825537:501378,78643,0 +(186,205:26849747,21825537:173670,78643,0 ) -(186,198:26184515,12986001:501378,78643,0 -(186,198:26348369,12986001:173670,78643,0 ) +(186,205:27187271,21825537:501378,78643,0 +(186,205:27351125,21825537:173670,78643,0 ) -(186,198:26685893,12986001:501378,78643,0 -(186,198:26849747,12986001:173670,78643,0 ) +(186,205:27688649,21825537:501378,78643,0 +(186,205:27852503,21825537:173670,78643,0 ) -(186,198:27187271,12986001:501378,78643,0 -(186,198:27351125,12986001:173670,78643,0 ) +(186,205:28190027,21825537:501378,78643,0 +(186,205:28353881,21825537:173670,78643,0 ) -(186,198:27688649,12986001:501378,78643,0 -(186,198:27852503,12986001:173670,78643,0 ) +(186,205:28691405,21825537:501378,78643,0 +(186,205:28855259,21825537:173670,78643,0 ) -(186,198:28190027,12986001:501378,78643,0 -(186,198:28353881,12986001:173670,78643,0 ) +(186,205:29192783,21825537:501378,78643,0 +(186,205:29356637,21825537:173670,78643,0 ) -(186,198:28691405,12986001:501378,78643,0 -(186,198:28855259,12986001:173670,78643,0 ) +(186,205:29694161,21825537:501378,78643,0 +(186,205:29858015,21825537:173670,78643,0 ) -(186,198:29192783,12986001:501378,78643,0 -(186,198:29356637,12986001:173670,78643,0 ) +(186,205:30195539,21825537:501378,78643,0 +(186,205:30359393,21825537:173670,78643,0 ) -(186,198:29694161,12986001:501378,78643,0 -(186,198:29858015,12986001:173670,78643,0 ) +(186,205:30696917,21825537:501378,78643,0 +(186,205:30860771,21825537:173670,78643,0 ) -(186,198:30195539,12986001:501378,78643,0 -(186,198:30359393,12986001:173670,78643,0 ) +(186,205:31239539,21825537:1343490,485622,11795 +k186,205:31239539,21825537:0 +k186,205:31387652,21825537:148113 ) -(186,198:30696917,12986001:501378,78643,0 -(186,198:30860771,12986001:173670,78643,0 +g186,205:30911859,21825537 +g186,205:32583029,21825537 ) +(186,206:6630773,22690617:25952256,505283,134348 +g186,206:9710963,22690617 +h186,206:9710963,22690617:983040,0,0 +h186,206:10694003,22690617:0,0,0 +g186,206:7613813,22690617 +(186,206:7613813,22690617:2097150,485622,11795 +k186,206:9710963,22690617:728103 ) -(186,198:31239539,12986001:1343490,485622,11795 -k186,198:31239539,12986001:0 -k186,198:31387652,12986001:148113 +g186,206:12229511,22690617 +g186,206:16219342,22690617 +g186,206:16219342,22690617 +(186,206:16658333,22690617:501378,78643,0 +$186,206:16658333,22690617 +(186,206:16822187,22690617:173670,78643,0 ) -g186,198:30911859,12986001 -g186,198:32583029,12986001 +$186,206:17159711,22690617 ) -(186,199:6630773,13827489:25952256,485622,11795 -g186,199:11873653,13827489 -h186,199:11873653,13827489:2818050,0,0 -h186,199:14691703,13827489:0,0,0 -g186,199:9448823,13827489 -(186,199:9448823,13827489:2424830,485622,11795 -k186,199:11873653,13827489:882112 +(186,206:17159711,22690617:501378,78643,0 +(186,206:17323565,22690617:173670,78643,0 ) -g186,199:13167334,13827489 -(186,199:13650065,13827489:501378,78643,0 -$186,199:13650065,13827489 -(186,199:13813919,13827489:173670,78643,0 ) -$186,199:14151443,13827489 +(186,206:17661089,22690617:501378,78643,0 +(186,206:17824943,22690617:173670,78643,0 ) -(186,199:14151443,13827489:501378,78643,0 -(186,199:14315297,13827489:173670,78643,0 ) +(186,206:18162467,22690617:501378,78643,0 +(186,206:18326321,22690617:173670,78643,0 ) -(186,199:14652821,13827489:501378,78643,0 -(186,199:14816675,13827489:173670,78643,0 ) +(186,206:18663845,22690617:501378,78643,0 +(186,206:18827699,22690617:173670,78643,0 ) -(186,199:15154199,13827489:501378,78643,0 -(186,199:15318053,13827489:173670,78643,0 ) +(186,206:19165223,22690617:501378,78643,0 +(186,206:19329077,22690617:173670,78643,0 ) -(186,199:15655577,13827489:501378,78643,0 -(186,199:15819431,13827489:173670,78643,0 ) +(186,206:19666601,22690617:501378,78643,0 +(186,206:19830455,22690617:173670,78643,0 ) -(186,199:16156955,13827489:501378,78643,0 -(186,199:16320809,13827489:173670,78643,0 ) +(186,206:20167979,22690617:501378,78643,0 +(186,206:20331833,22690617:173670,78643,0 ) -(186,199:16658333,13827489:501378,78643,0 -(186,199:16822187,13827489:173670,78643,0 ) +(186,206:20669357,22690617:501378,78643,0 +(186,206:20833211,22690617:173670,78643,0 ) -(186,199:17159711,13827489:501378,78643,0 -(186,199:17323565,13827489:173670,78643,0 ) +(186,206:21170735,22690617:501378,78643,0 +(186,206:21334589,22690617:173670,78643,0 ) -(186,199:17661089,13827489:501378,78643,0 -(186,199:17824943,13827489:173670,78643,0 ) +(186,206:21672113,22690617:501378,78643,0 +(186,206:21835967,22690617:173670,78643,0 ) -(186,199:18162467,13827489:501378,78643,0 -(186,199:18326321,13827489:173670,78643,0 ) +(186,206:22173491,22690617:501378,78643,0 +(186,206:22337345,22690617:173670,78643,0 ) -(186,199:18663845,13827489:501378,78643,0 -(186,199:18827699,13827489:173670,78643,0 ) +(186,206:22674869,22690617:501378,78643,0 +(186,206:22838723,22690617:173670,78643,0 ) -(186,199:19165223,13827489:501378,78643,0 -(186,199:19329077,13827489:173670,78643,0 ) +(186,206:23176247,22690617:501378,78643,0 +(186,206:23340101,22690617:173670,78643,0 ) -(186,199:19666601,13827489:501378,78643,0 -(186,199:19830455,13827489:173670,78643,0 ) +(186,206:23677625,22690617:501378,78643,0 +(186,206:23841479,22690617:173670,78643,0 ) -(186,199:20167979,13827489:501378,78643,0 -(186,199:20331833,13827489:173670,78643,0 ) +(186,206:24179003,22690617:501378,78643,0 +(186,206:24342857,22690617:173670,78643,0 ) -(186,199:20669357,13827489:501378,78643,0 -(186,199:20833211,13827489:173670,78643,0 ) +(186,206:24680381,22690617:501378,78643,0 +(186,206:24844235,22690617:173670,78643,0 ) -(186,199:21170735,13827489:501378,78643,0 -(186,199:21334589,13827489:173670,78643,0 ) +(186,206:25181759,22690617:501378,78643,0 +(186,206:25345613,22690617:173670,78643,0 ) -(186,199:21672113,13827489:501378,78643,0 -(186,199:21835967,13827489:173670,78643,0 ) +(186,206:25683137,22690617:501378,78643,0 +(186,206:25846991,22690617:173670,78643,0 ) -(186,199:22173491,13827489:501378,78643,0 -(186,199:22337345,13827489:173670,78643,0 ) +(186,206:26184515,22690617:501378,78643,0 +(186,206:26348369,22690617:173670,78643,0 ) -(186,199:22674869,13827489:501378,78643,0 -(186,199:22838723,13827489:173670,78643,0 ) +(186,206:26685893,22690617:501378,78643,0 +(186,206:26849747,22690617:173670,78643,0 ) -(186,199:23176247,13827489:501378,78643,0 -(186,199:23340101,13827489:173670,78643,0 ) +(186,206:27187271,22690617:501378,78643,0 +(186,206:27351125,22690617:173670,78643,0 ) -(186,199:23677625,13827489:501378,78643,0 -(186,199:23841479,13827489:173670,78643,0 ) +(186,206:27688649,22690617:501378,78643,0 +(186,206:27852503,22690617:173670,78643,0 ) -(186,199:24179003,13827489:501378,78643,0 -(186,199:24342857,13827489:173670,78643,0 ) +(186,206:28190027,22690617:501378,78643,0 +(186,206:28353881,22690617:173670,78643,0 ) -(186,199:24680381,13827489:501378,78643,0 -(186,199:24844235,13827489:173670,78643,0 ) +(186,206:28691405,22690617:501378,78643,0 +(186,206:28855259,22690617:173670,78643,0 ) -(186,199:25181759,13827489:501378,78643,0 -(186,199:25345613,13827489:173670,78643,0 ) +(186,206:29192783,22690617:501378,78643,0 +(186,206:29356637,22690617:173670,78643,0 ) -(186,199:25683137,13827489:501378,78643,0 -(186,199:25846991,13827489:173670,78643,0 ) +(186,206:29694161,22690617:501378,78643,0 +(186,206:29858015,22690617:173670,78643,0 ) -(186,199:26184515,13827489:501378,78643,0 -(186,199:26348369,13827489:173670,78643,0 ) +(186,206:30195539,22690617:501378,78643,0 +(186,206:30359393,22690617:173670,78643,0 ) -(186,199:26685893,13827489:501378,78643,0 -(186,199:26849747,13827489:173670,78643,0 ) +(186,206:30696917,22690617:501378,78643,0 +(186,206:30860771,22690617:173670,78643,0 ) -(186,199:27187271,13827489:501378,78643,0 -(186,199:27351125,13827489:173670,78643,0 ) +(186,206:31239539,22690617:1343490,485622,11795 +k186,206:31239539,22690617:0 +k186,206:31387652,22690617:148113 ) -(186,199:27688649,13827489:501378,78643,0 -(186,199:27852503,13827489:173670,78643,0 +g186,206:30911859,22690617 +g186,206:32583029,22690617 ) +(186,207:6630773,23555697:25952256,505283,126483 +g186,207:9710963,23555697 +h186,207:9710963,23555697:983040,0,0 +h186,207:10694003,23555697:0,0,0 +g186,207:7613813,23555697 +(186,207:7613813,23555697:2097150,485622,11795 +k186,207:9710963,23555697:728103 ) -(186,199:28190027,13827489:501378,78643,0 -(186,199:28353881,13827489:173670,78643,0 +g186,207:13770263,23555697 +g186,207:15160937,23555697 +g186,207:17781066,23555697 +g186,207:19587893,23555697 +g186,207:19587893,23555697 +(186,207:19666601,23555697:501378,78643,0 +$186,207:19666601,23555697 +(186,207:19830455,23555697:173670,78643,0 ) +$186,207:20167979,23555697 ) -(186,199:28691405,13827489:501378,78643,0 -(186,199:28855259,13827489:173670,78643,0 +(186,207:20167979,23555697:501378,78643,0 +(186,207:20331833,23555697:173670,78643,0 ) ) -(186,199:29192783,13827489:501378,78643,0 -(186,199:29356637,13827489:173670,78643,0 +(186,207:20669357,23555697:501378,78643,0 +(186,207:20833211,23555697:173670,78643,0 ) ) -(186,199:29694161,13827489:501378,78643,0 -(186,199:29858015,13827489:173670,78643,0 +(186,207:21170735,23555697:501378,78643,0 +(186,207:21334589,23555697:173670,78643,0 ) ) -(186,199:30195539,13827489:501378,78643,0 -(186,199:30359393,13827489:173670,78643,0 +(186,207:21672113,23555697:501378,78643,0 +(186,207:21835967,23555697:173670,78643,0 ) ) -(186,199:30696917,13827489:501378,78643,0 -(186,199:30860771,13827489:173670,78643,0 +(186,207:22173491,23555697:501378,78643,0 +(186,207:22337345,23555697:173670,78643,0 ) ) -(186,199:31239538,13827489:1343490,485622,11795 -k186,199:31239538,13827489:0 -k186,199:31387651,13827489:148113 +(186,207:22674869,23555697:501378,78643,0 +(186,207:22838723,23555697:173670,78643,0 ) -g186,199:30911858,13827489 -g186,199:32583028,13827489 ) -(186,200:6630773,14668977:25952256,513147,11795 -g186,200:11873653,14668977 -h186,200:11873653,14668977:2818050,0,0 -h186,200:14691703,14668977:0,0,0 -g186,200:9448823,14668977 -(186,200:9448823,14668977:2424830,485622,11795 -k186,200:11873653,14668977:882112 +(186,207:23176247,23555697:501378,78643,0 +(186,207:23340101,23555697:173670,78643,0 ) -g186,200:13810897,14668977 -g186,200:15201571,14668977 -g186,200:16042398,14668977 -(186,200:16156955,14668977:501378,78643,0 -$186,200:16156955,14668977 -(186,200:16320809,14668977:173670,78643,0 ) -$186,200:16658333,14668977 +(186,207:23677625,23555697:501378,78643,0 +(186,207:23841479,23555697:173670,78643,0 ) -(186,200:16658333,14668977:501378,78643,0 -(186,200:16822187,14668977:173670,78643,0 ) +(186,207:24179003,23555697:501378,78643,0 +(186,207:24342857,23555697:173670,78643,0 ) -(186,200:17159711,14668977:501378,78643,0 -(186,200:17323565,14668977:173670,78643,0 ) +(186,207:24680381,23555697:501378,78643,0 +(186,207:24844235,23555697:173670,78643,0 ) -(186,200:17661089,14668977:501378,78643,0 -(186,200:17824943,14668977:173670,78643,0 ) +(186,207:25181759,23555697:501378,78643,0 +(186,207:25345613,23555697:173670,78643,0 ) -(186,200:18162467,14668977:501378,78643,0 -(186,200:18326321,14668977:173670,78643,0 ) +(186,207:25683137,23555697:501378,78643,0 +(186,207:25846991,23555697:173670,78643,0 ) -(186,200:18663845,14668977:501378,78643,0 -(186,200:18827699,14668977:173670,78643,0 ) +(186,207:26184515,23555697:501378,78643,0 +(186,207:26348369,23555697:173670,78643,0 ) -(186,200:19165223,14668977:501378,78643,0 -(186,200:19329077,14668977:173670,78643,0 ) +(186,207:26685893,23555697:501378,78643,0 +(186,207:26849747,23555697:173670,78643,0 ) -(186,200:19666601,14668977:501378,78643,0 -(186,200:19830455,14668977:173670,78643,0 ) +(186,207:27187271,23555697:501378,78643,0 +(186,207:27351125,23555697:173670,78643,0 ) -(186,200:20167979,14668977:501378,78643,0 -(186,200:20331833,14668977:173670,78643,0 ) +(186,207:27688649,23555697:501378,78643,0 +(186,207:27852503,23555697:173670,78643,0 ) -(186,200:20669357,14668977:501378,78643,0 -(186,200:20833211,14668977:173670,78643,0 ) +(186,207:28190027,23555697:501378,78643,0 +(186,207:28353881,23555697:173670,78643,0 ) -(186,200:21170735,14668977:501378,78643,0 -(186,200:21334589,14668977:173670,78643,0 ) +(186,207:28691405,23555697:501378,78643,0 +(186,207:28855259,23555697:173670,78643,0 ) -(186,200:21672113,14668977:501378,78643,0 -(186,200:21835967,14668977:173670,78643,0 ) +(186,207:29192783,23555697:501378,78643,0 +(186,207:29356637,23555697:173670,78643,0 ) -(186,200:22173491,14668977:501378,78643,0 -(186,200:22337345,14668977:173670,78643,0 ) +(186,207:29694161,23555697:501378,78643,0 +(186,207:29858015,23555697:173670,78643,0 ) -(186,200:22674869,14668977:501378,78643,0 -(186,200:22838723,14668977:173670,78643,0 ) +(186,207:30195539,23555697:501378,78643,0 +(186,207:30359393,23555697:173670,78643,0 ) -(186,200:23176247,14668977:501378,78643,0 -(186,200:23340101,14668977:173670,78643,0 ) +(186,207:30696917,23555697:501378,78643,0 +(186,207:30860771,23555697:173670,78643,0 ) -(186,200:23677625,14668977:501378,78643,0 -(186,200:23841479,14668977:173670,78643,0 ) +(186,207:31239539,23555697:1343490,485622,11795 +k186,207:31239539,23555697:0 +k186,207:31387652,23555697:148113 ) -(186,200:24179003,14668977:501378,78643,0 -(186,200:24342857,14668977:173670,78643,0 +g186,207:30911859,23555697 +g186,207:32583029,23555697 ) +(186,208:6630773,24420777:25952256,505283,126483 +g186,208:12529013,24420777 +h186,208:12529013,24420777:3080190,0,0 +h186,208:15609203,24420777:0,0,0 +g186,208:9710963,24420777 +(186,208:9710963,24420777:2818050,485622,11795 +k186,208:12529013,24420777:876874 ) -(186,200:24680381,14668977:501378,78643,0 -(186,200:24844235,14668977:173670,78643,0 +g186,208:15944749,24420777 +g186,208:17552347,24420777 +(186,208:17661089,24420777:501378,78643,0 +$186,208:17661089,24420777 +(186,208:17824943,24420777:173670,78643,0 ) +$186,208:18162467,24420777 ) -(186,200:25181759,14668977:501378,78643,0 -(186,200:25345613,14668977:173670,78643,0 +(186,208:18162467,24420777:501378,78643,0 +(186,208:18326321,24420777:173670,78643,0 ) ) -(186,200:25683137,14668977:501378,78643,0 -(186,200:25846991,14668977:173670,78643,0 +(186,208:18663845,24420777:501378,78643,0 +(186,208:18827699,24420777:173670,78643,0 ) ) -(186,200:26184515,14668977:501378,78643,0 -(186,200:26348369,14668977:173670,78643,0 +(186,208:19165223,24420777:501378,78643,0 +(186,208:19329077,24420777:173670,78643,0 ) ) -(186,200:26685893,14668977:501378,78643,0 -(186,200:26849747,14668977:173670,78643,0 +(186,208:19666601,24420777:501378,78643,0 +(186,208:19830455,24420777:173670,78643,0 ) ) -(186,200:27187271,14668977:501378,78643,0 -(186,200:27351125,14668977:173670,78643,0 +(186,208:20167979,24420777:501378,78643,0 +(186,208:20331833,24420777:173670,78643,0 ) ) -(186,200:27688649,14668977:501378,78643,0 -(186,200:27852503,14668977:173670,78643,0 +(186,208:20669357,24420777:501378,78643,0 +(186,208:20833211,24420777:173670,78643,0 ) ) -(186,200:28190027,14668977:501378,78643,0 -(186,200:28353881,14668977:173670,78643,0 +(186,208:21170735,24420777:501378,78643,0 +(186,208:21334589,24420777:173670,78643,0 ) ) -(186,200:28691405,14668977:501378,78643,0 -(186,200:28855259,14668977:173670,78643,0 +(186,208:21672113,24420777:501378,78643,0 +(186,208:21835967,24420777:173670,78643,0 ) ) -(186,200:29192783,14668977:501378,78643,0 -(186,200:29356637,14668977:173670,78643,0 +(186,208:22173491,24420777:501378,78643,0 +(186,208:22337345,24420777:173670,78643,0 ) ) -(186,200:29694161,14668977:501378,78643,0 -(186,200:29858015,14668977:173670,78643,0 +(186,208:22674869,24420777:501378,78643,0 +(186,208:22838723,24420777:173670,78643,0 ) ) -(186,200:30195539,14668977:501378,78643,0 -(186,200:30359393,14668977:173670,78643,0 +(186,208:23176247,24420777:501378,78643,0 +(186,208:23340101,24420777:173670,78643,0 ) ) -(186,200:30696917,14668977:501378,78643,0 -(186,200:30860771,14668977:173670,78643,0 +(186,208:23677625,24420777:501378,78643,0 +(186,208:23841479,24420777:173670,78643,0 ) ) -(186,200:31239539,14668977:1343490,485622,11795 -k186,200:31239539,14668977:0 -k186,200:31387652,14668977:148113 +(186,208:24179003,24420777:501378,78643,0 +(186,208:24342857,24420777:173670,78643,0 ) -g186,200:30911859,14668977 -g186,200:32583029,14668977 ) -(186,202:6630773,15510465:25952256,505283,11795 -g186,202:11873653,15510465 -h186,202:11873653,15510465:2818050,0,0 -h186,202:14691703,15510465:0,0,0 -g186,202:9448823,15510465 -(186,202:9448823,15510465:2424830,485622,11795 -k186,202:11873653,15510465:882112 +(186,208:24680381,24420777:501378,78643,0 +(186,208:24844235,24420777:173670,78643,0 ) -g186,202:15765180,15510465 -g186,202:20015189,15510465 -g186,202:21917699,15510465 -(186,202:22173491,15510465:501378,78643,0 -$186,202:22173491,15510465 -(186,202:22337345,15510465:173670,78643,0 ) -$186,202:22674869,15510465 +(186,208:25181759,24420777:501378,78643,0 +(186,208:25345613,24420777:173670,78643,0 ) -(186,202:22674869,15510465:501378,78643,0 -(186,202:22838723,15510465:173670,78643,0 ) +(186,208:25683137,24420777:501378,78643,0 +(186,208:25846991,24420777:173670,78643,0 ) -(186,202:23176247,15510465:501378,78643,0 -(186,202:23340101,15510465:173670,78643,0 ) +(186,208:26184515,24420777:501378,78643,0 +(186,208:26348369,24420777:173670,78643,0 ) -(186,202:23677625,15510465:501378,78643,0 -(186,202:23841479,15510465:173670,78643,0 ) +(186,208:26685893,24420777:501378,78643,0 +(186,208:26849747,24420777:173670,78643,0 ) -(186,202:24179003,15510465:501378,78643,0 -(186,202:24342857,15510465:173670,78643,0 ) +(186,208:27187271,24420777:501378,78643,0 +(186,208:27351125,24420777:173670,78643,0 ) -(186,202:24680381,15510465:501378,78643,0 -(186,202:24844235,15510465:173670,78643,0 ) +(186,208:27688649,24420777:501378,78643,0 +(186,208:27852503,24420777:173670,78643,0 ) -(186,202:25181759,15510465:501378,78643,0 -(186,202:25345613,15510465:173670,78643,0 ) +(186,208:28190027,24420777:501378,78643,0 +(186,208:28353881,24420777:173670,78643,0 ) -(186,202:25683137,15510465:501378,78643,0 -(186,202:25846991,15510465:173670,78643,0 ) +(186,208:28691405,24420777:501378,78643,0 +(186,208:28855259,24420777:173670,78643,0 ) -(186,202:26184515,15510465:501378,78643,0 -(186,202:26348369,15510465:173670,78643,0 ) +(186,208:29192783,24420777:501378,78643,0 +(186,208:29356637,24420777:173670,78643,0 ) -(186,202:26685893,15510465:501378,78643,0 -(186,202:26849747,15510465:173670,78643,0 ) +(186,208:29694161,24420777:501378,78643,0 +(186,208:29858015,24420777:173670,78643,0 ) -(186,202:27187271,15510465:501378,78643,0 -(186,202:27351125,15510465:173670,78643,0 ) +(186,208:30195539,24420777:501378,78643,0 +(186,208:30359393,24420777:173670,78643,0 ) -(186,202:27688649,15510465:501378,78643,0 -(186,202:27852503,15510465:173670,78643,0 ) +(186,208:30696917,24420777:501378,78643,0 +(186,208:30860771,24420777:173670,78643,0 ) -(186,202:28190027,15510465:501378,78643,0 -(186,202:28353881,15510465:173670,78643,0 ) +(186,208:31239539,24420777:1343490,485622,11795 +k186,208:31239539,24420777:0 +k186,208:31387652,24420777:148113 ) -(186,202:28691405,15510465:501378,78643,0 -(186,202:28855259,15510465:173670,78643,0 +g186,208:30911859,24420777 +g186,208:32583029,24420777 ) +(186,209:6630773,25285857:25952256,505283,11795 +g186,209:12529013,25285857 +h186,209:12529013,25285857:3080190,0,0 +h186,209:15609203,25285857:0,0,0 +g186,209:9710963,25285857 +(186,209:9710963,25285857:2818050,485622,11795 +k186,209:12529013,25285857:876874 ) -(186,202:29192783,15510465:501378,78643,0 -(186,202:29356637,15510465:173670,78643,0 +g186,209:13652300,25285857 +g186,209:15632143,25285857 +(186,209:15655577,25285857:501378,78643,0 +$186,209:15655577,25285857 +(186,209:15819431,25285857:173670,78643,0 ) +$186,209:16156955,25285857 ) -(186,202:29694161,15510465:501378,78643,0 -(186,202:29858015,15510465:173670,78643,0 +(186,209:16156955,25285857:501378,78643,0 +(186,209:16320809,25285857:173670,78643,0 ) ) -(186,202:30195539,15510465:501378,78643,0 -(186,202:30359393,15510465:173670,78643,0 +(186,209:16658333,25285857:501378,78643,0 +(186,209:16822187,25285857:173670,78643,0 ) ) -(186,202:30696917,15510465:501378,78643,0 -(186,202:30860771,15510465:173670,78643,0 +(186,209:17159711,25285857:501378,78643,0 +(186,209:17323565,25285857:173670,78643,0 ) ) -(186,202:31239539,15510465:1343490,485622,11795 -k186,202:31239539,15510465:0 -k186,202:31387652,15510465:148113 +(186,209:17661089,25285857:501378,78643,0 +(186,209:17824943,25285857:173670,78643,0 ) -g186,202:30911859,15510465 -g186,202:32583029,15510465 ) -(186,203:6630773,16351953:25952256,505283,11795 -g186,203:11873653,16351953 -h186,203:11873653,16351953:2818050,0,0 -h186,203:14691703,16351953:0,0,0 -g186,203:9448823,16351953 -(186,203:9448823,16351953:2424830,485622,11795 -k186,203:11873653,16351953:882112 +(186,209:18162467,25285857:501378,78643,0 +(186,209:18326321,25285857:173670,78643,0 ) -g186,203:14681215,16351953 -g186,203:18931224,16351953 -g186,203:20833734,16351953 -(186,203:21170735,16351953:501378,78643,0 -$186,203:21170735,16351953 -(186,203:21334589,16351953:173670,78643,0 ) -$186,203:21672113,16351953 +(186,209:18663845,25285857:501378,78643,0 +(186,209:18827699,25285857:173670,78643,0 ) -(186,203:21672113,16351953:501378,78643,0 -(186,203:21835967,16351953:173670,78643,0 ) +(186,209:19165223,25285857:501378,78643,0 +(186,209:19329077,25285857:173670,78643,0 ) -(186,203:22173491,16351953:501378,78643,0 -(186,203:22337345,16351953:173670,78643,0 ) +(186,209:19666601,25285857:501378,78643,0 +(186,209:19830455,25285857:173670,78643,0 ) -(186,203:22674869,16351953:501378,78643,0 -(186,203:22838723,16351953:173670,78643,0 ) +(186,209:20167979,25285857:501378,78643,0 +(186,209:20331833,25285857:173670,78643,0 ) -(186,203:23176247,16351953:501378,78643,0 -(186,203:23340101,16351953:173670,78643,0 ) +(186,209:20669357,25285857:501378,78643,0 +(186,209:20833211,25285857:173670,78643,0 ) -(186,203:23677625,16351953:501378,78643,0 -(186,203:23841479,16351953:173670,78643,0 ) +(186,209:21170735,25285857:501378,78643,0 +(186,209:21334589,25285857:173670,78643,0 ) -(186,203:24179003,16351953:501378,78643,0 -(186,203:24342857,16351953:173670,78643,0 ) +(186,209:21672113,25285857:501378,78643,0 +(186,209:21835967,25285857:173670,78643,0 ) -(186,203:24680381,16351953:501378,78643,0 -(186,203:24844235,16351953:173670,78643,0 ) +(186,209:22173491,25285857:501378,78643,0 +(186,209:22337345,25285857:173670,78643,0 ) -(186,203:25181759,16351953:501378,78643,0 -(186,203:25345613,16351953:173670,78643,0 ) +(186,209:22674869,25285857:501378,78643,0 +(186,209:22838723,25285857:173670,78643,0 ) -(186,203:25683137,16351953:501378,78643,0 -(186,203:25846991,16351953:173670,78643,0 ) +(186,209:23176247,25285857:501378,78643,0 +(186,209:23340101,25285857:173670,78643,0 ) -(186,203:26184515,16351953:501378,78643,0 -(186,203:26348369,16351953:173670,78643,0 ) +(186,209:23677625,25285857:501378,78643,0 +(186,209:23841479,25285857:173670,78643,0 ) -(186,203:26685893,16351953:501378,78643,0 -(186,203:26849747,16351953:173670,78643,0 ) +(186,209:24179003,25285857:501378,78643,0 +(186,209:24342857,25285857:173670,78643,0 ) -(186,203:27187271,16351953:501378,78643,0 -(186,203:27351125,16351953:173670,78643,0 ) +(186,209:24680381,25285857:501378,78643,0 +(186,209:24844235,25285857:173670,78643,0 ) -(186,203:27688649,16351953:501378,78643,0 -(186,203:27852503,16351953:173670,78643,0 ) +(186,209:25181759,25285857:501378,78643,0 +(186,209:25345613,25285857:173670,78643,0 ) -(186,203:28190027,16351953:501378,78643,0 -(186,203:28353881,16351953:173670,78643,0 ) +(186,209:25683137,25285857:501378,78643,0 +(186,209:25846991,25285857:173670,78643,0 ) -(186,203:28691405,16351953:501378,78643,0 -(186,203:28855259,16351953:173670,78643,0 ) +(186,209:26184515,25285857:501378,78643,0 +(186,209:26348369,25285857:173670,78643,0 ) -(186,203:29192783,16351953:501378,78643,0 -(186,203:29356637,16351953:173670,78643,0 ) +(186,209:26685893,25285857:501378,78643,0 +(186,209:26849747,25285857:173670,78643,0 ) -(186,203:29694161,16351953:501378,78643,0 -(186,203:29858015,16351953:173670,78643,0 ) +(186,209:27187271,25285857:501378,78643,0 +(186,209:27351125,25285857:173670,78643,0 ) -(186,203:30195539,16351953:501378,78643,0 -(186,203:30359393,16351953:173670,78643,0 ) +(186,209:27688649,25285857:501378,78643,0 +(186,209:27852503,25285857:173670,78643,0 ) -(186,203:30696917,16351953:501378,78643,0 -(186,203:30860771,16351953:173670,78643,0 ) +(186,209:28190027,25285857:501378,78643,0 +(186,209:28353881,25285857:173670,78643,0 ) -(186,203:31239539,16351953:1343490,485622,11795 -k186,203:31239539,16351953:0 -k186,203:31387652,16351953:148113 ) -g186,203:30911859,16351953 -g186,203:32583029,16351953 +(186,209:28691405,25285857:501378,78643,0 +(186,209:28855259,25285857:173670,78643,0 ) -(186,204:6630773,17193441:25952256,505283,11795 -g186,204:11873653,17193441 -h186,204:11873653,17193441:2818050,0,0 -h186,204:14691703,17193441:0,0,0 -g186,204:9448823,17193441 -(186,204:9448823,17193441:2424830,485622,11795 -k186,204:11873653,17193441:882112 ) -g186,204:14270960,17193441 -g186,204:16173470,17193441 -(186,204:16658333,17193441:501378,78643,0 -$186,204:16658333,17193441 -(186,204:16822187,17193441:173670,78643,0 +(186,209:29192783,25285857:501378,78643,0 +(186,209:29356637,25285857:173670,78643,0 ) -$186,204:17159711,17193441 ) -(186,204:17159711,17193441:501378,78643,0 -(186,204:17323565,17193441:173670,78643,0 +(186,209:29694161,25285857:501378,78643,0 +(186,209:29858015,25285857:173670,78643,0 ) ) -(186,204:17661089,17193441:501378,78643,0 -(186,204:17824943,17193441:173670,78643,0 +(186,209:30195539,25285857:501378,78643,0 +(186,209:30359393,25285857:173670,78643,0 ) ) -(186,204:18162467,17193441:501378,78643,0 -(186,204:18326321,17193441:173670,78643,0 +(186,209:30696917,25285857:501378,78643,0 +(186,209:30860771,25285857:173670,78643,0 ) ) -(186,204:18663845,17193441:501378,78643,0 -(186,204:18827699,17193441:173670,78643,0 +(186,209:31239539,25285857:1343490,485622,11795 +k186,209:31239539,25285857:0 +k186,209:31387652,25285857:148113 ) +g186,209:30911859,25285857 +g186,209:32583029,25285857 ) -(186,204:19165223,17193441:501378,78643,0 -(186,204:19329077,17193441:173670,78643,0 +(186,210:6630773,26150937:25952256,505283,11795 +g186,210:9710963,26150937 +h186,210:9710963,26150937:983040,0,0 +h186,210:10694003,26150937:0,0,0 +g186,210:7613813,26150937 +(186,210:7613813,26150937:2097150,485622,11795 +k186,210:9710963,26150937:728103 ) +g186,210:12404492,26150937 +g186,210:12404492,26150937 +(186,210:12647309,26150937:501378,78643,0 +$186,210:12647309,26150937 +(186,210:12811163,26150937:173670,78643,0 ) -(186,204:19666601,17193441:501378,78643,0 -(186,204:19830455,17193441:173670,78643,0 +$186,210:13148687,26150937 ) +(186,210:13148687,26150937:501378,78643,0 +(186,210:13312541,26150937:173670,78643,0 ) -(186,204:20167979,17193441:501378,78643,0 -(186,204:20331833,17193441:173670,78643,0 ) +(186,210:13650065,26150937:501378,78643,0 +(186,210:13813919,26150937:173670,78643,0 ) -(186,204:20669357,17193441:501378,78643,0 -(186,204:20833211,17193441:173670,78643,0 ) +(186,210:14151443,26150937:501378,78643,0 +(186,210:14315297,26150937:173670,78643,0 ) -(186,204:21170735,17193441:501378,78643,0 -(186,204:21334589,17193441:173670,78643,0 ) +(186,210:14652821,26150937:501378,78643,0 +(186,210:14816675,26150937:173670,78643,0 ) -(186,204:21672113,17193441:501378,78643,0 -(186,204:21835967,17193441:173670,78643,0 ) +(186,210:15154199,26150937:501378,78643,0 +(186,210:15318053,26150937:173670,78643,0 ) -(186,204:22173491,17193441:501378,78643,0 -(186,204:22337345,17193441:173670,78643,0 ) +(186,210:15655577,26150937:501378,78643,0 +(186,210:15819431,26150937:173670,78643,0 ) -(186,204:22674869,17193441:501378,78643,0 -(186,204:22838723,17193441:173670,78643,0 ) +(186,210:16156955,26150937:501378,78643,0 +(186,210:16320809,26150937:173670,78643,0 ) -(186,204:23176247,17193441:501378,78643,0 -(186,204:23340101,17193441:173670,78643,0 ) +(186,210:16658333,26150937:501378,78643,0 +(186,210:16822187,26150937:173670,78643,0 ) -(186,204:23677625,17193441:501378,78643,0 -(186,204:23841479,17193441:173670,78643,0 ) +(186,210:17159711,26150937:501378,78643,0 +(186,210:17323565,26150937:173670,78643,0 ) -(186,204:24179003,17193441:501378,78643,0 -(186,204:24342857,17193441:173670,78643,0 ) +(186,210:17661089,26150937:501378,78643,0 +(186,210:17824943,26150937:173670,78643,0 ) -(186,204:24680381,17193441:501378,78643,0 -(186,204:24844235,17193441:173670,78643,0 ) +(186,210:18162467,26150937:501378,78643,0 +(186,210:18326321,26150937:173670,78643,0 ) -(186,204:25181759,17193441:501378,78643,0 -(186,204:25345613,17193441:173670,78643,0 ) +(186,210:18663845,26150937:501378,78643,0 +(186,210:18827699,26150937:173670,78643,0 ) -(186,204:25683137,17193441:501378,78643,0 -(186,204:25846991,17193441:173670,78643,0 ) +(186,210:19165223,26150937:501378,78643,0 +(186,210:19329077,26150937:173670,78643,0 ) -(186,204:26184515,17193441:501378,78643,0 -(186,204:26348369,17193441:173670,78643,0 ) +(186,210:19666601,26150937:501378,78643,0 +(186,210:19830455,26150937:173670,78643,0 ) -(186,204:26685893,17193441:501378,78643,0 -(186,204:26849747,17193441:173670,78643,0 ) +(186,210:20167979,26150937:501378,78643,0 +(186,210:20331833,26150937:173670,78643,0 ) -(186,204:27187271,17193441:501378,78643,0 -(186,204:27351125,17193441:173670,78643,0 ) +(186,210:20669357,26150937:501378,78643,0 +(186,210:20833211,26150937:173670,78643,0 ) -(186,204:27688649,17193441:501378,78643,0 -(186,204:27852503,17193441:173670,78643,0 ) +(186,210:21170735,26150937:501378,78643,0 +(186,210:21334589,26150937:173670,78643,0 ) -(186,204:28190027,17193441:501378,78643,0 -(186,204:28353881,17193441:173670,78643,0 ) +(186,210:21672113,26150937:501378,78643,0 +(186,210:21835967,26150937:173670,78643,0 ) -(186,204:28691405,17193441:501378,78643,0 -(186,204:28855259,17193441:173670,78643,0 ) +(186,210:22173491,26150937:501378,78643,0 +(186,210:22337345,26150937:173670,78643,0 ) -(186,204:29192783,17193441:501378,78643,0 -(186,204:29356637,17193441:173670,78643,0 ) +(186,210:22674869,26150937:501378,78643,0 +(186,210:22838723,26150937:173670,78643,0 ) -(186,204:29694161,17193441:501378,78643,0 -(186,204:29858015,17193441:173670,78643,0 ) +(186,210:23176247,26150937:501378,78643,0 +(186,210:23340101,26150937:173670,78643,0 ) -(186,204:30195539,17193441:501378,78643,0 -(186,204:30359393,17193441:173670,78643,0 ) +(186,210:23677625,26150937:501378,78643,0 +(186,210:23841479,26150937:173670,78643,0 ) -(186,204:30696917,17193441:501378,78643,0 -(186,204:30860771,17193441:173670,78643,0 ) +(186,210:24179003,26150937:501378,78643,0 +(186,210:24342857,26150937:173670,78643,0 ) -(186,204:31239539,17193441:1343490,485622,11795 -k186,204:31239539,17193441:0 -k186,204:31387652,17193441:148113 ) -g186,204:30911859,17193441 -g186,204:32583029,17193441 +(186,210:24680381,26150937:501378,78643,0 +(186,210:24844235,26150937:173670,78643,0 ) -(186,205:6630773,18034929:25952256,505283,126483 -g186,205:11873653,18034929 -h186,205:11873653,18034929:2818050,0,0 -h186,205:14691703,18034929:0,0,0 -g186,205:9448823,18034929 -(186,205:9448823,18034929:2424830,485622,11795 -k186,205:11873653,18034929:483654 ) -g186,205:14544900,18034929 -g186,205:16447410,18034929 -(186,205:16658333,18034929:501378,78643,0 -$186,205:16658333,18034929 -(186,205:16822187,18034929:173670,78643,0 +(186,210:25181759,26150937:501378,78643,0 +(186,210:25345613,26150937:173670,78643,0 ) -$186,205:17159711,18034929 ) -(186,205:17159711,18034929:501378,78643,0 -(186,205:17323565,18034929:173670,78643,0 +(186,210:25683137,26150937:501378,78643,0 +(186,210:25846991,26150937:173670,78643,0 ) ) -(186,205:17661089,18034929:501378,78643,0 -(186,205:17824943,18034929:173670,78643,0 +(186,210:26184515,26150937:501378,78643,0 +(186,210:26348369,26150937:173670,78643,0 ) ) -(186,205:18162467,18034929:501378,78643,0 -(186,205:18326321,18034929:173670,78643,0 +(186,210:26685893,26150937:501378,78643,0 +(186,210:26849747,26150937:173670,78643,0 ) ) -(186,205:18663845,18034929:501378,78643,0 -(186,205:18827699,18034929:173670,78643,0 +(186,210:27187271,26150937:501378,78643,0 +(186,210:27351125,26150937:173670,78643,0 ) ) -(186,205:19165223,18034929:501378,78643,0 -(186,205:19329077,18034929:173670,78643,0 +(186,210:27688649,26150937:501378,78643,0 +(186,210:27852503,26150937:173670,78643,0 ) ) -(186,205:19666601,18034929:501378,78643,0 -(186,205:19830455,18034929:173670,78643,0 +(186,210:28190027,26150937:501378,78643,0 +(186,210:28353881,26150937:173670,78643,0 ) ) -(186,205:20167979,18034929:501378,78643,0 -(186,205:20331833,18034929:173670,78643,0 +(186,210:28691405,26150937:501378,78643,0 +(186,210:28855259,26150937:173670,78643,0 ) ) -(186,205:20669357,18034929:501378,78643,0 -(186,205:20833211,18034929:173670,78643,0 +(186,210:29192783,26150937:501378,78643,0 +(186,210:29356637,26150937:173670,78643,0 ) ) -(186,205:21170735,18034929:501378,78643,0 -(186,205:21334589,18034929:173670,78643,0 +(186,210:29694161,26150937:501378,78643,0 +(186,210:29858015,26150937:173670,78643,0 ) ) -(186,205:21672113,18034929:501378,78643,0 -(186,205:21835967,18034929:173670,78643,0 +(186,210:30195539,26150937:501378,78643,0 +(186,210:30359393,26150937:173670,78643,0 ) ) -(186,205:22173491,18034929:501378,78643,0 -(186,205:22337345,18034929:173670,78643,0 +(186,210:30696917,26150937:501378,78643,0 +(186,210:30860771,26150937:173670,78643,0 ) ) -(186,205:22674869,18034929:501378,78643,0 -(186,205:22838723,18034929:173670,78643,0 +(186,210:31239540,26150937:1343490,485622,11795 +k186,210:31239540,26150937:0 +k186,210:31387653,26150937:148113 ) +g186,210:30911860,26150937 +g186,210:32583030,26150937 ) -(186,205:23176247,18034929:501378,78643,0 -(186,205:23340101,18034929:173670,78643,0 +(186,211:6630773,27016017:25952256,505283,126483 +g186,211:12529013,27016017 +h186,211:12529013,27016017:3080190,0,0 +h186,211:15609203,27016017:0,0,0 +g186,211:9710963,27016017 +(186,211:9710963,27016017:2818050,485622,11795 +k186,211:12529013,27016017:876874 ) +g186,211:15775666,27016017 +g186,211:18092364,27016017 +(186,211:18162467,27016017:501378,78643,0 +$186,211:18162467,27016017 +(186,211:18326321,27016017:173670,78643,0 ) -(186,205:23677625,18034929:501378,78643,0 -(186,205:23841479,18034929:173670,78643,0 +$186,211:18663845,27016017 ) +(186,211:18663845,27016017:501378,78643,0 +(186,211:18827699,27016017:173670,78643,0 ) -(186,205:24179003,18034929:501378,78643,0 -(186,205:24342857,18034929:173670,78643,0 ) +(186,211:19165223,27016017:501378,78643,0 +(186,211:19329077,27016017:173670,78643,0 ) -(186,205:24680381,18034929:501378,78643,0 -(186,205:24844235,18034929:173670,78643,0 ) +(186,211:19666601,27016017:501378,78643,0 +(186,211:19830455,27016017:173670,78643,0 ) -(186,205:25181759,18034929:501378,78643,0 -(186,205:25345613,18034929:173670,78643,0 ) +(186,211:20167979,27016017:501378,78643,0 +(186,211:20331833,27016017:173670,78643,0 ) -(186,205:25683137,18034929:501378,78643,0 -(186,205:25846991,18034929:173670,78643,0 ) +(186,211:20669357,27016017:501378,78643,0 +(186,211:20833211,27016017:173670,78643,0 ) -(186,205:26184515,18034929:501378,78643,0 -(186,205:26348369,18034929:173670,78643,0 ) +(186,211:21170735,27016017:501378,78643,0 +(186,211:21334589,27016017:173670,78643,0 ) -(186,205:26685893,18034929:501378,78643,0 -(186,205:26849747,18034929:173670,78643,0 ) +(186,211:21672113,27016017:501378,78643,0 +(186,211:21835967,27016017:173670,78643,0 ) -(186,205:27187271,18034929:501378,78643,0 -(186,205:27351125,18034929:173670,78643,0 ) +(186,211:22173491,27016017:501378,78643,0 +(186,211:22337345,27016017:173670,78643,0 ) -(186,205:27688649,18034929:501378,78643,0 -(186,205:27852503,18034929:173670,78643,0 ) +(186,211:22674869,27016017:501378,78643,0 +(186,211:22838723,27016017:173670,78643,0 ) -(186,205:28190027,18034929:501378,78643,0 -(186,205:28353881,18034929:173670,78643,0 ) +(186,211:23176247,27016017:501378,78643,0 +(186,211:23340101,27016017:173670,78643,0 ) -(186,205:28691405,18034929:501378,78643,0 -(186,205:28855259,18034929:173670,78643,0 ) +(186,211:23677625,27016017:501378,78643,0 +(186,211:23841479,27016017:173670,78643,0 ) -(186,205:29192783,18034929:501378,78643,0 -(186,205:29356637,18034929:173670,78643,0 ) +(186,211:24179003,27016017:501378,78643,0 +(186,211:24342857,27016017:173670,78643,0 ) -(186,205:29694161,18034929:501378,78643,0 -(186,205:29858015,18034929:173670,78643,0 ) +(186,211:24680381,27016017:501378,78643,0 +(186,211:24844235,27016017:173670,78643,0 ) -(186,205:30195539,18034929:501378,78643,0 -(186,205:30359393,18034929:173670,78643,0 ) +(186,211:25181759,27016017:501378,78643,0 +(186,211:25345613,27016017:173670,78643,0 ) -(186,205:30696917,18034929:501378,78643,0 -(186,205:30860771,18034929:173670,78643,0 ) +(186,211:25683137,27016017:501378,78643,0 +(186,211:25846991,27016017:173670,78643,0 ) -(186,205:31239539,18034929:1343490,485622,11795 -k186,205:31239539,18034929:0 -k186,205:31387652,18034929:148113 ) -g186,205:30911859,18034929 -g186,205:32583029,18034929 +(186,211:26184515,27016017:501378,78643,0 +(186,211:26348369,27016017:173670,78643,0 ) -(186,206:6630773,18876417:25952256,505283,134348 -g186,206:9448823,18876417 -h186,206:9448823,18876417:983040,0,0 -h186,206:10431863,18876417:0,0,0 -g186,206:7613813,18876417 -(186,206:7613813,18876417:1835010,485622,11795 -k186,206:9448823,18876417:465963 ) -g186,206:11967371,18876417 -g186,206:15957202,18876417 -g186,206:15957202,18876417 -(186,206:16156955,18876417:501378,78643,0 -$186,206:16156955,18876417 -(186,206:16320809,18876417:173670,78643,0 +(186,211:26685893,27016017:501378,78643,0 +(186,211:26849747,27016017:173670,78643,0 ) -$186,206:16658333,18876417 ) -(186,206:16658333,18876417:501378,78643,0 -(186,206:16822187,18876417:173670,78643,0 +(186,211:27187271,27016017:501378,78643,0 +(186,211:27351125,27016017:173670,78643,0 ) ) -(186,206:17159711,18876417:501378,78643,0 -(186,206:17323565,18876417:173670,78643,0 +(186,211:27688649,27016017:501378,78643,0 +(186,211:27852503,27016017:173670,78643,0 ) ) -(186,206:17661089,18876417:501378,78643,0 -(186,206:17824943,18876417:173670,78643,0 +(186,211:28190027,27016017:501378,78643,0 +(186,211:28353881,27016017:173670,78643,0 ) ) -(186,206:18162467,18876417:501378,78643,0 -(186,206:18326321,18876417:173670,78643,0 +(186,211:28691405,27016017:501378,78643,0 +(186,211:28855259,27016017:173670,78643,0 ) ) -(186,206:18663845,18876417:501378,78643,0 -(186,206:18827699,18876417:173670,78643,0 +(186,211:29192783,27016017:501378,78643,0 +(186,211:29356637,27016017:173670,78643,0 ) ) -(186,206:19165223,18876417:501378,78643,0 -(186,206:19329077,18876417:173670,78643,0 +(186,211:29694161,27016017:501378,78643,0 +(186,211:29858015,27016017:173670,78643,0 ) ) -(186,206:19666601,18876417:501378,78643,0 -(186,206:19830455,18876417:173670,78643,0 +(186,211:30195539,27016017:501378,78643,0 +(186,211:30359393,27016017:173670,78643,0 ) ) -(186,206:20167979,18876417:501378,78643,0 -(186,206:20331833,18876417:173670,78643,0 +(186,211:30696917,27016017:501378,78643,0 +(186,211:30860771,27016017:173670,78643,0 ) ) -(186,206:20669357,18876417:501378,78643,0 -(186,206:20833211,18876417:173670,78643,0 +(186,211:31239539,27016017:1343490,485622,11795 +k186,211:31239539,27016017:0 +k186,211:31387652,27016017:148113 ) +g186,211:30911859,27016017 +g186,211:32583029,27016017 ) -(186,206:21170735,18876417:501378,78643,0 -(186,206:21334589,18876417:173670,78643,0 +(186,212:6630773,27881097:25952256,505283,126483 +g186,212:12529013,27881097 +h186,212:12529013,27881097:3080190,0,0 +h186,212:15609203,27881097:0,0,0 +g186,212:9710963,27881097 +(186,212:9710963,27881097:2818050,485622,11795 +k186,212:12529013,27881097:876874 ) +g186,212:16281604,27881097 +g186,212:18598302,27881097 +(186,212:18663845,27881097:501378,78643,0 +$186,212:18663845,27881097 +(186,212:18827699,27881097:173670,78643,0 ) -(186,206:21672113,18876417:501378,78643,0 -(186,206:21835967,18876417:173670,78643,0 +$186,212:19165223,27881097 ) +(186,212:19165223,27881097:501378,78643,0 +(186,212:19329077,27881097:173670,78643,0 ) -(186,206:22173491,18876417:501378,78643,0 -(186,206:22337345,18876417:173670,78643,0 ) +(186,212:19666601,27881097:501378,78643,0 +(186,212:19830455,27881097:173670,78643,0 ) -(186,206:22674869,18876417:501378,78643,0 -(186,206:22838723,18876417:173670,78643,0 ) +(186,212:20167979,27881097:501378,78643,0 +(186,212:20331833,27881097:173670,78643,0 ) -(186,206:23176247,18876417:501378,78643,0 -(186,206:23340101,18876417:173670,78643,0 ) +(186,212:20669357,27881097:501378,78643,0 +(186,212:20833211,27881097:173670,78643,0 ) -(186,206:23677625,18876417:501378,78643,0 -(186,206:23841479,18876417:173670,78643,0 ) +(186,212:21170735,27881097:501378,78643,0 +(186,212:21334589,27881097:173670,78643,0 ) -(186,206:24179003,18876417:501378,78643,0 -(186,206:24342857,18876417:173670,78643,0 ) +(186,212:21672113,27881097:501378,78643,0 +(186,212:21835967,27881097:173670,78643,0 ) -(186,206:24680381,18876417:501378,78643,0 -(186,206:24844235,18876417:173670,78643,0 ) +(186,212:22173491,27881097:501378,78643,0 +(186,212:22337345,27881097:173670,78643,0 ) -(186,206:25181759,18876417:501378,78643,0 -(186,206:25345613,18876417:173670,78643,0 ) +(186,212:22674869,27881097:501378,78643,0 +(186,212:22838723,27881097:173670,78643,0 ) -(186,206:25683137,18876417:501378,78643,0 -(186,206:25846991,18876417:173670,78643,0 ) +(186,212:23176247,27881097:501378,78643,0 +(186,212:23340101,27881097:173670,78643,0 ) -(186,206:26184515,18876417:501378,78643,0 -(186,206:26348369,18876417:173670,78643,0 ) +(186,212:23677625,27881097:501378,78643,0 +(186,212:23841479,27881097:173670,78643,0 ) -(186,206:26685893,18876417:501378,78643,0 -(186,206:26849747,18876417:173670,78643,0 ) +(186,212:24179003,27881097:501378,78643,0 +(186,212:24342857,27881097:173670,78643,0 ) -(186,206:27187271,18876417:501378,78643,0 -(186,206:27351125,18876417:173670,78643,0 ) +(186,212:24680381,27881097:501378,78643,0 +(186,212:24844235,27881097:173670,78643,0 ) -(186,206:27688649,18876417:501378,78643,0 -(186,206:27852503,18876417:173670,78643,0 ) +(186,212:25181759,27881097:501378,78643,0 +(186,212:25345613,27881097:173670,78643,0 ) -(186,206:28190027,18876417:501378,78643,0 -(186,206:28353881,18876417:173670,78643,0 ) +(186,212:25683137,27881097:501378,78643,0 +(186,212:25846991,27881097:173670,78643,0 ) -(186,206:28691405,18876417:501378,78643,0 -(186,206:28855259,18876417:173670,78643,0 ) +(186,212:26184515,27881097:501378,78643,0 +(186,212:26348369,27881097:173670,78643,0 ) -(186,206:29192783,18876417:501378,78643,0 -(186,206:29356637,18876417:173670,78643,0 ) +(186,212:26685893,27881097:501378,78643,0 +(186,212:26849747,27881097:173670,78643,0 ) -(186,206:29694161,18876417:501378,78643,0 -(186,206:29858015,18876417:173670,78643,0 ) +(186,212:27187271,27881097:501378,78643,0 +(186,212:27351125,27881097:173670,78643,0 ) -(186,206:30195539,18876417:501378,78643,0 -(186,206:30359393,18876417:173670,78643,0 ) +(186,212:27688649,27881097:501378,78643,0 +(186,212:27852503,27881097:173670,78643,0 ) -(186,206:30696917,18876417:501378,78643,0 -(186,206:30860771,18876417:173670,78643,0 ) +(186,212:28190027,27881097:501378,78643,0 +(186,212:28353881,27881097:173670,78643,0 ) -(186,206:31239539,18876417:1343490,485622,11795 -k186,206:31239539,18876417:0 -k186,206:31387652,18876417:148113 ) -g186,206:30911859,18876417 -g186,206:32583029,18876417 +(186,212:28691405,27881097:501378,78643,0 +(186,212:28855259,27881097:173670,78643,0 ) -(186,207:6630773,19717905:25952256,505283,126483 -g186,207:9448823,19717905 -h186,207:9448823,19717905:983040,0,0 -h186,207:10431863,19717905:0,0,0 -g186,207:7613813,19717905 -(186,207:7613813,19717905:1835010,485622,11795 -k186,207:9448823,19717905:465963 ) -g186,207:13508123,19717905 -g186,207:14898797,19717905 -g186,207:17518926,19717905 -g186,207:19325753,19717905 -g186,207:19325753,19717905 -(186,207:19666601,19717905:501378,78643,0 -$186,207:19666601,19717905 -(186,207:19830455,19717905:173670,78643,0 +(186,212:29192783,27881097:501378,78643,0 +(186,212:29356637,27881097:173670,78643,0 ) -$186,207:20167979,19717905 ) -(186,207:20167979,19717905:501378,78643,0 -(186,207:20331833,19717905:173670,78643,0 +(186,212:29694161,27881097:501378,78643,0 +(186,212:29858015,27881097:173670,78643,0 ) ) -(186,207:20669357,19717905:501378,78643,0 -(186,207:20833211,19717905:173670,78643,0 +(186,212:30195539,27881097:501378,78643,0 +(186,212:30359393,27881097:173670,78643,0 ) ) -(186,207:21170735,19717905:501378,78643,0 -(186,207:21334589,19717905:173670,78643,0 +(186,212:30696917,27881097:501378,78643,0 +(186,212:30860771,27881097:173670,78643,0 ) ) -(186,207:21672113,19717905:501378,78643,0 -(186,207:21835967,19717905:173670,78643,0 +(186,212:31239539,27881097:1343490,485622,11795 +k186,212:31239539,27881097:0 +k186,212:31387652,27881097:148113 ) +g186,212:30911859,27881097 +g186,212:32583029,27881097 ) -(186,207:22173491,19717905:501378,78643,0 -(186,207:22337345,19717905:173670,78643,0 +(186,213:6630773,28746177:25952256,513147,134348 +g186,213:12529013,28746177 +h186,213:12529013,28746177:3080190,0,0 +h186,213:15609203,28746177:0,0,0 +g186,213:9710963,28746177 +(186,213:9710963,28746177:2818050,485622,11795 +k186,213:12529013,28746177:876874 ) +g186,213:15414563,28746177 +g186,213:15969652,28746177 +g186,213:17452076,28746177 +g186,213:19438472,28746177 +(186,213:19666601,28746177:501378,78643,0 +$186,213:19666601,28746177 +(186,213:19830455,28746177:173670,78643,0 ) -(186,207:22674869,19717905:501378,78643,0 -(186,207:22838723,19717905:173670,78643,0 +$186,213:20167979,28746177 ) +(186,213:20167979,28746177:501378,78643,0 +(186,213:20331833,28746177:173670,78643,0 ) -(186,207:23176247,19717905:501378,78643,0 -(186,207:23340101,19717905:173670,78643,0 ) +(186,213:20669357,28746177:501378,78643,0 +(186,213:20833211,28746177:173670,78643,0 ) -(186,207:23677625,19717905:501378,78643,0 -(186,207:23841479,19717905:173670,78643,0 ) +(186,213:21170735,28746177:501378,78643,0 +(186,213:21334589,28746177:173670,78643,0 ) -(186,207:24179003,19717905:501378,78643,0 -(186,207:24342857,19717905:173670,78643,0 ) +(186,213:21672113,28746177:501378,78643,0 +(186,213:21835967,28746177:173670,78643,0 ) -(186,207:24680381,19717905:501378,78643,0 -(186,207:24844235,19717905:173670,78643,0 ) +(186,213:22173491,28746177:501378,78643,0 +(186,213:22337345,28746177:173670,78643,0 ) -(186,207:25181759,19717905:501378,78643,0 -(186,207:25345613,19717905:173670,78643,0 ) +(186,213:22674869,28746177:501378,78643,0 +(186,213:22838723,28746177:173670,78643,0 ) -(186,207:25683137,19717905:501378,78643,0 -(186,207:25846991,19717905:173670,78643,0 ) +(186,213:23176247,28746177:501378,78643,0 +(186,213:23340101,28746177:173670,78643,0 ) -(186,207:26184515,19717905:501378,78643,0 -(186,207:26348369,19717905:173670,78643,0 ) +(186,213:23677625,28746177:501378,78643,0 +(186,213:23841479,28746177:173670,78643,0 ) -(186,207:26685893,19717905:501378,78643,0 -(186,207:26849747,19717905:173670,78643,0 ) +(186,213:24179003,28746177:501378,78643,0 +(186,213:24342857,28746177:173670,78643,0 ) -(186,207:27187271,19717905:501378,78643,0 -(186,207:27351125,19717905:173670,78643,0 ) +(186,213:24680381,28746177:501378,78643,0 +(186,213:24844235,28746177:173670,78643,0 ) -(186,207:27688649,19717905:501378,78643,0 -(186,207:27852503,19717905:173670,78643,0 ) +(186,213:25181759,28746177:501378,78643,0 +(186,213:25345613,28746177:173670,78643,0 ) -(186,207:28190027,19717905:501378,78643,0 -(186,207:28353881,19717905:173670,78643,0 ) +(186,213:25683137,28746177:501378,78643,0 +(186,213:25846991,28746177:173670,78643,0 ) -(186,207:28691405,19717905:501378,78643,0 -(186,207:28855259,19717905:173670,78643,0 ) +(186,213:26184515,28746177:501378,78643,0 +(186,213:26348369,28746177:173670,78643,0 ) -(186,207:29192783,19717905:501378,78643,0 -(186,207:29356637,19717905:173670,78643,0 ) +(186,213:26685893,28746177:501378,78643,0 +(186,213:26849747,28746177:173670,78643,0 ) -(186,207:29694161,19717905:501378,78643,0 -(186,207:29858015,19717905:173670,78643,0 ) +(186,213:27187271,28746177:501378,78643,0 +(186,213:27351125,28746177:173670,78643,0 ) -(186,207:30195539,19717905:501378,78643,0 -(186,207:30359393,19717905:173670,78643,0 ) +(186,213:27688649,28746177:501378,78643,0 +(186,213:27852503,28746177:173670,78643,0 ) -(186,207:30696917,19717905:501378,78643,0 -(186,207:30860771,19717905:173670,78643,0 ) +(186,213:28190027,28746177:501378,78643,0 +(186,213:28353881,28746177:173670,78643,0 ) -(186,207:31239539,19717905:1343490,485622,11795 -k186,207:31239539,19717905:0 -k186,207:31387652,19717905:148113 ) -g186,207:30911859,19717905 -g186,207:32583029,19717905 +(186,213:28691405,28746177:501378,78643,0 +(186,213:28855259,28746177:173670,78643,0 ) -(186,208:6630773,20559393:25952256,505283,126483 -g186,208:11873653,20559393 -h186,208:11873653,20559393:2818050,0,0 -h186,208:14691703,20559393:0,0,0 -g186,208:9448823,20559393 -(186,208:9448823,20559393:2424830,485622,11795 -k186,208:11873653,20559393:483654 ) -g186,208:15289389,20559393 -g186,208:16896987,20559393 -(186,208:17159711,20559393:501378,78643,0 -$186,208:17159711,20559393 -(186,208:17323565,20559393:173670,78643,0 +(186,213:29192783,28746177:501378,78643,0 +(186,213:29356637,28746177:173670,78643,0 ) -$186,208:17661089,20559393 ) -(186,208:17661089,20559393:501378,78643,0 -(186,208:17824943,20559393:173670,78643,0 +(186,213:29694161,28746177:501378,78643,0 +(186,213:29858015,28746177:173670,78643,0 ) ) -(186,208:18162467,20559393:501378,78643,0 -(186,208:18326321,20559393:173670,78643,0 +(186,213:30195539,28746177:501378,78643,0 +(186,213:30359393,28746177:173670,78643,0 ) ) -(186,208:18663845,20559393:501378,78643,0 -(186,208:18827699,20559393:173670,78643,0 +(186,213:30696917,28746177:501378,78643,0 +(186,213:30860771,28746177:173670,78643,0 ) ) -(186,208:19165223,20559393:501378,78643,0 -(186,208:19329077,20559393:173670,78643,0 +(186,213:31239539,28746177:1343490,485622,11795 +k186,213:31239539,28746177:0 +k186,213:31387652,28746177:148113 ) +g186,213:30911859,28746177 +g186,213:32583029,28746177 ) -(186,208:19666601,20559393:501378,78643,0 -(186,208:19830455,20559393:173670,78643,0 +(186,214:6630773,29611257:25952256,505283,134348 +g186,214:9710963,29611257 +h186,214:9710963,29611257:983040,0,0 +h186,214:10694003,29611257:0,0,0 +g186,214:7613813,29611257 +(186,214:7613813,29611257:2097150,485622,11795 +k186,214:9710963,29611257:728103 ) +g186,214:13515983,29611257 +g186,214:15322810,29611257 +g186,214:15322810,29611257 +(186,214:15655577,29611257:501378,78643,0 +$186,214:15655577,29611257 +(186,214:15819431,29611257:173670,78643,0 ) -(186,208:20167979,20559393:501378,78643,0 -(186,208:20331833,20559393:173670,78643,0 +$186,214:16156955,29611257 ) +(186,214:16156955,29611257:501378,78643,0 +(186,214:16320809,29611257:173670,78643,0 ) -(186,208:20669357,20559393:501378,78643,0 -(186,208:20833211,20559393:173670,78643,0 ) +(186,214:16658333,29611257:501378,78643,0 +(186,214:16822187,29611257:173670,78643,0 ) -(186,208:21170735,20559393:501378,78643,0 -(186,208:21334589,20559393:173670,78643,0 ) +(186,214:17159711,29611257:501378,78643,0 +(186,214:17323565,29611257:173670,78643,0 ) -(186,208:21672113,20559393:501378,78643,0 -(186,208:21835967,20559393:173670,78643,0 ) +(186,214:17661089,29611257:501378,78643,0 +(186,214:17824943,29611257:173670,78643,0 ) -(186,208:22173491,20559393:501378,78643,0 -(186,208:22337345,20559393:173670,78643,0 ) +(186,214:18162467,29611257:501378,78643,0 +(186,214:18326321,29611257:173670,78643,0 ) -(186,208:22674869,20559393:501378,78643,0 -(186,208:22838723,20559393:173670,78643,0 ) +(186,214:18663845,29611257:501378,78643,0 +(186,214:18827699,29611257:173670,78643,0 ) -(186,208:23176247,20559393:501378,78643,0 -(186,208:23340101,20559393:173670,78643,0 ) +(186,214:19165223,29611257:501378,78643,0 +(186,214:19329077,29611257:173670,78643,0 ) -(186,208:23677625,20559393:501378,78643,0 -(186,208:23841479,20559393:173670,78643,0 ) +(186,214:19666601,29611257:501378,78643,0 +(186,214:19830455,29611257:173670,78643,0 ) -(186,208:24179003,20559393:501378,78643,0 -(186,208:24342857,20559393:173670,78643,0 ) +(186,214:20167979,29611257:501378,78643,0 +(186,214:20331833,29611257:173670,78643,0 ) -(186,208:24680381,20559393:501378,78643,0 -(186,208:24844235,20559393:173670,78643,0 ) +(186,214:20669357,29611257:501378,78643,0 +(186,214:20833211,29611257:173670,78643,0 ) -(186,208:25181759,20559393:501378,78643,0 -(186,208:25345613,20559393:173670,78643,0 ) +(186,214:21170735,29611257:501378,78643,0 +(186,214:21334589,29611257:173670,78643,0 ) -(186,208:25683137,20559393:501378,78643,0 -(186,208:25846991,20559393:173670,78643,0 ) +(186,214:21672113,29611257:501378,78643,0 +(186,214:21835967,29611257:173670,78643,0 ) -(186,208:26184515,20559393:501378,78643,0 -(186,208:26348369,20559393:173670,78643,0 ) +(186,214:22173491,29611257:501378,78643,0 +(186,214:22337345,29611257:173670,78643,0 ) -(186,208:26685893,20559393:501378,78643,0 -(186,208:26849747,20559393:173670,78643,0 ) +(186,214:22674869,29611257:501378,78643,0 +(186,214:22838723,29611257:173670,78643,0 ) -(186,208:27187271,20559393:501378,78643,0 -(186,208:27351125,20559393:173670,78643,0 ) +(186,214:23176247,29611257:501378,78643,0 +(186,214:23340101,29611257:173670,78643,0 ) -(186,208:27688649,20559393:501378,78643,0 -(186,208:27852503,20559393:173670,78643,0 ) +(186,214:23677625,29611257:501378,78643,0 +(186,214:23841479,29611257:173670,78643,0 ) -(186,208:28190027,20559393:501378,78643,0 -(186,208:28353881,20559393:173670,78643,0 ) +(186,214:24179003,29611257:501378,78643,0 +(186,214:24342857,29611257:173670,78643,0 ) -(186,208:28691405,20559393:501378,78643,0 -(186,208:28855259,20559393:173670,78643,0 ) +(186,214:24680381,29611257:501378,78643,0 +(186,214:24844235,29611257:173670,78643,0 ) -(186,208:29192783,20559393:501378,78643,0 -(186,208:29356637,20559393:173670,78643,0 ) +(186,214:25181759,29611257:501378,78643,0 +(186,214:25345613,29611257:173670,78643,0 ) -(186,208:29694161,20559393:501378,78643,0 -(186,208:29858015,20559393:173670,78643,0 ) +(186,214:25683137,29611257:501378,78643,0 +(186,214:25846991,29611257:173670,78643,0 ) -(186,208:30195539,20559393:501378,78643,0 -(186,208:30359393,20559393:173670,78643,0 ) +(186,214:26184515,29611257:501378,78643,0 +(186,214:26348369,29611257:173670,78643,0 ) -(186,208:30696917,20559393:501378,78643,0 -(186,208:30860771,20559393:173670,78643,0 ) +(186,214:26685893,29611257:501378,78643,0 +(186,214:26849747,29611257:173670,78643,0 ) -(186,208:31239539,20559393:1343490,485622,11795 -k186,208:31239539,20559393:0 -k186,208:31387652,20559393:148113 ) -g186,208:30911859,20559393 -g186,208:32583029,20559393 +(186,214:27187271,29611257:501378,78643,0 +(186,214:27351125,29611257:173670,78643,0 ) -(186,209:6630773,21400881:25952256,505283,11795 -g186,209:11873653,21400881 -h186,209:11873653,21400881:2818050,0,0 -h186,209:14691703,21400881:0,0,0 -g186,209:9448823,21400881 -(186,209:9448823,21400881:2424830,485622,11795 -k186,209:11873653,21400881:483654 ) -g186,209:12996940,21400881 -g186,209:14976783,21400881 -(186,209:15154199,21400881:501378,78643,0 -$186,209:15154199,21400881 -(186,209:15318053,21400881:173670,78643,0 +(186,214:27688649,29611257:501378,78643,0 +(186,214:27852503,29611257:173670,78643,0 ) -$186,209:15655577,21400881 ) -(186,209:15655577,21400881:501378,78643,0 -(186,209:15819431,21400881:173670,78643,0 +(186,214:28190027,29611257:501378,78643,0 +(186,214:28353881,29611257:173670,78643,0 ) ) -(186,209:16156955,21400881:501378,78643,0 -(186,209:16320809,21400881:173670,78643,0 +(186,214:28691405,29611257:501378,78643,0 +(186,214:28855259,29611257:173670,78643,0 ) ) -(186,209:16658333,21400881:501378,78643,0 -(186,209:16822187,21400881:173670,78643,0 +(186,214:29192783,29611257:501378,78643,0 +(186,214:29356637,29611257:173670,78643,0 ) ) -(186,209:17159711,21400881:501378,78643,0 -(186,209:17323565,21400881:173670,78643,0 +(186,214:29694161,29611257:501378,78643,0 +(186,214:29858015,29611257:173670,78643,0 ) ) -(186,209:17661089,21400881:501378,78643,0 -(186,209:17824943,21400881:173670,78643,0 +(186,214:30195539,29611257:501378,78643,0 +(186,214:30359393,29611257:173670,78643,0 ) ) -(186,209:18162467,21400881:501378,78643,0 -(186,209:18326321,21400881:173670,78643,0 +(186,214:30696917,29611257:501378,78643,0 +(186,214:30860771,29611257:173670,78643,0 ) ) -(186,209:18663845,21400881:501378,78643,0 -(186,209:18827699,21400881:173670,78643,0 +(186,214:31239539,29611257:1343490,485622,11795 +k186,214:31239539,29611257:0 +k186,214:31387652,29611257:148113 ) +g186,214:30911859,29611257 +g186,214:32583029,29611257 ) -(186,209:19165223,21400881:501378,78643,0 -(186,209:19329077,21400881:173670,78643,0 +(186,215:6630773,30476337:25952256,505283,134348 +g186,215:9710963,30476337 +h186,215:9710963,30476337:983040,0,0 +h186,215:10694003,30476337:0,0,0 +g186,215:7613813,30476337 +(186,215:7613813,30476337:2097150,485622,11795 +k186,215:9710963,30476337:728103 ) +g186,215:11701946,30476337 +g186,215:14826047,30476337 +g186,215:18795562,30476337 +g186,215:18795562,30476337 +(186,215:19165223,30476337:501378,78643,0 +$186,215:19165223,30476337 +(186,215:19329077,30476337:173670,78643,0 ) -(186,209:19666601,21400881:501378,78643,0 -(186,209:19830455,21400881:173670,78643,0 +$186,215:19666601,30476337 ) +(186,215:19666601,30476337:501378,78643,0 +(186,215:19830455,30476337:173670,78643,0 ) -(186,209:20167979,21400881:501378,78643,0 -(186,209:20331833,21400881:173670,78643,0 ) +(186,215:20167979,30476337:501378,78643,0 +(186,215:20331833,30476337:173670,78643,0 ) -(186,209:20669357,21400881:501378,78643,0 -(186,209:20833211,21400881:173670,78643,0 ) +(186,215:20669357,30476337:501378,78643,0 +(186,215:20833211,30476337:173670,78643,0 ) -(186,209:21170735,21400881:501378,78643,0 -(186,209:21334589,21400881:173670,78643,0 ) +(186,215:21170735,30476337:501378,78643,0 +(186,215:21334589,30476337:173670,78643,0 ) -(186,209:21672113,21400881:501378,78643,0 -(186,209:21835967,21400881:173670,78643,0 ) +(186,215:21672113,30476337:501378,78643,0 +(186,215:21835967,30476337:173670,78643,0 ) -(186,209:22173491,21400881:501378,78643,0 -(186,209:22337345,21400881:173670,78643,0 ) +(186,215:22173491,30476337:501378,78643,0 +(186,215:22337345,30476337:173670,78643,0 ) -(186,209:22674869,21400881:501378,78643,0 -(186,209:22838723,21400881:173670,78643,0 ) +(186,215:22674869,30476337:501378,78643,0 +(186,215:22838723,30476337:173670,78643,0 ) -(186,209:23176247,21400881:501378,78643,0 -(186,209:23340101,21400881:173670,78643,0 ) +(186,215:23176247,30476337:501378,78643,0 +(186,215:23340101,30476337:173670,78643,0 ) -(186,209:23677625,21400881:501378,78643,0 -(186,209:23841479,21400881:173670,78643,0 ) +(186,215:23677625,30476337:501378,78643,0 +(186,215:23841479,30476337:173670,78643,0 ) -(186,209:24179003,21400881:501378,78643,0 -(186,209:24342857,21400881:173670,78643,0 ) +(186,215:24179003,30476337:501378,78643,0 +(186,215:24342857,30476337:173670,78643,0 ) -(186,209:24680381,21400881:501378,78643,0 -(186,209:24844235,21400881:173670,78643,0 ) +(186,215:24680381,30476337:501378,78643,0 +(186,215:24844235,30476337:173670,78643,0 ) -(186,209:25181759,21400881:501378,78643,0 -(186,209:25345613,21400881:173670,78643,0 ) +(186,215:25181759,30476337:501378,78643,0 +(186,215:25345613,30476337:173670,78643,0 ) -(186,209:25683137,21400881:501378,78643,0 -(186,209:25846991,21400881:173670,78643,0 ) +(186,215:25683137,30476337:501378,78643,0 +(186,215:25846991,30476337:173670,78643,0 ) -(186,209:26184515,21400881:501378,78643,0 -(186,209:26348369,21400881:173670,78643,0 ) +(186,215:26184515,30476337:501378,78643,0 +(186,215:26348369,30476337:173670,78643,0 ) -(186,209:26685893,21400881:501378,78643,0 -(186,209:26849747,21400881:173670,78643,0 ) +(186,215:26685893,30476337:501378,78643,0 +(186,215:26849747,30476337:173670,78643,0 ) -(186,209:27187271,21400881:501378,78643,0 -(186,209:27351125,21400881:173670,78643,0 ) +(186,215:27187271,30476337:501378,78643,0 +(186,215:27351125,30476337:173670,78643,0 ) -(186,209:27688649,21400881:501378,78643,0 -(186,209:27852503,21400881:173670,78643,0 ) +(186,215:27688649,30476337:501378,78643,0 +(186,215:27852503,30476337:173670,78643,0 ) -(186,209:28190027,21400881:501378,78643,0 -(186,209:28353881,21400881:173670,78643,0 ) +(186,215:28190027,30476337:501378,78643,0 +(186,215:28353881,30476337:173670,78643,0 ) -(186,209:28691405,21400881:501378,78643,0 -(186,209:28855259,21400881:173670,78643,0 ) +(186,215:28691405,30476337:501378,78643,0 +(186,215:28855259,30476337:173670,78643,0 ) -(186,209:29192783,21400881:501378,78643,0 -(186,209:29356637,21400881:173670,78643,0 ) +(186,215:29192783,30476337:501378,78643,0 +(186,215:29356637,30476337:173670,78643,0 ) -(186,209:29694161,21400881:501378,78643,0 -(186,209:29858015,21400881:173670,78643,0 ) +(186,215:29694161,30476337:501378,78643,0 +(186,215:29858015,30476337:173670,78643,0 ) -(186,209:30195539,21400881:501378,78643,0 -(186,209:30359393,21400881:173670,78643,0 ) +(186,215:30195539,30476337:501378,78643,0 +(186,215:30359393,30476337:173670,78643,0 ) -(186,209:30696917,21400881:501378,78643,0 -(186,209:30860771,21400881:173670,78643,0 ) +(186,215:30696917,30476337:501378,78643,0 +(186,215:30860771,30476337:173670,78643,0 ) -(186,209:31239539,21400881:1343490,485622,11795 -k186,209:31239539,21400881:0 -k186,209:31387652,21400881:148113 ) -g186,209:30911859,21400881 -g186,209:32583029,21400881 +(186,215:31239539,30476337:1343490,485622,11795 +k186,215:31239539,30476337:0 +k186,215:31387652,30476337:148113 ) -(186,210:6630773,22242369:25952256,505283,11795 -g186,210:9448823,22242369 -h186,210:9448823,22242369:983040,0,0 -h186,210:10431863,22242369:0,0,0 -g186,210:7613813,22242369 -(186,210:7613813,22242369:1835010,485622,11795 -k186,210:9448823,22242369:465963 +g186,215:30911859,30476337 +g186,215:32583029,30476337 ) -g186,210:12142352,22242369 -g186,210:12142352,22242369 -(186,210:12145931,22242369:501378,78643,0 -$186,210:12145931,22242369 -(186,210:12309785,22242369:173670,78643,0 +(186,216:6630773,31341417:25952256,505283,134348 +g186,216:9710963,31341417 +h186,216:9710963,31341417:983040,0,0 +h186,216:10694003,31341417:0,0,0 +g186,216:7613813,31341417 +(186,216:7613813,31341417:2097150,485622,11795 +k186,216:9710963,31341417:728103 ) -$186,210:12647309,22242369 +g186,216:12604377,31341417 +g186,216:15489927,31341417 +g186,216:17078519,31341417 +g186,216:19903120,31341417 +g186,216:19903120,31341417 +(186,216:20167979,31341417:501378,78643,0 +$186,216:20167979,31341417 +(186,216:20331833,31341417:173670,78643,0 ) -(186,210:12647309,22242369:501378,78643,0 -(186,210:12811163,22242369:173670,78643,0 +$186,216:20669357,31341417 ) +(186,216:20669357,31341417:501378,78643,0 +(186,216:20833211,31341417:173670,78643,0 ) -(186,210:13148687,22242369:501378,78643,0 -(186,210:13312541,22242369:173670,78643,0 ) +(186,216:21170735,31341417:501378,78643,0 +(186,216:21334589,31341417:173670,78643,0 ) -(186,210:13650065,22242369:501378,78643,0 -(186,210:13813919,22242369:173670,78643,0 ) +(186,216:21672113,31341417:501378,78643,0 +(186,216:21835967,31341417:173670,78643,0 ) -(186,210:14151443,22242369:501378,78643,0 -(186,210:14315297,22242369:173670,78643,0 ) +(186,216:22173491,31341417:501378,78643,0 +(186,216:22337345,31341417:173670,78643,0 ) -(186,210:14652821,22242369:501378,78643,0 -(186,210:14816675,22242369:173670,78643,0 ) +(186,216:22674869,31341417:501378,78643,0 +(186,216:22838723,31341417:173670,78643,0 ) -(186,210:15154199,22242369:501378,78643,0 -(186,210:15318053,22242369:173670,78643,0 ) +(186,216:23176247,31341417:501378,78643,0 +(186,216:23340101,31341417:173670,78643,0 ) -(186,210:15655577,22242369:501378,78643,0 -(186,210:15819431,22242369:173670,78643,0 ) +(186,216:23677625,31341417:501378,78643,0 +(186,216:23841479,31341417:173670,78643,0 ) -(186,210:16156955,22242369:501378,78643,0 -(186,210:16320809,22242369:173670,78643,0 ) +(186,216:24179003,31341417:501378,78643,0 +(186,216:24342857,31341417:173670,78643,0 ) -(186,210:16658333,22242369:501378,78643,0 -(186,210:16822187,22242369:173670,78643,0 ) +(186,216:24680381,31341417:501378,78643,0 +(186,216:24844235,31341417:173670,78643,0 ) -(186,210:17159711,22242369:501378,78643,0 -(186,210:17323565,22242369:173670,78643,0 ) +(186,216:25181759,31341417:501378,78643,0 +(186,216:25345613,31341417:173670,78643,0 ) -(186,210:17661089,22242369:501378,78643,0 -(186,210:17824943,22242369:173670,78643,0 ) +(186,216:25683137,31341417:501378,78643,0 +(186,216:25846991,31341417:173670,78643,0 ) -(186,210:18162467,22242369:501378,78643,0 -(186,210:18326321,22242369:173670,78643,0 ) +(186,216:26184515,31341417:501378,78643,0 +(186,216:26348369,31341417:173670,78643,0 ) -(186,210:18663845,22242369:501378,78643,0 -(186,210:18827699,22242369:173670,78643,0 ) +(186,216:26685893,31341417:501378,78643,0 +(186,216:26849747,31341417:173670,78643,0 ) -(186,210:19165223,22242369:501378,78643,0 -(186,210:19329077,22242369:173670,78643,0 ) +(186,216:27187271,31341417:501378,78643,0 +(186,216:27351125,31341417:173670,78643,0 ) -(186,210:19666601,22242369:501378,78643,0 -(186,210:19830455,22242369:173670,78643,0 ) +(186,216:27688649,31341417:501378,78643,0 +(186,216:27852503,31341417:173670,78643,0 ) -(186,210:20167979,22242369:501378,78643,0 -(186,210:20331833,22242369:173670,78643,0 ) +(186,216:28190027,31341417:501378,78643,0 +(186,216:28353881,31341417:173670,78643,0 ) -(186,210:20669357,22242369:501378,78643,0 -(186,210:20833211,22242369:173670,78643,0 ) +(186,216:28691405,31341417:501378,78643,0 +(186,216:28855259,31341417:173670,78643,0 ) -(186,210:21170735,22242369:501378,78643,0 -(186,210:21334589,22242369:173670,78643,0 ) +(186,216:29192783,31341417:501378,78643,0 +(186,216:29356637,31341417:173670,78643,0 ) -(186,210:21672113,22242369:501378,78643,0 -(186,210:21835967,22242369:173670,78643,0 ) +(186,216:29694161,31341417:501378,78643,0 +(186,216:29858015,31341417:173670,78643,0 ) -(186,210:22173491,22242369:501378,78643,0 -(186,210:22337345,22242369:173670,78643,0 ) +(186,216:30195539,31341417:501378,78643,0 +(186,216:30359393,31341417:173670,78643,0 ) -(186,210:22674869,22242369:501378,78643,0 -(186,210:22838723,22242369:173670,78643,0 ) +(186,216:30696917,31341417:501378,78643,0 +(186,216:30860771,31341417:173670,78643,0 ) -(186,210:23176247,22242369:501378,78643,0 -(186,210:23340101,22242369:173670,78643,0 ) +(186,216:31239539,31341417:1343490,485622,11795 +k186,216:31239539,31341417:0 +k186,216:31387652,31341417:148113 ) -(186,210:23677625,22242369:501378,78643,0 -(186,210:23841479,22242369:173670,78643,0 +g186,216:30911859,31341417 +g186,216:32583029,31341417 ) +(186,217:6630773,32206497:25952256,513147,134348 +g186,217:9710963,32206497 +h186,217:9710963,32206497:983040,0,0 +h186,217:10694003,32206497:0,0,0 +g186,217:7613813,32206497 +(186,217:7613813,32206497:2097150,485622,11795 +k186,217:9710963,32206497:728103 ) -(186,210:24179003,22242369:501378,78643,0 -(186,210:24342857,22242369:173670,78643,0 +g186,217:12604377,32206497 +g186,217:14068451,32206497 +g186,217:14926972,32206497 +g186,217:16733799,32206497 +g186,217:16733799,32206497 +(186,217:17159711,32206497:501378,78643,0 +$186,217:17159711,32206497 +(186,217:17323565,32206497:173670,78643,0 ) +$186,217:17661089,32206497 ) -(186,210:24680381,22242369:501378,78643,0 -(186,210:24844235,22242369:173670,78643,0 +(186,217:17661089,32206497:501378,78643,0 +(186,217:17824943,32206497:173670,78643,0 ) ) -(186,210:25181759,22242369:501378,78643,0 -(186,210:25345613,22242369:173670,78643,0 +(186,217:18162467,32206497:501378,78643,0 +(186,217:18326321,32206497:173670,78643,0 ) ) -(186,210:25683137,22242369:501378,78643,0 -(186,210:25846991,22242369:173670,78643,0 +(186,217:18663845,32206497:501378,78643,0 +(186,217:18827699,32206497:173670,78643,0 ) ) -(186,210:26184515,22242369:501378,78643,0 -(186,210:26348369,22242369:173670,78643,0 +(186,217:19165223,32206497:501378,78643,0 +(186,217:19329077,32206497:173670,78643,0 ) ) -(186,210:26685893,22242369:501378,78643,0 -(186,210:26849747,22242369:173670,78643,0 +(186,217:19666601,32206497:501378,78643,0 +(186,217:19830455,32206497:173670,78643,0 ) ) -(186,210:27187271,22242369:501378,78643,0 -(186,210:27351125,22242369:173670,78643,0 +(186,217:20167979,32206497:501378,78643,0 +(186,217:20331833,32206497:173670,78643,0 ) ) -(186,210:27688649,22242369:501378,78643,0 -(186,210:27852503,22242369:173670,78643,0 +(186,217:20669357,32206497:501378,78643,0 +(186,217:20833211,32206497:173670,78643,0 ) ) -(186,210:28190027,22242369:501378,78643,0 -(186,210:28353881,22242369:173670,78643,0 +(186,217:21170735,32206497:501378,78643,0 +(186,217:21334589,32206497:173670,78643,0 ) ) -(186,210:28691405,22242369:501378,78643,0 -(186,210:28855259,22242369:173670,78643,0 +(186,217:21672113,32206497:501378,78643,0 +(186,217:21835967,32206497:173670,78643,0 ) ) -(186,210:29192783,22242369:501378,78643,0 -(186,210:29356637,22242369:173670,78643,0 +(186,217:22173491,32206497:501378,78643,0 +(186,217:22337345,32206497:173670,78643,0 ) ) -(186,210:29694161,22242369:501378,78643,0 -(186,210:29858015,22242369:173670,78643,0 +(186,217:22674869,32206497:501378,78643,0 +(186,217:22838723,32206497:173670,78643,0 ) ) -(186,210:30195539,22242369:501378,78643,0 -(186,210:30359393,22242369:173670,78643,0 +(186,217:23176247,32206497:501378,78643,0 +(186,217:23340101,32206497:173670,78643,0 ) ) -(186,210:30696917,22242369:501378,78643,0 -(186,210:30860771,22242369:173670,78643,0 +(186,217:23677625,32206497:501378,78643,0 +(186,217:23841479,32206497:173670,78643,0 ) ) -(186,210:31239540,22242369:1343490,485622,11795 -k186,210:31239540,22242369:0 -k186,210:31387653,22242369:148113 +(186,217:24179003,32206497:501378,78643,0 +(186,217:24342857,32206497:173670,78643,0 ) -g186,210:30911860,22242369 -g186,210:32583030,22242369 ) -(186,211:6630773,23083857:25952256,505283,126483 -g186,211:11873653,23083857 -h186,211:11873653,23083857:2818050,0,0 -h186,211:14691703,23083857:0,0,0 -g186,211:9448823,23083857 -(186,211:9448823,23083857:2424830,485622,11795 -k186,211:11873653,23083857:483654 +(186,217:24680381,32206497:501378,78643,0 +(186,217:24844235,32206497:173670,78643,0 ) -g186,211:15120306,23083857 -g186,211:17437004,23083857 -(186,211:17661089,23083857:501378,78643,0 -$186,211:17661089,23083857 -(186,211:17824943,23083857:173670,78643,0 ) -$186,211:18162467,23083857 +(186,217:25181759,32206497:501378,78643,0 +(186,217:25345613,32206497:173670,78643,0 ) -(186,211:18162467,23083857:501378,78643,0 -(186,211:18326321,23083857:173670,78643,0 ) +(186,217:25683137,32206497:501378,78643,0 +(186,217:25846991,32206497:173670,78643,0 ) -(186,211:18663845,23083857:501378,78643,0 -(186,211:18827699,23083857:173670,78643,0 ) +(186,217:26184515,32206497:501378,78643,0 +(186,217:26348369,32206497:173670,78643,0 ) -(186,211:19165223,23083857:501378,78643,0 -(186,211:19329077,23083857:173670,78643,0 ) +(186,217:26685893,32206497:501378,78643,0 +(186,217:26849747,32206497:173670,78643,0 ) -(186,211:19666601,23083857:501378,78643,0 -(186,211:19830455,23083857:173670,78643,0 ) +(186,217:27187271,32206497:501378,78643,0 +(186,217:27351125,32206497:173670,78643,0 ) -(186,211:20167979,23083857:501378,78643,0 -(186,211:20331833,23083857:173670,78643,0 ) +(186,217:27688649,32206497:501378,78643,0 +(186,217:27852503,32206497:173670,78643,0 ) -(186,211:20669357,23083857:501378,78643,0 -(186,211:20833211,23083857:173670,78643,0 ) +(186,217:28190027,32206497:501378,78643,0 +(186,217:28353881,32206497:173670,78643,0 ) -(186,211:21170735,23083857:501378,78643,0 -(186,211:21334589,23083857:173670,78643,0 ) +(186,217:28691405,32206497:501378,78643,0 +(186,217:28855259,32206497:173670,78643,0 ) -(186,211:21672113,23083857:501378,78643,0 -(186,211:21835967,23083857:173670,78643,0 ) +(186,217:29192783,32206497:501378,78643,0 +(186,217:29356637,32206497:173670,78643,0 ) -(186,211:22173491,23083857:501378,78643,0 -(186,211:22337345,23083857:173670,78643,0 ) +(186,217:29694161,32206497:501378,78643,0 +(186,217:29858015,32206497:173670,78643,0 ) -(186,211:22674869,23083857:501378,78643,0 -(186,211:22838723,23083857:173670,78643,0 ) +(186,217:30195539,32206497:501378,78643,0 +(186,217:30359393,32206497:173670,78643,0 ) -(186,211:23176247,23083857:501378,78643,0 -(186,211:23340101,23083857:173670,78643,0 ) +(186,217:30696917,32206497:501378,78643,0 +(186,217:30860771,32206497:173670,78643,0 ) -(186,211:23677625,23083857:501378,78643,0 -(186,211:23841479,23083857:173670,78643,0 ) +(186,217:31239539,32206497:1343490,485622,11795 +k186,217:31239539,32206497:0 +k186,217:31387652,32206497:148113 ) -(186,211:24179003,23083857:501378,78643,0 -(186,211:24342857,23083857:173670,78643,0 +g186,217:30911859,32206497 +g186,217:32583029,32206497 ) +(186,218:6630773,33071577:25952256,505283,134348 +g186,218:12529013,33071577 +h186,218:12529013,33071577:3080190,0,0 +h186,218:15609203,33071577:0,0,0 +g186,218:9710963,33071577 +(186,218:9710963,33071577:2818050,485622,11795 +k186,218:12529013,33071577:876874 ) -(186,211:24680381,23083857:501378,78643,0 -(186,211:24844235,23083857:173670,78643,0 +g186,218:14786728,33071577 +g186,218:16263254,33071577 +g186,218:18350575,33071577 +g186,218:19741249,33071577 +g186,218:21842988,33071577 +g186,218:22658255,33071577 +g186,218:25499896,33071577 +(186,218:25683137,33071577:501378,78643,0 +$186,218:25683137,33071577 +(186,218:25846991,33071577:173670,78643,0 ) +$186,218:26184515,33071577 ) -(186,211:25181759,23083857:501378,78643,0 -(186,211:25345613,23083857:173670,78643,0 +(186,218:26184515,33071577:501378,78643,0 +(186,218:26348369,33071577:173670,78643,0 ) ) -(186,211:25683137,23083857:501378,78643,0 -(186,211:25846991,23083857:173670,78643,0 +(186,218:26685893,33071577:501378,78643,0 +(186,218:26849747,33071577:173670,78643,0 ) ) -(186,211:26184515,23083857:501378,78643,0 -(186,211:26348369,23083857:173670,78643,0 +(186,218:27187271,33071577:501378,78643,0 +(186,218:27351125,33071577:173670,78643,0 ) ) -(186,211:26685893,23083857:501378,78643,0 -(186,211:26849747,23083857:173670,78643,0 +(186,218:27688649,33071577:501378,78643,0 +(186,218:27852503,33071577:173670,78643,0 ) ) -(186,211:27187271,23083857:501378,78643,0 -(186,211:27351125,23083857:173670,78643,0 +(186,218:28190027,33071577:501378,78643,0 +(186,218:28353881,33071577:173670,78643,0 ) ) -(186,211:27688649,23083857:501378,78643,0 -(186,211:27852503,23083857:173670,78643,0 +(186,218:28691405,33071577:501378,78643,0 +(186,218:28855259,33071577:173670,78643,0 ) ) -(186,211:28190027,23083857:501378,78643,0 -(186,211:28353881,23083857:173670,78643,0 +(186,218:29192783,33071577:501378,78643,0 +(186,218:29356637,33071577:173670,78643,0 ) ) -(186,211:28691405,23083857:501378,78643,0 -(186,211:28855259,23083857:173670,78643,0 +(186,218:29694161,33071577:501378,78643,0 +(186,218:29858015,33071577:173670,78643,0 ) ) -(186,211:29192783,23083857:501378,78643,0 -(186,211:29356637,23083857:173670,78643,0 +(186,218:30195539,33071577:501378,78643,0 +(186,218:30359393,33071577:173670,78643,0 ) ) -(186,211:29694161,23083857:501378,78643,0 -(186,211:29858015,23083857:173670,78643,0 +(186,218:30696917,33071577:501378,78643,0 +(186,218:30860771,33071577:173670,78643,0 ) ) -(186,211:30195539,23083857:501378,78643,0 -(186,211:30359393,23083857:173670,78643,0 +(186,218:31239539,33071577:1343490,485622,11795 +k186,218:31239539,33071577:0 +k186,218:31387652,33071577:148113 ) +g186,218:30911859,33071577 +g186,218:32583029,33071577 ) -(186,211:30696917,23083857:501378,78643,0 -(186,211:30860771,23083857:173670,78643,0 +(186,219:6630773,33936657:25952256,505283,134348 +g186,219:12529013,33936657 +h186,219:12529013,33936657:3080190,0,0 +h186,219:15609203,33936657:0,0,0 +g186,219:9710963,33936657 +(186,219:9710963,33936657:2818050,485622,11795 +k186,219:12529013,33936657:876874 ) +g186,219:14786728,33936657 +g186,219:16263254,33936657 +g186,219:18350575,33936657 +g186,219:19741249,33936657 +g186,219:21842988,33936657 +g186,219:22658255,33936657 +g186,219:23982082,33936657 +(186,219:24179003,33936657:501378,78643,0 +$186,219:24179003,33936657 +(186,219:24342857,33936657:173670,78643,0 ) -(186,211:31239539,23083857:1343490,485622,11795 -k186,211:31239539,23083857:0 -k186,211:31387652,23083857:148113 +$186,219:24680381,33936657 ) -g186,211:30911859,23083857 -g186,211:32583029,23083857 +(186,219:24680381,33936657:501378,78643,0 +(186,219:24844235,33936657:173670,78643,0 ) -(186,212:6630773,23925345:25952256,505283,126483 -g186,212:11873653,23925345 -h186,212:11873653,23925345:2818050,0,0 -h186,212:14691703,23925345:0,0,0 -g186,212:9448823,23925345 -(186,212:9448823,23925345:2424830,485622,11795 -k186,212:11873653,23925345:483654 ) -g186,212:15626244,23925345 -g186,212:17942942,23925345 -(186,212:18162467,23925345:501378,78643,0 -$186,212:18162467,23925345 -(186,212:18326321,23925345:173670,78643,0 +(186,219:25181759,33936657:501378,78643,0 +(186,219:25345613,33936657:173670,78643,0 ) -$186,212:18663845,23925345 ) -(186,212:18663845,23925345:501378,78643,0 -(186,212:18827699,23925345:173670,78643,0 +(186,219:25683137,33936657:501378,78643,0 +(186,219:25846991,33936657:173670,78643,0 ) ) -(186,212:19165223,23925345:501378,78643,0 -(186,212:19329077,23925345:173670,78643,0 +(186,219:26184515,33936657:501378,78643,0 +(186,219:26348369,33936657:173670,78643,0 ) ) -(186,212:19666601,23925345:501378,78643,0 -(186,212:19830455,23925345:173670,78643,0 +(186,219:26685893,33936657:501378,78643,0 +(186,219:26849747,33936657:173670,78643,0 ) ) -(186,212:20167979,23925345:501378,78643,0 -(186,212:20331833,23925345:173670,78643,0 +(186,219:27187271,33936657:501378,78643,0 +(186,219:27351125,33936657:173670,78643,0 ) ) -(186,212:20669357,23925345:501378,78643,0 -(186,212:20833211,23925345:173670,78643,0 +(186,219:27688649,33936657:501378,78643,0 +(186,219:27852503,33936657:173670,78643,0 ) ) -(186,212:21170735,23925345:501378,78643,0 -(186,212:21334589,23925345:173670,78643,0 +(186,219:28190027,33936657:501378,78643,0 +(186,219:28353881,33936657:173670,78643,0 ) ) -(186,212:21672113,23925345:501378,78643,0 -(186,212:21835967,23925345:173670,78643,0 +(186,219:28691405,33936657:501378,78643,0 +(186,219:28855259,33936657:173670,78643,0 ) ) -(186,212:22173491,23925345:501378,78643,0 -(186,212:22337345,23925345:173670,78643,0 +(186,219:29192783,33936657:501378,78643,0 +(186,219:29356637,33936657:173670,78643,0 ) ) -(186,212:22674869,23925345:501378,78643,0 -(186,212:22838723,23925345:173670,78643,0 +(186,219:29694161,33936657:501378,78643,0 +(186,219:29858015,33936657:173670,78643,0 ) ) -(186,212:23176247,23925345:501378,78643,0 -(186,212:23340101,23925345:173670,78643,0 +(186,219:30195539,33936657:501378,78643,0 +(186,219:30359393,33936657:173670,78643,0 ) ) -(186,212:23677625,23925345:501378,78643,0 -(186,212:23841479,23925345:173670,78643,0 +(186,219:30696917,33936657:501378,78643,0 +(186,219:30860771,33936657:173670,78643,0 ) ) -(186,212:24179003,23925345:501378,78643,0 -(186,212:24342857,23925345:173670,78643,0 +(186,219:31239539,33936657:1343490,485622,11795 +k186,219:31239539,33936657:0 +k186,219:31387652,33936657:148113 ) +g186,219:30911859,33936657 +g186,219:32583029,33936657 ) -(186,212:24680381,23925345:501378,78643,0 -(186,212:24844235,23925345:173670,78643,0 +(186,220:6630773,34801737:25952256,513147,134348 +g186,220:12529013,34801737 +h186,220:12529013,34801737:3080190,0,0 +h186,220:15609203,34801737:0,0,0 +g186,220:9710963,34801737 +(186,220:9710963,34801737:2818050,485622,11795 +k186,220:12529013,34801737:876874 ) +g186,220:14519996,34801737 +g186,220:17745022,34801737 +g186,220:18630413,34801737 +g186,220:21462223,34801737 +g186,220:23518743,34801737 +(186,220:23677625,34801737:501378,78643,0 +$186,220:23677625,34801737 +(186,220:23841479,34801737:173670,78643,0 ) -(186,212:25181759,23925345:501378,78643,0 -(186,212:25345613,23925345:173670,78643,0 +$186,220:24179003,34801737 ) +(186,220:24179003,34801737:501378,78643,0 +(186,220:24342857,34801737:173670,78643,0 ) -(186,212:25683137,23925345:501378,78643,0 -(186,212:25846991,23925345:173670,78643,0 ) +(186,220:24680381,34801737:501378,78643,0 +(186,220:24844235,34801737:173670,78643,0 ) -(186,212:26184515,23925345:501378,78643,0 -(186,212:26348369,23925345:173670,78643,0 ) +(186,220:25181759,34801737:501378,78643,0 +(186,220:25345613,34801737:173670,78643,0 ) -(186,212:26685893,23925345:501378,78643,0 -(186,212:26849747,23925345:173670,78643,0 ) +(186,220:25683137,34801737:501378,78643,0 +(186,220:25846991,34801737:173670,78643,0 ) -(186,212:27187271,23925345:501378,78643,0 -(186,212:27351125,23925345:173670,78643,0 ) +(186,220:26184515,34801737:501378,78643,0 +(186,220:26348369,34801737:173670,78643,0 ) -(186,212:27688649,23925345:501378,78643,0 -(186,212:27852503,23925345:173670,78643,0 ) +(186,220:26685893,34801737:501378,78643,0 +(186,220:26849747,34801737:173670,78643,0 ) -(186,212:28190027,23925345:501378,78643,0 -(186,212:28353881,23925345:173670,78643,0 ) +(186,220:27187271,34801737:501378,78643,0 +(186,220:27351125,34801737:173670,78643,0 ) -(186,212:28691405,23925345:501378,78643,0 -(186,212:28855259,23925345:173670,78643,0 ) +(186,220:27688649,34801737:501378,78643,0 +(186,220:27852503,34801737:173670,78643,0 ) -(186,212:29192783,23925345:501378,78643,0 -(186,212:29356637,23925345:173670,78643,0 ) +(186,220:28190027,34801737:501378,78643,0 +(186,220:28353881,34801737:173670,78643,0 ) -(186,212:29694161,23925345:501378,78643,0 -(186,212:29858015,23925345:173670,78643,0 ) +(186,220:28691405,34801737:501378,78643,0 +(186,220:28855259,34801737:173670,78643,0 ) -(186,212:30195539,23925345:501378,78643,0 -(186,212:30359393,23925345:173670,78643,0 ) +(186,220:29192783,34801737:501378,78643,0 +(186,220:29356637,34801737:173670,78643,0 ) -(186,212:30696917,23925345:501378,78643,0 -(186,212:30860771,23925345:173670,78643,0 ) +(186,220:29694161,34801737:501378,78643,0 +(186,220:29858015,34801737:173670,78643,0 ) -(186,212:31239539,23925345:1343490,485622,11795 -k186,212:31239539,23925345:0 -k186,212:31387652,23925345:148113 ) -g186,212:30911859,23925345 -g186,212:32583029,23925345 +(186,220:30195539,34801737:501378,78643,0 +(186,220:30359393,34801737:173670,78643,0 ) -(186,213:6630773,24766833:25952256,513147,134348 -g186,213:11873653,24766833 -h186,213:11873653,24766833:2818050,0,0 -h186,213:14691703,24766833:0,0,0 -g186,213:9448823,24766833 -(186,213:9448823,24766833:2424830,485622,11795 -k186,213:11873653,24766833:483654 ) -g186,213:14759203,24766833 -g186,213:15314292,24766833 -g186,213:16796716,24766833 -g186,213:18783112,24766833 -(186,213:19165223,24766833:501378,78643,0 -$186,213:19165223,24766833 -(186,213:19329077,24766833:173670,78643,0 +(186,220:30696917,34801737:501378,78643,0 +(186,220:30860771,34801737:173670,78643,0 ) -$186,213:19666601,24766833 ) -(186,213:19666601,24766833:501378,78643,0 -(186,213:19830455,24766833:173670,78643,0 +(186,220:31239539,34801737:1343490,485622,11795 +k186,220:31239539,34801737:0 +k186,220:31387652,34801737:148113 ) +g186,220:30911859,34801737 +g186,220:32583029,34801737 ) -(186,213:20167979,24766833:501378,78643,0 -(186,213:20331833,24766833:173670,78643,0 +(186,221:6630773,35666817:25952256,513147,134348 +g186,221:9710963,35666817 +h186,221:9710963,35666817:983040,0,0 +h186,221:10694003,35666817:0,0,0 +g186,221:7613813,35666817 +(186,221:7613813,35666817:2097150,485622,11795 +k186,221:9710963,35666817:728103 ) +g186,221:13390809,35666817 +g186,221:15748794,35666817 +g186,221:17261365,35666817 +g186,221:17261365,35666817 +(186,221:17661089,35666817:501378,78643,0 +$186,221:17661089,35666817 +(186,221:17824943,35666817:173670,78643,0 ) -(186,213:20669357,24766833:501378,78643,0 -(186,213:20833211,24766833:173670,78643,0 +$186,221:18162467,35666817 ) +(186,221:18162467,35666817:501378,78643,0 +(186,221:18326321,35666817:173670,78643,0 ) -(186,213:21170735,24766833:501378,78643,0 -(186,213:21334589,24766833:173670,78643,0 ) +(186,221:18663845,35666817:501378,78643,0 +(186,221:18827699,35666817:173670,78643,0 ) -(186,213:21672113,24766833:501378,78643,0 -(186,213:21835967,24766833:173670,78643,0 ) +(186,221:19165223,35666817:501378,78643,0 +(186,221:19329077,35666817:173670,78643,0 ) -(186,213:22173491,24766833:501378,78643,0 -(186,213:22337345,24766833:173670,78643,0 ) +(186,221:19666601,35666817:501378,78643,0 +(186,221:19830455,35666817:173670,78643,0 ) -(186,213:22674869,24766833:501378,78643,0 -(186,213:22838723,24766833:173670,78643,0 ) +(186,221:20167979,35666817:501378,78643,0 +(186,221:20331833,35666817:173670,78643,0 ) -(186,213:23176247,24766833:501378,78643,0 -(186,213:23340101,24766833:173670,78643,0 ) +(186,221:20669357,35666817:501378,78643,0 +(186,221:20833211,35666817:173670,78643,0 ) -(186,213:23677625,24766833:501378,78643,0 -(186,213:23841479,24766833:173670,78643,0 ) +(186,221:21170735,35666817:501378,78643,0 +(186,221:21334589,35666817:173670,78643,0 ) -(186,213:24179003,24766833:501378,78643,0 -(186,213:24342857,24766833:173670,78643,0 ) +(186,221:21672113,35666817:501378,78643,0 +(186,221:21835967,35666817:173670,78643,0 ) -(186,213:24680381,24766833:501378,78643,0 -(186,213:24844235,24766833:173670,78643,0 ) +(186,221:22173491,35666817:501378,78643,0 +(186,221:22337345,35666817:173670,78643,0 ) -(186,213:25181759,24766833:501378,78643,0 -(186,213:25345613,24766833:173670,78643,0 ) +(186,221:22674869,35666817:501378,78643,0 +(186,221:22838723,35666817:173670,78643,0 ) -(186,213:25683137,24766833:501378,78643,0 -(186,213:25846991,24766833:173670,78643,0 ) +(186,221:23176247,35666817:501378,78643,0 +(186,221:23340101,35666817:173670,78643,0 ) -(186,213:26184515,24766833:501378,78643,0 -(186,213:26348369,24766833:173670,78643,0 ) +(186,221:23677625,35666817:501378,78643,0 +(186,221:23841479,35666817:173670,78643,0 ) -(186,213:26685893,24766833:501378,78643,0 -(186,213:26849747,24766833:173670,78643,0 ) +(186,221:24179003,35666817:501378,78643,0 +(186,221:24342857,35666817:173670,78643,0 ) -(186,213:27187271,24766833:501378,78643,0 -(186,213:27351125,24766833:173670,78643,0 ) +(186,221:24680381,35666817:501378,78643,0 +(186,221:24844235,35666817:173670,78643,0 ) -(186,213:27688649,24766833:501378,78643,0 -(186,213:27852503,24766833:173670,78643,0 ) +(186,221:25181759,35666817:501378,78643,0 +(186,221:25345613,35666817:173670,78643,0 ) -(186,213:28190027,24766833:501378,78643,0 -(186,213:28353881,24766833:173670,78643,0 ) +(186,221:25683137,35666817:501378,78643,0 +(186,221:25846991,35666817:173670,78643,0 ) -(186,213:28691405,24766833:501378,78643,0 -(186,213:28855259,24766833:173670,78643,0 ) +(186,221:26184515,35666817:501378,78643,0 +(186,221:26348369,35666817:173670,78643,0 ) -(186,213:29192783,24766833:501378,78643,0 -(186,213:29356637,24766833:173670,78643,0 ) +(186,221:26685893,35666817:501378,78643,0 +(186,221:26849747,35666817:173670,78643,0 ) -(186,213:29694161,24766833:501378,78643,0 -(186,213:29858015,24766833:173670,78643,0 ) +(186,221:27187271,35666817:501378,78643,0 +(186,221:27351125,35666817:173670,78643,0 ) -(186,213:30195539,24766833:501378,78643,0 -(186,213:30359393,24766833:173670,78643,0 ) +(186,221:27688649,35666817:501378,78643,0 +(186,221:27852503,35666817:173670,78643,0 ) -(186,213:30696917,24766833:501378,78643,0 -(186,213:30860771,24766833:173670,78643,0 ) +(186,221:28190027,35666817:501378,78643,0 +(186,221:28353881,35666817:173670,78643,0 ) -(186,213:31239539,24766833:1343490,485622,11795 -k186,213:31239539,24766833:0 -k186,213:31387652,24766833:148113 ) -g186,213:30911859,24766833 -g186,213:32583029,24766833 +(186,221:28691405,35666817:501378,78643,0 +(186,221:28855259,35666817:173670,78643,0 ) -(186,214:6630773,25608321:25952256,505283,134348 -g186,214:9448823,25608321 -h186,214:9448823,25608321:983040,0,0 -h186,214:10431863,25608321:0,0,0 -g186,214:7613813,25608321 -(186,214:7613813,25608321:1835010,485622,11795 -k186,214:9448823,25608321:465963 ) -g186,214:13253843,25608321 -g186,214:15060670,25608321 -g186,214:15060670,25608321 -(186,214:15154199,25608321:501378,78643,0 -$186,214:15154199,25608321 -(186,214:15318053,25608321:173670,78643,0 +(186,221:29192783,35666817:501378,78643,0 +(186,221:29356637,35666817:173670,78643,0 ) -$186,214:15655577,25608321 ) -(186,214:15655577,25608321:501378,78643,0 -(186,214:15819431,25608321:173670,78643,0 +(186,221:29694161,35666817:501378,78643,0 +(186,221:29858015,35666817:173670,78643,0 ) ) -(186,214:16156955,25608321:501378,78643,0 -(186,214:16320809,25608321:173670,78643,0 +(186,221:30195539,35666817:501378,78643,0 +(186,221:30359393,35666817:173670,78643,0 ) ) -(186,214:16658333,25608321:501378,78643,0 -(186,214:16822187,25608321:173670,78643,0 +(186,221:30696917,35666817:501378,78643,0 +(186,221:30860771,35666817:173670,78643,0 ) ) -(186,214:17159711,25608321:501378,78643,0 -(186,214:17323565,25608321:173670,78643,0 +(186,221:31239539,35666817:1343490,485622,11795 +k186,221:31239539,35666817:0 +k186,221:31387652,35666817:148113 ) +g186,221:30911859,35666817 +g186,221:32583029,35666817 ) -(186,214:17661089,25608321:501378,78643,0 -(186,214:17824943,25608321:173670,78643,0 +(186,222:6630773,36531897:25952256,505283,134348 +g186,222:9710963,36531897 +h186,222:9710963,36531897:983040,0,0 +h186,222:10694003,36531897:0,0,0 +g186,222:7613813,36531897 +(186,222:7613813,36531897:2097150,485622,11795 +k186,222:9710963,36531897:728103 ) +g186,222:12279974,36531897 +g186,222:14881753,36531897 +g186,222:14881753,36531897 +(186,222:15154199,36531897:501378,78643,0 +$186,222:15154199,36531897 +(186,222:15318053,36531897:173670,78643,0 ) -(186,214:18162467,25608321:501378,78643,0 -(186,214:18326321,25608321:173670,78643,0 +$186,222:15655577,36531897 ) +(186,222:15655577,36531897:501378,78643,0 +(186,222:15819431,36531897:173670,78643,0 ) -(186,214:18663845,25608321:501378,78643,0 -(186,214:18827699,25608321:173670,78643,0 ) +(186,222:16156955,36531897:501378,78643,0 +(186,222:16320809,36531897:173670,78643,0 ) -(186,214:19165223,25608321:501378,78643,0 -(186,214:19329077,25608321:173670,78643,0 ) +(186,222:16658333,36531897:501378,78643,0 +(186,222:16822187,36531897:173670,78643,0 ) -(186,214:19666601,25608321:501378,78643,0 -(186,214:19830455,25608321:173670,78643,0 ) +(186,222:17159711,36531897:501378,78643,0 +(186,222:17323565,36531897:173670,78643,0 ) -(186,214:20167979,25608321:501378,78643,0 -(186,214:20331833,25608321:173670,78643,0 ) +(186,222:17661089,36531897:501378,78643,0 +(186,222:17824943,36531897:173670,78643,0 ) -(186,214:20669357,25608321:501378,78643,0 -(186,214:20833211,25608321:173670,78643,0 ) +(186,222:18162467,36531897:501378,78643,0 +(186,222:18326321,36531897:173670,78643,0 ) -(186,214:21170735,25608321:501378,78643,0 -(186,214:21334589,25608321:173670,78643,0 ) +(186,222:18663845,36531897:501378,78643,0 +(186,222:18827699,36531897:173670,78643,0 ) -(186,214:21672113,25608321:501378,78643,0 -(186,214:21835967,25608321:173670,78643,0 ) +(186,222:19165223,36531897:501378,78643,0 +(186,222:19329077,36531897:173670,78643,0 ) -(186,214:22173491,25608321:501378,78643,0 -(186,214:22337345,25608321:173670,78643,0 ) +(186,222:19666601,36531897:501378,78643,0 +(186,222:19830455,36531897:173670,78643,0 ) -(186,214:22674869,25608321:501378,78643,0 -(186,214:22838723,25608321:173670,78643,0 ) +(186,222:20167979,36531897:501378,78643,0 +(186,222:20331833,36531897:173670,78643,0 ) -(186,214:23176247,25608321:501378,78643,0 -(186,214:23340101,25608321:173670,78643,0 ) +(186,222:20669357,36531897:501378,78643,0 +(186,222:20833211,36531897:173670,78643,0 ) -(186,214:23677625,25608321:501378,78643,0 -(186,214:23841479,25608321:173670,78643,0 ) +(186,222:21170735,36531897:501378,78643,0 +(186,222:21334589,36531897:173670,78643,0 ) -(186,214:24179003,25608321:501378,78643,0 -(186,214:24342857,25608321:173670,78643,0 ) +(186,222:21672113,36531897:501378,78643,0 +(186,222:21835967,36531897:173670,78643,0 ) -(186,214:24680381,25608321:501378,78643,0 -(186,214:24844235,25608321:173670,78643,0 ) +(186,222:22173491,36531897:501378,78643,0 +(186,222:22337345,36531897:173670,78643,0 ) -(186,214:25181759,25608321:501378,78643,0 -(186,214:25345613,25608321:173670,78643,0 ) +(186,222:22674869,36531897:501378,78643,0 +(186,222:22838723,36531897:173670,78643,0 ) -(186,214:25683137,25608321:501378,78643,0 -(186,214:25846991,25608321:173670,78643,0 ) +(186,222:23176247,36531897:501378,78643,0 +(186,222:23340101,36531897:173670,78643,0 ) -(186,214:26184515,25608321:501378,78643,0 -(186,214:26348369,25608321:173670,78643,0 ) +(186,222:23677625,36531897:501378,78643,0 +(186,222:23841479,36531897:173670,78643,0 ) -(186,214:26685893,25608321:501378,78643,0 -(186,214:26849747,25608321:173670,78643,0 ) +(186,222:24179003,36531897:501378,78643,0 +(186,222:24342857,36531897:173670,78643,0 ) -(186,214:27187271,25608321:501378,78643,0 -(186,214:27351125,25608321:173670,78643,0 ) +(186,222:24680381,36531897:501378,78643,0 +(186,222:24844235,36531897:173670,78643,0 ) -(186,214:27688649,25608321:501378,78643,0 -(186,214:27852503,25608321:173670,78643,0 ) +(186,222:25181759,36531897:501378,78643,0 +(186,222:25345613,36531897:173670,78643,0 ) -(186,214:28190027,25608321:501378,78643,0 -(186,214:28353881,25608321:173670,78643,0 ) +(186,222:25683137,36531897:501378,78643,0 +(186,222:25846991,36531897:173670,78643,0 ) -(186,214:28691405,25608321:501378,78643,0 -(186,214:28855259,25608321:173670,78643,0 ) +(186,222:26184515,36531897:501378,78643,0 +(186,222:26348369,36531897:173670,78643,0 ) -(186,214:29192783,25608321:501378,78643,0 -(186,214:29356637,25608321:173670,78643,0 ) +(186,222:26685893,36531897:501378,78643,0 +(186,222:26849747,36531897:173670,78643,0 ) -(186,214:29694161,25608321:501378,78643,0 -(186,214:29858015,25608321:173670,78643,0 ) +(186,222:27187271,36531897:501378,78643,0 +(186,222:27351125,36531897:173670,78643,0 ) -(186,214:30195539,25608321:501378,78643,0 -(186,214:30359393,25608321:173670,78643,0 ) +(186,222:27688649,36531897:501378,78643,0 +(186,222:27852503,36531897:173670,78643,0 ) -(186,214:30696917,25608321:501378,78643,0 -(186,214:30860771,25608321:173670,78643,0 ) +(186,222:28190027,36531897:501378,78643,0 +(186,222:28353881,36531897:173670,78643,0 ) -(186,214:31239539,25608321:1343490,485622,11795 -k186,214:31239539,25608321:0 -k186,214:31387652,25608321:148113 ) -g186,214:30911859,25608321 -g186,214:32583029,25608321 +(186,222:28691405,36531897:501378,78643,0 +(186,222:28855259,36531897:173670,78643,0 ) -(186,215:6630773,26449809:25952256,505283,134348 -g186,215:9448823,26449809 -h186,215:9448823,26449809:983040,0,0 -h186,215:10431863,26449809:0,0,0 -g186,215:7613813,26449809 -(186,215:7613813,26449809:1835010,485622,11795 -k186,215:9448823,26449809:465963 ) -g186,215:11439806,26449809 -g186,215:14563907,26449809 -g186,215:18533422,26449809 -g186,215:18533422,26449809 -(186,215:18663845,26449809:501378,78643,0 -$186,215:18663845,26449809 -(186,215:18827699,26449809:173670,78643,0 +(186,222:29192783,36531897:501378,78643,0 +(186,222:29356637,36531897:173670,78643,0 ) -$186,215:19165223,26449809 ) -(186,215:19165223,26449809:501378,78643,0 -(186,215:19329077,26449809:173670,78643,0 +(186,222:29694161,36531897:501378,78643,0 +(186,222:29858015,36531897:173670,78643,0 ) ) -(186,215:19666601,26449809:501378,78643,0 -(186,215:19830455,26449809:173670,78643,0 +(186,222:30195539,36531897:501378,78643,0 +(186,222:30359393,36531897:173670,78643,0 ) ) -(186,215:20167979,26449809:501378,78643,0 -(186,215:20331833,26449809:173670,78643,0 +(186,222:30696917,36531897:501378,78643,0 +(186,222:30860771,36531897:173670,78643,0 ) ) -(186,215:20669357,26449809:501378,78643,0 -(186,215:20833211,26449809:173670,78643,0 +(186,222:31239539,36531897:1343490,485622,11795 +k186,222:31239539,36531897:0 +k186,222:31387652,36531897:148113 ) +g186,222:30911859,36531897 +g186,222:32583029,36531897 ) -(186,215:21170735,26449809:501378,78643,0 -(186,215:21334589,26449809:173670,78643,0 +(186,223:6630773,38052337:25952256,505283,134348 +g186,223:7613813,38052337 +h186,223:7613813,38052337:0,0,0 +g186,223:6630773,38052337 +(186,223:6630773,38052337:983040,485622,11795 +k186,223:7613813,38052337:166461 ) +g186,223:9313161,38052337 +g186,223:9989492,38052337 +g186,223:11414244,38052337 +g186,223:15369341,38052337 +g186,223:17077864,38052337 +k186,223:25405852,38052337:5833688 +k186,223:31239539,38052337:5833687 +(186,223:31239539,38052337:1343490,485622,11795 +k186,223:31358161,38052337:118622 ) -(186,215:21672113,26449809:501378,78643,0 -(186,215:21835967,26449809:173670,78643,0 +g186,223:31239539,38052337 +g186,223:32583029,38052337 ) +(186,224:6630773,38917417:25952256,513147,126483 +g186,224:9710963,38917417 +h186,224:9710963,38917417:983040,0,0 +h186,224:10694003,38917417:0,0,0 +g186,224:7613813,38917417 +(186,224:7613813,38917417:2097150,485622,11795 +k186,224:9710963,38917417:728103 ) -(186,215:22173491,26449809:501378,78643,0 -(186,215:22337345,26449809:173670,78643,0 +g186,224:11549247,38917417 +g186,224:12407768,38917417 +g186,224:13810238,38917417 +g186,224:16427090,38917417 +g186,224:16427090,38917417 +(186,224:16658333,38917417:501378,78643,0 +$186,224:16658333,38917417 +(186,224:16822187,38917417:173670,78643,0 ) +$186,224:17159711,38917417 ) -(186,215:22674869,26449809:501378,78643,0 -(186,215:22838723,26449809:173670,78643,0 +(186,224:17159711,38917417:501378,78643,0 +(186,224:17323565,38917417:173670,78643,0 ) ) -(186,215:23176247,26449809:501378,78643,0 -(186,215:23340101,26449809:173670,78643,0 +(186,224:17661089,38917417:501378,78643,0 +(186,224:17824943,38917417:173670,78643,0 ) ) -(186,215:23677625,26449809:501378,78643,0 -(186,215:23841479,26449809:173670,78643,0 +(186,224:18162467,38917417:501378,78643,0 +(186,224:18326321,38917417:173670,78643,0 ) ) -(186,215:24179003,26449809:501378,78643,0 -(186,215:24342857,26449809:173670,78643,0 +(186,224:18663845,38917417:501378,78643,0 +(186,224:18827699,38917417:173670,78643,0 ) ) -(186,215:24680381,26449809:501378,78643,0 -(186,215:24844235,26449809:173670,78643,0 +(186,224:19165223,38917417:501378,78643,0 +(186,224:19329077,38917417:173670,78643,0 ) ) -(186,215:25181759,26449809:501378,78643,0 -(186,215:25345613,26449809:173670,78643,0 +(186,224:19666601,38917417:501378,78643,0 +(186,224:19830455,38917417:173670,78643,0 ) ) -(186,215:25683137,26449809:501378,78643,0 -(186,215:25846991,26449809:173670,78643,0 +(186,224:20167979,38917417:501378,78643,0 +(186,224:20331833,38917417:173670,78643,0 ) ) -(186,215:26184515,26449809:501378,78643,0 -(186,215:26348369,26449809:173670,78643,0 +(186,224:20669357,38917417:501378,78643,0 +(186,224:20833211,38917417:173670,78643,0 ) ) -(186,215:26685893,26449809:501378,78643,0 -(186,215:26849747,26449809:173670,78643,0 +(186,224:21170735,38917417:501378,78643,0 +(186,224:21334589,38917417:173670,78643,0 ) ) -(186,215:27187271,26449809:501378,78643,0 -(186,215:27351125,26449809:173670,78643,0 +(186,224:21672113,38917417:501378,78643,0 +(186,224:21835967,38917417:173670,78643,0 ) ) -(186,215:27688649,26449809:501378,78643,0 -(186,215:27852503,26449809:173670,78643,0 +(186,224:22173491,38917417:501378,78643,0 +(186,224:22337345,38917417:173670,78643,0 ) ) -(186,215:28190027,26449809:501378,78643,0 -(186,215:28353881,26449809:173670,78643,0 +(186,224:22674869,38917417:501378,78643,0 +(186,224:22838723,38917417:173670,78643,0 ) ) -(186,215:28691405,26449809:501378,78643,0 -(186,215:28855259,26449809:173670,78643,0 +(186,224:23176247,38917417:501378,78643,0 +(186,224:23340101,38917417:173670,78643,0 ) ) -(186,215:29192783,26449809:501378,78643,0 -(186,215:29356637,26449809:173670,78643,0 +(186,224:23677625,38917417:501378,78643,0 +(186,224:23841479,38917417:173670,78643,0 ) ) -(186,215:29694161,26449809:501378,78643,0 -(186,215:29858015,26449809:173670,78643,0 +(186,224:24179003,38917417:501378,78643,0 +(186,224:24342857,38917417:173670,78643,0 ) ) -(186,215:30195539,26449809:501378,78643,0 -(186,215:30359393,26449809:173670,78643,0 +(186,224:24680381,38917417:501378,78643,0 +(186,224:24844235,38917417:173670,78643,0 ) ) -(186,215:30696917,26449809:501378,78643,0 -(186,215:30860771,26449809:173670,78643,0 +(186,224:25181759,38917417:501378,78643,0 +(186,224:25345613,38917417:173670,78643,0 ) ) -(186,215:31239539,26449809:1343490,485622,11795 -k186,215:31239539,26449809:0 -k186,215:31387652,26449809:148113 +(186,224:25683137,38917417:501378,78643,0 +(186,224:25846991,38917417:173670,78643,0 ) -g186,215:30911859,26449809 -g186,215:32583029,26449809 ) -(186,216:6630773,27291297:25952256,505283,134348 -g186,216:9448823,27291297 -h186,216:9448823,27291297:983040,0,0 -h186,216:10431863,27291297:0,0,0 -g186,216:7613813,27291297 -(186,216:7613813,27291297:1835010,485622,11795 -k186,216:9448823,27291297:465963 +(186,224:26184515,38917417:501378,78643,0 +(186,224:26348369,38917417:173670,78643,0 ) -g186,216:12342237,27291297 -g186,216:15227787,27291297 -g186,216:16816379,27291297 -g186,216:19640980,27291297 -g186,216:19640980,27291297 -(186,216:19666601,27291297:501378,78643,0 -$186,216:19666601,27291297 -(186,216:19830455,27291297:173670,78643,0 ) -$186,216:20167979,27291297 +(186,224:26685893,38917417:501378,78643,0 +(186,224:26849747,38917417:173670,78643,0 ) -(186,216:20167979,27291297:501378,78643,0 -(186,216:20331833,27291297:173670,78643,0 ) +(186,224:27187271,38917417:501378,78643,0 +(186,224:27351125,38917417:173670,78643,0 ) -(186,216:20669357,27291297:501378,78643,0 -(186,216:20833211,27291297:173670,78643,0 ) +(186,224:27688649,38917417:501378,78643,0 +(186,224:27852503,38917417:173670,78643,0 ) -(186,216:21170735,27291297:501378,78643,0 -(186,216:21334589,27291297:173670,78643,0 ) +(186,224:28190027,38917417:501378,78643,0 +(186,224:28353881,38917417:173670,78643,0 ) -(186,216:21672113,27291297:501378,78643,0 -(186,216:21835967,27291297:173670,78643,0 ) +(186,224:28691405,38917417:501378,78643,0 +(186,224:28855259,38917417:173670,78643,0 ) -(186,216:22173491,27291297:501378,78643,0 -(186,216:22337345,27291297:173670,78643,0 ) +(186,224:29192783,38917417:501378,78643,0 +(186,224:29356637,38917417:173670,78643,0 ) -(186,216:22674869,27291297:501378,78643,0 -(186,216:22838723,27291297:173670,78643,0 ) +(186,224:29694161,38917417:501378,78643,0 +(186,224:29858015,38917417:173670,78643,0 ) -(186,216:23176247,27291297:501378,78643,0 -(186,216:23340101,27291297:173670,78643,0 ) +(186,224:30195539,38917417:501378,78643,0 +(186,224:30359393,38917417:173670,78643,0 ) -(186,216:23677625,27291297:501378,78643,0 -(186,216:23841479,27291297:173670,78643,0 ) +(186,224:30696917,38917417:501378,78643,0 +(186,224:30860771,38917417:173670,78643,0 ) -(186,216:24179003,27291297:501378,78643,0 -(186,216:24342857,27291297:173670,78643,0 ) +(186,224:31239539,38917417:1343490,485622,11795 +k186,224:31239539,38917417:0 +k186,224:31387652,38917417:148113 ) -(186,216:24680381,27291297:501378,78643,0 -(186,216:24844235,27291297:173670,78643,0 +g186,224:30911859,38917417 +g186,224:32583029,38917417 ) +(186,225:6630773,39782497:25952256,505283,11795 +g186,225:9710963,39782497 +h186,225:9710963,39782497:983040,0,0 +h186,225:10694003,39782497:0,0,0 +g186,225:7613813,39782497 +(186,225:7613813,39782497:2097150,485622,11795 +k186,225:9710963,39782497:728103 ) -(186,216:25181759,27291297:501378,78643,0 -(186,216:25345613,27291297:173670,78643,0 +g186,225:13914442,39782497 +g186,225:13914442,39782497 +(186,225:14151443,39782497:501378,78643,0 +$186,225:14151443,39782497 +(186,225:14315297,39782497:173670,78643,0 ) +$186,225:14652821,39782497 ) -(186,216:25683137,27291297:501378,78643,0 -(186,216:25846991,27291297:173670,78643,0 +(186,225:14652821,39782497:501378,78643,0 +(186,225:14816675,39782497:173670,78643,0 ) ) -(186,216:26184515,27291297:501378,78643,0 -(186,216:26348369,27291297:173670,78643,0 +(186,225:15154199,39782497:501378,78643,0 +(186,225:15318053,39782497:173670,78643,0 ) ) -(186,216:26685893,27291297:501378,78643,0 -(186,216:26849747,27291297:173670,78643,0 +(186,225:15655577,39782497:501378,78643,0 +(186,225:15819431,39782497:173670,78643,0 ) ) -(186,216:27187271,27291297:501378,78643,0 -(186,216:27351125,27291297:173670,78643,0 +(186,225:16156955,39782497:501378,78643,0 +(186,225:16320809,39782497:173670,78643,0 ) ) -(186,216:27688649,27291297:501378,78643,0 -(186,216:27852503,27291297:173670,78643,0 +(186,225:16658333,39782497:501378,78643,0 +(186,225:16822187,39782497:173670,78643,0 ) ) -(186,216:28190027,27291297:501378,78643,0 -(186,216:28353881,27291297:173670,78643,0 +(186,225:17159711,39782497:501378,78643,0 +(186,225:17323565,39782497:173670,78643,0 ) ) -(186,216:28691405,27291297:501378,78643,0 -(186,216:28855259,27291297:173670,78643,0 +(186,225:17661089,39782497:501378,78643,0 +(186,225:17824943,39782497:173670,78643,0 ) ) -(186,216:29192783,27291297:501378,78643,0 -(186,216:29356637,27291297:173670,78643,0 +(186,225:18162467,39782497:501378,78643,0 +(186,225:18326321,39782497:173670,78643,0 ) ) -(186,216:29694161,27291297:501378,78643,0 -(186,216:29858015,27291297:173670,78643,0 +(186,225:18663845,39782497:501378,78643,0 +(186,225:18827699,39782497:173670,78643,0 ) ) -(186,216:30195539,27291297:501378,78643,0 -(186,216:30359393,27291297:173670,78643,0 +(186,225:19165223,39782497:501378,78643,0 +(186,225:19329077,39782497:173670,78643,0 ) ) -(186,216:30696917,27291297:501378,78643,0 -(186,216:30860771,27291297:173670,78643,0 +(186,225:19666601,39782497:501378,78643,0 +(186,225:19830455,39782497:173670,78643,0 ) ) -(186,216:31239539,27291297:1343490,485622,11795 -k186,216:31239539,27291297:0 -k186,216:31387652,27291297:148113 +(186,225:20167979,39782497:501378,78643,0 +(186,225:20331833,39782497:173670,78643,0 ) -g186,216:30911859,27291297 -g186,216:32583029,27291297 ) -(186,217:6630773,28132785:25952256,513147,134348 -g186,217:9448823,28132785 -h186,217:9448823,28132785:983040,0,0 -h186,217:10431863,28132785:0,0,0 -g186,217:7613813,28132785 -(186,217:7613813,28132785:1835010,485622,11795 -k186,217:9448823,28132785:465963 +(186,225:20669357,39782497:501378,78643,0 +(186,225:20833211,39782497:173670,78643,0 ) -g186,217:12342237,28132785 -g186,217:13806311,28132785 -g186,217:14664832,28132785 -g186,217:16471659,28132785 -g186,217:16471659,28132785 -(186,217:16658333,28132785:501378,78643,0 -$186,217:16658333,28132785 -(186,217:16822187,28132785:173670,78643,0 ) -$186,217:17159711,28132785 +(186,225:21170735,39782497:501378,78643,0 +(186,225:21334589,39782497:173670,78643,0 ) -(186,217:17159711,28132785:501378,78643,0 -(186,217:17323565,28132785:173670,78643,0 ) +(186,225:21672113,39782497:501378,78643,0 +(186,225:21835967,39782497:173670,78643,0 ) -(186,217:17661089,28132785:501378,78643,0 -(186,217:17824943,28132785:173670,78643,0 ) +(186,225:22173491,39782497:501378,78643,0 +(186,225:22337345,39782497:173670,78643,0 ) -(186,217:18162467,28132785:501378,78643,0 -(186,217:18326321,28132785:173670,78643,0 ) +(186,225:22674869,39782497:501378,78643,0 +(186,225:22838723,39782497:173670,78643,0 ) -(186,217:18663845,28132785:501378,78643,0 -(186,217:18827699,28132785:173670,78643,0 ) +(186,225:23176247,39782497:501378,78643,0 +(186,225:23340101,39782497:173670,78643,0 ) -(186,217:19165223,28132785:501378,78643,0 -(186,217:19329077,28132785:173670,78643,0 ) +(186,225:23677625,39782497:501378,78643,0 +(186,225:23841479,39782497:173670,78643,0 ) -(186,217:19666601,28132785:501378,78643,0 -(186,217:19830455,28132785:173670,78643,0 ) +(186,225:24179003,39782497:501378,78643,0 +(186,225:24342857,39782497:173670,78643,0 ) -(186,217:20167979,28132785:501378,78643,0 -(186,217:20331833,28132785:173670,78643,0 ) +(186,225:24680381,39782497:501378,78643,0 +(186,225:24844235,39782497:173670,78643,0 ) -(186,217:20669357,28132785:501378,78643,0 -(186,217:20833211,28132785:173670,78643,0 ) +(186,225:25181759,39782497:501378,78643,0 +(186,225:25345613,39782497:173670,78643,0 ) -(186,217:21170735,28132785:501378,78643,0 -(186,217:21334589,28132785:173670,78643,0 ) +(186,225:25683137,39782497:501378,78643,0 +(186,225:25846991,39782497:173670,78643,0 ) -(186,217:21672113,28132785:501378,78643,0 -(186,217:21835967,28132785:173670,78643,0 ) +(186,225:26184515,39782497:501378,78643,0 +(186,225:26348369,39782497:173670,78643,0 ) -(186,217:22173491,28132785:501378,78643,0 -(186,217:22337345,28132785:173670,78643,0 ) +(186,225:26685893,39782497:501378,78643,0 +(186,225:26849747,39782497:173670,78643,0 ) -(186,217:22674869,28132785:501378,78643,0 -(186,217:22838723,28132785:173670,78643,0 ) +(186,225:27187271,39782497:501378,78643,0 +(186,225:27351125,39782497:173670,78643,0 ) -(186,217:23176247,28132785:501378,78643,0 -(186,217:23340101,28132785:173670,78643,0 ) +(186,225:27688649,39782497:501378,78643,0 +(186,225:27852503,39782497:173670,78643,0 ) -(186,217:23677625,28132785:501378,78643,0 -(186,217:23841479,28132785:173670,78643,0 ) +(186,225:28190027,39782497:501378,78643,0 +(186,225:28353881,39782497:173670,78643,0 ) -(186,217:24179003,28132785:501378,78643,0 -(186,217:24342857,28132785:173670,78643,0 ) +(186,225:28691405,39782497:501378,78643,0 +(186,225:28855259,39782497:173670,78643,0 ) -(186,217:24680381,28132785:501378,78643,0 -(186,217:24844235,28132785:173670,78643,0 ) +(186,225:29192783,39782497:501378,78643,0 +(186,225:29356637,39782497:173670,78643,0 ) -(186,217:25181759,28132785:501378,78643,0 -(186,217:25345613,28132785:173670,78643,0 ) +(186,225:29694161,39782497:501378,78643,0 +(186,225:29858015,39782497:173670,78643,0 ) -(186,217:25683137,28132785:501378,78643,0 -(186,217:25846991,28132785:173670,78643,0 ) +(186,225:30195539,39782497:501378,78643,0 +(186,225:30359393,39782497:173670,78643,0 ) -(186,217:26184515,28132785:501378,78643,0 -(186,217:26348369,28132785:173670,78643,0 ) +(186,225:30696917,39782497:501378,78643,0 +(186,225:30860771,39782497:173670,78643,0 ) -(186,217:26685893,28132785:501378,78643,0 -(186,217:26849747,28132785:173670,78643,0 ) +(186,225:31239538,39782497:1343490,485622,11795 +k186,225:31239538,39782497:0 +k186,225:31387651,39782497:148113 ) -(186,217:27187271,28132785:501378,78643,0 -(186,217:27351125,28132785:173670,78643,0 +g186,225:30911858,39782497 +g186,225:32583028,39782497 ) +(186,226:6630773,40647577:25952256,505283,134348 +g186,226:9710963,40647577 +h186,226:9710963,40647577:983040,0,0 +h186,226:10694003,40647577:0,0,0 +g186,226:7613813,40647577 +(186,226:7613813,40647577:2097150,485622,11795 +k186,226:9710963,40647577:728103 ) -(186,217:27688649,28132785:501378,78643,0 -(186,217:27852503,28132785:173670,78643,0 +g186,226:12775426,40647577 +g186,226:14487881,40647577 +g186,226:15303148,40647577 +g186,226:16705618,40647577 +g186,226:19322470,40647577 +g186,226:19322470,40647577 +(186,226:19666601,40647577:501378,78643,0 +$186,226:19666601,40647577 +(186,226:19830455,40647577:173670,78643,0 ) +$186,226:20167979,40647577 ) -(186,217:28190027,28132785:501378,78643,0 -(186,217:28353881,28132785:173670,78643,0 +(186,226:20167979,40647577:501378,78643,0 +(186,226:20331833,40647577:173670,78643,0 ) ) -(186,217:28691405,28132785:501378,78643,0 -(186,217:28855259,28132785:173670,78643,0 +(186,226:20669357,40647577:501378,78643,0 +(186,226:20833211,40647577:173670,78643,0 ) ) -(186,217:29192783,28132785:501378,78643,0 -(186,217:29356637,28132785:173670,78643,0 +(186,226:21170735,40647577:501378,78643,0 +(186,226:21334589,40647577:173670,78643,0 ) ) -(186,217:29694161,28132785:501378,78643,0 -(186,217:29858015,28132785:173670,78643,0 +(186,226:21672113,40647577:501378,78643,0 +(186,226:21835967,40647577:173670,78643,0 ) ) -(186,217:30195539,28132785:501378,78643,0 -(186,217:30359393,28132785:173670,78643,0 +(186,226:22173491,40647577:501378,78643,0 +(186,226:22337345,40647577:173670,78643,0 ) ) -(186,217:30696917,28132785:501378,78643,0 -(186,217:30860771,28132785:173670,78643,0 +(186,226:22674869,40647577:501378,78643,0 +(186,226:22838723,40647577:173670,78643,0 ) ) -(186,217:31239539,28132785:1343490,485622,11795 -k186,217:31239539,28132785:0 -k186,217:31387652,28132785:148113 +(186,226:23176247,40647577:501378,78643,0 +(186,226:23340101,40647577:173670,78643,0 ) -g186,217:30911859,28132785 -g186,217:32583029,28132785 ) -(186,218:6630773,28974273:25952256,505283,134348 -g186,218:11873653,28974273 -h186,218:11873653,28974273:2818050,0,0 -h186,218:14691703,28974273:0,0,0 -g186,218:9448823,28974273 -(186,218:9448823,28974273:2424830,485622,11795 -k186,218:11873653,28974273:483654 +(186,226:23677625,40647577:501378,78643,0 +(186,226:23841479,40647577:173670,78643,0 ) -g186,218:14131368,28974273 -g186,218:15607894,28974273 -g186,218:17695215,28974273 -g186,218:19085889,28974273 -g186,218:21187628,28974273 -g186,218:22002895,28974273 -g186,218:24844536,28974273 -(186,218:25181759,28974273:501378,78643,0 -$186,218:25181759,28974273 -(186,218:25345613,28974273:173670,78643,0 ) -$186,218:25683137,28974273 +(186,226:24179003,40647577:501378,78643,0 +(186,226:24342857,40647577:173670,78643,0 ) -(186,218:25683137,28974273:501378,78643,0 -(186,218:25846991,28974273:173670,78643,0 ) +(186,226:24680381,40647577:501378,78643,0 +(186,226:24844235,40647577:173670,78643,0 ) -(186,218:26184515,28974273:501378,78643,0 -(186,218:26348369,28974273:173670,78643,0 ) +(186,226:25181759,40647577:501378,78643,0 +(186,226:25345613,40647577:173670,78643,0 ) -(186,218:26685893,28974273:501378,78643,0 -(186,218:26849747,28974273:173670,78643,0 ) +(186,226:25683137,40647577:501378,78643,0 +(186,226:25846991,40647577:173670,78643,0 ) -(186,218:27187271,28974273:501378,78643,0 -(186,218:27351125,28974273:173670,78643,0 ) +(186,226:26184515,40647577:501378,78643,0 +(186,226:26348369,40647577:173670,78643,0 ) -(186,218:27688649,28974273:501378,78643,0 -(186,218:27852503,28974273:173670,78643,0 ) +(186,226:26685893,40647577:501378,78643,0 +(186,226:26849747,40647577:173670,78643,0 ) -(186,218:28190027,28974273:501378,78643,0 -(186,218:28353881,28974273:173670,78643,0 ) +(186,226:27187271,40647577:501378,78643,0 +(186,226:27351125,40647577:173670,78643,0 ) -(186,218:28691405,28974273:501378,78643,0 -(186,218:28855259,28974273:173670,78643,0 ) +(186,226:27688649,40647577:501378,78643,0 +(186,226:27852503,40647577:173670,78643,0 ) -(186,218:29192783,28974273:501378,78643,0 -(186,218:29356637,28974273:173670,78643,0 ) +(186,226:28190027,40647577:501378,78643,0 +(186,226:28353881,40647577:173670,78643,0 ) -(186,218:29694161,28974273:501378,78643,0 -(186,218:29858015,28974273:173670,78643,0 ) +(186,226:28691405,40647577:501378,78643,0 +(186,226:28855259,40647577:173670,78643,0 ) -(186,218:30195539,28974273:501378,78643,0 -(186,218:30359393,28974273:173670,78643,0 ) +(186,226:29192783,40647577:501378,78643,0 +(186,226:29356637,40647577:173670,78643,0 ) -(186,218:30696917,28974273:501378,78643,0 -(186,218:30860771,28974273:173670,78643,0 ) +(186,226:29694161,40647577:501378,78643,0 +(186,226:29858015,40647577:173670,78643,0 ) -(186,218:31239539,28974273:1343490,485622,11795 -k186,218:31239539,28974273:0 -k186,218:31387652,28974273:148113 ) -g186,218:30911859,28974273 -g186,218:32583029,28974273 +(186,226:30195539,40647577:501378,78643,0 +(186,226:30359393,40647577:173670,78643,0 ) -(186,219:6630773,29815761:25952256,505283,134348 -g186,219:11873653,29815761 -h186,219:11873653,29815761:2818050,0,0 -h186,219:14691703,29815761:0,0,0 -g186,219:9448823,29815761 -(186,219:9448823,29815761:2424830,485622,11795 -k186,219:11873653,29815761:483654 ) -g186,219:14131368,29815761 -g186,219:15607894,29815761 -g186,219:17695215,29815761 -g186,219:19085889,29815761 -g186,219:21187628,29815761 -g186,219:22002895,29815761 -g186,219:23326722,29815761 -(186,219:23677625,29815761:501378,78643,0 -$186,219:23677625,29815761 -(186,219:23841479,29815761:173670,78643,0 +(186,226:30696917,40647577:501378,78643,0 +(186,226:30860771,40647577:173670,78643,0 ) -$186,219:24179003,29815761 ) -(186,219:24179003,29815761:501378,78643,0 -(186,219:24342857,29815761:173670,78643,0 +(186,226:31239539,40647577:1343490,485622,11795 +k186,226:31239539,40647577:0 +k186,226:31387652,40647577:148113 ) +g186,226:30911859,40647577 +g186,226:32583029,40647577 ) -(186,219:24680381,29815761:501378,78643,0 -(186,219:24844235,29815761:173670,78643,0 +(186,227:6630773,41512657:25952256,505283,126483 +g186,227:9710963,41512657 +h186,227:9710963,41512657:983040,0,0 +h186,227:10694003,41512657:0,0,0 +g186,227:7613813,41512657 +(186,227:7613813,41512657:2097150,485622,11795 +k186,227:9710963,41512657:728103 ) +g186,227:11022993,41512657 +g186,227:13290538,41512657 +g186,227:14681212,41512657 +g186,227:18285036,41512657 +g186,227:18285036,41512657 +(186,227:18663845,41512657:501378,78643,0 +$186,227:18663845,41512657 +(186,227:18827699,41512657:173670,78643,0 ) -(186,219:25181759,29815761:501378,78643,0 -(186,219:25345613,29815761:173670,78643,0 +$186,227:19165223,41512657 ) +(186,227:19165223,41512657:501378,78643,0 +(186,227:19329077,41512657:173670,78643,0 ) -(186,219:25683137,29815761:501378,78643,0 -(186,219:25846991,29815761:173670,78643,0 ) +(186,227:19666601,41512657:501378,78643,0 +(186,227:19830455,41512657:173670,78643,0 ) -(186,219:26184515,29815761:501378,78643,0 -(186,219:26348369,29815761:173670,78643,0 ) +(186,227:20167979,41512657:501378,78643,0 +(186,227:20331833,41512657:173670,78643,0 ) -(186,219:26685893,29815761:501378,78643,0 -(186,219:26849747,29815761:173670,78643,0 ) +(186,227:20669357,41512657:501378,78643,0 +(186,227:20833211,41512657:173670,78643,0 ) -(186,219:27187271,29815761:501378,78643,0 -(186,219:27351125,29815761:173670,78643,0 ) +(186,227:21170735,41512657:501378,78643,0 +(186,227:21334589,41512657:173670,78643,0 ) -(186,219:27688649,29815761:501378,78643,0 -(186,219:27852503,29815761:173670,78643,0 ) +(186,227:21672113,41512657:501378,78643,0 +(186,227:21835967,41512657:173670,78643,0 ) -(186,219:28190027,29815761:501378,78643,0 -(186,219:28353881,29815761:173670,78643,0 ) +(186,227:22173491,41512657:501378,78643,0 +(186,227:22337345,41512657:173670,78643,0 ) -(186,219:28691405,29815761:501378,78643,0 -(186,219:28855259,29815761:173670,78643,0 ) +(186,227:22674869,41512657:501378,78643,0 +(186,227:22838723,41512657:173670,78643,0 ) -(186,219:29192783,29815761:501378,78643,0 -(186,219:29356637,29815761:173670,78643,0 ) +(186,227:23176247,41512657:501378,78643,0 +(186,227:23340101,41512657:173670,78643,0 ) -(186,219:29694161,29815761:501378,78643,0 -(186,219:29858015,29815761:173670,78643,0 ) +(186,227:23677625,41512657:501378,78643,0 +(186,227:23841479,41512657:173670,78643,0 ) -(186,219:30195539,29815761:501378,78643,0 -(186,219:30359393,29815761:173670,78643,0 ) +(186,227:24179003,41512657:501378,78643,0 +(186,227:24342857,41512657:173670,78643,0 ) -(186,219:30696917,29815761:501378,78643,0 -(186,219:30860771,29815761:173670,78643,0 ) +(186,227:24680381,41512657:501378,78643,0 +(186,227:24844235,41512657:173670,78643,0 ) -(186,219:31239539,29815761:1343490,485622,11795 -k186,219:31239539,29815761:0 -k186,219:31387652,29815761:148113 ) -g186,219:30911859,29815761 -g186,219:32583029,29815761 +(186,227:25181759,41512657:501378,78643,0 +(186,227:25345613,41512657:173670,78643,0 ) -(186,220:6630773,30657249:25952256,513147,134348 -g186,220:11873653,30657249 -h186,220:11873653,30657249:2818050,0,0 -h186,220:14691703,30657249:0,0,0 -g186,220:9448823,30657249 -(186,220:9448823,30657249:2424830,485622,11795 -k186,220:11873653,30657249:483654 ) -g186,220:13864636,30657249 -g186,220:17089662,30657249 -g186,220:17975053,30657249 -g186,220:20806863,30657249 -g186,220:22863383,30657249 -(186,220:23176247,30657249:501378,78643,0 -$186,220:23176247,30657249 -(186,220:23340101,30657249:173670,78643,0 +(186,227:25683137,41512657:501378,78643,0 +(186,227:25846991,41512657:173670,78643,0 ) -$186,220:23677625,30657249 ) -(186,220:23677625,30657249:501378,78643,0 -(186,220:23841479,30657249:173670,78643,0 +(186,227:26184515,41512657:501378,78643,0 +(186,227:26348369,41512657:173670,78643,0 ) ) -(186,220:24179003,30657249:501378,78643,0 -(186,220:24342857,30657249:173670,78643,0 +(186,227:26685893,41512657:501378,78643,0 +(186,227:26849747,41512657:173670,78643,0 ) ) -(186,220:24680381,30657249:501378,78643,0 -(186,220:24844235,30657249:173670,78643,0 +(186,227:27187271,41512657:501378,78643,0 +(186,227:27351125,41512657:173670,78643,0 ) ) -(186,220:25181759,30657249:501378,78643,0 -(186,220:25345613,30657249:173670,78643,0 +(186,227:27688649,41512657:501378,78643,0 +(186,227:27852503,41512657:173670,78643,0 ) ) -(186,220:25683137,30657249:501378,78643,0 -(186,220:25846991,30657249:173670,78643,0 +(186,227:28190027,41512657:501378,78643,0 +(186,227:28353881,41512657:173670,78643,0 ) ) -(186,220:26184515,30657249:501378,78643,0 -(186,220:26348369,30657249:173670,78643,0 +(186,227:28691405,41512657:501378,78643,0 +(186,227:28855259,41512657:173670,78643,0 ) ) -(186,220:26685893,30657249:501378,78643,0 -(186,220:26849747,30657249:173670,78643,0 +(186,227:29192783,41512657:501378,78643,0 +(186,227:29356637,41512657:173670,78643,0 ) ) -(186,220:27187271,30657249:501378,78643,0 -(186,220:27351125,30657249:173670,78643,0 +(186,227:29694161,41512657:501378,78643,0 +(186,227:29858015,41512657:173670,78643,0 ) ) -(186,220:27688649,30657249:501378,78643,0 -(186,220:27852503,30657249:173670,78643,0 +(186,227:30195539,41512657:501378,78643,0 +(186,227:30359393,41512657:173670,78643,0 ) ) -(186,220:28190027,30657249:501378,78643,0 -(186,220:28353881,30657249:173670,78643,0 +(186,227:30696917,41512657:501378,78643,0 +(186,227:30860771,41512657:173670,78643,0 ) ) -(186,220:28691405,30657249:501378,78643,0 -(186,220:28855259,30657249:173670,78643,0 +(186,227:31239539,41512657:1343490,485622,11795 +k186,227:31239539,41512657:0 +k186,227:31387652,41512657:148113 ) +g186,227:30911859,41512657 +g186,227:32583029,41512657 ) -(186,220:29192783,30657249:501378,78643,0 -(186,220:29356637,30657249:173670,78643,0 +(186,228:6630773,42377737:25952256,513147,134348 +g186,228:9710963,42377737 +h186,228:9710963,42377737:983040,0,0 +h186,228:10694003,42377737:0,0,0 +g186,228:7613813,42377737 +(186,228:7613813,42377737:2097150,485622,11795 +k186,228:9710963,42377737:728103 ) +g186,228:12592581,42377737 +g186,228:13983255,42377737 +g186,228:16436267,42377737 +g186,228:17618536,42377737 +g186,228:21654243,42377737 +g186,228:21654243,42377737 +(186,228:21672113,42377737:501378,78643,0 +$186,228:21672113,42377737 +(186,228:21835967,42377737:173670,78643,0 ) -(186,220:29694161,30657249:501378,78643,0 -(186,220:29858015,30657249:173670,78643,0 +$186,228:22173491,42377737 ) +(186,228:22173491,42377737:501378,78643,0 +(186,228:22337345,42377737:173670,78643,0 ) -(186,220:30195539,30657249:501378,78643,0 -(186,220:30359393,30657249:173670,78643,0 ) +(186,228:22674869,42377737:501378,78643,0 +(186,228:22838723,42377737:173670,78643,0 ) -(186,220:30696917,30657249:501378,78643,0 -(186,220:30860771,30657249:173670,78643,0 ) +(186,228:23176247,42377737:501378,78643,0 +(186,228:23340101,42377737:173670,78643,0 ) -(186,220:31239539,30657249:1343490,485622,11795 -k186,220:31239539,30657249:0 -k186,220:31387652,30657249:148113 ) -g186,220:30911859,30657249 -g186,220:32583029,30657249 +(186,228:23677625,42377737:501378,78643,0 +(186,228:23841479,42377737:173670,78643,0 ) -(186,221:6630773,31498737:25952256,513147,134348 -g186,221:9448823,31498737 -h186,221:9448823,31498737:983040,0,0 -h186,221:10431863,31498737:0,0,0 -g186,221:7613813,31498737 -(186,221:7613813,31498737:1835010,485622,11795 -k186,221:9448823,31498737:465963 ) -g186,221:13128669,31498737 -g186,221:15486654,31498737 -g186,221:16999225,31498737 -g186,221:16999225,31498737 -(186,221:17159711,31498737:501378,78643,0 -$186,221:17159711,31498737 -(186,221:17323565,31498737:173670,78643,0 +(186,228:24179003,42377737:501378,78643,0 +(186,228:24342857,42377737:173670,78643,0 ) -$186,221:17661089,31498737 ) -(186,221:17661089,31498737:501378,78643,0 -(186,221:17824943,31498737:173670,78643,0 +(186,228:24680381,42377737:501378,78643,0 +(186,228:24844235,42377737:173670,78643,0 ) ) -(186,221:18162467,31498737:501378,78643,0 -(186,221:18326321,31498737:173670,78643,0 +(186,228:25181759,42377737:501378,78643,0 +(186,228:25345613,42377737:173670,78643,0 ) ) -(186,221:18663845,31498737:501378,78643,0 -(186,221:18827699,31498737:173670,78643,0 +(186,228:25683137,42377737:501378,78643,0 +(186,228:25846991,42377737:173670,78643,0 ) ) -(186,221:19165223,31498737:501378,78643,0 -(186,221:19329077,31498737:173670,78643,0 +(186,228:26184515,42377737:501378,78643,0 +(186,228:26348369,42377737:173670,78643,0 ) ) -(186,221:19666601,31498737:501378,78643,0 -(186,221:19830455,31498737:173670,78643,0 +(186,228:26685893,42377737:501378,78643,0 +(186,228:26849747,42377737:173670,78643,0 ) ) -(186,221:20167979,31498737:501378,78643,0 -(186,221:20331833,31498737:173670,78643,0 +(186,228:27187271,42377737:501378,78643,0 +(186,228:27351125,42377737:173670,78643,0 ) ) -(186,221:20669357,31498737:501378,78643,0 -(186,221:20833211,31498737:173670,78643,0 +(186,228:27688649,42377737:501378,78643,0 +(186,228:27852503,42377737:173670,78643,0 ) ) -(186,221:21170735,31498737:501378,78643,0 -(186,221:21334589,31498737:173670,78643,0 +(186,228:28190027,42377737:501378,78643,0 +(186,228:28353881,42377737:173670,78643,0 ) ) -(186,221:21672113,31498737:501378,78643,0 -(186,221:21835967,31498737:173670,78643,0 +(186,228:28691405,42377737:501378,78643,0 +(186,228:28855259,42377737:173670,78643,0 ) ) -(186,221:22173491,31498737:501378,78643,0 -(186,221:22337345,31498737:173670,78643,0 +(186,228:29192783,42377737:501378,78643,0 +(186,228:29356637,42377737:173670,78643,0 ) ) -(186,221:22674869,31498737:501378,78643,0 -(186,221:22838723,31498737:173670,78643,0 +(186,228:29694161,42377737:501378,78643,0 +(186,228:29858015,42377737:173670,78643,0 ) ) -(186,221:23176247,31498737:501378,78643,0 -(186,221:23340101,31498737:173670,78643,0 +(186,228:30195539,42377737:501378,78643,0 +(186,228:30359393,42377737:173670,78643,0 ) ) -(186,221:23677625,31498737:501378,78643,0 -(186,221:23841479,31498737:173670,78643,0 +(186,228:30696917,42377737:501378,78643,0 +(186,228:30860771,42377737:173670,78643,0 ) ) -(186,221:24179003,31498737:501378,78643,0 -(186,221:24342857,31498737:173670,78643,0 +(186,228:31239539,42377737:1343490,485622,11795 +k186,228:31239539,42377737:0 +k186,228:31387652,42377737:148113 ) +g186,228:30911859,42377737 +g186,228:32583029,42377737 ) -(186,221:24680381,31498737:501378,78643,0 -(186,221:24844235,31498737:173670,78643,0 +(186,229:6630773,43242817:25952256,513147,11795 +g186,229:9710963,43242817 +h186,229:9710963,43242817:983040,0,0 +h186,229:10694003,43242817:0,0,0 +g186,229:7613813,43242817 +(186,229:7613813,43242817:2097150,485622,11795 +k186,229:9710963,43242817:728103 ) +g186,229:12901911,43242817 +g186,229:14414482,43242817 +g186,229:14414482,43242817 +(186,229:14652821,43242817:501378,78643,0 +$186,229:14652821,43242817 +(186,229:14816675,43242817:173670,78643,0 ) -(186,221:25181759,31498737:501378,78643,0 -(186,221:25345613,31498737:173670,78643,0 +$186,229:15154199,43242817 ) +(186,229:15154199,43242817:501378,78643,0 +(186,229:15318053,43242817:173670,78643,0 ) -(186,221:25683137,31498737:501378,78643,0 -(186,221:25846991,31498737:173670,78643,0 ) +(186,229:15655577,43242817:501378,78643,0 +(186,229:15819431,43242817:173670,78643,0 ) -(186,221:26184515,31498737:501378,78643,0 -(186,221:26348369,31498737:173670,78643,0 ) +(186,229:16156955,43242817:501378,78643,0 +(186,229:16320809,43242817:173670,78643,0 ) -(186,221:26685893,31498737:501378,78643,0 -(186,221:26849747,31498737:173670,78643,0 ) +(186,229:16658333,43242817:501378,78643,0 +(186,229:16822187,43242817:173670,78643,0 ) -(186,221:27187271,31498737:501378,78643,0 -(186,221:27351125,31498737:173670,78643,0 ) +(186,229:17159711,43242817:501378,78643,0 +(186,229:17323565,43242817:173670,78643,0 ) -(186,221:27688649,31498737:501378,78643,0 -(186,221:27852503,31498737:173670,78643,0 ) +(186,229:17661089,43242817:501378,78643,0 +(186,229:17824943,43242817:173670,78643,0 ) -(186,221:28190027,31498737:501378,78643,0 -(186,221:28353881,31498737:173670,78643,0 ) +(186,229:18162467,43242817:501378,78643,0 +(186,229:18326321,43242817:173670,78643,0 ) -(186,221:28691405,31498737:501378,78643,0 -(186,221:28855259,31498737:173670,78643,0 ) +(186,229:18663845,43242817:501378,78643,0 +(186,229:18827699,43242817:173670,78643,0 ) -(186,221:29192783,31498737:501378,78643,0 -(186,221:29356637,31498737:173670,78643,0 ) +(186,229:19165223,43242817:501378,78643,0 +(186,229:19329077,43242817:173670,78643,0 ) -(186,221:29694161,31498737:501378,78643,0 -(186,221:29858015,31498737:173670,78643,0 ) +(186,229:19666601,43242817:501378,78643,0 +(186,229:19830455,43242817:173670,78643,0 ) -(186,221:30195539,31498737:501378,78643,0 -(186,221:30359393,31498737:173670,78643,0 ) +(186,229:20167979,43242817:501378,78643,0 +(186,229:20331833,43242817:173670,78643,0 ) -(186,221:30696917,31498737:501378,78643,0 -(186,221:30860771,31498737:173670,78643,0 ) +(186,229:20669357,43242817:501378,78643,0 +(186,229:20833211,43242817:173670,78643,0 ) -(186,221:31239539,31498737:1343490,485622,11795 -k186,221:31239539,31498737:0 -k186,221:31387652,31498737:148113 ) -g186,221:30911859,31498737 -g186,221:32583029,31498737 +(186,229:21170735,43242817:501378,78643,0 +(186,229:21334589,43242817:173670,78643,0 ) -(186,222:6630773,32340225:25952256,505283,134348 -g186,222:9448823,32340225 -h186,222:9448823,32340225:983040,0,0 -h186,222:10431863,32340225:0,0,0 -g186,222:7613813,32340225 -(186,222:7613813,32340225:1835010,485622,11795 -k186,222:9448823,32340225:465963 ) -g186,222:12017834,32340225 -g186,222:14619613,32340225 -g186,222:14619613,32340225 -(186,222:14652821,32340225:501378,78643,0 -$186,222:14652821,32340225 -(186,222:14816675,32340225:173670,78643,0 +(186,229:21672113,43242817:501378,78643,0 +(186,229:21835967,43242817:173670,78643,0 ) -$186,222:15154199,32340225 ) -(186,222:15154199,32340225:501378,78643,0 -(186,222:15318053,32340225:173670,78643,0 +(186,229:22173491,43242817:501378,78643,0 +(186,229:22337345,43242817:173670,78643,0 ) ) -(186,222:15655577,32340225:501378,78643,0 -(186,222:15819431,32340225:173670,78643,0 +(186,229:22674869,43242817:501378,78643,0 +(186,229:22838723,43242817:173670,78643,0 ) ) -(186,222:16156955,32340225:501378,78643,0 -(186,222:16320809,32340225:173670,78643,0 +(186,229:23176247,43242817:501378,78643,0 +(186,229:23340101,43242817:173670,78643,0 ) ) -(186,222:16658333,32340225:501378,78643,0 -(186,222:16822187,32340225:173670,78643,0 +(186,229:23677625,43242817:501378,78643,0 +(186,229:23841479,43242817:173670,78643,0 ) ) -(186,222:17159711,32340225:501378,78643,0 -(186,222:17323565,32340225:173670,78643,0 +(186,229:24179003,43242817:501378,78643,0 +(186,229:24342857,43242817:173670,78643,0 ) ) -(186,222:17661089,32340225:501378,78643,0 -(186,222:17824943,32340225:173670,78643,0 +(186,229:24680381,43242817:501378,78643,0 +(186,229:24844235,43242817:173670,78643,0 ) ) -(186,222:18162467,32340225:501378,78643,0 -(186,222:18326321,32340225:173670,78643,0 +(186,229:25181759,43242817:501378,78643,0 +(186,229:25345613,43242817:173670,78643,0 ) ) -(186,222:18663845,32340225:501378,78643,0 -(186,222:18827699,32340225:173670,78643,0 +(186,229:25683137,43242817:501378,78643,0 +(186,229:25846991,43242817:173670,78643,0 ) ) -(186,222:19165223,32340225:501378,78643,0 -(186,222:19329077,32340225:173670,78643,0 +(186,229:26184515,43242817:501378,78643,0 +(186,229:26348369,43242817:173670,78643,0 ) ) -(186,222:19666601,32340225:501378,78643,0 -(186,222:19830455,32340225:173670,78643,0 +(186,229:26685893,43242817:501378,78643,0 +(186,229:26849747,43242817:173670,78643,0 ) ) -(186,222:20167979,32340225:501378,78643,0 -(186,222:20331833,32340225:173670,78643,0 +(186,229:27187271,43242817:501378,78643,0 +(186,229:27351125,43242817:173670,78643,0 ) ) -(186,222:20669357,32340225:501378,78643,0 -(186,222:20833211,32340225:173670,78643,0 +(186,229:27688649,43242817:501378,78643,0 +(186,229:27852503,43242817:173670,78643,0 ) ) -(186,222:21170735,32340225:501378,78643,0 -(186,222:21334589,32340225:173670,78643,0 +(186,229:28190027,43242817:501378,78643,0 +(186,229:28353881,43242817:173670,78643,0 ) ) -(186,222:21672113,32340225:501378,78643,0 -(186,222:21835967,32340225:173670,78643,0 +(186,229:28691405,43242817:501378,78643,0 +(186,229:28855259,43242817:173670,78643,0 ) ) -(186,222:22173491,32340225:501378,78643,0 -(186,222:22337345,32340225:173670,78643,0 +(186,229:29192783,43242817:501378,78643,0 +(186,229:29356637,43242817:173670,78643,0 ) ) -(186,222:22674869,32340225:501378,78643,0 -(186,222:22838723,32340225:173670,78643,0 +(186,229:29694161,43242817:501378,78643,0 +(186,229:29858015,43242817:173670,78643,0 ) ) -(186,222:23176247,32340225:501378,78643,0 -(186,222:23340101,32340225:173670,78643,0 +(186,229:30195539,43242817:501378,78643,0 +(186,229:30359393,43242817:173670,78643,0 ) ) -(186,222:23677625,32340225:501378,78643,0 -(186,222:23841479,32340225:173670,78643,0 +(186,229:30696917,43242817:501378,78643,0 +(186,229:30860771,43242817:173670,78643,0 ) ) -(186,222:24179003,32340225:501378,78643,0 -(186,222:24342857,32340225:173670,78643,0 +(186,229:31239538,43242817:1343490,485622,11795 +k186,229:31239538,43242817:0 +k186,229:31387651,43242817:148113 ) +g186,229:30911858,43242817 +g186,229:32583028,43242817 ) -(186,222:24680381,32340225:501378,78643,0 -(186,222:24844235,32340225:173670,78643,0 +(186,230:6630773,44107897:25952256,505283,11795 +g186,230:12529013,44107897 +h186,230:12529013,44107897:3080190,0,0 +h186,230:15609203,44107897:0,0,0 +g186,230:9710963,44107897 +(186,230:9710963,44107897:2818050,485622,11795 +k186,230:12529013,44107897:876874 ) +g186,230:14160859,44107897 +g186,230:14805077,44107897 +g186,230:16195751,44107897 +g186,230:17951461,44107897 +(186,230:18162467,44107897:501378,78643,0 +$186,230:18162467,44107897 +(186,230:18326321,44107897:173670,78643,0 ) -(186,222:25181759,32340225:501378,78643,0 -(186,222:25345613,32340225:173670,78643,0 +$186,230:18663845,44107897 ) +(186,230:18663845,44107897:501378,78643,0 +(186,230:18827699,44107897:173670,78643,0 ) -(186,222:25683137,32340225:501378,78643,0 -(186,222:25846991,32340225:173670,78643,0 ) +(186,230:19165223,44107897:501378,78643,0 +(186,230:19329077,44107897:173670,78643,0 ) -(186,222:26184515,32340225:501378,78643,0 -(186,222:26348369,32340225:173670,78643,0 ) +(186,230:19666601,44107897:501378,78643,0 +(186,230:19830455,44107897:173670,78643,0 ) -(186,222:26685893,32340225:501378,78643,0 -(186,222:26849747,32340225:173670,78643,0 ) +(186,230:20167979,44107897:501378,78643,0 +(186,230:20331833,44107897:173670,78643,0 ) -(186,222:27187271,32340225:501378,78643,0 -(186,222:27351125,32340225:173670,78643,0 ) +(186,230:20669357,44107897:501378,78643,0 +(186,230:20833211,44107897:173670,78643,0 ) -(186,222:27688649,32340225:501378,78643,0 -(186,222:27852503,32340225:173670,78643,0 ) +(186,230:21170735,44107897:501378,78643,0 +(186,230:21334589,44107897:173670,78643,0 ) -(186,222:28190027,32340225:501378,78643,0 -(186,222:28353881,32340225:173670,78643,0 ) +(186,230:21672113,44107897:501378,78643,0 +(186,230:21835967,44107897:173670,78643,0 ) -(186,222:28691405,32340225:501378,78643,0 -(186,222:28855259,32340225:173670,78643,0 ) +(186,230:22173491,44107897:501378,78643,0 +(186,230:22337345,44107897:173670,78643,0 ) -(186,222:29192783,32340225:501378,78643,0 -(186,222:29356637,32340225:173670,78643,0 ) +(186,230:22674869,44107897:501378,78643,0 +(186,230:22838723,44107897:173670,78643,0 ) -(186,222:29694161,32340225:501378,78643,0 -(186,222:29858015,32340225:173670,78643,0 ) +(186,230:23176247,44107897:501378,78643,0 +(186,230:23340101,44107897:173670,78643,0 ) -(186,222:30195539,32340225:501378,78643,0 -(186,222:30359393,32340225:173670,78643,0 ) +(186,230:23677625,44107897:501378,78643,0 +(186,230:23841479,44107897:173670,78643,0 ) -(186,222:30696917,32340225:501378,78643,0 -(186,222:30860771,32340225:173670,78643,0 ) +(186,230:24179003,44107897:501378,78643,0 +(186,230:24342857,44107897:173670,78643,0 ) -(186,222:31239539,32340225:1343490,485622,11795 -k186,222:31239539,32340225:0 -k186,222:31387652,32340225:148113 ) -g186,222:30911859,32340225 -g186,222:32583029,32340225 +(186,230:24680381,44107897:501378,78643,0 +(186,230:24844235,44107897:173670,78643,0 ) -(186,223:6630773,33837073:25952256,505283,134348 -g186,223:7613813,33837073 -h186,223:7613813,33837073:0,0,0 -g186,223:6630773,33837073 -(186,223:6630773,33837073:983040,485622,11795 -k186,223:7613813,33837073:166461 ) -g186,223:9313161,33837073 -g186,223:9989492,33837073 -g186,223:11414244,33837073 -g186,223:15369341,33837073 -g186,223:17077864,33837073 -k186,223:25405852,33837073:5833688 -k186,223:31239539,33837073:5833687 -(186,223:31239539,33837073:1343490,485622,11795 -k186,223:31358161,33837073:118622 +(186,230:25181759,44107897:501378,78643,0 +(186,230:25345613,44107897:173670,78643,0 ) -g186,223:31239539,33837073 -g186,223:32583029,33837073 ) -(186,224:6630773,34678561:25952256,513147,126483 -g186,224:9448823,34678561 -h186,224:9448823,34678561:983040,0,0 -h186,224:10431863,34678561:0,0,0 -g186,224:7613813,34678561 -(186,224:7613813,34678561:1835010,485622,11795 -k186,224:9448823,34678561:465963 +(186,230:25683137,44107897:501378,78643,0 +(186,230:25846991,44107897:173670,78643,0 ) -g186,224:11287107,34678561 -g186,224:12145628,34678561 -g186,224:13548098,34678561 -g186,224:16164950,34678561 -g186,224:16164950,34678561 -(186,224:16658333,34678561:501378,78643,0 -$186,224:16658333,34678561 -(186,224:16822187,34678561:173670,78643,0 ) -$186,224:17159711,34678561 +(186,230:26184515,44107897:501378,78643,0 +(186,230:26348369,44107897:173670,78643,0 ) -(186,224:17159711,34678561:501378,78643,0 -(186,224:17323565,34678561:173670,78643,0 ) +(186,230:26685893,44107897:501378,78643,0 +(186,230:26849747,44107897:173670,78643,0 ) -(186,224:17661089,34678561:501378,78643,0 -(186,224:17824943,34678561:173670,78643,0 ) +(186,230:27187271,44107897:501378,78643,0 +(186,230:27351125,44107897:173670,78643,0 ) -(186,224:18162467,34678561:501378,78643,0 -(186,224:18326321,34678561:173670,78643,0 ) +(186,230:27688649,44107897:501378,78643,0 +(186,230:27852503,44107897:173670,78643,0 ) -(186,224:18663845,34678561:501378,78643,0 -(186,224:18827699,34678561:173670,78643,0 ) +(186,230:28190027,44107897:501378,78643,0 +(186,230:28353881,44107897:173670,78643,0 ) -(186,224:19165223,34678561:501378,78643,0 -(186,224:19329077,34678561:173670,78643,0 ) +(186,230:28691405,44107897:501378,78643,0 +(186,230:28855259,44107897:173670,78643,0 ) -(186,224:19666601,34678561:501378,78643,0 -(186,224:19830455,34678561:173670,78643,0 ) +(186,230:29192783,44107897:501378,78643,0 +(186,230:29356637,44107897:173670,78643,0 ) -(186,224:20167979,34678561:501378,78643,0 -(186,224:20331833,34678561:173670,78643,0 ) +(186,230:29694161,44107897:501378,78643,0 +(186,230:29858015,44107897:173670,78643,0 ) -(186,224:20669357,34678561:501378,78643,0 -(186,224:20833211,34678561:173670,78643,0 ) +(186,230:30195539,44107897:501378,78643,0 +(186,230:30359393,44107897:173670,78643,0 ) -(186,224:21170735,34678561:501378,78643,0 -(186,224:21334589,34678561:173670,78643,0 ) +(186,230:30696917,44107897:501378,78643,0 +(186,230:30860771,44107897:173670,78643,0 ) -(186,224:21672113,34678561:501378,78643,0 -(186,224:21835967,34678561:173670,78643,0 ) +(186,230:31239539,44107897:1343490,485622,11795 +k186,230:31239539,44107897:0 +k186,230:31387652,44107897:148113 ) -(186,224:22173491,34678561:501378,78643,0 -(186,224:22337345,34678561:173670,78643,0 +g186,230:30911859,44107897 +g186,230:32583029,44107897 ) +(186,231:6630773,44972977:25952256,505283,11795 +g186,231:12529013,44972977 +h186,231:12529013,44972977:3080190,0,0 +h186,231:15609203,44972977:0,0,0 +g186,231:9710963,44972977 +(186,231:9710963,44972977:2818050,485622,11795 +k186,231:12529013,44972977:876874 ) -(186,224:22674869,34678561:501378,78643,0 -(186,224:22838723,34678561:173670,78643,0 +g186,231:14229672,44972977 +(186,231:14652821,44972977:501378,78643,0 +$186,231:14652821,44972977 +(186,231:14816675,44972977:173670,78643,0 ) +$186,231:15154199,44972977 ) -(186,224:23176247,34678561:501378,78643,0 -(186,224:23340101,34678561:173670,78643,0 +(186,231:15154199,44972977:501378,78643,0 +(186,231:15318053,44972977:173670,78643,0 ) ) -(186,224:23677625,34678561:501378,78643,0 -(186,224:23841479,34678561:173670,78643,0 +(186,231:15655577,44972977:501378,78643,0 +(186,231:15819431,44972977:173670,78643,0 ) ) -(186,224:24179003,34678561:501378,78643,0 -(186,224:24342857,34678561:173670,78643,0 +(186,231:16156955,44972977:501378,78643,0 +(186,231:16320809,44972977:173670,78643,0 ) ) -(186,224:24680381,34678561:501378,78643,0 -(186,224:24844235,34678561:173670,78643,0 +(186,231:16658333,44972977:501378,78643,0 +(186,231:16822187,44972977:173670,78643,0 ) ) -(186,224:25181759,34678561:501378,78643,0 -(186,224:25345613,34678561:173670,78643,0 +(186,231:17159711,44972977:501378,78643,0 +(186,231:17323565,44972977:173670,78643,0 ) ) -(186,224:25683137,34678561:501378,78643,0 -(186,224:25846991,34678561:173670,78643,0 +(186,231:17661089,44972977:501378,78643,0 +(186,231:17824943,44972977:173670,78643,0 ) ) -(186,224:26184515,34678561:501378,78643,0 -(186,224:26348369,34678561:173670,78643,0 +(186,231:18162467,44972977:501378,78643,0 +(186,231:18326321,44972977:173670,78643,0 ) ) -(186,224:26685893,34678561:501378,78643,0 -(186,224:26849747,34678561:173670,78643,0 +(186,231:18663845,44972977:501378,78643,0 +(186,231:18827699,44972977:173670,78643,0 ) ) -(186,224:27187271,34678561:501378,78643,0 -(186,224:27351125,34678561:173670,78643,0 +(186,231:19165223,44972977:501378,78643,0 +(186,231:19329077,44972977:173670,78643,0 ) ) -(186,224:27688649,34678561:501378,78643,0 -(186,224:27852503,34678561:173670,78643,0 +(186,231:19666601,44972977:501378,78643,0 +(186,231:19830455,44972977:173670,78643,0 ) ) -(186,224:28190027,34678561:501378,78643,0 -(186,224:28353881,34678561:173670,78643,0 +(186,231:20167979,44972977:501378,78643,0 +(186,231:20331833,44972977:173670,78643,0 ) ) -(186,224:28691405,34678561:501378,78643,0 -(186,224:28855259,34678561:173670,78643,0 +(186,231:20669357,44972977:501378,78643,0 +(186,231:20833211,44972977:173670,78643,0 ) ) -(186,224:29192783,34678561:501378,78643,0 -(186,224:29356637,34678561:173670,78643,0 +(186,231:21170735,44972977:501378,78643,0 +(186,231:21334589,44972977:173670,78643,0 ) ) -(186,224:29694161,34678561:501378,78643,0 -(186,224:29858015,34678561:173670,78643,0 +(186,231:21672113,44972977:501378,78643,0 +(186,231:21835967,44972977:173670,78643,0 ) ) -(186,224:30195539,34678561:501378,78643,0 -(186,224:30359393,34678561:173670,78643,0 +(186,231:22173491,44972977:501378,78643,0 +(186,231:22337345,44972977:173670,78643,0 ) ) -(186,224:30696917,34678561:501378,78643,0 -(186,224:30860771,34678561:173670,78643,0 +(186,231:22674869,44972977:501378,78643,0 +(186,231:22838723,44972977:173670,78643,0 ) ) -(186,224:31239539,34678561:1343490,485622,11795 -k186,224:31239539,34678561:0 -k186,224:31387652,34678561:148113 +(186,231:23176247,44972977:501378,78643,0 +(186,231:23340101,44972977:173670,78643,0 ) -g186,224:30911859,34678561 -g186,224:32583029,34678561 ) -(186,225:6630773,35520049:25952256,505283,11795 -g186,225:9448823,35520049 -h186,225:9448823,35520049:983040,0,0 -h186,225:10431863,35520049:0,0,0 -g186,225:7613813,35520049 -(186,225:7613813,35520049:1835010,485622,11795 -k186,225:9448823,35520049:465963 +(186,231:23677625,44972977:501378,78643,0 +(186,231:23841479,44972977:173670,78643,0 ) -g186,225:13652302,35520049 -g186,225:13652302,35520049 -(186,225:14151443,35520049:501378,78643,0 -$186,225:14151443,35520049 -(186,225:14315297,35520049:173670,78643,0 ) -$186,225:14652821,35520049 +(186,231:24179003,44972977:501378,78643,0 +(186,231:24342857,44972977:173670,78643,0 ) -(186,225:14652821,35520049:501378,78643,0 -(186,225:14816675,35520049:173670,78643,0 ) +(186,231:24680381,44972977:501378,78643,0 +(186,231:24844235,44972977:173670,78643,0 ) -(186,225:15154199,35520049:501378,78643,0 -(186,225:15318053,35520049:173670,78643,0 ) +(186,231:25181759,44972977:501378,78643,0 +(186,231:25345613,44972977:173670,78643,0 ) -(186,225:15655577,35520049:501378,78643,0 -(186,225:15819431,35520049:173670,78643,0 ) +(186,231:25683137,44972977:501378,78643,0 +(186,231:25846991,44972977:173670,78643,0 ) -(186,225:16156955,35520049:501378,78643,0 -(186,225:16320809,35520049:173670,78643,0 ) +(186,231:26184515,44972977:501378,78643,0 +(186,231:26348369,44972977:173670,78643,0 ) -(186,225:16658333,35520049:501378,78643,0 -(186,225:16822187,35520049:173670,78643,0 ) +(186,231:26685893,44972977:501378,78643,0 +(186,231:26849747,44972977:173670,78643,0 ) -(186,225:17159711,35520049:501378,78643,0 -(186,225:17323565,35520049:173670,78643,0 ) +(186,231:27187271,44972977:501378,78643,0 +(186,231:27351125,44972977:173670,78643,0 ) -(186,225:17661089,35520049:501378,78643,0 -(186,225:17824943,35520049:173670,78643,0 ) +(186,231:27688649,44972977:501378,78643,0 +(186,231:27852503,44972977:173670,78643,0 ) -(186,225:18162467,35520049:501378,78643,0 -(186,225:18326321,35520049:173670,78643,0 ) +(186,231:28190027,44972977:501378,78643,0 +(186,231:28353881,44972977:173670,78643,0 ) -(186,225:18663845,35520049:501378,78643,0 -(186,225:18827699,35520049:173670,78643,0 ) +(186,231:28691405,44972977:501378,78643,0 +(186,231:28855259,44972977:173670,78643,0 ) -(186,225:19165223,35520049:501378,78643,0 -(186,225:19329077,35520049:173670,78643,0 ) +(186,231:29192783,44972977:501378,78643,0 +(186,231:29356637,44972977:173670,78643,0 ) -(186,225:19666601,35520049:501378,78643,0 -(186,225:19830455,35520049:173670,78643,0 ) +(186,231:29694161,44972977:501378,78643,0 +(186,231:29858015,44972977:173670,78643,0 ) -(186,225:20167979,35520049:501378,78643,0 -(186,225:20331833,35520049:173670,78643,0 ) +(186,231:30195539,44972977:501378,78643,0 +(186,231:30359393,44972977:173670,78643,0 ) -(186,225:20669357,35520049:501378,78643,0 -(186,225:20833211,35520049:173670,78643,0 ) +(186,231:30696917,44972977:501378,78643,0 +(186,231:30860771,44972977:173670,78643,0 +) +) +(186,231:31239540,44972977:1343490,485622,11795 +k186,231:31239540,44972977:0 +k186,231:31387653,44972977:148113 +) +g186,231:30911860,44972977 +g186,231:32583030,44972977 +) +] +(186,233:32583029,45706769:0,0,0 +g186,233:32583029,45706769 +) +) +] +(186,233:6630773,47279633:25952256,0,0 +h186,233:6630773,47279633:25952256,0,0 ) -(186,225:21170735,35520049:501378,78643,0 -(186,225:21334589,35520049:173670,78643,0 +] +(186,233:4262630,4025873:0,0,0 +[186,233:-473656,4025873:0,0,0 +(186,233:-473656,-710413:0,0,0 +(186,233:-473656,-710413:0,0,0 +g186,233:-473656,-710413 ) +g186,233:-473656,-710413 ) -(186,225:21672113,35520049:501378,78643,0 -(186,225:21835967,35520049:173670,78643,0 +] ) +] +!129484 +}6 +!11 +{7 +[1,129:4262630,47279633:28320399,43253760,0 +(1,129:4262630,4025873:0,0,0 +[1,129:-473656,4025873:0,0,0 +(1,129:-473656,-710413:0,0,0 +(1,129:-473656,-644877:0,0,0 +k1,129:-473656,-644877:-65536 ) -(186,225:22173491,35520049:501378,78643,0 -(186,225:22337345,35520049:173670,78643,0 +(1,129:-473656,4736287:0,0,0 +k1,129:-473656,4736287:5209943 ) +g1,129:-473656,-710413 ) -(186,225:22674869,35520049:501378,78643,0 -(186,225:22838723,35520049:173670,78643,0 +] ) +[1,129:6630773,47279633:25952256,43253760,0 +[1,129:6630773,4812305:25952256,786432,0 +(1,129:6630773,4812305:25952256,485622,11795 +(1,129:6630773,4812305:25952256,485622,11795 +g1,129:3078558,4812305 +[1,129:3078558,4812305:0,0,0 +(1,129:3078558,2439708:0,1703936,0 +k1,129:1358238,2439708:-1720320 +(1,128:1358238,2439708:1720320,1703936,0 +(1,128:1358238,2439708:1179648,16384,0 +r1,129:2537886,2439708:1179648,16384,0 ) -(186,225:23176247,35520049:501378,78643,0 -(186,225:23340101,35520049:173670,78643,0 +g1,128:3062174,2439708 +(1,128:3062174,2439708:16384,1703936,0 +[1,128:3062174,2439708:25952256,1703936,0 +(1,128:3062174,1915420:25952256,1179648,0 +(1,128:3062174,1915420:16384,1179648,0 +r1,129:3078558,1915420:16384,1179648,0 ) +k1,128:29014430,1915420:25935872 +g1,128:29014430,1915420 ) -(186,225:23677625,35520049:501378,78643,0 -(186,225:23841479,35520049:173670,78643,0 +] ) ) -(186,225:24179003,35520049:501378,78643,0 -(186,225:24342857,35520049:173670,78643,0 ) +] +[1,129:3078558,4812305:0,0,0 +(1,129:3078558,2439708:0,1703936,0 +g1,129:29030814,2439708 +g1,129:36135244,2439708 +(1,128:36135244,2439708:1720320,1703936,0 +(1,128:36135244,2439708:16384,1703936,0 +[1,128:36135244,2439708:25952256,1703936,0 +(1,128:36135244,1915420:25952256,1179648,0 +(1,128:36135244,1915420:16384,1179648,0 +r1,129:36151628,1915420:16384,1179648,0 ) -(186,225:24680381,35520049:501378,78643,0 -(186,225:24844235,35520049:173670,78643,0 +k1,128:62087500,1915420:25935872 +g1,128:62087500,1915420 ) +] ) -(186,225:25181759,35520049:501378,78643,0 -(186,225:25345613,35520049:173670,78643,0 +g1,128:36675916,2439708 +(1,128:36675916,2439708:1179648,16384,0 +r1,129:37855564,2439708:1179648,16384,0 ) ) -(186,225:25683137,35520049:501378,78643,0 -(186,225:25846991,35520049:173670,78643,0 +k1,129:3078556,2439708:-34777008 ) +] +[1,129:3078558,4812305:0,0,0 +(1,129:3078558,49800853:0,16384,2228224 +k1,129:1358238,49800853:-1720320 +(1,128:1358238,49800853:1720320,16384,2228224 +(1,128:1358238,49800853:1179648,16384,0 +r1,129:2537886,49800853:1179648,16384,0 ) -(186,225:26184515,35520049:501378,78643,0 -(186,225:26348369,35520049:173670,78643,0 +g1,128:3062174,49800853 +(1,128:3062174,52029077:16384,1703936,0 +[1,128:3062174,52029077:25952256,1703936,0 +(1,128:3062174,51504789:25952256,1179648,0 +(1,128:3062174,51504789:16384,1179648,0 +r1,129:3078558,51504789:16384,1179648,0 ) +k1,128:29014430,51504789:25935872 +g1,128:29014430,51504789 ) -(186,225:26685893,35520049:501378,78643,0 -(186,225:26849747,35520049:173670,78643,0 +] ) ) -(186,225:27187271,35520049:501378,78643,0 -(186,225:27351125,35520049:173670,78643,0 ) +] +[1,129:3078558,4812305:0,0,0 +(1,129:3078558,49800853:0,16384,2228224 +g1,129:29030814,49800853 +g1,129:36135244,49800853 +(1,128:36135244,49800853:1720320,16384,2228224 +(1,128:36135244,52029077:16384,1703936,0 +[1,128:36135244,52029077:25952256,1703936,0 +(1,128:36135244,51504789:25952256,1179648,0 +(1,128:36135244,51504789:16384,1179648,0 +r1,129:36151628,51504789:16384,1179648,0 ) -(186,225:27688649,35520049:501378,78643,0 -(186,225:27852503,35520049:173670,78643,0 +k1,128:62087500,51504789:25935872 +g1,128:62087500,51504789 ) +] ) -(186,225:28190027,35520049:501378,78643,0 -(186,225:28353881,35520049:173670,78643,0 +g1,128:36675916,49800853 +(1,128:36675916,49800853:1179648,16384,0 +r1,129:37855564,49800853:1179648,16384,0 ) ) -(186,225:28691405,35520049:501378,78643,0 -(186,225:28855259,35520049:173670,78643,0 +k1,129:3078556,49800853:-34777008 ) +] +g1,129:6630773,4812305 +k1,129:29827895,4812305:22832086 ) -(186,225:29192783,35520049:501378,78643,0 -(186,225:29356637,35520049:173670,78643,0 ) +] +[1,129:6630773,45706769:25952256,40108032,0 +(1,129:6630773,45706769:25952256,40108032,0 +(1,129:6630773,45706769:0,0,0 +g1,129:6630773,45706769 ) -(186,225:29694161,35520049:501378,78643,0 -(186,225:29858015,35520049:173670,78643,0 +[1,129:6630773,45706769:25952256,40108032,0 +(186,232:6630773,6254097:25952256,513147,11795 +g186,232:9710963,6254097 +h186,232:9710963,6254097:983040,0,0 +h186,232:10694003,6254097:0,0,0 +g186,232:7613813,6254097 +(186,232:7613813,6254097:2097150,485622,11795 +k186,232:9710963,6254097:728103 ) +g186,232:11269409,6254097 +g186,232:12660083,6254097 +g186,232:14727743,6254097 +g186,232:16240314,6254097 +g186,232:16240314,6254097 +(186,232:16658333,6254097:501378,78643,0 +$186,232:16658333,6254097 +(186,232:16822187,6254097:173670,78643,0 ) -(186,225:30195539,35520049:501378,78643,0 -(186,225:30359393,35520049:173670,78643,0 +$186,232:17159711,6254097 ) +(186,232:17159711,6254097:501378,78643,0 +(186,232:17323565,6254097:173670,78643,0 ) -(186,225:30696917,35520049:501378,78643,0 -(186,225:30860771,35520049:173670,78643,0 ) +(186,232:17661089,6254097:501378,78643,0 +(186,232:17824943,6254097:173670,78643,0 ) -(186,225:31239538,35520049:1343490,485622,11795 -k186,225:31239538,35520049:0 -k186,225:31387651,35520049:148113 ) -g186,225:30911858,35520049 -g186,225:32583028,35520049 +(186,232:18162467,6254097:501378,78643,0 +(186,232:18326321,6254097:173670,78643,0 ) -(186,226:6630773,36361537:25952256,505283,134348 -g186,226:9448823,36361537 -h186,226:9448823,36361537:983040,0,0 -h186,226:10431863,36361537:0,0,0 -g186,226:7613813,36361537 -(186,226:7613813,36361537:1835010,485622,11795 -k186,226:9448823,36361537:465963 ) -g186,226:12513286,36361537 -g186,226:14225741,36361537 -g186,226:15041008,36361537 -g186,226:16443478,36361537 -g186,226:19060330,36361537 -g186,226:19060330,36361537 -(186,226:19165223,36361537:501378,78643,0 -$186,226:19165223,36361537 -(186,226:19329077,36361537:173670,78643,0 +(186,232:18663845,6254097:501378,78643,0 +(186,232:18827699,6254097:173670,78643,0 ) -$186,226:19666601,36361537 ) -(186,226:19666601,36361537:501378,78643,0 -(186,226:19830455,36361537:173670,78643,0 +(186,232:19165223,6254097:501378,78643,0 +(186,232:19329077,6254097:173670,78643,0 ) ) -(186,226:20167979,36361537:501378,78643,0 -(186,226:20331833,36361537:173670,78643,0 +(186,232:19666601,6254097:501378,78643,0 +(186,232:19830455,6254097:173670,78643,0 ) ) -(186,226:20669357,36361537:501378,78643,0 -(186,226:20833211,36361537:173670,78643,0 +(186,232:20167979,6254097:501378,78643,0 +(186,232:20331833,6254097:173670,78643,0 ) ) -(186,226:21170735,36361537:501378,78643,0 -(186,226:21334589,36361537:173670,78643,0 +(186,232:20669357,6254097:501378,78643,0 +(186,232:20833211,6254097:173670,78643,0 ) ) -(186,226:21672113,36361537:501378,78643,0 -(186,226:21835967,36361537:173670,78643,0 +(186,232:21170735,6254097:501378,78643,0 +(186,232:21334589,6254097:173670,78643,0 ) ) -(186,226:22173491,36361537:501378,78643,0 -(186,226:22337345,36361537:173670,78643,0 +(186,232:21672113,6254097:501378,78643,0 +(186,232:21835967,6254097:173670,78643,0 ) ) -(186,226:22674869,36361537:501378,78643,0 -(186,226:22838723,36361537:173670,78643,0 +(186,232:22173491,6254097:501378,78643,0 +(186,232:22337345,6254097:173670,78643,0 ) ) -(186,226:23176247,36361537:501378,78643,0 -(186,226:23340101,36361537:173670,78643,0 +(186,232:22674869,6254097:501378,78643,0 +(186,232:22838723,6254097:173670,78643,0 ) ) -(186,226:23677625,36361537:501378,78643,0 -(186,226:23841479,36361537:173670,78643,0 +(186,232:23176247,6254097:501378,78643,0 +(186,232:23340101,6254097:173670,78643,0 ) ) -(186,226:24179003,36361537:501378,78643,0 -(186,226:24342857,36361537:173670,78643,0 +(186,232:23677625,6254097:501378,78643,0 +(186,232:23841479,6254097:173670,78643,0 ) ) -(186,226:24680381,36361537:501378,78643,0 -(186,226:24844235,36361537:173670,78643,0 +(186,232:24179003,6254097:501378,78643,0 +(186,232:24342857,6254097:173670,78643,0 ) ) -(186,226:25181759,36361537:501378,78643,0 -(186,226:25345613,36361537:173670,78643,0 +(186,232:24680381,6254097:501378,78643,0 +(186,232:24844235,6254097:173670,78643,0 ) ) -(186,226:25683137,36361537:501378,78643,0 -(186,226:25846991,36361537:173670,78643,0 +(186,232:25181759,6254097:501378,78643,0 +(186,232:25345613,6254097:173670,78643,0 ) ) -(186,226:26184515,36361537:501378,78643,0 -(186,226:26348369,36361537:173670,78643,0 +(186,232:25683137,6254097:501378,78643,0 +(186,232:25846991,6254097:173670,78643,0 ) ) -(186,226:26685893,36361537:501378,78643,0 -(186,226:26849747,36361537:173670,78643,0 +(186,232:26184515,6254097:501378,78643,0 +(186,232:26348369,6254097:173670,78643,0 ) ) -(186,226:27187271,36361537:501378,78643,0 -(186,226:27351125,36361537:173670,78643,0 +(186,232:26685893,6254097:501378,78643,0 +(186,232:26849747,6254097:173670,78643,0 ) ) -(186,226:27688649,36361537:501378,78643,0 -(186,226:27852503,36361537:173670,78643,0 +(186,232:27187271,6254097:501378,78643,0 +(186,232:27351125,6254097:173670,78643,0 ) ) -(186,226:28190027,36361537:501378,78643,0 -(186,226:28353881,36361537:173670,78643,0 +(186,232:27688649,6254097:501378,78643,0 +(186,232:27852503,6254097:173670,78643,0 ) ) -(186,226:28691405,36361537:501378,78643,0 -(186,226:28855259,36361537:173670,78643,0 +(186,232:28190027,6254097:501378,78643,0 +(186,232:28353881,6254097:173670,78643,0 ) ) -(186,226:29192783,36361537:501378,78643,0 -(186,226:29356637,36361537:173670,78643,0 +(186,232:28691405,6254097:501378,78643,0 +(186,232:28855259,6254097:173670,78643,0 ) ) -(186,226:29694161,36361537:501378,78643,0 -(186,226:29858015,36361537:173670,78643,0 +(186,232:29192783,6254097:501378,78643,0 +(186,232:29356637,6254097:173670,78643,0 ) ) -(186,226:30195539,36361537:501378,78643,0 -(186,226:30359393,36361537:173670,78643,0 +(186,232:29694161,6254097:501378,78643,0 +(186,232:29858015,6254097:173670,78643,0 ) ) -(186,226:30696917,36361537:501378,78643,0 -(186,226:30860771,36361537:173670,78643,0 +(186,232:30195539,6254097:501378,78643,0 +(186,232:30359393,6254097:173670,78643,0 ) ) -(186,226:31239539,36361537:1343490,485622,11795 -k186,226:31239539,36361537:0 -k186,226:31387652,36361537:148113 +(186,232:30696917,6254097:501378,78643,0 +(186,232:30860771,6254097:173670,78643,0 ) -g186,226:30911859,36361537 -g186,226:32583029,36361537 ) -(186,227:6630773,37203025:25952256,505283,126483 -g186,227:9448823,37203025 -h186,227:9448823,37203025:983040,0,0 -h186,227:10431863,37203025:0,0,0 -g186,227:7613813,37203025 -(186,227:7613813,37203025:1835010,485622,11795 -k186,227:9448823,37203025:465963 +(186,232:31239539,6254097:1343490,485622,11795 +k186,232:31239539,6254097:0 +k186,232:31387652,6254097:148113 ) -g186,227:10760853,37203025 -g186,227:13028398,37203025 -g186,227:14419072,37203025 -g186,227:18022896,37203025 -g186,227:18022896,37203025 -(186,227:18162467,37203025:501378,78643,0 -$186,227:18162467,37203025 -(186,227:18326321,37203025:173670,78643,0 +g186,232:30911859,6254097 +g186,232:32583029,6254097 ) -$186,227:18663845,37203025 +(186,233:6630773,7119177:25952256,505283,11795 +g186,233:12529013,7119177 +h186,233:12529013,7119177:3080190,0,0 +h186,233:15609203,7119177:0,0,0 +g186,233:9710963,7119177 +(186,233:9710963,7119177:2818050,485622,11795 +k186,233:12529013,7119177:876874 ) -(186,227:18663845,37203025:501378,78643,0 -(186,227:18827699,37203025:173670,78643,0 +g186,233:14464947,7119177 +(186,233:14652821,7119177:501378,78643,0 +$186,233:14652821,7119177 +(186,233:14816675,7119177:173670,78643,0 ) +$186,233:15154199,7119177 ) -(186,227:19165223,37203025:501378,78643,0 -(186,227:19329077,37203025:173670,78643,0 +(186,233:15154199,7119177:501378,78643,0 +(186,233:15318053,7119177:173670,78643,0 ) ) -(186,227:19666601,37203025:501378,78643,0 -(186,227:19830455,37203025:173670,78643,0 +(186,233:15655577,7119177:501378,78643,0 +(186,233:15819431,7119177:173670,78643,0 ) ) -(186,227:20167979,37203025:501378,78643,0 -(186,227:20331833,37203025:173670,78643,0 +(186,233:16156955,7119177:501378,78643,0 +(186,233:16320809,7119177:173670,78643,0 ) ) -(186,227:20669357,37203025:501378,78643,0 -(186,227:20833211,37203025:173670,78643,0 +(186,233:16658333,7119177:501378,78643,0 +(186,233:16822187,7119177:173670,78643,0 ) ) -(186,227:21170735,37203025:501378,78643,0 -(186,227:21334589,37203025:173670,78643,0 +(186,233:17159711,7119177:501378,78643,0 +(186,233:17323565,7119177:173670,78643,0 ) ) -(186,227:21672113,37203025:501378,78643,0 -(186,227:21835967,37203025:173670,78643,0 +(186,233:17661089,7119177:501378,78643,0 +(186,233:17824943,7119177:173670,78643,0 ) ) -(186,227:22173491,37203025:501378,78643,0 -(186,227:22337345,37203025:173670,78643,0 +(186,233:18162467,7119177:501378,78643,0 +(186,233:18326321,7119177:173670,78643,0 ) ) -(186,227:22674869,37203025:501378,78643,0 -(186,227:22838723,37203025:173670,78643,0 +(186,233:18663845,7119177:501378,78643,0 +(186,233:18827699,7119177:173670,78643,0 ) ) -(186,227:23176247,37203025:501378,78643,0 -(186,227:23340101,37203025:173670,78643,0 +(186,233:19165223,7119177:501378,78643,0 +(186,233:19329077,7119177:173670,78643,0 ) ) -(186,227:23677625,37203025:501378,78643,0 -(186,227:23841479,37203025:173670,78643,0 +(186,233:19666601,7119177:501378,78643,0 +(186,233:19830455,7119177:173670,78643,0 ) ) -(186,227:24179003,37203025:501378,78643,0 -(186,227:24342857,37203025:173670,78643,0 +(186,233:20167979,7119177:501378,78643,0 +(186,233:20331833,7119177:173670,78643,0 ) ) -(186,227:24680381,37203025:501378,78643,0 -(186,227:24844235,37203025:173670,78643,0 +(186,233:20669357,7119177:501378,78643,0 +(186,233:20833211,7119177:173670,78643,0 ) ) -(186,227:25181759,37203025:501378,78643,0 -(186,227:25345613,37203025:173670,78643,0 +(186,233:21170735,7119177:501378,78643,0 +(186,233:21334589,7119177:173670,78643,0 ) ) -(186,227:25683137,37203025:501378,78643,0 -(186,227:25846991,37203025:173670,78643,0 +(186,233:21672113,7119177:501378,78643,0 +(186,233:21835967,7119177:173670,78643,0 ) ) -(186,227:26184515,37203025:501378,78643,0 -(186,227:26348369,37203025:173670,78643,0 +(186,233:22173491,7119177:501378,78643,0 +(186,233:22337345,7119177:173670,78643,0 ) ) -(186,227:26685893,37203025:501378,78643,0 -(186,227:26849747,37203025:173670,78643,0 +(186,233:22674869,7119177:501378,78643,0 +(186,233:22838723,7119177:173670,78643,0 ) ) -(186,227:27187271,37203025:501378,78643,0 -(186,227:27351125,37203025:173670,78643,0 +(186,233:23176247,7119177:501378,78643,0 +(186,233:23340101,7119177:173670,78643,0 ) ) -(186,227:27688649,37203025:501378,78643,0 -(186,227:27852503,37203025:173670,78643,0 +(186,233:23677625,7119177:501378,78643,0 +(186,233:23841479,7119177:173670,78643,0 ) ) -(186,227:28190027,37203025:501378,78643,0 -(186,227:28353881,37203025:173670,78643,0 +(186,233:24179003,7119177:501378,78643,0 +(186,233:24342857,7119177:173670,78643,0 ) ) -(186,227:28691405,37203025:501378,78643,0 -(186,227:28855259,37203025:173670,78643,0 +(186,233:24680381,7119177:501378,78643,0 +(186,233:24844235,7119177:173670,78643,0 ) ) -(186,227:29192783,37203025:501378,78643,0 -(186,227:29356637,37203025:173670,78643,0 +(186,233:25181759,7119177:501378,78643,0 +(186,233:25345613,7119177:173670,78643,0 ) ) -(186,227:29694161,37203025:501378,78643,0 -(186,227:29858015,37203025:173670,78643,0 +(186,233:25683137,7119177:501378,78643,0 +(186,233:25846991,7119177:173670,78643,0 ) ) -(186,227:30195539,37203025:501378,78643,0 -(186,227:30359393,37203025:173670,78643,0 +(186,233:26184515,7119177:501378,78643,0 +(186,233:26348369,7119177:173670,78643,0 ) ) -(186,227:30696917,37203025:501378,78643,0 -(186,227:30860771,37203025:173670,78643,0 +(186,233:26685893,7119177:501378,78643,0 +(186,233:26849747,7119177:173670,78643,0 ) ) -(186,227:31239539,37203025:1343490,485622,11795 -k186,227:31239539,37203025:0 -k186,227:31387652,37203025:148113 +(186,233:27187271,7119177:501378,78643,0 +(186,233:27351125,7119177:173670,78643,0 ) -g186,227:30911859,37203025 -g186,227:32583029,37203025 ) -(186,228:6630773,38044513:25952256,513147,134348 -g186,228:9448823,38044513 -h186,228:9448823,38044513:983040,0,0 -h186,228:10431863,38044513:0,0,0 -g186,228:7613813,38044513 -(186,228:7613813,38044513:1835010,485622,11795 -k186,228:9448823,38044513:465963 +(186,233:27688649,7119177:501378,78643,0 +(186,233:27852503,7119177:173670,78643,0 ) -g186,228:12330441,38044513 -g186,228:13721115,38044513 -g186,228:16174127,38044513 -g186,228:17356396,38044513 -g186,228:21392103,38044513 -g186,228:21392103,38044513 -(186,228:21672113,38044513:501378,78643,0 -$186,228:21672113,38044513 -(186,228:21835967,38044513:173670,78643,0 ) -$186,228:22173491,38044513 +(186,233:28190027,7119177:501378,78643,0 +(186,233:28353881,7119177:173670,78643,0 ) -(186,228:22173491,38044513:501378,78643,0 -(186,228:22337345,38044513:173670,78643,0 ) +(186,233:28691405,7119177:501378,78643,0 +(186,233:28855259,7119177:173670,78643,0 ) -(186,228:22674869,38044513:501378,78643,0 -(186,228:22838723,38044513:173670,78643,0 ) +(186,233:29192783,7119177:501378,78643,0 +(186,233:29356637,7119177:173670,78643,0 ) -(186,228:23176247,38044513:501378,78643,0 -(186,228:23340101,38044513:173670,78643,0 ) +(186,233:29694161,7119177:501378,78643,0 +(186,233:29858015,7119177:173670,78643,0 ) -(186,228:23677625,38044513:501378,78643,0 -(186,228:23841479,38044513:173670,78643,0 ) +(186,233:30195539,7119177:501378,78643,0 +(186,233:30359393,7119177:173670,78643,0 ) -(186,228:24179003,38044513:501378,78643,0 -(186,228:24342857,38044513:173670,78643,0 ) +(186,233:30696917,7119177:501378,78643,0 +(186,233:30860771,7119177:173670,78643,0 ) -(186,228:24680381,38044513:501378,78643,0 -(186,228:24844235,38044513:173670,78643,0 ) +(186,233:31239539,7119177:1343490,485622,11795 +k186,233:31239539,7119177:0 +k186,233:31387652,7119177:148113 ) -(186,228:25181759,38044513:501378,78643,0 -(186,228:25345613,38044513:173670,78643,0 +g186,233:30911859,7119177 +g186,233:32583029,7119177 ) +(186,234:6630773,7984257:25952256,513147,11795 +g186,234:9710963,7984257 +h186,234:9710963,7984257:983040,0,0 +h186,234:10694003,7984257:0,0,0 +g186,234:7613813,7984257 +(186,234:7613813,7984257:2097150,485622,11795 +k186,234:9710963,7984257:728103 ) -(186,228:25683137,38044513:501378,78643,0 -(186,228:25846991,38044513:173670,78643,0 +g186,234:11196008,7984257 +g186,234:12708579,7984257 +g186,234:12708579,7984257 +(186,234:13148687,7984257:501378,78643,0 +$186,234:13148687,7984257 +(186,234:13312541,7984257:173670,78643,0 ) +$186,234:13650065,7984257 ) -(186,228:26184515,38044513:501378,78643,0 -(186,228:26348369,38044513:173670,78643,0 +(186,234:13650065,7984257:501378,78643,0 +(186,234:13813919,7984257:173670,78643,0 ) ) -(186,228:26685893,38044513:501378,78643,0 -(186,228:26849747,38044513:173670,78643,0 +(186,234:14151443,7984257:501378,78643,0 +(186,234:14315297,7984257:173670,78643,0 ) ) -(186,228:27187271,38044513:501378,78643,0 -(186,228:27351125,38044513:173670,78643,0 +(186,234:14652821,7984257:501378,78643,0 +(186,234:14816675,7984257:173670,78643,0 ) ) -(186,228:27688649,38044513:501378,78643,0 -(186,228:27852503,38044513:173670,78643,0 +(186,234:15154199,7984257:501378,78643,0 +(186,234:15318053,7984257:173670,78643,0 ) ) -(186,228:28190027,38044513:501378,78643,0 -(186,228:28353881,38044513:173670,78643,0 +(186,234:15655577,7984257:501378,78643,0 +(186,234:15819431,7984257:173670,78643,0 ) ) -(186,228:28691405,38044513:501378,78643,0 -(186,228:28855259,38044513:173670,78643,0 +(186,234:16156955,7984257:501378,78643,0 +(186,234:16320809,7984257:173670,78643,0 ) ) -(186,228:29192783,38044513:501378,78643,0 -(186,228:29356637,38044513:173670,78643,0 +(186,234:16658333,7984257:501378,78643,0 +(186,234:16822187,7984257:173670,78643,0 ) ) -(186,228:29694161,38044513:501378,78643,0 -(186,228:29858015,38044513:173670,78643,0 +(186,234:17159711,7984257:501378,78643,0 +(186,234:17323565,7984257:173670,78643,0 ) ) -(186,228:30195539,38044513:501378,78643,0 -(186,228:30359393,38044513:173670,78643,0 +(186,234:17661089,7984257:501378,78643,0 +(186,234:17824943,7984257:173670,78643,0 ) ) -(186,228:30696917,38044513:501378,78643,0 -(186,228:30860771,38044513:173670,78643,0 +(186,234:18162467,7984257:501378,78643,0 +(186,234:18326321,7984257:173670,78643,0 ) ) -(186,228:31239539,38044513:1343490,485622,11795 -k186,228:31239539,38044513:0 -k186,228:31387652,38044513:148113 +(186,234:18663845,7984257:501378,78643,0 +(186,234:18827699,7984257:173670,78643,0 ) -g186,228:30911859,38044513 -g186,228:32583029,38044513 ) -(186,229:6630773,38886001:25952256,513147,11795 -g186,229:9448823,38886001 -h186,229:9448823,38886001:983040,0,0 -h186,229:10431863,38886001:0,0,0 -g186,229:7613813,38886001 -(186,229:7613813,38886001:1835010,485622,11795 -k186,229:9448823,38886001:465963 +(186,234:19165223,7984257:501378,78643,0 +(186,234:19329077,7984257:173670,78643,0 ) -g186,229:12639771,38886001 -g186,229:14152342,38886001 -g186,229:14152342,38886001 -(186,229:14652821,38886001:501378,78643,0 -$186,229:14652821,38886001 -(186,229:14816675,38886001:173670,78643,0 ) -$186,229:15154199,38886001 +(186,234:19666601,7984257:501378,78643,0 +(186,234:19830455,7984257:173670,78643,0 ) -(186,229:15154199,38886001:501378,78643,0 -(186,229:15318053,38886001:173670,78643,0 ) +(186,234:20167979,7984257:501378,78643,0 +(186,234:20331833,7984257:173670,78643,0 ) -(186,229:15655577,38886001:501378,78643,0 -(186,229:15819431,38886001:173670,78643,0 ) +(186,234:20669357,7984257:501378,78643,0 +(186,234:20833211,7984257:173670,78643,0 ) -(186,229:16156955,38886001:501378,78643,0 -(186,229:16320809,38886001:173670,78643,0 ) +(186,234:21170735,7984257:501378,78643,0 +(186,234:21334589,7984257:173670,78643,0 ) -(186,229:16658333,38886001:501378,78643,0 -(186,229:16822187,38886001:173670,78643,0 ) +(186,234:21672113,7984257:501378,78643,0 +(186,234:21835967,7984257:173670,78643,0 ) -(186,229:17159711,38886001:501378,78643,0 -(186,229:17323565,38886001:173670,78643,0 ) +(186,234:22173491,7984257:501378,78643,0 +(186,234:22337345,7984257:173670,78643,0 ) -(186,229:17661089,38886001:501378,78643,0 -(186,229:17824943,38886001:173670,78643,0 ) +(186,234:22674869,7984257:501378,78643,0 +(186,234:22838723,7984257:173670,78643,0 ) -(186,229:18162467,38886001:501378,78643,0 -(186,229:18326321,38886001:173670,78643,0 ) +(186,234:23176247,7984257:501378,78643,0 +(186,234:23340101,7984257:173670,78643,0 ) -(186,229:18663845,38886001:501378,78643,0 -(186,229:18827699,38886001:173670,78643,0 ) +(186,234:23677625,7984257:501378,78643,0 +(186,234:23841479,7984257:173670,78643,0 ) -(186,229:19165223,38886001:501378,78643,0 -(186,229:19329077,38886001:173670,78643,0 ) +(186,234:24179003,7984257:501378,78643,0 +(186,234:24342857,7984257:173670,78643,0 ) -(186,229:19666601,38886001:501378,78643,0 -(186,229:19830455,38886001:173670,78643,0 ) +(186,234:24680381,7984257:501378,78643,0 +(186,234:24844235,7984257:173670,78643,0 ) -(186,229:20167979,38886001:501378,78643,0 -(186,229:20331833,38886001:173670,78643,0 ) +(186,234:25181759,7984257:501378,78643,0 +(186,234:25345613,7984257:173670,78643,0 ) -(186,229:20669357,38886001:501378,78643,0 -(186,229:20833211,38886001:173670,78643,0 ) +(186,234:25683137,7984257:501378,78643,0 +(186,234:25846991,7984257:173670,78643,0 ) -(186,229:21170735,38886001:501378,78643,0 -(186,229:21334589,38886001:173670,78643,0 ) +(186,234:26184515,7984257:501378,78643,0 +(186,234:26348369,7984257:173670,78643,0 ) -(186,229:21672113,38886001:501378,78643,0 -(186,229:21835967,38886001:173670,78643,0 ) +(186,234:26685893,7984257:501378,78643,0 +(186,234:26849747,7984257:173670,78643,0 ) -(186,229:22173491,38886001:501378,78643,0 -(186,229:22337345,38886001:173670,78643,0 ) +(186,234:27187271,7984257:501378,78643,0 +(186,234:27351125,7984257:173670,78643,0 ) -(186,229:22674869,38886001:501378,78643,0 -(186,229:22838723,38886001:173670,78643,0 ) +(186,234:27688649,7984257:501378,78643,0 +(186,234:27852503,7984257:173670,78643,0 ) -(186,229:23176247,38886001:501378,78643,0 -(186,229:23340101,38886001:173670,78643,0 ) +(186,234:28190027,7984257:501378,78643,0 +(186,234:28353881,7984257:173670,78643,0 ) -(186,229:23677625,38886001:501378,78643,0 -(186,229:23841479,38886001:173670,78643,0 ) +(186,234:28691405,7984257:501378,78643,0 +(186,234:28855259,7984257:173670,78643,0 ) -(186,229:24179003,38886001:501378,78643,0 -(186,229:24342857,38886001:173670,78643,0 ) +(186,234:29192783,7984257:501378,78643,0 +(186,234:29356637,7984257:173670,78643,0 ) -(186,229:24680381,38886001:501378,78643,0 -(186,229:24844235,38886001:173670,78643,0 ) +(186,234:29694161,7984257:501378,78643,0 +(186,234:29858015,7984257:173670,78643,0 ) -(186,229:25181759,38886001:501378,78643,0 -(186,229:25345613,38886001:173670,78643,0 ) +(186,234:30195539,7984257:501378,78643,0 +(186,234:30359393,7984257:173670,78643,0 ) -(186,229:25683137,38886001:501378,78643,0 -(186,229:25846991,38886001:173670,78643,0 ) +(186,234:30696917,7984257:501378,78643,0 +(186,234:30860771,7984257:173670,78643,0 ) -(186,229:26184515,38886001:501378,78643,0 -(186,229:26348369,38886001:173670,78643,0 ) +(186,234:31239539,7984257:1343490,485622,11795 +k186,234:31239539,7984257:0 +k186,234:31387652,7984257:148113 ) -(186,229:26685893,38886001:501378,78643,0 -(186,229:26849747,38886001:173670,78643,0 +g186,234:30911859,7984257 +g186,234:32583029,7984257 ) +(186,235:6630773,8849337:25952256,505283,11795 +g186,235:9710963,8849337 +h186,235:9710963,8849337:983040,0,0 +h186,235:10694003,8849337:0,0,0 +g186,235:7613813,8849337 +(186,235:7613813,8849337:2097150,485622,11795 +k186,235:9710963,8849337:728103 ) -(186,229:27187271,38886001:501378,78643,0 -(186,229:27351125,38886001:173670,78643,0 +g186,235:13618874,8849337 +g186,235:13618874,8849337 +(186,235:13650065,8849337:501378,78643,0 +$186,235:13650065,8849337 +(186,235:13813919,8849337:173670,78643,0 ) +$186,235:14151443,8849337 ) -(186,229:27688649,38886001:501378,78643,0 -(186,229:27852503,38886001:173670,78643,0 +(186,235:14151443,8849337:501378,78643,0 +(186,235:14315297,8849337:173670,78643,0 ) ) -(186,229:28190027,38886001:501378,78643,0 -(186,229:28353881,38886001:173670,78643,0 +(186,235:14652821,8849337:501378,78643,0 +(186,235:14816675,8849337:173670,78643,0 ) ) -(186,229:28691405,38886001:501378,78643,0 -(186,229:28855259,38886001:173670,78643,0 +(186,235:15154199,8849337:501378,78643,0 +(186,235:15318053,8849337:173670,78643,0 ) ) -(186,229:29192783,38886001:501378,78643,0 -(186,229:29356637,38886001:173670,78643,0 +(186,235:15655577,8849337:501378,78643,0 +(186,235:15819431,8849337:173670,78643,0 ) ) -(186,229:29694161,38886001:501378,78643,0 -(186,229:29858015,38886001:173670,78643,0 +(186,235:16156955,8849337:501378,78643,0 +(186,235:16320809,8849337:173670,78643,0 ) ) -(186,229:30195539,38886001:501378,78643,0 -(186,229:30359393,38886001:173670,78643,0 +(186,235:16658333,8849337:501378,78643,0 +(186,235:16822187,8849337:173670,78643,0 ) ) -(186,229:30696917,38886001:501378,78643,0 -(186,229:30860771,38886001:173670,78643,0 +(186,235:17159711,8849337:501378,78643,0 +(186,235:17323565,8849337:173670,78643,0 ) ) -(186,229:31239538,38886001:1343490,485622,11795 -k186,229:31239538,38886001:0 -k186,229:31387651,38886001:148113 +(186,235:17661089,8849337:501378,78643,0 +(186,235:17824943,8849337:173670,78643,0 ) -g186,229:30911858,38886001 -g186,229:32583028,38886001 ) -(186,230:6630773,39727489:25952256,505283,11795 -g186,230:11873653,39727489 -h186,230:11873653,39727489:2818050,0,0 -h186,230:14691703,39727489:0,0,0 -g186,230:9448823,39727489 -(186,230:9448823,39727489:2424830,485622,11795 -k186,230:11873653,39727489:483654 +(186,235:18162467,8849337:501378,78643,0 +(186,235:18326321,8849337:173670,78643,0 ) -g186,230:13505499,39727489 -g186,230:14149717,39727489 -g186,230:15540391,39727489 -g186,230:17296101,39727489 -(186,230:17661089,39727489:501378,78643,0 -$186,230:17661089,39727489 -(186,230:17824943,39727489:173670,78643,0 ) -$186,230:18162467,39727489 +(186,235:18663845,8849337:501378,78643,0 +(186,235:18827699,8849337:173670,78643,0 ) -(186,230:18162467,39727489:501378,78643,0 -(186,230:18326321,39727489:173670,78643,0 ) +(186,235:19165223,8849337:501378,78643,0 +(186,235:19329077,8849337:173670,78643,0 ) -(186,230:18663845,39727489:501378,78643,0 -(186,230:18827699,39727489:173670,78643,0 ) +(186,235:19666601,8849337:501378,78643,0 +(186,235:19830455,8849337:173670,78643,0 ) -(186,230:19165223,39727489:501378,78643,0 -(186,230:19329077,39727489:173670,78643,0 ) +(186,235:20167979,8849337:501378,78643,0 +(186,235:20331833,8849337:173670,78643,0 ) -(186,230:19666601,39727489:501378,78643,0 -(186,230:19830455,39727489:173670,78643,0 ) +(186,235:20669357,8849337:501378,78643,0 +(186,235:20833211,8849337:173670,78643,0 ) -(186,230:20167979,39727489:501378,78643,0 -(186,230:20331833,39727489:173670,78643,0 ) +(186,235:21170735,8849337:501378,78643,0 +(186,235:21334589,8849337:173670,78643,0 ) -(186,230:20669357,39727489:501378,78643,0 -(186,230:20833211,39727489:173670,78643,0 ) +(186,235:21672113,8849337:501378,78643,0 +(186,235:21835967,8849337:173670,78643,0 ) -(186,230:21170735,39727489:501378,78643,0 -(186,230:21334589,39727489:173670,78643,0 ) +(186,235:22173491,8849337:501378,78643,0 +(186,235:22337345,8849337:173670,78643,0 ) -(186,230:21672113,39727489:501378,78643,0 -(186,230:21835967,39727489:173670,78643,0 ) +(186,235:22674869,8849337:501378,78643,0 +(186,235:22838723,8849337:173670,78643,0 ) -(186,230:22173491,39727489:501378,78643,0 -(186,230:22337345,39727489:173670,78643,0 ) +(186,235:23176247,8849337:501378,78643,0 +(186,235:23340101,8849337:173670,78643,0 ) -(186,230:22674869,39727489:501378,78643,0 -(186,230:22838723,39727489:173670,78643,0 ) +(186,235:23677625,8849337:501378,78643,0 +(186,235:23841479,8849337:173670,78643,0 ) -(186,230:23176247,39727489:501378,78643,0 -(186,230:23340101,39727489:173670,78643,0 ) +(186,235:24179003,8849337:501378,78643,0 +(186,235:24342857,8849337:173670,78643,0 ) -(186,230:23677625,39727489:501378,78643,0 -(186,230:23841479,39727489:173670,78643,0 ) +(186,235:24680381,8849337:501378,78643,0 +(186,235:24844235,8849337:173670,78643,0 ) -(186,230:24179003,39727489:501378,78643,0 -(186,230:24342857,39727489:173670,78643,0 ) +(186,235:25181759,8849337:501378,78643,0 +(186,235:25345613,8849337:173670,78643,0 ) -(186,230:24680381,39727489:501378,78643,0 -(186,230:24844235,39727489:173670,78643,0 ) +(186,235:25683137,8849337:501378,78643,0 +(186,235:25846991,8849337:173670,78643,0 ) -(186,230:25181759,39727489:501378,78643,0 -(186,230:25345613,39727489:173670,78643,0 ) +(186,235:26184515,8849337:501378,78643,0 +(186,235:26348369,8849337:173670,78643,0 ) -(186,230:25683137,39727489:501378,78643,0 -(186,230:25846991,39727489:173670,78643,0 ) +(186,235:26685893,8849337:501378,78643,0 +(186,235:26849747,8849337:173670,78643,0 ) -(186,230:26184515,39727489:501378,78643,0 -(186,230:26348369,39727489:173670,78643,0 ) +(186,235:27187271,8849337:501378,78643,0 +(186,235:27351125,8849337:173670,78643,0 ) -(186,230:26685893,39727489:501378,78643,0 -(186,230:26849747,39727489:173670,78643,0 ) +(186,235:27688649,8849337:501378,78643,0 +(186,235:27852503,8849337:173670,78643,0 ) -(186,230:27187271,39727489:501378,78643,0 -(186,230:27351125,39727489:173670,78643,0 ) +(186,235:28190027,8849337:501378,78643,0 +(186,235:28353881,8849337:173670,78643,0 ) -(186,230:27688649,39727489:501378,78643,0 -(186,230:27852503,39727489:173670,78643,0 ) +(186,235:28691405,8849337:501378,78643,0 +(186,235:28855259,8849337:173670,78643,0 ) -(186,230:28190027,39727489:501378,78643,0 -(186,230:28353881,39727489:173670,78643,0 ) +(186,235:29192783,8849337:501378,78643,0 +(186,235:29356637,8849337:173670,78643,0 ) -(186,230:28691405,39727489:501378,78643,0 -(186,230:28855259,39727489:173670,78643,0 ) +(186,235:29694161,8849337:501378,78643,0 +(186,235:29858015,8849337:173670,78643,0 ) -(186,230:29192783,39727489:501378,78643,0 -(186,230:29356637,39727489:173670,78643,0 ) +(186,235:30195539,8849337:501378,78643,0 +(186,235:30359393,8849337:173670,78643,0 ) -(186,230:29694161,39727489:501378,78643,0 -(186,230:29858015,39727489:173670,78643,0 ) +(186,235:30696917,8849337:501378,78643,0 +(186,235:30860771,8849337:173670,78643,0 ) -(186,230:30195539,39727489:501378,78643,0 -(186,230:30359393,39727489:173670,78643,0 ) +(186,235:31239538,8849337:1343490,485622,11795 +k186,235:31239538,8849337:0 +k186,235:31387651,8849337:148113 ) -(186,230:30696917,39727489:501378,78643,0 -(186,230:30860771,39727489:173670,78643,0 +g186,235:30911858,8849337 +g186,235:32583028,8849337 ) +(186,236:6630773,9714417:25952256,513147,11795 +g186,236:12529013,9714417 +h186,236:12529013,9714417:3080190,0,0 +h186,236:15609203,9714417:0,0,0 +g186,236:9710963,9714417 +(186,236:9710963,9714417:2818050,485622,11795 +k186,236:12529013,9714417:876874 ) -(186,230:31239539,39727489:1343490,485622,11795 -k186,230:31239539,39727489:0 -k186,230:31387652,39727489:148113 +g186,236:13997019,9714417 +g186,236:15509590,9714417 +g186,236:16394981,9714417 +g186,236:19992252,9714417 +(186,236:20167979,9714417:501378,78643,0 +$186,236:20167979,9714417 +(186,236:20331833,9714417:173670,78643,0 ) -g186,230:30911859,39727489 -g186,230:32583029,39727489 +$186,236:20669357,9714417 ) -(186,231:6630773,40568977:25952256,505283,11795 -g186,231:11873653,40568977 -h186,231:11873653,40568977:2818050,0,0 -h186,231:14691703,40568977:0,0,0 -g186,231:9448823,40568977 -(186,231:9448823,40568977:2424830,485622,11795 -k186,231:11873653,40568977:483654 +(186,236:20669357,9714417:501378,78643,0 +(186,236:20833211,9714417:173670,78643,0 ) -g186,231:13574312,40568977 -(186,231:13650065,40568977:501378,78643,0 -$186,231:13650065,40568977 -(186,231:13813919,40568977:173670,78643,0 ) -$186,231:14151443,40568977 +(186,236:21170735,9714417:501378,78643,0 +(186,236:21334589,9714417:173670,78643,0 ) -(186,231:14151443,40568977:501378,78643,0 -(186,231:14315297,40568977:173670,78643,0 ) +(186,236:21672113,9714417:501378,78643,0 +(186,236:21835967,9714417:173670,78643,0 ) -(186,231:14652821,40568977:501378,78643,0 -(186,231:14816675,40568977:173670,78643,0 ) +(186,236:22173491,9714417:501378,78643,0 +(186,236:22337345,9714417:173670,78643,0 ) -(186,231:15154199,40568977:501378,78643,0 -(186,231:15318053,40568977:173670,78643,0 ) +(186,236:22674869,9714417:501378,78643,0 +(186,236:22838723,9714417:173670,78643,0 ) -(186,231:15655577,40568977:501378,78643,0 -(186,231:15819431,40568977:173670,78643,0 ) +(186,236:23176247,9714417:501378,78643,0 +(186,236:23340101,9714417:173670,78643,0 ) -(186,231:16156955,40568977:501378,78643,0 -(186,231:16320809,40568977:173670,78643,0 ) +(186,236:23677625,9714417:501378,78643,0 +(186,236:23841479,9714417:173670,78643,0 ) -(186,231:16658333,40568977:501378,78643,0 -(186,231:16822187,40568977:173670,78643,0 ) +(186,236:24179003,9714417:501378,78643,0 +(186,236:24342857,9714417:173670,78643,0 ) -(186,231:17159711,40568977:501378,78643,0 -(186,231:17323565,40568977:173670,78643,0 ) +(186,236:24680381,9714417:501378,78643,0 +(186,236:24844235,9714417:173670,78643,0 ) -(186,231:17661089,40568977:501378,78643,0 -(186,231:17824943,40568977:173670,78643,0 ) +(186,236:25181759,9714417:501378,78643,0 +(186,236:25345613,9714417:173670,78643,0 ) -(186,231:18162467,40568977:501378,78643,0 -(186,231:18326321,40568977:173670,78643,0 ) +(186,236:25683137,9714417:501378,78643,0 +(186,236:25846991,9714417:173670,78643,0 ) -(186,231:18663845,40568977:501378,78643,0 -(186,231:18827699,40568977:173670,78643,0 ) +(186,236:26184515,9714417:501378,78643,0 +(186,236:26348369,9714417:173670,78643,0 ) -(186,231:19165223,40568977:501378,78643,0 -(186,231:19329077,40568977:173670,78643,0 ) +(186,236:26685893,9714417:501378,78643,0 +(186,236:26849747,9714417:173670,78643,0 ) -(186,231:19666601,40568977:501378,78643,0 -(186,231:19830455,40568977:173670,78643,0 ) +(186,236:27187271,9714417:501378,78643,0 +(186,236:27351125,9714417:173670,78643,0 ) -(186,231:20167979,40568977:501378,78643,0 -(186,231:20331833,40568977:173670,78643,0 ) +(186,236:27688649,9714417:501378,78643,0 +(186,236:27852503,9714417:173670,78643,0 ) -(186,231:20669357,40568977:501378,78643,0 -(186,231:20833211,40568977:173670,78643,0 ) +(186,236:28190027,9714417:501378,78643,0 +(186,236:28353881,9714417:173670,78643,0 ) -(186,231:21170735,40568977:501378,78643,0 -(186,231:21334589,40568977:173670,78643,0 ) +(186,236:28691405,9714417:501378,78643,0 +(186,236:28855259,9714417:173670,78643,0 ) -(186,231:21672113,40568977:501378,78643,0 -(186,231:21835967,40568977:173670,78643,0 ) +(186,236:29192783,9714417:501378,78643,0 +(186,236:29356637,9714417:173670,78643,0 ) -(186,231:22173491,40568977:501378,78643,0 -(186,231:22337345,40568977:173670,78643,0 ) +(186,236:29694161,9714417:501378,78643,0 +(186,236:29858015,9714417:173670,78643,0 ) -(186,231:22674869,40568977:501378,78643,0 -(186,231:22838723,40568977:173670,78643,0 ) +(186,236:30195539,9714417:501378,78643,0 +(186,236:30359393,9714417:173670,78643,0 ) -(186,231:23176247,40568977:501378,78643,0 -(186,231:23340101,40568977:173670,78643,0 ) +(186,236:30696917,9714417:501378,78643,0 +(186,236:30860771,9714417:173670,78643,0 ) -(186,231:23677625,40568977:501378,78643,0 -(186,231:23841479,40568977:173670,78643,0 ) +(186,236:31239539,9714417:1343490,485622,11795 +k186,236:31239539,9714417:0 +k186,236:31387652,9714417:148113 ) -(186,231:24179003,40568977:501378,78643,0 -(186,231:24342857,40568977:173670,78643,0 +g186,236:30911859,9714417 +g186,236:32583029,9714417 ) +(186,237:6630773,10579497:25952256,505283,11795 +g186,237:12529013,10579497 +h186,237:12529013,10579497:3080190,0,0 +h186,237:15609203,10579497:0,0,0 +g186,237:9710963,10579497 +(186,237:9710963,10579497:2818050,485622,11795 +k186,237:12529013,10579497:876874 ) -(186,231:24680381,40568977:501378,78643,0 -(186,231:24844235,40568977:173670,78643,0 +g186,237:14858818,10579497 +(186,237:15154199,10579497:501378,78643,0 +$186,237:15154199,10579497 +(186,237:15318053,10579497:173670,78643,0 ) +$186,237:15655577,10579497 ) -(186,231:25181759,40568977:501378,78643,0 -(186,231:25345613,40568977:173670,78643,0 +(186,237:15655577,10579497:501378,78643,0 +(186,237:15819431,10579497:173670,78643,0 ) ) -(186,231:25683137,40568977:501378,78643,0 -(186,231:25846991,40568977:173670,78643,0 +(186,237:16156955,10579497:501378,78643,0 +(186,237:16320809,10579497:173670,78643,0 ) ) -(186,231:26184515,40568977:501378,78643,0 -(186,231:26348369,40568977:173670,78643,0 +(186,237:16658333,10579497:501378,78643,0 +(186,237:16822187,10579497:173670,78643,0 ) ) -(186,231:26685893,40568977:501378,78643,0 -(186,231:26849747,40568977:173670,78643,0 +(186,237:17159711,10579497:501378,78643,0 +(186,237:17323565,10579497:173670,78643,0 ) ) -(186,231:27187271,40568977:501378,78643,0 -(186,231:27351125,40568977:173670,78643,0 +(186,237:17661089,10579497:501378,78643,0 +(186,237:17824943,10579497:173670,78643,0 ) ) -(186,231:27688649,40568977:501378,78643,0 -(186,231:27852503,40568977:173670,78643,0 +(186,237:18162467,10579497:501378,78643,0 +(186,237:18326321,10579497:173670,78643,0 ) ) -(186,231:28190027,40568977:501378,78643,0 -(186,231:28353881,40568977:173670,78643,0 +(186,237:18663845,10579497:501378,78643,0 +(186,237:18827699,10579497:173670,78643,0 ) ) -(186,231:28691405,40568977:501378,78643,0 -(186,231:28855259,40568977:173670,78643,0 +(186,237:19165223,10579497:501378,78643,0 +(186,237:19329077,10579497:173670,78643,0 ) ) -(186,231:29192783,40568977:501378,78643,0 -(186,231:29356637,40568977:173670,78643,0 +(186,237:19666601,10579497:501378,78643,0 +(186,237:19830455,10579497:173670,78643,0 ) ) -(186,231:29694161,40568977:501378,78643,0 -(186,231:29858015,40568977:173670,78643,0 +(186,237:20167979,10579497:501378,78643,0 +(186,237:20331833,10579497:173670,78643,0 ) ) -(186,231:30195539,40568977:501378,78643,0 -(186,231:30359393,40568977:173670,78643,0 +(186,237:20669357,10579497:501378,78643,0 +(186,237:20833211,10579497:173670,78643,0 ) ) -(186,231:30696917,40568977:501378,78643,0 -(186,231:30860771,40568977:173670,78643,0 +(186,237:21170735,10579497:501378,78643,0 +(186,237:21334589,10579497:173670,78643,0 ) ) -(186,231:31239540,40568977:1343490,485622,11795 -k186,231:31239540,40568977:0 -k186,231:31387653,40568977:148113 +(186,237:21672113,10579497:501378,78643,0 +(186,237:21835967,10579497:173670,78643,0 ) -g186,231:30911860,40568977 -g186,231:32583030,40568977 ) -(186,232:6630773,41410465:25952256,513147,11795 -g186,232:9448823,41410465 -h186,232:9448823,41410465:983040,0,0 -h186,232:10431863,41410465:0,0,0 -g186,232:7613813,41410465 -(186,232:7613813,41410465:1835010,485622,11795 -k186,232:9448823,41410465:465963 +(186,237:22173491,10579497:501378,78643,0 +(186,237:22337345,10579497:173670,78643,0 ) -g186,232:11007269,41410465 -g186,232:12397943,41410465 -g186,232:14465603,41410465 -g186,232:15978174,41410465 -g186,232:15978174,41410465 -(186,232:16156955,41410465:501378,78643,0 -$186,232:16156955,41410465 -(186,232:16320809,41410465:173670,78643,0 ) -$186,232:16658333,41410465 +(186,237:22674869,10579497:501378,78643,0 +(186,237:22838723,10579497:173670,78643,0 ) -(186,232:16658333,41410465:501378,78643,0 -(186,232:16822187,41410465:173670,78643,0 ) +(186,237:23176247,10579497:501378,78643,0 +(186,237:23340101,10579497:173670,78643,0 ) -(186,232:17159711,41410465:501378,78643,0 -(186,232:17323565,41410465:173670,78643,0 ) +(186,237:23677625,10579497:501378,78643,0 +(186,237:23841479,10579497:173670,78643,0 ) -(186,232:17661089,41410465:501378,78643,0 -(186,232:17824943,41410465:173670,78643,0 ) +(186,237:24179003,10579497:501378,78643,0 +(186,237:24342857,10579497:173670,78643,0 ) -(186,232:18162467,41410465:501378,78643,0 -(186,232:18326321,41410465:173670,78643,0 ) +(186,237:24680381,10579497:501378,78643,0 +(186,237:24844235,10579497:173670,78643,0 ) -(186,232:18663845,41410465:501378,78643,0 -(186,232:18827699,41410465:173670,78643,0 ) +(186,237:25181759,10579497:501378,78643,0 +(186,237:25345613,10579497:173670,78643,0 ) -(186,232:19165223,41410465:501378,78643,0 -(186,232:19329077,41410465:173670,78643,0 ) +(186,237:25683137,10579497:501378,78643,0 +(186,237:25846991,10579497:173670,78643,0 ) -(186,232:19666601,41410465:501378,78643,0 -(186,232:19830455,41410465:173670,78643,0 ) +(186,237:26184515,10579497:501378,78643,0 +(186,237:26348369,10579497:173670,78643,0 ) -(186,232:20167979,41410465:501378,78643,0 -(186,232:20331833,41410465:173670,78643,0 ) +(186,237:26685893,10579497:501378,78643,0 +(186,237:26849747,10579497:173670,78643,0 ) -(186,232:20669357,41410465:501378,78643,0 -(186,232:20833211,41410465:173670,78643,0 ) +(186,237:27187271,10579497:501378,78643,0 +(186,237:27351125,10579497:173670,78643,0 ) -(186,232:21170735,41410465:501378,78643,0 -(186,232:21334589,41410465:173670,78643,0 ) +(186,237:27688649,10579497:501378,78643,0 +(186,237:27852503,10579497:173670,78643,0 ) -(186,232:21672113,41410465:501378,78643,0 -(186,232:21835967,41410465:173670,78643,0 ) +(186,237:28190027,10579497:501378,78643,0 +(186,237:28353881,10579497:173670,78643,0 ) -(186,232:22173491,41410465:501378,78643,0 -(186,232:22337345,41410465:173670,78643,0 ) +(186,237:28691405,10579497:501378,78643,0 +(186,237:28855259,10579497:173670,78643,0 ) -(186,232:22674869,41410465:501378,78643,0 -(186,232:22838723,41410465:173670,78643,0 ) +(186,237:29192783,10579497:501378,78643,0 +(186,237:29356637,10579497:173670,78643,0 ) -(186,232:23176247,41410465:501378,78643,0 -(186,232:23340101,41410465:173670,78643,0 ) +(186,237:29694161,10579497:501378,78643,0 +(186,237:29858015,10579497:173670,78643,0 ) -(186,232:23677625,41410465:501378,78643,0 -(186,232:23841479,41410465:173670,78643,0 ) +(186,237:30195539,10579497:501378,78643,0 +(186,237:30359393,10579497:173670,78643,0 ) -(186,232:24179003,41410465:501378,78643,0 -(186,232:24342857,41410465:173670,78643,0 ) +(186,237:30696917,10579497:501378,78643,0 +(186,237:30860771,10579497:173670,78643,0 ) -(186,232:24680381,41410465:501378,78643,0 -(186,232:24844235,41410465:173670,78643,0 ) +(186,237:31239539,10579497:1343490,485622,11795 +k186,237:31239539,10579497:0 +k186,237:31387652,10579497:148113 ) -(186,232:25181759,41410465:501378,78643,0 -(186,232:25345613,41410465:173670,78643,0 +g186,237:30911859,10579497 +g186,237:32583029,10579497 ) +(186,238:6630773,11444577:25952256,505283,11795 +g186,238:12529013,11444577 +h186,238:12529013,11444577:3080190,0,0 +h186,238:15609203,11444577:0,0,0 +g186,238:9710963,11444577 +(186,238:9710963,11444577:2818050,485622,11795 +k186,238:12529013,11444577:876874 ) -(186,232:25683137,41410465:501378,78643,0 -(186,232:25846991,41410465:173670,78643,0 +g186,238:14141854,11444577 +(186,238:14151443,11444577:501378,78643,0 +$186,238:14151443,11444577 +(186,238:14315297,11444577:173670,78643,0 ) +$186,238:14652821,11444577 ) -(186,232:26184515,41410465:501378,78643,0 -(186,232:26348369,41410465:173670,78643,0 +(186,238:14652821,11444577:501378,78643,0 +(186,238:14816675,11444577:173670,78643,0 ) ) -(186,232:26685893,41410465:501378,78643,0 -(186,232:26849747,41410465:173670,78643,0 +(186,238:15154199,11444577:501378,78643,0 +(186,238:15318053,11444577:173670,78643,0 ) ) -(186,232:27187271,41410465:501378,78643,0 -(186,232:27351125,41410465:173670,78643,0 +(186,238:15655577,11444577:501378,78643,0 +(186,238:15819431,11444577:173670,78643,0 ) ) -(186,232:27688649,41410465:501378,78643,0 -(186,232:27852503,41410465:173670,78643,0 +(186,238:16156955,11444577:501378,78643,0 +(186,238:16320809,11444577:173670,78643,0 ) ) -(186,232:28190027,41410465:501378,78643,0 -(186,232:28353881,41410465:173670,78643,0 +(186,238:16658333,11444577:501378,78643,0 +(186,238:16822187,11444577:173670,78643,0 ) ) -(186,232:28691405,41410465:501378,78643,0 -(186,232:28855259,41410465:173670,78643,0 +(186,238:17159711,11444577:501378,78643,0 +(186,238:17323565,11444577:173670,78643,0 ) ) -(186,232:29192783,41410465:501378,78643,0 -(186,232:29356637,41410465:173670,78643,0 +(186,238:17661089,11444577:501378,78643,0 +(186,238:17824943,11444577:173670,78643,0 ) ) -(186,232:29694161,41410465:501378,78643,0 -(186,232:29858015,41410465:173670,78643,0 +(186,238:18162467,11444577:501378,78643,0 +(186,238:18326321,11444577:173670,78643,0 ) ) -(186,232:30195539,41410465:501378,78643,0 -(186,232:30359393,41410465:173670,78643,0 +(186,238:18663845,11444577:501378,78643,0 +(186,238:18827699,11444577:173670,78643,0 ) ) -(186,232:30696917,41410465:501378,78643,0 -(186,232:30860771,41410465:173670,78643,0 +(186,238:19165223,11444577:501378,78643,0 +(186,238:19329077,11444577:173670,78643,0 ) ) -(186,232:31239539,41410465:1343490,485622,11795 -k186,232:31239539,41410465:0 -k186,232:31387652,41410465:148113 +(186,238:19666601,11444577:501378,78643,0 +(186,238:19830455,11444577:173670,78643,0 ) -g186,232:30911859,41410465 -g186,232:32583029,41410465 ) -(186,233:6630773,42251953:25952256,505283,11795 -g186,233:11873653,42251953 -h186,233:11873653,42251953:2818050,0,0 -h186,233:14691703,42251953:0,0,0 -g186,233:9448823,42251953 -(186,233:9448823,42251953:2424830,485622,11795 -k186,233:11873653,42251953:483654 +(186,238:20167979,11444577:501378,78643,0 +(186,238:20331833,11444577:173670,78643,0 ) -g186,233:13809587,42251953 -(186,233:14151443,42251953:501378,78643,0 -$186,233:14151443,42251953 -(186,233:14315297,42251953:173670,78643,0 ) -$186,233:14652821,42251953 +(186,238:20669357,11444577:501378,78643,0 +(186,238:20833211,11444577:173670,78643,0 ) -(186,233:14652821,42251953:501378,78643,0 -(186,233:14816675,42251953:173670,78643,0 ) +(186,238:21170735,11444577:501378,78643,0 +(186,238:21334589,11444577:173670,78643,0 ) -(186,233:15154199,42251953:501378,78643,0 -(186,233:15318053,42251953:173670,78643,0 ) +(186,238:21672113,11444577:501378,78643,0 +(186,238:21835967,11444577:173670,78643,0 ) -(186,233:15655577,42251953:501378,78643,0 -(186,233:15819431,42251953:173670,78643,0 ) +(186,238:22173491,11444577:501378,78643,0 +(186,238:22337345,11444577:173670,78643,0 ) -(186,233:16156955,42251953:501378,78643,0 -(186,233:16320809,42251953:173670,78643,0 ) +(186,238:22674869,11444577:501378,78643,0 +(186,238:22838723,11444577:173670,78643,0 ) -(186,233:16658333,42251953:501378,78643,0 -(186,233:16822187,42251953:173670,78643,0 ) +(186,238:23176247,11444577:501378,78643,0 +(186,238:23340101,11444577:173670,78643,0 ) -(186,233:17159711,42251953:501378,78643,0 -(186,233:17323565,42251953:173670,78643,0 ) +(186,238:23677625,11444577:501378,78643,0 +(186,238:23841479,11444577:173670,78643,0 ) -(186,233:17661089,42251953:501378,78643,0 -(186,233:17824943,42251953:173670,78643,0 ) +(186,238:24179003,11444577:501378,78643,0 +(186,238:24342857,11444577:173670,78643,0 ) -(186,233:18162467,42251953:501378,78643,0 -(186,233:18326321,42251953:173670,78643,0 ) +(186,238:24680381,11444577:501378,78643,0 +(186,238:24844235,11444577:173670,78643,0 ) -(186,233:18663845,42251953:501378,78643,0 -(186,233:18827699,42251953:173670,78643,0 ) +(186,238:25181759,11444577:501378,78643,0 +(186,238:25345613,11444577:173670,78643,0 ) -(186,233:19165223,42251953:501378,78643,0 -(186,233:19329077,42251953:173670,78643,0 ) +(186,238:25683137,11444577:501378,78643,0 +(186,238:25846991,11444577:173670,78643,0 ) -(186,233:19666601,42251953:501378,78643,0 -(186,233:19830455,42251953:173670,78643,0 ) +(186,238:26184515,11444577:501378,78643,0 +(186,238:26348369,11444577:173670,78643,0 ) -(186,233:20167979,42251953:501378,78643,0 -(186,233:20331833,42251953:173670,78643,0 ) +(186,238:26685893,11444577:501378,78643,0 +(186,238:26849747,11444577:173670,78643,0 ) -(186,233:20669357,42251953:501378,78643,0 -(186,233:20833211,42251953:173670,78643,0 ) +(186,238:27187271,11444577:501378,78643,0 +(186,238:27351125,11444577:173670,78643,0 ) -(186,233:21170735,42251953:501378,78643,0 -(186,233:21334589,42251953:173670,78643,0 ) +(186,238:27688649,11444577:501378,78643,0 +(186,238:27852503,11444577:173670,78643,0 ) -(186,233:21672113,42251953:501378,78643,0 -(186,233:21835967,42251953:173670,78643,0 ) +(186,238:28190027,11444577:501378,78643,0 +(186,238:28353881,11444577:173670,78643,0 ) -(186,233:22173491,42251953:501378,78643,0 -(186,233:22337345,42251953:173670,78643,0 ) +(186,238:28691405,11444577:501378,78643,0 +(186,238:28855259,11444577:173670,78643,0 ) -(186,233:22674869,42251953:501378,78643,0 -(186,233:22838723,42251953:173670,78643,0 ) +(186,238:29192783,11444577:501378,78643,0 +(186,238:29356637,11444577:173670,78643,0 ) -(186,233:23176247,42251953:501378,78643,0 -(186,233:23340101,42251953:173670,78643,0 ) +(186,238:29694161,11444577:501378,78643,0 +(186,238:29858015,11444577:173670,78643,0 ) -(186,233:23677625,42251953:501378,78643,0 -(186,233:23841479,42251953:173670,78643,0 ) +(186,238:30195539,11444577:501378,78643,0 +(186,238:30359393,11444577:173670,78643,0 ) -(186,233:24179003,42251953:501378,78643,0 -(186,233:24342857,42251953:173670,78643,0 ) +(186,238:30696917,11444577:501378,78643,0 +(186,238:30860771,11444577:173670,78643,0 ) -(186,233:24680381,42251953:501378,78643,0 -(186,233:24844235,42251953:173670,78643,0 ) +(186,238:31239538,11444577:1343490,485622,11795 +k186,238:31239538,11444577:0 +k186,238:31387651,11444577:148113 ) -(186,233:25181759,42251953:501378,78643,0 -(186,233:25345613,42251953:173670,78643,0 +g186,238:30911858,11444577 +g186,238:32583028,11444577 ) +(186,239:6630773,12309657:25952256,505283,11795 +g186,239:12529013,12309657 +h186,239:12529013,12309657:3080190,0,0 +h186,239:15609203,12309657:0,0,0 +g186,239:9710963,12309657 +(186,239:9710963,12309657:2818050,485622,11795 +k186,239:12529013,12309657:876874 ) -(186,233:25683137,42251953:501378,78643,0 -(186,233:25846991,42251953:173670,78643,0 +g186,239:15656391,12309657 +(186,239:16156955,12309657:501378,78643,0 +$186,239:16156955,12309657 +(186,239:16320809,12309657:173670,78643,0 ) +$186,239:16658333,12309657 ) -(186,233:26184515,42251953:501378,78643,0 -(186,233:26348369,42251953:173670,78643,0 +(186,239:16658333,12309657:501378,78643,0 +(186,239:16822187,12309657:173670,78643,0 ) ) -(186,233:26685893,42251953:501378,78643,0 -(186,233:26849747,42251953:173670,78643,0 +(186,239:17159711,12309657:501378,78643,0 +(186,239:17323565,12309657:173670,78643,0 ) ) -(186,233:27187271,42251953:501378,78643,0 -(186,233:27351125,42251953:173670,78643,0 +(186,239:17661089,12309657:501378,78643,0 +(186,239:17824943,12309657:173670,78643,0 ) ) -(186,233:27688649,42251953:501378,78643,0 -(186,233:27852503,42251953:173670,78643,0 +(186,239:18162467,12309657:501378,78643,0 +(186,239:18326321,12309657:173670,78643,0 ) ) -(186,233:28190027,42251953:501378,78643,0 -(186,233:28353881,42251953:173670,78643,0 +(186,239:18663845,12309657:501378,78643,0 +(186,239:18827699,12309657:173670,78643,0 ) ) -(186,233:28691405,42251953:501378,78643,0 -(186,233:28855259,42251953:173670,78643,0 +(186,239:19165223,12309657:501378,78643,0 +(186,239:19329077,12309657:173670,78643,0 ) ) -(186,233:29192783,42251953:501378,78643,0 -(186,233:29356637,42251953:173670,78643,0 +(186,239:19666601,12309657:501378,78643,0 +(186,239:19830455,12309657:173670,78643,0 ) ) -(186,233:29694161,42251953:501378,78643,0 -(186,233:29858015,42251953:173670,78643,0 +(186,239:20167979,12309657:501378,78643,0 +(186,239:20331833,12309657:173670,78643,0 ) ) -(186,233:30195539,42251953:501378,78643,0 -(186,233:30359393,42251953:173670,78643,0 +(186,239:20669357,12309657:501378,78643,0 +(186,239:20833211,12309657:173670,78643,0 ) ) -(186,233:30696917,42251953:501378,78643,0 -(186,233:30860771,42251953:173670,78643,0 +(186,239:21170735,12309657:501378,78643,0 +(186,239:21334589,12309657:173670,78643,0 ) ) -(186,233:31239539,42251953:1343490,485622,11795 -k186,233:31239539,42251953:0 -k186,233:31387652,42251953:148113 +(186,239:21672113,12309657:501378,78643,0 +(186,239:21835967,12309657:173670,78643,0 ) -g186,233:30911859,42251953 -g186,233:32583029,42251953 ) -(186,234:6630773,43093441:25952256,513147,11795 -g186,234:9448823,43093441 -h186,234:9448823,43093441:983040,0,0 -h186,234:10431863,43093441:0,0,0 -g186,234:7613813,43093441 -(186,234:7613813,43093441:1835010,485622,11795 -k186,234:9448823,43093441:465963 +(186,239:22173491,12309657:501378,78643,0 +(186,239:22337345,12309657:173670,78643,0 ) -g186,234:10933868,43093441 -g186,234:12446439,43093441 -g186,234:12446439,43093441 -(186,234:12647309,43093441:501378,78643,0 -$186,234:12647309,43093441 -(186,234:12811163,43093441:173670,78643,0 ) -$186,234:13148687,43093441 +(186,239:22674869,12309657:501378,78643,0 +(186,239:22838723,12309657:173670,78643,0 ) -(186,234:13148687,43093441:501378,78643,0 -(186,234:13312541,43093441:173670,78643,0 ) +(186,239:23176247,12309657:501378,78643,0 +(186,239:23340101,12309657:173670,78643,0 ) -(186,234:13650065,43093441:501378,78643,0 -(186,234:13813919,43093441:173670,78643,0 ) +(186,239:23677625,12309657:501378,78643,0 +(186,239:23841479,12309657:173670,78643,0 ) -(186,234:14151443,43093441:501378,78643,0 -(186,234:14315297,43093441:173670,78643,0 ) +(186,239:24179003,12309657:501378,78643,0 +(186,239:24342857,12309657:173670,78643,0 ) -(186,234:14652821,43093441:501378,78643,0 -(186,234:14816675,43093441:173670,78643,0 ) +(186,239:24680381,12309657:501378,78643,0 +(186,239:24844235,12309657:173670,78643,0 ) -(186,234:15154199,43093441:501378,78643,0 -(186,234:15318053,43093441:173670,78643,0 ) +(186,239:25181759,12309657:501378,78643,0 +(186,239:25345613,12309657:173670,78643,0 ) -(186,234:15655577,43093441:501378,78643,0 -(186,234:15819431,43093441:173670,78643,0 ) +(186,239:25683137,12309657:501378,78643,0 +(186,239:25846991,12309657:173670,78643,0 ) -(186,234:16156955,43093441:501378,78643,0 -(186,234:16320809,43093441:173670,78643,0 ) +(186,239:26184515,12309657:501378,78643,0 +(186,239:26348369,12309657:173670,78643,0 ) -(186,234:16658333,43093441:501378,78643,0 -(186,234:16822187,43093441:173670,78643,0 ) +(186,239:26685893,12309657:501378,78643,0 +(186,239:26849747,12309657:173670,78643,0 ) -(186,234:17159711,43093441:501378,78643,0 -(186,234:17323565,43093441:173670,78643,0 ) +(186,239:27187271,12309657:501378,78643,0 +(186,239:27351125,12309657:173670,78643,0 ) -(186,234:17661089,43093441:501378,78643,0 -(186,234:17824943,43093441:173670,78643,0 ) +(186,239:27688649,12309657:501378,78643,0 +(186,239:27852503,12309657:173670,78643,0 ) -(186,234:18162467,43093441:501378,78643,0 -(186,234:18326321,43093441:173670,78643,0 ) +(186,239:28190027,12309657:501378,78643,0 +(186,239:28353881,12309657:173670,78643,0 ) -(186,234:18663845,43093441:501378,78643,0 -(186,234:18827699,43093441:173670,78643,0 ) +(186,239:28691405,12309657:501378,78643,0 +(186,239:28855259,12309657:173670,78643,0 ) -(186,234:19165223,43093441:501378,78643,0 -(186,234:19329077,43093441:173670,78643,0 ) +(186,239:29192783,12309657:501378,78643,0 +(186,239:29356637,12309657:173670,78643,0 ) -(186,234:19666601,43093441:501378,78643,0 -(186,234:19830455,43093441:173670,78643,0 ) +(186,239:29694161,12309657:501378,78643,0 +(186,239:29858015,12309657:173670,78643,0 ) -(186,234:20167979,43093441:501378,78643,0 -(186,234:20331833,43093441:173670,78643,0 ) +(186,239:30195539,12309657:501378,78643,0 +(186,239:30359393,12309657:173670,78643,0 ) -(186,234:20669357,43093441:501378,78643,0 -(186,234:20833211,43093441:173670,78643,0 ) +(186,239:30696917,12309657:501378,78643,0 +(186,239:30860771,12309657:173670,78643,0 ) -(186,234:21170735,43093441:501378,78643,0 -(186,234:21334589,43093441:173670,78643,0 ) +(186,239:31239539,12309657:1343490,485622,11795 +k186,239:31239539,12309657:0 +k186,239:31387652,12309657:148113 ) -(186,234:21672113,43093441:501378,78643,0 -(186,234:21835967,43093441:173670,78643,0 +g186,239:30911859,12309657 +g186,239:32583029,12309657 ) +(186,240:6630773,13174737:25952256,513147,11795 +g186,240:9710963,13174737 +h186,240:9710963,13174737:983040,0,0 +h186,240:10694003,13174737:0,0,0 +g186,240:7613813,13174737 +(186,240:7613813,13174737:2097150,485622,11795 +k186,240:9710963,13174737:329644 ) -(186,234:22173491,43093441:501378,78643,0 -(186,234:22337345,43093441:173670,78643,0 +g186,240:13019220,13174737 +g186,240:15977515,13174737 +g186,240:15977515,13174737 +(186,240:16156955,13174737:501378,78643,0 +$186,240:16156955,13174737 +(186,240:16320809,13174737:173670,78643,0 ) +$186,240:16658333,13174737 ) -(186,234:22674869,43093441:501378,78643,0 -(186,234:22838723,43093441:173670,78643,0 +(186,240:16658333,13174737:501378,78643,0 +(186,240:16822187,13174737:173670,78643,0 ) ) -(186,234:23176247,43093441:501378,78643,0 -(186,234:23340101,43093441:173670,78643,0 +(186,240:17159711,13174737:501378,78643,0 +(186,240:17323565,13174737:173670,78643,0 ) ) -(186,234:23677625,43093441:501378,78643,0 -(186,234:23841479,43093441:173670,78643,0 +(186,240:17661089,13174737:501378,78643,0 +(186,240:17824943,13174737:173670,78643,0 ) ) -(186,234:24179003,43093441:501378,78643,0 -(186,234:24342857,43093441:173670,78643,0 +(186,240:18162467,13174737:501378,78643,0 +(186,240:18326321,13174737:173670,78643,0 ) ) -(186,234:24680381,43093441:501378,78643,0 -(186,234:24844235,43093441:173670,78643,0 +(186,240:18663845,13174737:501378,78643,0 +(186,240:18827699,13174737:173670,78643,0 ) ) -(186,234:25181759,43093441:501378,78643,0 -(186,234:25345613,43093441:173670,78643,0 +(186,240:19165223,13174737:501378,78643,0 +(186,240:19329077,13174737:173670,78643,0 ) ) -(186,234:25683137,43093441:501378,78643,0 -(186,234:25846991,43093441:173670,78643,0 +(186,240:19666601,13174737:501378,78643,0 +(186,240:19830455,13174737:173670,78643,0 ) ) -(186,234:26184515,43093441:501378,78643,0 -(186,234:26348369,43093441:173670,78643,0 +(186,240:20167979,13174737:501378,78643,0 +(186,240:20331833,13174737:173670,78643,0 ) ) -(186,234:26685893,43093441:501378,78643,0 -(186,234:26849747,43093441:173670,78643,0 +(186,240:20669357,13174737:501378,78643,0 +(186,240:20833211,13174737:173670,78643,0 ) ) -(186,234:27187271,43093441:501378,78643,0 -(186,234:27351125,43093441:173670,78643,0 +(186,240:21170735,13174737:501378,78643,0 +(186,240:21334589,13174737:173670,78643,0 ) ) -(186,234:27688649,43093441:501378,78643,0 -(186,234:27852503,43093441:173670,78643,0 +(186,240:21672113,13174737:501378,78643,0 +(186,240:21835967,13174737:173670,78643,0 ) ) -(186,234:28190027,43093441:501378,78643,0 -(186,234:28353881,43093441:173670,78643,0 +(186,240:22173491,13174737:501378,78643,0 +(186,240:22337345,13174737:173670,78643,0 ) ) -(186,234:28691405,43093441:501378,78643,0 -(186,234:28855259,43093441:173670,78643,0 +(186,240:22674869,13174737:501378,78643,0 +(186,240:22838723,13174737:173670,78643,0 ) ) -(186,234:29192783,43093441:501378,78643,0 -(186,234:29356637,43093441:173670,78643,0 +(186,240:23176247,13174737:501378,78643,0 +(186,240:23340101,13174737:173670,78643,0 ) ) -(186,234:29694161,43093441:501378,78643,0 -(186,234:29858015,43093441:173670,78643,0 +(186,240:23677625,13174737:501378,78643,0 +(186,240:23841479,13174737:173670,78643,0 ) ) -(186,234:30195539,43093441:501378,78643,0 -(186,234:30359393,43093441:173670,78643,0 +(186,240:24179003,13174737:501378,78643,0 +(186,240:24342857,13174737:173670,78643,0 ) ) -(186,234:30696917,43093441:501378,78643,0 -(186,234:30860771,43093441:173670,78643,0 +(186,240:24680381,13174737:501378,78643,0 +(186,240:24844235,13174737:173670,78643,0 ) ) -(186,234:31239539,43093441:1343490,485622,11795 -k186,234:31239539,43093441:0 -k186,234:31387652,43093441:148113 +(186,240:25181759,13174737:501378,78643,0 +(186,240:25345613,13174737:173670,78643,0 ) -g186,234:30911859,43093441 -g186,234:32583029,43093441 ) -(186,235:6630773,43934929:25952256,505283,11795 -g186,235:9448823,43934929 -h186,235:9448823,43934929:983040,0,0 -h186,235:10431863,43934929:0,0,0 -g186,235:7613813,43934929 -(186,235:7613813,43934929:1835010,485622,11795 -k186,235:9448823,43934929:465963 +(186,240:25683137,13174737:501378,78643,0 +(186,240:25846991,13174737:173670,78643,0 ) -g186,235:13356734,43934929 -g186,235:13356734,43934929 -(186,235:13650065,43934929:501378,78643,0 -$186,235:13650065,43934929 -(186,235:13813919,43934929:173670,78643,0 ) -$186,235:14151443,43934929 +(186,240:26184515,13174737:501378,78643,0 +(186,240:26348369,13174737:173670,78643,0 ) -(186,235:14151443,43934929:501378,78643,0 -(186,235:14315297,43934929:173670,78643,0 ) +(186,240:26685893,13174737:501378,78643,0 +(186,240:26849747,13174737:173670,78643,0 ) -(186,235:14652821,43934929:501378,78643,0 -(186,235:14816675,43934929:173670,78643,0 ) +(186,240:27187271,13174737:501378,78643,0 +(186,240:27351125,13174737:173670,78643,0 ) -(186,235:15154199,43934929:501378,78643,0 -(186,235:15318053,43934929:173670,78643,0 ) +(186,240:27688649,13174737:501378,78643,0 +(186,240:27852503,13174737:173670,78643,0 ) -(186,235:15655577,43934929:501378,78643,0 -(186,235:15819431,43934929:173670,78643,0 ) +(186,240:28190027,13174737:501378,78643,0 +(186,240:28353881,13174737:173670,78643,0 ) -(186,235:16156955,43934929:501378,78643,0 -(186,235:16320809,43934929:173670,78643,0 ) +(186,240:28691405,13174737:501378,78643,0 +(186,240:28855259,13174737:173670,78643,0 ) -(186,235:16658333,43934929:501378,78643,0 -(186,235:16822187,43934929:173670,78643,0 ) +(186,240:29192783,13174737:501378,78643,0 +(186,240:29356637,13174737:173670,78643,0 ) -(186,235:17159711,43934929:501378,78643,0 -(186,235:17323565,43934929:173670,78643,0 ) +(186,240:29694161,13174737:501378,78643,0 +(186,240:29858015,13174737:173670,78643,0 ) -(186,235:17661089,43934929:501378,78643,0 -(186,235:17824943,43934929:173670,78643,0 ) +(186,240:30195539,13174737:501378,78643,0 +(186,240:30359393,13174737:173670,78643,0 ) -(186,235:18162467,43934929:501378,78643,0 -(186,235:18326321,43934929:173670,78643,0 ) +(186,240:30696917,13174737:501378,78643,0 +(186,240:30860771,13174737:173670,78643,0 ) -(186,235:18663845,43934929:501378,78643,0 -(186,235:18827699,43934929:173670,78643,0 ) +(186,240:31239539,13174737:1343490,485622,11795 +k186,240:31239539,13174737:0 +k186,240:31387652,13174737:148113 ) -(186,235:19165223,43934929:501378,78643,0 -(186,235:19329077,43934929:173670,78643,0 +g186,240:30911859,13174737 +g186,240:32583029,13174737 ) +(186,241:6630773,14039817:25952256,513147,134348 +g186,241:12529013,14039817 +h186,241:12529013,14039817:3080190,0,0 +h186,241:15609203,14039817:0,0,0 +g186,241:9710963,14039817 +(186,241:9710963,14039817:2818050,485622,11795 +k186,241:12529013,14039817:478415 ) -(186,235:19666601,43934929:501378,78643,0 -(186,235:19830455,43934929:173670,78643,0 +g186,241:14814253,14039817 +(186,241:15154199,14039817:501378,78643,0 +$186,241:15154199,14039817 +(186,241:15318053,14039817:173670,78643,0 ) +$186,241:15655577,14039817 ) -(186,235:20167979,43934929:501378,78643,0 -(186,235:20331833,43934929:173670,78643,0 +(186,241:15655577,14039817:501378,78643,0 +(186,241:15819431,14039817:173670,78643,0 ) ) -(186,235:20669357,43934929:501378,78643,0 -(186,235:20833211,43934929:173670,78643,0 +(186,241:16156955,14039817:501378,78643,0 +(186,241:16320809,14039817:173670,78643,0 ) ) -(186,235:21170735,43934929:501378,78643,0 -(186,235:21334589,43934929:173670,78643,0 +(186,241:16658333,14039817:501378,78643,0 +(186,241:16822187,14039817:173670,78643,0 ) ) -(186,235:21672113,43934929:501378,78643,0 -(186,235:21835967,43934929:173670,78643,0 +(186,241:17159711,14039817:501378,78643,0 +(186,241:17323565,14039817:173670,78643,0 ) ) -(186,235:22173491,43934929:501378,78643,0 -(186,235:22337345,43934929:173670,78643,0 +(186,241:17661089,14039817:501378,78643,0 +(186,241:17824943,14039817:173670,78643,0 ) ) -(186,235:22674869,43934929:501378,78643,0 -(186,235:22838723,43934929:173670,78643,0 +(186,241:18162467,14039817:501378,78643,0 +(186,241:18326321,14039817:173670,78643,0 ) ) -(186,235:23176247,43934929:501378,78643,0 -(186,235:23340101,43934929:173670,78643,0 +(186,241:18663845,14039817:501378,78643,0 +(186,241:18827699,14039817:173670,78643,0 ) ) -(186,235:23677625,43934929:501378,78643,0 -(186,235:23841479,43934929:173670,78643,0 +(186,241:19165223,14039817:501378,78643,0 +(186,241:19329077,14039817:173670,78643,0 ) ) -(186,235:24179003,43934929:501378,78643,0 -(186,235:24342857,43934929:173670,78643,0 +(186,241:19666601,14039817:501378,78643,0 +(186,241:19830455,14039817:173670,78643,0 ) ) -(186,235:24680381,43934929:501378,78643,0 -(186,235:24844235,43934929:173670,78643,0 +(186,241:20167979,14039817:501378,78643,0 +(186,241:20331833,14039817:173670,78643,0 ) ) -(186,235:25181759,43934929:501378,78643,0 -(186,235:25345613,43934929:173670,78643,0 +(186,241:20669357,14039817:501378,78643,0 +(186,241:20833211,14039817:173670,78643,0 ) ) -(186,235:25683137,43934929:501378,78643,0 -(186,235:25846991,43934929:173670,78643,0 +(186,241:21170735,14039817:501378,78643,0 +(186,241:21334589,14039817:173670,78643,0 ) ) -(186,235:26184515,43934929:501378,78643,0 -(186,235:26348369,43934929:173670,78643,0 +(186,241:21672113,14039817:501378,78643,0 +(186,241:21835967,14039817:173670,78643,0 ) ) -(186,235:26685893,43934929:501378,78643,0 -(186,235:26849747,43934929:173670,78643,0 +(186,241:22173491,14039817:501378,78643,0 +(186,241:22337345,14039817:173670,78643,0 ) ) -(186,235:27187271,43934929:501378,78643,0 -(186,235:27351125,43934929:173670,78643,0 +(186,241:22674869,14039817:501378,78643,0 +(186,241:22838723,14039817:173670,78643,0 ) ) -(186,235:27688649,43934929:501378,78643,0 -(186,235:27852503,43934929:173670,78643,0 +(186,241:23176247,14039817:501378,78643,0 +(186,241:23340101,14039817:173670,78643,0 ) ) -(186,235:28190027,43934929:501378,78643,0 -(186,235:28353881,43934929:173670,78643,0 +(186,241:23677625,14039817:501378,78643,0 +(186,241:23841479,14039817:173670,78643,0 ) ) -(186,235:28691405,43934929:501378,78643,0 -(186,235:28855259,43934929:173670,78643,0 +(186,241:24179003,14039817:501378,78643,0 +(186,241:24342857,14039817:173670,78643,0 ) ) -(186,235:29192783,43934929:501378,78643,0 -(186,235:29356637,43934929:173670,78643,0 +(186,241:24680381,14039817:501378,78643,0 +(186,241:24844235,14039817:173670,78643,0 ) ) -(186,235:29694161,43934929:501378,78643,0 -(186,235:29858015,43934929:173670,78643,0 +(186,241:25181759,14039817:501378,78643,0 +(186,241:25345613,14039817:173670,78643,0 ) ) -(186,235:30195539,43934929:501378,78643,0 -(186,235:30359393,43934929:173670,78643,0 +(186,241:25683137,14039817:501378,78643,0 +(186,241:25846991,14039817:173670,78643,0 ) ) -(186,235:30696917,43934929:501378,78643,0 -(186,235:30860771,43934929:173670,78643,0 +(186,241:26184515,14039817:501378,78643,0 +(186,241:26348369,14039817:173670,78643,0 ) ) -(186,235:31239538,43934929:1343490,485622,11795 -k186,235:31239538,43934929:0 -k186,235:31387651,43934929:148113 +(186,241:26685893,14039817:501378,78643,0 +(186,241:26849747,14039817:173670,78643,0 ) -g186,235:30911858,43934929 -g186,235:32583028,43934929 ) -(186,236:6630773,44776417:25952256,513147,11795 -g186,236:11873653,44776417 -h186,236:11873653,44776417:2818050,0,0 -h186,236:14691703,44776417:0,0,0 -g186,236:9448823,44776417 -(186,236:9448823,44776417:2424830,485622,11795 -k186,236:11873653,44776417:483654 +(186,241:27187271,14039817:501378,78643,0 +(186,241:27351125,14039817:173670,78643,0 ) -g186,236:13341659,44776417 -g186,236:14854230,44776417 -g186,236:15739621,44776417 -g186,236:19336892,44776417 -(186,236:19666601,44776417:501378,78643,0 -$186,236:19666601,44776417 -(186,236:19830455,44776417:173670,78643,0 ) -$186,236:20167979,44776417 +(186,241:27688649,14039817:501378,78643,0 +(186,241:27852503,14039817:173670,78643,0 ) -(186,236:20167979,44776417:501378,78643,0 -(186,236:20331833,44776417:173670,78643,0 ) +(186,241:28190027,14039817:501378,78643,0 +(186,241:28353881,14039817:173670,78643,0 ) -(186,236:20669357,44776417:501378,78643,0 -(186,236:20833211,44776417:173670,78643,0 ) +(186,241:28691405,14039817:501378,78643,0 +(186,241:28855259,14039817:173670,78643,0 ) -(186,236:21170735,44776417:501378,78643,0 -(186,236:21334589,44776417:173670,78643,0 ) +(186,241:29192783,14039817:501378,78643,0 +(186,241:29356637,14039817:173670,78643,0 ) -(186,236:21672113,44776417:501378,78643,0 -(186,236:21835967,44776417:173670,78643,0 ) +(186,241:29694161,14039817:501378,78643,0 +(186,241:29858015,14039817:173670,78643,0 ) -(186,236:22173491,44776417:501378,78643,0 -(186,236:22337345,44776417:173670,78643,0 ) +(186,241:30195539,14039817:501378,78643,0 +(186,241:30359393,14039817:173670,78643,0 ) -(186,236:22674869,44776417:501378,78643,0 -(186,236:22838723,44776417:173670,78643,0 ) +(186,241:30696917,14039817:501378,78643,0 +(186,241:30860771,14039817:173670,78643,0 ) -(186,236:23176247,44776417:501378,78643,0 -(186,236:23340101,44776417:173670,78643,0 ) +(186,241:31239539,14039817:1343490,485622,11795 +k186,241:31239539,14039817:0 +k186,241:31387652,14039817:148113 ) -(186,236:23677625,44776417:501378,78643,0 -(186,236:23841479,44776417:173670,78643,0 +g186,241:30911859,14039817 +g186,241:32583029,14039817 ) +(186,242:6630773,14904897:25952256,505283,11795 +g186,242:12529013,14904897 +h186,242:12529013,14904897:3080190,0,0 +h186,242:15609203,14904897:0,0,0 +g186,242:9710963,14904897 +(186,242:9710963,14904897:2818050,485622,11795 +k186,242:12529013,14904897:478415 ) -(186,236:24179003,44776417:501378,78643,0 -(186,236:24342857,44776417:173670,78643,0 +g186,242:14419071,14904897 +(186,242:14652821,14904897:501378,78643,0 +$186,242:14652821,14904897 +(186,242:14816675,14904897:173670,78643,0 ) +$186,242:15154199,14904897 ) -(186,236:24680381,44776417:501378,78643,0 -(186,236:24844235,44776417:173670,78643,0 +(186,242:15154199,14904897:501378,78643,0 +(186,242:15318053,14904897:173670,78643,0 ) ) -(186,236:25181759,44776417:501378,78643,0 -(186,236:25345613,44776417:173670,78643,0 +(186,242:15655577,14904897:501378,78643,0 +(186,242:15819431,14904897:173670,78643,0 ) ) -(186,236:25683137,44776417:501378,78643,0 -(186,236:25846991,44776417:173670,78643,0 +(186,242:16156955,14904897:501378,78643,0 +(186,242:16320809,14904897:173670,78643,0 ) ) -(186,236:26184515,44776417:501378,78643,0 -(186,236:26348369,44776417:173670,78643,0 +(186,242:16658333,14904897:501378,78643,0 +(186,242:16822187,14904897:173670,78643,0 ) ) -(186,236:26685893,44776417:501378,78643,0 -(186,236:26849747,44776417:173670,78643,0 +(186,242:17159711,14904897:501378,78643,0 +(186,242:17323565,14904897:173670,78643,0 ) ) -(186,236:27187271,44776417:501378,78643,0 -(186,236:27351125,44776417:173670,78643,0 +(186,242:17661089,14904897:501378,78643,0 +(186,242:17824943,14904897:173670,78643,0 ) ) -(186,236:27688649,44776417:501378,78643,0 -(186,236:27852503,44776417:173670,78643,0 +(186,242:18162467,14904897:501378,78643,0 +(186,242:18326321,14904897:173670,78643,0 ) ) -(186,236:28190027,44776417:501378,78643,0 -(186,236:28353881,44776417:173670,78643,0 +(186,242:18663845,14904897:501378,78643,0 +(186,242:18827699,14904897:173670,78643,0 ) ) -(186,236:28691405,44776417:501378,78643,0 -(186,236:28855259,44776417:173670,78643,0 +(186,242:19165223,14904897:501378,78643,0 +(186,242:19329077,14904897:173670,78643,0 ) ) -(186,236:29192783,44776417:501378,78643,0 -(186,236:29356637,44776417:173670,78643,0 +(186,242:19666601,14904897:501378,78643,0 +(186,242:19830455,14904897:173670,78643,0 ) ) -(186,236:29694161,44776417:501378,78643,0 -(186,236:29858015,44776417:173670,78643,0 +(186,242:20167979,14904897:501378,78643,0 +(186,242:20331833,14904897:173670,78643,0 ) ) -(186,236:30195539,44776417:501378,78643,0 -(186,236:30359393,44776417:173670,78643,0 +(186,242:20669357,14904897:501378,78643,0 +(186,242:20833211,14904897:173670,78643,0 ) ) -(186,236:30696917,44776417:501378,78643,0 -(186,236:30860771,44776417:173670,78643,0 +(186,242:21170735,14904897:501378,78643,0 +(186,242:21334589,14904897:173670,78643,0 ) ) -(186,236:31239539,44776417:1343490,485622,11795 -k186,236:31239539,44776417:0 -k186,236:31387652,44776417:148113 +(186,242:21672113,14904897:501378,78643,0 +(186,242:21835967,14904897:173670,78643,0 ) -g186,236:30911859,44776417 -g186,236:32583029,44776417 ) -(186,237:6630773,45617905:25952256,505283,11795 -g186,237:11873653,45617905 -h186,237:11873653,45617905:2818050,0,0 -h186,237:14691703,45617905:0,0,0 -g186,237:9448823,45617905 -(186,237:9448823,45617905:2424830,485622,11795 -k186,237:11873653,45617905:483654 +(186,242:22173491,14904897:501378,78643,0 +(186,242:22337345,14904897:173670,78643,0 ) -g186,237:14203458,45617905 -(186,237:14652821,45617905:501378,78643,0 -$186,237:14652821,45617905 -(186,237:14816675,45617905:173670,78643,0 ) -$186,237:15154199,45617905 +(186,242:22674869,14904897:501378,78643,0 +(186,242:22838723,14904897:173670,78643,0 ) -(186,237:15154199,45617905:501378,78643,0 -(186,237:15318053,45617905:173670,78643,0 ) +(186,242:23176247,14904897:501378,78643,0 +(186,242:23340101,14904897:173670,78643,0 ) -(186,237:15655577,45617905:501378,78643,0 -(186,237:15819431,45617905:173670,78643,0 ) +(186,242:23677625,14904897:501378,78643,0 +(186,242:23841479,14904897:173670,78643,0 ) -(186,237:16156955,45617905:501378,78643,0 -(186,237:16320809,45617905:173670,78643,0 ) +(186,242:24179003,14904897:501378,78643,0 +(186,242:24342857,14904897:173670,78643,0 ) -(186,237:16658333,45617905:501378,78643,0 -(186,237:16822187,45617905:173670,78643,0 ) +(186,242:24680381,14904897:501378,78643,0 +(186,242:24844235,14904897:173670,78643,0 ) -(186,237:17159711,45617905:501378,78643,0 -(186,237:17323565,45617905:173670,78643,0 ) +(186,242:25181759,14904897:501378,78643,0 +(186,242:25345613,14904897:173670,78643,0 ) -(186,237:17661089,45617905:501378,78643,0 -(186,237:17824943,45617905:173670,78643,0 ) +(186,242:25683137,14904897:501378,78643,0 +(186,242:25846991,14904897:173670,78643,0 ) -(186,237:18162467,45617905:501378,78643,0 -(186,237:18326321,45617905:173670,78643,0 ) +(186,242:26184515,14904897:501378,78643,0 +(186,242:26348369,14904897:173670,78643,0 ) -(186,237:18663845,45617905:501378,78643,0 -(186,237:18827699,45617905:173670,78643,0 ) +(186,242:26685893,14904897:501378,78643,0 +(186,242:26849747,14904897:173670,78643,0 ) -(186,237:19165223,45617905:501378,78643,0 -(186,237:19329077,45617905:173670,78643,0 ) +(186,242:27187271,14904897:501378,78643,0 +(186,242:27351125,14904897:173670,78643,0 ) -(186,237:19666601,45617905:501378,78643,0 -(186,237:19830455,45617905:173670,78643,0 ) +(186,242:27688649,14904897:501378,78643,0 +(186,242:27852503,14904897:173670,78643,0 ) -(186,237:20167979,45617905:501378,78643,0 -(186,237:20331833,45617905:173670,78643,0 ) +(186,242:28190027,14904897:501378,78643,0 +(186,242:28353881,14904897:173670,78643,0 ) -(186,237:20669357,45617905:501378,78643,0 -(186,237:20833211,45617905:173670,78643,0 ) +(186,242:28691405,14904897:501378,78643,0 +(186,242:28855259,14904897:173670,78643,0 ) -(186,237:21170735,45617905:501378,78643,0 -(186,237:21334589,45617905:173670,78643,0 ) +(186,242:29192783,14904897:501378,78643,0 +(186,242:29356637,14904897:173670,78643,0 ) -(186,237:21672113,45617905:501378,78643,0 -(186,237:21835967,45617905:173670,78643,0 ) +(186,242:29694161,14904897:501378,78643,0 +(186,242:29858015,14904897:173670,78643,0 ) -(186,237:22173491,45617905:501378,78643,0 -(186,237:22337345,45617905:173670,78643,0 ) +(186,242:30195539,14904897:501378,78643,0 +(186,242:30359393,14904897:173670,78643,0 ) -(186,237:22674869,45617905:501378,78643,0 -(186,237:22838723,45617905:173670,78643,0 ) +(186,242:30696917,14904897:501378,78643,0 +(186,242:30860771,14904897:173670,78643,0 ) -(186,237:23176247,45617905:501378,78643,0 -(186,237:23340101,45617905:173670,78643,0 ) +(186,242:31239539,14904897:1343490,485622,11795 +k186,242:31239539,14904897:0 +k186,242:31387652,14904897:148113 ) -(186,237:23677625,45617905:501378,78643,0 -(186,237:23841479,45617905:173670,78643,0 +g186,242:30911859,14904897 +g186,242:32583029,14904897 ) +(186,243:6630773,15769977:25952256,513147,11795 +g186,243:9710963,15769977 +h186,243:9710963,15769977:983040,0,0 +h186,243:10694003,15769977:0,0,0 +g186,243:7613813,15769977 +(186,243:7613813,15769977:2097150,485622,11795 +k186,243:9710963,15769977:329644 ) -(186,237:24179003,45617905:501378,78643,0 -(186,237:24342857,45617905:173670,78643,0 +g186,243:12324538,15769977 +g186,243:13837109,15769977 +g186,243:13837109,15769977 +(186,243:14151443,15769977:501378,78643,0 +$186,243:14151443,15769977 +(186,243:14315297,15769977:173670,78643,0 ) +$186,243:14652821,15769977 ) -(186,237:24680381,45617905:501378,78643,0 -(186,237:24844235,45617905:173670,78643,0 +(186,243:14652821,15769977:501378,78643,0 +(186,243:14816675,15769977:173670,78643,0 ) ) -(186,237:25181759,45617905:501378,78643,0 -(186,237:25345613,45617905:173670,78643,0 +(186,243:15154199,15769977:501378,78643,0 +(186,243:15318053,15769977:173670,78643,0 ) ) -(186,237:25683137,45617905:501378,78643,0 -(186,237:25846991,45617905:173670,78643,0 +(186,243:15655577,15769977:501378,78643,0 +(186,243:15819431,15769977:173670,78643,0 ) ) -(186,237:26184515,45617905:501378,78643,0 -(186,237:26348369,45617905:173670,78643,0 +(186,243:16156955,15769977:501378,78643,0 +(186,243:16320809,15769977:173670,78643,0 ) ) -(186,237:26685893,45617905:501378,78643,0 -(186,237:26849747,45617905:173670,78643,0 +(186,243:16658333,15769977:501378,78643,0 +(186,243:16822187,15769977:173670,78643,0 ) ) -(186,237:27187271,45617905:501378,78643,0 -(186,237:27351125,45617905:173670,78643,0 +(186,243:17159711,15769977:501378,78643,0 +(186,243:17323565,15769977:173670,78643,0 ) ) -(186,237:27688649,45617905:501378,78643,0 -(186,237:27852503,45617905:173670,78643,0 +(186,243:17661089,15769977:501378,78643,0 +(186,243:17824943,15769977:173670,78643,0 ) ) -(186,237:28190027,45617905:501378,78643,0 -(186,237:28353881,45617905:173670,78643,0 +(186,243:18162467,15769977:501378,78643,0 +(186,243:18326321,15769977:173670,78643,0 ) ) -(186,237:28691405,45617905:501378,78643,0 -(186,237:28855259,45617905:173670,78643,0 +(186,243:18663845,15769977:501378,78643,0 +(186,243:18827699,15769977:173670,78643,0 ) ) -(186,237:29192783,45617905:501378,78643,0 -(186,237:29356637,45617905:173670,78643,0 +(186,243:19165223,15769977:501378,78643,0 +(186,243:19329077,15769977:173670,78643,0 ) ) -(186,237:29694161,45617905:501378,78643,0 -(186,237:29858015,45617905:173670,78643,0 +(186,243:19666601,15769977:501378,78643,0 +(186,243:19830455,15769977:173670,78643,0 ) ) -(186,237:30195539,45617905:501378,78643,0 -(186,237:30359393,45617905:173670,78643,0 +(186,243:20167979,15769977:501378,78643,0 +(186,243:20331833,15769977:173670,78643,0 ) ) -(186,237:30696917,45617905:501378,78643,0 -(186,237:30860771,45617905:173670,78643,0 +(186,243:20669357,15769977:501378,78643,0 +(186,243:20833211,15769977:173670,78643,0 ) ) -(186,237:31239538,45617905:1343490,485622,11795 -k186,237:31239538,45617905:0 -k186,237:31387651,45617905:148113 +(186,243:21170735,15769977:501378,78643,0 +(186,243:21334589,15769977:173670,78643,0 ) -g186,237:30911858,45617905 -g186,237:32583028,45617905 ) -] -(186,239:32583029,45706769:0,0,0 -g186,239:32583029,45706769 +(186,243:21672113,15769977:501378,78643,0 +(186,243:21835967,15769977:173670,78643,0 ) ) -] -(186,239:6630773,47279633:25952256,0,0 -h186,239:6630773,47279633:25952256,0,0 +(186,243:22173491,15769977:501378,78643,0 +(186,243:22337345,15769977:173670,78643,0 ) -] -(186,239:4262630,4025873:0,0,0 -[186,239:-473656,4025873:0,0,0 -(186,239:-473656,-710413:0,0,0 -(186,239:-473656,-710413:0,0,0 -g186,239:-473656,-710413 ) -g186,239:-473656,-710413 +(186,243:22674869,15769977:501378,78643,0 +(186,243:22838723,15769977:173670,78643,0 ) -] ) -] -!142218 -}6 -!11 -{7 -[1,136:4262630,47279633:28320399,43253760,0 -(1,136:4262630,4025873:0,0,0 -[1,136:-473656,4025873:0,0,0 -(1,136:-473656,-710413:0,0,0 -(1,136:-473656,-644877:0,0,0 -k1,136:-473656,-644877:-65536 +(186,243:23176247,15769977:501378,78643,0 +(186,243:23340101,15769977:173670,78643,0 ) -(1,136:-473656,4736287:0,0,0 -k1,136:-473656,4736287:5209943 ) -g1,136:-473656,-710413 +(186,243:23677625,15769977:501378,78643,0 +(186,243:23841479,15769977:173670,78643,0 ) -] ) -[1,136:6630773,47279633:25952256,43253760,0 -[1,136:6630773,4812305:25952256,786432,0 -(1,136:6630773,4812305:25952256,485622,11795 -(1,136:6630773,4812305:25952256,485622,11795 -g1,136:3078558,4812305 -[1,136:3078558,4812305:0,0,0 -(1,136:3078558,2439708:0,1703936,0 -k1,136:1358238,2439708:-1720320 -(1,135:1358238,2439708:1720320,1703936,0 -(1,135:1358238,2439708:1179648,16384,0 -r1,136:2537886,2439708:1179648,16384,0 +(186,243:24179003,15769977:501378,78643,0 +(186,243:24342857,15769977:173670,78643,0 ) -g1,135:3062174,2439708 -(1,135:3062174,2439708:16384,1703936,0 -[1,135:3062174,2439708:25952256,1703936,0 -(1,135:3062174,1915420:25952256,1179648,0 -(1,135:3062174,1915420:16384,1179648,0 -r1,136:3078558,1915420:16384,1179648,0 ) -k1,135:29014430,1915420:25935872 -g1,135:29014430,1915420 +(186,243:24680381,15769977:501378,78643,0 +(186,243:24844235,15769977:173670,78643,0 ) -] ) +(186,243:25181759,15769977:501378,78643,0 +(186,243:25345613,15769977:173670,78643,0 ) ) -] -[1,136:3078558,4812305:0,0,0 -(1,136:3078558,2439708:0,1703936,0 -g1,136:29030814,2439708 -g1,136:36135244,2439708 -(1,135:36135244,2439708:1720320,1703936,0 -(1,135:36135244,2439708:16384,1703936,0 -[1,135:36135244,2439708:25952256,1703936,0 -(1,135:36135244,1915420:25952256,1179648,0 -(1,135:36135244,1915420:16384,1179648,0 -r1,136:36151628,1915420:16384,1179648,0 +(186,243:25683137,15769977:501378,78643,0 +(186,243:25846991,15769977:173670,78643,0 ) -k1,135:62087500,1915420:25935872 -g1,135:62087500,1915420 ) -] +(186,243:26184515,15769977:501378,78643,0 +(186,243:26348369,15769977:173670,78643,0 ) -g1,135:36675916,2439708 -(1,135:36675916,2439708:1179648,16384,0 -r1,136:37855564,2439708:1179648,16384,0 ) +(186,243:26685893,15769977:501378,78643,0 +(186,243:26849747,15769977:173670,78643,0 ) -k1,136:3078556,2439708:-34777008 ) -] -[1,136:3078558,4812305:0,0,0 -(1,136:3078558,49800853:0,16384,2228224 -k1,136:1358238,49800853:-1720320 -(1,135:1358238,49800853:1720320,16384,2228224 -(1,135:1358238,49800853:1179648,16384,0 -r1,136:2537886,49800853:1179648,16384,0 +(186,243:27187271,15769977:501378,78643,0 +(186,243:27351125,15769977:173670,78643,0 ) -g1,135:3062174,49800853 -(1,135:3062174,52029077:16384,1703936,0 -[1,135:3062174,52029077:25952256,1703936,0 -(1,135:3062174,51504789:25952256,1179648,0 -(1,135:3062174,51504789:16384,1179648,0 -r1,136:3078558,51504789:16384,1179648,0 ) -k1,135:29014430,51504789:25935872 -g1,135:29014430,51504789 +(186,243:27688649,15769977:501378,78643,0 +(186,243:27852503,15769977:173670,78643,0 ) -] ) +(186,243:28190027,15769977:501378,78643,0 +(186,243:28353881,15769977:173670,78643,0 ) ) -] -[1,136:3078558,4812305:0,0,0 -(1,136:3078558,49800853:0,16384,2228224 -g1,136:29030814,49800853 -g1,136:36135244,49800853 -(1,135:36135244,49800853:1720320,16384,2228224 -(1,135:36135244,52029077:16384,1703936,0 -[1,135:36135244,52029077:25952256,1703936,0 -(1,135:36135244,51504789:25952256,1179648,0 -(1,135:36135244,51504789:16384,1179648,0 -r1,136:36151628,51504789:16384,1179648,0 +(186,243:28691405,15769977:501378,78643,0 +(186,243:28855259,15769977:173670,78643,0 ) -k1,135:62087500,51504789:25935872 -g1,135:62087500,51504789 ) -] +(186,243:29192783,15769977:501378,78643,0 +(186,243:29356637,15769977:173670,78643,0 ) -g1,135:36675916,49800853 -(1,135:36675916,49800853:1179648,16384,0 -r1,136:37855564,49800853:1179648,16384,0 ) +(186,243:29694161,15769977:501378,78643,0 +(186,243:29858015,15769977:173670,78643,0 ) -k1,136:3078556,49800853:-34777008 ) -] -g1,136:6630773,4812305 -k1,136:29827895,4812305:22832086 +(186,243:30195539,15769977:501378,78643,0 +(186,243:30359393,15769977:173670,78643,0 ) ) -] -[1,136:6630773,45706769:25952256,40108032,0 -(1,136:6630773,45706769:25952256,40108032,0 -(1,136:6630773,45706769:0,0,0 -g1,136:6630773,45706769 +(186,243:30696917,15769977:501378,78643,0 +(186,243:30860771,15769977:173670,78643,0 ) -[1,136:6630773,45706769:25952256,40108032,0 -(186,238:6630773,6254097:25952256,505283,11795 -g186,238:11873653,6254097 -h186,238:11873653,6254097:2818050,0,0 -h186,238:14691703,6254097:0,0,0 -g186,238:9448823,6254097 -(186,238:9448823,6254097:2424830,485622,11795 -k186,238:11873653,6254097:483654 ) -g186,238:13486494,6254097 -(186,238:13650065,6254097:501378,78643,0 -$186,238:13650065,6254097 -(186,238:13813919,6254097:173670,78643,0 +(186,243:31239539,15769977:1343490,485622,11795 +k186,243:31239539,15769977:0 +k186,243:31387652,15769977:148113 ) -$186,238:14151443,6254097 +g186,243:30911859,15769977 +g186,243:32583029,15769977 ) -(186,238:14151443,6254097:501378,78643,0 -(186,238:14315297,6254097:173670,78643,0 +(186,244:6630773,16635057:25952256,513147,11795 +g186,244:12529013,16635057 +h186,244:12529013,16635057:3080190,0,0 +h186,244:15609203,16635057:0,0,0 +g186,244:9710963,16635057 +(186,244:9710963,16635057:2818050,485622,11795 +k186,244:12529013,16635057:478415 ) +g186,244:14361400,16635057 +(186,244:14652821,16635057:501378,78643,0 +$186,244:14652821,16635057 +(186,244:14816675,16635057:173670,78643,0 ) -(186,238:14652821,6254097:501378,78643,0 -(186,238:14816675,6254097:173670,78643,0 +$186,244:15154199,16635057 ) +(186,244:15154199,16635057:501378,78643,0 +(186,244:15318053,16635057:173670,78643,0 ) -(186,238:15154199,6254097:501378,78643,0 -(186,238:15318053,6254097:173670,78643,0 ) +(186,244:15655577,16635057:501378,78643,0 +(186,244:15819431,16635057:173670,78643,0 ) -(186,238:15655577,6254097:501378,78643,0 -(186,238:15819431,6254097:173670,78643,0 ) +(186,244:16156955,16635057:501378,78643,0 +(186,244:16320809,16635057:173670,78643,0 ) -(186,238:16156955,6254097:501378,78643,0 -(186,238:16320809,6254097:173670,78643,0 ) +(186,244:16658333,16635057:501378,78643,0 +(186,244:16822187,16635057:173670,78643,0 ) -(186,238:16658333,6254097:501378,78643,0 -(186,238:16822187,6254097:173670,78643,0 ) +(186,244:17159711,16635057:501378,78643,0 +(186,244:17323565,16635057:173670,78643,0 ) -(186,238:17159711,6254097:501378,78643,0 -(186,238:17323565,6254097:173670,78643,0 ) +(186,244:17661089,16635057:501378,78643,0 +(186,244:17824943,16635057:173670,78643,0 ) -(186,238:17661089,6254097:501378,78643,0 -(186,238:17824943,6254097:173670,78643,0 ) +(186,244:18162467,16635057:501378,78643,0 +(186,244:18326321,16635057:173670,78643,0 ) -(186,238:18162467,6254097:501378,78643,0 -(186,238:18326321,6254097:173670,78643,0 ) +(186,244:18663845,16635057:501378,78643,0 +(186,244:18827699,16635057:173670,78643,0 ) -(186,238:18663845,6254097:501378,78643,0 -(186,238:18827699,6254097:173670,78643,0 ) +(186,244:19165223,16635057:501378,78643,0 +(186,244:19329077,16635057:173670,78643,0 ) -(186,238:19165223,6254097:501378,78643,0 -(186,238:19329077,6254097:173670,78643,0 ) +(186,244:19666601,16635057:501378,78643,0 +(186,244:19830455,16635057:173670,78643,0 ) -(186,238:19666601,6254097:501378,78643,0 -(186,238:19830455,6254097:173670,78643,0 ) +(186,244:20167979,16635057:501378,78643,0 +(186,244:20331833,16635057:173670,78643,0 ) -(186,238:20167979,6254097:501378,78643,0 -(186,238:20331833,6254097:173670,78643,0 ) +(186,244:20669357,16635057:501378,78643,0 +(186,244:20833211,16635057:173670,78643,0 ) -(186,238:20669357,6254097:501378,78643,0 -(186,238:20833211,6254097:173670,78643,0 ) +(186,244:21170735,16635057:501378,78643,0 +(186,244:21334589,16635057:173670,78643,0 ) -(186,238:21170735,6254097:501378,78643,0 -(186,238:21334589,6254097:173670,78643,0 ) +(186,244:21672113,16635057:501378,78643,0 +(186,244:21835967,16635057:173670,78643,0 ) -(186,238:21672113,6254097:501378,78643,0 -(186,238:21835967,6254097:173670,78643,0 ) +(186,244:22173491,16635057:501378,78643,0 +(186,244:22337345,16635057:173670,78643,0 ) -(186,238:22173491,6254097:501378,78643,0 -(186,238:22337345,6254097:173670,78643,0 ) +(186,244:22674869,16635057:501378,78643,0 +(186,244:22838723,16635057:173670,78643,0 ) -(186,238:22674869,6254097:501378,78643,0 -(186,238:22838723,6254097:173670,78643,0 ) +(186,244:23176247,16635057:501378,78643,0 +(186,244:23340101,16635057:173670,78643,0 ) -(186,238:23176247,6254097:501378,78643,0 -(186,238:23340101,6254097:173670,78643,0 ) +(186,244:23677625,16635057:501378,78643,0 +(186,244:23841479,16635057:173670,78643,0 ) -(186,238:23677625,6254097:501378,78643,0 -(186,238:23841479,6254097:173670,78643,0 ) +(186,244:24179003,16635057:501378,78643,0 +(186,244:24342857,16635057:173670,78643,0 ) -(186,238:24179003,6254097:501378,78643,0 -(186,238:24342857,6254097:173670,78643,0 ) +(186,244:24680381,16635057:501378,78643,0 +(186,244:24844235,16635057:173670,78643,0 ) -(186,238:24680381,6254097:501378,78643,0 -(186,238:24844235,6254097:173670,78643,0 ) +(186,244:25181759,16635057:501378,78643,0 +(186,244:25345613,16635057:173670,78643,0 ) -(186,238:25181759,6254097:501378,78643,0 -(186,238:25345613,6254097:173670,78643,0 ) +(186,244:25683137,16635057:501378,78643,0 +(186,244:25846991,16635057:173670,78643,0 ) -(186,238:25683137,6254097:501378,78643,0 -(186,238:25846991,6254097:173670,78643,0 ) +(186,244:26184515,16635057:501378,78643,0 +(186,244:26348369,16635057:173670,78643,0 ) -(186,238:26184515,6254097:501378,78643,0 -(186,238:26348369,6254097:173670,78643,0 ) +(186,244:26685893,16635057:501378,78643,0 +(186,244:26849747,16635057:173670,78643,0 ) -(186,238:26685893,6254097:501378,78643,0 -(186,238:26849747,6254097:173670,78643,0 ) +(186,244:27187271,16635057:501378,78643,0 +(186,244:27351125,16635057:173670,78643,0 ) -(186,238:27187271,6254097:501378,78643,0 -(186,238:27351125,6254097:173670,78643,0 ) +(186,244:27688649,16635057:501378,78643,0 +(186,244:27852503,16635057:173670,78643,0 ) -(186,238:27688649,6254097:501378,78643,0 -(186,238:27852503,6254097:173670,78643,0 ) +(186,244:28190027,16635057:501378,78643,0 +(186,244:28353881,16635057:173670,78643,0 ) -(186,238:28190027,6254097:501378,78643,0 -(186,238:28353881,6254097:173670,78643,0 ) +(186,244:28691405,16635057:501378,78643,0 +(186,244:28855259,16635057:173670,78643,0 ) -(186,238:28691405,6254097:501378,78643,0 -(186,238:28855259,6254097:173670,78643,0 ) +(186,244:29192783,16635057:501378,78643,0 +(186,244:29356637,16635057:173670,78643,0 ) -(186,238:29192783,6254097:501378,78643,0 -(186,238:29356637,6254097:173670,78643,0 ) +(186,244:29694161,16635057:501378,78643,0 +(186,244:29858015,16635057:173670,78643,0 ) -(186,238:29694161,6254097:501378,78643,0 -(186,238:29858015,6254097:173670,78643,0 ) +(186,244:30195539,16635057:501378,78643,0 +(186,244:30359393,16635057:173670,78643,0 ) -(186,238:30195539,6254097:501378,78643,0 -(186,238:30359393,6254097:173670,78643,0 ) +(186,244:30696917,16635057:501378,78643,0 +(186,244:30860771,16635057:173670,78643,0 ) -(186,238:30696917,6254097:501378,78643,0 -(186,238:30860771,6254097:173670,78643,0 ) +(186,244:31239540,16635057:1343490,485622,11795 +k186,244:31239540,16635057:0 +k186,244:31387653,16635057:148113 ) -(186,238:31239538,6254097:1343490,485622,11795 -k186,238:31239538,6254097:0 -k186,238:31387651,6254097:148113 +g186,244:30911860,16635057 +g186,244:32583030,16635057 ) -g186,238:30911858,6254097 -g186,238:32583028,6254097 +(186,245:6630773,17500137:25952256,505283,126483 +g186,245:12529013,17500137 +h186,245:12529013,17500137:3080190,0,0 +h186,245:15609203,17500137:0,0,0 +g186,245:9710963,17500137 +(186,245:9710963,17500137:2818050,485622,11795 +k186,245:12529013,17500137:478415 ) -(186,239:6630773,7095585:25952256,505283,11795 -g186,239:11873653,7095585 -h186,239:11873653,7095585:2818050,0,0 -h186,239:14691703,7095585:0,0,0 -g186,239:9448823,7095585 -(186,239:9448823,7095585:2424830,485622,11795 -k186,239:11873653,7095585:483654 +g186,245:14517375,17500137 +(186,245:14652821,17500137:501378,78643,0 +$186,245:14652821,17500137 +(186,245:14816675,17500137:173670,78643,0 ) -g186,239:15001031,7095585 -(186,239:15154199,7095585:501378,78643,0 -$186,239:15154199,7095585 -(186,239:15318053,7095585:173670,78643,0 +$186,245:15154199,17500137 ) -$186,239:15655577,7095585 +(186,245:15154199,17500137:501378,78643,0 +(186,245:15318053,17500137:173670,78643,0 ) -(186,239:15655577,7095585:501378,78643,0 -(186,239:15819431,7095585:173670,78643,0 ) +(186,245:15655577,17500137:501378,78643,0 +(186,245:15819431,17500137:173670,78643,0 ) -(186,239:16156955,7095585:501378,78643,0 -(186,239:16320809,7095585:173670,78643,0 ) +(186,245:16156955,17500137:501378,78643,0 +(186,245:16320809,17500137:173670,78643,0 ) -(186,239:16658333,7095585:501378,78643,0 -(186,239:16822187,7095585:173670,78643,0 ) +(186,245:16658333,17500137:501378,78643,0 +(186,245:16822187,17500137:173670,78643,0 ) -(186,239:17159711,7095585:501378,78643,0 -(186,239:17323565,7095585:173670,78643,0 ) +(186,245:17159711,17500137:501378,78643,0 +(186,245:17323565,17500137:173670,78643,0 ) -(186,239:17661089,7095585:501378,78643,0 -(186,239:17824943,7095585:173670,78643,0 ) +(186,245:17661089,17500137:501378,78643,0 +(186,245:17824943,17500137:173670,78643,0 ) -(186,239:18162467,7095585:501378,78643,0 -(186,239:18326321,7095585:173670,78643,0 ) +(186,245:18162467,17500137:501378,78643,0 +(186,245:18326321,17500137:173670,78643,0 ) -(186,239:18663845,7095585:501378,78643,0 -(186,239:18827699,7095585:173670,78643,0 ) +(186,245:18663845,17500137:501378,78643,0 +(186,245:18827699,17500137:173670,78643,0 ) -(186,239:19165223,7095585:501378,78643,0 -(186,239:19329077,7095585:173670,78643,0 ) +(186,245:19165223,17500137:501378,78643,0 +(186,245:19329077,17500137:173670,78643,0 ) -(186,239:19666601,7095585:501378,78643,0 -(186,239:19830455,7095585:173670,78643,0 ) +(186,245:19666601,17500137:501378,78643,0 +(186,245:19830455,17500137:173670,78643,0 ) -(186,239:20167979,7095585:501378,78643,0 -(186,239:20331833,7095585:173670,78643,0 ) +(186,245:20167979,17500137:501378,78643,0 +(186,245:20331833,17500137:173670,78643,0 ) -(186,239:20669357,7095585:501378,78643,0 -(186,239:20833211,7095585:173670,78643,0 ) +(186,245:20669357,17500137:501378,78643,0 +(186,245:20833211,17500137:173670,78643,0 ) -(186,239:21170735,7095585:501378,78643,0 -(186,239:21334589,7095585:173670,78643,0 ) +(186,245:21170735,17500137:501378,78643,0 +(186,245:21334589,17500137:173670,78643,0 ) -(186,239:21672113,7095585:501378,78643,0 -(186,239:21835967,7095585:173670,78643,0 ) +(186,245:21672113,17500137:501378,78643,0 +(186,245:21835967,17500137:173670,78643,0 ) -(186,239:22173491,7095585:501378,78643,0 -(186,239:22337345,7095585:173670,78643,0 ) +(186,245:22173491,17500137:501378,78643,0 +(186,245:22337345,17500137:173670,78643,0 ) -(186,239:22674869,7095585:501378,78643,0 -(186,239:22838723,7095585:173670,78643,0 ) +(186,245:22674869,17500137:501378,78643,0 +(186,245:22838723,17500137:173670,78643,0 ) -(186,239:23176247,7095585:501378,78643,0 -(186,239:23340101,7095585:173670,78643,0 ) +(186,245:23176247,17500137:501378,78643,0 +(186,245:23340101,17500137:173670,78643,0 ) -(186,239:23677625,7095585:501378,78643,0 -(186,239:23841479,7095585:173670,78643,0 ) +(186,245:23677625,17500137:501378,78643,0 +(186,245:23841479,17500137:173670,78643,0 ) -(186,239:24179003,7095585:501378,78643,0 -(186,239:24342857,7095585:173670,78643,0 ) +(186,245:24179003,17500137:501378,78643,0 +(186,245:24342857,17500137:173670,78643,0 ) -(186,239:24680381,7095585:501378,78643,0 -(186,239:24844235,7095585:173670,78643,0 ) +(186,245:24680381,17500137:501378,78643,0 +(186,245:24844235,17500137:173670,78643,0 ) -(186,239:25181759,7095585:501378,78643,0 -(186,239:25345613,7095585:173670,78643,0 ) +(186,245:25181759,17500137:501378,78643,0 +(186,245:25345613,17500137:173670,78643,0 ) -(186,239:25683137,7095585:501378,78643,0 -(186,239:25846991,7095585:173670,78643,0 ) +(186,245:25683137,17500137:501378,78643,0 +(186,245:25846991,17500137:173670,78643,0 ) -(186,239:26184515,7095585:501378,78643,0 -(186,239:26348369,7095585:173670,78643,0 ) +(186,245:26184515,17500137:501378,78643,0 +(186,245:26348369,17500137:173670,78643,0 ) -(186,239:26685893,7095585:501378,78643,0 -(186,239:26849747,7095585:173670,78643,0 ) +(186,245:26685893,17500137:501378,78643,0 +(186,245:26849747,17500137:173670,78643,0 ) -(186,239:27187271,7095585:501378,78643,0 -(186,239:27351125,7095585:173670,78643,0 ) +(186,245:27187271,17500137:501378,78643,0 +(186,245:27351125,17500137:173670,78643,0 ) -(186,239:27688649,7095585:501378,78643,0 -(186,239:27852503,7095585:173670,78643,0 ) +(186,245:27688649,17500137:501378,78643,0 +(186,245:27852503,17500137:173670,78643,0 ) -(186,239:28190027,7095585:501378,78643,0 -(186,239:28353881,7095585:173670,78643,0 ) +(186,245:28190027,17500137:501378,78643,0 +(186,245:28353881,17500137:173670,78643,0 ) -(186,239:28691405,7095585:501378,78643,0 -(186,239:28855259,7095585:173670,78643,0 ) +(186,245:28691405,17500137:501378,78643,0 +(186,245:28855259,17500137:173670,78643,0 ) -(186,239:29192783,7095585:501378,78643,0 -(186,239:29356637,7095585:173670,78643,0 ) +(186,245:29192783,17500137:501378,78643,0 +(186,245:29356637,17500137:173670,78643,0 ) -(186,239:29694161,7095585:501378,78643,0 -(186,239:29858015,7095585:173670,78643,0 ) +(186,245:29694161,17500137:501378,78643,0 +(186,245:29858015,17500137:173670,78643,0 ) -(186,239:30195539,7095585:501378,78643,0 -(186,239:30359393,7095585:173670,78643,0 ) +(186,245:30195539,17500137:501378,78643,0 +(186,245:30359393,17500137:173670,78643,0 ) -(186,239:30696917,7095585:501378,78643,0 -(186,239:30860771,7095585:173670,78643,0 ) +(186,245:30696917,17500137:501378,78643,0 +(186,245:30860771,17500137:173670,78643,0 ) -(186,239:31239539,7095585:1343490,485622,11795 -k186,239:31239539,7095585:0 -k186,239:31387652,7095585:148113 ) -g186,239:30911859,7095585 -g186,239:32583029,7095585 +(186,245:31239539,17500137:1343490,485622,11795 +k186,245:31239539,17500137:0 +k186,245:31387652,17500137:148113 ) -(186,240:6630773,7937073:25952256,513147,11795 -g186,240:9448823,7937073 -h186,240:9448823,7937073:983040,0,0 -h186,240:10431863,7937073:0,0,0 -g186,240:7613813,7937073 -(186,240:7613813,7937073:1835010,485622,11795 -k186,240:9448823,7937073:67504 +g186,245:30911859,17500137 +g186,245:32583029,17500137 ) -g186,240:12757080,7937073 -g186,240:15715375,7937073 -g186,240:15715375,7937073 -(186,240:16156955,7937073:501378,78643,0 -$186,240:16156955,7937073 -(186,240:16320809,7937073:173670,78643,0 +(186,246:6630773,18365217:25952256,505283,126483 +g186,246:9710963,18365217 +h186,246:9710963,18365217:983040,0,0 +h186,246:10694003,18365217:0,0,0 +g186,246:7613813,18365217 +(186,246:7613813,18365217:2097150,485622,11795 +k186,246:9710963,18365217:329644 ) -$186,240:16658333,7937073 +g186,246:12887493,18365217 +g186,246:15400798,18365217 +g186,246:16989390,18365217 +g186,246:16989390,18365217 +(186,246:17159711,18365217:501378,78643,0 +$186,246:17159711,18365217 +(186,246:17323565,18365217:173670,78643,0 ) -(186,240:16658333,7937073:501378,78643,0 -(186,240:16822187,7937073:173670,78643,0 +$186,246:17661089,18365217 ) +(186,246:17661089,18365217:501378,78643,0 +(186,246:17824943,18365217:173670,78643,0 ) -(186,240:17159711,7937073:501378,78643,0 -(186,240:17323565,7937073:173670,78643,0 ) +(186,246:18162467,18365217:501378,78643,0 +(186,246:18326321,18365217:173670,78643,0 ) -(186,240:17661089,7937073:501378,78643,0 -(186,240:17824943,7937073:173670,78643,0 ) +(186,246:18663845,18365217:501378,78643,0 +(186,246:18827699,18365217:173670,78643,0 ) -(186,240:18162467,7937073:501378,78643,0 -(186,240:18326321,7937073:173670,78643,0 ) +(186,246:19165223,18365217:501378,78643,0 +(186,246:19329077,18365217:173670,78643,0 ) -(186,240:18663845,7937073:501378,78643,0 -(186,240:18827699,7937073:173670,78643,0 ) +(186,246:19666601,18365217:501378,78643,0 +(186,246:19830455,18365217:173670,78643,0 ) -(186,240:19165223,7937073:501378,78643,0 -(186,240:19329077,7937073:173670,78643,0 ) +(186,246:20167979,18365217:501378,78643,0 +(186,246:20331833,18365217:173670,78643,0 ) -(186,240:19666601,7937073:501378,78643,0 -(186,240:19830455,7937073:173670,78643,0 ) +(186,246:20669357,18365217:501378,78643,0 +(186,246:20833211,18365217:173670,78643,0 ) -(186,240:20167979,7937073:501378,78643,0 -(186,240:20331833,7937073:173670,78643,0 ) +(186,246:21170735,18365217:501378,78643,0 +(186,246:21334589,18365217:173670,78643,0 ) -(186,240:20669357,7937073:501378,78643,0 -(186,240:20833211,7937073:173670,78643,0 ) +(186,246:21672113,18365217:501378,78643,0 +(186,246:21835967,18365217:173670,78643,0 ) -(186,240:21170735,7937073:501378,78643,0 -(186,240:21334589,7937073:173670,78643,0 ) +(186,246:22173491,18365217:501378,78643,0 +(186,246:22337345,18365217:173670,78643,0 ) -(186,240:21672113,7937073:501378,78643,0 -(186,240:21835967,7937073:173670,78643,0 ) +(186,246:22674869,18365217:501378,78643,0 +(186,246:22838723,18365217:173670,78643,0 ) -(186,240:22173491,7937073:501378,78643,0 -(186,240:22337345,7937073:173670,78643,0 ) +(186,246:23176247,18365217:501378,78643,0 +(186,246:23340101,18365217:173670,78643,0 ) -(186,240:22674869,7937073:501378,78643,0 -(186,240:22838723,7937073:173670,78643,0 ) +(186,246:23677625,18365217:501378,78643,0 +(186,246:23841479,18365217:173670,78643,0 ) -(186,240:23176247,7937073:501378,78643,0 -(186,240:23340101,7937073:173670,78643,0 ) +(186,246:24179003,18365217:501378,78643,0 +(186,246:24342857,18365217:173670,78643,0 ) -(186,240:23677625,7937073:501378,78643,0 -(186,240:23841479,7937073:173670,78643,0 ) +(186,246:24680381,18365217:501378,78643,0 +(186,246:24844235,18365217:173670,78643,0 ) -(186,240:24179003,7937073:501378,78643,0 -(186,240:24342857,7937073:173670,78643,0 ) +(186,246:25181759,18365217:501378,78643,0 +(186,246:25345613,18365217:173670,78643,0 ) -(186,240:24680381,7937073:501378,78643,0 -(186,240:24844235,7937073:173670,78643,0 ) +(186,246:25683137,18365217:501378,78643,0 +(186,246:25846991,18365217:173670,78643,0 ) -(186,240:25181759,7937073:501378,78643,0 -(186,240:25345613,7937073:173670,78643,0 ) +(186,246:26184515,18365217:501378,78643,0 +(186,246:26348369,18365217:173670,78643,0 ) -(186,240:25683137,7937073:501378,78643,0 -(186,240:25846991,7937073:173670,78643,0 ) +(186,246:26685893,18365217:501378,78643,0 +(186,246:26849747,18365217:173670,78643,0 ) -(186,240:26184515,7937073:501378,78643,0 -(186,240:26348369,7937073:173670,78643,0 ) +(186,246:27187271,18365217:501378,78643,0 +(186,246:27351125,18365217:173670,78643,0 ) -(186,240:26685893,7937073:501378,78643,0 -(186,240:26849747,7937073:173670,78643,0 ) +(186,246:27688649,18365217:501378,78643,0 +(186,246:27852503,18365217:173670,78643,0 ) -(186,240:27187271,7937073:501378,78643,0 -(186,240:27351125,7937073:173670,78643,0 ) +(186,246:28190027,18365217:501378,78643,0 +(186,246:28353881,18365217:173670,78643,0 ) -(186,240:27688649,7937073:501378,78643,0 -(186,240:27852503,7937073:173670,78643,0 ) +(186,246:28691405,18365217:501378,78643,0 +(186,246:28855259,18365217:173670,78643,0 ) -(186,240:28190027,7937073:501378,78643,0 -(186,240:28353881,7937073:173670,78643,0 ) +(186,246:29192783,18365217:501378,78643,0 +(186,246:29356637,18365217:173670,78643,0 ) -(186,240:28691405,7937073:501378,78643,0 -(186,240:28855259,7937073:173670,78643,0 ) +(186,246:29694161,18365217:501378,78643,0 +(186,246:29858015,18365217:173670,78643,0 ) -(186,240:29192783,7937073:501378,78643,0 -(186,240:29356637,7937073:173670,78643,0 ) +(186,246:30195539,18365217:501378,78643,0 +(186,246:30359393,18365217:173670,78643,0 ) -(186,240:29694161,7937073:501378,78643,0 -(186,240:29858015,7937073:173670,78643,0 ) +(186,246:30696917,18365217:501378,78643,0 +(186,246:30860771,18365217:173670,78643,0 ) -(186,240:30195539,7937073:501378,78643,0 -(186,240:30359393,7937073:173670,78643,0 ) +(186,246:31239539,18365217:1343490,485622,11795 +k186,246:31239539,18365217:0 +k186,246:31387652,18365217:148113 ) -(186,240:30696917,7937073:501378,78643,0 -(186,240:30860771,7937073:173670,78643,0 +g186,246:30911859,18365217 +g186,246:32583029,18365217 ) +(186,247:6630773,19230297:25952256,513147,126483 +g186,247:9710963,19230297 +h186,247:9710963,19230297:983040,0,0 +h186,247:10694003,19230297:0,0,0 +g186,247:7613813,19230297 +(186,247:7613813,19230297:2097150,485622,11795 +k186,247:9710963,19230297:329644 ) -(186,240:31239539,7937073:1343490,485622,11795 -k186,240:31239539,7937073:0 -k186,240:31387652,7937073:148113 +g186,247:11382131,19230297 +g186,247:15090158,19230297 +g186,247:16857008,19230297 +g186,247:19678988,19230297 +g186,247:22215886,19230297 +g186,247:22215886,19230297 +(186,247:22674869,19230297:501378,78643,0 +$186,247:22674869,19230297 +(186,247:22838723,19230297:173670,78643,0 ) -g186,240:30911859,7937073 -g186,240:32583029,7937073 +$186,247:23176247,19230297 ) -(186,241:6630773,8778561:25952256,513147,134348 -g186,241:11873653,8778561 -h186,241:11873653,8778561:2818050,0,0 -h186,241:14691703,8778561:0,0,0 -g186,241:9448823,8778561 -(186,241:9448823,8778561:2424830,485622,11795 -k186,241:11873653,8778561:85195 +(186,247:23176247,19230297:501378,78643,0 +(186,247:23340101,19230297:173670,78643,0 ) -g186,241:14158893,8778561 -(186,241:14652821,8778561:501378,78643,0 -$186,241:14652821,8778561 -(186,241:14816675,8778561:173670,78643,0 ) -$186,241:15154199,8778561 +(186,247:23677625,19230297:501378,78643,0 +(186,247:23841479,19230297:173670,78643,0 ) -(186,241:15154199,8778561:501378,78643,0 -(186,241:15318053,8778561:173670,78643,0 ) +(186,247:24179003,19230297:501378,78643,0 +(186,247:24342857,19230297:173670,78643,0 ) -(186,241:15655577,8778561:501378,78643,0 -(186,241:15819431,8778561:173670,78643,0 ) +(186,247:24680381,19230297:501378,78643,0 +(186,247:24844235,19230297:173670,78643,0 ) -(186,241:16156955,8778561:501378,78643,0 -(186,241:16320809,8778561:173670,78643,0 ) +(186,247:25181759,19230297:501378,78643,0 +(186,247:25345613,19230297:173670,78643,0 ) -(186,241:16658333,8778561:501378,78643,0 -(186,241:16822187,8778561:173670,78643,0 ) +(186,247:25683137,19230297:501378,78643,0 +(186,247:25846991,19230297:173670,78643,0 ) -(186,241:17159711,8778561:501378,78643,0 -(186,241:17323565,8778561:173670,78643,0 ) +(186,247:26184515,19230297:501378,78643,0 +(186,247:26348369,19230297:173670,78643,0 ) -(186,241:17661089,8778561:501378,78643,0 -(186,241:17824943,8778561:173670,78643,0 ) +(186,247:26685893,19230297:501378,78643,0 +(186,247:26849747,19230297:173670,78643,0 ) -(186,241:18162467,8778561:501378,78643,0 -(186,241:18326321,8778561:173670,78643,0 ) +(186,247:27187271,19230297:501378,78643,0 +(186,247:27351125,19230297:173670,78643,0 ) -(186,241:18663845,8778561:501378,78643,0 -(186,241:18827699,8778561:173670,78643,0 ) +(186,247:27688649,19230297:501378,78643,0 +(186,247:27852503,19230297:173670,78643,0 ) -(186,241:19165223,8778561:501378,78643,0 -(186,241:19329077,8778561:173670,78643,0 ) +(186,247:28190027,19230297:501378,78643,0 +(186,247:28353881,19230297:173670,78643,0 ) -(186,241:19666601,8778561:501378,78643,0 -(186,241:19830455,8778561:173670,78643,0 ) +(186,247:28691405,19230297:501378,78643,0 +(186,247:28855259,19230297:173670,78643,0 ) -(186,241:20167979,8778561:501378,78643,0 -(186,241:20331833,8778561:173670,78643,0 ) +(186,247:29192783,19230297:501378,78643,0 +(186,247:29356637,19230297:173670,78643,0 ) -(186,241:20669357,8778561:501378,78643,0 -(186,241:20833211,8778561:173670,78643,0 ) +(186,247:29694161,19230297:501378,78643,0 +(186,247:29858015,19230297:173670,78643,0 ) -(186,241:21170735,8778561:501378,78643,0 -(186,241:21334589,8778561:173670,78643,0 ) +(186,247:30195539,19230297:501378,78643,0 +(186,247:30359393,19230297:173670,78643,0 ) -(186,241:21672113,8778561:501378,78643,0 -(186,241:21835967,8778561:173670,78643,0 ) +(186,247:30696917,19230297:501378,78643,0 +(186,247:30860771,19230297:173670,78643,0 ) -(186,241:22173491,8778561:501378,78643,0 -(186,241:22337345,8778561:173670,78643,0 ) +(186,247:31239539,19230297:1343490,485622,11795 +k186,247:31239539,19230297:0 +k186,247:31387652,19230297:148113 ) -(186,241:22674869,8778561:501378,78643,0 -(186,241:22838723,8778561:173670,78643,0 +g186,247:30911859,19230297 +g186,247:32583029,19230297 ) +(186,248:6630773,20095377:25952256,505283,134348 +g186,248:12529013,20095377 +h186,248:12529013,20095377:3080190,0,0 +h186,248:15609203,20095377:0,0,0 +g186,248:9710963,20095377 +(186,248:9710963,20095377:2818050,485622,11795 +k186,248:12529013,20095377:478415 ) -(186,241:23176247,8778561:501378,78643,0 -(186,241:23340101,8778561:173670,78643,0 +g186,248:14906004,20095377 +(186,248:15154199,20095377:501378,78643,0 +$186,248:15154199,20095377 +(186,248:15318053,20095377:173670,78643,0 ) +$186,248:15655577,20095377 ) -(186,241:23677625,8778561:501378,78643,0 -(186,241:23841479,8778561:173670,78643,0 +(186,248:15655577,20095377:501378,78643,0 +(186,248:15819431,20095377:173670,78643,0 ) ) -(186,241:24179003,8778561:501378,78643,0 -(186,241:24342857,8778561:173670,78643,0 +(186,248:16156955,20095377:501378,78643,0 +(186,248:16320809,20095377:173670,78643,0 ) ) -(186,241:24680381,8778561:501378,78643,0 -(186,241:24844235,8778561:173670,78643,0 +(186,248:16658333,20095377:501378,78643,0 +(186,248:16822187,20095377:173670,78643,0 ) ) -(186,241:25181759,8778561:501378,78643,0 -(186,241:25345613,8778561:173670,78643,0 +(186,248:17159711,20095377:501378,78643,0 +(186,248:17323565,20095377:173670,78643,0 ) ) -(186,241:25683137,8778561:501378,78643,0 -(186,241:25846991,8778561:173670,78643,0 +(186,248:17661089,20095377:501378,78643,0 +(186,248:17824943,20095377:173670,78643,0 ) ) -(186,241:26184515,8778561:501378,78643,0 -(186,241:26348369,8778561:173670,78643,0 +(186,248:18162467,20095377:501378,78643,0 +(186,248:18326321,20095377:173670,78643,0 ) ) -(186,241:26685893,8778561:501378,78643,0 -(186,241:26849747,8778561:173670,78643,0 +(186,248:18663845,20095377:501378,78643,0 +(186,248:18827699,20095377:173670,78643,0 ) ) -(186,241:27187271,8778561:501378,78643,0 -(186,241:27351125,8778561:173670,78643,0 +(186,248:19165223,20095377:501378,78643,0 +(186,248:19329077,20095377:173670,78643,0 ) ) -(186,241:27688649,8778561:501378,78643,0 -(186,241:27852503,8778561:173670,78643,0 +(186,248:19666601,20095377:501378,78643,0 +(186,248:19830455,20095377:173670,78643,0 ) ) -(186,241:28190027,8778561:501378,78643,0 -(186,241:28353881,8778561:173670,78643,0 +(186,248:20167979,20095377:501378,78643,0 +(186,248:20331833,20095377:173670,78643,0 ) ) -(186,241:28691405,8778561:501378,78643,0 -(186,241:28855259,8778561:173670,78643,0 +(186,248:20669357,20095377:501378,78643,0 +(186,248:20833211,20095377:173670,78643,0 ) ) -(186,241:29192783,8778561:501378,78643,0 -(186,241:29356637,8778561:173670,78643,0 +(186,248:21170735,20095377:501378,78643,0 +(186,248:21334589,20095377:173670,78643,0 ) ) -(186,241:29694161,8778561:501378,78643,0 -(186,241:29858015,8778561:173670,78643,0 +(186,248:21672113,20095377:501378,78643,0 +(186,248:21835967,20095377:173670,78643,0 ) ) -(186,241:30195539,8778561:501378,78643,0 -(186,241:30359393,8778561:173670,78643,0 +(186,248:22173491,20095377:501378,78643,0 +(186,248:22337345,20095377:173670,78643,0 ) ) -(186,241:30696917,8778561:501378,78643,0 -(186,241:30860771,8778561:173670,78643,0 +(186,248:22674869,20095377:501378,78643,0 +(186,248:22838723,20095377:173670,78643,0 ) ) -(186,241:31239539,8778561:1343490,485622,11795 -k186,241:31239539,8778561:0 -k186,241:31387652,8778561:148113 +(186,248:23176247,20095377:501378,78643,0 +(186,248:23340101,20095377:173670,78643,0 ) -g186,241:30911859,8778561 -g186,241:32583029,8778561 ) -(186,242:6630773,9620049:25952256,505283,11795 -g186,242:11873653,9620049 -h186,242:11873653,9620049:2818050,0,0 -h186,242:14691703,9620049:0,0,0 -g186,242:9448823,9620049 -(186,242:9448823,9620049:2424830,485622,11795 -k186,242:11873653,9620049:85195 +(186,248:23677625,20095377:501378,78643,0 +(186,248:23841479,20095377:173670,78643,0 ) -g186,242:13763711,9620049 -(186,242:14151443,9620049:501378,78643,0 -$186,242:14151443,9620049 -(186,242:14315297,9620049:173670,78643,0 ) -$186,242:14652821,9620049 +(186,248:24179003,20095377:501378,78643,0 +(186,248:24342857,20095377:173670,78643,0 ) -(186,242:14652821,9620049:501378,78643,0 -(186,242:14816675,9620049:173670,78643,0 ) +(186,248:24680381,20095377:501378,78643,0 +(186,248:24844235,20095377:173670,78643,0 ) -(186,242:15154199,9620049:501378,78643,0 -(186,242:15318053,9620049:173670,78643,0 ) +(186,248:25181759,20095377:501378,78643,0 +(186,248:25345613,20095377:173670,78643,0 ) -(186,242:15655577,9620049:501378,78643,0 -(186,242:15819431,9620049:173670,78643,0 ) +(186,248:25683137,20095377:501378,78643,0 +(186,248:25846991,20095377:173670,78643,0 ) -(186,242:16156955,9620049:501378,78643,0 -(186,242:16320809,9620049:173670,78643,0 ) +(186,248:26184515,20095377:501378,78643,0 +(186,248:26348369,20095377:173670,78643,0 ) -(186,242:16658333,9620049:501378,78643,0 -(186,242:16822187,9620049:173670,78643,0 ) +(186,248:26685893,20095377:501378,78643,0 +(186,248:26849747,20095377:173670,78643,0 ) -(186,242:17159711,9620049:501378,78643,0 -(186,242:17323565,9620049:173670,78643,0 ) +(186,248:27187271,20095377:501378,78643,0 +(186,248:27351125,20095377:173670,78643,0 ) -(186,242:17661089,9620049:501378,78643,0 -(186,242:17824943,9620049:173670,78643,0 ) +(186,248:27688649,20095377:501378,78643,0 +(186,248:27852503,20095377:173670,78643,0 ) -(186,242:18162467,9620049:501378,78643,0 -(186,242:18326321,9620049:173670,78643,0 ) +(186,248:28190027,20095377:501378,78643,0 +(186,248:28353881,20095377:173670,78643,0 ) -(186,242:18663845,9620049:501378,78643,0 -(186,242:18827699,9620049:173670,78643,0 ) +(186,248:28691405,20095377:501378,78643,0 +(186,248:28855259,20095377:173670,78643,0 ) -(186,242:19165223,9620049:501378,78643,0 -(186,242:19329077,9620049:173670,78643,0 ) +(186,248:29192783,20095377:501378,78643,0 +(186,248:29356637,20095377:173670,78643,0 ) -(186,242:19666601,9620049:501378,78643,0 -(186,242:19830455,9620049:173670,78643,0 ) +(186,248:29694161,20095377:501378,78643,0 +(186,248:29858015,20095377:173670,78643,0 ) -(186,242:20167979,9620049:501378,78643,0 -(186,242:20331833,9620049:173670,78643,0 ) +(186,248:30195539,20095377:501378,78643,0 +(186,248:30359393,20095377:173670,78643,0 ) -(186,242:20669357,9620049:501378,78643,0 -(186,242:20833211,9620049:173670,78643,0 ) +(186,248:30696917,20095377:501378,78643,0 +(186,248:30860771,20095377:173670,78643,0 ) -(186,242:21170735,9620049:501378,78643,0 -(186,242:21334589,9620049:173670,78643,0 ) +(186,248:31239539,20095377:1343490,485622,11795 +k186,248:31239539,20095377:0 +k186,248:31387652,20095377:148113 ) -(186,242:21672113,9620049:501378,78643,0 -(186,242:21835967,9620049:173670,78643,0 +g186,248:30911859,20095377 +g186,248:32583029,20095377 ) +(186,249:6630773,20960457:25952256,505283,11795 +g186,249:9710963,20960457 +h186,249:9710963,20960457:983040,0,0 +h186,249:10694003,20960457:0,0,0 +g186,249:7613813,20960457 +(186,249:7613813,20960457:2097150,485622,11795 +k186,249:9710963,20960457:329644 ) -(186,242:22173491,9620049:501378,78643,0 -(186,242:22337345,9620049:173670,78643,0 +g186,249:13146360,20960457 +g186,249:13146360,20960457 +(186,249:13148687,20960457:501378,78643,0 +$186,249:13148687,20960457 +(186,249:13312541,20960457:173670,78643,0 ) +$186,249:13650065,20960457 ) -(186,242:22674869,9620049:501378,78643,0 -(186,242:22838723,9620049:173670,78643,0 +(186,249:13650065,20960457:501378,78643,0 +(186,249:13813919,20960457:173670,78643,0 ) ) -(186,242:23176247,9620049:501378,78643,0 -(186,242:23340101,9620049:173670,78643,0 +(186,249:14151443,20960457:501378,78643,0 +(186,249:14315297,20960457:173670,78643,0 ) ) -(186,242:23677625,9620049:501378,78643,0 -(186,242:23841479,9620049:173670,78643,0 +(186,249:14652821,20960457:501378,78643,0 +(186,249:14816675,20960457:173670,78643,0 ) ) -(186,242:24179003,9620049:501378,78643,0 -(186,242:24342857,9620049:173670,78643,0 +(186,249:15154199,20960457:501378,78643,0 +(186,249:15318053,20960457:173670,78643,0 ) ) -(186,242:24680381,9620049:501378,78643,0 -(186,242:24844235,9620049:173670,78643,0 +(186,249:15655577,20960457:501378,78643,0 +(186,249:15819431,20960457:173670,78643,0 ) ) -(186,242:25181759,9620049:501378,78643,0 -(186,242:25345613,9620049:173670,78643,0 +(186,249:16156955,20960457:501378,78643,0 +(186,249:16320809,20960457:173670,78643,0 ) ) -(186,242:25683137,9620049:501378,78643,0 -(186,242:25846991,9620049:173670,78643,0 +(186,249:16658333,20960457:501378,78643,0 +(186,249:16822187,20960457:173670,78643,0 ) ) -(186,242:26184515,9620049:501378,78643,0 -(186,242:26348369,9620049:173670,78643,0 +(186,249:17159711,20960457:501378,78643,0 +(186,249:17323565,20960457:173670,78643,0 ) ) -(186,242:26685893,9620049:501378,78643,0 -(186,242:26849747,9620049:173670,78643,0 +(186,249:17661089,20960457:501378,78643,0 +(186,249:17824943,20960457:173670,78643,0 ) ) -(186,242:27187271,9620049:501378,78643,0 -(186,242:27351125,9620049:173670,78643,0 +(186,249:18162467,20960457:501378,78643,0 +(186,249:18326321,20960457:173670,78643,0 ) ) -(186,242:27688649,9620049:501378,78643,0 -(186,242:27852503,9620049:173670,78643,0 +(186,249:18663845,20960457:501378,78643,0 +(186,249:18827699,20960457:173670,78643,0 ) ) -(186,242:28190027,9620049:501378,78643,0 -(186,242:28353881,9620049:173670,78643,0 +(186,249:19165223,20960457:501378,78643,0 +(186,249:19329077,20960457:173670,78643,0 ) ) -(186,242:28691405,9620049:501378,78643,0 -(186,242:28855259,9620049:173670,78643,0 +(186,249:19666601,20960457:501378,78643,0 +(186,249:19830455,20960457:173670,78643,0 ) ) -(186,242:29192783,9620049:501378,78643,0 -(186,242:29356637,9620049:173670,78643,0 +(186,249:20167979,20960457:501378,78643,0 +(186,249:20331833,20960457:173670,78643,0 ) ) -(186,242:29694161,9620049:501378,78643,0 -(186,242:29858015,9620049:173670,78643,0 +(186,249:20669357,20960457:501378,78643,0 +(186,249:20833211,20960457:173670,78643,0 ) ) -(186,242:30195539,9620049:501378,78643,0 -(186,242:30359393,9620049:173670,78643,0 +(186,249:21170735,20960457:501378,78643,0 +(186,249:21334589,20960457:173670,78643,0 ) ) -(186,242:30696917,9620049:501378,78643,0 -(186,242:30860771,9620049:173670,78643,0 +(186,249:21672113,20960457:501378,78643,0 +(186,249:21835967,20960457:173670,78643,0 ) ) -(186,242:31239539,9620049:1343490,485622,11795 -k186,242:31239539,9620049:0 -k186,242:31387652,9620049:148113 +(186,249:22173491,20960457:501378,78643,0 +(186,249:22337345,20960457:173670,78643,0 ) -g186,242:30911859,9620049 -g186,242:32583029,9620049 ) -(186,243:6630773,10461537:25952256,513147,11795 -g186,243:9448823,10461537 -h186,243:9448823,10461537:983040,0,0 -h186,243:10431863,10461537:0,0,0 -g186,243:7613813,10461537 -(186,243:7613813,10461537:1835010,485622,11795 -k186,243:9448823,10461537:67504 +(186,249:22674869,20960457:501378,78643,0 +(186,249:22838723,20960457:173670,78643,0 ) -g186,243:12062398,10461537 -g186,243:13574969,10461537 -g186,243:13574969,10461537 -(186,243:13650065,10461537:501378,78643,0 -$186,243:13650065,10461537 -(186,243:13813919,10461537:173670,78643,0 ) -$186,243:14151443,10461537 +(186,249:23176247,20960457:501378,78643,0 +(186,249:23340101,20960457:173670,78643,0 ) -(186,243:14151443,10461537:501378,78643,0 -(186,243:14315297,10461537:173670,78643,0 ) +(186,249:23677625,20960457:501378,78643,0 +(186,249:23841479,20960457:173670,78643,0 ) -(186,243:14652821,10461537:501378,78643,0 -(186,243:14816675,10461537:173670,78643,0 ) +(186,249:24179003,20960457:501378,78643,0 +(186,249:24342857,20960457:173670,78643,0 ) -(186,243:15154199,10461537:501378,78643,0 -(186,243:15318053,10461537:173670,78643,0 ) +(186,249:24680381,20960457:501378,78643,0 +(186,249:24844235,20960457:173670,78643,0 ) -(186,243:15655577,10461537:501378,78643,0 -(186,243:15819431,10461537:173670,78643,0 ) +(186,249:25181759,20960457:501378,78643,0 +(186,249:25345613,20960457:173670,78643,0 ) -(186,243:16156955,10461537:501378,78643,0 -(186,243:16320809,10461537:173670,78643,0 ) +(186,249:25683137,20960457:501378,78643,0 +(186,249:25846991,20960457:173670,78643,0 ) -(186,243:16658333,10461537:501378,78643,0 -(186,243:16822187,10461537:173670,78643,0 ) +(186,249:26184515,20960457:501378,78643,0 +(186,249:26348369,20960457:173670,78643,0 ) -(186,243:17159711,10461537:501378,78643,0 -(186,243:17323565,10461537:173670,78643,0 ) +(186,249:26685893,20960457:501378,78643,0 +(186,249:26849747,20960457:173670,78643,0 ) -(186,243:17661089,10461537:501378,78643,0 -(186,243:17824943,10461537:173670,78643,0 ) +(186,249:27187271,20960457:501378,78643,0 +(186,249:27351125,20960457:173670,78643,0 ) -(186,243:18162467,10461537:501378,78643,0 -(186,243:18326321,10461537:173670,78643,0 ) +(186,249:27688649,20960457:501378,78643,0 +(186,249:27852503,20960457:173670,78643,0 ) -(186,243:18663845,10461537:501378,78643,0 -(186,243:18827699,10461537:173670,78643,0 ) +(186,249:28190027,20960457:501378,78643,0 +(186,249:28353881,20960457:173670,78643,0 ) -(186,243:19165223,10461537:501378,78643,0 -(186,243:19329077,10461537:173670,78643,0 ) +(186,249:28691405,20960457:501378,78643,0 +(186,249:28855259,20960457:173670,78643,0 ) -(186,243:19666601,10461537:501378,78643,0 -(186,243:19830455,10461537:173670,78643,0 ) +(186,249:29192783,20960457:501378,78643,0 +(186,249:29356637,20960457:173670,78643,0 ) -(186,243:20167979,10461537:501378,78643,0 -(186,243:20331833,10461537:173670,78643,0 ) +(186,249:29694161,20960457:501378,78643,0 +(186,249:29858015,20960457:173670,78643,0 ) -(186,243:20669357,10461537:501378,78643,0 -(186,243:20833211,10461537:173670,78643,0 ) +(186,249:30195539,20960457:501378,78643,0 +(186,249:30359393,20960457:173670,78643,0 ) -(186,243:21170735,10461537:501378,78643,0 -(186,243:21334589,10461537:173670,78643,0 ) +(186,249:30696917,20960457:501378,78643,0 +(186,249:30860771,20960457:173670,78643,0 ) -(186,243:21672113,10461537:501378,78643,0 -(186,243:21835967,10461537:173670,78643,0 ) +(186,249:31239540,20960457:1343490,485622,11795 +k186,249:31239540,20960457:0 +k186,249:31387653,20960457:148113 ) -(186,243:22173491,10461537:501378,78643,0 -(186,243:22337345,10461537:173670,78643,0 +g186,249:30911860,20960457 +g186,249:32583030,20960457 ) +(186,250:6630773,21825537:25952256,505283,134348 +g186,250:9710963,21825537 +h186,250:9710963,21825537:983040,0,0 +h186,250:10694003,21825537:0,0,0 +g186,250:7613813,21825537 +(186,250:7613813,21825537:2097150,485622,11795 +k186,250:9710963,21825537:329644 ) -(186,243:22674869,10461537:501378,78643,0 -(186,243:22838723,10461537:173670,78643,0 +g186,250:12279974,21825537 +g186,250:14881753,21825537 +g186,250:14881753,21825537 +(186,250:15154199,21825537:501378,78643,0 +$186,250:15154199,21825537 +(186,250:15318053,21825537:173670,78643,0 ) +$186,250:15655577,21825537 ) -(186,243:23176247,10461537:501378,78643,0 -(186,243:23340101,10461537:173670,78643,0 +(186,250:15655577,21825537:501378,78643,0 +(186,250:15819431,21825537:173670,78643,0 ) ) -(186,243:23677625,10461537:501378,78643,0 -(186,243:23841479,10461537:173670,78643,0 +(186,250:16156955,21825537:501378,78643,0 +(186,250:16320809,21825537:173670,78643,0 ) ) -(186,243:24179003,10461537:501378,78643,0 -(186,243:24342857,10461537:173670,78643,0 +(186,250:16658333,21825537:501378,78643,0 +(186,250:16822187,21825537:173670,78643,0 ) ) -(186,243:24680381,10461537:501378,78643,0 -(186,243:24844235,10461537:173670,78643,0 +(186,250:17159711,21825537:501378,78643,0 +(186,250:17323565,21825537:173670,78643,0 ) ) -(186,243:25181759,10461537:501378,78643,0 -(186,243:25345613,10461537:173670,78643,0 +(186,250:17661089,21825537:501378,78643,0 +(186,250:17824943,21825537:173670,78643,0 ) ) -(186,243:25683137,10461537:501378,78643,0 -(186,243:25846991,10461537:173670,78643,0 +(186,250:18162467,21825537:501378,78643,0 +(186,250:18326321,21825537:173670,78643,0 ) ) -(186,243:26184515,10461537:501378,78643,0 -(186,243:26348369,10461537:173670,78643,0 +(186,250:18663845,21825537:501378,78643,0 +(186,250:18827699,21825537:173670,78643,0 ) ) -(186,243:26685893,10461537:501378,78643,0 -(186,243:26849747,10461537:173670,78643,0 +(186,250:19165223,21825537:501378,78643,0 +(186,250:19329077,21825537:173670,78643,0 ) ) -(186,243:27187271,10461537:501378,78643,0 -(186,243:27351125,10461537:173670,78643,0 +(186,250:19666601,21825537:501378,78643,0 +(186,250:19830455,21825537:173670,78643,0 ) ) -(186,243:27688649,10461537:501378,78643,0 -(186,243:27852503,10461537:173670,78643,0 +(186,250:20167979,21825537:501378,78643,0 +(186,250:20331833,21825537:173670,78643,0 ) ) -(186,243:28190027,10461537:501378,78643,0 -(186,243:28353881,10461537:173670,78643,0 +(186,250:20669357,21825537:501378,78643,0 +(186,250:20833211,21825537:173670,78643,0 ) ) -(186,243:28691405,10461537:501378,78643,0 -(186,243:28855259,10461537:173670,78643,0 +(186,250:21170735,21825537:501378,78643,0 +(186,250:21334589,21825537:173670,78643,0 ) ) -(186,243:29192783,10461537:501378,78643,0 -(186,243:29356637,10461537:173670,78643,0 +(186,250:21672113,21825537:501378,78643,0 +(186,250:21835967,21825537:173670,78643,0 ) ) -(186,243:29694161,10461537:501378,78643,0 -(186,243:29858015,10461537:173670,78643,0 +(186,250:22173491,21825537:501378,78643,0 +(186,250:22337345,21825537:173670,78643,0 ) ) -(186,243:30195539,10461537:501378,78643,0 -(186,243:30359393,10461537:173670,78643,0 +(186,250:22674869,21825537:501378,78643,0 +(186,250:22838723,21825537:173670,78643,0 ) ) -(186,243:30696917,10461537:501378,78643,0 -(186,243:30860771,10461537:173670,78643,0 +(186,250:23176247,21825537:501378,78643,0 +(186,250:23340101,21825537:173670,78643,0 ) ) -(186,243:31239539,10461537:1343490,485622,11795 -k186,243:31239539,10461537:0 -k186,243:31387652,10461537:148113 +(186,250:23677625,21825537:501378,78643,0 +(186,250:23841479,21825537:173670,78643,0 ) -g186,243:30911859,10461537 -g186,243:32583029,10461537 ) -(186,244:6630773,11303025:25952256,513147,11795 -g186,244:11873653,11303025 -h186,244:11873653,11303025:2818050,0,0 -h186,244:14691703,11303025:0,0,0 -g186,244:9448823,11303025 -(186,244:9448823,11303025:2424830,485622,11795 -k186,244:11873653,11303025:85195 +(186,250:24179003,21825537:501378,78643,0 +(186,250:24342857,21825537:173670,78643,0 ) -g186,244:13706040,11303025 -(186,244:14151443,11303025:501378,78643,0 -$186,244:14151443,11303025 -(186,244:14315297,11303025:173670,78643,0 ) -$186,244:14652821,11303025 +(186,250:24680381,21825537:501378,78643,0 +(186,250:24844235,21825537:173670,78643,0 ) -(186,244:14652821,11303025:501378,78643,0 -(186,244:14816675,11303025:173670,78643,0 ) +(186,250:25181759,21825537:501378,78643,0 +(186,250:25345613,21825537:173670,78643,0 ) -(186,244:15154199,11303025:501378,78643,0 -(186,244:15318053,11303025:173670,78643,0 ) +(186,250:25683137,21825537:501378,78643,0 +(186,250:25846991,21825537:173670,78643,0 ) -(186,244:15655577,11303025:501378,78643,0 -(186,244:15819431,11303025:173670,78643,0 ) +(186,250:26184515,21825537:501378,78643,0 +(186,250:26348369,21825537:173670,78643,0 ) -(186,244:16156955,11303025:501378,78643,0 -(186,244:16320809,11303025:173670,78643,0 ) +(186,250:26685893,21825537:501378,78643,0 +(186,250:26849747,21825537:173670,78643,0 ) -(186,244:16658333,11303025:501378,78643,0 -(186,244:16822187,11303025:173670,78643,0 ) +(186,250:27187271,21825537:501378,78643,0 +(186,250:27351125,21825537:173670,78643,0 ) -(186,244:17159711,11303025:501378,78643,0 -(186,244:17323565,11303025:173670,78643,0 ) +(186,250:27688649,21825537:501378,78643,0 +(186,250:27852503,21825537:173670,78643,0 ) -(186,244:17661089,11303025:501378,78643,0 -(186,244:17824943,11303025:173670,78643,0 ) +(186,250:28190027,21825537:501378,78643,0 +(186,250:28353881,21825537:173670,78643,0 ) -(186,244:18162467,11303025:501378,78643,0 -(186,244:18326321,11303025:173670,78643,0 ) +(186,250:28691405,21825537:501378,78643,0 +(186,250:28855259,21825537:173670,78643,0 ) -(186,244:18663845,11303025:501378,78643,0 -(186,244:18827699,11303025:173670,78643,0 ) +(186,250:29192783,21825537:501378,78643,0 +(186,250:29356637,21825537:173670,78643,0 ) -(186,244:19165223,11303025:501378,78643,0 -(186,244:19329077,11303025:173670,78643,0 ) +(186,250:29694161,21825537:501378,78643,0 +(186,250:29858015,21825537:173670,78643,0 ) -(186,244:19666601,11303025:501378,78643,0 -(186,244:19830455,11303025:173670,78643,0 ) +(186,250:30195539,21825537:501378,78643,0 +(186,250:30359393,21825537:173670,78643,0 ) -(186,244:20167979,11303025:501378,78643,0 -(186,244:20331833,11303025:173670,78643,0 ) +(186,250:30696917,21825537:501378,78643,0 +(186,250:30860771,21825537:173670,78643,0 ) -(186,244:20669357,11303025:501378,78643,0 -(186,244:20833211,11303025:173670,78643,0 ) +(186,250:31239539,21825537:1343490,485622,11795 +k186,250:31239539,21825537:0 +k186,250:31387652,21825537:148113 ) -(186,244:21170735,11303025:501378,78643,0 -(186,244:21334589,11303025:173670,78643,0 +g186,250:30911859,21825537 +g186,250:32583029,21825537 ) +(186,251:6630773,23345977:25952256,505283,134348 +g186,251:7613813,23345977 +h186,251:7613813,23345977:0,0,0 +g186,251:6630773,23345977 +k186,251:21048037,23345977:10191502 +k186,251:31239539,23345977:10191502 +(186,251:31239539,23345977:1343490,485622,11795 +k186,251:31358161,23345977:118622 ) -(186,244:21672113,11303025:501378,78643,0 -(186,244:21835967,11303025:173670,78643,0 +g186,251:31239539,23345977 +g186,251:32583029,23345977 ) +(186,252:6630773,24866417:25952256,505283,11795 +g186,252:7613813,24866417 +h186,252:7613813,24866417:0,0,0 +g186,252:6630773,24866417 +g186,252:9374110,24866417 +k186,252:21232520,24866417:10007018 +k186,252:31239538,24866417:10007018 +(186,252:31239538,24866417:1343490,485622,11795 +k186,252:31358160,24866417:118622 ) -(186,244:22173491,11303025:501378,78643,0 -(186,244:22337345,11303025:173670,78643,0 +g186,252:31239538,24866417 +g186,252:32583028,24866417 ) +(186,253:6630773,26386857:25952256,513147,126483 +g186,253:7613813,26386857 +h186,253:7613813,26386857:0,0,0 +g186,253:6630773,26386857 +g186,253:10399748,26386857 +g186,253:12455612,26386857 +g186,253:13349523,26386857 +g186,253:14006193,26386857 +k186,253:23735995,26386857:7503544 +k186,253:31239539,26386857:7503544 +(186,253:31239539,26386857:1343490,485622,11795 +k186,253:31358161,26386857:118622 ) -(186,244:22674869,11303025:501378,78643,0 -(186,244:22838723,11303025:173670,78643,0 +g186,253:31239539,26386857 +g186,253:32583029,26386857 ) +(186,254:6630773,27907297:25952256,513147,134348 +g186,254:7613813,27907297 +h186,254:7613813,27907297:0,0,0 +g186,254:6630773,27907297 +g186,254:8686637,27907297 +g186,254:9580548,27907297 +g186,254:10237218,27907297 +g186,254:12667948,27907297 +g186,254:13720456,27907297 +k186,254:23970942,27907297:7268598 +k186,254:31239539,27907297:7268597 +(186,254:31239539,27907297:1343490,479724,0 +k186,254:31358161,27907297:118622 ) -(186,244:23176247,11303025:501378,78643,0 -(186,244:23340101,11303025:173670,78643,0 +g186,254:31239539,27907297 +g186,254:32583029,27907297 ) +(1,128:6630773,29427737:25952256,505283,126483 +g1,128:7613813,29427737 +h1,128:7613813,29427737:0,0,0 +g1,128:6630773,29427737 +g1,128:10430550,29427737 +g1,128:12723654,29427737 +k1,128:23639330,29427737:7600210 +k1,128:31239539,29427737:7600209 +(1,128:31239539,29427737:1343490,485622,11795 +k1,128:31358161,29427737:118622 ) -(186,244:23677625,11303025:501378,78643,0 -(186,244:23841479,11303025:173670,78643,0 +g1,128:31239539,29427737 +g1,128:32583029,29427737 ) +] +(1,129:32583029,45706769:0,0,0 +g1,129:32583029,45706769 ) -(186,244:24179003,11303025:501378,78643,0 -(186,244:24342857,11303025:173670,78643,0 ) +] +(1,129:6630773,47279633:25952256,0,0 +h1,129:6630773,47279633:25952256,0,0 ) -(186,244:24680381,11303025:501378,78643,0 -(186,244:24844235,11303025:173670,78643,0 +] +(1,129:4262630,4025873:0,0,0 +[1,129:-473656,4025873:0,0,0 +(1,129:-473656,-710413:0,0,0 +(1,129:-473656,-710413:0,0,0 +g1,129:-473656,-710413 ) +g1,129:-473656,-710413 +) +] ) -(186,244:25181759,11303025:501378,78643,0 -(186,244:25345613,11303025:173670,78643,0 +] +!67143 +}7 +Input:187:C:\Users\aphalo_2\Documents\Own_manuscripts\Books\learnr-book-crc\using-r-main-crc.lof +!107 +{8 +[1,130:4262630,47279633:28320399,43253760,0 +(1,130:4262630,4025873:0,0,0 +[1,130:-473656,4025873:0,0,0 +(1,130:-473656,-710413:0,0,0 +(1,130:-473656,-644877:0,0,0 +k1,130:-473656,-644877:-65536 ) +(1,130:-473656,4736287:0,0,0 +k1,130:-473656,4736287:5209943 ) -(186,244:25683137,11303025:501378,78643,0 -(186,244:25846991,11303025:173670,78643,0 +g1,130:-473656,-710413 ) +] ) -(186,244:26184515,11303025:501378,78643,0 -(186,244:26348369,11303025:173670,78643,0 +[1,130:6630773,47279633:25952256,43253760,0 +[1,130:6630773,4812305:25952256,786432,0 +(1,130:6630773,4812305:25952256,0,0 +(1,130:6630773,4812305:25952256,0,0 +g1,130:3078558,4812305 +[1,130:3078558,4812305:0,0,0 +(1,130:3078558,2439708:0,1703936,0 +k1,130:1358238,2439708:-1720320 +(1,129:1358238,2439708:1720320,1703936,0 +(1,129:1358238,2439708:1179648,16384,0 +r1,130:2537886,2439708:1179648,16384,0 ) +g1,129:3062174,2439708 +(1,129:3062174,2439708:16384,1703936,0 +[1,129:3062174,2439708:25952256,1703936,0 +(1,129:3062174,1915420:25952256,1179648,0 +(1,129:3062174,1915420:16384,1179648,0 +r1,130:3078558,1915420:16384,1179648,0 ) -(186,244:26685893,11303025:501378,78643,0 -(186,244:26849747,11303025:173670,78643,0 +k1,129:29014430,1915420:25935872 +g1,129:29014430,1915420 ) +] ) -(186,244:27187271,11303025:501378,78643,0 -(186,244:27351125,11303025:173670,78643,0 ) ) -(186,244:27688649,11303025:501378,78643,0 -(186,244:27852503,11303025:173670,78643,0 +] +[1,130:3078558,4812305:0,0,0 +(1,130:3078558,2439708:0,1703936,0 +g1,130:29030814,2439708 +g1,130:36135244,2439708 +(1,129:36135244,2439708:1720320,1703936,0 +(1,129:36135244,2439708:16384,1703936,0 +[1,129:36135244,2439708:25952256,1703936,0 +(1,129:36135244,1915420:25952256,1179648,0 +(1,129:36135244,1915420:16384,1179648,0 +r1,130:36151628,1915420:16384,1179648,0 ) +k1,129:62087500,1915420:25935872 +g1,129:62087500,1915420 ) -(186,244:28190027,11303025:501378,78643,0 -(186,244:28353881,11303025:173670,78643,0 +] ) +g1,129:36675916,2439708 +(1,129:36675916,2439708:1179648,16384,0 +r1,130:37855564,2439708:1179648,16384,0 ) -(186,244:28691405,11303025:501378,78643,0 -(186,244:28855259,11303025:173670,78643,0 ) +k1,130:3078556,2439708:-34777008 ) -(186,244:29192783,11303025:501378,78643,0 -(186,244:29356637,11303025:173670,78643,0 +] +[1,130:3078558,4812305:0,0,0 +(1,130:3078558,49800853:0,16384,2228224 +k1,130:1358238,49800853:-1720320 +(1,129:1358238,49800853:1720320,16384,2228224 +(1,129:1358238,49800853:1179648,16384,0 +r1,130:2537886,49800853:1179648,16384,0 ) +g1,129:3062174,49800853 +(1,129:3062174,52029077:16384,1703936,0 +[1,129:3062174,52029077:25952256,1703936,0 +(1,129:3062174,51504789:25952256,1179648,0 +(1,129:3062174,51504789:16384,1179648,0 +r1,130:3078558,51504789:16384,1179648,0 ) -(186,244:29694161,11303025:501378,78643,0 -(186,244:29858015,11303025:173670,78643,0 +k1,129:29014430,51504789:25935872 +g1,129:29014430,51504789 ) +] ) -(186,244:30195539,11303025:501378,78643,0 -(186,244:30359393,11303025:173670,78643,0 ) ) -(186,244:30696917,11303025:501378,78643,0 -(186,244:30860771,11303025:173670,78643,0 +] +[1,130:3078558,4812305:0,0,0 +(1,130:3078558,49800853:0,16384,2228224 +g1,130:29030814,49800853 +g1,130:36135244,49800853 +(1,129:36135244,49800853:1720320,16384,2228224 +(1,129:36135244,52029077:16384,1703936,0 +[1,129:36135244,52029077:25952256,1703936,0 +(1,129:36135244,51504789:25952256,1179648,0 +(1,129:36135244,51504789:16384,1179648,0 +r1,130:36151628,51504789:16384,1179648,0 ) +k1,129:62087500,51504789:25935872 +g1,129:62087500,51504789 ) -(186,244:31239540,11303025:1343490,485622,11795 -k186,244:31239540,11303025:0 -k186,244:31387653,11303025:148113 +] ) -g186,244:30911860,11303025 -g186,244:32583030,11303025 +g1,129:36675916,49800853 +(1,129:36675916,49800853:1179648,16384,0 +r1,130:37855564,49800853:1179648,16384,0 ) -(186,245:6630773,12144513:25952256,505283,126483 -g186,245:11873653,12144513 -h186,245:11873653,12144513:2818050,0,0 -h186,245:14691703,12144513:0,0,0 -g186,245:9448823,12144513 -(186,245:9448823,12144513:2424830,485622,11795 -k186,245:11873653,12144513:85195 ) -g186,245:13862015,12144513 -(186,245:14151443,12144513:501378,78643,0 -$186,245:14151443,12144513 -(186,245:14315297,12144513:173670,78643,0 +k1,130:3078556,49800853:-34777008 ) -$186,245:14652821,12144513 +] +g1,130:6630773,4812305 ) -(186,245:14652821,12144513:501378,78643,0 -(186,245:14816675,12144513:173670,78643,0 ) +] +[1,130:6630773,45706769:25952256,40108032,0 +(1,130:6630773,45706769:25952256,40108032,0 +(1,130:6630773,45706769:0,0,0 +g1,130:6630773,45706769 ) -(186,245:15154199,12144513:501378,78643,0 -(186,245:15318053,12144513:173670,78643,0 +[1,130:6630773,45706769:25952256,40108032,0 +[1,129:6630773,12185121:25952256,6586384,0 +(1,129:6630773,7073297:25952256,32768,229376 +(1,129:6630773,7073297:0,32768,229376 +(1,129:6630773,7073297:5505024,32768,229376 +r1,130:12135797,7073297:5505024,262144,229376 +) +k1,129:6630773,7073297:-5505024 ) ) -(186,245:15655577,12144513:501378,78643,0 -(186,245:15819431,12144513:173670,78643,0 +(1,129:6630773,8842777:25952256,923664,241827 +h1,129:6630773,8842777:0,0,0 +g1,129:9103315,8842777 +g1,129:10667528,8842777 +k1,129:23823552,8842777:8759476 +k1,129:32583028,8842777:8759476 ) +(1,129:6630773,9498145:25952256,32768,0 +(1,129:6630773,9498145:5505024,32768,0 +r1,130:12135797,9498145:5505024,32768,0 ) -(186,245:16156955,12144513:501378,78643,0 -(186,245:16320809,12144513:173670,78643,0 +k1,129:22359413,9498145:10223616 +k1,129:32583029,9498145:10223616 ) +] +(187,3:6630773,13705561:25952256,505283,7863 +g187,3:9448823,13705561 +h187,3:9448823,13705561:983040,0,0 +h187,3:10431863,13705561:0,0,0 +g187,3:7613813,13705561 +(187,3:7613813,13705561:1835010,485622,0 +k187,3:9448823,13705561:864422 ) -(186,245:16658333,12144513:501378,78643,0 -(186,245:16822187,12144513:173670,78643,0 +g187,3:10844739,13705561 +g187,3:11488957,13705561 +g187,3:13909202,13705561 +(187,3:14151443,13705561:501378,78643,0 +$187,3:14151443,13705561 +(187,3:14315297,13705561:173670,78643,0 ) +$187,3:14652821,13705561 ) -(186,245:17159711,12144513:501378,78643,0 -(186,245:17323565,12144513:173670,78643,0 +(187,3:14652821,13705561:501378,78643,0 +(187,3:14816675,13705561:173670,78643,0 ) ) -(186,245:17661089,12144513:501378,78643,0 -(186,245:17824943,12144513:173670,78643,0 +(187,3:15154199,13705561:501378,78643,0 +(187,3:15318053,13705561:173670,78643,0 ) ) -(186,245:18162467,12144513:501378,78643,0 -(186,245:18326321,12144513:173670,78643,0 +(187,3:15655577,13705561:501378,78643,0 +(187,3:15819431,13705561:173670,78643,0 ) ) -(186,245:18663845,12144513:501378,78643,0 -(186,245:18827699,12144513:173670,78643,0 +(187,3:16156955,13705561:501378,78643,0 +(187,3:16320809,13705561:173670,78643,0 ) ) -(186,245:19165223,12144513:501378,78643,0 -(186,245:19329077,12144513:173670,78643,0 +(187,3:16658333,13705561:501378,78643,0 +(187,3:16822187,13705561:173670,78643,0 ) ) -(186,245:19666601,12144513:501378,78643,0 -(186,245:19830455,12144513:173670,78643,0 +(187,3:17159711,13705561:501378,78643,0 +(187,3:17323565,13705561:173670,78643,0 ) ) -(186,245:20167979,12144513:501378,78643,0 -(186,245:20331833,12144513:173670,78643,0 +(187,3:17661089,13705561:501378,78643,0 +(187,3:17824943,13705561:173670,78643,0 ) ) -(186,245:20669357,12144513:501378,78643,0 -(186,245:20833211,12144513:173670,78643,0 +(187,3:18162467,13705561:501378,78643,0 +(187,3:18326321,13705561:173670,78643,0 ) ) -(186,245:21170735,12144513:501378,78643,0 -(186,245:21334589,12144513:173670,78643,0 +(187,3:18663845,13705561:501378,78643,0 +(187,3:18827699,13705561:173670,78643,0 ) ) -(186,245:21672113,12144513:501378,78643,0 -(186,245:21835967,12144513:173670,78643,0 +(187,3:19165223,13705561:501378,78643,0 +(187,3:19329077,13705561:173670,78643,0 ) ) -(186,245:22173491,12144513:501378,78643,0 -(186,245:22337345,12144513:173670,78643,0 +(187,3:19666601,13705561:501378,78643,0 +(187,3:19830455,13705561:173670,78643,0 ) ) -(186,245:22674869,12144513:501378,78643,0 -(186,245:22838723,12144513:173670,78643,0 +(187,3:20167979,13705561:501378,78643,0 +(187,3:20331833,13705561:173670,78643,0 ) ) -(186,245:23176247,12144513:501378,78643,0 -(186,245:23340101,12144513:173670,78643,0 +(187,3:20669357,13705561:501378,78643,0 +(187,3:20833211,13705561:173670,78643,0 ) ) -(186,245:23677625,12144513:501378,78643,0 -(186,245:23841479,12144513:173670,78643,0 +(187,3:21170735,13705561:501378,78643,0 +(187,3:21334589,13705561:173670,78643,0 ) ) -(186,245:24179003,12144513:501378,78643,0 -(186,245:24342857,12144513:173670,78643,0 +(187,3:21672113,13705561:501378,78643,0 +(187,3:21835967,13705561:173670,78643,0 ) ) -(186,245:24680381,12144513:501378,78643,0 -(186,245:24844235,12144513:173670,78643,0 +(187,3:22173491,13705561:501378,78643,0 +(187,3:22337345,13705561:173670,78643,0 ) ) -(186,245:25181759,12144513:501378,78643,0 -(186,245:25345613,12144513:173670,78643,0 +(187,3:22674869,13705561:501378,78643,0 +(187,3:22838723,13705561:173670,78643,0 ) ) -(186,245:25683137,12144513:501378,78643,0 -(186,245:25846991,12144513:173670,78643,0 +(187,3:23176247,13705561:501378,78643,0 +(187,3:23340101,13705561:173670,78643,0 ) ) -(186,245:26184515,12144513:501378,78643,0 -(186,245:26348369,12144513:173670,78643,0 +(187,3:23677625,13705561:501378,78643,0 +(187,3:23841479,13705561:173670,78643,0 ) ) -(186,245:26685893,12144513:501378,78643,0 -(186,245:26849747,12144513:173670,78643,0 +(187,3:24179003,13705561:501378,78643,0 +(187,3:24342857,13705561:173670,78643,0 ) ) -(186,245:27187271,12144513:501378,78643,0 -(186,245:27351125,12144513:173670,78643,0 +(187,3:24680381,13705561:501378,78643,0 +(187,3:24844235,13705561:173670,78643,0 ) ) -(186,245:27688649,12144513:501378,78643,0 -(186,245:27852503,12144513:173670,78643,0 +(187,3:25181759,13705561:501378,78643,0 +(187,3:25345613,13705561:173670,78643,0 ) ) -(186,245:28190027,12144513:501378,78643,0 -(186,245:28353881,12144513:173670,78643,0 +(187,3:25683137,13705561:501378,78643,0 +(187,3:25846991,13705561:173670,78643,0 ) ) -(186,245:28691405,12144513:501378,78643,0 -(186,245:28855259,12144513:173670,78643,0 +(187,3:26184515,13705561:501378,78643,0 +(187,3:26348369,13705561:173670,78643,0 ) ) -(186,245:29192783,12144513:501378,78643,0 -(186,245:29356637,12144513:173670,78643,0 +(187,3:26685893,13705561:501378,78643,0 +(187,3:26849747,13705561:173670,78643,0 ) ) -(186,245:29694161,12144513:501378,78643,0 -(186,245:29858015,12144513:173670,78643,0 +(187,3:27187271,13705561:501378,78643,0 +(187,3:27351125,13705561:173670,78643,0 ) ) -(186,245:30195539,12144513:501378,78643,0 -(186,245:30359393,12144513:173670,78643,0 +(187,3:27688649,13705561:501378,78643,0 +(187,3:27852503,13705561:173670,78643,0 ) ) -(186,245:30696917,12144513:501378,78643,0 -(186,245:30860771,12144513:173670,78643,0 +(187,3:28190027,13705561:501378,78643,0 +(187,3:28353881,13705561:173670,78643,0 ) ) -(186,245:31239539,12144513:1343490,485622,11795 -k186,245:31239539,12144513:0 -k186,245:31387652,12144513:148113 +(187,3:28691405,13705561:501378,78643,0 +(187,3:28855259,13705561:173670,78643,0 ) -g186,245:30911859,12144513 -g186,245:32583029,12144513 ) -(186,246:6630773,12986001:25952256,505283,126483 -g186,246:9448823,12986001 -h186,246:9448823,12986001:983040,0,0 -h186,246:10431863,12986001:0,0,0 -g186,246:7613813,12986001 -(186,246:7613813,12986001:1835010,485622,11795 -k186,246:9448823,12986001:67504 +(187,3:29192783,13705561:501378,78643,0 +(187,3:29356637,13705561:173670,78643,0 ) -g186,246:12625353,12986001 -g186,246:15138658,12986001 -g186,246:16727250,12986001 -g186,246:16727250,12986001 -(186,246:17159711,12986001:501378,78643,0 -$186,246:17159711,12986001 -(186,246:17323565,12986001:173670,78643,0 ) -$186,246:17661089,12986001 +(187,3:29694161,13705561:501378,78643,0 +(187,3:29858015,13705561:173670,78643,0 ) -(186,246:17661089,12986001:501378,78643,0 -(186,246:17824943,12986001:173670,78643,0 ) +(187,3:30195539,13705561:501378,78643,0 +(187,3:30359393,13705561:173670,78643,0 ) -(186,246:18162467,12986001:501378,78643,0 -(186,246:18326321,12986001:173670,78643,0 ) +(187,3:30696917,13705561:501378,78643,0 +(187,3:30860771,13705561:173670,78643,0 ) -(186,246:18663845,12986001:501378,78643,0 -(186,246:18827699,12986001:173670,78643,0 ) +(187,3:31239538,13705561:1343490,485622,0 +k187,3:31786110,13705561:546572 ) -(186,246:19165223,12986001:501378,78643,0 -(186,246:19329077,12986001:173670,78643,0 +g187,3:30911858,13705561 +g187,3:32583028,13705561 ) +(187,4:6630773,14570641:25952256,505283,126483 +g187,4:9448823,14570641 +h187,4:9448823,14570641:983040,0,0 +h187,4:10431863,14570641:0,0,0 +g187,4:7613813,14570641 +(187,4:7613813,14570641:1835010,485622,0 +k187,4:9448823,14570641:864422 ) -(186,246:19666601,12986001:501378,78643,0 -(186,246:19830455,12986001:173670,78643,0 +g187,4:11504032,14570641 +g187,4:12319299,14570641 +g187,4:14782797,14570641 +(187,4:15154199,14570641:501378,78643,0 +$187,4:15154199,14570641 +(187,4:15318053,14570641:173670,78643,0 ) +$187,4:15655577,14570641 ) -(186,246:20167979,12986001:501378,78643,0 -(186,246:20331833,12986001:173670,78643,0 +(187,4:15655577,14570641:501378,78643,0 +(187,4:15819431,14570641:173670,78643,0 ) ) -(186,246:20669357,12986001:501378,78643,0 -(186,246:20833211,12986001:173670,78643,0 +(187,4:16156955,14570641:501378,78643,0 +(187,4:16320809,14570641:173670,78643,0 ) ) -(186,246:21170735,12986001:501378,78643,0 -(186,246:21334589,12986001:173670,78643,0 +(187,4:16658333,14570641:501378,78643,0 +(187,4:16822187,14570641:173670,78643,0 ) ) -(186,246:21672113,12986001:501378,78643,0 -(186,246:21835967,12986001:173670,78643,0 +(187,4:17159711,14570641:501378,78643,0 +(187,4:17323565,14570641:173670,78643,0 ) ) -(186,246:22173491,12986001:501378,78643,0 -(186,246:22337345,12986001:173670,78643,0 +(187,4:17661089,14570641:501378,78643,0 +(187,4:17824943,14570641:173670,78643,0 ) ) -(186,246:22674869,12986001:501378,78643,0 -(186,246:22838723,12986001:173670,78643,0 +(187,4:18162467,14570641:501378,78643,0 +(187,4:18326321,14570641:173670,78643,0 ) ) -(186,246:23176247,12986001:501378,78643,0 -(186,246:23340101,12986001:173670,78643,0 +(187,4:18663845,14570641:501378,78643,0 +(187,4:18827699,14570641:173670,78643,0 ) ) -(186,246:23677625,12986001:501378,78643,0 -(186,246:23841479,12986001:173670,78643,0 +(187,4:19165223,14570641:501378,78643,0 +(187,4:19329077,14570641:173670,78643,0 ) ) -(186,246:24179003,12986001:501378,78643,0 -(186,246:24342857,12986001:173670,78643,0 +(187,4:19666601,14570641:501378,78643,0 +(187,4:19830455,14570641:173670,78643,0 ) ) -(186,246:24680381,12986001:501378,78643,0 -(186,246:24844235,12986001:173670,78643,0 +(187,4:20167979,14570641:501378,78643,0 +(187,4:20331833,14570641:173670,78643,0 ) ) -(186,246:25181759,12986001:501378,78643,0 -(186,246:25345613,12986001:173670,78643,0 +(187,4:20669357,14570641:501378,78643,0 +(187,4:20833211,14570641:173670,78643,0 ) ) -(186,246:25683137,12986001:501378,78643,0 -(186,246:25846991,12986001:173670,78643,0 +(187,4:21170735,14570641:501378,78643,0 +(187,4:21334589,14570641:173670,78643,0 ) ) -(186,246:26184515,12986001:501378,78643,0 -(186,246:26348369,12986001:173670,78643,0 +(187,4:21672113,14570641:501378,78643,0 +(187,4:21835967,14570641:173670,78643,0 ) ) -(186,246:26685893,12986001:501378,78643,0 -(186,246:26849747,12986001:173670,78643,0 +(187,4:22173491,14570641:501378,78643,0 +(187,4:22337345,14570641:173670,78643,0 ) ) -(186,246:27187271,12986001:501378,78643,0 -(186,246:27351125,12986001:173670,78643,0 +(187,4:22674869,14570641:501378,78643,0 +(187,4:22838723,14570641:173670,78643,0 ) ) -(186,246:27688649,12986001:501378,78643,0 -(186,246:27852503,12986001:173670,78643,0 +(187,4:23176247,14570641:501378,78643,0 +(187,4:23340101,14570641:173670,78643,0 ) ) -(186,246:28190027,12986001:501378,78643,0 -(186,246:28353881,12986001:173670,78643,0 +(187,4:23677625,14570641:501378,78643,0 +(187,4:23841479,14570641:173670,78643,0 ) ) -(186,246:28691405,12986001:501378,78643,0 -(186,246:28855259,12986001:173670,78643,0 +(187,4:24179003,14570641:501378,78643,0 +(187,4:24342857,14570641:173670,78643,0 ) ) -(186,246:29192783,12986001:501378,78643,0 -(186,246:29356637,12986001:173670,78643,0 +(187,4:24680381,14570641:501378,78643,0 +(187,4:24844235,14570641:173670,78643,0 ) ) -(186,246:29694161,12986001:501378,78643,0 -(186,246:29858015,12986001:173670,78643,0 +(187,4:25181759,14570641:501378,78643,0 +(187,4:25345613,14570641:173670,78643,0 ) ) -(186,246:30195539,12986001:501378,78643,0 -(186,246:30359393,12986001:173670,78643,0 +(187,4:25683137,14570641:501378,78643,0 +(187,4:25846991,14570641:173670,78643,0 ) ) -(186,246:30696917,12986001:501378,78643,0 -(186,246:30860771,12986001:173670,78643,0 +(187,4:26184515,14570641:501378,78643,0 +(187,4:26348369,14570641:173670,78643,0 ) ) -(186,246:31239539,12986001:1343490,485622,11795 -k186,246:31239539,12986001:0 -k186,246:31387652,12986001:148113 +(187,4:26685893,14570641:501378,78643,0 +(187,4:26849747,14570641:173670,78643,0 ) -g186,246:30911859,12986001 -g186,246:32583029,12986001 ) -(186,247:6630773,13827489:25952256,513147,126483 -g186,247:9448823,13827489 -h186,247:9448823,13827489:983040,0,0 -h186,247:10431863,13827489:0,0,0 -g186,247:7613813,13827489 -(186,247:7613813,13827489:1835010,485622,11795 -k186,247:9448823,13827489:67504 +(187,4:27187271,14570641:501378,78643,0 +(187,4:27351125,14570641:173670,78643,0 ) -g186,247:11119991,13827489 -g186,247:14828018,13827489 -g186,247:16594868,13827489 -g186,247:19416848,13827489 -g186,247:21953746,13827489 -g186,247:21953746,13827489 -(186,247:22173491,13827489:501378,78643,0 -$186,247:22173491,13827489 -(186,247:22337345,13827489:173670,78643,0 ) -$186,247:22674869,13827489 +(187,4:27688649,14570641:501378,78643,0 +(187,4:27852503,14570641:173670,78643,0 ) -(186,247:22674869,13827489:501378,78643,0 -(186,247:22838723,13827489:173670,78643,0 ) +(187,4:28190027,14570641:501378,78643,0 +(187,4:28353881,14570641:173670,78643,0 ) -(186,247:23176247,13827489:501378,78643,0 -(186,247:23340101,13827489:173670,78643,0 ) +(187,4:28691405,14570641:501378,78643,0 +(187,4:28855259,14570641:173670,78643,0 ) -(186,247:23677625,13827489:501378,78643,0 -(186,247:23841479,13827489:173670,78643,0 ) +(187,4:29192783,14570641:501378,78643,0 +(187,4:29356637,14570641:173670,78643,0 ) -(186,247:24179003,13827489:501378,78643,0 -(186,247:24342857,13827489:173670,78643,0 ) +(187,4:29694161,14570641:501378,78643,0 +(187,4:29858015,14570641:173670,78643,0 ) -(186,247:24680381,13827489:501378,78643,0 -(186,247:24844235,13827489:173670,78643,0 ) +(187,4:30195539,14570641:501378,78643,0 +(187,4:30359393,14570641:173670,78643,0 ) -(186,247:25181759,13827489:501378,78643,0 -(186,247:25345613,13827489:173670,78643,0 ) +(187,4:30696917,14570641:501378,78643,0 +(187,4:30860771,14570641:173670,78643,0 ) -(186,247:25683137,13827489:501378,78643,0 -(186,247:25846991,13827489:173670,78643,0 ) +(187,4:31239539,14570641:1343490,485622,11795 +k187,4:31786111,14570641:546572 ) -(186,247:26184515,13827489:501378,78643,0 -(186,247:26348369,13827489:173670,78643,0 +g187,4:30911859,14570641 +g187,4:32583029,14570641 ) +(187,5:6630773,15435721:25952256,505283,11795 +g187,5:9448823,15435721 +h187,5:9448823,15435721:983040,0,0 +h187,5:10431863,15435721:0,0,0 +g187,5:7613813,15435721 +(187,5:7613813,15435721:1835010,485622,11795 +k187,5:9448823,15435721:864422 ) -(186,247:26685893,13827489:501378,78643,0 -(186,247:26849747,13827489:173670,78643,0 +g187,5:10844739,15435721 +g187,5:11488957,15435721 +g187,5:13909202,15435721 +(187,5:14151443,15435721:501378,78643,0 +$187,5:14151443,15435721 +(187,5:14315297,15435721:173670,78643,0 ) +$187,5:14652821,15435721 ) -(186,247:27187271,13827489:501378,78643,0 -(186,247:27351125,13827489:173670,78643,0 +(187,5:14652821,15435721:501378,78643,0 +(187,5:14816675,15435721:173670,78643,0 ) ) -(186,247:27688649,13827489:501378,78643,0 -(186,247:27852503,13827489:173670,78643,0 +(187,5:15154199,15435721:501378,78643,0 +(187,5:15318053,15435721:173670,78643,0 ) ) -(186,247:28190027,13827489:501378,78643,0 -(186,247:28353881,13827489:173670,78643,0 +(187,5:15655577,15435721:501378,78643,0 +(187,5:15819431,15435721:173670,78643,0 ) ) -(186,247:28691405,13827489:501378,78643,0 -(186,247:28855259,13827489:173670,78643,0 +(187,5:16156955,15435721:501378,78643,0 +(187,5:16320809,15435721:173670,78643,0 ) ) -(186,247:29192783,13827489:501378,78643,0 -(186,247:29356637,13827489:173670,78643,0 +(187,5:16658333,15435721:501378,78643,0 +(187,5:16822187,15435721:173670,78643,0 ) ) -(186,247:29694161,13827489:501378,78643,0 -(186,247:29858015,13827489:173670,78643,0 +(187,5:17159711,15435721:501378,78643,0 +(187,5:17323565,15435721:173670,78643,0 ) ) -(186,247:30195539,13827489:501378,78643,0 -(186,247:30359393,13827489:173670,78643,0 +(187,5:17661089,15435721:501378,78643,0 +(187,5:17824943,15435721:173670,78643,0 ) ) -(186,247:30696917,13827489:501378,78643,0 -(186,247:30860771,13827489:173670,78643,0 +(187,5:18162467,15435721:501378,78643,0 +(187,5:18326321,15435721:173670,78643,0 ) ) -(186,247:31239539,13827489:1343490,485622,11795 -k186,247:31239539,13827489:0 -k186,247:31387652,13827489:148113 +(187,5:18663845,15435721:501378,78643,0 +(187,5:18827699,15435721:173670,78643,0 ) -g186,247:30911859,13827489 -g186,247:32583029,13827489 ) -(186,248:6630773,14668977:25952256,505283,134348 -g186,248:11873653,14668977 -h186,248:11873653,14668977:2818050,0,0 -h186,248:14691703,14668977:0,0,0 -g186,248:9448823,14668977 -(186,248:9448823,14668977:2424830,485622,11795 -k186,248:11873653,14668977:85195 +(187,5:19165223,15435721:501378,78643,0 +(187,5:19329077,15435721:173670,78643,0 ) -g186,248:14250644,14668977 -(186,248:14652821,14668977:501378,78643,0 -$186,248:14652821,14668977 -(186,248:14816675,14668977:173670,78643,0 ) -$186,248:15154199,14668977 +(187,5:19666601,15435721:501378,78643,0 +(187,5:19830455,15435721:173670,78643,0 ) -(186,248:15154199,14668977:501378,78643,0 -(186,248:15318053,14668977:173670,78643,0 ) +(187,5:20167979,15435721:501378,78643,0 +(187,5:20331833,15435721:173670,78643,0 ) -(186,248:15655577,14668977:501378,78643,0 -(186,248:15819431,14668977:173670,78643,0 ) +(187,5:20669357,15435721:501378,78643,0 +(187,5:20833211,15435721:173670,78643,0 ) -(186,248:16156955,14668977:501378,78643,0 -(186,248:16320809,14668977:173670,78643,0 ) +(187,5:21170735,15435721:501378,78643,0 +(187,5:21334589,15435721:173670,78643,0 ) -(186,248:16658333,14668977:501378,78643,0 -(186,248:16822187,14668977:173670,78643,0 ) +(187,5:21672113,15435721:501378,78643,0 +(187,5:21835967,15435721:173670,78643,0 ) -(186,248:17159711,14668977:501378,78643,0 -(186,248:17323565,14668977:173670,78643,0 ) +(187,5:22173491,15435721:501378,78643,0 +(187,5:22337345,15435721:173670,78643,0 ) -(186,248:17661089,14668977:501378,78643,0 -(186,248:17824943,14668977:173670,78643,0 ) +(187,5:22674869,15435721:501378,78643,0 +(187,5:22838723,15435721:173670,78643,0 ) -(186,248:18162467,14668977:501378,78643,0 -(186,248:18326321,14668977:173670,78643,0 ) +(187,5:23176247,15435721:501378,78643,0 +(187,5:23340101,15435721:173670,78643,0 ) -(186,248:18663845,14668977:501378,78643,0 -(186,248:18827699,14668977:173670,78643,0 ) +(187,5:23677625,15435721:501378,78643,0 +(187,5:23841479,15435721:173670,78643,0 ) -(186,248:19165223,14668977:501378,78643,0 -(186,248:19329077,14668977:173670,78643,0 ) +(187,5:24179003,15435721:501378,78643,0 +(187,5:24342857,15435721:173670,78643,0 ) -(186,248:19666601,14668977:501378,78643,0 -(186,248:19830455,14668977:173670,78643,0 ) +(187,5:24680381,15435721:501378,78643,0 +(187,5:24844235,15435721:173670,78643,0 ) -(186,248:20167979,14668977:501378,78643,0 -(186,248:20331833,14668977:173670,78643,0 ) +(187,5:25181759,15435721:501378,78643,0 +(187,5:25345613,15435721:173670,78643,0 ) -(186,248:20669357,14668977:501378,78643,0 -(186,248:20833211,14668977:173670,78643,0 ) +(187,5:25683137,15435721:501378,78643,0 +(187,5:25846991,15435721:173670,78643,0 ) -(186,248:21170735,14668977:501378,78643,0 -(186,248:21334589,14668977:173670,78643,0 ) +(187,5:26184515,15435721:501378,78643,0 +(187,5:26348369,15435721:173670,78643,0 ) -(186,248:21672113,14668977:501378,78643,0 -(186,248:21835967,14668977:173670,78643,0 ) +(187,5:26685893,15435721:501378,78643,0 +(187,5:26849747,15435721:173670,78643,0 ) -(186,248:22173491,14668977:501378,78643,0 -(186,248:22337345,14668977:173670,78643,0 ) +(187,5:27187271,15435721:501378,78643,0 +(187,5:27351125,15435721:173670,78643,0 ) -(186,248:22674869,14668977:501378,78643,0 -(186,248:22838723,14668977:173670,78643,0 ) +(187,5:27688649,15435721:501378,78643,0 +(187,5:27852503,15435721:173670,78643,0 ) -(186,248:23176247,14668977:501378,78643,0 -(186,248:23340101,14668977:173670,78643,0 ) +(187,5:28190027,15435721:501378,78643,0 +(187,5:28353881,15435721:173670,78643,0 ) -(186,248:23677625,14668977:501378,78643,0 -(186,248:23841479,14668977:173670,78643,0 ) +(187,5:28691405,15435721:501378,78643,0 +(187,5:28855259,15435721:173670,78643,0 ) -(186,248:24179003,14668977:501378,78643,0 -(186,248:24342857,14668977:173670,78643,0 ) +(187,5:29192783,15435721:501378,78643,0 +(187,5:29356637,15435721:173670,78643,0 ) -(186,248:24680381,14668977:501378,78643,0 -(186,248:24844235,14668977:173670,78643,0 ) +(187,5:29694161,15435721:501378,78643,0 +(187,5:29858015,15435721:173670,78643,0 ) -(186,248:25181759,14668977:501378,78643,0 -(186,248:25345613,14668977:173670,78643,0 ) +(187,5:30195539,15435721:501378,78643,0 +(187,5:30359393,15435721:173670,78643,0 ) -(186,248:25683137,14668977:501378,78643,0 -(186,248:25846991,14668977:173670,78643,0 ) +(187,5:30696917,15435721:501378,78643,0 +(187,5:30860771,15435721:173670,78643,0 ) -(186,248:26184515,14668977:501378,78643,0 -(186,248:26348369,14668977:173670,78643,0 ) +(187,5:31239538,15435721:1343490,477757,11795 +k187,5:31786110,15435721:546572 ) -(186,248:26685893,14668977:501378,78643,0 -(186,248:26849747,14668977:173670,78643,0 +g187,5:30911858,15435721 +g187,5:32583028,15435721 ) +(187,6:6630773,16300801:25952256,505283,11795 +g187,6:9448823,16300801 +h187,6:9448823,16300801:983040,0,0 +h187,6:10431863,16300801:0,0,0 +g187,6:7613813,16300801 +(187,6:7613813,16300801:1835010,485622,0 +k187,6:9448823,16300801:864422 ) -(186,248:27187271,14668977:501378,78643,0 -(186,248:27351125,14668977:173670,78643,0 +g187,6:10844739,16300801 +g187,6:11488957,16300801 +g187,6:13909202,16300801 +(187,6:14151443,16300801:501378,78643,0 +$187,6:14151443,16300801 +(187,6:14315297,16300801:173670,78643,0 ) +$187,6:14652821,16300801 ) -(186,248:27688649,14668977:501378,78643,0 -(186,248:27852503,14668977:173670,78643,0 +(187,6:14652821,16300801:501378,78643,0 +(187,6:14816675,16300801:173670,78643,0 ) ) -(186,248:28190027,14668977:501378,78643,0 -(186,248:28353881,14668977:173670,78643,0 +(187,6:15154199,16300801:501378,78643,0 +(187,6:15318053,16300801:173670,78643,0 ) ) -(186,248:28691405,14668977:501378,78643,0 -(186,248:28855259,14668977:173670,78643,0 +(187,6:15655577,16300801:501378,78643,0 +(187,6:15819431,16300801:173670,78643,0 ) ) -(186,248:29192783,14668977:501378,78643,0 -(186,248:29356637,14668977:173670,78643,0 +(187,6:16156955,16300801:501378,78643,0 +(187,6:16320809,16300801:173670,78643,0 ) ) -(186,248:29694161,14668977:501378,78643,0 -(186,248:29858015,14668977:173670,78643,0 +(187,6:16658333,16300801:501378,78643,0 +(187,6:16822187,16300801:173670,78643,0 ) ) -(186,248:30195539,14668977:501378,78643,0 -(186,248:30359393,14668977:173670,78643,0 +(187,6:17159711,16300801:501378,78643,0 +(187,6:17323565,16300801:173670,78643,0 ) ) -(186,248:30696917,14668977:501378,78643,0 -(186,248:30860771,14668977:173670,78643,0 +(187,6:17661089,16300801:501378,78643,0 +(187,6:17824943,16300801:173670,78643,0 ) ) -(186,248:31239540,14668977:1343490,485622,11795 -k186,248:31239540,14668977:0 -k186,248:31387653,14668977:148113 +(187,6:18162467,16300801:501378,78643,0 +(187,6:18326321,16300801:173670,78643,0 ) -g186,248:30911860,14668977 -g186,248:32583030,14668977 ) -(186,249:6630773,15510465:25952256,505283,11795 -g186,249:9448823,15510465 -h186,249:9448823,15510465:983040,0,0 -h186,249:10431863,15510465:0,0,0 -g186,249:7613813,15510465 -(186,249:7613813,15510465:1835010,485622,11795 -k186,249:9448823,15510465:67504 +(187,6:18663845,16300801:501378,78643,0 +(187,6:18827699,16300801:173670,78643,0 ) -g186,249:12884220,15510465 -g186,249:12884220,15510465 -(186,249:13148687,15510465:501378,78643,0 -$186,249:13148687,15510465 -(186,249:13312541,15510465:173670,78643,0 ) -$186,249:13650065,15510465 +(187,6:19165223,16300801:501378,78643,0 +(187,6:19329077,16300801:173670,78643,0 ) -(186,249:13650065,15510465:501378,78643,0 -(186,249:13813919,15510465:173670,78643,0 ) +(187,6:19666601,16300801:501378,78643,0 +(187,6:19830455,16300801:173670,78643,0 ) -(186,249:14151443,15510465:501378,78643,0 -(186,249:14315297,15510465:173670,78643,0 ) +(187,6:20167979,16300801:501378,78643,0 +(187,6:20331833,16300801:173670,78643,0 ) -(186,249:14652821,15510465:501378,78643,0 -(186,249:14816675,15510465:173670,78643,0 ) +(187,6:20669357,16300801:501378,78643,0 +(187,6:20833211,16300801:173670,78643,0 ) -(186,249:15154199,15510465:501378,78643,0 -(186,249:15318053,15510465:173670,78643,0 ) +(187,6:21170735,16300801:501378,78643,0 +(187,6:21334589,16300801:173670,78643,0 ) -(186,249:15655577,15510465:501378,78643,0 -(186,249:15819431,15510465:173670,78643,0 ) +(187,6:21672113,16300801:501378,78643,0 +(187,6:21835967,16300801:173670,78643,0 ) -(186,249:16156955,15510465:501378,78643,0 -(186,249:16320809,15510465:173670,78643,0 ) +(187,6:22173491,16300801:501378,78643,0 +(187,6:22337345,16300801:173670,78643,0 ) -(186,249:16658333,15510465:501378,78643,0 -(186,249:16822187,15510465:173670,78643,0 ) +(187,6:22674869,16300801:501378,78643,0 +(187,6:22838723,16300801:173670,78643,0 ) -(186,249:17159711,15510465:501378,78643,0 -(186,249:17323565,15510465:173670,78643,0 ) +(187,6:23176247,16300801:501378,78643,0 +(187,6:23340101,16300801:173670,78643,0 ) -(186,249:17661089,15510465:501378,78643,0 -(186,249:17824943,15510465:173670,78643,0 ) +(187,6:23677625,16300801:501378,78643,0 +(187,6:23841479,16300801:173670,78643,0 ) -(186,249:18162467,15510465:501378,78643,0 -(186,249:18326321,15510465:173670,78643,0 ) +(187,6:24179003,16300801:501378,78643,0 +(187,6:24342857,16300801:173670,78643,0 ) -(186,249:18663845,15510465:501378,78643,0 -(186,249:18827699,15510465:173670,78643,0 ) +(187,6:24680381,16300801:501378,78643,0 +(187,6:24844235,16300801:173670,78643,0 ) -(186,249:19165223,15510465:501378,78643,0 -(186,249:19329077,15510465:173670,78643,0 ) +(187,6:25181759,16300801:501378,78643,0 +(187,6:25345613,16300801:173670,78643,0 ) -(186,249:19666601,15510465:501378,78643,0 -(186,249:19830455,15510465:173670,78643,0 ) +(187,6:25683137,16300801:501378,78643,0 +(187,6:25846991,16300801:173670,78643,0 ) -(186,249:20167979,15510465:501378,78643,0 -(186,249:20331833,15510465:173670,78643,0 ) +(187,6:26184515,16300801:501378,78643,0 +(187,6:26348369,16300801:173670,78643,0 ) -(186,249:20669357,15510465:501378,78643,0 -(186,249:20833211,15510465:173670,78643,0 ) +(187,6:26685893,16300801:501378,78643,0 +(187,6:26849747,16300801:173670,78643,0 ) -(186,249:21170735,15510465:501378,78643,0 -(186,249:21334589,15510465:173670,78643,0 ) +(187,6:27187271,16300801:501378,78643,0 +(187,6:27351125,16300801:173670,78643,0 ) -(186,249:21672113,15510465:501378,78643,0 -(186,249:21835967,15510465:173670,78643,0 ) +(187,6:27688649,16300801:501378,78643,0 +(187,6:27852503,16300801:173670,78643,0 ) -(186,249:22173491,15510465:501378,78643,0 -(186,249:22337345,15510465:173670,78643,0 ) +(187,6:28190027,16300801:501378,78643,0 +(187,6:28353881,16300801:173670,78643,0 ) -(186,249:22674869,15510465:501378,78643,0 -(186,249:22838723,15510465:173670,78643,0 ) +(187,6:28691405,16300801:501378,78643,0 +(187,6:28855259,16300801:173670,78643,0 ) -(186,249:23176247,15510465:501378,78643,0 -(186,249:23340101,15510465:173670,78643,0 ) +(187,6:29192783,16300801:501378,78643,0 +(187,6:29356637,16300801:173670,78643,0 ) -(186,249:23677625,15510465:501378,78643,0 -(186,249:23841479,15510465:173670,78643,0 ) +(187,6:29694161,16300801:501378,78643,0 +(187,6:29858015,16300801:173670,78643,0 ) -(186,249:24179003,15510465:501378,78643,0 -(186,249:24342857,15510465:173670,78643,0 ) +(187,6:30195539,16300801:501378,78643,0 +(187,6:30359393,16300801:173670,78643,0 ) -(186,249:24680381,15510465:501378,78643,0 -(186,249:24844235,15510465:173670,78643,0 ) +(187,6:30696917,16300801:501378,78643,0 +(187,6:30860771,16300801:173670,78643,0 ) -(186,249:25181759,15510465:501378,78643,0 -(186,249:25345613,15510465:173670,78643,0 ) +(187,6:31239538,16300801:1343490,485622,11795 +k187,6:31786110,16300801:546572 ) -(186,249:25683137,15510465:501378,78643,0 -(186,249:25846991,15510465:173670,78643,0 +g187,6:30911858,16300801 +g187,6:32583028,16300801 ) +(187,7:6630773,17165881:25952256,505283,126483 +g187,7:9448823,17165881 +h187,7:9448823,17165881:983040,0,0 +h187,7:10431863,17165881:0,0,0 +g187,7:7613813,17165881 +(187,7:7613813,17165881:1835010,485622,11795 +k187,7:9448823,17165881:864422 ) -(186,249:26184515,15510465:501378,78643,0 -(186,249:26348369,15510465:173670,78643,0 +g187,7:11504032,17165881 +g187,7:14232951,17165881 +g187,7:15044942,17165881 +g187,7:16263256,17165881 +g187,7:16907474,17165881 +g187,7:19327719,17165881 +(187,7:19666601,17165881:501378,78643,0 +$187,7:19666601,17165881 +(187,7:19830455,17165881:173670,78643,0 ) +$187,7:20167979,17165881 ) -(186,249:26685893,15510465:501378,78643,0 -(186,249:26849747,15510465:173670,78643,0 +(187,7:20167979,17165881:501378,78643,0 +(187,7:20331833,17165881:173670,78643,0 ) ) -(186,249:27187271,15510465:501378,78643,0 -(186,249:27351125,15510465:173670,78643,0 +(187,7:20669357,17165881:501378,78643,0 +(187,7:20833211,17165881:173670,78643,0 ) ) -(186,249:27688649,15510465:501378,78643,0 -(186,249:27852503,15510465:173670,78643,0 +(187,7:21170735,17165881:501378,78643,0 +(187,7:21334589,17165881:173670,78643,0 ) ) -(186,249:28190027,15510465:501378,78643,0 -(186,249:28353881,15510465:173670,78643,0 +(187,7:21672113,17165881:501378,78643,0 +(187,7:21835967,17165881:173670,78643,0 ) ) -(186,249:28691405,15510465:501378,78643,0 -(186,249:28855259,15510465:173670,78643,0 +(187,7:22173491,17165881:501378,78643,0 +(187,7:22337345,17165881:173670,78643,0 ) ) -(186,249:29192783,15510465:501378,78643,0 -(186,249:29356637,15510465:173670,78643,0 +(187,7:22674869,17165881:501378,78643,0 +(187,7:22838723,17165881:173670,78643,0 ) ) -(186,249:29694161,15510465:501378,78643,0 -(186,249:29858015,15510465:173670,78643,0 +(187,7:23176247,17165881:501378,78643,0 +(187,7:23340101,17165881:173670,78643,0 ) ) -(186,249:30195539,15510465:501378,78643,0 -(186,249:30359393,15510465:173670,78643,0 +(187,7:23677625,17165881:501378,78643,0 +(187,7:23841479,17165881:173670,78643,0 ) ) -(186,249:30696917,15510465:501378,78643,0 -(186,249:30860771,15510465:173670,78643,0 +(187,7:24179003,17165881:501378,78643,0 +(187,7:24342857,17165881:173670,78643,0 ) ) -(186,249:31239540,15510465:1343490,485622,11795 -k186,249:31239540,15510465:0 -k186,249:31387653,15510465:148113 +(187,7:24680381,17165881:501378,78643,0 +(187,7:24844235,17165881:173670,78643,0 ) -g186,249:30911860,15510465 -g186,249:32583030,15510465 ) -(186,250:6630773,16351953:25952256,505283,134348 -g186,250:9448823,16351953 -h186,250:9448823,16351953:983040,0,0 -h186,250:10431863,16351953:0,0,0 -g186,250:7613813,16351953 -(186,250:7613813,16351953:1835010,485622,11795 -k186,250:9448823,16351953:67504 +(187,7:25181759,17165881:501378,78643,0 +(187,7:25345613,17165881:173670,78643,0 ) -g186,250:12017834,16351953 -g186,250:14619613,16351953 -g186,250:14619613,16351953 -(186,250:14652821,16351953:501378,78643,0 -$186,250:14652821,16351953 -(186,250:14816675,16351953:173670,78643,0 ) -$186,250:15154199,16351953 +(187,7:25683137,17165881:501378,78643,0 +(187,7:25846991,17165881:173670,78643,0 ) -(186,250:15154199,16351953:501378,78643,0 -(186,250:15318053,16351953:173670,78643,0 ) +(187,7:26184515,17165881:501378,78643,0 +(187,7:26348369,17165881:173670,78643,0 ) -(186,250:15655577,16351953:501378,78643,0 -(186,250:15819431,16351953:173670,78643,0 ) +(187,7:26685893,17165881:501378,78643,0 +(187,7:26849747,17165881:173670,78643,0 ) -(186,250:16156955,16351953:501378,78643,0 -(186,250:16320809,16351953:173670,78643,0 ) +(187,7:27187271,17165881:501378,78643,0 +(187,7:27351125,17165881:173670,78643,0 ) -(186,250:16658333,16351953:501378,78643,0 -(186,250:16822187,16351953:173670,78643,0 ) +(187,7:27688649,17165881:501378,78643,0 +(187,7:27852503,17165881:173670,78643,0 ) -(186,250:17159711,16351953:501378,78643,0 -(186,250:17323565,16351953:173670,78643,0 ) +(187,7:28190027,17165881:501378,78643,0 +(187,7:28353881,17165881:173670,78643,0 ) -(186,250:17661089,16351953:501378,78643,0 -(186,250:17824943,16351953:173670,78643,0 ) +(187,7:28691405,17165881:501378,78643,0 +(187,7:28855259,17165881:173670,78643,0 ) -(186,250:18162467,16351953:501378,78643,0 -(186,250:18326321,16351953:173670,78643,0 ) +(187,7:29192783,17165881:501378,78643,0 +(187,7:29356637,17165881:173670,78643,0 ) -(186,250:18663845,16351953:501378,78643,0 -(186,250:18827699,16351953:173670,78643,0 ) +(187,7:29694161,17165881:501378,78643,0 +(187,7:29858015,17165881:173670,78643,0 ) -(186,250:19165223,16351953:501378,78643,0 -(186,250:19329077,16351953:173670,78643,0 ) +(187,7:30195539,17165881:501378,78643,0 +(187,7:30359393,17165881:173670,78643,0 ) -(186,250:19666601,16351953:501378,78643,0 -(186,250:19830455,16351953:173670,78643,0 ) +(187,7:30696917,17165881:501378,78643,0 +(187,7:30860771,17165881:173670,78643,0 ) -(186,250:20167979,16351953:501378,78643,0 -(186,250:20331833,16351953:173670,78643,0 ) +(187,7:31239539,17165881:1343490,477757,0 +k187,7:31786111,17165881:546572 ) -(186,250:20669357,16351953:501378,78643,0 -(186,250:20833211,16351953:173670,78643,0 +g187,7:30911859,17165881 +g187,7:32583029,17165881 ) +(187,8:6630773,18030961:25952256,505283,126483 +g187,8:9448823,18030961 +h187,8:9448823,18030961:983040,0,0 +h187,8:10431863,18030961:0,0,0 +g187,8:7613813,18030961 +(187,8:7613813,18030961:1835010,485622,11795 +k187,8:9448823,18030961:864422 ) -(186,250:21170735,16351953:501378,78643,0 -(186,250:21334589,16351953:173670,78643,0 +g187,8:11504032,18030961 +g187,8:12316023,18030961 +g187,8:13534337,18030961 +g187,8:16622393,18030961 +g187,8:18195912,18030961 +g187,8:20176410,18030961 +(187,8:20669357,18030961:501378,78643,0 +$187,8:20669357,18030961 +(187,8:20833211,18030961:173670,78643,0 ) +$187,8:21170735,18030961 ) -(186,250:21672113,16351953:501378,78643,0 -(186,250:21835967,16351953:173670,78643,0 +(187,8:21170735,18030961:501378,78643,0 +(187,8:21334589,18030961:173670,78643,0 ) ) -(186,250:22173491,16351953:501378,78643,0 -(186,250:22337345,16351953:173670,78643,0 +(187,8:21672113,18030961:501378,78643,0 +(187,8:21835967,18030961:173670,78643,0 ) ) -(186,250:22674869,16351953:501378,78643,0 -(186,250:22838723,16351953:173670,78643,0 +(187,8:22173491,18030961:501378,78643,0 +(187,8:22337345,18030961:173670,78643,0 ) ) -(186,250:23176247,16351953:501378,78643,0 -(186,250:23340101,16351953:173670,78643,0 +(187,8:22674869,18030961:501378,78643,0 +(187,8:22838723,18030961:173670,78643,0 ) ) -(186,250:23677625,16351953:501378,78643,0 -(186,250:23841479,16351953:173670,78643,0 +(187,8:23176247,18030961:501378,78643,0 +(187,8:23340101,18030961:173670,78643,0 ) ) -(186,250:24179003,16351953:501378,78643,0 -(186,250:24342857,16351953:173670,78643,0 +(187,8:23677625,18030961:501378,78643,0 +(187,8:23841479,18030961:173670,78643,0 ) ) -(186,250:24680381,16351953:501378,78643,0 -(186,250:24844235,16351953:173670,78643,0 +(187,8:24179003,18030961:501378,78643,0 +(187,8:24342857,18030961:173670,78643,0 ) ) -(186,250:25181759,16351953:501378,78643,0 -(186,250:25345613,16351953:173670,78643,0 +(187,8:24680381,18030961:501378,78643,0 +(187,8:24844235,18030961:173670,78643,0 ) ) -(186,250:25683137,16351953:501378,78643,0 -(186,250:25846991,16351953:173670,78643,0 +(187,8:25181759,18030961:501378,78643,0 +(187,8:25345613,18030961:173670,78643,0 ) ) -(186,250:26184515,16351953:501378,78643,0 -(186,250:26348369,16351953:173670,78643,0 +(187,8:25683137,18030961:501378,78643,0 +(187,8:25846991,18030961:173670,78643,0 ) ) -(186,250:26685893,16351953:501378,78643,0 -(186,250:26849747,16351953:173670,78643,0 +(187,8:26184515,18030961:501378,78643,0 +(187,8:26348369,18030961:173670,78643,0 ) ) -(186,250:27187271,16351953:501378,78643,0 -(186,250:27351125,16351953:173670,78643,0 +(187,8:26685893,18030961:501378,78643,0 +(187,8:26849747,18030961:173670,78643,0 ) ) -(186,250:27688649,16351953:501378,78643,0 -(186,250:27852503,16351953:173670,78643,0 +(187,8:27187271,18030961:501378,78643,0 +(187,8:27351125,18030961:173670,78643,0 ) ) -(186,250:28190027,16351953:501378,78643,0 -(186,250:28353881,16351953:173670,78643,0 +(187,8:27688649,18030961:501378,78643,0 +(187,8:27852503,18030961:173670,78643,0 ) ) -(186,250:28691405,16351953:501378,78643,0 -(186,250:28855259,16351953:173670,78643,0 +(187,8:28190027,18030961:501378,78643,0 +(187,8:28353881,18030961:173670,78643,0 ) ) -(186,250:29192783,16351953:501378,78643,0 -(186,250:29356637,16351953:173670,78643,0 +(187,8:28691405,18030961:501378,78643,0 +(187,8:28855259,18030961:173670,78643,0 ) ) -(186,250:29694161,16351953:501378,78643,0 -(186,250:29858015,16351953:173670,78643,0 +(187,8:29192783,18030961:501378,78643,0 +(187,8:29356637,18030961:173670,78643,0 ) ) -(186,250:30195539,16351953:501378,78643,0 -(186,250:30359393,16351953:173670,78643,0 +(187,8:29694161,18030961:501378,78643,0 +(187,8:29858015,18030961:173670,78643,0 ) ) -(186,250:30696917,16351953:501378,78643,0 -(186,250:30860771,16351953:173670,78643,0 +(187,8:30195539,18030961:501378,78643,0 +(187,8:30359393,18030961:173670,78643,0 ) ) -(186,250:31239539,16351953:1343490,481690,0 -k186,250:31239539,16351953:0 -k186,250:31387652,16351953:148113 +(187,8:30696917,18030961:501378,78643,0 +(187,8:30860771,18030961:173670,78643,0 ) -g186,250:30911859,16351953 -g186,250:32583029,16351953 ) -(186,251:6630773,17848801:25952256,505283,134348 -g186,251:7613813,17848801 -h186,251:7613813,17848801:0,0,0 -g186,251:6630773,17848801 -k186,251:21048037,17848801:10191502 -k186,251:31239539,17848801:10191502 -(186,251:31239539,17848801:1343490,485622,11795 -k186,251:31358161,17848801:118622 +(187,8:31239539,18030961:1343490,485622,11795 +k187,8:31786111,18030961:546572 ) -g186,251:31239539,17848801 -g186,251:32583029,17848801 +g187,8:30911859,18030961 +g187,8:32583029,18030961 ) -(186,252:6630773,19345649:25952256,505283,11795 -g186,252:7613813,19345649 -h186,252:7613813,19345649:0,0,0 -g186,252:6630773,19345649 -g186,252:9374110,19345649 -k186,252:21232520,19345649:10007018 -k186,252:31239538,19345649:10007018 -(186,252:31239538,19345649:1343490,479724,0 -k186,252:31358160,19345649:118622 +] +(1,130:32583029,45706769:0,0,0 +g1,130:32583029,45706769 ) -g186,252:31239538,19345649 -g186,252:32583028,19345649 ) -(186,253:6630773,20842497:25952256,513147,126483 -g186,253:7613813,20842497 -h186,253:7613813,20842497:0,0,0 -g186,253:6630773,20842497 -g186,253:10399748,20842497 -g186,253:12455612,20842497 -g186,253:13349523,20842497 -g186,253:14006193,20842497 -k186,253:23735995,20842497:7503544 -k186,253:31239539,20842497:7503544 -(186,253:31239539,20842497:1343490,485622,0 -k186,253:31358161,20842497:118622 +] +(1,130:6630773,47279633:25952256,473825,0 +(1,130:6630773,47279633:25952256,473825,0 +(1,130:6630773,47279633:0,0,0 +v1,130:6630773,47279633:0,0,0 ) -g186,253:31239539,20842497 -g186,253:32583029,20842497 +g1,130:6830002,47279633 +k1,130:32016798,47279633:25186796 ) -(186,254:6630773,22339345:25952256,513147,134348 -g186,254:7613813,22339345 -h186,254:7613813,22339345:0,0,0 -g186,254:6630773,22339345 -g186,254:8686637,22339345 -g186,254:9580548,22339345 -g186,254:10237218,22339345 -g186,254:12667948,22339345 -g186,254:13720456,22339345 -k186,254:23970942,22339345:7268598 -k186,254:31239539,22339345:7268597 -(186,254:31239539,22339345:1343490,485622,11795 -k186,254:31358161,22339345:118622 ) -g186,254:31239539,22339345 -g186,254:32583029,22339345 +] +(1,130:4262630,4025873:0,0,0 +[1,130:-473656,4025873:0,0,0 +(1,130:-473656,-710413:0,0,0 +(1,130:-473656,-710413:0,0,0 +g1,130:-473656,-710413 ) -(1,135:6630773,23836193:25952256,505283,126483 -g1,135:7613813,23836193 -h1,135:7613813,23836193:0,0,0 -g1,135:6630773,23836193 -g1,135:10430550,23836193 -g1,135:12723654,23836193 -k1,135:23639330,23836193:7600210 -k1,135:31239539,23836193:7600209 -(1,135:31239539,23836193:1343490,485622,11795 -k1,135:31358161,23836193:118622 +g1,130:-473656,-710413 ) -g1,135:31239539,23836193 -g1,135:32583029,23836193 +] ) ] -(1,136:32583029,45706769:0,0,0 -g1,136:32583029,45706769 +!22029 +}8 +!10 +{9 +[1,130:4262630,47279633:28320399,43253760,0 +(1,130:4262630,4025873:0,0,0 +[1,130:-473656,4025873:0,0,0 +(1,130:-473656,-710413:0,0,0 +(1,130:-473656,-644877:0,0,0 +k1,130:-473656,-644877:-65536 +) +(1,130:-473656,4736287:0,0,0 +k1,130:-473656,4736287:5209943 ) +g1,130:-473656,-710413 ) ] -(1,136:6630773,47279633:25952256,0,0 -h1,136:6630773,47279633:25952256,0,0 +) +[1,130:6630773,47279633:25952256,43253760,0 +[1,130:6630773,4812305:25952256,786432,0 +(1,130:6630773,4812305:25952256,0,0 +(1,130:6630773,4812305:25952256,0,0 +g1,130:3078558,4812305 +[1,130:3078558,4812305:0,0,0 +(1,130:3078558,2439708:0,1703936,0 +k1,130:1358238,2439708:-1720320 +(1,130:1358238,2439708:1720320,1703936,0 +(1,130:1358238,2439708:1179648,16384,0 +r1,130:2537886,2439708:1179648,16384,0 +) +g1,130:3062174,2439708 +(1,130:3062174,2439708:16384,1703936,0 +[1,130:3062174,2439708:25952256,1703936,0 +(1,130:3062174,1915420:25952256,1179648,0 +(1,130:3062174,1915420:16384,1179648,0 +r1,130:3078558,1915420:16384,1179648,0 +) +k1,130:29014430,1915420:25935872 +g1,130:29014430,1915420 ) ] -(1,136:4262630,4025873:0,0,0 -[1,136:-473656,4025873:0,0,0 -(1,136:-473656,-710413:0,0,0 -(1,136:-473656,-710413:0,0,0 -g1,136:-473656,-710413 ) -g1,136:-473656,-710413 -) -] ) -] -!48332 -}7 -Input:187:C:\Users\aphalo_2\Documents\Own_manuscripts\Books\learnr-book-crc\using-r-main-crc.lof -!107 -{8 +) +] +[1,130:3078558,4812305:0,0,0 +(1,130:3078558,2439708:0,1703936,0 +g1,130:29030814,2439708 +g1,130:36135244,2439708 +(1,130:36135244,2439708:1720320,1703936,0 +(1,130:36135244,2439708:16384,1703936,0 +[1,130:36135244,2439708:25952256,1703936,0 +(1,130:36135244,1915420:25952256,1179648,0 +(1,130:36135244,1915420:16384,1179648,0 +r1,130:36151628,1915420:16384,1179648,0 +) +k1,130:62087500,1915420:25935872 +g1,130:62087500,1915420 +) +] +) +g1,130:36675916,2439708 +(1,130:36675916,2439708:1179648,16384,0 +r1,130:37855564,2439708:1179648,16384,0 +) +) +k1,130:3078556,2439708:-34777008 +) +] +[1,130:3078558,4812305:0,0,0 +(1,130:3078558,49800853:0,16384,2228224 +k1,130:1358238,49800853:-1720320 +(1,130:1358238,49800853:1720320,16384,2228224 +(1,130:1358238,49800853:1179648,16384,0 +r1,130:2537886,49800853:1179648,16384,0 +) +g1,130:3062174,49800853 +(1,130:3062174,52029077:16384,1703936,0 +[1,130:3062174,52029077:25952256,1703936,0 +(1,130:3062174,51504789:25952256,1179648,0 +(1,130:3062174,51504789:16384,1179648,0 +r1,130:3078558,51504789:16384,1179648,0 +) +k1,130:29014430,51504789:25935872 +g1,130:29014430,51504789 +) +] +) +) +) +] +[1,130:3078558,4812305:0,0,0 +(1,130:3078558,49800853:0,16384,2228224 +g1,130:29030814,49800853 +g1,130:36135244,49800853 +(1,130:36135244,49800853:1720320,16384,2228224 +(1,130:36135244,52029077:16384,1703936,0 +[1,130:36135244,52029077:25952256,1703936,0 +(1,130:36135244,51504789:25952256,1179648,0 +(1,130:36135244,51504789:16384,1179648,0 +r1,130:36151628,51504789:16384,1179648,0 +) +k1,130:62087500,51504789:25935872 +g1,130:62087500,51504789 +) +] +) +g1,130:36675916,49800853 +(1,130:36675916,49800853:1179648,16384,0 +r1,130:37855564,49800853:1179648,16384,0 +) +) +k1,130:3078556,49800853:-34777008 +) +] +g1,130:6630773,4812305 +) +) +] +[1,130:6630773,45706769:0,40108032,0 +(1,130:6630773,45706769:0,40108032,0 +(1,130:6630773,45706769:0,0,0 +g1,130:6630773,45706769 +) +[1,130:6630773,45706769:0,40108032,0 +h1,130:6630773,6254097:0,0,0 +] +(1,130:6630773,45706769:0,0,0 +g1,130:6630773,45706769 +) +) +] +(1,130:6630773,47279633:25952256,0,0 +h1,130:6630773,47279633:25952256,0,0 +) +] +(1,130:4262630,4025873:0,0,0 +[1,130:-473656,4025873:0,0,0 +(1,130:-473656,-710413:0,0,0 +(1,130:-473656,-710413:0,0,0 +g1,130:-473656,-710413 +) +g1,130:-473656,-710413 +) +] +) +] +!3215 +}9 +Input:188:C:\Users\aphalo_2\Documents\Own_manuscripts\Books\learnr-book-crc\using-r-main-crc.lot +!106 +{10 [1,137:4262630,47279633:28320399,43253760,0 (1,137:4262630,4025873:0,0,0 [1,137:-473656,4025873:0,0,0 @@ -30066,19 +30390,19 @@ g1,137:3078558,4812305 [1,137:3078558,4812305:0,0,0 (1,137:3078558,2439708:0,1703936,0 k1,137:1358238,2439708:-1720320 -(1,136:1358238,2439708:1720320,1703936,0 -(1,136:1358238,2439708:1179648,16384,0 +(1,130:1358238,2439708:1720320,1703936,0 +(1,130:1358238,2439708:1179648,16384,0 r1,137:2537886,2439708:1179648,16384,0 ) -g1,136:3062174,2439708 -(1,136:3062174,2439708:16384,1703936,0 -[1,136:3062174,2439708:25952256,1703936,0 -(1,136:3062174,1915420:25952256,1179648,0 -(1,136:3062174,1915420:16384,1179648,0 +g1,130:3062174,2439708 +(1,130:3062174,2439708:16384,1703936,0 +[1,130:3062174,2439708:25952256,1703936,0 +(1,130:3062174,1915420:25952256,1179648,0 +(1,130:3062174,1915420:16384,1179648,0 r1,137:3078558,1915420:16384,1179648,0 ) -k1,136:29014430,1915420:25935872 -g1,136:29014430,1915420 +k1,130:29014430,1915420:25935872 +g1,130:29014430,1915420 ) ] ) @@ -30089,20 +30413,20 @@ g1,136:29014430,1915420 (1,137:3078558,2439708:0,1703936,0 g1,137:29030814,2439708 g1,137:36135244,2439708 -(1,136:36135244,2439708:1720320,1703936,0 -(1,136:36135244,2439708:16384,1703936,0 -[1,136:36135244,2439708:25952256,1703936,0 -(1,136:36135244,1915420:25952256,1179648,0 -(1,136:36135244,1915420:16384,1179648,0 +(1,130:36135244,2439708:1720320,1703936,0 +(1,130:36135244,2439708:16384,1703936,0 +[1,130:36135244,2439708:25952256,1703936,0 +(1,130:36135244,1915420:25952256,1179648,0 +(1,130:36135244,1915420:16384,1179648,0 r1,137:36151628,1915420:16384,1179648,0 ) -k1,136:62087500,1915420:25935872 -g1,136:62087500,1915420 +k1,130:62087500,1915420:25935872 +g1,130:62087500,1915420 ) ] ) -g1,136:36675916,2439708 -(1,136:36675916,2439708:1179648,16384,0 +g1,130:36675916,2439708 +(1,130:36675916,2439708:1179648,16384,0 r1,137:37855564,2439708:1179648,16384,0 ) ) @@ -30112,19 +30436,19 @@ k1,137:3078556,2439708:-34777008 [1,137:3078558,4812305:0,0,0 (1,137:3078558,49800853:0,16384,2228224 k1,137:1358238,49800853:-1720320 -(1,136:1358238,49800853:1720320,16384,2228224 -(1,136:1358238,49800853:1179648,16384,0 +(1,130:1358238,49800853:1720320,16384,2228224 +(1,130:1358238,49800853:1179648,16384,0 r1,137:2537886,49800853:1179648,16384,0 ) -g1,136:3062174,49800853 -(1,136:3062174,52029077:16384,1703936,0 -[1,136:3062174,52029077:25952256,1703936,0 -(1,136:3062174,51504789:25952256,1179648,0 -(1,136:3062174,51504789:16384,1179648,0 +g1,130:3062174,49800853 +(1,130:3062174,52029077:16384,1703936,0 +[1,130:3062174,52029077:25952256,1703936,0 +(1,130:3062174,51504789:25952256,1179648,0 +(1,130:3062174,51504789:16384,1179648,0 r1,137:3078558,51504789:16384,1179648,0 ) -k1,136:29014430,51504789:25935872 -g1,136:29014430,51504789 +k1,130:29014430,51504789:25935872 +g1,130:29014430,51504789 ) ] ) @@ -30135,20 +30459,20 @@ g1,136:29014430,51504789 (1,137:3078558,49800853:0,16384,2228224 g1,137:29030814,49800853 g1,137:36135244,49800853 -(1,136:36135244,49800853:1720320,16384,2228224 -(1,136:36135244,52029077:16384,1703936,0 -[1,136:36135244,52029077:25952256,1703936,0 -(1,136:36135244,51504789:25952256,1179648,0 -(1,136:36135244,51504789:16384,1179648,0 +(1,130:36135244,49800853:1720320,16384,2228224 +(1,130:36135244,52029077:16384,1703936,0 +[1,130:36135244,52029077:25952256,1703936,0 +(1,130:36135244,51504789:25952256,1179648,0 +(1,130:36135244,51504789:16384,1179648,0 r1,137:36151628,51504789:16384,1179648,0 ) -k1,136:62087500,51504789:25935872 -g1,136:62087500,51504789 +k1,130:62087500,51504789:25935872 +g1,130:62087500,51504789 ) ] ) -g1,136:36675916,49800853 -(1,136:36675916,49800853:1179648,16384,0 +g1,130:36675916,49800853 +(1,130:36675916,49800853:1179648,16384,0 r1,137:37855564,49800853:1179648,16384,0 ) ) @@ -30165,861 +30489,128 @@ g1,137:6630773,4812305 g1,137:6630773,45706769 ) [1,137:6630773,45706769:25952256,40108032,0 -[1,136:6630773,12106481:25952256,6507744,0 -(1,136:6630773,7073297:25952256,32768,229376 -(1,136:6630773,7073297:0,32768,229376 -(1,136:6630773,7073297:5505024,32768,229376 +[1,130:6630773,12185121:25952256,6586384,0 +(1,130:6630773,7073297:25952256,32768,229376 +(1,130:6630773,7073297:0,32768,229376 +(1,130:6630773,7073297:5505024,32768,229376 r1,137:12135797,7073297:5505024,262144,229376 ) -k1,136:6630773,7073297:-5505024 +k1,130:6630773,7073297:-5505024 ) ) -(1,136:6630773,8803457:25952256,923664,241827 -h1,136:6630773,8803457:0,0,0 -g1,136:9103315,8803457 -g1,136:10667528,8803457 -k1,136:23823552,8803457:8759476 -k1,136:32583028,8803457:8759476 +(1,130:6630773,8842777:25952256,923664,227671 +h1,130:6630773,8842777:0,0,0 +g1,130:9103315,8842777 +g1,130:10667528,8842777 +k1,130:23588802,8842777:8994226 +k1,130:32583028,8842777:8994226 ) -(1,136:6630773,9419505:25952256,32768,0 -(1,136:6630773,9419505:5505024,32768,0 -r1,137:12135797,9419505:5505024,32768,0 +(1,130:6630773,9498145:25952256,32768,0 +(1,130:6630773,9498145:5505024,32768,0 +r1,137:12135797,9498145:5505024,32768,0 ) -k1,136:22359413,9419505:10223616 -k1,136:32583029,9419505:10223616 +k1,130:22359413,9498145:10223616 +k1,130:32583029,9498145:10223616 ) ] -(187,3:6630773,13603329:25952256,505283,7863 -g187,3:9448823,13603329 -h187,3:9448823,13603329:983040,0,0 -h187,3:10431863,13603329:0,0,0 -g187,3:7613813,13603329 -(187,3:7613813,13603329:1835010,485622,0 -k187,3:9448823,13603329:864422 +(188,8:6630773,13705561:25952256,505283,126483 +g188,8:9448823,13705561 +h188,8:9448823,13705561:983040,0,0 +h188,8:10431863,13705561:0,0,0 +g188,8:7613813,13705561 +(188,8:7613813,13705561:1835010,477757,0 +k188,8:9448823,13705561:864422 ) -g187,3:10844739,13603329 -g187,3:11488957,13603329 -g187,3:13909202,13603329 -(187,3:14151443,13603329:501378,78643,0 -$187,3:14151443,13603329 -(187,3:14315297,13603329:173670,78643,0 +g188,8:13227628,13705561 +g188,8:16912717,13705561 +g188,8:21024446,13705561 +(188,8:21170735,13705561:501378,78643,0 +$188,8:21170735,13705561 +(188,8:21334589,13705561:173670,78643,0 ) -$187,3:14652821,13603329 +$188,8:21672113,13705561 ) -(187,3:14652821,13603329:501378,78643,0 -(187,3:14816675,13603329:173670,78643,0 +(188,8:21672113,13705561:501378,78643,0 +(188,8:21835967,13705561:173670,78643,0 ) ) -(187,3:15154199,13603329:501378,78643,0 -(187,3:15318053,13603329:173670,78643,0 +(188,8:22173491,13705561:501378,78643,0 +(188,8:22337345,13705561:173670,78643,0 ) ) -(187,3:15655577,13603329:501378,78643,0 -(187,3:15819431,13603329:173670,78643,0 +(188,8:22674869,13705561:501378,78643,0 +(188,8:22838723,13705561:173670,78643,0 ) ) -(187,3:16156955,13603329:501378,78643,0 -(187,3:16320809,13603329:173670,78643,0 +(188,8:23176247,13705561:501378,78643,0 +(188,8:23340101,13705561:173670,78643,0 ) ) -(187,3:16658333,13603329:501378,78643,0 -(187,3:16822187,13603329:173670,78643,0 +(188,8:23677625,13705561:501378,78643,0 +(188,8:23841479,13705561:173670,78643,0 ) ) -(187,3:17159711,13603329:501378,78643,0 -(187,3:17323565,13603329:173670,78643,0 +(188,8:24179003,13705561:501378,78643,0 +(188,8:24342857,13705561:173670,78643,0 ) ) -(187,3:17661089,13603329:501378,78643,0 -(187,3:17824943,13603329:173670,78643,0 +(188,8:24680381,13705561:501378,78643,0 +(188,8:24844235,13705561:173670,78643,0 ) ) -(187,3:18162467,13603329:501378,78643,0 -(187,3:18326321,13603329:173670,78643,0 +(188,8:25181759,13705561:501378,78643,0 +(188,8:25345613,13705561:173670,78643,0 ) ) -(187,3:18663845,13603329:501378,78643,0 -(187,3:18827699,13603329:173670,78643,0 +(188,8:25683137,13705561:501378,78643,0 +(188,8:25846991,13705561:173670,78643,0 ) ) -(187,3:19165223,13603329:501378,78643,0 -(187,3:19329077,13603329:173670,78643,0 +(188,8:26184515,13705561:501378,78643,0 +(188,8:26348369,13705561:173670,78643,0 ) ) -(187,3:19666601,13603329:501378,78643,0 -(187,3:19830455,13603329:173670,78643,0 +(188,8:26685893,13705561:501378,78643,0 +(188,8:26849747,13705561:173670,78643,0 ) ) -(187,3:20167979,13603329:501378,78643,0 -(187,3:20331833,13603329:173670,78643,0 +(188,8:27187271,13705561:501378,78643,0 +(188,8:27351125,13705561:173670,78643,0 ) ) -(187,3:20669357,13603329:501378,78643,0 -(187,3:20833211,13603329:173670,78643,0 +(188,8:27688649,13705561:501378,78643,0 +(188,8:27852503,13705561:173670,78643,0 ) ) -(187,3:21170735,13603329:501378,78643,0 -(187,3:21334589,13603329:173670,78643,0 +(188,8:28190027,13705561:501378,78643,0 +(188,8:28353881,13705561:173670,78643,0 ) ) -(187,3:21672113,13603329:501378,78643,0 -(187,3:21835967,13603329:173670,78643,0 +(188,8:28691405,13705561:501378,78643,0 +(188,8:28855259,13705561:173670,78643,0 ) ) -(187,3:22173491,13603329:501378,78643,0 -(187,3:22337345,13603329:173670,78643,0 +(188,8:29192783,13705561:501378,78643,0 +(188,8:29356637,13705561:173670,78643,0 ) ) -(187,3:22674869,13603329:501378,78643,0 -(187,3:22838723,13603329:173670,78643,0 +(188,8:29694161,13705561:501378,78643,0 +(188,8:29858015,13705561:173670,78643,0 ) ) -(187,3:23176247,13603329:501378,78643,0 -(187,3:23340101,13603329:173670,78643,0 +(188,8:30195539,13705561:501378,78643,0 +(188,8:30359393,13705561:173670,78643,0 ) ) -(187,3:23677625,13603329:501378,78643,0 -(187,3:23841479,13603329:173670,78643,0 +(188,8:30696917,13705561:501378,78643,0 +(188,8:30860771,13705561:173670,78643,0 ) ) -(187,3:24179003,13603329:501378,78643,0 -(187,3:24342857,13603329:173670,78643,0 +(188,8:31239539,13705561:1343490,485622,11795 +k188,8:31387652,13705561:148113 ) -) -(187,3:24680381,13603329:501378,78643,0 -(187,3:24844235,13603329:173670,78643,0 -) -) -(187,3:25181759,13603329:501378,78643,0 -(187,3:25345613,13603329:173670,78643,0 -) -) -(187,3:25683137,13603329:501378,78643,0 -(187,3:25846991,13603329:173670,78643,0 -) -) -(187,3:26184515,13603329:501378,78643,0 -(187,3:26348369,13603329:173670,78643,0 -) -) -(187,3:26685893,13603329:501378,78643,0 -(187,3:26849747,13603329:173670,78643,0 -) -) -(187,3:27187271,13603329:501378,78643,0 -(187,3:27351125,13603329:173670,78643,0 -) -) -(187,3:27688649,13603329:501378,78643,0 -(187,3:27852503,13603329:173670,78643,0 -) -) -(187,3:28190027,13603329:501378,78643,0 -(187,3:28353881,13603329:173670,78643,0 -) -) -(187,3:28691405,13603329:501378,78643,0 -(187,3:28855259,13603329:173670,78643,0 -) -) -(187,3:29192783,13603329:501378,78643,0 -(187,3:29356637,13603329:173670,78643,0 -) -) -(187,3:29694161,13603329:501378,78643,0 -(187,3:29858015,13603329:173670,78643,0 -) -) -(187,3:30195539,13603329:501378,78643,0 -(187,3:30359393,13603329:173670,78643,0 -) -) -(187,3:30696917,13603329:501378,78643,0 -(187,3:30860771,13603329:173670,78643,0 -) -) -(187,3:31239538,13603329:1343490,485622,0 -k187,3:31786110,13603329:546572 -) -g187,3:30911858,13603329 -g187,3:32583028,13603329 -) -(187,4:6630773,14444817:25952256,505283,126483 -g187,4:9448823,14444817 -h187,4:9448823,14444817:983040,0,0 -h187,4:10431863,14444817:0,0,0 -g187,4:7613813,14444817 -(187,4:7613813,14444817:1835010,485622,0 -k187,4:9448823,14444817:864422 -) -g187,4:11504032,14444817 -g187,4:12319299,14444817 -g187,4:14782797,14444817 -(187,4:15154199,14444817:501378,78643,0 -$187,4:15154199,14444817 -(187,4:15318053,14444817:173670,78643,0 -) -$187,4:15655577,14444817 -) -(187,4:15655577,14444817:501378,78643,0 -(187,4:15819431,14444817:173670,78643,0 -) -) -(187,4:16156955,14444817:501378,78643,0 -(187,4:16320809,14444817:173670,78643,0 -) -) -(187,4:16658333,14444817:501378,78643,0 -(187,4:16822187,14444817:173670,78643,0 -) -) -(187,4:17159711,14444817:501378,78643,0 -(187,4:17323565,14444817:173670,78643,0 -) -) -(187,4:17661089,14444817:501378,78643,0 -(187,4:17824943,14444817:173670,78643,0 -) -) -(187,4:18162467,14444817:501378,78643,0 -(187,4:18326321,14444817:173670,78643,0 -) -) -(187,4:18663845,14444817:501378,78643,0 -(187,4:18827699,14444817:173670,78643,0 -) -) -(187,4:19165223,14444817:501378,78643,0 -(187,4:19329077,14444817:173670,78643,0 -) -) -(187,4:19666601,14444817:501378,78643,0 -(187,4:19830455,14444817:173670,78643,0 -) -) -(187,4:20167979,14444817:501378,78643,0 -(187,4:20331833,14444817:173670,78643,0 -) -) -(187,4:20669357,14444817:501378,78643,0 -(187,4:20833211,14444817:173670,78643,0 -) -) -(187,4:21170735,14444817:501378,78643,0 -(187,4:21334589,14444817:173670,78643,0 -) -) -(187,4:21672113,14444817:501378,78643,0 -(187,4:21835967,14444817:173670,78643,0 -) -) -(187,4:22173491,14444817:501378,78643,0 -(187,4:22337345,14444817:173670,78643,0 -) -) -(187,4:22674869,14444817:501378,78643,0 -(187,4:22838723,14444817:173670,78643,0 -) -) -(187,4:23176247,14444817:501378,78643,0 -(187,4:23340101,14444817:173670,78643,0 -) -) -(187,4:23677625,14444817:501378,78643,0 -(187,4:23841479,14444817:173670,78643,0 -) -) -(187,4:24179003,14444817:501378,78643,0 -(187,4:24342857,14444817:173670,78643,0 -) -) -(187,4:24680381,14444817:501378,78643,0 -(187,4:24844235,14444817:173670,78643,0 -) -) -(187,4:25181759,14444817:501378,78643,0 -(187,4:25345613,14444817:173670,78643,0 -) -) -(187,4:25683137,14444817:501378,78643,0 -(187,4:25846991,14444817:173670,78643,0 -) -) -(187,4:26184515,14444817:501378,78643,0 -(187,4:26348369,14444817:173670,78643,0 -) -) -(187,4:26685893,14444817:501378,78643,0 -(187,4:26849747,14444817:173670,78643,0 -) -) -(187,4:27187271,14444817:501378,78643,0 -(187,4:27351125,14444817:173670,78643,0 -) -) -(187,4:27688649,14444817:501378,78643,0 -(187,4:27852503,14444817:173670,78643,0 -) -) -(187,4:28190027,14444817:501378,78643,0 -(187,4:28353881,14444817:173670,78643,0 -) -) -(187,4:28691405,14444817:501378,78643,0 -(187,4:28855259,14444817:173670,78643,0 -) -) -(187,4:29192783,14444817:501378,78643,0 -(187,4:29356637,14444817:173670,78643,0 -) -) -(187,4:29694161,14444817:501378,78643,0 -(187,4:29858015,14444817:173670,78643,0 -) -) -(187,4:30195539,14444817:501378,78643,0 -(187,4:30359393,14444817:173670,78643,0 -) -) -(187,4:30696917,14444817:501378,78643,0 -(187,4:30860771,14444817:173670,78643,0 -) -) -(187,4:31239539,14444817:1343490,485622,11795 -k187,4:31786111,14444817:546572 -) -g187,4:30911859,14444817 -g187,4:32583029,14444817 -) -(187,5:6630773,15286305:25952256,505283,11795 -g187,5:9448823,15286305 -h187,5:9448823,15286305:983040,0,0 -h187,5:10431863,15286305:0,0,0 -g187,5:7613813,15286305 -(187,5:7613813,15286305:1835010,485622,11795 -k187,5:9448823,15286305:864422 -) -g187,5:10844739,15286305 -g187,5:11488957,15286305 -g187,5:13909202,15286305 -(187,5:14151443,15286305:501378,78643,0 -$187,5:14151443,15286305 -(187,5:14315297,15286305:173670,78643,0 -) -$187,5:14652821,15286305 -) -(187,5:14652821,15286305:501378,78643,0 -(187,5:14816675,15286305:173670,78643,0 -) -) -(187,5:15154199,15286305:501378,78643,0 -(187,5:15318053,15286305:173670,78643,0 -) -) -(187,5:15655577,15286305:501378,78643,0 -(187,5:15819431,15286305:173670,78643,0 -) -) -(187,5:16156955,15286305:501378,78643,0 -(187,5:16320809,15286305:173670,78643,0 -) -) -(187,5:16658333,15286305:501378,78643,0 -(187,5:16822187,15286305:173670,78643,0 -) -) -(187,5:17159711,15286305:501378,78643,0 -(187,5:17323565,15286305:173670,78643,0 -) -) -(187,5:17661089,15286305:501378,78643,0 -(187,5:17824943,15286305:173670,78643,0 -) -) -(187,5:18162467,15286305:501378,78643,0 -(187,5:18326321,15286305:173670,78643,0 -) -) -(187,5:18663845,15286305:501378,78643,0 -(187,5:18827699,15286305:173670,78643,0 -) -) -(187,5:19165223,15286305:501378,78643,0 -(187,5:19329077,15286305:173670,78643,0 -) -) -(187,5:19666601,15286305:501378,78643,0 -(187,5:19830455,15286305:173670,78643,0 -) -) -(187,5:20167979,15286305:501378,78643,0 -(187,5:20331833,15286305:173670,78643,0 -) -) -(187,5:20669357,15286305:501378,78643,0 -(187,5:20833211,15286305:173670,78643,0 -) -) -(187,5:21170735,15286305:501378,78643,0 -(187,5:21334589,15286305:173670,78643,0 -) -) -(187,5:21672113,15286305:501378,78643,0 -(187,5:21835967,15286305:173670,78643,0 -) -) -(187,5:22173491,15286305:501378,78643,0 -(187,5:22337345,15286305:173670,78643,0 -) -) -(187,5:22674869,15286305:501378,78643,0 -(187,5:22838723,15286305:173670,78643,0 -) -) -(187,5:23176247,15286305:501378,78643,0 -(187,5:23340101,15286305:173670,78643,0 -) -) -(187,5:23677625,15286305:501378,78643,0 -(187,5:23841479,15286305:173670,78643,0 -) -) -(187,5:24179003,15286305:501378,78643,0 -(187,5:24342857,15286305:173670,78643,0 -) -) -(187,5:24680381,15286305:501378,78643,0 -(187,5:24844235,15286305:173670,78643,0 -) -) -(187,5:25181759,15286305:501378,78643,0 -(187,5:25345613,15286305:173670,78643,0 -) -) -(187,5:25683137,15286305:501378,78643,0 -(187,5:25846991,15286305:173670,78643,0 -) -) -(187,5:26184515,15286305:501378,78643,0 -(187,5:26348369,15286305:173670,78643,0 -) -) -(187,5:26685893,15286305:501378,78643,0 -(187,5:26849747,15286305:173670,78643,0 -) -) -(187,5:27187271,15286305:501378,78643,0 -(187,5:27351125,15286305:173670,78643,0 -) -) -(187,5:27688649,15286305:501378,78643,0 -(187,5:27852503,15286305:173670,78643,0 -) -) -(187,5:28190027,15286305:501378,78643,0 -(187,5:28353881,15286305:173670,78643,0 -) -) -(187,5:28691405,15286305:501378,78643,0 -(187,5:28855259,15286305:173670,78643,0 -) -) -(187,5:29192783,15286305:501378,78643,0 -(187,5:29356637,15286305:173670,78643,0 -) -) -(187,5:29694161,15286305:501378,78643,0 -(187,5:29858015,15286305:173670,78643,0 -) -) -(187,5:30195539,15286305:501378,78643,0 -(187,5:30359393,15286305:173670,78643,0 -) -) -(187,5:30696917,15286305:501378,78643,0 -(187,5:30860771,15286305:173670,78643,0 -) -) -(187,5:31239538,15286305:1343490,477757,11795 -k187,5:31786110,15286305:546572 -) -g187,5:30911858,15286305 -g187,5:32583028,15286305 -) -(187,6:6630773,16127793:25952256,505283,11795 -g187,6:9448823,16127793 -h187,6:9448823,16127793:983040,0,0 -h187,6:10431863,16127793:0,0,0 -g187,6:7613813,16127793 -(187,6:7613813,16127793:1835010,485622,0 -k187,6:9448823,16127793:864422 -) -g187,6:10844739,16127793 -g187,6:11488957,16127793 -g187,6:13909202,16127793 -(187,6:14151443,16127793:501378,78643,0 -$187,6:14151443,16127793 -(187,6:14315297,16127793:173670,78643,0 -) -$187,6:14652821,16127793 -) -(187,6:14652821,16127793:501378,78643,0 -(187,6:14816675,16127793:173670,78643,0 -) -) -(187,6:15154199,16127793:501378,78643,0 -(187,6:15318053,16127793:173670,78643,0 -) -) -(187,6:15655577,16127793:501378,78643,0 -(187,6:15819431,16127793:173670,78643,0 -) -) -(187,6:16156955,16127793:501378,78643,0 -(187,6:16320809,16127793:173670,78643,0 -) -) -(187,6:16658333,16127793:501378,78643,0 -(187,6:16822187,16127793:173670,78643,0 -) -) -(187,6:17159711,16127793:501378,78643,0 -(187,6:17323565,16127793:173670,78643,0 -) -) -(187,6:17661089,16127793:501378,78643,0 -(187,6:17824943,16127793:173670,78643,0 -) -) -(187,6:18162467,16127793:501378,78643,0 -(187,6:18326321,16127793:173670,78643,0 -) -) -(187,6:18663845,16127793:501378,78643,0 -(187,6:18827699,16127793:173670,78643,0 -) -) -(187,6:19165223,16127793:501378,78643,0 -(187,6:19329077,16127793:173670,78643,0 -) -) -(187,6:19666601,16127793:501378,78643,0 -(187,6:19830455,16127793:173670,78643,0 -) -) -(187,6:20167979,16127793:501378,78643,0 -(187,6:20331833,16127793:173670,78643,0 -) -) -(187,6:20669357,16127793:501378,78643,0 -(187,6:20833211,16127793:173670,78643,0 -) -) -(187,6:21170735,16127793:501378,78643,0 -(187,6:21334589,16127793:173670,78643,0 -) -) -(187,6:21672113,16127793:501378,78643,0 -(187,6:21835967,16127793:173670,78643,0 -) -) -(187,6:22173491,16127793:501378,78643,0 -(187,6:22337345,16127793:173670,78643,0 -) -) -(187,6:22674869,16127793:501378,78643,0 -(187,6:22838723,16127793:173670,78643,0 -) -) -(187,6:23176247,16127793:501378,78643,0 -(187,6:23340101,16127793:173670,78643,0 -) -) -(187,6:23677625,16127793:501378,78643,0 -(187,6:23841479,16127793:173670,78643,0 -) -) -(187,6:24179003,16127793:501378,78643,0 -(187,6:24342857,16127793:173670,78643,0 -) -) -(187,6:24680381,16127793:501378,78643,0 -(187,6:24844235,16127793:173670,78643,0 -) -) -(187,6:25181759,16127793:501378,78643,0 -(187,6:25345613,16127793:173670,78643,0 -) -) -(187,6:25683137,16127793:501378,78643,0 -(187,6:25846991,16127793:173670,78643,0 -) -) -(187,6:26184515,16127793:501378,78643,0 -(187,6:26348369,16127793:173670,78643,0 -) -) -(187,6:26685893,16127793:501378,78643,0 -(187,6:26849747,16127793:173670,78643,0 -) -) -(187,6:27187271,16127793:501378,78643,0 -(187,6:27351125,16127793:173670,78643,0 -) -) -(187,6:27688649,16127793:501378,78643,0 -(187,6:27852503,16127793:173670,78643,0 -) -) -(187,6:28190027,16127793:501378,78643,0 -(187,6:28353881,16127793:173670,78643,0 -) -) -(187,6:28691405,16127793:501378,78643,0 -(187,6:28855259,16127793:173670,78643,0 -) -) -(187,6:29192783,16127793:501378,78643,0 -(187,6:29356637,16127793:173670,78643,0 -) -) -(187,6:29694161,16127793:501378,78643,0 -(187,6:29858015,16127793:173670,78643,0 -) -) -(187,6:30195539,16127793:501378,78643,0 -(187,6:30359393,16127793:173670,78643,0 -) -) -(187,6:30696917,16127793:501378,78643,0 -(187,6:30860771,16127793:173670,78643,0 -) -) -(187,6:31239538,16127793:1343490,485622,11795 -k187,6:31786110,16127793:546572 -) -g187,6:30911858,16127793 -g187,6:32583028,16127793 -) -(187,7:6630773,16969281:25952256,505283,126483 -g187,7:9448823,16969281 -h187,7:9448823,16969281:983040,0,0 -h187,7:10431863,16969281:0,0,0 -g187,7:7613813,16969281 -(187,7:7613813,16969281:1835010,485622,11795 -k187,7:9448823,16969281:864422 -) -g187,7:11504032,16969281 -g187,7:14232951,16969281 -g187,7:15044942,16969281 -g187,7:16263256,16969281 -g187,7:16907474,16969281 -g187,7:19327719,16969281 -(187,7:19666601,16969281:501378,78643,0 -$187,7:19666601,16969281 -(187,7:19830455,16969281:173670,78643,0 -) -$187,7:20167979,16969281 -) -(187,7:20167979,16969281:501378,78643,0 -(187,7:20331833,16969281:173670,78643,0 -) -) -(187,7:20669357,16969281:501378,78643,0 -(187,7:20833211,16969281:173670,78643,0 -) -) -(187,7:21170735,16969281:501378,78643,0 -(187,7:21334589,16969281:173670,78643,0 -) -) -(187,7:21672113,16969281:501378,78643,0 -(187,7:21835967,16969281:173670,78643,0 -) -) -(187,7:22173491,16969281:501378,78643,0 -(187,7:22337345,16969281:173670,78643,0 -) -) -(187,7:22674869,16969281:501378,78643,0 -(187,7:22838723,16969281:173670,78643,0 -) -) -(187,7:23176247,16969281:501378,78643,0 -(187,7:23340101,16969281:173670,78643,0 -) -) -(187,7:23677625,16969281:501378,78643,0 -(187,7:23841479,16969281:173670,78643,0 -) -) -(187,7:24179003,16969281:501378,78643,0 -(187,7:24342857,16969281:173670,78643,0 -) -) -(187,7:24680381,16969281:501378,78643,0 -(187,7:24844235,16969281:173670,78643,0 -) -) -(187,7:25181759,16969281:501378,78643,0 -(187,7:25345613,16969281:173670,78643,0 -) -) -(187,7:25683137,16969281:501378,78643,0 -(187,7:25846991,16969281:173670,78643,0 -) -) -(187,7:26184515,16969281:501378,78643,0 -(187,7:26348369,16969281:173670,78643,0 -) -) -(187,7:26685893,16969281:501378,78643,0 -(187,7:26849747,16969281:173670,78643,0 -) -) -(187,7:27187271,16969281:501378,78643,0 -(187,7:27351125,16969281:173670,78643,0 -) -) -(187,7:27688649,16969281:501378,78643,0 -(187,7:27852503,16969281:173670,78643,0 -) -) -(187,7:28190027,16969281:501378,78643,0 -(187,7:28353881,16969281:173670,78643,0 -) -) -(187,7:28691405,16969281:501378,78643,0 -(187,7:28855259,16969281:173670,78643,0 -) -) -(187,7:29192783,16969281:501378,78643,0 -(187,7:29356637,16969281:173670,78643,0 -) -) -(187,7:29694161,16969281:501378,78643,0 -(187,7:29858015,16969281:173670,78643,0 -) -) -(187,7:30195539,16969281:501378,78643,0 -(187,7:30359393,16969281:173670,78643,0 -) -) -(187,7:30696917,16969281:501378,78643,0 -(187,7:30860771,16969281:173670,78643,0 -) -) -(187,7:31239539,16969281:1343490,485622,11795 -k187,7:31786111,16969281:546572 -) -g187,7:30911859,16969281 -g187,7:32583029,16969281 -) -(187,8:6630773,17810769:25952256,505283,126483 -g187,8:9448823,17810769 -h187,8:9448823,17810769:983040,0,0 -h187,8:10431863,17810769:0,0,0 -g187,8:7613813,17810769 -(187,8:7613813,17810769:1835010,485622,11795 -k187,8:9448823,17810769:864422 -) -g187,8:11504032,17810769 -g187,8:12316023,17810769 -g187,8:13534337,17810769 -g187,8:16622393,17810769 -g187,8:18195912,17810769 -g187,8:20176410,17810769 -(187,8:20669357,17810769:501378,78643,0 -$187,8:20669357,17810769 -(187,8:20833211,17810769:173670,78643,0 -) -$187,8:21170735,17810769 -) -(187,8:21170735,17810769:501378,78643,0 -(187,8:21334589,17810769:173670,78643,0 -) -) -(187,8:21672113,17810769:501378,78643,0 -(187,8:21835967,17810769:173670,78643,0 -) -) -(187,8:22173491,17810769:501378,78643,0 -(187,8:22337345,17810769:173670,78643,0 -) -) -(187,8:22674869,17810769:501378,78643,0 -(187,8:22838723,17810769:173670,78643,0 -) -) -(187,8:23176247,17810769:501378,78643,0 -(187,8:23340101,17810769:173670,78643,0 -) -) -(187,8:23677625,17810769:501378,78643,0 -(187,8:23841479,17810769:173670,78643,0 -) -) -(187,8:24179003,17810769:501378,78643,0 -(187,8:24342857,17810769:173670,78643,0 -) -) -(187,8:24680381,17810769:501378,78643,0 -(187,8:24844235,17810769:173670,78643,0 -) -) -(187,8:25181759,17810769:501378,78643,0 -(187,8:25345613,17810769:173670,78643,0 -) -) -(187,8:25683137,17810769:501378,78643,0 -(187,8:25846991,17810769:173670,78643,0 -) -) -(187,8:26184515,17810769:501378,78643,0 -(187,8:26348369,17810769:173670,78643,0 -) -) -(187,8:26685893,17810769:501378,78643,0 -(187,8:26849747,17810769:173670,78643,0 -) -) -(187,8:27187271,17810769:501378,78643,0 -(187,8:27351125,17810769:173670,78643,0 -) -) -(187,8:27688649,17810769:501378,78643,0 -(187,8:27852503,17810769:173670,78643,0 -) -) -(187,8:28190027,17810769:501378,78643,0 -(187,8:28353881,17810769:173670,78643,0 -) -) -(187,8:28691405,17810769:501378,78643,0 -(187,8:28855259,17810769:173670,78643,0 -) -) -(187,8:29192783,17810769:501378,78643,0 -(187,8:29356637,17810769:173670,78643,0 -) -) -(187,8:29694161,17810769:501378,78643,0 -(187,8:29858015,17810769:173670,78643,0 -) -) -(187,8:30195539,17810769:501378,78643,0 -(187,8:30359393,17810769:173670,78643,0 -) -) -(187,8:30696917,17810769:501378,78643,0 -(187,8:30860771,17810769:173670,78643,0 -) -) -(187,8:31239539,17810769:1343490,485622,11795 -k187,8:31786111,17810769:546572 -) -g187,8:30911859,17810769 -g187,8:32583029,17810769 +g188,8:30911859,13705561 +g188,8:32583029,13705561 ) ] (1,137:32583029,45706769:0,0,0 @@ -31033,7 +30624,7 @@ g1,137:32583029,45706769 v1,137:6630773,47279633:0,0,0 ) g1,137:6830002,47279633 -k1,137:32016798,47279633:25186796 +k1,137:31614406,47279633:24784404 ) ) ] @@ -31048,10 +30639,10 @@ g1,137:-473656,-710413 ] ) ] -!22033 -}8 +!6148 +}10 !10 -{9 +{11 [1,137:4262630,47279633:28320399,43253760,0 (1,137:4262630,4025873:0,0,0 [1,137:-473656,4025873:0,0,0 @@ -31195,43 +30786,42 @@ g1,137:-473656,-710413 ] ) ] -!3215 -}9 -Input:188:C:\Users\aphalo_2\Documents\Own_manuscripts\Books\learnr-book-crc\using-r-main-crc.lot -!106 -{10 -[1,144:4262630,47279633:28320399,43253760,0 -(1,144:4262630,4025873:0,0,0 -[1,144:-473656,4025873:0,0,0 -(1,144:-473656,-710413:0,0,0 -(1,144:-473656,-644877:0,0,0 -k1,144:-473656,-644877:-65536 +!3216 +}11 +!10 +{12 +[1,152:4262630,47279633:28320399,43253760,3931 +(1,152:4262630,4025873:0,0,0 +[1,152:-473656,4025873:0,0,0 +(1,152:-473656,-710413:0,0,0 +(1,152:-473656,-644877:0,0,0 +k1,152:-473656,-644877:-65536 ) -(1,144:-473656,4736287:0,0,0 -k1,144:-473656,4736287:5209943 +(1,152:-473656,4736287:0,0,0 +k1,152:-473656,4736287:5209943 ) -g1,144:-473656,-710413 +g1,152:-473656,-710413 ) ] ) -[1,144:6630773,47279633:25952256,43253760,0 -[1,144:6630773,4812305:25952256,786432,0 -(1,144:6630773,4812305:25952256,0,0 -(1,144:6630773,4812305:25952256,0,0 -g1,144:3078558,4812305 -[1,144:3078558,4812305:0,0,0 -(1,144:3078558,2439708:0,1703936,0 -k1,144:1358238,2439708:-1720320 +[1,152:6630773,47279633:25952256,43253760,3931 +[1,152:6630773,4812305:25952256,786432,0 +(1,152:6630773,4812305:25952256,0,0 +(1,152:6630773,4812305:25952256,0,0 +g1,152:3078558,4812305 +[1,152:3078558,4812305:0,0,0 +(1,152:3078558,2439708:0,1703936,0 +k1,152:1358238,2439708:-1720320 (1,137:1358238,2439708:1720320,1703936,0 (1,137:1358238,2439708:1179648,16384,0 -r1,144:2537886,2439708:1179648,16384,0 +r1,152:2537886,2439708:1179648,16384,0 ) g1,137:3062174,2439708 (1,137:3062174,2439708:16384,1703936,0 [1,137:3062174,2439708:25952256,1703936,0 (1,137:3062174,1915420:25952256,1179648,0 (1,137:3062174,1915420:16384,1179648,0 -r1,144:3078558,1915420:16384,1179648,0 +r1,152:3078558,1915420:16384,1179648,0 ) k1,137:29014430,1915420:25935872 g1,137:29014430,1915420 @@ -31241,16 +30831,16 @@ g1,137:29014430,1915420 ) ) ] -[1,144:3078558,4812305:0,0,0 -(1,144:3078558,2439708:0,1703936,0 -g1,144:29030814,2439708 -g1,144:36135244,2439708 +[1,152:3078558,4812305:0,0,0 +(1,152:3078558,2439708:0,1703936,0 +g1,152:29030814,2439708 +g1,152:36135244,2439708 (1,137:36135244,2439708:1720320,1703936,0 (1,137:36135244,2439708:16384,1703936,0 [1,137:36135244,2439708:25952256,1703936,0 (1,137:36135244,1915420:25952256,1179648,0 (1,137:36135244,1915420:16384,1179648,0 -r1,144:36151628,1915420:16384,1179648,0 +r1,152:36151628,1915420:16384,1179648,0 ) k1,137:62087500,1915420:25935872 g1,137:62087500,1915420 @@ -31259,25 +30849,25 @@ g1,137:62087500,1915420 ) g1,137:36675916,2439708 (1,137:36675916,2439708:1179648,16384,0 -r1,144:37855564,2439708:1179648,16384,0 +r1,152:37855564,2439708:1179648,16384,0 ) ) -k1,144:3078556,2439708:-34777008 +k1,152:3078556,2439708:-34777008 ) ] -[1,144:3078558,4812305:0,0,0 -(1,144:3078558,49800853:0,16384,2228224 -k1,144:1358238,49800853:-1720320 +[1,152:3078558,4812305:0,0,0 +(1,152:3078558,49800853:0,16384,2228224 +k1,152:1358238,49800853:-1720320 (1,137:1358238,49800853:1720320,16384,2228224 (1,137:1358238,49800853:1179648,16384,0 -r1,144:2537886,49800853:1179648,16384,0 +r1,152:2537886,49800853:1179648,16384,0 ) g1,137:3062174,49800853 (1,137:3062174,52029077:16384,1703936,0 [1,137:3062174,52029077:25952256,1703936,0 (1,137:3062174,51504789:25952256,1179648,0 (1,137:3062174,51504789:16384,1179648,0 -r1,144:3078558,51504789:16384,1179648,0 +r1,152:3078558,51504789:16384,1179648,0 ) k1,137:29014430,51504789:25935872 g1,137:29014430,51504789 @@ -31287,16 +30877,16 @@ g1,137:29014430,51504789 ) ) ] -[1,144:3078558,4812305:0,0,0 -(1,144:3078558,49800853:0,16384,2228224 -g1,144:29030814,49800853 -g1,144:36135244,49800853 +[1,152:3078558,4812305:0,0,0 +(1,152:3078558,49800853:0,16384,2228224 +g1,152:29030814,49800853 +g1,152:36135244,49800853 (1,137:36135244,49800853:1720320,16384,2228224 (1,137:36135244,52029077:16384,1703936,0 [1,137:36135244,52029077:25952256,1703936,0 (1,137:36135244,51504789:25952256,1179648,0 (1,137:36135244,51504789:16384,1179648,0 -r1,144:36151628,51504789:16384,1179648,0 +r1,152:36151628,51504789:16384,1179648,0 ) k1,137:62087500,51504789:25935872 g1,137:62087500,51504789 @@ -31305,35789 +30895,35451 @@ g1,137:62087500,51504789 ) g1,137:36675916,49800853 (1,137:36675916,49800853:1179648,16384,0 -r1,144:37855564,49800853:1179648,16384,0 +r1,152:37855564,49800853:1179648,16384,0 ) ) -k1,144:3078556,49800853:-34777008 +k1,152:3078556,49800853:-34777008 ) ] -g1,144:6630773,4812305 +g1,152:6630773,4812305 ) ) ] -[1,144:6630773,45706769:25952256,40108032,0 -(1,144:6630773,45706769:25952256,40108032,0 -(1,144:6630773,45706769:0,0,0 -g1,144:6630773,45706769 +[1,152:6630773,45706769:25952256,40108032,0 +(1,152:6630773,45706769:25952256,40108032,0 +(1,152:6630773,45706769:0,0,0 +g1,152:6630773,45706769 ) -[1,144:6630773,45706769:25952256,40108032,0 -[1,137:6630773,12106481:25952256,6507744,0 +[1,152:6630773,45706769:25952256,40108032,0 +[1,137:6630773,12185121:25952256,6586384,0 (1,137:6630773,7073297:25952256,32768,229376 (1,137:6630773,7073297:0,32768,229376 (1,137:6630773,7073297:5505024,32768,229376 -r1,144:12135797,7073297:5505024,262144,229376 +r1,152:12135797,7073297:5505024,262144,229376 ) k1,137:6630773,7073297:-5505024 ) ) -(1,137:6630773,8803457:25952256,923664,227671 -h1,137:6630773,8803457:0,0,0 -g1,137:9103315,8803457 -g1,137:10667528,8803457 -k1,137:23588802,8803457:8994226 -k1,137:32583028,8803457:8994226 -) -(1,137:6630773,9419505:25952256,32768,0 -(1,137:6630773,9419505:5505024,32768,0 -r1,144:12135797,9419505:5505024,32768,0 -) -k1,137:22359413,9419505:10223616 -k1,137:32583029,9419505:10223616 +(1,137:6630773,8842777:25952256,923664,227671 +h1,137:6630773,8842777:0,0,0 +k1,137:21844104,8842777:10738926 +k1,137:32583030,8842777:10738926 +) +(1,137:6630773,9498145:25952256,32768,0 +(1,137:6630773,9498145:5505024,32768,0 +r1,152:12135797,9498145:5505024,32768,0 +) +k1,137:22359413,9498145:10223616 +k1,137:32583029,9498145:10223616 +) +] +(1,139:6630773,13836633:25952256,131072,0 +r1,152:32583029,13836633:25952256,131072,0 +g1,139:32583029,13836633 +g1,139:32583029,13836633 +) +(1,141:6630773,15180126:25952256,505283,134348 +k1,141:8596853,15180126:1966080 +k1,140:11718282,15180126:137575 +k1,140:13140363,15180126:137575 +k1,140:14448411,15180126:137575 +k1,140:16134602,15180126:137575 +k1,140:16923605,15180126:137575 +k1,140:18769704,15180126:137575 +k1,140:19926365,15180126:137576 +k1,140:21357621,15180126:137575 +k1,140:23996705,15180126:137575 +k1,140:24785708,15180126:137575 +k1,140:25279143,15180126:137575 +k1,140:26770692,15180126:137575 +k1,140:28867793,15180126:137575 +k1,140:32583029,15180126:1966080 +) +(1,141:6630773,16045206:25952256,505283,126483 +k1,141:8596853,16045206:1966080 +k1,140:9734379,16045206:239683 +k1,140:11144535,16045206:239683 +k1,140:13694362,16045206:239683 +k1,140:15218551,16045206:239683 +k1,140:15814094,16045206:239683 +k1,140:17000118,16045206:239684 +k1,140:17771298,16045206:239683 +k1,140:18366841,16045206:239683 +k1,140:21532051,16045206:239683 +k1,140:23661792,16045206:239683 +k1,140:26843386,16045206:239683 +k1,140:32583029,16045206:1966080 +) +(1,141:6630773,16910286:25952256,505283,126483 +k1,141:8596853,16910286:1966080 +k1,140:11546038,16910286:172425 +k1,140:13112414,16910286:172425 +k1,140:16566227,16910286:172425 +k1,140:18658202,16910286:172425 +k1,140:19186487,16910286:172425 +k1,140:22680278,16910286:172426 +k1,140:24527148,16910286:172425 +k1,140:27031999,16910286:172425 +k1,140:28642939,16910286:172425 +k1,140:29612282,16910286:172425 +k1,140:32583029,16910286:1966080 +) +(1,141:6630773,17775366:25952256,513147,134348 +k1,141:8596853,17775366:1966080 +k1,140:10092439,17775366:255645 +k1,140:11601788,17775366:255645 +k1,140:14684001,17775366:255645 +k1,140:16600328,17775366:255645 +k1,140:17875058,17775366:255645 +k1,140:19145200,17775366:255645 +k1,140:19756704,17775366:255644 +k1,140:20868905,17775366:255645 +k1,140:21783842,17775366:255645 +k1,140:24801830,17775366:255645 +k1,140:26507787,17775366:255645 +k1,140:28800946,17775366:255645 +k1,140:32583029,17775366:1966080 +) +(1,141:6630773,18640446:25952256,505283,134348 +k1,141:8596853,18640446:1966080 +k1,140:10264798,18640446:216323 +k1,140:12080200,18640446:216324 +k1,140:13789433,18640446:216323 +k1,140:14463854,18640446:216324 +k1,140:15988931,18640446:216323 +k1,140:17224340,18640446:216324 +k1,140:18939471,18640446:216323 +k1,140:19984824,18640446:216323 +k1,140:21293633,18640446:216324 +k1,140:21968053,18640446:216323 +k1,140:23834574,18640446:216324 +k1,140:27123880,18640446:216323 +k1,141:32583029,18640446:1966080 +) +(1,141:6630773,19505526:25952256,513147,126483 +g1,141:8596853,19505526 +g1,140:10393850,19505526 +g1,140:11584639,19505526 +g1,140:13118836,19505526 +g1,140:15061978,19505526 +g1,140:16022735,19505526 +g1,140:19810715,19505526 +g1,140:21577565,19505526 +k1,141:30616949,19505526:5152444 +g1,141:32583029,19505526 +) +(1,142:6630773,21157038:25952256,475791,7863 +k1,142:27570837,21157038:20940064 +h1,142:27570837,21157038:0,0,0 +g1,142:28388726,21157038 +g1,142:29137147,21157038 +g1,142:30616950,21157038 +g1,142:32583030,21157038 +) +(1,143:6630773,22022118:25952256,505283,134348 +k1,143:16377944,22022118:9747171 +h1,142:16377944,22022118:0,0,0 +g1,142:17857091,22022118 +g1,142:18923361,22022118 +g1,142:20846187,22022118 +g1,142:25094886,22022118 +g1,142:29023113,22022118 +g1,143:30616949,22022118 +g1,143:32583029,22022118 +) +(1,143:6630773,23280414:25952256,131072,0 +r1,152:32583029,23280414:25952256,131072,0 +g1,143:32583029,23280414 +g1,143:34549109,23280414 +) +(1,147:6630773,24931926:25952256,505283,134348 +k1,146:8270156,24931926:257229 +k1,146:9546469,24931926:257228 +k1,146:11071164,24931926:257229 +k1,146:13462901,24931926:257229 +k1,146:14343376,24931926:257228 +k1,146:15378517,24931926:257229 +k1,146:16034205,24931926:257229 +k1,146:20045336,24931926:257228 +k1,146:21683409,24931926:257229 +k1,146:23522676,24931926:257228 +k1,146:24311402,24931926:257229 +k1,146:26423300,24931926:257229 +k1,146:27489898,24931926:257228 +k1,146:31391584,24931926:257229 +k1,146:32583029,24931926:0 +) +(1,147:6630773,25797006:25952256,505283,134348 +k1,146:9436588,25797006:268261 +k1,146:10989354,25797006:268260 +k1,146:12764943,25797006:268261 +k1,146:13645965,25797006:268260 +k1,146:16612999,25797006:268261 +k1,146:18211640,25797006:268260 +k1,146:19131329,25797006:268261 +k1,146:21829009,25797006:268260 +k1,146:24439527,25797006:268261 +k1,146:28112382,25797006:268260 +k1,146:29190013,25797006:268261 +k1,146:30847636,25797006:268260 +k1,146:32583029,25797006:0 +) +(1,147:6630773,26662086:25952256,513147,134348 +k1,146:7893187,26662086:243329 +k1,146:8551314,26662086:243284 +k1,146:11810610,26662086:243329 +k1,146:12523832,26662086:243329 +k1,146:15182818,26662086:243329 +k1,146:16235517,26662086:243329 +k1,146:17497931,26662086:243329 +k1,146:20757227,26662086:243329 +k1,146:22952218,26662086:243329 +k1,146:24637994,26662086:243329 +k1,146:25690692,26662086:243328 +k1,146:28331328,26662086:243329 +k1,146:30291045,26662086:243329 +k1,146:31193666,26662086:243329 +k1,146:32583029,26662086:0 +) +(1,147:6630773,27527166:25952256,513147,134348 +k1,146:9531069,27527166:172032 +k1,146:10894546,27527166:172032 +k1,146:13602166,27527166:172032 +k1,146:14793282,27527166:172031 +k1,146:17013314,27527166:172032 +k1,146:17836774,27527166:172032 +k1,146:20353029,27527166:172032 +k1,146:22347617,27527166:172032 +k1,146:23711094,27527166:172032 +k1,146:25376036,27527166:172032 +k1,146:26614338,27527166:172031 +k1,146:28528972,27527166:172032 +k1,146:29720089,27527166:172032 +k1,146:31923737,27527166:172032 +k1,146:32583029,27527166:0 +) +(1,147:6630773,28392246:25952256,513147,134348 +k1,146:7880030,28392246:230172 +k1,146:11126168,28392246:230171 +k1,146:13139575,28392246:230172 +k1,146:14238099,28392246:230172 +k1,146:15560756,28392246:230172 +k1,146:16888655,28392246:230171 +k1,146:19052139,28392246:230172 +k1,146:22124607,28392246:230172 +k1,146:22970816,28392246:230171 +k1,146:26040008,28392246:230172 +k1,146:27462280,28392246:230172 +k1,146:28560804,28392246:230172 +k1,146:29606243,28392246:230171 +k1,146:30902686,28392246:230172 +k1,146:32583029,28392246:0 +) +(1,147:6630773,29257326:25952256,513147,134348 +k1,146:8699565,29257326:246236 +k1,146:11848392,29257326:246237 +k1,146:13680599,29257326:246236 +k1,146:14609721,29257326:246237 +k1,146:17648446,29257326:246236 +k1,146:20999779,29257326:246237 +k1,146:23316953,29257326:246236 +k1,146:24510841,29257326:246237 +k1,146:25776162,29257326:246236 +k1,146:28331888,29257326:246237 +k1,146:29261009,29257326:246236 +k1,146:32583029,29257326:0 +) +(1,147:6630773,30122406:25952256,513147,134348 +k1,146:10250578,30122406:289265 +k1,146:11464556,30122406:289265 +k1,146:12930848,30122406:289265 +k1,146:13751610,30122406:289265 +k1,146:14988526,30122406:289265 +k1,146:16481032,30122406:289265 +k1,146:18352336,30122406:289265 +k1,146:19293029,30122406:289265 +k1,146:20970347,30122406:289265 +k1,146:23637914,30122406:289265 +k1,146:25505286,30122406:289265 +k1,146:26445979,30122406:289265 +k1,146:27827729,30122406:289265 +k1,146:28531747,30122406:289175 +k1,146:29437050,30122406:289265 +k1,146:30929556,30122406:289265 +k1,146:32583029,30122406:0 +) +(1,147:6630773,30987486:25952256,513147,126483 +k1,146:8314159,30987486:271740 +k1,146:9655448,30987486:271741 +k1,146:10578616,30987486:271740 +k1,146:13293538,30987486:271740 +k1,146:15433709,30987486:271740 +k1,146:16321488,30987486:271741 +k1,146:17181741,30987486:271740 +k1,146:18650168,30987486:271740 +k1,146:20503948,30987486:271741 +k1,146:21307185,30987486:271740 +k1,146:24931092,30987486:271740 +k1,146:27492005,30987486:271740 +k1,146:28782831,30987486:271741 +k1,146:31923737,30987486:271740 +k1,146:32583029,30987486:0 +) +(1,147:6630773,31852566:25952256,505283,134348 +k1,146:9942962,31852566:139591 +k1,146:11476505,31852566:139592 +k1,146:14033719,31852566:139591 +k1,146:15771079,31852566:139592 +k1,146:17195176,31852566:139591 +k1,146:20192137,31852566:139591 +k1,146:21350814,31852566:139592 +k1,146:24204251,31852566:139591 +k1,146:26979046,31852566:139592 +k1,146:29410431,31852566:139591 +k1,146:32583029,31852566:0 +) +(1,147:6630773,32717646:25952256,505283,134348 +g1,146:7976227,32717646 +g1,146:10486911,32717646 +g1,146:11877585,32717646 +g1,146:13095899,32717646 +g1,146:13709971,32717646 +k1,147:32583029,32717646:15857091 +g1,147:32583029,32717646 +) +(1,149:6630773,33582726:25952256,513147,134348 +h1,148:6630773,33582726:983040,0,0 +k1,148:9601174,33582726:153008 +k1,148:10377428,33582726:153007 +k1,148:11308348,33582726:153008 +k1,148:11859815,33582726:153008 +k1,148:15139545,33582726:153007 +k1,148:15824050,33582726:153008 +k1,148:18739401,33582726:153008 +k1,148:19543836,33582726:153007 +k1,148:21398814,33582726:153008 +k1,148:23464163,33582726:153008 +k1,148:25439726,33582726:153007 +k1,148:26007531,33582726:152962 +k1,148:26776577,33582726:153008 +k1,148:28214090,33582726:153007 +k1,148:28825195,33582726:153008 +k1,148:32583029,33582726:0 +) +(1,149:6630773,34447806:25952256,513147,134348 +k1,148:9463662,34447806:231110 +k1,148:10354065,34447806:231111 +k1,148:11604260,34447806:231110 +k1,148:14677666,34447806:231110 +k1,148:16688079,34447806:231111 +k1,148:18870851,34447806:231110 +k1,148:20544409,34447806:231111 +k1,148:22105900,34447806:231110 +k1,148:22988438,34447806:231110 +k1,148:24312034,34447806:231111 +k1,148:24957955,34447806:231078 +k1,148:25840493,34447806:231110 +k1,148:28565249,34447806:231111 +k1,148:31193666,34447806:231110 +k1,148:32583029,34447806:0 +) +(1,149:6630773,35312886:25952256,505283,134348 +k1,148:9323277,35312886:137911 +k1,148:11300783,35312886:137910 +k1,148:12635381,35312886:137911 +k1,148:13950319,35312886:137911 +k1,148:14619726,35312886:137910 +k1,148:15409065,35312886:137911 +k1,148:17617913,35312886:137910 +k1,148:20134126,35312886:137911 +k1,148:20923465,35312886:137911 +k1,148:22153860,35312886:137910 +k1,148:22706553,35312886:137850 +k1,148:23495892,35312886:137911 +k1,148:27067233,35312886:137910 +k1,148:29640462,35312886:137911 +k1,148:32583029,35312886:0 +) +(1,149:6630773,36177966:25952256,513147,126483 +k1,148:7416714,36177966:134513 +k1,148:8570311,36177966:134512 +k1,148:10094187,36177966:134513 +k1,148:12783293,36177966:134513 +k1,148:14109250,36177966:134512 +k1,148:15633126,36177966:134513 +k1,148:19846600,36177966:134513 +k1,148:21647037,36177966:134512 +k1,148:23161738,36177966:134513 +k1,148:26682496,36177966:134513 +k1,148:27965854,36177966:134512 +k1,148:28759659,36177966:134513 +k1,148:32583029,36177966:0 +) +(1,149:6630773,37043046:25952256,513147,134348 +k1,148:9580397,37043046:164999 +k1,148:10936842,37043046:165000 +k1,148:12491204,37043046:164999 +k1,148:15210797,37043046:165000 +k1,148:16476801,37043046:164999 +k1,148:19084982,37043046:164999 +k1,148:20900179,37043046:165000 +k1,148:23803928,37043046:164999 +k1,148:24584965,37043046:164999 +k1,148:26484048,37043046:165000 +k1,148:28042998,37043046:164999 +k1,148:28563858,37043046:165000 +k1,148:30981329,37043046:164999 +k1,149:32583029,37043046:0 +) +(1,149:6630773,37908126:25952256,513147,126483 +k1,148:8438092,37908126:294748 +k1,148:11523363,37908126:294748 +k1,148:12434149,37908126:294748 +k1,148:14237536,37908126:294748 +k1,148:15798440,37908126:294748 +k1,148:17239413,37908126:294748 +k1,148:21265125,37908126:294747 +k1,148:22416429,37908126:294748 +k1,148:23730262,37908126:294748 +k1,148:27530531,37908126:294748 +k1,148:28484571,37908126:294748 +k1,148:29798404,37908126:294748 +k1,148:32583029,37908126:0 +) +(1,149:6630773,38773206:25952256,505283,134348 +k1,148:8388230,38773206:244231 +k1,148:9733466,38773206:244231 +k1,148:13937382,38773206:244231 +k1,148:17221172,38773206:244230 +k1,148:18081441,38773206:244231 +k1,148:20314034,38773206:244231 +k1,148:22414900,38773206:244231 +k1,148:23805356,38773206:244231 +k1,148:24665625,38773206:244231 +k1,148:27413330,38773206:244230 +k1,148:29176030,38773206:244231 +k1,148:31478747,38773206:244231 +k1,148:32583029,38773206:0 +) +(1,149:6630773,39638286:25952256,513147,126483 +g1,148:7577768,39638286 +g1,148:10616017,39638286 +g1,148:11466674,39638286 +g1,148:14443974,39638286 +g1,148:15259241,39638286 +g1,148:16477555,39638286 +k1,149:32583029,39638286:13944752 +g1,149:32583029,39638286 +) +(1,151:6630773,40503366:25952256,513147,134348 +h1,150:6630773,40503366:983040,0,0 +k1,150:11241496,40503366:222432 +k1,150:13215704,40503366:222431 +k1,150:16210309,40503366:222432 +k1,150:17092032,40503366:222431 +k1,150:20380238,40503366:222432 +k1,150:21794114,40503366:222431 +k1,150:26634868,40503366:222432 +k1,150:29495778,40503366:222431 +k1,150:31329740,40503366:222432 +k1,150:31966991,40503366:222408 +k1,150:32583029,40503366:0 +) +(1,151:6630773,41368446:25952256,513147,134348 +k1,150:9242144,41368446:172121 +k1,150:11236822,41368446:172122 +k1,150:14262381,41368446:172121 +k1,150:15117387,41368446:172121 +k1,150:16678871,41368446:172121 +k1,150:19579257,41368446:172122 +k1,150:22686080,41368446:172121 +k1,150:26163182,41368446:172121 +k1,150:27401574,41368446:172121 +k1,150:28189734,41368446:172122 +k1,150:30722462,41368446:172121 +k1,150:32583029,41368446:0 +) +(1,151:6630773,42233526:25952256,513147,134348 +k1,150:7544891,42233526:262690 +k1,150:11050302,42233526:262690 +k1,150:12405478,42233526:262691 +k1,150:13126265,42233526:262690 +k1,150:14004993,42233526:262690 +k1,150:16429060,42233526:262690 +k1,150:17639401,42233526:262690 +k1,150:21547203,42233526:262690 +k1,150:23199257,42233526:262691 +k1,150:26162686,42233526:262690 +k1,150:27108261,42233526:262690 +k1,150:31563944,42233526:262690 +k1,150:32583029,42233526:0 +) +(1,151:6630773,43098606:25952256,513147,126483 +k1,150:8662192,43098606:148570 +k1,150:10200125,43098606:148570 +k1,150:12903288,43098606:148570 +k1,150:15998357,43098606:148570 +k1,150:16798355,43098606:148570 +k1,150:19089953,43098606:148571 +k1,150:24147825,43098606:148570 +k1,150:27093472,43098606:148570 +k1,150:27858080,43098606:148570 +k1,150:29025735,43098606:148570 +k1,150:32583029,43098606:0 +) +(1,151:6630773,43963686:25952256,513147,134348 +k1,150:8018346,43963686:196128 +k1,150:9500289,43963686:196127 +k1,150:10312455,43963686:196128 +k1,150:12210552,43963686:196127 +k1,150:14314433,43963686:196128 +k1,150:15847494,43963686:196127 +k1,150:17309778,43963686:196128 +k1,150:17964002,43963686:196127 +k1,150:20030528,43963686:196128 +k1,150:20878083,43963686:196127 +k1,150:22685741,43963686:196128 +k1,150:23900953,43963686:196127 +k1,150:24511921,43963686:196125 +k1,150:27550344,43963686:196127 +k1,150:31015408,43963686:196128 +k1,150:32583029,43963686:0 +) +(1,151:6630773,44828766:25952256,513147,126483 +k1,150:8302268,44828766:282132 +k1,150:11138994,44828766:282133 +k1,150:12612571,44828766:282132 +k1,150:15921812,44828766:282133 +k1,150:18036331,44828766:282132 +k1,150:19310024,44828766:282133 +k1,150:20877972,44828766:282132 +k1,150:22911881,44828766:282132 +k1,150:24524395,44828766:282133 +k1,150:25798087,44828766:282132 +k1,150:28414612,44828766:282133 +k1,150:31189078,44828766:282132 +k1,150:32583029,44828766:0 +) +(1,151:6630773,45693846:25952256,513147,134348 +k1,150:9928029,45693846:213132 +k1,150:13304585,45693846:213133 +k1,150:14709162,45693846:213132 +k1,150:16839878,45693846:213133 +k1,150:17704438,45693846:213132 +k1,150:19975401,45693846:213133 +k1,150:21756154,45693846:213132 +k1,150:23671256,45693846:213132 +k1,150:26643455,45693846:213133 +k1,150:27508015,45693846:213132 +k1,150:28309661,45693846:213133 +k1,150:30357146,45693846:213132 +k1,150:31193526,45693846:213133 +k1,150:32184570,45693846:213132 +k1,150:32583029,45693846:0 +) +] +(1,152:32583029,45706769:0,0,0 +g1,152:32583029,45706769 +) +) +] +(1,152:6630773,47279633:25952256,347341,3931 +(1,152:6630773,47279633:25952256,347341,3931 +(1,152:6630773,47279633:0,0,0 +v1,152:6630773,47279633:0,0,0 +) +g1,152:6830002,47279633 +k1,152:31860822,47279633:25030820 +) +) +] +(1,152:4262630,4025873:0,0,0 +[1,152:-473656,4025873:0,0,0 +(1,152:-473656,-710413:0,0,0 +(1,152:-473656,-710413:0,0,0 +g1,152:-473656,-710413 +) +g1,152:-473656,-710413 ) ] -(188,8:6630773,13603329:25952256,505283,126483 -g188,8:9448823,13603329 -h188,8:9448823,13603329:983040,0,0 -h188,8:10431863,13603329:0,0,0 -g188,8:7613813,13603329 -(188,8:7613813,13603329:1835010,477757,0 -k188,8:9448823,13603329:864422 -) -g188,8:13227628,13603329 -g188,8:16912717,13603329 -g188,8:21024446,13603329 -(188,8:21170735,13603329:501378,78643,0 -$188,8:21170735,13603329 -(188,8:21334589,13603329:173670,78643,0 ) -$188,8:21672113,13603329 +] +!19167 +}12 +!11 +{13 +[1,161:4262630,47279633:28320399,43253760,0 +(1,161:4262630,4025873:0,0,0 +[1,161:-473656,4025873:0,0,0 +(1,161:-473656,-710413:0,0,0 +(1,161:-473656,-644877:0,0,0 +k1,161:-473656,-644877:-65536 ) -(188,8:21672113,13603329:501378,78643,0 -(188,8:21835967,13603329:173670,78643,0 +(1,161:-473656,4736287:0,0,0 +k1,161:-473656,4736287:5209943 ) +g1,161:-473656,-710413 ) -(188,8:22173491,13603329:501378,78643,0 -(188,8:22337345,13603329:173670,78643,0 +] ) +[1,161:6630773,47279633:25952256,43253760,0 +[1,161:6630773,4812305:25952256,786432,0 +(1,161:6630773,4812305:25952256,513147,126483 +(1,161:6630773,4812305:25952256,513147,126483 +g1,161:3078558,4812305 +[1,161:3078558,4812305:0,0,0 +(1,161:3078558,2439708:0,1703936,0 +k1,161:1358238,2439708:-1720320 +(1,137:1358238,2439708:1720320,1703936,0 +(1,137:1358238,2439708:1179648,16384,0 +r1,161:2537886,2439708:1179648,16384,0 ) -(188,8:22674869,13603329:501378,78643,0 -(188,8:22838723,13603329:173670,78643,0 +g1,137:3062174,2439708 +(1,137:3062174,2439708:16384,1703936,0 +[1,137:3062174,2439708:25952256,1703936,0 +(1,137:3062174,1915420:25952256,1179648,0 +(1,137:3062174,1915420:16384,1179648,0 +r1,161:3078558,1915420:16384,1179648,0 ) +k1,137:29014430,1915420:25935872 +g1,137:29014430,1915420 ) -(188,8:23176247,13603329:501378,78643,0 -(188,8:23340101,13603329:173670,78643,0 +] ) ) -(188,8:23677625,13603329:501378,78643,0 -(188,8:23841479,13603329:173670,78643,0 ) +] +[1,161:3078558,4812305:0,0,0 +(1,161:3078558,2439708:0,1703936,0 +g1,161:29030814,2439708 +g1,161:36135244,2439708 +(1,137:36135244,2439708:1720320,1703936,0 +(1,137:36135244,2439708:16384,1703936,0 +[1,137:36135244,2439708:25952256,1703936,0 +(1,137:36135244,1915420:25952256,1179648,0 +(1,137:36135244,1915420:16384,1179648,0 +r1,161:36151628,1915420:16384,1179648,0 ) -(188,8:24179003,13603329:501378,78643,0 -(188,8:24342857,13603329:173670,78643,0 +k1,137:62087500,1915420:25935872 +g1,137:62087500,1915420 ) +] ) -(188,8:24680381,13603329:501378,78643,0 -(188,8:24844235,13603329:173670,78643,0 +g1,137:36675916,2439708 +(1,137:36675916,2439708:1179648,16384,0 +r1,161:37855564,2439708:1179648,16384,0 ) ) -(188,8:25181759,13603329:501378,78643,0 -(188,8:25345613,13603329:173670,78643,0 +k1,161:3078556,2439708:-34777008 ) +] +[1,161:3078558,4812305:0,0,0 +(1,161:3078558,49800853:0,16384,2228224 +k1,161:1358238,49800853:-1720320 +(1,137:1358238,49800853:1720320,16384,2228224 +(1,137:1358238,49800853:1179648,16384,0 +r1,161:2537886,49800853:1179648,16384,0 ) -(188,8:25683137,13603329:501378,78643,0 -(188,8:25846991,13603329:173670,78643,0 +g1,137:3062174,49800853 +(1,137:3062174,52029077:16384,1703936,0 +[1,137:3062174,52029077:25952256,1703936,0 +(1,137:3062174,51504789:25952256,1179648,0 +(1,137:3062174,51504789:16384,1179648,0 +r1,161:3078558,51504789:16384,1179648,0 ) +k1,137:29014430,51504789:25935872 +g1,137:29014430,51504789 ) -(188,8:26184515,13603329:501378,78643,0 -(188,8:26348369,13603329:173670,78643,0 +] ) ) -(188,8:26685893,13603329:501378,78643,0 -(188,8:26849747,13603329:173670,78643,0 ) +] +[1,161:3078558,4812305:0,0,0 +(1,161:3078558,49800853:0,16384,2228224 +g1,161:29030814,49800853 +g1,161:36135244,49800853 +(1,137:36135244,49800853:1720320,16384,2228224 +(1,137:36135244,52029077:16384,1703936,0 +[1,137:36135244,52029077:25952256,1703936,0 +(1,137:36135244,51504789:25952256,1179648,0 +(1,137:36135244,51504789:16384,1179648,0 +r1,161:36151628,51504789:16384,1179648,0 ) -(188,8:27187271,13603329:501378,78643,0 -(188,8:27351125,13603329:173670,78643,0 +k1,137:62087500,51504789:25935872 +g1,137:62087500,51504789 ) +] ) -(188,8:27688649,13603329:501378,78643,0 -(188,8:27852503,13603329:173670,78643,0 +g1,137:36675916,49800853 +(1,137:36675916,49800853:1179648,16384,0 +r1,161:37855564,49800853:1179648,16384,0 +) +) +k1,161:3078556,49800853:-34777008 +) +] +g1,161:6630773,4812305 +k1,161:30249947,4812305:22695772 +) +) +] +[1,161:6630773,45706769:25952256,40108032,0 +(1,161:6630773,45706769:25952256,40108032,0 +(1,161:6630773,45706769:0,0,0 +g1,161:6630773,45706769 +) +[1,161:6630773,45706769:25952256,40108032,0 +(1,151:6630773,6254097:25952256,505283,134348 +k1,150:9986522,6254097:229026 +k1,150:10747046,6254097:229027 +k1,150:13262623,6254097:229026 +k1,150:14885600,6254097:229026 +k1,150:16811354,6254097:229027 +k1,150:19418682,6254097:229026 +k1,150:20263746,6254097:229026 +k1,150:22149523,6254097:229027 +k1,150:23029977,6254097:229026 +k1,150:24929516,6254097:229026 +k1,150:26625239,6254097:229027 +k1,150:27540427,6254097:229026 +k1,150:28125313,6254097:229026 +k1,150:29580519,6254097:229027 +k1,150:31391584,6254097:229026 +k1,150:32583029,6254097:0 +) +(1,151:6630773,7119177:25952256,513147,7863 +g1,150:7516164,7119177 +g1,150:8071253,7119177 +k1,151:32583030,7119177:21358840 +g1,151:32583030,7119177 +) +(1,153:6630773,7984257:25952256,513147,134348 +h1,152:6630773,7984257:983040,0,0 +k1,152:8344797,7984257:243396 +k1,152:11430533,7984257:243440 +k1,152:12205471,7984257:243441 +k1,152:12804771,7984257:243440 +k1,152:15294131,7984257:243441 +k1,152:16196863,7984257:243440 +k1,152:21569806,7984257:243440 +k1,152:23433297,7984257:243441 +k1,152:26508548,7984257:243440 +k1,152:27943434,7984257:243441 +k1,152:31591469,7984257:243440 +k1,152:32583029,7984257:0 +) +(1,153:6630773,8849337:25952256,505283,134348 +k1,152:8646791,8849337:161349 +k1,152:9617511,8849337:161350 +k1,152:13697913,8849337:161349 +k1,152:15143769,8849337:161350 +k1,152:16296678,8849337:161349 +k1,152:18615472,8849337:161349 +k1,152:20809749,8849337:161350 +k1,152:25323344,8849337:161349 +k1,152:28657292,8849337:161350 +k1,152:30010086,8849337:161349 +k1,152:32583029,8849337:0 +) +(1,153:6630773,9714417:25952256,513147,134348 +k1,152:7490114,9714417:207913 +k1,152:10770355,9714417:207913 +k1,152:11637560,9714417:207913 +k1,152:12611588,9714417:207912 +k1,152:14418579,9714417:207913 +k1,152:15817937,9714417:207913 +k1,152:20222776,9714417:207913 +k1,152:22127416,9714417:207913 +k1,152:26254382,9714417:207913 +k1,152:27453854,9714417:207912 +k1,152:30739993,9714417:207913 +k1,152:31563944,9714417:207913 +k1,152:32583029,9714417:0 +) +(1,153:6630773,10579497:25952256,505283,134348 +k1,152:8368017,10579497:155205 +k1,152:11203645,10579497:155205 +k1,152:12752801,10579497:155205 +k1,152:14416645,10579497:155205 +k1,152:19628608,10579497:155205 +k1,152:20399851,10579497:155205 +k1,152:21574141,10579497:155205 +k1,152:22174291,10579497:155161 +k1,152:25345463,10579497:155205 +k1,152:27317326,10579497:155205 +k1,152:31391584,10579497:155205 +k1,152:32583029,10579497:0 +) +(1,153:6630773,11444577:25952256,513147,134348 +k1,152:11215235,11444577:232216 +k1,152:14452932,11444577:232216 +k1,152:17050997,11444577:232215 +k1,152:18302298,11444577:232216 +k1,152:20361002,11444577:232216 +k1,152:21252510,11444577:232216 +k1,152:22687966,11444577:232215 +k1,152:24675892,11444577:232216 +k1,152:25899668,11444577:232216 +k1,152:28704827,11444577:232216 +k1,152:29588470,11444577:232215 +k1,152:31391584,11444577:232216 +k1,152:32583029,11444577:0 +) +(1,153:6630773,12309657:25952256,513147,126483 +k1,152:9518016,12309657:200922 +k1,152:11699437,12309657:200923 +k1,152:12559651,12309657:200922 +k1,152:15519639,12309657:200922 +k1,152:17715477,12309657:200922 +k1,152:18567828,12309657:200923 +k1,152:19516516,12309657:200922 +k1,152:21773958,12309657:200922 +k1,152:25687495,12309657:200922 +k1,152:26516253,12309657:200923 +k1,152:28419145,12309657:200922 +k1,152:30748676,12309657:200922 +k1,152:32583029,12309657:0 +) +(1,153:6630773,13174737:25952256,505283,134348 +k1,152:7453300,13174737:199280 +k1,152:8430492,13174737:199280 +k1,152:9028231,13174737:199280 +k1,152:12354233,13174737:199279 +k1,152:14060841,13174737:199280 +k1,152:14872883,13174737:199280 +k1,152:17770936,13174737:199280 +k1,152:19161661,13174737:199280 +k1,152:22877603,13174737:199280 +k1,152:27486144,13174737:199279 +k1,152:28288355,13174737:199280 +k1,152:29473296,13174737:199280 +k1,152:31563944,13174737:199280 +k1,152:32583029,13174737:0 +) +(1,153:6630773,14039817:25952256,513147,134348 +k1,152:7969022,14039817:245764 +k1,152:8881942,14039817:245764 +k1,152:9542502,14039817:245717 +k1,152:10439694,14039817:245764 +k1,152:13687662,14039817:245764 +k1,152:14952511,14039817:245764 +k1,152:18113972,14039817:245764 +k1,152:19019027,14039817:245763 +k1,152:20654154,14039817:245764 +k1,152:25329496,14039817:245764 +k1,152:28555837,14039817:245764 +k1,152:29820686,14039817:245764 +k1,152:32583029,14039817:0 +) +(1,153:6630773,14904897:25952256,513147,134348 +k1,152:8512371,14904897:196012 +k1,152:11635221,14904897:196012 +k1,152:13398854,14904897:196012 +k1,152:14984229,14904897:196012 +k1,152:16888765,14904897:196012 +k1,152:18276223,14904897:196013 +k1,152:22116692,14904897:196012 +k1,152:22964132,14904897:196012 +k1,152:24179229,14904897:196012 +k1,152:27915496,14904897:196012 +k1,152:28770800,14904897:196012 +k1,153:32583029,14904897:0 +) +(1,153:6630773,15769977:25952256,505283,126483 +g1,152:9029390,15769977 +g1,152:13084102,15769977 +g1,152:14474776,15769977 +g1,152:16182644,15769977 +k1,153:32583029,15769977:11400643 +g1,153:32583029,15769977 +) +(1,155:6630773,16635057:25952256,513147,134348 +h1,154:6630773,16635057:983040,0,0 +k1,154:9631229,16635057:225662 +k1,154:10212752,16635057:225663 +k1,154:13280710,16635057:225662 +k1,154:15924651,16635057:225662 +k1,154:16681811,16635057:225663 +k1,154:17926558,16635057:225662 +k1,154:19753920,16635057:225662 +k1,154:22532210,16635057:225663 +k1,154:23995847,16635057:225662 +k1,154:24880801,16635057:225662 +k1,154:27708243,16635057:225663 +k1,154:28565672,16635057:225662 +k1,154:29551552,16635057:225662 +k1,154:31512608,16635057:225663 +k1,154:32370037,16635057:225662 +k1,154:32583029,16635057:0 +) +(1,155:6630773,17500137:25952256,505283,134348 +k1,154:8513975,17500137:145187 +k1,154:11147565,17500137:145188 +k1,154:13868972,17500137:145187 +k1,154:16445546,17500137:145188 +k1,154:17782178,17500137:145187 +k1,154:20450501,17500137:145187 +k1,154:22757066,17500137:145188 +k1,154:23585138,17500137:145187 +k1,154:26976323,17500137:145187 +k1,154:28955864,17500137:145188 +k1,154:29724298,17500137:145187 +k1,154:30647398,17500137:145188 +k1,154:31191044,17500137:145187 +k1,155:32583029,17500137:0 +) +(1,155:6630773,18365217:25952256,505283,134348 +k1,154:8734230,18365217:163591 +k1,154:11754534,18365217:163590 +k1,154:14519904,18365217:163591 +k1,154:15702580,18365217:163591 +k1,154:16280978,18365217:163555 +k1,154:19286864,18365217:163590 +k1,154:20066493,18365217:163591 +k1,154:20585944,18365217:163591 +k1,154:21987509,18365217:163590 +k1,154:25872890,18365217:163591 +k1,154:26687909,18365217:163591 +k1,154:28181880,18365217:163590 +k1,154:30971499,18365217:163591 +k1,154:32583029,18365217:0 +) +(1,155:6630773,19230297:25952256,505283,134348 +k1,154:7445342,19230297:163141 +k1,154:9628958,19230297:163141 +k1,154:11172286,19230297:163140 +k1,154:12931884,19230297:163141 +k1,154:14161296,19230297:163141 +k1,154:15873053,19230297:163141 +k1,154:17055279,19230297:163141 +k1,154:18804390,19230297:163140 +k1,154:20132761,19230297:163141 +k1,154:22434342,19230297:163141 +k1,154:23359011,19230297:163141 +k1,154:26268111,19230297:163141 +k1,154:27082679,19230297:163140 +k1,154:29381638,19230297:163141 +k1,154:31391584,19230297:163141 +k1,154:32583029,19230297:0 +) +(1,155:6630773,20095377:25952256,513147,134348 +k1,154:8735602,20095377:208217 +k1,154:9595247,20095377:208217 +k1,154:11367808,20095377:208217 +k1,154:13124642,20095377:208218 +k1,154:14713047,20095377:208217 +k1,154:16469880,20095377:208217 +k1,154:17329525,20095377:208217 +k1,154:18552239,20095377:208217 +k1,154:20269095,20095377:208217 +k1,154:23065329,20095377:208217 +k1,154:24047527,20095377:208218 +k1,154:26538363,20095377:208217 +k1,154:28462968,20095377:208217 +k1,154:31297213,20095377:208217 +k1,154:32583029,20095377:0 +) +(1,155:6630773,20960457:25952256,513147,134348 +k1,154:9098586,20960457:245487 +k1,154:12206686,20960457:245487 +k1,154:15010699,20960457:245487 +k1,154:18292468,20960457:245486 +k1,154:19610124,20960457:245487 +k1,154:21235799,20960457:245487 +k1,154:22472846,20960457:245487 +k1,154:23784604,20960457:245487 +k1,154:26103650,20960457:245487 +k1,154:26704996,20960457:245486 +k1,154:30743707,20960457:245487 +k1,154:31923737,20960457:245487 +k1,154:32583029,20960457:0 +) +(1,155:6630773,21825537:25952256,513147,134348 +k1,154:8410512,21825537:193768 +k1,154:9750505,21825537:193768 +k1,154:11642311,21825537:193768 +k1,154:14437858,21825537:193768 +k1,154:14987486,21825537:193768 +k1,154:17422585,21825537:193768 +k1,154:20458650,21825537:193769 +k1,154:21265180,21825537:193768 +k1,154:23705522,21825537:193768 +k1,154:26238270,21825537:193768 +k1,154:27091330,21825537:193768 +k1,154:30204727,21825537:193768 +k1,154:32583029,21825537:0 +) +(1,155:6630773,22690617:25952256,513147,134348 +k1,154:7992524,22690617:229289 +k1,154:9634113,22690617:229288 +k1,154:11054847,22690617:229289 +k1,154:12402179,22690617:229288 +k1,154:14301325,22690617:229289 +k1,154:15722058,22690617:229288 +k1,154:18278530,22690617:229289 +k1,154:19167110,22690617:229288 +k1,154:22407123,22690617:229289 +k1,154:25014713,22690617:229288 +k1,154:26376464,22690617:229289 +k1,154:28220559,22690617:229288 +k1,154:29641293,22690617:229289 +k1,154:30776944,22690617:229288 +k1,154:31657661,22690617:229289 +k1,155:32583029,22690617:0 +) +(1,155:6630773,23555697:25952256,505283,134348 +k1,154:8552511,23555697:221734 +k1,154:9189065,23555697:221711 +k1,154:10906986,23555697:221734 +k1,154:14645381,23555697:221733 +k1,154:15676485,23555697:221734 +k1,154:16254079,23555697:221734 +k1,154:19725743,23555697:221734 +k1,154:20160446,23555697:221711 +k1,154:21197448,23555697:221734 +k1,154:23849256,23555697:221733 +k1,154:28133567,23555697:221734 +k1,154:29546746,23555697:221734 +k1,154:32583029,23555697:0 +) +(1,155:6630773,24420777:25952256,505283,134348 +k1,154:7501697,24420777:184762 +k1,154:12341481,24420777:184762 +k1,154:13856624,24420777:184762 +k1,154:14486361,24420777:184748 +k1,154:16597881,24420777:184762 +k1,154:18971546,24420777:184762 +k1,154:20874662,24420777:184762 +k1,154:22453375,24420777:184762 +k1,154:23426536,24420777:184763 +k1,154:24877454,24420777:184762 +k1,154:27996918,24420777:184762 +k1,154:29200765,24420777:184762 +k1,154:32370037,24420777:184762 +k1,154:32583029,24420777:0 +) +(1,155:6630773,25285857:25952256,513147,134348 +k1,154:10058212,25285857:156537 +k1,154:10830787,25285857:156537 +k1,154:12190565,25285857:156537 +k1,154:13929142,25285857:156538 +k1,154:14617176,25285857:156537 +k1,154:15721364,25285857:156537 +k1,154:18256203,25285857:156537 +k1,154:19064168,25285857:156537 +k1,154:20563538,25285857:156537 +k1,154:22114026,25285857:156537 +k1,154:23289649,25285857:156538 +k1,154:26671213,25285857:156537 +k1,154:29819469,25285857:156537 +k1,154:31167451,25285857:156537 +k1,155:32583029,25285857:0 +) +(1,155:6630773,26150937:25952256,513147,134348 +k1,154:8807427,26150937:223026 +k1,154:10675407,26150937:223026 +k1,154:12711158,26150937:223025 +k1,154:13585612,26150937:223026 +k1,154:15074794,26150937:223026 +k1,154:16364091,26150937:223026 +k1,154:17348644,26150937:223025 +k1,154:21128309,26150937:223026 +k1,154:22370420,26150937:223026 +k1,154:25264693,26150937:223026 +k1,154:27687106,26150937:223025 +k1,154:28929217,26150937:223026 +k1,154:29567062,26150937:223002 +k1,154:32583029,26150937:0 +) +(1,155:6630773,27016017:25952256,513147,134348 +k1,154:9124922,27016017:155169 +k1,154:9939383,27016017:155169 +k1,154:12508898,27016017:155169 +k1,154:14402082,27016017:155169 +k1,154:15576336,27016017:155169 +k1,154:18697009,27016017:155169 +k1,154:20712089,27016017:155168 +k1,154:21814909,27016017:155169 +k1,154:22989163,27016017:155169 +k1,154:24450465,27016017:155169 +k1,154:27951902,27016017:155169 +k1,154:28766363,27016017:155169 +k1,154:31299834,27016017:155169 +k1,154:32583029,27016017:0 +) +(1,155:6630773,27881097:25952256,505283,134348 +k1,154:7497159,27881097:214958 +k1,154:8300630,27881097:214958 +k1,154:9534673,27881097:214958 +k1,154:12825891,27881097:214958 +k1,154:14173311,27881097:214958 +k1,154:15731102,27881097:214958 +k1,154:17149300,27881097:214957 +k1,154:18773282,27881097:214958 +k1,154:21951123,27881097:214958 +k1,154:24752787,27881097:214958 +k1,154:27526271,27881097:214958 +k1,154:28760314,27881097:214958 +k1,154:31966991,27881097:214958 +k1,154:32583029,27881097:0 +) +(1,155:6630773,28746177:25952256,513147,134348 +k1,154:8712505,28746177:247379 +k1,154:9583131,28746177:247379 +k1,154:10608423,28746177:247380 +k1,154:11254261,28746177:247379 +k1,154:14628363,28746177:247379 +k1,154:15491780,28746177:247379 +k1,154:16095019,28746177:247379 +k1,154:18235078,28746177:247379 +k1,154:19141750,28746177:247380 +k1,154:21123212,28746177:247379 +k1,154:22053476,28746177:247379 +k1,154:22916893,28746177:247379 +k1,154:24719441,28746177:247379 +k1,154:25498318,28746177:247380 +k1,154:28955650,28746177:247379 +k1,154:30222114,28746177:247379 +k1,154:32051532,28746177:247379 +k1,154:32583029,28746177:0 +) +(1,155:6630773,29611257:25952256,513147,134348 +g1,154:9686716,29611257 +g1,154:10537373,29611257 +g1,154:11484368,29611257 +g1,154:13660818,29611257 +g1,154:15145863,29611257 +g1,154:15961130,29611257 +g1,154:17179444,29611257 +g1,154:19908363,29611257 +g1,154:20766884,29611257 +g1,154:22459679,29611257 +k1,155:32583029,29611257:7423267 +g1,155:32583029,29611257 +) +(1,157:6630773,30476337:25952256,513147,134348 +h1,156:6630773,30476337:983040,0,0 +k1,156:9193832,30476337:199175 +k1,156:11685456,30476337:199175 +k1,156:14125961,30476337:199174 +k1,156:16561880,30476337:199175 +k1,156:19099380,30476337:199175 +k1,156:21869532,30476337:199175 +k1,156:23353212,30476337:199174 +k1,156:24990902,30476337:199175 +k1,156:26852725,30476337:199175 +k1,156:27667938,30476337:199175 +k1,156:28281955,30476337:199174 +k1,156:29672575,30476337:199175 +k1,156:32583029,30476337:0 +) +(1,157:6630773,31341417:25952256,513147,134348 +k1,156:10122149,31341417:227683 +k1,156:11804731,31341417:227683 +k1,156:13165531,31341417:227682 +k1,156:14889401,31341417:227683 +k1,156:17418053,31341417:227683 +k1,156:19213357,31341417:227683 +k1,156:20460124,31341417:227682 +k1,156:21993940,31341417:227683 +k1,156:24458367,31341417:227683 +k1,156:25877495,31341417:227683 +k1,156:28696471,31341417:227682 +k1,156:31510860,31341417:227683 +k1,156:32583029,31341417:0 +) +(1,157:6630773,32206497:25952256,505283,134348 +k1,156:10928689,32206497:186187 +k1,156:13109793,32206497:186188 +k1,156:14580486,32206497:186187 +k1,156:16458814,32206497:186188 +k1,156:19636720,32206497:186187 +k1,156:22721565,32206497:186188 +k1,156:25943380,32206497:186187 +k1,156:26812453,32206497:186188 +k1,156:30072934,32206497:186187 +k1,156:31450567,32206497:186188 +k1,156:32583029,32206497:0 +) +(1,157:6630773,33071577:25952256,513147,134348 +k1,156:10099773,33071577:203341 +k1,156:11503733,33071577:203340 +k1,156:13852067,33071577:203341 +$1,156:14059161,33071577 +$1,156:14580172,33071577 +k1,156:14783513,33071577:203341 +k1,156:16736664,33071577:203340 +k1,156:19604044,33071577:203341 +k1,156:20474541,33071577:203341 +k1,156:21092720,33071577:203336 +k1,156:22771276,33071577:203341 +k1,156:26288116,33071577:203340 +k1,156:31089463,33071577:203341 +k1,156:32583029,33071577:0 +) +(1,157:6630773,33936657:25952256,513147,134348 +k1,156:7471873,33936657:154938 +k1,156:8645896,33936657:154938 +k1,156:10084029,33936657:154938 +k1,156:11628986,33936657:154938 +k1,156:14704208,33936657:154938 +k1,156:17724379,33936657:154937 +k1,156:19354532,33936657:154938 +k1,156:20795286,33936657:154938 +k1,156:23379644,33936657:154938 +k1,156:26523024,33936657:154938 +k1,156:27961157,33936657:154938 +k1,156:30895477,33936657:154938 +k1,157:32583029,33936657:0 +) +(1,157:6630773,34801737:25952256,513147,134348 +k1,156:8348908,34801737:235711 +k1,156:10152240,34801737:235711 +k1,156:12766253,34801737:235711 +k1,156:14193409,34801737:235711 +k1,156:17457539,34801737:235711 +k1,156:18794255,34801737:235711 +k1,156:22655417,34801737:235710 +k1,156:24583268,34801737:235711 +k1,156:26300093,34801737:235711 +k1,156:27151842,34801737:235711 +k1,156:28406638,34801737:235711 +k1,156:31391584,34801737:235711 +k1,156:32583029,34801737:0 +) +(1,157:6630773,35666817:25952256,505283,126483 +g1,156:9189953,35666817 +k1,157:32583028,35666817:19156828 +g1,157:32583028,35666817 +) +(1,159:6630773,36531897:25952256,513147,134348 +h1,158:6630773,36531897:983040,0,0 +k1,158:8653635,36531897:137391 +k1,158:12018020,36531897:137392 +k1,158:14396087,36531897:137391 +k1,158:15064976,36531897:137392 +k1,158:15818405,36531897:137391 +k1,158:16936871,36531897:137392 +k1,158:18500981,36531897:137391 +k1,158:20460929,36531897:137392 +k1,158:22290460,36531897:137391 +k1,158:23087144,36531897:137392 +k1,158:24243620,36531897:137391 +k1,158:27291466,36531897:137392 +k1,158:28044895,36531897:137391 +k1,158:29201372,36531897:137392 +k1,158:32583029,36531897:0 +) +(1,159:6630773,37396977:25952256,513147,134348 +k1,158:8148810,37396977:137193 +k1,158:10526679,37396977:137193 +k1,158:11195369,37396977:137193 +k1,158:14108666,37396977:137192 +k1,158:15847559,37396977:137193 +k1,158:18610124,37396977:137193 +k1,158:19363355,37396977:137193 +k1,158:22040068,37396977:137193 +h1,158:22438527,37396977:0,0,0 +k1,158:22749390,37396977:137193 +k1,158:23099513,37396977:137131 +k1,158:24711921,37396977:137193 +k1,158:27405017,37396977:137192 +k1,158:28303738,37396977:137193 +k1,158:29422005,37396977:137193 +k1,158:30889579,37396977:137193 +k1,159:32583029,37396977:0 +) +(1,159:6630773,38262057:25952256,513147,134348 +k1,158:8773036,38262057:209606 +k1,158:10174087,38262057:209606 +k1,158:11951314,38262057:209606 +k1,158:14816439,38262057:209606 +k1,158:16728015,38262057:209606 +k1,158:18822436,38262057:209606 +k1,158:22012618,38262057:209605 +k1,158:24994397,38262057:209606 +k1,158:25820041,38262057:209606 +k1,158:27048732,38262057:209606 +k1,158:28276767,38262057:209606 +k1,158:31298523,38262057:209606 +k1,158:32583029,38262057:0 +) +(1,159:6630773,39127137:25952256,513147,134348 +k1,158:7920045,39127137:270187 +k1,158:9438693,39127137:270187 +k1,158:10368172,39127137:270187 +k1,158:14770404,39127137:270187 +k1,158:16232036,39127137:270187 +k1,158:17521307,39127137:270186 +k1,158:20968024,39127137:270187 +k1,158:21897503,39127137:270187 +k1,158:26651663,39127137:270187 +k1,158:29492827,39127137:270187 +k1,158:30867296,39127137:270187 +k1,158:32583029,39127137:0 +) +(1,159:6630773,39992217:25952256,513147,134348 +k1,158:8561313,39992217:238400 +k1,158:9459004,39992217:238399 +k1,158:10716489,39992217:238400 +k1,158:13782112,39992217:238400 +k1,158:16930965,39992217:238399 +k1,158:19653180,39992217:238400 +k1,158:20839231,39992217:238400 +k1,158:22788776,39992217:238400 +k1,158:23974826,39992217:238399 +k1,158:26163577,39992217:238400 +k1,158:27791340,39992217:238400 +k1,158:30584332,39992217:238399 +k1,158:31354229,39992217:238400 +k1,158:32583029,39992217:0 +) +(1,159:6630773,40857297:25952256,513147,126483 +k1,158:8002945,40857297:215462 +k1,158:10263130,40857297:215462 +k1,158:11137884,40857297:215462 +k1,158:12861986,40857297:215463 +k1,158:16771712,40857297:215462 +k1,158:17615009,40857297:215462 +k1,158:19532441,40857297:215462 +k1,158:21876512,40857297:215462 +k1,158:23835887,40857297:215462 +k1,158:26395573,40857297:215463 +k1,158:27802480,40857297:215462 +k1,158:30004994,40857297:215462 +k1,158:31931601,40857297:215462 +k1,158:32583029,40857297:0 +) +(1,159:6630773,41722377:25952256,513147,134348 +k1,158:8767667,41722377:186543 +k1,158:10157452,41722377:186544 +k1,158:11926034,41722377:186543 +k1,158:12644075,41722377:186544 +k1,158:15651943,41722377:186543 +k1,158:16308380,41722377:186544 +k1,158:18470178,41722377:186543 +k1,158:19308150,41722377:186544 +k1,158:20462004,41722377:186543 +k1,158:21933054,41722377:186544 +k1,158:24190535,41722377:186543 +k1,158:25324730,41722377:186544 +k1,158:28421727,41722377:186543 +k1,158:29754496,41722377:186544 +k1,158:32583029,41722377:0 +) +(1,159:6630773,42587457:25952256,513147,134348 +k1,158:8060650,42587457:238432 +k1,158:10938871,42587457:238431 +k1,158:12960538,42587457:238432 +k1,158:13858262,42587457:238432 +k1,158:15115779,42587457:238432 +k1,158:17698433,42587457:238431 +k1,158:22068910,42587457:238432 +k1,158:24080091,42587457:238432 +k1,158:25886144,42587457:238432 +k1,158:27683021,42587457:238431 +k1,158:30898098,42587457:238432 +k1,159:32583029,42587457:0 +) +(1,159:6630773,43452537:25952256,513147,126483 +k1,158:8055626,43452537:201296 +k1,158:9764251,43452537:201297 +k1,158:10578309,43452537:201296 +k1,158:14727494,43452537:201296 +k1,158:16318154,43452537:201297 +k1,158:19129749,43452537:201296 +k1,158:21282707,43452537:201296 +k1,158:22926450,43452537:201296 +k1,158:26447146,43452537:201297 +k1,158:28359587,43452537:201296 +k1,158:29228039,43452537:201296 +k1,158:30017849,43452537:201297 +k1,158:32051532,43452537:201296 +k1,158:32583029,43452537:0 +) +(1,159:6630773,44317617:25952256,513147,134348 +k1,158:9317562,44317617:215426 +k1,158:11525938,44317617:215426 +k1,158:13135315,44317617:215426 +k1,158:14727652,44317617:215426 +k1,158:16015247,44317617:215426 +k1,158:16688770,44317617:215426 +k1,158:17435693,44317617:215426 +k1,158:20760147,44317617:215426 +k1,158:21627001,44317617:215426 +k1,158:22590193,44317617:215426 +k1,158:24674050,44317617:215426 +k1,158:26173982,44317617:215426 +k1,158:27337059,44317617:215426 +k1,158:30871884,44317617:215426 +k1,158:32583029,44317617:0 +) +(1,159:6630773,45182697:25952256,513147,134348 +g1,158:9431781,45182697 +g1,158:11064938,45182697 +g1,158:11679010,45182697 +g1,158:12982521,45182697 +g1,158:13929516,45182697 +g1,158:14484605,45182697 +g1,158:16581101,45182697 +g1,158:20327138,45182697 +g1,158:21185659,45182697 +g1,158:22893527,45182697 +k1,159:32583029,45182697:8090424 +g1,159:32583029,45182697 +) +] +(1,161:32583029,45706769:0,0,0 +g1,161:32583029,45706769 +) +) +] +(1,161:6630773,47279633:25952256,0,0 +h1,161:6630773,47279633:25952256,0,0 +) +] +(1,161:4262630,4025873:0,0,0 +[1,161:-473656,4025873:0,0,0 +(1,161:-473656,-710413:0,0,0 +(1,161:-473656,-710413:0,0,0 +g1,161:-473656,-710413 +) +g1,161:-473656,-710413 +) +] +) +] +!24393 +}13 +!11 +{14 +[1,215:4262630,47279633:28320399,43253760,0 +(1,215:4262630,4025873:0,0,0 +[1,215:-473656,4025873:0,0,0 +(1,215:-473656,-710413:0,0,0 +(1,215:-473656,-644877:0,0,0 +k1,215:-473656,-644877:-65536 ) +(1,215:-473656,4736287:0,0,0 +k1,215:-473656,4736287:5209943 ) -(188,8:28190027,13603329:501378,78643,0 -(188,8:28353881,13603329:173670,78643,0 +g1,215:-473656,-710413 ) +] ) -(188,8:28691405,13603329:501378,78643,0 -(188,8:28855259,13603329:173670,78643,0 +[1,215:6630773,47279633:25952256,43253760,0 +[1,215:6630773,4812305:25952256,786432,0 +(1,215:6630773,4812305:25952256,513147,126483 +(1,215:6630773,4812305:25952256,513147,126483 +g1,215:3078558,4812305 +[1,215:3078558,4812305:0,0,0 +(1,215:3078558,2439708:0,1703936,0 +k1,215:1358238,2439708:-1720320 +(1,137:1358238,2439708:1720320,1703936,0 +(1,137:1358238,2439708:1179648,16384,0 +r1,215:2537886,2439708:1179648,16384,0 ) +g1,137:3062174,2439708 +(1,137:3062174,2439708:16384,1703936,0 +[1,137:3062174,2439708:25952256,1703936,0 +(1,137:3062174,1915420:25952256,1179648,0 +(1,137:3062174,1915420:16384,1179648,0 +r1,215:3078558,1915420:16384,1179648,0 ) -(188,8:29192783,13603329:501378,78643,0 -(188,8:29356637,13603329:173670,78643,0 +k1,137:29014430,1915420:25935872 +g1,137:29014430,1915420 ) +] ) -(188,8:29694161,13603329:501378,78643,0 -(188,8:29858015,13603329:173670,78643,0 ) ) -(188,8:30195539,13603329:501378,78643,0 -(188,8:30359393,13603329:173670,78643,0 +] +[1,215:3078558,4812305:0,0,0 +(1,215:3078558,2439708:0,1703936,0 +g1,215:29030814,2439708 +g1,215:36135244,2439708 +(1,137:36135244,2439708:1720320,1703936,0 +(1,137:36135244,2439708:16384,1703936,0 +[1,137:36135244,2439708:25952256,1703936,0 +(1,137:36135244,1915420:25952256,1179648,0 +(1,137:36135244,1915420:16384,1179648,0 +r1,215:36151628,1915420:16384,1179648,0 ) +k1,137:62087500,1915420:25935872 +g1,137:62087500,1915420 ) -(188,8:30696917,13603329:501378,78643,0 -(188,8:30860771,13603329:173670,78643,0 +] ) +g1,137:36675916,2439708 +(1,137:36675916,2439708:1179648,16384,0 +r1,215:37855564,2439708:1179648,16384,0 ) -(188,8:31239539,13603329:1343490,485622,11795 -k188,8:31387652,13603329:148113 ) -g188,8:30911859,13603329 -g188,8:32583029,13603329 +k1,215:3078556,2439708:-34777008 ) ] -(1,144:32583029,45706769:0,0,0 -g1,144:32583029,45706769 +[1,215:3078558,4812305:0,0,0 +(1,215:3078558,49800853:0,16384,2228224 +k1,215:1358238,49800853:-1720320 +(1,137:1358238,49800853:1720320,16384,2228224 +(1,137:1358238,49800853:1179648,16384,0 +r1,215:2537886,49800853:1179648,16384,0 ) +g1,137:3062174,49800853 +(1,137:3062174,52029077:16384,1703936,0 +[1,137:3062174,52029077:25952256,1703936,0 +(1,137:3062174,51504789:25952256,1179648,0 +(1,137:3062174,51504789:16384,1179648,0 +r1,215:3078558,51504789:16384,1179648,0 +) +k1,137:29014430,51504789:25935872 +g1,137:29014430,51504789 ) ] -(1,144:6630773,47279633:25952256,473825,0 -(1,144:6630773,47279633:25952256,473825,0 -(1,144:6630773,47279633:0,0,0 -v1,144:6630773,47279633:0,0,0 ) -g1,144:6830002,47279633 -k1,144:31614406,47279633:24784404 ) ) ] -(1,144:4262630,4025873:0,0,0 -[1,144:-473656,4025873:0,0,0 -(1,144:-473656,-710413:0,0,0 -(1,144:-473656,-710413:0,0,0 -g1,144:-473656,-710413 +[1,215:3078558,4812305:0,0,0 +(1,215:3078558,49800853:0,16384,2228224 +g1,215:29030814,49800853 +g1,215:36135244,49800853 +(1,137:36135244,49800853:1720320,16384,2228224 +(1,137:36135244,52029077:16384,1703936,0 +[1,137:36135244,52029077:25952256,1703936,0 +(1,137:36135244,51504789:25952256,1179648,0 +(1,137:36135244,51504789:16384,1179648,0 +r1,215:36151628,51504789:16384,1179648,0 ) -g1,144:-473656,-710413 +k1,137:62087500,51504789:25935872 +g1,137:62087500,51504789 ) ] ) -] -!6148 -}10 -!10 -{11 -[1,144:4262630,47279633:28320399,43253760,0 -(1,144:4262630,4025873:0,0,0 -[1,144:-473656,4025873:0,0,0 -(1,144:-473656,-710413:0,0,0 -(1,144:-473656,-644877:0,0,0 -k1,144:-473656,-644877:-65536 +g1,137:36675916,49800853 +(1,137:36675916,49800853:1179648,16384,0 +r1,215:37855564,49800853:1179648,16384,0 +) +) +k1,215:3078556,49800853:-34777008 +) +] +g1,215:6630773,4812305 +g1,215:6630773,4812305 +g1,215:9163084,4812305 +k1,215:31458432,4812305:22295348 +) +) +] +[1,215:6630773,45706769:25952256,40108032,0 +(1,215:6630773,45706769:25952256,40108032,0 +(1,215:6630773,45706769:0,0,0 +g1,215:6630773,45706769 +) +[1,215:6630773,45706769:25952256,40108032,0 +(1,161:6630773,6254097:25952256,513147,134348 +h1,160:6630773,6254097:983040,0,0 +k1,160:11256808,6254097:235123 +k1,160:13620540,6254097:235123 +k1,160:14874748,6254097:235123 +k1,160:16691910,6254097:235123 +k1,160:18440259,6254097:235123 +k1,160:20367522,6254097:235123 +k1,160:22028053,6254097:235123 +k1,160:24712912,6254097:235123 +k1,160:25915346,6254097:235123 +k1,160:26801897,6254097:235123 +k1,160:28717363,6254097:235123 +k1,160:29611778,6254097:235123 +k1,160:31548871,6254097:235123 +k1,161:32583029,6254097:0 +) +(1,161:6630773,7119177:25952256,505283,134348 +k1,160:10862679,7119177:280740 +k1,160:11356328,7119177:280657 +k1,160:13112283,7119177:280740 +k1,160:16030192,7119177:280740 +k1,160:17330016,7119177:280739 +k1,160:19192795,7119177:280740 +k1,160:23156658,7119177:280740 +k1,160:25796038,7119177:280739 +k1,160:26534875,7119177:280740 +k1,160:28465811,7119177:280739 +k1,160:31931601,7119177:280740 +k1,160:32583029,7119177:0 +) +(1,161:6630773,7984257:25952256,505283,134348 +k1,160:9236011,7984257:226936 +k1,160:10856897,7984257:226935 +k1,160:11893203,7984257:226936 +k1,160:14874617,7984257:226936 +k1,160:18514668,7984257:226936 +k1,160:19357641,7984257:226935 +k1,160:22660837,7984257:226936 +k1,160:27413689,7984257:226936 +k1,160:27853589,7984257:226908 +k1,160:29555739,7984257:226935 +k1,160:31748100,7984257:226936 +k1,161:32583029,7984257:0 +) +(1,161:6630773,8849337:25952256,513147,134348 +k1,160:9177065,8849337:221730 +k1,160:10590240,8849337:221730 +k1,160:14141854,8849337:221730 +k1,160:15015012,8849337:221730 +k1,160:18015469,8849337:221730 +k1,160:23159608,8849337:221730 +k1,160:24040630,8849337:221730 +k1,160:27039776,8849337:221730 +k1,160:31613752,8849337:221730 +k1,161:32583029,8849337:0 +) +(1,161:6630773,9714417:25952256,513147,7863 +k1,160:10136427,9714417:169216 +k1,160:10518605,9714417:169186 +k1,160:11973637,9714417:169216 +k1,160:14137113,9714417:169215 +k1,160:15325414,9714417:169216 +k1,160:16720809,9714417:169216 +k1,160:18457646,9714417:169216 +k1,160:19645946,9714417:169215 +k1,160:21121295,9714417:169216 +k1,160:23527255,9714417:169216 +k1,160:24347899,9714417:169216 +k1,160:25312722,9714417:169216 +k1,160:26248053,9714417:169215 +k1,160:28354513,9714417:169216 +k1,160:29715174,9714417:169216 +k1,160:32583029,9714417:0 +) +(1,161:6630773,10579497:25952256,505283,126483 +g1,160:9821721,10579497 +g1,160:10703835,10579497 +g1,160:14965641,10579497 +g1,160:17302654,10579497 +g1,160:18153311,10579497 +k1,161:32583029,10579497:13288736 +g1,161:32583029,10579497 +) +(1,162:6630773,13410657:25952256,32768,229376 +(1,162:6630773,13410657:0,32768,229376 +(1,162:6630773,13410657:5505024,32768,229376 +r1,215:12135797,13410657:5505024,262144,229376 +) +k1,162:6630773,13410657:-5505024 +) +(1,162:6630773,13410657:25952256,32768,0 +r1,215:32583029,13410657:25952256,32768,0 +) +) +(1,162:6630773,15042509:25952256,606339,161218 +(1,162:6630773,15042509:0,0,0 +g1,162:6630773,15042509 +) +k1,162:32583028,15042509:18137480 +g1,162:32583028,15042509 +) +(1,164:6630773,16300805:25952256,513147,134348 +k1,163:6990692,16300805:146927 +k1,163:8972679,16300805:146979 +k1,163:11287588,16300805:146978 +k1,163:14474782,16300805:146979 +k1,163:15569412,16300805:146979 +k1,163:19431627,16300805:146979 +k1,163:20545917,16300805:146979 +k1,163:21344323,16300805:146978 +k1,163:22510387,16300805:146979 +k1,163:24091294,16300805:146979 +k1,163:25521468,16300805:146979 +k1,163:26256960,16300805:146979 +k1,163:28280234,16300805:146978 +k1,163:29446298,16300805:146979 +k1,163:30831252,16300805:146979 +k1,163:32583029,16300805:0 +) +(1,164:6630773,17165885:25952256,513147,126483 +k1,163:8202108,17165885:292728 +k1,163:10632619,17165885:292727 +k1,163:12116792,17165885:292728 +k1,163:13475790,17165885:292727 +k1,163:14493346,17165885:292728 +k1,163:17166341,17165885:292727 +k1,163:19815088,17165885:292728 +k1,163:21583030,17165885:292727 +k1,163:24901555,17165885:292728 +k1,163:26175356,17165885:292727 +k1,163:29562694,17165885:292728 +k1,163:30471459,17165885:292727 +k1,163:32583029,17165885:0 +) +(1,164:6630773,18030965:25952256,513147,126483 +k1,163:8040051,18030965:217833 +k1,163:9908081,18030965:217833 +k1,163:12680507,18030965:217833 +k1,163:13514378,18030965:217833 +k1,163:18397718,18030965:217832 +k1,163:18828525,18030965:217815 +k1,163:20513709,18030965:217833 +k1,163:21382970,18030965:217833 +k1,163:23952234,18030965:217832 +k1,163:26005075,18030965:217833 +k1,163:29176616,18030965:217833 +k1,163:30053741,18030965:217833 +k1,163:31252648,18030965:217833 +k1,163:32583029,18030965:0 +) +(1,164:6630773,18896045:25952256,505283,134348 +k1,163:9590861,18896045:254106 +k1,163:11911317,18896045:254106 +k1,163:14937596,18896045:254106 +k1,163:19273284,18896045:254106 +k1,163:20143428,18896045:254106 +k1,163:21416619,18896045:254106 +k1,163:24109974,18896045:254105 +k1,163:24577017,18896045:254051 +k1,163:26306338,18896045:254106 +k1,163:28807674,18896045:254106 +k1,163:32370037,18896045:254106 +k1,163:32583029,18896045:0 +) +(1,164:6630773,19761125:25952256,513147,126483 +k1,163:8349788,19761125:243800 +k1,163:12551964,19761125:243801 +k1,163:14363385,19761125:243800 +k1,163:17062819,19761125:243800 +k1,163:17965911,19761125:243800 +k1,163:19228797,19761125:243801 +k1,163:21384938,19761125:243800 +k1,163:21841685,19761125:243755 +k1,163:23560701,19761125:243801 +k1,163:25216802,19761125:243800 +k1,163:26652047,19761125:243800 +k1,163:29031665,19761125:243800 +k1,163:29488413,19761125:243756 +k1,163:31207428,19761125:243800 +k1,163:32583029,19761125:0 +) +(1,164:6630773,20626205:25952256,513147,126483 +k1,163:8016000,20626205:161014 +k1,163:10154890,20626205:161013 +k1,163:10998789,20626205:161014 +k1,163:11772565,20626205:161014 +k1,163:15924065,20626205:161013 +k1,163:16982922,20626205:161014 +k1,163:17803228,20626205:161014 +k1,163:19603296,20626205:161013 +k1,163:21239525,20626205:161014 +k1,163:23144452,20626205:161014 +k1,163:23763563,20626205:161014 +k1,163:26554536,20626205:161013 +k1,163:27663201,20626205:161014 +k1,163:28791526,20626205:161014 +k1,163:29603967,20626205:161013 +k1,163:31379788,20626205:161014 +k1,163:32583029,20626205:0 +) +(1,164:6630773,21491285:25952256,505283,134348 +k1,163:8646428,21491285:259945 +k1,163:9119304,21491285:259884 +k1,163:10355080,21491285:259945 +k1,163:13424553,21491285:259945 +k1,163:14335926,21491285:259945 +k1,163:16257209,21491285:259945 +k1,163:18469472,21491285:259945 +k1,163:20234779,21491285:259945 +k1,163:23924223,21491285:259945 +k1,163:27471454,21491285:259945 +k1,163:31078978,21491285:259945 +k1,163:32583029,21491285:0 +) +(1,164:6630773,22356365:25952256,505283,134348 +k1,163:8738112,22356365:182547 +k1,163:10135698,22356365:182548 +k1,163:11706953,22356365:182547 +k1,163:13499721,22356365:182548 +k1,163:14857984,22356365:182547 +k1,163:17386066,22356365:182548 +k1,163:19718849,22356365:182547 +k1,163:21450013,22356365:182548 +k1,163:24107199,22356365:182547 +k1,163:25708601,22356365:182548 +k1,163:29101101,22356365:182547 +k1,163:32583029,22356365:0 +) +(1,164:6630773,23221445:25952256,513147,126483 +k1,163:9603009,23221445:200063 +k1,163:10994518,23221445:200064 +k1,163:14895399,23221445:200063 +k1,163:18123881,23221445:200063 +k1,163:19271595,23221445:200063 +k1,163:21223436,23221445:200064 +k1,163:22777473,23221445:200063 +k1,163:25250325,23221445:200063 +k1,163:28767820,23221445:200063 +k1,163:29777254,23221445:200064 +k1,163:30996402,23221445:200063 +k1,163:32583029,23221445:0 +) +(1,164:6630773,24086525:25952256,513147,126483 +k1,163:10450628,24086525:183262 +k1,163:12843765,24086525:183263 +k1,163:14046112,24086525:183262 +k1,163:17384933,24086525:183262 +k1,163:18874328,24086525:183262 +k1,163:21468005,24086525:183263 +k1,163:22891208,24086525:183262 +k1,163:25257474,24086525:183262 +k1,163:27349800,24086525:183262 +k1,163:28192355,24086525:183263 +k1,163:29842313,24086525:183262 +k1,163:32583029,24086525:0 +) +(1,164:6630773,24951605:25952256,505283,134348 +k1,163:9650526,24951605:168937 +k1,163:14729420,24951605:168937 +k1,163:16292309,24951605:168938 +k1,163:18083917,24951605:168937 +k1,163:21104325,24951605:168937 +k1,163:23345510,24951605:168937 +k1,163:25831146,24951605:168938 +k1,163:27365198,24951605:168937 +k1,163:30060548,24951605:168937 +k1,163:32583029,24951605:0 +) +(1,164:6630773,25816685:25952256,513147,134348 +k1,163:8786504,25816685:221764 +k1,163:11063476,25816685:221763 +k1,163:14008916,25816685:221764 +k1,163:15422124,25816685:221763 +k1,163:16995240,25816685:221764 +k1,163:18792489,25816685:221763 +k1,163:19961904,25816685:221764 +k1,163:21692306,25816685:221763 +k1,163:23302123,25816685:221764 +k1,163:24917837,25816685:221763 +k1,163:27901944,25816685:221764 +k1,163:30498732,25816685:221763 +k1,163:31379788,25816685:221764 +k1,163:32583029,25816685:0 +) +(1,164:6630773,26681765:25952256,473825,134348 +k1,164:32583028,26681765:23510384 +g1,164:32583028,26681765 +) +(1,166:6630773,27546845:25952256,513147,134348 +h1,165:6630773,27546845:983040,0,0 +k1,165:8034423,27546845:207618 +k1,165:9449223,27546845:207627 +k1,165:10965604,27546845:207627 +k1,165:11824658,27546845:207626 +k1,165:13628742,27546845:207627 +k1,165:17273731,27546845:207626 +k1,165:18429009,27546845:207627 +k1,165:18992496,27546845:207627 +k1,165:20333240,27546845:207626 +k1,165:22972253,27546845:207627 +k1,165:23989250,27546845:207627 +k1,165:25215961,27546845:207626 +k1,165:27681303,27546845:207627 +k1,165:28548222,27546845:207627 +k1,165:29959089,27546845:207626 +k1,165:31400759,27546845:207627 +k1,166:32583029,27546845:0 +) +(1,166:6630773,28411925:25952256,513147,134348 +k1,165:8108761,28411925:210522 +k1,165:10484593,28411925:210522 +k1,165:11346543,28411925:210522 +k1,165:11912924,28411925:210521 +k1,165:15318981,28411925:210522 +k1,165:17987758,28411925:210522 +k1,165:18959808,28411925:210522 +k1,165:20151404,28411925:210522 +k1,165:23520106,28411925:210522 +k1,165:24749712,28411925:210521 +k1,165:27246785,28411925:210522 +k1,165:28116599,28411925:210522 +k1,165:31391584,28411925:210522 +k1,165:32583029,28411925:0 +) +(1,166:6630773,29277005:25952256,513147,126483 +k1,165:11526675,29277005:253987 +k1,165:14444045,29277005:253987 +k1,165:15357323,29277005:253986 +k1,165:16630395,29277005:253987 +k1,165:20113996,29277005:253987 +k1,165:21027275,29277005:253987 +k1,165:24052780,29277005:253987 +k1,165:26852185,29277005:253987 +k1,165:27319108,29277005:253931 +k1,165:29408103,29277005:253987 +k1,165:31158932,29277005:253987 +k1,165:32583029,29277005:0 +) +(1,166:6630773,30142085:25952256,513147,134348 +g1,165:10167095,30142085 +g1,165:11313975,30142085 +g1,165:12459544,30142085 +k1,166:32583029,30142085:17423402 +g1,166:32583029,30142085 +) +(1,169:6630773,31007165:25952256,505283,126483 +h1,167:6630773,31007165:983040,0,0 +k1,167:8491059,31007165:249411 +k1,167:10492247,31007165:249411 +k1,167:12309935,31007165:249411 +k1,167:13762588,31007165:249412 +k1,167:15238178,31007165:249411 +k1,167:17080769,31007165:249411 +k1,167:19113415,31007165:249411 +k1,167:21013023,31007165:249411 +k1,167:21913862,31007165:249411 +k1,167:24299091,31007165:249411 +k1,167:25878884,31007165:249412 +k1,167:27119855,31007165:249411 +k1,167:28435537,31007165:249411 +k1,167:31140582,31007165:249411 +k1,167:32583029,31007165:0 +) +(1,169:6630773,31872245:25952256,513147,134348 +k1,167:7491138,31872245:208937 +k1,167:10002356,31872245:208938 +k1,167:13145995,31872245:208937 +k1,167:14041095,31872245:208938 +k1,167:14463015,31872245:208928 +k1,167:15647783,31872245:208937 +k1,167:16875806,31872245:208938 +k1,167:18241453,31872245:208937 +k1,167:19780772,31872245:208938 +k1,167:21090714,31872245:208937 +k1,167:23586203,31872245:208938 +k1,167:25629493,31872245:208937 +k1,167:26461678,31872245:208938 +k1,167:27448527,31872245:208937 +k1,167:28055924,31872245:208938 +k1,167:31391584,31872245:208937 +k1,167:32583029,31872245:0 +) +(1,169:6630773,32737325:25952256,513147,126483 +k1,167:9346032,32737325:223580 +k1,167:11118228,32737325:223580 +k1,167:11993237,32737325:223581 +k1,167:14554486,32737325:223580 +k1,167:15969511,32737325:223580 +k1,167:18800769,32737325:223580 +k1,167:19237317,32737325:223556 +k1,167:20813560,32737325:223580 +k1,167:22127004,32737325:223580 +k1,167:26704141,32737325:223580 +k1,167:27875373,32737325:223581 +k1,167:29230760,32737325:223580 +k1,167:31391584,32737325:223580 +k1,167:32583029,32737325:0 +) +(1,169:6630773,33602405:25952256,473825,7863 +k1,168:32583029,33602405:21868052 +g1,169:32583029,33602405 +) +(1,169:6630773,36332164:25952256,0,0 +g1,169:6630773,36332164 +) +(1,171:6630773,37197244:25952256,505283,126483 +h1,170:6630773,37197244:983040,0,0 +g1,170:10584560,37197244 +g1,170:14167413,37197244 +g1,170:14938771,37197244 +k1,171:32583029,37197244:16050422 +g1,171:32583029,37197244 +) +] +(1,215:32583029,45706769:0,0,0 +g1,215:32583029,45706769 +) +) +] +(1,215:6630773,47279633:25952256,0,0 +h1,215:6630773,47279633:25952256,0,0 +) +] +(1,215:4262630,4025873:0,0,0 +[1,215:-473656,4025873:0,0,0 +(1,215:-473656,-710413:0,0,0 +(1,215:-473656,-710413:0,0,0 +g1,215:-473656,-710413 +) +g1,215:-473656,-710413 +) +] +) +] +!15691 +}14 +!11 +{15 +[1,215:4262630,47279633:28320399,43253760,0 +(1,215:4262630,4025873:0,0,0 +[1,215:-473656,4025873:0,0,0 +(1,215:-473656,-710413:0,0,0 +(1,215:-473656,-644877:0,0,0 +k1,215:-473656,-644877:-65536 ) -(1,144:-473656,4736287:0,0,0 -k1,144:-473656,4736287:5209943 +(1,215:-473656,4736287:0,0,0 +k1,215:-473656,4736287:5209943 ) -g1,144:-473656,-710413 +g1,215:-473656,-710413 ) ] ) -[1,144:6630773,47279633:25952256,43253760,0 -[1,144:6630773,4812305:25952256,786432,0 -(1,144:6630773,4812305:25952256,0,0 -(1,144:6630773,4812305:25952256,0,0 -g1,144:3078558,4812305 -[1,144:3078558,4812305:0,0,0 -(1,144:3078558,2439708:0,1703936,0 -k1,144:1358238,2439708:-1720320 -(1,144:1358238,2439708:1720320,1703936,0 -(1,144:1358238,2439708:1179648,16384,0 -r1,144:2537886,2439708:1179648,16384,0 +[1,215:6630773,47279633:25952256,43253760,0 +[1,215:6630773,4812305:25952256,786432,0 +(1,215:6630773,4812305:25952256,0,0 +(1,215:6630773,4812305:25952256,0,0 +g1,215:3078558,4812305 +[1,215:3078558,4812305:0,0,0 +(1,215:3078558,2439708:0,1703936,0 +k1,215:1358238,2439708:-1720320 +(1,215:1358238,2439708:1720320,1703936,0 +(1,215:1358238,2439708:1179648,16384,0 +r1,215:2537886,2439708:1179648,16384,0 ) -g1,144:3062174,2439708 -(1,144:3062174,2439708:16384,1703936,0 -[1,144:3062174,2439708:25952256,1703936,0 -(1,144:3062174,1915420:25952256,1179648,0 -(1,144:3062174,1915420:16384,1179648,0 -r1,144:3078558,1915420:16384,1179648,0 +g1,215:3062174,2439708 +(1,215:3062174,2439708:16384,1703936,0 +[1,215:3062174,2439708:25952256,1703936,0 +(1,215:3062174,1915420:25952256,1179648,0 +(1,215:3062174,1915420:16384,1179648,0 +r1,215:3078558,1915420:16384,1179648,0 ) -k1,144:29014430,1915420:25935872 -g1,144:29014430,1915420 +k1,215:29014430,1915420:25935872 +g1,215:29014430,1915420 ) ] ) ) ) ] -[1,144:3078558,4812305:0,0,0 -(1,144:3078558,2439708:0,1703936,0 -g1,144:29030814,2439708 -g1,144:36135244,2439708 -(1,144:36135244,2439708:1720320,1703936,0 -(1,144:36135244,2439708:16384,1703936,0 -[1,144:36135244,2439708:25952256,1703936,0 -(1,144:36135244,1915420:25952256,1179648,0 -(1,144:36135244,1915420:16384,1179648,0 -r1,144:36151628,1915420:16384,1179648,0 +[1,215:3078558,4812305:0,0,0 +(1,215:3078558,2439708:0,1703936,0 +g1,215:29030814,2439708 +g1,215:36135244,2439708 +(1,215:36135244,2439708:1720320,1703936,0 +(1,215:36135244,2439708:16384,1703936,0 +[1,215:36135244,2439708:25952256,1703936,0 +(1,215:36135244,1915420:25952256,1179648,0 +(1,215:36135244,1915420:16384,1179648,0 +r1,215:36151628,1915420:16384,1179648,0 ) -k1,144:62087500,1915420:25935872 -g1,144:62087500,1915420 +k1,215:62087500,1915420:25935872 +g1,215:62087500,1915420 ) ] ) -g1,144:36675916,2439708 -(1,144:36675916,2439708:1179648,16384,0 -r1,144:37855564,2439708:1179648,16384,0 +g1,215:36675916,2439708 +(1,215:36675916,2439708:1179648,16384,0 +r1,215:37855564,2439708:1179648,16384,0 ) ) -k1,144:3078556,2439708:-34777008 +k1,215:3078556,2439708:-34777008 ) ] -[1,144:3078558,4812305:0,0,0 -(1,144:3078558,49800853:0,16384,2228224 -k1,144:1358238,49800853:-1720320 -(1,144:1358238,49800853:1720320,16384,2228224 -(1,144:1358238,49800853:1179648,16384,0 -r1,144:2537886,49800853:1179648,16384,0 +[1,215:3078558,4812305:0,0,0 +(1,215:3078558,49800853:0,16384,2228224 +k1,215:1358238,49800853:-1720320 +(1,215:1358238,49800853:1720320,16384,2228224 +(1,215:1358238,49800853:1179648,16384,0 +r1,215:2537886,49800853:1179648,16384,0 ) -g1,144:3062174,49800853 -(1,144:3062174,52029077:16384,1703936,0 -[1,144:3062174,52029077:25952256,1703936,0 -(1,144:3062174,51504789:25952256,1179648,0 -(1,144:3062174,51504789:16384,1179648,0 -r1,144:3078558,51504789:16384,1179648,0 +g1,215:3062174,49800853 +(1,215:3062174,52029077:16384,1703936,0 +[1,215:3062174,52029077:25952256,1703936,0 +(1,215:3062174,51504789:25952256,1179648,0 +(1,215:3062174,51504789:16384,1179648,0 +r1,215:3078558,51504789:16384,1179648,0 ) -k1,144:29014430,51504789:25935872 -g1,144:29014430,51504789 +k1,215:29014430,51504789:25935872 +g1,215:29014430,51504789 ) ] ) ) ) ] -[1,144:3078558,4812305:0,0,0 -(1,144:3078558,49800853:0,16384,2228224 -g1,144:29030814,49800853 -g1,144:36135244,49800853 -(1,144:36135244,49800853:1720320,16384,2228224 -(1,144:36135244,52029077:16384,1703936,0 -[1,144:36135244,52029077:25952256,1703936,0 -(1,144:36135244,51504789:25952256,1179648,0 -(1,144:36135244,51504789:16384,1179648,0 -r1,144:36151628,51504789:16384,1179648,0 +[1,215:3078558,4812305:0,0,0 +(1,215:3078558,49800853:0,16384,2228224 +g1,215:29030814,49800853 +g1,215:36135244,49800853 +(1,215:36135244,49800853:1720320,16384,2228224 +(1,215:36135244,52029077:16384,1703936,0 +[1,215:36135244,52029077:25952256,1703936,0 +(1,215:36135244,51504789:25952256,1179648,0 +(1,215:36135244,51504789:16384,1179648,0 +r1,215:36151628,51504789:16384,1179648,0 ) -k1,144:62087500,51504789:25935872 -g1,144:62087500,51504789 +k1,215:62087500,51504789:25935872 +g1,215:62087500,51504789 ) ] ) -g1,144:36675916,49800853 -(1,144:36675916,49800853:1179648,16384,0 -r1,144:37855564,49800853:1179648,16384,0 +g1,215:36675916,49800853 +(1,215:36675916,49800853:1179648,16384,0 +r1,215:37855564,49800853:1179648,16384,0 ) ) -k1,144:3078556,49800853:-34777008 +k1,215:3078556,49800853:-34777008 ) ] -g1,144:6630773,4812305 +g1,215:6630773,4812305 ) ) ] -[1,144:6630773,45706769:0,40108032,0 -(1,144:6630773,45706769:0,40108032,0 -(1,144:6630773,45706769:0,0,0 -g1,144:6630773,45706769 +[1,215:6630773,45706769:0,40108032,0 +(1,215:6630773,45706769:0,40108032,0 +(1,215:6630773,45706769:0,0,0 +g1,215:6630773,45706769 ) -[1,144:6630773,45706769:0,40108032,0 -h1,144:6630773,6254097:0,0,0 +[1,215:6630773,45706769:0,40108032,0 +h1,215:6630773,6254097:0,0,0 ] -(1,144:6630773,45706769:0,0,0 -g1,144:6630773,45706769 +(1,215:6630773,45706769:0,0,0 +g1,215:6630773,45706769 ) ) ] -(1,144:6630773,47279633:25952256,0,0 -h1,144:6630773,47279633:25952256,0,0 +(1,215:6630773,47279633:25952256,0,0 +h1,215:6630773,47279633:25952256,0,0 ) ] -(1,144:4262630,4025873:0,0,0 -[1,144:-473656,4025873:0,0,0 -(1,144:-473656,-710413:0,0,0 -(1,144:-473656,-710413:0,0,0 -g1,144:-473656,-710413 +(1,215:4262630,4025873:0,0,0 +[1,215:-473656,4025873:0,0,0 +(1,215:-473656,-710413:0,0,0 +(1,215:-473656,-710413:0,0,0 +g1,215:-473656,-710413 ) -g1,144:-473656,-710413 +g1,215:-473656,-710413 ) ] ) ] !3216 -}11 +}15 !10 -{12 -[1,159:4262630,47279633:28320399,43253760,3931 -(1,159:4262630,4025873:0,0,0 -[1,159:-473656,4025873:0,0,0 -(1,159:-473656,-710413:0,0,0 -(1,159:-473656,-644877:0,0,0 -k1,159:-473656,-644877:-65536 +{16 +[1,239:4262630,47279633:28320399,43253760,0 +(1,239:4262630,4025873:0,0,0 +[1,239:-473656,4025873:0,0,0 +(1,239:-473656,-710413:0,0,0 +(1,239:-473656,-644877:0,0,0 +k1,239:-473656,-644877:-65536 ) -(1,159:-473656,4736287:0,0,0 -k1,159:-473656,4736287:5209943 +(1,239:-473656,4736287:0,0,0 +k1,239:-473656,4736287:5209943 ) -g1,159:-473656,-710413 +g1,239:-473656,-710413 ) ] ) -[1,159:6630773,47279633:25952256,43253760,3931 -[1,159:6630773,4812305:25952256,786432,0 -(1,159:6630773,4812305:25952256,0,0 -(1,159:6630773,4812305:25952256,0,0 -g1,159:3078558,4812305 -[1,159:3078558,4812305:0,0,0 -(1,159:3078558,2439708:0,1703936,0 -k1,159:1358238,2439708:-1720320 -(1,144:1358238,2439708:1720320,1703936,0 -(1,144:1358238,2439708:1179648,16384,0 -r1,159:2537886,2439708:1179648,16384,0 +[1,239:6630773,47279633:25952256,43253760,0 +[1,239:6630773,4812305:25952256,786432,0 +(1,239:6630773,4812305:25952256,0,0 +(1,239:6630773,4812305:25952256,0,0 +g1,239:3078558,4812305 +[1,239:3078558,4812305:0,0,0 +(1,239:3078558,2439708:0,1703936,0 +k1,239:1358238,2439708:-1720320 +(1,218:1358238,2439708:1720320,1703936,0 +(1,218:1358238,2439708:1179648,16384,0 +r1,239:2537886,2439708:1179648,16384,0 ) -g1,144:3062174,2439708 -(1,144:3062174,2439708:16384,1703936,0 -[1,144:3062174,2439708:25952256,1703936,0 -(1,144:3062174,1915420:25952256,1179648,0 -(1,144:3062174,1915420:16384,1179648,0 -r1,159:3078558,1915420:16384,1179648,0 +g1,218:3062174,2439708 +(1,218:3062174,2439708:16384,1703936,0 +[1,218:3062174,2439708:25952256,1703936,0 +(1,218:3062174,1915420:25952256,1179648,0 +(1,218:3062174,1915420:16384,1179648,0 +r1,239:3078558,1915420:16384,1179648,0 ) -k1,144:29014430,1915420:25935872 -g1,144:29014430,1915420 +k1,218:29014430,1915420:25935872 +g1,218:29014430,1915420 ) ] ) ) ) ] -[1,159:3078558,4812305:0,0,0 -(1,159:3078558,2439708:0,1703936,0 -g1,159:29030814,2439708 -g1,159:36135244,2439708 -(1,144:36135244,2439708:1720320,1703936,0 -(1,144:36135244,2439708:16384,1703936,0 -[1,144:36135244,2439708:25952256,1703936,0 -(1,144:36135244,1915420:25952256,1179648,0 -(1,144:36135244,1915420:16384,1179648,0 -r1,159:36151628,1915420:16384,1179648,0 +[1,239:3078558,4812305:0,0,0 +(1,239:3078558,2439708:0,1703936,0 +g1,239:29030814,2439708 +g1,239:36135244,2439708 +(1,218:36135244,2439708:1720320,1703936,0 +(1,218:36135244,2439708:16384,1703936,0 +[1,218:36135244,2439708:25952256,1703936,0 +(1,218:36135244,1915420:25952256,1179648,0 +(1,218:36135244,1915420:16384,1179648,0 +r1,239:36151628,1915420:16384,1179648,0 ) -k1,144:62087500,1915420:25935872 -g1,144:62087500,1915420 +k1,218:62087500,1915420:25935872 +g1,218:62087500,1915420 ) ] ) -g1,144:36675916,2439708 -(1,144:36675916,2439708:1179648,16384,0 -r1,159:37855564,2439708:1179648,16384,0 +g1,218:36675916,2439708 +(1,218:36675916,2439708:1179648,16384,0 +r1,239:37855564,2439708:1179648,16384,0 ) ) -k1,159:3078556,2439708:-34777008 +k1,239:3078556,2439708:-34777008 ) ] -[1,159:3078558,4812305:0,0,0 -(1,159:3078558,49800853:0,16384,2228224 -k1,159:1358238,49800853:-1720320 -(1,144:1358238,49800853:1720320,16384,2228224 -(1,144:1358238,49800853:1179648,16384,0 -r1,159:2537886,49800853:1179648,16384,0 +[1,239:3078558,4812305:0,0,0 +(1,239:3078558,49800853:0,16384,2228224 +k1,239:1358238,49800853:-1720320 +(1,218:1358238,49800853:1720320,16384,2228224 +(1,218:1358238,49800853:1179648,16384,0 +r1,239:2537886,49800853:1179648,16384,0 ) -g1,144:3062174,49800853 -(1,144:3062174,52029077:16384,1703936,0 -[1,144:3062174,52029077:25952256,1703936,0 -(1,144:3062174,51504789:25952256,1179648,0 -(1,144:3062174,51504789:16384,1179648,0 -r1,159:3078558,51504789:16384,1179648,0 +g1,218:3062174,49800853 +(1,218:3062174,52029077:16384,1703936,0 +[1,218:3062174,52029077:25952256,1703936,0 +(1,218:3062174,51504789:25952256,1179648,0 +(1,218:3062174,51504789:16384,1179648,0 +r1,239:3078558,51504789:16384,1179648,0 ) -k1,144:29014430,51504789:25935872 -g1,144:29014430,51504789 +k1,218:29014430,51504789:25935872 +g1,218:29014430,51504789 ) ] ) ) ) ] -[1,159:3078558,4812305:0,0,0 -(1,159:3078558,49800853:0,16384,2228224 -g1,159:29030814,49800853 -g1,159:36135244,49800853 -(1,144:36135244,49800853:1720320,16384,2228224 -(1,144:36135244,52029077:16384,1703936,0 -[1,144:36135244,52029077:25952256,1703936,0 -(1,144:36135244,51504789:25952256,1179648,0 -(1,144:36135244,51504789:16384,1179648,0 -r1,159:36151628,51504789:16384,1179648,0 +[1,239:3078558,4812305:0,0,0 +(1,239:3078558,49800853:0,16384,2228224 +g1,239:29030814,49800853 +g1,239:36135244,49800853 +(1,218:36135244,49800853:1720320,16384,2228224 +(1,218:36135244,52029077:16384,1703936,0 +[1,218:36135244,52029077:25952256,1703936,0 +(1,218:36135244,51504789:25952256,1179648,0 +(1,218:36135244,51504789:16384,1179648,0 +r1,239:36151628,51504789:16384,1179648,0 ) -k1,144:62087500,51504789:25935872 -g1,144:62087500,51504789 +k1,218:62087500,51504789:25935872 +g1,218:62087500,51504789 ) ] ) -g1,144:36675916,49800853 -(1,144:36675916,49800853:1179648,16384,0 -r1,159:37855564,49800853:1179648,16384,0 +g1,218:36675916,49800853 +(1,218:36675916,49800853:1179648,16384,0 +r1,239:37855564,49800853:1179648,16384,0 ) ) -k1,159:3078556,49800853:-34777008 +k1,239:3078556,49800853:-34777008 ) ] -g1,159:6630773,4812305 +g1,239:6630773,4812305 +) +) +] +[1,239:6630773,45706769:25952256,40108032,0 +(1,239:6630773,45706769:25952256,40108032,0 +(1,239:6630773,45706769:0,0,0 +g1,239:6630773,45706769 +) +[1,239:6630773,45706769:25952256,40108032,0 +[1,218:6630773,11778547:25952256,6179810,0 +(1,218:6630773,6614283:25952256,1146618,0 +h1,218:6630773,6614283:0,0,0 +k1,218:20096848,6614283:12486181 +k1,218:32583029,6614283:12486181 ) +(1,218:6630773,7361403:25952256,32768,229376 +(1,218:6630773,7361403:0,32768,229376 +(1,218:6630773,7361403:5505024,32768,229376 +r1,239:12135797,7361403:5505024,262144,229376 +) +k1,218:6630773,7361403:-5505024 +) +(1,218:6630773,7361403:25952256,32768,0 +r1,239:32583029,7361403:25952256,32768,0 +) +) +(1,218:6630773,9196419:25952256,909509,241827 +h1,218:6630773,9196419:0,0,0 +g1,218:10161460,9196419 +g1,218:12294264,9196419 +g1,218:15349552,9196419 +g1,218:16787543,9196419 +g1,218:20447991,9196419 +k1,218:26888279,9196419:5694750 +k1,218:32583029,9196419:5694750 +) +(1,218:6630773,9943539:25952256,32768,0 +(1,218:6630773,9943539:5505024,32768,0 +r1,239:12135797,9943539:5505024,32768,0 +) +k1,218:22359413,9943539:10223616 +k1,218:32583029,9943539:10223616 +) +] +(1,220:6630773,13908472:25952256,131072,0 +r1,239:32583029,13908472:25952256,131072,0 +g1,220:32583029,13908472 +g1,220:32583029,13908472 +) +(1,222:6630773,15251965:25952256,513147,134348 +k1,222:8596853,15251965:1966080 +k1,221:9937362,15251965:143822 +k1,221:13290482,15251965:143822 +k1,221:14756164,15251965:143821 +k1,221:15559278,15251965:143822 +k1,221:18789190,15251965:143822 +k1,221:19288872,15251965:143822 +k1,221:23430390,15251965:143822 +k1,221:24105709,15251965:143822 +k1,221:26851309,15251965:143821 +k1,221:27646559,15251965:143822 +k1,221:29470724,15251965:143822 +k1,221:32583029,15251965:1966080 +) +(1,222:6630773,16117045:25952256,513147,134348 +k1,222:8596853,16117045:1966080 +k1,221:9149976,16117045:197263 +k1,221:13518607,16117045:197264 +k1,221:14969574,16117045:197263 +k1,221:16827519,16117045:197263 +k1,221:18555048,16117045:197263 +k1,221:19403740,16117045:197264 +k1,221:21323945,16117045:197263 +k1,221:22540293,16117045:197263 +k1,221:24855024,16117045:197263 +k1,221:25711580,16117045:197264 +k1,221:26264703,16117045:197263 +k1,221:32583029,16117045:1966080 +) +(1,222:6630773,16982125:25952256,513147,134348 +g1,222:8596853,16982125 +g1,221:11638378,16982125 +g1,221:12599135,16982125 +g1,221:14635338,16982125 +g1,221:16005040,16982125 +g1,221:17308551,16982125 +g1,221:18736580,16982125 +g1,221:20322551,16982125 +g1,221:21806286,16982125 +g1,221:23493182,16982125 +k1,222:30616949,16982125:6114513 +g1,222:32583029,16982125 +) +(1,224:6630773,18368216:25952256,505283,102891 +g1,224:8596853,18368216 +h1,223:8596853,18368216:983040,0,0 +g1,223:10975809,18368216 +g1,223:13804342,18368216 +g1,223:14535068,18368216 +g1,223:15350335,18368216 +g1,223:16568649,18368216 +g1,223:19872974,18368216 +g1,223:21138474,18368216 +g1,223:22356788,18368216 +k1,224:30616949,18368216:6579163 +g1,224:32583029,18368216 +) +(1,225:6630773,20019728:25952256,475791,7863 +k1,225:28021069,20019728:21390296 +h1,225:28021069,20019728:0,0,0 +g1,225:28769490,20019728 +g1,225:30616950,20019728 +g1,225:32583030,20019728 +) +(1,226:6630773,20884808:25952256,485622,134348 +k1,226:21887555,20884808:15256782 +h1,225:21887555,20884808:0,0,0 +g1,225:23286748,20884808 +g1,225:24259957,20884808 +g1,225:29023113,20884808 +g1,226:30616949,20884808 +g1,226:32583029,20884808 +) +(1,226:6630773,22143104:25952256,131072,0 +r1,239:32583029,22143104:25952256,131072,0 +g1,226:32583029,22143104 +g1,226:34549109,22143104 +) +(1,228:6630773,24974264:25952256,32768,229376 +(1,228:6630773,24974264:0,32768,229376 +(1,228:6630773,24974264:5505024,32768,229376 +r1,239:12135797,24974264:5505024,262144,229376 +) +k1,228:6630773,24974264:-5505024 +) +(1,228:6630773,24974264:25952256,32768,0 +r1,239:32583029,24974264:25952256,32768,0 +) +) +(1,228:6630773,26606116:25952256,615776,151780 +(1,228:6630773,26606116:1974731,573309,0 +g1,228:6630773,26606116 +g1,228:8605504,26606116 +) +g1,228:10904245,26606116 +g1,228:11961996,26606116 +g1,228:13695292,26606116 +k1,228:32583029,26606116:15886712 +g1,228:32583029,26606116 +) +(1,231:6630773,27864412:25952256,513147,134348 +k1,230:7540940,27864412:282332 +k1,230:9026512,27864412:282331 +k1,230:11726467,27864412:282332 +k1,230:12221707,27864412:282248 +k1,230:15173320,27864412:282332 +k1,230:16786032,27864412:282331 +k1,230:17281273,27864412:282249 +k1,230:20078220,27864412:282331 +k1,230:21379637,27864412:282332 +k1,230:23244008,27864412:282332 +k1,230:24630621,27864412:282331 +k1,230:25660719,27864412:282332 +k1,230:27456276,27864412:282331 +k1,230:29340308,27864412:282332 +k1,230:32583029,27864412:0 +) +(1,231:6630773,28729492:25952256,505283,134348 +k1,230:7573469,28729492:291268 +k1,230:9476267,28729492:291268 +k1,230:10786621,28729492:291269 +k1,230:11492640,28729492:291176 +k1,230:14799875,28729492:291268 +k1,230:17852830,28729492:291268 +k1,230:18558849,28729492:291176 +k1,230:20041562,28729492:291268 +k1,230:24582184,28729492:291268 +k1,230:26422069,28729492:291269 +k1,230:27870047,28729492:291268 +k1,230:29262320,28729492:291268 +k1,230:32583029,28729492:0 +) +(1,231:6630773,29594572:25952256,513147,134348 +k1,230:8740679,29594572:241475 +k1,230:10173599,29594572:241475 +k1,230:13407448,29594572:241475 +k1,230:15694956,29594572:241474 +k1,230:16394528,29594572:241475 +k1,230:17921819,29594572:241475 +k1,230:21272322,29594572:241475 +k1,230:22165225,29594572:241475 +k1,230:23499185,29594572:241475 +k1,230:24943900,29594572:241474 +k1,230:26767414,29594572:241475 +k1,230:28200334,29594572:241475 +k1,230:30143779,29594572:241475 +k1,230:32583029,29594572:0 +) +(1,231:6630773,30459652:25952256,513147,134348 +k1,230:7561333,30459652:244398 +k1,230:10958669,30459652:244399 +k1,230:13964754,30459652:244398 +k1,230:14860580,30459652:244398 +k1,230:16197464,30459652:244399 +k1,230:16856660,30459652:244353 +k1,230:20517450,30459652:244398 +k1,230:22047665,30459652:244399 +k1,230:24899741,30459652:244398 +k1,230:27745918,30459652:244398 +k1,230:29320698,30459652:244399 +k1,230:31635378,30459652:244398 +k1,230:32583029,30459652:0 +) +(1,231:6630773,31324732:25952256,513147,134348 +k1,230:10734101,31324732:296342 +k1,230:12221888,31324732:296342 +k1,230:15120008,31324732:296341 +k1,230:16746731,31324732:296342 +k1,230:17694501,31324732:296342 +k1,230:19069566,31324732:296342 +k1,230:22460518,31324732:296342 +k1,230:24324481,31324732:296342 +k1,230:26322792,31324732:296341 +k1,230:28503949,31324732:296342 +k1,230:29747942,31324732:296342 +k1,230:32583029,31324732:0 +) +(1,231:6630773,32189812:25952256,513147,134348 +k1,230:9332686,32189812:143387 +k1,230:11666942,32189812:143387 +k1,230:14296766,32189812:143388 +k1,230:16208314,32189812:143387 +k1,230:16564637,32189812:143331 +k1,230:17993841,32189812:143388 +k1,230:19417146,32189812:143387 +k1,230:21576420,32189812:143387 +k1,230:22529177,32189812:143387 +k1,230:24002945,32189812:143387 +k1,230:24797760,32189812:143387 +k1,230:26207304,32189812:143388 +k1,230:28938708,32189812:143387 +k1,230:29733523,32189812:143387 +k1,230:32583029,32189812:0 +) +(1,231:6630773,33054892:25952256,505283,126483 +g1,230:9924612,33054892 +g1,230:11315286,33054892 +g1,230:12844896,33054892 +g1,230:13695553,33054892 +g1,230:14987267,33054892 +g1,230:16205581,33054892 +g1,230:19188779,33054892 +k1,231:32583029,33054892:8394508 +g1,231:32583029,33054892 +) +(1,232:6630773,35886052:25952256,32768,229376 +(1,232:6630773,35886052:0,32768,229376 +(1,232:6630773,35886052:5505024,32768,229376 +r1,239:12135797,35886052:5505024,262144,229376 +) +k1,232:6630773,35886052:-5505024 +) +(1,232:6630773,35886052:25952256,32768,0 +r1,239:32583029,35886052:25952256,32768,0 +) +) +(1,232:6630773,37517904:25952256,606339,151780 +(1,232:6630773,37517904:1974731,582746,0 +g1,232:6630773,37517904 +g1,232:8605504,37517904 +) +g1,232:12727194,37517904 +g1,232:14436897,37517904 +k1,232:32583029,37517904:14499447 +g1,232:32583029,37517904 +) +(1,235:6630773,38776200:25952256,505283,134348 +k1,234:10282930,38776200:207585 +k1,234:11299886,38776200:207586 +k1,234:14261949,38776200:207585 +k1,234:18056319,38776200:207585 +k1,234:20666454,38776200:207585 +k1,234:22708393,38776200:207586 +k1,234:23539225,38776200:207585 +k1,234:24524722,38776200:207585 +k1,234:25130766,38776200:207585 +k1,234:28465075,38776200:207586 +k1,234:29805122,38776200:207585 +k1,234:30760473,38776200:207585 +k1,234:32583029,38776200:0 +) +(1,235:6630773,39641280:25952256,513147,134348 +k1,234:9922952,39641280:280800 +k1,234:10559612,39641280:280800 +k1,234:12123607,39641280:280800 +k1,234:14234172,39641280:280800 +k1,234:15197857,39641280:280800 +k1,234:18451370,39641280:280800 +k1,234:19088030,39641280:280800 +k1,234:21861164,39641280:280800 +k1,234:23472345,39641280:280800 +k1,234:24380980,39641280:280800 +k1,234:26128476,39641280:280800 +k1,234:28106658,39641280:280800 +k1,234:30221811,39641280:280800 +k1,234:31125858,39641280:280800 +k1,234:32184570,39641280:280800 +k1,234:32583029,39641280:0 +) +(1,235:6630773,40506360:25952256,505283,134348 +k1,234:9989393,40506360:231897 +k1,234:11728617,40506360:231896 +k1,234:12611942,40506360:231897 +k1,234:13591604,40506360:231896 +k1,234:14179361,40506360:231897 +k1,234:16222018,40506360:231897 +k1,234:18385915,40506360:231896 +k1,234:20888635,40506360:231897 +k1,234:21476392,40506360:231897 +k1,234:24658719,40506360:231896 +k1,234:27568417,40506360:231897 +k1,234:28898041,40506360:231896 +k1,234:29485798,40506360:231897 +k1,234:32583029,40506360:0 +) +(1,235:6630773,41371440:25952256,513147,134348 +k1,234:7546051,41371440:248122 +k1,234:8208968,41371440:248074 +k1,234:10899617,41371440:248122 +k1,234:11617633,41371440:248123 +k1,234:12970037,41371440:248122 +k1,234:13965926,41371440:248123 +k1,234:15727274,41371440:248122 +k1,234:16661559,41371440:248123 +k1,234:17265541,41371440:248122 +k1,234:19622613,41371440:248123 +k1,234:21626445,41371440:248122 +k1,234:26658041,41371440:248123 +k1,234:29308713,41371440:248122 +k1,234:30239721,41371440:248123 +k1,234:31435494,41371440:248122 +k1,234:32583029,41371440:0 +) +(1,235:6630773,42236520:25952256,513147,134348 +k1,234:10492955,42236520:181025 +k1,234:11865425,42236520:181025 +k1,234:13332266,42236520:181025 +k1,234:14199453,42236520:181025 +k1,234:14736338,42236520:181025 +k1,234:18070300,42236520:181025 +k1,234:19176038,42236520:181025 +k1,234:20934515,42236520:181025 +k1,234:21647037,42236520:181025 +k1,234:23112568,42236520:181025 +k1,234:23979755,42236520:181025 +k1,234:24516640,42236520:181025 +k1,234:26455996,42236520:181025 +k1,234:27288449,42236520:181025 +k1,234:28488559,42236520:181025 +k1,234:29762069,42236520:181025 +k1,234:30610250,42236520:181025 +k1,234:31379788,42236520:181025 +k1,234:32583029,42236520:0 +) +(1,235:6630773,43448941:25952256,513147,134348 +g1,234:8412041,43448941 +g1,234:9743732,43448941 +g1,234:12170530,43448941 +g1,234:14346980,43448941 +g1,234:15197637,43448941 +g1,234:17948838,43448941 +g1,234:18834229,43448941 +g1,234:20413646,43448941 +g1,234:21958985,43448941 +g1,234:25571329,43448941 +g1,234:26962003,43448941 +g1,234:29654222,43448941 +k1,235:32583029,43448941:1090522 +g1,235:32583029,43448941 +) +(1,239:6630773,44314021:25952256,505283,134348 +k1,238:7012400,44314021:168635 +k1,238:10473595,44314021:168666 +k1,238:13022529,44314021:168666 +k1,238:13790848,44314021:168665 +k1,238:16961063,44314021:168666 +k1,238:17543886,44314021:168635 +k1,238:18797828,44314021:168666 +k1,238:19364953,44314021:168666 +k1,238:21043569,44314021:168666 +k1,238:24841618,44314021:168665 +k1,238:25901574,44314021:168666 +k1,238:26745261,44314021:168666 +k1,238:27974954,44314021:168665 +k1,238:30422962,44314021:168666 +k1,238:32583029,44314021:0 +) +(1,239:6630773,45179101:25952256,513147,134348 +k1,238:8576231,45179101:251352 +k1,238:11473927,45179101:251352 +k1,238:12324934,45179101:251353 +k1,238:14541711,45179101:251352 +k1,238:15558524,45179101:251352 +k1,238:16823063,45179101:251352 +k1,238:19807922,45179101:251352 +k1,238:21217952,45179101:251353 +k1,238:22994982,45179101:251352 +k1,238:24456784,45179101:251352 +k1,238:25880575,45179101:251352 +k1,238:28430275,45179101:251352 +k1,238:30044777,45179101:251353 +k1,238:30883987,45179101:251352 +k1,238:31597368,45179101:251352 +k1,238:32583029,45179101:0 +) +] +(1,239:32583029,45706769:0,0,0 +g1,239:32583029,45706769 +) +) +] +(1,239:6630773,47279633:25952256,477757,0 +(1,239:6630773,47279633:25952256,477757,0 +(1,239:6630773,47279633:0,0,0 +v1,239:6630773,47279633:0,0,0 +) +g1,239:6830002,47279633 +k1,239:32184570,47279633:25354568 +) +) +] +(1,239:4262630,4025873:0,0,0 +[1,239:-473656,4025873:0,0,0 +(1,239:-473656,-710413:0,0,0 +(1,239:-473656,-710413:0,0,0 +g1,239:-473656,-710413 +) +g1,239:-473656,-710413 ) -] -[1,159:6630773,45706769:25952256,40108032,0 -(1,159:6630773,45706769:25952256,40108032,0 -(1,159:6630773,45706769:0,0,0 -g1,159:6630773,45706769 -) -[1,159:6630773,45706769:25952256,40108032,0 -[1,144:6630773,12106481:25952256,6507744,0 -(1,144:6630773,7073297:25952256,32768,229376 -(1,144:6630773,7073297:0,32768,229376 -(1,144:6630773,7073297:5505024,32768,229376 -r1,159:12135797,7073297:5505024,262144,229376 -) -k1,144:6630773,7073297:-5505024 -) -) -(1,144:6630773,8803457:25952256,923664,227671 -h1,144:6630773,8803457:0,0,0 -k1,144:21844104,8803457:10738926 -k1,144:32583030,8803457:10738926 -) -(1,144:6630773,9419505:25952256,32768,0 -(1,144:6630773,9419505:5505024,32768,0 -r1,159:12135797,9419505:5505024,32768,0 -) -k1,144:22359413,9419505:10223616 -k1,144:32583029,9419505:10223616 -) -] -(1,146:6630773,13734401:25952256,131072,0 -r1,159:32583029,13734401:25952256,131072,0 -g1,146:32583029,13734401 -g1,146:32583029,13734401 -) -(1,148:6630773,15054302:25952256,505283,134348 -k1,148:8596853,15054302:1966080 -k1,147:11718282,15054302:137575 -k1,147:13140363,15054302:137575 -k1,147:14448411,15054302:137575 -k1,147:16134602,15054302:137575 -k1,147:16923605,15054302:137575 -k1,147:18769704,15054302:137575 -k1,147:19926365,15054302:137576 -k1,147:21357621,15054302:137575 -k1,147:23996705,15054302:137575 -k1,147:24785708,15054302:137575 -k1,147:25279143,15054302:137575 -k1,147:26770692,15054302:137575 -k1,147:28867793,15054302:137575 -k1,147:32583029,15054302:1966080 -) -(1,148:6630773,15895790:25952256,505283,126483 -k1,148:8596853,15895790:1966080 -k1,147:9734379,15895790:239683 -k1,147:11144535,15895790:239683 -k1,147:13694362,15895790:239683 -k1,147:15218551,15895790:239683 -k1,147:15814094,15895790:239683 -k1,147:17000118,15895790:239684 -k1,147:17771298,15895790:239683 -k1,147:18366841,15895790:239683 -k1,147:21532051,15895790:239683 -k1,147:23661792,15895790:239683 -k1,147:26843386,15895790:239683 -k1,147:32583029,15895790:1966080 -) -(1,148:6630773,16737278:25952256,505283,126483 -k1,148:8596853,16737278:1966080 -k1,147:11546038,16737278:172425 -k1,147:13112414,16737278:172425 -k1,147:16566227,16737278:172425 -k1,147:18658202,16737278:172425 -k1,147:19186487,16737278:172425 -k1,147:22680278,16737278:172426 -k1,147:24527148,16737278:172425 -k1,147:27031999,16737278:172425 -k1,147:28642939,16737278:172425 -k1,147:29612282,16737278:172425 -k1,147:32583029,16737278:1966080 -) -(1,148:6630773,17578766:25952256,513147,134348 -k1,148:8596853,17578766:1966080 -k1,147:10092439,17578766:255645 -k1,147:11601788,17578766:255645 -k1,147:14684001,17578766:255645 -k1,147:16600328,17578766:255645 -k1,147:17875058,17578766:255645 -k1,147:19145200,17578766:255645 -k1,147:19756704,17578766:255644 -k1,147:20868905,17578766:255645 -k1,147:21783842,17578766:255645 -k1,147:24801830,17578766:255645 -k1,147:26507787,17578766:255645 -k1,147:28800946,17578766:255645 -k1,147:32583029,17578766:1966080 -) -(1,148:6630773,18420254:25952256,505283,134348 -k1,148:8596853,18420254:1966080 -k1,147:10264798,18420254:216323 -k1,147:12080200,18420254:216324 -k1,147:13789433,18420254:216323 -k1,147:14463854,18420254:216324 -k1,147:15988931,18420254:216323 -k1,147:17224340,18420254:216324 -k1,147:18939471,18420254:216323 -k1,147:19984824,18420254:216323 -k1,147:21293633,18420254:216324 -k1,147:21968053,18420254:216323 -k1,147:23834574,18420254:216324 -k1,147:27123880,18420254:216323 -k1,148:32583029,18420254:1966080 -) -(1,148:6630773,19261742:25952256,513147,126483 -g1,148:8596853,19261742 -g1,147:10393850,19261742 -g1,147:11584639,19261742 -g1,147:13118836,19261742 -g1,147:15061978,19261742 -g1,147:16022735,19261742 -g1,147:19810715,19261742 -g1,147:21577565,19261742 -k1,148:30616949,19261742:5152444 -g1,148:32583029,19261742 -) -(1,149:6630773,20889662:25952256,475791,7863 -k1,149:27570837,20889662:20940064 -h1,149:27570837,20889662:0,0,0 -g1,149:28388726,20889662 -g1,149:29137147,20889662 -g1,149:30616950,20889662 -g1,149:32583030,20889662 -) -(1,150:6630773,21731150:25952256,505283,134348 -k1,150:16377944,21731150:9747171 -h1,149:16377944,21731150:0,0,0 -g1,149:17857091,21731150 -g1,149:18923361,21731150 -g1,149:20846187,21731150 -g1,149:25094886,21731150 -g1,149:29023113,21731150 -g1,150:30616949,21731150 -g1,150:32583029,21731150 -) -(1,150:6630773,22965854:25952256,131072,0 -r1,159:32583029,22965854:25952256,131072,0 -g1,150:32583029,22965854 -g1,150:34549109,22965854 -) -(1,154:6630773,24593774:25952256,505283,134348 -k1,153:8270156,24593774:257229 -k1,153:9546469,24593774:257228 -k1,153:11071164,24593774:257229 -k1,153:13462901,24593774:257229 -k1,153:14343376,24593774:257228 -k1,153:15378517,24593774:257229 -k1,153:16034205,24593774:257229 -k1,153:20045336,24593774:257228 -k1,153:21683409,24593774:257229 -k1,153:23522676,24593774:257228 -k1,153:24311402,24593774:257229 -k1,153:26423300,24593774:257229 -k1,153:27489898,24593774:257228 -k1,153:31391584,24593774:257229 -k1,153:32583029,24593774:0 -) -(1,154:6630773,25435262:25952256,505283,134348 -k1,153:9436588,25435262:268261 -k1,153:10989354,25435262:268260 -k1,153:12764943,25435262:268261 -k1,153:13645965,25435262:268260 -k1,153:16612999,25435262:268261 -k1,153:18211640,25435262:268260 -k1,153:19131329,25435262:268261 -k1,153:21829009,25435262:268260 -k1,153:24439527,25435262:268261 -k1,153:28112382,25435262:268260 -k1,153:29190013,25435262:268261 -k1,153:30847636,25435262:268260 -k1,153:32583029,25435262:0 -) -(1,154:6630773,26276750:25952256,513147,134348 -k1,153:7893187,26276750:243329 -k1,153:8551314,26276750:243284 -k1,153:11810610,26276750:243329 -k1,153:12523832,26276750:243329 -k1,153:15182818,26276750:243329 -k1,153:16235517,26276750:243329 -k1,153:17497931,26276750:243329 -k1,153:20757227,26276750:243329 -k1,153:22952218,26276750:243329 -k1,153:24637994,26276750:243329 -k1,153:25690692,26276750:243328 -k1,153:28331328,26276750:243329 -k1,153:30291045,26276750:243329 -k1,153:31193666,26276750:243329 -k1,153:32583029,26276750:0 -) -(1,154:6630773,27118238:25952256,513147,134348 -k1,153:9531069,27118238:172032 -k1,153:10894546,27118238:172032 -k1,153:13602166,27118238:172032 -k1,153:14793282,27118238:172031 -k1,153:17013314,27118238:172032 -k1,153:17836774,27118238:172032 -k1,153:20353029,27118238:172032 -k1,153:22347617,27118238:172032 -k1,153:23711094,27118238:172032 -k1,153:25376036,27118238:172032 -k1,153:26614338,27118238:172031 -k1,153:28528972,27118238:172032 -k1,153:29720089,27118238:172032 -k1,153:31923737,27118238:172032 -k1,153:32583029,27118238:0 -) -(1,154:6630773,27959726:25952256,513147,134348 -k1,153:7880030,27959726:230172 -k1,153:11126168,27959726:230171 -k1,153:13139575,27959726:230172 -k1,153:14238099,27959726:230172 -k1,153:15560756,27959726:230172 -k1,153:16888655,27959726:230171 -k1,153:19052139,27959726:230172 -k1,153:22124607,27959726:230172 -k1,153:22970816,27959726:230171 -k1,153:26040008,27959726:230172 -k1,153:27462280,27959726:230172 -k1,153:28560804,27959726:230172 -k1,153:29606243,27959726:230171 -k1,153:30902686,27959726:230172 -k1,153:32583029,27959726:0 -) -(1,154:6630773,28801214:25952256,513147,134348 -k1,153:8699565,28801214:246236 -k1,153:11848392,28801214:246237 -k1,153:13680599,28801214:246236 -k1,153:14609721,28801214:246237 -k1,153:17648446,28801214:246236 -k1,153:20999779,28801214:246237 -k1,153:23316953,28801214:246236 -k1,153:24510841,28801214:246237 -k1,153:25776162,28801214:246236 -k1,153:28331888,28801214:246237 -k1,153:29261009,28801214:246236 -k1,153:32583029,28801214:0 -) -(1,154:6630773,29642702:25952256,513147,134348 -k1,153:10250578,29642702:289265 -k1,153:11464556,29642702:289265 -k1,153:12930848,29642702:289265 -k1,153:13751610,29642702:289265 -k1,153:14988526,29642702:289265 -k1,153:16481032,29642702:289265 -k1,153:18352336,29642702:289265 -k1,153:19293029,29642702:289265 -k1,153:20970347,29642702:289265 -k1,153:23637914,29642702:289265 -k1,153:25505286,29642702:289265 -k1,153:26445979,29642702:289265 -k1,153:27827729,29642702:289265 -k1,153:28531747,29642702:289175 -k1,153:29437050,29642702:289265 -k1,153:30929556,29642702:289265 -k1,153:32583029,29642702:0 -) -(1,154:6630773,30484190:25952256,513147,126483 -k1,153:8314159,30484190:271740 -k1,153:9655448,30484190:271741 -k1,153:10578616,30484190:271740 -k1,153:13293538,30484190:271740 -k1,153:15433709,30484190:271740 -k1,153:16321488,30484190:271741 -k1,153:17181741,30484190:271740 -k1,153:18650168,30484190:271740 -k1,153:20503948,30484190:271741 -k1,153:21307185,30484190:271740 -k1,153:24931092,30484190:271740 -k1,153:27492005,30484190:271740 -k1,153:28782831,30484190:271741 -k1,153:31923737,30484190:271740 -k1,153:32583029,30484190:0 -) -(1,154:6630773,31325678:25952256,505283,134348 -k1,153:9942962,31325678:139591 -k1,153:11476505,31325678:139592 -k1,153:14033719,31325678:139591 -k1,153:15771079,31325678:139592 -k1,153:17195176,31325678:139591 -k1,153:20192137,31325678:139591 -k1,153:21350814,31325678:139592 -k1,153:24204251,31325678:139591 -k1,153:26979046,31325678:139592 -k1,153:29410431,31325678:139591 -k1,153:32583029,31325678:0 -) -(1,154:6630773,32167166:25952256,505283,134348 -g1,153:7976227,32167166 -g1,153:10486911,32167166 -g1,153:11877585,32167166 -g1,153:13095899,32167166 -g1,153:13709971,32167166 -k1,154:32583029,32167166:15857091 -g1,154:32583029,32167166 -) -(1,156:6630773,33008654:25952256,513147,134348 -h1,155:6630773,33008654:983040,0,0 -k1,155:9601174,33008654:153008 -k1,155:10377428,33008654:153007 -k1,155:11308348,33008654:153008 -k1,155:11859815,33008654:153008 -k1,155:15139545,33008654:153007 -k1,155:15824050,33008654:153008 -k1,155:18739401,33008654:153008 -k1,155:19543836,33008654:153007 -k1,155:21398814,33008654:153008 -k1,155:23464163,33008654:153008 -k1,155:25439726,33008654:153007 -k1,155:26007531,33008654:152962 -k1,155:26776577,33008654:153008 -k1,155:28214090,33008654:153007 -k1,155:28825195,33008654:153008 -k1,155:32583029,33008654:0 -) -(1,156:6630773,33850142:25952256,513147,134348 -k1,155:9463662,33850142:231110 -k1,155:10354065,33850142:231111 -k1,155:11604260,33850142:231110 -k1,155:14677666,33850142:231110 -k1,155:16688079,33850142:231111 -k1,155:18870851,33850142:231110 -k1,155:20544409,33850142:231111 -k1,155:22105900,33850142:231110 -k1,155:22988438,33850142:231110 -k1,155:24312034,33850142:231111 -k1,155:24957955,33850142:231078 -k1,155:25840493,33850142:231110 -k1,155:28565249,33850142:231111 -k1,155:31193666,33850142:231110 -k1,155:32583029,33850142:0 -) -(1,156:6630773,34691630:25952256,505283,134348 -k1,155:9323277,34691630:137911 -k1,155:11300783,34691630:137910 -k1,155:12635381,34691630:137911 -k1,155:13950319,34691630:137911 -k1,155:14619726,34691630:137910 -k1,155:15409065,34691630:137911 -k1,155:17617913,34691630:137910 -k1,155:20134126,34691630:137911 -k1,155:20923465,34691630:137911 -k1,155:22153860,34691630:137910 -k1,155:22706553,34691630:137850 -k1,155:23495892,34691630:137911 -k1,155:27067233,34691630:137910 -k1,155:29640462,34691630:137911 -k1,155:32583029,34691630:0 -) -(1,156:6630773,35533118:25952256,513147,126483 -k1,155:7416714,35533118:134513 -k1,155:8570311,35533118:134512 -k1,155:10094187,35533118:134513 -k1,155:12783293,35533118:134513 -k1,155:14109250,35533118:134512 -k1,155:15633126,35533118:134513 -k1,155:19846600,35533118:134513 -k1,155:21647037,35533118:134512 -k1,155:23161738,35533118:134513 -k1,155:26682496,35533118:134513 -k1,155:27965854,35533118:134512 -k1,155:28759659,35533118:134513 -k1,155:32583029,35533118:0 -) -(1,156:6630773,36374606:25952256,513147,134348 -k1,155:9580397,36374606:164999 -k1,155:10936842,36374606:165000 -k1,155:12491204,36374606:164999 -k1,155:15210797,36374606:165000 -k1,155:16476801,36374606:164999 -k1,155:19084982,36374606:164999 -k1,155:20900179,36374606:165000 -k1,155:23803928,36374606:164999 -k1,155:24584965,36374606:164999 -k1,155:26484048,36374606:165000 -k1,155:28042998,36374606:164999 -k1,155:28563858,36374606:165000 -k1,155:30981329,36374606:164999 -k1,156:32583029,36374606:0 -) -(1,156:6630773,37216094:25952256,513147,126483 -k1,155:8438092,37216094:294748 -k1,155:11523363,37216094:294748 -k1,155:12434149,37216094:294748 -k1,155:14237536,37216094:294748 -k1,155:15798440,37216094:294748 -k1,155:17239413,37216094:294748 -k1,155:21265125,37216094:294747 -k1,155:22416429,37216094:294748 -k1,155:23730262,37216094:294748 -k1,155:27530531,37216094:294748 -k1,155:28484571,37216094:294748 -k1,155:29798404,37216094:294748 -k1,155:32583029,37216094:0 -) -(1,156:6630773,38057582:25952256,505283,134348 -k1,155:8388230,38057582:244231 -k1,155:9733466,38057582:244231 -k1,155:13937382,38057582:244231 -k1,155:17221172,38057582:244230 -k1,155:18081441,38057582:244231 -k1,155:20314034,38057582:244231 -k1,155:22414900,38057582:244231 -k1,155:23805356,38057582:244231 -k1,155:24665625,38057582:244231 -k1,155:27413330,38057582:244230 -k1,155:29176030,38057582:244231 -k1,155:31478747,38057582:244231 -k1,155:32583029,38057582:0 -) -(1,156:6630773,38899070:25952256,513147,126483 -g1,155:7577768,38899070 -g1,155:10616017,38899070 -g1,155:11466674,38899070 -g1,155:14443974,38899070 -g1,155:15259241,38899070 -g1,155:16477555,38899070 -k1,156:32583029,38899070:13944752 -g1,156:32583029,38899070 -) -(1,158:6630773,39740558:25952256,513147,134348 -h1,157:6630773,39740558:983040,0,0 -k1,157:11241496,39740558:222432 -k1,157:13215704,39740558:222431 -k1,157:16210309,39740558:222432 -k1,157:17092032,39740558:222431 -k1,157:20380238,39740558:222432 -k1,157:21794114,39740558:222431 -k1,157:26634868,39740558:222432 -k1,157:29495778,39740558:222431 -k1,157:31329740,39740558:222432 -k1,157:31966991,39740558:222408 -k1,157:32583029,39740558:0 -) -(1,158:6630773,40582046:25952256,513147,134348 -k1,157:9242144,40582046:172121 -k1,157:11236822,40582046:172122 -k1,157:14262381,40582046:172121 -k1,157:15117387,40582046:172121 -k1,157:16678871,40582046:172121 -k1,157:19579257,40582046:172122 -k1,157:22686080,40582046:172121 -k1,157:26163182,40582046:172121 -k1,157:27401574,40582046:172121 -k1,157:28189734,40582046:172122 -k1,157:30722462,40582046:172121 -k1,157:32583029,40582046:0 -) -(1,158:6630773,41423534:25952256,513147,134348 -k1,157:7544891,41423534:262690 -k1,157:11050302,41423534:262690 -k1,157:12405478,41423534:262691 -k1,157:13126265,41423534:262690 -k1,157:14004993,41423534:262690 -k1,157:16429060,41423534:262690 -k1,157:17639401,41423534:262690 -k1,157:21547203,41423534:262690 -k1,157:23199257,41423534:262691 -k1,157:26162686,41423534:262690 -k1,157:27108261,41423534:262690 -k1,157:31563944,41423534:262690 -k1,157:32583029,41423534:0 -) -(1,158:6630773,42265022:25952256,513147,126483 -k1,157:8662192,42265022:148570 -k1,157:10200125,42265022:148570 -k1,157:12903288,42265022:148570 -k1,157:15998357,42265022:148570 -k1,157:16798355,42265022:148570 -k1,157:19089953,42265022:148571 -k1,157:24147825,42265022:148570 -k1,157:27093472,42265022:148570 -k1,157:27858080,42265022:148570 -k1,157:29025735,42265022:148570 -k1,157:32583029,42265022:0 -) -(1,158:6630773,43106510:25952256,513147,134348 -k1,157:8018346,43106510:196128 -k1,157:9500289,43106510:196127 -k1,157:10312455,43106510:196128 -k1,157:12210552,43106510:196127 -k1,157:14314433,43106510:196128 -k1,157:15847494,43106510:196127 -k1,157:17309778,43106510:196128 -k1,157:17964002,43106510:196127 -k1,157:20030528,43106510:196128 -k1,157:20878083,43106510:196127 -k1,157:22685741,43106510:196128 -k1,157:23900953,43106510:196127 -k1,157:24511921,43106510:196125 -k1,157:27550344,43106510:196127 -k1,157:31015408,43106510:196128 -k1,157:32583029,43106510:0 -) -(1,158:6630773,43947998:25952256,513147,126483 -k1,157:8302268,43947998:282132 -k1,157:11138994,43947998:282133 -k1,157:12612571,43947998:282132 -k1,157:15921812,43947998:282133 -k1,157:18036331,43947998:282132 -k1,157:19310024,43947998:282133 -k1,157:20877972,43947998:282132 -k1,157:22911881,43947998:282132 -k1,157:24524395,43947998:282133 -k1,157:25798087,43947998:282132 -k1,157:28414612,43947998:282133 -k1,157:31189078,43947998:282132 -k1,157:32583029,43947998:0 -) -(1,158:6630773,44789486:25952256,513147,134348 -k1,157:9928029,44789486:213132 -k1,157:13304585,44789486:213133 -k1,157:14709162,44789486:213132 -k1,157:16839878,44789486:213133 -k1,157:17704438,44789486:213132 -k1,157:19975401,44789486:213133 -k1,157:21756154,44789486:213132 -k1,157:23671256,44789486:213132 -k1,157:26643455,44789486:213133 -k1,157:27508015,44789486:213132 -k1,157:28309661,44789486:213133 -k1,157:30357146,44789486:213132 -k1,157:31193526,44789486:213133 -k1,157:32184570,44789486:213132 -k1,157:32583029,44789486:0 -) -] -(1,159:32583029,45706769:0,0,0 -g1,159:32583029,45706769 -) -) -] -(1,159:6630773,47279633:25952256,347341,3931 -(1,159:6630773,47279633:25952256,347341,3931 -(1,159:6630773,47279633:0,0,0 -v1,159:6630773,47279633:0,0,0 -) -g1,159:6830002,47279633 -k1,159:31860822,47279633:25030820 -) -) -] -(1,159:4262630,4025873:0,0,0 -[1,159:-473656,4025873:0,0,0 -(1,159:-473656,-710413:0,0,0 -(1,159:-473656,-710413:0,0,0 -g1,159:-473656,-710413 -) -g1,159:-473656,-710413 -) ] ) ] -!19167 -}12 +!15104 +}16 !11 -{13 -[1,168:4262630,47279633:28320399,43253760,0 -(1,168:4262630,4025873:0,0,0 -[1,168:-473656,4025873:0,0,0 -(1,168:-473656,-710413:0,0,0 -(1,168:-473656,-644877:0,0,0 -k1,168:-473656,-644877:-65536 +{17 +[1,252:4262630,47279633:28320399,43253760,0 +(1,252:4262630,4025873:0,0,0 +[1,252:-473656,4025873:0,0,0 +(1,252:-473656,-710413:0,0,0 +(1,252:-473656,-644877:0,0,0 +k1,252:-473656,-644877:-65536 ) -(1,168:-473656,4736287:0,0,0 -k1,168:-473656,4736287:5209943 +(1,252:-473656,4736287:0,0,0 +k1,252:-473656,4736287:5209943 ) -g1,168:-473656,-710413 +g1,252:-473656,-710413 ) ] ) -[1,168:6630773,47279633:25952256,43253760,0 -[1,168:6630773,4812305:25952256,786432,0 -(1,168:6630773,4812305:25952256,513147,126483 -(1,168:6630773,4812305:25952256,513147,126483 -g1,168:3078558,4812305 -[1,168:3078558,4812305:0,0,0 -(1,168:3078558,2439708:0,1703936,0 -k1,168:1358238,2439708:-1720320 -(1,144:1358238,2439708:1720320,1703936,0 -(1,144:1358238,2439708:1179648,16384,0 -r1,168:2537886,2439708:1179648,16384,0 +[1,252:6630773,47279633:25952256,43253760,0 +[1,252:6630773,4812305:25952256,786432,0 +(1,252:6630773,4812305:25952256,505283,134348 +(1,252:6630773,4812305:25952256,505283,134348 +g1,252:3078558,4812305 +[1,252:3078558,4812305:0,0,0 +(1,252:3078558,2439708:0,1703936,0 +k1,252:1358238,2439708:-1720320 +(1,218:1358238,2439708:1720320,1703936,0 +(1,218:1358238,2439708:1179648,16384,0 +r1,252:2537886,2439708:1179648,16384,0 ) -g1,144:3062174,2439708 -(1,144:3062174,2439708:16384,1703936,0 -[1,144:3062174,2439708:25952256,1703936,0 -(1,144:3062174,1915420:25952256,1179648,0 -(1,144:3062174,1915420:16384,1179648,0 -r1,168:3078558,1915420:16384,1179648,0 +g1,218:3062174,2439708 +(1,218:3062174,2439708:16384,1703936,0 +[1,218:3062174,2439708:25952256,1703936,0 +(1,218:3062174,1915420:25952256,1179648,0 +(1,218:3062174,1915420:16384,1179648,0 +r1,252:3078558,1915420:16384,1179648,0 ) -k1,144:29014430,1915420:25935872 -g1,144:29014430,1915420 +k1,218:29014430,1915420:25935872 +g1,218:29014430,1915420 ) ] ) ) ) ] -[1,168:3078558,4812305:0,0,0 -(1,168:3078558,2439708:0,1703936,0 -g1,168:29030814,2439708 -g1,168:36135244,2439708 -(1,144:36135244,2439708:1720320,1703936,0 -(1,144:36135244,2439708:16384,1703936,0 -[1,144:36135244,2439708:25952256,1703936,0 -(1,144:36135244,1915420:25952256,1179648,0 -(1,144:36135244,1915420:16384,1179648,0 -r1,168:36151628,1915420:16384,1179648,0 +[1,252:3078558,4812305:0,0,0 +(1,252:3078558,2439708:0,1703936,0 +g1,252:29030814,2439708 +g1,252:36135244,2439708 +(1,218:36135244,2439708:1720320,1703936,0 +(1,218:36135244,2439708:16384,1703936,0 +[1,218:36135244,2439708:25952256,1703936,0 +(1,218:36135244,1915420:25952256,1179648,0 +(1,218:36135244,1915420:16384,1179648,0 +r1,252:36151628,1915420:16384,1179648,0 ) -k1,144:62087500,1915420:25935872 -g1,144:62087500,1915420 +k1,218:62087500,1915420:25935872 +g1,218:62087500,1915420 ) ] ) -g1,144:36675916,2439708 -(1,144:36675916,2439708:1179648,16384,0 -r1,168:37855564,2439708:1179648,16384,0 +g1,218:36675916,2439708 +(1,218:36675916,2439708:1179648,16384,0 +r1,252:37855564,2439708:1179648,16384,0 ) ) -k1,168:3078556,2439708:-34777008 +k1,252:3078556,2439708:-34777008 ) ] -[1,168:3078558,4812305:0,0,0 -(1,168:3078558,49800853:0,16384,2228224 -k1,168:1358238,49800853:-1720320 -(1,144:1358238,49800853:1720320,16384,2228224 -(1,144:1358238,49800853:1179648,16384,0 -r1,168:2537886,49800853:1179648,16384,0 -) -g1,144:3062174,49800853 -(1,144:3062174,52029077:16384,1703936,0 -[1,144:3062174,52029077:25952256,1703936,0 -(1,144:3062174,51504789:25952256,1179648,0 -(1,144:3062174,51504789:16384,1179648,0 -r1,168:3078558,51504789:16384,1179648,0 +[1,252:3078558,4812305:0,0,0 +(1,252:3078558,49800853:0,16384,2228224 +k1,252:1358238,49800853:-1720320 +(1,218:1358238,49800853:1720320,16384,2228224 +(1,218:1358238,49800853:1179648,16384,0 +r1,252:2537886,49800853:1179648,16384,0 ) -k1,144:29014430,51504789:25935872 -g1,144:29014430,51504789 +g1,218:3062174,49800853 +(1,218:3062174,52029077:16384,1703936,0 +[1,218:3062174,52029077:25952256,1703936,0 +(1,218:3062174,51504789:25952256,1179648,0 +(1,218:3062174,51504789:16384,1179648,0 +r1,252:3078558,51504789:16384,1179648,0 ) -] -) -) -) -] -[1,168:3078558,4812305:0,0,0 -(1,168:3078558,49800853:0,16384,2228224 -g1,168:29030814,49800853 -g1,168:36135244,49800853 -(1,144:36135244,49800853:1720320,16384,2228224 -(1,144:36135244,52029077:16384,1703936,0 -[1,144:36135244,52029077:25952256,1703936,0 -(1,144:36135244,51504789:25952256,1179648,0 -(1,144:36135244,51504789:16384,1179648,0 -r1,168:36151628,51504789:16384,1179648,0 -) -k1,144:62087500,51504789:25935872 -g1,144:62087500,51504789 -) -] -) -g1,144:36675916,49800853 -(1,144:36675916,49800853:1179648,16384,0 -r1,168:37855564,49800853:1179648,16384,0 -) -) -k1,168:3078556,49800853:-34777008 -) -] -g1,168:6630773,4812305 -k1,168:30249947,4812305:22695772 -) -) -] -[1,168:6630773,45706769:25952256,40108032,0 -(1,168:6630773,45706769:25952256,40108032,0 -(1,168:6630773,45706769:0,0,0 -g1,168:6630773,45706769 -) -[1,168:6630773,45706769:25952256,40108032,0 -(1,158:6630773,6254097:25952256,505283,134348 -k1,157:9986522,6254097:229026 -k1,157:10747046,6254097:229027 -k1,157:13262623,6254097:229026 -k1,157:14885600,6254097:229026 -k1,157:16811354,6254097:229027 -k1,157:19418682,6254097:229026 -k1,157:20263746,6254097:229026 -k1,157:22149523,6254097:229027 -k1,157:23029977,6254097:229026 -k1,157:24929516,6254097:229026 -k1,157:26625239,6254097:229027 -k1,157:27540427,6254097:229026 -k1,157:28125313,6254097:229026 -k1,157:29580519,6254097:229027 -k1,157:31391584,6254097:229026 -k1,157:32583029,6254097:0 -) -(1,158:6630773,7095585:25952256,513147,7863 -g1,157:7516164,7095585 -g1,157:8071253,7095585 -k1,158:32583030,7095585:21358840 -g1,158:32583030,7095585 -) -(1,160:6630773,7937073:25952256,513147,134348 -h1,159:6630773,7937073:983040,0,0 -k1,159:8344797,7937073:243396 -k1,159:11430533,7937073:243440 -k1,159:12205471,7937073:243441 -k1,159:12804771,7937073:243440 -k1,159:15294131,7937073:243441 -k1,159:16196863,7937073:243440 -k1,159:21569806,7937073:243440 -k1,159:23433297,7937073:243441 -k1,159:26508548,7937073:243440 -k1,159:27943434,7937073:243441 -k1,159:31591469,7937073:243440 -k1,159:32583029,7937073:0 -) -(1,160:6630773,8778561:25952256,505283,134348 -k1,159:8646791,8778561:161349 -k1,159:9617511,8778561:161350 -k1,159:13697913,8778561:161349 -k1,159:15143769,8778561:161350 -k1,159:16296678,8778561:161349 -k1,159:18615472,8778561:161349 -k1,159:20809749,8778561:161350 -k1,159:25323344,8778561:161349 -k1,159:28657292,8778561:161350 -k1,159:30010086,8778561:161349 -k1,159:32583029,8778561:0 -) -(1,160:6630773,9620049:25952256,513147,134348 -k1,159:7490114,9620049:207913 -k1,159:10770355,9620049:207913 -k1,159:11637560,9620049:207913 -k1,159:12611588,9620049:207912 -k1,159:14418579,9620049:207913 -k1,159:15817937,9620049:207913 -k1,159:20222776,9620049:207913 -k1,159:22127416,9620049:207913 -k1,159:26254382,9620049:207913 -k1,159:27453854,9620049:207912 -k1,159:30739993,9620049:207913 -k1,159:31563944,9620049:207913 -k1,159:32583029,9620049:0 -) -(1,160:6630773,10461537:25952256,505283,134348 -k1,159:8368017,10461537:155205 -k1,159:11203645,10461537:155205 -k1,159:12752801,10461537:155205 -k1,159:14416645,10461537:155205 -k1,159:19628608,10461537:155205 -k1,159:20399851,10461537:155205 -k1,159:21574141,10461537:155205 -k1,159:22174291,10461537:155161 -k1,159:25345463,10461537:155205 -k1,159:27317326,10461537:155205 -k1,159:31391584,10461537:155205 -k1,159:32583029,10461537:0 -) -(1,160:6630773,11303025:25952256,513147,134348 -k1,159:11215235,11303025:232216 -k1,159:14452932,11303025:232216 -k1,159:17050997,11303025:232215 -k1,159:18302298,11303025:232216 -k1,159:20361002,11303025:232216 -k1,159:21252510,11303025:232216 -k1,159:22687966,11303025:232215 -k1,159:24675892,11303025:232216 -k1,159:25899668,11303025:232216 -k1,159:28704827,11303025:232216 -k1,159:29588470,11303025:232215 -k1,159:31391584,11303025:232216 -k1,159:32583029,11303025:0 -) -(1,160:6630773,12144513:25952256,513147,126483 -k1,159:9518016,12144513:200922 -k1,159:11699437,12144513:200923 -k1,159:12559651,12144513:200922 -k1,159:15519639,12144513:200922 -k1,159:17715477,12144513:200922 -k1,159:18567828,12144513:200923 -k1,159:19516516,12144513:200922 -k1,159:21773958,12144513:200922 -k1,159:25687495,12144513:200922 -k1,159:26516253,12144513:200923 -k1,159:28419145,12144513:200922 -k1,159:30748676,12144513:200922 -k1,159:32583029,12144513:0 -) -(1,160:6630773,12986001:25952256,505283,134348 -k1,159:7453300,12986001:199280 -k1,159:8430492,12986001:199280 -k1,159:9028231,12986001:199280 -k1,159:12354233,12986001:199279 -k1,159:14060841,12986001:199280 -k1,159:14872883,12986001:199280 -k1,159:17770936,12986001:199280 -k1,159:19161661,12986001:199280 -k1,159:22877603,12986001:199280 -k1,159:27486144,12986001:199279 -k1,159:28288355,12986001:199280 -k1,159:29473296,12986001:199280 -k1,159:31563944,12986001:199280 -k1,159:32583029,12986001:0 -) -(1,160:6630773,13827489:25952256,513147,134348 -k1,159:7969022,13827489:245764 -k1,159:8881942,13827489:245764 -k1,159:9542502,13827489:245717 -k1,159:10439694,13827489:245764 -k1,159:13687662,13827489:245764 -k1,159:14952511,13827489:245764 -k1,159:18113972,13827489:245764 -k1,159:19019027,13827489:245763 -k1,159:20654154,13827489:245764 -k1,159:25329496,13827489:245764 -k1,159:28555837,13827489:245764 -k1,159:29820686,13827489:245764 -k1,159:32583029,13827489:0 -) -(1,160:6630773,14668977:25952256,513147,134348 -k1,159:8512371,14668977:196012 -k1,159:11635221,14668977:196012 -k1,159:13398854,14668977:196012 -k1,159:14984229,14668977:196012 -k1,159:16888765,14668977:196012 -k1,159:18276223,14668977:196013 -k1,159:22116692,14668977:196012 -k1,159:22964132,14668977:196012 -k1,159:24179229,14668977:196012 -k1,159:27915496,14668977:196012 -k1,159:28770800,14668977:196012 -k1,160:32583029,14668977:0 -) -(1,160:6630773,15510465:25952256,505283,126483 -g1,159:9029390,15510465 -g1,159:13084102,15510465 -g1,159:14474776,15510465 -g1,159:16182644,15510465 -k1,160:32583029,15510465:11400643 -g1,160:32583029,15510465 -) -(1,162:6630773,16351953:25952256,513147,134348 -h1,161:6630773,16351953:983040,0,0 -k1,161:9631229,16351953:225662 -k1,161:10212752,16351953:225663 -k1,161:13280710,16351953:225662 -k1,161:15924651,16351953:225662 -k1,161:16681811,16351953:225663 -k1,161:17926558,16351953:225662 -k1,161:19753920,16351953:225662 -k1,161:22532210,16351953:225663 -k1,161:23995847,16351953:225662 -k1,161:24880801,16351953:225662 -k1,161:27708243,16351953:225663 -k1,161:28565672,16351953:225662 -k1,161:29551552,16351953:225662 -k1,161:31512608,16351953:225663 -k1,161:32370037,16351953:225662 -k1,161:32583029,16351953:0 -) -(1,162:6630773,17193441:25952256,505283,134348 -k1,161:8513975,17193441:145187 -k1,161:11147565,17193441:145188 -k1,161:13868972,17193441:145187 -k1,161:16445546,17193441:145188 -k1,161:17782178,17193441:145187 -k1,161:20450501,17193441:145187 -k1,161:22757066,17193441:145188 -k1,161:23585138,17193441:145187 -k1,161:26976323,17193441:145187 -k1,161:28955864,17193441:145188 -k1,161:29724298,17193441:145187 -k1,161:30647398,17193441:145188 -k1,161:31191044,17193441:145187 -k1,162:32583029,17193441:0 -) -(1,162:6630773,18034929:25952256,505283,134348 -k1,161:8734230,18034929:163591 -k1,161:11754534,18034929:163590 -k1,161:14519904,18034929:163591 -k1,161:15702580,18034929:163591 -k1,161:16280978,18034929:163555 -k1,161:19286864,18034929:163590 -k1,161:20066493,18034929:163591 -k1,161:20585944,18034929:163591 -k1,161:21987509,18034929:163590 -k1,161:25872890,18034929:163591 -k1,161:26687909,18034929:163591 -k1,161:28181880,18034929:163590 -k1,161:30971499,18034929:163591 -k1,161:32583029,18034929:0 -) -(1,162:6630773,18876417:25952256,505283,134348 -k1,161:7445342,18876417:163141 -k1,161:9628958,18876417:163141 -k1,161:11172286,18876417:163140 -k1,161:12931884,18876417:163141 -k1,161:14161296,18876417:163141 -k1,161:15873053,18876417:163141 -k1,161:17055279,18876417:163141 -k1,161:18804390,18876417:163140 -k1,161:20132761,18876417:163141 -k1,161:22434342,18876417:163141 -k1,161:23359011,18876417:163141 -k1,161:26268111,18876417:163141 -k1,161:27082679,18876417:163140 -k1,161:29381638,18876417:163141 -k1,161:31391584,18876417:163141 -k1,161:32583029,18876417:0 -) -(1,162:6630773,19717905:25952256,513147,134348 -k1,161:8735602,19717905:208217 -k1,161:9595247,19717905:208217 -k1,161:11367808,19717905:208217 -k1,161:13124642,19717905:208218 -k1,161:14713047,19717905:208217 -k1,161:16469880,19717905:208217 -k1,161:17329525,19717905:208217 -k1,161:18552239,19717905:208217 -k1,161:20269095,19717905:208217 -k1,161:23065329,19717905:208217 -k1,161:24047527,19717905:208218 -k1,161:26538363,19717905:208217 -k1,161:28462968,19717905:208217 -k1,161:31297213,19717905:208217 -k1,161:32583029,19717905:0 -) -(1,162:6630773,20559393:25952256,513147,134348 -k1,161:9098586,20559393:245487 -k1,161:12206686,20559393:245487 -k1,161:15010699,20559393:245487 -k1,161:18292468,20559393:245486 -k1,161:19610124,20559393:245487 -k1,161:21235799,20559393:245487 -k1,161:22472846,20559393:245487 -k1,161:23784604,20559393:245487 -k1,161:26103650,20559393:245487 -k1,161:26704996,20559393:245486 -k1,161:30743707,20559393:245487 -k1,161:31923737,20559393:245487 -k1,161:32583029,20559393:0 -) -(1,162:6630773,21400881:25952256,513147,134348 -k1,161:8410512,21400881:193768 -k1,161:9750505,21400881:193768 -k1,161:11642311,21400881:193768 -k1,161:14437858,21400881:193768 -k1,161:14987486,21400881:193768 -k1,161:17422585,21400881:193768 -k1,161:20458650,21400881:193769 -k1,161:21265180,21400881:193768 -k1,161:23705522,21400881:193768 -k1,161:26238270,21400881:193768 -k1,161:27091330,21400881:193768 -k1,161:30204727,21400881:193768 -k1,161:32583029,21400881:0 -) -(1,162:6630773,22242369:25952256,513147,134348 -k1,161:7992524,22242369:229289 -k1,161:9634113,22242369:229288 -k1,161:11054847,22242369:229289 -k1,161:12402179,22242369:229288 -k1,161:14301325,22242369:229289 -k1,161:15722058,22242369:229288 -k1,161:18278530,22242369:229289 -k1,161:19167110,22242369:229288 -k1,161:22407123,22242369:229289 -k1,161:25014713,22242369:229288 -k1,161:26376464,22242369:229289 -k1,161:28220559,22242369:229288 -k1,161:29641293,22242369:229289 -k1,161:30776944,22242369:229288 -k1,161:31657661,22242369:229289 -k1,162:32583029,22242369:0 -) -(1,162:6630773,23083857:25952256,505283,134348 -k1,161:8552511,23083857:221734 -k1,161:9189065,23083857:221711 -k1,161:10906986,23083857:221734 -k1,161:14645381,23083857:221733 -k1,161:15676485,23083857:221734 -k1,161:16254079,23083857:221734 -k1,161:19725743,23083857:221734 -k1,161:20160446,23083857:221711 -k1,161:21197448,23083857:221734 -k1,161:23849256,23083857:221733 -k1,161:28133567,23083857:221734 -k1,161:29546746,23083857:221734 -k1,161:32583029,23083857:0 -) -(1,162:6630773,23925345:25952256,505283,134348 -k1,161:7501697,23925345:184762 -k1,161:12341481,23925345:184762 -k1,161:13856624,23925345:184762 -k1,161:14486361,23925345:184748 -k1,161:16597881,23925345:184762 -k1,161:18971546,23925345:184762 -k1,161:20874662,23925345:184762 -k1,161:22453375,23925345:184762 -k1,161:23426536,23925345:184763 -k1,161:24877454,23925345:184762 -k1,161:27996918,23925345:184762 -k1,161:29200765,23925345:184762 -k1,161:32370037,23925345:184762 -k1,161:32583029,23925345:0 -) -(1,162:6630773,24766833:25952256,513147,134348 -k1,161:10058212,24766833:156537 -k1,161:10830787,24766833:156537 -k1,161:12190565,24766833:156537 -k1,161:13929142,24766833:156538 -k1,161:14617176,24766833:156537 -k1,161:15721364,24766833:156537 -k1,161:18256203,24766833:156537 -k1,161:19064168,24766833:156537 -k1,161:20563538,24766833:156537 -k1,161:22114026,24766833:156537 -k1,161:23289649,24766833:156538 -k1,161:26671213,24766833:156537 -k1,161:29819469,24766833:156537 -k1,161:31167451,24766833:156537 -k1,162:32583029,24766833:0 -) -(1,162:6630773,25608321:25952256,513147,134348 -k1,161:8807427,25608321:223026 -k1,161:10675407,25608321:223026 -k1,161:12711158,25608321:223025 -k1,161:13585612,25608321:223026 -k1,161:15074794,25608321:223026 -k1,161:16364091,25608321:223026 -k1,161:17348644,25608321:223025 -k1,161:21128309,25608321:223026 -k1,161:22370420,25608321:223026 -k1,161:25264693,25608321:223026 -k1,161:27687106,25608321:223025 -k1,161:28929217,25608321:223026 -k1,161:29567062,25608321:223002 -k1,161:32583029,25608321:0 -) -(1,162:6630773,26449809:25952256,513147,134348 -k1,161:9124922,26449809:155169 -k1,161:9939383,26449809:155169 -k1,161:12508898,26449809:155169 -k1,161:14402082,26449809:155169 -k1,161:15576336,26449809:155169 -k1,161:18697009,26449809:155169 -k1,161:20712089,26449809:155168 -k1,161:21814909,26449809:155169 -k1,161:22989163,26449809:155169 -k1,161:24450465,26449809:155169 -k1,161:27951902,26449809:155169 -k1,161:28766363,26449809:155169 -k1,161:31299834,26449809:155169 -k1,161:32583029,26449809:0 -) -(1,162:6630773,27291297:25952256,505283,134348 -k1,161:7497159,27291297:214958 -k1,161:8300630,27291297:214958 -k1,161:9534673,27291297:214958 -k1,161:12825891,27291297:214958 -k1,161:14173311,27291297:214958 -k1,161:15731102,27291297:214958 -k1,161:17149300,27291297:214957 -k1,161:18773282,27291297:214958 -k1,161:21951123,27291297:214958 -k1,161:24752787,27291297:214958 -k1,161:27526271,27291297:214958 -k1,161:28760314,27291297:214958 -k1,161:31966991,27291297:214958 -k1,161:32583029,27291297:0 -) -(1,162:6630773,28132785:25952256,513147,134348 -k1,161:8712505,28132785:247379 -k1,161:9583131,28132785:247379 -k1,161:10608423,28132785:247380 -k1,161:11254261,28132785:247379 -k1,161:14628363,28132785:247379 -k1,161:15491780,28132785:247379 -k1,161:16095019,28132785:247379 -k1,161:18235078,28132785:247379 -k1,161:19141750,28132785:247380 -k1,161:21123212,28132785:247379 -k1,161:22053476,28132785:247379 -k1,161:22916893,28132785:247379 -k1,161:24719441,28132785:247379 -k1,161:25498318,28132785:247380 -k1,161:28955650,28132785:247379 -k1,161:30222114,28132785:247379 -k1,161:32051532,28132785:247379 -k1,161:32583029,28132785:0 -) -(1,162:6630773,28974273:25952256,513147,134348 -g1,161:9686716,28974273 -g1,161:10537373,28974273 -g1,161:11484368,28974273 -g1,161:13660818,28974273 -g1,161:15145863,28974273 -g1,161:15961130,28974273 -g1,161:17179444,28974273 -g1,161:19908363,28974273 -g1,161:20766884,28974273 -g1,161:22459679,28974273 -k1,162:32583029,28974273:7423267 -g1,162:32583029,28974273 -) -(1,164:6630773,29815761:25952256,513147,134348 -h1,163:6630773,29815761:983040,0,0 -k1,163:9193832,29815761:199175 -k1,163:11685456,29815761:199175 -k1,163:14125961,29815761:199174 -k1,163:16561880,29815761:199175 -k1,163:19099380,29815761:199175 -k1,163:21869532,29815761:199175 -k1,163:23353212,29815761:199174 -k1,163:24990902,29815761:199175 -k1,163:26852725,29815761:199175 -k1,163:27667938,29815761:199175 -k1,163:28281955,29815761:199174 -k1,163:29672575,29815761:199175 -k1,163:32583029,29815761:0 -) -(1,164:6630773,30657249:25952256,513147,134348 -k1,163:10122149,30657249:227683 -k1,163:11804731,30657249:227683 -k1,163:13165531,30657249:227682 -k1,163:14889401,30657249:227683 -k1,163:17418053,30657249:227683 -k1,163:19213357,30657249:227683 -k1,163:20460124,30657249:227682 -k1,163:21993940,30657249:227683 -k1,163:24458367,30657249:227683 -k1,163:25877495,30657249:227683 -k1,163:28696471,30657249:227682 -k1,163:31510860,30657249:227683 -k1,163:32583029,30657249:0 -) -(1,164:6630773,31498737:25952256,505283,134348 -k1,163:10928689,31498737:186187 -k1,163:13109793,31498737:186188 -k1,163:14580486,31498737:186187 -k1,163:16458814,31498737:186188 -k1,163:19636720,31498737:186187 -k1,163:22721565,31498737:186188 -k1,163:25943380,31498737:186187 -k1,163:26812453,31498737:186188 -k1,163:30072934,31498737:186187 -k1,163:31450567,31498737:186188 -k1,163:32583029,31498737:0 -) -(1,164:6630773,32340225:25952256,513147,134348 -k1,163:10099773,32340225:203341 -k1,163:11503733,32340225:203340 -k1,163:13852067,32340225:203341 -$1,163:14059161,32340225 -$1,163:14580172,32340225 -k1,163:14783513,32340225:203341 -k1,163:16736664,32340225:203340 -k1,163:19604044,32340225:203341 -k1,163:20474541,32340225:203341 -k1,163:21092720,32340225:203336 -k1,163:22771276,32340225:203341 -k1,163:26288116,32340225:203340 -k1,163:31089463,32340225:203341 -k1,163:32583029,32340225:0 -) -(1,164:6630773,33181713:25952256,513147,134348 -k1,163:7471873,33181713:154938 -k1,163:8645896,33181713:154938 -k1,163:10084029,33181713:154938 -k1,163:11628986,33181713:154938 -k1,163:14704208,33181713:154938 -k1,163:17724379,33181713:154937 -k1,163:19354532,33181713:154938 -k1,163:20795286,33181713:154938 -k1,163:23379644,33181713:154938 -k1,163:26523024,33181713:154938 -k1,163:27961157,33181713:154938 -k1,163:30895477,33181713:154938 -k1,164:32583029,33181713:0 -) -(1,164:6630773,34023201:25952256,513147,134348 -k1,163:8348908,34023201:235711 -k1,163:10152240,34023201:235711 -k1,163:12766253,34023201:235711 -k1,163:14193409,34023201:235711 -k1,163:17457539,34023201:235711 -k1,163:18794255,34023201:235711 -k1,163:22655417,34023201:235710 -k1,163:24583268,34023201:235711 -k1,163:26300093,34023201:235711 -k1,163:27151842,34023201:235711 -k1,163:28406638,34023201:235711 -k1,163:31391584,34023201:235711 -k1,163:32583029,34023201:0 -) -(1,164:6630773,34864689:25952256,505283,126483 -g1,163:9189953,34864689 -k1,164:32583028,34864689:19156828 -g1,164:32583028,34864689 -) -(1,166:6630773,35706177:25952256,513147,134348 -h1,165:6630773,35706177:983040,0,0 -k1,165:8653635,35706177:137391 -k1,165:12018020,35706177:137392 -k1,165:14396087,35706177:137391 -k1,165:15064976,35706177:137392 -k1,165:15818405,35706177:137391 -k1,165:16936871,35706177:137392 -k1,165:18500981,35706177:137391 -k1,165:20460929,35706177:137392 -k1,165:22290460,35706177:137391 -k1,165:23087144,35706177:137392 -k1,165:24243620,35706177:137391 -k1,165:27291466,35706177:137392 -k1,165:28044895,35706177:137391 -k1,165:29201372,35706177:137392 -k1,165:32583029,35706177:0 -) -(1,166:6630773,36547665:25952256,513147,134348 -k1,165:8148810,36547665:137193 -k1,165:10526679,36547665:137193 -k1,165:11195369,36547665:137193 -k1,165:14108666,36547665:137192 -k1,165:15847559,36547665:137193 -k1,165:18610124,36547665:137193 -k1,165:19363355,36547665:137193 -k1,165:22040068,36547665:137193 -h1,165:22438527,36547665:0,0,0 -k1,165:22749390,36547665:137193 -k1,165:23099513,36547665:137131 -k1,165:24711921,36547665:137193 -k1,165:27405017,36547665:137192 -k1,165:28303738,36547665:137193 -k1,165:29422005,36547665:137193 -k1,165:30889579,36547665:137193 -k1,166:32583029,36547665:0 -) -(1,166:6630773,37389153:25952256,513147,134348 -k1,165:8773036,37389153:209606 -k1,165:10174087,37389153:209606 -k1,165:11951314,37389153:209606 -k1,165:14816439,37389153:209606 -k1,165:16728015,37389153:209606 -k1,165:18822436,37389153:209606 -k1,165:22012618,37389153:209605 -k1,165:24994397,37389153:209606 -k1,165:25820041,37389153:209606 -k1,165:27048732,37389153:209606 -k1,165:28276767,37389153:209606 -k1,165:31298523,37389153:209606 -k1,165:32583029,37389153:0 -) -(1,166:6630773,38230641:25952256,513147,134348 -k1,165:7920045,38230641:270187 -k1,165:9438693,38230641:270187 -k1,165:10368172,38230641:270187 -k1,165:14770404,38230641:270187 -k1,165:16232036,38230641:270187 -k1,165:17521307,38230641:270186 -k1,165:20968024,38230641:270187 -k1,165:21897503,38230641:270187 -k1,165:26651663,38230641:270187 -k1,165:29492827,38230641:270187 -k1,165:30867296,38230641:270187 -k1,165:32583029,38230641:0 -) -(1,166:6630773,39072129:25952256,513147,134348 -k1,165:8561313,39072129:238400 -k1,165:9459004,39072129:238399 -k1,165:10716489,39072129:238400 -k1,165:13782112,39072129:238400 -k1,165:16930965,39072129:238399 -k1,165:19653180,39072129:238400 -k1,165:20839231,39072129:238400 -k1,165:22788776,39072129:238400 -k1,165:23974826,39072129:238399 -k1,165:26163577,39072129:238400 -k1,165:27791340,39072129:238400 -k1,165:30584332,39072129:238399 -k1,165:31354229,39072129:238400 -k1,165:32583029,39072129:0 -) -(1,166:6630773,39913617:25952256,513147,126483 -k1,165:8002945,39913617:215462 -k1,165:10263130,39913617:215462 -k1,165:11137884,39913617:215462 -k1,165:12861986,39913617:215463 -k1,165:16771712,39913617:215462 -k1,165:17615009,39913617:215462 -k1,165:19532441,39913617:215462 -k1,165:21876512,39913617:215462 -k1,165:23835887,39913617:215462 -k1,165:26395573,39913617:215463 -k1,165:27802480,39913617:215462 -k1,165:30004994,39913617:215462 -k1,165:31931601,39913617:215462 -k1,165:32583029,39913617:0 -) -(1,166:6630773,40755105:25952256,513147,134348 -k1,165:8767667,40755105:186543 -k1,165:10157452,40755105:186544 -k1,165:11926034,40755105:186543 -k1,165:12644075,40755105:186544 -k1,165:15651943,40755105:186543 -k1,165:16308380,40755105:186544 -k1,165:18470178,40755105:186543 -k1,165:19308150,40755105:186544 -k1,165:20462004,40755105:186543 -k1,165:21933054,40755105:186544 -k1,165:24190535,40755105:186543 -k1,165:25324730,40755105:186544 -k1,165:28421727,40755105:186543 -k1,165:29754496,40755105:186544 -k1,165:32583029,40755105:0 -) -(1,166:6630773,41596593:25952256,513147,134348 -k1,165:8060650,41596593:238432 -k1,165:10938871,41596593:238431 -k1,165:12960538,41596593:238432 -k1,165:13858262,41596593:238432 -k1,165:15115779,41596593:238432 -k1,165:17698433,41596593:238431 -k1,165:22068910,41596593:238432 -k1,165:24080091,41596593:238432 -k1,165:25886144,41596593:238432 -k1,165:27683021,41596593:238431 -k1,165:30898098,41596593:238432 -k1,166:32583029,41596593:0 -) -(1,166:6630773,42438081:25952256,513147,126483 -k1,165:8055626,42438081:201296 -k1,165:9764251,42438081:201297 -k1,165:10578309,42438081:201296 -k1,165:14727494,42438081:201296 -k1,165:16318154,42438081:201297 -k1,165:19129749,42438081:201296 -k1,165:21282707,42438081:201296 -k1,165:22926450,42438081:201296 -k1,165:26447146,42438081:201297 -k1,165:28359587,42438081:201296 -k1,165:29228039,42438081:201296 -k1,165:30017849,42438081:201297 -k1,165:32051532,42438081:201296 -k1,165:32583029,42438081:0 -) -(1,166:6630773,43279569:25952256,513147,134348 -k1,165:9317562,43279569:215426 -k1,165:11525938,43279569:215426 -k1,165:13135315,43279569:215426 -k1,165:14727652,43279569:215426 -k1,165:16015247,43279569:215426 -k1,165:16688770,43279569:215426 -k1,165:17435693,43279569:215426 -k1,165:20760147,43279569:215426 -k1,165:21627001,43279569:215426 -k1,165:22590193,43279569:215426 -k1,165:24674050,43279569:215426 -k1,165:26173982,43279569:215426 -k1,165:27337059,43279569:215426 -k1,165:30871884,43279569:215426 -k1,165:32583029,43279569:0 -) -(1,166:6630773,44121057:25952256,513147,134348 -g1,165:9431781,44121057 -g1,165:11064938,44121057 -g1,165:11679010,44121057 -g1,165:12982521,44121057 -g1,165:13929516,44121057 -g1,165:14484605,44121057 -g1,165:16581101,44121057 -g1,165:20327138,44121057 -g1,165:21185659,44121057 -g1,165:22893527,44121057 -k1,166:32583029,44121057:8090424 -g1,166:32583029,44121057 -) -(1,168:6630773,44962545:25952256,513147,134348 -h1,167:6630773,44962545:983040,0,0 -k1,167:11256808,44962545:235123 -k1,167:13620540,44962545:235123 -k1,167:14874748,44962545:235123 -k1,167:16691910,44962545:235123 -k1,167:18440259,44962545:235123 -k1,167:20367522,44962545:235123 -k1,167:22028053,44962545:235123 -k1,167:24712912,44962545:235123 -k1,167:25915346,44962545:235123 -k1,167:26801897,44962545:235123 -k1,167:28717363,44962545:235123 -k1,167:29611778,44962545:235123 -k1,167:31548871,44962545:235123 -k1,168:32583029,44962545:0 -) -] -(1,168:32583029,45706769:0,0,0 -g1,168:32583029,45706769 -) -) -] -(1,168:6630773,47279633:25952256,0,0 -h1,168:6630773,47279633:25952256,0,0 -) -] -(1,168:4262630,4025873:0,0,0 -[1,168:-473656,4025873:0,0,0 -(1,168:-473656,-710413:0,0,0 -(1,168:-473656,-710413:0,0,0 -g1,168:-473656,-710413 -) -g1,168:-473656,-710413 -) -] -) -] -!24920 -}13 -!11 -{14 -[1,220:4262630,47279633:28320399,43253760,0 -(1,220:4262630,4025873:0,0,0 -[1,220:-473656,4025873:0,0,0 -(1,220:-473656,-710413:0,0,0 -(1,220:-473656,-644877:0,0,0 -k1,220:-473656,-644877:-65536 +k1,218:29014430,51504789:25935872 +g1,218:29014430,51504789 +) +] +) +) +) +] +[1,252:3078558,4812305:0,0,0 +(1,252:3078558,49800853:0,16384,2228224 +g1,252:29030814,49800853 +g1,252:36135244,49800853 +(1,218:36135244,49800853:1720320,16384,2228224 +(1,218:36135244,52029077:16384,1703936,0 +[1,218:36135244,52029077:25952256,1703936,0 +(1,218:36135244,51504789:25952256,1179648,0 +(1,218:36135244,51504789:16384,1179648,0 +r1,252:36151628,51504789:16384,1179648,0 +) +k1,218:62087500,51504789:25935872 +g1,218:62087500,51504789 +) +] +) +g1,218:36675916,49800853 +(1,218:36675916,49800853:1179648,16384,0 +r1,252:37855564,49800853:1179648,16384,0 +) +) +k1,252:3078556,49800853:-34777008 +) +] +g1,252:6630773,4812305 +k1,252:24492612,4812305:17463380 +g1,252:26454104,4812305 +g1,252:27638994,4812305 +g1,252:29336376,4812305 +g1,252:30135259,4812305 +g1,252:32168841,4812305 +) +) +] +[1,252:6630773,45706769:25952256,40108032,0 +(1,252:6630773,45706769:25952256,40108032,0 +(1,252:6630773,45706769:0,0,0 +g1,252:6630773,45706769 +) +[1,252:6630773,45706769:25952256,40108032,0 +(1,239:6630773,6254097:25952256,513147,134348 +k1,238:8639844,6254097:250085 +k1,238:10144944,6254097:250086 +k1,238:12772675,6254097:250085 +k1,238:14233210,6254097:250085 +k1,238:18084499,6254097:250086 +k1,238:19672174,6254097:250085 +k1,238:20320718,6254097:250085 +k1,238:22548025,6254097:250086 +k1,238:23260139,6254097:250085 +k1,238:24655793,6254097:250085 +k1,238:25872535,6254097:250086 +k1,238:26521079,6254097:250085 +k1,238:28051738,6254097:250085 +k1,238:30596895,6254097:250086 +k1,238:32184570,6254097:250085 +k1,238:32583029,6254097:0 +) +(1,239:6630773,7119177:25952256,505283,134348 +g1,238:8633553,7119177 +g1,238:9432436,7119177 +g1,238:11342155,7119177 +g1,238:12527045,7119177 +g1,238:15047559,7119177 +k1,239:32583029,7119177:17535470 +g1,239:32583029,7119177 +) +(1,241:6630773,8331598:25952256,513147,134348 +h1,240:6630773,8331598:983040,0,0 +k1,240:8445044,8331598:203396 +k1,240:9236952,8331598:203395 +k1,240:10586573,8331598:203396 +k1,240:11406007,8331598:203396 +k1,240:13211102,8331598:203395 +k1,240:15252783,8331598:203396 +k1,240:18802447,8331598:203396 +k1,240:20660626,8331598:203395 +k1,240:21855582,8331598:203396 +k1,240:24730224,8331598:203395 +k1,240:26501897,8331598:203396 +k1,240:27364585,8331598:203396 +k1,240:29707075,8331598:203395 +k1,240:30929556,8331598:203396 +k1,240:32583029,8331598:0 +) +(1,241:6630773,9196678:25952256,505283,126483 +k1,240:10467856,9196678:258817 +k1,240:10939606,9196678:258758 +k1,240:12673638,9196678:258817 +k1,240:15690866,9196678:258818 +k1,240:17445870,9196678:258817 +k1,240:20696407,9196678:258818 +k1,240:22239730,9196678:258817 +k1,240:23675574,9196678:258817 +k1,240:24585820,9196678:258818 +k1,240:26661295,9196678:258817 +k1,240:27275973,9196678:258818 +k1,240:29947826,9196678:258817 +k1,240:32583029,9196678:0 +) +(1,241:6630773,10061758:25952256,505283,134348 +k1,240:9967276,10061758:260898 +k1,240:12094640,10061758:260899 +k1,240:13546983,10061758:260898 +k1,240:17375661,10061758:260898 +k1,240:18907958,10061758:260899 +k1,240:20937673,10061758:260898 +k1,240:22813379,10061758:260899 +k1,240:26379258,10061758:260898 +k1,240:27054937,10061758:260836 +k1,240:29228177,10061758:260899 +k1,240:31224468,10061758:260898 +k1,241:32583029,10061758:0 +) +(1,241:6630773,10926838:25952256,513147,134348 +k1,240:9800749,10926838:226754 +k1,240:12789847,10926838:226755 +k1,240:14512788,10926838:226754 +k1,240:17904931,10926838:226754 +k1,240:19711104,10926838:226755 +k1,240:21141099,10926838:226754 +k1,240:21899350,10926838:226754 +k1,240:23782855,10926838:226755 +k1,240:25707647,10926838:226754 +k1,240:28336951,10926838:226754 +k1,240:29582791,10926838:226755 +k1,240:31391584,10926838:226754 +k1,240:32583029,10926838:0 +) +(1,241:6630773,11791918:25952256,505283,134348 +k1,240:8598585,11791918:232419 +k1,240:9419516,11791918:232418 +k1,240:11231353,11791918:232419 +k1,240:12749588,11791918:232419 +k1,240:13598045,11791918:232419 +k1,240:15487213,11791918:232418 +k1,240:17004138,11791918:232419 +k1,240:17694654,11791918:232419 +k1,240:18458569,11791918:232418 +k1,240:22142114,11791918:232419 +k1,240:23025961,11791918:232419 +k1,240:26517485,11791918:232419 +k1,240:30113211,11791918:232418 +k1,240:32168186,11791918:232419 +k1,241:32583029,11791918:0 +) +(1,241:6630773,12656998:25952256,513147,126483 +k1,240:8054770,12656998:232552 +k1,240:8973484,12656998:232552 +k1,240:9561895,12656998:232551 +k1,240:11175291,12656998:232552 +k1,240:12578316,12656998:232552 +k1,240:13943330,12656998:232552 +k1,240:17480862,12656998:232551 +k1,240:19243680,12656998:232552 +k1,240:20127660,12656998:232552 +k1,240:22710333,12656998:232552 +k1,240:23961969,12656998:232551 +k1,240:29194263,12656998:232552 +k1,240:30893511,12656998:232552 +k1,240:32583029,12656998:0 +) +(1,241:6630773,13522078:25952256,505283,134348 +k1,240:8588746,13522078:152456 +k1,240:9760287,13522078:152456 +k1,240:12803536,13522078:152456 +k1,240:13572030,13522078:152456 +k1,240:14927727,13522078:152456 +k1,240:16835893,13522078:152456 +k1,240:18185036,13522078:152456 +k1,240:18752288,13522078:152409 +k1,240:21920711,13522078:152456 +k1,240:22689205,13522078:152456 +k1,240:23197521,13522078:152456 +k1,240:25209889,13522078:152456 +k1,240:27306143,13522078:152456 +k1,240:27990096,13522078:152456 +k1,240:29442786,13522078:152456 +k1,240:32124932,13522078:152456 +k1,240:32583029,13522078:0 +) +(1,241:6630773,14387158:25952256,505283,134348 +k1,240:7882039,14387158:146984 +k1,240:8776789,14387158:146984 +k1,240:12016417,14387158:146984 +k1,240:13557352,14387158:146984 +k1,240:18277438,14387158:146984 +k1,240:21685493,14387158:146984 +k1,240:24916601,14387158:146984 +k1,240:27825272,14387158:146984 +k1,240:28623684,14387158:146984 +k1,240:29863153,14387158:146984 +k1,240:30424928,14387158:146932 +k1,240:32583029,14387158:0 +) +(1,241:6630773,15252238:25952256,513147,134348 +k1,240:9444421,15252238:221699 +k1,240:10325412,15252238:221699 +k1,240:13148890,15252238:221699 +k1,240:14389674,15252238:221699 +k1,240:16563035,15252238:221699 +k1,240:18155747,15252238:221699 +k1,240:21860685,15252238:221699 +k1,240:23101468,15252238:221698 +k1,240:24657480,15252238:221699 +k1,240:25538471,15252238:221699 +k1,240:28016575,15252238:221699 +k1,240:29697105,15252238:221699 +k1,240:31156779,15252238:221699 +k1,240:31994516,15252238:221699 +k1,240:32583029,15252238:0 +) +(1,241:6630773,16117318:25952256,513147,126483 +g1,240:7618400,16117318 +g1,240:12643700,16117318 +g1,240:14034374,16117318 +g1,240:16424472,16117318 +g1,240:19388010,16117318 +g1,240:20778684,16117318 +g1,240:23235628,16117318 +k1,241:32583029,16117318:6860965 +g1,241:32583029,16117318 +) +(1,243:6630773,16982398:25952256,505283,134348 +h1,242:6630773,16982398:983040,0,0 +k1,242:10372169,16982398:223423 +k1,242:12775975,16982398:223423 +k1,242:14065669,16982398:223423 +k1,242:15466119,16982398:223423 +k1,242:16302304,16982398:223423 +k1,242:20775081,16982398:223423 +k1,242:21764619,16982398:223422 +k1,242:23007127,16982398:223423 +k1,242:25348018,16982398:223423 +k1,242:28745350,16982398:223423 +k1,242:29584811,16982398:223423 +k1,242:30827319,16982398:223423 +k1,242:32583029,16982398:0 +) +(1,243:6630773,17847478:25952256,513147,126483 +k1,242:8016728,17847478:182714 +k1,242:8730940,17847478:182715 +k1,242:12364780,17847478:182714 +k1,242:13495145,17847478:182714 +k1,242:15279559,17847478:182714 +k1,242:16121566,17847478:182715 +k1,242:17223095,17847478:182714 +k1,242:19019305,17847478:182714 +k1,242:20294504,17847478:182714 +k1,242:21136511,17847478:182715 +k1,242:22522466,17847478:182714 +k1,242:23896625,17847478:182714 +k1,242:25781309,17847478:182714 +k1,242:28050035,17847478:182715 +k1,242:29424194,17847478:182714 +k1,243:32583029,17847478:0 +) +(1,243:6630773,18712558:25952256,513147,134348 +k1,242:8676105,18712558:165104 +k1,242:12083930,18712558:165104 +k1,242:12935196,18712558:165104 +k1,242:16583539,18712558:165104 +k1,242:19450692,18712558:165104 +k1,242:20425166,18712558:165104 +k1,242:20946129,18712558:165103 +k1,242:22695238,18712558:165104 +k1,242:24629814,18712558:165104 +k1,242:25454210,18712558:165104 +k1,242:25975174,18712558:165104 +k1,242:28000190,18712558:165104 +k1,242:30428252,18712558:165104 +k1,242:31252648,18712558:165104 +k1,243:32583029,18712558:0 +) +(1,243:6630773,19577638:25952256,505283,134348 +k1,242:7223948,19577638:178332 +k1,242:9329059,19577638:178353 +k1,242:10698857,19577638:178353 +k1,242:11686580,19577638:178353 +k1,242:14466711,19577638:178352 +k1,242:15975445,19577638:178353 +k1,242:16805226,19577638:178353 +k1,242:19646962,19577638:178353 +k1,242:20844400,19577638:178353 +k1,242:26022495,19577638:178353 +k1,242:27270395,19577638:178352 +k1,242:27906845,19577638:178353 +k1,242:28616695,19577638:178353 +k1,242:30445245,19577638:178353 +k1,243:32583029,19577638:0 +) +(1,243:6630773,20442718:25952256,513147,126483 +k1,242:8113580,20442718:198301 +k1,242:8963309,20442718:198301 +k1,242:12420714,20442718:198300 +k1,242:16538068,20442718:198301 +k1,242:17927814,20442718:198301 +k1,242:18742153,20442718:198301 +k1,242:20489070,20442718:198301 +k1,242:23844240,20442718:198301 +k1,242:25422728,20442718:198300 +k1,242:26612589,20442718:198301 +k1,242:28497787,20442718:198301 +k1,242:29887533,20442718:198301 +k1,242:32583029,20442718:0 +) +(1,243:6630773,21307798:25952256,513147,134348 +k1,242:9040663,21307798:167903 +k1,242:10651014,21307798:167904 +k1,242:11838002,21307798:167903 +k1,242:14123373,21307798:167903 +k1,242:14950568,21307798:167903 +k1,242:16448853,21307798:167904 +k1,242:17268184,21307798:167903 +k1,242:18528572,21307798:167903 +k1,242:20509201,21307798:167903 +k1,242:24242919,21307798:167904 +k1,242:24766682,21307798:167903 +k1,242:26704712,21307798:167903 +k1,242:27531907,21307798:167903 +k1,242:29397849,21307798:167904 +k1,242:30722462,21307798:167903 +k1,242:32583029,21307798:0 +) +(1,243:6630773,22172878:25952256,513147,134348 +g1,242:7481430,22172878 +g1,242:8428425,22172878 +g1,242:10837528,22172878 +g1,242:12103028,22172878 +g1,242:12953685,22172878 +g1,242:14183795,22172878 +g1,242:14999062,22172878 +g1,242:15554151,22172878 +g1,242:18895831,22172878 +g1,242:20717076,22172878 +g1,242:21447802,22172878 +g1,242:22932847,22172878 +k1,243:32583029,22172878:6267214 +g1,243:32583029,22172878 +) +(1,245:6630773,23037958:25952256,513147,134348 +h1,244:6630773,23037958:983040,0,0 +k1,244:8996739,23037958:186239 +k1,244:10765016,23037958:186238 +k1,244:11942815,23037958:186239 +k1,244:13233335,23037958:186238 +k1,244:14167340,23037958:186239 +k1,244:15866804,23037958:186238 +k1,244:17519739,23037958:186239 +k1,244:18392140,23037958:186239 +k1,244:18934238,23037958:186238 +k1,244:20346656,23037958:186239 +k1,244:22114933,23037958:186238 +k1,244:23248823,23037958:186239 +k1,244:26036841,23037958:186239 +k1,244:26637909,23037958:186225 +k1,244:28015593,23037958:186239 +k1,244:28887993,23037958:186238 +k1,244:29430092,23037958:186239 +k1,244:32583029,23037958:0 +) +(1,245:6630773,23903038:25952256,505283,134348 +k1,244:7343477,23903038:242811 +k1,244:9404911,23903038:242810 +k1,244:11041673,23903038:242811 +k1,244:13409161,23903038:242811 +k1,244:16483783,23903038:242811 +k1,244:17918038,23903038:242810 +k1,244:21003145,23903038:242811 +k1,244:24115122,23903038:242811 +k1,244:28122320,23903038:242810 +k1,244:30932832,23903038:242811 +k1,244:32583029,23903038:0 +) +(1,245:6630773,24768118:25952256,513147,134348 +k1,244:9585628,24768118:268534 +k1,244:12696457,24768118:268533 +k1,244:16226718,24768118:268534 +k1,244:17686697,24768118:268534 +k1,244:19551687,24768118:268533 +k1,244:21696517,24768118:268534 +k1,244:22984136,24768118:268534 +k1,244:24490644,24768118:268533 +k1,244:27137480,24768118:268534 +k1,244:28538476,24768118:268534 +k1,244:30246835,24768118:268533 +k1,244:31131407,24768118:268534 +k1,244:32583029,24768118:0 +) +(1,245:6630773,25633198:25952256,513147,126483 +k1,244:9442387,25633198:220320 +k1,244:13602731,25633198:220320 +k1,244:15014495,25633198:220319 +k1,244:18226534,25633198:220320 +k1,244:19394505,25633198:220320 +k1,244:20633910,25633198:220320 +k1,244:23631646,25633198:220320 +k1,244:25987129,25633198:220320 +k1,244:27904830,25633198:220319 +k1,244:29316595,25633198:220320 +k1,244:30556000,25633198:220320 +k1,245:32583029,25633198:0 +) +(1,245:6630773,26498278:25952256,513147,126483 +k1,244:8571425,26498278:169214 +k1,244:10457682,26498278:169214 +k1,244:12539237,26498278:169214 +k1,244:14092571,26498278:169214 +k1,244:15280869,26498278:169213 +k1,244:18861887,26498278:169214 +k1,244:20222546,26498278:169214 +k1,244:25493738,26498278:169214 +k1,244:28268663,26498278:169214 +k1,244:30005498,26498278:169214 +k1,244:32583029,26498278:0 +) +(1,245:6630773,27363358:25952256,505283,134348 +k1,244:7480523,27363358:198322 +k1,244:9394578,27363358:198322 +k1,244:10611985,27363358:198322 +k1,244:13412087,27363358:198323 +k1,244:15654477,27363358:198322 +k1,244:16065790,27363358:198321 +k1,244:18591295,27363358:198322 +k1,244:20264832,27363358:198322 +k1,244:23221564,27363358:198322 +k1,244:25116614,27363358:198323 +k1,244:26387105,27363358:198322 +k1,244:29010259,27363358:198322 +k1,244:30847636,27363358:198322 +k1,244:32583029,27363358:0 +) +(1,245:6630773,28228438:25952256,513147,134348 +k1,244:8512530,28228438:207312 +k1,244:9911287,28228438:207312 +k1,244:12934026,28228438:207312 +k1,244:14689954,28228438:207312 +k1,244:16729653,28228438:207312 +k1,244:17928525,28228438:207312 +k1,244:19308276,28228438:207312 +k1,244:21977120,28228438:207312 +k1,244:23132083,28228438:207312 +k1,244:26197420,28228438:207312 +k1,244:27607973,28228438:207312 +k1,244:30973465,28228438:207312 +k1,244:32583029,28228438:0 +) +(1,245:6630773,29093518:25952256,513147,134348 +k1,244:7862457,29093518:212599 +k1,244:11125756,29093518:212598 +k1,244:13973558,29093518:212599 +k1,244:16825946,29093518:212598 +k1,244:18433151,29093518:212599 +k1,244:19837195,29093518:212599 +k1,244:24062562,29093518:212598 +k1,244:27916341,29093518:212599 +k1,244:28660436,29093518:212598 +k1,244:31635378,29093518:212599 +k1,244:32583029,29093518:0 +) +(1,245:6630773,29958598:25952256,513147,134348 +k1,244:8314176,29958598:231781 +k1,244:9205249,29958598:231781 +k1,244:10355845,29958598:231781 +k1,244:11779071,29958598:231781 +k1,244:13891080,29958598:231781 +k1,244:17484858,29958598:231781 +k1,244:18526009,29958598:231781 +k1,244:19776875,29958598:231781 +k1,244:22318800,29958598:231781 +k1,244:24136552,29958598:231781 +k1,244:25935955,29958598:231782 +k1,244:27091138,29958598:231781 +k1,244:27535878,29958598:231748 +k1,244:29345111,29958598:231781 +k1,244:30595977,29958598:231781 +k1,244:32583029,29958598:0 +) +(1,245:6630773,30823678:25952256,513147,126483 +k1,244:8003471,30823678:240236 +k1,244:9631760,30823678:240236 +k1,244:12250298,30823678:240236 +k1,244:14759391,30823678:240237 +k1,244:16548243,30823678:240236 +k1,244:17439907,30823678:240236 +k1,244:19924751,30823678:240236 +k1,244:21495368,30823678:240236 +k1,244:23518839,30823678:240236 +k1,244:25531824,30823678:240236 +k1,244:26423489,30823678:240237 +k1,244:27756210,30823678:240236 +k1,244:28612484,30823678:240236 +k1,244:30304342,30823678:240236 +k1,244:32583029,30823678:0 +) +(1,245:6630773,31688758:25952256,513147,126483 +k1,244:8030507,31688758:208289 +k1,244:9705492,31688758:208289 +k1,244:11462398,31688758:208290 +k1,244:12322115,31688758:208289 +k1,244:13942705,31688758:208289 +k1,244:15342439,31688758:208289 +k1,244:17099345,31688758:208290 +k1,244:17959062,31688758:208289 +k1,244:19685820,31688758:208289 +k1,244:22334014,31688758:208289 +k1,244:23008265,31688758:208290 +k1,244:23429537,31688758:208280 +k1,244:24829271,31688758:208289 +k1,244:27257264,31688758:208289 +k1,244:28484639,31688758:208290 +k1,244:30526625,31688758:208289 +k1,244:31923737,31688758:208289 +k1,244:32583029,31688758:0 +) +(1,245:6630773,32553838:25952256,513147,134348 +k1,244:7863202,32553838:213344 +k1,244:8491375,32553838:213330 +k1,244:11720687,32553838:213345 +k1,244:12147009,32553838:213330 +k1,244:14316603,32553838:213344 +k1,244:16005162,32553838:213344 +k1,244:17962419,32553838:213344 +k1,244:20727736,32553838:213345 +k1,244:22394669,32553838:213344 +k1,244:23700498,32553838:213344 +k1,244:24580998,32553838:213344 +k1,244:25209171,32553838:213330 +k1,244:27072713,32553838:213345 +k1,244:29943542,32553838:213344 +k1,244:30626779,32553838:213344 +k1,244:32583029,32553838:0 +) +(1,245:6630773,33418918:25952256,513147,7863 +g1,244:8305217,33418918 +g1,244:9790262,33418918 +g1,244:11733404,33418918 +g1,244:12951718,33418918 +g1,244:14732986,33418918 +g1,244:16145286,33418918 +g1,244:18321736,33418918 +g1,244:19207127,33418918 +g1,244:19762216,33418918 +k1,245:32583029,33418918:9667876 +g1,245:32583029,33418918 +) +(1,247:6630773,34283998:25952256,505283,126483 +h1,246:6630773,34283998:983040,0,0 +k1,246:9049764,34283998:239264 +k1,246:10871068,34283998:239265 +k1,246:13812381,34283998:239264 +k1,246:15803422,34283998:239264 +k1,246:17538874,34283998:239265 +k1,246:20769857,34283998:239264 +k1,246:21695283,34283998:239264 +k1,246:23213155,34283998:239265 +k1,246:24138581,34283998:239264 +k1,246:27442309,34283998:239265 +k1,246:27894525,34283998:239224 +k1,246:30204727,34283998:239264 +k1,246:32583029,34283998:0 +) +(1,247:6630773,35149078:25952256,513147,126483 +k1,246:7984278,35149078:221043 +k1,246:9323366,35149078:221044 +k1,246:11040596,35149078:221043 +k1,246:14253359,35149078:221044 +k1,246:15665847,35149078:221043 +k1,246:16793254,35149078:221044 +k1,246:17700459,35149078:221043 +k1,246:19673279,35149078:221043 +k1,246:23050537,35149078:221044 +k1,246:23930872,35149078:221043 +k1,246:25790971,35149078:221044 +k1,246:26698176,35149078:221043 +k1,246:29217568,35149078:221044 +k1,246:30090039,35149078:221043 +k1,246:32583029,35149078:0 +) +(1,247:6630773,36014158:25952256,513147,134348 +k1,246:7566255,36014158:164779 +k1,246:12386055,36014158:164778 +k1,246:13210126,36014158:164779 +k1,246:14393989,36014158:164778 +k1,246:16745049,36014158:164779 +k1,246:17569120,36014158:164779 +k1,246:18752983,36014158:164778 +k1,246:19332570,36014158:164744 +k1,246:22513316,36014158:164779 +k1,246:23920658,36014158:164779 +k1,246:25415817,36014158:164778 +k1,246:26599681,36014158:164779 +k1,246:29459955,36014158:164778 +k1,246:30307619,36014158:164779 +k1,246:32583029,36014158:0 +) +(1,247:6630773,36879238:25952256,513147,134348 +k1,246:10514237,36879238:178058 +k1,246:12792724,36879238:178058 +k1,246:14351625,36879238:178057 +k1,246:15061180,36879238:178058 +k1,246:16787854,36879238:178058 +k1,246:19993020,36879238:178058 +k1,246:21882222,36879238:178057 +k1,246:22727436,36879238:178058 +k1,246:23320316,36879238:178037 +k1,246:24313642,36879238:178058 +k1,246:26189737,36879238:178057 +k1,246:28312248,36879238:178058 +k1,246:29261009,36879238:178058 +k1,246:32583029,36879238:0 +) +(1,247:6630773,37744318:25952256,513147,134348 +g1,246:9105412,37744318 +g1,246:9987526,37744318 +g1,246:10542615,37744318 +g1,246:11892656,37744318 +g1,246:12707923,37744318 +g1,246:14415791,37744318 +k1,247:32583029,37744318:13338545 +g1,247:32583029,37744318 +) +(1,249:6630773,38609398:25952256,505283,126483 +h1,248:6630773,38609398:983040,0,0 +k1,248:10410088,38609398:261342 +k1,248:11954625,38609398:261342 +k1,248:12867395,38609398:261342 +k1,248:13543517,38609398:261279 +k1,248:15985242,38609398:261342 +k1,248:17658885,38609398:261342 +k1,248:18532989,38609398:261342 +k1,248:20289863,38609398:261342 +k1,248:23299130,38609398:261342 +h1,248:23697589,38609398:0,0,0 +k1,248:23958931,38609398:261342 +k1,248:24871701,38609398:261342 +h1,248:25270160,38609398:0,0,0 +k1,248:25531502,38609398:261342 +k1,248:29810856,38609398:261342 +k1,248:32583029,38609398:0 +) +(1,249:6630773,39474478:25952256,513147,134348 +k1,248:9570921,39474478:184359 +k1,248:11407443,39474478:184359 +k1,248:12251093,39474478:184358 +k1,248:13454537,39474478:184359 +k1,248:14865075,39474478:184359 +k1,248:16240879,39474478:184359 +k1,248:19316030,39474478:184358 +k1,248:21925221,39474478:184359 +k1,248:22795742,39474478:184359 +k1,248:26159908,39474478:184359 +k1,248:29278968,39474478:184358 +k1,248:29676304,39474478:184344 +k1,248:31931601,39474478:184359 +k1,248:32583029,39474478:0 +) +(1,249:6630773,40339558:25952256,513147,126483 +k1,248:7557956,40339558:179417 +k1,248:9339074,40339558:179418 +k1,248:11495712,40339558:179417 +k1,248:12326557,40339558:179417 +k1,248:14202702,40339558:179418 +k1,248:16934091,40339558:179417 +k1,248:18179779,40339558:179417 +k1,248:19010624,40339558:179417 +k1,248:22681800,40339558:179418 +k1,248:24206016,40339558:179417 +k1,248:25404518,40339558:179417 +k1,248:29193659,40339558:179418 +k1,248:30032368,40339558:179417 +k1,248:32583029,40339558:0 +) +(1,249:6630773,41204638:25952256,513147,134348 +k1,248:9469268,41204638:232784 +k1,248:10893497,41204638:232784 +k1,248:13320426,41204638:232784 +k1,248:15424262,41204638:232783 +k1,248:16729215,41204638:232784 +k1,248:18913661,41204638:232784 +k1,248:19797873,41204638:232784 +k1,248:21574685,41204638:232784 +k1,248:24168076,41204638:232784 +k1,248:25968481,41204638:232784 +k1,248:27840320,41204638:232784 +k1,248:28797931,41204638:232783 +k1,248:29716877,41204638:232784 +k1,248:30601089,41204638:232784 +k1,248:31812326,41204638:232784 +k1,248:32583029,41204638:0 +) +(1,249:6630773,42069718:25952256,513147,126483 +k1,248:8181263,42069718:225352 +k1,248:9065907,42069718:225352 +k1,248:10839875,42069718:225352 +k1,248:13259372,42069718:225352 +k1,248:16641593,42069718:225352 +k1,248:18247134,42069718:225353 +k1,248:19809420,42069718:225352 +k1,248:21336317,42069718:225352 +k1,248:22247831,42069718:225352 +k1,248:22888000,42069718:225326 +k1,248:24998167,42069718:225352 +k1,248:28137905,42069718:225352 +k1,248:30543640,42069718:225352 +k1,248:31835263,42069718:225352 +k1,248:32583029,42069718:0 +) +(1,249:6630773,42934798:25952256,513147,126483 +g1,248:9537294,42934798 +g1,248:10422685,42934798 +g1,248:12002102,42934798 +g1,248:13192891,42934798 +g1,248:13747980,42934798 +g1,248:15048214,42934798 +g1,248:18844714,42934798 +g1,248:19703235,42934798 +g1,248:20921549,42934798 +g1,248:23644569,42934798 +g1,248:26828308,42934798 +k1,249:32583029,42934798:4067824 +g1,249:32583029,42934798 +) +(1,251:6630773,43799878:25952256,513147,126483 +h1,250:6630773,43799878:983040,0,0 +k1,250:10345136,43799878:196390 +k1,250:12875917,43799878:196389 +k1,250:15564641,43799878:196390 +k1,250:17154982,43799878:196390 +k1,250:17766211,43799878:196386 +k1,250:19095063,43799878:196390 +k1,250:20039219,43799878:196390 +k1,250:21544362,43799878:196389 +k1,250:22392180,43799878:196390 +k1,250:24000871,43799878:196390 +k1,250:25216345,43799878:196389 +k1,250:28160660,43799878:196390 +k1,250:28973088,43799878:196390 +k1,250:30188562,43799878:196389 +k1,250:31966991,43799878:196390 +k1,250:32583029,43799878:0 +) +(1,251:6630773,44664958:25952256,513147,134348 +k1,250:7941867,44664958:179287 +k1,250:10034151,44664958:179288 +k1,250:10899600,44664958:179287 +k1,250:12097973,44664958:179288 +k1,250:13807526,44664958:179287 +k1,250:16013843,44664958:179288 +k1,250:18952196,44664958:179287 +k1,250:20506429,44664958:179288 +k1,250:21877161,44664958:179287 +k1,250:23904564,44664958:179288 +k1,250:25275296,44664958:179287 +k1,250:26473669,44664958:179288 +k1,250:30051653,44664958:179287 +k1,250:31422386,44664958:179288 +k1,251:32583029,44664958:0 +) +] +(1,252:32583029,45706769:0,0,0 +g1,252:32583029,45706769 +) +) +] +(1,252:6630773,47279633:25952256,0,0 +h1,252:6630773,47279633:25952256,0,0 +) +] +(1,252:4262630,4025873:0,0,0 +[1,252:-473656,4025873:0,0,0 +(1,252:-473656,-710413:0,0,0 +(1,252:-473656,-710413:0,0,0 +g1,252:-473656,-710413 +) +g1,252:-473656,-710413 +) +] +) +] +!25032 +}17 +Input:189:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:190:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:191:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:192:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:193:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:194:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:195:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:196:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:197:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:198:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!941 +{18 +[1,287:4262630,47279633:28320399,43253760,0 +(1,287:4262630,4025873:0,0,0 +[1,287:-473656,4025873:0,0,0 +(1,287:-473656,-710413:0,0,0 +(1,287:-473656,-644877:0,0,0 +k1,287:-473656,-644877:-65536 ) -(1,220:-473656,4736287:0,0,0 -k1,220:-473656,4736287:5209943 +(1,287:-473656,4736287:0,0,0 +k1,287:-473656,4736287:5209943 ) -g1,220:-473656,-710413 +g1,287:-473656,-710413 ) ] ) -[1,220:6630773,47279633:25952256,43253760,0 -[1,220:6630773,4812305:25952256,786432,0 -(1,220:6630773,4812305:25952256,513147,126483 -(1,220:6630773,4812305:25952256,513147,126483 -g1,220:3078558,4812305 -[1,220:3078558,4812305:0,0,0 -(1,220:3078558,2439708:0,1703936,0 -k1,220:1358238,2439708:-1720320 -(1,144:1358238,2439708:1720320,1703936,0 -(1,144:1358238,2439708:1179648,16384,0 -r1,220:2537886,2439708:1179648,16384,0 +[1,287:6630773,47279633:25952256,43253760,0 +[1,287:6630773,4812305:25952256,786432,0 +(1,287:6630773,4812305:25952256,505283,134348 +(1,287:6630773,4812305:25952256,505283,134348 +g1,287:3078558,4812305 +[1,287:3078558,4812305:0,0,0 +(1,287:3078558,2439708:0,1703936,0 +k1,287:1358238,2439708:-1720320 +(1,218:1358238,2439708:1720320,1703936,0 +(1,218:1358238,2439708:1179648,16384,0 +r1,287:2537886,2439708:1179648,16384,0 ) -g1,144:3062174,2439708 -(1,144:3062174,2439708:16384,1703936,0 -[1,144:3062174,2439708:25952256,1703936,0 -(1,144:3062174,1915420:25952256,1179648,0 -(1,144:3062174,1915420:16384,1179648,0 -r1,220:3078558,1915420:16384,1179648,0 +g1,218:3062174,2439708 +(1,218:3062174,2439708:16384,1703936,0 +[1,218:3062174,2439708:25952256,1703936,0 +(1,218:3062174,1915420:25952256,1179648,0 +(1,218:3062174,1915420:16384,1179648,0 +r1,287:3078558,1915420:16384,1179648,0 ) -k1,144:29014430,1915420:25935872 -g1,144:29014430,1915420 +k1,218:29014430,1915420:25935872 +g1,218:29014430,1915420 ) ] ) ) ) ] -[1,220:3078558,4812305:0,0,0 -(1,220:3078558,2439708:0,1703936,0 -g1,220:29030814,2439708 -g1,220:36135244,2439708 -(1,144:36135244,2439708:1720320,1703936,0 -(1,144:36135244,2439708:16384,1703936,0 -[1,144:36135244,2439708:25952256,1703936,0 -(1,144:36135244,1915420:25952256,1179648,0 -(1,144:36135244,1915420:16384,1179648,0 -r1,220:36151628,1915420:16384,1179648,0 +[1,287:3078558,4812305:0,0,0 +(1,287:3078558,2439708:0,1703936,0 +g1,287:29030814,2439708 +g1,287:36135244,2439708 +(1,218:36135244,2439708:1720320,1703936,0 +(1,218:36135244,2439708:16384,1703936,0 +[1,218:36135244,2439708:25952256,1703936,0 +(1,218:36135244,1915420:25952256,1179648,0 +(1,218:36135244,1915420:16384,1179648,0 +r1,287:36151628,1915420:16384,1179648,0 ) -k1,144:62087500,1915420:25935872 -g1,144:62087500,1915420 +k1,218:62087500,1915420:25935872 +g1,218:62087500,1915420 ) ] ) -g1,144:36675916,2439708 -(1,144:36675916,2439708:1179648,16384,0 -r1,220:37855564,2439708:1179648,16384,0 +g1,218:36675916,2439708 +(1,218:36675916,2439708:1179648,16384,0 +r1,287:37855564,2439708:1179648,16384,0 ) ) -k1,220:3078556,2439708:-34777008 +k1,287:3078556,2439708:-34777008 ) ] -[1,220:3078558,4812305:0,0,0 -(1,220:3078558,49800853:0,16384,2228224 -k1,220:1358238,49800853:-1720320 -(1,144:1358238,49800853:1720320,16384,2228224 -(1,144:1358238,49800853:1179648,16384,0 -r1,220:2537886,49800853:1179648,16384,0 +[1,287:3078558,4812305:0,0,0 +(1,287:3078558,49800853:0,16384,2228224 +k1,287:1358238,49800853:-1720320 +(1,218:1358238,49800853:1720320,16384,2228224 +(1,218:1358238,49800853:1179648,16384,0 +r1,287:2537886,49800853:1179648,16384,0 +) +g1,218:3062174,49800853 +(1,218:3062174,52029077:16384,1703936,0 +[1,218:3062174,52029077:25952256,1703936,0 +(1,218:3062174,51504789:25952256,1179648,0 +(1,218:3062174,51504789:16384,1179648,0 +r1,287:3078558,51504789:16384,1179648,0 +) +k1,218:29014430,51504789:25935872 +g1,218:29014430,51504789 +) +] +) +) +) +] +[1,287:3078558,4812305:0,0,0 +(1,287:3078558,49800853:0,16384,2228224 +g1,287:29030814,49800853 +g1,287:36135244,49800853 +(1,218:36135244,49800853:1720320,16384,2228224 +(1,218:36135244,52029077:16384,1703936,0 +[1,218:36135244,52029077:25952256,1703936,0 +(1,218:36135244,51504789:25952256,1179648,0 +(1,218:36135244,51504789:16384,1179648,0 +r1,287:36151628,51504789:16384,1179648,0 +) +k1,218:62087500,51504789:25935872 +g1,218:62087500,51504789 +) +] +) +g1,218:36675916,49800853 +(1,218:36675916,49800853:1179648,16384,0 +r1,287:37855564,49800853:1179648,16384,0 +) +) +k1,287:3078556,49800853:-34777008 +) +] +g1,287:6630773,4812305 +g1,287:6630773,4812305 +g1,287:10817212,4812305 +g1,287:12226891,4812305 +g1,287:14854229,4812305 +g1,287:18762796,4812305 +k1,287:32184570,4812305:13421774 +) +) +] +[1,287:6630773,45706769:25952256,40108032,0 +(1,287:6630773,45706769:25952256,40108032,0 +(1,287:6630773,45706769:0,0,0 +g1,287:6630773,45706769 +) +[1,287:6630773,45706769:25952256,40108032,0 +(1,251:6630773,6254097:25952256,513147,134348 +k1,250:8395359,6254097:178615 +k1,250:10251040,6254097:178615 +k1,250:13739224,6254097:178616 +k1,250:16077250,6254097:178615 +k1,250:19038524,6254097:178615 +k1,250:20932872,6254097:178615 +k1,250:23741447,6254097:178615 +k1,250:24867713,6254097:178615 +k1,250:27424631,6254097:178616 +k1,250:28254674,6254097:178615 +k1,250:30141813,6254097:178615 +k1,250:32583029,6254097:0 +) +(1,251:6630773,7119177:25952256,513147,134348 +k1,250:8228151,7119177:152964 +k1,250:10391104,7119177:152964 +k1,250:11563153,7119177:152964 +k1,250:13298156,7119177:152964 +k1,250:14917816,7119177:152964 +k1,250:16768818,7119177:152964 +k1,250:19523561,7119177:152964 +k1,250:20091322,7119177:152918 +k1,250:21435731,7119177:152964 +k1,250:23286733,7119177:152964 +k1,250:25175090,7119177:152964 +k1,250:26347139,7119177:152964 +k1,250:28082142,7119177:152964 +k1,250:28921268,7119177:152964 +k1,250:29430092,7119177:152964 +k1,251:32583029,7119177:0 +k1,251:32583029,7119177:0 +) +(1,253:6630773,7984257:25952256,513147,134348 +h1,252:6630773,7984257:983040,0,0 +k1,252:7978324,7984257:151519 +k1,252:10200828,7984257:151566 +k1,252:12186746,7984257:151565 +k1,252:12961559,7984257:151566 +k1,252:13891037,7984257:151566 +k1,252:14441062,7984257:151566 +k1,252:17719351,7984257:151566 +k1,252:18522345,7984257:151566 +k1,252:20901480,7984257:151566 +k1,252:23030267,7984257:151566 +k1,252:23867995,7984257:151566 +k1,252:24375421,7984257:151566 +k1,252:27506254,7984257:151566 +k1,252:28309248,7984257:151566 +k1,252:30204727,7984257:151566 +k1,252:32583029,7984257:0 +) +(1,253:6630773,8849337:25952256,513147,126483 +k1,252:8121679,8849337:160525 +k1,252:9374688,8849337:160524 +k1,252:9993310,8849337:160525 +k1,252:10805263,8849337:160525 +k1,252:12577317,8849337:160524 +k1,252:13326355,8849337:160525 +k1,252:13956773,8849337:160525 +k1,252:15249759,8849337:160524 +k1,252:16158050,8849337:160525 +k1,252:17604390,8849337:160524 +k1,252:19742136,8849337:160525 +k1,252:20588823,8849337:160525 +k1,252:21105207,8849337:160524 +k1,252:24244999,8849337:160525 +k1,252:25056952,8849337:160525 +k1,252:27595778,8849337:160524 +k1,252:30090695,8849337:160525 +k1,252:32583029,8849337:0 +) +(1,253:6630773,9714417:25952256,513147,134348 +k1,252:8243615,9714417:218891 +k1,252:9051020,9714417:218892 +k1,252:10098941,9714417:218891 +k1,252:12844246,9714417:218892 +k1,252:14082222,9714417:218891 +k1,252:15393599,9714417:218892 +k1,252:16271782,9714417:218891 +k1,252:17509759,9714417:218892 +k1,252:19310689,9714417:218891 +k1,252:20215743,9714417:218892 +k1,252:20790494,9714417:218891 +k1,252:24162323,9714417:218892 +k1,252:24594187,9714417:218872 +k1,252:26288293,9714417:218891 +k1,252:28017135,9714417:218892 +k1,252:31189078,9714417:218891 +k1,252:32583029,9714417:0 +) +(1,253:6630773,10579497:25952256,513147,134348 +k1,252:9770275,10579497:226427 +k1,252:12977279,10579497:226427 +k1,252:14955482,10579497:226426 +k1,252:17958014,10579497:226427 +k1,252:20419874,10579497:226427 +k1,252:22662844,10579497:226427 +k1,252:24397910,10579497:226427 +k1,252:27851329,10579497:226426 +k1,252:29269201,10579497:226427 +k1,252:30514713,10579497:226427 +k1,252:32583029,10579497:0 +) +(1,253:6630773,11444577:25952256,513147,134348 +k1,252:7575929,11444577:285864 +k1,252:8627909,11444577:285864 +k1,252:9328528,11444577:285776 +k1,252:11904220,11444577:285864 +k1,252:13381529,11444577:285864 +k1,252:17021526,11444577:285864 +k1,252:20610405,11444577:285864 +k1,252:23962699,11444577:285864 +k1,252:25887617,11444577:285863 +k1,252:26789519,11444577:285864 +k1,252:28730167,11444577:285864 +k1,252:32583029,11444577:0 +) +(1,253:6630773,12309657:25952256,513147,134348 +k1,252:9481140,12309657:249898 +k1,252:12214853,12309657:249898 +k1,252:14313520,12309657:249897 +k1,252:16262111,12309657:249898 +k1,252:17128047,12309657:249898 +k1,252:17827471,12309657:249847 +k1,252:20135854,12309657:249897 +k1,252:21142037,12309657:249898 +k1,252:24290592,12309657:249898 +k1,252:25731935,12309657:249898 +k1,252:29342518,12309657:249897 +k1,252:31267516,12309657:249898 +k1,252:32133452,12309657:249898 +k1,252:32583029,12309657:0 +) +(1,253:6630773,13174737:25952256,505283,134348 +k1,252:8915359,13174737:203162 +k1,252:11597093,13174737:203162 +k1,252:12413017,13174737:203162 +k1,252:14444632,13174737:203161 +h1,252:15640009,13174737:0,0,0 +k1,252:16016841,13174737:203162 +h1,252:17212218,13174737:0,0,0 +k1,252:17415380,13174737:203162 +k1,252:18809987,13174737:203162 +h1,252:20005364,13174737:0,0,0 +k1,252:20382196,13174737:203162 +k1,252:24555529,13174737:203162 +k1,252:24971678,13174737:203157 +k1,252:26650055,13174737:203162 +k1,252:28139033,13174737:203162 +k1,252:31100605,13174737:203162 +k1,252:32583029,13174737:0 +) +(1,253:6630773,14039817:25952256,513147,134348 +k1,252:8014566,14039817:192348 +k1,252:10740536,14039817:192348 +k1,252:12609950,14039817:192348 +k1,252:16111866,14039817:192348 +k1,252:18508190,14039817:192348 +k1,252:20922209,14039817:192348 +k1,252:23723545,14039817:192348 +k1,252:27540689,14039817:192348 +k1,252:28752122,14039817:192348 +k1,252:30827319,14039817:192348 +k1,253:32583029,14039817:0 +k1,253:32583029,14039817:0 +) +(1,254:6630773,16870977:25952256,32768,229376 +(1,254:6630773,16870977:0,32768,229376 +(1,254:6630773,16870977:5505024,32768,229376 +r1,287:12135797,16870977:5505024,262144,229376 +) +k1,254:6630773,16870977:-5505024 +) +(1,254:6630773,16870977:25952256,32768,0 +r1,287:32583029,16870977:25952256,32768,0 +) +) +(1,254:6630773,18502829:25952256,606339,161218 +(1,254:6630773,18502829:1974731,582746,14155 +g1,254:6630773,18502829 +g1,254:8605504,18502829 +) +g1,254:13904483,18502829 +g1,254:15614186,18502829 +g1,254:18812605,18502829 +k1,254:32583029,18502829:8899264 +g1,254:32583029,18502829 +) +(1,256:6630773,19833215:25952256,555811,12975 +(1,256:6630773,19833215:2450326,534184,12975 +g1,256:6630773,19833215 +g1,256:9081099,19833215 +) +g1,256:10687977,19833215 +k1,256:32583030,19833215:20320616 +g1,256:32583030,19833215 +) +(1,259:6630773,21091511:25952256,513147,134348 +k1,258:9680819,21091511:290980 +k1,258:11346743,21091511:290979 +k1,258:12829168,21091511:290980 +k1,258:14794593,21091511:290980 +k1,258:16077133,21091511:290980 +k1,258:17881338,21091511:290979 +k1,258:18788356,21091511:290980 +k1,258:20098421,21091511:290980 +k1,258:21971439,21091511:290979 +k1,258:22913847,21091511:290980 +k1,258:25388487,21091511:290980 +k1,258:27502023,21091511:290980 +k1,258:29341618,21091511:290979 +k1,258:32051532,21091511:290980 +k1,258:32583029,21091511:0 +) +(1,259:6630773,21956591:25952256,513147,134348 +k1,258:9785323,21956591:148414 +k1,258:10616622,21956591:148414 +k1,258:13523445,21956591:148413 +k1,258:15065810,21956591:148414 +k1,258:15570084,21956591:148414 +k1,258:18115805,21956591:148414 +k1,258:19614915,21956591:148413 +k1,258:20960016,21956591:148414 +k1,258:24083765,21956591:148414 +k1,258:25906624,21956591:148414 +k1,258:27246482,21956591:148413 +k1,258:29756158,21956591:148414 +k1,258:30896132,21956591:148414 +k1,259:32583029,21956591:0 +k1,259:32583029,21956591:0 +) +v1,261:6630773,22821671:0,393216,0 +(1,262:6630773,23455239:25952256,1026784,0 +g1,262:6630773,23455239 +g1,262:6237557,23455239 +r1,287:6368629,23455239:131072,1026784,0 +g1,262:6567858,23455239 +g1,262:6764466,23455239 +[1,262:6764466,23455239:25818563,1026784,0 +(1,262:6764466,23236213:25818563,807758,219026 +(1,261:6764466,23236213:0,807758,219026 +r1,287:7908217,23236213:1143751,1026784,219026 +k1,261:6764466,23236213:-1143751 +) +(1,261:6764466,23236213:1143751,807758,219026 +) +g1,261:8107446,23236213 +g1,261:8435126,23236213 +g1,261:10871099,23236213 +g1,261:13791383,23236213 +g1,261:17971269,23236213 +g1,261:18786536,23236213 +g1,261:20587465,23236213 +g1,261:22484076,23236213 +g1,261:25734661,23236213 +g1,261:26585318,23236213 +g1,261:27199390,23236213 +g1,261:28084781,23236213 +g1,261:28639870,23236213 +k1,262:32583029,23236213:927192 +g1,262:32583029,23236213 +) +] +g1,262:32583029,23455239 +) +h1,262:6630773,23455239:0,0,0 +v1,265:6630773,24320319:0,393216,0 +(1,266:6630773,30818525:25952256,6891422,0 +g1,266:6630773,30818525 +g1,266:6237557,30818525 +r1,287:6368629,30818525:131072,6891422,0 +g1,266:6567858,30818525 +g1,266:6764466,30818525 +[1,266:6764466,30818525:25818563,6891422,0 +(1,266:6764466,24628617:25818563,701514,196608 +(1,265:6764466,24628617:0,701514,196608 +r1,287:8010564,24628617:1246098,898122,196608 +k1,265:6764466,24628617:-1246098 +) +(1,265:6764466,24628617:1246098,701514,196608 +) +k1,265:8191616,24628617:181052 +k1,265:8519296,24628617:327680 +k1,265:10937092,24628617:181052 +k1,265:13807741,24628617:181051 +k1,265:18051370,24628617:181052 +k1,265:18891714,24628617:181052 +k1,265:21470073,24628617:181052 +k1,265:22065950,24628617:181034 +k1,265:24852712,24628617:181051 +k1,265:25716649,24628617:181052 +k1,265:28230783,24628617:181052 +k1,265:32583029,24628617:0 +) +(1,266:6764466,25493697:25818563,513147,134348 +k1,265:9948569,25493697:178622 +k1,265:12383596,25493697:178622 +k1,265:13221509,25493697:178621 +k1,265:15096858,25493697:178622 +k1,265:19338057,25493697:178622 +k1,265:21232412,25493697:178622 +k1,265:24390300,25493697:178621 +k1,265:25220350,25493697:178622 +k1,265:29751218,25493697:178622 +k1,265:32583029,25493697:0 +) +(1,266:6764466,26358777:25818563,513147,134348 +k1,265:7604312,26358777:156961 +k1,265:10366984,26358777:156961 +k1,265:11183238,26358777:156962 +k1,265:12359284,26358777:156961 +k1,265:12931046,26358777:156919 +k1,265:15930303,26358777:156961 +k1,265:17371771,26358777:156962 +k1,265:18520292,26358777:156961 +k1,265:21755479,26358777:156961 +k1,265:23366029,26358777:156961 +k1,265:24139029,26358777:156962 +k1,265:25315075,26358777:156961 +k1,265:27227746,26358777:156961 +k1,265:29919640,26358777:156961 +k1,265:31359797,26358777:156962 +k1,265:32168186,26358777:156961 +k1,266:32583029,26358777:0 +) +(1,266:6764466,27223857:25818563,513147,134348 +k1,265:8147881,27223857:191970 +k1,265:11416111,27223857:191970 +k1,265:15960327,27223857:191970 +k1,265:17256579,27223857:191970 +k1,265:19313048,27223857:191970 +k1,265:20849817,27223857:191970 +k1,265:22738513,27223857:191969 +k1,265:24030177,27223857:191970 +k1,265:25618719,27223857:191970 +k1,265:26620059,27223857:191970 +k1,265:28118162,27223857:191970 +k1,265:30712682,27223857:191970 +k1,265:31563944,27223857:191970 +k1,265:32583029,27223857:0 +) +(1,266:6764466,28088937:25818563,513147,126483 +k1,265:8701013,28088937:180837 +k1,265:9710880,28088937:180837 +k1,265:12334898,28088937:180836 +k1,265:15603791,28088937:180837 +k1,265:16400666,28088937:180837 +k1,265:17600588,28088937:180837 +k1,265:18873910,28088937:180837 +k1,265:19721903,28088937:180837 +k1,265:20317564,28088937:180818 +k1,265:22195128,28088937:180837 +k1,265:24754267,28088937:180837 +k1,265:25926664,28088937:180837 +k1,265:28946520,28088937:180836 +k1,265:29778785,28088937:180837 +k1,265:31970267,28088937:180837 +k1,265:32583029,28088937:0 +) +(1,266:6764466,28954017:25818563,513147,126483 +k1,265:7292522,28954017:172196 +k1,265:8918307,28954017:172196 +k1,265:10515911,28954017:172196 +k1,265:13148328,28954017:172195 +k1,265:15261700,28954017:172196 +k1,265:18713318,28954017:172196 +k1,265:20279465,28954017:172196 +k1,265:20807521,28954017:172196 +k1,265:22148879,28954017:172196 +k1,265:22980367,28954017:172196 +k1,265:25060971,28954017:172196 +k1,265:25916051,28954017:172195 +k1,265:27048349,28954017:172196 +k1,265:27871973,28954017:172196 +k1,265:29740896,28954017:172196 +k1,265:31012786,28954017:172196 +k1,265:32583029,28954017:0 +) +(1,266:6764466,29819097:25818563,505283,134348 +k1,265:9508655,29819097:209256 +k1,265:11111863,29819097:209257 +k1,265:12971316,29819097:209256 +k1,265:16767357,29819097:209256 +k1,265:18122839,29819097:209257 +k1,265:20076008,29819097:209256 +k1,265:22928986,29819097:209256 +k1,265:25540792,29819097:209256 +k1,265:28942963,29819097:209257 +k1,265:31900144,29819097:209256 +k1,265:32583029,29819097:0 +) +(1,266:6764466,30684177:25818563,513147,134348 +g1,265:8699088,30684177 +g1,265:9917402,30684177 +g1,265:11698670,30684177 +g1,265:12584061,30684177 +g1,265:13139150,30684177 +g1,265:16491316,30684177 +g1,265:17823007,30684177 +g1,265:19288392,30684177 +g1,265:21184348,30684177 +g1,265:24073175,30684177 +g1,265:28334981,30684177 +k1,266:32583029,30684177:2097156 +g1,266:32583029,30684177 +) +] +g1,266:32583029,30818525 +) +h1,266:6630773,30818525:0,0,0 +v1,269:6630773,31683605:0,393216,0 +(1,270:6630773,33901425:25952256,2611036,0 +g1,270:6630773,33901425 +g1,270:6237557,33901425 +r1,287:6368629,33901425:131072,2611036,0 +g1,270:6567858,33901425 +g1,270:6764466,33901425 +[1,270:6764466,33901425:25818563,2611036,0 +(1,270:6764466,32044782:25818563,754393,260573 +(1,269:6764466,32044782:0,754393,260573 +r1,287:8010564,32044782:1246098,1014966,260573 +k1,269:6764466,32044782:-1246098 +) +(1,269:6764466,32044782:1246098,754393,260573 +) +k1,269:8194995,32044782:184431 +k1,269:8522675,32044782:327680 +k1,269:10943849,32044782:184430 +k1,269:14337578,32044782:184431 +k1,269:15710831,32044782:184430 +k1,269:16554554,32044782:184431 +k1,269:20545970,32044782:184430 +k1,269:22014907,32044782:184431 +k1,269:23821353,32044782:184430 +k1,269:24753550,32044782:184431 +k1,269:28965167,32044782:184430 +k1,269:30847636,32044782:184431 +k1,270:32583029,32044782:0 +) +(1,270:6764466,32909862:25818563,513147,134348 +k1,269:9141159,32909862:236942 +k1,269:13440679,32909862:236943 +k1,269:14336913,32909862:236942 +k1,269:16265995,32909862:236942 +k1,269:19227270,32909862:236943 +k1,269:20536381,32909862:236942 +k1,269:24156292,32909862:236943 +k1,269:26668644,32909862:236942 +k1,269:27564878,32909862:236942 +k1,269:28820906,32909862:236943 +k1,269:31900144,32909862:236942 +k1,269:32583029,32909862:0 +) +(1,270:6764466,33774942:25818563,505283,126483 +g1,269:9795506,33774942 +g1,269:11279241,33774942 +g1,269:12094508,33774942 +g1,269:13274811,33774942 +g1,269:16887155,33774942 +g1,269:18077944,33774942 +g1,269:20078102,33774942 +g1,269:22527182,33774942 +g1,269:23487939,33774942 +g1,269:25431081,33774942 +g1,269:26913505,33774942 +g1,269:27764162,33774942 +k1,270:32583029,33774942:4230354 +g1,270:32583029,33774942 +) +] +g1,270:32583029,33901425 +) +h1,270:6630773,33901425:0,0,0 +v1,273:6630773,34766505:0,393216,0 +(1,274:6630773,37037690:25952256,2664401,0 +g1,274:6630773,37037690 +g1,274:6237557,37037690 +r1,287:6368629,37037690:131072,2664401,0 +g1,274:6567858,37037690 +g1,274:6764466,37037690 +[1,274:6764466,37037690:25818563,2664401,0 +(1,274:6764466,35181047:25818563,807758,219026 +(1,273:6764466,35181047:0,807758,219026 +r1,287:7908217,35181047:1143751,1026784,219026 +k1,273:6764466,35181047:-1143751 +) +(1,273:6764466,35181047:1143751,807758,219026 +) +g1,273:8107446,35181047 +g1,273:8435126,35181047 +g1,273:12234903,35181047 +g1,273:14371376,35181047 +k1,273:32583029,35181047:15351006 +g1,274:32583029,35181047 +) +(1,274:6764466,36046127:25818563,513147,134348 +k1,273:9183319,36046127:182109 +k1,273:10346502,36046127:182109 +k1,273:12786326,36046127:182109 +k1,273:13619863,36046127:182109 +k1,273:14157832,36046127:182109 +k1,273:17104250,36046127:182109 +k1,273:18570865,36046127:182109 +k1,273:18965949,36046127:182092 +k1,273:21218997,36046127:182110 +k1,273:22052534,36046127:182109 +k1,273:22982409,36046127:182109 +k1,273:25141739,36046127:182109 +k1,273:25975276,36046127:182109 +k1,273:28535687,36046127:182109 +k1,273:30572465,36046127:182109 +k1,273:31563944,36046127:182109 +k1,273:32583029,36046127:0 +) +(1,274:6764466,36911207:25818563,513147,126483 +g1,273:10283094,36911207 +g1,273:11141615,36911207 +g1,273:13542854,36911207 +g1,273:14424968,36911207 +g1,273:16845868,36911207 +g1,273:20139707,36911207 +g1,273:22509488,36911207 +g1,273:23324755,36911207 +g1,273:25714853,36911207 +k1,274:32583029,36911207:4381740 +g1,274:32583029,36911207 +) +] +g1,274:32583029,37037690 +) +h1,274:6630773,37037690:0,0,0 +v1,277:6630773,37902770:0,393216,0 +(1,278:6630773,41643430:25952256,4133876,0 +g1,278:6630773,41643430 +g1,278:6237557,41643430 +r1,287:6368629,41643430:131072,4133876,0 +g1,278:6567858,41643430 +g1,278:6764466,41643430 +[1,278:6764466,41643430:25818563,4133876,0 +(1,278:6764466,38175247:25818563,665693,196608 +(1,277:6764466,38175247:0,665693,196608 +r1,287:8010564,38175247:1246098,862301,196608 +k1,277:6764466,38175247:-1246098 +) +(1,277:6764466,38175247:1246098,665693,196608 +) +k1,277:8236720,38175247:226156 +k1,277:9554649,38175247:327680 +k1,277:12017548,38175247:226155 +k1,277:16201424,38175247:226156 +k1,277:19789576,38175247:226155 +k1,277:23757182,38175247:226156 +k1,277:29184930,38175247:226155 +k1,277:30602531,38175247:226156 +k1,277:32583029,38175247:0 +) +(1,278:6764466,39040327:25818563,513147,126483 +k1,277:7687346,39040327:255724 +k1,277:8357856,39040327:255667 +k1,277:10109767,39040327:255724 +k1,277:11016918,39040327:255723 +k1,277:12615475,39040327:255724 +k1,277:14265150,39040327:255724 +k1,277:15133636,39040327:255724 +k1,277:16408444,39040327:255723 +k1,277:17078954,39040327:255667 +k1,277:19928593,39040327:255724 +k1,277:20397252,39040327:255667 +k1,277:22723914,39040327:255724 +k1,277:25357940,39040327:255724 +k1,277:26265092,39040327:255724 +k1,277:27638859,39040327:255723 +k1,277:29591310,39040327:255724 +k1,277:32583029,39040327:0 +) +(1,278:6764466,39905407:25818563,513147,134348 +k1,277:8454892,39905407:223730 +k1,277:9364784,39905407:223730 +k1,277:10120010,39905407:223729 +k1,277:11535185,39905407:223730 +k1,277:13272141,39905407:223730 +k1,277:16068159,39905407:223730 +k1,277:19448102,39905407:223729 +k1,277:20433360,39905407:223730 +k1,277:22873518,39905407:223730 +k1,277:24116333,39905407:223730 +k1,277:26009919,39905407:223729 +k1,277:29007788,39905407:223730 +k1,277:30250603,39905407:223730 +k1,277:32583029,39905407:0 +) +(1,278:6764466,40770487:25818563,513147,134348 +k1,277:7638666,40770487:191315 +k1,277:10853158,40770487:191316 +k1,277:14253771,40770487:191315 +k1,277:17223813,40770487:191315 +k1,277:18176657,40770487:191316 +k1,277:18782807,40770487:191307 +k1,277:19590161,40770487:191316 +k1,277:21233098,40770487:191315 +k1,277:22965164,40770487:191315 +k1,277:26487675,40770487:191316 +k1,277:27440518,40770487:191315 +k1,277:30049457,40770487:191316 +k1,277:31188423,40770487:191315 +k1,277:32583029,40770487:0 +) +(1,278:6764466,41635567:25818563,513147,7863 +k1,278:32583029,41635567:22665626 +g1,278:32583029,41635567 +) +] +g1,278:32583029,41643430 +) +h1,278:6630773,41643430:0,0,0 +v1,281:6630773,42508510:0,393216,0 +(1,282:6630773,44681316:25952256,2566022,0 +g1,282:6630773,44681316 +g1,282:6237557,44681316 +r1,287:6368629,44681316:131072,2566022,0 +g1,282:6567858,44681316 +g1,282:6764466,44681316 +[1,282:6764466,44681316:25818563,2566022,0 +(1,282:6764466,42816808:25818563,701514,196608 +(1,281:6764466,42816808:0,701514,196608 +r1,287:8863446,42816808:2098980,898122,196608 +k1,281:6764466,42816808:-2098980 +) +(1,281:6764466,42816808:2098980,701514,196608 +) +k1,281:9055480,42816808:192034 +k1,281:10373409,42816808:327680 +k1,281:12802187,42816808:192034 +k1,281:16025916,42816808:192034 +k1,281:20175670,42816808:192034 +k1,281:22976692,42816808:192034 +k1,281:24453233,42816808:192035 +k1,281:26937061,42816808:192034 +k1,281:28779292,42816808:192034 +k1,281:30396734,42816808:192034 +k1,281:31240196,42816808:192034 +k1,281:32583029,42816808:0 +) +(1,282:6764466,43681888:25818563,513147,134348 +k1,281:8438037,43681888:279620 +k1,281:10760415,43681888:279621 +k1,281:13799756,43681888:279620 +k1,281:16911187,43681888:279620 +k1,281:18633255,43681888:279621 +k1,281:21186974,43681888:279620 +k1,281:25148406,43681888:279620 +k1,281:28210686,43681888:279621 +k1,281:31821501,43681888:279620 +k1,281:32583029,43681888:0 +) +(1,282:6764466,44546968:25818563,505283,134348 +g1,281:9381318,44546968 +g1,281:12260970,44546968 +g1,281:13854150,44546968 +g1,281:15755349,44546968 +k1,282:32583029,44546968:12673353 +g1,282:32583029,44546968 +) +] +g1,282:32583029,44681316 +) +h1,282:6630773,44681316:0,0,0 +] +(1,287:32583029,45706769:0,0,0 +g1,287:32583029,45706769 +) +) +] +(1,287:6630773,47279633:25952256,0,0 +h1,287:6630773,47279633:25952256,0,0 +) +] +(1,287:4262630,4025873:0,0,0 +[1,287:-473656,4025873:0,0,0 +(1,287:-473656,-710413:0,0,0 +(1,287:-473656,-710413:0,0,0 +g1,287:-473656,-710413 +) +g1,287:-473656,-710413 +) +] +) +] +!22808 +}18 +Input:199:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:200:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:201:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:202:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:203:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:204:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:205:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!662 +{19 +[1,345:4262630,47279633:28320399,43253760,0 +(1,345:4262630,4025873:0,0,0 +[1,345:-473656,4025873:0,0,0 +(1,345:-473656,-710413:0,0,0 +(1,345:-473656,-644877:0,0,0 +k1,345:-473656,-644877:-65536 ) -g1,144:3062174,49800853 -(1,144:3062174,52029077:16384,1703936,0 -[1,144:3062174,52029077:25952256,1703936,0 -(1,144:3062174,51504789:25952256,1179648,0 -(1,144:3062174,51504789:16384,1179648,0 -r1,220:3078558,51504789:16384,1179648,0 +(1,345:-473656,4736287:0,0,0 +k1,345:-473656,4736287:5209943 ) -k1,144:29014430,51504789:25935872 -g1,144:29014430,51504789 -) -] -) -) -) -] -[1,220:3078558,4812305:0,0,0 -(1,220:3078558,49800853:0,16384,2228224 -g1,220:29030814,49800853 -g1,220:36135244,49800853 -(1,144:36135244,49800853:1720320,16384,2228224 -(1,144:36135244,52029077:16384,1703936,0 -[1,144:36135244,52029077:25952256,1703936,0 -(1,144:36135244,51504789:25952256,1179648,0 -(1,144:36135244,51504789:16384,1179648,0 -r1,220:36151628,51504789:16384,1179648,0 -) -k1,144:62087500,51504789:25935872 -g1,144:62087500,51504789 +g1,345:-473656,-710413 ) ] ) -g1,144:36675916,49800853 -(1,144:36675916,49800853:1179648,16384,0 -r1,220:37855564,49800853:1179648,16384,0 +[1,345:6630773,47279633:25952256,43253760,0 +[1,345:6630773,4812305:25952256,786432,0 +(1,345:6630773,4812305:25952256,505283,134348 +(1,345:6630773,4812305:25952256,505283,134348 +g1,345:3078558,4812305 +[1,345:3078558,4812305:0,0,0 +(1,345:3078558,2439708:0,1703936,0 +k1,345:1358238,2439708:-1720320 +(1,218:1358238,2439708:1720320,1703936,0 +(1,218:1358238,2439708:1179648,16384,0 +r1,345:2537886,2439708:1179648,16384,0 ) +g1,218:3062174,2439708 +(1,218:3062174,2439708:16384,1703936,0 +[1,218:3062174,2439708:25952256,1703936,0 +(1,218:3062174,1915420:25952256,1179648,0 +(1,218:3062174,1915420:16384,1179648,0 +r1,345:3078558,1915420:16384,1179648,0 ) -k1,220:3078556,49800853:-34777008 +k1,218:29014430,1915420:25935872 +g1,218:29014430,1915420 ) ] -g1,220:6630773,4812305 -g1,220:6630773,4812305 -g1,220:9163084,4812305 -k1,220:31458432,4812305:22295348 -) -) -] -[1,220:6630773,45706769:25952256,40108032,0 -(1,220:6630773,45706769:25952256,40108032,0 -(1,220:6630773,45706769:0,0,0 -g1,220:6630773,45706769 -) -[1,220:6630773,45706769:25952256,40108032,0 -(1,168:6630773,6254097:25952256,505283,134348 -k1,167:10862679,6254097:280740 -k1,167:11356328,6254097:280657 -k1,167:13112283,6254097:280740 -k1,167:16030192,6254097:280740 -k1,167:17330016,6254097:280739 -k1,167:19192795,6254097:280740 -k1,167:23156658,6254097:280740 -k1,167:25796038,6254097:280739 -k1,167:26534875,6254097:280740 -k1,167:28465811,6254097:280739 -k1,167:31931601,6254097:280740 -k1,167:32583029,6254097:0 -) -(1,168:6630773,7095585:25952256,505283,134348 -k1,167:9236011,7095585:226936 -k1,167:10856897,7095585:226935 -k1,167:11893203,7095585:226936 -k1,167:14874617,7095585:226936 -k1,167:18514668,7095585:226936 -k1,167:19357641,7095585:226935 -k1,167:22660837,7095585:226936 -k1,167:27413689,7095585:226936 -k1,167:27853589,7095585:226908 -k1,167:29555739,7095585:226935 -k1,167:31748100,7095585:226936 -k1,168:32583029,7095585:0 -) -(1,168:6630773,7937073:25952256,513147,134348 -k1,167:9177065,7937073:221730 -k1,167:10590240,7937073:221730 -k1,167:14141854,7937073:221730 -k1,167:15015012,7937073:221730 -k1,167:18015469,7937073:221730 -k1,167:23159608,7937073:221730 -k1,167:24040630,7937073:221730 -k1,167:27039776,7937073:221730 -k1,167:31613752,7937073:221730 -k1,168:32583029,7937073:0 -) -(1,168:6630773,8778561:25952256,513147,7863 -k1,167:10136427,8778561:169216 -k1,167:10518605,8778561:169186 -k1,167:11973637,8778561:169216 -k1,167:14137113,8778561:169215 -k1,167:15325414,8778561:169216 -k1,167:16720809,8778561:169216 -k1,167:18457646,8778561:169216 -k1,167:19645946,8778561:169215 -k1,167:21121295,8778561:169216 -k1,167:23527255,8778561:169216 -k1,167:24347899,8778561:169216 -k1,167:25312722,8778561:169216 -k1,167:26248053,8778561:169215 -k1,167:28354513,8778561:169216 -k1,167:29715174,8778561:169216 -k1,167:32583029,8778561:0 -) -(1,168:6630773,9620049:25952256,505283,126483 -g1,167:9821721,9620049 -g1,167:10703835,9620049 -g1,167:14965641,9620049 -g1,167:17302654,9620049 -g1,167:18153311,9620049 -k1,168:32583029,9620049:13288736 -g1,168:32583029,9620049 -) -(1,169:6630773,12427617:25952256,32768,229376 -(1,169:6630773,12427617:0,32768,229376 -(1,169:6630773,12427617:5505024,32768,229376 -r1,220:12135797,12427617:5505024,262144,229376 -) -k1,169:6630773,12427617:-5505024 -) -(1,169:6630773,12427617:25952256,32768,0 -r1,220:32583029,12427617:25952256,32768,0 -) -) -(1,169:6630773,14031945:25952256,606339,161218 -(1,169:6630773,14031945:0,0,0 -g1,169:6630773,14031945 -) -k1,169:32583028,14031945:18137480 -g1,169:32583028,14031945 -) -(1,171:6630773,15266649:25952256,513147,134348 -k1,170:6990692,15266649:146927 -k1,170:8972679,15266649:146979 -k1,170:11287588,15266649:146978 -k1,170:14474782,15266649:146979 -k1,170:15569412,15266649:146979 -k1,170:19431627,15266649:146979 -k1,170:20545917,15266649:146979 -k1,170:21344323,15266649:146978 -k1,170:22510387,15266649:146979 -k1,170:24091294,15266649:146979 -k1,170:25521468,15266649:146979 -k1,170:26256960,15266649:146979 -k1,170:28280234,15266649:146978 -k1,170:29446298,15266649:146979 -k1,170:30831252,15266649:146979 -k1,170:32583029,15266649:0 -) -(1,171:6630773,16108137:25952256,513147,126483 -k1,170:8202108,16108137:292728 -k1,170:10632619,16108137:292727 -k1,170:12116792,16108137:292728 -k1,170:13475790,16108137:292727 -k1,170:14493346,16108137:292728 -k1,170:17166341,16108137:292727 -k1,170:19815088,16108137:292728 -k1,170:21583030,16108137:292727 -k1,170:24901555,16108137:292728 -k1,170:26175356,16108137:292727 -k1,170:29562694,16108137:292728 -k1,170:30471459,16108137:292727 -k1,170:32583029,16108137:0 -) -(1,171:6630773,16949625:25952256,513147,126483 -k1,170:8040051,16949625:217833 -k1,170:9908081,16949625:217833 -k1,170:12680507,16949625:217833 -k1,170:13514378,16949625:217833 -k1,170:18397718,16949625:217832 -k1,170:18828525,16949625:217815 -k1,170:20513709,16949625:217833 -k1,170:21382970,16949625:217833 -k1,170:23952234,16949625:217832 -k1,170:26005075,16949625:217833 -k1,170:29176616,16949625:217833 -k1,170:30053741,16949625:217833 -k1,170:31252648,16949625:217833 -k1,170:32583029,16949625:0 -) -(1,171:6630773,17791113:25952256,505283,134348 -k1,170:9590861,17791113:254106 -k1,170:11911317,17791113:254106 -k1,170:14937596,17791113:254106 -k1,170:19273284,17791113:254106 -k1,170:20143428,17791113:254106 -k1,170:21416619,17791113:254106 -k1,170:24109974,17791113:254105 -k1,170:24577017,17791113:254051 -k1,170:26306338,17791113:254106 -k1,170:28807674,17791113:254106 -k1,170:32370037,17791113:254106 -k1,170:32583029,17791113:0 -) -(1,171:6630773,18632601:25952256,513147,126483 -k1,170:8349788,18632601:243800 -k1,170:12551964,18632601:243801 -k1,170:14363385,18632601:243800 -k1,170:17062819,18632601:243800 -k1,170:17965911,18632601:243800 -k1,170:19228797,18632601:243801 -k1,170:21384938,18632601:243800 -k1,170:21841685,18632601:243755 -k1,170:23560701,18632601:243801 -k1,170:25216802,18632601:243800 -k1,170:26652047,18632601:243800 -k1,170:29031665,18632601:243800 -k1,170:29488413,18632601:243756 -k1,170:31207428,18632601:243800 -k1,170:32583029,18632601:0 -) -(1,171:6630773,19474089:25952256,513147,126483 -k1,170:8016000,19474089:161014 -k1,170:10154890,19474089:161013 -k1,170:10998789,19474089:161014 -k1,170:11772565,19474089:161014 -k1,170:15924065,19474089:161013 -k1,170:16982922,19474089:161014 -k1,170:17803228,19474089:161014 -k1,170:19603296,19474089:161013 -k1,170:21239525,19474089:161014 -k1,170:23144452,19474089:161014 -k1,170:23763563,19474089:161014 -k1,170:26554536,19474089:161013 -k1,170:27663201,19474089:161014 -k1,170:28791526,19474089:161014 -k1,170:29603967,19474089:161013 -k1,170:31379788,19474089:161014 -k1,170:32583029,19474089:0 -) -(1,171:6630773,20315577:25952256,505283,134348 -k1,170:8646428,20315577:259945 -k1,170:9119304,20315577:259884 -k1,170:10355080,20315577:259945 -k1,170:13424553,20315577:259945 -k1,170:14335926,20315577:259945 -k1,170:16257209,20315577:259945 -k1,170:18469472,20315577:259945 -k1,170:20234779,20315577:259945 -k1,170:23924223,20315577:259945 -k1,170:27471454,20315577:259945 -k1,170:31078978,20315577:259945 -k1,170:32583029,20315577:0 -) -(1,171:6630773,21157065:25952256,505283,134348 -k1,170:8738112,21157065:182547 -k1,170:10135698,21157065:182548 -k1,170:11706953,21157065:182547 -k1,170:13499721,21157065:182548 -k1,170:14857984,21157065:182547 -k1,170:17386066,21157065:182548 -k1,170:19718849,21157065:182547 -k1,170:21450013,21157065:182548 -k1,170:24107199,21157065:182547 -k1,170:25708601,21157065:182548 -k1,170:29101101,21157065:182547 -k1,170:32583029,21157065:0 -) -(1,171:6630773,21998553:25952256,513147,126483 -k1,170:9603009,21998553:200063 -k1,170:10994518,21998553:200064 -k1,170:14895399,21998553:200063 -k1,170:18123881,21998553:200063 -k1,170:19271595,21998553:200063 -k1,170:21223436,21998553:200064 -k1,170:22777473,21998553:200063 -k1,170:25250325,21998553:200063 -k1,170:28767820,21998553:200063 -k1,170:29777254,21998553:200064 -k1,170:30996402,21998553:200063 -k1,170:32583029,21998553:0 -) -(1,171:6630773,22840041:25952256,513147,126483 -k1,170:10450628,22840041:183262 -k1,170:12843765,22840041:183263 -k1,170:14046112,22840041:183262 -k1,170:17384933,22840041:183262 -k1,170:18874328,22840041:183262 -k1,170:21468005,22840041:183263 -k1,170:22891208,22840041:183262 -k1,170:25257474,22840041:183262 -k1,170:27349800,22840041:183262 -k1,170:28192355,22840041:183263 -k1,170:29842313,22840041:183262 -k1,170:32583029,22840041:0 -) -(1,171:6630773,23681529:25952256,505283,134348 -k1,170:9694945,23681529:213356 -k1,170:14818258,23681529:213356 -k1,170:16425565,23681529:213356 -k1,170:18261592,23681529:213356 -k1,170:21326420,23681529:213357 -k1,170:22904891,23681529:213356 -k1,170:25644660,23681529:213356 -k1,170:28380497,23681529:213356 -k1,170:30527820,23681529:213356 -k1,170:32583029,23681529:0 -) -(1,171:6630773,24523017:25952256,513147,134348 -g1,170:9553678,24523017 -g1,170:10944352,24523017 -g1,170:12494933,24523017 -g1,170:14269648,24523017 -g1,170:15416528,24523017 -g1,170:17124396,24523017 -g1,170:18711678,24523017 -g1,170:20304858,24523017 -g1,170:23266430,24523017 -g1,170:25840684,24523017 -g1,170:26699205,24523017 -g1,170:28101675,24523017 -k1,171:32583029,24523017:2039483 -g1,171:32583029,24523017 -) -(1,174:6630773,25364505:25952256,505283,126483 -h1,172:6630773,25364505:983040,0,0 -k1,172:8491059,25364505:249411 -k1,172:10492247,25364505:249411 -k1,172:12309935,25364505:249411 -k1,172:13762588,25364505:249412 -k1,172:15238178,25364505:249411 -k1,172:17080769,25364505:249411 -k1,172:19113415,25364505:249411 -k1,172:21013023,25364505:249411 -k1,172:21913862,25364505:249411 -k1,172:24299091,25364505:249411 -k1,172:25878884,25364505:249412 -k1,172:27119855,25364505:249411 -k1,172:28435537,25364505:249411 -k1,172:31140582,25364505:249411 -k1,172:32583029,25364505:0 -) -(1,174:6630773,26205993:25952256,513147,134348 -k1,172:7491138,26205993:208937 -k1,172:10002356,26205993:208938 -k1,172:13145995,26205993:208937 -k1,172:14041095,26205993:208938 -k1,172:14463015,26205993:208928 -k1,172:15647783,26205993:208937 -k1,172:16875806,26205993:208938 -k1,172:18241453,26205993:208937 -k1,172:19780772,26205993:208938 -k1,172:21090714,26205993:208937 -k1,172:23586203,26205993:208938 -k1,172:25629493,26205993:208937 -k1,172:26461678,26205993:208938 -k1,172:27448527,26205993:208937 -k1,172:28055924,26205993:208938 -k1,172:31391584,26205993:208937 -k1,172:32583029,26205993:0 -) -(1,174:6630773,27047481:25952256,513147,126483 -k1,172:9346032,27047481:223580 -k1,172:11118228,27047481:223580 -k1,172:11993237,27047481:223581 -k1,172:14554486,27047481:223580 -k1,172:15969511,27047481:223580 -k1,172:18800769,27047481:223580 -k1,172:19237317,27047481:223556 -k1,172:20813560,27047481:223580 -k1,172:22127004,27047481:223580 -k1,172:26704141,27047481:223580 -k1,172:27875373,27047481:223581 -k1,172:29230760,27047481:223580 -k1,172:31391584,27047481:223580 -k1,172:32583029,27047481:0 -) -(1,174:6630773,27888969:25952256,473825,7863 -k1,173:32583029,27888969:21868052 -g1,174:32583029,27888969 -) -(1,174:6630773,30595136:25952256,0,0 -g1,174:6630773,30595136 -) -(1,176:6630773,31436624:25952256,505283,126483 -h1,175:6630773,31436624:983040,0,0 -g1,175:10584560,31436624 -g1,175:14167413,31436624 -g1,175:14938771,31436624 -k1,176:32583029,31436624:16050422 -g1,176:32583029,31436624 -) -] -(1,220:32583029,45706769:0,0,0 -g1,220:32583029,45706769 -) -) -] -(1,220:6630773,47279633:25952256,0,0 -h1,220:6630773,47279633:25952256,0,0 -) -] -(1,220:4262630,4025873:0,0,0 -[1,220:-473656,4025873:0,0,0 -(1,220:-473656,-710413:0,0,0 -(1,220:-473656,-710413:0,0,0 -g1,220:-473656,-710413 -) -g1,220:-473656,-710413 -) -] -) -] -!13256 -}14 -!11 -{15 -[1,220:4262630,47279633:28320399,43253760,0 -(1,220:4262630,4025873:0,0,0 -[1,220:-473656,4025873:0,0,0 -(1,220:-473656,-710413:0,0,0 -(1,220:-473656,-644877:0,0,0 -k1,220:-473656,-644877:-65536 ) -(1,220:-473656,4736287:0,0,0 -k1,220:-473656,4736287:5209943 ) -g1,220:-473656,-710413 +) +] +[1,345:3078558,4812305:0,0,0 +(1,345:3078558,2439708:0,1703936,0 +g1,345:29030814,2439708 +g1,345:36135244,2439708 +(1,218:36135244,2439708:1720320,1703936,0 +(1,218:36135244,2439708:16384,1703936,0 +[1,218:36135244,2439708:25952256,1703936,0 +(1,218:36135244,1915420:25952256,1179648,0 +(1,218:36135244,1915420:16384,1179648,0 +r1,345:36151628,1915420:16384,1179648,0 +) +k1,218:62087500,1915420:25935872 +g1,218:62087500,1915420 ) ] ) -[1,220:6630773,47279633:25952256,43253760,0 -[1,220:6630773,4812305:25952256,786432,0 -(1,220:6630773,4812305:25952256,0,0 -(1,220:6630773,4812305:25952256,0,0 -g1,220:3078558,4812305 -[1,220:3078558,4812305:0,0,0 -(1,220:3078558,2439708:0,1703936,0 -k1,220:1358238,2439708:-1720320 -(1,220:1358238,2439708:1720320,1703936,0 -(1,220:1358238,2439708:1179648,16384,0 -r1,220:2537886,2439708:1179648,16384,0 +g1,218:36675916,2439708 +(1,218:36675916,2439708:1179648,16384,0 +r1,345:37855564,2439708:1179648,16384,0 ) -g1,220:3062174,2439708 -(1,220:3062174,2439708:16384,1703936,0 -[1,220:3062174,2439708:25952256,1703936,0 -(1,220:3062174,1915420:25952256,1179648,0 -(1,220:3062174,1915420:16384,1179648,0 -r1,220:3078558,1915420:16384,1179648,0 ) -k1,220:29014430,1915420:25935872 -g1,220:29014430,1915420 +k1,345:3078556,2439708:-34777008 ) ] +[1,345:3078558,4812305:0,0,0 +(1,345:3078558,49800853:0,16384,2228224 +k1,345:1358238,49800853:-1720320 +(1,218:1358238,49800853:1720320,16384,2228224 +(1,218:1358238,49800853:1179648,16384,0 +r1,345:2537886,49800853:1179648,16384,0 ) +g1,218:3062174,49800853 +(1,218:3062174,52029077:16384,1703936,0 +[1,218:3062174,52029077:25952256,1703936,0 +(1,218:3062174,51504789:25952256,1179648,0 +(1,218:3062174,51504789:16384,1179648,0 +r1,345:3078558,51504789:16384,1179648,0 ) +k1,218:29014430,51504789:25935872 +g1,218:29014430,51504789 ) ] -[1,220:3078558,4812305:0,0,0 -(1,220:3078558,2439708:0,1703936,0 -g1,220:29030814,2439708 -g1,220:36135244,2439708 -(1,220:36135244,2439708:1720320,1703936,0 -(1,220:36135244,2439708:16384,1703936,0 -[1,220:36135244,2439708:25952256,1703936,0 -(1,220:36135244,1915420:25952256,1179648,0 -(1,220:36135244,1915420:16384,1179648,0 -r1,220:36151628,1915420:16384,1179648,0 ) -k1,220:62087500,1915420:25935872 -g1,220:62087500,1915420 ) -] ) -g1,220:36675916,2439708 -(1,220:36675916,2439708:1179648,16384,0 -r1,220:37855564,2439708:1179648,16384,0 +] +[1,345:3078558,4812305:0,0,0 +(1,345:3078558,49800853:0,16384,2228224 +g1,345:29030814,49800853 +g1,345:36135244,49800853 +(1,218:36135244,49800853:1720320,16384,2228224 +(1,218:36135244,52029077:16384,1703936,0 +[1,218:36135244,52029077:25952256,1703936,0 +(1,218:36135244,51504789:25952256,1179648,0 +(1,218:36135244,51504789:16384,1179648,0 +r1,345:36151628,51504789:16384,1179648,0 +) +k1,218:62087500,51504789:25935872 +g1,218:62087500,51504789 +) +] +) +g1,218:36675916,49800853 +(1,218:36675916,49800853:1179648,16384,0 +r1,345:37855564,49800853:1179648,16384,0 +) +) +k1,345:3078556,49800853:-34777008 +) +] +g1,345:6630773,4812305 +k1,345:24492612,4812305:17463380 +g1,345:26454104,4812305 +g1,345:27638994,4812305 +g1,345:29336376,4812305 +g1,345:30135259,4812305 +g1,345:32168841,4812305 +) +) +] +[1,345:6630773,45706769:25952256,40108032,0 +(1,345:6630773,45706769:25952256,40108032,0 +(1,345:6630773,45706769:0,0,0 +g1,345:6630773,45706769 +) +[1,345:6630773,45706769:25952256,40108032,0 +(1,284:6630773,6254097:25952256,555811,147783 +(1,284:6630773,6254097:2450326,534184,12975 +g1,284:6630773,6254097 +g1,284:9081099,6254097 +) +g1,284:11138537,6254097 +g1,284:15828687,6254097 +g1,284:17395915,6254097 +g1,284:20061068,6254097 +k1,284:32583029,6254097:8123053 +g1,284:32583029,6254097 +) +(1,287:6630773,7512393:25952256,513147,134348 +k1,286:8514606,7512393:142541 +k1,286:11266134,7512393:142540 +k1,286:12067967,7512393:142541 +k1,286:14952534,7512393:142541 +k1,286:16591261,7512393:142540 +k1,286:20727566,7512393:142541 +k1,286:22880096,7512393:142541 +k1,286:24041721,7512393:142540 +k1,286:25776132,7512393:142541 +k1,286:27318522,7512393:142541 +k1,286:29683388,7512393:142540 +k1,286:30845014,7512393:142541 +k1,286:32583029,7512393:0 +) +(1,287:6630773,8377473:25952256,513147,134348 +k1,286:7492834,8377473:202769 +k1,286:9119699,8377473:202768 +k1,286:11710600,8377473:202769 +k1,286:12541204,8377473:202769 +k1,286:13947213,8377473:202768 +k1,286:15732676,8377473:202769 +k1,286:16350284,8377473:202765 +k1,286:18049240,8377473:202769 +k1,286:20552977,8377473:202768 +k1,286:21747306,8377473:202769 +k1,286:24270704,8377473:202768 +k1,286:25089511,8377473:202769 +k1,286:25648140,8377473:202769 +k1,286:29140160,8377473:202768 +k1,286:30847636,8377473:202769 +k1,286:32583029,8377473:0 +) +(1,287:6630773,9242553:25952256,513147,134348 +k1,286:8910880,9242553:249146 +k1,286:9811454,9242553:249146 +k1,286:12917970,9242553:249146 +k1,286:14186200,9242553:249145 +k1,286:17197689,9242553:249146 +k1,286:20316001,9242553:249146 +k1,286:21224439,9242553:249146 +k1,286:22492670,9242553:249146 +k1,286:24999530,9242553:249145 +k1,286:26742242,9242553:249146 +k1,286:27677550,9242553:249146 +k1,286:30942007,9242553:249146 +k1,287:32583029,9242553:0 +) +(1,287:6630773,10107633:25952256,505283,126483 +k1,286:8685661,10107633:283450 +k1,286:11726866,10107633:283450 +k1,286:14194631,10107633:283450 +k1,286:15589573,10107633:283451 +k1,286:16287781,10107633:283365 +k1,286:18067418,10107633:283450 +k1,286:21220034,10107633:283450 +k1,286:24828126,10107633:283451 +k1,286:25727614,10107633:283450 +k1,286:27030149,10107633:283450 +k1,286:28539778,10107633:283450 +k1,286:29814788,10107633:283450 +k1,286:32583029,10107633:0 +) +(1,287:6630773,10972713:25952256,505283,126483 +k1,286:9114350,10972713:162947 +k1,286:10349467,10972713:162948 +k1,286:12641679,10972713:162947 +k1,286:14665848,10972713:162947 +k1,286:15870818,10972713:162948 +k1,286:18695182,10972713:162947 +k1,286:19474167,10972713:162947 +k1,286:20656199,10972713:162947 +k1,286:22315334,10972713:162948 +k1,286:24448949,10972713:162947 +k1,286:26480327,10972713:162947 +(1,286:26480327,10972713:0,452978,115847 +r1,345:28597152,10972713:2116825,568825,115847 +k1,286:26480327,10972713:-2116825 +) +(1,286:26480327,10972713:2116825,452978,115847 +k1,286:26480327,10972713:3277 +h1,286:28593875,10972713:0,411205,112570 +) +k1,286:28760100,10972713:162948 +k1,286:30114492,10972713:162947 +(1,286:30114492,10972713:0,452978,115847 +r1,345:32583029,10972713:2468537,568825,115847 +k1,286:30114492,10972713:-2468537 +) +(1,286:30114492,10972713:2468537,452978,115847 +k1,286:30114492,10972713:3277 +h1,286:32579752,10972713:0,411205,112570 +) +k1,286:32583029,10972713:0 +) +(1,287:6630773,11837793:25952256,513147,115847 +k1,286:7821035,11837793:198702 +k1,286:11219206,11837793:198703 +k1,286:11990037,11837793:198702 +k1,286:12587198,11837793:198702 +k1,286:13977345,11837793:198702 +k1,286:14574507,11837793:198703 +k1,286:15764769,11837793:198702 +k1,286:18721226,11837793:198702 +k1,286:21540058,11837793:198703 +k1,286:23923075,11837793:198702 +k1,286:25313222,11837793:198702 +(1,286:25313222,11837793:0,414482,115847 +r1,345:25671488,11837793:358266,530329,115847 +k1,286:25313222,11837793:-358266 +) +(1,286:25313222,11837793:358266,414482,115847 +k1,286:25313222,11837793:3277 +h1,286:25668211,11837793:0,411205,112570 +) +k1,286:25870191,11837793:198703 +k1,286:26600390,11837793:198702 +k1,286:27818177,11837793:198702 +k1,286:29754894,11837793:198702 +k1,286:30612889,11837793:198703 +k1,286:31167451,11837793:198702 +k1,287:32583029,11837793:0 +) +(1,287:6630773,12702873:25952256,513147,126483 +k1,286:8175151,12702873:235624 +k1,286:10329668,12702873:235623 +k1,286:11584377,12702873:235624 +k1,286:13662873,12702873:235624 +k1,286:14557789,12702873:235624 +k1,286:15812497,12702873:235623 +k1,286:20112008,12702873:235624 +k1,286:21925084,12702873:235624 +k1,286:22776746,12702873:235624 +k1,286:24031454,12702873:235623 +k1,286:25573211,12702873:235624 +k1,286:26977342,12702873:235624 +k1,286:27872258,12702873:235624 +k1,286:29604068,12702873:235623 +k1,286:30371189,12702873:235624 +k1,286:32583029,12702873:0 +) +(1,287:6630773,13567953:25952256,505283,134348 +k1,286:8029482,13567953:202022 +k1,286:9400011,13567953:202022 +k1,286:12080605,13567953:202022 +k1,286:13676578,13567953:202022 +(1,286:13676578,13567953:0,424981,115847 +r1,345:14386556,13567953:709978,540828,115847 +k1,286:13676578,13567953:-709978 +) +(1,286:13676578,13567953:709978,424981,115847 +k1,286:13676578,13567953:3277 +h1,286:14383279,13567953:0,411205,112570 +) +k1,286:14588578,13567953:202022 +k1,286:16781584,13567953:202022 +k1,286:18532223,13567953:202023 +k1,286:19265742,13567953:202022 +k1,286:21817885,13567953:202022 +k1,286:22702792,13567953:202022 +k1,286:24980339,13567953:202022 +k1,286:26880399,13567953:202022 +k1,286:30137709,13567953:202022 +k1,286:31358816,13567953:202022 +k1,287:32583029,13567953:0 +) +(1,287:6630773,14433033:25952256,513147,134348 +k1,286:8064427,14433033:203543 +k1,286:11628001,14433033:203543 +(1,286:11628001,14433033:0,452978,115847 +r1,345:13393114,14433033:1765113,568825,115847 +k1,286:11628001,14433033:-1765113 +) +(1,286:11628001,14433033:1765113,452978,115847 +g1,286:13038125,14433033 +h1,286:13389837,14433033:0,411205,112570 +) +k1,286:13770327,14433033:203543 +k1,286:14601705,14433033:203543 +k1,286:15824333,14433033:203543 +k1,286:17610570,14433033:203543 +(1,286:17610570,14433033:0,424981,115847 +r1,345:18320548,14433033:709978,540828,115847 +k1,286:17610570,14433033:-709978 +) +(1,286:17610570,14433033:709978,424981,115847 +k1,286:17610570,14433033:3277 +h1,286:18317271,14433033:0,411205,112570 +) +k1,286:18524091,14433033:203543 +k1,286:19259131,14433033:203543 +k1,286:20975900,14433033:203543 +k1,286:21865605,14433033:203543 +k1,286:22425008,14433033:203543 +k1,286:24921000,14433033:203543 +k1,286:25775971,14433033:203543 +k1,286:27861053,14433033:203543 +k1,286:30223352,14433033:203543 +k1,286:31994516,14433033:203543 +k1,286:32583029,14433033:0 +) +(1,287:6630773,15298113:25952256,513147,134348 +k1,286:7336727,15298113:247857 +k1,286:8116082,15298113:247858 +k1,286:9430210,15298113:247857 +k1,286:10999928,15298113:247857 +k1,286:11907077,15298113:247857 +k1,286:13174020,15298113:247858 +k1,286:15754303,15298113:247857 +k1,286:16820049,15298113:247857 +(1,286:16820049,15298113:0,424981,115847 +r1,345:17178315,15298113:358266,540828,115847 +k1,286:16820049,15298113:-358266 +) +(1,286:16820049,15298113:358266,424981,115847 +k1,286:16820049,15298113:3277 +h1,286:17175038,15298113:0,411205,112570 +) +k1,286:17426173,15298113:247858 +k1,286:18205527,15298113:247857 +k1,286:19472469,15298113:247857 +k1,286:22012775,15298113:247857 +k1,286:23208284,15298113:247858 +k1,286:26773573,15298113:247857 +k1,286:27637468,15298113:247857 +k1,286:28904411,15298113:247858 +k1,286:29567062,15298113:247808 +k1,286:32583029,15298113:0 +) +(1,287:6630773,16163193:25952256,505283,134348 +k1,286:10439393,16163193:158265 +(1,286:10439393,16163193:0,424981,115847 +r1,345:10797659,16163193:358266,540828,115847 +k1,286:10439393,16163193:-358266 +) +(1,286:10439393,16163193:358266,424981,115847 +k1,286:10439393,16163193:3277 +h1,286:10794382,16163193:0,411205,112570 +) +k1,286:10955923,16163193:158264 +k1,286:11765616,16163193:158265 +k1,286:12942965,16163193:158264 +k1,286:15259986,16163193:158265 +k1,286:17464284,16163193:158264 +k1,286:18080646,16163193:158265 +k1,286:20868870,16163193:158264 +k1,286:21678563,16163193:158265 +k1,286:23346777,16163193:158264 +k1,286:24696487,16163193:158265 +k1,286:26986637,16163193:158264 +k1,286:28412368,16163193:158265 +k1,286:29589717,16163193:158264 +k1,286:30162784,16163193:158224 +k1,286:32583029,16163193:0 +) +(1,287:6630773,17028273:25952256,513147,126483 +g1,286:7849087,17028273 +g1,286:9931165,17028273 +g1,286:12879629,17028273 +g1,286:13738150,17028273 +g1,286:14956464,17028273 +g1,286:16651880,17028273 +g1,286:19152078,17028273 +g1,286:20037469,17028273 +g1,286:21616886,17028273 +g1,286:24005018,17028273 +g1,286:24820285,17028273 +g1,286:26038599,17028273 +k1,287:32583029,17028273:4788720 +g1,287:32583029,17028273 +) +v1,289:6630773,17713128:0,393216,0 +(1,297:6630773,19521563:25952256,2201651,196608 +g1,297:6630773,19521563 +g1,297:6630773,19521563 +g1,297:6434165,19521563 +(1,297:6434165,19521563:0,2201651,196608 +r1,345:32779637,19521563:26345472,2398259,196608 +k1,297:6434165,19521563:-26345472 +) +(1,297:6434165,19521563:26345472,2201651,196608 +[1,297:6630773,19521563:25952256,2005043,0 +(1,291:6630773,17940959:25952256,424439,86428 +(1,290:6630773,17940959:0,0,0 +g1,290:6630773,17940959 +g1,290:6630773,17940959 +g1,290:6303093,17940959 +(1,290:6303093,17940959:0,0,0 +) +g1,290:6630773,17940959 +) +g1,291:7294681,17940959 +g1,291:8290543,17940959 +g1,291:10946175,17940959 +g1,291:11942037,17940959 +h1,291:12605945,17940959:0,0,0 +k1,291:32583029,17940959:19977084 +g1,291:32583029,17940959 +) +(1,292:6630773,18625814:25952256,424439,106246 +h1,292:6630773,18625814:0,0,0 +k1,292:6630773,18625814:0 +h1,292:9286405,18625814:0,0,0 +k1,292:32583029,18625814:23296624 +g1,292:32583029,18625814 +) +(1,296:6630773,19441741:25952256,424439,79822 +(1,294:6630773,19441741:0,0,0 +g1,294:6630773,19441741 +g1,294:6630773,19441741 +g1,294:6303093,19441741 +(1,294:6303093,19441741:0,0,0 +) +g1,294:6630773,19441741 +) +g1,296:7626635,19441741 +g1,296:8954451,19441741 +h1,296:9286405,19441741:0,0,0 +k1,296:32583029,19441741:23296624 +g1,296:32583029,19441741 +) +] +) +g1,297:32583029,19521563 +g1,297:6630773,19521563 +g1,297:6630773,19521563 +g1,297:32583029,19521563 +g1,297:32583029,19521563 +) +h1,297:6630773,19718171:0,0,0 +(1,301:6630773,20583251:25952256,513147,134348 +h1,300:6630773,20583251:983040,0,0 +k1,300:9564763,20583251:167715 +k1,300:13032871,20583251:167715 +k1,300:15533669,20583251:167716 +k1,300:18533195,20583251:167715 +k1,300:18913871,20583251:167684 +k1,300:20174071,20583251:167715 +k1,300:22026717,20583251:167715 +k1,300:24772618,20583251:167715 +k1,300:27182321,20583251:167716 +k1,300:29039554,20583251:167715 +k1,300:30154920,20583251:167715 +k1,300:32583029,20583251:0 +) +(1,301:6630773,21448331:25952256,513147,134348 +k1,300:9787976,21448331:165484 +k1,300:10166418,21448331:165450 +k1,300:11424387,21448331:165484 +k1,300:15094736,21448331:165484 +k1,300:17502207,21448331:165484 +k1,300:20630573,21448331:165483 +k1,300:21862328,21448331:165484 +k1,300:24914018,21448331:165484 +k1,300:26027153,21448331:165484 +k1,300:28368432,21448331:165484 +k1,300:28746874,21448331:165450 +k1,300:30004843,21448331:165484 +k1,300:32583029,21448331:0 +) +(1,301:6630773,22313411:25952256,513147,134348 +k1,300:8855787,22313411:156698 +k1,300:10296991,22313411:156698 +k1,300:11741472,22313411:156699 +k1,300:12510932,22313411:156698 +k1,300:13686715,22313411:156698 +k1,300:16774838,22313411:156698 +k1,300:17590829,22313411:156699 +k1,300:20037355,22313411:156698 +k1,300:22405893,22313411:156698 +k1,300:24056157,22313411:156698 +k1,300:24899018,22313411:156699 +(1,300:24899018,22313411:0,435480,115847 +r1,345:26312419,22313411:1413401,551327,115847 +k1,300:24899018,22313411:-1413401 +) +(1,300:24899018,22313411:1413401,435480,115847 +k1,300:24899018,22313411:3277 +h1,300:26309142,22313411:0,411205,112570 +) +k1,300:26469117,22313411:156698 +k1,300:27573466,22313411:156698 +k1,300:28086024,22313411:156698 +k1,300:30330045,22313411:156699 +k1,300:31169628,22313411:156698 +(1,300:31169628,22313411:0,424981,115847 +r1,345:32583029,22313411:1413401,540828,115847 +k1,300:31169628,22313411:-1413401 +) +(1,300:31169628,22313411:1413401,424981,115847 +k1,300:31169628,22313411:3277 +h1,300:32579752,22313411:0,411205,112570 +) +k1,300:32583029,22313411:0 +) +(1,301:6630773,23178491:25952256,513147,7863 +g1,300:7777653,23178491 +g1,300:8332742,23178491 +k1,301:32583029,23178491:22098740 +g1,301:32583029,23178491 +) +(1,303:6630773,24043571:25952256,513147,134348 +h1,302:6630773,24043571:983040,0,0 +k1,302:9463491,24043571:231594 +k1,302:10311123,24043571:231594 +k1,302:14523374,24043571:231594 +k1,302:16610948,24043571:231594 +k1,302:18769300,24043571:231594 +k1,302:19616932,24043571:231594 +k1,302:22603005,24043571:231595 +k1,302:23517484,24043571:231594 +k1,302:24215039,24043571:231594 +k1,302:24904730,24043571:231594 +k1,302:27838373,24043571:231594 +k1,302:28879337,24043571:231594 +k1,302:31400759,24043571:231594 +k1,303:32583029,24043571:0 +) +(1,303:6630773,24908651:25952256,505283,134348 +k1,302:8266401,24908651:254784 +k1,302:9137222,24908651:254783 +k1,302:10411091,24908651:254784 +k1,302:13657593,24908651:254783 +k1,302:14528415,24908651:254784 +k1,302:15802284,24908651:254784 +k1,302:17648937,24908651:254783 +k1,302:19303570,24908651:254784 +k1,302:20761595,24908651:254784 +k1,302:21547875,24908651:254783 +k1,302:25220362,24908651:254784 +k1,302:27485134,24908651:254783 +k1,302:28759003,24908651:254784 +k1,302:32583029,24908651:0 +) +(1,303:6630773,25773731:25952256,505283,134348 +k1,302:7510691,25773731:252083 +k1,302:11743432,25773731:252084 +k1,302:12208454,25773731:252030 +k1,302:13553022,25773731:252083 +k1,302:15873422,25773731:252084 +k1,302:16741543,25773731:252083 +k1,302:19122892,25773731:252084 +k1,302:21407246,25773731:252083 +k1,302:22384157,25773731:252083 +k1,302:23920747,25773731:252084 +k1,302:25553018,25773731:252083 +k1,302:26796661,25773731:252083 +k1,302:29638072,25773731:252084 +k1,302:31086842,25773731:252083 +k1,302:32583029,25773731:0 +) +(1,303:6630773,26638811:25952256,505283,134348 +k1,302:9249234,26638811:252611 +k1,302:13482503,26638811:252612 +k1,302:15228024,26638811:252611 +k1,302:17208820,26638811:252612 +k1,302:19751259,26638811:252611 +k1,302:22353992,26638811:252612 +k1,302:24640185,26638811:252611 +k1,302:25508835,26638811:252612 +k1,302:26780531,26638811:252611 +k1,302:28686616,26638811:252612 +k1,302:31391584,26638811:252611 +k1,302:32583029,26638811:0 +) +(1,303:6630773,27503891:25952256,513147,126483 +g1,302:10715632,27503891 +g1,302:11530899,27503891 +g1,302:13763710,27503891 +g1,302:16571927,27503891 +g1,302:17430448,27503891 +g1,302:18648762,27503891 +g1,302:20501464,27503891 +k1,303:32583029,27503891:9490271 +g1,303:32583029,27503891 +) +(1,304:6630773,29620709:25952256,555811,147783 +(1,304:6630773,29620709:2450326,534184,12975 +g1,304:6630773,29620709 +g1,304:9081099,29620709 +) +k1,304:32583029,29620709:20053884 +g1,304:32583029,29620709 +) +(1,307:6630773,30879005:25952256,505283,134348 +k1,306:7740713,30879005:280910 +k1,306:10690904,30879005:280910 +k1,306:12361177,30879005:280910 +k1,306:14931915,30879005:280910 +k1,306:15425735,30879005:280828 +k1,306:16799130,30879005:280910 +k1,306:20026539,30879005:280910 +k1,306:22932166,30879005:280910 +k1,306:23829114,30879005:280910 +k1,306:26294339,30879005:280910 +k1,306:27241095,30879005:280910 +k1,306:29297375,30879005:280910 +k1,306:31159587,30879005:280828 +k1,306:32583029,30879005:0 +) +(1,307:6630773,31744085:25952256,513147,134348 +k1,306:9947524,31744085:261463 +k1,306:13702710,31744085:261462 +k1,306:15442665,31744085:261463 +k1,306:16895572,31744085:261462 +k1,306:20072732,31744085:261463 +k1,306:22309168,31744085:261836 +k1,306:22783560,31744085:261400 +k1,306:24137507,31744085:261462 +k1,306:26429931,31744085:261463 +k1,306:27532221,31744085:261463 +k1,306:28445111,31744085:261462 +k1,306:31563944,31744085:261463 +k1,306:32583029,31744085:0 +) +(1,307:6630773,32609165:25952256,513147,134348 +k1,306:8243004,32609165:226145 +k1,306:9128440,32609165:226144 +k1,306:10373670,32609165:226145 +k1,306:12637985,32609165:226145 +k1,306:15327628,32609165:226145 +k1,306:15766737,32609165:226117 +k1,306:17085367,32609165:226145 +k1,306:18330597,32609165:226145 +k1,306:21038590,32609165:226145 +k1,306:22585284,32609165:226144 +k1,306:23759080,32609165:226145 +k1,306:25004310,32609165:226145 +k1,306:27298771,32609165:226145 +k1,306:28184207,32609165:226144 +k1,306:30293201,32609165:226145 +k1,306:32583029,32609165:0 +) +(1,307:6630773,33474245:25952256,513147,126483 +k1,306:8066718,33474245:244500 +k1,306:8970509,33474245:244499 +k1,306:10723648,33474245:244500 +k1,306:14565418,33474245:244499 +k1,306:17937296,33474245:244500 +k1,306:19200881,33474245:244500 +k1,306:21648700,33474245:244499 +k1,306:23287151,33474245:244500 +k1,306:23887511,33474245:244500 +k1,306:26366788,33474245:244499 +k1,306:28924709,33474245:244500 +k1,306:31036329,33474245:244499 +k1,306:31812326,33474245:244500 +k1,306:32583029,33474245:0 +) +(1,307:6630773,34339325:25952256,513147,126483 +g1,306:9491419,34339325 +g1,306:11258269,34339325 +g1,306:13875121,34339325 +h1,306:14273580,34339325:0,0,0 +k1,307:32583030,34339325:18135780 +g1,307:32583030,34339325 +) +(1,333:6630773,39080381:25952256,3893677,0 +k1,333:8431432,39080381:1800659 +(1,308:8431432,39080381:0,0,0 +g1,308:8431432,39080381 +g1,308:8431432,39080381 +g1,308:8103752,39080381 +(1,308:8103752,39080381:0,0,0 +) +g1,308:8431432,39080381 +) +(1,331:8431432,39080381:22350939,3893677,0 +g1,331:17858938,39080381 +(1,331:17858938,37714001:0,0,0 +(1,322:17858938,37714001:0,0,0 +g1,320:17858938,37714001 +g1,321:17858938,37714001 +g1,321:17858938,37714001 +g1,321:17858938,37714001 +g1,321:17858938,37714001 +g1,322:17858938,37714001 +) +(1,331:17858938,37714001:0,0,0 +g1,313:17858938,37714001 +(1,317:17858938,37714001:0,0,0 +(1,317:17858938,37714001:0,0,0 +g1,317:17858938,37714001 +g1,317:17858938,37714001 +g1,317:17858938,37714001 +g1,317:17858938,37714001 +g1,317:17858938,37714001 +(1,317:17858938,37714001:0,0,0 +(1,317:17858938,37714001:13078954,1717529,665744 +[1,317:17858938,37714001:13078954,1717529,665744 +(1,317:17858938,36669996:13078954,673524,285028 +g1,316:17858938,36669996 +(1,316:17858938,36669996:665744,673524,285028 +k1,316:18045406,36669996:186468 +g1,316:18524682,36669996 +(1,316:18524682,36669996:0,673524,285028 +(1,316:18524682,36669996:0,0,0 +(1,316:18524682,36669996:0,0,0 +g1,316:18524682,36669996 +g1,316:18524682,36669996 +g1,316:18524682,36669996 +g1,316:18524682,36669996 +g1,316:18524682,36669996 +(1,316:18524682,36669996:0,0,0 +(1,316:18524682,36669996:331874,388497,0 +(1,316:18524682,36669996:331874,388497,0 +) +g1,316:18856556,36669996 +) +) +g1,316:18524682,36669996 +g1,316:18524682,36669996 +) +) +g1,316:18524682,36669996 +) +) +g1,316:18524682,36669996 +(1,316:18524682,36669996:665744,673524,285028 +g1,316:19003958,36669996 +k1,316:19190426,36669996:186468 +) +g1,316:19190426,36669996 +(1,316:19190426,36669996:639530,673524,285028 +k1,316:19390001,36669996:199575 +g1,316:19829956,36669996 +(1,316:19829956,36669996:0,660417,271921 +(1,316:19829956,36669996:0,0,0 +(1,316:19829956,36669996:0,0,0 +g1,316:19829956,36669996 +g1,316:19829956,36669996 +g1,316:19829956,36669996 +g1,316:19829956,36669996 +g1,316:19829956,36669996 +(1,316:19829956,36669996:0,0,0 +(1,316:19829956,36669996:331874,388497,0 +(1,316:19829956,36669996:331874,388497,0 +) +g1,316:20161830,36669996 +) +) +g1,316:19829956,36669996 +g1,316:19829956,36669996 +) +) +g1,316:19829956,36669996 +) +) +g1,316:19829956,36669996 +(1,316:19829956,36669996:665744,673524,285028 +g1,316:20296125,36669996 +k1,316:20495700,36669996:199575 +) +g1,316:20495700,36669996 +(1,316:20495700,36669996:639530,673524,285028 +k1,316:20695275,36669996:199575 +g1,316:21135230,36669996 +(1,316:21135230,36669996:0,655699,276639 +(1,316:21135230,36669996:0,0,0 +(1,316:21135230,36669996:0,0,0 +g1,316:21135230,36669996 +g1,316:21135230,36669996 +g1,316:21135230,36669996 +g1,316:21135230,36669996 +g1,316:21135230,36669996 +(1,316:21135230,36669996:0,0,0 +(1,316:21135230,36669996:331874,388497,9436 +(1,316:21135230,36669996:331874,388497,9436 +) +g1,316:21467104,36669996 +) +) +g1,316:21135230,36669996 +g1,316:21135230,36669996 +) +) +g1,316:21135230,36669996 +) +) +g1,316:21135230,36669996 +(1,316:21135230,36669996:665744,673524,285028 +g1,316:21601399,36669996 +k1,316:21800974,36669996:199575 +) +g1,316:21800974,36669996 +(1,316:21800974,36669996:639530,673524,285028 +k1,316:22000549,36669996:199575 +g1,316:22440504,36669996 +(1,316:22440504,36669996:0,655699,276639 +(1,316:22440504,36669996:0,0,0 +(1,316:22440504,36669996:0,0,0 +g1,316:22440504,36669996 +g1,316:22440504,36669996 +g1,316:22440504,36669996 +g1,316:22440504,36669996 +g1,316:22440504,36669996 +(1,316:22440504,36669996:0,0,0 +(1,316:22440504,36669996:331874,379060,0 +(1,316:22440504,36669996:331874,379060,0 +) +g1,316:22772378,36669996 +) +) +g1,316:22440504,36669996 +g1,316:22440504,36669996 ) ) -k1,220:3078556,2439708:-34777008 +g1,316:22440504,36669996 ) -] -[1,220:3078558,4812305:0,0,0 -(1,220:3078558,49800853:0,16384,2228224 -k1,220:1358238,49800853:-1720320 -(1,220:1358238,49800853:1720320,16384,2228224 -(1,220:1358238,49800853:1179648,16384,0 -r1,220:2537886,49800853:1179648,16384,0 ) -g1,220:3062174,49800853 -(1,220:3062174,52029077:16384,1703936,0 -[1,220:3062174,52029077:25952256,1703936,0 -(1,220:3062174,51504789:25952256,1179648,0 -(1,220:3062174,51504789:16384,1179648,0 -r1,220:3078558,51504789:16384,1179648,0 +g1,316:22440504,36669996 +(1,316:22440504,36669996:665744,673524,285028 +g1,316:22906673,36669996 +k1,316:23106248,36669996:199575 ) -k1,220:29014430,51504789:25935872 -g1,220:29014430,51504789 +g1,316:23106248,36669996 +(1,316:23106248,36669996:639530,673524,285028 +k1,316:23305823,36669996:199575 +g1,316:23745778,36669996 +(1,316:23745778,36669996:0,650981,281357 +(1,316:23745778,36669996:0,0,0 +(1,316:23745778,36669996:0,0,0 +g1,316:23745778,36669996 +g1,316:23745778,36669996 +g1,316:23745778,36669996 +g1,316:23745778,36669996 +g1,316:23745778,36669996 +(1,316:23745778,36669996:0,0,0 +(1,316:23745778,36669996:331874,379060,9436 +(1,316:23745778,36669996:331874,379060,9436 ) -] +g1,316:24077652,36669996 ) ) +g1,316:23745778,36669996 +g1,316:23745778,36669996 ) -] -[1,220:3078558,4812305:0,0,0 -(1,220:3078558,49800853:0,16384,2228224 -g1,220:29030814,49800853 -g1,220:36135244,49800853 -(1,220:36135244,49800853:1720320,16384,2228224 -(1,220:36135244,52029077:16384,1703936,0 -[1,220:36135244,52029077:25952256,1703936,0 -(1,220:36135244,51504789:25952256,1179648,0 -(1,220:36135244,51504789:16384,1179648,0 -r1,220:36151628,51504789:16384,1179648,0 ) -k1,220:62087500,51504789:25935872 -g1,220:62087500,51504789 +g1,316:23745778,36669996 ) -] ) -g1,220:36675916,49800853 -(1,220:36675916,49800853:1179648,16384,0 -r1,220:37855564,49800853:1179648,16384,0 +g1,316:23745778,36669996 +(1,316:23745778,36669996:665744,673524,285028 +g1,316:24211947,36669996 +k1,316:24411522,36669996:199575 ) +g1,316:24411522,36669996 +(1,316:24411522,36669996:639530,673524,285028 +k1,316:24611097,36669996:199575 +g1,316:25051052,36669996 +(1,316:25051052,36669996:0,655699,276639 +(1,316:25051052,36669996:0,0,0 +(1,316:25051052,36669996:0,0,0 +g1,316:25051052,36669996 +g1,316:25051052,36669996 +g1,316:25051052,36669996 +g1,316:25051052,36669996 +g1,316:25051052,36669996 +(1,316:25051052,36669996:0,0,0 +(1,316:25051052,36669996:331874,388497,9436 +(1,316:25051052,36669996:331874,388497,9436 ) -k1,220:3078556,49800853:-34777008 +g1,316:25382926,36669996 ) -] -g1,220:6630773,4812305 ) +g1,316:25051052,36669996 +g1,316:25051052,36669996 ) -] -[1,220:6630773,45706769:0,40108032,0 -(1,220:6630773,45706769:0,40108032,0 -(1,220:6630773,45706769:0,0,0 -g1,220:6630773,45706769 ) -[1,220:6630773,45706769:0,40108032,0 -h1,220:6630773,6254097:0,0,0 -] -(1,220:6630773,45706769:0,0,0 -g1,220:6630773,45706769 +g1,316:25051052,36669996 ) ) -] -(1,220:6630773,47279633:25952256,0,0 -h1,220:6630773,47279633:25952256,0,0 +g1,316:25051052,36669996 +(1,316:25051052,36669996:665744,673524,285028 +g1,316:25517221,36669996 +k1,316:25716796,36669996:199575 ) -] -(1,220:4262630,4025873:0,0,0 -[1,220:-473656,4025873:0,0,0 -(1,220:-473656,-710413:0,0,0 -(1,220:-473656,-710413:0,0,0 -g1,220:-473656,-710413 +g1,316:25716796,36669996 +(1,316:25716796,36669996:639530,673524,285028 +k1,316:25916371,36669996:199575 +g1,316:26356326,36669996 +(1,316:26356326,36669996:0,655699,276639 +(1,316:26356326,36669996:0,0,0 +(1,316:26356326,36669996:0,0,0 +g1,316:26356326,36669996 +g1,316:26356326,36669996 +g1,316:26356326,36669996 +g1,316:26356326,36669996 +g1,316:26356326,36669996 +(1,316:26356326,36669996:0,0,0 +(1,316:26356326,36669996:331874,379060,0 +(1,316:26356326,36669996:331874,379060,0 ) -g1,220:-473656,-710413 +g1,316:26688200,36669996 ) -] ) -] -!3216 -}15 -!10 -{16 -[1,244:4262630,47279633:28320399,43253760,0 -(1,244:4262630,4025873:0,0,0 -[1,244:-473656,4025873:0,0,0 -(1,244:-473656,-710413:0,0,0 -(1,244:-473656,-644877:0,0,0 -k1,244:-473656,-644877:-65536 +g1,316:26356326,36669996 +g1,316:26356326,36669996 ) -(1,244:-473656,4736287:0,0,0 -k1,244:-473656,4736287:5209943 ) -g1,244:-473656,-710413 +g1,316:26356326,36669996 ) -] ) -[1,244:6630773,47279633:25952256,43253760,0 -[1,244:6630773,4812305:25952256,786432,0 -(1,244:6630773,4812305:25952256,0,0 -(1,244:6630773,4812305:25952256,0,0 -g1,244:3078558,4812305 -[1,244:3078558,4812305:0,0,0 -(1,244:3078558,2439708:0,1703936,0 -k1,244:1358238,2439708:-1720320 -(1,223:1358238,2439708:1720320,1703936,0 -(1,223:1358238,2439708:1179648,16384,0 -r1,244:2537886,2439708:1179648,16384,0 +g1,316:26356326,36669996 +(1,316:26356326,36669996:665744,673524,285028 +g1,316:26822495,36669996 +k1,316:27022070,36669996:199575 ) -g1,223:3062174,2439708 -(1,223:3062174,2439708:16384,1703936,0 -[1,223:3062174,2439708:25952256,1703936,0 -(1,223:3062174,1915420:25952256,1179648,0 -(1,223:3062174,1915420:16384,1179648,0 -r1,244:3078558,1915420:16384,1179648,0 +g1,316:27022070,36669996 +(1,316:27022070,36669996:639530,673524,285028 +k1,316:27221645,36669996:199575 +g1,316:27661600,36669996 +(1,316:27661600,36669996:0,655699,276639 +(1,316:27661600,36669996:0,0,0 +(1,316:27661600,36669996:0,0,0 +g1,316:27661600,36669996 +g1,316:27661600,36669996 +g1,316:27661600,36669996 +g1,316:27661600,36669996 +g1,316:27661600,36669996 +(1,316:27661600,36669996:0,0,0 +(1,316:27661600,36669996:331874,388497,9436 +(1,316:27661600,36669996:331874,388497,9436 ) -k1,223:29014430,1915420:25935872 -g1,223:29014430,1915420 +g1,316:27993474,36669996 ) -] ) +g1,316:27661600,36669996 +g1,316:27661600,36669996 ) ) -] -[1,244:3078558,4812305:0,0,0 -(1,244:3078558,2439708:0,1703936,0 -g1,244:29030814,2439708 -g1,244:36135244,2439708 -(1,223:36135244,2439708:1720320,1703936,0 -(1,223:36135244,2439708:16384,1703936,0 -[1,223:36135244,2439708:25952256,1703936,0 -(1,223:36135244,1915420:25952256,1179648,0 -(1,223:36135244,1915420:16384,1179648,0 -r1,244:36151628,1915420:16384,1179648,0 +g1,316:27661600,36669996 ) -k1,223:62087500,1915420:25935872 -g1,223:62087500,1915420 ) -] +g1,316:27661600,36669996 +(1,316:27661600,36669996:665744,673524,285028 +g1,316:28127769,36669996 +k1,316:28327344,36669996:199575 ) -g1,223:36675916,2439708 -(1,223:36675916,2439708:1179648,16384,0 -r1,244:37855564,2439708:1179648,16384,0 +g1,316:28327344,36669996 +(1,316:28327344,36669996:639530,673524,285028 +k1,316:28526919,36669996:199575 +g1,316:28966874,36669996 +(1,316:28966874,36669996:0,655699,276639 +(1,316:28966874,36669996:0,0,0 +(1,316:28966874,36669996:0,0,0 +g1,316:28966874,36669996 +g1,316:28966874,36669996 +g1,316:28966874,36669996 +g1,316:28966874,36669996 +g1,316:28966874,36669996 +(1,316:28966874,36669996:0,0,0 +(1,316:28966874,36669996:331874,388497,9436 +(1,316:28966874,36669996:331874,388497,9436 ) +g1,316:29298748,36669996 ) -k1,244:3078556,2439708:-34777008 ) -] -[1,244:3078558,4812305:0,0,0 -(1,244:3078558,49800853:0,16384,2228224 -k1,244:1358238,49800853:-1720320 -(1,223:1358238,49800853:1720320,16384,2228224 -(1,223:1358238,49800853:1179648,16384,0 -r1,244:2537886,49800853:1179648,16384,0 +g1,316:28966874,36669996 +g1,316:28966874,36669996 ) -g1,223:3062174,49800853 -(1,223:3062174,52029077:16384,1703936,0 -[1,223:3062174,52029077:25952256,1703936,0 -(1,223:3062174,51504789:25952256,1179648,0 -(1,223:3062174,51504789:16384,1179648,0 -r1,244:3078558,51504789:16384,1179648,0 ) -k1,223:29014430,51504789:25935872 -g1,223:29014430,51504789 +g1,316:28966874,36669996 ) -] ) +g1,316:28966874,36669996 +(1,316:28966874,36669996:665744,673524,285028 +g1,316:29433043,36669996 +k1,316:29632618,36669996:199575 ) +g1,316:29632618,36669996 +(1,316:29632618,36669996:639530,673524,285028 +k1,316:29791744,36669996:159126 +g1,316:30272148,36669996 +(1,316:30272148,36669996:0,655699,276639 +(1,316:30272148,36669996:0,0,0 +(1,316:30272148,36669996:0,0,0 +g1,316:30272148,36669996 +g1,316:30272148,36669996 +g1,316:30272148,36669996 +g1,316:30272148,36669996 +g1,316:30272148,36669996 +(1,316:30272148,36669996:0,0,0 +(1,316:30272148,36669996:663749,388497,9436 +(1,316:30272148,36669996:663749,388497,9436 ) -] -[1,244:3078558,4812305:0,0,0 -(1,244:3078558,49800853:0,16384,2228224 -g1,244:29030814,49800853 -g1,244:36135244,49800853 -(1,223:36135244,49800853:1720320,16384,2228224 -(1,223:36135244,52029077:16384,1703936,0 -[1,223:36135244,52029077:25952256,1703936,0 -(1,223:36135244,51504789:25952256,1179648,0 -(1,223:36135244,51504789:16384,1179648,0 -r1,244:36151628,51504789:16384,1179648,0 +g1,316:30935897,36669996 ) -k1,223:62087500,51504789:25935872 -g1,223:62087500,51504789 ) -] +g1,316:30272148,36669996 +g1,316:30272148,36669996 ) -g1,223:36675916,49800853 -(1,223:36675916,49800853:1179648,16384,0 -r1,244:37855564,49800853:1179648,16384,0 ) +g1,316:30272148,36669996 ) -k1,244:3078556,49800853:-34777008 ) -] -g1,244:6630773,4812305 +g1,316:30272148,36669996 +(1,317:30272148,36669996:665744,673524,285028 +g1,317:30778766,36669996 +k1,317:30937892,36669996:159126 +) +g1,317:30937892,36669996 +) +(1,317:17858938,37714001:13078954,665744,665744 +g1,317:17858938,37714001 +(1,317:17858938,37714001:665744,665744,665744 +g1,317:17858938,37714001 +g1,317:18524682,37714001 +(1,317:18524682,37714001:0,665744,665744 +(1,317:18524682,37714001:0,0,0 +(1,317:18524682,37714001:0,0,0 +g1,317:18524682,37714001 +g1,317:18524682,37714001 +g1,317:18524682,37714001 +g1,317:18524682,37714001 +g1,317:18524682,37714001 +(1,317:18524682,37714001:0,0,0 +(1,317:18524682,37714001:0,0,0 +h1,317:18524682,37714001:0,0,0 +g1,317:18524682,37714001 ) ) -] -[1,244:6630773,45706769:25952256,40108032,0 -(1,244:6630773,45706769:25952256,40108032,0 -(1,244:6630773,45706769:0,0,0 -g1,244:6630773,45706769 +g1,317:18524682,37714001 +g1,317:18524682,37714001 ) -[1,244:6630773,45706769:25952256,40108032,0 -[1,223:6630773,11644859:25952256,6046122,0 -(1,223:6630773,6614283:25952256,1146618,0 -h1,223:6630773,6614283:0,0,0 -k1,223:20096848,6614283:12486181 -k1,223:32583029,6614283:12486181 ) -(1,223:6630773,7314219:25952256,32768,229376 -(1,223:6630773,7314219:0,32768,229376 -(1,223:6630773,7314219:5505024,32768,229376 -r1,244:12135797,7314219:5505024,262144,229376 +g1,317:18524682,37714001 ) -k1,223:6630773,7314219:-5505024 -) -(1,223:6630773,7314219:25952256,32768,0 -r1,244:32583029,7314219:25952256,32768,0 -) -) -(1,223:6630773,9109915:25952256,909509,241827 -h1,223:6630773,9109915:0,0,0 -g1,223:10161460,9109915 -g1,223:12294264,9109915 -g1,223:15349552,9109915 -g1,223:16787543,9109915 -g1,223:20447991,9109915 -k1,223:26888279,9109915:5694750 -k1,223:32583029,9109915:5694750 -) -(1,223:6630773,9809851:25952256,32768,0 -(1,223:6630773,9809851:5505024,32768,0 -r1,244:12135797,9809851:5505024,32768,0 -) -k1,223:22359413,9809851:10223616 -k1,223:32583029,9809851:10223616 -) -] -(1,225:6630773,13751192:25952256,131072,0 -r1,244:32583029,13751192:25952256,131072,0 -g1,225:32583029,13751192 -g1,225:32583029,13751192 -) -(1,227:6630773,15071093:25952256,513147,134348 -k1,227:8596853,15071093:1966080 -k1,226:9937362,15071093:143822 -k1,226:13290482,15071093:143822 -k1,226:14756164,15071093:143821 -k1,226:15559278,15071093:143822 -k1,226:18789190,15071093:143822 -k1,226:19288872,15071093:143822 -k1,226:23430390,15071093:143822 -k1,226:24105709,15071093:143822 -k1,226:26851309,15071093:143821 -k1,226:27646559,15071093:143822 -k1,226:29470724,15071093:143822 -k1,226:32583029,15071093:1966080 -) -(1,227:6630773,15912581:25952256,513147,134348 -k1,227:8596853,15912581:1966080 -k1,226:9149976,15912581:197263 -k1,226:13518607,15912581:197264 -k1,226:14969574,15912581:197263 -k1,226:16827519,15912581:197263 -k1,226:18555048,15912581:197263 -k1,226:19403740,15912581:197264 -k1,226:21323945,15912581:197263 -k1,226:22540293,15912581:197263 -k1,226:24855024,15912581:197263 -k1,226:25711580,15912581:197264 -k1,226:26264703,15912581:197263 -k1,226:32583029,15912581:1966080 -) -(1,227:6630773,16754069:25952256,513147,134348 -g1,227:8596853,16754069 -g1,226:11638378,16754069 -g1,226:12599135,16754069 -g1,226:14635338,16754069 -g1,226:16005040,16754069 -g1,226:17308551,16754069 -g1,226:18736580,16754069 -g1,226:20322551,16754069 -g1,226:21806286,16754069 -g1,226:23493182,16754069 -k1,227:30616949,16754069:6114513 -g1,227:32583029,16754069 -) -(1,229:6630773,18116568:25952256,505283,102891 -g1,229:8596853,18116568 -h1,228:8596853,18116568:983040,0,0 -g1,228:10975809,18116568 -g1,228:13804342,18116568 -g1,228:14535068,18116568 -g1,228:15350335,18116568 -g1,228:16568649,18116568 -g1,228:19872974,18116568 -g1,228:21138474,18116568 -g1,228:22356788,18116568 -k1,229:30616949,18116568:6579163 -g1,229:32583029,18116568 -) -(1,230:6630773,19744488:25952256,475791,7863 -k1,230:28021069,19744488:21390296 -h1,230:28021069,19744488:0,0,0 -g1,230:28769490,19744488 -g1,230:30616950,19744488 -g1,230:32583030,19744488 -) -(1,231:6630773,20585976:25952256,485622,134348 -k1,231:21887555,20585976:15256782 -h1,230:21887555,20585976:0,0,0 -g1,230:23286748,20585976 -g1,230:24259957,20585976 -g1,230:29023113,20585976 -g1,231:30616949,20585976 -g1,231:32583029,20585976 -) -(1,231:6630773,21820680:25952256,131072,0 -r1,244:32583029,21820680:25952256,131072,0 -g1,231:32583029,21820680 -g1,231:34549109,21820680 -) -(1,233:6630773,24628248:25952256,32768,229376 -(1,233:6630773,24628248:0,32768,229376 -(1,233:6630773,24628248:5505024,32768,229376 -r1,244:12135797,24628248:5505024,262144,229376 -) -k1,233:6630773,24628248:-5505024 -) -(1,233:6630773,24628248:25952256,32768,0 -r1,244:32583029,24628248:25952256,32768,0 -) -) -(1,233:6630773,26232576:25952256,615776,151780 -(1,233:6630773,26232576:1974731,573309,0 -g1,233:6630773,26232576 -g1,233:8605504,26232576 -) -g1,233:10904245,26232576 -g1,233:11961996,26232576 -g1,233:13695292,26232576 -k1,233:32583029,26232576:15886712 -g1,233:32583029,26232576 -) -(1,236:6630773,27467280:25952256,513147,134348 -k1,235:7540940,27467280:282332 -k1,235:9026512,27467280:282331 -k1,235:11726467,27467280:282332 -k1,235:12221707,27467280:282248 -k1,235:15173320,27467280:282332 -k1,235:16786032,27467280:282331 -k1,235:17281273,27467280:282249 -k1,235:20078220,27467280:282331 -k1,235:21379637,27467280:282332 -k1,235:23244008,27467280:282332 -k1,235:24630621,27467280:282331 -k1,235:25660719,27467280:282332 -k1,235:27456276,27467280:282331 -k1,235:29340308,27467280:282332 -k1,235:32583029,27467280:0 -) -(1,236:6630773,28308768:25952256,505283,134348 -k1,235:7573469,28308768:291268 -k1,235:9476267,28308768:291268 -k1,235:10786621,28308768:291269 -k1,235:11492640,28308768:291176 -k1,235:14799875,28308768:291268 -k1,235:17852830,28308768:291268 -k1,235:18558849,28308768:291176 -k1,235:20041562,28308768:291268 -k1,235:24582184,28308768:291268 -k1,235:26422069,28308768:291269 -k1,235:27870047,28308768:291268 -k1,235:29262320,28308768:291268 -k1,235:32583029,28308768:0 -) -(1,236:6630773,29150256:25952256,513147,134348 -k1,235:8740679,29150256:241475 -k1,235:10173599,29150256:241475 -k1,235:13407448,29150256:241475 -k1,235:15694956,29150256:241474 -k1,235:16394528,29150256:241475 -k1,235:17921819,29150256:241475 -k1,235:21272322,29150256:241475 -k1,235:22165225,29150256:241475 -k1,235:23499185,29150256:241475 -k1,235:24943900,29150256:241474 -k1,235:26767414,29150256:241475 -k1,235:28200334,29150256:241475 -k1,235:30143779,29150256:241475 -k1,235:32583029,29150256:0 -) -(1,236:6630773,29991744:25952256,513147,134348 -k1,235:7561333,29991744:244398 -k1,235:10958669,29991744:244399 -k1,235:13964754,29991744:244398 -k1,235:14860580,29991744:244398 -k1,235:16197464,29991744:244399 -k1,235:16856660,29991744:244353 -k1,235:20517450,29991744:244398 -k1,235:22047665,29991744:244399 -k1,235:24899741,29991744:244398 -k1,235:27745918,29991744:244398 -k1,235:29320698,29991744:244399 -k1,235:31635378,29991744:244398 -k1,235:32583029,29991744:0 -) -(1,236:6630773,30833232:25952256,513147,134348 -k1,235:10734101,30833232:296342 -k1,235:12221888,30833232:296342 -k1,235:15120008,30833232:296341 -k1,235:16746731,30833232:296342 -k1,235:17694501,30833232:296342 -k1,235:19069566,30833232:296342 -k1,235:22460518,30833232:296342 -k1,235:24324481,30833232:296342 -k1,235:26322792,30833232:296341 -k1,235:28503949,30833232:296342 -k1,235:29747942,30833232:296342 -k1,235:32583029,30833232:0 -) -(1,236:6630773,31674720:25952256,513147,134348 -k1,235:9332686,31674720:143387 -k1,235:11666942,31674720:143387 -k1,235:14296766,31674720:143388 -k1,235:16208314,31674720:143387 -k1,235:16564637,31674720:143331 -k1,235:17993841,31674720:143388 -k1,235:19417146,31674720:143387 -k1,235:21576420,31674720:143387 -k1,235:22529177,31674720:143387 -k1,235:24002945,31674720:143387 -k1,235:24797760,31674720:143387 -k1,235:26207304,31674720:143388 -k1,235:28938708,31674720:143387 -k1,235:29733523,31674720:143387 -k1,235:32583029,31674720:0 -) -(1,236:6630773,32516208:25952256,505283,126483 -g1,235:9924612,32516208 -g1,235:11315286,32516208 -g1,235:12844896,32516208 -g1,235:13695553,32516208 -g1,235:14987267,32516208 -g1,235:16205581,32516208 -g1,235:19188779,32516208 -k1,236:32583029,32516208:8394508 -g1,236:32583029,32516208 -) -(1,237:6630773,35323776:25952256,32768,229376 -(1,237:6630773,35323776:0,32768,229376 -(1,237:6630773,35323776:5505024,32768,229376 -r1,244:12135797,35323776:5505024,262144,229376 -) -k1,237:6630773,35323776:-5505024 -) -(1,237:6630773,35323776:25952256,32768,0 -r1,244:32583029,35323776:25952256,32768,0 -) -) -(1,237:6630773,36928104:25952256,606339,151780 -(1,237:6630773,36928104:1974731,582746,0 -g1,237:6630773,36928104 -g1,237:8605504,36928104 -) -g1,237:12727194,36928104 -g1,237:14436897,36928104 -k1,237:32583029,36928104:14499447 -g1,237:32583029,36928104 -) -(1,240:6630773,38162808:25952256,505283,134348 -k1,239:10282930,38162808:207585 -k1,239:11299886,38162808:207586 -k1,239:14261949,38162808:207585 -k1,239:18056319,38162808:207585 -k1,239:20666454,38162808:207585 -k1,239:22708393,38162808:207586 -k1,239:23539225,38162808:207585 -k1,239:24524722,38162808:207585 -k1,239:25130766,38162808:207585 -k1,239:28465075,38162808:207586 -k1,239:29805122,38162808:207585 -k1,239:30760473,38162808:207585 -k1,239:32583029,38162808:0 -) -(1,240:6630773,39004296:25952256,513147,134348 -k1,239:9922952,39004296:280800 -k1,239:10559612,39004296:280800 -k1,239:12123607,39004296:280800 -k1,239:14234172,39004296:280800 -k1,239:15197857,39004296:280800 -k1,239:18451370,39004296:280800 -k1,239:19088030,39004296:280800 -k1,239:21861164,39004296:280800 -k1,239:23472345,39004296:280800 -k1,239:24380980,39004296:280800 -k1,239:26128476,39004296:280800 -k1,239:28106658,39004296:280800 -k1,239:30221811,39004296:280800 -k1,239:31125858,39004296:280800 -k1,239:32184570,39004296:280800 -k1,239:32583029,39004296:0 -) -(1,240:6630773,39845784:25952256,505283,134348 -k1,239:9989393,39845784:231897 -k1,239:11728617,39845784:231896 -k1,239:12611942,39845784:231897 -k1,239:13591604,39845784:231896 -k1,239:14179361,39845784:231897 -k1,239:16222018,39845784:231897 -k1,239:18385915,39845784:231896 -k1,239:20888635,39845784:231897 -k1,239:21476392,39845784:231897 -k1,239:24658719,39845784:231896 -k1,239:27568417,39845784:231897 -k1,239:28898041,39845784:231896 -k1,239:29485798,39845784:231897 -k1,239:32583029,39845784:0 -) -(1,240:6630773,40687272:25952256,513147,134348 -k1,239:7546051,40687272:248122 -k1,239:8208968,40687272:248074 -k1,239:10899617,40687272:248122 -k1,239:11617633,40687272:248123 -k1,239:12970037,40687272:248122 -k1,239:13965926,40687272:248123 -k1,239:15727274,40687272:248122 -k1,239:16661559,40687272:248123 -k1,239:17265541,40687272:248122 -k1,239:19622613,40687272:248123 -k1,239:21626445,40687272:248122 -k1,239:26658041,40687272:248123 -k1,239:29308713,40687272:248122 -k1,239:30239721,40687272:248123 -k1,239:31435494,40687272:248122 -k1,239:32583029,40687272:0 -) -(1,240:6630773,41528760:25952256,513147,134348 -k1,239:10492955,41528760:181025 -k1,239:11865425,41528760:181025 -k1,239:13332266,41528760:181025 -k1,239:14199453,41528760:181025 -k1,239:14736338,41528760:181025 -k1,239:18070300,41528760:181025 -k1,239:19176038,41528760:181025 -k1,239:20934515,41528760:181025 -k1,239:21647037,41528760:181025 -k1,239:23112568,41528760:181025 -k1,239:23979755,41528760:181025 -k1,239:24516640,41528760:181025 -k1,239:26455996,41528760:181025 -k1,239:27288449,41528760:181025 -k1,239:28488559,41528760:181025 -k1,239:29762069,41528760:181025 -k1,239:30610250,41528760:181025 -k1,239:31379788,41528760:181025 -k1,239:32583029,41528760:0 -) -(1,240:6630773,42717589:25952256,513147,134348 -g1,239:8412041,42717589 -g1,239:9743732,42717589 -g1,239:12170530,42717589 -g1,239:14346980,42717589 -g1,239:15197637,42717589 -g1,239:17948838,42717589 -g1,239:18834229,42717589 -g1,239:20413646,42717589 -g1,239:21958985,42717589 -g1,239:25571329,42717589 -g1,239:26962003,42717589 -g1,239:29654222,42717589 -k1,240:32583029,42717589:1090522 -g1,240:32583029,42717589 -) -(1,244:6630773,43559077:25952256,505283,134348 -k1,243:7012400,43559077:168635 -k1,243:10473595,43559077:168666 -k1,243:13022529,43559077:168666 -k1,243:13790848,43559077:168665 -k1,243:16961063,43559077:168666 -k1,243:17543886,43559077:168635 -k1,243:18797828,43559077:168666 -k1,243:19364953,43559077:168666 -k1,243:21043569,43559077:168666 -k1,243:24841618,43559077:168665 -k1,243:25901574,43559077:168666 -k1,243:26745261,43559077:168666 -k1,243:27974954,43559077:168665 -k1,243:30422962,43559077:168666 -k1,243:32583029,43559077:0 -) -(1,244:6630773,44400565:25952256,513147,134348 -k1,243:8576231,44400565:251352 -k1,243:11473927,44400565:251352 -k1,243:12324934,44400565:251353 -k1,243:14541711,44400565:251352 -k1,243:15558524,44400565:251352 -k1,243:16823063,44400565:251352 -k1,243:19807922,44400565:251352 -k1,243:21217952,44400565:251353 -k1,243:22994982,44400565:251352 -k1,243:24456784,44400565:251352 -k1,243:25880575,44400565:251352 -k1,243:28430275,44400565:251352 -k1,243:30044777,44400565:251353 -k1,243:30883987,44400565:251352 -k1,243:31597368,44400565:251352 -k1,243:32583029,44400565:0 -) -] -(1,244:32583029,45706769:0,0,0 -g1,244:32583029,45706769 -) -) -] -(1,244:6630773,47279633:25952256,477757,0 -(1,244:6630773,47279633:25952256,477757,0 -(1,244:6630773,47279633:0,0,0 -v1,244:6630773,47279633:0,0,0 -) -g1,244:6830002,47279633 -k1,244:32184570,47279633:25354568 -) -) -] -(1,244:4262630,4025873:0,0,0 -[1,244:-473656,4025873:0,0,0 -(1,244:-473656,-710413:0,0,0 -(1,244:-473656,-710413:0,0,0 -g1,244:-473656,-710413 -) -g1,244:-473656,-710413 ) -] +g1,317:18524682,37714001 +(1,317:18524682,37714001:665744,665744,665744 +g1,317:19190426,37714001 +g1,317:19190426,37714001 +) +g1,317:19190426,37714001 +(1,317:19190426,37714001:639530,665744,665744 +g1,317:19190426,37714001 +g1,317:19829956,37714001 +(1,317:19829956,37714001:0,665744,665744 +(1,317:19829956,37714001:0,0,0 +(1,317:19829956,37714001:0,0,0 +g1,317:19829956,37714001 +g1,317:19829956,37714001 +g1,317:19829956,37714001 +g1,317:19829956,37714001 +g1,317:19829956,37714001 +(1,317:19829956,37714001:0,0,0 +(1,317:19829956,37714001:0,0,0 +h1,317:19829956,37714001:0,0,0 +g1,317:19829956,37714001 ) -] -!15104 -}16 -!11 -{17 -[1,258:4262630,47279633:28320399,43253760,0 -(1,258:4262630,4025873:0,0,0 -[1,258:-473656,4025873:0,0,0 -(1,258:-473656,-710413:0,0,0 -(1,258:-473656,-644877:0,0,0 -k1,258:-473656,-644877:-65536 ) -(1,258:-473656,4736287:0,0,0 -k1,258:-473656,4736287:5209943 +g1,317:19829956,37714001 +g1,317:19829956,37714001 ) -g1,258:-473656,-710413 ) -] +g1,317:19829956,37714001 ) -[1,258:6630773,47279633:25952256,43253760,0 -[1,258:6630773,4812305:25952256,786432,0 -(1,258:6630773,4812305:25952256,505283,134348 -(1,258:6630773,4812305:25952256,505283,134348 -g1,258:3078558,4812305 -[1,258:3078558,4812305:0,0,0 -(1,258:3078558,2439708:0,1703936,0 -k1,258:1358238,2439708:-1720320 -(1,223:1358238,2439708:1720320,1703936,0 -(1,223:1358238,2439708:1179648,16384,0 -r1,258:2537886,2439708:1179648,16384,0 ) -g1,223:3062174,2439708 -(1,223:3062174,2439708:16384,1703936,0 -[1,223:3062174,2439708:25952256,1703936,0 -(1,223:3062174,1915420:25952256,1179648,0 -(1,223:3062174,1915420:16384,1179648,0 -r1,258:3078558,1915420:16384,1179648,0 +g1,317:19829956,37714001 +(1,317:19829956,37714001:665744,665744,665744 +g1,317:20495700,37714001 +g1,317:20495700,37714001 +) +g1,317:20495700,37714001 +(1,317:20495700,37714001:639530,665744,665744 +g1,317:20495700,37714001 +g1,317:21135230,37714001 +(1,317:21135230,37714001:0,665744,665744 +(1,317:21135230,37714001:0,0,0 +(1,317:21135230,37714001:0,0,0 +g1,317:21135230,37714001 +g1,317:21135230,37714001 +g1,317:21135230,37714001 +g1,317:21135230,37714001 +g1,317:21135230,37714001 +(1,317:21135230,37714001:0,0,0 +(1,317:21135230,37714001:0,0,0 +h1,317:21135230,37714001:0,0,0 +g1,317:21135230,37714001 +) ) -k1,223:29014430,1915420:25935872 -g1,223:29014430,1915420 +g1,317:21135230,37714001 +g1,317:21135230,37714001 ) -] ) +g1,317:21135230,37714001 +) +) +g1,317:21135230,37714001 +(1,317:21135230,37714001:665744,665744,665744 +g1,317:21800974,37714001 +g1,317:21800974,37714001 +) +g1,317:21800974,37714001 +(1,317:21800974,37714001:639530,665744,665744 +g1,317:21800974,37714001 +g1,317:22440504,37714001 +(1,317:22440504,37714001:0,665744,665744 +(1,317:22440504,37714001:0,0,0 +(1,317:22440504,37714001:0,0,0 +g1,317:22440504,37714001 +g1,317:22440504,37714001 +g1,317:22440504,37714001 +g1,317:22440504,37714001 +g1,317:22440504,37714001 +(1,317:22440504,37714001:0,0,0 +(1,317:22440504,37714001:0,0,0 +h1,317:22440504,37714001:0,0,0 +g1,317:22440504,37714001 +) +) +g1,317:22440504,37714001 +g1,317:22440504,37714001 +) +) +g1,317:22440504,37714001 +) +) +g1,317:22440504,37714001 +(1,317:22440504,37714001:665744,665744,665744 +g1,317:23106248,37714001 +g1,317:23106248,37714001 +) +g1,317:23106248,37714001 +(1,317:23106248,37714001:639530,665744,665744 +g1,317:23106248,37714001 +g1,317:23745778,37714001 +(1,317:23745778,37714001:0,665744,665744 +(1,317:23745778,37714001:0,0,0 +(1,317:23745778,37714001:0,0,0 +g1,317:23745778,37714001 +g1,317:23745778,37714001 +g1,317:23745778,37714001 +g1,317:23745778,37714001 +g1,317:23745778,37714001 +(1,317:23745778,37714001:0,0,0 +(1,317:23745778,37714001:0,0,0 +h1,317:23745778,37714001:0,0,0 +g1,317:23745778,37714001 +) +) +g1,317:23745778,37714001 +g1,317:23745778,37714001 +) +) +g1,317:23745778,37714001 +) +) +g1,317:23745778,37714001 +(1,317:23745778,37714001:665744,665744,665744 +g1,317:24411522,37714001 +g1,317:24411522,37714001 +) +g1,317:24411522,37714001 +(1,317:24411522,37714001:639530,665744,665744 +g1,317:24411522,37714001 +g1,317:25051052,37714001 +(1,317:25051052,37714001:0,665744,665744 +(1,317:25051052,37714001:0,0,0 +(1,317:25051052,37714001:0,0,0 +g1,317:25051052,37714001 +g1,317:25051052,37714001 +g1,317:25051052,37714001 +g1,317:25051052,37714001 +g1,317:25051052,37714001 +(1,317:25051052,37714001:0,0,0 +(1,317:25051052,37714001:0,0,0 +h1,317:25051052,37714001:0,0,0 +g1,317:25051052,37714001 +) +) +g1,317:25051052,37714001 +g1,317:25051052,37714001 +) +) +g1,317:25051052,37714001 +) +) +g1,317:25051052,37714001 +(1,317:25051052,37714001:665744,665744,665744 +g1,317:25716796,37714001 +g1,317:25716796,37714001 +) +g1,317:25716796,37714001 +(1,317:25716796,37714001:639530,665744,665744 +g1,317:25716796,37714001 +g1,317:26356326,37714001 +(1,317:26356326,37714001:0,665744,665744 +(1,317:26356326,37714001:0,0,0 +(1,317:26356326,37714001:0,0,0 +g1,317:26356326,37714001 +g1,317:26356326,37714001 +g1,317:26356326,37714001 +g1,317:26356326,37714001 +g1,317:26356326,37714001 +(1,317:26356326,37714001:0,0,0 +(1,317:26356326,37714001:0,0,0 +h1,317:26356326,37714001:0,0,0 +g1,317:26356326,37714001 +) +) +g1,317:26356326,37714001 +g1,317:26356326,37714001 ) ) -] -[1,258:3078558,4812305:0,0,0 -(1,258:3078558,2439708:0,1703936,0 -g1,258:29030814,2439708 -g1,258:36135244,2439708 -(1,223:36135244,2439708:1720320,1703936,0 -(1,223:36135244,2439708:16384,1703936,0 -[1,223:36135244,2439708:25952256,1703936,0 -(1,223:36135244,1915420:25952256,1179648,0 -(1,223:36135244,1915420:16384,1179648,0 -r1,258:36151628,1915420:16384,1179648,0 +g1,317:26356326,37714001 ) -k1,223:62087500,1915420:25935872 -g1,223:62087500,1915420 ) -] +g1,317:26356326,37714001 +(1,317:26356326,37714001:665744,665744,665744 +g1,317:27022070,37714001 +g1,317:27022070,37714001 ) -g1,223:36675916,2439708 -(1,223:36675916,2439708:1179648,16384,0 -r1,258:37855564,2439708:1179648,16384,0 +g1,317:27022070,37714001 +(1,317:27022070,37714001:639530,665744,665744 +g1,317:27022070,37714001 +g1,317:27661600,37714001 +(1,317:27661600,37714001:0,665744,665744 +(1,317:27661600,37714001:0,0,0 +(1,317:27661600,37714001:0,0,0 +g1,317:27661600,37714001 +g1,317:27661600,37714001 +g1,317:27661600,37714001 +g1,317:27661600,37714001 +g1,317:27661600,37714001 +(1,317:27661600,37714001:0,0,0 +(1,317:27661600,37714001:0,0,0 +h1,317:27661600,37714001:0,0,0 +g1,317:27661600,37714001 ) ) -k1,258:3078556,2439708:-34777008 +g1,317:27661600,37714001 +g1,317:27661600,37714001 ) -] -[1,258:3078558,4812305:0,0,0 -(1,258:3078558,49800853:0,16384,2228224 -k1,258:1358238,49800853:-1720320 -(1,223:1358238,49800853:1720320,16384,2228224 -(1,223:1358238,49800853:1179648,16384,0 -r1,258:2537886,49800853:1179648,16384,0 ) -g1,223:3062174,49800853 -(1,223:3062174,52029077:16384,1703936,0 -[1,223:3062174,52029077:25952256,1703936,0 -(1,223:3062174,51504789:25952256,1179648,0 -(1,223:3062174,51504789:16384,1179648,0 -r1,258:3078558,51504789:16384,1179648,0 +g1,317:27661600,37714001 ) -k1,223:29014430,51504789:25935872 -g1,223:29014430,51504789 -) -] -) -) -) -] -[1,258:3078558,4812305:0,0,0 -(1,258:3078558,49800853:0,16384,2228224 -g1,258:29030814,49800853 -g1,258:36135244,49800853 -(1,223:36135244,49800853:1720320,16384,2228224 -(1,223:36135244,52029077:16384,1703936,0 -[1,223:36135244,52029077:25952256,1703936,0 -(1,223:36135244,51504789:25952256,1179648,0 -(1,223:36135244,51504789:16384,1179648,0 -r1,258:36151628,51504789:16384,1179648,0 -) -k1,223:62087500,51504789:25935872 -g1,223:62087500,51504789 -) -] -) -g1,223:36675916,49800853 -(1,223:36675916,49800853:1179648,16384,0 -r1,258:37855564,49800853:1179648,16384,0 -) -) -k1,258:3078556,49800853:-34777008 -) -] -g1,258:6630773,4812305 -k1,258:24492612,4812305:17463380 -g1,258:26454104,4812305 -g1,258:27638994,4812305 -g1,258:29336376,4812305 -g1,258:30135259,4812305 -g1,258:32168841,4812305 -) -) -] -[1,258:6630773,45706769:25952256,40108032,0 -(1,258:6630773,45706769:25952256,40108032,0 -(1,258:6630773,45706769:0,0,0 -g1,258:6630773,45706769 -) -[1,258:6630773,45706769:25952256,40108032,0 -(1,244:6630773,6254097:25952256,513147,134348 -k1,243:8639844,6254097:250085 -k1,243:10144944,6254097:250086 -k1,243:12772675,6254097:250085 -k1,243:14233210,6254097:250085 -k1,243:18084499,6254097:250086 -k1,243:19672174,6254097:250085 -k1,243:20320718,6254097:250085 -k1,243:22548025,6254097:250086 -k1,243:23260139,6254097:250085 -k1,243:24655793,6254097:250085 -k1,243:25872535,6254097:250086 -k1,243:26521079,6254097:250085 -k1,243:28051738,6254097:250085 -k1,243:30596895,6254097:250086 -k1,243:32184570,6254097:250085 -k1,243:32583029,6254097:0 -) -(1,244:6630773,7095585:25952256,505283,134348 -g1,243:8633553,7095585 -g1,243:9432436,7095585 -g1,243:11342155,7095585 -g1,243:12527045,7095585 -g1,243:15047559,7095585 -k1,244:32583029,7095585:17535470 -g1,244:32583029,7095585 -) -(1,246:6630773,8284414:25952256,513147,134348 -h1,245:6630773,8284414:983040,0,0 -k1,245:8445044,8284414:203396 -k1,245:9236952,8284414:203395 -k1,245:10586573,8284414:203396 -k1,245:11406007,8284414:203396 -k1,245:13211102,8284414:203395 -k1,245:15252783,8284414:203396 -k1,245:18802447,8284414:203396 -k1,245:20660626,8284414:203395 -k1,245:21855582,8284414:203396 -k1,245:24730224,8284414:203395 -k1,245:26501897,8284414:203396 -k1,245:27364585,8284414:203396 -k1,245:29707075,8284414:203395 -k1,245:30929556,8284414:203396 -k1,245:32583029,8284414:0 -) -(1,246:6630773,9125902:25952256,505283,126483 -k1,245:10467856,9125902:258817 -k1,245:10939606,9125902:258758 -k1,245:12673638,9125902:258817 -k1,245:15690866,9125902:258818 -k1,245:17445870,9125902:258817 -k1,245:20696407,9125902:258818 -k1,245:22239730,9125902:258817 -k1,245:23675574,9125902:258817 -k1,245:24585820,9125902:258818 -k1,245:26661295,9125902:258817 -k1,245:27275973,9125902:258818 -k1,245:29947826,9125902:258817 -k1,245:32583029,9125902:0 -) -(1,246:6630773,9967390:25952256,505283,134348 -k1,245:9967276,9967390:260898 -k1,245:12094640,9967390:260899 -k1,245:13546983,9967390:260898 -k1,245:17375661,9967390:260898 -k1,245:18907958,9967390:260899 -k1,245:20937673,9967390:260898 -k1,245:22813379,9967390:260899 -k1,245:26379258,9967390:260898 -k1,245:27054937,9967390:260836 -k1,245:29228177,9967390:260899 -k1,245:31224468,9967390:260898 -k1,246:32583029,9967390:0 -) -(1,246:6630773,10808878:25952256,513147,134348 -k1,245:9800749,10808878:226754 -k1,245:12789847,10808878:226755 -k1,245:14512788,10808878:226754 -k1,245:17904931,10808878:226754 -k1,245:19711104,10808878:226755 -k1,245:21141099,10808878:226754 -k1,245:21899350,10808878:226754 -k1,245:23782855,10808878:226755 -k1,245:25707647,10808878:226754 -k1,245:28336951,10808878:226754 -k1,245:29582791,10808878:226755 -k1,245:31391584,10808878:226754 -k1,245:32583029,10808878:0 -) -(1,246:6630773,11650366:25952256,505283,134348 -k1,245:8598585,11650366:232419 -k1,245:9419516,11650366:232418 -k1,245:11231353,11650366:232419 -k1,245:12749588,11650366:232419 -k1,245:13598045,11650366:232419 -k1,245:15487213,11650366:232418 -k1,245:17004138,11650366:232419 -k1,245:17694654,11650366:232419 -k1,245:18458569,11650366:232418 -k1,245:22142114,11650366:232419 -k1,245:23025961,11650366:232419 -k1,245:26517485,11650366:232419 -k1,245:30113211,11650366:232418 -k1,245:32168186,11650366:232419 -k1,246:32583029,11650366:0 -) -(1,246:6630773,12491854:25952256,513147,126483 -k1,245:8054770,12491854:232552 -k1,245:8973484,12491854:232552 -k1,245:9561895,12491854:232551 -k1,245:11175291,12491854:232552 -k1,245:12578316,12491854:232552 -k1,245:13943330,12491854:232552 -k1,245:17480862,12491854:232551 -k1,245:19243680,12491854:232552 -k1,245:20127660,12491854:232552 -k1,245:22710333,12491854:232552 -k1,245:23961969,12491854:232551 -k1,245:29194263,12491854:232552 -k1,245:30893511,12491854:232552 -k1,245:32583029,12491854:0 -) -(1,246:6630773,13333342:25952256,505283,134348 -k1,245:8588746,13333342:152456 -k1,245:9760287,13333342:152456 -k1,245:12803536,13333342:152456 -k1,245:13572030,13333342:152456 -k1,245:14927727,13333342:152456 -k1,245:16835893,13333342:152456 -k1,245:18185036,13333342:152456 -k1,245:18752288,13333342:152409 -k1,245:21920711,13333342:152456 -k1,245:22689205,13333342:152456 -k1,245:23197521,13333342:152456 -k1,245:25209889,13333342:152456 -k1,245:27306143,13333342:152456 -k1,245:27990096,13333342:152456 -k1,245:29442786,13333342:152456 -k1,245:32124932,13333342:152456 -k1,245:32583029,13333342:0 -) -(1,246:6630773,14174830:25952256,505283,134348 -k1,245:7882039,14174830:146984 -k1,245:8776789,14174830:146984 -k1,245:12016417,14174830:146984 -k1,245:13557352,14174830:146984 -k1,245:18277438,14174830:146984 -k1,245:21685493,14174830:146984 -k1,245:24916601,14174830:146984 -k1,245:27825272,14174830:146984 -k1,245:28623684,14174830:146984 -k1,245:29863153,14174830:146984 -k1,245:30424928,14174830:146932 -k1,245:32583029,14174830:0 -) -(1,246:6630773,15016318:25952256,513147,134348 -k1,245:9444421,15016318:221699 -k1,245:10325412,15016318:221699 -k1,245:13148890,15016318:221699 -k1,245:14389674,15016318:221699 -k1,245:16563035,15016318:221699 -k1,245:18155747,15016318:221699 -k1,245:21860685,15016318:221699 -k1,245:23101468,15016318:221698 -k1,245:24657480,15016318:221699 -k1,245:25538471,15016318:221699 -k1,245:28016575,15016318:221699 -k1,245:29697105,15016318:221699 -k1,245:31156779,15016318:221699 -k1,245:31994516,15016318:221699 -k1,245:32583029,15016318:0 -) -(1,246:6630773,15857806:25952256,513147,126483 -g1,245:7618400,15857806 -g1,245:12643700,15857806 -g1,245:14034374,15857806 -g1,245:16424472,15857806 -g1,245:19388010,15857806 -g1,245:20778684,15857806 -g1,245:23235628,15857806 -k1,246:32583029,15857806:6860965 -g1,246:32583029,15857806 -) -(1,248:6630773,16699294:25952256,505283,134348 -h1,247:6630773,16699294:983040,0,0 -k1,247:10372169,16699294:223423 -k1,247:12775975,16699294:223423 -k1,247:14065669,16699294:223423 -k1,247:15466119,16699294:223423 -k1,247:16302304,16699294:223423 -k1,247:20775081,16699294:223423 -k1,247:21764619,16699294:223422 -k1,247:23007127,16699294:223423 -k1,247:25348018,16699294:223423 -k1,247:28745350,16699294:223423 -k1,247:29584811,16699294:223423 -k1,247:30827319,16699294:223423 -k1,247:32583029,16699294:0 -) -(1,248:6630773,17540782:25952256,513147,126483 -k1,247:8016728,17540782:182714 -k1,247:8730940,17540782:182715 -k1,247:12364780,17540782:182714 -k1,247:13495145,17540782:182714 -k1,247:15279559,17540782:182714 -k1,247:16121566,17540782:182715 -k1,247:17223095,17540782:182714 -k1,247:19019305,17540782:182714 -k1,247:20294504,17540782:182714 -k1,247:21136511,17540782:182715 -k1,247:22522466,17540782:182714 -k1,247:23896625,17540782:182714 -k1,247:25781309,17540782:182714 -k1,247:28050035,17540782:182715 -k1,247:29424194,17540782:182714 -k1,248:32583029,17540782:0 -) -(1,248:6630773,18382270:25952256,513147,134348 -k1,247:8676105,18382270:165104 -k1,247:12083930,18382270:165104 -k1,247:12935196,18382270:165104 -k1,247:16583539,18382270:165104 -k1,247:19450692,18382270:165104 -k1,247:20425166,18382270:165104 -k1,247:20946129,18382270:165103 -k1,247:22695238,18382270:165104 -k1,247:24629814,18382270:165104 -k1,247:25454210,18382270:165104 -k1,247:25975174,18382270:165104 -k1,247:28000190,18382270:165104 -k1,247:30428252,18382270:165104 -k1,247:31252648,18382270:165104 -k1,248:32583029,18382270:0 -) -(1,248:6630773,19223758:25952256,505283,134348 -k1,247:7223948,19223758:178332 -k1,247:9329059,19223758:178353 -k1,247:10698857,19223758:178353 -k1,247:11686580,19223758:178353 -k1,247:14466711,19223758:178352 -k1,247:15975445,19223758:178353 -k1,247:16805226,19223758:178353 -k1,247:19646962,19223758:178353 -k1,247:20844400,19223758:178353 -k1,247:26022495,19223758:178353 -k1,247:27270395,19223758:178352 -k1,247:27906845,19223758:178353 -k1,247:28616695,19223758:178353 -k1,247:30445245,19223758:178353 -k1,248:32583029,19223758:0 -) -(1,248:6630773,20065246:25952256,513147,126483 -k1,247:8113580,20065246:198301 -k1,247:8963309,20065246:198301 -k1,247:12420714,20065246:198300 -k1,247:16538068,20065246:198301 -k1,247:17927814,20065246:198301 -k1,247:18742153,20065246:198301 -k1,247:20489070,20065246:198301 -k1,247:23844240,20065246:198301 -k1,247:25422728,20065246:198300 -k1,247:26612589,20065246:198301 -k1,247:28497787,20065246:198301 -k1,247:29887533,20065246:198301 -k1,247:32583029,20065246:0 -) -(1,248:6630773,20906734:25952256,513147,134348 -k1,247:9040663,20906734:167903 -k1,247:10651014,20906734:167904 -k1,247:11838002,20906734:167903 -k1,247:14123373,20906734:167903 -k1,247:14950568,20906734:167903 -k1,247:16448853,20906734:167904 -k1,247:17268184,20906734:167903 -k1,247:18528572,20906734:167903 -k1,247:20509201,20906734:167903 -k1,247:24242919,20906734:167904 -k1,247:24766682,20906734:167903 -k1,247:26704712,20906734:167903 -k1,247:27531907,20906734:167903 -k1,247:29397849,20906734:167904 -k1,247:30722462,20906734:167903 -k1,247:32583029,20906734:0 -) -(1,248:6630773,21748222:25952256,513147,134348 -g1,247:7481430,21748222 -g1,247:8428425,21748222 -g1,247:10837528,21748222 -g1,247:12103028,21748222 -g1,247:12953685,21748222 -g1,247:14183795,21748222 -g1,247:14999062,21748222 -g1,247:15554151,21748222 -g1,247:18895831,21748222 -g1,247:20717076,21748222 -g1,247:21447802,21748222 -g1,247:22932847,21748222 -k1,248:32583029,21748222:6267214 -g1,248:32583029,21748222 -) -(1,250:6630773,22589710:25952256,513147,134348 -h1,249:6630773,22589710:983040,0,0 -k1,249:8996739,22589710:186239 -k1,249:10765016,22589710:186238 -k1,249:11942815,22589710:186239 -k1,249:13233335,22589710:186238 -k1,249:14167340,22589710:186239 -k1,249:15866804,22589710:186238 -k1,249:17519739,22589710:186239 -k1,249:18392140,22589710:186239 -k1,249:18934238,22589710:186238 -k1,249:20346656,22589710:186239 -k1,249:22114933,22589710:186238 -k1,249:23248823,22589710:186239 -k1,249:26036841,22589710:186239 -k1,249:26637909,22589710:186225 -k1,249:28015593,22589710:186239 -k1,249:28887993,22589710:186238 -k1,249:29430092,22589710:186239 -k1,249:32583029,22589710:0 -) -(1,250:6630773,23431198:25952256,505283,134348 -k1,249:7343477,23431198:242811 -k1,249:9404911,23431198:242810 -k1,249:11041673,23431198:242811 -k1,249:13409161,23431198:242811 -k1,249:16483783,23431198:242811 -k1,249:17918038,23431198:242810 -k1,249:21003145,23431198:242811 -k1,249:24115122,23431198:242811 -k1,249:28122320,23431198:242810 -k1,249:30932832,23431198:242811 -k1,249:32583029,23431198:0 -) -(1,250:6630773,24272686:25952256,513147,134348 -k1,249:9585628,24272686:268534 -k1,249:12696457,24272686:268533 -k1,249:16226718,24272686:268534 -k1,249:17686697,24272686:268534 -k1,249:19551687,24272686:268533 -k1,249:21696517,24272686:268534 -k1,249:22984136,24272686:268534 -k1,249:24490644,24272686:268533 -k1,249:27137480,24272686:268534 -k1,249:28538476,24272686:268534 -k1,249:30246835,24272686:268533 -k1,249:31131407,24272686:268534 -k1,249:32583029,24272686:0 -) -(1,250:6630773,25114174:25952256,513147,126483 -k1,249:9442387,25114174:220320 -k1,249:13602731,25114174:220320 -k1,249:15014495,25114174:220319 -k1,249:18226534,25114174:220320 -k1,249:19394505,25114174:220320 -k1,249:20633910,25114174:220320 -k1,249:23631646,25114174:220320 -k1,249:25987129,25114174:220320 -k1,249:27904830,25114174:220319 -k1,249:29316595,25114174:220320 -k1,249:30556000,25114174:220320 -k1,250:32583029,25114174:0 -) -(1,250:6630773,25955662:25952256,513147,126483 -k1,249:8571425,25955662:169214 -k1,249:10457682,25955662:169214 -k1,249:12539237,25955662:169214 -k1,249:14092571,25955662:169214 -k1,249:15280869,25955662:169213 -k1,249:18861887,25955662:169214 -k1,249:20222546,25955662:169214 -k1,249:25493738,25955662:169214 -k1,249:28268663,25955662:169214 -k1,249:30005498,25955662:169214 -k1,249:32583029,25955662:0 -) -(1,250:6630773,26797150:25952256,505283,134348 -k1,249:7480523,26797150:198322 -k1,249:9394578,26797150:198322 -k1,249:10611985,26797150:198322 -k1,249:13412087,26797150:198323 -k1,249:15654477,26797150:198322 -k1,249:16065790,26797150:198321 -k1,249:18591295,26797150:198322 -k1,249:20264832,26797150:198322 -k1,249:23221564,26797150:198322 -k1,249:25116614,26797150:198323 -k1,249:26387105,26797150:198322 -k1,249:29010259,26797150:198322 -k1,249:30847636,26797150:198322 -k1,249:32583029,26797150:0 -) -(1,250:6630773,27638638:25952256,513147,134348 -k1,249:8512530,27638638:207312 -k1,249:9911287,27638638:207312 -k1,249:12934026,27638638:207312 -k1,249:14689954,27638638:207312 -k1,249:16729653,27638638:207312 -k1,249:17928525,27638638:207312 -k1,249:19308276,27638638:207312 -k1,249:21977120,27638638:207312 -k1,249:23132083,27638638:207312 -k1,249:26197420,27638638:207312 -k1,249:27607973,27638638:207312 -k1,249:30973465,27638638:207312 -k1,249:32583029,27638638:0 -) -(1,250:6630773,28480126:25952256,513147,134348 -k1,249:7862457,28480126:212599 -k1,249:11125756,28480126:212598 -k1,249:13973558,28480126:212599 -k1,249:16825946,28480126:212598 -k1,249:18433151,28480126:212599 -k1,249:19837195,28480126:212599 -k1,249:24062562,28480126:212598 -k1,249:27916341,28480126:212599 -k1,249:28660436,28480126:212598 -k1,249:31635378,28480126:212599 -k1,249:32583029,28480126:0 -) -(1,250:6630773,29321614:25952256,513147,134348 -k1,249:8314176,29321614:231781 -k1,249:9205249,29321614:231781 -k1,249:10355845,29321614:231781 -k1,249:11779071,29321614:231781 -k1,249:13891080,29321614:231781 -k1,249:17484858,29321614:231781 -k1,249:18526009,29321614:231781 -k1,249:19776875,29321614:231781 -k1,249:22318800,29321614:231781 -k1,249:24136552,29321614:231781 -k1,249:25935955,29321614:231782 -k1,249:27091138,29321614:231781 -k1,249:27535878,29321614:231748 -k1,249:29345111,29321614:231781 -k1,249:30595977,29321614:231781 -k1,249:32583029,29321614:0 -) -(1,250:6630773,30163102:25952256,513147,126483 -k1,249:8003471,30163102:240236 -k1,249:9631760,30163102:240236 -k1,249:12250298,30163102:240236 -k1,249:14759391,30163102:240237 -k1,249:16548243,30163102:240236 -k1,249:17439907,30163102:240236 -k1,249:19924751,30163102:240236 -k1,249:21495368,30163102:240236 -k1,249:23518839,30163102:240236 -k1,249:25531824,30163102:240236 -k1,249:26423489,30163102:240237 -k1,249:27756210,30163102:240236 -k1,249:28612484,30163102:240236 -k1,249:30304342,30163102:240236 -k1,249:32583029,30163102:0 -) -(1,250:6630773,31004590:25952256,513147,126483 -k1,249:8030507,31004590:208289 -k1,249:9705492,31004590:208289 -k1,249:11462398,31004590:208290 -k1,249:12322115,31004590:208289 -k1,249:13942705,31004590:208289 -k1,249:15342439,31004590:208289 -k1,249:17099345,31004590:208290 -k1,249:17959062,31004590:208289 -k1,249:19685820,31004590:208289 -k1,249:22334014,31004590:208289 -k1,249:23008265,31004590:208290 -k1,249:23429537,31004590:208280 -k1,249:24829271,31004590:208289 -k1,249:27257264,31004590:208289 -k1,249:28484639,31004590:208290 -k1,249:30526625,31004590:208289 -k1,249:31923737,31004590:208289 -k1,249:32583029,31004590:0 -) -(1,250:6630773,31846078:25952256,513147,134348 -k1,249:7863202,31846078:213344 -k1,249:8491375,31846078:213330 -k1,249:11720687,31846078:213345 -k1,249:12147009,31846078:213330 -k1,249:14316603,31846078:213344 -k1,249:16005162,31846078:213344 -k1,249:17962419,31846078:213344 -k1,249:20727736,31846078:213345 -k1,249:22394669,31846078:213344 -k1,249:23700498,31846078:213344 -k1,249:24580998,31846078:213344 -k1,249:25209171,31846078:213330 -k1,249:27072713,31846078:213345 -k1,249:29943542,31846078:213344 -k1,249:30626779,31846078:213344 -k1,249:32583029,31846078:0 -) -(1,250:6630773,32687566:25952256,513147,7863 -g1,249:8305217,32687566 -g1,249:9790262,32687566 -g1,249:11733404,32687566 -g1,249:12951718,32687566 -g1,249:14732986,32687566 -g1,249:16145286,32687566 -g1,249:18321736,32687566 -g1,249:19207127,32687566 -g1,249:19762216,32687566 -k1,250:32583029,32687566:9667876 -g1,250:32583029,32687566 -) -(1,252:6630773,33529054:25952256,505283,126483 -h1,251:6630773,33529054:983040,0,0 -k1,251:9049764,33529054:239264 -k1,251:10871068,33529054:239265 -k1,251:13812381,33529054:239264 -k1,251:15803422,33529054:239264 -k1,251:17538874,33529054:239265 -k1,251:20769857,33529054:239264 -k1,251:21695283,33529054:239264 -k1,251:23213155,33529054:239265 -k1,251:24138581,33529054:239264 -k1,251:27442309,33529054:239265 -k1,251:27894525,33529054:239224 -k1,251:30204727,33529054:239264 -k1,251:32583029,33529054:0 -) -(1,252:6630773,34370542:25952256,513147,126483 -k1,251:7984278,34370542:221043 -k1,251:9323366,34370542:221044 -k1,251:11040596,34370542:221043 -k1,251:14253359,34370542:221044 -k1,251:15665847,34370542:221043 -k1,251:16793254,34370542:221044 -k1,251:17700459,34370542:221043 -k1,251:19673279,34370542:221043 -k1,251:23050537,34370542:221044 -k1,251:23930872,34370542:221043 -k1,251:25790971,34370542:221044 -k1,251:26698176,34370542:221043 -k1,251:29217568,34370542:221044 -k1,251:30090039,34370542:221043 -k1,251:32583029,34370542:0 -) -(1,252:6630773,35212030:25952256,513147,134348 -k1,251:7566255,35212030:164779 -k1,251:12386055,35212030:164778 -k1,251:13210126,35212030:164779 -k1,251:14393989,35212030:164778 -k1,251:16745049,35212030:164779 -k1,251:17569120,35212030:164779 -k1,251:18752983,35212030:164778 -k1,251:19332570,35212030:164744 -k1,251:22513316,35212030:164779 -k1,251:23920658,35212030:164779 -k1,251:25415817,35212030:164778 -k1,251:26599681,35212030:164779 -k1,251:29459955,35212030:164778 -k1,251:30307619,35212030:164779 -k1,251:32583029,35212030:0 -) -(1,252:6630773,36053518:25952256,513147,134348 -k1,251:10514237,36053518:178058 -k1,251:12792724,36053518:178058 -k1,251:14351625,36053518:178057 -k1,251:15061180,36053518:178058 -k1,251:16787854,36053518:178058 -k1,251:19993020,36053518:178058 -k1,251:21882222,36053518:178057 -k1,251:22727436,36053518:178058 -k1,251:23320316,36053518:178037 -k1,251:24313642,36053518:178058 -k1,251:26189737,36053518:178057 -k1,251:28312248,36053518:178058 -k1,251:29261009,36053518:178058 -k1,251:32583029,36053518:0 -) -(1,252:6630773,36895006:25952256,513147,134348 -g1,251:9105412,36895006 -g1,251:9987526,36895006 -g1,251:10542615,36895006 -g1,251:11892656,36895006 -g1,251:12707923,36895006 -g1,251:14415791,36895006 -k1,252:32583029,36895006:13338545 -g1,252:32583029,36895006 -) -(1,254:6630773,37736494:25952256,505283,126483 -h1,253:6630773,37736494:983040,0,0 -k1,253:10410088,37736494:261342 -k1,253:11954625,37736494:261342 -k1,253:12867395,37736494:261342 -k1,253:13543517,37736494:261279 -k1,253:15985242,37736494:261342 -k1,253:17658885,37736494:261342 -k1,253:18532989,37736494:261342 -k1,253:20289863,37736494:261342 -k1,253:23299130,37736494:261342 -h1,253:23697589,37736494:0,0,0 -k1,253:23958931,37736494:261342 -k1,253:24871701,37736494:261342 -h1,253:25270160,37736494:0,0,0 -k1,253:25531502,37736494:261342 -k1,253:29810856,37736494:261342 -k1,253:32583029,37736494:0 -) -(1,254:6630773,38577982:25952256,513147,134348 -k1,253:9570921,38577982:184359 -k1,253:11407443,38577982:184359 -k1,253:12251093,38577982:184358 -k1,253:13454537,38577982:184359 -k1,253:14865075,38577982:184359 -k1,253:16240879,38577982:184359 -k1,253:19316030,38577982:184358 -k1,253:21925221,38577982:184359 -k1,253:22795742,38577982:184359 -k1,253:26159908,38577982:184359 -k1,253:29278968,38577982:184358 -k1,253:29676304,38577982:184344 -k1,253:31931601,38577982:184359 -k1,253:32583029,38577982:0 -) -(1,254:6630773,39419470:25952256,513147,126483 -k1,253:7557956,39419470:179417 -k1,253:9339074,39419470:179418 -k1,253:11495712,39419470:179417 -k1,253:12326557,39419470:179417 -k1,253:14202702,39419470:179418 -k1,253:16934091,39419470:179417 -k1,253:18179779,39419470:179417 -k1,253:19010624,39419470:179417 -k1,253:22681800,39419470:179418 -k1,253:24206016,39419470:179417 -k1,253:25404518,39419470:179417 -k1,253:29193659,39419470:179418 -k1,253:30032368,39419470:179417 -k1,253:32583029,39419470:0 -) -(1,254:6630773,40260958:25952256,513147,134348 -k1,253:9469268,40260958:232784 -k1,253:10893497,40260958:232784 -k1,253:13320426,40260958:232784 -k1,253:15424262,40260958:232783 -k1,253:16729215,40260958:232784 -k1,253:18913661,40260958:232784 -k1,253:19797873,40260958:232784 -k1,253:21574685,40260958:232784 -k1,253:24168076,40260958:232784 -k1,253:25968481,40260958:232784 -k1,253:27840320,40260958:232784 -k1,253:28797931,40260958:232783 -k1,253:29716877,40260958:232784 -k1,253:30601089,40260958:232784 -k1,253:31812326,40260958:232784 -k1,253:32583029,40260958:0 -) -(1,254:6630773,41102446:25952256,513147,126483 -k1,253:8181263,41102446:225352 -k1,253:9065907,41102446:225352 -k1,253:10839875,41102446:225352 -k1,253:13259372,41102446:225352 -k1,253:16641593,41102446:225352 -k1,253:18247134,41102446:225353 -k1,253:19809420,41102446:225352 -k1,253:21336317,41102446:225352 -k1,253:22247831,41102446:225352 -k1,253:22888000,41102446:225326 -k1,253:24998167,41102446:225352 -k1,253:28137905,41102446:225352 -k1,253:30543640,41102446:225352 -k1,253:31835263,41102446:225352 -k1,253:32583029,41102446:0 -) -(1,254:6630773,41943934:25952256,513147,126483 -g1,253:9537294,41943934 -g1,253:10422685,41943934 -g1,253:12002102,41943934 -g1,253:13192891,41943934 -g1,253:13747980,41943934 -g1,253:15048214,41943934 -g1,253:18844714,41943934 -g1,253:19703235,41943934 -g1,253:20921549,41943934 -g1,253:23644569,41943934 -g1,253:26828308,41943934 -k1,254:32583029,41943934:4067824 -g1,254:32583029,41943934 -) -(1,256:6630773,42785422:25952256,513147,126483 -h1,255:6630773,42785422:983040,0,0 -k1,255:10345136,42785422:196390 -k1,255:12875917,42785422:196389 -k1,255:15564641,42785422:196390 -k1,255:17154982,42785422:196390 -k1,255:17766211,42785422:196386 -k1,255:19095063,42785422:196390 -k1,255:20039219,42785422:196390 -k1,255:21544362,42785422:196389 -k1,255:22392180,42785422:196390 -k1,255:24000871,42785422:196390 -k1,255:25216345,42785422:196389 -k1,255:28160660,42785422:196390 -k1,255:28973088,42785422:196390 -k1,255:30188562,42785422:196389 -k1,255:31966991,42785422:196390 -k1,255:32583029,42785422:0 -) -(1,256:6630773,43626910:25952256,513147,134348 -k1,255:7941867,43626910:179287 -k1,255:10034151,43626910:179288 -k1,255:10899600,43626910:179287 -k1,255:12097973,43626910:179288 -k1,255:13807526,43626910:179287 -k1,255:16013843,43626910:179288 -k1,255:18952196,43626910:179287 -k1,255:20506429,43626910:179288 -k1,255:21877161,43626910:179287 -k1,255:23904564,43626910:179288 -k1,255:25275296,43626910:179287 -k1,255:26473669,43626910:179288 -k1,255:30051653,43626910:179287 -k1,255:31422386,43626910:179288 -k1,256:32583029,43626910:0 -) -(1,256:6630773,44468398:25952256,513147,134348 -k1,255:8395359,44468398:178615 -k1,255:10251040,44468398:178615 -k1,255:13739224,44468398:178616 -k1,255:16077250,44468398:178615 -k1,255:19038524,44468398:178615 -k1,255:20932872,44468398:178615 -k1,255:23741447,44468398:178615 -k1,255:24867713,44468398:178615 -k1,255:27424631,44468398:178616 -k1,255:28254674,44468398:178615 -k1,255:30141813,44468398:178615 -k1,255:32583029,44468398:0 -) -(1,256:6630773,45309886:25952256,513147,134348 -k1,255:8228151,45309886:152964 -k1,255:10391104,45309886:152964 -k1,255:11563153,45309886:152964 -k1,255:13298156,45309886:152964 -k1,255:14917816,45309886:152964 -k1,255:16768818,45309886:152964 -k1,255:19523561,45309886:152964 -k1,255:20091322,45309886:152918 -k1,255:21435731,45309886:152964 -k1,255:23286733,45309886:152964 -k1,255:25175090,45309886:152964 -k1,255:26347139,45309886:152964 -k1,255:28082142,45309886:152964 -k1,255:28921268,45309886:152964 -k1,255:29430092,45309886:152964 -k1,256:32583029,45309886:0 -k1,256:32583029,45309886:0 -) -] -(1,258:32583029,45706769:0,0,0 -g1,258:32583029,45706769 -) -) -] -(1,258:6630773,47279633:25952256,0,0 -h1,258:6630773,47279633:25952256,0,0 -) -] -(1,258:4262630,4025873:0,0,0 -[1,258:-473656,4025873:0,0,0 -(1,258:-473656,-710413:0,0,0 -(1,258:-473656,-710413:0,0,0 -g1,258:-473656,-710413 -) -g1,258:-473656,-710413 -) -] -) -] -!26028 -}17 -Input:189:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:190:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:191:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:192:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:193:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:194:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:195:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:196:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!755 -{18 -[1,292:4262630,47279633:28320399,43253760,0 -(1,292:4262630,4025873:0,0,0 -[1,292:-473656,4025873:0,0,0 -(1,292:-473656,-710413:0,0,0 -(1,292:-473656,-644877:0,0,0 -k1,292:-473656,-644877:-65536 ) -(1,292:-473656,4736287:0,0,0 -k1,292:-473656,4736287:5209943 +g1,317:27661600,37714001 +(1,317:27661600,37714001:665744,665744,665744 +g1,317:28327344,37714001 +g1,317:28327344,37714001 ) -g1,292:-473656,-710413 +g1,317:28327344,37714001 +(1,317:28327344,37714001:639530,665744,665744 +g1,317:28327344,37714001 +g1,317:28966874,37714001 +(1,317:28966874,37714001:0,665744,665744 +(1,317:28966874,37714001:0,0,0 +(1,317:28966874,37714001:0,0,0 +g1,317:28966874,37714001 +g1,317:28966874,37714001 +g1,317:28966874,37714001 +g1,317:28966874,37714001 +g1,317:28966874,37714001 +(1,317:28966874,37714001:0,0,0 +(1,317:28966874,37714001:0,0,0 +h1,317:28966874,37714001:0,0,0 +g1,317:28966874,37714001 ) -] ) -[1,292:6630773,47279633:25952256,43253760,0 -[1,292:6630773,4812305:25952256,786432,0 -(1,292:6630773,4812305:25952256,505283,134348 -(1,292:6630773,4812305:25952256,505283,134348 -g1,292:3078558,4812305 -[1,292:3078558,4812305:0,0,0 -(1,292:3078558,2439708:0,1703936,0 -k1,292:1358238,2439708:-1720320 -(1,223:1358238,2439708:1720320,1703936,0 -(1,223:1358238,2439708:1179648,16384,0 -r1,292:2537886,2439708:1179648,16384,0 +g1,317:28966874,37714001 +g1,317:28966874,37714001 ) -g1,223:3062174,2439708 -(1,223:3062174,2439708:16384,1703936,0 -[1,223:3062174,2439708:25952256,1703936,0 -(1,223:3062174,1915420:25952256,1179648,0 -(1,223:3062174,1915420:16384,1179648,0 -r1,292:3078558,1915420:16384,1179648,0 ) -k1,223:29014430,1915420:25935872 -g1,223:29014430,1915420 +g1,317:28966874,37714001 ) -] ) +g1,317:28966874,37714001 +(1,317:28966874,37714001:665744,665744,665744 +g1,317:29632618,37714001 +g1,317:29632618,37714001 ) +g1,317:29632618,37714001 +(1,317:29632618,37714001:639530,665744,665744 +g1,317:29632618,37714001 +g1,317:30272148,37714001 +(1,317:30272148,37714001:0,665744,665744 +(1,317:30272148,37714001:0,0,0 +(1,317:30272148,37714001:0,0,0 +g1,317:30272148,37714001 +g1,317:30272148,37714001 +g1,317:30272148,37714001 +g1,317:30272148,37714001 +g1,317:30272148,37714001 +(1,317:30272148,37714001:0,0,0 +(1,317:30272148,37714001:0,0,0 +h1,317:30272148,37714001:0,0,0 +g1,317:30272148,37714001 ) -] -[1,292:3078558,4812305:0,0,0 -(1,292:3078558,2439708:0,1703936,0 -g1,292:29030814,2439708 -g1,292:36135244,2439708 -(1,223:36135244,2439708:1720320,1703936,0 -(1,223:36135244,2439708:16384,1703936,0 -[1,223:36135244,2439708:25952256,1703936,0 -(1,223:36135244,1915420:25952256,1179648,0 -(1,223:36135244,1915420:16384,1179648,0 -r1,292:36151628,1915420:16384,1179648,0 ) -k1,223:62087500,1915420:25935872 -g1,223:62087500,1915420 +g1,317:30272148,37714001 +g1,317:30272148,37714001 ) -] ) -g1,223:36675916,2439708 -(1,223:36675916,2439708:1179648,16384,0 -r1,292:37855564,2439708:1179648,16384,0 +g1,317:30272148,37714001 +) ) +g1,317:30272148,37714001 +(1,317:30272148,37714001:665744,665744,665744 +g1,317:30937892,37714001 +g1,317:30937892,37714001 ) -k1,292:3078556,2439708:-34777008 +g1,317:30937892,37714001 ) ] -[1,292:3078558,4812305:0,0,0 -(1,292:3078558,49800853:0,16384,2228224 -k1,292:1358238,49800853:-1720320 -(1,223:1358238,49800853:1720320,16384,2228224 -(1,223:1358238,49800853:1179648,16384,0 -r1,292:2537886,49800853:1179648,16384,0 ) -g1,223:3062174,49800853 -(1,223:3062174,52029077:16384,1703936,0 -[1,223:3062174,52029077:25952256,1703936,0 -(1,223:3062174,51504789:25952256,1179648,0 -(1,223:3062174,51504789:16384,1179648,0 -r1,292:3078558,51504789:16384,1179648,0 -) -k1,223:29014430,51504789:25935872 -g1,223:29014430,51504789 -) -] -) -) -) -] -[1,292:3078558,4812305:0,0,0 -(1,292:3078558,49800853:0,16384,2228224 -g1,292:29030814,49800853 -g1,292:36135244,49800853 -(1,223:36135244,49800853:1720320,16384,2228224 -(1,223:36135244,52029077:16384,1703936,0 -[1,223:36135244,52029077:25952256,1703936,0 -(1,223:36135244,51504789:25952256,1179648,0 -(1,223:36135244,51504789:16384,1179648,0 -r1,292:36151628,51504789:16384,1179648,0 -) -k1,223:62087500,51504789:25935872 -g1,223:62087500,51504789 -) -] -) -g1,223:36675916,49800853 -(1,223:36675916,49800853:1179648,16384,0 -r1,292:37855564,49800853:1179648,16384,0 -) -) -k1,292:3078556,49800853:-34777008 -) -] -g1,292:6630773,4812305 -g1,292:6630773,4812305 -g1,292:10817212,4812305 -g1,292:12226891,4812305 -g1,292:14854229,4812305 -g1,292:18762796,4812305 -k1,292:32184570,4812305:13421774 -) -) -] -[1,292:6630773,45706769:25952256,40108032,0 -(1,292:6630773,45706769:25952256,40108032,0 -(1,292:6630773,45706769:0,0,0 -g1,292:6630773,45706769 -) -[1,292:6630773,45706769:25952256,40108032,0 -(1,258:6630773,6254097:25952256,513147,134348 -h1,257:6630773,6254097:983040,0,0 -k1,257:7978324,6254097:151519 -k1,257:10200828,6254097:151566 -k1,257:12186746,6254097:151565 -k1,257:12961559,6254097:151566 -k1,257:13891037,6254097:151566 -k1,257:14441062,6254097:151566 -k1,257:17719351,6254097:151566 -k1,257:18522345,6254097:151566 -k1,257:20901480,6254097:151566 -k1,257:23030267,6254097:151566 -k1,257:23867995,6254097:151566 -k1,257:24375421,6254097:151566 -k1,257:27506254,6254097:151566 -k1,257:28309248,6254097:151566 -k1,257:30204727,6254097:151566 -k1,257:32583029,6254097:0 -) -(1,258:6630773,7095585:25952256,513147,126483 -k1,257:8121679,7095585:160525 -k1,257:9374688,7095585:160524 -k1,257:9993310,7095585:160525 -k1,257:10805263,7095585:160525 -k1,257:12577317,7095585:160524 -k1,257:13326355,7095585:160525 -k1,257:13956773,7095585:160525 -k1,257:15249759,7095585:160524 -k1,257:16158050,7095585:160525 -k1,257:17604390,7095585:160524 -k1,257:19742136,7095585:160525 -k1,257:20588823,7095585:160525 -k1,257:21105207,7095585:160524 -k1,257:24244999,7095585:160525 -k1,257:25056952,7095585:160525 -k1,257:27595778,7095585:160524 -k1,257:30090695,7095585:160525 -k1,257:32583029,7095585:0 -) -(1,258:6630773,7937073:25952256,513147,134348 -k1,257:8243615,7937073:218891 -k1,257:9051020,7937073:218892 -k1,257:10098941,7937073:218891 -k1,257:12844246,7937073:218892 -k1,257:14082222,7937073:218891 -k1,257:15393599,7937073:218892 -k1,257:16271782,7937073:218891 -k1,257:17509759,7937073:218892 -k1,257:19310689,7937073:218891 -k1,257:20215743,7937073:218892 -k1,257:20790494,7937073:218891 -k1,257:24162323,7937073:218892 -k1,257:24594187,7937073:218872 -k1,257:26288293,7937073:218891 -k1,257:28017135,7937073:218892 -k1,257:31189078,7937073:218891 -k1,257:32583029,7937073:0 -) -(1,258:6630773,8778561:25952256,513147,134348 -k1,257:9770275,8778561:226427 -k1,257:12977279,8778561:226427 -k1,257:14955482,8778561:226426 -k1,257:17958014,8778561:226427 -k1,257:20419874,8778561:226427 -k1,257:22662844,8778561:226427 -k1,257:24397910,8778561:226427 -k1,257:27851329,8778561:226426 -k1,257:29269201,8778561:226427 -k1,257:30514713,8778561:226427 -k1,257:32583029,8778561:0 -) -(1,258:6630773,9620049:25952256,513147,134348 -k1,257:7575929,9620049:285864 -k1,257:8627909,9620049:285864 -k1,257:9328528,9620049:285776 -k1,257:11904220,9620049:285864 -k1,257:13381529,9620049:285864 -k1,257:17021526,9620049:285864 -k1,257:20610405,9620049:285864 -k1,257:23962699,9620049:285864 -k1,257:25887617,9620049:285863 -k1,257:26789519,9620049:285864 -k1,257:28730167,9620049:285864 -k1,257:32583029,9620049:0 -) -(1,258:6630773,10461537:25952256,513147,134348 -k1,257:9481140,10461537:249898 -k1,257:12214853,10461537:249898 -k1,257:14313520,10461537:249897 -k1,257:16262111,10461537:249898 -k1,257:17128047,10461537:249898 -k1,257:17827471,10461537:249847 -k1,257:20135854,10461537:249897 -k1,257:21142037,10461537:249898 -k1,257:24290592,10461537:249898 -k1,257:25731935,10461537:249898 -k1,257:29342518,10461537:249897 -k1,257:31267516,10461537:249898 -k1,257:32133452,10461537:249898 -k1,257:32583029,10461537:0 -) -(1,258:6630773,11303025:25952256,505283,134348 -k1,257:8915359,11303025:203162 -k1,257:11597093,11303025:203162 -k1,257:12413017,11303025:203162 -k1,257:14444632,11303025:203161 -h1,257:15640009,11303025:0,0,0 -k1,257:16016841,11303025:203162 -h1,257:17212218,11303025:0,0,0 -k1,257:17415380,11303025:203162 -k1,257:18809987,11303025:203162 -h1,257:20005364,11303025:0,0,0 -k1,257:20382196,11303025:203162 -k1,257:24555529,11303025:203162 -k1,257:24971678,11303025:203157 -k1,257:26650055,11303025:203162 -k1,257:28139033,11303025:203162 -k1,257:31100605,11303025:203162 -k1,257:32583029,11303025:0 -) -(1,258:6630773,12144513:25952256,513147,134348 -k1,257:8014566,12144513:192348 -k1,257:10740536,12144513:192348 -k1,257:12609950,12144513:192348 -k1,257:16111866,12144513:192348 -k1,257:18508190,12144513:192348 -k1,257:20922209,12144513:192348 -k1,257:23723545,12144513:192348 -k1,257:27540689,12144513:192348 -k1,257:28752122,12144513:192348 -k1,257:30827319,12144513:192348 -k1,258:32583029,12144513:0 -k1,258:32583029,12144513:0 -) -(1,259:6630773,14952081:25952256,32768,229376 -(1,259:6630773,14952081:0,32768,229376 -(1,259:6630773,14952081:5505024,32768,229376 -r1,292:12135797,14952081:5505024,262144,229376 -) -k1,259:6630773,14952081:-5505024 -) -(1,259:6630773,14952081:25952256,32768,0 -r1,292:32583029,14952081:25952256,32768,0 -) -) -(1,259:6630773,16556409:25952256,606339,161218 -(1,259:6630773,16556409:1974731,582746,14155 -g1,259:6630773,16556409 -g1,259:8605504,16556409 -) -g1,259:13904483,16556409 -g1,259:15614186,16556409 -g1,259:18812605,16556409 -k1,259:32583029,16556409:8899264 -g1,259:32583029,16556409 -) -(1,261:6630773,17861237:25952256,555811,12975 -(1,261:6630773,17861237:2450326,534184,12975 -g1,261:6630773,17861237 -g1,261:9081099,17861237 -) -g1,261:10687977,17861237 -k1,261:32583030,17861237:20320616 -g1,261:32583030,17861237 -) -(1,264:6630773,19095941:25952256,513147,134348 -k1,263:9680819,19095941:290980 -k1,263:11346743,19095941:290979 -k1,263:12829168,19095941:290980 -k1,263:14794593,19095941:290980 -k1,263:16077133,19095941:290980 -k1,263:17881338,19095941:290979 -k1,263:18788356,19095941:290980 -k1,263:20098421,19095941:290980 -k1,263:21971439,19095941:290979 -k1,263:22913847,19095941:290980 -k1,263:25388487,19095941:290980 -k1,263:27502023,19095941:290980 -k1,263:29341618,19095941:290979 -k1,263:32051532,19095941:290980 -k1,263:32583029,19095941:0 -) -(1,264:6630773,19937429:25952256,513147,134348 -k1,263:9785323,19937429:148414 -k1,263:10616622,19937429:148414 -k1,263:13523445,19937429:148413 -k1,263:15065810,19937429:148414 -k1,263:15570084,19937429:148414 -k1,263:18115805,19937429:148414 -k1,263:19614915,19937429:148413 -k1,263:20960016,19937429:148414 -k1,263:24083765,19937429:148414 -k1,263:25906624,19937429:148414 -k1,263:27246482,19937429:148413 -k1,263:29756158,19937429:148414 -k1,263:30896132,19937429:148414 -k1,264:32583029,19937429:0 -k1,264:32583029,19937429:0 -) -v1,266:6630773,21303205:0,393216,0 -(1,267:6630773,21916621:25952256,1006632,0 -g1,267:6630773,21916621 -g1,267:6303093,21916621 -r1,292:6401397,21916621:98304,1006632,0 -g1,267:6600626,21916621 -g1,267:6797234,21916621 -[1,267:6797234,21916621:25785795,1006632,0 -(1,267:6797234,21698308:25785795,788319,218313 -(1,266:6797234,21698308:0,788319,218313 -r1,292:7917113,21698308:1119879,1006632,218313 -k1,266:6797234,21698308:-1119879 -) -(1,266:6797234,21698308:1119879,788319,218313 -) -g1,266:8116342,21698308 -g1,266:8444022,21698308 -g1,266:10879995,21698308 -g1,266:13800279,21698308 -g1,266:17980165,21698308 -g1,266:18795432,21698308 -g1,266:20596361,21698308 -g1,266:22492972,21698308 -g1,266:25743557,21698308 -g1,266:26594214,21698308 -g1,266:27208286,21698308 -g1,266:28093677,21698308 -g1,266:28648766,21698308 -k1,267:32583029,21698308:918296 -g1,267:32583029,21698308 -) -] -g1,267:32583029,21916621 -) -h1,267:6630773,21916621:0,0,0 -v1,270:6630773,23282397:0,393216,0 -(1,271:6630773,29669234:25952256,6780053,0 -g1,271:6630773,29669234 -g1,271:6303093,29669234 -r1,292:6401397,29669234:98304,6780053,0 -g1,271:6600626,29669234 -g1,271:6797234,29669234 -[1,271:6797234,29669234:25785795,6780053,0 -(1,271:6797234,23644470:25785795,755289,196608 -(1,270:6797234,23644470:0,755289,196608 -r1,292:8134168,23644470:1336934,951897,196608 -k1,270:6797234,23644470:-1336934 -) -(1,270:6797234,23644470:1336934,755289,196608 -) -k1,270:8302861,23644470:168693 -k1,270:8630541,23644470:327680 -k1,270:11035977,23644470:168692 -k1,270:13894268,23644470:168693 -k1,270:18125538,23644470:168693 -k1,270:18953522,23644470:168692 -k1,270:21519522,23644470:168693 -k1,270:22103027,23644470:168662 -k1,270:24877431,23644470:168693 -k1,270:25729008,23644470:168692 -k1,270:28230783,23644470:168693 -k1,270:32583029,23644470:0 -) -(1,271:6797234,24485958:25785795,513147,134348 -k1,270:9977696,24485958:174981 -k1,270:12409082,24485958:174981 -k1,270:13243355,24485958:174981 -k1,270:15115063,24485958:174981 -k1,270:19352620,24485958:174980 -k1,270:21243334,24485958:174981 -k1,270:24397582,24485958:174981 -k1,270:25223991,24485958:174981 -k1,270:29751218,24485958:174981 -k1,270:32583029,24485958:0 -) -(1,271:6797234,25327446:25785795,513147,134348 -k1,270:7635032,25327446:154913 -k1,270:10395657,25327446:154914 -k1,270:11209862,25327446:154913 -k1,270:12383860,25327446:154913 -k1,270:12953573,25327446:154870 -k1,270:15950782,25327446:154913 -k1,270:17390202,25327446:154914 -k1,270:18536675,25327446:154913 -k1,270:21769814,25327446:154913 -k1,270:23378317,25327446:154914 -k1,270:24149268,25327446:154913 -k1,270:25323266,25327446:154913 -k1,270:27233890,25327446:154914 -k1,270:29923736,25327446:154913 -k1,270:31361845,25327446:154914 -k1,270:32168186,25327446:154913 -k1,271:32583029,25327446:0 -) -(1,271:6797234,26168934:25785795,513147,134348 -k1,270:8178128,26168934:189449 -k1,270:11443838,26168934:189450 -k1,270:15985533,26168934:189449 -k1,270:17279264,26168934:189449 -k1,270:19333213,26168934:189450 -k1,270:20867461,26168934:189449 -k1,270:22753637,26168934:189449 -k1,270:24042780,26168934:189449 -k1,270:25628802,26168934:189450 -k1,270:26627621,26168934:189449 -k1,270:28123203,26168934:189449 -k1,270:30715203,26168934:189450 -k1,270:31563944,26168934:189449 -k1,270:32583029,26168934:0 -) -(1,271:6797234,27010422:25785795,513147,126483 -k1,270:8731596,27010422:178652 -k1,270:9739279,27010422:178653 -k1,270:12361113,27010422:178652 -k1,270:15627822,27010422:178653 -k1,270:16422512,27010422:178652 -k1,270:17620250,27010422:178653 -k1,270:18891387,27010422:178652 -k1,270:19737195,27010422:178652 -k1,270:20330670,27010422:178632 -k1,270:22206050,27010422:178653 -k1,270:24763004,27010422:178652 -k1,270:25933217,27010422:178653 -k1,270:28950889,27010422:178652 -k1,270:29780970,27010422:178653 -k1,270:31970267,27010422:178652 -k1,270:32583029,27010422:0 -) -(1,271:6797234,27851910:25785795,513147,126483 -k1,270:7323242,27851910:170148 -k1,270:8946979,27851910:170148 -k1,270:10542535,27851910:170148 -k1,270:13172904,27851910:170147 -k1,270:15284228,27851910:170148 -k1,270:18733798,27851910:170148 -k1,270:20297897,27851910:170148 -k1,270:20823905,27851910:170148 -k1,270:22163215,27851910:170148 -k1,270:22992655,27851910:170148 -k1,270:25071211,27851910:170148 -k1,270:25924243,27851910:170147 -k1,270:27054493,27851910:170148 -k1,270:27876069,27851910:170148 -k1,270:29742944,27851910:170148 -k1,270:31012786,27851910:170148 -k1,270:32583029,27851910:0 -) -(1,271:6797234,28693398:25785795,505283,134348 -k1,270:9538147,28693398:205980 -k1,270:11138077,28693398:205979 -k1,270:12994254,28693398:205980 -k1,270:16787018,28693398:205979 -k1,270:18139223,28693398:205980 -k1,270:20089115,28693398:205979 -k1,270:22938817,28693398:205980 -k1,270:25547346,28693398:205979 -k1,270:28946240,28693398:205980 -k1,270:31900144,28693398:205979 -k1,270:32583029,28693398:0 -) -(1,271:6797234,29534886:25785795,513147,134348 -g1,270:8731856,29534886 -g1,270:9950170,29534886 -g1,270:11731438,29534886 -g1,270:12616829,29534886 -g1,270:13171918,29534886 -g1,270:16524084,29534886 -g1,270:17855775,29534886 -g1,270:19321160,29534886 -g1,270:21217116,29534886 -g1,270:24105943,29534886 -g1,270:28367749,29534886 -k1,271:32583029,29534886:2064388 -g1,271:32583029,29534886 -) -] -g1,271:32583029,29669234 -) -h1,271:6630773,29669234:0,0,0 -v1,274:6630773,31035010:0,393216,0 -(1,275:6630773,33265053:25952256,2623259,0 -g1,275:6630773,33265053 -g1,275:6303093,33265053 -r1,292:6401397,33265053:98304,2623259,0 -g1,275:6600626,33265053 -g1,275:6797234,33265053 -[1,275:6797234,33265053:25785795,2623259,0 -(1,275:6797234,31455594:25785795,813800,267386 -(1,274:6797234,31455594:0,813800,267386 -r1,292:8134168,31455594:1336934,1081186,267386 -k1,274:6797234,31455594:-1336934 -) -(1,274:6797234,31455594:1336934,813800,267386 -) -k1,274:8307362,31455594:173194 -k1,274:8635042,31455594:327680 -k1,274:11044980,31455594:173194 -k1,274:14427471,31455594:173193 -k1,274:15789488,31455594:173194 -k1,274:16621974,31455594:173194 -k1,274:20602154,31455594:173194 -k1,274:22059854,31455594:173194 -k1,274:23855064,31455594:173194 -k1,274:24776023,31455594:173193 -k1,274:28976404,31455594:173194 -k1,274:30847636,31455594:173194 -k1,275:32583029,31455594:0 -) -(1,275:6797234,32297082:25785795,513147,134348 -k1,274:9170948,32297082:233963 -k1,274:13467489,32297082:233964 -k1,274:14360744,32297082:233963 -k1,274:16286848,32297082:233964 -k1,274:19245143,32297082:233963 -k1,274:20551276,32297082:233964 -k1,274:24168207,32297082:233963 -k1,274:26677581,32297082:233964 -k1,274:27570836,32297082:233963 -k1,274:28823885,32297082:233964 -k1,274:31900144,32297082:233963 -k1,274:32583029,32297082:0 -) -(1,275:6797234,33138570:25785795,505283,126483 -g1,274:9828274,33138570 -g1,274:11312009,33138570 -g1,274:12127276,33138570 -g1,274:13307579,33138570 -g1,274:16919923,33138570 -g1,274:18110712,33138570 -g1,274:20110870,33138570 -g1,274:22559950,33138570 -g1,274:23520707,33138570 -g1,274:25463849,33138570 -g1,274:26946273,33138570 -g1,274:27796930,33138570 -k1,275:32583029,33138570:4197586 -g1,275:32583029,33138570 -) -] -g1,275:32583029,33265053 -) -h1,275:6630773,33265053:0,0,0 -v1,278:6630773,34630829:0,393216,0 -(1,279:6630773,36835391:25952256,2597778,0 -g1,279:6630773,36835391 -g1,279:6303093,36835391 -r1,292:6401397,36835391:98304,2597778,0 -g1,279:6600626,36835391 -g1,279:6797234,36835391 -[1,279:6797234,36835391:25785795,2597778,0 -(1,279:6797234,35025932:25785795,788319,218313 -(1,278:6797234,35025932:0,788319,218313 -r1,292:7917113,35025932:1119879,1006632,218313 -k1,278:6797234,35025932:-1119879 -) -(1,278:6797234,35025932:1119879,788319,218313 -) -g1,278:8116342,35025932 -g1,278:8444022,35025932 -g1,278:12243799,35025932 -g1,278:14380272,35025932 -k1,278:32583029,35025932:15342110 -g1,279:32583029,35025932 -) -(1,279:6797234,35867420:25785795,513147,134348 -k1,278:9214039,35867420:180061 -k1,278:10375174,35867420:180061 -k1,278:12812951,35867420:180062 -k1,278:13644440,35867420:180061 -k1,278:14180361,35867420:180061 -k1,278:17124731,35867420:180061 -k1,278:18589298,35867420:180061 -k1,278:18982332,35867420:180042 -k1,278:21233332,35867420:180062 -k1,278:22064821,35867420:180061 -k1,278:22992648,35867420:180061 -k1,278:25149930,35867420:180061 -k1,278:25981419,35867420:180061 -k1,278:28539783,35867420:180062 -k1,278:30574513,35867420:180061 -k1,278:31563944,35867420:180061 -k1,278:32583029,35867420:0 -) -(1,279:6797234,36708908:25785795,513147,126483 -g1,278:10315862,36708908 -g1,278:11174383,36708908 -g1,278:13575622,36708908 -g1,278:14457736,36708908 -g1,278:16878636,36708908 -g1,278:20172475,36708908 -g1,278:22542256,36708908 -g1,278:23357523,36708908 -g1,278:25747621,36708908 -k1,279:32583029,36708908:4348972 -g1,279:32583029,36708908 -) -] -g1,279:32583029,36835391 -) -h1,279:6630773,36835391:0,0,0 -v1,282:6630773,38201167:0,393216,0 -(1,283:6630773,42007520:25952256,4199569,0 -g1,283:6630773,42007520 -g1,283:6303093,42007520 -r1,292:6401397,42007520:98304,4199569,0 -g1,283:6600626,42007520 -g1,283:6797234,42007520 -[1,283:6797234,42007520:25785795,4199569,0 -(1,283:6797234,38633705:25785795,825754,196608 -(1,282:6797234,38633705:0,825754,196608 -r1,292:7890375,38633705:1093141,1022362,196608 -k1,282:6797234,38633705:-1093141 -) -(1,282:6797234,38633705:1093141,825754,196608 -) -k1,282:8133700,38633705:243325 -k1,282:9451629,38633705:327680 -k1,282:11931699,38633705:243326 -k1,282:16132744,38633705:243325 -k1,282:19738067,38633705:243326 -k1,282:23722842,38633705:243325 -k1,282:29167761,38633705:243326 -k1,282:30602531,38633705:243325 -k1,282:32583029,38633705:0 -) -(1,283:6797234,39475193:25785795,513147,126483 -k1,282:7718065,39475193:253675 -k1,282:8386529,39475193:253621 -k1,282:10136391,39475193:253675 -k1,282:11041495,39475193:253676 -k1,282:12638003,39475193:253675 -k1,282:14285630,39475193:253676 -k1,282:15152067,39475193:253675 -k1,282:16424827,39475193:253675 -k1,282:17093291,39475193:253621 -k1,282:19940881,39475193:253675 -k1,282:20407494,39475193:253621 -k1,282:22732108,39475193:253676 -k1,282:25364085,39475193:253675 -k1,282:26269188,39475193:253675 -k1,282:27640908,39475193:253676 -k1,282:29591310,39475193:253675 -k1,282:32583029,39475193:0 -) -(1,283:6797234,40316681:25785795,513147,134348 -k1,282:8485139,40316681:221209 -k1,282:9392510,40316681:221209 -k1,282:10145216,40316681:221209 -k1,282:11557871,40316681:221210 -k1,282:13292306,40316681:221209 -k1,282:16085803,40316681:221209 -k1,282:19463226,40316681:221209 -k1,282:20445963,40316681:221209 -k1,282:22883600,40316681:221209 -k1,282:24123895,40316681:221210 -k1,282:26014961,40316681:221209 -k1,282:29010309,40316681:221209 -k1,282:30250603,40316681:221209 -k1,282:32583029,40316681:0 -) -(1,283:6797234,41158169:25785795,513147,134348 -k1,282:7668914,41158169:188795 -k1,282:10880885,41158169:188795 -k1,282:14278978,41158169:188795 -k1,282:17246500,41158169:188795 -k1,282:18196823,41158169:188795 -k1,282:18800450,41158169:188784 -k1,282:19605283,41158169:188795 -k1,282:21245700,41158169:188795 -k1,282:22975246,41158169:188795 -k1,282:26495236,41158169:188795 -k1,282:27445559,41158169:188795 -k1,282:30051977,41158169:188795 -k1,282:31188423,41158169:188795 -k1,282:32583029,41158169:0 -) -(1,283:6797234,41999657:25785795,513147,7863 -k1,283:32583029,41999657:22632858 -g1,283:32583029,41999657 -) -] -g1,283:32583029,42007520 -) -h1,283:6630773,42007520:0,0,0 -v1,286:6630773,43373296:0,393216,0 -(1,287:6630773,45623158:25952256,2643078,0 -g1,287:6630773,45623158 -g1,287:6303093,45623158 -r1,292:6401397,45623158:98304,2643078,0 -g1,287:6600626,45623158 -g1,287:6797234,45623158 -[1,287:6797234,45623158:25785795,2643078,0 -(1,287:6797234,43805834:25785795,825754,196608 -(1,286:6797234,43805834:0,825754,196608 -r1,292:8834093,43805834:2036859,1022362,196608 -k1,286:6797234,43805834:-2036859 -) -(1,286:6797234,43805834:2036859,825754,196608 -) -k1,286:9029062,43805834:194969 -k1,286:10346991,43805834:327680 -k1,286:12778705,43805834:194970 -k1,286:16005369,43805834:194969 -k1,286:20158059,43805834:194970 -k1,286:22962016,43805834:194969 -k1,286:24441491,43805834:194969 -k1,286:26928255,43805834:194970 -k1,286:28773421,43805834:194969 -k1,286:30393799,43805834:194970 -k1,286:31240196,43805834:194969 -k1,286:32583029,43805834:0 -) -(1,287:6797234,44647322:25785795,513147,134348 -k1,286:8467164,44647322:275979 -k1,286:10785901,44647322:275980 -k1,286:13821601,44647322:275979 -k1,286:16929392,44647322:275980 -k1,286:18647818,44647322:275979 -k1,286:21197897,44647322:275980 -k1,286:25155688,44647322:275979 -k1,286:28214327,44647322:275980 -k1,286:31821501,44647322:275979 -k1,286:32583029,44647322:0 -) -(1,287:6797234,45488810:25785795,505283,134348 -g1,286:9414086,45488810 -g1,286:12293738,45488810 -g1,286:13886918,45488810 -g1,286:15788117,45488810 -k1,287:32583029,45488810:12640585 -g1,287:32583029,45488810 -) -] -g1,287:32583029,45623158 -) -h1,287:6630773,45623158:0,0,0 -] -(1,292:32583029,45706769:0,0,0 -g1,292:32583029,45706769 -) -) -] -(1,292:6630773,47279633:25952256,0,0 -h1,292:6630773,47279633:25952256,0,0 -) -] -(1,292:4262630,4025873:0,0,0 -[1,292:-473656,4025873:0,0,0 -(1,292:-473656,-710413:0,0,0 -(1,292:-473656,-710413:0,0,0 -g1,292:-473656,-710413 -) -g1,292:-473656,-710413 -) -] -) -] -!21801 -}18 -Input:197:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:198:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:199:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:200:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:201:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:202:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!569 -{19 -[1,350:4262630,47279633:28320399,43253760,0 -(1,350:4262630,4025873:0,0,0 -[1,350:-473656,4025873:0,0,0 -(1,350:-473656,-710413:0,0,0 -(1,350:-473656,-644877:0,0,0 -k1,350:-473656,-644877:-65536 ) -(1,350:-473656,4736287:0,0,0 -k1,350:-473656,4736287:5209943 +g1,317:17858938,37714001 +g1,317:17858938,37714001 +) +) +g1,317:17858938,37714001 +g1,318:17858938,37714001 +(1,318:17858938,37714001:0,0,0 +(1,318:17858938,37714001:0,0,0 +g1,318:17858938,37714001 +g1,318:17858938,37714001 +g1,318:17858938,37714001 +g1,318:17858938,37714001 +g1,318:17858938,37714001 +(1,318:17858938,37714001:0,0,0 +(1,318:17858938,37714001:0,0,0 +h1,318:17858938,37714001:0,0,0 +g1,318:17858938,37714001 +) +) +g1,318:17858938,37714001 +g1,318:17858938,37714001 +) +) +g1,318:17858938,37714001 +g1,322:17858938,37714001 +g1,322:17858938,37714001 +g1,324:17858938,37714001 +(1,324:17858938,37714001:0,0,0 +(1,324:17858938,37714001:0,0,0 +g1,324:17858938,37714001 +(1,324:17858938,37714001:0,0,0 +(1,324:17858938,37714001:1860446,479396,205458 +(1,324:17858938,37714001:1860446,479396,205458 +g1,324:18024613,37714001 +(1,324:18024613,37714001:0,332241,93333 +r1,345:19719384,37714001:1694771,425574,93333 +k1,324:18024613,37714001:-1694771 +) +(1,324:18024613,37714001:1694771,332241,93333 +k1,324:18024613,37714001:3277 +h1,324:19716107,37714001:0,328964,90056 +) +r1,345:19719384,37714001:0,684854,205458 +) +g1,324:19719384,37714001 +) +) +g1,324:17858938,37714001 +g1,324:17858938,37714001 +) +) +g1,324:17858938,37714001 +g1,325:17858938,37714001 +g1,325:17858938,37714001 +(1,325:17858938,37714001:0,0,0 +(1,325:17858938,37714001:0,0,0 +g1,325:17858938,37714001 +g1,325:17858938,37714001 +g1,325:17858938,37714001 +g1,325:17858938,37714001 +g1,325:17858938,37714001 +(1,325:17858938,37714001:0,0,0 +(1,325:17858938,37714001:2695889,404226,6290 +(1,325:17858938,37714001:2695889,404226,6290 +g1,325:19134531,37714001 +) +g1,325:20554827,37714001 +) +) +g1,325:17858938,37714001 +g1,325:17858938,37714001 +) +) +g1,325:17858938,37714001 +g1,326:17858938,37714001 +(1,326:17858938,37714001:0,0,0 +(1,326:17858938,37714001:0,0,0 +g1,326:17858938,37714001 +g1,326:17858938,37714001 +g1,326:17858938,37714001 +g1,326:17858938,37714001 +g1,326:17858938,37714001 +(1,326:17858938,37714001:0,0,0 +(1,326:17858938,37714001:4457497,404226,101187 +(1,326:17858938,37714001:4457497,404226,101187 +g1,326:20530710,37714001 +) +g1,326:22316435,37714001 +) +) +g1,326:17858938,37714001 +g1,326:17858938,37714001 +) +) +g1,326:17858938,37714001 +g1,327:17858938,37714001 +(1,327:17858938,37714001:0,0,0 +(1,327:17858938,37714001:0,0,0 +g1,327:17858938,37714001 +g1,327:17858938,37714001 +g1,327:17858938,37714001 +g1,327:17858938,37714001 +g1,327:17858938,37714001 +(1,327:17858938,37714001:0,0,0 +(1,327:17858938,37714001:5461959,404226,93333 +(1,327:17858938,37714001:5461959,404226,93333 +g1,327:20361365,37714001 +g1,327:21063387,37714001 +(1,327:21063387,37714001:0,363038,93333 +r1,345:23320897,37714001:2257510,456371,93333 +k1,327:21063387,37714001:-2257510 +) +(1,327:21063387,37714001:2257510,363038,93333 +k1,327:21063387,37714001:3277 +h1,327:23317620,37714001:0,328964,90056 +) +) +g1,327:23320897,37714001 +) +) +g1,327:17858938,37714001 +g1,327:17858938,37714001 +) +) +g1,327:17858938,37714001 +g1,328:17858938,37714001 +g1,328:17858938,37714001 +(1,328:17858938,37714001:0,0,0 +(1,328:17858938,37714001:0,0,0 +g1,328:17858938,37714001 +g1,328:17858938,37714001 +g1,328:17858938,37714001 +g1,328:17858938,37714001 +g1,328:17858938,37714001 +(1,328:17858938,37714001:0,0,0 +(1,328:17858938,37714001:4773118,404226,9436 +(1,328:17858938,37714001:4773118,404226,9436 +(1,328:17858938,37714001:4773118,404226,9436 +g1,328:20063045,37714001 +g1,328:20714211,37714001 +g1,328:22300182,37714001 +) +) +g1,328:22632056,37714001 +) +) +g1,328:17858938,37714001 +g1,328:17858938,37714001 +) +) +g1,328:17858938,37714001 +g1,329:17858938,37714001 +g1,329:17858938,37714001 +g1,329:17858938,37714001 +g1,329:17858938,37714001 +g1,329:17858938,37714001 +g1,329:17858938,37714001 +g1,331:17858938,37714001 +g1,331:17858938,37714001 +) +g1,331:17858938,37714001 +) +) +g1,333:30782371,39080381 +k1,333:32583029,39080381:1800658 +) +(1,336:6630773,40600821:25952256,505283,134348 +h1,335:6630773,40600821:983040,0,0 +k1,335:8862778,40600821:206943 +k1,335:10565908,40600821:206943 +k1,335:13704276,40600821:206943 +k1,335:14124203,40600821:206935 +k1,335:15423631,40600821:206943 +k1,335:18577073,40600821:206943 +k1,335:20638685,40600821:206943 +k1,335:21654998,40600821:206943 +k1,335:23699571,40600821:206943 +k1,335:25097959,40600821:206943 +k1,335:27656989,40600821:206943 +k1,335:29055377,40600821:206943 +k1,335:29913748,40600821:206943 +k1,335:32583029,40600821:0 +) +(1,336:6630773,41465901:25952256,513147,102891 +g1,335:7849087,41465901 +g1,335:9398358,41465901 +g1,335:10256879,41465901 +g1,335:11952295,41465901 +g1,335:15400799,41465901 +g1,335:16619113,41465901 +g1,335:18539317,41465901 +g1,335:20088588,41465901 +k1,336:32583029,41465901:10340928 +g1,336:32583029,41465901 +) +(1,338:6630773,42330981:25952256,513147,134348 +h1,337:6630773,42330981:983040,0,0 +k1,337:8437894,42330981:196246 +k1,337:9653226,42330981:196247 +k1,337:12611815,42330981:196246 +k1,337:15928230,42330981:196246 +k1,337:16337466,42330981:196244 +k1,337:17626197,42330981:196246 +k1,337:18841529,42330981:196247 +k1,337:21727373,42330981:196246 +(1,337:21727373,42330981:0,452978,115847 +r1,345:24195910,42330981:2468537,568825,115847 +k1,337:21727373,42330981:-2468537 +) +(1,337:21727373,42330981:2468537,452978,115847 +k1,337:21727373,42330981:3277 +h1,337:24192633,42330981:0,411205,112570 +) +k1,337:24565826,42330981:196246 +(1,337:24565826,42330981:0,414482,115847 +r1,345:28441210,42330981:3875384,530329,115847 +k1,337:24565826,42330981:-3875384 +) +(1,337:24565826,42330981:3875384,414482,115847 +k1,337:24565826,42330981:3277 +h1,337:28437933,42330981:0,411205,112570 +) +k1,337:28811127,42330981:196247 +(1,337:28811127,42330981:0,414482,115847 +r1,345:30927952,42330981:2116825,530329,115847 +k1,337:28811127,42330981:-2116825 +) +(1,337:28811127,42330981:2116825,414482,115847 +k1,337:28811127,42330981:3277 +h1,337:30924675,42330981:0,411205,112570 +) +k1,337:31297868,42330981:196246 +k1,337:32583029,42330981:0 +) +(1,338:6630773,43196061:25952256,505283,134348 +k1,337:7480669,43196061:163734 +k1,337:9951269,43196061:163733 +k1,337:14178890,43196061:163734 +k1,337:17517188,43196061:163734 +k1,337:18858603,43196061:163733 +k1,337:20563744,43196061:163734 +k1,337:22607050,43196061:163734 +k1,337:23948466,43196061:163734 +k1,337:25653606,43196061:163733 +k1,337:26266882,43196061:163699 +k1,337:29700206,43196061:163733 +k1,337:31041622,43196061:163734 +k1,337:32583029,43196061:0 +) +(1,338:6630773,44061141:25952256,475791,102891 +g1,337:7279579,44061141 +g1,337:9422605,44061141 +k1,338:32583028,44061141:22048932 +g1,338:32583028,44061141 +) +] +(1,345:32583029,45706769:0,0,0 +g1,345:32583029,45706769 +) +) +] +(1,345:6630773,47279633:25952256,0,0 +h1,345:6630773,47279633:25952256,0,0 +) +] +(1,345:4262630,4025873:0,0,0 +[1,345:-473656,4025873:0,0,0 +(1,345:-473656,-710413:0,0,0 +(1,345:-473656,-710413:0,0,0 +g1,345:-473656,-710413 +) +g1,345:-473656,-710413 +) +] +) +] +!41515 +}19 +!11 +{20 +[1,358:4262630,47279633:28320399,43253760,0 +(1,358:4262630,4025873:0,0,0 +[1,358:-473656,4025873:0,0,0 +(1,358:-473656,-710413:0,0,0 +(1,358:-473656,-644877:0,0,0 +k1,358:-473656,-644877:-65536 +) +(1,358:-473656,4736287:0,0,0 +k1,358:-473656,4736287:5209943 ) -g1,350:-473656,-710413 +g1,358:-473656,-710413 ) ] ) -[1,350:6630773,47279633:25952256,43253760,0 -[1,350:6630773,4812305:25952256,786432,0 -(1,350:6630773,4812305:25952256,505283,134348 -(1,350:6630773,4812305:25952256,505283,134348 -g1,350:3078558,4812305 -[1,350:3078558,4812305:0,0,0 -(1,350:3078558,2439708:0,1703936,0 -k1,350:1358238,2439708:-1720320 -(1,223:1358238,2439708:1720320,1703936,0 -(1,223:1358238,2439708:1179648,16384,0 -r1,350:2537886,2439708:1179648,16384,0 +[1,358:6630773,47279633:25952256,43253760,0 +[1,358:6630773,4812305:25952256,786432,0 +(1,358:6630773,4812305:25952256,505283,134348 +(1,358:6630773,4812305:25952256,505283,134348 +g1,358:3078558,4812305 +[1,358:3078558,4812305:0,0,0 +(1,358:3078558,2439708:0,1703936,0 +k1,358:1358238,2439708:-1720320 +(1,218:1358238,2439708:1720320,1703936,0 +(1,218:1358238,2439708:1179648,16384,0 +r1,358:2537886,2439708:1179648,16384,0 ) -g1,223:3062174,2439708 -(1,223:3062174,2439708:16384,1703936,0 -[1,223:3062174,2439708:25952256,1703936,0 -(1,223:3062174,1915420:25952256,1179648,0 -(1,223:3062174,1915420:16384,1179648,0 -r1,350:3078558,1915420:16384,1179648,0 +g1,218:3062174,2439708 +(1,218:3062174,2439708:16384,1703936,0 +[1,218:3062174,2439708:25952256,1703936,0 +(1,218:3062174,1915420:25952256,1179648,0 +(1,218:3062174,1915420:16384,1179648,0 +r1,358:3078558,1915420:16384,1179648,0 ) -k1,223:29014430,1915420:25935872 -g1,223:29014430,1915420 +k1,218:29014430,1915420:25935872 +g1,218:29014430,1915420 ) ] ) ) ) ] -[1,350:3078558,4812305:0,0,0 -(1,350:3078558,2439708:0,1703936,0 -g1,350:29030814,2439708 -g1,350:36135244,2439708 -(1,223:36135244,2439708:1720320,1703936,0 -(1,223:36135244,2439708:16384,1703936,0 -[1,223:36135244,2439708:25952256,1703936,0 -(1,223:36135244,1915420:25952256,1179648,0 -(1,223:36135244,1915420:16384,1179648,0 -r1,350:36151628,1915420:16384,1179648,0 +[1,358:3078558,4812305:0,0,0 +(1,358:3078558,2439708:0,1703936,0 +g1,358:29030814,2439708 +g1,358:36135244,2439708 +(1,218:36135244,2439708:1720320,1703936,0 +(1,218:36135244,2439708:16384,1703936,0 +[1,218:36135244,2439708:25952256,1703936,0 +(1,218:36135244,1915420:25952256,1179648,0 +(1,218:36135244,1915420:16384,1179648,0 +r1,358:36151628,1915420:16384,1179648,0 ) -k1,223:62087500,1915420:25935872 -g1,223:62087500,1915420 +k1,218:62087500,1915420:25935872 +g1,218:62087500,1915420 ) ] ) -g1,223:36675916,2439708 -(1,223:36675916,2439708:1179648,16384,0 -r1,350:37855564,2439708:1179648,16384,0 +g1,218:36675916,2439708 +(1,218:36675916,2439708:1179648,16384,0 +r1,358:37855564,2439708:1179648,16384,0 ) ) -k1,350:3078556,2439708:-34777008 +k1,358:3078556,2439708:-34777008 ) ] -[1,350:3078558,4812305:0,0,0 -(1,350:3078558,49800853:0,16384,2228224 -k1,350:1358238,49800853:-1720320 -(1,223:1358238,49800853:1720320,16384,2228224 -(1,223:1358238,49800853:1179648,16384,0 -r1,350:2537886,49800853:1179648,16384,0 +[1,358:3078558,4812305:0,0,0 +(1,358:3078558,49800853:0,16384,2228224 +k1,358:1358238,49800853:-1720320 +(1,218:1358238,49800853:1720320,16384,2228224 +(1,218:1358238,49800853:1179648,16384,0 +r1,358:2537886,49800853:1179648,16384,0 ) -g1,223:3062174,49800853 -(1,223:3062174,52029077:16384,1703936,0 -[1,223:3062174,52029077:25952256,1703936,0 -(1,223:3062174,51504789:25952256,1179648,0 -(1,223:3062174,51504789:16384,1179648,0 -r1,350:3078558,51504789:16384,1179648,0 +g1,218:3062174,49800853 +(1,218:3062174,52029077:16384,1703936,0 +[1,218:3062174,52029077:25952256,1703936,0 +(1,218:3062174,51504789:25952256,1179648,0 +(1,218:3062174,51504789:16384,1179648,0 +r1,358:3078558,51504789:16384,1179648,0 ) -k1,223:29014430,51504789:25935872 -g1,223:29014430,51504789 +k1,218:29014430,51504789:25935872 +g1,218:29014430,51504789 ) ] ) ) ) -] -[1,350:3078558,4812305:0,0,0 -(1,350:3078558,49800853:0,16384,2228224 -g1,350:29030814,49800853 -g1,350:36135244,49800853 -(1,223:36135244,49800853:1720320,16384,2228224 -(1,223:36135244,52029077:16384,1703936,0 -[1,223:36135244,52029077:25952256,1703936,0 -(1,223:36135244,51504789:25952256,1179648,0 -(1,223:36135244,51504789:16384,1179648,0 -r1,350:36151628,51504789:16384,1179648,0 -) -k1,223:62087500,51504789:25935872 -g1,223:62087500,51504789 -) -] -) -g1,223:36675916,49800853 -(1,223:36675916,49800853:1179648,16384,0 -r1,350:37855564,49800853:1179648,16384,0 -) -) -k1,350:3078556,49800853:-34777008 -) -] -g1,350:6630773,4812305 -k1,350:24492612,4812305:17463380 -g1,350:26454104,4812305 -g1,350:27638994,4812305 -g1,350:29336376,4812305 -g1,350:30135259,4812305 -g1,350:32168841,4812305 -) -) -] -[1,350:6630773,45706769:25952256,40108032,0 -(1,350:6630773,45706769:25952256,40108032,0 -(1,350:6630773,45706769:0,0,0 -g1,350:6630773,45706769 -) -[1,350:6630773,45706769:25952256,40108032,0 -(1,289:6630773,6254097:25952256,555811,147783 -(1,289:6630773,6254097:2450326,534184,12975 -g1,289:6630773,6254097 -g1,289:9081099,6254097 -) -g1,289:11138537,6254097 -g1,289:15828687,6254097 -g1,289:17395915,6254097 -g1,289:20061068,6254097 -k1,289:32583029,6254097:8123053 -g1,289:32583029,6254097 -) -(1,292:6630773,7488801:25952256,513147,134348 -k1,291:8514606,7488801:142541 -k1,291:11266134,7488801:142540 -k1,291:12067967,7488801:142541 -k1,291:14952534,7488801:142541 -k1,291:16591261,7488801:142540 -k1,291:20727566,7488801:142541 -k1,291:22880096,7488801:142541 -k1,291:24041721,7488801:142540 -k1,291:25776132,7488801:142541 -k1,291:27318522,7488801:142541 -k1,291:29683388,7488801:142540 -k1,291:30845014,7488801:142541 -k1,291:32583029,7488801:0 -) -(1,292:6630773,8330289:25952256,513147,134348 -k1,291:7492834,8330289:202769 -k1,291:9119699,8330289:202768 -k1,291:11710600,8330289:202769 -k1,291:12541204,8330289:202769 -k1,291:13947213,8330289:202768 -k1,291:15732676,8330289:202769 -k1,291:16350284,8330289:202765 -k1,291:18049240,8330289:202769 -k1,291:20552977,8330289:202768 -k1,291:21747306,8330289:202769 -k1,291:24270704,8330289:202768 -k1,291:25089511,8330289:202769 -k1,291:25648140,8330289:202769 -k1,291:29140160,8330289:202768 -k1,291:30847636,8330289:202769 -k1,291:32583029,8330289:0 -) -(1,292:6630773,9171777:25952256,513147,134348 -k1,291:8910880,9171777:249146 -k1,291:9811454,9171777:249146 -k1,291:12917970,9171777:249146 -k1,291:14186200,9171777:249145 -k1,291:17197689,9171777:249146 -k1,291:20316001,9171777:249146 -k1,291:21224439,9171777:249146 -k1,291:22492670,9171777:249146 -k1,291:24999530,9171777:249145 -k1,291:26742242,9171777:249146 -k1,291:27677550,9171777:249146 -k1,291:30942007,9171777:249146 -k1,292:32583029,9171777:0 -) -(1,292:6630773,10013265:25952256,505283,126483 -k1,291:8540849,10013265:138638 -k1,291:11437243,10013265:138639 -k1,291:13760196,10013265:138638 -k1,291:15010326,10013265:138639 -k1,291:15563747,10013265:138578 -k1,291:17198572,10013265:138638 -k1,291:20206377,10013265:138639 -k1,291:23669656,10013265:138638 -k1,291:24424332,10013265:138638 -k1,291:25582056,10013265:138639 -k1,291:26946873,10013265:138638 -k1,291:28077072,10013265:138639 -k1,291:30983951,10013265:138638 -k1,292:32583029,10013265:0 -) -(1,292:6630773,10854753:25952256,505283,126483 -k1,291:7744805,10854753:179489 -k1,291:8996462,10854753:179488 -k1,291:11305216,10854753:179489 -k1,291:13345927,10854753:179489 -k1,291:14567438,10854753:179489 -k1,291:17408343,10854753:179488 -k1,291:18203870,10854753:179489 -k1,291:19402444,10854753:179489 -k1,291:21078119,10854753:179488 -k1,291:23228276,10854753:179489 -k1,291:25276196,10854753:179489 -(1,291:25276196,10854753:0,452978,115847 -r1,350:27393021,10854753:2116825,568825,115847 -k1,291:25276196,10854753:-2116825 -) -(1,291:25276196,10854753:2116825,452978,115847 -k1,291:25276196,10854753:3277 -h1,291:27389744,10854753:0,411205,112570 -) -k1,291:27572510,10854753:179489 -k1,291:28943443,10854753:179488 -(1,291:28943443,10854753:0,452978,115847 -r1,350:31411980,10854753:2468537,568825,115847 -k1,291:28943443,10854753:-2468537 -) -(1,291:28943443,10854753:2468537,452978,115847 -k1,291:28943443,10854753:3277 -h1,291:31408703,10854753:0,411205,112570 -) -k1,291:31591469,10854753:179489 -k1,291:32583029,10854753:0 -) -(1,292:6630773,11696241:25952256,513147,115847 -k1,291:10034850,11696241:204609 -k1,291:10811587,11696241:204608 -k1,291:11414655,11696241:204609 -k1,291:12810708,11696241:204608 -k1,291:13413776,11696241:204609 -k1,291:14609944,11696241:204608 -k1,291:17572308,11696241:204609 -k1,291:20397046,11696241:204609 -k1,291:22785969,11696241:204608 -k1,291:24182023,11696241:204609 -(1,291:24182023,11696241:0,414482,115847 -r1,350:24540289,11696241:358266,530329,115847 -k1,291:24182023,11696241:-358266 -) -(1,291:24182023,11696241:358266,414482,115847 -k1,291:24182023,11696241:3277 -h1,291:24537012,11696241:0,411205,112570 -) -k1,291:24744897,11696241:204608 -k1,291:25481003,11696241:204609 -k1,291:26704696,11696241:204608 -k1,291:28647320,11696241:204609 -k1,291:29511220,11696241:204608 -k1,291:30071689,11696241:204609 -k1,291:32583029,11696241:0 -) -(1,292:6630773,12537729:25952256,513147,126483 -k1,291:8792762,12537729:243095 -k1,291:10054942,12537729:243095 -k1,291:12140909,12537729:243095 -k1,291:13043295,12537729:243094 -k1,291:14305475,12537729:243095 -k1,291:18612457,12537729:243095 -k1,291:20433004,12537729:243095 -k1,291:21292137,12537729:243095 -k1,291:22554317,12537729:243095 -k1,291:24103545,12537729:243095 -k1,291:25515147,12537729:243095 -k1,291:26417533,12537729:243094 -k1,291:28156815,12537729:243095 -k1,291:28931407,12537729:243095 -k1,291:31386342,12537729:243095 -k1,291:32583029,12537729:0 -) -(1,292:6630773,13379217:25952256,505283,134348 -k1,291:8003600,13379217:204320 -k1,291:10686493,13379217:204321 -k1,291:12284764,13379217:204320 -(1,291:12284764,13379217:0,424981,115847 -r1,350:13346454,13379217:1061690,540828,115847 -k1,291:12284764,13379217:-1061690 -) -(1,291:12284764,13379217:1061690,424981,115847 -g1,291:13343177,13379217 -h1,291:13343177,13379217:0,411205,112570 -) -k1,291:13550775,13379217:204321 -k1,291:15746079,13379217:204320 -k1,291:17499016,13379217:204321 -k1,291:18234833,13379217:204320 -k1,291:20789275,13379217:204321 -k1,291:21676480,13379217:204320 -k1,291:23956326,13379217:204321 -k1,291:25858684,13379217:204320 -k1,291:29118293,13379217:204321 -k1,291:30341698,13379217:204320 -k1,291:32583029,13379217:0 -) -(1,292:6630773,14220705:25952256,513147,134348 -k1,291:10175833,14220705:185029 -(1,291:10175833,14220705:0,452978,115847 -r1,350:11940946,14220705:1765113,568825,115847 -k1,291:10175833,14220705:-1765113 -) -(1,291:10175833,14220705:1765113,452978,115847 -g1,291:11585957,14220705 -h1,291:11937669,14220705:0,411205,112570 -) -k1,291:12299645,14220705:185029 -k1,291:13112509,14220705:185029 -k1,291:14316623,14220705:185029 -k1,291:16084346,14220705:185029 -(1,291:16084346,14220705:0,424981,115847 -r1,350:17146036,14220705:1061690,540828,115847 -k1,291:16084346,14220705:-1061690 -) -(1,291:16084346,14220705:1061690,424981,115847 -g1,291:17142759,14220705 -h1,291:17142759,14220705:0,411205,112570 -) -k1,291:17331065,14220705:185029 -k1,291:18047591,14220705:185029 -k1,291:19745846,14220705:185029 -k1,291:20617037,14220705:185029 -k1,291:21157926,14220705:185029 -k1,291:23635404,14220705:185029 -k1,291:24471861,14220705:185029 -k1,291:26538429,14220705:185029 -k1,291:28882214,14220705:185029 -k1,291:30634864,14220705:185029 -k1,291:31408406,14220705:185029 -k1,291:32051532,14220705:185029 -k1,291:32583029,14220705:0 -) -(1,292:6630773,15062193:25952256,513147,126483 -g1,291:7896273,15062193 -g1,291:9417363,15062193 -g1,291:10275884,15062193 -g1,291:11494198,15062193 -k1,292:32583028,15062193:18756404 -g1,292:32583028,15062193 -) -v1,294:6630773,16252659:0,393216,0 -(1,302:6630773,17868654:25952256,2009211,196608 -g1,302:6630773,17868654 -g1,302:6630773,17868654 -g1,302:6434165,17868654 -(1,302:6434165,17868654:0,2009211,196608 -r1,350:32779637,17868654:26345472,2205819,196608 -k1,302:6434165,17868654:-26345472 -) -(1,302:6434165,17868654:26345472,2009211,196608 -[1,302:6630773,17868654:25952256,1812603,0 -(1,296:6630773,16460277:25952256,404226,82312 -(1,295:6630773,16460277:0,0,0 -g1,295:6630773,16460277 -g1,295:6630773,16460277 -g1,295:6303093,16460277 -(1,295:6303093,16460277:0,0,0 -) -g1,295:6630773,16460277 -) -g1,296:7263065,16460277 -g1,296:8211503,16460277 -g1,296:10740670,16460277 -g1,296:11689108,16460277 -h1,296:12321400,16460277:0,0,0 -k1,296:32583028,16460277:20261628 -g1,296:32583028,16460277 -) -(1,297:6630773,17126455:25952256,404226,101187 -h1,297:6630773,17126455:0,0,0 -k1,297:6630773,17126455:0 -h1,297:9159938,17126455:0,0,0 -k1,297:32583030,17126455:23423092 -g1,297:32583030,17126455 -) -(1,301:6630773,17792633:25952256,404226,76021 -(1,299:6630773,17792633:0,0,0 -g1,299:6630773,17792633 -g1,299:6630773,17792633 -g1,299:6303093,17792633 -(1,299:6303093,17792633:0,0,0 -) -g1,299:6630773,17792633 -) -g1,301:7579210,17792633 -g1,301:8843793,17792633 -h1,301:9159939,17792633:0,0,0 -k1,301:32583029,17792633:23423090 -g1,301:32583029,17792633 -) -] -) -g1,302:32583029,17868654 -g1,302:6630773,17868654 -g1,302:6630773,17868654 -g1,302:32583029,17868654 -g1,302:32583029,17868654 -) -h1,302:6630773,18065262:0,0,0 -(1,306:6630773,19431038:25952256,505283,134348 -h1,305:6630773,19431038:983040,0,0 -k1,305:9707831,19431038:310783 -k1,305:12399536,19431038:310782 -k1,305:15000147,19431038:310783 -k1,305:16200909,19431038:310783 -k1,305:19560427,19431038:310783 -k1,305:21569247,19431038:310782 -k1,305:25180423,19431038:310783 -k1,305:27824288,19431038:310783 -k1,305:30966881,19431038:310782 -k1,305:31490544,19431038:310671 -k1,305:32583029,19431038:0 -) -(1,306:6630773,20272526:25952256,513147,134348 -k1,305:8617894,20272526:302190 -k1,305:11498269,20272526:302189 -k1,305:14042446,20272526:302190 -k1,305:16034154,20272526:302190 -k1,305:17283994,20272526:302189 -k1,305:20014293,20272526:302190 -k1,305:23308202,20272526:302190 -k1,305:23823280,20272526:302086 -k1,305:25217955,20272526:302190 -k1,305:29133144,20272526:302189 -k1,305:31677321,20272526:302190 -k1,306:32583029,20272526:0 -) -(1,306:6630773,21114014:25952256,513147,134348 -k1,305:9165710,21114014:264770 -k1,305:10496752,21114014:264771 -k1,305:13647728,21114014:264770 -k1,305:14860150,21114014:264771 -k1,305:17300715,21114014:264770 -k1,305:17778412,21114014:264705 -k1,305:19135667,21114014:264770 -k1,305:21468754,21114014:264771 -k1,305:24011555,21114014:264770 -k1,305:24889088,21114014:264771 -k1,305:26172943,21114014:264770 -k1,305:29369139,21114014:264771 -k1,305:30293201,21114014:264770 -k1,305:32583029,21114014:0 -) -(1,306:6630773,21955502:25952256,513147,115847 -g1,305:9041842,21955502 -g1,305:10734637,21955502 -g1,305:11620028,21955502 -(1,305:11620028,21955502:0,435480,115847 -r1,350:13033429,21955502:1413401,551327,115847 -k1,305:11620028,21955502:-1413401 -) -(1,305:11620028,21955502:1413401,435480,115847 -k1,305:11620028,21955502:3277 -h1,305:13030152,21955502:0,411205,112570 -) -g1,305:13232658,21955502 -g1,305:14379538,21955502 -g1,305:14934627,21955502 -k1,306:32583029,21955502:15387410 -g1,306:32583029,21955502 -) -(1,308:6630773,22796990:25952256,513147,134348 -h1,307:6630773,22796990:983040,0,0 -k1,307:9439348,22796990:207451 -k1,307:10262837,22796990:207451 -k1,307:14450945,22796990:207451 -k1,307:16151306,22796990:207451 -k1,307:17425028,22796990:207451 -k1,307:19894783,22796990:207452 -k1,307:22392062,22796990:207451 -k1,307:24949634,22796990:207451 -k1,307:25918613,22796990:207451 -k1,307:27622251,22796990:207451 -k1,307:30821421,22796990:207451 -k1,307:32583029,22796990:0 -) -(1,308:6630773,23638478:25952256,513147,134348 -k1,307:9206288,23638478:209665 -k1,307:13570279,23638478:209664 -k1,307:14971389,23638478:209665 -k1,307:15712551,23638478:209665 -k1,307:20422572,23638478:209664 -k1,307:21248275,23638478:209665 -k1,307:22477025,23638478:209665 -k1,307:24456817,23638478:209665 -k1,307:25950987,23638478:209664 -k1,307:26626613,23638478:209665 -k1,307:28869860,23638478:209665 -k1,307:30575711,23638478:209664 -k1,307:31316873,23638478:209665 -k1,307:32583029,23638478:0 -) -(1,308:6630773,24479966:25952256,513147,134348 -k1,307:7980462,24479966:146448 -k1,307:8658406,24479966:146447 -k1,307:12222557,24479966:146448 -k1,307:12985042,24479966:146447 -k1,307:14150575,24479966:146448 -k1,307:15523202,24479966:146448 -k1,307:16328941,24479966:146447 -k1,307:17494474,24479966:146448 -k1,307:21464948,24479966:146448 -k1,307:22808082,24479966:146447 -k1,307:24450717,24479966:146448 -k1,307:26963014,24479966:146447 -k1,307:31090119,24479966:146448 -k1,307:32583029,24479966:0 -) -(1,308:6630773,25321454:25952256,513147,134348 -k1,307:8536912,25321454:177955 -k1,307:11004696,25321454:177956 -k1,307:13532772,25321454:177955 -k1,307:15744310,25321454:177956 -k1,307:16538303,25321454:177955 -k1,307:17735344,25321454:177956 -k1,307:19566772,25321454:177955 -k1,307:22336022,25321454:177956 -k1,307:23586146,25321454:177955 -k1,307:24295599,25321454:177956 -k1,307:28480425,25321454:177955 -k1,307:30226002,25321454:177956 -k1,307:31900144,25321454:177955 -k1,307:32583029,25321454:0 -) -(1,308:6630773,26162942:25952256,505283,126483 -g1,307:8219365,26162942 -g1,307:9931820,26162942 -g1,307:10747087,26162942 -g1,307:12979898,26162942 -k1,308:32583029,26162942:16681536 -g1,308:32583029,26162942 -) -(1,309:6630773,28254202:25952256,555811,147783 -(1,309:6630773,28254202:2450326,534184,12975 -g1,309:6630773,28254202 -g1,309:9081099,28254202 -) -k1,309:32583029,28254202:20053884 -g1,309:32583029,28254202 -) -(1,312:6630773,29488906:25952256,505283,134348 -k1,311:7740713,29488906:280910 -k1,311:10690904,29488906:280910 -k1,311:12361177,29488906:280910 -k1,311:14931915,29488906:280910 -k1,311:15425735,29488906:280828 -k1,311:16799130,29488906:280910 -k1,311:20026539,29488906:280910 -k1,311:22932166,29488906:280910 -k1,311:23829114,29488906:280910 -k1,311:26294339,29488906:280910 -k1,311:27241095,29488906:280910 -k1,311:29297375,29488906:280910 -k1,311:31159587,29488906:280828 -k1,311:32583029,29488906:0 -) -(1,312:6630773,30330394:25952256,513147,134348 -k1,311:9947524,30330394:261463 -k1,311:13702710,30330394:261462 -k1,311:15442665,30330394:261463 -k1,311:16895572,30330394:261462 -k1,311:20072732,30330394:261463 -k1,311:22309168,30330394:261836 -k1,311:22783560,30330394:261400 -k1,311:24137507,30330394:261462 -k1,311:26429931,30330394:261463 -k1,311:27532221,30330394:261463 -k1,311:28445111,30330394:261462 -k1,311:31563944,30330394:261463 -k1,311:32583029,30330394:0 -) -(1,312:6630773,31171882:25952256,513147,134348 -k1,311:8243004,31171882:226145 -k1,311:9128440,31171882:226144 -k1,311:10373670,31171882:226145 -k1,311:12637985,31171882:226145 -k1,311:15327628,31171882:226145 -k1,311:15766737,31171882:226117 -k1,311:17085367,31171882:226145 -k1,311:18330597,31171882:226145 -k1,311:21038590,31171882:226145 -k1,311:22585284,31171882:226144 -k1,311:23759080,31171882:226145 -k1,311:25004310,31171882:226145 -k1,311:27298771,31171882:226145 -k1,311:28184207,31171882:226144 -k1,311:30293201,31171882:226145 -k1,311:32583029,31171882:0 -) -(1,312:6630773,32013370:25952256,513147,126483 -k1,311:8066718,32013370:244500 -k1,311:8970509,32013370:244499 -k1,311:10723648,32013370:244500 -k1,311:14565418,32013370:244499 -k1,311:17937296,32013370:244500 -k1,311:19200881,32013370:244500 -k1,311:21648700,32013370:244499 -k1,311:23287151,32013370:244500 -k1,311:23887511,32013370:244500 -k1,311:26366788,32013370:244499 -k1,311:28924709,32013370:244500 -k1,311:31036329,32013370:244499 -k1,311:31812326,32013370:244500 -k1,311:32583029,32013370:0 -) -(1,312:6630773,32854858:25952256,513147,126483 -g1,311:9491419,32854858 -g1,311:11258269,32854858 -g1,311:13875121,32854858 -h1,311:14273580,32854858:0,0,0 -k1,312:32583030,32854858:18135780 -g1,312:32583030,32854858 -) -(1,338:6630773,37595914:25952256,3893677,0 -k1,338:8431432,37595914:1800659 -(1,313:8431432,37595914:0,0,0 -g1,313:8431432,37595914 -g1,313:8431432,37595914 -g1,313:8103752,37595914 -(1,313:8103752,37595914:0,0,0 -) -g1,313:8431432,37595914 -) -(1,336:8431432,37595914:22350939,3893677,0 -g1,336:17858938,37595914 -(1,336:17858938,36229534:0,0,0 -(1,327:17858938,36229534:0,0,0 -g1,325:17858938,36229534 -g1,326:17858938,36229534 -g1,326:17858938,36229534 -g1,326:17858938,36229534 -g1,326:17858938,36229534 -g1,327:17858938,36229534 -) -(1,336:17858938,36229534:0,0,0 -g1,318:17858938,36229534 -(1,322:17858938,36229534:0,0,0 -(1,322:17858938,36229534:0,0,0 -g1,322:17858938,36229534 -g1,322:17858938,36229534 -g1,322:17858938,36229534 -g1,322:17858938,36229534 -g1,322:17858938,36229534 -(1,322:17858938,36229534:0,0,0 -(1,322:17858938,36229534:13078954,1717529,665744 -[1,322:17858938,36229534:13078954,1717529,665744 -(1,322:17858938,35185529:13078954,673524,285028 -g1,321:17858938,35185529 -(1,321:17858938,35185529:665744,673524,285028 -k1,321:18045406,35185529:186468 -g1,321:18524682,35185529 -(1,321:18524682,35185529:0,673524,285028 -(1,321:18524682,35185529:0,0,0 -(1,321:18524682,35185529:0,0,0 -g1,321:18524682,35185529 -g1,321:18524682,35185529 -g1,321:18524682,35185529 -g1,321:18524682,35185529 -g1,321:18524682,35185529 -(1,321:18524682,35185529:0,0,0 -(1,321:18524682,35185529:331874,388497,0 -(1,321:18524682,35185529:331874,388497,0 -) -g1,321:18856556,35185529 -) -) -g1,321:18524682,35185529 -g1,321:18524682,35185529 -) -) -g1,321:18524682,35185529 -) -) -g1,321:18524682,35185529 -(1,321:18524682,35185529:665744,673524,285028 -g1,321:19003958,35185529 -k1,321:19190426,35185529:186468 -) -g1,321:19190426,35185529 -(1,321:19190426,35185529:639530,673524,285028 -k1,321:19390001,35185529:199575 -g1,321:19829956,35185529 -(1,321:19829956,35185529:0,660417,271921 -(1,321:19829956,35185529:0,0,0 -(1,321:19829956,35185529:0,0,0 -g1,321:19829956,35185529 -g1,321:19829956,35185529 -g1,321:19829956,35185529 -g1,321:19829956,35185529 -g1,321:19829956,35185529 -(1,321:19829956,35185529:0,0,0 -(1,321:19829956,35185529:331874,388497,0 -(1,321:19829956,35185529:331874,388497,0 -) -g1,321:20161830,35185529 -) -) -g1,321:19829956,35185529 -g1,321:19829956,35185529 -) -) -g1,321:19829956,35185529 -) -) -g1,321:19829956,35185529 -(1,321:19829956,35185529:665744,673524,285028 -g1,321:20296125,35185529 -k1,321:20495700,35185529:199575 -) -g1,321:20495700,35185529 -(1,321:20495700,35185529:639530,673524,285028 -k1,321:20695275,35185529:199575 -g1,321:21135230,35185529 -(1,321:21135230,35185529:0,655699,276639 -(1,321:21135230,35185529:0,0,0 -(1,321:21135230,35185529:0,0,0 -g1,321:21135230,35185529 -g1,321:21135230,35185529 -g1,321:21135230,35185529 -g1,321:21135230,35185529 -g1,321:21135230,35185529 -(1,321:21135230,35185529:0,0,0 -(1,321:21135230,35185529:331874,388497,9436 -(1,321:21135230,35185529:331874,388497,9436 -) -g1,321:21467104,35185529 -) -) -g1,321:21135230,35185529 -g1,321:21135230,35185529 -) -) -g1,321:21135230,35185529 -) -) -g1,321:21135230,35185529 -(1,321:21135230,35185529:665744,673524,285028 -g1,321:21601399,35185529 -k1,321:21800974,35185529:199575 -) -g1,321:21800974,35185529 -(1,321:21800974,35185529:639530,673524,285028 -k1,321:22000549,35185529:199575 -g1,321:22440504,35185529 -(1,321:22440504,35185529:0,655699,276639 -(1,321:22440504,35185529:0,0,0 -(1,321:22440504,35185529:0,0,0 -g1,321:22440504,35185529 -g1,321:22440504,35185529 -g1,321:22440504,35185529 -g1,321:22440504,35185529 -g1,321:22440504,35185529 -(1,321:22440504,35185529:0,0,0 -(1,321:22440504,35185529:331874,379060,0 -(1,321:22440504,35185529:331874,379060,0 -) -g1,321:22772378,35185529 -) -) -g1,321:22440504,35185529 -g1,321:22440504,35185529 +] +[1,358:3078558,4812305:0,0,0 +(1,358:3078558,49800853:0,16384,2228224 +g1,358:29030814,49800853 +g1,358:36135244,49800853 +(1,218:36135244,49800853:1720320,16384,2228224 +(1,218:36135244,52029077:16384,1703936,0 +[1,218:36135244,52029077:25952256,1703936,0 +(1,218:36135244,51504789:25952256,1179648,0 +(1,218:36135244,51504789:16384,1179648,0 +r1,358:36151628,51504789:16384,1179648,0 ) +k1,218:62087500,51504789:25935872 +g1,218:62087500,51504789 ) -g1,321:22440504,35185529 +] ) +g1,218:36675916,49800853 +(1,218:36675916,49800853:1179648,16384,0 +r1,358:37855564,49800853:1179648,16384,0 ) -g1,321:22440504,35185529 -(1,321:22440504,35185529:665744,673524,285028 -g1,321:22906673,35185529 -k1,321:23106248,35185529:199575 ) -g1,321:23106248,35185529 -(1,321:23106248,35185529:639530,673524,285028 -k1,321:23305823,35185529:199575 -g1,321:23745778,35185529 -(1,321:23745778,35185529:0,650981,281357 -(1,321:23745778,35185529:0,0,0 -(1,321:23745778,35185529:0,0,0 -g1,321:23745778,35185529 -g1,321:23745778,35185529 -g1,321:23745778,35185529 -g1,321:23745778,35185529 -g1,321:23745778,35185529 -(1,321:23745778,35185529:0,0,0 -(1,321:23745778,35185529:331874,379060,9436 -(1,321:23745778,35185529:331874,379060,9436 +k1,358:3078556,49800853:-34777008 ) -g1,321:24077652,35185529 +] +g1,358:6630773,4812305 +g1,358:6630773,4812305 +g1,358:9478312,4812305 +g1,358:12241309,4812305 +g1,358:13040192,4812305 +g1,358:16139389,4812305 +k1,358:32184570,4812305:16045181 +) +) +] +[1,358:6630773,45706769:25952256,40108032,0 +(1,358:6630773,45706769:25952256,40108032,0 +(1,358:6630773,45706769:0,0,0 +g1,358:6630773,45706769 +) +[1,358:6630773,45706769:25952256,40108032,0 +(1,339:6630773,6254097:25952256,32768,229376 +(1,339:6630773,6254097:0,32768,229376 +(1,339:6630773,6254097:5505024,32768,229376 +r1,358:12135797,6254097:5505024,262144,229376 +) +k1,339:6630773,6254097:-5505024 +) +(1,339:6630773,6254097:25952256,32768,0 +r1,358:32583029,6254097:25952256,32768,0 +) +) +(1,339:6630773,7885949:25952256,606339,161218 +(1,339:6630773,7885949:1974731,575668,0 +g1,339:6630773,7885949 +g1,339:8605504,7885949 +) +g1,339:12245898,7885949 +g1,339:15764395,7885949 +g1,339:16800913,7885949 +k1,339:32583029,7885949:12047350 +g1,339:32583029,7885949 +) +(1,341:6630773,9216335:25952256,555811,139132 +(1,341:6630773,9216335:2450326,527696,0 +g1,341:6630773,9216335 +g1,341:9081099,9216335 +) +g1,341:11147187,9216335 +g1,341:12511123,9216335 +g1,341:13893081,9216335 +k1,341:32583029,9216335:15966403 +g1,341:32583029,9216335 +) +(1,344:6630773,10474631:25952256,513147,134348 +k1,343:8221029,10474631:154362 +k1,343:9034684,10474631:154363 +k1,343:9955162,10474631:154362 +k1,343:10924792,10474631:154362 +k1,343:12145426,10474631:154363 +k1,343:14199677,10474631:154362 +k1,343:16078947,10474631:154362 +k1,343:20404676,10474631:154362 +k1,343:22025735,10474631:154363 +k1,343:23924010,10474631:154362 +k1,343:25472323,10474631:154362 +k1,343:28182590,10474631:154363 +k1,343:28996244,10474631:154362 +k1,343:32583029,10474631:0 +) +(1,344:6630773,11339711:25952256,513147,134348 +k1,343:7836718,11339711:227492 +k1,343:9792394,11339711:227492 +k1,343:11413836,11339711:227491 +k1,343:14648120,11339711:227492 +k1,343:16443233,11339711:227492 +k1,343:18096133,11339711:227492 +k1,343:18975052,11339711:227491 +k1,343:20801622,11339711:227492 +k1,343:22220559,11339711:227492 +k1,343:23552333,11339711:227492 +k1,343:24897868,11339711:227491 +k1,343:26191631,11339711:227492 +k1,343:27078415,11339711:227492 +k1,343:28961346,11339711:227492 +k1,343:30136488,11339711:227491 +k1,343:30719840,11339711:227492 +k1,343:32583029,11339711:0 +) +(1,344:6630773,12204791:25952256,513147,126483 +g1,343:8210846,12204791 +g1,343:8941572,12204791 +g1,343:11593158,12204791 +g1,343:12983832,12204791 +g1,343:15887732,12204791 +g1,343:16738389,12204791 +g1,343:17703734,12204791 +g1,343:18562255,12204791 +k1,344:32583029,12204791:13101959 +g1,344:32583029,12204791 +) +(1,346:6630773,13069871:25952256,513147,134348 +h1,345:6630773,13069871:983040,0,0 +k1,345:8313205,13069871:229499 +k1,345:9074201,13069871:229499 +k1,345:12512998,13069871:229499 +k1,345:13393925,13069871:229499 +k1,345:15234953,13069871:229498 +k1,345:16794833,13069871:229499 +k1,345:17675760,13069871:229499 +k1,345:19171415,13069871:229499 +k1,345:21988931,13069871:229499 +k1,345:22904592,13069871:229499 +k1,345:24455952,13069871:229499 +k1,345:25344743,13069871:229499 +k1,345:26593326,13069871:229498 +k1,345:29140833,13069871:229499 +k1,345:30029624,13069871:229499 +k1,345:31994516,13069871:229499 +k1,345:32583029,13069871:0 +) +(1,346:6630773,13934951:25952256,513147,134348 +k1,345:8305568,13934951:238901 +k1,345:9203760,13934951:238900 +k1,345:10208777,13934951:238901 +k1,345:11604387,13934951:238900 +k1,345:12947570,13934951:238901 +k1,345:14598771,13934951:238900 +k1,345:15856757,13934951:238901 +k1,345:20921728,13934951:238900 +k1,345:21819921,13934951:238901 +k1,345:23077906,13934951:238900 +k1,345:26012303,13934951:238901 +k1,345:26934088,13934951:238900 +k1,345:29132515,13934951:238901 +k1,345:30655921,13934951:238900 +k1,345:32051532,13934951:238901 +k1,345:32583029,13934951:0 +) +(1,346:6630773,14800031:25952256,505283,134348 +k1,345:8729236,14800031:201851 +k1,345:9582515,14800031:201851 +k1,345:11050522,14800031:201851 +k1,345:13137843,14800031:201850 +k1,345:13955732,14800031:201851 +k1,345:15909360,14800031:201851 +k1,345:17808593,14800031:201851 +k1,345:19296260,14800031:201851 +k1,345:22166082,14800031:201851 +k1,345:23460418,14800031:201851 +k1,345:26827657,14800031:201850 +k1,345:27948323,14800031:201851 +k1,345:29538227,14800031:201851 +k1,345:31568532,14800031:201851 +k1,345:32583029,14800031:0 +) +(1,346:6630773,15665111:25952256,513147,134348 +k1,345:8129855,15665111:168701 +k1,345:8949983,15665111:168700 +k1,345:10211169,15665111:168701 +k1,345:13572783,15665111:168700 +k1,345:16767281,15665111:168701 +k1,345:17618866,15665111:168700 +k1,345:20251065,15665111:168701 +k1,345:21047601,15665111:168701 +k1,345:24021242,15665111:168700 +k1,345:25108758,15665111:168701 +k1,345:27643963,15665111:168700 +k1,345:28715750,15665111:168701 +k1,345:32583029,15665111:0 +) +(1,346:6630773,16530191:25952256,513147,126483 +k1,345:7430665,16530191:200238 +k1,345:8080478,16530191:200236 +k1,345:9472161,16530191:200238 +k1,345:11584739,16530191:200237 +k1,345:14454258,16530191:200238 +k1,345:16203112,16530191:200238 +k1,345:19429146,16530191:200237 +k1,345:20312269,16530191:200238 +k1,345:22666020,16530191:200238 +k1,345:26528409,16530191:200237 +k1,345:27380075,16530191:200238 +k1,345:28672797,16530191:200237 +k1,345:29820686,16530191:200238 +k1,345:32583029,16530191:0 +) +(1,346:6630773,17395271:25952256,505283,7863 +k1,346:32583029,17395271:24112660 +g1,346:32583029,17395271 +) +(1,348:6630773,18260351:25952256,505283,134348 +h1,347:6630773,18260351:983040,0,0 +k1,347:10436973,18260351:263979 +k1,347:11720037,18260351:263979 +k1,347:16810086,18260351:263978 +k1,347:18265510,18260351:263979 +k1,347:20441830,18260351:263979 +k1,347:21772080,18260351:263979 +k1,347:24165324,18260351:263979 +k1,347:26321326,18260351:263978 +k1,347:30058058,18260351:263979 +k1,347:31478747,18260351:263979 +k1,347:32583029,18260351:0 +) +(1,348:6630773,19125431:25952256,513147,134348 +k1,347:9282237,19125431:208282 +k1,347:11132850,19125431:208281 +k1,347:11992560,19125431:208282 +k1,347:13219926,19125431:208281 +k1,347:16094868,19125431:208282 +k1,347:17064677,19125431:208281 +k1,347:19010974,19125431:208282 +k1,347:20265211,19125431:208282 +k1,347:22965826,19125431:208281 +k1,347:24568059,19125431:208282 +k1,347:25132200,19125431:208281 +k1,347:26990679,19125431:208282 +k1,347:27858252,19125431:208281 +k1,347:29736391,19125431:208282 +k1,347:30630834,19125431:208281 +k1,347:31297213,19125431:208282 +k1,347:32583029,19125431:0 +) +(1,348:6630773,19990511:25952256,513147,134348 +k1,347:9549899,19990511:214455 +k1,347:11462392,19990511:214455 +k1,347:13934563,19990511:214456 +k1,347:14765056,19990511:214455 +k1,347:15335371,19990511:214455 +k1,347:17841620,19990511:214455 +k1,347:20898371,19990511:214455 +k1,347:22259051,19990511:214455 +k1,347:24958632,19990511:214456 +k1,347:25660659,19990511:214439 +k1,347:28116446,19990511:214456 +k1,347:30308122,19990511:214455 +k1,347:31877862,19990511:214455 +k1,347:32583029,19990511:0 +) +(1,348:6630773,20855591:25952256,513147,134348 +k1,347:8444763,20855591:223431 +k1,347:11045185,20855591:223431 +k1,347:11881378,20855591:223431 +k1,347:13123894,20855591:223431 +k1,347:14843512,20855591:223431 +k1,347:16460894,20855591:223431 +k1,347:19746822,20855591:223431 +k1,347:21830164,20855591:223430 +k1,347:23797508,20855591:223431 +k1,347:24680231,20855591:223431 +k1,347:25259522,20855591:223431 +k1,347:27420197,20855591:223431 +k1,347:28326513,20855591:223431 +k1,347:31900144,20855591:223431 +k1,347:32583029,20855591:0 +) +(1,348:6630773,21720671:25952256,505283,126483 +g1,347:8288833,21720671 +g1,347:9818443,21720671 +g1,347:11403758,21720671 +g1,347:11958847,21720671 +g1,347:13295781,21720671 +g1,347:14177895,21720671 +g1,347:14732984,21720671 +g1,347:16540467,21720671 +k1,348:32583029,21720671:14415303 +g1,348:32583029,21720671 +) +(1,350:6630773,22585751:25952256,513147,126483 +h1,349:6630773,22585751:983040,0,0 +k1,349:9144229,22585751:259018 +k1,349:10507530,22585751:259019 +k1,349:12052364,22585751:259018 +k1,349:13728926,22585751:259018 +k1,349:15375998,22585751:259019 +k1,349:16251054,22585751:259018 +k1,349:20063434,22585751:259018 +k1,349:22513321,22585751:259018 +k1,349:25085106,22585751:259019 +k1,349:26027009,22585751:259018 +k1,349:27853648,22585751:259018 +k1,349:29846750,22585751:259019 +k1,349:30788653,22585751:259018 +k1,349:32583029,22585751:0 +) +(1,350:6630773,23450831:25952256,513147,134348 +k1,349:9648505,23450831:187887 +k1,349:10314148,23450831:187886 +k1,349:13562566,23450831:187887 +k1,349:14366490,23450831:187886 +k1,349:16867143,23450831:187887 +k1,349:18002680,23450831:187886 +k1,349:20681590,23450831:187887 +k1,349:23964086,23450831:187886 +k1,349:25343418,23450831:187887 +k1,349:28119321,23450831:187886 +k1,349:29664459,23450831:187887 +k1,349:30503773,23450831:187886 +k1,349:32227169,23450831:187887 +k1,349:32583029,23450831:0 +) +(1,350:6630773,24315911:25952256,513147,126483 +g1,349:8807223,24315911 +g1,349:11437838,24315911 +g1,349:12793777,24315911 +g1,349:14097288,24315911 +g1,349:15911324,24315911 +g1,349:16466413,24315911 +g1,349:17948837,24315911 +g1,349:20912375,24315911 +g1,349:21727642,24315911 +g1,349:22282731,24315911 +k1,350:32583029,24315911:8144163 +g1,350:32583029,24315911 +) +(1,352:6630773,25180991:25952256,513147,134348 +h1,351:6630773,25180991:983040,0,0 +k1,351:9663998,25180991:266950 +k1,351:12991479,25180991:266950 +k1,351:14206079,25180991:266949 +k1,351:17234716,25180991:266950 +k1,351:19570638,25180991:266950 +k1,351:20785239,25180991:266950 +k1,351:23068076,25180991:266950 +k1,351:24017911,25180991:266950 +k1,351:26687411,25180991:266950 +k1,351:29040371,25180991:266949 +k1,351:30464031,25180991:266950 +k1,351:31835263,25180991:266950 +k1,351:32583029,25180991:0 +) +(1,352:6630773,26046071:25952256,513147,134348 +k1,351:10386368,26046071:225171 +k1,351:12005489,26046071:225170 +k1,351:14993003,26046071:225171 +k1,351:16786450,26046071:225170 +k1,351:17670913,26046071:225171 +k1,351:21870843,26046071:225171 +k1,351:23115098,26046071:225170 +k1,351:24993742,26046071:225171 +k1,351:27058508,26046071:225170 +k1,351:28181522,26046071:225171 +k1,351:29472963,26046071:225170 +k1,351:31379788,26046071:225171 +k1,351:32583029,26046071:0 +) +(1,352:6630773,26911151:25952256,505283,126483 +k1,351:7428390,26911151:146189 +k1,351:11070269,26911151:146189 +k1,351:12560601,26911151:146189 +k1,351:13322828,26911151:146189 +k1,351:15070717,26911151:146189 +k1,351:16914288,26911151:146189 +k1,351:17518574,26911151:146189 +k1,351:18797224,26911151:146188 +k1,351:20009684,26911151:146189 +k1,351:22281206,26911151:146189 +k1,351:24312866,26911151:146189 +k1,351:27443565,26911151:146189 +k1,351:28760227,26911151:146189 +k1,351:29998901,26911151:146189 +k1,351:30831252,26911151:146189 +k1,351:32583029,26911151:0 +) +(1,352:6630773,27776231:25952256,513147,134348 +k1,351:11239416,27776231:214454 +k1,351:12558152,27776231:214454 +k1,351:13520372,27776231:214454 +k1,351:15312277,27776231:214453 +k1,351:16142769,27776231:214454 +k1,351:16945736,27776231:214454 +k1,351:17846352,27776231:214454 +k1,351:18676844,27776231:214454 +k1,351:20023105,27776231:214454 +k1,351:23313818,27776231:214453 +k1,351:26544239,27776231:214454 +k1,351:27374731,27776231:214454 +k1,351:29820686,27776231:214454 +k1,351:32583029,27776231:0 +) +(1,352:6630773,28641311:25952256,513147,134348 +k1,351:8642778,28641311:270058 +k1,351:10111491,28641311:270059 +k1,351:13395550,28641311:270058 +k1,351:14684694,28641311:270059 +k1,351:16608225,28641311:270058 +k1,351:18894827,28641311:270059 +k1,351:20313731,28641311:270058 +k1,351:21602875,28641311:270059 +k1,351:25259834,28641311:270058 +k1,351:26814399,28641311:270059 +k1,351:28254930,28641311:270058 +k1,351:29791145,28641311:270059 +k1,351:31931601,28641311:270058 +k1,351:32583029,28641311:0 +) +(1,352:6630773,29506391:25952256,505283,7863 +k1,352:32583029,29506391:22113812 +g1,352:32583029,29506391 +) +(1,353:6630773,31623209:25952256,555811,139132 +(1,353:6630773,31623209:2450326,534184,0 +g1,353:6630773,31623209 +g1,353:9081099,31623209 +) +g1,353:10393851,31623209 +g1,353:13214718,31623209 +k1,353:32583029,31623209:17787386 +g1,353:32583029,31623209 +) +(1,356:6630773,32881505:25952256,513147,134348 +k1,355:8547148,32881505:191467 +k1,355:10698141,32881505:191467 +k1,355:13673578,32881505:191468 +k1,355:14481083,32881505:191467 +k1,355:16106478,32881505:191467 +k1,355:16712780,32881505:191459 +k1,355:17587133,32881505:191468 +k1,355:20619586,32881505:191467 +k1,355:21572581,32881505:191467 +k1,355:22534751,32881505:191467 +k1,355:23141054,32881505:191460 +k1,355:26404849,32881505:191467 +k1,355:29176468,32881505:191467 +k1,355:32583029,32881505:0 +) +(1,356:6630773,33746585:25952256,505283,134348 +k1,355:9760445,33746585:171377 +k1,355:12338303,33746585:171376 +k1,355:14106137,33746585:171377 +k1,355:14809010,33746585:171376 +k1,355:18951213,33746585:171377 +k1,355:19738627,33746585:171376 +k1,355:20828819,33746585:171377 +k1,355:22388249,33746585:171377 +k1,355:24979214,33746585:171376 +k1,355:28623344,33746585:171377 +k1,355:29150580,33746585:171376 +k1,355:31194976,33746585:171377 +k1,355:32583029,33746585:0 +) +(1,356:6630773,34611665:25952256,505283,134348 +k1,355:8372669,34611665:243743 +k1,355:12149458,34611665:243743 +k1,355:14624702,34611665:243743 +k1,355:15283243,34611665:243698 +k1,355:17990484,34611665:243743 +k1,355:19377830,34611665:243743 +k1,355:20997174,34611665:243743 +k1,355:22628969,34611665:243742 +k1,355:24701166,34611665:243743 +k1,355:25936469,34611665:243743 +k1,355:28309477,34611665:243743 +k1,355:31510860,34611665:243743 +k1,355:32583029,34611665:0 +) +(1,356:6630773,35476745:25952256,513147,126483 +k1,355:8187312,35476745:176351 +k1,355:9355224,35476745:176352 +k1,355:12883742,35476745:176351 +k1,355:16907056,35476745:176351 +k1,355:18477358,35476745:176351 +k1,355:19009570,35476745:176352 +k1,355:20627058,35476745:176351 +k1,355:22488340,35476745:176351 +k1,355:26448084,35476745:176351 +k1,355:27815881,35476745:176352 +k1,355:31297213,35476745:176351 +k1,355:32583029,35476745:0 +) +(1,356:6630773,36341825:25952256,513147,126483 +k1,355:7235431,36341825:248798 +k1,355:10039479,36341825:248799 +k1,355:14071670,36341825:248798 +k1,355:14948303,36341825:248798 +k1,355:16216187,36341825:248799 +k1,355:17832066,36341825:248798 +k1,355:18740157,36341825:248799 +k1,355:22188423,36341825:248798 +k1,355:25717953,36341825:248798 +k1,355:28208739,36341825:248799 +k1,355:29966176,36341825:248798 +k1,355:32583029,36341825:0 +) +(1,356:6630773,37206905:25952256,505283,134348 +k1,355:8022430,37206905:200212 +k1,355:11061663,37206905:200213 +k1,355:14664504,37206905:200212 +k1,355:15856276,37206905:200212 +k1,355:18185753,37206905:200212 +k1,355:21649659,37206905:200213 +k1,355:22536033,37206905:200212 +k1,355:24014852,37206905:200212 +k1,355:24901226,37206905:200212 +k1,355:26120524,37206905:200213 +k1,355:29099463,37206905:200212 +k1,355:31153689,37206905:200212 +k1,356:32583029,37206905:0 +) +(1,356:6630773,38071985:25952256,513147,134348 +k1,355:8036345,38071985:278353 +k1,355:8927460,38071985:278353 +k1,355:10224898,38071985:278353 +k1,355:12826503,38071985:278354 +k1,355:13764148,38071985:278353 +k1,355:15430554,38071985:278353 +k1,355:17711032,38071985:278353 +k1,355:20220886,38071985:278353 +k1,355:23490958,38071985:278353 +k1,355:24428603,38071985:278353 +k1,355:25726041,38071985:278353 +k1,355:27096880,38071985:278354 +k1,355:28034525,38071985:278353 +k1,355:29331963,38071985:278353 +k1,355:31900144,38071985:278353 +k1,355:32583029,38071985:0 +) +(1,356:6630773,38937065:25952256,513147,134348 +g1,355:9855799,38937065 +g1,355:11046588,38937065 +g1,355:13114248,38937065 +g1,355:14734298,38937065 +g1,355:15584955,38937065 +g1,355:17815145,38937065 +g1,355:18429217,38937065 +g1,355:20016499,38937065 +g1,355:20747225,38937065 +g1,355:24036477,38937065 +g1,355:24851744,38937065 +g1,355:27329660,38937065 +h1,355:28300248,38937065:0,0,0 +g1,355:28499477,38937065 +g1,355:29508076,38937065 +g1,355:31205458,38937065 +h1,355:32002376,38937065:0,0,0 +k1,356:32583029,38937065:406983 +g1,356:32583029,38937065 +) +(1,358:6630773,39802145:25952256,513147,134348 +h1,357:6630773,39802145:983040,0,0 +k1,357:8490361,39802145:248713 +k1,357:11405079,39802145:248713 +k1,357:12305220,39802145:248713 +k1,357:13941986,39802145:248713 +k1,357:16192824,39802145:248713 +k1,357:17360352,39802145:248713 +k1,357:21390492,39802145:248713 +k1,357:24307176,39802145:248713 +k1,357:26533111,39802145:248714 +k1,357:29478631,39802145:248713 +k1,357:30413506,39802145:248713 +k1,357:31900144,39802145:248663 +k1,357:32583029,39802145:0 +) +(1,358:6630773,40667225:25952256,530548,141067 +k1,357:8694585,40667225:195381 +k1,357:10376982,40667225:195385 +k1,357:12446697,40667225:195385 +k1,357:15338890,40667225:195386 +k1,357:16525835,40667225:195385 +k1,357:18007036,40667225:195385 +k1,357:20986390,40667225:195385 +k1,357:21794537,40667225:195385 +$1,357:21794537,40667225 +k1,357:23869247,40667225:0 +k1,357:24284189,40667225:0 +k1,357:24699131,40667225:0 +k1,357:25114073,40667225:0 +k1,357:28018667,40667225:0 +k1,357:28433609,40667225:0 +k1,357:30923261,40667225:0 +k1,357:31338203,40667225:0 +k1,357:32168087,40667225:0 +k1,358:32583029,40667225:0 +) +(1,358:6630773,41532305:25952256,530548,134348 +(1,357:7460657,41630619:32768,0,0 +) +$1,357:10812961,41532305 +k1,357:10954436,41532305:141475 +k1,357:13653126,41532305:141475 +k1,357:14742252,41532305:141475 +k1,357:16754125,41532305:141475 +k1,357:19298150,41532305:141475 +k1,357:20055662,41532305:141474 +k1,357:21465914,41532305:141475 +k1,357:24681683,41532305:141475 +k1,357:25450993,41532305:141475 +k1,357:28258473,41532305:141475 +k1,357:29051376,41532305:141475 +k1,357:30580904,41532305:141475 +k1,357:32583029,41532305:0 +) +(1,358:6630773,42397385:25952256,505283,134348 +k1,357:8549885,42397385:167335 +k1,357:11801344,42397385:167335 +k1,357:14340427,42397385:167335 +k1,357:17326466,42397385:167335 +k1,357:18987367,42397385:167335 +k1,357:19840864,42397385:167335 +k1,357:21445405,42397385:167336 +k1,357:23806885,42397385:167335 +k1,357:24657105,42397385:167335 +k1,357:27143104,42397385:167335 +k1,357:30622629,42397385:167335 +k1,357:31809049,42397385:167335 +k1,358:32583029,42397385:0 +) +(1,358:6630773,43262465:25952256,513147,134348 +k1,357:9670442,43262465:159362 +k1,357:11343029,43262465:159361 +k1,357:13712265,43262465:159362 +k1,357:17233624,43262465:159362 +k1,357:18485470,43262465:159361 +k1,357:20011913,43262465:159362 +k1,357:23336664,43262465:159362 +k1,357:24123860,43262465:159361 +k1,357:25302307,43262465:159362 +k1,357:26828750,43262465:159362 +k1,357:27647403,43262465:159361 +k1,357:29498905,43262465:159362 +k1,357:32583029,43262465:0 +) +(1,358:6630773,44127545:25952256,513147,134348 +k1,357:7139827,44127545:153194 +k1,357:8561798,44127545:153194 +k1,357:9850732,44127545:153195 +k1,357:11397877,44127545:153194 +k1,357:16377142,44127545:153194 +k1,357:17146374,44127545:153194 +k1,357:19167954,44127545:153149 +k1,357:21501531,44127545:153194 +k1,357:22186222,44127545:153194 +k1,357:23625233,44127545:153195 +k1,357:26736067,44127545:153194 +k1,357:29424194,44127545:153194 +k1,358:32583029,44127545:0 +) +(1,358:6630773,44992625:25952256,513147,134348 +k1,357:8659057,44992625:148056 +k1,357:9911396,44992625:148057 +k1,357:10807218,44992625:148056 +k1,357:12241090,44992625:148056 +k1,357:15188190,44992625:148057 +k1,357:17894772,44992625:148056 +k1,357:20096726,44992625:148056 +k1,357:21441470,44992625:148057 +k1,357:25956794,44992625:148005 +k1,357:26764143,44992625:148057 +k1,357:29822653,44992625:148056 +k1,357:32583029,44992625:0 +) +] +(1,358:32583029,45706769:0,0,0 +g1,358:32583029,45706769 +) +) +] +(1,358:6630773,47279633:25952256,0,0 +h1,358:6630773,47279633:25952256,0,0 +) +] +(1,358:4262630,4025873:0,0,0 +[1,358:-473656,4025873:0,0,0 +(1,358:-473656,-710413:0,0,0 +(1,358:-473656,-710413:0,0,0 +g1,358:-473656,-710413 +) +g1,358:-473656,-710413 +) +] +) +] +!22126 +}20 +!11 +{21 +[1,384:4262630,47279633:28320399,43253760,0 +(1,384:4262630,4025873:0,0,0 +[1,384:-473656,4025873:0,0,0 +(1,384:-473656,-710413:0,0,0 +(1,384:-473656,-644877:0,0,0 +k1,384:-473656,-644877:-65536 ) +(1,384:-473656,4736287:0,0,0 +k1,384:-473656,4736287:5209943 ) -g1,321:23745778,35185529 -g1,321:23745778,35185529 +g1,384:-473656,-710413 ) +] ) -g1,321:23745778,35185529 +[1,384:6630773,47279633:25952256,43253760,0 +[1,384:6630773,4812305:25952256,786432,0 +(1,384:6630773,4812305:25952256,505283,134348 +(1,384:6630773,4812305:25952256,505283,134348 +g1,384:3078558,4812305 +[1,384:3078558,4812305:0,0,0 +(1,384:3078558,2439708:0,1703936,0 +k1,384:1358238,2439708:-1720320 +(1,218:1358238,2439708:1720320,1703936,0 +(1,218:1358238,2439708:1179648,16384,0 +r1,384:2537886,2439708:1179648,16384,0 ) +g1,218:3062174,2439708 +(1,218:3062174,2439708:16384,1703936,0 +[1,218:3062174,2439708:25952256,1703936,0 +(1,218:3062174,1915420:25952256,1179648,0 +(1,218:3062174,1915420:16384,1179648,0 +r1,384:3078558,1915420:16384,1179648,0 ) -g1,321:23745778,35185529 -(1,321:23745778,35185529:665744,673524,285028 -g1,321:24211947,35185529 -k1,321:24411522,35185529:199575 +k1,218:29014430,1915420:25935872 +g1,218:29014430,1915420 ) -g1,321:24411522,35185529 -(1,321:24411522,35185529:639530,673524,285028 -k1,321:24611097,35185529:199575 -g1,321:25051052,35185529 -(1,321:25051052,35185529:0,655699,276639 -(1,321:25051052,35185529:0,0,0 -(1,321:25051052,35185529:0,0,0 -g1,321:25051052,35185529 -g1,321:25051052,35185529 -g1,321:25051052,35185529 -g1,321:25051052,35185529 -g1,321:25051052,35185529 -(1,321:25051052,35185529:0,0,0 -(1,321:25051052,35185529:331874,388497,9436 -(1,321:25051052,35185529:331874,388497,9436 +] ) -g1,321:25382926,35185529 ) ) -g1,321:25051052,35185529 -g1,321:25051052,35185529 +] +[1,384:3078558,4812305:0,0,0 +(1,384:3078558,2439708:0,1703936,0 +g1,384:29030814,2439708 +g1,384:36135244,2439708 +(1,218:36135244,2439708:1720320,1703936,0 +(1,218:36135244,2439708:16384,1703936,0 +[1,218:36135244,2439708:25952256,1703936,0 +(1,218:36135244,1915420:25952256,1179648,0 +(1,218:36135244,1915420:16384,1179648,0 +r1,384:36151628,1915420:16384,1179648,0 ) +k1,218:62087500,1915420:25935872 +g1,218:62087500,1915420 ) -g1,321:25051052,35185529 +] ) +g1,218:36675916,2439708 +(1,218:36675916,2439708:1179648,16384,0 +r1,384:37855564,2439708:1179648,16384,0 ) -g1,321:25051052,35185529 -(1,321:25051052,35185529:665744,673524,285028 -g1,321:25517221,35185529 -k1,321:25716796,35185529:199575 ) -g1,321:25716796,35185529 -(1,321:25716796,35185529:639530,673524,285028 -k1,321:25916371,35185529:199575 -g1,321:26356326,35185529 -(1,321:26356326,35185529:0,655699,276639 -(1,321:26356326,35185529:0,0,0 -(1,321:26356326,35185529:0,0,0 -g1,321:26356326,35185529 -g1,321:26356326,35185529 -g1,321:26356326,35185529 -g1,321:26356326,35185529 -g1,321:26356326,35185529 -(1,321:26356326,35185529:0,0,0 -(1,321:26356326,35185529:331874,379060,0 -(1,321:26356326,35185529:331874,379060,0 +k1,384:3078556,2439708:-34777008 ) -g1,321:26688200,35185529 +] +[1,384:3078558,4812305:0,0,0 +(1,384:3078558,49800853:0,16384,2228224 +k1,384:1358238,49800853:-1720320 +(1,218:1358238,49800853:1720320,16384,2228224 +(1,218:1358238,49800853:1179648,16384,0 +r1,384:2537886,49800853:1179648,16384,0 ) +g1,218:3062174,49800853 +(1,218:3062174,52029077:16384,1703936,0 +[1,218:3062174,52029077:25952256,1703936,0 +(1,218:3062174,51504789:25952256,1179648,0 +(1,218:3062174,51504789:16384,1179648,0 +r1,384:3078558,51504789:16384,1179648,0 ) -g1,321:26356326,35185529 -g1,321:26356326,35185529 +k1,218:29014430,51504789:25935872 +g1,218:29014430,51504789 ) +] +) +) +) +] +[1,384:3078558,4812305:0,0,0 +(1,384:3078558,49800853:0,16384,2228224 +g1,384:29030814,49800853 +g1,384:36135244,49800853 +(1,218:36135244,49800853:1720320,16384,2228224 +(1,218:36135244,52029077:16384,1703936,0 +[1,218:36135244,52029077:25952256,1703936,0 +(1,218:36135244,51504789:25952256,1179648,0 +(1,218:36135244,51504789:16384,1179648,0 +r1,384:36151628,51504789:16384,1179648,0 +) +k1,218:62087500,51504789:25935872 +g1,218:62087500,51504789 +) +] +) +g1,218:36675916,49800853 +(1,218:36675916,49800853:1179648,16384,0 +r1,384:37855564,49800853:1179648,16384,0 +) +) +k1,384:3078556,49800853:-34777008 +) +] +g1,384:6630773,4812305 +k1,384:24492612,4812305:17463380 +g1,384:26454104,4812305 +g1,384:27638994,4812305 +g1,384:29336376,4812305 +g1,384:30135259,4812305 +g1,384:32168841,4812305 +) +) +] +[1,384:6630773,45706769:25952256,40108032,0 +(1,384:6630773,45706769:25952256,40108032,0 +(1,384:6630773,45706769:0,0,0 +g1,384:6630773,45706769 +) +[1,384:6630773,45706769:25952256,40108032,0 +(1,358:6630773,6254097:25952256,513147,102891 +k1,357:9137743,6254097:160781 +k1,357:13105511,6254097:160782 +k1,357:14213943,6254097:160781 +k1,357:15393810,6254097:160782 +k1,357:19184630,6254097:160781 +k1,357:20889440,6254097:160782 +k1,357:21701649,6254097:160781 +k1,357:23131208,6254097:160782 +k1,357:24931700,6254097:160781 +k1,357:26283927,6254097:160782 +k1,357:30282496,6254097:160781 +k1,357:31252648,6254097:160782 +k1,357:32583029,6254097:0 +) +(1,358:6630773,7119177:25952256,513147,134348 +k1,357:7552507,7119177:270306 +k1,357:9819040,7119177:270306 +k1,357:11782797,7119177:270307 +k1,357:14280016,7119177:270306 +k1,357:18357308,7119177:270306 +k1,357:19998627,7119177:270306 +k1,357:20624793,7119177:270306 +k1,357:22580030,7119177:270306 +k1,357:26460060,7119177:270307 +k1,357:27721926,7119177:270306 +k1,357:31297213,7119177:270306 +k1,357:32583029,7119177:0 +) +(1,358:6630773,7984257:25952256,513147,7863 +g1,357:9613971,7984257 +g1,357:10429238,7984257 +g1,357:10984327,7984257 +g1,357:13924927,7984257 +k1,358:32583029,7984257:17501392 +g1,358:32583029,7984257 +) +(1,360:6630773,8849337:25952256,505283,134348 +h1,359:6630773,8849337:983040,0,0 +k1,359:9512946,8849337:268597 +k1,359:12817170,8849337:268596 +k1,359:14525593,8849337:268597 +k1,359:15445617,8849337:268596 +k1,359:16461980,8849337:268597 +k1,359:18300820,8849337:268597 +k1,359:19185454,8849337:268596 +k1,359:20042564,8849337:268597 +k1,359:21502606,8849337:268597 +k1,359:23108136,8849337:268596 +k1,359:25668527,8849337:268597 +k1,359:27629263,8849337:268596 +k1,359:29912437,8849337:268597 +k1,359:32583029,8849337:0 +) +(1,360:6630773,9714417:25952256,505283,134348 +k1,359:9002230,9714417:161583 +k1,359:14996516,9714417:161582 +k1,359:15809527,9714417:161583 +k1,359:19635883,9714417:161583 +k1,359:20816550,9714417:161582 +k1,359:22174820,9714417:161583 +k1,359:24118327,9714417:161583 +k1,359:26479297,9714417:161582 +k1,359:29821342,9714417:161583 +k1,359:32583029,9714417:0 +) +(1,360:6630773,10579497:25952256,513147,134348 +k1,359:7426801,10579497:144600 +k1,359:10393382,10579497:144601 +k1,359:12144925,10579497:144600 +k1,359:15325154,10579497:144601 +k1,359:16001251,10579497:144600 +k1,359:19254880,10579497:144601 +k1,359:20050908,10579497:144600 +k1,359:22638691,10579497:144601 +k1,359:23139151,10579497:144600 +k1,359:26371808,10579497:144601 +k1,359:27897252,10579497:144600 +k1,359:28709009,10579497:144601 +k1,359:29442122,10579497:144600 +k1,359:30311551,10579497:144601 +k1,359:32583029,10579497:0 +) +(1,360:6630773,11444577:25952256,513147,134348 +g1,359:8767246,11444577 +g1,359:10157920,11444577 +g1,359:13257772,11444577 +g1,359:14850952,11444577 +g1,359:18233265,11444577 +g1,359:20719045,11444577 +g1,359:22695610,11444577 +g1,359:24391026,11444577 +g1,359:25121752,11444577 +g1,359:25676841,11444577 +g1,359:27853291,11444577 +k1,360:32583029,11444577:1995576 +g1,360:32583029,11444577 +) +(1,361:6630773,13561395:25952256,564462,12975 +(1,361:6630773,13561395:2450326,534184,12975 +g1,361:6630773,13561395 +g1,361:9081099,13561395 +) +g1,361:11706603,13561395 +k1,361:32583029,13561395:18252364 +g1,361:32583029,13561395 +) +(1,363:6630773,14819691:25952256,505283,126483 +(1,363:6630773,14819691:0,0,0 +g1,363:6630773,14819691 +) +k1,363:32583029,14819691:22505062 +g1,363:32583029,14819691 +) +(1,365:6630773,16077987:25952256,513147,134348 +k1,364:8639704,16077987:225696 +k1,364:11258119,16077987:225696 +k1,364:14203558,16077987:225695 +k1,364:15376905,16077987:225696 +k1,364:17164324,16077987:225696 +k1,364:18546730,16077987:225696 +k1,364:20632992,16077987:225695 +k1,364:21510116,16077987:225696 +k1,364:23461375,16077987:225696 +k1,364:24448599,16077987:225696 +k1,364:26222910,16077987:225695 +k1,364:26980103,16077987:225696 +k1,364:29493006,16077987:225696 +k1,364:32583029,16077987:0 +) +(1,365:6630773,16943067:25952256,505283,134348 +k1,364:7547762,16943067:230827 +k1,364:11800534,16943067:230828 +k1,364:13916832,16943067:230827 +k1,364:14763697,16943067:230827 +k1,364:16746301,16943067:230827 +k1,364:19631992,16943067:230828 +k1,364:21148635,16943067:230827 +k1,364:23660770,16943067:230827 +k1,364:24543026,16943067:230828 +k1,364:26842825,16943067:230827 +k1,364:27689690,16943067:230827 +k1,364:30116628,16943067:230827 +k1,364:31030341,16943067:230828 +k1,364:32022696,16943067:230827 +k1,365:32583029,16943067:0 +) +(1,365:6630773,17808147:25952256,513147,134348 +k1,364:8267808,17808147:254881 +k1,364:9910741,17808147:254880 +k1,364:11733243,17808147:254881 +k1,364:12343983,17808147:254880 +k1,364:14002645,17808147:254881 +k1,364:14940410,17808147:254880 +k1,364:16689512,17808147:254881 +k1,364:19143780,17808147:254880 +k1,364:22753449,17808147:254881 +k1,364:25167740,17808147:254880 +k1,364:27861871,17808147:254881 +k1,364:28776043,17808147:254880 +k1,364:32583029,17808147:0 +) +(1,365:6630773,18673227:25952256,513147,126483 +k1,364:9594857,18673227:262035 +k1,364:10666261,18673227:262034 +k1,364:12476912,18673227:262035 +k1,364:13895656,18673227:262034 +k1,364:15754148,18673227:262035 +k1,364:17886581,18673227:262035 +k1,364:18800043,18673227:262034 +k1,364:20328234,18673227:262035 +k1,364:25066377,18673227:262034 +k1,364:27896113,18673227:262035 +k1,364:30364089,18673227:262034 +k1,364:32051532,18673227:262035 +k1,364:32583029,18673227:0 +) +(1,365:6630773,19538307:25952256,513147,134348 +g1,364:9939030,19538307 +g1,364:11210428,19538307 +g1,364:12510662,19538307 +g1,364:13361319,19538307 +g1,364:14308314,19538307 +g1,364:17671621,19538307 +g1,364:20160023,19538307 +g1,364:22813575,19538307 +g1,364:24058759,19538307 +g1,364:26041223,19538307 +g1,364:26899744,19538307 +g1,364:28759655,19538307 +g1,364:30289265,19538307 +k1,365:32583029,19538307:694686 +g1,365:32583029,19538307 +) +(1,367:6630773,20403387:25952256,513147,134348 +h1,366:6630773,20403387:983040,0,0 +k1,366:8447431,20403387:205783 +k1,366:10254914,20403387:205783 +k1,366:12988421,20403387:205783 +k1,366:15680639,20403387:205782 +k1,366:16242282,20403387:205783 +k1,366:18646143,20403387:205783 +k1,366:21611647,20403387:205783 +k1,366:22348927,20403387:205783 +k1,366:25393730,20403387:205783 +k1,366:27167133,20403387:205782 +k1,366:29116829,20403387:205783 +k1,366:31391584,20403387:205783 +k1,366:32583029,20403387:0 +) +(1,367:6630773,21268467:25952256,513147,134348 +k1,366:10068732,21268467:189995 +k1,366:13527007,21268467:189995 +k1,366:15434045,21268467:189995 +k1,366:17340428,21268467:189995 +k1,366:18189715,21268467:189995 +k1,366:22464568,21268467:189994 +k1,366:23800788,21268467:189995 +k1,366:25083268,21268467:189995 +k1,366:25932555,21268467:189995 +k1,366:29000891,21268467:189995 +k1,366:29873771,21268467:189995 +k1,367:32583029,21268467:0 +) +(1,367:6630773,22133547:25952256,513147,134348 +k1,366:8779296,22133547:278125 +k1,366:12073387,22133547:278124 +k1,366:13483974,22133547:278125 +k1,366:16049305,22133547:278124 +k1,366:18170302,22133547:278125 +k1,366:19064465,22133547:278125 +k1,366:20361674,22133547:278124 +k1,366:22020643,22133547:278125 +k1,366:24218973,22133547:278125 +k1,366:26754812,22133547:278124 +k1,366:28898747,22133547:278125 +k1,366:29792909,22133547:278124 +k1,366:30426894,22133547:278125 +k1,366:32583029,22133547:0 +) +(1,367:6630773,22998627:25952256,505283,134348 +k1,366:10306360,22998627:241500 +k1,366:12466754,22998627:241500 +k1,366:16793113,22998627:241500 +k1,366:19321820,22998627:241500 +k1,366:21736494,22998627:241500 +k1,366:22594031,22998627:241499 +k1,366:23854616,22998627:241500 +k1,366:26531434,22998627:241500 +k1,366:29537243,22998627:241500 +k1,366:30845014,22998627:241500 +k1,366:32583029,22998627:0 +) +(1,367:6630773,23863707:25952256,513147,134348 +k1,366:9840011,23863707:183441 +k1,366:11214897,23863707:183441 +k1,366:13725522,23863707:183442 +k1,366:14928048,23863707:183441 +k1,366:17787979,23863707:183441 +k1,366:21596872,23863707:183441 +k1,366:22396351,23863707:183441 +k1,366:22935652,23863707:183441 +k1,366:26279895,23863707:183442 +k1,366:27091171,23863707:183441 +k1,366:29607694,23863707:183441 +k1,366:32583029,23863707:0 +) +(1,367:6630773,24728787:25952256,513147,134348 +k1,366:7857607,24728787:207749 +k1,366:9750942,24728787:207749 +k1,366:11720299,24728787:207749 +k1,366:13796479,24728787:207749 +k1,366:15136690,24728787:207749 +k1,366:17533342,24728787:207749 +k1,366:20359910,24728787:207749 +k1,366:22026490,24728787:207749 +k1,366:24764584,24728787:207749 +k1,366:25631625,24728787:207749 +k1,366:28064977,24728787:207749 +k1,366:28628586,24728787:207749 +k1,366:31391584,24728787:207749 +k1,366:32583029,24728787:0 +) +(1,367:6630773,25593867:25952256,513147,7863 +g1,366:8807223,25593867 +k1,367:32583029,25593867:21344420 +g1,367:32583029,25593867 +) +(1,370:7679349,27065936:24903680,513147,134348 +(1,369:7679349,27065936:0,355205,0 +g1,369:7679349,27065936 +g1,369:6368629,27065936 +g1,369:6040949,27065936 +(1,369:6040949,27065936:1310720,355205,0 +k1,369:7351669,27065936:1310720 +(1,369:7351669,27065936:0,355205,0 +k1,369:6953210,27065936:-398459 +) +) +g1,369:7679349,27065936 +) +k1,369:8857388,27065936:280196 +k1,369:10596415,27065936:280196 +k1,369:14423420,27065936:280197 +k1,369:16009749,27065936:280196 +k1,369:18360227,27065936:280196 +k1,369:19588074,27065936:280196 +k1,369:22359293,27065936:280196 +k1,369:25227507,27065936:280197 +k1,369:26159131,27065936:280196 +k1,369:27898158,27065936:280196 +k1,369:31116333,27065936:280196 +k1,369:32583029,27065936:0 +) +(1,370:7679349,27931016:24903680,505283,126483 +k1,369:9833935,27931016:176709 +k1,369:11202088,27931016:176708 +k1,369:11994835,27931016:176709 +k1,369:13190629,27931016:176709 +k1,369:18367079,27931016:176708 +k1,369:19648725,27931016:176709 +k1,369:22475054,27931016:176708 +k1,369:23936269,27931016:176709 +k1,369:25283451,27931016:176709 +k1,369:28742857,27931016:176708 +k1,369:30122807,27931016:176709 +k1,369:32583029,27931016:0 +) +(1,370:7679349,28796096:24903680,505283,126483 +g1,369:10298823,28796096 +g1,369:12196090,28796096 +g1,369:13565792,28796096 +g1,369:15167491,28796096 +g1,369:16825551,28796096 +k1,370:32583029,28796096:12612405 +g1,370:32583029,28796096 +) +(1,371:7679349,30166115:24903680,513147,126483 +(1,370:7679349,30166115:0,355205,0 +g1,370:7679349,30166115 +g1,370:6368629,30166115 +g1,370:6040949,30166115 +(1,370:6040949,30166115:1310720,355205,0 +k1,370:7351669,30166115:1310720 +(1,370:7351669,30166115:0,355205,0 +k1,370:6953210,30166115:-398459 +) +) +g1,370:7679349,30166115 +) +k1,370:10201283,30166115:137079 +k1,370:10694223,30166115:137080 +k1,370:12361568,30166115:137079 +k1,370:16230923,30166115:137080 +k1,370:17027294,30166115:137079 +k1,370:18183458,30166115:137079 +k1,370:21170699,30166115:137080 +k1,370:22499223,30166115:137079 +k1,370:23402419,30166115:137080 +k1,370:24558583,30166115:137079 +k1,370:27268606,30166115:137080 +k1,370:31386342,30166115:137079 +k1,370:32583029,30166115:0 +) +(1,371:7679349,31031195:24903680,513147,134348 +k1,370:10179274,31031195:166188 +k1,370:11012618,31031195:166188 +k1,370:11767319,31031195:166188 +k1,370:14987486,31031195:166189 +k1,370:17573263,31031195:166188 +k1,370:18930896,31031195:166188 +k1,370:20228891,31031195:166188 +k1,370:23305533,31031195:166188 +k1,370:25616059,31031195:166188 +k1,370:26973693,31031195:166189 +k1,370:28648520,31031195:166188 +k1,370:31478747,31031195:166188 +k1,370:32583029,31031195:0 +) +(1,371:7679349,31896275:24903680,505283,126483 +g1,370:8626344,31896275 +k1,371:32583028,31896275:20573716 +g1,371:32583028,31896275 +) +(1,372:7679349,33266295:24903680,513147,126483 +(1,371:7679349,33266295:0,355205,0 +g1,371:7679349,33266295 +g1,371:6368629,33266295 +g1,371:6040949,33266295 +(1,371:6040949,33266295:1310720,355205,0 +k1,371:7351669,33266295:1310720 +(1,371:7351669,33266295:0,355205,0 +k1,371:6953210,33266295:-398459 +) +) +g1,371:7679349,33266295 +) +k1,371:8330995,33266295:173889 +k1,371:9117646,33266295:173889 +k1,371:10057650,33266295:173888 +k1,371:13035169,33266295:173889 +k1,371:15639133,33266295:173889 +k1,371:16168882,33266295:173889 +k1,371:19519956,33266295:173889 +k1,371:20885290,33266295:173889 +k1,371:22917780,33266295:173889 +k1,371:24163837,33266295:173888 +k1,371:29011754,33266295:173889 +k1,371:30681830,33266295:173889 +k1,372:32583029,33266295:0 +) +(1,372:7679349,34131375:24903680,505283,126483 +g1,371:8851788,34131375 +g1,371:10335523,34131375 +g1,371:14120882,34131375 +g1,371:15339196,34131375 +g1,371:18214915,34131375 +g1,371:22069087,34131375 +g1,371:24136092,34131375 +g1,371:24691181,34131375 +k1,372:32583029,34131375:5453253 +g1,372:32583029,34131375 +) +(1,373:7679349,35501395:24903680,505283,126483 +(1,372:7679349,35501395:0,355205,0 +g1,372:7679349,35501395 +g1,372:6368629,35501395 +g1,372:6040949,35501395 +(1,372:6040949,35501395:1310720,355205,0 +k1,372:7351669,35501395:1310720 +(1,372:7351669,35501395:0,355205,0 +k1,372:6953210,35501395:-398459 +) +) +g1,372:7679349,35501395 +) +g1,372:8625033,35501395 +k1,373:32583028,35501395:21958492 +g1,373:32583028,35501395 +) +(1,374:7679349,36871414:24903680,513147,134348 +(1,373:7679349,36871414:0,355205,0 +g1,373:7679349,36871414 +g1,373:6368629,36871414 +g1,373:6040949,36871414 +(1,373:6040949,36871414:1310720,355205,0 +k1,373:7351669,36871414:1310720 +(1,373:7351669,36871414:0,355205,0 +k1,373:6953210,36871414:-398459 +) +) +g1,373:7679349,36871414 +) +k1,373:11340846,36871414:230687 +k1,373:12222960,36871414:230686 +k1,373:13472732,36871414:230687 +k1,373:15685883,36871414:230687 +k1,373:16678097,36871414:230686 +k1,373:20156748,36871414:230687 +k1,373:22089404,36871414:230686 +k1,373:24204906,36871414:230687 +k1,373:27530203,36871414:230687 +k1,373:29458927,36871414:230686 +k1,373:30860087,36871414:230687 +k1,373:32583029,36871414:0 +) +(1,374:7679349,37736494:24903680,505283,7863 +g1,373:8897663,37736494 +k1,374:32583029,37736494:21253980 +g1,374:32583029,37736494 +) +v1,377:6630773,39208563:0,393216,0 +(1,384:6630773,45706769:25952256,6891422,0 +g1,384:6630773,45706769 +g1,384:6237557,45706769 +r1,384:6368629,45706769:131072,6891422,0 +g1,384:6567858,45706769 +g1,384:6764466,45706769 +[1,384:6764466,45706769:25818563,6891422,0 +(1,378:6764466,39516861:25818563,701514,196608 +(1,377:6764466,39516861:0,701514,196608 +r1,384:8010564,39516861:1246098,898122,196608 +k1,377:6764466,39516861:-1246098 +) +(1,377:6764466,39516861:1246098,701514,196608 +) +k1,377:8207744,39516861:197180 +k1,377:8535424,39516861:327680 +k1,377:11630607,39516861:197181 +k1,377:14939436,39516861:197180 +k1,377:15492477,39516861:197181 +k1,377:19752234,39516861:197180 +k1,377:22610832,39516861:197181 +k1,377:25879684,39516861:197180 +k1,377:26608362,39516861:197181 +k1,377:29111754,39516861:197180 +k1,377:29796521,39516861:197179 +k1,377:32051532,39516861:197180 +k1,377:32583029,39516861:0 +) +(1,378:6764466,40381941:25818563,513147,134348 +k1,377:7371711,40381941:251385 +k1,377:12123453,40381941:251385 +k1,377:13566283,40381941:251385 +k1,377:14503830,40381941:251385 +k1,377:16879892,40381941:251385 +k1,377:17817440,40381941:251386 +k1,377:20698785,40381941:251385 +k1,377:22600367,40381941:251385 +k1,377:23511044,40381941:251385 +k1,377:26838689,40381941:251385 +k1,377:28586261,40381941:251385 +k1,377:30122152,40381941:251385 +k1,377:32583029,40381941:0 +) +(1,378:6764466,41247021:25818563,513147,126483 +k1,377:8425047,41247021:262043 +k1,377:9411919,41247021:262044 +k1,377:14244443,41247021:262043 +k1,377:14862346,41247021:262043 +k1,377:17974551,41247021:262044 +k1,377:18714351,41247021:262043 +k1,377:21780024,41247021:262043 +k1,377:23740105,41247021:262043 +k1,377:25391512,41247021:262044 +k1,377:26645115,41247021:262043 +k1,377:29379176,41247021:262043 +k1,377:29997080,41247021:262044 +k1,377:31648486,41247021:262043 +k1,377:32583029,41247021:0 +) +(1,378:6764466,42112101:25818563,513147,134348 +k1,377:9771413,42112101:248537 +k1,377:10635987,42112101:248536 +k1,377:12318452,42112101:248537 +k1,377:12981782,42112101:248487 +k1,377:13913203,42112101:248536 +k1,377:16790389,42112101:248537 +k1,377:18428288,42112101:248536 +k1,377:21829762,42112101:248537 +k1,377:24088287,42112101:248536 +k1,377:25355909,42112101:248537 +k1,377:27661620,42112101:248536 +k1,377:29406344,42112101:248537 +k1,377:31835263,42112101:248536 +k1,377:32583029,42112101:0 +) +(1,378:6764466,42977181:25818563,513147,126483 +k1,377:8640996,42977181:189633 +k1,377:9308386,42977181:189633 +k1,377:10517104,42977181:189633 +k1,377:13383227,42977181:189633 +k1,377:14677142,42977181:189633 +k1,377:16242376,42977181:189633 +k1,377:17179775,42977181:189633 +k1,377:21045978,42977181:189633 +k1,377:22629562,42977181:189633 +k1,377:24479877,42977181:189633 +k1,377:25999891,42977181:189633 +k1,377:27752558,42977181:189633 +k1,377:29376119,42977181:189633 +k1,377:30722462,42977181:189633 +k1,377:32583029,42977181:0 +) +(1,378:6764466,43842261:25818563,513147,134348 +g1,377:7615123,43842261 +g1,377:10244427,43842261 +g1,377:10799516,43842261 +g1,377:13616908,43842261 +g1,377:15896250,43842261 +g1,377:16754771,43842261 +g1,377:17412097,43842261 +g1,377:18895832,43842261 +g1,377:20293715,43842261 +g1,377:22953821,43842261 +g1,377:24172135,43842261 +k1,378:32583029,43842261:5560733 +g1,378:32583029,43842261 +) +(1,380:6764466,44707341:25818563,513147,134348 +h1,379:6764466,44707341:983040,0,0 +k1,379:9686464,44707341:164243 +k1,379:12962356,44707341:164243 +k1,379:13482460,44707341:164244 +k1,379:15704534,44707341:164243 +k1,379:17025487,44707341:164243 +k1,379:18290735,44707341:164243 +k1,379:19106407,44707341:164244 +k1,379:21875051,44707341:164243 +k1,379:23058379,44707341:164243 +k1,379:24892479,44707341:164243 +k1,379:26248168,44707341:164244 +k1,379:29860260,44707341:164243 +k1,379:31227744,44707341:164243 +k1,379:32583029,44707341:0 +) +(1,380:6764466,45572421:25818563,513147,134348 +k1,379:9075648,45572421:265148 +k1,379:10871061,45572421:265147 +k1,379:12155294,45572421:265148 +k1,379:14498589,45572421:265148 +k1,379:15423028,45572421:265147 +k1,379:16707261,45572421:265148 +k1,379:19822570,45572421:265148 +k1,379:22522380,45572421:265147 +k1,379:24830285,45572421:265148 +k1,379:27488152,45572421:265148 +k1,379:28109159,45572421:265147 +k1,379:30431482,45572421:265148 +k1,379:32583029,45572421:0 +) +] +g1,384:32583029,45706769 +) +] +(1,384:32583029,45706769:0,0,0 +g1,384:32583029,45706769 +) +) +] +(1,384:6630773,47279633:25952256,0,0 +h1,384:6630773,47279633:25952256,0,0 +) +] +(1,384:4262630,4025873:0,0,0 +[1,384:-473656,4025873:0,0,0 +(1,384:-473656,-710413:0,0,0 +(1,384:-473656,-710413:0,0,0 +g1,384:-473656,-710413 +) +g1,384:-473656,-710413 +) +] +) +] +!21033 +}21 +!11 +{22 +[1,399:4262630,47279633:28320399,43253760,0 +(1,399:4262630,4025873:0,0,0 +[1,399:-473656,4025873:0,0,0 +(1,399:-473656,-710413:0,0,0 +(1,399:-473656,-644877:0,0,0 +k1,399:-473656,-644877:-65536 ) -g1,321:26356326,35185529 +(1,399:-473656,4736287:0,0,0 +k1,399:-473656,4736287:5209943 ) +g1,399:-473656,-710413 ) -g1,321:26356326,35185529 -(1,321:26356326,35185529:665744,673524,285028 -g1,321:26822495,35185529 -k1,321:27022070,35185529:199575 +] ) -g1,321:27022070,35185529 -(1,321:27022070,35185529:639530,673524,285028 -k1,321:27221645,35185529:199575 -g1,321:27661600,35185529 -(1,321:27661600,35185529:0,655699,276639 -(1,321:27661600,35185529:0,0,0 -(1,321:27661600,35185529:0,0,0 -g1,321:27661600,35185529 -g1,321:27661600,35185529 -g1,321:27661600,35185529 -g1,321:27661600,35185529 -g1,321:27661600,35185529 -(1,321:27661600,35185529:0,0,0 -(1,321:27661600,35185529:331874,388497,9436 -(1,321:27661600,35185529:331874,388497,9436 +[1,399:6630773,47279633:25952256,43253760,0 +[1,399:6630773,4812305:25952256,786432,0 +(1,399:6630773,4812305:25952256,505283,134348 +(1,399:6630773,4812305:25952256,505283,134348 +g1,399:3078558,4812305 +[1,399:3078558,4812305:0,0,0 +(1,399:3078558,2439708:0,1703936,0 +k1,399:1358238,2439708:-1720320 +(1,218:1358238,2439708:1720320,1703936,0 +(1,218:1358238,2439708:1179648,16384,0 +r1,399:2537886,2439708:1179648,16384,0 ) -g1,321:27993474,35185529 +g1,218:3062174,2439708 +(1,218:3062174,2439708:16384,1703936,0 +[1,218:3062174,2439708:25952256,1703936,0 +(1,218:3062174,1915420:25952256,1179648,0 +(1,218:3062174,1915420:16384,1179648,0 +r1,399:3078558,1915420:16384,1179648,0 ) +k1,218:29014430,1915420:25935872 +g1,218:29014430,1915420 ) -g1,321:27661600,35185529 -g1,321:27661600,35185529 +] ) ) -g1,321:27661600,35185529 ) +] +[1,399:3078558,4812305:0,0,0 +(1,399:3078558,2439708:0,1703936,0 +g1,399:29030814,2439708 +g1,399:36135244,2439708 +(1,218:36135244,2439708:1720320,1703936,0 +(1,218:36135244,2439708:16384,1703936,0 +[1,218:36135244,2439708:25952256,1703936,0 +(1,218:36135244,1915420:25952256,1179648,0 +(1,218:36135244,1915420:16384,1179648,0 +r1,399:36151628,1915420:16384,1179648,0 ) -g1,321:27661600,35185529 -(1,321:27661600,35185529:665744,673524,285028 -g1,321:28127769,35185529 -k1,321:28327344,35185529:199575 +k1,218:62087500,1915420:25935872 +g1,218:62087500,1915420 ) -g1,321:28327344,35185529 -(1,321:28327344,35185529:639530,673524,285028 -k1,321:28526919,35185529:199575 -g1,321:28966874,35185529 -(1,321:28966874,35185529:0,655699,276639 -(1,321:28966874,35185529:0,0,0 -(1,321:28966874,35185529:0,0,0 -g1,321:28966874,35185529 -g1,321:28966874,35185529 -g1,321:28966874,35185529 -g1,321:28966874,35185529 -g1,321:28966874,35185529 -(1,321:28966874,35185529:0,0,0 -(1,321:28966874,35185529:331874,388497,9436 -(1,321:28966874,35185529:331874,388497,9436 +] ) -g1,321:29298748,35185529 +g1,218:36675916,2439708 +(1,218:36675916,2439708:1179648,16384,0 +r1,399:37855564,2439708:1179648,16384,0 ) ) -g1,321:28966874,35185529 -g1,321:28966874,35185529 +k1,399:3078556,2439708:-34777008 ) +] +[1,399:3078558,4812305:0,0,0 +(1,399:3078558,49800853:0,16384,2228224 +k1,399:1358238,49800853:-1720320 +(1,218:1358238,49800853:1720320,16384,2228224 +(1,218:1358238,49800853:1179648,16384,0 +r1,399:2537886,49800853:1179648,16384,0 ) -g1,321:28966874,35185529 +g1,218:3062174,49800853 +(1,218:3062174,52029077:16384,1703936,0 +[1,218:3062174,52029077:25952256,1703936,0 +(1,218:3062174,51504789:25952256,1179648,0 +(1,218:3062174,51504789:16384,1179648,0 +r1,399:3078558,51504789:16384,1179648,0 +) +k1,218:29014430,51504789:25935872 +g1,218:29014430,51504789 +) +] +) +) +) +] +[1,399:3078558,4812305:0,0,0 +(1,399:3078558,49800853:0,16384,2228224 +g1,399:29030814,49800853 +g1,399:36135244,49800853 +(1,218:36135244,49800853:1720320,16384,2228224 +(1,218:36135244,52029077:16384,1703936,0 +[1,218:36135244,52029077:25952256,1703936,0 +(1,218:36135244,51504789:25952256,1179648,0 +(1,218:36135244,51504789:16384,1179648,0 +r1,399:36151628,51504789:16384,1179648,0 +) +k1,218:62087500,51504789:25935872 +g1,218:62087500,51504789 +) +] +) +g1,218:36675916,49800853 +(1,218:36675916,49800853:1179648,16384,0 +r1,399:37855564,49800853:1179648,16384,0 +) +) +k1,399:3078556,49800853:-34777008 +) +] +g1,399:6630773,4812305 +g1,399:6630773,4812305 +g1,399:9478312,4812305 +g1,399:12241309,4812305 +g1,399:13040192,4812305 +g1,399:16139389,4812305 +k1,399:32184570,4812305:16045181 +) +) +] +[1,399:6630773,45706769:25952256,40108032,0 +(1,399:6630773,45706769:25952256,40108032,0 +(1,399:6630773,45706769:0,0,0 +g1,399:6630773,45706769 +) +[1,399:6630773,45706769:25952256,40108032,0 +v1,384:6630773,6254097:0,393216,0 +(1,384:6630773,14300815:25952256,8439934,0 +g1,384:6630773,14300815 +g1,384:6237557,14300815 +r1,399:6368629,14300815:131072,8439934,0 +g1,384:6567858,14300815 +g1,384:6764466,14300815 +[1,384:6764466,14300815:25818563,8439934,0 +(1,380:6764466,6374028:25818563,513147,134348 +k1,379:8778257,6374028:191890 +k1,379:9428244,6374028:191890 +k1,379:11014084,6374028:191889 +k1,379:12225059,6374028:191890 +k1,379:14169382,6374028:191890 +k1,379:17025311,6374028:191890 +k1,379:17884356,6374028:191889 +k1,379:18491082,6374028:191883 +k1,379:19874416,6374028:191889 +k1,379:21198113,6374028:191890 +k1,379:23970155,6374028:191890 +k1,379:25900060,6374028:191890 +k1,379:27778846,6374028:191889 +k1,379:28448493,6374028:191890 +k1,379:31019995,6374028:191890 +k1,379:32583029,6374028:0 +) +(1,380:6764466,7239108:25818563,513147,134348 +g1,379:7711461,7239108 +g1,379:10120564,7239108 +g1,379:12142349,7239108 +g1,379:16117107,7239108 +g1,379:20123322,7239108 +g1,379:21513996,7239108 +g1,379:23569205,7239108 +g1,379:26123143,7239108 +g1,379:27005257,7239108 +g1,379:29521839,7239108 +k1,380:32583029,7239108:2429423 +g1,380:32583029,7239108 +) +(1,382:6764466,8104188:25818563,513147,126483 +h1,381:6764466,8104188:983040,0,0 +k1,381:8149310,8104188:188812 +k1,381:9960148,8104188:188822 +k1,381:11196235,8104188:188822 +k1,381:12669563,8104188:188822 +k1,381:14680941,8104188:188822 +k1,381:16042202,8104188:188822 +k1,381:17297295,8104188:188822 +k1,381:18145409,8104188:188822 +k1,381:19989015,8104188:188822 +k1,381:21933547,8104188:188822 +k1,381:22335351,8104188:188812 +k1,381:24992914,8104188:188822 +k1,381:25537596,8104188:188822 +k1,381:27927772,8104188:188822 +k1,381:28574691,8104188:188822 +k1,381:30775468,8104188:188822 +k1,381:31931601,8104188:188822 +k1,381:32583029,8104188:0 +) +(1,382:6764466,8969268:25818563,513147,134348 +k1,381:8176374,8969268:145752 +k1,381:9341211,8969268:145752 +k1,381:10821276,8969268:145752 +k1,381:11626320,8969268:145752 +k1,381:12791157,8969268:145752 +k1,381:15613399,8969268:145752 +k1,381:16950596,8969268:145752 +k1,381:17452208,8969268:145752 +k1,381:20210225,8969268:145752 +k1,381:21038862,8969268:145752 +k1,381:21540474,8969268:145752 +k1,381:25784848,8969268:145752 +k1,381:26739970,8969268:145752 +k1,381:27866796,8969268:145752 +k1,381:29516599,8969268:145752 +k1,381:32583029,8969268:0 +) +(1,382:6764466,9834348:25818563,513147,134348 +k1,381:7302557,9834348:182231 +k1,381:9542619,9834348:182231 +k1,381:11407815,9834348:182231 +k1,381:13282185,9834348:182230 +k1,381:15237165,9834348:182231 +k1,381:16491565,9834348:182231 +k1,381:17131893,9834348:182231 +k1,381:17845621,9834348:182231 +k1,381:21593011,9834348:182231 +k1,381:23241938,9834348:182231 +k1,381:23890130,9834348:182231 +k1,381:24530457,9834348:182230 +k1,381:26225914,9834348:182231 +k1,381:27243729,9834348:182231 +k1,381:28492231,9834348:182231 +k1,381:30412477,9834348:182231 +k1,381:32583029,9834348:0 +) +(1,382:6764466,10699428:25818563,505283,7863 +k1,382:32583029,10699428:23454024 +g1,382:32583029,10699428 +) +(1,384:6764466,11564508:25818563,513147,134348 +h1,383:6764466,11564508:983040,0,0 +k1,383:8348161,11564508:185812 +k1,383:11114139,11564508:185826 +k1,383:13728072,11564508:185825 +k1,383:15105343,11564508:185826 +k1,383:16079567,11564508:185826 +k1,383:18689569,11564508:185825 +k1,383:20901768,11564508:185826 +k1,383:23691994,11564508:185825 +k1,383:24896905,11564508:185826 +k1,383:27675334,11564508:185825 +k1,383:28520452,11564508:185826 +k1,383:32583029,11564508:0 +) +(1,384:6764466,12429588:25818563,505283,134348 +k1,383:8410075,12429588:149422 +k1,383:11724886,12429588:149422 +k1,383:12635836,12429588:149422 +k1,383:15357546,12429588:149422 +k1,383:16698413,12429588:149422 +k1,383:19348034,12429588:149422 +k1,383:20148885,12429588:149423 +k1,383:21317392,12429588:149422 +k1,383:24487368,12429588:149422 +k1,383:24992650,12429588:149422 +k1,383:27199247,12429588:149422 +k1,383:30027781,12429588:149422 +k1,383:30793241,12429588:149422 +k1,384:32583029,12429588:0 +) +(1,384:6764466,13294668:25818563,513147,126483 +k1,383:8700443,13294668:209759 +k1,383:10101647,13294668:209759 +k1,383:12084810,13294668:209759 +k1,383:12945996,13294668:209758 +k1,383:13903521,13294668:209759 +k1,383:16245166,13294668:209759 +k1,383:17722391,13294668:209759 +k1,383:18288010,13294668:209759 +k1,383:21262078,13294668:209759 +k1,383:22084599,13294668:209759 +k1,383:26786196,13294668:209759 +k1,383:27678839,13294668:209758 +k1,383:29156064,13294668:209759 +k1,383:30136526,13294668:209759 +k1,383:31970267,13294668:209759 +k1,384:32583029,13294668:0 +) +(1,384:6764466,14159748:25818563,530548,141067 +g1,383:9346584,14159748 +g1,383:10595700,14159748 +$1,383:10595700,14159748 +g1,383:12670410,14159748 +g1,383:13085352,14159748 +g1,383:13500294,14159748 +g1,383:13915236,14159748 +g1,383:16404888,14159748 +g1,383:16819830,14159748 +g1,383:20554308,14159748 +g1,383:20969250,14159748 +$1,383:22629018,14159748 +g1,383:22828247,14159748 +g1,383:23975127,14159748 +k1,384:32583029,14159748:6316763 +g1,384:32583029,14159748 +) +] +g1,384:32583029,14300815 +) +h1,384:6630773,14300815:0,0,0 +(1,386:6630773,15952327:25952256,513147,11795 +(1,386:6630773,15952327:0,0,0 +g1,386:6630773,15952327 +) +k1,386:32583029,15952327:21131428 +g1,386:32583029,15952327 +) +(1,389:6630773,17210623:25952256,538806,132809 +k1,388:10270120,17210623:234096 +k1,388:14996055,17210623:234097 +$1,388:15203149,17210623 +k1,388:16862917,17210623:0 +k1,388:17277859,17210623:0 +k1,388:17692801,17210623:0 +k1,388:18107743,17210623:0 +k1,388:23501989,17210623:0 +k1,388:23916931,17210623:0 +$1,388:25576699,17210623 +k1,388:26017889,17210623:234096 +k1,388:26783482,17210623:234096 +k1,388:28036664,17210623:234097 +k1,388:29605728,17210623:234096 +k1,389:32583029,17210623:0 +) +(1,389:6630773,18075703:25952256,513147,126483 +k1,388:10568816,18075703:275891 +k1,388:12926974,18075703:275814 +k1,388:15729277,18075703:275890 +k1,388:17140907,18075703:275891 +k1,388:18364449,18075703:275891 +k1,388:19228853,18075703:275891 +k1,388:21599929,18075703:275890 +k1,388:22894905,18075703:275891 +k1,388:27662634,18075703:275891 +k1,388:29074264,18075703:275891 +k1,388:31004938,18075703:275890 +k1,388:31812326,18075703:275891 +k1,389:32583029,18075703:0 +) +(1,389:6630773,18940783:25952256,513147,134348 +k1,388:7338774,18940783:293158 +k1,388:10787585,18940783:293252 +k1,388:11708672,18940783:293252 +k1,388:13603625,18940783:293253 +k1,388:15767930,18940783:293252 +k1,388:19121713,18940783:293252 +k1,388:20362616,18940783:293252 +k1,388:23146891,18940783:293252 +k1,388:26534754,18940783:293253 +k1,388:28019451,18940783:293252 +k1,388:29821342,18940783:293252 +k1,388:32583029,18940783:0 +) +(1,389:6630773,19805863:25952256,513147,134348 +k1,388:8004917,19805863:241682 +k1,388:8994365,19805863:241682 +k1,388:10002163,19805863:241682 +k1,388:11528351,19805863:241682 +k1,388:12940507,19805863:241683 +k1,388:14712455,19805863:241682 +k1,388:15605565,19805863:241682 +k1,388:16836185,19805863:241682 +k1,388:17555624,19805863:241682 +k1,388:19866278,19805863:241682 +k1,388:20463820,19805863:241682 +k1,388:23643481,19805863:241682 +k1,388:25600896,19805863:241682 +k1,388:27223423,19805863:241683 +k1,388:28749611,19805863:241682 +k1,388:29449390,19805863:241682 +k1,388:30222569,19805863:241682 +k1,388:32227169,19805863:241682 +k1,388:32583029,19805863:0 +) +(1,389:6630773,20670943:25952256,513147,126483 +k1,388:8159980,20670943:246012 +k1,388:11343971,20670943:246012 +k1,388:12067740,20670943:246012 +k1,388:13968536,20670943:246012 +k1,388:14746045,20670943:246012 +k1,388:16684197,20670943:246012 +k1,388:19694517,20670943:246011 +k1,388:21225035,20670943:246012 +k1,388:23188090,20670943:246012 +k1,388:25809782,20670943:246012 +k1,388:27771527,20670943:246012 +k1,388:29547805,20670943:246012 +k1,388:31124198,20670943:246012 +k1,388:32583029,20670943:0 +) +(1,389:6630773,21536023:25952256,513147,126483 +g1,388:9594311,21536023 +g1,388:10325037,21536023 +k1,389:32583030,21536023:19321980 +g1,389:32583030,21536023 +) +(1,391:6630773,22401103:25952256,513147,134348 +h1,390:6630773,22401103:983040,0,0 +k1,390:12270474,22401103:164823 +k1,390:13536301,22401103:164822 +k1,390:14056984,22401103:164823 +k1,390:17681453,22401103:164823 +k1,390:20092194,22401103:164822 +k1,390:22111686,22401103:164823 +k1,390:23085879,22401103:164823 +k1,390:26775884,22401103:164823 +k1,390:28132151,22401103:164822 +k1,390:31391584,22401103:164823 +k1,390:32583029,22401103:0 +) +(1,391:6630773,23266183:25952256,505283,126483 +k1,390:9375875,23266183:157085 +k1,390:10637241,23266183:157084 +k1,390:11542092,23266183:157085 +k1,390:12747752,23266183:157084 +k1,390:14096282,23266183:157085 +k1,390:18167831,23266183:157084 +k1,390:21525039,23266183:157085 +k1,390:23076074,23266183:157084 +k1,390:24252244,23266183:157085 +k1,390:26011028,23266183:157084 +k1,390:28902930,23266183:157085 +k1,390:30051574,23266183:157084 +k1,390:31970267,23266183:157085 +k1,390:32583029,23266183:0 +) +(1,391:6630773,24131263:25952256,513147,126483 +k1,390:7785236,24131263:135378 +k1,390:8992784,24131263:135379 +k1,390:9787454,24131263:135378 +k1,390:12844428,24131263:135379 +k1,390:14171251,24131263:135378 +k1,390:15325715,24131263:135379 +k1,390:17062793,24131263:135378 +k1,390:18974853,24131263:135379 +k1,390:21698248,24131263:135378 +k1,390:22485055,24131263:135379 +k1,390:24072055,24131263:135378 +k1,390:26971743,24131263:135379 +k1,390:28098681,24131263:135378 +k1,390:29519876,24131263:135379 +k1,390:32583029,24131263:0 +) +(1,391:6630773,24996343:25952256,513147,126483 +k1,390:8330726,24996343:220150 +k1,390:9966455,24996343:220151 +k1,390:11595629,24996343:220150 +k1,390:12171640,24996343:220151 +k1,390:15156099,24996343:220150 +k1,390:15907747,24996343:220151 +k1,390:18966917,24996343:220150 +k1,390:19838496,24996343:220151 +k1,390:22106646,24996343:220150 +k1,390:24569439,24996343:220151 +k1,390:27551276,24996343:220150 +k1,390:28249184,24996343:220151 +k1,390:29488419,24996343:220150 +k1,390:32583029,24996343:0 +) +(1,391:6630773,25861423:25952256,505283,134348 +k1,390:7551911,25861423:238253 +k1,390:10378181,25861423:238253 +k1,390:11773144,25861423:238253 +k1,390:13956506,25861423:238253 +k1,390:15186319,25861423:238253 +k1,390:18249830,25861423:238254 +k1,390:19644793,25861423:238253 +k1,390:21559457,25861423:238253 +k1,390:25149221,25861423:238253 +k1,390:28792069,25861423:238253 +k1,390:29716484,25861423:238253 +k1,390:32583029,25861423:0 +) +(1,391:6630773,26726503:25952256,505283,134348 +k1,390:7638895,26726503:190233 +k1,390:8985838,26726503:190233 +k1,390:13144276,26726503:190233 +k1,390:16859691,26726503:190233 +k1,390:18358678,26726503:190233 +k1,390:20777790,26726503:190233 +k1,390:22159468,26726503:190233 +k1,390:25576694,26726503:190233 +k1,390:27806407,26726503:190233 +k1,390:29490206,26726503:190233 +k1,390:30366601,26726503:190233 +k1,390:32583029,26726503:0 +) +(1,391:6630773,27591583:25952256,513147,134348 +k1,390:8485089,27591583:152346 +k1,390:10522250,27591583:152346 +k1,390:13769205,27591583:152345 +k1,390:15112996,27591583:152346 +k1,390:17853359,27591583:152346 +k1,390:18688590,27591583:152346 +k1,390:20294524,27591583:152345 +k1,390:21429910,27591583:152346 +k1,390:23048952,27591583:152346 +k1,390:25768999,27591583:152346 +k1,390:27914294,27591583:152345 +k1,390:30654657,27591583:152346 +k1,390:31489888,27591583:152346 +k1,391:32583029,27591583:0 +) +(1,391:6630773,28456663:25952256,513147,126483 +k1,390:8473449,28456663:235733 +k1,390:11803792,28456663:235733 +k1,390:13607146,28456663:235733 +k1,390:14861964,28456663:235733 +k1,390:17517286,28456663:235733 +k1,390:19133862,28456663:235732 +k1,390:21675152,28456663:235733 +k1,390:25974117,28456663:235733 +k1,390:27282019,28456663:235733 +k1,390:29444510,28456663:235733 +k1,390:32583029,28456663:0 +) +(1,391:6630773,29321743:25952256,513147,134348 +k1,390:8162601,29321743:253221 +k1,390:9028584,29321743:253221 +k1,390:12067740,29321743:253221 +k1,390:13605467,29321743:253221 +k1,390:14877773,29321743:253221 +k1,390:16564922,29321743:253221 +k1,390:17477434,29321743:253220 +k1,390:20825265,29321743:253221 +k1,390:22269931,29321743:253221 +k1,390:25111169,29321743:253221 +k1,390:25895887,29321743:253221 +k1,390:28722051,29321743:253221 +k1,390:30166717,29321743:253221 +k1,390:32583029,29321743:0 +) +(1,391:6630773,30186823:25952256,513147,134348 +k1,390:9315711,30186823:224716 +k1,390:11732605,30186823:224715 +k1,390:14199963,30186823:224716 +k1,390:15234048,30186823:224715 +k1,390:18884986,30186823:224716 +k1,390:22909478,30186823:224715 +k1,390:24917429,30186823:224716 +k1,390:26877537,30186823:224715 +k1,390:31767761,30186823:224716 +k1,390:32583029,30186823:0 +) +(1,391:6630773,31051903:25952256,505283,134348 +k1,390:10085962,31051903:146276 +k1,390:10993766,31051903:146276 +k1,390:14178292,31051903:146277 +k1,390:16567210,31051903:146276 +k1,390:19475173,31051903:146276 +k1,390:22668873,31051903:146276 +k1,390:25909759,31051903:146276 +k1,390:27247481,31051903:146277 +k1,390:29981774,31051903:146276 +k1,390:31412556,31051903:146276 +k1,390:32583029,31051903:0 +) +(1,391:6630773,31916983:25952256,513147,134348 +k1,390:8049807,31916983:152878 +k1,390:10353576,31916983:152877 +k1,390:14469416,31916983:152878 +k1,390:16366206,31916983:152877 +k1,390:17689557,31916983:152878 +k1,390:20573319,31916983:152877 +k1,390:22398020,31916983:152878 +k1,390:23742342,31916983:152877 +k1,390:26424254,31916983:152878 +k1,390:27260016,31916983:152877 +k1,390:30645785,31916983:152878 +k1,390:32583029,31916983:0 +) +(1,391:6630773,32782063:25952256,505283,126483 +g1,390:8000475,32782063 +g1,390:9536638,32782063 +k1,391:32583030,32782063:20199508 +g1,391:32583030,32782063 +) +(1,393:6630773,33647143:25952256,513147,134348 +h1,392:6630773,33647143:983040,0,0 +k1,392:9595622,33647143:245105 +k1,392:12050600,33647143:245104 +k1,392:12911743,33647143:245105 +k1,392:14175933,33647143:245105 +k1,392:18165764,33647143:245104 +k1,392:19070161,33647143:245105 +k1,392:19671125,33647143:245104 +k1,392:23978807,33647143:245105 +k1,392:26885329,33647143:245105 +k1,392:27661930,33647143:245104 +k1,392:31116333,33647143:245105 +k1,392:32583029,33647143:0 +) +(1,393:6630773,34512223:25952256,513147,134348 +k1,392:8564488,34512223:235677 +k1,392:10869138,34512223:235678 +k1,392:11460675,34512223:235677 +k1,392:14460661,34512223:235677 +k1,392:15309101,34512223:235678 +k1,392:20036616,34512223:235677 +k1,392:21463738,34512223:235677 +k1,392:23397453,34512223:235677 +k1,392:26619607,34512223:235678 +k1,392:27211144,34512223:235677 +k1,392:28636299,34512223:235677 +k1,392:29523405,34512223:235678 +k1,392:30778167,34512223:235677 +k1,393:32583029,34512223:0 +) +(1,393:6630773,35377303:25952256,513147,126483 +k1,392:8762238,35377303:266966 +k1,392:9688495,35377303:266965 +k1,392:11087268,35377303:266966 +k1,392:13004430,35377303:266965 +k1,392:13930688,35377303:266966 +k1,392:17130389,35377303:266965 +k1,392:18439377,35377303:266966 +k1,392:19725427,35377303:266965 +k1,392:22756702,35377303:266966 +k1,392:23675095,35377303:266965 +k1,392:24689827,35377303:266966 +k1,392:27321331,35377303:266965 +k1,392:30614094,35377303:266966 +k1,392:31563944,35377303:266965 +k1,392:32583029,35377303:0 +) +(1,393:6630773,36242383:25952256,513147,134348 +k1,392:9536545,36242383:229282 +k1,392:10417256,36242383:229283 +k1,392:11394304,36242383:229282 +k1,392:13360945,36242383:229282 +k1,392:14609313,36242383:229283 +k1,392:17034706,36242383:229282 +k1,392:20511953,36242383:229283 +k1,392:21097095,36242383:229282 +k1,392:24264356,36242383:229282 +k1,392:26354206,36242383:229283 +k1,392:27234916,36242383:229282 +k1,392:28211964,36242383:229282 +k1,392:29750001,36242383:229283 +k1,392:30630711,36242383:229282 +k1,393:32583029,36242383:0 +) +(1,393:6630773,37107463:25952256,513147,134348 +k1,392:8415537,37107463:268261 +k1,392:9702882,37107463:268260 +k1,392:12821304,37107463:268261 +k1,392:14281009,37107463:268260 +k1,392:16062496,37107463:268261 +k1,392:19583308,37107463:268260 +k1,392:20870654,37107463:268261 +k1,392:22808771,37107463:268260 +k1,392:24937599,37107463:268261 +k1,392:25857287,37107463:268260 +k1,392:26873314,37107463:268261 +k1,392:28450328,37107463:268260 +k1,392:29370017,37107463:268261 +k1,392:30829723,37107463:268261 +k1,392:31563944,37107463:268260 +k1,392:32583029,37107463:0 +) +(1,393:6630773,37972543:25952256,513147,134348 +k1,392:9484257,37972543:176994 +k1,392:10762256,37972543:176994 +k1,392:12449200,37972543:176994 +k1,392:14681403,37972543:176994 +k1,392:15541282,37972543:176994 +k1,392:16958217,37972543:176994 +k1,392:20069913,37972543:176994 +k1,392:21713603,37972543:176994 +k1,392:22356558,37972543:176994 +k1,392:23704025,37972543:176994 +k1,392:24872579,37972543:176994 +k1,392:26994026,37972543:176994 +k1,392:27526880,37972543:176994 +k1,392:30380364,37972543:176994 +k1,392:32583029,37972543:0 +) +(1,393:6630773,38837623:25952256,513147,134348 +k1,392:7681049,38837623:288748 +k1,392:9428628,38837623:288748 +k1,392:15523866,38837623:288748 +k1,392:16471906,38837623:288748 +k1,392:18091035,38837623:288748 +k1,392:18794537,38837623:288659 +k1,392:21183714,38837623:288748 +k1,392:22491547,38837623:288748 +k1,392:25193331,38837623:288748 +k1,392:26501164,38837623:288748 +k1,392:29624999,38837623:288748 +k1,392:30932832,38837623:288748 +k1,392:32583029,38837623:0 +) +(1,393:6630773,39702703:25952256,505283,134348 +k1,392:8546063,39702703:202834 +k1,392:10033403,39702703:202834 +k1,392:13085086,39702703:202833 +k1,392:14420382,39702703:202834 +k1,392:16935982,39702703:202834 +k1,392:19273979,39702703:202834 +k1,392:21025428,39702703:202833 +k1,392:22687093,39702703:202834 +k1,392:25792517,39702703:202834 +k1,392:27202524,39702703:202834 +k1,392:29103395,39702703:202833 +k1,392:31563944,39702703:202834 +k1,392:32583029,39702703:0 +) +(1,393:6630773,40567783:25952256,513147,126483 +k1,392:8320993,40567783:194033 +k1,392:9799532,40567783:194033 +k1,392:12943997,40567783:194034 +k1,392:13493890,40567783:194033 +k1,392:15530795,40567783:194033 +k1,392:18487171,40567783:194033 +k1,392:20248825,40567783:194033 +k1,392:21991475,40567783:194034 +k1,392:23355981,40567783:194033 +k1,392:26562704,40567783:194033 +k1,392:28247026,40567783:194033 +k1,392:30139098,40567783:194034 +k1,392:30791228,40567783:194033 +k1,392:31516758,40567783:194033 +k1,392:32583029,40567783:0 +) +(1,393:6630773,41432863:25952256,505283,134348 +g1,392:9459962,41432863 +g1,392:10310619,41432863 +g1,392:12439228,41432863 +g1,392:12994317,41432863 +g1,392:15424392,41432863 +g1,392:16780331,41432863 +g1,392:18840127,41432863 +g1,392:19690784,41432863 +g1,392:20968736,41432863 +g1,392:23264462,41432863 +g1,392:24839292,41432863 +g1,392:26195231,41432863 +g1,392:28056453,41432863 +g1,392:29312122,41432863 +k1,393:32583029,41432863:332928 +g1,393:32583029,41432863 +) +(1,395:6630773,42297943:25952256,538806,132809 +h1,394:6630773,42297943:983040,0,0 +k1,394:8964323,42297943:153823 +k1,394:10614333,42297943:153823 +k1,394:11427448,42297943:153823 +k1,394:14150282,42297943:153823 +$1,394:14357376,42297943 +k1,394:16432086,42297943:0 +k1,394:16847028,42297943:0 +k1,394:17261970,42297943:0 +k1,394:17676912,42297943:0 +k1,394:23071158,42297943:0 +k1,394:23486100,42297943:0 +k1,394:24730926,42297943:0 +k1,394:25145868,42297943:0 +$1,394:28050462,42297943 +k1,394:28411379,42297943:153823 +k1,394:29756647,42297943:153823 +k1,394:31298523,42297943:153823 +k1,394:32583029,42297943:0 +) +(1,395:6630773,43163023:25952256,538806,132809 +k1,394:9486237,43163023:215018 +k1,394:12540276,43163023:215019 +k1,394:15515015,43163023:215018 +$1,394:15722109,43163023 +k1,394:17796819,43163023:0 +k1,394:18211761,43163023:0 +k1,394:18626703,43163023:0 +k1,394:19041645,43163023:0 +k1,394:24435891,43163023:0 +k1,394:24850833,43163023:0 +k1,394:26095659,43163023:0 +k1,394:26510601,43163023:0 +$1,394:28170369,43163023 +k1,394:28592482,43163023:215019 +k1,394:29799060,43163023:215018 +k1,394:32583029,43163023:0 +) +(1,395:6630773,44028103:25952256,513147,134348 +g1,394:7442764,44028103 +g1,394:8661078,44028103 +g1,394:9996046,44028103 +g1,394:11386720,44028103 +g1,394:15151108,44028103 +g1,394:17752887,44028103 +g1,394:19994873,44028103 +g1,394:21929495,44028103 +g1,394:23147809,44028103 +g1,394:24482777,44028103 +g1,394:27100285,44028103 +g1,394:28247165,44028103 +g1,394:29465479,44028103 +g1,394:30970841,44028103 +k1,395:32583029,44028103:13110 +g1,395:32583029,44028103 +) +] +(1,399:32583029,45706769:0,0,0 +g1,399:32583029,45706769 +) +) +] +(1,399:6630773,47279633:25952256,0,0 +h1,399:6630773,47279633:25952256,0,0 +) +] +(1,399:4262630,4025873:0,0,0 +[1,399:-473656,4025873:0,0,0 +(1,399:-473656,-710413:0,0,0 +(1,399:-473656,-710413:0,0,0 +g1,399:-473656,-710413 +) +g1,399:-473656,-710413 +) +] +) +] +!23239 +}22 +!11 +{23 +[1,412:4262630,47279633:28320399,43253760,0 +(1,412:4262630,4025873:0,0,0 +[1,412:-473656,4025873:0,0,0 +(1,412:-473656,-710413:0,0,0 +(1,412:-473656,-644877:0,0,0 +k1,412:-473656,-644877:-65536 ) +(1,412:-473656,4736287:0,0,0 +k1,412:-473656,4736287:5209943 ) -g1,321:28966874,35185529 -(1,321:28966874,35185529:665744,673524,285028 -g1,321:29433043,35185529 -k1,321:29632618,35185529:199575 +g1,412:-473656,-710413 ) -g1,321:29632618,35185529 -(1,321:29632618,35185529:639530,673524,285028 -k1,321:29791744,35185529:159126 -g1,321:30272148,35185529 -(1,321:30272148,35185529:0,655699,276639 -(1,321:30272148,35185529:0,0,0 -(1,321:30272148,35185529:0,0,0 -g1,321:30272148,35185529 -g1,321:30272148,35185529 -g1,321:30272148,35185529 -g1,321:30272148,35185529 -g1,321:30272148,35185529 -(1,321:30272148,35185529:0,0,0 -(1,321:30272148,35185529:663749,388497,9436 -(1,321:30272148,35185529:663749,388497,9436 +] ) -g1,321:30935897,35185529 +[1,412:6630773,47279633:25952256,43253760,0 +[1,412:6630773,4812305:25952256,786432,0 +(1,412:6630773,4812305:25952256,505283,134348 +(1,412:6630773,4812305:25952256,505283,134348 +g1,412:3078558,4812305 +[1,412:3078558,4812305:0,0,0 +(1,412:3078558,2439708:0,1703936,0 +k1,412:1358238,2439708:-1720320 +(1,218:1358238,2439708:1720320,1703936,0 +(1,218:1358238,2439708:1179648,16384,0 +r1,412:2537886,2439708:1179648,16384,0 ) +g1,218:3062174,2439708 +(1,218:3062174,2439708:16384,1703936,0 +[1,218:3062174,2439708:25952256,1703936,0 +(1,218:3062174,1915420:25952256,1179648,0 +(1,218:3062174,1915420:16384,1179648,0 +r1,412:3078558,1915420:16384,1179648,0 ) -g1,321:30272148,35185529 -g1,321:30272148,35185529 +k1,218:29014430,1915420:25935872 +g1,218:29014430,1915420 ) +] ) -g1,321:30272148,35185529 ) ) -g1,321:30272148,35185529 -(1,322:30272148,35185529:665744,673524,285028 -g1,322:30778766,35185529 -k1,322:30937892,35185529:159126 -) -g1,322:30937892,35185529 -) -(1,322:17858938,36229534:13078954,665744,665744 -g1,322:17858938,36229534 -(1,322:17858938,36229534:665744,665744,665744 -g1,322:17858938,36229534 -g1,322:18524682,36229534 -(1,322:18524682,36229534:0,665744,665744 -(1,322:18524682,36229534:0,0,0 -(1,322:18524682,36229534:0,0,0 -g1,322:18524682,36229534 -g1,322:18524682,36229534 -g1,322:18524682,36229534 -g1,322:18524682,36229534 -g1,322:18524682,36229534 -(1,322:18524682,36229534:0,0,0 -(1,322:18524682,36229534:0,0,0 -h1,322:18524682,36229534:0,0,0 -g1,322:18524682,36229534 +] +[1,412:3078558,4812305:0,0,0 +(1,412:3078558,2439708:0,1703936,0 +g1,412:29030814,2439708 +g1,412:36135244,2439708 +(1,218:36135244,2439708:1720320,1703936,0 +(1,218:36135244,2439708:16384,1703936,0 +[1,218:36135244,2439708:25952256,1703936,0 +(1,218:36135244,1915420:25952256,1179648,0 +(1,218:36135244,1915420:16384,1179648,0 +r1,412:36151628,1915420:16384,1179648,0 ) +k1,218:62087500,1915420:25935872 +g1,218:62087500,1915420 ) -g1,322:18524682,36229534 -g1,322:18524682,36229534 +] ) +g1,218:36675916,2439708 +(1,218:36675916,2439708:1179648,16384,0 +r1,412:37855564,2439708:1179648,16384,0 ) -g1,322:18524682,36229534 ) +k1,412:3078556,2439708:-34777008 ) -g1,322:18524682,36229534 -(1,322:18524682,36229534:665744,665744,665744 -g1,322:19190426,36229534 -g1,322:19190426,36229534 -) -g1,322:19190426,36229534 -(1,322:19190426,36229534:639530,665744,665744 -g1,322:19190426,36229534 -g1,322:19829956,36229534 -(1,322:19829956,36229534:0,665744,665744 -(1,322:19829956,36229534:0,0,0 -(1,322:19829956,36229534:0,0,0 -g1,322:19829956,36229534 -g1,322:19829956,36229534 -g1,322:19829956,36229534 -g1,322:19829956,36229534 -g1,322:19829956,36229534 -(1,322:19829956,36229534:0,0,0 -(1,322:19829956,36229534:0,0,0 -h1,322:19829956,36229534:0,0,0 -g1,322:19829956,36229534 +] +[1,412:3078558,4812305:0,0,0 +(1,412:3078558,49800853:0,16384,2228224 +k1,412:1358238,49800853:-1720320 +(1,218:1358238,49800853:1720320,16384,2228224 +(1,218:1358238,49800853:1179648,16384,0 +r1,412:2537886,49800853:1179648,16384,0 ) +g1,218:3062174,49800853 +(1,218:3062174,52029077:16384,1703936,0 +[1,218:3062174,52029077:25952256,1703936,0 +(1,218:3062174,51504789:25952256,1179648,0 +(1,218:3062174,51504789:16384,1179648,0 +r1,412:3078558,51504789:16384,1179648,0 ) -g1,322:19829956,36229534 -g1,322:19829956,36229534 +k1,218:29014430,51504789:25935872 +g1,218:29014430,51504789 ) +] ) -g1,322:19829956,36229534 ) ) -g1,322:19829956,36229534 -(1,322:19829956,36229534:665744,665744,665744 -g1,322:20495700,36229534 -g1,322:20495700,36229534 -) -g1,322:20495700,36229534 -(1,322:20495700,36229534:639530,665744,665744 -g1,322:20495700,36229534 -g1,322:21135230,36229534 -(1,322:21135230,36229534:0,665744,665744 -(1,322:21135230,36229534:0,0,0 -(1,322:21135230,36229534:0,0,0 -g1,322:21135230,36229534 -g1,322:21135230,36229534 -g1,322:21135230,36229534 -g1,322:21135230,36229534 -g1,322:21135230,36229534 -(1,322:21135230,36229534:0,0,0 -(1,322:21135230,36229534:0,0,0 -h1,322:21135230,36229534:0,0,0 -g1,322:21135230,36229534 -) +] +[1,412:3078558,4812305:0,0,0 +(1,412:3078558,49800853:0,16384,2228224 +g1,412:29030814,49800853 +g1,412:36135244,49800853 +(1,218:36135244,49800853:1720320,16384,2228224 +(1,218:36135244,52029077:16384,1703936,0 +[1,218:36135244,52029077:25952256,1703936,0 +(1,218:36135244,51504789:25952256,1179648,0 +(1,218:36135244,51504789:16384,1179648,0 +r1,412:36151628,51504789:16384,1179648,0 +) +k1,218:62087500,51504789:25935872 +g1,218:62087500,51504789 +) +] +) +g1,218:36675916,49800853 +(1,218:36675916,49800853:1179648,16384,0 +r1,412:37855564,49800853:1179648,16384,0 +) +) +k1,412:3078556,49800853:-34777008 +) +] +g1,412:6630773,4812305 +k1,412:24492612,4812305:17463380 +g1,412:26454104,4812305 +g1,412:27638994,4812305 +g1,412:29336376,4812305 +g1,412:30135259,4812305 +g1,412:32168841,4812305 +) +) +] +[1,412:6630773,45706769:25952256,40108032,0 +(1,412:6630773,45706769:25952256,40108032,0 +(1,412:6630773,45706769:0,0,0 +g1,412:6630773,45706769 +) +[1,412:6630773,45706769:25952256,40108032,0 +(1,396:6630773,6254097:25952256,505283,134348 +(1,396:6630773,6254097:0,0,0 +g1,396:6630773,6254097 +) +g1,396:10397127,6254097 +g1,396:11653452,6254097 +k1,396:32583028,6254097:18745916 +g1,396:32583028,6254097 +) +(1,399:6630773,7512393:25952256,505283,134348 +k1,398:8131097,7512393:303637 +k1,398:9769701,7512393:303636 +k1,398:11311313,7512393:303637 +k1,398:12266377,7512393:303636 +k1,398:13548467,7512393:303637 +k1,398:14468141,7512393:303636 +k1,398:18108216,7512393:303637 +k1,398:19805803,7512393:303636 +k1,398:21076751,7512393:303637 +k1,398:23202944,7512393:303637 +k1,398:24709821,7512393:303636 +k1,398:26595497,7512393:303637 +k1,398:27430630,7512393:303636 +k1,398:28495795,7512393:303637 +k1,398:30764200,7512393:303636 +k1,398:31838540,7512393:303637 +k1,399:32583029,7512393:0 +) +(1,399:6630773,8377473:25952256,530548,141067 +k1,398:7978314,8377473:255056 +k1,398:8846133,8377473:255057 +$1,398:8846133,8377473 +k1,398:10920843,8377473:0 +k1,398:11335785,8377473:0 +k1,398:11750727,8377473:0 +k1,398:12165669,8377473:0 +k1,398:14655321,8377473:0 +k1,398:15070263,8377473:0 +k1,398:16315089,8377473:0 +k1,398:16730031,8377473:0 +k1,398:19219683,8377473:0 +k1,398:19634625,8377473:0 +(1,398:22539219,8475787:32768,0,0 +) +(1,398:24646697,8475787:32768,0,0 +) +k1,398:25924291,8377473:0 +k1,398:26339233,8377473:0 +$1,398:28828885,8377473 +k1,398:29257611,8377473:255056 +k1,398:31478747,8377473:255056 +k1,398:32583029,8377473:0 +) +(1,399:6630773,9242553:25952256,513147,126483 +k1,398:7643707,9242553:265168 +k1,398:9422102,9242553:265169 +k1,398:11153966,9242553:265168 +k1,398:12070563,9242553:265169 +k1,398:13414454,9242553:265168 +k1,398:14627274,9242553:265169 +k1,398:17418855,9242553:265168 +k1,398:20778634,9242553:265169 +k1,398:23265473,9242553:265168 +k1,398:24182070,9242553:265169 +k1,398:25466323,9242553:265168 +k1,398:27487202,9242553:265169 +k1,398:29748597,9242553:265168 +k1,398:32583029,9242553:0 +) +(1,399:6630773,10107633:25952256,505283,134348 +k1,398:8151645,10107633:329427 +k1,398:10909182,10107633:329428 +k1,398:13809586,10107633:329427 +k1,398:14790442,10107633:329428 +k1,398:16138955,10107633:329428 +k1,398:17868231,10107633:329427 +k1,398:21144157,10107633:329427 +k1,398:23683459,10107633:329428 +k1,398:26674304,10107633:329428 +k1,398:28673588,10107633:329427 +k1,398:30583089,10107633:329428 +k1,398:31563944,10107633:329427 +k1,398:32583029,10107633:0 +) +(1,399:6630773,10972713:25952256,513147,126483 +g1,398:10466595,10972713 +g1,398:11325116,10972713 +g1,398:12727586,10972713 +g1,398:14508854,10972713 +g1,398:15812365,10972713 +g1,398:16759360,10972713 +g1,398:20207209,10972713 +g1,398:21092600,10972713 +g1,398:22537668,10972713 +k1,399:32583029,10972713:7151946 +g1,399:32583029,10972713 +) +(1,401:6630773,11837793:25952256,513147,134348 +h1,400:6630773,11837793:983040,0,0 +k1,400:9789561,11837793:209668 +k1,400:10990790,11837793:209669 +k1,400:13144256,11837793:209668 +k1,400:14115452,11837793:209668 +k1,400:16985227,11837793:209669 +k1,400:17965598,11837793:209668 +k1,400:20366136,11837793:209669 +k1,400:22317096,11837793:209668 +k1,400:23139526,11837793:209668 +k1,400:23705055,11837793:209669 +k1,400:25183500,11837793:209668 +k1,400:26891321,11837793:209668 +k1,400:28385496,11837793:209669 +k1,400:29880980,11837793:209668 +k1,400:32583029,11837793:0 +) +(1,401:6630773,12702873:25952256,513147,134348 +k1,400:8288783,12702873:155925 +k1,400:12456167,12702873:155925 +k1,400:13549913,12702873:155926 +k1,400:15660122,12702873:155925 +k1,400:16807607,12702873:155925 +k1,400:17319392,12702873:155925 +k1,400:18829292,12702873:155926 +k1,400:21537844,12702873:155925 +k1,400:22931744,12702873:155925 +k1,400:23746961,12702873:155925 +k1,400:26401119,12702873:155926 +k1,400:28184303,12702873:155925 +k1,400:28999520,12702873:155925 +k1,400:32583029,12702873:0 +) +(1,401:6630773,13567953:25952256,505283,126483 +k1,400:8103149,13567953:187870 +k1,400:9821284,13567953:187869 +k1,400:10660582,13567953:187870 +k1,400:11596218,13567953:187870 +k1,400:13535210,13567953:187870 +k1,400:14540968,13567953:187869 +k1,400:17255251,13567953:187870 +k1,400:20537731,13567953:187870 +k1,400:23012808,13567953:187870 +k1,400:25101876,13567953:187869 +k1,400:27649697,13567953:187870 +k1,400:31900144,13567953:187870 +k1,400:32583029,13567953:0 +) +(1,401:6630773,14433033:25952256,513147,134348 +k1,400:8554691,14433033:221948 +k1,400:11957102,14433033:221949 +k1,400:14345015,14433033:221948 +k1,400:16521248,14433033:221949 +k1,400:17394624,14433033:221948 +k1,400:18695296,14433033:221949 +k1,400:20556299,14433033:221948 +k1,400:23887275,14433033:221948 +k1,400:25128309,14433033:221949 +k1,400:27016182,14433033:221948 +k1,400:27897423,14433033:221949 +k1,400:31391584,14433033:221948 +k1,400:32583029,14433033:0 +) +(1,401:6630773,15298113:25952256,505283,134348 +g1,400:9328234,15298113 +g1,400:10546548,15298113 +g1,400:12327816,15298113 +k1,401:32583030,15298113:16787704 +g1,401:32583030,15298113 +) +(1,402:6630773,18129273:25952256,32768,229376 +(1,402:6630773,18129273:0,32768,229376 +(1,402:6630773,18129273:5505024,32768,229376 +r1,412:12135797,18129273:5505024,262144,229376 +) +k1,402:6630773,18129273:-5505024 +) +(1,402:6630773,18129273:25952256,32768,0 +r1,412:32583029,18129273:25952256,32768,0 +) +) +(1,402:6630773,19761125:25952256,606339,161218 +(1,402:6630773,19761125:1974731,573309,14155 +g1,402:6630773,19761125 +g1,402:8605504,19761125 +) +g1,402:11813360,19761125 +k1,402:32583030,19761125:17773364 +g1,402:32583030,19761125 +) +(1,405:6630773,21019421:25952256,513147,134348 +k1,404:7641994,21019421:266732 +k1,404:8927810,21019421:266731 +k1,404:10377467,21019421:266732 +k1,404:11303490,21019421:266731 +k1,404:13021844,21019421:266732 +k1,404:15706198,21019421:266731 +k1,404:16328790,21019421:266732 +k1,404:18874208,21019421:266731 +k1,404:20287165,21019421:266732 +k1,404:21757137,21019421:266731 +k1,404:23180579,21019421:266732 +k1,404:25057530,21019421:266731 +k1,404:29093237,21019421:266732 +k1,404:30307619,21019421:266731 +k1,404:32583029,21019421:0 +) +(1,405:6630773,21884501:25952256,505283,134348 +k1,404:9305833,21884501:272510 +k1,404:10387714,21884501:272511 +k1,404:12881895,21884501:272510 +k1,404:15968522,21884501:272511 +k1,404:17070062,21884501:272510 +k1,404:21007346,21884501:272511 +k1,404:22828472,21884501:272510 +k1,404:27453229,21884501:272511 +k1,404:28411901,21884501:272510 +k1,404:29455115,21884501:272511 +k1,404:32051532,21884501:272510 +k1,404:32583029,21884501:0 +) +(1,405:6630773,22749581:25952256,505283,134348 +k1,404:8036050,22749581:234804 +k1,404:9375136,22749581:234804 +k1,404:11022241,22749581:234804 +k1,404:12457009,22749581:234804 +k1,404:13465793,22749581:234804 +k1,404:18100684,22749581:234804 +k1,404:20390042,22749581:234804 +k1,404:22599659,22749581:235017 +k1,404:23304356,22749581:234804 +k1,404:24671622,22749581:234804 +k1,404:26622159,22749581:234804 +k1,404:28727361,22749581:234804 +k1,404:29981250,22749581:234804 +k1,404:32583029,22749581:0 +) +(1,405:6630773,23614661:25952256,513147,134348 +k1,404:7513707,23614661:223642 +k1,404:12089594,23614661:223641 +k1,404:12929274,23614661:223642 +k1,404:13741428,23614661:223641 +k1,404:15431766,23614661:223642 +k1,404:18972840,23614661:223642 +k1,404:20387926,23614661:223641 +k1,404:24541762,23614661:223642 +k1,404:25393238,23614661:223641 +k1,404:27968312,23614661:223642 +k1,404:30146892,23614661:223641 +k1,404:32051532,23614661:223642 +k1,404:32583029,23614661:0 +) +(1,405:6630773,24479741:25952256,513147,134348 +g1,404:7185862,24479741 +g1,404:8967130,24479741 +g1,404:10988915,24479741 +g1,404:12736760,24479741 +g1,404:14382369,24479741 +g1,404:15390968,24479741 +g1,404:16206235,24479741 +g1,404:17424549,24479741 +g1,404:19610830,24479741 +g1,404:20469351,24479741 +k1,405:32583029,24479741:7311855 +g1,405:32583029,24479741 +) +] +(1,412:32583029,45706769:0,0,0 +g1,412:32583029,45706769 +) +) +] +(1,412:6630773,47279633:25952256,0,0 +h1,412:6630773,47279633:25952256,0,0 +) +] +(1,412:4262630,4025873:0,0,0 +[1,412:-473656,4025873:0,0,0 +(1,412:-473656,-710413:0,0,0 +(1,412:-473656,-710413:0,0,0 +g1,412:-473656,-710413 +) +g1,412:-473656,-710413 +) +] +) +] +!10981 +}23 +!11 +{24 +[1,433:4262630,47279633:28320399,43253760,11795 +(1,433:4262630,4025873:0,0,0 +[1,433:-473656,4025873:0,0,0 +(1,433:-473656,-710413:0,0,0 +(1,433:-473656,-644877:0,0,0 +k1,433:-473656,-644877:-65536 ) -g1,322:21135230,36229534 -g1,322:21135230,36229534 +(1,433:-473656,4736287:0,0,0 +k1,433:-473656,4736287:5209943 ) +g1,433:-473656,-710413 ) -g1,322:21135230,36229534 -) -) -g1,322:21135230,36229534 -(1,322:21135230,36229534:665744,665744,665744 -g1,322:21800974,36229534 -g1,322:21800974,36229534 -) -g1,322:21800974,36229534 -(1,322:21800974,36229534:639530,665744,665744 -g1,322:21800974,36229534 -g1,322:22440504,36229534 -(1,322:22440504,36229534:0,665744,665744 -(1,322:22440504,36229534:0,0,0 -(1,322:22440504,36229534:0,0,0 -g1,322:22440504,36229534 -g1,322:22440504,36229534 -g1,322:22440504,36229534 -g1,322:22440504,36229534 -g1,322:22440504,36229534 -(1,322:22440504,36229534:0,0,0 -(1,322:22440504,36229534:0,0,0 -h1,322:22440504,36229534:0,0,0 -g1,322:22440504,36229534 -) -) -g1,322:22440504,36229534 -g1,322:22440504,36229534 -) -) -g1,322:22440504,36229534 -) -) -g1,322:22440504,36229534 -(1,322:22440504,36229534:665744,665744,665744 -g1,322:23106248,36229534 -g1,322:23106248,36229534 -) -g1,322:23106248,36229534 -(1,322:23106248,36229534:639530,665744,665744 -g1,322:23106248,36229534 -g1,322:23745778,36229534 -(1,322:23745778,36229534:0,665744,665744 -(1,322:23745778,36229534:0,0,0 -(1,322:23745778,36229534:0,0,0 -g1,322:23745778,36229534 -g1,322:23745778,36229534 -g1,322:23745778,36229534 -g1,322:23745778,36229534 -g1,322:23745778,36229534 -(1,322:23745778,36229534:0,0,0 -(1,322:23745778,36229534:0,0,0 -h1,322:23745778,36229534:0,0,0 -g1,322:23745778,36229534 -) -) -g1,322:23745778,36229534 -g1,322:23745778,36229534 -) -) -g1,322:23745778,36229534 -) -) -g1,322:23745778,36229534 -(1,322:23745778,36229534:665744,665744,665744 -g1,322:24411522,36229534 -g1,322:24411522,36229534 -) -g1,322:24411522,36229534 -(1,322:24411522,36229534:639530,665744,665744 -g1,322:24411522,36229534 -g1,322:25051052,36229534 -(1,322:25051052,36229534:0,665744,665744 -(1,322:25051052,36229534:0,0,0 -(1,322:25051052,36229534:0,0,0 -g1,322:25051052,36229534 -g1,322:25051052,36229534 -g1,322:25051052,36229534 -g1,322:25051052,36229534 -g1,322:25051052,36229534 -(1,322:25051052,36229534:0,0,0 -(1,322:25051052,36229534:0,0,0 -h1,322:25051052,36229534:0,0,0 -g1,322:25051052,36229534 -) -) -g1,322:25051052,36229534 -g1,322:25051052,36229534 -) -) -g1,322:25051052,36229534 -) -) -g1,322:25051052,36229534 -(1,322:25051052,36229534:665744,665744,665744 -g1,322:25716796,36229534 -g1,322:25716796,36229534 -) -g1,322:25716796,36229534 -(1,322:25716796,36229534:639530,665744,665744 -g1,322:25716796,36229534 -g1,322:26356326,36229534 -(1,322:26356326,36229534:0,665744,665744 -(1,322:26356326,36229534:0,0,0 -(1,322:26356326,36229534:0,0,0 -g1,322:26356326,36229534 -g1,322:26356326,36229534 -g1,322:26356326,36229534 -g1,322:26356326,36229534 -g1,322:26356326,36229534 -(1,322:26356326,36229534:0,0,0 -(1,322:26356326,36229534:0,0,0 -h1,322:26356326,36229534:0,0,0 -g1,322:26356326,36229534 -) -) -g1,322:26356326,36229534 -g1,322:26356326,36229534 +] ) +[1,433:6630773,47279633:25952256,43253760,11795 +[1,433:6630773,4812305:25952256,786432,0 +(1,433:6630773,4812305:25952256,0,0 +(1,433:6630773,4812305:25952256,0,0 +g1,433:3078558,4812305 +[1,433:3078558,4812305:0,0,0 +(1,433:3078558,2439708:0,1703936,0 +k1,433:1358238,2439708:-1720320 +(1,412:1358238,2439708:1720320,1703936,0 +(1,412:1358238,2439708:1179648,16384,0 +r1,433:2537886,2439708:1179648,16384,0 ) -g1,322:26356326,36229534 +g1,412:3062174,2439708 +(1,412:3062174,2439708:16384,1703936,0 +[1,412:3062174,2439708:25952256,1703936,0 +(1,412:3062174,1915420:25952256,1179648,0 +(1,412:3062174,1915420:16384,1179648,0 +r1,433:3078558,1915420:16384,1179648,0 ) +k1,412:29014430,1915420:25935872 +g1,412:29014430,1915420 ) -g1,322:26356326,36229534 -(1,322:26356326,36229534:665744,665744,665744 -g1,322:27022070,36229534 -g1,322:27022070,36229534 +] ) -g1,322:27022070,36229534 -(1,322:27022070,36229534:639530,665744,665744 -g1,322:27022070,36229534 -g1,322:27661600,36229534 -(1,322:27661600,36229534:0,665744,665744 -(1,322:27661600,36229534:0,0,0 -(1,322:27661600,36229534:0,0,0 -g1,322:27661600,36229534 -g1,322:27661600,36229534 -g1,322:27661600,36229534 -g1,322:27661600,36229534 -g1,322:27661600,36229534 -(1,322:27661600,36229534:0,0,0 -(1,322:27661600,36229534:0,0,0 -h1,322:27661600,36229534:0,0,0 -g1,322:27661600,36229534 ) ) -g1,322:27661600,36229534 -g1,322:27661600,36229534 +] +[1,433:3078558,4812305:0,0,0 +(1,433:3078558,2439708:0,1703936,0 +g1,433:29030814,2439708 +g1,433:36135244,2439708 +(1,412:36135244,2439708:1720320,1703936,0 +(1,412:36135244,2439708:16384,1703936,0 +[1,412:36135244,2439708:25952256,1703936,0 +(1,412:36135244,1915420:25952256,1179648,0 +(1,412:36135244,1915420:16384,1179648,0 +r1,433:36151628,1915420:16384,1179648,0 ) +k1,412:62087500,1915420:25935872 +g1,412:62087500,1915420 ) -g1,322:27661600,36229534 +] ) +g1,412:36675916,2439708 +(1,412:36675916,2439708:1179648,16384,0 +r1,433:37855564,2439708:1179648,16384,0 ) -g1,322:27661600,36229534 -(1,322:27661600,36229534:665744,665744,665744 -g1,322:28327344,36229534 -g1,322:28327344,36229534 ) -g1,322:28327344,36229534 -(1,322:28327344,36229534:639530,665744,665744 -g1,322:28327344,36229534 -g1,322:28966874,36229534 -(1,322:28966874,36229534:0,665744,665744 -(1,322:28966874,36229534:0,0,0 -(1,322:28966874,36229534:0,0,0 -g1,322:28966874,36229534 -g1,322:28966874,36229534 -g1,322:28966874,36229534 -g1,322:28966874,36229534 -g1,322:28966874,36229534 -(1,322:28966874,36229534:0,0,0 -(1,322:28966874,36229534:0,0,0 -h1,322:28966874,36229534:0,0,0 -g1,322:28966874,36229534 +k1,433:3078556,2439708:-34777008 ) +] +[1,433:3078558,4812305:0,0,0 +(1,433:3078558,49800853:0,16384,2228224 +k1,433:1358238,49800853:-1720320 +(1,412:1358238,49800853:1720320,16384,2228224 +(1,412:1358238,49800853:1179648,16384,0 +r1,433:2537886,49800853:1179648,16384,0 ) -g1,322:28966874,36229534 -g1,322:28966874,36229534 +g1,412:3062174,49800853 +(1,412:3062174,52029077:16384,1703936,0 +[1,412:3062174,52029077:25952256,1703936,0 +(1,412:3062174,51504789:25952256,1179648,0 +(1,412:3062174,51504789:16384,1179648,0 +r1,433:3078558,51504789:16384,1179648,0 ) +k1,412:29014430,51504789:25935872 +g1,412:29014430,51504789 ) -g1,322:28966874,36229534 +] ) ) -g1,322:28966874,36229534 -(1,322:28966874,36229534:665744,665744,665744 -g1,322:29632618,36229534 -g1,322:29632618,36229534 ) -g1,322:29632618,36229534 -(1,322:29632618,36229534:639530,665744,665744 -g1,322:29632618,36229534 -g1,322:30272148,36229534 -(1,322:30272148,36229534:0,665744,665744 -(1,322:30272148,36229534:0,0,0 -(1,322:30272148,36229534:0,0,0 -g1,322:30272148,36229534 -g1,322:30272148,36229534 -g1,322:30272148,36229534 -g1,322:30272148,36229534 -g1,322:30272148,36229534 -(1,322:30272148,36229534:0,0,0 -(1,322:30272148,36229534:0,0,0 -h1,322:30272148,36229534:0,0,0 -g1,322:30272148,36229534 +] +[1,433:3078558,4812305:0,0,0 +(1,433:3078558,49800853:0,16384,2228224 +g1,433:29030814,49800853 +g1,433:36135244,49800853 +(1,412:36135244,49800853:1720320,16384,2228224 +(1,412:36135244,52029077:16384,1703936,0 +[1,412:36135244,52029077:25952256,1703936,0 +(1,412:36135244,51504789:25952256,1179648,0 +(1,412:36135244,51504789:16384,1179648,0 +r1,433:36151628,51504789:16384,1179648,0 ) +k1,412:62087500,51504789:25935872 +g1,412:62087500,51504789 ) -g1,322:30272148,36229534 -g1,322:30272148,36229534 +] ) +g1,412:36675916,49800853 +(1,412:36675916,49800853:1179648,16384,0 +r1,433:37855564,49800853:1179648,16384,0 ) -g1,322:30272148,36229534 ) +k1,433:3078556,49800853:-34777008 ) -g1,322:30272148,36229534 -(1,322:30272148,36229534:665744,665744,665744 -g1,322:30937892,36229534 -g1,322:30937892,36229534 +] +g1,433:6630773,4812305 ) -g1,322:30937892,36229534 ) ] +[1,433:6630773,45706769:25952256,40108032,0 +(1,433:6630773,45706769:25952256,40108032,0 +(1,433:6630773,45706769:0,0,0 +g1,433:6630773,45706769 +) +[1,433:6630773,45706769:25952256,40108032,0 +[1,412:6630773,11797421:25952256,6198684,0 +(1,412:6630773,6633157:25952256,1165492,0 +h1,412:6630773,6633157:0,0,0 +k1,412:20096848,6633157:12486181 +k1,412:32583029,6633157:12486181 +) +(1,412:6630773,7380277:25952256,32768,229376 +(1,412:6630773,7380277:0,32768,229376 +(1,412:6630773,7380277:5505024,32768,229376 +r1,433:12135797,7380277:5505024,262144,229376 +) +k1,412:6630773,7380277:-5505024 ) +(1,412:6630773,7380277:25952256,32768,0 +r1,433:32583029,7380277:25952256,32768,0 ) -g1,322:17858938,36229534 -g1,322:17858938,36229534 -) -) -g1,322:17858938,36229534 -g1,323:17858938,36229534 -(1,323:17858938,36229534:0,0,0 -(1,323:17858938,36229534:0,0,0 -g1,323:17858938,36229534 -g1,323:17858938,36229534 -g1,323:17858938,36229534 -g1,323:17858938,36229534 -g1,323:17858938,36229534 -(1,323:17858938,36229534:0,0,0 -(1,323:17858938,36229534:0,0,0 -h1,323:17858938,36229534:0,0,0 -g1,323:17858938,36229534 ) +(1,412:6630773,9215293:25952256,909509,241827 +h1,412:6630773,9215293:0,0,0 +g1,412:8047531,9215293 +g1,412:10180335,9215293 +g1,412:16167049,9215293 +g1,412:18704472,9215293 +g1,412:20837276,9215293 +k1,412:29206878,9215293:3376152 +k1,412:32583029,9215293:3376151 ) -g1,323:17858938,36229534 -g1,323:17858938,36229534 +(1,412:6630773,9962413:25952256,32768,0 +(1,412:6630773,9962413:5505024,32768,0 +r1,433:12135797,9962413:5505024,32768,0 ) +k1,412:22359413,9962413:10223616 +k1,412:32583029,9962413:10223616 +) +] +(1,414:6630773,14713778:25952256,131072,0 +r1,433:32583029,14713778:25952256,131072,0 +g1,414:32583029,14713778 +g1,414:32583029,14713778 +) +(1,416:6630773,16057271:25952256,513147,134348 +k1,416:8596853,16057271:1966080 +k1,415:9474380,16057271:249692 +k1,415:10079932,16057271:249692 +k1,415:12159390,16057271:249693 +k1,415:13068374,16057271:249692 +k1,415:13973426,16057271:249692 +k1,415:17296101,16057271:249692 +k1,415:20313378,16057271:249692 +k1,415:21510721,16057271:249692 +k1,415:23410611,16057271:249693 +k1,415:24319595,16057271:249692 +k1,415:28106265,16057271:249692 +k1,415:29512667,16057271:249692 +k1,415:32583029,16057271:1966080 +) +(1,416:6630773,16922351:25952256,513147,134348 +k1,416:8596853,16922351:1966080 +k1,415:10084708,16922351:210558 +k1,415:11872717,16922351:210557 +k1,415:12742567,16922351:210558 +k1,415:13972210,16922351:210558 +k1,415:15804129,16922351:210558 +k1,415:23138449,16922351:210557 +k1,415:25524802,16922351:210558 +k1,415:32583029,16922351:1966080 +) +(1,416:6630773,17787431:25952256,513147,134348 +g1,416:8596853,17787431 +g1,415:10363703,17787431 +g1,415:11582017,17787431 +g1,415:14358777,17787431 +g1,415:15217298,17787431 +g1,415:17000532,17787431 +k1,416:30616949,17787431:10683681 +g1,416:32583029,17787431 +) +(1,417:6630773,19438943:25952256,505283,134348 +k1,417:20158061,19438943:13527288 +h1,417:20158061,19438943:0,0,0 +g1,417:22016662,19438943 +g1,417:22995769,19438943 +g1,417:26470487,19438943 +g1,417:27861161,19438943 +g1,417:29300331,19438943 +g1,417:30616949,19438943 +g1,417:32583029,19438943 +) +(1,418:6630773,20304023:25952256,513147,134348 +k1,418:19372939,20304023:12742166 +h1,417:19372939,20304023:0,0,0 +g1,417:20759680,20304023 +g1,417:23444690,20304023 +g1,417:24259957,20304023 +g1,417:29023113,20304023 +g1,418:30616949,20304023 +g1,418:32583029,20304023 +) +(1,418:6630773,21562319:25952256,131072,0 +r1,433:32583029,21562319:25952256,131072,0 +g1,418:32583029,21562319 +g1,418:34549109,21562319 +) +(1,420:6630773,24393479:25952256,32768,229376 +(1,420:6630773,24393479:0,32768,229376 +(1,420:6630773,24393479:5505024,32768,229376 +r1,433:12135797,24393479:5505024,262144,229376 +) +k1,420:6630773,24393479:-5505024 +) +(1,420:6630773,24393479:25952256,32768,0 +r1,433:32583029,24393479:25952256,32768,0 +) +) +(1,420:6630773,26025331:25952256,615776,151780 +(1,420:6630773,26025331:1974731,582746,0 +g1,420:6630773,26025331 +g1,420:8605504,26025331 +) +g1,420:10904245,26025331 +g1,420:11961996,26025331 +g1,420:13695292,26025331 +k1,420:32583029,26025331:15886712 +g1,420:32583029,26025331 +) +(1,423:6630773,27283627:25952256,513147,134348 +k1,422:7129339,27283627:285574 +k1,422:9151704,27283627:285661 +k1,422:11129505,27283627:285661 +k1,422:12956573,27283627:285661 +k1,422:15064790,27283627:285661 +k1,422:16369536,27283627:285661 +k1,422:18902428,27283627:285662 +k1,422:20379534,27283627:285661 +k1,422:22753827,27283627:285661 +k1,422:23698780,27283627:285661 +k1,422:25003526,27283627:285661 +k1,422:25703943,27283627:285574 +k1,422:28831900,27283627:285661 +k1,422:29842389,27283627:285661 +k1,422:31412556,27283627:285661 +k1,422:32583029,27283627:0 +) +(1,423:6630773,28148707:25952256,513147,134348 +k1,422:7957362,28148707:222307 +k1,422:9525780,28148707:222308 +k1,422:10103947,28148707:222307 +k1,422:11910259,28148707:222307 +k1,422:14594755,28148707:222308 +k1,422:16505269,28148707:222307 +k1,422:18295198,28148707:222308 +k1,422:20402976,28148707:222307 +k1,422:21276711,28148707:222307 +k1,422:23268491,28148707:222308 +k1,422:24509883,28148707:222307 +k1,422:26240829,28148707:222307 +k1,422:28662525,28148707:222308 +k1,422:29803647,28148707:222307 +k1,422:32583029,28148707:0 +) +(1,423:6630773,29013787:25952256,505283,134348 +k1,422:9176301,29013787:186887 +k1,422:9821284,29013787:186886 +k1,422:11878569,29013787:186887 +k1,422:12716884,29013787:186887 +k1,422:16568543,29013787:186886 +k1,422:17946875,29013787:186887 +k1,422:21392867,29013787:186887 +k1,422:23392479,29013787:186886 +k1,422:24833070,29013787:186887 +k1,422:26152419,29013787:186887 +k1,422:27950835,29013787:186886 +k1,422:29156807,29013787:186887 +k1,422:32583029,29013787:0 +) +(1,423:6630773,29878867:25952256,513147,134348 +k1,422:9449121,29878867:183145 +k1,422:10651350,29878867:183144 +k1,422:11249322,29878867:183129 +k1,422:14174493,29878867:183145 +k1,422:15963269,29878867:183144 +k1,422:17337859,29878867:183145 +k1,422:18540088,29878867:183144 +k1,422:21738544,29878867:183145 +k1,422:25167687,29878867:183145 +k1,422:26497056,29878867:183144 +k1,422:29278048,29878867:183145 +k1,422:32583029,29878867:0 +) +(1,423:6630773,30743947:25952256,505283,134348 +g1,422:8343228,30743947 +g1,422:11222880,30743947 +g1,422:12816060,30743947 +k1,423:32583029,30743947:19178456 +g1,423:32583029,30743947 +) +(1,425:6630773,31609027:25952256,505283,134348 +h1,424:6630773,31609027:983040,0,0 +k1,424:9074305,31609027:206788 +k1,424:10413556,31609027:206789 +k1,424:11906160,31609027:206788 +k1,424:13724478,31609027:206788 +k1,424:15261648,31609027:206789 +k1,424:16119864,31609027:206788 +k1,424:18781632,31609027:206789 +k1,424:20382371,31609027:206788 +k1,424:21003995,31609027:206781 +k1,424:22908821,31609027:206788 +k1,424:25151158,31609027:206789 +k1,424:25970708,31609027:206788 +k1,424:26533356,31609027:206788 +k1,424:29990075,31609027:206789 +k1,424:31450567,31609027:206788 +k1,424:32583029,31609027:0 +) +(1,425:6630773,32474107:25952256,513147,134348 +k1,424:8415384,32474107:173081 +k1,424:9607549,32474107:173080 +k1,424:12966989,32474107:173080 +k1,424:15775273,32474107:173081 +k1,424:17977349,32474107:173081 +k1,424:21640221,32474107:173080 +k1,424:25740218,32474107:173080 +k1,424:27104744,32474107:173081 +k1,424:29680375,32474107:173081 +k1,424:31305077,32474107:173080 +k1,425:32583029,32474107:0 +) +(1,425:6630773,33339187:25952256,513147,134348 +k1,424:7793302,33339187:143444 +k1,424:9779618,33339187:143444 +k1,424:11490682,33339187:143443 +k1,424:12048914,33339187:143389 +k1,424:13001727,33339187:143443 +k1,424:14164256,33339187:143444 +k1,424:16369463,33339187:143444 +k1,424:17199069,33339187:143444 +k1,424:18512986,33339187:143444 +k1,424:20311213,33339187:143443 +k1,424:22267383,33339187:143444 +k1,424:24479143,33339187:143444 +k1,424:26357980,33339187:143444 +k1,424:26916211,33339187:143388 +k1,424:29221032,33339187:143444 +k1,424:32583029,33339187:0 +) +(1,425:6630773,34204267:25952256,513147,134348 +k1,424:9510381,34204267:208361 +k1,424:13208534,34204267:208361 +k1,424:15455065,34204267:208361 +k1,424:16279463,34204267:208360 +k1,424:16843684,34204267:208361 +k1,424:18035085,34204267:208361 +k1,424:18894874,34204267:208361 +k1,424:21515615,34204267:208361 +k1,424:22406861,34204267:208361 +k1,424:23733266,34204267:208361 +k1,424:24297487,34204267:208361 +k1,424:26127863,34204267:208360 +k1,424:27620730,34204267:208361 +k1,424:29550066,34204267:208361 +k1,424:31931601,34204267:208361 +k1,424:32583029,34204267:0 +) +(1,425:6630773,35069347:25952256,513147,126483 +g1,424:9302675,35069347 +g1,424:10484944,35069347 +g1,424:11631824,35069347 +g1,424:13284642,35069347 +k1,425:32583029,35069347:15809250 +g1,425:32583029,35069347 +) +(1,427:6630773,35934427:25952256,513147,134348 +h1,426:6630773,35934427:983040,0,0 +k1,426:7992580,35934427:165775 +k1,426:10827670,35934427:165809 +k1,426:12012564,35934427:165809 +k1,426:13863959,35934427:165809 +k1,426:15797273,35934427:165808 +k1,426:16579120,35934427:165809 +k1,426:17100789,35934427:165809 +k1,426:19401105,35934427:165808 +k1,426:22416419,35934427:165809 +k1,426:23265113,35934427:165809 +k1,426:26294190,35934427:165809 +k1,426:28417558,35934427:165808 +k1,426:31563944,35934427:165809 +k1,426:32583029,35934427:0 +) +(1,427:6630773,36799507:25952256,513147,126483 +k1,426:8207643,36799507:187507 +k1,426:10949743,36799507:187507 +k1,426:12733707,36799507:187507 +k1,426:14271256,36799507:187507 +k1,426:15650208,36799507:187507 +k1,426:16856800,36799507:187507 +k1,426:18609962,36799507:187507 +k1,426:20081975,36799507:187507 +k1,426:20684313,36799507:187495 +k1,426:21976102,36799507:187507 +k1,426:23506442,36799507:187507 +k1,426:24309987,36799507:187507 +k1,426:25129261,36799507:187507 +k1,426:25529748,36799507:187495 +k1,426:27453959,36799507:187507 +k1,426:28622540,36799507:187507 +k1,426:30567067,36799507:187507 +k1,426:31563944,36799507:187507 +k1,426:32583029,36799507:0 +) +(1,427:6630773,37664587:25952256,513147,134348 +k1,426:10369998,37664587:170134 +k1,426:11731577,37664587:170134 +k1,426:16423040,37664587:170134 +k1,426:17252466,37664587:170134 +k1,426:19624610,37664587:170134 +k1,426:22954235,37664587:170134 +k1,426:26296967,37664587:170134 +k1,426:27960667,37664587:170134 +k1,426:28816963,37664587:170134 +k1,426:29401911,37664587:170105 +k1,426:32583029,37664587:0 +) +(1,427:6630773,38529667:25952256,513147,126483 +k1,426:7488163,38529667:205962 +k1,426:11733765,38529667:205963 +k1,426:13320571,38529667:205962 +k1,426:16840689,38529667:205962 +k1,426:20351632,38529667:205962 +k1,426:22070821,38529667:205963 +k1,426:22892821,38529667:205962 +k1,426:24800753,38529667:205962 +k1,426:27860153,38529667:205962 +k1,426:30998852,38529667:205963 +k1,426:31417799,38529667:205955 +k1,427:32583029,38529667:0 +) +(1,427:6630773,39394747:25952256,513147,134348 +k1,426:8224499,39394747:184702 +k1,426:9428286,39394747:184702 +k1,426:10848342,39394747:184702 +k1,426:11692337,39394747:184703 +k1,426:14079049,39394747:184702 +k1,426:17436349,39394747:184702 +k1,426:18812496,39394747:184702 +k1,426:21226733,39394747:184702 +k1,426:25830527,39394747:184702 +k1,426:26631268,39394747:184703 +k1,426:27835055,39394747:184702 +k1,426:29373731,39394747:184702 +k1,426:32583029,39394747:0 +) +(1,427:6630773,40259827:25952256,513147,126483 +k1,426:9647728,40259827:252646 +k1,426:10559665,40259827:252645 +k1,426:15547943,40259827:252646 +k1,426:16459881,40259827:252646 +k1,426:18101889,40259827:252645 +k1,426:21055274,40259827:252646 +k1,426:22499364,40259827:252645 +k1,426:25401631,40259827:252646 +k1,426:26984658,40259827:252646 +k1,426:27450242,40259827:252592 +k1,426:29178102,40259827:252645 +k1,426:30943974,40259827:252646 +k1,426:32583029,40259827:0 +) +(1,427:6630773,41124907:25952256,505283,134348 +g1,426:8519520,41124907 +g1,426:10976464,41124907 +g1,426:12367138,41124907 +g1,426:16134147,41124907 +g1,426:17536617,41124907 +k1,427:32583029,41124907:13290702 +g1,427:32583029,41124907 +) +] +(1,433:32583029,45706769:0,0,0 +g1,433:32583029,45706769 +) +) +] +(1,433:6630773,47279633:25952256,485622,11795 +(1,433:6630773,47279633:25952256,485622,11795 +(1,433:6630773,47279633:0,0,0 +v1,433:6630773,47279633:0,0,0 +) +g1,433:6830002,47279633 +k1,433:32184570,47279633:25354568 +) +) +] +(1,433:4262630,4025873:0,0,0 +[1,433:-473656,4025873:0,0,0 +(1,433:-473656,-710413:0,0,0 +(1,433:-473656,-710413:0,0,0 +g1,433:-473656,-710413 +) +g1,433:-473656,-710413 ) -g1,323:17858938,36229534 -g1,327:17858938,36229534 -g1,327:17858938,36229534 -g1,329:17858938,36229534 -(1,329:17858938,36229534:0,0,0 -(1,329:17858938,36229534:0,0,0 -g1,329:17858938,36229534 -(1,329:17858938,36229534:0,0,0 -(1,329:17858938,36229534:1860446,466322,199855 -(1,329:17858938,36229534:1860446,466322,199855 -g1,329:18024613,36229534 -(1,329:18024613,36229534:0,332241,93333 -r1,350:19719384,36229534:1694771,425574,93333 -k1,329:18024613,36229534:-1694771 -) -(1,329:18024613,36229534:1694771,332241,93333 -k1,329:18024613,36229534:3277 -h1,329:19716107,36229534:0,328964,90056 -) -r1,350:19719384,36229534:0,666177,199855 +] ) -g1,329:19719384,36229534 +] +!14371 +}24 +!11 +{25 +[1,441:4262630,47279633:28320399,43253760,0 +(1,441:4262630,4025873:0,0,0 +[1,441:-473656,4025873:0,0,0 +(1,441:-473656,-710413:0,0,0 +(1,441:-473656,-644877:0,0,0 +k1,441:-473656,-644877:-65536 ) +(1,441:-473656,4736287:0,0,0 +k1,441:-473656,4736287:5209943 ) -g1,329:17858938,36229534 -g1,329:17858938,36229534 +g1,441:-473656,-710413 ) +] ) -g1,329:17858938,36229534 -g1,330:17858938,36229534 -g1,330:17858938,36229534 -(1,330:17858938,36229534:0,0,0 -(1,330:17858938,36229534:0,0,0 -g1,330:17858938,36229534 -g1,330:17858938,36229534 -g1,330:17858938,36229534 -g1,330:17858938,36229534 -g1,330:17858938,36229534 -(1,330:17858938,36229534:0,0,0 -(1,330:17858938,36229534:2695889,404226,6290 -(1,330:17858938,36229534:2695889,404226,6290 -g1,330:19134531,36229534 +[1,441:6630773,47279633:25952256,43253760,0 +[1,441:6630773,4812305:25952256,786432,0 +(1,441:6630773,4812305:25952256,505283,134348 +(1,441:6630773,4812305:25952256,505283,134348 +g1,441:3078558,4812305 +[1,441:3078558,4812305:0,0,0 +(1,441:3078558,2439708:0,1703936,0 +k1,441:1358238,2439708:-1720320 +(1,412:1358238,2439708:1720320,1703936,0 +(1,412:1358238,2439708:1179648,16384,0 +r1,441:2537886,2439708:1179648,16384,0 ) -g1,330:20554827,36229534 +g1,412:3062174,2439708 +(1,412:3062174,2439708:16384,1703936,0 +[1,412:3062174,2439708:25952256,1703936,0 +(1,412:3062174,1915420:25952256,1179648,0 +(1,412:3062174,1915420:16384,1179648,0 +r1,441:3078558,1915420:16384,1179648,0 ) +k1,412:29014430,1915420:25935872 +g1,412:29014430,1915420 ) -g1,330:17858938,36229534 -g1,330:17858938,36229534 +] ) ) -g1,330:17858938,36229534 -g1,331:17858938,36229534 -(1,331:17858938,36229534:0,0,0 -(1,331:17858938,36229534:0,0,0 -g1,331:17858938,36229534 -g1,331:17858938,36229534 -g1,331:17858938,36229534 -g1,331:17858938,36229534 -g1,331:17858938,36229534 -(1,331:17858938,36229534:0,0,0 -(1,331:17858938,36229534:4457497,404226,101187 -(1,331:17858938,36229534:4457497,404226,101187 -g1,331:20530710,36229534 -) -g1,331:22316435,36229534 -) -) -g1,331:17858938,36229534 -g1,331:17858938,36229534 -) -) -g1,331:17858938,36229534 -g1,332:17858938,36229534 -(1,332:17858938,36229534:0,0,0 -(1,332:17858938,36229534:0,0,0 -g1,332:17858938,36229534 -g1,332:17858938,36229534 -g1,332:17858938,36229534 -g1,332:17858938,36229534 -g1,332:17858938,36229534 -(1,332:17858938,36229534:0,0,0 -(1,332:17858938,36229534:5461959,404226,93333 -(1,332:17858938,36229534:5461959,404226,93333 -g1,332:20361365,36229534 -g1,332:21063387,36229534 -(1,332:21063387,36229534:0,363038,93333 -r1,350:23320897,36229534:2257510,456371,93333 -k1,332:21063387,36229534:-2257510 -) -(1,332:21063387,36229534:2257510,363038,93333 -k1,332:21063387,36229534:3277 -h1,332:23317620,36229534:0,328964,90056 -) -) -g1,332:23320897,36229534 -) -) -g1,332:17858938,36229534 -g1,332:17858938,36229534 -) -) -g1,332:17858938,36229534 -g1,333:17858938,36229534 -g1,333:17858938,36229534 -(1,333:17858938,36229534:0,0,0 -(1,333:17858938,36229534:0,0,0 -g1,333:17858938,36229534 -g1,333:17858938,36229534 -g1,333:17858938,36229534 -g1,333:17858938,36229534 -g1,333:17858938,36229534 -(1,333:17858938,36229534:0,0,0 -(1,333:17858938,36229534:4773118,404226,9436 -(1,333:17858938,36229534:4773118,404226,9436 -(1,333:17858938,36229534:4773118,404226,9436 -g1,333:20063045,36229534 -g1,333:20714211,36229534 -g1,333:22300182,36229534 -) -) -g1,333:22632056,36229534 -) -) -g1,333:17858938,36229534 -g1,333:17858938,36229534 -) -) -g1,333:17858938,36229534 -g1,334:17858938,36229534 -g1,334:17858938,36229534 -g1,334:17858938,36229534 -g1,334:17858938,36229534 -g1,334:17858938,36229534 -g1,334:17858938,36229534 -g1,336:17858938,36229534 -g1,336:17858938,36229534 -) -g1,336:17858938,36229534 -) -) -g1,338:30782371,37595914 -k1,338:32583029,37595914:1800658 -) -(1,341:6630773,39092762:25952256,505283,134348 -h1,340:6630773,39092762:983040,0,0 -k1,340:8862778,39092762:206943 -k1,340:10565908,39092762:206943 -k1,340:13704276,39092762:206943 -k1,340:14124203,39092762:206935 -k1,340:15423631,39092762:206943 -k1,340:18577073,39092762:206943 -k1,340:20638685,39092762:206943 -k1,340:21654998,39092762:206943 -k1,340:23699571,39092762:206943 -k1,340:25097959,39092762:206943 -k1,340:27656989,39092762:206943 -k1,340:29055377,39092762:206943 -k1,340:29913748,39092762:206943 -k1,340:32583029,39092762:0 -) -(1,341:6630773,39934250:25952256,513147,102891 -g1,340:7849087,39934250 -g1,340:9398358,39934250 -g1,340:10256879,39934250 -g1,340:11952295,39934250 -g1,340:15400799,39934250 -g1,340:16619113,39934250 -g1,340:18539317,39934250 -g1,340:20088588,39934250 -k1,341:32583029,39934250:10340928 -g1,341:32583029,39934250 -) -(1,343:6630773,40775738:25952256,513147,134348 -h1,342:6630773,40775738:983040,0,0 -k1,342:8437894,40775738:196246 -k1,342:9653226,40775738:196247 -k1,342:12611815,40775738:196246 -k1,342:15928230,40775738:196246 -k1,342:16337466,40775738:196244 -k1,342:17626197,40775738:196246 -k1,342:18841529,40775738:196247 -k1,342:21727373,40775738:196246 -(1,342:21727373,40775738:0,452978,115847 -r1,350:24195910,40775738:2468537,568825,115847 -k1,342:21727373,40775738:-2468537 -) -(1,342:21727373,40775738:2468537,452978,115847 -k1,342:21727373,40775738:3277 -h1,342:24192633,40775738:0,411205,112570 -) -k1,342:24565826,40775738:196246 -(1,342:24565826,40775738:0,414482,115847 -r1,350:28441210,40775738:3875384,530329,115847 -k1,342:24565826,40775738:-3875384 -) -(1,342:24565826,40775738:3875384,414482,115847 -k1,342:24565826,40775738:3277 -h1,342:28437933,40775738:0,411205,112570 -) -k1,342:28811127,40775738:196247 -(1,342:28811127,40775738:0,414482,115847 -r1,350:30927952,40775738:2116825,530329,115847 -k1,342:28811127,40775738:-2116825 -) -(1,342:28811127,40775738:2116825,414482,115847 -k1,342:28811127,40775738:3277 -h1,342:30924675,40775738:0,411205,112570 -) -k1,342:31297868,40775738:196246 -k1,342:32583029,40775738:0 -) -(1,343:6630773,41617226:25952256,505283,134348 -k1,342:7480669,41617226:163734 -k1,342:9951269,41617226:163733 -k1,342:14178890,41617226:163734 -k1,342:17517188,41617226:163734 -k1,342:18858603,41617226:163733 -k1,342:20563744,41617226:163734 -k1,342:22607050,41617226:163734 -k1,342:23948466,41617226:163734 -k1,342:25653606,41617226:163733 -k1,342:26266882,41617226:163699 -k1,342:29700206,41617226:163733 -k1,342:31041622,41617226:163734 -k1,342:32583029,41617226:0 -) -(1,343:6630773,42458714:25952256,475791,102891 -g1,342:7279579,42458714 -g1,342:9422605,42458714 -k1,343:32583028,42458714:22048932 -g1,343:32583028,42458714 -) -] -(1,350:32583029,45706769:0,0,0 -g1,350:32583029,45706769 -) -) -] -(1,350:6630773,47279633:25952256,0,0 -h1,350:6630773,47279633:25952256,0,0 -) -] -(1,350:4262630,4025873:0,0,0 -[1,350:-473656,4025873:0,0,0 -(1,350:-473656,-710413:0,0,0 -(1,350:-473656,-710413:0,0,0 -g1,350:-473656,-710413 -) -g1,350:-473656,-710413 -) -] -) -] -!39282 -}19 -!11 -{20 -[1,364:4262630,47279633:28320399,43253760,0 -(1,364:4262630,4025873:0,0,0 -[1,364:-473656,4025873:0,0,0 -(1,364:-473656,-710413:0,0,0 -(1,364:-473656,-644877:0,0,0 -k1,364:-473656,-644877:-65536 ) -(1,364:-473656,4736287:0,0,0 -k1,364:-473656,4736287:5209943 +] +[1,441:3078558,4812305:0,0,0 +(1,441:3078558,2439708:0,1703936,0 +g1,441:29030814,2439708 +g1,441:36135244,2439708 +(1,412:36135244,2439708:1720320,1703936,0 +(1,412:36135244,2439708:16384,1703936,0 +[1,412:36135244,2439708:25952256,1703936,0 +(1,412:36135244,1915420:25952256,1179648,0 +(1,412:36135244,1915420:16384,1179648,0 +r1,441:36151628,1915420:16384,1179648,0 ) -g1,364:-473656,-710413 +k1,412:62087500,1915420:25935872 +g1,412:62087500,1915420 ) ] ) -[1,364:6630773,47279633:25952256,43253760,0 -[1,364:6630773,4812305:25952256,786432,0 -(1,364:6630773,4812305:25952256,505283,134348 -(1,364:6630773,4812305:25952256,505283,134348 -g1,364:3078558,4812305 -[1,364:3078558,4812305:0,0,0 -(1,364:3078558,2439708:0,1703936,0 -k1,364:1358238,2439708:-1720320 -(1,223:1358238,2439708:1720320,1703936,0 -(1,223:1358238,2439708:1179648,16384,0 -r1,364:2537886,2439708:1179648,16384,0 +g1,412:36675916,2439708 +(1,412:36675916,2439708:1179648,16384,0 +r1,441:37855564,2439708:1179648,16384,0 +) +) +k1,441:3078556,2439708:-34777008 +) +] +[1,441:3078558,4812305:0,0,0 +(1,441:3078558,49800853:0,16384,2228224 +k1,441:1358238,49800853:-1720320 +(1,412:1358238,49800853:1720320,16384,2228224 +(1,412:1358238,49800853:1179648,16384,0 +r1,441:2537886,49800853:1179648,16384,0 ) -g1,223:3062174,2439708 -(1,223:3062174,2439708:16384,1703936,0 -[1,223:3062174,2439708:25952256,1703936,0 -(1,223:3062174,1915420:25952256,1179648,0 -(1,223:3062174,1915420:16384,1179648,0 -r1,364:3078558,1915420:16384,1179648,0 +g1,412:3062174,49800853 +(1,412:3062174,52029077:16384,1703936,0 +[1,412:3062174,52029077:25952256,1703936,0 +(1,412:3062174,51504789:25952256,1179648,0 +(1,412:3062174,51504789:16384,1179648,0 +r1,441:3078558,51504789:16384,1179648,0 ) -k1,223:29014430,1915420:25935872 -g1,223:29014430,1915420 +k1,412:29014430,51504789:25935872 +g1,412:29014430,51504789 ) ] ) ) ) ] -[1,364:3078558,4812305:0,0,0 -(1,364:3078558,2439708:0,1703936,0 -g1,364:29030814,2439708 -g1,364:36135244,2439708 -(1,223:36135244,2439708:1720320,1703936,0 -(1,223:36135244,2439708:16384,1703936,0 -[1,223:36135244,2439708:25952256,1703936,0 -(1,223:36135244,1915420:25952256,1179648,0 -(1,223:36135244,1915420:16384,1179648,0 -r1,364:36151628,1915420:16384,1179648,0 +[1,441:3078558,4812305:0,0,0 +(1,441:3078558,49800853:0,16384,2228224 +g1,441:29030814,49800853 +g1,441:36135244,49800853 +(1,412:36135244,49800853:1720320,16384,2228224 +(1,412:36135244,52029077:16384,1703936,0 +[1,412:36135244,52029077:25952256,1703936,0 +(1,412:36135244,51504789:25952256,1179648,0 +(1,412:36135244,51504789:16384,1179648,0 +r1,441:36151628,51504789:16384,1179648,0 ) -k1,223:62087500,1915420:25935872 -g1,223:62087500,1915420 +k1,412:62087500,51504789:25935872 +g1,412:62087500,51504789 ) ] ) -g1,223:36675916,2439708 -(1,223:36675916,2439708:1179648,16384,0 -r1,364:37855564,2439708:1179648,16384,0 +g1,412:36675916,49800853 +(1,412:36675916,49800853:1179648,16384,0 +r1,441:37855564,49800853:1179648,16384,0 ) ) -k1,364:3078556,2439708:-34777008 +k1,441:3078556,49800853:-34777008 ) ] -[1,364:3078558,4812305:0,0,0 -(1,364:3078558,49800853:0,16384,2228224 -k1,364:1358238,49800853:-1720320 -(1,223:1358238,49800853:1720320,16384,2228224 -(1,223:1358238,49800853:1179648,16384,0 -r1,364:2537886,49800853:1179648,16384,0 +g1,441:6630773,4812305 +k1,441:21916392,4812305:14488701 +g1,441:22703479,4812305 +g1,441:23888369,4812305 +g1,441:27214321,4812305 +g1,441:28624000,4812305 +g1,441:29808890,4812305 +) +) +] +[1,441:6630773,45706769:25952256,40108032,0 +(1,441:6630773,45706769:25952256,40108032,0 +(1,441:6630773,45706769:0,0,0 +g1,441:6630773,45706769 +) +[1,441:6630773,45706769:25952256,40108032,0 +(1,428:6630773,6254097:25952256,32768,229376 +(1,428:6630773,6254097:0,32768,229376 +(1,428:6630773,6254097:5505024,32768,229376 +r1,441:12135797,6254097:5505024,262144,229376 +) +k1,428:6630773,6254097:-5505024 +) +(1,428:6630773,6254097:25952256,32768,0 +r1,441:32583029,6254097:25952256,32768,0 +) +) +(1,428:6630773,7885949:25952256,606339,9436 +(1,428:6630773,7885949:1974731,582746,0 +g1,428:6630773,7885949 +g1,428:8605504,7885949 +) +g1,428:10859418,7885949 +g1,428:11772466,7885949 +k1,428:32583028,7885949:19870776 +g1,428:32583028,7885949 +) +(1,430:6630773,9216335:25952256,555811,147783 +(1,430:6630773,9216335:2450326,534184,0 +g1,430:6630773,9216335 +g1,430:9081099,9216335 +) +g1,430:9825064,9216335 +g1,430:10828552,9216335 +g1,430:11454290,9216335 +k1,430:32583029,9216335:17881102 +g1,430:32583029,9216335 +) +(1,433:6630773,10474631:25952256,513147,134348 +k1,432:7262797,10474631:217181 +k1,432:8011492,10474631:217198 +k1,432:8584551,10474631:217199 +k1,432:11878010,10474631:217199 +k1,432:14937505,10474631:217199 +k1,432:18011417,10474631:217198 +k1,432:19176267,10474631:217199 +k1,432:20782829,10474631:217199 +k1,432:23554621,10474631:217199 +k1,432:24963265,10474631:217199 +k1,432:26569826,10474631:217198 +k1,432:31039656,10474631:217199 +k1,433:32583029,10474631:0 +) +(1,433:6630773,11339711:25952256,513147,134348 +k1,432:8330952,11339711:186297 +k1,432:9133287,11339711:186297 +k1,432:11950855,11339711:186297 +k1,432:12788580,11339711:186297 +k1,432:14667017,11339711:186297 +k1,432:16555284,11339711:186297 +k1,432:19562906,11339711:186297 +k1,432:23095470,11339711:186296 +k1,432:23739864,11339711:186297 +k1,432:24631328,11339711:186297 +k1,432:26385246,11339711:186297 +k1,432:27590628,11339711:186297 +k1,432:29465132,11339711:186297 +k1,432:30310721,11339711:186297 +k1,432:31923737,11339711:186297 +k1,432:32583029,11339711:0 +) +(1,433:6630773,12204791:25952256,513147,134348 +k1,432:9859142,12204791:152109 +k1,432:14537167,12204791:152109 +k1,432:15045136,12204791:152109 +k1,432:18122772,12204791:152109 +k1,432:22230634,12204791:152109 +k1,432:22914240,12204791:152109 +k1,432:24132620,12204791:152109 +k1,432:26756747,12204791:152109 +k1,432:28040663,12204791:152109 +k1,432:31402070,12204791:152109 +k1,433:32583029,12204791:0 +) +(1,433:6630773,13069871:25952256,513147,134348 +k1,432:8312209,13069871:200322 +k1,432:9140365,13069871:200321 +k1,432:11042657,13069871:200322 +k1,432:13371588,13069871:200322 +k1,432:14381279,13069871:200321 +k1,432:18652697,13069871:200322 +k1,432:22257614,13069871:200322 +k1,432:23140820,13069871:200321 +k1,432:24730505,13069871:200322 +k1,432:26647215,13069871:200322 +k1,432:27839096,13069871:200321 +k1,432:30316794,13069871:200322 +k1,433:32583029,13069871:0 +) +(1,433:6630773,13934951:25952256,513147,134348 +k1,432:8255959,13934951:258760 +k1,432:10489676,13934951:259117 +k1,432:10961368,13934951:258700 +k1,432:13998855,13934951:258760 +k1,432:16040850,13934951:258760 +k1,432:16958902,13934951:258760 +k1,432:18006060,13934951:258760 +k1,432:20685065,13934951:258760 +k1,432:21595252,13934951:258759 +k1,432:22873097,13934951:258760 +k1,432:24342962,13934951:258760 +k1,432:25886228,13934951:258760 +k1,432:26933386,13934951:258760 +k1,432:29280778,13934951:258760 +k1,432:32227169,13934951:258760 +k1,432:32583029,13934951:0 +) +(1,433:6630773,14800031:25952256,505283,134348 +k1,432:8169559,14800031:184812 +k1,432:9938377,14800031:184813 +k1,432:12536225,14800031:184812 +k1,432:15356241,14800031:184813 +k1,432:18846034,14800031:184812 +k1,432:21032972,14800031:184813 +k1,432:22409229,14800031:184812 +k1,432:25919994,14800031:184813 +k1,432:26519635,14800031:184798 +k1,432:28633173,14800031:184813 +k1,432:29430747,14800031:184812 +k1,432:32583029,14800031:0 +) +(1,433:6630773,15665111:25952256,513147,126483 +k1,432:9022884,15665111:226801 +k1,432:9901114,15665111:226802 +k1,432:10916313,15665111:226801 +k1,432:15032020,15665111:226801 +k1,432:15871583,15665111:226801 +k1,432:17117470,15665111:226802 +k1,432:18659579,15665111:226801 +k1,432:19545672,15665111:226801 +k1,432:21148075,15665111:226802 +k1,432:21730736,15665111:226801 +k1,432:24988577,15665111:226801 +k1,432:26475635,15665111:226801 +k1,432:27361729,15665111:226802 +k1,432:30893511,15665111:226801 +k1,432:32583029,15665111:0 +) +(1,433:6630773,16530191:25952256,513147,126483 +k1,432:8838502,16530191:205604 +k1,432:9575603,16530191:205604 +k1,432:12344976,16530191:205605 +k1,432:13312108,16530191:205604 +k1,432:16329207,16530191:205604 +k1,432:21360882,16530191:205604 +k1,432:22225778,16530191:205604 +k1,432:25834011,16530191:205604 +k1,432:27231061,16530191:205605 +k1,432:29963078,16530191:205604 +k1,432:31116333,16530191:205604 +k1,432:32583029,16530191:0 +) +(1,433:6630773,17395271:25952256,513147,134348 +k1,432:11672094,17395271:197555 +k1,432:13061093,17395271:197554 +k1,432:16515132,17395271:197555 +k1,432:20374838,17395271:197554 +k1,432:21223821,17395271:197555 +k1,432:25947291,17395271:197554 +k1,432:27341533,17395271:197555 +k1,432:29192560,17395271:197554 +k1,432:31044899,17395271:197555 +k1,433:32583029,17395271:0 +) +(1,433:6630773,18260351:25952256,513147,126483 +g1,432:8668287,18260351 +g1,432:9971798,18260351 +g1,432:10918793,18260351 +g1,432:12403838,18260351 +g1,432:14403996,18260351 +g1,432:17356392,18260351 +g1,432:18317149,18260351 +g1,432:19897222,18260351 +g1,432:21592638,18260351 +g1,432:24078418,18260351 +g1,432:24893685,18260351 +k1,433:32583029,18260351:7100831 +g1,433:32583029,18260351 +) +(1,435:6630773,19125431:25952256,513147,134348 +h1,434:6630773,19125431:983040,0,0 +k1,434:8414867,19125431:173219 +k1,434:9607170,19125431:173218 +k1,434:11147470,19125431:173219 +k1,434:11979980,19125431:173218 +k1,434:15325797,19125431:173219 +k1,434:16645241,19125431:173219 +k1,434:18275324,19125431:173218 +k1,434:19075722,19125431:173219 +k1,434:21193393,19125431:173218 +k1,434:22558057,19125431:173219 +k1,434:25772121,19125431:173193 +k1,434:28616586,19125431:173218 +k1,434:31548871,19125431:173219 +k1,435:32583029,19125431:0 +) +(1,435:6630773,19990511:25952256,513147,126483 +k1,434:11435945,19990511:239279 +k1,434:13175998,19990511:239279 +k1,434:16384713,19990511:239279 +k1,434:19765133,19990511:239279 +k1,434:21195858,19990511:239280 +k1,434:25396788,19990511:239279 +k1,434:26705615,19990511:239279 +k1,434:28925392,19990511:239279 +k1,434:29823963,19990511:239279 +k1,434:32583029,19990511:0 +) +(1,435:6630773,20855591:25952256,505283,134348 +k1,434:8193545,20855591:278266 +k1,434:11283305,20855591:278265 +k1,434:14633899,20855591:278266 +k1,434:17591277,20855591:278266 +k1,434:18485581,20855591:278266 +k1,434:20460573,20855591:278265 +k1,434:23911437,20855591:278266 +k1,434:25457169,20855591:278266 +k1,434:28427653,20855591:278265 +k1,434:30130016,20855591:278266 +k1,435:32583029,20855591:0 +) +(1,435:6630773,21720671:25952256,513147,126483 +k1,434:8427770,21720671:199229 +k1,434:9574651,21720671:199230 +k1,434:12850140,21720671:199229 +k1,434:16507704,21720671:199229 +k1,434:17358362,21720671:199230 +k1,434:19056399,21720671:199229 +k1,434:20005360,21720671:199229 +k1,434:20820627,21720671:199229 +k1,434:23685862,21720671:199230 +k1,434:24536519,21720671:199229 +k1,434:27498091,21720671:199229 +k1,434:30272886,21720671:199230 +k1,434:31131407,21720671:199229 +k1,434:32583029,21720671:0 +) +(1,435:6630773,22585751:25952256,513147,134348 +k1,434:9671352,22585751:198283 +k1,434:13034368,22585751:198282 +k1,434:14800272,22585751:198283 +k1,434:17760897,22585751:198282 +k1,434:21545310,22585751:198283 +k1,434:22986155,22585751:198282 +k1,434:25848477,22585751:198283 +k1,434:26706051,22585751:198282 +k1,434:31012131,22585751:198283 +k1,435:32583029,22585751:0 +) +(1,435:6630773,23450831:25952256,513147,126483 +k1,434:8867910,23450831:247464 +k1,434:11877717,23450831:247464 +k1,434:17512240,23450831:247464 +k1,434:18418996,23450831:247464 +k1,434:19685545,23450831:247464 +k1,434:21586481,23450831:247463 +k1,434:24677552,23450831:247464 +k1,434:26261950,23450831:247464 +k1,434:28158300,23450831:247464 +k1,434:30692971,23450831:247464 +k1,434:32583029,23450831:0 +) +(1,435:6630773,24315911:25952256,513147,7863 +g1,434:11123266,24315911 +g1,434:12513940,24315911 +g1,434:16176747,24315911 +k1,435:32583029,24315911:12715950 +g1,435:32583029,24315911 +) +(1,437:6630773,25180991:25952256,513147,134348 +h1,436:6630773,25180991:983040,0,0 +k1,436:9442197,25180991:283045 +k1,436:11861060,25180991:283045 +k1,436:13824448,25180991:283045 +k1,436:14774649,25180991:283045 +k1,436:15472453,25180991:282961 +k1,436:16441660,25180991:283045 +k1,436:17080565,25180991:283045 +k1,436:20439870,25180991:283045 +k1,436:23638612,25180991:283045 +k1,436:26123666,25180991:283044 +k1,436:27058139,25180991:283045 +k1,436:28499777,25180991:282961 +k1,436:29465707,25180991:283045 +k1,436:31353728,25180991:283045 +k1,436:32051532,25180991:282961 +k1,436:32583029,25180991:0 +) +(1,437:6630773,26046071:25952256,513147,134348 +k1,436:9007763,26046071:224788 +k1,436:9588412,26046071:224789 +k1,436:12889460,26046071:224788 +k1,436:16867496,26046071:224789 +k1,436:18742481,26046071:224788 +k1,436:19626562,26046071:224789 +k1,436:23265776,26046071:224788 +k1,436:24562734,26046071:224789 +k1,436:25245619,26046071:224788 +k1,436:26001905,26046071:224789 +k1,436:27512509,26046071:224788 +k1,436:28093158,26046071:224789 +k1,436:31394206,26046071:224788 +k1,437:32583029,26046071:0 +) +(1,437:6630773,26911151:25952256,513147,134348 +k1,436:8910119,26911151:239210 +k1,436:13350841,26911151:239209 +k1,436:14206089,26911151:239210 +k1,436:15464383,26911151:239209 +k1,436:16118396,26911151:239170 +k1,436:19273302,26911151:239209 +k1,436:20257001,26911151:239210 +k1,436:21515296,26911151:239210 +k1,436:24581728,26911151:239209 +k1,436:28149512,26911151:239210 +k1,436:29040149,26911151:239209 +k1,436:30881059,26911151:239210 +k1,436:32583029,26911151:0 +) +(1,437:6630773,27776231:25952256,513147,134348 +k1,436:9902784,27776231:195751 +k1,436:13444803,27776231:195751 +k1,436:14843796,27776231:195752 +k1,436:18225907,27776231:195751 +k1,436:18953155,27776231:195751 +k1,436:20215177,27776231:195751 +k1,436:23620226,27776231:195751 +k1,436:24502140,27776231:195752 +k1,436:25716976,27776231:195751 +k1,436:26327566,27776231:195747 +k1,436:29265344,27776231:195752 +k1,436:29992592,27776231:195751 +k1,436:31207428,27776231:195751 +k1,436:32583029,27776231:0 +) +(1,437:6630773,28641311:25952256,513147,134348 +g1,436:8886522,28641311 +g1,436:10598977,28641311 +g1,436:15854964,28641311 +g1,436:16713485,28641311 +g1,436:17931799,28641311 +g1,436:18545871,28641311 +k1,437:32583029,28641311:11021191 +g1,437:32583029,28641311 +) +(1,439:6630773,29506391:25952256,513147,134348 +h1,438:6630773,29506391:983040,0,0 +k1,438:8328454,29506391:299798 +k1,438:10884757,29506391:299898 +k1,438:11870818,29506391:299899 +k1,438:12526576,29506391:299898 +k1,438:14910520,29506391:299899 +k1,438:20267177,29506391:299899 +k1,438:21226367,29506391:299898 +k1,438:22545351,29506391:299899 +k1,438:24279177,29506391:299898 +k1,438:27504603,29506391:299899 +k1,438:29087697,29506391:299899 +k1,438:29740733,29506391:299797 +k1,438:32583029,29506391:0 +) +(1,439:6630773,30371471:25952256,505283,134348 +k1,438:9181889,30371471:235729 +k1,438:10609063,30371471:235729 +k1,438:14057367,30371471:235729 +k1,438:16060748,30371471:235875 +k1,438:18404770,30371471:235729 +k1,438:19244742,30371471:235730 +k1,438:20215203,30371471:235802 +k1,438:22425751,30371471:235948 +k1,438:24444715,30371471:235729 +k1,438:27710829,30371471:235729 +k1,438:28473467,30371471:235729 +k1,438:31970267,30371471:235729 +k1,438:32583029,30371471:0 +) +(1,439:6630773,31236551:25952256,513147,134348 +k1,438:7930617,31236551:143134 +k1,438:9525374,31236551:143135 +k1,438:10284546,31236551:143134 +k1,438:11446766,31236551:143135 +k1,438:13598578,31236551:143134 +k1,438:16592529,31236551:143135 +k1,438:17091523,31236551:143134 +k1,438:18953667,31236551:143135 +k1,438:20334776,31236551:143134 +k1,438:21137202,31236551:143134 +k1,438:23897845,31236551:143135 +k1,438:25107250,31236551:143134 +k1,438:26639748,31236551:143135 +k1,438:29657291,31236551:143134 +k1,438:30153609,31236551:143079 +k1,438:32583029,31236551:0 +) +(1,439:6630773,32101631:25952256,505283,134348 +k1,438:8058980,32101631:160741 +k1,438:10077667,32101631:160741 +k1,438:12553795,32101631:160741 +k1,438:13318779,32101631:160742 +k1,438:14214256,32101631:160818 +k1,438:16349827,32101631:160971 +k1,438:18368514,32101631:160741 +k1,438:19736428,32101631:160741 +k1,438:22681138,32101631:160741 +k1,438:23528042,32101631:160742 +k1,438:24044643,32101631:160741 +k1,438:27904891,32101631:160741 +k1,438:30981329,32101631:160741 +k1,438:32583029,32101631:0 +) +(1,439:6630773,32966711:25952256,513147,126483 +k1,438:9402351,32966711:216985 +k1,438:11186958,32966711:216986 +k1,438:13588913,32966711:216985 +k1,438:15640906,32966711:216985 +k1,438:16272717,32966711:216968 +k1,438:18746107,32966711:216985 +k1,438:19649255,32966711:216986 +k1,438:20222100,32966711:216985 +k1,438:21937238,32966711:216985 +k1,438:24048870,32966711:216986 +k1,438:28580745,32966711:216985 +k1,439:32583029,32966711:0 +) +(1,439:6630773,33831791:25952256,513147,134348 +k1,438:8135994,33831791:237755 +k1,438:9040905,33831791:237755 +k1,438:9805570,33831791:237756 +k1,438:10990976,33831791:237755 +k1,438:12321216,33831791:237755 +k1,438:13175009,33831791:237755 +k1,438:16285208,33831791:237756 +k1,438:19784034,33831791:237755 +k1,438:20783317,33831791:237755 +k1,438:23153614,33831791:237755 +k1,438:26833320,33831791:237755 +k1,438:28262521,33831791:237756 +k1,438:30000395,33831791:237755 +k1,438:31970267,33831791:237755 +k1,438:32583029,33831791:0 +) +(1,439:6630773,34696871:25952256,513147,126483 +k1,438:7867368,34696871:217510 +k1,438:11314492,34696871:217510 +k1,438:12191294,34696871:217510 +k1,438:15607616,34696871:217510 +k1,438:16441164,34696871:217510 +k1,438:18019201,34696871:217510 +k1,438:20751327,34696871:217510 +k1,438:22908048,34696871:217510 +k1,438:24317003,34696871:217510 +k1,438:27976464,34696871:217510 +k1,438:30168683,34696871:217619 +k1,439:32583029,34696871:0 +) +(1,439:6630773,35561951:25952256,513147,134348 +k1,438:7447053,35561951:227767 +k1,438:8693905,35561951:227767 +k1,438:11837370,35561951:227768 +k1,438:16266650,35561951:227767 +k1,438:16850277,35561951:227767 +k1,438:19158157,35561951:227767 +k1,438:20045216,35561951:227767 +k1,438:21292068,35561951:227767 +k1,438:21873046,35561951:227739 +k1,438:25116780,35561951:227767 +k1,438:26541234,35561951:227767 +k1,438:27183816,35561951:227739 +k1,438:30153609,35561951:227767 +k1,438:32583029,35561951:0 +) +(1,439:6630773,36427031:25952256,513147,134348 +k1,438:8364803,36427031:241120 +k1,438:9981525,36427031:241121 +k1,438:13148172,36427031:241120 +k1,438:14522410,36427031:241120 +k1,438:18280192,36427031:241120 +k1,438:21156516,36427031:241121 +k1,438:21750833,36427031:241078 +k1,438:23183398,36427031:241120 +k1,438:23839319,36427031:241078 +k1,438:27249761,36427031:241121 +k1,438:29365211,36427031:241120 +k1,438:32583029,36427031:0 +) +(1,439:6630773,37292111:25952256,513147,134348 +k1,438:10396326,37292111:248891 +k1,438:11636777,37292111:248891 +k1,438:18531674,37292111:248891 +k1,438:19439857,37292111:248891 +k1,438:20374910,37292111:248891 +k1,438:23937301,37292111:248891 +k1,438:28958524,37292111:248891 +k1,438:29835250,37292111:248891 +k1,438:31734338,37292111:248891 +k1,439:32583029,37292111:0 +) +(1,439:6630773,38157191:25952256,505283,134348 +k1,438:8143098,38157191:159662 +k1,438:10058469,38157191:159661 +k1,438:10632935,38157191:159623 +k1,438:13619164,38157191:159662 +k1,438:15636771,38157191:159661 +k1,438:16412471,38157191:159662 +k1,438:20065202,38157191:159662 +k1,438:21421551,38157191:159662 +k1,438:21996016,38157191:159622 +k1,438:24997974,38157191:159662 +k1,438:25689133,38157191:159662 +k1,438:26915065,38157191:159661 +k1,438:31391584,38157191:159662 +k1,438:32583029,38157191:0 +) +(1,439:6630773,39022271:25952256,513147,134348 +k1,438:7595740,39022271:155597 +k1,438:9879946,39022271:155597 +k1,438:13117701,39022271:155597 +k1,438:13932590,39022271:155597 +k1,438:14876585,39022271:155597 +k1,438:17934772,39022271:155597 +k1,438:20095115,39022271:155597 +k1,438:24771386,39022271:155597 +k1,438:25946068,39022271:155597 +k1,438:26516464,39022271:155553 +k1,438:29514357,39022271:155597 +k1,438:30201451,39022271:155597 +k1,438:32583029,39022271:0 +) +(1,439:6630773,39887351:25952256,513147,134348 +g1,438:7591530,39887351 +g1,438:8809844,39887351 +g1,438:11768794,39887351 +g1,438:12627315,39887351 +g1,438:13614942,39887351 +g1,438:18870929,39887351 +g1,438:19686196,39887351 +g1,438:20904510,39887351 +g1,438:21518582,39887351 +k1,439:32583029,39887351:8148750 +g1,439:32583029,39887351 +) +(1,441:6630773,40752431:25952256,513147,134348 +h1,440:6630773,40752431:983040,0,0 +k1,440:9382508,40752431:134882 +k1,440:11563423,40752431:134881 +k1,440:12113084,40752431:134818 +k1,440:15010308,40752431:134881 +k1,440:16712811,40752431:134882 +k1,440:18443493,40752431:134881 +k1,440:19910722,40752431:134882 +k1,440:21330764,40752431:134881 +k1,440:21997143,40752431:134882 +k1,440:23416530,40752431:134881 +k1,440:23904587,40752431:134818 +k1,440:25246641,40752431:134881 +k1,440:28238237,40752431:134882 +k1,440:29940739,40752431:134881 +k1,440:31094706,40752431:134882 +k1,440:32583029,40752431:0 +) +(1,441:6630773,41617511:25952256,513147,134348 +k1,440:7569511,41617511:252576 +k1,440:8177946,41617511:252575 +k1,440:11506782,41617511:252576 +k1,440:16111603,41617511:252575 +k1,440:19380146,41617511:252576 +k1,440:21013566,41617511:252576 +k1,440:22603075,41617511:252575 +k1,440:24242393,41617511:252576 +k1,440:28533952,41617511:252575 +k1,440:29734179,41617511:252576 +k1,440:32583029,41617511:0 +) +(1,441:6630773,42482591:25952256,513147,134348 +k1,440:7982890,42482591:285846 +k1,440:10757138,42482591:285846 +k1,440:13563499,42482591:285846 +k1,440:14532230,42482591:285846 +k1,440:16940787,42482591:285846 +k1,440:17878062,42482591:285847 +k1,440:19778715,42482591:285846 +k1,440:22823627,42482591:285846 +k1,440:24057124,42482591:285846 +k1,440:25732333,42482591:285846 +k1,440:28746443,42482591:285846 +k1,440:31966991,42482591:285846 +k1,440:32583029,42482591:0 +) +(1,441:6630773,43347671:25952256,513147,134348 +k1,440:8863539,43347671:216879 +k1,440:9538514,43347671:216878 +k1,440:11801427,43347671:216879 +k1,440:12374165,43347671:216878 +k1,440:14142281,43347671:216879 +k1,440:17545520,43347671:216879 +k1,440:20292088,43347671:216878 +k1,440:20923792,43347671:216861 +k1,440:21672168,43347671:216879 +k1,440:23689976,43347671:216879 +k1,440:27296376,43347671:216878 +k1,440:28979951,43347671:216879 +k1,440:30932222,43347671:216878 +k1,440:32168186,43347671:216879 +k1,441:32583029,43347671:0 +) +(1,441:6630773,44212751:25952256,513147,134348 +k1,440:9648350,44212751:175281 +k1,440:10771282,44212751:175281 +k1,440:16003321,44212751:175281 +k1,440:17370047,44212751:175281 +k1,440:18306856,44212751:175281 +k1,440:20572080,44212751:175281 +k1,440:22314982,44212751:175281 +k1,440:22905083,44212751:175258 +k1,440:26106161,44212751:175281 +k1,440:27472887,44212751:175281 +k1,440:30296478,44212751:175281 +k1,440:32583029,44212751:0 +) +(1,441:6630773,45077831:25952256,505283,134348 +k1,440:7492928,45077831:246117 +k1,440:9441016,45077831:246118 +k1,440:12763393,45077831:246117 +k1,440:17361757,45077831:246118 +k1,440:20780472,45077831:246117 +k1,440:22520156,45077831:246118 +k1,440:23452435,45077831:246117 +k1,440:24325732,45077831:246118 +k1,440:26028714,45077831:246117 +k1,440:29489373,45077831:246118 +k1,440:31900144,45077831:246117 +k1,441:32583029,45077831:0 +) +] +(1,441:32583029,45706769:0,0,0 +g1,441:32583029,45706769 +) +) +] +(1,441:6630773,47279633:25952256,0,0 +h1,441:6630773,47279633:25952256,0,0 +) +] +(1,441:4262630,4025873:0,0,0 +[1,441:-473656,4025873:0,0,0 +(1,441:-473656,-710413:0,0,0 +(1,441:-473656,-710413:0,0,0 +g1,441:-473656,-710413 +) +g1,441:-473656,-710413 +) +] +) +] +!22467 +}25 +Input:206:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:207:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:208:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:209:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!383 +{26 +[1,464:4262630,47279633:28320399,43253760,0 +(1,464:4262630,4025873:0,0,0 +[1,464:-473656,4025873:0,0,0 +(1,464:-473656,-710413:0,0,0 +(1,464:-473656,-644877:0,0,0 +k1,464:-473656,-644877:-65536 ) -g1,223:3062174,49800853 -(1,223:3062174,52029077:16384,1703936,0 -[1,223:3062174,52029077:25952256,1703936,0 -(1,223:3062174,51504789:25952256,1179648,0 -(1,223:3062174,51504789:16384,1179648,0 -r1,364:3078558,51504789:16384,1179648,0 +(1,464:-473656,4736287:0,0,0 +k1,464:-473656,4736287:5209943 ) -k1,223:29014430,51504789:25935872 -g1,223:29014430,51504789 +g1,464:-473656,-710413 ) ] ) +[1,464:6630773,47279633:25952256,43253760,0 +[1,464:6630773,4812305:25952256,786432,0 +(1,464:6630773,4812305:25952256,505283,7863 +(1,464:6630773,4812305:25952256,505283,7863 +g1,464:3078558,4812305 +[1,464:3078558,4812305:0,0,0 +(1,464:3078558,2439708:0,1703936,0 +k1,464:1358238,2439708:-1720320 +(1,412:1358238,2439708:1720320,1703936,0 +(1,412:1358238,2439708:1179648,16384,0 +r1,464:2537886,2439708:1179648,16384,0 ) +g1,412:3062174,2439708 +(1,412:3062174,2439708:16384,1703936,0 +[1,412:3062174,2439708:25952256,1703936,0 +(1,412:3062174,1915420:25952256,1179648,0 +(1,412:3062174,1915420:16384,1179648,0 +r1,464:3078558,1915420:16384,1179648,0 +) +k1,412:29014430,1915420:25935872 +g1,412:29014430,1915420 ) ] -[1,364:3078558,4812305:0,0,0 -(1,364:3078558,49800853:0,16384,2228224 -g1,364:29030814,49800853 -g1,364:36135244,49800853 -(1,223:36135244,49800853:1720320,16384,2228224 -(1,223:36135244,52029077:16384,1703936,0 -[1,223:36135244,52029077:25952256,1703936,0 -(1,223:36135244,51504789:25952256,1179648,0 -(1,223:36135244,51504789:16384,1179648,0 -r1,364:36151628,51504789:16384,1179648,0 ) -k1,223:62087500,51504789:25935872 -g1,223:62087500,51504789 +) ) ] +[1,464:3078558,4812305:0,0,0 +(1,464:3078558,2439708:0,1703936,0 +g1,464:29030814,2439708 +g1,464:36135244,2439708 +(1,412:36135244,2439708:1720320,1703936,0 +(1,412:36135244,2439708:16384,1703936,0 +[1,412:36135244,2439708:25952256,1703936,0 +(1,412:36135244,1915420:25952256,1179648,0 +(1,412:36135244,1915420:16384,1179648,0 +r1,464:36151628,1915420:16384,1179648,0 ) -g1,223:36675916,49800853 -(1,223:36675916,49800853:1179648,16384,0 -r1,364:37855564,49800853:1179648,16384,0 +k1,412:62087500,1915420:25935872 +g1,412:62087500,1915420 ) +] +) +g1,412:36675916,2439708 +(1,412:36675916,2439708:1179648,16384,0 +r1,464:37855564,2439708:1179648,16384,0 ) -k1,364:3078556,49800853:-34777008 +) +k1,464:3078556,2439708:-34777008 ) ] -g1,364:6630773,4812305 -g1,364:6630773,4812305 -g1,364:9478312,4812305 -g1,364:12241309,4812305 -g1,364:13040192,4812305 -g1,364:16139389,4812305 -k1,364:32184570,4812305:16045181 -) -) -] -[1,364:6630773,45706769:25952256,40108032,0 -(1,364:6630773,45706769:25952256,40108032,0 -(1,364:6630773,45706769:0,0,0 -g1,364:6630773,45706769 -) -[1,364:6630773,45706769:25952256,40108032,0 -(1,344:6630773,6254097:25952256,32768,229376 -(1,344:6630773,6254097:0,32768,229376 -(1,344:6630773,6254097:5505024,32768,229376 -r1,364:12135797,6254097:5505024,262144,229376 -) -k1,344:6630773,6254097:-5505024 -) -(1,344:6630773,6254097:25952256,32768,0 -r1,364:32583029,6254097:25952256,32768,0 -) -) -(1,344:6630773,7858425:25952256,606339,161218 -(1,344:6630773,7858425:1974731,575668,0 -g1,344:6630773,7858425 -g1,344:8605504,7858425 -) -g1,344:12245898,7858425 -g1,344:15764395,7858425 -g1,344:16800913,7858425 -k1,344:32583029,7858425:12047350 -g1,344:32583029,7858425 -) -(1,346:6630773,9163253:25952256,555811,139132 -(1,346:6630773,9163253:2450326,527696,0 -g1,346:6630773,9163253 -g1,346:9081099,9163253 -) -g1,346:11147187,9163253 -g1,346:12511123,9163253 -g1,346:13893081,9163253 -k1,346:32583029,9163253:15966403 -g1,346:32583029,9163253 -) -(1,349:6630773,10397957:25952256,513147,134348 -k1,348:8221029,10397957:154362 -k1,348:9034684,10397957:154363 -k1,348:9955162,10397957:154362 -k1,348:10924792,10397957:154362 -k1,348:12145426,10397957:154363 -k1,348:14199677,10397957:154362 -k1,348:16078947,10397957:154362 -k1,348:20404676,10397957:154362 -k1,348:22025735,10397957:154363 -k1,348:23924010,10397957:154362 -k1,348:25472323,10397957:154362 -k1,348:28182590,10397957:154363 -k1,348:28996244,10397957:154362 -k1,348:32583029,10397957:0 -) -(1,349:6630773,11239445:25952256,513147,134348 -k1,348:7836718,11239445:227492 -k1,348:9792394,11239445:227492 -k1,348:11413836,11239445:227491 -k1,348:14648120,11239445:227492 -k1,348:16443233,11239445:227492 -k1,348:18096133,11239445:227492 -k1,348:18975052,11239445:227491 -k1,348:20801622,11239445:227492 -k1,348:22220559,11239445:227492 -k1,348:23552333,11239445:227492 -k1,348:24897868,11239445:227491 -k1,348:26191631,11239445:227492 -k1,348:27078415,11239445:227492 -k1,348:28961346,11239445:227492 -k1,348:30136488,11239445:227491 -k1,348:30719840,11239445:227492 -k1,348:32583029,11239445:0 -) -(1,349:6630773,12080933:25952256,513147,126483 -g1,348:8210846,12080933 -g1,348:8941572,12080933 -g1,348:11593158,12080933 -g1,348:12983832,12080933 -g1,348:15887732,12080933 -g1,348:16738389,12080933 -g1,348:17703734,12080933 -g1,348:18562255,12080933 -k1,349:32583029,12080933:13101959 -g1,349:32583029,12080933 -) -(1,351:6630773,12922421:25952256,513147,134348 -h1,350:6630773,12922421:983040,0,0 -k1,350:8313205,12922421:229499 -k1,350:9074201,12922421:229499 -k1,350:12512998,12922421:229499 -k1,350:13393925,12922421:229499 -k1,350:15234953,12922421:229498 -k1,350:16794833,12922421:229499 -k1,350:17675760,12922421:229499 -k1,350:19171415,12922421:229499 -k1,350:21988931,12922421:229499 -k1,350:22904592,12922421:229499 -k1,350:24455952,12922421:229499 -k1,350:25344743,12922421:229499 -k1,350:26593326,12922421:229498 -k1,350:29140833,12922421:229499 -k1,350:30029624,12922421:229499 -k1,350:31994516,12922421:229499 -k1,350:32583029,12922421:0 -) -(1,351:6630773,13763909:25952256,513147,134348 -k1,350:8305568,13763909:238901 -k1,350:9203760,13763909:238900 -k1,350:10208777,13763909:238901 -k1,350:11604387,13763909:238900 -k1,350:12947570,13763909:238901 -k1,350:14598771,13763909:238900 -k1,350:15856757,13763909:238901 -k1,350:20921728,13763909:238900 -k1,350:21819921,13763909:238901 -k1,350:23077906,13763909:238900 -k1,350:26012303,13763909:238901 -k1,350:26934088,13763909:238900 -k1,350:29132515,13763909:238901 -k1,350:30655921,13763909:238900 -k1,350:32051532,13763909:238901 -k1,350:32583029,13763909:0 -) -(1,351:6630773,14605397:25952256,505283,134348 -k1,350:8729236,14605397:201851 -k1,350:9582515,14605397:201851 -k1,350:11050522,14605397:201851 -k1,350:13137843,14605397:201850 -k1,350:13955732,14605397:201851 -k1,350:15909360,14605397:201851 -k1,350:17808593,14605397:201851 -k1,350:19296260,14605397:201851 -k1,350:22166082,14605397:201851 -k1,350:23460418,14605397:201851 -k1,350:26827657,14605397:201850 -k1,350:27948323,14605397:201851 -k1,350:29538227,14605397:201851 -k1,350:31568532,14605397:201851 -k1,350:32583029,14605397:0 -) -(1,351:6630773,15446885:25952256,513147,134348 -k1,350:8129855,15446885:168701 -k1,350:8949983,15446885:168700 -k1,350:10211169,15446885:168701 -k1,350:13572783,15446885:168700 -k1,350:16767281,15446885:168701 -k1,350:17618866,15446885:168700 -k1,350:20251065,15446885:168701 -k1,350:21047601,15446885:168701 -k1,350:24021242,15446885:168700 -k1,350:25108758,15446885:168701 -k1,350:27643963,15446885:168700 -k1,350:28715750,15446885:168701 -k1,350:32583029,15446885:0 -) -(1,351:6630773,16288373:25952256,513147,126483 -k1,350:7430665,16288373:200238 -k1,350:8080478,16288373:200236 -k1,350:9472161,16288373:200238 -k1,350:11584739,16288373:200237 -k1,350:14454258,16288373:200238 -k1,350:16203112,16288373:200238 -k1,350:19429146,16288373:200237 -k1,350:20312269,16288373:200238 -k1,350:22666020,16288373:200238 -k1,350:26528409,16288373:200237 -k1,350:27380075,16288373:200238 -k1,350:28672797,16288373:200237 -k1,350:29820686,16288373:200238 -k1,350:32583029,16288373:0 -) -(1,351:6630773,17129861:25952256,505283,7863 -k1,351:32583029,17129861:24112660 -g1,351:32583029,17129861 -) -(1,353:6630773,17971349:25952256,505283,134348 -h1,352:6630773,17971349:983040,0,0 -k1,352:10436973,17971349:263979 -k1,352:11720037,17971349:263979 -k1,352:16810086,17971349:263978 -k1,352:18265510,17971349:263979 -k1,352:20441830,17971349:263979 -k1,352:21772080,17971349:263979 -k1,352:24165324,17971349:263979 -k1,352:26321326,17971349:263978 -k1,352:30058058,17971349:263979 -k1,352:31478747,17971349:263979 -k1,352:32583029,17971349:0 -) -(1,353:6630773,18812837:25952256,513147,134348 -k1,352:9282237,18812837:208282 -k1,352:11132850,18812837:208281 -k1,352:11992560,18812837:208282 -k1,352:13219926,18812837:208281 -k1,352:16094868,18812837:208282 -k1,352:17064677,18812837:208281 -k1,352:19010974,18812837:208282 -k1,352:20265211,18812837:208282 -k1,352:22965826,18812837:208281 -k1,352:24568059,18812837:208282 -k1,352:25132200,18812837:208281 -k1,352:26990679,18812837:208282 -k1,352:27858252,18812837:208281 -k1,352:29736391,18812837:208282 -k1,352:30630834,18812837:208281 -k1,352:31297213,18812837:208282 -k1,352:32583029,18812837:0 -) -(1,353:6630773,19654325:25952256,513147,134348 -k1,352:9549899,19654325:214455 -k1,352:11462392,19654325:214455 -k1,352:13934563,19654325:214456 -k1,352:14765056,19654325:214455 -k1,352:15335371,19654325:214455 -k1,352:17841620,19654325:214455 -k1,352:20898371,19654325:214455 -k1,352:22259051,19654325:214455 -k1,352:24958632,19654325:214456 -k1,352:25660659,19654325:214439 -k1,352:28116446,19654325:214456 -k1,352:30308122,19654325:214455 -k1,352:31877862,19654325:214455 -k1,352:32583029,19654325:0 -) -(1,353:6630773,20495813:25952256,513147,134348 -k1,352:8444763,20495813:223431 -k1,352:11045185,20495813:223431 -k1,352:11881378,20495813:223431 -k1,352:13123894,20495813:223431 -k1,352:14843512,20495813:223431 -k1,352:16460894,20495813:223431 -k1,352:19746822,20495813:223431 -k1,352:21830164,20495813:223430 -k1,352:23797508,20495813:223431 -k1,352:24680231,20495813:223431 -k1,352:25259522,20495813:223431 -k1,352:27420197,20495813:223431 -k1,352:28326513,20495813:223431 -k1,352:31900144,20495813:223431 -k1,352:32583029,20495813:0 -) -(1,353:6630773,21337301:25952256,505283,126483 -g1,352:8288833,21337301 -g1,352:9818443,21337301 -g1,352:11403758,21337301 -g1,352:11958847,21337301 -g1,352:13295781,21337301 -g1,352:14177895,21337301 -g1,352:14732984,21337301 -g1,352:16540467,21337301 -k1,353:32583029,21337301:14415303 -g1,353:32583029,21337301 -) -(1,355:6630773,22178789:25952256,513147,126483 -h1,354:6630773,22178789:983040,0,0 -k1,354:9144229,22178789:259018 -k1,354:10507530,22178789:259019 -k1,354:12052364,22178789:259018 -k1,354:13728926,22178789:259018 -k1,354:15375998,22178789:259019 -k1,354:16251054,22178789:259018 -k1,354:20063434,22178789:259018 -k1,354:22513321,22178789:259018 -k1,354:25085106,22178789:259019 -k1,354:26027009,22178789:259018 -k1,354:27853648,22178789:259018 -k1,354:29846750,22178789:259019 -k1,354:30788653,22178789:259018 -k1,354:32583029,22178789:0 -) -(1,355:6630773,23020277:25952256,513147,134348 -k1,354:9648505,23020277:187887 -k1,354:10314148,23020277:187886 -k1,354:13562566,23020277:187887 -k1,354:14366490,23020277:187886 -k1,354:16867143,23020277:187887 -k1,354:18002680,23020277:187886 -k1,354:20681590,23020277:187887 -k1,354:23964086,23020277:187886 -k1,354:25343418,23020277:187887 -k1,354:28119321,23020277:187886 -k1,354:29664459,23020277:187887 -k1,354:30503773,23020277:187886 -k1,354:32227169,23020277:187887 -k1,354:32583029,23020277:0 -) -(1,355:6630773,23861765:25952256,513147,126483 -g1,354:8807223,23861765 -g1,354:11437838,23861765 -g1,354:12793777,23861765 -g1,354:14097288,23861765 -g1,354:15911324,23861765 -g1,354:16466413,23861765 -g1,354:17948837,23861765 -g1,354:20912375,23861765 -g1,354:21727642,23861765 -g1,354:22282731,23861765 -k1,355:32583029,23861765:8144163 -g1,355:32583029,23861765 -) -(1,357:6630773,24703253:25952256,513147,134348 -h1,356:6630773,24703253:983040,0,0 -k1,356:9663998,24703253:266950 -k1,356:12991479,24703253:266950 -k1,356:14206079,24703253:266949 -k1,356:17234716,24703253:266950 -k1,356:19570638,24703253:266950 -k1,356:20785239,24703253:266950 -k1,356:23068076,24703253:266950 -k1,356:24017911,24703253:266950 -k1,356:26687411,24703253:266950 -k1,356:29040371,24703253:266949 -k1,356:30464031,24703253:266950 -k1,356:31835263,24703253:266950 -k1,356:32583029,24703253:0 -) -(1,357:6630773,25544741:25952256,513147,134348 -k1,356:10386368,25544741:225171 -k1,356:12005489,25544741:225170 -k1,356:14993003,25544741:225171 -k1,356:16786450,25544741:225170 -k1,356:17670913,25544741:225171 -k1,356:21870843,25544741:225171 -k1,356:23115098,25544741:225170 -k1,356:24993742,25544741:225171 -k1,356:27058508,25544741:225170 -k1,356:28181522,25544741:225171 -k1,356:29472963,25544741:225170 -k1,356:31379788,25544741:225171 -k1,356:32583029,25544741:0 -) -(1,357:6630773,26386229:25952256,505283,126483 -k1,356:7428390,26386229:146189 -k1,356:11070269,26386229:146189 -k1,356:12560601,26386229:146189 -k1,356:13322828,26386229:146189 -k1,356:15070717,26386229:146189 -k1,356:16914288,26386229:146189 -k1,356:17518574,26386229:146189 -k1,356:18797224,26386229:146188 -k1,356:20009684,26386229:146189 -k1,356:22281206,26386229:146189 -k1,356:24312866,26386229:146189 -k1,356:27443565,26386229:146189 -k1,356:28760227,26386229:146189 -k1,356:29998901,26386229:146189 -k1,356:30831252,26386229:146189 -k1,356:32583029,26386229:0 -) -(1,357:6630773,27227717:25952256,513147,134348 -k1,356:11239416,27227717:214454 -k1,356:12558152,27227717:214454 -k1,356:13520372,27227717:214454 -k1,356:15312277,27227717:214453 -k1,356:16142769,27227717:214454 -k1,356:16945736,27227717:214454 -k1,356:17846352,27227717:214454 -k1,356:18676844,27227717:214454 -k1,356:20023105,27227717:214454 -k1,356:23313818,27227717:214453 -k1,356:26544239,27227717:214454 -k1,356:27374731,27227717:214454 -k1,356:29820686,27227717:214454 -k1,356:32583029,27227717:0 -) -(1,357:6630773,28069205:25952256,513147,134348 -k1,356:8642778,28069205:270058 -k1,356:10111491,28069205:270059 -k1,356:13395550,28069205:270058 -k1,356:14684694,28069205:270059 -k1,356:16608225,28069205:270058 -k1,356:18894827,28069205:270059 -k1,356:20313731,28069205:270058 -k1,356:21602875,28069205:270059 -k1,356:25259834,28069205:270058 -k1,356:26814399,28069205:270059 -k1,356:28254930,28069205:270058 -k1,356:29791145,28069205:270059 -k1,356:31931601,28069205:270058 -k1,356:32583029,28069205:0 -) -(1,357:6630773,28910693:25952256,505283,7863 -k1,357:32583029,28910693:22113812 -g1,357:32583029,28910693 -) -(1,358:6630773,31001953:25952256,555811,139132 -(1,358:6630773,31001953:2450326,534184,0 -g1,358:6630773,31001953 -g1,358:9081099,31001953 -) -g1,358:10393851,31001953 -g1,358:13214718,31001953 -k1,358:32583029,31001953:17787386 -g1,358:32583029,31001953 -) -(1,361:6630773,32236657:25952256,513147,134348 -k1,360:8547148,32236657:191467 -k1,360:10698141,32236657:191467 -k1,360:13673578,32236657:191468 -k1,360:14481083,32236657:191467 -k1,360:16106478,32236657:191467 -k1,360:16712780,32236657:191459 -k1,360:17587133,32236657:191468 -k1,360:20619586,32236657:191467 -k1,360:21572581,32236657:191467 -k1,360:22534751,32236657:191467 -k1,360:23141054,32236657:191460 -k1,360:26404849,32236657:191467 -k1,360:29176468,32236657:191467 -k1,360:32583029,32236657:0 -) -(1,361:6630773,33078145:25952256,505283,134348 -k1,360:9760445,33078145:171377 -k1,360:12338303,33078145:171376 -k1,360:14106137,33078145:171377 -k1,360:14809010,33078145:171376 -k1,360:18951213,33078145:171377 -k1,360:19738627,33078145:171376 -k1,360:20828819,33078145:171377 -k1,360:22388249,33078145:171377 -k1,360:24979214,33078145:171376 -k1,360:28623344,33078145:171377 -k1,360:29150580,33078145:171376 -k1,360:31194976,33078145:171377 -k1,360:32583029,33078145:0 -) -(1,361:6630773,33919633:25952256,505283,134348 -k1,360:8372669,33919633:243743 -k1,360:12149458,33919633:243743 -k1,360:14624702,33919633:243743 -k1,360:15283243,33919633:243698 -k1,360:17990484,33919633:243743 -k1,360:19377830,33919633:243743 -k1,360:20997174,33919633:243743 -k1,360:22628969,33919633:243742 -k1,360:24701166,33919633:243743 -k1,360:25936469,33919633:243743 -k1,360:28309477,33919633:243743 -k1,360:31510860,33919633:243743 -k1,360:32583029,33919633:0 -) -(1,361:6630773,34761121:25952256,513147,126483 -k1,360:8187312,34761121:176351 -k1,360:9355224,34761121:176352 -k1,360:12883742,34761121:176351 -k1,360:16907056,34761121:176351 -k1,360:18477358,34761121:176351 -k1,360:19009570,34761121:176352 -k1,360:20627058,34761121:176351 -k1,360:22488340,34761121:176351 -k1,360:26448084,34761121:176351 -k1,360:27815881,34761121:176352 -k1,360:31297213,34761121:176351 -k1,360:32583029,34761121:0 -) -(1,361:6630773,35602609:25952256,513147,126483 -k1,360:7235431,35602609:248798 -k1,360:10039479,35602609:248799 -k1,360:14071670,35602609:248798 -k1,360:14948303,35602609:248798 -k1,360:16216187,35602609:248799 -k1,360:17832066,35602609:248798 -k1,360:18740157,35602609:248799 -k1,360:22188423,35602609:248798 -k1,360:25717953,35602609:248798 -k1,360:28208739,35602609:248799 -k1,360:29966176,35602609:248798 -k1,360:32583029,35602609:0 -) -(1,361:6630773,36444097:25952256,505283,134348 -k1,360:8022430,36444097:200212 -k1,360:11061663,36444097:200213 -k1,360:14664504,36444097:200212 -k1,360:15856276,36444097:200212 -k1,360:18185753,36444097:200212 -k1,360:21649659,36444097:200213 -k1,360:22536033,36444097:200212 -k1,360:24014852,36444097:200212 -k1,360:24901226,36444097:200212 -k1,360:26120524,36444097:200213 -k1,360:29099463,36444097:200212 -k1,360:31153689,36444097:200212 -k1,361:32583029,36444097:0 -) -(1,361:6630773,37285585:25952256,513147,134348 -k1,360:8036345,37285585:278353 -k1,360:8927460,37285585:278353 -k1,360:10224898,37285585:278353 -k1,360:12826503,37285585:278354 -k1,360:13764148,37285585:278353 -k1,360:15430554,37285585:278353 -k1,360:17711032,37285585:278353 -k1,360:20220886,37285585:278353 -k1,360:23490958,37285585:278353 -k1,360:24428603,37285585:278353 -k1,360:25726041,37285585:278353 -k1,360:27096880,37285585:278354 -k1,360:28034525,37285585:278353 -k1,360:29331963,37285585:278353 -k1,360:31900144,37285585:278353 -k1,360:32583029,37285585:0 -) -(1,361:6630773,38127073:25952256,513147,134348 -g1,360:9855799,38127073 -g1,360:11046588,38127073 -g1,360:13114248,38127073 -g1,360:14734298,38127073 -g1,360:15584955,38127073 -g1,360:17815145,38127073 -g1,360:18429217,38127073 -g1,360:20016499,38127073 -g1,360:20747225,38127073 -g1,360:24036477,38127073 -g1,360:24851744,38127073 -g1,360:27329660,38127073 -h1,360:28300248,38127073:0,0,0 -g1,360:28499477,38127073 -g1,360:29508076,38127073 -g1,360:31205458,38127073 -h1,360:32002376,38127073:0,0,0 -k1,361:32583029,38127073:406983 -g1,361:32583029,38127073 -) -(1,363:6630773,38968561:25952256,513147,134348 -h1,362:6630773,38968561:983040,0,0 -k1,362:8490361,38968561:248713 -k1,362:11405079,38968561:248713 -k1,362:12305220,38968561:248713 -k1,362:13941986,38968561:248713 -k1,362:16192824,38968561:248713 -k1,362:17360352,38968561:248713 -k1,362:21390492,38968561:248713 -k1,362:24307176,38968561:248713 -k1,362:26533111,38968561:248714 -k1,362:29478631,38968561:248713 -k1,362:30413506,38968561:248713 -k1,362:31900144,38968561:248663 -k1,362:32583029,38968561:0 -) -(1,363:6630773,39810049:25952256,513147,134349 -k1,362:8758756,39810049:259552 -k1,362:10505380,39810049:259612 -k1,362:12639322,39810049:259612 -k1,362:15595741,39810049:259612 -k1,362:16846913,39810049:259612 -k1,362:18392342,39810049:259613 -k1,362:21435923,39810049:259612 -k1,362:22308297,39810049:259612 -$1,362:22308297,39810049 -k1,362:24284207,39810049:0 -k1,362:24679389,39810049:0 -k1,362:25074571,39810049:0 -k1,362:25469753,39810049:0 -k1,362:28236027,39810049:0 -k1,362:28631209,39810049:0 -k1,362:31002301,39810049:0 -k1,362:31397483,39810049:0 -k1,362:32187847,39810049:0 -k1,363:32583029,39810049:0 -) -(1,363:6630773,40651537:25952256,513147,134348 -(1,362:7421137,40749851:32768,0,0 -) -$1,362:10615361,40651537 -k1,362:10773303,40651537:157942 -k1,362:13488459,40651537:157941 -k1,362:14594052,40651537:157942 -k1,362:16622391,40651537:157941 -k1,362:19182883,40651537:157942 -k1,362:19956862,40651537:157941 -k1,362:21383581,40651537:157942 -k1,362:24615817,40651537:157942 -k1,362:25401593,40651537:157941 -k1,362:28225540,40651537:157942 -k1,362:29034909,40651537:157941 -k1,362:30580904,40651537:157942 -k1,362:32583029,40651537:0 -) -(1,363:6630773,41493025:25952256,505283,134348 -k1,362:8549885,41493025:167335 -k1,362:11801344,41493025:167335 -k1,362:14340427,41493025:167335 -k1,362:17326466,41493025:167335 -k1,362:18987367,41493025:167335 -k1,362:19840864,41493025:167335 -k1,362:21445405,41493025:167336 -k1,362:23806885,41493025:167335 -k1,362:24657105,41493025:167335 -k1,362:27143104,41493025:167335 -k1,362:30622629,41493025:167335 -k1,362:31809049,41493025:167335 -k1,363:32583029,41493025:0 -) -(1,363:6630773,42334513:25952256,513147,134348 -k1,362:9670442,42334513:159362 -k1,362:11343029,42334513:159361 -k1,362:13712265,42334513:159362 -k1,362:17233624,42334513:159362 -k1,362:18485470,42334513:159361 -k1,362:20011913,42334513:159362 -k1,362:23336664,42334513:159362 -k1,362:24123860,42334513:159361 -k1,362:25302307,42334513:159362 -k1,362:26828750,42334513:159362 -k1,362:27647403,42334513:159361 -k1,362:29498905,42334513:159362 -k1,362:32583029,42334513:0 -) -(1,363:6630773,43176001:25952256,513147,134348 -k1,362:7139827,43176001:153194 -k1,362:8561798,43176001:153194 -k1,362:9850732,43176001:153195 -k1,362:11397877,43176001:153194 -k1,362:16377142,43176001:153194 -k1,362:17146374,43176001:153194 -k1,362:19167954,43176001:153149 -k1,362:21501531,43176001:153194 -k1,362:22186222,43176001:153194 -k1,362:23625233,43176001:153195 -k1,362:26736067,43176001:153194 -k1,362:29424194,43176001:153194 -k1,363:32583029,43176001:0 -) -(1,363:6630773,44017489:25952256,513147,134348 -k1,362:8659057,44017489:148056 -k1,362:9911396,44017489:148057 -k1,362:10807218,44017489:148056 -k1,362:12241090,44017489:148056 -k1,362:15188190,44017489:148057 -k1,362:17894772,44017489:148056 -k1,362:20096726,44017489:148056 -k1,362:21441470,44017489:148057 -k1,362:25956794,44017489:148005 -k1,362:26764143,44017489:148057 -k1,362:29822653,44017489:148056 -k1,362:32583029,44017489:0 -) -(1,363:6630773,44858977:25952256,513147,102891 -k1,362:9137743,44858977:160781 -k1,362:13105511,44858977:160782 -k1,362:14213943,44858977:160781 -k1,362:15393810,44858977:160782 -k1,362:19184630,44858977:160781 -k1,362:20889440,44858977:160782 -k1,362:21701649,44858977:160781 -k1,362:23131208,44858977:160782 -k1,362:24931700,44858977:160781 -k1,362:26283927,44858977:160782 -k1,362:30282496,44858977:160781 -k1,362:31252648,44858977:160782 -k1,362:32583029,44858977:0 -) -] -(1,364:32583029,45706769:0,0,0 -g1,364:32583029,45706769 -) -) -] -(1,364:6630773,47279633:25952256,0,0 -h1,364:6630773,47279633:25952256,0,0 -) -] -(1,364:4262630,4025873:0,0,0 -[1,364:-473656,4025873:0,0,0 -(1,364:-473656,-710413:0,0,0 -(1,364:-473656,-710413:0,0,0 -g1,364:-473656,-710413 -) -g1,364:-473656,-710413 -) -] -) -] -!22585 -}20 +[1,464:3078558,4812305:0,0,0 +(1,464:3078558,49800853:0,16384,2228224 +k1,464:1358238,49800853:-1720320 +(1,412:1358238,49800853:1720320,16384,2228224 +(1,412:1358238,49800853:1179648,16384,0 +r1,464:2537886,49800853:1179648,16384,0 +) +g1,412:3062174,49800853 +(1,412:3062174,52029077:16384,1703936,0 +[1,412:3062174,52029077:25952256,1703936,0 +(1,412:3062174,51504789:25952256,1179648,0 +(1,412:3062174,51504789:16384,1179648,0 +r1,464:3078558,51504789:16384,1179648,0 +) +k1,412:29014430,51504789:25935872 +g1,412:29014430,51504789 +) +] +) +) +) +] +[1,464:3078558,4812305:0,0,0 +(1,464:3078558,49800853:0,16384,2228224 +g1,464:29030814,49800853 +g1,464:36135244,49800853 +(1,412:36135244,49800853:1720320,16384,2228224 +(1,412:36135244,52029077:16384,1703936,0 +[1,412:36135244,52029077:25952256,1703936,0 +(1,412:36135244,51504789:25952256,1179648,0 +(1,412:36135244,51504789:16384,1179648,0 +r1,464:36151628,51504789:16384,1179648,0 +) +k1,412:62087500,51504789:25935872 +g1,412:62087500,51504789 +) +] +) +g1,412:36675916,49800853 +(1,412:36675916,49800853:1179648,16384,0 +r1,464:37855564,49800853:1179648,16384,0 +) +) +k1,464:3078556,49800853:-34777008 +) +] +g1,464:6630773,4812305 +g1,464:6630773,4812305 +g1,464:8450052,4812305 +g1,464:9127038,4812305 +g1,464:10049130,4812305 +k1,464:31786110,4812305:21736980 +) +) +] +[1,464:6630773,45706769:25952256,40108032,0 +(1,464:6630773,45706769:25952256,40108032,0 +(1,464:6630773,45706769:0,0,0 +g1,464:6630773,45706769 +) +[1,464:6630773,45706769:25952256,40108032,0 +(1,441:6630773,6254097:25952256,513147,126483 +k1,440:8292984,6254097:221730 +k1,440:9895558,6254097:221730 +k1,440:13091312,6254097:221730 +k1,440:15381358,6254097:221730 +k1,440:16887594,6254097:221730 +k1,440:18392519,6254097:221730 +k1,440:22689933,6254097:221730 +k1,440:24015945,6254097:221730 +k1,440:24985441,6254097:221730 +k1,440:27008100,6254097:221730 +k1,440:29368925,6254097:221730 +k1,440:30782100,6254097:221730 +k1,440:32583029,6254097:0 +) +(1,441:6630773,7119177:25952256,513147,134348 +k1,440:8984389,7119177:196171 +k1,440:10574511,7119177:196171 +k1,440:11126542,7119177:196171 +k1,440:14603445,7119177:196171 +k1,440:17282120,7119177:196171 +k1,440:18859135,7119177:196171 +k1,440:22039161,7119177:196172 +k1,440:22863167,7119177:196171 +k1,440:24761308,7119177:196171 +k1,440:27086088,7119177:196171 +k1,440:29609442,7119177:196171 +k1,440:30464905,7119177:196171 +k1,440:32583029,7119177:0 +) +(1,441:6630773,7984257:25952256,513147,126483 +k1,440:7471297,7984257:189096 +k1,440:9718224,7984257:189097 +k1,440:12542523,7984257:189096 +k1,440:15493963,7984257:189097 +k1,440:17663557,7984257:189096 +k1,440:18511945,7984257:189096 +k1,440:21460108,7984257:189097 +k1,440:22300632,7984257:189096 +k1,440:23304996,7984257:189096 +k1,440:26256436,7984257:189097 +k1,440:28161920,7984257:189096 +k1,440:29010309,7984257:189097 +k1,440:31900144,7984257:189096 +k1,440:32583029,7984257:0 +) +(1,441:6630773,8849337:25952256,513147,134348 +k1,440:8581780,8849337:169738 +k1,440:9908228,8849337:169738 +k1,440:11182248,8849337:169738 +k1,440:13639193,8849337:169738 +k1,440:15075087,8849337:169738 +k1,440:15600685,8849337:169738 +k1,440:18350576,8849337:169739 +k1,440:19804820,8849337:169738 +k1,440:21107020,8849337:169738 +k1,440:22992491,8849337:169738 +k1,440:24445424,8849337:169738 +k1,440:26196546,8849337:169738 +k1,440:29799060,8849337:169738 +k1,440:32583029,8849337:0 +) +(1,441:6630773,9714417:25952256,505283,7863 +g1,440:8839991,9714417 +k1,441:32583028,9714417:23154524 +g1,441:32583028,9714417 +) +(1,443:6630773,10579497:25952256,513147,134348 +h1,442:6630773,10579497:983040,0,0 +k1,442:8952154,10579497:141654 +k1,442:10831823,10579497:141654 +k1,442:12707560,10579497:141654 +k1,442:13264000,10579497:141597 +k1,442:13264000,10579497:0 +k1,442:13705752,10579497:141597 +k1,442:14378903,10579497:141654 +k1,442:16033782,10579497:141653 +k1,442:16826864,10579497:141654 +k1,442:20529089,10579497:141654 +k1,442:21085529,10579497:141597 +k1,442:23006485,10579497:141654 +k1,442:23834301,10579497:141654 +k1,442:24591993,10579497:141654 +k1,442:25752732,10579497:141654 +k1,442:26309172,10579497:141597 +k1,442:29824619,10579497:141654 +k1,442:32583029,10579497:0 +) +(1,443:6630773,11444577:25952256,513147,134348 +k1,442:7425683,11444577:178872 +k1,442:8623641,11444577:178873 +k1,442:9217336,11444577:178852 +k1,442:13177635,11444577:178872 +k1,442:14547952,11444577:178872 +k1,442:15515223,11444577:178873 +k1,442:17959675,11444577:178872 +k1,442:21222671,11444577:178872 +k1,442:22969164,11444577:178872 +k1,442:23562859,11444577:178852 +k1,442:24357770,11444577:178873 +k1,442:24892502,11444577:178872 +k1,442:27566985,11444577:178872 +k1,442:29689656,11444577:178873 +k1,442:31753999,11444577:178872 +k1,443:32583029,11444577:0 +) +(1,443:6630773,12309657:25952256,513147,134348 +k1,442:8937293,12309657:254588 +k1,442:12921534,12309657:254587 +k1,442:16260246,12309657:254588 +k1,442:17002366,12309657:254532 +k1,442:18390071,12309657:254587 +k1,442:21555113,12309657:254588 +k1,442:22801260,12309657:254587 +k1,442:25814258,12309657:254588 +k1,442:26684883,12309657:254587 +k1,442:27958556,12309657:254588 +k1,442:28627931,12309657:254532 +k1,442:32583029,12309657:0 +) +(1,443:6630773,13174737:25952256,505283,134348 +k1,442:7912855,13174737:209913 +k1,442:9724468,13174737:209913 +k1,442:10349213,13174737:209902 +k1,442:13469579,13174737:209912 +k1,442:14671052,13174737:209913 +k1,442:19454067,13174737:209913 +k1,442:22925051,13174737:209913 +k1,442:26537592,13174737:209912 +k1,442:27938950,13174737:209913 +k1,442:31417799,13174737:209913 +k1,443:32583029,13174737:0 +) +(1,443:6630773,14039817:25952256,513147,134348 +k1,442:9571792,14039817:180643 +k1,442:10949121,14039817:180642 +k1,442:13615545,14039817:180643 +k1,442:14455480,14039817:180643 +k1,442:16450159,14039817:180642 +k1,442:19414771,14039817:180643 +k1,442:23494806,14039817:180643 +k1,442:24090273,14039817:180624 +k1,442:27181370,14039817:180643 +k1,442:30145981,14039817:180642 +k1,442:30858121,14039817:180643 +k1,442:32583029,14039817:0 +) +(1,443:6630773,14904897:25952256,513147,11795 +g1,442:7446040,14904897 +g1,442:8664354,14904897 +g1,442:10602909,14904897 +g1,442:11461430,14904897 +k1,443:32583029,14904897:18846384 +g1,443:32583029,14904897 +) +(1,445:6630773,15769977:25952256,513147,134348 +h1,444:6630773,15769977:983040,0,0 +k1,444:9053424,15769977:242924 +k1,444:10898048,15769977:242924 +k1,444:14350269,15769977:242923 +k1,444:17831982,15769977:242924 +k1,444:18734198,15769977:242924 +k1,444:20712515,15769977:242924 +k1,444:21311299,15769977:242924 +k1,444:24396519,15769977:242924 +k1,444:25785667,15769977:242923 +k1,444:26443390,15769977:242880 +k1,444:27217811,15769977:242924 +k1,444:28745241,15769977:242924 +k1,444:32583029,15769977:0 +) +(1,445:6630773,16635057:25952256,505283,134348 +k1,444:7565928,16635057:283727 +k1,444:8868740,16635057:283727 +k1,444:12228727,16635057:283727 +k1,444:13504014,16635057:283727 +k1,444:15482502,16635057:283727 +k1,444:16452391,16635057:283727 +k1,444:18135967,16635057:283727 +k1,444:19800539,16635057:283728 +k1,444:22130300,16635057:283727 +k1,444:22872124,16635057:283727 +k1,444:24550457,16635057:283727 +k1,444:25485612,16635057:283727 +k1,444:27785882,16635057:283727 +k1,444:28752494,16635057:283727 +k1,444:32227169,16635057:283727 +k1,444:32583029,16635057:0 +) +(1,445:6630773,17500137:25952256,505283,126483 +k1,444:8316621,17500137:296485 +k1,444:11341370,17500137:296485 +k1,444:14017466,17500137:296484 +k1,444:18151739,17500137:296485 +k1,444:20118737,17500137:296485 +k1,444:21066650,17500137:296485 +k1,444:25655743,17500137:296485 +k1,444:26603655,17500137:296484 +k1,444:28602110,17500137:296485 +k1,444:31034413,17500137:296485 +k1,444:32583029,17500137:0 +) +(1,445:6630773,18365217:25952256,505283,134348 +k1,444:7932646,18365217:200868 +k1,444:9643464,18365217:200868 +k1,444:11421783,18365217:200867 +k1,444:12238689,18365217:200868 +k1,444:12795417,18365217:200868 +k1,444:14234260,18365217:200868 +k1,444:15719633,18365217:200867 +k1,444:16451998,18365217:200868 +k1,444:21162398,18365217:200868 +k1,444:23767782,18365217:200868 +k1,444:24987734,18365217:200867 +k1,444:29026390,18365217:200868 +k1,444:32583029,18365217:0 +) +(1,445:6630773,19230297:25952256,513147,126483 +k1,444:8901747,19230297:211177 +k1,444:9468784,19230297:211177 +k1,444:13154680,19230297:211177 +k1,444:14933479,19230297:211178 +k1,444:15500516,19230297:211177 +k1,444:16646236,19230297:211177 +k1,444:17516705,19230297:211177 +k1,444:21565670,19230297:211177 +k1,444:22428275,19230297:211177 +k1,444:23658538,19230297:211178 +k1,444:26945975,19230297:211177 +k1,444:28424618,19230297:211177 +k1,444:29861974,19230297:211177 +k1,444:32583029,19230297:0 +) +(1,445:6630773,20095377:25952256,513147,126483 +g1,444:7481430,20095377 +g1,444:11933946,20095377 +g1,444:13152260,20095377 +g1,444:16312406,20095377 +g1,444:17703080,20095377 +g1,444:20686934,20095377 +g1,444:23164850,20095377 +g1,444:24023371,20095377 +g1,444:24578460,20095377 +k1,445:32583029,20095377:5997857 +g1,445:32583029,20095377 +) +v1,447:6630773,20960457:0,393216,0 +(1,448:6630773,24740870:25952256,4173629,0 +g1,448:6630773,24740870 +g1,448:6237557,24740870 +r1,464:6368629,24740870:131072,4173629,0 +g1,448:6567858,24740870 +g1,448:6764466,24740870 +[1,448:6764466,24740870:25818563,4173629,0 +(1,448:6764466,21268755:25818563,701514,196608 +(1,447:6764466,21268755:0,701514,196608 +r1,464:8010564,21268755:1246098,898122,196608 +k1,447:6764466,21268755:-1246098 +) +(1,447:6764466,21268755:1246098,701514,196608 +) +k1,447:8249806,21268755:239242 +k1,447:8577486,21268755:327680 +k1,447:11351662,21268755:239243 +k1,447:12984855,21268755:239242 +k1,447:17576344,21268755:239243 +k1,447:21402371,21268755:239242 +k1,447:22774076,21268755:239243 +k1,447:24961703,21268755:239242 +k1,447:26485452,21268755:239243 +k1,447:28416834,21268755:239242 +k1,447:31261788,21268755:239243 +k1,447:32168186,21268755:239242 +k1,448:32583029,21268755:0 +) +(1,448:6764466,22133835:25818563,513147,134348 +k1,447:8678926,22133835:171202 +k1,447:10417750,22133835:171203 +k1,447:12332865,22133835:171202 +k1,447:13120105,22133835:171202 +k1,447:14993278,22133835:171203 +k1,447:19516726,22133835:171202 +k1,447:23034197,22133835:171203 +k1,447:23620214,22133835:171174 +k1,447:25284327,22133835:171203 +k1,447:26521800,22133835:171202 +k1,447:28168217,22133835:171202 +k1,447:29358505,22133835:171203 +k1,447:31196943,22133835:171202 +k1,447:32583029,22133835:0 +) +(1,448:6764466,22998915:25818563,513147,126483 +k1,447:9174271,22998915:257603 +k1,447:10099031,22998915:257604 +k1,447:12301087,22998915:257603 +k1,447:13241575,22998915:257603 +k1,447:14956043,22998915:257603 +k1,447:15683540,22998915:257604 +k1,447:17042148,22998915:257603 +k1,447:20376666,22998915:257603 +k1,447:21918776,22998915:257604 +k1,447:23280661,22998915:257603 +k1,447:24890927,22998915:257603 +k1,447:27456708,22998915:257603 +k1,447:28905757,22998915:257604 +k1,447:31896867,22998915:257603 +k1,447:32583029,22998915:0 +) +(1,448:6764466,23863995:25818563,513147,126483 +k1,447:10178342,23863995:267493 +k1,447:12953242,23863995:267493 +k1,447:14412180,23863995:267493 +k1,447:15887502,23863995:267493 +k1,447:16569769,23863995:267424 +k1,447:18507119,23863995:267493 +k1,447:20544739,23863995:267493 +k1,447:21463660,23863995:267493 +k1,447:22933083,23863995:267493 +k1,447:24009946,23863995:267493 +k1,447:27039782,23863995:267493 +k1,447:29381490,23863995:267493 +k1,447:31091430,23863995:267493 +k1,448:32583029,23863995:0 +) +(1,448:6764466,24729075:25818563,505283,11795 +g1,447:9250246,24729075 +g1,447:11393928,24729075 +g1,447:12276042,24729075 +g1,447:13758466,24729075 +k1,448:32583029,24729075:17154706 +g1,448:32583029,24729075 +) +] +g1,448:32583029,24740870 +) +h1,448:6630773,24740870:0,0,0 +(1,450:6630773,26857688:25952256,534184,147783 +(1,450:6630773,26857688:2450326,534184,0 +g1,450:6630773,26857688 +g1,450:9081099,26857688 +) +g1,450:9825064,26857688 +g1,450:10828552,26857688 +g1,450:11454290,26857688 +g1,450:15171230,26857688 +k1,450:32583029,26857688:14301133 +g1,450:32583029,26857688 +) +(1,454:6630773,28115984:25952256,513147,134348 +k1,453:8054670,28115984:227210 +k1,453:8696696,28115984:227183 +k1,453:11665932,28115984:227210 +k1,453:13498774,28115984:227210 +k1,453:14257481,28115984:227210 +k1,453:18557755,28115984:227211 +k1,453:19854513,28115984:227210 +k1,453:20870121,28115984:227210 +k1,453:23206281,28115984:227211 +k1,453:24929678,28115984:227210 +k1,453:25688385,28115984:227210 +k1,453:28699565,28115984:227211 +k1,453:29874426,28115984:227210 +k1,453:32583029,28115984:0 +) +(1,454:6630773,28981064:25952256,513147,126483 +k1,453:7522822,28981064:240621 +k1,453:10242015,28981064:240621 +k1,453:12744939,28981064:240621 +k1,453:14177005,28981064:240621 +k1,453:15683782,28981064:240621 +k1,453:16411949,28981064:240579 +k1,453:18368958,28981064:240621 +k1,453:21119608,28981064:240621 +k1,453:22019521,28981064:240621 +k1,453:23971287,28981064:240621 +k1,453:25344370,28981064:240621 +k1,453:27999337,28981064:240621 +k1,453:31548871,28981064:240621 +k1,454:32583029,28981064:0 +) +(1,454:6630773,29846144:25952256,513147,134348 +k1,453:10598525,29846144:190257 +k1,453:11440209,29846144:190256 +k1,453:12649551,29846144:190257 +k1,453:13254642,29846144:190248 +k1,453:16186924,29846144:190256 +k1,453:18156483,29846144:190257 +k1,453:19418908,29846144:190256 +k1,453:20067262,29846144:190257 +k1,453:20789016,29846144:190257 +k1,453:23782902,29846144:190256 +k1,453:25164604,29846144:190257 +k1,453:27098773,29846144:190256 +k1,453:31591469,29846144:190257 +k1,453:32583029,29846144:0 +) +(1,454:6630773,30711224:25952256,505283,134348 +k1,453:10034058,30711224:193987 +k1,453:10844084,30711224:193988 +k1,453:13396712,30711224:193987 +k1,453:14005537,30711224:193982 +k1,453:17338044,30711224:193988 +k1,453:20056478,30711224:193987 +k1,453:21447152,30711224:193987 +k1,453:25188604,30711224:193988 +k1,453:26401676,30711224:193987 +k1,453:27010501,30711224:193982 +k1,453:29946515,30711224:193988 +k1,453:31008854,30711224:193987 +k1,454:32583029,30711224:0 +) +(1,454:6630773,31576304:25952256,513147,134348 +k1,453:7946135,31576304:188143 +k1,453:9400433,31576304:188142 +k1,453:10692858,31576304:188143 +k1,453:11628767,31576304:188143 +k1,453:13295402,31576304:188143 +k1,453:14431195,31576304:188142 +k1,453:17381681,31576304:188143 +k1,453:20623802,31576304:188143 +k1,453:23388165,31576304:188143 +k1,453:24767752,31576304:188142 +k1,453:28032155,31576304:188143 +k1,453:31386342,31576304:188143 +k1,453:32583029,31576304:0 +) +(1,454:6630773,32441384:25952256,513147,134348 +k1,453:9822783,32441384:238302 +k1,453:10720377,32441384:238302 +k1,453:11977763,32441384:238301 +k1,453:12630869,32441384:238263 +k1,453:16352410,32441384:238302 +k1,453:18170785,32441384:238302 +k1,453:19586113,32441384:238301 +k1,453:20475843,32441384:238302 +k1,453:22222128,32441384:238302 +k1,453:23479515,32441384:238302 +k1,453:25890990,32441384:238301 +k1,453:28921126,32441384:238302 +k1,453:30727049,32441384:238302 +k1,454:32583029,32441384:0 +) +(1,454:6630773,33306464:25952256,513147,126483 +k1,453:9015211,33306464:225682 +k1,453:10818345,33306464:225682 +k1,453:11853397,33306464:225682 +k1,453:12845195,33306464:225682 +k1,453:14089962,33306464:225682 +k1,453:17077986,33306464:225681 +k1,453:19276302,33306464:225682 +k1,453:20693429,33306464:225682 +k1,453:23995371,33306464:225682 +k1,453:28390453,33306464:225682 +k1,453:29302297,33306464:225682 +k1,453:32583029,33306464:0 +) +(1,454:6630773,34171544:25952256,505283,126483 +k1,453:7517366,34171544:200431 +k1,453:10521427,34171544:200431 +k1,453:11918545,34171544:200431 +k1,453:13444113,34171544:200430 +k1,453:14176041,34171544:200431 +k1,453:15027900,34171544:200431 +k1,453:17371358,34171544:200431 +k1,453:18856295,34171544:200431 +k1,453:23450915,34171544:200431 +k1,453:25661990,34171544:200430 +k1,453:29143153,34171544:200431 +k1,453:31516758,34171544:200431 +k1,453:32583029,34171544:0 +) +(1,454:6630773,35036624:25952256,513147,134348 +k1,453:8262570,35036624:256196 +k1,453:10551693,35036624:256196 +k1,453:13354617,35036624:256195 +k1,453:14262241,35036624:256196 +k1,453:14933223,35036624:256139 +k1,453:16261587,35036624:256195 +k1,453:17803599,35036624:256196 +k1,453:20092722,35036624:256196 +k1,453:23111261,35036624:256196 +k1,453:26421435,35036624:256196 +k1,453:29253850,35036624:256195 +k1,453:30656271,35036624:256196 +k1,454:32583029,35036624:0 +) +(1,454:6630773,35901704:25952256,505283,134348 +g1,453:8281624,35901704 +g1,453:11668524,35901704 +g1,453:12738072,35901704 +g1,453:13728320,35901704 +g1,453:15118994,35901704 +g1,453:19431917,35901704 +g1,453:20822591,35901704 +g1,453:24098080,35901704 +k1,454:32583029,35901704:5318905 +g1,454:32583029,35901704 +) +(1,462:6630773,36766784:25952256,513147,134348 +h1,461:6630773,36766784:983040,0,0 +k1,461:9060688,36766784:250188 +k1,461:9725668,36766784:250137 +k1,461:12717882,36766784:250188 +k1,461:14460980,36766784:250188 +k1,461:15777439,36766784:250188 +k1,461:17502842,36766784:250188 +k1,461:18108890,36766784:250188 +k1,461:22006812,36766784:250188 +k1,461:25206775,36766784:250188 +k1,461:26837807,36766784:250188 +k1,461:29898179,36766784:250188 +k1,461:31900144,36766784:250188 +k1,461:32583029,36766784:0 +) +(1,462:6630773,37631864:25952256,513147,126483 +k1,461:8955890,37631864:197818 +k1,461:10721328,37631864:197817 +k1,461:12804617,37631864:197818 +k1,461:13653863,37631864:197818 +k1,461:15340003,37631864:197817 +k1,461:18300164,37631864:197818 +k1,461:20214370,37631864:197818 +k1,461:21071480,37631864:197818 +k1,461:24143706,37631864:197817 +k1,461:26854174,37631864:197818 +k1,461:28071077,37631864:197818 +k1,461:29649738,37631864:197817 +k1,461:31563944,37631864:197818 +k1,461:32583029,37631864:0 +) +(1,462:6630773,38496944:25952256,505283,134348 +k1,461:10369699,38496944:249134 +k1,461:11231595,38496944:249134 +k1,461:12499813,38496944:249133 +k1,461:13163740,38496944:249084 +k1,461:15833119,38496944:249134 +k1,461:17273698,38496944:249134 +k1,461:18541916,38496944:249133 +k1,461:20633922,38496944:249134 +k1,461:21414553,38496944:249134 +k1,461:24726840,38496944:249134 +k1,461:27454546,38496944:249134 +k1,461:28513049,38496944:249133 +k1,461:29781268,38496944:249134 +k1,461:31414522,38496944:249134 +k1,461:32583029,38496944:0 +) +(1,462:6630773,39362024:25952256,513147,134348 +k1,461:9021701,39362024:198749 +h1,461:9992289,39362024:0,0,0 +k1,461:10571802,39362024:198749 +k1,461:11967238,39362024:198749 +k1,461:13819460,39362024:198749 +k1,461:16220219,39362024:198749 +k1,461:19908760,39362024:198749 +k1,461:21211791,39362024:198749 +k1,461:22696355,39362024:198748 +k1,461:23642870,39362024:198749 +k1,461:25653034,39362024:198749 +k1,461:27119249,39362024:198749 +k1,461:27673858,39362024:198749 +k1,461:29098786,39362024:198749 +k1,461:30454245,39362024:198749 +k1,461:31821501,39362024:198749 +k1,461:32583029,39362024:0 +) +(1,462:6630773,40227104:25952256,513147,134348 +k1,461:8114672,40227104:141722 +k1,461:9447838,40227104:141721 +k1,461:11083126,40227104:141722 +k1,461:11580707,40227104:141721 +k1,461:12879139,40227104:141722 +k1,461:14888636,40227104:141721 +k1,461:15386218,40227104:141722 +k1,461:17959325,40227104:141721 +k1,461:19205329,40227104:141722 +k1,461:22557004,40227104:141722 +k1,461:23646376,40227104:141721 +k1,461:24807183,40227104:141722 +k1,461:26797019,40227104:141721 +k1,461:28967736,40227104:141722 +k1,461:29768749,40227104:141721 +k1,461:30929556,40227104:141722 +k1,461:32583029,40227104:0 +) +(1,462:6630773,41092184:25952256,513147,134348 +k1,461:9782198,41092184:211480 +k1,461:10652971,41092184:211481 +k1,461:14354243,41092184:211480 +k1,461:15178486,41092184:211481 +k1,461:16409051,41092184:211480 +k1,461:19040777,41092184:211481 +k1,461:21717066,41092184:211480 +k1,461:23119992,41092184:211481 +k1,461:24423957,41092184:211480 +k1,461:25302594,41092184:211481 +k1,461:25928905,41092184:211468 +k1,461:28301763,41092184:211481 +k1,461:29504803,41092184:211480 +k1,461:32583029,41092184:0 +) +(1,462:6630773,41957264:25952256,505283,134348 +k1,461:7436678,41957264:189867 +k1,461:10044168,41957264:189867 +h1,461:10442627,41957264:0,0,0 +k1,461:10632494,41957264:189867 +k1,461:11631731,41957264:189867 +k1,461:13319751,41957264:189867 +h1,461:14515128,41957264:0,0,0 +k1,461:15085759,41957264:189867 +k1,461:17058861,41957264:189867 +k1,461:18117081,41957264:189868 +k1,461:19903405,41957264:189867 +k1,461:20706034,41957264:189867 +k1,461:21914986,41957264:189867 +k1,461:24698768,41957264:189867 +k1,461:27746660,41957264:189867 +k1,461:31426319,41957264:189867 +k1,461:32583029,41957264:0 +) +(1,462:6630773,42822344:25952256,505283,126483 +k1,461:7652213,42822344:259912 +k1,461:9242506,42822344:259912 +k1,461:10370769,42822344:259911 +k1,461:11723166,42822344:259912 +k1,461:12397860,42822344:259851 +k1,461:16714450,42822344:259912 +k1,461:18757596,42822344:259911 +k1,461:19885860,42822344:259912 +k1,461:21263816,42822344:259912 +k1,461:21879588,42822344:259912 +k1,461:24144245,42822344:259911 +k1,461:25272509,42822344:259912 +k1,461:26869355,42822344:259912 +k1,461:28176532,42822344:259912 +k1,461:29720949,42822344:259911 +k1,461:30849213,42822344:259912 +k1,461:32227169,42822344:259912 +k1,461:32583029,42822344:0 +) +(1,462:6630773,43687424:25952256,505283,134348 +k1,461:8930107,43687424:237571 +k1,461:10663210,43687424:237571 +k1,461:12097468,43687424:237571 +k1,461:13507479,43687424:237572 +k1,461:17407202,43687424:237571 +k1,461:20734796,43687424:237571 +k1,461:22827691,43687424:237571 +k1,461:24056822,43687424:237571 +k1,461:27078362,43687424:237571 +k1,461:27931971,43687424:237571 +k1,461:29188627,43687424:237571 +k1,461:29841003,43687424:237533 +k1,461:32583029,43687424:0 +) +(1,462:6630773,44552504:25952256,513147,7863 +k1,462:32583029,44552504:24172954 +g1,462:32583029,44552504 +) +] +(1,464:32583029,45706769:0,0,0 +g1,464:32583029,45706769 +) +) +] +(1,464:6630773,47279633:25952256,0,0 +h1,464:6630773,47279633:25952256,0,0 +) +] +(1,464:4262630,4025873:0,0,0 +[1,464:-473656,4025873:0,0,0 +(1,464:-473656,-710413:0,0,0 +(1,464:-473656,-710413:0,0,0 +g1,464:-473656,-710413 +) +g1,464:-473656,-710413 +) +] +) +] +!23120 +}26 !11 -{21 -[1,389:4262630,47279633:28320399,43253760,0 -(1,389:4262630,4025873:0,0,0 -[1,389:-473656,4025873:0,0,0 -(1,389:-473656,-710413:0,0,0 -(1,389:-473656,-644877:0,0,0 -k1,389:-473656,-644877:-65536 +{27 +[1,473:4262630,47279633:28320399,43253760,0 +(1,473:4262630,4025873:0,0,0 +[1,473:-473656,4025873:0,0,0 +(1,473:-473656,-710413:0,0,0 +(1,473:-473656,-644877:0,0,0 +k1,473:-473656,-644877:-65536 ) -(1,389:-473656,4736287:0,0,0 -k1,389:-473656,4736287:5209943 +(1,473:-473656,4736287:0,0,0 +k1,473:-473656,4736287:5209943 ) -g1,389:-473656,-710413 +g1,473:-473656,-710413 ) ] ) -[1,389:6630773,47279633:25952256,43253760,0 -[1,389:6630773,4812305:25952256,786432,0 -(1,389:6630773,4812305:25952256,505283,134348 -(1,389:6630773,4812305:25952256,505283,134348 -g1,389:3078558,4812305 -[1,389:3078558,4812305:0,0,0 -(1,389:3078558,2439708:0,1703936,0 -k1,389:1358238,2439708:-1720320 -(1,223:1358238,2439708:1720320,1703936,0 -(1,223:1358238,2439708:1179648,16384,0 -r1,389:2537886,2439708:1179648,16384,0 +[1,473:6630773,47279633:25952256,43253760,0 +[1,473:6630773,4812305:25952256,786432,0 +(1,473:6630773,4812305:25952256,505283,134348 +(1,473:6630773,4812305:25952256,505283,134348 +g1,473:3078558,4812305 +[1,473:3078558,4812305:0,0,0 +(1,473:3078558,2439708:0,1703936,0 +k1,473:1358238,2439708:-1720320 +(1,412:1358238,2439708:1720320,1703936,0 +(1,412:1358238,2439708:1179648,16384,0 +r1,473:2537886,2439708:1179648,16384,0 ) -g1,223:3062174,2439708 -(1,223:3062174,2439708:16384,1703936,0 -[1,223:3062174,2439708:25952256,1703936,0 -(1,223:3062174,1915420:25952256,1179648,0 -(1,223:3062174,1915420:16384,1179648,0 -r1,389:3078558,1915420:16384,1179648,0 +g1,412:3062174,2439708 +(1,412:3062174,2439708:16384,1703936,0 +[1,412:3062174,2439708:25952256,1703936,0 +(1,412:3062174,1915420:25952256,1179648,0 +(1,412:3062174,1915420:16384,1179648,0 +r1,473:3078558,1915420:16384,1179648,0 ) -k1,223:29014430,1915420:25935872 -g1,223:29014430,1915420 +k1,412:29014430,1915420:25935872 +g1,412:29014430,1915420 ) ] ) ) ) ] -[1,389:3078558,4812305:0,0,0 -(1,389:3078558,2439708:0,1703936,0 -g1,389:29030814,2439708 -g1,389:36135244,2439708 -(1,223:36135244,2439708:1720320,1703936,0 -(1,223:36135244,2439708:16384,1703936,0 -[1,223:36135244,2439708:25952256,1703936,0 -(1,223:36135244,1915420:25952256,1179648,0 -(1,223:36135244,1915420:16384,1179648,0 -r1,389:36151628,1915420:16384,1179648,0 +[1,473:3078558,4812305:0,0,0 +(1,473:3078558,2439708:0,1703936,0 +g1,473:29030814,2439708 +g1,473:36135244,2439708 +(1,412:36135244,2439708:1720320,1703936,0 +(1,412:36135244,2439708:16384,1703936,0 +[1,412:36135244,2439708:25952256,1703936,0 +(1,412:36135244,1915420:25952256,1179648,0 +(1,412:36135244,1915420:16384,1179648,0 +r1,473:36151628,1915420:16384,1179648,0 ) -k1,223:62087500,1915420:25935872 -g1,223:62087500,1915420 +k1,412:62087500,1915420:25935872 +g1,412:62087500,1915420 ) ] ) -g1,223:36675916,2439708 -(1,223:36675916,2439708:1179648,16384,0 -r1,389:37855564,2439708:1179648,16384,0 +g1,412:36675916,2439708 +(1,412:36675916,2439708:1179648,16384,0 +r1,473:37855564,2439708:1179648,16384,0 ) ) -k1,389:3078556,2439708:-34777008 +k1,473:3078556,2439708:-34777008 ) ] -[1,389:3078558,4812305:0,0,0 -(1,389:3078558,49800853:0,16384,2228224 -k1,389:1358238,49800853:-1720320 -(1,223:1358238,49800853:1720320,16384,2228224 -(1,223:1358238,49800853:1179648,16384,0 -r1,389:2537886,49800853:1179648,16384,0 +[1,473:3078558,4812305:0,0,0 +(1,473:3078558,49800853:0,16384,2228224 +k1,473:1358238,49800853:-1720320 +(1,412:1358238,49800853:1720320,16384,2228224 +(1,412:1358238,49800853:1179648,16384,0 +r1,473:2537886,49800853:1179648,16384,0 ) -g1,223:3062174,49800853 -(1,223:3062174,52029077:16384,1703936,0 -[1,223:3062174,52029077:25952256,1703936,0 -(1,223:3062174,51504789:25952256,1179648,0 -(1,223:3062174,51504789:16384,1179648,0 -r1,389:3078558,51504789:16384,1179648,0 +g1,412:3062174,49800853 +(1,412:3062174,52029077:16384,1703936,0 +[1,412:3062174,52029077:25952256,1703936,0 +(1,412:3062174,51504789:25952256,1179648,0 +(1,412:3062174,51504789:16384,1179648,0 +r1,473:3078558,51504789:16384,1179648,0 ) -k1,223:29014430,51504789:25935872 -g1,223:29014430,51504789 +k1,412:29014430,51504789:25935872 +g1,412:29014430,51504789 ) ] ) ) -) -] -[1,389:3078558,4812305:0,0,0 -(1,389:3078558,49800853:0,16384,2228224 -g1,389:29030814,49800853 -g1,389:36135244,49800853 -(1,223:36135244,49800853:1720320,16384,2228224 -(1,223:36135244,52029077:16384,1703936,0 -[1,223:36135244,52029077:25952256,1703936,0 -(1,223:36135244,51504789:25952256,1179648,0 -(1,223:36135244,51504789:16384,1179648,0 -r1,389:36151628,51504789:16384,1179648,0 -) -k1,223:62087500,51504789:25935872 -g1,223:62087500,51504789 -) -] -) -g1,223:36675916,49800853 -(1,223:36675916,49800853:1179648,16384,0 -r1,389:37855564,49800853:1179648,16384,0 -) -) -k1,389:3078556,49800853:-34777008 -) -] -g1,389:6630773,4812305 -k1,389:24492612,4812305:17463380 -g1,389:26454104,4812305 -g1,389:27638994,4812305 -g1,389:29336376,4812305 -g1,389:30135259,4812305 -g1,389:32168841,4812305 -) -) -] -[1,389:6630773,45706769:25952256,40108032,0 -(1,389:6630773,45706769:25952256,40108032,0 -(1,389:6630773,45706769:0,0,0 -g1,389:6630773,45706769 -) -[1,389:6630773,45706769:25952256,40108032,0 -(1,363:6630773,6254097:25952256,513147,134348 -k1,362:7552507,6254097:270306 -k1,362:9819040,6254097:270306 -k1,362:11782797,6254097:270307 -k1,362:14280016,6254097:270306 -k1,362:18357308,6254097:270306 -k1,362:19998627,6254097:270306 -k1,362:20624793,6254097:270306 -k1,362:22580030,6254097:270306 -k1,362:26460060,6254097:270307 -k1,362:27721926,6254097:270306 -k1,362:31297213,6254097:270306 -k1,362:32583029,6254097:0 -) -(1,363:6630773,7095585:25952256,513147,7863 -g1,362:9613971,7095585 -g1,362:10429238,7095585 -g1,362:10984327,7095585 -g1,362:13924927,7095585 -k1,363:32583029,7095585:17501392 -g1,363:32583029,7095585 -) -(1,365:6630773,7937073:25952256,505283,134348 -h1,364:6630773,7937073:983040,0,0 -k1,364:9512946,7937073:268597 -k1,364:12817170,7937073:268596 -k1,364:14525593,7937073:268597 -k1,364:15445617,7937073:268596 -k1,364:16461980,7937073:268597 -k1,364:18300820,7937073:268597 -k1,364:19185454,7937073:268596 -k1,364:20042564,7937073:268597 -k1,364:21502606,7937073:268597 -k1,364:23108136,7937073:268596 -k1,364:25668527,7937073:268597 -k1,364:27629263,7937073:268596 -k1,364:29912437,7937073:268597 -k1,364:32583029,7937073:0 -) -(1,365:6630773,8778561:25952256,505283,134348 -k1,364:9002230,8778561:161583 -k1,364:14996516,8778561:161582 -k1,364:15809527,8778561:161583 -k1,364:19635883,8778561:161583 -k1,364:20816550,8778561:161582 -k1,364:22174820,8778561:161583 -k1,364:24118327,8778561:161583 -k1,364:26479297,8778561:161582 -k1,364:29821342,8778561:161583 -k1,364:32583029,8778561:0 -) -(1,365:6630773,9620049:25952256,513147,134348 -k1,364:7426801,9620049:144600 -k1,364:10393382,9620049:144601 -k1,364:12144925,9620049:144600 -k1,364:15325154,9620049:144601 -k1,364:16001251,9620049:144600 -k1,364:19254880,9620049:144601 -k1,364:20050908,9620049:144600 -k1,364:22638691,9620049:144601 -k1,364:23139151,9620049:144600 -k1,364:26371808,9620049:144601 -k1,364:27897252,9620049:144600 -k1,364:28709009,9620049:144601 -k1,364:29442122,9620049:144600 -k1,364:30311551,9620049:144601 -k1,364:32583029,9620049:0 -) -(1,365:6630773,10461537:25952256,513147,134348 -g1,364:8767246,10461537 -g1,364:10157920,10461537 -g1,364:13257772,10461537 -g1,364:14850952,10461537 -g1,364:18233265,10461537 -g1,364:20719045,10461537 -g1,364:22695610,10461537 -g1,364:24391026,10461537 -g1,364:25121752,10461537 -g1,364:25676841,10461537 -g1,364:27853291,10461537 -k1,365:32583029,10461537:1995576 -g1,365:32583029,10461537 -) -(1,366:6630773,12552797:25952256,564462,12975 -(1,366:6630773,12552797:2450326,534184,12975 -g1,366:6630773,12552797 -g1,366:9081099,12552797 -) -g1,366:11706603,12552797 -k1,366:32583029,12552797:18252364 -g1,366:32583029,12552797 -) -(1,368:6630773,13787501:25952256,505283,126483 -(1,368:6630773,13787501:0,0,0 -g1,368:6630773,13787501 -) -k1,368:32583029,13787501:22505062 -g1,368:32583029,13787501 -) -(1,370:6630773,15022205:25952256,513147,134348 -k1,369:8639704,15022205:225696 -k1,369:11258119,15022205:225696 -k1,369:14203558,15022205:225695 -k1,369:15376905,15022205:225696 -k1,369:17164324,15022205:225696 -k1,369:18546730,15022205:225696 -k1,369:20632992,15022205:225695 -k1,369:21510116,15022205:225696 -k1,369:23461375,15022205:225696 -k1,369:24448599,15022205:225696 -k1,369:26222910,15022205:225695 -k1,369:26980103,15022205:225696 -k1,369:29493006,15022205:225696 -k1,369:32583029,15022205:0 -) -(1,370:6630773,15863693:25952256,505283,134348 -k1,369:7547762,15863693:230827 -k1,369:11800534,15863693:230828 -k1,369:13916832,15863693:230827 -k1,369:14763697,15863693:230827 -k1,369:16746301,15863693:230827 -k1,369:19631992,15863693:230828 -k1,369:21148635,15863693:230827 -k1,369:23660770,15863693:230827 -k1,369:24543026,15863693:230828 -k1,369:26842825,15863693:230827 -k1,369:27689690,15863693:230827 -k1,369:30116628,15863693:230827 -k1,369:31030341,15863693:230828 -k1,369:32022696,15863693:230827 -k1,370:32583029,15863693:0 -) -(1,370:6630773,16705181:25952256,513147,134348 -k1,369:8267808,16705181:254881 -k1,369:9910741,16705181:254880 -k1,369:11733243,16705181:254881 -k1,369:12343983,16705181:254880 -k1,369:14002645,16705181:254881 -k1,369:14940410,16705181:254880 -k1,369:16689512,16705181:254881 -k1,369:19143780,16705181:254880 -k1,369:22753449,16705181:254881 -k1,369:25167740,16705181:254880 -k1,369:27861871,16705181:254881 -k1,369:28776043,16705181:254880 -k1,369:32583029,16705181:0 -) -(1,370:6630773,17546669:25952256,513147,126483 -k1,369:9594857,17546669:262035 -k1,369:10666261,17546669:262034 -k1,369:12476912,17546669:262035 -k1,369:13895656,17546669:262034 -k1,369:15754148,17546669:262035 -k1,369:17886581,17546669:262035 -k1,369:18800043,17546669:262034 -k1,369:20328234,17546669:262035 -k1,369:25066377,17546669:262034 -k1,369:27896113,17546669:262035 -k1,369:30364089,17546669:262034 -k1,369:32051532,17546669:262035 -k1,369:32583029,17546669:0 -) -(1,370:6630773,18388157:25952256,513147,134348 -g1,369:9939030,18388157 -g1,369:11210428,18388157 -g1,369:12510662,18388157 -g1,369:13361319,18388157 -g1,369:14308314,18388157 -g1,369:17671621,18388157 -g1,369:20160023,18388157 -g1,369:22813575,18388157 -g1,369:24058759,18388157 -g1,369:26041223,18388157 -g1,369:26899744,18388157 -g1,369:28759655,18388157 -g1,369:30289265,18388157 -k1,370:32583029,18388157:694686 -g1,370:32583029,18388157 -) -(1,372:6630773,19229645:25952256,513147,134348 -h1,371:6630773,19229645:983040,0,0 -k1,371:8447431,19229645:205783 -k1,371:10254914,19229645:205783 -k1,371:12988421,19229645:205783 -k1,371:15680639,19229645:205782 -k1,371:16242282,19229645:205783 -k1,371:18646143,19229645:205783 -k1,371:21611647,19229645:205783 -k1,371:22348927,19229645:205783 -k1,371:25393730,19229645:205783 -k1,371:27167133,19229645:205782 -k1,371:29116829,19229645:205783 -k1,371:31391584,19229645:205783 -k1,371:32583029,19229645:0 -) -(1,372:6630773,20071133:25952256,513147,134348 -k1,371:10068732,20071133:189995 -k1,371:13527007,20071133:189995 -k1,371:15434045,20071133:189995 -k1,371:17340428,20071133:189995 -k1,371:18189715,20071133:189995 -k1,371:22464568,20071133:189994 -k1,371:23800788,20071133:189995 -k1,371:25083268,20071133:189995 -k1,371:25932555,20071133:189995 -k1,371:29000891,20071133:189995 -k1,371:29873771,20071133:189995 -k1,372:32583029,20071133:0 -) -(1,372:6630773,20912621:25952256,513147,134348 -k1,371:8779296,20912621:278125 -k1,371:12073387,20912621:278124 -k1,371:13483974,20912621:278125 -k1,371:16049305,20912621:278124 -k1,371:18170302,20912621:278125 -k1,371:19064465,20912621:278125 -k1,371:20361674,20912621:278124 -k1,371:22020643,20912621:278125 -k1,371:24218973,20912621:278125 -k1,371:26754812,20912621:278124 -k1,371:28898747,20912621:278125 -k1,371:29792909,20912621:278124 -k1,371:30426894,20912621:278125 -k1,371:32583029,20912621:0 -) -(1,372:6630773,21754109:25952256,505283,134348 -k1,371:10306360,21754109:241500 -k1,371:12466754,21754109:241500 -k1,371:16793113,21754109:241500 -k1,371:19321820,21754109:241500 -k1,371:21736494,21754109:241500 -k1,371:22594031,21754109:241499 -k1,371:23854616,21754109:241500 -k1,371:26531434,21754109:241500 -k1,371:29537243,21754109:241500 -k1,371:30845014,21754109:241500 -k1,371:32583029,21754109:0 -) -(1,372:6630773,22595597:25952256,513147,134348 -k1,371:9840011,22595597:183441 -k1,371:11214897,22595597:183441 -k1,371:13725522,22595597:183442 -k1,371:14928048,22595597:183441 -k1,371:17787979,22595597:183441 -k1,371:21596872,22595597:183441 -k1,371:22396351,22595597:183441 -k1,371:22935652,22595597:183441 -k1,371:26279895,22595597:183442 -k1,371:27091171,22595597:183441 -k1,371:29607694,22595597:183441 -k1,371:32583029,22595597:0 -) -(1,372:6630773,23437085:25952256,513147,134348 -k1,371:7857607,23437085:207749 -k1,371:9750942,23437085:207749 -k1,371:11720299,23437085:207749 -k1,371:13796479,23437085:207749 -k1,371:15136690,23437085:207749 -k1,371:17533342,23437085:207749 -k1,371:20359910,23437085:207749 -k1,371:22026490,23437085:207749 -k1,371:24764584,23437085:207749 -k1,371:25631625,23437085:207749 -k1,371:28064977,23437085:207749 -k1,371:28628586,23437085:207749 -k1,371:31391584,23437085:207749 -k1,371:32583029,23437085:0 -) -(1,372:6630773,24278573:25952256,513147,7863 -g1,371:8807223,24278573 -k1,372:32583029,24278573:21344420 -g1,372:32583029,24278573 -) -(1,375:7679349,25734492:24903680,513147,134348 -(1,374:7679349,25734492:0,355205,0 -g1,374:7679349,25734492 -g1,374:6368629,25734492 -g1,374:6040949,25734492 -(1,374:6040949,25734492:1310720,355205,0 -k1,374:7351669,25734492:1310720 -(1,374:7351669,25734492:0,355205,0 -k1,374:6953210,25734492:-398459 -) -) -g1,374:7679349,25734492 -) -k1,374:8857388,25734492:280196 -k1,374:10596415,25734492:280196 -k1,374:14423420,25734492:280197 -k1,374:16009749,25734492:280196 -k1,374:18360227,25734492:280196 -k1,374:19588074,25734492:280196 -k1,374:22359293,25734492:280196 -k1,374:25227507,25734492:280197 -k1,374:26159131,25734492:280196 -k1,374:27898158,25734492:280196 -k1,374:31116333,25734492:280196 -k1,374:32583029,25734492:0 -) -(1,375:7679349,26575980:24903680,505283,126483 -k1,374:9833935,26575980:176709 -k1,374:11202088,26575980:176708 -k1,374:11994835,26575980:176709 -k1,374:13190629,26575980:176709 -k1,374:18367079,26575980:176708 -k1,374:19648725,26575980:176709 -k1,374:22475054,26575980:176708 -k1,374:23936269,26575980:176709 -k1,374:25283451,26575980:176709 -k1,374:28742857,26575980:176708 -k1,374:30122807,26575980:176709 -k1,374:32583029,26575980:0 -) -(1,375:7679349,27417468:24903680,505283,126483 -g1,374:10298823,27417468 -g1,374:12196090,27417468 -g1,374:13565792,27417468 -g1,374:15167491,27417468 -g1,374:16825551,27417468 -k1,375:32583029,27417468:12612405 -g1,375:32583029,27417468 -) -(1,376:7679349,28766872:24903680,513147,126483 -(1,375:7679349,28766872:0,355205,0 -g1,375:7679349,28766872 -g1,375:6368629,28766872 -g1,375:6040949,28766872 -(1,375:6040949,28766872:1310720,355205,0 -k1,375:7351669,28766872:1310720 -(1,375:7351669,28766872:0,355205,0 -k1,375:6953210,28766872:-398459 -) -) -g1,375:7679349,28766872 -) -k1,375:10201283,28766872:137079 -k1,375:10694223,28766872:137080 -k1,375:12361568,28766872:137079 -k1,375:16230923,28766872:137080 -k1,375:17027294,28766872:137079 -k1,375:18183458,28766872:137079 -k1,375:21170699,28766872:137080 -k1,375:22499223,28766872:137079 -k1,375:23402419,28766872:137080 -k1,375:24558583,28766872:137079 -k1,375:27268606,28766872:137080 -k1,375:31386342,28766872:137079 -k1,375:32583029,28766872:0 -) -(1,376:7679349,29608360:24903680,513147,134348 -k1,375:10179274,29608360:166188 -k1,375:11012618,29608360:166188 -k1,375:11767319,29608360:166188 -k1,375:14987486,29608360:166189 -k1,375:17573263,29608360:166188 -k1,375:18930896,29608360:166188 -k1,375:20228891,29608360:166188 -k1,375:23305533,29608360:166188 -k1,375:25616059,29608360:166188 -k1,375:26973693,29608360:166189 -k1,375:28648520,29608360:166188 -k1,375:31478747,29608360:166188 -k1,375:32583029,29608360:0 -) -(1,376:7679349,30449848:24903680,505283,126483 -g1,375:8626344,30449848 -k1,376:32583028,30449848:20573716 -g1,376:32583028,30449848 -) -(1,377:7679349,31799252:24903680,513147,126483 -(1,376:7679349,31799252:0,355205,0 -g1,376:7679349,31799252 -g1,376:6368629,31799252 -g1,376:6040949,31799252 -(1,376:6040949,31799252:1310720,355205,0 -k1,376:7351669,31799252:1310720 -(1,376:7351669,31799252:0,355205,0 -k1,376:6953210,31799252:-398459 -) -) -g1,376:7679349,31799252 -) -k1,376:8330995,31799252:173889 -k1,376:9117646,31799252:173889 -k1,376:10057650,31799252:173888 -k1,376:13035169,31799252:173889 -k1,376:15639133,31799252:173889 -k1,376:16168882,31799252:173889 -k1,376:19519956,31799252:173889 -k1,376:20885290,31799252:173889 -k1,376:22917780,31799252:173889 -k1,376:24163837,31799252:173888 -k1,376:29011754,31799252:173889 -k1,376:30681830,31799252:173889 -k1,377:32583029,31799252:0 -) -(1,377:7679349,32640740:24903680,505283,126483 -g1,376:8851788,32640740 -g1,376:10335523,32640740 -g1,376:14120882,32640740 -g1,376:15339196,32640740 -g1,376:18214915,32640740 -g1,376:22069087,32640740 -g1,376:24136092,32640740 -g1,376:24691181,32640740 -k1,377:32583029,32640740:5453253 -g1,377:32583029,32640740 -) -(1,378:7679349,33990145:24903680,505283,126483 -(1,377:7679349,33990145:0,355205,0 -g1,377:7679349,33990145 -g1,377:6368629,33990145 -g1,377:6040949,33990145 -(1,377:6040949,33990145:1310720,355205,0 -k1,377:7351669,33990145:1310720 -(1,377:7351669,33990145:0,355205,0 -k1,377:6953210,33990145:-398459 -) -) -g1,377:7679349,33990145 -) -g1,377:8625033,33990145 -k1,378:32583028,33990145:21958492 -g1,378:32583028,33990145 -) -(1,379:7679349,35339549:24903680,513147,134348 -(1,378:7679349,35339549:0,355205,0 -g1,378:7679349,35339549 -g1,378:6368629,35339549 -g1,378:6040949,35339549 -(1,378:6040949,35339549:1310720,355205,0 -k1,378:7351669,35339549:1310720 -(1,378:7351669,35339549:0,355205,0 -k1,378:6953210,35339549:-398459 -) -) -g1,378:7679349,35339549 -) -k1,378:11340846,35339549:230687 -k1,378:12222960,35339549:230686 -k1,378:13472732,35339549:230687 -k1,378:15685883,35339549:230687 -k1,378:16678097,35339549:230686 -k1,378:20156748,35339549:230687 -k1,378:22089404,35339549:230686 -k1,378:24204906,35339549:230687 -k1,378:27530203,35339549:230687 -k1,378:29458927,35339549:230686 -k1,378:30860087,35339549:230687 -k1,378:32583029,35339549:0 -) -(1,379:7679349,36181037:24903680,505283,7863 -g1,378:8897663,36181037 -k1,379:32583029,36181037:21253980 -g1,379:32583029,36181037 -) -v1,382:6630773,37636956:0,393216,0 -(1,389:6630773,45706769:25952256,8463029,0 -g1,389:6630773,45706769 -g1,389:6303093,45706769 -r1,389:6401397,45706769:98304,8463029,0 -g1,389:6600626,45706769 -g1,389:6797234,45706769 -[1,389:6797234,45706769:25785795,8463029,0 -(1,383:6797234,37999029:25785795,755289,196608 -(1,382:6797234,37999029:0,755289,196608 -r1,389:8134168,37999029:1336934,951897,196608 -k1,382:6797234,37999029:-1336934 -) -(1,382:6797234,37999029:1336934,755289,196608 -) -k1,382:8320113,37999029:185945 -k1,382:8647793,37999029:327680 -k1,382:11731739,37999029:185944 -k1,382:15029333,37999029:185945 -k1,382:15571138,37999029:185945 -k1,382:19819660,37999029:185945 -k1,382:22667021,37999029:185944 -k1,382:25924638,37999029:185945 -k1,382:26642080,37999029:185945 -k1,382:29134237,37999029:185945 -k1,382:29807756,37999029:185931 -k1,382:32051532,37999029:185945 -k1,382:32583029,37999029:0 -) -(1,383:6797234,38840517:25785795,513147,134348 -k1,382:7401748,38840517:248654 -k1,382:12150760,38840517:248655 -k1,382:13590859,38840517:248654 -k1,382:14525676,38840517:248655 -k1,382:16899007,38840517:248654 -k1,382:17833824,38840517:248655 -k1,382:20712438,38840517:248654 -k1,382:22611289,38840517:248654 -k1,382:23519236,38840517:248655 -k1,382:26844150,38840517:248654 -k1,382:28588992,38840517:248655 -k1,382:30122152,38840517:248654 -k1,382:32583029,38840517:0 -) -(1,383:6797234,39682005:25785795,513147,126483 -k1,382:8455295,39682005:259523 -k1,382:9439645,39682005:259522 -k1,382:14269649,39682005:259523 -k1,382:14885032,39682005:259523 -k1,382:17994715,39682005:259522 -k1,382:18731995,39682005:259523 -k1,382:21795148,39682005:259523 -k1,382:23752709,39682005:259523 -k1,382:25401594,39682005:259522 -k1,382:26652677,39682005:259523 -k1,382:29384218,39682005:259523 -k1,382:29999600,39682005:259522 -k1,382:31648486,39682005:259523 -k1,382:32583029,39682005:0 -) -(1,383:6797234,40523493:25785795,513147,134348 -k1,382:9801660,40523493:246016 -k1,382:10663713,40523493:246015 -k1,382:12343657,40523493:246016 -k1,382:13004469,40523493:245969 -k1,382:13933369,40523493:246015 -k1,382:16808034,40523493:246016 -k1,382:18443413,40523493:246016 -k1,382:21842366,40523493:246016 -k1,382:24098370,40523493:246015 -k1,382:25363471,40523493:246016 -k1,382:27666662,40523493:246016 -k1,382:29408864,40523493:246015 -k1,382:31835263,40523493:246016 -k1,382:32583029,40523493:0 -) -(1,383:6797234,41364981:25785795,513147,126483 -k1,382:8671423,41364981:187292 -k1,382:9336473,41364981:187293 -k1,382:10542850,41364981:187292 -k1,382:13406633,41364981:187293 -k1,382:14698207,41364981:187292 -k1,382:16261101,41364981:187293 -k1,382:17196159,41364981:187292 -k1,382:21060021,41364981:187292 -k1,382:22641265,41364981:187293 -k1,382:24489239,41364981:187292 -k1,382:26006913,41364981:187293 -k1,382:27757239,41364981:187292 -k1,382:29378460,41364981:187293 -k1,382:30722462,41364981:187292 -k1,382:32583029,41364981:0 -) -(1,383:6797234,42206469:25785795,513147,134348 -g1,382:7647891,42206469 -g1,382:10277195,42206469 -g1,382:10832284,42206469 -g1,382:13649676,42206469 -g1,382:15929018,42206469 -g1,382:16787539,42206469 -g1,382:17444865,42206469 -g1,382:18928600,42206469 -g1,382:20326483,42206469 -g1,382:22986589,42206469 -g1,382:24204903,42206469 -k1,383:32583029,42206469:5527965 -g1,383:32583029,42206469 -) -(1,385:6797234,43047957:25785795,513147,134348 -h1,384:6797234,43047957:983040,0,0 -k1,384:9716712,43047957:161723 -k1,384:12990083,43047957:161722 -k1,384:13507666,43047957:161723 -k1,384:15727219,43047957:161722 -k1,384:17045652,43047957:161723 -k1,384:18308380,43047957:161723 -k1,384:19121530,43047957:161722 -k1,384:21887654,43047957:161723 -k1,384:23068462,43047957:161723 -k1,384:24900041,43047957:161722 -k1,384:26253209,43047957:161723 -k1,384:29862780,43047957:161722 -k1,384:31227744,43047957:161723 -k1,384:32583029,43047957:0 -) -(1,385:6797234,43889445:25785795,513147,134348 -k1,384:9105685,43889445:262417 -k1,384:10898368,43889445:262417 -k1,384:12179870,43889445:262417 -k1,384:14520434,43889445:262417 -k1,384:15442143,43889445:262417 -k1,384:16723645,43889445:262417 -k1,384:19836223,43889445:262417 -k1,384:22533303,43889445:262417 -k1,384:24838477,43889445:262417 -k1,384:27493613,43889445:262417 -k1,384:28111890,43889445:262417 -k1,384:30431482,43889445:262417 -k1,384:32583029,43889445:0 -) -(1,385:6797234,44730933:25785795,513147,134348 -k1,384:8808840,44730933:189705 -k1,384:9456643,44730933:189706 -k1,384:11040299,44730933:189705 -k1,384:12249089,44730933:189705 -k1,384:14191228,44730933:189706 -k1,384:17044972,44730933:189705 -k1,384:17901834,44730933:189706 -k1,384:18506372,44730933:189695 -k1,384:19887523,44730933:189706 -k1,384:21209035,44730933:189705 -k1,384:23978893,44730933:189706 -k1,384:25906613,44730933:189705 -k1,384:27783215,44730933:189705 -k1,384:28450678,44730933:189706 -k1,384:31019995,44730933:189705 -k1,384:32583029,44730933:0 -) -(1,385:6797234,45572421:25785795,513147,134348 -g1,384:7744229,45572421 -g1,384:10153332,45572421 -g1,384:12175117,45572421 -g1,384:16149875,45572421 -g1,384:20156090,45572421 -g1,384:21546764,45572421 -g1,384:23601973,45572421 -g1,384:26155911,45572421 -g1,384:27038025,45572421 -g1,384:29554607,45572421 -k1,385:32583029,45572421:2396655 -g1,385:32583029,45572421 -) -] -g1,389:32583029,45706769 -) -] -(1,389:32583029,45706769:0,0,0 -g1,389:32583029,45706769 -) -) -] -(1,389:6630773,47279633:25952256,0,0 -h1,389:6630773,47279633:25952256,0,0 -) -] -(1,389:4262630,4025873:0,0,0 -[1,389:-473656,4025873:0,0,0 -(1,389:-473656,-710413:0,0,0 -(1,389:-473656,-710413:0,0,0 -g1,389:-473656,-710413 -) -g1,389:-473656,-710413 -) -] -) +) ] -!21481 -}21 +[1,473:3078558,4812305:0,0,0 +(1,473:3078558,49800853:0,16384,2228224 +g1,473:29030814,49800853 +g1,473:36135244,49800853 +(1,412:36135244,49800853:1720320,16384,2228224 +(1,412:36135244,52029077:16384,1703936,0 +[1,412:36135244,52029077:25952256,1703936,0 +(1,412:36135244,51504789:25952256,1179648,0 +(1,412:36135244,51504789:16384,1179648,0 +r1,473:36151628,51504789:16384,1179648,0 +) +k1,412:62087500,51504789:25935872 +g1,412:62087500,51504789 +) +] +) +g1,412:36675916,49800853 +(1,412:36675916,49800853:1179648,16384,0 +r1,473:37855564,49800853:1179648,16384,0 +) +) +k1,473:3078556,49800853:-34777008 +) +] +g1,473:6630773,4812305 +k1,473:21916392,4812305:14488701 +g1,473:22703479,4812305 +g1,473:23888369,4812305 +g1,473:27214321,4812305 +g1,473:28624000,4812305 +g1,473:29808890,4812305 +) +) +] +[1,473:6630773,45706769:25952256,40108032,0 +(1,473:6630773,45706769:25952256,40108032,0 +(1,473:6630773,45706769:0,0,0 +g1,473:6630773,45706769 +) +[1,473:6630773,45706769:25952256,40108032,0 +[1,459:6630773,18343038:25952256,12744301,0 +[1,459:6630773,18343038:25952256,12744301,0 +(1,458:6630773,9901958:25952256,4303221,0 +k1,458:8577113,9901958:1946340 +h1,457:8577113,9901958:0,0,0 +(1,457:8577113,9901958:22059576,4303221,0 +) +g1,458:30636689,9901958 +k1,458:32583029,9901958:1946340 +) +(1,458:6630773,11422398:25952256,485622,11795 +h1,458:6630773,11422398:0,0,0 +g1,458:9295467,11422398 +k1,458:32583028,11422398:22297312 +g1,458:32583028,11422398 +) +(1,458:6630773,12287478:25952256,505283,126483 +h1,458:6630773,12287478:0,0,0 +k1,458:7979638,12287478:152178 +k1,458:8546611,12287478:152130 +k1,458:11119034,12287478:152178 +k1,458:13190106,12287478:152178 +k1,458:14361368,12287478:152177 +k1,458:15894390,12287478:152178 +k1,458:17150849,12287478:152177 +k1,458:18689113,12287478:152178 +k1,458:21043300,12287478:152177 +k1,458:24685270,12287478:152178 +k1,458:25994158,12287478:152178 +k1,458:26907863,12287478:152177 +k1,458:28390422,12287478:152178 +k1,458:30030922,12287478:152177 +k1,458:31202185,12287478:152178 +k1,458:32583029,12287478:0 +) +(1,458:6630773,13152558:25952256,513147,134348 +k1,458:7914793,13152558:183015 +k1,458:9904636,13152558:183015 +(1,458:9904636,13152558:0,452978,115847 +r1,473:14835156,13152558:4930520,568825,115847 +k1,458:9904636,13152558:-4930520 +) +(1,458:9904636,13152558:4930520,452978,115847 +k1,458:9904636,13152558:3277 +h1,458:14831879,13152558:0,411205,112570 +) +k1,458:15018171,13152558:183015 +k1,458:16392631,13152558:183015 +k1,458:18982128,13152558:183015 +k1,458:19623240,13152558:183015 +k1,458:20567782,13152558:183014 +k1,458:22923971,13152558:183015 +k1,458:24126071,13152558:183015 +k1,458:25477593,13152558:183015 +k1,458:26319900,13152558:183015 +k1,458:27729094,13152558:183015 +k1,458:28673637,13152558:183015 +k1,458:31563944,13152558:183015 +k1,458:32583029,13152558:0 +) +(1,458:6630773,14017638:25952256,513147,134348 +k1,458:9069750,14017638:183883 +k1,458:10528308,14017638:183883 +k1,458:11908878,14017638:183883 +k1,458:13935633,14017638:183883 +k1,458:14778808,14017638:183883 +k1,458:17485827,14017638:183883 +k1,458:18688796,14017638:183884 +k1,458:22032170,14017638:183883 +k1,458:22747550,14017638:183883 +k1,458:25994586,14017638:183883 +k1,458:28046900,14017638:183883 +k1,458:29249868,14017638:183883 +k1,458:32583029,14017638:0 +) +(1,458:6630773,14882718:25952256,513147,126483 +k1,458:7972526,14882718:145066 +k1,458:11092271,14882718:145066 +k1,458:11850099,14882718:145066 +k1,458:13014250,14882718:145066 +k1,458:14698100,14882718:145065 +k1,458:15502458,14882718:145066 +k1,458:16666609,14882718:145066 +k1,458:18520199,14882718:145066 +k1,458:20007442,14882718:145066 +k1,458:20508368,14882718:145066 +$1,458:20808523,14882718 +$1,458:21329534,14882718 +k1,458:21774755,14882718:145066 +k1,458:22535859,14882718:145066 +k1,458:23884165,14882718:145065 +k1,458:25569982,14882718:145066 +k1,458:26246545,14882718:145066 +k1,458:28259387,14882718:145066 +k1,458:29423538,14882718:145066 +k1,458:32583029,14882718:0 +) +(1,458:6630773,15747798:25952256,505283,134348 +k1,458:9439646,15747798:233963 +k1,458:12545398,15747798:233964 +k1,458:14698255,15747798:233963 +k1,458:15288078,15747798:233963 +k1,458:18681533,15747798:233964 +k1,458:20019778,15747798:233963 +k1,458:21001507,15747798:233963 +k1,458:23042299,15747798:233964 +k1,458:24065971,15747798:233963 +k1,458:27911623,15747798:233963 +k1,458:30568453,15747798:233964 +k1,458:31563944,15747798:233963 +k1,458:32583029,15747798:0 +) +(1,458:6630773,16612878:25952256,505283,126483 +k1,458:8224375,16612878:212758 +k1,458:9428694,16612878:212759 +k1,458:12704605,16612878:212758 +k1,458:13533401,16612878:212758 +k1,458:14976271,16612878:212759 +k1,458:16878547,16612878:212758 +k1,458:19264479,16612878:212758 +k1,458:22255965,16612878:212759 +k1,458:23230251,16612878:212758 +k1,458:23857839,16612878:212745 +k1,458:25062157,16612878:212758 +k1,458:28338068,16612878:212758 +k1,458:29166865,16612878:212759 +k1,458:30921030,16612878:212758 +(1,458:31221185,16612878:0,452978,115847 +r1,473:32282874,16612878:1061689,568825,115847 +k1,458:31221185,16612878:-1061689 +) +(1,458:31221185,16612878:1061689,452978,115847 +k1,458:31221185,16612878:3277 +h1,458:32279597,16612878:0,411205,112570 +) +k1,458:32583029,16612878:0 +) +(1,458:6630773,17477958:25952256,505283,134348 +g1,458:7934284,17477958 +g1,458:8881279,17477958 +g1,458:11521724,17477958 +g1,458:13292506,17477958 +g1,458:14280133,17477958 +g1,458:17207626,17477958 +g1,458:17938352,17477958 +g1,458:21215807,17477958 +g1,458:22224406,17477958 +g1,458:23921788,17477958 +h1,458:24718706,17477958:0,0,0 +k1,458:32583029,17477958:7864323 +g1,458:32583029,17477958 +) +(1,459:6630773,18343038:25952256,78643,0 +k1,459:19520066,18343038:12889293 +h1,458:19520066,18343038:0,0,0 +g1,459:19693736,18343038 +k1,459:32583029,18343038:12889293 +) +] +] +v1,464:6630773,20309118:0,393216,0 +(1,465:6630773,27545919:25952256,7630017,0 +g1,465:6630773,27545919 +g1,465:6237557,27545919 +r1,473:6368629,27545919:131072,7630017,0 +g1,465:6567858,27545919 +g1,465:6764466,27545919 +[1,465:6764466,27545919:25818563,7630017,0 +(1,465:6764466,20617416:25818563,701514,196608 +(1,464:6764466,20617416:0,701514,196608 +r1,473:8010564,20617416:1246098,898122,196608 +k1,464:6764466,20617416:-1246098 +) +(1,464:6764466,20617416:1246098,701514,196608 +) +k1,464:8182954,20617416:172390 +k1,464:8510634,20617416:327680 +k1,464:9500913,20617416:172390 +k1,464:10088119,20617416:172363 +k1,464:10792006,20617416:172390 +k1,464:14319839,20617416:172390 +k1,464:14848089,20617416:172390 +k1,464:19561469,20617416:172390 +k1,464:23468100,20617416:172390 +k1,464:24098586,20617416:172389 +k1,464:25375258,20617416:172390 +k1,464:26295414,20617416:172390 +k1,464:27981030,20617416:172390 +k1,464:28962790,20617416:172390 +k1,464:30683796,20617416:172390 +k1,465:32583029,20617416:0 +) +(1,465:6764466,21482496:25818563,513147,134348 +k1,464:8443081,21482496:210609 +k1,464:9645249,21482496:210608 +k1,464:11759024,21482496:210609 +k1,464:15400443,21482496:210609 +k1,464:18859672,21482496:210609 +k1,464:22375261,21482496:210608 +k1,464:23237298,21482496:210609 +k1,464:23803767,21482496:210609 +k1,464:26771476,21482496:210609 +k1,464:30058344,21482496:210608 +k1,464:30928245,21482496:210609 +k1,464:32583029,21482496:0 +) +(1,465:6764466,22347576:25818563,505283,134348 +k1,464:9570772,22347576:250402 +k1,464:11119442,22347576:250402 +k1,464:11784635,22347576:250350 +k1,464:13139319,22347576:250402 +k1,464:14507765,22347576:250402 +k1,464:16224862,22347576:250401 +k1,464:17284634,22347576:250402 +k1,464:18554121,22347576:250402 +k1,464:22042002,22347576:250402 +k1,464:23042791,22347576:250402 +k1,464:23649052,22347576:250401 +k1,464:29078764,22347576:250402 +k1,464:31189078,22347576:250402 +k1,464:32583029,22347576:0 +) +(1,465:6764466,23212656:25818563,530548,141067 +k1,464:8058765,23212656:275214 +k1,464:11769376,23212656:275214 +k1,464:14016568,23212656:275214 +k1,464:14951074,23212656:275214 +k1,464:15582148,23212656:275214 +k1,464:18227143,23212656:275213 +k1,464:20353749,23212656:275214 +k1,464:22621257,23212656:275214 +k1,464:24128548,23212656:275214 +$1,464:24128548,23212656 +k1,464:26203258,23212656:0 +k1,464:26618200,23212656:0 +k1,464:27033142,23212656:0 +k1,464:27448084,23212656:0 +k1,464:29107852,23212656:0 +k1,464:29522794,23212656:0 +$1,464:31182562,23212656 +k1,464:31838540,23212656:275214 +k1,464:32583029,23212656:0 +) +(1,465:6764466,24077736:25818563,513147,126483 +k1,464:8011006,24077736:227455 +k1,464:9940432,24077736:227456 +k1,464:11350812,24077736:227455 +k1,464:12237560,24077736:227456 +k1,464:13484100,24077736:227455 +k1,464:16897261,24077736:227456 +k1,464:17934086,24077736:227455 +k1,464:19924459,24077736:227455 +k1,464:23008629,24077736:227456 +k1,464:25698927,24077736:227455 +k1,464:26341197,24077736:227427 +k1,464:27672935,24077736:227456 +k1,464:28648156,24077736:227455 +k1,464:30388838,24077736:227456 +k1,464:31563944,24077736:227455 +k1,464:32583029,24077736:0 +) +(1,465:6764466,24942816:25818563,513147,134348 +k1,464:9462331,24942816:143272 +k1,464:10264895,24942816:143272 +k1,464:11383998,24942816:143272 +k1,464:12916632,24942816:143271 +k1,464:14324749,24942816:143272 +k1,464:15861972,24942816:143272 +k1,464:18577532,24942816:143272 +k1,464:19380096,24942816:143272 +k1,464:23768790,24942816:143272 +k1,464:25332882,24942816:143271 +k1,464:28332868,24942816:143272 +k1,464:28832000,24942816:143272 +k1,464:32051532,24942816:143272 +k1,464:32583029,24942816:0 +) +(1,465:6764466,25807896:25818563,513147,134348 +k1,464:9237631,25807896:174817 +k1,464:10360099,25807896:174817 +k1,464:10890777,25807896:174818 +k1,464:12760355,25807896:174817 +k1,464:14324535,25807896:174817 +k1,464:17053945,25807896:174817 +k1,464:18564387,25807896:174818 +k1,464:21441253,25807896:174817 +k1,464:22425440,25807896:174817 +k1,464:23619342,25807896:174817 +k1,464:25062937,25807896:174818 +k1,464:25897046,25807896:174817 +k1,464:27090948,25807896:174817 +k1,464:28655128,25807896:174817 +k1,464:30268461,25807896:174818 +k1,464:31252648,25807896:174817 +k1,464:32583029,25807896:0 +) +(1,465:6764466,26672976:25818563,513147,134348 +k1,464:9247776,26672976:229527 +k1,464:10634013,26672976:229527 +k1,464:11568708,26672976:229528 +k1,464:12607605,26672976:229527 +k1,464:13856217,26672976:229527 +k1,464:16067553,26672976:229527 +k1,464:16948509,26672976:229528 +k1,464:18998626,26672976:229527 +k1,464:21780780,26672976:229527 +k1,464:25451602,26672976:229527 +k1,464:26872575,26672976:229528 +k1,464:27911472,26672976:229527 +k1,464:30398714,26672976:229527 +k1,464:32583029,26672976:0 +) +(1,465:6764466,27538056:25818563,505283,7863 +k1,465:32583029,27538056:24148706 +g1,465:32583029,27538056 +) +] +g1,465:32583029,27545919 +) +h1,465:6630773,27545919:0,0,0 +(1,467:6630773,30377079:25952256,32768,229376 +(1,467:6630773,30377079:0,32768,229376 +(1,467:6630773,30377079:5505024,32768,229376 +r1,473:12135797,30377079:5505024,262144,229376 +) +k1,467:6630773,30377079:-5505024 +) +(1,467:6630773,30377079:25952256,32768,0 +r1,473:32583029,30377079:25952256,32768,0 +) +) +(1,467:6630773,32008931:25952256,606339,161218 +(1,467:6630773,32008931:1974731,582746,14155 +g1,467:6630773,32008931 +g1,467:8605504,32008931 +) +g1,467:11091416,32008931 +k1,467:32583030,32008931:20948976 +g1,467:32583030,32008931 +) +(1,469:6630773,33339317:25952256,555811,12975 +(1,469:6630773,33339317:2450326,534184,12975 +g1,469:6630773,33339317 +g1,469:9081099,33339317 +) +g1,469:11879618,33339317 +g1,469:13446846,33339317 +k1,469:32583030,33339317:17501192 +g1,469:32583030,33339317 +) +(1,471:6630773,34597613:25952256,505283,134348 +k1,470:10117288,34597613:211026 +k1,470:14542934,34597613:211026 +k1,470:19165188,34597613:211026 +k1,470:21207945,34597613:211026 +k1,470:22410530,34597613:211025 +k1,470:25466474,34597613:211026 +k1,470:27190726,34597613:211026 +k1,470:29099790,34597613:211026 +k1,470:32583029,34597613:0 +) +(1,471:6630773,35462693:25952256,513147,134348 +k1,470:9928151,35462693:221118 +k1,470:13395268,35462693:221119 +k1,470:15033930,35462693:221118 +k1,470:17685124,35462693:221119 +k1,470:18262102,35462693:221118 +k1,470:22044446,35462693:221118 +k1,470:23646409,35462693:221119 +k1,470:26677711,35462693:221118 +k1,470:28466451,35462693:221119 +k1,470:30697558,35462693:221118 +k1,470:32583029,35462693:0 +) +(1,471:6630773,36327773:25952256,513147,134348 +k1,470:7902726,36327773:252868 +k1,470:10917937,36327773:252868 +k1,470:12752189,36327773:252868 +k1,470:14518283,36327773:252868 +k1,470:15422579,36327773:252868 +k1,470:17604827,36327773:252868 +k1,470:19049139,36327773:252867 +k1,470:20493452,36327773:252868 +k1,470:21102180,36327773:252868 +k1,470:24431308,36327773:252868 +k1,470:27426202,36327773:252868 +k1,470:28783352,36327773:252868 +k1,470:29783986,36327773:252868 +k1,470:32583029,36327773:0 +) +(1,471:6630773,37192853:25952256,513147,126483 +k1,470:8035101,37192853:212883 +k1,470:9761210,37192853:212883 +k1,470:10590130,37192853:212882 +k1,470:15047780,37192853:212883 +k1,470:16806002,37192853:212883 +k1,470:18436429,37192853:212883 +k1,470:20986980,37192853:212882 +k1,470:21555723,37192853:212883 +k1,470:24873046,37192853:212883 +k1,470:26994993,37192853:212883 +k1,470:29626809,37192853:212882 +k1,470:30498984,37192853:212883 +k1,470:32583029,37192853:0 +) +(1,471:6630773,38057933:25952256,505283,134348 +k1,470:10673689,38057933:195297 +k1,470:15392936,38057933:195297 +k1,470:18609443,38057933:195297 +k1,470:20601082,38057933:195297 +k1,470:23051473,38057933:195297 +k1,470:25101440,38057933:195298 +k1,470:26106107,38057933:195297 +k1,470:27810043,38057933:195297 +k1,470:29240694,38057933:195297 +k1,470:30052029,38057933:195297 +k1,470:31266411,38057933:195297 +k1,471:32583029,38057933:0 +) +(1,471:6630773,38923013:25952256,513147,134348 +k1,470:10042359,38923013:162966 +k1,470:13428386,38923013:162966 +k1,470:14782797,38923013:162966 +k1,470:16412459,38923013:162966 +k1,470:17884179,38923013:162966 +k1,470:18698573,38923013:162966 +k1,470:20857766,38923013:162966 +k1,470:22712872,38923013:162966 +k1,470:25710270,38923013:162966 +k1,470:26489274,38923013:162966 +k1,470:29237635,38923013:162966 +k1,470:30059893,38923013:162966 +k1,470:32583029,38923013:0 +) +(1,471:6630773,39788093:25952256,513147,126483 +k1,470:7835746,39788093:185888 +k1,470:9691491,39788093:185888 +k1,470:11148777,39788093:185888 +k1,470:13103483,39788093:185889 +k1,470:15958652,39788093:185888 +k1,470:17638106,39788093:185888 +k1,470:18594697,39788093:185888 +k1,470:20689649,39788093:185888 +k1,470:21561699,39788093:185888 +k1,470:22766672,39788093:185888 +k1,470:26257542,39788093:185889 +k1,470:27102722,39788093:185888 +k1,470:27644470,39788093:185888 +k1,470:29454996,39788093:185888 +k1,470:32583029,39788093:0 +) +(1,471:6630773,40653173:25952256,505283,134348 +k1,470:8249021,40653173:224297 +k1,470:10972205,40653173:224296 +k1,470:12387947,40653173:224297 +k1,470:15514834,40653173:224297 +k1,470:18724950,40653173:224296 +k1,470:20233753,40653173:224297 +k1,470:21562332,40653173:224297 +k1,470:23240217,40653173:224296 +k1,470:25287070,40653173:224297 +k1,470:28010255,40653173:224297 +k1,470:29425996,40653173:224296 +k1,470:31734338,40653173:224297 +k1,471:32583029,40653173:0 +) +(1,471:6630773,41518253:25952256,513147,134348 +k1,470:8133186,41518253:200868 +k1,470:9281705,41518253:200868 +k1,470:9838433,41518253:200868 +k1,470:13115561,41518253:200868 +k1,470:16158725,41518253:200868 +k1,470:17505818,41518253:200868 +k1,470:18121527,41518253:200866 +k1,470:20649578,41518253:200868 +k1,470:21509738,41518253:200868 +k1,470:22658257,41518253:200868 +k1,470:23214985,41518253:200868 +k1,470:25707647,41518253:200868 +k1,470:28750811,41518253:200868 +k1,470:30097904,41518253:200868 +k1,470:32583029,41518253:0 +) +(1,471:6630773,42383333:25952256,513147,134348 +k1,470:8250942,42383333:202625 +k1,470:11758548,42383333:202625 +k1,470:13158517,42383333:202626 +k1,470:15063112,42383333:202625 +k1,470:17871448,42383333:202625 +k1,470:19358579,42383333:202625 +k1,470:20949257,42383333:202625 +k1,470:24478489,42383333:202625 +k1,470:25340407,42383333:202626 +k1,470:26562117,42383333:202625 +k1,470:30474080,42383333:202625 +k1,470:32583029,42383333:0 +) +(1,471:6630773,43248413:25952256,505283,126483 +g1,470:8326189,43248413 +g1,470:9716863,43248413 +g1,470:11631825,43248413 +g1,470:13225660,43248413 +g1,470:14443974,43248413 +g1,470:16674164,43248413 +g1,470:17524821,43248413 +k1,471:32583029,43248413:10058466 +g1,471:32583029,43248413 +) +(1,473:6630773,44113493:25952256,513147,126483 +h1,472:6630773,44113493:983040,0,0 +k1,472:8233646,44113493:149940 +k1,472:8915084,44113493:149941 +k1,472:12219272,44113493:149940 +k1,472:13723187,44113493:149941 +k1,472:16650543,44113493:149940 +k1,472:17451912,44113493:149941 +k1,472:18694337,44113493:149940 +k1,472:19614981,44113493:149941 +k1,472:20852115,44113493:149892 +k1,472:21688217,44113493:149940 +k1,472:22194017,44113493:149940 +k1,472:25359269,44113493:149941 +k1,472:26192094,44113493:149940 +k1,472:29947826,44113493:149941 +k1,472:32583029,44113493:0 +) +(1,473:6630773,44978573:25952256,505283,134348 +k1,472:7855314,44978573:205456 +k1,472:9441614,44978573:205456 +k1,472:10838515,44978573:205456 +k1,472:12063056,44978573:205456 +k1,472:12683349,44978573:205450 +k1,472:15804502,44978573:205456 +k1,472:20526044,44978573:205456 +k1,472:21723059,44978573:205455 +k1,472:23127169,44978573:205456 +k1,472:24910077,44978573:205456 +k1,472:25731571,44978573:205456 +k1,472:26956112,44978573:205456 +k1,472:27576405,44978573:205450 +k1,472:30697558,44978573:205456 +k1,472:32583029,44978573:0 +) +] +(1,473:32583029,45706769:0,0,0 +g1,473:32583029,45706769 +) +) +] +(1,473:6630773,47279633:25952256,0,0 +h1,473:6630773,47279633:25952256,0,0 +) +] +(1,473:4262630,4025873:0,0,0 +[1,473:-473656,4025873:0,0,0 +(1,473:-473656,-710413:0,0,0 +(1,473:-473656,-710413:0,0,0 +g1,473:-473656,-710413 +) +g1,473:-473656,-710413 +) +] +) +] +!19518 +}27 !11 -{22 -[1,404:4262630,47279633:28320399,43253760,0 -(1,404:4262630,4025873:0,0,0 -[1,404:-473656,4025873:0,0,0 -(1,404:-473656,-710413:0,0,0 -(1,404:-473656,-644877:0,0,0 -k1,404:-473656,-644877:-65536 +{28 +[1,488:4262630,47279633:28320399,43253760,0 +(1,488:4262630,4025873:0,0,0 +[1,488:-473656,4025873:0,0,0 +(1,488:-473656,-710413:0,0,0 +(1,488:-473656,-644877:0,0,0 +k1,488:-473656,-644877:-65536 ) -(1,404:-473656,4736287:0,0,0 -k1,404:-473656,4736287:5209943 +(1,488:-473656,4736287:0,0,0 +k1,488:-473656,4736287:5209943 ) -g1,404:-473656,-710413 +g1,488:-473656,-710413 ) ] ) -[1,404:6630773,47279633:25952256,43253760,0 -[1,404:6630773,4812305:25952256,786432,0 -(1,404:6630773,4812305:25952256,505283,134348 -(1,404:6630773,4812305:25952256,505283,134348 -g1,404:3078558,4812305 -[1,404:3078558,4812305:0,0,0 -(1,404:3078558,2439708:0,1703936,0 -k1,404:1358238,2439708:-1720320 -(1,223:1358238,2439708:1720320,1703936,0 -(1,223:1358238,2439708:1179648,16384,0 -r1,404:2537886,2439708:1179648,16384,0 +[1,488:6630773,47279633:25952256,43253760,0 +[1,488:6630773,4812305:25952256,786432,0 +(1,488:6630773,4812305:25952256,485622,134348 +(1,488:6630773,4812305:25952256,485622,134348 +g1,488:3078558,4812305 +[1,488:3078558,4812305:0,0,0 +(1,488:3078558,2439708:0,1703936,0 +k1,488:1358238,2439708:-1720320 +(1,412:1358238,2439708:1720320,1703936,0 +(1,412:1358238,2439708:1179648,16384,0 +r1,488:2537886,2439708:1179648,16384,0 ) -g1,223:3062174,2439708 -(1,223:3062174,2439708:16384,1703936,0 -[1,223:3062174,2439708:25952256,1703936,0 -(1,223:3062174,1915420:25952256,1179648,0 -(1,223:3062174,1915420:16384,1179648,0 -r1,404:3078558,1915420:16384,1179648,0 +g1,412:3062174,2439708 +(1,412:3062174,2439708:16384,1703936,0 +[1,412:3062174,2439708:25952256,1703936,0 +(1,412:3062174,1915420:25952256,1179648,0 +(1,412:3062174,1915420:16384,1179648,0 +r1,488:3078558,1915420:16384,1179648,0 ) -k1,223:29014430,1915420:25935872 -g1,223:29014430,1915420 +k1,412:29014430,1915420:25935872 +g1,412:29014430,1915420 ) ] ) ) ) ] -[1,404:3078558,4812305:0,0,0 -(1,404:3078558,2439708:0,1703936,0 -g1,404:29030814,2439708 -g1,404:36135244,2439708 -(1,223:36135244,2439708:1720320,1703936,0 -(1,223:36135244,2439708:16384,1703936,0 -[1,223:36135244,2439708:25952256,1703936,0 -(1,223:36135244,1915420:25952256,1179648,0 -(1,223:36135244,1915420:16384,1179648,0 -r1,404:36151628,1915420:16384,1179648,0 +[1,488:3078558,4812305:0,0,0 +(1,488:3078558,2439708:0,1703936,0 +g1,488:29030814,2439708 +g1,488:36135244,2439708 +(1,412:36135244,2439708:1720320,1703936,0 +(1,412:36135244,2439708:16384,1703936,0 +[1,412:36135244,2439708:25952256,1703936,0 +(1,412:36135244,1915420:25952256,1179648,0 +(1,412:36135244,1915420:16384,1179648,0 +r1,488:36151628,1915420:16384,1179648,0 ) -k1,223:62087500,1915420:25935872 -g1,223:62087500,1915420 +k1,412:62087500,1915420:25935872 +g1,412:62087500,1915420 ) ] ) -g1,223:36675916,2439708 -(1,223:36675916,2439708:1179648,16384,0 -r1,404:37855564,2439708:1179648,16384,0 +g1,412:36675916,2439708 +(1,412:36675916,2439708:1179648,16384,0 +r1,488:37855564,2439708:1179648,16384,0 ) ) -k1,404:3078556,2439708:-34777008 +k1,488:3078556,2439708:-34777008 ) ] -[1,404:3078558,4812305:0,0,0 -(1,404:3078558,49800853:0,16384,2228224 -k1,404:1358238,49800853:-1720320 -(1,223:1358238,49800853:1720320,16384,2228224 -(1,223:1358238,49800853:1179648,16384,0 -r1,404:2537886,49800853:1179648,16384,0 -) -g1,223:3062174,49800853 -(1,223:3062174,52029077:16384,1703936,0 -[1,223:3062174,52029077:25952256,1703936,0 -(1,223:3062174,51504789:25952256,1179648,0 -(1,223:3062174,51504789:16384,1179648,0 -r1,404:3078558,51504789:16384,1179648,0 -) -k1,223:29014430,51504789:25935872 -g1,223:29014430,51504789 -) -] -) -) -) -] -[1,404:3078558,4812305:0,0,0 -(1,404:3078558,49800853:0,16384,2228224 -g1,404:29030814,49800853 -g1,404:36135244,49800853 -(1,223:36135244,49800853:1720320,16384,2228224 -(1,223:36135244,52029077:16384,1703936,0 -[1,223:36135244,52029077:25952256,1703936,0 -(1,223:36135244,51504789:25952256,1179648,0 -(1,223:36135244,51504789:16384,1179648,0 -r1,404:36151628,51504789:16384,1179648,0 -) -k1,223:62087500,51504789:25935872 -g1,223:62087500,51504789 -) -] -) -g1,223:36675916,49800853 -(1,223:36675916,49800853:1179648,16384,0 -r1,404:37855564,49800853:1179648,16384,0 -) -) -k1,404:3078556,49800853:-34777008 -) -] -g1,404:6630773,4812305 -g1,404:6630773,4812305 -g1,404:9478312,4812305 -g1,404:12241309,4812305 -g1,404:13040192,4812305 -g1,404:16139389,4812305 -k1,404:32184570,4812305:16045181 -) -) -] -[1,404:6630773,45706769:25952256,40108032,0 -(1,404:6630773,45706769:25952256,40108032,0 -(1,404:6630773,45706769:0,0,0 -g1,404:6630773,45706769 -) -[1,404:6630773,45706769:25952256,40108032,0 -v1,389:6630773,6254097:0,393216,0 -(1,389:6630773,12398793:25952256,6537912,0 -g1,389:6630773,12398793 -g1,389:6303093,12398793 -r1,404:6401397,12398793:98304,6537912,0 -g1,389:6600626,12398793 -g1,389:6797234,12398793 -[1,389:6797234,12398793:25785795,6537912,0 -(1,387:6797234,6374028:25785795,513147,126483 -h1,386:6797234,6374028:983040,0,0 -k1,386:8180148,6374028:186882 -k1,386:9989059,6374028:186895 -k1,386:11223219,6374028:186895 -k1,386:12694620,6374028:186895 -k1,386:14704070,6374028:186894 -k1,386:16063404,6374028:186895 -k1,386:17316570,6374028:186895 -k1,386:18162757,6374028:186895 -k1,386:20004435,6374028:186894 -k1,386:21947040,6374028:186895 -k1,386:22346915,6374028:186883 -k1,386:25002550,6374028:186894 -k1,386:25545305,6374028:186895 -k1,386:27933554,6374028:186895 -k1,386:28578546,6374028:186895 -k1,386:30777395,6374028:186894 -k1,386:31931601,6374028:186895 -k1,386:32583029,6374028:0 -) -(1,387:6797234,7215516:25785795,513147,134348 -k1,386:8206957,7215516:143567 -k1,386:9369610,7215516:143568 -k1,386:10847490,7215516:143567 -k1,386:11650350,7215516:143568 -k1,386:12813002,7215516:143567 -k1,386:15633060,7215516:143568 -k1,386:16968072,7215516:143567 -k1,386:17467500,7215516:143568 -k1,386:20223332,7215516:143567 -k1,386:21049785,7215516:143568 -k1,386:21549212,7215516:143567 -k1,386:25791402,7215516:143568 -k1,386:26744339,7215516:143567 -k1,386:27868981,7215516:143568 -k1,386:29516599,7215516:143567 -k1,386:32583029,7215516:0 -) -(1,387:6797234,8057004:25785795,513147,134348 -k1,386:7333277,8057004:180183 -k1,386:9571291,8057004:180183 -k1,386:11434439,8057004:180183 -k1,386:13306761,8057004:180182 -k1,386:15259693,8057004:180183 -k1,386:16512045,8057004:180183 -k1,386:17150325,8057004:180183 -k1,386:17862005,8057004:180183 -k1,386:21607347,8057004:180183 -k1,386:23254226,8057004:180183 -k1,386:23900370,8057004:180183 -k1,386:24538649,8057004:180182 -k1,386:26232058,8057004:180183 -k1,386:27247825,8057004:180183 -k1,386:28494279,8057004:180183 -k1,386:30412477,8057004:180183 -k1,386:32583029,8057004:0 -) -(1,387:6797234,8898492:25785795,505283,7863 -k1,387:32583029,8898492:23421256 -g1,387:32583029,8898492 -) -(1,389:6797234,9739980:25785795,513147,134348 -h1,388:6797234,9739980:983040,0,0 -k1,388:8377948,9739980:182831 -k1,388:11140947,9739980:182847 -k1,388:13751902,9739980:182847 -k1,388:15126193,9739980:182846 -k1,388:16097438,9739980:182847 -k1,388:18704462,9739980:182847 -k1,388:20913682,9739980:182847 -k1,388:23700930,9739980:182847 -k1,388:24902862,9739980:182847 -k1,388:27678313,9739980:182847 -k1,388:28520452,9739980:182847 -k1,388:32583029,9739980:0 -) -(1,389:6797234,10581468:25785795,505283,134348 -k1,388:8440322,10581468:146901 -k1,388:11752613,10581468:146902 -k1,388:12661042,10581468:146901 -k1,388:15380232,10581468:146902 -k1,388:16718578,10581468:146901 -k1,388:19365679,10581468:146902 -k1,388:20164008,10581468:146901 -k1,388:21329995,10581468:146902 -k1,388:24497450,10581468:146901 -k1,388:25000212,10581468:146902 -k1,388:27204288,10581468:146901 -k1,388:30030301,10581468:146901 -k1,388:30793241,10581468:146902 -k1,389:32583029,10581468:0 -) -(1,389:6797234,11422956:25785795,513147,126483 -k1,388:8731026,11422956:207574 -k1,388:10130046,11422956:207575 -k1,388:12111024,11422956:207574 -k1,388:12970026,11422956:207574 -k1,388:13925367,11422956:207575 -k1,388:16264827,11422956:207574 -k1,388:17739867,11422956:207574 -k1,388:18303302,11422956:207575 -k1,388:21275185,11422956:207574 -k1,388:22095521,11422956:207574 -k1,388:26794934,11422956:207575 -k1,388:27685393,11422956:207574 -k1,388:29160433,11422956:207574 -k1,388:30138711,11422956:207575 -k1,388:31970267,11422956:207574 -k1,389:32583029,11422956:0 -) -(1,389:6797234,12264444:25785795,513147,134349 -g1,388:9379352,12264444 -g1,388:10628468,12264444 -$1,388:10628468,12264444 -g1,388:12604378,12264444 -g1,388:12999560,12264444 -g1,388:13394742,12264444 -g1,388:13789924,12264444 -g1,388:16161016,12264444 -g1,388:16556198,12264444 -g1,388:20112836,12264444 -g1,388:20508018,12264444 -$1,388:22088746,12264444 -g1,388:22287975,12264444 -g1,388:23434855,12264444 -k1,389:32583029,12264444:6857035 -g1,389:32583029,12264444 -) -] -g1,389:32583029,12398793 -) -h1,389:6630773,12398793:0,0,0 -(1,391:6630773,14026713:25952256,513147,11795 -(1,391:6630773,14026713:0,0,0 -g1,391:6630773,14026713 -) -k1,391:32583029,14026713:21131428 -g1,391:32583029,14026713 -) -(1,394:6630773,15261417:25952256,513147,126484 -k1,393:10352454,15261417:316430 -k1,393:15160721,15261417:316429 -$1,393:15367815,15261417 -k1,393:16948543,15261417:0 -k1,393:17343725,15261417:0 -k1,393:17738907,15261417:0 -k1,393:18134089,15261417:0 -k1,393:23271455,15261417:0 -k1,393:23666637,15261417:0 -$1,393:25247365,15261417 -k1,393:25770889,15261417:316430 -k1,393:26618816,15261417:316430 -k1,393:27954330,15261417:316429 -k1,393:29605728,15261417:316430 -k1,394:32583029,15261417:0 -) -(1,394:6630773,16102905:25952256,513147,126483 -k1,393:10568816,16102905:275891 -k1,393:12926974,16102905:275814 -k1,393:15729277,16102905:275890 -k1,393:17140907,16102905:275891 -k1,393:18364449,16102905:275891 -k1,393:19228853,16102905:275891 -k1,393:21599929,16102905:275890 -k1,393:22894905,16102905:275891 -k1,393:27662634,16102905:275891 -k1,393:29074264,16102905:275891 -k1,393:31004938,16102905:275890 -k1,393:31812326,16102905:275891 -k1,394:32583029,16102905:0 -) -(1,394:6630773,16944393:25952256,513147,134348 -k1,393:7220028,16944393:174412 -k1,393:10550024,16944393:174437 -k1,393:11352296,16944393:174437 -k1,393:13128433,16944393:174437 -k1,393:15173923,16944393:174437 -k1,393:18408891,16944393:174437 -k1,393:19530979,16944393:174437 -k1,393:22196438,16944393:174436 -k1,393:25465485,16944393:174437 -k1,393:26831367,16944393:174437 -k1,393:28514443,16944393:174437 -k1,393:31450567,16944393:174437 -k1,393:32583029,16944393:0 -) -(1,394:6630773,17785881:25952256,513147,134348 -k1,393:7611847,17785881:233308 -k1,393:8611271,17785881:233308 -k1,393:10129085,17785881:233308 -k1,393:11532866,17785881:233308 -k1,393:13296440,17785881:233308 -k1,393:14181176,17785881:233308 -k1,393:15403422,17785881:233308 -k1,393:16114487,17785881:233308 -k1,393:18416768,17785881:233309 -k1,393:19005936,17785881:233308 -k1,393:22177223,17785881:233308 -k1,393:24126264,17785881:233308 -k1,393:25740416,17785881:233308 -k1,393:27258230,17785881:233308 -k1,393:27949635,17785881:233308 -k1,393:28714440,17785881:233308 -k1,393:30710666,17785881:233308 -k1,393:31299834,17785881:233308 -k1,393:32583029,17785881:0 -) -(1,394:6630773,18627369:25952256,513147,126483 -k1,393:9781946,18627369:213194 -k1,393:10472896,18627369:213193 -k1,393:12340874,18627369:213194 -k1,393:13085564,18627369:213193 -k1,393:14990898,18627369:213194 -k1,393:17968400,18627369:213193 -k1,393:19466100,18627369:213194 -k1,393:21396336,18627369:213193 -k1,393:23985210,18627369:213194 -k1,393:25914136,18627369:213193 -k1,393:27657596,18627369:213194 -k1,393:29201170,18627369:213193 -k1,393:30873195,18627369:213194 -k1,394:32583029,18627369:0 -) -(1,394:6630773,19468857:25952256,513147,7863 -g1,393:8097468,19468857 -g1,393:8828194,19468857 -k1,394:32583029,19468857:20818822 -g1,394:32583029,19468857 -) -(1,396:6630773,20310345:25952256,513147,134348 -h1,395:6630773,20310345:983040,0,0 -k1,395:12270474,20310345:164823 -k1,395:13536301,20310345:164822 -k1,395:14056984,20310345:164823 -k1,395:17681453,20310345:164823 -k1,395:20092194,20310345:164822 -k1,395:22111686,20310345:164823 -k1,395:23085879,20310345:164823 -k1,395:26775884,20310345:164823 -k1,395:28132151,20310345:164822 -k1,395:31391584,20310345:164823 -k1,395:32583029,20310345:0 -) -(1,396:6630773,21151833:25952256,505283,126483 -k1,395:9375875,21151833:157085 -k1,395:10637241,21151833:157084 -k1,395:11542092,21151833:157085 -k1,395:12747752,21151833:157084 -k1,395:14096282,21151833:157085 -k1,395:18167831,21151833:157084 -k1,395:21525039,21151833:157085 -k1,395:23076074,21151833:157084 -k1,395:24252244,21151833:157085 -k1,395:26011028,21151833:157084 -k1,395:28902930,21151833:157085 -k1,395:30051574,21151833:157084 -k1,395:31970267,21151833:157085 -k1,395:32583029,21151833:0 -) -(1,396:6630773,21993321:25952256,513147,126483 -k1,395:7785236,21993321:135378 -k1,395:8992784,21993321:135379 -k1,395:9787454,21993321:135378 -k1,395:12844428,21993321:135379 -k1,395:14171251,21993321:135378 -k1,395:15325715,21993321:135379 -k1,395:17062793,21993321:135378 -k1,395:18974853,21993321:135379 -k1,395:21698248,21993321:135378 -k1,395:22485055,21993321:135379 -k1,395:24072055,21993321:135378 -k1,395:26971743,21993321:135379 -k1,395:28098681,21993321:135378 -k1,395:29519876,21993321:135379 -k1,395:32583029,21993321:0 -) -(1,396:6630773,22834809:25952256,513147,126483 -k1,395:8330726,22834809:220150 -k1,395:9966455,22834809:220151 -k1,395:11595629,22834809:220150 -k1,395:12171640,22834809:220151 -k1,395:15156099,22834809:220150 -k1,395:15907747,22834809:220151 -k1,395:18966917,22834809:220150 -k1,395:19838496,22834809:220151 -k1,395:22106646,22834809:220150 -k1,395:24569439,22834809:220151 -k1,395:27551276,22834809:220150 -k1,395:28249184,22834809:220151 -k1,395:29488419,22834809:220150 -k1,395:32583029,22834809:0 -) -(1,396:6630773,23676297:25952256,505283,134348 -k1,395:7551911,23676297:238253 -k1,395:10378181,23676297:238253 -k1,395:11773144,23676297:238253 -k1,395:13956506,23676297:238253 -k1,395:15186319,23676297:238253 -k1,395:18249830,23676297:238254 -k1,395:19644793,23676297:238253 -k1,395:21559457,23676297:238253 -k1,395:25149221,23676297:238253 -k1,395:28792069,23676297:238253 -k1,395:29716484,23676297:238253 -k1,395:32583029,23676297:0 -) -(1,396:6630773,24517785:25952256,505283,134348 -k1,395:7638895,24517785:190233 -k1,395:8985838,24517785:190233 -k1,395:13144276,24517785:190233 -k1,395:16859691,24517785:190233 -k1,395:18358678,24517785:190233 -k1,395:20777790,24517785:190233 -k1,395:22159468,24517785:190233 -k1,395:25576694,24517785:190233 -k1,395:27806407,24517785:190233 -k1,395:29490206,24517785:190233 -k1,395:30366601,24517785:190233 -k1,395:32583029,24517785:0 -) -(1,396:6630773,25359273:25952256,513147,134348 -k1,395:8485089,25359273:152346 -k1,395:10522250,25359273:152346 -k1,395:13769205,25359273:152345 -k1,395:15112996,25359273:152346 -k1,395:17853359,25359273:152346 -k1,395:18688590,25359273:152346 -k1,395:20294524,25359273:152345 -k1,395:21429910,25359273:152346 -k1,395:23048952,25359273:152346 -k1,395:25768999,25359273:152346 -k1,395:27914294,25359273:152345 -k1,395:30654657,25359273:152346 -k1,395:31489888,25359273:152346 -k1,396:32583029,25359273:0 -) -(1,396:6630773,26200761:25952256,513147,126483 -k1,395:8473449,26200761:235733 -k1,395:11803792,26200761:235733 -k1,395:13607146,26200761:235733 -k1,395:14861964,26200761:235733 -k1,395:17517286,26200761:235733 -k1,395:19133862,26200761:235732 -k1,395:21675152,26200761:235733 -k1,395:25974117,26200761:235733 -k1,395:27282019,26200761:235733 -k1,395:29444510,26200761:235733 -k1,395:32583029,26200761:0 -) -(1,396:6630773,27042249:25952256,513147,134348 -k1,395:8162601,27042249:253221 -k1,395:9028584,27042249:253221 -k1,395:12067740,27042249:253221 -k1,395:13605467,27042249:253221 -k1,395:14877773,27042249:253221 -k1,395:16564922,27042249:253221 -k1,395:17477434,27042249:253220 -k1,395:20825265,27042249:253221 -k1,395:22269931,27042249:253221 -k1,395:25111169,27042249:253221 -k1,395:25895887,27042249:253221 -k1,395:28722051,27042249:253221 -k1,395:30166717,27042249:253221 -k1,395:32583029,27042249:0 -) -(1,396:6630773,27883737:25952256,513147,134348 -k1,395:9315711,27883737:224716 -k1,395:11732605,27883737:224715 -k1,395:14199963,27883737:224716 -k1,395:15234048,27883737:224715 -k1,395:18884986,27883737:224716 -k1,395:22909478,27883737:224715 -k1,395:24917429,27883737:224716 -k1,395:26877537,27883737:224715 -k1,395:31767761,27883737:224716 -k1,395:32583029,27883737:0 -) -(1,396:6630773,28725225:25952256,505283,134348 -k1,395:10085962,28725225:146276 -k1,395:10993766,28725225:146276 -k1,395:14178292,28725225:146277 -k1,395:16567210,28725225:146276 -k1,395:19475173,28725225:146276 -k1,395:22668873,28725225:146276 -k1,395:25909759,28725225:146276 -k1,395:27247481,28725225:146277 -k1,395:29981774,28725225:146276 -k1,395:31412556,28725225:146276 -k1,395:32583029,28725225:0 -) -(1,396:6630773,29566713:25952256,513147,134348 -k1,395:8049807,29566713:152878 -k1,395:10353576,29566713:152877 -k1,395:14469416,29566713:152878 -k1,395:16366206,29566713:152877 -k1,395:17689557,29566713:152878 -k1,395:20573319,29566713:152877 -k1,395:22398020,29566713:152878 -k1,395:23742342,29566713:152877 -k1,395:26424254,29566713:152878 -k1,395:27260016,29566713:152877 -k1,395:30645785,29566713:152878 -k1,395:32583029,29566713:0 -) -(1,396:6630773,30408201:25952256,505283,126483 -g1,395:8000475,30408201 -g1,395:9536638,30408201 -k1,396:32583030,30408201:20199508 -g1,396:32583030,30408201 -) -(1,398:6630773,31249689:25952256,513147,134348 -h1,397:6630773,31249689:983040,0,0 -k1,397:9595622,31249689:245105 -k1,397:12050600,31249689:245104 -k1,397:12911743,31249689:245105 -k1,397:14175933,31249689:245105 -k1,397:18165764,31249689:245104 -k1,397:19070161,31249689:245105 -k1,397:19671125,31249689:245104 -k1,397:23978807,31249689:245105 -k1,397:26885329,31249689:245105 -k1,397:27661930,31249689:245104 -k1,397:31116333,31249689:245105 -k1,397:32583029,31249689:0 -) -(1,398:6630773,32091177:25952256,513147,134348 -k1,397:8564488,32091177:235677 -k1,397:10869138,32091177:235678 -k1,397:11460675,32091177:235677 -k1,397:14460661,32091177:235677 -k1,397:15309101,32091177:235678 -k1,397:20036616,32091177:235677 -k1,397:21463738,32091177:235677 -k1,397:23397453,32091177:235677 -k1,397:26619607,32091177:235678 -k1,397:27211144,32091177:235677 -k1,397:28636299,32091177:235677 -k1,397:29523405,32091177:235678 -k1,397:30778167,32091177:235677 -k1,398:32583029,32091177:0 -) -(1,398:6630773,32932665:25952256,513147,126483 -k1,397:8762238,32932665:266966 -k1,397:9688495,32932665:266965 -k1,397:11087268,32932665:266966 -k1,397:13004430,32932665:266965 -k1,397:13930688,32932665:266966 -k1,397:17130389,32932665:266965 -k1,397:18439377,32932665:266966 -k1,397:19725427,32932665:266965 -k1,397:22756702,32932665:266966 -k1,397:23675095,32932665:266965 -k1,397:24689827,32932665:266966 -k1,397:27321331,32932665:266965 -k1,397:30614094,32932665:266966 -k1,397:31563944,32932665:266965 -k1,397:32583029,32932665:0 -) -(1,398:6630773,33774153:25952256,513147,134348 -k1,397:9536545,33774153:229282 -k1,397:10417256,33774153:229283 -k1,397:11394304,33774153:229282 -k1,397:13360945,33774153:229282 -k1,397:14609313,33774153:229283 -k1,397:17034706,33774153:229282 -k1,397:20511953,33774153:229283 -k1,397:21097095,33774153:229282 -k1,397:24264356,33774153:229282 -k1,397:26354206,33774153:229283 -k1,397:27234916,33774153:229282 -k1,397:28211964,33774153:229282 -k1,397:29750001,33774153:229283 -k1,397:30630711,33774153:229282 -k1,398:32583029,33774153:0 -) -(1,398:6630773,34615641:25952256,513147,134348 -k1,397:8415537,34615641:268261 -k1,397:9702882,34615641:268260 -k1,397:12821304,34615641:268261 -k1,397:14281009,34615641:268260 -k1,397:16062496,34615641:268261 -k1,397:19583308,34615641:268260 -k1,397:20870654,34615641:268261 -k1,397:22808771,34615641:268260 -k1,397:24937599,34615641:268261 -k1,397:25857287,34615641:268260 -k1,397:26873314,34615641:268261 -k1,397:28450328,34615641:268260 -k1,397:29370017,34615641:268261 -k1,397:30829723,34615641:268261 -k1,397:31563944,34615641:268260 -k1,397:32583029,34615641:0 -) -(1,398:6630773,35457129:25952256,513147,134348 -k1,397:9484257,35457129:176994 -k1,397:10762256,35457129:176994 -k1,397:12449200,35457129:176994 -k1,397:14681403,35457129:176994 -k1,397:15541282,35457129:176994 -k1,397:16958217,35457129:176994 -k1,397:20069913,35457129:176994 -k1,397:21713603,35457129:176994 -k1,397:22356558,35457129:176994 -k1,397:23704025,35457129:176994 -k1,397:24872579,35457129:176994 -k1,397:26994026,35457129:176994 -k1,397:27526880,35457129:176994 -k1,397:30380364,35457129:176994 -k1,397:32583029,35457129:0 -) -(1,398:6630773,36298617:25952256,513147,134348 -k1,397:7681049,36298617:288748 -k1,397:9428628,36298617:288748 -k1,397:15523866,36298617:288748 -k1,397:16471906,36298617:288748 -k1,397:18091035,36298617:288748 -k1,397:18794537,36298617:288659 -k1,397:21183714,36298617:288748 -k1,397:22491547,36298617:288748 -k1,397:25193331,36298617:288748 -k1,397:26501164,36298617:288748 -k1,397:29624999,36298617:288748 -k1,397:30932832,36298617:288748 -k1,397:32583029,36298617:0 -) -(1,398:6630773,37140105:25952256,505283,134348 -k1,397:8546063,37140105:202834 -k1,397:10033403,37140105:202834 -k1,397:13085086,37140105:202833 -k1,397:14420382,37140105:202834 -k1,397:16935982,37140105:202834 -k1,397:19273979,37140105:202834 -k1,397:21025428,37140105:202833 -k1,397:22687093,37140105:202834 -k1,397:25792517,37140105:202834 -k1,397:27202524,37140105:202834 -k1,397:29103395,37140105:202833 -k1,397:31563944,37140105:202834 -k1,397:32583029,37140105:0 -) -(1,398:6630773,37981593:25952256,513147,126483 -k1,397:8320993,37981593:194033 -k1,397:9799532,37981593:194033 -k1,397:12943997,37981593:194034 -k1,397:13493890,37981593:194033 -k1,397:15530795,37981593:194033 -k1,397:18487171,37981593:194033 -k1,397:20248825,37981593:194033 -k1,397:21991475,37981593:194034 -k1,397:23355981,37981593:194033 -k1,397:26562704,37981593:194033 -k1,397:28247026,37981593:194033 -k1,397:30139098,37981593:194034 -k1,397:30791228,37981593:194033 -k1,397:31516758,37981593:194033 -k1,397:32583029,37981593:0 -) -(1,398:6630773,38823081:25952256,505283,134348 -g1,397:9459962,38823081 -g1,397:10310619,38823081 -g1,397:12439228,38823081 -g1,397:12994317,38823081 -g1,397:15424392,38823081 -g1,397:16780331,38823081 -g1,397:18840127,38823081 -g1,397:19690784,38823081 -g1,397:20968736,38823081 -g1,397:23264462,38823081 -g1,397:24839292,38823081 -g1,397:26195231,38823081 -g1,397:28056453,38823081 -g1,397:29312122,38823081 -k1,398:32583029,38823081:332928 -g1,398:32583029,38823081 -) -(1,400:6630773,39664569:25952256,513147,126484 -h1,399:6630773,39664569:983040,0,0 -k1,399:9057477,39664569:246977 -k1,399:10800642,39664569:246978 -k1,399:11706911,39664569:246977 -k1,399:14522899,39664569:246977 -$1,399:14729993,39664569 -k1,399:16705903,39664569:0 -k1,399:17101085,39664569:0 -k1,399:17496267,39664569:0 -k1,399:17891449,39664569:0 -k1,399:23028815,39664569:0 -k1,399:23423997,39664569:0 -k1,399:24609543,39664569:0 -k1,399:25004725,39664569:0 -$1,399:27770999,39664569 -k1,399:28225070,39664569:246977 -k1,399:29663493,39664569:246978 -k1,399:31298523,39664569:246977 -k1,399:32583029,39664569:0 -) -(1,400:6630773,40506057:25952256,513147,126484 -k1,399:9447074,40506057:175855 -k1,399:12461949,40506057:175855 -k1,399:15397525,40506057:175855 -$1,399:15604619,40506057 -k1,399:17580529,40506057:0 -k1,399:17975711,40506057:0 -k1,399:18370893,40506057:0 -k1,399:18766075,40506057:0 -k1,399:23903441,40506057:0 -k1,399:24298623,40506057:0 -k1,399:25484169,40506057:0 -k1,399:25879351,40506057:0 -$1,399:27460079,40506057 -k1,399:27843028,40506057:175855 -k1,399:29010443,40506057:175855 -k1,399:31970267,40506057:175855 -k1,399:32583029,40506057:0 -) -(1,400:6630773,41347545:25952256,513147,134348 -g1,399:7849087,41347545 -g1,399:9184055,41347545 -g1,399:10574729,41347545 -g1,399:14339117,41347545 -g1,399:16940896,41347545 -g1,399:19182882,41347545 -g1,399:21117504,41347545 -g1,399:22335818,41347545 -g1,399:23670786,41347545 -g1,399:26288294,41347545 -g1,399:27435174,41347545 -g1,399:28653488,41347545 -g1,399:30158850,41347545 -k1,400:32583029,41347545:825101 -g1,400:32583029,41347545 -) -(1,401:6630773,42975465:25952256,505283,134348 -(1,401:6630773,42975465:0,0,0 -g1,401:6630773,42975465 -) -g1,401:10397127,42975465 -g1,401:11653452,42975465 -k1,401:32583028,42975465:18745916 -g1,401:32583028,42975465 -) -(1,404:6630773,44210169:25952256,505283,134348 -k1,403:8076128,44210169:248668 -k1,403:9659765,44210169:248669 -k1,403:11146408,44210169:248668 -k1,403:12046504,44210169:248668 -k1,403:13273625,44210169:248668 -k1,403:14138332,44210169:248669 -k1,403:17723438,44210169:248668 -k1,403:19366057,44210169:248668 -k1,403:20582036,44210169:248668 -k1,403:22653261,44210169:248669 -k1,403:24105170,44210169:248668 -k1,403:25935877,44210169:248668 -k1,403:26716042,44210169:248668 -k1,403:27726239,44210169:248669 -k1,403:29939676,44210169:248668 -k1,403:30959047,44210169:248668 -k1,403:32583029,44210169:0 -) -(1,404:6630773,45051657:25952256,505283,134349 -k1,403:7403575,45051657:160040 -$1,403:7403575,45051657 -k1,403:9379485,45051657:0 -k1,403:9774667,45051657:0 -k1,403:10169849,45051657:0 -k1,403:10565031,45051657:0 -k1,403:12936123,45051657:0 -k1,403:13331305,45051657:0 -k1,403:14516851,45051657:0 -k1,403:14912033,45051657:0 -k1,403:17283125,45051657:0 -k1,403:17678307,45051657:0 -(1,403:20444581,45149971:32768,0,0 -) -(1,403:22453259,45149971:32768,0,0 -) -k1,403:23671573,45051657:0 -k1,403:24066755,45051657:0 -$1,403:26437847,45051657 -k1,403:26771556,45051657:160039 -k1,403:28897676,45051657:160040 -k1,403:30161997,45051657:160039 -k1,403:31069803,45051657:160040 -k1,403:32583029,45051657:0 -) -] -(1,404:32583029,45706769:0,0,0 -g1,404:32583029,45706769 -) -) -] -(1,404:6630773,47279633:25952256,0,0 -h1,404:6630773,47279633:25952256,0,0 -) -] -(1,404:4262630,4025873:0,0,0 -[1,404:-473656,4025873:0,0,0 -(1,404:-473656,-710413:0,0,0 -(1,404:-473656,-710413:0,0,0 -g1,404:-473656,-710413 -) -g1,404:-473656,-710413 -) -] -) -] -!23859 -}22 -!11 -{23 -[1,417:4262630,47279633:28320399,43253760,0 -(1,417:4262630,4025873:0,0,0 -[1,417:-473656,4025873:0,0,0 -(1,417:-473656,-710413:0,0,0 -(1,417:-473656,-644877:0,0,0 -k1,417:-473656,-644877:-65536 +[1,488:3078558,4812305:0,0,0 +(1,488:3078558,49800853:0,16384,2228224 +k1,488:1358238,49800853:-1720320 +(1,412:1358238,49800853:1720320,16384,2228224 +(1,412:1358238,49800853:1179648,16384,0 +r1,488:2537886,49800853:1179648,16384,0 ) -(1,417:-473656,4736287:0,0,0 -k1,417:-473656,4736287:5209943 +g1,412:3062174,49800853 +(1,412:3062174,52029077:16384,1703936,0 +[1,412:3062174,52029077:25952256,1703936,0 +(1,412:3062174,51504789:25952256,1179648,0 +(1,412:3062174,51504789:16384,1179648,0 +r1,488:3078558,51504789:16384,1179648,0 ) -g1,417:-473656,-710413 +k1,412:29014430,51504789:25935872 +g1,412:29014430,51504789 ) ] ) -[1,417:6630773,47279633:25952256,43253760,0 -[1,417:6630773,4812305:25952256,786432,0 -(1,417:6630773,4812305:25952256,505283,134348 -(1,417:6630773,4812305:25952256,505283,134348 -g1,417:3078558,4812305 -[1,417:3078558,4812305:0,0,0 -(1,417:3078558,2439708:0,1703936,0 -k1,417:1358238,2439708:-1720320 -(1,223:1358238,2439708:1720320,1703936,0 -(1,223:1358238,2439708:1179648,16384,0 -r1,417:2537886,2439708:1179648,16384,0 ) -g1,223:3062174,2439708 -(1,223:3062174,2439708:16384,1703936,0 -[1,223:3062174,2439708:25952256,1703936,0 -(1,223:3062174,1915420:25952256,1179648,0 -(1,223:3062174,1915420:16384,1179648,0 -r1,417:3078558,1915420:16384,1179648,0 ) -k1,223:29014430,1915420:25935872 -g1,223:29014430,1915420 +] +[1,488:3078558,4812305:0,0,0 +(1,488:3078558,49800853:0,16384,2228224 +g1,488:29030814,49800853 +g1,488:36135244,49800853 +(1,412:36135244,49800853:1720320,16384,2228224 +(1,412:36135244,52029077:16384,1703936,0 +[1,412:36135244,52029077:25952256,1703936,0 +(1,412:36135244,51504789:25952256,1179648,0 +(1,412:36135244,51504789:16384,1179648,0 +r1,488:36151628,51504789:16384,1179648,0 +) +k1,412:62087500,51504789:25935872 +g1,412:62087500,51504789 +) +] +) +g1,412:36675916,49800853 +(1,412:36675916,49800853:1179648,16384,0 +r1,488:37855564,49800853:1179648,16384,0 +) +) +k1,488:3078556,49800853:-34777008 +) +] +g1,488:6630773,4812305 +g1,488:6630773,4812305 +g1,488:8592265,4812305 +g1,488:9205682,4812305 +k1,488:31786110,4812305:22580428 +) +) +] +[1,488:6630773,45706769:25952256,40108032,0 +(1,488:6630773,45706769:25952256,40108032,0 +(1,488:6630773,45706769:0,0,0 +g1,488:6630773,45706769 +) +[1,488:6630773,45706769:25952256,40108032,0 +[1,484:6630773,22532275:25952256,16933538,0 +[1,484:6630773,22532275:25952256,16933538,0 +(1,483:6630773,18290112:25952256,12691375,0 +g1,483:6630773,18290112 +h1,482:6630773,18290112:0,0,0 +(1,482:6630773,18290112:25952256,12691375,0 +) +g1,483:32583029,18290112 +g1,483:32583029,18290112 +) +(1,483:6630773,19810552:25952256,485622,11795 +h1,483:6630773,19810552:0,0,0 +g1,483:9295467,19810552 +k1,483:32583028,19810552:22297312 +g1,483:32583028,19810552 +) +(1,483:6630773,20675632:25952256,513147,134348 +h1,483:6630773,20675632:0,0,0 +k1,483:7977890,20675632:150430 +k1,483:10552498,20675632:150431 +k1,483:13513112,20675632:150430 +k1,483:14892342,20675632:150430 +k1,483:16555999,20675632:150431 +k1,483:19229565,20675632:150430 +k1,483:20399080,20675632:150430 +k1,483:22202983,20675632:150430 +k1,483:24358160,20675632:150431 +k1,483:25996913,20675632:150430 +k1,483:27015695,20675632:150430 +k1,483:28679352,20675632:150431 +k1,483:29848867,20675632:150430 +k1,483:32583029,20675632:0 +) +(1,483:6630773,21540712:25952256,505283,126483 +k1,483:9003836,21540712:234623 +k1,483:9889887,21540712:234623 +k1,483:11242554,21540712:234623 +k1,483:12496262,21540712:234623 +k1,483:14735631,21540712:234623 +k1,483:15598089,21540712:234623 +k1,483:17035953,21540712:234623 +k1,483:18811327,21540712:234623 +k1,483:19460757,21540712:234587 +k1,483:21607721,21540712:234623 +k1,483:22861429,21540712:234623 +k1,483:25269226,21540712:234623 +k1,483:26155277,21540712:234623 +k1,483:27408985,21540712:234623 +k1,483:28058415,21540712:234587 +k1,483:30713283,21540712:234623 +k1,483:31563944,21540712:234623 +k1,483:32583029,21540712:0 +) +(1,483:6630773,22405792:25952256,513147,126483 +g1,483:8586367,22405792 +g1,483:9859731,22405792 +k1,483:32583029,22405792:21010842 +g1,483:32583029,22405792 +) +] +] +(1,473:6630773,24498355:25952256,513147,126483 +k1,472:7337661,24498355:175391 +k1,472:8576045,24498355:175390 +k1,472:11058959,24498355:175391 +k1,472:11850387,24498355:175390 +k1,472:13044863,24498355:175391 +k1,472:14811468,24498355:175391 +k1,472:15760838,24498355:175390 +k1,472:16955314,24498355:175391 +k1,472:19914674,24498355:175391 +k1,472:21507608,24498355:175390 +k1,472:22630650,24498355:175391 +k1,472:23394553,24498355:175390 +k1,472:25994121,24498355:175391 +k1,472:26701009,24498355:175391 +k1,472:29786853,24498355:175390 +k1,472:30981329,24498355:175391 +k1,472:32583029,24498355:0 +) +(1,473:6630773,25363435:25952256,513147,134348 +k1,472:9342872,25363435:211900 +k1,472:10316299,25363435:211899 +k1,472:10884059,25363435:211900 +k1,472:12586248,25363435:211900 +k1,472:15226256,25363435:211899 +k1,472:17583149,25363435:211900 +k1,472:20459088,25363435:211900 +k1,472:21338143,25363435:211899 +k1,472:23974220,25363435:211900 +k1,472:26712533,25363435:211900 +k1,472:29089086,25363435:211899 +k1,472:29917024,25363435:211900 +k1,472:32583029,25363435:0 +) +(1,473:6630773,26228515:25952256,473825,7863 +g1,472:7481430,26228515 +k1,473:32583029,26228515:24513086 +g1,473:32583029,26228515 +) +v1,475:6630773,27093595:0,393216,0 +(1,476:6630773,29266401:25952256,2566022,0 +g1,476:6630773,29266401 +g1,476:6237557,29266401 +r1,488:6368629,29266401:131072,2566022,0 +g1,476:6567858,29266401 +g1,476:6764466,29266401 +[1,476:6764466,29266401:25818563,2566022,0 +(1,476:6764466,27401893:25818563,701514,196608 +(1,475:6764466,27401893:0,701514,196608 +r1,488:8010564,27401893:1246098,898122,196608 +k1,475:6764466,27401893:-1246098 +) +(1,475:6764466,27401893:1246098,701514,196608 +) +k1,475:8337301,27401893:326737 +k1,475:8664981,27401893:327680 +k1,475:11526650,27401893:326736 +k1,475:13247338,27401893:326737 +k1,475:17926320,27401893:326736 +k1,475:21666172,27401893:326737 +k1,475:23329843,27401893:326737 +k1,475:24404345,27401893:326736 +k1,475:27065474,27401893:326737 +k1,475:29884544,27401893:326736 +k1,475:31605232,27401893:326737 +k1,476:32583029,27401893:0 +) +(1,476:6764466,28266973:25818563,513147,126483 +k1,475:9669533,28266973:138137 +k1,475:11055475,28266973:138136 +k1,475:13108128,28266973:143589 +k1,475:15261052,28266973:143590 +k1,475:17033001,28266973:138136 +k1,475:17854023,28266973:138137 +k1,475:19011244,28266973:138136 +k1,475:23048773,28266973:138137 +k1,475:25367947,28266973:138136 +k1,475:26923628,28266973:138137 +k1,475:28009415,28266973:138136 +k1,475:30033023,28266973:138137 +k1,475:32583029,28266973:0 +) +(1,476:6764466,29132053:25818563,505283,134348 +g1,475:10480357,29132053 +g1,475:11094429,29132053 +g1,475:12285218,29132053 +k1,476:32583030,29132053:17340172 +g1,476:32583030,29132053 +) +] +g1,476:32583029,29266401 +) +h1,476:6630773,29266401:0,0,0 +(1,479:6630773,30131481:25952256,513147,126483 +h1,478:6630773,30131481:983040,0,0 +k1,478:8962497,30131481:151997 +k1,478:10706363,30131481:151996 +k1,478:13331689,30131481:151997 +k1,478:14142978,30131481:151997 +k1,478:15712519,30131481:151997 +k1,478:16396012,30131481:151996 +k1,478:17164047,30131481:151997 +k1,478:18917744,30131481:151997 +k1,478:20767122,30131481:151996 +k1,478:23288246,30131481:151997 +k1,478:24707709,30131481:151997 +k1,478:27663336,30131481:151997 +k1,478:28498217,30131481:151996 +k1,478:30692971,30131481:151997 +k1,479:32583029,30131481:0 +) +(1,479:6630773,30996561:25952256,513147,126483 +k1,478:7759428,30996561:161999 +k1,478:9315378,30996561:161999 +k1,478:10994535,30996561:161999 +k1,478:11784369,30996561:161999 +k1,478:14370545,30996561:161999 +k1,478:15689254,30996561:161999 +k1,478:16952258,30996561:161999 +k1,478:19145218,30996561:161999 +k1,478:19958646,30996561:162000 +k1,478:21139730,30996561:161999 +k1,478:21716535,30996561:161962 +k1,478:24472449,30996561:161999 +k1,478:24990308,30996561:161999 +k1,478:26378486,30996561:161999 +k1,478:28623219,30996561:161999 +k1,478:29141078,30996561:161999 +k1,478:32583029,30996561:0 +) +(1,479:6630773,31861641:25952256,513147,134348 +k1,478:9597806,31861641:223041 +k1,478:10176707,31861641:223041 +k1,478:11938532,31861641:223040 +k1,478:13109224,31861641:223041 +k1,478:16282040,31861641:223041 +k1,478:18837507,31861641:223041 +k1,478:20251992,31861641:223040 +k1,478:22505994,31861641:223041 +k1,478:23380463,31861641:223041 +k1,478:25835005,31861641:223041 +k1,478:29285038,31861641:223040 +k1,478:31089463,31861641:223041 +k1,478:32583029,31861641:0 +) +(1,479:6630773,32726721:25952256,513147,134348 +k1,478:7472321,32726721:155386 +k1,478:8575357,32726721:155385 +k1,478:11690349,32726721:155386 +k1,478:13037179,32726721:155385 +k1,478:16051901,32726721:155386 +k1,478:19279615,32726721:155386 +k1,478:22519124,32726721:155385 +k1,478:25637393,32726721:155386 +k1,478:28216955,32726721:155385 +k1,478:31229055,32726721:155386 +k1,478:32583029,32726721:0 +) +(1,479:6630773,33591801:25952256,513147,134348 +k1,478:8106996,33591801:197616 +k1,478:9323697,33591801:197616 +k1,478:13653359,33591801:197617 +k1,478:14510267,33591801:197616 +k1,478:16278781,33591801:197616 +k1,478:18637774,33591801:197616 +k1,478:20026836,33591801:197617 +k1,478:23308576,33591801:197616 +k1,478:23964289,33591801:197616 +k1,478:24693402,33591801:197616 +k1,478:27975143,33591801:197617 +k1,478:28788797,33591801:197616 +k1,478:29967487,33591801:197616 +k1,478:32583029,33591801:0 +) +(1,479:6630773,34456881:25952256,513147,134348 +k1,478:8078576,34456881:161987 +k1,478:9259648,34456881:161987 +k1,478:10756603,34456881:161987 +k1,478:13548550,34456881:161987 +k1,478:14948513,34456881:161988 +k1,478:15769792,34456881:161987 +k1,478:17667172,34456881:161987 +k1,478:18243965,34456881:161950 +k1,478:19018714,34456881:161987 +k1,478:20199786,34456881:161987 +k1,478:22782018,34456881:161987 +k1,478:23630167,34456881:161987 +k1,478:24250251,34456881:161987 +k1,478:25513244,34456881:161988 +k1,478:26694316,34456881:161987 +k1,478:27271109,34456881:161950 +k1,478:28821149,34456881:161987 +k1,478:31229055,34456881:161987 +k1,478:32583029,34456881:0 +) +(1,479:6630773,35321961:25952256,505283,134348 +k1,478:8064235,35321961:154855 +k1,478:11482783,35321961:154855 +k1,478:13104334,35321961:154855 +k1,478:13875228,35321961:154856 +k1,478:15049168,35321961:154855 +k1,478:17113087,35321961:154855 +k1,478:18459387,35321961:154855 +k1,478:19029041,35321961:154811 +k1,478:21777811,35321961:154855 +k1,478:23917752,35321961:154855 +h1,478:24888340,35321961:0,0,0 +k1,478:25043196,35321961:154856 +k1,478:27189035,35321961:154855 +k1,478:28362975,35321961:154855 +k1,478:30109700,35321961:154855 +k1,478:32583029,35321961:0 +) +(1,479:6630773,36187041:25952256,513147,134348 +k1,478:9878224,36187041:184298 +k1,478:10824049,36187041:184297 +k1,478:13432524,36187041:184298 +k1,478:15130047,36187041:184297 +k1,478:17837481,36187041:184298 +k1,478:19040863,36187041:184297 +k1,478:20878634,36187041:184298 +k1,478:22894007,36187041:184297 +k1,478:23764467,36187041:184298 +k1,478:26024290,36187041:184298 +k1,478:26821349,36187041:184297 +k1,478:28024732,36187041:184298 +k1,478:28623857,36187041:184282 +k1,478:31228400,36187041:184298 +k1,479:32583029,36187041:0 +) +(1,479:6630773,37052121:25952256,505283,134348 +k1,478:7875738,37052121:194423 +h1,478:8846326,37052121:0,0,0 +k1,478:9247843,37052121:194423 +k1,478:10633712,37052121:194424 +k1,478:11440897,37052121:194423 +k1,478:12654405,37052121:194423 +k1,478:15902806,37052121:194423 +k1,478:18343149,37052121:194424 +k1,478:21697063,37052121:194423 +k1,478:24292725,37052121:194423 +k1,478:26679327,37052121:194423 +h1,478:27649915,37052121:0,0,0 +k1,478:28225103,37052121:194424 +k1,478:29179744,37052121:194423 +k1,478:32583029,37052121:0 +) +(1,479:6630773,37917201:25952256,513147,134348 +k1,478:8556689,37917201:229189 +k1,478:10440661,37917201:229188 +k1,478:12855476,37917201:229189 +k1,478:13542761,37917201:229188 +k1,478:14303447,37917201:229189 +k1,478:16062901,37917201:229188 +k1,478:17576596,37917201:229189 +k1,478:20229962,37917201:229189 +k1,478:20990647,37917201:229188 +k1,478:22982754,37917201:229189 +k1,478:24587543,37917201:229188 +k1,478:25172592,37917201:229189 +k1,478:28160846,37917201:229188 +k1,478:29947826,37917201:229189 +k1,478:32583029,37917201:0 +) +(1,479:6630773,38782281:25952256,513147,126483 +k1,478:7923905,38782281:274047 +k1,478:9578796,38782281:274047 +k1,478:11044288,38782281:274047 +k1,478:12089038,38782281:274047 +k1,478:16027858,38782281:274047 +k1,478:16716673,38782281:273972 +k1,478:20538183,38782281:274046 +k1,478:21440065,38782281:274047 +k1,478:24138289,38782281:274047 +k1,478:25431421,38782281:274047 +k1,478:27536544,38782281:274047 +k1,478:29017764,38782281:274047 +k1,478:31821501,38782281:274047 +k1,478:32583029,38782281:0 +) +(1,479:6630773,39647361:25952256,513147,134348 +k1,478:9573188,39647361:235123 +k1,478:10827396,39647361:235123 +k1,478:13796681,39647361:235123 +k1,478:16170244,39647361:235123 +k1,478:17018129,39647361:235123 +k1,478:18272337,39647361:235123 +k1,478:19579628,39647361:235122 +k1,478:20474043,39647361:235123 +k1,478:21728251,39647361:235123 +k1,478:23872438,39647361:235123 +k1,478:26025144,39647361:235123 +k1,478:28858114,39647361:235123 +k1,478:29709275,39647361:235123 +k1,478:32583029,39647361:0 +) +(1,479:6630773,40512441:25952256,513147,134348 +k1,478:7517825,40512441:235624 +k1,478:9130359,40512441:235623 +k1,478:12518920,40512441:235624 +k1,478:13773628,40512441:235623 +k1,478:15505439,40512441:235624 +k1,478:18039410,40512441:235623 +k1,478:18926462,40512441:235624 +k1,478:21271034,40512441:235623 +k1,478:22525743,40512441:235624 +k1,478:23744406,40512441:235623 +k1,478:25171475,40512441:235624 +k1,478:28430274,40512441:235623 +k1,478:29123995,40512441:235624 +k1,478:29972380,40512441:235623 +k1,478:31227089,40512441:235624 +k1,479:32583029,40512441:0 +) +(1,479:6630773,41377521:25952256,513147,126483 +k1,478:8137306,41377521:229236 +h1,478:9314988,41377521:0,0,0 +k1,478:9717893,41377521:229235 +k1,478:11703494,41377521:229236 +k1,478:13006864,41377521:229235 +k1,478:15297863,41377521:229236 +k1,478:17444681,41377521:229235 +k1,478:18900096,41377521:229236 +k1,478:19745369,41377521:229235 +k1,478:22452521,41377521:229236 +k1,478:23700841,41377521:229235 +k1,478:25583550,41377521:229236 +k1,478:28233030,41377521:229235 +k1,478:30381160,41377521:229236 +k1,478:31478747,41377521:229235 +k1,478:32583029,41377521:0 +) +(1,479:6630773,42242601:25952256,513147,126483 +g1,478:9244348,42242601 +g1,478:10829663,42242601 +g1,478:12232133,42242601 +g1,478:14084835,42242601 +g1,478:14698907,42242601 +g1,478:18057627,42242601 +g1,478:18722817,42242601 +g1,478:19790398,42242601 +k1,479:32583029,42242601:11151609 +g1,479:32583029,42242601 +) +v1,487:6630773,43107681:0,393216,0 +(1,488:6630773,45272622:25952256,2558157,0 +g1,488:6630773,45272622 +g1,488:6237557,45272622 +r1,488:6368629,45272622:131072,2558157,0 +g1,488:6567858,45272622 +g1,488:6764466,45272622 +[1,488:6764466,45272622:25818563,2558157,0 +(1,488:6764466,43415979:25818563,701514,196608 +(1,487:6764466,43415979:0,701514,196608 +r1,488:8010564,43415979:1246098,898122,196608 +k1,487:6764466,43415979:-1246098 +) +(1,487:6764466,43415979:1246098,701514,196608 +) +k1,487:8199664,43415979:189100 +k1,487:8527344,43415979:327680 +k1,487:10499678,43415979:189099 +k1,487:11044638,43415979:189100 +k1,487:13064813,43415979:189099 +k1,487:13785410,43415979:189100 +k1,487:15266224,43415979:189099 +k1,487:15921285,43415979:189100 +k1,487:16881088,43415979:189100 +k1,487:18677130,43415979:189099 +k1,487:19397727,43415979:189100 +k1,487:22659154,43415979:189099 +k1,487:25272431,43415979:189100 +k1,487:29778387,43415979:189099 +k1,487:31563944,43415979:189100 +k1,487:32583029,43415979:0 +) +(1,488:6764466,44281059:25818563,513147,134348 +k1,487:9519552,44281059:198527 +k1,487:10377372,44281059:198528 +k1,487:11594984,44281059:198527 +k1,487:13574124,44281059:198527 +k1,487:14128511,44281059:198527 +k1,487:16602449,44281059:198528 +k1,487:17971449,44281059:198527 +k1,487:19302438,44281059:198527 +k1,487:20767122,44281059:198528 +k1,487:22942870,44281059:198527 +k1,487:24839435,44281059:198527 +k1,487:27561098,44281059:198527 +k1,487:29255813,44281059:198528 +k1,487:31021961,44281059:198527 +k1,488:32583029,44281059:0 +) +(1,488:6764466,45146139:25818563,513147,126483 +k1,487:8497238,45146139:190054 +k1,487:9303331,45146139:190055 +k1,487:10696626,45146139:190054 +k1,487:12642390,45146139:190054 +k1,487:14649103,45146139:190055 +k1,487:17444868,45146139:190054 +k1,487:18626482,45146139:190054 +k1,487:21155516,45146139:190054 +k1,487:22894187,45146139:190055 +k1,487:24240951,45146139:190054 +k1,487:26291572,45146139:190054 +k1,487:27429278,45146139:190055 +k1,487:29744009,45146139:190054 +k1,487:32583029,45146139:0 +) +] +g1,488:32583029,45272622 +) +] +(1,488:32583029,45706769:0,0,0 +g1,488:32583029,45706769 +) +) +] +(1,488:6630773,47279633:25952256,0,0 +h1,488:6630773,47279633:25952256,0,0 +) +] +(1,488:4262630,4025873:0,0,0 +[1,488:-473656,4025873:0,0,0 +(1,488:-473656,-710413:0,0,0 +(1,488:-473656,-710413:0,0,0 +g1,488:-473656,-710413 +) +g1,488:-473656,-710413 +) +] +) +] +!17478 +}28 +Input:210:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:211:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:212:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:213:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!383 +{29 +[1,501:4262630,47279633:28320399,43253760,0 +(1,501:4262630,4025873:0,0,0 +[1,501:-473656,4025873:0,0,0 +(1,501:-473656,-710413:0,0,0 +(1,501:-473656,-644877:0,0,0 +k1,501:-473656,-644877:-65536 +) +(1,501:-473656,4736287:0,0,0 +k1,501:-473656,4736287:5209943 +) +g1,501:-473656,-710413 +) +] +) +[1,501:6630773,47279633:25952256,43253760,0 +[1,501:6630773,4812305:25952256,786432,0 +(1,501:6630773,4812305:25952256,505283,134348 +(1,501:6630773,4812305:25952256,505283,134348 +g1,501:3078558,4812305 +[1,501:3078558,4812305:0,0,0 +(1,501:3078558,2439708:0,1703936,0 +k1,501:1358238,2439708:-1720320 +(1,412:1358238,2439708:1720320,1703936,0 +(1,412:1358238,2439708:1179648,16384,0 +r1,501:2537886,2439708:1179648,16384,0 +) +g1,412:3062174,2439708 +(1,412:3062174,2439708:16384,1703936,0 +[1,412:3062174,2439708:25952256,1703936,0 +(1,412:3062174,1915420:25952256,1179648,0 +(1,412:3062174,1915420:16384,1179648,0 +r1,501:3078558,1915420:16384,1179648,0 +) +k1,412:29014430,1915420:25935872 +g1,412:29014430,1915420 ) ] ) ) ) ] -[1,417:3078558,4812305:0,0,0 -(1,417:3078558,2439708:0,1703936,0 -g1,417:29030814,2439708 -g1,417:36135244,2439708 -(1,223:36135244,2439708:1720320,1703936,0 -(1,223:36135244,2439708:16384,1703936,0 -[1,223:36135244,2439708:25952256,1703936,0 -(1,223:36135244,1915420:25952256,1179648,0 -(1,223:36135244,1915420:16384,1179648,0 -r1,417:36151628,1915420:16384,1179648,0 +[1,501:3078558,4812305:0,0,0 +(1,501:3078558,2439708:0,1703936,0 +g1,501:29030814,2439708 +g1,501:36135244,2439708 +(1,412:36135244,2439708:1720320,1703936,0 +(1,412:36135244,2439708:16384,1703936,0 +[1,412:36135244,2439708:25952256,1703936,0 +(1,412:36135244,1915420:25952256,1179648,0 +(1,412:36135244,1915420:16384,1179648,0 +r1,501:36151628,1915420:16384,1179648,0 ) -k1,223:62087500,1915420:25935872 -g1,223:62087500,1915420 +k1,412:62087500,1915420:25935872 +g1,412:62087500,1915420 ) ] ) -g1,223:36675916,2439708 -(1,223:36675916,2439708:1179648,16384,0 -r1,417:37855564,2439708:1179648,16384,0 +g1,412:36675916,2439708 +(1,412:36675916,2439708:1179648,16384,0 +r1,501:37855564,2439708:1179648,16384,0 ) ) -k1,417:3078556,2439708:-34777008 +k1,501:3078556,2439708:-34777008 ) ] -[1,417:3078558,4812305:0,0,0 -(1,417:3078558,49800853:0,16384,2228224 -k1,417:1358238,49800853:-1720320 -(1,223:1358238,49800853:1720320,16384,2228224 -(1,223:1358238,49800853:1179648,16384,0 -r1,417:2537886,49800853:1179648,16384,0 +[1,501:3078558,4812305:0,0,0 +(1,501:3078558,49800853:0,16384,2228224 +k1,501:1358238,49800853:-1720320 +(1,412:1358238,49800853:1720320,16384,2228224 +(1,412:1358238,49800853:1179648,16384,0 +r1,501:2537886,49800853:1179648,16384,0 ) -g1,223:3062174,49800853 -(1,223:3062174,52029077:16384,1703936,0 -[1,223:3062174,52029077:25952256,1703936,0 -(1,223:3062174,51504789:25952256,1179648,0 -(1,223:3062174,51504789:16384,1179648,0 -r1,417:3078558,51504789:16384,1179648,0 +g1,412:3062174,49800853 +(1,412:3062174,52029077:16384,1703936,0 +[1,412:3062174,52029077:25952256,1703936,0 +(1,412:3062174,51504789:25952256,1179648,0 +(1,412:3062174,51504789:16384,1179648,0 +r1,501:3078558,51504789:16384,1179648,0 ) -k1,223:29014430,51504789:25935872 -g1,223:29014430,51504789 -) -] -) -) -) -] -[1,417:3078558,4812305:0,0,0 -(1,417:3078558,49800853:0,16384,2228224 -g1,417:29030814,49800853 -g1,417:36135244,49800853 -(1,223:36135244,49800853:1720320,16384,2228224 -(1,223:36135244,52029077:16384,1703936,0 -[1,223:36135244,52029077:25952256,1703936,0 -(1,223:36135244,51504789:25952256,1179648,0 -(1,223:36135244,51504789:16384,1179648,0 -r1,417:36151628,51504789:16384,1179648,0 -) -k1,223:62087500,51504789:25935872 -g1,223:62087500,51504789 -) -] -) -g1,223:36675916,49800853 -(1,223:36675916,49800853:1179648,16384,0 -r1,417:37855564,49800853:1179648,16384,0 -) -) -k1,417:3078556,49800853:-34777008 -) -] -g1,417:6630773,4812305 -k1,417:24492612,4812305:17463380 -g1,417:26454104,4812305 -g1,417:27638994,4812305 -g1,417:29336376,4812305 -g1,417:30135259,4812305 -g1,417:32168841,4812305 -) -) -] -[1,417:6630773,45706769:25952256,40108032,0 -(1,417:6630773,45706769:25952256,40108032,0 -(1,417:6630773,45706769:0,0,0 -g1,417:6630773,45706769 -) -[1,417:6630773,45706769:25952256,40108032,0 -(1,404:6630773,6254097:25952256,513147,134348 -k1,403:8258133,6254097:160664 -k1,403:9070224,6254097:160663 -k1,403:10309611,6254097:160664 -k1,403:11417926,6254097:160664 -k1,403:14105002,6254097:160663 -k1,403:17360276,6254097:160664 -k1,403:19742611,6254097:160664 -k1,403:20554703,6254097:160664 -k1,403:21734451,6254097:160663 -k1,403:23650825,6254097:160664 -k1,403:25807716,6254097:160664 -k1,403:28802811,6254097:160663 -k1,403:30154920,6254097:160664 -k1,403:32583029,6254097:0 -) -(1,404:6630773,7095585:25952256,513147,134348 -k1,403:9361254,7095585:159504 -k1,403:10172187,7095585:159505 -k1,403:11350776,7095585:159504 -k1,403:12910130,7095585:159505 -k1,403:16016133,7095585:159504 -k1,403:18385512,7095585:159505 -k1,403:21206433,7095585:159504 -k1,403:23035795,7095585:159505 -k1,403:24775372,7095585:159504 -k1,403:25586305,7095585:159505 -k1,403:26764894,7095585:159504 -k1,403:30560992,7095585:159505 -k1,403:31379788,7095585:159504 -k1,403:32583029,7095585:0 -) -(1,404:6630773,7937073:25952256,505283,126483 -g1,403:8412041,7937073 -g1,403:9715552,7937073 -g1,403:10662547,7937073 -g1,403:14110396,7937073 -g1,403:14995787,7937073 -g1,403:16440855,7937073 -k1,404:32583029,7937073:13248759 -g1,404:32583029,7937073 -) -(1,406:6630773,8778561:25952256,513147,134348 -h1,405:6630773,8778561:983040,0,0 -k1,405:9789561,8778561:209668 -k1,405:10990790,8778561:209669 -k1,405:13144256,8778561:209668 -k1,405:14115452,8778561:209668 -k1,405:16985227,8778561:209669 -k1,405:17965598,8778561:209668 -k1,405:20366136,8778561:209669 -k1,405:22317096,8778561:209668 -k1,405:23139526,8778561:209668 -k1,405:23705055,8778561:209669 -k1,405:25183500,8778561:209668 -k1,405:26891321,8778561:209668 -k1,405:28385496,8778561:209669 -k1,405:29880980,8778561:209668 -k1,405:32583029,8778561:0 -) -(1,406:6630773,9620049:25952256,513147,134348 -k1,405:8288783,9620049:155925 -k1,405:12456167,9620049:155925 -k1,405:13549913,9620049:155926 -k1,405:15660122,9620049:155925 -k1,405:16807607,9620049:155925 -k1,405:17319392,9620049:155925 -k1,405:18829292,9620049:155926 -k1,405:21537844,9620049:155925 -k1,405:22931744,9620049:155925 -k1,405:23746961,9620049:155925 -k1,405:26401119,9620049:155926 -k1,405:28184303,9620049:155925 -k1,405:28999520,9620049:155925 -k1,405:32583029,9620049:0 -) -(1,406:6630773,10461537:25952256,505283,126483 -k1,405:8103149,10461537:187870 -k1,405:9821284,10461537:187869 -k1,405:10660582,10461537:187870 -k1,405:11596218,10461537:187870 -k1,405:13535210,10461537:187870 -k1,405:14540968,10461537:187869 -k1,405:17255251,10461537:187870 -k1,405:20537731,10461537:187870 -k1,405:23012808,10461537:187870 -k1,405:25101876,10461537:187869 -k1,405:27649697,10461537:187870 -k1,405:31900144,10461537:187870 -k1,405:32583029,10461537:0 -) -(1,406:6630773,11303025:25952256,513147,134348 -k1,405:8554691,11303025:221948 -k1,405:11957102,11303025:221949 -k1,405:14345015,11303025:221948 -k1,405:16521248,11303025:221949 -k1,405:17394624,11303025:221948 -k1,405:18695296,11303025:221949 -k1,405:20556299,11303025:221948 -k1,405:23887275,11303025:221948 -k1,405:25128309,11303025:221949 -k1,405:27016182,11303025:221948 -k1,405:27897423,11303025:221949 -k1,405:31391584,11303025:221948 -k1,405:32583029,11303025:0 -) -(1,406:6630773,12144513:25952256,505283,134348 -g1,405:9328234,12144513 -g1,405:10546548,12144513 -g1,405:12327816,12144513 -k1,406:32583030,12144513:16787704 -g1,406:32583030,12144513 -) -(1,407:6630773,14952081:25952256,32768,229376 -(1,407:6630773,14952081:0,32768,229376 -(1,407:6630773,14952081:5505024,32768,229376 -r1,417:12135797,14952081:5505024,262144,229376 -) -k1,407:6630773,14952081:-5505024 -) -(1,407:6630773,14952081:25952256,32768,0 -r1,417:32583029,14952081:25952256,32768,0 -) -) -(1,407:6630773,16556409:25952256,606339,161218 -(1,407:6630773,16556409:1974731,573309,14155 -g1,407:6630773,16556409 -g1,407:8605504,16556409 -) -g1,407:11813360,16556409 -k1,407:32583030,16556409:17773364 -g1,407:32583030,16556409 -) -(1,410:6630773,17791113:25952256,513147,134348 -k1,409:7641994,17791113:266732 -k1,409:8927810,17791113:266731 -k1,409:10377467,17791113:266732 -k1,409:11303490,17791113:266731 -k1,409:13021844,17791113:266732 -k1,409:15706198,17791113:266731 -k1,409:16328790,17791113:266732 -k1,409:18874208,17791113:266731 -k1,409:20287165,17791113:266732 -k1,409:21757137,17791113:266731 -k1,409:23180579,17791113:266732 -k1,409:25057530,17791113:266731 -k1,409:29093237,17791113:266732 -k1,409:30307619,17791113:266731 -k1,409:32583029,17791113:0 -) -(1,410:6630773,18632601:25952256,505283,134348 -k1,409:9305833,18632601:272510 -k1,409:10387714,18632601:272511 -k1,409:12881895,18632601:272510 -k1,409:15968522,18632601:272511 -k1,409:17070062,18632601:272510 -k1,409:21007346,18632601:272511 -k1,409:22828472,18632601:272510 -k1,409:27453229,18632601:272511 -k1,409:28411901,18632601:272510 -k1,409:29455115,18632601:272511 -k1,409:32051532,18632601:272510 -k1,409:32583029,18632601:0 -) -(1,410:6630773,19474089:25952256,505283,134348 -k1,409:8036050,19474089:234804 -k1,409:9375136,19474089:234804 -k1,409:11022241,19474089:234804 -k1,409:12457009,19474089:234804 -k1,409:13465793,19474089:234804 -k1,409:18100684,19474089:234804 -k1,409:20390042,19474089:234804 -k1,409:22599659,19474089:235017 -k1,409:23304356,19474089:234804 -k1,409:24671622,19474089:234804 -k1,409:26622159,19474089:234804 -k1,409:28727361,19474089:234804 -k1,409:29981250,19474089:234804 -k1,409:32583029,19474089:0 -) -(1,410:6630773,20315577:25952256,513147,134348 -k1,409:7513707,20315577:223642 -k1,409:12089594,20315577:223641 -k1,409:12929274,20315577:223642 -k1,409:13741428,20315577:223641 -k1,409:15431766,20315577:223642 -k1,409:18972840,20315577:223642 -k1,409:20387926,20315577:223641 -k1,409:24541762,20315577:223642 -k1,409:25393238,20315577:223641 -k1,409:27968312,20315577:223642 -k1,409:30146892,20315577:223641 -k1,409:32051532,20315577:223642 -k1,409:32583029,20315577:0 -) -(1,410:6630773,21157065:25952256,513147,134348 -g1,409:7185862,21157065 -g1,409:8967130,21157065 -g1,409:10988915,21157065 -g1,409:12736760,21157065 -g1,409:14382369,21157065 -g1,409:15390968,21157065 -g1,409:16206235,21157065 -g1,409:17424549,21157065 -g1,409:19610830,21157065 -g1,409:20469351,21157065 -k1,410:32583029,21157065:7311855 -g1,410:32583029,21157065 -) -] -(1,417:32583029,45706769:0,0,0 -g1,417:32583029,45706769 -) -) -] -(1,417:6630773,47279633:25952256,0,0 -h1,417:6630773,47279633:25952256,0,0 -) -] -(1,417:4262630,4025873:0,0,0 -[1,417:-473656,4025873:0,0,0 -(1,417:-473656,-710413:0,0,0 -(1,417:-473656,-710413:0,0,0 -g1,417:-473656,-710413 -) -g1,417:-473656,-710413 -) -] -) -] -!9479 -}23 -!10 -{24 -[1,438:4262630,47279633:28320399,43253760,11795 -(1,438:4262630,4025873:0,0,0 -[1,438:-473656,4025873:0,0,0 -(1,438:-473656,-710413:0,0,0 -(1,438:-473656,-644877:0,0,0 -k1,438:-473656,-644877:-65536 +k1,412:29014430,51504789:25935872 +g1,412:29014430,51504789 +) +] +) +) +) +] +[1,501:3078558,4812305:0,0,0 +(1,501:3078558,49800853:0,16384,2228224 +g1,501:29030814,49800853 +g1,501:36135244,49800853 +(1,412:36135244,49800853:1720320,16384,2228224 +(1,412:36135244,52029077:16384,1703936,0 +[1,412:36135244,52029077:25952256,1703936,0 +(1,412:36135244,51504789:25952256,1179648,0 +(1,412:36135244,51504789:16384,1179648,0 +r1,501:36151628,51504789:16384,1179648,0 +) +k1,412:62087500,51504789:25935872 +g1,412:62087500,51504789 +) +] +) +g1,412:36675916,49800853 +(1,412:36675916,49800853:1179648,16384,0 +r1,501:37855564,49800853:1179648,16384,0 +) +) +k1,501:3078556,49800853:-34777008 +) +] +g1,501:6630773,4812305 +k1,501:21916392,4812305:14488701 +g1,501:22703479,4812305 +g1,501:23888369,4812305 +g1,501:27214321,4812305 +g1,501:28624000,4812305 +g1,501:29808890,4812305 +) +) +] +[1,501:6630773,45706769:25952256,40108032,0 +(1,501:6630773,45706769:25952256,40108032,0 +(1,501:6630773,45706769:0,0,0 +g1,501:6630773,45706769 +) +[1,501:6630773,45706769:25952256,40108032,0 +v1,488:6630773,6254097:0,393216,0 +(1,488:6630773,11698856:25952256,5837975,0 +g1,488:6630773,11698856 +g1,488:6237557,11698856 +r1,501:6368629,11698856:131072,5837975,0 +g1,488:6567858,11698856 +g1,488:6764466,11698856 +[1,488:6764466,11698856:25818563,5837975,0 +(1,488:6764466,6374028:25818563,513147,134348 +k1,487:8331074,6374028:177245 +k1,487:11062912,6374028:177245 +k1,487:12431602,6374028:177245 +k1,487:14553956,6374028:177245 +k1,487:15343963,6374028:177245 +k1,487:18101359,6374028:177244 +k1,487:22410649,6374028:177245 +k1,487:23779339,6374028:177245 +k1,487:25952811,6374028:177245 +k1,487:29699147,6374028:177245 +k1,487:31635378,6374028:177245 +k1,487:32583029,6374028:0 +) +(1,488:6764466,7239108:25818563,513147,134348 +k1,487:10446114,7239108:185958 +k1,487:12128260,7239108:185959 +k1,487:15217463,7239108:185958 +k1,487:17314451,7239108:185958 +k1,487:20147409,7239108:185959 +k1,487:20992659,7239108:185958 +k1,487:22674804,7239108:185958 +k1,487:24052208,7239108:185959 +k1,487:25525948,7239108:185958 +k1,487:27407322,7239108:185958 +k1,487:29309014,7239108:185959 +k1,487:29953069,7239108:185958 +k1,487:32583029,7239108:0 +) +(1,488:6764466,8104188:25818563,513147,126483 +k1,487:7611683,8104188:195789 +k1,487:10237546,8104188:195788 +k1,487:11624780,8104188:195789 +k1,487:14449873,8104188:195789 +k1,487:18721345,8104188:195788 +k1,487:19603296,8104188:195789 +k1,487:21077692,8104188:195789 +k1,487:22661533,8104188:195788 +k1,487:24251273,8104188:195789 +k1,487:26646450,8104188:195789 +k1,487:30013525,8104188:195788 +k1,487:31400759,8104188:195789 +k1,488:32583029,8104188:0 +) +(1,488:6764466,8969268:25818563,513147,134348 +k1,487:9777461,8969268:167422 +k1,487:10612038,8969268:167421 +k1,487:11194271,8969268:167390 +k1,487:14445817,8969268:167422 +k1,487:15804684,8969268:167422 +k1,487:18133482,8969268:167421 +k1,487:19849520,8969268:167422 +k1,487:21187415,8969268:167422 +k1,487:22487298,8969268:167421 +k1,487:24953068,8969268:167422 +k1,487:26068141,8969268:167422 +k1,487:27438803,8969268:167421 +k1,487:29692236,8969268:167422 +k1,487:32583029,8969268:0 +) +(1,488:6764466,9834348:25818563,513147,134348 +k1,487:8160383,9834348:204472 +k1,487:10489533,9834348:204473 +k1,487:12083368,9834348:204472 +k1,487:15016104,9834348:204472 +k1,487:17644753,9834348:204472 +k1,487:19135042,9834348:204473 +k1,487:22512767,9834348:204472 +k1,487:25243652,9834348:204472 +k1,487:26395775,9834348:204472 +k1,487:27583288,9834348:204473 +k1,487:30121497,9834348:204472 +k1,487:32583029,9834348:0 +) +(1,488:6764466,10699428:25818563,513147,134348 +k1,487:8885211,10699428:235274 +k1,487:9651982,10699428:235274 +k1,487:10953528,10699428:235275 +k1,487:12564403,10699428:235274 +k1,487:14776898,10699428:235274 +k1,487:15959823,10699428:235274 +k1,487:18775250,10699428:235275 +k1,487:23316239,10699428:235274 +k1,487:24623682,10699428:235274 +k1,487:26144772,10699428:235274 +k1,487:27327698,10699428:235275 +k1,487:30061204,10699428:235274 +k1,487:31923737,10699428:235274 +k1,487:32583029,10699428:0 +) +(1,488:6764466,11564508:25818563,513147,134348 +g1,487:7982780,11564508 +g1,487:10956148,11564508 +g1,487:11838262,11564508 +g1,487:15524662,11564508 +g1,487:17320348,11564508 +g1,487:18913528,11564508 +g1,487:23316236,11564508 +g1,487:24131503,11564508 +g1,487:25349817,11564508 +g1,487:28103639,11564508 +g1,487:28962160,11564508 +k1,488:32583029,11564508:2057835 +g1,488:32583029,11564508 +) +] +g1,488:32583029,11698856 +) +h1,488:6630773,11698856:0,0,0 +(1,491:6630773,12563936:25952256,513147,126483 +h1,490:6630773,12563936:983040,0,0 +k1,490:9088591,12563936:278091 +k1,490:12530105,12563936:278091 +k1,490:15141933,12563936:278091 +k1,490:16087180,12563936:278091 +k1,490:18789448,12563936:278091 +k1,490:20352045,12563936:278091 +k1,490:21786846,12563936:278091 +k1,490:24364595,12563936:278091 +k1,490:25834131,12563936:278091 +k1,490:27535009,12563936:278091 +k1,490:30047222,12563936:278091 +k1,490:31773659,12563936:278091 +k1,490:32583029,12563936:0 +) +(1,491:6630773,13429016:25952256,505283,134348 +k1,490:8377436,13429016:144963 +k1,490:11008180,13429016:144963 +k1,490:14207121,13429016:144963 +k1,490:17101975,13429016:144963 +k1,490:18740504,13429016:144963 +k1,490:19571629,13429016:144963 +k1,490:21643351,13429016:144964 +k1,490:23413606,13429016:144963 +k1,490:24426689,13429016:150629 +k1,490:25155577,13429016:144963 +k1,490:26491985,13429016:144963 +k1,490:30750642,13429016:144963 +k1,490:32583029,13429016:0 +) +(1,491:6630773,14294096:25952256,530548,132809 +k1,490:7451594,14294096:289324 +k1,490:9026733,14294096:289323 +k1,490:9671917,14294096:289324 +k1,490:11920111,14294096:289323 +k1,490:14543172,14294096:289324 +k1,490:16117002,14294096:289324 +k1,490:17854671,14294096:289323 +k1,490:18953365,14294096:289324 +k1,490:21169446,14294096:289323 +k1,490:22144932,14294096:289324 +k1,490:23712863,14294096:289324 +k1,490:24688348,14294096:289323 +k1,490:25333532,14294096:289324 +k1,490:27391672,14294096:289323 +k1,490:29886283,14294096:289324 +$1,490:30093377,14294096 +k1,490:32168087,14294096:0 +k1,491:32583029,14294096:0 +) +(1,491:6630773,15159176:25952256,530548,134348 +k1,490:7045715,15159176:0 +k1,490:7460657,15159176:0 +k1,490:9535367,15159176:0 +k1,490:9950309,15159176:0 +$1,490:12439961,15159176 +k1,490:12893200,15159176:246145 +k1,490:16212329,15159176:246146 +k1,490:18615919,15159176:246145 +k1,490:20893026,15159176:246146 +k1,490:21790599,15159176:246145 +k1,490:23530310,15159176:246145 +k1,490:24132316,15159176:246146 +k1,490:26511003,15159176:246145 +k1,490:27953836,15159176:246146 +k1,490:30624158,15159176:246145 +k1,490:32583029,15159176:0 +) +(1,491:6630773,16024256:25952256,513147,134348 +k1,490:7361499,16024256:199229 +k1,490:9073955,16024256:199230 +k1,490:12093854,16024256:199229 +k1,490:14851610,16024256:199230 +k1,490:15406699,16024256:199229 +k1,490:16874706,16024256:199230 +k1,490:19817927,16024256:199229 +k1,490:21213843,16024256:199229 +k1,490:22793917,16024256:199230 +k1,490:25803330,16024256:199229 +k1,490:26534057,16024256:199230 +k1,490:28895974,16024256:199229 +k1,490:30114289,16024256:199230 +k1,490:31966991,16024256:199229 +k1,490:32583029,16024256:0 +) +(1,491:6630773,16889336:25952256,513147,126483 +k1,490:7651407,16889336:254518 +k1,490:9776977,16889336:254517 +k1,490:12677183,16889336:254518 +k1,490:14123146,16889336:254518 +k1,490:16336535,16889336:254518 +k1,490:19255091,16889336:254517 +k1,490:20501169,16889336:254518 +k1,490:22222383,16889336:254518 +k1,490:26015845,16889336:254518 +k1,490:26956524,16889336:254517 +k1,490:31335223,16889336:254518 +k1,490:32583029,16889336:0 +) +(1,491:6630773,17754416:25952256,513147,126483 +g1,490:9589068,17754416 +g1,490:10979742,17754416 +g1,490:11865133,17754416 +g1,490:15358857,17754416 +g1,490:19257593,17754416 +k1,491:32583029,17754416:10392700 +g1,491:32583029,17754416 +) +(1,493:6630773,18619496:25952256,513147,134348 +h1,492:6630773,18619496:983040,0,0 +k1,492:10330226,18619496:292236 +k1,492:11813907,18619496:292236 +k1,492:13808112,18619496:292235 +k1,492:15517892,18619496:292236 +k1,492:18336541,18619496:292236 +k1,492:20662359,18619496:292236 +k1,492:21613886,18619496:292235 +k1,492:23414761,18619496:292236 +k1,492:25254302,18619496:292236 +k1,492:26737983,18619496:292236 +k1,492:28722358,18619496:292235 +k1,492:31526589,18619496:292236 +k1,492:32583029,18619496:0 +) +(1,493:6630773,19484576:25952256,513147,134348 +k1,492:9431607,19484576:214128 +k1,492:11566595,19484576:214128 +k1,492:13666849,19484576:214128 +k1,492:14900062,19484576:214128 +k1,492:16852205,19484576:214128 +k1,492:17725625,19484576:214128 +k1,492:20302981,19484576:214128 +k1,492:21241936,19484576:214127 +k1,492:22740570,19484576:214128 +k1,492:24551155,19484576:214128 +k1,492:25574653,19484576:214128 +k1,492:26144641,19484576:214128 +k1,492:27748132,19484576:214128 +k1,492:30516853,19484576:214128 +k1,492:31835263,19484576:214128 +k1,492:32583029,19484576:0 +) +(1,493:6630773,20349656:25952256,513147,126483 +k1,492:10541187,20349656:252850 +k1,492:11985481,20349656:252849 +k1,492:13691920,20349656:252850 +k1,492:17317253,20349656:252850 +k1,492:19036798,20349656:252849 +k1,492:20099018,20349656:252850 +k1,492:20707727,20349656:252849 +k1,492:23722920,20349656:252850 +k1,492:27225700,20349656:252850 +k1,492:28296438,20349656:252849 +k1,492:31966991,20349656:252850 +k1,492:32583029,20349656:0 +) +(1,493:6630773,21214736:25952256,513147,134348 +g1,492:9108689,21214736 +h1,492:10651407,21214736:0,0,0 +g1,492:10850636,21214736 +g1,492:11859235,21214736 +g1,492:13556617,21214736 +h1,492:14353535,21214736:0,0,0 +g1,492:14726434,21214736 +g1,492:16623701,21214736 +g1,492:19409636,21214736 +g1,492:21002816,21214736 +g1,492:21616888,21214736 +g1,492:22684469,21214736 +g1,492:24391681,21214736 +g1,492:26812581,21214736 +g1,492:28325152,21214736 +g1,492:29140419,21214736 +g1,492:29695508,21214736 +k1,493:32583029,21214736:792990 +g1,493:32583029,21214736 +) +v1,495:6630773,22079816:0,393216,0 +(1,496:6630773,28649697:25952256,6963097,0 +g1,496:6630773,28649697 +g1,496:6237557,28649697 +r1,501:6368629,28649697:131072,6963097,0 +g1,496:6567858,28649697 +g1,496:6764466,28649697 +[1,496:6764466,28649697:25818563,6963097,0 +(1,496:6764466,22494358:25818563,807758,219026 +(1,495:6764466,22494358:0,807758,219026 +r1,501:7908217,22494358:1143751,1026784,219026 +k1,495:6764466,22494358:-1143751 +) +(1,495:6764466,22494358:1143751,807758,219026 +) +k1,495:8158864,22494358:250647 +k1,495:8486544,22494358:327680 +k1,495:9365026,22494358:250647 +k1,495:10818914,22494358:250647 +k1,495:12651600,22494358:250647 +k1,495:13115187,22494358:250595 +k1,495:15795909,22494358:250647 +k1,495:17422157,22494358:250647 +k1,495:18028664,22494358:250647 +k1,495:21371300,22494358:250647 +k1,495:22281238,22494358:250646 +k1,495:25394498,22494358:250647 +k1,495:26454515,22494358:250647 +k1,495:27724247,22494358:250647 +k1,495:29067379,22494358:250647 +k1,495:29985182,22494358:250647 +k1,495:32583029,22494358:0 +) +(1,496:6764466,23359438:25818563,513147,134348 +k1,495:8232170,23359438:276259 +k1,495:9317800,23359438:276260 +k1,495:12456672,23359438:276259 +k1,495:13680582,23359438:276259 +k1,495:15658812,23359438:276260 +k1,495:17526285,23359438:276259 +k1,495:18631574,23359438:276259 +k1,495:20519363,23359438:276259 +k1,495:22445820,23359438:276260 +k1,495:24544635,23359438:276259 +k1,495:27418741,23359438:276259 +k1,495:29875384,23359438:276260 +k1,495:31563944,23359438:276259 +k1,495:32583029,23359438:0 +) +(1,496:6764466,24224518:25818563,505283,134348 +k1,495:11764386,24224518:173849 +k1,495:14722204,24224518:173849 +k1,495:17454579,24224518:173849 +k1,495:20556577,24224518:173849 +k1,495:22118479,24224518:173849 +k1,495:24089326,24224518:173850 +k1,495:25454620,24224518:173849 +k1,495:27136452,24224518:173849 +k1,495:27923063,24224518:173849 +k1,495:29703199,24224518:173849 +k1,495:30232908,24224518:173849 +k1,495:32583029,24224518:0 +) +(1,496:6764466,25089598:25818563,513147,134348 +k1,495:8444547,25089598:170131 +k1,495:9273971,25089598:170132 +k1,495:10463187,25089598:170131 +k1,495:13057495,25089598:170131 +k1,495:14936151,25089598:170132 +k1,495:16803009,25089598:170131 +k1,495:18662658,25089598:170131 +k1,495:21434569,25089598:170132 +k1,495:22935081,25089598:170131 +k1,495:23756640,25089598:170131 +k1,495:25019257,25089598:170132 +k1,495:25821155,25089598:170131 +k1,495:27372130,25089598:170131 +k1,495:28733707,25089598:170132 +k1,495:30605808,25089598:170131 +k1,496:32583029,25089598:0 +) +(1,496:6764466,25954678:25818563,530548,132809 +k1,495:9892272,25954678:278300 +k1,495:13906124,25954678:278300 +k1,495:15288707,25954678:278301 +k1,495:16314773,25954678:278300 +k1,495:20488533,25954678:278300 +k1,495:21379595,25954678:278300 +$1,495:21379595,25954678 +k1,495:23454305,25954678:0 +k1,495:23869247,25954678:0 +k1,495:24284189,25954678:0 +k1,495:24699131,25954678:0 +k1,495:26773841,25954678:0 +k1,495:27188783,25954678:0 +k1,495:28018667,25954678:0 +k1,495:28433609,25954678:0 +k1,495:32168087,25954678:0 +k1,496:32583029,25954678:0 +) +(1,496:6764466,26819758:25818563,530548,134348 +$1,495:11743770,26819758 +k1,495:12122646,26819758:205206 +k1,495:15686571,26819758:205205 +k1,495:19729565,26819758:205206 +k1,495:20744140,26819758:205205 +k1,495:21968431,26819758:205206 +k1,495:23266121,26819758:205205 +k1,495:24138483,26819758:205206 +k1,495:26941535,26819758:205205 +k1,495:30127318,26819758:205206 +k1,495:30688383,26819758:205205 +k1,495:32583029,26819758:0 +) +(1,496:6764466,27684838:25818563,530548,134348 +k1,495:8009983,27684838:253957 +k1,495:11047909,27684838:253957 +k1,495:13860392,27684838:253957 +k1,495:15133434,27684838:253957 +k1,495:18618971,27684838:253957 +k1,495:20669925,27684838:253957 +k1,495:22592428,27684838:253956 +k1,495:23459147,27684838:253957 +k1,495:24732189,27684838:253957 +k1,495:26568185,27684838:253957 +k1,495:29226658,27684838:253957 +k1,495:30093377,27684838:253957 +$1,495:30093377,27684838 +k1,495:32168087,27684838:0 +k1,496:32583029,27684838:0 +) +(1,496:6764466,28549918:25818563,538806,99779 +g1,495:7179408,28549918 +g1,495:7594350,28549918 +g1,495:8839176,28549918 +g1,495:9254118,28549918 +(1,495:12158712,28648232:32768,0,0 +) +g1,495:13851248,28549918 +g1,495:14266190,28549918 +$1,495:16340900,28549918 +k1,496:32583029,28549918:16068459 +g1,496:32583029,28549918 +) +] +g1,496:32583029,28649697 +) +h1,496:6630773,28649697:0,0,0 +(1,498:6630773,30766515:25952256,555811,139132 +(1,498:6630773,30766515:2450326,534184,12975 +g1,498:6630773,30766515 +g1,498:9081099,30766515 +) +g1,498:9803437,30766515 +g1,498:13095049,30766515 +g1,498:14662277,30766515 +k1,498:32583029,30766515:13615561 +g1,498:32583029,30766515 +) +(1,501:6630773,32024811:25952256,513147,7863 +k1,500:7749192,32024811:164870 +k1,500:9006547,32024811:164870 +k1,500:11347212,32024811:164869 +k1,500:12163510,32024811:164870 +k1,500:14997661,32024811:164870 +k1,500:16181616,32024811:164870 +k1,500:19707171,32024811:164869 +k1,500:22947646,32024811:164870 +k1,500:24680137,32024811:164870 +k1,500:26333330,32024811:164870 +k1,500:27149628,32024811:164870 +k1,500:29106251,32024811:164869 +k1,500:29930413,32024811:164870 +k1,500:31251993,32024811:164870 +k1,501:32583029,32024811:0 +) +(1,501:6630773,32889891:25952256,513147,134348 +k1,500:8278553,32889891:242688 +k1,500:11176104,32889891:242688 +k1,500:12078084,32889891:242688 +k1,500:13339858,32889891:242689 +k1,500:13997345,32889891:242644 +k1,500:17155730,32889891:242688 +k1,500:18351967,32889891:242688 +k1,500:19687140,32889891:242688 +k1,500:23243329,32889891:242689 +k1,500:24137445,32889891:242688 +k1,500:26118148,32889891:242688 +k1,500:27379921,32889891:242688 +k1,500:30795207,32889891:242688 +k1,500:32583029,32889891:0 +) +(1,501:6630773,33754971:25952256,505283,134348 +k1,500:8449086,33754971:314262 +k1,500:9529463,33754971:314261 +k1,500:12133553,33754971:314262 +k1,500:15358269,33754971:314262 +k1,500:18456499,33754971:314261 +k1,500:19386799,33754971:314262 +k1,500:20471763,33754971:314261 +k1,500:21200753,33754971:314147 +k1,500:23863824,33754971:314261 +k1,500:25169646,33754971:314262 +k1,500:27695748,33754971:314262 +k1,500:28637844,33754971:314261 +k1,500:29366833,33754971:314146 +k1,500:30700180,33754971:314262 +k1,500:32583029,33754971:0 +) +(1,501:6630773,34620051:25952256,513147,134348 +k1,500:10288747,34620051:273695 +k1,500:11666723,34620051:273694 +k1,500:12688184,34620051:273695 +k1,500:15000049,34620051:273695 +k1,500:15889781,34620051:273694 +k1,500:16519336,34620051:273695 +k1,500:18666050,34620051:273695 +k1,500:19922785,34620051:273695 +k1,500:21005849,34620051:273694 +k1,500:22624343,34620051:273695 +k1,500:23510800,34620051:273695 +k1,500:24803579,34620051:273694 +k1,500:26260199,34620051:273695 +k1,500:27216779,34620051:273695 +k1,500:29604664,34620051:273694 +k1,500:30234219,34620051:273695 +k1,500:32583029,34620051:0 +) +(1,501:6630773,35485131:25952256,513147,126483 +k1,500:8022758,35485131:200540 +k1,500:10897167,35485131:200540 +k1,500:12551296,35485131:200540 +k1,500:14019302,35485131:200540 +k1,500:16692515,35485131:200540 +k1,500:19415537,35485131:200541 +k1,500:22259799,35485131:200540 +k1,500:23269709,35485131:200540 +k1,500:23826109,35485131:200540 +k1,500:26788992,35485131:200540 +k1,500:30239462,35485131:200540 +k1,500:32583029,35485131:0 +) +(1,501:6630773,36350211:25952256,513147,134348 +k1,500:8544425,36350211:215614 +k1,500:11346746,36350211:215615 +k1,500:12956311,36350211:215614 +k1,500:13586752,36350211:215598 +k1,500:14670719,36350211:215615 +k1,500:17570032,36350211:215614 +k1,500:18141506,36350211:215614 +k1,500:20277981,36350211:215615 +k1,500:21109633,36350211:215614 +k1,500:22670047,36350211:215615 +k1,500:25233161,36350211:215614 +k1,500:26100203,36350211:215614 +k1,500:27933247,36350211:215615 +k1,500:28914977,36350211:215614 +k1,500:30443934,36350211:215615 +k1,500:32227169,36350211:215614 +k1,500:32583029,36350211:0 +) +(1,501:6630773,37215291:25952256,513147,134348 +k1,500:8515869,37215291:190335 +k1,500:10095568,37215291:190336 +k1,500:12840496,37215291:190335 +k1,500:15472702,37215291:190335 +k1,500:16616586,37215291:190335 +k1,500:19651840,37215291:190336 +k1,500:21350158,37215291:190335 +k1,500:22156531,37215291:190335 +k1,500:23550108,37215291:190336 +k1,500:25661303,37215291:190335 +k1,500:27164980,37215291:190335 +k1,500:28749266,37215291:190335 +k1,500:30328965,37215291:190336 +k1,500:31170728,37215291:190335 +k1,500:32583029,37215291:0 +) +(1,501:6630773,38080371:25952256,513147,134348 +k1,500:7663167,38080371:242685 +k1,500:10240900,38080371:242685 +k1,500:10839444,38080371:242684 +k1,500:12065169,38080371:242685 +k1,500:14568191,38080371:242685 +k1,500:15829961,38080371:242685 +k1,500:17955494,38080371:242684 +k1,500:20947414,38080371:242685 +k1,500:21849391,38080371:242685 +k1,500:23111161,38080371:242685 +k1,500:26911795,38080371:242684 +k1,500:29313236,38080371:242685 +k1,500:30317449,38080371:242685 +k1,501:32583029,38080371:0 +) +(1,501:6630773,38945451:25952256,513147,126483 +(1,500:6630773,38945451:0,452978,115847 +r1,501:8747598,38945451:2116825,568825,115847 +k1,500:6630773,38945451:-2116825 +) +(1,500:6630773,38945451:2116825,452978,115847 +k1,500:6630773,38945451:3277 +h1,500:8744321,38945451:0,411205,112570 +) +k1,500:8963210,38945451:215612 +k1,500:10370268,38945451:215613 +k1,500:10941740,38945451:215612 +k1,500:12383531,38945451:215612 +k1,500:13582183,38945451:215612 +k1,500:15191747,38945451:215613 +k1,500:16426444,38945451:215612 +k1,500:18889286,38945451:215612 +k1,500:19764190,38945451:215612 +k1,500:23469595,38945451:215613 +k1,500:26108073,38945451:215612 +k1,500:30424273,38945451:215612 +k1,500:32583029,38945451:0 +) +(1,501:6630773,39810531:25952256,513147,126483 +k1,500:7634682,39810531:242381 +k1,500:10142643,39810531:242381 +(1,500:10142643,39810531:0,452978,115847 +r1,501:13314603,39810531:3171960,568825,115847 +k1,500:10142643,39810531:-3171960 +) +(1,500:10142643,39810531:3171960,452978,115847 +k1,500:10142643,39810531:3277 +h1,500:13311326,39810531:0,411205,112570 +) +k1,500:13730654,39810531:242381 +k1,500:15169722,39810531:242381 +k1,500:17296918,39810531:242381 +k1,500:18852641,39810531:242381 +k1,500:21105012,39810531:242382 +k1,500:22550634,39810531:242381 +k1,500:24713875,39810531:242381 +k1,500:26060538,39810531:242381 +k1,500:27050685,39810531:242381 +k1,500:29607142,39810531:242381 +k1,500:30465561,39810531:242381 +k1,500:32583029,39810531:0 +) +(1,501:6630773,40675611:25952256,513147,134348 +k1,500:9263092,40675611:207487 +k1,500:11302965,40675611:207486 +k1,500:12502012,40675611:207487 +k1,500:13518869,40675611:207487 +k1,500:15393592,40675611:207487 +k1,500:17187049,40675611:207486 +k1,500:18203906,40675611:207487 +k1,500:19741774,40675611:207487 +k1,500:20968346,40675611:207487 +k1,500:22489174,40675611:207486 +k1,500:24877044,40675611:207487 +k1,500:25832297,40675611:207487 +k1,500:29167162,40675611:207487 +k1,500:30057533,40675611:207486 +k1,500:31074390,40675611:207487 +k1,500:32583029,40675611:0 +) +(1,501:6630773,41540691:25952256,513147,126483 +k1,500:9500714,41540691:210490 +k1,500:10907890,41540691:210489 +k1,500:15673132,41540691:210490 +k1,500:18421175,41540691:210489 +k1,500:19163162,41540691:210490 +k1,500:20025079,41540691:210489 +k1,500:21965064,41540691:210490 +k1,500:24901851,41540691:210489 +k1,500:27363503,41540691:210490 +k1,500:28765437,41540691:210489 +k1,500:31227089,41540691:210490 +k1,501:32583029,41540691:0 +) +(1,501:6630773,42405771:25952256,513147,134348 +k1,500:9090208,42405771:240386 +k1,500:12381950,42405771:240386 +k1,500:14109348,42405771:240386 +k1,500:14819628,42405771:240387 +k1,500:15591511,42405771:240386 +k1,500:16187757,42405771:240386 +k1,500:18012148,42405771:240386 +k1,500:19577672,42405771:240386 +k1,500:20469486,42405771:240386 +k1,500:22217855,42405771:240386 +k1,500:23074279,42405771:240386 +k1,500:23670526,42405771:240387 +k1,500:25605673,42405771:240386 +k1,500:27766919,42405771:240386 +k1,500:29198750,42405771:240386 +k1,500:32583029,42405771:0 +) +(1,501:6630773,43270851:25952256,513147,134348 +k1,500:7869151,43270851:219293 +k1,500:9684902,43270851:219294 +k1,500:10520233,43270851:219293 +k1,500:13513666,43270851:219294 +k1,500:14680610,43270851:219293 +k1,500:15255764,43270851:219294 +k1,500:17348076,43270851:219293 +k1,500:21724319,43270851:219294 +k1,500:24211813,43270851:219293 +k1,500:25113992,43270851:219294 +k1,500:29116023,43270851:219293 +k1,500:30060145,43270851:219294 +k1,500:31563944,43270851:219293 +k1,500:32583029,43270851:0 +) +(1,501:6630773,44135931:25952256,505283,126483 +k1,500:10191165,44135931:176113 +k1,500:11471560,44135931:176113 +k1,500:12395439,44135931:176113 +k1,500:14382967,44135931:176113 +k1,500:15750525,44135931:176113 +k1,500:18600506,44135931:176112 +k1,500:20577548,44135931:176113 +k1,500:23388864,44135931:176113 +k1,500:26244089,44135931:176113 +k1,500:27611647,44135931:176113 +k1,500:29384217,44135931:176113 +k1,500:32583029,44135931:0 +) +(1,501:6630773,45001011:25952256,513147,126483 +k1,500:8355832,45001011:157438 +k1,500:10432163,45001011:157437 +k1,500:11746311,45001011:157438 +k1,500:12977884,45001011:157438 +k1,500:13593418,45001011:157437 +k1,500:18323958,45001011:157438 +k1,500:19140688,45001011:157438 +k1,500:20894583,45001011:157438 +k1,500:22629472,45001011:157437 +k1,500:23402948,45001011:157438 +k1,500:25262356,45001011:157438 +k1,500:29308044,45001011:157437 +k1,500:30662169,45001011:157438 +k1,500:32583029,45001011:0 +) +] +(1,501:32583029,45706769:0,0,0 +g1,501:32583029,45706769 +) +) +] +(1,501:6630773,47279633:25952256,0,0 +h1,501:6630773,47279633:25952256,0,0 +) +] +(1,501:4262630,4025873:0,0,0 +[1,501:-473656,4025873:0,0,0 +(1,501:-473656,-710413:0,0,0 +(1,501:-473656,-710413:0,0,0 +g1,501:-473656,-710413 +) +g1,501:-473656,-710413 +) +] +) +] +!25179 +}29 +Input:214:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:215:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:216:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:217:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:218:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:219:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!569 +{30 +[1,519:4262630,47279633:28320399,43253760,0 +(1,519:4262630,4025873:0,0,0 +[1,519:-473656,4025873:0,0,0 +(1,519:-473656,-710413:0,0,0 +(1,519:-473656,-644877:0,0,0 +k1,519:-473656,-644877:-65536 ) -(1,438:-473656,4736287:0,0,0 -k1,438:-473656,4736287:5209943 +(1,519:-473656,4736287:0,0,0 +k1,519:-473656,4736287:5209943 ) -g1,438:-473656,-710413 +g1,519:-473656,-710413 ) ] ) -[1,438:6630773,47279633:25952256,43253760,11795 -[1,438:6630773,4812305:25952256,786432,0 -(1,438:6630773,4812305:25952256,0,0 -(1,438:6630773,4812305:25952256,0,0 -g1,438:3078558,4812305 -[1,438:3078558,4812305:0,0,0 -(1,438:3078558,2439708:0,1703936,0 -k1,438:1358238,2439708:-1720320 -(1,417:1358238,2439708:1720320,1703936,0 -(1,417:1358238,2439708:1179648,16384,0 -r1,438:2537886,2439708:1179648,16384,0 +[1,519:6630773,47279633:25952256,43253760,0 +[1,519:6630773,4812305:25952256,786432,0 +(1,519:6630773,4812305:25952256,477757,134348 +(1,519:6630773,4812305:25952256,477757,134348 +g1,519:3078558,4812305 +[1,519:3078558,4812305:0,0,0 +(1,519:3078558,2439708:0,1703936,0 +k1,519:1358238,2439708:-1720320 +(1,412:1358238,2439708:1720320,1703936,0 +(1,412:1358238,2439708:1179648,16384,0 +r1,519:2537886,2439708:1179648,16384,0 ) -g1,417:3062174,2439708 -(1,417:3062174,2439708:16384,1703936,0 -[1,417:3062174,2439708:25952256,1703936,0 -(1,417:3062174,1915420:25952256,1179648,0 -(1,417:3062174,1915420:16384,1179648,0 -r1,438:3078558,1915420:16384,1179648,0 +g1,412:3062174,2439708 +(1,412:3062174,2439708:16384,1703936,0 +[1,412:3062174,2439708:25952256,1703936,0 +(1,412:3062174,1915420:25952256,1179648,0 +(1,412:3062174,1915420:16384,1179648,0 +r1,519:3078558,1915420:16384,1179648,0 ) -k1,417:29014430,1915420:25935872 -g1,417:29014430,1915420 +k1,412:29014430,1915420:25935872 +g1,412:29014430,1915420 ) ] ) ) ) ] -[1,438:3078558,4812305:0,0,0 -(1,438:3078558,2439708:0,1703936,0 -g1,438:29030814,2439708 -g1,438:36135244,2439708 -(1,417:36135244,2439708:1720320,1703936,0 -(1,417:36135244,2439708:16384,1703936,0 -[1,417:36135244,2439708:25952256,1703936,0 -(1,417:36135244,1915420:25952256,1179648,0 -(1,417:36135244,1915420:16384,1179648,0 -r1,438:36151628,1915420:16384,1179648,0 +[1,519:3078558,4812305:0,0,0 +(1,519:3078558,2439708:0,1703936,0 +g1,519:29030814,2439708 +g1,519:36135244,2439708 +(1,412:36135244,2439708:1720320,1703936,0 +(1,412:36135244,2439708:16384,1703936,0 +[1,412:36135244,2439708:25952256,1703936,0 +(1,412:36135244,1915420:25952256,1179648,0 +(1,412:36135244,1915420:16384,1179648,0 +r1,519:36151628,1915420:16384,1179648,0 ) -k1,417:62087500,1915420:25935872 -g1,417:62087500,1915420 +k1,412:62087500,1915420:25935872 +g1,412:62087500,1915420 ) ] ) -g1,417:36675916,2439708 -(1,417:36675916,2439708:1179648,16384,0 -r1,438:37855564,2439708:1179648,16384,0 +g1,412:36675916,2439708 +(1,412:36675916,2439708:1179648,16384,0 +r1,519:37855564,2439708:1179648,16384,0 ) ) -k1,438:3078556,2439708:-34777008 +k1,519:3078556,2439708:-34777008 ) ] -[1,438:3078558,4812305:0,0,0 -(1,438:3078558,49800853:0,16384,2228224 -k1,438:1358238,49800853:-1720320 -(1,417:1358238,49800853:1720320,16384,2228224 -(1,417:1358238,49800853:1179648,16384,0 -r1,438:2537886,49800853:1179648,16384,0 +[1,519:3078558,4812305:0,0,0 +(1,519:3078558,49800853:0,16384,2228224 +k1,519:1358238,49800853:-1720320 +(1,412:1358238,49800853:1720320,16384,2228224 +(1,412:1358238,49800853:1179648,16384,0 +r1,519:2537886,49800853:1179648,16384,0 ) -g1,417:3062174,49800853 -(1,417:3062174,52029077:16384,1703936,0 -[1,417:3062174,52029077:25952256,1703936,0 -(1,417:3062174,51504789:25952256,1179648,0 -(1,417:3062174,51504789:16384,1179648,0 -r1,438:3078558,51504789:16384,1179648,0 +g1,412:3062174,49800853 +(1,412:3062174,52029077:16384,1703936,0 +[1,412:3062174,52029077:25952256,1703936,0 +(1,412:3062174,51504789:25952256,1179648,0 +(1,412:3062174,51504789:16384,1179648,0 +r1,519:3078558,51504789:16384,1179648,0 ) -k1,417:29014430,51504789:25935872 -g1,417:29014430,51504789 +k1,412:29014430,51504789:25935872 +g1,412:29014430,51504789 ) ] ) ) ) ] -[1,438:3078558,4812305:0,0,0 -(1,438:3078558,49800853:0,16384,2228224 -g1,438:29030814,49800853 -g1,438:36135244,49800853 -(1,417:36135244,49800853:1720320,16384,2228224 -(1,417:36135244,52029077:16384,1703936,0 -[1,417:36135244,52029077:25952256,1703936,0 -(1,417:36135244,51504789:25952256,1179648,0 -(1,417:36135244,51504789:16384,1179648,0 -r1,438:36151628,51504789:16384,1179648,0 +[1,519:3078558,4812305:0,0,0 +(1,519:3078558,49800853:0,16384,2228224 +g1,519:29030814,49800853 +g1,519:36135244,49800853 +(1,412:36135244,49800853:1720320,16384,2228224 +(1,412:36135244,52029077:16384,1703936,0 +[1,412:36135244,52029077:25952256,1703936,0 +(1,412:36135244,51504789:25952256,1179648,0 +(1,412:36135244,51504789:16384,1179648,0 +r1,519:36151628,51504789:16384,1179648,0 ) -k1,417:62087500,51504789:25935872 -g1,417:62087500,51504789 +k1,412:62087500,51504789:25935872 +g1,412:62087500,51504789 +) +] +) +g1,412:36675916,49800853 +(1,412:36675916,49800853:1179648,16384,0 +r1,519:37855564,49800853:1179648,16384,0 +) +) +k1,519:3078556,49800853:-34777008 +) +] +g1,519:6630773,4812305 +g1,519:6630773,4812305 +g1,519:8592265,4812305 +g1,519:9205682,4812305 +k1,519:31786110,4812305:22580428 +) +) +] +[1,519:6630773,45706769:25952256,40108032,0 +(1,519:6630773,45706769:25952256,40108032,0 +(1,519:6630773,45706769:0,0,0 +g1,519:6630773,45706769 +) +[1,519:6630773,45706769:25952256,40108032,0 +[1,516:6630773,14908564:25952256,9309827,0 +[1,516:6630773,14908564:25952256,9309827,0 +(1,515:6630773,10666401:25952256,5067664,0 +g1,515:6630773,10666401 +h1,514:6630773,10666401:0,0,0 +(1,514:6630773,10666401:25952256,5067664,0 +) +g1,515:32583029,10666401 +g1,515:32583029,10666401 +) +(1,515:6630773,12186841:25952256,485622,11795 +h1,515:6630773,12186841:0,0,0 +g1,515:9295467,12186841 +k1,515:32583028,12186841:22297312 +g1,515:32583028,12186841 +) +(1,515:6630773,13051921:25952256,505283,126483 +h1,515:6630773,13051921:0,0,0 +k1,515:8054217,13051921:226757 +k1,515:8695789,13051921:226729 +k1,515:11342791,13051921:226757 +k1,515:14894188,13051921:226756 +k1,515:15736983,13051921:226757 +k1,515:18561587,13051921:226757 +k1,515:19985031,13051921:226757 +k1,515:21865260,13051921:226756 +k1,515:25581809,13051921:226757 +k1,515:27283781,13051921:226757 +k1,515:29020488,13051921:226757 +k1,515:31054072,13051921:226756 +k1,515:31896867,13051921:226757 +k1,515:32583029,13051921:0 +) +(1,515:6630773,13917001:25952256,505283,134348 +k1,515:7416549,13917001:169738 +k1,515:9571373,13917001:169738 +h1,515:10541961,13917001:0,0,0 +k1,515:10885369,13917001:169738 +k1,515:14666797,13917001:169739 +k1,515:17259401,13917001:169738 +k1,515:18190667,13917001:169738 +k1,515:19379490,13917001:169738 +k1,515:20930072,13917001:169738 +k1,515:22091370,13917001:169738 +k1,515:25324262,13917001:169739 +k1,515:26110038,13917001:169738 +k1,515:28550599,13917001:169738 +k1,515:30409855,13917001:169738 +k1,515:32583029,13917001:0 +) +(1,515:6630773,14782081:25952256,505283,126483 +g1,515:9608729,14782081 +g1,515:10569486,14782081 +g1,515:11183558,14782081 +g1,515:12374347,14782081 +g1,515:15636729,14782081 +g1,515:16451996,14782081 +k1,515:32583029,14782081:14269811 +g1,515:32583029,14782081 +) +] +] +(1,501:6630773,16874644:25952256,513147,126483 +k1,500:8764576,16874644:214909 +k1,500:10292826,16874644:214908 +k1,500:11499295,16874644:214909 +k1,500:14624658,16874644:214909 +k1,500:16251868,16874644:214909 +k1,500:17658222,16874644:214909 +k1,500:19684545,16874644:214908 +k1,500:20430951,16874644:214909 +k1,500:21261898,16874644:214909 +k1,500:21891634,16874644:214893 +k1,500:26932614,16874644:214909 +k1,500:29015298,16874644:214908 +k1,500:30249292,16874644:214909 +k1,500:32583029,16874644:0 +) +(1,501:6630773,17739724:25952256,513147,134348 +k1,500:9451322,17739724:253504 +k1,500:12706375,17739724:253504 +k1,500:14743114,17739724:253504 +k1,500:17564319,17739724:253504 +k1,500:18588526,17739724:253504 +(1,500:18588526,17739724:0,452978,115847 +r1,519:20705351,17739724:2116825,568825,115847 +k1,500:18588526,17739724:-2116825 +) +(1,500:18588526,17739724:2116825,452978,115847 +k1,500:18588526,17739724:3277 +h1,500:20702074,17739724:0,411205,112570 +) +k1,500:20958854,17739724:253503 +k1,500:22195398,17739724:253504 +k1,500:23467987,17739724:253504 +k1,500:26065714,17739724:253504 +k1,500:28905924,17739724:253504 +k1,500:32051532,17739724:253504 +k1,500:32583029,17739724:0 +) +(1,501:6630773,18604804:25952256,513147,126483 +g1,500:11146859,18604804 +g1,500:12280631,18604804 +g1,500:13131288,18604804 +g1,500:14349602,18604804 +g1,500:17105390,18604804 +g1,500:19223513,18604804 +g1,500:20441827,18604804 +(1,500:20441827,18604804:0,452978,115847 +r1,519:22558652,18604804:2116825,568825,115847 +k1,500:20441827,18604804:-2116825 +) +(1,500:20441827,18604804:2116825,452978,115847 +k1,500:20441827,18604804:3277 +h1,500:22555375,18604804:0,411205,112570 +) +g1,500:22757881,18604804 +g1,500:23940150,18604804 +g1,500:25346552,18604804 +g1,500:26958082,18604804 +k1,501:32583029,18604804:3883655 +g1,501:32583029,18604804 +) +v1,503:6630773,19469884:0,393216,0 +(1,504:6630773,25148024:25952256,6071356,0 +g1,504:6630773,25148024 +g1,504:6237557,25148024 +r1,519:6368629,25148024:131072,6071356,0 +g1,504:6567858,25148024 +g1,504:6764466,25148024 +[1,504:6764466,25148024:25818563,6071356,0 +(1,504:6764466,19831061:25818563,754393,260573 +(1,503:6764466,19831061:0,754393,260573 +r1,519:8010564,19831061:1246098,1014966,260573 +k1,503:6764466,19831061:-1246098 +) +(1,503:6764466,19831061:1246098,754393,260573 +) +k1,503:8156113,19831061:145549 +k1,503:8483793,19831061:327680 +k1,503:11053519,19831061:145549 +k1,503:13797570,19831061:145548 +k1,503:14934679,19831061:145549 +k1,503:19281741,19831061:145549 +k1,503:20113452,19831061:145549 +k1,503:20614860,19831061:145548 +k1,503:22681269,19831061:145549 +k1,503:24220769,19831061:145549 +k1,503:24722178,19831061:145549 +k1,503:26605742,19831061:145549 +k1,503:28924464,19831061:145548 +k1,503:29686051,19831061:145549 +(1,503:29686051,19831061:0,452978,122846 +r1,519:31451164,19831061:1765113,575824,122846 +k1,503:29686051,19831061:-1765113 +) +(1,503:29686051,19831061:1765113,452978,122846 +k1,503:29686051,19831061:3277 +h1,503:31447887,19831061:0,411205,112570 +) +k1,503:31770383,19831061:145549 +k1,504:32583029,19831061:0 +) +(1,504:6764466,20696141:25818563,513147,126483 +k1,503:8655887,20696141:176999 +k1,503:10719012,20696141:176999 +k1,503:11915097,20696141:177000 +k1,503:13745569,20696141:176999 +k1,503:15843428,20696141:176999 +k1,503:17939321,20696141:176999 +k1,503:20451369,20696141:177000 +k1,503:22191402,20696141:176999 +(1,503:22191402,20696141:0,452978,115847 +r1,519:24308227,20696141:2116825,568825,115847 +k1,503:22191402,20696141:-2116825 +) +(1,503:22191402,20696141:2116825,452978,115847 +k1,503:22191402,20696141:3277 +h1,503:24304950,20696141:0,411205,112570 +) +k1,503:24485226,20696141:176999 +k1,503:25853670,20696141:176999 +(1,503:25853670,20696141:0,452978,115847 +r1,519:29025630,20696141:3171960,568825,115847 +k1,503:25853670,20696141:-3171960 +) +(1,503:25853670,20696141:3171960,452978,115847 +k1,503:25853670,20696141:3277 +h1,503:29022353,20696141:0,411205,112570 +) +k1,503:29202630,20696141:177000 +k1,503:30371189,20696141:176999 +k1,503:32583029,20696141:0 +) +(1,504:6764466,21561221:25818563,513147,134348 +k1,503:8365370,21561221:220060 +k1,503:10506291,21561221:220061 +k1,503:11257848,21561221:220060 +k1,503:14366736,21561221:220061 +k1,503:15348324,21561221:220060 +k1,503:17992562,21561221:220061 +k1,503:19404067,21561221:220060 +k1,503:21804510,21561221:220060 +k1,503:22772337,21561221:220061 +k1,503:24058668,21561221:220060 +k1,503:27113816,21561221:220061 +k1,503:28016761,21561221:220060 +k1,503:30582356,21561221:220061 +k1,503:31563944,21561221:220060 +k1,503:32583029,21561221:0 +) +(1,504:6764466,22426301:25818563,513147,126483 +k1,503:8466477,22426301:147497 +k1,503:10104263,22426301:147497 +k1,503:10867797,22426301:147496 +k1,503:12034379,22426301:147497 +k1,503:13535850,22426301:147497 +k1,503:14963265,22426301:147497 +k1,503:16477843,22426301:147497 +k1,503:17284631,22426301:147496 +k1,503:18220526,22426301:147497 +k1,503:21949566,22426301:147497 +k1,503:22555160,22426301:147497 +k1,503:24883040,22426301:147497 +k1,503:25778303,22426301:147497 +k1,503:28445003,22426301:147496 +k1,503:29783945,22426301:147497 +k1,503:30950527,22426301:147497 +k1,504:32583029,22426301:0 +) +(1,504:6764466,23291381:25818563,513147,134348 +k1,503:7979228,23291381:210095 +k1,503:10457524,23291381:210095 +k1,503:13017740,23291381:210095 +k1,503:14929805,23291381:210095 +k1,503:16707521,23291381:210095 +k1,503:19404707,23291381:210095 +k1,503:21057904,23291381:210094 +(1,503:21057904,23291381:0,452978,115847 +r1,519:23174729,23291381:2116825,568825,115847 +k1,503:21057904,23291381:-2116825 +) +(1,503:21057904,23291381:2116825,452978,115847 +k1,503:21057904,23291381:3277 +h1,503:23171452,23291381:0,411205,112570 +) +k1,503:23384824,23291381:210095 +k1,503:24786364,23291381:210095 +(1,503:24786364,23291381:0,452978,115847 +r1,519:27958324,23291381:3171960,568825,115847 +k1,503:24786364,23291381:-3171960 +) +(1,503:24786364,23291381:3171960,452978,115847 +k1,503:24786364,23291381:3277 +h1,503:27955047,23291381:0,411205,112570 +) +k1,503:28168419,23291381:210095 +k1,503:30558897,23291381:210095 +k1,503:31835263,23291381:210095 +k1,503:32583029,23291381:0 +) +(1,504:6764466,24156461:25818563,505283,126483 +k1,503:9282714,24156461:172714 +k1,503:10216957,24156461:172715 +k1,503:11408756,24156461:172714 +k1,503:13135985,24156461:172715 +k1,503:15379637,24156461:172714 +k1,503:16203779,24156461:172714 +k1,503:17946737,24156461:172715 +k1,503:19138536,24156461:172714 +k1,503:19726067,24156461:172688 +k1,503:23456732,24156461:172715 +k1,503:26564148,24156461:172714 +k1,503:27940104,24156461:172715 +k1,503:28644315,24156461:172714 +k1,503:32583029,24156461:0 +) +(1,504:6764466,25021541:25818563,513147,126483 +g1,503:7649857,25021541 +g1,503:8307183,25021541 +g1,503:9610694,25021541 +g1,503:10557689,25021541 +g1,503:12042734,25021541 +g1,503:14042892,25021541 +g1,503:17020192,25021541 +g1,503:18787042,25021541 +g1,503:20996260,25021541 +k1,504:32583029,25021541:10998256 +g1,504:32583029,25021541 +) +] +g1,504:32583029,25148024 +) +h1,504:6630773,25148024:0,0,0 +(1,506:6630773,27264842:25952256,555811,147783 +(1,506:6630773,27264842:2450326,534184,12975 +g1,506:6630773,27264842 +g1,506:9081099,27264842 +) +g1,506:11359852,27264842 +g1,506:12082190,27264842 +k1,506:32583029,27264842:15886383 +g1,506:32583029,27264842 +) +(1,509:6630773,28523138:25952256,505283,134348 +k1,508:9573412,28523138:304160 +k1,508:11002170,28523138:304160 +k1,508:13017474,28523138:304159 +k1,508:18034983,28523138:304160 +k1,508:19733094,28523138:304160 +k1,508:23443815,28523138:304160 +k1,508:26306500,28523138:304159 +k1,508:26966520,28523138:304160 +k1,508:29893431,28523138:304160 +k1,508:32583029,28523138:0 +) +(1,509:6630773,29388218:25952256,513147,126483 +k1,508:10030545,29388218:231762 +k1,508:11633320,29388218:231762 +k1,508:14679853,29388218:231762 +k1,508:17180472,29388218:231763 +k1,508:18696740,29388218:231762 +k1,508:20135675,29388218:231762 +k1,508:23672418,29388218:231762 +k1,508:25771956,29388218:231762 +k1,508:26359578,29388218:231762 +k1,508:29048941,29388218:231763 +k1,508:29768258,29388218:231729 +k1,508:32583029,29388218:0 +) +(1,509:6630773,30253298:25952256,513147,134348 +k1,508:9600166,30253298:159209 +k1,508:10410803,30253298:159209 +k1,508:10925872,30253298:159209 +k1,508:14161340,30253298:159208 +k1,508:17236246,30253298:159209 +k1,508:18011493,30253298:159209 +k1,508:19772402,30253298:159209 +k1,508:21628993,30253298:159209 +k1,508:22144062,30253298:159209 +k1,508:24776600,30253298:159209 +k1,508:25618694,30253298:159209 +k1,508:26133762,30253298:159208 +k1,508:27831756,30253298:159209 +k1,508:30000954,30253298:159209 +k1,508:30516023,30253298:159209 +k1,509:32583029,30253298:0 +) +(1,509:6630773,31118378:25952256,513147,134348 +k1,508:7945208,31118378:218673 +k1,508:9544725,31118378:218673 +k1,508:12747252,31118378:218673 +k1,508:13497422,31118378:218673 +k1,508:14914749,31118378:218673 +k1,508:17001198,31118378:218673 +k1,508:17575731,31118378:218673 +k1,508:20388319,31118378:218673 +k1,508:21234827,31118378:218673 +k1,508:22551228,31118378:218673 +k1,508:24310652,31118378:218673 +k1,508:25548410,31118378:218673 +k1,508:26181907,31118378:218654 +k1,508:28820825,31118378:218673 +k1,508:31231677,31118378:218673 +h1,508:32202265,31118378:0,0,0 +k1,508:32583029,31118378:0 +) +(1,509:6630773,31983458:25952256,513147,7863 +g1,508:8210846,31983458 +g1,508:8941572,31983458 +g1,508:10159886,31983458 +g1,508:12292427,31983458 +g1,508:13872500,31983458 +g1,508:16881913,31983458 +g1,508:17748298,31983458 +k1,509:32583029,31983458:14246218 +g1,509:32583029,31983458 +) +(1,511:6630773,32848538:25952256,513147,134348 +h1,510:6630773,32848538:983040,0,0 +k1,510:9986823,32848538:166413 +k1,510:13643029,32848538:166414 +k1,510:14422204,32848538:166413 +k1,510:15607703,32848538:166414 +k1,510:16188927,32848538:166381 +k1,510:18775585,32848538:166413 +k1,510:19473495,32848538:166413 +k1,510:21617130,32848538:166414 +k1,510:23481581,32848538:166413 +k1,510:24804705,32848538:166414 +k1,510:25502615,32848538:166413 +k1,510:28002111,32848538:166414 +k1,510:30631367,32848538:166413 +k1,510:32583029,32848538:0 +) +(1,511:6630773,33713618:25952256,513147,134348 +k1,510:9777266,33713618:190164 +k1,510:12978810,33713618:190165 +k1,510:15334939,33713618:190164 +k1,510:16207988,33713618:190164 +k1,510:18294765,33713618:190165 +k1,510:19136357,33713618:190164 +k1,510:22991294,33713618:190164 +k1,510:24511840,33713618:190165 +k1,510:25472707,33713618:190164 +k1,510:26077705,33713618:190155 +k1,510:28963366,33713618:190165 +k1,510:29836415,33713618:190164 +k1,510:32583029,33713618:0 +) +(1,511:6630773,34578698:25952256,513147,134348 +k1,510:7698109,34578698:198984 +k1,510:8888652,34578698:198983 +k1,510:10153907,34578698:198984 +k1,510:12845224,34578698:198983 +k1,510:14438159,34578698:198984 +k1,510:16737571,34578698:198983 +k1,510:18541532,34578698:198984 +k1,510:19608867,34578698:198983 +k1,510:21356467,34578698:198984 +k1,510:22206879,34578698:198984 +k1,510:23913845,34578698:198983 +k1,510:25740088,34578698:198984 +k1,510:26598363,34578698:198983 +k1,510:28345963,34578698:198984 +k1,510:29413298,34578698:198983 +k1,510:30603842,34578698:198984 +k1,510:32583029,34578698:0 +) +(1,511:6630773,35443778:25952256,513147,134348 +k1,510:8440954,35443778:155397 +k1,510:9587912,35443778:155398 +k1,510:11640576,35443778:155397 +k1,510:13364251,35443778:155398 +k1,510:14178940,35443778:155397 +k1,510:16069731,35443778:155398 +k1,510:16813641,35443778:155397 +k1,510:18854510,35443778:155398 +k1,510:20691561,35443778:155397 +k1,510:21592103,35443778:155398 +k1,510:22398928,35443778:155397 +k1,510:24062309,35443778:155398 +k1,510:24573566,35443778:155397 +k1,510:26801868,35443778:155398 +k1,510:27616557,35443778:155397 +k1,510:29102336,35443778:155398 +k1,510:30028436,35443778:155397 +k1,510:32583029,35443778:0 +) +(1,511:6630773,36308858:25952256,513147,134348 +k1,510:7903965,36308858:172187 +k1,510:9586101,36308858:172186 +k1,510:11993721,36308858:172187 +k1,510:13405849,36308858:172187 +k1,510:14774722,36308858:172186 +k1,510:17709252,36308858:172187 +k1,510:19449716,36308858:172187 +k1,510:20281194,36308858:172186 +k1,510:22188774,36308858:172187 +k1,510:22775777,36308858:172160 +k1,510:23939523,36308858:172186 +k1,510:25177981,36308858:172187 +k1,510:28252102,36308858:172187 +k1,510:29083580,36308858:172186 +k1,510:30707389,36308858:172187 +k1,510:32583029,36308858:0 +) +(1,511:6630773,37173938:25952256,505283,126483 +k1,510:7602160,37173938:246559 +k1,510:9450419,37173938:246559 +k1,510:11408123,37173938:246559 +k1,510:12787144,37173938:246559 +k1,510:14126188,37173938:246559 +k1,510:15391832,37173938:246559 +k1,510:16053187,37173938:246512 +k1,510:18719991,37173938:246559 +k1,510:19617978,37173938:246559 +k1,510:21055982,37173938:246559 +k1,510:24495455,37173938:246559 +k1,510:28231806,37173938:246559 +k1,510:29669810,37173938:246559 +k1,510:31193666,37173938:246559 +k1,510:32583029,37173938:0 +) +(1,511:6630773,38039018:25952256,513147,134348 +k1,510:8970757,38039018:225793 +k1,510:10215636,38039018:225794 +k1,510:11747562,38039018:225793 +k1,510:13968271,38039018:225793 +k1,510:14853356,38039018:225793 +k1,510:18897277,38039018:225794 +k1,510:19940959,38039018:225793 +k1,510:21700950,38039018:225793 +k1,510:22612905,38039018:225793 +k1,510:23707051,38039018:225794 +k1,510:26003782,38039018:225793 +k1,510:27559956,38039018:225793 +k1,510:28654101,38039018:225793 +k1,510:30428511,38039018:225794 +k1,510:31305732,38039018:225793 +k1,510:32583029,38039018:0 +) +(1,511:6630773,38904098:25952256,513147,134348 +k1,510:7486981,38904098:173323 +k1,510:10090380,38904098:173324 +k1,510:11282788,38904098:173323 +k1,510:13019145,38904098:173323 +k1,510:13650565,38904098:173323 +k1,510:14355386,38904098:173324 +k1,510:15863677,38904098:173323 +k1,510:16688428,38904098:173323 +k1,510:18350075,38904098:173324 +k1,510:20258791,38904098:173323 +k1,510:22767162,38904098:173323 +k1,510:24321330,38904098:173324 +k1,510:25026150,38904098:173323 +k1,510:26265744,38904098:173323 +k1,510:29250562,38904098:173323 +k1,510:30039924,38904098:173324 +k1,510:31345054,38904098:173323 +k1,510:32583029,38904098:0 +) +(1,511:6630773,39769178:25952256,505283,134348 +k1,510:7665636,39769178:273335 +k1,510:8527485,39769178:273336 +k1,510:9872989,39769178:273335 +k1,510:12307702,39769178:273336 +k1,510:13572597,39769178:273335 +k1,510:15394549,39769178:273336 +k1,510:17430802,39769178:273335 +k1,510:19713472,39769178:273336 +k1,510:20638235,39769178:273335 +k1,510:22363849,39769178:273336 +k1,510:23656269,39769178:273335 +k1,510:25531305,39769178:273336 +k1,510:29013938,39769178:273335 +k1,510:32583029,39769178:0 +) +(1,511:6630773,40634258:25952256,513147,134348 +k1,510:7506521,40634258:216456 +k1,510:9458370,40634258:216456 +k1,510:10030686,40634258:216456 +k1,510:14599388,40634258:216456 +k1,510:17658140,40634258:216456 +k1,510:18822247,40634258:216456 +k1,510:20428066,40634258:216456 +k1,510:23372786,40634258:216456 +k1,510:24217077,40634258:216456 +k1,510:26418619,40634258:216456 +h1,510:27389207,40634258:0,0,0 +k1,510:27605663,40634258:216456 +k1,510:28690471,40634258:216456 +k1,510:30011209,40634258:216456 +k1,510:31252648,40634258:216456 +k1,510:32583029,40634258:0 +) +(1,511:6630773,41499338:25952256,513147,126483 +k1,510:7867824,41499338:217966 +k1,510:8500614,41499338:217947 +k1,510:11138825,41499338:217966 +k1,510:13247505,41499338:217966 +k1,510:14662158,41499338:217966 +k1,510:16106303,41499338:217966 +k1,510:16940307,41499338:217966 +k1,510:18214713,41499338:217966 +k1,510:19533684,41499338:217966 +k1,510:21261600,41499338:217966 +k1,510:23286394,41499338:217966 +k1,510:24120398,41499338:217966 +k1,510:25099892,41499338:217966 +k1,510:26336943,41499338:217966 +k1,510:28109423,41499338:217966 +k1,510:30398327,41499338:217966 +k1,510:31563944,41499338:217966 +k1,510:32583029,41499338:0 +) +(1,511:6630773,42364418:25952256,505283,126483 +k1,510:9172841,42364418:140829 +(1,510:9172841,42364418:0,414482,115847 +r1,519:9700406,42364418:527565,530329,115847 +k1,510:9172841,42364418:-527565 +) +(1,510:9172841,42364418:527565,414482,115847 +$1,510:9176118,42364418 +$1,510:9697129,42364418 +h1,510:9697129,42364418:0,411205,112570 +) +k1,510:10014904,42364418:140828 +k1,510:11347178,42364418:140829 +k1,510:12507092,42364418:140829 +k1,510:13874100,42364418:140829 +k1,510:14630966,42364418:140828 +k1,510:16139531,42364418:140829 +k1,510:16811857,42364418:140829 +k1,510:18501301,42364418:140828 +k1,510:19056915,42364418:140771 +k1,510:20298749,42364418:140829 +k1,510:23502730,42364418:140828 +k1,510:24259597,42364418:140829 +k1,510:27447850,42364418:140829 +k1,510:28058572,42364418:140829 +k1,510:28730897,42364418:140828 +k1,510:32227169,42364418:140829 +k1,510:32583029,42364418:0 +) +(1,511:6630773,43229498:25952256,513147,134348 +k1,510:9500867,43229498:156248 +k1,510:12292319,43229498:156249 +k1,510:13829411,43229498:156248 +k1,510:15177105,43229498:156249 +k1,510:15921866,43229498:156248 +k1,510:17274802,43229498:156249 +k1,510:19851295,43229498:156248 +k1,510:21111826,43229498:156249 +k1,510:22580760,43229498:156248 +k1,510:25499352,43229498:156249 +k1,510:27353638,43229498:156248 +k1,510:30573040,43229498:156249 +k1,510:32583029,43229498:0 +) +(1,511:6630773,44094578:25952256,513147,126483 +k1,510:7603720,44094578:202244 +k1,510:8893204,44094578:202242 +k1,510:10241673,44094578:202244 +k1,510:13041764,44094578:202244 +k1,510:14316177,44094578:202244 +k1,510:15537507,44094578:202245 +k1,510:17115352,44094578:202244 +k1,510:20503956,44094578:202244 +k1,510:21237697,44094578:202244 +k1,510:22055980,44094578:202245 +k1,510:23277309,44094578:202244 +k1,510:27120078,44094578:202244 +k1,510:27981614,44094578:202244 +k1,510:29202944,44094578:202245 +k1,510:30631367,44094578:202244 +k1,510:32583029,44094578:0 +) +(1,511:6630773,44959658:25952256,513147,134348 +g1,510:8272449,44959658 +g1,510:9087716,44959658 +g1,510:10306030,44959658 +g1,510:11731438,44959658 +g1,510:13536299,44959658 +g1,510:14714636,44959658 +g1,510:17229252,44959658 +h1,510:18199840,44959658:0,0,0 +g1,510:18399069,44959658 +g1,510:19789743,44959658 +h1,510:20760331,44959658:0,0,0 +k1,511:32583029,44959658:11441934 +g1,511:32583029,44959658 +) +] +(1,519:32583029,45706769:0,0,0 +g1,519:32583029,45706769 +) +) +] +(1,519:6630773,47279633:25952256,0,0 +h1,519:6630773,47279633:25952256,0,0 +) +] +(1,519:4262630,4025873:0,0,0 +[1,519:-473656,4025873:0,0,0 +(1,519:-473656,-710413:0,0,0 +(1,519:-473656,-710413:0,0,0 +g1,519:-473656,-710413 +) +g1,519:-473656,-710413 +) +] +) +] +!22815 +}30 +Input:220:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:221:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:222:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:223:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:224:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:225:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:226:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:227:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:228:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:229:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!941 +{31 +[1,561:4262630,47279633:28320399,43253760,0 +(1,561:4262630,4025873:0,0,0 +[1,561:-473656,4025873:0,0,0 +(1,561:-473656,-710413:0,0,0 +(1,561:-473656,-644877:0,0,0 +k1,561:-473656,-644877:-65536 +) +(1,561:-473656,4736287:0,0,0 +k1,561:-473656,4736287:5209943 +) +g1,561:-473656,-710413 ) ] ) -g1,417:36675916,49800853 -(1,417:36675916,49800853:1179648,16384,0 -r1,438:37855564,49800853:1179648,16384,0 +[1,561:6630773,47279633:25952256,43253760,0 +[1,561:6630773,4812305:25952256,786432,0 +(1,561:6630773,4812305:25952256,505283,134348 +(1,561:6630773,4812305:25952256,505283,134348 +g1,561:3078558,4812305 +[1,561:3078558,4812305:0,0,0 +(1,561:3078558,2439708:0,1703936,0 +k1,561:1358238,2439708:-1720320 +(1,412:1358238,2439708:1720320,1703936,0 +(1,412:1358238,2439708:1179648,16384,0 +r1,561:2537886,2439708:1179648,16384,0 ) +g1,412:3062174,2439708 +(1,412:3062174,2439708:16384,1703936,0 +[1,412:3062174,2439708:25952256,1703936,0 +(1,412:3062174,1915420:25952256,1179648,0 +(1,412:3062174,1915420:16384,1179648,0 +r1,561:3078558,1915420:16384,1179648,0 ) -k1,438:3078556,49800853:-34777008 +k1,412:29014430,1915420:25935872 +g1,412:29014430,1915420 ) ] -g1,438:6630773,4812305 +) ) ) ] -[1,438:6630773,45706769:25952256,40108032,0 -(1,438:6630773,45706769:25952256,40108032,0 -(1,438:6630773,45706769:0,0,0 -g1,438:6630773,45706769 +[1,561:3078558,4812305:0,0,0 +(1,561:3078558,2439708:0,1703936,0 +g1,561:29030814,2439708 +g1,561:36135244,2439708 +(1,412:36135244,2439708:1720320,1703936,0 +(1,412:36135244,2439708:16384,1703936,0 +[1,412:36135244,2439708:25952256,1703936,0 +(1,412:36135244,1915420:25952256,1179648,0 +(1,412:36135244,1915420:16384,1179648,0 +r1,561:36151628,1915420:16384,1179648,0 ) -[1,438:6630773,45706769:25952256,40108032,0 -[1,417:6630773,11663733:25952256,6064996,0 -(1,417:6630773,6633157:25952256,1165492,0 -h1,417:6630773,6633157:0,0,0 -k1,417:20096848,6633157:12486181 -k1,417:32583029,6633157:12486181 +k1,412:62087500,1915420:25935872 +g1,412:62087500,1915420 ) -(1,417:6630773,7333093:25952256,32768,229376 -(1,417:6630773,7333093:0,32768,229376 -(1,417:6630773,7333093:5505024,32768,229376 -r1,438:12135797,7333093:5505024,262144,229376 +] ) -k1,417:6630773,7333093:-5505024 +g1,412:36675916,2439708 +(1,412:36675916,2439708:1179648,16384,0 +r1,561:37855564,2439708:1179648,16384,0 ) -(1,417:6630773,7333093:25952256,32768,0 -r1,438:32583029,7333093:25952256,32768,0 ) +k1,561:3078556,2439708:-34777008 ) -(1,417:6630773,9128789:25952256,909509,241827 -h1,417:6630773,9128789:0,0,0 -g1,417:8047531,9128789 -g1,417:10180335,9128789 -g1,417:16167049,9128789 -g1,417:18704472,9128789 -g1,417:20837276,9128789 -k1,417:29206878,9128789:3376152 -k1,417:32583029,9128789:3376151 +] +[1,561:3078558,4812305:0,0,0 +(1,561:3078558,49800853:0,16384,2228224 +k1,561:1358238,49800853:-1720320 +(1,412:1358238,49800853:1720320,16384,2228224 +(1,412:1358238,49800853:1179648,16384,0 +r1,561:2537886,49800853:1179648,16384,0 ) -(1,417:6630773,9828725:25952256,32768,0 -(1,417:6630773,9828725:5505024,32768,0 -r1,438:12135797,9828725:5505024,32768,0 +g1,412:3062174,49800853 +(1,412:3062174,52029077:16384,1703936,0 +[1,412:3062174,52029077:25952256,1703936,0 +(1,412:3062174,51504789:25952256,1179648,0 +(1,412:3062174,51504789:16384,1179648,0 +r1,561:3078558,51504789:16384,1179648,0 ) -k1,417:22359413,9828725:10223616 -k1,417:32583029,9828725:10223616 -) -] -(1,419:6630773,14556498:25952256,131072,0 -r1,438:32583029,14556498:25952256,131072,0 -g1,419:32583029,14556498 -g1,419:32583029,14556498 -) -(1,421:6630773,15876399:25952256,513147,134348 -k1,421:8596853,15876399:1966080 -k1,420:9474380,15876399:249692 -k1,420:10079932,15876399:249692 -k1,420:12159390,15876399:249693 -k1,420:13068374,15876399:249692 -k1,420:13973426,15876399:249692 -k1,420:17296101,15876399:249692 -k1,420:20313378,15876399:249692 -k1,420:21510721,15876399:249692 -k1,420:23410611,15876399:249693 -k1,420:24319595,15876399:249692 -k1,420:28106265,15876399:249692 -k1,420:29512667,15876399:249692 -k1,420:32583029,15876399:1966080 -) -(1,421:6630773,16717887:25952256,513147,134348 -k1,421:8596853,16717887:1966080 -k1,420:10084708,16717887:210558 -k1,420:11872717,16717887:210557 -k1,420:12742567,16717887:210558 -k1,420:13972210,16717887:210558 -k1,420:15804129,16717887:210558 -k1,420:23138449,16717887:210557 -k1,420:25524802,16717887:210558 -k1,420:32583029,16717887:1966080 -) -(1,421:6630773,17559375:25952256,513147,134348 -g1,421:8596853,17559375 -g1,420:10363703,17559375 -g1,420:11582017,17559375 -g1,420:14358777,17559375 -g1,420:15217298,17559375 -g1,420:17000532,17559375 -k1,421:30616949,17559375:10683681 -g1,421:32583029,17559375 -) -(1,422:6630773,19187295:25952256,505283,134348 -k1,422:20158061,19187295:13527288 -h1,422:20158061,19187295:0,0,0 -g1,422:22016662,19187295 -g1,422:22995769,19187295 -g1,422:26470487,19187295 -g1,422:27861161,19187295 -g1,422:29300331,19187295 -g1,422:30616949,19187295 -g1,422:32583029,19187295 -) -(1,423:6630773,20028783:25952256,513147,134348 -k1,423:19372939,20028783:12742166 -h1,422:19372939,20028783:0,0,0 -g1,422:20759680,20028783 -g1,422:23444690,20028783 -g1,422:24259957,20028783 -g1,422:29023113,20028783 -g1,423:30616949,20028783 -g1,423:32583029,20028783 -) -(1,423:6630773,21263487:25952256,131072,0 -r1,438:32583029,21263487:25952256,131072,0 -g1,423:32583029,21263487 -g1,423:34549109,21263487 -) -(1,425:6630773,24071055:25952256,32768,229376 -(1,425:6630773,24071055:0,32768,229376 -(1,425:6630773,24071055:5505024,32768,229376 -r1,438:12135797,24071055:5505024,262144,229376 -) -k1,425:6630773,24071055:-5505024 -) -(1,425:6630773,24071055:25952256,32768,0 -r1,438:32583029,24071055:25952256,32768,0 -) -) -(1,425:6630773,25675383:25952256,615776,151780 -(1,425:6630773,25675383:1974731,582746,0 -g1,425:6630773,25675383 -g1,425:8605504,25675383 -) -g1,425:10904245,25675383 -g1,425:11961996,25675383 -g1,425:13695292,25675383 -k1,425:32583029,25675383:15886712 -g1,425:32583029,25675383 -) -(1,428:6630773,26910087:25952256,513147,134348 -k1,427:7129339,26910087:285574 -k1,427:9151704,26910087:285661 -k1,427:11129505,26910087:285661 -k1,427:12956573,26910087:285661 -k1,427:15064790,26910087:285661 -k1,427:16369536,26910087:285661 -k1,427:18902428,26910087:285662 -k1,427:20379534,26910087:285661 -k1,427:22753827,26910087:285661 -k1,427:23698780,26910087:285661 -k1,427:25003526,26910087:285661 -k1,427:25703943,26910087:285574 -k1,427:28831900,26910087:285661 -k1,427:29842389,26910087:285661 -k1,427:31412556,26910087:285661 -k1,427:32583029,26910087:0 -) -(1,428:6630773,27751575:25952256,513147,134348 -k1,427:7957362,27751575:222307 -k1,427:9525780,27751575:222308 -k1,427:10103947,27751575:222307 -k1,427:11910259,27751575:222307 -k1,427:14594755,27751575:222308 -k1,427:16505269,27751575:222307 -k1,427:18295198,27751575:222308 -k1,427:20402976,27751575:222307 -k1,427:21276711,27751575:222307 -k1,427:23268491,27751575:222308 -k1,427:24509883,27751575:222307 -k1,427:26240829,27751575:222307 -k1,427:28662525,27751575:222308 -k1,427:29803647,27751575:222307 -k1,427:32583029,27751575:0 -) -(1,428:6630773,28593063:25952256,505283,134348 -k1,427:9176301,28593063:186887 -k1,427:9821284,28593063:186886 -k1,427:11878569,28593063:186887 -k1,427:12716884,28593063:186887 -k1,427:16568543,28593063:186886 -k1,427:17946875,28593063:186887 -k1,427:21392867,28593063:186887 -k1,427:23392479,28593063:186886 -k1,427:24833070,28593063:186887 -k1,427:26152419,28593063:186887 -k1,427:27950835,28593063:186886 -k1,427:29156807,28593063:186887 -k1,427:32583029,28593063:0 -) -(1,428:6630773,29434551:25952256,513147,134348 -k1,427:9449121,29434551:183145 -k1,427:10651350,29434551:183144 -k1,427:11249322,29434551:183129 -k1,427:14174493,29434551:183145 -k1,427:15963269,29434551:183144 -k1,427:17337859,29434551:183145 -k1,427:18540088,29434551:183144 -k1,427:21738544,29434551:183145 -k1,427:25167687,29434551:183145 -k1,427:26497056,29434551:183144 -k1,427:29278048,29434551:183145 -k1,427:32583029,29434551:0 -) -(1,428:6630773,30276039:25952256,505283,134348 -g1,427:8343228,30276039 -g1,427:11222880,30276039 -g1,427:12816060,30276039 -k1,428:32583029,30276039:19178456 -g1,428:32583029,30276039 -) -(1,430:6630773,31117527:25952256,505283,134348 -h1,429:6630773,31117527:983040,0,0 -k1,429:9074305,31117527:206788 -k1,429:10413556,31117527:206789 -k1,429:11906160,31117527:206788 -k1,429:13724478,31117527:206788 -k1,429:15261648,31117527:206789 -k1,429:16119864,31117527:206788 -k1,429:18781632,31117527:206789 -k1,429:20382371,31117527:206788 -k1,429:21003995,31117527:206781 -k1,429:22908821,31117527:206788 -k1,429:25151158,31117527:206789 -k1,429:25970708,31117527:206788 -k1,429:26533356,31117527:206788 -k1,429:29990075,31117527:206789 -k1,429:31450567,31117527:206788 -k1,429:32583029,31117527:0 -) -(1,430:6630773,31959015:25952256,513147,134348 -k1,429:8415384,31959015:173081 -k1,429:9607549,31959015:173080 -k1,429:12966989,31959015:173080 -k1,429:15775273,31959015:173081 -k1,429:17977349,31959015:173081 -k1,429:21640221,31959015:173080 -k1,429:25740218,31959015:173080 -k1,429:27104744,31959015:173081 -k1,429:29680375,31959015:173081 -k1,429:31305077,31959015:173080 -k1,430:32583029,31959015:0 -) -(1,430:6630773,32800503:25952256,513147,134348 -k1,429:7793302,32800503:143444 -k1,429:9779618,32800503:143444 -k1,429:11490682,32800503:143443 -k1,429:12048914,32800503:143389 -k1,429:13001727,32800503:143443 -k1,429:14164256,32800503:143444 -k1,429:16369463,32800503:143444 -k1,429:17199069,32800503:143444 -k1,429:18512986,32800503:143444 -k1,429:20311213,32800503:143443 -k1,429:22267383,32800503:143444 -k1,429:24479143,32800503:143444 -k1,429:26357980,32800503:143444 -k1,429:26916211,32800503:143388 -k1,429:29221032,32800503:143444 -k1,429:32583029,32800503:0 -) -(1,430:6630773,33641991:25952256,513147,134348 -k1,429:9510381,33641991:208361 -k1,429:13208534,33641991:208361 -k1,429:15455065,33641991:208361 -k1,429:16279463,33641991:208360 -k1,429:16843684,33641991:208361 -k1,429:18035085,33641991:208361 -k1,429:18894874,33641991:208361 -k1,429:21515615,33641991:208361 -k1,429:22406861,33641991:208361 -k1,429:23733266,33641991:208361 -k1,429:24297487,33641991:208361 -k1,429:26127863,33641991:208360 -k1,429:27620730,33641991:208361 -k1,429:29550066,33641991:208361 -k1,429:31931601,33641991:208361 -k1,429:32583029,33641991:0 -) -(1,430:6630773,34483479:25952256,513147,126483 -g1,429:9302675,34483479 -g1,429:10484944,34483479 -g1,429:11631824,34483479 -g1,429:13284642,34483479 -k1,430:32583029,34483479:15809250 -g1,430:32583029,34483479 -) -(1,432:6630773,35324967:25952256,513147,134348 -h1,431:6630773,35324967:983040,0,0 -k1,431:7992580,35324967:165775 -k1,431:10827670,35324967:165809 -k1,431:12012564,35324967:165809 -k1,431:13863959,35324967:165809 -k1,431:15797273,35324967:165808 -k1,431:16579120,35324967:165809 -k1,431:17100789,35324967:165809 -k1,431:19401105,35324967:165808 -k1,431:22416419,35324967:165809 -k1,431:23265113,35324967:165809 -k1,431:26294190,35324967:165809 -k1,431:28417558,35324967:165808 -k1,431:31563944,35324967:165809 -k1,431:32583029,35324967:0 -) -(1,432:6630773,36166455:25952256,513147,126483 -k1,431:8207643,36166455:187507 -k1,431:10949743,36166455:187507 -k1,431:12733707,36166455:187507 -k1,431:14271256,36166455:187507 -k1,431:15650208,36166455:187507 -k1,431:16856800,36166455:187507 -k1,431:18609962,36166455:187507 -k1,431:20081975,36166455:187507 -k1,431:20684313,36166455:187495 -k1,431:21976102,36166455:187507 -k1,431:23506442,36166455:187507 -k1,431:24309987,36166455:187507 -k1,431:25129261,36166455:187507 -k1,431:25529748,36166455:187495 -k1,431:27453959,36166455:187507 -k1,431:28622540,36166455:187507 -k1,431:30567067,36166455:187507 -k1,431:31563944,36166455:187507 -k1,431:32583029,36166455:0 -) -(1,432:6630773,37007943:25952256,513147,134348 -k1,431:10369998,37007943:170134 -k1,431:11731577,37007943:170134 -k1,431:16423040,37007943:170134 -k1,431:17252466,37007943:170134 -k1,431:19624610,37007943:170134 -k1,431:22954235,37007943:170134 -k1,431:26296967,37007943:170134 -k1,431:27960667,37007943:170134 -k1,431:28816963,37007943:170134 -k1,431:29401911,37007943:170105 -k1,431:32583029,37007943:0 -) -(1,432:6630773,37849431:25952256,513147,126483 -k1,431:7488163,37849431:205962 -k1,431:11733765,37849431:205963 -k1,431:13320571,37849431:205962 -k1,431:16840689,37849431:205962 -k1,431:20351632,37849431:205962 -k1,431:22070821,37849431:205963 -k1,431:22892821,37849431:205962 -k1,431:24800753,37849431:205962 -k1,431:27860153,37849431:205962 -k1,431:30998852,37849431:205963 -k1,431:31417799,37849431:205955 -k1,432:32583029,37849431:0 -) -(1,432:6630773,38690919:25952256,513147,134348 -k1,431:8224499,38690919:184702 -k1,431:9428286,38690919:184702 -k1,431:10848342,38690919:184702 -k1,431:11692337,38690919:184703 -k1,431:14079049,38690919:184702 -k1,431:17436349,38690919:184702 -k1,431:18812496,38690919:184702 -k1,431:21226733,38690919:184702 -k1,431:25830527,38690919:184702 -k1,431:26631268,38690919:184703 -k1,431:27835055,38690919:184702 -k1,431:29373731,38690919:184702 -k1,431:32583029,38690919:0 -) -(1,432:6630773,39532407:25952256,513147,126483 -k1,431:9647728,39532407:252646 -k1,431:10559665,39532407:252645 -k1,431:15547943,39532407:252646 -k1,431:16459881,39532407:252646 -k1,431:18101889,39532407:252645 -k1,431:21055274,39532407:252646 -k1,431:22499364,39532407:252645 -k1,431:25401631,39532407:252646 -k1,431:26984658,39532407:252646 -k1,431:27450242,39532407:252592 -k1,431:29178102,39532407:252645 -k1,431:30943974,39532407:252646 -k1,431:32583029,39532407:0 -) -(1,432:6630773,40373895:25952256,505283,134348 -g1,431:8519520,40373895 -g1,431:10976464,40373895 -g1,431:12367138,40373895 -g1,431:16134147,40373895 -g1,431:17536617,40373895 -k1,432:32583029,40373895:13290702 -g1,432:32583029,40373895 -) -] -(1,438:32583029,45706769:0,0,0 -g1,438:32583029,45706769 -) -) -] -(1,438:6630773,47279633:25952256,485622,11795 -(1,438:6630773,47279633:25952256,485622,11795 -(1,438:6630773,47279633:0,0,0 -v1,438:6630773,47279633:0,0,0 -) -g1,438:6830002,47279633 -k1,438:32184570,47279633:25354568 -) -) -] -(1,438:4262630,4025873:0,0,0 -[1,438:-473656,4025873:0,0,0 -(1,438:-473656,-710413:0,0,0 -(1,438:-473656,-710413:0,0,0 -g1,438:-473656,-710413 -) -g1,438:-473656,-710413 +k1,412:29014430,51504789:25935872 +g1,412:29014430,51504789 ) ] ) +) +) ] -!14371 -}24 -!11 -{25 -[1,446:4262630,47279633:28320399,43253760,0 -(1,446:4262630,4025873:0,0,0 -[1,446:-473656,4025873:0,0,0 -(1,446:-473656,-710413:0,0,0 -(1,446:-473656,-644877:0,0,0 -k1,446:-473656,-644877:-65536 +[1,561:3078558,4812305:0,0,0 +(1,561:3078558,49800853:0,16384,2228224 +g1,561:29030814,49800853 +g1,561:36135244,49800853 +(1,412:36135244,49800853:1720320,16384,2228224 +(1,412:36135244,52029077:16384,1703936,0 +[1,412:36135244,52029077:25952256,1703936,0 +(1,412:36135244,51504789:25952256,1179648,0 +(1,412:36135244,51504789:16384,1179648,0 +r1,561:36151628,51504789:16384,1179648,0 +) +k1,412:62087500,51504789:25935872 +g1,412:62087500,51504789 +) +] +) +g1,412:36675916,49800853 +(1,412:36675916,49800853:1179648,16384,0 +r1,561:37855564,49800853:1179648,16384,0 +) +) +k1,561:3078556,49800853:-34777008 +) +] +g1,561:6630773,4812305 +k1,561:21916392,4812305:14488701 +g1,561:22703479,4812305 +g1,561:23888369,4812305 +g1,561:27214321,4812305 +g1,561:28624000,4812305 +g1,561:29808890,4812305 +) +) +] +[1,561:6630773,45706769:25952256,40108032,0 +(1,561:6630773,45706769:25952256,40108032,0 +(1,561:6630773,45706769:0,0,0 +g1,561:6630773,45706769 +) +[1,561:6630773,45706769:25952256,40108032,0 +[1,524:6630773,15946928:25952256,10348191,0 +[1,524:6630773,15946928:25952256,10348191,0 +(1,523:6630773,12569845:25952256,6971108,0 +g1,523:6630773,12569845 +h1,522:6630773,12569845:0,0,0 +(1,522:6630773,12569845:25952256,6971108,0 +) +g1,523:32583029,12569845 +g1,523:32583029,12569845 +) +(1,523:6630773,14090285:25952256,485622,11795 +h1,523:6630773,14090285:0,0,0 +g1,523:9295467,14090285 +k1,523:32583028,14090285:22297312 +g1,523:32583028,14090285 +) +(1,523:6630773,14955365:25952256,513147,126483 +h1,523:6630773,14955365:0,0,0 +k1,523:8037295,14955365:209835 +k1,523:8661963,14955365:209825 +k1,523:11292043,14955365:209835 +k1,523:13015105,14955365:209836 +k1,523:15456441,14955365:209835 +k1,523:19156068,14955365:209835 +k1,523:20841119,14955365:209836 +k1,523:22560904,14955365:209835 +k1,523:25367275,14955365:209835 +k1,523:29188800,14955365:209836 +k1,523:31821501,14955365:209835 +k1,523:32583029,14955365:0 +) +(1,523:6630773,15820445:25952256,505283,126483 +g1,523:7849087,15820445 +g1,523:9429160,15820445 +g1,523:10619949,15820445 +g1,523:13882331,15820445 +g1,523:14697598,15820445 +g1,523:16126938,15820445 +g1,523:18015685,15820445 +g1,523:20388088,15820445 +g1,523:23366044,15820445 +g1,523:24326801,15820445 +g1,523:24940873,15820445 +g1,523:26131662,15820445 +g1,523:29394044,15820445 +g1,523:30209311,15820445 +k1,523:32583029,15820445:832311 +g1,523:32583029,15820445 +) +] +] +(1,519:6630773,17913008:25952256,513147,134348 +h1,518:6630773,17913008:983040,0,0 +k1,518:9006780,17913008:196280 +k1,518:10375500,17913008:196281 +k1,518:13326258,17913008:196280 +k1,518:15708165,17913008:196281 +k1,518:18333209,17913008:196280 +k1,518:19548574,17913008:196280 +k1,518:21587727,17913008:196281 +k1,518:22443299,17913008:196280 +k1,518:25284613,17913008:196281 +k1,518:25836753,17913008:196280 +k1,518:27906053,17913008:196281 +k1,518:31435494,17913008:196280 +k1,519:32583029,17913008:0 +) +(1,519:6630773,18778088:25952256,513147,102891 +k1,518:7844499,18778088:163184 +h1,518:8815087,18778088:0,0,0 +k1,518:8978272,18778088:163185 +k1,518:11132440,18778088:163184 +k1,518:12626006,18778088:163185 +k1,518:13808275,18778088:163184 +k1,518:16391705,18778088:163185 +k1,518:18271932,18778088:163184 +k1,518:19948343,18778088:163185 +k1,518:21130612,18778088:163184 +k1,518:22674641,18778088:163185 +k1,518:23938830,18778088:163184 +k1,518:26524881,18778088:163185 +k1,518:28919566,18778088:163184 +k1,518:32583029,18778088:0 +) +(1,519:6630773,19643168:25952256,513147,126483 +g1,518:8281624,19643168 +g1,518:9167015,19643168 +g1,518:9722104,19643168 +g1,518:12624038,19643168 +g1,518:13991774,19643168 +g1,518:14850295,19643168 +k1,519:32583029,19643168:16332885 +g1,519:32583029,19643168 +) +(1,527:6630773,20508248:25952256,513147,126483 +h1,526:6630773,20508248:983040,0,0 +k1,526:9109562,20508248:299062 +k1,526:12400344,20508248:299063 +k1,526:13315444,20508248:299062 +k1,526:14817748,20508248:299063 +k1,526:16698849,20508248:299062 +k1,526:19289706,20508248:299063 +k1,526:20964369,20508248:299062 +k1,526:22282516,20508248:299062 +k1,526:25001824,20508248:299063 +k1,526:27774215,20508248:299062 +k1,526:29020929,20508248:299063 +k1,526:30700835,20508248:299062 +k1,526:32583029,20508248:0 +) +(1,527:6630773,21373328:25952256,505283,134348 +k1,526:10766571,21373328:152520 +k1,526:13991419,21373328:152520 +k1,526:15135499,21373328:152520 +k1,526:16354290,21373328:152520 +k1,526:20022161,21373328:152520 +k1,526:21525378,21373328:152520 +k1,526:23058086,21373328:152520 +k1,526:24202166,21373328:152520 +k1,526:25583486,21373328:152520 +k1,526:29077687,21373328:152520 +k1,526:30928245,21373328:152520 +k1,526:32583029,21373328:0 +) +(1,527:6630773,22238408:25952256,513147,126483 +k1,526:7371049,22238408:208779 +k1,526:7935688,22238408:208779 +k1,526:9674733,22238408:208779 +k1,526:10534939,22238408:208778 +k1,526:11678261,22238408:208779 +k1,526:13241014,22238408:208779 +k1,526:15201570,22238408:208779 +k1,526:17823385,22238408:208779 +k1,526:19223609,22238408:208779 +k1,526:21647505,22238408:208779 +k1,526:23423904,22238408:208778 +k1,526:25384460,22238408:208779 +k1,526:28355582,22238408:208779 +k1,526:31025238,22238408:208779 +k1,526:32583029,22238408:0 +) +(1,527:6630773,23103488:25952256,513147,126483 +k1,526:7768538,23103488:146205 +k1,526:9200558,23103488:146204 +k1,526:11830578,23103488:146205 +k1,526:12628211,23103488:146205 +k1,526:15595085,23103488:146204 +k1,526:17439328,23103488:146205 +k1,526:21474438,23103488:146204 +k1,526:22152140,23103488:146205 +k1,526:24828035,23103488:146205 +k1,526:26165684,23103488:146204 +k1,526:28009927,23103488:146205 +k1,526:32583029,23103488:0 +) +(1,527:6630773,23968568:25952256,513147,134348 +k1,526:10072658,23968568:180814 +k1,526:12986322,23968568:180813 +k1,526:13826428,23968568:180814 +k1,526:15361216,23968568:180814 +k1,526:18304372,23968568:180813 +k1,526:23113339,23968568:180814 +k1,526:24824419,23968568:180814 +k1,526:25656661,23968568:180814 +k1,526:26585240,23968568:180813 +k1,526:30203417,23968568:180814 +k1,526:32583029,23968568:0 +) +(1,527:6630773,24833648:25952256,505283,134348 +k1,526:10060818,24833648:257447 +k1,526:11604081,24833648:257447 +k1,526:13336743,24833648:257447 +k1,526:14613275,24833648:257447 +k1,526:18283182,24833648:257447 +k1,526:19192058,24833648:257448 +k1,526:20197271,24833648:257447 +k1,526:23716445,24833648:257447 +k1,526:24589930,24833648:257447 +k1,526:26300966,24833648:257447 +k1,526:29480008,24833648:257447 +k1,526:31021961,24833648:257447 +k1,527:32583029,24833648:0 +) +(1,527:6630773,25698728:25952256,513147,126483 +k1,526:8669240,25698728:227052 +k1,526:12166539,25698728:227052 +k1,526:13497874,25698728:227053 +k1,526:14472692,25698728:227052 +k1,526:16737914,25698728:227052 +k1,526:17581004,25698728:227052 +k1,526:20241408,25698728:227052 +k1,526:21659905,25698728:227052 +k1,526:27897265,25698728:227053 +k1,526:29350496,25698728:227052 +k1,526:31064560,25698728:227052 +k1,526:32583029,25698728:0 +) +(1,527:6630773,26563808:25952256,513147,126483 +k1,526:8124380,26563808:180265 +k1,526:11511977,26563808:180265 +k1,526:12048101,26563808:180264 +k1,526:14301270,26563808:180265 +k1,526:15140827,26563808:180265 +k1,526:16087208,26563808:180265 +k1,526:17286558,26563808:180265 +k1,526:19152408,26563808:180264 +k1,526:21019570,26563808:180265 +k1,526:22391280,26563808:180265 +k1,526:23187583,26563808:180265 +k1,526:24969548,26563808:180265 +k1,526:27020866,26563808:180265 +k1,526:29247164,26563808:180264 +k1,526:29885526,26563808:180265 +k1,526:31931601,26563808:180265 +k1,526:32583029,26563808:0 +) +(1,527:6630773,27428888:25952256,505283,126483 +k1,526:9790685,27428888:227176 +k1,526:13273690,27428888:227176 +k1,526:14519950,27428888:227175 +k1,526:16400599,27428888:227176 +k1,526:18313361,27428888:227176 +k1,526:19153299,27428888:227176 +k1,526:19736335,27428888:227176 +k1,526:21417099,27428888:227175 +k1,526:23243353,27428888:227176 +k1,526:25656810,27428888:227176 +k1,526:26875546,27428888:227176 +k1,526:27458581,27428888:227175 +k1,526:29039731,27428888:227176 +k1,526:31391584,27428888:227176 +k1,526:32583029,27428888:0 +) +(1,527:6630773,28293968:25952256,513147,134348 +k1,526:8840597,28293968:242433 +k1,526:10321005,28293968:242433 +k1,526:11222729,28293968:242432 +k1,526:16400678,28293968:242433 +k1,526:17294539,28293968:242433 +k1,526:19238942,28293968:242433 +k1,526:21192519,28293968:242432 +k1,526:22765333,28293968:242433 +k1,526:23363626,28293968:242433 +k1,526:25300820,28293968:242433 +k1,526:26932615,28293968:242432 +k1,526:29729641,28293968:242433 +k1,526:31073079,28293968:242433 +k1,526:32583029,28293968:0 +) +(1,527:6630773,29159048:25952256,505283,7863 +g1,526:8407454,29159048 +g1,526:9289568,29159048 +g1,526:10593079,29159048 +g1,526:11540074,29159048 +k1,527:32583028,29159048:19291832 +g1,527:32583028,29159048 +) +v1,529:6630773,30024128:0,393216,0 +(1,531:6630773,36514469:25952256,6883557,0 +g1,531:6630773,36514469 +g1,531:6237557,36514469 +r1,561:6368629,36514469:131072,6883557,0 +g1,531:6567858,36514469 +g1,531:6764466,36514469 +[1,531:6764466,36514469:25818563,6883557,0 +(1,531:6764466,30332426:25818563,701514,196608 +(1,529:6764466,30332426:0,701514,196608 +r1,561:8010564,30332426:1246098,898122,196608 +k1,529:6764466,30332426:-1246098 +) +(1,529:6764466,30332426:1246098,701514,196608 +) +k1,529:8167479,30332426:156915 +k1,529:8495159,30332426:327680 +k1,529:9279909,30332426:156915 +k1,529:10455909,30332426:156915 +k1,529:13033069,30332426:156915 +k1,529:14346694,30332426:156915 +k1,529:16219997,30332426:156915 +k1,529:19866704,30332426:156915 +k1,529:20636381,30332426:156915 +k1,529:21812382,30332426:156916 +(1,529:21812382,30332426:0,414482,115847 +r1,561:22170648,30332426:358266,530329,115847 +k1,529:21812382,30332426:-358266 +) +(1,529:21812382,30332426:358266,414482,115847 +k1,529:21812382,30332426:3277 +h1,529:22167371,30332426:0,411205,112570 +) +k1,529:22327563,30332426:156915 +k1,529:25059388,30332426:156915 +k1,529:26999538,30332426:156915 +k1,529:28313163,30332426:156915 +k1,529:29983304,30332426:156915 +k1,529:30496079,30332426:156915 +k1,529:31821501,30332426:156915 +k1,529:32583029,30332426:0 +) +(1,531:6764466,31197506:25818563,513147,134348 +k1,529:9606111,31197506:134353 +k1,529:10759549,31197506:134353 +k1,529:12904546,31197506:134352 +k1,529:13721784,31197506:134353 +k1,529:15510921,31197506:134353 +k1,529:16919949,31197506:134353 +k1,529:17520262,31197506:134352 +k1,529:18673700,31197506:134353 +k1,529:19976560,31197506:134353 +k1,529:21215195,31197506:134353 +k1,529:22097314,31197506:134353 +k1,529:25821728,31197506:134352 +k1,529:26642243,31197506:134353 +k1,529:27547299,31197506:134353 +k1,529:28096430,31197506:134288 +k1,529:31563944,31197506:134353 +k1,529:32583029,31197506:0 +) +(1,531:6764466,32062586:25818563,513147,126483 +k1,529:8792426,32062586:185088 +k1,529:10109976,32062586:185088 +k1,529:11042830,32062586:185088 +k1,529:13578039,32062586:185088 +k1,529:14375889,32062586:185088 +k1,529:15580062,32062586:185088 +k1,529:18359065,32062586:185088 +k1,529:21297321,32062586:185089 +k1,529:22243937,32062586:185088 +k1,529:22784885,32062586:185088 +k1,529:24253168,32062586:185088 +(1,529:24253168,32062586:0,414482,115847 +r1,561:24611434,32062586:358266,530329,115847 +k1,529:24253168,32062586:-358266 +) +(1,529:24253168,32062586:358266,414482,115847 +k1,529:24253168,32062586:3277 +h1,529:24608157,32062586:0,411205,112570 +) +k1,529:24796522,32062586:185088 +k1,529:27556520,32062586:185088 +k1,530:28219365,32062586:185088 +k1,530:29423538,32062586:185088 +k1,530:32583029,32062586:0 +) +(1,531:6764466,32927666:25818563,505283,126483 +k1,530:7474934,32927666:178971 +k1,530:11369142,32927666:178972 +k1,530:11903973,32927666:178971 +(1,530:11903973,32927666:0,414482,115847 +r1,561:12262239,32927666:358266,530329,115847 +k1,530:11903973,32927666:-358266 +) +(1,530:11903973,32927666:358266,414482,115847 +k1,530:11903973,32927666:3277 +h1,530:12258962,32927666:0,411205,112570 +) +k1,530:12441210,32927666:178971 +k1,530:16674239,32927666:178972 +k1,530:19254449,32927666:178971 +k1,530:20565882,32927666:178971 +k1,530:21492620,32927666:178972 +k1,530:23920787,32927666:178971 +k1,530:25291203,32927666:178971 +k1,530:26640648,32927666:178972 +k1,530:27952081,32927666:178971 +k1,530:28878818,32927666:178971 +k1,530:30366544,32927666:178972 +k1,530:31196943,32927666:178971 +k1,530:32583029,32927666:0 +) +(1,531:6764466,33792746:25818563,513147,126483 +k1,530:7594432,33792746:213928 +k1,530:8827445,33792746:213928 +k1,530:10264276,33792746:213929 +k1,530:11137496,33792746:213928 +k1,530:12370509,33792746:213928 +k1,530:15917598,33792746:213928 +k1,530:17173549,33792746:213929 +k1,530:20048894,33792746:213928 +k1,530:20728783,33792746:213928 +k1,530:21961796,33792746:213928 +k1,530:24058573,33792746:213928 +k1,530:27743944,33792746:213929 +k1,530:29242378,33792746:213928 +k1,530:30626779,33792746:213928 +k1,530:32583029,33792746:0 +) +(1,531:6764466,34657826:25818563,513147,134348 +k1,530:8088730,34657826:178039 +k1,530:8918198,34657826:178040 +k1,530:9911505,34657826:178039 +k1,530:10621041,34657826:178039 +$1,530:10621041,34657826 +k1,530:11118675,34657826:99175 +k1,530:11786047,34657826:99175 +k1,530:12283681,34657826:99175 +k1,530:12951053,34657826:99175 +$1,530:13349512,34657826 +k1,530:13701221,34657826:178039 +k1,530:14345221,34657826:178039 +k1,530:15693734,34657826:178040 +k1,530:17526557,34657826:178039 +k1,530:18320634,34657826:178039 +k1,530:19517758,34657826:178039 +k1,530:22116043,34657826:178040 +(1,530:22116043,34657826:0,435480,115847 +r1,561:24584581,34657826:2468538,551327,115847 +k1,530:22116043,34657826:-2468538 +) +(1,530:22116043,34657826:2468538,435480,115847 +g1,530:22822744,34657826 +g1,530:23526168,34657826 +g1,530:24229592,34657826 +h1,530:24581304,34657826:0,411205,112570 +) +k1,530:24762620,34657826:178039 +k1,530:25556697,34657826:178039 +k1,530:26891447,34657826:178040 +k1,530:28411663,34657826:178039 +k1,530:29760175,34657826:178039 +k1,530:31070677,34657826:178040 +k1,530:32227169,34657826:178039 +k1,530:32583029,34657826:0 +) +(1,531:6764466,35522906:25818563,513147,126483 +k1,530:11005627,35522906:187104 +k1,530:13593971,35522906:187105 +k1,530:15699969,35522906:187104 +k1,530:17057547,35522906:187105 +k1,530:18377113,35522906:187104 +k1,530:19311984,35522906:187105 +k1,530:20807842,35522906:187104 +k1,530:21646374,35522906:187104 +k1,530:23219565,35522906:187105 +(1,530:23219565,35522906:0,435480,115847 +r1,561:23577831,35522906:358266,551327,115847 +k1,530:23219565,35522906:-358266 +) +(1,530:23219565,35522906:358266,435480,115847 +k1,530:23219565,35522906:3277 +h1,530:23574554,35522906:0,411205,112570 +) +k1,530:23938605,35522906:187104 +k1,530:27060412,35522906:187105 +k1,530:27713477,35522906:187104 +k1,530:29071055,35522906:187105 +k1,530:30644245,35522906:187104 +(1,530:30644245,35522906:0,435480,115847 +r1,561:32409359,35522906:1765114,551327,115847 +k1,530:30644245,35522906:-1765114 +) +(1,530:30644245,35522906:1765114,435480,115847 +g1,530:31350946,35522906 +g1,530:32054370,35522906 +h1,530:32406082,35522906:0,411205,112570 +) +k1,530:32583029,35522906:0 +) +(1,531:6764466,36387986:25818563,505283,126483 +g1,530:7982780,36387986 +g1,530:10024881,36387986 +g1,530:11356572,36387986 +g1,530:12303567,36387986 +g1,530:15905425,36387986 +g1,530:17296099,36387986 +k1,531:32583029,36387986:12763139 +g1,531:32583029,36387986 +) +] +g1,531:32583029,36514469 +) +h1,531:6630773,36514469:0,0,0 +(1,534:6630773,37379549:25952256,513147,134348 +h1,533:6630773,37379549:983040,0,0 +g1,533:8855064,37379549 +g1,533:11889380,37379549 +g1,533:13245319,37379549 +g1,533:14548830,37379549 +g1,533:16818341,37379549 +g1,533:17965221,37379549 +g1,533:18520310,37379549 +g1,533:20107592,37379549 +g1,533:21804974,37379549 +g1,533:22616965,37379549 +g1,533:23835279,37379549 +g1,533:24449351,37379549 +k1,534:32583029,37379549:5539763 +g1,534:32583029,37379549 +) +v1,536:6630773,38244629:0,393216,0 +(1,537:6630773,40523679:25952256,2672266,0 +g1,537:6630773,40523679 +g1,537:6237557,40523679 +r1,561:6368629,40523679:131072,2672266,0 +g1,537:6567858,40523679 +g1,537:6764466,40523679 +[1,537:6764466,40523679:25818563,2672266,0 +(1,537:6764466,38659171:25818563,807758,219026 +(1,536:6764466,38659171:0,807758,219026 +r1,561:7908217,38659171:1143751,1026784,219026 +k1,536:6764466,38659171:-1143751 +) +(1,536:6764466,38659171:1143751,807758,219026 +) +k1,536:8106780,38659171:198563 +k1,536:8434460,38659171:327680 +k1,536:10500145,38659171:198564 +k1,536:11690268,38659171:198563 +k1,536:12907916,38659171:198563 +k1,536:14412612,38659171:198563 +k1,536:16107363,38659171:198564 +k1,536:18967343,38659171:198563 +k1,536:20357351,38659171:198563 +k1,536:21862048,38659171:198564 +k1,536:25710966,38659171:198563 +k1,536:26525567,38659171:198563 +k1,536:27743215,38659171:198563 +k1,536:29697489,38659171:198564 +k1,536:31276896,38659171:198563 +k1,536:32583029,38659171:0 +) +(1,537:6764466,39524251:25818563,513147,134348 +k1,536:9639661,39524251:213778 +k1,536:10384937,39524251:213779 +k1,536:11546366,39524251:213778 +k1,536:15285326,39524251:213778 +k1,536:17048375,39524251:213778 +k1,536:18453599,39524251:213779 +k1,536:19837850,39524251:213778 +k1,536:21155910,39524251:213778 +k1,536:23380333,39524251:213778 +k1,536:24245540,39524251:213779 +k1,536:26098373,39524251:213778 +k1,536:27765740,39524251:213778 +k1,536:28665680,39524251:213778 +k1,536:30255060,39524251:213779 +k1,536:31084876,39524251:213778 +k1,536:32583029,39524251:0 +) +(1,537:6764466,40389331:25818563,505283,134348 +h1,536:7561384,40389331:0,0,0 +g1,536:7760613,40389331 +g1,536:8172834,40389331 +g1,536:10733325,40389331 +g1,536:12262935,40389331 +g1,536:13113592,40389331 +g1,536:15282178,40389331 +g1,536:16164292,40389331 +g1,536:17341974,40389331 +g1,536:19572164,40389331 +g1,536:20422821,40389331 +g1,536:21641135,40389331 +g1,536:22255207,40389331 +k1,537:32583029,40389331:7412125 +g1,537:32583029,40389331 +) +] +g1,537:32583029,40523679 +) +h1,537:6630773,40523679:0,0,0 +v1,540:6630773,41208534:0,393216,0 +(1,545:6630773,42127825:25952256,1312507,196608 +g1,545:6630773,42127825 +g1,545:6630773,42127825 +g1,545:6434165,42127825 +(1,545:6434165,42127825:0,1312507,196608 +r1,561:32779637,42127825:26345472,1509115,196608 +k1,545:6434165,42127825:-26345472 +) +(1,545:6434165,42127825:26345472,1312507,196608 +[1,545:6630773,42127825:25952256,1115899,0 +(1,542:6630773,41436365:25952256,424439,106246 +(1,541:6630773,41436365:0,0,0 +g1,541:6630773,41436365 +g1,541:6630773,41436365 +g1,541:6303093,41436365 +(1,541:6303093,41436365:0,0,0 +) +g1,541:6630773,41436365 +) +k1,542:6630773,41436365:0 +h1,542:10282267,41436365:0,0,0 +k1,542:32583029,41436365:22300762 +g1,542:32583029,41436365 +) +(1,543:6630773,42121220:25952256,407923,6605 +h1,543:6630773,42121220:0,0,0 +h1,543:7958589,42121220:0,0,0 +k1,543:32583029,42121220:24624440 +g1,543:32583029,42121220 +) +] +) +g1,545:32583029,42127825 +g1,545:6630773,42127825 +g1,545:6630773,42127825 +g1,545:32583029,42127825 +g1,545:32583029,42127825 +) +h1,545:6630773,42324433:0,0,0 +v1,549:6630773,43189513:0,393216,0 +(1,558:6630773,45542610:25952256,2746313,0 +g1,558:6630773,45542610 +g1,558:6237557,45542610 +r1,561:6368629,45542610:131072,2746313,0 +g1,558:6567858,45542610 +g1,558:6764466,45542610 +[1,558:6764466,45542610:25818563,2746313,0 +(1,550:6764466,43461990:25818563,665693,196608 +(1,549:6764466,43461990:0,665693,196608 +r1,561:8010564,43461990:1246098,862301,196608 +k1,549:6764466,43461990:-1246098 +) +(1,549:6764466,43461990:1246098,665693,196608 +) +k1,549:8178650,43461990:168086 +k1,549:9496579,43461990:327680 +k1,549:11211314,43461990:168085 +k1,549:11992162,43461990:168086 +k1,549:13548300,43461990:168085 +k1,549:14664037,43461990:168086 +k1,549:16524262,43461990:168085 +k1,549:18394318,43461990:168086 +k1,549:21588200,43461990:168085 +k1,549:22902511,43461990:168086 +(1,549:22902511,43461990:0,452978,115847 +r1,561:25019336,43461990:2116825,568825,115847 +k1,549:22902511,43461990:-2116825 +) +(1,549:22902511,43461990:2116825,452978,115847 +k1,549:22902511,43461990:3277 +h1,549:25016059,43461990:0,411205,112570 +) +k1,549:25361091,43461990:168085 +(1,549:25361091,43461990:0,452978,115847 +r1,561:27126204,43461990:1765113,568825,115847 +k1,549:25361091,43461990:-1765113 +) +(1,549:25361091,43461990:1765113,452978,115847 +k1,549:25361091,43461990:3277 +h1,549:27122927,43461990:0,411205,112570 +) +k1,549:27467960,43461990:168086 +(1,549:27467960,43461990:0,452978,115847 +r1,561:29584785,43461990:2116825,568825,115847 +k1,549:27467960,43461990:-2116825 +) +(1,549:27467960,43461990:2116825,452978,115847 +k1,549:27467960,43461990:3277 +h1,549:29581508,43461990:0,411205,112570 +) +k1,549:29752870,43461990:168085 +k1,549:31286071,43461990:168086 +k1,549:32583029,43461990:0 +) +(1,550:6764466,44327070:25818563,513147,115847 +g1,549:8203636,44327070 +(1,549:8203636,44327070:0,452978,115847 +r1,561:10320461,44327070:2116825,568825,115847 +k1,549:8203636,44327070:-2116825 +) +(1,549:8203636,44327070:2116825,452978,115847 +k1,549:8203636,44327070:3277 +h1,549:10317184,44327070:0,411205,112570 +) +g1,549:10519690,44327070 +k1,550:32583028,44327070:20284036 +g1,550:32583028,44327070 ) -(1,446:-473656,4736287:0,0,0 -k1,446:-473656,4736287:5209943 +v1,552:6764466,45011925:0,393216,0 +(1,556:6764466,45346002:25818563,727293,196608 +g1,556:6764466,45346002 +g1,556:6764466,45346002 +g1,556:6567858,45346002 +(1,556:6567858,45346002:0,727293,196608 +r1,561:32779637,45346002:26211779,923901,196608 +k1,556:6567857,45346002:-26211780 +) +(1,556:6567858,45346002:26211779,727293,196608 +[1,556:6764466,45346002:25818563,530685,0 +(1,554:6764466,45239756:25818563,424439,106246 +(1,553:6764466,45239756:0,0,0 +g1,553:6764466,45239756 +g1,553:6764466,45239756 +g1,553:6436786,45239756 +(1,553:6436786,45239756:0,0,0 +) +g1,553:6764466,45239756 +) +k1,554:6764466,45239756:0 +h1,554:10084006,45239756:0,0,0 +k1,554:32583030,45239756:22499024 +g1,554:32583030,45239756 +) +] ) -g1,446:-473656,-710413 +g1,556:32583029,45346002 +g1,556:6764466,45346002 +g1,556:6764466,45346002 +g1,556:32583029,45346002 +g1,556:32583029,45346002 ) +h1,556:6764466,45542610:0,0,0 ] +g1,558:32583029,45542610 ) -[1,446:6630773,47279633:25952256,43253760,0 -[1,446:6630773,4812305:25952256,786432,0 -(1,446:6630773,4812305:25952256,505283,134348 -(1,446:6630773,4812305:25952256,505283,134348 -g1,446:3078558,4812305 -[1,446:3078558,4812305:0,0,0 -(1,446:3078558,2439708:0,1703936,0 -k1,446:1358238,2439708:-1720320 -(1,417:1358238,2439708:1720320,1703936,0 -(1,417:1358238,2439708:1179648,16384,0 -r1,446:2537886,2439708:1179648,16384,0 +h1,558:6630773,45542610:0,0,0 +] +(1,561:32583029,45706769:0,0,0 +g1,561:32583029,45706769 ) -g1,417:3062174,2439708 -(1,417:3062174,2439708:16384,1703936,0 -[1,417:3062174,2439708:25952256,1703936,0 -(1,417:3062174,1915420:25952256,1179648,0 -(1,417:3062174,1915420:16384,1179648,0 -r1,446:3078558,1915420:16384,1179648,0 ) -k1,417:29014430,1915420:25935872 -g1,417:29014430,1915420 +] +(1,561:6630773,47279633:25952256,0,0 +h1,561:6630773,47279633:25952256,0,0 ) ] +(1,561:4262630,4025873:0,0,0 +[1,561:-473656,4025873:0,0,0 +(1,561:-473656,-710413:0,0,0 +(1,561:-473656,-710413:0,0,0 +g1,561:-473656,-710413 ) +g1,561:-473656,-710413 ) +] ) ] -[1,446:3078558,4812305:0,0,0 -(1,446:3078558,2439708:0,1703936,0 -g1,446:29030814,2439708 -g1,446:36135244,2439708 -(1,417:36135244,2439708:1720320,1703936,0 -(1,417:36135244,2439708:16384,1703936,0 -[1,417:36135244,2439708:25952256,1703936,0 -(1,417:36135244,1915420:25952256,1179648,0 -(1,417:36135244,1915420:16384,1179648,0 -r1,446:36151628,1915420:16384,1179648,0 +!23892 +}31 +Input:230:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:231:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:232:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:233:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!383 +{32 +[1,578:4262630,47279633:28320399,43253760,0 +(1,578:4262630,4025873:0,0,0 +[1,578:-473656,4025873:0,0,0 +(1,578:-473656,-710413:0,0,0 +(1,578:-473656,-644877:0,0,0 +k1,578:-473656,-644877:-65536 ) -k1,417:62087500,1915420:25935872 -g1,417:62087500,1915420 +(1,578:-473656,4736287:0,0,0 +k1,578:-473656,4736287:5209943 +) +g1,578:-473656,-710413 ) ] ) -g1,417:36675916,2439708 -(1,417:36675916,2439708:1179648,16384,0 -r1,446:37855564,2439708:1179648,16384,0 +[1,578:6630773,47279633:25952256,43253760,0 +[1,578:6630773,4812305:25952256,786432,0 +(1,578:6630773,4812305:25952256,477757,134348 +(1,578:6630773,4812305:25952256,477757,134348 +g1,578:3078558,4812305 +[1,578:3078558,4812305:0,0,0 +(1,578:3078558,2439708:0,1703936,0 +k1,578:1358238,2439708:-1720320 +(1,412:1358238,2439708:1720320,1703936,0 +(1,412:1358238,2439708:1179648,16384,0 +r1,578:2537886,2439708:1179648,16384,0 ) +g1,412:3062174,2439708 +(1,412:3062174,2439708:16384,1703936,0 +[1,412:3062174,2439708:25952256,1703936,0 +(1,412:3062174,1915420:25952256,1179648,0 +(1,412:3062174,1915420:16384,1179648,0 +r1,578:3078558,1915420:16384,1179648,0 ) -k1,446:3078556,2439708:-34777008 +k1,412:29014430,1915420:25935872 +g1,412:29014430,1915420 ) ] -[1,446:3078558,4812305:0,0,0 -(1,446:3078558,49800853:0,16384,2228224 -k1,446:1358238,49800853:-1720320 -(1,417:1358238,49800853:1720320,16384,2228224 -(1,417:1358238,49800853:1179648,16384,0 -r1,446:2537886,49800853:1179648,16384,0 ) -g1,417:3062174,49800853 -(1,417:3062174,52029077:16384,1703936,0 -[1,417:3062174,52029077:25952256,1703936,0 -(1,417:3062174,51504789:25952256,1179648,0 -(1,417:3062174,51504789:16384,1179648,0 -r1,446:3078558,51504789:16384,1179648,0 ) -k1,417:29014430,51504789:25935872 -g1,417:29014430,51504789 +) +] +[1,578:3078558,4812305:0,0,0 +(1,578:3078558,2439708:0,1703936,0 +g1,578:29030814,2439708 +g1,578:36135244,2439708 +(1,412:36135244,2439708:1720320,1703936,0 +(1,412:36135244,2439708:16384,1703936,0 +[1,412:36135244,2439708:25952256,1703936,0 +(1,412:36135244,1915420:25952256,1179648,0 +(1,412:36135244,1915420:16384,1179648,0 +r1,578:36151628,1915420:16384,1179648,0 +) +k1,412:62087500,1915420:25935872 +g1,412:62087500,1915420 ) ] ) +g1,412:36675916,2439708 +(1,412:36675916,2439708:1179648,16384,0 +r1,578:37855564,2439708:1179648,16384,0 ) ) +k1,578:3078556,2439708:-34777008 +) ] -[1,446:3078558,4812305:0,0,0 -(1,446:3078558,49800853:0,16384,2228224 -g1,446:29030814,49800853 -g1,446:36135244,49800853 -(1,417:36135244,49800853:1720320,16384,2228224 -(1,417:36135244,52029077:16384,1703936,0 -[1,417:36135244,52029077:25952256,1703936,0 -(1,417:36135244,51504789:25952256,1179648,0 -(1,417:36135244,51504789:16384,1179648,0 -r1,446:36151628,51504789:16384,1179648,0 +[1,578:3078558,4812305:0,0,0 +(1,578:3078558,49800853:0,16384,2228224 +k1,578:1358238,49800853:-1720320 +(1,412:1358238,49800853:1720320,16384,2228224 +(1,412:1358238,49800853:1179648,16384,0 +r1,578:2537886,49800853:1179648,16384,0 +) +g1,412:3062174,49800853 +(1,412:3062174,52029077:16384,1703936,0 +[1,412:3062174,52029077:25952256,1703936,0 +(1,412:3062174,51504789:25952256,1179648,0 +(1,412:3062174,51504789:16384,1179648,0 +r1,578:3078558,51504789:16384,1179648,0 ) -k1,417:62087500,51504789:25935872 -g1,417:62087500,51504789 +k1,412:29014430,51504789:25935872 +g1,412:29014430,51504789 ) ] ) -g1,417:36675916,49800853 -(1,417:36675916,49800853:1179648,16384,0 -r1,446:37855564,49800853:1179648,16384,0 ) ) -k1,446:3078556,49800853:-34777008 +] +[1,578:3078558,4812305:0,0,0 +(1,578:3078558,49800853:0,16384,2228224 +g1,578:29030814,49800853 +g1,578:36135244,49800853 +(1,412:36135244,49800853:1720320,16384,2228224 +(1,412:36135244,52029077:16384,1703936,0 +[1,412:36135244,52029077:25952256,1703936,0 +(1,412:36135244,51504789:25952256,1179648,0 +(1,412:36135244,51504789:16384,1179648,0 +r1,578:36151628,51504789:16384,1179648,0 +) +k1,412:62087500,51504789:25935872 +g1,412:62087500,51504789 ) ] -g1,446:6630773,4812305 -k1,446:21916392,4812305:14488701 -g1,446:22703479,4812305 -g1,446:23888369,4812305 -g1,446:27214321,4812305 -g1,446:28624000,4812305 -g1,446:29808890,4812305 -) -) -] -[1,446:6630773,45706769:25952256,40108032,0 -(1,446:6630773,45706769:25952256,40108032,0 -(1,446:6630773,45706769:0,0,0 -g1,446:6630773,45706769 -) -[1,446:6630773,45706769:25952256,40108032,0 -(1,433:6630773,6254097:25952256,32768,229376 -(1,433:6630773,6254097:0,32768,229376 -(1,433:6630773,6254097:5505024,32768,229376 -r1,446:12135797,6254097:5505024,262144,229376 -) -k1,433:6630773,6254097:-5505024 -) -(1,433:6630773,6254097:25952256,32768,0 -r1,446:32583029,6254097:25952256,32768,0 -) -) -(1,433:6630773,7858425:25952256,606339,9436 -(1,433:6630773,7858425:1974731,582746,0 -g1,433:6630773,7858425 -g1,433:8605504,7858425 -) -g1,433:10859418,7858425 -g1,433:11772466,7858425 -k1,433:32583028,7858425:19870776 -g1,433:32583028,7858425 -) -(1,435:6630773,9163253:25952256,555811,147783 -(1,435:6630773,9163253:2450326,534184,0 -g1,435:6630773,9163253 -g1,435:9081099,9163253 -) -g1,435:9825064,9163253 -g1,435:10828552,9163253 -g1,435:11454290,9163253 -k1,435:32583029,9163253:17881102 -g1,435:32583029,9163253 -) -(1,438:6630773,10397957:25952256,513147,134348 -k1,437:7262797,10397957:217181 -k1,437:8011492,10397957:217198 -k1,437:8584551,10397957:217199 -k1,437:11878010,10397957:217199 -k1,437:14937505,10397957:217199 -k1,437:18011417,10397957:217198 -k1,437:19176267,10397957:217199 -k1,437:20782829,10397957:217199 -k1,437:23554621,10397957:217199 -k1,437:24963265,10397957:217199 -k1,437:26569826,10397957:217198 -k1,437:31039656,10397957:217199 -k1,438:32583029,10397957:0 -) -(1,438:6630773,11239445:25952256,513147,134348 -k1,437:8330952,11239445:186297 -k1,437:9133287,11239445:186297 -k1,437:11950855,11239445:186297 -k1,437:12788580,11239445:186297 -k1,437:14667017,11239445:186297 -k1,437:16555284,11239445:186297 -k1,437:19562906,11239445:186297 -k1,437:23095470,11239445:186296 -k1,437:23739864,11239445:186297 -k1,437:24631328,11239445:186297 -k1,437:26385246,11239445:186297 -k1,437:27590628,11239445:186297 -k1,437:29465132,11239445:186297 -k1,437:30310721,11239445:186297 -k1,437:31923737,11239445:186297 -k1,437:32583029,11239445:0 -) -(1,438:6630773,12080933:25952256,513147,134348 -k1,437:9859142,12080933:152109 -k1,437:14537167,12080933:152109 -k1,437:15045136,12080933:152109 -k1,437:18122772,12080933:152109 -k1,437:22230634,12080933:152109 -k1,437:22914240,12080933:152109 -k1,437:24132620,12080933:152109 -k1,437:26756747,12080933:152109 -k1,437:28040663,12080933:152109 -k1,437:31402070,12080933:152109 -k1,438:32583029,12080933:0 -) -(1,438:6630773,12922421:25952256,513147,134348 -k1,437:8312209,12922421:200322 -k1,437:9140365,12922421:200321 -k1,437:11042657,12922421:200322 -k1,437:13371588,12922421:200322 -k1,437:14381279,12922421:200321 -k1,437:18652697,12922421:200322 -k1,437:22257614,12922421:200322 -k1,437:23140820,12922421:200321 -k1,437:24730505,12922421:200322 -k1,437:26647215,12922421:200322 -k1,437:27839096,12922421:200321 -k1,437:30316794,12922421:200322 -k1,438:32583029,12922421:0 -) -(1,438:6630773,13763909:25952256,513147,134348 -k1,437:8255959,13763909:258760 -k1,437:10489676,13763909:259117 -k1,437:10961368,13763909:258700 -k1,437:13998855,13763909:258760 -k1,437:16040850,13763909:258760 -k1,437:16958902,13763909:258760 -k1,437:18006060,13763909:258760 -k1,437:20685065,13763909:258760 -k1,437:21595252,13763909:258759 -k1,437:22873097,13763909:258760 -k1,437:24342962,13763909:258760 -k1,437:25886228,13763909:258760 -k1,437:26933386,13763909:258760 -k1,437:29280778,13763909:258760 -k1,437:32227169,13763909:258760 -k1,437:32583029,13763909:0 -) -(1,438:6630773,14605397:25952256,505283,134348 -k1,437:8169559,14605397:184812 -k1,437:9938377,14605397:184813 -k1,437:12536225,14605397:184812 -k1,437:15356241,14605397:184813 -k1,437:18846034,14605397:184812 -k1,437:21032972,14605397:184813 -k1,437:22409229,14605397:184812 -k1,437:25919994,14605397:184813 -k1,437:26519635,14605397:184798 -k1,437:28633173,14605397:184813 -k1,437:29430747,14605397:184812 -k1,437:32583029,14605397:0 -) -(1,438:6630773,15446885:25952256,513147,126483 -k1,437:9022884,15446885:226801 -k1,437:9901114,15446885:226802 -k1,437:10916313,15446885:226801 -k1,437:15032020,15446885:226801 -k1,437:15871583,15446885:226801 -k1,437:17117470,15446885:226802 -k1,437:18659579,15446885:226801 -k1,437:19545672,15446885:226801 -k1,437:21148075,15446885:226802 -k1,437:21730736,15446885:226801 -k1,437:24988577,15446885:226801 -k1,437:26475635,15446885:226801 -k1,437:27361729,15446885:226802 -k1,437:30893511,15446885:226801 -k1,437:32583029,15446885:0 -) -(1,438:6630773,16288373:25952256,513147,126483 -k1,437:8838502,16288373:205604 -k1,437:9575603,16288373:205604 -k1,437:12344976,16288373:205605 -k1,437:13312108,16288373:205604 -k1,437:16329207,16288373:205604 -k1,437:21360882,16288373:205604 -k1,437:22225778,16288373:205604 -k1,437:25834011,16288373:205604 -k1,437:27231061,16288373:205605 -k1,437:29963078,16288373:205604 -k1,437:31116333,16288373:205604 -k1,437:32583029,16288373:0 -) -(1,438:6630773,17129861:25952256,513147,134348 -k1,437:11672094,17129861:197555 -k1,437:13061093,17129861:197554 -k1,437:16515132,17129861:197555 -k1,437:20374838,17129861:197554 -k1,437:21223821,17129861:197555 -k1,437:25947291,17129861:197554 -k1,437:27341533,17129861:197555 -k1,437:29192560,17129861:197554 -k1,437:31044899,17129861:197555 -k1,438:32583029,17129861:0 -) -(1,438:6630773,17971349:25952256,513147,126483 -g1,437:8668287,17971349 -g1,437:9971798,17971349 -g1,437:10918793,17971349 -g1,437:12403838,17971349 -g1,437:14403996,17971349 -g1,437:17356392,17971349 -g1,437:18317149,17971349 -g1,437:19897222,17971349 -g1,437:21592638,17971349 -g1,437:24078418,17971349 -g1,437:24893685,17971349 -k1,438:32583029,17971349:7100831 -g1,438:32583029,17971349 -) -(1,440:6630773,18812837:25952256,513147,134348 -h1,439:6630773,18812837:983040,0,0 -k1,439:8414867,18812837:173219 -k1,439:9607170,18812837:173218 -k1,439:11147470,18812837:173219 -k1,439:11979980,18812837:173218 -k1,439:15325797,18812837:173219 -k1,439:16645241,18812837:173219 -k1,439:18275324,18812837:173218 -k1,439:19075722,18812837:173219 -k1,439:21193393,18812837:173218 -k1,439:22558057,18812837:173219 -k1,439:25772121,18812837:173193 -k1,439:28616586,18812837:173218 -k1,439:31548871,18812837:173219 -k1,440:32583029,18812837:0 -) -(1,440:6630773,19654325:25952256,513147,126483 -k1,439:11435945,19654325:239279 -k1,439:13175998,19654325:239279 -k1,439:16384713,19654325:239279 -k1,439:19765133,19654325:239279 -k1,439:21195858,19654325:239280 -k1,439:25396788,19654325:239279 -k1,439:26705615,19654325:239279 -k1,439:28925392,19654325:239279 -k1,439:29823963,19654325:239279 -k1,439:32583029,19654325:0 -) -(1,440:6630773,20495813:25952256,505283,134348 -k1,439:8193545,20495813:278266 -k1,439:11283305,20495813:278265 -k1,439:14633899,20495813:278266 -k1,439:17591277,20495813:278266 -k1,439:18485581,20495813:278266 -k1,439:20460573,20495813:278265 -k1,439:23911437,20495813:278266 -k1,439:25457169,20495813:278266 -k1,439:28427653,20495813:278265 -k1,439:30130016,20495813:278266 -k1,440:32583029,20495813:0 -) -(1,440:6630773,21337301:25952256,513147,126483 -k1,439:8427770,21337301:199229 -k1,439:9574651,21337301:199230 -k1,439:12850140,21337301:199229 -k1,439:16507704,21337301:199229 -k1,439:17358362,21337301:199230 -k1,439:19056399,21337301:199229 -k1,439:20005360,21337301:199229 -k1,439:20820627,21337301:199229 -k1,439:23685862,21337301:199230 -k1,439:24536519,21337301:199229 -k1,439:27498091,21337301:199229 -k1,439:30272886,21337301:199230 -k1,439:31131407,21337301:199229 -k1,439:32583029,21337301:0 -) -(1,440:6630773,22178789:25952256,513147,134348 -k1,439:9671352,22178789:198283 -k1,439:13034368,22178789:198282 -k1,439:14800272,22178789:198283 -k1,439:17760897,22178789:198282 -k1,439:21545310,22178789:198283 -k1,439:22986155,22178789:198282 -k1,439:25848477,22178789:198283 -k1,439:26706051,22178789:198282 -k1,439:31012131,22178789:198283 -k1,440:32583029,22178789:0 -) -(1,440:6630773,23020277:25952256,513147,126483 -k1,439:8867910,23020277:247464 -k1,439:11877717,23020277:247464 -k1,439:17512240,23020277:247464 -k1,439:18418996,23020277:247464 -k1,439:19685545,23020277:247464 -k1,439:21586481,23020277:247463 -k1,439:24677552,23020277:247464 -k1,439:26261950,23020277:247464 -k1,439:28158300,23020277:247464 -k1,439:30692971,23020277:247464 -k1,439:32583029,23020277:0 -) -(1,440:6630773,23861765:25952256,513147,7863 -g1,439:11123266,23861765 -g1,439:12513940,23861765 -g1,439:16176747,23861765 -k1,440:32583029,23861765:12715950 -g1,440:32583029,23861765 -) -(1,442:6630773,24703253:25952256,513147,134348 -h1,441:6630773,24703253:983040,0,0 -k1,441:9442197,24703253:283045 -k1,441:11861060,24703253:283045 -k1,441:13824448,24703253:283045 -k1,441:14774649,24703253:283045 -k1,441:15472453,24703253:282961 -k1,441:16441660,24703253:283045 -k1,441:17080565,24703253:283045 -k1,441:20439870,24703253:283045 -k1,441:23638612,24703253:283045 -k1,441:26123666,24703253:283044 -k1,441:27058139,24703253:283045 -k1,441:28499777,24703253:282961 -k1,441:29465707,24703253:283045 -k1,441:31353728,24703253:283045 -k1,441:32051532,24703253:282961 -k1,441:32583029,24703253:0 -) -(1,442:6630773,25544741:25952256,513147,134348 -k1,441:9007763,25544741:224788 -k1,441:9588412,25544741:224789 -k1,441:12889460,25544741:224788 -k1,441:16867496,25544741:224789 -k1,441:18742481,25544741:224788 -k1,441:19626562,25544741:224789 -k1,441:23265776,25544741:224788 -k1,441:24562734,25544741:224789 -k1,441:25245619,25544741:224788 -k1,441:26001905,25544741:224789 -k1,441:27512509,25544741:224788 -k1,441:28093158,25544741:224789 -k1,441:31394206,25544741:224788 -k1,442:32583029,25544741:0 -) -(1,442:6630773,26386229:25952256,513147,134348 -k1,441:8910119,26386229:239210 -k1,441:13350841,26386229:239209 -k1,441:14206089,26386229:239210 -k1,441:15464383,26386229:239209 -k1,441:16118396,26386229:239170 -k1,441:19273302,26386229:239209 -k1,441:20257001,26386229:239210 -k1,441:21515296,26386229:239210 -k1,441:24581728,26386229:239209 -k1,441:28149512,26386229:239210 -k1,441:29040149,26386229:239209 -k1,441:30881059,26386229:239210 -k1,441:32583029,26386229:0 -) -(1,442:6630773,27227717:25952256,513147,134348 -k1,441:9902784,27227717:195751 -k1,441:13444803,27227717:195751 -k1,441:14843796,27227717:195752 -k1,441:18225907,27227717:195751 -k1,441:18953155,27227717:195751 -k1,441:20215177,27227717:195751 -k1,441:23620226,27227717:195751 -k1,441:24502140,27227717:195752 -k1,441:25716976,27227717:195751 -k1,441:26327566,27227717:195747 -k1,441:29265344,27227717:195752 -k1,441:29992592,27227717:195751 -k1,441:31207428,27227717:195751 -k1,441:32583029,27227717:0 -) -(1,442:6630773,28069205:25952256,513147,134348 -g1,441:8886522,28069205 -g1,441:10598977,28069205 -g1,441:15854964,28069205 -g1,441:16713485,28069205 -g1,441:17931799,28069205 -g1,441:18545871,28069205 -k1,442:32583029,28069205:11021191 -g1,442:32583029,28069205 -) -(1,444:6630773,28910693:25952256,513147,134348 -h1,443:6630773,28910693:983040,0,0 -k1,443:8328454,28910693:299798 -k1,443:10884757,28910693:299898 -k1,443:11870818,28910693:299899 -k1,443:12526576,28910693:299898 -k1,443:14910520,28910693:299899 -k1,443:20267177,28910693:299899 -k1,443:21226367,28910693:299898 -k1,443:22545351,28910693:299899 -k1,443:24279177,28910693:299898 -k1,443:27504603,28910693:299899 -k1,443:29087697,28910693:299899 -k1,443:29740733,28910693:299797 -k1,443:32583029,28910693:0 -) -(1,444:6630773,29752181:25952256,505283,134348 -k1,443:9181889,29752181:235729 -k1,443:10609063,29752181:235729 -k1,443:14057367,29752181:235729 -k1,443:16060748,29752181:235875 -k1,443:18404770,29752181:235729 -k1,443:19244742,29752181:235730 -k1,443:20215203,29752181:235802 -k1,443:22425751,29752181:235948 -k1,443:24444715,29752181:235729 -k1,443:27710829,29752181:235729 -k1,443:28473467,29752181:235729 -k1,443:31970267,29752181:235729 -k1,443:32583029,29752181:0 -) -(1,444:6630773,30593669:25952256,513147,134348 -k1,443:7930617,30593669:143134 -k1,443:9525374,30593669:143135 -k1,443:10284546,30593669:143134 -k1,443:11446766,30593669:143135 -k1,443:13598578,30593669:143134 -k1,443:16592529,30593669:143135 -k1,443:17091523,30593669:143134 -k1,443:18953667,30593669:143135 -k1,443:20334776,30593669:143134 -k1,443:21137202,30593669:143134 -k1,443:23897845,30593669:143135 -k1,443:25107250,30593669:143134 -k1,443:26639748,30593669:143135 -k1,443:29657291,30593669:143134 -k1,443:30153609,30593669:143079 -k1,443:32583029,30593669:0 -) -(1,444:6630773,31435157:25952256,505283,134348 -k1,443:8058980,31435157:160741 -k1,443:10077667,31435157:160741 -k1,443:12553795,31435157:160741 -k1,443:13318779,31435157:160742 -k1,443:14214256,31435157:160818 -k1,443:16349827,31435157:160971 -k1,443:18368514,31435157:160741 -k1,443:19736428,31435157:160741 -k1,443:22681138,31435157:160741 -k1,443:23528042,31435157:160742 -k1,443:24044643,31435157:160741 -k1,443:27904891,31435157:160741 -k1,443:30981329,31435157:160741 -k1,443:32583029,31435157:0 -) -(1,444:6630773,32276645:25952256,513147,126483 -k1,443:9402351,32276645:216985 -k1,443:11186958,32276645:216986 -k1,443:13588913,32276645:216985 -k1,443:15640906,32276645:216985 -k1,443:16272717,32276645:216968 -k1,443:18746107,32276645:216985 -k1,443:19649255,32276645:216986 -k1,443:20222100,32276645:216985 -k1,443:21937238,32276645:216985 -k1,443:24048870,32276645:216986 -k1,443:28580745,32276645:216985 -k1,444:32583029,32276645:0 -) -(1,444:6630773,33118133:25952256,513147,134348 -k1,443:8135994,33118133:237755 -k1,443:9040905,33118133:237755 -k1,443:9805570,33118133:237756 -k1,443:10990976,33118133:237755 -k1,443:12321216,33118133:237755 -k1,443:13175009,33118133:237755 -k1,443:16285208,33118133:237756 -k1,443:19784034,33118133:237755 -k1,443:20783317,33118133:237755 -k1,443:23153614,33118133:237755 -k1,443:26833320,33118133:237755 -k1,443:28262521,33118133:237756 -k1,443:30000395,33118133:237755 -k1,443:31970267,33118133:237755 -k1,443:32583029,33118133:0 -) -(1,444:6630773,33959621:25952256,513147,126483 -k1,443:7867368,33959621:217510 -k1,443:11314492,33959621:217510 -k1,443:12191294,33959621:217510 -k1,443:15607616,33959621:217510 -k1,443:16441164,33959621:217510 -k1,443:18019201,33959621:217510 -k1,443:20751327,33959621:217510 -k1,443:22908048,33959621:217510 -k1,443:24317003,33959621:217510 -k1,443:27976464,33959621:217510 -k1,443:30168683,33959621:217619 -k1,444:32583029,33959621:0 -) -(1,444:6630773,34801109:25952256,513147,134348 -k1,443:7447053,34801109:227767 -k1,443:8693905,34801109:227767 -k1,443:11837370,34801109:227768 -k1,443:16266650,34801109:227767 -k1,443:16850277,34801109:227767 -k1,443:19158157,34801109:227767 -k1,443:20045216,34801109:227767 -k1,443:21292068,34801109:227767 -k1,443:21873046,34801109:227739 -k1,443:25116780,34801109:227767 -k1,443:26541234,34801109:227767 -k1,443:27183816,34801109:227739 -k1,443:30153609,34801109:227767 -k1,443:32583029,34801109:0 -) -(1,444:6630773,35642597:25952256,513147,134348 -k1,443:8364803,35642597:241120 -k1,443:9981525,35642597:241121 -k1,443:13148172,35642597:241120 -k1,443:14522410,35642597:241120 -k1,443:18280192,35642597:241120 -k1,443:21156516,35642597:241121 -k1,443:21750833,35642597:241078 -k1,443:23183398,35642597:241120 -k1,443:23839319,35642597:241078 -k1,443:27249761,35642597:241121 -k1,443:29365211,35642597:241120 -k1,443:32583029,35642597:0 -) -(1,444:6630773,36484085:25952256,513147,134348 -k1,443:10396326,36484085:248891 -k1,443:11636777,36484085:248891 -k1,443:18531674,36484085:248891 -k1,443:19439857,36484085:248891 -k1,443:20374910,36484085:248891 -k1,443:23937301,36484085:248891 -k1,443:28958524,36484085:248891 -k1,443:29835250,36484085:248891 -k1,443:31734338,36484085:248891 -k1,444:32583029,36484085:0 -) -(1,444:6630773,37325573:25952256,505283,134348 -k1,443:8143098,37325573:159662 -k1,443:10058469,37325573:159661 -k1,443:10632935,37325573:159623 -k1,443:13619164,37325573:159662 -k1,443:15636771,37325573:159661 -k1,443:16412471,37325573:159662 -k1,443:20065202,37325573:159662 -k1,443:21421551,37325573:159662 -k1,443:21996016,37325573:159622 -k1,443:24997974,37325573:159662 -k1,443:25689133,37325573:159662 -k1,443:26915065,37325573:159661 -k1,443:31391584,37325573:159662 -k1,443:32583029,37325573:0 -) -(1,444:6630773,38167061:25952256,513147,134348 -k1,443:7595740,38167061:155597 -k1,443:9879946,38167061:155597 -k1,443:13117701,38167061:155597 -k1,443:13932590,38167061:155597 -k1,443:14876585,38167061:155597 -k1,443:17934772,38167061:155597 -k1,443:20095115,38167061:155597 -k1,443:24771386,38167061:155597 -k1,443:25946068,38167061:155597 -k1,443:26516464,38167061:155553 -k1,443:29514357,38167061:155597 -k1,443:30201451,38167061:155597 -k1,443:32583029,38167061:0 -) -(1,444:6630773,39008549:25952256,513147,134348 -g1,443:7591530,39008549 -g1,443:8809844,39008549 -g1,443:11768794,39008549 -g1,443:12627315,39008549 -g1,443:13614942,39008549 -g1,443:18870929,39008549 -g1,443:19686196,39008549 -g1,443:20904510,39008549 -g1,443:21518582,39008549 -k1,444:32583029,39008549:8148750 -g1,444:32583029,39008549 -) -(1,446:6630773,39850037:25952256,513147,134348 -h1,445:6630773,39850037:983040,0,0 -k1,445:9382508,39850037:134882 -k1,445:11563423,39850037:134881 -k1,445:12113084,39850037:134818 -k1,445:15010308,39850037:134881 -k1,445:16712811,39850037:134882 -k1,445:18443493,39850037:134881 -k1,445:19910722,39850037:134882 -k1,445:21330764,39850037:134881 -k1,445:21997143,39850037:134882 -k1,445:23416530,39850037:134881 -k1,445:23904587,39850037:134818 -k1,445:25246641,39850037:134881 -k1,445:28238237,39850037:134882 -k1,445:29940739,39850037:134881 -k1,445:31094706,39850037:134882 -k1,445:32583029,39850037:0 -) -(1,446:6630773,40691525:25952256,513147,134348 -k1,445:7569511,40691525:252576 -k1,445:8177946,40691525:252575 -k1,445:11506782,40691525:252576 -k1,445:16111603,40691525:252575 -k1,445:19380146,40691525:252576 -k1,445:21013566,40691525:252576 -k1,445:22603075,40691525:252575 -k1,445:24242393,40691525:252576 -k1,445:28533952,40691525:252575 -k1,445:29734179,40691525:252576 -k1,445:32583029,40691525:0 -) -(1,446:6630773,41533013:25952256,513147,134348 -k1,445:7982890,41533013:285846 -k1,445:10757138,41533013:285846 -k1,445:13563499,41533013:285846 -k1,445:14532230,41533013:285846 -k1,445:16940787,41533013:285846 -k1,445:17878062,41533013:285847 -k1,445:19778715,41533013:285846 -k1,445:22823627,41533013:285846 -k1,445:24057124,41533013:285846 -k1,445:25732333,41533013:285846 -k1,445:28746443,41533013:285846 -k1,445:31966991,41533013:285846 -k1,445:32583029,41533013:0 -) -(1,446:6630773,42374501:25952256,513147,134348 -k1,445:8863539,42374501:216879 -k1,445:9538514,42374501:216878 -k1,445:11801427,42374501:216879 -k1,445:12374165,42374501:216878 -k1,445:14142281,42374501:216879 -k1,445:17545520,42374501:216879 -k1,445:20292088,42374501:216878 -k1,445:20923792,42374501:216861 -k1,445:21672168,42374501:216879 -k1,445:23689976,42374501:216879 -k1,445:27296376,42374501:216878 -k1,445:28979951,42374501:216879 -k1,445:30932222,42374501:216878 -k1,445:32168186,42374501:216879 -k1,446:32583029,42374501:0 -) -(1,446:6630773,43215989:25952256,513147,134348 -k1,445:9648350,43215989:175281 -k1,445:10771282,43215989:175281 -k1,445:16003321,43215989:175281 -k1,445:17370047,43215989:175281 -k1,445:18306856,43215989:175281 -k1,445:20572080,43215989:175281 -k1,445:22314982,43215989:175281 -k1,445:22905083,43215989:175258 -k1,445:26106161,43215989:175281 -k1,445:27472887,43215989:175281 -k1,445:30296478,43215989:175281 -k1,445:32583029,43215989:0 -) -(1,446:6630773,44057477:25952256,505283,134348 -k1,445:7492928,44057477:246117 -k1,445:9441016,44057477:246118 -k1,445:12763393,44057477:246117 -k1,445:17361757,44057477:246118 -k1,445:20780472,44057477:246117 -k1,445:22520156,44057477:246118 -k1,445:23452435,44057477:246117 -k1,445:24325732,44057477:246118 -k1,445:26028714,44057477:246117 -k1,445:29489373,44057477:246118 -k1,445:31900144,44057477:246117 -k1,446:32583029,44057477:0 -) -(1,446:6630773,44898965:25952256,513147,126483 -k1,445:8292984,44898965:221730 -k1,445:9895558,44898965:221730 -k1,445:13091312,44898965:221730 -k1,445:15381358,44898965:221730 -k1,445:16887594,44898965:221730 -k1,445:18392519,44898965:221730 -k1,445:22689933,44898965:221730 -k1,445:24015945,44898965:221730 -k1,445:24985441,44898965:221730 -k1,445:27008100,44898965:221730 -k1,445:29368925,44898965:221730 -k1,445:30782100,44898965:221730 -k1,445:32583029,44898965:0 -) -] -(1,446:32583029,45706769:0,0,0 -g1,446:32583029,45706769 -) -) -] -(1,446:6630773,47279633:25952256,0,0 -h1,446:6630773,47279633:25952256,0,0 -) -] -(1,446:4262630,4025873:0,0,0 -[1,446:-473656,4025873:0,0,0 -(1,446:-473656,-710413:0,0,0 -(1,446:-473656,-710413:0,0,0 -g1,446:-473656,-710413 -) -g1,446:-473656,-710413 -) -] -) -] -!22925 -}25 -Input:203:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:204:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:205:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:206:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!383 -{26 -[1,470:4262630,47279633:28320399,43253760,0 -(1,470:4262630,4025873:0,0,0 -[1,470:-473656,4025873:0,0,0 -(1,470:-473656,-710413:0,0,0 -(1,470:-473656,-644877:0,0,0 -k1,470:-473656,-644877:-65536 ) -(1,470:-473656,4736287:0,0,0 -k1,470:-473656,4736287:5209943 +g1,412:36675916,49800853 +(1,412:36675916,49800853:1179648,16384,0 +r1,578:37855564,49800853:1179648,16384,0 +) +) +k1,578:3078556,49800853:-34777008 +) +] +g1,578:6630773,4812305 +g1,578:6630773,4812305 +g1,578:8592265,4812305 +g1,578:9205682,4812305 +k1,578:31786110,4812305:22580428 +) +) +] +[1,578:6630773,45706769:25952256,40108032,0 +(1,578:6630773,45706769:25952256,40108032,0 +(1,578:6630773,45706769:0,0,0 +g1,578:6630773,45706769 +) +[1,578:6630773,45706769:25952256,40108032,0 +[1,574:6630773,22871394:25952256,17272657,0 +[1,574:6630773,22871394:25952256,17272657,0 +(1,573:6630773,19494311:25952256,13895574,0 +g1,573:6630773,19494311 +h1,572:6630773,19494311:0,0,0 +(1,572:6630773,19494311:25952256,13895574,0 +) +g1,573:32583029,19494311 +g1,573:32583029,19494311 +) +(1,573:6630773,21014751:25952256,485622,11795 +h1,573:6630773,21014751:0,0,0 +g1,573:9295467,21014751 +k1,573:32583028,21014751:22297312 +g1,573:32583028,21014751 +) +(1,573:6630773,21879831:25952256,513147,134348 +h1,573:6630773,21879831:0,0,0 +k1,573:8940263,21879831:222824 +k1,573:11580710,21879831:222824 +k1,573:12462826,21879831:222824 +k1,573:13704735,21879831:222824 +k1,573:14342379,21879831:222801 +k1,573:16985448,21879831:222824 +k1,573:18399717,21879831:222824 +k1,573:20531605,21879831:222824 +k1,573:21983229,21879831:222824 +k1,573:23719280,21879831:222825 +k1,573:26465240,21879831:222824 +k1,573:27043924,21879831:222824 +k1,573:29271494,21879831:222824 +k1,573:30691005,21879831:222824 +k1,573:32583029,21879831:0 +) +(1,573:6630773,22744911:25952256,513147,126483 +g1,573:8368787,22744911 +g1,573:10559000,22744911 +g1,573:11777314,22744911 +g1,573:12391386,22744911 +g1,573:15184530,22744911 +g1,573:16575204,22744911 +g1,573:17793518,22744911 +g1,573:19749112,22744911 +g1,573:21660797,22744911 +g1,573:22879111,22744911 +g1,573:24909416,22744911 +g1,573:26091685,22744911 +g1,573:26906952,22744911 +g1,573:27876884,22744911 +k1,573:32583029,22744911:2623411 +g1,573:32583029,22744911 +) +] +] +v1,561:6630773,24837474:0,393216,0 +(1,562:6630773,27063159:25952256,2618901,0 +g1,562:6630773,27063159 +g1,562:6237557,27063159 +r1,578:6368629,27063159:131072,2618901,0 +g1,562:6567858,27063159 +g1,562:6764466,27063159 +[1,562:6764466,27063159:25818563,2618901,0 +(1,562:6764466,25198651:25818563,754393,260573 +(1,561:6764466,25198651:0,754393,260573 +r1,578:8010564,25198651:1246098,1014966,260573 +k1,561:6764466,25198651:-1246098 +) +(1,561:6764466,25198651:1246098,754393,260573 +) +k1,561:8216932,25198651:206368 +k1,561:8544612,25198651:327680 +k1,561:10534216,25198651:206369 +k1,561:12637196,25198651:206368 +k1,561:13494993,25198651:206369 +k1,561:15732322,25198651:206368 +k1,561:17326743,25198651:206368 +k1,561:19754783,25198651:206369 +k1,561:20612579,25198651:206368 +k1,561:21233783,25198651:206361 +k1,561:24512480,25198651:206369 +k1,561:27629302,25198651:206368 +k1,561:29979354,25198651:206369 +k1,561:31104537,25198651:206368 +k1,561:32583029,25198651:0 +) +(1,562:6764466,26063731:25818563,505283,134348 +k1,561:7589424,26063731:208920 +k1,561:9360067,26063731:208920 +k1,561:11284720,26063731:208920 +k1,561:12874484,26063731:208920 +k1,561:14102489,26063731:208920 +k1,561:16891561,26063731:208920 +k1,561:17631978,26063731:208920 +k1,561:19985236,26063731:208920 +k1,561:21461622,26063731:208920 +k1,561:22689627,26063731:208920 +k1,561:25242770,26063731:208920 +k1,561:25866523,26063731:208910 +k1,561:28597924,26063731:208920 +k1,561:29493006,26063731:208920 +k1,561:32583029,26063731:0 +) +(1,562:6764466,26928811:25818563,513147,134348 +g1,561:7773065,26928811 +g1,561:9470447,26928811 +h1,561:10665824,26928811:0,0,0 +g1,561:11038723,26928811 +g1,561:13280709,26928811 +g1,561:15569881,26928811 +(1,561:15569881,26928811:0,452978,115847 +r1,578:17686706,26928811:2116825,568825,115847 +k1,561:15569881,26928811:-2116825 +) +(1,561:15569881,26928811:2116825,452978,115847 +k1,561:15569881,26928811:3277 +h1,561:17683429,26928811:0,411205,112570 +) +k1,562:32583029,26928811:14722653 +g1,562:32583029,26928811 +) +] +g1,562:32583029,27063159 +) +h1,562:6630773,27063159:0,0,0 +(1,565:6630773,27928239:25952256,513147,134348 +h1,564:6630773,27928239:983040,0,0 +k1,564:9563275,27928239:166227 +k1,564:11464896,27928239:166228 +k1,564:14055300,27928239:166227 +k1,564:15876311,27928239:166227 +k1,564:17034098,27928239:166227 +k1,564:19070724,27928239:166228 +k1,564:20805228,27928239:166227 +k1,564:21630747,27928239:166227 +k1,564:25103266,27928239:166228 +k1,564:25920921,27928239:166227 +k1,564:26443008,27928239:166227 +k1,564:27997288,27928239:166227 +k1,564:29661669,27928239:166228 +k1,564:31270343,27928239:166227 +k1,565:32583029,27928239:0 +) +(1,565:6630773,28793319:25952256,513147,134348 +k1,564:7824370,28793319:203348 +k1,564:10723214,28793319:203348 +(1,564:10723214,28793319:0,452978,115847 +r1,578:12840039,28793319:2116825,568825,115847 +k1,564:10723214,28793319:-2116825 +) +(1,564:10723214,28793319:2116825,452978,115847 +k1,564:10723214,28793319:3277 +h1,564:12836762,28793319:0,411205,112570 +) +k1,564:13043387,28793319:203348 +k1,564:14008262,28793319:203347 +k1,564:16240605,28793319:203348 +k1,564:17232351,28793319:203348 +k1,564:19347384,28793319:203348 +k1,564:20498383,28793319:203348 +k1,564:23536818,28793319:203348 +k1,564:25134117,28793319:203348 +k1,564:26356549,28793319:203347 +k1,564:28609863,28793319:203348 +k1,564:29622581,28793319:203348 +k1,564:30845014,28793319:203348 +k1,564:32583029,28793319:0 +) +(1,565:6630773,29658399:25952256,513147,134348 +k1,564:7508206,29658399:218141 +k1,564:8082207,29658399:218141 +k1,564:10995845,29658399:218142 +k1,564:11830024,29658399:218141 +k1,564:13067250,29658399:218141 +k1,564:15194455,29658399:218141 +k1,564:16095482,29658399:218142 +k1,564:18907538,29658399:218141 +k1,564:21832971,29658399:218141 +k1,564:23070197,29658399:218141 +k1,564:24054454,29658399:218141 +k1,564:25373601,29658399:218142 +k1,564:27499495,29658399:218141 +k1,564:28736721,29658399:218141 +k1,565:32583029,29658399:0 +) +(1,565:6630773,30523479:25952256,513147,134348 +k1,564:7798379,30523479:177357 +k1,564:9363788,30523479:177356 +k1,564:11039298,30523479:177357 +k1,564:11832692,30523479:177356 +k1,564:13029134,30523479:177357 +k1,564:14594544,30523479:177357 +k1,564:16484356,30523479:177356 +k1,564:18878141,30523479:177357 +k1,564:20074583,30523479:177357 +k1,564:22301905,30523479:177356 +k1,564:24281502,30523479:177357 +k1,564:25406509,30523479:177356 +k1,564:25939726,30523479:177357 +k1,564:27250201,30523479:177357 +k1,564:29999190,30523479:177356 +k1,564:31563944,30523479:177357 +k1,564:32583029,30523479:0 +) +(1,565:6630773,31388559:25952256,513147,126483 +k1,564:8537410,31388559:168622 +k1,564:9365324,31388559:168622 +k1,564:9889806,31388559:168622 +k1,564:12753924,31388559:168622 +k1,564:13535308,31388559:168622 +k1,564:14723015,31388559:168622 +k1,564:15306449,31388559:168591 +k1,564:17895316,31388559:168622 +k1,564:19196400,31388559:168622 +k1,564:20942474,31388559:168622 +k1,564:23579837,31388559:168622 +k1,564:25436666,31388559:168622 +k1,564:26552939,31388559:168622 +k1,564:27353328,31388559:168622 +k1,564:27999707,31388559:168622 +k1,564:29187414,31388559:168622 +k1,564:32051532,31388559:168622 +k1,564:32583029,31388559:0 +) +(1,565:6630773,32253639:25952256,513147,126483 +k1,564:9218830,32253639:206479 +k1,564:10041348,32253639:206480 +k1,564:10603687,32253639:206479 +k1,564:12641243,32253639:206480 +k1,564:13530607,32253639:206479 +k1,564:16209759,32253639:206479 +k1,564:17399279,32253639:206480 +k1,564:18890264,32253639:206479 +k1,564:19628240,32253639:206479 +k1,564:21412172,32253639:206480 +k1,564:22234689,32253639:206479 +k1,564:23460254,32253639:206480 +k1,564:25575797,32253639:206479 +k1,564:27494732,32253639:206479 +k1,564:28857922,32253639:206480 +k1,564:30168683,32253639:206479 +k1,564:32583029,32253639:0 +) +(1,565:6630773,33118719:25952256,513147,134348 +k1,564:9449738,33118719:155582 +k1,564:11172942,33118719:155583 +k1,564:12347609,33118719:155582 +k1,564:13671698,33118719:155582 +k1,564:15746175,33118719:155583 +k1,564:16920842,33118719:155582 +k1,564:19771920,33118719:155582 +k1,564:20459000,33118719:155583 +k1,564:22482358,33118719:155582 +k1,564:23289368,33118719:155582 +k1,564:25363845,33118719:155583 +k1,564:25977524,33118719:155582 +k1,564:26664603,33118719:155582 +k1,564:29375435,33118719:155583 +k1,564:30158852,33118719:155582 +k1,564:32583029,33118719:0 +) +(1,565:6630773,33983799:25952256,513147,134348 +k1,564:8024071,33983799:236588 +k1,564:9364940,33983799:236587 +k1,564:10887344,33983799:236588 +k1,564:13194214,33983799:236588 +k1,564:14378453,33983799:236588 +k1,564:16003093,33983799:236587 +k1,564:18798207,33983799:236588 +k1,564:20053880,33983799:236588 +k1,564:23240243,33983799:236588 +k1,564:26460684,33983799:236587 +k1,564:27893959,33983799:236588 +k1,564:28545352,33983799:236550 +k1,564:31478747,33983799:236588 +k1,564:32583029,33983799:0 +) +(1,565:6630773,34848879:25952256,505283,134348 +g1,564:8115818,34848879 +g1,564:9062813,34848879 +g1,564:12061085,34848879 +g1,564:13862014,34848879 +g1,564:15862172,34848879 +g1,564:18619927,34848879 +g1,564:19838241,34848879 +g1,564:21515962,34848879 +g1,564:23512188,34848879 +g1,564:24327455,34848879 +g1,564:26950861,34848879 +g1,564:27832975,34848879 +k1,565:32583029,34848879:2937329 +g1,565:32583029,34848879 +) +(1,566:6630773,36965697:25952256,555811,147783 +(1,566:6630773,36965697:2450326,534184,12975 +g1,566:6630773,36965697 +g1,566:9081099,36965697 +) +g1,566:11359852,36965697 +g1,566:12082190,36965697 +g1,566:13012867,36965697 +g1,566:13638605,36965697 +g1,566:16206437,36965697 +k1,566:32583029,36965697:14875686 +g1,566:32583029,36965697 +) +(1,569:6630773,38223993:25952256,513147,134348 +k1,568:7670328,38223993:210525 +k1,568:8998897,38223993:210525 +k1,568:9565281,38223993:210524 +k1,568:11606882,38223993:210525 +k1,568:12685759,38223993:210525 +k1,568:14426550,38223993:210525 +k1,568:15943207,38223993:210524 +k1,568:16805160,38223993:210525 +k1,568:19484426,38223993:210525 +k1,568:20050811,38223993:210525 +k1,568:22092411,38223993:210524 +k1,568:22918974,38223993:210525 +k1,568:23485359,38223993:210525 +k1,568:24922063,38223993:210525 +k1,568:27215321,38223993:210524 +k1,568:29410932,38223993:210525 +h1,568:30381520,38223993:0,0,0 +k1,568:30592045,38223993:210525 +k1,568:32583029,38223993:0 +) +(1,569:6630773,39089073:25952256,513147,134348 +k1,568:7870563,39089073:220705 +k1,568:10511513,39089073:220705 +k1,568:14668966,39089073:220705 +k1,568:16402897,39089073:220705 +k1,568:19146738,39089073:220705 +k1,568:20386528,39089073:220705 +k1,568:22438309,39089073:220705 +k1,568:23642054,39089073:220705 +k1,568:25938284,39089073:220705 +k1,568:26775027,39089073:220705 +k1,568:28014817,39089073:220705 +k1,568:29461701,39089073:220705 +k1,568:31765140,39089073:220705 +k1,568:32583029,39089073:0 +) +(1,569:6630773,39954153:25952256,513147,126483 +k1,568:9028494,39954153:181293 +k1,568:10266226,39954153:181292 +k1,568:11847368,39954153:181293 +k1,568:13047745,39954153:181292 +k1,568:16388529,39954153:181293 +(1,568:16388529,39954153:0,452978,115847 +r1,578:23781031,39954153:7392502,568825,115847 +k1,568:16388529,39954153:-7392502 +) +(1,568:16388529,39954153:7392502,452978,115847 +k1,568:16388529,39954153:3277 +h1,568:23777754,39954153:0,411205,112570 +) +k1,568:24135993,39954153:181292 +k1,568:25524459,39954153:181293 +k1,568:27512579,39954153:181292 +k1,568:28455400,39954153:181293 +k1,568:29655777,39954153:181292 +k1,568:31391584,39954153:181293 +k1,568:32583029,39954153:0 +) +(1,569:6630773,40819233:25952256,513147,126483 +k1,568:7878041,40819233:228183 +k1,568:9473959,40819233:228182 +k1,568:10928321,40819233:228183 +k1,568:11772542,40819233:228183 +k1,568:13019809,40819233:228182 +k1,568:15668237,40819233:228183 +k1,568:16427917,40819233:228183 +k1,568:18204715,40819233:228182 +k1,568:19640071,40819233:228183 +k1,568:22931407,40819233:228183 +k1,568:23921117,40819233:228182 +k1,568:24564114,40819233:228154 +k1,568:25478458,40819233:228182 +k1,568:26062501,40819233:228183 +k1,568:28133556,40819233:228183 +k1,568:29021030,40819233:228182 +k1,568:30452454,40819233:228183 +k1,568:32583029,40819233:0 +) +(1,569:6630773,41684313:25952256,513147,102891 +k1,568:8093162,41684313:265702 +k1,568:9626329,41684313:265701 +k1,568:10936675,41684313:265702 +k1,568:11861669,41684313:265702 +k1,568:13146455,41684313:265701 +k1,568:16006072,41684313:265702 +k1,568:18262757,41684313:265701 +k1,568:22380665,41684313:265702 +k1,568:24335885,41684313:265702 +k1,568:25620671,41684313:265701 +k1,568:27153839,41684313:265702 +k1,568:28464185,41684313:265702 +k1,568:29389178,41684313:265701 +k1,568:30673965,41684313:265702 +k1,568:32583029,41684313:0 +) +(1,569:6630773,42549393:25952256,513147,126483 +k1,568:8855925,42549393:234168 +k1,568:10109178,42549393:234168 +k1,568:11787760,42549393:234168 +k1,568:12673357,42549393:234169 +k1,568:13926610,42549393:234168 +k1,568:15991854,42549393:234168 +k1,568:17209062,42549393:234168 +k1,568:18727736,42549393:234168 +k1,568:19493401,42549393:234168 +k1,568:21305021,42549393:234168 +k1,568:22730634,42549393:234168 +k1,568:24738206,42549393:234168 +k1,568:25623803,42549393:234169 +k1,568:26605737,42549393:234168 +k1,568:28834166,42549393:234168 +k1,568:31821501,42549393:234168 +k1,568:32583029,42549393:0 +) +(1,569:6630773,43414473:25952256,505283,7863 +k1,569:32583030,43414473:22611232 +g1,569:32583030,43414473 +) +v1,577:6630773,44279553:0,393216,0 +(1,578:6630773,44901303:25952256,1014966,0 +g1,578:6630773,44901303 +g1,578:6237557,44901303 +r1,578:6368629,44901303:131072,1014966,0 +g1,578:6567858,44901303 +g1,578:6764466,44901303 +[1,578:6764466,44901303:25818563,1014966,0 +(1,578:6764466,44640730:25818563,754393,260573 +(1,577:6764466,44640730:0,754393,260573 +r1,578:8010564,44640730:1246098,1014966,260573 +k1,577:6764466,44640730:-1246098 +) +(1,577:6764466,44640730:1246098,754393,260573 +) +k1,577:8193169,44640730:182605 +k1,577:8520849,44640730:327680 +k1,577:10486689,44640730:182605 +k1,577:13256001,44640730:182606 +k1,577:14051368,44640730:182605 +k1,577:15253058,44640730:182605 +k1,577:18595154,44640730:182605 +k1,577:21352670,44640730:182606 +k1,577:23136975,44640730:182605 +k1,577:25492754,44640730:182605 +k1,577:26666919,44640730:182605 +k1,577:29199646,44640730:182606 +k1,577:30143779,44640730:182605 +k1,577:32583029,44640730:0 +) +] +g1,578:32583029,44901303 +) +] +(1,578:32583029,45706769:0,0,0 +g1,578:32583029,45706769 +) +) +] +(1,578:6630773,47279633:25952256,0,0 +h1,578:6630773,47279633:25952256,0,0 +) +] +(1,578:4262630,4025873:0,0,0 +[1,578:-473656,4025873:0,0,0 +(1,578:-473656,-710413:0,0,0 +(1,578:-473656,-710413:0,0,0 +g1,578:-473656,-710413 +) +g1,578:-473656,-710413 +) +] +) +] +!16833 +}32 +Input:234:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:235:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!197 +{33 +[1,593:4262630,47279633:28320399,43253760,0 +(1,593:4262630,4025873:0,0,0 +[1,593:-473656,4025873:0,0,0 +(1,593:-473656,-710413:0,0,0 +(1,593:-473656,-644877:0,0,0 +k1,593:-473656,-644877:-65536 +) +(1,593:-473656,4736287:0,0,0 +k1,593:-473656,4736287:5209943 ) -g1,470:-473656,-710413 +g1,593:-473656,-710413 ) ] ) -[1,470:6630773,47279633:25952256,43253760,0 -[1,470:6630773,4812305:25952256,786432,0 -(1,470:6630773,4812305:25952256,505283,7863 -(1,470:6630773,4812305:25952256,505283,7863 -g1,470:3078558,4812305 -[1,470:3078558,4812305:0,0,0 -(1,470:3078558,2439708:0,1703936,0 -k1,470:1358238,2439708:-1720320 -(1,417:1358238,2439708:1720320,1703936,0 -(1,417:1358238,2439708:1179648,16384,0 -r1,470:2537886,2439708:1179648,16384,0 +[1,593:6630773,47279633:25952256,43253760,0 +[1,593:6630773,4812305:25952256,786432,0 +(1,593:6630773,4812305:25952256,505283,134348 +(1,593:6630773,4812305:25952256,505283,134348 +g1,593:3078558,4812305 +[1,593:3078558,4812305:0,0,0 +(1,593:3078558,2439708:0,1703936,0 +k1,593:1358238,2439708:-1720320 +(1,412:1358238,2439708:1720320,1703936,0 +(1,412:1358238,2439708:1179648,16384,0 +r1,593:2537886,2439708:1179648,16384,0 ) -g1,417:3062174,2439708 -(1,417:3062174,2439708:16384,1703936,0 -[1,417:3062174,2439708:25952256,1703936,0 -(1,417:3062174,1915420:25952256,1179648,0 -(1,417:3062174,1915420:16384,1179648,0 -r1,470:3078558,1915420:16384,1179648,0 +g1,412:3062174,2439708 +(1,412:3062174,2439708:16384,1703936,0 +[1,412:3062174,2439708:25952256,1703936,0 +(1,412:3062174,1915420:25952256,1179648,0 +(1,412:3062174,1915420:16384,1179648,0 +r1,593:3078558,1915420:16384,1179648,0 ) -k1,417:29014430,1915420:25935872 -g1,417:29014430,1915420 +k1,412:29014430,1915420:25935872 +g1,412:29014430,1915420 ) ] ) ) ) ] -[1,470:3078558,4812305:0,0,0 -(1,470:3078558,2439708:0,1703936,0 -g1,470:29030814,2439708 -g1,470:36135244,2439708 -(1,417:36135244,2439708:1720320,1703936,0 -(1,417:36135244,2439708:16384,1703936,0 -[1,417:36135244,2439708:25952256,1703936,0 -(1,417:36135244,1915420:25952256,1179648,0 -(1,417:36135244,1915420:16384,1179648,0 -r1,470:36151628,1915420:16384,1179648,0 +[1,593:3078558,4812305:0,0,0 +(1,593:3078558,2439708:0,1703936,0 +g1,593:29030814,2439708 +g1,593:36135244,2439708 +(1,412:36135244,2439708:1720320,1703936,0 +(1,412:36135244,2439708:16384,1703936,0 +[1,412:36135244,2439708:25952256,1703936,0 +(1,412:36135244,1915420:25952256,1179648,0 +(1,412:36135244,1915420:16384,1179648,0 +r1,593:36151628,1915420:16384,1179648,0 ) -k1,417:62087500,1915420:25935872 -g1,417:62087500,1915420 +k1,412:62087500,1915420:25935872 +g1,412:62087500,1915420 ) ] ) -g1,417:36675916,2439708 -(1,417:36675916,2439708:1179648,16384,0 -r1,470:37855564,2439708:1179648,16384,0 +g1,412:36675916,2439708 +(1,412:36675916,2439708:1179648,16384,0 +r1,593:37855564,2439708:1179648,16384,0 ) ) -k1,470:3078556,2439708:-34777008 +k1,593:3078556,2439708:-34777008 ) ] -[1,470:3078558,4812305:0,0,0 -(1,470:3078558,49800853:0,16384,2228224 -k1,470:1358238,49800853:-1720320 -(1,417:1358238,49800853:1720320,16384,2228224 -(1,417:1358238,49800853:1179648,16384,0 -r1,470:2537886,49800853:1179648,16384,0 +[1,593:3078558,4812305:0,0,0 +(1,593:3078558,49800853:0,16384,2228224 +k1,593:1358238,49800853:-1720320 +(1,412:1358238,49800853:1720320,16384,2228224 +(1,412:1358238,49800853:1179648,16384,0 +r1,593:2537886,49800853:1179648,16384,0 ) -g1,417:3062174,49800853 -(1,417:3062174,52029077:16384,1703936,0 -[1,417:3062174,52029077:25952256,1703936,0 -(1,417:3062174,51504789:25952256,1179648,0 -(1,417:3062174,51504789:16384,1179648,0 -r1,470:3078558,51504789:16384,1179648,0 +g1,412:3062174,49800853 +(1,412:3062174,52029077:16384,1703936,0 +[1,412:3062174,52029077:25952256,1703936,0 +(1,412:3062174,51504789:25952256,1179648,0 +(1,412:3062174,51504789:16384,1179648,0 +r1,593:3078558,51504789:16384,1179648,0 ) -k1,417:29014430,51504789:25935872 -g1,417:29014430,51504789 +k1,412:29014430,51504789:25935872 +g1,412:29014430,51504789 ) ] -) -) -) -] -[1,470:3078558,4812305:0,0,0 -(1,470:3078558,49800853:0,16384,2228224 -g1,470:29030814,49800853 -g1,470:36135244,49800853 -(1,417:36135244,49800853:1720320,16384,2228224 -(1,417:36135244,52029077:16384,1703936,0 -[1,417:36135244,52029077:25952256,1703936,0 -(1,417:36135244,51504789:25952256,1179648,0 -(1,417:36135244,51504789:16384,1179648,0 -r1,470:36151628,51504789:16384,1179648,0 -) -k1,417:62087500,51504789:25935872 -g1,417:62087500,51504789 -) -] -) -g1,417:36675916,49800853 -(1,417:36675916,49800853:1179648,16384,0 -r1,470:37855564,49800853:1179648,16384,0 -) -) -k1,470:3078556,49800853:-34777008 -) -] -g1,470:6630773,4812305 -g1,470:6630773,4812305 -g1,470:8450052,4812305 -g1,470:9127038,4812305 -g1,470:10049130,4812305 -k1,470:31786110,4812305:21736980 -) -) -] -[1,470:6630773,45706769:25952256,40108032,0 -(1,470:6630773,45706769:25952256,40108032,0 -(1,470:6630773,45706769:0,0,0 -g1,470:6630773,45706769 -) -[1,470:6630773,45706769:25952256,40108032,0 -(1,446:6630773,6254097:25952256,513147,134348 -k1,445:8984389,6254097:196171 -k1,445:10574511,6254097:196171 -k1,445:11126542,6254097:196171 -k1,445:14603445,6254097:196171 -k1,445:17282120,6254097:196171 -k1,445:18859135,6254097:196171 -k1,445:22039161,6254097:196172 -k1,445:22863167,6254097:196171 -k1,445:24761308,6254097:196171 -k1,445:27086088,6254097:196171 -k1,445:29609442,6254097:196171 -k1,445:30464905,6254097:196171 -k1,445:32583029,6254097:0 -) -(1,446:6630773,7095585:25952256,513147,126483 -k1,445:7471297,7095585:189096 -k1,445:9718224,7095585:189097 -k1,445:12542523,7095585:189096 -k1,445:15493963,7095585:189097 -k1,445:17663557,7095585:189096 -k1,445:18511945,7095585:189096 -k1,445:21460108,7095585:189097 -k1,445:22300632,7095585:189096 -k1,445:23304996,7095585:189096 -k1,445:26256436,7095585:189097 -k1,445:28161920,7095585:189096 -k1,445:29010309,7095585:189097 -k1,445:31900144,7095585:189096 -k1,445:32583029,7095585:0 -) -(1,446:6630773,7937073:25952256,513147,134348 -k1,445:8581780,7937073:169738 -k1,445:9908228,7937073:169738 -k1,445:11182248,7937073:169738 -k1,445:13639193,7937073:169738 -k1,445:15075087,7937073:169738 -k1,445:15600685,7937073:169738 -k1,445:18350576,7937073:169739 -k1,445:19804820,7937073:169738 -k1,445:21107020,7937073:169738 -k1,445:22992491,7937073:169738 -k1,445:24445424,7937073:169738 -k1,445:26196546,7937073:169738 -k1,445:29799060,7937073:169738 -k1,445:32583029,7937073:0 -) -(1,446:6630773,8778561:25952256,505283,7863 -g1,445:8839991,8778561 -k1,446:32583028,8778561:23154524 -g1,446:32583028,8778561 -) -(1,448:6630773,9620049:25952256,513147,134348 -h1,447:6630773,9620049:983040,0,0 -k1,447:8952154,9620049:141654 -k1,447:10831823,9620049:141654 -k1,447:12707560,9620049:141654 -k1,447:13264000,9620049:141597 -k1,447:13264000,9620049:0 -k1,447:13705752,9620049:141597 -k1,447:14378903,9620049:141654 -k1,447:16033782,9620049:141653 -k1,447:16826864,9620049:141654 -k1,447:20529089,9620049:141654 -k1,447:21085529,9620049:141597 -k1,447:23006485,9620049:141654 -k1,447:23834301,9620049:141654 -k1,447:24591993,9620049:141654 -k1,447:25752732,9620049:141654 -k1,447:26309172,9620049:141597 -k1,447:29824619,9620049:141654 -k1,447:32583029,9620049:0 -) -(1,448:6630773,10461537:25952256,513147,134348 -k1,447:7425683,10461537:178872 -k1,447:8623641,10461537:178873 -k1,447:9217336,10461537:178852 -k1,447:13177635,10461537:178872 -k1,447:14547952,10461537:178872 -k1,447:15515223,10461537:178873 -k1,447:17959675,10461537:178872 -k1,447:21222671,10461537:178872 -k1,447:22969164,10461537:178872 -k1,447:23562859,10461537:178852 -k1,447:24357770,10461537:178873 -k1,447:24892502,10461537:178872 -k1,447:27566985,10461537:178872 -k1,447:29689656,10461537:178873 -k1,447:31753999,10461537:178872 -k1,448:32583029,10461537:0 -) -(1,448:6630773,11303025:25952256,513147,134348 -k1,447:8937293,11303025:254588 -k1,447:12921534,11303025:254587 -k1,447:16260246,11303025:254588 -k1,447:17002366,11303025:254532 -k1,447:18390071,11303025:254587 -k1,447:21555113,11303025:254588 -k1,447:22801260,11303025:254587 -k1,447:25814258,11303025:254588 -k1,447:26684883,11303025:254587 -k1,447:27958556,11303025:254588 -k1,447:28627931,11303025:254532 -k1,447:32583029,11303025:0 -) -(1,448:6630773,12144513:25952256,505283,134348 -k1,447:7912855,12144513:209913 -k1,447:9724468,12144513:209913 -k1,447:10349213,12144513:209902 -k1,447:13469579,12144513:209912 -k1,447:14671052,12144513:209913 -k1,447:19454067,12144513:209913 -k1,447:22925051,12144513:209913 -k1,447:26537592,12144513:209912 -k1,447:27938950,12144513:209913 -k1,447:31417799,12144513:209913 -k1,448:32583029,12144513:0 -) -(1,448:6630773,12986001:25952256,513147,134348 -k1,447:9571792,12986001:180643 -k1,447:10949121,12986001:180642 -k1,447:13615545,12986001:180643 -k1,447:14455480,12986001:180643 -k1,447:16450159,12986001:180642 -k1,447:19414771,12986001:180643 -k1,447:23494806,12986001:180643 -k1,447:24090273,12986001:180624 -k1,447:27181370,12986001:180643 -k1,447:30145981,12986001:180642 -k1,447:30858121,12986001:180643 -k1,447:32583029,12986001:0 -) -(1,448:6630773,13827489:25952256,513147,11795 -g1,447:7446040,13827489 -g1,447:8664354,13827489 -g1,447:10602909,13827489 -g1,447:11461430,13827489 -k1,448:32583029,13827489:18846384 -g1,448:32583029,13827489 -) -(1,450:6630773,14668977:25952256,513147,134348 -h1,449:6630773,14668977:983040,0,0 -k1,449:9053424,14668977:242924 -k1,449:10898048,14668977:242924 -k1,449:14350269,14668977:242923 -k1,449:17831982,14668977:242924 -k1,449:18734198,14668977:242924 -k1,449:20712515,14668977:242924 -k1,449:21311299,14668977:242924 -k1,449:24396519,14668977:242924 -k1,449:25785667,14668977:242923 -k1,449:26443390,14668977:242880 -k1,449:27217811,14668977:242924 -k1,449:28745241,14668977:242924 -k1,449:32583029,14668977:0 -) -(1,450:6630773,15510465:25952256,505283,134348 -k1,449:7565928,15510465:283727 -k1,449:8868740,15510465:283727 -k1,449:12228727,15510465:283727 -k1,449:13504014,15510465:283727 -k1,449:15482502,15510465:283727 -k1,449:16452391,15510465:283727 -k1,449:18135967,15510465:283727 -k1,449:19800539,15510465:283728 -k1,449:22130300,15510465:283727 -k1,449:22872124,15510465:283727 -k1,449:24550457,15510465:283727 -k1,449:25485612,15510465:283727 -k1,449:27785882,15510465:283727 -k1,449:28752494,15510465:283727 -k1,449:32227169,15510465:283727 -k1,449:32583029,15510465:0 -) -(1,450:6630773,16351953:25952256,505283,126483 -k1,449:8316621,16351953:296485 -k1,449:11341370,16351953:296485 -k1,449:14017466,16351953:296484 -k1,449:18151739,16351953:296485 -k1,449:20118737,16351953:296485 -k1,449:21066650,16351953:296485 -k1,449:25655743,16351953:296485 -k1,449:26603655,16351953:296484 -k1,449:28602110,16351953:296485 -k1,449:31034413,16351953:296485 -k1,449:32583029,16351953:0 -) -(1,450:6630773,17193441:25952256,505283,134348 -k1,449:7932646,17193441:200868 -k1,449:9643464,17193441:200868 -k1,449:11421783,17193441:200867 -k1,449:12238689,17193441:200868 -k1,449:12795417,17193441:200868 -k1,449:14234260,17193441:200868 -k1,449:15719633,17193441:200867 -k1,449:16451998,17193441:200868 -k1,449:21162398,17193441:200868 -k1,449:23767782,17193441:200868 -k1,449:24987734,17193441:200867 -k1,449:29026390,17193441:200868 -k1,449:32583029,17193441:0 -) -(1,450:6630773,18034929:25952256,513147,126483 -k1,449:8901747,18034929:211177 -k1,449:9468784,18034929:211177 -k1,449:13154680,18034929:211177 -k1,449:14933479,18034929:211178 -k1,449:15500516,18034929:211177 -k1,449:16646236,18034929:211177 -k1,449:17516705,18034929:211177 -k1,449:21565670,18034929:211177 -k1,449:22428275,18034929:211177 -k1,449:23658538,18034929:211178 -k1,449:26945975,18034929:211177 -k1,449:28424618,18034929:211177 -k1,449:29861974,18034929:211177 -k1,449:32583029,18034929:0 -) -(1,450:6630773,18876417:25952256,513147,126483 -g1,449:7481430,18876417 -g1,449:11933946,18876417 -g1,449:13152260,18876417 -g1,449:16312406,18876417 -g1,449:17703080,18876417 -g1,449:20686934,18876417 -g1,449:23164850,18876417 -g1,449:24023371,18876417 -g1,449:24578460,18876417 -k1,450:32583029,18876417:5997857 -g1,450:32583029,18876417 -) -v1,452:6630773,20242193:0,393216,0 -(1,453:6630773,23982013:25952256,4133036,0 -g1,453:6630773,23982013 -g1,453:6303093,23982013 -r1,470:6401397,23982013:98304,4133036,0 -g1,453:6600626,23982013 -g1,453:6797234,23982013 -[1,453:6797234,23982013:25785795,4133036,0 -(1,453:6797234,20604266:25785795,755289,196608 -(1,452:6797234,20604266:0,755289,196608 -r1,470:8134168,20604266:1336934,951897,196608 -k1,452:6797234,20604266:-1336934 -) -(1,452:6797234,20604266:1336934,755289,196608 -) -k1,452:8362174,20604266:228006 -k1,452:8689854,20604266:327680 -k1,452:11452792,20604266:228005 -k1,452:13074749,20604266:228006 -k1,452:17655001,20604266:228006 -k1,452:21469792,20604266:228006 -k1,452:22830259,20604266:228005 -k1,452:25006650,20604266:228006 -k1,452:26519162,20604266:228006 -k1,452:28439308,20604266:228006 -k1,452:31273024,20604266:228005 -k1,452:32168186,20604266:228006 -k1,453:32583029,20604266:0 -) -(1,453:6797234,21445754:25785795,513147,134348 -k1,452:8709174,21445754:168682 -k1,452:10445477,21445754:168682 -k1,452:12358072,21445754:168682 -k1,452:13142792,21445754:168682 -k1,452:15013444,21445754:168682 -k1,452:19534372,21445754:168682 -k1,452:23049322,21445754:168682 -k1,452:23632816,21445754:168651 -k1,452:25294408,21445754:168682 -k1,452:26529361,21445754:168682 -k1,452:28173258,21445754:168682 -k1,452:29361025,21445754:168682 -k1,452:31196943,21445754:168682 -k1,452:32583029,21445754:0 -) -(1,453:6797234,22287242:25785795,513147,126483 -k1,452:9204699,22287242:255263 -k1,452:10127117,22287242:255262 -k1,452:12326833,22287242:255263 -k1,452:13264981,22287242:255263 -k1,452:14977109,22287242:255263 -k1,452:15702264,22287242:255262 -k1,452:17058532,22287242:255263 -k1,452:20390710,22287242:255263 -k1,452:21930478,22287242:255262 -k1,452:23290023,22287242:255263 -k1,452:24897949,22287242:255263 -k1,452:27461390,22287242:255263 -k1,452:28908097,22287242:255262 -k1,452:31896867,22287242:255263 -k1,452:32583029,22287242:0 -) -(1,453:6797234,23128730:25785795,513147,126483 -k1,452:10208589,23128730:264972 -k1,452:12980968,23128730:264972 -k1,452:14437385,23128730:264972 -k1,452:15910187,23128730:264973 -k1,452:16589936,23128730:264906 -k1,452:18524765,23128730:264972 -k1,452:20559864,23128730:264972 -k1,452:21476264,23128730:264972 -k1,452:22943166,23128730:264972 -k1,452:24017509,23128730:264973 -k1,452:27044824,23128730:264972 -k1,452:29384011,23128730:264972 -k1,452:31091430,23128730:264972 -k1,453:32583029,23128730:0 -) -(1,453:6797234,23970218:25785795,505283,11795 -g1,452:9283014,23970218 -g1,452:11426696,23970218 -g1,452:12308810,23970218 -g1,452:13791234,23970218 -k1,453:32583029,23970218:17121938 -g1,453:32583029,23970218 -) -] -g1,453:32583029,23982013 -) -h1,453:6630773,23982013:0,0,0 -(1,455:6630773,26073273:25952256,534184,147783 -(1,455:6630773,26073273:2450326,534184,0 -g1,455:6630773,26073273 -g1,455:9081099,26073273 -) -g1,455:9825064,26073273 -g1,455:10828552,26073273 -g1,455:11454290,26073273 -g1,455:15171230,26073273 -k1,455:32583029,26073273:14301133 -g1,455:32583029,26073273 -) -(1,459:6630773,27307977:25952256,513147,134348 -k1,458:8054670,27307977:227210 -k1,458:8696696,27307977:227183 -k1,458:11665932,27307977:227210 -k1,458:13498774,27307977:227210 -k1,458:14257481,27307977:227210 -k1,458:18557755,27307977:227211 -k1,458:19854513,27307977:227210 -k1,458:20870121,27307977:227210 -k1,458:23206281,27307977:227211 -k1,458:24929678,27307977:227210 -k1,458:25688385,27307977:227210 -k1,458:28699565,27307977:227211 -k1,458:29874426,27307977:227210 -k1,458:32583029,27307977:0 -) -(1,459:6630773,28149465:25952256,513147,126483 -k1,458:7522822,28149465:240621 -k1,458:10242015,28149465:240621 -k1,458:12744939,28149465:240621 -k1,458:14177005,28149465:240621 -k1,458:15683782,28149465:240621 -k1,458:16411949,28149465:240579 -k1,458:18368958,28149465:240621 -k1,458:21119608,28149465:240621 -k1,458:22019521,28149465:240621 -k1,458:23971287,28149465:240621 -k1,458:25344370,28149465:240621 -k1,458:27999337,28149465:240621 -k1,458:31548871,28149465:240621 -k1,459:32583029,28149465:0 -) -(1,459:6630773,28990953:25952256,513147,134348 -k1,458:10598525,28990953:190257 -k1,458:11440209,28990953:190256 -k1,458:12649551,28990953:190257 -k1,458:13254642,28990953:190248 -k1,458:16186924,28990953:190256 -k1,458:18156483,28990953:190257 -k1,458:19418908,28990953:190256 -k1,458:20067262,28990953:190257 -k1,458:20789016,28990953:190257 -k1,458:23782902,28990953:190256 -k1,458:25164604,28990953:190257 -k1,458:27098773,28990953:190256 -k1,458:31591469,28990953:190257 -k1,458:32583029,28990953:0 -) -(1,459:6630773,29832441:25952256,505283,134348 -k1,458:10034058,29832441:193987 -k1,458:10844084,29832441:193988 -k1,458:13396712,29832441:193987 -k1,458:14005537,29832441:193982 -k1,458:17338044,29832441:193988 -k1,458:20056478,29832441:193987 -k1,458:21447152,29832441:193987 -k1,458:25188604,29832441:193988 -k1,458:26401676,29832441:193987 -k1,458:27010501,29832441:193982 -k1,458:29946515,29832441:193988 -k1,458:31008854,29832441:193987 -k1,459:32583029,29832441:0 -) -(1,459:6630773,30673929:25952256,513147,134348 -k1,458:7946135,30673929:188143 -k1,458:9400433,30673929:188142 -k1,458:10692858,30673929:188143 -k1,458:11628767,30673929:188143 -k1,458:13295402,30673929:188143 -k1,458:14431195,30673929:188142 -k1,458:17381681,30673929:188143 -k1,458:20623802,30673929:188143 -k1,458:23388165,30673929:188143 -k1,458:24767752,30673929:188142 -k1,458:28032155,30673929:188143 -k1,458:31386342,30673929:188143 -k1,458:32583029,30673929:0 -) -(1,459:6630773,31515417:25952256,513147,134348 -k1,458:9822783,31515417:238302 -k1,458:10720377,31515417:238302 -k1,458:11977763,31515417:238301 -k1,458:12630869,31515417:238263 -k1,458:16352410,31515417:238302 -k1,458:18170785,31515417:238302 -k1,458:19586113,31515417:238301 -k1,458:20475843,31515417:238302 -k1,458:22222128,31515417:238302 -k1,458:23479515,31515417:238302 -k1,458:25890990,31515417:238301 -k1,458:28921126,31515417:238302 -k1,458:30727049,31515417:238302 -k1,459:32583029,31515417:0 -) -(1,459:6630773,32356905:25952256,513147,126483 -k1,458:9015211,32356905:225682 -k1,458:10818345,32356905:225682 -k1,458:11853397,32356905:225682 -k1,458:12845195,32356905:225682 -k1,458:14089962,32356905:225682 -k1,458:17077986,32356905:225681 -k1,458:19276302,32356905:225682 -k1,458:20693429,32356905:225682 -k1,458:23995371,32356905:225682 -k1,458:28390453,32356905:225682 -k1,458:29302297,32356905:225682 -k1,458:32583029,32356905:0 -) -(1,459:6630773,33198393:25952256,505283,126483 -k1,458:7517366,33198393:200431 -k1,458:10521427,33198393:200431 -k1,458:11918545,33198393:200431 -k1,458:13444113,33198393:200430 -k1,458:14176041,33198393:200431 -k1,458:15027900,33198393:200431 -k1,458:17371358,33198393:200431 -k1,458:18856295,33198393:200431 -k1,458:23450915,33198393:200431 -k1,458:25661990,33198393:200430 -k1,458:29143153,33198393:200431 -k1,458:31516758,33198393:200431 -k1,458:32583029,33198393:0 -) -(1,459:6630773,34039881:25952256,513147,134348 -k1,458:8262570,34039881:256196 -k1,458:10551693,34039881:256196 -k1,458:13354617,34039881:256195 -k1,458:14262241,34039881:256196 -k1,458:14933223,34039881:256139 -k1,458:16261587,34039881:256195 -k1,458:17803599,34039881:256196 -k1,458:20092722,34039881:256196 -k1,458:23111261,34039881:256196 -k1,458:26421435,34039881:256196 -k1,458:29253850,34039881:256195 -k1,458:30656271,34039881:256196 -k1,459:32583029,34039881:0 -) -(1,459:6630773,34881369:25952256,505283,134348 -g1,458:8281624,34881369 -g1,458:11668524,34881369 -g1,458:12738072,34881369 -g1,458:13728320,34881369 -g1,458:15118994,34881369 -g1,458:19431917,34881369 -g1,458:20822591,34881369 -g1,458:24098080,34881369 -k1,459:32583029,34881369:5318905 -g1,459:32583029,34881369 -) -(1,467:6630773,35722857:25952256,513147,134348 -h1,466:6630773,35722857:983040,0,0 -k1,466:9060688,35722857:250188 -k1,466:9725668,35722857:250137 -k1,466:12717882,35722857:250188 -k1,466:14460980,35722857:250188 -k1,466:15777439,35722857:250188 -k1,466:17502842,35722857:250188 -k1,466:18108890,35722857:250188 -k1,466:22006812,35722857:250188 -k1,466:25206775,35722857:250188 -k1,466:26837807,35722857:250188 -k1,466:29898179,35722857:250188 -k1,466:31900144,35722857:250188 -k1,466:32583029,35722857:0 -) -(1,467:6630773,36564345:25952256,513147,126483 -k1,466:8955890,36564345:197818 -k1,466:10721328,36564345:197817 -k1,466:12804617,36564345:197818 -k1,466:13653863,36564345:197818 -k1,466:15340003,36564345:197817 -k1,466:18300164,36564345:197818 -k1,466:20214370,36564345:197818 -k1,466:21071480,36564345:197818 -k1,466:24143706,36564345:197817 -k1,466:26854174,36564345:197818 -k1,466:28071077,36564345:197818 -k1,466:29649738,36564345:197817 -k1,466:31563944,36564345:197818 -k1,466:32583029,36564345:0 -) -(1,467:6630773,37405833:25952256,505283,134348 -k1,466:10369699,37405833:249134 -k1,466:11231595,37405833:249134 -k1,466:12499813,37405833:249133 -k1,466:13163740,37405833:249084 -k1,466:15833119,37405833:249134 -k1,466:17273698,37405833:249134 -k1,466:18541916,37405833:249133 -k1,466:20633922,37405833:249134 -k1,466:21414553,37405833:249134 -k1,466:24726840,37405833:249134 -k1,466:27454546,37405833:249134 -k1,466:28513049,37405833:249133 -k1,466:29781268,37405833:249134 -k1,466:31414522,37405833:249134 -k1,466:32583029,37405833:0 -) -(1,467:6630773,38247321:25952256,513147,134348 -k1,466:9021701,38247321:198749 -h1,466:9992289,38247321:0,0,0 -k1,466:10571802,38247321:198749 -k1,466:11967238,38247321:198749 -k1,466:13819460,38247321:198749 -k1,466:16220219,38247321:198749 -k1,466:19908760,38247321:198749 -k1,466:21211791,38247321:198749 -k1,466:22696355,38247321:198748 -k1,466:23642870,38247321:198749 -k1,466:25653034,38247321:198749 -k1,466:27119249,38247321:198749 -k1,466:27673858,38247321:198749 -k1,466:29098786,38247321:198749 -k1,466:30454245,38247321:198749 -k1,466:31821501,38247321:198749 -k1,466:32583029,38247321:0 -) -(1,467:6630773,39088809:25952256,513147,134348 -k1,466:8114672,39088809:141722 -k1,466:9447838,39088809:141721 -k1,466:11083126,39088809:141722 -k1,466:11580707,39088809:141721 -k1,466:12879139,39088809:141722 -k1,466:14888636,39088809:141721 -k1,466:15386218,39088809:141722 -k1,466:17959325,39088809:141721 -k1,466:19205329,39088809:141722 -k1,466:22557004,39088809:141722 -k1,466:23646376,39088809:141721 -k1,466:24807183,39088809:141722 -k1,466:26797019,39088809:141721 -k1,466:28967736,39088809:141722 -k1,466:29768749,39088809:141721 -k1,466:30929556,39088809:141722 -k1,466:32583029,39088809:0 -) -(1,467:6630773,39930297:25952256,513147,134348 -k1,466:9782198,39930297:211480 -k1,466:10652971,39930297:211481 -k1,466:14354243,39930297:211480 -k1,466:15178486,39930297:211481 -k1,466:16409051,39930297:211480 -k1,466:19040777,39930297:211481 -k1,466:21717066,39930297:211480 -k1,466:23119992,39930297:211481 -k1,466:24423957,39930297:211480 -k1,466:25302594,39930297:211481 -k1,466:25928905,39930297:211468 -k1,466:28301763,39930297:211481 -k1,466:29504803,39930297:211480 -k1,466:32583029,39930297:0 -) -(1,467:6630773,40771785:25952256,505283,134348 -k1,466:7436678,40771785:189867 -k1,466:10044168,40771785:189867 -h1,466:10442627,40771785:0,0,0 -k1,466:10632494,40771785:189867 -k1,466:11631731,40771785:189867 -k1,466:13319751,40771785:189867 -h1,466:14515128,40771785:0,0,0 -k1,466:15085759,40771785:189867 -k1,466:17058861,40771785:189867 -k1,466:18117081,40771785:189868 -k1,466:19903405,40771785:189867 -k1,466:20706034,40771785:189867 -k1,466:21914986,40771785:189867 -k1,466:24698768,40771785:189867 -k1,466:27746660,40771785:189867 -k1,466:31426319,40771785:189867 -k1,466:32583029,40771785:0 -) -(1,467:6630773,41613273:25952256,505283,126483 -k1,466:7652213,41613273:259912 -k1,466:9242506,41613273:259912 -k1,466:10370769,41613273:259911 -k1,466:11723166,41613273:259912 -k1,466:12397860,41613273:259851 -k1,466:16714450,41613273:259912 -k1,466:18757596,41613273:259911 -k1,466:19885860,41613273:259912 -k1,466:21263816,41613273:259912 -k1,466:21879588,41613273:259912 -k1,466:24144245,41613273:259911 -k1,466:25272509,41613273:259912 -k1,466:26869355,41613273:259912 -k1,466:28176532,41613273:259912 -k1,466:29720949,41613273:259911 -k1,466:30849213,41613273:259912 -k1,466:32227169,41613273:259912 -k1,466:32583029,41613273:0 -) -(1,467:6630773,42454761:25952256,505283,134348 -k1,466:8930107,42454761:237571 -k1,466:10663210,42454761:237571 -k1,466:12097468,42454761:237571 -k1,466:13507479,42454761:237572 -k1,466:17407202,42454761:237571 -k1,466:20734796,42454761:237571 -k1,466:22827691,42454761:237571 -k1,466:24056822,42454761:237571 -k1,466:27078362,42454761:237571 -k1,466:27931971,42454761:237571 -k1,466:29188627,42454761:237571 -k1,466:29841003,42454761:237533 -k1,466:32583029,42454761:0 -) -(1,467:6630773,43296249:25952256,513147,7863 -k1,467:32583029,43296249:24172954 -g1,467:32583029,43296249 -) -v1,469:6630773,44662025:0,393216,0 -] -(1,470:32583029,45706769:0,0,0 -g1,470:32583029,45706769 -) -) -] -(1,470:6630773,47279633:25952256,0,0 -h1,470:6630773,47279633:25952256,0,0 -) -] -(1,470:4262630,4025873:0,0,0 -[1,470:-473656,4025873:0,0,0 -(1,470:-473656,-710413:0,0,0 -(1,470:-473656,-710413:0,0,0 -g1,470:-473656,-710413 -) -g1,470:-473656,-710413 -) -] -) -] -!22690 -}26 +) +) +) +] +[1,593:3078558,4812305:0,0,0 +(1,593:3078558,49800853:0,16384,2228224 +g1,593:29030814,49800853 +g1,593:36135244,49800853 +(1,412:36135244,49800853:1720320,16384,2228224 +(1,412:36135244,52029077:16384,1703936,0 +[1,412:36135244,52029077:25952256,1703936,0 +(1,412:36135244,51504789:25952256,1179648,0 +(1,412:36135244,51504789:16384,1179648,0 +r1,593:36151628,51504789:16384,1179648,0 +) +k1,412:62087500,51504789:25935872 +g1,412:62087500,51504789 +) +] +) +g1,412:36675916,49800853 +(1,412:36675916,49800853:1179648,16384,0 +r1,593:37855564,49800853:1179648,16384,0 +) +) +k1,593:3078556,49800853:-34777008 +) +] +g1,593:6630773,4812305 +k1,593:21916392,4812305:14488701 +g1,593:22703479,4812305 +g1,593:23888369,4812305 +g1,593:27214321,4812305 +g1,593:28624000,4812305 +g1,593:29808890,4812305 +) +) +] +[1,593:6630773,45706769:25952256,40108032,0 +(1,593:6630773,45706769:25952256,40108032,0 +(1,593:6630773,45706769:0,0,0 +g1,593:6630773,45706769 +) +[1,593:6630773,45706769:25952256,40108032,0 +[1,586:6630773,22302557:25952256,16703820,0 +[1,586:6630773,22302557:25952256,16703820,0 +(1,585:6630773,17218906:25952256,11620169,0 +g1,585:6630773,17218906 +h1,584:6630773,17218906:0,0,0 +(1,584:6630773,17218906:25952256,11620169,0 +) +g1,585:32583029,17218906 +g1,585:32583029,17218906 +) +(1,585:6630773,18739346:25952256,485622,11795 +h1,585:6630773,18739346:0,0,0 +g1,585:9295467,18739346 +k1,585:32583028,18739346:22297312 +g1,585:32583028,18739346 +) +(1,585:6630773,19604426:25952256,513147,134348 +h1,585:6630773,19604426:0,0,0 +k1,585:8927631,19604426:210192 +k1,585:11555446,19604426:210192 +k1,585:12424929,19604426:210191 +k1,585:13654206,19604426:210192 +k1,585:17804422,19604426:210192 +k1,585:21174105,19604426:210192 +k1,585:23804542,19604426:210192 +k1,585:25243534,19604426:210192 +k1,585:26966951,19604426:210191 +k1,585:29700279,19604426:210192 +k1,585:30929556,19604426:210192 +k1,585:32583029,19604426:0 +) +(1,585:6630773,20469506:25952256,505283,126483 +k1,585:8844986,20469506:209467 +k1,585:10542775,20469506:209466 +k1,585:11620594,20469506:209467 +k1,585:12922545,20469506:209466 +(1,585:12922545,20469506:0,452978,115847 +r1,593:15391082,20469506:2468537,568825,115847 +k1,585:12922545,20469506:-2468537 +) +(1,585:12922545,20469506:2468537,452978,115847 +k1,585:12922545,20469506:3277 +h1,585:15387805,20469506:0,411205,112570 +) +k1,585:15600549,20469506:209467 +k1,585:16461444,20469506:209467 +k1,585:17788954,20469506:209466 +k1,585:19017506,20469506:209467 +k1,585:21231718,20469506:209466 +k1,585:22460270,20469506:209467 +k1,585:24328453,20469506:209467 +k1,585:26621964,20469506:209466 +k1,585:27963893,20469506:209467 +k1,585:30545107,20469506:209466 +k1,585:31563944,20469506:209467 +k1,585:32583029,20469506:0 +) +(1,585:6630773,21334586:25952256,505283,134348 +k1,585:9895263,21334586:210512 +k1,585:12351693,21334586:210511 +k1,585:13178243,21334586:210512 +k1,585:14654910,21334586:210511 +k1,585:15493257,21334586:210512 +k1,585:16907010,21334586:210512 +k1,585:18658272,21334586:210511 +k1,585:19283615,21334586:210500 +k1,585:21406468,21334586:210512 +k1,585:22636065,21334586:210512 +k1,585:25019750,21334586:210511 +k1,585:25843024,21334586:210512 +k1,585:27072620,21334586:210511 +k1,585:30337110,21334586:210512 +k1,585:32583029,21334586:0 +) +(1,585:6630773,22199666:25952256,505283,102891 +g1,585:9250247,22199666 +g1,585:10132361,22199666 +g1,585:12008001,22199666 +g1,585:14158892,22199666 +g1,585:15800568,22199666 +g1,585:16615835,22199666 +g1,585:17603462,22199666 +g1,585:19133072,22199666 +g1,585:19747144,22199666 +k1,585:32583029,22199666:10241970 +g1,585:32583029,22199666 +) +] +] +v1,578:6630773,24268637:0,393216,0 +(1,578:6630773,25380131:25952256,1504710,0 +g1,578:6630773,25380131 +g1,578:6237557,25380131 +r1,593:6368629,25380131:131072,1504710,0 +g1,578:6567858,25380131 +g1,578:6764466,25380131 +[1,578:6764466,25380131:25818563,1504710,0 +(1,578:6764466,24388568:25818563,513147,126483 +k1,577:9865264,24388568:166096 +k1,577:12041349,24388568:166096 +k1,577:14368823,24388568:166097 +k1,577:15691629,24388568:166096 +k1,577:17718292,24388568:166096 +k1,577:18535816,24388568:166096 +k1,577:19794398,24388568:166097 +k1,577:22655990,24388568:166096 +(1,577:22655990,24388568:0,452978,115847 +r1,593:25124527,24388568:2468537,568825,115847 +k1,577:22655990,24388568:-2468537 +) +(1,577:22655990,24388568:2468537,452978,115847 +k1,577:22655990,24388568:3277 +h1,577:25121250,24388568:0,411205,112570 +) +k1,577:25290623,24388568:166096 +k1,577:28354066,24388568:166096 +k1,577:30218201,24388568:166097 +k1,577:30740157,24388568:166096 +k1,577:32583029,24388568:0 +) +(1,578:6764466,25253648:25818563,505283,126483 +g1,577:7495192,25253648 +g1,577:8345849,25253648 +g1,577:9292844,25253648 +k1,578:32583029,25253648:20053362 +g1,578:32583029,25253648 +) +] +g1,578:32583029,25380131 +) +h1,578:6630773,25380131:0,0,0 +(1,581:6630773,26245211:25952256,505283,134348 +h1,580:6630773,26245211:983040,0,0 +k1,580:8291570,26245211:190169 +k1,580:9789191,26245211:190178 +k1,580:12041133,26245211:190179 +k1,580:13553172,26245211:190178 +k1,580:14274847,26245211:190178 +k1,580:15531296,26245211:190178 +k1,580:16839518,26245211:190178 +k1,580:17642458,26245211:190178 +k1,580:18851722,26245211:190179 +k1,580:19456734,26245211:190169 +k1,580:22067157,26245211:190178 +k1,580:23329504,26245211:190178 +k1,580:24132444,26245211:190178 +k1,580:25341708,26245211:190179 +k1,580:28585864,26245211:190178 +k1,580:31021961,26245211:190178 +k1,581:32583029,26245211:0 +) +(1,581:6630773,27110291:25952256,513147,134348 +k1,580:8690187,27110291:247999 +k1,580:11513096,27110291:247999 +k1,580:12443980,27110291:247999 +k1,580:14368390,27110291:247999 +k1,580:15813076,27110291:247999 +k1,580:17563816,27110291:247999 +k1,580:18343312,27110291:247999 +k1,580:19610396,27110291:247999 +k1,580:22278640,27110291:247999 +k1,580:23185931,27110291:247999 +k1,580:24453015,27110291:247999 +k1,580:27754992,27110291:247999 +k1,581:32583029,27110291:0 +) +(1,581:6630773,27975371:25952256,505283,134348 +k1,580:8439565,27975371:183500 +k1,580:9492746,27975371:190727 +k1,580:10260170,27975371:183499 +k1,580:11126555,27975371:183500 +k1,580:15423748,27975371:183499 +k1,580:17592334,27975371:183500 +h1,580:18562922,27975371:0,0,0 +k1,580:18746421,27975371:183499 +k1,580:20920905,27975371:183500 +k1,580:22434785,27975371:183499 +k1,580:25141421,27975371:183500 +k1,580:25680780,27975371:183499 +k1,580:27695356,27975371:183500 +k1,580:28491617,27975371:183499 +k1,580:29694202,27975371:183500 +k1,580:32583029,27975371:0 +) +(1,581:6630773,28840451:25952256,505283,134348 +k1,580:10038548,28840451:248284 +k1,580:12688071,28840451:248284 +k1,580:14827070,28840451:248285 +k1,580:15562892,28840451:248234 +k1,580:17642253,28840451:248285 +k1,580:18994819,28840451:248284 +k1,580:19990869,28840451:248284 +k1,580:21357197,28840451:248284 +k1,580:22218243,28840451:248284 +k1,580:23485612,28840451:248284 +k1,580:26787875,28840451:248285 +k1,580:29282078,28840451:248284 +k1,580:31931601,28840451:248284 +k1,580:32583029,28840451:0 +) +(1,581:6630773,29705531:25952256,513147,134348 +k1,580:7657369,29705531:211328 +k1,580:13005410,29705531:211329 +k1,580:17018481,29705531:211328 +k1,580:18623761,29705531:211329 +k1,580:19854174,29705531:211328 +k1,580:22224259,29705531:211329 +k1,580:24247002,29705531:211328 +k1,580:25109759,29705531:211329 +k1,580:25676947,29705531:211328 +k1,580:27044986,29705531:211329 +k1,580:28527712,29705531:211328 +k1,580:30075975,29705531:211329 +k1,580:31379788,29705531:211328 +k1,580:32583029,29705531:0 +) +(1,581:6630773,30570611:25952256,505283,134348 +k1,580:9832207,30570611:216924 +k1,580:10858501,30570611:216924 +k1,580:11431285,30570611:216924 +k1,580:13780752,30570611:216925 +k1,580:15218612,30570611:216924 +k1,580:16086964,30570611:216924 +k1,580:17916729,30570611:216924 +k1,580:18489513,30570611:216924 +k1,580:20277335,30570611:216924 +k1,580:21883622,30570611:216924 +k1,580:24655140,30570611:216925 +k1,580:25893770,30570611:216924 +k1,580:28633830,30570611:216924 +k1,580:31900144,30570611:216924 +k1,580:32583029,30570611:0 +) +(1,581:6630773,31435691:25952256,513147,126483 +g1,580:8296698,31435691 +g1,580:9443578,31435691 +g1,580:11874308,31435691 +k1,581:32583029,31435691:19067044 +g1,581:32583029,31435691 +) +(1,589:6630773,32300771:25952256,505283,134348 +h1,588:6630773,32300771:983040,0,0 +k1,588:10051097,32300771:342098 +k1,588:12817371,32300771:342097 +k1,588:15722582,32300771:342098 +k1,588:16522777,32300771:342098 +k1,588:17396371,32300771:342097 +k1,588:20368429,32300771:342098 +k1,588:21361954,32300771:342097 +k1,588:23735013,32300771:342098 +k1,588:25096196,32300771:342098 +k1,588:28492271,32300771:342097 +k1,588:31080288,32300771:342098 +k1,588:32583029,32300771:0 +) +(1,589:6630773,33165851:25952256,505283,134348 +k1,588:9452905,33165851:263606 +k1,588:10735595,33165851:263605 +k1,588:12012388,33165851:263606 +k1,588:14434750,33165851:263606 +k1,588:18165865,33165851:263605 +k1,588:19620916,33165851:263606 +k1,588:22443048,33165851:263606 +k1,588:23725739,33165851:263606 +k1,588:25960012,33165851:263605 +k1,588:26693511,33165851:263606 +k1,588:27488614,33165851:263606 +k1,588:29038035,33165851:263605 +k1,588:31931601,33165851:263606 +k1,588:32583029,33165851:0 +) +(1,589:6630773,34030931:25952256,505283,134348 +k1,588:8012629,34030931:263812 +k1,588:9628449,34030931:263812 +k1,588:10508299,34030931:263812 +k1,588:11791196,34030931:263812 +k1,588:15844955,34030931:263812 +k1,588:16724806,34030931:263813 +k1,588:18001805,34030931:263812 +k1,588:22354408,34030931:263812 +k1,588:24444053,34030931:263812 +k1,588:25777413,34030931:263812 +k1,588:27730743,34030931:263812 +k1,588:32583029,34030931:0 +) +(1,589:6630773,34896011:25952256,505283,134348 +k1,588:8601493,34896011:235327 +k1,588:9855906,34896011:235328 +k1,588:10506040,34896011:235291 +k1,588:13335282,34896011:235327 +k1,588:14951453,34896011:235327 +k1,588:15718278,34896011:235328 +k1,588:17697518,34896011:235327 +k1,588:20562805,34896011:235327 +k1,588:21559661,34896011:235328 +k1,588:25848390,34896011:235327 +k1,588:28606853,34896011:235327 +k1,588:30014620,34896011:235328 +k1,588:30932832,34896011:235327 +k1,588:32583029,34896011:0 +) +(1,589:6630773,35761091:25952256,513147,134348 +g1,588:9815167,35761091 +g1,588:10673688,35761091 +g1,588:11892002,35761091 +g1,588:12506074,35761091 +k1,589:32583029,35761091:17161258 +g1,589:32583029,35761091 +) +(1,590:6630773,38592251:25952256,32768,229376 +(1,590:6630773,38592251:0,32768,229376 +(1,590:6630773,38592251:5505024,32768,229376 +r1,593:12135797,38592251:5505024,262144,229376 +) +k1,590:6630773,38592251:-5505024 +) +(1,590:6630773,38592251:25952256,32768,0 +r1,593:32583029,38592251:25952256,32768,0 +) +) +(1,590:6630773,40224103:25952256,606339,151780 +(1,590:6630773,40224103:1974731,582746,0 +g1,590:6630773,40224103 +g1,590:8605504,40224103 +) +g1,590:14129403,40224103 +g1,590:16067958,40224103 +g1,590:19551852,40224103 +g1,590:21565118,40224103 +k1,590:32583029,40224103:10475273 +g1,590:32583029,40224103 +) +(1,593:6630773,41482399:25952256,513147,126483 +k1,592:9908228,41482399:168427 +k1,592:12908467,41482399:168428 +k1,592:14268339,41482399:168427 +k1,592:18022896,41482399:168427 +k1,592:19182883,41482399:168427 +k1,592:20417582,41482399:168428 +k1,592:21961610,41482399:168427 +k1,592:25339335,41482399:168427 +k1,592:27020988,41482399:168427 +k1,592:28578779,41482399:168428 +k1,592:29738766,41482399:168427 +k1,592:32583029,41482399:0 +) +(1,593:6630773,42347479:25952256,513147,134348 +k1,592:7888762,42347479:185820 +k1,592:9360398,42347479:185820 +k1,592:11678759,42347479:185819 +k1,592:12477341,42347479:185820 +k1,592:13682246,42347479:185820 +k1,592:15956698,42347479:185820 +k1,592:17807131,42347479:185819 +k1,592:18652243,42347479:185820 +k1,592:19969870,42347479:185820 +k1,592:23612714,42347479:185820 +k1,592:25756093,42347479:185819 +k1,592:28050206,42347479:185820 +k1,592:31714677,42347479:185820 +k1,592:32583029,42347479:0 +) +(1,593:6630773,43212559:25952256,513147,134348 +k1,592:8177171,43212559:217328 +k1,592:9788449,43212559:217327 +k1,592:12496800,43212559:217328 +k1,592:14103490,43212559:217327 +k1,592:15888439,43212559:217328 +k1,592:17124851,43212559:217327 +k1,592:18538866,43212559:217328 +k1,592:20585958,43212559:217327 +k1,592:21486171,43212559:217328 +k1,592:23271119,43212559:217327 +k1,592:25476154,43212559:217328 +k1,592:29418547,43212559:217327 +k1,592:31970267,43212559:217328 +k1,592:32583029,43212559:0 +) +(1,593:6630773,44077639:25952256,513147,134348 +k1,592:7857250,44077639:207392 +k1,592:10866305,44077639:207391 +k1,592:12738311,44077639:207392 +k1,592:13604995,44077639:207392 +k1,592:14583089,44077639:207391 +k1,592:18399549,44077639:207392 +k1,592:19289825,44077639:207391 +k1,592:21770006,44077639:207392 +k1,592:24855739,44077639:207392 +k1,592:27823506,44077639:207391 +k1,592:29049983,44077639:207392 +k1,592:32583029,44077639:0 +) +(1,593:6630773,44942719:25952256,513147,134348 +k1,592:7826269,44942719:247845 +k1,592:9093199,44942719:247845 +k1,592:11429677,44942719:247846 +k1,592:12336814,44942719:247845 +k1,592:16524028,44942719:247845 +k1,592:17963318,44942719:247845 +k1,592:20814253,44942719:247845 +k1,592:22451461,44942719:247845 +k1,592:25253900,44942719:247846 +k1,592:26693190,44942719:247845 +k1,592:28330398,44942719:247845 +k1,592:32583029,44942719:0 +) +] +(1,593:32583029,45706769:0,0,0 +g1,593:32583029,45706769 +) +) +] +(1,593:6630773,47279633:25952256,0,0 +h1,593:6630773,47279633:25952256,0,0 +) +] +(1,593:4262630,4025873:0,0,0 +[1,593:-473656,4025873:0,0,0 +(1,593:-473656,-710413:0,0,0 +(1,593:-473656,-710413:0,0,0 +g1,593:-473656,-710413 +) +g1,593:-473656,-710413 +) +] +) +] +!15401 +}33 !11 -{27 -[1,480:4262630,47279633:28320399,43253760,0 -(1,480:4262630,4025873:0,0,0 -[1,480:-473656,4025873:0,0,0 -(1,480:-473656,-710413:0,0,0 -(1,480:-473656,-644877:0,0,0 -k1,480:-473656,-644877:-65536 +{34 +[1,603:4262630,47279633:28320399,43253760,0 +(1,603:4262630,4025873:0,0,0 +[1,603:-473656,4025873:0,0,0 +(1,603:-473656,-710413:0,0,0 +(1,603:-473656,-644877:0,0,0 +k1,603:-473656,-644877:-65536 ) -(1,480:-473656,4736287:0,0,0 -k1,480:-473656,4736287:5209943 +(1,603:-473656,4736287:0,0,0 +k1,603:-473656,4736287:5209943 ) -g1,480:-473656,-710413 +g1,603:-473656,-710413 ) ] ) -[1,480:6630773,47279633:25952256,43253760,0 -[1,480:6630773,4812305:25952256,786432,0 -(1,480:6630773,4812305:25952256,505283,134348 -(1,480:6630773,4812305:25952256,505283,134348 -g1,480:3078558,4812305 -[1,480:3078558,4812305:0,0,0 -(1,480:3078558,2439708:0,1703936,0 -k1,480:1358238,2439708:-1720320 -(1,417:1358238,2439708:1720320,1703936,0 -(1,417:1358238,2439708:1179648,16384,0 -r1,480:2537886,2439708:1179648,16384,0 +[1,603:6630773,47279633:25952256,43253760,0 +[1,603:6630773,4812305:25952256,786432,0 +(1,603:6630773,4812305:25952256,505283,126483 +(1,603:6630773,4812305:25952256,505283,126483 +g1,603:3078558,4812305 +[1,603:3078558,4812305:0,0,0 +(1,603:3078558,2439708:0,1703936,0 +k1,603:1358238,2439708:-1720320 +(1,412:1358238,2439708:1720320,1703936,0 +(1,412:1358238,2439708:1179648,16384,0 +r1,603:2537886,2439708:1179648,16384,0 ) -g1,417:3062174,2439708 -(1,417:3062174,2439708:16384,1703936,0 -[1,417:3062174,2439708:25952256,1703936,0 -(1,417:3062174,1915420:25952256,1179648,0 -(1,417:3062174,1915420:16384,1179648,0 -r1,480:3078558,1915420:16384,1179648,0 +g1,412:3062174,2439708 +(1,412:3062174,2439708:16384,1703936,0 +[1,412:3062174,2439708:25952256,1703936,0 +(1,412:3062174,1915420:25952256,1179648,0 +(1,412:3062174,1915420:16384,1179648,0 +r1,603:3078558,1915420:16384,1179648,0 ) -k1,417:29014430,1915420:25935872 -g1,417:29014430,1915420 +k1,412:29014430,1915420:25935872 +g1,412:29014430,1915420 ) ] ) ) ) ] -[1,480:3078558,4812305:0,0,0 -(1,480:3078558,2439708:0,1703936,0 -g1,480:29030814,2439708 -g1,480:36135244,2439708 -(1,417:36135244,2439708:1720320,1703936,0 -(1,417:36135244,2439708:16384,1703936,0 -[1,417:36135244,2439708:25952256,1703936,0 -(1,417:36135244,1915420:25952256,1179648,0 -(1,417:36135244,1915420:16384,1179648,0 -r1,480:36151628,1915420:16384,1179648,0 +[1,603:3078558,4812305:0,0,0 +(1,603:3078558,2439708:0,1703936,0 +g1,603:29030814,2439708 +g1,603:36135244,2439708 +(1,412:36135244,2439708:1720320,1703936,0 +(1,412:36135244,2439708:16384,1703936,0 +[1,412:36135244,2439708:25952256,1703936,0 +(1,412:36135244,1915420:25952256,1179648,0 +(1,412:36135244,1915420:16384,1179648,0 +r1,603:36151628,1915420:16384,1179648,0 ) -k1,417:62087500,1915420:25935872 -g1,417:62087500,1915420 +k1,412:62087500,1915420:25935872 +g1,412:62087500,1915420 ) ] ) -g1,417:36675916,2439708 -(1,417:36675916,2439708:1179648,16384,0 -r1,480:37855564,2439708:1179648,16384,0 +g1,412:36675916,2439708 +(1,412:36675916,2439708:1179648,16384,0 +r1,603:37855564,2439708:1179648,16384,0 ) ) -k1,480:3078556,2439708:-34777008 +k1,603:3078556,2439708:-34777008 ) ] -[1,480:3078558,4812305:0,0,0 -(1,480:3078558,49800853:0,16384,2228224 -k1,480:1358238,49800853:-1720320 -(1,417:1358238,49800853:1720320,16384,2228224 -(1,417:1358238,49800853:1179648,16384,0 -r1,480:2537886,49800853:1179648,16384,0 +[1,603:3078558,4812305:0,0,0 +(1,603:3078558,49800853:0,16384,2228224 +k1,603:1358238,49800853:-1720320 +(1,412:1358238,49800853:1720320,16384,2228224 +(1,412:1358238,49800853:1179648,16384,0 +r1,603:2537886,49800853:1179648,16384,0 ) -g1,417:3062174,49800853 -(1,417:3062174,52029077:16384,1703936,0 -[1,417:3062174,52029077:25952256,1703936,0 -(1,417:3062174,51504789:25952256,1179648,0 -(1,417:3062174,51504789:16384,1179648,0 -r1,480:3078558,51504789:16384,1179648,0 +g1,412:3062174,49800853 +(1,412:3062174,52029077:16384,1703936,0 +[1,412:3062174,52029077:25952256,1703936,0 +(1,412:3062174,51504789:25952256,1179648,0 +(1,412:3062174,51504789:16384,1179648,0 +r1,603:3078558,51504789:16384,1179648,0 ) -k1,417:29014430,51504789:25935872 -g1,417:29014430,51504789 -) -] -) -) -) -] -[1,480:3078558,4812305:0,0,0 -(1,480:3078558,49800853:0,16384,2228224 -g1,480:29030814,49800853 -g1,480:36135244,49800853 -(1,417:36135244,49800853:1720320,16384,2228224 -(1,417:36135244,52029077:16384,1703936,0 -[1,417:36135244,52029077:25952256,1703936,0 -(1,417:36135244,51504789:25952256,1179648,0 -(1,417:36135244,51504789:16384,1179648,0 -r1,480:36151628,51504789:16384,1179648,0 -) -k1,417:62087500,51504789:25935872 -g1,417:62087500,51504789 -) -] -) -g1,417:36675916,49800853 -(1,417:36675916,49800853:1179648,16384,0 -r1,480:37855564,49800853:1179648,16384,0 -) -) -k1,480:3078556,49800853:-34777008 -) -] -g1,480:6630773,4812305 -k1,480:21916392,4812305:14488701 -g1,480:22703479,4812305 -g1,480:23888369,4812305 -g1,480:27214321,4812305 -g1,480:28624000,4812305 -g1,480:29808890,4812305 -) -) -] -[1,480:6630773,45706769:25952256,40108032,0 -(1,480:6630773,45706769:25952256,40108032,0 -(1,480:6630773,45706769:0,0,0 -g1,480:6630773,45706769 -) -[1,480:6630773,45706769:25952256,40108032,0 -[1,464:6630773,18130710:25952256,12531973,0 -[1,464:6630773,18130710:25952256,12531973,0 -(1,463:6630773,9901958:25952256,4303221,0 -k1,463:8577113,9901958:1946340 -h1,462:8577113,9901958:0,0,0 -(1,462:8577113,9901958:22059576,4303221,0 -) -g1,463:30636689,9901958 -k1,463:32583029,9901958:1946340 -) -(1,463:6630773,11398806:25952256,485622,11795 -h1,463:6630773,11398806:0,0,0 -g1,463:9295467,11398806 -k1,463:32583028,11398806:22297312 -g1,463:32583028,11398806 -) -(1,463:6630773,12240294:25952256,505283,126483 -h1,463:6630773,12240294:0,0,0 -k1,463:7979638,12240294:152178 -k1,463:8546611,12240294:152130 -k1,463:11119034,12240294:152178 -k1,463:13190106,12240294:152178 -k1,463:14361368,12240294:152177 -k1,463:15894390,12240294:152178 -k1,463:17150849,12240294:152177 -k1,463:18689113,12240294:152178 -k1,463:21043300,12240294:152177 -k1,463:24685270,12240294:152178 -k1,463:25994158,12240294:152178 -k1,463:26907863,12240294:152177 -k1,463:28390422,12240294:152178 -k1,463:30030922,12240294:152177 -k1,463:31202185,12240294:152178 -k1,463:32583029,12240294:0 -) -(1,463:6630773,13081782:25952256,513147,134348 -k1,463:7914793,13081782:183015 -k1,463:9904636,13081782:183015 -(1,463:9904636,13081782:0,452978,115847 -r1,480:14835156,13081782:4930520,568825,115847 -k1,463:9904636,13081782:-4930520 -) -(1,463:9904636,13081782:4930520,452978,115847 -k1,463:9904636,13081782:3277 -h1,463:14831879,13081782:0,411205,112570 -) -k1,463:15018171,13081782:183015 -k1,463:16392631,13081782:183015 -k1,463:18982128,13081782:183015 -k1,463:19623240,13081782:183015 -k1,463:20567782,13081782:183014 -k1,463:22923971,13081782:183015 -k1,463:24126071,13081782:183015 -k1,463:25477593,13081782:183015 -k1,463:26319900,13081782:183015 -k1,463:27729094,13081782:183015 -k1,463:28673637,13081782:183015 -k1,463:31563944,13081782:183015 -k1,463:32583029,13081782:0 -) -(1,463:6630773,13923270:25952256,513147,134348 -k1,463:9069750,13923270:183883 -k1,463:10528308,13923270:183883 -k1,463:11908878,13923270:183883 -k1,463:13935633,13923270:183883 -k1,463:14778808,13923270:183883 -k1,463:17485827,13923270:183883 -k1,463:18688796,13923270:183884 -k1,463:22032170,13923270:183883 -k1,463:22747550,13923270:183883 -k1,463:25994586,13923270:183883 -k1,463:28046900,13923270:183883 -k1,463:29249868,13923270:183883 -k1,463:32583029,13923270:0 -) -(1,463:6630773,14764758:25952256,513147,126483 -k1,463:7972526,14764758:145066 -k1,463:11092271,14764758:145066 -k1,463:11850099,14764758:145066 -k1,463:13014250,14764758:145066 -k1,463:14698100,14764758:145065 -k1,463:15502458,14764758:145066 -k1,463:16666609,14764758:145066 -k1,463:18520199,14764758:145066 -k1,463:20007442,14764758:145066 -k1,463:20508368,14764758:145066 -$1,463:20808523,14764758 -$1,463:21329534,14764758 -k1,463:21774755,14764758:145066 -k1,463:22535859,14764758:145066 -k1,463:23884165,14764758:145065 -k1,463:25569982,14764758:145066 -k1,463:26246545,14764758:145066 -k1,463:28259387,14764758:145066 -k1,463:29423538,14764758:145066 -k1,463:32583029,14764758:0 -) -(1,463:6630773,15606246:25952256,505283,134348 -k1,463:9439646,15606246:233963 -k1,463:12545398,15606246:233964 -k1,463:14698255,15606246:233963 -k1,463:15288078,15606246:233963 -k1,463:18681533,15606246:233964 -k1,463:20019778,15606246:233963 -k1,463:21001507,15606246:233963 -k1,463:23042299,15606246:233964 -k1,463:24065971,15606246:233963 -k1,463:27911623,15606246:233963 -k1,463:30568453,15606246:233964 -k1,463:31563944,15606246:233963 -k1,463:32583029,15606246:0 -) -(1,463:6630773,16447734:25952256,505283,126483 -k1,463:8224375,16447734:212758 -k1,463:9428694,16447734:212759 -k1,463:12704605,16447734:212758 -k1,463:13533401,16447734:212758 -k1,463:14976271,16447734:212759 -k1,463:16878547,16447734:212758 -k1,463:19264479,16447734:212758 -k1,463:22255965,16447734:212759 -k1,463:23230251,16447734:212758 -k1,463:23857839,16447734:212745 -k1,463:25062157,16447734:212758 -k1,463:28338068,16447734:212758 -k1,463:29166865,16447734:212759 -k1,463:30921030,16447734:212758 -(1,463:31221185,16447734:0,452978,115847 -r1,480:32282874,16447734:1061689,568825,115847 -k1,463:31221185,16447734:-1061689 -) -(1,463:31221185,16447734:1061689,452978,115847 -k1,463:31221185,16447734:3277 -h1,463:32279597,16447734:0,411205,112570 -) -k1,463:32583029,16447734:0 -) -(1,463:6630773,17289222:25952256,505283,134348 -g1,463:7934284,17289222 -g1,463:8881279,17289222 -g1,463:11521724,17289222 -g1,463:13292506,17289222 -g1,463:14280133,17289222 -g1,463:17207626,17289222 -g1,463:17938352,17289222 -g1,463:21215807,17289222 -g1,463:22224406,17289222 -g1,463:23921788,17289222 -h1,463:24718706,17289222:0,0,0 -k1,463:32583029,17289222:7864323 -g1,463:32583029,17289222 -) -(1,464:6630773,18130710:25952256,78643,0 -k1,464:19520066,18130710:12889293 -h1,463:19520066,18130710:0,0,0 -g1,464:19693736,18130710 -k1,464:32583029,18130710:12889293 -) -] -] -v1,470:6630773,20096790:0,393216,0 -(1,470:6630773,27198630:25952256,7495056,0 -g1,470:6630773,27198630 -g1,470:6303093,27198630 -r1,480:6401397,27198630:98304,7495056,0 -g1,470:6600626,27198630 -g1,470:6797234,27198630 -[1,470:6797234,27198630:25785795,7495056,0 -(1,470:6797234,20458863:25785795,755289,196608 -(1,469:6797234,20458863:0,755289,196608 -r1,480:8134168,20458863:1336934,951897,196608 -k1,469:6797234,20458863:-1336934 -) -(1,469:6797234,20458863:1336934,755289,196608 -) -k1,469:8297730,20458863:163562 -k1,469:8625410,20458863:327680 -k1,469:9606860,20458863:163561 -k1,469:10185230,20458863:163527 -k1,469:10880288,20458863:163561 -k1,469:14399293,20458863:163562 -k1,469:14918715,20458863:163562 -k1,469:19623266,20458863:163561 -k1,469:23521069,20458863:163562 -k1,469:24142728,20458863:163562 -k1,469:25410571,20458863:163561 -k1,469:26321899,20458863:163562 -k1,469:27998687,20458863:163562 -k1,469:28971618,20458863:163561 -k1,469:30683796,20458863:163562 -k1,470:32583029,20458863:0 -) -(1,470:6797234,21300351:25785795,513147,134348 -k1,469:8472870,21300351:207630 -k1,469:9672060,21300351:207630 -k1,469:11782855,21300351:207629 -k1,469:15421295,21300351:207630 -k1,469:18877545,21300351:207630 -k1,469:22390156,21300351:207630 -k1,469:23249214,21300351:207630 -k1,469:23812704,21300351:207630 -k1,469:26777433,21300351:207629 -k1,469:30061323,21300351:207630 -k1,469:30928245,21300351:207630 -k1,469:32583029,21300351:0 -) -(1,470:6797234,22141839:25785795,505283,134348 -k1,469:9601019,22141839:247881 -k1,469:11147168,22141839:247881 -k1,469:11809843,22141839:247832 -k1,469:13162006,22141839:247881 -k1,469:14527931,22141839:247881 -k1,469:16242508,22141839:247881 -k1,469:17299759,22141839:247881 -k1,469:18566725,22141839:247881 -k1,469:22052085,22141839:247881 -k1,469:23050353,22141839:247881 -k1,469:23654094,22141839:247881 -k1,469:29081285,22141839:247881 -k1,469:31189078,22141839:247881 -k1,469:32583029,22141839:0 -) -(1,470:6797234,22983327:25785795,513147,134349 -k1,469:8001429,22983327:185110 -k1,469:11621935,22983327:185109 -k1,469:13779023,22983327:185110 -k1,469:14623425,22983327:185110 -k1,469:15164394,22983327:185109 -k1,469:17719286,22983327:185110 -k1,469:19755787,22983327:185109 -k1,469:21933191,22983327:185110 -k1,469:23350378,22983327:185110 -$1,469:23350378,22983327 -k1,469:25326288,22983327:0 -k1,469:25721470,22983327:0 -k1,469:26116652,22983327:0 -k1,469:26511834,22983327:0 -k1,469:28092562,22983327:0 -k1,469:28487744,22983327:0 -$1,469:30068472,22983327 -k1,469:30634345,22983327:185109 -k1,469:31563944,22983327:185110 -k1,469:32583029,22983327:0 -) -(1,470:6797234,23824815:25785795,513147,126483 -k1,469:8689434,23824815:190230 -k1,469:10062588,23824815:190229 -k1,469:10912110,23824815:190230 -k1,469:12121425,23824815:190230 -k1,469:15497359,23824815:190229 -k1,469:16496959,23824815:190230 -k1,469:18450107,23824815:190230 -k1,469:21497050,23824815:190229 -k1,469:24150123,23824815:190230 -k1,469:24755187,23824815:190221 -k1,469:26049698,23824815:190229 -k1,469:26987694,23824815:190230 -k1,469:28691150,23824815:190230 -k1,469:29829030,23824815:190229 -k1,469:31038345,23824815:190230 -k1,470:32583029,23824815:0 -) -(1,470:6797234,24666303:25785795,513147,134348 -k1,469:8263325,24666303:243189 -k1,469:9165806,24666303:243189 -k1,469:10384826,24666303:243189 -k1,469:12017378,24666303:243189 -k1,469:13525412,24666303:243189 -k1,469:15162552,24666303:243189 -k1,469:17978029,24666303:243189 -k1,469:18880510,24666303:243189 -k1,469:23369121,24666303:243189 -k1,469:25033131,24666303:243189 -k1,469:28133034,24666303:243189 -k1,469:28732083,24666303:243189 -k1,469:32051532,24666303:243189 -k1,469:32583029,24666303:0 -) -(1,470:6797234,25507791:25785795,513147,134348 -k1,469:9268351,25507791:172769 -k1,469:10388771,25507791:172769 -k1,469:10917401,25507791:172770 -k1,469:12784931,25507791:172769 -k1,469:14347063,25507791:172769 -k1,469:17074425,25507791:172769 -k1,469:18582819,25507791:172770 -k1,469:21457637,25507791:172769 -k1,469:22439776,25507791:172769 -k1,469:23631630,25507791:172769 -k1,469:25073177,25507791:172770 -k1,469:25905238,25507791:172769 -k1,469:27097092,25507791:172769 -k1,469:28659224,25507791:172769 -k1,469:30270509,25507791:172770 -k1,469:31252648,25507791:172769 -k1,469:32583029,25507791:0 -) -(1,470:6797234,26349279:25785795,513147,134348 -k1,469:9278024,26349279:227007 -k1,469:10661740,26349279:227006 -k1,469:11593914,26349279:227007 -k1,469:12630290,26349279:227006 -k1,469:13876382,26349279:227007 -k1,469:16085198,26349279:227007 -k1,469:16963632,26349279:227006 -k1,469:19011229,26349279:227007 -k1,469:21790863,26349279:227007 -k1,469:25459164,26349279:227006 -k1,469:26877616,26349279:227007 -k1,469:27913992,26349279:227006 -k1,469:30398714,26349279:227007 -k1,469:32583029,26349279:0 -) -(1,470:6797234,27190767:25785795,505283,7863 -k1,470:32583029,27190767:24115938 -g1,470:32583029,27190767 -) -] -g1,470:32583029,27198630 -) -h1,470:6630773,27198630:0,0,0 -(1,472:6630773,30006198:25952256,32768,229376 -(1,472:6630773,30006198:0,32768,229376 -(1,472:6630773,30006198:5505024,32768,229376 -r1,480:12135797,30006198:5505024,262144,229376 -) -k1,472:6630773,30006198:-5505024 -) -(1,472:6630773,30006198:25952256,32768,0 -r1,480:32583029,30006198:25952256,32768,0 -) -) -(1,472:6630773,31610526:25952256,606339,161218 -(1,472:6630773,31610526:1974731,582746,14155 -g1,472:6630773,31610526 -g1,472:8605504,31610526 -) -g1,472:11091416,31610526 -k1,472:32583030,31610526:20948976 -g1,472:32583030,31610526 -) -(1,474:6630773,32915354:25952256,555811,12975 -(1,474:6630773,32915354:2450326,534184,12975 -g1,474:6630773,32915354 -g1,474:9081099,32915354 -) -g1,474:11879618,32915354 -g1,474:13446846,32915354 -k1,474:32583030,32915354:17501192 -g1,474:32583030,32915354 -) -(1,476:6630773,34150058:25952256,505283,134348 -k1,475:10117288,34150058:211026 -k1,475:14542934,34150058:211026 -k1,475:19165188,34150058:211026 -k1,475:21207945,34150058:211026 -k1,475:22410530,34150058:211025 -k1,475:25466474,34150058:211026 -k1,475:27190726,34150058:211026 -k1,475:29099790,34150058:211026 -k1,475:32583029,34150058:0 -) -(1,476:6630773,34991546:25952256,513147,134348 -k1,475:9928151,34991546:221118 -k1,475:13395268,34991546:221119 -k1,475:15033930,34991546:221118 -k1,475:17685124,34991546:221119 -k1,475:18262102,34991546:221118 -k1,475:22044446,34991546:221118 -k1,475:23646409,34991546:221119 -k1,475:26677711,34991546:221118 -k1,475:28466451,34991546:221119 -k1,475:30697558,34991546:221118 -k1,475:32583029,34991546:0 -) -(1,476:6630773,35833034:25952256,513147,134348 -k1,475:7902726,35833034:252868 -k1,475:10917937,35833034:252868 -k1,475:12752189,35833034:252868 -k1,475:14518283,35833034:252868 -k1,475:15422579,35833034:252868 -k1,475:17604827,35833034:252868 -k1,475:19049139,35833034:252867 -k1,475:20493452,35833034:252868 -k1,475:21102180,35833034:252868 -k1,475:24431308,35833034:252868 -k1,475:27426202,35833034:252868 -k1,475:28783352,35833034:252868 -k1,475:29783986,35833034:252868 -k1,475:32583029,35833034:0 -) -(1,476:6630773,36674522:25952256,513147,126483 -k1,475:8035101,36674522:212883 -k1,475:9761210,36674522:212883 -k1,475:10590130,36674522:212882 -k1,475:15047780,36674522:212883 -k1,475:16806002,36674522:212883 -k1,475:18436429,36674522:212883 -k1,475:20986980,36674522:212882 -k1,475:21555723,36674522:212883 -k1,475:24873046,36674522:212883 -k1,475:26994993,36674522:212883 -k1,475:29626809,36674522:212882 -k1,475:30498984,36674522:212883 -k1,475:32583029,36674522:0 -) -(1,476:6630773,37516010:25952256,505283,134348 -k1,475:10673689,37516010:195297 -k1,475:15392936,37516010:195297 -k1,475:18609443,37516010:195297 -k1,475:20601082,37516010:195297 -k1,475:23051473,37516010:195297 -k1,475:25101440,37516010:195298 -k1,475:26106107,37516010:195297 -k1,475:27810043,37516010:195297 -k1,475:29240694,37516010:195297 -k1,475:30052029,37516010:195297 -k1,475:31266411,37516010:195297 -k1,476:32583029,37516010:0 -) -(1,476:6630773,38357498:25952256,513147,134348 -k1,475:10042359,38357498:162966 -k1,475:13428386,38357498:162966 -k1,475:14782797,38357498:162966 -k1,475:16412459,38357498:162966 -k1,475:17884179,38357498:162966 -k1,475:18698573,38357498:162966 -k1,475:20857766,38357498:162966 -k1,475:22712872,38357498:162966 -k1,475:25710270,38357498:162966 -k1,475:26489274,38357498:162966 -k1,475:29237635,38357498:162966 -k1,475:30059893,38357498:162966 -k1,475:32583029,38357498:0 -) -(1,476:6630773,39198986:25952256,513147,126483 -k1,475:7835746,39198986:185888 -k1,475:9691491,39198986:185888 -k1,475:11148777,39198986:185888 -k1,475:13103483,39198986:185889 -k1,475:15958652,39198986:185888 -k1,475:17638106,39198986:185888 -k1,475:18594697,39198986:185888 -k1,475:20689649,39198986:185888 -k1,475:21561699,39198986:185888 -k1,475:22766672,39198986:185888 -k1,475:26257542,39198986:185889 -k1,475:27102722,39198986:185888 -k1,475:27644470,39198986:185888 -k1,475:29454996,39198986:185888 -k1,475:32583029,39198986:0 -) -(1,476:6630773,40040474:25952256,505283,134348 -k1,475:8249021,40040474:224297 -k1,475:10972205,40040474:224296 -k1,475:12387947,40040474:224297 -k1,475:15514834,40040474:224297 -k1,475:18724950,40040474:224296 -k1,475:20233753,40040474:224297 -k1,475:21562332,40040474:224297 -k1,475:23240217,40040474:224296 -k1,475:25287070,40040474:224297 -k1,475:28010255,40040474:224297 -k1,475:29425996,40040474:224296 -k1,475:31734338,40040474:224297 -k1,476:32583029,40040474:0 -) -(1,476:6630773,40881962:25952256,513147,134348 -k1,475:8133186,40881962:200868 -k1,475:9281705,40881962:200868 -k1,475:9838433,40881962:200868 -k1,475:13115561,40881962:200868 -k1,475:16158725,40881962:200868 -k1,475:17505818,40881962:200868 -k1,475:18121527,40881962:200866 -k1,475:20649578,40881962:200868 -k1,475:21509738,40881962:200868 -k1,475:22658257,40881962:200868 -k1,475:23214985,40881962:200868 -k1,475:25707647,40881962:200868 -k1,475:28750811,40881962:200868 -k1,475:30097904,40881962:200868 -k1,475:32583029,40881962:0 -) -(1,476:6630773,41723450:25952256,513147,134348 -k1,475:8250942,41723450:202625 -k1,475:11758548,41723450:202625 -k1,475:13158517,41723450:202626 -k1,475:15063112,41723450:202625 -k1,475:17871448,41723450:202625 -k1,475:19358579,41723450:202625 -k1,475:20949257,41723450:202625 -k1,475:24478489,41723450:202625 -k1,475:25340407,41723450:202626 -k1,475:26562117,41723450:202625 -k1,475:30474080,41723450:202625 -k1,475:32583029,41723450:0 -) -(1,476:6630773,42564938:25952256,505283,126483 -g1,475:8326189,42564938 -g1,475:9716863,42564938 -g1,475:11631825,42564938 -g1,475:13225660,42564938 -g1,475:14443974,42564938 -g1,475:16674164,42564938 -g1,475:17524821,42564938 -k1,476:32583029,42564938:10058466 -g1,476:32583029,42564938 -) -(1,478:6630773,43406426:25952256,513147,126483 -h1,477:6630773,43406426:983040,0,0 -k1,477:8233646,43406426:149940 -k1,477:8915084,43406426:149941 -k1,477:12219272,43406426:149940 -k1,477:13723187,43406426:149941 -k1,477:16650543,43406426:149940 -k1,477:17451912,43406426:149941 -k1,477:18694337,43406426:149940 -k1,477:19614981,43406426:149941 -k1,477:20852115,43406426:149892 -k1,477:21688217,43406426:149940 -k1,477:22194017,43406426:149940 -k1,477:25359269,43406426:149941 -k1,477:26192094,43406426:149940 -k1,477:29947826,43406426:149941 -k1,477:32583029,43406426:0 -) -(1,478:6630773,44247914:25952256,505283,134348 -k1,477:7855314,44247914:205456 -k1,477:9441614,44247914:205456 -k1,477:10838515,44247914:205456 -k1,477:12063056,44247914:205456 -k1,477:12683349,44247914:205450 -k1,477:15804502,44247914:205456 -k1,477:20526044,44247914:205456 -k1,477:21723059,44247914:205455 -k1,477:23127169,44247914:205456 -k1,477:24910077,44247914:205456 -k1,477:25731571,44247914:205456 -k1,477:26956112,44247914:205456 -k1,477:27576405,44247914:205450 -k1,477:30697558,44247914:205456 -k1,477:32583029,44247914:0 -) -(1,478:6630773,45089402:25952256,513147,126483 -k1,477:7337661,45089402:175391 -k1,477:8576045,45089402:175390 -k1,477:11058959,45089402:175391 -k1,477:11850387,45089402:175390 -k1,477:13044863,45089402:175391 -k1,477:14811468,45089402:175391 -k1,477:15760838,45089402:175390 -k1,477:16955314,45089402:175391 -k1,477:19914674,45089402:175391 -k1,477:21507608,45089402:175390 -k1,477:22630650,45089402:175391 -k1,477:23394553,45089402:175390 -k1,477:25994121,45089402:175391 -k1,477:26701009,45089402:175391 -k1,477:29786853,45089402:175390 -k1,477:30981329,45089402:175391 -k1,477:32583029,45089402:0 -) -] -(1,480:32583029,45706769:0,0,0 -g1,480:32583029,45706769 -) -) -] -(1,480:6630773,47279633:25952256,0,0 -h1,480:6630773,47279633:25952256,0,0 -) -] -(1,480:4262630,4025873:0,0,0 -[1,480:-473656,4025873:0,0,0 -(1,480:-473656,-710413:0,0,0 -(1,480:-473656,-710413:0,0,0 -g1,480:-473656,-710413 -) -g1,480:-473656,-710413 -) -] -) -] -!20135 -}27 +k1,412:29014430,51504789:25935872 +g1,412:29014430,51504789 +) +] +) +) +) +] +[1,603:3078558,4812305:0,0,0 +(1,603:3078558,49800853:0,16384,2228224 +g1,603:29030814,49800853 +g1,603:36135244,49800853 +(1,412:36135244,49800853:1720320,16384,2228224 +(1,412:36135244,52029077:16384,1703936,0 +[1,412:36135244,52029077:25952256,1703936,0 +(1,412:36135244,51504789:25952256,1179648,0 +(1,412:36135244,51504789:16384,1179648,0 +r1,603:36151628,51504789:16384,1179648,0 +) +k1,412:62087500,51504789:25935872 +g1,412:62087500,51504789 +) +] +) +g1,412:36675916,49800853 +(1,412:36675916,49800853:1179648,16384,0 +r1,603:37855564,49800853:1179648,16384,0 +) +) +k1,603:3078556,49800853:-34777008 +) +] +g1,603:6630773,4812305 +g1,603:6630773,4812305 +g1,603:10931900,4812305 +g1,603:12559159,4812305 +g1,603:15290044,4812305 +g1,603:16852422,4812305 +g1,603:17465839,4812305 +k1,603:31786111,4812305:14320272 +) +) +] +[1,603:6630773,45706769:25952256,40108032,0 +(1,603:6630773,45706769:25952256,40108032,0 +(1,603:6630773,45706769:0,0,0 +g1,603:6630773,45706769 +) +[1,603:6630773,45706769:25952256,40108032,0 +(1,593:6630773,6254097:25952256,505283,134348 +k1,592:8186648,6254097:175031 +k1,592:8893176,6254097:175031 +k1,592:11270218,6254097:175032 +k1,592:12096677,6254097:175031 +k1,592:13290793,6254097:175031 +k1,592:14701178,6254097:175031 +k1,592:16987125,6254097:175032 +k1,592:17923684,6254097:175031 +k1,592:21001305,6254097:175031 +k1,592:22367781,6254097:175031 +k1,592:26009668,6254097:175032 +k1,592:26836127,6254097:175031 +k1,592:31966991,6254097:175031 +k1,592:32583029,6254097:0 +) +(1,593:6630773,7119177:25952256,505283,134348 +k1,592:7231810,7119177:245177 +k1,592:9768782,7119177:245178 +k1,592:12856255,7119177:245177 +k1,592:14247658,7119177:245178 +k1,592:16977960,7119177:245177 +k1,592:20101479,7119177:245178 +k1,592:22392690,7119177:245177 +k1,592:25267828,7119177:245178 +k1,592:30728360,7119177:245177 +k1,592:32583029,7119177:0 +) +(1,593:6630773,7984257:25952256,513147,126483 +k1,592:7699867,7984257:259724 +k1,592:10043636,7984257:259724 +k1,592:13072911,7984257:259724 +k1,592:14222615,7984257:259725 +k1,592:17472747,7984257:259724 +k1,592:18804640,7984257:259724 +k1,592:19522461,7984257:259724 +k1,592:20313682,7984257:259724 +k1,592:21859222,7984257:259724 +k1,592:22474807,7984257:259725 +k1,592:24802847,7984257:259724 +k1,592:25721863,7984257:259724 +k1,592:31111090,7984257:259724 +k1,592:32583029,7984257:0 +) +(1,593:6630773,8849337:25952256,513147,126483 +k1,592:10899435,8849337:189701 +k1,592:12374953,8849337:189702 +k1,592:14237788,8849337:189701 +k1,592:14783350,8849337:189702 +k1,592:16074056,8849337:189701 +k1,592:17499112,8849337:189702 +k1,592:18304851,8849337:189701 +k1,592:19513638,8849337:189702 +k1,592:21989890,8849337:189701 +k1,592:23371037,8849337:189702 +k1,592:24804611,8849337:189701 +k1,592:29950146,8849337:189702 +k1,592:30799139,8849337:189701 +k1,592:32583029,8849337:0 +) +(1,593:6630773,9714417:25952256,513147,134348 +k1,592:11045065,9714417:142655 +k1,592:11602506,9714417:142598 +k1,592:12276658,9714417:142655 +k1,592:14396533,9714417:142654 +k1,592:18163984,9714417:142655 +k1,592:19072754,9714417:142654 +k1,592:21210325,9714417:142655 +k1,592:22012272,9714417:142655 +k1,592:23174011,9714417:142654 +k1,592:26022648,9714417:142655 +k1,592:28784121,9714417:142654 +k1,592:30494397,9714417:142655 +k1,592:32583029,9714417:0 +) +(1,593:6630773,10579497:25952256,513147,7863 +g1,592:7489294,10579497 +g1,592:9990147,10579497 +g1,592:10840804,10579497 +g1,592:15995866,10579497 +g1,592:16854387,10579497 +g1,592:18072701,10579497 +k1,593:32583029,10579497:12163484 +g1,593:32583029,10579497 +) +(1,595:6630773,11444577:25952256,513147,134348 +h1,594:6630773,11444577:983040,0,0 +k1,594:9985561,11444577:174981 +k1,594:12148904,11444577:174981 +k1,594:14006850,11444577:174981 +k1,594:15200916,11444577:174981 +k1,594:16663024,11444577:174981 +k1,594:17497297,11444577:174981 +k1,594:22407910,11444577:174981 +k1,594:23198929,11444577:174981 +k1,594:26223415,11444577:174981 +k1,594:29278048,11444577:174981 +k1,594:32583029,11444577:0 +) +(1,595:6630773,12309657:25952256,505283,126483 +k1,594:9870456,12309657:149660 +k1,594:10706279,12309657:149661 +k1,594:11211799,12309657:149660 +k1,594:15959465,12309657:149660 +k1,594:17865489,12309657:149660 +k1,594:19116155,12309657:149661 +k1,594:20775765,12309657:149660 +k1,594:23351568,12309657:149660 +k1,594:26630572,12309657:149660 +k1,594:27971678,12309657:149661 +k1,594:30912516,12309657:149660 +k1,595:32583029,12309657:0 +) +(1,595:6630773,13174737:25952256,513147,134348 +k1,594:8309008,13174737:133551 +k1,594:10417552,13174737:133944 +k1,594:11822502,13174737:133552 +k1,594:12615345,13174737:133551 +k1,594:13767981,13174737:133551 +k1,594:16908325,13174737:133552 +k1,594:18764162,13174737:133551 +k1,594:20595752,13174737:133552 +k1,594:24234168,13174737:133551 +k1,594:25019147,13174737:133551 +k1,594:28408528,13174737:133552 +k1,594:31391584,13174737:133551 +k1,594:32583029,13174737:0 +) +(1,595:6630773,14039817:25952256,505283,134348 +k1,594:9638577,14039817:144536 +k1,594:12258409,14039817:144537 +k1,594:12934442,14039817:144536 +k1,594:16977716,14039817:144537 +k1,594:18141337,14039817:144536 +k1,594:19675237,14039817:144537 +k1,594:22548037,14039817:144536 +k1,594:24286410,14039817:144537 +k1,594:27503929,14039817:144536 +k1,594:29534592,14039817:144537 +k1,594:30810935,14039817:144536 +k1,595:32583029,14039817:0 +) +(1,595:6630773,14904897:25952256,513147,134348 +k1,594:8057098,14904897:158859 +k1,594:10134852,14904897:158860 +k1,594:14779650,14904897:158859 +k1,594:15470006,14904897:158859 +k1,594:19011833,14904897:158859 +k1,594:20738314,14904897:158860 +k1,594:23746678,14904897:158859 +k1,594:26611519,14904897:158859 +k1,594:27421807,14904897:158860 +k1,594:30224388,14904897:158859 +k1,594:32583029,14904897:0 +) +(1,595:6630773,15769977:25952256,513147,126483 +k1,594:7449827,15769977:203016 +k1,594:11352350,15769977:203016 +k1,594:15302059,15769977:203016 +k1,594:18594442,15769977:203016 +k1,594:20996845,15769977:203015 +k1,594:23487723,15769977:203016 +k1,594:24882184,15769977:203016 +k1,594:27175143,15769977:203016 +k1,594:28569604,15769977:203016 +k1,595:32583029,15769977:0 +) +(1,595:6630773,16635057:25952256,505283,134348 +k1,594:7625500,16635057:176838 +k1,594:9990585,16635057:176838 +k1,594:14334857,16635057:176838 +k1,594:16249710,16635057:176838 +k1,594:17735302,16635057:176838 +k1,594:18563568,16635057:176838 +k1,594:21996235,16635057:176838 +k1,594:22528933,16635057:176838 +k1,594:24095134,16635057:176838 +k1,594:26826565,16635057:176838 +k1,594:29733633,16635057:176838 +k1,594:30929556,16635057:176838 +k1,594:32583029,16635057:0 +) +(1,595:6630773,17500137:25952256,513147,134348 +k1,594:10632402,17500137:233964 +k1,594:12433986,17500137:233963 +k1,594:13687035,17500137:233964 +k1,594:15574471,17500137:233963 +k1,594:17197798,17500137:233964 +k1,594:17963258,17500137:233963 +k1,594:20503434,17500137:233964 +k1,594:22505558,17500137:233963 +k1,594:23510225,17500137:233964 +k1,594:28080050,17500137:233963 +k1,594:31923737,17500137:233964 +k1,594:32583029,17500137:0 +) +(1,595:6630773,18365217:25952256,513147,126483 +k1,594:7822571,18365217:172713 +k1,594:9680869,18365217:172712 +k1,594:11621088,18365217:172713 +k1,594:12741451,18365217:172712 +k1,594:13684867,18365217:172713 +k1,594:16412172,18365217:172712 +k1,594:17116382,18365217:172713 +k1,594:17644954,18365217:172712 +k1,594:21922187,18365217:172713 +k1,594:25300920,18365217:172712 +k1,594:27075333,18365217:172713 +k1,594:30910197,18365217:172712 +k1,594:31734338,18365217:172713 +k1,595:32583029,18365217:0 +) +(1,595:6630773,19230297:25952256,505283,134348 +k1,594:10211988,19230297:154337 +k1,594:11755688,19230297:154337 +k1,594:14464618,19230297:154337 +k1,594:15610515,19230297:154337 +k1,594:17619522,19230297:154338 +k1,594:18583229,19230297:154337 +k1,594:22382678,19230297:154337 +k1,594:24533242,19230297:154337 +k1,594:28082999,19230297:154337 +k1,594:29428781,19230297:154337 +k1,594:32583029,19230297:0 +) +(1,595:6630773,20095377:25952256,513147,126483 +g1,594:7516164,20095377 +g1,594:9037254,20095377 +g1,594:9895775,20095377 +g1,594:11114089,20095377 +g1,594:13483215,20095377 +g1,594:14448560,20095377 +g1,594:15666874,20095377 +g1,594:18942363,20095377 +g1,594:22631384,20095377 +k1,595:32583029,20095377:8264748 +g1,595:32583029,20095377 +) +(1,597:6630773,20960457:25952256,513147,126483 +h1,596:6630773,20960457:983040,0,0 +k1,596:8296291,20960457:194890 +k1,596:10841961,20960457:194894 +k1,596:13109759,20960457:194894 +k1,596:13963946,20960457:194895 +k1,596:15707456,20960457:194894 +k1,596:19392142,20960457:194894 +k1,596:21062251,20960457:194894 +k1,596:22767096,20960457:194895 +k1,596:24080034,20960457:194894 +k1,596:25084298,20960457:194894 +k1,596:27164663,20960457:194894 +k1,596:28748921,20960457:194895 +k1,596:29475312,20960457:194894 +k1,596:32583029,20960457:0 +) +(1,597:6630773,21825537:25952256,513147,134348 +k1,596:9369999,21825537:255411 +k1,596:10276839,21825537:255412 +k1,596:12040233,21825537:255411 +k1,596:13993683,21825537:255412 +k1,596:16515984,21825537:255411 +k1,596:20261188,21825537:255412 +k1,596:23075125,21825537:255411 +k1,596:25457836,21825537:255412 +k1,596:26904692,21825537:255411 +k1,596:29873950,21825537:255412 +k1,596:31966991,21825537:255411 +k1,596:32583029,21825537:0 +) +(1,597:6630773,22690617:25952256,513147,134348 +k1,596:7242677,22690617:256044 +k1,596:10448496,22690617:256044 +k1,596:12085384,22690617:256044 +k1,596:15151612,22690617:256044 +k1,596:16090541,22690617:256044 +k1,596:17108113,22690617:256044 +k1,596:21291075,22690617:256045 +k1,596:23576114,22690617:256044 +k1,596:27321950,22690617:256044 +k1,596:28264156,22690617:256044 +k1,596:29746379,22690617:256044 +k1,596:30615185,22690617:256044 +k1,596:31227089,22690617:256044 +k1,597:32583029,22690617:0 +) +(1,597:6630773,23555697:25952256,505283,134348 +k1,596:8304312,23555697:222572 +k1,596:10017173,23555697:222572 +k1,596:12826451,23555697:222572 +k1,596:16975940,23555697:222572 +k1,596:17811274,23555697:222572 +k1,596:19052931,23555697:222572 +k1,596:19690322,23555697:222548 +k1,596:22333139,23555697:222572 +k1,596:24291104,23555697:222572 +k1,596:26023626,23555697:222572 +k1,596:27437643,23555697:222572 +k1,596:29371360,23555697:222572 +k1,596:30245360,23555697:222572 +k1,596:32583029,23555697:0 +) +(1,597:6630773,24420777:25952256,505283,126483 +k1,596:10351205,24420777:230640 +k1,596:11773290,24420777:230640 +k1,596:14177104,24420777:230640 +k1,596:15023781,24420777:230639 +k1,596:15610281,24420777:230640 +k1,596:17837148,24420777:230640 +k1,596:19874616,24420777:230640 +k1,596:20721294,24420777:230640 +k1,596:21307794,24420777:230640 +k1,596:23163072,24420777:230640 +k1,596:26521744,24420777:230639 +k1,596:27283881,24420777:230640 +k1,596:29121464,24420777:230640 +k1,596:31391584,24420777:230640 +k1,596:32583029,24420777:0 +) +(1,597:6630773,25285857:25952256,513147,134348 +g1,596:9988837,25285857 +g1,596:11384753,25285857 +g1,596:12676467,25285857 +g1,596:14067141,25285857 +g1,596:17207626,25285857 +g1,596:18074011,25285857 +g1,596:18688083,25285857 +g1,596:21048689,25285857 +g1,596:24210145,25285857 +g1,596:25612615,25285857 +k1,597:32583029,25285857:3951826 +g1,597:32583029,25285857 +) +(1,599:6630773,26150937:25952256,513147,126483 +h1,598:6630773,26150937:983040,0,0 +k1,598:10821727,26150937:273212 +k1,598:11450799,26150937:273212 +k1,598:13999422,26150937:273213 +k1,598:18203483,26150937:273212 +k1,598:19128123,26150937:273212 +k1,598:21758665,26150937:273212 +k1,598:26767510,26150937:273213 +k1,598:27572219,26150937:273212 +k1,598:28864516,26150937:273212 +k1,598:32583029,26150937:0 +) +(1,599:6630773,27016017:25952256,505283,134348 +k1,598:9490002,27016017:224026 +k1,598:10733112,27016017:224025 +k1,598:12768553,27016017:224026 +k1,598:14184024,27016017:224026 +k1,598:17172358,27016017:224025 +k1,598:19555140,27016017:224026 +k1,598:20970611,27016017:224026 +k1,598:22213721,27016017:224025 +k1,598:22852565,27016017:224001 +k1,598:26566383,27016017:224026 +k1,598:29554717,27016017:224025 +k1,598:30464905,27016017:224026 +k1,598:32583029,27016017:0 +) +(1,599:6630773,27881097:25952256,505283,134348 +k1,598:8356118,27881097:215395 +k1,598:10084739,27881097:215395 +k1,598:10951562,27881097:215395 +k1,598:13787086,27881097:215395 +k1,598:15815207,27881097:215395 +k1,598:17842017,27881097:215395 +k1,598:21326347,27881097:215394 +k1,598:23239780,27881097:215395 +k1,598:25190568,27881097:215395 +k1,598:27741011,27881097:215395 +k1,598:29337250,27881097:215395 +k1,598:31812326,27881097:215395 +k1,598:32583029,27881097:0 +) +(1,599:6630773,28746177:25952256,505283,134348 +k1,598:10577113,28746177:260595 +k1,598:12192993,28746177:260595 +k1,598:15088791,28746177:260595 +k1,598:16738749,28746177:260595 +k1,598:19553937,28746177:260595 +k1,598:21005976,28746177:260594 +k1,598:24426717,28746177:260595 +k1,598:25516342,28746177:260595 +k1,598:27411405,28746177:260595 +k1,598:28875241,28746177:260595 +k1,598:31812326,28746177:260595 +k1,598:32583029,28746177:0 +) +(1,599:6630773,29611257:25952256,505283,134348 +k1,598:9830062,29611257:214779 +k1,598:10696270,29611257:214780 +k1,598:12300412,29611257:214779 +k1,598:15069784,29611257:214779 +k1,598:17909280,29611257:214779 +k1,598:18740098,29611257:214780 +k1,598:20503493,29611257:214779 +k1,598:21249769,29611257:214779 +k1,598:23332324,29611257:214779 +k1,598:25776639,29611257:214780 +k1,598:30410510,29611257:214779 +k1,598:32583029,29611257:0 +) +(1,599:6630773,30476337:25952256,513147,134348 +k1,598:8782262,30476337:176889 +k1,598:10166257,30476337:176822 +k1,598:13777821,30476337:176822 +k1,598:16477779,30476337:176822 +k1,598:17425304,30476337:176822 +k1,598:20709843,30476337:176822 +k1,598:24092030,30476337:176821 +k1,598:26099928,30476337:176822 +k1,598:27561256,30476337:176822 +k1,598:30688509,30476337:176822 +k1,598:31221191,30476337:176822 +k1,599:32583029,30476337:0 +) +(1,599:6630773,31341417:25952256,513147,126483 +k1,598:9053031,31341417:194689 +k1,598:10760946,31341417:194689 +k1,598:11607062,31341417:194688 +k1,598:13797978,31341417:194689 +k1,598:15011752,31341417:194689 +k1,598:17934705,31341417:194689 +k1,598:19413900,31341417:194689 +k1,598:22276560,31341417:194689 +k1,598:23490333,31341417:194688 +k1,598:24099861,31341417:194685 +k1,598:25790737,31341417:194689 +k1,598:27498651,31341417:194688 +k1,598:28640991,31341417:194689 +k1,598:29854765,31341417:194689 +k1,598:32583029,31341417:0 +) +(1,599:6630773,32206497:25952256,513147,134348 +k1,598:7874848,32206497:224990 +k1,598:10273012,32206497:224990 +k1,598:11157294,32206497:224990 +k1,598:13905420,32206497:224990 +k1,598:15333651,32206497:224990 +k1,598:17054828,32206497:224990 +k1,598:18471262,32206497:224989 +k1,598:19828059,32206497:224990 +k1,598:23818748,32206497:224990 +k1,598:25269917,32206497:224990 +k1,598:27793255,32206497:224990 +k1,598:28669673,32206497:224990 +k1,598:31563944,32206497:224990 +k1,598:32583029,32206497:0 +) +(1,599:6630773,33071577:25952256,513147,134348 +g1,598:11013820,33071577 +g1,598:12726275,33071577 +g1,598:14116949,33071577 +g1,598:17138158,33071577 +g1,598:18356472,33071577 +g1,598:20728875,33071577 +g1,598:21587396,33071577 +g1,598:22805710,33071577 +k1,599:32583029,33071577:7049055 +g1,599:32583029,33071577 +) +(1,601:6630773,33936657:25952256,513147,134348 +h1,600:6630773,33936657:983040,0,0 +k1,600:10827282,33936657:250586 +k1,600:11433727,33936657:250585 +k1,600:13930232,33936657:250586 +k1,600:16599752,33936657:250586 +k1,600:17509630,33936657:250586 +k1,600:21023253,33936657:250585 +k1,600:22767405,33936657:250586 +k1,600:25344519,33936657:250586 +k1,600:26989056,33936657:250586 +k1,600:27828154,33936657:250585 +k1,600:29946516,33936657:250586 +k1,600:32583029,33936657:0 +) +(1,601:6630773,34801737:25952256,513147,126483 +k1,600:8980649,34801737:150488 +k1,600:11105883,34801737:150634 +k1,600:12357376,34801737:150488 +k1,600:14017815,34801737:150489 +k1,600:16952272,34801737:150488 +k1,600:18050411,34801737:150488 +k1,600:18556759,34801737:150488 +k1,600:20823405,34801737:150488 +k1,600:23703468,34801737:150488 +k1,600:24312053,34801737:150488 +k1,600:25669715,34801737:150489 +k1,600:27771865,34801737:150488 +k1,600:30174825,34801737:150488 +k1,600:31516758,34801737:150488 +k1,600:32583029,34801737:0 +) +(1,601:6630773,35666817:25952256,513147,134348 +k1,600:10124649,35666817:199381 +k1,600:11085557,35666817:199380 +k1,600:12055641,35666817:199381 +k1,600:13515935,35666817:199381 +k1,600:16073956,35666817:199380 +k1,600:17061735,35666817:199381 +k1,600:18353601,35666817:199381 +k1,600:20504644,35666817:199381 +k1,600:23243544,35666817:199380 +k1,600:25977858,35666817:199381 +k1,600:28016178,35666817:199381 +k1,600:29401760,35666817:199380 +k1,600:31402070,35666817:199381 +k1,601:32583029,35666817:0 +) +(1,601:6630773,36531897:25952256,505283,134348 +k1,600:8154961,36531897:216745 +k1,600:11632778,36531897:216746 +k1,600:12868608,36531897:216745 +k1,600:16069863,36531897:216745 +k1,600:17478053,36531897:216745 +k1,600:20375222,36531897:216746 +k1,600:21985918,36531897:216745 +k1,600:22991061,36531897:216745 +k1,600:26713982,36531897:216745 +k1,600:28198194,36531897:216746 +k1,600:30839116,36531897:216745 +k1,600:32583029,36531897:0 +) +(1,601:6630773,37396977:25952256,513147,126483 +k1,600:7908221,37396977:258363 +k1,600:9259069,37396977:258363 +k1,600:10176724,37396977:258363 +k1,600:11638328,37396977:258363 +k1,600:13282777,37396977:258363 +k1,600:14200432,37396977:258363 +k1,600:16785323,37396977:258363 +k1,600:18826921,37396977:258363 +k1,600:21129352,37396977:258363 +k1,600:22760694,37396977:258363 +k1,600:27283485,37396977:258363 +k1,600:30042047,37396977:258363 +k1,600:32168186,37396977:258363 +k1,601:32583029,37396977:0 +) +(1,601:6630773,38262057:25952256,513147,126483 +k1,600:10111012,38262057:173948 +k1,600:13490325,38262057:173947 +k1,600:14350435,38262057:173948 +k1,600:16392788,38262057:173922 +k1,600:17880078,38262057:173948 +k1,600:19158307,38262057:173947 +k1,600:20080021,38262057:173948 +k1,600:22604090,38262057:173948 +k1,600:25192383,38262057:173947 +k1,600:26933952,38262057:173948 +k1,600:29832887,38262057:173948 +k1,600:30421652,38262057:173922 +k1,600:32583029,38262057:0 +) +(1,601:6630773,39127137:25952256,513147,134348 +k1,600:10284056,39127137:291286 +k1,600:11384712,39127137:291286 +k1,600:14217484,39127137:291286 +k1,600:18109973,39127137:291286 +k1,600:21804544,39127137:291286 +k1,600:23087390,39127137:291286 +k1,600:25247014,39127137:291193 +k1,600:26851642,39127137:291286 +k1,600:28427434,39127137:291286 +k1,600:30379402,39127137:291286 +k1,600:31356850,39127137:291286 +k1,600:32583029,39127137:0 +) +(1,601:6630773,39992217:25952256,505283,126483 +k1,600:7836253,39992217:186395 +k1,600:9518835,39992217:186395 +k1,600:11218456,39992217:186395 +k1,600:15398616,39992217:186396 +k1,600:16978962,39992217:186395 +k1,600:18184442,39992217:186395 +k1,600:20717681,39992217:186395 +k1,600:22095521,39992217:186395 +k1,600:23386198,39992217:186395 +k1,600:25944342,39992217:186396 +k1,600:29455378,39992217:186395 +k1,600:30660858,39992217:186395 +k1,600:32583029,39992217:0 +) +(1,601:6630773,40857297:25952256,505283,134348 +g1,600:8938951,40857297 +g1,600:10969256,40857297 +g1,600:12681711,40857297 +g1,600:13532368,40857297 +g1,600:16463793,40857297 +k1,601:32583029,40857297:14306510 +g1,601:32583029,40857297 +) +(1,603:6630773,41722377:25952256,513147,134348 +h1,602:6630773,41722377:983040,0,0 +k1,602:10314492,41722377:165746 +k1,602:12319178,41722377:165747 +k1,602:15341638,41722377:165746 +k1,602:16526470,41722377:165747 +k1,602:18949931,41722377:165746 +k1,602:19774970,41722377:165747 +k1,602:22267244,41722377:165746 +k1,602:23826942,41722377:165747 +k1,602:25011773,41722377:165746 +k1,602:27379530,41722377:165747 +k1,602:31607853,41722377:165746 +k1,603:32583029,41722377:0 +) +(1,603:6630773,42587457:25952256,513147,173670 +k1,602:8774011,42587457:226310 +k1,602:10735713,42587457:226309 +k1,602:12818003,42587457:226310 +k1,602:16347328,42587457:226310 +k1,602:17256522,42587457:226309 +[1,602:17385628,42587457:341312,473825,0 +(1,602:17385628,42449438:341312,335806,0 +) +] +(1,602:17953894,42761127:370934,473825,0 +) +k1,602:19585952,42587457:226310 +k1,602:22304596,42587457:226310 +k1,602:23478556,42587457:226309 +k1,602:28571570,42587457:226310 +k1,602:32583029,42587457:0 +) +(1,603:6630773,43452537:25952256,538806,141067 +k1,602:8824305,43452537:418817 +k1,602:12546137,43452537:418817 +$1,602:12753231,43452537 +k1,602:14827941,43452537:0 +k1,602:15242883,43452537:0 +k1,602:15657825,43452537:0 +k1,602:16072767,43452537:0 +k1,602:21881955,43452537:0 +k1,602:22296897,43452537:0 +k1,602:23541723,43452537:0 +k1,602:23956665,43452537:0 +k1,602:27276201,43452537:0 +k1,602:27691143,43452537:0 +$1,602:31425621,43452537 +k1,602:32051532,43452537:418817 +k1,602:32583029,43452537:0 +) +(1,603:6630773,44317617:25952256,505283,173670 +k1,602:7641714,44317617:240238 +k1,602:9276558,44317617:240238 +k1,602:10168225,44317617:240239 +k1,602:12019993,44317617:240238 +k1,602:13451676,44317617:240238 +k1,602:14784399,44317617:240238 +k1,602:16250816,44317617:240238 +k1,602:18983388,44317617:240238 +k1,602:22381807,44317617:240239 +[1,602:22510913,44317617:341312,473825,0 +(1,602:22510913,44179598:341312,335806,0 +) +] +(1,602:23079179,44491287:370934,473825,0 +) +k1,602:28907017,44317617:240238 +k1,602:29678752,44317617:240238 +k1,602:31773659,44317617:240238 +k1,602:32583029,44317617:0 +) +(1,603:6630773,45182697:25952256,513147,173670 +(1,602:6956027,45356367:370934,473825,0 +) +k1,602:10623009,45182697:235517 +k1,602:11877610,45182697:235516 +k1,602:13714827,45182697:235517 +k1,602:16807057,45182697:235516 +k1,602:20610354,45182697:235517 +k1,602:22945645,45182697:235517 +k1,602:24995198,45182697:235516 +k1,602:28188355,45182697:235517 +k1,602:30256258,45182697:235516 +k1,602:31483335,45182697:235517 +k1,603:32583029,45182697:0 +) +] +(1,603:32583029,45706769:0,0,0 +g1,603:32583029,45706769 +) +) +] +(1,603:6630773,47279633:25952256,0,0 +h1,603:6630773,47279633:25952256,0,0 +) +] +(1,603:4262630,4025873:0,0,0 +[1,603:-473656,4025873:0,0,0 +(1,603:-473656,-710413:0,0,0 +(1,603:-473656,-710413:0,0,0 +g1,603:-473656,-710413 +) +g1,603:-473656,-710413 +) +] +) +] +!23666 +}34 !11 -{28 -[1,493:4262630,47279633:28320399,43253760,0 -(1,493:4262630,4025873:0,0,0 -[1,493:-473656,4025873:0,0,0 -(1,493:-473656,-710413:0,0,0 -(1,493:-473656,-644877:0,0,0 -k1,493:-473656,-644877:-65536 +{35 +[1,616:4262630,47279633:28320399,43253760,0 +(1,616:4262630,4025873:0,0,0 +[1,616:-473656,4025873:0,0,0 +(1,616:-473656,-710413:0,0,0 +(1,616:-473656,-644877:0,0,0 +k1,616:-473656,-644877:-65536 ) -(1,493:-473656,4736287:0,0,0 -k1,493:-473656,4736287:5209943 +(1,616:-473656,4736287:0,0,0 +k1,616:-473656,4736287:5209943 ) -g1,493:-473656,-710413 +g1,616:-473656,-710413 ) ] ) -[1,493:6630773,47279633:25952256,43253760,0 -[1,493:6630773,4812305:25952256,786432,0 -(1,493:6630773,4812305:25952256,485622,134348 -(1,493:6630773,4812305:25952256,485622,134348 -g1,493:3078558,4812305 -[1,493:3078558,4812305:0,0,0 -(1,493:3078558,2439708:0,1703936,0 -k1,493:1358238,2439708:-1720320 -(1,417:1358238,2439708:1720320,1703936,0 -(1,417:1358238,2439708:1179648,16384,0 -r1,493:2537886,2439708:1179648,16384,0 +[1,616:6630773,47279633:25952256,43253760,0 +[1,616:6630773,4812305:25952256,786432,0 +(1,616:6630773,4812305:25952256,505283,134348 +(1,616:6630773,4812305:25952256,505283,134348 +g1,616:3078558,4812305 +[1,616:3078558,4812305:0,0,0 +(1,616:3078558,2439708:0,1703936,0 +k1,616:1358238,2439708:-1720320 +(1,412:1358238,2439708:1720320,1703936,0 +(1,412:1358238,2439708:1179648,16384,0 +r1,616:2537886,2439708:1179648,16384,0 ) -g1,417:3062174,2439708 -(1,417:3062174,2439708:16384,1703936,0 -[1,417:3062174,2439708:25952256,1703936,0 -(1,417:3062174,1915420:25952256,1179648,0 -(1,417:3062174,1915420:16384,1179648,0 -r1,493:3078558,1915420:16384,1179648,0 +g1,412:3062174,2439708 +(1,412:3062174,2439708:16384,1703936,0 +[1,412:3062174,2439708:25952256,1703936,0 +(1,412:3062174,1915420:25952256,1179648,0 +(1,412:3062174,1915420:16384,1179648,0 +r1,616:3078558,1915420:16384,1179648,0 ) -k1,417:29014430,1915420:25935872 -g1,417:29014430,1915420 +k1,412:29014430,1915420:25935872 +g1,412:29014430,1915420 ) ] ) ) ) ] -[1,493:3078558,4812305:0,0,0 -(1,493:3078558,2439708:0,1703936,0 -g1,493:29030814,2439708 -g1,493:36135244,2439708 -(1,417:36135244,2439708:1720320,1703936,0 -(1,417:36135244,2439708:16384,1703936,0 -[1,417:36135244,2439708:25952256,1703936,0 -(1,417:36135244,1915420:25952256,1179648,0 -(1,417:36135244,1915420:16384,1179648,0 -r1,493:36151628,1915420:16384,1179648,0 +[1,616:3078558,4812305:0,0,0 +(1,616:3078558,2439708:0,1703936,0 +g1,616:29030814,2439708 +g1,616:36135244,2439708 +(1,412:36135244,2439708:1720320,1703936,0 +(1,412:36135244,2439708:16384,1703936,0 +[1,412:36135244,2439708:25952256,1703936,0 +(1,412:36135244,1915420:25952256,1179648,0 +(1,412:36135244,1915420:16384,1179648,0 +r1,616:36151628,1915420:16384,1179648,0 ) -k1,417:62087500,1915420:25935872 -g1,417:62087500,1915420 +k1,412:62087500,1915420:25935872 +g1,412:62087500,1915420 ) ] ) -g1,417:36675916,2439708 -(1,417:36675916,2439708:1179648,16384,0 -r1,493:37855564,2439708:1179648,16384,0 +g1,412:36675916,2439708 +(1,412:36675916,2439708:1179648,16384,0 +r1,616:37855564,2439708:1179648,16384,0 ) ) -k1,493:3078556,2439708:-34777008 +k1,616:3078556,2439708:-34777008 ) ] -[1,493:3078558,4812305:0,0,0 -(1,493:3078558,49800853:0,16384,2228224 -k1,493:1358238,49800853:-1720320 -(1,417:1358238,49800853:1720320,16384,2228224 -(1,417:1358238,49800853:1179648,16384,0 -r1,493:2537886,49800853:1179648,16384,0 +[1,616:3078558,4812305:0,0,0 +(1,616:3078558,49800853:0,16384,2228224 +k1,616:1358238,49800853:-1720320 +(1,412:1358238,49800853:1720320,16384,2228224 +(1,412:1358238,49800853:1179648,16384,0 +r1,616:2537886,49800853:1179648,16384,0 +) +g1,412:3062174,49800853 +(1,412:3062174,52029077:16384,1703936,0 +[1,412:3062174,52029077:25952256,1703936,0 +(1,412:3062174,51504789:25952256,1179648,0 +(1,412:3062174,51504789:16384,1179648,0 +r1,616:3078558,51504789:16384,1179648,0 +) +k1,412:29014430,51504789:25935872 +g1,412:29014430,51504789 +) +] +) +) +) +] +[1,616:3078558,4812305:0,0,0 +(1,616:3078558,49800853:0,16384,2228224 +g1,616:29030814,49800853 +g1,616:36135244,49800853 +(1,412:36135244,49800853:1720320,16384,2228224 +(1,412:36135244,52029077:16384,1703936,0 +[1,412:36135244,52029077:25952256,1703936,0 +(1,412:36135244,51504789:25952256,1179648,0 +(1,412:36135244,51504789:16384,1179648,0 +r1,616:36151628,51504789:16384,1179648,0 +) +k1,412:62087500,51504789:25935872 +g1,412:62087500,51504789 +) +] +) +g1,412:36675916,49800853 +(1,412:36675916,49800853:1179648,16384,0 +r1,616:37855564,49800853:1179648,16384,0 +) +) +k1,616:3078556,49800853:-34777008 +) +] +g1,616:6630773,4812305 +k1,616:21916392,4812305:14488701 +g1,616:22703479,4812305 +g1,616:23888369,4812305 +g1,616:27214321,4812305 +g1,616:28624000,4812305 +g1,616:29808890,4812305 +) +) +] +[1,616:6630773,45706769:25952256,40108032,0 +(1,616:6630773,45706769:25952256,40108032,0 +(1,616:6630773,45706769:0,0,0 +g1,616:6630773,45706769 +) +[1,616:6630773,45706769:25952256,40108032,0 +(1,603:6630773,6254097:25952256,530548,134348 +k1,602:8782431,6254097:232108 +k1,602:11590104,6254097:232108 +k1,602:12489367,6254097:232107 +k1,602:16198160,6254097:232108 +k1,602:19410845,6254097:232108 +k1,602:20066924,6254097:241236 +k1,602:23649888,6254097:232108 +k1,602:25114073,6254097:232108 +$1,602:25114073,6254097 +k1,602:27188783,6254097:0 +k1,602:27603725,6254097:0 +k1,602:28018667,6254097:0 +k1,602:28433609,6254097:0 +k1,602:32168087,6254097:0 +k1,603:32583029,6254097:0 +) +(1,603:6630773,7119177:25952256,530548,132809 +k1,602:9535367,7119177:0 +k1,602:9950309,7119177:0 +$1,602:11610077,7119177 +k1,602:12036057,7119177:218886 +k1,602:13648894,7119177:218886 +k1,602:16061926,7119177:218887 +k1,602:18807225,7119177:218886 +k1,602:19973762,7119177:218886 +k1,602:20607471,7119177:218866 +k1,602:22496215,7119177:218887 +k1,602:24907936,7119177:218886 +k1,602:26358899,7119177:218886 +$1,602:26358899,7119177 +k1,602:28433609,7119177:0 +k1,602:28848551,7119177:0 +k1,602:29263493,7119177:0 +k1,602:29678435,7119177:0 +k1,602:32168087,7119177:0 +k1,603:32583029,7119177:0 +) +(1,603:6630773,7984257:25952256,530548,141067 +$1,602:8290541,7984257 +k1,602:8842055,7984257:344420 +k1,602:10393647,7984257:344419 +k1,602:13292660,7984257:344420 +k1,602:16279492,7984257:344420 +k1,602:17310073,7984257:344419 +k1,602:18425196,7984257:344420 +k1,602:23037321,7984257:344420 +k1,602:24048896,7984257:344419 +k1,602:24821605,7984257:357866 +k1,602:28516880,7984257:344419 +k1,602:30093377,7984257:344420 +$1,602:30093377,7984257 +k1,602:32168087,7984257:0 +k1,603:32583029,7984257:0 +) +(1,603:6630773,8849337:25952256,530548,134348 +k1,602:7045715,8849337:0 +k1,602:7460657,8849337:0 +k1,602:11195135,8849337:0 +k1,602:11610077,8849337:0 +k1,602:14514671,8849337:0 +k1,602:14929613,8849337:0 +$1,602:16589381,8849337 +k1,602:17165701,8849337:195556 +k1,602:20633470,8849337:195556 +k1,602:24396805,8849337:195555 +k1,602:25783806,8849337:195556 +k1,602:28123045,8849337:195556 +k1,602:29510046,8849337:195556 +k1,602:32583029,8849337:0 +) +(1,603:6630773,9714417:25952256,513147,134348 +k1,602:7178502,9714417:191869 +k1,602:9243390,9714417:191869 +k1,602:11681179,9714417:191870 +k1,602:14291982,9714417:191869 +k1,602:15143143,9714417:191869 +k1,602:18710116,9714417:191869 +k1,602:19257846,9714417:191870 +k1,602:21309627,9714417:191869 +k1,602:24332651,9714417:191869 +k1,602:25183812,9714417:191869 +k1,602:28038410,9714417:191870 +k1,602:30013514,9714417:191869 +k1,602:31718609,9714417:191869 +k1,603:32583029,9714417:0 +) +(1,603:6630773,10579497:25952256,513147,134348 +k1,602:8880577,10579497:220809 +k1,602:10495338,10579497:220810 +k1,602:11304660,10579497:220809 +k1,602:13718305,10579497:220810 +k1,602:15658779,10579497:220809 +k1,602:16688959,10579497:220810 +k1,602:19489920,10579497:220809 +k1,602:21549668,10579497:220809 +k1,602:22718129,10579497:220810 +k1,602:23958023,10579497:220809 +k1,602:25279838,10579497:220810 +k1,602:26855932,10579497:220809 +k1,602:27692780,10579497:220810 +k1,602:28932674,10579497:220809 +k1,602:32583029,10579497:0 +) +(1,603:6630773,11444577:25952256,505283,126483 +g1,602:7554830,11444577 +g1,602:8370097,11444577 +g1,602:8925186,11444577 +g1,602:10791651,11444577 +g1,602:12761007,11444577 +g1,602:15153071,11444577 +g1,602:16845210,11444577 +g1,602:18110710,11444577 +g1,602:20608287,11444577 +k1,603:32583029,11444577:11342975 +g1,603:32583029,11444577 +) +(1,605:6630773,12309657:25952256,513147,134348 +h1,604:6630773,12309657:983040,0,0 +k1,604:10420541,12309657:278349 +k1,604:11358182,12309657:278349 +k1,604:12655617,12309657:278350 +k1,604:16390990,12309657:278349 +k1,604:17328631,12309657:278349 +k1,604:19303707,12309657:278349 +k1,604:23244208,12309657:278349 +k1,604:24173986,12309657:278350 +k1,604:25471420,12309657:278349 +k1,604:29145189,12309657:278349 +k1,604:30082830,12309657:278349 +k1,604:32583029,12309657:0 +) +(1,605:6630773,13174737:25952256,513147,134348 +k1,604:7865890,13174737:216032 +k1,604:8496748,13174737:216015 +k1,604:11555076,13174737:216032 +k1,604:12302605,13174737:216032 +k1,604:15657157,13174737:216033 +k1,604:17850410,13174737:216032 +k1,604:19764480,13174737:216032 +k1,604:24716144,13174737:216032 +k1,604:25463673,13174737:216032 +k1,604:29062673,13174737:216032 +k1,604:30744090,13174737:216032 +k1,604:32583029,13174737:0 +) +(1,605:6630773,14039817:25952256,513147,134348 +k1,604:8072112,14039817:249894 +k1,604:10514840,14039817:249893 +k1,604:11756294,14039817:249894 +k1,604:14862901,14039817:249893 +k1,604:16304240,14039817:249894 +k1,604:18855103,14039817:249894 +k1,604:21465603,14039817:249893 +k1,604:22366925,14039817:249894 +k1,604:24231626,14039817:249894 +k1,604:26364368,14039817:249893 +k1,604:28700273,14039817:249894 +k1,604:30443732,14039817:249893 +k1,604:31379788,14039817:249894 +k1,604:32583029,14039817:0 +) +(1,605:6630773,14904897:25952256,505283,173670 +k1,604:8180870,14904897:196123 +k1,604:9959032,14904897:196123 +k1,604:11325627,14904897:196122 +k1,604:12513310,14904897:196123 +k1,604:14039814,14904897:196123 +k1,604:16812157,14904897:196123 +k1,604:20049151,14904897:196123 +k1,604:21639224,14904897:196122 +k1,604:22423860,14904897:196123 +k1,604:24458922,14904897:196123 +k1,604:25846490,14904897:196123 +[1,604:25975596,14904897:341312,473825,0 +(1,604:25975596,14766878:341312,335806,0 +) +] +(1,604:26543862,15078567:370934,473825,0 +) +k1,604:27633241,14904897:196123 +k1,604:28727206,14904897:196122 +k1,604:30751783,14904897:196123 +k1,604:31563944,14904897:196123 +k1,604:32583029,14904897:0 +) +(1,605:6630773,15769977:25952256,505283,134348 +k1,604:8453988,15769977:241176 +k1,604:9686724,15769977:241176 +k1,604:13080837,15769977:241176 +k1,604:15910029,15769977:241175 +k1,604:16917321,15769977:241176 +k1,604:18766095,15769977:241176 +k1,604:20198716,15769977:241176 +k1,604:22141862,15769977:241176 +k1,604:22797838,15769977:241133 +k1,604:25197770,15769977:241176 +k1,604:28197356,15769977:241176 +k1,604:29430092,15769977:241176 +k1,604:32583029,15769977:0 +) +(1,605:6630773,16635057:25952256,505283,134348 +k1,604:7661059,16635057:268758 +k1,604:8344590,16635057:268688 +k1,604:9804793,16635057:268758 +k1,604:12831961,16635057:268758 +k1,604:17417576,16635057:268758 +k1,604:18302372,16635057:268758 +k1,604:19590215,16635057:268758 +k1,604:22179602,16635057:268757 +k1,604:24955767,16635057:268758 +k1,604:26122368,16635057:268758 +k1,604:29337625,16635057:268758 +k1,604:30597943,16635057:268758 +k1,605:32583029,16635057:0 +) +(1,605:6630773,17500137:25952256,513147,173670 +k1,604:8203430,17500137:191813 +k1,604:9156772,17500137:191814 +[1,604:9285878,17500137:341312,473825,0 +(1,604:9285878,17362118:341312,335806,0 +) +] +(1,604:9854144,17673807:370934,473825,0 +) +k1,604:12879734,17500137:191813 +k1,604:14090633,17500137:191814 +k1,604:17850226,17500137:191813 +k1,604:19570994,17500137:191813 +k1,604:20959495,17500137:191814 +k1,604:22526909,17500137:191813 +k1,604:25800225,17500137:191813 +k1,604:26983599,17500137:191814 +k1,604:28194497,17500137:191813 +k1,604:30571937,17500137:191814 +k1,604:31379788,17500137:191813 +k1,604:32583029,17500137:0 +) +(1,605:6630773,18365217:25952256,513147,126483 +k1,604:9300437,18365217:252041 +k1,604:10836983,18365217:252040 +k1,604:12564239,18365217:252041 +k1,604:14326229,18365217:252040 +k1,604:17511006,18365217:252041 +k1,604:20601410,18365217:252040 +k1,604:22421072,18365217:252041 +k1,604:23692197,18365217:252040 +k1,604:27020498,18365217:252041 +k1,604:29507971,18365217:252040 +k1,604:31142166,18365217:252041 +k1,604:32370037,18365217:252040 +k1,604:32583029,18365217:0 +) +(1,605:6630773,19230297:25952256,513147,134348 +k1,604:8602229,19230297:236063 +k1,604:10041533,19230297:236063 +k1,604:13589130,19230297:236063 +k1,604:15261087,19230297:236063 +k1,604:18026840,19230297:236063 +k1,604:18475858,19230297:236026 +k1,604:20260537,19230297:236063 +k1,604:21148027,19230297:236062 +k1,604:23099823,19230297:236063 +k1,604:24716730,19230297:236063 +k1,604:26237299,19230297:236063 +k1,604:28174677,19230297:236063 +k1,604:29269262,19230297:236063 +k1,604:30164617,19230297:236063 +k1,604:31896867,19230297:236063 +k1,604:32583029,19230297:0 +) +(1,605:6630773,20095377:25952256,505283,126483 +k1,604:8009957,20095377:208711 +k1,604:9351130,20095377:208711 +k1,604:10584823,20095377:208710 +k1,604:13317325,20095377:208711 +k1,604:14974382,20095377:208711 +k1,604:17643315,20095377:208711 +k1,604:19632638,20095377:208710 +k1,604:20469184,20095377:208711 +k1,604:23517570,20095377:208711 +k1,604:23939263,20095377:208701 +k1,604:25696590,20095377:208711 +k1,604:26556729,20095377:208711 +k1,604:28481172,20095377:208710 +k1,604:30070727,20095377:208711 +k1,604:31563944,20095377:208711 +k1,604:32583029,20095377:0 +) +(1,605:6630773,20960457:25952256,513147,134348 +k1,604:9017971,20960457:228442 +k1,604:12309566,20960457:228442 +k1,604:14406438,20960457:228441 +k1,604:16336195,20960457:228442 +k1,604:17733144,20960457:228442 +k1,604:18644471,20960457:228442 +k1,604:20843581,20960457:228442 +k1,604:21739178,20960457:228441 +k1,604:22382434,20960457:228413 +k1,604:25453172,20960457:228442 +k1,604:27177801,20960457:228442 +k1,604:27937739,20960457:228441 +k1,604:30391128,20960457:228442 +k1,604:32168186,20960457:228442 +k1,605:32583029,20960457:0 +) +(1,605:6630773,21825537:25952256,513147,134348 +k1,604:9348387,21825537:202998 +k1,604:13745034,21825537:202998 +k1,604:14406129,21825537:202998 +k1,604:16330102,21825537:202998 +k1,604:16888960,21825537:202998 +k1,604:17948514,21825537:202998 +k1,604:18810803,21825537:202997 +k1,604:20610258,21825537:202998 +k1,604:21760907,21825537:202998 +k1,604:22931216,21825537:202998 +k1,604:23820376,21825537:202998 +k1,604:26322377,21825537:202998 +k1,604:27211537,21825537:202998 +k1,604:27627523,21825537:202994 +k1,604:28934803,21825537:202998 +k1,604:30366601,21825537:202998 +k1,605:32583029,21825537:0 +) +(1,605:6630773,22690617:25952256,513147,134348 +k1,604:7238504,22690617:192888 +k1,604:8622844,22690617:192895 +k1,604:9581855,22690617:192895 +k1,604:10793834,22690617:192894 +k1,604:13897183,22690617:192895 +k1,604:15603303,22690617:192894 +k1,604:16447626,22690617:192895 +k1,604:18149160,22690617:192895 +k1,604:20094487,22690617:192894 +k1,604:22794789,22690617:192895 +k1,604:24179129,22690617:192895 +k1,604:26014355,22690617:192894 +k1,604:27226335,22690617:192895 +k1,604:29001268,22690617:192894 +k1,604:31069803,22690617:192895 +k1,604:32583029,22690617:0 +) +(1,605:6630773,23555697:25952256,513147,134348 +k1,604:7980241,23555697:217661 +k1,604:10768880,23555697:217662 +k1,604:13284889,23555697:217661 +k1,604:14153978,23555697:217661 +k1,604:15879622,23555697:217661 +k1,604:16555381,23555697:217662 +k1,604:17608626,23555697:217661 +k1,604:18477715,23555697:217661 +k1,604:20076220,23555697:217661 +k1,604:21485327,23555697:217662 +k1,604:22950794,23555697:217661 +k1,604:23827747,23555697:217661 +k1,604:26156323,23555697:217661 +k1,604:27134203,23555697:217662 +k1,604:29087257,23555697:217661 +k1,604:31001645,23555697:217661 +k1,604:32583029,23555697:0 +) +(1,605:6630773,24420777:25952256,513147,126483 +k1,604:8066940,24420777:244722 +k1,604:10803996,24420777:244722 +k1,604:11664757,24420777:244723 +k1,604:13507247,24420777:244722 +k1,604:14978148,24420777:244722 +k1,604:16709882,24420777:244722 +k1,604:17973689,24420777:244722 +k1,604:20641277,24420777:244722 +k1,604:26259297,24420777:244723 +k1,604:29249322,24420777:244722 +k1,604:30685489,24420777:244722 +k1,604:31923737,24420777:244722 +k1,604:32583029,24420777:0 +) +(1,605:6630773,25285857:25952256,513147,134348 +g1,604:10139570,25285857 +g1,604:11330359,25285857 +g1,604:12295704,25285857 +g1,604:15647870,25285857 +k1,605:32583029,25285857:12444632 +g1,605:32583029,25285857 +) +(1,608:6630773,26150937:25952256,513147,134348 +h1,606:6630773,26150937:983040,0,0 +k1,606:10815600,26150937:238904 +k1,606:12073589,26150937:238904 +k1,606:13404978,26150937:238904 +k1,606:14303173,26150937:238903 +k1,606:16238804,26150937:238904 +k1,606:18059092,26150937:238904 +k1,606:18829493,26150937:238904 +k1,606:20422371,26150937:238904 +k1,606:24044243,26150937:238904 +k1,606:25663334,26150937:238903 +k1,606:26893798,26150937:238904 +k1,606:29498552,26150937:238904 +k1,606:30756541,26150937:238904 +k1,606:32583029,26150937:0 +) +(1,608:6630773,27016017:25952256,513147,102891 +k1,606:7486421,27016017:196356 +k1,606:8886018,27016017:196356 +k1,606:10664413,27016017:196356 +k1,606:12052213,27016017:196355 +k1,606:13527176,27016017:196356 +k1,606:16813555,27016017:196356 +k1,606:17625949,27016017:196356 +k1,606:19524275,27016017:196356 +k1,606:21632972,27016017:196356 +k1,606:24933767,27016017:196355 +k1,606:25781551,27016017:196356 +k1,606:27616962,27016017:196356 +k1,606:30815523,27016017:196356 +k1,606:32583029,27016017:0 +) +(1,608:6630773,27881097:25952256,513147,134348 +k1,606:7801630,27881097:191749 +k1,606:9968023,27881097:191793 +k1,606:11943007,27881097:191749 +k1,606:13870149,27881097:191749 +k1,606:14476733,27881097:191741 +k1,606:15284520,27881097:191749 +k1,606:16679510,27881097:191749 +k1,606:18282905,27881097:191749 +k1,606:18830514,27881097:191749 +k1,606:20606268,27881097:191749 +k1,606:23957507,27881097:191748 +k1,606:24816412,27881097:191749 +k1,606:25422997,27881097:191742 +k1,606:26300907,27881097:191748 +k1,606:26848516,27881097:191749 +k1,606:29882561,27881097:191749 +k1,606:31021961,27881097:191749 +k1,608:32583029,27881097:0 +) +(1,608:6630773,28746177:25952256,513147,126483 +g1,606:10437759,28746177 +g1,606:12030939,28746177 +g1,606:13696864,28746177 +g1,606:16446754,28746177 +g1,606:17837428,28746177 +g1,606:21443218,28746177 +g1,606:22173944,28746177 +g1,606:23727147,28746177 +g1,606:26077268,28746177 +k1,608:32583029,28746177:6505761 +g1,608:32583029,28746177 +) +(1,609:6630773,31577337:25952256,32768,229376 +(1,609:6630773,31577337:0,32768,229376 +(1,609:6630773,31577337:5505024,32768,229376 +r1,616:12135797,31577337:5505024,262144,229376 +) +k1,609:6630773,31577337:-5505024 +) +(1,609:6630773,31577337:25952256,32768,0 +r1,616:32583029,31577337:25952256,32768,0 +) +) +(1,609:6630773,33209189:25952256,606339,161218 +(1,609:6630773,33209189:1974731,582746,14155 +g1,609:6630773,33209189 +g1,609:8605504,33209189 +) +g1,609:11737863,33209189 +g1,609:14252873,33209189 +g1,609:15289391,33209189 +g1,609:16903150,33209189 +k1,609:32583029,33209189:15137241 +g1,609:32583029,33209189 +) +(1,612:6630773,34467485:25952256,505283,134348 +k1,611:7651471,34467485:202809 +k1,611:8873364,34467485:202808 +k1,611:10658212,34467485:202809 +k1,611:11392517,34467485:202808 +k1,611:14452040,34467485:202809 +k1,611:16048800,34467485:202809 +k1,611:17270693,34467485:202808 +k1,611:21167766,34467485:202809 +k1,611:22655081,34467485:202809 +k1,611:25236191,34467485:202808 +k1,611:26571462,34467485:202809 +k1,611:27892314,34467485:202808 +k1,611:29591310,34467485:202809 +k1,611:32583029,34467485:0 +) +(1,612:6630773,35332565:25952256,513147,134348 +k1,611:7567613,35332565:250678 +k1,611:8837377,35332565:250679 +k1,611:10500356,35332565:250678 +k1,611:11770119,35332565:250678 +k1,611:13420647,35332565:250679 +k1,611:14841798,35332565:250678 +k1,611:16567691,35332565:250678 +k1,611:17469798,35332565:250679 +k1,611:19863503,35332565:250678 +k1,611:22145143,35332565:250679 +k1,611:23047249,35332565:250678 +k1,611:24317012,35332565:250678 +k1,611:24982482,35332565:250627 +k1,611:27275917,35332565:250678 +k1,611:29929146,35332565:250679 +k1,611:31198909,35332565:250678 +k1,611:32583029,35332565:0 +) +(1,612:6630773,36197645:25952256,505283,126483 +k1,611:9438689,36197645:216622 +k1,611:10125203,36197645:216621 +k1,611:10873322,36197645:216622 +k1,611:12802399,36197645:216621 +k1,611:14303527,36197645:216622 +k1,611:15978979,36197645:216621 +k1,611:18442175,36197645:216622 +k1,611:21643306,36197645:216621 +k1,611:22542813,36197645:216622 +k1,611:25103657,36197645:216621 +k1,611:26421284,36197645:216622 +k1,611:28972297,36197645:216621 +k1,611:31680598,36197645:216622 +k1,612:32583029,36197645:0 +) +(1,612:6630773,37062725:25952256,513147,134348 +k1,611:8185141,37062725:212846 +k1,611:9049416,37062725:212847 +k1,611:9850775,37062725:212846 +k1,611:10541378,37062725:212846 +k1,611:11994166,37062725:212847 +k1,611:12889897,37062725:212846 +k1,611:13568704,37062725:212846 +k1,611:14952024,37062725:212847 +k1,611:16156430,37062725:212846 +k1,611:18771826,37062725:212846 +k1,611:20003758,37062725:212847 +k1,611:21798643,37062725:212846 +k1,611:22820859,37062725:212846 +k1,611:24492537,37062725:212847 +k1,611:26209434,37062725:212846 +k1,611:27592753,37062725:212846 +k1,611:29985983,37062725:212847 +k1,611:32168186,37062725:212846 +k1,612:32583029,37062725:0 +) +(1,612:6630773,37927805:25952256,513147,134348 +k1,611:7532348,37927805:218690 +k1,611:9812801,37927805:218690 +k1,611:12062452,37927805:218690 +k1,611:12932570,37927805:218690 +k1,611:13921963,37927805:218690 +k1,611:16331522,37927805:218690 +k1,611:18929169,37927805:218690 +k1,611:20939613,37927805:218690 +k1,611:23582480,37927805:218690 +k1,611:24484055,37927805:218690 +k1,611:27175418,37927805:218690 +k1,611:28481330,37927805:218670 +k1,611:29804302,37927805:218690 +k1,611:32583029,37927805:0 +) +(1,612:6630773,38792885:25952256,513147,134348 +k1,611:7875920,38792885:226062 +k1,611:9194467,38792885:226062 +k1,611:10087686,38792885:226063 +k1,611:10902261,38792885:226062 +k1,611:12200492,38792885:226062 +k1,611:13192670,38792885:226062 +k1,611:14437817,38792885:226062 +k1,611:16160066,38792885:226062 +k1,611:17002167,38792885:226063 +k1,611:18247314,38792885:226062 +k1,611:21691194,38792885:226062 +k1,611:24665181,38792885:226062 +k1,611:26937277,38792885:226062 +k1,611:28538940,38792885:226062 +k1,611:29857488,38792885:226063 +k1,611:30750706,38792885:226062 +k1,611:31391584,38792885:226035 +k1,611:32583029,38792885:0 +) +(1,612:6630773,39657965:25952256,505283,134348 +g1,611:9740456,39657965 +g1,611:12723654,39657965 +g1,611:15481409,39657965 +g1,611:17734536,39657965 +k1,612:32583029,39657965:11978671 +g1,612:32583029,39657965 +) +(1,614:6630773,40523045:25952256,505283,134348 +h1,613:6630773,40523045:983040,0,0 +k1,613:8057525,40523045:230720 +k1,613:9763493,40523045:230753 +k1,613:12280796,40523045:230752 +k1,613:13282251,40523045:230752 +k1,613:13927814,40523045:230720 +k1,613:16912389,40523045:230752 +k1,613:19301898,40523045:230753 +k1,613:23512650,40523045:230752 +k1,613:27105399,40523045:230752 +k1,613:29771469,40523045:230752 +k1,613:31391584,40523045:230752 +k1,613:32583029,40523045:0 +) +(1,614:6630773,41388125:25952256,513147,134348 +k1,613:12824198,41388125:183118 +k1,613:15321393,41388125:183119 +k1,613:16452162,41388125:183118 +k1,613:17401396,41388125:183118 +k1,613:19080702,41388125:183119 +k1,613:22255539,41388125:183118 +k1,613:23630102,41388125:183118 +k1,613:26704014,41388125:183119 +k1,613:27503170,41388125:183118 +k1,613:28705373,41388125:183118 +k1,613:30644202,41388125:183119 +k1,613:31297213,41388125:183118 +k1,613:32583029,41388125:0 +) +(1,614:6630773,42253205:25952256,505283,134348 +k1,613:9588974,42253205:256152 +k1,613:11341313,42253205:256152 +k1,613:12788910,42253205:256152 +k1,613:14434425,42253205:256152 +k1,613:15975083,42253205:256152 +k1,613:18277269,42253205:256152 +k1,613:18991518,42253205:256152 +k1,613:21118068,42253205:256152 +k1,613:22025648,42253205:256152 +k1,613:24046029,42253205:256152 +k1,613:25321266,42253205:256152 +k1,613:28487872,42253205:256152 +k1,613:30257250,42253205:256152 +k1,613:31129440,42253205:256152 +k1,613:32583029,42253205:0 +) +(1,614:6630773,43118285:25952256,505283,134348 +k1,613:9770638,43118285:218270 +k1,613:10789104,43118285:218271 +k1,613:12745389,43118285:218270 +k1,613:13495156,43118285:218270 +k1,613:17519756,43118285:218270 +k1,613:18929472,43118285:218271 +k1,613:19679239,43118285:218270 +k1,613:22681478,43118285:218270 +k1,613:25458274,43118285:218270 +k1,613:27730443,43118285:218271 +k1,613:28438113,43118285:224014 +k1,613:29218529,43118285:224015 +k1,613:30530441,43118285:224014 +k1,614:32583029,43118285:0 +) +(1,614:6630773,43983365:25952256,513147,134348 +k1,613:8337659,43983365:267715 +k1,613:9585136,43983365:267714 +k1,613:11114419,43983365:267715 +k1,613:12041425,43983365:267714 +k1,613:14339445,43983365:267715 +k1,613:15847100,43983365:267714 +k1,613:16821948,43983365:267715 +k1,613:18311254,43983365:267715 +k1,613:20337954,43983365:267714 +k1,613:23649161,43983365:267715 +k1,613:25455005,43983365:267714 +k1,613:28089880,43983365:267715 +h1,613:29662089,43983365:0,0,0 +k1,613:29929803,43983365:267714 +k1,613:31030481,43983365:267715 +k1,613:32583029,43983365:0 +) +(1,614:6630773,44848445:25952256,505283,134348 +h1,613:7855641,44848445:0,0,0 +g1,613:8233783,44848445 +g1,613:10482978,44848445 +g1,613:10916171,44848445 +g1,613:13533679,44848445 +g1,613:15147830,44848445 +g1,613:16011594,44848445 +g1,613:18246371,44848445 +g1,613:19671123,44848445 +g1,613:21015921,44848445 +g1,613:21672591,44848445 +g1,613:22329261,44848445 +k1,614:32583029,44848445:7036606 +g1,614:32583029,44848445 +) +] +(1,616:32583029,45706769:0,0,0 +g1,616:32583029,45706769 +) +) +] +(1,616:6630773,47279633:25952256,0,0 +h1,616:6630773,47279633:25952256,0,0 +) +] +(1,616:4262630,4025873:0,0,0 +[1,616:-473656,4025873:0,0,0 +(1,616:-473656,-710413:0,0,0 +(1,616:-473656,-710413:0,0,0 +g1,616:-473656,-710413 +) +g1,616:-473656,-710413 +) +] +) +] +!23772 +}35 +!11 +{36 +[1,646:4262630,47279633:28320399,43253760,0 +(1,646:4262630,4025873:0,0,0 +[1,646:-473656,4025873:0,0,0 +(1,646:-473656,-710413:0,0,0 +(1,646:-473656,-644877:0,0,0 +k1,646:-473656,-644877:-65536 ) -g1,417:3062174,49800853 -(1,417:3062174,52029077:16384,1703936,0 -[1,417:3062174,52029077:25952256,1703936,0 -(1,417:3062174,51504789:25952256,1179648,0 -(1,417:3062174,51504789:16384,1179648,0 -r1,493:3078558,51504789:16384,1179648,0 +(1,646:-473656,4736287:0,0,0 +k1,646:-473656,4736287:5209943 ) -k1,417:29014430,51504789:25935872 -g1,417:29014430,51504789 +g1,646:-473656,-710413 ) ] ) +[1,646:6630773,47279633:25952256,43253760,0 +[1,646:6630773,4812305:25952256,786432,0 +(1,646:6630773,4812305:25952256,505283,134348 +(1,646:6630773,4812305:25952256,505283,134348 +g1,646:3078558,4812305 +[1,646:3078558,4812305:0,0,0 +(1,646:3078558,2439708:0,1703936,0 +k1,646:1358238,2439708:-1720320 +(1,412:1358238,2439708:1720320,1703936,0 +(1,412:1358238,2439708:1179648,16384,0 +r1,646:2537886,2439708:1179648,16384,0 ) +g1,412:3062174,2439708 +(1,412:3062174,2439708:16384,1703936,0 +[1,412:3062174,2439708:25952256,1703936,0 +(1,412:3062174,1915420:25952256,1179648,0 +(1,412:3062174,1915420:16384,1179648,0 +r1,646:3078558,1915420:16384,1179648,0 ) -] -[1,493:3078558,4812305:0,0,0 -(1,493:3078558,49800853:0,16384,2228224 -g1,493:29030814,49800853 -g1,493:36135244,49800853 -(1,417:36135244,49800853:1720320,16384,2228224 -(1,417:36135244,52029077:16384,1703936,0 -[1,417:36135244,52029077:25952256,1703936,0 -(1,417:36135244,51504789:25952256,1179648,0 -(1,417:36135244,51504789:16384,1179648,0 -r1,493:36151628,51504789:16384,1179648,0 -) -k1,417:62087500,51504789:25935872 -g1,417:62087500,51504789 +k1,412:29014430,1915420:25935872 +g1,412:29014430,1915420 ) ] ) -g1,417:36675916,49800853 -(1,417:36675916,49800853:1179648,16384,0 -r1,493:37855564,49800853:1179648,16384,0 -) ) -k1,493:3078556,49800853:-34777008 ) -] -g1,493:6630773,4812305 -g1,493:6630773,4812305 -g1,493:8592265,4812305 -g1,493:9205682,4812305 -k1,493:31786110,4812305:22580428 -) -) -] -[1,493:6630773,45706769:25952256,40108032,0 -(1,493:6630773,45706769:25952256,40108032,0 -(1,493:6630773,45706769:0,0,0 -g1,493:6630773,45706769 -) -[1,493:6630773,45706769:25952256,40108032,0 -[1,489:6630773,22437907:25952256,16839170,0 -[1,489:6630773,22437907:25952256,16839170,0 -(1,488:6630773,18290112:25952256,12691375,0 -g1,488:6630773,18290112 -h1,487:6630773,18290112:0,0,0 -(1,487:6630773,18290112:25952256,12691375,0 -) -g1,488:32583029,18290112 -g1,488:32583029,18290112 -) -(1,488:6630773,19786960:25952256,485622,11795 -h1,488:6630773,19786960:0,0,0 -g1,488:9295467,19786960 -k1,488:32583028,19786960:22297312 -g1,488:32583028,19786960 -) -(1,488:6630773,20628448:25952256,513147,134348 -h1,488:6630773,20628448:0,0,0 -k1,488:7977890,20628448:150430 -k1,488:10552498,20628448:150431 -k1,488:13513112,20628448:150430 -k1,488:14892342,20628448:150430 -k1,488:16555999,20628448:150431 -k1,488:19229565,20628448:150430 -k1,488:20399080,20628448:150430 -k1,488:22202983,20628448:150430 -k1,488:24358160,20628448:150431 -k1,488:25996913,20628448:150430 -k1,488:27015695,20628448:150430 -k1,488:28679352,20628448:150431 -k1,488:29848867,20628448:150430 -k1,488:32583029,20628448:0 -) -(1,488:6630773,21469936:25952256,505283,126483 -k1,488:9003836,21469936:234623 -k1,488:9889887,21469936:234623 -k1,488:11242554,21469936:234623 -k1,488:12496262,21469936:234623 -k1,488:14735631,21469936:234623 -k1,488:15598089,21469936:234623 -k1,488:17035953,21469936:234623 -k1,488:18811327,21469936:234623 -k1,488:19460757,21469936:234587 -k1,488:21607721,21469936:234623 -k1,488:22861429,21469936:234623 -k1,488:25269226,21469936:234623 -k1,488:26155277,21469936:234623 -k1,488:27408985,21469936:234623 -k1,488:28058415,21469936:234587 -k1,488:30713283,21469936:234623 -k1,488:31563944,21469936:234623 -k1,488:32583029,21469936:0 -) -(1,488:6630773,22311424:25952256,513147,126483 -g1,488:8586367,22311424 -g1,488:9859731,22311424 -k1,488:32583029,22311424:21010842 -g1,488:32583029,22311424 -) -] -] -(1,478:6630773,24249700:25952256,513147,134348 -k1,477:9342872,24249700:211900 -k1,477:10316299,24249700:211899 -k1,477:10884059,24249700:211900 -k1,477:12586248,24249700:211900 -k1,477:15226256,24249700:211899 -k1,477:17583149,24249700:211900 -k1,477:20459088,24249700:211900 -k1,477:21338143,24249700:211899 -k1,477:23974220,24249700:211900 -k1,477:26712533,24249700:211900 -k1,477:29089086,24249700:211899 -k1,477:29917024,24249700:211900 -k1,477:32583029,24249700:0 -) -(1,478:6630773,25091188:25952256,473825,7863 -g1,477:7481430,25091188 -k1,478:32583029,25091188:24513086 -g1,478:32583029,25091188 -) -v1,480:6630773,26302677:0,393216,0 -(1,481:6630773,28482074:25952256,2572613,0 -g1,481:6630773,28482074 -g1,481:6303093,28482074 -r1,493:6401397,28482074:98304,2572613,0 -g1,481:6600626,28482074 -g1,481:6797234,28482074 -[1,481:6797234,28482074:25785795,2572613,0 -(1,481:6797234,26664750:25785795,755289,196608 -(1,480:6797234,26664750:0,755289,196608 -r1,493:8134168,26664750:1336934,951897,196608 -k1,480:6797234,26664750:-1336934 -) -(1,480:6797234,26664750:1336934,755289,196608 -) -k1,480:8448544,26664750:314376 -k1,480:8776224,26664750:327680 -k1,480:11625533,26664750:314376 -k1,480:13333861,26664750:314377 -k1,480:18000483,26664750:314376 -k1,480:21727974,26664750:314376 -k1,480:23379284,26664750:314376 -k1,480:24441426,26664750:314376 -k1,480:27090195,26664750:314377 -k1,480:29896905,26664750:314376 -k1,480:31605232,26664750:314376 -k1,481:32583029,26664750:0 -) -(1,481:6797234,27506238:25785795,513147,126483 -k1,480:9699588,27506238:135424 -k1,480:11082817,27506238:135423 -k1,480:13132651,27506238:140770 -k1,480:15282754,27506238:140769 -k1,480:17051991,27506238:135424 -k1,480:17870300,27506238:135424 -k1,480:19024808,27506238:135423 -k1,480:23059624,27506238:135424 -k1,480:25376086,27506238:135424 -k1,480:26929054,27506238:135424 -k1,480:28012128,27506238:135423 -k1,480:30033023,27506238:135424 -k1,480:32583029,27506238:0 -) -(1,481:6797234,28347726:25785795,505283,134348 -g1,480:10513125,28347726 -g1,480:11127197,28347726 -g1,480:12317986,28347726 -k1,481:32583030,28347726:17307404 -g1,481:32583030,28347726 -) -] -g1,481:32583029,28482074 -) -h1,481:6630773,28482074:0,0,0 -(1,484:6630773,29693563:25952256,513147,126483 -h1,483:6630773,29693563:983040,0,0 -k1,483:8962497,29693563:151997 -k1,483:10706363,29693563:151996 -k1,483:13331689,29693563:151997 -k1,483:14142978,29693563:151997 -k1,483:15712519,29693563:151997 -k1,483:16396012,29693563:151996 -k1,483:17164047,29693563:151997 -k1,483:18917744,29693563:151997 -k1,483:20767122,29693563:151996 -k1,483:23288246,29693563:151997 -k1,483:24707709,29693563:151997 -k1,483:27663336,29693563:151997 -k1,483:28498217,29693563:151996 -k1,483:30692971,29693563:151997 -k1,484:32583029,29693563:0 -) -(1,484:6630773,30535051:25952256,513147,126483 -k1,483:7759428,30535051:161999 -k1,483:9315378,30535051:161999 -k1,483:10994535,30535051:161999 -k1,483:11784369,30535051:161999 -k1,483:14370545,30535051:161999 -k1,483:15689254,30535051:161999 -k1,483:16952258,30535051:161999 -k1,483:19145218,30535051:161999 -k1,483:19958646,30535051:162000 -k1,483:21139730,30535051:161999 -k1,483:21716535,30535051:161962 -k1,483:24472449,30535051:161999 -k1,483:24990308,30535051:161999 -k1,483:26378486,30535051:161999 -k1,483:28623219,30535051:161999 -k1,483:29141078,30535051:161999 -k1,483:32583029,30535051:0 -) -(1,484:6630773,31376539:25952256,513147,134348 -k1,483:9597806,31376539:223041 -k1,483:10176707,31376539:223041 -k1,483:11938532,31376539:223040 -k1,483:13109224,31376539:223041 -k1,483:16282040,31376539:223041 -k1,483:18837507,31376539:223041 -k1,483:20251992,31376539:223040 -k1,483:22505994,31376539:223041 -k1,483:23380463,31376539:223041 -k1,483:25835005,31376539:223041 -k1,483:29285038,31376539:223040 -k1,483:31089463,31376539:223041 -k1,483:32583029,31376539:0 -) -(1,484:6630773,32218027:25952256,513147,134348 -k1,483:7472321,32218027:155386 -k1,483:8575357,32218027:155385 -k1,483:11690349,32218027:155386 -k1,483:13037179,32218027:155385 -k1,483:16051901,32218027:155386 -k1,483:19279615,32218027:155386 -k1,483:22519124,32218027:155385 -k1,483:25637393,32218027:155386 -k1,483:28216955,32218027:155385 -k1,483:31229055,32218027:155386 -k1,483:32583029,32218027:0 -) -(1,484:6630773,33059515:25952256,513147,134348 -k1,483:8106996,33059515:197616 -k1,483:9323697,33059515:197616 -k1,483:13653359,33059515:197617 -k1,483:14510267,33059515:197616 -k1,483:16278781,33059515:197616 -k1,483:18637774,33059515:197616 -k1,483:20026836,33059515:197617 -k1,483:23308576,33059515:197616 -k1,483:23964289,33059515:197616 -k1,483:24693402,33059515:197616 -k1,483:27975143,33059515:197617 -k1,483:28788797,33059515:197616 -k1,483:29967487,33059515:197616 -k1,483:32583029,33059515:0 -) -(1,484:6630773,33901003:25952256,513147,134348 -k1,483:8078576,33901003:161987 -k1,483:9259648,33901003:161987 -k1,483:10756603,33901003:161987 -k1,483:13548550,33901003:161987 -k1,483:14948513,33901003:161988 -k1,483:15769792,33901003:161987 -k1,483:17667172,33901003:161987 -k1,483:18243965,33901003:161950 -k1,483:19018714,33901003:161987 -k1,483:20199786,33901003:161987 -k1,483:22782018,33901003:161987 -k1,483:23630167,33901003:161987 -k1,483:24250251,33901003:161987 -k1,483:25513244,33901003:161988 -k1,483:26694316,33901003:161987 -k1,483:27271109,33901003:161950 -k1,483:28821149,33901003:161987 -k1,483:31229055,33901003:161987 -k1,483:32583029,33901003:0 -) -(1,484:6630773,34742491:25952256,505283,134348 -k1,483:8064235,34742491:154855 -k1,483:11482783,34742491:154855 -k1,483:13104334,34742491:154855 -k1,483:13875228,34742491:154856 -k1,483:15049168,34742491:154855 -k1,483:17113087,34742491:154855 -k1,483:18459387,34742491:154855 -k1,483:19029041,34742491:154811 -k1,483:21777811,34742491:154855 -k1,483:23917752,34742491:154855 -h1,483:24888340,34742491:0,0,0 -k1,483:25043196,34742491:154856 -k1,483:27189035,34742491:154855 -k1,483:28362975,34742491:154855 -k1,483:30109700,34742491:154855 -k1,483:32583029,34742491:0 -) -(1,484:6630773,35583979:25952256,513147,134348 -k1,483:9878224,35583979:184298 -k1,483:10824049,35583979:184297 -k1,483:13432524,35583979:184298 -k1,483:15130047,35583979:184297 -k1,483:17837481,35583979:184298 -k1,483:19040863,35583979:184297 -k1,483:20878634,35583979:184298 -k1,483:22894007,35583979:184297 -k1,483:23764467,35583979:184298 -k1,483:26024290,35583979:184298 -k1,483:26821349,35583979:184297 -k1,483:28024732,35583979:184298 -k1,483:28623857,35583979:184282 -k1,483:31228400,35583979:184298 -k1,484:32583029,35583979:0 -) -(1,484:6630773,36425467:25952256,505283,134348 -k1,483:7875738,36425467:194423 -h1,483:8846326,36425467:0,0,0 -k1,483:9247843,36425467:194423 -k1,483:10633712,36425467:194424 -k1,483:11440897,36425467:194423 -k1,483:12654405,36425467:194423 -k1,483:15902806,36425467:194423 -k1,483:18343149,36425467:194424 -k1,483:21697063,36425467:194423 -k1,483:24292725,36425467:194423 -k1,483:26679327,36425467:194423 -h1,483:27649915,36425467:0,0,0 -k1,483:28225103,36425467:194424 -k1,483:29179744,36425467:194423 -k1,483:32583029,36425467:0 -) -(1,484:6630773,37266955:25952256,513147,134348 -k1,483:8556689,37266955:229189 -k1,483:10440661,37266955:229188 -k1,483:12855476,37266955:229189 -k1,483:13542761,37266955:229188 -k1,483:14303447,37266955:229189 -k1,483:16062901,37266955:229188 -k1,483:17576596,37266955:229189 -k1,483:20229962,37266955:229189 -k1,483:20990647,37266955:229188 -k1,483:22982754,37266955:229189 -k1,483:24587543,37266955:229188 -k1,483:25172592,37266955:229189 -k1,483:28160846,37266955:229188 -k1,483:29947826,37266955:229189 -k1,483:32583029,37266955:0 -) -(1,484:6630773,38108443:25952256,513147,126483 -k1,483:7923905,38108443:274047 -k1,483:9578796,38108443:274047 -k1,483:11044288,38108443:274047 -k1,483:12089038,38108443:274047 -k1,483:16027858,38108443:274047 -k1,483:16716673,38108443:273972 -k1,483:20538183,38108443:274046 -k1,483:21440065,38108443:274047 -k1,483:24138289,38108443:274047 -k1,483:25431421,38108443:274047 -k1,483:27536544,38108443:274047 -k1,483:29017764,38108443:274047 -k1,483:31821501,38108443:274047 -k1,483:32583029,38108443:0 -) -(1,484:6630773,38949931:25952256,513147,134348 -k1,483:9573188,38949931:235123 -k1,483:10827396,38949931:235123 -k1,483:13796681,38949931:235123 -k1,483:16170244,38949931:235123 -k1,483:17018129,38949931:235123 -k1,483:18272337,38949931:235123 -k1,483:19579628,38949931:235122 -k1,483:20474043,38949931:235123 -k1,483:21728251,38949931:235123 -k1,483:23872438,38949931:235123 -k1,483:26025144,38949931:235123 -k1,483:28858114,38949931:235123 -k1,483:29709275,38949931:235123 -k1,483:32583029,38949931:0 -) -(1,484:6630773,39791419:25952256,513147,134348 -k1,483:7517825,39791419:235624 -k1,483:9130359,39791419:235623 -k1,483:12518920,39791419:235624 -k1,483:13773628,39791419:235623 -k1,483:15505439,39791419:235624 -k1,483:18039410,39791419:235623 -k1,483:18926462,39791419:235624 -k1,483:21271034,39791419:235623 -k1,483:22525743,39791419:235624 -k1,483:23744406,39791419:235623 -k1,483:25171475,39791419:235624 -k1,483:28430274,39791419:235623 -k1,483:29123995,39791419:235624 -k1,483:29972380,39791419:235623 -k1,483:31227089,39791419:235624 -k1,484:32583029,39791419:0 -) -(1,484:6630773,40632907:25952256,513147,126483 -k1,483:8137306,40632907:229236 -h1,483:9314988,40632907:0,0,0 -k1,483:9717893,40632907:229235 -k1,483:11703494,40632907:229236 -k1,483:13006864,40632907:229235 -k1,483:15297863,40632907:229236 -k1,483:17444681,40632907:229235 -k1,483:18900096,40632907:229236 -k1,483:19745369,40632907:229235 -k1,483:22452521,40632907:229236 -k1,483:23700841,40632907:229235 -k1,483:25583550,40632907:229236 -k1,483:28233030,40632907:229235 -k1,483:30381160,40632907:229236 -k1,483:31478747,40632907:229235 -k1,483:32583029,40632907:0 -) -(1,484:6630773,41474395:25952256,513147,126483 -g1,483:9244348,41474395 -g1,483:10829663,41474395 -g1,483:12232133,41474395 -g1,483:14084835,41474395 -g1,483:14698907,41474395 -g1,483:18057627,41474395 -g1,483:18722817,41474395 -g1,483:19790398,41474395 -k1,484:32583029,41474395:11151609 -g1,484:32583029,41474395 -) -v1,492:6630773,42685884:0,393216,0 -(1,493:6630773,45706769:25952256,3414101,0 -g1,493:6630773,45706769 -g1,493:6303093,45706769 -r1,493:6401397,45706769:98304,3414101,0 -g1,493:6600626,45706769 -g1,493:6797234,45706769 -[1,493:6797234,45706769:25785795,3414101,0 -(1,493:6797234,43047957:25785795,755289,196608 -(1,492:6797234,43047957:0,755289,196608 -r1,493:8134168,43047957:1336934,951897,196608 -k1,492:6797234,43047957:-1336934 -) -(1,492:6797234,43047957:1336934,755289,196608 -) -k1,492:8314439,43047957:180271 -k1,492:8642119,43047957:327680 -k1,492:10605624,43047957:180270 -k1,492:11141755,43047957:180271 -k1,492:13153102,43047957:180271 -k1,492:13864870,43047957:180271 -k1,492:15336855,43047957:180270 -k1,492:15983087,43047957:180271 -k1,492:16934061,43047957:180271 -k1,492:18721274,43047957:180270 -k1,492:19433042,43047957:180271 -k1,492:22685641,43047957:180271 -k1,492:25290089,43047957:180271 -k1,492:29787216,43047957:180270 -k1,492:31563944,43047957:180271 -k1,492:32583029,43047957:0 -) -(1,493:6797234,43889445:25785795,513147,134348 -k1,492:9549980,43889445:196187 -k1,492:10405458,43889445:196186 -k1,492:11620730,43889445:196187 -k1,492:13597530,43889445:196187 -k1,492:14149577,43889445:196187 -k1,492:16621173,43889445:196186 -k1,492:17987833,43889445:196187 -k1,492:19316482,43889445:196187 -k1,492:20778824,43889445:196186 -k1,492:22952232,43889445:196187 -k1,492:24846457,43889445:196187 -k1,492:27565780,43889445:196187 -k1,492:29258153,43889445:196186 -k1,492:31021961,43889445:196187 -k1,493:32583029,43889445:0 -) -(1,493:6797234,44730933:25785795,513147,126483 -k1,492:8527486,44730933:187534 -k1,492:9331057,44730933:187533 -k1,492:10721832,44730933:187534 -k1,492:12665076,44730933:187534 -k1,492:14669267,44730933:187533 -k1,492:17462512,44730933:187534 -k1,492:18641606,44730933:187534 -k1,492:21168120,44730933:187534 -k1,492:22904269,44730933:187533 -k1,492:24248513,44730933:187534 -k1,492:26296614,44730933:187534 -k1,492:27431798,44730933:187533 -k1,492:29744009,44730933:187534 -k1,492:32583029,44730933:0 -) -(1,493:6797234,45572421:25785795,513147,134348 -k1,492:8360863,45572421:174266 -k1,492:11089722,45572421:174266 -k1,492:12455433,45572421:174266 -k1,492:14574808,45572421:174266 -k1,492:15361836,45572421:174266 -k1,492:18116254,45572421:174266 -k1,492:22422565,45572421:174266 -k1,492:23788276,45572421:174266 -k1,492:25958769,45572421:174266 -k1,492:29702126,45572421:174266 -k1,492:31635378,45572421:174266 -k1,492:32583029,45572421:0 -) -] -g1,493:32583029,45706769 -) -] -(1,493:32583029,45706769:0,0,0 -g1,493:32583029,45706769 -) -) -] -(1,493:6630773,47279633:25952256,0,0 -h1,493:6630773,47279633:25952256,0,0 -) -] -(1,493:4262630,4025873:0,0,0 -[1,493:-473656,4025873:0,0,0 -(1,493:-473656,-710413:0,0,0 -(1,493:-473656,-710413:0,0,0 -g1,493:-473656,-710413 -) -g1,493:-473656,-710413 -) -] -) -] -!17317 -}28 -Input:207:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:208:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:209:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:210:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!383 -{29 -[1,508:4262630,47279633:28320399,43253760,0 -(1,508:4262630,4025873:0,0,0 -[1,508:-473656,4025873:0,0,0 -(1,508:-473656,-710413:0,0,0 -(1,508:-473656,-644877:0,0,0 -k1,508:-473656,-644877:-65536 -) -(1,508:-473656,4736287:0,0,0 -k1,508:-473656,4736287:5209943 +] +[1,646:3078558,4812305:0,0,0 +(1,646:3078558,2439708:0,1703936,0 +g1,646:29030814,2439708 +g1,646:36135244,2439708 +(1,412:36135244,2439708:1720320,1703936,0 +(1,412:36135244,2439708:16384,1703936,0 +[1,412:36135244,2439708:25952256,1703936,0 +(1,412:36135244,1915420:25952256,1179648,0 +(1,412:36135244,1915420:16384,1179648,0 +r1,646:36151628,1915420:16384,1179648,0 ) -g1,508:-473656,-710413 +k1,412:62087500,1915420:25935872 +g1,412:62087500,1915420 ) ] ) -[1,508:6630773,47279633:25952256,43253760,0 -[1,508:6630773,4812305:25952256,786432,0 -(1,508:6630773,4812305:25952256,505283,134348 -(1,508:6630773,4812305:25952256,505283,134348 -g1,508:3078558,4812305 -[1,508:3078558,4812305:0,0,0 -(1,508:3078558,2439708:0,1703936,0 -k1,508:1358238,2439708:-1720320 -(1,417:1358238,2439708:1720320,1703936,0 -(1,417:1358238,2439708:1179648,16384,0 -r1,508:2537886,2439708:1179648,16384,0 +g1,412:36675916,2439708 +(1,412:36675916,2439708:1179648,16384,0 +r1,646:37855564,2439708:1179648,16384,0 ) -g1,417:3062174,2439708 -(1,417:3062174,2439708:16384,1703936,0 -[1,417:3062174,2439708:25952256,1703936,0 -(1,417:3062174,1915420:25952256,1179648,0 -(1,417:3062174,1915420:16384,1179648,0 -r1,508:3078558,1915420:16384,1179648,0 ) -k1,417:29014430,1915420:25935872 -g1,417:29014430,1915420 +k1,646:3078556,2439708:-34777008 ) ] +[1,646:3078558,4812305:0,0,0 +(1,646:3078558,49800853:0,16384,2228224 +k1,646:1358238,49800853:-1720320 +(1,412:1358238,49800853:1720320,16384,2228224 +(1,412:1358238,49800853:1179648,16384,0 +r1,646:2537886,49800853:1179648,16384,0 ) +g1,412:3062174,49800853 +(1,412:3062174,52029077:16384,1703936,0 +[1,412:3062174,52029077:25952256,1703936,0 +(1,412:3062174,51504789:25952256,1179648,0 +(1,412:3062174,51504789:16384,1179648,0 +r1,646:3078558,51504789:16384,1179648,0 ) +k1,412:29014430,51504789:25935872 +g1,412:29014430,51504789 ) ] -[1,508:3078558,4812305:0,0,0 -(1,508:3078558,2439708:0,1703936,0 -g1,508:29030814,2439708 -g1,508:36135244,2439708 -(1,417:36135244,2439708:1720320,1703936,0 -(1,417:36135244,2439708:16384,1703936,0 -[1,417:36135244,2439708:25952256,1703936,0 -(1,417:36135244,1915420:25952256,1179648,0 -(1,417:36135244,1915420:16384,1179648,0 -r1,508:36151628,1915420:16384,1179648,0 -) -k1,417:62087500,1915420:25935872 -g1,417:62087500,1915420 ) -] ) -g1,417:36675916,2439708 -(1,417:36675916,2439708:1179648,16384,0 -r1,508:37855564,2439708:1179648,16384,0 -) -) -k1,508:3078556,2439708:-34777008 ) ] -[1,508:3078558,4812305:0,0,0 -(1,508:3078558,49800853:0,16384,2228224 -k1,508:1358238,49800853:-1720320 -(1,417:1358238,49800853:1720320,16384,2228224 -(1,417:1358238,49800853:1179648,16384,0 -r1,508:2537886,49800853:1179648,16384,0 -) -g1,417:3062174,49800853 -(1,417:3062174,52029077:16384,1703936,0 -[1,417:3062174,52029077:25952256,1703936,0 -(1,417:3062174,51504789:25952256,1179648,0 -(1,417:3062174,51504789:16384,1179648,0 -r1,508:3078558,51504789:16384,1179648,0 -) -k1,417:29014430,51504789:25935872 -g1,417:29014430,51504789 -) -] -) -) -) -] -[1,508:3078558,4812305:0,0,0 -(1,508:3078558,49800853:0,16384,2228224 -g1,508:29030814,49800853 -g1,508:36135244,49800853 -(1,417:36135244,49800853:1720320,16384,2228224 -(1,417:36135244,52029077:16384,1703936,0 -[1,417:36135244,52029077:25952256,1703936,0 -(1,417:36135244,51504789:25952256,1179648,0 -(1,417:36135244,51504789:16384,1179648,0 -r1,508:36151628,51504789:16384,1179648,0 -) -k1,417:62087500,51504789:25935872 -g1,417:62087500,51504789 -) -] -) -g1,417:36675916,49800853 -(1,417:36675916,49800853:1179648,16384,0 -r1,508:37855564,49800853:1179648,16384,0 -) -) -k1,508:3078556,49800853:-34777008 -) -] -g1,508:6630773,4812305 -k1,508:21916392,4812305:14488701 -g1,508:22703479,4812305 -g1,508:23888369,4812305 -g1,508:27214321,4812305 -g1,508:28624000,4812305 -g1,508:29808890,4812305 -) -) -] -[1,508:6630773,45706769:25952256,40108032,0 -(1,508:6630773,45706769:25952256,40108032,0 -(1,508:6630773,45706769:0,0,0 -g1,508:6630773,45706769 -) -[1,508:6630773,45706769:25952256,40108032,0 -v1,493:6630773,6254097:0,393216,0 -(1,493:6630773,10715816:25952256,4854935,0 -g1,493:6630773,10715816 -g1,493:6303093,10715816 -r1,508:6401397,10715816:98304,4854935,0 -g1,493:6600626,10715816 -g1,493:6797234,10715816 -[1,493:6797234,10715816:25785795,4854935,0 -(1,493:6797234,6374028:25785795,513147,134348 -k1,492:10476152,6374028:183228 -k1,492:12155566,6374028:183227 -k1,492:15242039,6374028:183228 -k1,492:17336297,6374028:183228 -k1,492:20166523,6374028:183227 -k1,492:21009043,6374028:183228 -k1,492:22688458,6374028:183228 -k1,492:24063130,6374028:183227 -k1,492:25534140,6374028:183228 -k1,492:27412784,6374028:183228 -k1,492:29311744,6374028:183227 -k1,492:29953069,6374028:183228 -k1,492:32583029,6374028:0 -) -(1,493:6797234,7215516:25785795,513147,126483 -k1,492:7641720,7215516:193058 -k1,492:10264853,7215516:193058 -k1,492:11649356,7215516:193058 -k1,492:14471718,7215516:193058 -k1,492:18740460,7215516:193058 -k1,492:19619680,7215516:193058 -k1,492:21091345,7215516:193058 -k1,492:22672456,7215516:193058 -k1,492:24259465,7215516:193058 -k1,492:26651911,7215516:193058 -k1,492:30016256,7215516:193058 -k1,492:31400759,7215516:193058 -k1,493:32583029,7215516:0 -) -(1,493:6797234,8057004:25785795,513147,134348 -k1,492:9807708,8057004:164901 -k1,492:10639765,8057004:164901 -k1,492:11219476,8057004:164868 -k1,492:14468501,8057004:164901 -k1,492:15824847,8057004:164901 -k1,492:18151125,8057004:164901 -k1,492:19864643,8057004:164902 -k1,492:21200017,8057004:164901 -k1,492:22497380,8057004:164901 -k1,492:24960629,8057004:164901 -k1,492:26073182,8057004:164902 -k1,492:27441324,8057004:164901 -k1,492:29692236,8057004:164901 -k1,492:32583029,8057004:0 -) -(1,493:6797234,8898492:25785795,513147,134348 -k1,492:8190172,8898492:201493 -k1,492:10516343,8898492:201494 -k1,492:12107199,8898492:201493 -k1,492:15036956,8898492:201493 -k1,492:17662627,8898492:201494 -k1,492:19149936,8898492:201493 -k1,492:22524683,8898492:201494 -k1,492:25252589,8898492:201493 -k1,492:26401733,8898492:201493 -k1,492:27586267,8898492:201494 -k1,492:30121497,8898492:201493 -k1,492:32583029,8898492:0 -) -(1,493:6797234,9739980:25785795,513147,134348 -k1,492:8915459,9739980:232754 -k1,492:9679709,9739980:232753 -k1,492:10978734,9739980:232754 -k1,492:12587088,9739980:232753 -k1,492:14797063,9739980:232754 -k1,492:15977468,9739980:232754 -k1,492:18790373,9739980:232753 -k1,492:23328842,9739980:232754 -k1,492:24633765,9739980:232754 -k1,492:26152334,9739980:232753 -k1,492:27332739,9739980:232754 -k1,492:30063724,9739980:232753 -k1,492:31923737,9739980:232754 -k1,492:32583029,9739980:0 -) -(1,493:6797234,10581468:25785795,513147,134348 -g1,492:8015548,10581468 -g1,492:10988916,10581468 -g1,492:11871030,10581468 -g1,492:15557430,10581468 -g1,492:17353116,10581468 -g1,492:18946296,10581468 -g1,492:23349004,10581468 -g1,492:24164271,10581468 -g1,492:25382585,10581468 -g1,492:28136407,10581468 -g1,492:28994928,10581468 -k1,493:32583029,10581468:2025067 -g1,493:32583029,10581468 -) -] -g1,493:32583029,10715816 -) -h1,493:6630773,10715816:0,0,0 -(1,496:6630773,12081592:25952256,513147,126483 -h1,495:6630773,12081592:983040,0,0 -k1,495:9088591,12081592:278091 -k1,495:12530105,12081592:278091 -k1,495:15141933,12081592:278091 -k1,495:16087180,12081592:278091 -k1,495:18789448,12081592:278091 -k1,495:20352045,12081592:278091 -k1,495:21786846,12081592:278091 -k1,495:24364595,12081592:278091 -k1,495:25834131,12081592:278091 -k1,495:27535009,12081592:278091 -k1,495:30047222,12081592:278091 -k1,495:31773659,12081592:278091 -k1,495:32583029,12081592:0 -) -(1,496:6630773,12923080:25952256,505283,134348 -k1,495:8377436,12923080:144963 -k1,495:11008180,12923080:144963 -k1,495:14207121,12923080:144963 -k1,495:17101975,12923080:144963 -k1,495:18740504,12923080:144963 -k1,495:19571629,12923080:144963 -k1,495:21643351,12923080:144964 -k1,495:23413606,12923080:144963 -k1,495:24426689,12923080:150629 -k1,495:25155577,12923080:144963 -k1,495:26491985,12923080:144963 -k1,495:30750642,12923080:144963 -k1,495:32583029,12923080:0 -) -(1,496:6630773,13764568:25952256,505283,126484 -k1,495:7459498,13764568:297228 -k1,495:9042541,13764568:297227 -k1,495:9695629,13764568:297228 -k1,495:11951727,13764568:297227 -k1,495:14582692,13764568:297228 -k1,495:16164426,13764568:297228 -k1,495:17909999,13764568:297227 -k1,495:19016597,13764568:297228 -k1,495:21240582,13764568:297227 -k1,495:22223972,13764568:297228 -k1,495:23799807,13764568:297228 -k1,495:24783196,13764568:297227 -k1,495:25436284,13764568:297228 -k1,495:27502328,13764568:297227 -k1,495:30004843,13764568:297228 -$1,495:30211937,13764568 -k1,495:32187847,13764568:0 -k1,496:32583029,13764568:0 -) -(1,496:6630773,14606056:25952256,505283,134348 -k1,495:7025955,14606056:0 -k1,495:7421137,14606056:0 -k1,495:9397047,14606056:0 -k1,495:9792229,14606056:0 -$1,495:12163321,14606056 -k1,495:12571015,14606056:200600 -k1,495:15844597,14606056:200599 -k1,495:18202642,14606056:200600 -k1,495:20434203,14606056:200600 -k1,495:21286231,14606056:200600 -k1,495:22980396,14606056:200599 -k1,495:23536856,14606056:200600 -k1,495:25869998,14606056:200600 -k1,495:27267285,14606056:200600 -k1,495:29892061,14606056:200599 -k1,495:32051532,14606056:200600 -k1,495:32583029,14606056:0 -) -(1,496:6630773,15447544:25952256,513147,134348 -k1,495:8399438,15447544:255439 -k1,495:11475547,15447544:255439 -k1,495:14289512,15447544:255439 -k1,495:14900812,15447544:255440 -k1,495:16425028,15447544:255439 -k1,495:19424459,15447544:255439 -k1,495:20876585,15447544:255439 -k1,495:22512868,15447544:255439 -k1,495:25578491,15447544:255439 -k1,495:26365428,15447544:255440 -k1,495:28783555,15447544:255439 -k1,495:30058079,15447544:255439 -k1,495:31966991,15447544:255439 -k1,495:32583029,15447544:0 -) -(1,496:6630773,16289032:25952256,513147,126483 -k1,495:7651407,16289032:254518 -k1,495:9776977,16289032:254517 -k1,495:12677183,16289032:254518 -k1,495:14123146,16289032:254518 -k1,495:16336535,16289032:254518 -k1,495:19255091,16289032:254517 -k1,495:20501169,16289032:254518 -k1,495:22222383,16289032:254518 -k1,495:26015845,16289032:254518 -k1,495:26956524,16289032:254517 -k1,495:31335223,16289032:254518 -k1,495:32583029,16289032:0 -) -(1,496:6630773,17130520:25952256,513147,126483 -g1,495:9589068,17130520 -g1,495:10979742,17130520 -g1,495:11865133,17130520 -g1,495:15358857,17130520 -g1,495:19257593,17130520 -k1,496:32583029,17130520:10392700 -g1,496:32583029,17130520 -) -(1,498:6630773,17972008:25952256,513147,134348 -h1,497:6630773,17972008:983040,0,0 -k1,497:10330226,17972008:292236 -k1,497:11813907,17972008:292236 -k1,497:13808112,17972008:292235 -k1,497:15517892,17972008:292236 -k1,497:18336541,17972008:292236 -k1,497:20662359,17972008:292236 -k1,497:21613886,17972008:292235 -k1,497:23414761,17972008:292236 -k1,497:25254302,17972008:292236 -k1,497:26737983,17972008:292236 -k1,497:28722358,17972008:292235 -k1,497:31526589,17972008:292236 -k1,497:32583029,17972008:0 -) -(1,498:6630773,18813496:25952256,513147,134348 -k1,497:9431607,18813496:214128 -k1,497:11566595,18813496:214128 -k1,497:13666849,18813496:214128 -k1,497:14900062,18813496:214128 -k1,497:16852205,18813496:214128 -k1,497:17725625,18813496:214128 -k1,497:20302981,18813496:214128 -k1,497:21241936,18813496:214127 -k1,497:22740570,18813496:214128 -k1,497:24551155,18813496:214128 -k1,497:25574653,18813496:214128 -k1,497:26144641,18813496:214128 -k1,497:27748132,18813496:214128 -k1,497:30516853,18813496:214128 -k1,497:31835263,18813496:214128 -k1,497:32583029,18813496:0 -) -(1,498:6630773,19654984:25952256,513147,126483 -k1,497:10541187,19654984:252850 -k1,497:11985481,19654984:252849 -k1,497:13691920,19654984:252850 -k1,497:17317253,19654984:252850 -k1,497:19036798,19654984:252849 -k1,497:20099018,19654984:252850 -k1,497:20707727,19654984:252849 -k1,497:23722920,19654984:252850 -k1,497:27225700,19654984:252850 -k1,497:28296438,19654984:252849 -k1,497:31966991,19654984:252850 -k1,497:32583029,19654984:0 -) -(1,498:6630773,20496472:25952256,513147,134348 -g1,497:9108689,20496472 -h1,497:10651407,20496472:0,0,0 -g1,497:10850636,20496472 -g1,497:11859235,20496472 -g1,497:13556617,20496472 -h1,497:14353535,20496472:0,0,0 -g1,497:14726434,20496472 -g1,497:16623701,20496472 -g1,497:19409636,20496472 -g1,497:21002816,20496472 -g1,497:21616888,20496472 -g1,497:22684469,20496472 -g1,497:24391681,20496472 -g1,497:26812581,20496472 -g1,497:28325152,20496472 -g1,497:29140419,20496472 -g1,497:29695508,20496472 -k1,498:32583029,20496472:792990 -g1,498:32583029,20496472 -) -v1,500:6630773,21862248:0,393216,0 -(1,501:6630773,28274251:25952256,6805219,0 -g1,501:6630773,28274251 -g1,501:6303093,28274251 -r1,508:6401397,28274251:98304,6805219,0 -g1,501:6600626,28274251 -g1,501:6797234,28274251 -[1,501:6797234,28274251:25785795,6805219,0 -(1,501:6797234,22257351:25785795,788319,218313 -(1,500:6797234,22257351:0,788319,218313 -r1,508:7917113,22257351:1119879,1006632,218313 -k1,500:6797234,22257351:-1119879 -) -(1,500:6797234,22257351:1119879,788319,218313 -) -k1,500:8231527,22257351:314414 -k1,500:8559207,22257351:327680 -k1,500:9501457,22257351:314415 -k1,500:11019112,22257351:314414 -k1,500:12915566,22257351:314415 -k1,500:13442857,22257351:314299 -k1,500:16187346,22257351:314414 -k1,500:17877362,22257351:314415 -k1,500:18547636,22257351:314414 -k1,500:21954039,22257351:314414 -k1,500:22927746,22257351:314415 -k1,500:26104773,22257351:314414 -k1,500:27228558,22257351:314415 -k1,500:28562057,22257351:314414 -k1,500:29968957,22257351:314415 -k1,500:30950527,22257351:314414 -k1,501:32583029,22257351:0 -) -(1,501:6797234,23098839:25785795,513147,134348 -k1,500:8237060,23098839:261489 -k1,500:9689993,23098839:261488 -k1,500:10760852,23098839:261489 -k1,500:13884953,23098839:261488 -k1,500:15094093,23098839:261489 -k1,500:17057551,23098839:261488 -k1,500:18910254,23098839:261489 -k1,500:20000772,23098839:261488 -k1,500:21873791,23098839:261489 -k1,500:23785476,23098839:261488 -k1,500:25869521,23098839:261489 -k1,500:28728857,23098839:261489 -k1,500:31170728,23098839:261488 -k1,500:32583029,23098839:0 -) -(1,501:6797234,23940327:25785795,505283,134348 -k1,500:8108192,23940327:291873 -k1,500:13226137,23940327:291874 -k1,500:16301979,23940327:291873 -k1,500:19152379,23940327:291874 -k1,500:22372401,23940327:291873 -k1,500:24052328,23940327:291874 -k1,500:26141198,23940327:291873 -k1,500:27624517,23940327:291874 -k1,500:29424373,23940327:291873 -k1,500:30329009,23940327:291874 -k1,500:32227169,23940327:291873 -k1,500:32583029,23940327:0 -) -(1,501:6797234,24781815:25785795,513147,134348 -k1,500:9422232,24781815:274877 -k1,500:11207058,24781815:274876 -k1,500:12141227,24781815:274877 -k1,500:13435188,24781815:274876 -k1,500:16134242,24781815:274877 -k1,500:18117642,24781815:274876 -k1,500:20089246,24781815:274877 -k1,500:22053641,24781815:274877 -k1,500:24930296,24781815:274876 -k1,500:26535554,24781815:274877 -k1,500:27461858,24781815:274876 -k1,500:28829220,24781815:274877 -k1,500:29735863,24781815:274876 -k1,500:31391584,24781815:274877 -k1,500:32583029,24781815:0 -) -(1,501:6797234,25623303:25785795,513147,126484 -k1,500:8804602,25623303:305398 -k1,500:11087221,25623303:305398 -k1,500:14242124,25623303:305397 -k1,500:18283074,25623303:305398 -k1,500:19692754,25623303:305398 -k1,500:20745918,25623303:305398 -k1,500:24946775,25623303:305397 -k1,500:25864935,25623303:305398 -$1,500:25864935,25623303 -k1,500:27840845,25623303:0 -k1,500:28236027,25623303:0 -k1,500:28631209,25623303:0 -k1,500:29026391,25623303:0 -k1,500:31002301,25623303:0 -k1,500:31397483,25623303:0 -k1,500:32187847,25623303:0 -k1,501:32583029,25623303:0 -) -(1,501:6797234,26464791:25785795,513147,102891 -k1,500:10353872,26464791:0 -k1,500:10749054,26464791:0 -$1,500:15491238,26464791 -k1,500:15831452,26464791:166544 -k1,500:19356715,26464791:166543 -k1,500:23361047,26464791:166544 -k1,500:24336961,26464791:166544 -k1,500:25522590,26464791:166544 -k1,500:26781618,26464791:166543 -k1,500:27615318,26464791:166544 -k1,500:30379709,26464791:166544 -k1,501:32583029,26464791:0 -) -(1,501:6797234,27306279:25785795,505283,134348 -k1,500:8008743,27306279:221260 -k1,500:8585862,27306279:221259 -k1,500:10701768,27306279:221260 -k1,500:11914587,27306279:221259 -k1,500:14919816,27306279:221260 -k1,500:17699601,27306279:221259 -k1,500:18939946,27306279:221260 -k1,500:22392785,27306279:221259 -k1,500:24411042,27306279:221260 -k1,500:26300848,27306279:221259 -k1,500:27134870,27306279:221260 -k1,500:28375214,27306279:221259 -k1,500:30178513,27306279:221260 -k1,500:32583029,27306279:0 -) -(1,501:6797234,28147767:25785795,513147,126484 -g1,500:7609225,28147767 -$1,500:7609225,28147767 -g1,500:9585135,28147767 -g1,500:9980317,28147767 -g1,500:10375499,28147767 -g1,500:10770681,28147767 -g1,500:11956227,28147767 -g1,500:12351409,28147767 -(1,500:15117683,28246081:32768,0,0 -) -g1,500:16731179,28147767 -g1,500:17126361,28147767 -$1,500:19102271,28147767 -k1,501:32583029,28147767:13307088 -g1,501:32583029,28147767 -) -] -g1,501:32583029,28274251 -) -h1,501:6630773,28274251:0,0,0 -(1,503:6630773,30365511:25952256,555811,139132 -(1,503:6630773,30365511:2450326,534184,12975 -g1,503:6630773,30365511 -g1,503:9081099,30365511 -) -g1,503:9803437,30365511 -g1,503:13095049,30365511 -g1,503:14662277,30365511 -k1,503:32583029,30365511:13615561 -g1,503:32583029,30365511 -) -(1,506:6630773,31600215:25952256,513147,7863 -k1,505:7749192,31600215:164870 -k1,505:9006547,31600215:164870 -k1,505:11347212,31600215:164869 -k1,505:12163510,31600215:164870 -k1,505:14997661,31600215:164870 -k1,505:16181616,31600215:164870 -k1,505:19707171,31600215:164869 -k1,505:22947646,31600215:164870 -k1,505:24680137,31600215:164870 -k1,505:26333330,31600215:164870 -k1,505:27149628,31600215:164870 -k1,505:29106251,31600215:164869 -k1,505:29930413,31600215:164870 -k1,505:31251993,31600215:164870 -k1,506:32583029,31600215:0 -) -(1,506:6630773,32441703:25952256,513147,134348 -k1,505:8278553,32441703:242688 -k1,505:11176104,32441703:242688 -k1,505:12078084,32441703:242688 -k1,505:13339858,32441703:242689 -k1,505:13997345,32441703:242644 -k1,505:17155730,32441703:242688 -k1,505:18351967,32441703:242688 -k1,505:19687140,32441703:242688 -k1,505:23243329,32441703:242689 -k1,505:24137445,32441703:242688 -k1,505:26118148,32441703:242688 -k1,505:27379921,32441703:242688 -k1,505:30795207,32441703:242688 -k1,505:32583029,32441703:0 -) -(1,506:6630773,33283191:25952256,505283,134348 -k1,505:8449086,33283191:314262 -k1,505:9529463,33283191:314261 -k1,505:12133553,33283191:314262 -k1,505:15358269,33283191:314262 -k1,505:18456499,33283191:314261 -k1,505:19386799,33283191:314262 -k1,505:20471763,33283191:314261 -k1,505:21200753,33283191:314147 -k1,505:23863824,33283191:314261 -k1,505:25169646,33283191:314262 -k1,505:27695748,33283191:314262 -k1,505:28637844,33283191:314261 -k1,505:29366833,33283191:314146 -k1,505:30700180,33283191:314262 -k1,505:32583029,33283191:0 -) -(1,506:6630773,34124679:25952256,513147,134348 -k1,505:10288747,34124679:273695 -k1,505:11666723,34124679:273694 -k1,505:12688184,34124679:273695 -k1,505:15000049,34124679:273695 -k1,505:15889781,34124679:273694 -k1,505:16519336,34124679:273695 -k1,505:18666050,34124679:273695 -k1,505:19922785,34124679:273695 -k1,505:21005849,34124679:273694 -k1,505:22624343,34124679:273695 -k1,505:23510800,34124679:273695 -k1,505:24803579,34124679:273694 -k1,505:26260199,34124679:273695 -k1,505:27216779,34124679:273695 -k1,505:29604664,34124679:273694 -k1,505:30234219,34124679:273695 -k1,505:32583029,34124679:0 -) -(1,506:6630773,34966167:25952256,513147,126483 -k1,505:8022758,34966167:200540 -k1,505:10897167,34966167:200540 -k1,505:12551296,34966167:200540 -k1,505:14019302,34966167:200540 -k1,505:16692515,34966167:200540 -k1,505:19415537,34966167:200541 -k1,505:22259799,34966167:200540 -k1,505:23269709,34966167:200540 -k1,505:23826109,34966167:200540 -k1,505:26788992,34966167:200540 -k1,505:30239462,34966167:200540 -k1,505:32583029,34966167:0 -) -(1,506:6630773,35807655:25952256,513147,134348 -k1,505:8544425,35807655:215614 -k1,505:11346746,35807655:215615 -k1,505:12956311,35807655:215614 -k1,505:13586752,35807655:215598 -k1,505:14670719,35807655:215615 -k1,505:17570032,35807655:215614 -k1,505:18141506,35807655:215614 -k1,505:20277981,35807655:215615 -k1,505:21109633,35807655:215614 -k1,505:22670047,35807655:215615 -k1,505:25233161,35807655:215614 -k1,505:26100203,35807655:215614 -k1,505:27933247,35807655:215615 -k1,505:28914977,35807655:215614 -k1,505:30443934,35807655:215615 -k1,505:32227169,35807655:215614 -k1,505:32583029,35807655:0 -) -(1,506:6630773,36649143:25952256,513147,134348 -k1,505:8515869,36649143:190335 -k1,505:10095568,36649143:190336 -k1,505:12840496,36649143:190335 -k1,505:15472702,36649143:190335 -k1,505:16616586,36649143:190335 -k1,505:19651840,36649143:190336 -k1,505:21350158,36649143:190335 -k1,505:22156531,36649143:190335 -k1,505:23550108,36649143:190336 -k1,505:25661303,36649143:190335 -k1,505:27164980,36649143:190335 -k1,505:28749266,36649143:190335 -k1,505:30328965,36649143:190336 -k1,505:31170728,36649143:190335 -k1,505:32583029,36649143:0 -) -(1,506:6630773,37490631:25952256,513147,134348 -k1,505:7663167,37490631:242685 -k1,505:10240900,37490631:242685 -k1,505:10839444,37490631:242684 -k1,505:12065169,37490631:242685 -k1,505:14568191,37490631:242685 -k1,505:15829961,37490631:242685 -k1,505:17955494,37490631:242684 -k1,505:20947414,37490631:242685 -k1,505:21849391,37490631:242685 -k1,505:23111161,37490631:242685 -k1,505:26911795,37490631:242684 -k1,505:29313236,37490631:242685 -k1,505:30317449,37490631:242685 -k1,506:32583029,37490631:0 -) -(1,506:6630773,38332119:25952256,513147,126483 -(1,505:6630773,38332119:0,452978,115847 -r1,508:8747598,38332119:2116825,568825,115847 -k1,505:6630773,38332119:-2116825 -) -(1,505:6630773,38332119:2116825,452978,115847 -k1,505:6630773,38332119:3277 -h1,505:8744321,38332119:0,411205,112570 -) -k1,505:8963210,38332119:215612 -k1,505:10370268,38332119:215613 -k1,505:10941740,38332119:215612 -k1,505:12383531,38332119:215612 -k1,505:13582183,38332119:215612 -k1,505:15191747,38332119:215613 -k1,505:16426444,38332119:215612 -k1,505:18889286,38332119:215612 -k1,505:19764190,38332119:215612 -k1,505:23469595,38332119:215613 -k1,505:26108073,38332119:215612 -k1,505:30424273,38332119:215612 -k1,505:32583029,38332119:0 -) -(1,506:6630773,39173607:25952256,513147,126483 -k1,505:7634682,39173607:242381 -k1,505:10142643,39173607:242381 -(1,505:10142643,39173607:0,452978,115847 -r1,508:13314603,39173607:3171960,568825,115847 -k1,505:10142643,39173607:-3171960 -) -(1,505:10142643,39173607:3171960,452978,115847 -k1,505:10142643,39173607:3277 -h1,505:13311326,39173607:0,411205,112570 -) -k1,505:13730654,39173607:242381 -k1,505:15169722,39173607:242381 -k1,505:17296918,39173607:242381 -k1,505:18852641,39173607:242381 -k1,505:21105012,39173607:242382 -k1,505:22550634,39173607:242381 -k1,505:24713875,39173607:242381 -k1,505:26060538,39173607:242381 -k1,505:27050685,39173607:242381 -k1,505:29607142,39173607:242381 -k1,505:30465561,39173607:242381 -k1,505:32583029,39173607:0 -) -(1,506:6630773,40015095:25952256,513147,134348 -k1,505:9263092,40015095:207487 -k1,505:11302965,40015095:207486 -k1,505:12502012,40015095:207487 -k1,505:13518869,40015095:207487 -k1,505:15393592,40015095:207487 -k1,505:17187049,40015095:207486 -k1,505:18203906,40015095:207487 -k1,505:19741774,40015095:207487 -k1,505:20968346,40015095:207487 -k1,505:22489174,40015095:207486 -k1,505:24877044,40015095:207487 -k1,505:25832297,40015095:207487 -k1,505:29167162,40015095:207487 -k1,505:30057533,40015095:207486 -k1,505:31074390,40015095:207487 -k1,505:32583029,40015095:0 -) -(1,506:6630773,40856583:25952256,513147,126483 -k1,505:9500714,40856583:210490 -k1,505:10907890,40856583:210489 -k1,505:15673132,40856583:210490 -k1,505:18421175,40856583:210489 -k1,505:19163162,40856583:210490 -k1,505:20025079,40856583:210489 -k1,505:21965064,40856583:210490 -k1,505:24901851,40856583:210489 -k1,505:27363503,40856583:210490 -k1,505:28765437,40856583:210489 -k1,505:31227089,40856583:210490 -k1,506:32583029,40856583:0 -) -(1,506:6630773,41698071:25952256,513147,134348 -k1,505:9090208,41698071:240386 -k1,505:12381950,41698071:240386 -k1,505:14109348,41698071:240386 -k1,505:14819628,41698071:240387 -k1,505:15591511,41698071:240386 -k1,505:16187757,41698071:240386 -k1,505:18012148,41698071:240386 -k1,505:19577672,41698071:240386 -k1,505:20469486,41698071:240386 -k1,505:22217855,41698071:240386 -k1,505:23074279,41698071:240386 -k1,505:23670526,41698071:240387 -k1,505:25605673,41698071:240386 -k1,505:27766919,41698071:240386 -k1,505:29198750,41698071:240386 -k1,505:32583029,41698071:0 -) -(1,506:6630773,42539559:25952256,513147,134348 -k1,505:7869151,42539559:219293 -k1,505:9684902,42539559:219294 -k1,505:10520233,42539559:219293 -k1,505:13513666,42539559:219294 -k1,505:14680610,42539559:219293 -k1,505:15255764,42539559:219294 -k1,505:17348076,42539559:219293 -k1,505:21724319,42539559:219294 -k1,505:24211813,42539559:219293 -k1,505:25113992,42539559:219294 -k1,505:29116023,42539559:219293 -k1,505:30060145,42539559:219294 -k1,505:31563944,42539559:219293 -k1,505:32583029,42539559:0 -) -(1,506:6630773,43381047:25952256,505283,126483 -k1,505:10191165,43381047:176113 -k1,505:11471560,43381047:176113 -k1,505:12395439,43381047:176113 -k1,505:14382967,43381047:176113 -k1,505:15750525,43381047:176113 -k1,505:18600506,43381047:176112 -k1,505:20577548,43381047:176113 -k1,505:23388864,43381047:176113 -k1,505:26244089,43381047:176113 -k1,505:27611647,43381047:176113 -k1,505:29384217,43381047:176113 -k1,505:32583029,43381047:0 -) -(1,506:6630773,44222535:25952256,513147,126483 -k1,505:8355832,44222535:157438 -k1,505:10432163,44222535:157437 -k1,505:11746311,44222535:157438 -k1,505:12977884,44222535:157438 -k1,505:13593418,44222535:157437 -k1,505:18323958,44222535:157438 -k1,505:19140688,44222535:157438 -k1,505:20894583,44222535:157438 -k1,505:22629472,44222535:157437 -k1,505:23402948,44222535:157438 -k1,505:25262356,44222535:157438 -k1,505:29308044,44222535:157437 -k1,505:30662169,44222535:157438 -k1,505:32583029,44222535:0 -) -(1,506:6630773,45064023:25952256,513147,126483 -k1,505:8764576,45064023:214909 -k1,505:10292826,45064023:214908 -k1,505:11499295,45064023:214909 -k1,505:14624658,45064023:214909 -k1,505:16251868,45064023:214909 -k1,505:17658222,45064023:214909 -k1,505:19684545,45064023:214908 -k1,505:20430951,45064023:214909 -k1,505:21261898,45064023:214909 -k1,505:21891634,45064023:214893 -k1,505:26932614,45064023:214909 -k1,505:29015298,45064023:214908 -k1,505:30249292,45064023:214909 -k1,505:32583029,45064023:0 -) -] -(1,508:32583029,45706769:0,0,0 -g1,508:32583029,45706769 -) -) -] -(1,508:6630773,47279633:25952256,0,0 -h1,508:6630773,47279633:25952256,0,0 -) -] -(1,508:4262630,4025873:0,0,0 -[1,508:-473656,4025873:0,0,0 -(1,508:-473656,-710413:0,0,0 -(1,508:-473656,-710413:0,0,0 -g1,508:-473656,-710413 -) -g1,508:-473656,-710413 -) -] -) -] -!25288 -}29 -Input:211:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:212:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:213:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:214:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:215:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:216:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!569 -{30 -[1,529:4262630,47279633:28320399,43253760,0 -(1,529:4262630,4025873:0,0,0 -[1,529:-473656,4025873:0,0,0 -(1,529:-473656,-710413:0,0,0 -(1,529:-473656,-644877:0,0,0 -k1,529:-473656,-644877:-65536 +[1,646:3078558,4812305:0,0,0 +(1,646:3078558,49800853:0,16384,2228224 +g1,646:29030814,49800853 +g1,646:36135244,49800853 +(1,412:36135244,49800853:1720320,16384,2228224 +(1,412:36135244,52029077:16384,1703936,0 +[1,412:36135244,52029077:25952256,1703936,0 +(1,412:36135244,51504789:25952256,1179648,0 +(1,412:36135244,51504789:16384,1179648,0 +r1,646:36151628,51504789:16384,1179648,0 +) +k1,412:62087500,51504789:25935872 +g1,412:62087500,51504789 +) +] +) +g1,412:36675916,49800853 +(1,412:36675916,49800853:1179648,16384,0 +r1,646:37855564,49800853:1179648,16384,0 +) +) +k1,646:3078556,49800853:-34777008 +) +] +g1,646:6630773,4812305 +g1,646:6630773,4812305 +g1,646:9205682,4812305 +g1,646:11846782,4812305 +k1,646:31786110,4812305:19939328 +) +) +] +[1,646:6630773,45706769:25952256,40108032,0 +(1,646:6630773,45706769:25952256,40108032,0 +(1,646:6630773,45706769:0,0,0 +g1,646:6630773,45706769 +) +[1,646:6630773,45706769:25952256,40108032,0 +v1,616:6630773,6254097:0,393216,0 +(1,617:6630773,10263307:25952256,4402426,0 +g1,617:6630773,10263307 +g1,617:6237557,10263307 +r1,646:6368629,10263307:131072,4402426,0 +g1,617:6567858,10263307 +g1,617:6764466,10263307 +[1,617:6764466,10263307:25818563,4402426,0 +(1,617:6764466,6668639:25818563,807758,219026 +(1,616:6764466,6668639:0,807758,219026 +r1,646:7908217,6668639:1143751,1026784,219026 +k1,616:6764466,6668639:-1143751 +) +(1,616:6764466,6668639:1143751,807758,219026 +) +g1,616:8107446,6668639 +g1,616:8435126,6668639 +g1,616:9831698,6668639 +g1,616:11759112,6668639 +g1,616:13185175,6668639 +g1,616:16606154,6668639 +g1,616:17469918,6668639 +g1,616:20263062,6668639 +g1,616:21519387,6668639 +g1,616:23653894,6668639 +g1,616:24497997,6668639 +g1,616:25517737,6668639 +g1,616:26137707,6668639 +g1,616:29624222,6668639 +k1,616:32583029,6668639:971100 +g1,617:32583029,6668639 +) +(1,617:6764466,7533719:25818563,538806,132809 +k1,616:9134867,7533719:235238 +k1,616:10716870,7533719:235238 +$1,616:10716870,7533719 +k1,616:12791580,7533719:0 +k1,616:13206522,7533719:0 +k1,616:13621464,7533719:0 +k1,616:14036406,7533719:0 +k1,616:15281232,7533719:0 +k1,616:15696174,7533719:0 +(1,616:18600768,7632033:32768,0,0 +) +k1,616:20293304,7533719:0 +k1,616:20708246,7533719:0 +$1,616:22782956,7533719 +k1,616:23018194,7533719:235238 +k1,616:23904860,7533719:235238 +k1,616:25406254,7533719:235238 +k1,616:28868485,7533719:235238 +k1,616:31734338,7533719:235238 +k1,617:32583029,7533719:0 +) +(1,617:6764466,8398799:25818563,513147,134348 +k1,616:8561397,8398799:210960 +k1,616:9423786,8398799:210961 +k1,616:10837987,8398799:210960 +k1,616:12804657,8398799:210960 +k1,616:15996195,8398799:210961 +k1,616:19434148,8398799:210960 +k1,616:20892914,8398799:210960 +k1,616:24025469,8398799:210960 +k1,616:27586630,8398799:210961 +k1,616:31635378,8398799:210960 +k1,616:32583029,8398799:0 +) +(1,617:6764466,9263879:25818563,513147,126483 +k1,616:9710910,9263879:187378 +k1,616:13490972,9263879:187378 +k1,616:14669910,9263879:187378 +k1,616:17708104,9263879:187378 +k1,616:20086351,9263879:187378 +k1,616:20886491,9263879:187378 +k1,616:22277111,9263879:187379 +k1,616:23655934,9263879:187378 +k1,616:25545282,9263879:187378 +k1,616:27372371,9263879:187378 +k1,616:28245911,9263879:187378 +k1,616:30130016,9263879:187378 +k1,617:32583029,9263879:0 +) +(1,617:6764466,10128959:25818563,513147,134348 +g1,616:8561463,10128959 +g1,616:9752252,10128959 +g1,616:11663937,10128959 +g1,616:12514594,10128959 +g1,616:14954499,10128959 +g1,616:16666954,10128959 +g1,616:17885268,10128959 +g1,616:21683734,10128959 +g1,616:22542255,10128959 +g1,616:23760569,10128959 +k1,617:32583029,10128959:7066750 +g1,617:32583029,10128959 +) +] +g1,617:32583029,10263307 +) +h1,617:6630773,10263307:0,0,0 +v1,620:6630773,11128387:0,393216,0 +(1,623:6630773,21066672:25952256,10331501,0 +g1,623:6630773,21066672 +g1,623:6237557,21066672 +r1,646:6368629,21066672:131072,10331501,0 +g1,623:6567858,21066672 +g1,623:6764466,21066672 +[1,623:6764466,21066672:25818563,10331501,0 +(1,621:6764466,11542929:25818563,807758,219026 +(1,620:6764466,11542929:0,807758,219026 +r1,646:7908217,11542929:1143751,1026784,219026 +k1,620:6764466,11542929:-1143751 +) +(1,620:6764466,11542929:1143751,807758,219026 +) +g1,620:8107446,11542929 +g1,620:8435126,11542929 +g1,620:10143649,11542929 +g1,620:11179773,11542929 +g1,620:11612966,11542929 +g1,620:13847743,11542929 +g1,620:15104068,11542929 +g1,620:15760738,11542929 +g1,620:18793089,11542929 +g1,620:19639158,11542929 +g1,620:20905969,11542929 +k1,620:32583029,11542929:8171539 +g1,621:32583029,11542929 +) +(1,621:6764466,12408009:25818563,513147,134348 +k1,620:10623588,12408009:254642 +k1,620:11545386,12408009:254642 +k1,620:12214816,12408009:254587 +k1,620:14349686,12408009:254642 +k1,620:17966325,12408009:254642 +k1,620:19030337,12408009:254642 +k1,620:20304064,12408009:254642 +k1,620:23612684,12408009:254642 +k1,620:26113245,12408009:254642 +k1,620:27559332,12408009:254642 +k1,620:30890234,12408009:254642 +k1,621:32583029,12408009:0 +) +(1,621:6764466,13273089:25818563,513147,134348 +k1,620:8735601,13273089:284894 +k1,620:10211941,13273089:284895 +k1,620:11028332,13273089:284894 +k1,620:11929264,13273089:284894 +k1,620:14547240,13273089:284894 +k1,620:17034145,13273089:284895 +k1,620:17970467,13273089:284894 +k1,620:19539867,13273089:284894 +k1,620:20484054,13273089:284895 +k1,620:22470918,13273089:284894 +k1,620:25514878,13273089:284894 +k1,620:27685898,13273089:284894 +k1,620:28326653,13273089:284895 +k1,620:30306308,13273089:284894 +k1,621:32583029,13273089:0 +) +(1,621:6764466,14138169:25818563,513147,134348 +k1,620:8024723,14138169:270008 +k1,620:10540651,14138169:270009 +k1,620:14765757,14138169:270008 +k1,620:16077787,14138169:270008 +k1,620:17949495,14138169:270008 +k1,620:19935892,14138169:270009 +k1,620:20865192,14138169:270008 +k1,620:24211460,14138169:270008 +k1,620:27473842,14138169:270008 +k1,620:28762936,14138169:270009 +k1,620:31377167,14138169:270008 +k1,621:32583029,14138169:0 +) +(1,621:6764466,15003249:25818563,513147,134348 +k1,620:8365198,15003249:259865 +k1,620:9292220,15003249:259866 +k1,620:9966867,15003249:259804 +k1,620:10758230,15003249:259866 +k1,620:13802064,15003249:259865 +k1,620:16620455,15003249:259865 +k1,620:17899406,15003249:259866 +k1,620:23098720,15003249:259865 +k1,620:23773368,15003249:259805 +k1,620:26463308,15003249:259865 +k1,620:29416048,15003249:259866 +k1,620:31970267,15003249:259804 +k1,620:32583029,15003249:0 +) +(1,621:6764466,15868329:25818563,530548,141067 +k1,620:8839176,15868329:0 +k1,620:9254118,15868329:0 +k1,620:9669060,15868329:0 +k1,620:10084002,15868329:0 +k1,620:11743770,15868329:0 +k1,620:12158712,15868329:0 +(1,620:12988596,15966643:32768,0,0 +) +k1,620:15925958,15868329:0 +k1,620:16340900,15868329:0 +$1,620:18000668,15868329 +k1,620:18398557,15868329:224219 +k1,620:21754086,15868329:224219 +k1,620:22594343,15868329:224219 +k1,620:23837648,15868329:224220 +k1,620:25428948,15868329:224219 +k1,620:26312459,15868329:224219 +k1,620:28297630,15868329:224219 +k1,621:32583029,15868329:0 +) +(1,621:6764466,16733409:25818563,513147,134348 +k1,620:7340657,16733409:161348 +k1,620:8606324,16733409:161385 +k1,620:12072691,16733409:161386 +k1,620:12981842,16733409:161385 +k1,620:15880666,16733409:161385 +k1,620:16728214,16733409:161386 +k1,620:17245459,16733409:161385 +k1,620:21004115,16733409:161385 +k1,620:21824793,16733409:161386 +k1,620:23005263,16733409:161385 +k1,620:26220627,16733409:161386 +k1,620:28627931,16733409:161385 +k1,620:32583029,16733409:0 +) +(1,621:6764466,17598489:25818563,513147,126483 +k1,620:8827492,17598489:230639 +k1,620:10049690,17598489:230638 +k1,620:11972469,17598489:230639 +k1,620:15788582,17598489:230638 +k1,620:17512787,17598489:230639 +k1,620:18429587,17598489:230638 +k1,620:19679311,17598489:230639 +k1,620:21362227,17598489:230639 +k1,620:25374292,17598489:230638 +k1,620:26272087,17598489:230639 +k1,620:26917537,17598489:230607 +k1,620:28095826,17598489:230638 +k1,620:29345550,17598489:230639 +k1,620:32583029,17598489:0 +) +(1,621:6764466,18463569:25818563,530548,141067 +g1,620:7714082,18463569 +g1,620:9798782,18463569 +g1,620:10529508,18463569 +g1,620:14317488,18463569 +g1,620:19089819,18463569 +$1,620:19296913,18463569 +g1,620:21371623,18463569 +g1,620:21786565,18463569 +g1,620:22201507,18463569 +g1,620:22616449,18463569 +g1,620:24276217,18463569 +g1,620:24691159,18463569 +$1,620:26350927,18463569 +k1,621:32583029,18463569:5851338 +g1,621:32583029,18463569 +) +(1,623:6764466,19328649:25818563,530548,134348 +h1,622:6764466,19328649:983040,0,0 +k1,622:10884394,19328649:189734 +k1,622:12021780,19328649:189735 +k1,622:14146137,19328649:189734 +k1,622:17224699,19328649:189735 +k1,622:18605878,19328649:189734 +k1,622:20913071,19328649:189725 +k1,622:22094366,19328649:189735 +k1,622:25068069,19328649:189734 +k1,622:27816330,19328649:189735 +k1,622:29886283,19328649:189725 +$1,622:30093377,19328649 +k1,622:32168087,19328649:0 +k1,623:32583029,19328649:0 +) +(1,623:6764466,20193729:25818563,530548,141067 +k1,622:7179408,20193729:0 +k1,622:7594350,20193729:0 +k1,622:9254118,20193729:0 +k1,622:9669060,20193729:0 +(1,622:10498944,20292043:32768,0,0 +) +k1,622:13436306,20193729:0 +k1,622:13851248,20193729:0 +$1,622:15511016,20193729 +k1,622:16075358,20193729:357248 +k1,622:19113030,20193729:357249 +k1,622:20864229,20193729:357248 +k1,622:22723562,20193729:357248 +k1,622:24152979,20193729:357248 +k1,622:27804067,20193729:357249 +k1,622:31753999,20193729:357248 +k1,623:32583029,20193729:0 +) +(1,623:6764466,21058809:25818563,473825,7863 +k1,623:32583030,21058809:22423144 +g1,623:32583030,21058809 +) +] +g1,623:32583029,21066672 +) +h1,623:6630773,21066672:0,0,0 +v1,626:6630773,21931752:0,393216,0 +(1,627:6630773,26798177:25952256,5259641,0 +g1,627:6630773,26798177 +g1,627:6237557,26798177 +r1,646:6368629,26798177:131072,5259641,0 +g1,627:6567858,26798177 +g1,627:6764466,26798177 +[1,627:6764466,26798177:25818563,5259641,0 +(1,627:6764466,22346294:25818563,807758,219026 +(1,626:6764466,22346294:0,807758,219026 +r1,646:7908217,22346294:1143751,1026784,219026 +k1,626:6764466,22346294:-1143751 +) +(1,626:6764466,22346294:1143751,807758,219026 +) +g1,626:8107446,22346294 +g1,626:8435126,22346294 +g1,626:10143649,22346294 +g1,626:11179773,22346294 +g1,626:11612966,22346294 +g1,626:13847743,22346294 +g1,626:15104068,22346294 +g1,626:17897212,22346294 +g1,626:19244632,22346294 +g1,626:20090701,22346294 +g1,626:21357512,22346294 +k1,626:32583029,22346294:7719996 +g1,627:32583029,22346294 +) +(1,627:6764466,23211374:25818563,530548,132809 +k1,626:9731480,23211374:542837 +k1,626:13209675,23211374:542837 +k1,626:14744072,23211374:542837 +k1,626:18070878,23211374:542837 +k1,626:19226476,23211374:542836 +k1,626:21831731,23211374:542837 +k1,626:23643345,23211374:542837 +k1,626:25321921,23211374:542837 +$1,626:25529015,23211374 +k1,626:27603725,23211374:0 +k1,626:28018667,23211374:0 +k1,626:28433609,23211374:0 +k1,626:28848551,23211374:0 +k1,626:30923261,23211374:0 +k1,626:31338203,23211374:0 +k1,626:32168087,23211374:0 +k1,627:32583029,23211374:0 +) +(1,627:6764466,24076454:25818563,530548,132809 +k1,626:10084002,24076454:0 +k1,626:10498944,24076454:0 +(1,626:12573654,24174768:32768,0,0 +) +k1,626:15096074,24076454:0 +k1,626:15511016,24076454:0 +$1,626:18830552,24076454 +k1,626:19338752,24076454:301106 +k1,626:20299150,24076454:301106 +k1,626:22485727,24076454:301106 +k1,626:23805919,24076454:301107 +k1,626:25354831,24076454:301106 +k1,626:27989674,24076454:301106 +k1,626:28822277,24076454:301106 +k1,626:31635378,24076454:301106 +k1,626:32583029,24076454:0 +) +(1,627:6764466,24941534:25818563,513147,134348 +k1,626:9512111,24941534:224509 +k1,626:10755706,24941534:224510 +k1,626:12476402,24941534:224509 +k1,626:15692630,24941534:224509 +k1,626:17108585,24941534:224510 +k1,626:20223887,24941534:224509 +k1,626:21064434,24941534:224509 +k1,626:22308029,24941534:224510 +k1,626:24288248,24941534:224509 +k1,626:25140592,24941534:224509 +k1,626:27116878,24941534:224509 +k1,626:29038770,24941534:224510 +k1,626:30282364,24941534:224509 +k1,626:31154344,24941534:224484 +k1,626:32583029,24941534:0 +) +(1,627:6764466,25806614:25818563,505283,126483 +k1,626:7608336,25806614:231108 +k1,626:9298275,25806614:231108 +k1,626:12513893,25806614:231108 +k1,626:13427886,25806614:231108 +k1,626:15731898,25806614:231108 +k1,626:17095468,25806614:231108 +k1,626:19295934,25806614:231109 +k1,626:21339768,25806614:231108 +k1,626:22253761,25806614:231108 +k1,626:23865057,25806614:231108 +k1,626:25433099,25806614:231108 +k1,626:26411973,25806614:231108 +k1,626:28977473,25806614:231108 +k1,626:31966991,25806614:231108 +k1,626:32583029,25806614:0 +) +(1,627:6764466,26671694:25818563,513147,126483 +g1,626:7982780,26671694 +g1,626:10447589,26671694 +g1,626:13723078,26671694 +k1,627:32583028,26671694:16916152 +g1,627:32583028,26671694 +) +] +g1,627:32583029,26798177 +) +h1,627:6630773,26798177:0,0,0 +v1,630:6630773,27663257:0,393216,0 +(1,631:6630773,31672467:25952256,4402426,0 +g1,631:6630773,31672467 +g1,631:6237557,31672467 +r1,646:6368629,31672467:131072,4402426,0 +g1,631:6567858,31672467 +g1,631:6764466,31672467 +[1,631:6764466,31672467:25818563,4402426,0 +(1,631:6764466,28077799:25818563,807758,219026 +(1,630:6764466,28077799:0,807758,219026 +r1,646:7908217,28077799:1143751,1026784,219026 +k1,630:6764466,28077799:-1143751 +) +(1,630:6764466,28077799:1143751,807758,219026 +) +g1,630:8107446,28077799 +g1,630:8435126,28077799 +g1,630:10143649,28077799 +g1,630:11495656,28077799 +g1,630:11928849,28077799 +g1,630:13149129,28077799 +g1,630:15482210,28077799 +g1,630:16345974,28077799 +g1,630:19139118,28077799 +g1,630:20051379,28077799 +g1,630:20620231,28077799 +g1,630:22652502,28077799 +k1,630:32583029,28077799:7218647 +g1,631:32583029,28077799 +) +(1,631:6764466,28942879:25818563,513147,134348 +k1,630:7890113,28942879:223216 +k1,630:11673899,28942879:223215 +k1,630:13181621,28942879:223216 +k1,630:13936333,28942879:223215 +k1,630:15513523,28942879:223216 +k1,630:17015346,28942879:223216 +k1,630:19209884,28942879:223215 +k1,630:20380751,28942879:223216 +k1,630:23043216,28942879:223215 +k1,630:23949317,28942879:223216 +k1,630:26774312,28942879:223216 +k1,630:27683689,28942879:223215 +k1,630:29228766,28942879:223216 +k1,630:30111273,28942879:223215 +k1,630:30690349,28942879:223216 +k1,630:32583029,28942879:0 +) +(1,631:6764466,29807959:25818563,530548,132809 +k1,630:7491364,29807959:195401 +k1,630:8705850,29807959:195401 +k1,630:11325429,29807959:195402 +k1,630:13289647,29807959:195401 +k1,630:15864005,29807959:195401 +k1,630:18613999,29807959:195401 +k1,630:21603856,29807959:195402 +k1,630:23357703,29807959:195401 +k1,630:25321921,29807959:195401 +$1,630:25529015,29807959 +k1,630:27603725,29807959:0 +k1,630:28018667,29807959:0 +k1,630:28433609,29807959:0 +k1,630:28848551,29807959:0 +k1,630:30923261,29807959:0 +k1,630:31338203,29807959:0 +k1,630:32168087,29807959:0 +k1,631:32583029,29807959:0 +) +(1,631:6764466,30673039:25818563,530548,132809 +k1,630:10084002,30673039:0 +k1,630:10498944,30673039:0 +k1,630:12573654,30673039:0 +k1,630:12988596,30673039:0 +$1,630:15478248,30673039 +k1,630:16128223,30673039:269211 +k1,630:17439455,30673039:269210 +k1,630:20901580,30673039:269211 +k1,630:22263275,30673039:269210 +k1,630:22888346,30673039:269211 +k1,630:24405362,30673039:269210 +k1,630:27178704,30673039:269211 +k1,630:27979411,30673039:269210 +k1,630:28864660,30673039:269211 +k1,630:30885647,30673039:269210 +k1,630:32583029,30673039:0 +) +(1,631:6764466,31538119:25818563,513147,134348 +g1,630:9324302,31538119 +g1,630:10714976,31538119 +g1,630:11861856,31538119 +g1,630:14284066,31538119 +g1,630:14839155,31538119 +g1,630:16159050,31538119 +g1,630:17673587,31538119 +g1,630:20721011,31538119 +g1,630:23424371,31538119 +g1,630:25550358,31538119 +g1,630:27103561,31538119 +k1,631:32583029,31538119:4027190 +g1,631:32583029,31538119 +) +] +g1,631:32583029,31672467 +) +h1,631:6630773,31672467:0,0,0 +(1,633:6630773,34503627:25952256,32768,229376 +(1,633:6630773,34503627:0,32768,229376 +(1,633:6630773,34503627:5505024,32768,229376 +r1,646:12135797,34503627:5505024,262144,229376 +) +k1,633:6630773,34503627:-5505024 +) +(1,633:6630773,34503627:25952256,32768,0 +r1,646:32583029,34503627:25952256,32768,0 +) +) +(1,633:6630773,36135479:25952256,606339,161218 +(1,633:6630773,36135479:1974731,582746,14155 +g1,633:6630773,36135479 +g1,633:8605504,36135479 +) +g1,633:11813360,36135479 +k1,633:32583030,36135479:17773364 +g1,633:32583030,36135479 +) +(1,635:6630773,37393775:25952256,513147,134348 +k1,634:10672004,37393775:247352 +k1,634:11867006,37393775:247351 +k1,634:14389768,37393775:247352 +k1,634:17039669,37393775:247351 +k1,634:18278581,37393775:247352 +k1,634:21916765,37393775:247351 +k1,634:22973487,37393775:247352 +k1,634:24551219,37393775:247351 +k1,634:25969044,37393775:247352 +k1,634:27612967,37393775:247351 +k1,634:28511747,37393775:247352 +k1,634:29851583,37393775:247351 +k1,634:30687448,37393775:247352 +k1,634:31412556,37393775:247351 +k1,634:32583029,37393775:0 +) +(1,635:6630773,38258855:25952256,513147,134348 +k1,634:9510097,38258855:217907 +k1,634:12334371,38258855:217907 +k1,634:15075415,38258855:217908 +k1,634:17054930,38258855:217907 +k1,634:18624845,38258855:217907 +k1,634:20728878,38258855:217907 +k1,634:22699873,38258855:217907 +k1,634:23600665,38258855:217907 +k1,634:25443865,38258855:217908 +k1,634:26832245,38258855:217907 +k1,634:29006402,38258855:217907 +k1,634:31015408,38258855:217907 +k1,634:32583029,38258855:0 +) +(1,635:6630773,39123935:25952256,505283,134348 +k1,634:9500058,39123935:267506 +k1,634:10418992,39123935:267506 +k1,634:12301305,39123935:267506 +k1,634:14071552,39123935:267506 +k1,634:16674106,39123935:267506 +k1,634:19469990,39123935:267505 +k1,634:21252033,39123935:267506 +k1,634:22051036,39123935:267506 +k1,634:24375062,39123935:267506 +k1,634:26155794,39123935:267506 +k1,634:29751218,39123935:267506 +k1,634:32583029,39123935:0 +) +(1,635:6630773,39989015:25952256,513147,126483 +k1,634:7814453,39989015:198019 +k1,634:9503417,39989015:198020 +k1,634:11226458,39989015:198019 +k1,634:14382773,39989015:198020 +k1,634:15772237,39989015:198019 +k1,634:19377474,39989015:198020 +k1,634:21376422,39989015:198019 +k1,634:22678724,39989015:198020 +k1,634:23624509,39989015:198019 +k1,634:28550952,39989015:198020 +k1,634:29226728,39989015:198019 +k1,634:30595221,39989015:198020 +k1,634:31970267,39989015:198019 +k1,634:32583029,39989015:0 +) +(1,635:6630773,40854095:25952256,513147,134348 +k1,634:9065314,40854095:176826 +k1,634:9656960,40854095:176803 +k1,634:11329973,40854095:176826 +k1,634:12791304,40854095:176825 +k1,634:13499627,40854095:176826 +k1,634:15435439,40854095:176826 +k1,634:16263692,40854095:176825 +k1,634:17188284,40854095:176826 +k1,634:19687706,40854095:176826 +k1,634:21055976,40854095:176825 +k1,634:22708017,40854095:176826 +k1,634:24576982,40854095:176825 +k1,634:28065342,40854095:176826 +k1,634:29636119,40854095:176826 +k1,634:30440123,40854095:176825 +k1,634:31900144,40854095:176826 +k1,635:32583029,40854095:0 +) +(1,635:6630773,41719175:25952256,513147,134348 +k1,634:8259044,41719175:187790 +k1,634:10849385,41719175:187791 +k1,634:12224687,41719175:187790 +k1,634:14898259,41719175:187791 +k1,634:15702087,41719175:187790 +k1,634:20289965,41719175:187791 +k1,634:23960338,41719175:187790 +k1,634:25339574,41719175:187791 +k1,634:26843982,41719175:187790 +k1,634:28832702,41719175:187791 +k1,634:30152954,41719175:187790 +k1,634:32583029,41719175:0 +) +(1,635:6630773,42584255:25952256,513147,134348 +k1,634:7204570,42584255:217937 +k1,634:9590438,42584255:217937 +k1,634:16870534,42584255:217936 +k1,634:18515190,42584255:217937 +k1,634:19392419,42584255:217937 +k1,634:23962602,42584255:217937 +k1,634:24866701,42584255:217937 +k1,634:25855341,42584255:217937 +k1,634:28397184,42584255:217936 +k1,634:29806566,42584255:217937 +k1,634:31412556,42584255:217937 +k1,634:32583029,42584255:0 +) +(1,635:6630773,43449335:25952256,513147,126483 +k1,634:8975569,43449335:146063 +k1,634:10140718,43449335:146064 +k1,634:14475187,43449335:146063 +k1,634:16424145,43449335:146063 +k1,634:17229501,43449335:146064 +k1,634:18394649,43449335:146063 +k1,634:20383585,43449335:146064 +k1,634:21726335,43449335:146063 +k1,634:24119628,43449335:146063 +k1,634:24932848,43449335:146064 +k1,634:25667424,43449335:146063 +k1,634:27004932,43449335:146063 +k1,634:27939394,43449335:146064 +k1,634:30549611,43449335:146063 +k1,634:31378560,43449335:146064 +k1,634:32051532,43449335:146063 +k1,634:32583029,43449335:0 +) +(1,635:6630773,44314415:25952256,513147,134348 +k1,634:8132707,44314415:166966 +k1,634:9576969,44314415:166965 +k1,634:10505463,44314415:166966 +k1,634:12416341,44314415:166965 +k1,634:13913688,44314415:166966 +k1,634:15584704,44314415:166965 +k1,634:18449787,44314415:166966 +k1,634:19229514,44314415:166965 +k1,634:20954271,44314415:166966 +k1,634:23116152,44314415:166965 +k1,634:23942410,44314415:166966 +k1,634:24897773,44314415:166965 +k1,634:29370454,44314415:166966 +k1,634:32583029,44314415:0 +) +(1,635:6630773,45179495:25952256,505283,126483 +g1,634:8804602,45179495 +g1,634:11543351,45179495 +g1,634:12314709,45179495 +g1,634:13705383,45179495 +g1,634:15636729,45179495 +k1,635:32583029,45179495:14764606 +g1,635:32583029,45179495 +) +] +(1,646:32583029,45706769:0,0,0 +g1,646:32583029,45706769 +) +) +] +(1,646:6630773,47279633:25952256,0,0 +h1,646:6630773,47279633:25952256,0,0 +) +] +(1,646:4262630,4025873:0,0,0 +[1,646:-473656,4025873:0,0,0 +(1,646:-473656,-710413:0,0,0 +(1,646:-473656,-710413:0,0,0 +g1,646:-473656,-710413 +) +g1,646:-473656,-710413 +) +] +) +] +!23034 +}36 +!11 +{37 +[1,646:4262630,47279633:28320399,43253760,0 +(1,646:4262630,4025873:0,0,0 +[1,646:-473656,4025873:0,0,0 +(1,646:-473656,-710413:0,0,0 +(1,646:-473656,-644877:0,0,0 +k1,646:-473656,-644877:-65536 ) -(1,529:-473656,4736287:0,0,0 -k1,529:-473656,4736287:5209943 +(1,646:-473656,4736287:0,0,0 +k1,646:-473656,4736287:5209943 ) -g1,529:-473656,-710413 +g1,646:-473656,-710413 ) ] ) -[1,529:6630773,47279633:25952256,43253760,0 -[1,529:6630773,4812305:25952256,786432,0 -(1,529:6630773,4812305:25952256,477757,134348 -(1,529:6630773,4812305:25952256,477757,134348 -g1,529:3078558,4812305 -[1,529:3078558,4812305:0,0,0 -(1,529:3078558,2439708:0,1703936,0 -k1,529:1358238,2439708:-1720320 -(1,417:1358238,2439708:1720320,1703936,0 -(1,417:1358238,2439708:1179648,16384,0 -r1,529:2537886,2439708:1179648,16384,0 +[1,646:6630773,47279633:25952256,43253760,0 +[1,646:6630773,4812305:25952256,786432,0 +(1,646:6630773,4812305:25952256,0,0 +(1,646:6630773,4812305:25952256,0,0 +g1,646:3078558,4812305 +[1,646:3078558,4812305:0,0,0 +(1,646:3078558,2439708:0,1703936,0 +k1,646:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,646:2537886,2439708:1179648,16384,0 ) -g1,417:3062174,2439708 -(1,417:3062174,2439708:16384,1703936,0 -[1,417:3062174,2439708:25952256,1703936,0 -(1,417:3062174,1915420:25952256,1179648,0 -(1,417:3062174,1915420:16384,1179648,0 -r1,529:3078558,1915420:16384,1179648,0 +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,646:3078558,1915420:16384,1179648,0 ) -k1,417:29014430,1915420:25935872 -g1,417:29014430,1915420 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) ] ) ) ) ] -[1,529:3078558,4812305:0,0,0 -(1,529:3078558,2439708:0,1703936,0 -g1,529:29030814,2439708 -g1,529:36135244,2439708 -(1,417:36135244,2439708:1720320,1703936,0 -(1,417:36135244,2439708:16384,1703936,0 -[1,417:36135244,2439708:25952256,1703936,0 -(1,417:36135244,1915420:25952256,1179648,0 -(1,417:36135244,1915420:16384,1179648,0 -r1,529:36151628,1915420:16384,1179648,0 +[1,646:3078558,4812305:0,0,0 +(1,646:3078558,2439708:0,1703936,0 +g1,646:29030814,2439708 +g1,646:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,646:36151628,1915420:16384,1179648,0 ) -k1,417:62087500,1915420:25935872 -g1,417:62087500,1915420 +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) ] ) -g1,417:36675916,2439708 -(1,417:36675916,2439708:1179648,16384,0 -r1,529:37855564,2439708:1179648,16384,0 +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,646:37855564,2439708:1179648,16384,0 ) ) -k1,529:3078556,2439708:-34777008 +k1,646:3078556,2439708:-34777008 ) ] -[1,529:3078558,4812305:0,0,0 -(1,529:3078558,49800853:0,16384,2228224 -k1,529:1358238,49800853:-1720320 -(1,417:1358238,49800853:1720320,16384,2228224 -(1,417:1358238,49800853:1179648,16384,0 -r1,529:2537886,49800853:1179648,16384,0 +[1,646:3078558,4812305:0,0,0 +(1,646:3078558,49800853:0,16384,2228224 +k1,646:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,646:2537886,49800853:1179648,16384,0 ) -g1,417:3062174,49800853 -(1,417:3062174,52029077:16384,1703936,0 -[1,417:3062174,52029077:25952256,1703936,0 -(1,417:3062174,51504789:25952256,1179648,0 -(1,417:3062174,51504789:16384,1179648,0 -r1,529:3078558,51504789:16384,1179648,0 +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,646:3078558,51504789:16384,1179648,0 ) -k1,417:29014430,51504789:25935872 -g1,417:29014430,51504789 +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) ] ) ) ) ] -[1,529:3078558,4812305:0,0,0 -(1,529:3078558,49800853:0,16384,2228224 -g1,529:29030814,49800853 -g1,529:36135244,49800853 -(1,417:36135244,49800853:1720320,16384,2228224 -(1,417:36135244,52029077:16384,1703936,0 -[1,417:36135244,52029077:25952256,1703936,0 -(1,417:36135244,51504789:25952256,1179648,0 -(1,417:36135244,51504789:16384,1179648,0 -r1,529:36151628,51504789:16384,1179648,0 +[1,646:3078558,4812305:0,0,0 +(1,646:3078558,49800853:0,16384,2228224 +g1,646:29030814,49800853 +g1,646:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,646:36151628,51504789:16384,1179648,0 ) -k1,417:62087500,51504789:25935872 -g1,417:62087500,51504789 +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 ) ] ) -g1,417:36675916,49800853 -(1,417:36675916,49800853:1179648,16384,0 -r1,529:37855564,49800853:1179648,16384,0 +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,646:37855564,49800853:1179648,16384,0 ) ) -k1,529:3078556,49800853:-34777008 +k1,646:3078556,49800853:-34777008 ) ] -g1,529:6630773,4812305 -g1,529:6630773,4812305 -g1,529:8592265,4812305 -g1,529:9205682,4812305 -k1,529:31786110,4812305:22580428 -) -) -] -[1,529:6630773,45706769:25952256,40108032,0 -(1,529:6630773,45706769:25952256,40108032,0 -(1,529:6630773,45706769:0,0,0 -g1,529:6630773,45706769 -) -[1,529:6630773,45706769:25952256,40108032,0 -[1,521:6630773,14814196:25952256,9215459,0 -[1,521:6630773,14814196:25952256,9215459,0 -(1,520:6630773,10666401:25952256,5067664,0 -g1,520:6630773,10666401 -h1,519:6630773,10666401:0,0,0 -(1,519:6630773,10666401:25952256,5067664,0 -) -g1,520:32583029,10666401 -g1,520:32583029,10666401 -) -(1,520:6630773,12163249:25952256,485622,11795 -h1,520:6630773,12163249:0,0,0 -g1,520:9295467,12163249 -k1,520:32583028,12163249:22297312 -g1,520:32583028,12163249 -) -(1,520:6630773,13004737:25952256,505283,126483 -h1,520:6630773,13004737:0,0,0 -k1,520:8054217,13004737:226757 -k1,520:8695789,13004737:226729 -k1,520:11342791,13004737:226757 -k1,520:14894188,13004737:226756 -k1,520:15736983,13004737:226757 -k1,520:18561587,13004737:226757 -k1,520:19985031,13004737:226757 -k1,520:21865260,13004737:226756 -k1,520:25581809,13004737:226757 -k1,520:27283781,13004737:226757 -k1,520:29020488,13004737:226757 -k1,520:31054072,13004737:226756 -k1,520:31896867,13004737:226757 -k1,520:32583029,13004737:0 -) -(1,520:6630773,13846225:25952256,505283,134348 -k1,520:7416549,13846225:169738 -k1,520:9571373,13846225:169738 -h1,520:10541961,13846225:0,0,0 -k1,520:10885369,13846225:169738 -k1,520:14666797,13846225:169739 -k1,520:17259401,13846225:169738 -k1,520:18190667,13846225:169738 -k1,520:19379490,13846225:169738 -k1,520:20930072,13846225:169738 -k1,520:22091370,13846225:169738 -k1,520:25324262,13846225:169739 -k1,520:26110038,13846225:169738 -k1,520:28550599,13846225:169738 -k1,520:30409855,13846225:169738 -k1,520:32583029,13846225:0 -) -(1,520:6630773,14687713:25952256,505283,126483 -g1,520:9608729,14687713 -g1,520:10569486,14687713 -g1,520:11183558,14687713 -g1,520:12374347,14687713 -g1,520:15636729,14687713 -g1,520:16451996,14687713 -k1,520:32583029,14687713:14269811 -g1,520:32583029,14687713 -) -] -] -(1,506:6630773,16780276:25952256,513147,134348 -k1,505:9451322,16780276:253504 -k1,505:12706375,16780276:253504 -k1,505:14743114,16780276:253504 -k1,505:17564319,16780276:253504 -k1,505:18588526,16780276:253504 -(1,505:18588526,16780276:0,452978,115847 -r1,529:20705351,16780276:2116825,568825,115847 -k1,505:18588526,16780276:-2116825 -) -(1,505:18588526,16780276:2116825,452978,115847 -k1,505:18588526,16780276:3277 -h1,505:20702074,16780276:0,411205,112570 -) -k1,505:20958854,16780276:253503 -k1,505:22195398,16780276:253504 -k1,505:23467987,16780276:253504 -k1,505:26065714,16780276:253504 -k1,505:28905924,16780276:253504 -k1,505:32051532,16780276:253504 -k1,505:32583029,16780276:0 -) -(1,506:6630773,17621764:25952256,513147,126483 -g1,505:11146859,17621764 -g1,505:12280631,17621764 -g1,505:13131288,17621764 -g1,505:14349602,17621764 -g1,505:17105390,17621764 -g1,505:19223513,17621764 -g1,505:20441827,17621764 -(1,505:20441827,17621764:0,452978,115847 -r1,529:22558652,17621764:2116825,568825,115847 -k1,505:20441827,17621764:-2116825 -) -(1,505:20441827,17621764:2116825,452978,115847 -k1,505:20441827,17621764:3277 -h1,505:22555375,17621764:0,411205,112570 -) -g1,505:22757881,17621764 -g1,505:23940150,17621764 -g1,505:25346552,17621764 -g1,505:26958082,17621764 -k1,506:32583029,17621764:3883655 -g1,506:32583029,17621764 -) -v1,508:6630773,18987540:0,393216,0 -(1,509:6630773,24583535:25952256,5989211,0 -g1,509:6630773,24583535 -g1,509:6303093,24583535 -r1,529:6401397,24583535:98304,5989211,0 -g1,509:6600626,24583535 -g1,509:6797234,24583535 -[1,509:6797234,24583535:25785795,5989211,0 -(1,509:6797234,19408124:25785795,813800,267386 -(1,508:6797234,19408124:0,813800,267386 -r1,529:8134168,19408124:1336934,1081186,267386 -k1,508:6797234,19408124:-1336934 -) -(1,508:6797234,19408124:1336934,813800,267386 -) -k1,508:8270888,19408124:136720 -k1,508:8598568,19408124:327680 -k1,508:11159465,19408124:136720 -k1,508:13894688,19408124:136720 -k1,508:15022968,19408124:136720 -k1,508:19361201,19408124:136720 -k1,508:20184083,19408124:136720 -k1,508:20676662,19408124:136719 -k1,508:22734242,19408124:136720 -k1,508:24264913,19408124:136720 -k1,508:24757493,19408124:136720 -k1,508:26632228,19408124:136720 -k1,508:28942122,19408124:136720 -k1,508:29694880,19408124:136720 -(1,508:29694880,19408124:0,452978,122846 -r1,529:31459993,19408124:1765113,575824,122846 -k1,508:29694880,19408124:-1765113 -) -(1,508:29694880,19408124:1765113,452978,122846 -k1,508:29694880,19408124:3277 -h1,508:31456716,19408124:0,411205,112570 -) -k1,508:31770383,19408124:136720 -k1,509:32583029,19408124:0 -) -(1,509:6797234,20249612:25785795,513147,126483 -k1,508:8685925,20249612:174269 -k1,508:10746319,20249612:174268 -k1,508:11939673,20249612:174269 -k1,508:13767414,20249612:174268 -k1,508:15862543,20249612:174269 -k1,508:17955705,20249612:174268 -k1,508:20465022,20249612:174269 -k1,508:22202325,20249612:174269 -(1,508:22202325,20249612:0,452978,115847 -r1,529:24319150,20249612:2116825,568825,115847 -k1,508:22202325,20249612:-2116825 -) -(1,508:22202325,20249612:2116825,452978,115847 -k1,508:22202325,20249612:3277 -h1,508:24315873,20249612:0,411205,112570 -) -k1,508:24493418,20249612:174268 -k1,508:25859132,20249612:174269 -(1,508:25859132,20249612:0,452978,115847 -r1,529:29031092,20249612:3171960,568825,115847 -k1,508:25859132,20249612:-3171960 -) -(1,508:25859132,20249612:3171960,452978,115847 -k1,508:25859132,20249612:3277 -h1,508:29027815,20249612:0,411205,112570 -) -k1,508:29205360,20249612:174268 -k1,508:30371189,20249612:174269 -k1,508:32583029,20249612:0 -) -(1,509:6797234,21091100:25785795,513147,134348 -k1,508:8395798,21091100:217720 -k1,508:10534378,21091100:217720 -k1,508:11283595,21091100:217720 -k1,508:14390141,21091100:217719 -k1,508:15369389,21091100:217720 -k1,508:18011286,21091100:217720 -k1,508:19420451,21091100:217720 -k1,508:21818554,21091100:217720 -k1,508:22784040,21091100:217720 -k1,508:24068031,21091100:217720 -k1,508:27120837,21091100:217719 -k1,508:28021442,21091100:217720 -k1,508:30584696,21091100:217720 -k1,508:31563944,21091100:217720 -k1,508:32583029,21091100:0 -) -(1,509:6797234,21932588:25785795,513147,126483 -k1,508:8497197,21932588:145449 -k1,508:10132935,21932588:145449 -k1,508:10894421,21932588:145448 -k1,508:12058955,21932588:145449 -k1,508:13558378,21932588:145449 -k1,508:14983745,21932588:145449 -k1,508:16496275,21932588:145449 -k1,508:17301015,21932588:145448 -k1,508:18234862,21932588:145449 -k1,508:21961854,21932588:145449 -k1,508:22565400,21932588:145449 -k1,508:24891232,21932588:145449 -k1,508:25784447,21932588:145449 -k1,508:28449099,21932588:145448 -k1,508:29785993,21932588:145449 -k1,508:30950527,21932588:145449 -k1,509:32583029,21932588:0 -) -(1,509:6797234,22774076:25785795,513147,134348 -k1,508:8009265,22774076:207364 -k1,508:10484831,22774076:207365 -k1,508:13042316,22774076:207364 -k1,508:14951650,22774076:207364 -k1,508:16726635,22774076:207364 -k1,508:19421091,22774076:207365 -k1,508:21071558,22774076:207364 -(1,508:21071558,22774076:0,452978,115847 -r1,529:23188383,22774076:2116825,568825,115847 -k1,508:21071558,22774076:-2116825 -) -(1,508:21071558,22774076:2116825,452978,115847 -k1,508:21071558,22774076:3277 -h1,508:23185106,22774076:0,411205,112570 -) -k1,508:23395747,22774076:207364 -k1,508:24794556,22774076:207364 -(1,508:24794556,22774076:0,452978,115847 -r1,529:27966516,22774076:3171960,568825,115847 -k1,508:24794556,22774076:-3171960 -) -(1,508:24794556,22774076:3171960,452978,115847 -k1,508:24794556,22774076:3277 -h1,508:27963239,22774076:0,411205,112570 -) -k1,508:28173881,22774076:207365 -k1,508:30561628,22774076:207364 -k1,508:31835263,22774076:207364 -k1,508:32583029,22774076:0 -) -(1,509:6797234,23615564:25785795,505283,126483 -k1,508:9312962,23615564:170194 -k1,508:10244684,23615564:170194 -k1,508:11433963,23615564:170194 -k1,508:13158671,23615564:170194 -k1,508:15399803,23615564:170194 -k1,508:16221425,23615564:170194 -k1,508:17961862,23615564:170194 -k1,508:19151141,23615564:170194 -k1,508:19736149,23615564:170165 -k1,508:23464293,23615564:170194 -k1,508:26569189,23615564:170194 -k1,508:27942624,23615564:170194 -k1,508:28644315,23615564:170194 -k1,508:32583029,23615564:0 -) -(1,509:6797234,24457052:25785795,513147,126483 -g1,508:7682625,24457052 -g1,508:8339951,24457052 -g1,508:9643462,24457052 -g1,508:10590457,24457052 -g1,508:12075502,24457052 -g1,508:14075660,24457052 -g1,508:17052960,24457052 -g1,508:18819810,24457052 -g1,508:21029028,24457052 -k1,509:32583029,24457052:10965488 -g1,509:32583029,24457052 -) -] -g1,509:32583029,24583535 -) -h1,509:6630773,24583535:0,0,0 -(1,511:6630773,26674795:25952256,555811,147783 -(1,511:6630773,26674795:2450326,534184,12975 -g1,511:6630773,26674795 -g1,511:9081099,26674795 -) -g1,511:11359852,26674795 -g1,511:12082190,26674795 -k1,511:32583029,26674795:15886383 -g1,511:32583029,26674795 -) -(1,514:6630773,27909499:25952256,505283,134348 -k1,513:9573412,27909499:304160 -k1,513:11002170,27909499:304160 -k1,513:13017474,27909499:304159 -k1,513:18034983,27909499:304160 -k1,513:19733094,27909499:304160 -k1,513:23443815,27909499:304160 -k1,513:26306500,27909499:304159 -k1,513:26966520,27909499:304160 -k1,513:29893431,27909499:304160 -k1,513:32583029,27909499:0 -) -(1,514:6630773,28750987:25952256,513147,126483 -k1,513:10030545,28750987:231762 -k1,513:11633320,28750987:231762 -k1,513:14679853,28750987:231762 -k1,513:17180472,28750987:231763 -k1,513:18696740,28750987:231762 -k1,513:20135675,28750987:231762 -k1,513:23672418,28750987:231762 -k1,513:25771956,28750987:231762 -k1,513:26359578,28750987:231762 -k1,513:29048941,28750987:231763 -k1,513:29768258,28750987:231729 -k1,513:32583029,28750987:0 -) -(1,514:6630773,29592475:25952256,513147,134348 -k1,513:9600166,29592475:159209 -k1,513:10410803,29592475:159209 -k1,513:10925872,29592475:159209 -k1,513:14161340,29592475:159208 -k1,513:17236246,29592475:159209 -k1,513:18011493,29592475:159209 -k1,513:19772402,29592475:159209 -k1,513:21628993,29592475:159209 -k1,513:22144062,29592475:159209 -k1,513:24776600,29592475:159209 -k1,513:25618694,29592475:159209 -k1,513:26133762,29592475:159208 -k1,513:27831756,29592475:159209 -k1,513:30000954,29592475:159209 -k1,513:30516023,29592475:159209 -k1,514:32583029,29592475:0 -) -(1,514:6630773,30433963:25952256,513147,134348 -k1,513:7945208,30433963:218673 -k1,513:9544725,30433963:218673 -k1,513:12747252,30433963:218673 -k1,513:13497422,30433963:218673 -k1,513:14914749,30433963:218673 -k1,513:17001198,30433963:218673 -k1,513:17575731,30433963:218673 -k1,513:20388319,30433963:218673 -k1,513:21234827,30433963:218673 -k1,513:22551228,30433963:218673 -k1,513:24310652,30433963:218673 -k1,513:25548410,30433963:218673 -k1,513:26181907,30433963:218654 -k1,513:28820825,30433963:218673 -k1,513:31231677,30433963:218673 -h1,513:32202265,30433963:0,0,0 -k1,513:32583029,30433963:0 -) -(1,514:6630773,31275451:25952256,513147,7863 -g1,513:8210846,31275451 -g1,513:8941572,31275451 -g1,513:10159886,31275451 -g1,513:12292427,31275451 -g1,513:13872500,31275451 -g1,513:16881913,31275451 -g1,513:17748298,31275451 -k1,514:32583029,31275451:14246218 -g1,514:32583029,31275451 -) -(1,516:6630773,32116939:25952256,513147,134348 -h1,515:6630773,32116939:983040,0,0 -k1,515:9986823,32116939:166413 -k1,515:13643029,32116939:166414 -k1,515:14422204,32116939:166413 -k1,515:15607703,32116939:166414 -k1,515:16188927,32116939:166381 -k1,515:18775585,32116939:166413 -k1,515:19473495,32116939:166413 -k1,515:21617130,32116939:166414 -k1,515:23481581,32116939:166413 -k1,515:24804705,32116939:166414 -k1,515:25502615,32116939:166413 -k1,515:28002111,32116939:166414 -k1,515:30631367,32116939:166413 -k1,515:32583029,32116939:0 -) -(1,516:6630773,32958427:25952256,513147,134348 -k1,515:9777266,32958427:190164 -k1,515:12978810,32958427:190165 -k1,515:15334939,32958427:190164 -k1,515:16207988,32958427:190164 -k1,515:18294765,32958427:190165 -k1,515:19136357,32958427:190164 -k1,515:22991294,32958427:190164 -k1,515:24511840,32958427:190165 -k1,515:25472707,32958427:190164 -k1,515:26077705,32958427:190155 -k1,515:28963366,32958427:190165 -k1,515:29836415,32958427:190164 -k1,515:32583029,32958427:0 -) -(1,516:6630773,33799915:25952256,513147,134348 -k1,515:7698109,33799915:198984 -k1,515:8888652,33799915:198983 -k1,515:10153907,33799915:198984 -k1,515:12845224,33799915:198983 -k1,515:14438159,33799915:198984 -k1,515:16737571,33799915:198983 -k1,515:18541532,33799915:198984 -k1,515:19608867,33799915:198983 -k1,515:21356467,33799915:198984 -k1,515:22206879,33799915:198984 -k1,515:23913845,33799915:198983 -k1,515:25740088,33799915:198984 -k1,515:26598363,33799915:198983 -k1,515:28345963,33799915:198984 -k1,515:29413298,33799915:198983 -k1,515:30603842,33799915:198984 -k1,515:32583029,33799915:0 -) -(1,516:6630773,34641403:25952256,513147,134348 -k1,515:8440954,34641403:155397 -k1,515:9587912,34641403:155398 -k1,515:11640576,34641403:155397 -k1,515:13364251,34641403:155398 -k1,515:14178940,34641403:155397 -k1,515:16069731,34641403:155398 -k1,515:16813641,34641403:155397 -k1,515:18854510,34641403:155398 -k1,515:20691561,34641403:155397 -k1,515:21592103,34641403:155398 -k1,515:22398928,34641403:155397 -k1,515:24062309,34641403:155398 -k1,515:24573566,34641403:155397 -k1,515:26801868,34641403:155398 -k1,515:27616557,34641403:155397 -k1,515:29102336,34641403:155398 -k1,515:30028436,34641403:155397 -k1,515:32583029,34641403:0 -) -(1,516:6630773,35482891:25952256,513147,134348 -k1,515:7903965,35482891:172187 -k1,515:9586101,35482891:172186 -k1,515:11993721,35482891:172187 -k1,515:13405849,35482891:172187 -k1,515:14774722,35482891:172186 -k1,515:17709252,35482891:172187 -k1,515:19449716,35482891:172187 -k1,515:20281194,35482891:172186 -k1,515:22188774,35482891:172187 -k1,515:22775777,35482891:172160 -k1,515:23939523,35482891:172186 -k1,515:25177981,35482891:172187 -k1,515:28252102,35482891:172187 -k1,515:29083580,35482891:172186 -k1,515:30707389,35482891:172187 -k1,515:32583029,35482891:0 -) -(1,516:6630773,36324379:25952256,505283,126483 -k1,515:7602160,36324379:246559 -k1,515:9450419,36324379:246559 -k1,515:11408123,36324379:246559 -k1,515:12787144,36324379:246559 -k1,515:14126188,36324379:246559 -k1,515:15391832,36324379:246559 -k1,515:16053187,36324379:246512 -k1,515:18719991,36324379:246559 -k1,515:19617978,36324379:246559 -k1,515:21055982,36324379:246559 -k1,515:24495455,36324379:246559 -k1,515:28231806,36324379:246559 -k1,515:29669810,36324379:246559 -k1,515:31193666,36324379:246559 -k1,515:32583029,36324379:0 -) -(1,516:6630773,37165867:25952256,513147,134348 -k1,515:8970757,37165867:225793 -k1,515:10215636,37165867:225794 -k1,515:11747562,37165867:225793 -k1,515:13968271,37165867:225793 -k1,515:14853356,37165867:225793 -k1,515:18897277,37165867:225794 -k1,515:19940959,37165867:225793 -k1,515:21700950,37165867:225793 -k1,515:22612905,37165867:225793 -k1,515:23707051,37165867:225794 -k1,515:26003782,37165867:225793 -k1,515:27559956,37165867:225793 -k1,515:28654101,37165867:225793 -k1,515:30428511,37165867:225794 -k1,515:31305732,37165867:225793 -k1,515:32583029,37165867:0 -) -(1,516:6630773,38007355:25952256,513147,134348 -k1,515:7486981,38007355:173323 -k1,515:10090380,38007355:173324 -k1,515:11282788,38007355:173323 -k1,515:13019145,38007355:173323 -k1,515:13650565,38007355:173323 -k1,515:14355386,38007355:173324 -k1,515:15863677,38007355:173323 -k1,515:16688428,38007355:173323 -k1,515:18350075,38007355:173324 -k1,515:20258791,38007355:173323 -k1,515:22767162,38007355:173323 -k1,515:24321330,38007355:173324 -k1,515:25026150,38007355:173323 -k1,515:26265744,38007355:173323 -k1,515:29250562,38007355:173323 -k1,515:30039924,38007355:173324 -k1,515:31345054,38007355:173323 -k1,515:32583029,38007355:0 -) -(1,516:6630773,38848843:25952256,505283,134348 -k1,515:7665636,38848843:273335 -k1,515:8527485,38848843:273336 -k1,515:9872989,38848843:273335 -k1,515:12307702,38848843:273336 -k1,515:13572597,38848843:273335 -k1,515:15394549,38848843:273336 -k1,515:17430802,38848843:273335 -k1,515:19713472,38848843:273336 -k1,515:20638235,38848843:273335 -k1,515:22363849,38848843:273336 -k1,515:23656269,38848843:273335 -k1,515:25531305,38848843:273336 -k1,515:29013938,38848843:273335 -k1,515:32583029,38848843:0 -) -(1,516:6630773,39690331:25952256,513147,134348 -k1,515:7506521,39690331:216456 -k1,515:9458370,39690331:216456 -k1,515:10030686,39690331:216456 -k1,515:14599388,39690331:216456 -k1,515:17658140,39690331:216456 -k1,515:18822247,39690331:216456 -k1,515:20428066,39690331:216456 -k1,515:23372786,39690331:216456 -k1,515:24217077,39690331:216456 -k1,515:26418619,39690331:216456 -h1,515:27389207,39690331:0,0,0 -k1,515:27605663,39690331:216456 -k1,515:28690471,39690331:216456 -k1,515:30011209,39690331:216456 -k1,515:31252648,39690331:216456 -k1,515:32583029,39690331:0 -) -(1,516:6630773,40531819:25952256,513147,126483 -k1,515:7867824,40531819:217966 -k1,515:8500614,40531819:217947 -k1,515:11138825,40531819:217966 -k1,515:13247505,40531819:217966 -k1,515:14662158,40531819:217966 -k1,515:16106303,40531819:217966 -k1,515:16940307,40531819:217966 -k1,515:18214713,40531819:217966 -k1,515:19533684,40531819:217966 -k1,515:21261600,40531819:217966 -k1,515:23286394,40531819:217966 -k1,515:24120398,40531819:217966 -k1,515:25099892,40531819:217966 -k1,515:26336943,40531819:217966 -k1,515:28109423,40531819:217966 -k1,515:30398327,40531819:217966 -k1,515:31563944,40531819:217966 -k1,515:32583029,40531819:0 -) -(1,516:6630773,41373307:25952256,505283,126483 -k1,515:9172841,41373307:140829 -(1,515:9172841,41373307:0,414482,115847 -r1,529:9700406,41373307:527565,530329,115847 -k1,515:9172841,41373307:-527565 -) -(1,515:9172841,41373307:527565,414482,115847 -$1,515:9176118,41373307 -$1,515:9697129,41373307 -h1,515:9697129,41373307:0,411205,112570 -) -k1,515:10014904,41373307:140828 -k1,515:11347178,41373307:140829 -k1,515:12507092,41373307:140829 -k1,515:13874100,41373307:140829 -k1,515:14630966,41373307:140828 -k1,515:16139531,41373307:140829 -k1,515:16811857,41373307:140829 -k1,515:18501301,41373307:140828 -k1,515:19056915,41373307:140771 -k1,515:20298749,41373307:140829 -k1,515:23502730,41373307:140828 -k1,515:24259597,41373307:140829 -k1,515:27447850,41373307:140829 -k1,515:28058572,41373307:140829 -k1,515:28730897,41373307:140828 -k1,515:32227169,41373307:140829 -k1,515:32583029,41373307:0 -) -(1,516:6630773,42214795:25952256,513147,134348 -k1,515:9500867,42214795:156248 -k1,515:12292319,42214795:156249 -k1,515:13829411,42214795:156248 -k1,515:15177105,42214795:156249 -k1,515:15921866,42214795:156248 -k1,515:17274802,42214795:156249 -k1,515:19851295,42214795:156248 -k1,515:21111826,42214795:156249 -k1,515:22580760,42214795:156248 -k1,515:25499352,42214795:156249 -k1,515:27353638,42214795:156248 -k1,515:30573040,42214795:156249 -k1,515:32583029,42214795:0 -) -(1,516:6630773,43056283:25952256,513147,126483 -k1,515:7603720,43056283:202244 -k1,515:8893204,43056283:202242 -k1,515:10241673,43056283:202244 -k1,515:13041764,43056283:202244 -k1,515:14316177,43056283:202244 -k1,515:15537507,43056283:202245 -k1,515:17115352,43056283:202244 -k1,515:20503956,43056283:202244 -k1,515:21237697,43056283:202244 -k1,515:22055980,43056283:202245 -k1,515:23277309,43056283:202244 -k1,515:27120078,43056283:202244 -k1,515:27981614,43056283:202244 -k1,515:29202944,43056283:202245 -k1,515:30631367,43056283:202244 -k1,515:32583029,43056283:0 -) -(1,516:6630773,43897771:25952256,513147,134348 -g1,515:8272449,43897771 -g1,515:9087716,43897771 -g1,515:10306030,43897771 -g1,515:11731438,43897771 -g1,515:13536299,43897771 -g1,515:14714636,43897771 -g1,515:17229252,43897771 -h1,515:18199840,43897771:0,0,0 -g1,515:18399069,43897771 -g1,515:19789743,43897771 -h1,515:20760331,43897771:0,0,0 -k1,516:32583029,43897771:11441934 -g1,516:32583029,43897771 -) -(1,524:6630773,44739259:25952256,513147,134348 -h1,523:6630773,44739259:983040,0,0 -k1,523:9006780,44739259:196280 -k1,523:10375500,44739259:196281 -k1,523:13326258,44739259:196280 -k1,523:15708165,44739259:196281 -k1,523:18333209,44739259:196280 -k1,523:19548574,44739259:196280 -k1,523:21587727,44739259:196281 -k1,523:22443299,44739259:196280 -k1,523:25284613,44739259:196281 -k1,523:25836753,44739259:196280 -k1,523:27906053,44739259:196281 -k1,523:31435494,44739259:196280 -k1,524:32583029,44739259:0 -) -] -(1,529:32583029,45706769:0,0,0 -g1,529:32583029,45706769 -) -) -] -(1,529:6630773,47279633:25952256,0,0 -h1,529:6630773,47279633:25952256,0,0 -) -] -(1,529:4262630,4025873:0,0,0 -[1,529:-473656,4025873:0,0,0 -(1,529:-473656,-710413:0,0,0 -(1,529:-473656,-710413:0,0,0 -g1,529:-473656,-710413 -) -g1,529:-473656,-710413 -) -] -) -] -!22817 -}30 -Input:217:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:218:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:219:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:220:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:221:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:222:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:223:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:224:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:225:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:226:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!941 -{31 -[1,563:4262630,47279633:28320399,43253760,0 -(1,563:4262630,4025873:0,0,0 -[1,563:-473656,4025873:0,0,0 -(1,563:-473656,-710413:0,0,0 -(1,563:-473656,-644877:0,0,0 -k1,563:-473656,-644877:-65536 -) -(1,563:-473656,4736287:0,0,0 -k1,563:-473656,4736287:5209943 +g1,646:6630773,4812305 ) -g1,563:-473656,-710413 ) ] +[1,646:6630773,45706769:0,40108032,0 +(1,646:6630773,45706769:0,40108032,0 +(1,646:6630773,45706769:0,0,0 +g1,646:6630773,45706769 ) -[1,563:6630773,47279633:25952256,43253760,0 -[1,563:6630773,4812305:25952256,786432,0 -(1,563:6630773,4812305:25952256,505283,134348 -(1,563:6630773,4812305:25952256,505283,134348 -g1,563:3078558,4812305 -[1,563:3078558,4812305:0,0,0 -(1,563:3078558,2439708:0,1703936,0 -k1,563:1358238,2439708:-1720320 -(1,417:1358238,2439708:1720320,1703936,0 -(1,417:1358238,2439708:1179648,16384,0 -r1,563:2537886,2439708:1179648,16384,0 +[1,646:6630773,45706769:0,40108032,0 +h1,646:6630773,6254097:0,0,0 +] +(1,646:6630773,45706769:0,0,0 +g1,646:6630773,45706769 ) -g1,417:3062174,2439708 -(1,417:3062174,2439708:16384,1703936,0 -[1,417:3062174,2439708:25952256,1703936,0 -(1,417:3062174,1915420:25952256,1179648,0 -(1,417:3062174,1915420:16384,1179648,0 -r1,563:3078558,1915420:16384,1179648,0 ) -k1,417:29014430,1915420:25935872 -g1,417:29014430,1915420 +] +(1,646:6630773,47279633:25952256,0,0 +h1,646:6630773,47279633:25952256,0,0 ) ] +(1,646:4262630,4025873:0,0,0 +[1,646:-473656,4025873:0,0,0 +(1,646:-473656,-710413:0,0,0 +(1,646:-473656,-710413:0,0,0 +g1,646:-473656,-710413 ) +g1,646:-473656,-710413 ) +] ) ] -[1,563:3078558,4812305:0,0,0 -(1,563:3078558,2439708:0,1703936,0 -g1,563:29030814,2439708 -g1,563:36135244,2439708 -(1,417:36135244,2439708:1720320,1703936,0 -(1,417:36135244,2439708:16384,1703936,0 -[1,417:36135244,2439708:25952256,1703936,0 -(1,417:36135244,1915420:25952256,1179648,0 -(1,417:36135244,1915420:16384,1179648,0 -r1,563:36151628,1915420:16384,1179648,0 +!3216 +}37 +!10 +{38 +[1,669:4262630,47279633:28320399,43253760,11795 +(1,669:4262630,4025873:0,0,0 +[1,669:-473656,4025873:0,0,0 +(1,669:-473656,-710413:0,0,0 +(1,669:-473656,-644877:0,0,0 +k1,669:-473656,-644877:-65536 ) -k1,417:62087500,1915420:25935872 -g1,417:62087500,1915420 +(1,669:-473656,4736287:0,0,0 +k1,669:-473656,4736287:5209943 +) +g1,669:-473656,-710413 ) ] ) -g1,417:36675916,2439708 -(1,417:36675916,2439708:1179648,16384,0 -r1,563:37855564,2439708:1179648,16384,0 +[1,669:6630773,47279633:25952256,43253760,11795 +[1,669:6630773,4812305:25952256,786432,0 +(1,669:6630773,4812305:25952256,0,0 +(1,669:6630773,4812305:25952256,0,0 +g1,669:3078558,4812305 +[1,669:3078558,4812305:0,0,0 +(1,669:3078558,2439708:0,1703936,0 +k1,669:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,669:2537886,2439708:1179648,16384,0 ) +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,669:3078558,1915420:16384,1179648,0 ) -k1,563:3078556,2439708:-34777008 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) ] -[1,563:3078558,4812305:0,0,0 -(1,563:3078558,49800853:0,16384,2228224 -k1,563:1358238,49800853:-1720320 -(1,417:1358238,49800853:1720320,16384,2228224 -(1,417:1358238,49800853:1179648,16384,0 -r1,563:2537886,49800853:1179648,16384,0 ) -g1,417:3062174,49800853 -(1,417:3062174,52029077:16384,1703936,0 -[1,417:3062174,52029077:25952256,1703936,0 -(1,417:3062174,51504789:25952256,1179648,0 -(1,417:3062174,51504789:16384,1179648,0 -r1,563:3078558,51504789:16384,1179648,0 ) -k1,417:29014430,51504789:25935872 -g1,417:29014430,51504789 ) ] +[1,669:3078558,4812305:0,0,0 +(1,669:3078558,2439708:0,1703936,0 +g1,669:29030814,2439708 +g1,669:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,669:36151628,1915420:16384,1179648,0 ) -) +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) ] -[1,563:3078558,4812305:0,0,0 -(1,563:3078558,49800853:0,16384,2228224 -g1,563:29030814,49800853 -g1,563:36135244,49800853 -(1,417:36135244,49800853:1720320,16384,2228224 -(1,417:36135244,52029077:16384,1703936,0 -[1,417:36135244,52029077:25952256,1703936,0 -(1,417:36135244,51504789:25952256,1179648,0 -(1,417:36135244,51504789:16384,1179648,0 -r1,563:36151628,51504789:16384,1179648,0 ) -k1,417:62087500,51504789:25935872 -g1,417:62087500,51504789 -) -] -) -g1,417:36675916,49800853 -(1,417:36675916,49800853:1179648,16384,0 -r1,563:37855564,49800853:1179648,16384,0 +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,669:37855564,2439708:1179648,16384,0 ) ) -k1,563:3078556,49800853:-34777008 -) -] -g1,563:6630773,4812305 -k1,563:21916392,4812305:14488701 -g1,563:22703479,4812305 -g1,563:23888369,4812305 -g1,563:27214321,4812305 -g1,563:28624000,4812305 -g1,563:29808890,4812305 -) -) -] -[1,563:6630773,45706769:25952256,40108032,0 -(1,563:6630773,45706769:25952256,40108032,0 -(1,563:6630773,45706769:0,0,0 -g1,563:6630773,45706769 -) -[1,563:6630773,45706769:25952256,40108032,0 -[1,529:6630773,15876152:25952256,10277415,0 -[1,529:6630773,15876152:25952256,10277415,0 -(1,528:6630773,12569845:25952256,6971108,0 -g1,528:6630773,12569845 -h1,527:6630773,12569845:0,0,0 -(1,527:6630773,12569845:25952256,6971108,0 -) -g1,528:32583029,12569845 -g1,528:32583029,12569845 -) -(1,528:6630773,14066693:25952256,485622,11795 -h1,528:6630773,14066693:0,0,0 -g1,528:9295467,14066693 -k1,528:32583028,14066693:22297312 -g1,528:32583028,14066693 -) -(1,528:6630773,14908181:25952256,513147,126483 -h1,528:6630773,14908181:0,0,0 -k1,528:8037295,14908181:209835 -k1,528:8661963,14908181:209825 -k1,528:11292043,14908181:209835 -k1,528:13015105,14908181:209836 -k1,528:15456441,14908181:209835 -k1,528:19156068,14908181:209835 -k1,528:20841119,14908181:209836 -k1,528:22560904,14908181:209835 -k1,528:25367275,14908181:209835 -k1,528:29188800,14908181:209836 -k1,528:31821501,14908181:209835 -k1,528:32583029,14908181:0 -) -(1,528:6630773,15749669:25952256,505283,126483 -g1,528:7849087,15749669 -g1,528:9429160,15749669 -g1,528:10619949,15749669 -g1,528:13882331,15749669 -g1,528:14697598,15749669 -g1,528:16126938,15749669 -g1,528:18015685,15749669 -g1,528:20388088,15749669 -g1,528:23366044,15749669 -g1,528:24326801,15749669 -g1,528:24940873,15749669 -g1,528:26131662,15749669 -g1,528:29394044,15749669 -g1,528:30209311,15749669 -k1,528:32583029,15749669:832311 -g1,528:32583029,15749669 -) -] -] -(1,524:6630773,17842232:25952256,513147,102891 -k1,523:7844499,17842232:163184 -h1,523:8815087,17842232:0,0,0 -k1,523:8978272,17842232:163185 -k1,523:11132440,17842232:163184 -k1,523:12626006,17842232:163185 -k1,523:13808275,17842232:163184 -k1,523:16391705,17842232:163185 -k1,523:18271932,17842232:163184 -k1,523:19948343,17842232:163185 -k1,523:21130612,17842232:163184 -k1,523:22674641,17842232:163185 -k1,523:23938830,17842232:163184 -k1,523:26524881,17842232:163185 -k1,523:28919566,17842232:163184 -k1,523:32583029,17842232:0 -) -(1,524:6630773,18683720:25952256,513147,126483 -g1,523:8281624,18683720 -g1,523:9167015,18683720 -g1,523:9722104,18683720 -g1,523:12624038,18683720 -g1,523:13991774,18683720 -g1,523:14850295,18683720 -k1,524:32583029,18683720:16332885 -g1,524:32583029,18683720 -) -(1,532:6630773,19525208:25952256,513147,126483 -h1,531:6630773,19525208:983040,0,0 -k1,531:9109562,19525208:299062 -k1,531:12400344,19525208:299063 -k1,531:13315444,19525208:299062 -k1,531:14817748,19525208:299063 -k1,531:16698849,19525208:299062 -k1,531:19289706,19525208:299063 -k1,531:20964369,19525208:299062 -k1,531:22282516,19525208:299062 -k1,531:25001824,19525208:299063 -k1,531:27774215,19525208:299062 -k1,531:29020929,19525208:299063 -k1,531:30700835,19525208:299062 -k1,531:32583029,19525208:0 -) -(1,532:6630773,20366696:25952256,505283,134348 -k1,531:10766571,20366696:152520 -k1,531:13991419,20366696:152520 -k1,531:15135499,20366696:152520 -k1,531:16354290,20366696:152520 -k1,531:20022161,20366696:152520 -k1,531:21525378,20366696:152520 -k1,531:23058086,20366696:152520 -k1,531:24202166,20366696:152520 -k1,531:25583486,20366696:152520 -k1,531:29077687,20366696:152520 -k1,531:30928245,20366696:152520 -k1,531:32583029,20366696:0 -) -(1,532:6630773,21208184:25952256,513147,126483 -k1,531:7371049,21208184:208779 -k1,531:7935688,21208184:208779 -k1,531:9674733,21208184:208779 -k1,531:10534939,21208184:208778 -k1,531:11678261,21208184:208779 -k1,531:13241014,21208184:208779 -k1,531:15201570,21208184:208779 -k1,531:17823385,21208184:208779 -k1,531:19223609,21208184:208779 -k1,531:21647505,21208184:208779 -k1,531:23423904,21208184:208778 -k1,531:25384460,21208184:208779 -k1,531:28355582,21208184:208779 -k1,531:31025238,21208184:208779 -k1,531:32583029,21208184:0 -) -(1,532:6630773,22049672:25952256,513147,126483 -k1,531:7768538,22049672:146205 -k1,531:9200558,22049672:146204 -k1,531:11830578,22049672:146205 -k1,531:12628211,22049672:146205 -k1,531:15595085,22049672:146204 -k1,531:17439328,22049672:146205 -k1,531:21474438,22049672:146204 -k1,531:22152140,22049672:146205 -k1,531:24828035,22049672:146205 -k1,531:26165684,22049672:146204 -k1,531:28009927,22049672:146205 -k1,531:32583029,22049672:0 -) -(1,532:6630773,22891160:25952256,513147,134348 -k1,531:10072658,22891160:180814 -k1,531:12986322,22891160:180813 -k1,531:13826428,22891160:180814 -k1,531:15361216,22891160:180814 -k1,531:18304372,22891160:180813 -k1,531:23113339,22891160:180814 -k1,531:24824419,22891160:180814 -k1,531:25656661,22891160:180814 -k1,531:26585240,22891160:180813 -k1,531:30203417,22891160:180814 -k1,531:32583029,22891160:0 -) -(1,532:6630773,23732648:25952256,505283,134348 -k1,531:10060818,23732648:257447 -k1,531:11604081,23732648:257447 -k1,531:13336743,23732648:257447 -k1,531:14613275,23732648:257447 -k1,531:18283182,23732648:257447 -k1,531:19192058,23732648:257448 -k1,531:20197271,23732648:257447 -k1,531:23716445,23732648:257447 -k1,531:24589930,23732648:257447 -k1,531:26300966,23732648:257447 -k1,531:29480008,23732648:257447 -k1,531:31021961,23732648:257447 -k1,532:32583029,23732648:0 -) -(1,532:6630773,24574136:25952256,513147,126483 -k1,531:8669240,24574136:227052 -k1,531:12166539,24574136:227052 -k1,531:13497874,24574136:227053 -k1,531:14472692,24574136:227052 -k1,531:16737914,24574136:227052 -k1,531:17581004,24574136:227052 -k1,531:20241408,24574136:227052 -k1,531:21659905,24574136:227052 -k1,531:27897265,24574136:227053 -k1,531:29350496,24574136:227052 -k1,531:31064560,24574136:227052 -k1,531:32583029,24574136:0 -) -(1,532:6630773,25415624:25952256,513147,126483 -k1,531:8124380,25415624:180265 -k1,531:11511977,25415624:180265 -k1,531:12048101,25415624:180264 -k1,531:14301270,25415624:180265 -k1,531:15140827,25415624:180265 -k1,531:16087208,25415624:180265 -k1,531:17286558,25415624:180265 -k1,531:19152408,25415624:180264 -k1,531:21019570,25415624:180265 -k1,531:22391280,25415624:180265 -k1,531:23187583,25415624:180265 -k1,531:24969548,25415624:180265 -k1,531:27020866,25415624:180265 -k1,531:29247164,25415624:180264 -k1,531:29885526,25415624:180265 -k1,531:31931601,25415624:180265 -k1,531:32583029,25415624:0 -) -(1,532:6630773,26257112:25952256,505283,126483 -k1,531:9790685,26257112:227176 -k1,531:13273690,26257112:227176 -k1,531:14519950,26257112:227175 -k1,531:16400599,26257112:227176 -k1,531:18313361,26257112:227176 -k1,531:19153299,26257112:227176 -k1,531:19736335,26257112:227176 -k1,531:21417099,26257112:227175 -k1,531:23243353,26257112:227176 -k1,531:25656810,26257112:227176 -k1,531:26875546,26257112:227176 -k1,531:27458581,26257112:227175 -k1,531:29039731,26257112:227176 -k1,531:31391584,26257112:227176 -k1,531:32583029,26257112:0 -) -(1,532:6630773,27098600:25952256,513147,134348 -k1,531:8840597,27098600:242433 -k1,531:10321005,27098600:242433 -k1,531:11222729,27098600:242432 -k1,531:16400678,27098600:242433 -k1,531:17294539,27098600:242433 -k1,531:19238942,27098600:242433 -k1,531:21192519,27098600:242432 -k1,531:22765333,27098600:242433 -k1,531:23363626,27098600:242433 -k1,531:25300820,27098600:242433 -k1,531:26932615,27098600:242432 -k1,531:29729641,27098600:242433 -k1,531:31073079,27098600:242433 -k1,531:32583029,27098600:0 -) -(1,532:6630773,27940088:25952256,505283,7863 -g1,531:8407454,27940088 -g1,531:9289568,27940088 -g1,531:10593079,27940088 -g1,531:11540074,27940088 -k1,532:32583028,27940088:19291832 -g1,532:32583028,27940088 -) -v1,534:6630773,29305864:0,393216,0 -(1,536:6630773,35684836:25952256,6772188,0 -g1,536:6630773,35684836 -g1,536:6303093,35684836 -r1,563:6401397,35684836:98304,6772188,0 -g1,536:6600626,35684836 -g1,536:6797234,35684836 -[1,536:6797234,35684836:25785795,6772188,0 -(1,536:6797234,29667937:25785795,755289,196608 -(1,534:6797234,29667937:0,755289,196608 -r1,563:8134168,29667937:1336934,951897,196608 -k1,534:6797234,29667937:-1336934 -) -(1,534:6797234,29667937:1336934,755289,196608 -) -k1,534:8344072,29667937:209904 -k1,534:8671752,29667937:327680 -k1,534:9509492,29667937:209905 -k1,534:10738481,29667937:209904 -k1,534:13368630,29667937:209904 -k1,534:14735245,29667937:209905 -k1,534:16661537,29667937:209904 -k1,534:20361233,29667937:209904 -k1,534:21183900,29667937:209905 -k1,534:22412889,29667937:209904 -(1,534:22412889,29667937:0,414482,115847 -r1,563:22771155,29667937:358266,530329,115847 -k1,534:22412889,29667937:-358266 -) -(1,534:22412889,29667937:358266,414482,115847 -k1,534:22412889,29667937:3277 -h1,534:22767878,29667937:0,411205,112570 -) -k1,534:22981059,29667937:209904 -k1,534:25765874,29667937:209905 -k1,534:27759013,29667937:209904 -k1,534:29125627,29667937:209904 -k1,534:30848758,29667937:209905 -k1,534:31414522,29667937:209904 -k1,534:32583029,29667937:0 -) -(1,536:6797234,30509425:25785795,513147,134348 -k1,534:7817920,30509425:259158 -k1,534:10784369,30509425:259157 -k1,534:12062612,30509425:259158 -k1,534:14332415,30509425:259158 -k1,534:15274457,30509425:259157 -k1,534:17188399,30509425:259158 -k1,534:18722231,30509425:259157 -k1,534:19447350,30509425:259158 -k1,534:20725593,30509425:259158 -k1,534:22153257,30509425:259157 -k1,534:23516697,30509425:259158 -k1,534:24523621,30509425:259158 -k1,534:28372840,30509425:259157 -k1,534:29318160,30509425:259158 -k1,534:30348021,30509425:259158 -k1,534:31021961,30509425:259097 -k1,536:32583029,30509425:0 -) -(1,536:6797234,31350913:25785795,513147,126483 -k1,534:8963500,31350913:181180 -k1,534:10163764,31350913:181179 -k1,534:12187816,31350913:181180 -k1,534:13501457,31350913:181179 -k1,534:14430403,31350913:181180 -k1,534:16961703,31350913:181179 -k1,534:17755645,31350913:181180 -k1,534:18955909,31350913:181179 -k1,534:21731004,31350913:181180 -k1,534:24665351,31350913:181180 -k1,534:25608058,31350913:181179 -k1,534:26145098,31350913:181180 -k1,534:27609472,31350913:181179 -(1,534:27609472,31350913:0,414482,115847 -r1,563:27967738,31350913:358266,530329,115847 -k1,534:27609472,31350913:-358266 -) -(1,534:27609472,31350913:358266,414482,115847 -k1,534:27609472,31350913:3277 -h1,534:27964461,31350913:0,411205,112570 -) -k1,534:28148918,31350913:181180 -k1,534:30905007,31350913:181179 -k1,535:31563944,31350913:181180 -k1,535:32583029,31350913:0 -) -(1,536:6797234,32192401:25785795,505283,126483 -k1,535:10175077,32192401:218352 -k1,535:10924926,32192401:218352 -k1,535:14858515,32192401:218353 -k1,535:15432727,32192401:218352 -(1,535:15432727,32192401:0,414482,115847 -r1,563:15790993,32192401:358266,530329,115847 -k1,535:15432727,32192401:-358266 -) -(1,535:15432727,32192401:358266,414482,115847 -k1,535:15432727,32192401:3277 -h1,535:15787716,32192401:0,411205,112570 -) -k1,535:16009345,32192401:218352 -k1,535:20281754,32192401:218352 -k1,535:22901346,32192401:218353 -k1,535:24252160,32192401:218352 -k1,535:25218278,32192401:218352 -k1,535:27685826,32192401:218352 -k1,535:29095624,32192401:218353 -k1,535:30484449,32192401:218352 -k1,535:31835263,32192401:218352 -k1,535:32583029,32192401:0 -) -(1,536:6797234,33033889:25785795,513147,126483 -k1,535:8288833,33033889:182845 -k1,535:9123107,33033889:182846 -k1,535:10692038,33033889:182845 -k1,535:11490922,33033889:182846 -k1,535:12692852,33033889:182845 -k1,535:14098600,33033889:182846 -k1,535:14940737,33033889:182845 -k1,535:16142668,33033889:182846 -k1,535:19658674,33033889:182845 -k1,535:20883542,33033889:182846 -k1,535:23727804,33033889:182845 -k1,535:24376611,33033889:182846 -k1,535:25578541,33033889:182845 -k1,535:27644236,33033889:182846 -k1,535:31298523,33033889:182845 -k1,535:32583029,33033889:0 -) -(1,536:6797234,33875377:25785795,513147,126483 -k1,535:8183259,33875377:215552 -k1,535:10355062,33875377:215553 -k1,535:11716839,33875377:215552 -k1,535:12583820,33875377:215553 -k1,535:13614640,33875377:215552 -k1,535:14361689,33875377:215552 -$1,535:14361689,33875377 -k1,535:14917730,33875377:157582 -k1,535:15643508,33875377:157581 -k1,535:16199549,33875377:157582 -k1,535:16925327,33875377:157581 -$1,535:17323786,33875377 -k1,535:17713008,33875377:215552 -k1,535:18394522,33875377:215553 -k1,535:19780547,33875377:215552 -k1,535:21650884,33875377:215553 -k1,535:22482474,33875377:215552 -k1,535:23717111,33875377:215552 -k1,535:26352909,33875377:215553 -(1,535:26352909,33875377:0,435480,115847 -r1,563:28821447,33875377:2468538,551327,115847 -k1,535:26352909,33875377:-2468538 -) -(1,535:26352909,33875377:2468538,435480,115847 -g1,535:27059610,33875377 -g1,535:27763034,33875377 -g1,535:28466458,33875377 -h1,535:28818170,33875377:0,411205,112570 -) -k1,535:29036999,33875377:215552 -k1,535:29868590,33875377:215553 -k1,535:31240852,33875377:215552 -k1,535:32583029,33875377:0 -) -(1,536:6797234,34716865:25785795,513147,134348 -k1,535:8197360,34716865:229653 -k1,535:9559474,34716865:229652 -k1,535:10767580,34716865:229653 -k1,535:11353092,34716865:229652 -k1,535:15636802,34716865:229653 -k1,535:18267694,34716865:229653 -k1,535:20416240,34716865:229652 -k1,535:21816366,34716865:229653 -k1,535:23178480,34716865:229652 -k1,535:24155899,34716865:229653 -k1,535:25694306,34716865:229653 -k1,535:26575386,34716865:229652 -k1,535:28191125,34716865:229653 -(1,535:28191125,34716865:0,435480,115847 -r1,563:28549391,34716865:358266,551327,115847 -k1,535:28191125,34716865:-358266 -) -(1,535:28191125,34716865:358266,435480,115847 -k1,535:28191125,34716865:3277 -h1,535:28546114,34716865:0,411205,112570 -) -k1,535:28952713,34716865:229652 -k1,535:32117068,34716865:229653 -k1,535:32583029,34716865:0 -) -(1,536:6797234,35558353:25785795,505283,126483 -g1,535:8166936,35558353 -g1,535:9752251,35558353 -(1,535:9752251,35558353:0,435480,115847 -r1,563:11517365,35558353:1765114,551327,115847 -k1,535:9752251,35558353:-1765114 -) -(1,535:9752251,35558353:1765114,435480,115847 -g1,535:10458952,35558353 -g1,535:11162376,35558353 -h1,535:11514088,35558353:0,411205,112570 -) -g1,535:11890264,35558353 -g1,535:13108578,35558353 -g1,535:15150679,35558353 -g1,535:16482370,35558353 -g1,535:17429365,35558353 -g1,535:21031223,35558353 -g1,535:22421897,35558353 -k1,536:32583029,35558353:7637341 -g1,536:32583029,35558353 -) -] -g1,536:32583029,35684836 -) -h1,536:6630773,35684836:0,0,0 -(1,539:6630773,37050612:25952256,513147,134348 -h1,538:6630773,37050612:983040,0,0 -g1,538:8855064,37050612 -g1,538:11889380,37050612 -g1,538:13245319,37050612 -g1,538:14548830,37050612 -g1,538:16818341,37050612 -g1,538:17965221,37050612 -g1,538:18520310,37050612 -g1,538:20107592,37050612 -g1,538:21804974,37050612 -g1,538:22616965,37050612 -g1,538:23835279,37050612 -g1,538:24449351,37050612 -k1,539:32583029,37050612:5539763 -g1,539:32583029,37050612 -) -v1,541:6630773,38416388:0,393216,0 -(1,542:6630773,40628815:25952256,2605643,0 -g1,542:6630773,40628815 -g1,542:6303093,40628815 -r1,563:6401397,40628815:98304,2605643,0 -g1,542:6600626,40628815 -g1,542:6797234,40628815 -[1,542:6797234,40628815:25785795,2605643,0 -(1,542:6797234,38811491:25785795,788319,218313 -(1,541:6797234,38811491:0,788319,218313 -r1,563:7917113,38811491:1119879,1006632,218313 -k1,541:6797234,38811491:-1119879 -) -(1,541:6797234,38811491:1119879,788319,218313 -) -k1,541:8115041,38811491:197928 -k1,541:8442721,38811491:327680 -k1,541:10507770,38811491:197928 -k1,541:11697258,38811491:197928 -k1,541:12914270,38811491:197927 -k1,541:14418331,38811491:197928 -k1,541:16112446,38811491:197928 -k1,541:18971791,38811491:197928 -k1,541:20361164,38811491:197928 -k1,541:21865225,38811491:197928 -k1,541:25713508,38811491:197928 -k1,541:26527473,38811491:197927 -k1,541:27744486,38811491:197928 -k1,541:29698124,38811491:197928 -k1,541:31276896,38811491:197928 -k1,541:32583029,38811491:0 -) -(1,542:6797234,39652979:25785795,513147,134348 -k1,541:9670245,39652979:211594 -k1,541:10413335,39652979:211593 -k1,541:11572580,39652979:211594 -k1,541:15309356,39652979:211594 -k1,541:17070221,39652979:211594 -k1,541:18473259,39652979:211593 -k1,541:19855326,39652979:211594 -k1,541:21171202,39652979:211594 -k1,541:23393441,39652979:211594 -k1,541:24256462,39652979:211593 -k1,541:26107111,39652979:211594 -k1,541:27772294,39652979:211594 -k1,541:28670050,39652979:211594 -k1,541:30257244,39652979:211593 -k1,541:31084876,39652979:211594 -k1,541:32583029,39652979:0 -) -(1,542:6797234,40494467:25785795,505283,134348 -h1,541:7594152,40494467:0,0,0 -g1,541:7793381,40494467 -g1,541:8205602,40494467 -g1,541:10766093,40494467 -g1,541:12295703,40494467 -g1,541:13146360,40494467 -g1,541:15314946,40494467 -g1,541:16197060,40494467 -g1,541:17374742,40494467 -g1,541:19604932,40494467 -g1,541:20455589,40494467 -g1,541:21673903,40494467 -g1,541:22287975,40494467 -k1,542:32583029,40494467:7379357 -g1,542:32583029,40494467 -) -] -g1,542:32583029,40628815 -) -h1,542:6630773,40628815:0,0,0 -v1,545:6630773,42343569:0,393216,0 -(1,550:6630773,43223655:25952256,1273302,196608 -g1,550:6630773,43223655 -g1,550:6630773,43223655 -g1,550:6434165,43223655 -(1,550:6434165,43223655:0,1273302,196608 -r1,563:32779637,43223655:26345472,1469910,196608 -k1,550:6434165,43223655:-26345472 -) -(1,550:6434165,43223655:26345472,1273302,196608 -[1,550:6630773,43223655:25952256,1076694,0 -(1,547:6630773,42551187:25952256,404226,101187 -(1,546:6630773,42551187:0,0,0 -g1,546:6630773,42551187 -g1,546:6630773,42551187 -g1,546:6303093,42551187 -(1,546:6303093,42551187:0,0,0 -) -g1,546:6630773,42551187 -) -k1,547:6630773,42551187:0 -h1,547:10108376,42551187:0,0,0 -k1,547:32583028,42551187:22474652 -g1,547:32583028,42551187 -) -(1,548:6630773,43217365:25952256,388497,6290 -h1,548:6630773,43217365:0,0,0 -h1,548:7895356,43217365:0,0,0 -k1,548:32583028,43217365:24687672 -g1,548:32583028,43217365 -) -] -) -g1,550:32583029,43223655 -g1,550:6630773,43223655 -g1,550:6630773,43223655 -g1,550:32583029,43223655 -g1,550:32583029,43223655 -) -h1,550:6630773,43420263:0,0,0 -v1,554:6630773,45310327:0,393216,0 -] -(1,563:32583029,45706769:0,0,0 -g1,563:32583029,45706769 -) -) -] -(1,563:6630773,47279633:25952256,0,0 -h1,563:6630773,47279633:25952256,0,0 -) -] -(1,563:4262630,4025873:0,0,0 -[1,563:-473656,4025873:0,0,0 -(1,563:-473656,-710413:0,0,0 -(1,563:-473656,-710413:0,0,0 -g1,563:-473656,-710413 -) -g1,563:-473656,-710413 -) -] -) -] -!20454 -}31 -Input:227:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:228:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:229:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:230:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:231:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:232:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!569 -{32 -[1,598:4262630,47279633:28320399,43253760,0 -(1,598:4262630,4025873:0,0,0 -[1,598:-473656,4025873:0,0,0 -(1,598:-473656,-710413:0,0,0 -(1,598:-473656,-644877:0,0,0 -k1,598:-473656,-644877:-65536 -) -(1,598:-473656,4736287:0,0,0 -k1,598:-473656,4736287:5209943 -) -g1,598:-473656,-710413 +k1,669:3078556,2439708:-34777008 ) ] +[1,669:3078558,4812305:0,0,0 +(1,669:3078558,49800853:0,16384,2228224 +k1,669:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,669:2537886,49800853:1179648,16384,0 ) -[1,598:6630773,47279633:25952256,43253760,0 -[1,598:6630773,4812305:25952256,786432,0 -(1,598:6630773,4812305:25952256,477757,134348 -(1,598:6630773,4812305:25952256,477757,134348 -g1,598:3078558,4812305 -[1,598:3078558,4812305:0,0,0 -(1,598:3078558,2439708:0,1703936,0 -k1,598:1358238,2439708:-1720320 -(1,417:1358238,2439708:1720320,1703936,0 -(1,417:1358238,2439708:1179648,16384,0 -r1,598:2537886,2439708:1179648,16384,0 -) -g1,417:3062174,2439708 -(1,417:3062174,2439708:16384,1703936,0 -[1,417:3062174,2439708:25952256,1703936,0 -(1,417:3062174,1915420:25952256,1179648,0 -(1,417:3062174,1915420:16384,1179648,0 -r1,598:3078558,1915420:16384,1179648,0 +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,669:3078558,51504789:16384,1179648,0 ) -k1,417:29014430,1915420:25935872 -g1,417:29014430,1915420 +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) ] ) ) ) ] -[1,598:3078558,4812305:0,0,0 -(1,598:3078558,2439708:0,1703936,0 -g1,598:29030814,2439708 -g1,598:36135244,2439708 -(1,417:36135244,2439708:1720320,1703936,0 -(1,417:36135244,2439708:16384,1703936,0 -[1,417:36135244,2439708:25952256,1703936,0 -(1,417:36135244,1915420:25952256,1179648,0 -(1,417:36135244,1915420:16384,1179648,0 -r1,598:36151628,1915420:16384,1179648,0 +[1,669:3078558,4812305:0,0,0 +(1,669:3078558,49800853:0,16384,2228224 +g1,669:29030814,49800853 +g1,669:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,669:36151628,51504789:16384,1179648,0 ) -k1,417:62087500,1915420:25935872 -g1,417:62087500,1915420 +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 ) ] ) -g1,417:36675916,2439708 -(1,417:36675916,2439708:1179648,16384,0 -r1,598:37855564,2439708:1179648,16384,0 +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,669:37855564,49800853:1179648,16384,0 ) ) -k1,598:3078556,2439708:-34777008 +k1,669:3078556,49800853:-34777008 ) ] -[1,598:3078558,4812305:0,0,0 -(1,598:3078558,49800853:0,16384,2228224 -k1,598:1358238,49800853:-1720320 -(1,417:1358238,49800853:1720320,16384,2228224 -(1,417:1358238,49800853:1179648,16384,0 -r1,598:2537886,49800853:1179648,16384,0 -) -g1,417:3062174,49800853 -(1,417:3062174,52029077:16384,1703936,0 -[1,417:3062174,52029077:25952256,1703936,0 -(1,417:3062174,51504789:25952256,1179648,0 -(1,417:3062174,51504789:16384,1179648,0 -r1,598:3078558,51504789:16384,1179648,0 +g1,669:6630773,4812305 ) -k1,417:29014430,51504789:25935872 -g1,417:29014430,51504789 ) ] +[1,669:6630773,45706769:25952256,40108032,0 +(1,669:6630773,45706769:25952256,40108032,0 +(1,669:6630773,45706769:0,0,0 +g1,669:6630773,45706769 ) +[1,669:6630773,45706769:25952256,40108032,0 +[1,646:6630773,11797421:25952256,6198684,0 +(1,646:6630773,6633157:25952256,1165492,28311 +h1,646:6630773,6633157:0,0,0 +k1,646:20096848,6633157:12486181 +k1,646:32583029,6633157:12486181 ) +(1,646:6630773,7380277:25952256,32768,229376 +(1,646:6630773,7380277:0,32768,229376 +(1,646:6630773,7380277:5505024,32768,229376 +r1,669:12135797,7380277:5505024,262144,229376 ) -] -[1,598:3078558,4812305:0,0,0 -(1,598:3078558,49800853:0,16384,2228224 -g1,598:29030814,49800853 -g1,598:36135244,49800853 -(1,417:36135244,49800853:1720320,16384,2228224 -(1,417:36135244,52029077:16384,1703936,0 -[1,417:36135244,52029077:25952256,1703936,0 -(1,417:36135244,51504789:25952256,1179648,0 -(1,417:36135244,51504789:16384,1179648,0 -r1,598:36151628,51504789:16384,1179648,0 +k1,646:6630773,7380277:-5505024 ) -k1,417:62087500,51504789:25935872 -g1,417:62087500,51504789 +(1,646:6630773,7380277:25952256,32768,0 +r1,669:32583029,7380277:25952256,32768,0 ) -] ) -g1,417:36675916,49800853 -(1,417:36675916,49800853:1179648,16384,0 -r1,598:37855564,49800853:1179648,16384,0 +(1,646:6630773,9215293:25952256,909509,21233 +h1,646:6630773,9215293:0,0,0 +g1,646:9551582,9215293 +g1,646:11032040,9215293 +g1,646:15955891,9215293 +g1,646:18493314,9215293 +k1,646:28818183,9215293:3764846 +k1,646:32583029,9215293:3764846 ) +(1,646:6630773,9962413:25952256,32768,0 +(1,646:6630773,9962413:5505024,32768,0 +r1,669:12135797,9962413:5505024,32768,0 ) -k1,598:3078556,49800853:-34777008 +k1,646:22359413,9962413:10223616 +k1,646:32583029,9962413:10223616 +) +] +(1,648:6630773,14713778:25952256,131072,0 +r1,669:32583029,14713778:25952256,131072,0 +g1,648:32583029,14713778 +g1,648:32583029,14713778 +) +(1,650:6630773,16057271:25952256,513147,7863 +k1,650:8596853,16057271:1966080 +k1,649:10012496,16057271:218956 +k1,649:12166729,16057271:218955 +k1,649:13037113,16057271:218956 +k1,649:16699330,16057271:218955 +k1,649:18343694,16057271:218956 +k1,649:19754095,16057271:218956 +k1,649:22173094,16057271:218955 +k1,649:24164799,16057271:218956 +k1,649:24999792,16057271:218955 +k1,649:29055881,16057271:218956 +k1,650:32583029,16057271:1966080 +) +(1,650:6630773,16922351:25952256,505283,126483 +k1,650:8596853,16922351:1966080 +k1,649:11989592,16922351:172955 +k1,649:13353993,16922351:172956 +k1,649:14178376,16922351:172955 +k1,649:17301106,16922351:172955 +k1,649:19694421,16922351:172955 +k1,649:22255509,16922351:172956 +k1,649:23079892,16922351:172955 +k1,649:25033460,16922351:172955 +k1,649:25737912,16922351:172955 +k1,649:28737436,16922351:172956 +k1,649:29596553,16922351:172955 +k1,649:32583029,16922351:1966080 +) +(1,650:6630773,17787431:25952256,513147,7863 +g1,650:8596853,17787431 +g1,649:9482244,17787431 +g1,649:10700558,17787431 +g1,649:13207965,17787431 +g1,649:14066486,17787431 +g1,649:17541860,17787431 +k1,650:30616949,17787431:11295787 +g1,650:32583029,17787431 +) +(1,651:6630773,19438943:25952256,505283,7863 +k1,651:26088411,19438943:19457638 +h1,651:26088411,19438943:0,0,0 +g1,651:28773421,19438943 +g1,651:30616949,19438943 +g1,651:32583029,19438943 +) +(1,652:6630773,20304023:25952256,505283,134348 +k1,652:10735950,20304023:4105177 +h1,651:10735950,20304023:0,0,0 +g1,651:13781408,20304023 +g1,651:17149958,20304023 +g1,651:20806211,20304023 +g1,651:23871329,20304023 +g1,651:25838064,20304023 +g1,651:29023113,20304023 +g1,652:30616949,20304023 +g1,652:32583029,20304023 +) +(1,652:6630773,21562319:25952256,131072,0 +r1,669:32583029,21562319:25952256,131072,0 +g1,652:32583029,21562319 +g1,652:34549109,21562319 +) +(1,656:6630773,24393479:25952256,32768,229376 +(1,656:6630773,24393479:0,32768,229376 +(1,656:6630773,24393479:5505024,32768,229376 +r1,669:12135797,24393479:5505024,262144,229376 +) +k1,656:6630773,24393479:-5505024 +) +(1,656:6630773,24393479:25952256,32768,0 +r1,669:32583029,24393479:25952256,32768,0 +) +) +(1,656:6630773,26025331:25952256,615776,151780 +(1,656:6630773,26025331:1974731,582746,14155 +g1,656:6630773,26025331 +g1,656:8605504,26025331 +) +g1,656:10904245,26025331 +g1,656:11961996,26025331 +g1,656:13695292,26025331 +k1,656:32583029,26025331:15886712 +g1,656:32583029,26025331 +) +(1,659:6630773,27283627:25952256,513147,134348 +k1,658:7492375,27283627:233767 +k1,658:8707216,27283627:233767 +k1,658:12527767,27283627:233766 +k1,658:13709185,27283627:233767 +k1,658:15686865,27283627:233767 +k1,658:16986903,27283627:233767 +k1,658:19713004,27283627:233767 +k1,658:21340721,27283627:233766 +k1,658:24650748,27283627:233767 +k1,658:29236761,27283627:233767 +k1,658:32583029,27283627:0 +) +(1,659:6630773,28148707:25952256,513147,134348 +k1,658:7915982,28148707:266124 +k1,658:9517075,28148707:266125 +k1,658:11089332,28148707:266124 +k1,658:12710741,28148707:266124 +k1,658:13592903,28148707:266124 +k1,658:16460807,28148707:266125 +k1,658:17746016,28148707:266124 +k1,658:18426916,28148707:266057 +k1,658:21535336,28148707:266124 +k1,658:22332958,28148707:266125 +k1,658:23250510,28148707:266124 +k1,658:24609119,28148707:266124 +k1,658:25333340,28148707:266124 +k1,658:29526382,28148707:266125 +k1,658:30554034,28148707:266124 +k1,658:32583029,28148707:0 +) +(1,659:6630773,29013787:25952256,505283,134348 +k1,658:9013563,29013787:180780 +k1,658:12684134,29013787:180779 +k1,658:13477676,29013787:180780 +k1,658:14677541,29013787:180780 +k1,658:15273145,29013787:180761 +k1,658:17911525,29013787:180780 +k1,658:19473148,29013787:180779 +k1,658:22040094,29013787:180780 +k1,658:23287144,29013787:180779 +k1,658:24843525,29013787:180780 +k1,658:26043390,29013787:180780 +k1,658:28308214,29013787:180779 +k1,658:29680439,29013787:180780 +k1,658:32583029,29013787:0 +) +(1,659:6630773,29878867:25952256,513147,134348 +k1,658:8633200,29878867:242785 +k1,658:9948155,29878867:242786 +k1,658:11476756,29878867:242785 +k1,658:13329762,29878867:242786 +k1,658:13928407,29878867:242785 +k1,658:16670081,29878867:242786 +k1,658:17525628,29878867:242785 +k1,658:18787499,29878867:242786 +k1,658:22599375,29878867:242785 +k1,658:24033606,29878867:242786 +k1,658:27250415,29878867:242785 +k1,658:28152493,29878867:242786 +k1,658:29598519,29878867:242785 +k1,658:32583029,29878867:0 +) +(1,659:6630773,30743947:25952256,513147,126483 +k1,658:7554976,30743947:272775 +k1,658:9217115,30743947:272776 +k1,658:12218154,30743947:272775 +k1,658:13118764,30743947:272775 +k1,658:14594780,30743947:272775 +k1,658:17285179,30743947:272776 +k1,658:17770872,30743947:272701 +k1,658:19781662,30743947:272775 +k1,658:20863808,30743947:272776 +k1,658:22155668,30743947:272775 +k1,658:25190786,30743947:272775 +k1,658:27588238,30743947:272775 +k1,658:29871659,30743947:272776 +k1,658:30827319,30743947:272775 +k1,658:32583029,30743947:0 +) +(1,659:6630773,31609027:25952256,513147,134348 +k1,658:8114290,31609027:199011 +k1,658:9417583,31609027:199011 +k1,658:10364360,31609027:199011 +k1,658:12601540,31609027:199010 +k1,658:13991996,31609027:199011 +k1,658:18204432,31609027:199011 +k1,658:19019481,31609027:199011 +k1,658:19807005,31609027:199011 +k1,658:20692178,31609027:199011 +k1,658:22169796,31609027:199011 +k1,658:23054969,31609027:199011 +k1,658:24273064,31609027:199010 +k1,658:25707429,31609027:199011 +k1,658:26565732,31609027:199011 +k1,658:29841003,31609027:199011 +k1,658:32583029,31609027:0 +) +(1,659:6630773,32474107:25952256,513147,134348 +g1,658:10520334,32474107 +g1,658:11738648,32474107 +g1,658:15242858,32474107 +g1,658:16101379,32474107 +g1,658:20023708,32474107 +g1,658:20838975,32474107 +g1,658:23329998,32474107 +k1,659:32583029,32474107:5906763 +g1,659:32583029,32474107 +) +(1,661:6630773,33339187:25952256,513147,126483 +h1,660:6630773,33339187:983040,0,0 +k1,660:8488198,33339187:246550 +k1,660:9753832,33339187:246549 +k1,660:11306515,33339187:246550 +k1,660:12874925,33339187:246549 +k1,660:13780767,33339187:246550 +k1,660:15046401,33339187:246549 +k1,660:17710574,33339187:246550 +k1,660:18825475,33339187:246549 +k1,660:20204487,33339187:246550 +k1,660:21543521,33339187:246549 +k1,660:22204866,33339187:246502 +k1,660:23102844,33339187:246550 +k1,660:24164661,33339187:246549 +k1,660:27250231,33339187:246550 +k1,660:31298523,33339187:246549 +k1,660:32583029,33339187:0 +) +(1,661:6630773,34204267:25952256,513147,126483 +k1,660:8975083,34204267:163927 +k1,660:9886777,34204267:163928 +k1,660:10775532,34204267:163927 +k1,660:12334065,34204267:163927 +k1,660:13689437,34204267:163927 +k1,660:16345699,34204267:163928 +k1,660:17794132,34204267:163927 +k1,660:19128532,34204267:163927 +k1,660:20424921,34204267:163927 +k1,660:21655120,34204267:163928 +k1,660:23349313,34204267:163927 +k1,660:24164668,34204267:163927 +k1,660:26008938,34204267:163927 +k1,660:27995422,34204267:163928 +k1,660:29178434,34204267:163927 +k1,660:32583029,34204267:0 +) +(1,661:6630773,35069347:25952256,513147,134348 +k1,660:10521951,35069347:160869 +k1,660:12063664,35069347:160869 +k1,660:13619139,35069347:160869 +k1,660:15268331,35069347:160869 +k1,660:16561662,35069347:160869 +k1,660:18002449,35069347:160869 +k1,660:19333791,35069347:160869 +k1,660:19850519,35069347:160868 +k1,660:22211432,35069347:160869 +k1,660:23023729,35069347:160869 +k1,660:24922613,35069347:160869 +k1,660:25892852,35069347:160869 +k1,660:28655500,35069347:160869 +k1,660:30146750,35069347:160869 +k1,660:30959047,35069347:160869 +k1,660:32583029,35069347:0 +) +(1,661:6630773,35934427:25952256,505283,126483 +g1,660:9032012,35934427 +g1,660:12721033,35934427 +g1,660:13533024,35934427 +g1,660:14751338,35934427 +g1,660:18110058,35934427 +k1,661:32583029,35934427:11898061 +g1,661:32583029,35934427 +) +(1,663:6630773,36799507:25952256,513147,134348 +h1,662:6630773,36799507:983040,0,0 +k1,662:9455142,36799507:227833 +k1,662:10299013,36799507:227833 +k1,662:11545931,36799507:227833 +k1,662:14365058,36799507:227833 +k1,662:15763365,36799507:227834 +k1,662:17123660,36799507:227833 +k1,662:20332726,36799507:227833 +k1,662:22090825,36799507:227833 +k1,662:22970086,36799507:227833 +k1,662:24935934,36799507:227833 +k1,662:26813964,36799507:227833 +k1,662:27851167,36799507:227833 +k1,662:29098086,36799507:227834 +k1,662:29740733,36799507:227804 +k1,662:32583029,36799507:0 +) +(1,663:6630773,37664587:25952256,513147,134348 +k1,662:7981514,37664587:159296 +k1,662:8929208,37664587:159296 +k1,662:11991094,37664587:159296 +k1,662:13341835,37664587:159296 +k1,662:14714202,37664587:159296 +k1,662:15682868,37664587:159296 +k1,662:17172545,37664587:159296 +k1,662:20821633,37664587:159296 +k1,662:21972489,37664587:159296 +k1,662:24728321,37664587:159296 +k1,662:25647835,37664587:159296 +k1,662:26826216,37664587:159296 +k1,662:28168437,37664587:159296 +k1,662:28987025,37664587:159296 +k1,662:30165406,37664587:159296 +k1,662:32583029,37664587:0 +) +(1,663:6630773,38529667:25952256,513147,134348 +k1,662:7940678,38529667:139432 +k1,662:9212571,38529667:139431 +k1,662:10099769,38529667:139432 +k1,662:12731534,38529667:139431 +k1,662:14264917,38529667:139432 +k1,662:16006048,38529667:139431 +k1,662:16804772,38529667:139432 +k1,662:17963288,38529667:139431 +k1,662:19862362,38529667:139432 +k1,662:20661085,38529667:139431 +k1,662:22925194,38529667:139432 +k1,662:25619874,38529667:139431 +k1,662:27272532,38529667:139432 +k1,662:28028001,38529667:139431 +k1,662:29186518,38529667:139432 +k1,662:29740733,38529667:139372 +k1,662:32583029,38529667:0 +) +(1,663:6630773,39394747:25952256,505283,126483 +g1,662:8021447,39394747 +g1,662:9391149,39394747 +g1,662:10722840,39394747 +g1,662:11669835,39394747 +g1,662:13177818,39394747 +g1,662:14028475,39394747 +g1,662:15640005,39394747 +g1,662:17030679,39394747 +g1,662:18844715,39394747 +g1,662:21168621,39394747 +g1,662:21782693,39394747 +k1,663:32583029,39394747:7110004 +g1,663:32583029,39394747 +) +(1,665:6630773,40259827:25952256,513147,134348 +h1,664:6630773,40259827:983040,0,0 +k1,664:9647308,40259827:157199 +k1,664:10823591,40259827:157198 +k1,664:13572084,40259827:157199 +k1,664:13942233,40259827:157157 +k1,664:15231893,40259827:157198 +k1,664:19274722,40259827:157199 +k1,664:21092602,40259827:157198 +k1,664:22268886,40259827:157199 +k1,664:25731066,40259827:157199 +k1,664:26547556,40259827:157198 +k1,664:27723840,40259827:157199 +k1,664:28295840,40259827:157157 +k1,664:29949225,40259827:157198 +k1,664:30722462,40259827:157199 +k1,665:32583029,40259827:0 +) +(1,665:6630773,41124907:25952256,513147,126483 +k1,664:9501632,41124907:195024 +k1,664:12559924,41124907:195024 +k1,664:13232705,41124907:195024 +k1,664:14598202,41124907:195024 +k1,664:15784786,41124907:195024 +k1,664:17046081,41124907:195024 +k1,664:19733440,41124907:195025 +k1,664:21322415,41124907:195024 +k1,664:22536524,41124907:195024 +k1,664:27054958,41124907:195024 +k1,664:30113250,41124907:195024 +k1,664:31478747,41124907:195024 +k1,664:32583029,41124907:0 +) +(1,665:6630773,41989987:25952256,513147,134348 +k1,664:8694854,41989987:199582 +k1,664:10914911,41989987:199582 +k1,664:12133578,41989987:199582 +k1,664:16599555,41989987:199583 +k1,664:17485299,41989987:199582 +k1,664:19073589,41989987:199582 +k1,664:19959333,41989987:199582 +k1,664:21329388,41989987:199582 +k1,664:25193743,41989987:199582 +k1,664:26412411,41989987:199583 +k1,664:29558492,41989987:199582 +k1,664:30949519,41989987:199582 +k1,664:32168186,41989987:199582 +k1,665:32583029,41989987:0 +) +(1,665:6630773,42855067:25952256,505283,7863 +k1,665:32583030,42855067:24282400 +g1,665:32583030,42855067 +) +] +(1,669:32583029,45706769:0,0,0 +g1,669:32583029,45706769 +) +) +] +(1,669:6630773,47279633:25952256,485622,11795 +(1,669:6630773,47279633:25952256,485622,11795 +(1,669:6630773,47279633:0,0,0 +v1,669:6630773,47279633:0,0,0 +) +g1,669:6830002,47279633 +k1,669:31786110,47279633:24956108 +) +) +] +(1,669:4262630,4025873:0,0,0 +[1,669:-473656,4025873:0,0,0 +(1,669:-473656,-710413:0,0,0 +(1,669:-473656,-710413:0,0,0 +g1,669:-473656,-710413 +) +g1,669:-473656,-710413 ) ] -g1,598:6630773,4812305 -g1,598:6630773,4812305 -g1,598:8592265,4812305 -g1,598:9205682,4812305 -k1,598:31786110,4812305:22580428 -) ) ] -[1,598:6630773,45706769:25952256,40108032,0 -(1,598:6630773,45706769:25952256,40108032,0 -(1,598:6630773,45706769:0,0,0 -g1,598:6630773,45706769 -) -[1,598:6630773,45706769:25952256,40108032,0 -v1,563:6630773,6254097:0,393216,0 -(1,563:6630773,9748290:25952256,3887409,0 -g1,563:6630773,9748290 -g1,563:6303093,9748290 -r1,598:6401397,9748290:98304,3887409,0 -g1,563:6600626,9748290 -g1,563:6797234,9748290 -[1,563:6797234,9748290:25785795,3887409,0 -(1,555:6797234,6686635:25785795,825754,196608 -(1,554:6797234,6686635:0,825754,196608 -r1,598:7890375,6686635:1093141,1022362,196608 -k1,554:6797234,6686635:-1093141 -) -(1,554:6797234,6686635:1093141,825754,196608 -) -k1,554:8067706,6686635:177331 -k1,554:9385635,6686635:327680 -k1,554:11109616,6686635:177331 -k1,554:11899709,6686635:177331 -k1,554:13465092,6686635:177330 -k1,554:14590074,6686635:177331 -k1,554:16459545,6686635:177331 -k1,554:18338846,6686635:177331 -k1,554:21541974,6686635:177331 -k1,554:22865530,6686635:177331 -(1,554:22865530,6686635:0,452978,115847 -r1,598:24982355,6686635:2116825,568825,115847 -k1,554:22865530,6686635:-2116825 -) -(1,554:22865530,6686635:2116825,452978,115847 -k1,554:22865530,6686635:3277 -h1,554:24979078,6686635:0,411205,112570 -) -k1,554:25333355,6686635:177330 -(1,554:25333355,6686635:0,452978,115847 -r1,598:27098468,6686635:1765113,568825,115847 -k1,554:25333355,6686635:-1765113 -) -(1,554:25333355,6686635:1765113,452978,115847 -k1,554:25333355,6686635:3277 -h1,554:27095191,6686635:0,411205,112570 -) -k1,554:27449469,6686635:177331 -(1,554:27449469,6686635:0,452978,115847 -r1,598:29566294,6686635:2116825,568825,115847 -k1,554:27449469,6686635:-2116825 -) -(1,554:27449469,6686635:2116825,452978,115847 -k1,554:27449469,6686635:3277 -h1,554:29563017,6686635:0,411205,112570 -) -k1,554:29743625,6686635:177331 -k1,554:31286071,6686635:177331 -k1,554:32583029,6686635:0 -) -(1,555:6797234,7528123:25785795,513147,115847 -g1,554:8236404,7528123 -(1,554:8236404,7528123:0,452978,115847 -r1,598:10353229,7528123:2116825,568825,115847 -k1,554:8236404,7528123:-2116825 -) -(1,554:8236404,7528123:2116825,452978,115847 -k1,554:8236404,7528123:3277 -h1,554:10349952,7528123:0,411205,112570 -) -g1,554:10552458,7528123 -k1,555:32583028,7528123:20251268 -g1,555:32583028,7528123 -) -v1,557:6797234,8718589:0,393216,0 -(1,561:6797234,9027394:25785795,702021,196608 -g1,561:6797234,9027394 -g1,561:6797234,9027394 -g1,561:6600626,9027394 -(1,561:6600626,9027394:0,702021,196608 -r1,598:32779637,9027394:26179011,898629,196608 -k1,561:6600625,9027394:-26179012 -) -(1,561:6600626,9027394:26179011,702021,196608 -[1,561:6797234,9027394:25785795,505413,0 -(1,559:6797234,8926207:25785795,404226,101187 -(1,558:6797234,8926207:0,0,0 -g1,558:6797234,8926207 -g1,558:6797234,8926207 -g1,558:6469554,8926207 -(1,558:6469554,8926207:0,0,0 -) -g1,558:6797234,8926207 -) -k1,559:6797234,8926207:0 -h1,559:9958691,8926207:0,0,0 -k1,559:32583029,8926207:22624338 -g1,559:32583029,8926207 -) -] -) -g1,561:32583029,9027394 -g1,561:6797234,9027394 -g1,561:6797234,9027394 -g1,561:32583029,9027394 -g1,561:32583029,9027394 -) -h1,561:6797234,9224002:0,0,0 -] -g1,563:32583029,9748290 -) -h1,563:6630773,9748290:0,0,0 -v1,566:6630773,11114066:0,393216,0 -(1,567:6630773,13351974:25952256,2631124,0 -g1,567:6630773,13351974 -g1,567:6303093,13351974 -r1,598:6401397,13351974:98304,2631124,0 -g1,567:6600626,13351974 -g1,567:6797234,13351974 -[1,567:6797234,13351974:25785795,2631124,0 -(1,567:6797234,11534650:25785795,813800,267386 -(1,566:6797234,11534650:0,813800,267386 -r1,598:8134168,11534650:1336934,1081186,267386 -k1,566:6797234,11534650:-1336934 -) -(1,566:6797234,11534650:1336934,813800,267386 -) -k1,566:8331028,11534650:196860 -k1,566:8658708,11534650:327680 -k1,566:10638803,11534650:196860 -k1,566:12732275,11534650:196860 -k1,566:13580563,11534650:196860 -k1,566:15808384,11534650:196860 -k1,566:17393297,11534650:196860 -k1,566:19811828,11534650:196860 -k1,566:20660116,11534650:196860 -k1,566:21271817,11534650:196858 -k1,566:24541005,11534650:196860 -k1,566:27648319,11534650:196860 -k1,566:29988862,11534650:196860 -k1,566:31104537,11534650:196860 -k1,566:32583029,11534650:0 -) -(1,567:6797234,12376138:25785795,505283,134348 -k1,566:7619851,12376138:206579 -k1,566:9388153,12376138:206579 -k1,566:11310466,12376138:206580 -k1,566:12897889,12376138:206579 -k1,566:14123553,12376138:206579 -k1,566:16910284,12376138:206579 -k1,566:17648361,12376138:206580 -k1,566:19999278,12376138:206579 -k1,566:21473323,12376138:206579 -k1,566:22698987,12376138:206579 -k1,566:25249790,12376138:206580 -k1,566:25871205,12376138:206572 -k1,566:28600265,12376138:206579 -k1,566:29493006,12376138:206579 -k1,566:32583029,12376138:0 -) -(1,567:6797234,13217626:25785795,513147,134348 -g1,566:7805833,13217626 -g1,566:9503215,13217626 -h1,566:10698592,13217626:0,0,0 -g1,566:11071491,13217626 -g1,566:13313477,13217626 -g1,566:15602649,13217626 -(1,566:15602649,13217626:0,452978,115847 -r1,598:17719474,13217626:2116825,568825,115847 -k1,566:15602649,13217626:-2116825 -) -(1,566:15602649,13217626:2116825,452978,115847 -k1,566:15602649,13217626:3277 -h1,566:17716197,13217626:0,411205,112570 -) -k1,567:32583029,13217626:14689885 -g1,567:32583029,13217626 -) -] -g1,567:32583029,13351974 -) -h1,567:6630773,13351974:0,0,0 -(1,570:6630773,14717750:25952256,513147,134348 -h1,569:6630773,14717750:983040,0,0 -k1,569:9563275,14717750:166227 -k1,569:11464896,14717750:166228 -k1,569:14055300,14717750:166227 -k1,569:15876311,14717750:166227 -k1,569:17034098,14717750:166227 -k1,569:19070724,14717750:166228 -k1,569:20805228,14717750:166227 -k1,569:21630747,14717750:166227 -k1,569:25103266,14717750:166228 -k1,569:25920921,14717750:166227 -k1,569:26443008,14717750:166227 -k1,569:27997288,14717750:166227 -k1,569:29661669,14717750:166228 -k1,569:31270343,14717750:166227 -k1,570:32583029,14717750:0 -) -(1,570:6630773,15559238:25952256,513147,134348 -k1,569:7824370,15559238:203348 -k1,569:10723214,15559238:203348 -(1,569:10723214,15559238:0,452978,115847 -r1,598:12840039,15559238:2116825,568825,115847 -k1,569:10723214,15559238:-2116825 -) -(1,569:10723214,15559238:2116825,452978,115847 -k1,569:10723214,15559238:3277 -h1,569:12836762,15559238:0,411205,112570 -) -k1,569:13043387,15559238:203348 -k1,569:14008262,15559238:203347 -k1,569:16240605,15559238:203348 -k1,569:17232351,15559238:203348 -k1,569:19347384,15559238:203348 -k1,569:20498383,15559238:203348 -k1,569:23536818,15559238:203348 -k1,569:25134117,15559238:203348 -k1,569:26356549,15559238:203347 -k1,569:28609863,15559238:203348 -k1,569:29622581,15559238:203348 -k1,569:30845014,15559238:203348 -k1,569:32583029,15559238:0 -) -(1,570:6630773,16400726:25952256,513147,134348 -k1,569:7508206,16400726:218141 -k1,569:8082207,16400726:218141 -k1,569:10995845,16400726:218142 -k1,569:11830024,16400726:218141 -k1,569:13067250,16400726:218141 -k1,569:15194455,16400726:218141 -k1,569:16095482,16400726:218142 -k1,569:18907538,16400726:218141 -k1,569:21832971,16400726:218141 -k1,569:23070197,16400726:218141 -k1,569:24054454,16400726:218141 -k1,569:25373601,16400726:218142 -k1,569:27499495,16400726:218141 -k1,569:28736721,16400726:218141 -k1,570:32583029,16400726:0 -) -(1,570:6630773,17242214:25952256,513147,134348 -k1,569:7798379,17242214:177357 -k1,569:9363788,17242214:177356 -k1,569:11039298,17242214:177357 -k1,569:11832692,17242214:177356 -k1,569:13029134,17242214:177357 -k1,569:14594544,17242214:177357 -k1,569:16484356,17242214:177356 -k1,569:18878141,17242214:177357 -k1,569:20074583,17242214:177357 -k1,569:22301905,17242214:177356 -k1,569:24281502,17242214:177357 -k1,569:25406509,17242214:177356 -k1,569:25939726,17242214:177357 -k1,569:27250201,17242214:177357 -k1,569:29999190,17242214:177356 -k1,569:31563944,17242214:177357 -k1,569:32583029,17242214:0 -) -(1,570:6630773,18083702:25952256,513147,126483 -k1,569:8537410,18083702:168622 -k1,569:9365324,18083702:168622 -k1,569:9889806,18083702:168622 -k1,569:12753924,18083702:168622 -k1,569:13535308,18083702:168622 -k1,569:14723015,18083702:168622 -k1,569:15306449,18083702:168591 -k1,569:17895316,18083702:168622 -k1,569:19196400,18083702:168622 -k1,569:20942474,18083702:168622 -k1,569:23579837,18083702:168622 -k1,569:25436666,18083702:168622 -k1,569:26552939,18083702:168622 -k1,569:27353328,18083702:168622 -k1,569:27999707,18083702:168622 -k1,569:29187414,18083702:168622 -k1,569:32051532,18083702:168622 -k1,569:32583029,18083702:0 -) -(1,570:6630773,18925190:25952256,513147,126483 -k1,569:9218830,18925190:206479 -k1,569:10041348,18925190:206480 -k1,569:10603687,18925190:206479 -k1,569:12641243,18925190:206480 -k1,569:13530607,18925190:206479 -k1,569:16209759,18925190:206479 -k1,569:17399279,18925190:206480 -k1,569:18890264,18925190:206479 -k1,569:19628240,18925190:206479 -k1,569:21412172,18925190:206480 -k1,569:22234689,18925190:206479 -k1,569:23460254,18925190:206480 -k1,569:25575797,18925190:206479 -k1,569:27494732,18925190:206479 -k1,569:28857922,18925190:206480 -k1,569:30168683,18925190:206479 -k1,569:32583029,18925190:0 -) -(1,570:6630773,19766678:25952256,513147,134348 -k1,569:9449738,19766678:155582 -k1,569:11172942,19766678:155583 -k1,569:12347609,19766678:155582 -k1,569:13671698,19766678:155582 -k1,569:15746175,19766678:155583 -k1,569:16920842,19766678:155582 -k1,569:19771920,19766678:155582 -k1,569:20459000,19766678:155583 -k1,569:22482358,19766678:155582 -k1,569:23289368,19766678:155582 -k1,569:25363845,19766678:155583 -k1,569:25977524,19766678:155582 -k1,569:26664603,19766678:155582 -k1,569:29375435,19766678:155583 -k1,569:30158852,19766678:155582 -k1,569:32583029,19766678:0 -) -(1,570:6630773,20608166:25952256,513147,134348 -k1,569:8024071,20608166:236588 -k1,569:9364940,20608166:236587 -k1,569:10887344,20608166:236588 -k1,569:13194214,20608166:236588 -k1,569:14378453,20608166:236588 -k1,569:16003093,20608166:236587 -k1,569:18798207,20608166:236588 -k1,569:20053880,20608166:236588 -k1,569:23240243,20608166:236588 -k1,569:26460684,20608166:236587 -k1,569:27893959,20608166:236588 -k1,569:28545352,20608166:236550 -k1,569:31478747,20608166:236588 -k1,569:32583029,20608166:0 -) -(1,570:6630773,21449654:25952256,505283,134348 -g1,569:8115818,21449654 -g1,569:9062813,21449654 -g1,569:12061085,21449654 -g1,569:13862014,21449654 -g1,569:15862172,21449654 -g1,569:18619927,21449654 -g1,569:19838241,21449654 -g1,569:21515962,21449654 -g1,569:23512188,21449654 -g1,569:24327455,21449654 -g1,569:26950861,21449654 -g1,569:27832975,21449654 -k1,570:32583029,21449654:2937329 -g1,570:32583029,21449654 -) -(1,571:6630773,23540914:25952256,555811,147783 -(1,571:6630773,23540914:2450326,534184,12975 -g1,571:6630773,23540914 -g1,571:9081099,23540914 -) -g1,571:11359852,23540914 -g1,571:12082190,23540914 -g1,571:13012867,23540914 -g1,571:13638605,23540914 -g1,571:16206437,23540914 -k1,571:32583029,23540914:14875686 -g1,571:32583029,23540914 -) -(1,574:6630773,24775618:25952256,513147,134348 -k1,573:7670328,24775618:210525 -k1,573:8998897,24775618:210525 -k1,573:9565281,24775618:210524 -k1,573:11606882,24775618:210525 -k1,573:12685759,24775618:210525 -k1,573:14426550,24775618:210525 -k1,573:15943207,24775618:210524 -k1,573:16805160,24775618:210525 -k1,573:19484426,24775618:210525 -k1,573:20050811,24775618:210525 -k1,573:22092411,24775618:210524 -k1,573:22918974,24775618:210525 -k1,573:23485359,24775618:210525 -k1,573:24922063,24775618:210525 -k1,573:27215321,24775618:210524 -k1,573:29410932,24775618:210525 -h1,573:30381520,24775618:0,0,0 -k1,573:30592045,24775618:210525 -k1,573:32583029,24775618:0 -) -(1,574:6630773,25617106:25952256,513147,134348 -k1,573:7870563,25617106:220705 -k1,573:10511513,25617106:220705 -k1,573:14668966,25617106:220705 -k1,573:16402897,25617106:220705 -k1,573:19146738,25617106:220705 -k1,573:20386528,25617106:220705 -k1,573:22438309,25617106:220705 -k1,573:23642054,25617106:220705 -k1,573:25938284,25617106:220705 -k1,573:26775027,25617106:220705 -k1,573:28014817,25617106:220705 -k1,573:29461701,25617106:220705 -k1,573:31765140,25617106:220705 -k1,573:32583029,25617106:0 -) -(1,574:6630773,26458594:25952256,513147,126483 -k1,573:9028494,26458594:181293 -k1,573:10266226,26458594:181292 -k1,573:11847368,26458594:181293 -k1,573:13047745,26458594:181292 -k1,573:16388529,26458594:181293 -(1,573:16388529,26458594:0,452978,115847 -r1,598:23781031,26458594:7392502,568825,115847 -k1,573:16388529,26458594:-7392502 -) -(1,573:16388529,26458594:7392502,452978,115847 -k1,573:16388529,26458594:3277 -h1,573:23777754,26458594:0,411205,112570 -) -k1,573:24135993,26458594:181292 -k1,573:25524459,26458594:181293 -k1,573:27512579,26458594:181292 -k1,573:28455400,26458594:181293 -k1,573:29655777,26458594:181292 -k1,573:31391584,26458594:181293 -k1,573:32583029,26458594:0 -) -(1,574:6630773,27300082:25952256,513147,126483 -k1,573:7878041,27300082:228183 -k1,573:9473959,27300082:228182 -k1,573:10928321,27300082:228183 -k1,573:11772542,27300082:228183 -k1,573:13019809,27300082:228182 -k1,573:15668237,27300082:228183 -k1,573:16427917,27300082:228183 -k1,573:18204715,27300082:228182 -k1,573:19640071,27300082:228183 -k1,573:22931407,27300082:228183 -k1,573:23921117,27300082:228182 -k1,573:24564114,27300082:228154 -k1,573:25478458,27300082:228182 -k1,573:26062501,27300082:228183 -k1,573:28133556,27300082:228183 -k1,573:29021030,27300082:228182 -k1,573:30452454,27300082:228183 -k1,573:32583029,27300082:0 -) -(1,574:6630773,28141570:25952256,513147,102891 -k1,573:8093162,28141570:265702 -k1,573:9626329,28141570:265701 -k1,573:10936675,28141570:265702 -k1,573:11861669,28141570:265702 -k1,573:13146455,28141570:265701 -k1,573:16006072,28141570:265702 -k1,573:18262757,28141570:265701 -k1,573:22380665,28141570:265702 -k1,573:24335885,28141570:265702 -k1,573:25620671,28141570:265701 -k1,573:27153839,28141570:265702 -k1,573:28464185,28141570:265702 -k1,573:29389178,28141570:265701 -k1,573:30673965,28141570:265702 -k1,573:32583029,28141570:0 -) -(1,574:6630773,28983058:25952256,513147,126483 -k1,573:8855925,28983058:234168 -k1,573:10109178,28983058:234168 -k1,573:11787760,28983058:234168 -k1,573:12673357,28983058:234169 -k1,573:13926610,28983058:234168 -k1,573:15991854,28983058:234168 -k1,573:17209062,28983058:234168 -k1,573:18727736,28983058:234168 -k1,573:19493401,28983058:234168 -k1,573:21305021,28983058:234168 -k1,573:22730634,28983058:234168 -k1,573:24738206,28983058:234168 -k1,573:25623803,28983058:234169 -k1,573:26605737,28983058:234168 -k1,573:28834166,28983058:234168 -k1,573:31821501,28983058:234168 -k1,573:32583029,28983058:0 -) -(1,574:6630773,29824546:25952256,505283,7863 -k1,574:32583030,29824546:22611232 -g1,574:32583030,29824546 -) -v1,582:6630773,31190322:0,393216,0 -(1,583:6630773,33420365:25952256,2623259,0 -g1,583:6630773,33420365 -g1,583:6303093,33420365 -r1,598:6401397,33420365:98304,2623259,0 -g1,583:6600626,33420365 -g1,583:6797234,33420365 -[1,583:6797234,33420365:25785795,2623259,0 -(1,583:6797234,31610906:25785795,813800,267386 -(1,582:6797234,31610906:0,813800,267386 -r1,598:8134168,31610906:1336934,1081186,267386 -k1,582:6797234,31610906:-1336934 -) -(1,582:6797234,31610906:1336934,813800,267386 -) -k1,582:8306473,31610906:172305 -k1,582:8634153,31610906:327680 -k1,582:10589693,31610906:172305 -k1,582:13348704,31610906:172305 -k1,582:14133771,31610906:172305 -k1,582:15325161,31610906:172305 -k1,582:18656956,31610906:172304 -k1,582:21404171,31610906:172305 -k1,582:23178176,31610906:172305 -k1,582:25523655,31610906:172305 -k1,582:26687520,31610906:172305 -k1,582:29209946,31610906:172305 -k1,582:30143779,31610906:172305 -k1,582:32583029,31610906:0 -) -(1,583:6797234,32452394:25785795,513147,126483 -k1,582:9895302,32452394:163366 -k1,582:12068656,32452394:163365 -k1,582:14393399,32452394:163366 -k1,582:15713474,32452394:163365 -k1,582:17737407,32452394:163366 -k1,582:18552200,32452394:163365 -k1,582:19808051,32452394:163366 -k1,582:22666913,32452394:163366 -(1,582:22666913,32452394:0,452978,115847 -r1,598:25135450,32452394:2468537,568825,115847 -k1,582:22666913,32452394:-2468537 -) -(1,582:22666913,32452394:2468537,452978,115847 -k1,582:22666913,32452394:3277 -h1,582:25132173,32452394:0,411205,112570 -) -k1,582:25298815,32452394:163365 -k1,582:28359528,32452394:163366 -k1,582:30220931,32452394:163365 -k1,582:30740157,32452394:163366 -k1,582:32583029,32452394:0 -) -(1,583:6797234,33293882:25785795,505283,126483 -g1,582:7527960,33293882 -g1,582:8378617,33293882 -g1,582:9325612,33293882 -k1,583:32583029,33293882:20020594 -g1,583:32583029,33293882 -) -] -g1,583:32583029,33420365 -) -h1,583:6630773,33420365:0,0,0 -(1,586:6630773,34786141:25952256,505283,134348 -h1,585:6630773,34786141:983040,0,0 -k1,585:8291570,34786141:190169 -k1,585:9789191,34786141:190178 -k1,585:12041133,34786141:190179 -k1,585:13553172,34786141:190178 -k1,585:14274847,34786141:190178 -k1,585:15531296,34786141:190178 -k1,585:16839518,34786141:190178 -k1,585:17642458,34786141:190178 -k1,585:18851722,34786141:190179 -k1,585:19456734,34786141:190169 -k1,585:22067157,34786141:190178 -k1,585:23329504,34786141:190178 -k1,585:24132444,34786141:190178 -k1,585:25341708,34786141:190179 -k1,585:28585864,34786141:190178 -k1,585:31021961,34786141:190178 -k1,586:32583029,34786141:0 -) -(1,586:6630773,35627629:25952256,513147,134348 -k1,585:8690187,35627629:247999 -k1,585:11513096,35627629:247999 -k1,585:12443980,35627629:247999 -k1,585:14368390,35627629:247999 -k1,585:15813076,35627629:247999 -k1,585:17563816,35627629:247999 -k1,585:18343312,35627629:247999 -k1,585:19610396,35627629:247999 -k1,585:22278640,35627629:247999 -k1,585:23185931,35627629:247999 -k1,585:24453015,35627629:247999 -k1,585:27754992,35627629:247999 -k1,586:32583029,35627629:0 -) -(1,586:6630773,36469117:25952256,505283,134348 -k1,585:8439565,36469117:183500 -k1,585:9492746,36469117:190727 -k1,585:10260170,36469117:183499 -k1,585:11126555,36469117:183500 -k1,585:15423748,36469117:183499 -k1,585:17592334,36469117:183500 -h1,585:18562922,36469117:0,0,0 -k1,585:18746421,36469117:183499 -k1,585:20920905,36469117:183500 -k1,585:22434785,36469117:183499 -k1,585:25141421,36469117:183500 -k1,585:25680780,36469117:183499 -k1,585:27695356,36469117:183500 -k1,585:28491617,36469117:183499 -k1,585:29694202,36469117:183500 -k1,585:32583029,36469117:0 -) -(1,586:6630773,37310605:25952256,505283,134348 -k1,585:10038548,37310605:248284 -k1,585:12688071,37310605:248284 -k1,585:14827070,37310605:248285 -k1,585:15562892,37310605:248234 -k1,585:17642253,37310605:248285 -k1,585:18994819,37310605:248284 -k1,585:19990869,37310605:248284 -k1,585:21357197,37310605:248284 -k1,585:22218243,37310605:248284 -k1,585:23485612,37310605:248284 -k1,585:26787875,37310605:248285 -k1,585:29282078,37310605:248284 -k1,585:31931601,37310605:248284 -k1,585:32583029,37310605:0 -) -(1,586:6630773,38152093:25952256,513147,134348 -k1,585:7657369,38152093:211328 -k1,585:13005410,38152093:211329 -k1,585:17018481,38152093:211328 -k1,585:18623761,38152093:211329 -k1,585:19854174,38152093:211328 -k1,585:22224259,38152093:211329 -k1,585:24247002,38152093:211328 -k1,585:25109759,38152093:211329 -k1,585:25676947,38152093:211328 -k1,585:27044986,38152093:211329 -k1,585:28527712,38152093:211328 -k1,585:30075975,38152093:211329 -k1,585:31379788,38152093:211328 -k1,585:32583029,38152093:0 -) -(1,586:6630773,38993581:25952256,505283,134348 -k1,585:9832207,38993581:216924 -k1,585:10858501,38993581:216924 -k1,585:11431285,38993581:216924 -k1,585:13780752,38993581:216925 -k1,585:15218612,38993581:216924 -k1,585:16086964,38993581:216924 -k1,585:17916729,38993581:216924 -k1,585:18489513,38993581:216924 -k1,585:20277335,38993581:216924 -k1,585:21883622,38993581:216924 -k1,585:24655140,38993581:216925 -k1,585:25893770,38993581:216924 -k1,585:28633830,38993581:216924 -k1,585:31900144,38993581:216924 -k1,585:32583029,38993581:0 -) -(1,586:6630773,39835069:25952256,513147,126483 -g1,585:8296698,39835069 -g1,585:9443578,39835069 -g1,585:11874308,39835069 -k1,586:32583029,39835069:19067044 -g1,586:32583029,39835069 -) -(1,594:6630773,40676557:25952256,505283,134348 -h1,593:6630773,40676557:983040,0,0 -k1,593:10051097,40676557:342098 -k1,593:12817371,40676557:342097 -k1,593:15722582,40676557:342098 -k1,593:16522777,40676557:342098 -k1,593:17396371,40676557:342097 -k1,593:20368429,40676557:342098 -k1,593:21361954,40676557:342097 -k1,593:23735013,40676557:342098 -k1,593:25096196,40676557:342098 -k1,593:28492271,40676557:342097 -k1,593:31080288,40676557:342098 -k1,593:32583029,40676557:0 -) -(1,594:6630773,41518045:25952256,505283,134348 -k1,593:9452905,41518045:263606 -k1,593:10735595,41518045:263605 -k1,593:12012388,41518045:263606 -k1,593:14434750,41518045:263606 -k1,593:18165865,41518045:263605 -k1,593:19620916,41518045:263606 -k1,593:22443048,41518045:263606 -k1,593:23725739,41518045:263606 -k1,593:25960012,41518045:263605 -k1,593:26693511,41518045:263606 -k1,593:27488614,41518045:263606 -k1,593:29038035,41518045:263605 -k1,593:31931601,41518045:263606 -k1,593:32583029,41518045:0 -) -(1,594:6630773,42359533:25952256,505283,134348 -k1,593:8012629,42359533:263812 -k1,593:9628449,42359533:263812 -k1,593:10508299,42359533:263812 -k1,593:11791196,42359533:263812 -k1,593:15844955,42359533:263812 -k1,593:16724806,42359533:263813 -k1,593:18001805,42359533:263812 -k1,593:22354408,42359533:263812 -k1,593:24444053,42359533:263812 -k1,593:25777413,42359533:263812 -k1,593:27730743,42359533:263812 -k1,593:32583029,42359533:0 -) -(1,594:6630773,43201021:25952256,505283,134348 -k1,593:8601493,43201021:235327 -k1,593:9855906,43201021:235328 -k1,593:10506040,43201021:235291 -k1,593:13335282,43201021:235327 -k1,593:14951453,43201021:235327 -k1,593:15718278,43201021:235328 -k1,593:17697518,43201021:235327 -k1,593:20562805,43201021:235327 -k1,593:21559661,43201021:235328 -k1,593:25848390,43201021:235327 -k1,593:28606853,43201021:235327 -k1,593:30014620,43201021:235328 -k1,593:30932832,43201021:235327 -k1,593:32583029,43201021:0 -) -(1,594:6630773,44042509:25952256,513147,134348 -g1,593:9815167,44042509 -g1,593:10673688,44042509 -g1,593:11892002,44042509 -g1,593:12506074,44042509 -k1,594:32583029,44042509:17161258 -g1,594:32583029,44042509 -) -] -(1,598:32583029,45706769:0,0,0 -g1,598:32583029,45706769 -) -) -] -(1,598:6630773,47279633:25952256,0,0 -h1,598:6630773,47279633:25952256,0,0 -) -] -(1,598:4262630,4025873:0,0,0 -[1,598:-473656,4025873:0,0,0 -(1,598:-473656,-710413:0,0,0 -(1,598:-473656,-710413:0,0,0 -g1,598:-473656,-710413 -) -g1,598:-473656,-710413 -) -] -) -] -!24584 -}32 -!11 -{33 -[1,598:4262630,47279633:28320399,43253760,0 -(1,598:4262630,4025873:0,0,0 -[1,598:-473656,4025873:0,0,0 -(1,598:-473656,-710413:0,0,0 -(1,598:-473656,-644877:0,0,0 -k1,598:-473656,-644877:-65536 +!15679 +}38 +Input:236:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:237:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:238:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:239:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:240:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:241:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:242:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:243:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:244:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:245:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:246:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:247:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:248:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:249:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:250:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:251:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1499 +{39 +[1,685:4262630,47279633:28320399,43253760,0 +(1,685:4262630,4025873:0,0,0 +[1,685:-473656,4025873:0,0,0 +(1,685:-473656,-710413:0,0,0 +(1,685:-473656,-644877:0,0,0 +k1,685:-473656,-644877:-65536 ) -(1,598:-473656,4736287:0,0,0 -k1,598:-473656,4736287:5209943 +(1,685:-473656,4736287:0,0,0 +k1,685:-473656,4736287:5209943 ) -g1,598:-473656,-710413 +g1,685:-473656,-710413 ) ] ) -[1,598:6630773,47279633:25952256,43253760,0 -[1,598:6630773,4812305:25952256,786432,0 -(1,598:6630773,4812305:25952256,505283,134348 -(1,598:6630773,4812305:25952256,505283,134348 -g1,598:3078558,4812305 -[1,598:3078558,4812305:0,0,0 -(1,598:3078558,2439708:0,1703936,0 -k1,598:1358238,2439708:-1720320 -(1,417:1358238,2439708:1720320,1703936,0 -(1,417:1358238,2439708:1179648,16384,0 -r1,598:2537886,2439708:1179648,16384,0 +[1,685:6630773,47279633:25952256,43253760,0 +[1,685:6630773,4812305:25952256,786432,0 +(1,685:6630773,4812305:25952256,505283,11795 +(1,685:6630773,4812305:25952256,505283,11795 +g1,685:3078558,4812305 +[1,685:3078558,4812305:0,0,0 +(1,685:3078558,2439708:0,1703936,0 +k1,685:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,685:2537886,2439708:1179648,16384,0 ) -g1,417:3062174,2439708 -(1,417:3062174,2439708:16384,1703936,0 -[1,417:3062174,2439708:25952256,1703936,0 -(1,417:3062174,1915420:25952256,1179648,0 -(1,417:3062174,1915420:16384,1179648,0 -r1,598:3078558,1915420:16384,1179648,0 +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,685:3078558,1915420:16384,1179648,0 ) -k1,417:29014430,1915420:25935872 -g1,417:29014430,1915420 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) ] ) ) ) ] -[1,598:3078558,4812305:0,0,0 -(1,598:3078558,2439708:0,1703936,0 -g1,598:29030814,2439708 -g1,598:36135244,2439708 -(1,417:36135244,2439708:1720320,1703936,0 -(1,417:36135244,2439708:16384,1703936,0 -[1,417:36135244,2439708:25952256,1703936,0 -(1,417:36135244,1915420:25952256,1179648,0 -(1,417:36135244,1915420:16384,1179648,0 -r1,598:36151628,1915420:16384,1179648,0 +[1,685:3078558,4812305:0,0,0 +(1,685:3078558,2439708:0,1703936,0 +g1,685:29030814,2439708 +g1,685:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,685:36151628,1915420:16384,1179648,0 ) -k1,417:62087500,1915420:25935872 -g1,417:62087500,1915420 +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) ] ) -g1,417:36675916,2439708 -(1,417:36675916,2439708:1179648,16384,0 -r1,598:37855564,2439708:1179648,16384,0 +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,685:37855564,2439708:1179648,16384,0 ) ) -k1,598:3078556,2439708:-34777008 +k1,685:3078556,2439708:-34777008 ) ] -[1,598:3078558,4812305:0,0,0 -(1,598:3078558,49800853:0,16384,2228224 -k1,598:1358238,49800853:-1720320 -(1,417:1358238,49800853:1720320,16384,2228224 -(1,417:1358238,49800853:1179648,16384,0 -r1,598:2537886,49800853:1179648,16384,0 +[1,685:3078558,4812305:0,0,0 +(1,685:3078558,49800853:0,16384,2228224 +k1,685:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,685:2537886,49800853:1179648,16384,0 ) -g1,417:3062174,49800853 -(1,417:3062174,52029077:16384,1703936,0 -[1,417:3062174,52029077:25952256,1703936,0 -(1,417:3062174,51504789:25952256,1179648,0 -(1,417:3062174,51504789:16384,1179648,0 -r1,598:3078558,51504789:16384,1179648,0 +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,685:3078558,51504789:16384,1179648,0 ) -k1,417:29014430,51504789:25935872 -g1,417:29014430,51504789 +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) ] ) ) ) ] -[1,598:3078558,4812305:0,0,0 -(1,598:3078558,49800853:0,16384,2228224 -g1,598:29030814,49800853 -g1,598:36135244,49800853 -(1,417:36135244,49800853:1720320,16384,2228224 -(1,417:36135244,52029077:16384,1703936,0 -[1,417:36135244,52029077:25952256,1703936,0 -(1,417:36135244,51504789:25952256,1179648,0 -(1,417:36135244,51504789:16384,1179648,0 -r1,598:36151628,51504789:16384,1179648,0 +[1,685:3078558,4812305:0,0,0 +(1,685:3078558,49800853:0,16384,2228224 +g1,685:29030814,49800853 +g1,685:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,685:36151628,51504789:16384,1179648,0 ) -k1,417:62087500,51504789:25935872 -g1,417:62087500,51504789 +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 ) ] ) -g1,417:36675916,49800853 -(1,417:36675916,49800853:1179648,16384,0 -r1,598:37855564,49800853:1179648,16384,0 +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,685:37855564,49800853:1179648,16384,0 ) ) -k1,598:3078556,49800853:-34777008 +k1,685:3078556,49800853:-34777008 ) -] -g1,598:6630773,4812305 -k1,598:21916392,4812305:14488701 -g1,598:22703479,4812305 -g1,598:23888369,4812305 -g1,598:27214321,4812305 -g1,598:28624000,4812305 -g1,598:29808890,4812305 -) -) -] -[1,598:6630773,45706769:25952256,40108032,0 -(1,598:6630773,45706769:25952256,40108032,0 -(1,598:6630773,45706769:0,0,0 -g1,598:6630773,45706769 -) -[1,598:6630773,45706769:25952256,40108032,0 -[1,579:6630773,24249619:25952256,17201881,0 -[1,579:6630773,24249619:25952256,17201881,0 -(1,578:6630773,20943312:25952256,13895574,0 -g1,578:6630773,20943312 -h1,577:6630773,20943312:0,0,0 -(1,577:6630773,20943312:25952256,13895574,0 -) -g1,578:32583029,20943312 -g1,578:32583029,20943312 -) -(1,578:6630773,22440160:25952256,485622,11795 -h1,578:6630773,22440160:0,0,0 -g1,578:9295467,22440160 -k1,578:32583028,22440160:22297312 -g1,578:32583028,22440160 -) -(1,578:6630773,23281648:25952256,513147,134348 -h1,578:6630773,23281648:0,0,0 -k1,578:8940263,23281648:222824 -k1,578:11580710,23281648:222824 -k1,578:12462826,23281648:222824 -k1,578:13704735,23281648:222824 -k1,578:14342379,23281648:222801 -k1,578:16985448,23281648:222824 -k1,578:18399717,23281648:222824 -k1,578:20531605,23281648:222824 -k1,578:21983229,23281648:222824 -k1,578:23719280,23281648:222825 -k1,578:26465240,23281648:222824 -k1,578:27043924,23281648:222824 -k1,578:29271494,23281648:222824 -k1,578:30691005,23281648:222824 -k1,578:32583029,23281648:0 -) -(1,578:6630773,24123136:25952256,513147,126483 -g1,578:8368787,24123136 -g1,578:10559000,24123136 -g1,578:11777314,24123136 -g1,578:12391386,24123136 -g1,578:15184530,24123136 -g1,578:16575204,24123136 -g1,578:17793518,24123136 -g1,578:19749112,24123136 -g1,578:21660797,24123136 -g1,578:22879111,24123136 -g1,578:24909416,24123136 -g1,578:26091685,24123136 -g1,578:26906952,24123136 -g1,578:27876884,24123136 -k1,578:32583029,24123136:2623411 -g1,578:32583029,24123136 -) -] -] -[1,591:6630773,44257768:25952256,16585860,0 -[1,591:6630773,44257768:25952256,16585860,0 -(1,590:6630773,39292077:25952256,11620169,0 -g1,590:6630773,39292077 -h1,589:6630773,39292077:0,0,0 -(1,589:6630773,39292077:25952256,11620169,0 -) -g1,590:32583029,39292077 -g1,590:32583029,39292077 -) -(1,590:6630773,40788925:25952256,485622,11795 -h1,590:6630773,40788925:0,0,0 -g1,590:9295467,40788925 -k1,590:32583028,40788925:22297312 -g1,590:32583028,40788925 -) -(1,590:6630773,41630413:25952256,513147,134348 -h1,590:6630773,41630413:0,0,0 -k1,590:8927631,41630413:210192 -k1,590:11555446,41630413:210192 -k1,590:12424929,41630413:210191 -k1,590:13654206,41630413:210192 -k1,590:17804422,41630413:210192 -k1,590:21174105,41630413:210192 -k1,590:23804542,41630413:210192 -k1,590:25243534,41630413:210192 -k1,590:26966951,41630413:210191 -k1,590:29700279,41630413:210192 -k1,590:30929556,41630413:210192 -k1,590:32583029,41630413:0 -) -(1,590:6630773,42471901:25952256,505283,126483 -k1,590:8844986,42471901:209467 -k1,590:10542775,42471901:209466 -k1,590:11620594,42471901:209467 -k1,590:12922545,42471901:209466 -(1,590:12922545,42471901:0,452978,115847 -r1,598:15391082,42471901:2468537,568825,115847 -k1,590:12922545,42471901:-2468537 -) -(1,590:12922545,42471901:2468537,452978,115847 -k1,590:12922545,42471901:3277 -h1,590:15387805,42471901:0,411205,112570 -) -k1,590:15600549,42471901:209467 -k1,590:16461444,42471901:209467 -k1,590:17788954,42471901:209466 -k1,590:19017506,42471901:209467 -k1,590:21231718,42471901:209466 -k1,590:22460270,42471901:209467 -k1,590:24328453,42471901:209467 -k1,590:26621964,42471901:209466 -k1,590:27963893,42471901:209467 -k1,590:30545107,42471901:209466 -k1,590:31563944,42471901:209467 -k1,590:32583029,42471901:0 -) -(1,590:6630773,43313389:25952256,505283,134348 -k1,590:9895263,43313389:210512 -k1,590:12351693,43313389:210511 -k1,590:13178243,43313389:210512 -k1,590:14654910,43313389:210511 -k1,590:15493257,43313389:210512 -k1,590:16907010,43313389:210512 -k1,590:18658272,43313389:210511 -k1,590:19283615,43313389:210500 -k1,590:21406468,43313389:210512 -k1,590:22636065,43313389:210512 -k1,590:25019750,43313389:210511 -k1,590:25843024,43313389:210512 -k1,590:27072620,43313389:210511 -k1,590:30337110,43313389:210512 -k1,590:32583029,43313389:0 -) -(1,590:6630773,44154877:25952256,505283,102891 -g1,590:9250247,44154877 -g1,590:10132361,44154877 -g1,590:12008001,44154877 -g1,590:14158892,44154877 -g1,590:15800568,44154877 -g1,590:16615835,44154877 -g1,590:17603462,44154877 -g1,590:19133072,44154877 -g1,590:19747144,44154877 -k1,590:32583029,44154877:10241970 -g1,590:32583029,44154877 -) -] -] -] -(1,598:32583029,45706769:0,0,0 -g1,598:32583029,45706769 -) -) -] -(1,598:6630773,47279633:25952256,0,0 -h1,598:6630773,47279633:25952256,0,0 -) -] -(1,598:4262630,4025873:0,0,0 -[1,598:-473656,4025873:0,0,0 -(1,598:-473656,-710413:0,0,0 -(1,598:-473656,-710413:0,0,0 -g1,598:-473656,-710413 -) -g1,598:-473656,-710413 -) -] -) -] -!7401 -}33 -!10 -{34 -[1,607:4262630,47279633:28320399,43253760,0 -(1,607:4262630,4025873:0,0,0 -[1,607:-473656,4025873:0,0,0 -(1,607:-473656,-710413:0,0,0 -(1,607:-473656,-644877:0,0,0 -k1,607:-473656,-644877:-65536 +] +g1,685:6630773,4812305 +k1,685:22348274,4812305:14920583 +g1,685:23970945,4812305 +g1,685:24793421,4812305 +g1,685:27528893,4812305 +g1,685:28938572,4812305 +) +) +] +[1,685:6630773,45706769:25952256,40108032,0 +(1,685:6630773,45706769:25952256,40108032,0 +(1,685:6630773,45706769:0,0,0 +g1,685:6630773,45706769 +) +[1,685:6630773,45706769:25952256,40108032,0 +(1,666:6630773,6254097:25952256,32768,229376 +(1,666:6630773,6254097:0,32768,229376 +(1,666:6630773,6254097:5505024,32768,229376 +r1,685:12135797,6254097:5505024,262144,229376 +) +k1,666:6630773,6254097:-5505024 +) +(1,666:6630773,6254097:25952256,32768,0 +r1,685:32583029,6254097:25952256,32768,0 +) +) +(1,666:6630773,7885949:25952256,606339,161218 +(1,666:6630773,7885949:1974731,582746,14155 +g1,666:6630773,7885949 +g1,666:8605504,7885949 +) +g1,666:11784262,7885949 +g1,666:13493965,7885949 +g1,666:17548809,7885949 +k1,666:32583029,7885949:11079253 +g1,666:32583029,7885949 +) +(1,669:6630773,9144245:25952256,505283,134348 +k1,668:9973437,9144245:144507 +k1,668:13290541,9144245:144506 +k1,668:14910263,9144245:144507 +k1,668:16722005,9144245:144506 +k1,668:18452483,9144245:144507 +k1,668:19788435,9144245:144507 +k1,668:23720922,9144245:144506 +k1,668:25056874,9144245:144507 +k1,668:28342521,9144245:144506 +k1,668:29771534,9144245:144507 +k1,668:32583029,9144245:0 +) +(1,669:6630773,10009325:25952256,513147,134348 +k1,668:8572247,10009325:244747 +k1,668:11989592,10009325:244747 +k1,668:13501805,10009325:244747 +k1,668:16434183,10009325:244747 +k1,668:18175117,10009325:244747 +k1,668:19411425,10009325:244748 +k1,668:23356335,10009325:244747 +k1,668:25423638,10009325:244747 +k1,668:27779300,10009325:244747 +k1,668:29581838,10009325:244747 +k1,668:30959047,10009325:244747 +k1,668:32583029,10009325:0 +) +(1,669:6630773,10874405:25952256,505283,134348 +k1,668:8432610,10874405:194894 +k1,668:11836802,10874405:194894 +k1,668:13103865,10874405:194894 +k1,668:13914796,10874405:194893 +k1,668:16740961,10874405:194894 +k1,668:17587283,10874405:194894 +k1,668:20002537,10874405:194894 +k1,668:22575733,10874405:194894 +k1,668:23453512,10874405:194894 +k1,668:26543786,10874405:194893 +k1,668:27871142,10874405:194894 +k1,668:29132307,10874405:194894 +k1,668:31124198,10874405:194894 +k1,668:32583029,10874405:0 +) +(1,669:6630773,11739485:25952256,505283,134348 +k1,668:10112832,11739485:249168 +k1,668:11553445,11739485:249168 +k1,668:14754354,11739485:249167 +k1,668:17938224,11739485:249168 +k1,668:21263652,11739485:249168 +k1,668:24685418,11739485:249168 +k1,668:26409801,11739485:249168 +k1,668:27014828,11739485:249167 +k1,668:29047231,11739485:249168 +k1,668:31648486,11739485:249168 +k1,668:32583029,11739485:0 +) +(1,669:6630773,12604565:25952256,513147,134348 +k1,668:7477592,12604565:187527 +k1,668:9620057,12604565:187526 +k1,668:11250031,12604565:187527 +k1,668:13729351,12604565:187526 +k1,668:17263146,12604565:187527 +k1,668:18944238,12604565:187526 +k1,668:19817927,12604565:187527 +k1,668:22490579,12604565:187527 +k1,668:23155862,12604565:187526 +k1,668:24513862,12604565:187527 +k1,668:25692948,12604565:187526 +k1,668:27163670,12604565:187527 +k1,668:28002624,12604565:187526 +k1,668:31266411,12604565:187527 +k1,669:32583029,12604565:0 +) +(1,669:6630773,13469645:25952256,505283,134348 +k1,668:10274902,13469645:221839 +k1,668:15151763,13469645:221839 +k1,668:16392687,13469645:221839 +k1,668:19328373,13469645:221840 +k1,668:22185415,13469645:221839 +k1,668:25483514,13469645:221839 +k1,668:26896798,13469645:221839 +k1,668:29410431,13469645:221839 +k1,668:32583029,13469645:0 +) +(1,669:6630773,14334725:25952256,513147,126483 +g1,668:8166936,14334725 +g1,668:9113931,14334725 +k1,669:32583029,14334725:21318206 +g1,669:32583029,14334725 +) +(1,671:6630773,15199805:25952256,513147,95026 +h1,670:6630773,15199805:983040,0,0 +k1,670:9135995,15199805:250784 +k1,670:10491062,15199805:250785 +k1,670:12422189,15199805:250784 +k1,670:13332265,15199805:250784 +k1,670:16340805,15199805:250785 +k1,670:18602234,15199805:250784 +k1,670:20044463,15199805:250784 +k1,670:23136889,15199805:250785 +k1,670:25605411,15199805:250784 +k1,670:27894365,15199805:250784 +k1,670:30031276,15199805:250785 +k1,670:30637920,15199805:250784 +k1,670:32583029,15199805:0 +) +(1,671:6630773,16064885:25952256,513147,126483 +k1,670:7499933,16064885:182998 +k1,670:9652288,16064885:182998 +k1,670:11026731,16064885:182998 +k1,670:11869020,16064885:182997 +k1,670:15128933,16064885:182998 +k1,670:16503376,16064885:182998 +k1,670:19712171,16064885:182998 +k1,670:20581331,16064885:182998 +k1,670:22661596,16064885:182998 +k1,670:23332165,16064885:182981 +k1,670:26440690,16064885:182998 +k1,670:29956849,16064885:182998 +k1,670:30822732,16064885:182998 +k1,671:32583029,16064885:0 +) +(1,671:6630773,16929965:25952256,513147,134348 +k1,670:8686161,16929965:242662 +k1,670:9460320,16929965:242662 +k1,670:10722067,16929965:242662 +k1,670:14269710,16929965:242662 +k1,670:15171664,16929965:242662 +k1,670:15770186,16929965:242662 +k1,670:18304642,16929965:242662 +k1,670:21389600,16929965:242662 +k1,670:24598421,16929965:242662 +k1,670:25497098,16929965:242662 +k1,670:30805693,16929965:242662 +k1,671:32583029,16929965:0 +) +(1,671:6630773,17795045:25952256,505283,126483 +k1,670:8786470,17795045:230249 +k1,670:10213405,17795045:230248 +k1,670:12568331,17795045:230249 +k1,670:15984940,17795045:230249 +(1,670:15984940,17795045:0,435480,115847 +r1,685:17750054,17795045:1765114,551327,115847 +k1,670:15984940,17795045:-1765114 +) +(1,670:15984940,17795045:1765114,435480,115847 +g1,670:16691641,17795045 +g1,670:17395065,17795045 +h1,670:17746777,17795045:0,411205,112570 +) +k1,670:17980302,17795045:230248 +k1,670:19311556,17795045:230249 +k1,670:21196589,17795045:230249 +k1,670:25528081,17795045:230249 +(1,670:25528081,17795045:0,414482,115847 +r1,685:25886347,17795045:358266,530329,115847 +k1,670:25528081,17795045:-358266 +) +(1,670:25528081,17795045:358266,414482,115847 +k1,670:25528081,17795045:3277 +h1,670:25883070,17795045:0,411205,112570 +) +k1,670:26290265,17795045:230248 +k1,670:26876374,17795045:230249 +k1,670:29791633,17795045:230249 +(1,670:29791633,17795045:0,414482,115847 +r1,685:30149899,17795045:358266,530329,115847 +k1,670:29791633,17795045:-358266 +) +(1,670:29791633,17795045:358266,414482,115847 +k1,670:29791633,17795045:3277 +h1,670:30146622,17795045:0,411205,112570 +) +k1,670:30553817,17795045:230248 +k1,670:31554769,17795045:230249 +k1,671:32583029,17795045:0 +) +(1,671:6630773,18660125:25952256,513147,126483 +k1,670:8804310,18660125:242191 +k1,670:10237945,18660125:242190 +(1,670:10237945,18660125:0,435480,115847 +r1,685:10596211,18660125:358266,551327,115847 +k1,670:10237945,18660125:-358266 +) +(1,670:10237945,18660125:358266,435480,115847 +k1,670:10237945,18660125:3277 +h1,670:10592934,18660125:0,411205,112570 +) +k1,670:10838402,18660125:242191 +k1,670:11436452,18660125:242190 +k1,670:14610068,18660125:242191 +k1,670:16048946,18660125:242191 +k1,670:19477496,18660125:242190 +(1,670:19477496,18660125:0,452978,115847 +r1,685:21946033,18660125:2468537,568825,115847 +k1,670:19477496,18660125:-2468537 +) +(1,670:19477496,18660125:2468537,452978,115847 +k1,670:19477496,18660125:3277 +h1,670:21942756,18660125:0,411205,112570 +) +k1,670:22188224,18660125:242191 +k1,670:23531419,18660125:242190 +k1,670:24946049,18660125:242191 +k1,670:29289482,18660125:242190 +k1,670:29887533,18660125:242191 +k1,671:32583029,18660125:0 +) +(1,671:6630773,19525205:25952256,662897,126483 +(1,670:6630773,19525205:0,452978,115847 +r1,685:8747598,19525205:2116825,568825,115847 +k1,670:6630773,19525205:-2116825 +) +(1,670:6630773,19525205:2116825,452978,115847 +k1,670:6630773,19525205:3277 +h1,670:8744321,19525205:0,411205,112570 +) +k1,670:9010692,19525205:263094 +k1,670:10465231,19525205:263094 +k1,670:11084185,19525205:263094 +k1,670:14528396,19525205:263093 +k1,670:17549245,19525205:263094 +(1,670:17549245,19525205:0,424981,115847 +r1,685:17907511,19525205:358266,540828,115847 +k1,670:17549245,19525205:-358266 +) +(1,670:17549245,19525205:358266,424981,115847 +k1,670:17549245,19525205:3277 +h1,670:17904234,19525205:0,411205,112570 +) +k1,670:18344275,19525205:263094 +k1,670:19560918,19525205:263094 +k1,670:20871277,19525205:263094 +k1,670:22418877,19525205:263094 +k1,670:23633554,19525205:263094 +k1,670:26684549,19525205:263093 +$1,670:26684549,19525205 +(1,670:26684549,19525205:994181,662897,96010 +[1,670:26684549,18914736:595722,26214,706479 +] +[1,670:27280271,19525205:398459,662897,0 +(1,670:27280271,19525205:398459,481690,0 +) +] +) +$1,670:27678730,19525205 +k1,670:27941824,19525205:263094 +k1,670:29073270,19525205:263094 +k1,670:30466204,19525205:263094 +(1,670:30466204,19525205:0,452978,115847 +r1,685:32583029,19525205:2116825,568825,115847 +k1,670:30466204,19525205:-2116825 +) +(1,670:30466204,19525205:2116825,452978,115847 +k1,670:30466204,19525205:3277 +h1,670:32579752,19525205:0,411205,112570 +) +k1,670:32583029,19525205:0 +) +(1,671:6630773,20390285:25952256,505283,134348 +g1,670:8223953,20390285 +(1,670:8223953,20390285:0,424981,115847 +r1,685:8582219,20390285:358266,540828,115847 +k1,670:8223953,20390285:-358266 +) +(1,670:8223953,20390285:358266,424981,115847 +k1,670:8223953,20390285:3277 +h1,670:8578942,20390285:0,411205,112570 +) +g1,670:8781448,20390285 +g1,670:9666839,20390285 +g1,670:10654466,20390285 +k1,671:32583030,20390285:18336536 +g1,671:32583030,20390285 +) +(1,673:6630773,21255365:25952256,505283,134348 +h1,672:6630773,21255365:983040,0,0 +k1,672:10722589,21255365:145893 +k1,672:11634598,21255365:145893 +k1,672:13791136,21255365:145893 +k1,672:17950454,21255365:145893 +k1,672:18712385,21255365:145893 +k1,672:19214138,21255365:145893 +k1,672:21375264,21255365:145894 +k1,672:24597417,21255365:145893 +k1,672:25734870,21255365:145893 +k1,672:27918933,21255365:145893 +k1,672:28750988,21255365:145893 +k1,672:30020824,21255365:145893 +k1,672:30782755,21255365:145893 +k1,673:32583029,21255365:0 +) +(1,673:6630773,22120445:25952256,505283,134348 +k1,672:8006046,22120445:157614 +k1,672:10834907,22120445:157614 +k1,672:15768130,22120445:157614 +k1,672:16917304,22120445:157614 +k1,672:19878547,22120445:157613 +k1,672:23103246,22120445:157614 +k1,672:25466802,22120445:157614 +k1,672:27694043,22120445:157614 +k1,672:30035972,22120445:157614 +k1,672:31478747,22120445:157614 +k1,672:32583029,22120445:0 +) +(1,673:6630773,22985525:25952256,505283,134348 +k1,672:7568852,22985525:190313 +k1,672:10438277,22985525:190313 +k1,672:11896057,22985525:190314 +k1,672:13275193,22985525:190313 +k1,672:14656951,22985525:190313 +k1,672:17532275,22985525:190314 +k1,672:18408750,22985525:190313 +k1,672:19987771,22985525:190313 +k1,672:20864246,22985525:190313 +k1,672:22563198,22985525:190313 +k1,672:24139598,22985525:190314 +k1,672:25012796,22985525:190313 +(1,672:25012796,22985525:0,452978,115847 +r1,685:26426197,22985525:1413401,568825,115847 +k1,672:25012796,22985525:-1413401 +) +(1,672:25012796,22985525:1413401,452978,115847 +k1,672:25012796,22985525:3277 +h1,672:26422920,22985525:0,411205,112570 +) +k1,672:26616510,22985525:190313 +k1,672:27338321,22985525:190314 +k1,672:29840089,22985525:190313 +k1,672:31227089,22985525:190313 +k1,673:32583029,22985525:0 +) +(1,673:6630773,23850605:25952256,513147,126483 +k1,672:8268782,23850605:279448 +k1,672:9215386,23850605:279448 +(1,672:9215386,23850605:0,452978,115847 +r1,685:10980499,23850605:1765113,568825,115847 +k1,672:9215386,23850605:-1765113 +) +(1,672:9215386,23850605:1765113,452978,115847 +k1,672:9215386,23850605:3277 +h1,672:10977222,23850605:0,411205,112570 +) +k1,672:11259946,23850605:279447 +k1,672:12070891,23850605:279448 +k1,672:13416610,23850605:279448 +k1,672:16110404,23850605:279448 +k1,672:18611523,23850605:279448 +k1,672:19542398,23850605:279447 +k1,672:21152227,23850605:279448 +k1,672:23442320,23850605:279448 +k1,672:24713328,23850605:279448 +k1,672:27671887,23850605:279447 +k1,672:29649373,23850605:279448 +k1,672:31966991,23850605:279448 +k1,672:32583029,23850605:0 +) +(1,673:6630773,24715685:25952256,513147,126483 +k1,672:9914728,24715685:207695 +k1,672:12927363,24715685:207694 +k1,672:14207227,24715685:207695 +k1,672:16742104,24715685:207694 +k1,672:17759169,24715685:207695 +k1,672:19475502,24715685:207694 +k1,672:24128504,24715685:207695 +k1,672:25022360,24715685:207694 +k1,672:26551916,24715685:207695 +k1,672:27418902,24715685:207694 +k1,672:27982457,24715685:207695 +k1,672:31266411,24715685:207694 +k1,673:32583029,24715685:0 +) +(1,673:6630773,25580765:25952256,513147,134348 +k1,672:8661130,25580765:218287 +k1,672:9832965,25580765:218286 +k1,672:11155534,25580765:218287 +k1,672:13022707,25580765:218287 +k1,672:14188644,25580765:218286 +k1,672:17242018,25580765:218287 +k1,672:18784112,25580765:218267 +k1,672:20618517,25580765:218287 +k1,672:23021119,25580765:218287 +k1,672:25277575,25580765:218286 +k1,672:26182024,25580765:218287 +k1,672:28055094,25580765:218286 +k1,672:31089463,25580765:218287 +k1,672:32583029,25580765:0 +) +(1,673:6630773,26445845:25952256,505283,115847 +k1,672:7525636,26445845:208701 +(1,672:7525636,26445845:0,435480,115847 +r1,685:10697597,26445845:3171961,551327,115847 +k1,672:7525636,26445845:-3171961 +) +(1,672:7525636,26445845:3171961,435480,115847 +g1,672:8584049,26445845 +g1,672:9639185,26445845 +h1,672:10694320,26445845:0,411205,112570 +) +k1,672:11079967,26445845:208700 +k1,672:11974830,26445845:208701 +k1,672:16150425,26445845:208701 +k1,672:19175207,26445845:208700 +k1,672:21422078,26445845:208701 +k1,672:22316940,26445845:208700 +k1,672:25830622,26445845:208701 +k1,672:28923562,26445845:208701 +k1,672:29815147,26445845:208700 +k1,672:31490544,26445845:208701 +k1,672:32583029,26445845:0 +) +(1,673:6630773,27310925:25952256,513147,134348 +k1,672:8599506,27310925:238583 +k1,672:10906405,27310925:238583 +k1,672:13183158,27310925:238583 +k1,672:14107903,27310925:238583 +k1,672:17321165,27310925:238583 +k1,672:19755859,27310925:238583 +k1,672:21140666,27310925:238582 +(1,672:21140666,27310925:0,452978,115847 +r1,685:23257491,27310925:2116825,568825,115847 +k1,672:21140666,27310925:-2116825 +) +(1,672:21140666,27310925:2116825,452978,115847 +k1,672:21140666,27310925:3277 +h1,672:23254214,27310925:0,411205,112570 +) +k1,672:23669744,27310925:238583 +k1,672:24861876,27310925:238583 +k1,672:26869276,27310925:238583 +k1,672:29037239,27310925:238583 +k1,672:29631682,27310925:238583 +(1,672:29631682,27310925:0,452978,115847 +r1,685:31396795,27310925:1765113,568825,115847 +k1,672:29631682,27310925:-1765113 +) +(1,672:29631682,27310925:1765113,452978,115847 +k1,672:29631682,27310925:3277 +h1,672:31393518,27310925:0,411205,112570 +) +k1,672:31635378,27310925:238583 +k1,672:32583029,27310925:0 +) +(1,673:6630773,28176005:25952256,513147,134348 +k1,672:8782636,28176005:205444 +k1,672:10723473,28176005:205444 +k1,672:12060724,28176005:205444 +k1,672:12925460,28176005:205444 +k1,672:14827631,28176005:205444 +k1,672:20201900,28176005:205444 +k1,672:22262013,28176005:205444 +k1,672:23276827,28176005:205444 +k1,672:24654710,28176005:205444 +k1,672:27622497,28176005:205444 +k1,672:30114492,28176005:205444 +(1,672:30114492,28176005:0,452978,115847 +r1,685:32583029,28176005:2468537,568825,115847 +k1,672:30114492,28176005:-2468537 +) +(1,672:30114492,28176005:2468537,452978,115847 +k1,672:30114492,28176005:3277 +h1,672:32579752,28176005:0,411205,112570 +) +k1,672:32583029,28176005:0 +) +(1,673:6630773,29041085:25952256,505283,115847 +g1,672:8021447,29041085 +(1,672:8021447,29041085:0,452978,115847 +r1,685:11193407,29041085:3171960,568825,115847 +k1,672:8021447,29041085:-3171960 +) +(1,672:8021447,29041085:3171960,452978,115847 +k1,672:8021447,29041085:3277 +h1,672:11190130,29041085:0,411205,112570 +) +k1,673:32583029,29041085:21215952 +g1,673:32583029,29041085 +) +(1,674:6630773,31872245:25952256,32768,229376 +(1,674:6630773,31872245:0,32768,229376 +(1,674:6630773,31872245:5505024,32768,229376 +r1,685:12135797,31872245:5505024,262144,229376 +) +k1,674:6630773,31872245:-5505024 +) +(1,674:6630773,31872245:25952256,32768,0 +r1,685:32583029,31872245:25952256,32768,0 +) +) +(1,674:6630773,33504097:25952256,606339,14155 +(1,674:6630773,33504097:1974731,582746,14155 +g1,674:6630773,33504097 +g1,674:8605504,33504097 +) +g1,674:12231742,33504097 +g1,674:15055033,33504097 +g1,674:16764736,33504097 +k1,674:32583029,33504097:11752439 +g1,674:32583029,33504097 +) +(1,677:6630773,34762393:25952256,505283,134348 +k1,676:8650597,34762393:236589 +k1,676:11473891,34762393:236588 +k1,676:12326518,34762393:236589 +k1,676:12977912,34762393:236551 +k1,676:14608451,34762393:236588 +k1,676:18121185,34762393:236589 +k1,676:22301730,34762393:236588 +k1,676:23557404,34762393:236589 +k1,676:26072679,34762393:236588 +k1,676:30632678,34762393:236589 +k1,677:32583029,34762393:0 +) +(1,677:6630773,35627473:25952256,513147,126483 +k1,676:8657045,35627473:162428 +k1,676:10405445,35627473:162429 +k1,676:11559433,35627473:162428 +k1,676:14475028,35627473:162428 +k1,676:15828902,35627473:162429 +k1,676:19845502,35627473:162428 +k1,676:21112212,35627473:162428 +k1,676:22022406,35627473:162428 +k1,676:23698061,35627473:162429 +k1,676:24511917,35627473:162428 +k1,676:26127934,35627473:162428 +k1,676:27493604,35627473:162429 +k1,676:29569028,35627473:162428 +k1,677:32583029,35627473:0 +) +(1,677:6630773,36492553:25952256,505283,126483 +k1,676:7852832,36492553:214115 +k1,676:9171230,36492553:214116 +k1,676:10133111,36492553:214115 +k1,676:12638365,36492553:214115 +k1,676:13924650,36492553:214116 +k1,676:14754803,36492553:214115 +k1,676:17600190,36492553:214116 +k1,676:18465733,36492553:214115 +k1,676:19698933,36492553:214115 +k1,676:21634024,36492553:214116 +k1,676:24385693,36492553:214115 +k1,676:25215846,36492553:214115 +k1,676:29696356,36492553:214116 +k1,676:30929556,36492553:214115 +k1,676:32583029,36492553:0 +) +(1,677:6630773,37357633:25952256,505283,134348 +g1,676:10538029,37357633 +g1,676:13048713,37357633 +g1,676:13779439,37357633 +g1,676:15491894,37357633 +g1,676:16303885,37357633 +g1,676:17269230,37357633 +g1,676:19808094,37357633 +k1,677:32583029,37357633:10808855 +g1,677:32583029,37357633 +) +v1,679:6630773,38222713:0,393216,0 +(1,680:6630773,43855839:25952256,6026342,0 +g1,680:6630773,43855839 +g1,680:6237557,43855839 +r1,685:6368629,43855839:131072,6026342,0 +g1,680:6567858,43855839 +g1,680:6764466,43855839 +[1,680:6764466,43855839:25818563,6026342,0 +(1,680:6764466,38531011:25818563,701514,196608 +(1,679:6764466,38531011:0,701514,196608 +r1,685:8010564,38531011:1246098,898122,196608 +k1,679:6764466,38531011:-1246098 +) +(1,679:6764466,38531011:1246098,701514,196608 +) +k1,679:8186390,38531011:175826 +k1,679:8514070,38531011:327680 +k1,679:10155281,38531011:175826 +k1,679:10947145,38531011:175826 +k1,679:15215694,38531011:175826 +k1,679:16582966,38531011:175827 +k1,679:21111038,38531011:175826 +k1,679:24459462,38531011:175826 +k1,679:27354377,38531011:175826 +k1,679:31044899,38531011:175826 +k1,680:32583029,38531011:0 +) +(1,680:6764466,39396091:25818563,513147,126483 +k1,679:10232827,39396091:224329 +k1,679:12342628,39396091:224330 +k1,679:17482813,39396091:224329 +k1,679:18698703,39396091:224330 +k1,679:21984219,39396091:224329 +k1,679:23514681,39396091:224329 +k1,679:24930456,39396091:224330 +k1,679:27040256,39396091:224329 +k1,679:28891845,39396091:224330 +k1,679:31931601,39396091:224329 +k1,679:32583029,39396091:0 +) +(1,680:6764466,40261171:25818563,505283,134348 +k1,679:9907005,40261171:248469 +k1,679:13278266,40261171:248470 +k1,679:17174469,40261171:248469 +k1,679:17837732,40261171:248420 +k1,679:21056949,40261171:248470 +k1,679:23925547,40261171:248469 +k1,679:27944303,40261171:248470 +k1,679:31554769,40261171:248469 +k1,680:32583029,40261171:0 +) +(1,680:6764466,41126251:25818563,513147,134348 +k1,679:9287989,41126251:261876 +k1,679:12666757,41126251:261876 +k1,679:13580061,41126251:261876 +k1,679:14861022,41126251:261876 +k1,679:16708869,41126251:261876 +k1,679:17630037,41126251:261876 +k1,679:22158307,41126251:261876 +k1,679:23048018,41126251:261876 +k1,679:24328979,41126251:261876 +k1,679:28030840,41126251:261876 +$1,679:28030840,41126251 +k1,679:28620746,41126251:191447 +k1,679:29380389,41126251:191446 +k1,679:29970295,41126251:191447 +k1,679:30729939,41126251:191447 +$1,679:31128398,41126251 +k1,679:31563944,41126251:261876 +k1,679:32583029,41126251:0 +) +(1,680:6764466,41991331:25818563,513147,134348 +k1,679:9482248,41991331:188092 +$1,679:9482248,41991331 +k1,679:10001928,41991331:121221 +k1,679:10691346,41991331:121221 +$1,679:11089805,41991331 +k1,679:11277897,41991331:188092 +k1,679:12566993,41991331:188091 +k1,679:16356288,41991331:188092 +k1,679:17931776,41991331:188091 +k1,679:19138953,41991331:188092 +k1,679:22166719,41991331:188091 +k1,679:23546256,41991331:188092 +k1,679:24265844,41991331:188091 +k1,679:27515123,41991331:188092 +k1,679:29183017,41991331:188091 +k1,679:31896867,41991331:188092 +k1,679:32583029,41991331:0 +) +(1,680:6764466,42856411:25818563,513147,126483 +k1,679:7980663,42856411:197112 +k1,679:10020647,42856411:197112 +k1,679:10877051,42856411:197112 +k1,679:12093249,42856411:197113 +k1,679:14173210,42856411:197112 +k1,679:17983977,42856411:197112 +k1,679:18753218,42856411:197112 +k1,679:21177243,42856411:197112 +k1,679:22960326,42856411:197112 +k1,679:24921013,42856411:197113 +k1,679:25769553,42856411:197112 +k1,679:27668635,42856411:197112 +k1,679:31116333,42856411:197112 +k1,679:32583029,42856411:0 +) +(1,680:6764466,43721491:25818563,505283,134348 +g1,679:8707608,43721491 +g1,679:10902408,43721491 +g1,679:11787799,43721491 +g1,679:14959741,43721491 +g1,679:19216304,43721491 +k1,680:32583029,43721491:11182410 +g1,680:32583029,43721491 +) +] +g1,680:32583029,43855839 +) +h1,680:6630773,43855839:0,0,0 +] +(1,685:32583029,45706769:0,0,0 +g1,685:32583029,45706769 +) +) +] +(1,685:6630773,47279633:25952256,0,0 +h1,685:6630773,47279633:25952256,0,0 +) +] +(1,685:4262630,4025873:0,0,0 +[1,685:-473656,4025873:0,0,0 +(1,685:-473656,-710413:0,0,0 +(1,685:-473656,-710413:0,0,0 +g1,685:-473656,-710413 +) +g1,685:-473656,-710413 +) +] +) +] +!24083 +}39 +Input:252:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:253:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:254:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:255:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:256:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:257:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:258:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:259:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!755 +{40 +[1,774:4262630,47279633:28320399,43253760,0 +(1,774:4262630,4025873:0,0,0 +[1,774:-473656,4025873:0,0,0 +(1,774:-473656,-710413:0,0,0 +(1,774:-473656,-644877:0,0,0 +k1,774:-473656,-644877:-65536 ) -(1,607:-473656,4736287:0,0,0 -k1,607:-473656,4736287:5209943 +(1,774:-473656,4736287:0,0,0 +k1,774:-473656,4736287:5209943 ) -g1,607:-473656,-710413 +g1,774:-473656,-710413 ) ] ) -[1,607:6630773,47279633:25952256,43253760,0 -[1,607:6630773,4812305:25952256,786432,0 -(1,607:6630773,4812305:25952256,505283,126483 -(1,607:6630773,4812305:25952256,505283,126483 -g1,607:3078558,4812305 -[1,607:3078558,4812305:0,0,0 -(1,607:3078558,2439708:0,1703936,0 -k1,607:1358238,2439708:-1720320 -(1,417:1358238,2439708:1720320,1703936,0 -(1,417:1358238,2439708:1179648,16384,0 -r1,607:2537886,2439708:1179648,16384,0 +[1,774:6630773,47279633:25952256,43253760,0 +[1,774:6630773,4812305:25952256,786432,0 +(1,774:6630773,4812305:25952256,505283,11795 +(1,774:6630773,4812305:25952256,505283,11795 +g1,774:3078558,4812305 +[1,774:3078558,4812305:0,0,0 +(1,774:3078558,2439708:0,1703936,0 +k1,774:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,774:2537886,2439708:1179648,16384,0 ) -g1,417:3062174,2439708 -(1,417:3062174,2439708:16384,1703936,0 -[1,417:3062174,2439708:25952256,1703936,0 -(1,417:3062174,1915420:25952256,1179648,0 -(1,417:3062174,1915420:16384,1179648,0 -r1,607:3078558,1915420:16384,1179648,0 +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,774:3078558,1915420:16384,1179648,0 ) -k1,417:29014430,1915420:25935872 -g1,417:29014430,1915420 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) ] ) ) ) ] -[1,607:3078558,4812305:0,0,0 -(1,607:3078558,2439708:0,1703936,0 -g1,607:29030814,2439708 -g1,607:36135244,2439708 -(1,417:36135244,2439708:1720320,1703936,0 -(1,417:36135244,2439708:16384,1703936,0 -[1,417:36135244,2439708:25952256,1703936,0 -(1,417:36135244,1915420:25952256,1179648,0 -(1,417:36135244,1915420:16384,1179648,0 -r1,607:36151628,1915420:16384,1179648,0 +[1,774:3078558,4812305:0,0,0 +(1,774:3078558,2439708:0,1703936,0 +g1,774:29030814,2439708 +g1,774:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,774:36151628,1915420:16384,1179648,0 ) -k1,417:62087500,1915420:25935872 -g1,417:62087500,1915420 +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) ] ) -g1,417:36675916,2439708 -(1,417:36675916,2439708:1179648,16384,0 -r1,607:37855564,2439708:1179648,16384,0 +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,774:37855564,2439708:1179648,16384,0 ) ) -k1,607:3078556,2439708:-34777008 +k1,774:3078556,2439708:-34777008 ) ] -[1,607:3078558,4812305:0,0,0 -(1,607:3078558,49800853:0,16384,2228224 -k1,607:1358238,49800853:-1720320 -(1,417:1358238,49800853:1720320,16384,2228224 -(1,417:1358238,49800853:1179648,16384,0 -r1,607:2537886,49800853:1179648,16384,0 +[1,774:3078558,4812305:0,0,0 +(1,774:3078558,49800853:0,16384,2228224 +k1,774:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,774:2537886,49800853:1179648,16384,0 ) -g1,417:3062174,49800853 -(1,417:3062174,52029077:16384,1703936,0 -[1,417:3062174,52029077:25952256,1703936,0 -(1,417:3062174,51504789:25952256,1179648,0 -(1,417:3062174,51504789:16384,1179648,0 -r1,607:3078558,51504789:16384,1179648,0 +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,774:3078558,51504789:16384,1179648,0 ) -k1,417:29014430,51504789:25935872 -g1,417:29014430,51504789 +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) ] ) ) ) ] -[1,607:3078558,4812305:0,0,0 -(1,607:3078558,49800853:0,16384,2228224 -g1,607:29030814,49800853 -g1,607:36135244,49800853 -(1,417:36135244,49800853:1720320,16384,2228224 -(1,417:36135244,52029077:16384,1703936,0 -[1,417:36135244,52029077:25952256,1703936,0 -(1,417:36135244,51504789:25952256,1179648,0 -(1,417:36135244,51504789:16384,1179648,0 -r1,607:36151628,51504789:16384,1179648,0 +[1,774:3078558,4812305:0,0,0 +(1,774:3078558,49800853:0,16384,2228224 +g1,774:29030814,49800853 +g1,774:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,774:36151628,51504789:16384,1179648,0 ) -k1,417:62087500,51504789:25935872 -g1,417:62087500,51504789 +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 ) ] ) -g1,417:36675916,49800853 -(1,417:36675916,49800853:1179648,16384,0 -r1,607:37855564,49800853:1179648,16384,0 +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,774:37855564,49800853:1179648,16384,0 ) ) -k1,607:3078556,49800853:-34777008 -) -] -g1,607:6630773,4812305 -g1,607:6630773,4812305 -g1,607:10931900,4812305 -g1,607:12559159,4812305 -g1,607:15290044,4812305 -g1,607:16852422,4812305 -g1,607:17465839,4812305 -k1,607:31786111,4812305:14320272 -) -) -] -[1,607:6630773,45706769:25952256,40108032,0 -(1,607:6630773,45706769:25952256,40108032,0 -(1,607:6630773,45706769:0,0,0 -g1,607:6630773,45706769 -) -[1,607:6630773,45706769:25952256,40108032,0 -(1,595:6630773,6254097:25952256,32768,229376 -(1,595:6630773,6254097:0,32768,229376 -(1,595:6630773,6254097:5505024,32768,229376 -r1,607:12135797,6254097:5505024,262144,229376 -) -k1,595:6630773,6254097:-5505024 -) -(1,595:6630773,6254097:25952256,32768,0 -r1,607:32583029,6254097:25952256,32768,0 -) -) -(1,595:6630773,7858425:25952256,606339,151780 -(1,595:6630773,7858425:1974731,582746,0 -g1,595:6630773,7858425 -g1,595:8605504,7858425 -) -g1,595:14129403,7858425 -g1,595:16067958,7858425 -g1,595:19551852,7858425 -g1,595:21565118,7858425 -k1,595:32583029,7858425:10475273 -g1,595:32583029,7858425 -) -(1,598:6630773,9093129:25952256,513147,126483 -k1,597:9908228,9093129:168427 -k1,597:12908467,9093129:168428 -k1,597:14268339,9093129:168427 -k1,597:18022896,9093129:168427 -k1,597:19182883,9093129:168427 -k1,597:20417582,9093129:168428 -k1,597:21961610,9093129:168427 -k1,597:25339335,9093129:168427 -k1,597:27020988,9093129:168427 -k1,597:28578779,9093129:168428 -k1,597:29738766,9093129:168427 -k1,597:32583029,9093129:0 -) -(1,598:6630773,9934617:25952256,513147,134348 -k1,597:7888762,9934617:185820 -k1,597:9360398,9934617:185820 -k1,597:11678759,9934617:185819 -k1,597:12477341,9934617:185820 -k1,597:13682246,9934617:185820 -k1,597:15956698,9934617:185820 -k1,597:17807131,9934617:185819 -k1,597:18652243,9934617:185820 -k1,597:19969870,9934617:185820 -k1,597:23612714,9934617:185820 -k1,597:25756093,9934617:185819 -k1,597:28050206,9934617:185820 -k1,597:31714677,9934617:185820 -k1,597:32583029,9934617:0 -) -(1,598:6630773,10776105:25952256,513147,134348 -k1,597:8177171,10776105:217328 -k1,597:9788449,10776105:217327 -k1,597:12496800,10776105:217328 -k1,597:14103490,10776105:217327 -k1,597:15888439,10776105:217328 -k1,597:17124851,10776105:217327 -k1,597:18538866,10776105:217328 -k1,597:20585958,10776105:217327 -k1,597:21486171,10776105:217328 -k1,597:23271119,10776105:217327 -k1,597:25476154,10776105:217328 -k1,597:29418547,10776105:217327 -k1,597:31970267,10776105:217328 -k1,597:32583029,10776105:0 -) -(1,598:6630773,11617593:25952256,513147,134348 -k1,597:7857250,11617593:207392 -k1,597:10866305,11617593:207391 -k1,597:12738311,11617593:207392 -k1,597:13604995,11617593:207392 -k1,597:14583089,11617593:207391 -k1,597:18399549,11617593:207392 -k1,597:19289825,11617593:207391 -k1,597:21770006,11617593:207392 -k1,597:24855739,11617593:207392 -k1,597:27823506,11617593:207391 -k1,597:29049983,11617593:207392 -k1,597:32583029,11617593:0 -) -(1,598:6630773,12459081:25952256,513147,134348 -k1,597:7826269,12459081:247845 -k1,597:9093199,12459081:247845 -k1,597:11429677,12459081:247846 -k1,597:12336814,12459081:247845 -k1,597:16524028,12459081:247845 -k1,597:17963318,12459081:247845 -k1,597:20814253,12459081:247845 -k1,597:22451461,12459081:247845 -k1,597:25253900,12459081:247846 -k1,597:26693190,12459081:247845 -k1,597:28330398,12459081:247845 -k1,597:32583029,12459081:0 -) -(1,598:6630773,13300569:25952256,505283,134348 -k1,597:8186648,13300569:175031 -k1,597:8893176,13300569:175031 -k1,597:11270218,13300569:175032 -k1,597:12096677,13300569:175031 -k1,597:13290793,13300569:175031 -k1,597:14701178,13300569:175031 -k1,597:16987125,13300569:175032 -k1,597:17923684,13300569:175031 -k1,597:21001305,13300569:175031 -k1,597:22367781,13300569:175031 -k1,597:26009668,13300569:175032 -k1,597:26836127,13300569:175031 -k1,597:31966991,13300569:175031 -k1,597:32583029,13300569:0 -) -(1,598:6630773,14142057:25952256,505283,134348 -k1,597:7231810,14142057:245177 -k1,597:9768782,14142057:245178 -k1,597:12856255,14142057:245177 -k1,597:14247658,14142057:245178 -k1,597:16977960,14142057:245177 -k1,597:20101479,14142057:245178 -k1,597:22392690,14142057:245177 -k1,597:25267828,14142057:245178 -k1,597:30728360,14142057:245177 -k1,597:32583029,14142057:0 -) -(1,598:6630773,14983545:25952256,513147,126483 -k1,597:7699867,14983545:259724 -k1,597:10043636,14983545:259724 -k1,597:13072911,14983545:259724 -k1,597:14222615,14983545:259725 -k1,597:17472747,14983545:259724 -k1,597:18804640,14983545:259724 -k1,597:19522461,14983545:259724 -k1,597:20313682,14983545:259724 -k1,597:21859222,14983545:259724 -k1,597:22474807,14983545:259725 -k1,597:24802847,14983545:259724 -k1,597:25721863,14983545:259724 -k1,597:31111090,14983545:259724 -k1,597:32583029,14983545:0 -) -(1,598:6630773,15825033:25952256,513147,126483 -k1,597:10899435,15825033:189701 -k1,597:12374953,15825033:189702 -k1,597:14237788,15825033:189701 -k1,597:14783350,15825033:189702 -k1,597:16074056,15825033:189701 -k1,597:17499112,15825033:189702 -k1,597:18304851,15825033:189701 -k1,597:19513638,15825033:189702 -k1,597:21989890,15825033:189701 -k1,597:23371037,15825033:189702 -k1,597:24804611,15825033:189701 -k1,597:29950146,15825033:189702 -k1,597:30799139,15825033:189701 -k1,597:32583029,15825033:0 -) -(1,598:6630773,16666521:25952256,513147,134348 -k1,597:11045065,16666521:142655 -k1,597:11602506,16666521:142598 -k1,597:12276658,16666521:142655 -k1,597:14396533,16666521:142654 -k1,597:18163984,16666521:142655 -k1,597:19072754,16666521:142654 -k1,597:21210325,16666521:142655 -k1,597:22012272,16666521:142655 -k1,597:23174011,16666521:142654 -k1,597:26022648,16666521:142655 -k1,597:28784121,16666521:142654 -k1,597:30494397,16666521:142655 -k1,597:32583029,16666521:0 -) -(1,598:6630773,17508009:25952256,513147,7863 -g1,597:7489294,17508009 -g1,597:9990147,17508009 -g1,597:10840804,17508009 -g1,597:15995866,17508009 -g1,597:16854387,17508009 -g1,597:18072701,17508009 -k1,598:32583029,17508009:12163484 -g1,598:32583029,17508009 -) -(1,600:6630773,18349497:25952256,513147,134348 -h1,599:6630773,18349497:983040,0,0 -k1,599:9985561,18349497:174981 -k1,599:12148904,18349497:174981 -k1,599:14006850,18349497:174981 -k1,599:15200916,18349497:174981 -k1,599:16663024,18349497:174981 -k1,599:17497297,18349497:174981 -k1,599:22407910,18349497:174981 -k1,599:23198929,18349497:174981 -k1,599:26223415,18349497:174981 -k1,599:29278048,18349497:174981 -k1,599:32583029,18349497:0 -) -(1,600:6630773,19190985:25952256,505283,126483 -k1,599:9870456,19190985:149660 -k1,599:10706279,19190985:149661 -k1,599:11211799,19190985:149660 -k1,599:15959465,19190985:149660 -k1,599:17865489,19190985:149660 -k1,599:19116155,19190985:149661 -k1,599:20775765,19190985:149660 -k1,599:23351568,19190985:149660 -k1,599:26630572,19190985:149660 -k1,599:27971678,19190985:149661 -k1,599:30912516,19190985:149660 -k1,600:32583029,19190985:0 -) -(1,600:6630773,20032473:25952256,513147,134348 -k1,599:8309008,20032473:133551 -k1,599:10417552,20032473:133944 -k1,599:11822502,20032473:133552 -k1,599:12615345,20032473:133551 -k1,599:13767981,20032473:133551 -k1,599:16908325,20032473:133552 -k1,599:18764162,20032473:133551 -k1,599:20595752,20032473:133552 -k1,599:24234168,20032473:133551 -k1,599:25019147,20032473:133551 -k1,599:28408528,20032473:133552 -k1,599:31391584,20032473:133551 -k1,599:32583029,20032473:0 -) -(1,600:6630773,20873961:25952256,505283,134348 -k1,599:9638577,20873961:144536 -k1,599:12258409,20873961:144537 -k1,599:12934442,20873961:144536 -k1,599:16977716,20873961:144537 -k1,599:18141337,20873961:144536 -k1,599:19675237,20873961:144537 -k1,599:22548037,20873961:144536 -k1,599:24286410,20873961:144537 -k1,599:27503929,20873961:144536 -k1,599:29534592,20873961:144537 -k1,599:30810935,20873961:144536 -k1,600:32583029,20873961:0 -) -(1,600:6630773,21715449:25952256,513147,134348 -k1,599:8057098,21715449:158859 -k1,599:10134852,21715449:158860 -k1,599:14779650,21715449:158859 -k1,599:15470006,21715449:158859 -k1,599:19011833,21715449:158859 -k1,599:20738314,21715449:158860 -k1,599:23746678,21715449:158859 -k1,599:26611519,21715449:158859 -k1,599:27421807,21715449:158860 -k1,599:30224388,21715449:158859 -k1,599:32583029,21715449:0 -) -(1,600:6630773,22556937:25952256,513147,126483 -k1,599:7449827,22556937:203016 -k1,599:11352350,22556937:203016 -k1,599:15302059,22556937:203016 -k1,599:18594442,22556937:203016 -k1,599:20996845,22556937:203015 -k1,599:23487723,22556937:203016 -k1,599:24882184,22556937:203016 -k1,599:27175143,22556937:203016 -k1,599:28569604,22556937:203016 -k1,600:32583029,22556937:0 -) -(1,600:6630773,23398425:25952256,505283,134348 -k1,599:7625500,23398425:176838 -k1,599:9990585,23398425:176838 -k1,599:14334857,23398425:176838 -k1,599:16249710,23398425:176838 -k1,599:17735302,23398425:176838 -k1,599:18563568,23398425:176838 -k1,599:21996235,23398425:176838 -k1,599:22528933,23398425:176838 -k1,599:24095134,23398425:176838 -k1,599:26826565,23398425:176838 -k1,599:29733633,23398425:176838 -k1,599:30929556,23398425:176838 -k1,599:32583029,23398425:0 -) -(1,600:6630773,24239913:25952256,513147,134348 -k1,599:10632402,24239913:233964 -k1,599:12433986,24239913:233963 -k1,599:13687035,24239913:233964 -k1,599:15574471,24239913:233963 -k1,599:17197798,24239913:233964 -k1,599:17963258,24239913:233963 -k1,599:20503434,24239913:233964 -k1,599:22505558,24239913:233963 -k1,599:23510225,24239913:233964 -k1,599:28080050,24239913:233963 -k1,599:31923737,24239913:233964 -k1,599:32583029,24239913:0 -) -(1,600:6630773,25081401:25952256,513147,126483 -k1,599:7822571,25081401:172713 -k1,599:9680869,25081401:172712 -k1,599:11621088,25081401:172713 -k1,599:12741451,25081401:172712 -k1,599:13684867,25081401:172713 -k1,599:16412172,25081401:172712 -k1,599:17116382,25081401:172713 -k1,599:17644954,25081401:172712 -k1,599:21922187,25081401:172713 -k1,599:25300920,25081401:172712 -k1,599:27075333,25081401:172713 -k1,599:30910197,25081401:172712 -k1,599:31734338,25081401:172713 -k1,600:32583029,25081401:0 -) -(1,600:6630773,25922889:25952256,505283,134348 -k1,599:10211988,25922889:154337 -k1,599:11755688,25922889:154337 -k1,599:14464618,25922889:154337 -k1,599:15610515,25922889:154337 -k1,599:17619522,25922889:154338 -k1,599:18583229,25922889:154337 -k1,599:22382678,25922889:154337 -k1,599:24533242,25922889:154337 -k1,599:28082999,25922889:154337 -k1,599:29428781,25922889:154337 -k1,599:32583029,25922889:0 -) -(1,600:6630773,26764377:25952256,513147,126483 -g1,599:7516164,26764377 -g1,599:9037254,26764377 -g1,599:9895775,26764377 -g1,599:11114089,26764377 -g1,599:13483215,26764377 -g1,599:14448560,26764377 -g1,599:15666874,26764377 -g1,599:18942363,26764377 -g1,599:22631384,26764377 -k1,600:32583029,26764377:8264748 -g1,600:32583029,26764377 -) -(1,602:6630773,27605865:25952256,513147,126483 -h1,601:6630773,27605865:983040,0,0 -k1,601:8296291,27605865:194890 -k1,601:10841961,27605865:194894 -k1,601:13109759,27605865:194894 -k1,601:13963946,27605865:194895 -k1,601:15707456,27605865:194894 -k1,601:19392142,27605865:194894 -k1,601:21062251,27605865:194894 -k1,601:22767096,27605865:194895 -k1,601:24080034,27605865:194894 -k1,601:25084298,27605865:194894 -k1,601:27164663,27605865:194894 -k1,601:28748921,27605865:194895 -k1,601:29475312,27605865:194894 -k1,601:32583029,27605865:0 -) -(1,602:6630773,28447353:25952256,513147,134348 -k1,601:9369999,28447353:255411 -k1,601:10276839,28447353:255412 -k1,601:12040233,28447353:255411 -k1,601:13993683,28447353:255412 -k1,601:16515984,28447353:255411 -k1,601:20261188,28447353:255412 -k1,601:23075125,28447353:255411 -k1,601:25457836,28447353:255412 -k1,601:26904692,28447353:255411 -k1,601:29873950,28447353:255412 -k1,601:31966991,28447353:255411 -k1,601:32583029,28447353:0 -) -(1,602:6630773,29288841:25952256,513147,134348 -k1,601:7242677,29288841:256044 -k1,601:10448496,29288841:256044 -k1,601:12085384,29288841:256044 -k1,601:15151612,29288841:256044 -k1,601:16090541,29288841:256044 -k1,601:17108113,29288841:256044 -k1,601:21291075,29288841:256045 -k1,601:23576114,29288841:256044 -k1,601:27321950,29288841:256044 -k1,601:28264156,29288841:256044 -k1,601:29746379,29288841:256044 -k1,601:30615185,29288841:256044 -k1,601:31227089,29288841:256044 -k1,602:32583029,29288841:0 -) -(1,602:6630773,30130329:25952256,505283,134348 -k1,601:8304312,30130329:222572 -k1,601:10017173,30130329:222572 -k1,601:12826451,30130329:222572 -k1,601:16975940,30130329:222572 -k1,601:17811274,30130329:222572 -k1,601:19052931,30130329:222572 -k1,601:19690322,30130329:222548 -k1,601:22333139,30130329:222572 -k1,601:24291104,30130329:222572 -k1,601:26023626,30130329:222572 -k1,601:27437643,30130329:222572 -k1,601:29371360,30130329:222572 -k1,601:30245360,30130329:222572 -k1,601:32583029,30130329:0 -) -(1,602:6630773,30971817:25952256,505283,126483 -k1,601:10351205,30971817:230640 -k1,601:11773290,30971817:230640 -k1,601:14177104,30971817:230640 -k1,601:15023781,30971817:230639 -k1,601:15610281,30971817:230640 -k1,601:17837148,30971817:230640 -k1,601:19874616,30971817:230640 -k1,601:20721294,30971817:230640 -k1,601:21307794,30971817:230640 -k1,601:23163072,30971817:230640 -k1,601:26521744,30971817:230639 -k1,601:27283881,30971817:230640 -k1,601:29121464,30971817:230640 -k1,601:31391584,30971817:230640 -k1,601:32583029,30971817:0 -) -(1,602:6630773,31813305:25952256,513147,134348 -g1,601:9988837,31813305 -g1,601:11384753,31813305 -g1,601:12676467,31813305 -g1,601:14067141,31813305 -g1,601:17207626,31813305 -g1,601:18074011,31813305 -g1,601:18688083,31813305 -g1,601:21048689,31813305 -g1,601:24210145,31813305 -g1,601:25612615,31813305 -k1,602:32583029,31813305:3951826 -g1,602:32583029,31813305 -) -(1,604:6630773,32654793:25952256,513147,126483 -h1,603:6630773,32654793:983040,0,0 -k1,603:10821727,32654793:273212 -k1,603:11450799,32654793:273212 -k1,603:13999422,32654793:273213 -k1,603:18203483,32654793:273212 -k1,603:19128123,32654793:273212 -k1,603:21758665,32654793:273212 -k1,603:26767510,32654793:273213 -k1,603:27572219,32654793:273212 -k1,603:28864516,32654793:273212 -k1,603:32583029,32654793:0 -) -(1,604:6630773,33496281:25952256,505283,134348 -k1,603:9490002,33496281:224026 -k1,603:10733112,33496281:224025 -k1,603:12768553,33496281:224026 -k1,603:14184024,33496281:224026 -k1,603:17172358,33496281:224025 -k1,603:19555140,33496281:224026 -k1,603:20970611,33496281:224026 -k1,603:22213721,33496281:224025 -k1,603:22852565,33496281:224001 -k1,603:26566383,33496281:224026 -k1,603:29554717,33496281:224025 -k1,603:30464905,33496281:224026 -k1,603:32583029,33496281:0 -) -(1,604:6630773,34337769:25952256,505283,134348 -k1,603:8356118,34337769:215395 -k1,603:10084739,34337769:215395 -k1,603:10951562,34337769:215395 -k1,603:13787086,34337769:215395 -k1,603:15815207,34337769:215395 -k1,603:17842017,34337769:215395 -k1,603:21326347,34337769:215394 -k1,603:23239780,34337769:215395 -k1,603:25190568,34337769:215395 -k1,603:27741011,34337769:215395 -k1,603:29337250,34337769:215395 -k1,603:31812326,34337769:215395 -k1,603:32583029,34337769:0 -) -(1,604:6630773,35179257:25952256,505283,134348 -k1,603:10577113,35179257:260595 -k1,603:12192993,35179257:260595 -k1,603:15088791,35179257:260595 -k1,603:16738749,35179257:260595 -k1,603:19553937,35179257:260595 -k1,603:21005976,35179257:260594 -k1,603:24426717,35179257:260595 -k1,603:25516342,35179257:260595 -k1,603:27411405,35179257:260595 -k1,603:28875241,35179257:260595 -k1,603:31812326,35179257:260595 -k1,603:32583029,35179257:0 -) -(1,604:6630773,36020745:25952256,505283,134348 -k1,603:9830062,36020745:214779 -k1,603:10696270,36020745:214780 -k1,603:12300412,36020745:214779 -k1,603:15069784,36020745:214779 -k1,603:17909280,36020745:214779 -k1,603:18740098,36020745:214780 -k1,603:20503493,36020745:214779 -k1,603:21249769,36020745:214779 -k1,603:23332324,36020745:214779 -k1,603:25776639,36020745:214780 -k1,603:30410510,36020745:214779 -k1,603:32583029,36020745:0 -) -(1,604:6630773,36862233:25952256,513147,134348 -k1,603:8782262,36862233:176889 -k1,603:10166257,36862233:176822 -k1,603:13777821,36862233:176822 -k1,603:16477779,36862233:176822 -k1,603:17425304,36862233:176822 -k1,603:20709843,36862233:176822 -k1,603:24092030,36862233:176821 -k1,603:26099928,36862233:176822 -k1,603:27561256,36862233:176822 -k1,603:30688509,36862233:176822 -k1,603:31221191,36862233:176822 -k1,604:32583029,36862233:0 -) -(1,604:6630773,37703721:25952256,513147,126483 -k1,603:9053031,37703721:194689 -k1,603:10760946,37703721:194689 -k1,603:11607062,37703721:194688 -k1,603:13797978,37703721:194689 -k1,603:15011752,37703721:194689 -k1,603:17934705,37703721:194689 -k1,603:19413900,37703721:194689 -k1,603:22276560,37703721:194689 -k1,603:23490333,37703721:194688 -k1,603:24099861,37703721:194685 -k1,603:25790737,37703721:194689 -k1,603:27498651,37703721:194688 -k1,603:28640991,37703721:194689 -k1,603:29854765,37703721:194689 -k1,603:32583029,37703721:0 -) -(1,604:6630773,38545209:25952256,513147,134348 -k1,603:7874848,38545209:224990 -k1,603:10273012,38545209:224990 -k1,603:11157294,38545209:224990 -k1,603:13905420,38545209:224990 -k1,603:15333651,38545209:224990 -k1,603:17054828,38545209:224990 -k1,603:18471262,38545209:224989 -k1,603:19828059,38545209:224990 -k1,603:23818748,38545209:224990 -k1,603:25269917,38545209:224990 -k1,603:27793255,38545209:224990 -k1,603:28669673,38545209:224990 -k1,603:31563944,38545209:224990 -k1,603:32583029,38545209:0 -) -(1,604:6630773,39386697:25952256,513147,134348 -g1,603:11013820,39386697 -g1,603:12726275,39386697 -g1,603:14116949,39386697 -g1,603:17138158,39386697 -g1,603:18356472,39386697 -g1,603:20728875,39386697 -g1,603:21587396,39386697 -g1,603:22805710,39386697 -k1,604:32583029,39386697:7049055 -g1,604:32583029,39386697 -) -(1,606:6630773,40228185:25952256,513147,134348 -h1,605:6630773,40228185:983040,0,0 -k1,605:10827282,40228185:250586 -k1,605:11433727,40228185:250585 -k1,605:13930232,40228185:250586 -k1,605:16599752,40228185:250586 -k1,605:17509630,40228185:250586 -k1,605:21023253,40228185:250585 -k1,605:22767405,40228185:250586 -k1,605:25344519,40228185:250586 -k1,605:26989056,40228185:250586 -k1,605:27828154,40228185:250585 -k1,605:29946516,40228185:250586 -k1,605:32583029,40228185:0 -) -(1,606:6630773,41069673:25952256,513147,126483 -k1,605:8980649,41069673:150488 -k1,605:11105883,41069673:150634 -k1,605:12357376,41069673:150488 -k1,605:14017815,41069673:150489 -k1,605:16952272,41069673:150488 -k1,605:18050411,41069673:150488 -k1,605:18556759,41069673:150488 -k1,605:20823405,41069673:150488 -k1,605:23703468,41069673:150488 -k1,605:24312053,41069673:150488 -k1,605:25669715,41069673:150489 -k1,605:27771865,41069673:150488 -k1,605:30174825,41069673:150488 -k1,605:31516758,41069673:150488 -k1,605:32583029,41069673:0 -) -(1,606:6630773,41911161:25952256,513147,134348 -k1,605:10124649,41911161:199381 -k1,605:11085557,41911161:199380 -k1,605:12055641,41911161:199381 -k1,605:13515935,41911161:199381 -k1,605:16073956,41911161:199380 -k1,605:17061735,41911161:199381 -k1,605:18353601,41911161:199381 -k1,605:20504644,41911161:199381 -k1,605:23243544,41911161:199380 -k1,605:25977858,41911161:199381 -k1,605:28016178,41911161:199381 -k1,605:29401760,41911161:199380 -k1,605:31402070,41911161:199381 -k1,606:32583029,41911161:0 -) -(1,606:6630773,42752649:25952256,505283,134348 -k1,605:8154961,42752649:216745 -k1,605:11632778,42752649:216746 -k1,605:12868608,42752649:216745 -k1,605:16069863,42752649:216745 -k1,605:17478053,42752649:216745 -k1,605:20375222,42752649:216746 -k1,605:21985918,42752649:216745 -k1,605:22991061,42752649:216745 -k1,605:26713982,42752649:216745 -k1,605:28198194,42752649:216746 -k1,605:30839116,42752649:216745 -k1,605:32583029,42752649:0 -) -(1,606:6630773,43594137:25952256,513147,126483 -k1,605:7908221,43594137:258363 -k1,605:9259069,43594137:258363 -k1,605:10176724,43594137:258363 -k1,605:11638328,43594137:258363 -k1,605:13282777,43594137:258363 -k1,605:14200432,43594137:258363 -k1,605:16785323,43594137:258363 -k1,605:18826921,43594137:258363 -k1,605:21129352,43594137:258363 -k1,605:22760694,43594137:258363 -k1,605:27283485,43594137:258363 -k1,605:30042047,43594137:258363 -k1,605:32168186,43594137:258363 -k1,606:32583029,43594137:0 -) -(1,606:6630773,44435625:25952256,513147,126483 -k1,605:10111012,44435625:173948 -k1,605:13490325,44435625:173947 -k1,605:14350435,44435625:173948 -k1,605:16392788,44435625:173922 -k1,605:17880078,44435625:173948 -k1,605:19158307,44435625:173947 -k1,605:20080021,44435625:173948 -k1,605:22604090,44435625:173948 -k1,605:25192383,44435625:173947 -k1,605:26933952,44435625:173948 -k1,605:29832887,44435625:173948 -k1,605:30421652,44435625:173922 -k1,605:32583029,44435625:0 -) -(1,606:6630773,45277113:25952256,513147,134348 -k1,605:10284056,45277113:291286 -k1,605:11384712,45277113:291286 -k1,605:14217484,45277113:291286 -k1,605:18109973,45277113:291286 -k1,605:21804544,45277113:291286 -k1,605:23087390,45277113:291286 -k1,605:25247014,45277113:291193 -k1,605:26851642,45277113:291286 -k1,605:28427434,45277113:291286 -k1,605:30379402,45277113:291286 -k1,605:31356850,45277113:291286 -k1,605:32583029,45277113:0 -) -] -(1,607:32583029,45706769:0,0,0 -g1,607:32583029,45706769 -) -) -] -(1,607:6630773,47279633:25952256,0,0 -h1,607:6630773,47279633:25952256,0,0 -) -] -(1,607:4262630,4025873:0,0,0 -[1,607:-473656,4025873:0,0,0 -(1,607:-473656,-710413:0,0,0 -(1,607:-473656,-710413:0,0,0 -g1,607:-473656,-710413 -) -g1,607:-473656,-710413 -) -] -) -] -!23390 -}34 -!11 -{35 -[1,619:4262630,47279633:28320399,43253760,0 -(1,619:4262630,4025873:0,0,0 -[1,619:-473656,4025873:0,0,0 -(1,619:-473656,-710413:0,0,0 -(1,619:-473656,-644877:0,0,0 -k1,619:-473656,-644877:-65536 -) -(1,619:-473656,4736287:0,0,0 -k1,619:-473656,4736287:5209943 +k1,774:3078556,49800853:-34777008 +) +] +g1,774:6630773,4812305 +g1,774:6630773,4812305 +g1,774:9516978,4812305 +g1,774:11710468,4812305 +g1,774:13120147,4812305 +g1,774:16560787,4812305 +k1,774:31786111,4812305:15225324 ) -g1,619:-473656,-710413 ) ] +[1,774:6630773,45706769:25952256,40108032,0 +(1,774:6630773,45706769:25952256,40108032,0 +(1,774:6630773,45706769:0,0,0 +g1,774:6630773,45706769 ) -[1,619:6630773,47279633:25952256,43253760,0 -[1,619:6630773,4812305:25952256,786432,0 -(1,619:6630773,4812305:25952256,505283,134348 -(1,619:6630773,4812305:25952256,505283,134348 -g1,619:3078558,4812305 -[1,619:3078558,4812305:0,0,0 -(1,619:3078558,2439708:0,1703936,0 -k1,619:1358238,2439708:-1720320 -(1,417:1358238,2439708:1720320,1703936,0 -(1,417:1358238,2439708:1179648,16384,0 -r1,619:2537886,2439708:1179648,16384,0 +[1,774:6630773,45706769:25952256,40108032,0 +(1,683:6630773,6254097:25952256,513147,126483 +h1,682:6630773,6254097:983040,0,0 +g1,682:9009729,6254097 +g1,682:12513939,6254097 +g1,682:13372460,6254097 +g1,682:14590774,6254097 +g1,682:16437578,6254097 +g1,682:20076792,6254097 +g1,682:20076792,6254097 +g1,682:20276021,6254097 +g1,682:20276021,6254097 +k1,683:32583029,6254097:12307008 +g1,683:32583029,6254097 ) -g1,417:3062174,2439708 -(1,417:3062174,2439708:16384,1703936,0 -[1,417:3062174,2439708:25952256,1703936,0 -(1,417:3062174,1915420:25952256,1179648,0 -(1,417:3062174,1915420:16384,1179648,0 -r1,619:3078558,1915420:16384,1179648,0 +(1,685:18563541,8175493:2086720,1074017,479774 +(1,685:18563541,8175493:2086720,1074017,479774 +(1,685:18563541,8175493:2086720,1074017,479774 +h1,685:18563541,8175493:78643,0,0 +[1,685:18642184,8175493:1929434,1074017,479774 +(1,685:18642184,7716692:1929434,615216,11796 +g1,685:19186291,7716692 +g1,685:19900136,7716692 +(1,685:20259929,7441411:311689,339935,0 ) -k1,417:29014430,1915420:25935872 -g1,417:29014430,1915420 ) -] +(1,685:18642184,8647403:1929434,355205,7864 +k1,685:18733411,8647403:91227 +(1,685:18733411,8647403:1058406,355205,7864 ) +g1,685:19901053,8647403 +k1,685:20571618,8647403:91227 +) +] +h1,685:20571618,8175493:78643,0,0 +) +) +) +(1,687:6630773,9889310:25952256,513147,102891 +g1,686:7535169,9889310 +g1,686:8350436,9889310 +g1,686:9138178,9889310 +g1,686:11623958,9889310 +g1,686:12509349,9889310 +k1,687:32583030,9889310:17584624 +g1,687:32583030,9889310 +) +v1,689:6630773,10574165:0,393216,0 +(1,696:6630773,11697745:25952256,1516796,196608 +g1,696:6630773,11697745 +g1,696:6630773,11697745 +g1,696:6434165,11697745 +(1,696:6434165,11697745:0,1516796,196608 +r1,774:32779637,11697745:26345472,1713404,196608 +k1,696:6434165,11697745:-26345472 +) +(1,696:6434165,11697745:26345472,1516796,196608 +[1,696:6630773,11697745:25952256,1320188,0 +(1,691:6630773,10801996:25952256,424439,106246 +(1,690:6630773,10801996:0,0,0 +g1,690:6630773,10801996 +g1,690:6630773,10801996 +g1,690:6303093,10801996 +(1,690:6303093,10801996:0,0,0 +) +g1,690:6630773,10801996 +) +g1,691:7626635,10801996 +g1,691:8290543,10801996 +g1,691:10946175,10801996 +g1,691:11610083,10801996 +k1,691:11610083,10801996:0 +h1,691:13933761,10801996:0,0,0 +k1,691:32583029,10801996:18649268 +g1,691:32583029,10801996 +) +(1,695:6630773,11617923:25952256,424439,79822 +(1,693:6630773,11617923:0,0,0 +g1,693:6630773,11617923 +g1,693:6630773,11617923 +g1,693:6303093,11617923 +(1,693:6303093,11617923:0,0,0 +) +g1,693:6630773,11617923 +) +g1,695:7626635,11617923 +g1,695:8954451,11617923 +k1,695:8954451,11617923:0 +h1,695:11942036,11617923:0,0,0 +k1,695:32583028,11617923:20640992 +g1,695:32583028,11617923 +) +] +) +g1,696:32583029,11697745 +g1,696:6630773,11697745 +g1,696:6630773,11697745 +g1,696:32583029,11697745 +g1,696:32583029,11697745 +) +h1,696:6630773,11894353:0,0,0 +(1,700:6630773,12759433:25952256,513147,115847 +h1,699:6630773,12759433:983040,0,0 +k1,699:9857833,12759433:239929 +k1,699:12855516,12759433:239928 +(1,699:12855516,12759433:0,452978,115847 +r1,774:13565494,12759433:709978,568825,115847 +k1,699:12855516,12759433:-709978 +) +(1,699:12855516,12759433:709978,452978,115847 +k1,699:12855516,12759433:3277 +h1,699:13562217,12759433:0,411205,112570 +) +k1,699:13805423,12759433:239929 +$1,699:14012517,12759433 +k1,699:14848300,12759433:256445 +k1,699:15672942,12759433:256445 +k1,699:17963872,12759433:109236 +$1,699:18619232,12759433 +k1,699:19066254,12759433:239928 +k1,699:20497628,12759433:239929 +k1,699:23433053,12759433:239929 +(1,699:23433053,12759433:0,452978,115847 +r1,774:25198166,12759433:1765113,568825,115847 +k1,699:23433053,12759433:-1765113 +) +(1,699:23433053,12759433:1765113,452978,115847 +k1,699:23433053,12759433:3277 +h1,699:25194889,12759433:0,411205,112570 +) +k1,699:25438094,12759433:239928 +k1,699:28113996,12759433:239929 +k1,699:29345484,12759433:239928 +k1,699:31966991,12759433:239929 +k1,699:32583029,12759433:0 +) +(1,700:6630773,13624513:25952256,513147,134348 +k1,699:8291128,13624513:226427 +k1,699:9106068,13624513:226427 +k1,699:11027910,13624513:226426 +k1,699:15626244,13624513:226427 +k1,699:17044116,13624513:226427 +k1,699:21593953,13624513:226427 +k1,699:24846177,13624513:226427 +k1,699:26064163,13624513:226426 +k1,699:29074559,13624513:226427 +k1,699:29917024,13624513:226427 +k1,699:32583029,13624513:0 +) +(1,700:6630773,14489593:25952256,530548,126483 +g1,699:7481430,14489593 +g1,699:10757574,14489593 +g1,699:12103028,14489593 +h1,699:12103028,14489593:0,0,0 +g1,699:12890869,14489593 +h1,699:12890869,14489593:0,0,0 +g1,699:13678710,14489593 +h1,699:13678710,14489593:0,0,0 +g1,699:14466551,14489593 +h1,699:14466551,14489593:0,0,0 +g1,699:15254392,14489593 +g1,699:16645066,14489593 +h1,699:16645066,14489593:0,0,0 +k1,700:32583029,14489593:15349351 +g1,700:32583029,14489593 +) +v1,702:6630773,15354673:0,393216,0 +(1,714:6630773,21181213:25952256,6219756,0 +g1,714:6630773,21181213 +g1,714:6237557,21181213 +r1,774:6368629,21181213:131072,6219756,0 +g1,714:6567858,21181213 +g1,714:6764466,21181213 +[1,714:6764466,21181213:25818563,6219756,0 +(1,703:6764466,15715850:25818563,754393,260573 +(1,702:6764466,15715850:0,754393,260573 +r1,774:8010564,15715850:1246098,1014966,260573 +k1,702:6764466,15715850:-1246098 +) +(1,702:6764466,15715850:1246098,754393,260573 +) +k1,702:8247480,15715850:236916 +k1,702:8575160,15715850:327680 +k1,702:9439910,15715850:236915 +k1,702:10091631,15715850:236878 +k1,702:12356231,15715850:236916 +k1,702:13584707,15715850:236916 +k1,702:17019124,15715850:236915 +k1,702:17872078,15715850:236916 +k1,702:20649825,15715850:236916 +k1,702:22303629,15715850:236916 +$1,702:22303629,15715850 +(1,702:22303629,15715850:1058406,355205,7864 +) +k1,702:24792621,15715850:250938 +k1,702:25611756,15715850:250938 +$1,702:26010215,15715850 +k1,702:26247131,15715850:236916 +k1,702:27675492,15715850:236916 +$1,702:27675492,15715850 +(1,702:27675492,15715850:946340,473825,7864 +) +k1,702:30052418,15715850:250938 +k1,702:30871553,15715850:250938 +$1,702:31270012,15715850 +k1,702:31680598,15715850:236916 +k1,703:32583029,15715850:0 +) +(1,703:6764466,16580930:25818563,505283,134348 +k1,702:9466158,16580930:274238 +k1,702:10391825,16580930:274239 +k1,702:15037970,16580930:274238 +k1,702:17850417,16580930:274238 +k1,702:19228938,16580930:274239 +k1,702:20250942,16580930:274238 +k1,702:23685982,16580930:274239 +k1,702:25227686,16580930:274238 +k1,702:27869084,16580930:274238 +k1,702:30138894,16580930:274239 +k1,702:31680598,16580930:274238 +k1,703:32583029,16580930:0 +) +(1,703:6764466,17446010:25818563,530347,126483 +k1,702:8760442,17446010:181284 +k1,702:10226232,17446010:181284 +k1,702:11426601,17446010:181284 +k1,702:13317064,17446010:181284 +k1,702:17461964,17446010:181283 +k1,702:18294676,17446010:181284 +$1,702:18294676,17446010 +k1,702:18799426,17446010:106291 +k1,702:19473914,17446010:106291 +$1,702:20053252,17446010 +k1,702:20234536,17446010:181284 +k1,702:22113858,17446010:181284 +k1,702:25492644,17446010:181284 +k1,702:26289965,17446010:181283 +k1,702:28838409,17446010:181284 +k1,702:30211138,17446010:181284 +k1,702:31043850,17446010:181284 +$1,702:31043850,17446010 +(1,702:32239227,17170729:343802,255066,0 +) +$1,702:32583029,17446010 +k1,703:32583029,17446010:0 +) +(1,703:6764466,18311090:25818563,530347,134348 +k1,702:8648032,18311090:185528 +k1,702:12031062,18311090:185528 +k1,702:12832628,18311090:185528 +k1,702:15647460,18311090:185528 +k1,702:17427479,18311090:185528 +k1,702:18632092,18311090:185528 +k1,702:20839406,18311090:185528 +k1,702:21684225,18311090:185527 +k1,702:22640456,18311090:185528 +k1,702:24108524,18311090:185528 +k1,702:24953344,18311090:185528 +$1,702:24953344,18311090 +(1,702:25750262,18035809:343802,255066,0 +) +$1,702:26094064,18311090 +k1,702:26279592,18311090:185528 +k1,702:27569402,18311090:185528 +k1,702:28502696,18311090:185528 +k1,702:31896867,18311090:185528 +k1,702:32583029,18311090:0 +) +(1,703:6764466,19176170:25818563,513147,7863 +k1,703:32583029,19176170:23329506 +g1,703:32583029,19176170 +) +v1,705:6764466,19861025:0,393216,0 +(1,712:6764466,20984605:25818563,1516796,196608 +g1,712:6764466,20984605 +g1,712:6764466,20984605 +g1,712:6567858,20984605 +(1,712:6567858,20984605:0,1516796,196608 +r1,774:32779637,20984605:26211779,1713404,196608 +k1,712:6567857,20984605:-26211780 +) +(1,712:6567858,20984605:26211779,1516796,196608 +[1,712:6764466,20984605:25818563,1320188,0 +(1,707:6764466,20088856:25818563,424439,106246 +(1,706:6764466,20088856:0,0,0 +g1,706:6764466,20088856 +g1,706:6764466,20088856 +g1,706:6436786,20088856 +(1,706:6436786,20088856:0,0,0 +) +g1,706:6764466,20088856 +) +k1,707:6764466,20088856:0 +g1,707:10415960,20088856 +g1,707:11079868,20088856 +h1,707:12075730,20088856:0,0,0 +k1,707:32583030,20088856:20507300 +g1,707:32583030,20088856 +) +(1,711:6764466,20904783:25818563,424439,79822 +(1,709:6764466,20904783:0,0,0 +g1,709:6764466,20904783 +g1,709:6764466,20904783 +g1,709:6436786,20904783 +(1,709:6436786,20904783:0,0,0 +) +g1,709:6764466,20904783 +) +g1,711:7760328,20904783 +g1,711:9088144,20904783 +h1,711:12075729,20904783:0,0,0 +k1,711:32583029,20904783:20507300 +g1,711:32583029,20904783 +) +] +) +g1,712:32583029,20984605 +g1,712:6764466,20984605 +g1,712:6764466,20984605 +g1,712:32583029,20984605 +g1,712:32583029,20984605 +) +h1,712:6764466,21181213:0,0,0 +] +g1,714:32583029,21181213 +) +h1,714:6630773,21181213:0,0,0 +(1,717:6630773,22046293:25952256,513147,134348 +h1,716:6630773,22046293:983040,0,0 +k1,716:9099969,22046293:214758 +k1,716:10976719,22046293:214757 +k1,716:11842905,22046293:214758 +k1,716:15316768,22046293:214758 +k1,716:17229563,22046293:214757 +k1,716:20898724,22046293:214758 +k1,716:23953812,22046293:214758 +k1,716:25436035,22046293:214757 +k1,716:26065620,22046293:214742 +k1,716:27776565,22046293:214758 +k1,716:28522820,22046293:214758 +k1,716:30022083,22046293:214757 +k1,716:30852879,22046293:214758 +k1,717:32583029,22046293:0 +) +(1,717:6630773,22911373:25952256,513147,134348 +k1,716:8579864,22911373:190105 +k1,716:12540255,22911373:190105 +k1,716:13749444,22911373:190104 +k1,716:14984193,22911373:190105 +k1,716:15833590,22911373:190105 +k1,716:17042780,22911373:190105 +k1,716:19742913,22911373:190104 +k1,716:22995515,22911373:190105 +k1,716:23541480,22911373:190105 +k1,716:26614514,22911373:190105 +k1,716:28089124,22911373:190104 +k1,716:30063119,22911373:190105 +k1,716:31272309,22911373:190105 +k1,717:32583029,22911373:0 +) +(1,717:6630773,23776453:25952256,513147,134348 +k1,716:8024234,23776453:212502 +k1,716:11837938,23776453:212501 +k1,716:12709732,23776453:212502 +k1,716:16500499,23776453:212501 +k1,716:17340836,23776453:212502 +k1,716:20358278,23776453:212501 +k1,716:21186818,23776453:212502 +k1,716:22170022,23776453:212501 +k1,716:22797353,23776453:212488 +k1,716:26449840,23776453:212502 +k1,716:27865582,23776453:212501 +k1,716:30961013,23776453:212502 +k1,716:32583029,23776453:0 +) +(1,717:6630773,24641533:25952256,505283,134348 +g1,716:7577768,24641533 +g1,716:10674344,24641533 +g1,716:13523194,24641533 +g1,716:15116374,24641533 +g1,716:18542596,24641533 +k1,717:32583029,24641533:10012590 +g1,717:32583029,24641533 +) +(1,719:6630773,25506613:25952256,513147,126483 +h1,718:6630773,25506613:983040,0,0 +k1,718:8275373,25506613:183803 +k1,718:9629650,25506613:183804 +k1,718:10805013,25506613:183803 +k1,718:11604854,25506613:183803 +k1,718:13676095,25506613:183804 +k1,718:15682454,25506613:183803 +k1,718:17196638,25506613:183803 +k1,718:20981644,25506613:183803 +k1,718:22751419,25506613:183804 +k1,718:24705349,25506613:183803 +k1,718:26059625,25506613:183803 +k1,718:27347711,25506613:183804 +k1,718:28728857,25506613:183803 +k1,718:32583029,25506613:0 +) +(1,719:6630773,26371693:25952256,513147,126483 +k1,718:7494033,26371693:211832 +k1,718:9421599,26371693:211833 +k1,718:11014275,26371693:211832 +k1,718:12245192,26371693:211832 +k1,718:14196351,26371693:211833 +k1,718:15067475,26371693:211832 +k1,718:19673496,26371693:211832 +k1,718:20416825,26371693:211832 +k1,718:21647743,26371693:211833 +k1,718:23016285,26371693:211832 +k1,718:24398590,26371693:211832 +k1,718:26839958,26371693:211833 +k1,718:30542893,26371693:211832 +k1,719:32583029,26371693:0 +) +(1,719:6630773,27236773:25952256,513147,7863 +g1,718:8857031,27236773 +g1,718:10531475,27236773 +g1,718:11540074,27236773 +k1,719:32583029,27236773:19098502 +g1,719:32583029,27236773 +) +v1,721:6630773,27921628:0,393216,0 +(1,740:6630773,32292400:25952256,4763988,196608 +g1,740:6630773,32292400 +g1,740:6630773,32292400 +g1,740:6434165,32292400 +(1,740:6434165,32292400:0,4763988,196608 +r1,774:32779637,32292400:26345472,4960596,196608 +k1,740:6434165,32292400:-26345472 +) +(1,740:6434165,32292400:26345472,4763988,196608 +[1,740:6630773,32292400:25952256,4567380,0 +(1,723:6630773,28132943:25952256,407923,9908 +(1,722:6630773,28132943:0,0,0 +g1,722:6630773,28132943 +g1,722:6630773,28132943 +g1,722:6303093,28132943 +(1,722:6303093,28132943:0,0,0 +) +g1,722:6630773,28132943 +) +g1,723:7294681,28132943 +g1,723:7958589,28132943 +g1,723:8622497,28132943 +g1,723:9286405,28132943 +h1,723:9618359,28132943:0,0,0 +k1,723:32583029,28132943:22964670 +g1,723:32583029,28132943 +) +(1,727:6630773,28948870:25952256,424439,79822 +(1,725:6630773,28948870:0,0,0 +g1,725:6630773,28948870 +g1,725:6630773,28948870 +g1,725:6303093,28948870 +(1,725:6303093,28948870:0,0,0 +) +g1,725:6630773,28948870 +) +g1,727:7626635,28948870 +g1,727:8954451,28948870 +h1,727:9286405,28948870:0,0,0 +k1,727:32583029,28948870:23296624 +g1,727:32583029,28948870 +) +(1,729:6630773,29764797:25952256,424439,79822 +(1,728:6630773,29764797:0,0,0 +g1,728:6630773,29764797 +g1,728:6630773,29764797 +g1,728:6303093,29764797 +(1,728:6303093,29764797:0,0,0 +) +g1,728:6630773,29764797 +) +g1,729:7294681,29764797 +g1,729:7958589,29764797 +g1,729:8954451,29764797 +g1,729:9618359,29764797 +h1,729:10282267,29764797:0,0,0 +k1,729:32583029,29764797:22300762 +g1,729:32583029,29764797 +) +(1,733:6630773,30580724:25952256,424439,79822 +(1,731:6630773,30580724:0,0,0 +g1,731:6630773,30580724 +g1,731:6630773,30580724 +g1,731:6303093,30580724 +(1,731:6303093,30580724:0,0,0 +) +g1,731:6630773,30580724 +) +g1,733:7626635,30580724 +g1,733:8954451,30580724 +h1,733:9286405,30580724:0,0,0 +k1,733:32583029,30580724:23296624 +g1,733:32583029,30580724 +) +(1,735:6630773,31396651:25952256,424439,79822 +(1,734:6630773,31396651:0,0,0 +g1,734:6630773,31396651 +g1,734:6630773,31396651 +g1,734:6303093,31396651 +(1,734:6303093,31396651:0,0,0 +) +g1,734:6630773,31396651 +) +g1,735:7626635,31396651 +g1,735:8290543,31396651 +g1,735:9286405,31396651 +g1,735:9950313,31396651 +h1,735:10282267,31396651:0,0,0 +k1,735:32583029,31396651:22300762 +g1,735:32583029,31396651 +) +(1,739:6630773,32212578:25952256,424439,79822 +(1,737:6630773,32212578:0,0,0 +g1,737:6630773,32212578 +g1,737:6630773,32212578 +g1,737:6303093,32212578 +(1,737:6303093,32212578:0,0,0 +) +g1,737:6630773,32212578 +) +g1,739:7626635,32212578 +g1,739:8954451,32212578 +h1,739:9286405,32212578:0,0,0 +k1,739:32583029,32212578:23296624 +g1,739:32583029,32212578 +) +] +) +g1,740:32583029,32292400 +g1,740:6630773,32292400 +g1,740:6630773,32292400 +g1,740:32583029,32292400 +g1,740:32583029,32292400 +) +h1,740:6630773,32489008:0,0,0 +(1,744:6630773,33354088:25952256,513147,134348 +h1,743:6630773,33354088:983040,0,0 +k1,743:9006616,33354088:196116 +k1,743:11688514,33354088:196117 +k1,743:12543922,33354088:196116 +k1,743:15307739,33354088:196116 +k1,743:16785085,33354088:196117 +k1,743:18487874,33354088:196116 +k1,743:19875435,33354088:196116 +k1,743:22325335,33354088:196117 +k1,743:24264053,33354088:196116 +k1,743:25966842,33354088:196116 +k1,743:30017131,33354088:196117 +k1,743:31835263,33354088:196116 +k1,743:32583029,33354088:0 +) +(1,744:6630773,34219168:25952256,505283,126483 +k1,743:9872979,34219168:234759 +k1,743:11299184,34219168:234760 +k1,743:12914131,34219168:234759 +k1,743:14770906,34219168:234759 +k1,743:15753431,34219168:234759 +k1,743:18302267,34219168:234760 +k1,743:19261854,34219168:234759 +k1,743:20781119,34219168:234759 +k1,743:22467501,34219168:234760 +k1,743:25496060,34219168:234759 +k1,743:27243390,34219168:234759 +k1,743:28009646,34219168:234759 +k1,743:28600266,34219168:234760 +k1,743:30375121,34219168:234759 +k1,744:32583029,34219168:0 +) +(1,744:6630773,35084248:25952256,505283,126483 +k1,743:9177408,35084248:218141 +k1,743:13009204,35084248:218141 +k1,743:14296893,35084248:218141 +k1,743:16011221,35084248:218141 +k1,743:17513868,35084248:218141 +k1,743:18836291,35084248:218141 +k1,743:19802199,35084248:218142 +k1,743:23081527,35084248:218141 +k1,743:23951096,35084248:218141 +k1,743:26179882,35084248:218141 +k1,743:26753883,35084248:218141 +k1,743:28826038,35084248:218141 +k1,743:29400039,35084248:218141 +k1,743:31298523,35084248:218141 +k1,743:32583029,35084248:0 +) +(1,744:6630773,35949328:25952256,513147,126483 +k1,743:7988570,35949328:253515 +k1,743:8989851,35949328:253515 +k1,743:11850388,35949328:253515 +k1,743:12719941,35949328:253515 +k1,743:14636104,35949328:253515 +k1,743:15548912,35949328:253516 +k1,743:16821512,35949328:253515 +k1,743:20515012,35949328:253515 +k1,743:23562327,35949328:253515 +k1,743:24431880,35949328:253515 +k1,743:28393422,35949328:253515 +k1,743:30689694,35949328:253515 +k1,744:32583029,35949328:0 +) +(1,744:6630773,36814408:25952256,513147,134348 +k1,743:8460908,36814408:227124 +k1,743:9707116,36814408:227123 +k1,743:13152058,36814408:227124 +k1,743:14038473,36814408:227123 +k1,743:15284682,36814408:227124 +k1,743:19125460,36814408:227123 +k1,743:20394606,36814408:227124 +k1,743:23456816,36814408:227123 +(1,743:23456816,36814408:0,452978,115847 +r1,774:27332202,36814408:3875386,568825,115847 +k1,743:23456816,36814408:-3875386 +) +(1,743:23456816,36814408:3875386,452978,115847 +g1,743:24515229,36814408 +g1,743:25218653,36814408 +g1,743:26273789,36814408 +g1,743:26977213,36814408 +h1,743:27328925,36814408:0,411205,112570 +) +k1,743:27559326,36814408:227124 +k1,743:29299675,36814408:227123 +k1,744:32583029,36814408:0 +) +(1,744:6630773,37679488:25952256,505283,134348 +(1,743:6630773,37679488:0,452978,115847 +r1,774:9099311,37679488:2468538,568825,115847 +k1,743:6630773,37679488:-2468538 +) +(1,743:6630773,37679488:2468538,452978,115847 +g1,743:7689186,37679488 +g1,743:8392610,37679488 +h1,743:9096034,37679488:0,411205,112570 +) +k1,743:9272624,37679488:173313 +k1,743:12219421,37679488:173313 +(1,743:12219421,37679488:0,435480,115847 +r1,774:13984535,37679488:1765114,551327,115847 +k1,743:12219421,37679488:-1765114 +) +(1,743:12219421,37679488:1765114,435480,115847 +g1,743:12926122,37679488 +g1,743:13629546,37679488 +h1,743:13981258,37679488:0,411205,112570 +) +k1,743:14157848,37679488:173313 +k1,743:16856918,37679488:173312 +(1,743:16856918,37679488:0,435480,115847 +r1,774:17215184,37679488:358266,551327,115847 +k1,743:16856918,37679488:-358266 +) +(1,743:16856918,37679488:358266,435480,115847 +k1,743:16856918,37679488:3277 +h1,743:17211907,37679488:0,411205,112570 +) +k1,743:17562167,37679488:173313 +k1,743:18363315,37679488:173313 +k1,743:21341569,37679488:173313 +(1,743:21341569,37679488:0,452978,115847 +r1,774:25216955,37679488:3875386,568825,115847 +k1,743:21341569,37679488:-3875386 +) +(1,743:21341569,37679488:3875386,452978,115847 +g1,743:22399982,37679488 +g1,743:23455118,37679488 +g1,743:24158542,37679488 +g1,743:24861966,37679488 +h1,743:25213678,37679488:0,411205,112570 +) +k1,743:25390268,37679488:173313 +k1,743:26095078,37679488:173313 +k1,743:26624250,37679488:173312 +k1,743:28881608,37679488:173313 +k1,743:30661864,37679488:173313 +k1,743:31521339,37679488:173313 +(1,743:31521339,37679488:0,435480,115847 +r1,774:32583029,37679488:1061690,551327,115847 +k1,743:31521339,37679488:-1061690 +) +(1,743:31521339,37679488:1061690,435480,115847 +g1,743:32228040,37679488 +h1,743:32579752,37679488:0,411205,112570 +) +k1,743:32583029,37679488:0 +) +(1,744:6630773,38544568:25952256,505283,126483 +g1,743:7361499,38544568 +g1,743:11102294,38544568 +g1,743:12492968,38544568 +g1,743:14185107,38544568 +g1,743:15450607,38544568 +g1,743:17185345,38544568 +g1,743:17740434,38544568 +k1,744:32583029,38544568:12183144 +g1,744:32583029,38544568 +) +v1,746:6630773,39409648:0,393216,0 +(1,774:6630773,44134008:25952256,5117576,0 +g1,774:6630773,44134008 +g1,774:6237557,44134008 +r1,774:6368629,44134008:131072,5117576,0 +g1,774:6567858,44134008 +g1,774:6764466,44134008 +[1,774:6764466,44134008:25818563,5117576,0 +(1,747:6764466,39682125:25818563,665693,196608 +(1,746:6764466,39682125:0,665693,196608 +r1,774:8010564,39682125:1246098,862301,196608 +k1,746:6764466,39682125:-1246098 +) +(1,746:6764466,39682125:1246098,665693,196608 +) +k1,746:8214924,39682125:204360 +k1,746:9532853,39682125:327680 +k1,746:10365049,39682125:204361 +k1,746:14527129,39682125:204360 +k1,746:15750575,39682125:204361 +k1,746:18113691,39682125:204360 +k1,746:19885673,39682125:204361 +k1,746:22613169,39682125:204360 +k1,746:23836615,39682125:204361 +k1,746:25537162,39682125:204360 +k1,746:26357560,39682125:204360 +k1,746:26976759,39682125:204356 +k1,746:28172679,39682125:204360 +k1,746:29443311,39682125:204361 +k1,746:31896867,39682125:204360 +k1,746:32583029,39682125:0 +) +(1,747:6764466,40547205:25818563,513147,134348 +k1,746:8620775,40547205:159582 +k1,746:9771918,40547205:159583 +k1,746:12822293,40547205:159582 +k1,746:13929527,40547205:159583 +k1,746:15259582,40547205:159582 +k1,746:16070592,40547205:159582 +k1,746:17884959,40547205:159583 +k1,746:18657303,40547205:159582 +k1,746:19835971,40547205:159583 +k1,746:20410357,40547205:159543 +k1,746:22990184,40547205:159582 +k1,746:24341211,40547205:159582 +k1,746:25792509,40547205:159583 +k1,746:26579926,40547205:159582 +k1,746:29072591,40547205:159583 +k1,746:30402646,40547205:159582 +k1,746:32583029,40547205:0 +) +(1,747:6764466,41412285:25818563,505283,134348 +k1,746:7992409,41412285:161672 +k1,746:9498880,41412285:161672 +k1,746:11299607,41412285:161672 +k1,746:12147442,41412285:161673 +k1,746:12925152,41412285:161672 +k1,746:14688524,41412285:161672 +k1,746:16547578,41412285:161672 +k1,746:20689907,41412285:161672 +k1,746:22028606,41412285:161672 +k1,746:22841707,41412285:161673 +k1,746:24711903,41412285:161672 +k1,746:25556460,41412285:161672 +k1,746:29751218,41412285:161672 +k1,746:32583029,41412285:0 +) +(1,747:6764466,42277365:25818563,513147,134348 +k1,746:7616174,42277365:168823 +k1,746:10390707,42277365:168822 +k1,746:11844036,42277365:168823 +k1,746:12225821,42277365:168793 +k1,746:13869859,42277365:168823 +k1,746:15101675,42277365:168822 +k1,746:18028908,42277365:168823 +k1,746:18813769,42277365:168823 +k1,746:22072614,42277365:168822 +k1,746:22857475,42277365:168823 +k1,746:24045383,42277365:168823 +k1,746:25806076,42277365:168823 +k1,746:27374747,42277365:168822 +k1,746:28797274,42277365:168823 +k1,746:29957657,42277365:168823 +k1,746:32583029,42277365:0 +) +(1,747:6764466,43142445:25818563,513147,134348 +k1,746:10728848,43142445:272739 +k1,746:11653015,43142445:272739 +k1,746:13451432,43142445:272739 +k1,746:14340209,43142445:272739 +k1,746:16314918,43142445:272739 +k1,746:18716266,43142445:272739 +k1,746:20918384,43142445:272738 +k1,746:22474318,43142445:272739 +k1,746:25903271,43142445:272739 +k1,746:26835302,43142445:272739 +k1,746:28127126,43142445:272739 +k1,746:31391584,43142445:272739 +k1,746:32583029,43142445:0 +) +(1,747:6764466,44007525:25818563,505283,126483 +g1,746:9376075,44007525 +g1,746:11214359,44007525 +g1,746:12065016,44007525 +g1,746:14632716,44007525 +g1,746:16162326,44007525 +g1,746:16776398,44007525 +g1,746:19076056,44007525 +g1,746:19076056,44007525 +g1,746:19275285,44007525 +g1,746:19275285,44007525 +g1,746:19474514,44007525 +g1,746:19474514,44007525 +g1,746:19673743,44007525 +g1,746:19673743,44007525 +g1,746:19872972,44007525 +g1,746:19872972,44007525 +k1,747:32583029,44007525:12710057 +g1,747:32583029,44007525 +) +] +g1,774:32583029,44134008 +) +] +(1,774:32583029,45706769:0,0,0 +g1,774:32583029,45706769 +) +) +] +(1,774:6630773,47279633:25952256,0,0 +h1,774:6630773,47279633:25952256,0,0 +) +] +(1,774:4262630,4025873:0,0,0 +[1,774:-473656,4025873:0,0,0 +(1,774:-473656,-710413:0,0,0 +(1,774:-473656,-710413:0,0,0 +g1,774:-473656,-710413 +) +g1,774:-473656,-710413 +) +] +) +] +!26256 +}40 +Input:260:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:261:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:262:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:263:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:264:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:265:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:266:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:267:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:268:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:269:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:270:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:271:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:272:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:273:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:274:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:275:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:276:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1592 +{41 +[1,855:4262630,47279633:28320399,43253760,0 +(1,855:4262630,4025873:0,0,0 +[1,855:-473656,4025873:0,0,0 +(1,855:-473656,-710413:0,0,0 +(1,855:-473656,-644877:0,0,0 +k1,855:-473656,-644877:-65536 +) +(1,855:-473656,4736287:0,0,0 +k1,855:-473656,4736287:5209943 ) +g1,855:-473656,-710413 ) ] -[1,619:3078558,4812305:0,0,0 -(1,619:3078558,2439708:0,1703936,0 -g1,619:29030814,2439708 -g1,619:36135244,2439708 -(1,417:36135244,2439708:1720320,1703936,0 -(1,417:36135244,2439708:16384,1703936,0 -[1,417:36135244,2439708:25952256,1703936,0 -(1,417:36135244,1915420:25952256,1179648,0 -(1,417:36135244,1915420:16384,1179648,0 -r1,619:36151628,1915420:16384,1179648,0 ) -k1,417:62087500,1915420:25935872 -g1,417:62087500,1915420 +[1,855:6630773,47279633:25952256,43253760,0 +[1,855:6630773,4812305:25952256,786432,0 +(1,855:6630773,4812305:25952256,505283,11795 +(1,855:6630773,4812305:25952256,505283,11795 +g1,855:3078558,4812305 +[1,855:3078558,4812305:0,0,0 +(1,855:3078558,2439708:0,1703936,0 +k1,855:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,855:2537886,2439708:1179648,16384,0 +) +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,855:3078558,1915420:16384,1179648,0 +) +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) ] ) -g1,417:36675916,2439708 -(1,417:36675916,2439708:1179648,16384,0 -r1,619:37855564,2439708:1179648,16384,0 ) ) -k1,619:3078556,2439708:-34777008 +] +[1,855:3078558,4812305:0,0,0 +(1,855:3078558,2439708:0,1703936,0 +g1,855:29030814,2439708 +g1,855:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,855:36151628,1915420:16384,1179648,0 +) +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) ] -[1,619:3078558,4812305:0,0,0 -(1,619:3078558,49800853:0,16384,2228224 -k1,619:1358238,49800853:-1720320 -(1,417:1358238,49800853:1720320,16384,2228224 -(1,417:1358238,49800853:1179648,16384,0 -r1,619:2537886,49800853:1179648,16384,0 ) -g1,417:3062174,49800853 -(1,417:3062174,52029077:16384,1703936,0 -[1,417:3062174,52029077:25952256,1703936,0 -(1,417:3062174,51504789:25952256,1179648,0 -(1,417:3062174,51504789:16384,1179648,0 -r1,619:3078558,51504789:16384,1179648,0 +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,855:37855564,2439708:1179648,16384,0 +) ) -k1,417:29014430,51504789:25935872 -g1,417:29014430,51504789 +k1,855:3078556,2439708:-34777008 ) ] +[1,855:3078558,4812305:0,0,0 +(1,855:3078558,49800853:0,16384,2228224 +k1,855:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,855:2537886,49800853:1179648,16384,0 ) +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,855:3078558,51504789:16384,1179648,0 ) +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) ] -[1,619:3078558,4812305:0,0,0 -(1,619:3078558,49800853:0,16384,2228224 -g1,619:29030814,49800853 -g1,619:36135244,49800853 -(1,417:36135244,49800853:1720320,16384,2228224 -(1,417:36135244,52029077:16384,1703936,0 -[1,417:36135244,52029077:25952256,1703936,0 -(1,417:36135244,51504789:25952256,1179648,0 -(1,417:36135244,51504789:16384,1179648,0 -r1,619:36151628,51504789:16384,1179648,0 -) -k1,417:62087500,51504789:25935872 -g1,417:62087500,51504789 -) -] -) -g1,417:36675916,49800853 -(1,417:36675916,49800853:1179648,16384,0 -r1,619:37855564,49800853:1179648,16384,0 -) -) -k1,619:3078556,49800853:-34777008 -) -] -g1,619:6630773,4812305 -k1,619:21916392,4812305:14488701 -g1,619:22703479,4812305 -g1,619:23888369,4812305 -g1,619:27214321,4812305 -g1,619:28624000,4812305 -g1,619:29808890,4812305 -) -) -] -[1,619:6630773,45706769:25952256,40108032,0 -(1,619:6630773,45706769:25952256,40108032,0 -(1,619:6630773,45706769:0,0,0 -g1,619:6630773,45706769 -) -[1,619:6630773,45706769:25952256,40108032,0 -(1,606:6630773,6254097:25952256,505283,126483 -k1,605:7836253,6254097:186395 -k1,605:9518835,6254097:186395 -k1,605:11218456,6254097:186395 -k1,605:15398616,6254097:186396 -k1,605:16978962,6254097:186395 -k1,605:18184442,6254097:186395 -k1,605:20717681,6254097:186395 -k1,605:22095521,6254097:186395 -k1,605:23386198,6254097:186395 -k1,605:25944342,6254097:186396 -k1,605:29455378,6254097:186395 -k1,605:30660858,6254097:186395 -k1,605:32583029,6254097:0 -) -(1,606:6630773,7095585:25952256,505283,134348 -g1,605:8938951,7095585 -g1,605:10969256,7095585 -g1,605:12681711,7095585 -g1,605:13532368,7095585 -g1,605:16463793,7095585 -k1,606:32583029,7095585:14306510 -g1,606:32583029,7095585 -) -(1,608:6630773,7937073:25952256,513147,134348 -h1,607:6630773,7937073:983040,0,0 -k1,607:10428585,7937073:279839 -k1,607:12547362,7937073:279838 -k1,607:15683915,7937073:279839 -k1,607:16982839,7937073:279839 -k1,607:19520393,7937073:279839 -k1,607:20459523,7937073:279838 -k1,607:23065890,7937073:279839 -k1,607:24739680,7937073:279839 -k1,607:26038603,7937073:279838 -k1,607:28520452,7937073:279839 -k1,607:32583029,7937073:0 -) -(1,608:6630773,8778561:25952256,513147,173670 -k1,607:9624668,8778561:314783 -k1,607:11674844,8778561:314783 -k1,607:13845608,8778561:314784 -k1,607:17463406,8778561:314783 -k1,607:18461074,8778561:314783 -[1,607:18590180,8778561:341312,473825,0 -(1,607:18590180,8640542:341312,335806,0 -) -] -(1,607:19158446,8952231:370934,473825,0 -) -k1,607:20878977,8778561:314783 -k1,607:23686095,8778561:314784 -k1,607:24948529,8778561:314783 -k1,607:30130016,8778561:314783 -k1,608:32583029,8778561:0 -) -(1,608:6630773,9620049:25952256,513147,134349 -k1,607:8704114,9620049:301903 -k1,607:10780733,9620049:301904 -k1,607:14385651,9620049:301903 -$1,607:14592745,9620049 -k1,607:16568655,9620049:0 -k1,607:16963837,9620049:0 -k1,607:17359019,9620049:0 -k1,607:17754201,9620049:0 -k1,607:23286749,9620049:0 -k1,607:23681931,9620049:0 -k1,607:24867477,9620049:0 -k1,607:25262659,9620049:0 -k1,607:28424115,9620049:0 -k1,607:28819297,9620049:0 -$1,607:32375935,9620049 -k1,607:32583029,9620049:0 -) -(1,608:6630773,10461537:25952256,505283,173670 -k1,607:7425664,10461537:263394 -k1,607:8459762,10461537:263395 -k1,607:10117762,10461537:263394 -k1,607:11032584,10461537:263394 -k1,607:12907508,10461537:263394 -k1,607:14362348,10461537:263395 -k1,607:15718227,10461537:263394 -k1,607:17207800,10461537:263394 -k1,607:19963528,10461537:263394 -k1,607:23385103,10461537:263395 -[1,607:23514209,10461537:341312,473825,0 -(1,607:23514209,10323518:341312,335806,0 -) -] -(1,607:24082475,10635207:370934,473825,0 -) -k1,607:29933469,10461537:263394 -k1,607:30728360,10461537:263394 -k1,607:32583029,10461537:0 -) -(1,608:6630773,11303025:25952256,513147,173670 -k1,607:7704692,11303025:264549 -(1,607:8029946,11476695:370934,473825,0 -) -k1,607:11725960,11303025:264549 -k1,607:13009594,11303025:264549 -k1,607:14875843,11303025:264549 -k1,607:17997106,11303025:264549 -k1,607:21829435,11303025:264549 -k1,607:24193758,11303025:264549 -k1,607:26272344,11303025:264549 -k1,607:29494533,11303025:264549 -k1,607:31591469,11303025:264549 -k1,607:32583029,11303025:0 -) -(1,608:6630773,12144513:25952256,513147,134348 -k1,607:9564633,12144513:171517 -k1,607:12311715,12144513:171517 -k1,607:13150388,12144513:171517 -k1,607:16798590,12144513:171517 -k1,607:19950684,12144513:171517 -k1,607:20543786,12144513:178259 -k1,607:24066159,12144513:171517 -k1,607:25469753,12144513:171517 -$1,607:25469753,12144513 -k1,607:27445663,12144513:0 -k1,607:27840845,12144513:0 -k1,607:28236027,12144513:0 -k1,607:28631209,12144513:0 -k1,607:32187847,12144513:0 -k1,608:32583029,12144513:0 -) -(1,608:6630773,12986001:25952256,513147,126484 -k1,607:9397047,12986001:0 -k1,607:9792229,12986001:0 -$1,607:11372957,12986001 -k1,607:11858224,12986001:278173 -k1,607:13530348,12986001:278173 -k1,607:16002665,12986001:278172 -k1,607:18807251,12986001:278173 -k1,607:20033075,12986001:278173 -k1,607:20726012,12986001:278094 -k1,607:22674041,12986001:278172 -k1,607:25145049,12986001:278173 -k1,607:26655299,12986001:278173 -$1,607:26655299,12986001 -k1,607:28631209,12986001:0 -k1,607:29026391,12986001:0 -k1,607:29421573,12986001:0 -k1,607:29816755,12986001:0 -k1,607:32187847,12986001:0 -k1,608:32583029,12986001:0 -) -(1,608:6630773,13827489:25952256,513147,134349 -$1,607:8211501,13827489 -k1,607:8780916,13827489:362321 -k1,607:10350409,13827489:362320 -k1,607:13267323,13827489:362321 -k1,607:16272056,13827489:362321 -k1,607:17320539,13827489:362321 -k1,607:18453562,13827489:362320 -k1,607:23083588,13827489:362321 -k1,607:24113065,13827489:362321 -k1,607:24904363,13827489:376455 -k1,607:28617539,13827489:362320 -k1,607:30211937,13827489:362321 -$1,607:30211937,13827489 -k1,607:32187847,13827489:0 -k1,608:32583029,13827489:0 -) -(1,608:6630773,14668977:25952256,505283,134348 -k1,607:7025955,14668977:0 -k1,607:7421137,14668977:0 -k1,607:10977775,14668977:0 -k1,607:11372957,14668977:0 -k1,607:14139231,14668977:0 -k1,607:14534413,14668977:0 -$1,607:16115141,14668977 -k1,607:16770501,14668977:274596 -k1,607:20317310,14668977:274596 -k1,607:24159686,14668977:274596 -k1,607:25625726,14668977:274595 -k1,607:28044005,14668977:274596 -k1,607:29510046,14668977:274596 -k1,607:32583029,14668977:0 -) -(1,608:6630773,15510465:25952256,513147,134348 -k1,607:7178502,15510465:191869 -k1,607:9243390,15510465:191869 -k1,607:11681179,15510465:191870 -k1,607:14291982,15510465:191869 -k1,607:15143143,15510465:191869 -k1,607:18710116,15510465:191869 -k1,607:19257846,15510465:191870 -k1,607:21309627,15510465:191869 -k1,607:24332651,15510465:191869 -k1,607:25183812,15510465:191869 -k1,607:28038410,15510465:191870 -k1,607:30013514,15510465:191869 -k1,607:31718609,15510465:191869 -k1,608:32583029,15510465:0 -) -(1,608:6630773,16351953:25952256,513147,134348 -k1,607:8880577,16351953:220809 -k1,607:10495338,16351953:220810 -k1,607:11304660,16351953:220809 -k1,607:13718305,16351953:220810 -k1,607:15658779,16351953:220809 -k1,607:16688959,16351953:220810 -k1,607:19489920,16351953:220809 -k1,607:21549668,16351953:220809 -k1,607:22718129,16351953:220810 -k1,607:23958023,16351953:220809 -k1,607:25279838,16351953:220810 -k1,607:26855932,16351953:220809 -k1,607:27692780,16351953:220810 -k1,607:28932674,16351953:220809 -k1,607:32583029,16351953:0 -) -(1,608:6630773,17193441:25952256,505283,126483 -g1,607:7554830,17193441 -g1,607:8370097,17193441 -g1,607:8925186,17193441 -g1,607:10791651,17193441 -g1,607:12761007,17193441 -g1,607:15153071,17193441 -g1,607:16845210,17193441 -g1,607:18110710,17193441 -g1,607:20608287,17193441 -k1,608:32583029,17193441:11342975 -g1,608:32583029,17193441 -) -(1,610:6630773,18034929:25952256,513147,134348 -h1,609:6630773,18034929:983040,0,0 -k1,609:10420541,18034929:278349 -k1,609:11358182,18034929:278349 -k1,609:12655617,18034929:278350 -k1,609:16390990,18034929:278349 -k1,609:17328631,18034929:278349 -k1,609:19303707,18034929:278349 -k1,609:23244208,18034929:278349 -k1,609:24173986,18034929:278350 -k1,609:25471420,18034929:278349 -k1,609:29145189,18034929:278349 -k1,609:30082830,18034929:278349 -k1,609:32583029,18034929:0 -) -(1,610:6630773,18876417:25952256,513147,134348 -k1,609:7865890,18876417:216032 -k1,609:8496748,18876417:216015 -k1,609:11555076,18876417:216032 -k1,609:12302605,18876417:216032 -k1,609:15657157,18876417:216033 -k1,609:17850410,18876417:216032 -k1,609:19764480,18876417:216032 -k1,609:24716144,18876417:216032 -k1,609:25463673,18876417:216032 -k1,609:29062673,18876417:216032 -k1,609:30744090,18876417:216032 -k1,609:32583029,18876417:0 -) -(1,610:6630773,19717905:25952256,513147,134348 -k1,609:8072112,19717905:249894 -k1,609:10514840,19717905:249893 -k1,609:11756294,19717905:249894 -k1,609:14862901,19717905:249893 -k1,609:16304240,19717905:249894 -k1,609:18855103,19717905:249894 -k1,609:21465603,19717905:249893 -k1,609:22366925,19717905:249894 -k1,609:24231626,19717905:249894 -k1,609:26364368,19717905:249893 -k1,609:28700273,19717905:249894 -k1,609:30443732,19717905:249893 -k1,609:31379788,19717905:249894 -k1,609:32583029,19717905:0 -) -(1,610:6630773,20559393:25952256,505283,173670 -k1,609:8180870,20559393:196123 -k1,609:9959032,20559393:196123 -k1,609:11325627,20559393:196122 -k1,609:12513310,20559393:196123 -k1,609:14039814,20559393:196123 -k1,609:16812157,20559393:196123 -k1,609:20049151,20559393:196123 -k1,609:21639224,20559393:196122 -k1,609:22423860,20559393:196123 -k1,609:24458922,20559393:196123 -k1,609:25846490,20559393:196123 -[1,609:25975596,20559393:341312,473825,0 -(1,609:25975596,20421374:341312,335806,0 -) -] -(1,609:26543862,20733063:370934,473825,0 -) -k1,609:27633241,20559393:196123 -k1,609:28727206,20559393:196122 -k1,609:30751783,20559393:196123 -k1,609:31563944,20559393:196123 -k1,609:32583029,20559393:0 -) -(1,610:6630773,21400881:25952256,505283,134348 -k1,609:8453988,21400881:241176 -k1,609:9686724,21400881:241176 -k1,609:13080837,21400881:241176 -k1,609:15910029,21400881:241175 -k1,609:16917321,21400881:241176 -k1,609:18766095,21400881:241176 -k1,609:20198716,21400881:241176 -k1,609:22141862,21400881:241176 -k1,609:22797838,21400881:241133 -k1,609:25197770,21400881:241176 -k1,609:28197356,21400881:241176 -k1,609:29430092,21400881:241176 -k1,609:32583029,21400881:0 -) -(1,610:6630773,22242369:25952256,505283,134348 -k1,609:7661059,22242369:268758 -k1,609:8344590,22242369:268688 -k1,609:9804793,22242369:268758 -k1,609:12831961,22242369:268758 -k1,609:17417576,22242369:268758 -k1,609:18302372,22242369:268758 -k1,609:19590215,22242369:268758 -k1,609:22179602,22242369:268757 -k1,609:24955767,22242369:268758 -k1,609:26122368,22242369:268758 -k1,609:29337625,22242369:268758 -k1,609:30597943,22242369:268758 -k1,610:32583029,22242369:0 -) -(1,610:6630773,23083857:25952256,513147,173670 -k1,609:8203430,23083857:191813 -k1,609:9156772,23083857:191814 -[1,609:9285878,23083857:341312,473825,0 -(1,609:9285878,22945838:341312,335806,0 -) -] -(1,609:9854144,23257527:370934,473825,0 -) -k1,609:12879734,23083857:191813 -k1,609:14090633,23083857:191814 -k1,609:17850226,23083857:191813 -k1,609:19570994,23083857:191813 -k1,609:20959495,23083857:191814 -k1,609:22526909,23083857:191813 -k1,609:25800225,23083857:191813 -k1,609:26983599,23083857:191814 -k1,609:28194497,23083857:191813 -k1,609:30571937,23083857:191814 -k1,609:31379788,23083857:191813 -k1,609:32583029,23083857:0 -) -(1,610:6630773,23925345:25952256,513147,126483 -k1,609:9300437,23925345:252041 -k1,609:10836983,23925345:252040 -k1,609:12564239,23925345:252041 -k1,609:14326229,23925345:252040 -k1,609:17511006,23925345:252041 -k1,609:20601410,23925345:252040 -k1,609:22421072,23925345:252041 -k1,609:23692197,23925345:252040 -k1,609:27020498,23925345:252041 -k1,609:29507971,23925345:252040 -k1,609:31142166,23925345:252041 -k1,609:32370037,23925345:252040 -k1,609:32583029,23925345:0 -) -(1,610:6630773,24766833:25952256,513147,134348 -k1,609:8602229,24766833:236063 -k1,609:10041533,24766833:236063 -k1,609:13589130,24766833:236063 -k1,609:15261087,24766833:236063 -k1,609:18026840,24766833:236063 -k1,609:18475858,24766833:236026 -k1,609:20260537,24766833:236063 -k1,609:21148027,24766833:236062 -k1,609:23099823,24766833:236063 -k1,609:24716730,24766833:236063 -k1,609:26237299,24766833:236063 -k1,609:28174677,24766833:236063 -k1,609:29269262,24766833:236063 -k1,609:30164617,24766833:236063 -k1,609:31896867,24766833:236063 -k1,609:32583029,24766833:0 -) -(1,610:6630773,25608321:25952256,505283,126483 -k1,609:8009957,25608321:208711 -k1,609:9351130,25608321:208711 -k1,609:10584823,25608321:208710 -k1,609:13317325,25608321:208711 -k1,609:14974382,25608321:208711 -k1,609:17643315,25608321:208711 -k1,609:19632638,25608321:208710 -k1,609:20469184,25608321:208711 -k1,609:23517570,25608321:208711 -k1,609:23939263,25608321:208701 -k1,609:25696590,25608321:208711 -k1,609:26556729,25608321:208711 -k1,609:28481172,25608321:208710 -k1,609:30070727,25608321:208711 -k1,609:31563944,25608321:208711 -k1,609:32583029,25608321:0 -) -(1,610:6630773,26449809:25952256,513147,134348 -k1,609:9017971,26449809:228442 -k1,609:12309566,26449809:228442 -k1,609:14406438,26449809:228441 -k1,609:16336195,26449809:228442 -k1,609:17733144,26449809:228442 -k1,609:18644471,26449809:228442 -k1,609:20843581,26449809:228442 -k1,609:21739178,26449809:228441 -k1,609:22382434,26449809:228413 -k1,609:25453172,26449809:228442 -k1,609:27177801,26449809:228442 -k1,609:27937739,26449809:228441 -k1,609:30391128,26449809:228442 -k1,609:32168186,26449809:228442 -k1,610:32583029,26449809:0 -) -(1,610:6630773,27291297:25952256,513147,134348 -k1,609:9348387,27291297:202998 -k1,609:13745034,27291297:202998 -k1,609:14406129,27291297:202998 -k1,609:16330102,27291297:202998 -k1,609:16888960,27291297:202998 -k1,609:17948514,27291297:202998 -k1,609:18810803,27291297:202997 -k1,609:20610258,27291297:202998 -k1,609:21760907,27291297:202998 -k1,609:22931216,27291297:202998 -k1,609:23820376,27291297:202998 -k1,609:26322377,27291297:202998 -k1,609:27211537,27291297:202998 -k1,609:27627523,27291297:202994 -k1,609:28934803,27291297:202998 -k1,609:30366601,27291297:202998 -k1,610:32583029,27291297:0 -) -(1,610:6630773,28132785:25952256,513147,134348 -k1,609:7238504,28132785:192888 -k1,609:8622844,28132785:192895 -k1,609:9581855,28132785:192895 -k1,609:10793834,28132785:192894 -k1,609:13897183,28132785:192895 -k1,609:15603303,28132785:192894 -k1,609:16447626,28132785:192895 -k1,609:18149160,28132785:192895 -k1,609:20094487,28132785:192894 -k1,609:22794789,28132785:192895 -k1,609:24179129,28132785:192895 -k1,609:26014355,28132785:192894 -k1,609:27226335,28132785:192895 -k1,609:29001268,28132785:192894 -k1,609:31069803,28132785:192895 -k1,609:32583029,28132785:0 -) -(1,610:6630773,28974273:25952256,513147,134348 -k1,609:7980241,28974273:217661 -k1,609:10768880,28974273:217662 -k1,609:13284889,28974273:217661 -k1,609:14153978,28974273:217661 -k1,609:15879622,28974273:217661 -k1,609:16555381,28974273:217662 -k1,609:17608626,28974273:217661 -k1,609:18477715,28974273:217661 -k1,609:20076220,28974273:217661 -k1,609:21485327,28974273:217662 -k1,609:22950794,28974273:217661 -k1,609:23827747,28974273:217661 -k1,609:26156323,28974273:217661 -k1,609:27134203,28974273:217662 -k1,609:29087257,28974273:217661 -k1,609:31001645,28974273:217661 -k1,609:32583029,28974273:0 -) -(1,610:6630773,29815761:25952256,513147,126483 -k1,609:8066940,29815761:244722 -k1,609:10803996,29815761:244722 -k1,609:11664757,29815761:244723 -k1,609:13507247,29815761:244722 -k1,609:14978148,29815761:244722 -k1,609:16709882,29815761:244722 -k1,609:17973689,29815761:244722 -k1,609:20641277,29815761:244722 -k1,609:26259297,29815761:244723 -k1,609:29249322,29815761:244722 -k1,609:30685489,29815761:244722 -k1,609:31923737,29815761:244722 -k1,609:32583029,29815761:0 -) -(1,610:6630773,30657249:25952256,513147,134348 -g1,609:10139570,30657249 -g1,609:11330359,30657249 -g1,609:12295704,30657249 -g1,609:15647870,30657249 -k1,610:32583029,30657249:12444632 -g1,610:32583029,30657249 -) -(1,613:6630773,31498737:25952256,513147,134348 -h1,611:6630773,31498737:983040,0,0 -k1,611:10815600,31498737:238904 -k1,611:12073589,31498737:238904 -k1,611:13404978,31498737:238904 -k1,611:14303173,31498737:238903 -k1,611:16238804,31498737:238904 -k1,611:18059092,31498737:238904 -k1,611:18829493,31498737:238904 -k1,611:20422371,31498737:238904 -k1,611:24044243,31498737:238904 -k1,611:25663334,31498737:238903 -k1,611:26893798,31498737:238904 -k1,611:29498552,31498737:238904 -k1,611:30756541,31498737:238904 -k1,611:32583029,31498737:0 -) -(1,613:6630773,32340225:25952256,513147,102891 -k1,611:7486421,32340225:196356 -k1,611:8886018,32340225:196356 -k1,611:10664413,32340225:196356 -k1,611:12052213,32340225:196355 -k1,611:13527176,32340225:196356 -k1,611:16813555,32340225:196356 -k1,611:17625949,32340225:196356 -k1,611:19524275,32340225:196356 -k1,611:21632972,32340225:196356 -k1,611:24933767,32340225:196355 -k1,611:25781551,32340225:196356 -k1,611:27616962,32340225:196356 -k1,611:30815523,32340225:196356 -k1,611:32583029,32340225:0 -) -(1,613:6630773,33181713:25952256,513147,134348 -k1,611:7801630,33181713:191749 -k1,611:9968023,33181713:191793 -k1,611:11943007,33181713:191749 -k1,611:13870149,33181713:191749 -k1,611:14476733,33181713:191741 -k1,611:15284520,33181713:191749 -k1,611:16679510,33181713:191749 -k1,611:18282905,33181713:191749 -k1,611:18830514,33181713:191749 -k1,611:20606268,33181713:191749 -k1,611:23957507,33181713:191748 -k1,611:24816412,33181713:191749 -k1,611:25422997,33181713:191742 -k1,611:26300907,33181713:191748 -k1,611:26848516,33181713:191749 -k1,611:29882561,33181713:191749 -k1,611:31021961,33181713:191749 -k1,613:32583029,33181713:0 -) -(1,613:6630773,34023201:25952256,513147,126483 -g1,611:10437759,34023201 -g1,611:12030939,34023201 -g1,611:13696864,34023201 -g1,611:16446754,34023201 -g1,611:17837428,34023201 -g1,611:21443218,34023201 -g1,611:22173944,34023201 -g1,611:23727147,34023201 -g1,611:26077268,34023201 -k1,613:32583029,34023201:6505761 -g1,613:32583029,34023201 -) -(1,614:6630773,36830769:25952256,32768,229376 -(1,614:6630773,36830769:0,32768,229376 -(1,614:6630773,36830769:5505024,32768,229376 -r1,619:12135797,36830769:5505024,262144,229376 -) -k1,614:6630773,36830769:-5505024 -) -(1,614:6630773,36830769:25952256,32768,0 -r1,619:32583029,36830769:25952256,32768,0 -) -) -(1,614:6630773,38435097:25952256,606339,161218 -(1,614:6630773,38435097:1974731,582746,14155 -g1,614:6630773,38435097 -g1,614:8605504,38435097 -) -g1,614:11737863,38435097 -g1,614:14252873,38435097 -g1,614:15289391,38435097 -g1,614:16903150,38435097 -k1,614:32583029,38435097:15137241 -g1,614:32583029,38435097 -) -(1,617:6630773,39669801:25952256,505283,134348 -k1,616:7651471,39669801:202809 -k1,616:8873364,39669801:202808 -k1,616:10658212,39669801:202809 -k1,616:11392517,39669801:202808 -k1,616:14452040,39669801:202809 -k1,616:16048800,39669801:202809 -k1,616:17270693,39669801:202808 -k1,616:21167766,39669801:202809 -k1,616:22655081,39669801:202809 -k1,616:25236191,39669801:202808 -k1,616:26571462,39669801:202809 -k1,616:27892314,39669801:202808 -k1,616:29591310,39669801:202809 -k1,616:32583029,39669801:0 -) -(1,617:6630773,40511289:25952256,513147,134348 -k1,616:7567613,40511289:250678 -k1,616:8837377,40511289:250679 -k1,616:10500356,40511289:250678 -k1,616:11770119,40511289:250678 -k1,616:13420647,40511289:250679 -k1,616:14841798,40511289:250678 -k1,616:16567691,40511289:250678 -k1,616:17469798,40511289:250679 -k1,616:19863503,40511289:250678 -k1,616:22145143,40511289:250679 -k1,616:23047249,40511289:250678 -k1,616:24317012,40511289:250678 -k1,616:24982482,40511289:250627 -k1,616:27275917,40511289:250678 -k1,616:29929146,40511289:250679 -k1,616:31198909,40511289:250678 -k1,616:32583029,40511289:0 -) -(1,617:6630773,41352777:25952256,505283,126483 -k1,616:9438689,41352777:216622 -k1,616:10125203,41352777:216621 -k1,616:10873322,41352777:216622 -k1,616:12802399,41352777:216621 -k1,616:14303527,41352777:216622 -k1,616:15978979,41352777:216621 -k1,616:18442175,41352777:216622 -k1,616:21643306,41352777:216621 -k1,616:22542813,41352777:216622 -k1,616:25103657,41352777:216621 -k1,616:26421284,41352777:216622 -k1,616:28972297,41352777:216621 -k1,616:31680598,41352777:216622 -k1,617:32583029,41352777:0 -) -(1,617:6630773,42194265:25952256,513147,134348 -k1,616:8185141,42194265:212846 -k1,616:9049416,42194265:212847 -k1,616:9850775,42194265:212846 -k1,616:10541378,42194265:212846 -k1,616:11994166,42194265:212847 -k1,616:12889897,42194265:212846 -k1,616:13568704,42194265:212846 -k1,616:14952024,42194265:212847 -k1,616:16156430,42194265:212846 -k1,616:18771826,42194265:212846 -k1,616:20003758,42194265:212847 -k1,616:21798643,42194265:212846 -k1,616:22820859,42194265:212846 -k1,616:24492537,42194265:212847 -k1,616:26209434,42194265:212846 -k1,616:27592753,42194265:212846 -k1,616:29985983,42194265:212847 -k1,616:32168186,42194265:212846 -k1,617:32583029,42194265:0 -) -(1,617:6630773,43035753:25952256,513147,134348 -k1,616:7532348,43035753:218690 -k1,616:9812801,43035753:218690 -k1,616:12062452,43035753:218690 -k1,616:12932570,43035753:218690 -k1,616:13921963,43035753:218690 -k1,616:16331522,43035753:218690 -k1,616:18929169,43035753:218690 -k1,616:20939613,43035753:218690 -k1,616:23582480,43035753:218690 -k1,616:24484055,43035753:218690 -k1,616:27175418,43035753:218690 -k1,616:28481330,43035753:218670 -k1,616:29804302,43035753:218690 -k1,616:32583029,43035753:0 -) -(1,617:6630773,43877241:25952256,513147,134348 -k1,616:7875920,43877241:226062 -k1,616:9194467,43877241:226062 -k1,616:10087686,43877241:226063 -k1,616:10902261,43877241:226062 -k1,616:12200492,43877241:226062 -k1,616:13192670,43877241:226062 -k1,616:14437817,43877241:226062 -k1,616:16160066,43877241:226062 -k1,616:17002167,43877241:226063 -k1,616:18247314,43877241:226062 -k1,616:21691194,43877241:226062 -k1,616:24665181,43877241:226062 -k1,616:26937277,43877241:226062 -k1,616:28538940,43877241:226062 -k1,616:29857488,43877241:226063 -k1,616:30750706,43877241:226062 -k1,616:31391584,43877241:226035 -k1,616:32583029,43877241:0 -) -(1,617:6630773,44718729:25952256,505283,134348 -g1,616:9740456,44718729 -g1,616:12723654,44718729 -g1,616:15481409,44718729 -g1,616:17734536,44718729 -k1,617:32583029,44718729:11978671 -g1,617:32583029,44718729 -) -(1,619:6630773,45560217:25952256,505283,134348 -h1,618:6630773,45560217:983040,0,0 -k1,618:8057525,45560217:230720 -k1,618:9763493,45560217:230753 -k1,618:12280796,45560217:230752 -k1,618:13282251,45560217:230752 -k1,618:13927814,45560217:230720 -k1,618:16912389,45560217:230752 -k1,618:19301898,45560217:230753 -k1,618:23512650,45560217:230752 -k1,618:27105399,45560217:230752 -k1,618:29771469,45560217:230752 -k1,618:31391584,45560217:230752 -k1,618:32583029,45560217:0 -) -] -(1,619:32583029,45706769:0,0,0 -g1,619:32583029,45706769 -) -) -] -(1,619:6630773,47279633:25952256,0,0 -h1,619:6630773,47279633:25952256,0,0 -) -] -(1,619:4262630,4025873:0,0,0 -[1,619:-473656,4025873:0,0,0 -(1,619:-473656,-710413:0,0,0 -(1,619:-473656,-710413:0,0,0 -g1,619:-473656,-710413 -) -g1,619:-473656,-710413 -) -] -) -] -!24478 -}35 -!11 -{36 -[1,640:4262630,47279633:28320399,43253760,0 -(1,640:4262630,4025873:0,0,0 -[1,640:-473656,4025873:0,0,0 -(1,640:-473656,-710413:0,0,0 -(1,640:-473656,-644877:0,0,0 -k1,640:-473656,-644877:-65536 ) -(1,640:-473656,4736287:0,0,0 -k1,640:-473656,4736287:5209943 ) -g1,640:-473656,-710413 +) +] +[1,855:3078558,4812305:0,0,0 +(1,855:3078558,49800853:0,16384,2228224 +g1,855:29030814,49800853 +g1,855:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,855:36151628,51504789:16384,1179648,0 +) +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 ) ] ) -[1,640:6630773,47279633:25952256,43253760,0 -[1,640:6630773,4812305:25952256,786432,0 -(1,640:6630773,4812305:25952256,505283,134348 -(1,640:6630773,4812305:25952256,505283,134348 -g1,640:3078558,4812305 -[1,640:3078558,4812305:0,0,0 -(1,640:3078558,2439708:0,1703936,0 -k1,640:1358238,2439708:-1720320 -(1,417:1358238,2439708:1720320,1703936,0 -(1,417:1358238,2439708:1179648,16384,0 -r1,640:2537886,2439708:1179648,16384,0 +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,855:37855564,49800853:1179648,16384,0 ) -g1,417:3062174,2439708 -(1,417:3062174,2439708:16384,1703936,0 -[1,417:3062174,2439708:25952256,1703936,0 -(1,417:3062174,1915420:25952256,1179648,0 -(1,417:3062174,1915420:16384,1179648,0 -r1,640:3078558,1915420:16384,1179648,0 ) -k1,417:29014430,1915420:25935872 -g1,417:29014430,1915420 +k1,855:3078556,49800853:-34777008 ) ] +g1,855:6630773,4812305 +k1,855:22348274,4812305:14920583 +g1,855:23970945,4812305 +g1,855:24793421,4812305 +g1,855:27528893,4812305 +g1,855:28938572,4812305 +) +) +] +[1,855:6630773,45706769:25952256,40108032,0 +(1,855:6630773,45706769:25952256,40108032,0 +(1,855:6630773,45706769:0,0,0 +g1,855:6630773,45706769 +) +[1,855:6630773,45706769:25952256,40108032,0 +v1,774:6630773,6254097:0,393216,0 +(1,774:6630773,14832356:25952256,8971475,0 +g1,774:6630773,14832356 +g1,774:6237557,14832356 +r1,855:6368629,14832356:131072,8971475,0 +g1,774:6567858,14832356 +g1,774:6764466,14832356 +[1,774:6764466,14832356:25818563,8971475,0 +v1,749:6764466,6254097:0,393216,0 +(1,758:6764466,9995933:25818563,4135052,196608 +g1,758:6764466,9995933 +g1,758:6764466,9995933 +g1,758:6567858,9995933 +(1,758:6567858,9995933:0,4135052,196608 +r1,855:32779637,9995933:26211779,4331660,196608 +k1,758:6567857,9995933:-26211780 +) +(1,758:6567858,9995933:26211779,4135052,196608 +[1,758:6764466,9995933:25818563,3938444,0 +(1,751:6764466,6465412:25818563,407923,0 +(1,750:6764466,6465412:0,0,0 +g1,750:6764466,6465412 +g1,750:6764466,6465412 +g1,750:6436786,6465412 +(1,750:6436786,6465412:0,0,0 +) +g1,750:6764466,6465412 +) +g1,751:7428374,6465412 +g1,751:8092282,6465412 +h1,751:8424236,6465412:0,0,0 +k1,751:32583028,6465412:24158792 +g1,751:32583028,6465412 +) +(1,752:6764466,7150267:25818563,407923,0 +h1,752:6764466,7150267:0,0,0 +g1,752:7428374,7150267 +g1,752:8092282,7150267 +h1,752:8424236,7150267:0,0,0 +k1,752:32583028,7150267:24158792 +g1,752:32583028,7150267 +) +(1,753:6764466,7835122:25818563,424439,79822 +h1,753:6764466,7835122:0,0,0 +g1,753:7428374,7835122 +g1,753:8092282,7835122 +g1,753:9088144,7835122 +g1,753:9752052,7835122 +h1,753:10084006,7835122:0,0,0 +k1,753:32583030,7835122:22499024 +g1,753:32583030,7835122 +) +(1,754:6764466,8519977:25818563,424439,79822 +h1,754:6764466,8519977:0,0,0 +g1,754:7760328,8519977 +g1,754:8424236,8519977 +g1,754:9752052,8519977 +g1,754:10415960,8519977 +h1,754:10747914,8519977:0,0,0 +k1,754:32583030,8519977:21835116 +g1,754:32583030,8519977 +) +(1,755:6764466,9204832:25818563,407923,9908 +h1,755:6764466,9204832:0,0,0 +g1,755:8424236,9204832 +g1,755:9088144,9204832 +h1,755:9420098,9204832:0,0,0 +k1,755:32583030,9204832:23162932 +g1,755:32583030,9204832 +) +(1,756:6764466,9889687:25818563,424439,106246 +h1,756:6764466,9889687:0,0,0 +k1,756:6764466,9889687:0 +h1,756:9088144,9889687:0,0,0 +k1,756:32583028,9889687:23494884 +g1,756:32583028,9889687 +) +] +) +g1,758:32583029,9995933 +g1,758:6764466,9995933 +g1,758:6764466,9995933 +g1,758:32583029,9995933 +g1,758:32583029,9995933 +) +h1,758:6764466,10192541:0,0,0 +v1,762:6764466,10877396:0,393216,0 +(1,771:6764466,14635748:25818563,4151568,196608 +g1,771:6764466,14635748 +g1,771:6764466,14635748 +g1,771:6567858,14635748 +(1,771:6567858,14635748:0,4151568,196608 +r1,855:32779637,14635748:26211779,4348176,196608 +k1,771:6567857,14635748:-26211780 +) +(1,771:6567858,14635748:26211779,4151568,196608 +[1,771:6764466,14635748:25818563,3954960,0 +(1,764:6764466,11105227:25818563,424439,106246 +(1,763:6764466,11105227:0,0,0 +g1,763:6764466,11105227 +g1,763:6764466,11105227 +g1,763:6436786,11105227 +(1,763:6436786,11105227:0,0,0 +) +g1,763:6764466,11105227 +) +h1,764:7428374,11105227:0,0,0 +k1,764:32583030,11105227:25154656 +g1,764:32583030,11105227 +) +(1,765:6764466,11790082:25818563,424439,106246 +h1,765:6764466,11790082:0,0,0 +k1,765:6764466,11790082:0 +h1,765:9088144,11790082:0,0,0 +k1,765:32583028,11790082:23494884 +g1,765:32583028,11790082 +) +(1,766:6764466,12474937:25818563,424439,112852 +h1,766:6764466,12474937:0,0,0 +k1,766:6764466,12474937:0 +h1,766:9420098,12474937:0,0,0 +k1,766:32583030,12474937:23162932 +g1,766:32583030,12474937 +) +(1,767:6764466,13159792:25818563,424439,112852 +h1,767:6764466,13159792:0,0,0 +k1,767:6764466,13159792:0 +h1,767:10084006,13159792:0,0,0 +k1,767:32583030,13159792:22499024 +g1,767:32583030,13159792 +) +(1,768:6764466,13844647:25818563,424439,112852 +h1,768:6764466,13844647:0,0,0 +k1,768:6764466,13844647:0 +h1,768:9088144,13844647:0,0,0 +k1,768:32583028,13844647:23494884 +g1,768:32583028,13844647 +) +(1,769:6764466,14529502:25818563,424439,106246 +h1,769:6764466,14529502:0,0,0 +k1,769:6764466,14529502:0 +h1,769:8756190,14529502:0,0,0 +k1,769:32583030,14529502:23826840 +g1,769:32583030,14529502 +) +] +) +g1,771:32583029,14635748 +g1,771:6764466,14635748 +g1,771:6764466,14635748 +g1,771:32583029,14635748 +g1,771:32583029,14635748 +) +h1,771:6764466,14832356:0,0,0 +] +g1,774:32583029,14832356 +) +h1,774:6630773,14832356:0,0,0 +(1,777:6630773,15697436:25952256,513147,134348 +h1,776:6630773,15697436:983040,0,0 +k1,776:10840993,15697436:284613 +k1,776:12117167,15697436:284614 +k1,776:13915006,15697436:284613 +k1,776:14851047,15697436:284613 +k1,776:16753090,15697436:284614 +k1,776:19222018,15697436:284613 +k1,776:21151586,15697436:284614 +k1,776:22304551,15697436:284613 +k1,776:24563109,15697436:284613 +k1,776:25203583,15697436:284614 +k1,776:27168539,15697436:284613 +k1,776:28104580,15697436:284613 +k1,776:28745054,15697436:284614 +k1,776:31714677,15697436:284613 +k1,776:32583029,15697436:0 +) +(1,777:6630773,16562516:25952256,513147,126483 +k1,776:8019604,16562516:284549 +k1,776:9396638,16562516:284549 +k1,776:10297225,16562516:284549 +k1,776:11679502,16562516:284549 +k1,776:13460238,16562516:284549 +k1,776:14763872,16562516:284549 +k1,776:16786436,16562516:284549 +k1,776:17730278,16562516:284550 +k1,776:19033912,16562516:284549 +k1,776:21829801,16562516:284549 +k1,776:22730388,16562516:284549 +k1,776:24677585,16562516:284549 +k1,776:25621426,16562516:284549 +k1,776:26925060,16562516:284549 +k1,776:29247779,16562516:284549 +k1,776:31386342,16562516:284549 +k1,776:32583029,16562516:0 +) +(1,777:6630773,17427596:25952256,505283,134348 +k1,776:9191519,17427596:239461 +k1,776:13076748,17427596:239461 +k1,776:16062822,17427596:239460 +k1,776:16833780,17427596:239461 +(1,776:16833780,17427596:0,414482,115847 +r1,855:17543758,17427596:709978,530329,115847 +k1,776:16833780,17427596:-709978 +) +(1,776:16833780,17427596:709978,414482,115847 +k1,776:16833780,17427596:3277 +h1,776:17540481,17427596:0,411205,112570 +) +k1,776:17956889,17427596:239461 +k1,776:18824185,17427596:239461 +k1,776:19652158,17427596:239460 +k1,776:20657735,17427596:239461 +k1,776:23139183,17427596:239461 +k1,776:26359221,17427596:239461 +k1,776:29110021,17427596:239460 +k1,776:31591469,17427596:239461 +k1,776:32583029,17427596:0 +) +(1,777:6630773,18292676:25952256,513147,115847 +k1,776:8251842,18292676:253988 +k1,776:11466091,18292676:253988 +k1,776:14662646,18292676:253988 +(1,776:14662646,18292676:0,414482,115847 +r1,855:15020912,18292676:358266,530329,115847 +k1,776:14662646,18292676:-358266 +) +(1,776:14662646,18292676:358266,414482,115847 +k1,776:14662646,18292676:3277 +h1,776:15017635,18292676:0,411205,112570 +) +k1,776:15274899,18292676:253987 +k1,776:16720332,18292676:253988 +(1,776:16720332,18292676:0,414482,115847 +r1,855:17078598,18292676:358266,530329,115847 +k1,776:16720332,18292676:-358266 +) +(1,776:16720332,18292676:358266,414482,115847 +k1,776:16720332,18292676:3277 +h1,776:17075321,18292676:0,411205,112570 +) +k1,776:17332586,18292676:253988 +k1,776:18578134,18292676:253988 +k1,776:20004561,18292676:253988 +k1,776:23020892,18292676:253988 +k1,776:26290190,18292676:253987 +k1,776:29156443,18292676:253988 +k1,776:31478747,18292676:253988 +k1,776:32583029,18292676:0 +) +(1,777:6630773,19157756:25952256,505283,134348 +k1,776:7668946,19157756:290407 +k1,776:9348062,19157756:290408 +k1,776:10254507,19157756:290407 +k1,776:10959666,19157756:290316 +k1,776:14081228,19157756:290407 +k1,776:14829733,19157756:290408 +k1,776:15651637,19157756:290407 +k1,776:17008316,19157756:290408 +k1,776:17654583,19157756:290407 +k1,776:19528995,19157756:290407 +k1,776:21144541,19157756:290408 +k1,776:22086376,19157756:290407 +k1,776:23469269,19157756:290408 +k1,776:25113650,19157756:290407 +k1,776:26792765,19157756:290407 +k1,776:29325160,19157756:290408 +k1,776:31103890,19157756:290407 +k1,776:31607198,19157756:290316 +k1,776:32583029,19157756:0 +) +(1,777:6630773,20022836:25952256,505283,134348 +k1,776:8587123,20022836:220957 +k1,776:10162054,20022836:220957 +k1,776:12067942,20022836:220957 +k1,776:14530886,20022836:220957 +k1,776:18105976,20022836:220957 +k1,776:19611439,20022836:220957 +k1,776:20363893,20022836:220957 +k1,776:22872057,20022836:220957 +k1,776:24378830,20022836:220957 +k1,776:24955647,20022836:220957 +k1,776:26530578,20022836:220957 +k1,776:27928562,20022836:220957 +k1,776:29648327,20022836:220957 +k1,776:32583029,20022836:0 +) +(1,777:6630773,20887916:25952256,505283,126483 +k1,776:7528313,20887916:281502 +k1,776:8828900,20887916:281502 +k1,776:12102122,20887916:281503 +k1,776:12999662,20887916:281502 +k1,776:14484405,20887916:281502 +k1,776:17183530,20887916:281502 +k1,776:19383927,20887916:281503 +k1,776:20684514,20887916:281502 +k1,776:23004186,20887916:281502 +k1,776:25296333,20887916:281502 +k1,776:27053051,20887916:281503 +k1,776:28143923,20887916:281502 +k1,776:31931601,20887916:281502 +k1,776:32583029,20887916:0 +) +(1,777:6630773,21752996:25952256,505283,126483 +k1,776:7826040,21752996:176182 +k1,776:9198910,21752996:176183 +k1,776:11378528,21752996:176182 +k1,776:13679388,21752996:176183 +k1,776:15923886,21752996:176182 +k1,776:19527602,21752996:176183 +k1,776:21212423,21752996:176182 +k1,776:23966792,21752996:176183 +k1,776:26394791,21752996:176182 +k1,776:27198809,21752996:176183 +k1,776:28394076,21752996:176182 +k1,776:30540927,21752996:176183 +k1,777:32583029,21752996:0 +) +(1,777:6630773,22618076:25952256,505283,126483 +(1,776:6630773,22618076:0,435480,115847 +r1,855:8044174,22618076:1413401,551327,115847 +k1,776:6630773,22618076:-1413401 +) +(1,776:6630773,22618076:1413401,435480,115847 +k1,776:6630773,22618076:3277 +h1,776:8040897,22618076:0,411205,112570 +) +k1,776:8209914,22618076:165740 +k1,776:9567099,22618076:165740 +(1,776:9567099,22618076:0,435480,115847 +r1,855:10980500,22618076:1413401,551327,115847 +k1,776:9567099,22618076:-1413401 +) +(1,776:9567099,22618076:1413401,435480,115847 +k1,776:9567099,22618076:3277 +h1,776:10977223,22618076:0,411205,112570 +) +k1,776:11146240,22618076:165740 +k1,776:12303540,22618076:165740 +k1,776:15672024,22618076:165740 +k1,776:18073198,22618076:165741 +k1,776:20750278,22618076:165740 +k1,776:23158005,22618076:165740 +k1,776:23536704,22618076:165707 +k1,776:25882827,22618076:165740 +k1,776:27523782,22618076:165740 +k1,776:29202748,22618076:165740 +k1,776:31436804,22618076:165740 +k1,777:32583029,22618076:0 +) +(1,777:6630773,23483156:25952256,513147,126483 +(1,776:6630773,23483156:0,452978,122846 +r1,855:9802733,23483156:3171960,575824,122846 +k1,776:6630773,23483156:-3171960 +) +(1,776:6630773,23483156:3171960,452978,122846 +k1,776:6630773,23483156:3277 +h1,776:9799456,23483156:0,411205,112570 +) +k1,776:9936683,23483156:133950 +k1,776:10753517,23483156:133949 +(1,776:10753517,23483156:0,452978,115847 +r1,855:18146019,23483156:7392502,568825,115847 +k1,776:10753517,23483156:-7392502 +) +(1,776:10753517,23483156:7392502,452978,115847 +k1,776:10753517,23483156:3277 +h1,776:18142742,23483156:0,411205,112570 +) +k1,776:18279969,23483156:133950 +k1,776:18879879,23483156:133949 +k1,776:20394017,23483156:133950 +k1,776:21719412,23483156:133950 +k1,776:23363311,23483156:133949 +k1,776:25474482,23483156:133950 +k1,776:26259859,23483156:133949 +k1,776:28602372,23483156:133950 +k1,777:32583029,23483156:0 +k1,777:32583029,23483156:0 +) +(1,779:6630773,24348236:25952256,513147,134348 +h1,778:6630773,24348236:983040,0,0 +k1,778:8430111,24348236:188463 +k1,778:9637660,24348236:188464 +k1,778:11581833,24348236:188463 +k1,778:11983278,24348236:188453 +k1,778:13264227,24348236:188464 +k1,778:15964030,24348236:188463 +k1,778:18220810,24348236:188464 +k1,778:19693779,24348236:188463 +k1,778:21270296,24348236:188464 +k1,778:24550092,24348236:188463 +k1,778:25757641,24348236:188464 +k1,778:27375444,24348236:188463 +k1,778:28223200,24348236:188464 +k1,778:30371189,24348236:188463 +k1,778:32583029,24348236:0 +) +(1,779:6630773,25213316:25952256,505283,134348 +k1,778:7542817,25213316:225882 +k1,778:8971940,25213316:225882 +k1,778:9729319,25213316:225882 +k1,778:11556900,25213316:225881 +k1,778:14355725,25213316:225882 +k1,778:16279645,25213316:225882 +k1,778:19107306,25213316:225882 +k1,778:19921701,25213316:225882 +k1,778:21635906,25213316:225882 +k1,778:22074753,25213316:225855 +k1,778:23393120,25213316:225882 +(1,778:23393120,25213316:0,435480,115847 +r1,855:24806521,25213316:1413401,551327,115847 +k1,778:23393120,25213316:-1413401 +) +(1,778:23393120,25213316:1413401,435480,115847 +k1,778:23393120,25213316:3277 +h1,778:24803244,25213316:0,411205,112570 +) +k1,778:25032403,25213316:225882 +k1,778:27787975,25213316:225882 +k1,778:28629894,25213316:225881 +k1,778:29444289,25213316:225882 +k1,778:30356333,25213316:225882 +k1,778:31450567,25213316:225882 +k1,778:32583029,25213316:0 +) +(1,779:6630773,26078396:25952256,513147,134348 +g1,778:7854985,26078396 +g1,778:8670252,26078396 +g1,778:10367634,26078396 +h1,778:11164552,26078396:0,0,0 +g1,778:11537451,26078396 +g1,778:14356809,26078396 +g1,778:16845866,26078396 +g1,778:18036655,26078396 +g1,778:20365149,26078396 +g1,778:23046226,26078396 +g1,778:24712151,26078396 +g1,778:26609418,26078396 +g1,778:27467939,26078396 +g1,778:29680434,26078396 +k1,779:32583029,26078396:1572214 +g1,779:32583029,26078396 +) +v1,781:6630773,26763251:0,393216,0 +(1,803:6630773,33188588:25952256,6818553,196608 +g1,803:6630773,33188588 +g1,803:6630773,33188588 +g1,803:6434165,33188588 +(1,803:6434165,33188588:0,6818553,196608 +r1,855:32779637,33188588:26345472,7015161,196608 +k1,803:6434165,33188588:-26345472 +) +(1,803:6434165,33188588:26345472,6818553,196608 +[1,803:6630773,33188588:25952256,6621945,0 +(1,783:6630773,26974566:25952256,407923,6605 +(1,782:6630773,26974566:0,0,0 +g1,782:6630773,26974566 +g1,782:6630773,26974566 +g1,782:6303093,26974566 +(1,782:6303093,26974566:0,0,0 +) +g1,782:6630773,26974566 +) +g1,783:8290543,26974566 +g1,783:9286405,26974566 +h1,783:9618359,26974566:0,0,0 +k1,783:32583029,26974566:22964670 +g1,783:32583029,26974566 +) +(1,784:6630773,27659421:25952256,407923,6605 +h1,784:6630773,27659421:0,0,0 +g1,784:8290543,27659421 +g1,784:8954451,27659421 +h1,784:9286405,27659421:0,0,0 +k1,784:32583029,27659421:23296624 +g1,784:32583029,27659421 +) +(1,788:6630773,28475348:25952256,424439,79822 +(1,786:6630773,28475348:0,0,0 +g1,786:6630773,28475348 +g1,786:6630773,28475348 +g1,786:6303093,28475348 +(1,786:6303093,28475348:0,0,0 +) +g1,786:6630773,28475348 +) +g1,788:7626635,28475348 +g1,788:8954451,28475348 +h1,788:9286405,28475348:0,0,0 +k1,788:32583029,28475348:23296624 +g1,788:32583029,28475348 +) +(1,790:6630773,29291275:25952256,407923,6605 +(1,789:6630773,29291275:0,0,0 +g1,789:6630773,29291275 +g1,789:6630773,29291275 +g1,789:6303093,29291275 +(1,789:6303093,29291275:0,0,0 +) +g1,789:6630773,29291275 +) +h1,790:7958589,29291275:0,0,0 +k1,790:32583029,29291275:24624440 +g1,790:32583029,29291275 +) +(1,794:6630773,30107202:25952256,424439,79822 +(1,792:6630773,30107202:0,0,0 +g1,792:6630773,30107202 +g1,792:6630773,30107202 +g1,792:6303093,30107202 +(1,792:6303093,30107202:0,0,0 +) +g1,792:6630773,30107202 +) +g1,794:7626635,30107202 +g1,794:8954451,30107202 +h1,794:9286405,30107202:0,0,0 +k1,794:32583029,30107202:23296624 +g1,794:32583029,30107202 +) +(1,796:6630773,30923129:25952256,407923,9908 +(1,795:6630773,30923129:0,0,0 +g1,795:6630773,30923129 +g1,795:6630773,30923129 +g1,795:6303093,30923129 +(1,795:6303093,30923129:0,0,0 +) +g1,795:6630773,30923129 +) +g1,796:8290543,30923129 +g1,796:9286405,30923129 +h1,796:9950313,30923129:0,0,0 +k1,796:32583029,30923129:22632716 +g1,796:32583029,30923129 +) +(1,797:6630773,31607984:25952256,407923,6605 +h1,797:6630773,31607984:0,0,0 +g1,797:8290543,31607984 +g1,797:9286405,31607984 +g1,797:10946175,31607984 +g1,797:11610083,31607984 +h1,797:12937899,31607984:0,0,0 +k1,797:32583029,31607984:19645130 +g1,797:32583029,31607984 +) +(1,798:6630773,32292839:25952256,407923,6605 +h1,798:6630773,32292839:0,0,0 +h1,798:7958589,32292839:0,0,0 +k1,798:32583029,32292839:24624440 +g1,798:32583029,32292839 +) +(1,802:6630773,33108766:25952256,424439,79822 +(1,800:6630773,33108766:0,0,0 +g1,800:6630773,33108766 +g1,800:6630773,33108766 +g1,800:6303093,33108766 +(1,800:6303093,33108766:0,0,0 +) +g1,800:6630773,33108766 +) +g1,802:7626635,33108766 +g1,802:8954451,33108766 +h1,802:9618359,33108766:0,0,0 +k1,802:32583029,33108766:22964670 +g1,802:32583029,33108766 +) +] +) +g1,803:32583029,33188588 +g1,803:6630773,33188588 +g1,803:6630773,33188588 +g1,803:32583029,33188588 +g1,803:32583029,33188588 +) +h1,803:6630773,33385196:0,0,0 +(1,807:6630773,34250276:25952256,513147,134348 +h1,806:6630773,34250276:983040,0,0 +k1,806:10441408,34250276:158969 +k1,806:11619461,34250276:158968 +k1,806:13516445,34250276:158969 +k1,806:14334706,34250276:158969 +k1,806:14849534,34250276:158968 +k1,806:17519843,34250276:158969 +k1,806:18309924,34250276:158969 +k1,806:19454554,34250276:158969 +k1,806:20063059,34250276:158928 +k1,806:22505958,34250276:158969 +k1,806:25671063,34250276:158969 +k1,806:27260027,34250276:158968 +k1,806:30114492,34250276:158969 +(1,806:30114492,34250276:0,452978,115847 +r1,855:32583029,34250276:2468537,568825,115847 +k1,806:30114492,34250276:-2468537 +) +(1,806:30114492,34250276:2468537,452978,115847 +k1,806:30114492,34250276:3277 +h1,806:32579752,34250276:0,411205,112570 +) +k1,806:32583029,34250276:0 +) +(1,807:6630773,35115356:25952256,505283,134348 +k1,806:10156862,35115356:240769 +k1,806:11416716,35115356:240769 +k1,806:13695655,35115356:240769 +k1,806:15616767,35115356:240769 +k1,806:16666906,35115356:240769 +k1,806:17926760,35115356:240769 +k1,806:20761445,35115356:240770 +k1,806:22198901,35115356:240769 +k1,806:24093143,35115356:240769 +k1,806:26615220,35115356:240769 +k1,806:27507417,35115356:240769 +k1,806:28879993,35115356:240769 +k1,806:30822732,35115356:240769 +k1,807:32583029,35115356:0 +) +(1,807:6630773,35980436:25952256,513147,126483 +k1,806:8505868,35980436:236040 +k1,806:11164775,35980436:236041 +k1,806:12031927,35980436:236040 +k1,806:13253629,35980436:236041 +k1,806:13939210,35980436:236004 +k1,806:16632850,35980436:236040 +(1,806:16632850,35980436:0,452978,115847 +r1,855:19101387,35980436:2468537,568825,115847 +k1,806:16632850,35980436:-2468537 +) +(1,806:16632850,35980436:2468537,452978,115847 +k1,806:16632850,35980436:3277 +h1,806:19098110,35980436:0,411205,112570 +) +k1,806:19337428,35980436:236041 +k1,806:20104965,35980436:236040 +k1,806:23347142,35980436:236041 +k1,806:25450958,35980436:236040 +k1,806:27080950,35980436:236041 +k1,806:28336075,35980436:236040 +k1,806:30414988,35980436:236041 +k1,806:31310320,35980436:236040 +k1,807:32583029,35980436:0 +) +(1,807:6630773,36845516:25952256,505283,134348 +g1,806:8825573,36845516 +g1,806:10043887,36845516 +g1,806:13429476,36845516 +g1,806:14314867,36845516 +g1,806:15302494,36845516 +k1,807:32583029,36845516:14034537 +g1,807:32583029,36845516 +) +v1,809:6630773,37530371:0,393216,0 +(1,834:6630773,43532997:25952256,6395842,196608 +g1,834:6630773,43532997 +g1,834:6630773,43532997 +g1,834:6434165,43532997 +(1,834:6434165,43532997:0,6395842,196608 +r1,855:32779637,43532997:26345472,6592450,196608 +k1,834:6434165,43532997:-26345472 +) +(1,834:6434165,43532997:26345472,6395842,196608 +[1,834:6630773,43532997:25952256,6199234,0 +(1,811:6630773,37741686:25952256,407923,6605 +(1,810:6630773,37741686:0,0,0 +g1,810:6630773,37741686 +g1,810:6630773,37741686 +g1,810:6303093,37741686 +(1,810:6303093,37741686:0,0,0 +) +g1,810:6630773,37741686 +) +h1,811:7958589,37741686:0,0,0 +k1,811:32583029,37741686:24624440 +g1,811:32583029,37741686 +) +(1,815:6630773,38557613:25952256,424439,79822 +(1,813:6630773,38557613:0,0,0 +g1,813:6630773,38557613 +g1,813:6630773,38557613 +g1,813:6303093,38557613 +(1,813:6303093,38557613:0,0,0 +) +g1,813:6630773,38557613 +) +g1,815:7626635,38557613 +g1,815:8954451,38557613 +h1,815:9286405,38557613:0,0,0 +k1,815:32583029,38557613:23296624 +g1,815:32583029,38557613 +) +(1,817:6630773,39373540:25952256,424439,106246 +(1,816:6630773,39373540:0,0,0 +g1,816:6630773,39373540 +g1,816:6630773,39373540 +g1,816:6303093,39373540 +(1,816:6303093,39373540:0,0,0 +) +g1,816:6630773,39373540 +) +k1,817:6630773,39373540:0 +h1,817:10282267,39373540:0,0,0 +k1,817:32583029,39373540:22300762 +g1,817:32583029,39373540 +) +(1,821:6630773,40189467:25952256,424439,79822 +(1,819:6630773,40189467:0,0,0 +g1,819:6630773,40189467 +g1,819:6630773,40189467 +g1,819:6303093,40189467 +(1,819:6303093,40189467:0,0,0 +) +g1,819:6630773,40189467 +) +g1,821:7626635,40189467 +g1,821:8954451,40189467 +h1,821:9286405,40189467:0,0,0 +k1,821:32583029,40189467:23296624 +g1,821:32583029,40189467 +) +(1,823:6630773,41005394:25952256,407923,6605 +(1,822:6630773,41005394:0,0,0 +g1,822:6630773,41005394 +g1,822:6630773,41005394 +g1,822:6303093,41005394 +(1,822:6303093,41005394:0,0,0 +) +g1,822:6630773,41005394 +) +g1,823:8290543,41005394 +g1,823:8954451,41005394 +h1,823:9286405,41005394:0,0,0 +k1,823:32583029,41005394:23296624 +g1,823:32583029,41005394 +) +(1,827:6630773,41821321:25952256,424439,79822 +(1,825:6630773,41821321:0,0,0 +g1,825:6630773,41821321 +g1,825:6630773,41821321 +g1,825:6303093,41821321 +(1,825:6303093,41821321:0,0,0 +) +g1,825:6630773,41821321 +) +g1,827:7626635,41821321 +g1,827:8954451,41821321 +h1,827:9286405,41821321:0,0,0 +k1,827:32583029,41821321:23296624 +g1,827:32583029,41821321 +) +(1,829:6630773,42637248:25952256,424439,106246 +(1,828:6630773,42637248:0,0,0 +g1,828:6630773,42637248 +g1,828:6630773,42637248 +g1,828:6303093,42637248 +(1,828:6303093,42637248:0,0,0 ) +g1,828:6630773,42637248 ) +k1,829:6630773,42637248:0 +g1,829:10282267,42637248 +g1,829:10946175,42637248 +h1,829:11610083,42637248:0,0,0 +k1,829:32583029,42637248:20972946 +g1,829:32583029,42637248 ) -] -[1,640:3078558,4812305:0,0,0 -(1,640:3078558,2439708:0,1703936,0 -g1,640:29030814,2439708 -g1,640:36135244,2439708 -(1,417:36135244,2439708:1720320,1703936,0 -(1,417:36135244,2439708:16384,1703936,0 -[1,417:36135244,2439708:25952256,1703936,0 -(1,417:36135244,1915420:25952256,1179648,0 -(1,417:36135244,1915420:16384,1179648,0 -r1,640:36151628,1915420:16384,1179648,0 +(1,833:6630773,43453175:25952256,424439,79822 +(1,831:6630773,43453175:0,0,0 +g1,831:6630773,43453175 +g1,831:6630773,43453175 +g1,831:6303093,43453175 +(1,831:6303093,43453175:0,0,0 +) +g1,831:6630773,43453175 ) -k1,417:62087500,1915420:25935872 -g1,417:62087500,1915420 +g1,833:7626635,43453175 +g1,833:8954451,43453175 +h1,833:9286405,43453175:0,0,0 +k1,833:32583029,43453175:23296624 +g1,833:32583029,43453175 ) ] ) -g1,417:36675916,2439708 -(1,417:36675916,2439708:1179648,16384,0 -r1,640:37855564,2439708:1179648,16384,0 +g1,834:32583029,43532997 +g1,834:6630773,43532997 +g1,834:6630773,43532997 +g1,834:32583029,43532997 +g1,834:32583029,43532997 ) +h1,834:6630773,43729605:0,0,0 +v1,837:6630773,44594685:0,393216,0 +] +(1,855:32583029,45706769:0,0,0 +g1,855:32583029,45706769 ) -k1,640:3078556,2439708:-34777008 ) ] -[1,640:3078558,4812305:0,0,0 -(1,640:3078558,49800853:0,16384,2228224 -k1,640:1358238,49800853:-1720320 -(1,417:1358238,49800853:1720320,16384,2228224 -(1,417:1358238,49800853:1179648,16384,0 -r1,640:2537886,49800853:1179648,16384,0 +(1,855:6630773,47279633:25952256,0,0 +h1,855:6630773,47279633:25952256,0,0 ) -g1,417:3062174,49800853 -(1,417:3062174,52029077:16384,1703936,0 -[1,417:3062174,52029077:25952256,1703936,0 -(1,417:3062174,51504789:25952256,1179648,0 -(1,417:3062174,51504789:16384,1179648,0 -r1,640:3078558,51504789:16384,1179648,0 +] +(1,855:4262630,4025873:0,0,0 +[1,855:-473656,4025873:0,0,0 +(1,855:-473656,-710413:0,0,0 +(1,855:-473656,-710413:0,0,0 +g1,855:-473656,-710413 ) -k1,417:29014430,51504789:25935872 -g1,417:29014430,51504789 -) -] -) -) -) -] -[1,640:3078558,4812305:0,0,0 -(1,640:3078558,49800853:0,16384,2228224 -g1,640:29030814,49800853 -g1,640:36135244,49800853 -(1,417:36135244,49800853:1720320,16384,2228224 -(1,417:36135244,52029077:16384,1703936,0 -[1,417:36135244,52029077:25952256,1703936,0 -(1,417:36135244,51504789:25952256,1179648,0 -(1,417:36135244,51504789:16384,1179648,0 -r1,640:36151628,51504789:16384,1179648,0 -) -k1,417:62087500,51504789:25935872 -g1,417:62087500,51504789 -) -] -) -g1,417:36675916,49800853 -(1,417:36675916,49800853:1179648,16384,0 -r1,640:37855564,49800853:1179648,16384,0 -) -) -k1,640:3078556,49800853:-34777008 -) -] -g1,640:6630773,4812305 -g1,640:6630773,4812305 -g1,640:9205682,4812305 -g1,640:11846782,4812305 -k1,640:31786110,4812305:19939328 -) -) -] -[1,640:6630773,45706769:25952256,40108032,0 -(1,640:6630773,45706769:25952256,40108032,0 -(1,640:6630773,45706769:0,0,0 -g1,640:6630773,45706769 -) -[1,640:6630773,45706769:25952256,40108032,0 -(1,619:6630773,6254097:25952256,513147,134348 -k1,618:12824198,6254097:183118 -k1,618:15321393,6254097:183119 -k1,618:16452162,6254097:183118 -k1,618:17401396,6254097:183118 -k1,618:19080702,6254097:183119 -k1,618:22255539,6254097:183118 -k1,618:23630102,6254097:183118 -k1,618:26704014,6254097:183119 -k1,618:27503170,6254097:183118 -k1,618:28705373,6254097:183118 -k1,618:30644202,6254097:183119 -k1,618:31297213,6254097:183118 -k1,618:32583029,6254097:0 -) -(1,619:6630773,7095585:25952256,505283,134348 -k1,618:9588974,7095585:256152 -k1,618:11341313,7095585:256152 -k1,618:12788910,7095585:256152 -k1,618:14434425,7095585:256152 -k1,618:15975083,7095585:256152 -k1,618:18277269,7095585:256152 -k1,618:18991518,7095585:256152 -k1,618:21118068,7095585:256152 -k1,618:22025648,7095585:256152 -k1,618:24046029,7095585:256152 -k1,618:25321266,7095585:256152 -k1,618:28487872,7095585:256152 -k1,618:30257250,7095585:256152 -k1,618:31129440,7095585:256152 -k1,618:32583029,7095585:0 -) -(1,619:6630773,7937073:25952256,505283,134348 -k1,618:9770638,7937073:218270 -k1,618:10789104,7937073:218271 -k1,618:12745389,7937073:218270 -k1,618:13495156,7937073:218270 -k1,618:17519756,7937073:218270 -k1,618:18929472,7937073:218271 -k1,618:19679239,7937073:218270 -k1,618:22681478,7937073:218270 -k1,618:25458274,7937073:218270 -k1,618:27730443,7937073:218271 -k1,618:28438113,7937073:224014 -k1,618:29218529,7937073:224015 -k1,618:30530441,7937073:224014 -k1,619:32583029,7937073:0 -) -(1,619:6630773,8778561:25952256,513147,134348 -k1,618:8337659,8778561:267715 -k1,618:9585136,8778561:267714 -k1,618:11114419,8778561:267715 -k1,618:12041425,8778561:267714 -k1,618:14339445,8778561:267715 -k1,618:15847100,8778561:267714 -k1,618:16821948,8778561:267715 -k1,618:18311254,8778561:267715 -k1,618:20337954,8778561:267714 -k1,618:23649161,8778561:267715 -k1,618:25455005,8778561:267714 -k1,618:28089880,8778561:267715 -h1,618:29662089,8778561:0,0,0 -k1,618:29929803,8778561:267714 -k1,618:31030481,8778561:267715 -k1,618:32583029,8778561:0 -) -(1,619:6630773,9620049:25952256,505283,134348 -h1,618:7855641,9620049:0,0,0 -g1,618:8233783,9620049 -g1,618:10482978,9620049 -g1,618:10916171,9620049 -g1,618:13533679,9620049 -g1,618:15147830,9620049 -g1,618:16011594,9620049 -g1,618:18246371,9620049 -g1,618:19671123,9620049 -g1,618:21015921,9620049 -g1,618:21672591,9620049 -g1,618:22329261,9620049 -k1,619:32583029,9620049:7036606 -g1,619:32583029,9620049 -) -v1,621:6630773,10985825:0,393216,0 -(1,622:6630773,14881228:25952256,4288619,0 -g1,622:6630773,14881228 -g1,622:6303093,14881228 -r1,640:6401397,14881228:98304,4288619,0 -g1,622:6600626,14881228 -g1,622:6797234,14881228 -[1,622:6797234,14881228:25785795,4288619,0 -(1,622:6797234,11380928:25785795,788319,218313 -(1,621:6797234,11380928:0,788319,218313 -r1,640:7917113,11380928:1119879,1006632,218313 -k1,621:6797234,11380928:-1119879 -) -(1,621:6797234,11380928:1119879,788319,218313 -) -g1,621:8116342,11380928 -g1,621:8444022,11380928 -g1,621:9840594,11380928 -g1,621:11768008,11380928 -g1,621:13194071,11380928 -g1,621:16615050,11380928 -g1,621:17478814,11380928 -g1,621:20271958,11380928 -g1,621:21528283,11380928 -g1,621:23662790,11380928 -g1,621:24506893,11380928 -g1,621:25526633,11380928 -g1,621:26146603,11380928 -g1,621:29633118,11380928 -k1,621:32583029,11380928:962204 -g1,622:32583029,11380928 -) -(1,622:6797234,12222416:25785795,513147,126484 -k1,621:9244817,12222416:312420 -k1,621:10904001,12222416:312419 -$1,621:10904001,12222416 -k1,621:12879911,12222416:0 -k1,621:13275093,12222416:0 -k1,621:13670275,12222416:0 -k1,621:14065457,12222416:0 -k1,621:15251003,12222416:0 -k1,621:15646185,12222416:0 -(1,621:18412459,12320730:32768,0,0 -) -k1,621:20025955,12222416:0 -k1,621:20421137,12222416:0 -$1,621:22397047,12222416 -k1,621:22709467,12222416:312420 -k1,621:23673315,12222416:312420 -k1,621:25251891,12222416:312420 -k1,621:28791303,12222416:312419 -k1,621:31734338,12222416:312420 -k1,622:32583029,12222416:0 -) -(1,622:6797234,13063904:25785795,513147,134348 -k1,621:8590889,13063904:207684 -k1,621:9450000,13063904:207683 -k1,621:10860925,13063904:207684 -k1,621:12824318,13063904:207683 -k1,621:16012579,13063904:207684 -k1,621:19447255,13063904:207683 -k1,621:20902745,13063904:207684 -k1,621:24032023,13063904:207683 -k1,621:27589907,13063904:207684 -k1,621:31635378,13063904:207683 -k1,621:32583029,13063904:0 -) -(1,622:6797234,13905392:25785795,513147,126483 -k1,621:9740947,13905392:184647 -k1,621:13518279,13905392:184648 -k1,621:14694486,13905392:184647 -k1,621:17729950,13905392:184648 -k1,621:20105466,13905392:184647 -k1,621:20902875,13905392:184647 -k1,621:22290764,13905392:184648 -k1,621:23666856,13905392:184647 -k1,621:25553474,13905392:184648 -k1,621:27377832,13905392:184647 -k1,621:28248642,13905392:184648 -k1,621:30130016,13905392:184647 -k1,622:32583029,13905392:0 -) -(1,622:6797234,14746880:25785795,513147,134348 -g1,621:8594231,14746880 -g1,621:9785020,14746880 -g1,621:11696705,14746880 -g1,621:12547362,14746880 -g1,621:14987267,14746880 -g1,621:16699722,14746880 -g1,621:17918036,14746880 -g1,621:21716502,14746880 -g1,621:22575023,14746880 -g1,621:23793337,14746880 -k1,622:32583029,14746880:7033982 -g1,622:32583029,14746880 -) -] -g1,622:32583029,14881228 -) -h1,622:6630773,14881228:0,0,0 -v1,625:6630773,16247004:0,393216,0 -(1,628:6630773,25906338:25952256,10052550,0 -g1,628:6630773,25906338 -g1,628:6303093,25906338 -r1,640:6401397,25906338:98304,10052550,0 -g1,628:6600626,25906338 -g1,628:6797234,25906338 -[1,628:6797234,25906338:25785795,10052550,0 -(1,626:6797234,16642107:25785795,788319,218313 -(1,625:6797234,16642107:0,788319,218313 -r1,640:7917113,16642107:1119879,1006632,218313 -k1,625:6797234,16642107:-1119879 -) -(1,625:6797234,16642107:1119879,788319,218313 -) -g1,625:8116342,16642107 -g1,625:8444022,16642107 -g1,625:10152545,16642107 -g1,625:11188669,16642107 -g1,625:11621862,16642107 -g1,625:13856639,16642107 -g1,625:15112964,16642107 -g1,625:15769634,16642107 -g1,625:18801985,16642107 -g1,625:19648054,16642107 -g1,625:20914865,16642107 -k1,625:32583029,16642107:8162643 -g1,626:32583029,16642107 -) -(1,626:6797234,17483595:25785795,513147,134348 -k1,625:10653377,17483595:251663 -k1,625:11572196,17483595:251663 -k1,625:12238649,17483595:251610 -k1,625:14370540,17483595:251663 -k1,625:17984200,17483595:251663 -k1,625:19045233,17483595:251663 -k1,625:20315980,17483595:251662 -k1,625:23621621,17483595:251663 -k1,625:26119203,17483595:251663 -k1,625:27562311,17483595:251663 -k1,625:30890234,17483595:251663 -k1,626:32583029,17483595:0 -) -(1,626:6797234,18325083:25785795,513147,134348 -k1,625:8766029,18325083:282554 -k1,625:10240027,18325083:282553 -k1,625:11054078,18325083:282554 -k1,625:11952670,18325083:282554 -k1,625:14568306,18325083:282554 -k1,625:17052869,18325083:282553 -k1,625:17986851,18325083:282554 -k1,625:19553911,18325083:282554 -k1,625:20495756,18325083:282553 -k1,625:22480280,18325083:282554 -k1,625:25521900,18325083:282554 -k1,625:27690580,18325083:282554 -k1,625:28328993,18325083:282553 -k1,625:30306308,18325083:282554 -k1,626:32583029,18325083:0 -) -(1,626:6797234,19166571:25785795,513147,134348 -k1,625:8054512,19166571:267029 -k1,625:10567461,19166571:267030 -k1,625:14789588,19166571:267029 -k1,625:16098639,19166571:267029 -k1,625:17967369,19166571:267030 -k1,625:19950786,19166571:267029 -k1,625:20877108,19166571:267030 -k1,625:24220397,19166571:267029 -k1,625:27479800,19166571:267029 -k1,625:28765915,19166571:267030 -k1,625:31377167,19166571:267029 -k1,626:32583029,19166571:0 -) -(1,626:6797234,20008059:25785795,513147,134348 -k1,625:8395235,20008059:257134 -k1,625:9319525,20008059:257134 -k1,625:9991444,20008059:257076 -k1,625:10780075,20008059:257134 -k1,625:13821178,20008059:257134 -k1,625:16636838,20008059:257134 -k1,625:17913057,20008059:257134 -k1,625:23109640,20008059:257134 -k1,625:23781559,20008059:257076 -k1,625:26468768,20008059:257134 -k1,625:29418776,20008059:257134 -k1,625:31970267,20008059:257076 -k1,625:32583029,20008059:0 -) -(1,626:6797234,20849547:25785795,513147,134349 -k1,625:8773144,20849547:0 -k1,625:9168326,20849547:0 -k1,625:9563508,20849547:0 -k1,625:9958690,20849547:0 -k1,625:11539418,20849547:0 -k1,625:11934600,20849547:0 -(1,625:12724964,20947861:32768,0,0 -) -k1,625:15524006,20849547:0 -k1,625:15919188,20849547:0 -$1,625:17499916,20849547 -k1,625:17880516,20849547:206930 -k1,625:21218757,20849547:206931 -k1,625:22041725,20849547:206930 -k1,625:23267740,20849547:206930 -k1,625:24841752,20849547:206931 -k1,625:25707974,20849547:206930 -k1,625:27675857,20849547:206931 -k1,625:32168186,20849547:206930 -k1,626:32583029,20849547:0 -) -(1,626:6797234,21691035:25785795,513147,134348 -k1,625:8112303,21691035:210787 -k1,625:11628072,21691035:210788 -k1,625:12586625,21691035:210787 -k1,625:15534852,21691035:210788 -k1,625:16431801,21691035:210787 -k1,625:16998449,21691035:210788 -k1,625:20806507,21691035:210787 -k1,625:21676587,21691035:210788 -k1,625:22906459,21691035:210787 -k1,625:26171225,21691035:210788 -k1,625:28627931,21691035:210787 -k1,625:32583029,21691035:0 -) -(1,626:6797234,22532523:25785795,513147,126483 -k1,625:8857739,22532523:228118 -k1,625:10077417,22532523:228118 -k1,625:11997674,22532523:228117 -k1,625:15811267,22532523:228118 -k1,625:17532951,22532523:228118 -k1,625:18447231,22532523:228118 -k1,625:19694433,22532523:228117 -k1,625:21374828,22532523:228118 -k1,625:25384373,22532523:228118 -k1,625:26279647,22532523:228118 -k1,625:26922578,22532523:228088 -k1,625:28098347,22532523:228118 -k1,625:29345550,22532523:228118 -k1,625:32583029,22532523:0 -) -(1,626:6797234,23374011:25785795,505283,134349 -g1,625:7746850,23374011 -g1,625:9831550,23374011 -g1,625:10562276,23374011 -g1,625:14350256,23374011 -g1,625:19122587,23374011 -$1,625:19329681,23374011 -g1,625:21305591,23374011 -g1,625:21700773,23374011 -g1,625:22095955,23374011 -g1,625:22491137,23374011 -g1,625:24071865,23374011 -g1,625:24467047,23374011 -$1,625:26047775,23374011 -k1,626:32583029,23374011:6154490 -g1,626:32583029,23374011 -) -(1,628:6797234,24215499:25785795,513147,134348 -h1,627:6797234,24215499:983040,0,0 -k1,627:10925740,24215499:198312 -k1,627:12071703,24215499:198312 -k1,627:14204638,24215499:198312 -k1,627:17291777,24215499:198312 -k1,627:18681534,24215499:198312 -k1,627:20997313,24215499:198311 -k1,627:22187185,24215499:198312 -k1,627:25169466,24215499:198312 -k1,627:27926304,24215499:198312 -k1,627:30004843,24215499:198311 -$1,627:30211937,24215499 -k1,627:32187847,24215499:0 -k1,628:32583029,24215499:0 -) -(1,628:6797234,25056987:25785795,513147,134349 -k1,627:7192416,25056987:0 -k1,627:7587598,25056987:0 -k1,627:9168326,25056987:0 -k1,627:9563508,25056987:0 -(1,627:10353872,25155301:32768,0,0 -) -k1,627:13152914,25056987:0 -k1,627:13548096,25056987:0 -$1,627:15128824,25056987 -k1,627:15515768,25056987:179850 -k1,627:18376040,25056987:179849 -k1,627:19949841,25056987:179850 -k1,627:21631775,25056987:179849 -k1,627:22883794,25056987:179850 -k1,627:26357482,25056987:179849 -k1,627:30130016,25056987:179850 -k1,628:32583029,25056987:0 -) -(1,628:6797234,25898475:25785795,473825,7863 -k1,628:32583028,25898475:24014356 -g1,628:32583028,25898475 -) -] -g1,628:32583029,25906338 -) -h1,628:6630773,25906338:0,0,0 -v1,631:6630773,27272114:0,393216,0 -(1,632:6630773,32001140:25952256,5122242,0 -g1,632:6630773,32001140 -g1,632:6303093,32001140 -r1,640:6401397,32001140:98304,5122242,0 -g1,632:6600626,32001140 -g1,632:6797234,32001140 -[1,632:6797234,32001140:25785795,5122242,0 -(1,632:6797234,27667217:25785795,788319,218313 -(1,631:6797234,27667217:0,788319,218313 -r1,640:7917113,27667217:1119879,1006632,218313 -k1,631:6797234,27667217:-1119879 -) -(1,631:6797234,27667217:1119879,788319,218313 -) -g1,631:8116342,27667217 -g1,631:8444022,27667217 -g1,631:10152545,27667217 -g1,631:11188669,27667217 -g1,631:11621862,27667217 -g1,631:13856639,27667217 -g1,631:15112964,27667217 -g1,631:17906108,27667217 -g1,631:19253528,27667217 -g1,631:20099597,27667217 -g1,631:21366408,27667217 -k1,631:32583029,27667217:7711100 -g1,632:32583029,27667217 -) -(1,632:6797234,28508705:25785795,505283,126484 -k1,631:9357562,28508705:136151 -k1,631:12429071,28508705:136151 -k1,631:13556782,28508705:136151 -k1,631:16476902,28508705:136151 -k1,631:17225816,28508705:136152 -k1,631:19424385,28508705:136151 -k1,631:20829313,28508705:136151 -k1,631:22101203,28508705:136151 -$1,631:22308297,28508705 -k1,631:24284207,28508705:0 -k1,631:24679389,28508705:0 -k1,631:25074571,28508705:0 -k1,631:25469753,28508705:0 -k1,631:27445663,28508705:0 -k1,631:27840845,28508705:0 -k1,631:28631209,28508705:0 -k1,631:29026391,28508705:0 -k1,631:32187847,28508705:0 -k1,632:32583029,28508705:0 -) -(1,632:6797234,29350193:25785795,513147,134348 -(1,631:8773144,29448507:32768,0,0 -) -k1,631:11177004,29350193:0 -k1,631:11572186,29350193:0 -$1,631:14733642,29350193 -k1,631:15074132,29350193:133396 -k1,631:15866819,29350193:133395 -k1,631:17885686,29350193:133396 -k1,631:19038166,29350193:133395 -k1,631:20419368,29350193:133396 -k1,631:22886500,29350193:133395 -k1,631:23551393,29350193:133396 -k1,631:26196783,29350193:133395 -k1,631:27277830,29350193:133396 -k1,631:29934361,29350193:133395 -k1,631:31086842,29350193:133396 -k1,631:32583029,29350193:0 -) -(1,632:6797234,30191681:25785795,513147,126483 -k1,631:9949606,30191681:160653 -k1,631:11301704,30191681:160653 -k1,631:14353150,30191681:160653 -k1,631:15129841,30191681:160653 -k1,631:16309579,30191681:160653 -k1,631:18225942,30191681:160653 -k1,631:19014430,30191681:160653 -k1,631:20926860,30191681:160653 -k1,631:22784895,30191681:160653 -k1,631:23964633,30191681:160653 -k1,631:24772744,30191681:160615 -k1,631:26362082,30191681:160653 -k1,631:27135497,30191681:160653 -k1,631:28754981,30191681:160653 -k1,631:31900144,30191681:160653 -k1,631:32583029,30191681:0 -) -(1,632:6797234,31033169:25785795,513147,126483 -k1,631:9068662,31033169:198524 -k1,631:10399647,31033169:198523 -k1,631:12567528,31033169:198524 -k1,631:14578778,31033169:198524 -k1,631:15460186,31033169:198523 -k1,631:17038898,31033169:198524 -k1,631:18574356,31033169:198524 -k1,631:19520646,31033169:198524 -k1,631:22053561,31033169:198523 -k1,631:25010495,31033169:198524 -k1,631:25825057,31033169:198524 -k1,631:27042665,31033169:198523 -k1,631:29506769,31033169:198524 -k1,631:32583029,31033169:0 -) -(1,632:6797234,31874657:25785795,426639,126483 -k1,632:32583028,31874657:23841996 -g1,632:32583028,31874657 -) -] -g1,632:32583029,32001140 -) -h1,632:6630773,32001140:0,0,0 -v1,635:6630773,33366916:0,393216,0 -(1,636:6630773,37262319:25952256,4288619,0 -g1,636:6630773,37262319 -g1,636:6303093,37262319 -r1,640:6401397,37262319:98304,4288619,0 -g1,636:6600626,37262319 -g1,636:6797234,37262319 -[1,636:6797234,37262319:25785795,4288619,0 -(1,636:6797234,33762019:25785795,788319,218313 -(1,635:6797234,33762019:0,788319,218313 -r1,640:7917113,33762019:1119879,1006632,218313 -k1,635:6797234,33762019:-1119879 -) -(1,635:6797234,33762019:1119879,788319,218313 -) -g1,635:8116342,33762019 -g1,635:8444022,33762019 -g1,635:10152545,33762019 -g1,635:11504552,33762019 -g1,635:11937745,33762019 -g1,635:13158025,33762019 -g1,635:15491106,33762019 -g1,635:16354870,33762019 -g1,635:19148014,33762019 -g1,635:20060275,33762019 -g1,635:20629127,33762019 -g1,635:22661398,33762019 -k1,635:32583029,33762019:7209751 -g1,636:32583029,33762019 -) -(1,636:6797234,34603507:25785795,513147,134348 -k1,635:7920696,34603507:221031 -k1,635:11702298,34603507:221031 -k1,635:13207835,34603507:221031 -k1,635:13960363,34603507:221031 -k1,635:15535368,34603507:221031 -k1,635:17035006,34603507:221031 -k1,635:19227360,34603507:221031 -k1,635:20396043,34603507:221032 -k1,635:23056324,34603507:221031 -k1,635:23960240,34603507:221031 -k1,635:26783050,34603507:221031 -k1,635:27690243,34603507:221031 -k1,635:29233135,34603507:221031 -k1,635:30113458,34603507:221031 -k1,635:30690349,34603507:221031 -k1,635:32583029,34603507:0 -) -(1,636:6797234,35444995:25785795,505283,126484 -k1,635:7557816,35444995:229085 -k1,635:8805986,35444995:229085 -k1,635:11459247,35444995:229084 -k1,635:13457149,35444995:229085 -k1,635:16065191,35444995:229085 -k1,635:18848869,35444995:229085 -k1,635:21872408,35444995:229084 -k1,635:23659939,35444995:229085 -k1,635:25657841,35444995:229085 -$1,635:25864935,35444995 -k1,635:27840845,35444995:0 -k1,635:28236027,35444995:0 -k1,635:28631209,35444995:0 -k1,635:29026391,35444995:0 -k1,635:31002301,35444995:0 -k1,635:31397483,35444995:0 -k1,635:32187847,35444995:0 -k1,636:32583029,35444995:0 -) -(1,636:6797234,36286483:25785795,513147,126484 -k1,635:9958690,36286483:0 -k1,635:10353872,36286483:0 -k1,635:12329782,36286483:0 -k1,635:12724964,36286483:0 -$1,635:15096056,36286483 -k1,635:15784250,36286483:307430 -k1,635:17133701,36286483:307429 -k1,635:20634045,36286483:307430 -k1,635:22033960,36286483:307430 -k1,635:22697250,36286483:307430 -k1,635:24252485,36286483:307429 -k1,635:27064046,36286483:307430 -k1,635:27902973,36286483:307430 -k1,635:28826440,36286483:307429 -k1,635:30885647,36286483:307430 -k1,635:32583029,36286483:0 -) -(1,636:6797234,37127971:25785795,513147,134348 -g1,635:9357070,37127971 -g1,635:10747744,37127971 -g1,635:11894624,37127971 -g1,635:14316834,37127971 -g1,635:14871923,37127971 -g1,635:16191818,37127971 -g1,635:17706355,37127971 -g1,635:20753779,37127971 -g1,635:23457139,37127971 -g1,635:25583126,37127971 -g1,635:27136329,37127971 -k1,636:32583029,37127971:3994422 -g1,636:32583029,37127971 -) -] -g1,636:32583029,37262319 -) -h1,636:6630773,37262319:0,0,0 -(1,638:6630773,40069887:25952256,32768,229376 -(1,638:6630773,40069887:0,32768,229376 -(1,638:6630773,40069887:5505024,32768,229376 -r1,640:12135797,40069887:5505024,262144,229376 -) -k1,638:6630773,40069887:-5505024 -) -(1,638:6630773,40069887:25952256,32768,0 -r1,640:32583029,40069887:25952256,32768,0 -) -) -(1,638:6630773,41674215:25952256,606339,161218 -(1,638:6630773,41674215:1974731,582746,14155 -g1,638:6630773,41674215 -g1,638:8605504,41674215 -) -g1,638:11813360,41674215 -k1,638:32583030,41674215:17773364 -g1,638:32583030,41674215 -) -(1,640:6630773,42908919:25952256,513147,134348 -k1,639:10672004,42908919:247352 -k1,639:11867006,42908919:247351 -k1,639:14389768,42908919:247352 -k1,639:17039669,42908919:247351 -k1,639:18278581,42908919:247352 -k1,639:21916765,42908919:247351 -k1,639:22973487,42908919:247352 -k1,639:24551219,42908919:247351 -k1,639:25969044,42908919:247352 -k1,639:27612967,42908919:247351 -k1,639:28511747,42908919:247352 -k1,639:29851583,42908919:247351 -k1,639:30687448,42908919:247352 -k1,639:31412556,42908919:247351 -k1,639:32583029,42908919:0 -) -(1,640:6630773,43750407:25952256,513147,134348 -k1,639:9510097,43750407:217907 -k1,639:12334371,43750407:217907 -k1,639:15075415,43750407:217908 -k1,639:17054930,43750407:217907 -k1,639:18624845,43750407:217907 -k1,639:20728878,43750407:217907 -k1,639:22699873,43750407:217907 -k1,639:23600665,43750407:217907 -k1,639:25443865,43750407:217908 -k1,639:26832245,43750407:217907 -k1,639:29006402,43750407:217907 -k1,639:31015408,43750407:217907 -k1,639:32583029,43750407:0 -) -(1,640:6630773,44591895:25952256,505283,134348 -k1,639:9500058,44591895:267506 -k1,639:10418992,44591895:267506 -k1,639:12301305,44591895:267506 -k1,639:14071552,44591895:267506 -k1,639:16674106,44591895:267506 -k1,639:19469990,44591895:267505 -k1,639:21252033,44591895:267506 -k1,639:22051036,44591895:267506 -k1,639:24375062,44591895:267506 -k1,639:26155794,44591895:267506 -k1,639:29751218,44591895:267506 -k1,639:32583029,44591895:0 -) -(1,640:6630773,45433383:25952256,513147,126483 -k1,639:7814453,45433383:198019 -k1,639:9503417,45433383:198020 -k1,639:11226458,45433383:198019 -k1,639:14382773,45433383:198020 -k1,639:15772237,45433383:198019 -k1,639:19377474,45433383:198020 -k1,639:21376422,45433383:198019 -k1,639:22678724,45433383:198020 -k1,639:23624509,45433383:198019 -k1,639:28550952,45433383:198020 -k1,639:29226728,45433383:198019 -k1,639:30595221,45433383:198020 -k1,639:31970267,45433383:198019 -k1,639:32583029,45433383:0 -) -] -(1,640:32583029,45706769:0,0,0 -g1,640:32583029,45706769 -) -) -] -(1,640:6630773,47279633:25952256,0,0 -h1,640:6630773,47279633:25952256,0,0 -) -] -(1,640:4262630,4025873:0,0,0 -[1,640:-473656,4025873:0,0,0 -(1,640:-473656,-710413:0,0,0 -(1,640:-473656,-710413:0,0,0 -g1,640:-473656,-710413 -) -g1,640:-473656,-710413 -) -] -) -] -!22732 -}36 -!11 -{37 -[1,651:4262630,47279633:28320399,43253760,0 -(1,651:4262630,4025873:0,0,0 -[1,651:-473656,4025873:0,0,0 -(1,651:-473656,-710413:0,0,0 -(1,651:-473656,-644877:0,0,0 -k1,651:-473656,-644877:-65536 +g1,855:-473656,-710413 +) +] +) +] +!24799 +}41 +Input:277:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:278:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:279:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:280:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:281:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:282:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:283:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:284:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!755 +{42 +[1,928:4262630,47279633:28320399,43253760,0 +(1,928:4262630,4025873:0,0,0 +[1,928:-473656,4025873:0,0,0 +(1,928:-473656,-710413:0,0,0 +(1,928:-473656,-644877:0,0,0 +k1,928:-473656,-644877:-65536 ) -(1,651:-473656,4736287:0,0,0 -k1,651:-473656,4736287:5209943 +(1,928:-473656,4736287:0,0,0 +k1,928:-473656,4736287:5209943 ) -g1,651:-473656,-710413 +g1,928:-473656,-710413 ) ] ) -[1,651:6630773,47279633:25952256,43253760,0 -[1,651:6630773,4812305:25952256,786432,0 -(1,651:6630773,4812305:25952256,505283,134348 -(1,651:6630773,4812305:25952256,505283,134348 -g1,651:3078558,4812305 -[1,651:3078558,4812305:0,0,0 -(1,651:3078558,2439708:0,1703936,0 -k1,651:1358238,2439708:-1720320 -(1,417:1358238,2439708:1720320,1703936,0 -(1,417:1358238,2439708:1179648,16384,0 -r1,651:2537886,2439708:1179648,16384,0 +[1,928:6630773,47279633:25952256,43253760,0 +[1,928:6630773,4812305:25952256,786432,0 +(1,928:6630773,4812305:25952256,505283,7863 +(1,928:6630773,4812305:25952256,505283,7863 +g1,928:3078558,4812305 +[1,928:3078558,4812305:0,0,0 +(1,928:3078558,2439708:0,1703936,0 +k1,928:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,928:2537886,2439708:1179648,16384,0 ) -g1,417:3062174,2439708 -(1,417:3062174,2439708:16384,1703936,0 -[1,417:3062174,2439708:25952256,1703936,0 -(1,417:3062174,1915420:25952256,1179648,0 -(1,417:3062174,1915420:16384,1179648,0 -r1,651:3078558,1915420:16384,1179648,0 +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,928:3078558,1915420:16384,1179648,0 ) -k1,417:29014430,1915420:25935872 -g1,417:29014430,1915420 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) ] ) ) ) ] -[1,651:3078558,4812305:0,0,0 -(1,651:3078558,2439708:0,1703936,0 -g1,651:29030814,2439708 -g1,651:36135244,2439708 -(1,417:36135244,2439708:1720320,1703936,0 -(1,417:36135244,2439708:16384,1703936,0 -[1,417:36135244,2439708:25952256,1703936,0 -(1,417:36135244,1915420:25952256,1179648,0 -(1,417:36135244,1915420:16384,1179648,0 -r1,651:36151628,1915420:16384,1179648,0 +[1,928:3078558,4812305:0,0,0 +(1,928:3078558,2439708:0,1703936,0 +g1,928:29030814,2439708 +g1,928:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,928:36151628,1915420:16384,1179648,0 ) -k1,417:62087500,1915420:25935872 -g1,417:62087500,1915420 +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) ] ) -g1,417:36675916,2439708 -(1,417:36675916,2439708:1179648,16384,0 -r1,651:37855564,2439708:1179648,16384,0 +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,928:37855564,2439708:1179648,16384,0 ) ) -k1,651:3078556,2439708:-34777008 +k1,928:3078556,2439708:-34777008 ) ] -[1,651:3078558,4812305:0,0,0 -(1,651:3078558,49800853:0,16384,2228224 -k1,651:1358238,49800853:-1720320 -(1,417:1358238,49800853:1720320,16384,2228224 -(1,417:1358238,49800853:1179648,16384,0 -r1,651:2537886,49800853:1179648,16384,0 +[1,928:3078558,4812305:0,0,0 +(1,928:3078558,49800853:0,16384,2228224 +k1,928:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,928:2537886,49800853:1179648,16384,0 ) -g1,417:3062174,49800853 -(1,417:3062174,52029077:16384,1703936,0 -[1,417:3062174,52029077:25952256,1703936,0 -(1,417:3062174,51504789:25952256,1179648,0 -(1,417:3062174,51504789:16384,1179648,0 -r1,651:3078558,51504789:16384,1179648,0 +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,928:3078558,51504789:16384,1179648,0 ) -k1,417:29014430,51504789:25935872 -g1,417:29014430,51504789 -) -] -) -) -) -] -[1,651:3078558,4812305:0,0,0 -(1,651:3078558,49800853:0,16384,2228224 -g1,651:29030814,49800853 -g1,651:36135244,49800853 -(1,417:36135244,49800853:1720320,16384,2228224 -(1,417:36135244,52029077:16384,1703936,0 -[1,417:36135244,52029077:25952256,1703936,0 -(1,417:36135244,51504789:25952256,1179648,0 -(1,417:36135244,51504789:16384,1179648,0 -r1,651:36151628,51504789:16384,1179648,0 -) -k1,417:62087500,51504789:25935872 -g1,417:62087500,51504789 -) -] -) -g1,417:36675916,49800853 -(1,417:36675916,49800853:1179648,16384,0 -r1,651:37855564,49800853:1179648,16384,0 -) -) -k1,651:3078556,49800853:-34777008 -) -] -g1,651:6630773,4812305 -k1,651:21916392,4812305:14488701 -g1,651:22703479,4812305 -g1,651:23888369,4812305 -g1,651:27214321,4812305 -g1,651:28624000,4812305 -g1,651:29808890,4812305 -) -) -] -[1,651:6630773,45706769:25952256,40108032,0 -(1,651:6630773,45706769:25952256,40108032,0 -(1,651:6630773,45706769:0,0,0 -g1,651:6630773,45706769 -) -[1,651:6630773,45706769:25952256,40108032,0 -(1,640:6630773,6254097:25952256,513147,134348 -k1,639:9065314,6254097:176826 -k1,639:9656960,6254097:176803 -k1,639:11329973,6254097:176826 -k1,639:12791304,6254097:176825 -k1,639:13499627,6254097:176826 -k1,639:15435439,6254097:176826 -k1,639:16263692,6254097:176825 -k1,639:17188284,6254097:176826 -k1,639:19687706,6254097:176826 -k1,639:21055976,6254097:176825 -k1,639:22708017,6254097:176826 -k1,639:24576982,6254097:176825 -k1,639:28065342,6254097:176826 -k1,639:29636119,6254097:176826 -k1,639:30440123,6254097:176825 -k1,639:31900144,6254097:176826 -k1,640:32583029,6254097:0 -) -(1,640:6630773,7095585:25952256,513147,134348 -k1,639:8259044,7095585:187790 -k1,639:10849385,7095585:187791 -k1,639:12224687,7095585:187790 -k1,639:14898259,7095585:187791 -k1,639:15702087,7095585:187790 -k1,639:20289965,7095585:187791 -k1,639:23960338,7095585:187790 -k1,639:25339574,7095585:187791 -k1,639:26843982,7095585:187790 -k1,639:28832702,7095585:187791 -k1,639:30152954,7095585:187790 -k1,639:32583029,7095585:0 -) -(1,640:6630773,7937073:25952256,513147,134348 -k1,639:7204570,7937073:217937 -k1,639:9590438,7937073:217937 -k1,639:16870534,7937073:217936 -k1,639:18515190,7937073:217937 -k1,639:19392419,7937073:217937 -k1,639:23962602,7937073:217937 -k1,639:24866701,7937073:217937 -k1,639:25855341,7937073:217937 -k1,639:28397184,7937073:217936 -k1,639:29806566,7937073:217937 -k1,639:31412556,7937073:217937 -k1,639:32583029,7937073:0 -) -(1,640:6630773,8778561:25952256,513147,126483 -k1,639:8975569,8778561:146063 -k1,639:10140718,8778561:146064 -k1,639:14475187,8778561:146063 -k1,639:16424145,8778561:146063 -k1,639:17229501,8778561:146064 -k1,639:18394649,8778561:146063 -k1,639:20383585,8778561:146064 -k1,639:21726335,8778561:146063 -k1,639:24119628,8778561:146063 -k1,639:24932848,8778561:146064 -k1,639:25667424,8778561:146063 -k1,639:27004932,8778561:146063 -k1,639:27939394,8778561:146064 -k1,639:30549611,8778561:146063 -k1,639:31378560,8778561:146064 -k1,639:32051532,8778561:146063 -k1,639:32583029,8778561:0 -) -(1,640:6630773,9620049:25952256,513147,134348 -k1,639:8132707,9620049:166966 -k1,639:9576969,9620049:166965 -k1,639:10505463,9620049:166966 -k1,639:12416341,9620049:166965 -k1,639:13913688,9620049:166966 -k1,639:15584704,9620049:166965 -k1,639:18449787,9620049:166966 -k1,639:19229514,9620049:166965 -k1,639:20954271,9620049:166966 -k1,639:23116152,9620049:166965 -k1,639:23942410,9620049:166966 -k1,639:24897773,9620049:166965 -k1,639:29370454,9620049:166966 -k1,639:32583029,9620049:0 -) -(1,640:6630773,10461537:25952256,505283,126483 -g1,639:8804602,10461537 -g1,639:11543351,10461537 -g1,639:12314709,10461537 -g1,639:13705383,10461537 -g1,639:15636729,10461537 -k1,640:32583029,10461537:14764606 -g1,640:32583029,10461537 -) -] -(1,651:32583029,45706769:0,0,0 -g1,651:32583029,45706769 -) -) -] -(1,651:6630773,47279633:25952256,0,0 -h1,651:6630773,47279633:25952256,0,0 -) -] -(1,651:4262630,4025873:0,0,0 -[1,651:-473656,4025873:0,0,0 -(1,651:-473656,-710413:0,0,0 -(1,651:-473656,-710413:0,0,0 -g1,651:-473656,-710413 -) -g1,651:-473656,-710413 -) -] -) -] -!6054 -}37 -!10 -{38 -[1,674:4262630,47279633:28320399,43253760,11795 -(1,674:4262630,4025873:0,0,0 -[1,674:-473656,4025873:0,0,0 -(1,674:-473656,-710413:0,0,0 -(1,674:-473656,-644877:0,0,0 -k1,674:-473656,-644877:-65536 +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) -(1,674:-473656,4736287:0,0,0 -k1,674:-473656,4736287:5209943 +] +) +) +) +] +[1,928:3078558,4812305:0,0,0 +(1,928:3078558,49800853:0,16384,2228224 +g1,928:29030814,49800853 +g1,928:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,928:36151628,51504789:16384,1179648,0 +) +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 +) +] +) +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,928:37855564,49800853:1179648,16384,0 +) +) +k1,928:3078556,49800853:-34777008 +) +] +g1,928:6630773,4812305 +g1,928:6630773,4812305 +g1,928:9516978,4812305 +g1,928:11710468,4812305 +g1,928:13120147,4812305 +g1,928:16560787,4812305 +k1,928:31786111,4812305:15225324 +) +) +] +[1,928:6630773,45706769:25952256,40108032,0 +(1,928:6630773,45706769:25952256,40108032,0 +(1,928:6630773,45706769:0,0,0 +g1,928:6630773,45706769 +) +[1,928:6630773,45706769:25952256,40108032,0 +v1,855:6630773,6254097:0,393216,0 +(1,855:6630773,19259998:25952256,13399117,0 +g1,855:6630773,19259998 +g1,855:6237557,19259998 +r1,928:6368629,19259998:131072,13399117,0 +g1,855:6567858,19259998 +g1,855:6764466,19259998 +[1,855:6764466,19259998:25818563,13399117,0 +(1,838:6764466,6526574:25818563,665693,196608 +(1,837:6764466,6526574:0,665693,196608 +r1,928:8010564,6526574:1246098,862301,196608 +k1,837:6764466,6526574:-1246098 +) +(1,837:6764466,6526574:1246098,665693,196608 +) +k1,837:8288017,6526574:277453 +k1,837:9605946,6526574:327680 +k1,837:11715787,6526574:277454 +k1,837:12984800,6526574:277453 +k1,837:14954393,6526574:277453 +k1,837:19203329,6526574:277454 +k1,837:20968449,6526574:277453 +k1,837:24891670,6526574:277453 +k1,837:28685785,6526574:277453 +k1,837:30247745,6526574:277454 +k1,837:31516758,6526574:277453 +k1,837:32583029,6526574:0 +) +(1,838:6764466,7391654:25818563,513147,126483 +k1,837:8394487,7391654:276047 +k1,837:11975515,7391654:276047 +k1,837:13938459,7391654:276047 +k1,837:15286675,7391654:276047 +k1,837:16733195,7391654:276047 +k1,837:19189625,7391654:276047 +k1,837:20213438,7391654:276047 +k1,837:22357915,7391654:276046 +k1,837:23918468,7391654:276047 +k1,837:25574703,7391654:276047 +k1,837:26842310,7391654:276047 +k1,837:28832123,7391654:276047 +k1,837:29794332,7391654:276047 +k1,837:31450567,7391654:276047 +k1,837:32583029,7391654:0 +) +(1,838:6764466,8256734:25818563,505283,134348 +k1,837:8089932,8256734:259195 +k1,837:10479702,8256734:259195 +k1,837:12345840,8256734:259195 +k1,837:15814333,8256734:259195 +k1,837:17264973,8256734:259195 +k1,837:18861102,8256734:259195 +k1,837:21741736,8256734:259194 +k1,837:23345074,8256734:259195 +k1,837:24800956,8256734:259195 +k1,837:26661851,8256734:259195 +k1,837:30130344,8256734:259195 +k1,837:32051532,8256734:259195 +k1,837:32583029,8256734:0 +) +(1,838:6764466,9121814:25818563,505283,134348 +k1,837:7587183,9121814:171289 +k1,837:9373278,9121814:171288 +k1,837:11040754,9121814:171289 +k1,837:15232677,9121814:171289 +k1,837:16600652,9121814:171288 +k1,837:20770948,9121814:171289 +k1,837:24588005,9121814:171289 +k1,837:27505908,9121814:171289 +(1,837:27505908,9121814:0,414482,115847 +r1,928:28215886,9121814:709978,530329,115847 +k1,837:27505908,9121814:-709978 +) +(1,837:27505908,9121814:709978,414482,115847 +k1,837:27505908,9121814:3277 +h1,837:28212609,9121814:0,411205,112570 +) +k1,837:28387174,9121814:171288 +k1,837:29749908,9121814:171289 +k1,837:32583029,9121814:0 +) +(1,838:6764466,9986894:25818563,513147,134348 +k1,837:8399122,9986894:138469 +k1,837:9683816,9986894:138469 +(1,837:9683816,9986894:0,435480,115847 +r1,928:12855777,9986894:3171961,551327,115847 +k1,837:9683816,9986894:-3171961 +) +(1,837:9683816,9986894:3171961,435480,115847 +g1,837:10390517,9986894 +g1,837:11445653,9986894 +h1,837:12852500,9986894:0,411205,112570 +) +k1,837:12994246,9986894:138469 +k1,837:14124274,9986894:138468 +k1,837:15802839,9986894:138469 +k1,837:17013477,9986894:138469 +k1,837:18365017,9986894:138469 +k1,837:21808467,9986894:138469 +k1,837:23633833,9986894:138469 +k1,837:24968989,9986894:138469 +k1,837:26199943,9986894:138469 +k1,837:26997703,9986894:138468 +k1,837:28155257,9986894:138469 +k1,837:30351556,9986894:138469 +k1,837:31810575,9986894:138469 +(1,837:32017669,9986894:0,414482,115847 +r1,928:32375935,9986894:358266,530329,115847 +k1,837:32017669,9986894:-358266 +) +(1,837:32017669,9986894:358266,414482,115847 +k1,837:32017669,9986894:3277 +h1,837:32372658,9986894:0,411205,112570 +) +k1,837:32583029,9986894:0 +) +(1,838:6764466,10851974:25818563,513147,134348 +k1,837:7875996,10851974:163879 +k1,837:11685644,10851974:163880 +k1,837:12465561,10851974:163879 +k1,837:14292088,10851974:163879 +k1,837:15123124,10851974:163880 +(1,837:15123124,10851974:0,414482,115847 +r1,928:15833102,10851974:709978,530329,115847 +k1,837:15123124,10851974:-709978 +) +(1,837:15123124,10851974:709978,414482,115847 +k1,837:15123124,10851974:3277 +h1,837:15829825,10851974:0,411205,112570 +) +k1,837:15996981,10851974:163879 +k1,837:18992016,10851974:163880 +k1,837:20695991,10851974:163879 +k1,837:21391367,10851974:163879 +k1,837:25610615,10851974:163880 +k1,837:28606960,10851974:163879 +k1,837:32583029,10851974:0 +) +(1,838:6764466,11717054:25818563,513147,134348 +k1,837:7602357,11717054:151729 +k1,837:8370124,11717054:151729 +k1,837:9540938,11717054:151729 +k1,837:10998800,11717054:151729 +k1,837:14336889,11717054:151729 +k1,837:16357049,11717054:151729 +k1,837:17613060,11717054:151729 +k1,837:18512554,11717054:151728 +k1,837:20177509,11717054:151729 +k1,837:20980666,11717054:151729 +k1,837:23013934,11717054:151729 +k1,837:23817091,11717054:151729 +k1,837:24987905,11717054:151729 +k1,837:27359994,11717054:151729 +k1,837:29559723,11717054:151729 +k1,837:30995958,11717054:151729 +(1,837:30995958,11717054:0,435480,115847 +r1,928:32409359,11717054:1413401,551327,115847 +k1,837:30995958,11717054:-1413401 +) +(1,837:30995958,11717054:1413401,435480,115847 +k1,837:30995958,11717054:3277 +h1,837:32406082,11717054:0,411205,112570 +) +k1,838:32583029,11717054:0 +) +(1,838:6764466,12582134:25818563,505283,134348 +(1,837:6764466,12582134:0,435480,115847 +r1,928:8177867,12582134:1413401,551327,115847 +k1,837:6764466,12582134:-1413401 +) +(1,837:6764466,12582134:1413401,435480,115847 +k1,837:6764466,12582134:3277 +h1,837:8174590,12582134:0,411205,112570 +) +g1,837:8377096,12582134 +g1,837:9767770,12582134 +(1,837:9767770,12582134:0,435480,115847 +r1,928:11181171,12582134:1413401,551327,115847 +k1,837:9767770,12582134:-1413401 +) +(1,837:9767770,12582134:1413401,435480,115847 +k1,837:9767770,12582134:3277 +h1,837:11177894,12582134:0,411205,112570 +) +g1,837:11380400,12582134 +g1,837:12571189,12582134 +g1,837:14508433,12582134 +g1,837:17482456,12582134 +g1,837:18700770,12582134 +g1,837:20553472,12582134 +k1,838:32583029,12582134:10175543 +g1,838:32583029,12582134 +) +v1,840:6764466,13266989:0,393216,0 +(1,852:6764466,19063390:25818563,6189617,196608 +g1,852:6764466,19063390 +g1,852:6764466,19063390 +g1,852:6567858,19063390 +(1,852:6567858,19063390:0,6189617,196608 +r1,928:32779637,19063390:26211779,6386225,196608 +k1,852:6567857,19063390:-26211780 +) +(1,852:6567858,19063390:26211779,6189617,196608 +[1,852:6764466,19063390:25818563,5993009,0 +(1,842:6764466,13478304:25818563,407923,9908 +(1,841:6764466,13478304:0,0,0 +g1,841:6764466,13478304 +g1,841:6764466,13478304 +g1,841:6436786,13478304 +(1,841:6436786,13478304:0,0,0 +) +g1,841:6764466,13478304 +) +g1,842:8424236,13478304 +g1,842:9420098,13478304 +g1,842:11079868,13478304 +g1,842:12075730,13478304 +g1,842:13735500,13478304 +g1,842:14731362,13478304 +h1,842:15063316,13478304:0,0,0 +k1,842:32583028,13478304:17519712 +g1,842:32583028,13478304 +) +(1,843:6764466,14163159:25818563,407923,8257 +h1,843:6764466,14163159:0,0,0 +h1,843:8092282,14163159:0,0,0 +k1,843:32583030,14163159:24490748 +g1,843:32583030,14163159 +) +(1,844:6764466,14848014:25818563,407923,8257 +h1,844:6764466,14848014:0,0,0 +h1,844:8092282,14848014:0,0,0 +k1,844:32583030,14848014:24490748 +g1,844:32583030,14848014 +) +(1,845:6764466,15532869:25818563,407923,9908 +h1,845:6764466,15532869:0,0,0 +h1,845:8092282,15532869:0,0,0 +k1,845:32583030,15532869:24490748 +g1,845:32583030,15532869 +) +(1,846:6764466,16217724:25818563,407923,8257 +h1,846:6764466,16217724:0,0,0 +g1,846:7428374,16217724 +g1,846:8424236,16217724 +h1,846:9752052,16217724:0,0,0 +k1,846:32583028,16217724:22830976 +g1,846:32583028,16217724 +) +(1,847:6764466,16902579:25818563,407923,8257 +h1,847:6764466,16902579:0,0,0 +h1,847:8092282,16902579:0,0,0 +k1,847:32583030,16902579:24490748 +g1,847:32583030,16902579 +) +(1,848:6764466,17587434:25818563,407923,9908 +h1,848:6764466,17587434:0,0,0 +g1,848:8424236,17587434 +g1,848:9088144,17587434 +h1,848:9420098,17587434:0,0,0 +k1,848:32583030,17587434:23162932 +g1,848:32583030,17587434 +) +(1,849:6764466,18272289:25818563,407923,8257 +h1,849:6764466,18272289:0,0,0 +h1,849:8092282,18272289:0,0,0 +k1,849:32583030,18272289:24490748 +g1,849:32583030,18272289 +) +(1,850:6764466,18957144:25818563,424439,106246 +h1,850:6764466,18957144:0,0,0 +g1,850:11079868,18957144 +g1,850:13071592,18957144 +g1,850:15063316,18957144 +g1,850:15727224,18957144 +k1,850:15727224,18957144:9909 +h1,850:18060811,18957144:0,0,0 +k1,850:32583029,18957144:14522218 +g1,850:32583029,18957144 +) +] +) +g1,852:32583029,19063390 +g1,852:6764466,19063390 +g1,852:6764466,19063390 +g1,852:32583029,19063390 +g1,852:32583029,19063390 +) +h1,852:6764466,19259998:0,0,0 +] +g1,855:32583029,19259998 +) +h1,855:6630773,19259998:0,0,0 +v1,857:6630773,20125078:0,393216,0 +(1,928:6630773,42250846:25952256,22518984,0 +g1,928:6630773,42250846 +g1,928:6237557,42250846 +r1,928:6368629,42250846:131072,22518984,0 +g1,928:6567858,42250846 +g1,928:6764466,42250846 +[1,928:6764466,42250846:25818563,22518984,0 +(1,859:6764466,20433376:25818563,701514,196608 +(1,857:6764466,20433376:0,701514,196608 +r1,928:8010564,20433376:1246098,898122,196608 +k1,857:6764466,20433376:-1246098 +) +(1,857:6764466,20433376:1246098,701514,196608 +) +k1,857:8248269,20433376:237705 +k1,857:8575949,20433376:327680 +k1,857:8575949,20433376:0 +k1,858:9441488,20433376:237704 +k1,858:10267706,20433376:237705 +k1,858:11271526,20433376:237704 +k1,858:14325313,20433376:237705 +k1,858:16699491,20433376:237704 +k1,858:17588624,20433376:237705 +k1,858:19608907,20433376:237704 +(1,858:19608907,20433376:0,452978,115847 +r1,928:22077444,20433376:2468537,568825,115847 +k1,858:19608907,20433376:-2468537 +) +(1,858:19608907,20433376:2468537,452978,115847 +k1,858:19608907,20433376:3277 +h1,858:22074167,20433376:0,411205,112570 +) +k1,858:22315149,20433376:237705 +k1,858:23628299,20433376:237704 +k1,858:24998466,20433376:237705 +k1,858:27597432,20433376:237704 +k1,858:28854222,20433376:237705 +k1,858:31923737,20433376:237704 +k1,858:32583029,20433376:0 +) +(1,859:6764466,21298456:25818563,513147,134348 +k1,858:8694848,21298456:206785 +k1,858:10093079,21298456:206786 +k1,858:11806537,21298456:206785 +k1,858:12629360,21298456:206785 +k1,858:15114832,21298456:206785 +h1,858:16085420,21298456:0,0,0 +k1,858:16292206,21298456:206786 +k1,858:17308361,21298456:206785 +k1,858:19013299,21298456:206785 +h1,858:19810217,21298456:0,0,0 +k1,858:20397767,21298456:206786 +k1,858:21558101,21298456:206785 +k1,858:22869168,21298456:206785 +k1,858:24891957,21298456:206786 +k1,858:25564703,21298456:206785 +k1,858:26790573,21298456:206785 +k1,858:28779937,21298456:206785 +k1,858:29646015,21298456:206786 +k1,858:30623503,21298456:206785 +k1,858:32583029,21298456:0 +) +(1,859:6764466,22163536:25818563,513147,115847 +k1,858:7576898,22163536:280935 +(1,858:7576898,22163536:0,452978,115847 +r1,928:10045435,22163536:2468537,568825,115847 +k1,858:7576898,22163536:-2468537 +) +(1,858:7576898,22163536:2468537,452978,115847 +k1,858:7576898,22163536:3277 +h1,858:10042158,22163536:0,411205,112570 +) +k1,858:10326370,22163536:280935 +k1,858:12001255,22163536:280934 +k1,858:14977686,22163536:280935 +(1,858:14977686,22163536:0,452978,115847 +r1,928:19204782,22163536:4227096,568825,115847 +k1,858:14977686,22163536:-4227096 +) +(1,858:14977686,22163536:4227096,452978,115847 +k1,858:14977686,22163536:3277 +h1,858:19201505,22163536:0,411205,112570 +) +k1,858:19659387,22163536:280935 +k1,858:21137009,22163536:280935 +k1,858:24196671,22163536:280935 +k1,858:26488251,22163536:280935 +k1,858:27760745,22163536:280934 +k1,858:29897660,22163536:280935 +k1,858:31900144,22163536:280853 +k1,858:32583029,22163536:0 +) +(1,859:6764466,23028616:25818563,505283,134348 +g1,858:9075265,23028616 +g1,858:11148824,23028616 +g1,858:12339613,23028616 +g1,858:14608469,23028616 +g1,858:16818343,23028616 +g1,858:18302078,23028616 +g1,858:19633769,23028616 +g1,858:20580764,23028616 +g1,858:23909337,23028616 +g1,858:24724604,23028616 +g1,858:27202520,23028616 +h1,858:28173108,23028616:0,0,0 +g1,858:28372337,23028616 +g1,858:29380936,23028616 +g1,858:31078318,23028616 +h1,858:31875236,23028616:0,0,0 +k1,859:32583029,23028616:534123 +g1,859:32583029,23028616 +) +v1,861:6764466,23713471:0,393216,0 +(1,875:6764466,27153760:25818563,3833505,196608 +g1,875:6764466,27153760 +g1,875:6764466,27153760 +g1,875:6567858,27153760 +(1,875:6567858,27153760:0,3833505,196608 +r1,928:32779637,27153760:26211779,4030113,196608 +k1,875:6567857,27153760:-26211780 +) +(1,875:6567858,27153760:26211779,3833505,196608 +[1,875:6764466,27153760:25818563,3636897,0 +(1,863:6764466,23941302:25818563,424439,79822 +(1,862:6764466,23941302:0,0,0 +g1,862:6764466,23941302 +g1,862:6764466,23941302 +g1,862:6436786,23941302 +(1,862:6436786,23941302:0,0,0 +) +g1,862:6764466,23941302 +) +k1,863:6764466,23941302:0 +h1,863:9088144,23941302:0,0,0 +k1,863:32583028,23941302:23494884 +g1,863:32583028,23941302 +) +(1,867:6764466,24757229:25818563,424439,79822 +(1,865:6764466,24757229:0,0,0 +g1,865:6764466,24757229 +g1,865:6764466,24757229 +g1,865:6436786,24757229 +(1,865:6436786,24757229:0,0,0 +) +g1,865:6764466,24757229 +) +g1,867:7760328,24757229 +g1,867:9088144,24757229 +h1,867:12075729,24757229:0,0,0 +k1,867:32583029,24757229:20507300 +g1,867:32583029,24757229 +) +(1,869:6764466,25573156:25818563,407923,6605 +(1,868:6764466,25573156:0,0,0 +g1,868:6764466,25573156 +g1,868:6764466,25573156 +g1,868:6436786,25573156 +(1,868:6436786,25573156:0,0,0 +) +g1,868:6764466,25573156 +) +g1,869:8424236,25573156 +g1,869:9420098,25573156 +h1,869:9752052,25573156:0,0,0 +k1,869:32583028,25573156:22830976 +g1,869:32583028,25573156 +) +(1,870:6764466,26258011:25818563,424439,79822 +h1,870:6764466,26258011:0,0,0 +k1,870:6764466,26258011:0 +h1,870:12075729,26258011:0,0,0 +k1,870:32583029,26258011:20507300 +g1,870:32583029,26258011 +) +(1,874:6764466,27073938:25818563,424439,79822 +(1,872:6764466,27073938:0,0,0 +g1,872:6764466,27073938 +g1,872:6764466,27073938 +g1,872:6436786,27073938 +(1,872:6436786,27073938:0,0,0 +) +g1,872:6764466,27073938 +) +g1,874:7760328,27073938 +g1,874:9088144,27073938 +h1,874:10415960,27073938:0,0,0 +k1,874:32583028,27073938:22167068 +g1,874:32583028,27073938 +) +] +) +g1,875:32583029,27153760 +g1,875:6764466,27153760 +g1,875:6764466,27153760 +g1,875:32583029,27153760 +g1,875:32583029,27153760 +) +h1,875:6764466,27350368:0,0,0 +(1,879:6764466,28215448:25818563,513147,134348 +h1,878:6764466,28215448:983040,0,0 +k1,878:10409185,28215448:133300 +k1,878:13358567,28215448:133300 +k1,878:14596149,28215448:133300 +k1,878:15477215,28215448:133300 +k1,878:17648685,28215448:133300 +k1,878:18398023,28215448:133300 +k1,878:21293666,28215448:133300 +k1,878:24111321,28215448:133300 +k1,878:25846321,28215448:133300 +k1,878:29410431,28215448:133300 +k1,878:32583029,28215448:0 +) +(1,879:6764466,29080528:25818563,513147,126483 +k1,878:10379490,29080528:181593 +k1,878:12792583,29080528:181592 +k1,878:15736519,29080528:181593 +k1,878:17634500,29080528:181593 +k1,878:18475384,29080528:181592 +k1,878:21646729,29080528:181593 +k1,878:22456156,29080528:181592 +k1,878:24239449,29080528:181593 +k1,878:26118424,29080528:181593 +k1,878:27218831,29080528:181592 +(1,878:27218831,29080528:0,452978,115847 +r1,928:30390791,29080528:3171960,568825,115847 +k1,878:27218831,29080528:-3171960 +) +(1,878:27218831,29080528:3171960,452978,115847 +k1,878:27218831,29080528:3277 +h1,878:30387514,29080528:0,411205,112570 +) +k1,878:30572384,29080528:181593 +k1,878:32583029,29080528:0 +) +(1,879:6764466,29945608:25818563,505283,126483 +k1,878:8058990,29945608:190242 +k1,878:8996997,29945608:190241 +k1,878:10700465,29945608:190242 +k1,878:14510915,29945608:190241 +k1,878:15985663,29945608:190242 +k1,878:16531764,29945608:190241 +k1,878:19207787,29945608:190242 +k1,878:19929526,29945608:190242 +k1,878:23132457,29945608:190241 +k1,878:26257401,29945608:190242 +k1,878:27063680,29945608:190241 +k1,878:28946062,29945608:190242 +k1,878:30833685,29945608:190241 +k1,878:31482024,29945608:190242 +k1,878:32583029,29945608:0 +) +(1,879:6764466,30810688:25818563,505283,134348 +k1,878:10477736,30810688:144179 +k1,878:11273343,30810688:144179 +k1,878:14314869,30810688:144179 +k1,878:16990704,30810688:144179 +k1,878:18419389,30810688:144179 +k1,878:19431920,30810688:144179 +k1,878:20708562,30810688:144180 +k1,878:22470170,30810688:144179 +k1,878:23297234,30810688:144179 +k1,878:25852483,30810688:144179 +k1,878:26806032,30810688:144179 +k1,878:28833060,30810688:144179 +k1,878:31966991,30810688:144179 +k1,878:32583029,30810688:0 +) +(1,879:6764466,31675768:25818563,505283,134348 +k1,878:8821002,31675768:171065 +k1,878:10359148,31675768:171065 +k1,878:11398564,31675768:171064 +k1,878:12673911,31675768:171065 +k1,878:13937461,31675768:171065 +k1,878:15663695,31675768:171065 +(1,878:15663695,31675768:0,452978,122846 +r1,928:18132232,31675768:2468537,575824,122846 +k1,878:15663695,31675768:-2468537 +) +(1,878:15663695,31675768:2468537,452978,122846 +k1,878:15663695,31675768:3277 +h1,878:18128955,31675768:0,411205,112570 +) +k1,878:18476966,31675768:171064 +k1,878:20041982,31675768:171065 +k1,878:22443237,31675768:171065 +k1,878:25702358,31675768:171065 +k1,878:28825819,31675768:171064 +k1,878:29758412,31675768:171065 +k1,878:30285337,31675768:171065 +k1,878:32583029,31675768:0 +) +(1,879:6764466,32540848:25818563,505283,126483 +g1,878:9092960,32540848 +g1,878:10431205,32540848 +g1,878:11316596,32540848 +g1,878:12131863,32540848 +(1,878:12131863,32540848:0,435480,115847 +r1,928:13193552,32540848:1061689,551327,115847 +k1,878:12131863,32540848:-1061689 +) +(1,878:12131863,32540848:1061689,435480,115847 +k1,878:12131863,32540848:3277 +h1,878:13190275,32540848:0,411205,112570 +) +k1,879:32583030,32540848:19215808 +g1,879:32583030,32540848 +) +v1,881:6764466,33225703:0,393216,0 +(1,900:6764466,37612991:25818563,4780504,196608 +g1,900:6764466,37612991 +g1,900:6764466,37612991 +g1,900:6567858,37612991 +(1,900:6567858,37612991:0,4780504,196608 +r1,928:32779637,37612991:26211779,4977112,196608 +k1,900:6567857,37612991:-26211780 +) +(1,900:6567858,37612991:26211779,4780504,196608 +[1,900:6764466,37612991:25818563,4583896,0 +(1,883:6764466,33453534:25818563,424439,79822 +(1,882:6764466,33453534:0,0,0 +g1,882:6764466,33453534 +g1,882:6764466,33453534 +g1,882:6436786,33453534 +(1,882:6436786,33453534:0,0,0 +) +g1,882:6764466,33453534 +) +k1,883:6764466,33453534:0 +h1,883:11411821,33453534:0,0,0 +k1,883:32583029,33453534:21171208 +g1,883:32583029,33453534 +) +(1,887:6764466,34269461:25818563,424439,79822 +(1,885:6764466,34269461:0,0,0 +g1,885:6764466,34269461 +g1,885:6764466,34269461 +g1,885:6436786,34269461 +(1,885:6436786,34269461:0,0,0 +) +g1,885:6764466,34269461 +) +g1,887:7760328,34269461 +g1,887:9088144,34269461 +h1,887:10415960,34269461:0,0,0 +k1,887:32583028,34269461:22167068 +g1,887:32583028,34269461 +) +(1,889:6764466,35085388:25818563,424439,112852 +(1,888:6764466,35085388:0,0,0 +g1,888:6764466,35085388 +g1,888:6764466,35085388 +g1,888:6436786,35085388 +(1,888:6436786,35085388:0,0,0 +) +g1,888:6764466,35085388 +) +k1,889:6764466,35085388:0 +h1,889:11411821,35085388:0,0,0 +k1,889:32583029,35085388:21171208 +g1,889:32583029,35085388 +) +(1,893:6764466,35901315:25818563,424439,79822 +(1,891:6764466,35901315:0,0,0 +g1,891:6764466,35901315 +g1,891:6764466,35901315 +g1,891:6436786,35901315 +(1,891:6436786,35901315:0,0,0 +) +g1,891:6764466,35901315 +) +g1,893:7760328,35901315 +g1,893:9088144,35901315 +h1,893:10415960,35901315:0,0,0 +k1,893:32583028,35901315:22167068 +g1,893:32583028,35901315 +) +(1,895:6764466,36717242:25818563,424439,79822 +(1,894:6764466,36717242:0,0,0 +g1,894:6764466,36717242 +g1,894:6764466,36717242 +g1,894:6436786,36717242 +(1,894:6436786,36717242:0,0,0 +) +g1,894:6764466,36717242 +) +k1,895:6764466,36717242:0 +h1,895:11079867,36717242:0,0,0 +k1,895:32583029,36717242:21503162 +g1,895:32583029,36717242 +) +(1,899:6764466,37533169:25818563,424439,79822 +(1,897:6764466,37533169:0,0,0 +g1,897:6764466,37533169 +g1,897:6764466,37533169 +g1,897:6436786,37533169 +(1,897:6436786,37533169:0,0,0 +) +g1,897:6764466,37533169 +) +g1,899:7760328,37533169 +g1,899:9088144,37533169 +h1,899:10747914,37533169:0,0,0 +k1,899:32583030,37533169:21835116 +g1,899:32583030,37533169 +) +] +) +g1,900:32583029,37612991 +g1,900:6764466,37612991 +g1,900:6764466,37612991 +g1,900:32583029,37612991 +g1,900:32583029,37612991 +) +h1,900:6764466,37809599:0,0,0 +(1,904:6764466,38674679:25818563,505283,126483 +h1,903:6764466,38674679:983040,0,0 +k1,903:9293937,38674679:193113 +k1,903:12303131,38674679:193112 +k1,903:13487804,38674679:193113 +k1,903:14036777,38674679:193113 +k1,903:18553300,38674679:193113 +k1,903:22508834,38674679:193112 +k1,903:23893392,38674679:193113 +k1,903:24901773,38674679:193113 +k1,903:26161157,38674679:193113 +k1,903:27829484,38674679:193112 +k1,903:28793300,38674679:193113 +k1,903:30645129,38674679:193113 +k1,904:32583029,38674679:0 +) +(1,904:6764466,39539759:25818563,513147,126483 +k1,903:8641357,39539759:296818 +k1,903:9554214,39539759:296819 +k1,903:13431264,39539759:296818 +k1,903:16067063,39539759:296819 +k1,903:17023173,39539759:296818 +k1,903:18673310,39539759:296819 +k1,903:21959880,39539759:296818 +k1,903:25663260,39539759:296819 +k1,903:27577507,39539759:296818 +k1,903:29065771,39539759:296819 +k1,903:31773659,39539759:296818 +k1,903:32583029,39539759:0 +) +(1,904:6764466,40404839:25818563,513147,134348 +k1,903:9776632,40404839:196084 +k1,903:11257221,40404839:196083 +k1,903:12444865,40404839:196084 +k1,903:15711966,40404839:196084 +k1,903:16559477,40404839:196083 +k1,903:17111421,40404839:196084 +k1,903:19167417,40404839:196084 +k1,903:20435669,40404839:196083 +k1,903:22282605,40404839:196084 +k1,903:24259302,40404839:196084 +k1,903:25114677,40404839:196083 +k1,903:27321406,40404839:196084 +k1,903:28708935,40404839:196084 +k1,903:30380233,40404839:196083 +k1,903:30932177,40404839:196084 +k1,903:32583029,40404839:0 +) +(1,904:6764466,41269919:25818563,513147,134348 +k1,903:10397834,41269919:211733 +k1,903:12167357,41269919:211732 +k1,903:13370650,41269919:211733 +k1,903:15623829,41269919:211733 +k1,903:17567678,41269919:211732 +k1,903:18669390,41269919:211733 +k1,903:23155381,41269919:211733 +k1,903:26563959,41269919:211732 +k1,903:27391730,41269919:211733 +k1,903:28018293,41269919:211720 +k1,903:29610214,41269919:211733 +k1,903:30590683,41269919:211732 +k1,903:31563944,41269919:211733 +k1,903:32583029,41269919:0 +) +(1,904:6764466,42134999:25818563,513147,115847 +g1,903:8701710,42134999 +g1,903:9568095,42134999 +(1,903:9568095,42134999:0,452978,115847 +r1,928:11684920,42134999:2116825,568825,115847 +k1,903:9568095,42134999:-2116825 +) +(1,903:9568095,42134999:2116825,452978,115847 +k1,903:9568095,42134999:3277 +h1,903:11681643,42134999:0,411205,112570 +) +g1,903:11884149,42134999 +g1,903:13274823,42134999 +g1,903:14578334,42134999 +g1,903:15525329,42134999 +g1,903:18074679,42134999 +g1,903:19667859,42134999 +g1,903:20886173,42134999 +g1,903:24792118,42134999 +(1,903:24792118,42134999:0,452978,115847 +r1,928:27612367,42134999:2820249,568825,115847 +k1,903:24792118,42134999:-2820249 +) +(1,903:24792118,42134999:2820249,452978,115847 +k1,903:24792118,42134999:3277 +h1,903:27609090,42134999:0,411205,112570 +) +k1,904:32583029,42134999:4796992 +g1,904:32583029,42134999 +) +] +g1,928:32583029,42250846 +) +] +(1,928:32583029,45706769:0,0,0 +g1,928:32583029,45706769 +) +) +] +(1,928:6630773,47279633:25952256,0,0 +h1,928:6630773,47279633:25952256,0,0 +) +] +(1,928:4262630,4025873:0,0,0 +[1,928:-473656,4025873:0,0,0 +(1,928:-473656,-710413:0,0,0 +(1,928:-473656,-710413:0,0,0 +g1,928:-473656,-710413 +) +g1,928:-473656,-710413 +) +] +) +] +!25810 +}42 +Input:285:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:286:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:287:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:288:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:289:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:290:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:291:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:292:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:293:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:294:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:295:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:296:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1127 +{43 +[1,1026:4262630,47279633:28320399,43253760,0 +(1,1026:4262630,4025873:0,0,0 +[1,1026:-473656,4025873:0,0,0 +(1,1026:-473656,-710413:0,0,0 +(1,1026:-473656,-644877:0,0,0 +k1,1026:-473656,-644877:-65536 +) +(1,1026:-473656,4736287:0,0,0 +k1,1026:-473656,4736287:5209943 ) -g1,674:-473656,-710413 +g1,1026:-473656,-710413 ) ] ) -[1,674:6630773,47279633:25952256,43253760,11795 -[1,674:6630773,4812305:25952256,786432,0 -(1,674:6630773,4812305:25952256,0,0 -(1,674:6630773,4812305:25952256,0,0 -g1,674:3078558,4812305 -[1,674:3078558,4812305:0,0,0 -(1,674:3078558,2439708:0,1703936,0 -k1,674:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,674:2537886,2439708:1179648,16384,0 +[1,1026:6630773,47279633:25952256,43253760,0 +[1,1026:6630773,4812305:25952256,786432,0 +(1,1026:6630773,4812305:25952256,505283,11795 +(1,1026:6630773,4812305:25952256,505283,11795 +g1,1026:3078558,4812305 +[1,1026:3078558,4812305:0,0,0 +(1,1026:3078558,2439708:0,1703936,0 +k1,1026:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,1026:2537886,2439708:1179648,16384,0 ) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,674:3078558,1915420:16384,1179648,0 +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,1026:3078558,1915420:16384,1179648,0 ) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) ] ) ) ) ] -[1,674:3078558,4812305:0,0,0 -(1,674:3078558,2439708:0,1703936,0 -g1,674:29030814,2439708 -g1,674:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,674:36151628,1915420:16384,1179648,0 +[1,1026:3078558,4812305:0,0,0 +(1,1026:3078558,2439708:0,1703936,0 +g1,1026:29030814,2439708 +g1,1026:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,1026:36151628,1915420:16384,1179648,0 ) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) ] ) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,674:37855564,2439708:1179648,16384,0 +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,1026:37855564,2439708:1179648,16384,0 ) ) -k1,674:3078556,2439708:-34777008 +k1,1026:3078556,2439708:-34777008 ) ] -[1,674:3078558,4812305:0,0,0 -(1,674:3078558,49800853:0,16384,2228224 -k1,674:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,674:2537886,49800853:1179648,16384,0 +[1,1026:3078558,4812305:0,0,0 +(1,1026:3078558,49800853:0,16384,2228224 +k1,1026:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,1026:2537886,49800853:1179648,16384,0 ) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,674:3078558,51504789:16384,1179648,0 +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,1026:3078558,51504789:16384,1179648,0 ) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) ] ) ) ) ] -[1,674:3078558,4812305:0,0,0 -(1,674:3078558,49800853:0,16384,2228224 -g1,674:29030814,49800853 -g1,674:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,674:36151628,51504789:16384,1179648,0 +[1,1026:3078558,4812305:0,0,0 +(1,1026:3078558,49800853:0,16384,2228224 +g1,1026:29030814,49800853 +g1,1026:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,1026:36151628,51504789:16384,1179648,0 ) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 ) ] ) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,674:37855564,49800853:1179648,16384,0 +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,1026:37855564,49800853:1179648,16384,0 ) ) -k1,674:3078556,49800853:-34777008 +k1,1026:3078556,49800853:-34777008 ) ] -g1,674:6630773,4812305 +g1,1026:6630773,4812305 +k1,1026:22348274,4812305:14920583 +g1,1026:23970945,4812305 +g1,1026:24793421,4812305 +g1,1026:27528893,4812305 +g1,1026:28938572,4812305 ) ) ] -[1,674:6630773,45706769:25952256,40108032,0 -(1,674:6630773,45706769:25952256,40108032,0 -(1,674:6630773,45706769:0,0,0 -g1,674:6630773,45706769 +[1,1026:6630773,45706769:25952256,40108032,0 +(1,1026:6630773,45706769:25952256,40108032,0 +(1,1026:6630773,45706769:0,0,0 +g1,1026:6630773,45706769 ) -[1,674:6630773,45706769:25952256,40108032,0 -[1,651:6630773,11663733:25952256,6064996,0 -(1,651:6630773,6633157:25952256,1165492,28311 -h1,651:6630773,6633157:0,0,0 -k1,651:20096848,6633157:12486181 -k1,651:32583029,6633157:12486181 +[1,1026:6630773,45706769:25952256,40108032,0 +v1,928:6630773,6254097:0,393216,0 +(1,928:6630773,10837993:25952256,4977112,0 +g1,928:6630773,10837993 +g1,928:6237557,10837993 +r1,1026:6368629,10837993:131072,4977112,0 +g1,928:6567858,10837993 +g1,928:6764466,10837993 +[1,928:6764466,10837993:25818563,4977112,0 +v1,906:6764466,6254097:0,393216,0 +(1,925:6764466,10641385:25818563,4780504,196608 +g1,925:6764466,10641385 +g1,925:6764466,10641385 +g1,925:6567858,10641385 +(1,925:6567858,10641385:0,4780504,196608 +r1,1026:32779637,10641385:26211779,4977112,196608 +k1,925:6567857,10641385:-26211780 ) -(1,651:6630773,7333093:25952256,32768,229376 -(1,651:6630773,7333093:0,32768,229376 -(1,651:6630773,7333093:5505024,32768,229376 -r1,674:12135797,7333093:5505024,262144,229376 +(1,925:6567858,10641385:26211779,4780504,196608 +[1,925:6764466,10641385:25818563,4583896,0 +(1,908:6764466,6481928:25818563,424439,79822 +(1,907:6764466,6481928:0,0,0 +g1,907:6764466,6481928 +g1,907:6764466,6481928 +g1,907:6436786,6481928 +(1,907:6436786,6481928:0,0,0 ) -k1,651:6630773,7333093:-5505024 +g1,907:6764466,6481928 ) -(1,651:6630773,7333093:25952256,32768,0 -r1,674:32583029,7333093:25952256,32768,0 +k1,908:6764466,6481928:0 +h1,908:11079867,6481928:0,0,0 +k1,908:32583029,6481928:21503162 +g1,908:32583029,6481928 +) +(1,912:6764466,7297855:25818563,424439,79822 +(1,910:6764466,7297855:0,0,0 +g1,910:6764466,7297855 +g1,910:6764466,7297855 +g1,910:6436786,7297855 +(1,910:6436786,7297855:0,0,0 +) +g1,910:6764466,7297855 +) +g1,912:7760328,7297855 +g1,912:9088144,7297855 +h1,912:10415960,7297855:0,0,0 +k1,912:32583028,7297855:22167068 +g1,912:32583028,7297855 +) +(1,914:6764466,8113782:25818563,424439,112852 +(1,913:6764466,8113782:0,0,0 +g1,913:6764466,8113782 +g1,913:6764466,8113782 +g1,913:6436786,8113782 +(1,913:6436786,8113782:0,0,0 +) +g1,913:6764466,8113782 +) +k1,914:6764466,8113782:0 +h1,914:11079867,8113782:0,0,0 +k1,914:32583029,8113782:21503162 +g1,914:32583029,8113782 +) +(1,918:6764466,8929709:25818563,424439,79822 +(1,916:6764466,8929709:0,0,0 +g1,916:6764466,8929709 +g1,916:6764466,8929709 +g1,916:6436786,8929709 +(1,916:6436786,8929709:0,0,0 +) +g1,916:6764466,8929709 +) +g1,918:7760328,8929709 +g1,918:9088144,8929709 +h1,918:10747914,8929709:0,0,0 +k1,918:32583030,8929709:21835116 +g1,918:32583030,8929709 +) +(1,920:6764466,9745636:25818563,424439,79822 +(1,919:6764466,9745636:0,0,0 +g1,919:6764466,9745636 +g1,919:6764466,9745636 +g1,919:6436786,9745636 +(1,919:6436786,9745636:0,0,0 +) +g1,919:6764466,9745636 +) +k1,920:6764466,9745636:0 +h1,920:10747913,9745636:0,0,0 +k1,920:32583029,9745636:21835116 +g1,920:32583029,9745636 +) +(1,924:6764466,10561563:25818563,424439,79822 +(1,922:6764466,10561563:0,0,0 +g1,922:6764466,10561563 +g1,922:6764466,10561563 +g1,922:6436786,10561563 +(1,922:6436786,10561563:0,0,0 +) +g1,922:6764466,10561563 +) +g1,924:7760328,10561563 +g1,924:9088144,10561563 +h1,924:10415960,10561563:0,0,0 +k1,924:32583028,10561563:22167068 +g1,924:32583028,10561563 +) +] +) +g1,925:32583029,10641385 +g1,925:6764466,10641385 +g1,925:6764466,10641385 +g1,925:32583029,10641385 +g1,925:32583029,10641385 +) +h1,925:6764466,10837993:0,0,0 +] +g1,928:32583029,10837993 +) +h1,928:6630773,10837993:0,0,0 +(1,932:6630773,11703073:25952256,513147,134348 +h1,931:6630773,11703073:983040,0,0 +k1,931:10256820,11703073:233904 +k1,931:11482284,11703073:233904 +k1,931:16991835,11703073:233903 +k1,931:17841777,11703073:233904 +k1,931:21180777,11703073:233904 +k1,931:22073973,11703073:233904 +k1,931:24660620,11703073:233904 +k1,931:26907790,11703073:233904 +k1,931:28333138,11703073:233903 +k1,931:30080268,11703073:233904 +k1,931:30965600,11703073:233904 +k1,931:32583029,11703073:0 +) +(1,932:6630773,12568153:25952256,513147,134348 +k1,931:9106664,12568153:273881 +k1,931:11564859,12568153:273880 +k1,931:13081303,12568153:273881 +k1,931:16344936,12568153:273881 +k1,931:18176608,12568153:273881 +k1,931:19442048,12568153:273880 +k1,931:22478272,12568153:273881 +k1,931:23403581,12568153:273881 +k1,931:24696547,12568153:273881 +k1,931:27452275,12568153:273880 +k1,931:31069803,12568153:273881 +k1,931:32583029,12568153:0 +) +(1,932:6630773,13433233:25952256,513147,134348 +k1,931:7506572,13433233:259761 +k1,931:10113176,13433233:259760 +k1,931:12070975,13433233:259761 +k1,931:15642926,13433233:259761 +k1,931:19322356,13433233:259761 +k1,931:21714658,13433233:259760 +k1,931:23859890,13433233:259761 +k1,931:25111211,13433233:259761 +k1,931:29041643,13433233:259761 +k1,931:30695354,13433233:259760 +k1,931:31725818,13433233:259761 +k1,932:32583029,13433233:0 +) +(1,932:6630773,14298313:25952256,658636,102891 +k1,931:8101886,14298313:267217 +k1,931:9055264,14298313:267216 +k1,931:10093184,14298313:267217 +k1,931:13176482,14298313:267216 +k1,931:14937265,14298313:267217 +k1,931:15890643,14298313:267216 +$1,931:15890643,14298313 +[1,931:15890643,14298313:382730,658636,0 +(1,931:15890643,14171829:0,532152,0 +(1,931:15890643,14171829:382730,532152,0 +k1,931:15957489,14171829:-129762 +) +) +(1,931:15890643,14298313:382730,473825,0 +) +] +$1,931:16273373,14298313 +k1,931:16714260,14298313:267217 +k1,931:17609311,14298313:267216 +k1,931:18291303,14298313:267149 +k1,931:21178648,14298313:267216 +k1,931:23456510,14298313:267217 +k1,931:24915171,14298313:267216 +k1,931:26884358,14298313:267217 +k1,931:29313608,14298313:267217 +k1,931:31591469,14298313:267216 +k1,931:32583029,14298313:0 +) +(1,932:6630773,15163393:25952256,505283,134348 +k1,931:8976003,15163393:215965 +(1,931:8976003,15163393:0,414482,115847 +r1,1026:11092828,15163393:2116825,530329,115847 +k1,931:8976003,15163393:-2116825 +) +(1,931:8976003,15163393:2116825,414482,115847 +k1,931:8976003,15163393:3277 +h1,931:11089551,15163393:0,411205,112570 +) +k1,931:11308794,15163393:215966 +k1,931:11855060,15163393:215965 +k1,931:13355531,15163393:215965 +k1,931:14675779,15163393:215966 +k1,931:17263492,15163393:215965 +k1,931:19073293,15163393:215965 +k1,931:20445968,15163393:215965 +k1,931:21344819,15163393:215966 +k1,931:23210981,15163393:215965 +k1,931:26469783,15163393:215965 +k1,931:27882436,15163393:215966 +k1,931:30714598,15163393:215965 +k1,931:32583029,15163393:0 +) +(1,932:6630773,16028473:25952256,513147,134348 +k1,931:10401256,16028473:155517 +k1,931:10912633,16028473:155517 +k1,931:13046026,16028473:155516 +k1,931:16563540,16028473:155517 +k1,931:17738142,16028473:155517 +k1,931:20936496,16028473:155517 +k1,931:22377829,16028473:155517 +k1,931:24401121,16028473:155516 +k1,931:27684016,16028473:155517 +k1,931:29713863,16028473:155517 +k1,931:32583029,16028473:0 +) +(1,932:6630773,16893553:25952256,505283,134348 +k1,931:7932437,16893553:197382 +k1,931:8877586,16893553:197383 +k1,931:12047026,16893553:197382 +k1,931:13979801,16893553:197382 +k1,931:16407374,16893553:197383 +k1,931:19420838,16893553:197382 +k1,931:20304383,16893553:197383 +k1,931:23676984,16893553:197382 +k1,931:26297232,16893553:197382 +k1,931:27686060,16893553:197383 +k1,931:31896867,16893553:197382 +k1,931:32583029,16893553:0 +) +(1,932:6630773,17758633:25952256,505283,134348 +g1,931:9920025,17758633 +g1,931:10735292,17758633 +g1,931:12584718,17758633 +g1,931:14571114,17758633 +g1,931:15386381,17758633 +g1,931:17864297,17758633 +h1,931:19233344,17758633:0,0,0 +g1,931:19432573,17758633 +g1,931:20441172,17758633 +g1,931:22138554,17758633 +h1,931:22935472,17758633:0,0,0 +k1,932:32583029,17758633:9473887 +g1,932:32583029,17758633 +) +(1,958:6630773,22854895:25952256,3893677,0 +k1,958:7935764,22854895:1304991 +(1,933:7935764,22854895:0,0,0 +g1,933:7935764,22854895 +g1,933:7935764,22854895 +g1,933:7608084,22854895 +(1,933:7608084,22854895:0,0,0 +) +g1,933:7935764,22854895 +) +(1,956:7935764,22854895:23342274,3893677,0 +g1,956:17363270,22854895 +(1,956:17363270,21488515:0,0,0 +(1,947:17363270,21488515:0,0,0 +g1,945:17363270,21488515 +g1,946:17363270,21488515 +g1,946:17363270,21488515 +g1,946:17363270,21488515 +g1,946:17363270,21488515 +g1,947:17363270,21488515 +) +(1,956:17363270,21488515:0,0,0 +g1,938:17363270,21488515 +(1,942:17363270,21488515:0,0,0 +(1,942:17363270,21488515:0,0,0 +g1,942:17363270,21488515 +g1,942:17363270,21488515 +g1,942:17363270,21488515 +g1,942:17363270,21488515 +g1,942:17363270,21488515 +(1,942:17363270,21488515:0,0,0 +(1,942:17363270,21488515:13078954,1717529,665744 +[1,942:17363270,21488515:13078954,1717529,665744 +(1,942:17363270,20444510:13078954,673524,285028 +g1,941:17363270,20444510 +(1,941:17363270,20444510:665744,673524,285028 +k1,941:17549738,20444510:186468 +g1,941:18029014,20444510 +(1,941:18029014,20444510:0,673524,285028 +(1,941:18029014,20444510:0,0,0 +(1,941:18029014,20444510:0,0,0 +g1,941:18029014,20444510 +g1,941:18029014,20444510 +g1,941:18029014,20444510 +g1,941:18029014,20444510 +g1,941:18029014,20444510 +(1,941:18029014,20444510:0,0,0 +(1,941:18029014,20444510:331874,388497,0 +(1,941:18029014,20444510:331874,388497,0 +) +g1,941:18360888,20444510 +) +) +g1,941:18029014,20444510 +g1,941:18029014,20444510 +) +) +g1,941:18029014,20444510 +) +) +g1,941:18029014,20444510 +(1,941:18029014,20444510:665744,673524,285028 +g1,941:18508290,20444510 +k1,941:18694758,20444510:186468 +) +g1,941:18694758,20444510 +(1,941:18694758,20444510:639530,673524,285028 +k1,941:18894333,20444510:199575 +g1,941:19334288,20444510 +(1,941:19334288,20444510:0,660417,271921 +(1,941:19334288,20444510:0,0,0 +(1,941:19334288,20444510:0,0,0 +g1,941:19334288,20444510 +g1,941:19334288,20444510 +g1,941:19334288,20444510 +g1,941:19334288,20444510 +g1,941:19334288,20444510 +(1,941:19334288,20444510:0,0,0 +(1,941:19334288,20444510:331874,388497,0 +(1,941:19334288,20444510:331874,388497,0 +) +g1,941:19666162,20444510 +) +) +g1,941:19334288,20444510 +g1,941:19334288,20444510 +) +) +g1,941:19334288,20444510 +) +) +g1,941:19334288,20444510 +(1,941:19334288,20444510:665744,673524,285028 +g1,941:19800457,20444510 +k1,941:20000032,20444510:199575 +) +g1,941:20000032,20444510 +(1,941:20000032,20444510:639530,673524,285028 +k1,941:20199607,20444510:199575 +g1,941:20639562,20444510 +(1,941:20639562,20444510:0,655699,276639 +(1,941:20639562,20444510:0,0,0 +(1,941:20639562,20444510:0,0,0 +g1,941:20639562,20444510 +g1,941:20639562,20444510 +g1,941:20639562,20444510 +g1,941:20639562,20444510 +g1,941:20639562,20444510 +(1,941:20639562,20444510:0,0,0 +(1,941:20639562,20444510:331874,388497,9436 +(1,941:20639562,20444510:331874,388497,9436 +) +g1,941:20971436,20444510 +) +) +g1,941:20639562,20444510 +g1,941:20639562,20444510 +) +) +g1,941:20639562,20444510 +) +) +g1,941:20639562,20444510 +(1,941:20639562,20444510:665744,673524,285028 +g1,941:21105731,20444510 +k1,941:21305306,20444510:199575 +) +g1,941:21305306,20444510 +(1,941:21305306,20444510:639530,673524,285028 +k1,941:21504881,20444510:199575 +g1,941:21944836,20444510 +(1,941:21944836,20444510:0,655699,276639 +(1,941:21944836,20444510:0,0,0 +(1,941:21944836,20444510:0,0,0 +g1,941:21944836,20444510 +g1,941:21944836,20444510 +g1,941:21944836,20444510 +g1,941:21944836,20444510 +g1,941:21944836,20444510 +(1,941:21944836,20444510:0,0,0 +(1,941:21944836,20444510:331874,379060,0 +(1,941:21944836,20444510:331874,379060,0 ) +g1,941:22276710,20444510 ) -(1,651:6630773,9128789:25952256,909509,21233 -h1,651:6630773,9128789:0,0,0 -g1,651:9551582,9128789 -g1,651:11032040,9128789 -g1,651:15955891,9128789 -g1,651:18493314,9128789 -k1,651:28818183,9128789:3764846 -k1,651:32583029,9128789:3764846 ) -(1,651:6630773,9828725:25952256,32768,0 -(1,651:6630773,9828725:5505024,32768,0 -r1,674:12135797,9828725:5505024,32768,0 +g1,941:21944836,20444510 +g1,941:21944836,20444510 ) -k1,651:22359413,9828725:10223616 -k1,651:32583029,9828725:10223616 -) -] -(1,653:6630773,14556498:25952256,131072,0 -r1,674:32583029,14556498:25952256,131072,0 -g1,653:32583029,14556498 -g1,653:32583029,14556498 -) -(1,655:6630773,15876399:25952256,513147,7863 -k1,655:8596853,15876399:1966080 -k1,654:10012496,15876399:218956 -k1,654:12166729,15876399:218955 -k1,654:13037113,15876399:218956 -k1,654:16699330,15876399:218955 -k1,654:18343694,15876399:218956 -k1,654:19754095,15876399:218956 -k1,654:22173094,15876399:218955 -k1,654:24164799,15876399:218956 -k1,654:24999792,15876399:218955 -k1,654:29055881,15876399:218956 -k1,655:32583029,15876399:1966080 -) -(1,655:6630773,16717887:25952256,505283,126483 -k1,655:8596853,16717887:1966080 -k1,654:11989592,16717887:172955 -k1,654:13353993,16717887:172956 -k1,654:14178376,16717887:172955 -k1,654:17301106,16717887:172955 -k1,654:19694421,16717887:172955 -k1,654:22255509,16717887:172956 -k1,654:23079892,16717887:172955 -k1,654:25033460,16717887:172955 -k1,654:25737912,16717887:172955 -k1,654:28737436,16717887:172956 -k1,654:29596553,16717887:172955 -k1,654:32583029,16717887:1966080 -) -(1,655:6630773,17559375:25952256,513147,7863 -g1,655:8596853,17559375 -g1,654:9482244,17559375 -g1,654:10700558,17559375 -g1,654:13207965,17559375 -g1,654:14066486,17559375 -g1,654:17541860,17559375 -k1,655:30616949,17559375:11295787 -g1,655:32583029,17559375 -) -(1,656:6630773,19187295:25952256,505283,7863 -k1,656:26088411,19187295:19457638 -h1,656:26088411,19187295:0,0,0 -g1,656:28773421,19187295 -g1,656:30616949,19187295 -g1,656:32583029,19187295 -) -(1,657:6630773,20028783:25952256,505283,134348 -k1,657:10735950,20028783:4105177 -h1,656:10735950,20028783:0,0,0 -g1,656:13781408,20028783 -g1,656:17149958,20028783 -g1,656:20806211,20028783 -g1,656:23871329,20028783 -g1,656:25838064,20028783 -g1,656:29023113,20028783 -g1,657:30616949,20028783 -g1,657:32583029,20028783 -) -(1,657:6630773,21263487:25952256,131072,0 -r1,674:32583029,21263487:25952256,131072,0 -g1,657:32583029,21263487 -g1,657:34549109,21263487 -) -(1,661:6630773,24071055:25952256,32768,229376 -(1,661:6630773,24071055:0,32768,229376 -(1,661:6630773,24071055:5505024,32768,229376 -r1,674:12135797,24071055:5505024,262144,229376 -) -k1,661:6630773,24071055:-5505024 -) -(1,661:6630773,24071055:25952256,32768,0 -r1,674:32583029,24071055:25952256,32768,0 -) -) -(1,661:6630773,25675383:25952256,615776,151780 -(1,661:6630773,25675383:1974731,582746,14155 -g1,661:6630773,25675383 -g1,661:8605504,25675383 -) -g1,661:10904245,25675383 -g1,661:11961996,25675383 -g1,661:13695292,25675383 -k1,661:32583029,25675383:15886712 -g1,661:32583029,25675383 -) -(1,664:6630773,26910087:25952256,513147,134348 -k1,663:7492375,26910087:233767 -k1,663:8707216,26910087:233767 -k1,663:12527767,26910087:233766 -k1,663:13709185,26910087:233767 -k1,663:15686865,26910087:233767 -k1,663:16986903,26910087:233767 -k1,663:19713004,26910087:233767 -k1,663:21340721,26910087:233766 -k1,663:24650748,26910087:233767 -k1,663:29236761,26910087:233767 -k1,663:32583029,26910087:0 -) -(1,664:6630773,27751575:25952256,513147,134348 -k1,663:7915982,27751575:266124 -k1,663:9517075,27751575:266125 -k1,663:11089332,27751575:266124 -k1,663:12710741,27751575:266124 -k1,663:13592903,27751575:266124 -k1,663:16460807,27751575:266125 -k1,663:17746016,27751575:266124 -k1,663:18426916,27751575:266057 -k1,663:21535336,27751575:266124 -k1,663:22332958,27751575:266125 -k1,663:23250510,27751575:266124 -k1,663:24609119,27751575:266124 -k1,663:25333340,27751575:266124 -k1,663:29526382,27751575:266125 -k1,663:30554034,27751575:266124 -k1,663:32583029,27751575:0 -) -(1,664:6630773,28593063:25952256,505283,134348 -k1,663:9013563,28593063:180780 -k1,663:12684134,28593063:180779 -k1,663:13477676,28593063:180780 -k1,663:14677541,28593063:180780 -k1,663:15273145,28593063:180761 -k1,663:17911525,28593063:180780 -k1,663:19473148,28593063:180779 -k1,663:22040094,28593063:180780 -k1,663:23287144,28593063:180779 -k1,663:24843525,28593063:180780 -k1,663:26043390,28593063:180780 -k1,663:28308214,28593063:180779 -k1,663:29680439,28593063:180780 -k1,663:32583029,28593063:0 -) -(1,664:6630773,29434551:25952256,513147,134348 -k1,663:8633200,29434551:242785 -k1,663:9948155,29434551:242786 -k1,663:11476756,29434551:242785 -k1,663:13329762,29434551:242786 -k1,663:13928407,29434551:242785 -k1,663:16670081,29434551:242786 -k1,663:17525628,29434551:242785 -k1,663:18787499,29434551:242786 -k1,663:22599375,29434551:242785 -k1,663:24033606,29434551:242786 -k1,663:27250415,29434551:242785 -k1,663:28152493,29434551:242786 -k1,663:29598519,29434551:242785 -k1,663:32583029,29434551:0 -) -(1,664:6630773,30276039:25952256,513147,126483 -k1,663:7554976,30276039:272775 -k1,663:9217115,30276039:272776 -k1,663:12218154,30276039:272775 -k1,663:13118764,30276039:272775 -k1,663:14594780,30276039:272775 -k1,663:17285179,30276039:272776 -k1,663:17770872,30276039:272701 -k1,663:19781662,30276039:272775 -k1,663:20863808,30276039:272776 -k1,663:22155668,30276039:272775 -k1,663:25190786,30276039:272775 -k1,663:27588238,30276039:272775 -k1,663:29871659,30276039:272776 -k1,663:30827319,30276039:272775 -k1,663:32583029,30276039:0 -) -(1,664:6630773,31117527:25952256,513147,134348 -k1,663:8114290,31117527:199011 -k1,663:9417583,31117527:199011 -k1,663:10364360,31117527:199011 -k1,663:12601540,31117527:199010 -k1,663:13991996,31117527:199011 -k1,663:18204432,31117527:199011 -k1,663:19019481,31117527:199011 -k1,663:19807005,31117527:199011 -k1,663:20692178,31117527:199011 -k1,663:22169796,31117527:199011 -k1,663:23054969,31117527:199011 -k1,663:24273064,31117527:199010 -k1,663:25707429,31117527:199011 -k1,663:26565732,31117527:199011 -k1,663:29841003,31117527:199011 -k1,663:32583029,31117527:0 -) -(1,664:6630773,31959015:25952256,513147,134348 -g1,663:10520334,31959015 -g1,663:11738648,31959015 -g1,663:15242858,31959015 -g1,663:16101379,31959015 -g1,663:20023708,31959015 -g1,663:20838975,31959015 -g1,663:23329998,31959015 -k1,664:32583029,31959015:5906763 -g1,664:32583029,31959015 -) -(1,666:6630773,32800503:25952256,513147,126483 -h1,665:6630773,32800503:983040,0,0 -k1,665:8488198,32800503:246550 -k1,665:9753832,32800503:246549 -k1,665:11306515,32800503:246550 -k1,665:12874925,32800503:246549 -k1,665:13780767,32800503:246550 -k1,665:15046401,32800503:246549 -k1,665:17710574,32800503:246550 -k1,665:18825475,32800503:246549 -k1,665:20204487,32800503:246550 -k1,665:21543521,32800503:246549 -k1,665:22204866,32800503:246502 -k1,665:23102844,32800503:246550 -k1,665:24164661,32800503:246549 -k1,665:27250231,32800503:246550 -k1,665:31298523,32800503:246549 -k1,665:32583029,32800503:0 -) -(1,666:6630773,33641991:25952256,513147,126483 -k1,665:8975083,33641991:163927 -k1,665:9886777,33641991:163928 -k1,665:10775532,33641991:163927 -k1,665:12334065,33641991:163927 -k1,665:13689437,33641991:163927 -k1,665:16345699,33641991:163928 -k1,665:17794132,33641991:163927 -k1,665:19128532,33641991:163927 -k1,665:20424921,33641991:163927 -k1,665:21655120,33641991:163928 -k1,665:23349313,33641991:163927 -k1,665:24164668,33641991:163927 -k1,665:26008938,33641991:163927 -k1,665:27995422,33641991:163928 -k1,665:29178434,33641991:163927 -k1,665:32583029,33641991:0 -) -(1,666:6630773,34483479:25952256,513147,134348 -k1,665:10521951,34483479:160869 -k1,665:12063664,34483479:160869 -k1,665:13619139,34483479:160869 -k1,665:15268331,34483479:160869 -k1,665:16561662,34483479:160869 -k1,665:18002449,34483479:160869 -k1,665:19333791,34483479:160869 -k1,665:19850519,34483479:160868 -k1,665:22211432,34483479:160869 -k1,665:23023729,34483479:160869 -k1,665:24922613,34483479:160869 -k1,665:25892852,34483479:160869 -k1,665:28655500,34483479:160869 -k1,665:30146750,34483479:160869 -k1,665:30959047,34483479:160869 -k1,665:32583029,34483479:0 -) -(1,666:6630773,35324967:25952256,505283,126483 -g1,665:9032012,35324967 -g1,665:12721033,35324967 -g1,665:13533024,35324967 -g1,665:14751338,35324967 -g1,665:18110058,35324967 -k1,666:32583029,35324967:11898061 -g1,666:32583029,35324967 -) -(1,668:6630773,36166455:25952256,513147,134348 -h1,667:6630773,36166455:983040,0,0 -k1,667:9455142,36166455:227833 -k1,667:10299013,36166455:227833 -k1,667:11545931,36166455:227833 -k1,667:14365058,36166455:227833 -k1,667:15763365,36166455:227834 -k1,667:17123660,36166455:227833 -k1,667:20332726,36166455:227833 -k1,667:22090825,36166455:227833 -k1,667:22970086,36166455:227833 -k1,667:24935934,36166455:227833 -k1,667:26813964,36166455:227833 -k1,667:27851167,36166455:227833 -k1,667:29098086,36166455:227834 -k1,667:29740733,36166455:227804 -k1,667:32583029,36166455:0 -) -(1,668:6630773,37007943:25952256,513147,134348 -k1,667:7981514,37007943:159296 -k1,667:8929208,37007943:159296 -k1,667:11991094,37007943:159296 -k1,667:13341835,37007943:159296 -k1,667:14714202,37007943:159296 -k1,667:15682868,37007943:159296 -k1,667:17172545,37007943:159296 -k1,667:20821633,37007943:159296 -k1,667:21972489,37007943:159296 -k1,667:24728321,37007943:159296 -k1,667:25647835,37007943:159296 -k1,667:26826216,37007943:159296 -k1,667:28168437,37007943:159296 -k1,667:28987025,37007943:159296 -k1,667:30165406,37007943:159296 -k1,667:32583029,37007943:0 -) -(1,668:6630773,37849431:25952256,513147,134348 -k1,667:7940678,37849431:139432 -k1,667:9212571,37849431:139431 -k1,667:10099769,37849431:139432 -k1,667:12731534,37849431:139431 -k1,667:14264917,37849431:139432 -k1,667:16006048,37849431:139431 -k1,667:16804772,37849431:139432 -k1,667:17963288,37849431:139431 -k1,667:19862362,37849431:139432 -k1,667:20661085,37849431:139431 -k1,667:22925194,37849431:139432 -k1,667:25619874,37849431:139431 -k1,667:27272532,37849431:139432 -k1,667:28028001,37849431:139431 -k1,667:29186518,37849431:139432 -k1,667:29740733,37849431:139372 -k1,667:32583029,37849431:0 -) -(1,668:6630773,38690919:25952256,505283,126483 -g1,667:8021447,38690919 -g1,667:9391149,38690919 -g1,667:10722840,38690919 -g1,667:11669835,38690919 -g1,667:13177818,38690919 -g1,667:14028475,38690919 -g1,667:15640005,38690919 -g1,667:17030679,38690919 -g1,667:18844715,38690919 -g1,667:21168621,38690919 -g1,667:21782693,38690919 -k1,668:32583029,38690919:7110004 -g1,668:32583029,38690919 -) -(1,670:6630773,39532407:25952256,513147,134348 -h1,669:6630773,39532407:983040,0,0 -k1,669:9647308,39532407:157199 -k1,669:10823591,39532407:157198 -k1,669:13572084,39532407:157199 -k1,669:13942233,39532407:157157 -k1,669:15231893,39532407:157198 -k1,669:19274722,39532407:157199 -k1,669:21092602,39532407:157198 -k1,669:22268886,39532407:157199 -k1,669:25731066,39532407:157199 -k1,669:26547556,39532407:157198 -k1,669:27723840,39532407:157199 -k1,669:28295840,39532407:157157 -k1,669:29949225,39532407:157198 -k1,669:30722462,39532407:157199 -k1,670:32583029,39532407:0 -) -(1,670:6630773,40373895:25952256,513147,126483 -k1,669:9501632,40373895:195024 -k1,669:12559924,40373895:195024 -k1,669:13232705,40373895:195024 -k1,669:14598202,40373895:195024 -k1,669:15784786,40373895:195024 -k1,669:17046081,40373895:195024 -k1,669:19733440,40373895:195025 -k1,669:21322415,40373895:195024 -k1,669:22536524,40373895:195024 -k1,669:27054958,40373895:195024 -k1,669:30113250,40373895:195024 -k1,669:31478747,40373895:195024 -k1,669:32583029,40373895:0 -) -(1,670:6630773,41215383:25952256,513147,134348 -k1,669:8694854,41215383:199582 -k1,669:10914911,41215383:199582 -k1,669:12133578,41215383:199582 -k1,669:16599555,41215383:199583 -k1,669:17485299,41215383:199582 -k1,669:19073589,41215383:199582 -k1,669:19959333,41215383:199582 -k1,669:21329388,41215383:199582 -k1,669:25193743,41215383:199582 -k1,669:26412411,41215383:199583 -k1,669:29558492,41215383:199582 -k1,669:30949519,41215383:199582 -k1,669:32168186,41215383:199582 -k1,670:32583029,41215383:0 -) -(1,670:6630773,42056871:25952256,505283,7863 -k1,670:32583030,42056871:24282400 -g1,670:32583030,42056871 -) -] -(1,674:32583029,45706769:0,0,0 -g1,674:32583029,45706769 -) -) -] -(1,674:6630773,47279633:25952256,485622,11795 -(1,674:6630773,47279633:25952256,485622,11795 -(1,674:6630773,47279633:0,0,0 -v1,674:6630773,47279633:0,0,0 -) -g1,674:6830002,47279633 -k1,674:31786110,47279633:24956108 -) -) -] -(1,674:4262630,4025873:0,0,0 -[1,674:-473656,4025873:0,0,0 -(1,674:-473656,-710413:0,0,0 -(1,674:-473656,-710413:0,0,0 -g1,674:-473656,-710413 -) -g1,674:-473656,-710413 ) -] +g1,941:21944836,20444510 ) -] -!15679 -}38 -Input:233:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:234:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:235:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:236:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:237:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:238:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:239:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:240:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:241:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:242:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:243:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:244:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:245:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:246:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:247:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:248:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1499 -{39 -[1,692:4262630,47279633:28320399,43253760,0 -(1,692:4262630,4025873:0,0,0 -[1,692:-473656,4025873:0,0,0 -(1,692:-473656,-710413:0,0,0 -(1,692:-473656,-644877:0,0,0 -k1,692:-473656,-644877:-65536 ) -(1,692:-473656,4736287:0,0,0 -k1,692:-473656,4736287:5209943 +g1,941:21944836,20444510 +(1,941:21944836,20444510:665744,673524,285028 +g1,941:22411005,20444510 +k1,941:22610580,20444510:199575 ) -g1,692:-473656,-710413 +g1,941:22610580,20444510 +(1,941:22610580,20444510:639530,673524,285028 +k1,941:22810155,20444510:199575 +g1,941:23250110,20444510 +(1,941:23250110,20444510:0,650981,281357 +(1,941:23250110,20444510:0,0,0 +(1,941:23250110,20444510:0,0,0 +g1,941:23250110,20444510 +g1,941:23250110,20444510 +g1,941:23250110,20444510 +g1,941:23250110,20444510 +g1,941:23250110,20444510 +(1,941:23250110,20444510:0,0,0 +(1,941:23250110,20444510:331874,379060,9436 +(1,941:23250110,20444510:331874,379060,9436 ) -] +g1,941:23581984,20444510 ) -[1,692:6630773,47279633:25952256,43253760,0 -[1,692:6630773,4812305:25952256,786432,0 -(1,692:6630773,4812305:25952256,505283,11795 -(1,692:6630773,4812305:25952256,505283,11795 -g1,692:3078558,4812305 -[1,692:3078558,4812305:0,0,0 -(1,692:3078558,2439708:0,1703936,0 -k1,692:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,692:2537886,2439708:1179648,16384,0 ) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,692:3078558,1915420:16384,1179648,0 +g1,941:23250110,20444510 +g1,941:23250110,20444510 ) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 ) -] +g1,941:23250110,20444510 ) ) +g1,941:23250110,20444510 +(1,941:23250110,20444510:665744,673524,285028 +g1,941:23716279,20444510 +k1,941:23915854,20444510:199575 ) -] -[1,692:3078558,4812305:0,0,0 -(1,692:3078558,2439708:0,1703936,0 -g1,692:29030814,2439708 -g1,692:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,692:36151628,1915420:16384,1179648,0 +g1,941:23915854,20444510 +(1,941:23915854,20444510:639530,673524,285028 +k1,941:24115429,20444510:199575 +g1,941:24555384,20444510 +(1,941:24555384,20444510:0,655699,276639 +(1,941:24555384,20444510:0,0,0 +(1,941:24555384,20444510:0,0,0 +g1,941:24555384,20444510 +g1,941:24555384,20444510 +g1,941:24555384,20444510 +g1,941:24555384,20444510 +g1,941:24555384,20444510 +(1,941:24555384,20444510:0,0,0 +(1,941:24555384,20444510:331874,388497,9436 +(1,941:24555384,20444510:331874,388497,9436 ) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 +g1,941:24887258,20444510 ) -] ) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,692:37855564,2439708:1179648,16384,0 +g1,941:24555384,20444510 +g1,941:24555384,20444510 ) ) -k1,692:3078556,2439708:-34777008 +g1,941:24555384,20444510 ) -] -[1,692:3078558,4812305:0,0,0 -(1,692:3078558,49800853:0,16384,2228224 -k1,692:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,692:2537886,49800853:1179648,16384,0 ) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,692:3078558,51504789:16384,1179648,0 +g1,941:24555384,20444510 +(1,941:24555384,20444510:665744,673524,285028 +g1,941:25021553,20444510 +k1,941:25221128,20444510:199575 ) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 +g1,941:25221128,20444510 +(1,941:25221128,20444510:639530,673524,285028 +k1,941:25420703,20444510:199575 +g1,941:25860658,20444510 +(1,941:25860658,20444510:0,655699,276639 +(1,941:25860658,20444510:0,0,0 +(1,941:25860658,20444510:0,0,0 +g1,941:25860658,20444510 +g1,941:25860658,20444510 +g1,941:25860658,20444510 +g1,941:25860658,20444510 +g1,941:25860658,20444510 +(1,941:25860658,20444510:0,0,0 +(1,941:25860658,20444510:331874,379060,0 +(1,941:25860658,20444510:331874,379060,0 ) -] +g1,941:26192532,20444510 ) ) +g1,941:25860658,20444510 +g1,941:25860658,20444510 ) -] -[1,692:3078558,4812305:0,0,0 -(1,692:3078558,49800853:0,16384,2228224 -g1,692:29030814,49800853 -g1,692:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,692:36151628,51504789:16384,1179648,0 ) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 +g1,941:25860658,20444510 ) -] ) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,692:37855564,49800853:1179648,16384,0 +g1,941:25860658,20444510 +(1,941:25860658,20444510:665744,673524,285028 +g1,941:26326827,20444510 +k1,941:26526402,20444510:199575 ) +g1,941:26526402,20444510 +(1,941:26526402,20444510:639530,673524,285028 +k1,941:26725977,20444510:199575 +g1,941:27165932,20444510 +(1,941:27165932,20444510:0,655699,276639 +(1,941:27165932,20444510:0,0,0 +(1,941:27165932,20444510:0,0,0 +g1,941:27165932,20444510 +g1,941:27165932,20444510 +g1,941:27165932,20444510 +g1,941:27165932,20444510 +g1,941:27165932,20444510 +(1,941:27165932,20444510:0,0,0 +(1,941:27165932,20444510:331874,388497,9436 +(1,941:27165932,20444510:331874,388497,9436 ) -k1,692:3078556,49800853:-34777008 +g1,941:27497806,20444510 ) -] -g1,692:6630773,4812305 -k1,692:22348274,4812305:14920583 -g1,692:23970945,4812305 -g1,692:24793421,4812305 -g1,692:27528893,4812305 -g1,692:28938572,4812305 -) -) -] -[1,692:6630773,45706769:25952256,40108032,0 -(1,692:6630773,45706769:25952256,40108032,0 -(1,692:6630773,45706769:0,0,0 -g1,692:6630773,45706769 -) -[1,692:6630773,45706769:25952256,40108032,0 -(1,671:6630773,6254097:25952256,32768,229376 -(1,671:6630773,6254097:0,32768,229376 -(1,671:6630773,6254097:5505024,32768,229376 -r1,692:12135797,6254097:5505024,262144,229376 -) -k1,671:6630773,6254097:-5505024 -) -(1,671:6630773,6254097:25952256,32768,0 -r1,692:32583029,6254097:25952256,32768,0 -) -) -(1,671:6630773,7858425:25952256,606339,161218 -(1,671:6630773,7858425:1974731,582746,14155 -g1,671:6630773,7858425 -g1,671:8605504,7858425 -) -g1,671:11784262,7858425 -g1,671:13493965,7858425 -g1,671:17548809,7858425 -k1,671:32583029,7858425:11079253 -g1,671:32583029,7858425 -) -(1,674:6630773,9093129:25952256,505283,134348 -k1,673:9973437,9093129:144507 -k1,673:13290541,9093129:144506 -k1,673:14910263,9093129:144507 -k1,673:16722005,9093129:144506 -k1,673:18452483,9093129:144507 -k1,673:19788435,9093129:144507 -k1,673:23720922,9093129:144506 -k1,673:25056874,9093129:144507 -k1,673:28342521,9093129:144506 -k1,673:29771534,9093129:144507 -k1,673:32583029,9093129:0 -) -(1,674:6630773,9934617:25952256,513147,134348 -k1,673:8572247,9934617:244747 -k1,673:11989592,9934617:244747 -k1,673:13501805,9934617:244747 -k1,673:16434183,9934617:244747 -k1,673:18175117,9934617:244747 -k1,673:19411425,9934617:244748 -k1,673:23356335,9934617:244747 -k1,673:25423638,9934617:244747 -k1,673:27779300,9934617:244747 -k1,673:29581838,9934617:244747 -k1,673:30959047,9934617:244747 -k1,673:32583029,9934617:0 -) -(1,674:6630773,10776105:25952256,505283,134348 -k1,673:8432610,10776105:194894 -k1,673:11836802,10776105:194894 -k1,673:13103865,10776105:194894 -k1,673:13914796,10776105:194893 -k1,673:16740961,10776105:194894 -k1,673:17587283,10776105:194894 -k1,673:20002537,10776105:194894 -k1,673:22575733,10776105:194894 -k1,673:23453512,10776105:194894 -k1,673:26543786,10776105:194893 -k1,673:27871142,10776105:194894 -k1,673:29132307,10776105:194894 -k1,673:31124198,10776105:194894 -k1,673:32583029,10776105:0 -) -(1,674:6630773,11617593:25952256,505283,134348 -k1,673:10112832,11617593:249168 -k1,673:11553445,11617593:249168 -k1,673:14754354,11617593:249167 -k1,673:17938224,11617593:249168 -k1,673:21263652,11617593:249168 -k1,673:24685418,11617593:249168 -k1,673:26409801,11617593:249168 -k1,673:27014828,11617593:249167 -k1,673:29047231,11617593:249168 -k1,673:31648486,11617593:249168 -k1,673:32583029,11617593:0 -) -(1,674:6630773,12459081:25952256,513147,134348 -k1,673:7477592,12459081:187527 -k1,673:9620057,12459081:187526 -k1,673:11250031,12459081:187527 -k1,673:13729351,12459081:187526 -k1,673:17263146,12459081:187527 -k1,673:18944238,12459081:187526 -k1,673:19817927,12459081:187527 -k1,673:22490579,12459081:187527 -k1,673:23155862,12459081:187526 -k1,673:24513862,12459081:187527 -k1,673:25692948,12459081:187526 -k1,673:27163670,12459081:187527 -k1,673:28002624,12459081:187526 -k1,673:31266411,12459081:187527 -k1,674:32583029,12459081:0 -) -(1,674:6630773,13300569:25952256,505283,134348 -k1,673:10274902,13300569:221839 -k1,673:15151763,13300569:221839 -k1,673:16392687,13300569:221839 -k1,673:19328373,13300569:221840 -k1,673:22185415,13300569:221839 -k1,673:25483514,13300569:221839 -k1,673:26896798,13300569:221839 -k1,673:29410431,13300569:221839 -k1,673:32583029,13300569:0 -) -(1,674:6630773,14142057:25952256,513147,126483 -g1,673:8166936,14142057 -g1,673:9113931,14142057 -k1,674:32583029,14142057:21318206 -g1,674:32583029,14142057 -) -(1,676:6630773,14983545:25952256,513147,95026 -h1,675:6630773,14983545:983040,0,0 -k1,675:9135995,14983545:250784 -k1,675:10491062,14983545:250785 -k1,675:12422189,14983545:250784 -k1,675:13332265,14983545:250784 -k1,675:16340805,14983545:250785 -k1,675:18602234,14983545:250784 -k1,675:20044463,14983545:250784 -k1,675:23136889,14983545:250785 -k1,675:25605411,14983545:250784 -k1,675:27894365,14983545:250784 -k1,675:30031276,14983545:250785 -k1,675:30637920,14983545:250784 -k1,675:32583029,14983545:0 -) -(1,676:6630773,15825033:25952256,513147,126483 -k1,675:7499933,15825033:182998 -k1,675:9652288,15825033:182998 -k1,675:11026731,15825033:182998 -k1,675:11869020,15825033:182997 -k1,675:15128933,15825033:182998 -k1,675:16503376,15825033:182998 -k1,675:19712171,15825033:182998 -k1,675:20581331,15825033:182998 -k1,675:22661596,15825033:182998 -k1,675:23332165,15825033:182981 -k1,675:26440690,15825033:182998 -k1,675:29956849,15825033:182998 -k1,675:30822732,15825033:182998 -k1,676:32583029,15825033:0 -) -(1,676:6630773,16666521:25952256,513147,134348 -k1,675:8686161,16666521:242662 -k1,675:9460320,16666521:242662 -k1,675:10722067,16666521:242662 -k1,675:14269710,16666521:242662 -k1,675:15171664,16666521:242662 -k1,675:15770186,16666521:242662 -k1,675:18304642,16666521:242662 -k1,675:21389600,16666521:242662 -k1,675:24598421,16666521:242662 -k1,675:25497098,16666521:242662 -k1,675:30805693,16666521:242662 -k1,676:32583029,16666521:0 -) -(1,676:6630773,17508009:25952256,505283,126483 -k1,675:8786470,17508009:230249 -k1,675:10213405,17508009:230248 -k1,675:12568331,17508009:230249 -k1,675:15984940,17508009:230249 -(1,675:15984940,17508009:0,435480,115847 -r1,692:17750054,17508009:1765114,551327,115847 -k1,675:15984940,17508009:-1765114 -) -(1,675:15984940,17508009:1765114,435480,115847 -g1,675:16691641,17508009 -g1,675:17395065,17508009 -h1,675:17746777,17508009:0,411205,112570 -) -k1,675:17980302,17508009:230248 -k1,675:19311556,17508009:230249 -k1,675:21196589,17508009:230249 -k1,675:25528081,17508009:230249 -(1,675:25528081,17508009:0,414482,115847 -r1,692:25886347,17508009:358266,530329,115847 -k1,675:25528081,17508009:-358266 -) -(1,675:25528081,17508009:358266,414482,115847 -k1,675:25528081,17508009:3277 -h1,675:25883070,17508009:0,411205,112570 -) -k1,675:26290265,17508009:230248 -k1,675:26876374,17508009:230249 -k1,675:29791633,17508009:230249 -(1,675:29791633,17508009:0,414482,115847 -r1,692:30149899,17508009:358266,530329,115847 -k1,675:29791633,17508009:-358266 -) -(1,675:29791633,17508009:358266,414482,115847 -k1,675:29791633,17508009:3277 -h1,675:30146622,17508009:0,411205,112570 -) -k1,675:30553817,17508009:230248 -k1,675:31554769,17508009:230249 -k1,676:32583029,17508009:0 -) -(1,676:6630773,18349497:25952256,513147,126483 -k1,675:8804310,18349497:242191 -k1,675:10237945,18349497:242190 -(1,675:10237945,18349497:0,435480,115847 -r1,692:10596211,18349497:358266,551327,115847 -k1,675:10237945,18349497:-358266 -) -(1,675:10237945,18349497:358266,435480,115847 -k1,675:10237945,18349497:3277 -h1,675:10592934,18349497:0,411205,112570 -) -k1,675:10838402,18349497:242191 -k1,675:11436452,18349497:242190 -k1,675:14610068,18349497:242191 -k1,675:16048946,18349497:242191 -k1,675:19477496,18349497:242190 -(1,675:19477496,18349497:0,452978,115847 -r1,692:21946033,18349497:2468537,568825,115847 -k1,675:19477496,18349497:-2468537 -) -(1,675:19477496,18349497:2468537,452978,115847 -k1,675:19477496,18349497:3277 -h1,675:21942756,18349497:0,411205,112570 -) -k1,675:22188224,18349497:242191 -k1,675:23531419,18349497:242190 -k1,675:24946049,18349497:242191 -k1,675:29289482,18349497:242190 -k1,675:29887533,18349497:242191 -k1,676:32583029,18349497:0 -) -(1,676:6630773,19190985:25952256,662897,126483 -(1,675:6630773,19190985:0,452978,115847 -r1,692:8747598,19190985:2116825,568825,115847 -k1,675:6630773,19190985:-2116825 -) -(1,675:6630773,19190985:2116825,452978,115847 -k1,675:6630773,19190985:3277 -h1,675:8744321,19190985:0,411205,112570 -) -k1,675:9010692,19190985:263094 -k1,675:10465231,19190985:263094 -k1,675:11084185,19190985:263094 -k1,675:14528396,19190985:263093 -k1,675:17549245,19190985:263094 -(1,675:17549245,19190985:0,424981,115847 -r1,692:17907511,19190985:358266,540828,115847 -k1,675:17549245,19190985:-358266 -) -(1,675:17549245,19190985:358266,424981,115847 -k1,675:17549245,19190985:3277 -h1,675:17904234,19190985:0,411205,112570 -) -k1,675:18344275,19190985:263094 -k1,675:19560918,19190985:263094 -k1,675:20871277,19190985:263094 -k1,675:22418877,19190985:263094 -k1,675:23633554,19190985:263094 -k1,675:26684549,19190985:263093 -$1,675:26684549,19190985 -(1,675:26684549,19190985:994181,662897,96010 -[1,675:26684549,18580516:595722,26214,706479 -] -[1,675:27280271,19190985:398459,662897,0 -(1,675:27280271,19190985:398459,481690,0 -) -] -) -$1,675:27678730,19190985 -k1,675:27941824,19190985:263094 -k1,675:29073270,19190985:263094 -k1,675:30466204,19190985:263094 -(1,675:30466204,19190985:0,452978,115847 -r1,692:32583029,19190985:2116825,568825,115847 -k1,675:30466204,19190985:-2116825 -) -(1,675:30466204,19190985:2116825,452978,115847 -k1,675:30466204,19190985:3277 -h1,675:32579752,19190985:0,411205,112570 -) -k1,675:32583029,19190985:0 -) -(1,676:6630773,20032473:25952256,505283,134348 -g1,675:8223953,20032473 -(1,675:8223953,20032473:0,424981,115847 -r1,692:8582219,20032473:358266,540828,115847 -k1,675:8223953,20032473:-358266 -) -(1,675:8223953,20032473:358266,424981,115847 -k1,675:8223953,20032473:3277 -h1,675:8578942,20032473:0,411205,112570 -) -g1,675:8781448,20032473 -g1,675:9666839,20032473 -g1,675:10654466,20032473 -k1,676:32583030,20032473:18336536 -g1,676:32583030,20032473 -) -(1,678:6630773,20873961:25952256,505283,134348 -h1,677:6630773,20873961:983040,0,0 -k1,677:10722589,20873961:145893 -k1,677:11634598,20873961:145893 -k1,677:13791136,20873961:145893 -k1,677:17950454,20873961:145893 -k1,677:18712385,20873961:145893 -k1,677:19214138,20873961:145893 -k1,677:21375264,20873961:145894 -k1,677:24597417,20873961:145893 -k1,677:25734870,20873961:145893 -k1,677:27918933,20873961:145893 -k1,677:28750988,20873961:145893 -k1,677:30020824,20873961:145893 -k1,677:30782755,20873961:145893 -k1,678:32583029,20873961:0 -) -(1,678:6630773,21715449:25952256,505283,134348 -k1,677:8006046,21715449:157614 -k1,677:10834907,21715449:157614 -k1,677:15768130,21715449:157614 -k1,677:16917304,21715449:157614 -k1,677:19878547,21715449:157613 -k1,677:23103246,21715449:157614 -k1,677:25466802,21715449:157614 -k1,677:27694043,21715449:157614 -k1,677:30035972,21715449:157614 -k1,677:31478747,21715449:157614 -k1,677:32583029,21715449:0 -) -(1,678:6630773,22556937:25952256,505283,134348 -k1,677:7568852,22556937:190313 -k1,677:10438277,22556937:190313 -k1,677:11896057,22556937:190314 -k1,677:13275193,22556937:190313 -k1,677:14656951,22556937:190313 -k1,677:17532275,22556937:190314 -k1,677:18408750,22556937:190313 -k1,677:19987771,22556937:190313 -k1,677:20864246,22556937:190313 -k1,677:22563198,22556937:190313 -k1,677:24139598,22556937:190314 -k1,677:25012796,22556937:190313 -(1,677:25012796,22556937:0,452978,115847 -r1,692:26426197,22556937:1413401,568825,115847 -k1,677:25012796,22556937:-1413401 -) -(1,677:25012796,22556937:1413401,452978,115847 -k1,677:25012796,22556937:3277 -h1,677:26422920,22556937:0,411205,112570 -) -k1,677:26616510,22556937:190313 -k1,677:27338321,22556937:190314 -k1,677:29840089,22556937:190313 -k1,677:31227089,22556937:190313 -k1,678:32583029,22556937:0 -) -(1,678:6630773,23398425:25952256,513147,126483 -k1,677:8268782,23398425:279448 -k1,677:9215386,23398425:279448 -(1,677:9215386,23398425:0,452978,115847 -r1,692:10980499,23398425:1765113,568825,115847 -k1,677:9215386,23398425:-1765113 -) -(1,677:9215386,23398425:1765113,452978,115847 -k1,677:9215386,23398425:3277 -h1,677:10977222,23398425:0,411205,112570 -) -k1,677:11259946,23398425:279447 -k1,677:12070891,23398425:279448 -k1,677:13416610,23398425:279448 -k1,677:16110404,23398425:279448 -k1,677:18611523,23398425:279448 -k1,677:19542398,23398425:279447 -k1,677:21152227,23398425:279448 -k1,677:23442320,23398425:279448 -k1,677:24713328,23398425:279448 -k1,677:27671887,23398425:279447 -k1,677:29649373,23398425:279448 -k1,677:31966991,23398425:279448 -k1,677:32583029,23398425:0 -) -(1,678:6630773,24239913:25952256,513147,126483 -k1,677:9914728,24239913:207695 -k1,677:12927363,24239913:207694 -k1,677:14207227,24239913:207695 -k1,677:16742104,24239913:207694 -k1,677:17759169,24239913:207695 -k1,677:19475502,24239913:207694 -k1,677:24128504,24239913:207695 -k1,677:25022360,24239913:207694 -k1,677:26551916,24239913:207695 -k1,677:27418902,24239913:207694 -k1,677:27982457,24239913:207695 -k1,677:31266411,24239913:207694 -k1,678:32583029,24239913:0 -) -(1,678:6630773,25081401:25952256,513147,134348 -k1,677:8661130,25081401:218287 -k1,677:9832965,25081401:218286 -k1,677:11155534,25081401:218287 -k1,677:13022707,25081401:218287 -k1,677:14188644,25081401:218286 -k1,677:17242018,25081401:218287 -k1,677:18784112,25081401:218267 -k1,677:20618517,25081401:218287 -k1,677:23021119,25081401:218287 -k1,677:25277575,25081401:218286 -k1,677:26182024,25081401:218287 -k1,677:28055094,25081401:218286 -k1,677:31089463,25081401:218287 -k1,677:32583029,25081401:0 -) -(1,678:6630773,25922889:25952256,505283,115847 -k1,677:7525636,25922889:208701 -(1,677:7525636,25922889:0,435480,115847 -r1,692:10697597,25922889:3171961,551327,115847 -k1,677:7525636,25922889:-3171961 -) -(1,677:7525636,25922889:3171961,435480,115847 -g1,677:8584049,25922889 -g1,677:9639185,25922889 -h1,677:10694320,25922889:0,411205,112570 -) -k1,677:11079967,25922889:208700 -k1,677:11974830,25922889:208701 -k1,677:16150425,25922889:208701 -k1,677:19175207,25922889:208700 -k1,677:21422078,25922889:208701 -k1,677:22316940,25922889:208700 -k1,677:25830622,25922889:208701 -k1,677:28923562,25922889:208701 -k1,677:29815147,25922889:208700 -k1,677:31490544,25922889:208701 -k1,677:32583029,25922889:0 -) -(1,678:6630773,26764377:25952256,513147,134348 -k1,677:8599506,26764377:238583 -k1,677:10906405,26764377:238583 -k1,677:13183158,26764377:238583 -k1,677:14107903,26764377:238583 -k1,677:17321165,26764377:238583 -k1,677:19755859,26764377:238583 -k1,677:21140666,26764377:238582 -(1,677:21140666,26764377:0,452978,115847 -r1,692:23257491,26764377:2116825,568825,115847 -k1,677:21140666,26764377:-2116825 -) -(1,677:21140666,26764377:2116825,452978,115847 -k1,677:21140666,26764377:3277 -h1,677:23254214,26764377:0,411205,112570 -) -k1,677:23669744,26764377:238583 -k1,677:24861876,26764377:238583 -k1,677:26869276,26764377:238583 -k1,677:29037239,26764377:238583 -k1,677:29631682,26764377:238583 -(1,677:29631682,26764377:0,452978,115847 -r1,692:31396795,26764377:1765113,568825,115847 -k1,677:29631682,26764377:-1765113 -) -(1,677:29631682,26764377:1765113,452978,115847 -k1,677:29631682,26764377:3277 -h1,677:31393518,26764377:0,411205,112570 -) -k1,677:31635378,26764377:238583 -k1,677:32583029,26764377:0 -) -(1,678:6630773,27605865:25952256,513147,134348 -k1,677:8782636,27605865:205444 -k1,677:10723473,27605865:205444 -k1,677:12060724,27605865:205444 -k1,677:12925460,27605865:205444 -k1,677:14827631,27605865:205444 -k1,677:20201900,27605865:205444 -k1,677:22262013,27605865:205444 -k1,677:23276827,27605865:205444 -k1,677:24654710,27605865:205444 -k1,677:27622497,27605865:205444 -k1,677:30114492,27605865:205444 -(1,677:30114492,27605865:0,452978,115847 -r1,692:32583029,27605865:2468537,568825,115847 -k1,677:30114492,27605865:-2468537 -) -(1,677:30114492,27605865:2468537,452978,115847 -k1,677:30114492,27605865:3277 -h1,677:32579752,27605865:0,411205,112570 -) -k1,677:32583029,27605865:0 -) -(1,678:6630773,28447353:25952256,505283,115847 -g1,677:8021447,28447353 -(1,677:8021447,28447353:0,452978,115847 -r1,692:11193407,28447353:3171960,568825,115847 -k1,677:8021447,28447353:-3171960 -) -(1,677:8021447,28447353:3171960,452978,115847 -k1,677:8021447,28447353:3277 -h1,677:11190130,28447353:0,411205,112570 -) -k1,678:32583029,28447353:21215952 -g1,678:32583029,28447353 -) -(1,679:6630773,31254921:25952256,32768,229376 -(1,679:6630773,31254921:0,32768,229376 -(1,679:6630773,31254921:5505024,32768,229376 -r1,692:12135797,31254921:5505024,262144,229376 -) -k1,679:6630773,31254921:-5505024 -) -(1,679:6630773,31254921:25952256,32768,0 -r1,692:32583029,31254921:25952256,32768,0 -) -) -(1,679:6630773,32859249:25952256,606339,14155 -(1,679:6630773,32859249:1974731,582746,14155 -g1,679:6630773,32859249 -g1,679:8605504,32859249 -) -g1,679:12231742,32859249 -g1,679:15055033,32859249 -g1,679:16764736,32859249 -k1,679:32583029,32859249:11752439 -g1,679:32583029,32859249 -) -(1,682:6630773,34093953:25952256,505283,134348 -k1,681:8650597,34093953:236589 -k1,681:11473891,34093953:236588 -k1,681:12326518,34093953:236589 -k1,681:12977912,34093953:236551 -k1,681:14608451,34093953:236588 -k1,681:18121185,34093953:236589 -k1,681:22301730,34093953:236588 -k1,681:23557404,34093953:236589 -k1,681:26072679,34093953:236588 -k1,681:30632678,34093953:236589 -k1,682:32583029,34093953:0 -) -(1,682:6630773,34935441:25952256,513147,126483 -k1,681:8657045,34935441:162428 -k1,681:10405445,34935441:162429 -k1,681:11559433,34935441:162428 -k1,681:14475028,34935441:162428 -k1,681:15828902,34935441:162429 -k1,681:19845502,34935441:162428 -k1,681:21112212,34935441:162428 -k1,681:22022406,34935441:162428 -k1,681:23698061,34935441:162429 -k1,681:24511917,34935441:162428 -k1,681:26127934,34935441:162428 -k1,681:27493604,34935441:162429 -k1,681:29569028,34935441:162428 -k1,682:32583029,34935441:0 -) -(1,682:6630773,35776929:25952256,505283,126483 -k1,681:7852832,35776929:214115 -k1,681:9171230,35776929:214116 -k1,681:10133111,35776929:214115 -k1,681:12638365,35776929:214115 -k1,681:13924650,35776929:214116 -k1,681:14754803,35776929:214115 -k1,681:17600190,35776929:214116 -k1,681:18465733,35776929:214115 -k1,681:19698933,35776929:214115 -k1,681:21634024,35776929:214116 -k1,681:24385693,35776929:214115 -k1,681:25215846,35776929:214115 -k1,681:29696356,35776929:214116 -k1,681:30929556,35776929:214115 -k1,681:32583029,35776929:0 -) -(1,682:6630773,36618417:25952256,505283,134348 -g1,681:10538029,36618417 -g1,681:13048713,36618417 -g1,681:13779439,36618417 -g1,681:15491894,36618417 -g1,681:16303885,36618417 -g1,681:17269230,36618417 -g1,681:19808094,36618417 -k1,682:32583029,36618417:10808855 -g1,682:32583029,36618417 -) -v1,684:6630773,37969174:0,393216,0 -(1,685:6630773,43514523:25952256,5938565,0 -g1,685:6630773,43514523 -g1,685:6303093,43514523 -r1,692:6401397,43514523:98304,5938565,0 -g1,685:6600626,43514523 -g1,685:6797234,43514523 -[1,685:6797234,43514523:25785795,5938565,0 -(1,685:6797234,38331247:25785795,755289,196608 -(1,684:6797234,38331247:0,755289,196608 -r1,692:8134168,38331247:1336934,951897,196608 -k1,684:6797234,38331247:-1336934 -) -(1,684:6797234,38331247:1336934,755289,196608 -) -k1,684:8296260,38331247:162092 -k1,684:8623940,38331247:327680 -k1,684:10251418,38331247:162093 -k1,684:11029548,38331247:162092 -k1,684:15284363,38331247:162092 -k1,684:16637901,38331247:162093 -k1,684:21152239,38331247:162092 -k1,684:24486929,38331247:162092 -k1,684:27368111,38331247:162093 -k1,684:31044899,38331247:162092 -k1,685:32583029,38331247:0 -) -(1,685:6797234,39172735:25785795,513147,126483 -k1,684:10262319,39172735:221053 -k1,684:12368842,39172735:221052 -k1,684:17505751,39172735:221053 -k1,684:18718363,39172735:221052 -k1,684:22000603,39172735:221053 -k1,684:23527789,39172735:221053 -k1,684:24940286,39172735:221052 -k1,684:27046810,39172735:221053 -k1,684:28895121,39172735:221052 -k1,684:31931601,39172735:221053 -k1,684:32583029,39172735:0 -) -(1,685:6797234,40014223:25785795,505283,134348 -k1,684:9935677,40014223:244373 -k1,684:13302841,40014223:244373 -k1,684:17194948,40014223:244373 -k1,684:17854118,40014223:244327 -k1,684:21069238,40014223:244373 -k1,684:23933740,40014223:244373 -k1,684:27948399,40014223:244373 -k1,684:31554769,40014223:244373 -k1,685:32583029,40014223:0 -) -(1,685:6797234,40855711:25785795,513147,134348 -k1,684:9318404,40855711:259523 -k1,684:12694818,40855711:259522 -k1,684:13605769,40855711:259523 -k1,684:14884377,40855711:259523 -k1,684:16729870,40855711:259522 -k1,684:17648685,40855711:259523 -k1,684:22174602,40855711:259523 -k1,684:23061959,40855711:259522 -k1,684:24340567,40855711:259523 -k1,684:28040075,40855711:259523 -$1,684:28040075,40855711 -k1,684:28628260,40855711:189726 -k1,684:29386184,40855711:189727 -k1,684:29974369,40855711:189726 -k1,684:30732292,40855711:189726 -$1,684:31130751,40855711 -k1,684:31563944,40855711:259523 -k1,684:32583029,40855711:0 -) -(1,685:6797234,41697199:25785795,513147,134348 -k1,684:9513016,41697199:186092 -$1,684:9513016,41697199 -k1,684:10028310,41697199:116835 -k1,684:10713343,41697199:116836 -$1,684:11111802,41697199 -k1,684:11297894,41697199:186092 -k1,684:12584991,41697199:186092 -k1,684:16372285,41697199:186091 -k1,684:17945774,41697199:186092 -k1,684:19150951,41697199:186092 -k1,684:22176718,41697199:186092 -k1,684:23554255,41697199:186092 -k1,684:24271844,41697199:186092 -k1,684:27519122,41697199:186091 -k1,684:29185017,41697199:186092 -k1,684:31896867,41697199:186092 -k1,684:32583029,41697199:0 -) -(1,685:6797234,42538687:25785795,513147,126483 -k1,684:8010911,42538687:194592 -k1,684:10048374,42538687:194591 -k1,684:10902258,42538687:194592 -k1,684:12115934,42538687:194591 -k1,684:14193375,42538687:194592 -k1,684:18001621,42538687:194591 -k1,684:18768342,42538687:194592 -k1,684:21189846,42538687:194591 -k1,684:22970409,42538687:194592 -k1,684:24928574,42538687:194591 -k1,684:25774594,42538687:194592 -k1,684:27671155,42538687:194591 -k1,684:31116333,42538687:194592 -k1,684:32583029,42538687:0 -) -(1,685:6797234,43380175:25785795,505283,134348 -g1,684:8740376,43380175 -g1,684:10935176,43380175 -g1,684:11820567,43380175 -g1,684:14992509,43380175 -g1,684:19249072,43380175 -k1,685:32583029,43380175:11149642 -g1,685:32583029,43380175 -) -] -g1,685:32583029,43514523 -) -h1,685:6630773,43514523:0,0,0 -(1,688:6630773,44865281:25952256,513147,134348 -h1,687:6630773,44865281:983040,0,0 -k1,687:8295136,44865281:211430 -k1,687:9038063,44865281:211430 -k1,687:12458792,44865281:211431 -k1,687:13321650,44865281:211430 -k1,687:15041063,44865281:211430 -k1,687:15868531,44865281:211430 -k1,687:17736711,44865281:211430 -k1,687:19232647,44865281:211430 -k1,687:20060116,44865281:211431 -k1,687:20686376,44865281:211417 -k1,687:25269714,44865281:211431 -k1,687:28506941,44865281:211430 -k1,687:31540351,44865281:211430 -k1,688:32583029,44865281:0 -) -(1,688:6630773,45706769:25952256,505283,134348 -g1,687:8620446,45706769 -g1,687:10830320,45706769 -g1,687:15061324,45706769 -g1,687:17288237,45706769 -g1,687:18173628,45706769 -g1,687:20110872,45706769 -g1,687:23507603,45706769 -g1,687:24322870,45706769 -k1,688:32583029,45706769:5719328 -g1,688:32583029,45706769 -) -] -(1,692:32583029,45706769:0,0,0 -g1,692:32583029,45706769 -) -) -] -(1,692:6630773,47279633:25952256,0,0 -h1,692:6630773,47279633:25952256,0,0 -) -] -(1,692:4262630,4025873:0,0,0 -[1,692:-473656,4025873:0,0,0 -(1,692:-473656,-710413:0,0,0 -(1,692:-473656,-710413:0,0,0 -g1,692:-473656,-710413 -) -g1,692:-473656,-710413 -) -] -) -] -!24900 -}39 -Input:249:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:250:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:251:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:252:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:253:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:254:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:255:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!662 -{40 -[1,767:4262630,47279633:28320399,43253760,0 -(1,767:4262630,4025873:0,0,0 -[1,767:-473656,4025873:0,0,0 -(1,767:-473656,-710413:0,0,0 -(1,767:-473656,-644877:0,0,0 -k1,767:-473656,-644877:-65536 ) -(1,767:-473656,4736287:0,0,0 -k1,767:-473656,4736287:5209943 +g1,941:27165932,20444510 +g1,941:27165932,20444510 ) -g1,767:-473656,-710413 ) -] +g1,941:27165932,20444510 ) -[1,767:6630773,47279633:25952256,43253760,0 -[1,767:6630773,4812305:25952256,786432,0 -(1,767:6630773,4812305:25952256,505283,11795 -(1,767:6630773,4812305:25952256,505283,11795 -g1,767:3078558,4812305 -[1,767:3078558,4812305:0,0,0 -(1,767:3078558,2439708:0,1703936,0 -k1,767:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,767:2537886,2439708:1179648,16384,0 ) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,767:3078558,1915420:16384,1179648,0 +g1,941:27165932,20444510 +(1,941:27165932,20444510:665744,673524,285028 +g1,941:27632101,20444510 +k1,941:27831676,20444510:199575 ) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 +g1,941:27831676,20444510 +(1,941:27831676,20444510:639530,673524,285028 +k1,941:28031251,20444510:199575 +g1,941:28471206,20444510 +(1,941:28471206,20444510:0,655699,276639 +(1,941:28471206,20444510:0,0,0 +(1,941:28471206,20444510:0,0,0 +g1,941:28471206,20444510 +g1,941:28471206,20444510 +g1,941:28471206,20444510 +g1,941:28471206,20444510 +g1,941:28471206,20444510 +(1,941:28471206,20444510:0,0,0 +(1,941:28471206,20444510:331874,388497,9436 +(1,941:28471206,20444510:331874,388497,9436 ) -] +g1,941:28803080,20444510 ) ) +g1,941:28471206,20444510 +g1,941:28471206,20444510 ) -] -[1,767:3078558,4812305:0,0,0 -(1,767:3078558,2439708:0,1703936,0 -g1,767:29030814,2439708 -g1,767:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,767:36151628,1915420:16384,1179648,0 ) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 +g1,941:28471206,20444510 ) -] ) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,767:37855564,2439708:1179648,16384,0 +g1,941:28471206,20444510 +(1,941:28471206,20444510:665744,673524,285028 +g1,941:28937375,20444510 +k1,941:29136950,20444510:199575 ) +g1,941:29136950,20444510 +(1,941:29136950,20444510:639530,673524,285028 +k1,941:29296076,20444510:159126 +g1,941:29776480,20444510 +(1,941:29776480,20444510:0,655699,276639 +(1,941:29776480,20444510:0,0,0 +(1,941:29776480,20444510:0,0,0 +g1,941:29776480,20444510 +g1,941:29776480,20444510 +g1,941:29776480,20444510 +g1,941:29776480,20444510 +g1,941:29776480,20444510 +(1,941:29776480,20444510:0,0,0 +(1,941:29776480,20444510:663749,388497,9436 +(1,941:29776480,20444510:663749,388497,9436 ) -k1,767:3078556,2439708:-34777008 +g1,941:30440229,20444510 ) -] -[1,767:3078558,4812305:0,0,0 -(1,767:3078558,49800853:0,16384,2228224 -k1,767:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,767:2537886,49800853:1179648,16384,0 ) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,767:3078558,51504789:16384,1179648,0 +g1,941:29776480,20444510 +g1,941:29776480,20444510 ) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 ) -] +g1,941:29776480,20444510 ) ) +g1,941:29776480,20444510 +(1,942:29776480,20444510:665744,673524,285028 +g1,942:30283098,20444510 +k1,942:30442224,20444510:159126 +) +g1,942:30442224,20444510 +) +(1,942:17363270,21488515:13078954,665744,665744 +g1,942:17363270,21488515 +(1,942:17363270,21488515:665744,665744,665744 +g1,942:17363270,21488515 +g1,942:18029014,21488515 +(1,942:18029014,21488515:0,665744,665744 +(1,942:18029014,21488515:0,0,0 +(1,942:18029014,21488515:0,0,0 +g1,942:18029014,21488515 +g1,942:18029014,21488515 +g1,942:18029014,21488515 +g1,942:18029014,21488515 +g1,942:18029014,21488515 +(1,942:18029014,21488515:0,0,0 +(1,942:18029014,21488515:0,0,0 +h1,942:18029014,21488515:0,0,0 +g1,942:18029014,21488515 ) -] -[1,767:3078558,4812305:0,0,0 -(1,767:3078558,49800853:0,16384,2228224 -g1,767:29030814,49800853 -g1,767:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,767:36151628,51504789:16384,1179648,0 ) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 +g1,942:18029014,21488515 +g1,942:18029014,21488515 ) -] ) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,767:37855564,49800853:1179648,16384,0 +g1,942:18029014,21488515 ) ) -k1,767:3078556,49800853:-34777008 +g1,942:18029014,21488515 +(1,942:18029014,21488515:665744,665744,665744 +g1,942:18694758,21488515 +g1,942:18694758,21488515 +) +g1,942:18694758,21488515 +(1,942:18694758,21488515:639530,665744,665744 +g1,942:18694758,21488515 +g1,942:19334288,21488515 +(1,942:19334288,21488515:0,665744,665744 +(1,942:19334288,21488515:0,0,0 +(1,942:19334288,21488515:0,0,0 +g1,942:19334288,21488515 +g1,942:19334288,21488515 +g1,942:19334288,21488515 +g1,942:19334288,21488515 +g1,942:19334288,21488515 +(1,942:19334288,21488515:0,0,0 +(1,942:19334288,21488515:0,0,0 +h1,942:19334288,21488515:0,0,0 +g1,942:19334288,21488515 ) -] -g1,767:6630773,4812305 -g1,767:6630773,4812305 -g1,767:9516978,4812305 -g1,767:11710468,4812305 -g1,767:13120147,4812305 -g1,767:16560787,4812305 -k1,767:31786111,4812305:15225324 ) +g1,942:19334288,21488515 +g1,942:19334288,21488515 ) -] -[1,767:6630773,45706769:25952256,40108032,0 -(1,767:6630773,45706769:25952256,40108032,0 -(1,767:6630773,45706769:0,0,0 -g1,767:6630773,45706769 ) -[1,767:6630773,45706769:25952256,40108032,0 -(1,690:6630773,6254097:25952256,513147,126483 -h1,689:6630773,6254097:983040,0,0 -g1,689:9009729,6254097 -g1,689:12513939,6254097 -g1,689:13372460,6254097 -g1,689:14590774,6254097 -g1,689:16437578,6254097 -g1,689:20076792,6254097 -g1,689:20076792,6254097 -g1,689:20276021,6254097 -g1,689:20276021,6254097 -k1,690:32583029,6254097:12307008 -g1,690:32583029,6254097 -) -(1,692:18563541,8175493:2086720,1074017,479774 -(1,692:18563541,8175493:2086720,1074017,479774 -(1,692:18563541,8175493:2086720,1074017,479774 -h1,692:18563541,8175493:78643,0,0 -[1,692:18642184,8175493:1929434,1074017,479774 -(1,692:18642184,7716692:1929434,615216,11796 -g1,692:19186291,7716692 -g1,692:19900136,7716692 -(1,692:20259929,7441411:311689,339935,0 -) -) -(1,692:18642184,8647403:1929434,355205,7864 -k1,692:18733411,8647403:91227 -(1,692:18733411,8647403:1058406,355205,7864 -) -g1,692:19901053,8647403 -k1,692:20571618,8647403:91227 -) -] -h1,692:20571618,8175493:78643,0,0 -) -) -) -(1,694:6630773,9889310:25952256,513147,102891 -g1,693:7535169,9889310 -g1,693:8350436,9889310 -g1,693:9138178,9889310 -g1,693:11623958,9889310 -g1,693:12509349,9889310 -k1,694:32583030,9889310:17584624 -g1,694:32583030,9889310 -) -v1,696:6630773,11079776:0,393216,0 -(1,703:6630773,12029593:25952256,1343033,196608 -g1,703:6630773,12029593 -g1,703:6630773,12029593 -g1,703:6434165,12029593 -(1,703:6434165,12029593:0,1343033,196608 -r1,767:32779637,12029593:26345472,1539641,196608 -k1,703:6434165,12029593:-26345472 -) -(1,703:6434165,12029593:26345472,1343033,196608 -[1,703:6630773,12029593:25952256,1146425,0 -(1,698:6630773,11287394:25952256,404226,101187 -(1,697:6630773,11287394:0,0,0 -g1,697:6630773,11287394 -g1,697:6630773,11287394 -g1,697:6303093,11287394 -(1,697:6303093,11287394:0,0,0 -) -g1,697:6630773,11287394 -) -g1,698:7579211,11287394 -g1,698:8211503,11287394 -g1,698:10740669,11287394 -g1,698:11372961,11287394 -k1,698:11372961,11287394:0 -h1,698:13585981,11287394:0,0,0 -k1,698:32583029,11287394:18997048 -g1,698:32583029,11287394 -) -(1,702:6630773,11953572:25952256,404226,76021 -(1,700:6630773,11953572:0,0,0 -g1,700:6630773,11953572 -g1,700:6630773,11953572 -g1,700:6303093,11953572 -(1,700:6303093,11953572:0,0,0 -) -g1,700:6630773,11953572 -) -g1,702:7579210,11953572 -g1,702:8843793,11953572 -k1,702:8843793,11953572:0 -h1,702:11689104,11953572:0,0,0 -k1,702:32583028,11953572:20893924 -g1,702:32583028,11953572 -) -] -) -g1,703:32583029,12029593 -g1,703:6630773,12029593 -g1,703:6630773,12029593 -g1,703:32583029,12029593 -g1,703:32583029,12029593 -) -h1,703:6630773,12226201:0,0,0 -(1,707:6630773,13591977:25952256,513147,126483 -h1,706:6630773,13591977:983040,0,0 -k1,706:8271945,13591977:188239 -k1,706:9564467,13591977:188240 -k1,706:10500472,13591977:188239 -k1,706:12128538,13591977:188240 -k1,706:14172101,13591977:188239 -k1,706:15644847,13591977:188240 -k1,706:20156496,13591977:188239 -k1,706:23432792,13591977:188240 -k1,706:24812476,13591977:188239 -k1,706:28026513,13591977:188240 -k1,706:29206312,13591977:188239 -k1,706:30716413,13591977:188240 -k1,706:31563944,13591977:188239 -k1,707:32583029,13591977:0 -) -(1,707:6630773,14433465:25952256,513147,134348 -k1,706:7268953,14433465:223337 -k1,706:10508280,14433465:223360 -k1,706:12003039,14433465:223361 -k1,706:13888393,14433465:223361 -k1,706:14763182,14433465:223361 -k1,706:18245647,14433465:223360 -k1,706:20167046,14433465:223361 -k1,706:23844810,14433465:223361 -k1,706:26754492,14433465:223361 -k1,706:29818182,14433465:223360 -k1,706:30727705,14433465:223361 -k1,706:32583029,14433465:0 -) -(1,707:6630773,15274953:25952256,513147,134348 -k1,706:8191091,15274953:292852 -k1,706:8898693,15274953:292759 -k1,706:10861402,15274953:292852 -k1,706:11685751,15274953:292852 -k1,706:13263110,15274953:292853 -k1,706:14172000,15274953:292852 -k1,706:17740997,15274953:292852 -k1,706:21804136,15274953:292853 -k1,706:23116073,15274953:292852 -k1,706:24453569,15274953:292852 -k1,706:25405713,15274953:292852 -k1,706:26717651,15274953:292853 -k1,706:29520532,15274953:292852 -k1,706:32583029,15274953:0 -) -(1,707:6630773,16116441:25952256,513147,134348 -k1,706:7238493,16116441:251860 -k1,706:10373282,16116441:251860 -k1,706:11909648,16116441:251860 -k1,706:13945397,16116441:251859 -k1,706:15216342,16116441:251860 -k1,706:17746889,16116441:251860 -k1,706:21599952,16116441:251860 -k1,706:22511104,16116441:251860 -k1,706:26341230,16116441:251860 -k1,706:27220925,16116441:251860 -k1,706:30277725,16116441:251859 -k1,706:31145623,16116441:251860 -k1,706:32168186,16116441:251860 -k1,707:32583029,16116441:0 -) -(1,707:6630773,16957929:25952256,505283,134348 -g1,706:10269987,16957929 -g1,706:11672457,16957929 -g1,706:14754615,16957929 -g1,706:16575860,16957929 -g1,706:17522855,16957929 -g1,706:20619431,16957929 -g1,706:23468281,16957929 -g1,706:25061461,16957929 -g1,706:28487683,16957929 -k1,707:32583029,16957929:67503 -g1,707:32583029,16957929 -) -(1,709:6630773,17799417:25952256,513147,126483 -h1,708:6630773,17799417:983040,0,0 -k1,708:8275373,17799417:183803 -k1,708:9629650,17799417:183804 -k1,708:10805013,17799417:183803 -k1,708:11604854,17799417:183803 -k1,708:13676095,17799417:183804 -k1,708:15682454,17799417:183803 -k1,708:17196638,17799417:183803 -k1,708:20981644,17799417:183803 -k1,708:22751419,17799417:183804 -k1,708:24705349,17799417:183803 -k1,708:26059625,17799417:183803 -k1,708:27347711,17799417:183804 -k1,708:28728857,17799417:183803 -k1,708:32583029,17799417:0 -) -(1,709:6630773,18640905:25952256,513147,126483 -k1,708:7494033,18640905:211832 -k1,708:9421599,18640905:211833 -k1,708:11014275,18640905:211832 -k1,708:12245192,18640905:211832 -k1,708:14196351,18640905:211833 -k1,708:15067475,18640905:211832 -k1,708:19673496,18640905:211832 -k1,708:20416825,18640905:211832 -k1,708:21647743,18640905:211833 -k1,708:23016285,18640905:211832 -k1,708:24398590,18640905:211832 -k1,708:26839958,18640905:211833 -k1,708:30542893,18640905:211832 -k1,709:32583029,18640905:0 -) -(1,709:6630773,19482393:25952256,513147,7863 -g1,708:8857031,19482393 -g1,708:10531475,19482393 -g1,708:11540074,19482393 -k1,709:32583029,19482393:19098502 -g1,709:32583029,19482393 -) -v1,711:6630773,20672859:0,393216,0 -(1,730:6630773,25582379:25952256,5302736,196608 -g1,730:6630773,25582379 -g1,730:6630773,25582379 -g1,730:6434165,25582379 -(1,730:6434165,25582379:0,5302736,196608 -r1,767:32779637,25582379:26345472,5499344,196608 -k1,730:6434165,25582379:-26345472 -) -(1,730:6434165,25582379:26345472,5302736,196608 -[1,730:6630773,25582379:25952256,5106128,0 -(1,713:6630773,20864748:25952256,388497,9436 -(1,712:6630773,20864748:0,0,0 -g1,712:6630773,20864748 -g1,712:6630773,20864748 -g1,712:6303093,20864748 -(1,712:6303093,20864748:0,0,0 -) -g1,712:6630773,20864748 -) -g1,713:7263065,20864748 -g1,713:7895357,20864748 -g1,713:8527649,20864748 -g1,713:9159941,20864748 -h1,713:9476087,20864748:0,0,0 -k1,713:32583029,20864748:23106942 -g1,713:32583029,20864748 -) -(1,717:6630773,21530926:25952256,404226,76021 -(1,715:6630773,21530926:0,0,0 -g1,715:6630773,21530926 -g1,715:6630773,21530926 -g1,715:6303093,21530926 -(1,715:6303093,21530926:0,0,0 -) -g1,715:6630773,21530926 -) -g1,717:7579210,21530926 -g1,717:8843793,21530926 -h1,717:9159939,21530926:0,0,0 -k1,717:32583029,21530926:23423090 -g1,717:32583029,21530926 -) -(1,719:6630773,22852464:25952256,404226,76021 -(1,718:6630773,22852464:0,0,0 -g1,718:6630773,22852464 -g1,718:6630773,22852464 -g1,718:6303093,22852464 -(1,718:6303093,22852464:0,0,0 -) -g1,718:6630773,22852464 -) -g1,719:7263065,22852464 -g1,719:7895357,22852464 -g1,719:8843795,22852464 -g1,719:9476087,22852464 -h1,719:10108379,22852464:0,0,0 -k1,719:32583029,22852464:22474650 -g1,719:32583029,22852464 -) -(1,723:6630773,23518642:25952256,404226,76021 -(1,721:6630773,23518642:0,0,0 -g1,721:6630773,23518642 -g1,721:6630773,23518642 -g1,721:6303093,23518642 -(1,721:6303093,23518642:0,0,0 -) -g1,721:6630773,23518642 -) -g1,723:7579210,23518642 -g1,723:8843793,23518642 -h1,723:9159939,23518642:0,0,0 -k1,723:32583029,23518642:23423090 -g1,723:32583029,23518642 -) -(1,725:6630773,24840180:25952256,404226,76021 -(1,724:6630773,24840180:0,0,0 -g1,724:6630773,24840180 -g1,724:6630773,24840180 -g1,724:6303093,24840180 -(1,724:6303093,24840180:0,0,0 -) -g1,724:6630773,24840180 -) -g1,725:7579211,24840180 -g1,725:8211503,24840180 -g1,725:9159941,24840180 -g1,725:9792233,24840180 -h1,725:10108379,24840180:0,0,0 -k1,725:32583029,24840180:22474650 -g1,725:32583029,24840180 -) -(1,729:6630773,25506358:25952256,404226,76021 -(1,727:6630773,25506358:0,0,0 -g1,727:6630773,25506358 -g1,727:6630773,25506358 -g1,727:6303093,25506358 -(1,727:6303093,25506358:0,0,0 -) -g1,727:6630773,25506358 -) -g1,729:7579210,25506358 -g1,729:8843793,25506358 -h1,729:9159939,25506358:0,0,0 -k1,729:32583029,25506358:23423090 -g1,729:32583029,25506358 -) -] -) -g1,730:32583029,25582379 -g1,730:6630773,25582379 -g1,730:6630773,25582379 -g1,730:32583029,25582379 -g1,730:32583029,25582379 -) -h1,730:6630773,25778987:0,0,0 -(1,734:6630773,27144763:25952256,513147,134348 -h1,733:6630773,27144763:983040,0,0 -k1,733:9006616,27144763:196116 -k1,733:11688514,27144763:196117 -k1,733:12543922,27144763:196116 -k1,733:15307739,27144763:196116 -k1,733:16785085,27144763:196117 -k1,733:18487874,27144763:196116 -k1,733:19875435,27144763:196116 -k1,733:22325335,27144763:196117 -k1,733:24264053,27144763:196116 -k1,733:25966842,27144763:196116 -k1,733:30017131,27144763:196117 -k1,733:31835263,27144763:196116 -k1,733:32583029,27144763:0 -) -(1,734:6630773,27986251:25952256,505283,126483 -k1,733:9872979,27986251:234759 -k1,733:11299184,27986251:234760 -k1,733:12914131,27986251:234759 -k1,733:14770906,27986251:234759 -k1,733:15753431,27986251:234759 -k1,733:18302267,27986251:234760 -k1,733:19261854,27986251:234759 -k1,733:20781119,27986251:234759 -k1,733:22467501,27986251:234760 -k1,733:25496060,27986251:234759 -k1,733:27243390,27986251:234759 -k1,733:28009646,27986251:234759 -k1,733:28600266,27986251:234760 -k1,733:30375121,27986251:234759 -k1,734:32583029,27986251:0 -) -(1,734:6630773,28827739:25952256,505283,126483 -k1,733:9177408,28827739:218141 -k1,733:13009204,28827739:218141 -k1,733:14296893,28827739:218141 -k1,733:16011221,28827739:218141 -k1,733:17513868,28827739:218141 -k1,733:18836291,28827739:218141 -k1,733:19802199,28827739:218142 -k1,733:23081527,28827739:218141 -k1,733:23951096,28827739:218141 -k1,733:26179882,28827739:218141 -k1,733:26753883,28827739:218141 -k1,733:28826038,28827739:218141 -k1,733:29400039,28827739:218141 -k1,733:31298523,28827739:218141 -k1,733:32583029,28827739:0 -) -(1,734:6630773,29669227:25952256,513147,126483 -k1,733:7988570,29669227:253515 -k1,733:8989851,29669227:253515 -k1,733:11850388,29669227:253515 -k1,733:12719941,29669227:253515 -k1,733:14636104,29669227:253515 -k1,733:15548912,29669227:253516 -k1,733:16821512,29669227:253515 -k1,733:20515012,29669227:253515 -k1,733:23562327,29669227:253515 -k1,733:24431880,29669227:253515 -k1,733:28393422,29669227:253515 -k1,733:30689694,29669227:253515 -k1,734:32583029,29669227:0 -) -(1,734:6630773,30510715:25952256,513147,134348 -k1,733:8460908,30510715:227124 -k1,733:9707116,30510715:227123 -k1,733:13152058,30510715:227124 -k1,733:14038473,30510715:227123 -k1,733:15284682,30510715:227124 -k1,733:19125460,30510715:227123 -k1,733:20394606,30510715:227124 -k1,733:23456816,30510715:227123 -(1,733:23456816,30510715:0,452978,115847 -r1,767:27332202,30510715:3875386,568825,115847 -k1,733:23456816,30510715:-3875386 -) -(1,733:23456816,30510715:3875386,452978,115847 -g1,733:24515229,30510715 -g1,733:25218653,30510715 -g1,733:26273789,30510715 -g1,733:26977213,30510715 -h1,733:27328925,30510715:0,411205,112570 -) -k1,733:27559326,30510715:227124 -k1,733:29299675,30510715:227123 -k1,734:32583029,30510715:0 -) -(1,734:6630773,31352203:25952256,505283,134348 -(1,733:6630773,31352203:0,452978,115847 -r1,767:9099311,31352203:2468538,568825,115847 -k1,733:6630773,31352203:-2468538 -) -(1,733:6630773,31352203:2468538,452978,115847 -g1,733:7689186,31352203 -g1,733:8392610,31352203 -h1,733:9096034,31352203:0,411205,112570 -) -k1,733:9272624,31352203:173313 -k1,733:12219421,31352203:173313 -(1,733:12219421,31352203:0,435480,115847 -r1,767:13984535,31352203:1765114,551327,115847 -k1,733:12219421,31352203:-1765114 -) -(1,733:12219421,31352203:1765114,435480,115847 -g1,733:12926122,31352203 -g1,733:13629546,31352203 -h1,733:13981258,31352203:0,411205,112570 -) -k1,733:14157848,31352203:173313 -k1,733:16856918,31352203:173312 -(1,733:16856918,31352203:0,435480,115847 -r1,767:17215184,31352203:358266,551327,115847 -k1,733:16856918,31352203:-358266 -) -(1,733:16856918,31352203:358266,435480,115847 -k1,733:16856918,31352203:3277 -h1,733:17211907,31352203:0,411205,112570 -) -k1,733:17562167,31352203:173313 -k1,733:18363315,31352203:173313 -k1,733:21341569,31352203:173313 -(1,733:21341569,31352203:0,452978,115847 -r1,767:25216955,31352203:3875386,568825,115847 -k1,733:21341569,31352203:-3875386 -) -(1,733:21341569,31352203:3875386,452978,115847 -g1,733:22399982,31352203 -g1,733:23455118,31352203 -g1,733:24158542,31352203 -g1,733:24861966,31352203 -h1,733:25213678,31352203:0,411205,112570 -) -k1,733:25390268,31352203:173313 -k1,733:26095078,31352203:173313 -k1,733:26624250,31352203:173312 -k1,733:28881608,31352203:173313 -k1,733:30661864,31352203:173313 -k1,733:31521339,31352203:173313 -(1,733:31521339,31352203:0,435480,115847 -r1,767:32583029,31352203:1061690,551327,115847 -k1,733:31521339,31352203:-1061690 -) -(1,733:31521339,31352203:1061690,435480,115847 -g1,733:32228040,31352203 -h1,733:32579752,31352203:0,411205,112570 -) -k1,733:32583029,31352203:0 -) -(1,734:6630773,32193691:25952256,505283,126483 -g1,733:7361499,32193691 -g1,733:11102294,32193691 -g1,733:12492968,32193691 -g1,733:14185107,32193691 -g1,733:15450607,32193691 -g1,733:17185345,32193691 -g1,733:17740434,32193691 -k1,734:32583029,32193691:12183144 -g1,734:32583029,32193691 -) -v1,736:6630773,33559467:0,393216,0 -(1,767:6630773,45552097:25952256,12385846,0 -g1,767:6630773,45552097 -g1,767:6303093,45552097 -r1,767:6401397,45552097:98304,12385846,0 -g1,767:6600626,45552097 -g1,767:6797234,45552097 -[1,767:6797234,45552097:25785795,12385846,0 -(1,737:6797234,33992005:25785795,825754,196608 -(1,736:6797234,33992005:0,825754,196608 -r1,767:7890375,33992005:1093141,1022362,196608 -k1,736:6797234,33992005:-1093141 -) -(1,736:6797234,33992005:1093141,825754,196608 -) -k1,736:8172488,33992005:282113 -k1,736:9490417,33992005:327680 -k1,736:10400366,33992005:282114 -k1,736:14640199,33992005:282113 -k1,736:15941398,33992005:282114 -k1,736:18382267,33992005:282113 -k1,736:20232002,33992005:282114 -k1,736:23037251,33992005:282113 -k1,736:24338450,33992005:282114 -k1,736:26116750,33992005:282113 -k1,736:27014902,33992005:282114 -k1,736:27711775,33992005:282030 -k1,736:28985449,33992005:282114 -k1,736:30333833,33992005:282113 -k1,736:32583029,33992005:0 -) -(1,737:6797234,34833493:25785795,513147,134348 -k1,736:7734320,34833493:250924 -k1,736:9681971,34833493:250924 -k1,736:10924455,34833493:250924 -k1,736:14066172,34833493:250924 -k1,736:15264747,34833493:250924 -k1,736:16686144,34833493:250924 -k1,736:17588496,34833493:250924 -k1,736:19494204,34833493:250924 -k1,736:20357890,34833493:250924 -k1,736:21627899,34833493:250924 -k1,736:22293614,34833493:250872 -k1,736:24964783,34833493:250924 -k1,736:26407152,34833493:250924 -k1,736:27949791,34833493:250924 -k1,736:28828550,34833493:250924 -k1,736:31412556,34833493:250924 -k1,736:32583029,34833493:0 -) -(1,737:6797234,35674981:25785795,505283,134348 -k1,736:9194642,35674981:217025 -k1,736:10477938,35674981:217025 -k1,736:12039762,35674981:217025 -k1,736:14069512,35674981:217024 -k1,736:14972699,35674981:217025 -k1,736:15805762,35674981:217025 -k1,736:17774564,35674981:217025 -k1,736:19862642,35674981:217025 -k1,736:20765829,35674981:217025 -k1,736:22376804,35674981:217024 -k1,736:23612914,35674981:217025 -k1,736:27346601,35674981:217025 -k1,736:31189078,35674981:217025 -k1,736:32583029,35674981:0 -) -(1,737:6797234,36516469:25785795,505283,134348 -k1,736:10270095,36516469:155429 -k1,736:11041563,36516469:155430 -k1,736:12216077,36516469:155429 -k1,736:13867694,36516469:155430 -k1,736:15993791,36516469:155429 -k1,736:18191323,36516469:155430 -k1,736:19726940,36516469:155429 -k1,736:21357585,36516469:155430 -k1,736:24867147,36516469:155429 -k1,736:25674005,36516469:155430 -k1,736:27537959,36516469:155430 -k1,736:28376273,36516469:155429 -k1,736:32583029,36516469:0 -) -(1,737:6797234,37357957:25785795,513147,134348 -k1,736:8247294,37357957:196356 -k1,736:9435210,37357957:196356 -k1,736:12256938,37357957:196356 -k1,736:16144937,37357957:196356 -k1,736:16992721,37357957:196356 -k1,736:18714755,37357957:196356 -k1,736:19527148,37357957:196355 -k1,736:21425474,37357957:196356 -k1,736:23750439,37357957:196356 -k1,736:25876175,37357957:196356 -k1,736:27355726,37357957:196356 -k1,736:30708296,37357957:196356 -k1,736:31563944,37357957:196356 -k1,736:32583029,37357957:0 -) -(1,737:6797234,38199445:25785795,505283,126483 -g1,736:9988182,38199445 -g1,736:11378856,38199445 -g1,736:13990465,38199445 -g1,736:15828749,38199445 -g1,736:16679406,38199445 -g1,736:19247106,38199445 -g1,736:20776716,38199445 -g1,736:21390788,38199445 -g1,736:23690446,38199445 -g1,736:23690446,38199445 -g1,736:23889675,38199445 -g1,736:23889675,38199445 -g1,736:24088904,38199445 -g1,736:24088904,38199445 -g1,736:24288133,38199445 -g1,736:24288133,38199445 -g1,736:24487362,38199445 -g1,736:24487362,38199445 -k1,737:32583029,38199445:8095667 -g1,737:32583029,38199445 -) -v1,739:6797234,39389911:0,393216,0 -(1,748:6797234,43013877:25785795,4017182,196608 -g1,748:6797234,43013877 -g1,748:6797234,43013877 -g1,748:6600626,43013877 -(1,748:6600626,43013877:0,4017182,196608 -r1,767:32779637,43013877:26179011,4213790,196608 -k1,748:6600625,43013877:-26179012 -) -(1,748:6600626,43013877:26179011,4017182,196608 -[1,748:6797234,43013877:25785795,3820574,0 -(1,741:6797234,39581800:25785795,388497,0 -(1,740:6797234,39581800:0,0,0 -g1,740:6797234,39581800 -g1,740:6797234,39581800 -g1,740:6469554,39581800 -(1,740:6469554,39581800:0,0,0 -) -g1,740:6797234,39581800 -) -g1,741:7429526,39581800 -g1,741:8061818,39581800 -h1,741:8377964,39581800:0,0,0 -k1,741:32583028,39581800:24205064 -g1,741:32583028,39581800 -) -(1,742:6797234,40247978:25785795,388497,0 -h1,742:6797234,40247978:0,0,0 -g1,742:7429526,40247978 -g1,742:8061818,40247978 -h1,742:8377964,40247978:0,0,0 -k1,742:32583028,40247978:24205064 -g1,742:32583028,40247978 -) -(1,743:6797234,40914156:25785795,404226,76021 -h1,743:6797234,40914156:0,0,0 -g1,743:7429526,40914156 -g1,743:8061818,40914156 -g1,743:9010255,40914156 -g1,743:9642547,40914156 -h1,743:9958693,40914156:0,0,0 -k1,743:32583029,40914156:22624336 -g1,743:32583029,40914156 -) -(1,744:6797234,41580334:25785795,404226,76021 -h1,744:6797234,41580334:0,0,0 -g1,744:7745672,41580334 -g1,744:8377964,41580334 -g1,744:9642547,41580334 -g1,744:10274839,41580334 -h1,744:10590985,41580334:0,0,0 -k1,744:32583029,41580334:21992044 -g1,744:32583029,41580334 -) -(1,745:6797234,42246512:25785795,388497,9436 -h1,745:6797234,42246512:0,0,0 -g1,745:8377963,42246512 -g1,745:9010255,42246512 -h1,745:9326401,42246512:0,0,0 -k1,745:32583029,42246512:23256628 -g1,745:32583029,42246512 -) -(1,746:6797234,42912690:25785795,404226,101187 -h1,746:6797234,42912690:0,0,0 -k1,746:6797234,42912690:0 -h1,746:9010255,42912690:0,0,0 -k1,746:32583029,42912690:23572774 -g1,746:32583029,42912690 -) -] -) -g1,748:32583029,43013877 -g1,748:6797234,43013877 -g1,748:6797234,43013877 -g1,748:32583029,43013877 -g1,748:32583029,43013877 -) -h1,748:6797234,43210485:0,0,0 -(1,752:6797234,44576261:25785795,513147,134348 -h1,751:6797234,44576261:983040,0,0 -k1,751:9399909,44576261:187018 -k1,751:10001759,44576261:187007 -k1,751:11289782,44576261:187018 -(1,751:11289782,44576261:0,452978,115847 -r1,767:11999760,44576261:709978,568825,115847 -k1,751:11289782,44576261:-709978 -) -(1,751:11289782,44576261:709978,452978,115847 -k1,751:11289782,44576261:3277 -h1,751:11996483,44576261:0,411205,112570 -) -k1,751:12186779,44576261:187019 -$1,751:12393873,44576261 -k1,751:13155271,44576261:182060 -k1,751:13905528,44576261:182060 -k1,751:16196458,44576261:109236 -$1,751:16851818,44576261 -k1,751:17245930,44576261:187018 -k1,751:21044637,44576261:187018 -k1,751:21859491,44576261:187019 -k1,751:22461340,44576261:187006 -k1,751:24676043,44576261:187019 -k1,751:25854621,44576261:187018 -k1,751:29239142,44576261:187019 -k1,751:30042198,44576261:187018 -k1,751:32583029,44576261:0 -) -(1,752:6797234,45417749:25785795,505283,134348 -g1,751:8413351,45417749 -$1,751:8413351,45417749 -(1,751:8413351,45417749:946340,473825,7864 -) -g1,751:10721399,45417749 -g1,751:11471656,45417749 -$1,751:11870115,45417749 -g1,751:12069344,45417749 -g1,751:15385465,45417749 -g1,751:16236122,45417749 -k1,752:32583029,45417749:11975000 -g1,752:32583029,45417749 -) -] -g1,767:32583029,45552097 -) -] -(1,767:32583029,45706769:0,0,0 -g1,767:32583029,45706769 -) -) -] -(1,767:6630773,47279633:25952256,0,0 -h1,767:6630773,47279633:25952256,0,0 -) -] -(1,767:4262630,4025873:0,0,0 -[1,767:-473656,4025873:0,0,0 -(1,767:-473656,-710413:0,0,0 -(1,767:-473656,-710413:0,0,0 -g1,767:-473656,-710413 -) -g1,767:-473656,-710413 -) -] +g1,942:19334288,21488515 ) -] -!23673 -}40 -Input:256:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:257:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:258:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:259:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:260:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:261:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:262:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:263:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:264:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:265:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:266:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:267:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:268:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:269:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:270:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:271:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:272:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1592 -{41 -[1,846:4262630,47279633:28320399,43253760,0 -(1,846:4262630,4025873:0,0,0 -[1,846:-473656,4025873:0,0,0 -(1,846:-473656,-710413:0,0,0 -(1,846:-473656,-644877:0,0,0 -k1,846:-473656,-644877:-65536 ) -(1,846:-473656,4736287:0,0,0 -k1,846:-473656,4736287:5209943 +g1,942:19334288,21488515 +(1,942:19334288,21488515:665744,665744,665744 +g1,942:20000032,21488515 +g1,942:20000032,21488515 +) +g1,942:20000032,21488515 +(1,942:20000032,21488515:639530,665744,665744 +g1,942:20000032,21488515 +g1,942:20639562,21488515 +(1,942:20639562,21488515:0,665744,665744 +(1,942:20639562,21488515:0,0,0 +(1,942:20639562,21488515:0,0,0 +g1,942:20639562,21488515 +g1,942:20639562,21488515 +g1,942:20639562,21488515 +g1,942:20639562,21488515 +g1,942:20639562,21488515 +(1,942:20639562,21488515:0,0,0 +(1,942:20639562,21488515:0,0,0 +h1,942:20639562,21488515:0,0,0 +g1,942:20639562,21488515 +) ) -g1,846:-473656,-710413 +g1,942:20639562,21488515 +g1,942:20639562,21488515 ) -] ) -[1,846:6630773,47279633:25952256,43253760,0 -[1,846:6630773,4812305:25952256,786432,0 -(1,846:6630773,4812305:25952256,505283,11795 -(1,846:6630773,4812305:25952256,505283,11795 -g1,846:3078558,4812305 -[1,846:3078558,4812305:0,0,0 -(1,846:3078558,2439708:0,1703936,0 -k1,846:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,846:2537886,2439708:1179648,16384,0 +g1,942:20639562,21488515 +) +) +g1,942:20639562,21488515 +(1,942:20639562,21488515:665744,665744,665744 +g1,942:21305306,21488515 +g1,942:21305306,21488515 +) +g1,942:21305306,21488515 +(1,942:21305306,21488515:639530,665744,665744 +g1,942:21305306,21488515 +g1,942:21944836,21488515 +(1,942:21944836,21488515:0,665744,665744 +(1,942:21944836,21488515:0,0,0 +(1,942:21944836,21488515:0,0,0 +g1,942:21944836,21488515 +g1,942:21944836,21488515 +g1,942:21944836,21488515 +g1,942:21944836,21488515 +g1,942:21944836,21488515 +(1,942:21944836,21488515:0,0,0 +(1,942:21944836,21488515:0,0,0 +h1,942:21944836,21488515:0,0,0 +g1,942:21944836,21488515 +) +) +g1,942:21944836,21488515 +g1,942:21944836,21488515 +) +) +g1,942:21944836,21488515 +) +) +g1,942:21944836,21488515 +(1,942:21944836,21488515:665744,665744,665744 +g1,942:22610580,21488515 +g1,942:22610580,21488515 +) +g1,942:22610580,21488515 +(1,942:22610580,21488515:639530,665744,665744 +g1,942:22610580,21488515 +g1,942:23250110,21488515 +(1,942:23250110,21488515:0,665744,665744 +(1,942:23250110,21488515:0,0,0 +(1,942:23250110,21488515:0,0,0 +g1,942:23250110,21488515 +g1,942:23250110,21488515 +g1,942:23250110,21488515 +g1,942:23250110,21488515 +g1,942:23250110,21488515 +(1,942:23250110,21488515:0,0,0 +(1,942:23250110,21488515:0,0,0 +h1,942:23250110,21488515:0,0,0 +g1,942:23250110,21488515 +) +) +g1,942:23250110,21488515 +g1,942:23250110,21488515 +) +) +g1,942:23250110,21488515 +) +) +g1,942:23250110,21488515 +(1,942:23250110,21488515:665744,665744,665744 +g1,942:23915854,21488515 +g1,942:23915854,21488515 +) +g1,942:23915854,21488515 +(1,942:23915854,21488515:639530,665744,665744 +g1,942:23915854,21488515 +g1,942:24555384,21488515 +(1,942:24555384,21488515:0,665744,665744 +(1,942:24555384,21488515:0,0,0 +(1,942:24555384,21488515:0,0,0 +g1,942:24555384,21488515 +g1,942:24555384,21488515 +g1,942:24555384,21488515 +g1,942:24555384,21488515 +g1,942:24555384,21488515 +(1,942:24555384,21488515:0,0,0 +(1,942:24555384,21488515:0,0,0 +h1,942:24555384,21488515:0,0,0 +g1,942:24555384,21488515 +) +) +g1,942:24555384,21488515 +g1,942:24555384,21488515 +) +) +g1,942:24555384,21488515 +) +) +g1,942:24555384,21488515 +(1,942:24555384,21488515:665744,665744,665744 +g1,942:25221128,21488515 +g1,942:25221128,21488515 +) +g1,942:25221128,21488515 +(1,942:25221128,21488515:639530,665744,665744 +g1,942:25221128,21488515 +g1,942:25860658,21488515 +(1,942:25860658,21488515:0,665744,665744 +(1,942:25860658,21488515:0,0,0 +(1,942:25860658,21488515:0,0,0 +g1,942:25860658,21488515 +g1,942:25860658,21488515 +g1,942:25860658,21488515 +g1,942:25860658,21488515 +g1,942:25860658,21488515 +(1,942:25860658,21488515:0,0,0 +(1,942:25860658,21488515:0,0,0 +h1,942:25860658,21488515:0,0,0 +g1,942:25860658,21488515 +) +) +g1,942:25860658,21488515 +g1,942:25860658,21488515 ) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,846:3078558,1915420:16384,1179648,0 ) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 +g1,942:25860658,21488515 ) -] ) +g1,942:25860658,21488515 +(1,942:25860658,21488515:665744,665744,665744 +g1,942:26526402,21488515 +g1,942:26526402,21488515 ) +g1,942:26526402,21488515 +(1,942:26526402,21488515:639530,665744,665744 +g1,942:26526402,21488515 +g1,942:27165932,21488515 +(1,942:27165932,21488515:0,665744,665744 +(1,942:27165932,21488515:0,0,0 +(1,942:27165932,21488515:0,0,0 +g1,942:27165932,21488515 +g1,942:27165932,21488515 +g1,942:27165932,21488515 +g1,942:27165932,21488515 +g1,942:27165932,21488515 +(1,942:27165932,21488515:0,0,0 +(1,942:27165932,21488515:0,0,0 +h1,942:27165932,21488515:0,0,0 +g1,942:27165932,21488515 ) -] -[1,846:3078558,4812305:0,0,0 -(1,846:3078558,2439708:0,1703936,0 -g1,846:29030814,2439708 -g1,846:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,846:36151628,1915420:16384,1179648,0 ) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 +g1,942:27165932,21488515 +g1,942:27165932,21488515 ) -] ) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,846:37855564,2439708:1179648,16384,0 +g1,942:27165932,21488515 ) ) -k1,846:3078556,2439708:-34777008 +g1,942:27165932,21488515 +(1,942:27165932,21488515:665744,665744,665744 +g1,942:27831676,21488515 +g1,942:27831676,21488515 ) -] -[1,846:3078558,4812305:0,0,0 -(1,846:3078558,49800853:0,16384,2228224 -k1,846:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,846:2537886,49800853:1179648,16384,0 +g1,942:27831676,21488515 +(1,942:27831676,21488515:639530,665744,665744 +g1,942:27831676,21488515 +g1,942:28471206,21488515 +(1,942:28471206,21488515:0,665744,665744 +(1,942:28471206,21488515:0,0,0 +(1,942:28471206,21488515:0,0,0 +g1,942:28471206,21488515 +g1,942:28471206,21488515 +g1,942:28471206,21488515 +g1,942:28471206,21488515 +g1,942:28471206,21488515 +(1,942:28471206,21488515:0,0,0 +(1,942:28471206,21488515:0,0,0 +h1,942:28471206,21488515:0,0,0 +g1,942:28471206,21488515 ) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,846:3078558,51504789:16384,1179648,0 ) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 +g1,942:28471206,21488515 +g1,942:28471206,21488515 ) -] ) +g1,942:28471206,21488515 ) ) -] -[1,846:3078558,4812305:0,0,0 -(1,846:3078558,49800853:0,16384,2228224 -g1,846:29030814,49800853 -g1,846:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,846:36151628,51504789:16384,1179648,0 +g1,942:28471206,21488515 +(1,942:28471206,21488515:665744,665744,665744 +g1,942:29136950,21488515 +g1,942:29136950,21488515 ) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 -) -] +g1,942:29136950,21488515 +(1,942:29136950,21488515:639530,665744,665744 +g1,942:29136950,21488515 +g1,942:29776480,21488515 +(1,942:29776480,21488515:0,665744,665744 +(1,942:29776480,21488515:0,0,0 +(1,942:29776480,21488515:0,0,0 +g1,942:29776480,21488515 +g1,942:29776480,21488515 +g1,942:29776480,21488515 +g1,942:29776480,21488515 +g1,942:29776480,21488515 +(1,942:29776480,21488515:0,0,0 +(1,942:29776480,21488515:0,0,0 +h1,942:29776480,21488515:0,0,0 +g1,942:29776480,21488515 ) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,846:37855564,49800853:1179648,16384,0 ) -) -k1,846:3078556,49800853:-34777008 -) -] -g1,846:6630773,4812305 -k1,846:22348274,4812305:14920583 -g1,846:23970945,4812305 -g1,846:24793421,4812305 -g1,846:27528893,4812305 -g1,846:28938572,4812305 +g1,942:29776480,21488515 +g1,942:29776480,21488515 ) ) -] -[1,846:6630773,45706769:25952256,40108032,0 -(1,846:6630773,45706769:25952256,40108032,0 -(1,846:6630773,45706769:0,0,0 -g1,846:6630773,45706769 +g1,942:29776480,21488515 ) -[1,846:6630773,45706769:25952256,40108032,0 -v1,767:6630773,6254097:0,393216,0 -(1,767:6630773,11280866:25952256,5419985,0 -g1,767:6630773,11280866 -g1,767:6303093,11280866 -r1,846:6401397,11280866:98304,5419985,0 -g1,767:6600626,11280866 -g1,767:6797234,11280866 -[1,767:6797234,11280866:25785795,5419985,0 -v1,754:6797234,6254097:0,393216,0 -(1,764:6797234,10559970:25785795,4699089,196608 -g1,764:6797234,10559970 -g1,764:6797234,10559970 -g1,764:6600626,10559970 -(1,764:6600626,10559970:0,4699089,196608 -r1,846:32779637,10559970:26179011,4895697,196608 -k1,764:6600625,10559970:-26179012 -) -(1,764:6600626,10559970:26179011,4699089,196608 -[1,764:6797234,10559970:25785795,4502481,0 -(1,756:6797234,6461715:25785795,404226,107478 -(1,755:6797234,6461715:0,0,0 -g1,755:6797234,6461715 -g1,755:6797234,6461715 -g1,755:6469554,6461715 -(1,755:6469554,6461715:0,0,0 -) -g1,755:6797234,6461715 -) -g1,756:7745671,6461715 -g1,756:8377963,6461715 -g1,756:9326400,6461715 -g1,756:11539420,6461715 -g1,756:13436294,6461715 -g1,756:15017023,6461715 -k1,756:15017023,6461715:11010 -h1,756:17557198,6461715:0,0,0 -k1,756:32583029,6461715:15025831 -g1,756:32583029,6461715 -) -(1,757:6797234,7127893:25785795,404226,107478 -h1,757:6797234,7127893:0,0,0 -g1,757:9958691,7127893 -g1,757:12171711,7127893 -g1,757:12804003,7127893 -h1,757:13752440,7127893:0,0,0 -k1,757:32583028,7127893:18830588 -g1,757:32583028,7127893 -) -(1,758:6797234,7794071:25785795,404226,101187 -h1,758:6797234,7794071:0,0,0 -k1,758:6797234,7794071:0 -h1,758:9010254,7794071:0,0,0 -k1,758:32583030,7794071:23572776 -g1,758:32583030,7794071 -) -(1,759:6797234,8460249:25785795,404226,107478 -h1,759:6797234,8460249:0,0,0 -k1,759:6797234,8460249:0 -h1,759:9326400,8460249:0,0,0 -k1,759:32583028,8460249:23256628 -g1,759:32583028,8460249 -) -(1,760:6797234,9126427:25785795,404226,107478 -h1,760:6797234,9126427:0,0,0 -k1,760:6797234,9126427:0 -h1,760:9958691,9126427:0,0,0 -k1,760:32583029,9126427:22624338 -g1,760:32583029,9126427 -) -(1,761:6797234,9792605:25785795,404226,107478 -h1,761:6797234,9792605:0,0,0 -k1,761:6797234,9792605:0 -h1,761:9010255,9792605:0,0,0 -k1,761:32583029,9792605:23572774 -g1,761:32583029,9792605 -) -(1,762:6797234,10458783:25785795,404226,101187 -h1,762:6797234,10458783:0,0,0 -k1,762:6797234,10458783:0 -h1,762:8694109,10458783:0,0,0 -k1,762:32583029,10458783:23888920 -g1,762:32583029,10458783 -) -] -) -g1,764:32583029,10559970 -g1,764:6797234,10559970 -g1,764:6797234,10559970 -g1,764:32583029,10559970 -g1,764:32583029,10559970 -) -h1,764:6797234,10756578:0,0,0 -] -g1,767:32583029,11280866 -) -h1,767:6630773,11280866:0,0,0 -(1,770:6630773,12646642:25952256,513147,134348 -h1,769:6630773,12646642:983040,0,0 -k1,769:10840993,12646642:284613 -k1,769:12117167,12646642:284614 -k1,769:13915006,12646642:284613 -k1,769:14851047,12646642:284613 -k1,769:16753090,12646642:284614 -k1,769:19222018,12646642:284613 -k1,769:21151586,12646642:284614 -k1,769:22304551,12646642:284613 -k1,769:24563109,12646642:284613 -k1,769:25203583,12646642:284614 -k1,769:27168539,12646642:284613 -k1,769:28104580,12646642:284613 -k1,769:28745054,12646642:284614 -k1,769:31714677,12646642:284613 -k1,769:32583029,12646642:0 -) -(1,770:6630773,13488130:25952256,513147,126483 -k1,769:8019604,13488130:284549 -k1,769:9396638,13488130:284549 -k1,769:10297225,13488130:284549 -k1,769:11679502,13488130:284549 -k1,769:13460238,13488130:284549 -k1,769:14763872,13488130:284549 -k1,769:16786436,13488130:284549 -k1,769:17730278,13488130:284550 -k1,769:19033912,13488130:284549 -k1,769:21829801,13488130:284549 -k1,769:22730388,13488130:284549 -k1,769:24677585,13488130:284549 -k1,769:25621426,13488130:284549 -k1,769:26925060,13488130:284549 -k1,769:29247779,13488130:284549 -k1,769:31386342,13488130:284549 -k1,769:32583029,13488130:0 -) -(1,770:6630773,14329618:25952256,505283,134348 -k1,769:9191519,14329618:239461 -k1,769:13076748,14329618:239461 -k1,769:16062822,14329618:239460 -k1,769:16833780,14329618:239461 -(1,769:16833780,14329618:0,414482,115847 -r1,846:17543758,14329618:709978,530329,115847 -k1,769:16833780,14329618:-709978 -) -(1,769:16833780,14329618:709978,414482,115847 -k1,769:16833780,14329618:3277 -h1,769:17540481,14329618:0,411205,112570 -) -k1,769:17956889,14329618:239461 -k1,769:18824185,14329618:239461 -k1,769:19652158,14329618:239460 -k1,769:20657735,14329618:239461 -k1,769:23139183,14329618:239461 -k1,769:26359221,14329618:239461 -k1,769:29110021,14329618:239460 -k1,769:31591469,14329618:239461 -k1,769:32583029,14329618:0 -) -(1,770:6630773,15171106:25952256,513147,115847 -k1,769:8251842,15171106:253988 -k1,769:11466091,15171106:253988 -k1,769:14662646,15171106:253988 -(1,769:14662646,15171106:0,414482,115847 -r1,846:15020912,15171106:358266,530329,115847 -k1,769:14662646,15171106:-358266 -) -(1,769:14662646,15171106:358266,414482,115847 -k1,769:14662646,15171106:3277 -h1,769:15017635,15171106:0,411205,112570 -) -k1,769:15274899,15171106:253987 -k1,769:16720332,15171106:253988 -(1,769:16720332,15171106:0,414482,115847 -r1,846:17078598,15171106:358266,530329,115847 -k1,769:16720332,15171106:-358266 -) -(1,769:16720332,15171106:358266,414482,115847 -k1,769:16720332,15171106:3277 -h1,769:17075321,15171106:0,411205,112570 -) -k1,769:17332586,15171106:253988 -k1,769:18578134,15171106:253988 -k1,769:20004561,15171106:253988 -k1,769:23020892,15171106:253988 -k1,769:26290190,15171106:253987 -k1,769:29156443,15171106:253988 -k1,769:31478747,15171106:253988 -k1,769:32583029,15171106:0 -) -(1,770:6630773,16012594:25952256,505283,134348 -k1,769:7668946,16012594:290407 -k1,769:9348062,16012594:290408 -k1,769:10254507,16012594:290407 -k1,769:10959666,16012594:290316 -k1,769:14081228,16012594:290407 -k1,769:14829733,16012594:290408 -k1,769:15651637,16012594:290407 -k1,769:17008316,16012594:290408 -k1,769:17654583,16012594:290407 -k1,769:19528995,16012594:290407 -k1,769:21144541,16012594:290408 -k1,769:22086376,16012594:290407 -k1,769:23469269,16012594:290408 -k1,769:25113650,16012594:290407 -k1,769:26792765,16012594:290407 -k1,769:29325160,16012594:290408 -k1,769:31103890,16012594:290407 -k1,769:31607198,16012594:290316 -k1,769:32583029,16012594:0 -) -(1,770:6630773,16854082:25952256,505283,134348 -k1,769:8587123,16854082:220957 -k1,769:10162054,16854082:220957 -k1,769:12067942,16854082:220957 -k1,769:14530886,16854082:220957 -k1,769:18105976,16854082:220957 -k1,769:19611439,16854082:220957 -k1,769:20363893,16854082:220957 -k1,769:22872057,16854082:220957 -k1,769:24378830,16854082:220957 -k1,769:24955647,16854082:220957 -k1,769:26530578,16854082:220957 -k1,769:27928562,16854082:220957 -k1,769:29648327,16854082:220957 -k1,769:32583029,16854082:0 -) -(1,770:6630773,17695570:25952256,505283,126483 -k1,769:7528313,17695570:281502 -k1,769:8828900,17695570:281502 -k1,769:12102122,17695570:281503 -k1,769:12999662,17695570:281502 -k1,769:14484405,17695570:281502 -k1,769:17183530,17695570:281502 -k1,769:19383927,17695570:281503 -k1,769:20684514,17695570:281502 -k1,769:23004186,17695570:281502 -k1,769:25296333,17695570:281502 -k1,769:27053051,17695570:281503 -k1,769:28143923,17695570:281502 -k1,769:31931601,17695570:281502 -k1,769:32583029,17695570:0 -) -(1,770:6630773,18537058:25952256,505283,126483 -k1,769:7826040,18537058:176182 -k1,769:9198910,18537058:176183 -k1,769:11378528,18537058:176182 -k1,769:13679388,18537058:176183 -k1,769:15923886,18537058:176182 -k1,769:19527602,18537058:176183 -k1,769:21212423,18537058:176182 -k1,769:23966792,18537058:176183 -k1,769:26394791,18537058:176182 -k1,769:27198809,18537058:176183 -k1,769:28394076,18537058:176182 -k1,769:30540927,18537058:176183 -k1,770:32583029,18537058:0 -) -(1,770:6630773,19378546:25952256,505283,126483 -(1,769:6630773,19378546:0,435480,115847 -r1,846:8044174,19378546:1413401,551327,115847 -k1,769:6630773,19378546:-1413401 -) -(1,769:6630773,19378546:1413401,435480,115847 -k1,769:6630773,19378546:3277 -h1,769:8040897,19378546:0,411205,112570 -) -k1,769:8209914,19378546:165740 -k1,769:9567099,19378546:165740 -(1,769:9567099,19378546:0,435480,115847 -r1,846:10980500,19378546:1413401,551327,115847 -k1,769:9567099,19378546:-1413401 -) -(1,769:9567099,19378546:1413401,435480,115847 -k1,769:9567099,19378546:3277 -h1,769:10977223,19378546:0,411205,112570 -) -k1,769:11146240,19378546:165740 -k1,769:12303540,19378546:165740 -k1,769:15672024,19378546:165740 -k1,769:18073198,19378546:165741 -k1,769:20750278,19378546:165740 -k1,769:23158005,19378546:165740 -k1,769:23536704,19378546:165707 -k1,769:25882827,19378546:165740 -k1,769:27523782,19378546:165740 -k1,769:29202748,19378546:165740 -k1,769:31436804,19378546:165740 -k1,770:32583029,19378546:0 -) -(1,770:6630773,20220034:25952256,513147,126483 -(1,769:6630773,20220034:0,452978,122846 -r1,846:9802733,20220034:3171960,575824,122846 -k1,769:6630773,20220034:-3171960 -) -(1,769:6630773,20220034:3171960,452978,122846 -k1,769:6630773,20220034:3277 -h1,769:9799456,20220034:0,411205,112570 -) -k1,769:9936683,20220034:133950 -k1,769:10753517,20220034:133949 -(1,769:10753517,20220034:0,452978,115847 -r1,846:18146019,20220034:7392502,568825,115847 -k1,769:10753517,20220034:-7392502 -) -(1,769:10753517,20220034:7392502,452978,115847 -k1,769:10753517,20220034:3277 -h1,769:18142742,20220034:0,411205,112570 -) -k1,769:18279969,20220034:133950 -k1,769:18879879,20220034:133949 -k1,769:20394017,20220034:133950 -k1,769:21719412,20220034:133950 -k1,769:23363311,20220034:133949 -k1,769:25474482,20220034:133950 -k1,769:26259859,20220034:133949 -k1,769:28602372,20220034:133950 -k1,769:32583029,20220034:0 -) -(1,770:6630773,21061522:25952256,505283,134348 -k1,769:7730180,21061522:281518 -k1,769:8367559,21061522:281519 -k1,769:10407408,21061522:281518 -k1,769:11340355,21061522:281519 -k1,769:14173845,21061522:281518 -k1,769:14668273,21061522:281436 -k1,769:16132716,21061522:281518 -k1,769:18110962,21061522:281519 -k1,769:20460796,21061522:281518 -k1,769:22136266,21061522:281519 -(1,769:22136266,21061522:0,414482,115847 -r1,846:23549667,21061522:1413401,530329,115847 -k1,769:22136266,21061522:-1413401 -) -(1,769:22136266,21061522:1413401,414482,115847 -k1,769:22136266,21061522:3277 -h1,769:23546390,21061522:0,411205,112570 -) -k1,769:23831185,21061522:281518 -k1,769:24764132,21061522:281519 -k1,769:27338099,21061522:281518 -k1,769:29997920,21061522:281519 -k1,769:31563944,21061522:281518 -k1,769:32583029,21061522:0 -) -(1,770:6630773,21903010:25952256,505283,134348 -g1,769:9119830,21903010 -g1,769:11357229,21903010 -g1,769:12172496,21903010 -g1,769:14068452,21903010 -g1,769:17109322,21903010 -g1,769:18300111,21903010 -k1,770:32583029,21903010:11801070 -g1,770:32583029,21903010 -) -v1,772:6630773,23093476:0,393216,0 -(1,794:6630773,30001530:25952256,7301270,196608 -g1,794:6630773,30001530 -g1,794:6630773,30001530 -g1,794:6434165,30001530 -(1,794:6434165,30001530:0,7301270,196608 -r1,846:32779637,30001530:26345472,7497878,196608 -k1,794:6434165,30001530:-26345472 -) -(1,794:6434165,30001530:26345472,7301270,196608 -[1,794:6630773,30001530:25952256,7104662,0 -(1,774:6630773,23285365:25952256,388497,6290 -(1,773:6630773,23285365:0,0,0 -g1,773:6630773,23285365 -g1,773:6630773,23285365 -g1,773:6303093,23285365 -(1,773:6303093,23285365:0,0,0 -) -g1,773:6630773,23285365 -) -g1,774:8211502,23285365 -g1,774:9159940,23285365 -h1,774:9476086,23285365:0,0,0 -k1,774:32583030,23285365:23106944 -g1,774:32583030,23285365 -) -(1,775:6630773,23951543:25952256,388497,6290 -h1,775:6630773,23951543:0,0,0 -g1,775:8211502,23951543 -g1,775:8843794,23951543 -h1,775:9159940,23951543:0,0,0 -k1,775:32583028,23951543:23423088 -g1,775:32583028,23951543 -) -(1,779:6630773,24617721:25952256,404226,76021 -(1,777:6630773,24617721:0,0,0 -g1,777:6630773,24617721 -g1,777:6630773,24617721 -g1,777:6303093,24617721 -(1,777:6303093,24617721:0,0,0 -) -g1,777:6630773,24617721 -) -g1,779:7579210,24617721 -g1,779:8843793,24617721 -h1,779:9159939,24617721:0,0,0 -k1,779:32583029,24617721:23423090 -g1,779:32583029,24617721 -) -(1,781:6630773,25939259:25952256,388497,6290 -(1,780:6630773,25939259:0,0,0 -g1,780:6630773,25939259 -g1,780:6630773,25939259 -g1,780:6303093,25939259 -(1,780:6303093,25939259:0,0,0 -) -g1,780:6630773,25939259 -) -h1,781:7895356,25939259:0,0,0 -k1,781:32583028,25939259:24687672 -g1,781:32583028,25939259 -) -(1,785:6630773,26605437:25952256,404226,76021 -(1,783:6630773,26605437:0,0,0 -g1,783:6630773,26605437 -g1,783:6630773,26605437 -g1,783:6303093,26605437 -(1,783:6303093,26605437:0,0,0 -) -g1,783:6630773,26605437 -) -g1,785:7579210,26605437 -g1,785:8843793,26605437 -h1,785:9159939,26605437:0,0,0 -k1,785:32583029,26605437:23423090 -g1,785:32583029,26605437 -) -(1,787:6630773,27926975:25952256,388497,9436 -(1,786:6630773,27926975:0,0,0 -g1,786:6630773,27926975 -g1,786:6630773,27926975 -g1,786:6303093,27926975 -(1,786:6303093,27926975:0,0,0 -) -g1,786:6630773,27926975 -) -g1,787:8211502,27926975 -g1,787:9159940,27926975 -h1,787:9792231,27926975:0,0,0 -k1,787:32583029,27926975:22790798 -g1,787:32583029,27926975 -) -(1,788:6630773,28593153:25952256,388497,6290 -h1,788:6630773,28593153:0,0,0 -g1,788:8211502,28593153 -g1,788:9159940,28593153 -g1,788:10740669,28593153 -g1,788:11372961,28593153 -h1,788:12637544,28593153:0,0,0 -k1,788:32583028,28593153:19945484 -g1,788:32583028,28593153 -) -(1,789:6630773,29259331:25952256,388497,6290 -h1,789:6630773,29259331:0,0,0 -h1,789:7895356,29259331:0,0,0 -k1,789:32583028,29259331:24687672 -g1,789:32583028,29259331 -) -(1,793:6630773,29925509:25952256,404226,76021 -(1,791:6630773,29925509:0,0,0 -g1,791:6630773,29925509 -g1,791:6630773,29925509 -g1,791:6303093,29925509 -(1,791:6303093,29925509:0,0,0 -) -g1,791:6630773,29925509 -) -g1,793:7579210,29925509 -g1,793:8843793,29925509 -h1,793:9476084,29925509:0,0,0 -k1,793:32583028,29925509:23106944 -g1,793:32583028,29925509 -) -] -) -g1,794:32583029,30001530 -g1,794:6630773,30001530 -g1,794:6630773,30001530 -g1,794:32583029,30001530 -g1,794:32583029,30001530 -) -h1,794:6630773,30198138:0,0,0 -(1,798:6630773,31563914:25952256,513147,134348 -h1,797:6630773,31563914:983040,0,0 -k1,797:10441408,31563914:158969 -k1,797:11619461,31563914:158968 -k1,797:13516445,31563914:158969 -k1,797:14334706,31563914:158969 -k1,797:14849534,31563914:158968 -k1,797:17519843,31563914:158969 -k1,797:18309924,31563914:158969 -k1,797:19454554,31563914:158969 -k1,797:20063059,31563914:158928 -k1,797:22505958,31563914:158969 -k1,797:25671063,31563914:158969 -k1,797:27260027,31563914:158968 -k1,797:30114492,31563914:158969 -(1,797:30114492,31563914:0,452978,115847 -r1,846:32583029,31563914:2468537,568825,115847 -k1,797:30114492,31563914:-2468537 -) -(1,797:30114492,31563914:2468537,452978,115847 -k1,797:30114492,31563914:3277 -h1,797:32579752,31563914:0,411205,112570 -) -k1,797:32583029,31563914:0 -) -(1,798:6630773,32405402:25952256,505283,134348 -k1,797:10156862,32405402:240769 -k1,797:11416716,32405402:240769 -k1,797:13695655,32405402:240769 -k1,797:15616767,32405402:240769 -k1,797:16666906,32405402:240769 -k1,797:17926760,32405402:240769 -k1,797:20761445,32405402:240770 -k1,797:22198901,32405402:240769 -k1,797:24093143,32405402:240769 -k1,797:26615220,32405402:240769 -k1,797:27507417,32405402:240769 -k1,797:28879993,32405402:240769 -k1,797:30822732,32405402:240769 -k1,798:32583029,32405402:0 -) -(1,798:6630773,33246890:25952256,513147,126483 -k1,797:8505868,33246890:236040 -k1,797:11164775,33246890:236041 -k1,797:12031927,33246890:236040 -k1,797:13253629,33246890:236041 -k1,797:13939210,33246890:236004 -k1,797:16632850,33246890:236040 -(1,797:16632850,33246890:0,452978,115847 -r1,846:19101387,33246890:2468537,568825,115847 -k1,797:16632850,33246890:-2468537 -) -(1,797:16632850,33246890:2468537,452978,115847 -k1,797:16632850,33246890:3277 -h1,797:19098110,33246890:0,411205,112570 -) -k1,797:19337428,33246890:236041 -k1,797:20104965,33246890:236040 -k1,797:23347142,33246890:236041 -k1,797:25450958,33246890:236040 -k1,797:27080950,33246890:236041 -k1,797:28336075,33246890:236040 -k1,797:30414988,33246890:236041 -k1,797:31310320,33246890:236040 -k1,798:32583029,33246890:0 -) -(1,798:6630773,34088378:25952256,505283,134348 -g1,797:8825573,34088378 -g1,797:10043887,34088378 -g1,797:13429476,34088378 -g1,797:14314867,34088378 -g1,797:15302494,34088378 -k1,798:32583029,34088378:14034537 -g1,798:32583029,34088378 -) -v1,800:6630773,35278844:0,393216,0 -(1,825:6630773,42176080:25952256,7290452,196608 -g1,825:6630773,42176080 -g1,825:6630773,42176080 -g1,825:6434165,42176080 -(1,825:6434165,42176080:0,7290452,196608 -r1,846:32779637,42176080:26345472,7487060,196608 -k1,825:6434165,42176080:-26345472 -) -(1,825:6434165,42176080:26345472,7290452,196608 -[1,825:6630773,42176080:25952256,7093844,0 -(1,802:6630773,35470733:25952256,388497,6290 -(1,801:6630773,35470733:0,0,0 -g1,801:6630773,35470733 -g1,801:6630773,35470733 -g1,801:6303093,35470733 -(1,801:6303093,35470733:0,0,0 -) -g1,801:6630773,35470733 -) -h1,802:7895356,35470733:0,0,0 -k1,802:32583028,35470733:24687672 -g1,802:32583028,35470733 -) -(1,806:6630773,36136911:25952256,404226,76021 -(1,804:6630773,36136911:0,0,0 -g1,804:6630773,36136911 -g1,804:6630773,36136911 -g1,804:6303093,36136911 -(1,804:6303093,36136911:0,0,0 -) -g1,804:6630773,36136911 -) -g1,806:7579210,36136911 -g1,806:8843793,36136911 -h1,806:9159939,36136911:0,0,0 -k1,806:32583029,36136911:23423090 -g1,806:32583029,36136911 -) -(1,808:6630773,37458449:25952256,404226,101187 -(1,807:6630773,37458449:0,0,0 -g1,807:6630773,37458449 -g1,807:6630773,37458449 -g1,807:6303093,37458449 -(1,807:6303093,37458449:0,0,0 -) -g1,807:6630773,37458449 -) -k1,808:6630773,37458449:0 -h1,808:10108375,37458449:0,0,0 -k1,808:32583029,37458449:22474654 -g1,808:32583029,37458449 -) -(1,812:6630773,38124627:25952256,404226,76021 -(1,810:6630773,38124627:0,0,0 -g1,810:6630773,38124627 -g1,810:6630773,38124627 -g1,810:6303093,38124627 -(1,810:6303093,38124627:0,0,0 -) -g1,810:6630773,38124627 -) -g1,812:7579210,38124627 -g1,812:8843793,38124627 -h1,812:9159939,38124627:0,0,0 -k1,812:32583029,38124627:23423090 -g1,812:32583029,38124627 -) -(1,814:6630773,39446165:25952256,388497,6290 -(1,813:6630773,39446165:0,0,0 -g1,813:6630773,39446165 -g1,813:6630773,39446165 -g1,813:6303093,39446165 -(1,813:6303093,39446165:0,0,0 -) -g1,813:6630773,39446165 -) -g1,814:8211502,39446165 -g1,814:8843794,39446165 -h1,814:9159940,39446165:0,0,0 -k1,814:32583028,39446165:23423088 -g1,814:32583028,39446165 -) -(1,818:6630773,40112343:25952256,404226,76021 -(1,816:6630773,40112343:0,0,0 -g1,816:6630773,40112343 -g1,816:6630773,40112343 -g1,816:6303093,40112343 -(1,816:6303093,40112343:0,0,0 -) -g1,816:6630773,40112343 -) -g1,818:7579210,40112343 -g1,818:8843793,40112343 -h1,818:9159939,40112343:0,0,0 -k1,818:32583029,40112343:23423090 -g1,818:32583029,40112343 -) -(1,820:6630773,41433881:25952256,404226,101187 -(1,819:6630773,41433881:0,0,0 -g1,819:6630773,41433881 -g1,819:6630773,41433881 -g1,819:6303093,41433881 -(1,819:6303093,41433881:0,0,0 -) -g1,819:6630773,41433881 -) -k1,820:6630773,41433881:0 -g1,820:10108375,41433881 -g1,820:10740667,41433881 -h1,820:11372959,41433881:0,0,0 -k1,820:32583029,41433881:21210070 -g1,820:32583029,41433881 -) -(1,824:6630773,42100059:25952256,404226,76021 -(1,822:6630773,42100059:0,0,0 -g1,822:6630773,42100059 -g1,822:6630773,42100059 -g1,822:6303093,42100059 -(1,822:6303093,42100059:0,0,0 -) -g1,822:6630773,42100059 -) -g1,824:7579210,42100059 -g1,824:8843793,42100059 -h1,824:9159939,42100059:0,0,0 -k1,824:32583029,42100059:23423090 -g1,824:32583029,42100059 -) -] -) -g1,825:32583029,42176080 -g1,825:6630773,42176080 -g1,825:6630773,42176080 -g1,825:32583029,42176080 -g1,825:32583029,42176080 -) -h1,825:6630773,42372688:0,0,0 -v1,828:6630773,44262752:0,393216,0 -(1,846:6630773,45663261:25952256,1793725,0 -g1,846:6630773,45663261 -g1,846:6303093,45663261 -r1,846:6401397,45663261:98304,1793725,0 -g1,846:6600626,45663261 -g1,846:6797234,45663261 -[1,846:6797234,45663261:25785795,1793725,0 -(1,829:6797234,44695290:25785795,825754,196608 -(1,828:6797234,44695290:0,825754,196608 -r1,846:7890375,44695290:1093141,1022362,196608 -k1,828:6797234,44695290:-1093141 -) -(1,828:6797234,44695290:1093141,825754,196608 -) -k1,828:8179847,44695290:289472 -k1,828:9497776,44695290:327680 -k1,828:11619635,44695290:289472 -k1,828:12900668,44695290:289473 -k1,828:14882280,44695290:289472 -k1,828:19143234,44695290:289472 -k1,828:20920373,44695290:289472 -k1,828:24855613,44695290:289472 -k1,828:28661748,44695290:289473 -k1,828:30235726,44695290:289472 -k1,828:31516758,44695290:289472 -k1,828:32583029,44695290:0 -) -(1,829:6797234,45536778:25785795,513147,126483 -k1,828:8424914,45536778:273706 -k1,828:12003602,45536778:273707 -k1,828:13964205,45536778:273706 -k1,828:15310080,45536778:273706 -k1,828:16754260,45536778:273707 -k1,828:19208349,45536778:273706 -k1,828:20229822,45536778:273707 -k1,828:22371959,45536778:273706 -k1,828:23930171,45536778:273706 -k1,828:25584066,45536778:273707 -k1,828:26849332,45536778:273706 -k1,828:28836804,45536778:273706 -k1,828:29796673,45536778:273707 -k1,828:31450567,45536778:273706 -k1,828:32583029,45536778:0 -) -] -g1,846:32583029,45663261 -) -] -(1,846:32583029,45706769:0,0,0 -g1,846:32583029,45706769 ) +g1,942:29776480,21488515 +(1,942:29776480,21488515:665744,665744,665744 +g1,942:30442224,21488515 +g1,942:30442224,21488515 ) -] -(1,846:6630773,47279633:25952256,0,0 -h1,846:6630773,47279633:25952256,0,0 -) -] -(1,846:4262630,4025873:0,0,0 -[1,846:-473656,4025873:0,0,0 -(1,846:-473656,-710413:0,0,0 -(1,846:-473656,-710413:0,0,0 -g1,846:-473656,-710413 -) -g1,846:-473656,-710413 +g1,942:30442224,21488515 ) ] ) -] -!23733 -}41 -Input:273:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:274:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:275:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:276:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:277:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:278:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:279:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:280:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!755 -{42 -[1,919:4262630,47279633:28320399,43253760,0 -(1,919:4262630,4025873:0,0,0 -[1,919:-473656,4025873:0,0,0 -(1,919:-473656,-710413:0,0,0 -(1,919:-473656,-644877:0,0,0 -k1,919:-473656,-644877:-65536 ) -(1,919:-473656,4736287:0,0,0 -k1,919:-473656,4736287:5209943 +g1,942:17363270,21488515 +g1,942:17363270,21488515 ) -g1,919:-473656,-710413 ) -] +g1,942:17363270,21488515 +g1,943:17363270,21488515 +(1,943:17363270,21488515:0,0,0 +(1,943:17363270,21488515:0,0,0 +g1,943:17363270,21488515 +g1,943:17363270,21488515 +g1,943:17363270,21488515 +g1,943:17363270,21488515 +g1,943:17363270,21488515 +(1,943:17363270,21488515:0,0,0 +(1,943:17363270,21488515:0,0,0 +h1,943:17363270,21488515:0,0,0 +g1,943:17363270,21488515 ) -[1,919:6630773,47279633:25952256,43253760,0 -[1,919:6630773,4812305:25952256,786432,0 -(1,919:6630773,4812305:25952256,505283,7863 -(1,919:6630773,4812305:25952256,505283,7863 -g1,919:3078558,4812305 -[1,919:3078558,4812305:0,0,0 -(1,919:3078558,2439708:0,1703936,0 -k1,919:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,919:2537886,2439708:1179648,16384,0 ) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,919:3078558,1915420:16384,1179648,0 +g1,943:17363270,21488515 +g1,943:17363270,21488515 ) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 ) -] +g1,943:17363270,21488515 +g1,947:17363270,21488515 +g1,947:17363270,21488515 +g1,949:17363270,21488515 +(1,949:17363270,21488515:0,0,0 +(1,949:17363270,21488515:0,0,0 +g1,949:17363270,21488515 +(1,949:17363270,21488515:0,0,0 +(1,949:17363270,21488515:1860446,479396,205458 +(1,949:17363270,21488515:1860446,479396,205458 +g1,949:17528945,21488515 +(1,949:17528945,21488515:0,332241,93333 +r1,1026:19223716,21488515:1694771,425574,93333 +k1,949:17528945,21488515:-1694771 ) +(1,949:17528945,21488515:1694771,332241,93333 +k1,949:17528945,21488515:3277 +h1,949:19220439,21488515:0,328964,90056 ) +r1,1026:19223716,21488515:0,684854,205458 ) -] -[1,919:3078558,4812305:0,0,0 -(1,919:3078558,2439708:0,1703936,0 -g1,919:29030814,2439708 -g1,919:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,919:36151628,1915420:16384,1179648,0 +g1,949:19223716,21488515 ) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 ) -] +g1,949:17363270,21488515 +g1,949:17363270,21488515 ) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,919:37855564,2439708:1179648,16384,0 +) +g1,949:17363270,21488515 +g1,950:17363270,21488515 +g1,950:17363270,21488515 +(1,950:17363270,21488515:0,0,0 +(1,950:17363270,21488515:0,0,0 +g1,950:17363270,21488515 +g1,950:17363270,21488515 +g1,950:17363270,21488515 +g1,950:17363270,21488515 +g1,950:17363270,21488515 +(1,950:17363270,21488515:0,0,0 +(1,950:17363270,21488515:2695889,404226,6290 +(1,950:17363270,21488515:2695889,404226,6290 +g1,950:18638863,21488515 +) +g1,950:20059159,21488515 ) ) -k1,919:3078556,2439708:-34777008 +g1,950:17363270,21488515 +g1,950:17363270,21488515 ) -] -[1,919:3078558,4812305:0,0,0 -(1,919:3078558,49800853:0,16384,2228224 -k1,919:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,919:2537886,49800853:1179648,16384,0 ) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,919:3078558,51504789:16384,1179648,0 +g1,950:17363270,21488515 +g1,951:17363270,21488515 +(1,951:17363270,21488515:0,0,0 +(1,951:17363270,21488515:0,0,0 +g1,951:17363270,21488515 +g1,951:17363270,21488515 +g1,951:17363270,21488515 +g1,951:17363270,21488515 +g1,951:17363270,21488515 +(1,951:17363270,21488515:0,0,0 +(1,951:17363270,21488515:6599312,404226,101187 +(1,951:17363270,21488515:6599312,404226,101187 +(1,951:17363270,21488515:0,363038,98932 +r1,1026:19339410,21488515:1976140,461970,98932 +k1,951:17363270,21488515:-1976140 +) +(1,951:17363270,21488515:1976140,363038,98932 +k1,951:17363270,21488515:3277 +h1,951:19336133,21488515:0,328964,90056 +) +g1,951:19505085,21488515 +g1,951:22176857,21488515 +) +g1,951:23962582,21488515 +) +) +g1,951:17363270,21488515 +g1,951:17363270,21488515 +) +) +g1,951:17363270,21488515 +g1,952:17363270,21488515 +(1,952:17363270,21488515:0,0,0 +(1,952:17363270,21488515:0,0,0 +g1,952:17363270,21488515 +g1,952:17363270,21488515 +g1,952:17363270,21488515 +g1,952:17363270,21488515 +g1,952:17363270,21488515 +(1,952:17363270,21488515:0,0,0 +(1,952:17363270,21488515:5422637,404226,93333 +(1,952:17363270,21488515:5422637,404226,93333 +g1,952:19826375,21488515 +g1,952:20528397,21488515 +(1,952:20528397,21488515:0,363038,93333 +r1,1026:22785907,21488515:2257510,456371,93333 +k1,952:20528397,21488515:-2257510 +) +(1,952:20528397,21488515:2257510,363038,93333 +k1,952:20528397,21488515:3277 +h1,952:22782630,21488515:0,328964,90056 +) +) +g1,952:22785907,21488515 +) +) +g1,952:17363270,21488515 +g1,952:17363270,21488515 +) +) +g1,952:17363270,21488515 +g1,953:17363270,21488515 +g1,953:17363270,21488515 +(1,953:17363270,21488515:0,0,0 +(1,953:17363270,21488515:0,0,0 +g1,953:17363270,21488515 +g1,953:17363270,21488515 +g1,953:17363270,21488515 +g1,953:17363270,21488515 +g1,953:17363270,21488515 +(1,953:17363270,21488515:0,0,0 +(1,953:17363270,21488515:4773118,404226,9436 +(1,953:17363270,21488515:4773118,404226,9436 +(1,953:17363270,21488515:4773118,404226,9436 +g1,953:19567377,21488515 +g1,953:20218543,21488515 +g1,953:21804514,21488515 +) +) +g1,953:22136388,21488515 +) +) +g1,953:17363270,21488515 +g1,953:17363270,21488515 +) +) +g1,953:17363270,21488515 +g1,954:17363270,21488515 +g1,954:17363270,21488515 +g1,954:17363270,21488515 +g1,954:17363270,21488515 +g1,954:17363270,21488515 +g1,954:17363270,21488515 +g1,956:17363270,21488515 +g1,956:17363270,21488515 +) +g1,956:17363270,21488515 +) +) +g1,958:31278038,22854895 +k1,958:32583029,22854895:1304991 +) +(1,961:6630773,24375335:25952256,505283,134348 +h1,960:6630773,24375335:983040,0,0 +k1,960:10459550,24375335:262963 +k1,960:11338551,24375335:262963 +k1,960:15924924,24375335:262963 +k1,960:19051156,24375335:262964 +k1,960:20305679,24375335:262963 +k1,960:23336883,24375335:262963 +k1,960:27409454,24375335:262963 +k1,960:29407810,24375335:262963 +k1,960:32583029,24375335:0 +) +(1,961:6630773,25240415:25952256,505283,126483 +g1,960:9256800,25240415 +g1,960:10142191,25240415 +k1,961:32583028,25240415:18960220 +g1,961:32583028,25240415 +) +(1,963:15414961,26105495:17168068,505283,103819 +(1,963:15414961,26105495:8383880,351273,103819 +h1,963:15414961,26105495:0,0,0 +(1,963:15877645,26203809:1131020,334430,5505 +) +g1,963:17190725,26105495 +g1,963:17940982,26105495 +(1,963:18403666,26203809:311689,334430,0 +) +g1,963:19013990,26105495 +(1,963:19476674,26203809:311689,339935,0 +) +g1,963:20086998,26105495 +g1,963:20773606,26105495 +(1,963:21236290,26203809:233243,346358,5505 +) +g1,963:21768168,26105495 +g1,963:22454776,26105495 +g1,963:22753411,26105495 +(1,963:23216095,26203809:393347,248644,5505 +) +) +(1,963:31198253,26105495:1384776,505283,95026 +(1,963:31198253,26105495:1384776,505283,95026 +) +) +) +(1,965:6630773,27363791:25952256,513147,134348 +k1,964:8778502,27363791:228835 +$1,964:8778502,27363791 +(1,964:9241186,27462105:1131020,334430,5505 +) +$1,964:10372206,27363791 +k1,964:10601042,27363791:228836 +k1,964:11361374,27363791:228835 +k1,964:12609294,27363791:228835 +k1,964:14720979,27363791:228836 +k1,964:16927691,27363791:228835 +k1,964:18347971,27363791:228835 +$1,964:18347971,27363791 +(1,964:18810655,27462105:311689,334430,0 +) +$1,964:19122344,27363791 +k1,964:19351180,27363791:228836 +k1,964:20368413,27363791:228835 +k1,964:21903381,27363791:228835 +k1,964:24929293,27363791:228835 +k1,964:26354816,27363791:228836 +k1,964:28596917,27363791:228835 +k1,964:29485044,27363791:228835 +$1,964:29485044,27363791 +(1,964:29947728,27462105:1131020,334430,5505 +) +$1,964:31078748,27363791 +k1,964:31307584,27363791:228836 +k1,964:32067916,27363791:228835 +$1,964:32067916,27363791 +$1,964:32583029,27363791 +k1,965:32583029,27363791:0 +) +(1,965:6630773,28228871:25952256,505283,134348 +g1,964:7516164,28228871 +g1,964:8173490,28228871 +g1,964:11074768,28228871 +$1,964:11074768,28228871 +$1,964:11589881,28228871 +g1,964:11789110,28228871 +g1,964:15115717,28228871 +g1,964:15942781,28228871 +g1,964:17161095,28228871 +g1,964:19976521,28228871 +g1,964:22031074,28228871 +$1,964:22031074,28228871 +g1,964:22728247,28228871 +g1,964:23478504,28228871 +$1,964:24275422,28228871 +k1,965:32583029,28228871:8133937 +g1,965:32583029,28228871 +) +(1,967:6630773,29093951:25952256,513147,126483 +h1,966:6630773,29093951:983040,0,0 +k1,966:8615803,29093951:184101 +k1,966:9970378,29093951:184102 +k1,966:11629694,29093951:184101 +k1,966:13253622,29093951:184102 +k1,966:15466718,29093951:184101 +k1,966:16669905,29093951:184102 +k1,966:19027180,29093951:184101 +k1,966:19870574,29093951:184102 +k1,966:23856418,29093951:184101 +k1,966:25544571,29093951:184102 +k1,966:28078793,29093951:184101 +k1,966:31189078,29093951:184102 +k1,967:32583029,29093951:0 +) +(1,967:6630773,29959031:25952256,513147,126483 +(1,966:6630773,29959031:0,452978,115847 +r1,1026:7692462,29959031:1061689,568825,115847 +k1,966:6630773,29959031:-1061689 +) +(1,966:6630773,29959031:1061689,452978,115847 +k1,966:6630773,29959031:3277 +h1,966:7689185,29959031:0,411205,112570 +) +k1,966:8064665,29959031:198533 +k1,966:9644041,29959031:198532 +k1,966:10374071,29959031:198533 +k1,966:11591688,29959031:198532 +k1,966:13539377,29959031:198533 +k1,966:14420795,29959031:198533 +k1,966:17233558,29959031:198532 +k1,966:18048129,29959031:198533 +k1,966:19265747,29959031:198533 +k1,966:21442156,29959031:198532 +k1,966:22299981,29959031:198533 +k1,966:23517598,29959031:198532 +k1,966:25022264,29959031:198533 +k1,966:27706578,29959031:198533 +k1,966:28795089,29959031:198532 +k1,966:30695592,29959031:198533 +k1,966:32583029,29959031:0 +) +(1,967:6630773,30824111:25952256,513147,134348 +k1,966:9859488,30824111:165562 +k1,966:10637813,30824111:165563 +k1,966:11822460,30824111:165562 +k1,966:13526807,30824111:165562 +k1,966:14351662,30824111:165563 +k1,966:15536309,30824111:165562 +k1,966:18046094,30824111:165562 +k1,966:19553834,30824111:165563 +k1,966:20537285,30824111:165562 +k1,966:21318885,30824111:165562 +k1,966:21899257,30824111:165529 +k1,966:23937839,30824111:165563 +k1,966:26114046,30824111:165562 +k1,966:27271168,30824111:165562 +k1,966:29744909,30824111:165563 +k1,966:30569763,30824111:165562 +k1,966:32583029,30824111:0 +) +(1,967:6630773,31689191:25952256,505283,126483 +g1,966:8160383,31689191 +g1,966:10057650,31689191 +g1,966:11637067,31689191 +g1,966:12827856,31689191 +g1,966:15550876,31689191 +g1,966:17130293,31689191 +g1,966:18321082,31689191 +g1,966:19806127,31689191 +g1,966:22931539,31689191 +g1,966:24524719,31689191 +(1,966:24524719,31689191:0,452978,115847 +r1,1026:25586408,31689191:1061689,568825,115847 +k1,966:24524719,31689191:-1061689 +) +(1,966:24524719,31689191:1061689,452978,115847 +k1,966:24524719,31689191:3277 +h1,966:25583131,31689191:0,411205,112570 +) +k1,967:32583029,31689191:6822951 +g1,967:32583029,31689191 +) +(1,969:6630773,32554271:25952256,513147,115847 +h1,968:6630773,32554271:983040,0,0 +k1,968:9107378,32554271:222167 +k1,968:10433826,32554271:222166 +k1,968:11748478,32554271:222167 +k1,968:14666140,32554271:222166 +(1,968:14666140,32554271:0,452978,115847 +r1,1026:15727829,32554271:1061689,568825,115847 +k1,968:14666140,32554271:-1061689 +) +(1,968:14666140,32554271:1061689,452978,115847 +k1,968:14666140,32554271:3277 +h1,968:15724552,32554271:0,411205,112570 +) +k1,968:15949996,32554271:222167 +k1,968:20584046,32554271:222166 +k1,968:21457641,32554271:222167 +k1,968:23609187,32554271:222166 +k1,968:24187214,32554271:222167 +k1,968:26387257,32554271:222166 +k1,968:28177045,32554271:222167 +k1,968:30101181,32554271:222166 +k1,968:32583029,32554271:0 +) +(1,969:6630773,33419351:25952256,513147,134348 +k1,968:9900566,33419351:289216 +k1,968:12497959,33419351:289215 +k1,968:13446467,33419351:289216 +k1,968:15748948,33419351:289215 +k1,968:16610293,33419351:289216 +k1,968:17582393,33419351:289215 +k1,968:19338305,33419351:289216 +k1,968:21935699,33419351:289216 +k1,968:22884206,33419351:289215 +k1,968:25186688,33419351:289216 +k1,968:26048032,33419351:289215 +k1,968:27830814,33419351:289216 +k1,968:28806192,33419351:289216 +k1,968:30114492,33419351:289215 +(1,968:30114492,33419351:0,452978,115847 +r1,1026:32583029,33419351:2468537,568825,115847 +k1,968:30114492,33419351:-2468537 +) +(1,968:30114492,33419351:2468537,452978,115847 +k1,968:30114492,33419351:3277 +h1,968:32579752,33419351:0,411205,112570 +) +k1,968:32583029,33419351:0 +) +(1,969:6630773,34284431:25952256,513147,126483 +k1,968:9906619,34284431:187790 +k1,968:10710448,34284431:187791 +k1,968:11917323,34284431:187790 +k1,968:15621775,34284431:187790 +k1,968:17851668,34284431:187791 +k1,968:19236145,34284431:187790 +k1,968:20730069,34284431:187791 +k1,968:23579276,34284431:187790 +k1,968:25758050,34284431:187790 +k1,968:26716544,34284431:187791 +k1,968:30605152,34284431:187790 +k1,968:32583029,34284431:0 +) +(1,969:6630773,35149511:25952256,505283,126483 +g1,968:9353793,35149511 +g1,968:12076813,35149511 +g1,968:13467487,35149511 +g1,968:15100644,35149511 +g1,968:19616730,35149511 +k1,969:32583029,35149511:9673770 +g1,969:32583029,35149511 +) +v1,971:6630773,35834366:0,393216,0 +(1,978:6630773,36957946:25952256,1516796,196608 +g1,978:6630773,36957946 +g1,978:6630773,36957946 +g1,978:6434165,36957946 +(1,978:6434165,36957946:0,1516796,196608 +r1,1026:32779637,36957946:26345472,1713404,196608 +k1,978:6434165,36957946:-26345472 +) +(1,978:6434165,36957946:26345472,1516796,196608 +[1,978:6630773,36957946:25952256,1320188,0 +(1,973:6630773,36062197:25952256,424439,86428 +(1,972:6630773,36062197:0,0,0 +g1,972:6630773,36062197 +g1,972:6630773,36062197 +g1,972:6303093,36062197 +(1,972:6303093,36062197:0,0,0 +) +g1,972:6630773,36062197 +) +k1,973:6630773,36062197:0 +g1,973:8290543,36062197 +g1,973:9286405,36062197 +h1,973:9950313,36062197:0,0,0 +k1,973:32583029,36062197:22632716 +g1,973:32583029,36062197 +) +(1,977:6630773,36878124:25952256,424439,79822 +(1,975:6630773,36878124:0,0,0 +g1,975:6630773,36878124 +g1,975:6630773,36878124 +g1,975:6303093,36878124 +(1,975:6303093,36878124:0,0,0 +) +g1,975:6630773,36878124 +) +g1,977:7626635,36878124 +g1,977:8954451,36878124 +g1,977:9618359,36878124 +g1,977:10282267,36878124 +h1,977:10614221,36878124:0,0,0 +k1,977:32583029,36878124:21968808 +g1,977:32583029,36878124 +) +] +) +g1,978:32583029,36957946 +g1,978:6630773,36957946 +g1,978:6630773,36957946 +g1,978:32583029,36957946 +g1,978:32583029,36957946 +) +h1,978:6630773,37154554:0,0,0 +(1,982:6630773,38019634:25952256,505283,134348 +h1,981:6630773,38019634:983040,0,0 +k1,981:8610142,38019634:167299 +k1,981:9525207,38019634:167299 +k1,981:11001260,38019634:167299 +k1,981:11819987,38019634:167299 +k1,981:13715469,38019634:167298 +k1,981:14901853,38019634:167299 +k1,981:17220699,38019634:167299 +k1,981:18256350,38019634:167299 +k1,981:20430361,38019634:167299 +k1,981:21055757,38019634:167299 +k1,981:21874484,38019634:167299 +k1,981:22397643,38019634:167299 +k1,981:25249952,38019634:167299 +k1,981:27340076,38019634:167298 +k1,981:27863235,38019634:167299 +k1,981:29768549,38019634:167299 +k1,981:30587276,38019634:167299 +k1,981:31386342,38019634:167299 +k1,981:32583029,38019634:0 +) +(1,982:6630773,38884714:25952256,513147,134348 +k1,981:8872089,38884714:228050 +k1,981:9759432,38884714:228051 +k1,981:10343342,38884714:228050 +k1,981:12549270,38884714:228051 +k1,981:13881602,38884714:228050 +k1,981:14857419,38884714:228051 +k1,981:17509646,38884714:228050 +k1,981:19131648,38884714:228051 +k1,981:22055194,38884714:228050 +(1,981:22055194,38884714:0,452978,122846 +r1,1026:24875443,38884714:2820249,575824,122846 +k1,981:22055194,38884714:-2820249 +) +(1,981:22055194,38884714:2820249,452978,122846 +k1,981:22055194,38884714:3277 +h1,981:24872166,38884714:0,411205,112570 +) +k1,981:25277164,38884714:228051 +k1,981:26458763,38884714:228050 +k1,981:28347496,38884714:228051 +k1,981:30443977,38884714:228050 +k1,981:31086842,38884714:228022 +k1,981:32583029,38884714:0 +) +(1,982:6630773,39749794:25952256,513147,134348 +g1,981:9583169,39749794 +g1,981:10543926,39749794 +g1,981:13689654,39749794 +g1,981:16859630,39749794 +g1,981:18077944,39749794 +g1,981:21208598,39749794 +g1,981:22067119,39749794 +g1,981:23285433,39749794 +g1,981:25792840,39749794 +k1,982:32583029,39749794:4266398 +g1,982:32583029,39749794 +) +v1,984:6630773,40434649:0,393216,0 +(1,998:6630773,43874938:25952256,3833505,196608 +g1,998:6630773,43874938 +g1,998:6630773,43874938 +g1,998:6434165,43874938 +(1,998:6434165,43874938:0,3833505,196608 +r1,1026:32779637,43874938:26345472,4030113,196608 +k1,998:6434165,43874938:-26345472 +) +(1,998:6434165,43874938:26345472,3833505,196608 +[1,998:6630773,43874938:25952256,3636897,0 +(1,986:6630773,40662480:25952256,424439,86428 +(1,985:6630773,40662480:0,0,0 +g1,985:6630773,40662480 +g1,985:6630773,40662480 +g1,985:6303093,40662480 +(1,985:6303093,40662480:0,0,0 +) +g1,985:6630773,40662480 +) +g1,986:8290543,40662480 +g1,986:9286405,40662480 +g1,986:10946175,40662480 +g1,986:11942037,40662480 +h1,986:12605945,40662480:0,0,0 +k1,986:32583029,40662480:19977084 +g1,986:32583029,40662480 +) +(1,987:6630773,41347335:25952256,424439,112852 +h1,987:6630773,41347335:0,0,0 +k1,987:6630773,41347335:0 +h1,987:10614221,41347335:0,0,0 +k1,987:32583029,41347335:21968808 +g1,987:32583029,41347335 +) +(1,991:6630773,42163262:25952256,424439,79822 +(1,989:6630773,42163262:0,0,0 +g1,989:6630773,42163262 +g1,989:6630773,42163262 +g1,989:6303093,42163262 +(1,989:6303093,42163262:0,0,0 +) +g1,989:6630773,42163262 +) +g1,991:7626635,42163262 +g1,991:8954451,42163262 +h1,991:9286405,42163262:0,0,0 +k1,991:32583029,42163262:23296624 +g1,991:32583029,42163262 +) +(1,993:6630773,42979189:25952256,398014,6605 +(1,992:6630773,42979189:0,0,0 +g1,992:6630773,42979189 +g1,992:6630773,42979189 +g1,992:6303093,42979189 +(1,992:6303093,42979189:0,0,0 +) +g1,992:6630773,42979189 +) +h1,993:7958589,42979189:0,0,0 +k1,993:32583029,42979189:24624440 +g1,993:32583029,42979189 +) +(1,997:6630773,43795116:25952256,424439,79822 +(1,995:6630773,43795116:0,0,0 +g1,995:6630773,43795116 +g1,995:6630773,43795116 +g1,995:6303093,43795116 +(1,995:6303093,43795116:0,0,0 +) +g1,995:6630773,43795116 +) +g1,997:7626635,43795116 +g1,997:8954451,43795116 +g1,997:9618359,43795116 +g1,997:10282267,43795116 +h1,997:10614221,43795116:0,0,0 +k1,997:32583029,43795116:21968808 +g1,997:32583029,43795116 +) +] +) +g1,998:32583029,43874938 +g1,998:6630773,43874938 +g1,998:6630773,43874938 +g1,998:32583029,43874938 +g1,998:32583029,43874938 +) +h1,998:6630773,44071546:0,0,0 +] +(1,1026:32583029,45706769:0,0,0 +g1,1026:32583029,45706769 ) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 ) ] +(1,1026:6630773,47279633:25952256,0,0 +h1,1026:6630773,47279633:25952256,0,0 ) +] +(1,1026:4262630,4025873:0,0,0 +[1,1026:-473656,4025873:0,0,0 +(1,1026:-473656,-710413:0,0,0 +(1,1026:-473656,-710413:0,0,0 +g1,1026:-473656,-710413 ) +g1,1026:-473656,-710413 ) ] -[1,919:3078558,4812305:0,0,0 -(1,919:3078558,49800853:0,16384,2228224 -g1,919:29030814,49800853 -g1,919:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,919:36151628,51504789:16384,1179648,0 -) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 -) -] -) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,919:37855564,49800853:1179648,16384,0 ) +] +!41802 +}43 +Input:297:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:298:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:299:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:300:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:301:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:302:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:303:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:304:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:305:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:306:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:307:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:308:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:309:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:310:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:311:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:312:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:313:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:314:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:315:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:316:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1871 +{44 +[1,1186:4262630,47279633:28320399,43253760,0 +(1,1186:4262630,4025873:0,0,0 +[1,1186:-473656,4025873:0,0,0 +(1,1186:-473656,-710413:0,0,0 +(1,1186:-473656,-644877:0,0,0 +k1,1186:-473656,-644877:-65536 ) -k1,919:3078556,49800853:-34777008 -) -] -g1,919:6630773,4812305 -g1,919:6630773,4812305 -g1,919:9516978,4812305 -g1,919:11710468,4812305 -g1,919:13120147,4812305 -g1,919:16560787,4812305 -k1,919:31786111,4812305:15225324 -) -) -] -[1,919:6630773,45706769:25952256,40108032,0 -(1,919:6630773,45706769:25952256,40108032,0 -(1,919:6630773,45706769:0,0,0 -g1,919:6630773,45706769 -) -[1,919:6630773,45706769:25952256,40108032,0 -v1,846:6630773,6254097:0,393216,0 -(1,846:6630773,18107466:25952256,12246585,0 -g1,846:6630773,18107466 -g1,846:6303093,18107466 -r1,919:6401397,18107466:98304,12246585,0 -g1,846:6600626,18107466 -g1,846:6797234,18107466 -[1,846:6797234,18107466:25785795,12246585,0 -(1,829:6797234,6366164:25785795,505283,134348 -k1,828:8119969,6366164:256464 -k1,828:10507009,6366164:256465 -k1,828:12370416,6366164:256464 -k1,828:15836178,6366164:256464 -k1,828:17284087,6366164:256464 -k1,828:18877486,6366164:256465 -k1,828:21755390,6366164:256464 -k1,828:23355997,6366164:256464 -k1,828:24809148,6366164:256464 -k1,828:26667313,6366164:256465 -k1,828:30133075,6366164:256464 -k1,828:32051532,6366164:256464 -k1,828:32583029,6366164:0 -) -(1,829:6797234,7207652:25785795,505283,134348 -k1,828:7616674,7207652:168012 -k1,828:9399493,7207652:168012 -k1,828:11063692,7207652:168012 -k1,828:15252338,7207652:168012 -k1,828:16617036,7207652:168011 -k1,828:20784055,7207652:168012 -k1,828:24597835,7207652:168012 -k1,828:27512461,7207652:168012 -(1,828:27512461,7207652:0,414482,115847 -r1,919:28222439,7207652:709978,530329,115847 -k1,828:27512461,7207652:-709978 -) -(1,828:27512461,7207652:709978,414482,115847 -k1,828:27512461,7207652:3277 -h1,828:28219162,7207652:0,411205,112570 -) -k1,828:28390451,7207652:168012 -k1,828:29749908,7207652:168012 -k1,828:32583029,7207652:0 -) -(1,829:6797234,8049140:25785795,513147,134348 -k1,828:8429705,8049140:136284 -k1,828:9712215,8049140:136285 -(1,828:9712215,8049140:0,435480,115847 -r1,919:12884176,8049140:3171961,551327,115847 -k1,828:9712215,8049140:-3171961 -) -(1,828:9712215,8049140:3171961,435480,115847 -g1,828:10418916,8049140 -g1,828:11474052,8049140 -h1,828:12880899,8049140:0,411205,112570 -) -k1,828:13020460,8049140:136284 -k1,828:14148304,8049140:136284 -k1,828:15824685,8049140:136285 -k1,828:17033138,8049140:136284 -k1,828:18382493,8049140:136284 -k1,828:21823759,8049140:136285 -k1,828:23646940,8049140:136284 -k1,828:24979911,8049140:136284 -k1,828:26208681,8049140:136285 -k1,828:27004257,8049140:136284 -k1,828:28159626,8049140:136284 -k1,828:30353741,8049140:136285 -k1,828:31810575,8049140:136284 -(1,828:32017669,8049140:0,414482,115847 -r1,919:32375935,8049140:358266,530329,115847 -k1,828:32017669,8049140:-358266 -) -(1,828:32017669,8049140:358266,414482,115847 -k1,828:32017669,8049140:3277 -h1,828:32372658,8049140:0,411205,112570 -) -k1,828:32583029,8049140:0 -) -(1,829:6797234,8890628:25785795,513147,134348 -k1,828:7905785,8890628:160900 -k1,828:11712454,8890628:160901 -k1,828:12489392,8890628:160900 -k1,828:14312941,8890628:160901 -k1,828:15140997,8890628:160900 -(1,828:15140997,8890628:0,414482,115847 -r1,919:15850975,8890628:709978,530329,115847 -k1,828:15140997,8890628:-709978 -) -(1,828:15140997,8890628:709978,414482,115847 -k1,828:15140997,8890628:3277 -h1,828:15847698,8890628:0,411205,112570 -) -k1,828:16011876,8890628:160901 -k1,828:19003931,8890628:160900 -k1,828:20704928,8890628:160901 -k1,828:21397325,8890628:160900 -k1,828:25613594,8890628:160901 -k1,828:28606960,8890628:160900 -k1,828:32583029,8890628:0 -) -(1,829:6797234,9732116:25785795,513147,134348 -k1,828:7633077,9732116:149681 -k1,828:8398796,9732116:149681 -k1,828:9567562,9732116:149681 -k1,828:11023376,9732116:149681 -k1,828:14359417,9732116:149681 -k1,828:16377529,9732116:149681 -k1,828:17631492,9732116:149681 -k1,828:18528938,9732116:149680 -k1,828:20191845,9732116:149681 -k1,828:20992954,9732116:149681 -k1,828:23024174,9732116:149681 -k1,828:23825283,9732116:149681 -k1,828:24994049,9732116:149681 -k1,828:27364090,9732116:149681 -k1,828:29561771,9732116:149681 -k1,828:30995958,9732116:149681 -(1,828:30995958,9732116:0,435480,115847 -r1,919:32409359,9732116:1413401,551327,115847 -k1,828:30995958,9732116:-1413401 -) -(1,828:30995958,9732116:1413401,435480,115847 -k1,828:30995958,9732116:3277 -h1,828:32406082,9732116:0,411205,112570 -) -k1,829:32583029,9732116:0 -) -(1,829:6797234,10573604:25785795,505283,134348 -(1,828:6797234,10573604:0,435480,115847 -r1,919:8210635,10573604:1413401,551327,115847 -k1,828:6797234,10573604:-1413401 -) -(1,828:6797234,10573604:1413401,435480,115847 -k1,828:6797234,10573604:3277 -h1,828:8207358,10573604:0,411205,112570 -) -g1,828:8409864,10573604 -g1,828:9800538,10573604 -(1,828:9800538,10573604:0,435480,115847 -r1,919:11213939,10573604:1413401,551327,115847 -k1,828:9800538,10573604:-1413401 -) -(1,828:9800538,10573604:1413401,435480,115847 -k1,828:9800538,10573604:3277 -h1,828:11210662,10573604:0,411205,112570 -) -g1,828:11413168,10573604 -g1,828:12603957,10573604 -g1,828:14541201,10573604 -g1,828:17515224,10573604 -g1,828:18733538,10573604 -g1,828:20586240,10573604 -k1,829:32583029,10573604:10142775 -g1,829:32583029,10573604 -) -v1,831:6797234,11764070:0,393216,0 -(1,843:6797234,17386570:25785795,6015716,196608 -g1,843:6797234,17386570 -g1,843:6797234,17386570 -g1,843:6600626,17386570 -(1,843:6600626,17386570:0,6015716,196608 -r1,919:32779637,17386570:26179011,6212324,196608 -k1,843:6600625,17386570:-26179012 -) -(1,843:6600626,17386570:26179011,6015716,196608 -[1,843:6797234,17386570:25785795,5819108,0 -(1,833:6797234,11955959:25785795,388497,9436 -(1,832:6797234,11955959:0,0,0 -g1,832:6797234,11955959 -g1,832:6797234,11955959 -g1,832:6469554,11955959 -(1,832:6469554,11955959:0,0,0 -) -g1,832:6797234,11955959 -) -g1,833:8377963,11955959 -g1,833:9326401,11955959 -g1,833:10907130,11955959 -g1,833:11855568,11955959 -g1,833:13436297,11955959 -g1,833:14384735,11955959 -h1,833:14700881,11955959:0,0,0 -k1,833:32583029,11955959:17882148 -g1,833:32583029,11955959 -) -(1,834:6797234,12622137:25785795,388497,7863 -h1,834:6797234,12622137:0,0,0 -h1,834:8061817,12622137:0,0,0 -k1,834:32583029,12622137:24521212 -g1,834:32583029,12622137 -) -(1,835:6797234,13288315:25785795,388497,7863 -h1,835:6797234,13288315:0,0,0 -h1,835:8061817,13288315:0,0,0 -k1,835:32583029,13288315:24521212 -g1,835:32583029,13288315 -) -(1,836:6797234,13954493:25785795,388497,9436 -h1,836:6797234,13954493:0,0,0 -h1,836:8061817,13954493:0,0,0 -k1,836:32583029,13954493:24521212 -g1,836:32583029,13954493 -) -(1,837:6797234,14620671:25785795,388497,7863 -h1,837:6797234,14620671:0,0,0 -g1,837:7429526,14620671 -g1,837:8377964,14620671 -h1,837:9642547,14620671:0,0,0 -k1,837:32583029,14620671:22940482 -g1,837:32583029,14620671 -) -(1,838:6797234,15286849:25785795,388497,7863 -h1,838:6797234,15286849:0,0,0 -h1,838:8061817,15286849:0,0,0 -k1,838:32583029,15286849:24521212 -g1,838:32583029,15286849 -) -(1,839:6797234,15953027:25785795,388497,9436 -h1,839:6797234,15953027:0,0,0 -g1,839:8377963,15953027 -g1,839:9010255,15953027 -h1,839:9326401,15953027:0,0,0 -k1,839:32583029,15953027:23256628 -g1,839:32583029,15953027 -) -(1,840:6797234,16619205:25785795,388497,7863 -h1,840:6797234,16619205:0,0,0 -h1,840:8061817,16619205:0,0,0 -k1,840:32583029,16619205:24521212 -g1,840:32583029,16619205 -) -(1,841:6797234,17285383:25785795,404226,101187 -h1,841:6797234,17285383:0,0,0 -g1,841:10907128,17285383 -g1,841:12804003,17285383 -g1,841:14700877,17285383 -g1,841:15333169,17285383 -k1,841:15333169,17285383:9437 -h1,841:17555626,17285383:0,0,0 -k1,841:32583029,17285383:15027403 -g1,841:32583029,17285383 -) -] -) -g1,843:32583029,17386570 -g1,843:6797234,17386570 -g1,843:6797234,17386570 -g1,843:32583029,17386570 -g1,843:32583029,17386570 -) -h1,843:6797234,17583178:0,0,0 -] -g1,846:32583029,18107466 -) -h1,846:6630773,18107466:0,0,0 -v1,848:6630773,19473242:0,393216,0 -(1,919:6630773,44083678:25952256,25003652,0 -g1,919:6630773,44083678 -g1,919:6303093,44083678 -r1,919:6401397,44083678:98304,25003652,0 -g1,919:6600626,44083678 -g1,919:6797234,44083678 -[1,919:6797234,44083678:25785795,25003652,0 -(1,850:6797234,19835315:25785795,755289,196608 -(1,848:6797234,19835315:0,755289,196608 -r1,919:8134168,19835315:1336934,951897,196608 -k1,848:6797234,19835315:-1336934 -) -(1,848:6797234,19835315:1336934,755289,196608 -) -k1,848:8363044,19835315:228876 -k1,848:8690724,19835315:327680 -k1,848:8690724,19835315:0 -k1,849:9547434,19835315:228875 -k1,849:10364823,19835315:228876 -k1,849:11359815,19835315:228876 -k1,849:14404772,19835315:228875 -k1,849:16770122,19835315:228876 -k1,849:17650426,19835315:228876 -k1,849:19661880,19835315:228875 -(1,849:19661880,19835315:0,452978,115847 -r1,919:22130417,19835315:2468537,568825,115847 -k1,849:19661880,19835315:-2468537 -) -(1,849:19661880,19835315:2468537,452978,115847 -k1,849:19661880,19835315:3277 -h1,849:22127140,19835315:0,411205,112570 -) -k1,849:22359293,19835315:228876 -k1,849:23663614,19835315:228875 -k1,849:25024952,19835315:228876 -k1,849:27615090,19835315:228876 -k1,849:28863050,19835315:228875 -k1,849:31923737,19835315:228876 -k1,849:32583029,19835315:0 -) -(1,850:6797234,20676803:25785795,513147,134348 -k1,849:8725689,20676803:204858 -k1,849:10121992,20676803:204858 -k1,849:11833522,20676803:204857 -k1,849:12654418,20676803:204858 -k1,849:15137963,20676803:204858 -h1,849:16108551,20676803:0,0,0 -k1,849:16313409,20676803:204858 -k1,849:17327636,20676803:204857 -k1,849:19030647,20676803:204858 -h1,849:19827565,20676803:0,0,0 -k1,849:20413187,20676803:204858 -k1,849:21571594,20676803:204858 -k1,849:22880733,20676803:204857 -k1,849:24901594,20676803:204858 -k1,849:25572413,20676803:204858 -k1,849:26796356,20676803:204858 -k1,849:28783792,20676803:204857 -k1,849:29647942,20676803:204858 -k1,849:30623503,20676803:204858 -k1,849:32583029,20676803:0 -) -(1,850:6797234,21518291:25785795,513147,115847 -k1,849:7606687,21518291:277956 -(1,849:7606687,21518291:0,452978,115847 -r1,919:10075224,21518291:2468537,568825,115847 -k1,849:7606687,21518291:-2468537 -) -(1,849:7606687,21518291:2468537,452978,115847 -k1,849:7606687,21518291:3277 -h1,849:10071947,21518291:0,411205,112570 -) -k1,849:10353179,21518291:277955 -k1,849:12025086,21518291:277956 -k1,849:14998538,21518291:277956 -(1,849:14998538,21518291:0,452978,115847 -r1,919:19225634,21518291:4227096,568825,115847 -k1,849:14998538,21518291:-4227096 -) -(1,849:14998538,21518291:4227096,452978,115847 -k1,849:14998538,21518291:3277 -h1,849:19222357,21518291:0,411205,112570 -) -k1,849:19677259,21518291:277955 -k1,849:21151902,21518291:277956 -k1,849:24208584,21518291:277955 -k1,849:26497185,21518291:277956 -k1,849:27766701,21518291:277956 -k1,849:29900636,21518291:277955 -k1,849:31900144,21518291:277877 -k1,849:32583029,21518291:0 -) -(1,850:6797234,22359779:25785795,505283,134348 -g1,849:9108033,22359779 -g1,849:11181592,22359779 -g1,849:12372381,22359779 -g1,849:14641237,22359779 -g1,849:16851111,22359779 -g1,849:18334846,22359779 -g1,849:19666537,22359779 -g1,849:20613532,22359779 -g1,849:23942105,22359779 -g1,849:24757372,22359779 -g1,849:27235288,22359779 -h1,849:28205876,22359779:0,0,0 -g1,849:28405105,22359779 -g1,849:29413704,22359779 -g1,849:31111086,22359779 -h1,849:31908004,22359779:0,0,0 -k1,850:32583029,22359779:501355 -g1,850:32583029,22359779 -) -v1,852:6797234,23550245:0,393216,0 -(1,866:6797234,27153956:25785795,3996927,196608 -g1,866:6797234,27153956 -g1,866:6797234,27153956 -g1,866:6600626,27153956 -(1,866:6600626,27153956:0,3996927,196608 -r1,919:32779637,27153956:26179011,4193535,196608 -k1,866:6600625,27153956:-26179012 -) -(1,866:6600626,27153956:26179011,3996927,196608 -[1,866:6797234,27153956:25785795,3800319,0 -(1,854:6797234,23757863:25785795,404226,76021 -(1,853:6797234,23757863:0,0,0 -g1,853:6797234,23757863 -g1,853:6797234,23757863 -g1,853:6469554,23757863 -(1,853:6469554,23757863:0,0,0 -) -g1,853:6797234,23757863 -) -k1,854:6797234,23757863:0 -h1,854:9010255,23757863:0,0,0 -k1,854:32583029,23757863:23572774 -g1,854:32583029,23757863 -) -(1,858:6797234,24424041:25785795,404226,76021 -(1,856:6797234,24424041:0,0,0 -g1,856:6797234,24424041 -g1,856:6797234,24424041 -g1,856:6469554,24424041 -(1,856:6469554,24424041:0,0,0 -) -g1,856:6797234,24424041 -) -g1,858:7745671,24424041 -g1,858:9010254,24424041 -h1,858:11855565,24424041:0,0,0 -k1,858:32583029,24424041:20727464 -g1,858:32583029,24424041 -) -(1,860:6797234,25745579:25785795,388497,6290 -(1,859:6797234,25745579:0,0,0 -g1,859:6797234,25745579 -g1,859:6797234,25745579 -g1,859:6469554,25745579 -(1,859:6469554,25745579:0,0,0 -) -g1,859:6797234,25745579 -) -g1,860:8377963,25745579 -g1,860:9326401,25745579 -h1,860:9642547,25745579:0,0,0 -k1,860:32583029,25745579:22940482 -g1,860:32583029,25745579 -) -(1,861:6797234,26411757:25785795,404226,76021 -h1,861:6797234,26411757:0,0,0 -k1,861:6797234,26411757:0 -h1,861:11855565,26411757:0,0,0 -k1,861:32583029,26411757:20727464 -g1,861:32583029,26411757 -) -(1,865:6797234,27077935:25785795,404226,76021 -(1,863:6797234,27077935:0,0,0 -g1,863:6797234,27077935 -g1,863:6797234,27077935 -g1,863:6469554,27077935 -(1,863:6469554,27077935:0,0,0 -) -g1,863:6797234,27077935 -) -g1,865:7745671,27077935 -g1,865:9010254,27077935 -h1,865:10274837,27077935:0,0,0 -k1,865:32583029,27077935:22308192 -g1,865:32583029,27077935 -) -] -) -g1,866:32583029,27153956 -g1,866:6797234,27153956 -g1,866:6797234,27153956 -g1,866:32583029,27153956 -g1,866:32583029,27153956 -) -h1,866:6797234,27350564:0,0,0 -(1,870:6797234,28716340:25785795,513147,134348 -h1,869:6797234,28716340:983040,0,0 -k1,869:10637054,28716340:328401 -k1,869:13781536,28716340:328400 -k1,869:15214219,28716340:328401 -k1,869:16290386,28716340:328401 -k1,869:18656957,28716340:328401 -k1,869:19601395,28716340:328400 -k1,869:22692139,28716340:328401 -k1,869:25704895,28716340:328401 -k1,869:27634995,28716340:328400 -k1,869:31394206,28716340:328401 -k1,870:32583029,28716340:0 -) -(1,870:6797234,29557828:25785795,513147,134348 -k1,869:9155695,29557828:161694 -k1,869:12750819,29557828:161693 -k1,869:15144014,29557828:161694 -k1,869:18068050,29557828:161693 -k1,869:19946132,29557828:161694 -k1,869:20767117,29557828:161693 -k1,869:23918563,29557828:161694 -k1,869:24708091,29557828:161693 -k1,869:26471485,29557828:161694 -k1,869:28330560,29557828:161693 -k1,869:29411069,29557828:161694 -(1,869:29411069,29557828:0,452978,115847 -r1,919:32583029,29557828:3171960,568825,115847 -k1,869:29411069,29557828:-3171960 -) -(1,869:29411069,29557828:3171960,452978,115847 -k1,869:29411069,29557828:3277 -h1,869:32579752,29557828:0,411205,112570 -) -k1,869:32583029,29557828:0 -) -(1,870:6797234,30399316:25785795,505283,126483 -k1,869:8975500,30399316:167621 -k1,869:10247403,30399316:167621 -k1,869:11162790,30399316:167621 -k1,869:12843636,30399316:167620 -k1,869:16631466,30399316:167621 -k1,869:18083593,30399316:167621 -k1,869:18607074,30399316:167621 -k1,869:21260476,30399316:167621 -k1,869:21959594,30399316:167621 -k1,869:25139904,30399316:167620 -k1,869:28242227,30399316:167621 -k1,869:29025886,30399316:167621 -k1,869:30885647,30399316:167621 -k1,869:32583029,30399316:0 -) -(1,870:6797234,31240804:25785795,505283,134348 -k1,869:7414302,31240804:158971 -k1,869:8674279,31240804:158972 -k1,869:12402341,31240804:158971 -k1,869:13212741,31240804:158972 -k1,869:16269059,31240804:158971 -k1,869:18959687,31240804:158972 -k1,869:20403164,31240804:158971 -k1,869:21430487,31240804:158971 -k1,869:22721921,31240804:158972 -k1,869:24498321,31240804:158971 -k1,869:25340178,31240804:158972 -k1,869:27910219,31240804:158971 -k1,869:28878561,31240804:158972 -k1,869:30920381,31240804:158971 -k1,870:32583029,31240804:0 -) -(1,870:6797234,32082292:25785795,505283,134348 -k1,869:8544137,32082292:206807 -k1,869:9366982,32082292:206807 -k1,869:11459260,32082292:206807 -k1,869:13033148,32082292:206807 -k1,869:14108307,32082292:206807 -k1,869:15419396,32082292:206807 -k1,869:16718689,32082292:206808 -k1,869:18480665,32082292:206807 -(1,869:18480665,32082292:0,452978,122846 -r1,919:20949202,32082292:2468537,575824,122846 -k1,869:18480665,32082292:-2468537 -) -(1,869:18480665,32082292:2468537,452978,122846 -k1,869:18480665,32082292:3277 -h1,869:20945925,32082292:0,411205,112570 -) -k1,869:21329679,32082292:206807 -k1,869:22930437,32082292:206807 -k1,869:25367434,32082292:206807 -k1,869:28662297,32082292:206807 -k1,869:31821501,32082292:206807 -k1,869:32583029,32082292:0 -) -(1,870:6797234,32923780:25785795,505283,134348 -g1,869:7352323,32923780 -g1,869:9849244,32923780 -g1,869:12177738,32923780 -g1,869:13515983,32923780 -g1,869:14401374,32923780 -g1,869:15216641,32923780 -(1,869:15216641,32923780:0,435480,115847 -r1,919:16278330,32923780:1061689,551327,115847 -k1,869:15216641,32923780:-1061689 -) -(1,869:15216641,32923780:1061689,435480,115847 -k1,869:15216641,32923780:3277 -h1,869:16275053,32923780:0,411205,112570 -) -k1,870:32583029,32923780:16131029 -g1,870:32583029,32923780 -) -v1,872:6797234,34114246:0,393216,0 -(1,891:6797234,39039495:25785795,5318465,196608 -g1,891:6797234,39039495 -g1,891:6797234,39039495 -g1,891:6600626,39039495 -(1,891:6600626,39039495:0,5318465,196608 -r1,919:32779637,39039495:26179011,5515073,196608 -k1,891:6600625,39039495:-26179012 -) -(1,891:6600626,39039495:26179011,5318465,196608 -[1,891:6797234,39039495:25785795,5121857,0 -(1,874:6797234,34321864:25785795,404226,76021 -(1,873:6797234,34321864:0,0,0 -g1,873:6797234,34321864 -g1,873:6797234,34321864 -g1,873:6469554,34321864 -(1,873:6469554,34321864:0,0,0 -) -g1,873:6797234,34321864 -) -k1,874:6797234,34321864:0 -h1,874:11223274,34321864:0,0,0 -k1,874:32583030,34321864:21359756 -g1,874:32583030,34321864 -) -(1,878:6797234,34988042:25785795,404226,76021 -(1,876:6797234,34988042:0,0,0 -g1,876:6797234,34988042 -g1,876:6797234,34988042 -g1,876:6469554,34988042 -(1,876:6469554,34988042:0,0,0 -) -g1,876:6797234,34988042 -) -g1,878:7745671,34988042 -g1,878:9010254,34988042 -h1,878:10274837,34988042:0,0,0 -k1,878:32583029,34988042:22308192 -g1,878:32583029,34988042 -) -(1,880:6797234,36309580:25785795,404226,107478 -(1,879:6797234,36309580:0,0,0 -g1,879:6797234,36309580 -g1,879:6797234,36309580 -g1,879:6469554,36309580 -(1,879:6469554,36309580:0,0,0 -) -g1,879:6797234,36309580 -) -k1,880:6797234,36309580:0 -h1,880:11223274,36309580:0,0,0 -k1,880:32583030,36309580:21359756 -g1,880:32583030,36309580 -) -(1,884:6797234,36975758:25785795,404226,76021 -(1,882:6797234,36975758:0,0,0 -g1,882:6797234,36975758 -g1,882:6797234,36975758 -g1,882:6469554,36975758 -(1,882:6469554,36975758:0,0,0 -) -g1,882:6797234,36975758 -) -g1,884:7745671,36975758 -g1,884:9010254,36975758 -h1,884:10274837,36975758:0,0,0 -k1,884:32583029,36975758:22308192 -g1,884:32583029,36975758 -) -(1,886:6797234,38297296:25785795,404226,76021 -(1,885:6797234,38297296:0,0,0 -g1,885:6797234,38297296 -g1,885:6797234,38297296 -g1,885:6469554,38297296 -(1,885:6469554,38297296:0,0,0 -) -g1,885:6797234,38297296 -) -k1,886:6797234,38297296:0 -h1,886:10907128,38297296:0,0,0 -k1,886:32583028,38297296:21675900 -g1,886:32583028,38297296 -) -(1,890:6797234,38963474:25785795,404226,76021 -(1,888:6797234,38963474:0,0,0 -g1,888:6797234,38963474 -g1,888:6797234,38963474 -g1,888:6469554,38963474 -(1,888:6469554,38963474:0,0,0 -) -g1,888:6797234,38963474 -) -g1,890:7745671,38963474 -g1,890:9010254,38963474 -h1,890:10590982,38963474:0,0,0 -k1,890:32583030,38963474:21992048 -g1,890:32583030,38963474 -) -] -) -g1,891:32583029,39039495 -g1,891:6797234,39039495 -g1,891:6797234,39039495 -g1,891:32583029,39039495 -g1,891:32583029,39039495 -) -h1,891:6797234,39236103:0,0,0 -(1,895:6797234,40601879:25785795,505283,126483 -h1,894:6797234,40601879:983040,0,0 -k1,894:9323974,40601879:190382 -k1,894:12330438,40601879:190382 -k1,894:13512380,40601879:190382 -k1,894:14058622,40601879:190382 -k1,894:18572414,40601879:190382 -k1,894:22525218,40601879:190382 -k1,894:23907046,40601879:190383 -k1,894:24912696,40601879:190382 -k1,894:26169349,40601879:190382 -k1,894:27834946,40601879:190382 -k1,894:28796031,40601879:190382 -k1,894:30645129,40601879:190382 -k1,895:32583029,40601879:0 -) -(1,895:6797234,41443367:25785795,513147,126483 -k1,894:8671147,41443367:293840 -k1,894:9581024,41443367:293839 -k1,894:13455096,41443367:293840 -k1,894:16087915,41443367:293839 -k1,894:17041047,41443367:293840 -k1,894:18688204,41443367:293839 -k1,894:21971796,41443367:293840 -k1,894:25672196,41443367:293839 -k1,894:27583465,41443367:293840 -k1,894:29068749,41443367:293839 -k1,894:31773659,41443367:293840 -k1,894:32583029,41443367:0 -) -(1,895:6797234,42284855:25785795,513147,134348 -k1,894:9807215,42284855:193899 -k1,894:11285620,42284855:193899 -k1,894:12471079,42284855:193899 -k1,894:15735996,42284855:193900 -k1,894:16581323,42284855:193899 -k1,894:17131082,42284855:193899 -k1,894:19184893,42284855:193899 -k1,894:20450961,42284855:193899 -k1,894:22295712,42284855:193899 -k1,894:24270224,42284855:193899 -k1,894:25123415,42284855:193899 -k1,894:27327960,42284855:193900 -k1,894:28713304,42284855:193899 -k1,894:30382418,42284855:193899 -k1,894:30932177,42284855:193899 -k1,894:32583029,42284855:0 -) -(1,895:6797234,43126343:25785795,513147,134348 -k1,894:10428081,43126343:209212 -k1,894:12195084,43126343:209212 -k1,894:13395856,43126343:209212 -k1,894:15646513,43126343:209211 -k1,894:17587842,43126343:209212 -k1,894:18687033,43126343:209212 -k1,894:23170503,43126343:209212 -k1,894:26576561,43126343:209212 -k1,894:27401811,43126343:209212 -k1,894:28025855,43126343:209201 -k1,894:29615255,43126343:209212 -k1,894:30593204,43126343:209212 -k1,894:31563944,43126343:209212 -k1,894:32583029,43126343:0 -) -(1,895:6797234,43967831:25785795,513147,115847 -g1,894:8734478,43967831 -g1,894:9600863,43967831 -(1,894:9600863,43967831:0,452978,115847 -r1,919:11717688,43967831:2116825,568825,115847 -k1,894:9600863,43967831:-2116825 -) -(1,894:9600863,43967831:2116825,452978,115847 -k1,894:9600863,43967831:3277 -h1,894:11714411,43967831:0,411205,112570 -) -g1,894:11916917,43967831 -g1,894:13307591,43967831 -g1,894:14611102,43967831 -g1,894:15558097,43967831 -g1,894:18107447,43967831 -g1,894:19700627,43967831 -g1,894:20918941,43967831 -g1,894:24824886,43967831 -(1,894:24824886,43967831:0,452978,115847 -r1,919:27645135,43967831:2820249,568825,115847 -k1,894:24824886,43967831:-2820249 -) -(1,894:24824886,43967831:2820249,452978,115847 -k1,894:24824886,43967831:3277 -h1,894:27641858,43967831:0,411205,112570 -) -k1,895:32583029,43967831:4764224 -g1,895:32583029,43967831 -) -] -g1,919:32583029,44083678 -) -] -(1,919:32583029,45706769:0,0,0 -g1,919:32583029,45706769 -) -) -] -(1,919:6630773,47279633:25952256,0,0 -h1,919:6630773,47279633:25952256,0,0 -) -] -(1,919:4262630,4025873:0,0,0 -[1,919:-473656,4025873:0,0,0 -(1,919:-473656,-710413:0,0,0 -(1,919:-473656,-710413:0,0,0 -g1,919:-473656,-710413 -) -g1,919:-473656,-710413 -) -] -) -] -!24726 -}42 -Input:281:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:282:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:283:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:284:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:285:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:286:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:287:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:288:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:289:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:290:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:291:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:292:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1127 -{43 -[1,1013:4262630,47279633:28320399,43253760,0 -(1,1013:4262630,4025873:0,0,0 -[1,1013:-473656,4025873:0,0,0 -(1,1013:-473656,-710413:0,0,0 -(1,1013:-473656,-644877:0,0,0 -k1,1013:-473656,-644877:-65536 -) -(1,1013:-473656,4736287:0,0,0 -k1,1013:-473656,4736287:5209943 +(1,1186:-473656,4736287:0,0,0 +k1,1186:-473656,4736287:5209943 ) -g1,1013:-473656,-710413 +g1,1186:-473656,-710413 ) ] ) -[1,1013:6630773,47279633:25952256,43253760,0 -[1,1013:6630773,4812305:25952256,786432,0 -(1,1013:6630773,4812305:25952256,505283,11795 -(1,1013:6630773,4812305:25952256,505283,11795 -g1,1013:3078558,4812305 -[1,1013:3078558,4812305:0,0,0 -(1,1013:3078558,2439708:0,1703936,0 -k1,1013:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,1013:2537886,2439708:1179648,16384,0 +[1,1186:6630773,47279633:25952256,43253760,0 +[1,1186:6630773,4812305:25952256,786432,0 +(1,1186:6630773,4812305:25952256,505283,11795 +(1,1186:6630773,4812305:25952256,505283,11795 +g1,1186:3078558,4812305 +[1,1186:3078558,4812305:0,0,0 +(1,1186:3078558,2439708:0,1703936,0 +k1,1186:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,1186:2537886,2439708:1179648,16384,0 ) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,1013:3078558,1915420:16384,1179648,0 +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,1186:3078558,1915420:16384,1179648,0 ) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) ] ) ) ) ] -[1,1013:3078558,4812305:0,0,0 -(1,1013:3078558,2439708:0,1703936,0 -g1,1013:29030814,2439708 -g1,1013:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,1013:36151628,1915420:16384,1179648,0 +[1,1186:3078558,4812305:0,0,0 +(1,1186:3078558,2439708:0,1703936,0 +g1,1186:29030814,2439708 +g1,1186:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,1186:36151628,1915420:16384,1179648,0 ) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) ] ) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,1013:37855564,2439708:1179648,16384,0 +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,1186:37855564,2439708:1179648,16384,0 ) ) -k1,1013:3078556,2439708:-34777008 +k1,1186:3078556,2439708:-34777008 ) ] -[1,1013:3078558,4812305:0,0,0 -(1,1013:3078558,49800853:0,16384,2228224 -k1,1013:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,1013:2537886,49800853:1179648,16384,0 +[1,1186:3078558,4812305:0,0,0 +(1,1186:3078558,49800853:0,16384,2228224 +k1,1186:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,1186:2537886,49800853:1179648,16384,0 ) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,1013:3078558,51504789:16384,1179648,0 +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,1186:3078558,51504789:16384,1179648,0 ) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) ] ) ) ) ] -[1,1013:3078558,4812305:0,0,0 -(1,1013:3078558,49800853:0,16384,2228224 -g1,1013:29030814,49800853 -g1,1013:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,1013:36151628,51504789:16384,1179648,0 +[1,1186:3078558,4812305:0,0,0 +(1,1186:3078558,49800853:0,16384,2228224 +g1,1186:29030814,49800853 +g1,1186:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,1186:36151628,51504789:16384,1179648,0 ) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 ) ] ) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,1013:37855564,49800853:1179648,16384,0 +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,1186:37855564,49800853:1179648,16384,0 ) ) -k1,1013:3078556,49800853:-34777008 +k1,1186:3078556,49800853:-34777008 ) ] -g1,1013:6630773,4812305 -k1,1013:22348274,4812305:14920583 -g1,1013:23970945,4812305 -g1,1013:24793421,4812305 -g1,1013:27528893,4812305 -g1,1013:28938572,4812305 +g1,1186:6630773,4812305 +g1,1186:6630773,4812305 +g1,1186:9516978,4812305 +g1,1186:11710468,4812305 +g1,1186:13120147,4812305 +g1,1186:16560787,4812305 +k1,1186:31786111,4812305:15225324 ) ) ] -[1,1013:6630773,45706769:25952256,40108032,0 -(1,1013:6630773,45706769:25952256,40108032,0 -(1,1013:6630773,45706769:0,0,0 -g1,1013:6630773,45706769 +[1,1186:6630773,45706769:25952256,40108032,0 +(1,1186:6630773,45706769:25952256,40108032,0 +(1,1186:6630773,45706769:0,0,0 +g1,1186:6630773,45706769 ) -[1,1013:6630773,45706769:25952256,40108032,0 -v1,919:6630773,6254097:0,393216,0 -(1,919:6630773,11900242:25952256,6039361,0 -g1,919:6630773,11900242 -g1,919:6303093,11900242 -r1,1013:6401397,11900242:98304,6039361,0 -g1,919:6600626,11900242 -g1,919:6797234,11900242 -[1,919:6797234,11900242:25785795,6039361,0 -v1,897:6797234,6254097:0,393216,0 -(1,916:6797234,11179346:25785795,5318465,196608 -g1,916:6797234,11179346 -g1,916:6797234,11179346 -g1,916:6600626,11179346 -(1,916:6600626,11179346:0,5318465,196608 -r1,1013:32779637,11179346:26179011,5515073,196608 -k1,916:6600625,11179346:-26179012 +[1,1186:6630773,45706769:25952256,40108032,0 +(1,1024:6630773,8314719:25952256,2715982,0 +g1,1003:6790157,8314719 +(1,1021:6790157,8314719:14280601,2715982,0 +g1,1021:11764898,8314719 +(1,1021:11764898,6956728:0,0,0 +(1,1015:11764898,6956728:0,0,0 +g1,1013:11764898,6956728 +g1,1014:11764898,6956728 +g1,1014:11764898,6956728 +g1,1014:11764898,6956728 +g1,1014:11764898,6956728 +g1,1015:11764898,6956728 ) -(1,916:6600626,11179346:26179011,5318465,196608 -[1,916:6797234,11179346:25785795,5121857,0 -(1,899:6797234,6461715:25785795,404226,76021 -(1,898:6797234,6461715:0,0,0 -g1,898:6797234,6461715 -g1,898:6797234,6461715 -g1,898:6469554,6461715 -(1,898:6469554,6461715:0,0,0 +(1,1021:11764898,6956728:0,0,0 +g1,1006:11764898,6956728 +(1,1010:11764898,6956728:0,0,0 +(1,1010:11764898,6956728:0,0,0 +g1,1010:11764898,6956728 +g1,1010:11764898,6956728 +g1,1010:11764898,6956728 +g1,1010:11764898,6956728 +g1,1010:11764898,6956728 +(1,1010:11764898,6956728:0,0,0 +(1,1010:11764898,6956728:3942036,1890281,476214 +[1,1010:11764898,6956728:3942036,1890281,476214 +(1,1010:11764898,5726864:3942036,660417,276639 +g1,1009:11764898,5726864 +(1,1009:11764898,5726864:665744,660417,276639 +k1,1009:11964473,5726864:199575 +g1,1009:12430642,5726864 +(1,1009:12430642,5726864:0,660417,271921 +(1,1009:12430642,5726864:0,0,0 +(1,1009:12430642,5726864:0,0,0 +g1,1009:12430642,5726864 +g1,1009:12430642,5726864 +g1,1009:12430642,5726864 +g1,1009:12430642,5726864 +g1,1009:12430642,5726864 +(1,1009:12430642,5726864:0,0,0 +(1,1009:12430642,5726864:331874,388497,0 +(1,1009:12430642,5726864:331874,388497,0 +) +g1,1009:12762516,5726864 ) -g1,898:6797234,6461715 ) -k1,899:6797234,6461715:0 -h1,899:10907129,6461715:0,0,0 -k1,899:32583029,6461715:21675900 -g1,899:32583029,6461715 -) -(1,903:6797234,7127893:25785795,404226,76021 -(1,901:6797234,7127893:0,0,0 -g1,901:6797234,7127893 -g1,901:6797234,7127893 -g1,901:6469554,7127893 -(1,901:6469554,7127893:0,0,0 -) -g1,901:6797234,7127893 -) -g1,903:7745671,7127893 -g1,903:9010254,7127893 -h1,903:10274837,7127893:0,0,0 -k1,903:32583029,7127893:22308192 -g1,903:32583029,7127893 -) -(1,905:6797234,8449431:25785795,404226,107478 -(1,904:6797234,8449431:0,0,0 -g1,904:6797234,8449431 -g1,904:6797234,8449431 -g1,904:6469554,8449431 -(1,904:6469554,8449431:0,0,0 -) -g1,904:6797234,8449431 -) -k1,905:6797234,8449431:0 -h1,905:10907129,8449431:0,0,0 -k1,905:32583029,8449431:21675900 -g1,905:32583029,8449431 -) -(1,909:6797234,9115609:25785795,404226,76021 -(1,907:6797234,9115609:0,0,0 -g1,907:6797234,9115609 -g1,907:6797234,9115609 -g1,907:6469554,9115609 -(1,907:6469554,9115609:0,0,0 -) -g1,907:6797234,9115609 -) -g1,909:7745671,9115609 -g1,909:9010254,9115609 -h1,909:10590982,9115609:0,0,0 -k1,909:32583030,9115609:21992048 -g1,909:32583030,9115609 -) -(1,911:6797234,10437147:25785795,404226,76021 -(1,910:6797234,10437147:0,0,0 -g1,910:6797234,10437147 -g1,910:6797234,10437147 -g1,910:6469554,10437147 -(1,910:6469554,10437147:0,0,0 -) -g1,910:6797234,10437147 -) -k1,911:6797234,10437147:0 -h1,911:10590983,10437147:0,0,0 -k1,911:32583029,10437147:21992046 -g1,911:32583029,10437147 -) -(1,915:6797234,11103325:25785795,404226,76021 -(1,913:6797234,11103325:0,0,0 -g1,913:6797234,11103325 -g1,913:6797234,11103325 -g1,913:6469554,11103325 -(1,913:6469554,11103325:0,0,0 -) -g1,913:6797234,11103325 -) -g1,915:7745671,11103325 -g1,915:9010254,11103325 -h1,915:10274837,11103325:0,0,0 -k1,915:32583029,11103325:22308192 -g1,915:32583029,11103325 -) -] -) -g1,916:32583029,11179346 -g1,916:6797234,11179346 -g1,916:6797234,11179346 -g1,916:32583029,11179346 -g1,916:32583029,11179346 -) -h1,916:6797234,11375954:0,0,0 -] -g1,919:32583029,11900242 -) -h1,919:6630773,11900242:0,0,0 -(1,923:6630773,13092132:25952256,513147,134348 -h1,922:6630773,13092132:983040,0,0 -k1,922:8814492,13092132:281864 -k1,922:11404534,13092132:281864 -k1,922:12677958,13092132:281864 -k1,922:18409141,13092132:281864 -k1,922:19350297,13092132:281864 -k1,922:21984905,13092132:281865 -k1,922:24280035,13092132:281864 -k1,922:25753344,13092132:281864 -k1,922:27548434,13092132:281864 -k1,922:28481726,13092132:281864 -k1,922:30381019,13092132:281864 -k1,922:32583029,13092132:0 -) -(1,923:6630773,13933620:25952256,513147,134348 -k1,922:9002739,13933620:187651 -k1,922:10432954,13933620:187652 -k1,922:13610357,13933620:187651 -k1,922:15355799,13933620:187651 -k1,922:16535011,13933620:187652 -k1,922:19485005,13933620:187651 -k1,922:20324084,13933620:187651 -k1,922:21530821,13933620:187652 -k1,922:24200320,13933620:187651 -k1,922:27731618,13933620:187651 -k1,922:29432496,13933620:187652 -k1,922:30236185,13933620:187651 -k1,922:32583029,13933620:0 -) -(1,923:6630773,14775108:25952256,513147,134348 -k1,922:8509636,14775108:180825 -k1,922:12002650,14775108:180824 -k1,922:15603144,14775108:180825 -k1,922:17916510,14775108:180824 -k1,922:19982806,14775108:180825 -k1,922:21155190,14775108:180824 -k1,922:25006686,14775108:180825 -k1,922:26581462,14775108:180825 -k1,922:27532989,14775108:180824 -k1,922:29561929,14775108:180825 -k1,922:30428915,14775108:180824 -k1,922:31380443,14775108:180825 -k1,923:32583029,14775108:0 -) -(1,923:6630773,15616596:25952256,658636,126483 -k1,922:8662738,15616596:205477 -k1,922:10361780,15616596:205476 -k1,922:11253419,15616596:205477 -$1,922:11253419,15616596 -[1,922:11253419,15616596:382730,658636,0 -(1,922:11253419,15490112:0,532152,0 -(1,922:11253419,15490112:382730,532152,0 -k1,922:11320265,15490112:-129762 -) -) -(1,922:11253419,15616596:382730,473825,0 -) -] -$1,922:11636149,15616596 -k1,922:12015296,15616596:205477 -k1,922:12848607,15616596:205476 -k1,922:13468921,15616596:205471 -k1,922:16294527,15616596:205477 -k1,922:18510648,15616596:205476 -k1,922:19907570,15616596:205477 -k1,922:21815017,15616596:205477 -k1,922:24182526,15616596:205476 -k1,922:26398648,15616596:205477 -k1,922:27595685,15616596:205477 -k1,922:29930426,15616596:205476 -(1,922:29930426,15616596:0,414482,115847 -r1,1013:32047251,15616596:2116825,530329,115847 -k1,922:29930426,15616596:-2116825 -) -(1,922:29930426,15616596:2116825,414482,115847 -k1,922:29930426,15616596:3277 -h1,922:32043974,15616596:0,411205,112570 -) -k1,922:32252728,15616596:205477 -k1,922:32583029,15616596:0 -) -(1,923:6630773,16458084:25952256,513147,134348 -k1,922:8081589,16458084:166310 -k1,922:9352181,16458084:166310 -k1,922:11890239,16458084:166310 -k1,922:13650386,16458084:166311 -k1,922:14973406,16458084:166310 -k1,922:15822601,16458084:166310 -k1,922:17639108,16458084:166310 -k1,922:20848255,16458084:166310 -k1,922:22211252,16458084:166310 -k1,922:24993760,16458084:166311 -k1,922:27028501,16458084:166310 -k1,922:30809777,16458084:166310 -k1,922:31331947,16458084:166310 -k1,923:32583029,16458084:0 -) -(1,923:6630773,17299572:25952256,505283,134348 -k1,922:7728739,17299572:158180 -k1,922:11248916,17299572:158180 -k1,922:12426181,17299572:158180 -k1,922:15627198,17299572:158180 -k1,922:17071194,17299572:158180 -k1,922:19097149,17299572:158179 -k1,922:22382707,17299572:158180 -k1,922:24415217,17299572:158180 -k1,922:27442563,17299572:158180 -k1,922:28705025,17299572:158180 -k1,922:29610971,17299572:158180 -k1,922:32583029,17299572:0 -) -(1,923:6630773,18141060:25952256,505283,134348 -k1,922:8515171,18141060:149005 -k1,922:10894366,18141060:149005 -k1,922:13859453,18141060:149005 -k1,922:14694620,18141060:149005 -k1,922:18018844,18141060:149005 -k1,922:20590714,18141060:149004 -k1,922:21931164,18141060:149005 -k1,922:26093594,18141060:149005 -k1,922:26928761,18141060:149005 -k1,922:30167789,18141060:149005 -k1,922:30932832,18141060:149005 -k1,922:32583029,18141060:0 -) -(1,923:6630773,18982548:25952256,505283,134348 -g1,922:8617169,18982548 -g1,922:9432436,18982548 -g1,922:11910352,18982548 -h1,922:13279399,18982548:0,0,0 -g1,922:13478628,18982548 -g1,922:14487227,18982548 -g1,922:16184609,18982548 -h1,922:16981527,18982548:0,0,0 -k1,923:32583029,18982548:15427832 -g1,923:32583029,18982548 -) -(1,949:6630773,23861452:25952256,3893677,0 -k1,949:7935764,23861452:1304991 -(1,924:7935764,23861452:0,0,0 -g1,924:7935764,23861452 -g1,924:7935764,23861452 -g1,924:7608084,23861452 -(1,924:7608084,23861452:0,0,0 -) -g1,924:7935764,23861452 -) -(1,947:7935764,23861452:23342274,3893677,0 -g1,947:17363270,23861452 -(1,947:17363270,22495072:0,0,0 -(1,938:17363270,22495072:0,0,0 -g1,936:17363270,22495072 -g1,937:17363270,22495072 -g1,937:17363270,22495072 -g1,937:17363270,22495072 -g1,937:17363270,22495072 -g1,938:17363270,22495072 -) -(1,947:17363270,22495072:0,0,0 -g1,929:17363270,22495072 -(1,933:17363270,22495072:0,0,0 -(1,933:17363270,22495072:0,0,0 -g1,933:17363270,22495072 -g1,933:17363270,22495072 -g1,933:17363270,22495072 -g1,933:17363270,22495072 -g1,933:17363270,22495072 -(1,933:17363270,22495072:0,0,0 -(1,933:17363270,22495072:13078954,1717529,665744 -[1,933:17363270,22495072:13078954,1717529,665744 -(1,933:17363270,21451067:13078954,673524,285028 -g1,932:17363270,21451067 -(1,932:17363270,21451067:665744,673524,285028 -k1,932:17549738,21451067:186468 -g1,932:18029014,21451067 -(1,932:18029014,21451067:0,673524,285028 -(1,932:18029014,21451067:0,0,0 -(1,932:18029014,21451067:0,0,0 -g1,932:18029014,21451067 -g1,932:18029014,21451067 -g1,932:18029014,21451067 -g1,932:18029014,21451067 -g1,932:18029014,21451067 -(1,932:18029014,21451067:0,0,0 -(1,932:18029014,21451067:331874,388497,0 -(1,932:18029014,21451067:331874,388497,0 -) -g1,932:18360888,21451067 -) -) -g1,932:18029014,21451067 -g1,932:18029014,21451067 -) -) -g1,932:18029014,21451067 -) -) -g1,932:18029014,21451067 -(1,932:18029014,21451067:665744,673524,285028 -g1,932:18508290,21451067 -k1,932:18694758,21451067:186468 -) -g1,932:18694758,21451067 -(1,932:18694758,21451067:639530,673524,285028 -k1,932:18894333,21451067:199575 -g1,932:19334288,21451067 -(1,932:19334288,21451067:0,660417,271921 -(1,932:19334288,21451067:0,0,0 -(1,932:19334288,21451067:0,0,0 -g1,932:19334288,21451067 -g1,932:19334288,21451067 -g1,932:19334288,21451067 -g1,932:19334288,21451067 -g1,932:19334288,21451067 -(1,932:19334288,21451067:0,0,0 -(1,932:19334288,21451067:331874,388497,0 -(1,932:19334288,21451067:331874,388497,0 -) -g1,932:19666162,21451067 -) -) -g1,932:19334288,21451067 -g1,932:19334288,21451067 -) -) -g1,932:19334288,21451067 -) -) -g1,932:19334288,21451067 -(1,932:19334288,21451067:665744,673524,285028 -g1,932:19800457,21451067 -k1,932:20000032,21451067:199575 -) -g1,932:20000032,21451067 -(1,932:20000032,21451067:639530,673524,285028 -k1,932:20199607,21451067:199575 -g1,932:20639562,21451067 -(1,932:20639562,21451067:0,655699,276639 -(1,932:20639562,21451067:0,0,0 -(1,932:20639562,21451067:0,0,0 -g1,932:20639562,21451067 -g1,932:20639562,21451067 -g1,932:20639562,21451067 -g1,932:20639562,21451067 -g1,932:20639562,21451067 -(1,932:20639562,21451067:0,0,0 -(1,932:20639562,21451067:331874,388497,9436 -(1,932:20639562,21451067:331874,388497,9436 -) -g1,932:20971436,21451067 -) -) -g1,932:20639562,21451067 -g1,932:20639562,21451067 -) -) -g1,932:20639562,21451067 -) -) -g1,932:20639562,21451067 -(1,932:20639562,21451067:665744,673524,285028 -g1,932:21105731,21451067 -k1,932:21305306,21451067:199575 -) -g1,932:21305306,21451067 -(1,932:21305306,21451067:639530,673524,285028 -k1,932:21504881,21451067:199575 -g1,932:21944836,21451067 -(1,932:21944836,21451067:0,655699,276639 -(1,932:21944836,21451067:0,0,0 -(1,932:21944836,21451067:0,0,0 -g1,932:21944836,21451067 -g1,932:21944836,21451067 -g1,932:21944836,21451067 -g1,932:21944836,21451067 -g1,932:21944836,21451067 -(1,932:21944836,21451067:0,0,0 -(1,932:21944836,21451067:331874,379060,0 -(1,932:21944836,21451067:331874,379060,0 +g1,1009:12430642,5726864 +g1,1009:12430642,5726864 ) -g1,932:22276710,21451067 ) +g1,1009:12430642,5726864 ) -g1,932:21944836,21451067 -g1,932:21944836,21451067 ) +g1,1009:12430642,5726864 +(1,1009:12430642,5726864:665744,660417,276639 +g1,1009:12896811,5726864 +k1,1009:13096386,5726864:199575 ) -g1,932:21944836,21451067 +g1,1009:13096386,5726864 +(1,1009:13096386,5726864:639530,660417,276639 +k1,1009:13295961,5726864:199575 +g1,1009:13735916,5726864 +(1,1009:13735916,5726864:0,660417,271921 +(1,1009:13735916,5726864:0,0,0 +(1,1009:13735916,5726864:0,0,0 +g1,1009:13735916,5726864 +g1,1009:13735916,5726864 +g1,1009:13735916,5726864 +g1,1009:13735916,5726864 +g1,1009:13735916,5726864 +(1,1009:13735916,5726864:0,0,0 +(1,1009:13735916,5726864:331874,388497,0 +(1,1009:13735916,5726864:331874,388497,0 +) +g1,1009:14067790,5726864 +) +) +g1,1009:13735916,5726864 +g1,1009:13735916,5726864 +) +) +g1,1009:13735916,5726864 +) +) +g1,1009:13735916,5726864 +(1,1009:13735916,5726864:665744,660417,276639 +g1,1009:14202085,5726864 +k1,1009:14401660,5726864:199575 +) +g1,1009:14401660,5726864 +(1,1009:14401660,5726864:639530,660417,276639 +k1,1009:14601235,5726864:199575 +g1,1009:15041190,5726864 +(1,1009:15041190,5726864:0,655699,276639 +(1,1009:15041190,5726864:0,0,0 +(1,1009:15041190,5726864:0,0,0 +g1,1009:15041190,5726864 +g1,1009:15041190,5726864 +g1,1009:15041190,5726864 +g1,1009:15041190,5726864 +g1,1009:15041190,5726864 +(1,1009:15041190,5726864:0,0,0 +(1,1009:15041190,5726864:331874,388497,9436 +(1,1009:15041190,5726864:331874,388497,9436 +) +g1,1009:15373064,5726864 +) +) +g1,1009:15041190,5726864 +g1,1009:15041190,5726864 +) +) +g1,1009:15041190,5726864 +) +) +g1,1009:15041190,5726864 +(1,1010:15041190,5726864:665744,660417,276639 +g1,1010:15507359,5726864 +k1,1010:15706934,5726864:199575 ) +g1,1010:15706934,5726864 ) -g1,932:21944836,21451067 -(1,932:21944836,21451067:665744,673524,285028 -g1,932:22411005,21451067 -k1,932:22610580,21451067:199575 +(1,1010:11764898,6956728:3942036,859992,476214 +g1,1010:11764898,6956728 +(1,1010:11764898,6956728:665744,859992,476214 +g1,1010:11764898,6956728 +g1,1010:12430642,6956728 +(1,1010:12430642,6956728:0,855274,476214 +(1,1010:12430642,6956728:0,0,0 +(1,1010:12430642,6956728:0,0,0 +g1,1010:12430642,6956728 +g1,1010:12430642,6956728 +g1,1010:12430642,6956728 +g1,1010:12430642,6956728 +g1,1010:12430642,6956728 +(1,1010:12430642,6956728:0,0,0 +(1,1010:12430642,6956728:331874,388497,9436 +(1,1010:12430642,6956728:331874,388497,9436 ) -g1,932:22610580,21451067 -(1,932:22610580,21451067:639530,673524,285028 -k1,932:22810155,21451067:199575 -g1,932:23250110,21451067 -(1,932:23250110,21451067:0,650981,281357 -(1,932:23250110,21451067:0,0,0 -(1,932:23250110,21451067:0,0,0 -g1,932:23250110,21451067 -g1,932:23250110,21451067 -g1,932:23250110,21451067 -g1,932:23250110,21451067 -g1,932:23250110,21451067 -(1,932:23250110,21451067:0,0,0 -(1,932:23250110,21451067:331874,379060,9436 -(1,932:23250110,21451067:331874,379060,9436 +g1,1010:12762516,6956728 ) -g1,932:23581984,21451067 ) +g1,1010:12430642,6956728 +g1,1010:12430642,6956728 ) -g1,932:23250110,21451067 -g1,932:23250110,21451067 ) +g1,1010:12430642,6956728 ) -g1,932:23250110,21451067 ) +g1,1010:12430642,6956728 +(1,1010:12430642,6956728:665744,859992,476214 +g1,1010:13096386,6956728 +g1,1010:13096386,6956728 ) -g1,932:23250110,21451067 -(1,932:23250110,21451067:665744,673524,285028 -g1,932:23716279,21451067 -k1,932:23915854,21451067:199575 +g1,1010:13096386,6956728 +(1,1010:13096386,6956728:639530,859992,476214 +g1,1010:13096386,6956728 +g1,1010:13735916,6956728 +(1,1010:13735916,6956728:0,859992,471496 +(1,1010:13735916,6956728:0,0,0 +(1,1010:13735916,6956728:0,0,0 +g1,1010:13735916,6956728 +g1,1010:13735916,6956728 +g1,1010:13735916,6956728 +g1,1010:13735916,6956728 +g1,1010:13735916,6956728 +(1,1010:13735916,6956728:0,0,0 +(1,1010:13735916,6956728:331874,388497,0 +(1,1010:13735916,6956728:331874,388497,0 ) -g1,932:23915854,21451067 -(1,932:23915854,21451067:639530,673524,285028 -k1,932:24115429,21451067:199575 -g1,932:24555384,21451067 -(1,932:24555384,21451067:0,655699,276639 -(1,932:24555384,21451067:0,0,0 -(1,932:24555384,21451067:0,0,0 -g1,932:24555384,21451067 -g1,932:24555384,21451067 -g1,932:24555384,21451067 -g1,932:24555384,21451067 -g1,932:24555384,21451067 -(1,932:24555384,21451067:0,0,0 -(1,932:24555384,21451067:331874,388497,9436 -(1,932:24555384,21451067:331874,388497,9436 +g1,1010:14067790,6956728 ) -g1,932:24887258,21451067 ) +g1,1010:13735916,6956728 +g1,1010:13735916,6956728 ) -g1,932:24555384,21451067 -g1,932:24555384,21451067 ) +g1,1010:13735916,6956728 ) -g1,932:24555384,21451067 ) +g1,1010:13735916,6956728 +(1,1010:13735916,6956728:665744,859992,476214 +g1,1010:14401660,6956728 +g1,1010:14401660,6956728 ) -g1,932:24555384,21451067 -(1,932:24555384,21451067:665744,673524,285028 -g1,932:25021553,21451067 -k1,932:25221128,21451067:199575 +g1,1010:14401660,6956728 +(1,1010:14401660,6956728:639530,859992,476214 +g1,1010:14401660,6956728 +g1,1010:15041190,6956728 +(1,1010:15041190,6956728:0,859992,471496 +(1,1010:15041190,6956728:0,0,0 +(1,1010:15041190,6956728:0,0,0 +g1,1010:15041190,6956728 +g1,1010:15041190,6956728 +g1,1010:15041190,6956728 +g1,1010:15041190,6956728 +g1,1010:15041190,6956728 +(1,1010:15041190,6956728:0,0,0 +(1,1010:15041190,6956728:331874,388497,0 +(1,1010:15041190,6956728:331874,388497,0 ) -g1,932:25221128,21451067 -(1,932:25221128,21451067:639530,673524,285028 -k1,932:25420703,21451067:199575 -g1,932:25860658,21451067 -(1,932:25860658,21451067:0,655699,276639 -(1,932:25860658,21451067:0,0,0 -(1,932:25860658,21451067:0,0,0 -g1,932:25860658,21451067 -g1,932:25860658,21451067 -g1,932:25860658,21451067 -g1,932:25860658,21451067 -g1,932:25860658,21451067 -(1,932:25860658,21451067:0,0,0 -(1,932:25860658,21451067:331874,379060,0 -(1,932:25860658,21451067:331874,379060,0 +g1,1010:15373064,6956728 ) -g1,932:26192532,21451067 ) +g1,1010:15041190,6956728 +g1,1010:15041190,6956728 ) -g1,932:25860658,21451067 -g1,932:25860658,21451067 ) +g1,1010:15041190,6956728 ) -g1,932:25860658,21451067 ) +g1,1010:15041190,6956728 +(1,1010:15041190,6956728:665744,859992,476214 +g1,1010:15706934,6956728 +g1,1010:15706934,6956728 ) -g1,932:25860658,21451067 -(1,932:25860658,21451067:665744,673524,285028 -g1,932:26326827,21451067 -k1,932:26526402,21451067:199575 +g1,1010:15706934,6956728 ) -g1,932:26526402,21451067 -(1,932:26526402,21451067:639530,673524,285028 -k1,932:26725977,21451067:199575 -g1,932:27165932,21451067 -(1,932:27165932,21451067:0,655699,276639 -(1,932:27165932,21451067:0,0,0 -(1,932:27165932,21451067:0,0,0 -g1,932:27165932,21451067 -g1,932:27165932,21451067 -g1,932:27165932,21451067 -g1,932:27165932,21451067 -g1,932:27165932,21451067 -(1,932:27165932,21451067:0,0,0 -(1,932:27165932,21451067:331874,388497,9436 -(1,932:27165932,21451067:331874,388497,9436 +] ) -g1,932:27497806,21451067 ) +g1,1010:11764898,6956728 +g1,1010:11764898,6956728 ) -g1,932:27165932,21451067 -g1,932:27165932,21451067 ) +g1,1010:11764898,6956728 +g1,1015:11764898,6956728 +g1,1015:11764898,6956728 +g1,1017:11764898,6956728 +(1,1017:11764898,6956728:0,0,0 +(1,1017:11764898,6956728:0,0,0 +g1,1017:11764898,6956728 +(1,1017:11764898,6956728:0,0,0 +(1,1017:11764898,6956728:1976140,479396,205458 +(1,1017:11764898,6956728:1976140,479396,205458 +r1,1186:11764898,6956728:0,684854,205458 +(1,1017:11764898,6956728:0,340640,93333 +r1,1186:13741038,6956728:1976140,433973,93333 +k1,1017:11764898,6956728:-1976140 ) -g1,932:27165932,21451067 +(1,1017:11764898,6956728:1976140,340640,93333 +g1,1017:12049544,6956728 +h1,1017:13175022,6956728:562739,252906,0 +h1,1017:13737761,6956728:0,328964,90056 ) ) -g1,932:27165932,21451067 -(1,932:27165932,21451067:665744,673524,285028 -g1,932:27632101,21451067 -k1,932:27831676,21451067:199575 +g1,1017:13741038,6956728 ) -g1,932:27831676,21451067 -(1,932:27831676,21451067:639530,673524,285028 -k1,932:28031251,21451067:199575 -g1,932:28471206,21451067 -(1,932:28471206,21451067:0,655699,276639 -(1,932:28471206,21451067:0,0,0 -(1,932:28471206,21451067:0,0,0 -g1,932:28471206,21451067 -g1,932:28471206,21451067 -g1,932:28471206,21451067 -g1,932:28471206,21451067 -g1,932:28471206,21451067 -(1,932:28471206,21451067:0,0,0 -(1,932:28471206,21451067:331874,388497,9436 -(1,932:28471206,21451067:331874,388497,9436 ) -g1,932:28803080,21451067 +g1,1017:11764898,6956728 +g1,1017:11764898,6956728 ) ) -g1,932:28471206,21451067 -g1,932:28471206,21451067 +g1,1017:11764898,6956728 +g1,1018:11764898,6956728 +(1,1018:11764898,6956728:0,0,0 +(1,1018:11764898,6956728:0,0,0 +g1,1018:11764898,6956728 +g1,1018:11764898,6956728 +g1,1018:11764898,6956728 +g1,1018:11764898,6956728 +g1,1018:11764898,6956728 +(1,1018:11764898,6956728:0,0,0 +(1,1018:11764898,6956728:6599312,404226,101187 +(1,1018:11764898,6956728:6599312,404226,101187 +(1,1018:11764898,6956728:0,363038,98932 +r1,1186:13741038,6956728:1976140,461970,98932 +k1,1018:11764898,6956728:-1976140 ) +(1,1018:11764898,6956728:1976140,363038,98932 +k1,1018:11764898,6956728:3277 +h1,1018:13737761,6956728:0,328964,90056 ) -g1,932:28471206,21451067 +g1,1018:13906713,6956728 +g1,1018:16578485,6956728 ) +g1,1018:18364210,6956728 ) -g1,932:28471206,21451067 -(1,932:28471206,21451067:665744,673524,285028 -g1,932:28937375,21451067 -k1,932:29136950,21451067:199575 ) -g1,932:29136950,21451067 -(1,932:29136950,21451067:639530,673524,285028 -k1,932:29296076,21451067:159126 -g1,932:29776480,21451067 -(1,932:29776480,21451067:0,655699,276639 -(1,932:29776480,21451067:0,0,0 -(1,932:29776480,21451067:0,0,0 -g1,932:29776480,21451067 -g1,932:29776480,21451067 -g1,932:29776480,21451067 -g1,932:29776480,21451067 -g1,932:29776480,21451067 -(1,932:29776480,21451067:0,0,0 -(1,932:29776480,21451067:663749,388497,9436 -(1,932:29776480,21451067:663749,388497,9436 +g1,1018:11764898,6956728 +g1,1018:11764898,6956728 ) -g1,932:30440229,21451067 ) +g1,1018:11764898,6956728 +g1,1019:11764898,6956728 +(1,1019:11764898,6956728:0,0,0 +(1,1019:11764898,6956728:0,0,0 +g1,1019:11764898,6956728 +g1,1019:11764898,6956728 +g1,1019:11764898,6956728 +g1,1019:11764898,6956728 +g1,1019:11764898,6956728 +(1,1019:11764898,6956728:0,0,0 +(1,1019:11764898,6956728:3738272,404226,93333 +(1,1019:11764898,6956728:3738272,404226,93333 +(1,1019:11764898,6956728:0,363038,93333 +r1,1186:13741038,6956728:1976140,456371,93333 +k1,1019:11764898,6956728:-1976140 ) -g1,932:29776480,21451067 -g1,932:29776480,21451067 +(1,1019:11764898,6956728:1976140,363038,93333 +k1,1019:11764898,6956728:3277 +h1,1019:13737761,6956728:0,328964,90056 ) +g1,1019:13906713,6956728 +) +g1,1019:15503170,6956728 +) +) +g1,1019:11764898,6956728 +g1,1019:11764898,6956728 +) +) +g1,1019:11764898,6956728 +g1,1021:11764898,6956728 +g1,1021:11764898,6956728 +) +g1,1021:11764898,6956728 +) +) +g1,1021:21230142,8314719 +k1,1024:32583029,8314719:11352887 +g1,1024:32583029,8314719 +) +v1,1026:6630773,8999574:0,393216,0 +(1,1034:6630773,10808009:25952256,2201651,196608 +g1,1034:6630773,10808009 +g1,1034:6630773,10808009 +g1,1034:6434165,10808009 +(1,1034:6434165,10808009:0,2201651,196608 +r1,1186:32779637,10808009:26345472,2398259,196608 +k1,1034:6434165,10808009:-26345472 +) +(1,1034:6434165,10808009:26345472,2201651,196608 +[1,1034:6630773,10808009:25952256,2005043,0 +(1,1028:6630773,9227405:25952256,424439,86428 +(1,1027:6630773,9227405:0,0,0 +g1,1027:6630773,9227405 +g1,1027:6630773,9227405 +g1,1027:6303093,9227405 +(1,1027:6303093,9227405:0,0,0 +) +g1,1027:6630773,9227405 +) +g1,1028:8290543,9227405 +g1,1028:9286405,9227405 +g1,1028:10946175,9227405 +g1,1028:11942037,9227405 +h1,1028:12605945,9227405:0,0,0 +k1,1028:32583029,9227405:19977084 +g1,1028:32583029,9227405 +) +(1,1029:6630773,9912260:25952256,398014,9908 +h1,1029:6630773,9912260:0,0,0 +h1,1029:7958589,9912260:0,0,0 +k1,1029:32583029,9912260:24624440 +g1,1029:32583029,9912260 +) +(1,1033:6630773,10728187:25952256,424439,79822 +(1,1031:6630773,10728187:0,0,0 +g1,1031:6630773,10728187 +g1,1031:6630773,10728187 +g1,1031:6303093,10728187 +(1,1031:6303093,10728187:0,0,0 +) +g1,1031:6630773,10728187 +) +g1,1033:7626635,10728187 +g1,1033:8954451,10728187 +g1,1033:9618359,10728187 +g1,1033:10282267,10728187 +h1,1033:10614221,10728187:0,0,0 +k1,1033:32583029,10728187:21968808 +g1,1033:32583029,10728187 +) +] +) +g1,1034:32583029,10808009 +g1,1034:6630773,10808009 +g1,1034:6630773,10808009 +g1,1034:32583029,10808009 +g1,1034:32583029,10808009 +) +h1,1034:6630773,11004617:0,0,0 +(1,1060:6630773,13786135:25952256,2715982,0 +g1,1039:6790157,13786135 +(1,1057:6790157,13786135:14280601,2715982,0 +g1,1057:11764898,13786135 +(1,1057:11764898,12428144:0,0,0 +(1,1051:11764898,12428144:0,0,0 +g1,1049:11764898,12428144 +g1,1050:11764898,12428144 +g1,1050:11764898,12428144 +g1,1050:11764898,12428144 +g1,1050:11764898,12428144 +g1,1051:11764898,12428144 +) +(1,1057:11764898,12428144:0,0,0 +g1,1042:11764898,12428144 +(1,1046:11764898,12428144:0,0,0 +(1,1046:11764898,12428144:0,0,0 +g1,1046:11764898,12428144 +g1,1046:11764898,12428144 +g1,1046:11764898,12428144 +g1,1046:11764898,12428144 +g1,1046:11764898,12428144 +(1,1046:11764898,12428144:0,0,0 +(1,1046:11764898,12428144:3942036,1885563,480932 +[1,1046:11764898,12428144:3942036,1885563,480932 +(1,1046:11764898,11202998:3942036,660417,276639 +g1,1045:11764898,11202998 +(1,1045:11764898,11202998:665744,660417,276639 +k1,1045:11964473,11202998:199575 +g1,1045:12430642,11202998 +(1,1045:12430642,11202998:0,660417,271921 +(1,1045:12430642,11202998:0,0,0 +(1,1045:12430642,11202998:0,0,0 +g1,1045:12430642,11202998 +g1,1045:12430642,11202998 +g1,1045:12430642,11202998 +g1,1045:12430642,11202998 +g1,1045:12430642,11202998 +(1,1045:12430642,11202998:0,0,0 +(1,1045:12430642,11202998:331874,388497,0 +(1,1045:12430642,11202998:331874,388497,0 +) +g1,1045:12762516,11202998 +) +) +g1,1045:12430642,11202998 +g1,1045:12430642,11202998 +) +) +g1,1045:12430642,11202998 +) +) +g1,1045:12430642,11202998 +(1,1045:12430642,11202998:665744,660417,276639 +g1,1045:12896811,11202998 +k1,1045:13096386,11202998:199575 +) +g1,1045:13096386,11202998 +(1,1045:13096386,11202998:639530,660417,276639 +k1,1045:13295961,11202998:199575 +g1,1045:13735916,11202998 +(1,1045:13735916,11202998:0,660417,271921 +(1,1045:13735916,11202998:0,0,0 +(1,1045:13735916,11202998:0,0,0 +g1,1045:13735916,11202998 +g1,1045:13735916,11202998 +g1,1045:13735916,11202998 +g1,1045:13735916,11202998 +g1,1045:13735916,11202998 +(1,1045:13735916,11202998:0,0,0 +(1,1045:13735916,11202998:331874,388497,0 +(1,1045:13735916,11202998:331874,388497,0 +) +g1,1045:14067790,11202998 +) +) +g1,1045:13735916,11202998 +g1,1045:13735916,11202998 +) +) +g1,1045:13735916,11202998 +) +) +g1,1045:13735916,11202998 +(1,1045:13735916,11202998:665744,660417,276639 +g1,1045:14202085,11202998 +k1,1045:14401660,11202998:199575 +) +g1,1045:14401660,11202998 +(1,1045:14401660,11202998:639530,660417,276639 +k1,1045:14601235,11202998:199575 +g1,1045:15041190,11202998 +(1,1045:15041190,11202998:0,655699,276639 +(1,1045:15041190,11202998:0,0,0 +(1,1045:15041190,11202998:0,0,0 +g1,1045:15041190,11202998 +g1,1045:15041190,11202998 +g1,1045:15041190,11202998 +g1,1045:15041190,11202998 +g1,1045:15041190,11202998 +(1,1045:15041190,11202998:0,0,0 +(1,1045:15041190,11202998:331874,388497,9436 +(1,1045:15041190,11202998:331874,388497,9436 +) +g1,1045:15373064,11202998 +) +) +g1,1045:15041190,11202998 +g1,1045:15041190,11202998 +) +) +g1,1045:15041190,11202998 +) +) +g1,1045:15041190,11202998 +(1,1046:15041190,11202998:665744,660417,276639 +g1,1046:15507359,11202998 +k1,1046:15706934,11202998:199575 ) -g1,932:29776480,21451067 +g1,1046:15706934,11202998 ) +(1,1046:11764898,12428144:3942036,855274,480932 +g1,1046:11764898,12428144 +(1,1046:11764898,12428144:665744,855274,480932 +g1,1046:11764898,12428144 +g1,1046:12430642,12428144 +(1,1046:12430642,12428144:0,855274,476214 +(1,1046:12430642,12428144:0,0,0 +(1,1046:12430642,12428144:0,0,0 +g1,1046:12430642,12428144 +g1,1046:12430642,12428144 +g1,1046:12430642,12428144 +g1,1046:12430642,12428144 +g1,1046:12430642,12428144 +(1,1046:12430642,12428144:0,0,0 +(1,1046:12430642,12428144:331874,379060,0 +(1,1046:12430642,12428144:331874,379060,0 ) -g1,932:29776480,21451067 -(1,933:29776480,21451067:665744,673524,285028 -g1,933:30283098,21451067 -k1,933:30442224,21451067:159126 -) -g1,933:30442224,21451067 -) -(1,933:17363270,22495072:13078954,665744,665744 -g1,933:17363270,22495072 -(1,933:17363270,22495072:665744,665744,665744 -g1,933:17363270,22495072 -g1,933:18029014,22495072 -(1,933:18029014,22495072:0,665744,665744 -(1,933:18029014,22495072:0,0,0 -(1,933:18029014,22495072:0,0,0 -g1,933:18029014,22495072 -g1,933:18029014,22495072 -g1,933:18029014,22495072 -g1,933:18029014,22495072 -g1,933:18029014,22495072 -(1,933:18029014,22495072:0,0,0 -(1,933:18029014,22495072:0,0,0 -h1,933:18029014,22495072:0,0,0 -g1,933:18029014,22495072 +g1,1046:12762516,12428144 ) ) -g1,933:18029014,22495072 -g1,933:18029014,22495072 +g1,1046:12430642,12428144 +g1,1046:12430642,12428144 ) ) -g1,933:18029014,22495072 +g1,1046:12430642,12428144 ) ) -g1,933:18029014,22495072 -(1,933:18029014,22495072:665744,665744,665744 -g1,933:18694758,22495072 -g1,933:18694758,22495072 -) -g1,933:18694758,22495072 -(1,933:18694758,22495072:639530,665744,665744 -g1,933:18694758,22495072 -g1,933:19334288,22495072 -(1,933:19334288,22495072:0,665744,665744 -(1,933:19334288,22495072:0,0,0 -(1,933:19334288,22495072:0,0,0 -g1,933:19334288,22495072 -g1,933:19334288,22495072 -g1,933:19334288,22495072 -g1,933:19334288,22495072 -g1,933:19334288,22495072 -(1,933:19334288,22495072:0,0,0 -(1,933:19334288,22495072:0,0,0 -h1,933:19334288,22495072:0,0,0 -g1,933:19334288,22495072 +g1,1046:12430642,12428144 +(1,1046:12430642,12428144:665744,855274,480932 +g1,1046:13096386,12428144 +g1,1046:13096386,12428144 ) +g1,1046:13096386,12428144 +(1,1046:13096386,12428144:639530,855274,480932 +g1,1046:13096386,12428144 +g1,1046:13735916,12428144 +(1,1046:13735916,12428144:0,850556,480932 +(1,1046:13735916,12428144:0,0,0 +(1,1046:13735916,12428144:0,0,0 +g1,1046:13735916,12428144 +g1,1046:13735916,12428144 +g1,1046:13735916,12428144 +g1,1046:13735916,12428144 +g1,1046:13735916,12428144 +(1,1046:13735916,12428144:0,0,0 +(1,1046:13735916,12428144:331874,379060,9436 +(1,1046:13735916,12428144:331874,379060,9436 ) -g1,933:19334288,22495072 -g1,933:19334288,22495072 +g1,1046:14067790,12428144 ) ) -g1,933:19334288,22495072 +g1,1046:13735916,12428144 +g1,1046:13735916,12428144 ) ) -g1,933:19334288,22495072 -(1,933:19334288,22495072:665744,665744,665744 -g1,933:20000032,22495072 -g1,933:20000032,22495072 -) -g1,933:20000032,22495072 -(1,933:20000032,22495072:639530,665744,665744 -g1,933:20000032,22495072 -g1,933:20639562,22495072 -(1,933:20639562,22495072:0,665744,665744 -(1,933:20639562,22495072:0,0,0 -(1,933:20639562,22495072:0,0,0 -g1,933:20639562,22495072 -g1,933:20639562,22495072 -g1,933:20639562,22495072 -g1,933:20639562,22495072 -g1,933:20639562,22495072 -(1,933:20639562,22495072:0,0,0 -(1,933:20639562,22495072:0,0,0 -h1,933:20639562,22495072:0,0,0 -g1,933:20639562,22495072 -) +g1,1046:13735916,12428144 ) -g1,933:20639562,22495072 -g1,933:20639562,22495072 ) +g1,1046:13735916,12428144 +(1,1046:13735916,12428144:665744,855274,480932 +g1,1046:14401660,12428144 +g1,1046:14401660,12428144 ) -g1,933:20639562,22495072 -) -) -g1,933:20639562,22495072 -(1,933:20639562,22495072:665744,665744,665744 -g1,933:21305306,22495072 -g1,933:21305306,22495072 -) -g1,933:21305306,22495072 -(1,933:21305306,22495072:639530,665744,665744 -g1,933:21305306,22495072 -g1,933:21944836,22495072 -(1,933:21944836,22495072:0,665744,665744 -(1,933:21944836,22495072:0,0,0 -(1,933:21944836,22495072:0,0,0 -g1,933:21944836,22495072 -g1,933:21944836,22495072 -g1,933:21944836,22495072 -g1,933:21944836,22495072 -g1,933:21944836,22495072 -(1,933:21944836,22495072:0,0,0 -(1,933:21944836,22495072:0,0,0 -h1,933:21944836,22495072:0,0,0 -g1,933:21944836,22495072 -) -) -g1,933:21944836,22495072 -g1,933:21944836,22495072 -) -) -g1,933:21944836,22495072 -) -) -g1,933:21944836,22495072 -(1,933:21944836,22495072:665744,665744,665744 -g1,933:22610580,22495072 -g1,933:22610580,22495072 -) -g1,933:22610580,22495072 -(1,933:22610580,22495072:639530,665744,665744 -g1,933:22610580,22495072 -g1,933:23250110,22495072 -(1,933:23250110,22495072:0,665744,665744 -(1,933:23250110,22495072:0,0,0 -(1,933:23250110,22495072:0,0,0 -g1,933:23250110,22495072 -g1,933:23250110,22495072 -g1,933:23250110,22495072 -g1,933:23250110,22495072 -g1,933:23250110,22495072 -(1,933:23250110,22495072:0,0,0 -(1,933:23250110,22495072:0,0,0 -h1,933:23250110,22495072:0,0,0 -g1,933:23250110,22495072 -) -) -g1,933:23250110,22495072 -g1,933:23250110,22495072 -) -) -g1,933:23250110,22495072 -) -) -g1,933:23250110,22495072 -(1,933:23250110,22495072:665744,665744,665744 -g1,933:23915854,22495072 -g1,933:23915854,22495072 -) -g1,933:23915854,22495072 -(1,933:23915854,22495072:639530,665744,665744 -g1,933:23915854,22495072 -g1,933:24555384,22495072 -(1,933:24555384,22495072:0,665744,665744 -(1,933:24555384,22495072:0,0,0 -(1,933:24555384,22495072:0,0,0 -g1,933:24555384,22495072 -g1,933:24555384,22495072 -g1,933:24555384,22495072 -g1,933:24555384,22495072 -g1,933:24555384,22495072 -(1,933:24555384,22495072:0,0,0 -(1,933:24555384,22495072:0,0,0 -h1,933:24555384,22495072:0,0,0 -g1,933:24555384,22495072 -) -) -g1,933:24555384,22495072 -g1,933:24555384,22495072 -) -) -g1,933:24555384,22495072 -) -) -g1,933:24555384,22495072 -(1,933:24555384,22495072:665744,665744,665744 -g1,933:25221128,22495072 -g1,933:25221128,22495072 -) -g1,933:25221128,22495072 -(1,933:25221128,22495072:639530,665744,665744 -g1,933:25221128,22495072 -g1,933:25860658,22495072 -(1,933:25860658,22495072:0,665744,665744 -(1,933:25860658,22495072:0,0,0 -(1,933:25860658,22495072:0,0,0 -g1,933:25860658,22495072 -g1,933:25860658,22495072 -g1,933:25860658,22495072 -g1,933:25860658,22495072 -g1,933:25860658,22495072 -(1,933:25860658,22495072:0,0,0 -(1,933:25860658,22495072:0,0,0 -h1,933:25860658,22495072:0,0,0 -g1,933:25860658,22495072 -) -) -g1,933:25860658,22495072 -g1,933:25860658,22495072 +g1,1046:14401660,12428144 +(1,1046:14401660,12428144:639530,855274,480932 +g1,1046:14401660,12428144 +g1,1046:15041190,12428144 +(1,1046:15041190,12428144:0,855274,476214 +(1,1046:15041190,12428144:0,0,0 +(1,1046:15041190,12428144:0,0,0 +g1,1046:15041190,12428144 +g1,1046:15041190,12428144 +g1,1046:15041190,12428144 +g1,1046:15041190,12428144 +g1,1046:15041190,12428144 +(1,1046:15041190,12428144:0,0,0 +(1,1046:15041190,12428144:331874,388497,9436 +(1,1046:15041190,12428144:331874,388497,9436 ) +g1,1046:15373064,12428144 ) -g1,933:25860658,22495072 ) +g1,1046:15041190,12428144 +g1,1046:15041190,12428144 ) -g1,933:25860658,22495072 -(1,933:25860658,22495072:665744,665744,665744 -g1,933:26526402,22495072 -g1,933:26526402,22495072 ) -g1,933:26526402,22495072 -(1,933:26526402,22495072:639530,665744,665744 -g1,933:26526402,22495072 -g1,933:27165932,22495072 -(1,933:27165932,22495072:0,665744,665744 -(1,933:27165932,22495072:0,0,0 -(1,933:27165932,22495072:0,0,0 -g1,933:27165932,22495072 -g1,933:27165932,22495072 -g1,933:27165932,22495072 -g1,933:27165932,22495072 -g1,933:27165932,22495072 -(1,933:27165932,22495072:0,0,0 -(1,933:27165932,22495072:0,0,0 -h1,933:27165932,22495072:0,0,0 -g1,933:27165932,22495072 +g1,1046:15041190,12428144 ) ) -g1,933:27165932,22495072 -g1,933:27165932,22495072 +g1,1046:15041190,12428144 +(1,1046:15041190,12428144:665744,855274,480932 +g1,1046:15706934,12428144 +g1,1046:15706934,12428144 ) -) -g1,933:27165932,22495072 -) -) -g1,933:27165932,22495072 -(1,933:27165932,22495072:665744,665744,665744 -g1,933:27831676,22495072 -g1,933:27831676,22495072 -) -g1,933:27831676,22495072 -(1,933:27831676,22495072:639530,665744,665744 -g1,933:27831676,22495072 -g1,933:28471206,22495072 -(1,933:28471206,22495072:0,665744,665744 -(1,933:28471206,22495072:0,0,0 -(1,933:28471206,22495072:0,0,0 -g1,933:28471206,22495072 -g1,933:28471206,22495072 -g1,933:28471206,22495072 -g1,933:28471206,22495072 -g1,933:28471206,22495072 -(1,933:28471206,22495072:0,0,0 -(1,933:28471206,22495072:0,0,0 -h1,933:28471206,22495072:0,0,0 -g1,933:28471206,22495072 -) -) -g1,933:28471206,22495072 -g1,933:28471206,22495072 -) -) -g1,933:28471206,22495072 -) -) -g1,933:28471206,22495072 -(1,933:28471206,22495072:665744,665744,665744 -g1,933:29136950,22495072 -g1,933:29136950,22495072 -) -g1,933:29136950,22495072 -(1,933:29136950,22495072:639530,665744,665744 -g1,933:29136950,22495072 -g1,933:29776480,22495072 -(1,933:29776480,22495072:0,665744,665744 -(1,933:29776480,22495072:0,0,0 -(1,933:29776480,22495072:0,0,0 -g1,933:29776480,22495072 -g1,933:29776480,22495072 -g1,933:29776480,22495072 -g1,933:29776480,22495072 -g1,933:29776480,22495072 -(1,933:29776480,22495072:0,0,0 -(1,933:29776480,22495072:0,0,0 -h1,933:29776480,22495072:0,0,0 -g1,933:29776480,22495072 -) -) -g1,933:29776480,22495072 -g1,933:29776480,22495072 -) -) -g1,933:29776480,22495072 -) -) -g1,933:29776480,22495072 -(1,933:29776480,22495072:665744,665744,665744 -g1,933:30442224,22495072 -g1,933:30442224,22495072 -) -g1,933:30442224,22495072 +g1,1046:15706934,12428144 ) ] ) ) -g1,933:17363270,22495072 -g1,933:17363270,22495072 +g1,1046:11764898,12428144 +g1,1046:11764898,12428144 ) ) -g1,933:17363270,22495072 -g1,934:17363270,22495072 -(1,934:17363270,22495072:0,0,0 -(1,934:17363270,22495072:0,0,0 -g1,934:17363270,22495072 -g1,934:17363270,22495072 -g1,934:17363270,22495072 -g1,934:17363270,22495072 -g1,934:17363270,22495072 -(1,934:17363270,22495072:0,0,0 -(1,934:17363270,22495072:0,0,0 -h1,934:17363270,22495072:0,0,0 -g1,934:17363270,22495072 +g1,1046:11764898,12428144 +g1,1051:11764898,12428144 +g1,1051:11764898,12428144 +g1,1053:11764898,12428144 +(1,1053:11764898,12428144:0,0,0 +(1,1053:11764898,12428144:0,0,0 +g1,1053:11764898,12428144 +(1,1053:11764898,12428144:0,0,0 +(1,1053:11764898,12428144:1976140,479396,205458 +(1,1053:11764898,12428144:1976140,479396,205458 +r1,1186:11764898,12428144:0,684854,205458 +(1,1053:11764898,12428144:0,340640,93333 +r1,1186:13741038,12428144:1976140,433973,93333 +k1,1053:11764898,12428144:-1976140 ) +(1,1053:11764898,12428144:1976140,340640,93333 +g1,1053:12049544,12428144 +h1,1053:13175022,12428144:562739,252906,0 +h1,1053:13737761,12428144:0,328964,90056 ) -g1,934:17363270,22495072 -g1,934:17363270,22495072 ) +g1,1053:13741038,12428144 ) -g1,934:17363270,22495072 -g1,938:17363270,22495072 -g1,938:17363270,22495072 -g1,940:17363270,22495072 -(1,940:17363270,22495072:0,0,0 -(1,940:17363270,22495072:0,0,0 -g1,940:17363270,22495072 -(1,940:17363270,22495072:0,0,0 -(1,940:17363270,22495072:1860446,466322,199855 -(1,940:17363270,22495072:1860446,466322,199855 -g1,940:17528945,22495072 -(1,940:17528945,22495072:0,332241,93333 -r1,1013:19223716,22495072:1694771,425574,93333 -k1,940:17528945,22495072:-1694771 ) -(1,940:17528945,22495072:1694771,332241,93333 -k1,940:17528945,22495072:3277 -h1,940:19220439,22495072:0,328964,90056 +g1,1053:11764898,12428144 +g1,1053:11764898,12428144 ) -r1,1013:19223716,22495072:0,666177,199855 ) -g1,940:19223716,22495072 +g1,1053:11764898,12428144 +g1,1054:11764898,12428144 +(1,1054:11764898,12428144:0,0,0 +(1,1054:11764898,12428144:0,0,0 +g1,1054:11764898,12428144 +g1,1054:11764898,12428144 +g1,1054:11764898,12428144 +g1,1054:11764898,12428144 +g1,1054:11764898,12428144 +(1,1054:11764898,12428144:0,0,0 +(1,1054:11764898,12428144:6599312,404226,101187 +(1,1054:11764898,12428144:6599312,404226,101187 +(1,1054:11764898,12428144:0,363038,98932 +r1,1186:13741038,12428144:1976140,461970,98932 +k1,1054:11764898,12428144:-1976140 ) +(1,1054:11764898,12428144:1976140,363038,98932 +k1,1054:11764898,12428144:3277 +h1,1054:13737761,12428144:0,328964,90056 ) -g1,940:17363270,22495072 -g1,940:17363270,22495072 +g1,1054:13906713,12428144 +g1,1054:16578485,12428144 ) -) -g1,940:17363270,22495072 -g1,941:17363270,22495072 -g1,941:17363270,22495072 -(1,941:17363270,22495072:0,0,0 -(1,941:17363270,22495072:0,0,0 -g1,941:17363270,22495072 -g1,941:17363270,22495072 -g1,941:17363270,22495072 -g1,941:17363270,22495072 -g1,941:17363270,22495072 -(1,941:17363270,22495072:0,0,0 -(1,941:17363270,22495072:2695889,404226,6290 -(1,941:17363270,22495072:2695889,404226,6290 -g1,941:18638863,22495072 -) -g1,941:20059159,22495072 +g1,1054:18364210,12428144 ) ) -g1,941:17363270,22495072 -g1,941:17363270,22495072 +g1,1054:11764898,12428144 +g1,1054:11764898,12428144 ) ) -g1,941:17363270,22495072 -g1,942:17363270,22495072 -(1,942:17363270,22495072:0,0,0 -(1,942:17363270,22495072:0,0,0 -g1,942:17363270,22495072 -g1,942:17363270,22495072 -g1,942:17363270,22495072 -g1,942:17363270,22495072 -g1,942:17363270,22495072 -(1,942:17363270,22495072:0,0,0 -(1,942:17363270,22495072:6599312,404226,101187 -(1,942:17363270,22495072:6599312,404226,101187 -(1,942:17363270,22495072:0,363038,98932 -r1,1013:19339410,22495072:1976140,461970,98932 -k1,942:17363270,22495072:-1976140 +g1,1054:11764898,12428144 +g1,1055:11764898,12428144 +(1,1055:11764898,12428144:0,0,0 +(1,1055:11764898,12428144:0,0,0 +g1,1055:11764898,12428144 +g1,1055:11764898,12428144 +g1,1055:11764898,12428144 +g1,1055:11764898,12428144 +g1,1055:11764898,12428144 +(1,1055:11764898,12428144:0,0,0 +(1,1055:11764898,12428144:3738272,404226,93333 +(1,1055:11764898,12428144:3738272,404226,93333 +(1,1055:11764898,12428144:0,363038,93333 +r1,1186:13741038,12428144:1976140,456371,93333 +k1,1055:11764898,12428144:-1976140 ) -(1,942:17363270,22495072:1976140,363038,98932 -k1,942:17363270,22495072:3277 -h1,942:19336133,22495072:0,328964,90056 -) -g1,942:19505085,22495072 -g1,942:22176857,22495072 -) -g1,942:23962582,22495072 -) -) -g1,942:17363270,22495072 -g1,942:17363270,22495072 -) -) -g1,942:17363270,22495072 -g1,943:17363270,22495072 -(1,943:17363270,22495072:0,0,0 -(1,943:17363270,22495072:0,0,0 -g1,943:17363270,22495072 -g1,943:17363270,22495072 -g1,943:17363270,22495072 -g1,943:17363270,22495072 -g1,943:17363270,22495072 -(1,943:17363270,22495072:0,0,0 -(1,943:17363270,22495072:5422637,404226,93333 -(1,943:17363270,22495072:5422637,404226,93333 -g1,943:19826375,22495072 -g1,943:20528397,22495072 -(1,943:20528397,22495072:0,363038,93333 -r1,1013:22785907,22495072:2257510,456371,93333 -k1,943:20528397,22495072:-2257510 -) -(1,943:20528397,22495072:2257510,363038,93333 -k1,943:20528397,22495072:3277 -h1,943:22782630,22495072:0,328964,90056 -) -) -g1,943:22785907,22495072 -) -) -g1,943:17363270,22495072 -g1,943:17363270,22495072 -) -) -g1,943:17363270,22495072 -g1,944:17363270,22495072 -g1,944:17363270,22495072 -(1,944:17363270,22495072:0,0,0 -(1,944:17363270,22495072:0,0,0 -g1,944:17363270,22495072 -g1,944:17363270,22495072 -g1,944:17363270,22495072 -g1,944:17363270,22495072 -g1,944:17363270,22495072 -(1,944:17363270,22495072:0,0,0 -(1,944:17363270,22495072:4773118,404226,9436 -(1,944:17363270,22495072:4773118,404226,9436 -(1,944:17363270,22495072:4773118,404226,9436 -g1,944:19567377,22495072 -g1,944:20218543,22495072 -g1,944:21804514,22495072 -) -) -g1,944:22136388,22495072 -) -) -g1,944:17363270,22495072 -g1,944:17363270,22495072 -) -) -g1,944:17363270,22495072 -g1,945:17363270,22495072 -g1,945:17363270,22495072 -g1,945:17363270,22495072 -g1,945:17363270,22495072 -g1,945:17363270,22495072 -g1,945:17363270,22495072 -g1,947:17363270,22495072 -g1,947:17363270,22495072 -) -g1,947:17363270,22495072 -) -) -g1,949:31278038,23861452 -k1,949:32583029,23861452:1304991 -) -(1,952:6630773,25140941:25952256,505283,134348 -h1,951:6630773,25140941:983040,0,0 -k1,951:10459550,25140941:262963 -k1,951:11338551,25140941:262963 -k1,951:15924924,25140941:262963 -k1,951:19051156,25140941:262964 -k1,951:20305679,25140941:262963 -k1,951:23336883,25140941:262963 -k1,951:27409454,25140941:262963 -k1,951:29407810,25140941:262963 -k1,951:32583029,25140941:0 -) -(1,952:6630773,25982429:25952256,505283,126483 -g1,951:9256800,25982429 -g1,951:10142191,25982429 -k1,952:32583028,25982429:18960220 -g1,952:32583028,25982429 -) -(1,954:15414961,26823917:17168068,505283,103819 -(1,954:15414961,26823917:8383880,351273,103819 -h1,954:15414961,26823917:0,0,0 -(1,954:15877645,26922231:1131020,334430,5505 -) -g1,954:17190725,26823917 -g1,954:17940982,26823917 -(1,954:18403666,26922231:311689,334430,0 -) -g1,954:19013990,26823917 -(1,954:19476674,26922231:311689,339935,0 -) -g1,954:20086998,26823917 -g1,954:20773606,26823917 -(1,954:21236290,26922231:233243,346358,5505 -) -g1,954:21768168,26823917 -g1,954:22454776,26823917 -g1,954:22753411,26823917 -(1,954:23216095,26922231:393347,248644,5505 -) -) -(1,954:31198253,26823917:1384776,505283,95026 -(1,954:31198253,26823917:1384776,505283,95026 -) -) -) -(1,956:6630773,27928207:25952256,513147,134348 -k1,955:8778502,27928207:228835 -$1,955:8778502,27928207 -(1,955:9241186,28026521:1131020,334430,5505 -) -$1,955:10372206,27928207 -k1,955:10601042,27928207:228836 -k1,955:11361374,27928207:228835 -k1,955:12609294,27928207:228835 -k1,955:14720979,27928207:228836 -k1,955:16927691,27928207:228835 -k1,955:18347971,27928207:228835 -$1,955:18347971,27928207 -(1,955:18810655,28026521:311689,334430,0 -) -$1,955:19122344,27928207 -k1,955:19351180,27928207:228836 -k1,955:20368413,27928207:228835 -k1,955:21903381,27928207:228835 -k1,955:24929293,27928207:228835 -k1,955:26354816,27928207:228836 -k1,955:28596917,27928207:228835 -k1,955:29485044,27928207:228835 -$1,955:29485044,27928207 -(1,955:29947728,28026521:1131020,334430,5505 -) -$1,955:31078748,27928207 -k1,955:31307584,27928207:228836 -k1,955:32067916,27928207:228835 -$1,955:32067916,27928207 -$1,955:32583029,27928207 -k1,956:32583029,27928207:0 -) -(1,956:6630773,28769695:25952256,505283,134348 -g1,955:7516164,28769695 -g1,955:8173490,28769695 -g1,955:11074768,28769695 -$1,955:11074768,28769695 -$1,955:11589881,28769695 -g1,955:11789110,28769695 -g1,955:15115717,28769695 -g1,955:15942781,28769695 -g1,955:17161095,28769695 -g1,955:19976521,28769695 -g1,955:22031074,28769695 -$1,955:22031074,28769695 -g1,955:22728247,28769695 -g1,955:23478504,28769695 -$1,955:24275422,28769695 -k1,956:32583029,28769695:8133937 -g1,956:32583029,28769695 -) -(1,958:6630773,29611183:25952256,513147,126483 -h1,957:6630773,29611183:983040,0,0 -k1,957:8615803,29611183:184101 -k1,957:9970378,29611183:184102 -k1,957:11629694,29611183:184101 -k1,957:13253622,29611183:184102 -k1,957:15466718,29611183:184101 -k1,957:16669905,29611183:184102 -k1,957:19027180,29611183:184101 -k1,957:19870574,29611183:184102 -k1,957:23856418,29611183:184101 -k1,957:25544571,29611183:184102 -k1,957:28078793,29611183:184101 -k1,957:31189078,29611183:184102 -k1,958:32583029,29611183:0 -) -(1,958:6630773,30452671:25952256,513147,126483 -(1,957:6630773,30452671:0,452978,115847 -r1,1013:7692462,30452671:1061689,568825,115847 -k1,957:6630773,30452671:-1061689 -) -(1,957:6630773,30452671:1061689,452978,115847 -k1,957:6630773,30452671:3277 -h1,957:7689185,30452671:0,411205,112570 -) -k1,957:8064665,30452671:198533 -k1,957:9644041,30452671:198532 -k1,957:10374071,30452671:198533 -k1,957:11591688,30452671:198532 -k1,957:13539377,30452671:198533 -k1,957:14420795,30452671:198533 -k1,957:17233558,30452671:198532 -k1,957:18048129,30452671:198533 -k1,957:19265747,30452671:198533 -k1,957:21442156,30452671:198532 -k1,957:22299981,30452671:198533 -k1,957:23517598,30452671:198532 -k1,957:25022264,30452671:198533 -k1,957:27706578,30452671:198533 -k1,957:28795089,30452671:198532 -k1,957:30695592,30452671:198533 -k1,957:32583029,30452671:0 -) -(1,958:6630773,31294159:25952256,513147,134348 -k1,957:9859488,31294159:165562 -k1,957:10637813,31294159:165563 -k1,957:11822460,31294159:165562 -k1,957:13526807,31294159:165562 -k1,957:14351662,31294159:165563 -k1,957:15536309,31294159:165562 -k1,957:18046094,31294159:165562 -k1,957:19553834,31294159:165563 -k1,957:20537285,31294159:165562 -k1,957:21318885,31294159:165562 -k1,957:21899257,31294159:165529 -k1,957:23937839,31294159:165563 -k1,957:26114046,31294159:165562 -k1,957:27271168,31294159:165562 -k1,957:29744909,31294159:165563 -k1,957:30569763,31294159:165562 -k1,957:32583029,31294159:0 -) -(1,958:6630773,32135647:25952256,505283,126483 -g1,957:8160383,32135647 -g1,957:10057650,32135647 -g1,957:11637067,32135647 -g1,957:12827856,32135647 -g1,957:15550876,32135647 -g1,957:17130293,32135647 -g1,957:18321082,32135647 -g1,957:19806127,32135647 -g1,957:22931539,32135647 -g1,957:24524719,32135647 -(1,957:24524719,32135647:0,452978,115847 -r1,1013:25586408,32135647:1061689,568825,115847 -k1,957:24524719,32135647:-1061689 -) -(1,957:24524719,32135647:1061689,452978,115847 -k1,957:24524719,32135647:3277 -h1,957:25583131,32135647:0,411205,112570 -) -k1,958:32583029,32135647:6822951 -g1,958:32583029,32135647 -) -(1,960:6630773,32977135:25952256,513147,115847 -h1,959:6630773,32977135:983040,0,0 -k1,959:9107378,32977135:222167 -k1,959:10433826,32977135:222166 -k1,959:11748478,32977135:222167 -k1,959:14666140,32977135:222166 -(1,959:14666140,32977135:0,452978,115847 -r1,1013:15727829,32977135:1061689,568825,115847 -k1,959:14666140,32977135:-1061689 -) -(1,959:14666140,32977135:1061689,452978,115847 -k1,959:14666140,32977135:3277 -h1,959:15724552,32977135:0,411205,112570 -) -k1,959:15949996,32977135:222167 -k1,959:20584046,32977135:222166 -k1,959:21457641,32977135:222167 -k1,959:23609187,32977135:222166 -k1,959:24187214,32977135:222167 -k1,959:26387257,32977135:222166 -k1,959:28177045,32977135:222167 -k1,959:30101181,32977135:222166 -k1,959:32583029,32977135:0 -) -(1,960:6630773,33818623:25952256,513147,134348 -k1,959:9900566,33818623:289216 -k1,959:12497959,33818623:289215 -k1,959:13446467,33818623:289216 -k1,959:15748948,33818623:289215 -k1,959:16610293,33818623:289216 -k1,959:17582393,33818623:289215 -k1,959:19338305,33818623:289216 -k1,959:21935699,33818623:289216 -k1,959:22884206,33818623:289215 -k1,959:25186688,33818623:289216 -k1,959:26048032,33818623:289215 -k1,959:27830814,33818623:289216 -k1,959:28806192,33818623:289216 -k1,959:30114492,33818623:289215 -(1,959:30114492,33818623:0,452978,115847 -r1,1013:32583029,33818623:2468537,568825,115847 -k1,959:30114492,33818623:-2468537 -) -(1,959:30114492,33818623:2468537,452978,115847 -k1,959:30114492,33818623:3277 -h1,959:32579752,33818623:0,411205,112570 -) -k1,959:32583029,33818623:0 -) -(1,960:6630773,34660111:25952256,513147,126483 -k1,959:9906619,34660111:187790 -k1,959:10710448,34660111:187791 -k1,959:11917323,34660111:187790 -k1,959:15621775,34660111:187790 -k1,959:17851668,34660111:187791 -k1,959:19236145,34660111:187790 -k1,959:20730069,34660111:187791 -k1,959:23579276,34660111:187790 -k1,959:25758050,34660111:187790 -k1,959:26716544,34660111:187791 -k1,959:30605152,34660111:187790 -k1,959:32583029,34660111:0 -) -(1,960:6630773,35501599:25952256,505283,126483 -g1,959:9353793,35501599 -g1,959:12076813,35501599 -g1,959:13467487,35501599 -g1,959:15100644,35501599 -g1,959:19616730,35501599 -k1,960:32583029,35501599:9673770 -g1,960:32583029,35501599 -) -v1,962:6630773,36518178:0,393216,0 -(1,969:6630773,37467995:25952256,1343033,196608 -g1,969:6630773,37467995 -g1,969:6630773,37467995 -g1,969:6434165,37467995 -(1,969:6434165,37467995:0,1343033,196608 -r1,1013:32779637,37467995:26345472,1539641,196608 -k1,969:6434165,37467995:-26345472 -) -(1,969:6434165,37467995:26345472,1343033,196608 -[1,969:6630773,37467995:25952256,1146425,0 -(1,964:6630773,36725796:25952256,404226,82312 -(1,963:6630773,36725796:0,0,0 -g1,963:6630773,36725796 -g1,963:6630773,36725796 -g1,963:6303093,36725796 -(1,963:6303093,36725796:0,0,0 -) -g1,963:6630773,36725796 -) -k1,964:6630773,36725796:0 -g1,964:8211503,36725796 -g1,964:9159941,36725796 -h1,964:9792233,36725796:0,0,0 -k1,964:32583029,36725796:22790796 -g1,964:32583029,36725796 -) -(1,968:6630773,37391974:25952256,404226,76021 -(1,966:6630773,37391974:0,0,0 -g1,966:6630773,37391974 -g1,966:6630773,37391974 -g1,966:6303093,37391974 -(1,966:6303093,37391974:0,0,0 -) -g1,966:6630773,37391974 -) -g1,968:7579210,37391974 -g1,968:8843793,37391974 -g1,968:9476085,37391974 -g1,968:10108377,37391974 -h1,968:10424523,37391974:0,0,0 -k1,968:32583029,37391974:22158506 -g1,968:32583029,37391974 -) -] -) -g1,969:32583029,37467995 -g1,969:6630773,37467995 -g1,969:6630773,37467995 -g1,969:32583029,37467995 -g1,969:32583029,37467995 -) -h1,969:6630773,37664603:0,0,0 -(1,973:6630773,38856493:25952256,505283,134348 -h1,972:6630773,38856493:983040,0,0 -k1,972:8610142,38856493:167299 -k1,972:9525207,38856493:167299 -k1,972:11001260,38856493:167299 -k1,972:11819987,38856493:167299 -k1,972:13715469,38856493:167298 -k1,972:14901853,38856493:167299 -k1,972:17220699,38856493:167299 -k1,972:18256350,38856493:167299 -k1,972:20430361,38856493:167299 -k1,972:21055757,38856493:167299 -k1,972:21874484,38856493:167299 -k1,972:22397643,38856493:167299 -k1,972:25249952,38856493:167299 -k1,972:27340076,38856493:167298 -k1,972:27863235,38856493:167299 -k1,972:29768549,38856493:167299 -k1,972:30587276,38856493:167299 -k1,972:31386342,38856493:167299 -k1,972:32583029,38856493:0 -) -(1,973:6630773,39697981:25952256,513147,134348 -k1,972:8872089,39697981:228050 -k1,972:9759432,39697981:228051 -k1,972:10343342,39697981:228050 -k1,972:12549270,39697981:228051 -k1,972:13881602,39697981:228050 -k1,972:14857419,39697981:228051 -k1,972:17509646,39697981:228050 -k1,972:19131648,39697981:228051 -k1,972:22055194,39697981:228050 -(1,972:22055194,39697981:0,452978,122846 -r1,1013:24875443,39697981:2820249,575824,122846 -k1,972:22055194,39697981:-2820249 -) -(1,972:22055194,39697981:2820249,452978,122846 -k1,972:22055194,39697981:3277 -h1,972:24872166,39697981:0,411205,112570 -) -k1,972:25277164,39697981:228051 -k1,972:26458763,39697981:228050 -k1,972:28347496,39697981:228051 -k1,972:30443977,39697981:228050 -k1,972:31086842,39697981:228022 -k1,972:32583029,39697981:0 -) -(1,973:6630773,40539469:25952256,513147,134348 -g1,972:9583169,40539469 -g1,972:10543926,40539469 -g1,972:11099015,40539469 -g1,972:13914441,40539469 -g1,972:17084417,40539469 -g1,972:18302731,40539469 -g1,972:20479837,40539469 -k1,973:32583029,40539469:9579401 -g1,973:32583029,40539469 -) -v1,975:6630773,41556048:0,393216,0 -(1,989:6630773,45159759:25952256,3996927,196608 -g1,989:6630773,45159759 -g1,989:6630773,45159759 -g1,989:6434165,45159759 -(1,989:6434165,45159759:0,3996927,196608 -r1,1013:32779637,45159759:26345472,4193535,196608 -k1,989:6434165,45159759:-26345472 -) -(1,989:6434165,45159759:26345472,3996927,196608 -[1,989:6630773,45159759:25952256,3800319,0 -(1,977:6630773,41763666:25952256,404226,82312 -(1,976:6630773,41763666:0,0,0 -g1,976:6630773,41763666 -g1,976:6630773,41763666 -g1,976:6303093,41763666 -(1,976:6303093,41763666:0,0,0 -) -g1,976:6630773,41763666 -) -g1,977:8211502,41763666 -g1,977:9159940,41763666 -g1,977:10740670,41763666 -g1,977:11689108,41763666 -h1,977:12321400,41763666:0,0,0 -k1,977:32583028,41763666:20261628 -g1,977:32583028,41763666 -) -(1,978:6630773,42429844:25952256,404226,107478 -h1,978:6630773,42429844:0,0,0 -k1,978:6630773,42429844:0 -h1,978:10424521,42429844:0,0,0 -k1,978:32583029,42429844:22158508 -g1,978:32583029,42429844 -) -(1,982:6630773,43096022:25952256,404226,76021 -(1,980:6630773,43096022:0,0,0 -g1,980:6630773,43096022 -g1,980:6630773,43096022 -g1,980:6303093,43096022 -(1,980:6303093,43096022:0,0,0 -) -g1,980:6630773,43096022 -) -g1,982:7579210,43096022 -g1,982:8843793,43096022 -h1,982:9159939,43096022:0,0,0 -k1,982:32583029,43096022:23423090 -g1,982:32583029,43096022 -) -(1,984:6630773,44417560:25952256,379060,6290 -(1,983:6630773,44417560:0,0,0 -g1,983:6630773,44417560 -g1,983:6630773,44417560 -g1,983:6303093,44417560 -(1,983:6303093,44417560:0,0,0 -) -g1,983:6630773,44417560 -) -h1,984:7895356,44417560:0,0,0 -k1,984:32583028,44417560:24687672 -g1,984:32583028,44417560 -) -(1,988:6630773,45083738:25952256,404226,76021 -(1,986:6630773,45083738:0,0,0 -g1,986:6630773,45083738 -g1,986:6630773,45083738 -g1,986:6303093,45083738 -(1,986:6303093,45083738:0,0,0 -) -g1,986:6630773,45083738 -) -g1,988:7579210,45083738 -g1,988:8843793,45083738 -g1,988:9476085,45083738 -g1,988:10108377,45083738 -h1,988:10424523,45083738:0,0,0 -k1,988:32583029,45083738:22158506 -g1,988:32583029,45083738 -) -] -) -g1,989:32583029,45159759 -g1,989:6630773,45159759 -g1,989:6630773,45159759 -g1,989:32583029,45159759 -g1,989:32583029,45159759 -) -h1,989:6630773,45356367:0,0,0 -] -(1,1013:32583029,45706769:0,0,0 -g1,1013:32583029,45706769 +(1,1055:11764898,12428144:1976140,363038,93333 +k1,1055:11764898,12428144:3277 +h1,1055:13737761,12428144:0,328964,90056 ) +g1,1055:13906713,12428144 +) +g1,1055:15503170,12428144 +) +) +g1,1055:11764898,12428144 +g1,1055:11764898,12428144 +) +) +g1,1055:11764898,12428144 +g1,1057:11764898,12428144 +g1,1057:11764898,12428144 +) +g1,1057:11764898,12428144 +) +) +g1,1057:21230142,13786135 +k1,1060:32583029,13786135:11352887 +g1,1060:32583029,13786135 +) +v1,1062:6630773,14470990:0,393216,0 +(1,1070:6630773,16279425:25952256,2201651,196608 +g1,1070:6630773,16279425 +g1,1070:6630773,16279425 +g1,1070:6434165,16279425 +(1,1070:6434165,16279425:0,2201651,196608 +r1,1186:32779637,16279425:26345472,2398259,196608 +k1,1070:6434165,16279425:-26345472 +) +(1,1070:6434165,16279425:26345472,2201651,196608 +[1,1070:6630773,16279425:25952256,2005043,0 +(1,1064:6630773,14698821:25952256,424439,86428 +(1,1063:6630773,14698821:0,0,0 +g1,1063:6630773,14698821 +g1,1063:6630773,14698821 +g1,1063:6303093,14698821 +(1,1063:6303093,14698821:0,0,0 +) +g1,1063:6630773,14698821 +) +g1,1064:8290543,14698821 +g1,1064:9286405,14698821 +g1,1064:11942037,14698821 +h1,1064:13601807,14698821:0,0,0 +k1,1064:32583029,14698821:18981222 +g1,1064:32583029,14698821 +) +(1,1065:6630773,15383676:25952256,407923,9908 +h1,1065:6630773,15383676:0,0,0 +h1,1065:7958589,15383676:0,0,0 +k1,1065:32583029,15383676:24624440 +g1,1065:32583029,15383676 +) +(1,1069:6630773,16199603:25952256,424439,79822 +(1,1067:6630773,16199603:0,0,0 +g1,1067:6630773,16199603 +g1,1067:6630773,16199603 +g1,1067:6303093,16199603 +(1,1067:6303093,16199603:0,0,0 +) +g1,1067:6630773,16199603 +) +g1,1069:7626635,16199603 +g1,1069:8954451,16199603 +g1,1069:9618359,16199603 +g1,1069:10282267,16199603 +g1,1069:10946175,16199603 +g1,1069:11610083,16199603 +g1,1069:12273991,16199603 +h1,1069:12605945,16199603:0,0,0 +k1,1069:32583029,16199603:19977084 +g1,1069:32583029,16199603 +) +] +) +g1,1070:32583029,16279425 +g1,1070:6630773,16279425 +g1,1070:6630773,16279425 +g1,1070:32583029,16279425 +g1,1070:32583029,16279425 +) +h1,1070:6630773,16476033:0,0,0 +(1,1096:6630773,19266987:25952256,2725418,0 +g1,1075:6790157,19266987 +(1,1093:6790157,19266987:18196423,2725418,0 +g1,1093:13722809,19266987 +(1,1093:13722809,17904278:0,0,0 +(1,1087:13722809,17904278:0,0,0 +g1,1085:13722809,17904278 +g1,1086:13722809,17904278 +g1,1086:13722809,17904278 +g1,1086:13722809,17904278 +g1,1086:13722809,17904278 +g1,1087:13722809,17904278 +) +(1,1093:13722809,17904278:0,0,0 +g1,1078:13722809,17904278 +(1,1082:13722809,17904278:0,0,0 +(1,1082:13722809,17904278:0,0,0 +g1,1082:13722809,17904278 +g1,1082:13722809,17904278 +g1,1082:13722809,17904278 +g1,1082:13722809,17904278 +g1,1082:13722809,17904278 +(1,1082:13722809,17904278:0,0,0 +(1,1082:13722809,17904278:7857858,1894999,480932 +[1,1082:13722809,17904278:7857858,1894999,480932 +(1,1082:13722809,16669696:7857858,660417,281357 +g1,1081:13722809,16669696 +(1,1081:13722809,16669696:665744,660417,281357 +k1,1081:13922384,16669696:199575 +g1,1081:14388553,16669696 +(1,1081:14388553,16669696:0,660417,271921 +(1,1081:14388553,16669696:0,0,0 +(1,1081:14388553,16669696:0,0,0 +g1,1081:14388553,16669696 +g1,1081:14388553,16669696 +g1,1081:14388553,16669696 +g1,1081:14388553,16669696 +g1,1081:14388553,16669696 +(1,1081:14388553,16669696:0,0,0 +(1,1081:14388553,16669696:331874,388497,0 +(1,1081:14388553,16669696:331874,388497,0 +) +g1,1081:14720427,16669696 +) +) +g1,1081:14388553,16669696 +g1,1081:14388553,16669696 +) +) +g1,1081:14388553,16669696 +) +) +g1,1081:14388553,16669696 +(1,1081:14388553,16669696:665744,660417,281357 +g1,1081:14854722,16669696 +k1,1081:15054297,16669696:199575 +) +g1,1081:15054297,16669696 +(1,1081:15054297,16669696:639530,660417,281357 +k1,1081:15253872,16669696:199575 +g1,1081:15693827,16669696 +(1,1081:15693827,16669696:0,660417,271921 +(1,1081:15693827,16669696:0,0,0 +(1,1081:15693827,16669696:0,0,0 +g1,1081:15693827,16669696 +g1,1081:15693827,16669696 +g1,1081:15693827,16669696 +g1,1081:15693827,16669696 +g1,1081:15693827,16669696 +(1,1081:15693827,16669696:0,0,0 +(1,1081:15693827,16669696:331874,388497,0 +(1,1081:15693827,16669696:331874,388497,0 +) +g1,1081:16025701,16669696 +) +) +g1,1081:15693827,16669696 +g1,1081:15693827,16669696 +) +) +g1,1081:15693827,16669696 +) +) +g1,1081:15693827,16669696 +(1,1081:15693827,16669696:665744,660417,281357 +g1,1081:16159996,16669696 +k1,1081:16359571,16669696:199575 +) +g1,1081:16359571,16669696 +(1,1081:16359571,16669696:639530,660417,281357 +k1,1081:16559146,16669696:199575 +g1,1081:16999101,16669696 +(1,1081:16999101,16669696:0,655699,276639 +(1,1081:16999101,16669696:0,0,0 +(1,1081:16999101,16669696:0,0,0 +g1,1081:16999101,16669696 +g1,1081:16999101,16669696 +g1,1081:16999101,16669696 +g1,1081:16999101,16669696 +g1,1081:16999101,16669696 +(1,1081:16999101,16669696:0,0,0 +(1,1081:16999101,16669696:331874,388497,9436 +(1,1081:16999101,16669696:331874,388497,9436 +) +g1,1081:17330975,16669696 +) +) +g1,1081:16999101,16669696 +g1,1081:16999101,16669696 +) +) +g1,1081:16999101,16669696 +) +) +g1,1081:16999101,16669696 +(1,1081:16999101,16669696:665744,660417,281357 +g1,1081:17465270,16669696 +k1,1081:17664845,16669696:199575 +) +g1,1081:17664845,16669696 +(1,1081:17664845,16669696:639530,660417,281357 +k1,1081:17864420,16669696:199575 +g1,1081:18304375,16669696 +(1,1081:18304375,16669696:0,655699,276639 +(1,1081:18304375,16669696:0,0,0 +(1,1081:18304375,16669696:0,0,0 +g1,1081:18304375,16669696 +g1,1081:18304375,16669696 +g1,1081:18304375,16669696 +g1,1081:18304375,16669696 +g1,1081:18304375,16669696 +(1,1081:18304375,16669696:0,0,0 +(1,1081:18304375,16669696:331874,379060,0 +(1,1081:18304375,16669696:331874,379060,0 ) -] -(1,1013:6630773,47279633:25952256,0,0 -h1,1013:6630773,47279633:25952256,0,0 +g1,1081:18636249,16669696 ) -] -(1,1013:4262630,4025873:0,0,0 -[1,1013:-473656,4025873:0,0,0 -(1,1013:-473656,-710413:0,0,0 -(1,1013:-473656,-710413:0,0,0 -g1,1013:-473656,-710413 ) -g1,1013:-473656,-710413 +g1,1081:18304375,16669696 +g1,1081:18304375,16669696 ) -] ) -] -!41786 -}43 -Input:293:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:294:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:295:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:296:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:297:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:298:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:299:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:300:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:301:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:302:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:303:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:304:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:305:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:306:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:307:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1406 -{44 -[1,1152:4262630,47279633:28320399,43253760,0 -(1,1152:4262630,4025873:0,0,0 -[1,1152:-473656,4025873:0,0,0 -(1,1152:-473656,-710413:0,0,0 -(1,1152:-473656,-644877:0,0,0 -k1,1152:-473656,-644877:-65536 -) -(1,1152:-473656,4736287:0,0,0 -k1,1152:-473656,4736287:5209943 +g1,1081:18304375,16669696 ) -g1,1152:-473656,-710413 ) -] -) -[1,1152:6630773,47279633:25952256,43253760,0 -[1,1152:6630773,4812305:25952256,786432,0 -(1,1152:6630773,4812305:25952256,505283,11795 -(1,1152:6630773,4812305:25952256,505283,11795 -g1,1152:3078558,4812305 -[1,1152:3078558,4812305:0,0,0 -(1,1152:3078558,2439708:0,1703936,0 -k1,1152:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,1152:2537886,2439708:1179648,16384,0 -) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,1152:3078558,1915420:16384,1179648,0 -) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 -) -] +g1,1081:18304375,16669696 +(1,1081:18304375,16669696:665744,660417,281357 +g1,1081:18770544,16669696 +k1,1081:18970119,16669696:199575 ) +g1,1081:18970119,16669696 +(1,1081:18970119,16669696:639530,660417,281357 +k1,1081:19169694,16669696:199575 +g1,1081:19609649,16669696 +(1,1081:19609649,16669696:0,650981,281357 +(1,1081:19609649,16669696:0,0,0 +(1,1081:19609649,16669696:0,0,0 +g1,1081:19609649,16669696 +g1,1081:19609649,16669696 +g1,1081:19609649,16669696 +g1,1081:19609649,16669696 +g1,1081:19609649,16669696 +(1,1081:19609649,16669696:0,0,0 +(1,1081:19609649,16669696:331874,379060,9436 +(1,1081:19609649,16669696:331874,379060,9436 ) +g1,1081:19941523,16669696 ) -] -[1,1152:3078558,4812305:0,0,0 -(1,1152:3078558,2439708:0,1703936,0 -g1,1152:29030814,2439708 -g1,1152:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,1152:36151628,1915420:16384,1179648,0 -) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 ) -] +g1,1081:19609649,16669696 +g1,1081:19609649,16669696 ) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,1152:37855564,2439708:1179648,16384,0 ) +g1,1081:19609649,16669696 ) -k1,1152:3078556,2439708:-34777008 ) -] -[1,1152:3078558,4812305:0,0,0 -(1,1152:3078558,49800853:0,16384,2228224 -k1,1152:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,1152:2537886,49800853:1179648,16384,0 +g1,1081:19609649,16669696 +(1,1081:19609649,16669696:665744,660417,281357 +g1,1081:20075818,16669696 +k1,1081:20275393,16669696:199575 ) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,1152:3078558,51504789:16384,1179648,0 +g1,1081:20275393,16669696 +(1,1081:20275393,16669696:639530,660417,281357 +k1,1081:20474968,16669696:199575 +g1,1081:20914923,16669696 +(1,1081:20914923,16669696:0,655699,276639 +(1,1081:20914923,16669696:0,0,0 +(1,1081:20914923,16669696:0,0,0 +g1,1081:20914923,16669696 +g1,1081:20914923,16669696 +g1,1081:20914923,16669696 +g1,1081:20914923,16669696 +g1,1081:20914923,16669696 +(1,1081:20914923,16669696:0,0,0 +(1,1081:20914923,16669696:331874,388497,9436 +(1,1081:20914923,16669696:331874,388497,9436 ) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 +g1,1081:21246797,16669696 ) -] ) +g1,1081:20914923,16669696 +g1,1081:20914923,16669696 ) ) -] -[1,1152:3078558,4812305:0,0,0 -(1,1152:3078558,49800853:0,16384,2228224 -g1,1152:29030814,49800853 -g1,1152:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,1152:36151628,51504789:16384,1179648,0 +g1,1081:20914923,16669696 ) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 ) -] +g1,1081:20914923,16669696 +(1,1082:20914923,16669696:665744,660417,281357 +g1,1082:21381092,16669696 +k1,1082:21580667,16669696:199575 ) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,1152:37855564,49800853:1179648,16384,0 +g1,1082:21580667,16669696 ) +(1,1082:13722809,17904278:7857858,859992,480932 +g1,1082:13722809,17904278 +(1,1082:13722809,17904278:665744,859992,480932 +g1,1082:13722809,17904278 +g1,1082:14388553,17904278 +(1,1082:14388553,17904278:0,855274,476214 +(1,1082:14388553,17904278:0,0,0 +(1,1082:14388553,17904278:0,0,0 +g1,1082:14388553,17904278 +g1,1082:14388553,17904278 +g1,1082:14388553,17904278 +g1,1082:14388553,17904278 +g1,1082:14388553,17904278 +(1,1082:14388553,17904278:0,0,0 +(1,1082:14388553,17904278:331874,388497,9436 +(1,1082:14388553,17904278:331874,388497,9436 ) -k1,1152:3078556,49800853:-34777008 +g1,1082:14720427,17904278 ) -] -g1,1152:6630773,4812305 -g1,1152:6630773,4812305 -g1,1152:9516978,4812305 -g1,1152:11710468,4812305 -g1,1152:13120147,4812305 -g1,1152:16560787,4812305 -k1,1152:31786111,4812305:15225324 ) +g1,1082:14388553,17904278 +g1,1082:14388553,17904278 ) -] -[1,1152:6630773,45706769:25952256,40108032,0 -(1,1152:6630773,45706769:25952256,40108032,0 -(1,1152:6630773,45706769:0,0,0 -g1,1152:6630773,45706769 ) -[1,1152:6630773,45706769:25952256,40108032,0 -(1,1013:6630773,8314719:25952256,2715982,0 -k1,1013:12466601,8314719:5835828 -(1,992:12466601,8314719:0,0,0 -g1,992:12466601,8314719 -g1,992:12466601,8314719 -g1,992:12138921,8314719 -(1,992:12138921,8314719:0,0,0 +g1,1082:14388553,17904278 ) -g1,992:12466601,8314719 ) -(1,1011:12466601,8314719:14280601,2715982,0 -g1,1011:17441342,8314719 -(1,1011:17441342,6956728:0,0,0 -(1,1005:17441342,6956728:0,0,0 -g1,1003:17441342,6956728 -g1,1004:17441342,6956728 -g1,1004:17441342,6956728 -g1,1004:17441342,6956728 -g1,1004:17441342,6956728 -g1,1005:17441342,6956728 +g1,1082:14388553,17904278 +(1,1082:14388553,17904278:665744,859992,480932 +g1,1082:15054297,17904278 +g1,1082:15054297,17904278 ) -(1,1011:17441342,6956728:0,0,0 -g1,996:17441342,6956728 -(1,1000:17441342,6956728:0,0,0 -(1,1000:17441342,6956728:0,0,0 -g1,1000:17441342,6956728 -g1,1000:17441342,6956728 -g1,1000:17441342,6956728 -g1,1000:17441342,6956728 -g1,1000:17441342,6956728 -(1,1000:17441342,6956728:0,0,0 -(1,1000:17441342,6956728:3942036,1890281,476214 -[1,1000:17441342,6956728:3942036,1890281,476214 -(1,1000:17441342,5726864:3942036,660417,276639 -g1,999:17441342,5726864 -(1,999:17441342,5726864:665744,660417,276639 -k1,999:17640917,5726864:199575 -g1,999:18107086,5726864 -(1,999:18107086,5726864:0,660417,271921 -(1,999:18107086,5726864:0,0,0 -(1,999:18107086,5726864:0,0,0 -g1,999:18107086,5726864 -g1,999:18107086,5726864 -g1,999:18107086,5726864 -g1,999:18107086,5726864 -g1,999:18107086,5726864 -(1,999:18107086,5726864:0,0,0 -(1,999:18107086,5726864:331874,388497,0 -(1,999:18107086,5726864:331874,388497,0 +g1,1082:15054297,17904278 +(1,1082:15054297,17904278:639530,859992,480932 +g1,1082:15054297,17904278 +g1,1082:15693827,17904278 +(1,1082:15693827,17904278:0,859992,471496 +(1,1082:15693827,17904278:0,0,0 +(1,1082:15693827,17904278:0,0,0 +g1,1082:15693827,17904278 +g1,1082:15693827,17904278 +g1,1082:15693827,17904278 +g1,1082:15693827,17904278 +g1,1082:15693827,17904278 +(1,1082:15693827,17904278:0,0,0 +(1,1082:15693827,17904278:331874,388497,0 +(1,1082:15693827,17904278:331874,388497,0 ) -g1,999:18438960,5726864 +g1,1082:16025701,17904278 ) ) -g1,999:18107086,5726864 -g1,999:18107086,5726864 +g1,1082:15693827,17904278 +g1,1082:15693827,17904278 ) ) -g1,999:18107086,5726864 -) -) -g1,999:18107086,5726864 -(1,999:18107086,5726864:665744,660417,276639 -g1,999:18573255,5726864 -k1,999:18772830,5726864:199575 -) -g1,999:18772830,5726864 -(1,999:18772830,5726864:639530,660417,276639 -k1,999:18972405,5726864:199575 -g1,999:19412360,5726864 -(1,999:19412360,5726864:0,660417,271921 -(1,999:19412360,5726864:0,0,0 -(1,999:19412360,5726864:0,0,0 -g1,999:19412360,5726864 -g1,999:19412360,5726864 -g1,999:19412360,5726864 -g1,999:19412360,5726864 -g1,999:19412360,5726864 -(1,999:19412360,5726864:0,0,0 -(1,999:19412360,5726864:331874,388497,0 -(1,999:19412360,5726864:331874,388497,0 -) -g1,999:19744234,5726864 -) -) -g1,999:19412360,5726864 -g1,999:19412360,5726864 -) -) -g1,999:19412360,5726864 -) -) -g1,999:19412360,5726864 -(1,999:19412360,5726864:665744,660417,276639 -g1,999:19878529,5726864 -k1,999:20078104,5726864:199575 -) -g1,999:20078104,5726864 -(1,999:20078104,5726864:639530,660417,276639 -k1,999:20277679,5726864:199575 -g1,999:20717634,5726864 -(1,999:20717634,5726864:0,655699,276639 -(1,999:20717634,5726864:0,0,0 -(1,999:20717634,5726864:0,0,0 -g1,999:20717634,5726864 -g1,999:20717634,5726864 -g1,999:20717634,5726864 -g1,999:20717634,5726864 -g1,999:20717634,5726864 -(1,999:20717634,5726864:0,0,0 -(1,999:20717634,5726864:331874,388497,9436 -(1,999:20717634,5726864:331874,388497,9436 -) -g1,999:21049508,5726864 -) -) -g1,999:20717634,5726864 -g1,999:20717634,5726864 -) -) -g1,999:20717634,5726864 -) -) -g1,999:20717634,5726864 -(1,1000:20717634,5726864:665744,660417,276639 -g1,1000:21183803,5726864 -k1,1000:21383378,5726864:199575 +g1,1082:15693827,17904278 ) -g1,1000:21383378,5726864 ) -(1,1000:17441342,6956728:3942036,859992,476214 -g1,1000:17441342,6956728 -(1,1000:17441342,6956728:665744,859992,476214 -g1,1000:17441342,6956728 -g1,1000:18107086,6956728 -(1,1000:18107086,6956728:0,855274,476214 -(1,1000:18107086,6956728:0,0,0 -(1,1000:18107086,6956728:0,0,0 -g1,1000:18107086,6956728 -g1,1000:18107086,6956728 -g1,1000:18107086,6956728 -g1,1000:18107086,6956728 -g1,1000:18107086,6956728 -(1,1000:18107086,6956728:0,0,0 -(1,1000:18107086,6956728:331874,388497,9436 -(1,1000:18107086,6956728:331874,388497,9436 +g1,1082:15693827,17904278 +(1,1082:15693827,17904278:665744,859992,480932 +g1,1082:16359571,17904278 +g1,1082:16359571,17904278 ) -g1,1000:18438960,6956728 +g1,1082:16359571,17904278 +(1,1082:16359571,17904278:639530,859992,480932 +g1,1082:16359571,17904278 +g1,1082:16999101,17904278 +(1,1082:16999101,17904278:0,859992,471496 +(1,1082:16999101,17904278:0,0,0 +(1,1082:16999101,17904278:0,0,0 +g1,1082:16999101,17904278 +g1,1082:16999101,17904278 +g1,1082:16999101,17904278 +g1,1082:16999101,17904278 +g1,1082:16999101,17904278 +(1,1082:16999101,17904278:0,0,0 +(1,1082:16999101,17904278:331874,388497,0 +(1,1082:16999101,17904278:331874,388497,0 ) +g1,1082:17330975,17904278 ) -g1,1000:18107086,6956728 -g1,1000:18107086,6956728 ) +g1,1082:16999101,17904278 +g1,1082:16999101,17904278 ) -g1,1000:18107086,6956728 ) +g1,1082:16999101,17904278 ) -g1,1000:18107086,6956728 -(1,1000:18107086,6956728:665744,859992,476214 -g1,1000:18772830,6956728 -g1,1000:18772830,6956728 ) -g1,1000:18772830,6956728 -(1,1000:18772830,6956728:639530,859992,476214 -g1,1000:18772830,6956728 -g1,1000:19412360,6956728 -(1,1000:19412360,6956728:0,859992,471496 -(1,1000:19412360,6956728:0,0,0 -(1,1000:19412360,6956728:0,0,0 -g1,1000:19412360,6956728 -g1,1000:19412360,6956728 -g1,1000:19412360,6956728 -g1,1000:19412360,6956728 -g1,1000:19412360,6956728 -(1,1000:19412360,6956728:0,0,0 -(1,1000:19412360,6956728:331874,388497,0 -(1,1000:19412360,6956728:331874,388497,0 +g1,1082:16999101,17904278 +(1,1082:16999101,17904278:665744,859992,480932 +g1,1082:17664845,17904278 +g1,1082:17664845,17904278 ) -g1,1000:19744234,6956728 +g1,1082:17664845,17904278 +(1,1082:17664845,17904278:639530,859992,480932 +g1,1082:17664845,17904278 +g1,1082:18304375,17904278 +(1,1082:18304375,17904278:0,855274,476214 +(1,1082:18304375,17904278:0,0,0 +(1,1082:18304375,17904278:0,0,0 +g1,1082:18304375,17904278 +g1,1082:18304375,17904278 +g1,1082:18304375,17904278 +g1,1082:18304375,17904278 +g1,1082:18304375,17904278 +(1,1082:18304375,17904278:0,0,0 +(1,1082:18304375,17904278:331874,379060,0 +(1,1082:18304375,17904278:331874,379060,0 ) +g1,1082:18636249,17904278 ) -g1,1000:19412360,6956728 -g1,1000:19412360,6956728 ) +g1,1082:18304375,17904278 +g1,1082:18304375,17904278 ) -g1,1000:19412360,6956728 ) +g1,1082:18304375,17904278 ) -g1,1000:19412360,6956728 -(1,1000:19412360,6956728:665744,859992,476214 -g1,1000:20078104,6956728 -g1,1000:20078104,6956728 ) -g1,1000:20078104,6956728 -(1,1000:20078104,6956728:639530,859992,476214 -g1,1000:20078104,6956728 -g1,1000:20717634,6956728 -(1,1000:20717634,6956728:0,859992,471496 -(1,1000:20717634,6956728:0,0,0 -(1,1000:20717634,6956728:0,0,0 -g1,1000:20717634,6956728 -g1,1000:20717634,6956728 -g1,1000:20717634,6956728 -g1,1000:20717634,6956728 -g1,1000:20717634,6956728 -(1,1000:20717634,6956728:0,0,0 -(1,1000:20717634,6956728:331874,388497,0 -(1,1000:20717634,6956728:331874,388497,0 +g1,1082:18304375,17904278 +(1,1082:18304375,17904278:665744,859992,480932 +g1,1082:18970119,17904278 +g1,1082:18970119,17904278 ) -g1,1000:21049508,6956728 +g1,1082:18970119,17904278 +(1,1082:18970119,17904278:639530,859992,480932 +g1,1082:18970119,17904278 +g1,1082:19609649,17904278 +(1,1082:19609649,17904278:0,850556,480932 +(1,1082:19609649,17904278:0,0,0 +(1,1082:19609649,17904278:0,0,0 +g1,1082:19609649,17904278 +g1,1082:19609649,17904278 +g1,1082:19609649,17904278 +g1,1082:19609649,17904278 +g1,1082:19609649,17904278 +(1,1082:19609649,17904278:0,0,0 +(1,1082:19609649,17904278:331874,379060,9436 +(1,1082:19609649,17904278:331874,379060,9436 ) +g1,1082:19941523,17904278 ) -g1,1000:20717634,6956728 -g1,1000:20717634,6956728 ) +g1,1082:19609649,17904278 +g1,1082:19609649,17904278 ) -g1,1000:20717634,6956728 ) +g1,1082:19609649,17904278 ) -g1,1000:20717634,6956728 -(1,1000:20717634,6956728:665744,859992,476214 -g1,1000:21383378,6956728 -g1,1000:21383378,6956728 ) -g1,1000:21383378,6956728 +g1,1082:19609649,17904278 +(1,1082:19609649,17904278:665744,859992,480932 +g1,1082:20275393,17904278 +g1,1082:20275393,17904278 ) -] +g1,1082:20275393,17904278 +(1,1082:20275393,17904278:639530,859992,480932 +g1,1082:20275393,17904278 +g1,1082:20914923,17904278 +(1,1082:20914923,17904278:0,855274,476214 +(1,1082:20914923,17904278:0,0,0 +(1,1082:20914923,17904278:0,0,0 +g1,1082:20914923,17904278 +g1,1082:20914923,17904278 +g1,1082:20914923,17904278 +g1,1082:20914923,17904278 +g1,1082:20914923,17904278 +(1,1082:20914923,17904278:0,0,0 +(1,1082:20914923,17904278:331874,388497,9436 +(1,1082:20914923,17904278:331874,388497,9436 ) +g1,1082:21246797,17904278 ) -g1,1000:17441342,6956728 -g1,1000:17441342,6956728 ) +g1,1082:20914923,17904278 +g1,1082:20914923,17904278 ) -g1,1000:17441342,6956728 -g1,1005:17441342,6956728 -g1,1005:17441342,6956728 -g1,1007:17441342,6956728 -(1,1007:17441342,6956728:0,0,0 -(1,1007:17441342,6956728:0,0,0 -g1,1007:17441342,6956728 -(1,1007:17441342,6956728:0,0,0 -(1,1007:17441342,6956728:1976140,466322,199855 -(1,1007:17441342,6956728:1976140,466322,199855 -r1,1152:17441342,6956728:0,666177,199855 -(1,1007:17441342,6956728:0,340640,93333 -r1,1152:19417482,6956728:1976140,433973,93333 -k1,1007:17441342,6956728:-1976140 ) -(1,1007:17441342,6956728:1976140,340640,93333 -g1,1007:17725988,6956728 -h1,1007:18851466,6956728:562739,252906,0 -h1,1007:19414205,6956728:0,328964,90056 +g1,1082:20914923,17904278 ) ) -g1,1007:19417482,6956728 +g1,1082:20914923,17904278 +(1,1082:20914923,17904278:665744,859992,480932 +g1,1082:21580667,17904278 +g1,1082:21580667,17904278 ) +g1,1082:21580667,17904278 ) -g1,1007:17441342,6956728 -g1,1007:17441342,6956728 +] ) ) -g1,1007:17441342,6956728 -g1,1008:17441342,6956728 -(1,1008:17441342,6956728:0,0,0 -(1,1008:17441342,6956728:0,0,0 -g1,1008:17441342,6956728 -g1,1008:17441342,6956728 -g1,1008:17441342,6956728 -g1,1008:17441342,6956728 -g1,1008:17441342,6956728 -(1,1008:17441342,6956728:0,0,0 -(1,1008:17441342,6956728:6599312,404226,101187 -(1,1008:17441342,6956728:6599312,404226,101187 -(1,1008:17441342,6956728:0,363038,98932 -r1,1152:19417482,6956728:1976140,461970,98932 -k1,1008:17441342,6956728:-1976140 +g1,1082:13722809,17904278 +g1,1082:13722809,17904278 ) -(1,1008:17441342,6956728:1976140,363038,98932 -k1,1008:17441342,6956728:3277 -h1,1008:19414205,6956728:0,328964,90056 ) -g1,1008:19583157,6956728 -g1,1008:22254929,6956728 +g1,1082:13722809,17904278 +g1,1087:13722809,17904278 +g1,1087:13722809,17904278 +g1,1089:13722809,17904278 +(1,1089:13722809,17904278:0,0,0 +(1,1089:13722809,17904278:0,0,0 +g1,1089:13722809,17904278 +(1,1089:13722809,17904278:0,0,0 +(1,1089:13722809,17904278:1976140,479396,205458 +(1,1089:13722809,17904278:1976140,479396,205458 +r1,1186:13722809,17904278:0,684854,205458 +(1,1089:13722809,17904278:0,349039,93333 +r1,1186:15698949,17904278:1976140,442372,93333 +k1,1089:13722809,17904278:-1976140 ) -g1,1008:24040654,6956728 +(1,1089:13722809,17904278:1976140,349039,93333 +g1,1089:14007455,17904278 +h1,1089:15132933,17904278:562739,252906,0 +h1,1089:15695672,17904278:0,328964,90056 ) ) -g1,1008:17441342,6956728 -g1,1008:17441342,6956728 +g1,1089:15698949,17904278 ) ) -g1,1008:17441342,6956728 -g1,1009:17441342,6956728 -(1,1009:17441342,6956728:0,0,0 -(1,1009:17441342,6956728:0,0,0 -g1,1009:17441342,6956728 -g1,1009:17441342,6956728 -g1,1009:17441342,6956728 -g1,1009:17441342,6956728 -g1,1009:17441342,6956728 -(1,1009:17441342,6956728:0,0,0 -(1,1009:17441342,6956728:3738272,404226,93333 -(1,1009:17441342,6956728:3738272,404226,93333 -(1,1009:17441342,6956728:0,363038,93333 -r1,1152:19417482,6956728:1976140,456371,93333 -k1,1009:17441342,6956728:-1976140 +g1,1089:13722809,17904278 +g1,1089:13722809,17904278 ) -(1,1009:17441342,6956728:1976140,363038,93333 -k1,1009:17441342,6956728:3277 -h1,1009:19414205,6956728:0,328964,90056 ) -g1,1009:19583157,6956728 +g1,1089:13722809,17904278 +g1,1090:13722809,17904278 +(1,1090:13722809,17904278:0,0,0 +(1,1090:13722809,17904278:0,0,0 +g1,1090:13722809,17904278 +g1,1090:13722809,17904278 +g1,1090:13722809,17904278 +g1,1090:13722809,17904278 +g1,1090:13722809,17904278 +(1,1090:13722809,17904278:0,0,0 +(1,1090:13722809,17904278:6599312,404226,101187 +(1,1090:13722809,17904278:6599312,404226,101187 +(1,1090:13722809,17904278:0,363038,98932 +r1,1186:15698949,17904278:1976140,461970,98932 +k1,1090:13722809,17904278:-1976140 ) -g1,1009:21179614,6956728 +(1,1090:13722809,17904278:1976140,363038,98932 +k1,1090:13722809,17904278:3277 +h1,1090:15695672,17904278:0,328964,90056 ) +g1,1090:15864624,17904278 +g1,1090:18536396,17904278 ) -g1,1009:17441342,6956728 -g1,1009:17441342,6956728 -) -) -g1,1009:17441342,6956728 -g1,1011:17441342,6956728 -g1,1011:17441342,6956728 -) -g1,1011:17441342,6956728 -) -) -g1,1013:26747202,8314719 -k1,1013:32583029,8314719:5835827 -) -v1,1016:6630773,9997364:0,393216,0 -(1,1024:6630773,11613359:25952256,2009211,196608 -g1,1024:6630773,11613359 -g1,1024:6630773,11613359 -g1,1024:6434165,11613359 -(1,1024:6434165,11613359:0,2009211,196608 -r1,1152:32779637,11613359:26345472,2205819,196608 -k1,1024:6434165,11613359:-26345472 -) -(1,1024:6434165,11613359:26345472,2009211,196608 -[1,1024:6630773,11613359:25952256,1812603,0 -(1,1018:6630773,10204982:25952256,404226,82312 -(1,1017:6630773,10204982:0,0,0 -g1,1017:6630773,10204982 -g1,1017:6630773,10204982 -g1,1017:6303093,10204982 -(1,1017:6303093,10204982:0,0,0 -) -g1,1017:6630773,10204982 -) -g1,1018:8211502,10204982 -g1,1018:9159940,10204982 -g1,1018:10740670,10204982 -g1,1018:11689108,10204982 -h1,1018:12321400,10204982:0,0,0 -k1,1018:32583028,10204982:20261628 -g1,1018:32583028,10204982 -) -(1,1019:6630773,10871160:25952256,379060,9436 -h1,1019:6630773,10871160:0,0,0 -h1,1019:7895356,10871160:0,0,0 -k1,1019:32583028,10871160:24687672 -g1,1019:32583028,10871160 -) -(1,1023:6630773,11537338:25952256,404226,76021 -(1,1021:6630773,11537338:0,0,0 -g1,1021:6630773,11537338 -g1,1021:6630773,11537338 -g1,1021:6303093,11537338 -(1,1021:6303093,11537338:0,0,0 -) -g1,1021:6630773,11537338 -) -g1,1023:7579210,11537338 -g1,1023:8843793,11537338 -g1,1023:9476085,11537338 -g1,1023:10108377,11537338 -h1,1023:10424523,11537338:0,0,0 -k1,1023:32583029,11537338:22158506 -g1,1023:32583029,11537338 -) -] -) -g1,1024:32583029,11613359 -g1,1024:6630773,11613359 -g1,1024:6630773,11613359 -g1,1024:32583029,11613359 -g1,1024:32583029,11613359 -) -h1,1024:6630773,11809967:0,0,0 -(1,1048:6630773,15607952:25952256,2715982,0 -k1,1048:12466601,15607952:5835828 -(1,1027:12466601,15607952:0,0,0 -g1,1027:12466601,15607952 -g1,1027:12466601,15607952 -g1,1027:12138921,15607952 -(1,1027:12138921,15607952:0,0,0 -) -g1,1027:12466601,15607952 -) -(1,1046:12466601,15607952:14280601,2715982,0 -g1,1046:17441342,15607952 -(1,1046:17441342,14249961:0,0,0 -(1,1040:17441342,14249961:0,0,0 -g1,1038:17441342,14249961 -g1,1039:17441342,14249961 -g1,1039:17441342,14249961 -g1,1039:17441342,14249961 -g1,1039:17441342,14249961 -g1,1040:17441342,14249961 -) -(1,1046:17441342,14249961:0,0,0 -g1,1031:17441342,14249961 -(1,1035:17441342,14249961:0,0,0 -(1,1035:17441342,14249961:0,0,0 -g1,1035:17441342,14249961 -g1,1035:17441342,14249961 -g1,1035:17441342,14249961 -g1,1035:17441342,14249961 -g1,1035:17441342,14249961 -(1,1035:17441342,14249961:0,0,0 -(1,1035:17441342,14249961:3942036,1885563,480932 -[1,1035:17441342,14249961:3942036,1885563,480932 -(1,1035:17441342,13024815:3942036,660417,276639 -g1,1034:17441342,13024815 -(1,1034:17441342,13024815:665744,660417,276639 -k1,1034:17640917,13024815:199575 -g1,1034:18107086,13024815 -(1,1034:18107086,13024815:0,660417,271921 -(1,1034:18107086,13024815:0,0,0 -(1,1034:18107086,13024815:0,0,0 -g1,1034:18107086,13024815 -g1,1034:18107086,13024815 -g1,1034:18107086,13024815 -g1,1034:18107086,13024815 -g1,1034:18107086,13024815 -(1,1034:18107086,13024815:0,0,0 -(1,1034:18107086,13024815:331874,388497,0 -(1,1034:18107086,13024815:331874,388497,0 -) -g1,1034:18438960,13024815 -) -) -g1,1034:18107086,13024815 -g1,1034:18107086,13024815 -) -) -g1,1034:18107086,13024815 -) -) -g1,1034:18107086,13024815 -(1,1034:18107086,13024815:665744,660417,276639 -g1,1034:18573255,13024815 -k1,1034:18772830,13024815:199575 -) -g1,1034:18772830,13024815 -(1,1034:18772830,13024815:639530,660417,276639 -k1,1034:18972405,13024815:199575 -g1,1034:19412360,13024815 -(1,1034:19412360,13024815:0,660417,271921 -(1,1034:19412360,13024815:0,0,0 -(1,1034:19412360,13024815:0,0,0 -g1,1034:19412360,13024815 -g1,1034:19412360,13024815 -g1,1034:19412360,13024815 -g1,1034:19412360,13024815 -g1,1034:19412360,13024815 -(1,1034:19412360,13024815:0,0,0 -(1,1034:19412360,13024815:331874,388497,0 -(1,1034:19412360,13024815:331874,388497,0 -) -g1,1034:19744234,13024815 -) -) -g1,1034:19412360,13024815 -g1,1034:19412360,13024815 -) -) -g1,1034:19412360,13024815 -) -) -g1,1034:19412360,13024815 -(1,1034:19412360,13024815:665744,660417,276639 -g1,1034:19878529,13024815 -k1,1034:20078104,13024815:199575 -) -g1,1034:20078104,13024815 -(1,1034:20078104,13024815:639530,660417,276639 -k1,1034:20277679,13024815:199575 -g1,1034:20717634,13024815 -(1,1034:20717634,13024815:0,655699,276639 -(1,1034:20717634,13024815:0,0,0 -(1,1034:20717634,13024815:0,0,0 -g1,1034:20717634,13024815 -g1,1034:20717634,13024815 -g1,1034:20717634,13024815 -g1,1034:20717634,13024815 -g1,1034:20717634,13024815 -(1,1034:20717634,13024815:0,0,0 -(1,1034:20717634,13024815:331874,388497,9436 -(1,1034:20717634,13024815:331874,388497,9436 -) -g1,1034:21049508,13024815 -) -) -g1,1034:20717634,13024815 -g1,1034:20717634,13024815 -) -) -g1,1034:20717634,13024815 -) -) -g1,1034:20717634,13024815 -(1,1035:20717634,13024815:665744,660417,276639 -g1,1035:21183803,13024815 -k1,1035:21383378,13024815:199575 -) -g1,1035:21383378,13024815 +g1,1090:20322121,17904278 ) -(1,1035:17441342,14249961:3942036,855274,480932 -g1,1035:17441342,14249961 -(1,1035:17441342,14249961:665744,855274,480932 -g1,1035:17441342,14249961 -g1,1035:18107086,14249961 -(1,1035:18107086,14249961:0,855274,476214 -(1,1035:18107086,14249961:0,0,0 -(1,1035:18107086,14249961:0,0,0 -g1,1035:18107086,14249961 -g1,1035:18107086,14249961 -g1,1035:18107086,14249961 -g1,1035:18107086,14249961 -g1,1035:18107086,14249961 -(1,1035:18107086,14249961:0,0,0 -(1,1035:18107086,14249961:331874,379060,0 -(1,1035:18107086,14249961:331874,379060,0 ) -g1,1035:18438960,14249961 +g1,1090:13722809,17904278 +g1,1090:13722809,17904278 ) ) -g1,1035:18107086,14249961 -g1,1035:18107086,14249961 +g1,1090:13722809,17904278 +g1,1091:13722809,17904278 +(1,1091:13722809,17904278:0,0,0 +(1,1091:13722809,17904278:0,0,0 +g1,1091:13722809,17904278 +g1,1091:13722809,17904278 +g1,1091:13722809,17904278 +g1,1091:13722809,17904278 +g1,1091:13722809,17904278 +(1,1091:13722809,17904278:0,0,0 +(1,1091:13722809,17904278:3738272,404226,93333 +(1,1091:13722809,17904278:3738272,404226,93333 +(1,1091:13722809,17904278:0,363038,93333 +r1,1186:15698949,17904278:1976140,456371,93333 +k1,1091:13722809,17904278:-1976140 ) +(1,1091:13722809,17904278:1976140,363038,93333 +k1,1091:13722809,17904278:3277 +h1,1091:15695672,17904278:0,328964,90056 ) -g1,1035:18107086,14249961 +g1,1091:15864624,17904278 +) +g1,1091:17461081,17904278 +) +) +g1,1091:13722809,17904278 +g1,1091:13722809,17904278 +) +) +g1,1091:13722809,17904278 +g1,1093:13722809,17904278 +g1,1093:13722809,17904278 +) +g1,1093:13722809,17904278 +) +) +g1,1093:25145964,19266987 +k1,1096:32583029,19266987:7437065 +g1,1096:32583029,19266987 +) +v1,1098:6630773,19951842:0,393216,0 +(1,1106:6630773,21760277:25952256,2201651,196608 +g1,1106:6630773,21760277 +g1,1106:6630773,21760277 +g1,1106:6434165,21760277 +(1,1106:6434165,21760277:0,2201651,196608 +r1,1186:32779637,21760277:26345472,2398259,196608 +k1,1106:6434165,21760277:-26345472 +) +(1,1106:6434165,21760277:26345472,2201651,196608 +[1,1106:6630773,21760277:25952256,2005043,0 +(1,1100:6630773,20179673:25952256,424439,86428 +(1,1099:6630773,20179673:0,0,0 +g1,1099:6630773,20179673 +g1,1099:6630773,20179673 +g1,1099:6303093,20179673 +(1,1099:6303093,20179673:0,0,0 +) +g1,1099:6630773,20179673 +) +g1,1100:8290543,20179673 +g1,1100:9286405,20179673 +g1,1100:11942037,20179673 +h1,1100:13601807,20179673:0,0,0 +k1,1100:32583029,20179673:18981222 +g1,1100:32583029,20179673 +) +(1,1101:6630773,20864528:25952256,398014,6605 +h1,1101:6630773,20864528:0,0,0 +h1,1101:7958589,20864528:0,0,0 +k1,1101:32583029,20864528:24624440 +g1,1101:32583029,20864528 +) +(1,1105:6630773,21680455:25952256,424439,79822 +(1,1103:6630773,21680455:0,0,0 +g1,1103:6630773,21680455 +g1,1103:6630773,21680455 +g1,1103:6303093,21680455 +(1,1103:6303093,21680455:0,0,0 +) +g1,1103:6630773,21680455 +) +g1,1105:7626635,21680455 +g1,1105:8954451,21680455 +g1,1105:9618359,21680455 +g1,1105:10282267,21680455 +g1,1105:10946175,21680455 +g1,1105:11610083,21680455 +g1,1105:12273991,21680455 +h1,1105:12605945,21680455:0,0,0 +k1,1105:32583029,21680455:19977084 +g1,1105:32583029,21680455 +) +] +) +g1,1106:32583029,21760277 +g1,1106:6630773,21760277 +g1,1106:6630773,21760277 +g1,1106:32583029,21760277 +g1,1106:32583029,21760277 +) +h1,1106:6630773,21956885:0,0,0 +(1,1132:6630773,24747839:25952256,2725418,0 +g1,1111:6790157,24747839 +(1,1129:6790157,24747839:18196423,2725418,0 +g1,1129:13722809,24747839 +(1,1129:13722809,23385130:0,0,0 +(1,1123:13722809,23385130:0,0,0 +g1,1121:13722809,23385130 +g1,1122:13722809,23385130 +g1,1122:13722809,23385130 +g1,1122:13722809,23385130 +g1,1122:13722809,23385130 +g1,1123:13722809,23385130 +) +(1,1129:13722809,23385130:0,0,0 +g1,1114:13722809,23385130 +(1,1118:13722809,23385130:0,0,0 +(1,1118:13722809,23385130:0,0,0 +g1,1118:13722809,23385130 +g1,1118:13722809,23385130 +g1,1118:13722809,23385130 +g1,1118:13722809,23385130 +g1,1118:13722809,23385130 +(1,1118:13722809,23385130:0,0,0 +(1,1118:13722809,23385130:7857858,1894999,480932 +[1,1118:13722809,23385130:7857858,1894999,480932 +(1,1118:13722809,22150548:7857858,660417,281357 +g1,1117:13722809,22150548 +(1,1117:13722809,22150548:665744,660417,281357 +k1,1117:13922384,22150548:199575 +g1,1117:14388553,22150548 +(1,1117:14388553,22150548:0,660417,271921 +(1,1117:14388553,22150548:0,0,0 +(1,1117:14388553,22150548:0,0,0 +g1,1117:14388553,22150548 +g1,1117:14388553,22150548 +g1,1117:14388553,22150548 +g1,1117:14388553,22150548 +g1,1117:14388553,22150548 +(1,1117:14388553,22150548:0,0,0 +(1,1117:14388553,22150548:331874,388497,0 +(1,1117:14388553,22150548:331874,388497,0 +) +g1,1117:14720427,22150548 +) +) +g1,1117:14388553,22150548 +g1,1117:14388553,22150548 +) +) +g1,1117:14388553,22150548 +) +) +g1,1117:14388553,22150548 +(1,1117:14388553,22150548:665744,660417,281357 +g1,1117:14854722,22150548 +k1,1117:15054297,22150548:199575 +) +g1,1117:15054297,22150548 +(1,1117:15054297,22150548:639530,660417,281357 +k1,1117:15253872,22150548:199575 +g1,1117:15693827,22150548 +(1,1117:15693827,22150548:0,660417,271921 +(1,1117:15693827,22150548:0,0,0 +(1,1117:15693827,22150548:0,0,0 +g1,1117:15693827,22150548 +g1,1117:15693827,22150548 +g1,1117:15693827,22150548 +g1,1117:15693827,22150548 +g1,1117:15693827,22150548 +(1,1117:15693827,22150548:0,0,0 +(1,1117:15693827,22150548:331874,388497,0 +(1,1117:15693827,22150548:331874,388497,0 +) +g1,1117:16025701,22150548 +) +) +g1,1117:15693827,22150548 +g1,1117:15693827,22150548 +) +) +g1,1117:15693827,22150548 +) +) +g1,1117:15693827,22150548 +(1,1117:15693827,22150548:665744,660417,281357 +g1,1117:16159996,22150548 +k1,1117:16359571,22150548:199575 +) +g1,1117:16359571,22150548 +(1,1117:16359571,22150548:639530,660417,281357 +k1,1117:16559146,22150548:199575 +g1,1117:16999101,22150548 +(1,1117:16999101,22150548:0,655699,276639 +(1,1117:16999101,22150548:0,0,0 +(1,1117:16999101,22150548:0,0,0 +g1,1117:16999101,22150548 +g1,1117:16999101,22150548 +g1,1117:16999101,22150548 +g1,1117:16999101,22150548 +g1,1117:16999101,22150548 +(1,1117:16999101,22150548:0,0,0 +(1,1117:16999101,22150548:331874,388497,9436 +(1,1117:16999101,22150548:331874,388497,9436 +) +g1,1117:17330975,22150548 +) +) +g1,1117:16999101,22150548 +g1,1117:16999101,22150548 +) +) +g1,1117:16999101,22150548 +) +) +g1,1117:16999101,22150548 +(1,1117:16999101,22150548:665744,660417,281357 +g1,1117:17465270,22150548 +k1,1117:17664845,22150548:199575 +) +g1,1117:17664845,22150548 +(1,1117:17664845,22150548:639530,660417,281357 +k1,1117:17864420,22150548:199575 +g1,1117:18304375,22150548 +(1,1117:18304375,22150548:0,655699,276639 +(1,1117:18304375,22150548:0,0,0 +(1,1117:18304375,22150548:0,0,0 +g1,1117:18304375,22150548 +g1,1117:18304375,22150548 +g1,1117:18304375,22150548 +g1,1117:18304375,22150548 +g1,1117:18304375,22150548 +(1,1117:18304375,22150548:0,0,0 +(1,1117:18304375,22150548:331874,379060,0 +(1,1117:18304375,22150548:331874,379060,0 ) +g1,1117:18636249,22150548 ) -g1,1035:18107086,14249961 -(1,1035:18107086,14249961:665744,855274,480932 -g1,1035:18772830,14249961 -g1,1035:18772830,14249961 ) -g1,1035:18772830,14249961 -(1,1035:18772830,14249961:639530,855274,480932 -g1,1035:18772830,14249961 -g1,1035:19412360,14249961 -(1,1035:19412360,14249961:0,850556,480932 -(1,1035:19412360,14249961:0,0,0 -(1,1035:19412360,14249961:0,0,0 -g1,1035:19412360,14249961 -g1,1035:19412360,14249961 -g1,1035:19412360,14249961 -g1,1035:19412360,14249961 -g1,1035:19412360,14249961 -(1,1035:19412360,14249961:0,0,0 -(1,1035:19412360,14249961:331874,379060,9436 -(1,1035:19412360,14249961:331874,379060,9436 +g1,1117:18304375,22150548 +g1,1117:18304375,22150548 ) -g1,1035:19744234,14249961 ) +g1,1117:18304375,22150548 ) -g1,1035:19412360,14249961 -g1,1035:19412360,14249961 ) +g1,1117:18304375,22150548 +(1,1117:18304375,22150548:665744,660417,281357 +g1,1117:18770544,22150548 +k1,1117:18970119,22150548:199575 ) -g1,1035:19412360,14249961 +g1,1117:18970119,22150548 +(1,1117:18970119,22150548:639530,660417,281357 +k1,1117:19169694,22150548:199575 +g1,1117:19609649,22150548 +(1,1117:19609649,22150548:0,650981,281357 +(1,1117:19609649,22150548:0,0,0 +(1,1117:19609649,22150548:0,0,0 +g1,1117:19609649,22150548 +g1,1117:19609649,22150548 +g1,1117:19609649,22150548 +g1,1117:19609649,22150548 +g1,1117:19609649,22150548 +(1,1117:19609649,22150548:0,0,0 +(1,1117:19609649,22150548:331874,379060,9436 +(1,1117:19609649,22150548:331874,379060,9436 ) +g1,1117:19941523,22150548 ) -g1,1035:19412360,14249961 -(1,1035:19412360,14249961:665744,855274,480932 -g1,1035:20078104,14249961 -g1,1035:20078104,14249961 ) -g1,1035:20078104,14249961 -(1,1035:20078104,14249961:639530,855274,480932 -g1,1035:20078104,14249961 -g1,1035:20717634,14249961 -(1,1035:20717634,14249961:0,855274,476214 -(1,1035:20717634,14249961:0,0,0 -(1,1035:20717634,14249961:0,0,0 -g1,1035:20717634,14249961 -g1,1035:20717634,14249961 -g1,1035:20717634,14249961 -g1,1035:20717634,14249961 -g1,1035:20717634,14249961 -(1,1035:20717634,14249961:0,0,0 -(1,1035:20717634,14249961:331874,388497,9436 -(1,1035:20717634,14249961:331874,388497,9436 +g1,1117:19609649,22150548 +g1,1117:19609649,22150548 ) -g1,1035:21049508,14249961 ) +g1,1117:19609649,22150548 ) -g1,1035:20717634,14249961 -g1,1035:20717634,14249961 ) +g1,1117:19609649,22150548 +(1,1117:19609649,22150548:665744,660417,281357 +g1,1117:20075818,22150548 +k1,1117:20275393,22150548:199575 ) -g1,1035:20717634,14249961 +g1,1117:20275393,22150548 +(1,1117:20275393,22150548:639530,660417,281357 +k1,1117:20474968,22150548:199575 +g1,1117:20914923,22150548 +(1,1117:20914923,22150548:0,655699,276639 +(1,1117:20914923,22150548:0,0,0 +(1,1117:20914923,22150548:0,0,0 +g1,1117:20914923,22150548 +g1,1117:20914923,22150548 +g1,1117:20914923,22150548 +g1,1117:20914923,22150548 +g1,1117:20914923,22150548 +(1,1117:20914923,22150548:0,0,0 +(1,1117:20914923,22150548:331874,388497,9436 +(1,1117:20914923,22150548:331874,388497,9436 ) +g1,1117:21246797,22150548 ) -g1,1035:20717634,14249961 -(1,1035:20717634,14249961:665744,855274,480932 -g1,1035:21383378,14249961 -g1,1035:21383378,14249961 ) -g1,1035:21383378,14249961 +g1,1117:20914923,22150548 +g1,1117:20914923,22150548 ) -] ) +g1,1117:20914923,22150548 ) -g1,1035:17441342,14249961 -g1,1035:17441342,14249961 ) +g1,1117:20914923,22150548 +(1,1118:20914923,22150548:665744,660417,281357 +g1,1118:21381092,22150548 +k1,1118:21580667,22150548:199575 ) -g1,1035:17441342,14249961 -g1,1040:17441342,14249961 -g1,1040:17441342,14249961 -g1,1042:17441342,14249961 -(1,1042:17441342,14249961:0,0,0 -(1,1042:17441342,14249961:0,0,0 -g1,1042:17441342,14249961 -(1,1042:17441342,14249961:0,0,0 -(1,1042:17441342,14249961:1976140,466322,199855 -(1,1042:17441342,14249961:1976140,466322,199855 -r1,1152:17441342,14249961:0,666177,199855 -(1,1042:17441342,14249961:0,340640,93333 -r1,1152:19417482,14249961:1976140,433973,93333 -k1,1042:17441342,14249961:-1976140 +g1,1118:21580667,22150548 ) -(1,1042:17441342,14249961:1976140,340640,93333 -g1,1042:17725988,14249961 -h1,1042:18851466,14249961:562739,252906,0 -h1,1042:19414205,14249961:0,328964,90056 +(1,1118:13722809,23385130:7857858,859992,480932 +g1,1118:13722809,23385130 +(1,1118:13722809,23385130:665744,859992,480932 +g1,1118:13722809,23385130 +g1,1118:14388553,23385130 +(1,1118:14388553,23385130:0,855274,476214 +(1,1118:14388553,23385130:0,0,0 +(1,1118:14388553,23385130:0,0,0 +g1,1118:14388553,23385130 +g1,1118:14388553,23385130 +g1,1118:14388553,23385130 +g1,1118:14388553,23385130 +g1,1118:14388553,23385130 +(1,1118:14388553,23385130:0,0,0 +(1,1118:14388553,23385130:331874,379060,0 +(1,1118:14388553,23385130:331874,379060,0 ) +g1,1118:14720427,23385130 ) -g1,1042:19417482,14249961 ) +g1,1118:14388553,23385130 +g1,1118:14388553,23385130 ) -g1,1042:17441342,14249961 -g1,1042:17441342,14249961 ) +g1,1118:14388553,23385130 ) -g1,1042:17441342,14249961 -g1,1043:17441342,14249961 -(1,1043:17441342,14249961:0,0,0 -(1,1043:17441342,14249961:0,0,0 -g1,1043:17441342,14249961 -g1,1043:17441342,14249961 -g1,1043:17441342,14249961 -g1,1043:17441342,14249961 -g1,1043:17441342,14249961 -(1,1043:17441342,14249961:0,0,0 -(1,1043:17441342,14249961:6599312,404226,101187 -(1,1043:17441342,14249961:6599312,404226,101187 -(1,1043:17441342,14249961:0,363038,98932 -r1,1152:19417482,14249961:1976140,461970,98932 -k1,1043:17441342,14249961:-1976140 ) -(1,1043:17441342,14249961:1976140,363038,98932 -k1,1043:17441342,14249961:3277 -h1,1043:19414205,14249961:0,328964,90056 +g1,1118:14388553,23385130 +(1,1118:14388553,23385130:665744,859992,480932 +g1,1118:15054297,23385130 +g1,1118:15054297,23385130 ) -g1,1043:19583157,14249961 -g1,1043:22254929,14249961 +g1,1118:15054297,23385130 +(1,1118:15054297,23385130:639530,859992,480932 +g1,1118:15054297,23385130 +g1,1118:15693827,23385130 +(1,1118:15693827,23385130:0,850556,480932 +(1,1118:15693827,23385130:0,0,0 +(1,1118:15693827,23385130:0,0,0 +g1,1118:15693827,23385130 +g1,1118:15693827,23385130 +g1,1118:15693827,23385130 +g1,1118:15693827,23385130 +g1,1118:15693827,23385130 +(1,1118:15693827,23385130:0,0,0 +(1,1118:15693827,23385130:331874,379060,9436 +(1,1118:15693827,23385130:331874,379060,9436 ) -g1,1043:24040654,14249961 +g1,1118:16025701,23385130 ) ) -g1,1043:17441342,14249961 -g1,1043:17441342,14249961 +g1,1118:15693827,23385130 +g1,1118:15693827,23385130 ) ) -g1,1043:17441342,14249961 -g1,1044:17441342,14249961 -(1,1044:17441342,14249961:0,0,0 -(1,1044:17441342,14249961:0,0,0 -g1,1044:17441342,14249961 -g1,1044:17441342,14249961 -g1,1044:17441342,14249961 -g1,1044:17441342,14249961 -g1,1044:17441342,14249961 -(1,1044:17441342,14249961:0,0,0 -(1,1044:17441342,14249961:3738272,404226,93333 -(1,1044:17441342,14249961:3738272,404226,93333 -(1,1044:17441342,14249961:0,363038,93333 -r1,1152:19417482,14249961:1976140,456371,93333 -k1,1044:17441342,14249961:-1976140 -) -(1,1044:17441342,14249961:1976140,363038,93333 -k1,1044:17441342,14249961:3277 -h1,1044:19414205,14249961:0,328964,90056 -) -g1,1044:19583157,14249961 -) -g1,1044:21179614,14249961 -) -) -g1,1044:17441342,14249961 -g1,1044:17441342,14249961 -) -) -g1,1044:17441342,14249961 -g1,1046:17441342,14249961 -g1,1046:17441342,14249961 -) -g1,1046:17441342,14249961 -) -) -g1,1048:26747202,15607952 -k1,1048:32583029,15607952:5835827 -) -v1,1051:6630773,17290597:0,393216,0 -(1,1055:6630773,17580527:25952256,683146,196608 -g1,1055:6630773,17580527 -g1,1055:6630773,17580527 -g1,1055:6434165,17580527 -(1,1055:6434165,17580527:0,683146,196608 -r1,1152:32779637,17580527:26345472,879754,196608 -k1,1055:6434165,17580527:-26345472 -) -(1,1055:6434165,17580527:26345472,683146,196608 -[1,1055:6630773,17580527:25952256,486538,0 -(1,1053:6630773,17498215:25952256,404226,82312 -(1,1052:6630773,17498215:0,0,0 -g1,1052:6630773,17498215 -g1,1052:6630773,17498215 -g1,1052:6303093,17498215 -(1,1052:6303093,17498215:0,0,0 -) -g1,1052:6630773,17498215 -) -g1,1053:8211502,17498215 -g1,1053:9159940,17498215 -g1,1053:11689106,17498215 -h1,1053:13269834,17498215:0,0,0 -k1,1053:32583030,17498215:19313196 -g1,1053:32583030,17498215 -) -] -) -g1,1055:32583029,17580527 -g1,1055:6630773,17580527 -g1,1055:6630773,17580527 -g1,1055:32583029,17580527 -g1,1055:32583029,17580527 -) -h1,1055:6630773,17777135:0,0,0 -(1,1079:6630773,21584556:25952256,2725418,0 -k1,1079:10508690,21584556:3877917 -(1,1058:10508690,21584556:0,0,0 -g1,1058:10508690,21584556 -g1,1058:10508690,21584556 -g1,1058:10181010,21584556 -(1,1058:10181010,21584556:0,0,0 -) -g1,1058:10508690,21584556 -) -(1,1077:10508690,21584556:18196423,2725418,0 -g1,1077:17441342,21584556 -(1,1077:17441342,20221847:0,0,0 -(1,1071:17441342,20221847:0,0,0 -g1,1069:17441342,20221847 -g1,1070:17441342,20221847 -g1,1070:17441342,20221847 -g1,1070:17441342,20221847 -g1,1070:17441342,20221847 -g1,1071:17441342,20221847 -) -(1,1077:17441342,20221847:0,0,0 -g1,1062:17441342,20221847 -(1,1066:17441342,20221847:0,0,0 -(1,1066:17441342,20221847:0,0,0 -g1,1066:17441342,20221847 -g1,1066:17441342,20221847 -g1,1066:17441342,20221847 -g1,1066:17441342,20221847 -g1,1066:17441342,20221847 -(1,1066:17441342,20221847:0,0,0 -(1,1066:17441342,20221847:7857858,1894999,480932 -[1,1066:17441342,20221847:7857858,1894999,480932 -(1,1066:17441342,18987265:7857858,660417,281357 -g1,1065:17441342,18987265 -(1,1065:17441342,18987265:665744,660417,281357 -k1,1065:17640917,18987265:199575 -g1,1065:18107086,18987265 -(1,1065:18107086,18987265:0,660417,271921 -(1,1065:18107086,18987265:0,0,0 -(1,1065:18107086,18987265:0,0,0 -g1,1065:18107086,18987265 -g1,1065:18107086,18987265 -g1,1065:18107086,18987265 -g1,1065:18107086,18987265 -g1,1065:18107086,18987265 -(1,1065:18107086,18987265:0,0,0 -(1,1065:18107086,18987265:331874,388497,0 -(1,1065:18107086,18987265:331874,388497,0 -) -g1,1065:18438960,18987265 -) -) -g1,1065:18107086,18987265 -g1,1065:18107086,18987265 -) -) -g1,1065:18107086,18987265 -) -) -g1,1065:18107086,18987265 -(1,1065:18107086,18987265:665744,660417,281357 -g1,1065:18573255,18987265 -k1,1065:18772830,18987265:199575 -) -g1,1065:18772830,18987265 -(1,1065:18772830,18987265:639530,660417,281357 -k1,1065:18972405,18987265:199575 -g1,1065:19412360,18987265 -(1,1065:19412360,18987265:0,660417,271921 -(1,1065:19412360,18987265:0,0,0 -(1,1065:19412360,18987265:0,0,0 -g1,1065:19412360,18987265 -g1,1065:19412360,18987265 -g1,1065:19412360,18987265 -g1,1065:19412360,18987265 -g1,1065:19412360,18987265 -(1,1065:19412360,18987265:0,0,0 -(1,1065:19412360,18987265:331874,388497,0 -(1,1065:19412360,18987265:331874,388497,0 -) -g1,1065:19744234,18987265 -) -) -g1,1065:19412360,18987265 -g1,1065:19412360,18987265 -) -) -g1,1065:19412360,18987265 -) -) -g1,1065:19412360,18987265 -(1,1065:19412360,18987265:665744,660417,281357 -g1,1065:19878529,18987265 -k1,1065:20078104,18987265:199575 -) -g1,1065:20078104,18987265 -(1,1065:20078104,18987265:639530,660417,281357 -k1,1065:20277679,18987265:199575 -g1,1065:20717634,18987265 -(1,1065:20717634,18987265:0,655699,276639 -(1,1065:20717634,18987265:0,0,0 -(1,1065:20717634,18987265:0,0,0 -g1,1065:20717634,18987265 -g1,1065:20717634,18987265 -g1,1065:20717634,18987265 -g1,1065:20717634,18987265 -g1,1065:20717634,18987265 -(1,1065:20717634,18987265:0,0,0 -(1,1065:20717634,18987265:331874,388497,9436 -(1,1065:20717634,18987265:331874,388497,9436 -) -g1,1065:21049508,18987265 -) -) -g1,1065:20717634,18987265 -g1,1065:20717634,18987265 -) -) -g1,1065:20717634,18987265 -) -) -g1,1065:20717634,18987265 -(1,1065:20717634,18987265:665744,660417,281357 -g1,1065:21183803,18987265 -k1,1065:21383378,18987265:199575 -) -g1,1065:21383378,18987265 -(1,1065:21383378,18987265:639530,660417,281357 -k1,1065:21582953,18987265:199575 -g1,1065:22022908,18987265 -(1,1065:22022908,18987265:0,655699,276639 -(1,1065:22022908,18987265:0,0,0 -(1,1065:22022908,18987265:0,0,0 -g1,1065:22022908,18987265 -g1,1065:22022908,18987265 -g1,1065:22022908,18987265 -g1,1065:22022908,18987265 -g1,1065:22022908,18987265 -(1,1065:22022908,18987265:0,0,0 -(1,1065:22022908,18987265:331874,379060,0 -(1,1065:22022908,18987265:331874,379060,0 +g1,1118:15693827,23385130 ) -g1,1065:22354782,18987265 ) +g1,1118:15693827,23385130 +(1,1118:15693827,23385130:665744,859992,480932 +g1,1118:16359571,23385130 +g1,1118:16359571,23385130 ) -g1,1065:22022908,18987265 -g1,1065:22022908,18987265 +g1,1118:16359571,23385130 +(1,1118:16359571,23385130:639530,859992,480932 +g1,1118:16359571,23385130 +g1,1118:16999101,23385130 +(1,1118:16999101,23385130:0,855274,476214 +(1,1118:16999101,23385130:0,0,0 +(1,1118:16999101,23385130:0,0,0 +g1,1118:16999101,23385130 +g1,1118:16999101,23385130 +g1,1118:16999101,23385130 +g1,1118:16999101,23385130 +g1,1118:16999101,23385130 +(1,1118:16999101,23385130:0,0,0 +(1,1118:16999101,23385130:331874,388497,9436 +(1,1118:16999101,23385130:331874,388497,9436 ) +g1,1118:17330975,23385130 ) -g1,1065:22022908,18987265 ) +g1,1118:16999101,23385130 +g1,1118:16999101,23385130 ) -g1,1065:22022908,18987265 -(1,1065:22022908,18987265:665744,660417,281357 -g1,1065:22489077,18987265 -k1,1065:22688652,18987265:199575 ) -g1,1065:22688652,18987265 -(1,1065:22688652,18987265:639530,660417,281357 -k1,1065:22888227,18987265:199575 -g1,1065:23328182,18987265 -(1,1065:23328182,18987265:0,650981,281357 -(1,1065:23328182,18987265:0,0,0 -(1,1065:23328182,18987265:0,0,0 -g1,1065:23328182,18987265 -g1,1065:23328182,18987265 -g1,1065:23328182,18987265 -g1,1065:23328182,18987265 -g1,1065:23328182,18987265 -(1,1065:23328182,18987265:0,0,0 -(1,1065:23328182,18987265:331874,379060,9436 -(1,1065:23328182,18987265:331874,379060,9436 +g1,1118:16999101,23385130 ) -g1,1065:23660056,18987265 ) +g1,1118:16999101,23385130 +(1,1118:16999101,23385130:665744,859992,480932 +g1,1118:17664845,23385130 +g1,1118:17664845,23385130 ) -g1,1065:23328182,18987265 -g1,1065:23328182,18987265 +g1,1118:17664845,23385130 +(1,1118:17664845,23385130:639530,859992,480932 +g1,1118:17664845,23385130 +g1,1118:18304375,23385130 +(1,1118:18304375,23385130:0,855274,476214 +(1,1118:18304375,23385130:0,0,0 +(1,1118:18304375,23385130:0,0,0 +g1,1118:18304375,23385130 +g1,1118:18304375,23385130 +g1,1118:18304375,23385130 +g1,1118:18304375,23385130 +g1,1118:18304375,23385130 +(1,1118:18304375,23385130:0,0,0 +(1,1118:18304375,23385130:331874,388497,9436 +(1,1118:18304375,23385130:331874,388497,9436 ) +g1,1118:18636249,23385130 ) -g1,1065:23328182,18987265 ) +g1,1118:18304375,23385130 +g1,1118:18304375,23385130 ) -g1,1065:23328182,18987265 -(1,1065:23328182,18987265:665744,660417,281357 -g1,1065:23794351,18987265 -k1,1065:23993926,18987265:199575 ) -g1,1065:23993926,18987265 -(1,1065:23993926,18987265:639530,660417,281357 -k1,1065:24193501,18987265:199575 -g1,1065:24633456,18987265 -(1,1065:24633456,18987265:0,655699,276639 -(1,1065:24633456,18987265:0,0,0 -(1,1065:24633456,18987265:0,0,0 -g1,1065:24633456,18987265 -g1,1065:24633456,18987265 -g1,1065:24633456,18987265 -g1,1065:24633456,18987265 -g1,1065:24633456,18987265 -(1,1065:24633456,18987265:0,0,0 -(1,1065:24633456,18987265:331874,388497,9436 -(1,1065:24633456,18987265:331874,388497,9436 +g1,1118:18304375,23385130 ) -g1,1065:24965330,18987265 ) +g1,1118:18304375,23385130 +(1,1118:18304375,23385130:665744,859992,480932 +g1,1118:18970119,23385130 +g1,1118:18970119,23385130 ) -g1,1065:24633456,18987265 -g1,1065:24633456,18987265 +g1,1118:18970119,23385130 +(1,1118:18970119,23385130:639530,859992,480932 +g1,1118:18970119,23385130 +g1,1118:19609649,23385130 +(1,1118:19609649,23385130:0,859992,471496 +(1,1118:19609649,23385130:0,0,0 +(1,1118:19609649,23385130:0,0,0 +g1,1118:19609649,23385130 +g1,1118:19609649,23385130 +g1,1118:19609649,23385130 +g1,1118:19609649,23385130 +g1,1118:19609649,23385130 +(1,1118:19609649,23385130:0,0,0 +(1,1118:19609649,23385130:331874,388497,0 +(1,1118:19609649,23385130:331874,388497,0 ) +g1,1118:19941523,23385130 ) -g1,1065:24633456,18987265 ) +g1,1118:19609649,23385130 +g1,1118:19609649,23385130 ) -g1,1065:24633456,18987265 -(1,1066:24633456,18987265:665744,660417,281357 -g1,1066:25099625,18987265 -k1,1066:25299200,18987265:199575 ) -g1,1066:25299200,18987265 +g1,1118:19609649,23385130 ) -(1,1066:17441342,20221847:7857858,859992,480932 -g1,1066:17441342,20221847 -(1,1066:17441342,20221847:665744,859992,480932 -g1,1066:17441342,20221847 -g1,1066:18107086,20221847 -(1,1066:18107086,20221847:0,855274,476214 -(1,1066:18107086,20221847:0,0,0 -(1,1066:18107086,20221847:0,0,0 -g1,1066:18107086,20221847 -g1,1066:18107086,20221847 -g1,1066:18107086,20221847 -g1,1066:18107086,20221847 -g1,1066:18107086,20221847 -(1,1066:18107086,20221847:0,0,0 -(1,1066:18107086,20221847:331874,388497,9436 -(1,1066:18107086,20221847:331874,388497,9436 ) -g1,1066:18438960,20221847 +g1,1118:19609649,23385130 +(1,1118:19609649,23385130:665744,859992,480932 +g1,1118:20275393,23385130 +g1,1118:20275393,23385130 ) +g1,1118:20275393,23385130 +(1,1118:20275393,23385130:639530,859992,480932 +g1,1118:20275393,23385130 +g1,1118:20914923,23385130 +(1,1118:20914923,23385130:0,859992,471496 +(1,1118:20914923,23385130:0,0,0 +(1,1118:20914923,23385130:0,0,0 +g1,1118:20914923,23385130 +g1,1118:20914923,23385130 +g1,1118:20914923,23385130 +g1,1118:20914923,23385130 +g1,1118:20914923,23385130 +(1,1118:20914923,23385130:0,0,0 +(1,1118:20914923,23385130:331874,388497,0 +(1,1118:20914923,23385130:331874,388497,0 ) -g1,1066:18107086,20221847 -g1,1066:18107086,20221847 +g1,1118:21246797,23385130 ) ) -g1,1066:18107086,20221847 +g1,1118:20914923,23385130 +g1,1118:20914923,23385130 ) ) -g1,1066:18107086,20221847 -(1,1066:18107086,20221847:665744,859992,480932 -g1,1066:18772830,20221847 -g1,1066:18772830,20221847 +g1,1118:20914923,23385130 ) -g1,1066:18772830,20221847 -(1,1066:18772830,20221847:639530,859992,480932 -g1,1066:18772830,20221847 -g1,1066:19412360,20221847 -(1,1066:19412360,20221847:0,859992,471496 -(1,1066:19412360,20221847:0,0,0 -(1,1066:19412360,20221847:0,0,0 -g1,1066:19412360,20221847 -g1,1066:19412360,20221847 -g1,1066:19412360,20221847 -g1,1066:19412360,20221847 -g1,1066:19412360,20221847 -(1,1066:19412360,20221847:0,0,0 -(1,1066:19412360,20221847:331874,388497,0 -(1,1066:19412360,20221847:331874,388497,0 ) -g1,1066:19744234,20221847 +g1,1118:20914923,23385130 +(1,1118:20914923,23385130:665744,859992,480932 +g1,1118:21580667,23385130 +g1,1118:21580667,23385130 ) +g1,1118:21580667,23385130 ) -g1,1066:19412360,20221847 -g1,1066:19412360,20221847 +] ) ) -g1,1066:19412360,20221847 +g1,1118:13722809,23385130 +g1,1118:13722809,23385130 ) ) -g1,1066:19412360,20221847 -(1,1066:19412360,20221847:665744,859992,480932 -g1,1066:20078104,20221847 -g1,1066:20078104,20221847 +g1,1118:13722809,23385130 +g1,1123:13722809,23385130 +g1,1123:13722809,23385130 +g1,1125:13722809,23385130 +(1,1125:13722809,23385130:0,0,0 +(1,1125:13722809,23385130:0,0,0 +g1,1125:13722809,23385130 +(1,1125:13722809,23385130:0,0,0 +(1,1125:13722809,23385130:1976140,479396,205458 +(1,1125:13722809,23385130:1976140,479396,205458 +r1,1186:13722809,23385130:0,684854,205458 +(1,1125:13722809,23385130:0,340640,93333 +r1,1186:15698949,23385130:1976140,433973,93333 +k1,1125:13722809,23385130:-1976140 ) -g1,1066:20078104,20221847 -(1,1066:20078104,20221847:639530,859992,480932 -g1,1066:20078104,20221847 -g1,1066:20717634,20221847 -(1,1066:20717634,20221847:0,859992,471496 -(1,1066:20717634,20221847:0,0,0 -(1,1066:20717634,20221847:0,0,0 -g1,1066:20717634,20221847 -g1,1066:20717634,20221847 -g1,1066:20717634,20221847 -g1,1066:20717634,20221847 -g1,1066:20717634,20221847 -(1,1066:20717634,20221847:0,0,0 -(1,1066:20717634,20221847:331874,388497,0 -(1,1066:20717634,20221847:331874,388497,0 +(1,1125:13722809,23385130:1976140,340640,93333 +g1,1125:14007455,23385130 +h1,1125:15132933,23385130:562739,252906,0 +h1,1125:15695672,23385130:0,328964,90056 ) -g1,1066:21049508,20221847 ) +g1,1125:15698949,23385130 ) -g1,1066:20717634,20221847 -g1,1066:20717634,20221847 ) +g1,1125:13722809,23385130 +g1,1125:13722809,23385130 ) -g1,1066:20717634,20221847 ) +g1,1125:13722809,23385130 +g1,1126:13722809,23385130 +(1,1126:13722809,23385130:0,0,0 +(1,1126:13722809,23385130:0,0,0 +g1,1126:13722809,23385130 +g1,1126:13722809,23385130 +g1,1126:13722809,23385130 +g1,1126:13722809,23385130 +g1,1126:13722809,23385130 +(1,1126:13722809,23385130:0,0,0 +(1,1126:13722809,23385130:6599312,404226,101187 +(1,1126:13722809,23385130:6599312,404226,101187 +(1,1126:13722809,23385130:0,363038,98932 +r1,1186:15698949,23385130:1976140,461970,98932 +k1,1126:13722809,23385130:-1976140 ) -g1,1066:20717634,20221847 -(1,1066:20717634,20221847:665744,859992,480932 -g1,1066:21383378,20221847 -g1,1066:21383378,20221847 +(1,1126:13722809,23385130:1976140,363038,98932 +k1,1126:13722809,23385130:3277 +h1,1126:15695672,23385130:0,328964,90056 ) -g1,1066:21383378,20221847 -(1,1066:21383378,20221847:639530,859992,480932 -g1,1066:21383378,20221847 -g1,1066:22022908,20221847 -(1,1066:22022908,20221847:0,855274,476214 -(1,1066:22022908,20221847:0,0,0 -(1,1066:22022908,20221847:0,0,0 -g1,1066:22022908,20221847 -g1,1066:22022908,20221847 -g1,1066:22022908,20221847 -g1,1066:22022908,20221847 -g1,1066:22022908,20221847 -(1,1066:22022908,20221847:0,0,0 -(1,1066:22022908,20221847:331874,379060,0 -(1,1066:22022908,20221847:331874,379060,0 +g1,1126:15864624,23385130 +g1,1126:18536396,23385130 ) -g1,1066:22354782,20221847 +g1,1126:20322121,23385130 +) +) +g1,1126:13722809,23385130 +g1,1126:13722809,23385130 +) +) +g1,1126:13722809,23385130 +g1,1127:13722809,23385130 +(1,1127:13722809,23385130:0,0,0 +(1,1127:13722809,23385130:0,0,0 +g1,1127:13722809,23385130 +g1,1127:13722809,23385130 +g1,1127:13722809,23385130 +g1,1127:13722809,23385130 +g1,1127:13722809,23385130 +(1,1127:13722809,23385130:0,0,0 +(1,1127:13722809,23385130:3738272,404226,93333 +(1,1127:13722809,23385130:3738272,404226,93333 +(1,1127:13722809,23385130:0,363038,93333 +r1,1186:15698949,23385130:1976140,456371,93333 +k1,1127:13722809,23385130:-1976140 ) +(1,1127:13722809,23385130:1976140,363038,93333 +k1,1127:13722809,23385130:3277 +h1,1127:15695672,23385130:0,328964,90056 +) +g1,1127:15864624,23385130 +) +g1,1127:17461081,23385130 +) +) +g1,1127:13722809,23385130 +g1,1127:13722809,23385130 +) +) +g1,1127:13722809,23385130 +g1,1129:13722809,23385130 +g1,1129:13722809,23385130 +) +g1,1129:13722809,23385130 +) +) +g1,1129:25145964,24747839 +k1,1132:32583029,24747839:7437065 +g1,1132:32583029,24747839 +) +(1,1134:6630773,25612919:25952256,513147,134348 +h1,1133:6630773,25612919:983040,0,0 +g1,1133:9274495,25612919 +g1,1133:9686716,25612919 +g1,1133:11546627,25612919 +g1,1133:16220654,25612919 +g1,1133:17813834,25612919 +g1,1133:18368923,25612919 +g1,1133:20546029,25612919 +g1,1133:21404550,25612919 +g1,1133:22622864,25612919 +g1,1133:24475566,25612919 +g1,1133:26229964,25612919 +g1,1133:27823144,25612919 +g1,1133:30035639,25612919 +k1,1134:32583029,25612919:953554 +g1,1134:32583029,25612919 +) +v1,1136:6630773,26297774:0,393216,0 +(1,1143:6630773,27421354:25952256,1516796,196608 +g1,1143:6630773,27421354 +g1,1143:6630773,27421354 +g1,1143:6434165,27421354 +(1,1143:6434165,27421354:0,1516796,196608 +r1,1186:32779637,27421354:26345472,1713404,196608 +k1,1143:6434165,27421354:-26345472 +) +(1,1143:6434165,27421354:26345472,1516796,196608 +[1,1143:6630773,27421354:25952256,1320188,0 +(1,1138:6630773,26525605:25952256,424439,86428 +(1,1137:6630773,26525605:0,0,0 +g1,1137:6630773,26525605 +g1,1137:6630773,26525605 +g1,1137:6303093,26525605 +(1,1137:6303093,26525605:0,0,0 +) +g1,1137:6630773,26525605 +) +k1,1138:6630773,26525605:0 +g1,1138:9286405,26525605 +k1,1138:9286405,26525605:0 +h1,1138:12605945,26525605:0,0,0 +k1,1138:32583029,26525605:19977084 +g1,1138:32583029,26525605 +) +(1,1142:6630773,27341532:25952256,424439,79822 +(1,1140:6630773,27341532:0,0,0 +g1,1140:6630773,27341532 +g1,1140:6630773,27341532 +g1,1140:6303093,27341532 +(1,1140:6303093,27341532:0,0,0 +) +g1,1140:6630773,27341532 +) +g1,1142:7626635,27341532 +g1,1142:8954451,27341532 +g1,1142:9618359,27341532 +g1,1142:10282267,27341532 +g1,1142:10946175,27341532 +g1,1142:11610083,27341532 +g1,1142:12273991,27341532 +h1,1142:12605945,27341532:0,0,0 +k1,1142:32583029,27341532:19977084 +g1,1142:32583029,27341532 +) +] +) +g1,1143:32583029,27421354 +g1,1143:6630773,27421354 +g1,1143:6630773,27421354 +g1,1143:32583029,27421354 +g1,1143:32583029,27421354 +) +h1,1143:6630773,27617962:0,0,0 +(1,1147:6630773,28483042:25952256,505283,134348 +h1,1146:6630773,28483042:983040,0,0 +k1,1146:10557392,28483042:153711 +(1,1146:10557392,28483042:0,452978,115847 +r1,1186:11619081,28483042:1061689,568825,115847 +k1,1146:10557392,28483042:-1061689 +) +(1,1146:10557392,28483042:1061689,452978,115847 +k1,1146:10557392,28483042:3277 +h1,1146:11615804,28483042:0,411205,112570 +) +k1,1146:11772792,28483042:153711 +k1,1146:14304805,28483042:153711 +k1,1146:15144678,28483042:153711 +k1,1146:18701018,28483042:153711 +k1,1146:20027168,28483042:153711 +k1,1146:20863764,28483042:153711 +k1,1146:22667672,28483042:153711 +k1,1146:25129561,28483042:153711 +k1,1146:26474717,28483042:153711 +k1,1146:30770303,28483042:153711 +k1,1146:32583029,28483042:0 +) +(1,1147:6630773,29348122:25952256,513147,126483 +k1,1146:7958204,29348122:170721 +k1,1146:9642152,29348122:170722 +k1,1146:12459217,29348122:170721 +k1,1146:14360088,29348122:170721 +k1,1146:17835790,29348122:170721 +k1,1146:18874864,29348122:170722 +k1,1146:20382519,29348122:170721 +k1,1146:22083506,29348122:170721 +k1,1146:22905656,29348122:170722 +k1,1146:24915317,29348122:170721 +k1,1146:26242748,29348122:170721 +k1,1146:28391346,29348122:170721 +k1,1146:29178106,29348122:170722 +k1,1146:30367912,29348122:170721 +k1,1146:32583029,29348122:0 +) +(1,1147:6630773,30213202:25952256,513147,134348 +k1,1146:7511764,30213202:221699 +k1,1146:10379806,30213202:221698 +k1,1146:11643527,30213202:221699 +k1,1146:13068466,30213202:221698 +k1,1146:16538129,30213202:221699 +(1,1146:16538129,30213202:0,452978,115847 +r1,1186:17599818,30213202:1061689,568825,115847 +k1,1146:16538129,30213202:-1061689 +) +(1,1146:16538129,30213202:1061689,452978,115847 +k1,1146:16538129,30213202:3277 +h1,1146:17596541,30213202:0,411205,112570 +) +k1,1146:17821516,30213202:221698 +k1,1146:18574712,30213202:221699 +k1,1146:19862682,30213202:221699 +k1,1146:22061601,30213202:221698 +k1,1146:23044828,30213202:221699 +k1,1146:25045828,30213202:221698 +k1,1146:26538925,30213202:221699 +k1,1146:28529440,30213202:221698 +k1,1146:29843624,30213202:221699 +k1,1146:32583029,30213202:0 +) +(1,1147:6630773,31078282:25952256,513147,126483 +k1,1146:10051103,31078282:287709 +k1,1146:11732763,31078282:287709 +(1,1146:11732763,31078282:0,452978,115847 +r1,1186:12794452,31078282:1061689,568825,115847 +k1,1146:11732763,31078282:-1061689 +) +(1,1146:11732763,31078282:1061689,452978,115847 +k1,1146:11732763,31078282:3277 +h1,1146:12791175,31078282:0,411205,112570 +) +k1,1146:13255831,31078282:287709 +k1,1146:14615709,31078282:287709 +k1,1146:16106659,31078282:287709 +k1,1146:16925865,31078282:287709 +k1,1146:18279844,31078282:287708 +k1,1146:20865901,31078282:287709 +k1,1146:21839772,31078282:287709 +k1,1146:22542235,31078282:287620 +k1,1146:25590320,31078282:287709 +k1,1146:26233889,31078282:287709 +k1,1146:29217094,31078282:287709 +k1,1146:31923737,31078282:287709 +k1,1146:32583029,31078282:0 +) +(1,1147:6630773,31943362:25952256,505283,134348 +k1,1146:9193090,31943362:147971 +k1,1146:11146578,31943362:147971 +k1,1146:12497789,31943362:147970 +k1,1146:15893724,31943362:147971 +k1,1146:19004578,31943362:147971 +k1,1146:19610646,31943362:147971 +k1,1146:20862898,31943362:147970 +k1,1146:21758635,31943362:147971 +k1,1146:23419832,31943362:147971 +k1,1146:24219231,31943362:147971 +k1,1146:26806452,31943362:147971 +k1,1146:29138737,31943362:147970 +k1,1146:29744805,31943362:147971 +k1,1146:30424273,31943362:147971 +k1,1147:32583029,31943362:0 +) +(1,1147:6630773,32808442:25952256,513147,126483 +(1,1146:6630773,32808442:0,452978,115847 +r1,1186:9451022,32808442:2820249,568825,115847 +k1,1146:6630773,32808442:-2820249 +) +(1,1146:6630773,32808442:2820249,452978,115847 +k1,1146:6630773,32808442:3277 +h1,1146:9447745,32808442:0,411205,112570 +) +g1,1146:9823921,32808442 +g1,1146:11214595,32808442 +g1,1146:12175352,32808442 +g1,1146:14813831,32808442 +g1,1146:15471157,32808442 +g1,1146:17822588,32808442 +g1,1146:20732386,32808442 +g1,1146:22088325,32808442 +g1,1146:24265431,32808442 +g1,1146:25077422,32808442 +g1,1146:26295736,32808442 +g1,1146:27677890,32808442 +g1,1146:28536411,32808442 +k1,1147:32583029,32808442:1400274 +g1,1147:32583029,32808442 +) +v1,1149:6630773,33493297:0,393216,0 +(1,1156:6630773,34616877:25952256,1516796,196608 +g1,1156:6630773,34616877 +g1,1156:6630773,34616877 +g1,1156:6434165,34616877 +(1,1156:6434165,34616877:0,1516796,196608 +r1,1186:32779637,34616877:26345472,1713404,196608 +k1,1156:6434165,34616877:-26345472 +) +(1,1156:6434165,34616877:26345472,1516796,196608 +[1,1156:6630773,34616877:25952256,1320188,0 +(1,1151:6630773,33721128:25952256,424439,106246 +(1,1150:6630773,33721128:0,0,0 +g1,1150:6630773,33721128 +g1,1150:6630773,33721128 +g1,1150:6303093,33721128 +(1,1150:6303093,33721128:0,0,0 +) +g1,1150:6630773,33721128 +) +k1,1151:6630773,33721128:0 +g1,1151:10946175,33721128 +h1,1151:12605945,33721128:0,0,0 +k1,1151:32583029,33721128:19977084 +g1,1151:32583029,33721128 +) +(1,1155:6630773,34537055:25952256,424439,79822 +(1,1153:6630773,34537055:0,0,0 +g1,1153:6630773,34537055 +g1,1153:6630773,34537055 +g1,1153:6303093,34537055 +(1,1153:6303093,34537055:0,0,0 +) +g1,1153:6630773,34537055 +) +g1,1155:7626635,34537055 +g1,1155:8954451,34537055 +g1,1155:9618359,34537055 +g1,1155:10282267,34537055 +g1,1155:10946175,34537055 +g1,1155:11610083,34537055 +g1,1155:12273991,34537055 +h1,1155:12605945,34537055:0,0,0 +k1,1155:32583029,34537055:19977084 +g1,1155:32583029,34537055 +) +] +) +g1,1156:32583029,34616877 +g1,1156:6630773,34616877 +g1,1156:6630773,34616877 +g1,1156:32583029,34616877 +g1,1156:32583029,34616877 +) +h1,1156:6630773,34813485:0,0,0 +(1,1160:6630773,35678565:25952256,513147,126483 +h1,1159:6630773,35678565:983040,0,0 +k1,1159:9024246,35678565:213746 +k1,1159:11396748,35678565:213746 +k1,1159:13465817,35678565:213745 +k1,1159:14211060,35678565:213746 +k1,1159:15443891,35678565:213746 +k1,1159:17311110,35678565:213746 +k1,1159:18211017,35678565:213745 +k1,1159:19372414,35678565:213746 +(1,1159:19372414,35678565:0,452978,115847 +r1,1186:21840951,35678565:2468537,568825,115847 +k1,1159:19372414,35678565:-2468537 +) +(1,1159:19372414,35678565:2468537,452978,115847 +g1,1159:21134250,35678565 +h1,1159:21837674,35678565:0,411205,112570 +) +k1,1159:22228367,35678565:213746 +k1,1159:25286376,35678565:213746 +(1,1159:25286376,35678565:0,452978,115847 +r1,1186:28106625,35678565:2820249,568825,115847 +k1,1159:25286376,35678565:-2820249 +) +(1,1159:25286376,35678565:2820249,452978,115847 +k1,1159:25286376,35678565:3277 +h1,1159:28103348,35678565:0,411205,112570 +) +k1,1159:28320370,35678565:213745 +k1,1159:30912418,35678565:213746 +k1,1159:31812326,35678565:213746 +k1,1159:32583029,35678565:0 +) +(1,1160:6630773,36543645:25952256,513147,134348 +k1,1159:9981152,36543645:278051 +k1,1159:11029907,36543645:278052 +k1,1159:13057114,36543645:278051 +k1,1159:15949396,36543645:278051 +k1,1159:17740674,36543645:278052 +k1,1159:19904196,36543645:278051 +k1,1159:20833676,36543645:278052 +k1,1159:24092304,36543645:278051 +k1,1159:25158753,36543645:278051 +k1,1159:27678136,36543645:278052 +k1,1159:31202185,36543645:278051 +k1,1159:32583029,36543645:0 +) +(1,1160:6630773,37408725:25952256,513147,126483 +k1,1159:8982659,37408725:178712 +k1,1159:9777408,37408725:178711 +k1,1159:10726823,37408725:178712 +k1,1159:12726779,37408725:178711 +k1,1159:15979785,37408725:178712 +k1,1159:17856534,37408725:178711 +k1,1159:19054331,37408725:178712 +k1,1159:20982198,37408725:178711 +k1,1159:23179419,37408725:178712 +k1,1159:23970892,37408725:178711 +k1,1159:25281411,37408725:178712 +k1,1159:28074353,37408725:178711 +k1,1159:31015408,37408725:178712 +k1,1159:32583029,37408725:0 +) +(1,1160:6630773,38273805:25952256,513147,7863 +g1,1159:7849087,38273805 +g1,1159:9231241,38273805 +g1,1159:10089762,38273805 +g1,1159:11308076,38273805 +k1,1160:32583029,38273805:19123406 +g1,1160:32583029,38273805 +) +v1,1162:6630773,38958660:0,393216,0 +(1,1169:6630773,40088846:25952256,1523402,196608 +g1,1169:6630773,40088846 +g1,1169:6630773,40088846 +g1,1169:6434165,40088846 +(1,1169:6434165,40088846:0,1523402,196608 +r1,1186:32779637,40088846:26345472,1720010,196608 +k1,1169:6434165,40088846:-26345472 +) +(1,1169:6434165,40088846:26345472,1523402,196608 +[1,1169:6630773,40088846:25952256,1326794,0 +(1,1164:6630773,39193097:25952256,431045,106246 +(1,1163:6630773,39193097:0,0,0 +g1,1163:6630773,39193097 +g1,1163:6630773,39193097 +g1,1163:6303093,39193097 +(1,1163:6303093,39193097:0,0,0 +) +g1,1163:6630773,39193097 +) +k1,1164:6630773,39193097:0 +g1,1164:10946175,39193097 +g1,1164:13269853,39193097 +g1,1164:13933761,39193097 +g1,1164:15925485,39193097 +g1,1164:17917209,39193097 +g1,1164:18581117,39193097 +h1,1164:19245025,39193097:0,0,0 +k1,1164:32583029,39193097:13338004 +g1,1164:32583029,39193097 +) +(1,1168:6630773,40009024:25952256,424439,79822 +(1,1166:6630773,40009024:0,0,0 +g1,1166:6630773,40009024 +g1,1166:6630773,40009024 +g1,1166:6303093,40009024 +(1,1166:6303093,40009024:0,0,0 +) +g1,1166:6630773,40009024 +) +g1,1168:7626635,40009024 +g1,1168:8954451,40009024 +g1,1168:9618359,40009024 +g1,1168:10282267,40009024 +g1,1168:10946175,40009024 +g1,1168:11610083,40009024 +g1,1168:12273991,40009024 +h1,1168:12605945,40009024:0,0,0 +k1,1168:32583029,40009024:19977084 +g1,1168:32583029,40009024 +) +] +) +g1,1169:32583029,40088846 +g1,1169:6630773,40088846 +g1,1169:6630773,40088846 +g1,1169:32583029,40088846 +g1,1169:32583029,40088846 +) +h1,1169:6630773,40285454:0,0,0 +v1,1172:6630773,41150534:0,393216,0 +(1,1186:6630773,44152599:25952256,3395281,0 +g1,1186:6630773,44152599 +g1,1186:6237557,44152599 +r1,1186:6368629,44152599:131072,3395281,0 +g1,1186:6567858,44152599 +g1,1186:6764466,44152599 +[1,1186:6764466,44152599:25818563,3395281,0 +(1,1174:6764466,41423011:25818563,665693,196608 +(1,1172:6764466,41423011:0,665693,196608 +r1,1186:8010564,41423011:1246098,862301,196608 +k1,1172:6764466,41423011:-1246098 +) +(1,1172:6764466,41423011:1246098,665693,196608 +) +k1,1172:8149278,41423011:138714 +k1,1172:9467207,41423011:327680 +k1,1172:9467207,41423011:0 +k1,1173:10877319,41423011:138714 +k1,1173:12120314,41423011:138713 +k1,1173:14188408,41423011:138714 +k1,1173:17597369,41423011:138714 +k1,1173:19471476,41423011:138714 +k1,1173:22305685,41423011:138713 +(1,1173:22305685,41423011:0,452978,115847 +r1,1186:24070798,41423011:1765113,568825,115847 +k1,1173:22305685,41423011:-1765113 +) +(1,1173:22305685,41423011:1765113,452978,115847 +k1,1173:22305685,41423011:3277 +h1,1173:24067521,41423011:0,411205,112570 +) +k1,1173:24209512,41423011:138714 +k1,1173:25031111,41423011:138714 +k1,1173:26188910,41423011:138714 +k1,1173:29074237,41423011:138713 +(1,1173:29074237,41423011:0,414482,115847 +r1,1186:29432503,41423011:358266,530329,115847 +k1,1173:29074237,41423011:-358266 +) +(1,1173:29074237,41423011:358266,414482,115847 +k1,1173:29074237,41423011:3277 +h1,1173:29429226,41423011:0,411205,112570 +) +k1,1173:29744887,41423011:138714 +k1,1173:30566486,41423011:138714 +k1,1173:32583029,41423011:0 +) +(1,1174:6764466,42288091:25818563,513147,134348 +k1,1173:8937792,42288091:162681 +k1,1173:10835866,42288091:162681 +k1,1173:13694043,42288091:162681 +(1,1173:13694043,42288091:0,452978,115847 +r1,1186:15459156,42288091:1765113,568825,115847 +k1,1173:13694043,42288091:-1765113 +) +(1,1173:13694043,42288091:1765113,452978,115847 +k1,1173:13694043,42288091:3277 +h1,1173:15455879,42288091:0,411205,112570 +) +k1,1173:15795507,42288091:162681 +k1,1173:16586023,42288091:162681 +k1,1173:17951945,42288091:162681 +k1,1173:19655378,42288091:162682 +k1,1173:20031014,42288091:162644 +k1,1173:21806536,42288091:162681 +k1,1173:22620645,42288091:162681 +k1,1173:23802412,42288091:162682 +k1,1173:26013093,42288091:162681 +k1,1173:26827202,42288091:162681 +k1,1173:28586340,42288091:162681 +k1,1173:29815292,42288091:162681 +k1,1173:30997058,42288091:162681 +k1,1173:32583029,42288091:0 +) +(1,1174:6764466,43153171:25818563,513147,134348 +k1,1173:7720854,43153171:194860 +k1,1173:10438850,43153171:194860 +k1,1173:12330438,43153171:194861 +k1,1173:13716743,43153171:194860 +k1,1173:16244029,43153171:194860 +k1,1173:17769270,43153171:194860 +k1,1173:21129520,43153171:194861 +k1,1173:22718331,43153171:194860 +k1,1173:23932276,43153171:194860 +k1,1173:25515189,43153171:194860 +k1,1173:26369342,43153171:194861 +k1,1173:27583287,43153171:194860 +k1,1173:32583029,43153171:0 +) +(1,1174:6764466,44018251:25818563,505283,134348 +g1,1173:9747664,44018251 +g1,1173:12505419,44018251 +(1,1173:12505419,44018251:0,452978,115847 +r1,1186:15677379,44018251:3171960,568825,115847 +k1,1173:12505419,44018251:-3171960 +) +(1,1173:12505419,44018251:3171960,452978,115847 +k1,1173:12505419,44018251:3277 +h1,1173:15674102,44018251:0,411205,112570 +) +g1,1173:15876608,44018251 +g1,1173:17267282,44018251 +(1,1173:17267282,44018251:0,452978,115847 +r1,1186:20439242,44018251:3171960,568825,115847 +k1,1173:17267282,44018251:-3171960 +) +(1,1173:17267282,44018251:3171960,452978,115847 +k1,1173:17267282,44018251:3277 +h1,1173:20435965,44018251:0,411205,112570 +) +k1,1174:32583029,44018251:11970117 +g1,1174:32583029,44018251 +) +] +g1,1186:32583029,44152599 +) +] +(1,1186:32583029,45706769:0,0,0 +g1,1186:32583029,45706769 +) +) +] +(1,1186:6630773,47279633:25952256,0,0 +h1,1186:6630773,47279633:25952256,0,0 +) +] +(1,1186:4262630,4025873:0,0,0 +[1,1186:-473656,4025873:0,0,0 +(1,1186:-473656,-710413:0,0,0 +(1,1186:-473656,-710413:0,0,0 +g1,1186:-473656,-710413 +) +g1,1186:-473656,-710413 +) +] ) -g1,1066:22022908,20221847 -g1,1066:22022908,20221847 +] +!62435 +}44 +Input:317:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:318:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:319:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!290 +{45 +[1,1261:4262630,47279633:28320399,43253760,0 +(1,1261:4262630,4025873:0,0,0 +[1,1261:-473656,4025873:0,0,0 +(1,1261:-473656,-710413:0,0,0 +(1,1261:-473656,-644877:0,0,0 +k1,1261:-473656,-644877:-65536 ) +(1,1261:-473656,4736287:0,0,0 +k1,1261:-473656,4736287:5209943 ) -g1,1066:22022908,20221847 +g1,1261:-473656,-710413 ) +] ) -g1,1066:22022908,20221847 -(1,1066:22022908,20221847:665744,859992,480932 -g1,1066:22688652,20221847 -g1,1066:22688652,20221847 +[1,1261:6630773,47279633:25952256,43253760,0 +[1,1261:6630773,4812305:25952256,786432,0 +(1,1261:6630773,4812305:25952256,505283,11795 +(1,1261:6630773,4812305:25952256,505283,11795 +g1,1261:3078558,4812305 +[1,1261:3078558,4812305:0,0,0 +(1,1261:3078558,2439708:0,1703936,0 +k1,1261:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,1261:2537886,2439708:1179648,16384,0 ) -g1,1066:22688652,20221847 -(1,1066:22688652,20221847:639530,859992,480932 -g1,1066:22688652,20221847 -g1,1066:23328182,20221847 -(1,1066:23328182,20221847:0,850556,480932 -(1,1066:23328182,20221847:0,0,0 -(1,1066:23328182,20221847:0,0,0 -g1,1066:23328182,20221847 -g1,1066:23328182,20221847 -g1,1066:23328182,20221847 -g1,1066:23328182,20221847 -g1,1066:23328182,20221847 -(1,1066:23328182,20221847:0,0,0 -(1,1066:23328182,20221847:331874,379060,9436 -(1,1066:23328182,20221847:331874,379060,9436 +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,1261:3078558,1915420:16384,1179648,0 ) -g1,1066:23660056,20221847 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) +] ) -g1,1066:23328182,20221847 -g1,1066:23328182,20221847 ) ) -g1,1066:23328182,20221847 +] +[1,1261:3078558,4812305:0,0,0 +(1,1261:3078558,2439708:0,1703936,0 +g1,1261:29030814,2439708 +g1,1261:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,1261:36151628,1915420:16384,1179648,0 ) +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) -g1,1066:23328182,20221847 -(1,1066:23328182,20221847:665744,859992,480932 -g1,1066:23993926,20221847 -g1,1066:23993926,20221847 +] ) -g1,1066:23993926,20221847 -(1,1066:23993926,20221847:639530,859992,480932 -g1,1066:23993926,20221847 -g1,1066:24633456,20221847 -(1,1066:24633456,20221847:0,855274,476214 -(1,1066:24633456,20221847:0,0,0 -(1,1066:24633456,20221847:0,0,0 -g1,1066:24633456,20221847 -g1,1066:24633456,20221847 -g1,1066:24633456,20221847 -g1,1066:24633456,20221847 -g1,1066:24633456,20221847 -(1,1066:24633456,20221847:0,0,0 -(1,1066:24633456,20221847:331874,388497,9436 -(1,1066:24633456,20221847:331874,388497,9436 +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,1261:37855564,2439708:1179648,16384,0 ) -g1,1066:24965330,20221847 ) +k1,1261:3078556,2439708:-34777008 ) -g1,1066:24633456,20221847 -g1,1066:24633456,20221847 +] +[1,1261:3078558,4812305:0,0,0 +(1,1261:3078558,49800853:0,16384,2228224 +k1,1261:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,1261:2537886,49800853:1179648,16384,0 ) +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,1261:3078558,51504789:16384,1179648,0 ) -g1,1066:24633456,20221847 +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) +] ) -g1,1066:24633456,20221847 -(1,1066:24633456,20221847:665744,859992,480932 -g1,1066:25299200,20221847 -g1,1066:25299200,20221847 ) -g1,1066:25299200,20221847 ) ] +[1,1261:3078558,4812305:0,0,0 +(1,1261:3078558,49800853:0,16384,2228224 +g1,1261:29030814,49800853 +g1,1261:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,1261:36151628,51504789:16384,1179648,0 ) +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 ) -g1,1066:17441342,20221847 -g1,1066:17441342,20221847 +] ) +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,1261:37855564,49800853:1179648,16384,0 ) -g1,1066:17441342,20221847 -g1,1071:17441342,20221847 -g1,1071:17441342,20221847 -g1,1073:17441342,20221847 -(1,1073:17441342,20221847:0,0,0 -(1,1073:17441342,20221847:0,0,0 -g1,1073:17441342,20221847 -(1,1073:17441342,20221847:0,0,0 -(1,1073:17441342,20221847:1976140,466322,199855 -(1,1073:17441342,20221847:1976140,466322,199855 -r1,1152:17441342,20221847:0,666177,199855 -(1,1073:17441342,20221847:0,349039,93333 -r1,1152:19417482,20221847:1976140,442372,93333 -k1,1073:17441342,20221847:-1976140 ) -(1,1073:17441342,20221847:1976140,349039,93333 -g1,1073:17725988,20221847 -h1,1073:18851466,20221847:562739,252906,0 -h1,1073:19414205,20221847:0,328964,90056 +k1,1261:3078556,49800853:-34777008 ) +] +g1,1261:6630773,4812305 +k1,1261:22348274,4812305:14920583 +g1,1261:23970945,4812305 +g1,1261:24793421,4812305 +g1,1261:27528893,4812305 +g1,1261:28938572,4812305 +) +) +] +[1,1261:6630773,45706769:25952256,40108032,0 +(1,1261:6630773,45706769:25952256,40108032,0 +(1,1261:6630773,45706769:0,0,0 +g1,1261:6630773,45706769 +) +[1,1261:6630773,45706769:25952256,40108032,0 +v1,1186:6630773,6254097:0,393216,0 +(1,1186:6630773,8822831:25952256,2961950,0 +g1,1186:6630773,8822831 +g1,1186:6237557,8822831 +r1,1261:6368629,8822831:131072,2961950,0 +g1,1186:6567858,8822831 +g1,1186:6764466,8822831 +[1,1186:6764466,8822831:25818563,2961950,0 +v1,1176:6764466,6254097:0,393216,0 +(1,1183:6764466,8626223:25818563,2765342,196608 +g1,1183:6764466,8626223 +g1,1183:6764466,8626223 +g1,1183:6567858,8626223 +(1,1183:6567858,8626223:0,2765342,196608 +r1,1261:32779637,8626223:26211779,2961950,196608 +k1,1183:6567857,8626223:-26211780 +) +(1,1183:6567858,8626223:26211779,2765342,196608 +[1,1183:6764466,8626223:25818563,2568734,0 +(1,1178:6764466,6465412:25818563,407923,9908 +(1,1177:6764466,6465412:0,0,0 +g1,1177:6764466,6465412 +g1,1177:6764466,6465412 +g1,1177:6436786,6465412 +(1,1177:6436786,6465412:0,0,0 +) +g1,1177:6764466,6465412 +) +k1,1178:6764466,6465412:0 +h1,1178:8092282,6465412:0,0,0 +k1,1178:32583030,6465412:24490748 +g1,1178:32583030,6465412 +) +(1,1179:6764466,7150267:25818563,407923,9908 +h1,1179:6764466,7150267:0,0,0 +k1,1179:6764466,7150267:0 +h1,1179:8092282,7150267:0,0,0 +k1,1179:32583030,7150267:24490748 +g1,1179:32583030,7150267 +) +(1,1180:6764466,7835122:25818563,431045,106246 +h1,1180:6764466,7835122:0,0,0 +g1,1180:9752052,7835122 +g1,1180:10415960,7835122 +g1,1180:11743776,7835122 +g1,1180:12739638,7835122 +g1,1180:13403546,7835122 +g1,1180:14399408,7835122 +g1,1180:15395270,7835122 +g1,1180:16059178,7835122 +h1,1180:17386994,7835122:0,0,0 +k1,1180:32583029,7835122:15196035 +g1,1180:32583029,7835122 +) +(1,1181:6764466,8519977:25818563,424439,106246 +h1,1181:6764466,8519977:0,0,0 +g1,1181:9420098,8519977 +h1,1181:10084006,8519977:0,0,0 +k1,1181:32583030,8519977:22499024 +g1,1181:32583030,8519977 +) +] +) +g1,1183:32583029,8626223 +g1,1183:6764466,8626223 +g1,1183:6764466,8626223 +g1,1183:32583029,8626223 +g1,1183:32583029,8626223 +) +h1,1183:6764466,8822831:0,0,0 +] +g1,1186:32583029,8822831 +) +h1,1186:6630773,8822831:0,0,0 +(1,1189:6630773,9687911:25952256,513147,134348 +h1,1188:6630773,9687911:983040,0,0 +k1,1188:9554934,9687911:305998 +k1,1188:13215065,9687911:305998 +k1,1188:14805569,9687911:305998 +k1,1188:17157602,9687911:305999 +k1,1188:17878335,9687911:305890 +k1,1188:20946677,9687911:305999 +k1,1188:22820296,9687911:305998 +k1,1188:24727994,9687911:305998 +k1,1188:26735962,9687911:305998 +k1,1188:31394206,9687911:305998 +k1,1189:32583029,9687911:0 +) +(1,1189:6630773,10552991:25952256,513147,134348 +k1,1188:9173570,10552991:172360 +k1,1188:12683022,10552991:172359 +k1,1188:16305197,10552991:172360 +k1,1188:19669159,10552991:172359 +k1,1188:21032964,10552991:172360 +k1,1188:24231120,10552991:172359 +k1,1188:25687986,10552991:172360 +k1,1188:26851905,10552991:172359 +k1,1188:30361358,10552991:172360 +k1,1188:32583029,10552991:0 +) +(1,1189:6630773,11418071:25952256,513147,134348 +k1,1188:7452342,11418071:135407 +k1,1188:11164050,11418071:135408 +k1,1188:13607635,11418071:135407 +k1,1188:14402335,11418071:135408 +k1,1188:17334163,11418071:135407 +k1,1188:19656506,11418071:135407 +k1,1188:20407952,11418071:135408 +k1,1188:22428830,11418071:135407 +k1,1188:23931318,11418071:135407 +k1,1188:25085811,11418071:135408 +k1,1188:27064090,11418071:135407 +k1,1188:29978225,11418071:135408 +k1,1188:30645129,11418071:135407 +k1,1189:32583029,11418071:0 +) +(1,1189:6630773,12283151:25952256,513147,134348 +k1,1188:8380202,12283151:169356 +k1,1188:9200986,12283151:169356 +k1,1188:11488465,12283151:169355 +k1,1188:14029569,12283151:169356 +k1,1188:15218010,12283151:169356 +k1,1188:17040839,12283151:169356 +k1,1188:19905691,12283151:169356 +k1,1188:20757932,12283151:169356 +k1,1188:23673901,12283151:169355 +k1,1188:27602402,12283151:169356 +k1,1188:28423186,12283151:169356 +k1,1188:30044164,12283151:169356 +k1,1188:32583029,12283151:0 +) +(1,1189:6630773,13148231:25952256,513147,7863 +g1,1188:7489294,13148231 +g1,1188:8707608,13148231 +k1,1189:32583029,13148231:21723874 +g1,1189:32583029,13148231 +) +v1,1191:6630773,13833086:0,393216,0 +(1,1216:6630773,19858834:25952256,6418964,196608 +g1,1216:6630773,19858834 +g1,1216:6630773,19858834 +g1,1216:6434165,19858834 +(1,1216:6434165,19858834:0,6418964,196608 +r1,1261:32779637,19858834:26345472,6615572,196608 +k1,1216:6434165,19858834:-26345472 +) +(1,1216:6434165,19858834:26345472,6418964,196608 +[1,1216:6630773,19858834:25952256,6222356,0 +(1,1193:6630773,14067523:25952256,431045,106246 +(1,1192:6630773,14067523:0,0,0 +g1,1192:6630773,14067523 +g1,1192:6630773,14067523 +g1,1192:6303093,14067523 +(1,1192:6303093,14067523:0,0,0 +) +g1,1192:6630773,14067523 +) +g1,1193:8290543,14067523 +g1,1193:8954451,14067523 +g1,1193:9618359,14067523 +g1,1193:10282267,14067523 +g1,1193:11278129,14067523 +g1,1193:12605945,14067523 +g1,1193:13933761,14067523 +g1,1193:14929623,14067523 +g1,1193:17253301,14067523 +g1,1193:17917209,14067523 +g1,1193:20572841,14067523 +k1,1193:20572841,14067523:1652 +h1,1193:22234263,14067523:0,0,0 +k1,1193:32583029,14067523:10348766 +g1,1193:32583029,14067523 +) +(1,1197:6630773,14883450:25952256,424439,79822 +(1,1195:6630773,14883450:0,0,0 +g1,1195:6630773,14883450 +g1,1195:6630773,14883450 +g1,1195:6303093,14883450 +(1,1195:6303093,14883450:0,0,0 +) +g1,1195:6630773,14883450 +) +g1,1197:7626635,14883450 +g1,1197:8954451,14883450 +g1,1197:9618359,14883450 +g1,1197:10282267,14883450 +h1,1197:10614221,14883450:0,0,0 +k1,1197:32583029,14883450:21968808 +g1,1197:32583029,14883450 +) +(1,1199:6630773,15699377:25952256,424439,79822 +(1,1198:6630773,15699377:0,0,0 +g1,1198:6630773,15699377 +g1,1198:6630773,15699377 +g1,1198:6303093,15699377 +(1,1198:6303093,15699377:0,0,0 +) +g1,1198:6630773,15699377 +) +g1,1199:8622497,15699377 +g1,1199:9286405,15699377 +g1,1199:10282267,15699377 +g1,1199:10946175,15699377 +h1,1199:11278129,15699377:0,0,0 +k1,1199:32583029,15699377:21304900 +g1,1199:32583029,15699377 +) +(1,1203:6630773,16515304:25952256,424439,79822 +(1,1201:6630773,16515304:0,0,0 +g1,1201:6630773,16515304 +g1,1201:6630773,16515304 +g1,1201:6303093,16515304 +(1,1201:6303093,16515304:0,0,0 +) +g1,1201:6630773,16515304 +) +g1,1203:7626635,16515304 +g1,1203:8954451,16515304 +g1,1203:9618359,16515304 +g1,1203:10282267,16515304 +h1,1203:10614221,16515304:0,0,0 +k1,1203:32583029,16515304:21968808 +g1,1203:32583029,16515304 +) +(1,1205:6630773,17331231:25952256,398014,9908 +(1,1204:6630773,17331231:0,0,0 +g1,1204:6630773,17331231 +g1,1204:6630773,17331231 +g1,1204:6303093,17331231 +(1,1204:6303093,17331231:0,0,0 +) +g1,1204:6630773,17331231 +) +g1,1205:8290543,17331231 +g1,1205:8954451,17331231 +h1,1205:10282267,17331231:0,0,0 +k1,1205:32583029,17331231:22300762 +g1,1205:32583029,17331231 +) +(1,1209:6630773,18147158:25952256,424439,79822 +(1,1207:6630773,18147158:0,0,0 +g1,1207:6630773,18147158 +g1,1207:6630773,18147158 +g1,1207:6303093,18147158 +(1,1207:6303093,18147158:0,0,0 +) +g1,1207:6630773,18147158 +) +g1,1209:7626635,18147158 +g1,1209:8954451,18147158 +g1,1209:9618359,18147158 +g1,1209:10282267,18147158 +h1,1209:10614221,18147158:0,0,0 +k1,1209:32583029,18147158:21968808 +g1,1209:32583029,18147158 +) +(1,1211:6630773,18963085:25952256,398014,9908 +(1,1210:6630773,18963085:0,0,0 +g1,1210:6630773,18963085 +g1,1210:6630773,18963085 +g1,1210:6303093,18963085 +(1,1210:6303093,18963085:0,0,0 +) +g1,1210:6630773,18963085 +) +g1,1211:8290543,18963085 +g1,1211:8954451,18963085 +h1,1211:10282267,18963085:0,0,0 +k1,1211:32583029,18963085:22300762 +g1,1211:32583029,18963085 +) +(1,1215:6630773,19779012:25952256,424439,79822 +(1,1213:6630773,19779012:0,0,0 +g1,1213:6630773,19779012 +g1,1213:6630773,19779012 +g1,1213:6303093,19779012 +(1,1213:6303093,19779012:0,0,0 +) +g1,1213:6630773,19779012 +) +g1,1215:7626635,19779012 +g1,1215:8954451,19779012 +g1,1215:9950313,19779012 +g1,1215:10946175,19779012 +g1,1215:11278129,19779012 +h1,1215:11610083,19779012:0,0,0 +k1,1215:32583029,19779012:20972946 +g1,1215:32583029,19779012 +) +] +) +g1,1216:32583029,19858834 +g1,1216:6630773,19858834 +g1,1216:6630773,19858834 +g1,1216:32583029,19858834 +g1,1216:32583029,19858834 +) +h1,1216:6630773,20055442:0,0,0 +(1,1220:6630773,20920522:25952256,513147,126483 +h1,1219:6630773,20920522:983040,0,0 +k1,1219:8603021,20920522:171319 +k1,1219:9232437,20920522:171319 +k1,1219:10508037,20920522:171318 +k1,1219:11427122,20920522:171319 +k1,1219:13038267,20920522:171319 +k1,1219:13825624,20920522:171319 +k1,1219:15016027,20920522:171318 +k1,1219:16493479,20920522:171319 +k1,1219:17833305,20920522:171319 +k1,1219:18663916,20920522:171319 +k1,1219:20331421,20920522:171318 +k1,1219:22531735,20920522:171319 +k1,1219:25175727,20920522:171319 +k1,1219:28733291,20920522:171319 +k1,1219:29571765,20920522:171318 +k1,1219:30331597,20920522:171319 +k1,1219:31034413,20920522:171319 +k1,1219:32583029,20920522:0 +) +(1,1220:6630773,21785602:25952256,513147,134348 +k1,1219:7371598,21785602:209328 +k1,1219:10885907,21785602:209328 +k1,1219:12963011,21785602:209328 +k1,1219:16631985,21785602:209328 +k1,1219:17500605,21785602:209328 +k1,1219:19687810,21785602:209328 +k1,1219:23473437,21785602:209327 +k1,1219:24368927,21785602:209328 +k1,1219:26556132,21785602:209328 +(1,1219:26556132,21785602:0,424981,115847 +r1,1261:27969533,21785602:1413401,540828,115847 +k1,1219:26556132,21785602:-1413401 +) +(1,1219:26556132,21785602:1413401,424981,115847 +k1,1219:26556132,21785602:3277 +h1,1219:27966256,21785602:0,411205,112570 +) +k1,1219:28178861,21785602:209328 +k1,1219:28919686,21785602:209328 +k1,1219:29788306,21785602:209328 +k1,1219:32010900,21785602:209328 +k1,1219:32583029,21785602:0 +) +(1,1220:6630773,22650682:25952256,513147,134348 +k1,1219:7967677,22650682:264735 +k1,1219:9251498,22650682:264736 +(1,1219:9251498,22650682:0,452978,115847 +r1,1261:11720035,22650682:2468537,568825,115847 +k1,1219:9251498,22650682:-2468537 +) +(1,1219:9251498,22650682:2468537,452978,115847 +k1,1219:9251498,22650682:3277 +h1,1219:11716758,22650682:0,411205,112570 +) +k1,1219:11984770,22650682:264735 +k1,1219:15007260,22650682:264735 +k1,1219:15670454,22650682:264735 +k1,1219:16466687,22650682:264736 +k1,1219:17087282,22650682:264735 +k1,1219:19329894,22650682:264735 +k1,1219:20253921,22650682:264735 +k1,1219:22531923,22650682:264736 +k1,1219:23368787,22650682:264735 +k1,1219:24836763,22650682:264735 +k1,1219:26786429,22650682:264735 +k1,1219:29808920,22650682:264736 +k1,1219:32051532,22650682:264735 +k1,1219:32583029,22650682:0 +) +(1,1220:6630773,23515762:25952256,513147,134348 +k1,1219:9968795,23515762:244067 +k1,1219:10974390,23515762:244067 +k1,1219:14077793,23515762:244067 +k1,1219:18135400,23515762:244067 +k1,1219:19167865,23515762:244067 +k1,1219:21265946,23515762:244067 +k1,1219:22777479,23515762:244067 +k1,1219:23377406,23515762:244067 +k1,1219:25645880,23515762:244067 +k1,1219:27867824,23515762:244067 +k1,1219:28771183,23515762:244067 +k1,1219:32227169,23515762:244067 +k1,1219:32583029,23515762:0 +) +(1,1220:6630773,24380842:25952256,513147,134348 +g1,1219:8807879,24380842 +g1,1219:9666400,24380842 +g1,1219:10884714,24380842 +g1,1219:12737416,24380842 +g1,1219:14949911,24380842 +g1,1219:15835302,24380842 +g1,1219:17053616,24380842 +g1,1219:19576096,24380842 +g1,1219:21753202,24380842 +g1,1219:22568469,24380842 +g1,1219:23786783,24380842 +g1,1219:27346043,24380842 +(1,1219:27346043,24380842:0,414482,115847 +r1,1261:27704309,24380842:358266,530329,115847 +k1,1219:27346043,24380842:-358266 +) +(1,1219:27346043,24380842:358266,414482,115847 +k1,1219:27346043,24380842:3277 +h1,1219:27701032,24380842:0,411205,112570 +) +k1,1220:32583029,24380842:4705050 +g1,1220:32583029,24380842 +) +(1,1222:6630773,25245922:25952256,505283,134348 +h1,1221:6630773,25245922:983040,0,0 +k1,1221:9590260,25245922:317075 +k1,1221:11288179,25245922:317075 +k1,1221:12775727,25245922:317075 +k1,1221:16757575,25245922:317075 +k1,1221:18623266,25245922:317075 +k1,1221:22742084,25245922:317075 +k1,1221:24050719,25245922:317075 +k1,1221:26363365,25245922:317075 +k1,1221:28343088,25245922:317075 +k1,1221:29276201,25245922:317075 +k1,1221:30612361,25245922:317075 +k1,1221:32583029,25245922:0 +) +(1,1222:6630773,26111002:25952256,513147,134348 +k1,1221:8854235,26111002:194467 +k1,1221:10240148,26111002:194468 +k1,1221:11720431,26111002:194467 +k1,1221:12933984,26111002:194468 +k1,1221:14285161,26111002:194467 +k1,1221:16521730,26111002:194467 +k1,1221:18795000,26111002:194468 +k1,1221:21848803,26111002:194467 +k1,1221:22574767,26111002:194467 +k1,1221:23125095,26111002:194468 +k1,1221:24420567,26111002:194467 +k1,1221:26890445,26111002:194468 +k1,1221:27744204,26111002:194467 +k1,1221:28957756,26111002:194467 +k1,1221:29567062,26111002:194463 +k1,1221:32583029,26111002:0 +) +(1,1222:6630773,26976082:25952256,513147,134348 +g1,1221:7879889,26976082 +g1,1221:9098203,26976082 +g1,1221:10457419,26976082 +g1,1221:11466018,26976082 +g1,1221:13163400,26976082 +h1,1221:13960318,26976082:0,0,0 +g1,1221:14159547,26976082 +g1,1221:15306427,26976082 +g1,1221:16276359,26976082 +g1,1221:19165186,26976082 +g1,1221:23096690,26976082 +g1,1221:23955211,26976082 +g1,1221:26132317,26976082 +k1,1222:32583029,26976082:3417706 +g1,1222:32583029,26976082 +) +v1,1224:6630773,27660937:0,393216,0 +(1,1252:6630773,36258932:25952256,8991211,196608 +g1,1252:6630773,36258932 +g1,1252:6630773,36258932 +g1,1252:6434165,36258932 +(1,1252:6434165,36258932:0,8991211,196608 +r1,1261:32779637,36258932:26345472,9187819,196608 +k1,1252:6434165,36258932:-26345472 +) +(1,1252:6434165,36258932:26345472,8991211,196608 +[1,1252:6630773,36258932:25952256,8794603,0 +(1,1226:6630773,27888768:25952256,424439,106246 +(1,1225:6630773,27888768:0,0,0 +g1,1225:6630773,27888768 +g1,1225:6630773,27888768 +g1,1225:6303093,27888768 +(1,1225:6303093,27888768:0,0,0 +) +g1,1225:6630773,27888768 +) +g1,1226:8290543,27888768 +g1,1226:9286405,27888768 +g1,1226:11610083,27888768 +h1,1226:12273991,27888768:0,0,0 +k1,1226:32583029,27888768:20309038 +g1,1226:32583029,27888768 +) +(1,1227:6630773,28573623:25952256,407923,9908 +h1,1227:6630773,28573623:0,0,0 +h1,1227:7958589,28573623:0,0,0 +k1,1227:32583029,28573623:24624440 +g1,1227:32583029,28573623 +) +(1,1231:6630773,29389550:25952256,424439,79822 +(1,1229:6630773,29389550:0,0,0 +g1,1229:6630773,29389550 +g1,1229:6630773,29389550 +g1,1229:6303093,29389550 +(1,1229:6303093,29389550:0,0,0 +) +g1,1229:6630773,29389550 +) +g1,1231:7626635,29389550 +g1,1231:8954451,29389550 +g1,1231:9618359,29389550 +g1,1231:10282267,29389550 +g1,1231:10946175,29389550 +g1,1231:11610083,29389550 +g1,1231:12273991,29389550 +h1,1231:12605945,29389550:0,0,0 +k1,1231:32583029,29389550:19977084 +g1,1231:32583029,29389550 +) +(1,1233:6630773,30205477:25952256,407923,9908 +(1,1232:6630773,30205477:0,0,0 +g1,1232:6630773,30205477 +g1,1232:6630773,30205477 +g1,1232:6303093,30205477 +(1,1232:6303093,30205477:0,0,0 +) +g1,1232:6630773,30205477 +) +g1,1233:8290543,30205477 +g1,1233:8954451,30205477 +h1,1233:9950313,30205477:0,0,0 +k1,1233:32583029,30205477:22632716 +g1,1233:32583029,30205477 +) +(1,1237:6630773,31021404:25952256,424439,79822 +(1,1235:6630773,31021404:0,0,0 +g1,1235:6630773,31021404 +g1,1235:6630773,31021404 +g1,1235:6303093,31021404 +(1,1235:6303093,31021404:0,0,0 +) +g1,1235:6630773,31021404 +) +g1,1237:7626635,31021404 +g1,1237:8954451,31021404 +g1,1237:9618359,31021404 +g1,1237:10282267,31021404 +g1,1237:10946175,31021404 +g1,1237:11610083,31021404 +g1,1237:12273991,31021404 +h1,1237:12605945,31021404:0,0,0 +k1,1237:32583029,31021404:19977084 +g1,1237:32583029,31021404 +) +(1,1239:6630773,31837331:25952256,407923,9908 +(1,1238:6630773,31837331:0,0,0 +g1,1238:6630773,31837331 +g1,1238:6630773,31837331 +g1,1238:6303093,31837331 +(1,1238:6303093,31837331:0,0,0 +) +g1,1238:6630773,31837331 +) +g1,1239:8290543,31837331 +g1,1239:8954451,31837331 +h1,1239:9950313,31837331:0,0,0 +k1,1239:32583029,31837331:22632716 +g1,1239:32583029,31837331 +) +(1,1243:6630773,32653258:25952256,424439,79822 +(1,1241:6630773,32653258:0,0,0 +g1,1241:6630773,32653258 +g1,1241:6630773,32653258 +g1,1241:6303093,32653258 +(1,1241:6303093,32653258:0,0,0 +) +g1,1241:6630773,32653258 +) +g1,1243:7626635,32653258 +g1,1243:8954451,32653258 +g1,1243:9618359,32653258 +g1,1243:10282267,32653258 +g1,1243:10946175,32653258 +g1,1243:11610083,32653258 +g1,1243:12273991,32653258 +h1,1243:12605945,32653258:0,0,0 +k1,1243:32583029,32653258:19977084 +g1,1243:32583029,32653258 +) +(1,1245:6630773,33469185:25952256,407923,9908 +(1,1244:6630773,33469185:0,0,0 +g1,1244:6630773,33469185 +g1,1244:6630773,33469185 +g1,1244:6303093,33469185 +(1,1244:6303093,33469185:0,0,0 +) +g1,1244:6630773,33469185 +) +g1,1245:8290543,33469185 +g1,1245:8954451,33469185 +h1,1245:9950313,33469185:0,0,0 +k1,1245:32583029,33469185:22632716 +g1,1245:32583029,33469185 +) +(1,1249:6630773,34809400:25952256,431045,112852 +k1,1249:7702043,34809400:407362 +k1,1249:10433082,34809400:407361 +k1,1249:11504352,34809400:407362 +k1,1249:13239530,34809400:407362 +k1,1249:13978845,34809400:407361 +k1,1249:15714023,34809400:407362 +k1,1249:18113109,34809400:407362 +k1,1249:20512194,34809400:407361 +k1,1249:22911280,34809400:407362 +k1,1249:23982549,34809400:407361 +k1,1249:25385773,34809400:407362 +k1,1249:26125089,34809400:407362 +k1,1249:29188081,34809400:407361 +k1,1249:30259351,34809400:407362 +k1,1249:32583029,34809400:0 +) +(1,1249:6630773,35494255:25952256,424439,112852 +g1,1249:8954451,35494255 +k1,1249:32583029,35494255:21636854 +g1,1249:32583029,35494255 +) +(1,1251:6630773,36179110:25952256,424439,79822 +(1,1249:6630773,36179110:0,0,0 +g1,1249:6630773,36179110 +g1,1249:6630773,36179110 +g1,1249:6303093,36179110 +(1,1249:6303093,36179110:0,0,0 +) +g1,1249:6630773,36179110 +) +g1,1251:7626635,36179110 +g1,1251:8954451,36179110 +g1,1251:9618359,36179110 +g1,1251:10282267,36179110 +g1,1251:10946175,36179110 +g1,1251:11610083,36179110 +g1,1251:12273991,36179110 +h1,1251:12605945,36179110:0,0,0 +k1,1251:32583029,36179110:19977084 +g1,1251:32583029,36179110 +) +] +) +g1,1252:32583029,36258932 +g1,1252:6630773,36258932 +g1,1252:6630773,36258932 +g1,1252:32583029,36258932 +g1,1252:32583029,36258932 +) +h1,1252:6630773,36455540:0,0,0 +v1,1256:6630773,37320620:0,393216,0 +(1,1257:6630773,39457605:25952256,2530201,0 +g1,1257:6630773,39457605 +g1,1257:6237557,39457605 +r1,1261:6368629,39457605:131072,2530201,0 +g1,1257:6567858,39457605 +g1,1257:6764466,39457605 +[1,1257:6764466,39457605:25818563,2530201,0 +(1,1257:6764466,37593097:25818563,665693,196608 +(1,1256:6764466,37593097:0,665693,196608 +r1,1261:8010564,37593097:1246098,862301,196608 +k1,1256:6764466,37593097:-1246098 +) +(1,1256:6764466,37593097:1246098,665693,196608 +) +k1,1256:8161882,37593097:151318 +k1,1256:9479811,37593097:327680 +k1,1256:11682406,37593097:151318 +k1,1256:14109133,37593097:151317 +k1,1256:16820943,37593097:151318 +k1,1256:17631553,37593097:151318 +k1,1256:18801956,37593097:151318 +k1,1256:22469935,37593097:151317 +k1,1256:23237291,37593097:151318 +k1,1256:24407694,37593097:151318 +k1,1256:26055199,37593097:151318 +k1,1256:28177184,37593097:151317 +k1,1256:30183826,37593097:151318 +k1,1256:30986572,37593097:151318 +k1,1256:32583029,37593097:0 +) +(1,1257:6764466,38458177:25818563,513147,134348 +k1,1256:8018054,38458177:187317 +k1,1256:9903410,38458177:187318 +k1,1256:10446587,38458177:187317 +k1,1256:13204226,38458177:187317 +k1,1256:13923040,38458177:187317 +k1,1256:15734340,38458177:187318 +k1,1256:17113102,38458177:187317 +k1,1256:17766380,38458177:187317 +k1,1256:18569736,38458177:187318 +k1,1256:19888860,38458177:187317 +k1,1256:21443258,38458177:187317 +k1,1256:22401279,38458177:187318 +k1,1256:24195539,38458177:187317 +k1,1256:24914353,38458177:187317 +k1,1256:28000327,38458177:187317 +k1,1256:30717335,38458177:187318 +k1,1256:31563944,38458177:187317 +k1,1256:32583029,38458177:0 +) +(1,1257:6764466,39323257:25818563,513147,134348 +g1,1256:8976961,39323257 +g1,1256:9835482,39323257 +g1,1256:11053796,39323257 +k1,1257:32583029,39323257:18382850 +g1,1257:32583029,39323257 +) +] +g1,1257:32583029,39457605 +) +h1,1257:6630773,39457605:0,0,0 +v1,1260:6630773,40322685:0,393216,0 +(1,1261:6630773,45143610:25952256,5214141,0 +g1,1261:6630773,45143610 +g1,1261:6237557,45143610 +r1,1261:6368629,45143610:131072,5214141,0 +g1,1261:6567858,45143610 +g1,1261:6764466,45143610 +[1,1261:6764466,45143610:25818563,5214141,0 +(1,1261:6764466,40683862:25818563,754393,260573 +(1,1260:6764466,40683862:0,754393,260573 +r1,1261:8010564,40683862:1246098,1014966,260573 +k1,1260:6764466,40683862:-1246098 +) +(1,1260:6764466,40683862:1246098,754393,260573 +) +k1,1260:8279499,40683862:268935 +k1,1260:8607179,40683862:327680 +k1,1260:10421453,40683862:268935 +k1,1260:13716185,40683862:268935 +k1,1260:16366698,40683862:268935 +k1,1260:17251671,40683862:268935 +k1,1260:18954534,40683862:268935 +k1,1260:19638243,40683862:268866 +k1,1260:21670752,40683862:268935 +k1,1260:24799023,40683862:268935 +k1,1260:25719386,40683862:268935 +k1,1260:28296499,40683862:268935 +k1,1260:30770721,40683862:268935 +k1,1260:31725818,40683862:268935 +k1,1261:32583029,40683862:0 +) +(1,1261:6764466,41548942:25818563,513147,134348 +k1,1260:9469628,41548942:277053 +k1,1260:10398110,41548942:277054 +k1,1260:11287925,41548942:277053 +k1,1260:13060510,41548942:277053 +k1,1260:15029703,41548942:277053 +k1,1260:15966049,41548942:277054 +k1,1260:17751741,41548942:277053 +k1,1260:21813498,41548942:277053 +k1,1260:23873786,41548942:277053 +k1,1260:27010176,41548942:277054 +k1,1260:27818726,41548942:277053 +k1,1260:31563944,41548942:277053 +k1,1260:32583029,41548942:0 +) +(1,1261:6764466,42414022:25818563,505283,134348 +k1,1260:10306359,42414022:179241 +k1,1260:13606424,42414022:179241 +k1,1260:16686288,42414022:179241 +k1,1260:17548414,42414022:179241 +k1,1260:19664899,42414022:179241 +k1,1260:20835701,42414022:179242 +k1,1260:24295674,42414022:179241 +k1,1260:25868866,42414022:179241 +k1,1260:27792020,42414022:179241 +k1,1260:29141734,42414022:179241 +k1,1260:32583029,42414022:0 +) +(1,1261:6764466,43279102:25818563,513147,134348 +k1,1260:7656137,43279102:275633 +k1,1260:8950856,43279102:275634 +k1,1260:12876844,43279102:275633 +k1,1260:15181473,43279102:275634 +k1,1260:18391808,43279102:275633 +k1,1260:19133403,43279102:275634 +k1,1260:20600481,43279102:275633 +k1,1260:22206495,43279102:275633 +k1,1260:25341465,43279102:275634 +k1,1260:26148595,43279102:275633 +k1,1260:28795977,43279102:275634 +k1,1260:31773659,43279102:275633 +k1,1260:32583029,43279102:0 +) +(1,1261:6764466,44144182:25818563,513147,126483 +k1,1260:8290363,44144182:195516 +k1,1260:11511675,44144182:195515 +k1,1260:13182406,44144182:195516 +k1,1260:14887872,44144182:195516 +k1,1260:17638636,44144182:195515 +k1,1260:19602313,44144182:195516 +k1,1260:21452613,44144182:195516 +k1,1260:22179625,44144182:195515 +k1,1260:25374724,44144182:195516 +k1,1260:28504287,44144182:195516 +k1,1260:29771971,44144182:195515 +k1,1260:31033758,44144182:195516 +k1,1260:32583029,44144182:0 +) +(1,1261:6764466,45009262:25818563,513147,134348 +k1,1260:7560430,45009262:179926 +k1,1260:8759441,45009262:179926 +k1,1260:10306449,45009262:179927 +k1,1260:11145667,45009262:179926 +k1,1260:14351390,45009262:179926 +k1,1260:15722761,45009262:179926 +k1,1260:18979602,45009262:179926 +k1,1260:21541106,45009262:179926 +k1,1260:22337071,45009262:179927 +k1,1260:26246651,45009262:179926 +k1,1260:29498905,45009262:179926 +k1,1260:32583029,45009262:0 +) +] +g1,1261:32583029,45143610 +) +] +(1,1261:32583029,45706769:0,0,0 +g1,1261:32583029,45706769 +) +) +] +(1,1261:6630773,47279633:25952256,0,0 +h1,1261:6630773,47279633:25952256,0,0 +) +] +(1,1261:4262630,4025873:0,0,0 +[1,1261:-473656,4025873:0,0,0 +(1,1261:-473656,-710413:0,0,0 +(1,1261:-473656,-710413:0,0,0 +g1,1261:-473656,-710413 +) +g1,1261:-473656,-710413 +) +] +) +] +!26052 +}45 +Input:320:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:321:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:322:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:323:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:324:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:325:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!569 +{46 +[1,1384:4262630,47279633:28320399,43253760,0 +(1,1384:4262630,4025873:0,0,0 +[1,1384:-473656,4025873:0,0,0 +(1,1384:-473656,-710413:0,0,0 +(1,1384:-473656,-644877:0,0,0 +k1,1384:-473656,-644877:-65536 ) -g1,1073:19417482,20221847 +(1,1384:-473656,4736287:0,0,0 +k1,1384:-473656,4736287:5209943 ) +g1,1384:-473656,-710413 ) -g1,1073:17441342,20221847 -g1,1073:17441342,20221847 +] ) +[1,1384:6630773,47279633:25952256,43253760,0 +[1,1384:6630773,4812305:25952256,786432,0 +(1,1384:6630773,4812305:25952256,505283,11795 +(1,1384:6630773,4812305:25952256,505283,11795 +g1,1384:3078558,4812305 +[1,1384:3078558,4812305:0,0,0 +(1,1384:3078558,2439708:0,1703936,0 +k1,1384:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,1384:2537886,2439708:1179648,16384,0 ) -g1,1073:17441342,20221847 -g1,1074:17441342,20221847 -(1,1074:17441342,20221847:0,0,0 -(1,1074:17441342,20221847:0,0,0 -g1,1074:17441342,20221847 -g1,1074:17441342,20221847 -g1,1074:17441342,20221847 -g1,1074:17441342,20221847 -g1,1074:17441342,20221847 -(1,1074:17441342,20221847:0,0,0 -(1,1074:17441342,20221847:6599312,404226,101187 -(1,1074:17441342,20221847:6599312,404226,101187 -(1,1074:17441342,20221847:0,363038,98932 -r1,1152:19417482,20221847:1976140,461970,98932 -k1,1074:17441342,20221847:-1976140 +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,1384:3078558,1915420:16384,1179648,0 ) -(1,1074:17441342,20221847:1976140,363038,98932 -k1,1074:17441342,20221847:3277 -h1,1074:19414205,20221847:0,328964,90056 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) -g1,1074:19583157,20221847 -g1,1074:22254929,20221847 +] ) -g1,1074:24040654,20221847 ) ) -g1,1074:17441342,20221847 -g1,1074:17441342,20221847 +] +[1,1384:3078558,4812305:0,0,0 +(1,1384:3078558,2439708:0,1703936,0 +g1,1384:29030814,2439708 +g1,1384:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,1384:36151628,1915420:16384,1179648,0 ) +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) -g1,1074:17441342,20221847 -g1,1075:17441342,20221847 -(1,1075:17441342,20221847:0,0,0 -(1,1075:17441342,20221847:0,0,0 -g1,1075:17441342,20221847 -g1,1075:17441342,20221847 -g1,1075:17441342,20221847 -g1,1075:17441342,20221847 -g1,1075:17441342,20221847 -(1,1075:17441342,20221847:0,0,0 -(1,1075:17441342,20221847:3738272,404226,93333 -(1,1075:17441342,20221847:3738272,404226,93333 -(1,1075:17441342,20221847:0,363038,93333 -r1,1152:19417482,20221847:1976140,456371,93333 -k1,1075:17441342,20221847:-1976140 +] ) -(1,1075:17441342,20221847:1976140,363038,93333 -k1,1075:17441342,20221847:3277 -h1,1075:19414205,20221847:0,328964,90056 +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,1384:37855564,2439708:1179648,16384,0 ) -g1,1075:19583157,20221847 ) -g1,1075:21179614,20221847 +k1,1384:3078556,2439708:-34777008 ) +] +[1,1384:3078558,4812305:0,0,0 +(1,1384:3078558,49800853:0,16384,2228224 +k1,1384:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,1384:2537886,49800853:1179648,16384,0 ) -g1,1075:17441342,20221847 -g1,1075:17441342,20221847 -) -) -g1,1075:17441342,20221847 -g1,1077:17441342,20221847 -g1,1077:17441342,20221847 -) -g1,1077:17441342,20221847 -) -) -g1,1079:28705113,21584556 -k1,1079:32583029,21584556:3877916 -) -v1,1082:6630773,23267201:0,393216,0 -(1,1090:6630773,24883196:25952256,2009211,196608 -g1,1090:6630773,24883196 -g1,1090:6630773,24883196 -g1,1090:6434165,24883196 -(1,1090:6434165,24883196:0,2009211,196608 -r1,1152:32779637,24883196:26345472,2205819,196608 -k1,1090:6434165,24883196:-26345472 -) -(1,1090:6434165,24883196:26345472,2009211,196608 -[1,1090:6630773,24883196:25952256,1812603,0 -(1,1084:6630773,23474819:25952256,404226,82312 -(1,1083:6630773,23474819:0,0,0 -g1,1083:6630773,23474819 -g1,1083:6630773,23474819 -g1,1083:6303093,23474819 -(1,1083:6303093,23474819:0,0,0 -) -g1,1083:6630773,23474819 -) -g1,1084:8211502,23474819 -g1,1084:9159940,23474819 -g1,1084:11689106,23474819 -h1,1084:13269834,23474819:0,0,0 -k1,1084:32583030,23474819:19313196 -g1,1084:32583030,23474819 -) -(1,1085:6630773,24140997:25952256,379060,6290 -h1,1085:6630773,24140997:0,0,0 -h1,1085:7895356,24140997:0,0,0 -k1,1085:32583028,24140997:24687672 -g1,1085:32583028,24140997 -) -(1,1089:6630773,24807175:25952256,404226,76021 -(1,1087:6630773,24807175:0,0,0 -g1,1087:6630773,24807175 -g1,1087:6630773,24807175 -g1,1087:6303093,24807175 -(1,1087:6303093,24807175:0,0,0 -) -g1,1087:6630773,24807175 -) -g1,1089:7579210,24807175 -g1,1089:8843793,24807175 -g1,1089:9476085,24807175 -g1,1089:10108377,24807175 -g1,1089:10740669,24807175 -g1,1089:11372961,24807175 -g1,1089:12005253,24807175 -h1,1089:12321399,24807175:0,0,0 -k1,1089:32583029,24807175:20261630 -g1,1089:32583029,24807175 -) -] -) -g1,1090:32583029,24883196 -g1,1090:6630773,24883196 -g1,1090:6630773,24883196 -g1,1090:32583029,24883196 -g1,1090:32583029,24883196 -) -h1,1090:6630773,25079804:0,0,0 -(1,1114:6630773,28887225:25952256,2725418,0 -k1,1114:10508690,28887225:3877917 -(1,1093:10508690,28887225:0,0,0 -g1,1093:10508690,28887225 -g1,1093:10508690,28887225 -g1,1093:10181010,28887225 -(1,1093:10181010,28887225:0,0,0 -) -g1,1093:10508690,28887225 -) -(1,1112:10508690,28887225:18196423,2725418,0 -g1,1112:17441342,28887225 -(1,1112:17441342,27524516:0,0,0 -(1,1106:17441342,27524516:0,0,0 -g1,1104:17441342,27524516 -g1,1105:17441342,27524516 -g1,1105:17441342,27524516 -g1,1105:17441342,27524516 -g1,1105:17441342,27524516 -g1,1106:17441342,27524516 -) -(1,1112:17441342,27524516:0,0,0 -g1,1097:17441342,27524516 -(1,1101:17441342,27524516:0,0,0 -(1,1101:17441342,27524516:0,0,0 -g1,1101:17441342,27524516 -g1,1101:17441342,27524516 -g1,1101:17441342,27524516 -g1,1101:17441342,27524516 -g1,1101:17441342,27524516 -(1,1101:17441342,27524516:0,0,0 -(1,1101:17441342,27524516:7857858,1894999,480932 -[1,1101:17441342,27524516:7857858,1894999,480932 -(1,1101:17441342,26289934:7857858,660417,281357 -g1,1100:17441342,26289934 -(1,1100:17441342,26289934:665744,660417,281357 -k1,1100:17640917,26289934:199575 -g1,1100:18107086,26289934 -(1,1100:18107086,26289934:0,660417,271921 -(1,1100:18107086,26289934:0,0,0 -(1,1100:18107086,26289934:0,0,0 -g1,1100:18107086,26289934 -g1,1100:18107086,26289934 -g1,1100:18107086,26289934 -g1,1100:18107086,26289934 -g1,1100:18107086,26289934 -(1,1100:18107086,26289934:0,0,0 -(1,1100:18107086,26289934:331874,388497,0 -(1,1100:18107086,26289934:331874,388497,0 -) -g1,1100:18438960,26289934 -) -) -g1,1100:18107086,26289934 -g1,1100:18107086,26289934 -) -) -g1,1100:18107086,26289934 -) -) -g1,1100:18107086,26289934 -(1,1100:18107086,26289934:665744,660417,281357 -g1,1100:18573255,26289934 -k1,1100:18772830,26289934:199575 -) -g1,1100:18772830,26289934 -(1,1100:18772830,26289934:639530,660417,281357 -k1,1100:18972405,26289934:199575 -g1,1100:19412360,26289934 -(1,1100:19412360,26289934:0,660417,271921 -(1,1100:19412360,26289934:0,0,0 -(1,1100:19412360,26289934:0,0,0 -g1,1100:19412360,26289934 -g1,1100:19412360,26289934 -g1,1100:19412360,26289934 -g1,1100:19412360,26289934 -g1,1100:19412360,26289934 -(1,1100:19412360,26289934:0,0,0 -(1,1100:19412360,26289934:331874,388497,0 -(1,1100:19412360,26289934:331874,388497,0 -) -g1,1100:19744234,26289934 -) -) -g1,1100:19412360,26289934 -g1,1100:19412360,26289934 -) -) -g1,1100:19412360,26289934 -) -) -g1,1100:19412360,26289934 -(1,1100:19412360,26289934:665744,660417,281357 -g1,1100:19878529,26289934 -k1,1100:20078104,26289934:199575 -) -g1,1100:20078104,26289934 -(1,1100:20078104,26289934:639530,660417,281357 -k1,1100:20277679,26289934:199575 -g1,1100:20717634,26289934 -(1,1100:20717634,26289934:0,655699,276639 -(1,1100:20717634,26289934:0,0,0 -(1,1100:20717634,26289934:0,0,0 -g1,1100:20717634,26289934 -g1,1100:20717634,26289934 -g1,1100:20717634,26289934 -g1,1100:20717634,26289934 -g1,1100:20717634,26289934 -(1,1100:20717634,26289934:0,0,0 -(1,1100:20717634,26289934:331874,388497,9436 -(1,1100:20717634,26289934:331874,388497,9436 -) -g1,1100:21049508,26289934 -) -) -g1,1100:20717634,26289934 -g1,1100:20717634,26289934 -) -) -g1,1100:20717634,26289934 -) -) -g1,1100:20717634,26289934 -(1,1100:20717634,26289934:665744,660417,281357 -g1,1100:21183803,26289934 -k1,1100:21383378,26289934:199575 -) -g1,1100:21383378,26289934 -(1,1100:21383378,26289934:639530,660417,281357 -k1,1100:21582953,26289934:199575 -g1,1100:22022908,26289934 -(1,1100:22022908,26289934:0,655699,276639 -(1,1100:22022908,26289934:0,0,0 -(1,1100:22022908,26289934:0,0,0 -g1,1100:22022908,26289934 -g1,1100:22022908,26289934 -g1,1100:22022908,26289934 -g1,1100:22022908,26289934 -g1,1100:22022908,26289934 -(1,1100:22022908,26289934:0,0,0 -(1,1100:22022908,26289934:331874,379060,0 -(1,1100:22022908,26289934:331874,379060,0 -) -g1,1100:22354782,26289934 +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,1384:3078558,51504789:16384,1179648,0 +) +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 +) +] +) +) +) +] +[1,1384:3078558,4812305:0,0,0 +(1,1384:3078558,49800853:0,16384,2228224 +g1,1384:29030814,49800853 +g1,1384:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,1384:36151628,51504789:16384,1179648,0 +) +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 +) +] +) +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,1384:37855564,49800853:1179648,16384,0 +) +) +k1,1384:3078556,49800853:-34777008 +) +] +g1,1384:6630773,4812305 +g1,1384:6630773,4812305 +g1,1384:9516978,4812305 +g1,1384:11710468,4812305 +g1,1384:13120147,4812305 +g1,1384:16560787,4812305 +k1,1384:31786111,4812305:15225324 +) +) +] +[1,1384:6630773,45706769:25952256,40108032,0 +(1,1384:6630773,45706769:25952256,40108032,0 +(1,1384:6630773,45706769:0,0,0 +g1,1384:6630773,45706769 +) +[1,1384:6630773,45706769:25952256,40108032,0 +v1,1261:6630773,6254097:0,393216,0 +(1,1261:6630773,9095752:25952256,3234871,0 +g1,1261:6630773,9095752 +g1,1261:6237557,9095752 +r1,1384:6368629,9095752:131072,3234871,0 +g1,1261:6567858,9095752 +g1,1261:6764466,9095752 +[1,1261:6764466,9095752:25818563,3234871,0 +(1,1261:6764466,6366164:25818563,505283,134348 +k1,1260:8018646,6366164:212158 +k1,1260:11065891,6366164:212158 +k1,1260:13858201,6366164:212158 +k1,1260:16232391,6366164:212158 +k1,1260:17635994,6366164:212158 +k1,1260:19540292,6366164:212158 +k1,1260:21454420,6366164:212158 +k1,1260:24577032,6366164:212158 +k1,1260:25405228,6366164:212158 +k1,1260:26636471,6366164:212158 +k1,1260:30056616,6366164:212158 +k1,1260:32583029,6366164:0 +) +(1,1261:6764466,7231244:25818563,513147,134348 +k1,1260:9785931,7231244:162129 +k1,1260:11020229,7231244:162129 +k1,1260:12874497,7231244:162128 +k1,1260:16087327,7231244:162129 +k1,1260:17946838,7231244:162129 +k1,1260:19393473,7231244:162129 +k1,1260:21686176,7231244:162128 +k1,1260:22204165,7231244:162129 +k1,1260:24936616,7231244:162129 +k1,1260:25714783,7231244:162129 +k1,1260:27310839,7231244:162128 +k1,1260:27887774,7231244:162092 +k1,1260:31249371,7231244:162129 +k1,1261:32583029,7231244:0 +) +(1,1261:6764466,8096324:25818563,513147,134348 +k1,1260:7962698,8096324:188322 +k1,1260:8921724,8096324:188323 +k1,1260:10716989,8096324:188322 +k1,1260:11521349,8096324:188322 +k1,1260:14735469,8096324:188323 +k1,1260:17305369,8096324:188322 +k1,1260:18109729,8096324:188322 +k1,1260:19994779,8096324:188323 +k1,1260:23267225,8096324:188322 +k1,1260:24505435,8096324:188323 +k1,1260:26972444,8096324:188322 +h1,1260:28515162,8096324:0,0,0 +k1,1260:28703484,8096324:188322 +k1,1260:29701177,8096324:188323 +k1,1260:31387652,8096324:188322 +h1,1260:32583029,8096324:0,0,0 +k1,1260:32583029,8096324:0 +) +(1,1261:6764466,8961404:25818563,505283,134348 +g1,1260:8786251,8961404 +g1,1260:11565632,8961404 +k1,1261:32583030,8961404:18681696 +g1,1261:32583030,8961404 +) +] +g1,1261:32583029,9095752 +) +h1,1261:6630773,9095752:0,0,0 +v1,1264:6630773,9960832:0,393216,0 +(1,1384:6630773,45706769:25952256,36139153,0 +g1,1384:6630773,45706769 +g1,1384:6237557,45706769 +r1,1384:6368629,45706769:131072,36139153,0 +g1,1384:6567858,45706769 +g1,1384:6764466,45706769 +[1,1384:6764466,45706769:25818563,36139153,0 +(1,1265:6764466,10269130:25818563,701514,196608 +(1,1264:6764466,10269130:0,701514,196608 +r1,1384:8010564,10269130:1246098,898122,196608 +k1,1264:6764466,10269130:-1246098 +) +(1,1264:6764466,10269130:1246098,701514,196608 +) +k1,1264:8272128,10269130:261564 +k1,1264:8599808,10269130:327680 +k1,1264:9679261,10269130:261564 +k1,1264:13358527,10269130:261563 +k1,1264:15649086,10269130:261564 +k1,1264:16266510,10269130:261564 +k1,1264:18505951,10269130:261564 +k1,1264:19871797,10269130:261564 +k1,1264:21608575,10269130:261563 +k1,1264:22225999,10269130:261564 +k1,1264:24500829,10269130:261564 +k1,1264:25421685,10269130:261564 +k1,1264:27103413,10269130:261563 +k1,1264:28047862,10269130:261564 +k1,1264:29959623,10269130:261564 +k1,1264:32583029,10269130:0 +) +(1,1265:6764466,11134210:25818563,513147,134348 +k1,1264:9100169,11134210:151388 +k1,1264:11660660,11134210:151388 +k1,1264:12471340,11134210:151388 +k1,1264:14635995,11134210:151389 +k1,1264:16207548,11134210:151388 +k1,1264:17695870,11134210:151388 +k1,1264:19492212,11134210:151388 +k1,1264:20256362,11134210:151388 +k1,1264:21713883,11134210:151388 +k1,1264:23442723,11134210:151388 +k1,1264:25218749,11134210:151388 +k1,1264:27849365,11134210:151389 +k1,1264:29072922,11134210:151388 +k1,1264:29840348,11134210:151388 +k1,1264:31202841,11134210:151388 +k1,1264:32583029,11134210:0 +) +(1,1265:6764466,11999290:25818563,513147,134348 +k1,1264:7948003,11999290:191977 +k1,1264:9493953,11999290:191976 +k1,1264:11836822,11999290:191977 +k1,1264:13586590,11999290:191977 +k1,1264:15460220,11999290:191976 +k1,1264:16671282,11999290:191977 +k1,1264:19664923,11999290:191977 +k1,1264:20516191,11999290:191976 +k1,1264:21817693,11999290:191977 +k1,1264:24018348,11999290:191977 +k1,1264:24893209,11999290:191976 +k1,1264:27856704,11999290:191977 +k1,1264:28700109,11999290:191977 +k1,1264:30007508,11999290:191976 +k1,1264:31896867,11999290:191977 +k1,1264:32583029,11999290:0 +) +(1,1265:6764466,12864370:25818563,513147,134348 +k1,1264:9251089,12864370:207936 +k1,1264:11330079,12864370:207937 +k1,1264:13423486,12864370:207936 +k1,1264:14247460,12864370:207936 +k1,1264:15474481,12864370:207936 +k1,1264:18212108,12864370:207937 +k1,1264:19079336,12864370:207936 +k1,1264:21595450,12864370:207936 +k1,1264:22462679,12864370:207937 +k1,1264:24683881,12864370:207936 +k1,1264:26311982,12864370:207936 +k1,1264:28476168,12864370:207936 +k1,1264:30975899,12864370:207937 +k1,1264:31835263,12864370:207936 +k1,1264:32583029,12864370:0 +) +(1,1265:6764466,13729450:25818563,513147,126483 +k1,1264:9256324,13729450:218414 +k1,1264:10160899,13729450:218413 +k1,1264:12573458,13729450:218414 +k1,1264:14662924,13729450:218413 +k1,1264:19040253,13729450:218414 +k1,1264:20206317,13729450:218413 +k1,1264:20839555,13729450:218395 +k1,1264:23290780,13729450:218413 +k1,1264:24655419,13729450:218414 +(1,1264:24655419,13729450:0,452978,115847 +r1,1384:27827379,13729450:3171960,568825,115847 +k1,1264:24655419,13729450:-3171960 +) +(1,1264:24655419,13729450:3171960,452978,115847 +k1,1264:24655419,13729450:3277 +h1,1264:27824102,13729450:0,411205,112570 +) +k1,1264:28045792,13729450:218413 +k1,1264:30274851,13729450:218414 +k1,1264:32583029,13729450:0 +) +(1,1265:6764466,14594530:25818563,513147,134348 +g1,1264:7622987,14594530 +g1,1264:8178076,14594530 +g1,1264:10390571,14594530 +g1,1264:12284561,14594530 +g1,1264:13245318,14594530 +g1,1264:14953186,14594530 +g1,1264:16458548,14594530 +g1,1264:19903775,14594530 +g1,1264:21988475,14594530 +g1,1264:24783585,14594530 +g1,1264:25634242,14594530 +k1,1265:32583029,14594530:5354951 +g1,1265:32583029,14594530 +) +v1,1267:6764466,15279385:0,393216,0 +(1,1281:6764466,18719674:25818563,3833505,196608 +g1,1281:6764466,18719674 +g1,1281:6764466,18719674 +g1,1281:6567858,18719674 +(1,1281:6567858,18719674:0,3833505,196608 +r1,1384:32779637,18719674:26211779,4030113,196608 +k1,1281:6567857,18719674:-26211780 +) +(1,1281:6567858,18719674:26211779,3833505,196608 +[1,1281:6764466,18719674:25818563,3636897,0 +(1,1269:6764466,15507216:25818563,424439,112852 +(1,1268:6764466,15507216:0,0,0 +g1,1268:6764466,15507216 +g1,1268:6764466,15507216 +g1,1268:6436786,15507216 +(1,1268:6436786,15507216:0,0,0 +) +g1,1268:6764466,15507216 +) +g1,1269:8424236,15507216 +g1,1269:9420098,15507216 +g1,1269:14399408,15507216 +g1,1269:15063316,15507216 +g1,1269:16059178,15507216 +g1,1269:16723086,15507216 +g1,1269:18714810,15507216 +k1,1269:18714810,15507216:14864 +h1,1269:21385305,15507216:0,0,0 +k1,1269:32583029,15507216:11197724 +g1,1269:32583029,15507216 +) +(1,1270:6764466,16192071:25818563,407923,9908 +h1,1270:6764466,16192071:0,0,0 +h1,1270:8092282,16192071:0,0,0 +k1,1270:32583030,16192071:24490748 +g1,1270:32583030,16192071 +) +(1,1274:6764466,17007998:25818563,424439,79822 +(1,1272:6764466,17007998:0,0,0 +g1,1272:6764466,17007998 +g1,1272:6764466,17007998 +g1,1272:6436786,17007998 +(1,1272:6436786,17007998:0,0,0 +) +g1,1272:6764466,17007998 +) +g1,1274:7760328,17007998 +h1,1274:11079867,17007998:0,0,0 +k1,1274:32583029,17007998:21503162 +g1,1274:32583029,17007998 +) +(1,1276:6764466,17823925:25818563,424439,112852 +(1,1275:6764466,17823925:0,0,0 +g1,1275:6764466,17823925 +g1,1275:6764466,17823925 +g1,1275:6436786,17823925 +(1,1275:6436786,17823925:0,0,0 +) +g1,1275:6764466,17823925 +) +k1,1276:6764466,17823925:0 +h1,1276:10747914,17823925:0,0,0 +k1,1276:32583030,17823925:21835116 +g1,1276:32583030,17823925 +) +(1,1280:6764466,18639852:25818563,424439,79822 +(1,1278:6764466,18639852:0,0,0 +g1,1278:6764466,18639852 +g1,1278:6764466,18639852 +g1,1278:6436786,18639852 +(1,1278:6436786,18639852:0,0,0 +) +g1,1278:6764466,18639852 +) +g1,1280:7760328,18639852 +g1,1280:9088144,18639852 +h1,1280:9420098,18639852:0,0,0 +k1,1280:32583030,18639852:23162932 +g1,1280:32583030,18639852 +) +] +) +g1,1281:32583029,18719674 +g1,1281:6764466,18719674 +g1,1281:6764466,18719674 +g1,1281:32583029,18719674 +g1,1281:32583029,18719674 +) +h1,1281:6764466,18916282:0,0,0 +v1,1285:6764466,19601137:0,393216,0 +(1,1292:6764466,20731323:25818563,1523402,196608 +g1,1292:6764466,20731323 +g1,1292:6764466,20731323 +g1,1292:6567858,20731323 +(1,1292:6567858,20731323:0,1523402,196608 +r1,1384:32779637,20731323:26211779,1720010,196608 +k1,1292:6567857,20731323:-26211780 +) +(1,1292:6567858,20731323:26211779,1523402,196608 +[1,1292:6764466,20731323:25818563,1326794,0 +(1,1287:6764466,19835574:25818563,431045,112852 +(1,1286:6764466,19835574:0,0,0 +g1,1286:6764466,19835574 +g1,1286:6764466,19835574 +g1,1286:6436786,19835574 +(1,1286:6436786,19835574:0,0,0 +) +g1,1286:6764466,19835574 +) +k1,1287:6764466,19835574:0 +g1,1287:10084006,19835574 +g1,1287:10747914,19835574 +g1,1287:13403546,19835574 +k1,1287:13403546,19835574:14864 +h1,1287:16074041,19835574:0,0,0 +k1,1287:32583029,19835574:16508988 +g1,1287:32583029,19835574 +) +(1,1291:6764466,20651501:25818563,424439,79822 +(1,1289:6764466,20651501:0,0,0 +g1,1289:6764466,20651501 +g1,1289:6764466,20651501 +g1,1289:6436786,20651501 +(1,1289:6436786,20651501:0,0,0 +) +g1,1289:6764466,20651501 +) +g1,1291:7760328,20651501 +h1,1291:11079867,20651501:0,0,0 +k1,1291:32583029,20651501:21503162 +g1,1291:32583029,20651501 +) +] +) +g1,1292:32583029,20731323 +g1,1292:6764466,20731323 +g1,1292:6764466,20731323 +g1,1292:32583029,20731323 +g1,1292:32583029,20731323 +) +h1,1292:6764466,20927931:0,0,0 +(1,1296:6764466,21793011:25818563,513147,134348 +h1,1295:6764466,21793011:983040,0,0 +k1,1295:10422685,21793011:266076 +k1,1295:11348053,21793011:266076 +k1,1295:13627396,21793011:266077 +k1,1295:15487308,21793011:266076 +k1,1295:17976365,21793011:266076 +k1,1295:18858479,21793011:266076 +k1,1295:20726255,21793011:266076 +k1,1295:22863384,21793011:266076 +k1,1295:23815623,21793011:266077 +k1,1295:28818641,21793011:266076 +k1,1295:30464905,21793011:266076 +k1,1295:31835263,21793011:266076 +k1,1295:32583029,21793011:0 +) +(1,1296:6764466,22658091:25818563,505283,7863 +g1,1295:11196010,22658091 +g1,1295:12081401,22658091 +g1,1295:14356155,22658091 +k1,1296:32583029,22658091:16655321 +g1,1296:32583029,22658091 +) +v1,1298:6764466,23342946:0,393216,0 +(1,1311:6764466,26098380:25818563,3148650,196608 +g1,1311:6764466,26098380 +g1,1311:6764466,26098380 +g1,1311:6567858,26098380 +(1,1311:6567858,26098380:0,3148650,196608 +r1,1384:32779637,26098380:26211779,3345258,196608 +k1,1311:6567857,26098380:-26211780 +) +(1,1311:6567858,26098380:26211779,3148650,196608 +[1,1311:6764466,26098380:25818563,2952042,0 +(1,1300:6764466,23570777:25818563,424439,112852 +(1,1299:6764466,23570777:0,0,0 +g1,1299:6764466,23570777 +g1,1299:6764466,23570777 +g1,1299:6436786,23570777 +(1,1299:6436786,23570777:0,0,0 +) +g1,1299:6764466,23570777 +) +k1,1300:6764466,23570777:0 +g1,1300:11743776,23570777 +g1,1300:13735500,23570777 +h1,1300:15727224,23570777:0,0,0 +k1,1300:32583028,23570777:16855804 +g1,1300:32583028,23570777 +) +(1,1304:6764466,24386704:25818563,424439,79822 +(1,1302:6764466,24386704:0,0,0 +g1,1302:6764466,24386704 +g1,1302:6764466,24386704 +g1,1302:6436786,24386704 +(1,1302:6436786,24386704:0,0,0 +) +g1,1302:6764466,24386704 +) +g1,1304:7760328,24386704 +g1,1304:9088144,24386704 +h1,1304:9420098,24386704:0,0,0 +k1,1304:32583030,24386704:23162932 +g1,1304:32583030,24386704 +) +(1,1306:6764466,25202631:25818563,424439,112852 +(1,1305:6764466,25202631:0,0,0 +g1,1305:6764466,25202631 +g1,1305:6764466,25202631 +g1,1305:6436786,25202631 +(1,1305:6436786,25202631:0,0,0 +) +g1,1305:6764466,25202631 +) +k1,1306:6764466,25202631:0 +g1,1306:11743776,25202631 +h1,1306:13735500,25202631:0,0,0 +k1,1306:32583028,25202631:18847528 +g1,1306:32583028,25202631 +) +(1,1310:6764466,26018558:25818563,424439,79822 +(1,1308:6764466,26018558:0,0,0 +g1,1308:6764466,26018558 +g1,1308:6764466,26018558 +g1,1308:6436786,26018558 +(1,1308:6436786,26018558:0,0,0 +) +g1,1308:6764466,26018558 +) +g1,1310:7760328,26018558 +g1,1310:9088144,26018558 +h1,1310:9420098,26018558:0,0,0 +k1,1310:32583030,26018558:23162932 +g1,1310:32583030,26018558 +) +] +) +g1,1311:32583029,26098380 +g1,1311:6764466,26098380 +g1,1311:6764466,26098380 +g1,1311:32583029,26098380 +g1,1311:32583029,26098380 +) +h1,1311:6764466,26294988:0,0,0 +(1,1315:6764466,27160068:25818563,513147,126483 +h1,1314:6764466,27160068:983040,0,0 +k1,1314:9587995,27160068:145073 +k1,1314:12932535,27160068:145072 +k1,1314:14571174,27160068:145073 +k1,1314:15402409,27160068:145073 +k1,1314:16466297,27160068:145073 +k1,1314:18589246,27160068:145072 +k1,1314:21760116,27160068:145073 +k1,1314:23096634,27160068:145073 +k1,1314:26492293,27160068:145073 +k1,1314:27769827,27160068:145072 +k1,1314:29962900,27160068:145073 +k1,1314:32583029,27160068:0 +) +(1,1315:6764466,28025148:25818563,513147,134348 +k1,1314:9226607,28025148:153963 +k1,1314:10039862,28025148:153963 +k1,1314:12207090,28025148:153962 +k1,1314:13781218,28025148:153963 +k1,1314:14621343,28025148:153963 +k1,1314:16315402,28025148:153963 +k1,1314:18351558,28025148:153962 +k1,1314:21506415,28025148:153963 +k1,1314:22946194,28025148:153963 +k1,1314:23456017,28025148:153963 +k1,1314:25587857,28025148:153963 +k1,1314:26401111,28025148:153962 +k1,1314:28568340,28025148:153963 +k1,1314:30316139,28025148:153963 +k1,1314:32583029,28025148:0 +) +(1,1315:6764466,28890228:25818563,505283,134348 +k1,1314:9212639,28890228:177350 +k1,1314:9745850,28890228:177351 +k1,1314:12493522,28890228:177350 +k1,1314:13768601,28890228:177351 +k1,1314:14716654,28890228:177350 +k1,1314:16500948,28890228:177351 +k1,1314:19557295,28890228:177350 +k1,1314:20362481,28890228:177351 +k1,1314:22241801,28890228:177350 +k1,1314:24547761,28890228:177351 +k1,1314:26338607,28890228:177350 +k1,1314:27561913,28890228:177351 +k1,1314:29280670,28890228:177350 +k1,1315:32583029,28890228:0 +) +(1,1315:6764466,29755308:25818563,473825,0 +g1,1314:7579733,29755308 +k1,1315:32583030,29755308:24414784 +g1,1315:32583030,29755308 +) +v1,1317:6764466,30440163:0,393216,0 +(1,1330:6764466,33195597:25818563,3148650,196608 +g1,1330:6764466,33195597 +g1,1330:6764466,33195597 +g1,1330:6567858,33195597 +(1,1330:6567858,33195597:0,3148650,196608 +r1,1384:32779637,33195597:26211779,3345258,196608 +k1,1330:6567857,33195597:-26211780 +) +(1,1330:6567858,33195597:26211779,3148650,196608 +[1,1330:6764466,33195597:25818563,2952042,0 +(1,1319:6764466,30667994:25818563,424439,112852 +(1,1318:6764466,30667994:0,0,0 +g1,1318:6764466,30667994 +g1,1318:6764466,30667994 +g1,1318:6436786,30667994 +(1,1318:6436786,30667994:0,0,0 +) +g1,1318:6764466,30667994 +) +k1,1319:6764466,30667994:0 +k1,1319:6764466,30667994:0 +h1,1319:11743776,30667994:0,0,0 +k1,1319:32583028,30667994:20839252 +g1,1319:32583028,30667994 +) +(1,1323:6764466,31483921:25818563,424439,79822 +(1,1321:6764466,31483921:0,0,0 +g1,1321:6764466,31483921 +g1,1321:6764466,31483921 +g1,1321:6436786,31483921 +(1,1321:6436786,31483921:0,0,0 +) +g1,1321:6764466,31483921 +) +g1,1323:7760328,31483921 +h1,1323:11079867,31483921:0,0,0 +k1,1323:32583029,31483921:21503162 +g1,1323:32583029,31483921 +) +(1,1325:6764466,32299848:25818563,424439,79822 +(1,1324:6764466,32299848:0,0,0 +g1,1324:6764466,32299848 +g1,1324:6764466,32299848 +g1,1324:6436786,32299848 +(1,1324:6436786,32299848:0,0,0 +) +g1,1324:6764466,32299848 +) +g1,1325:7428374,32299848 +g1,1325:8092282,32299848 +k1,1325:8092282,32299848:0 +h1,1325:11411822,32299848:0,0,0 +k1,1325:32583030,32299848:21171208 +g1,1325:32583030,32299848 +) +(1,1329:6764466,33115775:25818563,424439,79822 +(1,1327:6764466,33115775:0,0,0 +g1,1327:6764466,33115775 +g1,1327:6764466,33115775 +g1,1327:6436786,33115775 +(1,1327:6436786,33115775:0,0,0 +) +g1,1327:6764466,33115775 +) +g1,1329:7760328,33115775 +h1,1329:11079867,33115775:0,0,0 +k1,1329:32583029,33115775:21503162 +g1,1329:32583029,33115775 +) +] +) +g1,1330:32583029,33195597 +g1,1330:6764466,33195597 +g1,1330:6764466,33195597 +g1,1330:32583029,33195597 +g1,1330:32583029,33195597 +) +h1,1330:6764466,33392205:0,0,0 +(1,1334:6764466,34257285:25818563,513147,134348 +h1,1333:6764466,34257285:983040,0,0 +k1,1333:9378348,34257285:140553 +k1,1333:11216939,34257285:140553 +k1,1333:12016783,34257285:140552 +k1,1333:14170602,34257285:140553 +k1,1333:15904991,34257285:140553 +k1,1333:18353722,34257285:140553 +k1,1333:19309543,34257285:140553 +k1,1333:20925310,34257285:140552 +k1,1333:21717291,34257285:140553 +k1,1333:23994318,34257285:140553 +k1,1333:24786299,34257285:140553 +k1,1333:25282712,34257285:140553 +k1,1333:26978433,34257285:140552 +k1,1333:30475740,34257285:140553 +k1,1333:31563944,34257285:140553 +k1,1333:32583029,34257285:0 +) +(1,1334:6764466,35122365:25818563,505283,126483 +k1,1333:10178580,35122365:166150 +(1,1333:10178580,35122365:0,452978,115847 +r1,1384:15812524,35122365:5633944,568825,115847 +k1,1333:10178580,35122365:-5633944 +) +(1,1333:10178580,35122365:5633944,452978,115847 +g1,1333:10885281,35122365 +g1,1333:11588705,35122365 +h1,1333:15809247,35122365:0,411205,112570 +) +k1,1333:15978675,35122365:166151 +k1,1333:16676322,35122365:166150 +k1,1333:17613176,35122365:166151 +k1,1333:19386269,35122365:166150 +(1,1333:19593363,35122365:0,452978,115847 +r1,1384:22765323,35122365:3171960,568825,115847 +k1,1333:19593363,35122365:-3171960 +) +(1,1333:19593363,35122365:3171960,452978,115847 +k1,1333:19593363,35122365:3277 +h1,1333:22762046,35122365:0,411205,112570 +) +k1,1333:22931474,35122365:166151 +k1,1333:25108269,35122365:166150 +k1,1333:26265980,35122365:166151 +k1,1333:29522153,35122365:166150 +k1,1333:30304342,35122365:166151 +k1,1333:32583029,35122365:0 +) +(1,1334:6764466,35987445:25818563,505283,134348 +h1,1333:7735054,35987445:0,0,0 +g1,1333:7934283,35987445 +g1,1333:8942882,35987445 +g1,1333:10640264,35987445 +h1,1333:11437182,35987445:0,0,0 +k1,1334:32583030,35987445:20765084 +g1,1334:32583030,35987445 +) +(1,1336:6764466,36852525:25818563,505283,134348 +h1,1335:6764466,36852525:983040,0,0 +k1,1335:10402424,36852525:272684 +k1,1335:11361269,36852525:272683 +k1,1335:14706281,36852525:272684 +k1,1335:15630392,36852525:272683 +k1,1335:19183808,36852525:272684 +(1,1335:19183808,36852525:0,452978,122846 +r1,1384:21300633,36852525:2116825,575824,122846 +k1,1335:19183808,36852525:-2116825 +) +(1,1335:19183808,36852525:2116825,452978,122846 +k1,1335:19183808,36852525:3277 +h1,1335:21297356,36852525:0,411205,112570 +) +k1,1335:21573316,36852525:272683 +k1,1335:22201860,36852525:272684 +k1,1335:24154886,36852525:272683 +k1,1335:26286826,36852525:272684 +k1,1335:28001956,36852525:272683 +k1,1335:29694805,36852525:272684 +k1,1335:32227169,36852525:272683 +k1,1335:32583029,36852525:0 +) +(1,1336:6764466,37717605:25818563,513147,134348 +g1,1335:8988102,37717605 +g1,1335:11165208,37717605 +g1,1335:12973346,37717605 +g1,1335:14566526,37717605 +g1,1335:16516222,37717605 +g1,1335:17331489,37717605 +g1,1335:18549803,37717605 +g1,1335:20116113,37717605 +g1,1335:20982498,37717605 +(1,1335:20982498,37717605:0,452978,115847 +r1,1384:24154458,37717605:3171960,568825,115847 +k1,1335:20982498,37717605:-3171960 +) +(1,1335:20982498,37717605:3171960,452978,115847 +k1,1335:20982498,37717605:3277 +h1,1335:24151181,37717605:0,411205,112570 +) +k1,1336:32583029,37717605:8254901 +g1,1336:32583029,37717605 +) +v1,1338:6764466,38402460:0,393216,0 +(1,1345:6764466,39526040:25818563,1516796,196608 +g1,1345:6764466,39526040 +g1,1345:6764466,39526040 +g1,1345:6567858,39526040 +(1,1345:6567858,39526040:0,1516796,196608 +r1,1384:32779637,39526040:26211779,1713404,196608 +k1,1345:6567857,39526040:-26211780 +) +(1,1345:6567858,39526040:26211779,1516796,196608 +[1,1345:6764466,39526040:25818563,1320188,0 +(1,1340:6764466,38630291:25818563,424439,112852 +(1,1339:6764466,38630291:0,0,0 +g1,1339:6764466,38630291 +g1,1339:6764466,38630291 +g1,1339:6436786,38630291 +(1,1339:6436786,38630291:0,0,0 +) +g1,1339:6764466,38630291 +) +k1,1340:6764466,38630291:0 +g1,1340:11743776,38630291 +g1,1340:12407684,38630291 +h1,1340:13071592,38630291:0,0,0 +k1,1340:32583028,38630291:19511436 +g1,1340:32583028,38630291 +) +(1,1344:6764466,39446218:25818563,424439,79822 +(1,1342:6764466,39446218:0,0,0 +g1,1342:6764466,39446218 +g1,1342:6764466,39446218 +g1,1342:6436786,39446218 +(1,1342:6436786,39446218:0,0,0 +) +g1,1342:6764466,39446218 +) +g1,1344:7760328,39446218 +g1,1344:9088144,39446218 +g1,1344:9752052,39446218 +g1,1344:10415960,39446218 +g1,1344:11079868,39446218 +g1,1344:11743776,39446218 +h1,1344:12075730,39446218:0,0,0 +k1,1344:32583030,39446218:20507300 +g1,1344:32583030,39446218 +) +] +) +g1,1345:32583029,39526040 +g1,1345:6764466,39526040 +g1,1345:6764466,39526040 +g1,1345:32583029,39526040 +g1,1345:32583029,39526040 +) +h1,1345:6764466,39722648:0,0,0 +(1,1349:6764466,40587728:25818563,513147,134348 +h1,1348:6764466,40587728:983040,0,0 +k1,1348:9209559,40587728:265366 +k1,1348:11488191,40587728:265366 +k1,1348:12412849,40587728:265366 +k1,1348:13034075,40587728:265366 +k1,1348:15277318,40587728:265366 +k1,1348:16646967,40587728:265367 +k1,1348:17660099,40587728:265366 +k1,1348:20822812,40587728:265366 +k1,1348:24301408,40587728:265366 +k1,1348:25960725,40587728:265366 +k1,1348:28698109,40587728:265366 +k1,1348:30974120,40587728:265366 +k1,1348:32583029,40587728:0 +) +(1,1349:6764466,41452808:25818563,513147,126483 +g1,1348:11280552,41452808 +g1,1348:12873732,41452808 +(1,1348:12873732,41452808:0,414482,115847 +r1,1384:13583710,41452808:709978,530329,115847 +k1,1348:12873732,41452808:-709978 +) +(1,1348:12873732,41452808:709978,414482,115847 +k1,1348:12873732,41452808:3277 +h1,1348:13580433,41452808:0,411205,112570 +) +g1,1348:13956609,41452808 +g1,1348:15174923,41452808 +g1,1348:17666601,41452808 +g1,1348:18813481,41452808 +g1,1348:20078981,41452808 +k1,1349:32583029,41452808:9546408 +g1,1349:32583029,41452808 +) +v1,1351:6764466,42137663:0,393216,0 +(1,1360:6764466,44614437:25818563,2869990,196608 +g1,1360:6764466,44614437 +g1,1360:6764466,44614437 +g1,1360:6567858,44614437 +(1,1360:6567858,44614437:0,2869990,196608 +r1,1384:32779637,44614437:26211779,3066598,196608 +k1,1360:6567857,44614437:-26211780 +) +(1,1360:6567858,44614437:26211779,2869990,196608 +[1,1360:6764466,44614437:25818563,2673382,0 +(1,1353:6764466,42348978:25818563,407923,9908 +(1,1352:6764466,42348978:0,0,0 +g1,1352:6764466,42348978 +g1,1352:6764466,42348978 +g1,1352:6436786,42348978 +(1,1352:6436786,42348978:0,0,0 +) +g1,1352:6764466,42348978 +) +g1,1353:8756190,42348978 +g1,1353:9752052,42348978 +h1,1353:10747914,42348978:0,0,0 +k1,1353:32583030,42348978:21835116 +g1,1353:32583030,42348978 +) +(1,1354:6764466,43033833:25818563,424439,112852 +h1,1354:6764466,43033833:0,0,0 +g1,1354:11411822,43033833 +g1,1354:12407684,43033833 +h1,1354:13071592,43033833:0,0,0 +k1,1354:32583028,43033833:19511436 +g1,1354:32583028,43033833 +) +(1,1355:6764466,43718688:25818563,407923,9908 +h1,1355:6764466,43718688:0,0,0 +h1,1355:8424236,43718688:0,0,0 +k1,1355:32583028,43718688:24158792 +g1,1355:32583028,43718688 +) +(1,1359:6764466,44534615:25818563,424439,79822 +(1,1357:6764466,44534615:0,0,0 +g1,1357:6764466,44534615 +g1,1357:6764466,44534615 +g1,1357:6436786,44534615 +(1,1357:6436786,44534615:0,0,0 +) +g1,1357:6764466,44534615 +) +g1,1359:7760328,44534615 +g1,1359:8092282,44534615 +g1,1359:9420098,44534615 +g1,1359:9752052,44534615 +g1,1359:10415960,44534615 +g1,1359:10747914,44534615 +g1,1359:11411822,44534615 +g1,1359:11743776,44534615 +g1,1359:12407684,44534615 +g1,1359:12739638,44534615 +g1,1359:13403546,44534615 +g1,1359:13735500,44534615 +g1,1359:14399408,44534615 +g1,1359:15395270,44534615 +g1,1359:16391132,44534615 +g1,1359:17386994,44534615 +g1,1359:18382856,44534615 +h1,1359:19046764,44534615:0,0,0 +k1,1359:32583029,44534615:13536265 +g1,1359:32583029,44534615 +) +] +) +g1,1360:32583029,44614437 +g1,1360:6764466,44614437 +g1,1360:6764466,44614437 +g1,1360:32583029,44614437 +g1,1360:32583029,44614437 +) +h1,1360:6764466,44811045:0,0,0 +(1,1364:6764466,45676125:25818563,513147,134348 +h1,1363:6764466,45676125:983040,0,0 +g1,1363:8424492,45676125 +g1,1363:9642806,45676125 +g1,1363:11855301,45676125 +g1,1363:12586027,45676125 +g1,1363:16150530,45676125 +g1,1363:17368844,45676125 +g1,1363:19578718,45676125 +g1,1363:20393985,45676125 +g1,1363:21612299,45676125 +g1,1363:22854861,45676125 +g1,1363:23713382,45676125 +g1,1363:24931696,45676125 +g1,1363:27108802,45676125 +g1,1363:28299591,45676125 +k1,1364:32583029,45676125:990909 +g1,1364:32583029,45676125 +) +] +g1,1384:32583029,45706769 +) +] +(1,1384:32583029,45706769:0,0,0 +g1,1384:32583029,45706769 +) +) +] +(1,1384:6630773,47279633:25952256,0,0 +h1,1384:6630773,47279633:25952256,0,0 +) +] +(1,1384:4262630,4025873:0,0,0 +[1,1384:-473656,4025873:0,0,0 +(1,1384:-473656,-710413:0,0,0 +(1,1384:-473656,-710413:0,0,0 +g1,1384:-473656,-710413 +) +g1,1384:-473656,-710413 +) +] +) +] +!27272 +}46 +Input:326:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:327:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:328:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:329:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:330:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:331:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:332:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:333:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:334:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:335:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:336:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:337:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:338:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:339:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:340:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:341:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:342:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1592 +{47 +[1,1471:4262630,47279633:28320399,43253760,0 +(1,1471:4262630,4025873:0,0,0 +[1,1471:-473656,4025873:0,0,0 +(1,1471:-473656,-710413:0,0,0 +(1,1471:-473656,-644877:0,0,0 +k1,1471:-473656,-644877:-65536 ) +(1,1471:-473656,4736287:0,0,0 +k1,1471:-473656,4736287:5209943 ) -g1,1100:22022908,26289934 -g1,1100:22022908,26289934 +g1,1471:-473656,-710413 ) +] ) -g1,1100:22022908,26289934 +[1,1471:6630773,47279633:25952256,43253760,0 +[1,1471:6630773,4812305:25952256,786432,0 +(1,1471:6630773,4812305:25952256,505283,11795 +(1,1471:6630773,4812305:25952256,505283,11795 +g1,1471:3078558,4812305 +[1,1471:3078558,4812305:0,0,0 +(1,1471:3078558,2439708:0,1703936,0 +k1,1471:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,1471:2537886,2439708:1179648,16384,0 ) +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,1471:3078558,1915420:16384,1179648,0 ) -g1,1100:22022908,26289934 -(1,1100:22022908,26289934:665744,660417,281357 -g1,1100:22489077,26289934 -k1,1100:22688652,26289934:199575 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) -g1,1100:22688652,26289934 -(1,1100:22688652,26289934:639530,660417,281357 -k1,1100:22888227,26289934:199575 -g1,1100:23328182,26289934 -(1,1100:23328182,26289934:0,650981,281357 -(1,1100:23328182,26289934:0,0,0 -(1,1100:23328182,26289934:0,0,0 -g1,1100:23328182,26289934 -g1,1100:23328182,26289934 -g1,1100:23328182,26289934 -g1,1100:23328182,26289934 -g1,1100:23328182,26289934 -(1,1100:23328182,26289934:0,0,0 -(1,1100:23328182,26289934:331874,379060,9436 -(1,1100:23328182,26289934:331874,379060,9436 +] ) -g1,1100:23660056,26289934 ) ) -g1,1100:23328182,26289934 -g1,1100:23328182,26289934 +] +[1,1471:3078558,4812305:0,0,0 +(1,1471:3078558,2439708:0,1703936,0 +g1,1471:29030814,2439708 +g1,1471:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,1471:36151628,1915420:16384,1179648,0 ) +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) -g1,1100:23328182,26289934 +] ) +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,1471:37855564,2439708:1179648,16384,0 ) -g1,1100:23328182,26289934 -(1,1100:23328182,26289934:665744,660417,281357 -g1,1100:23794351,26289934 -k1,1100:23993926,26289934:199575 ) -g1,1100:23993926,26289934 -(1,1100:23993926,26289934:639530,660417,281357 -k1,1100:24193501,26289934:199575 -g1,1100:24633456,26289934 -(1,1100:24633456,26289934:0,655699,276639 -(1,1100:24633456,26289934:0,0,0 -(1,1100:24633456,26289934:0,0,0 -g1,1100:24633456,26289934 -g1,1100:24633456,26289934 -g1,1100:24633456,26289934 -g1,1100:24633456,26289934 -g1,1100:24633456,26289934 -(1,1100:24633456,26289934:0,0,0 -(1,1100:24633456,26289934:331874,388497,9436 -(1,1100:24633456,26289934:331874,388497,9436 +k1,1471:3078556,2439708:-34777008 ) -g1,1100:24965330,26289934 +] +[1,1471:3078558,4812305:0,0,0 +(1,1471:3078558,49800853:0,16384,2228224 +k1,1471:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,1471:2537886,49800853:1179648,16384,0 ) +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,1471:3078558,51504789:16384,1179648,0 ) -g1,1100:24633456,26289934 -g1,1100:24633456,26289934 +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) +] ) -g1,1100:24633456,26289934 ) ) -g1,1100:24633456,26289934 -(1,1101:24633456,26289934:665744,660417,281357 -g1,1101:25099625,26289934 -k1,1101:25299200,26289934:199575 +] +[1,1471:3078558,4812305:0,0,0 +(1,1471:3078558,49800853:0,16384,2228224 +g1,1471:29030814,49800853 +g1,1471:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,1471:36151628,51504789:16384,1179648,0 +) +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 +) +] +) +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,1471:37855564,49800853:1179648,16384,0 ) -g1,1101:25299200,26289934 ) -(1,1101:17441342,27524516:7857858,859992,480932 -g1,1101:17441342,27524516 -(1,1101:17441342,27524516:665744,859992,480932 -g1,1101:17441342,27524516 -g1,1101:18107086,27524516 -(1,1101:18107086,27524516:0,855274,476214 -(1,1101:18107086,27524516:0,0,0 -(1,1101:18107086,27524516:0,0,0 -g1,1101:18107086,27524516 -g1,1101:18107086,27524516 -g1,1101:18107086,27524516 -g1,1101:18107086,27524516 -g1,1101:18107086,27524516 -(1,1101:18107086,27524516:0,0,0 -(1,1101:18107086,27524516:331874,379060,0 -(1,1101:18107086,27524516:331874,379060,0 +k1,1471:3078556,49800853:-34777008 +) +] +g1,1471:6630773,4812305 +k1,1471:22348274,4812305:14920583 +g1,1471:23970945,4812305 +g1,1471:24793421,4812305 +g1,1471:27528893,4812305 +g1,1471:28938572,4812305 +) +) +] +[1,1471:6630773,45706769:25952256,40108032,0 +(1,1471:6630773,45706769:25952256,40108032,0 +(1,1471:6630773,45706769:0,0,0 +g1,1471:6630773,45706769 +) +[1,1471:6630773,45706769:25952256,40108032,0 +v1,1384:6630773,6254097:0,393216,0 +(1,1384:6630773,10559333:25952256,4698452,0 +g1,1384:6630773,10559333 +g1,1384:6237557,10559333 +r1,1471:6368629,10559333:131072,4698452,0 +g1,1384:6567858,10559333 +g1,1384:6764466,10559333 +[1,1384:6764466,10559333:25818563,4698452,0 +v1,1366:6764466,6254097:0,393216,0 +(1,1381:6764466,10362725:25818563,4501844,196608 +g1,1381:6764466,10362725 +g1,1381:6764466,10362725 +g1,1381:6567858,10362725 +(1,1381:6567858,10362725:0,4501844,196608 +r1,1471:32779637,10362725:26211779,4698452,196608 +k1,1381:6567857,10362725:-26211780 +) +(1,1381:6567858,10362725:26211779,4501844,196608 +[1,1381:6764466,10362725:25818563,4305236,0 +(1,1368:6764466,6465412:25818563,407923,9908 +(1,1367:6764466,6465412:0,0,0 +g1,1367:6764466,6465412 +g1,1367:6764466,6465412 +g1,1367:6436786,6465412 +(1,1367:6436786,6465412:0,0,0 +) +g1,1367:6764466,6465412 +) +g1,1368:8756190,6465412 +g1,1368:9752052,6465412 +h1,1368:11079868,6465412:0,0,0 +k1,1368:32583028,6465412:21503160 +g1,1368:32583028,6465412 +) +(1,1369:6764466,7150267:25818563,407923,6605 +h1,1369:6764466,7150267:0,0,0 +h1,1369:8424236,7150267:0,0,0 +k1,1369:32583028,7150267:24158792 +g1,1369:32583028,7150267 +) +(1,1373:6764466,7966194:25818563,424439,79822 +(1,1371:6764466,7966194:0,0,0 +g1,1371:6764466,7966194 +g1,1371:6764466,7966194 +g1,1371:6436786,7966194 +(1,1371:6436786,7966194:0,0,0 +) +g1,1371:6764466,7966194 +) +g1,1373:7760328,7966194 +g1,1373:8092282,7966194 +g1,1373:9420098,7966194 +g1,1373:9752052,7966194 +g1,1373:10415960,7966194 +g1,1373:10747914,7966194 +g1,1373:11411822,7966194 +g1,1373:11743776,7966194 +g1,1373:12407684,7966194 +g1,1373:12739638,7966194 +g1,1373:13403546,7966194 +g1,1373:13735500,7966194 +g1,1373:14399408,7966194 +g1,1373:14731362,7966194 +g1,1373:15395270,7966194 +g1,1373:15727224,7966194 +g1,1373:16391132,7966194 +g1,1373:16723086,7966194 +g1,1373:17386994,7966194 +g1,1373:17718948,7966194 +g1,1373:18382856,7966194 +h1,1373:19046764,7966194:0,0,0 +k1,1373:32583029,7966194:13536265 +g1,1373:32583029,7966194 +) +(1,1375:6764466,8782121:25818563,424439,112852 +(1,1374:6764466,8782121:0,0,0 +g1,1374:6764466,8782121 +g1,1374:6764466,8782121 +g1,1374:6436786,8782121 +(1,1374:6436786,8782121:0,0,0 +) +g1,1374:6764466,8782121 +) +k1,1375:6764466,8782121:0 +g1,1375:11411822,8782121 +g1,1375:12407684,8782121 +h1,1375:12739638,8782121:0,0,0 +k1,1375:32583030,8782121:19843392 +g1,1375:32583030,8782121 +) +(1,1376:6764466,9466976:25818563,407923,6605 +h1,1376:6764466,9466976:0,0,0 +h1,1376:8424236,9466976:0,0,0 +k1,1376:32583028,9466976:24158792 +g1,1376:32583028,9466976 +) +(1,1380:6764466,10282903:25818563,424439,79822 +(1,1378:6764466,10282903:0,0,0 +g1,1378:6764466,10282903 +g1,1378:6764466,10282903 +g1,1378:6436786,10282903 +(1,1378:6436786,10282903:0,0,0 +) +g1,1378:6764466,10282903 +) +g1,1380:7760328,10282903 +g1,1380:9088144,10282903 +g1,1380:9752052,10282903 +g1,1380:10415960,10282903 +g1,1380:11079868,10282903 +g1,1380:11743776,10282903 +h1,1380:12075730,10282903:0,0,0 +k1,1380:32583030,10282903:20507300 +g1,1380:32583030,10282903 +) +] +) +g1,1381:32583029,10362725 +g1,1381:6764466,10362725 +g1,1381:6764466,10362725 +g1,1381:32583029,10362725 +g1,1381:32583029,10362725 +) +h1,1381:6764466,10559333:0,0,0 +] +g1,1384:32583029,10559333 +) +h1,1384:6630773,10559333:0,0,0 +(1,1388:6630773,11424413:25952256,513147,134348 +h1,1387:6630773,11424413:983040,0,0 +k1,1387:9595125,11424413:148925 +k1,1387:10735610,11424413:148925 +k1,1387:12576675,11424413:148925 +k1,1387:14919745,11424413:148925 +k1,1387:17079315,11424413:148925 +k1,1387:20012209,11424413:148925 +k1,1387:21108785,11424413:148925 +k1,1387:24247462,11424413:148925 +(1,1387:24247462,11424413:0,414482,115847 +r1,1471:24957440,11424413:709978,530329,115847 +k1,1387:24247462,11424413:-709978 +) +(1,1387:24247462,11424413:709978,414482,115847 +k1,1387:24247462,11424413:3277 +h1,1387:24954163,11424413:0,411205,112570 +) +k1,1387:25106365,11424413:148925 +k1,1387:27983554,11424413:148925 +k1,1387:29498905,11424413:148925 +k1,1387:32583029,11424413:0 +) +(1,1388:6630773,12289493:25952256,513147,134348 +k1,1387:7410963,12289493:248693 +k1,1387:9172882,12289493:248693 +k1,1387:10369226,12289493:248693 +k1,1387:13089937,12289493:248693 +k1,1387:15522945,12289493:248693 +(1,1387:15730039,12289493:0,414482,115847 +r1,1471:16440017,12289493:709978,530329,115847 +k1,1387:15730039,12289493:-709978 +) +(1,1387:15730039,12289493:709978,414482,115847 +k1,1387:15730039,12289493:3277 +h1,1387:16436740,12289493:0,411205,112570 +) +k1,1387:16895804,12289493:248693 +k1,1387:19155143,12289493:248694 +k1,1387:20746669,12289493:248693 +k1,1387:21351222,12289493:248693 +k1,1387:22953889,12289493:248693 +k1,1387:26411880,12289493:248693 +k1,1387:27895927,12289493:248693 +k1,1387:28760658,12289493:248693 +k1,1387:30028436,12289493:248693 +k1,1387:32583029,12289493:0 +) +(1,1388:6630773,13154573:25952256,513147,134348 +k1,1387:7485124,13154573:195059 +k1,1387:9243217,13154573:195059 +k1,1387:10124437,13154573:195058 +k1,1387:13624477,13154573:195059 +k1,1387:15511676,13154573:195059 +k1,1387:19778487,13154573:195059 +k1,1387:20965106,13154573:195059 +k1,1387:23632183,13154573:195059 +k1,1387:25394862,13154573:195058 +k1,1387:26360624,13154573:195059 +k1,1387:29657502,13154573:195059 +k1,1387:32583029,13154573:0 +) +(1,1388:6630773,14019653:25952256,513147,134348 +k1,1387:8303064,14019653:282928 +k1,1387:9520535,14019653:282928 +k1,1387:10986389,14019653:282929 +k1,1387:11920745,14019653:282928 +k1,1387:15798323,14019653:282928 +k1,1387:18195442,14019653:282928 +k1,1387:19497456,14019653:282929 +k1,1387:21889333,14019653:282928 +k1,1387:22831553,14019653:282928 +k1,1387:23885184,14019653:282928 +k1,1387:27777180,14019653:282928 +k1,1387:28742994,14019653:282929 +k1,1387:31298711,14019653:282928 +k1,1387:32051532,14019653:282928 +k1,1387:32583029,14019653:0 +) +(1,1388:6630773,14884733:25952256,513147,126483 +k1,1387:10128052,14884733:287981 +k1,1387:11067460,14884733:287980 +k1,1387:15020214,14884733:287981 +k1,1387:16638575,14884733:287980 +k1,1387:17577984,14884733:287981 +k1,1387:20687944,14884733:287980 +(1,1387:20687944,14884733:0,414482,115847 +r1,1471:21397922,14884733:709978,530329,115847 +k1,1387:20687944,14884733:-709978 +) +(1,1387:20687944,14884733:709978,414482,115847 +k1,1387:20687944,14884733:3277 +h1,1387:21394645,14884733:0,411205,112570 +) +k1,1387:21685903,14884733:287981 +k1,1387:24158198,14884733:287980 +k1,1387:26003970,14884733:287981 +k1,1387:27283511,14884733:287981 +k1,1387:31635378,14884733:287980 +k1,1387:32583029,14884733:0 +) +(1,1388:6630773,15749813:25952256,505283,134348 +k1,1387:10194821,15749813:209915 +k1,1387:11689242,15749813:209915 +k1,1387:12430654,15749813:209915 +k1,1387:16427895,15749813:209915 +k1,1387:17253848,15749813:209915 +k1,1387:19165733,15749813:209915 +k1,1387:21504257,15749813:209915 +k1,1387:23722195,15749813:209915 +k1,1387:25612453,15749813:209915 +k1,1387:26353865,15749813:209915 +k1,1387:29652491,15749813:209915 +(1,1387:29652491,15749813:0,414482,115847 +r1,1471:30362469,15749813:709978,530329,115847 +k1,1387:29652491,15749813:-709978 +) +(1,1387:29652491,15749813:709978,414482,115847 +k1,1387:29652491,15749813:3277 +h1,1387:30359192,15749813:0,411205,112570 +) +k1,1387:30572384,15749813:209915 +k1,1387:32583029,15749813:0 +) +(1,1388:6630773,16614893:25952256,505283,134348 +k1,1387:10039882,16614893:194568 +k1,1387:11932489,16614893:194569 +k1,1387:13813954,16614893:194568 +k1,1387:14733351,16614893:194569 +k1,1387:16212425,16614893:194568 +k1,1387:19588112,16614893:194569 +k1,1387:24176869,16614893:194568 +k1,1387:25906947,16614893:194569 +(1,1387:25906947,16614893:0,414482,115847 +r1,1471:26616925,16614893:709978,530329,115847 +k1,1387:25906947,16614893:-709978 +) +(1,1387:25906947,16614893:709978,414482,115847 +k1,1387:25906947,16614893:3277 +h1,1387:26613648,16614893:0,411205,112570 +) +k1,1387:26811493,16614893:194568 +k1,1387:28704100,16614893:194569 +k1,1387:30055378,16614893:194568 +k1,1387:30932832,16614893:194569 +k1,1387:32583029,16614893:0 +) +(1,1388:6630773,17479973:25952256,513147,126483 +g1,1387:8538526,17479973 +g1,1387:9397047,17479973 +g1,1387:10615361,17479973 +g1,1387:12825235,17479973 +g1,1387:13555961,17479973 +k1,1388:32583029,17479973:15885927 +g1,1388:32583029,17479973 +) +v1,1390:6630773,18164828:0,393216,0 +(1,1404:6630773,21605117:25952256,3833505,196608 +g1,1404:6630773,21605117 +g1,1404:6630773,21605117 +g1,1404:6434165,21605117 +(1,1404:6434165,21605117:0,3833505,196608 +r1,1471:32779637,21605117:26345472,4030113,196608 +k1,1404:6434165,21605117:-26345472 +) +(1,1404:6434165,21605117:26345472,3833505,196608 +[1,1404:6630773,21605117:25952256,3636897,0 +(1,1392:6630773,18392659:25952256,424439,86428 +(1,1391:6630773,18392659:0,0,0 +g1,1391:6630773,18392659 +g1,1391:6630773,18392659 +g1,1391:6303093,18392659 +(1,1391:6303093,18392659:0,0,0 +) +g1,1391:6630773,18392659 +) +g1,1392:8622497,18392659 +g1,1392:9618359,18392659 +g1,1392:11610083,18392659 +h1,1392:12273991,18392659:0,0,0 +k1,1392:32583029,18392659:20309038 +g1,1392:32583029,18392659 +) +(1,1393:6630773,19077514:25952256,407923,6605 +h1,1393:6630773,19077514:0,0,0 +h1,1393:8290543,19077514:0,0,0 +k1,1393:32583029,19077514:24292486 +g1,1393:32583029,19077514 +) +(1,1397:6630773,19893441:25952256,424439,79822 +(1,1395:6630773,19893441:0,0,0 +g1,1395:6630773,19893441 +g1,1395:6630773,19893441 +g1,1395:6303093,19893441 +(1,1395:6303093,19893441:0,0,0 +) +g1,1395:6630773,19893441 +) +g1,1397:7626635,19893441 +g1,1397:8954451,19893441 +g1,1397:9950313,19893441 +g1,1397:10282267,19893441 +h1,1397:10614221,19893441:0,0,0 +k1,1397:32583029,19893441:21968808 +g1,1397:32583029,19893441 +) +(1,1399:6630773,20709368:25952256,407923,6605 +(1,1398:6630773,20709368:0,0,0 +g1,1398:6630773,20709368 +g1,1398:6630773,20709368 +g1,1398:6303093,20709368 +(1,1398:6303093,20709368:0,0,0 +) +g1,1398:6630773,20709368 +) +g1,1399:8622497,20709368 +g1,1399:9286405,20709368 +h1,1399:9618359,20709368:0,0,0 +k1,1399:32583029,20709368:22964670 +g1,1399:32583029,20709368 +) +(1,1403:6630773,21525295:25952256,424439,79822 +(1,1401:6630773,21525295:0,0,0 +g1,1401:6630773,21525295 +g1,1401:6630773,21525295 +g1,1401:6303093,21525295 +(1,1401:6303093,21525295:0,0,0 +) +g1,1401:6630773,21525295 +) +g1,1403:7626635,21525295 +g1,1403:8954451,21525295 +g1,1403:9950313,21525295 +g1,1403:10282267,21525295 +h1,1403:10614221,21525295:0,0,0 +k1,1403:32583029,21525295:21968808 +g1,1403:32583029,21525295 +) +] +) +g1,1404:32583029,21605117 +g1,1404:6630773,21605117 +g1,1404:6630773,21605117 +g1,1404:32583029,21605117 +g1,1404:32583029,21605117 +) +h1,1404:6630773,21801725:0,0,0 +(1,1408:6630773,22666805:25952256,513147,134348 +h1,1407:6630773,22666805:983040,0,0 +k1,1407:11797302,22666805:259849 +k1,1407:13161433,22666805:259849 +k1,1407:14707098,22666805:259849 +k1,1407:16502456,22666805:259849 +k1,1407:17781390,22666805:259849 +k1,1407:21016575,22666805:259850 +k1,1407:23287069,22666805:259849 +(1,1407:23287069,22666805:0,414482,115847 +r1,1471:24348758,22666805:1061689,530329,115847 +k1,1407:23287069,22666805:-1061689 +) +(1,1407:23287069,22666805:1061689,414482,115847 +k1,1407:23287069,22666805:3277 +h1,1407:24345481,22666805:0,411205,112570 +) +k1,1407:24608607,22666805:259849 +k1,1407:26234882,22666805:259849 +k1,1407:26850591,22666805:259849 +k1,1407:30070046,22666805:259849 +(1,1407:30070046,22666805:0,459977,115847 +r1,1471:31131735,22666805:1061689,575824,115847 +k1,1407:30070046,22666805:-1061689 +) +(1,1407:30070046,22666805:1061689,459977,115847 +k1,1407:30070046,22666805:3277 +h1,1407:31128458,22666805:0,411205,112570 +) +k1,1407:31391584,22666805:259849 +k1,1408:32583029,22666805:0 +) +(1,1408:6630773,23531885:25952256,513147,134348 +(1,1407:6630773,23531885:0,459977,115847 +r1,1471:8044174,23531885:1413401,575824,115847 +k1,1407:6630773,23531885:-1413401 +) +(1,1407:6630773,23531885:1413401,459977,115847 +k1,1407:6630773,23531885:3277 +h1,1407:8040897,23531885:0,411205,112570 +) +k1,1407:8277731,23531885:233557 +k1,1407:9458939,23531885:233557 +$1,1407:9458939,23531885 +$1,1407:10133960,23531885 +k1,1407:10367517,23531885:233557 +k1,1407:11792520,23531885:233558 +$1,1407:11792520,23531885 +$1,1407:13035738,23531885 +k1,1407:13442965,23531885:233557 +k1,1407:14494411,23531885:233557 +k1,1407:15898441,23531885:233557 +k1,1407:17264460,23531885:233557 +k1,1407:18523000,23531885:233557 +k1,1407:20798659,23531885:233557 +k1,1407:24833960,23531885:233558 +k1,1407:27593275,23531885:233557 +k1,1407:29523559,23531885:233557 +k1,1407:31767761,23531885:233557 +k1,1408:32583029,23531885:0 +) +(1,1408:6630773,24396965:25952256,505283,134348 +k1,1407:7965304,24396965:246633 +k1,1407:10342511,24396965:246632 +k1,1407:12526388,24396965:246633 +k1,1407:13455906,24396965:246633 +k1,1407:16776832,24396965:246632 +k1,1407:17709627,24396965:246633 +k1,1407:19336448,24396965:246633 +k1,1407:20574641,24396965:246633 +k1,1407:25224637,24396965:246632 +k1,1407:27185036,24396965:246633 +(1,1407:27185036,24396965:0,459977,115847 +r1,1471:28246725,24396965:1061689,575824,115847 +k1,1407:27185036,24396965:-1061689 +) +(1,1407:27185036,24396965:1061689,459977,115847 +k1,1407:27185036,24396965:3277 +h1,1407:28243448,24396965:0,411205,112570 +) +k1,1407:28493358,24396965:246633 +k1,1407:29931435,24396965:246632 +(1,1407:29931435,24396965:0,459977,115847 +r1,1471:31344836,24396965:1413401,575824,115847 +k1,1407:29931435,24396965:-1413401 +) +(1,1407:29931435,24396965:1413401,459977,115847 +k1,1407:29931435,24396965:3277 +h1,1407:31341559,24396965:0,411205,112570 +) +k1,1407:31591469,24396965:246633 +k1,1407:32583029,24396965:0 +) +(1,1408:6630773,25262045:25952256,513147,126483 +g1,1407:8115818,25262045 +g1,1407:9855143,25262045 +g1,1407:13235490,25262045 +g1,1407:15445364,25262045 +g1,1407:16592244,25262045 +g1,1407:18499997,25262045 +g1,1407:19890671,25262045 +k1,1408:32583029,25262045:9430631 +g1,1408:32583029,25262045 +) +v1,1410:6630773,25946900:0,393216,0 +(1,1453:6630773,36868210:25952256,11314526,196608 +g1,1453:6630773,36868210 +g1,1453:6630773,36868210 +g1,1453:6434165,36868210 +(1,1453:6434165,36868210:0,11314526,196608 +r1,1471:32779637,36868210:26345472,11511134,196608 +k1,1453:6434165,36868210:-26345472 +) +(1,1453:6434165,36868210:26345472,11314526,196608 +[1,1453:6630773,36868210:25952256,11117918,0 +(1,1412:6630773,26181337:25952256,431045,6605 +(1,1411:6630773,26181337:0,0,0 +g1,1411:6630773,26181337 +g1,1411:6630773,26181337 +g1,1411:6303093,26181337 +(1,1411:6303093,26181337:0,0,0 +) +g1,1411:6630773,26181337 +) +g1,1412:8622497,26181337 +g1,1412:9286405,26181337 +h1,1412:10282267,26181337:0,0,0 +k1,1412:32583029,26181337:22300762 +g1,1412:32583029,26181337 +) +(1,1416:6630773,26997264:25952256,431045,79822 +(1,1414:6630773,26997264:0,0,0 +g1,1414:6630773,26997264 +g1,1414:6630773,26997264 +g1,1414:6303093,26997264 +(1,1414:6303093,26997264:0,0,0 +) +g1,1414:6630773,26997264 +) +g1,1416:7626635,26997264 +g1,1416:8954451,26997264 +g1,1416:9286405,26997264 +g1,1416:10282267,26997264 +h1,1416:11278129,26997264:0,0,0 +k1,1416:32583029,26997264:21304900 +g1,1416:32583029,26997264 +) +(1,1418:6630773,27813191:25952256,431045,79822 +(1,1417:6630773,27813191:0,0,0 +g1,1417:6630773,27813191 +g1,1417:6630773,27813191 +g1,1417:6303093,27813191 +(1,1417:6303093,27813191:0,0,0 +) +g1,1417:6630773,27813191 +) +g1,1418:7958589,27813191 +g1,1418:8622497,27813191 +h1,1418:10282267,27813191:0,0,0 +k1,1418:32583029,27813191:22300762 +g1,1418:32583029,27813191 +) +(1,1422:6630773,28629118:25952256,431045,79822 +(1,1420:6630773,28629118:0,0,0 +g1,1420:6630773,28629118 +g1,1420:6630773,28629118 +g1,1420:6303093,28629118 +(1,1420:6303093,28629118:0,0,0 +) +g1,1420:6630773,28629118 +) +g1,1422:7626635,28629118 +g1,1422:8954451,28629118 +g1,1422:9286405,28629118 +g1,1422:10282267,28629118 +h1,1422:11278129,28629118:0,0,0 +k1,1422:32583029,28629118:21304900 +g1,1422:32583029,28629118 +) +(1,1424:6630773,29445045:25952256,424439,79822 +(1,1423:6630773,29445045:0,0,0 +g1,1423:6630773,29445045 +g1,1423:6630773,29445045 +g1,1423:6303093,29445045 +(1,1423:6303093,29445045:0,0,0 +) +g1,1423:6630773,29445045 +) +k1,1424:6630773,29445045:0 +g1,1424:7626635,29445045 +g1,1424:8290543,29445045 +h1,1424:8622497,29445045:0,0,0 +k1,1424:32583029,29445045:23960532 +g1,1424:32583029,29445045 +) +(1,1428:6630773,30260972:25952256,431045,79822 +(1,1426:6630773,30260972:0,0,0 +g1,1426:6630773,30260972 +g1,1426:6630773,30260972 +g1,1426:6303093,30260972 +(1,1426:6303093,30260972:0,0,0 +) +g1,1426:6630773,30260972 +) +g1,1428:7626635,30260972 +g1,1428:8954451,30260972 +k1,1428:8954451,30260972:0 +h1,1428:10282267,30260972:0,0,0 +k1,1428:32583029,30260972:22300762 +g1,1428:32583029,30260972 +) +(1,1430:6630773,31076899:25952256,424439,79822 +(1,1429:6630773,31076899:0,0,0 +g1,1429:6630773,31076899 +g1,1429:6630773,31076899 +g1,1429:6303093,31076899 +(1,1429:6303093,31076899:0,0,0 +) +g1,1429:6630773,31076899 +) +g1,1430:7294681,31076899 +g1,1430:7958589,31076899 +h1,1430:8290543,31076899:0,0,0 +k1,1430:32583029,31076899:24292486 +g1,1430:32583029,31076899 +) +(1,1434:6630773,31892826:25952256,431045,79822 +(1,1432:6630773,31892826:0,0,0 +g1,1432:6630773,31892826 +g1,1432:6630773,31892826 +g1,1432:6303093,31892826 +(1,1432:6303093,31892826:0,0,0 +) +g1,1432:6630773,31892826 +) +g1,1434:7626635,31892826 +g1,1434:8954451,31892826 +h1,1434:9950313,31892826:0,0,0 +k1,1434:32583029,31892826:22632716 +g1,1434:32583029,31892826 +) +(1,1436:6630773,32708753:25952256,431045,79822 +(1,1435:6630773,32708753:0,0,0 +g1,1435:6630773,32708753 +g1,1435:6630773,32708753 +g1,1435:6303093,32708753 +(1,1435:6303093,32708753:0,0,0 +) +g1,1435:6630773,32708753 +) +g1,1436:7958589,32708753 +g1,1436:8622497,32708753 +h1,1436:9618359,32708753:0,0,0 +k1,1436:32583029,32708753:22964670 +g1,1436:32583029,32708753 +) +(1,1440:6630773,33524680:25952256,424439,79822 +(1,1438:6630773,33524680:0,0,0 +g1,1438:6630773,33524680 +g1,1438:6630773,33524680 +g1,1438:6303093,33524680 +(1,1438:6303093,33524680:0,0,0 +) +g1,1438:6630773,33524680 +) +g1,1440:7626635,33524680 +g1,1440:8954451,33524680 +h1,1440:9950313,33524680:0,0,0 +k1,1440:32583029,33524680:22632716 +g1,1440:32583029,33524680 +) +(1,1442:6630773,34340607:25952256,431045,0 +(1,1441:6630773,34340607:0,0,0 +g1,1441:6630773,34340607 +g1,1441:6630773,34340607 +g1,1441:6303093,34340607 +(1,1441:6303093,34340607:0,0,0 +) +g1,1441:6630773,34340607 +) +g1,1442:7958589,34340607 +g1,1442:8622497,34340607 +h1,1442:8954451,34340607:0,0,0 +k1,1442:32583029,34340607:23628578 +g1,1442:32583029,34340607 +) +(1,1446:6630773,35156534:25952256,431045,79822 +(1,1444:6630773,35156534:0,0,0 +g1,1444:6630773,35156534 +g1,1444:6630773,35156534 +g1,1444:6303093,35156534 +(1,1444:6303093,35156534:0,0,0 +) +g1,1444:6630773,35156534 +) +g1,1446:7626635,35156534 +g1,1446:8954451,35156534 +h1,1446:9950313,35156534:0,0,0 +k1,1446:32583029,35156534:22632716 +g1,1446:32583029,35156534 +) +(1,1448:6630773,35972461:25952256,431045,0 +(1,1447:6630773,35972461:0,0,0 +g1,1447:6630773,35972461 +g1,1447:6630773,35972461 +g1,1447:6303093,35972461 +(1,1447:6303093,35972461:0,0,0 +) +g1,1447:6630773,35972461 +) +k1,1448:6630773,35972461:0 +g1,1448:8290543,35972461 +g1,1448:8954451,35972461 +k1,1448:8954451,35972461:0 +h1,1448:9618359,35972461:0,0,0 +k1,1448:32583029,35972461:22964670 +g1,1448:32583029,35972461 +) +(1,1452:6630773,36788388:25952256,431045,79822 +(1,1450:6630773,36788388:0,0,0 +g1,1450:6630773,36788388 +g1,1450:6630773,36788388 +g1,1450:6303093,36788388 +(1,1450:6303093,36788388:0,0,0 +) +g1,1450:6630773,36788388 +) +g1,1452:7626635,36788388 +g1,1452:8954451,36788388 +h1,1452:9950313,36788388:0,0,0 +k1,1452:32583029,36788388:22632716 +g1,1452:32583029,36788388 +) +] +) +g1,1453:32583029,36868210 +g1,1453:6630773,36868210 +g1,1453:6630773,36868210 +g1,1453:32583029,36868210 +g1,1453:32583029,36868210 +) +h1,1453:6630773,37064818:0,0,0 +v1,1457:6630773,37929898:0,393216,0 +(1,1471:6630773,45323395:25952256,7786713,0 +g1,1471:6630773,45323395 +g1,1471:6237557,45323395 +r1,1471:6368629,45323395:131072,7786713,0 +g1,1471:6567858,45323395 +g1,1471:6764466,45323395 +[1,1471:6764466,45323395:25818563,7786713,0 +(1,1458:6764466,38202375:25818563,665693,196608 +(1,1457:6764466,38202375:0,665693,196608 +r1,1471:8010564,38202375:1246098,862301,196608 +k1,1457:6764466,38202375:-1246098 +) +(1,1457:6764466,38202375:1246098,665693,196608 +) +k1,1457:8227574,38202375:217010 +k1,1457:9545503,38202375:327680 +k1,1457:11619616,38202375:222721 +k1,1457:12501629,38202375:222721 +k1,1457:13864677,38202375:222722 +k1,1457:16546309,38202375:222721 +k1,1457:17446017,38202375:222721 +k1,1457:19754749,38202375:222721 +k1,1457:21609316,38202375:222721 +k1,1457:23052317,38202375:222721 +k1,1457:25077279,38202375:222722 +(1,1457:25077279,38202375:0,414482,115847 +r1,1471:25787257,38202375:709978,530329,115847 +k1,1457:25077279,38202375:-709978 +) +(1,1457:25077279,38202375:709978,414482,115847 +k1,1457:25077279,38202375:3277 +h1,1457:25783980,38202375:0,411205,112570 +) +k1,1457:26678632,38202375:217010 +k1,1457:28555014,38202375:217010 +k1,1457:30152868,38202375:217010 +k1,1457:31540351,38202375:217010 +k1,1458:32583029,38202375:0 +) +(1,1458:6764466,39067455:25818563,513147,134348 +k1,1457:9814809,39067455:215256 +k1,1457:11049150,39067455:215256 +k1,1457:12773045,39067455:215256 +k1,1457:15187689,39067455:215256 +k1,1457:16422030,39067455:215256 +k1,1457:19399628,39067455:215255 +k1,1457:22374605,39067455:215256 +k1,1457:23249153,39067455:215256 +k1,1457:26490206,39067455:215256 +k1,1457:27896907,39067455:215256 +k1,1457:31189078,39067455:215256 +k1,1457:32583029,39067455:0 +) +(1,1458:6764466,39932535:25818563,505283,126483 +k1,1457:9263842,39932535:174814 +k1,1457:10090083,39932535:174813 +(1,1457:10090083,39932535:0,414482,115847 +r1,1471:10800061,39932535:709978,530329,115847 +k1,1457:10090083,39932535:-709978 +) +(1,1457:10090083,39932535:709978,414482,115847 +k1,1457:10090083,39932535:3277 +h1,1457:10796784,39932535:0,411205,112570 +) +k1,1457:10974875,39932535:174814 +k1,1457:12341134,39932535:174814 +(1,1457:12341134,39932535:0,452978,115847 +r1,1471:15513094,39932535:3171960,568825,115847 +k1,1457:12341134,39932535:-3171960 +) +(1,1457:12341134,39932535:3171960,452978,115847 +k1,1457:12341134,39932535:3277 +h1,1457:15509817,39932535:0,411205,112570 +) +k1,1457:15687907,39932535:174813 +k1,1457:16545606,39932535:174814 +k1,1457:17508818,39932535:174814 +k1,1457:20988612,39932535:174813 +(1,1457:20988612,39932535:0,452978,115847 +r1,1471:24512284,39932535:3523672,568825,115847 +k1,1457:20988612,39932535:-3523672 +) +(1,1457:20988612,39932535:3523672,452978,115847 +k1,1457:20988612,39932535:3277 +h1,1457:24509007,39932535:0,411205,112570 +) +k1,1457:24860768,39932535:174814 +k1,1457:26669395,39932535:174814 +k1,1457:27659476,39932535:174813 +k1,1457:29214478,39932535:174814 +k1,1457:32583029,39932535:0 +) +(1,1458:6764466,40797615:25818563,513147,134348 +g1,1457:8345849,40797615 +(1,1457:8345849,40797615:0,414482,115847 +r1,1471:9055827,40797615:709978,530329,115847 +k1,1457:8345849,40797615:-709978 +) +(1,1457:8345849,40797615:709978,414482,115847 +k1,1457:8345849,40797615:3277 +h1,1457:9052550,40797615:0,411205,112570 +) +g1,1457:9255056,40797615 +g1,1457:9784586,40797615 +g1,1457:10975375,40797615 +g1,1457:12240875,40797615 +g1,1457:15054991,40797615 +g1,1457:16943738,40797615 +g1,1457:19451145,40797615 +g1,1457:20309666,40797615 +g1,1457:22522161,40797615 +g1,1457:24141555,40797615 +k1,1458:32583029,40797615:7122890 +g1,1458:32583029,40797615 +) +v1,1460:6764466,41482470:0,393216,0 +(1,1465:6764466,42405064:25818563,1315810,196608 +g1,1465:6764466,42405064 +g1,1465:6764466,42405064 +g1,1465:6567858,42405064 +(1,1465:6567858,42405064:0,1315810,196608 +r1,1471:32779637,42405064:26211779,1512418,196608 +k1,1465:6567857,42405064:-26211780 +) +(1,1465:6567858,42405064:26211779,1315810,196608 +[1,1465:6764466,42405064:25818563,1119202,0 +(1,1462:6764466,41710301:25818563,424439,79822 +(1,1461:6764466,41710301:0,0,0 +g1,1461:6764466,41710301 +g1,1461:6764466,41710301 +g1,1461:6436786,41710301 +(1,1461:6436786,41710301:0,0,0 +) +g1,1461:6764466,41710301 +) +g1,1462:8092282,41710301 +g1,1462:8756190,41710301 +k1,1462:8756190,41710301:0 +h1,1462:11743776,41710301:0,0,0 +k1,1462:32583028,41710301:20839252 +g1,1462:32583028,41710301 +) +(1,1463:6764466,42395156:25818563,407923,9908 +h1,1463:6764466,42395156:0,0,0 +g1,1463:8092282,42395156 +g1,1463:8756190,42395156 +h1,1463:9420098,42395156:0,0,0 +k1,1463:32583030,42395156:23162932 +g1,1463:32583030,42395156 +) +] +) +g1,1465:32583029,42405064 +g1,1465:6764466,42405064 +g1,1465:6764466,42405064 +g1,1465:32583029,42405064 +g1,1465:32583029,42405064 +) +h1,1465:6764466,42601672:0,0,0 +(1,1470:6764466,43466752:25818563,505283,134348 +h1,1468:6764466,43466752:983040,0,0 +k1,1468:9829701,43466752:220973 +k1,1469:12521380,43466752:220972 +(1,1469:12521380,43466752:0,414482,115847 +r1,1471:13231358,43466752:709978,530329,115847 +k1,1469:12521380,43466752:-709978 +) +(1,1469:12521380,43466752:709978,414482,115847 +k1,1469:12521380,43466752:3277 +h1,1469:13228081,43466752:0,411205,112570 +) +k1,1469:13452331,43466752:220973 +k1,1469:15683948,43466752:220972 +k1,1469:16896481,43466752:220973 +k1,1469:18630679,43466752:220972 +k1,1469:19503080,43466752:220973 +k1,1469:21605591,43466752:220972 +k1,1469:22182424,43466752:220973 +k1,1469:24083739,43466752:220972 +k1,1469:25589218,43466752:220973 +k1,1469:27317518,43466752:220972 +k1,1469:29025503,43466752:220973 +k1,1469:29929360,43466752:220972 +k1,1469:31657661,43466752:220973 +k1,1470:32583029,43466752:0 +) +(1,1470:6764466,44331832:25818563,513147,134348 +k1,1469:9380059,44331832:188795 +k1,1469:10641023,44331832:188795 +k1,1469:11361314,44331832:188794 +k1,1469:15163764,44331832:188795 +k1,1469:17882249,44331832:188795 +k1,1469:18730336,44331832:188795 +k1,1469:20611271,44331832:188795 +k1,1469:23637774,44331832:188794 +k1,1469:24314147,44331832:188785 +k1,1469:26480819,44331832:188795 +k1,1469:27328905,44331832:188794 +k1,1469:29530966,44331832:188795 +k1,1469:31313597,44331832:188795 +k1,1470:32583029,44331832:0 +) +(1,1470:6764466,45196912:25818563,513147,126483 +k1,1469:9266794,45196912:186941 +k1,1469:10263106,45196912:186942 +k1,1469:12634362,45196912:186941 +k1,1469:13893472,45196912:186941 +k1,1469:16090403,45196912:186942 +k1,1469:17296429,45196912:186941 +k1,1469:19762057,45196912:186941 +k1,1469:24147235,45196912:186942 +k1,1469:24962011,45196912:186941 +k1,1469:28443447,45196912:186941 +k1,1469:29096350,45196912:186942 +k1,1469:31591469,45196912:186941 +k1,1469:32583029,45196912:0 +) +] +g1,1471:32583029,45323395 +) +] +(1,1471:32583029,45706769:0,0,0 +g1,1471:32583029,45706769 +) +) +] +(1,1471:6630773,47279633:25952256,0,0 +h1,1471:6630773,47279633:25952256,0,0 +) +] +(1,1471:4262630,4025873:0,0,0 +[1,1471:-473656,4025873:0,0,0 +(1,1471:-473656,-710413:0,0,0 +(1,1471:-473656,-710413:0,0,0 +g1,1471:-473656,-710413 +) +g1,1471:-473656,-710413 ) -g1,1101:18438960,27524516 +] ) +] +!29267 +}47 +Input:343:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:344:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:345:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:346:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:347:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:348:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:349:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:350:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:351:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:352:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:353:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:354:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:355:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:356:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:357:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1406 +{48 +[1,1563:4262630,47279633:28320399,43253760,0 +(1,1563:4262630,4025873:0,0,0 +[1,1563:-473656,4025873:0,0,0 +(1,1563:-473656,-710413:0,0,0 +(1,1563:-473656,-644877:0,0,0 +k1,1563:-473656,-644877:-65536 ) -g1,1101:18107086,27524516 -g1,1101:18107086,27524516 +(1,1563:-473656,4736287:0,0,0 +k1,1563:-473656,4736287:5209943 ) +g1,1563:-473656,-710413 ) -g1,1101:18107086,27524516 +] ) +[1,1563:6630773,47279633:25952256,43253760,0 +[1,1563:6630773,4812305:25952256,786432,0 +(1,1563:6630773,4812305:25952256,505283,11795 +(1,1563:6630773,4812305:25952256,505283,11795 +g1,1563:3078558,4812305 +[1,1563:3078558,4812305:0,0,0 +(1,1563:3078558,2439708:0,1703936,0 +k1,1563:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,1563:2537886,2439708:1179648,16384,0 ) -g1,1101:18107086,27524516 -(1,1101:18107086,27524516:665744,859992,480932 -g1,1101:18772830,27524516 -g1,1101:18772830,27524516 +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,1563:3078558,1915420:16384,1179648,0 ) -g1,1101:18772830,27524516 -(1,1101:18772830,27524516:639530,859992,480932 -g1,1101:18772830,27524516 -g1,1101:19412360,27524516 -(1,1101:19412360,27524516:0,850556,480932 -(1,1101:19412360,27524516:0,0,0 -(1,1101:19412360,27524516:0,0,0 -g1,1101:19412360,27524516 -g1,1101:19412360,27524516 -g1,1101:19412360,27524516 -g1,1101:19412360,27524516 -g1,1101:19412360,27524516 -(1,1101:19412360,27524516:0,0,0 -(1,1101:19412360,27524516:331874,379060,9436 -(1,1101:19412360,27524516:331874,379060,9436 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) -g1,1101:19744234,27524516 +] ) ) -g1,1101:19412360,27524516 -g1,1101:19412360,27524516 ) +] +[1,1563:3078558,4812305:0,0,0 +(1,1563:3078558,2439708:0,1703936,0 +g1,1563:29030814,2439708 +g1,1563:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,1563:36151628,1915420:16384,1179648,0 ) -g1,1101:19412360,27524516 +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) +] ) -g1,1101:19412360,27524516 -(1,1101:19412360,27524516:665744,859992,480932 -g1,1101:20078104,27524516 -g1,1101:20078104,27524516 +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,1563:37855564,2439708:1179648,16384,0 ) -g1,1101:20078104,27524516 -(1,1101:20078104,27524516:639530,859992,480932 -g1,1101:20078104,27524516 -g1,1101:20717634,27524516 -(1,1101:20717634,27524516:0,855274,476214 -(1,1101:20717634,27524516:0,0,0 -(1,1101:20717634,27524516:0,0,0 -g1,1101:20717634,27524516 -g1,1101:20717634,27524516 -g1,1101:20717634,27524516 -g1,1101:20717634,27524516 -g1,1101:20717634,27524516 -(1,1101:20717634,27524516:0,0,0 -(1,1101:20717634,27524516:331874,388497,9436 -(1,1101:20717634,27524516:331874,388497,9436 ) -g1,1101:21049508,27524516 +k1,1563:3078556,2439708:-34777008 ) +] +[1,1563:3078558,4812305:0,0,0 +(1,1563:3078558,49800853:0,16384,2228224 +k1,1563:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,1563:2537886,49800853:1179648,16384,0 ) -g1,1101:20717634,27524516 -g1,1101:20717634,27524516 +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,1563:3078558,51504789:16384,1179648,0 ) +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) -g1,1101:20717634,27524516 +] ) ) -g1,1101:20717634,27524516 -(1,1101:20717634,27524516:665744,859992,480932 -g1,1101:21383378,27524516 -g1,1101:21383378,27524516 ) -g1,1101:21383378,27524516 -(1,1101:21383378,27524516:639530,859992,480932 -g1,1101:21383378,27524516 -g1,1101:22022908,27524516 -(1,1101:22022908,27524516:0,855274,476214 -(1,1101:22022908,27524516:0,0,0 -(1,1101:22022908,27524516:0,0,0 -g1,1101:22022908,27524516 -g1,1101:22022908,27524516 -g1,1101:22022908,27524516 -g1,1101:22022908,27524516 -g1,1101:22022908,27524516 -(1,1101:22022908,27524516:0,0,0 -(1,1101:22022908,27524516:331874,388497,9436 -(1,1101:22022908,27524516:331874,388497,9436 +] +[1,1563:3078558,4812305:0,0,0 +(1,1563:3078558,49800853:0,16384,2228224 +g1,1563:29030814,49800853 +g1,1563:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,1563:36151628,51504789:16384,1179648,0 ) -g1,1101:22354782,27524516 +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 ) +] ) -g1,1101:22022908,27524516 -g1,1101:22022908,27524516 +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,1563:37855564,49800853:1179648,16384,0 ) ) -g1,1101:22022908,27524516 +k1,1563:3078556,49800853:-34777008 ) +] +g1,1563:6630773,4812305 +g1,1563:6630773,4812305 +g1,1563:9516978,4812305 +g1,1563:11710468,4812305 +g1,1563:13120147,4812305 +g1,1563:16560787,4812305 +k1,1563:31786111,4812305:15225324 +) +) +] +[1,1563:6630773,45706769:25952256,40108032,0 +(1,1563:6630773,45706769:25952256,40108032,0 +(1,1563:6630773,45706769:0,0,0 +g1,1563:6630773,45706769 +) +[1,1563:6630773,45706769:25952256,40108032,0 +v1,1471:6630773,6254097:0,393216,0 +(1,1471:6630773,7373456:25952256,1512575,0 +g1,1471:6630773,7373456 +g1,1471:6237557,7373456 +r1,1563:6368629,7373456:131072,1512575,0 +g1,1471:6567858,7373456 +g1,1471:6764466,7373456 +[1,1471:6764466,7373456:25818563,1512575,0 +(1,1470:6764466,6374028:25818563,513147,134348 +k1,1469:9835530,6374028:232044 +k1,1469:10719002,6374028:232044 +k1,1469:12426262,6374028:232045 +k1,1469:13014166,6374028:232044 +k1,1469:15444288,6374028:232044 +k1,1469:17863268,6374028:232044 +k1,1469:18778198,6374028:232045 +k1,1469:19476203,6374028:232044 +k1,1469:21457403,6374028:232044 +k1,1469:24633980,6374028:232044 +k1,1469:26610592,6374028:232044 +k1,1469:27198497,6374028:232045 +k1,1469:29408418,6374028:232044 +k1,1469:30632022,6374028:232044 +k1,1470:32583029,6374028:0 +) +(1,1470:6764466,7239108:25818563,513147,134348 +g1,1469:9012350,7239108 +g1,1469:10645507,7239108 +g1,1469:12580129,7239108 +(1,1469:12580129,7239108:0,414482,115847 +r1,1563:13290107,7239108:709978,530329,115847 +k1,1469:12580129,7239108:-709978 +) +(1,1469:12580129,7239108:709978,414482,115847 +k1,1469:12580129,7239108:3277 +h1,1469:13286830,7239108:0,411205,112570 +) +g1,1469:13489336,7239108 +g1,1469:14220062,7239108 +g1,1469:14775151,7239108 +k1,1470:32583029,7239108:16012192 +g1,1470:32583029,7239108 +) +] +g1,1471:32583029,7373456 +) +h1,1471:6630773,7373456:0,0,0 +(1,1474:6630773,8238536:25952256,513147,134348 +h1,1473:6630773,8238536:983040,0,0 +k1,1473:9092775,8238536:215428 +k1,1473:12556167,8238536:215428 +k1,1473:14238291,8238536:215428 +k1,1473:15975465,8238536:215428 +k1,1473:16850185,8238536:215428 +k1,1473:19786012,8238536:215428 +k1,1473:22921723,8238536:215427 +k1,1473:24293861,8238536:215428 +k1,1473:25192174,8238536:215428 +k1,1473:27057799,8238536:215428 +(1,1473:27057799,8238536:0,414482,115847 +r1,1563:27767777,8238536:709978,530329,115847 +k1,1473:27057799,8238536:-709978 +) +(1,1473:27057799,8238536:709978,414482,115847 +k1,1473:27057799,8238536:3277 +h1,1473:27764500,8238536:0,411205,112570 +) +k1,1473:28487177,8238536:215428 +k1,1473:30713250,8238536:215428 +k1,1473:31699381,8238536:215428 +(1,1473:31699381,8238536:0,414482,115847 +r1,1563:32409359,8238536:709978,530329,115847 +k1,1473:31699381,8238536:-709978 +) +(1,1473:31699381,8238536:709978,414482,115847 +k1,1473:31699381,8238536:3277 +h1,1473:32406082,8238536:0,411205,112570 +) +k1,1473:32583029,8238536:0 +) +(1,1474:6630773,9103616:25952256,513147,126483 +k1,1473:7467362,9103616:208754 +k1,1473:9378086,9103616:208754 +k1,1473:11715449,9103616:208754 +k1,1473:13622241,9103616:208754 +k1,1473:14987705,9103616:208754 +k1,1473:16904983,9103616:208754 +k1,1473:17765165,9103616:208754 +k1,1473:18329779,9103616:208754 +k1,1473:22009975,9103616:208754 +k1,1473:22750226,9103616:208754 +k1,1473:26100121,9103616:208754 +k1,1473:27327960,9103616:208754 +k1,1473:29379586,9103616:208754 +k1,1473:30247632,9103616:208754 +k1,1473:31475471,9103616:208754 +k1,1474:32583029,9103616:0 +) +(1,1474:6630773,9968696:25952256,513147,134348 +k1,1473:9424321,9968696:216672 +k1,1473:10172490,9968696:216672 +k1,1473:13530303,9968696:216672 +k1,1473:15127818,9968696:216671 +k1,1473:17412806,9968696:216672 +k1,1473:18913984,9968696:216672 +k1,1473:19486516,9968696:216672 +k1,1473:21897333,9968696:216672 +k1,1473:24809501,9968696:216672 +k1,1473:25557669,9968696:216671 +k1,1473:28072689,9968696:216672 +k1,1473:29237012,9968696:216672 +k1,1473:31635378,9968696:216672 +k1,1473:32583029,9968696:0 +) +(1,1474:6630773,10833776:25952256,513147,126483 +g1,1473:7849087,10833776 +g1,1473:10878161,10833776 +g1,1473:11744546,10833776 +(1,1473:11744546,10833776:0,414482,115847 +r1,1563:12454524,10833776:709978,530329,115847 +k1,1473:11744546,10833776:-709978 +) +(1,1473:11744546,10833776:709978,414482,115847 +k1,1473:11744546,10833776:3277 +h1,1473:12451247,10833776:0,411205,112570 +) +g1,1473:12653753,10833776 +k1,1474:32583028,10833776:17744960 +g1,1474:32583028,10833776 +) +v1,1476:6630773,11518631:0,393216,0 +(1,1483:6630773,12642211:25952256,1516796,196608 +g1,1483:6630773,12642211 +g1,1483:6630773,12642211 +g1,1483:6434165,12642211 +(1,1483:6434165,12642211:0,1516796,196608 +r1,1563:32779637,12642211:26345472,1713404,196608 +k1,1483:6434165,12642211:-26345472 +) +(1,1483:6434165,12642211:26345472,1516796,196608 +[1,1483:6630773,12642211:25952256,1320188,0 +(1,1478:6630773,11746462:25952256,424439,86428 +(1,1477:6630773,11746462:0,0,0 +g1,1477:6630773,11746462 +g1,1477:6630773,11746462 +g1,1477:6303093,11746462 +(1,1477:6303093,11746462:0,0,0 +) +g1,1477:6630773,11746462 +) +k1,1478:6630773,11746462:0 +g1,1478:10614221,11746462 +h1,1478:11610083,11746462:0,0,0 +k1,1478:32583029,11746462:20972946 +g1,1478:32583029,11746462 +) +(1,1482:6630773,12562389:25952256,424439,79822 +(1,1480:6630773,12562389:0,0,0 +g1,1480:6630773,12562389 +g1,1480:6630773,12562389 +g1,1480:6303093,12562389 +(1,1480:6303093,12562389:0,0,0 +) +g1,1480:6630773,12562389 +) +g1,1482:7626635,12562389 +g1,1482:8954451,12562389 +g1,1482:9286405,12562389 +g1,1482:10946175,12562389 +h1,1482:12605945,12562389:0,0,0 +k1,1482:32583029,12562389:19977084 +g1,1482:32583029,12562389 +) +] +) +g1,1483:32583029,12642211 +g1,1483:6630773,12642211 +g1,1483:6630773,12642211 +g1,1483:32583029,12642211 +g1,1483:32583029,12642211 +) +h1,1483:6630773,12838819:0,0,0 +(1,1487:6630773,13703899:25952256,505283,126483 +h1,1486:6630773,13703899:983040,0,0 +k1,1486:8500155,13703899:258507 +k1,1486:9777747,13703899:258507 +k1,1486:12697671,13703899:258507 +k1,1486:14985173,13703899:258507 +k1,1486:16112032,13703899:258507 +k1,1486:17474821,13703899:258507 +k1,1486:19019145,13703899:258508 +k1,1486:20302635,13703899:258507 +k1,1486:21845648,13703899:258507 +(1,1486:21845648,13703899:0,452978,115847 +r1,1563:24314185,13703899:2468537,568825,115847 +k1,1486:21845648,13703899:-2468537 +) +(1,1486:21845648,13703899:2468537,452978,115847 +k1,1486:21845648,13703899:3277 +h1,1486:24310908,13703899:0,411205,112570 +) +k1,1486:24572692,13703899:258507 +k1,1486:25362696,13703899:258507 +k1,1486:29131967,13703899:258507 +k1,1486:30581919,13703899:258507 +k1,1486:32124932,13703899:258507 +k1,1486:32583029,13703899:0 +) +(1,1487:6630773,14568979:25952256,513147,134348 +k1,1486:9158295,14568979:246214 +k1,1486:10423593,14568979:246213 +k1,1486:11861252,14568979:246214 +k1,1486:12758893,14568979:246213 +k1,1486:14456729,14568979:246214 +k1,1486:15362235,14568979:246214 +k1,1486:16627533,14568979:246213 +k1,1486:19742913,14568979:246214 +k1,1486:20648419,14568979:246214 +k1,1486:21913717,14568979:246213 +k1,1486:24137808,14568979:246214 +k1,1486:28316836,14568979:246213 +k1,1486:31563944,14568979:246214 +k1,1486:32583029,14568979:0 +) +(1,1487:6630773,15434059:25952256,505283,115847 +g1,1486:8672874,15434059 +g1,1486:9558265,15434059 +(1,1486:9558265,15434059:0,414482,115847 +r1,1563:10971666,15434059:1413401,530329,115847 +k1,1486:9558265,15434059:-1413401 +) +(1,1486:9558265,15434059:1413401,414482,115847 +k1,1486:9558265,15434059:3277 +h1,1486:10968389,15434059:0,411205,112570 +) +g1,1486:11170895,15434059 +g1,1486:12053009,15434059 +(1,1486:12053009,15434059:0,414482,115847 +r1,1563:13818122,15434059:1765113,530329,115847 +k1,1486:12053009,15434059:-1765113 +) +(1,1486:12053009,15434059:1765113,414482,115847 +k1,1486:12053009,15434059:3277 +h1,1486:13814845,15434059:0,411205,112570 +) +k1,1487:32583028,15434059:18591236 +g1,1487:32583028,15434059 +) +(1,1489:6630773,16299139:25952256,513147,134348 +h1,1488:6630773,16299139:983040,0,0 +k1,1488:9176565,16299139:291354 +k1,1488:11129913,16299139:291355 +k1,1488:12072695,16299139:291354 +k1,1488:13111815,16299139:291354 +k1,1488:15271601,16299139:291355 +k1,1488:16222247,16299139:291354 +k1,1488:17505162,16299139:291355 +k1,1488:18815601,16299139:291354 +k1,1488:23520149,16299139:291354 +k1,1488:24470796,16299139:291355 +k1,1488:25781235,16299139:291354 +k1,1488:27283694,16299139:291354 +k1,1488:28859555,16299139:291355 +k1,1488:31966991,16299139:291354 +k1,1488:32583029,16299139:0 +) +(1,1489:6630773,17164219:25952256,513147,134348 +k1,1488:10222503,17164219:185169 +k1,1488:11399231,17164219:185168 +k1,1488:13747088,17164219:185169 +k1,1488:16061522,17164219:185169 +k1,1488:18284861,17164219:185169 +k1,1488:19863980,17164219:185168 +k1,1488:21700001,17164219:185169 +k1,1488:24817251,17164219:185169 +k1,1488:27212294,17164219:185169 +k1,1488:29351746,17164219:185168 +k1,1488:30556000,17164219:185169 +k1,1489:32583029,17164219:0 +) +(1,1489:6630773,18029299:25952256,513147,126483 +k1,1488:9055009,18029299:213707 +k1,1488:11651605,18029299:213707 +k1,1488:13432933,18029299:213707 +k1,1488:14665725,18029299:213707 +k1,1488:19202842,18029299:213707 +k1,1488:22498706,18029299:213706 +k1,1488:23371705,18029299:213707 +k1,1488:24938730,18029299:213707 +k1,1488:27968519,18029299:213707 +k1,1488:29173786,18029299:213707 +k1,1488:30453764,18029299:213707 +k1,1488:32583029,18029299:0 +) +(1,1489:6630773,18894379:25952256,513147,134348 +g1,1488:9497317,18894379 +g1,1488:10746433,18894379 +g1,1488:11964747,18894379 +g1,1488:13323963,18894379 +g1,1488:14332562,18894379 +g1,1488:16029944,18894379 +h1,1488:16826862,18894379:0,0,0 +g1,1488:17026091,18894379 +g1,1488:18172971,18894379 +g1,1488:19142903,18894379 +g1,1488:22031730,18894379 +k1,1489:32583029,18894379:6645353 +g1,1489:32583029,18894379 +) +v1,1491:6630773,19579234:0,393216,0 +(1,1498:6630773,20686298:25952256,1500280,196608 +g1,1498:6630773,20686298 +g1,1498:6630773,20686298 +g1,1498:6434165,20686298 +(1,1498:6434165,20686298:0,1500280,196608 +r1,1563:32779637,20686298:26345472,1696888,196608 +k1,1498:6434165,20686298:-26345472 +) +(1,1498:6434165,20686298:26345472,1500280,196608 +[1,1498:6630773,20686298:25952256,1303672,0 +(1,1493:6630773,19790549:25952256,407923,9908 +(1,1492:6630773,19790549:0,0,0 +g1,1492:6630773,19790549 +g1,1492:6630773,19790549 +g1,1492:6303093,19790549 +(1,1492:6303093,19790549:0,0,0 +) +g1,1492:6630773,19790549 +) +g1,1493:7294681,19790549 +g1,1493:7958589,19790549 +k1,1493:7958589,19790549:0 +h1,1493:9618359,19790549:0,0,0 +k1,1493:32583029,19790549:22964670 +g1,1493:32583029,19790549 +) +(1,1497:6630773,20606476:25952256,424439,79822 +(1,1495:6630773,20606476:0,0,0 +g1,1495:6630773,20606476 +g1,1495:6630773,20606476 +g1,1495:6303093,20606476 +(1,1495:6303093,20606476:0,0,0 +) +g1,1495:6630773,20606476 +) +g1,1497:7626635,20606476 +g1,1497:8954451,20606476 +h1,1497:9286405,20606476:0,0,0 +k1,1497:32583029,20606476:23296624 +g1,1497:32583029,20606476 +) +] +) +g1,1498:32583029,20686298 +g1,1498:6630773,20686298 +g1,1498:6630773,20686298 +g1,1498:32583029,20686298 +g1,1498:32583029,20686298 +) +h1,1498:6630773,20882906:0,0,0 +(1,1502:6630773,21747986:25952256,505283,134348 +h1,1501:6630773,21747986:983040,0,0 +k1,1501:9606999,21747986:209951 +k1,1501:11552342,21747986:209950 +(1,1501:11552342,21747986:0,452978,122846 +r1,1563:14020879,21747986:2468537,575824,122846 +k1,1501:11552342,21747986:-2468537 +) +(1,1501:11552342,21747986:2468537,452978,122846 +k1,1501:11552342,21747986:3277 +h1,1501:14017602,21747986:0,411205,112570 +) +k1,1501:14230830,21747986:209951 +k1,1501:14230830,21747986:0 +k1,1501:14440780,21747986:209950 +k1,1501:16661376,21747986:209951 +k1,1501:18568053,21747986:209950 +k1,1501:21784796,21747986:209951 +k1,1501:22810014,21747986:209950 +k1,1501:24086236,21747986:209951 +k1,1501:25970631,21747986:209950 +k1,1501:26866744,21747986:209951 +k1,1501:29306884,21747986:209950 +k1,1501:32583029,21747986:0 +) +(1,1502:6630773,22613066:25952256,513147,134348 +k1,1501:7326261,22613066:163991 +k1,1501:8556524,22613066:163992 +k1,1501:11267899,22613066:163991 +k1,1501:12193418,22613066:163991 +k1,1501:13617667,22613066:163992 +k1,1501:14440950,22613066:163991 +k1,1501:17537022,22613066:163991 +k1,1501:18317051,22613066:163991 +k1,1501:22282786,22613066:163992 +k1,1501:25517794,22613066:163991 +k1,1501:26333213,22613066:163991 +k1,1501:29231367,22613066:163992 +k1,1501:31923737,22613066:163991 +k1,1501:32583029,22613066:0 +) +(1,1502:6630773,23478146:25952256,513147,134348 +k1,1501:7834833,23478146:184975 +k1,1501:9257783,23478146:184975 +k1,1501:12003250,23478146:184975 +k1,1501:13179786,23478146:184976 +k1,1501:15402931,23478146:184975 +k1,1501:16203944,23478146:184975 +k1,1501:17408004,23478146:184975 +k1,1501:20224250,23478146:184975 +k1,1501:21068517,23478146:184975 +k1,1501:24833725,23478146:184976 +k1,1501:27028689,23478146:184975 +k1,1501:28232749,23478146:184975 +k1,1501:32583029,23478146:0 +) +(1,1502:6630773,24343226:25952256,513147,134348 +k1,1501:8803339,24343226:218282 +k1,1501:10401808,24343226:218281 +k1,1501:11611650,24343226:218282 +k1,1501:13868101,24343226:218281 +k1,1501:16485001,24343226:218282 +k1,1501:17974680,24343226:218281 +k1,1501:19297244,24343226:218282 +k1,1501:21195869,24343226:218282 +k1,1501:22073442,24343226:218281 +k1,1501:25367984,24343226:218282 +k1,1501:28146757,24343226:218281 +k1,1501:29051201,24343226:218282 +k1,1501:29625342,24343226:218281 +k1,1501:31923737,24343226:218282 +k1,1501:32583029,24343226:0 +) +(1,1502:6630773,25208306:25952256,513147,134348 +g1,1501:8712851,25208306 +g1,1501:11728162,25208306 +g1,1501:14998408,25208306 +g1,1501:15849065,25208306 +g1,1501:16404154,25208306 +g1,1501:18801461,25208306 +g1,1501:20781303,25208306 +g1,1501:21639824,25208306 +k1,1502:32583029,25208306:8758890 +g1,1502:32583029,25208306 +) +v1,1504:6630773,25893161:0,393216,0 +(1,1517:6630773,28632079:25952256,3132134,196608 +g1,1517:6630773,28632079 +g1,1517:6630773,28632079 +g1,1517:6434165,28632079 +(1,1517:6434165,28632079:0,3132134,196608 +r1,1563:32779637,28632079:26345472,3328742,196608 +k1,1517:6434165,28632079:-26345472 +) +(1,1517:6434165,28632079:26345472,3132134,196608 +[1,1517:6630773,28632079:25952256,2935526,0 +(1,1506:6630773,26104476:25952256,407923,9908 +(1,1505:6630773,26104476:0,0,0 +g1,1505:6630773,26104476 +g1,1505:6630773,26104476 +g1,1505:6303093,26104476 +(1,1505:6303093,26104476:0,0,0 +) +g1,1505:6630773,26104476 +) +g1,1506:7626635,26104476 +g1,1506:8290543,26104476 +h1,1506:8954451,26104476:0,0,0 +k1,1506:32583029,26104476:23628578 +g1,1506:32583029,26104476 +) +(1,1510:6630773,26920403:25952256,424439,79822 +(1,1508:6630773,26920403:0,0,0 +g1,1508:6630773,26920403 +g1,1508:6630773,26920403 +g1,1508:6303093,26920403 +(1,1508:6303093,26920403:0,0,0 +) +g1,1508:6630773,26920403 +) +g1,1510:7626635,26920403 +g1,1510:8954451,26920403 +h1,1510:9286405,26920403:0,0,0 +k1,1510:32583029,26920403:23296624 +g1,1510:32583029,26920403 +) +(1,1512:6630773,27736330:25952256,407923,9908 +(1,1511:6630773,27736330:0,0,0 +g1,1511:6630773,27736330 +g1,1511:6630773,27736330 +g1,1511:6303093,27736330 +(1,1511:6303093,27736330:0,0,0 +) +g1,1511:6630773,27736330 +) +g1,1512:7626635,27736330 +g1,1512:8290543,27736330 +h1,1512:8954451,27736330:0,0,0 +k1,1512:32583029,27736330:23628578 +g1,1512:32583029,27736330 +) +(1,1516:6630773,28552257:25952256,424439,79822 +(1,1514:6630773,28552257:0,0,0 +g1,1514:6630773,28552257 +g1,1514:6630773,28552257 +g1,1514:6303093,28552257 +(1,1514:6303093,28552257:0,0,0 +) +g1,1514:6630773,28552257 +) +g1,1516:7626635,28552257 +g1,1516:8954451,28552257 +h1,1516:9286405,28552257:0,0,0 +k1,1516:32583029,28552257:23296624 +g1,1516:32583029,28552257 +) +] +) +g1,1517:32583029,28632079 +g1,1517:6630773,28632079 +g1,1517:6630773,28632079 +g1,1517:32583029,28632079 +g1,1517:32583029,28632079 +) +h1,1517:6630773,28828687:0,0,0 +(1,1521:6630773,29693767:25952256,513147,134348 +h1,1520:6630773,29693767:983040,0,0 +k1,1520:9624718,29693767:219151 +k1,1520:10862954,29693767:219151 +k1,1520:13403390,29693767:219151 +k1,1520:16143711,29693767:219151 +k1,1520:19109477,29693767:219152 +k1,1520:21194438,29693767:219151 +k1,1520:21769449,29693767:219151 +k1,1520:26321841,29693767:219151 +(1,1520:26321841,29693767:0,452978,115847 +r1,1563:28438666,29693767:2116825,568825,115847 +k1,1520:26321841,29693767:-2116825 +) +(1,1520:26321841,29693767:2116825,452978,115847 +k1,1520:26321841,29693767:3277 +h1,1520:28435389,29693767:0,411205,112570 +) +k1,1520:28657817,29693767:219151 +k1,1520:30893511,29693767:219151 +k1,1520:32583029,29693767:0 +) +(1,1521:6630773,30558847:25952256,505283,134348 +k1,1520:7803611,30558847:153753 +k1,1520:10187554,30558847:153753 +k1,1520:12862477,30558847:153753 +k1,1520:15762844,30558847:153753 +(1,1520:15762844,30558847:0,452978,115847 +r1,1563:16824533,30558847:1061689,568825,115847 +k1,1520:15762844,30558847:-1061689 +) +(1,1520:15762844,30558847:1061689,452978,115847 +k1,1520:15762844,30558847:3277 +h1,1520:16821256,30558847:0,411205,112570 +) +k1,1520:16978286,30558847:153753 +k1,1520:18997848,30558847:153752 +k1,1520:19922304,30558847:153753 +(1,1520:19922304,30558847:0,452978,122846 +r1,1563:22390841,30558847:2468537,575824,122846 +k1,1520:19922304,30558847:-2468537 +) +(1,1520:19922304,30558847:2468537,452978,122846 +k1,1520:19922304,30558847:3277 +h1,1520:22387564,30558847:0,411205,112570 +) +k1,1520:22544594,30558847:153753 +k1,1520:24714890,30558847:153753 +k1,1520:26060088,30558847:153753 +k1,1520:27232926,30558847:153753 +k1,1520:29836415,30558847:153753 +k1,1521:32583029,30558847:0 +) +(1,1521:6630773,31423927:25952256,513147,134348 +(1,1520:6630773,31423927:0,435480,115847 +r1,1563:7340751,31423927:709978,551327,115847 +k1,1520:6630773,31423927:-709978 +) +(1,1520:6630773,31423927:709978,435480,115847 +k1,1520:6630773,31423927:3277 +h1,1520:7337474,31423927:0,411205,112570 +) +g1,1520:7539980,31423927 +g1,1520:10080155,31423927 +g1,1520:11298469,31423927 +g1,1520:14781707,31423927 +g1,1520:16548557,31423927 +g1,1520:17766871,31423927 +g1,1520:20196290,31423927 +k1,1521:32583029,31423927:9691899 +g1,1521:32583029,31423927 +) +v1,1523:6630773,32108782:0,393216,0 +(1,1542:6630773,36496070:25952256,4780504,196608 +g1,1542:6630773,36496070 +g1,1542:6630773,36496070 +g1,1542:6434165,36496070 +(1,1542:6434165,36496070:0,4780504,196608 +r1,1563:32779637,36496070:26345472,4977112,196608 +k1,1542:6434165,36496070:-26345472 +) +(1,1542:6434165,36496070:26345472,4780504,196608 +[1,1542:6630773,36496070:25952256,4583896,0 +(1,1525:6630773,32336613:25952256,424439,79822 +(1,1524:6630773,32336613:0,0,0 +g1,1524:6630773,32336613 +g1,1524:6630773,32336613 +g1,1524:6303093,32336613 +(1,1524:6303093,32336613:0,0,0 +) +g1,1524:6630773,32336613 +) +g1,1525:7626635,32336613 +g1,1525:8290543,32336613 +h1,1525:8954451,32336613:0,0,0 +k1,1525:32583029,32336613:23628578 +g1,1525:32583029,32336613 +) +(1,1529:6630773,33152540:25952256,424439,79822 +(1,1527:6630773,33152540:0,0,0 +g1,1527:6630773,33152540 +g1,1527:6630773,33152540 +g1,1527:6303093,33152540 +(1,1527:6303093,33152540:0,0,0 +) +g1,1527:6630773,33152540 +) +g1,1529:7626635,33152540 +g1,1529:8954451,33152540 +h1,1529:11942036,33152540:0,0,0 +k1,1529:32583028,33152540:20640992 +g1,1529:32583028,33152540 +) +(1,1531:6630773,33968467:25952256,424439,79822 +(1,1530:6630773,33968467:0,0,0 +g1,1530:6630773,33968467 +g1,1530:6630773,33968467 +g1,1530:6303093,33968467 +(1,1530:6303093,33968467:0,0,0 +) +g1,1530:6630773,33968467 +) +g1,1531:7626635,33968467 +g1,1531:8954451,33968467 +h1,1531:9618359,33968467:0,0,0 +k1,1531:32583029,33968467:22964670 +g1,1531:32583029,33968467 +) +(1,1535:6630773,34784394:25952256,424439,79822 +(1,1533:6630773,34784394:0,0,0 +g1,1533:6630773,34784394 +g1,1533:6630773,34784394 +g1,1533:6303093,34784394 +(1,1533:6303093,34784394:0,0,0 +) +g1,1533:6630773,34784394 +) +g1,1535:7626635,34784394 +g1,1535:8954451,34784394 +h1,1535:9286405,34784394:0,0,0 +k1,1535:32583029,34784394:23296624 +g1,1535:32583029,34784394 +) +(1,1537:6630773,35600321:25952256,407923,9908 +(1,1536:6630773,35600321:0,0,0 +g1,1536:6630773,35600321 +g1,1536:6630773,35600321 +g1,1536:6303093,35600321 +(1,1536:6303093,35600321:0,0,0 +) +g1,1536:6630773,35600321 +) +g1,1537:7626635,35600321 +g1,1537:8622497,35600321 +h1,1537:9286405,35600321:0,0,0 +k1,1537:32583029,35600321:23296624 +g1,1537:32583029,35600321 +) +(1,1541:6630773,36416248:25952256,424439,79822 +(1,1539:6630773,36416248:0,0,0 +g1,1539:6630773,36416248 +g1,1539:6630773,36416248 +g1,1539:6303093,36416248 +(1,1539:6303093,36416248:0,0,0 +) +g1,1539:6630773,36416248 +) +g1,1541:7626635,36416248 +g1,1541:8954451,36416248 +h1,1541:9286405,36416248:0,0,0 +k1,1541:32583029,36416248:23296624 +g1,1541:32583029,36416248 +) +] +) +g1,1542:32583029,36496070 +g1,1542:6630773,36496070 +g1,1542:6630773,36496070 +g1,1542:32583029,36496070 +g1,1542:32583029,36496070 +) +h1,1542:6630773,36692678:0,0,0 +(1,1546:6630773,37557758:25952256,513147,134348 +h1,1545:6630773,37557758:983040,0,0 +k1,1545:8284714,37557758:193144 +k1,1545:9164020,37557758:193144 +k1,1545:9713024,37557758:193144 +k1,1545:11749040,37557758:193144 +k1,1545:12601476,37557758:193144 +k1,1545:13565323,37557758:193144 +k1,1545:16832761,37557758:193144 +k1,1545:18044990,37557758:193144 +k1,1545:20081006,37557758:193144 +k1,1545:21635333,37557758:193144 +k1,1545:24194327,37557758:193144 +k1,1545:25406556,37557758:193144 +k1,1545:27380313,37557758:193144 +k1,1545:28232749,37557758:193144 +k1,1545:32583029,37557758:0 +) +(1,1546:6630773,38422838:25952256,505283,115847 +g1,1545:9014317,38422838 +g1,1545:10232631,38422838 +g1,1545:13210587,38422838 +g1,1545:15090159,38422838 +g1,1545:15820885,38422838 +(1,1545:15820885,38422838:0,414482,115847 +r1,1563:16530863,38422838:709978,530329,115847 +k1,1545:15820885,38422838:-709978 +) +(1,1545:15820885,38422838:709978,414482,115847 +k1,1545:15820885,38422838:3277 +h1,1545:16527586,38422838:0,411205,112570 +) +k1,1546:32583029,38422838:15878496 +g1,1546:32583029,38422838 +) +v1,1548:6630773,39107693:0,393216,0 +(1,1557:6630773,41423900:25952256,2709423,196608 +g1,1557:6630773,41423900 +g1,1557:6630773,41423900 +g1,1557:6434165,41423900 +(1,1557:6434165,41423900:0,2709423,196608 +r1,1563:32779637,41423900:26345472,2906031,196608 +k1,1557:6434165,41423900:-26345472 +) +(1,1557:6434165,41423900:26345472,2709423,196608 +[1,1557:6630773,41423900:25952256,2512815,0 +(1,1550:6630773,39319008:25952256,407923,9908 +(1,1549:6630773,39319008:0,0,0 +g1,1549:6630773,39319008 +g1,1549:6630773,39319008 +g1,1549:6303093,39319008 +(1,1549:6303093,39319008:0,0,0 +) +g1,1549:6630773,39319008 +) +g1,1550:9618358,39319008 +g1,1550:10282266,39319008 +h1,1550:12937897,39319008:0,0,0 +k1,1550:32583029,39319008:19645132 +g1,1550:32583029,39319008 +) +(1,1554:6630773,40659223:25952256,431045,112852 +g1,1554:7626635,40659223 +g1,1554:10282267,40659223 +g1,1554:11278129,40659223 +g1,1554:14265714,40659223 +g1,1554:14929622,40659223 +g1,1554:18249161,40659223 +g1,1554:19576977,40659223 +g1,1554:22564562,40659223 +g1,1554:23560424,40659223 +g1,1554:26216056,40659223 +k1,1554:32583029,40659223:3711342 +g1,1554:32583029,40659223 +) +(1,1556:6630773,41344078:25952256,424439,79822 +(1,1554:6630773,41344078:0,0,0 +g1,1554:6630773,41344078 +g1,1554:6630773,41344078 +g1,1554:6303093,41344078 +(1,1554:6303093,41344078:0,0,0 +) +g1,1554:6630773,41344078 +) +g1,1556:7626635,41344078 +g1,1556:8954451,41344078 +h1,1556:9618359,41344078:0,0,0 +k1,1556:32583029,41344078:22964670 +g1,1556:32583029,41344078 +) +] +) +g1,1557:32583029,41423900 +g1,1557:6630773,41423900 +g1,1557:6630773,41423900 +g1,1557:32583029,41423900 +g1,1557:32583029,41423900 +) +h1,1557:6630773,41620508:0,0,0 +(1,1561:6630773,42485588:25952256,505283,134348 +h1,1560:6630773,42485588:983040,0,0 +k1,1560:9283736,42485588:204538 +k1,1560:12001579,42485588:204537 +k1,1560:13397562,42485588:204538 +k1,1560:16162591,42485588:204537 +k1,1560:17358689,42485588:204538 +k1,1560:21062194,42485588:204538 +k1,1560:24060531,42485588:204537 +k1,1560:24892904,42485588:204538 +k1,1560:26699141,42485588:204537 +k1,1560:30234219,42485588:204538 +k1,1561:32583029,42485588:0 +) +(1,1561:6630773,43350668:25952256,513147,126483 +k1,1560:8130471,43350668:158831 +k1,1560:8820799,43350668:158831 +k1,1560:12169267,43350668:158831 +k1,1560:13519543,43350668:158831 +k1,1560:14546726,43350668:158831 +k1,1560:15520825,43350668:158831 +k1,1560:16745927,43350668:158831 +k1,1560:18435024,43350668:158831 +k1,1560:19245283,43350668:158831 +k1,1560:21257472,43350668:158831 +k1,1560:23238859,43350668:158831 +k1,1560:24416775,43350668:158831 +k1,1560:28092268,43350668:158831 +k1,1560:30886302,43350668:158831 +k1,1560:32583029,43350668:0 +) +(1,1561:6630773,44215748:25952256,513147,126483 +k1,1560:7970468,44215748:167256 +k1,1560:9854112,44215748:167256 +k1,1560:10680660,44215748:167256 +k1,1560:13468045,44215748:167256 +k1,1560:15819616,44215748:167256 +k1,1560:17183559,44215748:167256 +k1,1560:20376612,44215748:167256 +k1,1560:21159906,44215748:167256 +k1,1560:22346247,44215748:167256 +k1,1560:23897623,44215748:167256 +k1,1560:26035547,44215748:167256 +k1,1560:28213448,44215748:167256 +(1,1560:28213448,44215748:0,414482,115847 +r1,1563:29626849,44215748:1413401,530329,115847 +k1,1560:28213448,44215748:-1413401 +) +(1,1560:28213448,44215748:1413401,414482,115847 +k1,1560:28213448,44215748:3277 +h1,1560:29623572,44215748:0,411205,112570 +) +k1,1560:29794105,44215748:167256 +k1,1560:30644246,44215748:167256 +(1,1560:30644246,44215748:0,414482,115847 +r1,1563:32409359,44215748:1765113,530329,115847 +k1,1560:30644246,44215748:-1765113 +) +(1,1560:30644246,44215748:1765113,414482,115847 +k1,1560:30644246,44215748:3277 +h1,1560:32406082,44215748:0,411205,112570 +) +k1,1560:32583029,44215748:0 +) +(1,1561:6630773,45080828:25952256,505283,134348 +g1,1560:7899550,45080828 +(1,1560:7899550,45080828:0,452978,122846 +r1,1563:10368087,45080828:2468537,575824,122846 +k1,1560:7899550,45080828:-2468537 +) +(1,1560:7899550,45080828:2468537,452978,122846 +k1,1560:7899550,45080828:3277 +h1,1560:10364810,45080828:0,411205,112570 +) +g1,1560:10567316,45080828 +g1,1560:12777190,45080828 +g1,1560:14208496,45080828 +g1,1560:16686412,45080828 +h1,1560:17657000,45080828:0,0,0 +g1,1560:17856229,45080828 +g1,1560:18864828,45080828 +g1,1560:20562210,45080828 +h1,1560:21359128,45080828:0,0,0 +k1,1561:32583029,45080828:10843137 +g1,1561:32583029,45080828 +) +] +(1,1563:32583029,45706769:0,0,0 +g1,1563:32583029,45706769 +) +) +] +(1,1563:6630773,47279633:25952256,0,0 +h1,1563:6630773,47279633:25952256,0,0 +) +] +(1,1563:4262630,4025873:0,0,0 +[1,1563:-473656,4025873:0,0,0 +(1,1563:-473656,-710413:0,0,0 +(1,1563:-473656,-710413:0,0,0 +g1,1563:-473656,-710413 +) +g1,1563:-473656,-710413 +) +] +) +] +!28611 +}48 +Input:358:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:359:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:360:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:361:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:362:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:363:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:364:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:365:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:366:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:367:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:368:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:369:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:370:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:371:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:372:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:373:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:374:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:375:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:376:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:377:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:378:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:379:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:380:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:381:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:382:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:383:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:384:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:385:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:386:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:387:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:388:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:389:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:390:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:391:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:392:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:393:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:394:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:395:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:396:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:397:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:398:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!3824 +{49 +[1,1812:4262630,47279633:28320399,43253760,0 +(1,1812:4262630,4025873:0,0,0 +[1,1812:-473656,4025873:0,0,0 +(1,1812:-473656,-710413:0,0,0 +(1,1812:-473656,-644877:0,0,0 +k1,1812:-473656,-644877:-65536 ) -g1,1101:22022908,27524516 -(1,1101:22022908,27524516:665744,859992,480932 -g1,1101:22688652,27524516 -g1,1101:22688652,27524516 +(1,1812:-473656,4736287:0,0,0 +k1,1812:-473656,4736287:5209943 ) -g1,1101:22688652,27524516 -(1,1101:22688652,27524516:639530,859992,480932 -g1,1101:22688652,27524516 -g1,1101:23328182,27524516 -(1,1101:23328182,27524516:0,859992,471496 -(1,1101:23328182,27524516:0,0,0 -(1,1101:23328182,27524516:0,0,0 -g1,1101:23328182,27524516 -g1,1101:23328182,27524516 -g1,1101:23328182,27524516 -g1,1101:23328182,27524516 -g1,1101:23328182,27524516 -(1,1101:23328182,27524516:0,0,0 -(1,1101:23328182,27524516:331874,388497,0 -(1,1101:23328182,27524516:331874,388497,0 +g1,1812:-473656,-710413 ) -g1,1101:23660056,27524516 +] ) +[1,1812:6630773,47279633:25952256,43253760,0 +[1,1812:6630773,4812305:25952256,786432,0 +(1,1812:6630773,4812305:25952256,505283,11795 +(1,1812:6630773,4812305:25952256,505283,11795 +g1,1812:3078558,4812305 +[1,1812:3078558,4812305:0,0,0 +(1,1812:3078558,2439708:0,1703936,0 +k1,1812:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,1812:2537886,2439708:1179648,16384,0 ) -g1,1101:23328182,27524516 -g1,1101:23328182,27524516 +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,1812:3078558,1915420:16384,1179648,0 ) +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) -g1,1101:23328182,27524516 +] ) ) -g1,1101:23328182,27524516 -(1,1101:23328182,27524516:665744,859992,480932 -g1,1101:23993926,27524516 -g1,1101:23993926,27524516 ) -g1,1101:23993926,27524516 -(1,1101:23993926,27524516:639530,859992,480932 -g1,1101:23993926,27524516 -g1,1101:24633456,27524516 -(1,1101:24633456,27524516:0,859992,471496 -(1,1101:24633456,27524516:0,0,0 -(1,1101:24633456,27524516:0,0,0 -g1,1101:24633456,27524516 -g1,1101:24633456,27524516 -g1,1101:24633456,27524516 -g1,1101:24633456,27524516 -g1,1101:24633456,27524516 -(1,1101:24633456,27524516:0,0,0 -(1,1101:24633456,27524516:331874,388497,0 -(1,1101:24633456,27524516:331874,388497,0 +] +[1,1812:3078558,4812305:0,0,0 +(1,1812:3078558,2439708:0,1703936,0 +g1,1812:29030814,2439708 +g1,1812:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,1812:36151628,1915420:16384,1179648,0 ) -g1,1101:24965330,27524516 +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) +] ) -g1,1101:24633456,27524516 -g1,1101:24633456,27524516 +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,1812:37855564,2439708:1179648,16384,0 ) ) -g1,1101:24633456,27524516 +k1,1812:3078556,2439708:-34777008 ) +] +[1,1812:3078558,4812305:0,0,0 +(1,1812:3078558,49800853:0,16384,2228224 +k1,1812:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,1812:2537886,49800853:1179648,16384,0 ) -g1,1101:24633456,27524516 -(1,1101:24633456,27524516:665744,859992,480932 -g1,1101:25299200,27524516 -g1,1101:25299200,27524516 +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,1812:3078558,51504789:16384,1179648,0 ) -g1,1101:25299200,27524516 +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) ] ) ) -g1,1101:17441342,27524516 -g1,1101:17441342,27524516 ) +] +[1,1812:3078558,4812305:0,0,0 +(1,1812:3078558,49800853:0,16384,2228224 +g1,1812:29030814,49800853 +g1,1812:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,1812:36151628,51504789:16384,1179648,0 ) -g1,1101:17441342,27524516 -g1,1106:17441342,27524516 -g1,1106:17441342,27524516 -g1,1108:17441342,27524516 -(1,1108:17441342,27524516:0,0,0 -(1,1108:17441342,27524516:0,0,0 -g1,1108:17441342,27524516 -(1,1108:17441342,27524516:0,0,0 -(1,1108:17441342,27524516:1976140,466322,199855 -(1,1108:17441342,27524516:1976140,466322,199855 -r1,1152:17441342,27524516:0,666177,199855 -(1,1108:17441342,27524516:0,340640,93333 -r1,1152:19417482,27524516:1976140,433973,93333 -k1,1108:17441342,27524516:-1976140 -) -(1,1108:17441342,27524516:1976140,340640,93333 -g1,1108:17725988,27524516 -h1,1108:18851466,27524516:562739,252906,0 -h1,1108:19414205,27524516:0,328964,90056 -) +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 ) -g1,1108:19417482,27524516 +] ) +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,1812:37855564,49800853:1179648,16384,0 ) -g1,1108:17441342,27524516 -g1,1108:17441342,27524516 ) +k1,1812:3078556,49800853:-34777008 ) -g1,1108:17441342,27524516 -g1,1109:17441342,27524516 -(1,1109:17441342,27524516:0,0,0 -(1,1109:17441342,27524516:0,0,0 -g1,1109:17441342,27524516 -g1,1109:17441342,27524516 -g1,1109:17441342,27524516 -g1,1109:17441342,27524516 -g1,1109:17441342,27524516 -(1,1109:17441342,27524516:0,0,0 -(1,1109:17441342,27524516:6599312,404226,101187 -(1,1109:17441342,27524516:6599312,404226,101187 -(1,1109:17441342,27524516:0,363038,98932 -r1,1152:19417482,27524516:1976140,461970,98932 -k1,1109:17441342,27524516:-1976140 +] +g1,1812:6630773,4812305 +k1,1812:22348274,4812305:14920583 +g1,1812:23970945,4812305 +g1,1812:24793421,4812305 +g1,1812:27528893,4812305 +g1,1812:28938572,4812305 ) -(1,1109:17441342,27524516:1976140,363038,98932 -k1,1109:17441342,27524516:3277 -h1,1109:19414205,27524516:0,328964,90056 ) -g1,1109:19583157,27524516 -g1,1109:22254929,27524516 +] +[1,1812:6630773,45706769:25952256,40108032,0 +(1,1812:6630773,45706769:25952256,40108032,0 +(1,1812:6630773,45706769:0,0,0 +g1,1812:6630773,45706769 ) -g1,1109:24040654,27524516 +[1,1812:6630773,45706769:25952256,40108032,0 +v1,1563:6630773,6254097:0,393216,0 +(1,1594:6630773,13905093:25952256,8044212,196608 +g1,1594:6630773,13905093 +g1,1594:6630773,13905093 +g1,1594:6434165,13905093 +(1,1594:6434165,13905093:0,8044212,196608 +r1,1812:32779637,13905093:26345472,8240820,196608 +k1,1594:6434165,13905093:-26345472 ) +(1,1594:6434165,13905093:26345472,8044212,196608 +[1,1594:6630773,13905093:25952256,7847604,0 +(1,1565:6630773,6481928:25952256,424439,79822 +(1,1564:6630773,6481928:0,0,0 +g1,1564:6630773,6481928 +g1,1564:6630773,6481928 +g1,1564:6303093,6481928 +(1,1564:6303093,6481928:0,0,0 ) -g1,1109:17441342,27524516 -g1,1109:17441342,27524516 -) -) -g1,1109:17441342,27524516 -g1,1110:17441342,27524516 -(1,1110:17441342,27524516:0,0,0 -(1,1110:17441342,27524516:0,0,0 -g1,1110:17441342,27524516 -g1,1110:17441342,27524516 -g1,1110:17441342,27524516 -g1,1110:17441342,27524516 -g1,1110:17441342,27524516 -(1,1110:17441342,27524516:0,0,0 -(1,1110:17441342,27524516:3738272,404226,93333 -(1,1110:17441342,27524516:3738272,404226,93333 -(1,1110:17441342,27524516:0,363038,93333 -r1,1152:19417482,27524516:1976140,456371,93333 -k1,1110:17441342,27524516:-1976140 +g1,1564:6630773,6481928 ) -(1,1110:17441342,27524516:1976140,363038,93333 -k1,1110:17441342,27524516:3277 -h1,1110:19414205,27524516:0,328964,90056 +k1,1565:6630773,6481928:0 +h1,1565:11278128,6481928:0,0,0 +k1,1565:32583028,6481928:21304900 +g1,1565:32583028,6481928 ) -g1,1110:19583157,27524516 -) -g1,1110:21179614,27524516 -) -) -g1,1110:17441342,27524516 -g1,1110:17441342,27524516 -) -) -g1,1110:17441342,27524516 -g1,1112:17441342,27524516 -g1,1112:17441342,27524516 -) -g1,1112:17441342,27524516 -) -) -g1,1114:28705113,28887225 -k1,1114:32583029,28887225:3877916 -) -(1,1117:6630773,30293417:25952256,513147,134348 -h1,1116:6630773,30293417:983040,0,0 -k1,1116:9384050,30293417:281914 -k1,1116:12194998,30293417:281914 -k1,1116:16951710,30293417:281914 -k1,1116:18627575,30293417:281914 -k1,1116:19265349,30293417:281914 -k1,1116:21525140,30293417:281914 -k1,1116:22466346,30293417:281914 -k1,1116:23767345,30293417:281914 -k1,1116:25702732,30293417:281914 -k1,1116:27539815,30293417:281914 -k1,1116:28893898,30293417:281914 -k1,1116:30569763,30293417:281914 -k1,1116:32583029,30293417:0 -) -(1,1117:6630773,31134905:25952256,355205,7863 -k1,1117:32583029,31134905:24358420 -g1,1117:32583029,31134905 -) -v1,1119:6630773,32252846:0,393216,0 -(1,1126:6630773,33202663:25952256,1343033,196608 -g1,1126:6630773,33202663 -g1,1126:6630773,33202663 -g1,1126:6434165,33202663 -(1,1126:6434165,33202663:0,1343033,196608 -r1,1152:32779637,33202663:26345472,1539641,196608 -k1,1126:6434165,33202663:-26345472 -) -(1,1126:6434165,33202663:26345472,1343033,196608 -[1,1126:6630773,33202663:25952256,1146425,0 -(1,1121:6630773,32460464:25952256,404226,82312 -(1,1120:6630773,32460464:0,0,0 -g1,1120:6630773,32460464 -g1,1120:6630773,32460464 -g1,1120:6303093,32460464 -(1,1120:6303093,32460464:0,0,0 -) -g1,1120:6630773,32460464 -) -k1,1121:6630773,32460464:0 -g1,1121:9159939,32460464 -k1,1121:9159939,32460464:0 -h1,1121:12321396,32460464:0,0,0 -k1,1121:32583028,32460464:20261632 -g1,1121:32583028,32460464 -) -(1,1125:6630773,33126642:25952256,404226,76021 -(1,1123:6630773,33126642:0,0,0 -g1,1123:6630773,33126642 -g1,1123:6630773,33126642 -g1,1123:6303093,33126642 -(1,1123:6303093,33126642:0,0,0 -) -g1,1123:6630773,33126642 -) -g1,1125:7579210,33126642 -g1,1125:8843793,33126642 -g1,1125:9476085,33126642 -g1,1125:10108377,33126642 -g1,1125:10740669,33126642 -g1,1125:11372961,33126642 -g1,1125:12005253,33126642 -h1,1125:12321399,33126642:0,0,0 -k1,1125:32583029,33126642:20261630 -g1,1125:32583029,33126642 -) -] -) -g1,1126:32583029,33202663 -g1,1126:6630773,33202663 -g1,1126:6630773,33202663 -g1,1126:32583029,33202663 -g1,1126:32583029,33202663 -) -h1,1126:6630773,33399271:0,0,0 -(1,1130:6630773,34692523:25952256,505283,134348 -h1,1129:6630773,34692523:983040,0,0 -k1,1129:10557392,34692523:153711 -(1,1129:10557392,34692523:0,452978,115847 -r1,1152:11619081,34692523:1061689,568825,115847 -k1,1129:10557392,34692523:-1061689 -) -(1,1129:10557392,34692523:1061689,452978,115847 -k1,1129:10557392,34692523:3277 -h1,1129:11615804,34692523:0,411205,112570 -) -k1,1129:11772792,34692523:153711 -k1,1129:14304805,34692523:153711 -k1,1129:15144678,34692523:153711 -k1,1129:18701018,34692523:153711 -k1,1129:20027168,34692523:153711 -k1,1129:20863764,34692523:153711 -k1,1129:22667672,34692523:153711 -k1,1129:25129561,34692523:153711 -k1,1129:26474717,34692523:153711 -k1,1129:30770303,34692523:153711 -k1,1129:32583029,34692523:0 -) -(1,1130:6630773,35534011:25952256,513147,126483 -k1,1129:7958204,35534011:170721 -k1,1129:9642152,35534011:170722 -k1,1129:12459217,35534011:170721 -k1,1129:14360088,35534011:170721 -k1,1129:17835790,35534011:170721 -k1,1129:18874864,35534011:170722 -k1,1129:20382519,35534011:170721 -k1,1129:22083506,35534011:170721 -k1,1129:22905656,35534011:170722 -k1,1129:24915317,35534011:170721 -k1,1129:26242748,35534011:170721 -k1,1129:28391346,35534011:170721 -k1,1129:29178106,35534011:170722 -k1,1129:30367912,35534011:170721 -k1,1129:32583029,35534011:0 -) -(1,1130:6630773,36375499:25952256,513147,134348 -k1,1129:7511764,36375499:221699 -k1,1129:10379806,36375499:221698 -k1,1129:11643527,36375499:221699 -k1,1129:13068466,36375499:221698 -k1,1129:16538129,36375499:221699 -(1,1129:16538129,36375499:0,452978,115847 -r1,1152:17599818,36375499:1061689,568825,115847 -k1,1129:16538129,36375499:-1061689 -) -(1,1129:16538129,36375499:1061689,452978,115847 -k1,1129:16538129,36375499:3277 -h1,1129:17596541,36375499:0,411205,112570 -) -k1,1129:17821516,36375499:221698 -k1,1129:18574712,36375499:221699 -k1,1129:19862682,36375499:221699 -k1,1129:22061601,36375499:221698 -k1,1129:23044828,36375499:221699 -k1,1129:25045828,36375499:221698 -k1,1129:26538925,36375499:221699 -k1,1129:28529440,36375499:221698 -k1,1129:29843624,36375499:221699 -k1,1129:32583029,36375499:0 -) -(1,1130:6630773,37216987:25952256,513147,126483 -k1,1129:10051103,37216987:287709 -k1,1129:11732763,37216987:287709 -(1,1129:11732763,37216987:0,452978,115847 -r1,1152:12794452,37216987:1061689,568825,115847 -k1,1129:11732763,37216987:-1061689 -) -(1,1129:11732763,37216987:1061689,452978,115847 -k1,1129:11732763,37216987:3277 -h1,1129:12791175,37216987:0,411205,112570 -) -k1,1129:13255831,37216987:287709 -k1,1129:14615709,37216987:287709 -k1,1129:16106659,37216987:287709 -k1,1129:16925865,37216987:287709 -k1,1129:18279844,37216987:287708 -k1,1129:20865901,37216987:287709 -k1,1129:21839772,37216987:287709 -k1,1129:22542235,37216987:287620 -k1,1129:25590320,37216987:287709 -k1,1129:26233889,37216987:287709 -k1,1129:29217094,37216987:287709 -k1,1129:31923737,37216987:287709 -k1,1129:32583029,37216987:0 -) -(1,1130:6630773,38058475:25952256,505283,134348 -k1,1129:9193090,38058475:147971 -k1,1129:11146578,38058475:147971 -k1,1129:12497789,38058475:147970 -k1,1129:15893724,38058475:147971 -k1,1129:19004578,38058475:147971 -k1,1129:19610646,38058475:147971 -k1,1129:20862898,38058475:147970 -k1,1129:21758635,38058475:147971 -k1,1129:23419832,38058475:147971 -k1,1129:24219231,38058475:147971 -k1,1129:26806452,38058475:147971 -k1,1129:29138737,38058475:147970 -k1,1129:29744805,38058475:147971 -k1,1129:30424273,38058475:147971 -k1,1130:32583029,38058475:0 -) -(1,1130:6630773,38899963:25952256,513147,126483 -(1,1129:6630773,38899963:0,452978,115847 -r1,1152:9451022,38899963:2820249,568825,115847 -k1,1129:6630773,38899963:-2820249 -) -(1,1129:6630773,38899963:2820249,452978,115847 -k1,1129:6630773,38899963:3277 -h1,1129:9447745,38899963:0,411205,112570 -) -g1,1129:9823921,38899963 -g1,1129:11214595,38899963 -g1,1129:12175352,38899963 -g1,1129:14813831,38899963 -g1,1129:15471157,38899963 -g1,1129:17822588,38899963 -g1,1129:20732386,38899963 -g1,1129:22088325,38899963 -g1,1129:24265431,38899963 -g1,1129:25077422,38899963 -g1,1129:26295736,38899963 -g1,1129:27677890,38899963 -g1,1129:28536411,38899963 -k1,1130:32583029,38899963:1400274 -g1,1130:32583029,38899963 -) -v1,1132:6630773,40017904:0,393216,0 -(1,1139:6630773,40967721:25952256,1343033,196608 -g1,1139:6630773,40967721 -g1,1139:6630773,40967721 -g1,1139:6434165,40967721 -(1,1139:6434165,40967721:0,1343033,196608 -r1,1152:32779637,40967721:26345472,1539641,196608 -k1,1139:6434165,40967721:-26345472 -) -(1,1139:6434165,40967721:26345472,1343033,196608 -[1,1139:6630773,40967721:25952256,1146425,0 -(1,1134:6630773,40225522:25952256,404226,101187 -(1,1133:6630773,40225522:0,0,0 -g1,1133:6630773,40225522 -g1,1133:6630773,40225522 -g1,1133:6303093,40225522 -(1,1133:6303093,40225522:0,0,0 -) -g1,1133:6630773,40225522 -) -k1,1134:6630773,40225522:0 -g1,1134:10740667,40225522 -h1,1134:12321395,40225522:0,0,0 -k1,1134:32583029,40225522:20261634 -g1,1134:32583029,40225522 -) -(1,1138:6630773,40891700:25952256,404226,76021 -(1,1136:6630773,40891700:0,0,0 -g1,1136:6630773,40891700 -g1,1136:6630773,40891700 -g1,1136:6303093,40891700 -(1,1136:6303093,40891700:0,0,0 -) -g1,1136:6630773,40891700 -) -g1,1138:7579210,40891700 -g1,1138:8843793,40891700 -g1,1138:9476085,40891700 -g1,1138:10108377,40891700 -g1,1138:10740669,40891700 -g1,1138:11372961,40891700 -g1,1138:12005253,40891700 -h1,1138:12321399,40891700:0,0,0 -k1,1138:32583029,40891700:20261630 -g1,1138:32583029,40891700 -) -] -) -g1,1139:32583029,40967721 -g1,1139:6630773,40967721 -g1,1139:6630773,40967721 -g1,1139:32583029,40967721 -g1,1139:32583029,40967721 -) -h1,1139:6630773,41164329:0,0,0 -(1,1143:6630773,42457580:25952256,513147,126483 -h1,1142:6630773,42457580:983040,0,0 -k1,1142:9024246,42457580:213746 -k1,1142:11396748,42457580:213746 -k1,1142:13465817,42457580:213745 -k1,1142:14211060,42457580:213746 -k1,1142:15443891,42457580:213746 -k1,1142:17311110,42457580:213746 -k1,1142:18211017,42457580:213745 -k1,1142:19372414,42457580:213746 -(1,1142:19372414,42457580:0,452978,115847 -r1,1152:21840951,42457580:2468537,568825,115847 -k1,1142:19372414,42457580:-2468537 -) -(1,1142:19372414,42457580:2468537,452978,115847 -g1,1142:21134250,42457580 -h1,1142:21837674,42457580:0,411205,112570 -) -k1,1142:22228367,42457580:213746 -k1,1142:25286376,42457580:213746 -(1,1142:25286376,42457580:0,452978,115847 -r1,1152:28106625,42457580:2820249,568825,115847 -k1,1142:25286376,42457580:-2820249 -) -(1,1142:25286376,42457580:2820249,452978,115847 -k1,1142:25286376,42457580:3277 -h1,1142:28103348,42457580:0,411205,112570 -) -k1,1142:28320370,42457580:213745 -k1,1142:30912418,42457580:213746 -k1,1142:31812326,42457580:213746 -k1,1142:32583029,42457580:0 -) -(1,1143:6630773,43299068:25952256,513147,134348 -k1,1142:9981152,43299068:278051 -k1,1142:11029907,43299068:278052 -k1,1142:13057114,43299068:278051 -k1,1142:15949396,43299068:278051 -k1,1142:17740674,43299068:278052 -k1,1142:19904196,43299068:278051 -k1,1142:20833676,43299068:278052 -k1,1142:24092304,43299068:278051 -k1,1142:25158753,43299068:278051 -k1,1142:27678136,43299068:278052 -k1,1142:31202185,43299068:278051 -k1,1142:32583029,43299068:0 -) -(1,1143:6630773,44140556:25952256,513147,126483 -k1,1142:8982659,44140556:178712 -k1,1142:9777408,44140556:178711 -k1,1142:10726823,44140556:178712 -k1,1142:12726779,44140556:178711 -k1,1142:15979785,44140556:178712 -k1,1142:17856534,44140556:178711 -k1,1142:19054331,44140556:178712 -k1,1142:20982198,44140556:178711 -k1,1142:23179419,44140556:178712 -k1,1142:23970892,44140556:178711 -k1,1142:25281411,44140556:178712 -k1,1142:28074353,44140556:178711 -k1,1142:31015408,44140556:178712 -k1,1142:32583029,44140556:0 -) -(1,1143:6630773,44982044:25952256,513147,7863 -g1,1142:7849087,44982044 -g1,1142:9231241,44982044 -g1,1142:10089762,44982044 -g1,1142:11308076,44982044 -k1,1143:32583029,44982044:19123406 -g1,1143:32583029,44982044 -) -v1,1145:6630773,46099985:0,393216,0 -] -(1,1152:32583029,45706769:0,0,0 -g1,1152:32583029,45706769 -) -) -] -(1,1152:6630773,47279633:25952256,0,0 -h1,1152:6630773,47279633:25952256,0,0 -) -] -(1,1152:4262630,4025873:0,0,0 -[1,1152:-473656,4025873:0,0,0 -(1,1152:-473656,-710413:0,0,0 -(1,1152:-473656,-710413:0,0,0 -g1,1152:-473656,-710413 -) -g1,1152:-473656,-710413 -) -] -) -] -!57409 -}44 -Input:308:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:309:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:310:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:311:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:312:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:313:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:314:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:315:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!755 -{45 -[1,1239:4262630,47279633:28320399,43253760,0 -(1,1239:4262630,4025873:0,0,0 -[1,1239:-473656,4025873:0,0,0 -(1,1239:-473656,-710413:0,0,0 -(1,1239:-473656,-644877:0,0,0 -k1,1239:-473656,-644877:-65536 +(1,1569:6630773,7297855:25952256,424439,79822 +(1,1567:6630773,7297855:0,0,0 +g1,1567:6630773,7297855 +g1,1567:6630773,7297855 +g1,1567:6303093,7297855 +(1,1567:6303093,7297855:0,0,0 +) +g1,1567:6630773,7297855 +) +g1,1569:7626635,7297855 +g1,1569:8954451,7297855 +h1,1569:10282267,7297855:0,0,0 +k1,1569:32583029,7297855:22300762 +g1,1569:32583029,7297855 +) +(1,1571:6630773,8113782:25952256,424439,112852 +(1,1570:6630773,8113782:0,0,0 +g1,1570:6630773,8113782 +g1,1570:6630773,8113782 +g1,1570:6303093,8113782 +(1,1570:6303093,8113782:0,0,0 +) +g1,1570:6630773,8113782 +) +k1,1571:6630773,8113782:0 +h1,1571:11278128,8113782:0,0,0 +k1,1571:32583028,8113782:21304900 +g1,1571:32583028,8113782 +) +(1,1575:6630773,8929709:25952256,424439,79822 +(1,1573:6630773,8929709:0,0,0 +g1,1573:6630773,8929709 +g1,1573:6630773,8929709 +g1,1573:6303093,8929709 +(1,1573:6303093,8929709:0,0,0 +) +g1,1573:6630773,8929709 +) +g1,1575:7626635,8929709 +g1,1575:8954451,8929709 +h1,1575:10282267,8929709:0,0,0 +k1,1575:32583029,8929709:22300762 +g1,1575:32583029,8929709 +) +(1,1577:6630773,9745636:25952256,424439,79822 +(1,1576:6630773,9745636:0,0,0 +g1,1576:6630773,9745636 +g1,1576:6630773,9745636 +g1,1576:6303093,9745636 +(1,1576:6303093,9745636:0,0,0 +) +g1,1576:6630773,9745636 +) +k1,1577:6630773,9745636:0 +h1,1577:10946174,9745636:0,0,0 +k1,1577:32583030,9745636:21636856 +g1,1577:32583030,9745636 +) +(1,1581:6630773,10561563:25952256,424439,79822 +(1,1579:6630773,10561563:0,0,0 +g1,1579:6630773,10561563 +g1,1579:6630773,10561563 +g1,1579:6303093,10561563 +(1,1579:6303093,10561563:0,0,0 +) +g1,1579:6630773,10561563 +) +g1,1581:7626635,10561563 +g1,1581:8954451,10561563 +h1,1581:10614221,10561563:0,0,0 +k1,1581:32583029,10561563:21968808 +g1,1581:32583029,10561563 +) +(1,1583:6630773,11377490:25952256,424439,79822 +(1,1582:6630773,11377490:0,0,0 +g1,1582:6630773,11377490 +g1,1582:6630773,11377490 +g1,1582:6303093,11377490 +(1,1582:6303093,11377490:0,0,0 +) +g1,1582:6630773,11377490 +) +k1,1583:6630773,11377490:0 +g1,1583:10946174,11377490 +g1,1583:11610082,11377490 +h1,1583:12605944,11377490:0,0,0 +k1,1583:32583028,11377490:19977084 +g1,1583:32583028,11377490 +) +(1,1587:6630773,12193417:25952256,424439,79822 +(1,1585:6630773,12193417:0,0,0 +g1,1585:6630773,12193417 +g1,1585:6630773,12193417 +g1,1585:6303093,12193417 +(1,1585:6303093,12193417:0,0,0 +) +g1,1585:6630773,12193417 +) +g1,1587:7626635,12193417 +g1,1587:8954451,12193417 +h1,1587:10282267,12193417:0,0,0 +k1,1587:32583029,12193417:22300762 +g1,1587:32583029,12193417 +) +(1,1589:6630773,13009344:25952256,424439,79822 +(1,1588:6630773,13009344:0,0,0 +g1,1588:6630773,13009344 +g1,1588:6630773,13009344 +g1,1588:6303093,13009344 +(1,1588:6303093,13009344:0,0,0 +) +g1,1588:6630773,13009344 +) +k1,1589:6630773,13009344:0 +g1,1589:11278128,13009344 +g1,1589:11942036,13009344 +h1,1589:12937898,13009344:0,0,0 +k1,1589:32583030,13009344:19645132 +g1,1589:32583030,13009344 +) +(1,1593:6630773,13825271:25952256,424439,79822 +(1,1591:6630773,13825271:0,0,0 +g1,1591:6630773,13825271 +g1,1591:6630773,13825271 +g1,1591:6303093,13825271 +(1,1591:6303093,13825271:0,0,0 +) +g1,1591:6630773,13825271 +) +g1,1593:7626635,13825271 +g1,1593:8954451,13825271 +h1,1593:10282267,13825271:0,0,0 +k1,1593:32583029,13825271:22300762 +g1,1593:32583029,13825271 +) +] +) +g1,1594:32583029,13905093 +g1,1594:6630773,13905093 +g1,1594:6630773,13905093 +g1,1594:32583029,13905093 +g1,1594:32583029,13905093 +) +h1,1594:6630773,14101701:0,0,0 +v1,1598:6630773,14966781:0,393216,0 +(1,1608:6630773,18792780:25952256,4219215,0 +g1,1608:6630773,18792780 +g1,1608:6237557,18792780 +r1,1812:6368629,18792780:131072,4219215,0 +g1,1608:6567858,18792780 +g1,1608:6764466,18792780 +[1,1608:6764466,18792780:25818563,4219215,0 +(1,1599:6764466,15275079:25818563,701514,196608 +(1,1598:6764466,15275079:0,701514,196608 +r1,1812:8863446,15275079:2098980,898122,196608 +k1,1598:6764466,15275079:-2098980 +) +(1,1598:6764466,15275079:2098980,701514,196608 +) +k1,1598:9018362,15275079:154916 +k1,1598:10336291,15275079:327680 +k1,1598:12300000,15275079:154915 +k1,1598:13474001,15275079:154916 +k1,1598:16785131,15275079:154916 +k1,1598:17599339,15275079:154916 +k1,1598:18773339,15275079:154915 +k1,1598:21682733,15275079:154916 +k1,1598:24499066,15275079:154916 +k1,1598:26729507,15275079:154916 +k1,1598:28926524,15275079:154915 +k1,1598:30272885,15275079:154916 +k1,1598:32583029,15275079:0 +) +(1,1599:6764466,16140159:25818563,513147,126483 +k1,1598:8270382,16140159:208958 +k1,1598:9498425,16140159:208958 +k1,1598:10879822,16140159:208958 +k1,1598:14605442,16140159:208958 +k1,1598:16825045,16140159:208958 +k1,1598:19796346,16140159:208958 +k1,1598:22189618,16140159:208957 +k1,1598:23950469,16140159:208958 +k1,1598:24557886,16140159:208958 +k1,1598:25298341,16140159:208958 +k1,1598:25863159,16140159:208958 +(1,1598:25863159,16140159:0,452978,115847 +r1,1812:27979984,16140159:2116825,568825,115847 +k1,1598:25863159,16140159:-2116825 +) +(1,1598:25863159,16140159:2116825,452978,115847 +k1,1598:25863159,16140159:3277 +h1,1598:27976707,16140159:0,411205,112570 +) +k1,1598:28188942,16140159:208958 +k1,1598:31329325,16140159:208958 +k1,1598:32583029,16140159:0 +) +(1,1599:6764466,17005239:25818563,505283,126483 +g1,1598:8067977,17005239 +g1,1598:9359691,17005239 +(1,1598:9359691,17005239:0,452978,122846 +r1,1812:13586787,17005239:4227096,575824,122846 +k1,1598:9359691,17005239:-4227096 +) +(1,1598:9359691,17005239:4227096,452978,122846 +k1,1598:9359691,17005239:3277 +h1,1598:13583510,17005239:0,411205,112570 +) +g1,1598:13786016,17005239 +g1,1598:15176690,17005239 +(1,1598:15176690,17005239:0,452978,115847 +r1,1812:19052074,17005239:3875384,568825,115847 +k1,1598:15176690,17005239:-3875384 +) +(1,1598:15176690,17005239:3875384,452978,115847 +k1,1598:15176690,17005239:3277 +h1,1598:19048797,17005239:0,411205,112570 +) +g1,1598:19251303,17005239 +g1,1598:20066570,17005239 +g1,1598:21724630,17005239 +k1,1599:32583029,17005239:6709970 +g1,1599:32583029,17005239 +) +v1,1601:6764466,17690094:0,393216,0 +(1,1606:6764466,18596172:25818563,1299294,196608 +g1,1606:6764466,18596172 +g1,1606:6764466,18596172 +g1,1606:6567858,18596172 +(1,1606:6567858,18596172:0,1299294,196608 +r1,1812:32779637,18596172:26211779,1495902,196608 +k1,1606:6567857,18596172:-26211780 +) +(1,1606:6567858,18596172:26211779,1299294,196608 +[1,1606:6764466,18596172:25818563,1102686,0 +(1,1603:6764466,17901409:25818563,407923,9908 +(1,1602:6764466,17901409:0,0,0 +g1,1602:6764466,17901409 +g1,1602:6764466,17901409 +g1,1602:6436786,17901409 +(1,1602:6436786,17901409:0,0,0 +) +g1,1602:6764466,17901409 +) +g1,1603:7428374,17901409 +g1,1603:8092282,17901409 +g1,1603:11079867,17901409 +g1,1603:11743775,17901409 +h1,1603:14399406,17901409:0,0,0 +k1,1603:32583030,17901409:18183624 +g1,1603:32583030,17901409 +) +(1,1604:6764466,18586264:25818563,407923,9908 +h1,1604:6764466,18586264:0,0,0 +g1,1604:9752051,18586264 +g1,1604:10415959,18586264 +g1,1604:13403544,18586264 +g1,1604:14067452,18586264 +h1,1604:14399406,18586264:0,0,0 +k1,1604:32583030,18586264:18183624 +g1,1604:32583030,18586264 +) +] +) +g1,1606:32583029,18596172 +g1,1606:6764466,18596172 +g1,1606:6764466,18596172 +g1,1606:32583029,18596172 +g1,1606:32583029,18596172 +) +h1,1606:6764466,18792780:0,0,0 +] +g1,1608:32583029,18792780 +) +h1,1608:6630773,18792780:0,0,0 +v1,1611:6630773,19657860:0,393216,0 +(1,1812:6630773,44322746:25952256,25058102,0 +g1,1812:6630773,44322746 +g1,1812:6237557,44322746 +r1,1812:6368629,44322746:131072,25058102,0 +g1,1812:6567858,44322746 +g1,1812:6764466,44322746 +[1,1812:6764466,44322746:25818563,25058102,0 +(1,1617:6764466,19966158:25818563,701514,196608 +(1,1611:6764466,19966158:0,701514,196608 +r1,1812:8010564,19966158:1246098,898122,196608 +k1,1611:6764466,19966158:-1246098 +) +(1,1611:6764466,19966158:1246098,701514,196608 +) +k1,1611:8188189,19966158:177625 +k1,1611:8515869,19966158:327680 +k1,1611:8515869,19966158:0 +k1,1611:8693493,19966158:177624 +k1,1612:8693493,19966158:0 +k1,1612:8871118,19966158:177625 +k1,1613:8871118,19966158:0 +k1,1613:9048742,19966158:177624 +k1,1614:9048742,19966158:0 +k1,1614:9226367,19966158:177625 +k1,1615:9226367,19966158:0 +k1,1616:10600679,19966158:177625 +k1,1616:12499278,19966158:177624 +k1,1616:13914878,19966158:177625 +k1,1616:14743931,19966158:177625 +k1,1616:16538984,19966158:177624 +k1,1616:19897727,19966158:177625 +k1,1616:22085996,19966158:177624 +k1,1616:22879659,19966158:177625 +k1,1616:26463845,19966158:177625 +k1,1616:27172966,19966158:177624 +k1,1616:28002019,19966158:177625 +k1,1616:30485855,19966158:177624 +k1,1616:31019340,19966158:177625 +k1,1616:32583029,19966158:0 +) +(1,1617:6764466,20831238:25818563,513147,126483 +k1,1616:9430017,20831238:208606 +k1,1616:10297915,20831238:208606 +k1,1616:12294343,20831238:208606 +k1,1616:13118987,20831238:208606 +k1,1616:15958864,20831238:208606 +k1,1616:17115121,20831238:208606 +k1,1616:18775349,20831238:208606 +k1,1616:20837969,20831238:208606 +k1,1616:22932046,20831238:208606 +k1,1616:25785030,20831238:208606 +k1,1616:27808328,20831238:208606 +k1,1616:28826304,20831238:208606 +k1,1616:30920381,20831238:208606 +k1,1617:32583029,20831238:0 +) +(1,1617:6764466,21696318:25818563,505283,126483 +k1,1616:8318577,21696318:187685 +k1,1616:9610544,21696318:187685 +k1,1616:10545994,21696318:187684 +k1,1616:14543287,21696318:187685 +k1,1616:15413857,21696318:187685 +k1,1616:16841483,21696318:187685 +k1,1616:18220612,21696318:187684 +k1,1616:19427382,21696318:187685 +k1,1616:22811913,21696318:187685 +k1,1616:25931679,21696318:187685 +k1,1616:27403869,21696318:187684 +k1,1616:28695836,21696318:187685 +k1,1616:29631287,21696318:187685 +k1,1616:32583029,21696318:0 +) +(1,1617:6764466,22561398:25818563,513147,134348 +k1,1616:8169628,22561398:208475 +k1,1616:11564463,22561398:208475 +k1,1616:14408141,22561398:208475 +(1,1616:14408141,22561398:0,452978,122846 +r1,1812:16876678,22561398:2468537,575824,122846 +k1,1616:14408141,22561398:-2468537 +) +(1,1616:14408141,22561398:2468537,452978,122846 +k1,1616:14408141,22561398:3277 +h1,1616:16873401,22561398:0,411205,112570 +) +k1,1616:17085153,22561398:208475 +k1,1616:18690200,22561398:208475 +(1,1616:18690200,22561398:0,452978,115847 +r1,1812:20807025,22561398:2116825,568825,115847 +k1,1616:18690200,22561398:-2116825 +) +(1,1616:18690200,22561398:2116825,452978,115847 +k1,1616:18690200,22561398:3277 +h1,1616:20803748,22561398:0,411205,112570 +) +k1,1616:21015501,22561398:208476 +k1,1616:21755473,22561398:208475 +k1,1616:25042174,22561398:208475 +k1,1616:26060019,22561398:208475 +k1,1616:27766647,22561398:208475 +h1,1616:28563565,22561398:0,0,0 +k1,1616:28945710,22561398:208475 +k1,1616:31900144,22561398:208475 +k1,1616:32583029,22561398:0 +) +(1,1617:6764466,23426478:25818563,505283,126483 +k1,1616:9100135,23426478:152665 +k1,1616:12542707,23426478:152665 +k1,1616:13841597,23426478:152665 +k1,1616:14409059,23426478:152619 +(1,1616:14409059,23426478:0,452978,122846 +r1,1812:16877596,23426478:2468537,575824,122846 +k1,1616:14409059,23426478:-2468537 +) +(1,1616:14409059,23426478:2468537,452978,122846 +k1,1616:14409059,23426478:3277 +h1,1616:16874319,23426478:0,411205,112570 +) +k1,1616:17030261,23426478:152665 +k1,1616:19193571,23426478:152665 +k1,1616:20337796,23426478:152665 +k1,1616:22528631,23426478:152665 +k1,1616:24810561,23426478:152665 +k1,1616:26357177,23426478:152665 +k1,1616:27528927,23426478:152665 +k1,1616:29335065,23426478:152665 +k1,1616:32583029,23426478:0 +) +(1,1617:6764466,24291558:25818563,513147,134348 +k1,1616:8467193,24291558:209161 +k1,1616:9960859,24291558:209160 +k1,1616:11189105,24291558:209161 +k1,1616:14049196,24291558:209160 +k1,1616:17444717,24291558:209161 +k1,1616:20289081,24291558:209161 +k1,1616:21670680,24291558:209160 +k1,1616:24110031,24291558:209161 +k1,1616:26329837,24291558:209161 +k1,1616:27070494,24291558:209160 +k1,1616:27851784,24291558:209161 +k1,1616:29257631,24291558:209160 +k1,1616:31923737,24291558:209161 +k1,1616:32583029,24291558:0 +) +(1,1617:6764466,25156638:25818563,513147,134348 +k1,1616:9562713,25156638:166976 +k1,1616:12513659,25156638:166977 +k1,1616:13332063,25156638:166976 +k1,1616:15116468,25156638:166976 +k1,1616:16054148,25156638:166977 +k1,1616:19414038,25156638:166976 +k1,1616:21261357,25156638:166976 +k1,1616:23688015,25156638:166977 +k1,1616:24210851,25156638:166976 +k1,1616:25862218,25156638:166977 +k1,1616:26976845,25156638:166976 +k1,1616:28162906,25156638:166976 +k1,1616:29598660,25156638:166977 +k1,1616:30424928,25156638:166976 +k1,1616:32583029,25156638:0 +) +(1,1617:6764466,26021718:25818563,505283,134348 +k1,1616:8174803,26021718:218892 +k1,1616:11044625,26021718:218891 +k1,1616:13274162,26021718:218892 +k1,1616:14777559,26021718:218891 +k1,1616:16100733,26021718:218892 +k1,1616:17067391,26021718:218892 +k1,1616:21269560,26021718:218891 +k1,1616:23082943,26021718:218892 +k1,1616:25862326,26021718:218891 +k1,1616:26697256,26021718:218892 +k1,1616:27330971,26021718:218872 +k1,1616:29772843,26021718:218891 +k1,1616:31137960,26021718:218892 +k1,1617:32583029,26021718:0 +) +(1,1617:6764466,26886798:25818563,513147,134348 +k1,1616:8291127,26886798:186450 +k1,1616:9160462,26886798:186450 +k1,1616:11229761,26886798:186450 +k1,1616:14232293,26886798:186450 +k1,1616:15104905,26886798:186450 +k1,1616:17672933,26886798:186450 +k1,1616:18475421,26886798:186450 +k1,1616:22928265,26886798:186450 +k1,1616:24186884,26886798:186450 +k1,1616:28131824,26886798:186450 +k1,1616:28969702,26886798:186450 +k1,1616:29512012,26886798:186450 +k1,1616:32583029,26886798:0 +) +(1,1617:6764466,27751878:25818563,513147,134348 +k1,1616:8694016,27751878:278698 +k1,1616:10753328,27751878:278699 +k1,1616:11691318,27751878:278698 +k1,1616:14154332,27751878:278699 +k1,1616:15060865,27751878:278698 +k1,1616:18770373,27751878:278698 +k1,1616:22221670,27751878:278699 +k1,1616:23646593,27751878:278698 +k1,1616:24378721,27751878:278619 +k1,1616:27419762,27751878:278698 +k1,1616:29414849,27751878:278699 +k1,1616:30352839,27751878:278698 +k1,1616:32583029,27751878:0 +) +(1,1617:6764466,28616958:25818563,513147,126483 +k1,1616:9868016,28616958:287468 +k1,1616:11147043,28616958:287467 +k1,1616:14218480,28616958:287468 +(1,1616:14218480,28616958:0,452978,115847 +r1,1812:15983593,28616958:1765113,568825,115847 +k1,1616:14218480,28616958:-1765113 +) +(1,1616:14218480,28616958:1765113,452978,115847 +k1,1616:14218480,28616958:3277 +h1,1616:15980316,28616958:0,411205,112570 +) +k1,1616:16271061,28616958:287468 +k1,1616:17749974,28616958:287468 +(1,1616:17749974,28616958:0,452978,122846 +r1,1812:19163375,28616958:1413401,575824,122846 +k1,1616:17749974,28616958:-1413401 +) +(1,1616:17749974,28616958:1413401,452978,122846 +k1,1616:17749974,28616958:3277 +h1,1616:19160098,28616958:0,411205,112570 +) +k1,1616:19624512,28616958:287467 +k1,1616:21608707,28616958:287468 +k1,1616:23639433,28616958:287468 +k1,1616:24542938,28616958:287467 +k1,1616:25849491,28616958:287468 +k1,1616:27405736,28616958:287468 +k1,1616:28352496,28616958:287468 +k1,1616:29659048,28616958:287467 +k1,1616:31734338,28616958:287468 +k1,1617:32583029,28616958:0 +) +(1,1617:6764466,29482038:25818563,513147,126483 +k1,1616:9029295,29482038:173575 +k1,1616:10150521,29482038:173575 +k1,1616:11963151,29482038:173575 +k1,1616:12752764,29482038:173575 +k1,1616:15731280,29482038:173575 +k1,1616:16319673,29482038:173550 +(1,1616:16319673,29482038:0,452978,122846 +r1,1812:18788210,29482038:2468537,575824,122846 +k1,1616:16319673,29482038:-2468537 +) +(1,1616:16319673,29482038:2468537,452978,122846 +k1,1616:16319673,29482038:3277 +h1,1616:18784933,29482038:0,411205,112570 +) +k1,1616:18961785,29482038:173575 +k1,1616:20521446,29482038:173575 +k1,1616:21226518,29482038:173575 +k1,1616:24705074,29482038:173575 +k1,1616:25530078,29482038:173576 +(1,1616:25530078,29482038:0,452978,122846 +r1,1812:26943479,29482038:1413401,575824,122846 +k1,1616:25530078,29482038:-1413401 +) +(1,1616:25530078,29482038:1413401,452978,122846 +k1,1616:25530078,29482038:3277 +h1,1616:26940202,29482038:0,411205,112570 +) +k1,1616:27117054,29482038:173575 +k1,1616:27906667,29482038:173575 +k1,1616:28707421,29482038:173575 +k1,1616:30297884,29482038:173575 +k1,1616:31490544,29482038:173575 +k1,1616:32583029,29482038:0 +) +(1,1617:6764466,30347118:25818563,513147,134348 +g1,1616:7630851,30347118 +(1,1616:7630851,30347118:0,414482,115847 +r1,1812:7989117,30347118:358266,530329,115847 +k1,1616:7630851,30347118:-358266 +) +(1,1616:7630851,30347118:358266,414482,115847 +k1,1616:7630851,30347118:3277 +h1,1616:7985840,30347118:0,411205,112570 +) +g1,1616:8188346,30347118 +g1,1616:9335226,30347118 +g1,1616:11764645,30347118 +g1,1616:14721629,30347118 +g1,1616:16931503,30347118 +g1,1616:18276957,30347118 +(1,1616:18276957,30347118:0,424981,115847 +r1,1812:18986935,30347118:709978,540828,115847 +k1,1616:18276957,30347118:-709978 +) +(1,1616:18276957,30347118:709978,424981,115847 +k1,1616:18276957,30347118:3277 +h1,1616:18983658,30347118:0,411205,112570 +) +k1,1617:32583029,30347118:13422424 +g1,1617:32583029,30347118 +) +(1,1619:6764466,31212198:25818563,505283,134348 +h1,1618:6764466,31212198:983040,0,0 +k1,1618:10496691,31212198:187383 +k1,1618:12372280,31212198:187382 +k1,1618:15375745,31212198:187383 +k1,1618:16709352,31212198:187382 +k1,1618:17311566,31212198:187371 +(1,1618:17311566,31212198:0,452978,115847 +r1,1812:19428391,31212198:2116825,568825,115847 +k1,1618:17311566,31212198:-2116825 +) +(1,1618:17311566,31212198:2116825,452978,115847 +k1,1618:17311566,31212198:3277 +h1,1618:19425114,31212198:0,411205,112570 +) +k1,1618:19615773,31212198:187382 +k1,1618:21813801,31212198:187383 +k1,1618:22992743,31212198:187382 +k1,1618:25218296,31212198:187383 +k1,1618:26021716,31212198:187382 +k1,1618:27381538,31212198:187383 +k1,1618:29394753,31212198:187382 +k1,1618:30352839,31212198:187383 +k1,1618:32583029,31212198:0 +) +(1,1619:6764466,32077278:25818563,513147,134348 +k1,1618:10466494,32077278:246970 +k1,1618:11904909,32077278:246970 +k1,1618:12922582,32077278:246970 +k1,1618:15399742,32077278:246970 +k1,1618:18658746,32077278:246970 +k1,1618:20357338,32077278:246970 +k1,1618:21926170,32077278:246971 +k1,1618:23908533,32077278:246970 +k1,1618:24511363,32077278:246970 +k1,1618:26322022,32077278:246970 +k1,1618:29025937,32077278:246970 +k1,1618:29932199,32077278:246970 +k1,1618:31966991,32077278:246970 +k1,1618:32583029,32077278:0 +) +(1,1619:6764466,32942358:25818563,513147,134348 +k1,1618:9804463,32942358:235056 +k1,1618:11236206,32942358:235056 +k1,1618:13830557,32942358:235055 +k1,1618:17313577,32942358:235056 +k1,1618:18080130,32942358:235056 +k1,1618:22073676,32942358:235056 +k1,1618:23070259,32942358:235055 +k1,1618:24324400,32942358:235056 +k1,1618:27045237,32942358:235056 +k1,1618:27939585,32942358:235056 +k1,1618:29959185,32942358:235055 +k1,1618:31478747,32942358:235056 +k1,1618:32583029,32942358:0 +) +(1,1619:6764466,33807438:25818563,513147,134348 +k1,1618:7785971,33807438:273739 +k1,1618:10097880,33807438:273739 +k1,1618:10987656,33807438:273738 +k1,1618:12280480,33807438:273739 +k1,1618:16031559,33807438:273739 +k1,1618:17994816,33807438:273739 +k1,1618:19287639,33807438:273738 +k1,1618:22266704,33807438:273739 +k1,1618:23809220,33807438:273739 +k1,1618:24742251,33807438:273739 +k1,1618:26035074,33807438:273738 +k1,1618:28466914,33807438:273739 +k1,1618:29932098,33807438:273739 +k1,1618:32583029,33807438:0 +) +(1,1619:6764466,34672518:25818563,505283,134348 +k1,1618:9870599,34672518:290051 +k1,1618:11445157,34672518:290052 +k1,1618:12839490,34672518:290051 +k1,1618:13877307,34672518:290051 +k1,1618:17976966,34672518:290051 +k1,1618:18798515,34672518:290052 +k1,1618:21341038,34672518:290051 +k1,1618:22392617,34672518:290051 +k1,1618:23701753,34672518:290051 +k1,1618:26149906,34672518:290052 +k1,1618:27631402,34672518:290051 +k1,1618:30572384,34672518:290051 +k1,1618:32583029,34672518:0 +) +(1,1619:6764466,35537598:25818563,513147,134348 +k1,1618:8330121,35537598:281149 +k1,1618:9298744,35537598:281150 +k1,1618:10195931,35537598:281149 +k1,1618:11496165,35537598:281149 +k1,1618:14408585,35537598:281149 +k1,1618:17416687,35537598:281149 +k1,1618:18645488,35537598:281150 +k1,1618:19945722,35537598:281149 +k1,1618:23362113,35537598:281149 +k1,1618:24271098,35537598:281150 +k1,1618:27983057,35537598:281149 +k1,1618:31436804,35537598:281149 +k1,1619:32583029,35537598:0 +) +(1,1619:6764466,36402678:25818563,513147,134348 +k1,1618:7448532,36402678:230557 +k1,1618:10441463,36402678:230588 +k1,1618:12388439,36402678:230588 +k1,1618:13278320,36402678:230589 +k1,1618:15940949,36402678:230588 +k1,1618:17859744,36402678:230588 +k1,1618:20906414,36402678:230588 +k1,1618:22128563,36402678:230589 +k1,1618:25316791,36402678:230588 +k1,1618:27244106,36402678:230588 +k1,1618:29217952,36402678:230588 +k1,1618:30064579,36402678:230589 +k1,1618:31314252,36402678:230588 +k1,1618:32583029,36402678:0 +) +(1,1619:6764466,37267758:25818563,513147,126483 +k1,1618:7701479,37267758:277721 +k1,1618:8998286,37267758:277722 +k1,1618:11063829,37267758:277721 +k1,1618:14068504,37267758:277722 +k1,1618:15293876,37267758:277721 +k1,1618:17210653,37267758:277722 +k1,1618:18104412,37267758:277721 +k1,1618:21187075,37267758:277722 +k1,1618:22661483,37267758:277721 +k1,1618:26235011,37267758:277722 +k1,1618:27172024,37267758:277721 +k1,1618:28803064,37267758:277722 +k1,1618:31896867,37267758:277721 +k1,1618:32583029,37267758:0 +) +(1,1619:6764466,38132838:25818563,513147,134348 +k1,1618:9320173,38132838:174129 +k1,1618:10110341,38132838:174130 +k1,1618:14377193,38132838:174129 +k1,1618:16294580,38132838:174129 +k1,1618:18036330,38132838:174129 +k1,1618:20642501,38132838:174130 +k1,1618:22504837,38132838:174129 +k1,1618:25495048,38132838:174129 +k1,1618:26285216,38132838:174130 +k1,1618:29500871,38132838:174129 +k1,1618:32583029,38132838:0 +) +(1,1619:6764466,38997918:25818563,513147,134348 +g1,1618:10211659,38997918 +g1,1618:11602333,38997918 +g1,1618:14883720,38997918 +g1,1618:16863562,38997918 +g1,1618:17722083,38997918 +g1,1618:22271592,38997918 +k1,1619:32583029,38997918:8127122 +g1,1619:32583029,38997918 +) +(1,1621:6764466,39862998:25818563,513147,134348 +h1,1620:6764466,39862998:983040,0,0 +k1,1620:8622139,39862998:246798 +k1,1620:9457449,39862998:246797 +k1,1620:12520329,39862998:246798 +k1,1620:14051632,39862998:246797 +k1,1620:15289990,39862998:246798 +k1,1620:16603058,39862998:246797 +k1,1620:19410348,39862998:246798 +k1,1620:20648705,39862998:246797 +k1,1620:22933673,39862998:246798 +k1,1620:23866632,39862998:246797 +k1,1620:29229169,39862998:246797 +k1,1620:31358816,39862998:246798 +k1,1621:32583029,39862998:0 +) +(1,1621:6764466,40728078:25818563,513147,126483 +k1,1620:8908684,40728078:268578 +k1,1620:9836555,40728078:268579 +k1,1620:13286251,40728078:268578 +k1,1620:15565475,40728078:268579 +k1,1620:16450091,40728078:268578 +k1,1620:20125231,40728078:268579 +k1,1620:20925306,40728078:268578 +k1,1620:23481092,40728078:268579 +k1,1620:27420341,40728078:268578 +k1,1620:28450448,40728078:268579 +k1,1620:31633412,40728078:268578 +$1,1620:31840506,40728078 +$1,1620:32202265,40728078 +k1,1620:32583029,40728078:0 +) +(1,1621:6764466,41593158:25818563,513147,134348 +k1,1620:10321888,41593158:213775 +k1,1620:14267282,41593158:213774 +k1,1620:15681021,41593158:213775 +k1,1620:18276374,41593158:213775 +k1,1620:19176310,41593158:213774 +k1,1620:20409170,41593158:213775 +k1,1620:22781046,41593158:213775 +k1,1620:24675164,41593158:213775 +k1,1620:25548230,41593158:213774 +$1,1620:25548230,41593158 +$1,1620:25909989,41593158 +k1,1620:26123764,41593158:213775 +k1,1620:27285190,41593158:213775 +k1,1620:29384435,41593158:213774 +$1,1620:29384435,41593158 +k1,1620:29939176,41593158:156282 +k1,1620:30663655,41593158:156282 +k1,1620:31234058,41593158:208644 +k1,1620:32010900,41593158:208645 +$1,1620:32409359,41593158 +k1,1620:32583029,41593158:0 +) +(1,1621:6764466,42458238:25818563,513147,134348 +k1,1620:8255956,42458238:294803 +k1,1620:10201610,42458238:294802 +k1,1620:13744377,42458238:294803 +k1,1620:14698472,42458238:294803 +k1,1620:16765368,42458238:294802 +k1,1620:18164453,42458238:294803 +k1,1620:19788326,42458238:294803 +k1,1620:20734556,42458238:294802 +k1,1620:24698064,42458238:294803 +k1,1620:27166041,42458238:294803 +k1,1620:29158881,42458238:294802 +k1,1620:31635378,42458238:294803 +k1,1620:32583029,42458238:0 +) +(1,1621:6764466,43323318:25818563,513147,126483 +k1,1620:9529273,43323318:218078 +k1,1620:10430237,43323318:218079 +k1,1620:13984753,43323318:218078 +k1,1620:15571879,43323318:218079 +k1,1620:16737608,43323318:218078 +k1,1620:19502416,43323318:218079 +k1,1620:20251991,43323318:218078 +k1,1620:22047521,43323318:218078 +k1,1620:23659551,43323318:218079 +k1,1620:26624243,43323318:218078 +(1,1620:26624243,43323318:0,414482,115847 +r1,1812:27334221,43323318:709978,530329,115847 +k1,1620:26624243,43323318:-709978 +) +(1,1620:26624243,43323318:709978,414482,115847 +k1,1620:26624243,43323318:3277 +h1,1620:27330944,43323318:0,411205,112570 +) +k1,1620:27725970,43323318:218079 +k1,1620:29092894,43323318:218078 +k1,1620:29970265,43323318:218079 +k1,1620:31391584,43323318:218078 +k1,1620:32583029,43323318:0 +) +(1,1621:6764466,44188398:25818563,505283,134348 +g1,1620:8665665,44188398 +g1,1620:12618796,44188398 +g1,1620:15894940,44188398 +g1,1620:16625666,44188398 +g1,1620:19903121,44188398 +g1,1620:20718388,44188398 +g1,1620:23196304,44188398 +h1,1620:24166892,44188398:0,0,0 +g1,1620:24366121,44188398 +g1,1620:25374720,44188398 +g1,1620:27072102,44188398 +h1,1620:27869020,44188398:0,0,0 +k1,1621:32583029,44188398:4540339 +g1,1621:32583029,44188398 +) +] +g1,1812:32583029,44322746 +) +] +(1,1812:32583029,45706769:0,0,0 +g1,1812:32583029,45706769 +) +) +] +(1,1812:6630773,47279633:25952256,0,0 +h1,1812:6630773,47279633:25952256,0,0 +) +] +(1,1812:4262630,4025873:0,0,0 +[1,1812:-473656,4025873:0,0,0 +(1,1812:-473656,-710413:0,0,0 +(1,1812:-473656,-710413:0,0,0 +g1,1812:-473656,-710413 +) +g1,1812:-473656,-710413 +) +] +) +] +!28993 +}49 +!11 +{50 +[1,1812:4262630,47279633:28320399,43253760,0 +(1,1812:4262630,4025873:0,0,0 +[1,1812:-473656,4025873:0,0,0 +(1,1812:-473656,-710413:0,0,0 +(1,1812:-473656,-644877:0,0,0 +k1,1812:-473656,-644877:-65536 ) -(1,1239:-473656,4736287:0,0,0 -k1,1239:-473656,4736287:5209943 +(1,1812:-473656,4736287:0,0,0 +k1,1812:-473656,4736287:5209943 ) -g1,1239:-473656,-710413 +g1,1812:-473656,-710413 ) ] ) -[1,1239:6630773,47279633:25952256,43253760,0 -[1,1239:6630773,4812305:25952256,786432,0 -(1,1239:6630773,4812305:25952256,505283,11795 -(1,1239:6630773,4812305:25952256,505283,11795 -g1,1239:3078558,4812305 -[1,1239:3078558,4812305:0,0,0 -(1,1239:3078558,2439708:0,1703936,0 -k1,1239:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,1239:2537886,2439708:1179648,16384,0 +[1,1812:6630773,47279633:25952256,43253760,0 +[1,1812:6630773,4812305:25952256,786432,0 +(1,1812:6630773,4812305:25952256,505283,11795 +(1,1812:6630773,4812305:25952256,505283,11795 +g1,1812:3078558,4812305 +[1,1812:3078558,4812305:0,0,0 +(1,1812:3078558,2439708:0,1703936,0 +k1,1812:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,1812:2537886,2439708:1179648,16384,0 ) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,1239:3078558,1915420:16384,1179648,0 +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,1812:3078558,1915420:16384,1179648,0 ) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) ] ) ) ) ] -[1,1239:3078558,4812305:0,0,0 -(1,1239:3078558,2439708:0,1703936,0 -g1,1239:29030814,2439708 -g1,1239:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,1239:36151628,1915420:16384,1179648,0 +[1,1812:3078558,4812305:0,0,0 +(1,1812:3078558,2439708:0,1703936,0 +g1,1812:29030814,2439708 +g1,1812:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,1812:36151628,1915420:16384,1179648,0 ) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) ] ) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,1239:37855564,2439708:1179648,16384,0 +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,1812:37855564,2439708:1179648,16384,0 ) ) -k1,1239:3078556,2439708:-34777008 +k1,1812:3078556,2439708:-34777008 ) ] -[1,1239:3078558,4812305:0,0,0 -(1,1239:3078558,49800853:0,16384,2228224 -k1,1239:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,1239:2537886,49800853:1179648,16384,0 +[1,1812:3078558,4812305:0,0,0 +(1,1812:3078558,49800853:0,16384,2228224 +k1,1812:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,1812:2537886,49800853:1179648,16384,0 ) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,1239:3078558,51504789:16384,1179648,0 +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,1812:3078558,51504789:16384,1179648,0 ) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) ] ) ) ) ] -[1,1239:3078558,4812305:0,0,0 -(1,1239:3078558,49800853:0,16384,2228224 -g1,1239:29030814,49800853 -g1,1239:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,1239:36151628,51504789:16384,1179648,0 +[1,1812:3078558,4812305:0,0,0 +(1,1812:3078558,49800853:0,16384,2228224 +g1,1812:29030814,49800853 +g1,1812:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,1812:36151628,51504789:16384,1179648,0 ) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 ) ] ) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,1239:37855564,49800853:1179648,16384,0 +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,1812:37855564,49800853:1179648,16384,0 ) ) -k1,1239:3078556,49800853:-34777008 +k1,1812:3078556,49800853:-34777008 ) ] -g1,1239:6630773,4812305 -k1,1239:22348274,4812305:14920583 -g1,1239:23970945,4812305 -g1,1239:24793421,4812305 -g1,1239:27528893,4812305 -g1,1239:28938572,4812305 +g1,1812:6630773,4812305 +g1,1812:6630773,4812305 +g1,1812:9516978,4812305 +g1,1812:11710468,4812305 +g1,1812:13120147,4812305 +g1,1812:16560787,4812305 +k1,1812:31786111,4812305:15225324 ) ) ] -[1,1239:6630773,45706769:25952256,40108032,0 -(1,1239:6630773,45706769:25952256,40108032,0 -(1,1239:6630773,45706769:0,0,0 -g1,1239:6630773,45706769 +[1,1812:6630773,45706769:25952256,40108032,0 +(1,1812:6630773,45706769:25952256,40108032,0 +(1,1812:6630773,45706769:0,0,0 +g1,1812:6630773,45706769 ) -[1,1239:6630773,45706769:25952256,40108032,0 -v1,1152:6630773,6254097:0,393216,0 -(1,1152:6630773,7210206:25952256,1349325,196608 -g1,1152:6630773,7210206 -g1,1152:6630773,7210206 -g1,1152:6434165,7210206 -(1,1152:6434165,7210206:0,1349325,196608 -r1,1239:32779637,7210206:26345472,1545933,196608 -k1,1152:6434165,7210206:-26345472 +[1,1812:6630773,45706769:25952256,40108032,0 +v1,1812:6630773,6254097:0,393216,0 +(1,1812:6630773,45706769:25952256,39845888,0 +g1,1812:6630773,45706769 +g1,1812:6237557,45706769 +r1,1812:6368629,45706769:131072,39845888,0 +g1,1812:6567858,45706769 +g1,1812:6764466,45706769 +[1,1812:6764466,45706769:25818563,39845888,0 +v1,1624:6764466,6254097:0,393216,0 +(1,1643:6764466,10624869:25818563,4763988,196608 +g1,1643:6764466,10624869 +g1,1643:6764466,10624869 +g1,1643:6567858,10624869 +(1,1643:6567858,10624869:0,4763988,196608 +r1,1812:32779637,10624869:26211779,4960596,196608 +k1,1643:6567857,10624869:-26211780 +) +(1,1643:6567858,10624869:26211779,4763988,196608 +[1,1643:6764466,10624869:25818563,4567380,0 +(1,1626:6764466,6465412:25818563,407923,9908 +(1,1625:6764466,6465412:0,0,0 +g1,1625:6764466,6465412 +g1,1625:6764466,6465412 +g1,1625:6436786,6465412 +(1,1625:6436786,6465412:0,0,0 +) +g1,1625:6764466,6465412 +) +g1,1626:8424236,6465412 +g1,1626:9420098,6465412 +g1,1626:10084006,6465412 +g1,1626:10747914,6465412 +h1,1626:12075730,6465412:0,0,0 +k1,1626:32583030,6465412:20507300 +g1,1626:32583030,6465412 +) +(1,1630:6764466,7281339:25818563,424439,79822 +(1,1628:6764466,7281339:0,0,0 +g1,1628:6764466,7281339 +g1,1628:6764466,7281339 +g1,1628:6436786,7281339 +(1,1628:6436786,7281339:0,0,0 +) +g1,1628:6764466,7281339 +) +g1,1630:7760328,7281339 +g1,1630:9088144,7281339 +h1,1630:10415960,7281339:0,0,0 +k1,1630:32583028,7281339:22167068 +g1,1630:32583028,7281339 +) +(1,1632:6764466,8097266:25818563,407923,9908 +(1,1631:6764466,8097266:0,0,0 +g1,1631:6764466,8097266 +g1,1631:6764466,8097266 +g1,1631:6436786,8097266 +(1,1631:6436786,8097266:0,0,0 +) +g1,1631:6764466,8097266 +) +g1,1632:7428374,8097266 +g1,1632:8424236,8097266 +g1,1632:9088144,8097266 +g1,1632:9752052,8097266 +k1,1632:9752052,8097266:0 +h1,1632:11411822,8097266:0,0,0 +k1,1632:32583030,8097266:21171208 +g1,1632:32583030,8097266 +) +(1,1636:6764466,8913193:25818563,424439,79822 +(1,1634:6764466,8913193:0,0,0 +g1,1634:6764466,8913193 +g1,1634:6764466,8913193 +g1,1634:6436786,8913193 +(1,1634:6436786,8913193:0,0,0 +) +g1,1634:6764466,8913193 +) +g1,1636:7760328,8913193 +g1,1636:9088144,8913193 +h1,1636:10415960,8913193:0,0,0 +k1,1636:32583028,8913193:22167068 +g1,1636:32583028,8913193 +) +(1,1638:6764466,9729120:25818563,407923,9908 +(1,1637:6764466,9729120:0,0,0 +g1,1637:6764466,9729120 +g1,1637:6764466,9729120 +g1,1637:6436786,9729120 +(1,1637:6436786,9729120:0,0,0 +) +g1,1637:6764466,9729120 +) +g1,1638:7428374,9729120 +g1,1638:8424236,9729120 +k1,1638:8424236,9729120:0 +h1,1638:10084006,9729120:0,0,0 +k1,1638:32583030,9729120:22499024 +g1,1638:32583030,9729120 +) +(1,1642:6764466,10545047:25818563,424439,79822 +(1,1640:6764466,10545047:0,0,0 +g1,1640:6764466,10545047 +g1,1640:6764466,10545047 +g1,1640:6436786,10545047 +(1,1640:6436786,10545047:0,0,0 +) +g1,1640:6764466,10545047 +) +g1,1642:7760328,10545047 +g1,1642:9088144,10545047 +h1,1642:10747914,10545047:0,0,0 +k1,1642:32583030,10545047:21835116 +g1,1642:32583030,10545047 +) +] +) +g1,1643:32583029,10624869 +g1,1643:6764466,10624869 +g1,1643:6764466,10624869 +g1,1643:32583029,10624869 +g1,1643:32583029,10624869 +) +h1,1643:6764466,10821477:0,0,0 +(1,1647:6764466,11895752:25818563,513147,134348 +h1,1646:6764466,11895752:983040,0,0 +k1,1646:10798404,11895752:446497 +k1,1646:12482876,11895752:446497 +k1,1646:13588664,11895752:446496 +k1,1646:16926609,11895752:446497 +k1,1646:18392191,11895752:446497 +k1,1646:21091160,11895752:446497 +k1,1646:24469738,11895752:446497 +k1,1646:25447731,11895752:446496 +k1,1646:28008419,11895752:446497 +k1,1646:31931601,11895752:446497 +k1,1647:32583029,11895752:0 +) +(1,1647:6764466,12760832:25818563,452978,115847 +(1,1646:6764466,12760832:0,452978,115847 +r1,1812:9936426,12760832:3171960,568825,115847 +k1,1646:6764466,12760832:-3171960 +) +(1,1646:6764466,12760832:3171960,452978,115847 +k1,1646:6764466,12760832:3277 +h1,1646:9933149,12760832:0,411205,112570 +) +k1,1647:32583028,12760832:22472932 +g1,1647:32583028,12760832 +) +v1,1649:6764466,13550284:0,393216,0 +(1,1662:6764466,16312324:25818563,3155256,196608 +g1,1662:6764466,16312324 +g1,1662:6764466,16312324 +g1,1662:6567858,16312324 +(1,1662:6567858,16312324:0,3155256,196608 +r1,1812:32779637,16312324:26211779,3351864,196608 +k1,1662:6567857,16312324:-26211780 +) +(1,1662:6567858,16312324:26211779,3155256,196608 +[1,1662:6764466,16312324:25818563,2958648,0 +(1,1651:6764466,13784721:25818563,431045,112852 +(1,1650:6764466,13784721:0,0,0 +g1,1650:6764466,13784721 +g1,1650:6764466,13784721 +g1,1650:6436786,13784721 +(1,1650:6436786,13784721:0,0,0 +) +g1,1650:6764466,13784721 +) +k1,1651:6764466,13784721:0 +g1,1651:11411822,13784721 +g1,1651:13735500,13784721 +g1,1651:14399408,13784721 +g1,1651:15727224,13784721 +g1,1651:16391132,13784721 +g1,1651:18050902,13784721 +g1,1651:20706534,13784721 +k1,1651:20706534,13784721:0 +h1,1651:24026073,13784721:0,0,0 +k1,1651:32583029,13784721:8556956 +g1,1651:32583029,13784721 +) +(1,1655:6764466,14600648:25818563,424439,79822 +(1,1653:6764466,14600648:0,0,0 +g1,1653:6764466,14600648 +g1,1653:6764466,14600648 +g1,1653:6436786,14600648 +(1,1653:6436786,14600648:0,0,0 +) +g1,1653:6764466,14600648 +) +g1,1655:7760328,14600648 +g1,1655:9088144,14600648 +h1,1655:11411822,14600648:0,0,0 +k1,1655:32583030,14600648:21171208 +g1,1655:32583030,14600648 +) +(1,1657:6764466,15416575:25818563,431045,112852 +(1,1656:6764466,15416575:0,0,0 +g1,1656:6764466,15416575 +g1,1656:6764466,15416575 +g1,1656:6436786,15416575 +(1,1656:6436786,15416575:0,0,0 +) +g1,1656:6764466,15416575 +) +k1,1657:6764466,15416575:0 +g1,1657:11411822,15416575 +g1,1657:13735500,15416575 +g1,1657:14399408,15416575 +g1,1657:15727224,15416575 +g1,1657:16391132,15416575 +g1,1657:18050902,15416575 +g1,1657:20374580,15416575 +g1,1657:22034350,15416575 +g1,1657:23030212,15416575 +k1,1657:23030212,15416575:0 +h1,1657:26349751,15416575:0,0,0 +k1,1657:32583029,15416575:6233278 +g1,1657:32583029,15416575 +) +(1,1661:6764466,16232502:25818563,424439,79822 +(1,1659:6764466,16232502:0,0,0 +g1,1659:6764466,16232502 +g1,1659:6764466,16232502 +g1,1659:6436786,16232502 +(1,1659:6436786,16232502:0,0,0 +) +g1,1659:6764466,16232502 +) +g1,1661:7760328,16232502 +g1,1661:9088144,16232502 +h1,1661:17386992,16232502:0,0,0 +k1,1661:32583029,16232502:15196037 +g1,1661:32583029,16232502 +) +] +) +g1,1662:32583029,16312324 +g1,1662:6764466,16312324 +g1,1662:6764466,16312324 +g1,1662:32583029,16312324 +g1,1662:32583029,16312324 +) +h1,1662:6764466,16508932:0,0,0 +(1,1666:6764466,17583207:25818563,513147,126483 +h1,1665:6764466,17583207:983040,0,0 +k1,1665:9559578,17583207:218236 +k1,1665:11490270,17583207:218236 +k1,1665:12359935,17583207:218237 +k1,1665:13325937,17583207:218236 +k1,1665:13900033,17583207:218236 +k1,1665:16794759,17583207:218236 +k1,1665:17629033,17583207:218236 +k1,1665:19043957,17583207:218237 +k1,1665:20354678,17583207:218236 +k1,1665:21240070,17583207:218236 +k1,1665:21873130,17583207:218217 +k1,1665:22622863,17583207:218236 +k1,1665:23860185,17583207:218237 +k1,1665:28379549,17583207:218236 +k1,1665:29257077,17583207:218236 +k1,1665:32583029,17583207:0 +) +(1,1666:6764466,18448287:25818563,513147,126483 +k1,1665:8660423,18448287:179569 +k1,1665:10777892,18448287:179569 +k1,1665:11573500,18448287:179570 +k1,1665:14685150,18448287:179569 +k1,1665:16432340,18448287:179569 +k1,1665:19283156,18448287:179569 +k1,1665:22867320,18448287:179569 +k1,1665:23856260,18448287:179570 +k1,1665:24450652,18448287:179549 +(1,1665:24450652,18448287:0,452978,115847 +r1,1812:26567477,18448287:2116825,568825,115847 +k1,1665:24450652,18448287:-2116825 +) +(1,1665:24450652,18448287:2116825,452978,115847 +k1,1665:24450652,18448287:3277 +h1,1665:26564200,18448287:0,411205,112570 +) +k1,1665:26747047,18448287:179570 +k1,1665:29110931,18448287:179569 +k1,1665:30884991,18448287:179569 +k1,1665:32583029,18448287:0 +) +(1,1666:6764466,19313367:25818563,505283,134348 +k1,1665:11342811,19313367:184156 +k1,1665:13804343,19313367:184156 +k1,1665:15455195,19313367:184156 +k1,1665:16993325,19313367:184156 +k1,1665:18748379,19313367:184156 +k1,1665:20123980,19313367:184156 +k1,1665:21662110,19313367:184156 +k1,1665:23562654,19313367:184156 +k1,1665:26736562,19313367:184156 +k1,1665:27939803,19313367:184156 +k1,1665:30902686,19313367:184156 +k1,1665:32583029,19313367:0 +) +(1,1666:6764466,20178447:25818563,513147,126483 +k1,1665:8064146,20178447:195398 +k1,1665:10631292,20178447:195398 +k1,1665:11636060,20178447:195398 +k1,1665:12850543,20178447:195398 +k1,1665:14785267,20178447:195398 +k1,1665:15639957,20178447:195398 +k1,1665:16854439,20178447:195397 +k1,1665:20628103,20178447:195398 +k1,1665:21451336,20178447:195398 +k1,1665:24184288,20178447:195398 +k1,1665:27104673,20178447:195398 +k1,1665:29011216,20178447:195398 +k1,1665:31052763,20178447:195398 +k1,1665:32583029,20178447:0 +) +(1,1666:6764466,21043527:25818563,513147,134348 +k1,1665:7680823,21043527:264929 +k1,1665:8693518,21043527:264929 +k1,1665:12253597,21043527:264929 +k1,1665:14341082,21043527:264929 +k1,1665:16543911,21043527:264929 +k1,1665:17424879,21043527:264930 +k1,1665:20621889,21043527:264929 +k1,1665:22957756,21043527:264929 +k1,1665:24920723,21043527:264929 +k1,1665:27367346,21043527:264929 +k1,1665:28579926,21043527:264929 +k1,1665:31391584,21043527:264929 +k1,1665:32583029,21043527:0 +) +(1,1666:6764466,21908607:25818563,513147,126483 +k1,1665:10280308,21908607:179404 +k1,1665:11383769,21908607:179403 +k1,1665:12582258,21908607:179404 +k1,1665:14463632,21908607:179404 +k1,1665:16422993,21908607:179403 +k1,1665:18253249,21908607:179404 +k1,1665:21680617,21908607:179404 +k1,1665:22527176,21908607:179403 +(1,1665:22527176,21908607:0,452978,115847 +r1,1812:24644001,21908607:2116825,568825,115847 +k1,1665:22527176,21908607:-2116825 +) +(1,1665:22527176,21908607:2116825,452978,115847 +k1,1665:22527176,21908607:3277 +h1,1665:24640724,21908607:0,411205,112570 +) +k1,1665:24823405,21908607:179404 +k1,1665:28183927,21908607:179404 +k1,1665:30373975,21908607:179403 +k1,1665:31657661,21908607:179404 +k1,1666:32583029,21908607:0 +) +(1,1666:6764466,22773687:25818563,513147,126483 +k1,1665:8525680,22773687:163446 +k1,1665:9986085,22773687:163447 +k1,1665:13597380,22773687:163446 +k1,1665:16539554,22773687:163447 +k1,1665:18713645,22773687:163446 +k1,1665:19824742,22773687:163446 +k1,1665:23293170,22773687:163447 +k1,1665:27850805,22773687:163446 +k1,1665:29931180,22773687:163447 +k1,1665:31286071,22773687:163446 +k1,1665:32583029,22773687:0 +) +(1,1666:6764466,23638767:25818563,513147,134348 +k1,1665:8655955,23638767:199349 +k1,1665:12919190,23638767:199348 +k1,1665:16559834,23638767:199349 +k1,1665:18096117,23638767:199349 +k1,1665:19043231,23638767:199348 +k1,1665:22681909,23638767:199349 +k1,1665:24072702,23638767:199348 +k1,1665:26304322,23638767:199349 +k1,1665:27970367,23638767:199349 +k1,1665:29370335,23638767:199348 +k1,1665:30185722,23638767:199349 +k1,1665:32583029,23638767:0 +) +(1,1666:6764466,24503847:25818563,355205,7863 +k1,1666:32583029,24503847:23947510 +g1,1666:32583029,24503847 +) +(1,1668:6764466,25473524:25818563,513147,134348 +h1,1667:6764466,25473524:983040,0,0 +k1,1667:8816755,25473524:251360 +k1,1667:10087199,25473524:251359 +k1,1667:10753350,25473524:251308 +k1,1667:13746736,25473524:251360 +k1,1667:15102377,25473524:251359 +k1,1667:16101503,25473524:251360 +k1,1667:17866089,25473524:251360 +k1,1667:18926818,25473524:251359 +k1,1667:21940521,25473524:251360 +k1,1667:23908269,25473524:251360 +k1,1667:24818921,25473524:251360 +k1,1667:28146540,25473524:251359 +k1,1667:31563944,25473524:251360 +k1,1667:32583029,25473524:0 +) +(1,1668:6764466,26338604:25818563,513147,134348 +k1,1667:8872704,26338604:186067 +k1,1667:11746403,26338604:186068 +k1,1667:13747162,26338604:186067 +k1,1667:14880881,26338604:186068 +k1,1667:17327285,26338604:186067 +k1,1667:20329435,26338604:186068 +k1,1667:21131540,26338604:186067 +k1,1667:23948879,26338604:186068 +k1,1667:25471880,26338604:186067 +k1,1667:27020442,26338604:186068 +k1,1667:30568506,26338604:186067 +k1,1667:31563944,26338604:186068 +k1,1667:32583029,26338604:0 +) +(1,1668:6764466,27203684:25818563,513147,134348 +k1,1667:8352605,27203684:202053 +k1,1667:9213950,27203684:202053 +k1,1667:12544035,27203684:202052 +k1,1667:13937533,27203684:202053 +k1,1667:15606282,27203684:202053 +k1,1667:16827420,27203684:202053 +k1,1667:19840311,27203684:202052 +k1,1667:21555590,27203684:202053 +k1,1667:22409071,27203684:202053 +k1,1667:24253456,27203684:202053 +k1,1667:25474593,27203684:202052 +k1,1667:26091486,27203684:202050 +k1,1667:29035565,27203684:202053 +k1,1667:32583029,27203684:0 +) +(1,1668:6764466,28068764:25818563,505283,134348 +k1,1667:9892254,28068764:193086 +k1,1667:10543436,28068764:193085 +k1,1667:11268019,28068764:193086 +k1,1667:14091065,28068764:193086 +k1,1667:14935578,28068764:193085 +k1,1667:17152416,28068764:193086 +k1,1667:19042229,28068764:193086 +k1,1667:21245960,28068764:193086 +k1,1667:22051807,28068764:193085 +k1,1667:23362937,28068764:193086 +k1,1667:25155101,28068764:193086 +k1,1667:26417734,28068764:193085 +k1,1667:28300338,28068764:193086 +k1,1667:29512509,28068764:193086 +k1,1667:30120431,28068764:193079 +k1,1667:30845014,28068764:193086 +k1,1667:32583029,28068764:0 +) +(1,1668:6764466,28933844:25818563,513147,134348 +k1,1667:8678945,28933844:227582 +k1,1667:10474149,28933844:227583 +k1,1667:11720816,28933844:227582 +k1,1667:14459738,28933844:227582 +(1,1667:14459738,28933844:0,452978,115847 +r1,1812:17279987,28933844:2820249,568825,115847 +k1,1667:14459738,28933844:-2820249 +) +(1,1667:14459738,28933844:2820249,452978,115847 +k1,1667:14459738,28933844:3277 +h1,1667:17276710,28933844:0,411205,112570 +) +k1,1667:17681240,28933844:227583 +k1,1667:19794293,28933844:227582 +k1,1667:20553372,28933844:227582 +k1,1667:22102816,28933844:227583 +k1,1667:22989690,28933844:227582 +k1,1667:24236357,28933844:227582 +k1,1667:24878754,28933844:227554 +k1,1667:28122303,28933844:227582 +k1,1667:30311379,28933844:227583 +k1,1667:31563944,28933844:227582 +k1,1667:32583029,28933844:0 +) +(1,1668:6764466,29798924:25818563,513147,134348 +k1,1667:8381548,29798924:229029 +k1,1667:10108729,29798924:229028 +k1,1667:11285409,29798924:229029 +(1,1667:11285409,29798924:0,452978,115847 +r1,1812:14105658,29798924:2820249,568825,115847 +k1,1667:11285409,29798924:-2820249 +) +(1,1667:11285409,29798924:2820249,452978,115847 +k1,1667:11285409,29798924:3277 +h1,1667:14102381,29798924:0,411205,112570 +) +k1,1667:14334687,29798924:229029 +k1,1667:15511366,29798924:229028 +k1,1667:16096255,29798924:229029 +k1,1667:18880533,29798924:229029 +k1,1667:20301006,29798924:229028 +k1,1667:23823874,29798924:229029 +k1,1667:27662626,29798924:229029 +k1,1667:28550946,29798924:229028 +k1,1667:29799060,29798924:229029 +k1,1667:32583029,29798924:0 +) +(1,1668:6764466,30664004:25818563,505283,126483 +k1,1667:10196385,30664004:170192 +k1,1667:12676721,30664004:170192 +k1,1667:14124210,30664004:170192 +k1,1667:15988508,30664004:170192 +k1,1667:17304269,30664004:170192 +k1,1667:18608889,30664004:170192 +k1,1667:19764741,30664004:170191 +k1,1667:22841455,30664004:170192 +k1,1667:24999354,30664004:170192 +k1,1667:26155207,30664004:170192 +k1,1667:28319660,30664004:170192 +k1,1667:31242364,30664004:170192 +k1,1667:32168841,30664004:170192 +k1,1667:32583029,30664004:0 +) +(1,1668:6764466,31529084:25818563,513147,126483 +k1,1667:7576738,31529084:209341 +k1,1667:9239669,31529084:209342 +k1,1667:10757109,31529084:209341 +k1,1667:13962756,31529084:209341 +k1,1667:15303249,31529084:209342 +k1,1667:17217837,31529084:209341 +k1,1667:18969897,31529084:209342 +k1,1667:20820260,31529084:209341 +k1,1667:23782113,31529084:209341 +k1,1667:24594386,31529084:209342 +k1,1667:25789388,31529084:209341 +k1,1667:28995035,31529084:209341 +k1,1667:29417359,31529084:209332 +k1,1667:31143858,31529084:209341 +k1,1667:32583029,31529084:0 +) +(1,1668:6764466,32394164:25818563,505283,134348 +g1,1667:7563349,32394164 +g1,1667:9959345,32394164 +g1,1667:11144235,32394164 +g1,1667:12835063,32394164 +g1,1667:13721109,32394164 +g1,1667:15065907,32394164 +g1,1667:16311091,32394164 +g1,1667:18952191,32394164 +g1,1667:19573472,32394164 +g1,1667:21346876,32394164 +g1,1667:21346876,32394164 +g1,1667:21546105,32394164 +g1,1667:21546105,32394164 +k1,1668:32583029,32394164:11036924 +g1,1668:32583029,32394164 +) +v1,1670:6764466,33183616:0,393216,0 +(1,1701:6764466,40841218:25818563,8050818,196608 +g1,1701:6764466,40841218 +g1,1701:6764466,40841218 +g1,1701:6567858,40841218 +(1,1701:6567858,40841218:0,8050818,196608 +r1,1812:32779637,40841218:26211779,8247426,196608 +k1,1701:6567857,40841218:-26211780 +) +(1,1701:6567858,40841218:26211779,8050818,196608 +[1,1701:6764466,40841218:25818563,7854210,0 +(1,1672:6764466,33418053:25818563,431045,106246 +(1,1671:6764466,33418053:0,0,0 +g1,1671:6764466,33418053 +g1,1671:6764466,33418053 +g1,1671:6436786,33418053 +(1,1671:6436786,33418053:0,0,0 +) +g1,1671:6764466,33418053 +) +h1,1672:13071590,33418053:0,0,0 +k1,1672:32583030,33418053:19511440 +g1,1672:32583030,33418053 +) +(1,1676:6764466,34233980:25818563,424439,79822 +(1,1674:6764466,34233980:0,0,0 +g1,1674:6764466,34233980 +g1,1674:6764466,34233980 +g1,1674:6436786,34233980 +(1,1674:6436786,34233980:0,0,0 +) +g1,1674:6764466,34233980 +) +g1,1676:7760328,34233980 +g1,1676:9088144,34233980 +k1,1676:9088144,34233980:0 +h1,1676:13071591,34233980:0,0,0 +k1,1676:32583029,34233980:19511438 +g1,1676:32583029,34233980 +) +(1,1678:6764466,35049907:25818563,431045,112852 +(1,1677:6764466,35049907:0,0,0 +g1,1677:6764466,35049907 +g1,1677:6764466,35049907 +g1,1677:6436786,35049907 +(1,1677:6436786,35049907:0,0,0 +) +g1,1677:6764466,35049907 +) +h1,1678:14399406,35049907:0,0,0 +k1,1678:32583030,35049907:18183624 +g1,1678:32583030,35049907 +) +(1,1682:6764466,35865834:25818563,424439,79822 +(1,1680:6764466,35865834:0,0,0 +g1,1680:6764466,35865834 +g1,1680:6764466,35865834 +g1,1680:6436786,35865834 +(1,1680:6436786,35865834:0,0,0 +) +g1,1680:6764466,35865834 +) +g1,1682:7760328,35865834 +g1,1682:9088144,35865834 +k1,1682:9088144,35865834:0 +h1,1682:13071591,35865834:0,0,0 +k1,1682:32583029,35865834:19511438 +g1,1682:32583029,35865834 +) +(1,1684:6764466,36681761:25818563,431045,33029 +(1,1683:6764466,36681761:0,0,0 +g1,1683:6764466,36681761 +g1,1683:6764466,36681761 +g1,1683:6436786,36681761 +(1,1683:6436786,36681761:0,0,0 +) +g1,1683:6764466,36681761 +) +h1,1684:13071590,36681761:0,0,0 +k1,1684:32583030,36681761:19511440 +g1,1684:32583030,36681761 +) +(1,1688:6764466,37497688:25818563,424439,79822 +(1,1686:6764466,37497688:0,0,0 +g1,1686:6764466,37497688 +g1,1686:6764466,37497688 +g1,1686:6436786,37497688 +(1,1686:6436786,37497688:0,0,0 +) +g1,1686:6764466,37497688 +) +g1,1688:7760328,37497688 +g1,1688:9088144,37497688 +h1,1688:10415960,37497688:0,0,0 +k1,1688:32583028,37497688:22167068 +g1,1688:32583028,37497688 +) +(1,1690:6764466,38313615:25818563,431045,33029 +(1,1689:6764466,38313615:0,0,0 +g1,1689:6764466,38313615 +g1,1689:6764466,38313615 +g1,1689:6436786,38313615 +(1,1689:6436786,38313615:0,0,0 +) +g1,1689:6764466,38313615 +) +h1,1690:13071590,38313615:0,0,0 +k1,1690:32583030,38313615:19511440 +g1,1690:32583030,38313615 +) +(1,1694:6764466,39129542:25818563,424439,79822 +(1,1692:6764466,39129542:0,0,0 +g1,1692:6764466,39129542 +g1,1692:6764466,39129542 +g1,1692:6436786,39129542 +(1,1692:6436786,39129542:0,0,0 +) +g1,1692:6764466,39129542 +) +g1,1694:7760328,39129542 +g1,1694:9088144,39129542 +k1,1694:9088144,39129542:0 +h1,1694:10747914,39129542:0,0,0 +k1,1694:32583030,39129542:21835116 +g1,1694:32583030,39129542 +) +(1,1696:6764466,39945469:25818563,431045,33029 +(1,1695:6764466,39945469:0,0,0 +g1,1695:6764466,39945469 +g1,1695:6764466,39945469 +g1,1695:6436786,39945469 +(1,1695:6436786,39945469:0,0,0 +) +g1,1695:6764466,39945469 +) +h1,1696:13403544,39945469:0,0,0 +k1,1696:32583028,39945469:19179484 +g1,1696:32583028,39945469 +) +(1,1700:6764466,40761396:25818563,424439,79822 +(1,1698:6764466,40761396:0,0,0 +g1,1698:6764466,40761396 +g1,1698:6764466,40761396 +g1,1698:6436786,40761396 +(1,1698:6436786,40761396:0,0,0 +) +g1,1698:6764466,40761396 +) +g1,1700:7760328,40761396 +g1,1700:9088144,40761396 +h1,1700:9420098,40761396:0,0,0 +k1,1700:32583030,40761396:23162932 +g1,1700:32583030,40761396 +) +] +) +g1,1701:32583029,40841218 +g1,1701:6764466,40841218 +g1,1701:6764466,40841218 +g1,1701:32583029,40841218 +g1,1701:32583029,40841218 +) +h1,1701:6764466,41037826:0,0,0 +(1,1705:6764466,42112101:25818563,513147,126483 +h1,1704:6764466,42112101:983040,0,0 +k1,1704:9135209,42112101:191016 +k1,1704:10474415,42112101:191015 +k1,1704:11837870,42112101:191016 +k1,1704:14039530,42112101:191015 +k1,1704:15766710,42112101:191016 +k1,1704:16609154,42112101:191016 +k1,1704:17819254,42112101:191015 +k1,1704:21302143,42112101:191016 +k1,1704:22152450,42112101:191015 +k1,1704:22699326,42112101:191016 +k1,1704:24324270,42112101:191016 +k1,1704:27001066,42112101:191015 +k1,1704:27874967,42112101:191016 +k1,1704:29868222,42112101:191015 +k1,1704:30631367,42112101:191016 +k1,1704:32583029,42112101:0 +) +(1,1705:6764466,42977181:25818563,513147,7863 +k1,1704:8493255,42977181:286342 +k1,1704:9798682,42977181:286342 +k1,1704:13281869,42977181:286341 +k1,1704:14759656,42977181:286342 +k1,1704:18137987,42977181:286342 +k1,1704:19693106,42977181:286342 +k1,1704:20638739,42977181:286341 +k1,1704:23741163,42977181:286342 +k1,1704:25312011,42977181:286342 +k1,1704:26702635,42977181:286342 +k1,1704:27736742,42977181:286341 +k1,1704:30602581,42977181:286342 +k1,1704:31575085,42977181:286342 +k1,1705:32583029,42977181:0 +) +(1,1705:6764466,43842261:25818563,513147,134348 +k1,1704:8517825,43842261:258483 +k1,1704:9435600,43842261:258483 +k1,1704:11249252,43842261:258483 +(1,1704:11249252,43842261:0,452978,115847 +r1,1812:13366077,43842261:2116825,568825,115847 +k1,1704:11249252,43842261:-2116825 +) +(1,1704:11249252,43842261:2116825,452978,115847 +k1,1704:11249252,43842261:3277 +h1,1704:13362800,43842261:0,411205,112570 +) +k1,1704:13798230,43842261:258483 +k1,1704:15253400,43842261:258483 +k1,1704:18708730,43842261:258484 +k1,1704:20235990,43842261:258483 +k1,1704:21153765,43842261:258483 +k1,1704:25050151,43842261:258483 +(1,1704:25050151,43842261:0,452978,115847 +r1,1812:27166976,43842261:2116825,568825,115847 +k1,1704:25050151,43842261:-2116825 +) +(1,1704:25050151,43842261:2116825,452978,115847 +k1,1704:25050151,43842261:3277 +h1,1704:27163699,43842261:0,411205,112570 +) +k1,1704:27425459,43842261:258483 +k1,1704:29868257,43842261:258483 +k1,1704:31821501,43842261:258483 +k1,1705:32583029,43842261:0 +) +(1,1705:6764466,44707341:25818563,513147,134348 +(1,1704:6764466,44707341:0,459977,115847 +r1,1812:13805257,44707341:7040791,575824,115847 +k1,1704:6764466,44707341:-7040791 +) +(1,1704:6764466,44707341:7040791,459977,115847 +k1,1704:6764466,44707341:3277 +h1,1704:13801980,44707341:0,411205,112570 +) +k1,1704:14156065,44707341:177138 +k1,1704:14864701,44707341:177139 +k1,1704:16825074,44707341:177138 +k1,1704:18861469,44707341:177139 +k1,1704:20481055,44707341:177139 +k1,1704:21677278,44707341:177138 +k1,1704:25051262,44707341:177138 +k1,1704:26908744,44707341:177139 +k1,1704:27753039,44707341:177139 +(1,1704:27753039,44707341:0,452978,122846 +r1,1812:30221576,44707341:2468537,575824,122846 +k1,1704:27753039,44707341:-2468537 +) +(1,1704:27753039,44707341:2468537,452978,122846 +k1,1704:27753039,44707341:3277 +h1,1704:30218299,44707341:0,411205,112570 +) +k1,1704:30398714,44707341:177138 +k1,1704:32583029,44707341:0 +) +(1,1705:6764466,45572421:25818563,505283,134348 +g1,1704:8658456,45572421 +g1,1704:9619213,45572421 +(1,1704:9619213,45572421:0,459977,122846 +r1,1812:16660004,45572421:7040791,582823,122846 +k1,1704:9619213,45572421:-7040791 +) +(1,1704:9619213,45572421:7040791,459977,122846 +k1,1704:9619213,45572421:3277 +h1,1704:16656727,45572421:0,411205,112570 +) +g1,1704:17032903,45572421 +g1,1704:17032903,45572421 +g1,1704:17232132,45572421 +g1,1704:17232132,45572421 +k1,1705:32583029,45572421:15350897 +g1,1705:32583029,45572421 +) +] +g1,1812:32583029,45706769 +) +] +(1,1812:32583029,45706769:0,0,0 +g1,1812:32583029,45706769 +) +) +] +(1,1812:6630773,47279633:25952256,0,0 +h1,1812:6630773,47279633:25952256,0,0 +) +] +(1,1812:4262630,4025873:0,0,0 +[1,1812:-473656,4025873:0,0,0 +(1,1812:-473656,-710413:0,0,0 +(1,1812:-473656,-710413:0,0,0 +g1,1812:-473656,-710413 ) -(1,1152:6434165,7210206:26345472,1349325,196608 -[1,1152:6630773,7210206:25952256,1152717,0 -(1,1147:6630773,6468007:25952256,410518,101187 -(1,1146:6630773,6468007:0,0,0 -g1,1146:6630773,6468007 -g1,1146:6630773,6468007 -g1,1146:6303093,6468007 -(1,1146:6303093,6468007:0,0,0 -) -g1,1146:6630773,6468007 -) -k1,1147:6630773,6468007:0 -g1,1147:10740667,6468007 -g1,1147:12953687,6468007 -g1,1147:13585979,6468007 -g1,1147:15482854,6468007 -g1,1147:17379728,6468007 -g1,1147:18012020,6468007 -h1,1147:18644312,6468007:0,0,0 -k1,1147:32583029,6468007:13938717 -g1,1147:32583029,6468007 -) -(1,1151:6630773,7134185:25952256,404226,76021 -(1,1149:6630773,7134185:0,0,0 -g1,1149:6630773,7134185 -g1,1149:6630773,7134185 -g1,1149:6303093,7134185 -(1,1149:6303093,7134185:0,0,0 -) -g1,1149:6630773,7134185 -) -g1,1151:7579210,7134185 -g1,1151:8843793,7134185 -g1,1151:9476085,7134185 -g1,1151:10108377,7134185 -g1,1151:10740669,7134185 -g1,1151:11372961,7134185 -g1,1151:12005253,7134185 -h1,1151:12321399,7134185:0,0,0 -k1,1151:32583029,7134185:20261630 -g1,1151:32583029,7134185 -) -] -) -g1,1152:32583029,7210206 -g1,1152:6630773,7210206 -g1,1152:6630773,7210206 -g1,1152:32583029,7210206 -g1,1152:32583029,7210206 -) -h1,1152:6630773,7406814:0,0,0 -v1,1155:6630773,8877446:0,393216,0 -(1,1169:6630773,16037420:25952256,7553190,0 -g1,1169:6630773,16037420 -g1,1169:6303093,16037420 -r1,1239:6401397,16037420:98304,7553190,0 -g1,1169:6600626,16037420 -g1,1169:6797234,16037420 -[1,1169:6797234,16037420:25785795,7553190,0 -(1,1157:6797234,9309984:25785795,825754,196608 -(1,1155:6797234,9309984:0,825754,196608 -r1,1239:7890375,9309984:1093141,1022362,196608 -k1,1155:6797234,9309984:-1093141 -) -(1,1155:6797234,9309984:1093141,825754,196608 -) -k1,1155:8038334,9309984:147959 -k1,1155:9356263,9309984:327680 -k1,1155:9356263,9309984:0 -k1,1156:10775620,9309984:147959 -k1,1156:12027861,9309984:147959 -k1,1156:14105200,9309984:147959 -k1,1156:17523406,9309984:147959 -k1,1156:19406758,9309984:147959 -k1,1156:22250214,9309984:147960 -(1,1156:22250214,9309984:0,452978,115847 -r1,1239:24015327,9309984:1765113,568825,115847 -k1,1156:22250214,9309984:-1765113 -) -(1,1156:22250214,9309984:1765113,452978,115847 -k1,1156:22250214,9309984:3277 -h1,1156:24012050,9309984:0,411205,112570 -) -k1,1156:24163286,9309984:147959 -k1,1156:24994130,9309984:147959 -k1,1156:26161174,9309984:147959 -k1,1156:29055747,9309984:147959 -(1,1156:29055747,9309984:0,414482,115847 -r1,1239:29414013,9309984:358266,530329,115847 -k1,1156:29055747,9309984:-358266 -) -(1,1156:29055747,9309984:358266,414482,115847 -k1,1156:29055747,9309984:3277 -h1,1156:29410736,9309984:0,411205,112570 -) -k1,1156:29735642,9309984:147959 -k1,1156:30566486,9309984:147959 -k1,1156:32583029,9309984:0 -) -(1,1157:6797234,10151472:25785795,513147,134348 -k1,1156:8968512,10151472:160633 -k1,1156:10864538,10151472:160633 -k1,1156:13720668,10151472:160634 -(1,1156:13720668,10151472:0,452978,115847 -r1,1239:15485781,10151472:1765113,568825,115847 -k1,1156:13720668,10151472:-1765113 -) -(1,1156:13720668,10151472:1765113,452978,115847 -k1,1156:13720668,10151472:3277 -h1,1156:15482504,10151472:0,411205,112570 -) -k1,1156:15820084,10151472:160633 -k1,1156:16608552,10151472:160633 -k1,1156:17972426,10151472:160633 -k1,1156:19673810,10151472:160633 -k1,1156:20047397,10151472:160595 -k1,1156:21820872,10151472:160634 -k1,1156:22632933,10151472:160633 -k1,1156:23812651,10151472:160633 -k1,1156:26021284,10151472:160633 -k1,1156:26833345,10151472:160633 -k1,1156:28590436,10151472:160634 -k1,1156:29817340,10151472:160633 -k1,1156:30997058,10151472:160633 -k1,1156:32583029,10151472:0 -) -(1,1157:6797234,10992960:25785795,513147,134348 -k1,1156:7750892,10992960:192130 -k1,1156:10466157,10992960:192129 -k1,1156:12355014,10992960:192130 -k1,1156:13738588,10992960:192129 -k1,1156:16263144,10992960:192130 -k1,1156:17785654,10992960:192129 -k1,1156:21143173,10992960:192130 -k1,1156:22729254,10992960:192130 -k1,1156:23940468,10992960:192129 -k1,1156:25520651,10992960:192130 -k1,1156:26372072,10992960:192129 -k1,1156:27583287,10992960:192130 -k1,1156:32583029,10992960:0 -) -(1,1157:6797234,11834448:25785795,505283,134348 -g1,1156:9780432,11834448 -g1,1156:12538187,11834448 -(1,1156:12538187,11834448:0,452978,115847 -r1,1239:15710147,11834448:3171960,568825,115847 -k1,1156:12538187,11834448:-3171960 -) -(1,1156:12538187,11834448:3171960,452978,115847 -k1,1156:12538187,11834448:3277 -h1,1156:15706870,11834448:0,411205,112570 -) -g1,1156:15909376,11834448 -g1,1156:17300050,11834448 -(1,1156:17300050,11834448:0,452978,115847 -r1,1239:20472010,11834448:3171960,568825,115847 -k1,1156:17300050,11834448:-3171960 -) -(1,1156:17300050,11834448:3171960,452978,115847 -k1,1156:17300050,11834448:3277 -h1,1156:20468733,11834448:0,411205,112570 -) -k1,1157:32583029,11834448:11937349 -g1,1157:32583029,11834448 -) -v1,1159:6797234,13024914:0,393216,0 -(1,1166:6797234,15316524:25785795,2684826,196608 -g1,1166:6797234,15316524 -g1,1166:6797234,15316524 -g1,1166:6600626,15316524 -(1,1166:6600626,15316524:0,2684826,196608 -r1,1239:32779637,15316524:26179011,2881434,196608 -k1,1166:6600625,15316524:-26179012 -) -(1,1166:6600626,15316524:26179011,2684826,196608 -[1,1166:6797234,15316524:25785795,2488218,0 -(1,1161:6797234,13216803:25785795,388497,9436 -(1,1160:6797234,13216803:0,0,0 -g1,1160:6797234,13216803 -g1,1160:6797234,13216803 -g1,1160:6469554,13216803 -(1,1160:6469554,13216803:0,0,0 -) -g1,1160:6797234,13216803 -) -k1,1161:6797234,13216803:0 -h1,1161:8061818,13216803:0,0,0 -k1,1161:32583030,13216803:24521212 -g1,1161:32583030,13216803 -) -(1,1162:6797234,13882981:25785795,388497,9436 -h1,1162:6797234,13882981:0,0,0 -k1,1162:6797234,13882981:0 -h1,1162:8061818,13882981:0,0,0 -k1,1162:32583030,13882981:24521212 -g1,1162:32583030,13882981 -) -(1,1163:6797234,14549159:25785795,410518,101187 -h1,1163:6797234,14549159:0,0,0 -g1,1163:9642546,14549159 -g1,1163:10274838,14549159 -g1,1163:11539422,14549159 -g1,1163:12487859,14549159 -g1,1163:13120151,14549159 -g1,1163:14068589,14549159 -g1,1163:15017026,14549159 -g1,1163:15649318,14549159 -h1,1163:16913901,14549159:0,0,0 -k1,1163:32583029,14549159:15669128 -g1,1163:32583029,14549159 -) -(1,1164:6797234,15215337:25785795,404226,101187 -h1,1164:6797234,15215337:0,0,0 -g1,1164:9326401,15215337 -h1,1164:9958693,15215337:0,0,0 -k1,1164:32583029,15215337:22624336 -g1,1164:32583029,15215337 -) -] -) -g1,1166:32583029,15316524 -g1,1166:6797234,15316524 -g1,1166:6797234,15316524 -g1,1166:32583029,15316524 -g1,1166:32583029,15316524 -) -h1,1166:6797234,15513132:0,0,0 -] -g1,1169:32583029,16037420 -) -h1,1169:6630773,16037420:0,0,0 -(1,1172:6630773,17193480:25952256,513147,134348 -h1,1171:6630773,17193480:983040,0,0 -k1,1171:9554934,17193480:305998 -k1,1171:13215065,17193480:305998 -k1,1171:14805569,17193480:305998 -k1,1171:17157602,17193480:305999 -k1,1171:17878335,17193480:305890 -k1,1171:20946677,17193480:305999 -k1,1171:22820296,17193480:305998 -k1,1171:24727994,17193480:305998 -k1,1171:26735962,17193480:305998 -k1,1171:31394206,17193480:305998 -k1,1172:32583029,17193480:0 -) -(1,1172:6630773,18034968:25952256,513147,134348 -k1,1171:9173570,18034968:172360 -k1,1171:12683022,18034968:172359 -k1,1171:16305197,18034968:172360 -k1,1171:19669159,18034968:172359 -k1,1171:21032964,18034968:172360 -k1,1171:24231120,18034968:172359 -k1,1171:25687986,18034968:172360 -k1,1171:26851905,18034968:172359 -k1,1171:30361358,18034968:172360 -k1,1171:32583029,18034968:0 -) -(1,1172:6630773,18876456:25952256,513147,134348 -k1,1171:7452342,18876456:135407 -k1,1171:11164050,18876456:135408 -k1,1171:13607635,18876456:135407 -k1,1171:14402335,18876456:135408 -k1,1171:17334163,18876456:135407 -k1,1171:19656506,18876456:135407 -k1,1171:20407952,18876456:135408 -k1,1171:22428830,18876456:135407 -k1,1171:23931318,18876456:135407 -k1,1171:25085811,18876456:135408 -k1,1171:27064090,18876456:135407 -k1,1171:29978225,18876456:135408 -k1,1171:30645129,18876456:135407 -k1,1172:32583029,18876456:0 -) -(1,1172:6630773,19717944:25952256,513147,134348 -k1,1171:8380202,19717944:169356 -k1,1171:9200986,19717944:169356 -k1,1171:11488465,19717944:169355 -k1,1171:14029569,19717944:169356 -k1,1171:15218010,19717944:169356 -k1,1171:17040839,19717944:169356 -k1,1171:19905691,19717944:169356 -k1,1171:20757932,19717944:169356 -k1,1171:23673901,19717944:169355 -k1,1171:27602402,19717944:169356 -k1,1171:28423186,19717944:169356 -k1,1171:30044164,19717944:169356 -k1,1171:32583029,19717944:0 -) -(1,1172:6630773,20559432:25952256,513147,7863 -g1,1171:7489294,20559432 -g1,1171:8707608,20559432 -k1,1172:32583029,20559432:21723874 -g1,1172:32583029,20559432 -) -v1,1174:6630773,21540182:0,393216,0 -(1,1199:6630773,28459439:25952256,7312473,196608 -g1,1199:6630773,28459439 -g1,1199:6630773,28459439 -g1,1199:6434165,28459439 -(1,1199:6434165,28459439:0,7312473,196608 -r1,1239:32779637,28459439:26345472,7509081,196608 -k1,1199:6434165,28459439:-26345472 -) -(1,1199:6434165,28459439:26345472,7312473,196608 -[1,1199:6630773,28459439:25952256,7115865,0 -(1,1176:6630773,21754092:25952256,410518,101187 -(1,1175:6630773,21754092:0,0,0 -g1,1175:6630773,21754092 -g1,1175:6630773,21754092 -g1,1175:6303093,21754092 -(1,1175:6303093,21754092:0,0,0 -) -g1,1175:6630773,21754092 -) -g1,1176:8211502,21754092 -g1,1176:8843794,21754092 -g1,1176:9476086,21754092 -g1,1176:10108378,21754092 -g1,1176:11056815,21754092 -g1,1176:12321398,21754092 -g1,1176:13585981,21754092 -g1,1176:14534418,21754092 -g1,1176:16747438,21754092 -g1,1176:17379730,21754092 -g1,1176:19908896,21754092 -k1,1176:19908896,21754092:1573 -h1,1176:21491197,21754092:0,0,0 -k1,1176:32583029,21754092:11091832 -g1,1176:32583029,21754092 -) -(1,1180:6630773,22420270:25952256,404226,76021 -(1,1178:6630773,22420270:0,0,0 -g1,1178:6630773,22420270 -g1,1178:6630773,22420270 -g1,1178:6303093,22420270 -(1,1178:6303093,22420270:0,0,0 -) -g1,1178:6630773,22420270 -) -g1,1180:7579210,22420270 -g1,1180:8843793,22420270 -g1,1180:9476085,22420270 -g1,1180:10108377,22420270 -h1,1180:10424523,22420270:0,0,0 -k1,1180:32583029,22420270:22158506 -g1,1180:32583029,22420270 -) -(1,1182:6630773,23741808:25952256,404226,76021 -(1,1181:6630773,23741808:0,0,0 -g1,1181:6630773,23741808 -g1,1181:6630773,23741808 -g1,1181:6303093,23741808 -(1,1181:6303093,23741808:0,0,0 -) -g1,1181:6630773,23741808 -) -g1,1182:8527647,23741808 -g1,1182:9159939,23741808 -g1,1182:10108377,23741808 -g1,1182:10740669,23741808 -h1,1182:11056815,23741808:0,0,0 -k1,1182:32583029,23741808:21526214 -g1,1182:32583029,23741808 -) -(1,1186:6630773,24407986:25952256,404226,76021 -(1,1184:6630773,24407986:0,0,0 -g1,1184:6630773,24407986 -g1,1184:6630773,24407986 -g1,1184:6303093,24407986 -(1,1184:6303093,24407986:0,0,0 -) -g1,1184:6630773,24407986 -) -g1,1186:7579210,24407986 -g1,1186:8843793,24407986 -g1,1186:9476085,24407986 -g1,1186:10108377,24407986 -h1,1186:10424523,24407986:0,0,0 -k1,1186:32583029,24407986:22158506 -g1,1186:32583029,24407986 -) -(1,1188:6630773,25729524:25952256,379060,9436 -(1,1187:6630773,25729524:0,0,0 -g1,1187:6630773,25729524 -g1,1187:6630773,25729524 -g1,1187:6303093,25729524 -(1,1187:6303093,25729524:0,0,0 -) -g1,1187:6630773,25729524 -) -g1,1188:8211502,25729524 -g1,1188:8843794,25729524 -h1,1188:10108377,25729524:0,0,0 -k1,1188:32583029,25729524:22474652 -g1,1188:32583029,25729524 -) -(1,1192:6630773,26395702:25952256,404226,76021 -(1,1190:6630773,26395702:0,0,0 -g1,1190:6630773,26395702 -g1,1190:6630773,26395702 -g1,1190:6303093,26395702 -(1,1190:6303093,26395702:0,0,0 -) -g1,1190:6630773,26395702 -) -g1,1192:7579210,26395702 -g1,1192:8843793,26395702 -g1,1192:9476085,26395702 -g1,1192:10108377,26395702 -h1,1192:10424523,26395702:0,0,0 -k1,1192:32583029,26395702:22158506 -g1,1192:32583029,26395702 -) -(1,1194:6630773,27717240:25952256,379060,9436 -(1,1193:6630773,27717240:0,0,0 -g1,1193:6630773,27717240 -g1,1193:6630773,27717240 -g1,1193:6303093,27717240 -(1,1193:6303093,27717240:0,0,0 -) -g1,1193:6630773,27717240 -) -g1,1194:8211502,27717240 -g1,1194:8843794,27717240 -h1,1194:10108377,27717240:0,0,0 -k1,1194:32583029,27717240:22474652 -g1,1194:32583029,27717240 -) -(1,1198:6630773,28383418:25952256,404226,76021 -(1,1196:6630773,28383418:0,0,0 -g1,1196:6630773,28383418 -g1,1196:6630773,28383418 -g1,1196:6303093,28383418 -(1,1196:6303093,28383418:0,0,0 -) -g1,1196:6630773,28383418 -) -g1,1198:7579210,28383418 -g1,1198:8843793,28383418 -g1,1198:9792230,28383418 -g1,1198:10740667,28383418 -g1,1198:11056813,28383418 -h1,1198:11372959,28383418:0,0,0 -k1,1198:32583029,28383418:21210070 -g1,1198:32583029,28383418 -) -] -) -g1,1199:32583029,28459439 -g1,1199:6630773,28459439 -g1,1199:6630773,28459439 -g1,1199:32583029,28459439 -g1,1199:32583029,28459439 -) -h1,1199:6630773,28656047:0,0,0 -(1,1203:6630773,29812107:25952256,513147,126483 -h1,1202:6630773,29812107:983040,0,0 -k1,1202:8603021,29812107:171319 -k1,1202:9232437,29812107:171319 -k1,1202:10508037,29812107:171318 -k1,1202:11427122,29812107:171319 -k1,1202:13038267,29812107:171319 -k1,1202:13825624,29812107:171319 -k1,1202:15016027,29812107:171318 -k1,1202:16493479,29812107:171319 -k1,1202:17833305,29812107:171319 -k1,1202:18663916,29812107:171319 -k1,1202:20331421,29812107:171318 -k1,1202:22531735,29812107:171319 -k1,1202:25175727,29812107:171319 -k1,1202:28733291,29812107:171319 -k1,1202:29571765,29812107:171318 -k1,1202:30331597,29812107:171319 -k1,1202:31034413,29812107:171319 -k1,1202:32583029,29812107:0 -) -(1,1203:6630773,30653595:25952256,513147,134348 -k1,1202:7371598,30653595:209328 -k1,1202:10885907,30653595:209328 -k1,1202:12963011,30653595:209328 -k1,1202:16631985,30653595:209328 -k1,1202:17500605,30653595:209328 -k1,1202:19687810,30653595:209328 -k1,1202:23473437,30653595:209327 -k1,1202:24368927,30653595:209328 -k1,1202:26556132,30653595:209328 -(1,1202:26556132,30653595:0,424981,115847 -r1,1239:27969533,30653595:1413401,540828,115847 -k1,1202:26556132,30653595:-1413401 -) -(1,1202:26556132,30653595:1413401,424981,115847 -k1,1202:26556132,30653595:3277 -h1,1202:27966256,30653595:0,411205,112570 -) -k1,1202:28178861,30653595:209328 -k1,1202:28919686,30653595:209328 -k1,1202:29788306,30653595:209328 -k1,1202:32010900,30653595:209328 -k1,1202:32583029,30653595:0 -) -(1,1203:6630773,31495083:25952256,513147,134348 -k1,1202:7967677,31495083:264735 -k1,1202:9251498,31495083:264736 -(1,1202:9251498,31495083:0,452978,115847 -r1,1239:11720035,31495083:2468537,568825,115847 -k1,1202:9251498,31495083:-2468537 -) -(1,1202:9251498,31495083:2468537,452978,115847 -k1,1202:9251498,31495083:3277 -h1,1202:11716758,31495083:0,411205,112570 -) -k1,1202:11984770,31495083:264735 -k1,1202:15007260,31495083:264735 -k1,1202:15670454,31495083:264735 -k1,1202:16466687,31495083:264736 -k1,1202:17087282,31495083:264735 -k1,1202:19329894,31495083:264735 -k1,1202:20253921,31495083:264735 -k1,1202:22531923,31495083:264736 -k1,1202:23368787,31495083:264735 -k1,1202:24836763,31495083:264735 -k1,1202:26786429,31495083:264735 -k1,1202:29808920,31495083:264736 -k1,1202:32051532,31495083:264735 -k1,1202:32583029,31495083:0 -) -(1,1203:6630773,32336571:25952256,513147,134348 -k1,1202:9968795,32336571:244067 -k1,1202:10974390,32336571:244067 -k1,1202:14077793,32336571:244067 -k1,1202:18135400,32336571:244067 -k1,1202:19167865,32336571:244067 -k1,1202:21265946,32336571:244067 -k1,1202:22777479,32336571:244067 -k1,1202:23377406,32336571:244067 -k1,1202:25645880,32336571:244067 -k1,1202:27867824,32336571:244067 -k1,1202:28771183,32336571:244067 -k1,1202:32227169,32336571:244067 -k1,1202:32583029,32336571:0 -) -(1,1203:6630773,33178059:25952256,513147,134348 -g1,1202:8807879,33178059 -g1,1202:9666400,33178059 -g1,1202:10884714,33178059 -g1,1202:12737416,33178059 -g1,1202:14949911,33178059 -g1,1202:15835302,33178059 -g1,1202:17053616,33178059 -g1,1202:19576096,33178059 -g1,1202:21753202,33178059 -g1,1202:22568469,33178059 -g1,1202:23786783,33178059 -g1,1202:27346043,33178059 -(1,1202:27346043,33178059:0,414482,115847 -r1,1239:27704309,33178059:358266,530329,115847 -k1,1202:27346043,33178059:-358266 -) -(1,1202:27346043,33178059:358266,414482,115847 -k1,1202:27346043,33178059:3277 -h1,1202:27701032,33178059:0,411205,112570 -) -k1,1203:32583029,33178059:4705050 -g1,1203:32583029,33178059 -) -(1,1205:6630773,34019547:25952256,505283,134348 -h1,1204:6630773,34019547:983040,0,0 -k1,1204:9590260,34019547:317075 -k1,1204:11288179,34019547:317075 -k1,1204:12775727,34019547:317075 -k1,1204:16757575,34019547:317075 -k1,1204:18623266,34019547:317075 -k1,1204:22742084,34019547:317075 -k1,1204:24050719,34019547:317075 -k1,1204:26363365,34019547:317075 -k1,1204:28343088,34019547:317075 -k1,1204:29276201,34019547:317075 -k1,1204:30612361,34019547:317075 -k1,1204:32583029,34019547:0 -) -(1,1205:6630773,34861035:25952256,513147,134348 -k1,1204:8854235,34861035:194467 -k1,1204:10240148,34861035:194468 -k1,1204:11720431,34861035:194467 -k1,1204:12933984,34861035:194468 -k1,1204:14285161,34861035:194467 -k1,1204:16521730,34861035:194467 -k1,1204:18795000,34861035:194468 -k1,1204:21848803,34861035:194467 -k1,1204:22574767,34861035:194467 -k1,1204:23125095,34861035:194468 -k1,1204:24420567,34861035:194467 -k1,1204:26890445,34861035:194468 -k1,1204:27744204,34861035:194467 -k1,1204:28957756,34861035:194467 -k1,1204:29567062,34861035:194463 -k1,1204:32583029,34861035:0 -) -(1,1205:6630773,35702523:25952256,513147,134348 -g1,1204:7879889,35702523 -g1,1204:9098203,35702523 -g1,1204:10457419,35702523 -g1,1204:11466018,35702523 -g1,1204:13163400,35702523 -h1,1204:13960318,35702523:0,0,0 -g1,1204:14159547,35702523 -g1,1204:15306427,35702523 -g1,1204:16276359,35702523 -g1,1204:19165186,35702523 -g1,1204:23096690,35702523 -g1,1204:23955211,35702523 -g1,1204:26132317,35702523 -k1,1205:32583029,35702523:3417706 -g1,1205:32583029,35702523 -) -v1,1207:6630773,36683273:0,393216,0 -(1,1235:6630773,45510161:25952256,9220104,196608 -g1,1235:6630773,45510161 -g1,1235:6630773,45510161 -g1,1235:6434165,45510161 -(1,1235:6434165,45510161:0,9220104,196608 -r1,1239:32779637,45510161:26345472,9416712,196608 -k1,1235:6434165,45510161:-26345472 -) -(1,1235:6434165,45510161:26345472,9220104,196608 -[1,1235:6630773,45510161:25952256,9023496,0 -(1,1209:6630773,36890891:25952256,404226,101187 -(1,1208:6630773,36890891:0,0,0 -g1,1208:6630773,36890891 -g1,1208:6630773,36890891 -g1,1208:6303093,36890891 -(1,1208:6303093,36890891:0,0,0 -) -g1,1208:6630773,36890891 -) -g1,1209:8211502,36890891 -g1,1209:9159940,36890891 -g1,1209:11372961,36890891 -h1,1209:12005253,36890891:0,0,0 -k1,1209:32583029,36890891:20577776 -g1,1209:32583029,36890891 -) -(1,1210:6630773,37557069:25952256,388497,9436 -h1,1210:6630773,37557069:0,0,0 -h1,1210:7895356,37557069:0,0,0 -k1,1210:32583028,37557069:24687672 -g1,1210:32583028,37557069 -) -(1,1214:6630773,38117537:25952256,404226,76021 -(1,1212:6630773,38117537:0,0,0 -g1,1212:6630773,38117537 -g1,1212:6630773,38117537 -g1,1212:6303093,38117537 -(1,1212:6303093,38117537:0,0,0 -) -g1,1212:6630773,38117537 -) -g1,1214:7579210,38117537 -g1,1214:8843793,38117537 -g1,1214:9476085,38117537 -g1,1214:10108377,38117537 -g1,1214:10740669,38117537 -g1,1214:11372961,38117537 -g1,1214:12005253,38117537 -h1,1214:12321399,38117537:0,0,0 -k1,1214:32583029,38117537:20261630 -g1,1214:32583029,38117537 -) -(1,1216:6630773,39333365:25952256,388497,9436 -(1,1215:6630773,39333365:0,0,0 -g1,1215:6630773,39333365 -g1,1215:6630773,39333365 -g1,1215:6303093,39333365 -(1,1215:6303093,39333365:0,0,0 -) -g1,1215:6630773,39333365 -) -g1,1216:8211502,39333365 -g1,1216:8843794,39333365 -h1,1216:9792232,39333365:0,0,0 -k1,1216:32583028,39333365:22790796 -g1,1216:32583028,39333365 -) -(1,1220:6630773,39893833:25952256,404226,76021 -(1,1218:6630773,39893833:0,0,0 -g1,1218:6630773,39893833 -g1,1218:6630773,39893833 -g1,1218:6303093,39893833 -(1,1218:6303093,39893833:0,0,0 -) -g1,1218:6630773,39893833 -) -g1,1220:7579210,39893833 -g1,1220:8843793,39893833 -g1,1220:9476085,39893833 -g1,1220:10108377,39893833 -g1,1220:10740669,39893833 -g1,1220:11372961,39893833 -g1,1220:12005253,39893833 -h1,1220:12321399,39893833:0,0,0 -k1,1220:32583029,39893833:20261630 -g1,1220:32583029,39893833 -) -(1,1222:6630773,41109660:25952256,388497,9436 -(1,1221:6630773,41109660:0,0,0 -g1,1221:6630773,41109660 -g1,1221:6630773,41109660 -g1,1221:6303093,41109660 -(1,1221:6303093,41109660:0,0,0 -) -g1,1221:6630773,41109660 -) -g1,1222:8211502,41109660 -g1,1222:8843794,41109660 -h1,1222:9792232,41109660:0,0,0 -k1,1222:32583028,41109660:22790796 -g1,1222:32583028,41109660 -) -(1,1226:6630773,41670128:25952256,404226,76021 -(1,1224:6630773,41670128:0,0,0 -g1,1224:6630773,41670128 -g1,1224:6630773,41670128 -g1,1224:6303093,41670128 -(1,1224:6303093,41670128:0,0,0 -) -g1,1224:6630773,41670128 -) -g1,1226:7579210,41670128 -g1,1226:8843793,41670128 -g1,1226:9476085,41670128 -g1,1226:10108377,41670128 -g1,1226:10740669,41670128 -g1,1226:11372961,41670128 -g1,1226:12005253,41670128 -h1,1226:12321399,41670128:0,0,0 -k1,1226:32583029,41670128:20261630 -g1,1226:32583029,41670128 -) -(1,1228:6630773,42885956:25952256,388497,9436 -(1,1227:6630773,42885956:0,0,0 -g1,1227:6630773,42885956 -g1,1227:6630773,42885956 -g1,1227:6303093,42885956 -(1,1227:6303093,42885956:0,0,0 -) -g1,1227:6630773,42885956 -) -g1,1228:8211502,42885956 -g1,1228:8843794,42885956 -h1,1228:9792232,42885956:0,0,0 -k1,1228:32583028,42885956:22790796 -g1,1228:32583028,42885956 -) -(1,1232:6630773,44101784:25952256,410518,107478 -k1,1232:7581097,44101784:318033 -k1,1232:10112150,44101784:318033 -k1,1232:11062474,44101784:318033 -k1,1232:12645090,44101784:318033 -k1,1232:13279269,44101784:318033 -k1,1232:14861885,44101784:318033 -k1,1232:17076792,44101784:318033 -k1,1232:19291700,44101784:318034 -k1,1232:21506607,44101784:318033 -k1,1232:22456931,44101784:318033 -k1,1232:23723401,44101784:318033 -k1,1232:24357580,44101784:318033 -k1,1232:27204778,44101784:318033 -k1,1232:28155102,44101784:318033 -k1,1232:30686155,44101784:318033 -k1,1232:32583029,44101784:0 -) -(1,1232:6630773,44767962:25952256,404226,107478 -k1,1232:32583029,44767962:24055382 -g1,1232:32583029,44767962 -) -(1,1234:6630773,45434140:25952256,404226,76021 -(1,1232:6630773,45434140:0,0,0 -g1,1232:6630773,45434140 -g1,1232:6630773,45434140 -g1,1232:6303093,45434140 -(1,1232:6303093,45434140:0,0,0 -) -g1,1232:6630773,45434140 -) -g1,1234:7579210,45434140 -g1,1234:8843793,45434140 -g1,1234:9476085,45434140 -g1,1234:10108377,45434140 -g1,1234:10740669,45434140 -g1,1234:11372961,45434140 -g1,1234:12005253,45434140 -h1,1234:12321399,45434140:0,0,0 -k1,1234:32583029,45434140:20261630 -g1,1234:32583029,45434140 -) -] -) -g1,1235:32583029,45510161 -g1,1235:6630773,45510161 -g1,1235:6630773,45510161 -g1,1235:32583029,45510161 -g1,1235:32583029,45510161 -) -h1,1235:6630773,45706769:0,0,0 -] -(1,1239:32583029,45706769:0,0,0 -g1,1239:32583029,45706769 -) -) -] -(1,1239:6630773,47279633:25952256,0,0 -h1,1239:6630773,47279633:25952256,0,0 -) -] -(1,1239:4262630,4025873:0,0,0 -[1,1239:-473656,4025873:0,0,0 -(1,1239:-473656,-710413:0,0,0 -(1,1239:-473656,-710413:0,0,0 -g1,1239:-473656,-710413 -) -g1,1239:-473656,-710413 -) -] +g1,1812:-473656,-710413 ) ] -!25718 -}45 -Input:316:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:317:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:318:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:319:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:320:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:321:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!569 -{46 -[1,1367:4262630,47279633:28320399,43253760,0 -(1,1367:4262630,4025873:0,0,0 -[1,1367:-473656,4025873:0,0,0 -(1,1367:-473656,-710413:0,0,0 -(1,1367:-473656,-644877:0,0,0 -k1,1367:-473656,-644877:-65536 ) -(1,1367:-473656,4736287:0,0,0 -k1,1367:-473656,4736287:5209943 +] +!26737 +}50 +Input:399:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:400:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:401:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:402:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!383 +{51 +[1,1815:4262630,47279633:28320399,43253760,0 +(1,1815:4262630,4025873:0,0,0 +[1,1815:-473656,4025873:0,0,0 +(1,1815:-473656,-710413:0,0,0 +(1,1815:-473656,-644877:0,0,0 +k1,1815:-473656,-644877:-65536 +) +(1,1815:-473656,4736287:0,0,0 +k1,1815:-473656,4736287:5209943 ) -g1,1367:-473656,-710413 +g1,1815:-473656,-710413 ) ] ) -[1,1367:6630773,47279633:25952256,43253760,0 -[1,1367:6630773,4812305:25952256,786432,0 -(1,1367:6630773,4812305:25952256,505283,11795 -(1,1367:6630773,4812305:25952256,505283,11795 -g1,1367:3078558,4812305 -[1,1367:3078558,4812305:0,0,0 -(1,1367:3078558,2439708:0,1703936,0 -k1,1367:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,1367:2537886,2439708:1179648,16384,0 +[1,1815:6630773,47279633:25952256,43253760,0 +[1,1815:6630773,4812305:25952256,786432,0 +(1,1815:6630773,4812305:25952256,505283,11795 +(1,1815:6630773,4812305:25952256,505283,11795 +g1,1815:3078558,4812305 +[1,1815:3078558,4812305:0,0,0 +(1,1815:3078558,2439708:0,1703936,0 +k1,1815:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,1815:2537886,2439708:1179648,16384,0 ) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,1367:3078558,1915420:16384,1179648,0 +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,1815:3078558,1915420:16384,1179648,0 ) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) ] ) ) ) ] -[1,1367:3078558,4812305:0,0,0 -(1,1367:3078558,2439708:0,1703936,0 -g1,1367:29030814,2439708 -g1,1367:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,1367:36151628,1915420:16384,1179648,0 +[1,1815:3078558,4812305:0,0,0 +(1,1815:3078558,2439708:0,1703936,0 +g1,1815:29030814,2439708 +g1,1815:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,1815:36151628,1915420:16384,1179648,0 ) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) ] ) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,1367:37855564,2439708:1179648,16384,0 +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,1815:37855564,2439708:1179648,16384,0 ) ) -k1,1367:3078556,2439708:-34777008 +k1,1815:3078556,2439708:-34777008 ) ] -[1,1367:3078558,4812305:0,0,0 -(1,1367:3078558,49800853:0,16384,2228224 -k1,1367:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,1367:2537886,49800853:1179648,16384,0 +[1,1815:3078558,4812305:0,0,0 +(1,1815:3078558,49800853:0,16384,2228224 +k1,1815:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,1815:2537886,49800853:1179648,16384,0 ) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,1367:3078558,51504789:16384,1179648,0 +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,1815:3078558,51504789:16384,1179648,0 ) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) ] ) ) -) +) ] -[1,1367:3078558,4812305:0,0,0 -(1,1367:3078558,49800853:0,16384,2228224 -g1,1367:29030814,49800853 -g1,1367:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,1367:36151628,51504789:16384,1179648,0 -) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 -) -] -) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,1367:37855564,49800853:1179648,16384,0 +[1,1815:3078558,4812305:0,0,0 +(1,1815:3078558,49800853:0,16384,2228224 +g1,1815:29030814,49800853 +g1,1815:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,1815:36151628,51504789:16384,1179648,0 ) +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 ) -k1,1367:3078556,49800853:-34777008 -) -] -g1,1367:6630773,4812305 -g1,1367:6630773,4812305 -g1,1367:9516978,4812305 -g1,1367:11710468,4812305 -g1,1367:13120147,4812305 -g1,1367:16560787,4812305 -k1,1367:31786111,4812305:15225324 -) -) -] -[1,1367:6630773,45706769:25952256,40108032,0 -(1,1367:6630773,45706769:25952256,40108032,0 -(1,1367:6630773,45706769:0,0,0 -g1,1367:6630773,45706769 -) -[1,1367:6630773,45706769:25952256,40108032,0 -v1,1239:6630773,6254097:0,393216,0 -(1,1240:6630773,8503959:25952256,2643078,0 -g1,1240:6630773,8503959 -g1,1240:6303093,8503959 -r1,1367:6401397,8503959:98304,2643078,0 -g1,1240:6600626,8503959 -g1,1240:6797234,8503959 -[1,1240:6797234,8503959:25785795,2643078,0 -(1,1240:6797234,6686635:25785795,825754,196608 -(1,1239:6797234,6686635:0,825754,196608 -r1,1367:7890375,6686635:1093141,1022362,196608 -k1,1239:6797234,6686635:-1093141 -) -(1,1239:6797234,6686635:1093141,825754,196608 -) -k1,1239:8050938,6686635:160563 -k1,1239:9368867,6686635:327680 -k1,1239:11580707,6686635:160563 -k1,1239:14016680,6686635:160563 -k1,1239:16737735,6686635:160563 -k1,1239:17557590,6686635:160563 -k1,1239:18737238,6686635:160563 -k1,1239:22414464,6686635:160564 -k1,1239:23191065,6686635:160563 -k1,1239:24370713,6686635:160563 -k1,1239:26027463,6686635:160563 -k1,1239:28158694,6686635:160563 -k1,1239:30174581,6686635:160563 -k1,1239:30986572,6686635:160563 -k1,1239:32583029,6686635:0 -) -(1,1240:6797234,7528123:25785795,513147,134348 -k1,1239:8048895,7528123:185390 -k1,1239:9932323,7528123:185390 -k1,1239:10473572,7528123:185389 -k1,1239:13229284,7528123:185390 -k1,1239:13946171,7528123:185390 -k1,1239:15755543,7528123:185390 -k1,1239:17132377,7528123:185389 -k1,1239:17783728,7528123:185390 -k1,1239:18585156,7528123:185390 -k1,1239:19902353,7528123:185390 -k1,1239:21454823,7528123:185389 -k1,1239:22410916,7528123:185390 -k1,1239:24203249,7528123:185390 -k1,1239:24920136,7528123:185390 -k1,1239:28004182,7528123:185389 -k1,1239:30719262,7528123:185390 -k1,1239:31563944,7528123:185390 -k1,1239:32583029,7528123:0 -) -(1,1240:6797234,8369611:25785795,513147,134348 -g1,1239:9009729,8369611 -g1,1239:9868250,8369611 -g1,1239:11086564,8369611 -k1,1240:32583029,8369611:18350082 -g1,1240:32583029,8369611 -) -] -g1,1240:32583029,8503959 -) -h1,1240:6630773,8503959:0,0,0 -v1,1243:6630773,9660019:0,393216,0 -(1,1244:6630773,17788343:25952256,8521540,0 -g1,1244:6630773,17788343 -g1,1244:6303093,17788343 -r1,1367:6401397,17788343:98304,8521540,0 -g1,1244:6600626,17788343 -g1,1244:6797234,17788343 -[1,1244:6797234,17788343:25785795,8521540,0 -(1,1244:6797234,10080603:25785795,813800,267386 -(1,1243:6797234,10080603:0,813800,267386 -r1,1367:8134168,10080603:1336934,1081186,267386 -k1,1243:6797234,10080603:-1336934 -) -(1,1243:6797234,10080603:1336934,813800,267386 -) -k1,1243:8393594,10080603:259426 -k1,1243:8721274,10080603:327680 -k1,1243:10526040,10080603:259427 -k1,1243:13811263,10080603:259426 -k1,1243:16452267,10080603:259426 -k1,1243:17327732,10080603:259427 -k1,1243:19021086,10080603:259426 -k1,1243:19695295,10080603:259366 -k1,1243:21718295,10080603:259426 -k1,1243:24837058,10080603:259427 -k1,1243:25747912,10080603:259426 -k1,1243:28315516,10080603:259426 -k1,1243:30780230,10080603:259427 -k1,1243:31725818,10080603:259426 -k1,1244:32583029,10080603:0 -) -(1,1244:6797234,10922091:25785795,513147,134348 -k1,1243:9499666,10922091:274323 -k1,1243:10425416,10922091:274322 -k1,1243:11312501,10922091:274323 -k1,1243:13082355,10922091:274322 -k1,1243:15048818,10922091:274323 -k1,1243:15982433,10922091:274323 -k1,1243:17765394,10922091:274322 -k1,1243:21824421,10922091:274323 -k1,1243:23881978,10922091:274322 -k1,1243:27015637,10922091:274323 -k1,1243:27821456,10922091:274322 -k1,1243:31563944,10922091:274323 -k1,1243:32583029,10922091:0 -) -(1,1244:6797234,11763579:25785795,505283,134348 -k1,1243:10335850,11763579:175964 -k1,1243:13632639,11763579:175965 -k1,1243:16709226,11763579:175964 -k1,1243:17568075,11763579:175964 -k1,1243:19681283,11763579:175964 -k1,1243:20848808,11763579:175965 -k1,1243:24305504,11763579:175964 -k1,1243:25875419,11763579:175964 -k1,1243:27795297,11763579:175965 -k1,1243:29141734,11763579:175964 -k1,1243:32583029,11763579:0 -) -(1,1244:6797234,12605067:25785795,513147,134348 -k1,1243:7686175,12605067:272903 -k1,1243:8978163,12605067:272903 -k1,1243:12901420,12605067:272902 -k1,1243:15203318,12605067:272903 -k1,1243:18410923,12605067:272903 -k1,1243:19149787,12605067:272903 -k1,1243:20614134,12605067:272902 -k1,1243:22217418,12605067:272903 -k1,1243:25349657,12605067:272903 -k1,1243:26154057,12605067:272903 -k1,1243:28798707,12605067:272902 -k1,1243:31773659,12605067:272903 -k1,1243:32583029,12605067:0 -) -(1,1244:6797234,13446555:25785795,513147,126483 -k1,1243:8320400,13446555:192785 -k1,1243:11538982,13446555:192785 -k1,1243:13206982,13446555:192785 -k1,1243:14909717,13446555:192785 -k1,1243:17657751,13446555:192785 -k1,1243:19618697,13446555:192785 -k1,1243:21466266,13446555:192785 -k1,1243:22190548,13446555:192785 -k1,1243:25382916,13446555:192785 -k1,1243:28509748,13446555:192785 -k1,1243:29774702,13446555:192785 -k1,1243:31033758,13446555:192785 -k1,1243:32583029,13446555:0 -) -(1,1244:6797234,14288043:25785795,513147,134348 -k1,1243:7590219,14288043:176947 -k1,1243:8786252,14288043:176948 -k1,1243:10330280,14288043:176947 -k1,1243:11166519,14288043:176947 -k1,1243:14369263,14288043:176947 -k1,1243:15737656,14288043:176948 -k1,1243:18991518,14288043:176947 -k1,1243:21550043,14288043:176947 -k1,1243:22343028,14288043:176947 -k1,1243:26249630,14288043:176948 -k1,1243:29498905,14288043:176947 -k1,1243:32583029,14288043:0 -) -(1,1244:6797234,15129531:25785795,505283,134348 -k1,1243:8048435,15129531:209179 -k1,1243:11092701,15129531:209179 -k1,1243:13882032,15129531:209179 -k1,1243:16253243,15129531:209179 -k1,1243:17653867,15129531:209179 -k1,1243:19555187,15129531:209180 -k1,1243:21466336,15129531:209179 -k1,1243:24585969,15129531:209179 -k1,1243:25411186,15129531:209179 -k1,1243:26639450,15129531:209179 -k1,1243:30056616,15129531:209179 -k1,1243:32583029,15129531:0 -) -(1,1244:6797234,15971019:25785795,513147,134348 -k1,1243:9816178,15971019:159608 -k1,1243:11047956,15971019:159609 -k1,1243:12899704,15971019:159608 -k1,1243:16110013,15971019:159608 -k1,1243:17967004,15971019:159609 -k1,1243:19411118,15971019:159608 -k1,1243:21701301,15971019:159608 -k1,1243:22216770,15971019:159609 -k1,1243:24946700,15971019:159608 -k1,1243:25722346,15971019:159608 -k1,1243:27315883,15971019:159609 -k1,1243:27890295,15971019:159569 -k1,1243:31249371,15971019:159608 -k1,1244:32583029,15971019:0 -) -(1,1244:6797234,16812507:25785795,513147,134348 -k1,1243:7993126,16812507:185982 -k1,1243:8949811,16812507:185982 -k1,1243:10742735,16812507:185981 -k1,1243:11544755,16812507:185982 -k1,1243:14756534,16812507:185982 -k1,1243:17324094,16812507:185982 -k1,1243:18126113,16812507:185981 -k1,1243:20008822,16812507:185982 -k1,1243:23278928,16812507:185982 -k1,1243:24514797,16812507:185982 -k1,1243:26979466,16812507:185982 -h1,1243:28522184,16812507:0,0,0 -k1,1243:28708165,16812507:185981 -k1,1243:29703517,16812507:185982 -k1,1243:31387652,16812507:185982 -h1,1243:32583029,16812507:0,0,0 -k1,1243:32583029,16812507:0 -) -(1,1244:6797234,17653995:25785795,505283,134348 -g1,1243:8819019,17653995 -g1,1243:11598400,17653995 -k1,1244:32583030,17653995:18648928 -g1,1244:32583030,17653995 -) -] -g1,1244:32583029,17788343 -) -h1,1244:6630773,17788343:0,0,0 -v1,1247:6630773,18944403:0,393216,0 -(1,1367:6630773,45706769:25952256,27155582,0 -g1,1367:6630773,45706769 -g1,1367:6303093,45706769 -r1,1367:6401397,45706769:98304,27155582,0 -g1,1367:6600626,45706769 -g1,1367:6797234,45706769 -[1,1367:6797234,45706769:25785795,27155582,0 -(1,1248:6797234,19306476:25785795,755289,196608 -(1,1247:6797234,19306476:0,755289,196608 -r1,1367:8134168,19306476:1336934,951897,196608 -k1,1247:6797234,19306476:-1336934 -) -(1,1247:6797234,19306476:1336934,755289,196608 -) -k1,1247:8386903,19306476:252735 -k1,1247:8714583,19306476:327680 -k1,1247:9785207,19306476:252735 -k1,1247:13455645,19306476:252735 -k1,1247:15737375,19306476:252735 -k1,1247:16345970,19306476:252735 -k1,1247:18576582,19306476:252735 -k1,1247:19933599,19306476:252735 -k1,1247:21661548,19306476:252734 -k1,1247:22270143,19306476:252735 -k1,1247:24536144,19306476:252735 -k1,1247:25448171,19306476:252735 -k1,1247:27121071,19306476:252735 -k1,1247:28056691,19306476:252735 -k1,1247:29959623,19306476:252735 -k1,1247:32583029,19306476:0 -) -(1,1248:6797234,20147964:25785795,513147,134348 -k1,1247:9130753,20147964:149204 -k1,1247:11689059,20147964:149203 -k1,1247:12497555,20147964:149204 -k1,1247:14660024,20147964:149203 -k1,1247:16229393,20147964:149204 -k1,1247:17715531,20147964:149204 -k1,1247:19509688,20147964:149203 -k1,1247:20271654,20147964:149204 -k1,1247:21726990,20147964:149203 -k1,1247:23453646,20147964:149204 -k1,1247:25227488,20147964:149204 -k1,1247:27855918,20147964:149203 -k1,1247:29077291,20147964:149204 -k1,1247:29842532,20147964:149203 -k1,1247:31202841,20147964:149204 -k1,1247:32583029,20147964:0 -) -(1,1248:6797234,20989452:25785795,513147,134348 -k1,1247:7978586,20989452:189792 -k1,1247:9522352,20989452:189792 -k1,1247:11863036,20989452:189792 -k1,1247:13610620,20989452:189793 -k1,1247:15482066,20989452:189792 -k1,1247:16690943,20989452:189792 -k1,1247:19682399,20989452:189792 -k1,1247:20531483,20989452:189792 -k1,1247:21830800,20989452:189792 -k1,1247:24029270,20989452:189792 -k1,1247:24901947,20989452:189792 -k1,1247:27863258,20989452:189793 -k1,1247:28704478,20989452:189792 -k1,1247:30009693,20989452:189792 -k1,1247:31896867,20989452:189792 -k1,1247:32583029,20989452:0 -) -(1,1248:6797234,21830940:25785795,513147,134348 -k1,1247:9281517,21830940:205596 -k1,1247:11358165,21830940:205595 -k1,1247:13449232,21830940:205596 -k1,1247:14270866,21830940:205596 -k1,1247:15495547,21830940:205596 -k1,1247:18230832,21830940:205595 -k1,1247:19095720,21830940:205596 -k1,1247:21609494,21830940:205596 -k1,1247:22474381,21830940:205595 -k1,1247:24693243,21830940:205596 -k1,1247:26319004,21830940:205596 -k1,1247:28480850,21830940:205596 -k1,1247:30978239,21830940:205595 -k1,1247:31835263,21830940:205596 -k1,1247:32583029,21830940:0 -) -(1,1248:6797234,22672428:25785795,513147,126483 -k1,1247:9286112,22672428:215434 -k1,1247:10187709,22672428:215435 -k1,1247:12597288,22672428:215434 -k1,1247:14683776,22672428:215435 -k1,1247:19058125,22672428:215434 -k1,1247:20221210,22672428:215434 -k1,1247:20851471,22672428:215418 -k1,1247:23299718,22672428:215435 -k1,1247:24661377,22672428:215434 -(1,1247:24661377,22672428:0,452978,115847 -r1,1367:27833337,22672428:3171960,568825,115847 -k1,1247:24661377,22672428:-3171960 -) -(1,1247:24661377,22672428:3171960,452978,115847 -k1,1247:24661377,22672428:3277 -h1,1247:27830060,22672428:0,411205,112570 -) -k1,1247:28048772,22672428:215435 -k1,1247:30274851,22672428:215434 -k1,1247:32583029,22672428:0 -) -(1,1248:6797234,23513916:25785795,513147,134348 -g1,1247:7655755,23513916 -g1,1247:8210844,23513916 -g1,1247:10423339,23513916 -g1,1247:12317329,23513916 -g1,1247:13278086,23513916 -g1,1247:14985954,23513916 -g1,1247:16491316,23513916 -g1,1247:19936543,23513916 -g1,1247:22021243,23513916 -g1,1247:24816353,23513916 -g1,1247:25667010,23513916 -k1,1248:32583029,23513916:5322183 -g1,1248:32583029,23513916 -) -v1,1250:6797234,24645508:0,393216,0 -(1,1264:6797234,28249219:25785795,3996927,196608 -g1,1264:6797234,28249219 -g1,1264:6797234,28249219 -g1,1264:6600626,28249219 -(1,1264:6600626,28249219:0,3996927,196608 -r1,1367:32779637,28249219:26179011,4193535,196608 -k1,1264:6600625,28249219:-26179012 -) -(1,1264:6600626,28249219:26179011,3996927,196608 -[1,1264:6797234,28249219:25785795,3800319,0 -(1,1252:6797234,24853126:25785795,404226,107478 -(1,1251:6797234,24853126:0,0,0 -g1,1251:6797234,24853126 -g1,1251:6797234,24853126 -g1,1251:6469554,24853126 -(1,1251:6469554,24853126:0,0,0 -) -g1,1251:6797234,24853126 -) -g1,1252:8377963,24853126 -g1,1252:9326401,24853126 -g1,1252:14068587,24853126 -g1,1252:14700879,24853126 -g1,1252:15649317,24853126 -g1,1252:16281609,24853126 -g1,1252:18178483,24853126 -k1,1252:18178483,24853126:14156 -h1,1252:20721804,24853126:0,0,0 -k1,1252:32583029,24853126:11861225 -g1,1252:32583029,24853126 -) -(1,1253:6797234,25519304:25785795,388497,9436 -h1,1253:6797234,25519304:0,0,0 -h1,1253:8061817,25519304:0,0,0 -k1,1253:32583029,25519304:24521212 -g1,1253:32583029,25519304 -) -(1,1257:6797234,26185482:25785795,404226,76021 -(1,1255:6797234,26185482:0,0,0 -g1,1255:6797234,26185482 -g1,1255:6797234,26185482 -g1,1255:6469554,26185482 -(1,1255:6469554,26185482:0,0,0 -) -g1,1255:6797234,26185482 -) -g1,1257:7745671,26185482 -h1,1257:10907128,26185482:0,0,0 -k1,1257:32583028,26185482:21675900 -g1,1257:32583028,26185482 -) -(1,1259:6797234,27507020:25785795,404226,107478 -(1,1258:6797234,27507020:0,0,0 -g1,1258:6797234,27507020 -g1,1258:6797234,27507020 -g1,1258:6469554,27507020 -(1,1258:6469554,27507020:0,0,0 -) -g1,1258:6797234,27507020 -) -k1,1259:6797234,27507020:0 -h1,1259:10590982,27507020:0,0,0 -k1,1259:32583030,27507020:21992048 -g1,1259:32583030,27507020 -) -(1,1263:6797234,28173198:25785795,404226,76021 -(1,1261:6797234,28173198:0,0,0 -g1,1261:6797234,28173198 -g1,1261:6797234,28173198 -g1,1261:6469554,28173198 -(1,1261:6469554,28173198:0,0,0 -) -g1,1261:6797234,28173198 -) -g1,1263:7745671,28173198 -g1,1263:9010254,28173198 -h1,1263:9326400,28173198:0,0,0 -k1,1263:32583028,28173198:23256628 -g1,1263:32583028,28173198 -) -] -) -g1,1264:32583029,28249219 -g1,1264:6797234,28249219 -g1,1264:6797234,28249219 -g1,1264:32583029,28249219 -g1,1264:32583029,28249219 -) -h1,1264:6797234,28445827:0,0,0 -v1,1268:6797234,30042832:0,393216,0 -(1,1275:6797234,30998941:25785795,1349325,196608 -g1,1275:6797234,30998941 -g1,1275:6797234,30998941 -g1,1275:6600626,30998941 -(1,1275:6600626,30998941:0,1349325,196608 -r1,1367:32779637,30998941:26179011,1545933,196608 -k1,1275:6600625,30998941:-26179012 -) -(1,1275:6600626,30998941:26179011,1349325,196608 -[1,1275:6797234,30998941:25785795,1152717,0 -(1,1270:6797234,30256742:25785795,410518,107478 -(1,1269:6797234,30256742:0,0,0 -g1,1269:6797234,30256742 -g1,1269:6797234,30256742 -g1,1269:6469554,30256742 -(1,1269:6469554,30256742:0,0,0 -) -g1,1269:6797234,30256742 -) -k1,1270:6797234,30256742:0 -g1,1270:9958691,30256742 -g1,1270:10590983,30256742 -g1,1270:13120149,30256742 -k1,1270:13120149,30256742:14156 -h1,1270:15663470,30256742:0,0,0 -k1,1270:32583030,30256742:16919560 -g1,1270:32583030,30256742 -) -(1,1274:6797234,30922920:25785795,404226,76021 -(1,1272:6797234,30922920:0,0,0 -g1,1272:6797234,30922920 -g1,1272:6797234,30922920 -g1,1272:6469554,30922920 -(1,1272:6469554,30922920:0,0,0 -) -g1,1272:6797234,30922920 -) -g1,1274:7745671,30922920 -h1,1274:10907128,30922920:0,0,0 -k1,1274:32583028,30922920:21675900 -g1,1274:32583028,30922920 -) -] -) -g1,1275:32583029,30998941 -g1,1275:6797234,30998941 -g1,1275:6797234,30998941 -g1,1275:32583029,30998941 -g1,1275:32583029,30998941 -) -h1,1275:6797234,31195549:0,0,0 -(1,1279:6797234,32502450:25785795,513147,134348 -h1,1278:6797234,32502450:983040,0,0 -k1,1278:10452722,32502450:263345 -k1,1278:11375360,32502450:263346 -k1,1278:13651971,32502450:263345 -k1,1278:15509153,32502450:263346 -k1,1278:17995480,32502450:263346 -k1,1278:18874863,32502450:263345 -k1,1278:20739908,32502450:263345 -k1,1278:22874307,32502450:263346 -k1,1278:23823815,32502450:263346 -k1,1278:28824102,32502450:263345 -k1,1278:30467636,32502450:263346 -k1,1278:31835263,32502450:263345 -k1,1278:32583029,32502450:0 -) -(1,1279:6797234,33343938:25785795,505283,7863 -g1,1278:11228778,33343938 -g1,1278:12114169,33343938 -g1,1278:14388923,33343938 -k1,1279:32583029,33343938:16622553 -g1,1279:32583029,33343938 -) -v1,1281:6797234,34475530:0,393216,0 -(1,1294:6797234,37413063:25785795,3330749,196608 -g1,1294:6797234,37413063 -g1,1294:6797234,37413063 -g1,1294:6600626,37413063 -(1,1294:6600626,37413063:0,3330749,196608 -r1,1367:32779637,37413063:26179011,3527357,196608 -k1,1294:6600625,37413063:-26179012 -) -(1,1294:6600626,37413063:26179011,3330749,196608 -[1,1294:6797234,37413063:25785795,3134141,0 -(1,1283:6797234,34683148:25785795,404226,107478 -(1,1282:6797234,34683148:0,0,0 -g1,1282:6797234,34683148 -g1,1282:6797234,34683148 -g1,1282:6469554,34683148 -(1,1282:6469554,34683148:0,0,0 -) -g1,1282:6797234,34683148 -) -k1,1283:6797234,34683148:0 -g1,1283:11539420,34683148 -g1,1283:13436295,34683148 -h1,1283:15333169,34683148:0,0,0 -k1,1283:32583029,34683148:17249860 -g1,1283:32583029,34683148 -) -(1,1287:6797234,35349326:25785795,404226,76021 -(1,1285:6797234,35349326:0,0,0 -g1,1285:6797234,35349326 -g1,1285:6797234,35349326 -g1,1285:6469554,35349326 -(1,1285:6469554,35349326:0,0,0 -) -g1,1285:6797234,35349326 -) -g1,1287:7745671,35349326 -g1,1287:9010254,35349326 -h1,1287:9326400,35349326:0,0,0 -k1,1287:32583028,35349326:23256628 -g1,1287:32583028,35349326 -) -(1,1289:6797234,36670864:25785795,404226,107478 -(1,1288:6797234,36670864:0,0,0 -g1,1288:6797234,36670864 -g1,1288:6797234,36670864 -g1,1288:6469554,36670864 -(1,1288:6469554,36670864:0,0,0 -) -g1,1288:6797234,36670864 -) -k1,1289:6797234,36670864:0 -g1,1289:11539420,36670864 -h1,1289:13436294,36670864:0,0,0 -k1,1289:32583030,36670864:19146736 -g1,1289:32583030,36670864 -) -(1,1293:6797234,37337042:25785795,404226,76021 -(1,1291:6797234,37337042:0,0,0 -g1,1291:6797234,37337042 -g1,1291:6797234,37337042 -g1,1291:6469554,37337042 -(1,1291:6469554,37337042:0,0,0 -) -g1,1291:6797234,37337042 -) -g1,1293:7745671,37337042 -g1,1293:9010254,37337042 -h1,1293:9326400,37337042:0,0,0 -k1,1293:32583028,37337042:23256628 -g1,1293:32583028,37337042 -) -] -) -g1,1294:32583029,37413063 -g1,1294:6797234,37413063 -g1,1294:6797234,37413063 -g1,1294:32583029,37413063 -g1,1294:32583029,37413063 -) -h1,1294:6797234,37609671:0,0,0 -(1,1298:6797234,38916572:25785795,513147,126483 -h1,1297:6797234,38916572:983040,0,0 -k1,1297:9617784,38916572:142094 -k1,1297:12959346,38916572:142094 -k1,1297:14595005,38916572:142093 -k1,1297:15423261,38916572:142094 -k1,1297:16484170,38916572:142094 -k1,1297:18604141,38916572:142094 -k1,1297:21772032,38916572:142094 -k1,1297:23105571,38916572:142094 -k1,1297:26498250,38916572:142093 -k1,1297:27772806,38916572:142094 -k1,1297:29962900,38916572:142094 -k1,1297:32583029,38916572:0 -) -(1,1298:6797234,39758060:25785795,513147,134348 -k1,1297:9257034,39758060:151622 -k1,1297:10067948,39758060:151622 -k1,1297:12232837,39758060:151623 -k1,1297:13804624,39758060:151622 -k1,1297:14642408,39758060:151622 -k1,1297:16334126,39758060:151622 -k1,1297:18367942,39758060:151622 -k1,1297:21520459,39758060:151623 -k1,1297:22957897,39758060:151622 -k1,1297:23465379,39758060:151622 -k1,1297:25594878,39758060:151622 -k1,1297:26405793,39758060:151623 -k1,1297:28570681,39758060:151622 -k1,1297:30316139,39758060:151622 -k1,1297:32583029,39758060:0 -) -(1,1298:6797234,40599548:25785795,505283,134348 -k1,1297:9242887,40599548:174830 -k1,1297:9773577,40599548:174830 -k1,1297:12518729,40599548:174830 -k1,1297:13791286,40599548:174829 -k1,1297:14736819,40599548:174830 -k1,1297:16518592,40599548:174830 -k1,1297:19572419,40599548:174830 -k1,1297:20375084,40599548:174830 -k1,1297:22251884,40599548:174830 -k1,1297:24555322,40599548:174829 -k1,1297:26343648,40599548:174830 -k1,1297:27564433,40599548:174830 -k1,1297:29280670,40599548:174830 -k1,1298:32583029,40599548:0 -) -(1,1298:6797234,41441036:25785795,473825,0 -g1,1297:7612501,41441036 -k1,1298:32583030,41441036:24382016 -g1,1298:32583030,41441036 -) -v1,1300:6797234,42572628:0,393216,0 -(1,1313:6797234,45510161:25785795,3330749,196608 -g1,1313:6797234,45510161 -g1,1313:6797234,45510161 -g1,1313:6600626,45510161 -(1,1313:6600626,45510161:0,3330749,196608 -r1,1367:32779637,45510161:26179011,3527357,196608 -k1,1313:6600625,45510161:-26179012 -) -(1,1313:6600626,45510161:26179011,3330749,196608 -[1,1313:6797234,45510161:25785795,3134141,0 -(1,1302:6797234,42780246:25785795,404226,107478 -(1,1301:6797234,42780246:0,0,0 -g1,1301:6797234,42780246 -g1,1301:6797234,42780246 -g1,1301:6469554,42780246 -(1,1301:6469554,42780246:0,0,0 -) -g1,1301:6797234,42780246 -) -k1,1302:6797234,42780246:0 -k1,1302:6797234,42780246:0 -h1,1302:11539420,42780246:0,0,0 -k1,1302:32583028,42780246:21043608 -g1,1302:32583028,42780246 -) -(1,1306:6797234,43446424:25785795,404226,76021 -(1,1304:6797234,43446424:0,0,0 -g1,1304:6797234,43446424 -g1,1304:6797234,43446424 -g1,1304:6469554,43446424 -(1,1304:6469554,43446424:0,0,0 -) -g1,1304:6797234,43446424 -) -g1,1306:7745671,43446424 -h1,1306:10907128,43446424:0,0,0 -k1,1306:32583028,43446424:21675900 -g1,1306:32583028,43446424 -) -(1,1308:6797234,44767962:25785795,404226,76021 -(1,1307:6797234,44767962:0,0,0 -g1,1307:6797234,44767962 -g1,1307:6797234,44767962 -g1,1307:6469554,44767962 -(1,1307:6469554,44767962:0,0,0 -) -g1,1307:6797234,44767962 -) -g1,1308:7429526,44767962 -g1,1308:8061818,44767962 -k1,1308:8061818,44767962:0 -h1,1308:11223276,44767962:0,0,0 -k1,1308:32583028,44767962:21359752 -g1,1308:32583028,44767962 -) -(1,1312:6797234,45434140:25785795,404226,76021 -(1,1310:6797234,45434140:0,0,0 -g1,1310:6797234,45434140 -g1,1310:6797234,45434140 -g1,1310:6469554,45434140 -(1,1310:6469554,45434140:0,0,0 -) -g1,1310:6797234,45434140 -) -g1,1312:7745671,45434140 -h1,1312:10907128,45434140:0,0,0 -k1,1312:32583028,45434140:21675900 -g1,1312:32583028,45434140 -) -] -) -g1,1313:32583029,45510161 -g1,1313:6797234,45510161 -g1,1313:6797234,45510161 -g1,1313:32583029,45510161 -g1,1313:32583029,45510161 -) -h1,1313:6797234,45706769:0,0,0 ] -g1,1367:32583029,45706769 ) -] -(1,1367:32583029,45706769:0,0,0 -g1,1367:32583029,45706769 +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,1815:37855564,49800853:1179648,16384,0 ) ) -] -(1,1367:6630773,47279633:25952256,0,0 -h1,1367:6630773,47279633:25952256,0,0 +k1,1815:3078556,49800853:-34777008 ) ] -(1,1367:4262630,4025873:0,0,0 -[1,1367:-473656,4025873:0,0,0 -(1,1367:-473656,-710413:0,0,0 -(1,1367:-473656,-710413:0,0,0 -g1,1367:-473656,-710413 +g1,1815:6630773,4812305 +k1,1815:22348274,4812305:14920583 +g1,1815:23970945,4812305 +g1,1815:24793421,4812305 +g1,1815:27528893,4812305 +g1,1815:28938572,4812305 ) -g1,1367:-473656,-710413 ) ] +[1,1815:6630773,45706769:25952256,40108032,0 +(1,1815:6630773,45706769:25952256,40108032,0 +(1,1815:6630773,45706769:0,0,0 +g1,1815:6630773,45706769 ) -] -!23976 -}46 -Input:322:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:323:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:324:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:325:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:326:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:327:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:328:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:329:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:330:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:331:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!941 -{47 -[1,1436:4262630,47279633:28320399,43253760,0 -(1,1436:4262630,4025873:0,0,0 -[1,1436:-473656,4025873:0,0,0 -(1,1436:-473656,-710413:0,0,0 -(1,1436:-473656,-644877:0,0,0 -k1,1436:-473656,-644877:-65536 +[1,1815:6630773,45706769:25952256,40108032,0 +v1,1812:6630773,6254097:0,393216,0 +(1,1812:6630773,40120944:25952256,34260063,0 +g1,1812:6630773,40120944 +g1,1812:6237557,40120944 +r1,1815:6368629,40120944:131072,34260063,0 +g1,1812:6567858,40120944 +g1,1812:6764466,40120944 +[1,1812:6764466,40120944:25818563,34260063,0 +v1,1707:6764466,6254097:0,393216,0 +(1,1720:6764466,9016137:25818563,3155256,196608 +g1,1720:6764466,9016137 +g1,1720:6764466,9016137 +g1,1720:6567858,9016137 +(1,1720:6567858,9016137:0,3155256,196608 +r1,1815:32779637,9016137:26211779,3351864,196608 +k1,1720:6567857,9016137:-26211780 +) +(1,1720:6567858,9016137:26211779,3155256,196608 +[1,1720:6764466,9016137:25818563,2958648,0 +(1,1709:6764466,6488534:25818563,431045,33029 +(1,1708:6764466,6488534:0,0,0 +g1,1708:6764466,6488534 +g1,1708:6764466,6488534 +g1,1708:6436786,6488534 +(1,1708:6436786,6488534:0,0,0 +) +g1,1708:6764466,6488534 +) +h1,1709:13403544,6488534:0,0,0 +k1,1709:32583028,6488534:19179484 +g1,1709:32583028,6488534 +) +(1,1713:6764466,7304461:25818563,424439,79822 +(1,1711:6764466,7304461:0,0,0 +g1,1711:6764466,7304461 +g1,1711:6764466,7304461 +g1,1711:6436786,7304461 +(1,1711:6436786,7304461:0,0,0 +) +g1,1711:6764466,7304461 +) +g1,1713:7760328,7304461 +g1,1713:9088144,7304461 +h1,1713:13403545,7304461:0,0,0 +k1,1713:32583029,7304461:19179484 +g1,1713:32583029,7304461 +) +(1,1715:6764466,8120388:25818563,431045,112852 +(1,1714:6764466,8120388:0,0,0 +g1,1714:6764466,8120388 +g1,1714:6764466,8120388 +g1,1714:6436786,8120388 +(1,1714:6436786,8120388:0,0,0 +) +g1,1714:6764466,8120388 +) +h1,1715:13403544,8120388:0,0,0 +k1,1715:32583028,8120388:19179484 +g1,1715:32583028,8120388 +) +(1,1719:6764466,8936315:25818563,424439,79822 +(1,1717:6764466,8936315:0,0,0 +g1,1717:6764466,8936315 +g1,1717:6764466,8936315 +g1,1717:6436786,8936315 +(1,1717:6436786,8936315:0,0,0 +) +g1,1717:6764466,8936315 +) +g1,1719:7760328,8936315 +g1,1719:9088144,8936315 +h1,1719:12407683,8936315:0,0,0 +k1,1719:32583029,8936315:20175346 +g1,1719:32583029,8936315 +) +] +) +g1,1720:32583029,9016137 +g1,1720:6764466,9016137 +g1,1720:6764466,9016137 +g1,1720:32583029,9016137 +g1,1720:32583029,9016137 +) +h1,1720:6764466,9212745:0,0,0 +(1,1725:6764466,10077825:25818563,513147,126483 +h1,1723:6764466,10077825:983040,0,0 +k1,1723:8846146,10077825:280751 +(1,1723:8846146,10077825:0,452978,122846 +r1,1815:11314683,10077825:2468537,575824,122846 +k1,1723:8846146,10077825:-2468537 +) +(1,1723:8846146,10077825:2468537,452978,122846 +k1,1723:8846146,10077825:3277 +h1,1723:11311406,10077825:0,411205,112570 +) +k1,1723:11595434,10077825:280751 +k1,1723:13886830,10077825:280751 +k1,1723:15159141,10077825:280751 +k1,1723:17478062,10077825:280751 +k1,1723:18374850,10077825:280750 +k1,1723:21343232,10077825:280751 +k1,1723:24255254,10077825:280751 +k1,1723:26996227,10077825:280751 +k1,1723:28537235,10077825:280751 +k1,1723:29477278,10077825:280751 +k1,1723:32583029,10077825:0 +) +(1,1725:6764466,10942905:25818563,513147,134348 +k1,1723:9281483,10942905:202941 +k1,1723:10015921,10942905:202941 +k1,1723:11285133,10942905:202941 +k1,1723:13869653,10942905:202942 +k1,1723:15020245,10942905:202941 +(1,1723:15020245,10942905:0,452978,122846 +r1,1815:17488782,10942905:2468537,575824,122846 +k1,1723:15020245,10942905:-2468537 +) +(1,1723:15020245,10942905:2468537,452978,122846 +k1,1723:15020245,10942905:3277 +h1,1723:17485505,10942905:0,411205,112570 +) +k1,1723:17691723,10942905:202941 +k1,1723:20078979,10942905:202941 +k1,1724:20078979,10942905:0 +k1,1724:20909755,10942905:202941 +k1,1724:21527535,10942905:202937 +k1,1724:22796748,10942905:202942 +k1,1724:23765805,10942905:202941 +k1,1724:27900906,10942905:202941 +(1,1724:27900906,10942905:0,452978,115847 +r1,1815:30369443,10942905:2468537,568825,115847 +k1,1724:27900906,10942905:-2468537 +) +(1,1724:27900906,10942905:2468537,452978,115847 +k1,1724:27900906,10942905:3277 +h1,1724:30366166,10942905:0,411205,112570 +) +k1,1724:30572384,10942905:202941 +k1,1724:32583029,10942905:0 +) +(1,1725:6764466,11807985:25818563,513147,134348 +k1,1724:9225356,11807985:237909 +k1,1724:10079304,11807985:237910 +k1,1724:11336298,11807985:237909 +k1,1724:13227680,11807985:237909 +k1,1724:14877236,11807985:237910 +k1,1724:16804663,11807985:237909 +k1,1724:19916327,11807985:237910 +(1,1724:19916327,11807985:0,452978,115847 +r1,1815:22033152,11807985:2116825,568825,115847 +k1,1724:19916327,11807985:-2116825 +) +(1,1724:19916327,11807985:2116825,452978,115847 +k1,1724:19916327,11807985:3277 +h1,1724:22029875,11807985:0,411205,112570 +) +k1,1724:22271061,11807985:237909 +k1,1724:24519615,11807985:237909 +k1,1724:25749085,11807985:237910 +k1,1724:28025164,11807985:237909 +k1,1724:28949235,11807985:237909 +(1,1724:28949235,11807985:0,459977,115847 +r1,1815:30362636,11807985:1413401,575824,115847 +k1,1724:28949235,11807985:-1413401 +) +(1,1724:28949235,11807985:1413401,459977,115847 +k1,1724:28949235,11807985:3277 +h1,1724:30359359,11807985:0,411205,112570 +) +k1,1724:30600546,11807985:237910 +k1,1724:31521340,11807985:237909 +(1,1724:31521340,11807985:0,459977,115847 +r1,1815:32583029,11807985:1061689,575824,115847 +k1,1724:31521340,11807985:-1061689 +) +(1,1724:31521340,11807985:1061689,459977,115847 +k1,1724:31521340,11807985:3277 +h1,1724:32579752,11807985:0,411205,112570 +) +k1,1724:32583029,11807985:0 +) +(1,1725:6764466,12673065:25818563,513147,134348 +k1,1724:8119882,12673065:163971 +k1,1724:9938637,12673065:163971 +k1,1724:13378753,12673065:163971 +k1,1724:14228886,12673065:163971 +k1,1724:16659746,12673065:163970 +k1,1724:18834362,12673065:163971 +k1,1724:22115225,12673065:163971 +k1,1724:23298281,12673065:163971 +k1,1724:27785662,12673065:163971 +k1,1724:29709275,12673065:163971 +k1,1725:32583029,12673065:0 +) +(1,1725:6764466,13538145:25818563,505283,134348 +(1,1724:6764466,13538145:0,452978,122846 +r1,1815:9233003,13538145:2468537,575824,122846 +k1,1724:6764466,13538145:-2468537 +) +(1,1724:6764466,13538145:2468537,452978,122846 +k1,1724:6764466,13538145:3277 +h1,1724:9229726,13538145:0,411205,112570 +) +g1,1724:9432232,13538145 +g1,1724:11642106,13538145 +g1,1724:14284517,13538145 +(1,1724:14284517,13538145:0,414482,115847 +r1,1815:14994495,13538145:709978,530329,115847 +k1,1724:14284517,13538145:-709978 +) +(1,1724:14284517,13538145:709978,414482,115847 +k1,1724:14284517,13538145:3277 +h1,1724:14991218,13538145:0,411205,112570 +) +g1,1724:15193724,13538145 +g1,1724:16786904,13538145 +g1,1724:17341993,13538145 +k1,1725:32583029,13538145:12497044 +g1,1725:32583029,13538145 +) +v1,1727:6764466,14223000:0,393216,0 +(1,1740:6764466,16961918:25818563,3132134,196608 +g1,1740:6764466,16961918 +g1,1740:6764466,16961918 +g1,1740:6567858,16961918 +(1,1740:6567858,16961918:0,3132134,196608 +r1,1815:32779637,16961918:26211779,3328742,196608 +k1,1740:6567857,16961918:-26211780 +) +(1,1740:6567858,16961918:26211779,3132134,196608 +[1,1740:6764466,16961918:25818563,2935526,0 +(1,1729:6764466,14434315:25818563,407923,9908 +(1,1728:6764466,14434315:0,0,0 +g1,1728:6764466,14434315 +g1,1728:6764466,14434315 +g1,1728:6436786,14434315 +(1,1728:6436786,14434315:0,0,0 +) +g1,1728:6764466,14434315 +) +h1,1729:8756190,14434315:0,0,0 +k1,1729:32583030,14434315:23826840 +g1,1729:32583030,14434315 +) +(1,1733:6764466,15250242:25818563,431045,79822 +(1,1731:6764466,15250242:0,0,0 +g1,1731:6764466,15250242 +g1,1731:6764466,15250242 +g1,1731:6436786,15250242 +(1,1731:6436786,15250242:0,0,0 +) +g1,1731:6764466,15250242 +) +g1,1733:7760328,15250242 +g1,1733:9088144,15250242 +h1,1733:10084006,15250242:0,0,0 +k1,1733:32583030,15250242:22499024 +g1,1733:32583030,15250242 +) +(1,1735:6764466,16066169:25818563,407923,9908 +(1,1734:6764466,16066169:0,0,0 +g1,1734:6764466,16066169 +g1,1734:6764466,16066169 +g1,1734:6436786,16066169 +(1,1734:6436786,16066169:0,0,0 +) +g1,1734:6764466,16066169 +) +k1,1735:6764466,16066169:0 +h1,1735:9088144,16066169:0,0,0 +k1,1735:32583028,16066169:23494884 +g1,1735:32583028,16066169 +) +(1,1739:6764466,16882096:25818563,424439,79822 +(1,1737:6764466,16882096:0,0,0 +g1,1737:6764466,16882096 +g1,1737:6764466,16882096 +g1,1737:6436786,16882096 +(1,1737:6436786,16882096:0,0,0 +) +g1,1737:6764466,16882096 +) +g1,1739:7760328,16882096 +g1,1739:9088144,16882096 +h1,1739:9420098,16882096:0,0,0 +k1,1739:32583030,16882096:23162932 +g1,1739:32583030,16882096 +) +] +) +g1,1740:32583029,16961918 +g1,1740:6764466,16961918 +g1,1740:6764466,16961918 +g1,1740:32583029,16961918 +g1,1740:32583029,16961918 +) +h1,1740:6764466,17158526:0,0,0 +v1,1744:6764466,17843381:0,393216,0 +(1,1751:6764466,18950445:25818563,1500280,196608 +g1,1751:6764466,18950445 +g1,1751:6764466,18950445 +g1,1751:6567858,18950445 +(1,1751:6567858,18950445:0,1500280,196608 +r1,1815:32779637,18950445:26211779,1696888,196608 +k1,1751:6567857,18950445:-26211780 +) +(1,1751:6567858,18950445:26211779,1500280,196608 +[1,1751:6764466,18950445:25818563,1303672,0 +(1,1746:6764466,18054696:25818563,407923,9908 +(1,1745:6764466,18054696:0,0,0 +g1,1745:6764466,18054696 +g1,1745:6764466,18054696 +g1,1745:6436786,18054696 +(1,1745:6436786,18054696:0,0,0 +) +g1,1745:6764466,18054696 +) +h1,1746:10415959,18054696:0,0,0 +k1,1746:32583029,18054696:22167070 +g1,1746:32583029,18054696 +) +(1,1750:6764466,18870623:25818563,424439,79822 +(1,1748:6764466,18870623:0,0,0 +g1,1748:6764466,18870623 +g1,1748:6764466,18870623 +g1,1748:6436786,18870623 +(1,1748:6436786,18870623:0,0,0 +) +g1,1748:6764466,18870623 +) +g1,1750:7760328,18870623 +g1,1750:9088144,18870623 +h1,1750:12407683,18870623:0,0,0 +k1,1750:32583029,18870623:20175346 +g1,1750:32583029,18870623 +) +] +) +g1,1751:32583029,18950445 +g1,1751:6764466,18950445 +g1,1751:6764466,18950445 +g1,1751:32583029,18950445 +g1,1751:32583029,18950445 +) +h1,1751:6764466,19147053:0,0,0 +(1,1755:6764466,20012133:25818563,505283,126483 +h1,1754:6764466,20012133:983040,0,0 +k1,1754:8605976,20012133:230635 +k1,1754:10580525,20012133:230636 +k1,1754:14327822,20012133:230635 +k1,1754:15174495,20012133:230635 +k1,1754:16424216,20012133:230636 +k1,1754:18625519,20012133:230635 +k1,1754:20724585,20012133:230635 +k1,1754:22874114,20012133:230635 +k1,1754:23717512,20012133:230636 +k1,1754:25443679,20012133:230635 +k1,1754:26831024,20012133:230635 +k1,1754:29704072,20012133:230636 +k1,1754:30466204,20012133:230635 +(1,1754:30466204,20012133:0,452978,115847 +r1,1815:32583029,20012133:2116825,568825,115847 +k1,1754:30466204,20012133:-2116825 +) +(1,1754:30466204,20012133:2116825,452978,115847 +k1,1754:30466204,20012133:3277 +h1,1754:32579752,20012133:0,411205,112570 +) +k1,1754:32583029,20012133:0 +) +(1,1755:6764466,20877213:25818563,513147,126483 +k1,1754:7987803,20877213:204252 +(1,1754:7987803,20877213:0,452978,122846 +r1,1815:10456340,20877213:2468537,575824,122846 +k1,1754:7987803,20877213:-2468537 +) +(1,1754:7987803,20877213:2468537,452978,122846 +k1,1754:7987803,20877213:3277 +h1,1754:10453063,20877213:0,411205,112570 +) +k1,1754:10660592,20877213:204252 +k1,1754:13837557,20877213:204252 +k1,1754:15033369,20877213:204252 +k1,1754:18302739,20877213:204252 +k1,1754:19158418,20877213:204251 +(1,1754:19158418,20877213:0,452978,115847 +r1,1815:21275243,20877213:2116825,568825,115847 +k1,1754:19158418,20877213:-2116825 +) +(1,1754:19158418,20877213:2116825,452978,115847 +k1,1754:19158418,20877213:3277 +h1,1754:21271966,20877213:0,411205,112570 +) +k1,1754:21479495,20877213:204252 +k1,1754:23726504,20877213:204252 +k1,1754:28168314,20877213:204252 +k1,1754:28860149,20877213:204247 +k1,1754:31266411,20877213:204252 +k1,1755:32583029,20877213:0 +) +(1,1755:6764466,21742293:25818563,505283,134348 +k1,1754:9248478,21742293:202048 +k1,1754:10943436,21742293:202048 +k1,1754:12211756,21742293:202049 +k1,1754:13766467,21742293:202048 +k1,1754:15631163,21742293:202048 +k1,1754:17531249,21742293:202048 +k1,1754:21137892,21742293:202048 +k1,1754:22331500,21742293:202048 +k1,1754:24692960,21742293:202049 +(1,1754:24692960,21742293:0,452978,122846 +r1,1815:27161497,21742293:2468537,575824,122846 +k1,1754:24692960,21742293:-2468537 +) +(1,1754:24692960,21742293:2468537,452978,122846 +k1,1754:24692960,21742293:3277 +h1,1754:27158220,21742293:0,411205,112570 +) +k1,1754:27363545,21742293:202048 +k1,1754:29749908,21742293:202048 +k1,1754:32583029,21742293:0 +) +(1,1755:6764466,22607373:25818563,513147,134348 +k1,1754:7527068,22607373:146564 +k1,1754:10580809,22607373:146564 +k1,1754:13455637,22607373:146564 +k1,1754:16418284,22607373:146565 +k1,1754:17849354,22607373:146564 +k1,1754:18987478,22607373:146564 +k1,1754:20179997,22607373:146564 +k1,1754:21302392,22607373:146564 +k1,1754:22100384,22607373:146564 +k1,1754:22994715,22607373:146565 +k1,1754:26950887,22607373:146564 +k1,1754:27783613,22607373:146564 +(1,1754:27783613,22607373:0,452978,122846 +r1,1815:30252150,22607373:2468537,575824,122846 +k1,1754:27783613,22607373:-2468537 +) +(1,1754:27783613,22607373:2468537,452978,122846 +k1,1754:27783613,22607373:3277 +h1,1754:30248873,22607373:0,411205,112570 +) +k1,1754:30398714,22607373:146564 +k1,1755:32583029,22607373:0 +k1,1755:32583029,22607373:0 +) +v1,1757:6764466,23292228:0,393216,0 +(1,1786:6764466,32237428:25818563,9338416,196608 +g1,1786:6764466,32237428 +g1,1786:6764466,32237428 +g1,1786:6567858,32237428 +(1,1786:6567858,32237428:0,9338416,196608 +r1,1815:32779637,32237428:26211779,9535024,196608 +k1,1786:6567857,32237428:-26211780 +) +(1,1786:6567858,32237428:26211779,9338416,196608 +[1,1786:6764466,32237428:25818563,9141808,0 +(1,1759:6764466,23503543:25818563,407923,9908 +(1,1758:6764466,23503543:0,0,0 +g1,1758:6764466,23503543 +g1,1758:6764466,23503543 +g1,1758:6436786,23503543 +(1,1758:6436786,23503543:0,0,0 +) +g1,1758:6764466,23503543 +) +g1,1759:10747913,23503543 +g1,1759:11411821,23503543 +h1,1759:12407683,23503543:0,0,0 +k1,1759:32583029,23503543:20175346 +g1,1759:32583029,23503543 +) +(1,1763:6764466,24843758:25818563,431045,112852 +g1,1763:7760328,24843758 +g1,1763:10415960,24843758 +g1,1763:11411822,24843758 +g1,1763:15395269,24843758 +g1,1763:16059177,24843758 +g1,1763:17718947,24843758 +g1,1763:19046763,24843758 +g1,1763:22034348,24843758 +g1,1763:23030210,24843758 +g1,1763:25685842,24843758 +k1,1763:32583029,24843758:4241556 +g1,1763:32583029,24843758 +) +(1,1765:6764466,25528613:25818563,424439,79822 +(1,1763:6764466,25528613:0,0,0 +g1,1763:6764466,25528613 +g1,1763:6764466,25528613 +g1,1763:6436786,25528613 +(1,1763:6436786,25528613:0,0,0 +) +g1,1763:6764466,25528613 +) +g1,1765:7760328,25528613 +g1,1765:9088144,25528613 +h1,1765:9752052,25528613:0,0,0 +k1,1765:32583028,25528613:22830976 +g1,1765:32583028,25528613 +) +(1,1767:6764466,26606684:25818563,407923,9908 +(1,1766:6764466,26606684:0,0,0 +g1,1766:6764466,26606684 +g1,1766:6764466,26606684 +g1,1766:6436786,26606684 +(1,1766:6436786,26606684:0,0,0 +) +g1,1766:6764466,26606684 +) +g1,1767:10747913,26606684 +g1,1767:11411821,26606684 +h1,1767:12075729,26606684:0,0,0 +k1,1767:32583029,26606684:20507300 +g1,1767:32583029,26606684 +) +(1,1771:6764466,27422611:25818563,424439,79822 +(1,1769:6764466,27422611:0,0,0 +g1,1769:6764466,27422611 +g1,1769:6764466,27422611 +g1,1769:6436786,27422611 +(1,1769:6436786,27422611:0,0,0 +) +g1,1769:6764466,27422611 +) +g1,1771:7760328,27422611 +g1,1771:9088144,27422611 +h1,1771:12407683,27422611:0,0,0 +k1,1771:32583029,27422611:20175346 +g1,1771:32583029,27422611 +) +(1,1773:6764466,28238538:25818563,407923,9908 +(1,1772:6764466,28238538:0,0,0 +g1,1772:6764466,28238538 +g1,1772:6764466,28238538 +g1,1772:6436786,28238538 +(1,1772:6436786,28238538:0,0,0 +) +g1,1772:6764466,28238538 +) +g1,1773:10747913,28238538 +g1,1773:11411821,28238538 +h1,1773:15063314,28238538:0,0,0 +k1,1773:32583030,28238538:17519716 +g1,1773:32583030,28238538 +) +(1,1777:6764466,29578753:25818563,431045,112852 +g1,1777:7760328,29578753 +g1,1777:10415960,29578753 +g1,1777:11411822,29578753 +g1,1777:15395269,29578753 +g1,1777:16059177,29578753 +g1,1777:20374578,29578753 +g1,1777:21702394,29578753 +g1,1777:24689979,29578753 +g1,1777:25685841,29578753 +g1,1777:28341473,29578753 +k1,1777:32583029,29578753:1585925 +g1,1777:32583029,29578753 +) +(1,1779:6764466,30263608:25818563,424439,79822 +(1,1777:6764466,30263608:0,0,0 +g1,1777:6764466,30263608 +g1,1777:6764466,30263608 +g1,1777:6436786,30263608 +(1,1777:6436786,30263608:0,0,0 +) +g1,1777:6764466,30263608 +) +g1,1779:7760328,30263608 +g1,1779:9088144,30263608 +h1,1779:9752052,30263608:0,0,0 +k1,1779:32583028,30263608:22830976 +g1,1779:32583028,30263608 +) +(1,1781:6764466,31341679:25818563,407923,9908 +(1,1780:6764466,31341679:0,0,0 +g1,1780:6764466,31341679 +g1,1780:6764466,31341679 +g1,1780:6436786,31341679 +(1,1780:6436786,31341679:0,0,0 +) +g1,1780:6764466,31341679 +) +g1,1781:10747913,31341679 +g1,1781:11411821,31341679 +h1,1781:14731360,31341679:0,0,0 +k1,1781:32583028,31341679:17851668 +g1,1781:32583028,31341679 +) +(1,1785:6764466,32157606:25818563,424439,79822 +(1,1783:6764466,32157606:0,0,0 +g1,1783:6764466,32157606 +g1,1783:6764466,32157606 +g1,1783:6436786,32157606 +(1,1783:6436786,32157606:0,0,0 +) +g1,1783:6764466,32157606 +) +g1,1785:7760328,32157606 +g1,1785:9088144,32157606 +h1,1785:13071591,32157606:0,0,0 +k1,1785:32583029,32157606:19511438 +g1,1785:32583029,32157606 +) +] +) +g1,1786:32583029,32237428 +g1,1786:6764466,32237428 +g1,1786:6764466,32237428 +g1,1786:32583029,32237428 +g1,1786:32583029,32237428 +) +h1,1786:6764466,32434036:0,0,0 +(1,1790:6764466,33299116:25818563,513147,134348 +h1,1789:6764466,33299116:983040,0,0 +k1,1789:9088927,33299116:144734 +k1,1789:14019755,33299116:144734 +k1,1789:16911103,33299116:144734 +(1,1789:16911103,33299116:0,424981,115847 +r1,1815:17269369,33299116:358266,540828,115847 +k1,1789:16911103,33299116:-358266 +) +(1,1789:16911103,33299116:358266,424981,115847 +k1,1789:16911103,33299116:3277 +h1,1789:17266092,33299116:0,411205,112570 +) +k1,1789:17414103,33299116:144734 +k1,1789:19517708,33299116:144734 +k1,1789:20681527,33299116:144734 +k1,1789:24211851,33299116:144734 +k1,1789:25015877,33299116:144734 +k1,1789:25949009,33299116:144734 +k1,1789:29496372,33299116:144734 +k1,1789:30292534,33299116:144734 +(1,1789:30292534,33299116:0,452978,115847 +r1,1815:32409359,33299116:2116825,568825,115847 +k1,1789:30292534,33299116:-2116825 +) +(1,1789:30292534,33299116:2116825,452978,115847 +k1,1789:30292534,33299116:3277 +h1,1789:32406082,33299116:0,411205,112570 +) +k1,1789:32583029,33299116:0 +) +(1,1790:6764466,34164196:25818563,513147,134348 +k1,1789:9802187,34164196:204600 +k1,1789:10622824,34164196:204599 +k1,1789:11636794,34164196:204600 +k1,1789:14752502,34164196:204599 +k1,1789:15584937,34164196:204600 +k1,1789:18594477,34164196:204599 +k1,1789:19485239,34164196:204600 +k1,1789:21129664,34164196:204599 +k1,1789:23363259,34164196:204600 +k1,1789:24586943,34164196:204599 +k1,1789:29273550,34164196:204600 +k1,1789:32224763,34164196:204599 +(1,1789:32224763,34164196:0,414482,115847 +r1,1815:32583029,34164196:358266,530329,115847 +k1,1789:32224763,34164196:-358266 +) +(1,1789:32224763,34164196:358266,414482,115847 +k1,1789:32224763,34164196:3277 +h1,1789:32579752,34164196:0,411205,112570 +) +k1,1789:32583029,34164196:0 +) +(1,1790:6764466,35029276:25818563,513147,134348 +g1,1789:9705066,35029276 +g1,1789:10713665,35029276 +(1,1789:10713665,35029276:0,452978,122846 +r1,1815:13182202,35029276:2468537,575824,122846 +k1,1789:10713665,35029276:-2468537 +) +(1,1789:10713665,35029276:2468537,452978,122846 +k1,1789:10713665,35029276:3277 +h1,1789:13178925,35029276:0,411205,112570 +) +g1,1789:13381431,35029276 +g1,1789:15591305,35029276 +g1,1789:18623655,35029276 +g1,1789:19438922,35029276 +k1,1790:32583029,35029276:10232998 +g1,1790:32583029,35029276 +) +v1,1792:6764466,35714131:0,393216,0 +(1,1807:6764466,39924336:25818563,4603421,196608 +g1,1807:6764466,39924336 +g1,1807:6764466,39924336 +g1,1807:6567858,39924336 +(1,1807:6567858,39924336:0,4603421,196608 +r1,1815:32779637,39924336:26211779,4800029,196608 +k1,1807:6567857,39924336:-26211780 +) +(1,1807:6567858,39924336:26211779,4603421,196608 +[1,1807:6764466,39924336:25818563,4406813,0 +(1,1794:6764466,35925446:25818563,407923,9908 +(1,1793:6764466,35925446:0,0,0 +g1,1793:6764466,35925446 +g1,1793:6764466,35925446 +g1,1793:6436786,35925446 +(1,1793:6436786,35925446:0,0,0 +) +g1,1793:6764466,35925446 +) +g1,1794:10747913,35925446 +g1,1794:11411821,35925446 +h1,1794:15063314,35925446:0,0,0 +k1,1794:32583030,35925446:17519716 +g1,1794:32583030,35925446 +) +(1,1798:6764466,37265661:25818563,431045,112852 +g1,1798:7760328,37265661 +g1,1798:10415960,37265661 +g1,1798:11411822,37265661 +g1,1798:15395269,37265661 +g1,1798:16059177,37265661 +g1,1798:20374578,37265661 +g1,1798:21702394,37265661 +g1,1798:24689979,37265661 +g1,1798:25685841,37265661 +g1,1798:28341473,37265661 +k1,1798:32583029,37265661:1585925 +g1,1798:32583029,37265661 +) +(1,1800:6764466,37950516:25818563,424439,79822 +(1,1798:6764466,37950516:0,0,0 +g1,1798:6764466,37950516 +g1,1798:6764466,37950516 +g1,1798:6436786,37950516 +(1,1798:6436786,37950516:0,0,0 +) +g1,1798:6764466,37950516 +) +g1,1800:7760328,37950516 +g1,1800:9088144,37950516 +h1,1800:9752052,37950516:0,0,0 +k1,1800:32583028,37950516:22830976 +g1,1800:32583028,37950516 +) +(1,1802:6764466,39028587:25818563,407923,9908 +(1,1801:6764466,39028587:0,0,0 +g1,1801:6764466,39028587 +g1,1801:6764466,39028587 +g1,1801:6436786,39028587 +(1,1801:6436786,39028587:0,0,0 +) +g1,1801:6764466,39028587 +) +h1,1802:11411821,39028587:0,0,0 +k1,1802:32583029,39028587:21171208 +g1,1802:32583029,39028587 +) +(1,1806:6764466,39844514:25818563,424439,79822 +(1,1804:6764466,39844514:0,0,0 +g1,1804:6764466,39844514 +g1,1804:6764466,39844514 +g1,1804:6436786,39844514 +(1,1804:6436786,39844514:0,0,0 +) +g1,1804:6764466,39844514 +) +g1,1806:7760328,39844514 +g1,1806:9088144,39844514 +h1,1806:13071591,39844514:0,0,0 +k1,1806:32583029,39844514:19511438 +g1,1806:32583029,39844514 +) +] +) +g1,1807:32583029,39924336 +g1,1807:6764466,39924336 +g1,1807:6764466,39924336 +g1,1807:32583029,39924336 +g1,1807:32583029,39924336 +) +h1,1807:6764466,40120944:0,0,0 +] +g1,1812:32583029,40120944 +) +h1,1812:6630773,40120944:0,0,0 +(1,1815:6630773,40986024:25952256,513147,126483 +h1,1814:6630773,40986024:983040,0,0 +k1,1814:9256707,40986024:177509 +k1,1814:10381867,40986024:177509 +k1,1814:12854447,40986024:177509 +k1,1814:13714841,40986024:177509 +k1,1814:14578512,40986024:177509 +k1,1814:16077882,40986024:177509 +k1,1814:16914682,40986024:177508 +k1,1814:21660050,40986024:177509 +k1,1814:22705911,40986024:177509 +k1,1814:24220354,40986024:177509 +k1,1814:25946479,40986024:177509 +k1,1814:26775416,40986024:177509 +k1,1814:29723787,40986024:177509 +k1,1814:30920381,40986024:177509 +k1,1815:32583029,40986024:0 +) +(1,1815:6630773,41851104:25952256,513147,134348 +k1,1814:7840474,41851104:173577 +k1,1814:8673343,41851104:173577 +k1,1814:12160419,41851104:173576 +k1,1814:14118541,41851104:173577 +k1,1814:14975003,41851104:173577 +k1,1814:16167665,41851104:173577 +k1,1814:18827022,41851104:173576 +k1,1814:19659891,41851104:173577 +k1,1814:21618013,41851104:173577 +k1,1814:23304816,41851104:173577 +k1,1814:24497478,41851104:173577 +k1,1814:27154869,41851104:173576 +k1,1814:29794566,41851104:173577 +k1,1814:30714598,41851104:173577 +k1,1814:32583029,41851104:0 +) +(1,1815:6630773,42716184:25952256,513147,134348 +k1,1814:8137305,42716184:222026 +k1,1814:8975370,42716184:222027 +k1,1814:10216481,42716184:222026 +k1,1814:13430227,42716184:222027 +k1,1814:15694355,42716184:222026 +k1,1814:17383078,42716184:222027 +k1,1814:18071065,42716184:222026 +k1,1814:20865379,42716184:222026 +k1,1814:21618903,42716184:222027 +k1,1814:23578944,42716184:222026 +k1,1814:25378423,42716184:222027 +k1,1814:26361977,42716184:222026 +k1,1814:29023254,42716184:222027 +k1,1814:30942007,42716184:222026 +k1,1815:32583029,42716184:0 +) +(1,1815:6630773,43581264:25952256,513147,126483 +k1,1814:8456218,43581264:227677 +k1,1814:10694541,43581264:227678 +(1,1814:10694541,43581264:0,452978,115847 +r1,1815:13163078,43581264:2468537,568825,115847 +k1,1814:10694541,43581264:-2468537 +) +(1,1814:10694541,43581264:2468537,452978,115847 +k1,1814:10694541,43581264:3277 +h1,1814:13159801,43581264:0,411205,112570 +) +k1,1814:13390755,43581264:227677 +k1,1814:15629077,43581264:227677 +k1,1814:17141261,43581264:227678 +k1,1814:18360498,43581264:227677 +k1,1814:21350518,43581264:227677 +k1,1814:23145816,43581264:227677 +k1,1814:24882133,43581264:227678 +k1,1814:26818334,43581264:227677 +k1,1814:28237456,43581264:227677 +k1,1814:29569416,43581264:227678 +k1,1814:30544859,43581264:227677 +k1,1814:32583029,43581264:0 +) +(1,1815:6630773,44446344:25952256,505283,126483 +k1,1814:8066078,44446344:243860 +k1,1814:9823164,44446344:243860 +k1,1814:10683062,44446344:243860 +k1,1814:15494781,44446344:243860 +k1,1814:18528509,44446344:243860 +(1,1814:18528509,44446344:0,452978,115847 +r1,1815:20997046,44446344:2468537,568825,115847 +k1,1814:18528509,44446344:-2468537 +) +(1,1814:18528509,44446344:2468537,452978,115847 +k1,1814:18528509,44446344:3277 +h1,1814:20993769,44446344:0,411205,112570 +) +k1,1814:21240906,44446344:243860 +k1,1814:22016263,44446344:243860 +k1,1814:23773349,44446344:243860 +k1,1814:24668637,44446344:243860 +k1,1814:26845809,44446344:243860 +k1,1814:29905751,44446344:243860 +k1,1814:30801039,44446344:243860 +k1,1814:31400759,44446344:243860 +k1,1815:32583029,44446344:0 +) +(1,1815:6630773,45311424:25952256,513147,126483 +k1,1814:8062230,45311424:202657 +k1,1814:10750669,45311424:202658 +k1,1814:11612618,45311424:202657 +k1,1814:14299090,45311424:202657 +k1,1814:16494698,45311424:202658 +k1,1814:18210581,45311424:202657 +k1,1814:19096123,45311424:202657 +k1,1814:21341537,45311424:202657 +k1,1814:22563280,45311424:202658 +k1,1814:25249752,45311424:202657 +k1,1814:27918529,45311424:202657 +k1,1814:29515138,45311424:202658 +k1,1814:30073655,45311424:202657 +k1,1814:32583029,45311424:0 +) +] +(1,1815:32583029,45706769:0,0,0 +g1,1815:32583029,45706769 +) +) +] +(1,1815:6630773,47279633:25952256,0,0 +h1,1815:6630773,47279633:25952256,0,0 +) +] +(1,1815:4262630,4025873:0,0,0 +[1,1815:-473656,4025873:0,0,0 +(1,1815:-473656,-710413:0,0,0 +(1,1815:-473656,-710413:0,0,0 +g1,1815:-473656,-710413 +) +g1,1815:-473656,-710413 +) +] +) +] +!28414 +}51 +Input:403:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:404:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:405:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:406:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:407:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:408:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!569 +{52 +[1,1902:4262630,47279633:28320399,43253760,0 +(1,1902:4262630,4025873:0,0,0 +[1,1902:-473656,4025873:0,0,0 +(1,1902:-473656,-710413:0,0,0 +(1,1902:-473656,-644877:0,0,0 +k1,1902:-473656,-644877:-65536 ) -(1,1436:-473656,4736287:0,0,0 -k1,1436:-473656,4736287:5209943 +(1,1902:-473656,4736287:0,0,0 +k1,1902:-473656,4736287:5209943 ) -g1,1436:-473656,-710413 +g1,1902:-473656,-710413 ) ] ) -[1,1436:6630773,47279633:25952256,43253760,0 -[1,1436:6630773,4812305:25952256,786432,0 -(1,1436:6630773,4812305:25952256,505283,11795 -(1,1436:6630773,4812305:25952256,505283,11795 -g1,1436:3078558,4812305 -[1,1436:3078558,4812305:0,0,0 -(1,1436:3078558,2439708:0,1703936,0 -k1,1436:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,1436:2537886,2439708:1179648,16384,0 +[1,1902:6630773,47279633:25952256,43253760,0 +[1,1902:6630773,4812305:25952256,786432,0 +(1,1902:6630773,4812305:25952256,505283,11795 +(1,1902:6630773,4812305:25952256,505283,11795 +g1,1902:3078558,4812305 +[1,1902:3078558,4812305:0,0,0 +(1,1902:3078558,2439708:0,1703936,0 +k1,1902:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,1902:2537886,2439708:1179648,16384,0 ) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,1436:3078558,1915420:16384,1179648,0 +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,1902:3078558,1915420:16384,1179648,0 ) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) ] ) ) ) ] -[1,1436:3078558,4812305:0,0,0 -(1,1436:3078558,2439708:0,1703936,0 -g1,1436:29030814,2439708 -g1,1436:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,1436:36151628,1915420:16384,1179648,0 +[1,1902:3078558,4812305:0,0,0 +(1,1902:3078558,2439708:0,1703936,0 +g1,1902:29030814,2439708 +g1,1902:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,1902:36151628,1915420:16384,1179648,0 ) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) ] ) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,1436:37855564,2439708:1179648,16384,0 +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,1902:37855564,2439708:1179648,16384,0 ) ) -k1,1436:3078556,2439708:-34777008 +k1,1902:3078556,2439708:-34777008 ) ] -[1,1436:3078558,4812305:0,0,0 -(1,1436:3078558,49800853:0,16384,2228224 -k1,1436:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,1436:2537886,49800853:1179648,16384,0 +[1,1902:3078558,4812305:0,0,0 +(1,1902:3078558,49800853:0,16384,2228224 +k1,1902:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,1902:2537886,49800853:1179648,16384,0 ) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,1436:3078558,51504789:16384,1179648,0 +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,1902:3078558,51504789:16384,1179648,0 ) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) ] ) ) ) ] -[1,1436:3078558,4812305:0,0,0 -(1,1436:3078558,49800853:0,16384,2228224 -g1,1436:29030814,49800853 -g1,1436:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,1436:36151628,51504789:16384,1179648,0 -) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 -) -] -) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,1436:37855564,49800853:1179648,16384,0 +[1,1902:3078558,4812305:0,0,0 +(1,1902:3078558,49800853:0,16384,2228224 +g1,1902:29030814,49800853 +g1,1902:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,1902:36151628,51504789:16384,1179648,0 ) -) -k1,1436:3078556,49800853:-34777008 -) -] -g1,1436:6630773,4812305 -k1,1436:22348274,4812305:14920583 -g1,1436:23970945,4812305 -g1,1436:24793421,4812305 -g1,1436:27528893,4812305 -g1,1436:28938572,4812305 -) -) -] -[1,1436:6630773,45706769:25952256,40108032,0 -(1,1436:6630773,45706769:25952256,40108032,0 -(1,1436:6630773,45706769:0,0,0 -g1,1436:6630773,45706769 -) -[1,1436:6630773,45706769:25952256,40108032,0 -v1,1367:6630773,6254097:0,393216,0 -(1,1367:6630773,25468951:25952256,19608070,0 -g1,1367:6630773,25468951 -g1,1367:6303093,25468951 -r1,1436:6401397,25468951:98304,19608070,0 -g1,1367:6600626,25468951 -g1,1367:6797234,25468951 -[1,1367:6797234,25468951:25785795,19608070,0 -(1,1317:6797234,6374028:25785795,513147,134348 -h1,1316:6797234,6374028:983040,0,0 -k1,1316:9491607,6374028:221044 -k1,1316:11410688,6374028:221043 -k1,1316:12291024,6374028:221044 -k1,1316:14525333,6374028:221043 -k1,1316:16340213,6374028:221044 -k1,1316:18869434,6374028:221043 -k1,1316:19905746,6374028:221044 -k1,1316:21602004,6374028:221043 -k1,1316:22474476,6374028:221044 -k1,1316:24831993,6374028:221043 -k1,1316:25704465,6374028:221044 -k1,1316:26281368,6374028:221043 -k1,1316:28057581,6374028:221044 -k1,1316:31635378,6374028:221043 -k1,1316:32583029,6374028:0 -) -(1,1317:6797234,7215516:25785795,505283,126483 -k1,1316:8105153,7215516:288834 -k1,1316:11641951,7215516:288834 -(1,1316:11641951,7215516:0,452978,115847 -r1,1436:17275895,7215516:5633944,568825,115847 -k1,1316:11641951,7215516:-5633944 -) -(1,1316:11641951,7215516:5633944,452978,115847 -g1,1316:12348652,7215516 -g1,1316:13052076,7215516 -h1,1316:17272618,7215516:0,411205,112570 -) -k1,1316:17564729,7215516:288834 -k1,1316:18385060,7215516:288834 -k1,1316:19444597,7215516:288834 -k1,1316:21340373,7215516:288833 -(1,1316:21547467,7215516:0,452978,115847 -r1,1436:24719427,7215516:3171960,568825,115847 -k1,1316:21547467,7215516:-3171960 -) -(1,1316:21547467,7215516:3171960,452978,115847 -k1,1316:21547467,7215516:3277 -h1,1316:24716150,7215516:0,411205,112570 -) -k1,1316:25008261,7215516:288834 -k1,1316:27307740,7215516:288834 -k1,1316:28588134,7215516:288834 -k1,1316:31966991,7215516:288834 -k1,1316:32583029,7215516:0 -) -(1,1317:6797234,8057004:25785795,505283,134348 -g1,1316:9275150,8057004 -h1,1316:10245738,8057004:0,0,0 -g1,1316:10444967,8057004 -g1,1316:11453566,8057004 -g1,1316:13150948,8057004 -h1,1316:13947866,8057004:0,0,0 -k1,1317:32583030,8057004:18254400 -g1,1317:32583030,8057004 -) -(1,1319:6797234,8898492:25785795,505283,134348 -h1,1318:6797234,8898492:983040,0,0 -k1,1318:10432461,8898492:269953 -k1,1318:11388576,8898492:269953 -k1,1318:14730857,8898492:269953 -k1,1318:15652237,8898492:269952 -k1,1318:19202922,8898492:269953 -(1,1318:19202922,8898492:0,452978,122846 -r1,1436:21319747,8898492:2116825,575824,122846 -k1,1318:19202922,8898492:-2116825 -) -(1,1318:19202922,8898492:2116825,452978,122846 -k1,1318:19202922,8898492:3277 -h1,1318:21316470,8898492:0,411205,112570 -) -k1,1318:21589700,8898492:269953 -k1,1318:22215513,8898492:269953 -k1,1318:24165809,8898492:269953 -k1,1318:26295018,8898492:269953 -k1,1318:28007417,8898492:269952 -k1,1318:29697535,8898492:269953 -k1,1318:32227169,8898492:269953 -k1,1318:32583029,8898492:0 -) -(1,1319:6797234,9739980:25785795,513147,134348 -g1,1318:9020870,9739980 -g1,1318:11197976,9739980 -g1,1318:13006114,9739980 -g1,1318:14599294,9739980 -g1,1318:16548990,9739980 -g1,1318:17364257,9739980 -g1,1318:18582571,9739980 -g1,1318:20148881,9739980 -g1,1318:21015266,9739980 -(1,1318:21015266,9739980:0,452978,115847 -r1,1436:24187226,9739980:3171960,568825,115847 -k1,1318:21015266,9739980:-3171960 -) -(1,1318:21015266,9739980:3171960,452978,115847 -k1,1318:21015266,9739980:3277 -h1,1318:24183949,9739980:0,411205,112570 -) -k1,1319:32583029,9739980:8222133 -g1,1319:32583029,9739980 -) -v1,1321:6797234,10930446:0,393216,0 -(1,1328:6797234,11880263:25785795,1343033,196608 -g1,1328:6797234,11880263 -g1,1328:6797234,11880263 -g1,1328:6600626,11880263 -(1,1328:6600626,11880263:0,1343033,196608 -r1,1436:32779637,11880263:26179011,1539641,196608 -k1,1328:6600625,11880263:-26179012 -) -(1,1328:6600626,11880263:26179011,1343033,196608 -[1,1328:6797234,11880263:25785795,1146425,0 -(1,1323:6797234,11138064:25785795,404226,107478 -(1,1322:6797234,11138064:0,0,0 -g1,1322:6797234,11138064 -g1,1322:6797234,11138064 -g1,1322:6469554,11138064 -(1,1322:6469554,11138064:0,0,0 -) -g1,1322:6797234,11138064 -) -k1,1323:6797234,11138064:0 -g1,1323:11539420,11138064 -g1,1323:12171712,11138064 -h1,1323:12804004,11138064:0,0,0 -k1,1323:32583028,11138064:19779024 -g1,1323:32583028,11138064 -) -(1,1327:6797234,11804242:25785795,404226,76021 -(1,1325:6797234,11804242:0,0,0 -g1,1325:6797234,11804242 -g1,1325:6797234,11804242 -g1,1325:6469554,11804242 -(1,1325:6469554,11804242:0,0,0 -) -g1,1325:6797234,11804242 -) -g1,1327:7745671,11804242 -g1,1327:9010254,11804242 -g1,1327:9642546,11804242 -g1,1327:10274838,11804242 -g1,1327:10907130,11804242 -g1,1327:11539422,11804242 -h1,1327:11855568,11804242:0,0,0 -k1,1327:32583028,11804242:20727460 -g1,1327:32583028,11804242 -) -] -) -g1,1328:32583029,11880263 -g1,1328:6797234,11880263 -g1,1328:6797234,11880263 -g1,1328:32583029,11880263 -g1,1328:32583029,11880263 -) -h1,1328:6797234,12076871:0,0,0 -(1,1332:6797234,13442647:25785795,513147,134348 -h1,1331:6797234,13442647:983040,0,0 -k1,1331:9239596,13442647:262635 -k1,1331:11515498,13442647:262636 -k1,1331:12437425,13442647:262635 -k1,1331:13055921,13442647:262636 -k1,1331:15296433,13442647:262635 -k1,1331:16663351,13442647:262636 -k1,1331:17673752,13442647:262635 -k1,1331:20833734,13442647:262635 -k1,1331:24309600,13442647:262636 -k1,1331:25966186,13442647:262635 -k1,1331:28700840,13442647:262636 -k1,1331:30974120,13442647:262635 -k1,1331:32583029,13442647:0 -) -(1,1332:6797234,14284135:25785795,513147,126483 -g1,1331:11313320,14284135 -g1,1331:12906500,14284135 -(1,1331:12906500,14284135:0,414482,115847 -r1,1436:13616478,14284135:709978,530329,115847 -k1,1331:12906500,14284135:-709978 -) -(1,1331:12906500,14284135:709978,414482,115847 -k1,1331:12906500,14284135:3277 -h1,1331:13613201,14284135:0,411205,112570 -) -g1,1331:13989377,14284135 -g1,1331:15207691,14284135 -g1,1331:17699369,14284135 -g1,1331:18846249,14284135 -g1,1331:20111749,14284135 -k1,1332:32583029,14284135:9513640 -g1,1332:32583029,14284135 -) -v1,1334:6797234,15474601:0,393216,0 -(1,1343:6797234,17741045:25785795,2659660,196608 -g1,1343:6797234,17741045 -g1,1343:6797234,17741045 -g1,1343:6600626,17741045 -(1,1343:6600626,17741045:0,2659660,196608 -r1,1436:32779637,17741045:26179011,2856268,196608 -k1,1343:6600625,17741045:-26179012 -) -(1,1343:6600626,17741045:26179011,2659660,196608 -[1,1343:6797234,17741045:25785795,2463052,0 -(1,1336:6797234,15666490:25785795,388497,9436 -(1,1335:6797234,15666490:0,0,0 -g1,1335:6797234,15666490 -g1,1335:6797234,15666490 -g1,1335:6469554,15666490 -(1,1335:6469554,15666490:0,0,0 -) -g1,1335:6797234,15666490 -) -g1,1336:8694108,15666490 -g1,1336:9642546,15666490 -h1,1336:10590984,15666490:0,0,0 -k1,1336:32583028,15666490:21992044 -g1,1336:32583028,15666490 -) -(1,1337:6797234,16332668:25785795,404226,107478 -h1,1337:6797234,16332668:0,0,0 -g1,1337:11223274,16332668 -g1,1337:12171712,16332668 -h1,1337:12804003,16332668:0,0,0 -k1,1337:32583029,16332668:19779026 -g1,1337:32583029,16332668 -) -(1,1338:6797234,16998846:25785795,388497,9436 -h1,1338:6797234,16998846:0,0,0 -h1,1338:8377962,16998846:0,0,0 -k1,1338:32583030,16998846:24205068 -g1,1338:32583030,16998846 -) -(1,1342:6797234,17665024:25785795,404226,76021 -(1,1340:6797234,17665024:0,0,0 -g1,1340:6797234,17665024 -g1,1340:6797234,17665024 -g1,1340:6469554,17665024 -(1,1340:6469554,17665024:0,0,0 -) -g1,1340:6797234,17665024 -) -g1,1342:7745671,17665024 -g1,1342:8061817,17665024 -g1,1342:9326400,17665024 -g1,1342:9642546,17665024 -g1,1342:10274838,17665024 -g1,1342:10590984,17665024 -g1,1342:11223276,17665024 -g1,1342:11539422,17665024 -g1,1342:12171714,17665024 -g1,1342:12487860,17665024 -g1,1342:13120152,17665024 -g1,1342:13436298,17665024 -g1,1342:14068590,17665024 -g1,1342:15017027,17665024 -g1,1342:15965464,17665024 -g1,1342:16913901,17665024 -g1,1342:17862338,17665024 -h1,1342:18494629,17665024:0,0,0 -k1,1342:32583029,17665024:14088400 -g1,1342:32583029,17665024 -) -] -) -g1,1343:32583029,17741045 -g1,1343:6797234,17741045 -g1,1343:6797234,17741045 -g1,1343:32583029,17741045 -g1,1343:32583029,17741045 -) -h1,1343:6797234,17937653:0,0,0 -(1,1347:6797234,19303429:25785795,513147,134348 -h1,1346:6797234,19303429:983040,0,0 -g1,1346:8457260,19303429 -g1,1346:9675574,19303429 -g1,1346:11888069,19303429 -g1,1346:12618795,19303429 -g1,1346:16183298,19303429 -g1,1346:17401612,19303429 -g1,1346:19611486,19303429 -g1,1346:20426753,19303429 -g1,1346:21645067,19303429 -g1,1346:22887629,19303429 -g1,1346:23746150,19303429 -g1,1346:24964464,19303429 -g1,1346:27141570,19303429 -g1,1346:28332359,19303429 -k1,1347:32583029,19303429:958141 -g1,1347:32583029,19303429 -) -v1,1349:6797234,20493895:0,393216,0 -(1,1364:6797234,24748055:25785795,4647376,196608 -g1,1364:6797234,24748055 -g1,1364:6797234,24748055 -g1,1364:6600626,24748055 -(1,1364:6600626,24748055:0,4647376,196608 -r1,1436:32779637,24748055:26179011,4843984,196608 -k1,1364:6600625,24748055:-26179012 -) -(1,1364:6600626,24748055:26179011,4647376,196608 -[1,1364:6797234,24748055:25785795,4450768,0 -(1,1351:6797234,20685784:25785795,388497,9436 -(1,1350:6797234,20685784:0,0,0 -g1,1350:6797234,20685784 -g1,1350:6797234,20685784 -g1,1350:6469554,20685784 -(1,1350:6469554,20685784:0,0,0 -) -g1,1350:6797234,20685784 -) -g1,1351:8694108,20685784 -g1,1351:9642546,20685784 -h1,1351:10907129,20685784:0,0,0 -k1,1351:32583029,20685784:21675900 -g1,1351:32583029,20685784 -) -(1,1352:6797234,21351962:25785795,388497,6290 -h1,1352:6797234,21351962:0,0,0 -h1,1352:8377962,21351962:0,0,0 -k1,1352:32583030,21351962:24205068 -g1,1352:32583030,21351962 -) -(1,1356:6797234,22018140:25785795,404226,76021 -(1,1354:6797234,22018140:0,0,0 -g1,1354:6797234,22018140 -g1,1354:6797234,22018140 -g1,1354:6469554,22018140 -(1,1354:6469554,22018140:0,0,0 -) -g1,1354:6797234,22018140 -) -g1,1356:7745671,22018140 -g1,1356:8061817,22018140 -g1,1356:9326400,22018140 -g1,1356:9642546,22018140 -g1,1356:10274838,22018140 -g1,1356:10590984,22018140 -g1,1356:11223276,22018140 -g1,1356:11539422,22018140 -g1,1356:12171714,22018140 -g1,1356:12487860,22018140 -g1,1356:13120152,22018140 -g1,1356:13436298,22018140 -g1,1356:14068590,22018140 -g1,1356:14384736,22018140 -g1,1356:15017028,22018140 -g1,1356:15333174,22018140 -g1,1356:15965466,22018140 -g1,1356:16281612,22018140 -g1,1356:16913904,22018140 -g1,1356:17230050,22018140 -g1,1356:17862342,22018140 -h1,1356:18494633,22018140:0,0,0 -k1,1356:32583029,22018140:14088396 -g1,1356:32583029,22018140 -) -(1,1358:6797234,23339678:25785795,404226,107478 -(1,1357:6797234,23339678:0,0,0 -g1,1357:6797234,23339678 -g1,1357:6797234,23339678 -g1,1357:6469554,23339678 -(1,1357:6469554,23339678:0,0,0 -) -g1,1357:6797234,23339678 -) -k1,1358:6797234,23339678:0 -g1,1358:11223274,23339678 -g1,1358:12171712,23339678 -h1,1358:12487858,23339678:0,0,0 -k1,1358:32583030,23339678:20095172 -g1,1358:32583030,23339678 -) -(1,1359:6797234,24005856:25785795,388497,6290 -h1,1359:6797234,24005856:0,0,0 -h1,1359:8377962,24005856:0,0,0 -k1,1359:32583030,24005856:24205068 -g1,1359:32583030,24005856 -) -(1,1363:6797234,24672034:25785795,404226,76021 -(1,1361:6797234,24672034:0,0,0 -g1,1361:6797234,24672034 -g1,1361:6797234,24672034 -g1,1361:6469554,24672034 -(1,1361:6469554,24672034:0,0,0 -) -g1,1361:6797234,24672034 -) -g1,1363:7745671,24672034 -g1,1363:9010254,24672034 -g1,1363:9642546,24672034 -g1,1363:10274838,24672034 -g1,1363:10907130,24672034 -g1,1363:11539422,24672034 -h1,1363:11855568,24672034:0,0,0 -k1,1363:32583028,24672034:20727460 -g1,1363:32583028,24672034 -) -] -) -g1,1364:32583029,24748055 -g1,1364:6797234,24748055 -g1,1364:6797234,24748055 -g1,1364:32583029,24748055 -g1,1364:32583029,24748055 -) -h1,1364:6797234,24944663:0,0,0 -] -g1,1367:32583029,25468951 -) -h1,1367:6630773,25468951:0,0,0 -(1,1371:6630773,26796158:25952256,513147,134348 -h1,1370:6630773,26796158:983040,0,0 -k1,1370:9595125,26796158:148925 -k1,1370:10735610,26796158:148925 -k1,1370:12576675,26796158:148925 -k1,1370:14919745,26796158:148925 -k1,1370:17079315,26796158:148925 -k1,1370:20012209,26796158:148925 -k1,1370:21108785,26796158:148925 -k1,1370:24247462,26796158:148925 -(1,1370:24247462,26796158:0,414482,115847 -r1,1436:24957440,26796158:709978,530329,115847 -k1,1370:24247462,26796158:-709978 -) -(1,1370:24247462,26796158:709978,414482,115847 -k1,1370:24247462,26796158:3277 -h1,1370:24954163,26796158:0,411205,112570 -) -k1,1370:25106365,26796158:148925 -k1,1370:27983554,26796158:148925 -k1,1370:29498905,26796158:148925 -k1,1370:32583029,26796158:0 -) -(1,1371:6630773,27637646:25952256,513147,134348 -k1,1370:7410963,27637646:248693 -k1,1370:9172882,27637646:248693 -k1,1370:10369226,27637646:248693 -k1,1370:13089937,27637646:248693 -k1,1370:15522945,27637646:248693 -(1,1370:15730039,27637646:0,414482,115847 -r1,1436:16440017,27637646:709978,530329,115847 -k1,1370:15730039,27637646:-709978 -) -(1,1370:15730039,27637646:709978,414482,115847 -k1,1370:15730039,27637646:3277 -h1,1370:16436740,27637646:0,411205,112570 -) -k1,1370:16895804,27637646:248693 -k1,1370:19155143,27637646:248694 -k1,1370:20746669,27637646:248693 -k1,1370:21351222,27637646:248693 -k1,1370:22953889,27637646:248693 -k1,1370:26411880,27637646:248693 -k1,1370:27895927,27637646:248693 -k1,1370:28760658,27637646:248693 -k1,1370:30028436,27637646:248693 -k1,1370:32583029,27637646:0 -) -(1,1371:6630773,28479134:25952256,513147,134348 -k1,1370:7485124,28479134:195059 -k1,1370:9243217,28479134:195059 -k1,1370:10124437,28479134:195058 -k1,1370:13624477,28479134:195059 -k1,1370:15511676,28479134:195059 -k1,1370:19778487,28479134:195059 -k1,1370:20965106,28479134:195059 -k1,1370:23632183,28479134:195059 -k1,1370:25394862,28479134:195058 -k1,1370:26360624,28479134:195059 -k1,1370:29657502,28479134:195059 -k1,1370:32583029,28479134:0 -) -(1,1371:6630773,29320622:25952256,513147,134348 -k1,1370:8303064,29320622:282928 -k1,1370:9520535,29320622:282928 -k1,1370:10986389,29320622:282929 -k1,1370:11920745,29320622:282928 -k1,1370:15798323,29320622:282928 -k1,1370:18195442,29320622:282928 -k1,1370:19497456,29320622:282929 -k1,1370:21889333,29320622:282928 -k1,1370:22831553,29320622:282928 -k1,1370:23885184,29320622:282928 -k1,1370:27777180,29320622:282928 -k1,1370:28742994,29320622:282929 -k1,1370:31298711,29320622:282928 -k1,1370:32051532,29320622:282928 -k1,1370:32583029,29320622:0 -) -(1,1371:6630773,30162110:25952256,513147,126483 -k1,1370:10128052,30162110:287981 -k1,1370:11067460,30162110:287980 -k1,1370:15020214,30162110:287981 -k1,1370:16638575,30162110:287980 -k1,1370:17577984,30162110:287981 -k1,1370:20687944,30162110:287980 -(1,1370:20687944,30162110:0,414482,115847 -r1,1436:21397922,30162110:709978,530329,115847 -k1,1370:20687944,30162110:-709978 -) -(1,1370:20687944,30162110:709978,414482,115847 -k1,1370:20687944,30162110:3277 -h1,1370:21394645,30162110:0,411205,112570 -) -k1,1370:21685903,30162110:287981 -k1,1370:24158198,30162110:287980 -k1,1370:26003970,30162110:287981 -k1,1370:27283511,30162110:287981 -k1,1370:31635378,30162110:287980 -k1,1370:32583029,30162110:0 -) -(1,1371:6630773,31003598:25952256,505283,134348 -k1,1370:10194821,31003598:209915 -k1,1370:11689242,31003598:209915 -k1,1370:12430654,31003598:209915 -k1,1370:16427895,31003598:209915 -k1,1370:17253848,31003598:209915 -k1,1370:19165733,31003598:209915 -k1,1370:21504257,31003598:209915 -k1,1370:23722195,31003598:209915 -k1,1370:25612453,31003598:209915 -k1,1370:26353865,31003598:209915 -k1,1370:29652491,31003598:209915 -(1,1370:29652491,31003598:0,414482,115847 -r1,1436:30362469,31003598:709978,530329,115847 -k1,1370:29652491,31003598:-709978 -) -(1,1370:29652491,31003598:709978,414482,115847 -k1,1370:29652491,31003598:3277 -h1,1370:30359192,31003598:0,411205,112570 -) -k1,1370:30572384,31003598:209915 -k1,1370:32583029,31003598:0 -) -(1,1371:6630773,31845086:25952256,505283,134348 -k1,1370:10039882,31845086:194568 -k1,1370:11932489,31845086:194569 -k1,1370:13813954,31845086:194568 -k1,1370:14733351,31845086:194569 -k1,1370:16212425,31845086:194568 -k1,1370:19588112,31845086:194569 -k1,1370:24176869,31845086:194568 -k1,1370:25906947,31845086:194569 -(1,1370:25906947,31845086:0,414482,115847 -r1,1436:26616925,31845086:709978,530329,115847 -k1,1370:25906947,31845086:-709978 -) -(1,1370:25906947,31845086:709978,414482,115847 -k1,1370:25906947,31845086:3277 -h1,1370:26613648,31845086:0,411205,112570 -) -k1,1370:26811493,31845086:194568 -k1,1370:28704100,31845086:194569 -k1,1370:30055378,31845086:194568 -k1,1370:30932832,31845086:194569 -k1,1370:32583029,31845086:0 -) -(1,1371:6630773,32686574:25952256,513147,126483 -g1,1370:8538526,32686574 -g1,1370:9397047,32686574 -g1,1370:10615361,32686574 -g1,1370:12825235,32686574 -g1,1370:13555961,32686574 -k1,1371:32583029,32686574:15885927 -g1,1371:32583029,32686574 -) -v1,1373:6630773,33838470:0,393216,0 -(1,1387:6630773,37442181:25952256,3996927,196608 -g1,1387:6630773,37442181 -g1,1387:6630773,37442181 -g1,1387:6434165,37442181 -(1,1387:6434165,37442181:0,3996927,196608 -r1,1436:32779637,37442181:26345472,4193535,196608 -k1,1387:6434165,37442181:-26345472 -) -(1,1387:6434165,37442181:26345472,3996927,196608 -[1,1387:6630773,37442181:25952256,3800319,0 -(1,1375:6630773,34046088:25952256,404226,82312 -(1,1374:6630773,34046088:0,0,0 -g1,1374:6630773,34046088 -g1,1374:6630773,34046088 -g1,1374:6303093,34046088 -(1,1374:6303093,34046088:0,0,0 -) -g1,1374:6630773,34046088 -) -g1,1375:8527647,34046088 -g1,1375:9476085,34046088 -g1,1375:11372960,34046088 -h1,1375:12005252,34046088:0,0,0 -k1,1375:32583028,34046088:20577776 -g1,1375:32583028,34046088 -) -(1,1376:6630773,34712266:25952256,388497,6290 -h1,1376:6630773,34712266:0,0,0 -h1,1376:8211501,34712266:0,0,0 -k1,1376:32583029,34712266:24371528 -g1,1376:32583029,34712266 -) -(1,1380:6630773,35378444:25952256,404226,76021 -(1,1378:6630773,35378444:0,0,0 -g1,1378:6630773,35378444 -g1,1378:6630773,35378444 -g1,1378:6303093,35378444 -(1,1378:6303093,35378444:0,0,0 -) -g1,1378:6630773,35378444 -) -g1,1380:7579210,35378444 -g1,1380:8843793,35378444 -g1,1380:9792230,35378444 -g1,1380:10108376,35378444 -h1,1380:10424522,35378444:0,0,0 -k1,1380:32583030,35378444:22158508 -g1,1380:32583030,35378444 -) -(1,1382:6630773,36699982:25952256,388497,6290 -(1,1381:6630773,36699982:0,0,0 -g1,1381:6630773,36699982 -g1,1381:6630773,36699982 -g1,1381:6303093,36699982 -(1,1381:6303093,36699982:0,0,0 -) -g1,1381:6630773,36699982 -) -g1,1382:8527647,36699982 -g1,1382:9159939,36699982 -h1,1382:9476085,36699982:0,0,0 -k1,1382:32583029,36699982:23106944 -g1,1382:32583029,36699982 -) -(1,1386:6630773,37366160:25952256,404226,76021 -(1,1384:6630773,37366160:0,0,0 -g1,1384:6630773,37366160 -g1,1384:6630773,37366160 -g1,1384:6303093,37366160 -(1,1384:6303093,37366160:0,0,0 -) -g1,1384:6630773,37366160 -) -g1,1386:7579210,37366160 -g1,1386:8843793,37366160 -g1,1386:9792230,37366160 -g1,1386:10108376,37366160 -h1,1386:10424522,37366160:0,0,0 -k1,1386:32583030,37366160:22158508 -g1,1386:32583030,37366160 -) -] -) -g1,1387:32583029,37442181 -g1,1387:6630773,37442181 -g1,1387:6630773,37442181 -g1,1387:32583029,37442181 -g1,1387:32583029,37442181 -) -h1,1387:6630773,37638789:0,0,0 -(1,1391:6630773,38965996:25952256,513147,134348 -h1,1390:6630773,38965996:983040,0,0 -k1,1390:11797302,38965996:259849 -k1,1390:13161433,38965996:259849 -k1,1390:14707098,38965996:259849 -k1,1390:16502456,38965996:259849 -k1,1390:17781390,38965996:259849 -k1,1390:21016575,38965996:259850 -k1,1390:23287069,38965996:259849 -(1,1390:23287069,38965996:0,414482,115847 -r1,1436:24348758,38965996:1061689,530329,115847 -k1,1390:23287069,38965996:-1061689 -) -(1,1390:23287069,38965996:1061689,414482,115847 -k1,1390:23287069,38965996:3277 -h1,1390:24345481,38965996:0,411205,112570 -) -k1,1390:24608607,38965996:259849 -k1,1390:26234882,38965996:259849 -k1,1390:26850591,38965996:259849 -k1,1390:30070046,38965996:259849 -(1,1390:30070046,38965996:0,459977,115847 -r1,1436:31131735,38965996:1061689,575824,115847 -k1,1390:30070046,38965996:-1061689 -) -(1,1390:30070046,38965996:1061689,459977,115847 -k1,1390:30070046,38965996:3277 -h1,1390:31128458,38965996:0,411205,112570 -) -k1,1390:31391584,38965996:259849 -k1,1391:32583029,38965996:0 -) -(1,1391:6630773,39807484:25952256,513147,134348 -(1,1390:6630773,39807484:0,459977,115847 -r1,1436:8044174,39807484:1413401,575824,115847 -k1,1390:6630773,39807484:-1413401 -) -(1,1390:6630773,39807484:1413401,459977,115847 -k1,1390:6630773,39807484:3277 -h1,1390:8040897,39807484:0,411205,112570 -) -k1,1390:8277731,39807484:233557 -k1,1390:9458939,39807484:233557 -$1,1390:9458939,39807484 -$1,1390:10133960,39807484 -k1,1390:10367517,39807484:233557 -k1,1390:11792520,39807484:233558 -$1,1390:11792520,39807484 -$1,1390:13035738,39807484 -k1,1390:13442965,39807484:233557 -k1,1390:14494411,39807484:233557 -k1,1390:15898441,39807484:233557 -k1,1390:17264460,39807484:233557 -k1,1390:18523000,39807484:233557 -k1,1390:20798659,39807484:233557 -k1,1390:24833960,39807484:233558 -k1,1390:27593275,39807484:233557 -k1,1390:29523559,39807484:233557 -k1,1390:31767761,39807484:233557 -k1,1391:32583029,39807484:0 -) -(1,1391:6630773,40648972:25952256,505283,134348 -k1,1390:7965304,40648972:246633 -k1,1390:10342511,40648972:246632 -k1,1390:12526388,40648972:246633 -k1,1390:13455906,40648972:246633 -k1,1390:16776832,40648972:246632 -k1,1390:17709627,40648972:246633 -k1,1390:19336448,40648972:246633 -k1,1390:20574641,40648972:246633 -k1,1390:25224637,40648972:246632 -k1,1390:27185036,40648972:246633 -(1,1390:27185036,40648972:0,459977,115847 -r1,1436:28246725,40648972:1061689,575824,115847 -k1,1390:27185036,40648972:-1061689 -) -(1,1390:27185036,40648972:1061689,459977,115847 -k1,1390:27185036,40648972:3277 -h1,1390:28243448,40648972:0,411205,112570 -) -k1,1390:28493358,40648972:246633 -k1,1390:29931435,40648972:246632 -(1,1390:29931435,40648972:0,459977,115847 -r1,1436:31344836,40648972:1413401,575824,115847 -k1,1390:29931435,40648972:-1413401 -) -(1,1390:29931435,40648972:1413401,459977,115847 -k1,1390:29931435,40648972:3277 -h1,1390:31341559,40648972:0,411205,112570 -) -k1,1390:31591469,40648972:246633 -k1,1390:32583029,40648972:0 -) -(1,1391:6630773,41490460:25952256,513147,126483 -g1,1390:8115818,41490460 -g1,1390:9855143,41490460 -g1,1390:13235490,41490460 -g1,1390:15445364,41490460 -g1,1390:16592244,41490460 -g1,1390:18499997,41490460 -g1,1390:19890671,41490460 -k1,1391:32583029,41490460:9430631 -g1,1391:32583029,41490460 -) -v1,1393:6630773,42642357:0,393216,0 -(1,1436:6630773,45510161:25952256,3261020,196608 -g1,1436:6630773,45510161 -g1,1436:6630773,45510161 -g1,1436:6434165,45510161 -(1,1436:6434165,45510161:0,3261020,196608 -r1,1436:32779637,45510161:26345472,3457628,196608 -k1,1436:6434165,45510161:-26345472 -) -(1,1436:6434165,45510161:26345472,3261020,196608 -[1,1436:6630773,45510161:25952256,3064412,0 -(1,1395:6630773,42856267:25952256,410518,6290 -(1,1394:6630773,42856267:0,0,0 -g1,1394:6630773,42856267 -g1,1394:6630773,42856267 -g1,1394:6303093,42856267 -(1,1394:6303093,42856267:0,0,0 -) -g1,1394:6630773,42856267 -) -g1,1395:8527647,42856267 -g1,1395:9159939,42856267 -h1,1395:10108376,42856267:0,0,0 -k1,1395:32583028,42856267:22474652 -g1,1395:32583028,42856267 -) -(1,1399:6630773,43522445:25952256,410518,76021 -(1,1397:6630773,43522445:0,0,0 -g1,1397:6630773,43522445 -g1,1397:6630773,43522445 -g1,1397:6303093,43522445 -(1,1397:6303093,43522445:0,0,0 -) -g1,1397:6630773,43522445 -) -g1,1399:7579210,43522445 -g1,1399:8843793,43522445 -g1,1399:9159939,43522445 -g1,1399:10108376,43522445 -h1,1399:11056813,43522445:0,0,0 -k1,1399:32583029,43522445:21526216 -g1,1399:32583029,43522445 -) -(1,1401:6630773,44843983:25952256,410518,76021 -(1,1400:6630773,44843983:0,0,0 -g1,1400:6630773,44843983 -g1,1400:6630773,44843983 -g1,1400:6303093,44843983 -(1,1400:6303093,44843983:0,0,0 -) -g1,1400:6630773,44843983 -) -g1,1401:7895356,44843983 -g1,1401:8527648,44843983 -h1,1401:10108376,44843983:0,0,0 -k1,1401:32583028,44843983:22474652 -g1,1401:32583028,44843983 -) -(1,1405:6630773,45510161:25952256,410518,76021 -(1,1403:6630773,45510161:0,0,0 -g1,1403:6630773,45510161 -g1,1403:6630773,45510161 -g1,1403:6303093,45510161 -(1,1403:6303093,45510161:0,0,0 -) -g1,1403:6630773,45510161 -) -g1,1405:7579210,45510161 -g1,1405:8843793,45510161 -g1,1405:9159939,45510161 -g1,1405:10108376,45510161 -h1,1405:11056813,45510161:0,0,0 -k1,1405:32583029,45510161:21526216 -g1,1405:32583029,45510161 +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 ) ] ) -g1,1436:32583029,45510161 -g1,1436:6630773,45510161 -g1,1436:6630773,45510161 -g1,1436:32583029,45510161 -g1,1436:32583029,45510161 -) -] -(1,1436:32583029,45706769:0,0,0 -g1,1436:32583029,45706769 -) -) -] -(1,1436:6630773,47279633:25952256,0,0 -h1,1436:6630773,47279633:25952256,0,0 -) -] -(1,1436:4262630,4025873:0,0,0 -[1,1436:-473656,4025873:0,0,0 -(1,1436:-473656,-710413:0,0,0 -(1,1436:-473656,-710413:0,0,0 -g1,1436:-473656,-710413 -) -g1,1436:-473656,-710413 -) -] -) -] -!27102 -}47 -Input:332:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:333:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:334:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:335:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:336:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:337:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:338:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:339:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:340:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:341:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:342:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:343:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:344:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:345:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1313 -{48 -[1,1487:4262630,47279633:28320399,43253760,0 -(1,1487:4262630,4025873:0,0,0 -[1,1487:-473656,4025873:0,0,0 -(1,1487:-473656,-710413:0,0,0 -(1,1487:-473656,-644877:0,0,0 -k1,1487:-473656,-644877:-65536 -) -(1,1487:-473656,4736287:0,0,0 -k1,1487:-473656,4736287:5209943 -) -g1,1487:-473656,-710413 -) -] -) -[1,1487:6630773,47279633:25952256,43253760,0 -[1,1487:6630773,4812305:25952256,786432,0 -(1,1487:6630773,4812305:25952256,505283,11795 -(1,1487:6630773,4812305:25952256,505283,11795 -g1,1487:3078558,4812305 -[1,1487:3078558,4812305:0,0,0 -(1,1487:3078558,2439708:0,1703936,0 -k1,1487:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,1487:2537886,2439708:1179648,16384,0 -) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,1487:3078558,1915420:16384,1179648,0 -) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 -) -] -) -) -) -] -[1,1487:3078558,4812305:0,0,0 -(1,1487:3078558,2439708:0,1703936,0 -g1,1487:29030814,2439708 -g1,1487:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,1487:36151628,1915420:16384,1179648,0 -) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 -) -] -) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,1487:37855564,2439708:1179648,16384,0 -) -) -k1,1487:3078556,2439708:-34777008 -) -] -[1,1487:3078558,4812305:0,0,0 -(1,1487:3078558,49800853:0,16384,2228224 -k1,1487:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,1487:2537886,49800853:1179648,16384,0 -) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,1487:3078558,51504789:16384,1179648,0 -) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 -) -] -) -) -) -] -[1,1487:3078558,4812305:0,0,0 -(1,1487:3078558,49800853:0,16384,2228224 -g1,1487:29030814,49800853 -g1,1487:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,1487:36151628,51504789:16384,1179648,0 -) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 -) -] -) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,1487:37855564,49800853:1179648,16384,0 -) -) -k1,1487:3078556,49800853:-34777008 -) -] -g1,1487:6630773,4812305 -g1,1487:6630773,4812305 -g1,1487:9516978,4812305 -g1,1487:11710468,4812305 -g1,1487:13120147,4812305 -g1,1487:16560787,4812305 -k1,1487:31786111,4812305:15225324 -) -) -] -[1,1487:6630773,45706769:25952256,40108032,0 -(1,1487:6630773,45706769:25952256,40108032,0 -(1,1487:6630773,45706769:0,0,0 -g1,1487:6630773,45706769 -) -[1,1487:6630773,45706769:25952256,40108032,0 -v1,1436:6630773,6254097:0,393216,0 -(1,1436:6630773,15154778:25952256,9293897,196608 -g1,1436:6630773,15154778 -g1,1436:6630773,15154778 -g1,1436:6434165,15154778 -(1,1436:6434165,15154778:0,9293897,196608 -r1,1487:32779637,15154778:26345472,9490505,196608 -k1,1436:6434165,15154778:-26345472 -) -(1,1436:6434165,15154778:26345472,9293897,196608 -[1,1436:6630773,15154778:25952256,9097289,0 -(1,1407:6630773,6461715:25952256,404226,76021 -(1,1406:6630773,6461715:0,0,0 -g1,1406:6630773,6461715 -g1,1406:6630773,6461715 -g1,1406:6303093,6461715 -(1,1406:6303093,6461715:0,0,0 -) -g1,1406:6630773,6461715 -) -k1,1407:6630773,6461715:0 -g1,1407:7579211,6461715 -g1,1407:8211503,6461715 -h1,1407:8527649,6461715:0,0,0 -k1,1407:32583029,6461715:24055380 -g1,1407:32583029,6461715 -) -(1,1411:6630773,7127893:25952256,410518,76021 -(1,1409:6630773,7127893:0,0,0 -g1,1409:6630773,7127893 -g1,1409:6630773,7127893 -g1,1409:6303093,7127893 -(1,1409:6303093,7127893:0,0,0 -) -g1,1409:6630773,7127893 -) -g1,1411:7579210,7127893 -g1,1411:8843793,7127893 -k1,1411:8843793,7127893:0 -h1,1411:10108376,7127893:0,0,0 -k1,1411:32583028,7127893:22474652 -g1,1411:32583028,7127893 -) -(1,1413:6630773,8449431:25952256,404226,76021 -(1,1412:6630773,8449431:0,0,0 -g1,1412:6630773,8449431 -g1,1412:6630773,8449431 -g1,1412:6303093,8449431 -(1,1412:6303093,8449431:0,0,0 -) -g1,1412:6630773,8449431 -) -g1,1413:7263065,8449431 -g1,1413:7895357,8449431 -h1,1413:8211503,8449431:0,0,0 -k1,1413:32583029,8449431:24371526 -g1,1413:32583029,8449431 -) -(1,1417:6630773,9115609:25952256,410518,76021 -(1,1415:6630773,9115609:0,0,0 -g1,1415:6630773,9115609 -g1,1415:6630773,9115609 -g1,1415:6303093,9115609 -(1,1415:6303093,9115609:0,0,0 -) -g1,1415:6630773,9115609 -) -g1,1417:7579210,9115609 -g1,1417:8843793,9115609 -h1,1417:9792230,9115609:0,0,0 -k1,1417:32583030,9115609:22790800 -g1,1417:32583030,9115609 -) -(1,1419:6630773,10437147:25952256,410518,76021 -(1,1418:6630773,10437147:0,0,0 -g1,1418:6630773,10437147 -g1,1418:6630773,10437147 -g1,1418:6303093,10437147 -(1,1418:6303093,10437147:0,0,0 -) -g1,1418:6630773,10437147 -) -g1,1419:7895356,10437147 -g1,1419:8527648,10437147 -h1,1419:9476085,10437147:0,0,0 -k1,1419:32583029,10437147:23106944 -g1,1419:32583029,10437147 -) -(1,1423:6630773,11103325:25952256,404226,76021 -(1,1421:6630773,11103325:0,0,0 -g1,1421:6630773,11103325 -g1,1421:6630773,11103325 -g1,1421:6303093,11103325 -(1,1421:6303093,11103325:0,0,0 -) -g1,1421:6630773,11103325 -) -g1,1423:7579210,11103325 -g1,1423:8843793,11103325 -h1,1423:9792230,11103325:0,0,0 -k1,1423:32583030,11103325:22790800 -g1,1423:32583030,11103325 -) -(1,1425:6630773,12424863:25952256,410518,0 -(1,1424:6630773,12424863:0,0,0 -g1,1424:6630773,12424863 -g1,1424:6630773,12424863 -g1,1424:6303093,12424863 -(1,1424:6303093,12424863:0,0,0 -) -g1,1424:6630773,12424863 -) -g1,1425:7895356,12424863 -g1,1425:8527648,12424863 -h1,1425:8843794,12424863:0,0,0 -k1,1425:32583030,12424863:23739236 -g1,1425:32583030,12424863 -) -(1,1429:6630773,13091041:25952256,410518,76021 -(1,1427:6630773,13091041:0,0,0 -g1,1427:6630773,13091041 -g1,1427:6630773,13091041 -g1,1427:6303093,13091041 -(1,1427:6303093,13091041:0,0,0 -) -g1,1427:6630773,13091041 -) -g1,1429:7579210,13091041 -g1,1429:8843793,13091041 -h1,1429:9792230,13091041:0,0,0 -k1,1429:32583030,13091041:22790800 -g1,1429:32583030,13091041 -) -(1,1431:6630773,14412579:25952256,410518,0 -(1,1430:6630773,14412579:0,0,0 -g1,1430:6630773,14412579 -g1,1430:6630773,14412579 -g1,1430:6303093,14412579 -(1,1430:6303093,14412579:0,0,0 -) -g1,1430:6630773,14412579 -) -k1,1431:6630773,14412579:0 -g1,1431:8211502,14412579 -g1,1431:8843794,14412579 -k1,1431:8843794,14412579:0 -h1,1431:9476086,14412579:0,0,0 -k1,1431:32583030,14412579:23106944 -g1,1431:32583030,14412579 -) -(1,1435:6630773,15078757:25952256,410518,76021 -(1,1433:6630773,15078757:0,0,0 -g1,1433:6630773,15078757 -g1,1433:6630773,15078757 -g1,1433:6303093,15078757 -(1,1433:6303093,15078757:0,0,0 -) -g1,1433:6630773,15078757 -) -g1,1435:7579210,15078757 -g1,1435:8843793,15078757 -h1,1435:9792230,15078757:0,0,0 -k1,1435:32583030,15078757:22790800 -g1,1435:32583030,15078757 -) -] -) -g1,1436:32583029,15154778 -g1,1436:6630773,15154778 -g1,1436:6630773,15154778 -g1,1436:32583029,15154778 -g1,1436:32583029,15154778 -) -h1,1436:6630773,15351386:0,0,0 -v1,1440:6630773,17241450:0,393216,0 -(1,1454:6630773,27334834:25952256,10486600,0 -g1,1454:6630773,27334834 -g1,1454:6303093,27334834 -r1,1487:6401397,27334834:98304,10486600,0 -g1,1454:6600626,27334834 -g1,1454:6797234,27334834 -[1,1454:6797234,27334834:25785795,10486600,0 -(1,1441:6797234,17673988:25785795,825754,196608 -(1,1440:6797234,17673988:0,825754,196608 -r1,1487:7890375,17673988:1093141,1022362,196608 -k1,1440:6797234,17673988:-1093141 -) -(1,1440:6797234,17673988:1093141,825754,196608 -) -k1,1440:8115827,17673988:225452 -k1,1440:9433756,17673988:327680 -k1,1440:11516534,17673988:231386 -k1,1440:12407211,17673988:231385 -k1,1440:13778923,17673988:231386 -k1,1440:16469219,17673988:231385 -k1,1440:17377591,17673988:231385 -k1,1440:19694988,17673988:231386 -k1,1440:21558219,17673988:231385 -k1,1440:23009885,17673988:231386 -k1,1440:25043510,17673988:231385 -(1,1440:25043510,17673988:0,414482,115847 -r1,1487:25753488,17673988:709978,530329,115847 -k1,1440:25043510,17673988:-709978 -) -(1,1440:25043510,17673988:709978,414482,115847 -k1,1440:25043510,17673988:3277 -h1,1440:25750211,17673988:0,411205,112570 -) -k1,1440:26653305,17673988:225452 -k1,1440:28538130,17673988:225453 -k1,1440:30144426,17673988:225452 -k1,1440:31540351,17673988:225452 -k1,1441:32583029,17673988:0 -) -(1,1441:6797234,18515476:25785795,513147,134348 -k1,1440:9844598,18515476:212277 -k1,1440:11075960,18515476:212277 -k1,1440:12796876,18515476:212277 -k1,1440:15208541,18515476:212277 -k1,1440:16439903,18515476:212277 -k1,1440:19414523,18515476:212277 -k1,1440:22386521,18515476:212277 -k1,1440:23258090,18515476:212277 -k1,1440:26496164,18515476:212277 -k1,1440:27899886,18515476:212277 -k1,1440:31189078,18515476:212277 -k1,1440:32583029,18515476:0 -) -(1,1441:6797234,19356964:25785795,505283,126483 -k1,1440:9293879,19356964:172083 -k1,1440:10117390,19356964:172083 -(1,1440:10117390,19356964:0,414482,115847 -r1,1487:10827368,19356964:709978,530329,115847 -k1,1440:10117390,19356964:-709978 -) -(1,1440:10117390,19356964:709978,414482,115847 -k1,1440:10117390,19356964:3277 -h1,1440:10824091,19356964:0,411205,112570 -) -k1,1440:10999451,19356964:172083 -k1,1440:12362979,19356964:172083 -(1,1440:12362979,19356964:0,452978,115847 -r1,1487:15534939,19356964:3171960,568825,115847 -k1,1440:12362979,19356964:-3171960 -) -(1,1440:12362979,19356964:3171960,452978,115847 -k1,1440:12362979,19356964:3277 -h1,1440:15531662,19356964:0,411205,112570 -) -k1,1440:15707022,19356964:172083 -k1,1440:16561990,19356964:172083 -k1,1440:17522471,19356964:172083 -k1,1440:20999535,19356964:172083 -(1,1440:20999535,19356964:0,452978,115847 -r1,1487:24523207,19356964:3523672,568825,115847 -k1,1440:20999535,19356964:-3523672 -) -(1,1440:20999535,19356964:3523672,452978,115847 -k1,1440:20999535,19356964:3277 -h1,1440:24519930,19356964:0,411205,112570 -) -k1,1440:24868960,19356964:172083 -k1,1440:26674856,19356964:172083 -k1,1440:27662207,19356964:172083 -k1,1440:29214478,19356964:172083 -k1,1440:32583029,19356964:0 -) -(1,1441:6797234,20198452:25785795,513147,134348 -g1,1440:8378617,20198452 -(1,1440:8378617,20198452:0,414482,115847 -r1,1487:9088595,20198452:709978,530329,115847 -k1,1440:8378617,20198452:-709978 -) -(1,1440:8378617,20198452:709978,414482,115847 -k1,1440:8378617,20198452:3277 -h1,1440:9085318,20198452:0,411205,112570 -) -g1,1440:9287824,20198452 -g1,1440:9817354,20198452 -g1,1440:11008143,20198452 -g1,1440:12273643,20198452 -g1,1440:15087759,20198452 -g1,1440:16976506,20198452 -g1,1440:19483913,20198452 -g1,1440:20342434,20198452 -g1,1440:22554929,20198452 -g1,1440:24174323,20198452 -k1,1441:32583029,20198452:7090122 -g1,1441:32583029,20198452 -) -v1,1443:6797234,21388918:0,393216,0 -(1,1448:6797234,22272150:25785795,1276448,196608 -g1,1448:6797234,22272150 -g1,1448:6797234,22272150 -g1,1448:6600626,22272150 -(1,1448:6600626,22272150:0,1276448,196608 -r1,1487:32779637,22272150:26179011,1473056,196608 -k1,1448:6600625,22272150:-26179012 -) -(1,1448:6600626,22272150:26179011,1276448,196608 -[1,1448:6797234,22272150:25785795,1079840,0 -(1,1445:6797234,21596536:25785795,404226,76021 -(1,1444:6797234,21596536:0,0,0 -g1,1444:6797234,21596536 -g1,1444:6797234,21596536 -g1,1444:6469554,21596536 -(1,1444:6469554,21596536:0,0,0 -) -g1,1444:6797234,21596536 -) -g1,1445:8061817,21596536 -g1,1445:8694109,21596536 -k1,1445:8694109,21596536:0 -h1,1445:11539420,21596536:0,0,0 -k1,1445:32583028,21596536:21043608 -g1,1445:32583028,21596536 -) -(1,1446:6797234,22262714:25785795,388497,9436 -h1,1446:6797234,22262714:0,0,0 -g1,1446:8061817,22262714 -g1,1446:8694109,22262714 -h1,1446:9326400,22262714:0,0,0 -k1,1446:32583028,22262714:23256628 -g1,1446:32583028,22262714 -) -] -) -g1,1448:32583029,22272150 -g1,1448:6797234,22272150 -g1,1448:6797234,22272150 -g1,1448:32583029,22272150 -g1,1448:32583029,22272150 -) -h1,1448:6797234,22468758:0,0,0 -(1,1453:6797234,23834534:25785795,505283,134348 -h1,1451:6797234,23834534:983040,0,0 -k1,1451:9860284,23834534:218788 -k1,1452:12549779,23834534:218788 -(1,1452:12549779,23834534:0,414482,115847 -r1,1487:13259757,23834534:709978,530329,115847 -k1,1452:12549779,23834534:-709978 -) -(1,1452:12549779,23834534:709978,414482,115847 -k1,1452:12549779,23834534:3277 -h1,1452:13256480,23834534:0,411205,112570 -) -k1,1452:13478545,23834534:218788 -k1,1452:15707978,23834534:218788 -k1,1452:16918326,23834534:218788 -k1,1452:18650340,23834534:218788 -k1,1452:19520556,23834534:218788 -k1,1452:21620883,23834534:218788 -k1,1452:22195531,23834534:218788 -k1,1452:24094662,23834534:218788 -k1,1452:25597956,23834534:218788 -k1,1452:27324072,23834534:218788 -k1,1452:29029872,23834534:218788 -k1,1452:29931545,23834534:218788 -k1,1452:31657661,23834534:218788 -k1,1453:32583029,23834534:0 -) -(1,1453:6797234,24676022:25785795,513147,134348 -k1,1452:9410306,24676022:186274 -k1,1452:10668750,24676022:186275 -k1,1452:11386521,24676022:186274 -k1,1452:15186450,24676022:186274 -k1,1452:17902415,24676022:186275 -k1,1452:18747981,24676022:186274 -k1,1452:20626396,24676022:186275 -k1,1452:23650379,24676022:186274 -k1,1452:24324228,24676022:186261 -k1,1452:26488380,24676022:186275 -k1,1452:27333946,24676022:186274 -k1,1452:29533487,24676022:186275 -k1,1452:31313597,24676022:186274 -k1,1453:32583029,24676022:0 -) -(1,1453:6797234,25517510:25785795,513147,126483 -k1,1452:9296832,25517510:184211 -k1,1452:10290412,25517510:184210 -k1,1452:12658938,25517510:184211 -k1,1452:13915318,25517510:184211 -k1,1452:16109517,25517510:184210 -k1,1452:17312813,25517510:184211 -k1,1452:19775711,25517510:184211 -k1,1452:24158157,25517510:184210 -k1,1452:24970203,25517510:184211 -k1,1452:28448909,25517510:184211 -k1,1452:29099080,25517510:184210 -k1,1452:31591469,25517510:184211 -k1,1452:32583029,25517510:0 -) -(1,1453:6797234,26358998:25785795,513147,134348 -k1,1452:9865958,26358998:229704 -k1,1452:10747089,26358998:229703 -k1,1452:12452008,26358998:229704 -k1,1452:13037572,26358998:229704 -k1,1452:15465353,26358998:229703 -k1,1452:17881993,26358998:229704 -k1,1452:18794582,26358998:229704 -k1,1452:19490246,26358998:229703 -k1,1452:21469106,26358998:229704 -k1,1452:24643342,26358998:229703 -k1,1452:26617614,26358998:229704 -k1,1452:27203178,26358998:229704 -k1,1452:29410758,26358998:229703 -k1,1452:30632022,26358998:229704 -k1,1453:32583029,26358998:0 -) -(1,1453:6797234,27200486:25785795,513147,134348 -g1,1452:9045118,27200486 -g1,1452:10678275,27200486 -g1,1452:12612897,27200486 -(1,1452:12612897,27200486:0,414482,115847 -r1,1487:13322875,27200486:709978,530329,115847 -k1,1452:12612897,27200486:-709978 -) -(1,1452:12612897,27200486:709978,414482,115847 -k1,1452:12612897,27200486:3277 -h1,1452:13319598,27200486:0,411205,112570 -) -g1,1452:13522104,27200486 -g1,1452:14252830,27200486 -g1,1452:14807919,27200486 -k1,1453:32583029,27200486:15979424 -g1,1453:32583029,27200486 -) -] -g1,1454:32583029,27334834 -) -h1,1454:6630773,27334834:0,0,0 -(1,1457:6630773,28700610:25952256,513147,134348 -h1,1456:6630773,28700610:983040,0,0 -k1,1456:9092775,28700610:215428 -k1,1456:12556167,28700610:215428 -k1,1456:14238291,28700610:215428 -k1,1456:15975465,28700610:215428 -k1,1456:16850185,28700610:215428 -k1,1456:19786012,28700610:215428 -k1,1456:22921723,28700610:215427 -k1,1456:24293861,28700610:215428 -k1,1456:25192174,28700610:215428 -k1,1456:27057799,28700610:215428 -(1,1456:27057799,28700610:0,414482,115847 -r1,1487:27767777,28700610:709978,530329,115847 -k1,1456:27057799,28700610:-709978 -) -(1,1456:27057799,28700610:709978,414482,115847 -k1,1456:27057799,28700610:3277 -h1,1456:27764500,28700610:0,411205,112570 -) -k1,1456:28487177,28700610:215428 -k1,1456:30713250,28700610:215428 -k1,1456:31699381,28700610:215428 -(1,1456:31699381,28700610:0,414482,115847 -r1,1487:32409359,28700610:709978,530329,115847 -k1,1456:31699381,28700610:-709978 -) -(1,1456:31699381,28700610:709978,414482,115847 -k1,1456:31699381,28700610:3277 -h1,1456:32406082,28700610:0,411205,112570 -) -k1,1456:32583029,28700610:0 -) -(1,1457:6630773,29542098:25952256,513147,126483 -k1,1456:7467362,29542098:208754 -k1,1456:9378086,29542098:208754 -k1,1456:11715449,29542098:208754 -k1,1456:13622241,29542098:208754 -k1,1456:14987705,29542098:208754 -k1,1456:16904983,29542098:208754 -k1,1456:17765165,29542098:208754 -k1,1456:18329779,29542098:208754 -k1,1456:22009975,29542098:208754 -k1,1456:22750226,29542098:208754 -k1,1456:26100121,29542098:208754 -k1,1456:27327960,29542098:208754 -k1,1456:29379586,29542098:208754 -k1,1456:30247632,29542098:208754 -k1,1456:31475471,29542098:208754 -k1,1457:32583029,29542098:0 -) -(1,1457:6630773,30383586:25952256,513147,134348 -k1,1456:9424321,30383586:216672 -k1,1456:10172490,30383586:216672 -k1,1456:13530303,30383586:216672 -k1,1456:15127818,30383586:216671 -k1,1456:17412806,30383586:216672 -k1,1456:18913984,30383586:216672 -k1,1456:19486516,30383586:216672 -k1,1456:21897333,30383586:216672 -k1,1456:24809501,30383586:216672 -k1,1456:25557669,30383586:216671 -k1,1456:28072689,30383586:216672 -k1,1456:29237012,30383586:216672 -k1,1456:31635378,30383586:216672 -k1,1456:32583029,30383586:0 -) -(1,1457:6630773,31225074:25952256,513147,126483 -g1,1456:7849087,31225074 -g1,1456:10878161,31225074 -g1,1456:11744546,31225074 -(1,1456:11744546,31225074:0,414482,115847 -r1,1487:12454524,31225074:709978,530329,115847 -k1,1456:11744546,31225074:-709978 -) -(1,1456:11744546,31225074:709978,414482,115847 -k1,1456:11744546,31225074:3277 -h1,1456:12451247,31225074:0,411205,112570 -) -g1,1456:12653753,31225074 -k1,1457:32583028,31225074:17744960 -g1,1457:32583028,31225074 -) -v1,1459:6630773,32415540:0,393216,0 -(1,1466:6630773,33365357:25952256,1343033,196608 -g1,1466:6630773,33365357 -g1,1466:6630773,33365357 -g1,1466:6434165,33365357 -(1,1466:6434165,33365357:0,1343033,196608 -r1,1487:32779637,33365357:26345472,1539641,196608 -k1,1466:6434165,33365357:-26345472 -) -(1,1466:6434165,33365357:26345472,1343033,196608 -[1,1466:6630773,33365357:25952256,1146425,0 -(1,1461:6630773,32623158:25952256,404226,82312 -(1,1460:6630773,32623158:0,0,0 -g1,1460:6630773,32623158 -g1,1460:6630773,32623158 -g1,1460:6303093,32623158 -(1,1460:6303093,32623158:0,0,0 -) -g1,1460:6630773,32623158 -) -k1,1461:6630773,32623158:0 -g1,1461:10424522,32623158 -h1,1461:11372959,32623158:0,0,0 -k1,1461:32583029,32623158:21210070 -g1,1461:32583029,32623158 -) -(1,1465:6630773,33289336:25952256,404226,76021 -(1,1463:6630773,33289336:0,0,0 -g1,1463:6630773,33289336 -g1,1463:6630773,33289336 -g1,1463:6303093,33289336 -(1,1463:6303093,33289336:0,0,0 -) -g1,1463:6630773,33289336 -) -g1,1465:7579210,33289336 -g1,1465:8843793,33289336 -g1,1465:9159939,33289336 -g1,1465:10740668,33289336 -h1,1465:12321396,33289336:0,0,0 -k1,1465:32583028,33289336:20261632 -g1,1465:32583028,33289336 -) -] -) -g1,1466:32583029,33365357 -g1,1466:6630773,33365357 -g1,1466:6630773,33365357 -g1,1466:32583029,33365357 -g1,1466:32583029,33365357 -) -h1,1466:6630773,33561965:0,0,0 -(1,1470:6630773,34927741:25952256,505283,126483 -h1,1469:6630773,34927741:983040,0,0 -k1,1469:8500155,34927741:258507 -k1,1469:9777747,34927741:258507 -k1,1469:12697671,34927741:258507 -k1,1469:14985173,34927741:258507 -k1,1469:16112032,34927741:258507 -k1,1469:17474821,34927741:258507 -k1,1469:19019145,34927741:258508 -k1,1469:20302635,34927741:258507 -k1,1469:21845648,34927741:258507 -(1,1469:21845648,34927741:0,452978,115847 -r1,1487:24314185,34927741:2468537,568825,115847 -k1,1469:21845648,34927741:-2468537 -) -(1,1469:21845648,34927741:2468537,452978,115847 -k1,1469:21845648,34927741:3277 -h1,1469:24310908,34927741:0,411205,112570 -) -k1,1469:24572692,34927741:258507 -k1,1469:25362696,34927741:258507 -k1,1469:29131967,34927741:258507 -k1,1469:30581919,34927741:258507 -k1,1469:32124932,34927741:258507 -k1,1469:32583029,34927741:0 -) -(1,1470:6630773,35769229:25952256,513147,134348 -k1,1469:9158295,35769229:246214 -k1,1469:10423593,35769229:246213 -k1,1469:11861252,35769229:246214 -k1,1469:12758893,35769229:246213 -k1,1469:14456729,35769229:246214 -k1,1469:15362235,35769229:246214 -k1,1469:16627533,35769229:246213 -k1,1469:19742913,35769229:246214 -k1,1469:20648419,35769229:246214 -k1,1469:21913717,35769229:246213 -k1,1469:24137808,35769229:246214 -k1,1469:28316836,35769229:246213 -k1,1469:31563944,35769229:246214 -k1,1469:32583029,35769229:0 -) -(1,1470:6630773,36610717:25952256,505283,115847 -g1,1469:8672874,36610717 -g1,1469:9558265,36610717 -(1,1469:9558265,36610717:0,414482,115847 -r1,1487:10971666,36610717:1413401,530329,115847 -k1,1469:9558265,36610717:-1413401 -) -(1,1469:9558265,36610717:1413401,414482,115847 -k1,1469:9558265,36610717:3277 -h1,1469:10968389,36610717:0,411205,112570 -) -g1,1469:11170895,36610717 -g1,1469:12053009,36610717 -(1,1469:12053009,36610717:0,414482,115847 -r1,1487:13818122,36610717:1765113,530329,115847 -k1,1469:12053009,36610717:-1765113 -) -(1,1469:12053009,36610717:1765113,414482,115847 -k1,1469:12053009,36610717:3277 -h1,1469:13814845,36610717:0,411205,112570 -) -k1,1470:32583028,36610717:18591236 -g1,1470:32583028,36610717 -) -(1,1472:6630773,37452205:25952256,513147,134348 -h1,1471:6630773,37452205:983040,0,0 -k1,1471:9176565,37452205:291354 -k1,1471:11129913,37452205:291355 -k1,1471:12072695,37452205:291354 -k1,1471:13111815,37452205:291354 -k1,1471:15271601,37452205:291355 -k1,1471:16222247,37452205:291354 -k1,1471:17505162,37452205:291355 -k1,1471:18815601,37452205:291354 -k1,1471:23520149,37452205:291354 -k1,1471:24470796,37452205:291355 -k1,1471:25781235,37452205:291354 -k1,1471:27283694,37452205:291354 -k1,1471:28859555,37452205:291355 -k1,1471:31966991,37452205:291354 -k1,1471:32583029,37452205:0 -) -(1,1472:6630773,38293693:25952256,513147,134348 -k1,1471:10222503,38293693:185169 -k1,1471:11399231,38293693:185168 -k1,1471:13747088,38293693:185169 -k1,1471:16061522,38293693:185169 -k1,1471:18284861,38293693:185169 -k1,1471:19863980,38293693:185168 -k1,1471:21700001,38293693:185169 -k1,1471:24817251,38293693:185169 -k1,1471:27212294,38293693:185169 -k1,1471:29351746,38293693:185168 -k1,1471:30556000,38293693:185169 -k1,1472:32583029,38293693:0 -) -(1,1472:6630773,39135181:25952256,513147,126483 -k1,1471:9055009,39135181:213707 -k1,1471:11651605,39135181:213707 -k1,1471:13432933,39135181:213707 -k1,1471:14665725,39135181:213707 -k1,1471:19202842,39135181:213707 -k1,1471:22498706,39135181:213706 -k1,1471:23371705,39135181:213707 -k1,1471:24938730,39135181:213707 -k1,1471:27968519,39135181:213707 -k1,1471:29173786,39135181:213707 -k1,1471:30453764,39135181:213707 -k1,1471:32583029,39135181:0 -) -(1,1472:6630773,39976669:25952256,513147,134348 -g1,1471:9497317,39976669 -g1,1471:10746433,39976669 -g1,1471:11964747,39976669 -g1,1471:13323963,39976669 -g1,1471:14332562,39976669 -g1,1471:16029944,39976669 -h1,1471:16826862,39976669:0,0,0 -g1,1471:17026091,39976669 -g1,1471:18172971,39976669 -g1,1471:19142903,39976669 -g1,1471:22031730,39976669 -k1,1472:32583029,39976669:6645353 -g1,1472:32583029,39976669 -) -v1,1474:6630773,41167135:0,393216,0 -(1,1481:6630773,42101223:25952256,1327304,196608 -g1,1481:6630773,42101223 -g1,1481:6630773,42101223 -g1,1481:6434165,42101223 -(1,1481:6434165,42101223:0,1327304,196608 -r1,1487:32779637,42101223:26345472,1523912,196608 -k1,1481:6434165,42101223:-26345472 -) -(1,1481:6434165,42101223:26345472,1327304,196608 -[1,1481:6630773,42101223:25952256,1130696,0 -(1,1476:6630773,41359024:25952256,388497,9436 -(1,1475:6630773,41359024:0,0,0 -g1,1475:6630773,41359024 -g1,1475:6630773,41359024 -g1,1475:6303093,41359024 -(1,1475:6303093,41359024:0,0,0 -) -g1,1475:6630773,41359024 -) -g1,1476:7263065,41359024 -g1,1476:7895357,41359024 -k1,1476:7895357,41359024:0 -h1,1476:9476085,41359024:0,0,0 -k1,1476:32583029,41359024:23106944 -g1,1476:32583029,41359024 -) -(1,1480:6630773,42025202:25952256,404226,76021 -(1,1478:6630773,42025202:0,0,0 -g1,1478:6630773,42025202 -g1,1478:6630773,42025202 -g1,1478:6303093,42025202 -(1,1478:6303093,42025202:0,0,0 -) -g1,1478:6630773,42025202 -) -g1,1480:7579210,42025202 -g1,1480:8843793,42025202 -h1,1480:9159939,42025202:0,0,0 -k1,1480:32583029,42025202:23423090 -g1,1480:32583029,42025202 -) -] -) -g1,1481:32583029,42101223 -g1,1481:6630773,42101223 -g1,1481:6630773,42101223 -g1,1481:32583029,42101223 -g1,1481:32583029,42101223 -) -h1,1481:6630773,42297831:0,0,0 -(1,1485:6630773,43663607:25952256,505283,134348 -h1,1484:6630773,43663607:983040,0,0 -k1,1484:9606999,43663607:209951 -k1,1484:11552342,43663607:209950 -(1,1484:11552342,43663607:0,452978,122846 -r1,1487:14020879,43663607:2468537,575824,122846 -k1,1484:11552342,43663607:-2468537 -) -(1,1484:11552342,43663607:2468537,452978,122846 -k1,1484:11552342,43663607:3277 -h1,1484:14017602,43663607:0,411205,112570 -) -k1,1484:14230830,43663607:209951 -k1,1484:14230830,43663607:0 -k1,1484:14440780,43663607:209950 -k1,1484:16661376,43663607:209951 -k1,1484:18568053,43663607:209950 -k1,1484:21784796,43663607:209951 -k1,1484:22810014,43663607:209950 -k1,1484:24086236,43663607:209951 -k1,1484:25970631,43663607:209950 -k1,1484:26866744,43663607:209951 -k1,1484:29306884,43663607:209950 -k1,1484:32583029,43663607:0 -) -(1,1485:6630773,44505095:25952256,513147,134348 -k1,1484:7326261,44505095:163991 -k1,1484:8556524,44505095:163992 -k1,1484:11267899,44505095:163991 -k1,1484:12193418,44505095:163991 -k1,1484:13617667,44505095:163992 -k1,1484:14440950,44505095:163991 -k1,1484:17537022,44505095:163991 -k1,1484:18317051,44505095:163991 -k1,1484:22282786,44505095:163992 -k1,1484:25517794,44505095:163991 -k1,1484:26333213,44505095:163991 -k1,1484:29231367,44505095:163992 -k1,1484:31923737,44505095:163991 -k1,1484:32583029,44505095:0 -) -(1,1485:6630773,45346583:25952256,513147,134348 -k1,1484:7834833,45346583:184975 -k1,1484:9257783,45346583:184975 -k1,1484:12003250,45346583:184975 -k1,1484:13179786,45346583:184976 -k1,1484:15402931,45346583:184975 -k1,1484:16203944,45346583:184975 -k1,1484:17408004,45346583:184975 -k1,1484:20224250,45346583:184975 -k1,1484:21068517,45346583:184975 -k1,1484:24833725,45346583:184976 -k1,1484:27028689,45346583:184975 -k1,1484:28232749,45346583:184975 -k1,1484:32583029,45346583:0 -) -] -(1,1487:32583029,45706769:0,0,0 -g1,1487:32583029,45706769 -) -) -] -(1,1487:6630773,47279633:25952256,0,0 -h1,1487:6630773,47279633:25952256,0,0 -) -] -(1,1487:4262630,4025873:0,0,0 -[1,1487:-473656,4025873:0,0,0 -(1,1487:-473656,-710413:0,0,0 -(1,1487:-473656,-710413:0,0,0 -g1,1487:-473656,-710413 -) -g1,1487:-473656,-710413 -) -] -) -] -!26100 -}48 -Input:346:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:347:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:348:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:349:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:350:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:351:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:352:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:353:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:354:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!848 -{49 -[1,1594:4262630,47279633:28320399,43253760,0 -(1,1594:4262630,4025873:0,0,0 -[1,1594:-473656,4025873:0,0,0 -(1,1594:-473656,-710413:0,0,0 -(1,1594:-473656,-644877:0,0,0 -k1,1594:-473656,-644877:-65536 -) -(1,1594:-473656,4736287:0,0,0 -k1,1594:-473656,4736287:5209943 -) -g1,1594:-473656,-710413 -) -] -) -[1,1594:6630773,47279633:25952256,43253760,0 -[1,1594:6630773,4812305:25952256,786432,0 -(1,1594:6630773,4812305:25952256,505283,11795 -(1,1594:6630773,4812305:25952256,505283,11795 -g1,1594:3078558,4812305 -[1,1594:3078558,4812305:0,0,0 -(1,1594:3078558,2439708:0,1703936,0 -k1,1594:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,1594:2537886,2439708:1179648,16384,0 -) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,1594:3078558,1915420:16384,1179648,0 -) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 -) -] -) -) -) -] -[1,1594:3078558,4812305:0,0,0 -(1,1594:3078558,2439708:0,1703936,0 -g1,1594:29030814,2439708 -g1,1594:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,1594:36151628,1915420:16384,1179648,0 -) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 -) -] -) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,1594:37855564,2439708:1179648,16384,0 -) -) -k1,1594:3078556,2439708:-34777008 -) -] -[1,1594:3078558,4812305:0,0,0 -(1,1594:3078558,49800853:0,16384,2228224 -k1,1594:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,1594:2537886,49800853:1179648,16384,0 -) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,1594:3078558,51504789:16384,1179648,0 -) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 -) -] -) -) -) -] -[1,1594:3078558,4812305:0,0,0 -(1,1594:3078558,49800853:0,16384,2228224 -g1,1594:29030814,49800853 -g1,1594:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,1594:36151628,51504789:16384,1179648,0 -) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 -) -] -) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,1594:37855564,49800853:1179648,16384,0 -) -) -k1,1594:3078556,49800853:-34777008 -) -] -g1,1594:6630773,4812305 -k1,1594:22348274,4812305:14920583 -g1,1594:23970945,4812305 -g1,1594:24793421,4812305 -g1,1594:27528893,4812305 -g1,1594:28938572,4812305 -) -) -] -[1,1594:6630773,45706769:25952256,40108032,0 -(1,1594:6630773,45706769:25952256,40108032,0 -(1,1594:6630773,45706769:0,0,0 -g1,1594:6630773,45706769 -) -[1,1594:6630773,45706769:25952256,40108032,0 -(1,1485:6630773,6254097:25952256,513147,134348 -k1,1484:8803339,6254097:218282 -k1,1484:10401808,6254097:218281 -k1,1484:11611650,6254097:218282 -k1,1484:13868101,6254097:218281 -k1,1484:16485001,6254097:218282 -k1,1484:17974680,6254097:218281 -k1,1484:19297244,6254097:218282 -k1,1484:21195869,6254097:218282 -k1,1484:22073442,6254097:218281 -k1,1484:25367984,6254097:218282 -k1,1484:28146757,6254097:218281 -k1,1484:29051201,6254097:218282 -k1,1484:29625342,6254097:218281 -k1,1484:31923737,6254097:218282 -k1,1484:32583029,6254097:0 -) -(1,1485:6630773,7095585:25952256,513147,134348 -g1,1484:8712851,7095585 -g1,1484:11728162,7095585 -g1,1484:14998408,7095585 -g1,1484:15849065,7095585 -g1,1484:16404154,7095585 -g1,1484:18801461,7095585 -g1,1484:20781303,7095585 -g1,1484:21639824,7095585 -k1,1485:32583029,7095585:8758890 -g1,1485:32583029,7095585 -) -v1,1487:6630773,8078143:0,393216,0 -(1,1500:6630773,10999947:25952256,3315020,196608 -g1,1500:6630773,10999947 -g1,1500:6630773,10999947 -g1,1500:6434165,10999947 -(1,1500:6434165,10999947:0,3315020,196608 -r1,1594:32779637,10999947:26345472,3511628,196608 -k1,1500:6434165,10999947:-26345472 -) -(1,1500:6434165,10999947:26345472,3315020,196608 -[1,1500:6630773,10999947:25952256,3118412,0 -(1,1489:6630773,8270032:25952256,388497,9436 -(1,1488:6630773,8270032:0,0,0 -g1,1488:6630773,8270032 -g1,1488:6630773,8270032 -g1,1488:6303093,8270032 -(1,1488:6303093,8270032:0,0,0 -) -g1,1488:6630773,8270032 -) -g1,1489:7579210,8270032 -g1,1489:8211502,8270032 -h1,1489:8843793,8270032:0,0,0 -k1,1489:32583029,8270032:23739236 -g1,1489:32583029,8270032 -) -(1,1493:6630773,8936210:25952256,404226,76021 -(1,1491:6630773,8936210:0,0,0 -g1,1491:6630773,8936210 -g1,1491:6630773,8936210 -g1,1491:6303093,8936210 -(1,1491:6303093,8936210:0,0,0 -) -g1,1491:6630773,8936210 -) -g1,1493:7579210,8936210 -g1,1493:8843793,8936210 -h1,1493:9159939,8936210:0,0,0 -k1,1493:32583029,8936210:23423090 -g1,1493:32583029,8936210 -) -(1,1495:6630773,10257748:25952256,388497,9436 -(1,1494:6630773,10257748:0,0,0 -g1,1494:6630773,10257748 -g1,1494:6630773,10257748 -g1,1494:6303093,10257748 -(1,1494:6303093,10257748:0,0,0 -) -g1,1494:6630773,10257748 -) -g1,1495:7579210,10257748 -g1,1495:8211502,10257748 -h1,1495:8843793,10257748:0,0,0 -k1,1495:32583029,10257748:23739236 -g1,1495:32583029,10257748 -) -(1,1499:6630773,10923926:25952256,404226,76021 -(1,1497:6630773,10923926:0,0,0 -g1,1497:6630773,10923926 -g1,1497:6630773,10923926 -g1,1497:6303093,10923926 -(1,1497:6303093,10923926:0,0,0 -) -g1,1497:6630773,10923926 -) -g1,1499:7579210,10923926 -g1,1499:8843793,10923926 -h1,1499:9159939,10923926:0,0,0 -k1,1499:32583029,10923926:23423090 -g1,1499:32583029,10923926 -) -] -) -g1,1500:32583029,10999947 -g1,1500:6630773,10999947 -g1,1500:6630773,10999947 -g1,1500:32583029,10999947 -g1,1500:32583029,10999947 -) -h1,1500:6630773,11196555:0,0,0 -(1,1504:6630773,12354423:25952256,513147,134348 -h1,1503:6630773,12354423:983040,0,0 -k1,1503:9624718,12354423:219151 -k1,1503:10862954,12354423:219151 -k1,1503:13403390,12354423:219151 -k1,1503:16143711,12354423:219151 -k1,1503:19109477,12354423:219152 -k1,1503:21194438,12354423:219151 -k1,1503:21769449,12354423:219151 -k1,1503:26321841,12354423:219151 -(1,1503:26321841,12354423:0,452978,115847 -r1,1594:28438666,12354423:2116825,568825,115847 -k1,1503:26321841,12354423:-2116825 -) -(1,1503:26321841,12354423:2116825,452978,115847 -k1,1503:26321841,12354423:3277 -h1,1503:28435389,12354423:0,411205,112570 -) -k1,1503:28657817,12354423:219151 -k1,1503:30893511,12354423:219151 -k1,1503:32583029,12354423:0 -) -(1,1504:6630773,13195911:25952256,505283,134348 -k1,1503:7803611,13195911:153753 -k1,1503:10187554,13195911:153753 -k1,1503:12862477,13195911:153753 -k1,1503:15762844,13195911:153753 -(1,1503:15762844,13195911:0,452978,115847 -r1,1594:16824533,13195911:1061689,568825,115847 -k1,1503:15762844,13195911:-1061689 -) -(1,1503:15762844,13195911:1061689,452978,115847 -k1,1503:15762844,13195911:3277 -h1,1503:16821256,13195911:0,411205,112570 -) -k1,1503:16978286,13195911:153753 -k1,1503:18997848,13195911:153752 -k1,1503:19922304,13195911:153753 -(1,1503:19922304,13195911:0,452978,122846 -r1,1594:22390841,13195911:2468537,575824,122846 -k1,1503:19922304,13195911:-2468537 -) -(1,1503:19922304,13195911:2468537,452978,122846 -k1,1503:19922304,13195911:3277 -h1,1503:22387564,13195911:0,411205,112570 -) -k1,1503:22544594,13195911:153753 -k1,1503:24714890,13195911:153753 -k1,1503:26060088,13195911:153753 -k1,1503:27232926,13195911:153753 -k1,1503:29836415,13195911:153753 -k1,1504:32583029,13195911:0 -) -(1,1504:6630773,14037399:25952256,513147,134348 -(1,1503:6630773,14037399:0,435480,115847 -r1,1594:7340751,14037399:709978,551327,115847 -k1,1503:6630773,14037399:-709978 -) -(1,1503:6630773,14037399:709978,435480,115847 -k1,1503:6630773,14037399:3277 -h1,1503:7337474,14037399:0,411205,112570 -) -g1,1503:7539980,14037399 -g1,1503:10080155,14037399 -g1,1503:11298469,14037399 -g1,1503:14781707,14037399 -g1,1503:16548557,14037399 -g1,1503:17766871,14037399 -g1,1503:20196290,14037399 -k1,1504:32583029,14037399:9691899 -g1,1504:32583029,14037399 -) -v1,1506:6630773,15019957:0,393216,0 -(1,1525:6630773,19945206:25952256,5318465,196608 -g1,1525:6630773,19945206 -g1,1525:6630773,19945206 -g1,1525:6434165,19945206 -(1,1525:6434165,19945206:0,5318465,196608 -r1,1594:32779637,19945206:26345472,5515073,196608 -k1,1525:6434165,19945206:-26345472 -) -(1,1525:6434165,19945206:26345472,5318465,196608 -[1,1525:6630773,19945206:25952256,5121857,0 -(1,1508:6630773,15227575:25952256,404226,76021 -(1,1507:6630773,15227575:0,0,0 -g1,1507:6630773,15227575 -g1,1507:6630773,15227575 -g1,1507:6303093,15227575 -(1,1507:6303093,15227575:0,0,0 -) -g1,1507:6630773,15227575 -) -g1,1508:7579210,15227575 -g1,1508:8211502,15227575 -h1,1508:8843793,15227575:0,0,0 -k1,1508:32583029,15227575:23739236 -g1,1508:32583029,15227575 -) -(1,1512:6630773,15893753:25952256,404226,76021 -(1,1510:6630773,15893753:0,0,0 -g1,1510:6630773,15893753 -g1,1510:6630773,15893753 -g1,1510:6303093,15893753 -(1,1510:6303093,15893753:0,0,0 -) -g1,1510:6630773,15893753 -) -g1,1512:7579210,15893753 -g1,1512:8843793,15893753 -h1,1512:11689104,15893753:0,0,0 -k1,1512:32583028,15893753:20893924 -g1,1512:32583028,15893753 -) -(1,1514:6630773,17215291:25952256,404226,76021 -(1,1513:6630773,17215291:0,0,0 -g1,1513:6630773,17215291 -g1,1513:6630773,17215291 -g1,1513:6303093,17215291 -(1,1513:6303093,17215291:0,0,0 -) -g1,1513:6630773,17215291 -) -g1,1514:7579210,17215291 -g1,1514:8843793,17215291 -h1,1514:9476084,17215291:0,0,0 -k1,1514:32583028,17215291:23106944 -g1,1514:32583028,17215291 -) -(1,1518:6630773,17881469:25952256,404226,76021 -(1,1516:6630773,17881469:0,0,0 -g1,1516:6630773,17881469 -g1,1516:6630773,17881469 -g1,1516:6303093,17881469 -(1,1516:6303093,17881469:0,0,0 -) -g1,1516:6630773,17881469 -) -g1,1518:7579210,17881469 -g1,1518:8843793,17881469 -h1,1518:9159939,17881469:0,0,0 -k1,1518:32583029,17881469:23423090 -g1,1518:32583029,17881469 -) -(1,1520:6630773,19203007:25952256,388497,9436 -(1,1519:6630773,19203007:0,0,0 -g1,1519:6630773,19203007 -g1,1519:6630773,19203007 -g1,1519:6303093,19203007 -(1,1519:6303093,19203007:0,0,0 -) -g1,1519:6630773,19203007 -) -g1,1520:7579210,19203007 -g1,1520:8527647,19203007 -h1,1520:9159938,19203007:0,0,0 -k1,1520:32583030,19203007:23423092 -g1,1520:32583030,19203007 -) -(1,1524:6630773,19869185:25952256,404226,76021 -(1,1522:6630773,19869185:0,0,0 -g1,1522:6630773,19869185 -g1,1522:6630773,19869185 -g1,1522:6303093,19869185 -(1,1522:6303093,19869185:0,0,0 -) -g1,1522:6630773,19869185 -) -g1,1524:7579210,19869185 -g1,1524:8843793,19869185 -h1,1524:9159939,19869185:0,0,0 -k1,1524:32583029,19869185:23423090 -g1,1524:32583029,19869185 -) -] -) -g1,1525:32583029,19945206 -g1,1525:6630773,19945206 -g1,1525:6630773,19945206 -g1,1525:32583029,19945206 -g1,1525:32583029,19945206 -) -h1,1525:6630773,20141814:0,0,0 -(1,1529:6630773,21299682:25952256,513147,134348 -h1,1528:6630773,21299682:983040,0,0 -k1,1528:8284714,21299682:193144 -k1,1528:9164020,21299682:193144 -k1,1528:9713024,21299682:193144 -k1,1528:11749040,21299682:193144 -k1,1528:12601476,21299682:193144 -k1,1528:13565323,21299682:193144 -k1,1528:16832761,21299682:193144 -k1,1528:18044990,21299682:193144 -k1,1528:20081006,21299682:193144 -k1,1528:21635333,21299682:193144 -k1,1528:24194327,21299682:193144 -k1,1528:25406556,21299682:193144 -k1,1528:27380313,21299682:193144 -k1,1528:28232749,21299682:193144 -k1,1528:32583029,21299682:0 -) -(1,1529:6630773,22141170:25952256,505283,115847 -g1,1528:9014317,22141170 -g1,1528:10232631,22141170 -g1,1528:13210587,22141170 -g1,1528:15090159,22141170 -g1,1528:15820885,22141170 -(1,1528:15820885,22141170:0,414482,115847 -r1,1594:16530863,22141170:709978,530329,115847 -k1,1528:15820885,22141170:-709978 -) -(1,1528:15820885,22141170:709978,414482,115847 -k1,1528:15820885,22141170:3277 -h1,1528:16527586,22141170:0,411205,112570 -) -k1,1529:32583029,22141170:15878496 -g1,1529:32583029,22141170 -) -v1,1531:6630773,23123729:0,393216,0 -(1,1540:6630773,25379355:25952256,2648842,196608 -g1,1540:6630773,25379355 -g1,1540:6630773,25379355 -g1,1540:6434165,25379355 -(1,1540:6434165,25379355:0,2648842,196608 -r1,1594:32779637,25379355:26345472,2845450,196608 -k1,1540:6434165,25379355:-26345472 -) -(1,1540:6434165,25379355:26345472,2648842,196608 -[1,1540:6630773,25379355:25952256,2452234,0 -(1,1533:6630773,23315618:25952256,388497,9436 -(1,1532:6630773,23315618:0,0,0 -g1,1532:6630773,23315618 -g1,1532:6630773,23315618 -g1,1532:6303093,23315618 -(1,1532:6303093,23315618:0,0,0 -) -g1,1532:6630773,23315618 -) -g1,1533:9476084,23315618 -g1,1533:10108376,23315618 -h1,1533:12637541,23315618:0,0,0 -k1,1533:32583029,23315618:19945488 -g1,1533:32583029,23315618 -) -(1,1537:6630773,24637156:25952256,410518,107478 -g1,1537:7579210,24637156 -g1,1537:10108376,24637156 -g1,1537:11056813,24637156 -g1,1537:13902124,24637156 -g1,1537:14534416,24637156 -g1,1537:17695873,24637156 -g1,1537:18960456,24637156 -g1,1537:21805767,24637156 -g1,1537:22754204,24637156 -g1,1537:25283370,24637156 -k1,1537:32583029,24637156:4770494 -g1,1537:32583029,24637156 -) -(1,1539:6630773,25303334:25952256,404226,76021 -(1,1537:6630773,25303334:0,0,0 -g1,1537:6630773,25303334 -g1,1537:6630773,25303334 -g1,1537:6303093,25303334 -(1,1537:6303093,25303334:0,0,0 -) -g1,1537:6630773,25303334 -) -g1,1539:7579210,25303334 -g1,1539:8843793,25303334 -h1,1539:9476084,25303334:0,0,0 -k1,1539:32583028,25303334:23106944 -g1,1539:32583028,25303334 -) -] -) -g1,1540:32583029,25379355 -g1,1540:6630773,25379355 -g1,1540:6630773,25379355 -g1,1540:32583029,25379355 -g1,1540:32583029,25379355 -) -h1,1540:6630773,25575963:0,0,0 -(1,1544:6630773,26733831:25952256,505283,134348 -h1,1543:6630773,26733831:983040,0,0 -k1,1543:9283736,26733831:204538 -k1,1543:12001579,26733831:204537 -k1,1543:13397562,26733831:204538 -k1,1543:16162591,26733831:204537 -k1,1543:17358689,26733831:204538 -k1,1543:21062194,26733831:204538 -k1,1543:24060531,26733831:204537 -k1,1543:24892904,26733831:204538 -k1,1543:26699141,26733831:204537 -k1,1543:30234219,26733831:204538 -k1,1544:32583029,26733831:0 -) -(1,1544:6630773,27575319:25952256,513147,126483 -k1,1543:8130471,27575319:158831 -k1,1543:8820799,27575319:158831 -k1,1543:12169267,27575319:158831 -k1,1543:13519543,27575319:158831 -k1,1543:14546726,27575319:158831 -k1,1543:15520825,27575319:158831 -k1,1543:16745927,27575319:158831 -k1,1543:18435024,27575319:158831 -k1,1543:19245283,27575319:158831 -k1,1543:21257472,27575319:158831 -k1,1543:23238859,27575319:158831 -k1,1543:24416775,27575319:158831 -k1,1543:28092268,27575319:158831 -k1,1543:30886302,27575319:158831 -k1,1543:32583029,27575319:0 -) -(1,1544:6630773,28416807:25952256,513147,126483 -k1,1543:8048573,28416807:245361 -k1,1543:10010323,28416807:245362 -k1,1543:10914976,28416807:245361 -k1,1543:13780466,28416807:245361 -k1,1543:16210143,28416807:245362 -k1,1543:18329834,28416807:245361 -k1,1543:21600993,28416807:245362 -k1,1543:23856999,28416807:245361 -(1,1543:23856999,28416807:0,452978,122846 -r1,1594:26325536,28416807:2468537,575824,122846 -k1,1543:23856999,28416807:-2468537 -) -(1,1543:23856999,28416807:2468537,452978,122846 -k1,1543:23856999,28416807:3277 -h1,1543:26322259,28416807:0,411205,112570 -) -k1,1543:26570897,28416807:245361 -k1,1543:28826904,28416807:245362 -k1,1543:30304342,28416807:245361 -k1,1543:32583029,28416807:0 -) -(1,1544:6630773,29258295:25952256,505283,134348 -h1,1543:7601361,29258295:0,0,0 -g1,1543:7800590,29258295 -g1,1543:8809189,29258295 -g1,1543:10506571,29258295 -h1,1543:11303489,29258295:0,0,0 -k1,1544:32583029,29258295:20898776 -g1,1544:32583029,29258295 -) -v1,1546:6630773,30240853:0,393216,0 -(1,1577:6630773,39141534:25952256,9293897,196608 -g1,1577:6630773,39141534 -g1,1577:6630773,39141534 -g1,1577:6434165,39141534 -(1,1577:6434165,39141534:0,9293897,196608 -r1,1594:32779637,39141534:26345472,9490505,196608 -k1,1577:6434165,39141534:-26345472 -) -(1,1577:6434165,39141534:26345472,9293897,196608 -[1,1577:6630773,39141534:25952256,9097289,0 -(1,1548:6630773,30448471:25952256,404226,76021 -(1,1547:6630773,30448471:0,0,0 -g1,1547:6630773,30448471 -g1,1547:6630773,30448471 -g1,1547:6303093,30448471 -(1,1547:6303093,30448471:0,0,0 -) -g1,1547:6630773,30448471 -) -k1,1548:6630773,30448471:0 -h1,1548:11056813,30448471:0,0,0 -k1,1548:32583029,30448471:21526216 -g1,1548:32583029,30448471 -) -(1,1552:6630773,31114649:25952256,404226,76021 -(1,1550:6630773,31114649:0,0,0 -g1,1550:6630773,31114649 -g1,1550:6630773,31114649 -g1,1550:6303093,31114649 -(1,1550:6303093,31114649:0,0,0 -) -g1,1550:6630773,31114649 -) -g1,1552:7579210,31114649 -g1,1552:8843793,31114649 -h1,1552:10108376,31114649:0,0,0 -k1,1552:32583028,31114649:22474652 -g1,1552:32583028,31114649 -) -(1,1554:6630773,32436187:25952256,404226,107478 -(1,1553:6630773,32436187:0,0,0 -g1,1553:6630773,32436187 -g1,1553:6630773,32436187 -g1,1553:6303093,32436187 -(1,1553:6303093,32436187:0,0,0 -) -g1,1553:6630773,32436187 -) -k1,1554:6630773,32436187:0 -h1,1554:11056813,32436187:0,0,0 -k1,1554:32583029,32436187:21526216 -g1,1554:32583029,32436187 -) -(1,1558:6630773,33102365:25952256,404226,76021 -(1,1556:6630773,33102365:0,0,0 -g1,1556:6630773,33102365 -g1,1556:6630773,33102365 -g1,1556:6303093,33102365 -(1,1556:6303093,33102365:0,0,0 -) -g1,1556:6630773,33102365 -) -g1,1558:7579210,33102365 -g1,1558:8843793,33102365 -h1,1558:10108376,33102365:0,0,0 -k1,1558:32583028,33102365:22474652 -g1,1558:32583028,33102365 -) -(1,1560:6630773,34423903:25952256,404226,76021 -(1,1559:6630773,34423903:0,0,0 -g1,1559:6630773,34423903 -g1,1559:6630773,34423903 -g1,1559:6303093,34423903 -(1,1559:6303093,34423903:0,0,0 -) -g1,1559:6630773,34423903 -) -k1,1560:6630773,34423903:0 -h1,1560:10740667,34423903:0,0,0 -k1,1560:32583029,34423903:21842362 -g1,1560:32583029,34423903 -) -(1,1564:6630773,35090081:25952256,404226,76021 -(1,1562:6630773,35090081:0,0,0 -g1,1562:6630773,35090081 -g1,1562:6630773,35090081 -g1,1562:6303093,35090081 -(1,1562:6303093,35090081:0,0,0 -) -g1,1562:6630773,35090081 -) -g1,1564:7579210,35090081 -g1,1564:8843793,35090081 -h1,1564:10424521,35090081:0,0,0 -k1,1564:32583029,35090081:22158508 -g1,1564:32583029,35090081 -) -(1,1566:6630773,36411619:25952256,404226,76021 -(1,1565:6630773,36411619:0,0,0 -g1,1565:6630773,36411619 -g1,1565:6630773,36411619 -g1,1565:6303093,36411619 -(1,1565:6303093,36411619:0,0,0 -) -g1,1565:6630773,36411619 -) -k1,1566:6630773,36411619:0 -g1,1566:10740667,36411619 -g1,1566:11372959,36411619 -h1,1566:12321396,36411619:0,0,0 -k1,1566:32583028,36411619:20261632 -g1,1566:32583028,36411619 -) -(1,1570:6630773,37077797:25952256,404226,76021 -(1,1568:6630773,37077797:0,0,0 -g1,1568:6630773,37077797 -g1,1568:6630773,37077797 -g1,1568:6303093,37077797 -(1,1568:6303093,37077797:0,0,0 -) -g1,1568:6630773,37077797 -) -g1,1570:7579210,37077797 -g1,1570:8843793,37077797 -h1,1570:10108376,37077797:0,0,0 -k1,1570:32583028,37077797:22474652 -g1,1570:32583028,37077797 -) -(1,1572:6630773,38399335:25952256,404226,76021 -(1,1571:6630773,38399335:0,0,0 -g1,1571:6630773,38399335 -g1,1571:6630773,38399335 -g1,1571:6303093,38399335 -(1,1571:6303093,38399335:0,0,0 -) -g1,1571:6630773,38399335 -) -k1,1572:6630773,38399335:0 -g1,1572:11056813,38399335 -g1,1572:11689105,38399335 -h1,1572:12637542,38399335:0,0,0 -k1,1572:32583030,38399335:19945488 -g1,1572:32583030,38399335 -) -(1,1576:6630773,39065513:25952256,404226,76021 -(1,1574:6630773,39065513:0,0,0 -g1,1574:6630773,39065513 -g1,1574:6630773,39065513 -g1,1574:6303093,39065513 -(1,1574:6303093,39065513:0,0,0 -) -g1,1574:6630773,39065513 -) -g1,1576:7579210,39065513 -g1,1576:8843793,39065513 -h1,1576:10108376,39065513:0,0,0 -k1,1576:32583028,39065513:22474652 -g1,1576:32583028,39065513 -) -] -) -g1,1577:32583029,39141534 -g1,1577:6630773,39141534 -g1,1577:6630773,39141534 -g1,1577:32583029,39141534 -g1,1577:32583029,39141534 -) -h1,1577:6630773,39338142:0,0,0 -v1,1581:6630773,40812390:0,393216,0 -(1,1591:6630773,45706769:25952256,5287595,0 -g1,1591:6630773,45706769 -g1,1591:6303093,45706769 -r1,1594:6401397,45706769:98304,5287595,0 -g1,1591:6600626,45706769 -g1,1591:6797234,45706769 -[1,1591:6797234,45706769:25785795,5287595,0 -(1,1582:6797234,41244928:25785795,825754,196608 -(1,1581:6797234,41244928:0,825754,196608 -r1,1594:8834093,41244928:2036859,1022362,196608 -k1,1581:6797234,41244928:-2036859 -) -(1,1581:6797234,41244928:2036859,825754,196608 -) -k1,1581:8991677,41244928:157584 -k1,1581:10309606,41244928:327680 -k1,1581:12275984,41244928:157584 -k1,1581:13452654,41244928:157585 -k1,1581:16766452,41244928:157584 -k1,1581:17583328,41244928:157584 -k1,1581:18759997,41244928:157584 -k1,1581:21672059,41244928:157584 -k1,1581:24491060,41244928:157584 -k1,1581:26724170,41244928:157585 -k1,1581:28923856,41244928:157584 -k1,1581:30272885,41244928:157584 -k1,1581:32583029,41244928:0 -) -(1,1582:6797234,42086416:25785795,513147,126483 -k1,1581:8300629,42086416:206437 -k1,1581:9526152,42086416:206438 -k1,1581:10905028,42086416:206437 -k1,1581:14628127,42086416:206437 -k1,1581:16845210,42086416:206438 -k1,1581:19813990,42086416:206437 -k1,1581:22204742,42086416:206437 -k1,1581:23963072,42086416:206437 -k1,1581:24567969,42086416:206438 -k1,1581:25305903,42086416:206437 -k1,1581:25868200,42086416:206437 -(1,1581:25868200,42086416:0,452978,115847 -r1,1594:27985025,42086416:2116825,568825,115847 -k1,1581:25868200,42086416:-2116825 -) -(1,1581:25868200,42086416:2116825,452978,115847 -k1,1581:25868200,42086416:3277 -h1,1581:27981748,42086416:0,411205,112570 -) -k1,1581:28191463,42086416:206438 -k1,1581:31329325,42086416:206437 -k1,1581:32583029,42086416:0 -) -(1,1582:6797234,42927904:25785795,505283,126483 -g1,1581:8100745,42927904 -g1,1581:9392459,42927904 -(1,1581:9392459,42927904:0,452978,122846 -r1,1594:13619555,42927904:4227096,575824,122846 -k1,1581:9392459,42927904:-4227096 -) -(1,1581:9392459,42927904:4227096,452978,122846 -k1,1581:9392459,42927904:3277 -h1,1581:13616278,42927904:0,411205,112570 -) -g1,1581:13818784,42927904 -g1,1581:15209458,42927904 -(1,1581:15209458,42927904:0,452978,115847 -r1,1594:19084842,42927904:3875384,568825,115847 -k1,1581:15209458,42927904:-3875384 -) -(1,1581:15209458,42927904:3875384,452978,115847 -k1,1581:15209458,42927904:3277 -h1,1581:19081565,42927904:0,411205,112570 -) -g1,1581:19284071,42927904 -g1,1581:20099338,42927904 -g1,1581:21757398,42927904 -k1,1582:32583029,42927904:6677202 -g1,1582:32583029,42927904 -) -v1,1584:6797234,44118370:0,393216,0 -(1,1589:6797234,44985873:25785795,1260719,196608 -g1,1589:6797234,44985873 -g1,1589:6797234,44985873 -g1,1589:6600626,44985873 -(1,1589:6600626,44985873:0,1260719,196608 -r1,1594:32779637,44985873:26179011,1457327,196608 -k1,1589:6600625,44985873:-26179012 -) -(1,1589:6600626,44985873:26179011,1260719,196608 -[1,1589:6797234,44985873:25785795,1064111,0 -(1,1586:6797234,44310259:25785795,388497,9436 -(1,1585:6797234,44310259:0,0,0 -g1,1585:6797234,44310259 -g1,1585:6797234,44310259 -g1,1585:6469554,44310259 -(1,1585:6469554,44310259:0,0,0 -) -g1,1585:6797234,44310259 -) -g1,1586:7429526,44310259 -g1,1586:8061818,44310259 -g1,1586:10907129,44310259 -g1,1586:11539421,44310259 -h1,1586:14068586,44310259:0,0,0 -k1,1586:32583030,44310259:18514444 -g1,1586:32583030,44310259 -) -(1,1587:6797234,44976437:25785795,388497,9436 -h1,1587:6797234,44976437:0,0,0 -g1,1587:9642545,44976437 -g1,1587:10274837,44976437 -g1,1587:13120148,44976437 -g1,1587:13752440,44976437 -h1,1587:14068586,44976437:0,0,0 -k1,1587:32583030,44976437:18514444 -g1,1587:32583030,44976437 -) -] -) -g1,1589:32583029,44985873 -g1,1589:6797234,44985873 -g1,1589:6797234,44985873 -g1,1589:32583029,44985873 -g1,1589:32583029,44985873 -) -h1,1589:6797234,45182481:0,0,0 -] -g1,1591:32583029,45706769 -) -h1,1591:6630773,45706769:0,0,0 -] -(1,1594:32583029,45706769:0,0,0 -g1,1594:32583029,45706769 -) -) -] -(1,1594:6630773,47279633:25952256,0,0 -h1,1594:6630773,47279633:25952256,0,0 -) -] -(1,1594:4262630,4025873:0,0,0 -[1,1594:-473656,4025873:0,0,0 -(1,1594:-473656,-710413:0,0,0 -(1,1594:-473656,-710413:0,0,0 -g1,1594:-473656,-710413 -) -g1,1594:-473656,-710413 -) -] -) -] -!23555 -}49 -Input:355:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:356:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:357:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:358:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:359:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:360:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:361:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:362:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:363:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:364:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:365:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:366:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:367:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:368:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:369:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:370:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:371:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:372:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:373:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:374:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:375:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:376:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:377:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:378:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:379:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:380:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:381:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:382:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:383:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:384:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:385:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:386:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:387:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:388:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:389:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:390:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:391:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:392:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!3545 -{50 -[1,1795:4262630,47279633:28320399,43253760,0 -(1,1795:4262630,4025873:0,0,0 -[1,1795:-473656,4025873:0,0,0 -(1,1795:-473656,-710413:0,0,0 -(1,1795:-473656,-644877:0,0,0 -k1,1795:-473656,-644877:-65536 -) -(1,1795:-473656,4736287:0,0,0 -k1,1795:-473656,4736287:5209943 -) -g1,1795:-473656,-710413 -) -] -) -[1,1795:6630773,47279633:25952256,43253760,0 -[1,1795:6630773,4812305:25952256,786432,0 -(1,1795:6630773,4812305:25952256,505283,11795 -(1,1795:6630773,4812305:25952256,505283,11795 -g1,1795:3078558,4812305 -[1,1795:3078558,4812305:0,0,0 -(1,1795:3078558,2439708:0,1703936,0 -k1,1795:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,1795:2537886,2439708:1179648,16384,0 -) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,1795:3078558,1915420:16384,1179648,0 -) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 -) -] -) -) -) -] -[1,1795:3078558,4812305:0,0,0 -(1,1795:3078558,2439708:0,1703936,0 -g1,1795:29030814,2439708 -g1,1795:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,1795:36151628,1915420:16384,1179648,0 -) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 -) -] -) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,1795:37855564,2439708:1179648,16384,0 -) -) -k1,1795:3078556,2439708:-34777008 -) -] -[1,1795:3078558,4812305:0,0,0 -(1,1795:3078558,49800853:0,16384,2228224 -k1,1795:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,1795:2537886,49800853:1179648,16384,0 -) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,1795:3078558,51504789:16384,1179648,0 -) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 -) -] -) -) -) -] -[1,1795:3078558,4812305:0,0,0 -(1,1795:3078558,49800853:0,16384,2228224 -g1,1795:29030814,49800853 -g1,1795:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,1795:36151628,51504789:16384,1179648,0 -) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 -) -] -) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,1795:37855564,49800853:1179648,16384,0 -) -) -k1,1795:3078556,49800853:-34777008 -) -] -g1,1795:6630773,4812305 -g1,1795:6630773,4812305 -g1,1795:9516978,4812305 -g1,1795:11710468,4812305 -g1,1795:13120147,4812305 -g1,1795:16560787,4812305 -k1,1795:31786111,4812305:15225324 -) -) -] -[1,1795:6630773,45706769:25952256,40108032,0 -(1,1795:6630773,45706769:25952256,40108032,0 -(1,1795:6630773,45706769:0,0,0 -g1,1795:6630773,45706769 -) -[1,1795:6630773,45706769:25952256,40108032,0 -v1,1594:6630773,6254097:0,393216,0 -(1,1795:6630773,45706769:25952256,39845888,0 -g1,1795:6630773,45706769 -g1,1795:6303093,45706769 -r1,1795:6401397,45706769:98304,39845888,0 -g1,1795:6600626,45706769 -g1,1795:6797234,45706769 -[1,1795:6797234,45706769:25785795,39845888,0 -(1,1600:6797234,6616170:25785795,755289,196608 -(1,1594:6797234,6616170:0,755289,196608 -r1,1795:8134168,6616170:1336934,951897,196608 -k1,1594:6797234,6616170:-1336934 -) -(1,1594:6797234,6616170:1336934,755289,196608 -) -k1,1594:8304926,6616170:170758 -k1,1594:8632606,6616170:327680 -k1,1594:8632606,6616170:0 -k1,1594:8803363,6616170:170757 -k1,1595:8803363,6616170:0 -k1,1595:8974121,6616170:170758 -k1,1596:8974121,6616170:0 -k1,1596:9144879,6616170:170758 -k1,1597:9144879,6616170:0 -k1,1597:9315637,6616170:170758 -k1,1598:9315637,6616170:0 -k1,1599:10683081,6616170:170757 -k1,1599:12574814,6616170:170758 -k1,1599:13983547,6616170:170758 -k1,1599:14805732,6616170:170757 -k1,1599:16593919,6616170:170758 -k1,1599:19945795,6616170:170758 -k1,1599:22127198,6616170:170758 -k1,1599:22913993,6616170:170757 -k1,1599:26491312,6616170:170758 -k1,1599:27193567,6616170:170758 -k1,1599:28015753,6616170:170758 -k1,1599:30492722,6616170:170757 -k1,1599:31019340,6616170:170758 -k1,1599:32583029,6616170:0 -) -(1,1600:6797234,7457658:25785795,513147,126483 -k1,1599:9460264,7457658:206085 -k1,1599:10325642,7457658:206086 -k1,1599:12319549,7457658:206085 -k1,1599:13141673,7457658:206086 -k1,1599:15979029,7457658:206085 -k1,1599:17132765,7457658:206085 -k1,1599:18790473,7457658:206086 -k1,1599:20850572,7457658:206085 -k1,1599:22942128,7457658:206085 -k1,1599:25792592,7457658:206086 -k1,1599:27813369,7457658:206085 -k1,1599:28828825,7457658:206086 -k1,1599:30920381,7457658:206085 -k1,1600:32583029,7457658:0 -) -(1,1600:6797234,8299146:25785795,505283,126483 -k1,1599:8348824,8299146:185164 -k1,1599:9638270,8299146:185164 -k1,1599:10571200,8299146:185164 -k1,1599:14565973,8299146:185165 -k1,1599:15434022,8299146:185164 -k1,1599:16859127,8299146:185164 -k1,1599:18235736,8299146:185164 -k1,1599:19439985,8299146:185164 -k1,1599:22821995,8299146:185164 -k1,1599:25939241,8299146:185165 -k1,1599:27408911,8299146:185164 -k1,1599:28698357,8299146:185164 -k1,1599:29631287,8299146:185164 -k1,1599:32583029,8299146:0 -) -(1,1600:6797234,9140634:25785795,513147,134348 -k1,1599:8199665,9140634:205744 -k1,1599:11591770,9140634:205745 -k1,1599:14432717,9140634:205744 -(1,1599:14432717,9140634:0,452978,122846 -r1,1795:16901254,9140634:2468537,575824,122846 -k1,1599:14432717,9140634:-2468537 -) -(1,1599:14432717,9140634:2468537,452978,122846 -k1,1599:14432717,9140634:3277 -h1,1599:16897977,9140634:0,411205,112570 -) -k1,1599:17106999,9140634:205745 -k1,1599:18709315,9140634:205744 -(1,1599:18709315,9140634:0,452978,115847 -r1,1795:20826140,9140634:2116825,568825,115847 -k1,1599:18709315,9140634:-2116825 -) -(1,1599:18709315,9140634:2116825,452978,115847 -k1,1599:18709315,9140634:3277 -h1,1599:20822863,9140634:0,411205,112570 -) -k1,1599:21031885,9140634:205745 -k1,1599:21769126,9140634:205744 -k1,1599:25053096,9140634:205744 -k1,1599:26068211,9140634:205745 -k1,1599:27772108,9140634:205744 -h1,1599:28569026,9140634:0,0,0 -k1,1599:28948441,9140634:205745 -k1,1599:31900144,9140634:205744 -k1,1599:32583029,9140634:0 -) -(1,1600:6797234,9982122:25785795,505283,126483 -k1,1599:9130173,9982122:149935 -k1,1599:12570014,9982122:149934 -k1,1599:13866174,9982122:149935 -k1,1599:14430902,9982122:149885 -(1,1599:14430902,9982122:0,452978,122846 -r1,1795:16899439,9982122:2468537,575824,122846 -k1,1599:14430902,9982122:-2468537 -) -(1,1599:14430902,9982122:2468537,452978,122846 -k1,1599:14430902,9982122:3277 -h1,1599:16896162,9982122:0,411205,112570 -) -k1,1599:17049374,9982122:149935 -k1,1599:19209953,9982122:149934 -k1,1599:20351448,9982122:149935 -k1,1599:22539553,9982122:149935 -k1,1599:24818752,9982122:149934 -k1,1599:26362638,9982122:149935 -k1,1599:27531657,9982122:149934 -k1,1599:29335065,9982122:149935 -k1,1599:32583029,9982122:0 -) -(1,1600:6797234,10823610:25785795,513147,134348 -k1,1599:8497440,10823610:206640 -k1,1599:9988586,10823610:206640 -k1,1599:11214311,10823610:206640 -k1,1599:14071882,10823610:206640 -k1,1599:17464882,10823610:206640 -k1,1599:20306725,10823610:206640 -k1,1599:21685804,10823610:206640 -k1,1599:24122634,10823610:206640 -k1,1599:26339919,10823610:206640 -k1,1599:27078056,10823610:206640 -k1,1599:27856825,10823610:206640 -k1,1599:29260152,10823610:206640 -k1,1599:31923737,10823610:206640 -k1,1599:32583029,10823610:0 -) -(1,1600:6797234,11665098:25785795,513147,134348 -k1,1599:9593141,11665098:164636 -k1,1599:12541746,11665098:164636 -k1,1599:13357809,11665098:164635 -k1,1599:15139874,11665098:164636 -k1,1599:16075213,11665098:164636 -k1,1599:19432763,11665098:164636 -k1,1599:21277742,11665098:164636 -k1,1599:23702058,11665098:164635 -k1,1599:24222554,11665098:164636 -k1,1599:25871580,11665098:164636 -k1,1599:26983867,11665098:164636 -k1,1599:28167587,11665098:164635 -k1,1599:29601000,11665098:164636 -k1,1599:30424928,11665098:164636 -k1,1599:32583029,11665098:0 -) -(1,1600:6797234,12506586:25785795,505283,134348 -k1,1599:8205050,12506586:216371 -k1,1599:11072352,12506586:216371 -k1,1599:13299367,12506586:216370 -k1,1599:14800244,12506586:216371 -k1,1599:16120897,12506586:216371 -k1,1599:17085034,12506586:216371 -k1,1599:21284683,12506586:216371 -k1,1599:23095544,12506586:216370 -k1,1599:25872407,12506586:216371 -k1,1599:26704816,12506586:216371 -k1,1599:27336012,12506586:216353 -k1,1599:29775364,12506586:216371 -k1,1599:31137960,12506586:216371 -k1,1600:32583029,12506586:0 -) -(1,1600:6797234,13348074:25785795,513147,134348 -k1,1599:8321164,13348074:183719 -k1,1599:9187769,13348074:183720 -k1,1599:11254337,13348074:183719 -k1,1599:14254138,13348074:183719 -k1,1599:15124020,13348074:183720 -k1,1599:17689317,13348074:183719 -k1,1599:18489074,13348074:183719 -k1,1599:22939188,13348074:183720 -k1,1599:24195076,13348074:183719 -k1,1599:28137285,13348074:183719 -k1,1599:28972433,13348074:183720 -k1,1599:29512012,13348074:183719 -k1,1599:32583029,13348074:0 -) -(1,1600:6797234,14189562:25785795,513147,134348 -k1,1599:8724054,14189562:275968 -k1,1599:10780634,14189562:275967 -k1,1599:11715894,14189562:275968 -k1,1599:14176176,14189562:275967 -k1,1599:15079979,14189562:275968 -k1,1599:18786756,14189562:275967 -k1,1599:22235322,14189562:275968 -k1,1599:23657514,14189562:275967 -k1,1599:24386914,14189562:275891 -k1,1599:27425224,14189562:275967 -k1,1599:29417580,14189562:275968 -k1,1599:30352839,14189562:275967 -k1,1599:32583029,14189562:0 -) -(1,1600:6797234,15031050:25785795,513147,126483 -k1,1599:9898443,15031050:285127 -k1,1599:11175130,15031050:285127 -k1,1599:14244226,15031050:285127 -(1,1599:14244226,15031050:0,452978,115847 -r1,1795:16009339,15031050:1765113,568825,115847 -k1,1599:14244226,15031050:-1765113 -) -(1,1599:14244226,15031050:1765113,452978,115847 -k1,1599:14244226,15031050:3277 -h1,1599:16006062,15031050:0,411205,112570 -) -k1,1599:16294467,15031050:285128 -k1,1599:17771039,15031050:285127 -(1,1599:17771039,15031050:0,452978,122846 -r1,1795:19184440,15031050:1413401,575824,122846 -k1,1599:17771039,15031050:-1413401 -) -(1,1599:17771039,15031050:1413401,452978,122846 -k1,1599:17771039,15031050:3277 -h1,1599:19181163,15031050:0,411205,112570 -) -k1,1599:19643237,15031050:285127 -k1,1599:21625091,15031050:285127 -k1,1599:23653476,15031050:285127 -k1,1599:24554641,15031050:285127 -k1,1599:25858853,15031050:285127 -k1,1599:27412758,15031050:285128 -k1,1599:28357177,15031050:285127 -k1,1599:29661389,15031050:285127 -k1,1599:31734338,15031050:285127 -k1,1600:32583029,15031050:0 -) -(1,1600:6797234,15872538:25785795,513147,126483 -k1,1599:9060015,15872538:171527 -k1,1599:10179193,15872538:171527 -k1,1599:11989776,15872538:171528 -k1,1599:12777341,15872538:171527 -k1,1599:15753809,15872538:171527 -k1,1599:16340152,15872538:171500 -(1,1599:16340152,15872538:0,452978,122846 -r1,1795:18808689,15872538:2468537,575824,122846 -k1,1599:16340152,15872538:-2468537 -) -(1,1599:16340152,15872538:2468537,452978,122846 -k1,1599:16340152,15872538:3277 -h1,1599:18805412,15872538:0,411205,112570 -) -k1,1599:18980216,15872538:171527 -k1,1599:20537829,15872538:171527 -k1,1599:21240853,15872538:171527 -k1,1599:24717362,15872538:171528 -k1,1599:25540317,15872538:171527 -(1,1599:25540317,15872538:0,452978,122846 -r1,1795:26953718,15872538:1413401,575824,122846 -k1,1599:25540317,15872538:-1413401 -) -(1,1599:25540317,15872538:1413401,452978,122846 -k1,1599:25540317,15872538:3277 -h1,1599:26950441,15872538:0,411205,112570 -) -k1,1599:27125245,15872538:171527 -k1,1599:27912810,15872538:171527 -k1,1599:28711517,15872538:171528 -k1,1599:30299932,15872538:171527 -k1,1599:31490544,15872538:171527 -k1,1599:32583029,15872538:0 -) -(1,1600:6797234,16714026:25785795,513147,134348 -g1,1599:7663619,16714026 -(1,1599:7663619,16714026:0,414482,115847 -r1,1795:8021885,16714026:358266,530329,115847 -k1,1599:7663619,16714026:-358266 -) -(1,1599:7663619,16714026:358266,414482,115847 -k1,1599:7663619,16714026:3277 -h1,1599:8018608,16714026:0,411205,112570 -) -g1,1599:8221114,16714026 -g1,1599:9367994,16714026 -g1,1599:11797413,16714026 -g1,1599:14754397,16714026 -g1,1599:16964271,16714026 -g1,1599:18309725,16714026 -(1,1599:18309725,16714026:0,424981,115847 -r1,1795:19019703,16714026:709978,540828,115847 -k1,1599:18309725,16714026:-709978 -) -(1,1599:18309725,16714026:709978,424981,115847 -k1,1599:18309725,16714026:3277 -h1,1599:19016426,16714026:0,411205,112570 -) -k1,1600:32583029,16714026:13389656 -g1,1600:32583029,16714026 -) -(1,1602:6797234,17555514:25785795,505283,134348 -h1,1601:6797234,17555514:983040,0,0 -k1,1601:10526938,17555514:184862 -k1,1601:12400007,17555514:184862 -k1,1601:15400951,17555514:184862 -k1,1601:16732038,17555514:184862 -k1,1601:17331729,17555514:184848 -(1,1601:17331729,17555514:0,452978,115847 -r1,1795:19448554,17555514:2116825,568825,115847 -k1,1601:17331729,17555514:-2116825 -) -(1,1601:17331729,17555514:2116825,452978,115847 -k1,1601:17331729,17555514:3277 -h1,1601:19445277,17555514:0,411205,112570 -) -k1,1601:19633416,17555514:184862 -k1,1601:21828923,17555514:184862 -k1,1601:23005346,17555514:184863 -k1,1601:25228378,17555514:184862 -k1,1601:26029278,17555514:184862 -k1,1601:27386579,17555514:184862 -k1,1601:29397274,17555514:184862 -k1,1601:30352839,17555514:184862 -k1,1601:32583029,17555514:0 -) -(1,1602:6797234,18397002:25785795,513147,134348 -k1,1601:10496741,18397002:244449 -k1,1601:11932636,18397002:244450 -k1,1601:12947788,18397002:244449 -k1,1601:15422428,18397002:244450 -k1,1601:18678911,18397002:244449 -k1,1601:20374983,18397002:244450 -k1,1601:21941293,18397002:244449 -k1,1601:23921136,18397002:244450 -k1,1601:24521445,18397002:244449 -k1,1601:26329584,18397002:244450 -k1,1601:29030978,18397002:244449 -k1,1601:29934720,18397002:244450 -k1,1601:31966991,18397002:244449 -k1,1601:32583029,18397002:0 -) -(1,1602:6797234,19238490:25785795,513147,134348 -k1,1601:9834500,19238490:232325 -k1,1601:11263512,19238490:232325 -k1,1601:13855133,19238490:232325 -k1,1601:17335422,19238490:232325 -k1,1601:18099244,19238490:232325 -k1,1601:22090060,19238490:232326 -k1,1601:23083913,19238490:232325 -k1,1601:24335323,19238490:232325 -k1,1601:27053429,19238490:232325 -k1,1601:27945046,19238490:232325 -k1,1601:29961916,19238490:232325 -k1,1601:31478747,19238490:232325 -k1,1601:32583029,19238490:0 -) -(1,1602:6797234,20079978:25785795,513147,134348 -k1,1601:7816218,20079978:271218 -k1,1601:10125606,20079978:271218 -k1,1601:11012862,20079978:271218 -k1,1601:12303166,20079978:271219 -k1,1601:16051724,20079978:271218 -k1,1601:18012460,20079978:271218 -k1,1601:19302763,20079978:271218 -k1,1601:22279307,20079978:271218 -k1,1601:23819302,20079978:271218 -k1,1601:24749813,20079978:271219 -k1,1601:26040116,20079978:271218 -k1,1601:28469435,20079978:271218 -k1,1601:29932098,20079978:271218 -k1,1601:32583029,20079978:0 -) -(1,1602:6797234,20921466:25785795,505283,134348 -k1,1601:9900637,20921466:287321 -k1,1601:11472463,20921466:287320 -k1,1601:12864066,20921466:287321 -k1,1601:13899152,20921466:287320 -k1,1601:17996081,20921466:287321 -k1,1601:18814899,20921466:287321 -k1,1601:21354691,20921466:287320 -k1,1601:22403540,20921466:287321 -k1,1601:23709945,20921466:287320 -k1,1601:26155367,20921466:287321 -k1,1601:27634132,20921466:287320 -k1,1601:30572384,20921466:287321 -k1,1601:32583029,20921466:0 -) -(1,1602:6797234,21762954:25785795,513147,134348 -k1,1601:8360159,21762954:278419 -k1,1601:9326050,21762954:278418 -k1,1601:10220507,21762954:278419 -k1,1601:11518010,21762954:278418 -k1,1601:14427700,21762954:278419 -k1,1601:17433072,21762954:278419 -k1,1601:18659141,21762954:278418 -k1,1601:19956645,21762954:278419 -k1,1601:23370305,21762954:278418 -k1,1601:24276559,21762954:278419 -k1,1601:27985787,21762954:278418 -k1,1601:31436804,21762954:278419 -k1,1602:32583029,21762954:0 -) -(1,1602:6797234,22604442:25785795,513147,134348 -k1,1601:7478782,22604442:228039 -k1,1601:10469192,22604442:228067 -k1,1601:12413647,22604442:228067 -k1,1601:13301007,22604442:228068 -k1,1601:15961115,22604442:228067 -k1,1601:17877390,22604442:228068 -k1,1601:20921539,22604442:228067 -k1,1601:22141167,22604442:228068 -k1,1601:25326874,22604442:228067 -k1,1601:27251669,22604442:228068 -k1,1601:29222994,22604442:228067 -k1,1601:30067100,22604442:228068 -k1,1601:31314252,22604442:228067 -k1,1601:32583029,22604442:0 -) -(1,1602:6797234,23445930:25785795,513147,126483 -k1,1601:7731727,23445930:275201 -k1,1601:9026013,23445930:275201 -k1,1601:11089036,23445930:275201 -k1,1601:14091189,23445930:275200 -k1,1601:15314041,23445930:275201 -k1,1601:17228297,23445930:275201 -k1,1601:18119536,23445930:275201 -k1,1601:21199678,23445930:275201 -k1,1601:22671566,23445930:275201 -k1,1601:26242573,23445930:275201 -k1,1601:27177065,23445930:275200 -k1,1601:28805584,23445930:275201 -k1,1601:31896867,23445930:275201 -k1,1601:32583029,23445930:0 -) -(1,1602:6797234,24287418:25785795,513147,134348 -k1,1601:9349664,24287418:170852 -k1,1601:10136555,24287418:170853 -k1,1601:14400130,24287418:170852 -k1,1601:16314241,24287418:170853 -k1,1601:18052714,24287418:170852 -k1,1601:20655608,24287418:170853 -k1,1601:22514667,24287418:170852 -k1,1601:25501602,24287418:170853 -k1,1601:26288492,24287418:170852 -k1,1601:29500871,24287418:170853 -k1,1601:32583029,24287418:0 -) -(1,1602:6797234,25128906:25785795,513147,134348 -g1,1601:10244427,25128906 -g1,1601:11635101,25128906 -g1,1601:14916488,25128906 -g1,1601:16896330,25128906 -g1,1601:17754851,25128906 -g1,1601:22304360,25128906 -k1,1602:32583029,25128906:8094354 -g1,1602:32583029,25128906 -) -(1,1604:6797234,25970394:25785795,513147,134348 -h1,1603:6797234,25970394:983040,0,0 -k1,1603:8652176,25970394:244067 -k1,1603:9484756,25970394:244067 -k1,1603:12544905,25970394:244067 -k1,1603:14073477,25970394:244066 -k1,1603:15309104,25970394:244067 -k1,1603:16619442,25970394:244067 -k1,1603:19424001,25970394:244067 -k1,1603:20659628,25970394:244067 -k1,1603:22941865,25970394:244067 -k1,1603:23872093,25970394:244066 -k1,1603:29231900,25970394:244067 -k1,1603:31358816,25970394:244067 -k1,1604:32583029,25970394:0 -) -(1,1604:6797234,26811882:25785795,513147,126483 -k1,1603:8938474,26811882:265600 -k1,1603:9863365,26811882:265599 -k1,1603:13310083,26811882:265600 -k1,1603:15586327,26811882:265599 -k1,1603:16467965,26811882:265600 -k1,1603:20140125,26811882:265599 -k1,1603:20937222,26811882:265600 -k1,1603:23490028,26811882:265599 -k1,1603:27426299,26811882:265600 -k1,1603:28453426,26811882:265599 -k1,1603:31633412,26811882:265600 -$1,1603:31840506,26811882 -$1,1603:32202265,26811882 -k1,1603:32583029,26811882:0 -) -(1,1604:6797234,27653370:25785795,513147,134348 -k1,1603:10352741,27653370:211860 -k1,1603:14296222,27653370:211861 -k1,1603:15708046,27653370:211860 -k1,1603:18301485,27653370:211861 -k1,1603:19199507,27653370:211860 -k1,1603:20430452,27653370:211860 -k1,1603:22800414,27653370:211861 -k1,1603:24692617,27653370:211860 -k1,1603:25563770,27653370:211861 -$1,1603:25563770,27653370 -$1,1603:25925529,27653370 -k1,1603:26137389,27653370:211860 -k1,1603:27296900,27653370:211860 -k1,1603:29394232,27653370:211861 -$1,1603:29394232,27653370 -k1,1603:29947573,27653370:154882 -k1,1603:30670652,27653370:154882 -k1,1603:31237557,27653370:205146 -k1,1603:32010900,27653370:205146 -$1,1603:32409359,27653370 -k1,1603:32583029,27653370:0 -) -(1,1604:6797234,28494858:25785795,513147,134348 -k1,1603:8285993,28494858:292072 -k1,1603:10228917,28494858:292072 -k1,1603:13768953,28494858:292072 -k1,1603:14720317,28494858:292072 -k1,1603:16784483,28494858:292072 -k1,1603:18180837,28494858:292072 -k1,1603:19801979,28494858:292072 -k1,1603:20745479,28494858:292072 -k1,1603:24706256,28494858:292072 -k1,1603:27171502,28494858:292072 -k1,1603:29161612,28494858:292072 -k1,1603:31635378,28494858:292072 -k1,1603:32583029,28494858:0 -) -(1,1604:6797234,29336346:25785795,513147,126483 -k1,1603:9559701,29336346:215738 -k1,1603:10458324,29336346:215738 -k1,1603:14010500,29336346:215738 -k1,1603:15595284,29336346:215737 -k1,1603:16758673,29336346:215738 -k1,1603:19521140,29336346:215738 -k1,1603:20268375,29336346:215738 -k1,1603:22061565,29336346:215738 -k1,1603:23671254,29336346:215738 -k1,1603:26633606,29336346:215738 -(1,1603:26633606,29336346:0,414482,115847 -r1,1795:27343584,29336346:709978,530329,115847 -k1,1603:26633606,29336346:-709978 -) -(1,1603:26633606,29336346:709978,414482,115847 -k1,1603:26633606,29336346:3277 -h1,1603:27340307,29336346:0,411205,112570 -) -k1,1603:27732991,29336346:215737 -k1,1603:29097575,29336346:215738 -k1,1603:29972605,29336346:215738 -k1,1603:31391584,29336346:215738 -k1,1603:32583029,29336346:0 -) -(1,1604:6797234,30177834:25785795,505283,134348 -g1,1603:8698433,30177834 -g1,1603:12651564,30177834 -g1,1603:15927708,30177834 -g1,1603:16658434,30177834 -g1,1603:19935889,30177834 -g1,1603:20751156,30177834 -g1,1603:23229072,30177834 -h1,1603:24199660,30177834:0,0,0 -g1,1603:24398889,30177834 -g1,1603:25407488,30177834 -g1,1603:27104870,30177834 -h1,1603:27901788,30177834:0,0,0 -k1,1604:32583029,30177834:4507571 -g1,1604:32583029,30177834 -) -v1,1607:6797234,31246069:0,393216,0 -(1,1626:6797234,36155589:25785795,5302736,196608 -g1,1626:6797234,36155589 -g1,1626:6797234,36155589 -g1,1626:6600626,36155589 -(1,1626:6600626,36155589:0,5302736,196608 -r1,1795:32779637,36155589:26179011,5499344,196608 -k1,1626:6600625,36155589:-26179012 -) -(1,1626:6600626,36155589:26179011,5302736,196608 -[1,1626:6797234,36155589:25785795,5106128,0 -(1,1609:6797234,31437958:25785795,388497,9436 -(1,1608:6797234,31437958:0,0,0 -g1,1608:6797234,31437958 -g1,1608:6797234,31437958 -g1,1608:6469554,31437958 -(1,1608:6469554,31437958:0,0,0 -) -g1,1608:6797234,31437958 -) -g1,1609:8377963,31437958 -g1,1609:9326400,31437958 -g1,1609:9958692,31437958 -g1,1609:10590984,31437958 -h1,1609:11855567,31437958:0,0,0 -k1,1609:32583029,31437958:20727462 -g1,1609:32583029,31437958 -) -(1,1613:6797234,32104136:25785795,404226,76021 -(1,1611:6797234,32104136:0,0,0 -g1,1611:6797234,32104136 -g1,1611:6797234,32104136 -g1,1611:6469554,32104136 -(1,1611:6469554,32104136:0,0,0 -) -g1,1611:6797234,32104136 -) -g1,1613:7745671,32104136 -g1,1613:9010254,32104136 -h1,1613:10274837,32104136:0,0,0 -k1,1613:32583029,32104136:22308192 -g1,1613:32583029,32104136 -) -(1,1615:6797234,33425674:25785795,388497,9436 -(1,1614:6797234,33425674:0,0,0 -g1,1614:6797234,33425674 -g1,1614:6797234,33425674 -g1,1614:6469554,33425674 -(1,1614:6469554,33425674:0,0,0 -) -g1,1614:6797234,33425674 -) -g1,1615:7429526,33425674 -g1,1615:8377963,33425674 -g1,1615:9010255,33425674 -g1,1615:9642547,33425674 -k1,1615:9642547,33425674:0 -h1,1615:11223275,33425674:0,0,0 -k1,1615:32583029,33425674:21359754 -g1,1615:32583029,33425674 -) -(1,1619:6797234,34091852:25785795,404226,76021 -(1,1617:6797234,34091852:0,0,0 -g1,1617:6797234,34091852 -g1,1617:6797234,34091852 -g1,1617:6469554,34091852 -(1,1617:6469554,34091852:0,0,0 -) -g1,1617:6797234,34091852 -) -g1,1619:7745671,34091852 -g1,1619:9010254,34091852 -h1,1619:10274837,34091852:0,0,0 -k1,1619:32583029,34091852:22308192 -g1,1619:32583029,34091852 -) -(1,1621:6797234,35413390:25785795,388497,9436 -(1,1620:6797234,35413390:0,0,0 -g1,1620:6797234,35413390 -g1,1620:6797234,35413390 -g1,1620:6469554,35413390 -(1,1620:6469554,35413390:0,0,0 -) -g1,1620:6797234,35413390 -) -g1,1621:7429526,35413390 -g1,1621:8377963,35413390 -k1,1621:8377963,35413390:0 -h1,1621:9958691,35413390:0,0,0 -k1,1621:32583029,35413390:22624338 -g1,1621:32583029,35413390 -) -(1,1625:6797234,36079568:25785795,404226,76021 -(1,1623:6797234,36079568:0,0,0 -g1,1623:6797234,36079568 -g1,1623:6797234,36079568 -g1,1623:6469554,36079568 -(1,1623:6469554,36079568:0,0,0 -) -g1,1623:6797234,36079568 -) -g1,1625:7745671,36079568 -g1,1625:9010254,36079568 -h1,1625:10590982,36079568:0,0,0 -k1,1625:32583030,36079568:21992048 -g1,1625:32583030,36079568 -) -] -) -g1,1626:32583029,36155589 -g1,1626:6797234,36155589 -g1,1626:6797234,36155589 -g1,1626:32583029,36155589 -g1,1626:32583029,36155589 -) -h1,1626:6797234,36352197:0,0,0 -(1,1630:6797234,37595743:25785795,513147,134348 -h1,1629:6797234,37595743:983040,0,0 -k1,1629:10827895,37595743:443220 -k1,1629:12509090,37595743:443220 -k1,1629:13611602,37595743:443220 -k1,1629:16946270,37595743:443220 -k1,1629:18408575,37595743:443220 -k1,1629:21104267,37595743:443220 -k1,1629:24479568,37595743:443220 -k1,1629:25454285,37595743:443220 -k1,1629:28011696,37595743:443220 -k1,1629:31931601,37595743:443220 -k1,1630:32583029,37595743:0 -) -(1,1630:6797234,38437231:25785795,452978,115847 -(1,1629:6797234,38437231:0,452978,115847 -r1,1795:9969194,38437231:3171960,568825,115847 -k1,1629:6797234,38437231:-3171960 -) -(1,1629:6797234,38437231:3171960,452978,115847 -k1,1629:6797234,38437231:3277 -h1,1629:9965917,38437231:0,411205,112570 -) -k1,1630:32583028,38437231:22440164 -g1,1630:32583028,38437231 -) -v1,1632:6797234,39505466:0,393216,0 -(1,1645:6797234,42449291:25785795,3337041,196608 -g1,1645:6797234,42449291 -g1,1645:6797234,42449291 -g1,1645:6600626,42449291 -(1,1645:6600626,42449291:0,3337041,196608 -r1,1795:32779637,42449291:26179011,3533649,196608 -k1,1645:6600625,42449291:-26179012 -) -(1,1645:6600626,42449291:26179011,3337041,196608 -[1,1645:6797234,42449291:25785795,3140433,0 -(1,1634:6797234,39719376:25785795,410518,107478 -(1,1633:6797234,39719376:0,0,0 -g1,1633:6797234,39719376 -g1,1633:6797234,39719376 -g1,1633:6469554,39719376 -(1,1633:6469554,39719376:0,0,0 -) -g1,1633:6797234,39719376 -) -k1,1634:6797234,39719376:0 -g1,1634:11223274,39719376 -g1,1634:13436294,39719376 -g1,1634:14068586,39719376 -g1,1634:15333169,39719376 -g1,1634:15965461,39719376 -g1,1634:17546190,39719376 -g1,1634:20075356,39719376 -k1,1634:20075356,39719376:0 -h1,1634:23236813,39719376:0,0,0 -k1,1634:32583029,39719376:9346216 -g1,1634:32583029,39719376 -) -(1,1638:6797234,40385554:25785795,404226,76021 -(1,1636:6797234,40385554:0,0,0 -g1,1636:6797234,40385554 -g1,1636:6797234,40385554 -g1,1636:6469554,40385554 -(1,1636:6469554,40385554:0,0,0 -) -g1,1636:6797234,40385554 -) -g1,1638:7745671,40385554 -g1,1638:9010254,40385554 -h1,1638:11223274,40385554:0,0,0 -k1,1638:32583030,40385554:21359756 -g1,1638:32583030,40385554 -) -(1,1640:6797234,41707092:25785795,410518,107478 -(1,1639:6797234,41707092:0,0,0 -g1,1639:6797234,41707092 -g1,1639:6797234,41707092 -g1,1639:6469554,41707092 -(1,1639:6469554,41707092:0,0,0 -) -g1,1639:6797234,41707092 -) -k1,1640:6797234,41707092:0 -g1,1640:11223274,41707092 -g1,1640:13436294,41707092 -g1,1640:14068586,41707092 -g1,1640:15333169,41707092 -g1,1640:15965461,41707092 -g1,1640:17546190,41707092 -g1,1640:19759210,41707092 -g1,1640:21339939,41707092 -g1,1640:22288376,41707092 -k1,1640:22288376,41707092:0 -h1,1640:25449833,41707092:0,0,0 -k1,1640:32583029,41707092:7133196 -g1,1640:32583029,41707092 -) -(1,1644:6797234,42373270:25785795,404226,76021 -(1,1642:6797234,42373270:0,0,0 -g1,1642:6797234,42373270 -g1,1642:6797234,42373270 -g1,1642:6469554,42373270 -(1,1642:6469554,42373270:0,0,0 -) -g1,1642:6797234,42373270 -) -g1,1644:7745671,42373270 -g1,1644:9010254,42373270 -h1,1644:16913896,42373270:0,0,0 -k1,1644:32583029,42373270:15669133 -g1,1644:32583029,42373270 -) -] -) -g1,1645:32583029,42449291 -g1,1645:6797234,42449291 -g1,1645:6797234,42449291 -g1,1645:32583029,42449291 -g1,1645:32583029,42449291 -) -h1,1645:6797234,42645899:0,0,0 -(1,1649:6797234,43889445:25785795,513147,126483 -h1,1648:6797234,43889445:983040,0,0 -k1,1648:9590162,43889445:216052 -k1,1648:11518669,43889445:216051 -k1,1648:12386149,43889445:216052 -k1,1648:13349966,43889445:216051 -k1,1648:13921878,43889445:216052 -k1,1648:16814419,43889445:216051 -k1,1648:17646509,43889445:216052 -k1,1648:19059247,43889445:216051 -k1,1648:20367784,43889445:216052 -k1,1648:21250991,43889445:216051 -k1,1648:21881869,43889445:216035 -k1,1648:22629417,43889445:216051 -k1,1648:23864554,43889445:216052 -k1,1648:28381733,43889445:216051 -k1,1648:29257077,43889445:216052 -k1,1648:32583029,43889445:0 -) -(1,1649:6797234,44730933:25785795,513147,126483 -k1,1648:8690461,44730933:176839 -k1,1648:10805200,44730933:176839 -k1,1648:11598076,44730933:176838 -k1,1648:14706996,44730933:176839 -k1,1648:16451456,44730933:176839 -k1,1648:19299542,44730933:176839 -k1,1648:22880975,44730933:176838 -k1,1648:23867184,44730933:176839 -k1,1648:24458844,44730933:176817 -(1,1648:24458844,44730933:0,452978,115847 -r1,1795:26575669,44730933:2116825,568825,115847 -k1,1648:24458844,44730933:-2116825 -) -(1,1648:24458844,44730933:2116825,452978,115847 -k1,1648:24458844,44730933:3277 -h1,1648:26572392,44730933:0,411205,112570 -) -k1,1648:26752507,44730933:176838 -k1,1648:29113661,44730933:176839 -k1,1648:30884991,44730933:176839 -k1,1648:32583029,44730933:0 -) -(1,1649:6797234,45572421:25785795,505283,134348 -k1,1648:11372600,45572421:181177 -k1,1648:13831153,45572421:181177 -k1,1648:15479026,45572421:181177 -k1,1648:17014177,45572421:181177 -k1,1648:18766252,45572421:181177 -k1,1648:20138875,45572421:181178 -k1,1648:21674026,45572421:181177 -k1,1648:23571591,45572421:181177 -k1,1648:26742520,45572421:181177 -k1,1648:27942782,45572421:181177 -k1,1648:30902686,45572421:181177 -k1,1648:32583029,45572421:0 -) -] -g1,1795:32583029,45706769 -) -] -(1,1795:32583029,45706769:0,0,0 -g1,1795:32583029,45706769 -) -) -] -(1,1795:6630773,47279633:25952256,0,0 -h1,1795:6630773,47279633:25952256,0,0 -) -] -(1,1795:4262630,4025873:0,0,0 -[1,1795:-473656,4025873:0,0,0 -(1,1795:-473656,-710413:0,0,0 -(1,1795:-473656,-710413:0,0,0 -g1,1795:-473656,-710413 -) -g1,1795:-473656,-710413 -) -] -) -] -!28925 -}50 -!11 -{51 -[1,1795:4262630,47279633:28320399,43253760,0 -(1,1795:4262630,4025873:0,0,0 -[1,1795:-473656,4025873:0,0,0 -(1,1795:-473656,-710413:0,0,0 -(1,1795:-473656,-644877:0,0,0 -k1,1795:-473656,-644877:-65536 -) -(1,1795:-473656,4736287:0,0,0 -k1,1795:-473656,4736287:5209943 -) -g1,1795:-473656,-710413 -) -] -) -[1,1795:6630773,47279633:25952256,43253760,0 -[1,1795:6630773,4812305:25952256,786432,0 -(1,1795:6630773,4812305:25952256,505283,11795 -(1,1795:6630773,4812305:25952256,505283,11795 -g1,1795:3078558,4812305 -[1,1795:3078558,4812305:0,0,0 -(1,1795:3078558,2439708:0,1703936,0 -k1,1795:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,1795:2537886,2439708:1179648,16384,0 -) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,1795:3078558,1915420:16384,1179648,0 -) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 -) -] -) -) -) -] -[1,1795:3078558,4812305:0,0,0 -(1,1795:3078558,2439708:0,1703936,0 -g1,1795:29030814,2439708 -g1,1795:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,1795:36151628,1915420:16384,1179648,0 -) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 -) -] -) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,1795:37855564,2439708:1179648,16384,0 -) -) -k1,1795:3078556,2439708:-34777008 -) -] -[1,1795:3078558,4812305:0,0,0 -(1,1795:3078558,49800853:0,16384,2228224 -k1,1795:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,1795:2537886,49800853:1179648,16384,0 -) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,1795:3078558,51504789:16384,1179648,0 -) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 -) -] -) -) -) -] -[1,1795:3078558,4812305:0,0,0 -(1,1795:3078558,49800853:0,16384,2228224 -g1,1795:29030814,49800853 -g1,1795:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,1795:36151628,51504789:16384,1179648,0 -) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 -) -] -) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,1795:37855564,49800853:1179648,16384,0 -) -) -k1,1795:3078556,49800853:-34777008 -) -] -g1,1795:6630773,4812305 -k1,1795:22348274,4812305:14920583 -g1,1795:23970945,4812305 -g1,1795:24793421,4812305 -g1,1795:27528893,4812305 -g1,1795:28938572,4812305 -) -) -] -[1,1795:6630773,45706769:25952256,40108032,0 -(1,1795:6630773,45706769:25952256,40108032,0 -(1,1795:6630773,45706769:0,0,0 -g1,1795:6630773,45706769 -) -[1,1795:6630773,45706769:25952256,40108032,0 -v1,1795:6630773,6254097:0,393216,0 -(1,1795:6630773,45706769:25952256,39845888,0 -g1,1795:6630773,45706769 -g1,1795:6303093,45706769 -r1,1795:6401397,45706769:98304,39845888,0 -g1,1795:6600626,45706769 -g1,1795:6797234,45706769 -[1,1795:6797234,45706769:25785795,39845888,0 -(1,1649:6797234,6374028:25785795,513147,126483 -k1,1648:8094393,6374028:192877 -k1,1648:10659019,6374028:192878 -k1,1648:11661266,6374028:192877 -k1,1648:12873228,6374028:192877 -k1,1648:14805432,6374028:192878 -k1,1648:15657601,6374028:192877 -k1,1648:16869563,6374028:192877 -k1,1648:20640706,6374028:192877 -k1,1648:21461419,6374028:192878 -k1,1648:24191850,6374028:192877 -k1,1648:27109714,6374028:192877 -k1,1648:29013737,6374028:192878 -k1,1648:31052763,6374028:192877 -k1,1648:32583029,6374028:0 -) -(1,1649:6797234,7215516:25785795,513147,134348 -k1,1648:7710860,7215516:262198 -k1,1648:8720825,7215516:262199 -k1,1648:12278173,7215516:262198 -k1,1648:14362928,7215516:262199 -k1,1648:16563026,7215516:262198 -k1,1648:17441263,7215516:262199 -k1,1648:20635542,7215516:262198 -k1,1648:22968678,7215516:262198 -k1,1648:24928915,7215516:262199 -k1,1648:27372807,7215516:262198 -k1,1648:28582657,7215516:262199 -k1,1648:31391584,7215516:262198 -k1,1648:32583029,7215516:0 -) -(1,1649:6797234,8057004:25785795,513147,126483 -k1,1648:10410531,8057004:276859 -k1,1648:11611447,8057004:276858 -k1,1648:12907391,8057004:276859 -k1,1648:14886219,8057004:276858 -k1,1648:16943036,8057004:276859 -k1,1648:18870746,8057004:276858 -k1,1648:22395569,8057004:276859 -k1,1648:23339583,8057004:276858 -(1,1648:23339583,8057004:0,452978,115847 -r1,1795:25456408,8057004:2116825,568825,115847 -k1,1648:23339583,8057004:-2116825 -) -(1,1648:23339583,8057004:2116825,452978,115847 -k1,1648:23339583,8057004:3277 -h1,1648:25453131,8057004:0,411205,112570 -) -k1,1648:25733267,8057004:276859 -k1,1648:29191243,8057004:276858 -k1,1648:31478747,8057004:276859 -k1,1648:32583029,8057004:0 -) -(1,1649:6797234,8898492:25785795,513147,126483 -k1,1648:9350298,8898492:242920 -k1,1648:10890176,8898492:242920 -k1,1648:14580944,8898492:242919 -k1,1648:17602591,8898492:242920 -k1,1648:19856156,8898492:242920 -k1,1648:21046727,8898492:242920 -k1,1648:24594627,8898492:242919 -k1,1648:29231736,8898492:242920 -k1,1648:31391584,8898492:242920 -k1,1648:32583029,8898492:0 -) -(1,1649:6797234,9739980:25785795,513147,134348 -k1,1648:8390593,9739980:296401 -k1,1648:10379135,9739980:296402 -k1,1648:14739423,9739980:296401 -k1,1648:18477120,9739980:296402 -k1,1648:20110455,9739980:296401 -k1,1648:21154623,9739980:296402 -k1,1648:24890353,9739980:296401 -k1,1648:26378200,9739980:296402 -k1,1648:28706872,9739980:296401 -k1,1648:30469970,9739980:296402 -k1,1648:31966991,9739980:296401 -k1,1648:32583029,9739980:0 -) -(1,1649:6797234,10581468:25785795,513147,126483 -g1,1648:9393770,10581468 -k1,1649:32583029,10581468:21318206 -g1,1649:32583029,10581468 -) -(1,1651:6797234,11422956:25785795,513147,134348 -h1,1650:6797234,11422956:983040,0,0 -k1,1650:8847002,11422956:248839 -k1,1650:10114926,11422956:248839 -k1,1650:10778558,11422956:248789 -k1,1650:13769423,11422956:248839 -k1,1650:15122544,11422956:248839 -k1,1650:16119149,11422956:248839 -k1,1650:17881214,11422956:248839 -k1,1650:18939422,11422956:248838 -k1,1650:21950604,11422956:248839 -k1,1650:23915831,11422956:248839 -k1,1650:24823962,11422956:248839 -k1,1650:28149061,11422956:248839 -k1,1650:31563944,11422956:248839 -k1,1650:32583029,11422956:0 -) -(1,1651:6797234,12264444:25785795,513147,134348 -k1,1650:8902742,12264444:183337 -k1,1650:11773710,12264444:183337 -k1,1650:13771738,12264444:183336 -k1,1650:14902726,12264444:183337 -k1,1650:17346400,12264444:183337 -k1,1650:20345819,12264444:183337 -k1,1650:21145194,12264444:183337 -k1,1650:23959802,12264444:183337 -k1,1650:25480072,12264444:183336 -k1,1650:27025903,12264444:183337 -k1,1650:30571237,12264444:183337 -k1,1650:31563944,12264444:183337 -k1,1650:32583029,12264444:0 -) -(1,1651:6797234,13105932:25785795,513147,134348 -k1,1650:8382852,13105932:199532 -k1,1650:9241676,13105932:199532 -k1,1650:12569241,13105932:199532 -k1,1650:13960218,13105932:199532 -k1,1650:15626446,13105932:199532 -k1,1650:16845063,13105932:199532 -k1,1650:19855434,13105932:199532 -k1,1650:21568192,13105932:199532 -k1,1650:22419152,13105932:199532 -k1,1650:24261015,13105932:199531 -k1,1650:25479632,13105932:199532 -k1,1650:26094007,13105932:199532 -k1,1650:29035565,13105932:199532 -k1,1650:32583029,13105932:0 -) -(1,1651:6797234,13947420:25785795,505283,134348 -k1,1650:9922974,13947420:191038 -k1,1650:10572109,13947420:191038 -k1,1650:11294643,13947420:191037 -k1,1650:14115641,13947420:191038 -k1,1650:14958107,13947420:191038 -k1,1650:17172897,13947420:191038 -k1,1650:19060662,13947420:191038 -k1,1650:21262345,13947420:191038 -k1,1650:22066144,13947420:191037 -k1,1650:23375226,13947420:191038 -k1,1650:25165342,13947420:191038 -k1,1650:26425928,13947420:191038 -k1,1650:28306484,13947420:191038 -k1,1650:29516606,13947420:191037 -k1,1650:30122479,13947420:191030 -k1,1650:30845014,13947420:191038 -k1,1650:32583029,13947420:0 -) -(1,1651:6797234,14788908:25785795,513147,134348 -k1,1650:8709373,14788908:225242 -k1,1650:10502235,14788908:225241 -k1,1650:11746562,14788908:225242 -k1,1650:14483143,14788908:225241 -(1,1650:14483143,14788908:0,452978,115847 -r1,1795:17303392,14788908:2820249,568825,115847 -k1,1650:14483143,14788908:-2820249 -) -(1,1650:14483143,14788908:2820249,452978,115847 -k1,1650:14483143,14788908:3277 -h1,1650:17300115,14788908:0,411205,112570 -) -k1,1650:17702304,14788908:225242 -k1,1650:19813016,14788908:225241 -k1,1650:20569755,14788908:225242 -k1,1650:22116858,14788908:225242 -k1,1650:23001391,14788908:225241 -k1,1650:24245718,14788908:225242 -k1,1650:24885776,14788908:225215 -k1,1650:28126985,14788908:225242 -k1,1650:30313719,14788908:225241 -k1,1650:31563944,14788908:225242 -k1,1650:32583029,14788908:0 -) -(1,1651:6797234,15630396:25785795,513147,134348 -k1,1650:8411585,15630396:226298 -k1,1650:10136036,15630396:226298 -k1,1650:11309985,15630396:226298 -(1,1650:11309985,15630396:0,452978,115847 -r1,1795:14130234,15630396:2820249,568825,115847 -k1,1650:11309985,15630396:-2820249 -) -(1,1650:11309985,15630396:2820249,452978,115847 -k1,1650:11309985,15630396:3277 -h1,1650:14126957,15630396:0,411205,112570 -) -k1,1650:14356532,15630396:226298 -k1,1650:15530481,15630396:226298 -k1,1650:16112639,15630396:226298 -k1,1650:18894186,15630396:226298 -k1,1650:20311929,15630396:226298 -k1,1650:23832066,15630396:226298 -k1,1650:27668087,15630396:226298 -k1,1650:28553677,15630396:226298 -k1,1650:29799060,15630396:226298 -k1,1650:32583029,15630396:0 -) -(1,1651:6797234,16471884:25785795,505283,126483 -k1,1650:10226632,16471884:167671 -k1,1650:12704448,16471884:167672 -k1,1650:14149416,16471884:167671 -k1,1650:16011193,16471884:167671 -k1,1650:17324434,16471884:167672 -k1,1650:18626533,16471884:167671 -k1,1650:19779865,16471884:167671 -k1,1650:22854058,16471884:167671 -k1,1650:25009437,16471884:167672 -k1,1650:26162769,16471884:167671 -k1,1650:28324701,16471884:167671 -k1,1650:31244885,16471884:167672 -k1,1650:32168841,16471884:167671 -k1,1650:32583029,16471884:0 -) -(1,1651:6797234,17313372:25785795,513147,126483 -k1,1650:7607166,17313372:207001 -k1,1650:9267755,17313372:207000 -k1,1650:10782855,17313372:207001 -k1,1650:13986162,17313372:207001 -k1,1650:15324313,17313372:207000 -k1,1650:17236561,17313372:207001 -k1,1650:18986279,17313372:207000 -k1,1650:20834302,17313372:207001 -k1,1650:23793815,17313372:207001 -k1,1650:24603746,17313372:207000 -k1,1650:25796408,17313372:207001 -k1,1650:28999715,17313372:207001 -k1,1650:29419699,17313372:206992 -k1,1650:31143858,17313372:207001 -k1,1650:32583029,17313372:0 -) -(1,1651:6797234,18154860:25785795,505283,134348 -g1,1650:7596117,18154860 -g1,1650:9992113,18154860 -g1,1650:11177003,18154860 -g1,1650:12867831,18154860 -g1,1650:13753877,18154860 -g1,1650:15098675,18154860 -g1,1650:16343859,18154860 -g1,1650:18984959,18154860 -g1,1650:19606240,18154860 -g1,1650:21379644,18154860 -g1,1650:21379644,18154860 -g1,1650:21578873,18154860 -g1,1650:21578873,18154860 -k1,1651:32583029,18154860:11004156 -g1,1651:32583029,18154860 -) -v1,1653:6797234,19176252:0,393216,0 -(1,1684:6797234,28083225:25785795,9300189,196608 -g1,1684:6797234,28083225 -g1,1684:6797234,28083225 -g1,1684:6600626,28083225 -(1,1684:6600626,28083225:0,9300189,196608 -r1,1795:32779637,28083225:26179011,9496797,196608 -k1,1684:6600625,28083225:-26179012 -) -(1,1684:6600626,28083225:26179011,9300189,196608 -[1,1684:6797234,28083225:25785795,9103581,0 -(1,1655:6797234,19390162:25785795,410518,101187 -(1,1654:6797234,19390162:0,0,0 -g1,1654:6797234,19390162 -g1,1654:6797234,19390162 -g1,1654:6469554,19390162 -(1,1654:6469554,19390162:0,0,0 -) -g1,1654:6797234,19390162 -) -h1,1655:12804002,19390162:0,0,0 -k1,1655:32583030,19390162:19779028 -g1,1655:32583030,19390162 -) -(1,1659:6797234,20056340:25785795,404226,76021 -(1,1657:6797234,20056340:0,0,0 -g1,1657:6797234,20056340 -g1,1657:6797234,20056340 -g1,1657:6469554,20056340 -(1,1657:6469554,20056340:0,0,0 -) -g1,1657:6797234,20056340 -) -g1,1659:7745671,20056340 -g1,1659:9010254,20056340 -k1,1659:9010254,20056340:0 -h1,1659:12804002,20056340:0,0,0 -k1,1659:32583030,20056340:19779028 -g1,1659:32583030,20056340 -) -(1,1661:6797234,21377878:25785795,410518,107478 -(1,1660:6797234,21377878:0,0,0 -g1,1660:6797234,21377878 -g1,1660:6797234,21377878 -g1,1660:6469554,21377878 -(1,1660:6469554,21377878:0,0,0 -) -g1,1660:6797234,21377878 -) -h1,1661:14068585,21377878:0,0,0 -k1,1661:32583029,21377878:18514444 -g1,1661:32583029,21377878 -) -(1,1665:6797234,22044056:25785795,404226,76021 -(1,1663:6797234,22044056:0,0,0 -g1,1663:6797234,22044056 -g1,1663:6797234,22044056 -g1,1663:6469554,22044056 -(1,1663:6469554,22044056:0,0,0 -) -g1,1663:6797234,22044056 -) -g1,1665:7745671,22044056 -g1,1665:9010254,22044056 -k1,1665:9010254,22044056:0 -h1,1665:12804002,22044056:0,0,0 -k1,1665:32583030,22044056:19779028 -g1,1665:32583030,22044056 -) -(1,1667:6797234,23365594:25785795,410518,31456 -(1,1666:6797234,23365594:0,0,0 -g1,1666:6797234,23365594 -g1,1666:6797234,23365594 -g1,1666:6469554,23365594 -(1,1666:6469554,23365594:0,0,0 -) -g1,1666:6797234,23365594 -) -h1,1667:12804002,23365594:0,0,0 -k1,1667:32583030,23365594:19779028 -g1,1667:32583030,23365594 -) -(1,1671:6797234,24031772:25785795,404226,76021 -(1,1669:6797234,24031772:0,0,0 -g1,1669:6797234,24031772 -g1,1669:6797234,24031772 -g1,1669:6469554,24031772 -(1,1669:6469554,24031772:0,0,0 -) -g1,1669:6797234,24031772 -) -g1,1671:7745671,24031772 -g1,1671:9010254,24031772 -h1,1671:10274837,24031772:0,0,0 -k1,1671:32583029,24031772:22308192 -g1,1671:32583029,24031772 -) -(1,1673:6797234,25353310:25785795,410518,31456 -(1,1672:6797234,25353310:0,0,0 -g1,1672:6797234,25353310 -g1,1672:6797234,25353310 -g1,1672:6469554,25353310 -(1,1672:6469554,25353310:0,0,0 -) -g1,1672:6797234,25353310 -) -h1,1673:12804002,25353310:0,0,0 -k1,1673:32583030,25353310:19779028 -g1,1673:32583030,25353310 -) -(1,1677:6797234,26019488:25785795,404226,76021 -(1,1675:6797234,26019488:0,0,0 -g1,1675:6797234,26019488 -g1,1675:6797234,26019488 -g1,1675:6469554,26019488 -(1,1675:6469554,26019488:0,0,0 -) -g1,1675:6797234,26019488 -) -g1,1677:7745671,26019488 -g1,1677:9010254,26019488 -k1,1677:9010254,26019488:0 -h1,1677:10590982,26019488:0,0,0 -k1,1677:32583030,26019488:21992048 -g1,1677:32583030,26019488 -) -(1,1679:6797234,27341026:25785795,410518,31456 -(1,1678:6797234,27341026:0,0,0 -g1,1678:6797234,27341026 -g1,1678:6797234,27341026 -g1,1678:6469554,27341026 -(1,1678:6469554,27341026:0,0,0 -) -g1,1678:6797234,27341026 -) -h1,1679:13120147,27341026:0,0,0 -k1,1679:32583029,27341026:19462882 -g1,1679:32583029,27341026 -) -(1,1683:6797234,28007204:25785795,404226,76021 -(1,1681:6797234,28007204:0,0,0 -g1,1681:6797234,28007204 -g1,1681:6797234,28007204 -g1,1681:6469554,28007204 -(1,1681:6469554,28007204:0,0,0 -) -g1,1681:6797234,28007204 -) -g1,1683:7745671,28007204 -g1,1683:9010254,28007204 -h1,1683:9326400,28007204:0,0,0 -k1,1683:32583028,28007204:23256628 -g1,1683:32583028,28007204 -) -] -) -g1,1684:32583029,28083225 -g1,1684:6797234,28083225 -g1,1684:6797234,28083225 -g1,1684:32583029,28083225 -g1,1684:32583029,28083225 -) -h1,1684:6797234,28279833:0,0,0 -(1,1688:6797234,29476535:25785795,513147,126483 -h1,1687:6797234,29476535:983040,0,0 -k1,1687:9165792,29476535:188831 -k1,1687:10502814,29476535:188831 -k1,1687:11864084,29476535:188831 -k1,1687:14063560,29476535:188831 -k1,1687:15788555,29476535:188831 -k1,1687:16628814,29476535:188831 -k1,1687:17836730,29476535:188831 -k1,1687:21317435,29476535:188832 -k1,1687:22165558,29476535:188831 -k1,1687:22710249,29476535:188831 -k1,1687:24333008,29476535:188831 -k1,1687:27007620,29476535:188831 -k1,1687:27879336,29476535:188831 -k1,1687:29870407,29476535:188831 -k1,1687:30631367,29476535:188831 -k1,1687:32583029,29476535:0 -) -(1,1688:6797234,30318023:25785795,513147,7863 -k1,1687:8523502,30318023:283821 -k1,1687:9826408,30318023:283821 -k1,1687:13307075,30318023:283821 -k1,1687:14782342,30318023:283822 -k1,1687:18158152,30318023:283821 -k1,1687:19710750,30318023:283821 -k1,1687:20653863,30318023:283821 -k1,1687:23753766,30318023:283821 -k1,1687:25322093,30318023:283821 -k1,1687:26710197,30318023:283822 -k1,1687:27741784,30318023:283821 -k1,1687:30605102,30318023:283821 -k1,1687:31575085,30318023:283821 -k1,1688:32583029,30318023:0 -) -(1,1688:6797234,31159511:25785795,513147,134348 -k1,1687:8547862,31159511:255752 -k1,1687:9462907,31159511:255753 -k1,1687:11273828,31159511:255752 -(1,1687:11273828,31159511:0,452978,115847 -r1,1795:13390653,31159511:2116825,568825,115847 -k1,1687:11273828,31159511:-2116825 -) -(1,1687:11273828,31159511:2116825,452978,115847 -k1,1687:11273828,31159511:3277 -h1,1687:13387376,31159511:0,411205,112570 -) -k1,1687:13820076,31159511:255753 -k1,1687:15272515,31159511:255752 -k1,1687:18725114,31159511:255753 -k1,1687:20249643,31159511:255752 -k1,1687:21164687,31159511:255752 -k1,1687:25058343,31159511:255753 -(1,1687:25058343,31159511:0,452978,115847 -r1,1795:27175168,31159511:2116825,568825,115847 -k1,1687:25058343,31159511:-2116825 -) -(1,1687:25058343,31159511:2116825,452978,115847 -k1,1687:25058343,31159511:3277 -h1,1687:27171891,31159511:0,411205,112570 -) -k1,1687:27430920,31159511:255752 -k1,1687:29870988,31159511:255753 -k1,1687:31821501,31159511:255752 -k1,1688:32583029,31159511:0 -) -(1,1688:6797234,32000999:25785795,513147,134348 -(1,1687:6797234,32000999:0,459977,115847 -r1,1795:13838025,32000999:7040791,575824,115847 -k1,1687:6797234,32000999:-7040791 -) -(1,1687:6797234,32000999:7040791,459977,115847 -k1,1687:6797234,32000999:3277 -h1,1687:13834748,32000999:0,411205,112570 -) -k1,1687:14185557,32000999:173862 -k1,1687:14890915,32000999:173861 -k1,1687:16848012,32000999:173862 -k1,1687:18881130,32000999:173862 -k1,1687:20497438,32000999:173861 -k1,1687:21690385,32000999:173862 -k1,1687:25061093,32000999:173862 -k1,1687:26915298,32000999:173862 -k1,1687:27756315,32000999:173861 -(1,1687:27756315,32000999:0,452978,122846 -r1,1795:30224852,32000999:2468537,575824,122846 -k1,1687:27756315,32000999:-2468537 -) -(1,1687:27756315,32000999:2468537,452978,122846 -k1,1687:27756315,32000999:3277 -h1,1687:30221575,32000999:0,411205,112570 -) -k1,1687:30398714,32000999:173862 -k1,1687:32583029,32000999:0 -) -(1,1688:6797234,32842487:25785795,505283,134348 -g1,1687:8691224,32842487 -g1,1687:9651981,32842487 -(1,1687:9651981,32842487:0,459977,122846 -r1,1795:16692772,32842487:7040791,582823,122846 -k1,1687:9651981,32842487:-7040791 -) -(1,1687:9651981,32842487:7040791,459977,122846 -k1,1687:9651981,32842487:3277 -h1,1687:16689495,32842487:0,411205,112570 -) -g1,1687:17065671,32842487 -g1,1687:17065671,32842487 -g1,1687:17264900,32842487 -g1,1687:17264900,32842487 -k1,1688:32583029,32842487:15318129 -g1,1688:32583029,32842487 -) -v1,1690:6797234,33863878:0,393216,0 -(1,1703:6797234,36807703:25785795,3337041,196608 -g1,1703:6797234,36807703 -g1,1703:6797234,36807703 -g1,1703:6600626,36807703 -(1,1703:6600626,36807703:0,3337041,196608 -r1,1795:32779637,36807703:26179011,3533649,196608 -k1,1703:6600625,36807703:-26179012 -) -(1,1703:6600626,36807703:26179011,3337041,196608 -[1,1703:6797234,36807703:25785795,3140433,0 -(1,1692:6797234,34077788:25785795,410518,31456 -(1,1691:6797234,34077788:0,0,0 -g1,1691:6797234,34077788 -g1,1691:6797234,34077788 -g1,1691:6469554,34077788 -(1,1691:6469554,34077788:0,0,0 -) -g1,1691:6797234,34077788 -) -h1,1692:13120147,34077788:0,0,0 -k1,1692:32583029,34077788:19462882 -g1,1692:32583029,34077788 -) -(1,1696:6797234,34743966:25785795,404226,76021 -(1,1694:6797234,34743966:0,0,0 -g1,1694:6797234,34743966 -g1,1694:6797234,34743966 -g1,1694:6469554,34743966 -(1,1694:6469554,34743966:0,0,0 -) -g1,1694:6797234,34743966 -) -g1,1696:7745671,34743966 -g1,1696:9010254,34743966 -h1,1696:13120148,34743966:0,0,0 -k1,1696:32583028,34743966:19462880 -g1,1696:32583028,34743966 -) -(1,1698:6797234,36065504:25785795,410518,107478 -(1,1697:6797234,36065504:0,0,0 -g1,1697:6797234,36065504 -g1,1697:6797234,36065504 -g1,1697:6469554,36065504 -(1,1697:6469554,36065504:0,0,0 -) -g1,1697:6797234,36065504 -) -h1,1698:13120147,36065504:0,0,0 -k1,1698:32583029,36065504:19462882 -g1,1698:32583029,36065504 -) -(1,1702:6797234,36731682:25785795,404226,76021 -(1,1700:6797234,36731682:0,0,0 -g1,1700:6797234,36731682 -g1,1700:6797234,36731682 -g1,1700:6469554,36731682 -(1,1700:6469554,36731682:0,0,0 -) -g1,1700:6797234,36731682 -) -g1,1702:7745671,36731682 -g1,1702:9010254,36731682 -h1,1702:12171711,36731682:0,0,0 -k1,1702:32583029,36731682:20411318 -g1,1702:32583029,36731682 -) -] -) -g1,1703:32583029,36807703 -g1,1703:6797234,36807703 -g1,1703:6797234,36807703 -g1,1703:32583029,36807703 -g1,1703:32583029,36807703 -) -h1,1703:6797234,37004311:0,0,0 -(1,1708:6797234,38201013:25785795,513147,126483 -h1,1706:6797234,38201013:983040,0,0 -k1,1706:8875935,38201013:277772 -(1,1706:8875935,38201013:0,452978,122846 -r1,1795:11344472,38201013:2468537,575824,122846 -k1,1706:8875935,38201013:-2468537 -) -(1,1706:8875935,38201013:2468537,452978,122846 -k1,1706:8875935,38201013:3277 -h1,1706:11341195,38201013:0,411205,112570 -) -k1,1706:11622244,38201013:277772 -k1,1706:13910661,38201013:277772 -k1,1706:15179993,38201013:277772 -k1,1706:17495935,38201013:277772 -k1,1706:18389745,38201013:277772 -k1,1706:21355148,38201013:277772 -k1,1706:24264191,38201013:277772 -k1,1706:27002185,38201013:277772 -k1,1706:28540214,38201013:277772 -k1,1706:29477278,38201013:277772 -k1,1706:32583029,38201013:0 -) -(1,1708:6797234,39042501:25785795,513147,134348 -k1,1706:9311730,39042501:200420 -k1,1706:10043648,39042501:200421 -k1,1706:11310339,39042501:200420 -k1,1706:13892337,39042501:200420 -k1,1706:15040409,39042501:200421 -(1,1706:15040409,39042501:0,452978,122846 -r1,1795:17508946,39042501:2468537,575824,122846 -k1,1706:15040409,39042501:-2468537 -) -(1,1706:15040409,39042501:2468537,452978,122846 -k1,1706:15040409,39042501:3277 -h1,1706:17505669,39042501:0,411205,112570 -) -k1,1706:17709366,39042501:200420 -k1,1706:20094101,39042501:200420 -k1,1707:20094101,39042501:0 -k1,1707:20922357,39042501:200421 -k1,1707:21537619,39042501:200419 -k1,1707:22804310,39042501:200420 -k1,1707:23770846,39042501:200420 -k1,1707:27903427,39042501:200421 -(1,1707:27903427,39042501:0,452978,115847 -r1,1795:30371964,39042501:2468537,568825,115847 -k1,1707:27903427,39042501:-2468537 -) -(1,1707:27903427,39042501:2468537,452978,115847 -k1,1707:27903427,39042501:3277 -h1,1707:30368687,39042501:0,411205,112570 -) -k1,1707:30572384,39042501:200420 -k1,1707:32583029,39042501:0 -) -(1,1708:6797234,39883989:25785795,513147,134348 -k1,1707:9255784,39883989:235569 -k1,1707:10107391,39883989:235569 -k1,1707:11362044,39883989:235568 -k1,1707:13251086,39883989:235569 -k1,1707:14898301,39883989:235569 -k1,1707:16823388,39883989:235569 -k1,1707:19932710,39883989:235568 -(1,1707:19932710,39883989:0,452978,115847 -r1,1795:22049535,39883989:2116825,568825,115847 -k1,1707:19932710,39883989:-2116825 -) -(1,1707:19932710,39883989:2116825,452978,115847 -k1,1707:19932710,39883989:3277 -h1,1707:22046258,39883989:0,411205,112570 -) -k1,1707:22285104,39883989:235569 -k1,1707:24531318,39883989:235569 -k1,1707:25758447,39883989:235569 -k1,1707:28032186,39883989:235569 -k1,1707:28953916,39883989:235568 -(1,1707:28953916,39883989:0,459977,115847 -r1,1795:30367317,39883989:1413401,575824,115847 -k1,1707:28953916,39883989:-1413401 -) -(1,1707:28953916,39883989:1413401,459977,115847 -k1,1707:28953916,39883989:3277 -h1,1707:30364040,39883989:0,411205,112570 -) -k1,1707:30602886,39883989:235569 -k1,1707:31521340,39883989:235569 -(1,1707:31521340,39883989:0,459977,115847 -r1,1795:32583029,39883989:1061689,575824,115847 -k1,1707:31521340,39883989:-1061689 -) -(1,1707:31521340,39883989:1061689,459977,115847 -k1,1707:31521340,39883989:3277 -h1,1707:32579752,39883989:0,411205,112570 -) -k1,1707:32583029,39883989:0 -) -(1,1708:6797234,40725477:25785795,513147,134348 -k1,1707:8149373,40725477:160694 -k1,1707:9964851,40725477:160694 -k1,1707:13401690,40725477:160694 -k1,1707:14248546,40725477:160694 -k1,1707:16676130,40725477:160694 -k1,1707:18847470,40725477:160695 -k1,1707:22125056,40725477:160694 -k1,1707:23304835,40725477:160694 -k1,1707:27788939,40725477:160694 -k1,1707:29709275,40725477:160694 -k1,1708:32583029,40725477:0 -) -(1,1708:6797234,41566965:25785795,505283,134348 -(1,1707:6797234,41566965:0,452978,122846 -r1,1795:9265771,41566965:2468537,575824,122846 -k1,1707:6797234,41566965:-2468537 -) -(1,1707:6797234,41566965:2468537,452978,122846 -k1,1707:6797234,41566965:3277 -h1,1707:9262494,41566965:0,411205,112570 -) -g1,1707:9465000,41566965 -g1,1707:11674874,41566965 -g1,1707:14317285,41566965 -(1,1707:14317285,41566965:0,414482,115847 -r1,1795:15027263,41566965:709978,530329,115847 -k1,1707:14317285,41566965:-709978 -) -(1,1707:14317285,41566965:709978,414482,115847 -k1,1707:14317285,41566965:3277 -h1,1707:15023986,41566965:0,411205,112570 -) -g1,1707:15226492,41566965 -g1,1707:16819672,41566965 -g1,1707:17374761,41566965 -k1,1708:32583029,41566965:12464276 -g1,1708:32583029,41566965 -) -v1,1710:6797234,42588357:0,393216,0 -(1,1723:6797234,45510161:25785795,3315020,196608 -g1,1723:6797234,45510161 -g1,1723:6797234,45510161 -g1,1723:6600626,45510161 -(1,1723:6600626,45510161:0,3315020,196608 -r1,1795:32779637,45510161:26179011,3511628,196608 -k1,1723:6600625,45510161:-26179012 -) -(1,1723:6600626,45510161:26179011,3315020,196608 -[1,1723:6797234,45510161:25785795,3118412,0 -(1,1712:6797234,42780246:25785795,388497,9436 -(1,1711:6797234,42780246:0,0,0 -g1,1711:6797234,42780246 -g1,1711:6797234,42780246 -g1,1711:6469554,42780246 -(1,1711:6469554,42780246:0,0,0 -) -g1,1711:6797234,42780246 -) -h1,1712:8694108,42780246:0,0,0 -k1,1712:32583028,42780246:23888920 -g1,1712:32583028,42780246 -) -(1,1716:6797234,43446424:25785795,410518,76021 -(1,1714:6797234,43446424:0,0,0 -g1,1714:6797234,43446424 -g1,1714:6797234,43446424 -g1,1714:6469554,43446424 -(1,1714:6469554,43446424:0,0,0 -) -g1,1714:6797234,43446424 -) -g1,1716:7745671,43446424 -g1,1716:9010254,43446424 -h1,1716:9958691,43446424:0,0,0 -k1,1716:32583029,43446424:22624338 -g1,1716:32583029,43446424 -) -(1,1718:6797234,44767962:25785795,388497,9436 -(1,1717:6797234,44767962:0,0,0 -g1,1717:6797234,44767962 -g1,1717:6797234,44767962 -g1,1717:6469554,44767962 -(1,1717:6469554,44767962:0,0,0 -) -g1,1717:6797234,44767962 -) -k1,1718:6797234,44767962:0 -h1,1718:9010253,44767962:0,0,0 -k1,1718:32583029,44767962:23572776 -g1,1718:32583029,44767962 -) -(1,1722:6797234,45434140:25785795,404226,76021 -(1,1720:6797234,45434140:0,0,0 -g1,1720:6797234,45434140 -g1,1720:6797234,45434140 -g1,1720:6469554,45434140 -(1,1720:6469554,45434140:0,0,0 -) -g1,1720:6797234,45434140 -) -g1,1722:7745671,45434140 -g1,1722:9010254,45434140 -h1,1722:9326400,45434140:0,0,0 -k1,1722:32583028,45434140:23256628 -g1,1722:32583028,45434140 -) -] -) -g1,1723:32583029,45510161 -g1,1723:6797234,45510161 -g1,1723:6797234,45510161 -g1,1723:32583029,45510161 -g1,1723:32583029,45510161 -) -h1,1723:6797234,45706769:0,0,0 -] -g1,1795:32583029,45706769 -) -] -(1,1795:32583029,45706769:0,0,0 -g1,1795:32583029,45706769 -) -) -] -(1,1795:6630773,47279633:25952256,0,0 -h1,1795:6630773,47279633:25952256,0,0 -) -] -(1,1795:4262630,4025873:0,0,0 -[1,1795:-473656,4025873:0,0,0 -(1,1795:-473656,-710413:0,0,0 -(1,1795:-473656,-710413:0,0,0 -g1,1795:-473656,-710413 -) -g1,1795:-473656,-710413 -) -] -) -] -!26834 -}51 -Input:393:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:394:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:395:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:396:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!383 -{52 -[1,1851:4262630,47279633:28320399,43253760,0 -(1,1851:4262630,4025873:0,0,0 -[1,1851:-473656,4025873:0,0,0 -(1,1851:-473656,-710413:0,0,0 -(1,1851:-473656,-644877:0,0,0 -k1,1851:-473656,-644877:-65536 -) -(1,1851:-473656,4736287:0,0,0 -k1,1851:-473656,4736287:5209943 +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,1902:37855564,49800853:1179648,16384,0 ) -g1,1851:-473656,-710413 ) -] -) -[1,1851:6630773,47279633:25952256,43253760,0 -[1,1851:6630773,4812305:25952256,786432,0 -(1,1851:6630773,4812305:25952256,505283,11795 -(1,1851:6630773,4812305:25952256,505283,11795 -g1,1851:3078558,4812305 -[1,1851:3078558,4812305:0,0,0 -(1,1851:3078558,2439708:0,1703936,0 -k1,1851:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,1851:2537886,2439708:1179648,16384,0 -) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,1851:3078558,1915420:16384,1179648,0 -) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 -) -] -) -) -) -] -[1,1851:3078558,4812305:0,0,0 -(1,1851:3078558,2439708:0,1703936,0 -g1,1851:29030814,2439708 -g1,1851:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,1851:36151628,1915420:16384,1179648,0 -) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 -) -] -) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,1851:37855564,2439708:1179648,16384,0 -) -) -k1,1851:3078556,2439708:-34777008 +k1,1902:3078556,49800853:-34777008 ) ] -[1,1851:3078558,4812305:0,0,0 -(1,1851:3078558,49800853:0,16384,2228224 -k1,1851:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,1851:2537886,49800853:1179648,16384,0 +g1,1902:6630773,4812305 +g1,1902:6630773,4812305 +g1,1902:9516978,4812305 +g1,1902:11710468,4812305 +g1,1902:13120147,4812305 +g1,1902:16560787,4812305 +k1,1902:31786111,4812305:15225324 ) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,1851:3078558,51504789:16384,1179648,0 -) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 -) -] -) -) -) -] -[1,1851:3078558,4812305:0,0,0 -(1,1851:3078558,49800853:0,16384,2228224 -g1,1851:29030814,49800853 -g1,1851:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,1851:36151628,51504789:16384,1179648,0 -) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 ) ] +[1,1902:6630773,45706769:25952256,40108032,0 +(1,1902:6630773,45706769:25952256,40108032,0 +(1,1902:6630773,45706769:0,0,0 +g1,1902:6630773,45706769 ) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,1851:37855564,49800853:1179648,16384,0 +[1,1902:6630773,45706769:25952256,40108032,0 +(1,1815:6630773,6254097:25952256,513147,134348 +k1,1814:7482957,6254097:169299 +k1,1814:10307118,6254097:169298 +k1,1814:12156760,6254097:169299 +k1,1814:13273710,6254097:169299 +(1,1814:13273710,6254097:0,452978,122846 +r1,1902:15390535,6254097:2116825,575824,122846 +k1,1814:13273710,6254097:-2116825 ) +(1,1814:13273710,6254097:2116825,452978,122846 +k1,1814:13273710,6254097:3277 +h1,1814:15387258,6254097:0,411205,112570 +) +k1,1814:15733503,6254097:169298 +k1,1814:19872973,6254097:169299 +k1,1814:20670106,6254097:169298 +k1,1814:23644346,6254097:169299 +k1,1814:26509141,6254097:169299 +(1,1814:26509141,6254097:0,459977,122846 +r1,1902:29329390,6254097:2820249,582823,122846 +k1,1814:26509141,6254097:-2820249 +) +(1,1814:26509141,6254097:2820249,459977,122846 +k1,1814:26509141,6254097:3277 +h1,1814:29326113,6254097:0,411205,112570 +) +k1,1814:29498688,6254097:169298 +k1,1814:31931601,6254097:169299 +k1,1814:32583029,6254097:0 +) +(1,1815:6630773,7119177:25952256,513147,134348 +k1,1814:7802393,7119177:152535 +k1,1814:11112453,7119177:152535 +k1,1814:13750768,7119177:152534 +k1,1814:14562595,7119177:152535 +k1,1814:18028630,7119177:152535 +k1,1814:20139381,7119177:152535 +k1,1814:21361464,7119177:152535 +k1,1814:24177382,7119177:152535 +k1,1814:25349001,7119177:152534 +k1,1814:28115767,7119177:152535 +k1,1814:28927594,7119177:152535 +k1,1814:30099214,7119177:152535 +k1,1814:32583029,7119177:0 +) +(1,1815:6630773,7984257:25952256,505283,7863 +k1,1815:32583029,7984257:23486136 +g1,1815:32583029,7984257 +) +v1,1817:6630773,8669112:0,393216,0 +(1,1848:6630773,16320108:25952256,8044212,196608 +g1,1848:6630773,16320108 +g1,1848:6630773,16320108 +g1,1848:6434165,16320108 +(1,1848:6434165,16320108:0,8044212,196608 +r1,1902:32779637,16320108:26345472,8240820,196608 +k1,1848:6434165,16320108:-26345472 +) +(1,1848:6434165,16320108:26345472,8044212,196608 +[1,1848:6630773,16320108:25952256,7847604,0 +(1,1819:6630773,8896943:25952256,424439,112852 +(1,1818:6630773,8896943:0,0,0 +g1,1818:6630773,8896943 +g1,1818:6630773,8896943 +g1,1818:6303093,8896943 +(1,1818:6303093,8896943:0,0,0 +) +g1,1818:6630773,8896943 +) +k1,1819:6630773,8896943:0 +g1,1819:12273990,8896943 +g1,1819:14597668,8896943 +g1,1819:15261576,8896943 +h1,1819:15925484,8896943:0,0,0 +k1,1819:32583029,8896943:16657545 +g1,1819:32583029,8896943 +) +(1,1823:6630773,9712870:25952256,424439,79822 +(1,1821:6630773,9712870:0,0,0 +g1,1821:6630773,9712870 +g1,1821:6630773,9712870 +g1,1821:6303093,9712870 +(1,1821:6303093,9712870:0,0,0 +) +g1,1821:6630773,9712870 +) +g1,1823:7626635,9712870 +g1,1823:8954451,9712870 +h1,1823:10614221,9712870:0,0,0 +k1,1823:32583029,9712870:21968808 +g1,1823:32583029,9712870 +) +(1,1825:6630773,10528797:25952256,431045,112852 +(1,1824:6630773,10528797:0,0,0 +g1,1824:6630773,10528797 +g1,1824:6630773,10528797 +g1,1824:6303093,10528797 +(1,1824:6303093,10528797:0,0,0 +) +g1,1824:6630773,10528797 +) +k1,1825:6630773,10528797:0 +g1,1825:12605944,10528797 +g1,1825:14929622,10528797 +g1,1825:15593530,10528797 +h1,1825:16257438,10528797:0,0,0 +k1,1825:32583029,10528797:16325591 +g1,1825:32583029,10528797 +) +(1,1829:6630773,11344724:25952256,424439,79822 +(1,1827:6630773,11344724:0,0,0 +g1,1827:6630773,11344724 +g1,1827:6630773,11344724 +g1,1827:6303093,11344724 +(1,1827:6303093,11344724:0,0,0 +) +g1,1827:6630773,11344724 +) +g1,1829:7626635,11344724 +g1,1829:8954451,11344724 +h1,1829:10946175,11344724:0,0,0 +k1,1829:32583029,11344724:21636854 +g1,1829:32583029,11344724 +) +(1,1831:6630773,12160651:25952256,424439,112852 +(1,1830:6630773,12160651:0,0,0 +g1,1830:6630773,12160651 +g1,1830:6630773,12160651 +g1,1830:6303093,12160651 +(1,1830:6303093,12160651:0,0,0 +) +g1,1830:6630773,12160651 +) +k1,1831:6630773,12160651:0 +g1,1831:12273990,12160651 +g1,1831:14597668,12160651 +g1,1831:15261576,12160651 +k1,1831:15261576,12160651:0 +h1,1831:16257438,12160651:0,0,0 +k1,1831:32583029,12160651:16325591 +g1,1831:32583029,12160651 +) +(1,1835:6630773,12976578:25952256,424439,79822 +(1,1833:6630773,12976578:0,0,0 +g1,1833:6630773,12976578 +g1,1833:6630773,12976578 +g1,1833:6303093,12976578 +(1,1833:6303093,12976578:0,0,0 +) +g1,1833:6630773,12976578 +) +g1,1835:7626635,12976578 +g1,1835:8954451,12976578 +h1,1835:10282267,12976578:0,0,0 +k1,1835:32583029,12976578:22300762 +g1,1835:32583029,12976578 +) +(1,1837:6630773,13792505:25952256,424439,112852 +(1,1836:6630773,13792505:0,0,0 +g1,1836:6630773,13792505 +g1,1836:6630773,13792505 +g1,1836:6303093,13792505 +(1,1836:6303093,13792505:0,0,0 +) +g1,1836:6630773,13792505 +) +k1,1837:6630773,13792505:0 +g1,1837:12273990,13792505 +g1,1837:14597668,13792505 +g1,1837:15261576,13792505 +h1,1837:15925484,13792505:0,0,0 +k1,1837:32583029,13792505:16657545 +g1,1837:32583029,13792505 +) +(1,1841:6630773,14608432:25952256,424439,79822 +(1,1839:6630773,14608432:0,0,0 +g1,1839:6630773,14608432 +g1,1839:6630773,14608432 +g1,1839:6303093,14608432 +(1,1839:6303093,14608432:0,0,0 +) +g1,1839:6630773,14608432 +) +g1,1841:7626635,14608432 +g1,1841:8954451,14608432 +h1,1841:11610082,14608432:0,0,0 +k1,1841:32583030,14608432:20972948 +g1,1841:32583030,14608432 +) +(1,1843:6630773,15424359:25952256,431045,112852 +(1,1842:6630773,15424359:0,0,0 +g1,1842:6630773,15424359 +g1,1842:6630773,15424359 +g1,1842:6303093,15424359 +(1,1842:6303093,15424359:0,0,0 +) +g1,1842:6630773,15424359 +) +k1,1843:6630773,15424359:0 +g1,1843:12605944,15424359 +g1,1843:14929622,15424359 +g1,1843:15593530,15424359 +h1,1843:16257438,15424359:0,0,0 +k1,1843:32583029,15424359:16325591 +g1,1843:32583029,15424359 +) +(1,1847:6630773,16240286:25952256,424439,79822 +(1,1845:6630773,16240286:0,0,0 +g1,1845:6630773,16240286 +g1,1845:6630773,16240286 +g1,1845:6303093,16240286 +(1,1845:6303093,16240286:0,0,0 +) +g1,1845:6630773,16240286 +) +g1,1847:7626635,16240286 +g1,1847:8954451,16240286 +h1,1847:10282267,16240286:0,0,0 +k1,1847:32583029,16240286:22300762 +g1,1847:32583029,16240286 +) +] +) +g1,1848:32583029,16320108 +g1,1848:6630773,16320108 +g1,1848:6630773,16320108 +g1,1848:32583029,16320108 +g1,1848:32583029,16320108 +) +h1,1848:6630773,16516716:0,0,0 +v1,1852:6630773,17201571:0,393216,0 +(1,1873:6630773,22942053:25952256,6133698,196608 +g1,1873:6630773,22942053 +g1,1873:6630773,22942053 +g1,1873:6434165,22942053 +(1,1873:6434165,22942053:0,6133698,196608 +r1,1902:32779637,22942053:26345472,6330306,196608 +k1,1873:6434165,22942053:-26345472 +) +(1,1873:6434165,22942053:26345472,6133698,196608 +[1,1873:6630773,22942053:25952256,5937090,0 +(1,1854:6630773,17412886:25952256,407923,9908 +(1,1853:6630773,17412886:0,0,0 +g1,1853:6630773,17412886 +g1,1853:6630773,17412886 +g1,1853:6303093,17412886 +(1,1853:6303093,17412886:0,0,0 +) +g1,1853:6630773,17412886 +) +g1,1854:8622497,17412886 +g1,1854:9618359,17412886 +h1,1854:11942037,17412886:0,0,0 +k1,1854:32583029,17412886:20640992 +g1,1854:32583029,17412886 +) +(1,1855:6630773,18097741:25952256,424439,112852 +h1,1855:6630773,18097741:0,0,0 +g1,1855:8622497,18097741 +g1,1855:9618359,18097741 +g1,1855:13933761,18097741 +g1,1855:16257439,18097741 +g1,1855:16921347,18097741 +h1,1855:17585255,18097741:0,0,0 +k1,1855:32583029,18097741:14997774 +g1,1855:32583029,18097741 +) +(1,1856:6630773,18782596:25952256,407923,9908 +h1,1856:6630773,18782596:0,0,0 +g1,1856:8622497,18782596 +g1,1856:9618359,18782596 +h1,1856:11278129,18782596:0,0,0 +k1,1856:32583029,18782596:21304900 +g1,1856:32583029,18782596 +) +(1,1860:6630773,19598523:25952256,424439,79822 +(1,1858:6630773,19598523:0,0,0 +g1,1858:6630773,19598523 +g1,1858:6630773,19598523 +g1,1858:6303093,19598523 +(1,1858:6303093,19598523:0,0,0 +) +g1,1858:6630773,19598523 +) +g1,1860:7626635,19598523 +g1,1860:8954451,19598523 +h1,1860:10614221,19598523:0,0,0 +k1,1860:32583029,19598523:21968808 +g1,1860:32583029,19598523 +) +(1,1862:6630773,20414450:25952256,407923,9908 +(1,1861:6630773,20414450:0,0,0 +g1,1861:6630773,20414450 +g1,1861:6630773,20414450 +g1,1861:6303093,20414450 +(1,1861:6303093,20414450:0,0,0 +) +g1,1861:6630773,20414450 +) +g1,1862:8622497,20414450 +g1,1862:9286405,20414450 +h1,1862:10946175,20414450:0,0,0 +k1,1862:32583029,20414450:21636854 +g1,1862:32583029,20414450 +) +(1,1866:6630773,21230377:25952256,424439,79822 +(1,1864:6630773,21230377:0,0,0 +g1,1864:6630773,21230377 +g1,1864:6630773,21230377 +g1,1864:6303093,21230377 +(1,1864:6303093,21230377:0,0,0 +) +g1,1864:6630773,21230377 +) +g1,1866:7626635,21230377 +g1,1866:8954451,21230377 +h1,1866:11278129,21230377:0,0,0 +k1,1866:32583029,21230377:21304900 +g1,1866:32583029,21230377 +) +(1,1868:6630773,22046304:25952256,407923,6605 +(1,1867:6630773,22046304:0,0,0 +g1,1867:6630773,22046304 +g1,1867:6630773,22046304 +g1,1867:6303093,22046304 +(1,1867:6303093,22046304:0,0,0 +) +g1,1867:6630773,22046304 +) +h1,1868:8290543,22046304:0,0,0 +k1,1868:32583029,22046304:24292486 +g1,1868:32583029,22046304 +) +(1,1872:6630773,22862231:25952256,424439,79822 +(1,1870:6630773,22862231:0,0,0 +g1,1870:6630773,22862231 +g1,1870:6630773,22862231 +g1,1870:6303093,22862231 +(1,1870:6303093,22862231:0,0,0 +) +g1,1870:6630773,22862231 +) +g1,1872:7626635,22862231 +g1,1872:8954451,22862231 +h1,1872:10282267,22862231:0,0,0 +k1,1872:32583029,22862231:22300762 +g1,1872:32583029,22862231 +) +] +) +g1,1873:32583029,22942053 +g1,1873:6630773,22942053 +g1,1873:6630773,22942053 +g1,1873:32583029,22942053 +g1,1873:32583029,22942053 +) +h1,1873:6630773,23138661:0,0,0 +v1,1877:6630773,24003741:0,393216,0 +(1,1899:6630773,44385456:25952256,20774931,0 +g1,1899:6630773,44385456 +g1,1899:6237557,44385456 +r1,1902:6368629,44385456:131072,20774931,0 +g1,1899:6567858,44385456 +g1,1899:6764466,44385456 +[1,1899:6764466,44385456:25818563,20774931,0 +(1,1878:6764466,24312039:25818563,701514,196608 +(1,1877:6764466,24312039:0,701514,196608 +r1,1902:8010564,24312039:1246098,898122,196608 +k1,1877:6764466,24312039:-1246098 +) +(1,1877:6764466,24312039:1246098,701514,196608 +) +k1,1877:8205375,24312039:194811 +k1,1877:8533055,24312039:327680 +k1,1877:11848035,24312039:194811 +k1,1877:13034406,24312039:194811 +k1,1877:16319240,24312039:194811 +k1,1877:17130089,24312039:194811 +k1,1877:19112067,24312039:194811 +k1,1877:19922916,24312039:194811 +k1,1877:22396414,24312039:194811 +h1,1877:23367002,24312039:0,0,0 +k1,1877:23561813,24312039:194811 +k1,1877:24565994,24312039:194811 +k1,1877:26258958,24312039:194811 +h1,1877:27454335,24312039:0,0,0 +k1,1877:27822815,24312039:194810 +k1,1877:29505949,24312039:194811 +k1,1877:29913748,24312039:194807 +k1,1877:32583029,24312039:0 +) +(1,1878:6764466,25177119:25818563,513147,134348 +k1,1877:8609758,25177119:206237 +k1,1877:10848922,25177119:206237 +k1,1877:11671197,25177119:206237 +k1,1877:14341589,25177119:206238 +k1,1877:15199254,25177119:206237 +k1,1877:16914130,25177119:206237 +k1,1877:18386523,25177119:206237 +k1,1877:21712929,25177119:206237 +k1,1877:22910726,25177119:206237 +k1,1877:25406792,25177119:206238 +k1,1877:28975026,25177119:206237 +k1,1877:29596099,25177119:206230 +k1,1877:31298523,25177119:206237 +k1,1877:32583029,25177119:0 +) +(1,1878:6764466,26042199:25818563,513147,134348 +k1,1877:8007731,26042199:138983 +k1,1877:8894480,26042199:138983 +k1,1877:10546689,26042199:138983 +k1,1877:11337100,26042199:138983 +k1,1877:14100145,26042199:138983 +k1,1877:15009831,26042199:138983 +k1,1877:18223108,26042199:138983 +k1,1877:19171461,26042199:138983 +k1,1877:20699807,26042199:138983 +k1,1877:23044077,26042199:138983 +k1,1877:23869222,26042199:138983 +k1,1877:27080533,26042199:138983 +k1,1877:27870944,26042199:138983 +k1,1877:28798325,26042199:138983 +k1,1877:32583029,26042199:0 +) +(1,1878:6764466,26907279:25818563,513147,134348 +k1,1877:8529701,26907279:207444 +k1,1877:10747790,26907279:207444 +k1,1877:11974318,26907279:207443 +k1,1877:14024634,26907279:207444 +k1,1877:14891370,26907279:207444 +k1,1877:16117899,26907279:207444 +k1,1877:19399637,26907279:207444 +k1,1877:20293243,26907279:207444 +k1,1877:20856546,26907279:207443 +k1,1877:22937009,26907279:207444 +k1,1877:23559288,26907279:207436 +k1,1877:25899929,26907279:207444 +k1,1877:26790257,26907279:207443 +k1,1877:28210772,26907279:207444 +k1,1877:31896867,26907279:207444 +k1,1877:32583029,26907279:0 +) +(1,1878:6764466,27772359:25818563,513147,134348 +k1,1877:7417292,27772359:296966 +k1,1877:9013837,27772359:296966 +k1,1877:11255257,27772359:296967 +k1,1877:14672392,27772359:296966 +k1,1877:16444573,27772359:296966 +k1,1877:17097399,27772359:296966 +k1,1877:19132380,27772359:296966 +k1,1877:20575572,27772359:296967 +k1,1877:22004345,27772359:296966 +k1,1877:24003281,27772359:296966 +k1,1877:24714992,27772359:296868 +k1,1877:27145155,27772359:296966 +k1,1877:27919878,27772359:296966 +k1,1877:29235930,27772359:296967 +k1,1877:31270911,27772359:296966 +k1,1877:32227169,27772359:296966 +k1,1877:32583029,27772359:0 +) +(1,1878:6764466,28637439:25818563,513147,126483 +k1,1877:9629518,28637439:169556 +k1,1877:12552241,28637439:169556 +k1,1877:13483324,28637439:169555 +k1,1877:17507052,28637439:169556 +(1,1877:17507052,28637439:0,452978,115847 +r1,1902:18217030,28637439:709978,568825,115847 +k1,1877:17507052,28637439:-709978 +) +(1,1877:17507052,28637439:709978,452978,115847 +k1,1877:17507052,28637439:3277 +h1,1877:18213753,28637439:0,411205,112570 +) +k1,1877:18386586,28637439:169556 +k1,1877:19747587,28637439:169556 +k1,1877:22675553,28637439:169556 +k1,1877:23461147,28637439:169556 +k1,1877:23986562,28637439:169555 +k1,1877:25652305,28637439:169556 +k1,1877:29181892,28637439:169556 +k1,1877:29809545,28637439:169556 +k1,1877:32583029,28637439:0 +) +(1,1878:6764466,29502519:25818563,513147,134348 +k1,1877:7315746,29502519:195420 +k1,1877:10206662,29502519:195420 +k1,1877:11531923,29502519:195421 +k1,1877:12410228,29502519:195420 +k1,1877:12961508,29502519:195420 +k1,1877:16146680,29502519:195420 +k1,1877:17289751,29502519:195420 +k1,1877:18504256,29502519:195420 +k1,1877:20195864,29502519:195421 +k1,1877:22429454,29502519:195420 +k1,1877:23240912,29502519:195420 +k1,1877:24455417,29502519:195420 +k1,1877:27346333,29502519:195420 +k1,1877:29501280,29502519:195421 +k1,1877:30348128,29502519:195420 +k1,1877:31291314,29502519:195420 +k1,1877:32583029,29502519:0 +) +(1,1878:6764466,30367599:25818563,513147,134348 +k1,1877:8725070,30367599:265188 +k1,1877:12189727,30367599:265189 +k1,1877:14502915,30367599:265188 +k1,1877:15182880,30367599:265122 +k1,1877:17737897,30367599:265189 +k1,1877:20212959,30367599:265188 +k1,1877:23235902,30367599:265188 +k1,1877:25511736,30367599:265189 +k1,1877:26463086,30367599:265188 +k1,1877:30157774,30367599:265189 +k1,1877:31074390,30367599:265188 +k1,1877:32583029,30367599:0 +) +(1,1878:6764466,31232679:25818563,513147,126483 +k1,1877:9103773,31232679:208732 +k1,1877:13116214,31232679:208732 +k1,1877:15547928,31232679:208733 +k1,1877:19367694,31232679:208732 +k1,1877:20567986,31232679:208732 +k1,1877:24510304,31232679:208732 +k1,1877:26787352,31232679:208732 +k1,1877:27612123,31232679:208733 +k1,1877:28839940,31232679:208732 +k1,1877:30544859,31232679:208732 +k1,1877:32583029,31232679:0 +) +(1,1878:6764466,32097759:25818563,513147,134348 +k1,1877:7520219,32097759:139715 +k1,1877:8679018,32097759:139714 +k1,1877:11514229,32097759:139715 +k1,1877:13787140,32097759:139714 +k1,1877:14609740,32097759:139715 +k1,1877:15768539,32097759:139714 +k1,1877:18867860,32097759:139715 +k1,1877:19666866,32097759:139714 +k1,1877:20825666,32097759:139715 +k1,1877:23834547,32097759:139715 +k1,1877:24602096,32097759:139714 +k1,1877:25097671,32097759:139715 +k1,1877:27932881,32097759:139714 +k1,1877:29172290,32097759:139715 +k1,1877:30331089,32097759:139714 +k1,1877:31966991,32097759:139715 +k1,1877:32583029,32097759:0 +) +(1,1878:6764466,32962839:25818563,513147,134348 +k1,1877:7737437,32962839:184573 +k1,1877:11004168,32962839:184573 +k1,1877:11720238,32962839:184573 +k1,1877:14965998,32962839:184573 +k1,1877:16040550,32962839:184573 +k1,1877:17550262,32962839:184574 +k1,1877:19128786,32962839:184573 +k1,1877:24935693,32962839:184573 +k1,1877:27188582,32962839:184573 +k1,1877:29368726,32962839:184573 +k1,1877:30572384,32962839:184573 +k1,1877:32583029,32962839:0 +) +(1,1878:6764466,33827919:25818563,505283,134348 +g1,1877:9168982,33827919 +g1,1877:10054373,33827919 +g1,1877:13656231,33827919 +g1,1877:14506888,33827919 +k1,1878:32583029,33827919:16263415 +g1,1878:32583029,33827919 +) +(1,1880:6764466,34692999:25818563,513147,134348 +h1,1879:6764466,34692999:983040,0,0 +k1,1879:8701120,34692999:325779 +k1,1879:9382760,34692999:325780 +k1,1879:12404035,34692999:325779 +k1,1879:15811973,34692999:325780 +k1,1879:18266361,34692999:325779 +k1,1879:22203174,34692999:325779 +k1,1879:23633236,34692999:325780 +k1,1879:24706781,34692999:325779 +k1,1879:27807355,34692999:325780 +k1,1879:30398714,34692999:325779 +k1,1879:32583029,34692999:0 +) +(1,1880:6764466,35558079:25818563,513147,134348 +k1,1879:8915498,35558079:265561 +k1,1879:10172619,35558079:265561 +k1,1879:11951406,35558079:265561 +k1,1879:12682928,35558079:265561 +k1,1879:13757859,35558079:265561 +k1,1879:16354536,35558079:265561 +k1,1879:19692425,35558079:265561 +k1,1879:20489483,35558079:265561 +k1,1879:22960331,35558079:265561 +k1,1879:23841930,35558079:265561 +k1,1879:25126576,35558079:265561 +k1,1879:26665502,35558079:265561 +k1,1879:30465420,35558079:265561 +k1,1879:31835263,35558079:265561 +k1,1879:32583029,35558079:0 +) +(1,1880:6764466,36423159:25818563,513147,134348 +k1,1879:9208606,36423159:238853 +k1,1879:10098888,36423159:238854 +k1,1879:12466350,36423159:238853 +k1,1879:16316238,36423159:238854 +k1,1879:17316619,36423159:238853 +k1,1879:19293487,36423159:238853 +k1,1879:20215226,36423159:238854 +k1,1879:21215607,36423159:238853 +k1,1879:24242362,36423159:238853 +k1,1879:25109051,36423159:238854 +k1,1879:26949604,36423159:238853 +k1,1879:29059511,36423159:238854 +k1,1879:31725818,36423159:238853 +k1,1880:32583029,36423159:0 +) +(1,1880:6764466,37288239:25818563,505283,134348 +k1,1879:9739254,37288239:216378 +k1,1879:10717160,37288239:216378 +k1,1879:12671553,37288239:216378 +k1,1879:14933964,37288239:216377 +k1,1879:16169427,37288239:216378 +k1,1879:17881992,37288239:216378 +k1,1879:19968768,37288239:216378 +k1,1879:20836574,37288239:216378 +k1,1879:24717725,37288239:216378 +k1,1879:26125547,37288239:216377 +k1,1879:27992122,37288239:216378 +k1,1879:30293856,37288239:216378 +k1,1879:32583029,37288239:0 +) +(1,1880:6764466,38153319:25818563,513147,134348 +k1,1879:9141569,38153319:238008 +k1,1879:12387680,38153319:238008 +k1,1879:13253523,38153319:238008 +k1,1879:14510616,38153319:238008 +k1,1879:17740343,38153319:238008 +k1,1879:18594389,38153319:238008 +k1,1879:19851482,38153319:238008 +k1,1879:21671529,38153319:238008 +k1,1879:22122490,38153319:237969 +k1,1879:23962198,38153319:238008 +k1,1879:27505187,38153319:238008 +k1,1879:29180400,38153319:238008 +k1,1879:32583029,38153319:0 +) +(1,1880:6764466,39018399:25818563,513147,126483 +g1,1879:7725223,39018399 +g1,1879:9836137,39018399 +g1,1879:12106304,39018399 +g1,1879:13253184,39018399 +g1,1879:14471498,39018399 +g1,1879:15976860,39018399 +k1,1880:32583029,39018399:13151766 +g1,1880:32583029,39018399 +) +(1,1882:6764466,39883479:25818563,505283,134348 +h1,1881:6764466,39883479:983040,0,0 +k1,1881:9698239,39883479:214029 +(1,1881:9698239,39883479:0,452978,122846 +r1,1902:11815064,39883479:2116825,575824,122846 +k1,1881:9698239,39883479:-2116825 +) +(1,1881:9698239,39883479:2116825,452978,122846 +k1,1881:9698239,39883479:3277 +h1,1881:11811787,39883479:0,411205,112570 +) +k1,1881:12202762,39883479:214028 +k1,1881:13435876,39883479:214029 +k1,1881:15891235,39883479:214028 +k1,1881:19559667,39883479:214029 +k1,1881:20562094,39883479:214029 +k1,1881:23848450,39883479:214028 +k1,1881:25166761,39883479:214029 +k1,1881:26666605,39883479:214028 +k1,1881:27628400,39883479:214029 +k1,1881:30047715,39883479:214028 +k1,1881:31023272,39883479:214029 +k1,1882:32583029,39883479:0 +) +(1,1882:6764466,40748559:25818563,473825,7863 +k1,1882:32583029,40748559:24377426 +g1,1882:32583029,40748559 +) +v1,1884:6764466,41433414:0,393216,0 +(1,1897:6764466,44188848:25818563,3148650,196608 +g1,1897:6764466,44188848 +g1,1897:6764466,44188848 +g1,1897:6567858,44188848 +(1,1897:6567858,44188848:0,3148650,196608 +r1,1902:32779637,44188848:26211779,3345258,196608 +k1,1897:6567857,44188848:-26211780 +) +(1,1897:6567858,44188848:26211779,3148650,196608 +[1,1897:6764466,44188848:25818563,2952042,0 +(1,1886:6764466,41661245:25818563,424439,112852 +(1,1885:6764466,41661245:0,0,0 +g1,1885:6764466,41661245 +g1,1885:6764466,41661245 +g1,1885:6436786,41661245 +(1,1885:6436786,41661245:0,0,0 +) +g1,1885:6764466,41661245 +) +k1,1886:6764466,41661245:0 +g1,1886:12407683,41661245 +g1,1886:14731361,41661245 +g1,1886:15395269,41661245 +h1,1886:16059177,41661245:0,0,0 +k1,1886:32583029,41661245:16523852 +g1,1886:32583029,41661245 +) +(1,1890:6764466,42477172:25818563,424439,79822 +(1,1888:6764466,42477172:0,0,0 +g1,1888:6764466,42477172 +g1,1888:6764466,42477172 +g1,1888:6436786,42477172 +(1,1888:6436786,42477172:0,0,0 +) +g1,1888:6764466,42477172 +) +g1,1890:7760328,42477172 +g1,1890:9088144,42477172 +h1,1890:10747914,42477172:0,0,0 +k1,1890:32583030,42477172:21835116 +g1,1890:32583030,42477172 +) +(1,1892:6764466,43293099:25818563,424439,86428 +(1,1891:6764466,43293099:0,0,0 +g1,1891:6764466,43293099 +g1,1891:6764466,43293099 +g1,1891:6436786,43293099 +(1,1891:6436786,43293099:0,0,0 +) +g1,1891:6764466,43293099 +) +k1,1892:6764466,43293099:0 +g1,1892:12407683,43293099 +h1,1892:13071591,43293099:0,0,0 +k1,1892:32583029,43293099:19511438 +g1,1892:32583029,43293099 +) +(1,1896:6764466,44109026:25818563,424439,79822 +(1,1894:6764466,44109026:0,0,0 +g1,1894:6764466,44109026 +g1,1894:6764466,44109026 +g1,1894:6436786,44109026 +(1,1894:6436786,44109026:0,0,0 +) +g1,1894:6764466,44109026 +) +g1,1896:7760328,44109026 +g1,1896:9088144,44109026 +h1,1896:10747914,44109026:0,0,0 +k1,1896:32583030,44109026:21835116 +g1,1896:32583030,44109026 +) +] +) +g1,1897:32583029,44188848 +g1,1897:6764466,44188848 +g1,1897:6764466,44188848 +g1,1897:32583029,44188848 +g1,1897:32583029,44188848 +) +h1,1897:6764466,44385456:0,0,0 +] +g1,1899:32583029,44385456 +) +h1,1899:6630773,44385456:0,0,0 +(1,1902:6630773,45250536:25952256,513147,126483 +h1,1901:6630773,45250536:983040,0,0 +k1,1901:10986183,45250536:252201 +(1,1901:10986183,45250536:0,452978,115847 +r1,1902:13454720,45250536:2468537,568825,115847 +k1,1901:10986183,45250536:-2468537 ) -k1,1851:3078556,49800853:-34777008 +(1,1901:10986183,45250536:2468537,452978,115847 +k1,1901:10986183,45250536:3277 +h1,1901:13451443,45250536:0,411205,112570 ) -] -g1,1851:6630773,4812305 -g1,1851:6630773,4812305 -g1,1851:9516978,4812305 -g1,1851:11710468,4812305 -g1,1851:13120147,4812305 -g1,1851:16560787,4812305 -k1,1851:31786111,4812305:15225324 -) -) -] -[1,1851:6630773,45706769:25952256,40108032,0 -(1,1851:6630773,45706769:25952256,40108032,0 -(1,1851:6630773,45706769:0,0,0 -g1,1851:6630773,45706769 +k1,1901:13706921,45250536:252201 +k1,1901:15150567,45250536:252201 +(1,1901:15150567,45250536:0,452978,122846 +r1,1902:18322527,45250536:3171960,575824,122846 +k1,1901:15150567,45250536:-3171960 ) -[1,1851:6630773,45706769:25952256,40108032,0 -v1,1795:6630773,6254097:0,393216,0 -(1,1795:6630773,31405875:25952256,25544994,0 -g1,1795:6630773,31405875 -g1,1795:6303093,31405875 -r1,1851:6401397,31405875:98304,25544994,0 -g1,1795:6600626,31405875 -g1,1795:6797234,31405875 -[1,1795:6797234,31405875:25785795,25544994,0 -v1,1727:6797234,6254097:0,393216,0 -(1,1734:6797234,7188185:25785795,1327304,196608 -g1,1734:6797234,7188185 -g1,1734:6797234,7188185 -g1,1734:6600626,7188185 -(1,1734:6600626,7188185:0,1327304,196608 -r1,1851:32779637,7188185:26179011,1523912,196608 -k1,1734:6600625,7188185:-26179012 -) -(1,1734:6600626,7188185:26179011,1327304,196608 -[1,1734:6797234,7188185:25785795,1130696,0 -(1,1729:6797234,6445986:25785795,388497,9436 -(1,1728:6797234,6445986:0,0,0 -g1,1728:6797234,6445986 -g1,1728:6797234,6445986 -g1,1728:6469554,6445986 -(1,1728:6469554,6445986:0,0,0 -) -g1,1728:6797234,6445986 -) -h1,1729:10274836,6445986:0,0,0 -k1,1729:32583028,6445986:22308192 -g1,1729:32583028,6445986 -) -(1,1733:6797234,7112164:25785795,404226,76021 -(1,1731:6797234,7112164:0,0,0 -g1,1731:6797234,7112164 -g1,1731:6797234,7112164 -g1,1731:6469554,7112164 -(1,1731:6469554,7112164:0,0,0 -) -g1,1731:6797234,7112164 -) -g1,1733:7745671,7112164 -g1,1733:9010254,7112164 -h1,1733:12171711,7112164:0,0,0 -k1,1733:32583029,7112164:20411318 -g1,1733:32583029,7112164 -) -] -) -g1,1734:32583029,7188185 -g1,1734:6797234,7188185 -g1,1734:6797234,7188185 -g1,1734:32583029,7188185 -g1,1734:32583029,7188185 -) -h1,1734:6797234,7384793:0,0,0 -(1,1738:6797234,8750569:25785795,505283,126483 -h1,1737:6797234,8750569:983040,0,0 -k1,1737:8636224,8750569:228115 -k1,1737:10608251,8750569:228114 -k1,1737:14353028,8750569:228115 -k1,1737:15197181,8750569:228115 -k1,1737:16444380,8750569:228114 -k1,1737:18643163,8750569:228115 -k1,1737:20739709,8750569:228115 -k1,1737:22886718,8750569:228115 -k1,1737:23727594,8750569:228114 -k1,1737:25451241,8750569:228115 -k1,1737:26836066,8750569:228115 -k1,1737:29706592,8750569:228114 -k1,1737:30466204,8750569:228115 -(1,1737:30466204,8750569:0,452978,115847 -r1,1851:32583029,8750569:2116825,568825,115847 -k1,1737:30466204,8750569:-2116825 -) -(1,1737:30466204,8750569:2116825,452978,115847 -k1,1737:30466204,8750569:3277 -h1,1737:32579752,8750569:0,411205,112570 -) -k1,1737:32583029,8750569:0 -) -(1,1738:6797234,9592057:25785795,513147,126483 -k1,1737:8017592,9592057:201273 -(1,1737:8017592,9592057:0,452978,122846 -r1,1851:10486129,9592057:2468537,575824,122846 -k1,1737:8017592,9592057:-2468537 -) -(1,1737:8017592,9592057:2468537,452978,122846 -k1,1737:8017592,9592057:3277 -h1,1737:10482852,9592057:0,411205,112570 -) -k1,1737:10687401,9592057:201272 -k1,1737:13861387,9592057:201273 -k1,1737:15054220,9592057:201273 -k1,1737:18320611,9592057:201273 -k1,1737:19173311,9592057:201272 -(1,1737:19173311,9592057:0,452978,115847 -r1,1851:21290136,9592057:2116825,568825,115847 -k1,1737:19173311,9592057:-2116825 -) -(1,1737:19173311,9592057:2116825,452978,115847 -k1,1737:19173311,9592057:3277 -h1,1737:21286859,9592057:0,411205,112570 -) -k1,1737:21491409,9592057:201273 -k1,1737:23735439,9592057:201273 -k1,1737:28174270,9592057:201273 -k1,1737:28863128,9592057:201270 -k1,1737:31266411,9592057:201273 -k1,1738:32583029,9592057:0 -) -(1,1738:6797234,10433545:25785795,505283,134348 -k1,1737:9278267,10433545:199069 -k1,1737:10970247,10433545:199070 -k1,1737:12235587,10433545:199069 -k1,1737:13787319,10433545:199069 -k1,1737:15649036,10433545:199069 -k1,1737:17546144,10433545:199070 -k1,1737:21149808,10433545:199069 -k1,1737:22340437,10433545:199069 -k1,1737:24698917,10433545:199069 -(1,1737:24698917,10433545:0,452978,122846 -r1,1851:27167454,10433545:2468537,575824,122846 -k1,1737:24698917,10433545:-2468537 -) -(1,1737:24698917,10433545:2468537,452978,122846 -k1,1737:24698917,10433545:3277 -h1,1737:27164177,10433545:0,411205,112570 -) -k1,1737:27366524,10433545:199070 -k1,1737:29749908,10433545:199069 -k1,1737:32583029,10433545:0 -) -(1,1738:6797234,11275033:25785795,513147,134348 -k1,1737:7557316,11275033:144044 -k1,1737:10608536,11275033:144043 -k1,1737:13480844,11275033:144044 -k1,1737:16440969,11275033:144043 -k1,1737:17869519,11275033:144044 -k1,1737:19005122,11275033:144043 -k1,1737:20195121,11275033:144044 -k1,1737:21314995,11275033:144043 -k1,1737:22110467,11275033:144044 -k1,1737:23002276,11275033:144043 -k1,1737:26955928,11275033:144044 -k1,1737:27786133,11275033:144043 -(1,1737:27786133,11275033:0,452978,122846 -r1,1851:30254670,11275033:2468537,575824,122846 -k1,1737:27786133,11275033:-2468537 -) -(1,1737:27786133,11275033:2468537,452978,122846 -k1,1737:27786133,11275033:3277 -h1,1737:30251393,11275033:0,411205,112570 -) -k1,1737:30398714,11275033:144044 -k1,1738:32583029,11275033:0 -k1,1738:32583029,11275033:0 -) -v1,1740:6797234,12465499:0,393216,0 -(1,1769:6797234,22005811:25785795,9933528,196608 -g1,1769:6797234,22005811 -g1,1769:6797234,22005811 -g1,1769:6600626,22005811 -(1,1769:6600626,22005811:0,9933528,196608 -r1,1851:32779637,22005811:26179011,10130136,196608 -k1,1769:6600625,22005811:-26179012 -) -(1,1769:6600626,22005811:26179011,9933528,196608 -[1,1769:6797234,22005811:25785795,9736920,0 -(1,1742:6797234,12657388:25785795,388497,9436 -(1,1741:6797234,12657388:0,0,0 -g1,1741:6797234,12657388 -g1,1741:6797234,12657388 -g1,1741:6469554,12657388 -(1,1741:6469554,12657388:0,0,0 -) -g1,1741:6797234,12657388 -) -g1,1742:10590982,12657388 -g1,1742:11223274,12657388 -h1,1742:12171711,12657388:0,0,0 -k1,1742:32583029,12657388:20411318 -g1,1742:32583029,12657388 -) -(1,1746:6797234,13978926:25785795,410518,107478 -g1,1746:7745671,13978926 -g1,1746:10274837,13978926 -g1,1746:11223274,13978926 -g1,1746:15017022,13978926 -g1,1746:15649314,13978926 -g1,1746:17230043,13978926 -g1,1746:18494626,13978926 -g1,1746:21339937,13978926 -g1,1746:22288374,13978926 -g1,1746:24817540,13978926 -k1,1746:32583029,13978926:5236324 -g1,1746:32583029,13978926 -) -(1,1748:6797234,14645104:25785795,404226,76021 -(1,1746:6797234,14645104:0,0,0 -g1,1746:6797234,14645104 -g1,1746:6797234,14645104 -g1,1746:6469554,14645104 -(1,1746:6469554,14645104:0,0,0 -) -g1,1746:6797234,14645104 -) -g1,1748:7745671,14645104 -g1,1748:9010254,14645104 -h1,1748:9642545,14645104:0,0,0 -k1,1748:32583029,14645104:22940484 -g1,1748:32583029,14645104 -) -(1,1750:6797234,15966642:25785795,388497,9436 -(1,1749:6797234,15966642:0,0,0 -g1,1749:6797234,15966642 -g1,1749:6797234,15966642 -g1,1749:6469554,15966642 -(1,1749:6469554,15966642:0,0,0 -) -g1,1749:6797234,15966642 -) -g1,1750:10590982,15966642 -g1,1750:11223274,15966642 -h1,1750:11855565,15966642:0,0,0 -k1,1750:32583029,15966642:20727464 -g1,1750:32583029,15966642 -) -(1,1754:6797234,16632820:25785795,404226,76021 -(1,1752:6797234,16632820:0,0,0 -g1,1752:6797234,16632820 -g1,1752:6797234,16632820 -g1,1752:6469554,16632820 -(1,1752:6469554,16632820:0,0,0 -) -g1,1752:6797234,16632820 -) -g1,1754:7745671,16632820 -g1,1754:9010254,16632820 -h1,1754:12171711,16632820:0,0,0 -k1,1754:32583029,16632820:20411318 -g1,1754:32583029,16632820 -) -(1,1756:6797234,17954358:25785795,388497,9436 -(1,1755:6797234,17954358:0,0,0 -g1,1755:6797234,17954358 -g1,1755:6797234,17954358 -g1,1755:6469554,17954358 -(1,1755:6469554,17954358:0,0,0 -) -g1,1755:6797234,17954358 -) -g1,1756:10590982,17954358 -g1,1756:11223274,17954358 -h1,1756:14700876,17954358:0,0,0 -k1,1756:32583028,17954358:17882152 -g1,1756:32583028,17954358 -) -(1,1760:6797234,19275896:25785795,410518,107478 -g1,1760:7745671,19275896 -g1,1760:10274837,19275896 -g1,1760:11223274,19275896 -g1,1760:15017022,19275896 -g1,1760:15649314,19275896 -g1,1760:19759208,19275896 -g1,1760:21023791,19275896 -g1,1760:23869102,19275896 -g1,1760:24817539,19275896 -g1,1760:27346705,19275896 -k1,1760:32583029,19275896:2707159 -g1,1760:32583029,19275896 -) -(1,1762:6797234,19942074:25785795,404226,76021 -(1,1760:6797234,19942074:0,0,0 -g1,1760:6797234,19942074 -g1,1760:6797234,19942074 -g1,1760:6469554,19942074 -(1,1760:6469554,19942074:0,0,0 -) -g1,1760:6797234,19942074 -) -g1,1762:7745671,19942074 -g1,1762:9010254,19942074 -h1,1762:9642545,19942074:0,0,0 -k1,1762:32583029,19942074:22940484 -g1,1762:32583029,19942074 -) -(1,1764:6797234,21263612:25785795,388497,9436 -(1,1763:6797234,21263612:0,0,0 -g1,1763:6797234,21263612 -g1,1763:6797234,21263612 -g1,1763:6469554,21263612 -(1,1763:6469554,21263612:0,0,0 -) -g1,1763:6797234,21263612 -) -g1,1764:10590982,21263612 -g1,1764:11223274,21263612 -h1,1764:14384731,21263612:0,0,0 -k1,1764:32583029,21263612:18198298 -g1,1764:32583029,21263612 -) -(1,1768:6797234,21929790:25785795,404226,76021 -(1,1766:6797234,21929790:0,0,0 -g1,1766:6797234,21929790 -g1,1766:6797234,21929790 -g1,1766:6469554,21929790 -(1,1766:6469554,21929790:0,0,0 -) -g1,1766:6797234,21929790 -) -g1,1768:7745671,21929790 -g1,1768:9010254,21929790 -h1,1768:12804002,21929790:0,0,0 -k1,1768:32583030,21929790:19779028 -g1,1768:32583030,21929790 -) -] -) -g1,1769:32583029,22005811 -g1,1769:6797234,22005811 -g1,1769:6797234,22005811 -g1,1769:32583029,22005811 -g1,1769:32583029,22005811 -) -h1,1769:6797234,22202419:0,0,0 -(1,1773:6797234,23568195:25785795,513147,134348 -h1,1772:6797234,23568195:983040,0,0 -k1,1772:9118716,23568195:141755 -k1,1772:14046565,23568195:141755 -k1,1772:16934934,23568195:141755 -(1,1772:16934934,23568195:0,424981,115847 -r1,1851:17293200,23568195:358266,540828,115847 -k1,1772:16934934,23568195:-358266 -) -(1,1772:16934934,23568195:358266,424981,115847 -k1,1772:16934934,23568195:3277 -h1,1772:17289923,23568195:0,411205,112570 -) -k1,1772:17434955,23568195:141755 -k1,1772:19535581,23568195:141755 -k1,1772:20696422,23568195:141756 -k1,1772:24223767,23568195:141755 -k1,1772:25024814,23568195:141755 -k1,1772:25954967,23568195:141755 -k1,1772:29499351,23568195:141755 -k1,1772:30292534,23568195:141755 -(1,1772:30292534,23568195:0,452978,115847 -r1,1851:32409359,23568195:2116825,568825,115847 -k1,1772:30292534,23568195:-2116825 -) -(1,1772:30292534,23568195:2116825,452978,115847 -k1,1772:30292534,23568195:3277 -h1,1772:32406082,23568195:0,411205,112570 -) -k1,1772:32583029,23568195:0 -) -(1,1773:6797234,24409683:25785795,513147,134348 -k1,1772:9832224,24409683:201869 -k1,1772:10650131,24409683:201869 -k1,1772:11661370,24409683:201869 -k1,1772:14774347,24409683:201868 -k1,1772:15604051,24409683:201869 -k1,1772:18610861,24409683:201869 -k1,1772:19498892,24409683:201869 -k1,1772:21140587,24409683:201869 -k1,1772:23371451,24409683:201869 -k1,1772:24592404,24409683:201868 -k1,1772:29276280,24409683:201869 -k1,1772:32224763,24409683:201869 -(1,1772:32224763,24409683:0,414482,115847 -r1,1851:32583029,24409683:358266,530329,115847 -k1,1772:32224763,24409683:-358266 -) -(1,1772:32224763,24409683:358266,414482,115847 -k1,1772:32224763,24409683:3277 -h1,1772:32579752,24409683:0,411205,112570 -) -k1,1772:32583029,24409683:0 -) -(1,1773:6797234,25251171:25785795,513147,134348 -g1,1772:9737834,25251171 -g1,1772:10746433,25251171 -(1,1772:10746433,25251171:0,452978,122846 -r1,1851:13214970,25251171:2468537,575824,122846 -k1,1772:10746433,25251171:-2468537 -) -(1,1772:10746433,25251171:2468537,452978,122846 -k1,1772:10746433,25251171:3277 -h1,1772:13211693,25251171:0,411205,112570 -) -g1,1772:13414199,25251171 -g1,1772:15624073,25251171 -g1,1772:18656423,25251171 -g1,1772:19471690,25251171 -k1,1773:32583029,25251171:10200230 -g1,1773:32583029,25251171 -) -v1,1775:6797234,26441637:0,393216,0 -(1,1790:6797234,30684979:25785795,4636558,196608 -g1,1790:6797234,30684979 -g1,1790:6797234,30684979 -g1,1790:6600626,30684979 -(1,1790:6600626,30684979:0,4636558,196608 -r1,1851:32779637,30684979:26179011,4833166,196608 -k1,1790:6600625,30684979:-26179012 -) -(1,1790:6600626,30684979:26179011,4636558,196608 -[1,1790:6797234,30684979:25785795,4439950,0 -(1,1777:6797234,26633526:25785795,388497,9436 -(1,1776:6797234,26633526:0,0,0 -g1,1776:6797234,26633526 -g1,1776:6797234,26633526 -g1,1776:6469554,26633526 -(1,1776:6469554,26633526:0,0,0 -) -g1,1776:6797234,26633526 -) -g1,1777:10590982,26633526 -g1,1777:11223274,26633526 -h1,1777:14700876,26633526:0,0,0 -k1,1777:32583028,26633526:17882152 -g1,1777:32583028,26633526 -) -(1,1781:6797234,27955064:25785795,410518,107478 -g1,1781:7745671,27955064 -g1,1781:10274837,27955064 -g1,1781:11223274,27955064 -g1,1781:15017022,27955064 -g1,1781:15649314,27955064 -g1,1781:19759208,27955064 -g1,1781:21023791,27955064 -g1,1781:23869102,27955064 -g1,1781:24817539,27955064 -g1,1781:27346705,27955064 -k1,1781:32583029,27955064:2707159 -g1,1781:32583029,27955064 -) -(1,1783:6797234,28621242:25785795,404226,76021 -(1,1781:6797234,28621242:0,0,0 -g1,1781:6797234,28621242 -g1,1781:6797234,28621242 -g1,1781:6469554,28621242 -(1,1781:6469554,28621242:0,0,0 -) -g1,1781:6797234,28621242 -) -g1,1783:7745671,28621242 -g1,1783:9010254,28621242 -h1,1783:9642545,28621242:0,0,0 -k1,1783:32583029,28621242:22940484 -g1,1783:32583029,28621242 -) -(1,1785:6797234,29942780:25785795,388497,9436 -(1,1784:6797234,29942780:0,0,0 -g1,1784:6797234,29942780 -g1,1784:6797234,29942780 -g1,1784:6469554,29942780 -(1,1784:6469554,29942780:0,0,0 -) -g1,1784:6797234,29942780 -) -h1,1785:11223273,29942780:0,0,0 -k1,1785:32583029,29942780:21359756 -g1,1785:32583029,29942780 -) -(1,1789:6797234,30608958:25785795,404226,76021 -(1,1787:6797234,30608958:0,0,0 -g1,1787:6797234,30608958 -g1,1787:6797234,30608958 -g1,1787:6469554,30608958 -(1,1787:6469554,30608958:0,0,0 -) -g1,1787:6797234,30608958 -) -g1,1789:7745671,30608958 -g1,1789:9010254,30608958 -h1,1789:12804002,30608958:0,0,0 -k1,1789:32583030,30608958:19779028 -g1,1789:32583030,30608958 -) -] -) -g1,1790:32583029,30684979 -g1,1790:6797234,30684979 -g1,1790:6797234,30684979 -g1,1790:32583029,30684979 -g1,1790:32583029,30684979 -) -h1,1790:6797234,30881587:0,0,0 -] -g1,1795:32583029,31405875 -) -h1,1795:6630773,31405875:0,0,0 -(1,1798:6630773,32755107:25952256,513147,126483 -h1,1797:6630773,32755107:983040,0,0 -k1,1797:9256707,32755107:177509 -k1,1797:10381867,32755107:177509 -k1,1797:12854447,32755107:177509 -k1,1797:13714841,32755107:177509 -k1,1797:14578512,32755107:177509 -k1,1797:16077882,32755107:177509 -k1,1797:16914682,32755107:177508 -k1,1797:21660050,32755107:177509 -k1,1797:22705911,32755107:177509 -k1,1797:24220354,32755107:177509 -k1,1797:25946479,32755107:177509 -k1,1797:26775416,32755107:177509 -k1,1797:29723787,32755107:177509 -k1,1797:30920381,32755107:177509 -k1,1798:32583029,32755107:0 -) -(1,1798:6630773,33596595:25952256,513147,134348 -k1,1797:7840474,33596595:173577 -k1,1797:8673343,33596595:173577 -k1,1797:12160419,33596595:173576 -k1,1797:14118541,33596595:173577 -k1,1797:14975003,33596595:173577 -k1,1797:16167665,33596595:173577 -k1,1797:18827022,33596595:173576 -k1,1797:19659891,33596595:173577 -k1,1797:21618013,33596595:173577 -k1,1797:23304816,33596595:173577 -k1,1797:24497478,33596595:173577 -k1,1797:27154869,33596595:173576 -k1,1797:29794566,33596595:173577 -k1,1797:30714598,33596595:173577 -k1,1797:32583029,33596595:0 -) -(1,1798:6630773,34438083:25952256,513147,134348 -k1,1797:8137305,34438083:222026 -k1,1797:8975370,34438083:222027 -k1,1797:10216481,34438083:222026 -k1,1797:13430227,34438083:222027 -k1,1797:15694355,34438083:222026 -k1,1797:17383078,34438083:222027 -k1,1797:18071065,34438083:222026 -k1,1797:20865379,34438083:222026 -k1,1797:21618903,34438083:222027 -k1,1797:23578944,34438083:222026 -k1,1797:25378423,34438083:222027 -k1,1797:26361977,34438083:222026 -k1,1797:29023254,34438083:222027 -k1,1797:30942007,34438083:222026 -k1,1798:32583029,34438083:0 -) -(1,1798:6630773,35279571:25952256,513147,126483 -k1,1797:8456218,35279571:227677 -k1,1797:10694541,35279571:227678 -(1,1797:10694541,35279571:0,452978,115847 -r1,1851:13163078,35279571:2468537,568825,115847 -k1,1797:10694541,35279571:-2468537 -) -(1,1797:10694541,35279571:2468537,452978,115847 -k1,1797:10694541,35279571:3277 -h1,1797:13159801,35279571:0,411205,112570 -) -k1,1797:13390755,35279571:227677 -k1,1797:15629077,35279571:227677 -k1,1797:17141261,35279571:227678 -k1,1797:18360498,35279571:227677 -k1,1797:21350518,35279571:227677 -k1,1797:23145816,35279571:227677 -k1,1797:24882133,35279571:227678 -k1,1797:26818334,35279571:227677 -k1,1797:28237456,35279571:227677 -k1,1797:29569416,35279571:227678 -k1,1797:30544859,35279571:227677 -k1,1797:32583029,35279571:0 -) -(1,1798:6630773,36121059:25952256,505283,126483 -k1,1797:8066078,36121059:243860 -k1,1797:9823164,36121059:243860 -k1,1797:10683062,36121059:243860 -k1,1797:15494781,36121059:243860 -k1,1797:18528509,36121059:243860 -(1,1797:18528509,36121059:0,452978,115847 -r1,1851:20997046,36121059:2468537,568825,115847 -k1,1797:18528509,36121059:-2468537 -) -(1,1797:18528509,36121059:2468537,452978,115847 -k1,1797:18528509,36121059:3277 -h1,1797:20993769,36121059:0,411205,112570 -) -k1,1797:21240906,36121059:243860 -k1,1797:22016263,36121059:243860 -k1,1797:23773349,36121059:243860 -k1,1797:24668637,36121059:243860 -k1,1797:26845809,36121059:243860 -k1,1797:29905751,36121059:243860 -k1,1797:30801039,36121059:243860 -k1,1797:31400759,36121059:243860 -k1,1798:32583029,36121059:0 -) -(1,1798:6630773,36962547:25952256,513147,126483 -k1,1797:8062230,36962547:202657 -k1,1797:10750669,36962547:202658 -k1,1797:11612618,36962547:202657 -k1,1797:14299090,36962547:202657 -k1,1797:16494698,36962547:202658 -k1,1797:18210581,36962547:202657 -k1,1797:19096123,36962547:202657 -k1,1797:21341537,36962547:202657 -k1,1797:22563280,36962547:202658 -k1,1797:25249752,36962547:202657 -k1,1797:27918529,36962547:202657 -k1,1797:29515138,36962547:202658 -k1,1797:30073655,36962547:202657 -k1,1797:32583029,36962547:0 -) -(1,1798:6630773,37804035:25952256,513147,134348 -k1,1797:7482957,37804035:169299 -k1,1797:10307118,37804035:169298 -k1,1797:12156760,37804035:169299 -k1,1797:13273710,37804035:169299 -(1,1797:13273710,37804035:0,452978,122846 -r1,1851:15390535,37804035:2116825,575824,122846 -k1,1797:13273710,37804035:-2116825 -) -(1,1797:13273710,37804035:2116825,452978,122846 -k1,1797:13273710,37804035:3277 -h1,1797:15387258,37804035:0,411205,112570 -) -k1,1797:15733503,37804035:169298 -k1,1797:19872973,37804035:169299 -k1,1797:20670106,37804035:169298 -k1,1797:23644346,37804035:169299 -k1,1797:26509141,37804035:169299 -(1,1797:26509141,37804035:0,459977,122846 -r1,1851:29329390,37804035:2820249,582823,122846 -k1,1797:26509141,37804035:-2820249 -) -(1,1797:26509141,37804035:2820249,459977,122846 -k1,1797:26509141,37804035:3277 -h1,1797:29326113,37804035:0,411205,112570 -) -k1,1797:29498688,37804035:169298 -k1,1797:31931601,37804035:169299 -k1,1797:32583029,37804035:0 -) -(1,1798:6630773,38645523:25952256,513147,134348 -k1,1797:7802393,38645523:152535 -k1,1797:11112453,38645523:152535 -k1,1797:13750768,38645523:152534 -k1,1797:14562595,38645523:152535 -k1,1797:18028630,38645523:152535 -k1,1797:20139381,38645523:152535 -k1,1797:21361464,38645523:152535 -k1,1797:24177382,38645523:152535 -k1,1797:25349001,38645523:152534 -k1,1797:28115767,38645523:152535 -k1,1797:28927594,38645523:152535 -k1,1797:30099214,38645523:152535 -k1,1797:32583029,38645523:0 -) -(1,1798:6630773,39487011:25952256,505283,7863 -k1,1798:32583029,39487011:23486136 -g1,1798:32583029,39487011 -) -v1,1800:6630773,40660933:0,393216,0 -(1,1851:6630773,45510161:25952256,5242444,196608 -g1,1851:6630773,45510161 -g1,1851:6630773,45510161 -g1,1851:6434165,45510161 -(1,1851:6434165,45510161:0,5242444,196608 -r1,1851:32779637,45510161:26345472,5439052,196608 -k1,1851:6434165,45510161:-26345472 -) -(1,1851:6434165,45510161:26345472,5242444,196608 -[1,1851:6630773,45510161:25952256,5045836,0 -(1,1802:6630773,40868551:25952256,404226,107478 -(1,1801:6630773,40868551:0,0,0 -g1,1801:6630773,40868551 -g1,1801:6630773,40868551 -g1,1801:6303093,40868551 -(1,1801:6303093,40868551:0,0,0 -) -g1,1801:6630773,40868551 -) -k1,1802:6630773,40868551:0 -g1,1802:12005250,40868551 -g1,1802:14218270,40868551 -g1,1802:14850562,40868551 -h1,1802:15482854,40868551:0,0,0 -k1,1802:32583030,40868551:17100176 -g1,1802:32583030,40868551 -) -(1,1806:6630773,41534729:25952256,404226,76021 -(1,1804:6630773,41534729:0,0,0 -g1,1804:6630773,41534729 -g1,1804:6630773,41534729 -g1,1804:6303093,41534729 -(1,1804:6303093,41534729:0,0,0 -) -g1,1804:6630773,41534729 -) -g1,1806:7579210,41534729 -g1,1806:8843793,41534729 -h1,1806:10424521,41534729:0,0,0 -k1,1806:32583029,41534729:22158508 -g1,1806:32583029,41534729 -) -(1,1808:6630773,42856267:25952256,410518,107478 -(1,1807:6630773,42856267:0,0,0 -g1,1807:6630773,42856267 -g1,1807:6630773,42856267 -g1,1807:6303093,42856267 -(1,1807:6303093,42856267:0,0,0 -) -g1,1807:6630773,42856267 -) -k1,1808:6630773,42856267:0 -g1,1808:12321396,42856267 -g1,1808:14534416,42856267 -g1,1808:15166708,42856267 -h1,1808:15799000,42856267:0,0,0 -k1,1808:32583028,42856267:16784028 -g1,1808:32583028,42856267 -) -(1,1812:6630773,43522445:25952256,404226,76021 -(1,1810:6630773,43522445:0,0,0 -g1,1810:6630773,43522445 -g1,1810:6630773,43522445 -g1,1810:6303093,43522445 -(1,1810:6303093,43522445:0,0,0 -) -g1,1810:6630773,43522445 -) -g1,1812:7579210,43522445 -g1,1812:8843793,43522445 -h1,1812:10740667,43522445:0,0,0 -k1,1812:32583029,43522445:21842362 -g1,1812:32583029,43522445 -) -(1,1814:6630773,44843983:25952256,404226,107478 -(1,1813:6630773,44843983:0,0,0 -g1,1813:6630773,44843983 -g1,1813:6630773,44843983 -g1,1813:6303093,44843983 -(1,1813:6303093,44843983:0,0,0 -) -g1,1813:6630773,44843983 -) -k1,1814:6630773,44843983:0 -g1,1814:12005250,44843983 -g1,1814:14218270,44843983 -g1,1814:14850562,44843983 -h1,1814:15482854,44843983:0,0,0 -k1,1814:32583030,44843983:17100176 -g1,1814:32583030,44843983 -) -(1,1818:6630773,45510161:25952256,404226,76021 -(1,1816:6630773,45510161:0,0,0 -g1,1816:6630773,45510161 -g1,1816:6630773,45510161 -g1,1816:6303093,45510161 -(1,1816:6303093,45510161:0,0,0 +(1,1901:15150567,45250536:3171960,452978,122846 +k1,1901:15150567,45250536:3277 +h1,1901:18319250,45250536:0,411205,112570 ) -g1,1816:6630773,45510161 -) -g1,1818:7579210,45510161 -g1,1818:8843793,45510161 -h1,1818:11372958,45510161:0,0,0 -k1,1818:32583030,45510161:21210072 -g1,1818:32583030,45510161 +k1,1901:18574728,45250536:252201 +k1,1901:20837575,45250536:252202 +k1,1901:22108861,45250536:252201 +k1,1901:26869284,45250536:252201 +k1,1901:28443346,45250536:252201 +k1,1901:29354839,45250536:252201 +k1,1901:29962900,45250536:252201 +k1,1901:32583029,45250536:0 ) ] +(1,1902:32583029,45706769:0,0,0 +g1,1902:32583029,45706769 ) -g1,1851:32583029,45510161 -g1,1851:6630773,45510161 -g1,1851:6630773,45510161 -g1,1851:32583029,45510161 -g1,1851:32583029,45510161 ) ] -(1,1851:32583029,45706769:0,0,0 -g1,1851:32583029,45706769 -) -) -] -(1,1851:6630773,47279633:25952256,0,0 -h1,1851:6630773,47279633:25952256,0,0 +(1,1902:6630773,47279633:25952256,0,0 +h1,1902:6630773,47279633:25952256,0,0 ) ] -(1,1851:4262630,4025873:0,0,0 -[1,1851:-473656,4025873:0,0,0 -(1,1851:-473656,-710413:0,0,0 -(1,1851:-473656,-710413:0,0,0 -g1,1851:-473656,-710413 +(1,1902:4262630,4025873:0,0,0 +[1,1902:-473656,4025873:0,0,0 +(1,1902:-473656,-710413:0,0,0 +(1,1902:-473656,-710413:0,0,0 +g1,1902:-473656,-710413 ) -g1,1851:-473656,-710413 +g1,1902:-473656,-710413 ) ] ) ] -!24777 +!25825 }52 -Input:397:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:398:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:399:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:400:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:401:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:402:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:403:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:404:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:405:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:406:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:407:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:408:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:409:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:410:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:411:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:412:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:413:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1592 -{53 -[1,1888:4262630,47279633:28320399,43253760,0 -(1,1888:4262630,4025873:0,0,0 -[1,1888:-473656,4025873:0,0,0 -(1,1888:-473656,-710413:0,0,0 -(1,1888:-473656,-644877:0,0,0 -k1,1888:-473656,-644877:-65536 -) -(1,1888:-473656,4736287:0,0,0 -k1,1888:-473656,4736287:5209943 -) -g1,1888:-473656,-710413 -) -] -) -[1,1888:6630773,47279633:25952256,43253760,0 -[1,1888:6630773,4812305:25952256,786432,0 -(1,1888:6630773,4812305:25952256,505283,11795 -(1,1888:6630773,4812305:25952256,505283,11795 -g1,1888:3078558,4812305 -[1,1888:3078558,4812305:0,0,0 -(1,1888:3078558,2439708:0,1703936,0 -k1,1888:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,1888:2537886,2439708:1179648,16384,0 -) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,1888:3078558,1915420:16384,1179648,0 -) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 -) -] -) -) -) -] -[1,1888:3078558,4812305:0,0,0 -(1,1888:3078558,2439708:0,1703936,0 -g1,1888:29030814,2439708 -g1,1888:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,1888:36151628,1915420:16384,1179648,0 -) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 -) -] -) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,1888:37855564,2439708:1179648,16384,0 -) -) -k1,1888:3078556,2439708:-34777008 -) -] -[1,1888:3078558,4812305:0,0,0 -(1,1888:3078558,49800853:0,16384,2228224 -k1,1888:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,1888:2537886,49800853:1179648,16384,0 -) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,1888:3078558,51504789:16384,1179648,0 -) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 -) -] -) -) -) -] -[1,1888:3078558,4812305:0,0,0 -(1,1888:3078558,49800853:0,16384,2228224 -g1,1888:29030814,49800853 -g1,1888:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,1888:36151628,51504789:16384,1179648,0 -) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 -) -] -) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,1888:37855564,49800853:1179648,16384,0 -) -) -k1,1888:3078556,49800853:-34777008 -) -] -g1,1888:6630773,4812305 -k1,1888:22348274,4812305:14920583 -g1,1888:23970945,4812305 -g1,1888:24793421,4812305 -g1,1888:27528893,4812305 -g1,1888:28938572,4812305 -) -) -] -[1,1888:6630773,45706769:25952256,40108032,0 -(1,1888:6630773,45706769:25952256,40108032,0 -(1,1888:6630773,45706769:0,0,0 -g1,1888:6630773,45706769 -) -[1,1888:6630773,45706769:25952256,40108032,0 -v1,1851:6630773,6254097:0,393216,0 -(1,1851:6630773,16493426:25952256,10632545,196608 -g1,1851:6630773,16493426 -g1,1851:6630773,16493426 -g1,1851:6434165,16493426 -(1,1851:6434165,16493426:0,10632545,196608 -r1,1888:32779637,16493426:26345472,10829153,196608 -k1,1851:6434165,16493426:-26345472 -) -(1,1851:6434165,16493426:26345472,10632545,196608 -[1,1851:6630773,16493426:25952256,10435937,0 -(1,1820:6630773,6468007:25952256,410518,107478 -(1,1819:6630773,6468007:0,0,0 -g1,1819:6630773,6468007 -g1,1819:6630773,6468007 -g1,1819:6303093,6468007 -(1,1819:6303093,6468007:0,0,0 -) -g1,1819:6630773,6468007 -) -k1,1820:6630773,6468007:0 -g1,1820:12321396,6468007 -g1,1820:14534416,6468007 -g1,1820:15166708,6468007 -h1,1820:15799000,6468007:0,0,0 -k1,1820:32583028,6468007:16784028 -g1,1820:32583028,6468007 -) -(1,1824:6630773,7134185:25952256,404226,76021 -(1,1822:6630773,7134185:0,0,0 -g1,1822:6630773,7134185 -g1,1822:6630773,7134185 -g1,1822:6303093,7134185 -(1,1822:6303093,7134185:0,0,0 -) -g1,1822:6630773,7134185 -) -g1,1824:7579210,7134185 -g1,1824:8843793,7134185 -h1,1824:10108376,7134185:0,0,0 -k1,1824:32583028,7134185:22474652 -g1,1824:32583028,7134185 -) -(1,1826:6630773,8455723:25952256,404226,107478 -(1,1825:6630773,8455723:0,0,0 -g1,1825:6630773,8455723 -g1,1825:6630773,8455723 -g1,1825:6303093,8455723 -(1,1825:6303093,8455723:0,0,0 -) -g1,1825:6630773,8455723 -) -k1,1826:6630773,8455723:0 -g1,1826:12005250,8455723 -g1,1826:14218270,8455723 -g1,1826:14850562,8455723 -k1,1826:14850562,8455723:0 -h1,1826:15799000,8455723:0,0,0 -k1,1826:32583028,8455723:16784028 -g1,1826:32583028,8455723 -) -(1,1830:6630773,9121901:25952256,404226,76021 -(1,1828:6630773,9121901:0,0,0 -g1,1828:6630773,9121901 -g1,1828:6630773,9121901 -g1,1828:6303093,9121901 -(1,1828:6303093,9121901:0,0,0 -) -g1,1828:6630773,9121901 -) -g1,1830:7579210,9121901 -g1,1830:8843793,9121901 -h1,1830:10108376,9121901:0,0,0 -k1,1830:32583028,9121901:22474652 -g1,1830:32583028,9121901 -) -(1,1832:6630773,10443439:25952256,388497,9436 -(1,1831:6630773,10443439:0,0,0 -g1,1831:6630773,10443439 -g1,1831:6630773,10443439 -g1,1831:6303093,10443439 -(1,1831:6303093,10443439:0,0,0 -) -g1,1831:6630773,10443439 -) -g1,1832:8527647,10443439 -g1,1832:9476085,10443439 -h1,1832:11689105,10443439:0,0,0 -k1,1832:32583029,10443439:20893924 -g1,1832:32583029,10443439 -) -(1,1833:6630773,11109617:25952256,404226,107478 -h1,1833:6630773,11109617:0,0,0 -g1,1833:8527647,11109617 -g1,1833:9476085,11109617 -g1,1833:13585979,11109617 -g1,1833:15798999,11109617 -g1,1833:16431291,11109617 -h1,1833:17063583,11109617:0,0,0 -k1,1833:32583029,11109617:15519446 -g1,1833:32583029,11109617 -) -(1,1834:6630773,11775795:25952256,388497,9436 -h1,1834:6630773,11775795:0,0,0 -g1,1834:8527647,11775795 -g1,1834:9476084,11775795 -h1,1834:11056812,11775795:0,0,0 -k1,1834:32583028,11775795:21526216 -g1,1834:32583028,11775795 -) -(1,1838:6630773,12441973:25952256,404226,76021 -(1,1836:6630773,12441973:0,0,0 -g1,1836:6630773,12441973 -g1,1836:6630773,12441973 -g1,1836:6303093,12441973 -(1,1836:6303093,12441973:0,0,0 -) -g1,1836:6630773,12441973 -) -g1,1838:7579210,12441973 -g1,1838:8843793,12441973 -h1,1838:10424521,12441973:0,0,0 -k1,1838:32583029,12441973:22158508 -g1,1838:32583029,12441973 -) -(1,1840:6630773,13763511:25952256,388497,9436 -(1,1839:6630773,13763511:0,0,0 -g1,1839:6630773,13763511 -g1,1839:6630773,13763511 -g1,1839:6303093,13763511 -(1,1839:6303093,13763511:0,0,0 -) -g1,1839:6630773,13763511 -) -g1,1840:8527647,13763511 -g1,1840:9159939,13763511 -h1,1840:10740667,13763511:0,0,0 -k1,1840:32583029,13763511:21842362 -g1,1840:32583029,13763511 -) -(1,1844:6630773,14429689:25952256,404226,76021 -(1,1842:6630773,14429689:0,0,0 -g1,1842:6630773,14429689 -g1,1842:6630773,14429689 -g1,1842:6303093,14429689 -(1,1842:6303093,14429689:0,0,0 -) -g1,1842:6630773,14429689 -) -g1,1844:7579210,14429689 -g1,1844:8843793,14429689 -h1,1844:11056813,14429689:0,0,0 -k1,1844:32583029,14429689:21526216 -g1,1844:32583029,14429689 -) -(1,1846:6630773,15751227:25952256,388497,6290 -(1,1845:6630773,15751227:0,0,0 -g1,1845:6630773,15751227 -g1,1845:6630773,15751227 -g1,1845:6303093,15751227 -(1,1845:6303093,15751227:0,0,0 -) -g1,1845:6630773,15751227 -) -h1,1846:8211501,15751227:0,0,0 -k1,1846:32583029,15751227:24371528 -g1,1846:32583029,15751227 -) -(1,1850:6630773,16417405:25952256,404226,76021 -(1,1848:6630773,16417405:0,0,0 -g1,1848:6630773,16417405 -g1,1848:6630773,16417405 -g1,1848:6303093,16417405 -(1,1848:6303093,16417405:0,0,0 -) -g1,1848:6630773,16417405 -) -g1,1850:7579210,16417405 -g1,1850:8843793,16417405 -h1,1850:10108376,16417405:0,0,0 -k1,1850:32583028,16417405:22474652 -g1,1850:32583028,16417405 -) -] -) -g1,1851:32583029,16493426 -g1,1851:6630773,16493426 -g1,1851:6630773,16493426 -g1,1851:32583029,16493426 -g1,1851:32583029,16493426 -) -h1,1851:6630773,16690034:0,0,0 -v1,1855:6630773,18580098:0,393216,0 -(1,1877:6630773,39779338:25952256,21592456,0 -g1,1877:6630773,39779338 -g1,1877:6303093,39779338 -r1,1888:6401397,39779338:98304,21592456,0 -g1,1877:6600626,39779338 -g1,1877:6797234,39779338 -[1,1877:6797234,39779338:25785795,21592456,0 -(1,1856:6797234,18942171:25785795,755289,196608 -(1,1855:6797234,18942171:0,755289,196608 -r1,1888:8134168,18942171:1336934,951897,196608 -k1,1855:6797234,18942171:-1336934 -) -(1,1855:6797234,18942171:1336934,755289,196608 -) -k1,1855:8320151,18942171:185983 -k1,1855:8647831,18942171:327680 -k1,1855:11953982,18942171:185982 -k1,1855:13131525,18942171:185983 -k1,1855:16407531,18942171:185983 -k1,1855:17209552,18942171:185983 -k1,1855:19182701,18942171:185982 -k1,1855:19984722,18942171:185983 -k1,1855:22449392,18942171:185983 -h1,1855:23419980,18942171:0,0,0 -k1,1855:23605963,18942171:185983 -k1,1855:24601315,18942171:185982 -k1,1855:26285451,18942171:185983 -h1,1855:27480828,18942171:0,0,0 -k1,1855:27840481,18942171:185983 -k1,1855:29514786,18942171:185982 -k1,1855:29913748,18942171:185970 -k1,1855:32583029,18942171:0 -) -(1,1856:6797234,19783659:25785795,513147,134348 -k1,1855:8640005,19783659:203716 -k1,1855:10876649,19783659:203717 -k1,1855:11696403,19783659:203716 -k1,1855:14364273,19783659:203716 -k1,1855:15219418,19783659:203717 -k1,1855:16931773,19783659:203716 -k1,1855:18401645,19783659:203716 -k1,1855:21725531,19783659:203717 -k1,1855:22920807,19783659:203716 -k1,1855:25414351,19783659:203716 -k1,1855:28980065,19783659:203717 -k1,1855:29598620,19783659:203712 -k1,1855:31298523,19783659:203716 -k1,1855:32583029,19783659:0 -) -(1,1856:6797234,20625147:25785795,513147,134348 -k1,1855:8038158,20625147:136642 -k1,1855:8922567,20625147:136643 -k1,1855:10572435,20625147:136642 -k1,1855:11360506,20625147:136643 -k1,1855:14121210,20625147:136642 -k1,1855:15028556,20625147:136643 -k1,1855:18239492,20625147:136642 -k1,1855:19185504,20625147:136642 -k1,1855:20711510,20625147:136643 -k1,1855:23053439,20625147:136642 -k1,1855:23876244,20625147:136643 -k1,1855:27085214,20625147:136642 -k1,1855:27873285,20625147:136643 -k1,1855:28798325,20625147:136642 -k1,1855:32583029,20625147:0 -) -(1,1856:6797234,21466635:25785795,513147,134348 -k1,1855:8560284,21466635:205259 -k1,1855:10776188,21466635:205259 -k1,1855:12000532,21466635:205259 -k1,1855:14048664,21466635:205260 -k1,1855:14913215,21466635:205259 -k1,1855:16137559,21466635:205259 -k1,1855:19417112,21466635:205259 -k1,1855:20308533,21466635:205259 -k1,1855:20869652,21466635:205259 -k1,1855:22947930,21466635:205259 -k1,1855:23568026,21466635:205253 -k1,1855:25906483,21466635:205260 -k1,1855:26794627,21466635:205259 -k1,1855:28212957,21466635:205259 -k1,1855:31896867,21466635:205259 -k1,1855:32583029,21466635:0 -) -(1,1856:6797234,22308123:25785795,513147,134348 -k1,1855:7448012,22308123:294918 -k1,1855:9042509,22308123:294918 -k1,1855:11281880,22308123:294918 -k1,1855:14696967,22308123:294918 -k1,1855:16467100,22308123:294918 -k1,1855:17117878,22308123:294918 -k1,1855:19150812,22308123:294919 -k1,1855:20591955,22308123:294918 -k1,1855:22018680,22308123:294918 -k1,1855:24015568,22308123:294918 -k1,1855:24725233,22308123:294822 -k1,1855:27153348,22308123:294918 -k1,1855:27926023,22308123:294918 -k1,1855:29240026,22308123:294918 -k1,1855:31272959,22308123:294918 -k1,1855:32227169,22308123:294918 -k1,1855:32583029,22308123:0 -) -(1,1856:6797234,23149611:25785795,513147,126483 -k1,1855:9659555,23149611:166825 -k1,1855:12579547,23149611:166825 -k1,1855:13507900,23149611:166825 -k1,1855:17528898,23149611:166826 -(1,1855:17528898,23149611:0,452978,115847 -r1,1888:18238876,23149611:709978,568825,115847 -k1,1855:17528898,23149611:-709978 -) -(1,1855:17528898,23149611:709978,452978,115847 -k1,1855:17528898,23149611:3277 -h1,1855:18235599,23149611:0,411205,112570 -) -k1,1855:18405701,23149611:166825 -k1,1855:19763971,23149611:166825 -k1,1855:22689206,23149611:166825 -k1,1855:23472069,23149611:166825 -k1,1855:23994754,23149611:166825 -k1,1855:25657767,23149611:166826 -k1,1855:29184623,23149611:166825 -k1,1855:29809545,23149611:166825 -k1,1855:32583029,23149611:0 -) -(1,1856:6797234,23991099:25785795,513147,134348 -k1,1855:7346466,23991099:193372 -k1,1855:10235334,23991099:193372 -k1,1855:11558547,23991099:193373 -k1,1855:12434804,23991099:193372 -k1,1855:12984036,23991099:193372 -k1,1855:16167160,23991099:193372 -k1,1855:17308183,23991099:193372 -k1,1855:18520640,23991099:193372 -k1,1855:20210200,23991099:193373 -k1,1855:22441742,23991099:193372 -k1,1855:23251152,23991099:193372 -k1,1855:24463609,23991099:193372 -k1,1855:27352477,23991099:193372 -k1,1855:29505376,23991099:193373 -k1,1855:30350176,23991099:193372 -k1,1855:31291314,23991099:193372 -k1,1855:32583029,23991099:0 -) -(1,1856:6797234,24832587:25785795,513147,134348 -k1,1855:8754859,24832587:262209 -k1,1855:12216536,24832587:262209 -k1,1855:14526746,24832587:262210 -k1,1855:15203735,24832587:262146 -k1,1855:17755772,24832587:262209 -k1,1855:20227855,24832587:262209 -k1,1855:23247819,24832587:262209 -k1,1855:25520673,24832587:262209 -k1,1855:26469045,24832587:262210 -k1,1855:30160753,24832587:262209 -k1,1855:31074390,24832587:262209 -k1,1855:32583029,24832587:0 -) -(1,1856:6797234,25674075:25785795,513147,126483 -k1,1855:9133264,25674075:205455 -k1,1855:13142429,25674075:205456 -k1,1855:15570865,25674075:205455 -k1,1855:19387355,25674075:205456 -k1,1855:20584370,25674075:205455 -k1,1855:24523411,25674075:205455 -k1,1855:26797183,25674075:205456 -k1,1855:27618676,25674075:205455 -k1,1855:28843217,25674075:205456 -k1,1855:30544859,25674075:205455 -k1,1855:32583029,25674075:0 -) -(1,1856:6797234,26515563:25785795,513147,134348 -k1,1855:7550939,26515563:137667 -k1,1855:8707690,26515563:137666 -k1,1855:11540853,26515563:137667 -k1,1855:13811716,26515563:137666 -k1,1855:14632268,26515563:137667 -k1,1855:15789019,26515563:137666 -k1,1855:18886292,26515563:137667 -k1,1855:19683250,26515563:137666 -k1,1855:20840002,26515563:137667 -k1,1855:23846835,26515563:137667 -k1,1855:24612336,26515563:137666 -k1,1855:25105863,26515563:137667 -k1,1855:27939025,26515563:137666 -k1,1855:29176386,26515563:137667 -k1,1855:30333137,26515563:137666 -k1,1855:31966991,26515563:137667 -k1,1855:32583029,26515563:0 -) -(1,1856:6797234,27357051:25785795,513147,134348 -k1,1855:7767226,27357051:181594 -k1,1855:11030978,27357051:181594 -k1,1855:11744070,27357051:181595 -k1,1855:14986851,27357051:181594 -k1,1855:16058424,27357051:181594 -k1,1855:17565156,27357051:181594 -k1,1855:19140701,27357051:181594 -k1,1855:24944629,27357051:181594 -k1,1855:27194540,27357051:181595 -k1,1855:29371705,27357051:181594 -k1,1855:30572384,27357051:181594 -k1,1855:32583029,27357051:0 -) -(1,1856:6797234,28198539:25785795,505283,134348 -g1,1855:9201750,28198539 -g1,1855:10087141,28198539 -g1,1855:13688999,28198539 -g1,1855:14539656,28198539 -k1,1856:32583029,28198539:16230647 -g1,1856:32583029,28198539 -) -(1,1858:6797234,29040027:25785795,513147,134348 -h1,1857:6797234,29040027:983040,0,0 -k1,1857:8730612,29040027:322503 -k1,1857:9408974,29040027:322502 -k1,1857:12426973,29040027:322503 -k1,1857:15831633,29040027:322502 -k1,1857:18282745,29040027:322503 -k1,1857:22216282,29040027:322503 -k1,1857:23643066,29040027:322502 -k1,1857:24713335,29040027:322503 -k1,1857:27810631,29040027:322502 -k1,1857:30398714,29040027:322503 -k1,1857:32583029,29040027:0 -) -(1,1858:6797234,29881515:25785795,513147,134348 -k1,1857:8945925,29881515:263220 -k1,1857:10200706,29881515:263221 -k1,1857:11977152,29881515:263220 -k1,1857:12706334,29881515:263221 -k1,1857:13778924,29881515:263220 -k1,1857:16373261,29881515:263221 -k1,1857:19708809,29881515:263220 -k1,1857:20503526,29881515:263220 -k1,1857:22972034,29881515:263221 -k1,1857:23851292,29881515:263220 -k1,1857:25133598,29881515:263221 -k1,1857:26670183,29881515:263220 -k1,1857:30467761,29881515:263221 -k1,1857:31835263,29881515:263220 -k1,1857:32583029,29881515:0 -) -(1,1858:6797234,30723003:25785795,513147,134348 -k1,1857:9238854,30723003:236333 -k1,1857:10126615,30723003:236333 -k1,1857:12491556,30723003:236332 -k1,1857:16338923,30723003:236333 -k1,1857:17336784,30723003:236333 -k1,1857:19311132,30723003:236333 -k1,1857:20230349,30723003:236332 -k1,1857:21228210,30723003:236333 -k1,1857:24252445,30723003:236333 -k1,1857:25116613,30723003:236333 -k1,1857:26954645,30723003:236332 -k1,1857:29062031,30723003:236333 -k1,1857:31725818,30723003:236333 -k1,1858:32583029,30723003:0 -) -(1,1858:6797234,31564491:25785795,505283,134348 -k1,1857:9769291,31564491:213647 -k1,1857:10744466,31564491:213647 -k1,1857:12696129,31564491:213648 -k1,1857:14955810,31564491:213647 -k1,1857:16188542,31564491:213647 -k1,1857:17898376,31564491:213647 -k1,1857:19982421,31564491:213647 -k1,1857:20847496,31564491:213647 -k1,1857:24725916,31564491:213647 -k1,1857:26131009,31564491:213648 -k1,1857:27994853,31564491:213647 -k1,1857:30293856,31564491:213647 -k1,1857:32583029,31564491:0 -) -(1,1858:6797234,32405979:25785795,513147,134348 -k1,1857:9171606,32405979:235277 -k1,1857:12414986,32405979:235277 -k1,1857:13278098,32405979:235277 -k1,1857:14532460,32405979:235277 -k1,1857:17759456,32405979:235277 -k1,1857:18610772,32405979:235278 -k1,1857:19865134,32405979:235277 -k1,1857:21682450,32405979:235277 -k1,1857:22130683,32405979:235241 -k1,1857:23967660,32405979:235277 -k1,1857:27507918,32405979:235277 -k1,1857:29180400,32405979:235277 -k1,1857:32583029,32405979:0 -) -(1,1858:6797234,33247467:25785795,513147,126483 -g1,1857:7757991,33247467 -g1,1857:9868905,33247467 -g1,1857:12139072,33247467 -g1,1857:13285952,33247467 -g1,1857:14504266,33247467 -g1,1857:16009628,33247467 -k1,1858:32583029,33247467:13118998 -g1,1858:32583029,33247467 -) -(1,1860:6797234,34088955:25785795,505283,134348 -h1,1859:6797234,34088955:983040,0,0 -k1,1859:9728276,34088955:211298 -(1,1859:9728276,34088955:0,452978,122846 -r1,1888:11845101,34088955:2116825,575824,122846 -k1,1859:9728276,34088955:-2116825 -) -(1,1859:9728276,34088955:2116825,452978,122846 -k1,1859:9728276,34088955:3277 -h1,1859:11841824,34088955:0,411205,112570 -) -k1,1859:12230069,34088955:211298 -k1,1859:13460452,34088955:211298 -k1,1859:15913081,34088955:211298 -k1,1859:19578782,34088955:211298 -k1,1859:20578478,34088955:211298 -k1,1859:23862103,34088955:211297 -k1,1859:25177683,34088955:211298 -k1,1859:26674797,34088955:211298 -k1,1859:27633861,34088955:211298 -k1,1859:30050446,34088955:211298 -k1,1859:31023272,34088955:211298 -k1,1860:32583029,34088955:0 -) -(1,1860:6797234,34930443:25785795,473825,7863 -k1,1860:32583029,34930443:24344658 -g1,1860:32583029,34930443 -) -v1,1862:6797234,36120909:0,393216,0 -(1,1875:6797234,39058442:25785795,3330749,196608 -g1,1875:6797234,39058442 -g1,1875:6797234,39058442 -g1,1875:6600626,39058442 -(1,1875:6600626,39058442:0,3330749,196608 -r1,1888:32779637,39058442:26179011,3527357,196608 -k1,1875:6600625,39058442:-26179012 -) -(1,1875:6600626,39058442:26179011,3330749,196608 -[1,1875:6797234,39058442:25785795,3134141,0 -(1,1864:6797234,36328527:25785795,404226,107478 -(1,1863:6797234,36328527:0,0,0 -g1,1863:6797234,36328527 -g1,1863:6797234,36328527 -g1,1863:6469554,36328527 -(1,1863:6469554,36328527:0,0,0 -) -g1,1863:6797234,36328527 -) -k1,1864:6797234,36328527:0 -g1,1864:12171711,36328527 -g1,1864:14384731,36328527 -g1,1864:15017023,36328527 -h1,1864:15649315,36328527:0,0,0 -k1,1864:32583029,36328527:16933714 -g1,1864:32583029,36328527 -) -(1,1868:6797234,36994705:25785795,404226,76021 -(1,1866:6797234,36994705:0,0,0 -g1,1866:6797234,36994705 -g1,1866:6797234,36994705 -g1,1866:6469554,36994705 -(1,1866:6469554,36994705:0,0,0 -) -g1,1866:6797234,36994705 -) -g1,1868:7745671,36994705 -g1,1868:9010254,36994705 -h1,1868:10590982,36994705:0,0,0 -k1,1868:32583030,36994705:21992048 -g1,1868:32583030,36994705 -) -(1,1870:6797234,38316243:25785795,404226,82312 -(1,1869:6797234,38316243:0,0,0 -g1,1869:6797234,38316243 -g1,1869:6797234,38316243 -g1,1869:6469554,38316243 -(1,1869:6469554,38316243:0,0,0 -) -g1,1869:6797234,38316243 -) -k1,1870:6797234,38316243:0 -g1,1870:12171711,38316243 -h1,1870:12804003,38316243:0,0,0 -k1,1870:32583029,38316243:19779026 -g1,1870:32583029,38316243 -) -(1,1874:6797234,38982421:25785795,404226,76021 -(1,1872:6797234,38982421:0,0,0 -g1,1872:6797234,38982421 -g1,1872:6797234,38982421 -g1,1872:6469554,38982421 -(1,1872:6469554,38982421:0,0,0 -) -g1,1872:6797234,38982421 -) -g1,1874:7745671,38982421 -g1,1874:9010254,38982421 -h1,1874:10590982,38982421:0,0,0 -k1,1874:32583030,38982421:21992048 -g1,1874:32583030,38982421 -) -] -) -g1,1875:32583029,39058442 -g1,1875:6797234,39058442 -g1,1875:6797234,39058442 -g1,1875:32583029,39058442 -g1,1875:32583029,39058442 -) -h1,1875:6797234,39255050:0,0,0 -] -g1,1877:32583029,39779338 -) -h1,1877:6630773,39779338:0,0,0 -(1,1880:6630773,41145114:25952256,513147,126483 -h1,1879:6630773,41145114:983040,0,0 -k1,1879:10986183,41145114:252201 -(1,1879:10986183,41145114:0,452978,115847 -r1,1888:13454720,41145114:2468537,568825,115847 -k1,1879:10986183,41145114:-2468537 -) -(1,1879:10986183,41145114:2468537,452978,115847 -k1,1879:10986183,41145114:3277 -h1,1879:13451443,41145114:0,411205,112570 -) -k1,1879:13706921,41145114:252201 -k1,1879:15150567,41145114:252201 -(1,1879:15150567,41145114:0,452978,122846 -r1,1888:18322527,41145114:3171960,575824,122846 -k1,1879:15150567,41145114:-3171960 -) -(1,1879:15150567,41145114:3171960,452978,122846 -k1,1879:15150567,41145114:3277 -h1,1879:18319250,41145114:0,411205,112570 -) -k1,1879:18574728,41145114:252201 -k1,1879:20837575,41145114:252202 -k1,1879:22108861,41145114:252201 -k1,1879:26869284,41145114:252201 -k1,1879:28443346,41145114:252201 -k1,1879:29354839,41145114:252201 -k1,1879:29962900,41145114:252201 -k1,1879:32583029,41145114:0 -) -(1,1880:6630773,41986602:25952256,513147,134348 -k1,1879:8500796,41986602:189680 -k1,1879:9376638,41986602:189680 -k1,1879:9922178,41986602:189680 -k1,1879:11395052,41986602:189679 -k1,1879:14204861,41986602:189680 -k1,1879:16248555,41986602:189680 -k1,1879:17996026,41986602:189680 -k1,1879:19928964,41986602:189680 -k1,1879:20734682,41986602:189680 -k1,1879:22254743,41986602:189680 -k1,1879:23824610,41986602:189679 -k1,1879:26173046,41986602:189680 -k1,1879:29017589,41986602:189680 -k1,1879:31391584,41986602:189680 -k1,1879:32583029,41986602:0 -) -(1,1880:6630773,42828090:25952256,513147,126483 -k1,1879:9083534,42828090:181938 -k1,1879:9924764,42828090:181938 -k1,1879:11745757,42828090:181938 -k1,1879:14191308,42828090:181937 -k1,1879:15392331,42828090:181938 -k1,1879:18352996,42828090:181938 -k1,1879:20215277,42828090:181938 -k1,1879:21048643,42828090:181938 -k1,1879:22249666,42828090:181938 -k1,1879:24772549,42828090:181937 -k1,1879:26837336,42828090:181938 -k1,1879:29678725,42828090:181938 -k1,1879:31412556,42828090:181938 -k1,1879:32583029,42828090:0 -) -(1,1880:6630773,43669578:25952256,513147,126483 -k1,1879:7943034,43669578:207979 -k1,1879:9243499,43669578:207980 -(1,1879:9243499,43669578:0,452978,115847 -r1,1888:13118883,43669578:3875384,568825,115847 -k1,1879:9243499,43669578:-3875384 -) -(1,1879:9243499,43669578:3875384,452978,115847 -k1,1879:9243499,43669578:3277 -h1,1879:13115606,43669578:0,411205,112570 -) -k1,1879:13326862,43669578:207979 -k1,1879:14217727,43669578:207980 -(1,1879:14217727,43669578:0,435480,115847 -r1,1888:16334552,43669578:2116825,551327,115847 -k1,1879:14217727,43669578:-2116825 -) -(1,1879:14217727,43669578:2116825,435480,115847 -k1,1879:14217727,43669578:3277 -h1,1879:16331275,43669578:0,411205,112570 -) -k1,1879:16542531,43669578:207979 -k1,1879:17363273,43669578:207980 -k1,1879:18590337,43669578:207979 -k1,1879:19213151,43669578:207971 -k1,1879:22015046,43669578:207980 -k1,1879:22905910,43669578:207979 -k1,1879:24132975,43669578:207980 -k1,1879:25729007,43669578:207979 -k1,1879:26950174,43669578:207980 -k1,1879:27825309,43669578:207979 -k1,1879:30457466,43669578:207980 -k1,1879:31316873,43669578:207979 -k1,1879:32583029,43669578:0 -) -(1,1880:6630773,44511066:25952256,505283,7863 -g1,1879:7896273,44511066 -g1,1879:9114587,44511066 -k1,1880:32583029,44511066:21037056 -g1,1880:32583029,44511066 -) -v1,1882:6630773,45876842:0,393216,0 -] -(1,1888:32583029,45706769:0,0,0 -g1,1888:32583029,45706769 -) -) -] -(1,1888:6630773,47279633:25952256,0,0 -h1,1888:6630773,47279633:25952256,0,0 -) -] -(1,1888:4262630,4025873:0,0,0 -[1,1888:-473656,4025873:0,0,0 -(1,1888:-473656,-710413:0,0,0 -(1,1888:-473656,-710413:0,0,0 -g1,1888:-473656,-710413 -) -g1,1888:-473656,-710413 -) -] -) -] -!23774 -}53 Input:414:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:415:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:416:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -67110,2032 +66362,2136 @@ Input:432:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsol Input:433:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:434:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:435:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!2057 -{54 -[1,1948:4262630,47279633:28320399,43253760,0 -(1,1948:4262630,4025873:0,0,0 -[1,1948:-473656,4025873:0,0,0 -(1,1948:-473656,-710413:0,0,0 -(1,1948:-473656,-644877:0,0,0 -k1,1948:-473656,-644877:-65536 -) -(1,1948:-473656,4736287:0,0,0 -k1,1948:-473656,4736287:5209943 -) -g1,1948:-473656,-710413 -) -] -) -[1,1948:6630773,47279633:25952256,43253760,0 -[1,1948:6630773,4812305:25952256,786432,0 -(1,1948:6630773,4812305:25952256,505283,11795 -(1,1948:6630773,4812305:25952256,505283,11795 -g1,1948:3078558,4812305 -[1,1948:3078558,4812305:0,0,0 -(1,1948:3078558,2439708:0,1703936,0 -k1,1948:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,1948:2537886,2439708:1179648,16384,0 -) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,1948:3078558,1915420:16384,1179648,0 -) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 -) -] -) -) +Input:436:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:437:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:438:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:439:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:440:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:441:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:442:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!3173 +{53 +[1,2000:4262630,47279633:28320399,43253760,0 +(1,2000:4262630,4025873:0,0,0 +[1,2000:-473656,4025873:0,0,0 +(1,2000:-473656,-710413:0,0,0 +(1,2000:-473656,-644877:0,0,0 +k1,2000:-473656,-644877:-65536 ) -] -[1,1948:3078558,4812305:0,0,0 -(1,1948:3078558,2439708:0,1703936,0 -g1,1948:29030814,2439708 -g1,1948:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,1948:36151628,1915420:16384,1179648,0 +(1,2000:-473656,4736287:0,0,0 +k1,2000:-473656,4736287:5209943 ) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 +g1,2000:-473656,-710413 ) ] ) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,1948:37855564,2439708:1179648,16384,0 -) +[1,2000:6630773,47279633:25952256,43253760,0 +[1,2000:6630773,4812305:25952256,786432,0 +(1,2000:6630773,4812305:25952256,505283,11795 +(1,2000:6630773,4812305:25952256,505283,11795 +g1,2000:3078558,4812305 +[1,2000:3078558,4812305:0,0,0 +(1,2000:3078558,2439708:0,1703936,0 +k1,2000:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,2000:2537886,2439708:1179648,16384,0 ) -k1,1948:3078556,2439708:-34777008 +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,2000:3078558,1915420:16384,1179648,0 ) -] -[1,1948:3078558,4812305:0,0,0 -(1,1948:3078558,49800853:0,16384,2228224 -k1,1948:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,1948:2537886,49800853:1179648,16384,0 -) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,1948:3078558,51504789:16384,1179648,0 -) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) ] ) ) ) ] -[1,1948:3078558,4812305:0,0,0 -(1,1948:3078558,49800853:0,16384,2228224 -g1,1948:29030814,49800853 -g1,1948:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,1948:36151628,51504789:16384,1179648,0 +[1,2000:3078558,4812305:0,0,0 +(1,2000:3078558,2439708:0,1703936,0 +g1,2000:29030814,2439708 +g1,2000:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,2000:36151628,1915420:16384,1179648,0 ) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) ] ) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,1948:37855564,49800853:1179648,16384,0 -) +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,2000:37855564,2439708:1179648,16384,0 ) -k1,1948:3078556,49800853:-34777008 -) -] -g1,1948:6630773,4812305 -g1,1948:6630773,4812305 -g1,1948:9516978,4812305 -g1,1948:11710468,4812305 -g1,1948:13120147,4812305 -g1,1948:16560787,4812305 -k1,1948:31786111,4812305:15225324 ) +k1,2000:3078556,2439708:-34777008 ) ] -[1,1948:6630773,45706769:25952256,40108032,0 -(1,1948:6630773,45706769:25952256,40108032,0 -(1,1948:6630773,45706769:0,0,0 -g1,1948:6630773,45706769 +[1,2000:3078558,4812305:0,0,0 +(1,2000:3078558,49800853:0,16384,2228224 +k1,2000:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,2000:2537886,49800853:1179648,16384,0 ) -[1,1948:6630773,45706769:25952256,40108032,0 -v1,1888:6630773,6254097:0,393216,0 -(1,1888:6630773,13959198:25952256,8098317,0 -g1,1888:6630773,13959198 -g1,1888:6303093,13959198 -r1,1948:6401397,13959198:98304,8098317,0 -g1,1888:6600626,13959198 -g1,1888:6797234,13959198 -[1,1888:6797234,13959198:25785795,8098317,0 -(1,1883:6797234,6686635:25785795,825754,196608 -(1,1882:6797234,6686635:0,825754,196608 -r1,1948:7890375,6686635:1093141,1022362,196608 -k1,1882:6797234,6686635:-1093141 -) -(1,1882:6797234,6686635:1093141,825754,196608 -) -k1,1882:8084120,6686635:193745 -k1,1882:9402049,6686635:327680 -k1,1882:11229607,6686635:193745 -k1,1882:12916262,6686635:193745 -k1,1882:14790350,6686635:193745 -k1,1882:18315945,6686635:193745 -k1,1882:20574728,6686635:193744 -k1,1882:23558341,6686635:193745 -(1,1882:23558341,6686635:0,452978,115847 -r1,1948:26026878,6686635:2468537,568825,115847 -k1,1882:23558341,6686635:-2468537 -) -(1,1882:23558341,6686635:2468537,452978,115847 -k1,1882:23558341,6686635:3277 -h1,1882:26023601,6686635:0,411205,112570 -) -k1,1882:26220623,6686635:193745 -k1,1882:29413295,6686635:193745 -k1,1882:29962900,6686635:193745 -k1,1882:32583029,6686635:0 -) -(1,1883:6797234,7528123:25785795,505283,122846 -g1,1882:8850477,7528123 -g1,1882:10121875,7528123 -g1,1882:10779201,7528123 -g1,1882:12471340,7528123 -g1,1882:13736840,7528123 -g1,1882:15946714,7528123 -g1,1882:16916646,7528123 -(1,1882:16916646,7528123:0,452978,122846 -r1,1948:19385183,7528123:2468537,575824,122846 -k1,1882:16916646,7528123:-2468537 -) -(1,1882:16916646,7528123:2468537,452978,122846 -k1,1882:16916646,7528123:3277 -h1,1882:19381906,7528123:0,411205,112570 -) -k1,1883:32583029,7528123:13024176 -g1,1883:32583029,7528123 -) -(1,1885:7845810,8893899:24737219,513147,126483 -(1,1884:7845810,8893899:0,355205,0 -g1,1884:7845810,8893899 -g1,1884:6535090,8893899 -g1,1884:6207410,8893899 -(1,1884:6207410,8893899:1310720,355205,0 -k1,1884:7518130,8893899:1310720 -(1,1884:7518130,8893899:0,355205,0 -k1,1884:7119671,8893899:-398459 -) -) -g1,1884:7845810,8893899 -) -k1,1884:10482995,8893899:245121 -k1,1884:12058498,8893899:245122 -(1,1884:12058498,8893899:0,452978,115847 -r1,1948:14527035,8893899:2468537,568825,115847 -k1,1884:12058498,8893899:-2468537 -) -(1,1884:12058498,8893899:2468537,452978,115847 -k1,1884:12058498,8893899:3277 -h1,1884:14523758,8893899:0,411205,112570 -) -k1,1884:14772156,8893899:245121 -k1,1884:16208723,8893899:245122 -(1,1884:16208723,8893899:0,452978,122846 -r1,1948:19380683,8893899:3171960,575824,122846 -k1,1884:16208723,8893899:-3171960 -) -(1,1884:16208723,8893899:3171960,452978,122846 -k1,1884:16208723,8893899:3277 -h1,1884:19377406,8893899:0,411205,112570 -) -k1,1884:19625804,8893899:245121 -k1,1884:21787854,8893899:245122 -k1,1884:23402022,8893899:245121 -k1,1884:25286199,8893899:245122 -k1,1884:26998016,8893899:245121 -k1,1884:28637089,8893899:245122 -k1,1884:31391584,8893899:245121 -k1,1884:32583029,8893899:0 -) -(1,1885:7845810,9735387:24737219,505283,134348 -g1,1884:10699902,9735387 -k1,1885:32583029,9735387:19698812 -g1,1885:32583029,9735387 -) -(1,1886:7845810,11101163:24737219,513147,126483 -(1,1885:7845810,11101163:0,355205,0 -g1,1885:7845810,11101163 -g1,1885:6535090,11101163 -g1,1885:6207410,11101163 -(1,1885:6207410,11101163:1310720,355205,0 -k1,1885:7518130,11101163:1310720 -(1,1885:7518130,11101163:0,355205,0 -k1,1885:7119671,11101163:-398459 -) -) -g1,1885:7845810,11101163 -) -k1,1885:11379856,11101163:212026 -k1,1885:12740728,11101163:212026 -k1,1885:15648249,11101163:212025 -(1,1885:15648249,11101163:0,452978,115847 -r1,1948:17413362,11101163:1765113,568825,115847 -k1,1885:15648249,11101163:-1765113 -) -(1,1885:15648249,11101163:1765113,452978,115847 -k1,1885:15648249,11101163:3277 -h1,1885:17410085,11101163:0,411205,112570 -) -k1,1885:17625388,11101163:212026 -k1,1885:19028859,11101163:212026 -k1,1885:22317800,11101163:212026 -(1,1885:22317800,11101163:0,414482,115847 -r1,1948:22676066,11101163:358266,530329,115847 -k1,1885:22317800,11101163:-358266 -) -(1,1885:22317800,11101163:358266,414482,115847 -k1,1885:22317800,11101163:3277 -h1,1885:22672789,11101163:0,411205,112570 -) -k1,1885:22888091,11101163:212025 -k1,1885:24291562,11101163:212026 -(1,1885:24291562,11101163:0,414482,115847 -r1,1948:24649828,11101163:358266,530329,115847 -k1,1885:24291562,11101163:-358266 -) -(1,1885:24291562,11101163:358266,414482,115847 -k1,1885:24291562,11101163:3277 -h1,1885:24646551,11101163:0,411205,112570 -) -k1,1885:24861854,11101163:212026 -k1,1885:25725308,11101163:212026 -k1,1885:29193162,11101163:212025 -k1,1885:30424273,11101163:212026 -k1,1885:32583029,11101163:0 -) -(1,1886:7845810,11942651:24737219,513147,126483 -g1,1885:8712195,11942651 -(1,1885:8712195,11942651:0,452978,115847 -r1,1948:11180732,11942651:2468537,568825,115847 -k1,1885:8712195,11942651:-2468537 -) -(1,1885:8712195,11942651:2468537,452978,115847 -k1,1885:8712195,11942651:3277 -h1,1885:11177455,11942651:0,411205,112570 -) -g1,1885:11379961,11942651 -g1,1885:12770635,11942651 -(1,1885:12770635,11942651:0,452978,122846 -r1,1948:15942595,11942651:3171960,575824,122846 -k1,1885:12770635,11942651:-3171960 -) -(1,1885:12770635,11942651:3171960,452978,122846 -k1,1885:12770635,11942651:3277 -h1,1885:15939318,11942651:0,411205,112570 -) -g1,1885:16141824,11942651 -g1,1885:17288704,11942651 -g1,1885:18507018,11942651 -g1,1885:21468590,11942651 -k1,1886:32583029,11942651:8901944 -g1,1886:32583029,11942651 -) -(1,1887:7845810,13308427:24737219,513147,126483 -(1,1886:7845810,13308427:0,355205,0 -g1,1886:7845810,13308427 -g1,1886:6535090,13308427 -g1,1886:6207410,13308427 -(1,1886:6207410,13308427:1310720,355205,0 -k1,1886:7518130,13308427:1310720 -(1,1886:7518130,13308427:0,355205,0 -k1,1886:7119671,13308427:-398459 -) -) -g1,1886:7845810,13308427 -) -g1,1886:9271218,13308427 -(1,1886:9271218,13308427:0,452978,115847 -r1,1948:11739755,13308427:2468537,568825,115847 -k1,1886:9271218,13308427:-2468537 -) -(1,1886:9271218,13308427:2468537,452978,115847 -k1,1886:9271218,13308427:3277 -h1,1886:11736478,13308427:0,411205,112570 -) -g1,1886:11938984,13308427 -g1,1886:13329658,13308427 -(1,1886:13329658,13308427:0,452978,122846 -r1,1948:16501618,13308427:3171960,575824,122846 -k1,1886:13329658,13308427:-3171960 -) -(1,1886:13329658,13308427:3171960,452978,122846 -k1,1886:13329658,13308427:3277 -h1,1886:16498341,13308427:0,411205,112570 -) -g1,1886:16700847,13308427 -g1,1886:17647842,13308427 -g1,1886:21346038,13308427 -g1,1886:22931353,13308427 -g1,1886:26607267,13308427 -g1,1886:29832293,13308427 -g1,1886:30647560,13308427 -k1,1887:32583029,13308427:1193601 -g1,1887:32583029,13308427 -) -] -g1,1888:32583029,13959198 -) -h1,1888:6630773,13959198:0,0,0 -(1,1893:6630773,15281491:25952256,513147,134348 -h1,1892:6630773,15281491:983040,0,0 -k1,1892:8300029,15281491:216323 -k1,1892:9047850,15281491:216324 -k1,1892:11894133,15281491:216323 -k1,1892:12761884,15281491:216323 -k1,1892:15316532,15281491:216323 -k1,1892:17691612,15281491:216324 -k1,1892:20197763,15281491:216323 -k1,1892:21304065,15281491:216323 -k1,1892:24569123,15281491:216323 -k1,1892:26353068,15281491:216324 -k1,1892:27588476,15281491:216323 -k1,1892:31189078,15281491:216323 -k1,1893:32583029,15281491:0 -) -(1,1893:6630773,16122979:25952256,513147,134348 -(1,1892:6630773,16122979:0,452978,115847 -r1,1948:9451022,16122979:2820249,568825,115847 -k1,1892:6630773,16122979:-2820249 -) -(1,1892:6630773,16122979:2820249,452978,115847 -k1,1892:6630773,16122979:3277 -h1,1892:9447745,16122979:0,411205,112570 -) -k1,1892:9828810,16122979:204118 -k1,1892:12822795,16122979:204117 -(1,1892:12822795,16122979:0,452978,122846 -r1,1948:15994755,16122979:3171960,575824,122846 -k1,1892:12822795,16122979:-3171960 -) -(1,1892:12822795,16122979:3171960,452978,122846 -k1,1892:12822795,16122979:3277 -h1,1892:15991478,16122979:0,411205,112570 -) -k1,1892:16198873,16122979:204118 -k1,1892:18743936,16122979:204117 -k1,1892:19303914,16122979:204118 -(1,1892:19303914,16122979:0,452978,115847 -r1,1948:22475874,16122979:3171960,568825,115847 -k1,1892:19303914,16122979:-3171960 -) -(1,1892:19303914,16122979:3171960,452978,115847 -k1,1892:19303914,16122979:3277 -h1,1892:22472597,16122979:0,411205,112570 -) -k1,1892:22679992,16122979:204118 -k1,1892:24861986,16122979:204117 -k1,1892:28428101,16122979:204118 -k1,1892:29651303,16122979:204117 -k1,1892:31923737,16122979:204118 -k1,1892:32583029,16122979:0 -) -(1,1893:6630773,16964467:25952256,505283,134348 -k1,1892:7562330,16964467:165441 -k1,1892:10017599,16964467:165441 -k1,1892:12225797,16964467:165441 -k1,1892:13007275,16964467:165440 -k1,1892:14191801,16964467:165441 -k1,1892:16701465,16964467:165441 -k1,1892:21097910,16964467:165441 -k1,1892:21946236,16964467:165441 -k1,1892:22873204,16964467:165440 -k1,1892:26181752,16964467:165441 -k1,1892:26703053,16964467:165441 -(1,1892:26703053,16964467:0,414482,115847 -r1,1948:29171590,16964467:2468537,530329,115847 -k1,1892:26703053,16964467:-2468537 -) -(1,1892:26703053,16964467:2468537,414482,115847 -k1,1892:26703053,16964467:3277 -h1,1892:29168313,16964467:0,411205,112570 -) -k1,1892:29337031,16964467:165441 -k1,1892:32583029,16964467:0 -) -(1,1893:6630773,17805955:25952256,505283,134348 -g1,1892:8205603,17805955 -g1,1892:9423917,17805955 -g1,1892:11912974,17805955 -g1,1892:13506154,17805955 -g1,1892:15773699,17805955 -g1,1892:18944330,17805955 -g1,1892:20162644,17805955 -(1,1892:20162644,17805955:0,414482,115847 -r1,1948:22631181,17805955:2468537,530329,115847 -k1,1892:20162644,17805955:-2468537 -) -(1,1892:20162644,17805955:2468537,414482,115847 -k1,1892:20162644,17805955:3277 -h1,1892:22627904,17805955:0,411205,112570 -) -k1,1893:32583029,17805955:9778178 -g1,1893:32583029,17805955 -) -v1,1895:6630773,18952938:0,393216,0 -(1,1916:6630773,25210543:25952256,6650821,196608 -g1,1916:6630773,25210543 -g1,1916:6630773,25210543 -g1,1916:6434165,25210543 -(1,1916:6434165,25210543:0,6650821,196608 -r1,1948:32779637,25210543:26345472,6847429,196608 -k1,1916:6434165,25210543:-26345472 -) -(1,1916:6434165,25210543:26345472,6650821,196608 -[1,1916:6630773,25210543:25952256,6454213,0 -(1,1897:6630773,19160556:25952256,404226,107478 -(1,1896:6630773,19160556:0,0,0 -g1,1896:6630773,19160556 -g1,1896:6630773,19160556 -g1,1896:6303093,19160556 -(1,1896:6303093,19160556:0,0,0 -) -g1,1896:6630773,19160556 -) -g1,1897:10108376,19160556 -g1,1897:11056814,19160556 -h1,1897:12005252,19160556:0,0,0 -k1,1897:32583028,19160556:20577776 -g1,1897:32583028,19160556 -) -(1,1898:6630773,19826734:25952256,404226,107478 -h1,1898:6630773,19826734:0,0,0 -g1,1898:11689105,19826734 -g1,1898:12321397,19826734 -h1,1898:15799000,19826734:0,0,0 -k1,1898:32583028,19826734:16784028 -g1,1898:32583028,19826734 -) -(1,1902:6630773,20492912:25952256,404226,107478 -(1,1900:6630773,20492912:0,0,0 -g1,1900:6630773,20492912 -g1,1900:6630773,20492912 -g1,1900:6303093,20492912 -(1,1900:6303093,20492912:0,0,0 -) -g1,1900:6630773,20492912 -) -g1,1902:7579210,20492912 -g1,1902:8843793,20492912 -h1,1902:12637541,20492912:0,0,0 -k1,1902:32583029,20492912:19945488 -g1,1902:32583029,20492912 -) -(1,1904:6630773,21814450:25952256,404226,107478 -(1,1903:6630773,21814450:0,0,0 -g1,1903:6630773,21814450 -g1,1903:6630773,21814450 -g1,1903:6303093,21814450 -(1,1903:6303093,21814450:0,0,0 -) -g1,1903:6630773,21814450 -) -h1,1904:9792230,21814450:0,0,0 -k1,1904:32583030,21814450:22790800 -g1,1904:32583030,21814450 -) -(1,1908:6630773,22480628:25952256,404226,76021 -(1,1906:6630773,22480628:0,0,0 -g1,1906:6630773,22480628 -g1,1906:6630773,22480628 -g1,1906:6303093,22480628 -(1,1906:6303093,22480628:0,0,0 -) -g1,1906:6630773,22480628 -) -g1,1908:7579210,22480628 -g1,1908:8843793,22480628 -g1,1908:9476085,22480628 -g1,1908:10108377,22480628 -g1,1908:10740669,22480628 -h1,1908:11056815,22480628:0,0,0 -k1,1908:32583029,22480628:21526214 -g1,1908:32583029,22480628 -) -(1,1910:6630773,23802166:25952256,404226,107478 -(1,1909:6630773,23802166:0,0,0 -g1,1909:6630773,23802166 -g1,1909:6630773,23802166 -g1,1909:6303093,23802166 -(1,1909:6303093,23802166:0,0,0 -) -g1,1909:6630773,23802166 -) -k1,1910:6630773,23802166:0 -h1,1910:12321395,23802166:0,0,0 -k1,1910:32583029,23802166:20261634 -g1,1910:32583029,23802166 -) -(1,1911:6630773,24468344:25952256,404226,107478 -h1,1911:6630773,24468344:0,0,0 -g1,1911:11689105,24468344 -g1,1911:12321397,24468344 -h1,1911:15799000,24468344:0,0,0 -k1,1911:32583028,24468344:16784028 -g1,1911:32583028,24468344 -) -(1,1915:6630773,25134522:25952256,404226,76021 -(1,1913:6630773,25134522:0,0,0 -g1,1913:6630773,25134522 -g1,1913:6630773,25134522 -g1,1913:6303093,25134522 -(1,1913:6303093,25134522:0,0,0 -) -g1,1913:6630773,25134522 -) -g1,1915:7579210,25134522 -h1,1915:11372958,25134522:0,0,0 -k1,1915:32583030,25134522:21210072 -g1,1915:32583030,25134522 -) -] -) -g1,1916:32583029,25210543 -g1,1916:6630773,25210543 -g1,1916:6630773,25210543 -g1,1916:32583029,25210543 -g1,1916:32583029,25210543 -) -h1,1916:6630773,25407151:0,0,0 -(1,1920:6630773,26729445:25952256,513147,134348 -h1,1919:6630773,26729445:983040,0,0 -k1,1919:8475845,26729445:234197 -k1,1919:11134220,26729445:234198 -k1,1919:12134533,26729445:234197 -k1,1919:14658559,26729445:234198 -k1,1919:15884316,26729445:234197 -k1,1919:17880122,26729445:234198 -k1,1919:18730357,26729445:234197 -k1,1919:19983639,26729445:234197 -k1,1919:24298764,26729445:234198 -k1,1919:25546148,26729445:234197 -k1,1919:26971791,26729445:234198 -k1,1919:28225073,26729445:234197 -k1,1919:30529553,26729445:234198 -k1,1919:31923737,26729445:234197 -k1,1919:32583029,26729445:0 -) -(1,1920:6630773,27570933:25952256,513147,134348 -g1,1919:8033243,27570933 -g1,1919:9245659,27570933 -g1,1919:10549170,27570933 -g1,1919:11496165,27570933 -g1,1919:13208620,27570933 -g1,1919:14059277,27570933 -g1,1919:15524662,27570933 -g1,1919:16079751,27570933 -g1,1919:17973741,27570933 -k1,1920:32583029,27570933:12476091 -g1,1920:32583029,27570933 -) -v1,1922:6630773,28893226:0,393216,0 -(1,1948:6630773,45706769:25952256,17206759,0 -g1,1948:6630773,45706769 -g1,1948:6303093,45706769 -r1,1948:6401397,45706769:98304,17206759,0 -g1,1948:6600626,45706769 -g1,1948:6797234,45706769 -[1,1948:6797234,45706769:25785795,17206759,0 -(1,1923:6797234,29255299:25785795,755289,196608 -(1,1922:6797234,29255299:0,755289,196608 -r1,1948:8134168,29255299:1336934,951897,196608 -k1,1922:6797234,29255299:-1336934 -) -(1,1922:6797234,29255299:1336934,755289,196608 -) -k1,1922:8673746,29255299:539578 -k1,1922:9001426,29255299:327680 -k1,1922:12330872,29255299:539578 -(1,1922:12330872,29255299:0,452978,115847 -r1,1948:15151121,29255299:2820249,568825,115847 -k1,1922:12330872,29255299:-2820249 -) -(1,1922:12330872,29255299:2820249,452978,115847 -k1,1922:12330872,29255299:3277 -h1,1922:15147844,29255299:0,411205,112570 -) -k1,1922:15690700,29255299:539579 -k1,1922:18608580,29255299:539578 -k1,1922:20614854,29255299:539578 -k1,1922:22546417,29255299:539578 -k1,1922:25154311,29255299:539578 -k1,1922:26353181,29255299:539578 -k1,1922:29182588,29255299:539579 -k1,1922:30408328,29255299:539578 -k1,1922:31563944,29255299:539578 -k1,1922:32583029,29255299:0 -) -(1,1923:6797234,30096787:25785795,505283,134348 -k1,1922:9201421,30096787:433519 -k1,1922:11490264,30096787:433519 -k1,1922:13115228,30096787:433519 -(1,1922:13115228,30096787:0,452978,115847 -r1,1948:16287188,30096787:3171960,568825,115847 -k1,1922:13115228,30096787:-3171960 -) -(1,1922:13115228,30096787:3171960,452978,115847 -k1,1922:13115228,30096787:3277 -h1,1922:16283911,30096787:0,411205,112570 -) -k1,1922:16720707,30096787:433519 -k1,1922:19350337,30096787:433519 -k1,1922:24407420,30096787:433518 -k1,1922:25492367,30096787:433519 -k1,1922:27885412,30096787:433519 -k1,1922:30387247,30096787:433519 -k1,1922:31966991,30096787:433519 -k1,1923:32583029,30096787:0 -) -(1,1923:6797234,30938275:25785795,505283,126483 -(1,1922:6797234,30938275:0,452978,122846 -r1,1948:13838025,30938275:7040791,575824,122846 -k1,1922:6797234,30938275:-7040791 -) -(1,1922:6797234,30938275:7040791,452978,122846 -k1,1922:6797234,30938275:3277 -h1,1922:13834748,30938275:0,411205,112570 -) -k1,1922:14239480,30938275:227785 -k1,1922:17401967,30938275:227785 -k1,1922:19404467,30938275:227785 -(1,1922:19404467,30938275:0,452978,122846 -r1,1948:22576427,30938275:3171960,575824,122846 -k1,1922:19404467,30938275:-3171960 -) -(1,1922:19404467,30938275:3171960,452978,122846 -k1,1922:19404467,30938275:3277 -h1,1922:22573150,30938275:0,411205,112570 -) -k1,1922:22804213,30938275:227786 -k1,1922:25079998,30938275:227785 -k1,1922:27979030,30938275:227785 -k1,1922:28858243,30938275:227785 -k1,1922:29833794,30938275:227785 -k1,1922:32583029,30938275:0 -) -(1,1923:6797234,31779763:25785795,513147,134348 -k1,1922:7663552,31779763:214890 -k1,1922:9837967,31779763:214889 -k1,1922:12294844,31779763:214890 -(1,1922:12294844,31779763:0,452978,115847 -r1,1948:15115093,31779763:2820249,568825,115847 -k1,1922:12294844,31779763:-2820249 -) -(1,1922:12294844,31779763:2820249,452978,115847 -k1,1922:12294844,31779763:3277 -h1,1922:15111816,31779763:0,411205,112570 -) -k1,1922:15329983,31779763:214890 -k1,1922:17037782,31779763:214889 -k1,1922:18492613,31779763:214890 -k1,1922:21235882,31779763:214890 -k1,1922:22110064,31779763:214890 -k1,1922:23701864,31779763:214889 -k1,1922:25613481,31779763:214890 -k1,1922:27000810,31779763:214890 -k1,1922:30241496,31779763:214889 -k1,1922:31931601,31779763:214890 -k1,1922:32583029,31779763:0 -) -(1,1923:6797234,32621251:25785795,513147,134348 -k1,1922:7779468,32621251:234468 -k1,1922:9527161,32621251:234467 -k1,1922:12442052,32621251:234468 -k1,1922:13624170,32621251:234467 -k1,1922:16856255,32621251:234468 -k1,1922:17856839,32621251:234468 -k1,1922:20381134,32621251:234467 -k1,1922:22009553,32621251:234468 -k1,1922:24312337,32621251:234468 -k1,1922:25831310,32621251:234467 -k1,1922:28046931,32621251:234468 -k1,1922:28637258,32621251:234467 -k1,1922:31386342,32621251:234468 -k1,1922:32583029,32621251:0 -) -(1,1923:6797234,33462739:25785795,505283,134348 -g1,1922:9337409,33462739 -g1,1922:10640920,33462739 -g1,1922:11587915,33462739 -g1,1922:13481905,33462739 -g1,1922:14367296,33462739 -g1,1922:14922385,33462739 -g1,1922:17395713,33462739 -g1,1922:21034927,33462739 -g1,1922:22466233,33462739 -g1,1922:24944149,33462739 -h1,1922:25914737,33462739:0,0,0 -g1,1922:26113966,33462739 -g1,1922:27122565,33462739 -g1,1922:28819947,33462739 -h1,1922:29616865,33462739:0,0,0 -k1,1923:32583029,33462739:2585400 -g1,1923:32583029,33462739 -) -(1,1925:6797234,34304227:25785795,513147,134348 -h1,1924:6797234,34304227:983040,0,0 -k1,1924:9479921,34304227:234262 -k1,1924:12739979,34304227:234261 -k1,1924:14449456,34304227:234262 -k1,1924:15675277,34304227:234261 -k1,1924:18693508,34304227:234262 -k1,1924:20813895,34304227:234261 -k1,1924:22733088,34304227:234262 -k1,1924:25035665,34304227:234261 -k1,1924:28241329,34304227:234262 -k1,1924:30219503,34304227:234261 -k1,1924:31966991,34304227:234262 -k1,1925:32583029,34304227:0 -) -(1,1925:6797234,35145715:25785795,513147,134348 -k1,1924:8803413,35145715:253091 -k1,1924:10247950,35145715:253092 -k1,1924:11952663,35145715:253091 -k1,1924:13153406,35145715:253092 -k1,1924:16517491,35145715:253091 -k1,1924:18257595,35145715:253092 -(1,1924:18257595,35145715:0,452978,115847 -r1,1948:19670996,35145715:1413401,568825,115847 -k1,1924:18257595,35145715:-1413401 -) -(1,1924:18257595,35145715:1413401,452978,115847 -k1,1924:18257595,35145715:3277 -h1,1924:19667719,35145715:0,411205,112570 -) -k1,1924:19924087,35145715:253091 -k1,1924:20708675,35145715:253091 -k1,1924:21317627,35145715:253092 -k1,1924:24467409,35145715:253091 -k1,1924:25387657,35145715:253092 -(1,1924:25387657,35145715:0,452978,122846 -r1,1948:28559617,35145715:3171960,575824,122846 -k1,1924:25387657,35145715:-3171960 -) -(1,1924:25387657,35145715:3171960,452978,122846 -k1,1924:25387657,35145715:3277 -h1,1924:28556340,35145715:0,411205,112570 -) -k1,1924:28812708,35145715:253091 -k1,1924:30257245,35145715:253092 -(1,1924:30257245,35145715:0,452978,115847 -r1,1948:31670646,35145715:1413401,568825,115847 -k1,1924:30257245,35145715:-1413401 -) -(1,1924:30257245,35145715:1413401,452978,115847 -k1,1924:30257245,35145715:3277 -h1,1924:31667369,35145715:0,411205,112570 -) -k1,1924:31923737,35145715:253091 -k1,1925:32583029,35145715:0 -) -(1,1925:6797234,35987203:25785795,452978,115847 -(1,1924:6797234,35987203:0,452978,115847 -r1,1948:9617483,35987203:2820249,568825,115847 -k1,1924:6797234,35987203:-2820249 -) -(1,1924:6797234,35987203:2820249,452978,115847 -k1,1924:6797234,35987203:3277 -h1,1924:9614206,35987203:0,411205,112570 -) -k1,1925:32583029,35987203:22791876 -g1,1925:32583029,35987203 -) -(1,1927:6797234,36828691:25785795,513147,134348 -h1,1926:6797234,36828691:983040,0,0 -k1,1926:9782952,36828691:210924 -k1,1926:10349736,36828691:210924 -k1,1926:12685338,36828691:210925 -k1,1926:15237208,36828691:210924 -k1,1926:16316484,36828691:210924 -k1,1926:18551160,36828691:210924 -k1,1926:19781170,36828691:210925 -k1,1926:22060410,36828691:210924 -k1,1926:22930626,36828691:210924 -k1,1926:23907666,36828691:210924 -k1,1926:26408419,36828691:210925 -k1,1926:28013294,36828691:210924 -k1,1926:30292534,36828691:210924 -(1,1926:30292534,36828691:0,452978,115847 -r1,1948:32409359,36828691:2116825,568825,115847 -k1,1926:30292534,36828691:-2116825 -) -(1,1926:30292534,36828691:2116825,452978,115847 -k1,1926:30292534,36828691:3277 -h1,1926:32406082,36828691:0,411205,112570 -) -k1,1927:32583029,36828691:0 -) -(1,1927:6797234,37670179:25785795,513147,134348 -(1,1926:6797234,37670179:0,452978,115847 -r1,1948:8914059,37670179:2116825,568825,115847 -k1,1926:6797234,37670179:-2116825 -) -(1,1926:6797234,37670179:2116825,452978,115847 -k1,1926:6797234,37670179:3277 -h1,1926:8910782,37670179:0,411205,112570 -) -k1,1926:9293184,37670179:205455 -k1,1926:10690083,37670179:205454 -k1,1926:11620366,37670179:205455 -k1,1926:12808860,37670179:205454 -k1,1926:14797550,37670179:205455 -k1,1926:16738397,37670179:205454 -k1,1926:17299712,37670179:205455 -k1,1926:19846113,37670179:205455 -k1,1926:20702995,37670179:205454 -k1,1926:23263159,37670179:205455 -k1,1926:25932111,37670179:205454 -k1,1926:26595663,37670179:205455 -k1,1926:27332614,37670179:205454 -k1,1926:29122074,37670179:205455 -k1,1926:29978956,37670179:205454 -k1,1926:31490544,37670179:205455 -k1,1927:32583029,37670179:0 -) -(1,1927:6797234,38511667:25785795,513147,134348 -(1,1926:6797234,38511667:0,452978,122846 -r1,1948:9969194,38511667:3171960,575824,122846 -k1,1926:6797234,38511667:-3171960 -) -(1,1926:6797234,38511667:3171960,452978,122846 -k1,1926:6797234,38511667:3277 -h1,1926:9965917,38511667:0,411205,112570 -) -k1,1926:10191237,38511667:222043 -k1,1926:11222650,38511667:222043 -k1,1926:12233091,38511667:222043 -k1,1926:13785515,38511667:222043 -k1,1926:14658986,38511667:222043 -k1,1926:15859482,38511667:222043 -k1,1926:16437385,38511667:222043 -k1,1926:17652954,38511667:222043 -k1,1926:18534288,38511667:222042 -k1,1926:19775416,38511667:222043 -k1,1926:22287287,38511667:222043 -k1,1926:23793836,38511667:222043 -k1,1926:25972129,38511667:222043 -k1,1926:26941938,38511667:222043 -k1,1926:29509515,38511667:222043 -k1,1926:30493086,38511667:222043 -k1,1927:32583029,38511667:0 -) -(1,1927:6797234,39353155:25785795,513147,134348 -(1,1926:6797234,39353155:0,452978,115847 -r1,1948:9617483,39353155:2820249,568825,115847 -k1,1926:6797234,39353155:-2820249 -) -(1,1926:6797234,39353155:2820249,452978,115847 -k1,1926:6797234,39353155:3277 -h1,1926:9614206,39353155:0,411205,112570 -) -k1,1926:9892643,39353155:275160 -k1,1926:12595258,39353155:275161 -k1,1926:13889503,39353155:275160 -k1,1926:16232979,39353155:275160 -k1,1926:19286867,39353155:275161 -k1,1926:20323555,39353155:275160 -(1,1926:20323555,39353155:0,452978,122846 -r1,1948:23495515,39353155:3171960,575824,122846 -k1,1926:20323555,39353155:-3171960 -) -(1,1926:20323555,39353155:3171960,452978,122846 -k1,1926:20323555,39353155:3277 -h1,1926:23492238,39353155:0,411205,112570 -) -k1,1926:23770675,39353155:275160 -k1,1926:24731997,39353155:275160 -k1,1926:28079486,39353155:275161 -k1,1926:29302297,39353155:275160 -k1,1927:32583029,39353155:0 -) -(1,1927:6797234,40194643:25785795,452978,115847 -(1,1926:6797234,40194643:0,452978,115847 -r1,1948:8210635,40194643:1413401,568825,115847 -k1,1926:6797234,40194643:-1413401 -) -(1,1926:6797234,40194643:1413401,452978,115847 -k1,1926:6797234,40194643:3277 -h1,1926:8207358,40194643:0,411205,112570 -) -k1,1927:32583029,40194643:24198724 -g1,1927:32583029,40194643 -) -v1,1929:6797234,41385109:0,393216,0 -(1,1936:6797234,42334926:25785795,1343033,196608 -g1,1936:6797234,42334926 -g1,1936:6797234,42334926 -g1,1936:6600626,42334926 -(1,1936:6600626,42334926:0,1343033,196608 -r1,1948:32779637,42334926:26179011,1539641,196608 -k1,1936:6600625,42334926:-26179012 -) -(1,1936:6600626,42334926:26179011,1343033,196608 -[1,1936:6797234,42334926:25785795,1146425,0 -(1,1931:6797234,41592727:25785795,404226,107478 -(1,1930:6797234,41592727:0,0,0 -g1,1930:6797234,41592727 -g1,1930:6797234,41592727 -g1,1930:6469554,41592727 -(1,1930:6469554,41592727:0,0,0 -) -g1,1930:6797234,41592727 -) -k1,1931:6797234,41592727:0 -g1,1931:11855566,41592727 -g1,1931:12487858,41592727 -h1,1931:15333169,41592727:0,0,0 -k1,1931:32583029,41592727:17249860 -g1,1931:32583029,41592727 -) -(1,1935:6797234,42258905:25785795,404226,76021 -(1,1933:6797234,42258905:0,0,0 -g1,1933:6797234,42258905 -g1,1933:6797234,42258905 -g1,1933:6469554,42258905 -(1,1933:6469554,42258905:0,0,0 -) -g1,1933:6797234,42258905 -) -g1,1935:7745671,42258905 -h1,1935:11539419,42258905:0,0,0 -k1,1935:32583029,42258905:21043610 -g1,1935:32583029,42258905 -) -] -) -g1,1936:32583029,42334926 -g1,1936:6797234,42334926 -g1,1936:6797234,42334926 -g1,1936:32583029,42334926 -g1,1936:32583029,42334926 -) -h1,1936:6797234,42531534:0,0,0 -(1,1940:6797234,43897310:25785795,505283,134348 -h1,1939:6797234,43897310:983040,0,0 -k1,1939:9273455,43897310:296494 -k1,1939:11066136,43897310:296494 -k1,1939:13231061,43897310:296494 -k1,1939:16212564,43897310:296493 -k1,1939:17275174,43897310:296494 -k1,1939:19861496,43897310:296494 -k1,1939:21551941,43897310:296494 -k1,1939:23916751,43897310:296494 -(1,1939:23916751,43897310:0,452978,115847 -r1,1948:26033576,43897310:2116825,568825,115847 -k1,1939:23916751,43897310:-2116825 -) -(1,1939:23916751,43897310:2116825,452978,115847 -k1,1939:23916751,43897310:3277 -h1,1939:26030299,43897310:0,411205,112570 -) -k1,1939:26503740,43897310:296494 -(1,1939:26503740,43897310:0,452978,115847 -r1,1948:28620565,43897310:2116825,568825,115847 -k1,1939:26503740,43897310:-2116825 -) -(1,1939:26503740,43897310:2116825,452978,115847 -k1,1939:26503740,43897310:3277 -h1,1939:28617288,43897310:0,411205,112570 -) -k1,1939:29090728,43897310:296493 -k1,1939:30578667,43897310:296494 -k1,1939:31599989,43897310:296494 -k1,1939:32583029,43897310:0 -) -(1,1940:6797234,44738798:25785795,513147,134348 -k1,1939:7985525,44738798:234742 -k1,1939:9035534,44738798:234741 -k1,1939:10473517,44738798:234742 -k1,1939:11321021,44738798:234742 -k1,1939:12574847,44738798:234741 -k1,1939:13992514,44738798:234742 -k1,1939:14886548,44738798:234742 -k1,1939:16140375,44738798:234742 -k1,1939:18653803,44738798:234741 -k1,1939:20931302,44738798:234742 -k1,1939:23537137,44738798:234742 -k1,1939:24790963,44738798:234741 -k1,1939:26679178,44738798:234742 -k1,1939:28982236,44738798:234742 -k1,1939:29833015,44738798:234741 -k1,1939:31086842,44738798:234742 -k1,1939:32583029,44738798:0 -) -(1,1940:6797234,45580286:25785795,513147,126483 -g1,1939:9988182,45580286 -g1,1939:10846703,45580286 -g1,1939:12065017,45580286 -g1,1939:13648366,45580286 -k1,1940:32583029,45580286:16482306 -g1,1940:32583029,45580286 -) -] -g1,1948:32583029,45706769 -) -] -(1,1948:32583029,45706769:0,0,0 -g1,1948:32583029,45706769 +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,2000:3078558,51504789:16384,1179648,0 ) +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) ] -(1,1948:6630773,47279633:25952256,0,0 -h1,1948:6630773,47279633:25952256,0,0 -) -] -(1,1948:4262630,4025873:0,0,0 -[1,1948:-473656,4025873:0,0,0 -(1,1948:-473656,-710413:0,0,0 -(1,1948:-473656,-710413:0,0,0 -g1,1948:-473656,-710413 ) -g1,1948:-473656,-710413 ) -] ) ] -!30292 -}54 -Input:436:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:437:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:438:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:439:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:440:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:441:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:442:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +[1,2000:3078558,4812305:0,0,0 +(1,2000:3078558,49800853:0,16384,2228224 +g1,2000:29030814,49800853 +g1,2000:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,2000:36151628,51504789:16384,1179648,0 +) +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 +) +] +) +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,2000:37855564,49800853:1179648,16384,0 +) +) +k1,2000:3078556,49800853:-34777008 +) +] +g1,2000:6630773,4812305 +k1,2000:22348274,4812305:14920583 +g1,2000:23970945,4812305 +g1,2000:24793421,4812305 +g1,2000:27528893,4812305 +g1,2000:28938572,4812305 +) +) +] +[1,2000:6630773,45706769:25952256,40108032,0 +(1,2000:6630773,45706769:25952256,40108032,0 +(1,2000:6630773,45706769:0,0,0 +g1,2000:6630773,45706769 +) +[1,2000:6630773,45706769:25952256,40108032,0 +(1,1902:6630773,6254097:25952256,513147,134348 +k1,1901:8500796,6254097:189680 +k1,1901:9376638,6254097:189680 +k1,1901:9922178,6254097:189680 +k1,1901:11395052,6254097:189679 +k1,1901:14204861,6254097:189680 +k1,1901:16248555,6254097:189680 +k1,1901:17996026,6254097:189680 +k1,1901:19928964,6254097:189680 +k1,1901:20734682,6254097:189680 +k1,1901:22254743,6254097:189680 +k1,1901:23824610,6254097:189679 +k1,1901:26173046,6254097:189680 +k1,1901:29017589,6254097:189680 +k1,1901:31391584,6254097:189680 +k1,1901:32583029,6254097:0 +) +(1,1902:6630773,7119177:25952256,513147,126483 +k1,1901:9083534,7119177:181938 +k1,1901:9924764,7119177:181938 +k1,1901:11745757,7119177:181938 +k1,1901:14191308,7119177:181937 +k1,1901:15392331,7119177:181938 +k1,1901:18352996,7119177:181938 +k1,1901:20215277,7119177:181938 +k1,1901:21048643,7119177:181938 +k1,1901:22249666,7119177:181938 +k1,1901:24772549,7119177:181937 +k1,1901:26837336,7119177:181938 +k1,1901:29678725,7119177:181938 +k1,1901:31412556,7119177:181938 +k1,1901:32583029,7119177:0 +) +(1,1902:6630773,7984257:25952256,513147,126483 +k1,1901:7943034,7984257:207979 +k1,1901:9243499,7984257:207980 +(1,1901:9243499,7984257:0,452978,115847 +r1,2000:13118883,7984257:3875384,568825,115847 +k1,1901:9243499,7984257:-3875384 +) +(1,1901:9243499,7984257:3875384,452978,115847 +k1,1901:9243499,7984257:3277 +h1,1901:13115606,7984257:0,411205,112570 +) +k1,1901:13326862,7984257:207979 +k1,1901:14217727,7984257:207980 +(1,1901:14217727,7984257:0,435480,115847 +r1,2000:16334552,7984257:2116825,551327,115847 +k1,1901:14217727,7984257:-2116825 +) +(1,1901:14217727,7984257:2116825,435480,115847 +k1,1901:14217727,7984257:3277 +h1,1901:16331275,7984257:0,411205,112570 +) +k1,1901:16542531,7984257:207979 +k1,1901:17363273,7984257:207980 +k1,1901:18590337,7984257:207979 +k1,1901:19213151,7984257:207971 +k1,1901:22015046,7984257:207980 +k1,1901:22905910,7984257:207979 +k1,1901:24132975,7984257:207980 +k1,1901:25729007,7984257:207979 +k1,1901:26950174,7984257:207980 +k1,1901:27825309,7984257:207979 +k1,1901:30457466,7984257:207980 +k1,1901:31316873,7984257:207979 +k1,1901:32583029,7984257:0 +) +(1,1902:6630773,8849337:25952256,505283,7863 +g1,1901:7896273,8849337 +g1,1901:9114587,8849337 +k1,1902:32583029,8849337:21037056 +g1,1902:32583029,8849337 +) +v1,1904:6630773,9714417:0,393216,0 +(1,1910:6630773,16876721:25952256,7555520,0 +g1,1910:6630773,16876721 +g1,1910:6237557,16876721 +r1,2000:6368629,16876721:131072,7555520,0 +g1,1910:6567858,16876721 +g1,1910:6764466,16876721 +[1,1910:6764466,16876721:25818563,7555520,0 +(1,1905:6764466,9986894:25818563,665693,196608 +(1,1904:6764466,9986894:0,665693,196608 +r1,2000:8010564,9986894:1246098,862301,196608 +k1,1904:6764466,9986894:-1246098 +) +(1,1904:6764466,9986894:1246098,665693,196608 +) +k1,1904:8192290,9986894:181726 +k1,1904:9510219,9986894:327680 +k1,1904:11325758,9986894:181726 +k1,1904:13000394,9986894:181726 +k1,1904:14862463,9986894:181726 +k1,1904:18376039,9986894:181726 +k1,1904:20622804,9986894:181726 +k1,1904:23594398,9986894:181726 +(1,1904:23594398,9986894:0,452978,115847 +r1,2000:26062935,9986894:2468537,568825,115847 +k1,1904:23594398,9986894:-2468537 +) +(1,1904:23594398,9986894:2468537,452978,115847 +k1,1904:23594398,9986894:3277 +h1,1904:26059658,9986894:0,411205,112570 +) +k1,1904:26244661,9986894:181726 +k1,1904:29425314,9986894:181726 +k1,1904:29962900,9986894:181726 +k1,1904:32583029,9986894:0 +) +(1,1905:6764466,10851974:25818563,505283,122846 +g1,1904:8817709,10851974 +g1,1904:10089107,10851974 +g1,1904:10746433,10851974 +g1,1904:12438572,10851974 +g1,1904:13704072,10851974 +g1,1904:15913946,10851974 +g1,1904:16883878,10851974 +(1,1904:16883878,10851974:0,452978,122846 +r1,2000:19352415,10851974:2468537,575824,122846 +k1,1904:16883878,10851974:-2468537 +) +(1,1904:16883878,10851974:2468537,452978,122846 +k1,1904:16883878,10851974:3277 +h1,1904:19349138,10851974:0,411205,112570 +) +k1,1905:32583029,10851974:13056944 +g1,1905:32583029,10851974 +) +(1,1907:7813042,12241342:24769987,513147,126483 +(1,1906:7813042,12241342:0,355205,0 +g1,1906:7813042,12241342 +g1,1906:6502322,12241342 +g1,1906:6174642,12241342 +(1,1906:6174642,12241342:1310720,355205,0 +k1,1906:7485362,12241342:1310720 +(1,1906:7485362,12241342:0,355205,0 +k1,1906:7086903,12241342:-398459 +) +) +g1,1906:7813042,12241342 +) +k1,1906:10453206,12241342:248100 +k1,1906:12031688,12241342:248101 +(1,1906:12031688,12241342:0,452978,115847 +r1,2000:14500225,12241342:2468537,568825,115847 +k1,1906:12031688,12241342:-2468537 +) +(1,1906:12031688,12241342:2468537,452978,115847 +k1,1906:12031688,12241342:3277 +h1,1906:14496948,12241342:0,411205,112570 +) +k1,1906:14748325,12241342:248100 +k1,1906:16187870,12241342:248100 +(1,1906:16187870,12241342:0,452978,122846 +r1,2000:19359830,12241342:3171960,575824,122846 +k1,1906:16187870,12241342:-3171960 +) +(1,1906:16187870,12241342:3171960,452978,122846 +k1,1906:16187870,12241342:3277 +h1,1906:19356553,12241342:0,411205,112570 +) +k1,1906:19607931,12241342:248101 +k1,1906:21772959,12241342:248100 +k1,1906:23390107,12241342:248101 +k1,1906:25277262,12241342:248100 +k1,1906:26992058,12241342:248100 +k1,1906:28634110,12241342:248101 +k1,1906:31391584,12241342:248100 +k1,1906:32583029,12241342:0 +) +(1,1907:7813042,13106422:24769987,505283,134348 +g1,1906:10667134,13106422 +k1,1907:32583029,13106422:19731580 +g1,1907:32583029,13106422 +) +(1,1908:7813042,14495790:24769987,513147,126483 +(1,1907:7813042,14495790:0,355205,0 +g1,1907:7813042,14495790 +g1,1907:6502322,14495790 +g1,1907:6174642,14495790 +(1,1907:6174642,14495790:1310720,355205,0 +k1,1907:7485362,14495790:1310720 +(1,1907:7485362,14495790:0,355205,0 +k1,1907:7086903,14495790:-398459 +) +) +g1,1907:7813042,14495790 +) +k1,1907:11349818,14495790:214756 +k1,1907:12713421,14495790:214757 +k1,1907:15623673,14495790:214756 +(1,1907:15623673,14495790:0,452978,115847 +r1,2000:17388786,14495790:1765113,568825,115847 +k1,1907:15623673,14495790:-1765113 +) +(1,1907:15623673,14495790:1765113,452978,115847 +k1,1907:15623673,14495790:3277 +h1,1907:17385509,14495790:0,411205,112570 +) +k1,1907:17603543,14495790:214757 +k1,1907:19009744,14495790:214756 +k1,1907:22301416,14495790:214757 +(1,1907:22301416,14495790:0,414482,115847 +r1,2000:22659682,14495790:358266,530329,115847 +k1,1907:22301416,14495790:-358266 +) +(1,1907:22301416,14495790:358266,414482,115847 +k1,1907:22301416,14495790:3277 +h1,1907:22656405,14495790:0,411205,112570 +) +k1,1907:22874438,14495790:214756 +k1,1907:24280639,14495790:214756 +(1,1907:24280639,14495790:0,414482,115847 +r1,2000:24638905,14495790:358266,530329,115847 +k1,1907:24280639,14495790:-358266 +) +(1,1907:24280639,14495790:358266,414482,115847 +k1,1907:24280639,14495790:3277 +h1,1907:24635628,14495790:0,411205,112570 +) +k1,1907:24853662,14495790:214757 +k1,1907:25719846,14495790:214756 +k1,1907:29190432,14495790:214757 +k1,1907:30424273,14495790:214756 +k1,1907:32583029,14495790:0 +) +(1,1908:7813042,15360870:24769987,513147,126483 +g1,1907:8679427,15360870 +(1,1907:8679427,15360870:0,452978,115847 +r1,2000:11147964,15360870:2468537,568825,115847 +k1,1907:8679427,15360870:-2468537 +) +(1,1907:8679427,15360870:2468537,452978,115847 +k1,1907:8679427,15360870:3277 +h1,1907:11144687,15360870:0,411205,112570 +) +g1,1907:11347193,15360870 +g1,1907:12737867,15360870 +(1,1907:12737867,15360870:0,452978,122846 +r1,2000:15909827,15360870:3171960,575824,122846 +k1,1907:12737867,15360870:-3171960 +) +(1,1907:12737867,15360870:3171960,452978,122846 +k1,1907:12737867,15360870:3277 +h1,1907:15906550,15360870:0,411205,112570 +) +g1,1907:16109056,15360870 +g1,1907:17255936,15360870 +g1,1907:18474250,15360870 +g1,1907:21435822,15360870 +k1,1908:32583029,15360870:8934712 +g1,1908:32583029,15360870 +) +(1,1909:7813042,16750238:24769987,513147,126483 +(1,1908:7813042,16750238:0,355205,0 +g1,1908:7813042,16750238 +g1,1908:6502322,16750238 +g1,1908:6174642,16750238 +(1,1908:6174642,16750238:1310720,355205,0 +k1,1908:7485362,16750238:1310720 +(1,1908:7485362,16750238:0,355205,0 +k1,1908:7086903,16750238:-398459 +) +) +g1,1908:7813042,16750238 +) +g1,1908:9238450,16750238 +(1,1908:9238450,16750238:0,452978,115847 +r1,2000:11706987,16750238:2468537,568825,115847 +k1,1908:9238450,16750238:-2468537 +) +(1,1908:9238450,16750238:2468537,452978,115847 +k1,1908:9238450,16750238:3277 +h1,1908:11703710,16750238:0,411205,112570 +) +g1,1908:11906216,16750238 +g1,1908:13296890,16750238 +(1,1908:13296890,16750238:0,452978,122846 +r1,2000:16468850,16750238:3171960,575824,122846 +k1,1908:13296890,16750238:-3171960 +) +(1,1908:13296890,16750238:3171960,452978,122846 +k1,1908:13296890,16750238:3277 +h1,1908:16465573,16750238:0,411205,112570 +) +g1,1908:16668079,16750238 +g1,1908:17615074,16750238 +g1,1908:21313270,16750238 +g1,1908:22898585,16750238 +g1,1908:26574499,16750238 +g1,1908:29799525,16750238 +g1,1908:30614792,16750238 +k1,1909:32583029,16750238:1226369 +g1,1909:32583029,16750238 +) +] +g1,1910:32583029,16876721 +) +h1,1910:6630773,16876721:0,0,0 +v1,1913:6630773,17741801:0,393216,0 +(1,1940:6630773,28148880:25952256,10800295,0 +g1,1940:6630773,28148880 +g1,1940:6237557,28148880 +r1,2000:6368629,28148880:131072,10800295,0 +g1,1940:6567858,28148880 +g1,1940:6764466,28148880 +[1,1940:6764466,28148880:25818563,10800295,0 +(1,1914:6764466,18050099:25818563,701514,196608 +(1,1913:6764466,18050099:0,701514,196608 +r1,2000:8010564,18050099:1246098,898122,196608 +k1,1913:6764466,18050099:-1246098 +) +(1,1913:6764466,18050099:1246098,701514,196608 +) +k1,1913:8211295,18050099:200731 +k1,1913:8538975,18050099:327680 +k1,1913:9154548,18050099:200730 +k1,1913:12211994,18050099:200732 +k1,1913:15099046,18050099:200731 +k1,1913:18115860,18050099:200732 +k1,1913:19508036,18050099:200731 +k1,1913:22984913,18050099:200732 +k1,1913:26590239,18050099:200731 +k1,1913:28184922,18050099:200732 +k1,1913:29940822,18050099:200731 +(1,1913:29940822,18050099:0,452978,115847 +r1,2000:32409359,18050099:2468537,568825,115847 +k1,1913:29940822,18050099:-2468537 +) +(1,1913:29940822,18050099:2468537,452978,115847 +k1,1913:29940822,18050099:3277 +h1,1913:32406082,18050099:0,411205,112570 +) +k1,1913:32583029,18050099:0 +) +(1,1914:6764466,18915179:25818563,505283,134348 +k1,1913:7758922,18915179:176567 +k1,1913:10621810,18915179:176567 +k1,1913:13614458,18915179:176566 +k1,1913:15637174,18915179:176567 +k1,1913:18002644,18915179:176567 +k1,1913:18795249,18915179:176567 +k1,1913:22852203,18915179:176567 +k1,1913:25190146,18915179:176566 +k1,1913:25579683,18915179:176545 +k1,1913:27036167,18915179:176566 +k1,1913:28588335,18915179:176567 +k1,1913:29921612,18915179:176567 +k1,1913:32583029,18915179:0 +) +(1,1914:6764466,19780259:25818563,513147,126483 +k1,1913:7637910,19780259:214152 +k1,1913:9360700,19780259:214151 +k1,1913:10841008,19780259:214152 +k1,1913:13863377,19780259:214151 +k1,1913:16893611,19780259:214152 +k1,1913:17793924,19780259:214151 +k1,1913:20389654,19780259:214152 +k1,1913:21219843,19780259:214151 +k1,1913:25700389,19780259:214152 +k1,1913:27389755,19780259:214151 +k1,1913:28776346,19780259:214152 +k1,1913:30816330,19780259:214151 +k1,1913:31386342,19780259:214152 +k1,1913:32583029,19780259:0 +) +(1,1914:6764466,20645339:25818563,513147,134348 +k1,1913:10541633,20645339:179896 +k1,1913:11912974,20645339:179896 +k1,1913:12863573,20645339:179896 +k1,1913:16216068,20645339:179897 +k1,1913:17726345,20645339:179896 +k1,1913:20714459,20645339:179896 +k1,1913:23710437,20645339:179896 +k1,1913:24994615,20645339:179896 +k1,1913:25922277,20645339:179896 +k1,1913:27789071,20645339:179897 +k1,1913:28916618,20645339:179896 +k1,1913:31931601,20645339:179896 +k1,1913:32583029,20645339:0 +) +(1,1914:6764466,21510419:25818563,660930,97977 +g1,1913:9632976,21510419 +g1,1913:10851290,21510419 +g1,1913:12893391,21510419 +g1,1913:13751912,21510419 +$1,1913:13751912,21510419 +(1,1913:13751912,21510419:1562378,660930,97977 +[1,1913:13751912,20901917:595722,26214,706479 +] +[1,1913:14347634,21510419:966656,660930,0 +(1,1913:14347634,21510419:966656,477757,0 +) +] +) +g1,1913:15496350,21510419 +g1,1913:16246607,21510419 +$1,1913:16931458,21510419 +k1,1914:32583029,21510419:15477901 +g1,1914:32583029,21510419 +) +v1,1916:6764466,22195274:0,393216,0 +(1,1937:6764466,27952272:25818563,6150214,196608 +g1,1937:6764466,27952272 +g1,1937:6764466,27952272 +g1,1937:6567858,27952272 +(1,1937:6567858,27952272:0,6150214,196608 +r1,2000:32779637,27952272:26211779,6346822,196608 +k1,1937:6567857,27952272:-26211780 +) +(1,1937:6567858,27952272:26211779,6150214,196608 +[1,1937:6764466,27952272:25818563,5953606,0 +(1,1918:6764466,22423105:25818563,424439,112852 +(1,1917:6764466,22423105:0,0,0 +g1,1917:6764466,22423105 +g1,1917:6764466,22423105 +g1,1917:6436786,22423105 +(1,1917:6436786,22423105:0,0,0 +) +g1,1917:6764466,22423105 +) +g1,1918:8424236,22423105 +g1,1918:9420098,22423105 +g1,1918:13735500,22423105 +g1,1918:14399408,22423105 +g1,1918:16391132,22423105 +g1,1918:17718948,22423105 +g1,1918:21038487,22423105 +g1,1918:21702395,22423105 +g1,1918:23362165,22423105 +h1,1918:24358027,22423105:0,0,0 +k1,1918:32583029,22423105:8225002 +g1,1918:32583029,22423105 +) +(1,1919:6764466,23107960:25818563,407923,106246 +h1,1919:6764466,23107960:0,0,0 +h1,1919:8092282,23107960:0,0,0 +k1,1919:32583030,23107960:24490748 +g1,1919:32583030,23107960 +) +(1,1923:6764466,23923887:25818563,424439,79822 +(1,1921:6764466,23923887:0,0,0 +g1,1921:6764466,23923887 +g1,1921:6764466,23923887 +g1,1921:6436786,23923887 +(1,1921:6436786,23923887:0,0,0 +) +g1,1921:6764466,23923887 +) +g1,1923:7760328,23923887 +g1,1923:9088144,23923887 +g1,1923:11079868,23923887 +g1,1923:11411822,23923887 +h1,1923:12739638,23923887:0,0,0 +k1,1923:32583030,23923887:19843392 +g1,1923:32583030,23923887 +) +(1,1925:6764466,24739814:25818563,424439,106246 +(1,1924:6764466,24739814:0,0,0 +g1,1924:6764466,24739814 +g1,1924:6764466,24739814 +g1,1924:6436786,24739814 +(1,1924:6436786,24739814:0,0,0 +) +g1,1924:6764466,24739814 +) +g1,1925:8424236,24739814 +g1,1925:9420098,24739814 +k1,1925:9420098,24739814:0 +h1,1925:12739638,24739814:0,0,0 +k1,1925:32583030,24739814:19843392 +g1,1925:32583030,24739814 +) +(1,1926:6764466,25424669:25818563,407923,106246 +h1,1926:6764466,25424669:0,0,0 +h1,1926:8092282,25424669:0,0,0 +k1,1926:32583030,25424669:24490748 +g1,1926:32583030,25424669 +) +(1,1930:6764466,26240596:25818563,424439,79822 +(1,1928:6764466,26240596:0,0,0 +g1,1928:6764466,26240596 +g1,1928:6764466,26240596 +g1,1928:6436786,26240596 +(1,1928:6436786,26240596:0,0,0 +) +g1,1928:6764466,26240596 +) +g1,1930:7760328,26240596 +g1,1930:9088144,26240596 +g1,1930:10747914,26240596 +h1,1930:12075730,26240596:0,0,0 +k1,1930:32583030,26240596:20507300 +g1,1930:32583030,26240596 +) +(1,1932:6764466,27056523:25818563,407923,106246 +(1,1931:6764466,27056523:0,0,0 +g1,1931:6764466,27056523 +g1,1931:6764466,27056523 +g1,1931:6436786,27056523 +(1,1931:6436786,27056523:0,0,0 +) +g1,1931:6764466,27056523 +) +h1,1932:8756190,27056523:0,0,0 +k1,1932:32583030,27056523:23826840 +g1,1932:32583030,27056523 +) +(1,1936:6764466,27872450:25818563,424439,79822 +(1,1934:6764466,27872450:0,0,0 +g1,1934:6764466,27872450 +g1,1934:6764466,27872450 +g1,1934:6436786,27872450 +(1,1934:6436786,27872450:0,0,0 +) +g1,1934:6764466,27872450 +) +g1,1936:7760328,27872450 +g1,1936:9088144,27872450 +g1,1936:11079868,27872450 +g1,1936:11411822,27872450 +h1,1936:12739638,27872450:0,0,0 +k1,1936:32583030,27872450:19843392 +g1,1936:32583030,27872450 +) +] +) +g1,1937:32583029,27952272 +g1,1937:6764466,27952272 +g1,1937:6764466,27952272 +g1,1937:32583029,27952272 +g1,1937:32583029,27952272 +) +h1,1937:6764466,28148880:0,0,0 +] +g1,1940:32583029,28148880 +) +h1,1940:6630773,28148880:0,0,0 +(1,1945:6630773,29013960:25952256,513147,134348 +h1,1944:6630773,29013960:983040,0,0 +k1,1944:8300029,29013960:216323 +k1,1944:9047850,29013960:216324 +k1,1944:11894133,29013960:216323 +k1,1944:12761884,29013960:216323 +k1,1944:15316532,29013960:216323 +k1,1944:17691612,29013960:216324 +k1,1944:20197763,29013960:216323 +k1,1944:21304065,29013960:216323 +k1,1944:24569123,29013960:216323 +k1,1944:26353068,29013960:216324 +k1,1944:27588476,29013960:216323 +k1,1944:31189078,29013960:216323 +k1,1945:32583029,29013960:0 +) +(1,1945:6630773,29879040:25952256,513147,134348 +(1,1944:6630773,29879040:0,452978,115847 +r1,2000:9451022,29879040:2820249,568825,115847 +k1,1944:6630773,29879040:-2820249 +) +(1,1944:6630773,29879040:2820249,452978,115847 +k1,1944:6630773,29879040:3277 +h1,1944:9447745,29879040:0,411205,112570 +) +k1,1944:9828810,29879040:204118 +k1,1944:12822795,29879040:204117 +(1,1944:12822795,29879040:0,452978,122846 +r1,2000:15994755,29879040:3171960,575824,122846 +k1,1944:12822795,29879040:-3171960 +) +(1,1944:12822795,29879040:3171960,452978,122846 +k1,1944:12822795,29879040:3277 +h1,1944:15991478,29879040:0,411205,112570 +) +k1,1944:16198873,29879040:204118 +k1,1944:18743936,29879040:204117 +k1,1944:19303914,29879040:204118 +(1,1944:19303914,29879040:0,452978,115847 +r1,2000:22475874,29879040:3171960,568825,115847 +k1,1944:19303914,29879040:-3171960 +) +(1,1944:19303914,29879040:3171960,452978,115847 +k1,1944:19303914,29879040:3277 +h1,1944:22472597,29879040:0,411205,112570 +) +k1,1944:22679992,29879040:204118 +k1,1944:24861986,29879040:204117 +k1,1944:28428101,29879040:204118 +k1,1944:29651303,29879040:204117 +k1,1944:31923737,29879040:204118 +k1,1944:32583029,29879040:0 +) +(1,1945:6630773,30744120:25952256,505283,134348 +k1,1944:7562330,30744120:165441 +k1,1944:10017599,30744120:165441 +k1,1944:12225797,30744120:165441 +k1,1944:13007275,30744120:165440 +k1,1944:14191801,30744120:165441 +k1,1944:16701465,30744120:165441 +k1,1944:21097910,30744120:165441 +k1,1944:21946236,30744120:165441 +k1,1944:22873204,30744120:165440 +k1,1944:26181752,30744120:165441 +k1,1944:26703053,30744120:165441 +(1,1944:26703053,30744120:0,414482,115847 +r1,2000:29171590,30744120:2468537,530329,115847 +k1,1944:26703053,30744120:-2468537 +) +(1,1944:26703053,30744120:2468537,414482,115847 +k1,1944:26703053,30744120:3277 +h1,1944:29168313,30744120:0,411205,112570 +) +k1,1944:29337031,30744120:165441 +k1,1944:32583029,30744120:0 +) +(1,1945:6630773,31609200:25952256,505283,134348 +g1,1944:8205603,31609200 +g1,1944:9423917,31609200 +g1,1944:11912974,31609200 +g1,1944:13506154,31609200 +g1,1944:15773699,31609200 +g1,1944:18944330,31609200 +g1,1944:20162644,31609200 +(1,1944:20162644,31609200:0,414482,115847 +r1,2000:22631181,31609200:2468537,530329,115847 +k1,1944:20162644,31609200:-2468537 +) +(1,1944:20162644,31609200:2468537,414482,115847 +k1,1944:20162644,31609200:3277 +h1,1944:22627904,31609200:0,411205,112570 +) +k1,1945:32583029,31609200:9778178 +g1,1945:32583029,31609200 +) +v1,1947:6630773,32294055:0,393216,0 +(1,1968:6630773,38051053:25952256,6150214,196608 +g1,1968:6630773,38051053 +g1,1968:6630773,38051053 +g1,1968:6434165,38051053 +(1,1968:6434165,38051053:0,6150214,196608 +r1,2000:32779637,38051053:26345472,6346822,196608 +k1,1968:6434165,38051053:-26345472 +) +(1,1968:6434165,38051053:26345472,6150214,196608 +[1,1968:6630773,38051053:25952256,5953606,0 +(1,1949:6630773,32521886:25952256,424439,112852 +(1,1948:6630773,32521886:0,0,0 +g1,1948:6630773,32521886 +g1,1948:6630773,32521886 +g1,1948:6303093,32521886 +(1,1948:6303093,32521886:0,0,0 +) +g1,1948:6630773,32521886 +) +g1,1949:10282266,32521886 +g1,1949:11278128,32521886 +h1,1949:12273990,32521886:0,0,0 +k1,1949:32583030,32521886:20309040 +g1,1949:32583030,32521886 +) +(1,1950:6630773,33206741:25952256,424439,112852 +h1,1950:6630773,33206741:0,0,0 +g1,1950:11942037,33206741 +g1,1950:12605945,33206741 +h1,1950:16257438,33206741:0,0,0 +k1,1950:32583029,33206741:16325591 +g1,1950:32583029,33206741 +) +(1,1954:6630773,34022668:25952256,424439,112852 +(1,1952:6630773,34022668:0,0,0 +g1,1952:6630773,34022668 +g1,1952:6630773,34022668 +g1,1952:6303093,34022668 +(1,1952:6303093,34022668:0,0,0 +) +g1,1952:6630773,34022668 +) +g1,1954:7626635,34022668 +g1,1954:8954451,34022668 +h1,1954:12937898,34022668:0,0,0 +k1,1954:32583030,34022668:19645132 +g1,1954:32583030,34022668 +) +(1,1956:6630773,34838595:25952256,424439,112852 +(1,1955:6630773,34838595:0,0,0 +g1,1955:6630773,34838595 +g1,1955:6630773,34838595 +g1,1955:6303093,34838595 +(1,1955:6303093,34838595:0,0,0 +) +g1,1955:6630773,34838595 +) +h1,1956:9950312,34838595:0,0,0 +k1,1956:32583028,34838595:22632716 +g1,1956:32583028,34838595 +) +(1,1960:6630773,35654522:25952256,424439,79822 +(1,1958:6630773,35654522:0,0,0 +g1,1958:6630773,35654522 +g1,1958:6630773,35654522 +g1,1958:6303093,35654522 +(1,1958:6303093,35654522:0,0,0 +) +g1,1958:6630773,35654522 +) +g1,1960:7626635,35654522 +g1,1960:8954451,35654522 +g1,1960:9618359,35654522 +g1,1960:10282267,35654522 +g1,1960:10946175,35654522 +h1,1960:11278129,35654522:0,0,0 +k1,1960:32583029,35654522:21304900 +g1,1960:32583029,35654522 +) +(1,1962:6630773,36470449:25952256,424439,112852 +(1,1961:6630773,36470449:0,0,0 +g1,1961:6630773,36470449 +g1,1961:6630773,36470449 +g1,1961:6303093,36470449 +(1,1961:6303093,36470449:0,0,0 +) +g1,1961:6630773,36470449 +) +k1,1962:6630773,36470449:0 +h1,1962:12605944,36470449:0,0,0 +k1,1962:32583028,36470449:19977084 +g1,1962:32583028,36470449 +) +(1,1963:6630773,37155304:25952256,424439,112852 +h1,1963:6630773,37155304:0,0,0 +g1,1963:11942037,37155304 +g1,1963:12605945,37155304 +h1,1963:16257438,37155304:0,0,0 +k1,1963:32583029,37155304:16325591 +g1,1963:32583029,37155304 +) +(1,1967:6630773,37971231:25952256,424439,79822 +(1,1965:6630773,37971231:0,0,0 +g1,1965:6630773,37971231 +g1,1965:6630773,37971231 +g1,1965:6303093,37971231 +(1,1965:6303093,37971231:0,0,0 +) +g1,1965:6630773,37971231 +) +g1,1967:7626635,37971231 +h1,1967:11610082,37971231:0,0,0 +k1,1967:32583030,37971231:20972948 +g1,1967:32583030,37971231 +) +] +) +g1,1968:32583029,38051053 +g1,1968:6630773,38051053 +g1,1968:6630773,38051053 +g1,1968:32583029,38051053 +g1,1968:32583029,38051053 +) +h1,1968:6630773,38247661:0,0,0 +(1,1972:6630773,39112741:25952256,513147,134348 +h1,1971:6630773,39112741:983040,0,0 +k1,1971:8475845,39112741:234197 +k1,1971:11134220,39112741:234198 +k1,1971:12134533,39112741:234197 +k1,1971:14658559,39112741:234198 +k1,1971:15884316,39112741:234197 +k1,1971:17880122,39112741:234198 +k1,1971:18730357,39112741:234197 +k1,1971:19983639,39112741:234197 +k1,1971:24298764,39112741:234198 +k1,1971:25546148,39112741:234197 +k1,1971:26971791,39112741:234198 +k1,1971:28225073,39112741:234197 +k1,1971:30529553,39112741:234198 +k1,1971:31923737,39112741:234197 +k1,1971:32583029,39112741:0 +) +(1,1972:6630773,39977821:25952256,513147,134348 +g1,1971:8033243,39977821 +g1,1971:9245659,39977821 +g1,1971:10549170,39977821 +g1,1971:11496165,39977821 +g1,1971:13208620,39977821 +g1,1971:14059277,39977821 +g1,1971:15524662,39977821 +g1,1971:16079751,39977821 +g1,1971:17973741,39977821 +k1,1972:32583029,39977821:12476091 +g1,1972:32583029,39977821 +) +v1,1974:6630773,40842901:0,393216,0 +(1,2000:6630773,45610947:25952256,5161262,0 +g1,2000:6630773,45610947 +g1,2000:6237557,45610947 +r1,2000:6368629,45610947:131072,5161262,0 +g1,2000:6567858,45610947 +g1,2000:6764466,45610947 +[1,2000:6764466,45610947:25818563,5161262,0 +(1,1975:6764466,41151199:25818563,701514,196608 +(1,1974:6764466,41151199:0,701514,196608 +r1,2000:8010564,41151199:1246098,898122,196608 +k1,1974:6764466,41151199:-1246098 +) +(1,1974:6764466,41151199:1246098,701514,196608 +) +k1,1974:8561379,41151199:550815 +k1,1974:8889059,41151199:327680 +k1,1974:12229742,41151199:550815 +(1,1974:12229742,41151199:0,452978,115847 +r1,2000:15049991,41151199:2820249,568825,115847 +k1,1974:12229742,41151199:-2820249 +) +(1,1974:12229742,41151199:2820249,452978,115847 +k1,1974:12229742,41151199:3277 +h1,1974:15046714,41151199:0,411205,112570 +) +k1,1974:15600806,41151199:550815 +k1,1974:18529923,41151199:550815 +k1,1974:20547434,41151199:550815 +k1,1974:22490234,41151199:550815 +k1,1974:25109364,41151199:550814 +k1,1974:26319471,41151199:550815 +k1,1974:29160114,41151199:550815 +k1,1974:30397091,41151199:550815 +k1,1974:31563944,41151199:550815 +k1,1974:32583029,41151199:0 +) +(1,1975:6764466,42016279:25818563,505283,134348 +k1,1974:9171930,42016279:436796 +k1,1974:11464049,42016279:436795 +k1,1974:13092290,42016279:436796 +(1,1974:13092290,42016279:0,452978,115847 +r1,2000:16264250,42016279:3171960,568825,115847 +k1,1974:13092290,42016279:-3171960 +) +(1,1974:13092290,42016279:3171960,452978,115847 +k1,1974:13092290,42016279:3277 +h1,1974:16260973,42016279:0,411205,112570 +) +k1,1974:16701046,42016279:436796 +k1,1974:19333953,42016279:436796 +k1,1974:24394313,42016279:436795 +k1,1974:25482537,42016279:436796 +k1,1974:27878859,42016279:436796 +k1,1974:30383970,42016279:436795 +k1,1974:31966991,42016279:436796 +k1,1975:32583029,42016279:0 +) +(1,1975:6764466,42881359:25818563,505283,126483 +(1,1974:6764466,42881359:0,452978,122846 +r1,2000:13805257,42881359:7040791,575824,122846 +k1,1974:6764466,42881359:-7040791 +) +(1,1974:6764466,42881359:7040791,452978,122846 +k1,1974:6764466,42881359:3277 +h1,1974:13801980,42881359:0,411205,112570 +) +k1,1974:14210808,42881359:231881 +k1,1974:17377391,42881359:231881 +k1,1974:19383987,42881359:231881 +(1,1974:19383987,42881359:0,452978,122846 +r1,2000:22555947,42881359:3171960,575824,122846 +k1,1974:19383987,42881359:-3171960 +) +(1,1974:19383987,42881359:3171960,452978,122846 +k1,1974:19383987,42881359:3277 +h1,1974:22552670,42881359:0,411205,112570 +) +k1,1974:22787829,42881359:231882 +k1,1974:25067710,42881359:231881 +k1,1974:27970838,42881359:231881 +k1,1974:28854147,42881359:231881 +k1,1974:29833794,42881359:231881 +k1,1974:32583029,42881359:0 +) +(1,1975:6764466,43746439:25818563,513147,134348 +k1,1974:7633304,43746439:217410 +k1,1974:9810241,43746439:217411 +k1,1974:12269638,43746439:217410 +(1,1974:12269638,43746439:0,452978,115847 +r1,2000:15089887,43746439:2820249,568825,115847 +k1,1974:12269638,43746439:-2820249 +) +(1,1974:12269638,43746439:2820249,452978,115847 +k1,1974:12269638,43746439:3277 +h1,1974:15086610,43746439:0,411205,112570 +) +k1,1974:15307297,43746439:217410 +k1,1974:17017618,43746439:217411 +k1,1974:18474969,43746439:217410 +k1,1974:21220758,43746439:217410 +k1,1974:22097460,43746439:217410 +k1,1974:23691782,43746439:217411 +k1,1974:25605919,43746439:217410 +k1,1974:26995768,43746439:217410 +k1,1974:30238976,43746439:217411 +k1,1974:31931601,43746439:217410 +k1,1974:32583029,43746439:0 +) +(1,1975:6764466,44611519:25818563,513147,134348 +k1,1974:7749220,44611519:236988 +k1,1974:9499434,44611519:236988 +k1,1974:12416846,44611519:236989 +k1,1974:13601485,44611519:236988 +k1,1974:16836090,44611519:236988 +k1,1974:17839194,44611519:236988 +k1,1974:20366011,44611519:236989 +k1,1974:21996950,44611519:236988 +k1,1974:24302254,44611519:236988 +k1,1974:25823748,44611519:236988 +k1,1974:28041890,44611519:236989 +k1,1974:28634738,44611519:236988 +k1,1974:31386342,44611519:236988 +k1,1974:32583029,44611519:0 +) +(1,1975:6764466,45476599:25818563,505283,134348 +g1,1974:9304641,45476599 +g1,1974:10608152,45476599 +g1,1974:11555147,45476599 +g1,1974:13449137,45476599 +g1,1974:14334528,45476599 +g1,1974:14889617,45476599 +g1,1974:17362945,45476599 +g1,1974:21002159,45476599 +g1,1974:22433465,45476599 +g1,1974:24911381,45476599 +h1,1974:25881969,45476599:0,0,0 +g1,1974:26081198,45476599 +g1,1974:27089797,45476599 +g1,1974:28787179,45476599 +h1,1974:29584097,45476599:0,0,0 +k1,1975:32583029,45476599:2618168 +g1,1975:32583029,45476599 +) +] +g1,2000:32583029,45610947 +) +] +(1,2000:32583029,45706769:0,0,0 +g1,2000:32583029,45706769 +) +) +] +(1,2000:6630773,47279633:25952256,0,0 +h1,2000:6630773,47279633:25952256,0,0 +) +] +(1,2000:4262630,4025873:0,0,0 +[1,2000:-473656,4025873:0,0,0 +(1,2000:-473656,-710413:0,0,0 +(1,2000:-473656,-710413:0,0,0 +g1,2000:-473656,-710413 +) +g1,2000:-473656,-710413 +) +] +) +] +!30070 +}53 Input:443:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:444:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:445:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:446:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:447:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:448:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1220 -{55 -[1,2024:4262630,47279633:28320399,43253760,0 -(1,2024:4262630,4025873:0,0,0 -[1,2024:-473656,4025873:0,0,0 -(1,2024:-473656,-710413:0,0,0 -(1,2024:-473656,-644877:0,0,0 -k1,2024:-473656,-644877:-65536 +Input:449:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:450:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:451:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!848 +{54 +[1,2042:4262630,47279633:28320399,43253760,0 +(1,2042:4262630,4025873:0,0,0 +[1,2042:-473656,4025873:0,0,0 +(1,2042:-473656,-710413:0,0,0 +(1,2042:-473656,-644877:0,0,0 +k1,2042:-473656,-644877:-65536 ) -(1,2024:-473656,4736287:0,0,0 -k1,2024:-473656,4736287:5209943 +(1,2042:-473656,4736287:0,0,0 +k1,2042:-473656,4736287:5209943 ) -g1,2024:-473656,-710413 +g1,2042:-473656,-710413 ) ] ) -[1,2024:6630773,47279633:25952256,43253760,0 -[1,2024:6630773,4812305:25952256,786432,0 -(1,2024:6630773,4812305:25952256,505283,11795 -(1,2024:6630773,4812305:25952256,505283,11795 -g1,2024:3078558,4812305 -[1,2024:3078558,4812305:0,0,0 -(1,2024:3078558,2439708:0,1703936,0 -k1,2024:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,2024:2537886,2439708:1179648,16384,0 +[1,2042:6630773,47279633:25952256,43253760,0 +[1,2042:6630773,4812305:25952256,786432,0 +(1,2042:6630773,4812305:25952256,505283,11795 +(1,2042:6630773,4812305:25952256,505283,11795 +g1,2042:3078558,4812305 +[1,2042:3078558,4812305:0,0,0 +(1,2042:3078558,2439708:0,1703936,0 +k1,2042:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,2042:2537886,2439708:1179648,16384,0 ) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,2024:3078558,1915420:16384,1179648,0 +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,2042:3078558,1915420:16384,1179648,0 ) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) ] ) ) ) ] -[1,2024:3078558,4812305:0,0,0 -(1,2024:3078558,2439708:0,1703936,0 -g1,2024:29030814,2439708 -g1,2024:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,2024:36151628,1915420:16384,1179648,0 +[1,2042:3078558,4812305:0,0,0 +(1,2042:3078558,2439708:0,1703936,0 +g1,2042:29030814,2439708 +g1,2042:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,2042:36151628,1915420:16384,1179648,0 ) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) ] ) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,2024:37855564,2439708:1179648,16384,0 +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,2042:37855564,2439708:1179648,16384,0 ) ) -k1,2024:3078556,2439708:-34777008 +k1,2042:3078556,2439708:-34777008 ) ] -[1,2024:3078558,4812305:0,0,0 -(1,2024:3078558,49800853:0,16384,2228224 -k1,2024:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,2024:2537886,49800853:1179648,16384,0 +[1,2042:3078558,4812305:0,0,0 +(1,2042:3078558,49800853:0,16384,2228224 +k1,2042:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,2042:2537886,49800853:1179648,16384,0 ) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,2024:3078558,51504789:16384,1179648,0 +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,2042:3078558,51504789:16384,1179648,0 ) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) ] ) ) ) ] -[1,2024:3078558,4812305:0,0,0 -(1,2024:3078558,49800853:0,16384,2228224 -g1,2024:29030814,49800853 -g1,2024:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,2024:36151628,51504789:16384,1179648,0 +[1,2042:3078558,4812305:0,0,0 +(1,2042:3078558,49800853:0,16384,2228224 +g1,2042:29030814,49800853 +g1,2042:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,2042:36151628,51504789:16384,1179648,0 ) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 ) ] ) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,2024:37855564,49800853:1179648,16384,0 -) +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,2042:37855564,49800853:1179648,16384,0 ) -k1,2024:3078556,49800853:-34777008 -) -] -g1,2024:6630773,4812305 -k1,2024:22348274,4812305:14920583 -g1,2024:23970945,4812305 -g1,2024:24793421,4812305 -g1,2024:27528893,4812305 -g1,2024:28938572,4812305 ) +k1,2042:3078556,49800853:-34777008 ) ] -[1,2024:6630773,45706769:25952256,40108032,0 -(1,2024:6630773,45706769:25952256,40108032,0 -(1,2024:6630773,45706769:0,0,0 -g1,2024:6630773,45706769 +g1,2042:6630773,4812305 +g1,2042:6630773,4812305 +g1,2042:10015707,4812305 +g1,2042:12209197,4812305 +k1,2042:31786111,4812305:19576914 +) +) +] +[1,2042:6630773,45706769:25952256,40108032,0 +(1,2042:6630773,45706769:25952256,40108032,0 +(1,2042:6630773,45706769:0,0,0 +g1,2042:6630773,45706769 +) +[1,2042:6630773,45706769:25952256,40108032,0 +v1,2000:6630773,6254097:0,393216,0 +(1,2000:6630773,18252017:25952256,12391136,0 +g1,2000:6630773,18252017 +g1,2000:6237557,18252017 +r1,2042:6368629,18252017:131072,12391136,0 +g1,2000:6567858,18252017 +g1,2000:6764466,18252017 +[1,2000:6764466,18252017:25818563,12391136,0 +(1,1977:6764466,6374028:25818563,513147,134348 +h1,1976:6764466,6374028:983040,0,0 +k1,1976:9450131,6374028:237240 +k1,1976:12713169,6374028:237241 +k1,1976:14425624,6374028:237240 +k1,1976:15654425,6374028:237241 +k1,1976:18675634,6374028:237240 +k1,1976:20799001,6374028:237241 +k1,1976:22721172,6374028:237240 +k1,1976:25026729,6374028:237241 +k1,1976:28235371,6374028:237240 +k1,1976:30216525,6374028:237241 +k1,1976:31966991,6374028:237240 +k1,1977:32583029,6374028:0 +) +(1,1977:6764466,7239108:25818563,513147,134348 +k1,1976:8772986,7239108:255432 +k1,1976:10219863,7239108:255432 +k1,1976:11926917,7239108:255432 +k1,1976:13130000,7239108:255432 +k1,1976:16496426,7239108:255432 +k1,1976:18238870,7239108:255432 +(1,1976:18238870,7239108:0,452978,115847 +r1,2042:19652271,7239108:1413401,568825,115847 +k1,1976:18238870,7239108:-1413401 +) +(1,1976:18238870,7239108:1413401,452978,115847 +k1,1976:18238870,7239108:3277 +h1,1976:19648994,7239108:0,411205,112570 +) +k1,1976:19907703,7239108:255432 +k1,1976:20694632,7239108:255432 +k1,1976:21305924,7239108:255432 +k1,1976:24458047,7239108:255432 +k1,1976:25380635,7239108:255432 +(1,1976:25380635,7239108:0,452978,122846 +r1,2042:28552595,7239108:3171960,575824,122846 +k1,1976:25380635,7239108:-3171960 +) +(1,1976:25380635,7239108:3171960,452978,122846 +k1,1976:25380635,7239108:3277 +h1,1976:28549318,7239108:0,411205,112570 +) +k1,1976:28808027,7239108:255432 +k1,1976:30254904,7239108:255432 +(1,1976:30254904,7239108:0,452978,115847 +r1,2042:31668305,7239108:1413401,568825,115847 +k1,1976:30254904,7239108:-1413401 +) +(1,1976:30254904,7239108:1413401,452978,115847 +k1,1976:30254904,7239108:3277 +h1,1976:31665028,7239108:0,411205,112570 +) +k1,1976:31923737,7239108:255432 +k1,1977:32583029,7239108:0 +) +(1,1977:6764466,8104188:25818563,452978,115847 +(1,1976:6764466,8104188:0,452978,115847 +r1,2042:9584715,8104188:2820249,568825,115847 +k1,1976:6764466,8104188:-2820249 +) +(1,1976:6764466,8104188:2820249,452978,115847 +k1,1976:6764466,8104188:3277 +h1,1976:9581438,8104188:0,411205,112570 +) +k1,1977:32583029,8104188:22824644 +g1,1977:32583029,8104188 +) +(1,1979:6764466,8969268:25818563,513147,134348 +h1,1978:6764466,8969268:983040,0,0 +k1,1978:9752705,8969268:213445 +k1,1978:10322010,8969268:213445 +k1,1978:12660132,8969268:213445 +k1,1978:15214522,8969268:213444 +k1,1978:16296319,8969268:213445 +k1,1978:18533516,8969268:213445 +k1,1978:19766046,8969268:213445 +k1,1978:22047807,8969268:213445 +k1,1978:22920544,8969268:213445 +k1,1978:23900104,8969268:213444 +k1,1978:26403377,8969268:213445 +k1,1978:28010773,8969268:213445 +k1,1978:30292534,8969268:213445 +(1,1978:30292534,8969268:0,452978,115847 +r1,2042:32409359,8969268:2116825,568825,115847 +k1,1978:30292534,8969268:-2116825 +) +(1,1978:30292534,8969268:2116825,452978,115847 +k1,1978:30292534,8969268:3277 +h1,1978:32406082,8969268:0,411205,112570 +) +k1,1979:32583029,8969268:0 +) +(1,1979:6764466,9834348:25818563,513147,134348 +(1,1978:6764466,9834348:0,452978,115847 +r1,2042:8881291,9834348:2116825,568825,115847 +k1,1978:6764466,9834348:-2116825 +) +(1,1978:6764466,9834348:2116825,452978,115847 +k1,1978:6764466,9834348:3277 +h1,1978:8878014,9834348:0,411205,112570 +) +k1,1978:9262464,9834348:207503 +k1,1978:10661411,9834348:207502 +k1,1978:11593742,9834348:207503 +k1,1978:12784284,9834348:207502 +k1,1978:14775022,9834348:207503 +k1,1978:16717917,9834348:207502 +k1,1978:17281280,9834348:207503 +k1,1978:19829729,9834348:207503 +k1,1978:20688659,9834348:207502 +k1,1978:23250871,9834348:207503 +k1,1978:25921871,9834348:207502 +k1,1978:26587471,9834348:207503 +k1,1978:27326470,9834348:207502 +k1,1978:29117978,9834348:207503 +k1,1978:29976908,9834348:207502 +k1,1978:31490544,9834348:207503 +k1,1979:32583029,9834348:0 +) +(1,1979:6764466,10699428:25818563,513147,134348 +(1,1978:6764466,10699428:0,452978,122846 +r1,2042:9936426,10699428:3171960,575824,122846 +k1,1978:6764466,10699428:-3171960 +) +(1,1978:6764466,10699428:3171960,452978,122846 +k1,1978:6764466,10699428:3277 +h1,1978:9933149,10699428:0,411205,112570 +) +k1,1978:10160517,10699428:224091 +k1,1978:11193978,10699428:224091 +k1,1978:12206467,10699428:224091 +k1,1978:13760939,10699428:224091 +k1,1978:14636458,10699428:224091 +k1,1978:15839002,10699428:224091 +k1,1978:16418953,10699428:224091 +k1,1978:17636570,10699428:224091 +k1,1978:18519952,10699428:224090 +k1,1978:19763128,10699428:224091 +k1,1978:22277047,10699428:224091 +k1,1978:23785644,10699428:224091 +k1,1978:25965985,10699428:224091 +k1,1978:26937842,10699428:224091 +k1,1978:29507467,10699428:224091 +k1,1978:30493086,10699428:224091 +k1,1979:32583029,10699428:0 +) +(1,1979:6764466,11564508:25818563,513147,134348 +(1,1978:6764466,11564508:0,452978,115847 +r1,2042:9584715,11564508:2820249,568825,115847 +k1,1978:6764466,11564508:-2820249 +) +(1,1978:6764466,11564508:2820249,452978,115847 +k1,1978:6764466,11564508:3277 +h1,1978:9581438,11564508:0,411205,112570 +) +k1,1978:9863152,11564508:278437 +k1,1978:12569043,11564508:278437 +k1,1978:13866565,11564508:278437 +k1,1978:16213318,11564508:278437 +k1,1978:19270483,11564508:278438 +k1,1978:20310448,11564508:278437 +(1,1978:20310448,11564508:0,452978,122846 +r1,2042:23482408,11564508:3171960,575824,122846 +k1,1978:20310448,11564508:-3171960 +) +(1,1978:20310448,11564508:3171960,452978,122846 +k1,1978:20310448,11564508:3277 +h1,1978:23479131,11564508:0,411205,112570 +) +k1,1978:23760845,11564508:278437 +k1,1978:24725444,11564508:278437 +k1,1978:28076209,11564508:278437 +k1,1978:29302297,11564508:278437 +k1,1979:32583029,11564508:0 +) +(1,1979:6764466,12429588:25818563,452978,115847 +(1,1978:6764466,12429588:0,452978,115847 +r1,2042:8177867,12429588:1413401,568825,115847 +k1,1978:6764466,12429588:-1413401 +) +(1,1978:6764466,12429588:1413401,452978,115847 +k1,1978:6764466,12429588:3277 +h1,1978:8174590,12429588:0,411205,112570 +) +k1,1979:32583029,12429588:24231492 +g1,1979:32583029,12429588 +) +v1,1981:6764466,13114443:0,393216,0 +(1,1988:6764466,14238023:25818563,1516796,196608 +g1,1988:6764466,14238023 +g1,1988:6764466,14238023 +g1,1988:6567858,14238023 +(1,1988:6567858,14238023:0,1516796,196608 +r1,2042:32779637,14238023:26211779,1713404,196608 +k1,1988:6567857,14238023:-26211780 +) +(1,1988:6567858,14238023:26211779,1516796,196608 +[1,1988:6764466,14238023:25818563,1320188,0 +(1,1983:6764466,13342274:25818563,424439,112852 +(1,1982:6764466,13342274:0,0,0 +g1,1982:6764466,13342274 +g1,1982:6764466,13342274 +g1,1982:6436786,13342274 +(1,1982:6436786,13342274:0,0,0 +) +g1,1982:6764466,13342274 +) +k1,1983:6764466,13342274:0 +g1,1983:12075730,13342274 +g1,1983:12739638,13342274 +h1,1983:15727223,13342274:0,0,0 +k1,1983:32583029,13342274:16855806 +g1,1983:32583029,13342274 +) +(1,1987:6764466,14158201:25818563,424439,79822 +(1,1985:6764466,14158201:0,0,0 +g1,1985:6764466,14158201 +g1,1985:6764466,14158201 +g1,1985:6436786,14158201 +(1,1985:6436786,14158201:0,0,0 +) +g1,1985:6764466,14158201 +) +g1,1987:7760328,14158201 +h1,1987:11743775,14158201:0,0,0 +k1,1987:32583029,14158201:20839254 +g1,1987:32583029,14158201 +) +] +) +g1,1988:32583029,14238023 +g1,1988:6764466,14238023 +g1,1988:6764466,14238023 +g1,1988:32583029,14238023 +g1,1988:32583029,14238023 +) +h1,1988:6764466,14434631:0,0,0 +(1,1992:6764466,15299711:25818563,505283,134348 +h1,1991:6764466,15299711:983040,0,0 +k1,1991:9147050,15299711:202857 +k1,1991:10846095,15299711:202858 +k1,1991:12917383,15299711:202857 +k1,1991:15805250,15299711:202857 +k1,1991:16774224,15299711:202858 +k1,1991:19266909,15299711:202857 +k1,1991:20863717,15299711:202857 +k1,1991:23134890,15299711:202857 +(1,1991:23134890,15299711:0,452978,115847 +r1,2042:25251715,15299711:2116825,568825,115847 +k1,1991:23134890,15299711:-2116825 +) +(1,1991:23134890,15299711:2116825,452978,115847 +k1,1991:23134890,15299711:3277 +h1,1991:25248438,15299711:0,411205,112570 +) +k1,1991:25628243,15299711:202858 +(1,1991:25628243,15299711:0,452978,115847 +r1,2042:27745068,15299711:2116825,568825,115847 +k1,1991:25628243,15299711:-2116825 +) +(1,1991:25628243,15299711:2116825,452978,115847 +k1,1991:25628243,15299711:3277 +h1,1991:27741791,15299711:0,411205,112570 +) +k1,1991:28121595,15299711:202857 +k1,1991:29515897,15299711:202857 +k1,1991:30443583,15299711:202858 +k1,1991:31629480,15299711:202857 +k1,1991:32583029,15299711:0 +) +(1,1992:6764466,16164791:25818563,513147,134348 +k1,1991:7757296,16164791:177562 +k1,1991:9138098,16164791:177561 +k1,1991:9928422,16164791:177562 +k1,1991:11125068,16164791:177561 +k1,1991:12485555,16164791:177562 +k1,1991:13322408,16164791:177561 +k1,1991:14519055,16164791:177562 +k1,1991:16975303,16164791:177561 +k1,1991:19195622,16164791:177562 +k1,1991:21744277,16164791:177562 +k1,1991:22940923,16164791:177561 +k1,1991:24771958,16164791:177562 +k1,1991:27017835,16164791:177561 +k1,1991:27811435,16164791:177562 +k1,1991:29008081,16164791:177561 +k1,1991:30681830,16164791:177562 +k1,1992:32583029,16164791:0 +) +(1,1992:6764466,17029871:25818563,513147,126483 +g1,1991:8267206,17029871 +g1,1991:9125727,17029871 +g1,1991:10344041,17029871 +g1,1991:11927390,17029871 +k1,1992:32583029,17029871:18203282 +g1,1992:32583029,17029871 +) +v1,1994:6764466,17714726:0,393216,0 +(1,1998:6764466,18055409:25818563,733899,196608 +g1,1998:6764466,18055409 +g1,1998:6764466,18055409 +g1,1998:6567858,18055409 +(1,1998:6567858,18055409:0,733899,196608 +r1,2042:32779637,18055409:26211779,930507,196608 +k1,1998:6567857,18055409:-26211780 +) +(1,1998:6567858,18055409:26211779,733899,196608 +[1,1998:6764466,18055409:25818563,537291,0 +(1,1996:6764466,17942557:25818563,424439,112852 +(1,1995:6764466,17942557:0,0,0 +g1,1995:6764466,17942557 +g1,1995:6764466,17942557 +g1,1995:6436786,17942557 +(1,1995:6436786,17942557:0,0,0 +) +g1,1995:6764466,17942557 +) +k1,1996:6764466,17942557:0 +g1,1996:10747914,17942557 +g1,1996:11411822,17942557 +g1,1996:16723086,17942557 +g1,1996:17386994,17942557 +h1,1996:24026073,17942557:0,0,0 +k1,1996:32583029,17942557:8556956 +g1,1996:32583029,17942557 +) +] +) +g1,1998:32583029,18055409 +g1,1998:6764466,18055409 +g1,1998:6764466,18055409 +g1,1998:32583029,18055409 +g1,1998:32583029,18055409 +) +h1,1998:6764466,18252017:0,0,0 +] +g1,2000:32583029,18252017 +) +h1,2000:6630773,18252017:0,0,0 +v1,2003:6630773,19117097:0,393216,0 +(1,2004:6630773,27398342:25952256,8674461,0 +g1,2004:6630773,27398342 +g1,2004:6237557,27398342 +r1,2042:6368629,27398342:131072,8674461,0 +g1,2004:6567858,27398342 +g1,2004:6764466,27398342 +[1,2004:6764466,27398342:25818563,8674461,0 +(1,2004:6764466,19478274:25818563,754393,260573 +(1,2003:6764466,19478274:0,754393,260573 +r1,2042:8010564,19478274:1246098,1014966,260573 +k1,2003:6764466,19478274:-1246098 +) +(1,2003:6764466,19478274:1246098,754393,260573 +) +k1,2003:8263211,19478274:252647 +k1,2003:8590891,19478274:327680 +k1,2003:11416480,19478274:252646 +k1,2003:12285165,19478274:252647 +k1,2003:13963219,19478274:252646 +k1,2003:15407311,19478274:252647 +k1,2003:18063163,19478274:252647 +k1,2003:18975101,19478274:252646 +k1,2003:20653156,19478274:252647 +k1,2003:21521841,19478274:252647 +k1,2003:25181048,19478274:252646 +k1,2003:26425255,19478274:252647 +k1,2003:28965108,19478274:252646 +k1,2003:31896867,19478274:252647 +k1,2003:32583029,19478274:0 +) +(1,2004:6764466,20343354:25818563,513147,122846 +k1,2003:9194456,20343354:197178 +k1,2003:11774524,20343354:197179 +k1,2003:13539323,20343354:197178 +(1,2003:13539323,20343354:0,452978,122846 +r1,2042:16007860,20343354:2468537,575824,122846 +k1,2003:13539323,20343354:-2468537 +) +(1,2003:13539323,20343354:2468537,452978,122846 +k1,2003:13539323,20343354:3277 +h1,2003:16004583,20343354:0,411205,112570 +) +k1,2003:16378708,20343354:197178 +k1,2003:17767332,20343354:197179 +k1,2003:19381398,20343354:197178 +k1,2003:23077543,20343354:197178 +k1,2003:23890759,20343354:197178 +k1,2003:24502779,20343354:197177 +k1,2003:25386119,20343354:197178 +k1,2003:27745330,20343354:197178 +k1,2003:30175321,20343354:197179 +k1,2003:31563944,20343354:197178 +k1,2003:32583029,20343354:0 +) +(1,2004:6764466,21208434:25818563,513147,134348 +k1,2003:9316617,21208434:262323 +k1,2003:12060787,21208434:262322 +k1,2003:14040153,21208434:262323 +k1,2003:14961768,21208434:262323 +k1,2003:16920818,21208434:262323 +k1,2003:20414720,21208434:262322 +k1,2003:21668603,21208434:262323 +k1,2003:26133750,21208434:262323 +k1,2003:27587518,21208434:262323 +k1,2003:31144335,21208434:262322 +k1,2003:32168186,21208434:262323 +k1,2004:32583029,21208434:0 +) +(1,2004:6764466,22073514:25818563,513147,126483 +k1,2003:9187202,22073514:189924 +(1,2003:9187202,22073514:0,452978,115847 +r1,2042:11655739,22073514:2468537,568825,115847 +k1,2003:9187202,22073514:-2468537 +) +(1,2003:9187202,22073514:2468537,452978,115847 +k1,2003:9187202,22073514:3277 +h1,2003:11652462,22073514:0,411205,112570 +) +k1,2003:11845664,22073514:189925 +k1,2003:13227033,22073514:189924 +(1,2003:13227033,22073514:0,414482,115847 +r1,2042:15695570,22073514:2468537,530329,115847 +k1,2003:13227033,22073514:-2468537 +) +(1,2003:13227033,22073514:2468537,414482,115847 +k1,2003:13227033,22073514:3277 +h1,2003:15692293,22073514:0,411205,112570 +) +k1,2003:16059165,22073514:189925 +k1,2003:17445776,22073514:189924 +k1,2003:22029890,22073514:189925 +k1,2003:24074483,22073514:189924 +k1,2003:25073777,22073514:189924 +k1,2003:27019412,22073514:189925 +k1,2003:28400781,22073514:189924 +k1,2003:30301851,22073514:189925 +k1,2003:31483335,22073514:189924 +k1,2004:32583029,22073514:0 +) +(1,2004:6764466,22938594:25818563,513147,134348 +k1,2003:8560480,22938594:154992 +k1,2003:11245163,22938594:154993 +k1,2003:12419240,22938594:154992 +k1,2003:16405468,22938594:154993 +k1,2003:19195663,22938594:154992 +k1,2003:20844877,22938594:154993 +k1,2003:22425277,22938594:154992 +k1,2003:23193032,22938594:154993 +k1,2003:23703884,22938594:154992 +k1,2003:25553638,22938594:154993 +k1,2003:28265189,22938594:154992 +k1,2003:29611627,22938594:154993 +k1,2003:32583029,22938594:0 +) +(1,2004:6764466,23803674:25818563,505283,134348 +k1,2003:8580672,23803674:213195 +k1,2003:12653938,23803674:213195 +k1,2003:14642488,23803674:213180 +k1,2003:15956688,23803674:213195 +k1,2003:18831300,23803674:213195 +k1,2003:19660533,23803674:213195 +k1,2003:21472805,23803674:213194 +k1,2003:22372162,23803674:213195 +k1,2003:23863964,23803674:213195 +k1,2003:24763321,23803674:213195 +k1,2003:26370466,23803674:213194 +k1,2003:29154638,23803674:213195 +k1,2003:29983871,23803674:213195 +k1,2003:32583029,23803674:0 +) +(1,2004:6764466,24668754:25818563,505283,134348 +k1,2003:9545732,24668754:137544 +k1,2003:12548510,24668754:137544 +k1,2003:15884210,24668754:137544 +k1,2003:17213198,24668754:137543 +k1,2003:20219907,24668754:137544 +k1,2003:22883864,24668754:137544 +k1,2003:26426003,24668754:137544 +k1,2003:28722958,24668754:137544 +k1,2003:32583029,24668754:0 +) +(1,2004:6764466,25533834:25818563,505283,134348 +k1,2003:8365868,25533834:212039 +k1,2003:9769351,25533834:212038 +k1,2003:13788376,25533834:212039 +k1,2003:16635617,25533834:212038 +k1,2003:19822335,25533834:212039 +k1,2003:22230484,25533834:212038 +k1,2003:23633968,25533834:212039 +k1,2003:25271414,25533834:212038 +k1,2003:26674898,25533834:212039 +k1,2003:28267780,25533834:212038 +k1,2003:30712631,25533834:212039 +k1,2003:32583029,25533834:0 +) +(1,2004:6764466,26398914:25818563,513147,134348 +k1,2003:8210350,26398914:254439 +k1,2003:9677861,26398914:254440 +k1,2003:11539243,26398914:254439 +k1,2003:13659492,26398914:254439 +k1,2003:15356379,26398914:254440 +k1,2003:17308856,26398914:254439 +k1,2003:19298689,26398914:254440 +k1,2003:20987056,26398914:254439 +k1,2003:21656283,26398914:254384 +k1,2003:25110190,26398914:254439 +k1,2003:26959121,26398914:254440 +k1,2003:27426497,26398914:254384 +k1,2003:30350217,26398914:254439 +k1,2003:32583029,26398914:0 +) +(1,2004:6764466,27263994:25818563,505283,134348 +g1,2003:8155140,27263994 +g1,2003:11758964,27263994 +g1,2003:14179864,27263994 +g1,2003:15030521,27263994 +g1,2003:16940895,27263994 +g1,2003:18331569,27263994 +g1,2003:20286508,27263994 +g1,2003:21101775,27263994 +g1,2003:23718627,27263994 +h1,2003:24117086,27263994:0,0,0 +g1,2003:24316315,27263994 +g1,2003:25324914,27263994 +g1,2003:27022296,27263994 +h1,2003:28217673,27263994:0,0,0 +k1,2004:32583029,27263994:4191686 +g1,2004:32583029,27263994 +) +] +g1,2004:32583029,27398342 +) +h1,2004:6630773,27398342:0,0,0 +(1,2006:6630773,30229502:25952256,32768,229376 +(1,2006:6630773,30229502:0,32768,229376 +(1,2006:6630773,30229502:5505024,32768,229376 +r1,2042:12135797,30229502:5505024,262144,229376 +) +k1,2006:6630773,30229502:-5505024 +) +(1,2006:6630773,30229502:25952256,32768,0 +r1,2042:32583029,30229502:25952256,32768,0 +) +) +(1,2006:6630773,31861354:25952256,606339,14155 +(1,2006:6630773,31861354:1974731,582746,14155 +g1,2006:6630773,31861354 +g1,2006:8605504,31861354 +) +g1,2006:12698883,31861354 +k1,2006:32583029,31861354:17306222 +g1,2006:32583029,31861354 +) +(1,2009:6630773,33119650:25952256,513147,126483 +k1,2008:7484425,33119650:225817 +k1,2008:9266722,33119650:225817 +k1,2008:10151831,33119650:225817 +k1,2008:11396733,33119650:225817 +k1,2008:12641635,33119650:225817 +k1,2008:14605467,33119650:225817 +(1,2008:14605467,33119650:0,452978,115847 +r1,2042:17777427,33119650:3171960,568825,115847 +k1,2008:14605467,33119650:-3171960 +) +(1,2008:14605467,33119650:3171960,452978,115847 +k1,2008:14605467,33119650:3277 +h1,2008:17774150,33119650:0,411205,112570 +) +k1,2008:18176914,33119650:225817 +k1,2008:20413376,33119650:225817 +k1,2008:21298485,33119650:225817 +k1,2008:22727543,33119650:225817 +k1,2008:24909610,33119650:225817 +k1,2008:26126987,33119650:225817 +k1,2008:28660982,33119650:225817 +k1,2008:29546091,33119650:225817 +k1,2008:32583029,33119650:0 +) +(1,2009:6630773,33984730:25952256,505283,134348 +k1,2008:9415528,33984730:196739 +k1,2008:12708843,33984730:196739 +k1,2008:15993639,33984730:196740 +k1,2008:17181938,33984730:196739 +k1,2008:19665228,33984730:196739 +k1,2008:20623495,33984730:196739 +k1,2008:23836201,33984730:196739 +k1,2008:27337922,33984730:196740 +k1,2008:29730772,33984730:196739 +k1,2008:30543549,33984730:196739 +k1,2009:32583029,33984730:0 +) +(1,2009:6630773,34849810:25952256,513147,126483 +k1,2008:8062461,34849810:164222 +k1,2008:10387405,34849810:164222 +k1,2008:11621175,34849810:164222 +(1,2008:11621175,34849810:0,452978,122846 +r1,2042:21475661,34849810:9854486,575824,122846 +k1,2008:11621175,34849810:-9854486 +) +(1,2008:11621175,34849810:9854486,452978,122846 +g1,2008:13734723,34849810 +g1,2008:14789859,34849810 +g1,2008:15493283,34849810 +g1,2008:19010401,34849810 +h1,2008:21472384,34849810:0,411205,112570 +) +k1,2008:21813553,34849810:164222 +k1,2008:23810162,34849810:164222 +k1,2008:24965944,34849810:164222 +k1,2008:26784950,34849810:164222 +k1,2008:28665560,34849810:164222 +k1,2008:29489074,34849810:164222 +k1,2008:32583029,34849810:0 +) +(1,2009:6630773,35714890:25952256,505283,134348 +k1,2008:8826261,35714890:208436 +k1,2008:9650735,35714890:208436 +k1,2008:10878256,35714890:208436 +k1,2008:12810935,35714890:208427 +k1,2008:15994050,35714890:208436 +k1,2008:17310700,35714890:208436 +k1,2008:19702140,35714890:208436 +k1,2008:22058846,35714890:208436 +(1,2008:22058846,35714890:0,452978,115847 +r1,2042:22417112,35714890:358266,568825,115847 +k1,2008:22058846,35714890:-358266 +) +(1,2008:22058846,35714890:358266,452978,115847 +k1,2008:22058846,35714890:3277 +h1,2008:22413835,35714890:0,411205,112570 +) +k1,2008:22799218,35714890:208436 +k1,2008:24880673,35714890:208436 +k1,2008:27237379,35714890:208436 +(1,2008:27237379,35714890:0,452978,115847 +r1,2042:27595645,35714890:358266,568825,115847 +k1,2008:27237379,35714890:-358266 +) +(1,2008:27237379,35714890:358266,452978,115847 +k1,2008:27237379,35714890:3277 +h1,2008:27592368,35714890:0,411205,112570 +) +k1,2008:27977751,35714890:208436 +k1,2008:29377632,35714890:208436 +k1,2008:31068492,35714890:208436 +k1,2009:32583029,35714890:0 +) +(1,2009:6630773,36579970:25952256,513147,126483 +(1,2008:6630773,36579970:0,459977,115847 +r1,2042:6989039,36579970:358266,575824,115847 +k1,2008:6630773,36579970:-358266 +) +(1,2008:6630773,36579970:358266,459977,115847 +k1,2008:6630773,36579970:3277 +h1,2008:6985762,36579970:0,411205,112570 +) +g1,2008:7361938,36579970 +g1,2008:8757854,36579970 +g1,2008:10263216,36579970 +g1,2008:11634884,36579970 +g1,2008:13550501,36579970 +g1,2008:14409022,36579970 +g1,2008:16756521,36579970 +g1,2008:18060032,36579970 +g1,2008:19007027,36579970 +g1,2008:20719482,36579970 +g1,2008:21604873,36579970 +g1,2008:25022575,36579970 +g1,2008:25888960,36579970 +(1,2008:25888960,36579970:0,452978,115847 +r1,2042:29060920,36579970:3171960,568825,115847 +k1,2008:25888960,36579970:-3171960 +) +(1,2008:25888960,36579970:3171960,452978,115847 +k1,2008:25888960,36579970:3277 +h1,2008:29057643,36579970:0,411205,112570 +) +g1,2008:29260149,36579970 +k1,2009:32583029,36579970:61153 +g1,2009:32583029,36579970 +) +v1,2011:6630773,37264825:0,393216,0 +(1,2038:6630773,44653677:25952256,7782068,196608 +g1,2038:6630773,44653677 +g1,2038:6630773,44653677 +g1,2038:6434165,44653677 +(1,2038:6434165,44653677:0,7782068,196608 +r1,2042:32779637,44653677:26345472,7978676,196608 +k1,2038:6434165,44653677:-26345472 +) +(1,2038:6434165,44653677:26345472,7782068,196608 +[1,2038:6630773,44653677:25952256,7585460,0 +(1,2013:6630773,37492656:25952256,424439,6605 +(1,2012:6630773,37492656:0,0,0 +g1,2012:6630773,37492656 +g1,2012:6630773,37492656 +g1,2012:6303093,37492656 +(1,2012:6303093,37492656:0,0,0 +) +g1,2012:6630773,37492656 +) +g1,2013:8290543,37492656 +g1,2013:9286405,37492656 +h1,2013:10282267,37492656:0,0,0 +k1,2013:32583029,37492656:22300762 +g1,2013:32583029,37492656 +) +(1,2014:6630773,38177511:25952256,407923,6605 +h1,2014:6630773,38177511:0,0,0 +h1,2014:7958589,38177511:0,0,0 +k1,2014:32583029,38177511:24624440 +g1,2014:32583029,38177511 +) +(1,2018:6630773,38993438:25952256,424439,79822 +(1,2016:6630773,38993438:0,0,0 +g1,2016:6630773,38993438 +g1,2016:6630773,38993438 +g1,2016:6303093,38993438 +(1,2016:6303093,38993438:0,0,0 +) +g1,2016:6630773,38993438 +) +g1,2018:7626635,38993438 +g1,2018:8954451,38993438 +h1,2018:9950313,38993438:0,0,0 +k1,2018:32583029,38993438:22632716 +g1,2018:32583029,38993438 +) +(1,2020:6630773,39809365:25952256,424439,6605 +(1,2019:6630773,39809365:0,0,0 +g1,2019:6630773,39809365 +g1,2019:6630773,39809365 +g1,2019:6303093,39809365 +(1,2019:6303093,39809365:0,0,0 +) +g1,2019:6630773,39809365 +) +g1,2020:8290543,39809365 +g1,2020:9286405,39809365 +h1,2020:10282267,39809365:0,0,0 +k1,2020:32583029,39809365:22300762 +g1,2020:32583029,39809365 +) +(1,2021:6630773,40494220:25952256,407923,6605 +h1,2021:6630773,40494220:0,0,0 +h1,2021:7958589,40494220:0,0,0 +k1,2021:32583029,40494220:24624440 +g1,2021:32583029,40494220 +) +(1,2025:6630773,41310147:25952256,424439,79822 +(1,2023:6630773,41310147:0,0,0 +g1,2023:6630773,41310147 +g1,2023:6630773,41310147 +g1,2023:6303093,41310147 +(1,2023:6303093,41310147:0,0,0 +) +g1,2023:6630773,41310147 +) +g1,2025:7626635,41310147 +g1,2025:8954451,41310147 +h1,2025:9950313,41310147:0,0,0 +k1,2025:32583029,41310147:22632716 +g1,2025:32583029,41310147 +) +(1,2027:6630773,42126074:25952256,424439,112852 +(1,2026:6630773,42126074:0,0,0 +g1,2026:6630773,42126074 +g1,2026:6630773,42126074 +g1,2026:6303093,42126074 +(1,2026:6303093,42126074:0,0,0 +) +g1,2026:6630773,42126074 +) +g1,2027:8290543,42126074 +g1,2027:9286405,42126074 +g1,2027:10946175,42126074 +g1,2027:11610083,42126074 +g1,2027:12937899,42126074 +g1,2027:16257438,42126074 +g1,2027:18913070,42126074 +g1,2027:22232609,42126074 +g1,2027:24888241,42126074 +g1,2027:25884103,42126074 +g1,2027:27875827,42126074 +k1,2027:27875827,42126074:0 +h1,2027:30199505,42126074:0,0,0 +k1,2027:32583029,42126074:2383524 +g1,2027:32583029,42126074 +) +(1,2031:6630773,42942001:25952256,424439,79822 +(1,2029:6630773,42942001:0,0,0 +g1,2029:6630773,42942001 +g1,2029:6630773,42942001 +g1,2029:6303093,42942001 +(1,2029:6303093,42942001:0,0,0 +) +g1,2029:6630773,42942001 +) +g1,2031:7626635,42942001 +g1,2031:8954451,42942001 +h1,2031:10282267,42942001:0,0,0 +k1,2031:32583029,42942001:22300762 +g1,2031:32583029,42942001 +) +(1,2033:6630773,43757928:25952256,424439,112852 +(1,2032:6630773,43757928:0,0,0 +g1,2032:6630773,43757928 +g1,2032:6630773,43757928 +g1,2032:6303093,43757928 +(1,2032:6303093,43757928:0,0,0 +) +g1,2032:6630773,43757928 +) +g1,2033:7958589,43757928 +g1,2033:8954451,43757928 +g1,2033:10282267,43757928 +g1,2033:10946175,43757928 +g1,2033:12273991,43757928 +g1,2033:15261576,43757928 +g1,2033:18581115,43757928 +g1,2033:21236747,43757928 +g1,2033:22232609,43757928 +g1,2033:25552148,43757928 +k1,2033:25552148,43757928:0 +h1,2033:27875826,43757928:0,0,0 +k1,2033:32583029,43757928:4707203 +g1,2033:32583029,43757928 +) +(1,2037:6630773,44573855:25952256,424439,79822 +(1,2035:6630773,44573855:0,0,0 +g1,2035:6630773,44573855 +g1,2035:6630773,44573855 +g1,2035:6303093,44573855 +(1,2035:6303093,44573855:0,0,0 +) +g1,2035:6630773,44573855 +) +g1,2037:7626635,44573855 +g1,2037:8954451,44573855 +h1,2037:10282267,44573855:0,0,0 +k1,2037:32583029,44573855:22300762 +g1,2037:32583029,44573855 +) +] +) +g1,2038:32583029,44653677 +g1,2038:6630773,44653677 +g1,2038:6630773,44653677 +g1,2038:32583029,44653677 +g1,2038:32583029,44653677 +) +h1,2038:6630773,44850285:0,0,0 +] +(1,2042:32583029,45706769:0,0,0 +g1,2042:32583029,45706769 ) -[1,2024:6630773,45706769:25952256,40108032,0 -v1,1948:6630773,6254097:0,393216,0 -(1,1948:6630773,7290089:25952256,1429208,0 -g1,1948:6630773,7290089 -g1,1948:6303093,7290089 -r1,2024:6401397,7290089:98304,1429208,0 -g1,1948:6600626,7290089 -g1,1948:6797234,7290089 -[1,1948:6797234,7290089:25785795,1429208,0 -v1,1942:6797234,6254097:0,393216,0 -(1,1946:6797234,6569193:25785795,708312,196608 -g1,1946:6797234,6569193 -g1,1946:6797234,6569193 -g1,1946:6600626,6569193 -(1,1946:6600626,6569193:0,708312,196608 -r1,2024:32779637,6569193:26179011,904920,196608 -k1,1946:6600625,6569193:-26179012 -) -(1,1946:6600626,6569193:26179011,708312,196608 -[1,1946:6797234,6569193:25785795,511704,0 -(1,1944:6797234,6461715:25785795,404226,107478 -(1,1943:6797234,6461715:0,0,0 -g1,1943:6797234,6461715 -g1,1943:6797234,6461715 -g1,1943:6469554,6461715 -(1,1943:6469554,6461715:0,0,0 -) -g1,1943:6797234,6461715 -) -k1,1944:6797234,6461715:0 -g1,1944:10590983,6461715 -g1,1944:11223275,6461715 -g1,1944:16281607,6461715 -g1,1944:16913899,6461715 -h1,1944:23236812,6461715:0,0,0 -k1,1944:32583029,6461715:9346217 -g1,1944:32583029,6461715 -) -] -) -g1,1946:32583029,6569193 -g1,1946:6797234,6569193 -g1,1946:6797234,6569193 -g1,1946:32583029,6569193 -g1,1946:32583029,6569193 -) -h1,1946:6797234,6765801:0,0,0 -] -g1,1948:32583029,7290089 -) -h1,1948:6630773,7290089:0,0,0 -(1,1950:6630773,10097657:25952256,32768,229376 -(1,1950:6630773,10097657:0,32768,229376 -(1,1950:6630773,10097657:5505024,32768,229376 -r1,2024:12135797,10097657:5505024,262144,229376 -) -k1,1950:6630773,10097657:-5505024 -) -(1,1950:6630773,10097657:25952256,32768,0 -r1,2024:32583029,10097657:25952256,32768,0 -) -) -(1,1950:6630773,11701985:25952256,606339,14155 -(1,1950:6630773,11701985:1974731,582746,14155 -g1,1950:6630773,11701985 -g1,1950:8605504,11701985 -) -g1,1950:12698883,11701985 -k1,1950:32583029,11701985:17306222 -g1,1950:32583029,11701985 -) -(1,1953:6630773,12936689:25952256,513147,126483 -k1,1952:7484425,12936689:225817 -k1,1952:9266722,12936689:225817 -k1,1952:10151831,12936689:225817 -k1,1952:11396733,12936689:225817 -k1,1952:12641635,12936689:225817 -k1,1952:14605467,12936689:225817 -(1,1952:14605467,12936689:0,452978,115847 -r1,2024:17777427,12936689:3171960,568825,115847 -k1,1952:14605467,12936689:-3171960 -) -(1,1952:14605467,12936689:3171960,452978,115847 -k1,1952:14605467,12936689:3277 -h1,1952:17774150,12936689:0,411205,112570 -) -k1,1952:18176914,12936689:225817 -k1,1952:20413376,12936689:225817 -k1,1952:21298485,12936689:225817 -k1,1952:22727543,12936689:225817 -k1,1952:24909610,12936689:225817 -k1,1952:26126987,12936689:225817 -k1,1952:28660982,12936689:225817 -k1,1952:29546091,12936689:225817 -k1,1952:32583029,12936689:0 -) -(1,1953:6630773,13778177:25952256,505283,134348 -k1,1952:9415528,13778177:196739 -k1,1952:12708843,13778177:196739 -k1,1952:15993639,13778177:196740 -k1,1952:17181938,13778177:196739 -k1,1952:19665228,13778177:196739 -k1,1952:20623495,13778177:196739 -k1,1952:23836201,13778177:196739 -k1,1952:27337922,13778177:196740 -k1,1952:29730772,13778177:196739 -k1,1952:30543549,13778177:196739 -k1,1953:32583029,13778177:0 -) -(1,1953:6630773,14619665:25952256,513147,126483 -k1,1952:8062461,14619665:164222 -k1,1952:10387405,14619665:164222 -k1,1952:11621175,14619665:164222 -(1,1952:11621175,14619665:0,452978,122846 -r1,2024:21475661,14619665:9854486,575824,122846 -k1,1952:11621175,14619665:-9854486 -) -(1,1952:11621175,14619665:9854486,452978,122846 -g1,1952:13734723,14619665 -g1,1952:14789859,14619665 -g1,1952:15493283,14619665 -g1,1952:19010401,14619665 -h1,1952:21472384,14619665:0,411205,112570 -) -k1,1952:21813553,14619665:164222 -k1,1952:23810162,14619665:164222 -k1,1952:24965944,14619665:164222 -k1,1952:26784950,14619665:164222 -k1,1952:28665560,14619665:164222 -k1,1952:29489074,14619665:164222 -k1,1952:32583029,14619665:0 -) -(1,1953:6630773,15461153:25952256,505283,134348 -k1,1952:8826261,15461153:208436 -k1,1952:9650735,15461153:208436 -k1,1952:10878256,15461153:208436 -k1,1952:12810935,15461153:208427 -k1,1952:15994050,15461153:208436 -k1,1952:17310700,15461153:208436 -k1,1952:19702140,15461153:208436 -k1,1952:22058846,15461153:208436 -(1,1952:22058846,15461153:0,452978,115847 -r1,2024:22417112,15461153:358266,568825,115847 -k1,1952:22058846,15461153:-358266 -) -(1,1952:22058846,15461153:358266,452978,115847 -k1,1952:22058846,15461153:3277 -h1,1952:22413835,15461153:0,411205,112570 -) -k1,1952:22799218,15461153:208436 -k1,1952:24880673,15461153:208436 -k1,1952:27237379,15461153:208436 -(1,1952:27237379,15461153:0,452978,115847 -r1,2024:27595645,15461153:358266,568825,115847 -k1,1952:27237379,15461153:-358266 -) -(1,1952:27237379,15461153:358266,452978,115847 -k1,1952:27237379,15461153:3277 -h1,1952:27592368,15461153:0,411205,112570 -) -k1,1952:27977751,15461153:208436 -k1,1952:29377632,15461153:208436 -k1,1952:31068492,15461153:208436 -k1,1953:32583029,15461153:0 -) -(1,1953:6630773,16302641:25952256,513147,126483 -(1,1952:6630773,16302641:0,459977,115847 -r1,2024:6989039,16302641:358266,575824,115847 -k1,1952:6630773,16302641:-358266 -) -(1,1952:6630773,16302641:358266,459977,115847 -k1,1952:6630773,16302641:3277 -h1,1952:6985762,16302641:0,411205,112570 -) -g1,1952:7361938,16302641 -g1,1952:8757854,16302641 -g1,1952:10263216,16302641 -g1,1952:11634884,16302641 -g1,1952:13550501,16302641 -g1,1952:14409022,16302641 -g1,1952:16756521,16302641 -g1,1952:18060032,16302641 -g1,1952:19007027,16302641 -g1,1952:20719482,16302641 -g1,1952:21604873,16302641 -g1,1952:25022575,16302641 -g1,1952:25888960,16302641 -(1,1952:25888960,16302641:0,452978,115847 -r1,2024:29060920,16302641:3171960,568825,115847 -k1,1952:25888960,16302641:-3171960 -) -(1,1952:25888960,16302641:3171960,452978,115847 -k1,1952:25888960,16302641:3277 -h1,1952:29057643,16302641:0,411205,112570 -) -g1,1952:29260149,16302641 -k1,1953:32583029,16302641:61153 -g1,1953:32583029,16302641 -) -v1,1955:6630773,17283391:0,393216,0 -(1,1982:6630773,25528712:25952256,8638537,196608 -g1,1982:6630773,25528712 -g1,1982:6630773,25528712 -g1,1982:6434165,25528712 -(1,1982:6434165,25528712:0,8638537,196608 -r1,2024:32779637,25528712:26345472,8835145,196608 -k1,1982:6434165,25528712:-26345472 -) -(1,1982:6434165,25528712:26345472,8638537,196608 -[1,1982:6630773,25528712:25952256,8441929,0 -(1,1957:6630773,17491009:25952256,404226,6290 -(1,1956:6630773,17491009:0,0,0 -g1,1956:6630773,17491009 -g1,1956:6630773,17491009 -g1,1956:6303093,17491009 -(1,1956:6303093,17491009:0,0,0 -) -g1,1956:6630773,17491009 -) -g1,1957:8211502,17491009 -g1,1957:9159940,17491009 -h1,1957:10108377,17491009:0,0,0 -k1,1957:32583029,17491009:22474652 -g1,1957:32583029,17491009 -) -(1,1958:6630773,18157187:25952256,388497,6290 -h1,1958:6630773,18157187:0,0,0 -h1,1958:7895356,18157187:0,0,0 -k1,1958:32583028,18157187:24687672 -g1,1958:32583028,18157187 -) -(1,1962:6630773,18823365:25952256,404226,76021 -(1,1960:6630773,18823365:0,0,0 -g1,1960:6630773,18823365 -g1,1960:6630773,18823365 -g1,1960:6303093,18823365 -(1,1960:6303093,18823365:0,0,0 -) -g1,1960:6630773,18823365 -) -g1,1962:7579210,18823365 -g1,1962:8843793,18823365 -h1,1962:9792230,18823365:0,0,0 -k1,1962:32583030,18823365:22790800 -g1,1962:32583030,18823365 -) -(1,1964:6630773,20144903:25952256,404226,6290 -(1,1963:6630773,20144903:0,0,0 -g1,1963:6630773,20144903 -g1,1963:6630773,20144903 -g1,1963:6303093,20144903 -(1,1963:6303093,20144903:0,0,0 -) -g1,1963:6630773,20144903 -) -g1,1964:8211502,20144903 -g1,1964:9159940,20144903 -h1,1964:10108378,20144903:0,0,0 -k1,1964:32583030,20144903:22474652 -g1,1964:32583030,20144903 -) -(1,1965:6630773,20811081:25952256,388497,6290 -h1,1965:6630773,20811081:0,0,0 -h1,1965:7895356,20811081:0,0,0 -k1,1965:32583028,20811081:24687672 -g1,1965:32583028,20811081 -) -(1,1969:6630773,21477259:25952256,404226,76021 -(1,1967:6630773,21477259:0,0,0 -g1,1967:6630773,21477259 -g1,1967:6630773,21477259 -g1,1967:6303093,21477259 -(1,1967:6303093,21477259:0,0,0 -) -g1,1967:6630773,21477259 -) -g1,1969:7579210,21477259 -g1,1969:8843793,21477259 -h1,1969:9792230,21477259:0,0,0 -k1,1969:32583030,21477259:22790800 -g1,1969:32583030,21477259 -) -(1,1971:6630773,22798797:25952256,404226,107478 -(1,1970:6630773,22798797:0,0,0 -g1,1970:6630773,22798797 -g1,1970:6630773,22798797 -g1,1970:6303093,22798797 -(1,1970:6303093,22798797:0,0,0 -) -g1,1970:6630773,22798797 -) -g1,1971:8211502,22798797 -g1,1971:9159939,22798797 -g1,1971:10740668,22798797 -g1,1971:11372960,22798797 -g1,1971:12637543,22798797 -g1,1971:15799000,22798797 -g1,1971:18328166,22798797 -g1,1971:21489623,22798797 -g1,1971:24018789,22798797 -g1,1971:24967226,22798797 -g1,1971:26864100,22798797 -k1,1971:26864100,22798797:0 -h1,1971:29077120,22798797:0,0,0 -k1,1971:32583029,22798797:3505909 -g1,1971:32583029,22798797 -) -(1,1975:6630773,23464975:25952256,404226,76021 -(1,1973:6630773,23464975:0,0,0 -g1,1973:6630773,23464975 -g1,1973:6630773,23464975 -g1,1973:6303093,23464975 -(1,1973:6303093,23464975:0,0,0 -) -g1,1973:6630773,23464975 -) -g1,1975:7579210,23464975 -g1,1975:8843793,23464975 -h1,1975:10108376,23464975:0,0,0 -k1,1975:32583028,23464975:22474652 -g1,1975:32583028,23464975 -) -(1,1977:6630773,24786513:25952256,404226,107478 -(1,1976:6630773,24786513:0,0,0 -g1,1976:6630773,24786513 -g1,1976:6630773,24786513 -g1,1976:6303093,24786513 -(1,1976:6303093,24786513:0,0,0 -) -g1,1976:6630773,24786513 -) -g1,1977:7895356,24786513 -g1,1977:8843793,24786513 -g1,1977:10108377,24786513 -g1,1977:10740669,24786513 -g1,1977:12005252,24786513 -g1,1977:14850563,24786513 -g1,1977:18012020,24786513 -g1,1977:20541186,24786513 -g1,1977:21489623,24786513 -g1,1977:24651080,24786513 -k1,1977:24651080,24786513:0 -h1,1977:26864100,24786513:0,0,0 -k1,1977:32583029,24786513:5718929 -g1,1977:32583029,24786513 -) -(1,1981:6630773,25452691:25952256,404226,76021 -(1,1979:6630773,25452691:0,0,0 -g1,1979:6630773,25452691 -g1,1979:6630773,25452691 -g1,1979:6303093,25452691 -(1,1979:6303093,25452691:0,0,0 -) -g1,1979:6630773,25452691 -) -g1,1981:7579210,25452691 -g1,1981:8843793,25452691 -h1,1981:10108376,25452691:0,0,0 -k1,1981:32583028,25452691:22474652 -g1,1981:32583028,25452691 -) -] -) -g1,1982:32583029,25528712 -g1,1982:6630773,25528712 -g1,1982:6630773,25528712 -g1,1982:32583029,25528712 -g1,1982:32583029,25528712 -) -h1,1982:6630773,25725320:0,0,0 -v1,1986:6630773,27195952:0,393216,0 -(1,1987:6630773,33582789:25952256,6780053,0 -g1,1987:6630773,33582789 -g1,1987:6303093,33582789 -r1,2024:6401397,33582789:98304,6780053,0 -g1,1987:6600626,33582789 -g1,1987:6797234,33582789 -[1,1987:6797234,33582789:25785795,6780053,0 -(1,1987:6797234,27558025:25785795,755289,196608 -(1,1986:6797234,27558025:0,755289,196608 -r1,2024:8134168,27558025:1336934,951897,196608 -k1,1986:6797234,27558025:-1336934 -) -(1,1986:6797234,27558025:1336934,755289,196608 -) -k1,1986:8390593,27558025:256425 -k1,1986:8718273,27558025:327680 -k1,1986:9602532,27558025:256424 -k1,1986:11610734,27558025:256425 -k1,1986:14943418,27558025:256424 -k1,1986:18546111,27558025:256425 -k1,1986:21110713,27558025:256424 -k1,1986:22026430,27558025:256425 -k1,1986:25587835,27558025:256424 -k1,1986:26835820,27558025:256425 -k1,1986:29507902,27558025:256425 -k1,1986:31331947,27558025:256424 -k1,1987:32583029,27558025:0 -) -(1,1987:6797234,28399513:25785795,513147,134348 -k1,1986:8244597,28399513:177275 -k1,1986:9081164,28399513:177275 -k1,1986:12233117,28399513:177274 -k1,1986:14780174,28399513:177275 -k1,1986:15585284,28399513:177275 -k1,1986:17459286,28399513:177275 -k1,1986:20982829,28399513:177275 -k1,1986:24134783,28399513:177275 -k1,1986:26620235,28399513:177274 -k1,1986:28414939,28399513:177275 -k1,1986:29204976,28399513:177275 -k1,1986:30833873,28399513:177275 -k1,1986:32583029,28399513:0 -) -(1,1987:6797234,29241001:25785795,513147,134348 -k1,1986:9622764,29241001:211299 -k1,1986:10189923,29241001:211299 -k1,1986:12274241,29241001:211299 -k1,1986:15633890,29241001:211299 -k1,1986:17534707,29241001:211299 -k1,1986:20054184,29241001:211299 -k1,1986:20924775,29241001:211299 -k1,1986:24110753,29241001:211299 -k1,1986:26518163,29241001:211299 -k1,1986:28346891,29241001:211299 -k1,1986:29170952,29241001:211299 -k1,1986:30833873,29241001:211299 -k1,1986:32583029,29241001:0 -) -(1,1987:6797234,30082489:25785795,513147,134348 -k1,1986:9653184,30082489:241719 -k1,1986:12091013,30082489:241718 -k1,1986:12992024,30082489:241719 -k1,1986:16538723,30082489:241718 -k1,1986:17439734,30082489:241719 -k1,1986:20023710,30082489:241719 -k1,1986:22782666,30082489:241718 -k1,1986:24517951,30082489:241719 -k1,1986:25445831,30082489:241718 -k1,1986:27642489,30082489:241719 -k1,1986:28567092,30082489:241718 -k1,1986:32105272,30082489:241719 -k1,1986:32583029,30082489:0 -) -(1,1987:6797234,30923977:25785795,513147,126483 -k1,1986:8217453,30923977:249746 -k1,1986:9458759,30923977:249746 -k1,1986:12200839,30923977:249746 -k1,1986:13844536,30923977:249746 -k1,1986:14547741,30923977:249696 -k1,1986:15480372,30923977:249746 -k1,1986:17186983,30923977:249746 -k1,1986:18607202,30923977:249746 -k1,1986:20387214,30923977:249746 -k1,1986:21288388,30923977:249746 -k1,1986:23046117,30923977:249746 -k1,1986:23911901,30923977:249746 -k1,1986:25818397,30923977:249746 -k1,1986:27352649,30923977:249746 -k1,1986:28559876,30923977:249746 -(1,1986:28559876,30923977:0,452978,115847 -r1,2024:29973277,30923977:1413401,568825,115847 -k1,1986:28559876,30923977:-1413401 -) -(1,1986:28559876,30923977:1413401,452978,115847 -k1,1986:28559876,30923977:3277 -h1,1986:29970000,30923977:0,411205,112570 -) -k1,1986:30223023,30923977:249746 -k1,1986:31664214,30923977:249746 -k1,1987:32583029,30923977:0 -) -(1,1987:6797234,31765465:25785795,505283,134348 -(1,1986:6797234,31765465:0,452978,115847 -r1,2024:9969194,31765465:3171960,568825,115847 -k1,1986:6797234,31765465:-3171960 -) -(1,1986:6797234,31765465:3171960,452978,115847 -k1,1986:6797234,31765465:3277 -h1,1986:9965917,31765465:0,411205,112570 -) -k1,1986:10193426,31765465:224232 -k1,1986:11409219,31765465:224233 -k1,1986:12699722,31765465:224232 -k1,1986:16228936,31765465:224233 -k1,1986:17644613,31765465:224232 -k1,1986:19153352,31765465:224233 -k1,1986:19993622,31765465:224232 -k1,1986:20806368,31765465:224233 -k1,1986:21658435,31765465:224232 -k1,1986:24513939,31765465:224233 -k1,1986:25389599,31765465:224232 -k1,1986:27310559,31765465:224233 -k1,1986:29236761,31765465:224232 -k1,1986:32583029,31765465:0 -) -(1,1987:6797234,32606953:25785795,513147,126483 -k1,1986:7581500,32606953:168228 -k1,1986:8164540,32606953:168197 -k1,1986:9987553,32606953:168229 -k1,1986:10687278,32606953:168228 -k1,1986:11664876,32606953:168228 -k1,1986:15271123,32606953:168228 -k1,1986:16994520,32606953:168228 -k1,1986:18110399,32606953:168228 -k1,1986:20586805,32606953:168228 -k1,1986:21414326,32606953:168229 -k1,1986:24775468,32606953:168228 -k1,1986:28248677,32606953:168228 -k1,1986:29608350,32606953:168228 -k1,1986:32583029,32606953:0 -) -(1,1987:6797234,33448441:25785795,513147,134348 -g1,1986:10084519,33448441 -g1,1986:13077548,33448441 -g1,1986:13892815,33448441 -g1,1986:16275048,33448441 -g1,1986:17157162,33448441 -g1,1986:19229410,33448441 -g1,1986:21576909,33448441 -g1,1986:22767698,33448441 -g1,1986:24033198,33448441 -k1,1987:32583029,33448441:5613818 -g1,1987:32583029,33448441 -) -] -g1,1987:32583029,33582789 -) -h1,1987:6630773,33582789:0,0,0 -(1,1991:6630773,34563539:25952256,513147,134348 -h1,1989:6630773,34563539:983040,0,0 -k1,1989:12356653,34563539:166461 -k1,1989:15497794,34563539:166462 -k1,1989:17972433,34563539:166461 -k1,1989:18798187,34563539:166462 -k1,1989:20977914,34563539:166461 -k1,1989:22301086,34563539:166462 -k1,1989:23960457,34563539:166461 -k1,1989:25193190,34563539:166462 -k1,1989:26895160,34563539:166461 -k1,1989:27417482,34563539:166462 -k1,1989:29608350,34563539:166461 -k1,1989:32583029,34563539:0 -) -(1,1991:6630773,35229717:25952256,513147,134348 -g1,1989:8869482,35229717 -g1,1989:9526808,35229717 -g1,1989:11591847,35229717 -g1,1989:14118259,35229717 -g1,1989:14673348,35229717 -g1,1989:16896984,35229717 -g1,1989:19074090,35229717 -g1,1989:19932611,35229717 -g1,1989:23106519,35229717 -g1,1989:25675530,35229717 -k1,1991:32583029,35229717:6907499 -g1,1991:32583029,35229717 -) -v1,1991:6630773,36210467:0,393216,0 -(1,2001:6630773,39190275:25952256,3373024,196608 -g1,2001:6630773,39190275 -g1,2001:6630773,39190275 -g1,2001:6434165,39190275 -(1,2001:6434165,39190275:0,3373024,196608 -r1,2024:32779637,39190275:26345472,3569632,196608 -k1,2001:6434165,39190275:-26345472 -) -(1,2001:6434165,39190275:26345472,3373024,196608 -[1,2001:6630773,39190275:25952256,3176416,0 -(1,1993:6630773,36418085:25952256,404226,9436 -(1,1992:6630773,36418085:0,0,0 -g1,1992:6630773,36418085 -g1,1992:6630773,36418085 -g1,1992:6303093,36418085 -(1,1992:6303093,36418085:0,0,0 -) -g1,1992:6630773,36418085 -) -g1,1993:8211502,36418085 -g1,1993:9159940,36418085 -h1,1993:10740669,36418085:0,0,0 -k1,1993:32583029,36418085:21842360 -g1,1993:32583029,36418085 -) -(1,1994:6630773,37084263:25952256,410518,107478 -h1,1994:6630773,37084263:0,0,0 -g1,1994:8211502,37084263 -g1,1994:9159940,37084263 -h1,1994:11689105,37084263:0,0,0 -k1,1994:32583029,37084263:20893924 -g1,1994:32583029,37084263 -) -(1,1995:6630773,37750441:25952256,404226,101187 -h1,1995:6630773,37750441:0,0,0 -g1,1995:8211502,37750441 -g1,1995:9159940,37750441 -g1,1995:12005252,37750441 -h1,1995:13902126,37750441:0,0,0 -k1,1995:32583030,37750441:18680904 -g1,1995:32583030,37750441 -) -(1,1996:6630773,38416619:25952256,404226,82312 -h1,1996:6630773,38416619:0,0,0 -g1,1996:9159939,38416619 -g1,1996:11056814,38416619 -h1,1996:12637542,38416619:0,0,0 -k1,1996:32583030,38416619:19945488 -g1,1996:32583030,38416619 -) -(1,2000:6630773,39082797:25952256,410518,107478 -(1,1998:6630773,39082797:0,0,0 -g1,1998:6630773,39082797 -g1,1998:6630773,39082797 -g1,1998:6303093,39082797 -(1,1998:6303093,39082797:0,0,0 -) -g1,1998:6630773,39082797 -) -g1,2000:7579210,39082797 -g1,2000:8843793,39082797 -g1,2000:10740667,39082797 -g1,2000:11056813,39082797 -g1,2000:11372959,39082797 -g1,2000:11689105,39082797 -g1,2000:14534416,39082797 -g1,2000:16431290,39082797 -g1,2000:16747436,39082797 -g1,2000:17063582,39082797 -g1,2000:17379728,39082797 -h1,2000:18960456,39082797:0,0,0 -k1,2000:32583029,39082797:13622573 -g1,2000:32583029,39082797 -) -] -) -g1,2001:32583029,39190275 -g1,2001:6630773,39190275 -g1,2001:6630773,39190275 -g1,2001:32583029,39190275 -g1,2001:32583029,39190275 -) -h1,2001:6630773,39386883:0,0,0 -(1,2005:6630773,40542943:25952256,513147,134348 -h1,2004:6630773,40542943:983040,0,0 -k1,2004:10042160,40542943:219784 -k1,2004:11434383,40542943:219784 -k1,2004:14416509,40542943:219783 -k1,2004:17854766,40542943:219784 -k1,2004:20858519,40542943:219784 -k1,2004:23124337,40542943:219784 -k1,2004:23802218,40542943:219784 -k1,2004:26651962,40542943:219784 -k1,2004:27523173,40542943:219783 -k1,2004:29958074,40542943:219784 -k1,2004:31196943,40542943:219784 -k1,2004:32583029,40542943:0 -) -(1,2005:6630773,41384431:25952256,513147,126483 -k1,2004:7470743,41384431:180678 -k1,2004:10745375,41384431:180677 -k1,2004:12913105,41384431:180678 -k1,2004:14607008,41384431:180677 -k1,2004:15473848,41384431:180678 -k1,2004:18872998,41384431:180677 -k1,2004:19778504,41384431:180678 -k1,2004:21243687,41384431:180677 -k1,2004:23126335,41384431:180678 -k1,2004:26400967,41384431:180677 -k1,2004:28568697,41384431:180678 -k1,2004:29853656,41384431:180677 -k1,2004:30782100,41384431:180678 -k1,2004:32583029,41384431:0 -) -(1,2005:6630773,42225919:25952256,505283,134348 -g1,2004:9588412,42225919 -g1,2004:10403679,42225919 -g1,2004:10958768,42225919 -k1,2005:32583028,42225919:19584780 -g1,2005:32583028,42225919 -) -v1,2007:6630773,43206669:0,393216,0 -(1,2020:6630773,45510161:25952256,2696708,196608 -g1,2020:6630773,45510161 -g1,2020:6630773,45510161 -g1,2020:6434165,45510161 -(1,2020:6434165,45510161:0,2696708,196608 -r1,2024:32779637,45510161:26345472,2893316,196608 -k1,2020:6434165,45510161:-26345472 -) -(1,2020:6434165,45510161:26345472,2696708,196608 -[1,2020:6630773,45510161:25952256,2500100,0 -(1,2009:6630773,43414287:25952256,404226,6290 -(1,2008:6630773,43414287:0,0,0 -g1,2008:6630773,43414287 -g1,2008:6630773,43414287 -g1,2008:6303093,43414287 -(1,2008:6303093,43414287:0,0,0 -) -g1,2008:6630773,43414287 -) -g1,2009:7895356,43414287 -g1,2009:9476085,43414287 -g1,2009:12005251,43414287 -g1,2009:13585980,43414287 -g1,2009:14534417,43414287 -g1,2009:16115146,43414287 -h1,2009:17063583,43414287:0,0,0 -k1,2009:32583029,43414287:15519446 -g1,2009:32583029,43414287 -) -(1,2013:6630773,43869118:25952256,404226,76021 -(1,2011:6630773,43869118:0,0,0 -g1,2011:6630773,43869118 -g1,2011:6630773,43869118 -g1,2011:6303093,43869118 -(1,2011:6303093,43869118:0,0,0 -) -g1,2011:6630773,43869118 -) -g1,2013:7579210,43869118 -g1,2013:8843793,43869118 -g1,2013:10108376,43869118 -g1,2013:11689105,43869118 -g1,2013:14218271,43869118 -g1,2013:15799000,43869118 -g1,2013:16747437,43869118 -g1,2013:18328166,43869118 -h1,2013:19276603,43869118:0,0,0 -k1,2013:32583029,43869118:13306426 -g1,2013:32583029,43869118 -) -(1,2015:6630773,44979309:25952256,404226,6290 -(1,2014:6630773,44979309:0,0,0 -g1,2014:6630773,44979309 -g1,2014:6630773,44979309 -g1,2014:6303093,44979309 -(1,2014:6303093,44979309:0,0,0 -) -g1,2014:6630773,44979309 -) -g1,2015:7895356,44979309 -g1,2015:9476085,44979309 -g1,2015:12005251,44979309 -g1,2015:13585980,44979309 -g1,2015:14534417,44979309 -g1,2015:16115146,44979309 -h1,2015:17063583,44979309:0,0,0 -k1,2015:32583029,44979309:15519446 -g1,2015:32583029,44979309 -) -(1,2019:6630773,45434140:25952256,404226,76021 -(1,2017:6630773,45434140:0,0,0 -g1,2017:6630773,45434140 -g1,2017:6630773,45434140 -g1,2017:6303093,45434140 -(1,2017:6303093,45434140:0,0,0 -) -g1,2017:6630773,45434140 -) -g1,2019:7579210,45434140 -g1,2019:8843793,45434140 -g1,2019:10108376,45434140 -g1,2019:11689105,45434140 -g1,2019:14850562,45434140 -g1,2019:16431291,45434140 -g1,2019:17379728,45434140 -g1,2019:18960457,45434140 -h1,2019:19908894,45434140:0,0,0 -k1,2019:32583029,45434140:12674135 -g1,2019:32583029,45434140 -) -] -) -g1,2020:32583029,45510161 -g1,2020:6630773,45510161 -g1,2020:6630773,45510161 -g1,2020:32583029,45510161 -g1,2020:32583029,45510161 -) -h1,2020:6630773,45706769:0,0,0 -] -(1,2024:32583029,45706769:0,0,0 -g1,2024:32583029,45706769 -) -) -] -(1,2024:6630773,47279633:25952256,0,0 -h1,2024:6630773,47279633:25952256,0,0 -) -] -(1,2024:4262630,4025873:0,0,0 -[1,2024:-473656,4025873:0,0,0 -(1,2024:-473656,-710413:0,0,0 -(1,2024:-473656,-710413:0,0,0 -g1,2024:-473656,-710413 ) -g1,2024:-473656,-710413 +] +(1,2042:6630773,47279633:25952256,0,0 +h1,2042:6630773,47279633:25952256,0,0 +) +] +(1,2042:4262630,4025873:0,0,0 +[1,2042:-473656,4025873:0,0,0 +(1,2042:-473656,-710413:0,0,0 +(1,2042:-473656,-710413:0,0,0 +g1,2042:-473656,-710413 +) +g1,2042:-473656,-710413 ) -] +] ) -] -!24940 -}55 -Input:449:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:450:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:451:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +] +!28218 +}54 Input:452:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:453:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:454:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:455:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:456:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!755 -{56 +Input:457:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:458:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:459:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:460:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:461:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:462:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:463:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:464:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1220 +{55 [1,2127:4262630,47279633:28320399,43253760,0 (1,2127:4262630,4025873:0,0,0 [1,2127:-473656,4025873:0,0,0 @@ -69158,19 +68514,19 @@ g1,2127:3078558,4812305 [1,2127:3078558,4812305:0,0,0 (1,2127:3078558,2439708:0,1703936,0 k1,2127:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 r1,2127:2537886,2439708:1179648,16384,0 ) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 r1,2127:3078558,1915420:16384,1179648,0 ) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) ] ) @@ -69181,20 +68537,20 @@ g1,651:29014430,1915420 (1,2127:3078558,2439708:0,1703936,0 g1,2127:29030814,2439708 g1,2127:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 r1,2127:36151628,1915420:16384,1179648,0 ) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) ] ) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 r1,2127:37855564,2439708:1179648,16384,0 ) ) @@ -69204,19 +68560,19 @@ k1,2127:3078556,2439708:-34777008 [1,2127:3078558,4812305:0,0,0 (1,2127:3078558,49800853:0,16384,2228224 k1,2127:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 r1,2127:2537886,49800853:1179648,16384,0 ) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 r1,2127:3078558,51504789:16384,1179648,0 ) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) ] ) @@ -69227,20 +68583,20 @@ g1,651:29014430,51504789 (1,2127:3078558,49800853:0,16384,2228224 g1,2127:29030814,49800853 g1,2127:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 r1,2127:36151628,51504789:16384,1179648,0 ) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 ) ] ) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 r1,2127:37855564,49800853:1179648,16384,0 ) ) @@ -69248,10 +68604,11 @@ k1,2127:3078556,49800853:-34777008 ) ] g1,2127:6630773,4812305 -g1,2127:6630773,4812305 -g1,2127:10015707,4812305 -g1,2127:12209197,4812305 -k1,2127:31786111,4812305:19576914 +k1,2127:22348274,4812305:14920583 +g1,2127:23970945,4812305 +g1,2127:24793421,4812305 +g1,2127:27528893,4812305 +g1,2127:28938572,4812305 ) ) ] @@ -69261,774 +68618,854 @@ k1,2127:31786111,4812305:19576914 g1,2127:6630773,45706769 ) [1,2127:6630773,45706769:25952256,40108032,0 -(1,2024:6630773,6254097:25952256,513147,134348 -h1,2023:6630773,6254097:983040,0,0 -k1,2023:9011415,6254097:200915 -k1,2023:10914299,6254097:200914 -k1,2023:13263484,6254097:200915 -k1,2023:14455959,6254097:200915 -k1,2023:15723144,6254097:200914 -k1,2023:17245920,6254097:200915 -k1,2023:18106126,6254097:200914 -k1,2023:19326126,6254097:200915 -k1,2023:21566521,6254097:200915 -k1,2023:23147623,6254097:200914 -k1,2023:24340098,6254097:200915 -k1,2023:28359796,6254097:200915 -k1,2023:30073936,6254097:200914 -k1,2023:30926279,6254097:200915 -k1,2023:32583029,6254097:0 -) -(1,2024:6630773,7095585:25952256,505283,126483 -k1,2023:7855516,7095585:205658 -k1,2023:11803280,7095585:205658 -k1,2023:12826827,7095585:205658 -k1,2023:14202957,7095585:205657 -k1,2023:15512897,7095585:205658 -k1,2023:16743538,7095585:205658 -k1,2023:18647234,7095585:205658 -(1,2023:18647234,7095585:0,452978,115847 -r1,2127:19005500,7095585:358266,568825,115847 -k1,2023:18647234,7095585:-358266 -) -(1,2023:18647234,7095585:358266,452978,115847 -k1,2023:18647234,7095585:3277 -h1,2023:19002223,7095585:0,411205,112570 -) -k1,2023:19211158,7095585:205658 -k1,2023:19948313,7095585:205658 -k1,2023:22504092,7095585:205658 -k1,2023:24903894,7095585:205657 -k1,2023:28414533,7095585:205658 -k1,2023:29724473,7095585:205658 -k1,2023:30677897,7095585:205658 -k1,2024:32583029,7095585:0 -) -(1,2024:6630773,7937073:25952256,513147,134348 -k1,2023:8916575,7937073:168334 -k1,2023:10820302,7937073:168334 -k1,2023:13423953,7937073:168333 -k1,2023:15892601,7937073:168334 -k1,2023:17893322,7937073:168334 -k1,2023:19053216,7937073:168334 -k1,2023:21453050,7937073:168333 -k1,2023:22280676,7937073:168334 -k1,2023:24261736,7937073:168334 -k1,2023:25621515,7937073:168334 -k1,2023:27187732,7937073:168334 -k1,2023:28224417,7937073:168333 -k1,2023:29525213,7937073:168334 -k1,2023:31354229,7937073:168334 -k1,2023:32583029,7937073:0 -) -(1,2024:6630773,8778561:25952256,513147,126483 -k1,2023:8374195,8778561:207258 -k1,2023:9864647,8778561:207257 -k1,2023:11240412,8778561:207258 -h1,2023:11447506,8778561:0,0,0 -k1,2023:12652221,8778561:207257 -k1,2023:14050924,8778561:207258 -k1,2023:15271368,8778561:207257 -h1,2023:15478462,8778561:0,0,0 -k1,2023:16856848,8778561:207258 -h1,2023:16856848,8778561:0,0,0 -k1,2023:17854469,8778561:207257 -k1,2023:19080812,8778561:207258 -k1,2023:21423232,8778561:207257 -k1,2023:23126677,8778561:207258 -k1,2023:24281585,8778561:207257 -k1,2023:24844703,8778561:207258 -k1,2023:28145915,8778561:207257 -k1,2023:30009923,8778561:207258 -k1,2023:32227169,8778561:207257 -k1,2023:32583029,8778561:0 -) -(1,2024:6630773,9620049:25952256,513147,134348 -k1,2023:8694911,9620049:198328 -k1,2023:10084685,9620049:198329 -h1,2023:10084685,9620049:0,0,0 -k1,2023:11073377,9620049:198328 -k1,2023:12290790,9620049:198328 -k1,2023:14624282,9620049:198329 -k1,2023:16318797,9620049:198328 -k1,2023:17464776,9620049:198328 -k1,2023:18018964,9620049:198328 -k1,2023:20090312,9620049:198329 -k1,2023:23407498,9620049:198328 -h1,2023:23407498,9620049:0,0,0 -k1,2023:24174678,9620049:198328 -k1,2023:25326556,9620049:198329 -k1,2023:26810700,9620049:198328 -k1,2023:28669710,9620049:198328 -k1,2023:30265922,9620049:198329 -k1,2023:31483335,9620049:198328 -k1,2024:32583029,9620049:0 -) -(1,2024:6630773,10461537:25952256,513147,134348 -k1,2023:8700735,10461537:150412 -k1,2023:11610868,10461537:150412 -k1,2023:12428435,10461537:150411 -(1,2023:12428435,10461537:0,452978,115847 -r1,2127:14896972,10461537:2468537,568825,115847 -k1,2023:12428435,10461537:-2468537 -) -(1,2023:12428435,10461537:2468537,452978,115847 -k1,2023:12428435,10461537:3277 -h1,2023:14893695,10461537:0,411205,112570 -) -k1,2023:15047384,10461537:150412 -k1,2023:16389241,10461537:150412 -(1,2023:16389241,10461537:0,452978,115847 -r1,2127:18154354,10461537:1765113,568825,115847 -k1,2023:16389241,10461537:-1765113 -) -(1,2023:16389241,10461537:1765113,452978,115847 -k1,2023:16389241,10461537:3277 -h1,2023:18151077,10461537:0,411205,112570 -) -k1,2023:18478436,10461537:150412 -k1,2023:20022799,10461537:150412 -(1,2023:20022799,10461537:0,452978,115847 -r1,2127:21787912,10461537:1765113,568825,115847 -k1,2023:20022799,10461537:-1765113 -) -(1,2023:20022799,10461537:1765113,452978,115847 -k1,2023:20022799,10461537:3277 -h1,2023:21784635,10461537:0,411205,112570 -) -k1,2023:21938324,10461537:150412 -k1,2023:25857710,10461537:150411 -k1,2023:27027207,10461537:150412 -k1,2023:29312782,10461537:150412 -k1,2023:32583029,10461537:0 -) -(1,2024:6630773,11303025:25952256,505283,134348 -g1,2023:8021447,11303025 -(1,2023:8021447,11303025:0,452978,115847 -r1,2127:10489984,11303025:2468537,568825,115847 -k1,2023:8021447,11303025:-2468537 -) -(1,2023:8021447,11303025:2468537,452978,115847 -k1,2023:8021447,11303025:3277 -h1,2023:10486707,11303025:0,411205,112570 -) -g1,2023:10689213,11303025 -g1,2023:14173762,11303025 -g1,2023:16012046,11303025 -g1,2023:16897437,11303025 -k1,2024:32583029,11303025:13089056 -g1,2024:32583029,11303025 -) -v1,2026:6630773,12493491:0,393216,0 -(1,2041:6630773,16794838:25952256,4694563,196608 -g1,2041:6630773,16794838 -g1,2041:6630773,16794838 -g1,2041:6434165,16794838 -(1,2041:6434165,16794838:0,4694563,196608 -r1,2127:32779637,16794838:26345472,4891171,196608 -k1,2041:6434165,16794838:-26345472 -) -(1,2041:6434165,16794838:26345472,4694563,196608 -[1,2041:6630773,16794838:25952256,4497955,0 -(1,2028:6630773,12707401:25952256,410518,101187 -(1,2027:6630773,12707401:0,0,0 -g1,2027:6630773,12707401 -g1,2027:6630773,12707401 -g1,2027:6303093,12707401 -(1,2027:6303093,12707401:0,0,0 -) -g1,2027:6630773,12707401 -) -g1,2028:8211502,12707401 -g1,2028:9159940,12707401 -h1,2028:16747436,12707401:0,0,0 -k1,2028:32583029,12707401:15835593 -g1,2028:32583029,12707401 -) -(1,2029:6630773,13373579:25952256,404226,101187 -h1,2029:6630773,13373579:0,0,0 -k1,2029:6630773,13373579:0 -h1,2029:10108375,13373579:0,0,0 -k1,2029:32583029,13373579:22474654 -g1,2029:32583029,13373579 -) -(1,2033:6630773,14039757:25952256,410518,101187 -(1,2031:6630773,14039757:0,0,0 -g1,2031:6630773,14039757 -g1,2031:6630773,14039757 -g1,2031:6303093,14039757 -(1,2031:6303093,14039757:0,0,0 -) -g1,2031:6630773,14039757 -) -g1,2033:7579210,14039757 -g1,2033:8843793,14039757 -h1,2033:16431289,14039757:0,0,0 -k1,2033:32583029,14039757:16151740 -g1,2033:32583029,14039757 -) -(1,2035:6630773,15361295:25952256,404226,76021 -(1,2034:6630773,15361295:0,0,0 -g1,2034:6630773,15361295 -g1,2034:6630773,15361295 -g1,2034:6303093,15361295 -(1,2034:6303093,15361295:0,0,0 -) -g1,2034:6630773,15361295 -) -k1,2035:6630773,15361295:0 -h1,2035:9476084,15361295:0,0,0 -k1,2035:32583028,15361295:23106944 -g1,2035:32583028,15361295 -) -(1,2040:6630773,16027473:25952256,404226,6290 -(1,2037:6630773,16027473:0,0,0 -g1,2037:6630773,16027473 -g1,2037:6630773,16027473 -g1,2037:6303093,16027473 -(1,2037:6303093,16027473:0,0,0 -) -g1,2037:6630773,16027473 -) -g1,2040:7579210,16027473 -h1,2040:8527647,16027473:0,0,0 -k1,2040:32583029,16027473:24055382 -g1,2040:32583029,16027473 -) -(1,2040:6630773,16693651:25952256,410518,101187 -h1,2040:6630773,16693651:0,0,0 -g1,2040:7579210,16693651 -g1,2040:8843793,16693651 -g1,2040:11056813,16693651 -h1,2040:11372959,16693651:0,0,0 -k1,2040:32583029,16693651:21210070 -g1,2040:32583029,16693651 -) -] -) -g1,2041:32583029,16794838 -g1,2041:6630773,16794838 -g1,2041:6630773,16794838 -g1,2041:32583029,16794838 -g1,2041:32583029,16794838 -) -h1,2041:6630773,16991446:0,0,0 -(1,2045:6630773,18357222:25952256,505283,134348 -h1,2044:6630773,18357222:983040,0,0 -k1,2044:9005275,18357222:194775 -k1,2044:11283441,18357222:194776 -k1,2044:13213610,18357222:194775 -k1,2044:15004843,18357222:194776 -k1,2044:16575219,18357222:194775 -k1,2044:17386033,18357222:194776 -k1,2044:19272948,18357222:194775 -k1,2044:22340822,18357222:194776 -k1,2044:23221759,18357222:194775 -k1,2044:25114573,18357222:194776 -k1,2044:27044741,18357222:194775 -(1,2044:27044741,18357222:0,452978,115847 -r1,2127:28809854,18357222:1765113,568825,115847 -k1,2044:27044741,18357222:-1765113 -) -(1,2044:27044741,18357222:1765113,452978,115847 -k1,2044:27044741,18357222:3277 -h1,2044:28806577,18357222:0,411205,112570 -) -k1,2044:29004630,18357222:194776 -k1,2044:29850833,18357222:194775 -k1,2044:32583029,18357222:0 -) -(1,2045:6630773,19198710:25952256,505283,126483 -g1,2044:7849087,19198710 -k1,2045:32583029,19198710:22401516 -g1,2045:32583029,19198710 -) -(1,2049:6630773,20040198:25952256,513147,126483 -h1,2048:6630773,20040198:983040,0,0 -k1,2048:10558382,20040198:154701 -(1,2048:10558382,20040198:0,452978,122846 -r1,2127:13378631,20040198:2820249,575824,122846 -k1,2048:10558382,20040198:-2820249 -) -(1,2048:10558382,20040198:2820249,452978,122846 -k1,2048:10558382,20040198:3277 -h1,2048:13375354,20040198:0,411205,112570 -) -k1,2048:13533333,20040198:154702 -k1,2048:16059782,20040198:154701 -k1,2048:16865912,20040198:154702 -k1,2048:17376473,20040198:154701 -(1,2048:17376473,20040198:0,452978,115847 -r1,2127:20548433,20040198:3171960,568825,115847 -k1,2048:17376473,20040198:-3171960 -) -(1,2048:17376473,20040198:3171960,452978,115847 -k1,2048:17376473,20040198:3277 -h1,2048:20545156,20040198:0,411205,112570 -) -k1,2048:20703135,20040198:154702 -k1,2048:22835713,20040198:154701 -k1,2048:25331361,20040198:154702 -k1,2048:26505147,20040198:154701 -k1,2048:29145630,20040198:154702 -k1,2048:29959623,20040198:154701 -k1,2048:32583029,20040198:0 -) -(1,2049:6630773,20881686:25952256,513147,134348 -k1,2048:9157388,20881686:156833 -k1,2048:10380491,20881686:156832 -k1,2048:11556409,20881686:156833 -k1,2048:14199022,20881686:156832 -k1,2048:15015147,20881686:156833 -k1,2048:18476961,20881686:156833 -k1,2048:19249831,20881686:156832 -k1,2048:20858286,20881686:156833 -k1,2048:23638525,20881686:156833 -k1,2048:25834837,20881686:156832 -k1,2048:26820700,20881686:156833 -k1,2048:28793535,20881686:156832 -k1,2048:29969453,20881686:156833 -k1,2048:32583029,20881686:0 -) -(1,2049:6630773,21723174:25952256,513147,134348 -k1,2048:7450569,21723174:160504 -k1,2048:10803986,21723174:160503 -k1,2048:13939169,21723174:160504 -k1,2048:16295783,21723174:160503 -k1,2048:19653789,21723174:160504 -k1,2048:20500454,21723174:160503 -k1,2048:23146739,21723174:160504 -k1,2048:23966534,21723174:160503 -k1,2048:27605689,21723174:160504 -k1,2048:28634544,21723174:160503 -k1,2048:29887533,21723174:160504 -k1,2049:32583029,21723174:0 -) -(1,2049:6630773,22564662:25952256,452978,115847 -(1,2048:6630773,22564662:0,452978,115847 -r1,2127:9099310,22564662:2468537,568825,115847 -k1,2048:6630773,22564662:-2468537 -) -(1,2048:6630773,22564662:2468537,452978,115847 -k1,2048:6630773,22564662:3277 -h1,2048:9096033,22564662:0,411205,112570 -) -k1,2049:32583028,22564662:23310048 -g1,2049:32583028,22564662 -) -v1,2051:6630773,23755128:0,393216,0 -(1,2064:6630773,26692661:25952256,3330749,196608 -g1,2064:6630773,26692661 -g1,2064:6630773,26692661 -g1,2064:6434165,26692661 -(1,2064:6434165,26692661:0,3330749,196608 -r1,2127:32779637,26692661:26345472,3527357,196608 -k1,2064:6434165,26692661:-26345472 -) -(1,2064:6434165,26692661:26345472,3330749,196608 -[1,2064:6630773,26692661:25952256,3134141,0 -(1,2053:6630773,23962746:25952256,404226,76021 -(1,2052:6630773,23962746:0,0,0 -g1,2052:6630773,23962746 -g1,2052:6630773,23962746 -g1,2052:6303093,23962746 -(1,2052:6303093,23962746:0,0,0 -) -g1,2052:6630773,23962746 -) -k1,2053:6630773,23962746:0 -g1,2053:9159939,23962746 -g1,2053:9792231,23962746 -h1,2053:14218271,23962746:0,0,0 -k1,2053:32583029,23962746:18364758 -g1,2053:32583029,23962746 -) -(1,2057:6630773,24628924:25952256,404226,76021 -(1,2055:6630773,24628924:0,0,0 -g1,2055:6630773,24628924 -g1,2055:6630773,24628924 -g1,2055:6303093,24628924 -(1,2055:6303093,24628924:0,0,0 -) -g1,2055:6630773,24628924 -) -g1,2057:7579210,24628924 -g1,2057:8843793,24628924 -h1,2057:9476084,24628924:0,0,0 -k1,2057:32583028,24628924:23106944 -g1,2057:32583028,24628924 -) -(1,2059:6630773,25950462:25952256,404226,82312 -(1,2058:6630773,25950462:0,0,0 -g1,2058:6630773,25950462 -g1,2058:6630773,25950462 -g1,2058:6303093,25950462 -(1,2058:6303093,25950462:0,0,0 -) -g1,2058:6630773,25950462 -) -k1,2059:6630773,25950462:0 -g1,2059:9159939,25950462 -g1,2059:9792231,25950462 -g1,2059:15166709,25950462 -h1,2059:19592748,25950462:0,0,0 -k1,2059:32583029,25950462:12990281 -g1,2059:32583029,25950462 -) -(1,2063:6630773,26616640:25952256,404226,76021 -(1,2061:6630773,26616640:0,0,0 -g1,2061:6630773,26616640 -g1,2061:6630773,26616640 -g1,2061:6303093,26616640 -(1,2061:6303093,26616640:0,0,0 -) -g1,2061:6630773,26616640 -) -g1,2063:7579210,26616640 -g1,2063:8843793,26616640 -g1,2063:9792230,26616640 -h1,2063:10424521,26616640:0,0,0 -k1,2063:32583029,26616640:22158508 -g1,2063:32583029,26616640 -) -] -) -g1,2064:32583029,26692661 -g1,2064:6630773,26692661 -g1,2064:6630773,26692661 -g1,2064:32583029,26692661 -g1,2064:32583029,26692661 -) -h1,2064:6630773,26889269:0,0,0 -(1,2068:6630773,28255045:25952256,513147,134348 -h1,2067:6630773,28255045:983040,0,0 -k1,2067:8676251,28255045:233408 -k1,2067:11302378,28255045:233408 -k1,2067:11891645,28255045:233407 -k1,2067:13990863,28255045:233408 -k1,2067:15491737,28255045:233408 -k1,2067:17617169,28255045:233408 -k1,2067:19217657,28255045:233407 -k1,2067:20133950,28255045:233408 -k1,2067:22123723,28255045:233408 -k1,2067:23724212,28255045:233408 -k1,2067:24825971,28255045:233407 -k1,2067:26151864,28255045:233408 -k1,2067:29411069,28255045:233408 -(1,2067:29411069,28255045:0,452978,115847 -r1,2127:32583029,28255045:3171960,568825,115847 -k1,2067:29411069,28255045:-3171960 -) -(1,2067:29411069,28255045:3171960,452978,115847 -k1,2067:29411069,28255045:3277 -h1,2067:32579752,28255045:0,411205,112570 -) -k1,2067:32583029,28255045:0 -) -(1,2068:6630773,29096533:25952256,505283,126483 -g1,2067:8021447,29096533 -(1,2067:8021447,29096533:0,452978,115847 -r1,2127:11193407,29096533:3171960,568825,115847 -k1,2067:8021447,29096533:-3171960 -) -(1,2067:8021447,29096533:3171960,452978,115847 -k1,2067:8021447,29096533:3277 -h1,2067:11190130,29096533:0,411205,112570 -) -g1,2067:11566306,29096533 -k1,2068:32583029,29096533:17046552 -g1,2068:32583029,29096533 -) -v1,2070:6630773,30286999:0,393216,0 -(1,2083:6630773,33224532:25952256,3330749,196608 -g1,2083:6630773,33224532 -g1,2083:6630773,33224532 -g1,2083:6434165,33224532 -(1,2083:6434165,33224532:0,3330749,196608 -r1,2127:32779637,33224532:26345472,3527357,196608 -k1,2083:6434165,33224532:-26345472 -) -(1,2083:6434165,33224532:26345472,3330749,196608 -[1,2083:6630773,33224532:25952256,3134141,0 -(1,2072:6630773,30494617:25952256,404226,101187 -(1,2071:6630773,30494617:0,0,0 -g1,2071:6630773,30494617 -g1,2071:6630773,30494617 -g1,2071:6303093,30494617 -(1,2071:6303093,30494617:0,0,0 -) -g1,2071:6630773,30494617 -) -k1,2072:6630773,30494617:0 -g1,2072:9792231,30494617 -g1,2072:10424523,30494617 -h1,2072:12637543,30494617:0,0,0 -k1,2072:32583029,30494617:19945486 -g1,2072:32583029,30494617 -) -(1,2076:6630773,31160795:25952256,404226,76021 -(1,2074:6630773,31160795:0,0,0 -g1,2074:6630773,31160795 -g1,2074:6630773,31160795 -g1,2074:6303093,31160795 -(1,2074:6303093,31160795:0,0,0 -) -g1,2074:6630773,31160795 -) -g1,2076:7579210,31160795 -g1,2076:8843793,31160795 -h1,2076:10740667,31160795:0,0,0 -k1,2076:32583029,31160795:21842362 -g1,2076:32583029,31160795 -) -(1,2078:6630773,32482333:25952256,404226,76021 -(1,2077:6630773,32482333:0,0,0 -g1,2077:6630773,32482333 -g1,2077:6630773,32482333 -g1,2077:6303093,32482333 -(1,2077:6303093,32482333:0,0,0 -) -g1,2077:6630773,32482333 -) -k1,2078:6630773,32482333:0 -g1,2078:9792231,32482333 -g1,2078:10424523,32482333 -h1,2078:12637543,32482333:0,0,0 -k1,2078:32583029,32482333:19945486 -g1,2078:32583029,32482333 -) -(1,2082:6630773,33148511:25952256,404226,76021 -(1,2080:6630773,33148511:0,0,0 -g1,2080:6630773,33148511 -g1,2080:6630773,33148511 -g1,2080:6303093,33148511 -(1,2080:6303093,33148511:0,0,0 -) -g1,2080:6630773,33148511 -) -g1,2082:7579210,33148511 -g1,2082:8843793,33148511 -h1,2082:10740667,33148511:0,0,0 -k1,2082:32583029,33148511:21842362 -g1,2082:32583029,33148511 -) -] -) -g1,2083:32583029,33224532 -g1,2083:6630773,33224532 -g1,2083:6630773,33224532 -g1,2083:32583029,33224532 -g1,2083:32583029,33224532 -) -h1,2083:6630773,33421140:0,0,0 -(1,2087:6630773,34786916:25952256,513147,134348 -h1,2086:6630773,34786916:983040,0,0 -k1,2086:10550644,34786916:146963 -(1,2086:10550644,34786916:0,452978,115847 -r1,2127:13722604,34786916:3171960,568825,115847 -k1,2086:10550644,34786916:-3171960 -) -(1,2086:10550644,34786916:3171960,452978,115847 -k1,2086:10550644,34786916:3277 -h1,2086:13719327,34786916:0,411205,112570 -) -k1,2086:13869567,34786916:146963 -k1,2086:15713257,34786916:146963 -k1,2086:16216080,34786916:146963 -k1,2086:18228853,34786916:146963 -k1,2086:19027244,34786916:146963 -k1,2086:19530067,34786916:146963 -k1,2086:22873876,34786916:146963 -k1,2086:25506620,34786916:146963 -k1,2086:26312875,34786916:146963 -k1,2086:29764819,34786916:146963 -k1,2086:30594667,34786916:146963 -k1,2087:32583029,34786916:0 -k1,2087:32583029,34786916:0 -) -v1,2089:6630773,35977382:0,393216,0 -(1,2114:6630773,42890347:25952256,7306181,196608 -g1,2114:6630773,42890347 -g1,2114:6630773,42890347 -g1,2114:6434165,42890347 -(1,2114:6434165,42890347:0,7306181,196608 -r1,2127:32779637,42890347:26345472,7502789,196608 -k1,2114:6434165,42890347:-26345472 -) -(1,2114:6434165,42890347:26345472,7306181,196608 -[1,2114:6630773,42890347:25952256,7109573,0 -(1,2091:6630773,36185000:25952256,404226,82312 -(1,2090:6630773,36185000:0,0,0 -g1,2090:6630773,36185000 -g1,2090:6630773,36185000 -g1,2090:6303093,36185000 -(1,2090:6303093,36185000:0,0,0 -) -g1,2090:6630773,36185000 -) -k1,2091:6630773,36185000:0 -g1,2091:9792231,36185000 -g1,2091:10424523,36185000 -g1,2091:15166709,36185000 -g1,2091:17063583,36185000 -g1,2091:17695875,36185000 -h1,2091:18328167,36185000:0,0,0 -k1,2091:32583029,36185000:14254862 -g1,2091:32583029,36185000 -) -(1,2095:6630773,36851178:25952256,404226,76021 -(1,2093:6630773,36851178:0,0,0 -g1,2093:6630773,36851178 -g1,2093:6630773,36851178 -g1,2093:6303093,36851178 -(1,2093:6303093,36851178:0,0,0 -) -g1,2093:6630773,36851178 -) -g1,2095:7579210,36851178 -g1,2095:8843793,36851178 -h1,2095:11372958,36851178:0,0,0 -k1,2095:32583030,36851178:21210072 -g1,2095:32583030,36851178 -) -(1,2097:6630773,38172716:25952256,404226,82312 -(1,2096:6630773,38172716:0,0,0 -g1,2096:6630773,38172716 -g1,2096:6630773,38172716 -g1,2096:6303093,38172716 -(1,2096:6303093,38172716:0,0,0 -) -g1,2096:6630773,38172716 -) -k1,2097:6630773,38172716:0 -g1,2097:9792231,38172716 -g1,2097:10424523,38172716 -g1,2097:12953689,38172716 -g1,2097:14850563,38172716 -g1,2097:15482855,38172716 -h1,2097:16115147,38172716:0,0,0 -k1,2097:32583029,38172716:16467882 -g1,2097:32583029,38172716 -) -(1,2101:6630773,38838894:25952256,404226,76021 -(1,2099:6630773,38838894:0,0,0 -g1,2099:6630773,38838894 -g1,2099:6630773,38838894 -g1,2099:6303093,38838894 -(1,2099:6303093,38838894:0,0,0 -) -g1,2099:6630773,38838894 -) -g1,2101:7579210,38838894 -g1,2101:8843793,38838894 -h1,2101:10740667,38838894:0,0,0 -k1,2101:32583029,38838894:21842362 -g1,2101:32583029,38838894 -) -(1,2103:6630773,40160432:25952256,404226,82312 -(1,2102:6630773,40160432:0,0,0 -g1,2102:6630773,40160432 -g1,2102:6630773,40160432 -g1,2102:6303093,40160432 -(1,2102:6303093,40160432:0,0,0 -) -g1,2102:6630773,40160432 -) -k1,2103:6630773,40160432:0 -g1,2103:9792231,40160432 -g1,2103:10424523,40160432 -g1,2103:15799001,40160432 -g1,2103:20541187,40160432 -h1,2103:21173479,40160432:0,0,0 -k1,2103:32583029,40160432:11409550 -g1,2103:32583029,40160432 -) -(1,2107:6630773,40826610:25952256,404226,76021 -(1,2105:6630773,40826610:0,0,0 -g1,2105:6630773,40826610 -g1,2105:6630773,40826610 -g1,2105:6303093,40826610 -(1,2105:6303093,40826610:0,0,0 -) -g1,2105:6630773,40826610 -) -g1,2107:7579210,40826610 -g1,2107:8843793,40826610 -g1,2107:11689104,40826610 -h1,2107:14218269,40826610:0,0,0 -k1,2107:32583029,40826610:18364760 -g1,2107:32583029,40826610 -) -(1,2109:6630773,42148148:25952256,404226,82312 -(1,2108:6630773,42148148:0,0,0 -g1,2108:6630773,42148148 -g1,2108:6630773,42148148 -g1,2108:6303093,42148148 -(1,2108:6303093,42148148:0,0,0 -) -g1,2108:6630773,42148148 -) -k1,2109:6630773,42148148:0 -g1,2109:9792231,42148148 -g1,2109:10424523,42148148 -g1,2109:15799001,42148148 -g1,2109:20541187,42148148 -g1,2109:22121917,42148148 -h1,2109:23070354,42148148:0,0,0 -k1,2109:32583029,42148148:9512675 -g1,2109:32583029,42148148 -) -(1,2113:6630773,42814326:25952256,404226,76021 -(1,2111:6630773,42814326:0,0,0 -g1,2111:6630773,42814326 -g1,2111:6630773,42814326 -g1,2111:6303093,42814326 -(1,2111:6303093,42814326:0,0,0 -) -g1,2111:6630773,42814326 -) -g1,2113:7579210,42814326 -g1,2113:8843793,42814326 -g1,2113:11689104,42814326 -h1,2113:13269832,42814326:0,0,0 -k1,2113:32583028,42814326:19313196 -g1,2113:32583028,42814326 -) -] -) -g1,2114:32583029,42890347 -g1,2114:6630773,42890347 -g1,2114:6630773,42890347 -g1,2114:32583029,42890347 -g1,2114:32583029,42890347 -) -h1,2114:6630773,43086955:0,0,0 -(1,2118:6630773,44452731:25952256,513147,134348 -h1,2117:6630773,44452731:983040,0,0 -k1,2117:10562331,44452731:158650 -(1,2117:10562331,44452731:0,452978,115847 -r1,2127:13734291,44452731:3171960,568825,115847 -k1,2117:10562331,44452731:-3171960 -) -(1,2117:10562331,44452731:3171960,452978,115847 -k1,2117:10562331,44452731:3277 -h1,2117:13731014,44452731:0,411205,112570 -) -k1,2117:13892941,44452731:158650 -k1,2117:15608072,44452731:158651 -k1,2117:16122582,44452731:158650 -k1,2117:18147042,44452731:158650 -k1,2117:18957120,44452731:158650 -k1,2117:19471631,44452731:158651 -k1,2117:22827127,44452731:158650 -k1,2117:25471558,44452731:158650 -k1,2117:26289500,44452731:158650 -k1,2117:29753132,44452731:158651 -k1,2117:30594667,44452731:158650 -k1,2118:32583029,44452731:0 -k1,2118:32583029,44452731:0 -) -v1,2120:6630773,45643197:0,393216,0 +v1,2042:6630773,6254097:0,393216,0 +(1,2043:6630773,12752303:25952256,6891422,0 +g1,2043:6630773,12752303 +g1,2043:6237557,12752303 +r1,2127:6368629,12752303:131072,6891422,0 +g1,2043:6567858,12752303 +g1,2043:6764466,12752303 +[1,2043:6764466,12752303:25818563,6891422,0 +(1,2043:6764466,6562395:25818563,701514,196608 +(1,2042:6764466,6562395:0,701514,196608 +r1,2127:8010564,6562395:1246098,898122,196608 +k1,2042:6764466,6562395:-1246098 +) +(1,2042:6764466,6562395:1246098,701514,196608 +) +k1,2042:8278225,6562395:267661 +k1,2042:8605905,6562395:327680 +k1,2042:9501402,6562395:267662 +k1,2042:11520840,6562395:267661 +k1,2042:14864761,6562395:267661 +k1,2042:18478690,6562395:267661 +k1,2042:21054530,6562395:267662 +k1,2042:21981483,6562395:267661 +k1,2042:25554125,6562395:267661 +k1,2042:26813347,6562395:267662 +k1,2042:29496665,6562395:267661 +k1,2042:31331947,6562395:267661 +k1,2043:32583029,6562395:0 +) +(1,2043:6764466,7427475:25818563,513147,134348 +k1,2042:8214559,7427475:180005 +k1,2042:9053857,7427475:180006 +k1,2042:12208541,7427475:180005 +k1,2042:14758329,7427475:180006 +k1,2042:15566169,7427475:180005 +k1,2042:17442902,7427475:180006 +k1,2042:20969175,7427475:180005 +k1,2042:24123860,7427475:180006 +k1,2042:26612043,7427475:180005 +k1,2042:28409478,7427475:180006 +k1,2042:29202245,7427475:180005 +k1,2042:30833873,7427475:180006 +k1,2042:32583029,7427475:0 +) +(1,2043:6764466,8292555:25818563,513147,134348 +k1,2042:9592727,8292555:214030 +k1,2042:10162616,8292555:214029 +k1,2042:12249665,8292555:214030 +k1,2042:15612045,8292555:214030 +k1,2042:17515592,8292555:214029 +k1,2042:20037800,8292555:214030 +k1,2042:20911122,8292555:214030 +k1,2042:24099830,8292555:214029 +k1,2042:26509971,8292555:214030 +k1,2042:28341430,8292555:214030 +k1,2042:29168221,8292555:214029 +k1,2042:30833873,8292555:214030 +k1,2042:32583029,8292555:0 +) +(1,2043:6764466,9157635:25818563,513147,134348 +k1,2042:9623146,9157635:244449 +k1,2042:12063707,9157635:244450 +k1,2042:12967448,9157635:244449 +k1,2042:16516878,9157635:244449 +k1,2042:17420619,9157635:244449 +k1,2042:20007326,9157635:244450 +k1,2042:22769013,9157635:244449 +k1,2042:24507028,9157635:244449 +k1,2042:25437639,9157635:244449 +k1,2042:27637028,9157635:244450 +k1,2042:28564362,9157635:244449 +k1,2042:32105272,9157635:244449 +k1,2042:32583029,9157635:0 +) +(1,2043:6764466,10022715:25818563,513147,126483 +k1,2042:8186613,10022715:251674 +k1,2042:9429846,10022715:251673 +k1,2042:12173854,10022715:251674 +k1,2042:13819479,10022715:251674 +k1,2042:14524609,10022715:251621 +k1,2042:15459167,10022715:251673 +k1,2042:17167706,10022715:251674 +k1,2042:18589853,10022715:251674 +k1,2042:20371793,10022715:251674 +k1,2042:21274894,10022715:251673 +k1,2042:23034551,10022715:251674 +k1,2042:23902263,10022715:251674 +k1,2042:25810686,10022715:251673 +k1,2042:27346866,10022715:251674 +k1,2042:28556021,10022715:251674 +(1,2042:28556021,10022715:0,452978,115847 +r1,2127:29969422,10022715:1413401,568825,115847 +k1,2042:28556021,10022715:-1413401 +) +(1,2042:28556021,10022715:1413401,452978,115847 +k1,2042:28556021,10022715:3277 +h1,2042:29966145,10022715:0,411205,112570 +) +k1,2042:30221095,10022715:251673 +k1,2042:31664214,10022715:251674 +k1,2043:32583029,10022715:0 +) +(1,2043:6764466,10887795:25818563,505283,134348 +(1,2042:6764466,10887795:0,452978,115847 +r1,2127:9936426,10887795:3171960,568825,115847 +k1,2042:6764466,10887795:-3171960 +) +(1,2042:6764466,10887795:3171960,452978,115847 +k1,2042:6764466,10887795:3277 +h1,2042:9933149,10887795:0,411205,112570 +) +k1,2042:10163179,10887795:226753 +k1,2042:11381492,10887795:226753 +k1,2042:12674516,10887795:226753 +k1,2042:16206250,10887795:226753 +k1,2042:17624448,10887795:226753 +k1,2042:19135707,10887795:226753 +k1,2042:19978499,10887795:226754 +k1,2042:20793765,10887795:226753 +k1,2042:21648353,10887795:226753 +k1,2042:24506377,10887795:226753 +k1,2042:25384558,10887795:226753 +k1,2042:27308038,10887795:226753 +k1,2042:29236761,10887795:226753 +k1,2042:32583029,10887795:0 +) +(1,2043:6764466,11752875:25818563,513147,126483 +k1,2042:7551253,11752875:170749 +k1,2042:8136816,11752875:170720 +k1,2042:9962348,11752875:170748 +k1,2042:10664594,11752875:170749 +k1,2042:11644712,11752875:170748 +k1,2042:15253480,11752875:170749 +k1,2042:16979398,11752875:170749 +k1,2042:18097797,11752875:170748 +k1,2042:20576724,11752875:170749 +k1,2042:21406764,11752875:170748 +k1,2042:24770427,11752875:170749 +k1,2042:28246156,11752875:170748 +k1,2042:29608350,11752875:170749 +k1,2042:32583029,11752875:0 +) +(1,2043:6764466,12617955:25818563,513147,134348 +g1,2042:10051751,12617955 +g1,2042:13044780,12617955 +g1,2042:13860047,12617955 +g1,2042:16242280,12617955 +g1,2042:17124394,12617955 +g1,2042:19196642,12617955 +g1,2042:21544141,12617955 +g1,2042:22734930,12617955 +g1,2042:24000430,12617955 +k1,2043:32583029,12617955:5646586 +g1,2043:32583029,12617955 +) +] +g1,2043:32583029,12752303 +) +h1,2043:6630773,12752303:0,0,0 +(1,2046:6630773,13617383:25952256,513147,134348 +h1,2045:6630773,13617383:983040,0,0 +k1,2045:12356653,13617383:166461 +k1,2045:15497794,13617383:166462 +k1,2045:17972433,13617383:166461 +k1,2045:18798187,13617383:166462 +k1,2045:20977914,13617383:166461 +k1,2045:22301086,13617383:166462 +k1,2045:23960457,13617383:166461 +k1,2045:25193190,13617383:166462 +k1,2045:26895160,13617383:166461 +k1,2045:27417482,13617383:166462 +k1,2045:29608350,13617383:166461 +k1,2045:32583029,13617383:0 +) +(1,2046:6630773,14482463:25952256,513147,134348 +g1,2045:8869482,14482463 +g1,2045:9526808,14482463 +g1,2045:11591847,14482463 +g1,2045:14118259,14482463 +g1,2045:14673348,14482463 +g1,2045:16896984,14482463 +g1,2045:19074090,14482463 +g1,2045:19932611,14482463 +g1,2045:23106519,14482463 +k1,2046:32583029,14482463:7106728 +g1,2046:32583029,14482463 +) +v1,2048:6630773,15167318:0,393216,0 +(1,2058:6630773,18378493:25952256,3604391,196608 +g1,2058:6630773,18378493 +g1,2058:6630773,18378493 +g1,2058:6434165,18378493 +(1,2058:6434165,18378493:0,3604391,196608 +r1,2127:32779637,18378493:26345472,3800999,196608 +k1,2058:6434165,18378493:-26345472 +) +(1,2058:6434165,18378493:26345472,3604391,196608 +[1,2058:6630773,18378493:25952256,3407783,0 +(1,2050:6630773,15395149:25952256,424439,9908 +(1,2049:6630773,15395149:0,0,0 +g1,2049:6630773,15395149 +g1,2049:6630773,15395149 +g1,2049:6303093,15395149 +(1,2049:6303093,15395149:0,0,0 +) +g1,2049:6630773,15395149 +) +g1,2050:8290543,15395149 +g1,2050:9286405,15395149 +h1,2050:10946175,15395149:0,0,0 +k1,2050:32583029,15395149:21636854 +g1,2050:32583029,15395149 +) +(1,2051:6630773,16080004:25952256,431045,112852 +h1,2051:6630773,16080004:0,0,0 +g1,2051:8290543,16080004 +g1,2051:9286405,16080004 +h1,2051:11942036,16080004:0,0,0 +k1,2051:32583028,16080004:20640992 +g1,2051:32583028,16080004 +) +(1,2052:6630773,16764859:25952256,424439,106246 +h1,2052:6630773,16764859:0,0,0 +g1,2052:8290543,16764859 +g1,2052:9286405,16764859 +g1,2052:12273991,16764859 +h1,2052:14265715,16764859:0,0,0 +k1,2052:32583029,16764859:18317314 +g1,2052:32583029,16764859 +) +(1,2053:6630773,17449714:25952256,424439,86428 +h1,2053:6630773,17449714:0,0,0 +g1,2053:9286405,17449714 +g1,2053:11278129,17449714 +h1,2053:12937899,17449714:0,0,0 +k1,2053:32583029,17449714:19645130 +g1,2053:32583029,17449714 +) +(1,2057:6630773,18265641:25952256,431045,112852 +(1,2055:6630773,18265641:0,0,0 +g1,2055:6630773,18265641 +g1,2055:6630773,18265641 +g1,2055:6303093,18265641 +(1,2055:6303093,18265641:0,0,0 +) +g1,2055:6630773,18265641 +) +g1,2057:7626635,18265641 +g1,2057:8954451,18265641 +g1,2057:10946175,18265641 +g1,2057:11278129,18265641 +g1,2057:11610083,18265641 +g1,2057:11942037,18265641 +g1,2057:14929622,18265641 +g1,2057:16921346,18265641 +g1,2057:17253300,18265641 +g1,2057:17585254,18265641 +g1,2057:17917208,18265641 +h1,2057:19576978,18265641:0,0,0 +k1,2057:32583029,18265641:13006051 +g1,2057:32583029,18265641 +) +] +) +g1,2058:32583029,18378493 +g1,2058:6630773,18378493 +g1,2058:6630773,18378493 +g1,2058:32583029,18378493 +g1,2058:32583029,18378493 +) +h1,2058:6630773,18575101:0,0,0 +(1,2062:6630773,19440181:25952256,513147,134348 +h1,2061:6630773,19440181:983040,0,0 +k1,2061:10042160,19440181:219784 +k1,2061:11434383,19440181:219784 +k1,2061:14416509,19440181:219783 +k1,2061:17854766,19440181:219784 +k1,2061:20858519,19440181:219784 +k1,2061:23124337,19440181:219784 +k1,2061:23802218,19440181:219784 +k1,2061:26651962,19440181:219784 +k1,2061:27523173,19440181:219783 +k1,2061:29958074,19440181:219784 +k1,2061:31196943,19440181:219784 +k1,2061:32583029,19440181:0 +) +(1,2062:6630773,20305261:25952256,513147,126483 +k1,2061:7470743,20305261:180678 +k1,2061:10745375,20305261:180677 +k1,2061:12913105,20305261:180678 +k1,2061:14607008,20305261:180677 +k1,2061:15473848,20305261:180678 +k1,2061:18872998,20305261:180677 +k1,2061:19778504,20305261:180678 +k1,2061:21243687,20305261:180677 +k1,2061:23126335,20305261:180678 +k1,2061:26400967,20305261:180677 +k1,2061:28568697,20305261:180678 +k1,2061:29853656,20305261:180677 +k1,2061:30782100,20305261:180678 +k1,2061:32583029,20305261:0 +) +(1,2062:6630773,21170341:25952256,505283,134348 +g1,2061:9588412,21170341 +g1,2061:10403679,21170341 +g1,2061:10958768,21170341 +k1,2062:32583028,21170341:19584780 +g1,2062:32583028,21170341 +) +v1,2064:6630773,21855196:0,393216,0 +(1,2077:6630773,24610630:25952256,3148650,196608 +g1,2077:6630773,24610630 +g1,2077:6630773,24610630 +g1,2077:6434165,24610630 +(1,2077:6434165,24610630:0,3148650,196608 +r1,2127:32779637,24610630:26345472,3345258,196608 +k1,2077:6434165,24610630:-26345472 +) +(1,2077:6434165,24610630:26345472,3148650,196608 +[1,2077:6630773,24610630:25952256,2952042,0 +(1,2066:6630773,22083027:25952256,424439,6605 +(1,2065:6630773,22083027:0,0,0 +g1,2065:6630773,22083027 +g1,2065:6630773,22083027 +g1,2065:6303093,22083027 +(1,2065:6303093,22083027:0,0,0 +) +g1,2065:6630773,22083027 +) +g1,2066:7958589,22083027 +g1,2066:9618359,22083027 +g1,2066:12273991,22083027 +g1,2066:13933761,22083027 +g1,2066:14929623,22083027 +g1,2066:16589393,22083027 +h1,2066:17585255,22083027:0,0,0 +k1,2066:32583029,22083027:14997774 +g1,2066:32583029,22083027 +) +(1,2070:6630773,22898954:25952256,424439,79822 +(1,2068:6630773,22898954:0,0,0 +g1,2068:6630773,22898954 +g1,2068:6630773,22898954 +g1,2068:6303093,22898954 +(1,2068:6303093,22898954:0,0,0 +) +g1,2068:6630773,22898954 +) +g1,2070:7626635,22898954 +g1,2070:8954451,22898954 +g1,2070:10282267,22898954 +g1,2070:11942037,22898954 +g1,2070:14597669,22898954 +g1,2070:16257439,22898954 +g1,2070:17253301,22898954 +g1,2070:18913071,22898954 +h1,2070:19908933,22898954:0,0,0 +k1,2070:32583029,22898954:12674096 +g1,2070:32583029,22898954 +) +(1,2072:6630773,23714881:25952256,424439,6605 +(1,2071:6630773,23714881:0,0,0 +g1,2071:6630773,23714881 +g1,2071:6630773,23714881 +g1,2071:6303093,23714881 +(1,2071:6303093,23714881:0,0,0 +) +g1,2071:6630773,23714881 +) +g1,2072:7958589,23714881 +g1,2072:9618359,23714881 +g1,2072:12273991,23714881 +g1,2072:13933761,23714881 +g1,2072:14929623,23714881 +g1,2072:16589393,23714881 +h1,2072:17585255,23714881:0,0,0 +k1,2072:32583029,23714881:14997774 +g1,2072:32583029,23714881 +) +(1,2076:6630773,24530808:25952256,424439,79822 +(1,2074:6630773,24530808:0,0,0 +g1,2074:6630773,24530808 +g1,2074:6630773,24530808 +g1,2074:6303093,24530808 +(1,2074:6303093,24530808:0,0,0 +) +g1,2074:6630773,24530808 +) +g1,2076:7626635,24530808 +g1,2076:8954451,24530808 +g1,2076:10282267,24530808 +g1,2076:11942037,24530808 +g1,2076:15261576,24530808 +g1,2076:16921346,24530808 +g1,2076:17917208,24530808 +g1,2076:19576978,24530808 +h1,2076:20572840,24530808:0,0,0 +k1,2076:32583029,24530808:12010189 +g1,2076:32583029,24530808 +) +] +) +g1,2077:32583029,24610630 +g1,2077:6630773,24610630 +g1,2077:6630773,24610630 +g1,2077:32583029,24610630 +g1,2077:32583029,24610630 +) +h1,2077:6630773,24807238:0,0,0 +(1,2081:6630773,25672318:25952256,513147,134348 +h1,2080:6630773,25672318:983040,0,0 +k1,2080:9011415,25672318:200915 +k1,2080:10914299,25672318:200914 +k1,2080:13263484,25672318:200915 +k1,2080:14455959,25672318:200915 +k1,2080:15723144,25672318:200914 +k1,2080:17245920,25672318:200915 +k1,2080:18106126,25672318:200914 +k1,2080:19326126,25672318:200915 +k1,2080:21566521,25672318:200915 +k1,2080:23147623,25672318:200914 +k1,2080:24340098,25672318:200915 +k1,2080:28359796,25672318:200915 +k1,2080:30073936,25672318:200914 +k1,2080:30926279,25672318:200915 +k1,2080:32583029,25672318:0 +) +(1,2081:6630773,26537398:25952256,505283,126483 +k1,2080:7855516,26537398:205658 +k1,2080:11803280,26537398:205658 +k1,2080:12826827,26537398:205658 +k1,2080:14202957,26537398:205657 +k1,2080:15512897,26537398:205658 +k1,2080:16743538,26537398:205658 +k1,2080:18647234,26537398:205658 +(1,2080:18647234,26537398:0,452978,115847 +r1,2127:19005500,26537398:358266,568825,115847 +k1,2080:18647234,26537398:-358266 +) +(1,2080:18647234,26537398:358266,452978,115847 +k1,2080:18647234,26537398:3277 +h1,2080:19002223,26537398:0,411205,112570 +) +k1,2080:19211158,26537398:205658 +k1,2080:19948313,26537398:205658 +k1,2080:22504092,26537398:205658 +k1,2080:24903894,26537398:205657 +k1,2080:28414533,26537398:205658 +k1,2080:29724473,26537398:205658 +k1,2080:30677897,26537398:205658 +k1,2081:32583029,26537398:0 +) +(1,2081:6630773,27402478:25952256,513147,134348 +k1,2080:8916575,27402478:168334 +k1,2080:10820302,27402478:168334 +k1,2080:13423953,27402478:168333 +k1,2080:15892601,27402478:168334 +k1,2080:17893322,27402478:168334 +k1,2080:19053216,27402478:168334 +k1,2080:21453050,27402478:168333 +k1,2080:22280676,27402478:168334 +k1,2080:24261736,27402478:168334 +k1,2080:25621515,27402478:168334 +k1,2080:27187732,27402478:168334 +k1,2080:28224417,27402478:168333 +k1,2080:29525213,27402478:168334 +k1,2080:31354229,27402478:168334 +k1,2080:32583029,27402478:0 +) +(1,2081:6630773,28267558:25952256,530548,126483 +k1,2080:8366784,28267558:199847 +k1,2080:9849827,28267558:199848 +k1,2080:11218181,28267558:199847 +h1,2080:11425275,28267558:0,0,0 +k1,2080:12662101,28267558:199847 +k1,2080:14053394,28267558:199848 +k1,2080:15266428,28267558:199847 +h1,2080:15473522,28267558:0,0,0 +k1,2080:16884018,28267558:199847 +h1,2080:16884018,28267558:0,0,0 +k1,2080:17913751,28267558:199848 +k1,2080:19132683,28267558:199847 +k1,2080:21467693,28267558:199847 +k1,2080:23163727,28267558:199847 +k1,2080:24311226,28267558:199848 +k1,2080:24866933,28267558:199847 +k1,2080:28160735,28267558:199847 +k1,2080:30017333,28267558:199848 +k1,2080:32227169,28267558:199847 +k1,2080:32583029,28267558:0 +) +(1,2081:6630773,29132638:25952256,530548,134348 +k1,2080:8691206,29132638:194623 +k1,2080:10077274,29132638:194623 +h1,2080:10077274,29132638:0,0,0 +k1,2080:11101783,29132638:194624 +k1,2080:12315491,29132638:194623 +k1,2080:14645277,29132638:194623 +k1,2080:16336087,29132638:194623 +k1,2080:17478362,29132638:194624 +k1,2080:18028845,29132638:194623 +k1,2080:20096487,29132638:194623 +k1,2080:23409968,29132638:194623 +h1,2080:23409968,29132638:0,0,0 +k1,2080:24193204,29132638:194624 +k1,2080:25341376,29132638:194623 +k1,2080:26821815,29132638:194623 +k1,2080:28677120,29132638:194623 +k1,2080:30269627,29132638:194624 +k1,2080:31483335,29132638:194623 +k1,2081:32583029,29132638:0 +) +(1,2081:6630773,29997718:25952256,513147,134348 +k1,2080:8700735,29997718:150412 +k1,2080:11610868,29997718:150412 +k1,2080:12428435,29997718:150411 +(1,2080:12428435,29997718:0,452978,115847 +r1,2127:14896972,29997718:2468537,568825,115847 +k1,2080:12428435,29997718:-2468537 +) +(1,2080:12428435,29997718:2468537,452978,115847 +k1,2080:12428435,29997718:3277 +h1,2080:14893695,29997718:0,411205,112570 +) +k1,2080:15047384,29997718:150412 +k1,2080:16389241,29997718:150412 +(1,2080:16389241,29997718:0,452978,115847 +r1,2127:18154354,29997718:1765113,568825,115847 +k1,2080:16389241,29997718:-1765113 +) +(1,2080:16389241,29997718:1765113,452978,115847 +k1,2080:16389241,29997718:3277 +h1,2080:18151077,29997718:0,411205,112570 +) +k1,2080:18478436,29997718:150412 +k1,2080:20022799,29997718:150412 +(1,2080:20022799,29997718:0,452978,115847 +r1,2127:21787912,29997718:1765113,568825,115847 +k1,2080:20022799,29997718:-1765113 +) +(1,2080:20022799,29997718:1765113,452978,115847 +k1,2080:20022799,29997718:3277 +h1,2080:21784635,29997718:0,411205,112570 +) +k1,2080:21938324,29997718:150412 +k1,2080:25857710,29997718:150411 +k1,2080:27027207,29997718:150412 +k1,2080:29312782,29997718:150412 +k1,2080:32583029,29997718:0 +) +(1,2081:6630773,30862798:25952256,505283,134348 +g1,2080:8021447,30862798 +(1,2080:8021447,30862798:0,452978,115847 +r1,2127:10489984,30862798:2468537,568825,115847 +k1,2080:8021447,30862798:-2468537 +) +(1,2080:8021447,30862798:2468537,452978,115847 +k1,2080:8021447,30862798:3277 +h1,2080:10486707,30862798:0,411205,112570 +) +g1,2080:10689213,30862798 +g1,2080:14173762,30862798 +g1,2080:16012046,30862798 +g1,2080:16897437,30862798 +k1,2081:32583029,30862798:13089056 +g1,2081:32583029,30862798 +) +v1,2083:6630773,31547653:0,393216,0 +(1,2098:6630773,35705827:25952256,4551390,196608 +g1,2098:6630773,35705827 +g1,2098:6630773,35705827 +g1,2098:6434165,35705827 +(1,2098:6434165,35705827:0,4551390,196608 +r1,2127:32779637,35705827:26345472,4747998,196608 +k1,2098:6434165,35705827:-26345472 +) +(1,2098:6434165,35705827:26345472,4551390,196608 +[1,2098:6630773,35705827:25952256,4354782,0 +(1,2085:6630773,31782090:25952256,431045,106246 +(1,2084:6630773,31782090:0,0,0 +g1,2084:6630773,31782090 +g1,2084:6630773,31782090 +g1,2084:6303093,31782090 +(1,2084:6303093,31782090:0,0,0 +) +g1,2084:6630773,31782090 +) +g1,2085:8290543,31782090 +g1,2085:9286405,31782090 +h1,2085:17253299,31782090:0,0,0 +k1,2085:32583029,31782090:15329730 +g1,2085:32583029,31782090 +) +(1,2086:6630773,32466945:25952256,424439,106246 +h1,2086:6630773,32466945:0,0,0 +k1,2086:6630773,32466945:0 +h1,2086:10282267,32466945:0,0,0 +k1,2086:32583029,32466945:22300762 +g1,2086:32583029,32466945 +) +(1,2090:6630773,33282872:25952256,431045,106246 +(1,2088:6630773,33282872:0,0,0 +g1,2088:6630773,33282872 +g1,2088:6630773,33282872 +g1,2088:6303093,33282872 +(1,2088:6303093,33282872:0,0,0 +) +g1,2088:6630773,33282872 +) +g1,2090:7626635,33282872 +g1,2090:8954451,33282872 +h1,2090:16921345,33282872:0,0,0 +k1,2090:32583029,33282872:15661684 +g1,2090:32583029,33282872 +) +(1,2092:6630773,34098799:25952256,424439,79822 +(1,2091:6630773,34098799:0,0,0 +g1,2091:6630773,34098799 +g1,2091:6630773,34098799 +g1,2091:6303093,34098799 +(1,2091:6303093,34098799:0,0,0 +) +g1,2091:6630773,34098799 +) +k1,2092:6630773,34098799:0 +h1,2092:9618359,34098799:0,0,0 +k1,2092:32583029,34098799:22964670 +g1,2092:32583029,34098799 +) +(1,2097:6630773,34914726:25952256,424439,6605 +(1,2094:6630773,34914726:0,0,0 +g1,2094:6630773,34914726 +g1,2094:6630773,34914726 +g1,2094:6303093,34914726 +(1,2094:6303093,34914726:0,0,0 +) +g1,2094:6630773,34914726 +) +g1,2097:7626635,34914726 +h1,2097:8622497,34914726:0,0,0 +k1,2097:32583029,34914726:23960532 +g1,2097:32583029,34914726 +) +(1,2097:6630773,35599581:25952256,431045,106246 +h1,2097:6630773,35599581:0,0,0 +g1,2097:7626635,35599581 +g1,2097:8954451,35599581 +g1,2097:11278129,35599581 +h1,2097:11610083,35599581:0,0,0 +k1,2097:32583029,35599581:20972946 +g1,2097:32583029,35599581 +) +] +) +g1,2098:32583029,35705827 +g1,2098:6630773,35705827 +g1,2098:6630773,35705827 +g1,2098:32583029,35705827 +g1,2098:32583029,35705827 +) +h1,2098:6630773,35902435:0,0,0 +(1,2102:6630773,36767515:25952256,505283,134348 +h1,2101:6630773,36767515:983040,0,0 +k1,2101:9005275,36767515:194775 +k1,2101:11283441,36767515:194776 +k1,2101:13213610,36767515:194775 +k1,2101:15004843,36767515:194776 +k1,2101:16575219,36767515:194775 +k1,2101:17386033,36767515:194776 +k1,2101:19272948,36767515:194775 +k1,2101:22340822,36767515:194776 +k1,2101:23221759,36767515:194775 +k1,2101:25114573,36767515:194776 +k1,2101:27044741,36767515:194775 +(1,2101:27044741,36767515:0,452978,115847 +r1,2127:28809854,36767515:1765113,568825,115847 +k1,2101:27044741,36767515:-1765113 +) +(1,2101:27044741,36767515:1765113,452978,115847 +k1,2101:27044741,36767515:3277 +h1,2101:28806577,36767515:0,411205,112570 +) +k1,2101:29004630,36767515:194776 +k1,2101:29850833,36767515:194775 +k1,2101:32583029,36767515:0 +) +(1,2102:6630773,37632595:25952256,505283,126483 +g1,2101:7849087,37632595 +k1,2102:32583029,37632595:22401516 +g1,2102:32583029,37632595 +) +(1,2106:6630773,38497675:25952256,513147,126483 +h1,2105:6630773,38497675:983040,0,0 +k1,2105:10558382,38497675:154701 +(1,2105:10558382,38497675:0,452978,122846 +r1,2127:13378631,38497675:2820249,575824,122846 +k1,2105:10558382,38497675:-2820249 +) +(1,2105:10558382,38497675:2820249,452978,122846 +k1,2105:10558382,38497675:3277 +h1,2105:13375354,38497675:0,411205,112570 +) +k1,2105:13533333,38497675:154702 +k1,2105:16059782,38497675:154701 +k1,2105:16865912,38497675:154702 +k1,2105:17376473,38497675:154701 +(1,2105:17376473,38497675:0,452978,115847 +r1,2127:20548433,38497675:3171960,568825,115847 +k1,2105:17376473,38497675:-3171960 +) +(1,2105:17376473,38497675:3171960,452978,115847 +k1,2105:17376473,38497675:3277 +h1,2105:20545156,38497675:0,411205,112570 +) +k1,2105:20703135,38497675:154702 +k1,2105:22835713,38497675:154701 +k1,2105:25331361,38497675:154702 +k1,2105:26505147,38497675:154701 +k1,2105:29145630,38497675:154702 +k1,2105:29959623,38497675:154701 +k1,2105:32583029,38497675:0 +) +(1,2106:6630773,39362755:25952256,513147,134348 +k1,2105:9157388,39362755:156833 +k1,2105:10380491,39362755:156832 +k1,2105:11556409,39362755:156833 +k1,2105:14199022,39362755:156832 +k1,2105:15015147,39362755:156833 +k1,2105:18476961,39362755:156833 +k1,2105:19249831,39362755:156832 +k1,2105:20858286,39362755:156833 +k1,2105:23638525,39362755:156833 +k1,2105:25834837,39362755:156832 +k1,2105:26820700,39362755:156833 +k1,2105:28793535,39362755:156832 +k1,2105:29969453,39362755:156833 +k1,2105:32583029,39362755:0 +) +(1,2106:6630773,40227835:25952256,513147,134348 +k1,2105:7450569,40227835:160504 +k1,2105:10803986,40227835:160503 +k1,2105:13939169,40227835:160504 +k1,2105:16295783,40227835:160503 +k1,2105:19653789,40227835:160504 +k1,2105:20500454,40227835:160503 +k1,2105:23146739,40227835:160504 +k1,2105:23966534,40227835:160503 +k1,2105:27605689,40227835:160504 +k1,2105:28634544,40227835:160503 +k1,2105:29887533,40227835:160504 +k1,2106:32583029,40227835:0 +) +(1,2106:6630773,41092915:25952256,452978,115847 +(1,2105:6630773,41092915:0,452978,115847 +r1,2127:9099310,41092915:2468537,568825,115847 +k1,2105:6630773,41092915:-2468537 +) +(1,2105:6630773,41092915:2468537,452978,115847 +k1,2105:6630773,41092915:3277 +h1,2105:9096033,41092915:0,411205,112570 +) +k1,2106:32583028,41092915:23310048 +g1,2106:32583028,41092915 +) +v1,2108:6630773,41777770:0,393216,0 +(1,2121:6630773,44533204:25952256,3148650,196608 +g1,2121:6630773,44533204 +g1,2121:6630773,44533204 +g1,2121:6434165,44533204 +(1,2121:6434165,44533204:0,3148650,196608 +r1,2127:32779637,44533204:26345472,3345258,196608 +k1,2121:6434165,44533204:-26345472 +) +(1,2121:6434165,44533204:26345472,3148650,196608 +[1,2121:6630773,44533204:25952256,2952042,0 +(1,2110:6630773,42005601:25952256,424439,79822 +(1,2109:6630773,42005601:0,0,0 +g1,2109:6630773,42005601 +g1,2109:6630773,42005601 +g1,2109:6303093,42005601 +(1,2109:6303093,42005601:0,0,0 +) +g1,2109:6630773,42005601 +) +k1,2110:6630773,42005601:0 +g1,2110:9286405,42005601 +g1,2110:9950313,42005601 +h1,2110:14597668,42005601:0,0,0 +k1,2110:32583028,42005601:17985360 +g1,2110:32583028,42005601 +) +(1,2114:6630773,42821528:25952256,424439,79822 +(1,2112:6630773,42821528:0,0,0 +g1,2112:6630773,42821528 +g1,2112:6630773,42821528 +g1,2112:6303093,42821528 +(1,2112:6303093,42821528:0,0,0 +) +g1,2112:6630773,42821528 +) +g1,2114:7626635,42821528 +g1,2114:8954451,42821528 +h1,2114:9618359,42821528:0,0,0 +k1,2114:32583029,42821528:22964670 +g1,2114:32583029,42821528 +) +(1,2116:6630773,43637455:25952256,424439,86428 +(1,2115:6630773,43637455:0,0,0 +g1,2115:6630773,43637455 +g1,2115:6630773,43637455 +g1,2115:6303093,43637455 +(1,2115:6303093,43637455:0,0,0 +) +g1,2115:6630773,43637455 +) +k1,2116:6630773,43637455:0 +g1,2116:9286405,43637455 +g1,2116:9950313,43637455 +g1,2116:15593530,43637455 +h1,2116:20240885,43637455:0,0,0 +k1,2116:32583029,43637455:12342144 +g1,2116:32583029,43637455 +) +(1,2120:6630773,44453382:25952256,424439,79822 +(1,2118:6630773,44453382:0,0,0 +g1,2118:6630773,44453382 +g1,2118:6630773,44453382 +g1,2118:6303093,44453382 +(1,2118:6303093,44453382:0,0,0 +) +g1,2118:6630773,44453382 +) +g1,2120:7626635,44453382 +g1,2120:8954451,44453382 +g1,2120:9950313,44453382 +h1,2120:10614221,44453382:0,0,0 +k1,2120:32583029,44453382:21968808 +g1,2120:32583029,44453382 +) +] +) +g1,2121:32583029,44533204 +g1,2121:6630773,44533204 +g1,2121:6630773,44533204 +g1,2121:32583029,44533204 +g1,2121:32583029,44533204 +) +h1,2121:6630773,44729812:0,0,0 ] (1,2127:32583029,45706769:0,0,0 g1,2127:32583029,45706769 @@ -70050,2028 +69487,2202 @@ g1,2127:-473656,-710413 ] ) ] -!24618 -}56 -Input:457:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:458:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:459:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:460:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:461:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:462:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:463:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:464:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!27529 +}55 Input:465:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:466:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:467:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:468:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:469:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1220 -{57 -[1,2190:4262630,47279633:28320399,43253760,0 -(1,2190:4262630,4025873:0,0,0 -[1,2190:-473656,4025873:0,0,0 -(1,2190:-473656,-710413:0,0,0 -(1,2190:-473656,-644877:0,0,0 -k1,2190:-473656,-644877:-65536 +Input:470:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:471:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:472:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:473:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:474:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!941 +{56 +[1,2227:4262630,47279633:28320399,43253760,0 +(1,2227:4262630,4025873:0,0,0 +[1,2227:-473656,4025873:0,0,0 +(1,2227:-473656,-710413:0,0,0 +(1,2227:-473656,-644877:0,0,0 +k1,2227:-473656,-644877:-65536 ) -(1,2190:-473656,4736287:0,0,0 -k1,2190:-473656,4736287:5209943 +(1,2227:-473656,4736287:0,0,0 +k1,2227:-473656,4736287:5209943 ) -g1,2190:-473656,-710413 +g1,2227:-473656,-710413 ) ] ) -[1,2190:6630773,47279633:25952256,43253760,0 -[1,2190:6630773,4812305:25952256,786432,0 -(1,2190:6630773,4812305:25952256,505283,11795 -(1,2190:6630773,4812305:25952256,505283,11795 -g1,2190:3078558,4812305 -[1,2190:3078558,4812305:0,0,0 -(1,2190:3078558,2439708:0,1703936,0 -k1,2190:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,2190:2537886,2439708:1179648,16384,0 +[1,2227:6630773,47279633:25952256,43253760,0 +[1,2227:6630773,4812305:25952256,786432,0 +(1,2227:6630773,4812305:25952256,505283,11795 +(1,2227:6630773,4812305:25952256,505283,11795 +g1,2227:3078558,4812305 +[1,2227:3078558,4812305:0,0,0 +(1,2227:3078558,2439708:0,1703936,0 +k1,2227:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,2227:2537886,2439708:1179648,16384,0 ) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,2190:3078558,1915420:16384,1179648,0 +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,2227:3078558,1915420:16384,1179648,0 ) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) ] ) ) ) ] -[1,2190:3078558,4812305:0,0,0 -(1,2190:3078558,2439708:0,1703936,0 -g1,2190:29030814,2439708 -g1,2190:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,2190:36151628,1915420:16384,1179648,0 +[1,2227:3078558,4812305:0,0,0 +(1,2227:3078558,2439708:0,1703936,0 +g1,2227:29030814,2439708 +g1,2227:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,2227:36151628,1915420:16384,1179648,0 ) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) ] ) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,2190:37855564,2439708:1179648,16384,0 +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,2227:37855564,2439708:1179648,16384,0 ) ) -k1,2190:3078556,2439708:-34777008 +k1,2227:3078556,2439708:-34777008 ) ] -[1,2190:3078558,4812305:0,0,0 -(1,2190:3078558,49800853:0,16384,2228224 -k1,2190:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,2190:2537886,49800853:1179648,16384,0 +[1,2227:3078558,4812305:0,0,0 +(1,2227:3078558,49800853:0,16384,2228224 +k1,2227:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,2227:2537886,49800853:1179648,16384,0 ) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,2190:3078558,51504789:16384,1179648,0 +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,2227:3078558,51504789:16384,1179648,0 ) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) ] ) ) ) ] -[1,2190:3078558,4812305:0,0,0 -(1,2190:3078558,49800853:0,16384,2228224 -g1,2190:29030814,49800853 -g1,2190:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,2190:36151628,51504789:16384,1179648,0 -) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 -) +[1,2227:3078558,4812305:0,0,0 +(1,2227:3078558,49800853:0,16384,2228224 +g1,2227:29030814,49800853 +g1,2227:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,2227:36151628,51504789:16384,1179648,0 +) +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 +) ] ) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,2190:37855564,49800853:1179648,16384,0 +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,2227:37855564,49800853:1179648,16384,0 ) ) -k1,2190:3078556,49800853:-34777008 +k1,2227:3078556,49800853:-34777008 ) ] -g1,2190:6630773,4812305 -k1,2190:22348274,4812305:14920583 -g1,2190:23970945,4812305 -g1,2190:24793421,4812305 -g1,2190:27528893,4812305 -g1,2190:28938572,4812305 -) -) -] -[1,2190:6630773,45706769:25952256,40108032,0 -(1,2190:6630773,45706769:25952256,40108032,0 -(1,2190:6630773,45706769:0,0,0 -g1,2190:6630773,45706769 -) -[1,2190:6630773,45706769:25952256,40108032,0 -v1,2127:6630773,6254097:0,393216,0 -(1,2127:6630773,7901549:25952256,2040668,196608 -g1,2127:6630773,7901549 -g1,2127:6630773,7901549 -g1,2127:6434165,7901549 -(1,2127:6434165,7901549:0,2040668,196608 -r1,2190:32779637,7901549:26345472,2237276,196608 -k1,2127:6434165,7901549:-26345472 -) -(1,2127:6434165,7901549:26345472,2040668,196608 -[1,2127:6630773,7901549:25952256,1844060,0 -(1,2122:6630773,6461715:25952256,404226,107478 -(1,2121:6630773,6461715:0,0,0 -g1,2121:6630773,6461715 -g1,2121:6630773,6461715 -g1,2121:6303093,6461715 -(1,2121:6303093,6461715:0,0,0 -) -g1,2121:6630773,6461715 -) -k1,2122:6630773,6461715:0 -k1,2122:10268808,6461715:792723 -k1,2122:11377678,6461715:792724 -k1,2122:13751129,6461715:792723 -k1,2122:15176143,6461715:792723 -k1,2122:16285013,6461715:792724 -k1,2122:18342319,6461715:792723 -k1,2122:21664207,6461715:792723 -k1,2122:23721514,6461715:792724 -k1,2122:25146528,6461715:792723 -k1,2122:27203835,6461715:792724 -k1,2122:28944995,6461715:792723 -k1,2122:31002301,6461715:792723 -k1,2122:32583029,6461715:0 -) -(1,2122:6630773,7127893:25952256,404226,107478 -g1,2122:8211502,7127893 -g1,2122:11056814,7127893 -g1,2122:12953688,7127893 -g1,2122:13585980,7127893 -h1,2122:14534417,7127893:0,0,0 -k1,2122:32583029,7127893:18048612 -g1,2122:32583029,7127893 -) -(1,2126:6630773,7794071:25952256,404226,107478 -(1,2124:6630773,7794071:0,0,0 -g1,2124:6630773,7794071 -g1,2124:6630773,7794071 -g1,2124:6303093,7794071 -(1,2124:6303093,7794071:0,0,0 -) -g1,2124:6630773,7794071 -) -g1,2126:7579210,7794071 -g1,2126:8843793,7794071 -g1,2126:10740667,7794071 -g1,2126:11689104,7794071 -g1,2126:12321396,7794071 -g1,2126:14218270,7794071 -g1,2126:14534416,7794071 -g1,2126:14850562,7794071 -g1,2126:18012019,7794071 -g1,2126:19592748,7794071 -g1,2126:20857331,7794071 -g1,2126:22754205,7794071 -g1,2126:24018788,7794071 -g1,2126:25915662,7794071 -g1,2126:26231808,7794071 -g1,2126:26547954,7794071 -g1,2126:26864100,7794071 -g1,2126:30025557,7794071 -h1,2126:32238577,7794071:0,0,0 -k1,2126:32583029,7794071:344452 -g1,2126:32583029,7794071 -) -] -) -g1,2127:32583029,7901549 -g1,2127:6630773,7901549 -g1,2127:6630773,7901549 -g1,2127:32583029,7901549 -g1,2127:32583029,7901549 -) -h1,2127:6630773,8098157:0,0,0 -v1,2131:6630773,9653693:0,393216,0 -(1,2146:6630773,19844728:25952256,10584251,0 -g1,2146:6630773,19844728 -g1,2146:6303093,19844728 -r1,2190:6401397,19844728:98304,10584251,0 -g1,2146:6600626,19844728 -g1,2146:6797234,19844728 -[1,2146:6797234,19844728:25785795,10584251,0 -(1,2132:6797234,10086231:25785795,825754,196608 -(1,2131:6797234,10086231:0,825754,196608 -r1,2190:8834093,10086231:2036859,1022362,196608 -k1,2131:6797234,10086231:-2036859 -) -(1,2131:6797234,10086231:2036859,825754,196608 -) -k1,2131:9002629,10086231:168536 -k1,2131:10320558,10086231:327680 -k1,2131:13278961,10086231:168535 -(1,2131:13278961,10086231:0,452978,115847 -r1,2190:15044074,10086231:1765113,568825,115847 -k1,2131:13278961,10086231:-1765113 -) -(1,2131:13278961,10086231:1765113,452978,115847 -k1,2131:13278961,10086231:3277 -h1,2131:15040797,10086231:0,411205,112570 -) -k1,2131:15212610,10086231:168536 -k1,2131:17293487,10086231:168536 -k1,2131:17817882,10086231:168535 -k1,2131:20961097,10086231:168536 -k1,2131:23107510,10086231:168536 -k1,2131:26590857,10086231:168536 -k1,2131:27778477,10086231:168535 -k1,2131:31271654,10086231:168536 -k1,2132:32583029,10086231:0 -) -(1,2132:6797234,10927719:25785795,505283,134348 -k1,2131:8145253,10927719:252257 -k1,2131:11702492,10927719:252258 -k1,2131:13448315,10927719:252257 -k1,2131:14983767,10927719:252257 -k1,2131:16404532,10927719:252258 -k1,2131:19542995,10927719:252257 -k1,2131:20481414,10927719:252257 -h1,2131:20481414,10927719:0,0,0 -k1,2131:21731130,10927719:252258 -k1,2131:22599425,10927719:252257 -(1,2131:22599425,10927719:0,452978,115847 -r1,2190:25771385,10927719:3171960,568825,115847 -k1,2131:22599425,10927719:-3171960 -) -(1,2131:22599425,10927719:3171960,452978,115847 -k1,2131:22599425,10927719:3277 -h1,2131:25768108,10927719:0,411205,112570 -) -k1,2131:26023642,10927719:252257 -k1,2131:28679105,10927719:252258 -k1,2131:30122807,10927719:252257 -k1,2131:32583029,10927719:0 -) -(1,2132:6797234,11769207:25785795,505283,134348 -k1,2131:9310237,11769207:246113 -k1,2131:10688156,11769207:246112 -k1,2131:14161262,11769207:246113 -k1,2131:15690570,11769207:246113 -k1,2131:17609161,11769207:246112 -k1,2131:19664068,11769207:246113 -k1,2131:20929266,11769207:246113 -k1,2131:22671566,11769207:246113 -k1,2131:24786109,11769207:246112 -k1,2131:26223667,11769207:246113 -k1,2131:27488865,11769207:246113 -k1,2131:29893733,11769207:246112 -k1,2131:30597943,11769207:246113 -k1,2132:32583029,11769207:0 -) -(1,2132:6797234,12610695:25785795,513147,126483 -k1,2131:8528754,12610695:267446 -k1,2131:11146322,12610695:267447 -k1,2131:12432853,12610695:267446 -k1,2131:17526370,12610695:267446 -k1,2131:18453109,12610695:267447 -k1,2131:19739640,12610695:267446 -k1,2131:21179526,12610695:267447 -k1,2131:24646440,12610695:267446 -k1,2131:26105331,12610695:267446 -k1,2131:28635081,12610695:267447 -k1,2131:29921612,12610695:267446 -k1,2131:32583029,12610695:0 -) -(1,2132:6797234,13452183:25785795,513147,126483 -k1,2131:8544021,13452183:250600 -k1,2131:10287530,13452183:250599 -k1,2131:11708603,13452183:250600 -k1,2131:12950762,13452183:250599 -k1,2131:16214707,13452183:250600 -k1,2131:17749812,13452183:250599 -k1,2131:19170885,13452183:250600 -k1,2131:23086257,13452183:250599 -k1,2131:23952895,13452183:250600 -k1,2131:25990661,13452183:250599 -k1,2131:27571642,13452183:250600 -k1,2131:29518969,13452183:250600 -k1,2131:30942007,13452183:250599 -k1,2132:32583029,13452183:0 -) -(1,2132:6797234,14293671:25785795,505283,7863 -g1,2131:8594231,14293671 -k1,2132:32583030,14293671:22218672 -g1,2132:32583030,14293671 -) -v1,2134:6797234,15484137:0,393216,0 -(1,2143:6797234,19123832:25785795,4032911,196608 -g1,2143:6797234,19123832 -g1,2143:6797234,19123832 -g1,2143:6600626,19123832 -(1,2143:6600626,19123832:0,4032911,196608 -r1,2190:32779637,19123832:26179011,4229519,196608 -k1,2143:6600625,19123832:-26179012 -) -(1,2143:6600626,19123832:26179011,4032911,196608 -[1,2143:6797234,19123832:25785795,3836303,0 -(1,2136:6797234,15691755:25785795,404226,101187 -(1,2135:6797234,15691755:0,0,0 -g1,2135:6797234,15691755 -g1,2135:6797234,15691755 -g1,2135:6469554,15691755 -(1,2135:6469554,15691755:0,0,0 -) -g1,2135:6797234,15691755 -) -g1,2136:12171711,15691755 -k1,2136:12171711,15691755:0 -h1,2136:12804003,15691755:0,0,0 -k1,2136:32583029,15691755:19779026 -g1,2136:32583029,15691755 -) -(1,2137:6797234,16357933:25785795,404226,107478 -h1,2137:6797234,16357933:0,0,0 -g1,2137:9958692,16357933 -g1,2137:10590984,16357933 -g1,2137:12487858,16357933 -g1,2137:13436295,16357933 -g1,2137:14068587,16357933 -g1,2137:15649316,16357933 -g1,2137:17230045,16357933 -g1,2137:20075356,16357933 -g1,2137:21656085,16357933 -g1,2137:22604522,16357933 -g1,2137:24185251,16357933 -g1,2137:25449834,16357933 -g1,2137:27030563,16357933 -g1,2137:29875874,16357933 -k1,2137:29875874,16357933:0 -h1,2137:32405040,16357933:0,0,0 -k1,2137:32583029,16357933:177989 -g1,2137:32583029,16357933 -) -(1,2138:6797234,17024111:25785795,404226,82312 -h1,2138:6797234,17024111:0,0,0 -g1,2138:7113380,17024111 -g1,2138:7429526,17024111 -g1,2138:7745672,17024111 -g1,2138:8061818,17024111 -g1,2138:8377964,17024111 -g1,2138:8694110,17024111 -g1,2138:9010256,17024111 -g1,2138:9326402,17024111 -g1,2138:11223276,17024111 -g1,2138:11855568,17024111 -k1,2138:11855568,17024111:0 -h1,2138:12804005,17024111:0,0,0 -k1,2138:32583029,17024111:19779024 -g1,2138:32583029,17024111 -) -(1,2139:6797234,17690289:25785795,410518,101187 -h1,2139:6797234,17690289:0,0,0 -g1,2139:7113380,17690289 -g1,2139:7429526,17690289 -g1,2139:7745672,17690289 -g1,2139:8061818,17690289 -g1,2139:8377964,17690289 -g1,2139:8694110,17690289 -g1,2139:9010256,17690289 -g1,2139:9326402,17690289 -g1,2139:11539422,17690289 -g1,2139:12171714,17690289 -h1,2139:13752443,17690289:0,0,0 -k1,2139:32583029,17690289:18830586 -g1,2139:32583029,17690289 -) -(1,2140:6797234,18356467:25785795,404226,101187 -h1,2140:6797234,18356467:0,0,0 -k1,2140:6797234,18356467:0 -h1,2140:14068584,18356467:0,0,0 -k1,2140:32583028,18356467:18514444 -g1,2140:32583028,18356467 -) -(1,2141:6797234,19022645:25785795,404226,101187 -h1,2141:6797234,19022645:0,0,0 -g1,2141:13752440,19022645 -h1,2141:15333169,19022645:0,0,0 -k1,2141:32583029,19022645:17249860 -g1,2141:32583029,19022645 -) -] -) -g1,2143:32583029,19123832 -g1,2143:6797234,19123832 -g1,2143:6797234,19123832 -g1,2143:32583029,19123832 -g1,2143:32583029,19123832 -) -h1,2143:6797234,19320440:0,0,0 -] -g1,2146:32583029,19844728 -) -h1,2146:6630773,19844728:0,0,0 -(1,2149:6630773,21043239:25952256,513147,134348 -h1,2148:6630773,21043239:983040,0,0 -k1,2148:10104688,21043239:182042 -k1,2148:12967154,21043239:182043 -(1,2148:12967154,21043239:0,452978,115847 -r1,2190:16139114,21043239:3171960,568825,115847 -k1,2148:12967154,21043239:-3171960 -) -(1,2148:12967154,21043239:3171960,452978,115847 -k1,2148:12967154,21043239:3277 -h1,2148:16135837,21043239:0,411205,112570 -) -k1,2148:16321156,21043239:182042 -k1,2148:18699310,21043239:182043 -k1,2148:19982357,21043239:182042 -k1,2148:21916177,21043239:182043 -k1,2148:23694676,21043239:182042 -k1,2148:25119282,21043239:182043 -k1,2148:28880900,21043239:182042 -k1,2148:32583029,21043239:0 -) -(1,2149:6630773,21884727:25952256,513147,134348 -k1,2148:9939448,21884727:273047 -k1,2148:10863922,21884727:273046 -k1,2148:11884735,21884727:273047 -k1,2148:14681573,21884727:273047 -k1,2148:20591371,21884727:273046 -k1,2148:23436706,21884727:273047 -k1,2148:24692792,21884727:273046 -k1,2148:27034155,21884727:273047 -k1,2148:27990087,21884727:273047 -k1,2148:29246173,21884727:273046 -k1,2148:31471538,21884727:273047 -k1,2148:32583029,21884727:0 -) -(1,2149:6630773,22726215:25952256,513147,134348 -k1,2148:7341072,22726215:232542 -k1,2148:8441966,22726215:232542 -k1,2148:10111713,22726215:232542 -k1,2148:13334007,22726215:232542 -k1,2148:14946737,22726215:232542 -k1,2148:16170840,22726215:232543 -k1,2148:19564183,22726215:232542 -k1,2148:20448153,22726215:232542 -(1,2148:20448153,22726215:0,452978,115847 -r1,2190:23620113,22726215:3171960,568825,115847 -k1,2148:20448153,22726215:-3171960 -) -(1,2148:20448153,22726215:3171960,452978,115847 -k1,2148:20448153,22726215:3277 -h1,2148:23616836,22726215:0,411205,112570 -) -k1,2148:23852655,22726215:232542 -k1,2148:26127954,22726215:232542 -k1,2148:28888220,22726215:232542 -k1,2148:30317449,22726215:232542 -k1,2148:32583029,22726215:0 -) -(1,2149:6630773,23567703:25952256,505283,134348 -k1,2148:9944776,23567703:275754 -k1,2148:10752027,23567703:275754 -k1,2148:11383641,23567703:275754 -k1,2148:13447217,23567703:275754 -k1,2148:16871321,23567703:275754 -k1,2148:18219244,23567703:275754 -k1,2148:19698238,23567703:275753 -k1,2148:21078274,23567703:275754 -k1,2148:22101794,23567703:275754 -k1,2148:25038965,23567703:275754 -k1,2148:26076247,23567703:275754 -k1,2148:28779455,23567703:275754 -k1,2148:29411069,23567703:275754 -(1,2148:29411069,23567703:0,452978,115847 -r1,2190:32583029,23567703:3171960,568825,115847 -k1,2148:29411069,23567703:-3171960 -) -(1,2148:29411069,23567703:3171960,452978,115847 -k1,2148:29411069,23567703:3277 -h1,2148:32579752,23567703:0,411205,112570 -) -k1,2148:32583029,23567703:0 -) -(1,2149:6630773,24409191:25952256,513147,134348 -g1,2148:8695812,24409191 -g1,2148:9581203,24409191 -g1,2148:12852760,24409191 -g1,2148:13999640,24409191 -(1,2148:13999640,24409191:0,414482,115847 -r1,2190:15061329,24409191:1061689,530329,115847 -k1,2148:13999640,24409191:-1061689 -) -(1,2148:13999640,24409191:1061689,414482,115847 -k1,2148:13999640,24409191:3277 -h1,2148:15058052,24409191:0,411205,112570 -) -k1,2149:32583029,24409191:17348030 -g1,2149:32583029,24409191 -) -v1,2151:6630773,25432393:0,393216,0 -(1,2164:6630773,28369926:25952256,3330749,196608 -g1,2164:6630773,28369926 -g1,2164:6630773,28369926 -g1,2164:6434165,28369926 -(1,2164:6434165,28369926:0,3330749,196608 -r1,2190:32779637,28369926:26345472,3527357,196608 -k1,2164:6434165,28369926:-26345472 -) -(1,2164:6434165,28369926:26345472,3330749,196608 -[1,2164:6630773,28369926:25952256,3134141,0 -(1,2153:6630773,25640011:25952256,404226,101187 -(1,2152:6630773,25640011:0,0,0 -g1,2152:6630773,25640011 -g1,2152:6630773,25640011 -g1,2152:6303093,25640011 -(1,2152:6303093,25640011:0,0,0 -) -g1,2152:6630773,25640011 -) -k1,2153:6630773,25640011:0 -g1,2153:9476084,25640011 -g1,2153:10740667,25640011 -h1,2153:11372959,25640011:0,0,0 -k1,2153:32583029,25640011:21210070 -g1,2153:32583029,25640011 -) -(1,2157:6630773,26306189:25952256,404226,76021 -(1,2155:6630773,26306189:0,0,0 -g1,2155:6630773,26306189 -g1,2155:6630773,26306189 -g1,2155:6303093,26306189 -(1,2155:6303093,26306189:0,0,0 -) -g1,2155:6630773,26306189 -) -g1,2157:7579210,26306189 -g1,2157:8843793,26306189 -g1,2157:9792230,26306189 -g1,2157:10424522,26306189 -h1,2157:11056813,26306189:0,0,0 -k1,2157:32583029,26306189:21526216 -g1,2157:32583029,26306189 -) -(1,2159:6630773,27627727:25952256,404226,101187 -(1,2158:6630773,27627727:0,0,0 -g1,2158:6630773,27627727 -g1,2158:6630773,27627727 -g1,2158:6303093,27627727 -(1,2158:6303093,27627727:0,0,0 -) -g1,2158:6630773,27627727 -) -k1,2159:6630773,27627727:0 -g1,2159:10108376,27627727 -g1,2159:11056814,27627727 -g1,2159:12321397,27627727 -g1,2159:12953689,27627727 -g1,2159:13585981,27627727 -g1,2159:14218273,27627727 -h1,2159:14850565,27627727:0,0,0 -k1,2159:32583029,27627727:17732464 -g1,2159:32583029,27627727 -) -(1,2163:6630773,28293905:25952256,404226,76021 -(1,2161:6630773,28293905:0,0,0 -g1,2161:6630773,28293905 -g1,2161:6630773,28293905 -g1,2161:6303093,28293905 -(1,2161:6303093,28293905:0,0,0 -) -g1,2161:6630773,28293905 -) -g1,2163:7579210,28293905 -g1,2163:8843793,28293905 -g1,2163:9792230,28293905 -g1,2163:10424522,28293905 -h1,2163:11056813,28293905:0,0,0 -k1,2163:32583029,28293905:21526216 -g1,2163:32583029,28293905 -) -] -) -g1,2164:32583029,28369926 -g1,2164:6630773,28369926 -g1,2164:6630773,28369926 -g1,2164:32583029,28369926 -g1,2164:32583029,28369926 -) -h1,2164:6630773,28566534:0,0,0 -(1,2168:6630773,29765046:25952256,513147,134348 -h1,2167:6630773,29765046:983040,0,0 -k1,2167:10082390,29765046:159744 -k1,2167:13503861,29765046:159744 -k1,2167:14349767,29765046:159744 -k1,2167:16585036,29765046:159744 -k1,2167:18773775,29765046:159744 -k1,2167:19465015,29765046:159743 -k1,2167:20284051,29765046:159744 -k1,2167:21916389,29765046:159744 -k1,2167:24827334,29765046:159744 -k1,2167:26253234,29765046:159744 -k1,2167:27040813,29765046:159744 -k1,2167:30005498,29765046:159744 -k1,2168:32583029,29765046:0 -) -(1,2168:6630773,30606534:25952256,513147,134348 -k1,2167:7817193,30606534:196171 -k1,2167:10024009,30606534:196171 -k1,2167:12258350,30606534:196171 -k1,2167:13070559,30606534:196171 -k1,2167:16029073,30606534:196171 -k1,2167:19066884,30606534:196170 -k1,2167:19794552,30606534:196171 -k1,2167:20346583,30606534:196171 -k1,2167:21896728,30606534:196171 -k1,2167:24831649,30606534:196171 -k1,2167:28102114,30606534:196171 -k1,2167:29996323,30606534:196171 -k1,2167:32583029,30606534:0 -) -(1,2168:6630773,31448022:25952256,513147,134348 -k1,2167:8279206,31448022:254482 -k1,2167:10096722,31448022:254482 -k1,2167:10838736,31448022:254426 -k1,2167:13217895,31448022:254482 -k1,2167:14564862,31448022:254482 -k1,2167:17480761,31448022:254482 -k1,2167:20224300,31448022:254482 -k1,2167:23652035,31448022:254482 -k1,2167:25884394,31448022:254482 -(1,2167:25884394,31448022:0,459977,115847 -r1,2190:28352931,31448022:2468537,575824,115847 -k1,2167:25884394,31448022:-2468537 -) -(1,2167:25884394,31448022:2468537,459977,115847 -k1,2167:25884394,31448022:3277 -h1,2167:28349654,31448022:0,411205,112570 -) -k1,2167:28607413,31448022:254482 -k1,2167:31563944,31448022:254482 -k1,2167:32583029,31448022:0 -) -(1,2168:6630773,32289510:25952256,513147,126483 -k1,2167:8924226,32289510:225137 -k1,2167:9808655,32289510:225137 -k1,2167:12301338,32289510:225137 -k1,2167:13717920,32289510:225137 -k1,2167:15920934,32289510:225137 -(1,2167:15920934,32289510:0,459977,115847 -r1,2190:18037759,32289510:2116825,575824,115847 -k1,2167:15920934,32289510:-2116825 -) -(1,2167:15920934,32289510:2116825,459977,115847 -k1,2167:15920934,32289510:3277 -h1,2167:18034482,32289510:0,411205,112570 -) -k1,2167:18262896,32289510:225137 -k1,2167:19507118,32289510:225137 -k1,2167:21488621,32289510:225138 -k1,2167:23093946,32289510:225137 -k1,2167:24465308,32289510:225137 -k1,2167:25341873,32289510:225137 -k1,2167:26527112,32289510:225137 -k1,2167:27620601,32289510:225137 -k1,2167:28950020,32289510:225137 -k1,2167:30886302,32289510:225137 -k1,2167:32583029,32289510:0 -) -(1,2168:6630773,33130998:25952256,505283,134348 -g1,2167:8840647,33130998 -g1,2167:11720299,33130998 -g1,2167:13186994,33130998 -g1,2167:15071154,33130998 -k1,2168:32583029,33130998:14215414 -g1,2168:32583029,33130998 -) -v1,2170:6630773,34154200:0,393216,0 -(1,2180:6630773,37140300:25952256,3379316,196608 -g1,2180:6630773,37140300 -g1,2180:6630773,37140300 -g1,2180:6434165,37140300 -(1,2180:6434165,37140300:0,3379316,196608 -r1,2190:32779637,37140300:26345472,3575924,196608 -k1,2180:6434165,37140300:-26345472 -) -(1,2180:6434165,37140300:26345472,3379316,196608 -[1,2180:6630773,37140300:25952256,3182708,0 -(1,2172:6630773,34368110:25952256,410518,101187 -(1,2171:6630773,34368110:0,0,0 -g1,2171:6630773,34368110 -g1,2171:6630773,34368110 -g1,2171:6303093,34368110 -(1,2171:6303093,34368110:0,0,0 -) -g1,2171:6630773,34368110 -) -g1,2172:9159939,34368110 -g1,2172:10108377,34368110 -g1,2172:12637543,34368110 -g1,2172:13585981,34368110 -g1,2172:15166710,34368110 -g1,2172:16115148,34368110 -g1,2172:18328168,34368110 -g1,2172:19276606,34368110 -g1,2172:21173480,34368110 -h1,2172:21805772,34368110:0,0,0 -k1,2172:32583029,34368110:10777257 -g1,2172:32583029,34368110 -) -(1,2173:6630773,35034288:25952256,410518,107478 -h1,2173:6630773,35034288:0,0,0 -g1,2173:8843793,35034288 -g1,2173:9792231,35034288 -g1,2173:13585980,35034288 -g1,2173:17063583,35034288 -g1,2173:20541186,35034288 -h1,2173:25283372,35034288:0,0,0 -k1,2173:32583029,35034288:7299657 -g1,2173:32583029,35034288 -) -(1,2174:6630773,35700466:25952256,410518,101187 -h1,2174:6630773,35700466:0,0,0 -g1,2174:11372958,35700466 -g1,2174:13585978,35700466 -g1,2174:14534415,35700466 -g1,2174:15798998,35700466 -g1,2174:16747436,35700466 -g1,2174:19276602,35700466 -g1,2174:20857331,35700466 -g1,2174:22121914,35700466 -g1,2174:22754206,35700466 -h1,2174:23702643,35700466:0,0,0 -k1,2174:32583029,35700466:8880386 -g1,2174:32583029,35700466 -) -(1,2179:6630773,36366644:25952256,404226,101187 -(1,2176:6630773,36366644:0,0,0 -g1,2176:6630773,36366644 -g1,2176:6630773,36366644 -g1,2176:6303093,36366644 -(1,2176:6303093,36366644:0,0,0 -) -g1,2176:6630773,36366644 -) -g1,2179:7579210,36366644 -g1,2179:8843793,36366644 -g1,2179:10740667,36366644 -g1,2179:12637541,36366644 -g1,2179:13585978,36366644 -g1,2179:14850561,36366644 -g1,2179:17695872,36366644 -g1,2179:18012018,36366644 -g1,2179:18328164,36366644 -g1,2179:18644310,36366644 -g1,2179:18960456,36366644 -g1,2179:19276602,36366644 -g1,2179:19592748,36366644 -g1,2179:21173477,36366644 -g1,2179:23070351,36366644 -g1,2179:24018788,36366644 -g1,2179:25283371,36366644 -h1,2179:28128682,36366644:0,0,0 -k1,2179:32583029,36366644:4454347 -g1,2179:32583029,36366644 -) -(1,2179:6630773,37032822:25952256,404226,107478 -h1,2179:6630773,37032822:0,0,0 -g1,2179:7579210,37032822 -g1,2179:8843793,37032822 -g1,2179:11056813,37032822 -g1,2179:12953687,37032822 -g1,2179:13902124,37032822 -g1,2179:15166707,37032822 -g1,2179:18328164,37032822 -g1,2179:18644310,37032822 -g1,2179:18960456,37032822 -g1,2179:19276602,37032822 -g1,2179:19592748,37032822 -g1,2179:21489622,37032822 -g1,2179:23386496,37032822 -g1,2179:24334933,37032822 -g1,2179:25599516,37032822 -h1,2179:30025556,37032822:0,0,0 -k1,2179:32583029,37032822:2557473 -g1,2179:32583029,37032822 -) -] -) -g1,2180:32583029,37140300 -g1,2180:6630773,37140300 -g1,2180:6630773,37140300 -g1,2180:32583029,37140300 -g1,2180:32583029,37140300 -) -h1,2180:6630773,37336908:0,0,0 -v1,2184:6630773,38892443:0,393216,0 -(1,2185:6630773,41983793:25952256,3484566,0 -g1,2185:6630773,41983793 -g1,2185:6303093,41983793 -r1,2190:6401397,41983793:98304,3484566,0 -g1,2185:6600626,41983793 -g1,2185:6797234,41983793 -[1,2185:6797234,41983793:25785795,3484566,0 -(1,2185:6797234,39324981:25785795,825754,196608 -(1,2184:6797234,39324981:0,825754,196608 -r1,2190:7890375,39324981:1093141,1022362,196608 -k1,2184:6797234,39324981:-1093141 -) -(1,2184:6797234,39324981:1093141,825754,196608 -) -k1,2184:8077244,39324981:186869 -k1,2184:9395173,39324981:327680 -k1,2184:10964196,39324981:186869 -k1,2184:12358238,39324981:186869 -k1,2184:15654135,39324981:186869 -k1,2184:16492432,39324981:186869 -k1,2184:18116506,39324981:186869 -(1,2184:18116506,39324981:0,452978,115847 -r1,2190:20936755,39324981:2820249,568825,115847 -k1,2184:18116506,39324981:-2820249 -) -(1,2184:18116506,39324981:2820249,452978,115847 -g1,2184:19526630,39324981 -g1,2184:20230054,39324981 -h1,2184:20933478,39324981:0,411205,112570 -) -k1,2184:21123624,39324981:186869 -k1,2184:21926531,39324981:186869 -k1,2184:23132485,39324981:186869 -k1,2184:24419048,39324981:186869 -k1,2184:25257345,39324981:186869 -(1,2184:25257345,39324981:0,452978,115847 -r1,2190:27725882,39324981:2468537,568825,115847 -k1,2184:25257345,39324981:-2468537 -) -(1,2184:25257345,39324981:2468537,452978,115847 -k1,2184:25257345,39324981:3277 -h1,2184:27722605,39324981:0,411205,112570 -) -k1,2184:27912751,39324981:186869 -k1,2184:28715658,39324981:186869 -k1,2184:29921612,39324981:186869 -k1,2184:32583029,39324981:0 -) -(1,2185:6797234,40166469:25785795,513147,126483 -k1,2184:9148429,40166469:168846 -k1,2184:10753169,40166469:168846 -k1,2184:11828378,40166469:168846 -k1,2184:12648652,40166469:168846 -k1,2184:15086354,40166469:168846 -k1,2184:16803816,40166469:168846 -k1,2184:18105123,40166469:168845 -k1,2184:20648338,40166469:168846 -k1,2184:22008629,40166469:168846 -k1,2184:23611403,40166469:168846 -k1,2184:26134958,40166469:168846 -(1,2184:26134958,40166469:0,452978,115847 -r1,2190:29658631,40166469:3523673,568825,115847 -k1,2184:26134958,40166469:-3523673 -) -(1,2184:26134958,40166469:3523673,452978,115847 -g1,2184:26841659,40166469 -g1,2184:28248506,40166469 -g1,2184:28951930,40166469 -h1,2184:29655354,40166469:0,411205,112570 -) -k1,2184:29827477,40166469:168846 -k1,2184:31563944,40166469:168846 -k1,2184:32583029,40166469:0 -) -(1,2185:6797234,41007957:25785795,513147,126483 -k1,2184:10237546,41007957:253952 -k1,2184:12346822,41007957:253952 -k1,2184:13792219,41007957:253952 -k1,2184:15164215,41007957:253952 -k1,2184:15876264,41007957:253952 -k1,2184:16781644,41007957:253952 -k1,2184:18647126,41007957:253952 -k1,2184:19920162,41007957:253951 -k1,2184:22605500,41007957:253952 -k1,2184:23943418,41007957:253952 -k1,2184:25656201,41007957:253952 -k1,2184:27240534,41007957:253952 -k1,2184:30650700,41007957:253952 -k1,2184:31563944,41007957:253952 -k1,2184:32583029,41007957:0 -) -(1,2185:6797234,41849445:25785795,513147,134348 -g1,2184:8492650,41849445 -g1,2184:10184789,41849445 -g1,2184:11554491,41849445 -g1,2184:15418493,41849445 -g1,2184:16636807,41849445 -g1,2184:18071390,41849445 -g1,2184:18929911,41849445 -g1,2184:20148225,41849445 -g1,2184:23385703,41849445 -k1,2185:32583029,41849445:7157846 -g1,2185:32583029,41849445 -) -] -g1,2185:32583029,41983793 -) -h1,2185:6630773,41983793:0,0,0 -(1,2188:6630773,43182305:25952256,513147,134348 -h1,2187:6630773,43182305:983040,0,0 -k1,2187:8800972,43182305:233610 -k1,2187:10138865,43182305:233611 -k1,2187:11809680,43182305:233610 -k1,2187:12813994,43182305:233611 -k1,2187:16274597,43182305:233610 -k1,2187:19580536,43182305:233611 -k1,2187:20465574,43182305:233610 -k1,2187:21713682,43182305:233611 -k1,2187:23231798,43182305:233610 -k1,2187:24484494,43182305:233611 -k1,2187:26695981,43182305:233610 -k1,2187:29762713,43182305:233611 -k1,2187:31563944,43182305:233610 -k1,2187:32583029,43182305:0 -) -(1,2188:6630773,44023793:25952256,505283,134348 -k1,2187:8612416,44023793:270498 -k1,2187:11957209,44023793:270499 -k1,2187:12759204,44023793:270498 -k1,2187:13681131,44023793:270499 -k1,2187:14699395,44023793:270498 -k1,2187:17983239,44023793:270499 -k1,2187:19521203,44023793:270498 -k1,2187:20147561,44023793:270498 -k1,2187:22291079,44023793:270499 -(1,2187:22291079,44023793:0,452978,115847 -r1,2190:25463039,44023793:3171960,568825,115847 -k1,2187:22291079,44023793:-3171960 -) -(1,2187:22291079,44023793:3171960,452978,115847 -k1,2187:22291079,44023793:3277 -h1,2187:25459762,44023793:0,411205,112570 -) -k1,2187:25733537,44023793:270498 -k1,2187:28043516,44023793:270499 -k1,2187:29510701,44023793:270498 -k1,2187:32583029,44023793:0 -) -(1,2188:6630773,44865281:25952256,505283,126483 -k1,2187:9075560,44865281:239500 -k1,2187:9966487,44865281:239499 -k1,2187:12798591,44865281:239500 -k1,2187:13569588,44865281:239500 -k1,2187:15322313,44865281:239499 -k1,2187:16247975,44865281:239500 -k1,2187:17506559,44865281:239499 -k1,2187:20957978,44865281:239500 -k1,2187:21410429,44865281:239459 -k1,2187:22742414,44865281:239500 -k1,2187:24379796,44865281:239499 -(1,2187:24379796,44865281:0,452978,115847 -r1,2190:26144909,44865281:1765113,568825,115847 -k1,2187:24379796,44865281:-1765113 -) -(1,2187:24379796,44865281:1765113,452978,115847 -k1,2187:24379796,44865281:3277 -h1,2187:26141632,44865281:0,411205,112570 -) -k1,2187:26384409,44865281:239500 -k1,2187:27348737,44865281:239500 -k1,2187:28872742,44865281:239499 -k1,2187:30131327,44865281:239500 -k1,2187:32583029,44865281:0 -) -(1,2188:6630773,45706769:25952256,513147,134348 -g1,2187:9804681,45706769 -g1,2187:10535407,45706769 -g1,2187:13006114,45706769 -g1,2187:13821381,45706769 -g1,2187:15039695,45706769 -g1,2187:17533995,45706769 -g1,2187:18392516,45706769 -g1,2187:19610830,45706769 -g1,2187:21683078,45706769 -g1,2187:24856986,45706769 -k1,2188:32583029,45706769:5686563 -g1,2188:32583029,45706769 -) -] -(1,2190:32583029,45706769:0,0,0 -g1,2190:32583029,45706769 -) -) -] -(1,2190:6630773,47279633:25952256,0,0 -h1,2190:6630773,47279633:25952256,0,0 -) -] -(1,2190:4262630,4025873:0,0,0 -[1,2190:-473656,4025873:0,0,0 -(1,2190:-473656,-710413:0,0,0 -(1,2190:-473656,-710413:0,0,0 -g1,2190:-473656,-710413 -) -g1,2190:-473656,-710413 -) -] -) -] -!28697 -}57 -Input:470:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:471:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:472:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:473:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:474:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +g1,2227:6630773,4812305 +g1,2227:6630773,4812305 +g1,2227:10015707,4812305 +g1,2227:12209197,4812305 +k1,2227:31786111,4812305:19576914 +) +) +] +[1,2227:6630773,45706769:25952256,40108032,0 +(1,2227:6630773,45706769:25952256,40108032,0 +(1,2227:6630773,45706769:0,0,0 +g1,2227:6630773,45706769 +) +[1,2227:6630773,45706769:25952256,40108032,0 +(1,2125:6630773,6254097:25952256,513147,134348 +h1,2124:6630773,6254097:983040,0,0 +k1,2124:8676251,6254097:233408 +k1,2124:11302378,6254097:233408 +k1,2124:11891645,6254097:233407 +k1,2124:13990863,6254097:233408 +k1,2124:15491737,6254097:233408 +k1,2124:17617169,6254097:233408 +k1,2124:19217657,6254097:233407 +k1,2124:20133950,6254097:233408 +k1,2124:22123723,6254097:233408 +k1,2124:23724212,6254097:233408 +k1,2124:24825971,6254097:233407 +k1,2124:26151864,6254097:233408 +k1,2124:29411069,6254097:233408 +(1,2124:29411069,6254097:0,452978,115847 +r1,2227:32583029,6254097:3171960,568825,115847 +k1,2124:29411069,6254097:-3171960 +) +(1,2124:29411069,6254097:3171960,452978,115847 +k1,2124:29411069,6254097:3277 +h1,2124:32579752,6254097:0,411205,112570 +) +k1,2124:32583029,6254097:0 +) +(1,2125:6630773,7119177:25952256,505283,126483 +g1,2124:8021447,7119177 +(1,2124:8021447,7119177:0,452978,115847 +r1,2227:11193407,7119177:3171960,568825,115847 +k1,2124:8021447,7119177:-3171960 +) +(1,2124:8021447,7119177:3171960,452978,115847 +k1,2124:8021447,7119177:3277 +h1,2124:11190130,7119177:0,411205,112570 +) +g1,2124:11566306,7119177 +k1,2125:32583029,7119177:17046552 +g1,2125:32583029,7119177 +) +v1,2127:6630773,7804032:0,393216,0 +(1,2140:6630773,10559466:25952256,3148650,196608 +g1,2140:6630773,10559466 +g1,2140:6630773,10559466 +g1,2140:6434165,10559466 +(1,2140:6434165,10559466:0,3148650,196608 +r1,2227:32779637,10559466:26345472,3345258,196608 +k1,2140:6434165,10559466:-26345472 +) +(1,2140:6434165,10559466:26345472,3148650,196608 +[1,2140:6630773,10559466:25952256,2952042,0 +(1,2129:6630773,8031863:25952256,424439,106246 +(1,2128:6630773,8031863:0,0,0 +g1,2128:6630773,8031863 +g1,2128:6630773,8031863 +g1,2128:6303093,8031863 +(1,2128:6303093,8031863:0,0,0 +) +g1,2128:6630773,8031863 +) +k1,2129:6630773,8031863:0 +g1,2129:9950313,8031863 +g1,2129:10614221,8031863 +h1,2129:12937899,8031863:0,0,0 +k1,2129:32583029,8031863:19645130 +g1,2129:32583029,8031863 +) +(1,2133:6630773,8847790:25952256,424439,79822 +(1,2131:6630773,8847790:0,0,0 +g1,2131:6630773,8847790 +g1,2131:6630773,8847790 +g1,2131:6303093,8847790 +(1,2131:6303093,8847790:0,0,0 +) +g1,2131:6630773,8847790 +) +g1,2133:7626635,8847790 +g1,2133:8954451,8847790 +h1,2133:10946175,8847790:0,0,0 +k1,2133:32583029,8847790:21636854 +g1,2133:32583029,8847790 +) +(1,2135:6630773,9663717:25952256,424439,79822 +(1,2134:6630773,9663717:0,0,0 +g1,2134:6630773,9663717 +g1,2134:6630773,9663717 +g1,2134:6303093,9663717 +(1,2134:6303093,9663717:0,0,0 +) +g1,2134:6630773,9663717 +) +k1,2135:6630773,9663717:0 +g1,2135:9950313,9663717 +g1,2135:10614221,9663717 +h1,2135:12937899,9663717:0,0,0 +k1,2135:32583029,9663717:19645130 +g1,2135:32583029,9663717 +) +(1,2139:6630773,10479644:25952256,424439,79822 +(1,2137:6630773,10479644:0,0,0 +g1,2137:6630773,10479644 +g1,2137:6630773,10479644 +g1,2137:6303093,10479644 +(1,2137:6303093,10479644:0,0,0 +) +g1,2137:6630773,10479644 +) +g1,2139:7626635,10479644 +g1,2139:8954451,10479644 +h1,2139:10946175,10479644:0,0,0 +k1,2139:32583029,10479644:21636854 +g1,2139:32583029,10479644 +) +] +) +g1,2140:32583029,10559466 +g1,2140:6630773,10559466 +g1,2140:6630773,10559466 +g1,2140:32583029,10559466 +g1,2140:32583029,10559466 +) +h1,2140:6630773,10756074:0,0,0 +(1,2144:6630773,11621154:25952256,513147,134348 +h1,2143:6630773,11621154:983040,0,0 +k1,2143:10550644,11621154:146963 +(1,2143:10550644,11621154:0,452978,115847 +r1,2227:13722604,11621154:3171960,568825,115847 +k1,2143:10550644,11621154:-3171960 +) +(1,2143:10550644,11621154:3171960,452978,115847 +k1,2143:10550644,11621154:3277 +h1,2143:13719327,11621154:0,411205,112570 +) +k1,2143:13869567,11621154:146963 +k1,2143:15713257,11621154:146963 +k1,2143:16216080,11621154:146963 +k1,2143:18228853,11621154:146963 +k1,2143:19027244,11621154:146963 +k1,2143:19530067,11621154:146963 +k1,2143:22873876,11621154:146963 +k1,2143:25506620,11621154:146963 +k1,2143:26312875,11621154:146963 +k1,2143:29764819,11621154:146963 +k1,2143:30594667,11621154:146963 +k1,2144:32583029,11621154:0 +k1,2144:32583029,11621154:0 +) +v1,2146:6630773,12306009:0,393216,0 +(1,2171:6630773,18325151:25952256,6412358,196608 +g1,2171:6630773,18325151 +g1,2171:6630773,18325151 +g1,2171:6434165,18325151 +(1,2171:6434165,18325151:0,6412358,196608 +r1,2227:32779637,18325151:26345472,6608966,196608 +k1,2171:6434165,18325151:-26345472 +) +(1,2171:6434165,18325151:26345472,6412358,196608 +[1,2171:6630773,18325151:25952256,6215750,0 +(1,2148:6630773,12533840:25952256,424439,86428 +(1,2147:6630773,12533840:0,0,0 +g1,2147:6630773,12533840 +g1,2147:6630773,12533840 +g1,2147:6303093,12533840 +(1,2147:6303093,12533840:0,0,0 +) +g1,2147:6630773,12533840 +) +k1,2148:6630773,12533840:0 +g1,2148:9950313,12533840 +g1,2148:10614221,12533840 +g1,2148:15593530,12533840 +g1,2148:17585254,12533840 +g1,2148:18249162,12533840 +h1,2148:18913070,12533840:0,0,0 +k1,2148:32583029,12533840:13669959 +g1,2148:32583029,12533840 +) +(1,2152:6630773,13349767:25952256,424439,79822 +(1,2150:6630773,13349767:0,0,0 +g1,2150:6630773,13349767 +g1,2150:6630773,13349767 +g1,2150:6303093,13349767 +(1,2150:6303093,13349767:0,0,0 +) +g1,2150:6630773,13349767 +) +g1,2152:7626635,13349767 +g1,2152:8954451,13349767 +h1,2152:11610082,13349767:0,0,0 +k1,2152:32583030,13349767:20972948 +g1,2152:32583030,13349767 +) +(1,2154:6630773,14165694:25952256,424439,86428 +(1,2153:6630773,14165694:0,0,0 +g1,2153:6630773,14165694 +g1,2153:6630773,14165694 +g1,2153:6303093,14165694 +(1,2153:6303093,14165694:0,0,0 +) +g1,2153:6630773,14165694 +) +k1,2154:6630773,14165694:0 +g1,2154:9950313,14165694 +g1,2154:10614221,14165694 +g1,2154:13269853,14165694 +g1,2154:15261577,14165694 +g1,2154:15925485,14165694 +h1,2154:16589393,14165694:0,0,0 +k1,2154:32583029,14165694:15993636 +g1,2154:32583029,14165694 +) +(1,2158:6630773,14981621:25952256,424439,79822 +(1,2156:6630773,14981621:0,0,0 +g1,2156:6630773,14981621 +g1,2156:6630773,14981621 +g1,2156:6303093,14981621 +(1,2156:6303093,14981621:0,0,0 +) +g1,2156:6630773,14981621 +) +g1,2158:7626635,14981621 +g1,2158:8954451,14981621 +h1,2158:10946175,14981621:0,0,0 +k1,2158:32583029,14981621:21636854 +g1,2158:32583029,14981621 +) +(1,2160:6630773,15797548:25952256,424439,86428 +(1,2159:6630773,15797548:0,0,0 +g1,2159:6630773,15797548 +g1,2159:6630773,15797548 +g1,2159:6303093,15797548 +(1,2159:6303093,15797548:0,0,0 +) +g1,2159:6630773,15797548 +) +k1,2160:6630773,15797548:0 +g1,2160:9950313,15797548 +g1,2160:10614221,15797548 +g1,2160:16257438,15797548 +g1,2160:21236747,15797548 +h1,2160:21900655,15797548:0,0,0 +k1,2160:32583029,15797548:10682374 +g1,2160:32583029,15797548 +) +(1,2164:6630773,16613475:25952256,424439,79822 +(1,2162:6630773,16613475:0,0,0 +g1,2162:6630773,16613475 +g1,2162:6630773,16613475 +g1,2162:6303093,16613475 +(1,2162:6303093,16613475:0,0,0 +) +g1,2162:6630773,16613475 +) +g1,2164:7626635,16613475 +g1,2164:8954451,16613475 +g1,2164:11942036,16613475 +h1,2164:14597667,16613475:0,0,0 +k1,2164:32583029,16613475:17985362 +g1,2164:32583029,16613475 +) +(1,2166:6630773,17429402:25952256,424439,86428 +(1,2165:6630773,17429402:0,0,0 +g1,2165:6630773,17429402 +g1,2165:6630773,17429402 +g1,2165:6303093,17429402 +(1,2165:6303093,17429402:0,0,0 +) +g1,2165:6630773,17429402 +) +k1,2166:6630773,17429402:0 +g1,2166:9950313,17429402 +g1,2166:10614221,17429402 +g1,2166:16257438,17429402 +g1,2166:21236747,17429402 +g1,2166:22896517,17429402 +h1,2166:23892379,17429402:0,0,0 +k1,2166:32583029,17429402:8690650 +g1,2166:32583029,17429402 +) +(1,2170:6630773,18245329:25952256,424439,79822 +(1,2168:6630773,18245329:0,0,0 +g1,2168:6630773,18245329 +g1,2168:6630773,18245329 +g1,2168:6303093,18245329 +(1,2168:6303093,18245329:0,0,0 +) +g1,2168:6630773,18245329 +) +g1,2170:7626635,18245329 +g1,2170:8954451,18245329 +g1,2170:11942036,18245329 +h1,2170:13601806,18245329:0,0,0 +k1,2170:32583030,18245329:18981224 +g1,2170:32583030,18245329 +) +] +) +g1,2171:32583029,18325151 +g1,2171:6630773,18325151 +g1,2171:6630773,18325151 +g1,2171:32583029,18325151 +g1,2171:32583029,18325151 +) +h1,2171:6630773,18521759:0,0,0 +(1,2175:6630773,19386839:25952256,513147,134348 +h1,2174:6630773,19386839:983040,0,0 +k1,2174:10562331,19386839:158650 +(1,2174:10562331,19386839:0,452978,115847 +r1,2227:13734291,19386839:3171960,568825,115847 +k1,2174:10562331,19386839:-3171960 +) +(1,2174:10562331,19386839:3171960,452978,115847 +k1,2174:10562331,19386839:3277 +h1,2174:13731014,19386839:0,411205,112570 +) +k1,2174:13892941,19386839:158650 +k1,2174:15608072,19386839:158651 +k1,2174:16122582,19386839:158650 +k1,2174:18147042,19386839:158650 +k1,2174:18957120,19386839:158650 +k1,2174:19471631,19386839:158651 +k1,2174:22827127,19386839:158650 +k1,2174:25471558,19386839:158650 +k1,2174:26289500,19386839:158650 +k1,2174:29753132,19386839:158651 +k1,2174:30594667,19386839:158650 +k1,2175:32583029,19386839:0 +k1,2175:32583029,19386839:0 +) +v1,2177:6630773,20071694:0,393216,0 +(1,2184:6630773,21913159:25952256,2234681,196608 +g1,2184:6630773,21913159 +g1,2184:6630773,21913159 +g1,2184:6434165,21913159 +(1,2184:6434165,21913159:0,2234681,196608 +r1,2227:32779637,21913159:26345472,2431289,196608 +k1,2184:6434165,21913159:-26345472 +) +(1,2184:6434165,21913159:26345472,2234681,196608 +[1,2184:6630773,21913159:25952256,2038073,0 +(1,2179:6630773,20299525:25952256,424439,112852 +(1,2178:6630773,20299525:0,0,0 +g1,2178:6630773,20299525 +g1,2178:6630773,20299525 +g1,2178:6303093,20299525 +(1,2178:6303093,20299525:0,0,0 +) +g1,2178:6630773,20299525 +) +k1,2179:6630773,20299525:0 +k1,2179:10342580,20299525:724221 +k1,2179:11398755,20299525:724221 +k1,2179:13782745,20299525:724220 +k1,2179:15170874,20299525:724221 +k1,2179:16227049,20299525:724221 +k1,2179:18279086,20299525:724221 +k1,2179:21658937,20299525:724220 +k1,2179:23710974,20299525:724221 +k1,2179:25099103,20299525:724221 +k1,2179:27151140,20299525:724221 +k1,2179:28871223,20299525:724221 +k1,2179:30923259,20299525:724220 +k1,2179:32583029,20299525:0 +) +(1,2179:6630773,20984380:25952256,424439,112852 +g1,2179:8290543,20984380 +g1,2179:11278129,20984380 +g1,2179:13269853,20984380 +g1,2179:13933761,20984380 +h1,2179:14929623,20984380:0,0,0 +k1,2179:32583029,20984380:17653406 +g1,2179:32583029,20984380 +) +(1,2183:6630773,21800307:25952256,424439,112852 +(1,2181:6630773,21800307:0,0,0 +g1,2181:6630773,21800307 +g1,2181:6630773,21800307 +g1,2181:6303093,21800307 +(1,2181:6303093,21800307:0,0,0 +) +g1,2181:6630773,21800307 +) +k1,2183:7574634,21800307:279953 +k1,2183:8850449,21800307:279953 +k1,2183:10790172,21800307:279953 +k1,2183:11734033,21800307:279953 +k1,2183:12345941,21800307:279954 +k1,2183:14285664,21800307:279953 +k1,2183:14565617,21800307:279953 +k1,2183:14845570,21800307:279953 +k1,2183:18113108,21800307:279953 +k1,2183:19720877,21800307:279953 +k1,2183:20996692,21800307:279953 +k1,2183:22936415,21800307:279953 +k1,2183:24212230,21800307:279953 +k1,2183:26151954,21800307:279954 +k1,2183:26431907,21800307:279953 +k1,2183:26711860,21800307:279953 +k1,2183:26991813,21800307:279953 +k1,2183:30259351,21800307:279953 +h1,2183:32583029,21800307:0,0,0 +k1,2183:32583029,21800307:0 +k1,2183:32583029,21800307:0 +) +] +) +g1,2184:32583029,21913159 +g1,2184:6630773,21913159 +g1,2184:6630773,21913159 +g1,2184:32583029,21913159 +g1,2184:32583029,21913159 +) +h1,2184:6630773,22109767:0,0,0 +v1,2188:6630773,22974847:0,393216,0 +(1,2203:6630773,32248360:25952256,9666729,0 +g1,2203:6630773,32248360 +g1,2203:6237557,32248360 +r1,2227:6368629,32248360:131072,9666729,0 +g1,2203:6567858,32248360 +g1,2203:6764466,32248360 +[1,2203:6764466,32248360:25818563,9666729,0 +(1,2189:6764466,23283145:25818563,701514,196608 +(1,2188:6764466,23283145:0,701514,196608 +r1,2227:8863446,23283145:2098980,898122,196608 +k1,2188:6764466,23283145:-2098980 +) +(1,2188:6764466,23283145:2098980,701514,196608 +) +k1,2188:9029046,23283145:165600 +k1,2188:10346975,23283145:327680 +k1,2188:13302444,23283145:165601 +(1,2188:13302444,23283145:0,452978,115847 +r1,2227:15067557,23283145:1765113,568825,115847 +k1,2188:13302444,23283145:-1765113 +) +(1,2188:13302444,23283145:1765113,452978,115847 +k1,2188:13302444,23283145:3277 +h1,2188:15064280,23283145:0,411205,112570 +) +k1,2188:15233157,23283145:165600 +k1,2188:17311099,23283145:165601 +k1,2188:17832559,23283145:165600 +k1,2188:20972838,23283145:165600 +k1,2188:23116316,23283145:165601 +k1,2188:26596727,23283145:165600 +k1,2188:27781413,23283145:165601 +k1,2188:31271654,23283145:165600 +k1,2189:32583029,23283145:0 +) +(1,2189:6764466,24148225:25818563,530548,134348 +k1,2188:8035293,24148225:175065 +k1,2188:11515339,24148225:175065 +k1,2188:13183970,24148225:175065 +k1,2188:14642230,24148225:175065 +k1,2188:15985802,24148225:175065 +k1,2188:19047073,24148225:175065 +k1,2188:19908301,24148225:175066 +h1,2188:19908301,24148225:0,0,0 +k1,2188:21120345,24148225:175065 +k1,2188:21911448,24148225:175065 +(1,2188:21911448,24148225:0,452978,115847 +r1,2227:25083408,24148225:3171960,568825,115847 +k1,2188:21911448,24148225:-3171960 +) +(1,2188:21911448,24148225:3171960,452978,115847 +k1,2188:21911448,24148225:3277 +h1,2188:25080131,24148225:0,411205,112570 +) +k1,2188:25258473,24148225:175065 +k1,2188:27836743,24148225:175065 +k1,2188:29203253,24148225:175065 +k1,2188:31838540,24148225:175065 +k1,2189:32583029,24148225:0 +) +(1,2189:6764466,25013305:25818563,505283,134348 +k1,2188:8693140,25013305:193281 +k1,2188:10018227,25013305:193280 +k1,2188:13438501,25013305:193281 +k1,2188:14914976,25013305:193280 +k1,2188:16780736,25013305:193281 +k1,2188:18782811,25013305:193281 +k1,2188:19995176,25013305:193280 +k1,2188:21684644,25013305:193281 +k1,2188:23746356,25013305:193281 +k1,2188:25131081,25013305:193280 +k1,2188:26343447,25013305:193281 +k1,2188:28695483,25013305:193280 +k1,2188:29346861,25013305:193281 +k1,2188:32583029,25013305:0 +) +(1,2189:6764466,25878385:25818563,513147,126483 +k1,2188:9382093,25878385:267506 +k1,2188:10668684,25878385:267506 +k1,2188:15762261,25878385:267506 +k1,2188:16689059,25878385:267506 +k1,2188:17975650,25878385:267506 +k1,2188:19415594,25878385:267505 +k1,2188:22882568,25878385:267506 +k1,2188:24341519,25878385:267506 +k1,2188:26871328,25878385:267506 +k1,2188:28157919,25878385:267506 +k1,2188:31086842,25878385:267506 +k1,2188:32583029,25878385:0 +) +(1,2189:6764466,26743465:25818563,513147,126483 +k1,2188:8540874,26743465:283498 +k1,2188:9994845,26743465:283498 +k1,2188:11269903,26743465:283498 +k1,2188:14566745,26743465:283497 +k1,2188:16134749,26743465:283498 +k1,2188:17588720,26743465:283498 +k1,2188:21536991,26743465:283498 +k1,2188:22436527,26743465:283498 +k1,2188:24507192,26743465:283498 +k1,2188:26121070,26743465:283497 +k1,2188:28101295,26743465:283498 +k1,2188:29557232,26743465:283498 +k1,2188:32583029,26743465:0 +) +(1,2189:6764466,27608545:25818563,505283,7863 +k1,2189:32583029,27608545:24048436 +g1,2189:32583029,27608545 +) +v1,2191:6764466,28293400:0,393216,0 +(1,2200:6764466,32051752:25818563,4151568,196608 +g1,2200:6764466,32051752 +g1,2200:6764466,32051752 +g1,2200:6567858,32051752 +(1,2200:6567858,32051752:0,4151568,196608 +r1,2227:32779637,32051752:26211779,4348176,196608 +k1,2200:6567857,32051752:-26211780 +) +(1,2200:6567858,32051752:26211779,4151568,196608 +[1,2200:6764466,32051752:25818563,3954960,0 +(1,2193:6764466,28521231:25818563,424439,106246 +(1,2192:6764466,28521231:0,0,0 +g1,2192:6764466,28521231 +g1,2192:6764466,28521231 +g1,2192:6436786,28521231 +(1,2192:6436786,28521231:0,0,0 +) +g1,2192:6764466,28521231 +) +g1,2193:12407683,28521231 +k1,2193:12407683,28521231:0 +h1,2193:13071591,28521231:0,0,0 +k1,2193:32583029,28521231:19511438 +g1,2193:32583029,28521231 +) +(1,2194:6764466,29206086:25818563,424439,112852 +h1,2194:6764466,29206086:0,0,0 +k1,2194:10007598,29206086:255546 +k1,2194:10595098,29206086:255546 +k1,2194:12510415,29206086:255547 +k1,2194:13429869,29206086:255546 +k1,2194:14017369,29206086:255546 +k1,2194:15600731,29206086:255546 +k1,2194:17184093,29206086:255546 +k1,2194:20095271,29206086:255547 +k1,2194:21678633,29206086:255546 +k1,2194:22598087,29206086:255546 +k1,2194:24181449,29206086:255546 +k1,2194:25432858,29206086:255547 +k1,2194:27016220,29206086:255546 +k1,2194:29927397,29206086:255546 +k1,2194:29927397,29206086:0 +h1,2194:32583029,29206086:0,0,0 +k1,2194:32583029,29206086:0 +k1,2194:32583029,29206086:0 +) +(1,2195:6764466,29890941:25818563,424439,86428 +h1,2195:6764466,29890941:0,0,0 +g1,2195:7096420,29890941 +g1,2195:7428374,29890941 +g1,2195:7760328,29890941 +g1,2195:8092282,29890941 +g1,2195:8424236,29890941 +g1,2195:8756190,29890941 +g1,2195:9088144,29890941 +g1,2195:9420098,29890941 +g1,2195:11411822,29890941 +g1,2195:12075730,29890941 +k1,2195:12075730,29890941:0 +h1,2195:13071592,29890941:0,0,0 +k1,2195:32583028,29890941:19511436 +g1,2195:32583028,29890941 +) +(1,2196:6764466,30575796:25818563,431045,106246 +h1,2196:6764466,30575796:0,0,0 +g1,2196:7096420,30575796 +g1,2196:7428374,30575796 +g1,2196:7760328,30575796 +g1,2196:8092282,30575796 +g1,2196:8424236,30575796 +g1,2196:8756190,30575796 +g1,2196:9088144,30575796 +g1,2196:9420098,30575796 +g1,2196:11743776,30575796 +g1,2196:12407684,30575796 +h1,2196:14067454,30575796:0,0,0 +k1,2196:32583030,30575796:18515576 +g1,2196:32583030,30575796 +) +(1,2197:6764466,31260651:25818563,424439,106246 +h1,2197:6764466,31260651:0,0,0 +k1,2197:6764466,31260651:0 +h1,2197:14399407,31260651:0,0,0 +k1,2197:32583029,31260651:18183622 +g1,2197:32583029,31260651 +) +(1,2198:6764466,31945506:25818563,424439,106246 +h1,2198:6764466,31945506:0,0,0 +g1,2198:14067453,31945506 +h1,2198:15727223,31945506:0,0,0 +k1,2198:32583029,31945506:16855806 +g1,2198:32583029,31945506 +) +] +) +g1,2200:32583029,32051752 +g1,2200:6764466,32051752 +g1,2200:6764466,32051752 +g1,2200:32583029,32051752 +g1,2200:32583029,32051752 +) +h1,2200:6764466,32248360:0,0,0 +] +g1,2203:32583029,32248360 +) +h1,2203:6630773,32248360:0,0,0 +(1,2206:6630773,33113440:25952256,513147,134348 +h1,2205:6630773,33113440:983040,0,0 +k1,2205:10104688,33113440:182042 +k1,2205:12967154,33113440:182043 +(1,2205:12967154,33113440:0,452978,115847 +r1,2227:16139114,33113440:3171960,568825,115847 +k1,2205:12967154,33113440:-3171960 +) +(1,2205:12967154,33113440:3171960,452978,115847 +k1,2205:12967154,33113440:3277 +h1,2205:16135837,33113440:0,411205,112570 +) +k1,2205:16321156,33113440:182042 +k1,2205:18699310,33113440:182043 +k1,2205:19982357,33113440:182042 +k1,2205:21916177,33113440:182043 +k1,2205:23694676,33113440:182042 +k1,2205:25119282,33113440:182043 +k1,2205:28880900,33113440:182042 +k1,2205:32583029,33113440:0 +) +(1,2206:6630773,33978520:25952256,513147,134348 +k1,2205:9939448,33978520:273047 +k1,2205:10863922,33978520:273046 +k1,2205:11884735,33978520:273047 +k1,2205:14681573,33978520:273047 +k1,2205:20591371,33978520:273046 +k1,2205:23436706,33978520:273047 +k1,2205:24692792,33978520:273046 +k1,2205:27034155,33978520:273047 +k1,2205:27990087,33978520:273047 +k1,2205:29246173,33978520:273046 +k1,2205:31471538,33978520:273047 +k1,2205:32583029,33978520:0 +) +(1,2206:6630773,34843600:25952256,513147,134348 +k1,2205:7341072,34843600:232542 +k1,2205:8441966,34843600:232542 +k1,2205:10111713,34843600:232542 +k1,2205:13334007,34843600:232542 +k1,2205:14946737,34843600:232542 +k1,2205:16170840,34843600:232543 +k1,2205:19564183,34843600:232542 +k1,2205:20448153,34843600:232542 +(1,2205:20448153,34843600:0,452978,115847 +r1,2227:23620113,34843600:3171960,568825,115847 +k1,2205:20448153,34843600:-3171960 +) +(1,2205:20448153,34843600:3171960,452978,115847 +k1,2205:20448153,34843600:3277 +h1,2205:23616836,34843600:0,411205,112570 +) +k1,2205:23852655,34843600:232542 +k1,2205:26127954,34843600:232542 +k1,2205:28888220,34843600:232542 +k1,2205:30317449,34843600:232542 +k1,2205:32583029,34843600:0 +) +(1,2206:6630773,35708680:25952256,505283,134348 +k1,2205:9944776,35708680:275754 +k1,2205:10752027,35708680:275754 +k1,2205:11383641,35708680:275754 +k1,2205:13447217,35708680:275754 +k1,2205:16871321,35708680:275754 +k1,2205:18219244,35708680:275754 +k1,2205:19698238,35708680:275753 +k1,2205:21078274,35708680:275754 +k1,2205:22101794,35708680:275754 +k1,2205:25038965,35708680:275754 +k1,2205:26076247,35708680:275754 +k1,2205:28779455,35708680:275754 +k1,2205:29411069,35708680:275754 +(1,2205:29411069,35708680:0,452978,115847 +r1,2227:32583029,35708680:3171960,568825,115847 +k1,2205:29411069,35708680:-3171960 +) +(1,2205:29411069,35708680:3171960,452978,115847 +k1,2205:29411069,35708680:3277 +h1,2205:32579752,35708680:0,411205,112570 +) +k1,2205:32583029,35708680:0 +) +(1,2206:6630773,36573760:25952256,513147,134348 +g1,2205:8695812,36573760 +g1,2205:9581203,36573760 +g1,2205:12852760,36573760 +g1,2205:13999640,36573760 +(1,2205:13999640,36573760:0,414482,115847 +r1,2227:15061329,36573760:1061689,530329,115847 +k1,2205:13999640,36573760:-1061689 +) +(1,2205:13999640,36573760:1061689,414482,115847 +k1,2205:13999640,36573760:3277 +h1,2205:15058052,36573760:0,411205,112570 +) +k1,2206:32583029,36573760:17348030 +g1,2206:32583029,36573760 +) +v1,2208:6630773,37258615:0,393216,0 +(1,2221:6630773,40014049:25952256,3148650,196608 +g1,2221:6630773,40014049 +g1,2221:6630773,40014049 +g1,2221:6434165,40014049 +(1,2221:6434165,40014049:0,3148650,196608 +r1,2227:32779637,40014049:26345472,3345258,196608 +k1,2221:6434165,40014049:-26345472 +) +(1,2221:6434165,40014049:26345472,3148650,196608 +[1,2221:6630773,40014049:25952256,2952042,0 +(1,2210:6630773,37486446:25952256,424439,106246 +(1,2209:6630773,37486446:0,0,0 +g1,2209:6630773,37486446 +g1,2209:6630773,37486446 +g1,2209:6303093,37486446 +(1,2209:6303093,37486446:0,0,0 +) +g1,2209:6630773,37486446 +) +k1,2210:6630773,37486446:0 +g1,2210:9618359,37486446 +g1,2210:10946175,37486446 +h1,2210:11610083,37486446:0,0,0 +k1,2210:32583029,37486446:20972946 +g1,2210:32583029,37486446 +) +(1,2214:6630773,38302373:25952256,424439,79822 +(1,2212:6630773,38302373:0,0,0 +g1,2212:6630773,38302373 +g1,2212:6630773,38302373 +g1,2212:6303093,38302373 +(1,2212:6303093,38302373:0,0,0 +) +g1,2212:6630773,38302373 +) +g1,2214:7626635,38302373 +g1,2214:8954451,38302373 +g1,2214:9950313,38302373 +g1,2214:10614221,38302373 +h1,2214:11278129,38302373:0,0,0 +k1,2214:32583029,38302373:21304900 +g1,2214:32583029,38302373 +) +(1,2216:6630773,39118300:25952256,424439,106246 +(1,2215:6630773,39118300:0,0,0 +g1,2215:6630773,39118300 +g1,2215:6630773,39118300 +g1,2215:6303093,39118300 +(1,2215:6303093,39118300:0,0,0 +) +g1,2215:6630773,39118300 +) +k1,2216:6630773,39118300:0 +g1,2216:10282267,39118300 +g1,2216:11278129,39118300 +g1,2216:12605945,39118300 +g1,2216:13269853,39118300 +g1,2216:13933761,39118300 +g1,2216:14597669,39118300 +h1,2216:15261577,39118300:0,0,0 +k1,2216:32583029,39118300:17321452 +g1,2216:32583029,39118300 +) +(1,2220:6630773,39934227:25952256,424439,79822 +(1,2218:6630773,39934227:0,0,0 +g1,2218:6630773,39934227 +g1,2218:6630773,39934227 +g1,2218:6303093,39934227 +(1,2218:6303093,39934227:0,0,0 +) +g1,2218:6630773,39934227 +) +g1,2220:7626635,39934227 +g1,2220:8954451,39934227 +g1,2220:9950313,39934227 +g1,2220:10614221,39934227 +h1,2220:11278129,39934227:0,0,0 +k1,2220:32583029,39934227:21304900 +g1,2220:32583029,39934227 +) +] +) +g1,2221:32583029,40014049 +g1,2221:6630773,40014049 +g1,2221:6630773,40014049 +g1,2221:32583029,40014049 +g1,2221:32583029,40014049 +) +h1,2221:6630773,40210657:0,0,0 +(1,2225:6630773,41075737:25952256,513147,134348 +h1,2224:6630773,41075737:983040,0,0 +k1,2224:10082390,41075737:159744 +k1,2224:13503861,41075737:159744 +k1,2224:14349767,41075737:159744 +k1,2224:16585036,41075737:159744 +k1,2224:18773775,41075737:159744 +k1,2224:19465015,41075737:159743 +k1,2224:20284051,41075737:159744 +k1,2224:21916389,41075737:159744 +k1,2224:24827334,41075737:159744 +k1,2224:26253234,41075737:159744 +k1,2224:27040813,41075737:159744 +k1,2224:30005498,41075737:159744 +k1,2225:32583029,41075737:0 +) +(1,2225:6630773,41940817:25952256,513147,134348 +k1,2224:7817193,41940817:196171 +k1,2224:10024009,41940817:196171 +k1,2224:12258350,41940817:196171 +k1,2224:13070559,41940817:196171 +k1,2224:16029073,41940817:196171 +k1,2224:19066884,41940817:196170 +k1,2224:19794552,41940817:196171 +k1,2224:20346583,41940817:196171 +k1,2224:21896728,41940817:196171 +k1,2224:24831649,41940817:196171 +k1,2224:28102114,41940817:196171 +k1,2224:29996323,41940817:196171 +k1,2224:32583029,41940817:0 +) +(1,2225:6630773,42805897:25952256,513147,134348 +k1,2224:8279206,42805897:254482 +k1,2224:10096722,42805897:254482 +k1,2224:10838736,42805897:254426 +k1,2224:13217895,42805897:254482 +k1,2224:14564862,42805897:254482 +k1,2224:17480761,42805897:254482 +k1,2224:20224300,42805897:254482 +k1,2224:23652035,42805897:254482 +k1,2224:25884394,42805897:254482 +(1,2224:25884394,42805897:0,459977,115847 +r1,2227:28352931,42805897:2468537,575824,115847 +k1,2224:25884394,42805897:-2468537 +) +(1,2224:25884394,42805897:2468537,459977,115847 +k1,2224:25884394,42805897:3277 +h1,2224:28349654,42805897:0,411205,112570 +) +k1,2224:28607413,42805897:254482 +k1,2224:31563944,42805897:254482 +k1,2224:32583029,42805897:0 +) +(1,2225:6630773,43670977:25952256,513147,126483 +k1,2224:8924226,43670977:225137 +k1,2224:9808655,43670977:225137 +k1,2224:12301338,43670977:225137 +k1,2224:13717920,43670977:225137 +k1,2224:15920934,43670977:225137 +(1,2224:15920934,43670977:0,459977,115847 +r1,2227:18037759,43670977:2116825,575824,115847 +k1,2224:15920934,43670977:-2116825 +) +(1,2224:15920934,43670977:2116825,459977,115847 +k1,2224:15920934,43670977:3277 +h1,2224:18034482,43670977:0,411205,112570 +) +k1,2224:18262896,43670977:225137 +k1,2224:19507118,43670977:225137 +k1,2224:21488621,43670977:225138 +k1,2224:23093946,43670977:225137 +k1,2224:24465308,43670977:225137 +k1,2224:25341873,43670977:225137 +k1,2224:26527112,43670977:225137 +k1,2224:27620601,43670977:225137 +k1,2224:28950020,43670977:225137 +k1,2224:30886302,43670977:225137 +k1,2224:32583029,43670977:0 +) +(1,2225:6630773,44536057:25952256,505283,134348 +g1,2224:8840647,44536057 +g1,2224:11720299,44536057 +g1,2224:13186994,44536057 +g1,2224:15071154,44536057 +k1,2225:32583029,44536057:14215414 +g1,2225:32583029,44536057 +) +] +(1,2227:32583029,45706769:0,0,0 +g1,2227:32583029,45706769 +) +) +] +(1,2227:6630773,47279633:25952256,0,0 +h1,2227:6630773,47279633:25952256,0,0 +) +] +(1,2227:4262630,4025873:0,0,0 +[1,2227:-473656,4025873:0,0,0 +(1,2227:-473656,-710413:0,0,0 +(1,2227:-473656,-710413:0,0,0 +g1,2227:-473656,-710413 +) +g1,2227:-473656,-710413 +) +] +) +] +!28695 +}56 Input:475:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:476:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:477:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!755 -{58 -[1,2292:4262630,47279633:28320399,43253760,0 -(1,2292:4262630,4025873:0,0,0 -[1,2292:-473656,4025873:0,0,0 -(1,2292:-473656,-710413:0,0,0 -(1,2292:-473656,-644877:0,0,0 -k1,2292:-473656,-644877:-65536 +Input:478:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:479:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:480:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:481:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:482:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:483:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:484:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:485:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1034 +{57 +[1,2330:4262630,47279633:28320399,43253760,0 +(1,2330:4262630,4025873:0,0,0 +[1,2330:-473656,4025873:0,0,0 +(1,2330:-473656,-710413:0,0,0 +(1,2330:-473656,-644877:0,0,0 +k1,2330:-473656,-644877:-65536 ) -(1,2292:-473656,4736287:0,0,0 -k1,2292:-473656,4736287:5209943 +(1,2330:-473656,4736287:0,0,0 +k1,2330:-473656,4736287:5209943 ) -g1,2292:-473656,-710413 +g1,2330:-473656,-710413 ) ] ) -[1,2292:6630773,47279633:25952256,43253760,0 -[1,2292:6630773,4812305:25952256,786432,0 -(1,2292:6630773,4812305:25952256,505283,11795 -(1,2292:6630773,4812305:25952256,505283,11795 -g1,2292:3078558,4812305 -[1,2292:3078558,4812305:0,0,0 -(1,2292:3078558,2439708:0,1703936,0 -k1,2292:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,2292:2537886,2439708:1179648,16384,0 +[1,2330:6630773,47279633:25952256,43253760,0 +[1,2330:6630773,4812305:25952256,786432,0 +(1,2330:6630773,4812305:25952256,505283,11795 +(1,2330:6630773,4812305:25952256,505283,11795 +g1,2330:3078558,4812305 +[1,2330:3078558,4812305:0,0,0 +(1,2330:3078558,2439708:0,1703936,0 +k1,2330:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,2330:2537886,2439708:1179648,16384,0 ) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,2292:3078558,1915420:16384,1179648,0 +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,2330:3078558,1915420:16384,1179648,0 ) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) ] ) ) ) ] -[1,2292:3078558,4812305:0,0,0 -(1,2292:3078558,2439708:0,1703936,0 -g1,2292:29030814,2439708 -g1,2292:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,2292:36151628,1915420:16384,1179648,0 +[1,2330:3078558,4812305:0,0,0 +(1,2330:3078558,2439708:0,1703936,0 +g1,2330:29030814,2439708 +g1,2330:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,2330:36151628,1915420:16384,1179648,0 ) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) ] ) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,2292:37855564,2439708:1179648,16384,0 +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,2330:37855564,2439708:1179648,16384,0 ) ) -k1,2292:3078556,2439708:-34777008 +k1,2330:3078556,2439708:-34777008 ) ] -[1,2292:3078558,4812305:0,0,0 -(1,2292:3078558,49800853:0,16384,2228224 -k1,2292:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,2292:2537886,49800853:1179648,16384,0 +[1,2330:3078558,4812305:0,0,0 +(1,2330:3078558,49800853:0,16384,2228224 +k1,2330:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,2330:2537886,49800853:1179648,16384,0 ) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,2292:3078558,51504789:16384,1179648,0 +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,2330:3078558,51504789:16384,1179648,0 ) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) ] ) ) ) ] -[1,2292:3078558,4812305:0,0,0 -(1,2292:3078558,49800853:0,16384,2228224 -g1,2292:29030814,49800853 -g1,2292:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,2292:36151628,51504789:16384,1179648,0 +[1,2330:3078558,4812305:0,0,0 +(1,2330:3078558,49800853:0,16384,2228224 +g1,2330:29030814,49800853 +g1,2330:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,2330:36151628,51504789:16384,1179648,0 ) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 +) +] +) +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,2330:37855564,49800853:1179648,16384,0 +) +) +k1,2330:3078556,49800853:-34777008 +) +] +g1,2330:6630773,4812305 +k1,2330:22348274,4812305:14920583 +g1,2330:23970945,4812305 +g1,2330:24793421,4812305 +g1,2330:27528893,4812305 +g1,2330:28938572,4812305 +) +) +] +[1,2330:6630773,45706769:25952256,40108032,0 +(1,2330:6630773,45706769:25952256,40108032,0 +(1,2330:6630773,45706769:0,0,0 +g1,2330:6630773,45706769 +) +[1,2330:6630773,45706769:25952256,40108032,0 +v1,2227:6630773,6254097:0,393216,0 +(1,2237:6630773,9471878:25952256,3610997,196608 +g1,2237:6630773,9471878 +g1,2237:6630773,9471878 +g1,2237:6434165,9471878 +(1,2237:6434165,9471878:0,3610997,196608 +r1,2330:32779637,9471878:26345472,3807605,196608 +k1,2237:6434165,9471878:-26345472 +) +(1,2237:6434165,9471878:26345472,3610997,196608 +[1,2237:6630773,9471878:25952256,3414389,0 +(1,2229:6630773,6488534:25952256,431045,106246 +(1,2228:6630773,6488534:0,0,0 +g1,2228:6630773,6488534 +g1,2228:6630773,6488534 +g1,2228:6303093,6488534 +(1,2228:6303093,6488534:0,0,0 +) +g1,2228:6630773,6488534 +) +g1,2229:9286405,6488534 +g1,2229:10282267,6488534 +g1,2229:12937899,6488534 +g1,2229:13933761,6488534 +g1,2229:15593531,6488534 +g1,2229:16589393,6488534 +g1,2229:18913071,6488534 +g1,2229:19908933,6488534 +g1,2229:21900657,6488534 +h1,2229:22564565,6488534:0,0,0 +k1,2229:32583029,6488534:10018464 +g1,2229:32583029,6488534 +) +(1,2230:6630773,7173389:25952256,431045,112852 +h1,2230:6630773,7173389:0,0,0 +g1,2230:8954451,7173389 +g1,2230:9950313,7173389 +g1,2230:13933760,7173389 +g1,2230:17585253,7173389 +g1,2230:21236746,7173389 +h1,2230:26216055,7173389:0,0,0 +k1,2230:32583029,7173389:6366974 +g1,2230:32583029,7173389 +) +(1,2231:6630773,7858244:25952256,431045,106246 +h1,2231:6630773,7858244:0,0,0 +g1,2231:11610082,7858244 +g1,2231:13933760,7858244 +g1,2231:14929622,7858244 +g1,2231:16257438,7858244 +g1,2231:17253300,7858244 +g1,2231:19908932,7858244 +g1,2231:21568702,7858244 +g1,2231:22896518,7858244 +g1,2231:23560426,7858244 +h1,2231:24556288,7858244:0,0,0 +k1,2231:32583029,7858244:8026741 +g1,2231:32583029,7858244 +) +(1,2236:6630773,8674171:25952256,424439,106246 +(1,2233:6630773,8674171:0,0,0 +g1,2233:6630773,8674171 +g1,2233:6630773,8674171 +g1,2233:6303093,8674171 +(1,2233:6303093,8674171:0,0,0 +) +g1,2233:6630773,8674171 +) +g1,2236:7626635,8674171 +g1,2236:8954451,8674171 +g1,2236:10946175,8674171 +g1,2236:12937899,8674171 +g1,2236:13933761,8674171 +g1,2236:15261577,8674171 +g1,2236:18249162,8674171 +g1,2236:18581116,8674171 +g1,2236:18913070,8674171 +g1,2236:19245024,8674171 +g1,2236:19576978,8674171 +g1,2236:19908932,8674171 +g1,2236:20240886,8674171 +g1,2236:21900656,8674171 +g1,2236:23892380,8674171 +g1,2236:24888242,8674171 +g1,2236:26216058,8674171 +h1,2236:29203643,8674171:0,0,0 +k1,2236:32583029,8674171:3379386 +g1,2236:32583029,8674171 +) +(1,2236:6630773,9359026:25952256,424439,112852 +h1,2236:6630773,9359026:0,0,0 +g1,2236:7626635,9359026 +g1,2236:8954451,9359026 +g1,2236:11278129,9359026 +g1,2236:13269853,9359026 +g1,2236:14265715,9359026 +g1,2236:15593531,9359026 +g1,2236:18913070,9359026 +g1,2236:19245024,9359026 +g1,2236:19576978,9359026 +g1,2236:19908932,9359026 +g1,2236:20240886,9359026 +g1,2236:22232610,9359026 +g1,2236:24224334,9359026 +g1,2236:25220196,9359026 +g1,2236:26548012,9359026 +h1,2236:31195367,9359026:0,0,0 +k1,2236:32583029,9359026:1387662 +g1,2236:32583029,9359026 +) +] +) +g1,2237:32583029,9471878 +g1,2237:6630773,9471878 +g1,2237:6630773,9471878 +g1,2237:32583029,9471878 +g1,2237:32583029,9471878 +) +h1,2237:6630773,9668486:0,0,0 +v1,2241:6630773,10533566:0,393216,0 +(1,2242:6630773,13535631:25952256,3395281,0 +g1,2242:6630773,13535631 +g1,2242:6237557,13535631 +r1,2330:6368629,13535631:131072,3395281,0 +g1,2242:6567858,13535631 +g1,2242:6764466,13535631 +[1,2242:6764466,13535631:25818563,3395281,0 +(1,2242:6764466,10806043:25818563,665693,196608 +(1,2241:6764466,10806043:0,665693,196608 +r1,2330:8010564,10806043:1246098,862301,196608 +k1,2241:6764466,10806043:-1246098 +) +(1,2241:6764466,10806043:1246098,665693,196608 +) +k1,2241:8188848,10806043:178284 +k1,2241:9506777,10806043:327680 +k1,2241:11067215,10806043:178284 +k1,2241:12452672,10806043:178284 +k1,2241:15739984,10806043:178284 +k1,2241:16569696,10806043:178284 +k1,2241:18185185,10806043:178284 +(1,2241:18185185,10806043:0,452978,115847 +r1,2330:21005434,10806043:2820249,568825,115847 +k1,2241:18185185,10806043:-2820249 +) +(1,2241:18185185,10806043:2820249,452978,115847 +g1,2241:19595309,10806043 +g1,2241:20298733,10806043 +h1,2241:21002157,10806043:0,411205,112570 +) +k1,2241:21183718,10806043:178284 +k1,2241:21978041,10806043:178285 +k1,2241:23175410,10806043:178284 +k1,2241:24453388,10806043:178284 +k1,2241:25283100,10806043:178284 +(1,2241:25283100,10806043:0,452978,115847 +r1,2330:27751637,10806043:2468537,568825,115847 +k1,2241:25283100,10806043:-2468537 +) +(1,2241:25283100,10806043:2468537,452978,115847 +k1,2241:25283100,10806043:3277 +h1,2241:27748360,10806043:0,411205,112570 +) +k1,2241:27929921,10806043:178284 +k1,2241:28724243,10806043:178284 +k1,2241:29921612,10806043:178284 +k1,2241:32583029,10806043:0 +) +(1,2242:6764466,11671123:25818563,513147,126483 +k1,2241:9118182,11671123:171367 +k1,2241:10725442,11671123:171366 +k1,2241:11803172,11671123:171367 +k1,2241:12625966,11671123:171366 +k1,2241:15066189,11671123:171367 +k1,2241:16786171,11671123:171366 +k1,2241:18090000,11671123:171367 +k1,2241:20635735,11671123:171366 +k1,2241:21998547,11671123:171367 +k1,2241:23603841,11671123:171366 +k1,2241:26129917,11671123:171367 +(1,2241:26129917,11671123:0,452978,115847 +r1,2330:29653590,11671123:3523673,568825,115847 +k1,2241:26129917,11671123:-3523673 +) +(1,2241:26129917,11671123:3523673,452978,115847 +g1,2241:26836618,11671123 +g1,2241:28243465,11671123 +g1,2241:28946889,11671123 +h1,2241:29650313,11671123:0,411205,112570 +) +k1,2241:29824956,11671123:171366 +k1,2241:31563944,11671123:171367 +k1,2241:32583029,11671123:0 +) +(1,2242:6764466,12536203:25818563,513147,126483 +k1,2241:10207119,12536203:256293 +k1,2241:12318735,12536203:256292 +k1,2241:13766473,12536203:256293 +k1,2241:15140809,12536203:256292 +k1,2241:15855199,12536203:256293 +k1,2241:16762919,12536203:256292 +k1,2241:18630742,12536203:256293 +k1,2241:19906119,12536203:256292 +k1,2241:22593798,12536203:256293 +k1,2241:23934056,12536203:256292 +k1,2241:25649180,12536203:256293 +k1,2241:27235853,12536203:256292 +k1,2241:30648360,12536203:256293 +k1,2241:31563944,12536203:256292 +k1,2241:32583029,12536203:0 +) +(1,2242:6764466,13401283:25818563,513147,134348 +g1,2241:8459882,13401283 +g1,2241:10152021,13401283 +g1,2241:11521723,13401283 +g1,2241:15385725,13401283 +g1,2241:16604039,13401283 +g1,2241:18038622,13401283 +g1,2241:18897143,13401283 +g1,2241:20115457,13401283 +g1,2241:23352935,13401283 +k1,2242:32583029,13401283:7190614 +g1,2242:32583029,13401283 +) +] +g1,2242:32583029,13535631 +) +h1,2242:6630773,13535631:0,0,0 +(1,2245:6630773,14400711:25952256,513147,134348 +h1,2244:6630773,14400711:983040,0,0 +k1,2244:8800972,14400711:233610 +k1,2244:10138865,14400711:233611 +k1,2244:11809680,14400711:233610 +k1,2244:12813994,14400711:233611 +k1,2244:16274597,14400711:233610 +k1,2244:19580536,14400711:233611 +k1,2244:20465574,14400711:233610 +k1,2244:21713682,14400711:233611 +k1,2244:23231798,14400711:233610 +k1,2244:24484494,14400711:233611 +k1,2244:26695981,14400711:233610 +k1,2244:29762713,14400711:233611 +k1,2244:31563944,14400711:233610 +k1,2244:32583029,14400711:0 +) +(1,2245:6630773,15265791:25952256,505283,134348 +k1,2244:8612416,15265791:270498 +k1,2244:11957209,15265791:270499 +k1,2244:12759204,15265791:270498 +k1,2244:13681131,15265791:270499 +k1,2244:14699395,15265791:270498 +k1,2244:17983239,15265791:270499 +k1,2244:19521203,15265791:270498 +k1,2244:20147561,15265791:270498 +k1,2244:22291079,15265791:270499 +(1,2244:22291079,15265791:0,452978,115847 +r1,2330:25463039,15265791:3171960,568825,115847 +k1,2244:22291079,15265791:-3171960 +) +(1,2244:22291079,15265791:3171960,452978,115847 +k1,2244:22291079,15265791:3277 +h1,2244:25459762,15265791:0,411205,112570 +) +k1,2244:25733537,15265791:270498 +k1,2244:28043516,15265791:270499 +k1,2244:29510701,15265791:270498 +k1,2244:32583029,15265791:0 +) +(1,2245:6630773,16130871:25952256,505283,126483 +k1,2244:9075560,16130871:239500 +k1,2244:9966487,16130871:239499 +k1,2244:12798591,16130871:239500 +k1,2244:13569588,16130871:239500 +k1,2244:15322313,16130871:239499 +k1,2244:16247975,16130871:239500 +k1,2244:17506559,16130871:239499 +k1,2244:20957978,16130871:239500 +k1,2244:21410429,16130871:239459 +k1,2244:22742414,16130871:239500 +k1,2244:24379796,16130871:239499 +(1,2244:24379796,16130871:0,452978,115847 +r1,2330:26144909,16130871:1765113,568825,115847 +k1,2244:24379796,16130871:-1765113 +) +(1,2244:24379796,16130871:1765113,452978,115847 +k1,2244:24379796,16130871:3277 +h1,2244:26141632,16130871:0,411205,112570 +) +k1,2244:26384409,16130871:239500 +k1,2244:27348737,16130871:239500 +k1,2244:28872742,16130871:239499 +k1,2244:30131327,16130871:239500 +k1,2244:32583029,16130871:0 +) +(1,2245:6630773,16995951:25952256,513147,134348 +g1,2244:9804681,16995951 +g1,2244:10535407,16995951 +g1,2244:13006114,16995951 +g1,2244:13821381,16995951 +g1,2244:15039695,16995951 +g1,2244:17533995,16995951 +g1,2244:18392516,16995951 +g1,2244:19610830,16995951 +g1,2244:21683078,16995951 +g1,2244:24856986,16995951 +k1,2245:32583029,16995951:5686563 +g1,2245:32583029,16995951 +) +v1,2247:6630773,17680806:0,393216,0 +(1,2257:6630773,20891981:25952256,3604391,196608 +g1,2257:6630773,20891981 +g1,2257:6630773,20891981 +g1,2257:6434165,20891981 +(1,2257:6434165,20891981:0,3604391,196608 +r1,2330:32779637,20891981:26345472,3800999,196608 +k1,2257:6434165,20891981:-26345472 +) +(1,2257:6434165,20891981:26345472,3604391,196608 +[1,2257:6630773,20891981:25952256,3407783,0 +(1,2249:6630773,17915243:25952256,431045,106246 +(1,2248:6630773,17915243:0,0,0 +g1,2248:6630773,17915243 +g1,2248:6630773,17915243 +g1,2248:6303093,17915243 +(1,2248:6303093,17915243:0,0,0 +) +g1,2248:6630773,17915243 +) +k1,2249:6630773,17915243:0 +g1,2249:12937898,17915243 +g1,2249:15261576,17915243 +g1,2249:16257438,17915243 +g1,2249:17585254,17915243 +g1,2249:18581116,17915243 +g1,2249:21236748,17915243 +g1,2249:24224333,17915243 +g1,2249:24888241,17915243 +g1,2249:27211919,17915243 +g1,2249:28539735,17915243 +g1,2249:29203643,17915243 +h1,2249:30531459,17915243:0,0,0 +k1,2249:32583029,17915243:2051570 +g1,2249:32583029,17915243 +) +(1,2256:6630773,18731170:25952256,424439,106246 +(1,2251:6630773,18731170:0,0,0 +g1,2251:6630773,18731170 +g1,2251:6630773,18731170 +g1,2251:6303093,18731170 +(1,2251:6303093,18731170:0,0,0 +) +g1,2251:6630773,18731170 +) +g1,2256:7626635,18731170 +g1,2256:9286405,18731170 +g1,2256:11278129,18731170 +g1,2256:12273991,18731170 +g1,2256:13601807,18731170 +h1,2256:15925485,18731170:0,0,0 +k1,2256:32583029,18731170:16657544 +g1,2256:32583029,18731170 +) +(1,2256:6630773,19416025:25952256,424439,6605 +h1,2256:6630773,19416025:0,0,0 +g1,2256:7626635,19416025 +g1,2256:8954451,19416025 +g1,2256:10946175,19416025 +g1,2256:11942037,19416025 +g1,2256:13269853,19416025 +h1,2256:15925484,19416025:0,0,0 +k1,2256:32583029,19416025:16657545 +g1,2256:32583029,19416025 +) +(1,2256:6630773,20100880:25952256,424439,112852 +h1,2256:6630773,20100880:0,0,0 +g1,2256:7626635,20100880 +g1,2256:9618359,20100880 +g1,2256:11610083,20100880 +g1,2256:12605945,20100880 +g1,2256:13933761,20100880 +h1,2256:16589392,20100880:0,0,0 +k1,2256:32583029,20100880:15993637 +g1,2256:32583029,20100880 +) +(1,2256:6630773,20785735:25952256,424439,106246 +h1,2256:6630773,20785735:0,0,0 +g1,2256:7626635,20785735 +g1,2256:9286405,20785735 +g1,2256:11278129,20785735 +g1,2256:12273991,20785735 +g1,2256:13601807,20785735 +h1,2256:17585254,20785735:0,0,0 +k1,2256:32583029,20785735:14997775 +g1,2256:32583029,20785735 +) +] +) +g1,2257:32583029,20891981 +g1,2257:6630773,20891981 +g1,2257:6630773,20891981 +g1,2257:32583029,20891981 +g1,2257:32583029,20891981 +) +h1,2257:6630773,21088589:0,0,0 +v1,2261:6630773,21953669:0,393216,0 +(1,2288:6630773,33776595:25952256,12216142,0 +g1,2288:6630773,33776595 +g1,2288:6237557,33776595 +r1,2330:6368629,33776595:131072,12216142,0 +g1,2288:6567858,33776595 +g1,2288:6764466,33776595 +[1,2288:6764466,33776595:25818563,12216142,0 +(1,2262:6764466,22261967:25818563,701514,196608 +(1,2261:6764466,22261967:0,701514,196608 +r1,2330:8010564,22261967:1246098,898122,196608 +k1,2261:6764466,22261967:-1246098 +) +(1,2261:6764466,22261967:1246098,701514,196608 +) +k1,2261:8184216,22261967:173652 +k1,2261:8511896,22261967:327680 +k1,2261:10468783,22261967:173652 +k1,2261:11661520,22261967:173652 +k1,2261:14143349,22261967:173651 +k1,2261:15308561,22261967:173652 +k1,2261:16141505,22261967:173652 +k1,2261:19077500,22261967:173652 +k1,2261:21438088,22261967:173652 +k1,2261:22630825,22261967:173652 +k1,2261:25125107,22261967:173652 +k1,2261:26455468,22261967:173651 +k1,2261:27160617,22261967:173652 +k1,2261:29971438,22261967:173652 +k1,2261:30831252,22261967:173652 +k1,2261:32583029,22261967:0 +) +(1,2262:6764466,23127047:25818563,513147,126483 +k1,2261:8745087,23127047:224911 +k1,2261:9656160,23127047:224911 +k1,2261:12353090,23127047:224912 +k1,2261:14463472,23127047:224911 +k1,2261:15219880,23127047:224911 +k1,2261:16511062,23127047:224911 +k1,2261:18865238,23127047:224911 +k1,2261:20638766,23127047:224912 +k1,2261:21732029,23127047:224911 +k1,2261:23679226,23127047:224911 +k1,2261:24531972,23127047:224911 +k1,2261:25960124,23127047:224911 +k1,2261:27552116,23127047:224911 +k1,2261:28645380,23127047:224912 +k1,2261:30400557,23127047:224911 +k1,2261:31276896,23127047:224911 +k1,2261:32583029,23127047:0 +) +(1,2262:6764466,23992127:25818563,513147,134348 +k1,2261:9529710,23992127:172640 +k1,2261:10721434,23992127:172639 +k1,2261:13847782,23992127:172640 +k1,2261:14679713,23992127:172639 +k1,2261:15871438,23992127:172640 +k1,2261:17432785,23992127:172639 +k1,2261:19583302,23992127:172640 +(1,2261:19583302,23992127:0,459977,115847 +r1,2330:21700127,23992127:2116825,575824,115847 +k1,2261:19583302,23992127:-2116825 +) +(1,2261:19583302,23992127:2116825,459977,115847 +k1,2261:19583302,23992127:3277 +h1,2261:21696850,23992127:0,411205,112570 +) +k1,2261:21872767,23992127:172640 +k1,2261:22696834,23992127:172639 +k1,2261:25110150,23992127:172640 +k1,2261:26486030,23992127:172639 +k1,2261:28636547,23992127:172640 +k1,2261:30076652,23992127:172639 +k1,2261:30605152,23992127:172640 +k1,2261:32583029,23992127:0 +) +(1,2262:6764466,24857207:25818563,513147,134348 +k1,2261:7611117,24857207:187359 +k1,2261:9811742,24857207:187359 +k1,2261:11329482,24857207:187359 +k1,2261:12470391,24857207:187360 +k1,2261:13762032,24857207:187359 +k1,2261:16306721,24857207:187359 +k1,2261:17697321,24857207:187359 +k1,2261:18646208,24857207:187359 +k1,2261:21173202,24857207:187359 +k1,2261:22533000,24857207:187359 +k1,2261:24150355,24857207:187359 +k1,2261:24989143,24857207:187360 +(1,2261:24989143,24857207:0,452978,115847 +r1,2330:27457680,24857207:2468537,568825,115847 +k1,2261:24989143,24857207:-2468537 +) +(1,2261:24989143,24857207:2468537,452978,115847 +k1,2261:24989143,24857207:3277 +h1,2261:27454403,24857207:0,411205,112570 +) +k1,2261:27818709,24857207:187359 +k1,2261:29197513,24857207:187359 +k1,2261:31812326,24857207:187359 +k1,2261:32583029,24857207:0 +) +(1,2262:6764466,25722287:25818563,513147,134348 +g1,2261:10036023,25722287 +g1,2261:10886680,25722287 +(1,2261:10886680,25722287:0,452978,115847 +r1,2330:13706929,25722287:2820249,568825,115847 +k1,2261:10886680,25722287:-2820249 +) +(1,2261:10886680,25722287:2820249,452978,115847 +k1,2261:10886680,25722287:3277 +h1,2261:13703652,25722287:0,411205,112570 +) +g1,2261:13906158,25722287 +g1,2261:14721425,25722287 +g1,2261:15939739,25722287 +g1,2261:17805549,25722287 +g1,2261:20700274,25722287 +k1,2262:32583029,25722287:10609390 +g1,2262:32583029,25722287 +) +v1,2264:6764466,26407142:0,393216,0 +(1,2272:6764466,28255213:25818563,2241287,196608 +g1,2272:6764466,28255213 +g1,2272:6764466,28255213 +g1,2272:6567858,28255213 +(1,2272:6567858,28255213:0,2241287,196608 +r1,2330:32779637,28255213:26211779,2437895,196608 +k1,2272:6567857,28255213:-26211780 +) +(1,2272:6567858,28255213:26211779,2241287,196608 +[1,2272:6764466,28255213:25818563,2044679,0 +(1,2266:6764466,26641579:25818563,431045,106246 +(1,2265:6764466,26641579:0,0,0 +g1,2265:6764466,26641579 +g1,2265:6764466,26641579 +g1,2265:6436786,26641579 +(1,2265:6436786,26641579:0,0,0 +) +g1,2265:6764466,26641579 +) +g1,2266:12407683,26641579 +g1,2266:13403545,26641579 +g1,2266:18050901,26641579 +g1,2266:21038486,26641579 +g1,2266:21702394,26641579 +g1,2266:22698256,26641579 +h1,2266:23362164,26641579:0,0,0 +k1,2266:32583029,26641579:9220865 +g1,2266:32583029,26641579 +) +(1,2267:6764466,27326434:25818563,431045,106246 +h1,2267:6764466,27326434:0,0,0 +g1,2267:10084006,27326434 +g1,2267:12739638,27326434 +g1,2267:14399408,27326434 +g1,2267:15395270,27326434 +g1,2267:17386994,27326434 +g1,2267:23362165,27326434 +g1,2267:25021935,27326434 +g1,2267:27013659,27326434 +h1,2267:30001244,27326434:0,0,0 +k1,2267:32583029,27326434:2581785 +g1,2267:32583029,27326434 +) +(1,2271:6764466,28142361:25818563,431045,112852 +(1,2269:6764466,28142361:0,0,0 +g1,2269:6764466,28142361 +g1,2269:6764466,28142361 +g1,2269:6436786,28142361 +(1,2269:6436786,28142361:0,0,0 +) +g1,2269:6764466,28142361 +) +k1,2271:7649677,28142361:221303 +k1,2271:8866842,28142361:221303 +k1,2271:10084007,28142361:221303 +k1,2271:12628988,28142361:221303 +k1,2271:14178107,28142361:221303 +k1,2271:15063318,28142361:221303 +k1,2271:16280483,28142361:221303 +k1,2271:18825464,28142361:221303 +k1,2271:21702399,28142361:221303 +k1,2271:24579334,28142361:221303 +k1,2271:28784084,28142361:221303 +k1,2271:30001249,28142361:221303 +k1,2271:31882322,28142361:221303 +h1,2271:34537953,28142361:0,0,0 +k1,2271:34537953,28142361:0 +k1,2271:34537953,28142361:0 +) +] +) +g1,2272:32583029,28255213 +g1,2272:6764466,28255213 +g1,2272:6764466,28255213 +g1,2272:32583029,28255213 +g1,2272:32583029,28255213 +) +h1,2272:6764466,28451821:0,0,0 +(1,2276:6764466,29316901:25818563,513147,134348 +h1,2275:6764466,29316901:983040,0,0 +k1,2275:10384574,29316901:220100 +k1,2275:11263966,29316901:220100 +k1,2275:14179562,29316901:220100 +k1,2275:15829658,29316901:220100 +k1,2275:16581255,29316901:220100 +k1,2275:19879581,29316901:220100 +k1,2275:20715720,29316901:220101 +k1,2275:23214507,29316901:220100 +h1,2275:24185095,29316901:0,0,0 +k1,2275:24405195,29316901:220100 +k1,2275:25434665,29316901:220100 +k1,2275:27152918,29316901:220100 +h1,2275:28348295,29316901:0,0,0 +k1,2275:28742065,29316901:220100 +k1,2275:31896867,29316901:220100 +k1,2275:32583029,29316901:0 +) +(1,2276:6764466,30181981:25818563,513147,102891 +k1,2275:7956364,30181981:172813 +k1,2275:9301617,30181981:172814 +k1,2275:12991092,30181981:172813 +k1,2275:15019230,30181981:172814 +k1,2275:17148293,30181981:172813 +k1,2275:17937144,30181981:172813 +k1,2275:19711658,30181981:172814 +k1,2275:21581853,30181981:172813 +k1,2275:22502432,30181981:172813 +k1,2275:24961797,30181981:172814 +k1,2275:25820772,30181981:172813 +k1,2275:28111054,30181981:172814 +k1,2275:30979363,30181981:172813 +k1,2275:32583029,30181981:0 +) +(1,2276:6764466,31047061:25818563,513147,126483 +g1,2275:7176687,31047061 +g1,2275:8573259,31047061 +g1,2275:9975729,31047061 +g1,2275:12836375,31047061 +g1,2275:13983255,31047061 +k1,2276:32583029,31047061:15446837 +g1,2276:32583029,31047061 +) +v1,2278:6764466,31731916:0,393216,0 +(1,2285:6764466,33579987:25818563,2241287,196608 +g1,2285:6764466,33579987 +g1,2285:6764466,33579987 +g1,2285:6567858,33579987 +(1,2285:6567858,33579987:0,2241287,196608 +r1,2330:32779637,33579987:26211779,2437895,196608 +k1,2285:6567857,33579987:-26211780 +) +(1,2285:6567858,33579987:26211779,2241287,196608 +[1,2285:6764466,33579987:25818563,2044679,0 +(1,2280:6764466,31966353:25818563,431045,106246 +(1,2279:6764466,31966353:0,0,0 +g1,2279:6764466,31966353 +g1,2279:6764466,31966353 +g1,2279:6436786,31966353 +(1,2279:6436786,31966353:0,0,0 +) +g1,2279:6764466,31966353 +) +k1,2280:6764466,31966353:0 +k1,2280:11620817,31966353:1868765 +k1,2280:15813259,31966353:1868764 +k1,2280:19009840,31966353:1868765 +k1,2280:21542512,31966353:1868764 +k1,2280:25071047,31966353:1868765 +k1,2280:31255213,31966353:1868764 +k1,2280:32583029,31966353:0 +) +(1,2280:6764466,32651208:25818563,431045,106246 +g1,2280:8756190,32651208 +g1,2280:9420098,32651208 +g1,2280:10415960,32651208 +g1,2280:11743776,32651208 +g1,2280:13403546,32651208 +g1,2280:15395270,32651208 +h1,2280:18382855,32651208:0,0,0 +k1,2280:32583029,32651208:14200174 +g1,2280:32583029,32651208 +) +(1,2284:6764466,33467135:25818563,431045,112852 +(1,2282:6764466,33467135:0,0,0 +g1,2282:6764466,33467135 +g1,2282:6764466,33467135 +g1,2282:6436786,33467135 +(1,2282:6436786,33467135:0,0,0 +) +g1,2282:6764466,33467135 +) +k1,2284:7649677,33467135:221303 +k1,2284:8866842,33467135:221303 +k1,2284:10084007,33467135:221303 +k1,2284:12628988,33467135:221303 +k1,2284:14178107,33467135:221303 +k1,2284:15063318,33467135:221303 +k1,2284:16280483,33467135:221303 +k1,2284:18825464,33467135:221303 +k1,2284:21702399,33467135:221303 +k1,2284:24579334,33467135:221303 +k1,2284:28784084,33467135:221303 +k1,2284:30001249,33467135:221303 +k1,2284:31882322,33467135:221303 +h1,2284:34537953,33467135:0,0,0 +k1,2284:34537953,33467135:0 +k1,2284:34537953,33467135:0 +) +] +) +g1,2285:32583029,33579987 +g1,2285:6764466,33579987 +g1,2285:6764466,33579987 +g1,2285:32583029,33579987 +g1,2285:32583029,33579987 +) +h1,2285:6764466,33776595:0,0,0 +] +g1,2288:32583029,33776595 +) +h1,2288:6630773,33776595:0,0,0 +(1,2291:6630773,34641675:25952256,505283,134348 +h1,2290:6630773,34641675:983040,0,0 +k1,2290:10696284,34641675:292603 +(1,2290:10696284,34641675:0,452978,115847 +r1,2330:13516533,34641675:2820249,568825,115847 +k1,2290:10696284,34641675:-2820249 +) +(1,2290:10696284,34641675:2820249,452978,115847 +k1,2290:10696284,34641675:3277 +h1,2290:13513256,34641675:0,411205,112570 +) +k1,2290:13809136,34641675:292603 +k1,2290:16448583,34641675:292603 +k1,2290:17932631,34641675:292603 +k1,2290:20266681,34641675:292604 +k1,2290:23533963,34641675:292603 +k1,2290:26196348,34641675:292603 +k1,2290:28178469,34641675:292603 +(1,2290:28178469,34641675:0,452978,115847 +r1,2330:29943582,34641675:1765113,568825,115847 +k1,2290:28178469,34641675:-1765113 +) +(1,2290:28178469,34641675:1765113,452978,115847 +k1,2290:28178469,34641675:3277 +h1,2290:29940305,34641675:0,411205,112570 +) +k1,2290:30236185,34641675:292603 +k1,2290:32583029,34641675:0 +) +(1,2291:6630773,35506755:25952256,505283,134348 +g1,2290:9804681,35506755 +g1,2290:12200021,35506755 +g1,2290:13666716,35506755 +k1,2291:32583029,35506755:16434465 +g1,2291:32583029,35506755 +) +v1,2293:6630773,36191610:0,393216,0 +(1,2324:6630773,43842606:25952256,8044212,196608 +g1,2324:6630773,43842606 +g1,2324:6630773,43842606 +g1,2324:6434165,43842606 +(1,2324:6434165,43842606:0,8044212,196608 +r1,2330:32779637,43842606:26345472,8240820,196608 +k1,2324:6434165,43842606:-26345472 +) +(1,2324:6434165,43842606:26345472,8044212,196608 +[1,2324:6630773,43842606:25952256,7847604,0 +(1,2295:6630773,36419441:25952256,424439,106246 +(1,2294:6630773,36419441:0,0,0 +g1,2294:6630773,36419441 +g1,2294:6630773,36419441 +g1,2294:6303093,36419441 +(1,2294:6303093,36419441:0,0,0 +) +g1,2294:6630773,36419441 +) +k1,2295:6630773,36419441:0 +g1,2295:8622497,36419441 +g1,2295:9286405,36419441 +g1,2295:11610083,36419441 +g1,2295:13601807,36419441 +g1,2295:14265715,36419441 +h1,2295:14929623,36419441:0,0,0 +k1,2295:32583029,36419441:17653406 +g1,2295:32583029,36419441 +) +(1,2299:6630773,37235368:25952256,424439,79822 +(1,2297:6630773,37235368:0,0,0 +g1,2297:6630773,37235368 +g1,2297:6630773,37235368 +g1,2297:6303093,37235368 +(1,2297:6303093,37235368:0,0,0 +) +g1,2297:6630773,37235368 +) +g1,2299:7626635,37235368 +g1,2299:8954451,37235368 +g1,2299:10946175,37235368 +g1,2299:12937899,37235368 +h1,2299:14597669,37235368:0,0,0 +k1,2299:32583029,37235368:17985360 +g1,2299:32583029,37235368 +) +(1,2301:6630773,38051295:25952256,424439,106246 +(1,2300:6630773,38051295:0,0,0 +g1,2300:6630773,38051295 +g1,2300:6630773,38051295 +g1,2300:6303093,38051295 +(1,2300:6303093,38051295:0,0,0 +) +g1,2300:6630773,38051295 +) +k1,2301:6630773,38051295:0 +g1,2301:9618359,38051295 +g1,2301:10282267,38051295 +g1,2301:12605945,38051295 +g1,2301:14597669,38051295 +g1,2301:15261577,38051295 +h1,2301:15925485,38051295:0,0,0 +k1,2301:32583029,38051295:16657544 +g1,2301:32583029,38051295 +) +(1,2305:6630773,38867222:25952256,424439,79822 +(1,2303:6630773,38867222:0,0,0 +g1,2303:6630773,38867222 +g1,2303:6630773,38867222 +g1,2303:6303093,38867222 +(1,2303:6303093,38867222:0,0,0 +) +g1,2303:6630773,38867222 +) +g1,2305:7626635,38867222 +g1,2305:8954451,38867222 +h1,2305:12605944,38867222:0,0,0 +k1,2305:32583028,38867222:19977084 +g1,2305:32583028,38867222 +) +(1,2307:6630773,39683149:25952256,424439,106246 +(1,2306:6630773,39683149:0,0,0 +g1,2306:6630773,39683149 +g1,2306:6630773,39683149 +g1,2306:6303093,39683149 +(1,2306:6303093,39683149:0,0,0 +) +g1,2306:6630773,39683149 +) +k1,2307:6630773,39683149:0 +g1,2307:9618359,39683149 +g1,2307:10282267,39683149 +g1,2307:12605945,39683149 +g1,2307:14597669,39683149 +g1,2307:15261577,39683149 +g1,2307:16921347,39683149 +h1,2307:17917209,39683149:0,0,0 +k1,2307:32583029,39683149:14665820 +g1,2307:32583029,39683149 +) +(1,2311:6630773,40499076:25952256,424439,79822 +(1,2309:6630773,40499076:0,0,0 +g1,2309:6630773,40499076 +g1,2309:6630773,40499076 +g1,2309:6303093,40499076 +(1,2309:6303093,40499076:0,0,0 +) +g1,2309:6630773,40499076 +) +g1,2311:7626635,40499076 +g1,2311:8954451,40499076 +g1,2311:11942036,40499076 +g1,2311:12273990,40499076 +g1,2311:12605944,40499076 +g1,2311:12937898,40499076 +g1,2311:13269852,40499076 +g1,2311:13601806,40499076 +g1,2311:13933760,40499076 +h1,2311:18581115,40499076:0,0,0 +k1,2311:32583029,40499076:14001914 +g1,2311:32583029,40499076 +) +(1,2313:6630773,41315003:25952256,424439,106246 +(1,2312:6630773,41315003:0,0,0 +g1,2312:6630773,41315003 +g1,2312:6630773,41315003 +g1,2312:6303093,41315003 +(1,2312:6303093,41315003:0,0,0 +) +g1,2312:6630773,41315003 +) +k1,2313:6630773,41315003:0 +g1,2313:9618359,41315003 +g1,2313:10282267,41315003 +g1,2313:13269853,41315003 +g1,2313:15261577,41315003 +g1,2313:17253301,41315003 +g1,2313:17917209,41315003 +h1,2313:18581117,41315003:0,0,0 +k1,2313:32583029,41315003:14001912 +g1,2313:32583029,41315003 +) +(1,2317:6630773,42130930:25952256,424439,79822 +(1,2315:6630773,42130930:0,0,0 +g1,2315:6630773,42130930 +g1,2315:6630773,42130930 +g1,2315:6303093,42130930 +(1,2315:6303093,42130930:0,0,0 +) +g1,2315:6630773,42130930 +) +g1,2317:7626635,42130930 +g1,2317:8954451,42130930 +g1,2317:11942036,42130930 +h1,2317:13269852,42130930:0,0,0 +k1,2317:32583028,42130930:19313176 +g1,2317:32583028,42130930 +) +(1,2319:6630773,42946857:25952256,424439,106246 +(1,2318:6630773,42946857:0,0,0 +g1,2318:6630773,42946857 +g1,2318:6630773,42946857 +g1,2318:6303093,42946857 +(1,2318:6303093,42946857:0,0,0 +) +g1,2318:6630773,42946857 +) +k1,2319:6630773,42946857:0 +g1,2319:9618359,42946857 +g1,2319:10282267,42946857 +g1,2319:13269853,42946857 +g1,2319:15261577,42946857 +g1,2319:17253301,42946857 +g1,2319:17917209,42946857 +g1,2319:19576979,42946857 +h1,2319:20572841,42946857:0,0,0 +k1,2319:32583029,42946857:12010188 +g1,2319:32583029,42946857 +) +(1,2323:6630773,43762784:25952256,424439,79822 +(1,2321:6630773,43762784:0,0,0 +g1,2321:6630773,43762784 +g1,2321:6630773,43762784 +g1,2321:6303093,43762784 +(1,2321:6303093,43762784:0,0,0 +) +g1,2321:6630773,43762784 +) +g1,2323:7626635,43762784 +g1,2323:8954451,43762784 +g1,2323:11942036,43762784 +h1,2323:14265714,43762784:0,0,0 +k1,2323:32583030,43762784:18317316 +g1,2323:32583030,43762784 +) +] +) +g1,2324:32583029,43842606 +g1,2324:6630773,43842606 +g1,2324:6630773,43842606 +g1,2324:32583029,43842606 +g1,2324:32583029,43842606 +) +h1,2324:6630773,44039214:0,0,0 +] +(1,2330:32583029,45706769:0,0,0 +g1,2330:32583029,45706769 +) +) +] +(1,2330:6630773,47279633:25952256,0,0 +h1,2330:6630773,47279633:25952256,0,0 +) +] +(1,2330:4262630,4025873:0,0,0 +[1,2330:-473656,4025873:0,0,0 +(1,2330:-473656,-710413:0,0,0 +(1,2330:-473656,-710413:0,0,0 +g1,2330:-473656,-710413 ) -] +g1,2330:-473656,-710413 ) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,2292:37855564,49800853:1179648,16384,0 +] ) -) -k1,2292:3078556,49800853:-34777008 -) -] -g1,2292:6630773,4812305 -g1,2292:6630773,4812305 -g1,2292:10015707,4812305 -g1,2292:12209197,4812305 -k1,2292:31786111,4812305:19576914 -) -) -] -[1,2292:6630773,45706769:25952256,40108032,0 -(1,2292:6630773,45706769:25952256,40108032,0 -(1,2292:6630773,45706769:0,0,0 -g1,2292:6630773,45706769 -) -[1,2292:6630773,45706769:25952256,40108032,0 -v1,2190:6630773,6254097:0,393216,0 -(1,2200:6630773,9233906:25952256,3373025,196608 -g1,2200:6630773,9233906 -g1,2200:6630773,9233906 -g1,2200:6434165,9233906 -(1,2200:6434165,9233906:0,3373025,196608 -r1,2292:32779637,9233906:26345472,3569633,196608 -k1,2200:6434165,9233906:-26345472 -) -(1,2200:6434165,9233906:26345472,3373025,196608 -[1,2200:6630773,9233906:25952256,3176417,0 -(1,2192:6630773,6468007:25952256,410518,101187 -(1,2191:6630773,6468007:0,0,0 -g1,2191:6630773,6468007 -g1,2191:6630773,6468007 -g1,2191:6303093,6468007 -(1,2191:6303093,6468007:0,0,0 -) -g1,2191:6630773,6468007 -) -k1,2192:6630773,6468007:0 -g1,2192:12637541,6468007 -g1,2192:14850561,6468007 -g1,2192:15798998,6468007 -g1,2192:17063581,6468007 -g1,2192:18012019,6468007 -g1,2192:20541185,6468007 -g1,2192:23386496,6468007 -g1,2192:24018788,6468007 -g1,2192:26231808,6468007 -g1,2192:27496391,6468007 -g1,2192:28128683,6468007 -h1,2192:29393265,6468007:0,0,0 -k1,2192:32583029,6468007:3189764 -g1,2192:32583029,6468007 -) -(1,2199:6630773,7134185:25952256,404226,101187 -(1,2194:6630773,7134185:0,0,0 -g1,2194:6630773,7134185 -g1,2194:6630773,7134185 -g1,2194:6303093,7134185 -(1,2194:6303093,7134185:0,0,0 -) -g1,2194:6630773,7134185 -) -g1,2199:7579210,7134185 -g1,2199:9159939,7134185 -g1,2199:11056813,7134185 -g1,2199:12005250,7134185 -g1,2199:13269833,7134185 -h1,2199:15482853,7134185:0,0,0 -k1,2199:32583029,7134185:17100176 -g1,2199:32583029,7134185 -) -(1,2199:6630773,7800363:25952256,404226,6290 -h1,2199:6630773,7800363:0,0,0 -g1,2199:7579210,7800363 -g1,2199:8843793,7800363 -g1,2199:10740667,7800363 -g1,2199:11689104,7800363 -g1,2199:12953687,7800363 -h1,2199:15482852,7800363:0,0,0 -k1,2199:32583028,7800363:17100176 -g1,2199:32583028,7800363 -) -(1,2199:6630773,8466541:25952256,404226,107478 -h1,2199:6630773,8466541:0,0,0 -g1,2199:7579210,8466541 -g1,2199:9476084,8466541 -g1,2199:11372958,8466541 -g1,2199:12321395,8466541 -g1,2199:13585978,8466541 -h1,2199:16115143,8466541:0,0,0 -k1,2199:32583029,8466541:16467886 -g1,2199:32583029,8466541 -) -(1,2199:6630773,9132719:25952256,404226,101187 -h1,2199:6630773,9132719:0,0,0 -g1,2199:7579210,9132719 -g1,2199:9159939,9132719 -g1,2199:11056813,9132719 -g1,2199:12005250,9132719 -g1,2199:13269833,9132719 -h1,2199:17063581,9132719:0,0,0 -k1,2199:32583029,9132719:15519448 -g1,2199:32583029,9132719 -) -] -) -g1,2200:32583029,9233906 -g1,2200:6630773,9233906 -g1,2200:6630773,9233906 -g1,2200:32583029,9233906 -g1,2200:32583029,9233906 -) -h1,2200:6630773,9430514:0,0,0 -v1,2204:6630773,11320578:0,393216,0 -(1,2231:6630773,24037101:25952256,13109739,0 -g1,2231:6630773,24037101 -g1,2231:6303093,24037101 -r1,2292:6401397,24037101:98304,13109739,0 -g1,2231:6600626,24037101 -g1,2231:6797234,24037101 -[1,2231:6797234,24037101:25785795,13109739,0 -(1,2205:6797234,11682651:25785795,755289,196608 -(1,2204:6797234,11682651:0,755289,196608 -r1,2292:8134168,11682651:1336934,951897,196608 -k1,2204:6797234,11682651:-1336934 -) -(1,2204:6797234,11682651:1336934,755289,196608 -) -k1,2204:8298991,11682651:164823 -k1,2204:8626671,11682651:327680 -k1,2204:10574729,11682651:164823 -k1,2204:11758637,11682651:164823 -k1,2204:14231638,11682651:164823 -k1,2204:15388021,11682651:164823 -k1,2204:16212136,11682651:164823 -k1,2204:19139302,11682651:164823 -k1,2204:21491061,11682651:164823 -k1,2204:22674969,11682651:164823 -k1,2204:25160422,11682651:164823 -k1,2204:26481955,11682651:164823 -k1,2204:27178275,11682651:164823 -k1,2204:29980267,11682651:164823 -k1,2204:30831252,11682651:164823 -k1,2204:32583029,11682651:0 -) -(1,2205:6797234,12524139:25785795,513147,126483 -k1,2204:8775807,12524139:222863 -k1,2204:9684832,12524139:222863 -k1,2204:12379714,12524139:222864 -k1,2204:14488048,12524139:222863 -k1,2204:15242408,12524139:222863 -k1,2204:16531542,12524139:222863 -k1,2204:18883670,12524139:222863 -k1,2204:20655150,12524139:222864 -k1,2204:21746365,12524139:222863 -k1,2204:23691514,12524139:222863 -k1,2204:24542212,12524139:222863 -k1,2204:25968316,12524139:222863 -k1,2204:27558260,12524139:222863 -k1,2204:28649476,12524139:222864 -k1,2204:30402605,12524139:222863 -k1,2204:31276896,12524139:222863 -k1,2204:32583029,12524139:0 -) -(1,2205:6797234,13365627:25785795,513147,134348 -k1,2204:9560137,13365627:170299 -k1,2204:10749521,13365627:170299 -k1,2204:13873528,13365627:170299 -k1,2204:14703119,13365627:170299 -k1,2204:15892503,13365627:170299 -k1,2204:17451510,13365627:170299 -k1,2204:19599686,13365627:170299 -(1,2204:19599686,13365627:0,459977,115847 -r1,2292:21716511,13365627:2116825,575824,115847 -k1,2204:19599686,13365627:-2116825 -) -(1,2204:19599686,13365627:2116825,459977,115847 -k1,2204:19599686,13365627:3277 -h1,2204:21713234,13365627:0,411205,112570 -) -k1,2204:21886810,13365627:170299 -k1,2204:22708537,13365627:170299 -k1,2204:25119512,13365627:170299 -k1,2204:26493052,13365627:170299 -k1,2204:28641228,13365627:170299 -k1,2204:30078993,13365627:170299 -k1,2204:30605152,13365627:170299 -k1,2204:32583029,13365627:0 -) -(1,2205:6797234,14207115:25785795,513147,134348 -k1,2204:7641701,14207115:185175 -k1,2204:9840141,14207115:185174 -k1,2204:11355697,14207115:185175 -k1,2204:12494420,14207115:185174 -k1,2204:13783877,14207115:185175 -k1,2204:16326382,14207115:185175 -k1,2204:17714797,14207115:185174 -k1,2204:18661500,14207115:185175 -k1,2204:21186309,14207115:185174 -k1,2204:22543923,14207115:185175 -k1,2204:24159094,14207115:185175 -k1,2204:24995696,14207115:185174 -(1,2204:24995696,14207115:0,452978,115847 -r1,2292:27464233,14207115:2468537,568825,115847 -k1,2204:24995696,14207115:-2468537 -) -(1,2204:24995696,14207115:2468537,452978,115847 -k1,2204:24995696,14207115:3277 -h1,2204:27460956,14207115:0,411205,112570 -) -k1,2204:27823078,14207115:185175 -k1,2204:29199697,14207115:185174 -k1,2204:31812326,14207115:185175 -k1,2204:32583029,14207115:0 -) -(1,2205:6797234,15048603:25785795,513147,134348 -g1,2204:10068791,15048603 -g1,2204:10919448,15048603 -(1,2204:10919448,15048603:0,452978,115847 -r1,2292:13739697,15048603:2820249,568825,115847 -k1,2204:10919448,15048603:-2820249 -) -(1,2204:10919448,15048603:2820249,452978,115847 -k1,2204:10919448,15048603:3277 -h1,2204:13736420,15048603:0,411205,112570 -) -g1,2204:13938926,15048603 -g1,2204:14754193,15048603 -g1,2204:15972507,15048603 -g1,2204:17838317,15048603 -g1,2204:20733042,15048603 -k1,2205:32583029,15048603:10576622 -g1,2205:32583029,15048603 -) -v1,2207:6797234,16239069:0,393216,0 -(1,2215:6797234,17892813:25785795,2046960,196608 -g1,2215:6797234,17892813 -g1,2215:6797234,17892813 -g1,2215:6600626,17892813 -(1,2215:6600626,17892813:0,2046960,196608 -r1,2292:32779637,17892813:26179011,2243568,196608 -k1,2215:6600625,17892813:-26179012 -) -(1,2215:6600626,17892813:26179011,2046960,196608 -[1,2215:6797234,17892813:25785795,1850352,0 -(1,2209:6797234,16452979:25785795,410518,101187 -(1,2208:6797234,16452979:0,0,0 -g1,2208:6797234,16452979 -g1,2208:6797234,16452979 -g1,2208:6469554,16452979 -(1,2208:6469554,16452979:0,0,0 -) -g1,2208:6797234,16452979 -) -g1,2209:12171711,16452979 -g1,2209:13120149,16452979 -g1,2209:17546189,16452979 -g1,2209:20391500,16452979 -g1,2209:21023792,16452979 -g1,2209:21972230,16452979 -h1,2209:22604522,16452979:0,0,0 -k1,2209:32583029,16452979:9978507 -g1,2209:32583029,16452979 -) -(1,2210:6797234,17119157:25785795,410518,101187 -h1,2210:6797234,17119157:0,0,0 -g1,2210:9958691,17119157 -g1,2210:12487857,17119157 -g1,2210:14068586,17119157 -g1,2210:15017023,17119157 -g1,2210:16913898,17119157 -g1,2210:22604521,17119157 -g1,2210:24185250,17119157 -g1,2210:26082124,17119157 -h1,2210:28927435,17119157:0,0,0 -k1,2210:32583029,17119157:3655594 -g1,2210:32583029,17119157 -) -(1,2214:6797234,17785335:25785795,410518,107478 -(1,2212:6797234,17785335:0,0,0 -g1,2212:6797234,17785335 -g1,2212:6797234,17785335 -g1,2212:6469554,17785335 -(1,2212:6469554,17785335:0,0,0 -) -g1,2212:6797234,17785335 -) -k1,2214:7640289,17785335:210764 -k1,2214:8799490,17785335:210764 -k1,2214:9958691,17785335:210764 -k1,2214:12382475,17785335:210764 -k1,2214:13857822,17785335:210764 -k1,2214:14700877,17785335:210764 -k1,2214:15860078,17785335:210764 -k1,2214:18283862,17785335:210764 -k1,2214:21023792,17785335:210764 -k1,2214:23763722,17785335:210764 -k1,2214:27768234,17785335:210764 -k1,2214:28927435,17785335:210764 -k1,2214:30718927,17785335:210764 -h1,2214:33248092,17785335:0,0,0 -k1,2214:33248092,17785335:0 -k1,2214:33248092,17785335:0 -) -] -) -g1,2215:32583029,17892813 -g1,2215:6797234,17892813 -g1,2215:6797234,17892813 -g1,2215:32583029,17892813 -g1,2215:32583029,17892813 -) -h1,2215:6797234,18089421:0,0,0 -(1,2219:6797234,19455197:25785795,513147,134348 -h1,2218:6797234,19455197:983040,0,0 -k1,2218:10414821,19455197:217579 -k1,2218:11291693,19455197:217580 -k1,2218:14204768,19455197:217579 -k1,2218:15852344,19455197:217580 -k1,2218:16601420,19455197:217579 -k1,2218:19897226,19455197:217580 -k1,2218:20730843,19455197:217579 -k1,2218:23227110,19455197:217580 -h1,2218:24197698,19455197:0,0,0 -k1,2218:24415277,19455197:217579 -k1,2218:25442227,19455197:217580 -k1,2218:27157959,19455197:217579 -h1,2218:28353336,19455197:0,0,0 -k1,2218:28744586,19455197:217580 -k1,2218:31896867,19455197:217579 -k1,2218:32583029,19455197:0 -) -(1,2219:6797234,20296685:25785795,513147,102891 -k1,2218:7986612,20296685:170293 -k1,2218:9329344,20296685:170293 -k1,2218:13016298,20296685:170292 -k1,2218:15041915,20296685:170293 -k1,2218:17168458,20296685:170293 -k1,2218:17954789,20296685:170293 -k1,2218:19726781,20296685:170292 -k1,2218:21594456,20296685:170293 -k1,2218:22512515,20296685:170293 -k1,2218:24969359,20296685:170293 -k1,2218:25825813,20296685:170292 -k1,2218:28113574,20296685:170293 -k1,2218:30979363,20296685:170293 -k1,2218:32583029,20296685:0 -) -(1,2219:6797234,21138173:25785795,513147,126483 -g1,2218:7209455,21138173 -g1,2218:8606027,21138173 -g1,2218:10008497,21138173 -g1,2218:12869143,21138173 -g1,2218:14016023,21138173 -k1,2219:32583029,21138173:15414069 -g1,2219:32583029,21138173 -) -v1,2221:6797234,22328639:0,393216,0 -(1,2228:6797234,23316205:25785795,1380782,196608 -g1,2228:6797234,23316205 -g1,2228:6797234,23316205 -g1,2228:6600626,23316205 -(1,2228:6600626,23316205:0,1380782,196608 -r1,2292:32779637,23316205:26179011,1577390,196608 -k1,2228:6600625,23316205:-26179012 -) -(1,2228:6600626,23316205:26179011,1380782,196608 -[1,2228:6797234,23316205:25785795,1184174,0 -(1,2223:6797234,22542549:25785795,410518,101187 -(1,2222:6797234,22542549:0,0,0 -g1,2222:6797234,22542549 -g1,2222:6797234,22542549 -g1,2222:6469554,22542549 -(1,2222:6469554,22542549:0,0,0 -) -g1,2222:6797234,22542549 -) -k1,2223:6797234,22542549:0 -k1,2223:9894487,22542549:251942 -k1,2223:12359449,22542549:251942 -k1,2223:13875974,22542549:251942 -k1,2223:14760207,22542549:251942 -k1,2223:16592878,22542549:251942 -k1,2223:20954714,22542549:251942 -k1,2223:23735821,22542549:251942 -k1,2223:24303909,22542549:251942 -k1,2223:25188143,22542549:251942 -k1,2223:26388523,22542549:251942 -k1,2223:27905048,22542549:251942 -k1,2223:29737718,22542549:251942 -h1,2223:32583029,22542549:0,0,0 -k1,2223:32583029,22542549:0 -k1,2223:32583029,22542549:0 -) -(1,2227:6797234,23208727:25785795,410518,107478 -(1,2225:6797234,23208727:0,0,0 -g1,2225:6797234,23208727 -g1,2225:6797234,23208727 -g1,2225:6469554,23208727 -(1,2225:6469554,23208727:0,0,0 -) -g1,2225:6797234,23208727 -) -k1,2227:7640289,23208727:210764 -k1,2227:8799490,23208727:210764 -k1,2227:9958691,23208727:210764 -k1,2227:12382475,23208727:210764 -k1,2227:13857822,23208727:210764 -k1,2227:14700877,23208727:210764 -k1,2227:15860078,23208727:210764 -k1,2227:18283862,23208727:210764 -k1,2227:21023792,23208727:210764 -k1,2227:23763722,23208727:210764 -k1,2227:27768234,23208727:210764 -k1,2227:28927435,23208727:210764 -k1,2227:30718927,23208727:210764 -h1,2227:33248092,23208727:0,0,0 -k1,2227:33248092,23208727:0 -k1,2227:33248092,23208727:0 -) -] -) -g1,2228:32583029,23316205 -g1,2228:6797234,23316205 -g1,2228:6797234,23316205 -g1,2228:32583029,23316205 -g1,2228:32583029,23316205 -) -h1,2228:6797234,23512813:0,0,0 -] -g1,2231:32583029,24037101 -) -h1,2231:6630773,24037101:0,0,0 -(1,2234:6630773,25402877:25952256,505283,134348 -h1,2233:6630773,25402877:983040,0,0 -k1,2233:10696284,25402877:292603 -(1,2233:10696284,25402877:0,452978,115847 -r1,2292:13516533,25402877:2820249,568825,115847 -k1,2233:10696284,25402877:-2820249 -) -(1,2233:10696284,25402877:2820249,452978,115847 -k1,2233:10696284,25402877:3277 -h1,2233:13513256,25402877:0,411205,112570 -) -k1,2233:13809136,25402877:292603 -k1,2233:16448583,25402877:292603 -k1,2233:17932631,25402877:292603 -k1,2233:20266681,25402877:292604 -k1,2233:23533963,25402877:292603 -k1,2233:26196348,25402877:292603 -k1,2233:28178469,25402877:292603 -(1,2233:28178469,25402877:0,452978,115847 -r1,2292:29943582,25402877:1765113,568825,115847 -k1,2233:28178469,25402877:-1765113 -) -(1,2233:28178469,25402877:1765113,452978,115847 -k1,2233:28178469,25402877:3277 -h1,2233:29940305,25402877:0,411205,112570 -) -k1,2233:30236185,25402877:292603 -k1,2233:32583029,25402877:0 -) -(1,2234:6630773,26244365:25952256,505283,134348 -g1,2233:9804681,26244365 -g1,2233:12200021,26244365 -g1,2233:13666716,26244365 -k1,2234:32583029,26244365:16434465 -g1,2234:32583029,26244365 -) -v1,2236:6630773,27434831:0,393216,0 -(1,2267:6630773,36335512:25952256,9293897,196608 -g1,2267:6630773,36335512 -g1,2267:6630773,36335512 -g1,2267:6434165,36335512 -(1,2267:6434165,36335512:0,9293897,196608 -r1,2292:32779637,36335512:26345472,9490505,196608 -k1,2267:6434165,36335512:-26345472 -) -(1,2267:6434165,36335512:26345472,9293897,196608 -[1,2267:6630773,36335512:25952256,9097289,0 -(1,2238:6630773,27642449:25952256,404226,101187 -(1,2237:6630773,27642449:0,0,0 -g1,2237:6630773,27642449 -g1,2237:6630773,27642449 -g1,2237:6303093,27642449 -(1,2237:6303093,27642449:0,0,0 -) -g1,2237:6630773,27642449 -) -k1,2238:6630773,27642449:0 -g1,2238:8527648,27642449 -g1,2238:9159940,27642449 -g1,2238:11372960,27642449 -g1,2238:13269834,27642449 -g1,2238:13902126,27642449 -h1,2238:14534418,27642449:0,0,0 -k1,2238:32583030,27642449:18048612 -g1,2238:32583030,27642449 -) -(1,2242:6630773,28308627:25952256,404226,76021 -(1,2240:6630773,28308627:0,0,0 -g1,2240:6630773,28308627 -g1,2240:6630773,28308627 -g1,2240:6303093,28308627 -(1,2240:6303093,28308627:0,0,0 -) -g1,2240:6630773,28308627 -) -g1,2242:7579210,28308627 -g1,2242:8843793,28308627 -g1,2242:10740667,28308627 -g1,2242:12637541,28308627 -h1,2242:14218269,28308627:0,0,0 -k1,2242:32583029,28308627:18364760 -g1,2242:32583029,28308627 -) -(1,2244:6630773,29630165:25952256,404226,101187 -(1,2243:6630773,29630165:0,0,0 -g1,2243:6630773,29630165 -g1,2243:6630773,29630165 -g1,2243:6303093,29630165 -(1,2243:6303093,29630165:0,0,0 -) -g1,2243:6630773,29630165 -) -k1,2244:6630773,29630165:0 -g1,2244:9476085,29630165 -g1,2244:10108377,29630165 -g1,2244:12321397,29630165 -g1,2244:14218271,29630165 -g1,2244:14850563,29630165 -h1,2244:15482855,29630165:0,0,0 -k1,2244:32583029,29630165:17100174 -g1,2244:32583029,29630165 -) -(1,2248:6630773,30296343:25952256,404226,76021 -(1,2246:6630773,30296343:0,0,0 -g1,2246:6630773,30296343 -g1,2246:6630773,30296343 -g1,2246:6303093,30296343 -(1,2246:6303093,30296343:0,0,0 -) -g1,2246:6630773,30296343 -) -g1,2248:7579210,30296343 -g1,2248:8843793,30296343 -h1,2248:12321395,30296343:0,0,0 -k1,2248:32583029,30296343:20261634 -g1,2248:32583029,30296343 -) -(1,2250:6630773,31617881:25952256,404226,101187 -(1,2249:6630773,31617881:0,0,0 -g1,2249:6630773,31617881 -g1,2249:6630773,31617881 -g1,2249:6303093,31617881 -(1,2249:6303093,31617881:0,0,0 -) -g1,2249:6630773,31617881 -) -k1,2250:6630773,31617881:0 -g1,2250:9476085,31617881 -g1,2250:10108377,31617881 -g1,2250:12321397,31617881 -g1,2250:14218271,31617881 -g1,2250:14850563,31617881 -g1,2250:16431293,31617881 -h1,2250:17379730,31617881:0,0,0 -k1,2250:32583029,31617881:15203299 -g1,2250:32583029,31617881 -) -(1,2254:6630773,32284059:25952256,404226,76021 -(1,2252:6630773,32284059:0,0,0 -g1,2252:6630773,32284059 -g1,2252:6630773,32284059 -g1,2252:6303093,32284059 -(1,2252:6303093,32284059:0,0,0 -) -g1,2252:6630773,32284059 -) -g1,2254:7579210,32284059 -g1,2254:8843793,32284059 -g1,2254:11689104,32284059 -g1,2254:12005250,32284059 -g1,2254:12321396,32284059 -g1,2254:12637542,32284059 -g1,2254:12953688,32284059 -g1,2254:13269834,32284059 -g1,2254:13585980,32284059 -h1,2254:18012020,32284059:0,0,0 -k1,2254:32583029,32284059:14571009 -g1,2254:32583029,32284059 -) -(1,2256:6630773,33605597:25952256,404226,101187 -(1,2255:6630773,33605597:0,0,0 -g1,2255:6630773,33605597 -g1,2255:6630773,33605597 -g1,2255:6303093,33605597 -(1,2255:6303093,33605597:0,0,0 -) -g1,2255:6630773,33605597 -) -k1,2256:6630773,33605597:0 -g1,2256:9476085,33605597 -g1,2256:10108377,33605597 -g1,2256:12953689,33605597 -g1,2256:14850564,33605597 -g1,2256:16747438,33605597 -g1,2256:17379730,33605597 -h1,2256:18012022,33605597:0,0,0 -k1,2256:32583029,33605597:14571007 -g1,2256:32583029,33605597 -) -(1,2260:6630773,34271775:25952256,404226,76021 -(1,2258:6630773,34271775:0,0,0 -g1,2258:6630773,34271775 -g1,2258:6630773,34271775 -g1,2258:6303093,34271775 -(1,2258:6303093,34271775:0,0,0 -) -g1,2258:6630773,34271775 -) -g1,2260:7579210,34271775 -g1,2260:8843793,34271775 -g1,2260:11689104,34271775 -h1,2260:12953687,34271775:0,0,0 -k1,2260:32583029,34271775:19629342 -g1,2260:32583029,34271775 -) -(1,2262:6630773,35593313:25952256,404226,101187 -(1,2261:6630773,35593313:0,0,0 -g1,2261:6630773,35593313 -g1,2261:6630773,35593313 -g1,2261:6303093,35593313 -(1,2261:6303093,35593313:0,0,0 -) -g1,2261:6630773,35593313 -) -k1,2262:6630773,35593313:0 -g1,2262:9476085,35593313 -g1,2262:10108377,35593313 -g1,2262:12953689,35593313 -g1,2262:14850564,35593313 -g1,2262:16747438,35593313 -g1,2262:17379730,35593313 -g1,2262:18960460,35593313 -h1,2262:19908897,35593313:0,0,0 -k1,2262:32583029,35593313:12674132 -g1,2262:32583029,35593313 -) -(1,2266:6630773,36259491:25952256,404226,76021 -(1,2264:6630773,36259491:0,0,0 -g1,2264:6630773,36259491 -g1,2264:6630773,36259491 -g1,2264:6303093,36259491 -(1,2264:6303093,36259491:0,0,0 -) -g1,2264:6630773,36259491 -) -g1,2266:7579210,36259491 -g1,2266:8843793,36259491 -g1,2266:11689104,36259491 -h1,2266:13902124,36259491:0,0,0 -k1,2266:32583028,36259491:18680904 -g1,2266:32583028,36259491 -) -] -) -g1,2267:32583029,36335512 -g1,2267:6630773,36335512 -g1,2267:6630773,36335512 -g1,2267:32583029,36335512 -g1,2267:32583029,36335512 -) -h1,2267:6630773,36532120:0,0,0 -(1,2271:6630773,37897896:25952256,513147,134348 -h1,2270:6630773,37897896:983040,0,0 -k1,2270:10964396,37897896:196335 -k1,2270:13480050,37897896:196335 -k1,2270:14867830,37897896:196335 -k1,2270:17361857,37897896:196335 -k1,2270:19299484,37897896:196335 -k1,2270:21283641,37897896:196335 -k1,2270:22011473,37897896:196335 -k1,2270:22563668,37897896:196335 -k1,2270:25498753,37897896:196335 -k1,2270:28943052,37897896:196335 -k1,2270:30330832,37897896:196335 -k1,2270:30942007,37897896:196332 -k1,2271:32583029,37897896:0 -) -(1,2271:6630773,38739384:25952256,505283,126483 -g1,2270:8097468,38739384 -(1,2270:8097468,38739384:0,452978,115847 -r1,2292:10917717,38739384:2820249,568825,115847 -k1,2270:8097468,38739384:-2820249 -) -(1,2270:8097468,38739384:2820249,452978,115847 -k1,2270:8097468,38739384:3277 -h1,2270:10914440,38739384:0,411205,112570 -) -g1,2270:11116946,38739384 -g1,2270:15079908,38739384 -g1,2270:16482378,38739384 -k1,2271:32583029,38739384:12852687 -g1,2271:32583029,38739384 -) -v1,2273:6630773,39929850:0,393216,0 -(1,2287:6630773,43533561:25952256,3996927,196608 -g1,2287:6630773,43533561 -g1,2287:6630773,43533561 -g1,2287:6434165,43533561 -(1,2287:6434165,43533561:0,3996927,196608 -r1,2292:32779637,43533561:26345472,4193535,196608 -k1,2287:6434165,43533561:-26345472 -) -(1,2287:6434165,43533561:26345472,3996927,196608 -[1,2287:6630773,43533561:25952256,3800319,0 -(1,2275:6630773,40137468:25952256,404226,76021 -(1,2274:6630773,40137468:0,0,0 -g1,2274:6630773,40137468 -g1,2274:6630773,40137468 -g1,2274:6303093,40137468 -(1,2274:6303093,40137468:0,0,0 -) -g1,2274:6630773,40137468 -) -k1,2275:6630773,40137468:0 -g1,2275:9476085,40137468 -g1,2275:10108377,40137468 -g1,2275:10740669,40137468 -g1,2275:12005252,40137468 -g1,2275:13902126,40137468 -h1,2275:14534418,40137468:0,0,0 -k1,2275:32583030,40137468:18048612 -g1,2275:32583030,40137468 -) -(1,2279:6630773,40803646:25952256,404226,76021 -(1,2277:6630773,40803646:0,0,0 -g1,2277:6630773,40803646 -g1,2277:6630773,40803646 -g1,2277:6303093,40803646 -(1,2277:6303093,40803646:0,0,0 -) -g1,2277:6630773,40803646 -) -g1,2279:7579210,40803646 -g1,2279:8843793,40803646 -g1,2279:10424522,40803646 -h1,2279:12321396,40803646:0,0,0 -k1,2279:32583028,40803646:20261632 -g1,2279:32583028,40803646 -) -(1,2281:6630773,42125184:25952256,404226,107478 -(1,2280:6630773,42125184:0,0,0 -g1,2280:6630773,42125184 -g1,2280:6630773,42125184 -g1,2280:6303093,42125184 -(1,2280:6303093,42125184:0,0,0 -) -g1,2280:6630773,42125184 -) -k1,2281:6630773,42125184:0 -g1,2281:9476085,42125184 -g1,2281:10108377,42125184 -g1,2281:11372961,42125184 -g1,2281:11689107,42125184 -g1,2281:13585981,42125184 -g1,2281:15482855,42125184 -g1,2281:16747438,42125184 -g1,2281:17379730,42125184 -g1,2281:19908896,42125184 -g1,2281:20857333,42125184 -g1,2281:22121916,42125184 -g1,2281:24651082,42125184 -g1,2281:25283374,42125184 -g1,2281:26547957,42125184 -g1,2281:28444831,42125184 -h1,2281:29393268,42125184:0,0,0 -k1,2281:32583029,42125184:3189761 -g1,2281:32583029,42125184 -) -(1,2286:6630773,42791362:25952256,404226,107478 -(1,2283:6630773,42791362:0,0,0 -g1,2283:6630773,42791362 -g1,2283:6630773,42791362 -g1,2283:6303093,42791362 -(1,2283:6303093,42791362:0,0,0 -) -g1,2283:6630773,42791362 -) -g1,2286:7579210,42791362 -g1,2286:8843793,42791362 -g1,2286:11056813,42791362 -g1,2286:12953687,42791362 -g1,2286:14218270,42791362 -g1,2286:14850562,42791362 -g1,2286:17379728,42791362 -g1,2286:18328165,42791362 -g1,2286:19592748,42791362 -h1,2286:20857331,42791362:0,0,0 -k1,2286:32583029,42791362:11725698 -g1,2286:32583029,42791362 -) -(1,2286:6630773,43457540:25952256,404226,76021 -h1,2286:6630773,43457540:0,0,0 -g1,2286:7579210,43457540 -g1,2286:8843793,43457540 -g1,2286:10424522,43457540 -h1,2286:12321396,43457540:0,0,0 -k1,2286:32583028,43457540:20261632 -g1,2286:32583028,43457540 -) -] -) -g1,2287:32583029,43533561 -g1,2287:6630773,43533561 -g1,2287:6630773,43533561 -g1,2287:32583029,43533561 -g1,2287:32583029,43533561 -) -h1,2287:6630773,43730169:0,0,0 -v1,2291:6630773,45620233:0,393216,0 -] -(1,2292:32583029,45706769:0,0,0 -g1,2292:32583029,45706769 -) -) -] -(1,2292:6630773,47279633:25952256,0,0 -h1,2292:6630773,47279633:25952256,0,0 -) -] -(1,2292:4262630,4025873:0,0,0 -[1,2292:-473656,4025873:0,0,0 -(1,2292:-473656,-710413:0,0,0 -(1,2292:-473656,-710413:0,0,0 -g1,2292:-473656,-710413 -) -g1,2292:-473656,-710413 -) -] -) -] -!25187 -}58 -Input:478:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:479:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:480:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:481:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:482:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:483:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:484:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:485:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +] +!30164 +}57 Input:486:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:487:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:488:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -72087,179622 +71698,172093 @@ Input:497:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsol Input:498:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:499:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:500:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!2150 -{59 -[1,2367:4262630,47279633:28320399,43253760,0 -(1,2367:4262630,4025873:0,0,0 -[1,2367:-473656,4025873:0,0,0 -(1,2367:-473656,-710413:0,0,0 -(1,2367:-473656,-644877:0,0,0 -k1,2367:-473656,-644877:-65536 -) -(1,2367:-473656,4736287:0,0,0 -k1,2367:-473656,4736287:5209943 -) -g1,2367:-473656,-710413 -) -] -) -[1,2367:6630773,47279633:25952256,43253760,0 -[1,2367:6630773,4812305:25952256,786432,0 -(1,2367:6630773,4812305:25952256,505283,11795 -(1,2367:6630773,4812305:25952256,505283,11795 -g1,2367:3078558,4812305 -[1,2367:3078558,4812305:0,0,0 -(1,2367:3078558,2439708:0,1703936,0 -k1,2367:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,2367:2537886,2439708:1179648,16384,0 -) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,2367:3078558,1915420:16384,1179648,0 -) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 -) -] -) -) -) -] -[1,2367:3078558,4812305:0,0,0 -(1,2367:3078558,2439708:0,1703936,0 -g1,2367:29030814,2439708 -g1,2367:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,2367:36151628,1915420:16384,1179648,0 -) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 -) -] -) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,2367:37855564,2439708:1179648,16384,0 -) -) -k1,2367:3078556,2439708:-34777008 -) -] -[1,2367:3078558,4812305:0,0,0 -(1,2367:3078558,49800853:0,16384,2228224 -k1,2367:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,2367:2537886,49800853:1179648,16384,0 -) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,2367:3078558,51504789:16384,1179648,0 -) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 -) -] -) -) -) -] -[1,2367:3078558,4812305:0,0,0 -(1,2367:3078558,49800853:0,16384,2228224 -g1,2367:29030814,49800853 -g1,2367:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,2367:36151628,51504789:16384,1179648,0 -) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 -) -] -) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,2367:37855564,49800853:1179648,16384,0 -) -) -k1,2367:3078556,49800853:-34777008 -) -] -g1,2367:6630773,4812305 -k1,2367:22348274,4812305:14920583 -g1,2367:23970945,4812305 -g1,2367:24793421,4812305 -g1,2367:27528893,4812305 -g1,2367:28938572,4812305 -) -) -] -[1,2367:6630773,45706769:25952256,40108032,0 -(1,2367:6630773,45706769:25952256,40108032,0 -(1,2367:6630773,45706769:0,0,0 -g1,2367:6630773,45706769 -) -[1,2367:6630773,45706769:25952256,40108032,0 -v1,2292:6630773,6254097:0,393216,0 -(1,2292:6630773,11020558:25952256,5159677,0 -g1,2292:6630773,11020558 -g1,2292:6303093,11020558 -r1,2367:6401397,11020558:98304,5159677,0 -g1,2292:6600626,11020558 -g1,2292:6797234,11020558 -[1,2292:6797234,11020558:25785795,5159677,0 -(1,2292:6797234,6686635:25785795,825754,196608 -(1,2291:6797234,6686635:0,825754,196608 -r1,2367:7890375,6686635:1093141,1022362,196608 -k1,2291:6797234,6686635:-1093141 -) -(1,2291:6797234,6686635:1093141,825754,196608 -) -k1,2291:8158131,6686635:267756 -k1,2291:9884349,6686635:327680 -k1,2291:12941974,6686635:267757 -(1,2291:12941974,6686635:0,452978,115847 -r1,2367:15762223,6686635:2820249,568825,115847 -k1,2291:12941974,6686635:-2820249 -) -(1,2291:12941974,6686635:2820249,452978,115847 -k1,2291:12941974,6686635:3277 -h1,2291:15758946,6686635:0,411205,112570 -) -k1,2291:16029979,6686635:267756 -k1,2291:17398740,6686635:267756 -k1,2291:20893490,6686635:267757 -k1,2291:24772280,6686635:267756 -k1,2291:26324542,6686635:267756 -k1,2291:28308031,6686635:267756 -k1,2291:29033885,6686635:267757 -k1,2291:31931601,6686635:267756 -k1,2291:32583029,6686635:0 -) -(1,2292:6797234,7528123:25785795,513147,134348 -k1,2291:8884009,7528123:266185 -k1,2291:11035666,7528123:266186 -k1,2291:12484776,7528123:266185 -k1,2291:13410253,7528123:266185 -k1,2291:14695523,7528123:266185 -k1,2291:16827519,7528123:266186 -k1,2291:17625201,7528123:266185 -k1,2291:20645864,7528123:266185 -k1,2291:22103494,7528123:266185 -k1,2291:24255151,7528123:266186 -k1,2291:27826317,7528123:266185 -k1,2291:29084062,7528123:266185 -k1,2291:32583029,7528123:0 -) -(1,2292:6797234,8369611:25785795,505283,126483 -k1,2291:10743940,8369611:243922 -k1,2291:12136709,8369611:243923 -(1,2291:12136709,8369611:0,452978,115847 -r1,2367:16363805,8369611:4227096,568825,115847 -k1,2291:12136709,8369611:-4227096 -) -(1,2291:12136709,8369611:4227096,452978,115847 -k1,2291:12136709,8369611:3277 -h1,2291:16360528,8369611:0,411205,112570 -) -k1,2291:16607727,8369611:243922 -k1,2291:17503078,8369611:243923 -k1,2291:19777961,8369611:243922 -k1,2291:21040968,8369611:243922 -k1,2291:22672944,8369611:243923 -k1,2291:24108311,8369611:243922 -k1,2291:26136124,8369611:243923 -k1,2291:27583287,8369611:243922 -k1,2291:32583029,8369611:0 -) -(1,2292:6797234,9211099:25785795,513147,134348 -k1,2291:9267437,9211099:264261 -k1,2291:10550783,9211099:264261 -k1,2291:13476462,9211099:264262 -k1,2291:15596047,9211099:264261 -k1,2291:16585136,9211099:264261 -k1,2291:18133903,9211099:264261 -k1,2291:19773766,9211099:264262 -k1,2291:22335719,9211099:264261 -k1,2291:24341272,9211099:264261 -k1,2291:26393355,9211099:264261 -k1,2291:27189114,9211099:264262 -k1,2291:30402495,9211099:264261 -k1,2291:31858201,9211099:264261 -k1,2291:32583029,9211099:0 -) -(1,2292:6797234,10052587:25785795,505283,126483 -k1,2291:8251478,10052587:169738 -k1,2291:9440301,10052587:169738 -k1,2291:12061741,10052587:169738 -k1,2291:15206159,10052587:169739 -h1,2291:15206159,10052587:0,0,0 -k1,2291:16166261,10052587:169738 -k1,2291:16867496,10052587:169738 -k1,2291:18103505,10052587:169738 -k1,2291:21772210,10052587:169738 -k1,2291:25644732,10052587:169738 -k1,2291:27005916,10052587:169739 -k1,2291:28592542,10052587:169738 -k1,2291:29828551,10052587:169738 -k1,2291:32583029,10052587:0 -) -(1,2292:6797234,10894075:25785795,355205,126483 -k1,2292:32583028,10894075:24018288 -g1,2292:32583028,10894075 -) -] -g1,2292:32583029,11020558 -) -h1,2292:6630773,11020558:0,0,0 -(1,2295:6630773,12386334:25952256,505283,134348 -h1,2294:6630773,12386334:983040,0,0 -k1,2294:9914387,12386334:205388 -(1,2294:9914387,12386334:0,452978,115847 -r1,2367:13086347,12386334:3171960,568825,115847 -k1,2294:9914387,12386334:-3171960 -) -(1,2294:9914387,12386334:3171960,452978,115847 -k1,2294:9914387,12386334:3277 -h1,2294:13083070,12386334:0,411205,112570 -) -k1,2294:13291735,12386334:205388 -k1,2294:15866904,12386334:205387 -k1,2294:19413973,12386334:205388 -k1,2294:20723643,12386334:205388 -k1,2294:21676797,12386334:205388 -k1,2294:24854243,12386334:205388 -k1,2294:26251075,12386334:205387 -k1,2294:29175552,12386334:205388 -k1,2294:30137225,12386334:205388 -k1,2295:32583029,12386334:0 -) -(1,2295:6630773,13227822:25952256,473825,134348 -g1,2294:8565395,13227822 -(1,2294:8565395,13227822:0,452978,122846 -r1,2367:12440779,13227822:3875384,575824,122846 -k1,2294:8565395,13227822:-3875384 -) -(1,2294:8565395,13227822:3875384,452978,122846 -k1,2294:8565395,13227822:3277 -h1,2294:12437502,13227822:0,411205,112570 -) -g1,2294:12640008,13227822 -g1,2294:13522122,13227822 -(1,2294:13522122,13227822:0,452978,115847 -r1,2367:16342371,13227822:2820249,568825,115847 -k1,2294:13522122,13227822:-2820249 -) -(1,2294:13522122,13227822:2820249,452978,115847 -k1,2294:13522122,13227822:3277 -h1,2294:16339094,13227822:0,411205,112570 -) -k1,2295:32583029,13227822:16066988 -g1,2295:32583029,13227822 -) -(1,2297:6630773,14069310:25952256,505283,126483 -h1,2296:6630773,14069310:983040,0,0 -g1,2296:8855064,14069310 -g1,2296:12268834,14069310 -g1,2296:13336415,14069310 -g1,2296:14639926,14069310 -g1,2296:16276360,14069310 -g1,2296:17127017,14069310 -(1,2296:17127017,14069310:0,414482,115847 -r1,2367:17485283,14069310:358266,530329,115847 -k1,2296:17127017,14069310:-358266 -) -(1,2296:17127017,14069310:358266,414482,115847 -k1,2296:17127017,14069310:3277 -h1,2296:17482006,14069310:0,411205,112570 -) -g1,2296:17684512,14069310 -g1,2296:18239601,14069310 -g1,2296:21196585,14069310 -g1,2296:22081976,14069310 -g1,2296:24356730,14069310 -g1,2296:26424390,14069310 -g1,2296:27306504,14069310 -g1,2296:27861593,14069310 -k1,2297:32583029,14069310:2036426 -g1,2297:32583029,14069310 -) -v1,2299:6630773,15259776:0,393216,0 -(1,2312:6630773,18197309:25952256,3330749,196608 -g1,2312:6630773,18197309 -g1,2312:6630773,18197309 -g1,2312:6434165,18197309 -(1,2312:6434165,18197309:0,3330749,196608 -r1,2367:32779637,18197309:26345472,3527357,196608 -k1,2312:6434165,18197309:-26345472 -) -(1,2312:6434165,18197309:26345472,3330749,196608 -[1,2312:6630773,18197309:25952256,3134141,0 -(1,2301:6630773,15467394:25952256,404226,101187 -(1,2300:6630773,15467394:0,0,0 -g1,2300:6630773,15467394 -g1,2300:6630773,15467394 -g1,2300:6303093,15467394 -(1,2300:6303093,15467394:0,0,0 -) -g1,2300:6630773,15467394 -) -k1,2301:6630773,15467394:0 -g1,2301:9476085,15467394 -g1,2301:10108377,15467394 -g1,2301:14850563,15467394 -g1,2301:16747437,15467394 -g1,2301:17379729,15467394 -g1,2301:18328167,15467394 -g1,2301:19908896,15467394 -g1,2301:20541188,15467394 -h1,2301:21173480,15467394:0,0,0 -k1,2301:32583029,15467394:11409549 -g1,2301:32583029,15467394 -) -(1,2305:6630773,16133572:25952256,404226,76021 -(1,2303:6630773,16133572:0,0,0 -g1,2303:6630773,16133572 -g1,2303:6630773,16133572 -g1,2303:6303093,16133572 -(1,2303:6303093,16133572:0,0,0 -) -g1,2303:6630773,16133572 -) -g1,2305:7579210,16133572 -g1,2305:8843793,16133572 -h1,2305:11056813,16133572:0,0,0 -k1,2305:32583029,16133572:21526216 -g1,2305:32583029,16133572 -) -(1,2307:6630773,17455110:25952256,404226,101187 -(1,2306:6630773,17455110:0,0,0 -g1,2306:6630773,17455110 -g1,2306:6630773,17455110 -g1,2306:6303093,17455110 -(1,2306:6303093,17455110:0,0,0 -) -g1,2306:6630773,17455110 -) -k1,2307:6630773,17455110:0 -g1,2307:9476085,17455110 -g1,2307:10108377,17455110 -g1,2307:15482855,17455110 -g1,2307:20225041,17455110 -g1,2307:22121915,17455110 -g1,2307:22754207,17455110 -g1,2307:23702645,17455110 -g1,2307:25283374,17455110 -g1,2307:25915666,17455110 -h1,2307:26864103,17455110:0,0,0 -k1,2307:32583029,17455110:5718926 -g1,2307:32583029,17455110 -) -(1,2311:6630773,18121288:25952256,404226,76021 -(1,2309:6630773,18121288:0,0,0 -g1,2309:6630773,18121288 -g1,2309:6630773,18121288 -g1,2309:6303093,18121288 -(1,2309:6303093,18121288:0,0,0 -) -g1,2309:6630773,18121288 -) -g1,2311:7579210,18121288 -g1,2311:8843793,18121288 -g1,2311:12005250,18121288 -h1,2311:14534415,18121288:0,0,0 -k1,2311:32583029,18121288:18048614 -g1,2311:32583029,18121288 -) -] -) -g1,2312:32583029,18197309 -g1,2312:6630773,18197309 -g1,2312:6630773,18197309 -g1,2312:32583029,18197309 -g1,2312:32583029,18197309 -) -h1,2312:6630773,18393917:0,0,0 -(1,2316:6630773,19759693:25952256,513147,134348 -h1,2315:6630773,19759693:983040,0,0 -k1,2315:11994547,19759693:286700 -k1,2315:12812745,19759693:286701 -k1,2315:14676897,19759693:286700 -k1,2315:15566528,19759693:286700 -k1,2315:17671853,19759693:286701 -k1,2315:18720081,19759693:286700 -k1,2315:21124905,19759693:286700 -k1,2315:24107102,19759693:286701 -(1,2315:24107102,19759693:0,452978,115847 -r1,2367:26927351,19759693:2820249,568825,115847 -k1,2315:24107102,19759693:-2820249 -) -(1,2315:24107102,19759693:2820249,452978,115847 -k1,2315:24107102,19759693:3277 -h1,2315:26924074,19759693:0,411205,112570 -) -k1,2315:27214051,19759693:286700 -k1,2315:28310121,19759693:286700 -k1,2315:29615907,19759693:286701 -k1,2315:30976742,19759693:286700 -k1,2315:32583029,19759693:0 -) -(1,2316:6630773,20601181:25952256,513147,134348 -k1,2315:8125084,20601181:194732 -k1,2315:9684277,20601181:194733 -k1,2315:10538301,20601181:194732 -k1,2315:11752119,20601181:194733 -k1,2315:15592619,20601181:194732 -k1,2315:18533965,20601181:194732 -(1,2315:18533965,20601181:0,414482,115847 -r1,2367:19243943,20601181:709978,530329,115847 -k1,2315:18533965,20601181:-709978 -) -(1,2315:18533965,20601181:709978,414482,115847 -k1,2315:18533965,20601181:3277 -h1,2315:19240666,20601181:0,411205,112570 -) -k1,2315:19612346,20601181:194733 -k1,2315:21575239,20601181:194732 -k1,2315:22789057,20601181:194733 -k1,2315:26056117,20601181:194732 -k1,2315:28456137,20601181:194733 -k1,2315:29302297,20601181:194732 -k1,2316:32583029,20601181:0 -) -(1,2316:6630773,21442669:25952256,513147,115847 -(1,2315:6630773,21442669:0,414482,115847 -r1,2367:6989039,21442669:358266,530329,115847 -k1,2315:6630773,21442669:-358266 -) -(1,2315:6630773,21442669:358266,414482,115847 -k1,2315:6630773,21442669:3277 -h1,2315:6985762,21442669:0,411205,112570 -) -k1,2315:7284892,21442669:295853 -k1,2315:8247901,21442669:295853 -(1,2315:8247901,21442669:0,452978,115847 -r1,2367:11068150,21442669:2820249,568825,115847 -k1,2315:8247901,21442669:-2820249 -) -(1,2315:8247901,21442669:2820249,452978,115847 -k1,2315:8247901,21442669:3277 -h1,2315:11064873,21442669:0,411205,112570 -) -k1,2315:11364003,21442669:295853 -k1,2315:13281872,21442669:295853 -k1,2315:14193763,21442669:295853 -k1,2315:15692857,21442669:295853 -k1,2315:17355791,21442669:295853 -k1,2315:18399410,21442669:295853 -k1,2315:19051123,21442669:295853 -k1,2315:21858316,21442669:295853 -k1,2315:24105831,21442669:295853 -k1,2315:25844131,21442669:295853 -k1,2315:26495844,21442669:295853 -k1,2315:29723122,21442669:295853 -k1,2315:31399819,21442669:295853 -k1,2315:32227169,21442669:295853 -k1,2315:32583029,21442669:0 -) -(1,2316:6630773,22284157:25952256,513147,126483 -k1,2315:10712594,22284157:208643 -k1,2315:13895915,22284157:208642 -k1,2315:14866086,22284157:208643 -k1,2315:18223079,22284157:208643 -k1,2315:19497992,22284157:208642 -k1,2315:22729811,22284157:208643 -k1,2315:23663281,22284157:208642 -k1,2315:24891009,22284157:208643 -k1,2315:27585433,22284157:208643 -k1,2315:28453367,22284157:208642 -k1,2315:31966991,22284157:208643 -k1,2315:32583029,22284157:0 -) -(1,2316:6630773,23125645:25952256,505283,134348 -k1,2315:7846936,23125645:197078 -k1,2315:9909824,23125645:197078 -k1,2315:12312189,23125645:197078 -k1,2315:13195430,23125645:197079 -k1,2315:16464836,23125645:197078 -k1,2315:17313342,23125645:197078 -(1,2315:17313342,23125645:0,414482,115847 -r1,2367:17671608,23125645:358266,530329,115847 -k1,2315:17313342,23125645:-358266 -) -(1,2315:17313342,23125645:358266,414482,115847 -k1,2315:17313342,23125645:3277 -h1,2315:17668331,23125645:0,411205,112570 -) -k1,2315:17868686,23125645:197078 -k1,2315:20623634,23125645:197078 -k1,2315:24485485,23125645:197078 -k1,2315:25752112,23125645:197079 -k1,2315:26968275,23125645:197078 -k1,2315:28845696,23125645:197078 -k1,2315:31821501,23125645:197078 -k1,2316:32583029,23125645:0 -) -(1,2316:6630773,23967133:25952256,505283,134348 -(1,2315:6630773,23967133:0,452978,115847 -r1,2367:9099310,23967133:2468537,568825,115847 -k1,2315:6630773,23967133:-2468537 -) -(1,2315:6630773,23967133:2468537,452978,115847 -k1,2315:6630773,23967133:3277 -h1,2315:9096033,23967133:0,411205,112570 -) -g1,2315:9298539,23967133 -g1,2315:10990678,23967133 -g1,2315:12256178,23967133 -k1,2316:32583028,23967133:17912504 -g1,2316:32583028,23967133 -) -v1,2318:6630773,25157599:0,393216,0 -(1,2327:6630773,27439772:25952256,2675389,196608 -g1,2327:6630773,27439772 -g1,2327:6630773,27439772 -g1,2327:6434165,27439772 -(1,2327:6434165,27439772:0,2675389,196608 -r1,2367:32779637,27439772:26345472,2871997,196608 -k1,2327:6434165,27439772:-26345472 -) -(1,2327:6434165,27439772:26345472,2675389,196608 -[1,2327:6630773,27439772:25952256,2478781,0 -(1,2320:6630773,25365217:25952256,404226,82312 -(1,2319:6630773,25365217:0,0,0 -g1,2319:6630773,25365217 -g1,2319:6630773,25365217 -g1,2319:6303093,25365217 -(1,2319:6303093,25365217:0,0,0 -) -g1,2319:6630773,25365217 -) -g1,2320:8211502,25365217 -g1,2320:9159940,25365217 -g1,2320:14534418,25365217 -h1,2320:18644312,25365217:0,0,0 -k1,2320:32583029,25365217:13938717 -g1,2320:32583029,25365217 -) -(1,2321:6630773,26031395:25952256,404226,101187 -h1,2321:6630773,26031395:0,0,0 -g1,2321:9476085,26031395 -g1,2321:10108377,26031395 -g1,2321:12005252,26031395 -g1,2321:13902126,26031395 -g1,2321:14534418,26031395 -g1,2321:15482856,26031395 -g1,2321:17063585,26031395 -g1,2321:17695877,26031395 -g1,2321:18644315,26031395 -g1,2321:19592753,26031395 -h1,2321:21173481,26031395:0,0,0 -k1,2321:32583029,26031395:11409548 -g1,2321:32583029,26031395 -) -(1,2322:6630773,26697573:25952256,379060,6290 -h1,2322:6630773,26697573:0,0,0 -h1,2322:7895356,26697573:0,0,0 -k1,2322:32583028,26697573:24687672 -g1,2322:32583028,26697573 -) -(1,2326:6630773,27363751:25952256,404226,76021 -(1,2324:6630773,27363751:0,0,0 -g1,2324:6630773,27363751 -g1,2324:6630773,27363751 -g1,2324:6303093,27363751 -(1,2324:6303093,27363751:0,0,0 -) -g1,2324:6630773,27363751 -) -g1,2326:7579210,27363751 -g1,2326:8843793,27363751 -g1,2326:13269833,27363751 -h1,2326:17063581,27363751:0,0,0 -k1,2326:32583029,27363751:15519448 -g1,2326:32583029,27363751 -) -] -) -g1,2327:32583029,27439772 -g1,2327:6630773,27439772 -g1,2327:6630773,27439772 -g1,2327:32583029,27439772 -g1,2327:32583029,27439772 -) -h1,2327:6630773,27636380:0,0,0 -(1,2331:6630773,29002156:25952256,513147,126483 -h1,2330:6630773,29002156:983040,0,0 -k1,2330:8289141,29002156:197571 -k1,2330:9355063,29002156:197570 -k1,2330:10989839,29002156:197571 -k1,2330:13198054,29002156:197570 -k1,2330:14047053,29002156:197571 -k1,2330:15711319,29002156:197570 -(1,2330:15711319,29002156:0,414482,115847 -r1,2367:17476432,29002156:1765113,530329,115847 -k1,2330:15711319,29002156:-1765113 -) -(1,2330:15711319,29002156:1765113,414482,115847 -k1,2330:15711319,29002156:3277 -h1,2330:17473155,29002156:0,411205,112570 -) -k1,2330:17674003,29002156:197571 -k1,2330:19063018,29002156:197570 -(1,2330:19063018,29002156:0,414482,115847 -r1,2367:20476419,29002156:1413401,530329,115847 -k1,2330:19063018,29002156:-1413401 -) -(1,2330:19063018,29002156:1413401,414482,115847 -k1,2330:19063018,29002156:3277 -h1,2330:20473142,29002156:0,411205,112570 -) -k1,2330:20673990,29002156:197571 -k1,2330:22305488,29002156:197570 -k1,2330:23878660,29002156:197571 -k1,2330:25398091,29002156:197570 -k1,2330:26254954,29002156:197571 -k1,2330:27471609,29002156:197570 -k1,2330:29349523,29002156:197571 -k1,2330:30356463,29002156:197570 -k1,2330:31573119,29002156:197571 -k1,2331:32583029,29002156:0 -) -(1,2331:6630773,29843644:25952256,513147,134348 -g1,2330:7489294,29843644 -g1,2330:8707608,29843644 -g1,2330:12552605,29843644 -g1,2330:15498448,29843644 -(1,2330:15498448,29843644:0,414482,115847 -r1,2367:16208426,29843644:709978,530329,115847 -k1,2330:15498448,29843644:-709978 -) -(1,2330:15498448,29843644:709978,414482,115847 -k1,2330:15498448,29843644:3277 -h1,2330:16205149,29843644:0,411205,112570 -) -g1,2330:16407655,29843644 -g1,2330:17943818,29843644 -g1,2330:18890813,29843644 -k1,2331:32583029,29843644:12005319 -g1,2331:32583029,29843644 -) -v1,2333:6630773,31034110:0,393216,0 -(1,2342:6630773,33316283:25952256,2675389,196608 -g1,2342:6630773,33316283 -g1,2342:6630773,33316283 -g1,2342:6434165,33316283 -(1,2342:6434165,33316283:0,2675389,196608 -r1,2367:32779637,33316283:26345472,2871997,196608 -k1,2342:6434165,33316283:-26345472 -) -(1,2342:6434165,33316283:26345472,2675389,196608 -[1,2342:6630773,33316283:25952256,2478781,0 -(1,2335:6630773,31241728:25952256,404226,82312 -(1,2334:6630773,31241728:0,0,0 -g1,2334:6630773,31241728 -g1,2334:6630773,31241728 -g1,2334:6303093,31241728 -(1,2334:6303093,31241728:0,0,0 -) -g1,2334:6630773,31241728 -) -g1,2335:8211502,31241728 -g1,2335:9159940,31241728 -g1,2335:14534418,31241728 -h1,2335:18644312,31241728:0,0,0 -k1,2335:32583029,31241728:13938717 -g1,2335:32583029,31241728 -) -(1,2336:6630773,31907906:25952256,404226,101187 -h1,2336:6630773,31907906:0,0,0 -g1,2336:9476085,31907906 -g1,2336:10108377,31907906 -g1,2336:12005252,31907906 -g1,2336:13902126,31907906 -g1,2336:14534418,31907906 -g1,2336:15482856,31907906 -g1,2336:17063585,31907906 -g1,2336:17695877,31907906 -g1,2336:18644315,31907906 -g1,2336:19592753,31907906 -h1,2336:21173481,31907906:0,0,0 -k1,2336:32583029,31907906:11409548 -g1,2336:32583029,31907906 -) -(1,2337:6630773,32574084:25952256,388497,9436 -h1,2337:6630773,32574084:0,0,0 -h1,2337:7895356,32574084:0,0,0 -k1,2337:32583028,32574084:24687672 -g1,2337:32583028,32574084 -) -(1,2341:6630773,33240262:25952256,404226,76021 -(1,2339:6630773,33240262:0,0,0 -g1,2339:6630773,33240262 -g1,2339:6630773,33240262 -g1,2339:6303093,33240262 -(1,2339:6303093,33240262:0,0,0 -) -g1,2339:6630773,33240262 -) -g1,2341:7579210,33240262 -g1,2341:8843793,33240262 -g1,2341:13269833,33240262 -h1,2341:17063581,33240262:0,0,0 -k1,2341:32583029,33240262:15519448 -g1,2341:32583029,33240262 -) -] -) -g1,2342:32583029,33316283 -g1,2342:6630773,33316283 -g1,2342:6630773,33316283 -g1,2342:32583029,33316283 -g1,2342:32583029,33316283 -) -h1,2342:6630773,33512891:0,0,0 -v1,2346:6630773,35402955:0,393216,0 -(1,2360:6630773,42578658:25952256,7568919,0 -g1,2360:6630773,42578658 -g1,2360:6303093,42578658 -r1,2367:6401397,42578658:98304,7568919,0 -g1,2360:6600626,42578658 -g1,2360:6797234,42578658 -[1,2360:6797234,42578658:25785795,7568919,0 -(1,2348:6797234,35835493:25785795,825754,196608 -(1,2346:6797234,35835493:0,825754,196608 -r1,2367:7890375,35835493:1093141,1022362,196608 -k1,2346:6797234,35835493:-1093141 -) -(1,2346:6797234,35835493:1093141,825754,196608 -) -k1,2346:8060869,35835493:170494 -k1,2346:9787087,35835493:327680 -k1,2346:13530605,35835493:170495 -k1,2346:14056959,35835493:170494 -k1,2346:15581428,35835493:170495 -k1,2346:18428412,35835493:170494 -k1,2346:19836882,35835493:170495 -k1,2346:20666668,35835493:170494 -k1,2346:23438942,35835493:170495 -k1,2346:24939817,35835493:170494 -k1,2346:25466172,35835493:170495 -k1,2346:28332162,35835493:170494 -k1,2346:31229610,35835493:170495 -k1,2346:31931601,35835493:170494 -k1,2346:32583029,35835493:0 -) -(1,2348:6797234,36676981:25785795,505283,134348 -k1,2346:10770953,36676981:190981 -k1,2346:11589769,36676981:190981 -k1,2346:12799836,36676981:190982 -k1,2346:15652234,36676981:190981 -k1,2346:17885317,36676981:190981 -k1,2346:18944650,36676981:190981 -k1,2346:20070175,36676981:190982 -(1,2346:20070175,36676981:0,414482,115847 -r1,2367:21835288,36676981:1765113,530329,115847 -k1,2346:20070175,36676981:-1765113 -) -(1,2346:20070175,36676981:1765113,414482,115847 -k1,2346:20070175,36676981:3277 -h1,2346:21832011,36676981:0,411205,112570 -) -k1,2346:22026269,36676981:190981 -k1,2346:23408695,36676981:190981 -(1,2346:23408695,36676981:0,414482,115847 -r1,2367:24822096,36676981:1413401,530329,115847 -k1,2346:23408695,36676981:-1413401 -) -(1,2346:23408695,36676981:1413401,414482,115847 -k1,2346:23408695,36676981:3277 -h1,2346:24818819,36676981:0,411205,112570 -) -k1,2346:25013077,36676981:190981 -k1,2346:28446780,36676981:190982 -k1,2346:30287958,36676981:190981 -k1,2348:32583029,36676981:0 -) -(1,2348:6797234,37518469:25785795,505283,134348 -k1,2346:8203256,37518469:183120 -k1,2346:9828822,37518469:183119 -k1,2346:11755855,37518469:183120 -k1,2346:12555013,37518469:183120 -(1,2346:12555013,37518469:0,452978,115847 -r1,2367:14320126,37518469:1765113,568825,115847 -k1,2346:12555013,37518469:-1765113 -) -(1,2346:12555013,37518469:1765113,452978,115847 -k1,2346:12555013,37518469:3277 -h1,2346:14316849,37518469:0,411205,112570 -) -k1,2346:14676915,37518469:183119 -k1,2346:15487870,37518469:183120 -k1,2346:16874231,37518469:183120 -k1,2346:18598101,37518469:183119 -k1,2346:19312718,37518469:183120 -(1,2346:19312718,37518469:0,452978,115847 -r1,2367:21077831,37518469:1765113,568825,115847 -k1,2346:19312718,37518469:-1765113 -) -(1,2346:19312718,37518469:1765113,452978,115847 -k1,2346:19312718,37518469:3277 -h1,2346:21074554,37518469:0,411205,112570 -) -k1,2346:21260951,37518469:183120 -k1,2346:24538025,37518469:183119 -k1,2347:24538025,37518469:0 -k1,2347:25404030,37518469:183120 -(1,2347:25404030,37518469:0,414482,115847 -r1,2367:27169143,37518469:1765113,530329,115847 -k1,2347:25404030,37518469:-1765113 -) -(1,2347:25404030,37518469:1765113,414482,115847 -k1,2347:25404030,37518469:3277 -h1,2347:27165866,37518469:0,411205,112570 -) -k1,2347:27352263,37518469:183120 -k1,2347:28218267,37518469:183119 -(1,2347:28218267,37518469:0,414482,115847 -r1,2367:29631668,37518469:1413401,530329,115847 -k1,2347:28218267,37518469:-1413401 -) -(1,2347:28218267,37518469:1413401,414482,115847 -k1,2347:28218267,37518469:3277 -h1,2347:29628391,37518469:0,411205,112570 -) -k1,2347:29814788,37518469:183120 -k1,2347:32583029,37518469:0 -) -(1,2348:6797234,38359957:25785795,513147,126483 -g1,2347:8271138,38359957 -g1,2347:9673608,38359957 -g1,2347:11185523,38359957 -g1,2347:14346324,38359957 -g1,2347:15196981,38359957 -g1,2347:16662366,38359957 -g1,2347:17927866,38359957 -g1,2347:19146180,38359957 -k1,2348:32583029,38359957:11005463 -g1,2348:32583029,38359957 -) -v1,2350:6797234,39550423:0,393216,0 -(1,2357:6797234,41857762:25785795,2700555,196608 -g1,2357:6797234,41857762 -g1,2357:6797234,41857762 -g1,2357:6600626,41857762 -(1,2357:6600626,41857762:0,2700555,196608 -r1,2367:32779637,41857762:26179011,2897163,196608 -k1,2357:6600625,41857762:-26179012 -) -(1,2357:6600626,41857762:26179011,2700555,196608 -[1,2357:6797234,41857762:25785795,2503947,0 -(1,2352:6797234,39758041:25785795,404226,82312 -(1,2351:6797234,39758041:0,0,0 -g1,2351:6797234,39758041 -g1,2351:6797234,39758041 -g1,2351:6469554,39758041 -(1,2351:6469554,39758041:0,0,0 -) -g1,2351:6797234,39758041 -) -g1,2352:8377963,39758041 -g1,2352:9326401,39758041 -g1,2352:14700879,39758041 -h1,2352:18810773,39758041:0,0,0 -k1,2352:32583029,39758041:13772256 -g1,2352:32583029,39758041 -) -(1,2353:6797234,40424219:25785795,404226,101187 -h1,2353:6797234,40424219:0,0,0 -g1,2353:9642546,40424219 -g1,2353:10274838,40424219 -g1,2353:12171713,40424219 -g1,2353:14068587,40424219 -g1,2353:14700879,40424219 -g1,2353:15649317,40424219 -g1,2353:17230046,40424219 -g1,2353:17862338,40424219 -g1,2353:19126921,40424219 -g1,2353:20075359,40424219 -h1,2353:21656087,40424219:0,0,0 -k1,2353:32583029,40424219:10926942 -g1,2353:32583029,40424219 -) -(1,2354:6797234,41090397:25785795,388497,7863 -h1,2354:6797234,41090397:0,0,0 -h1,2354:8061817,41090397:0,0,0 -k1,2354:32583029,41090397:24521212 -g1,2354:32583029,41090397 -) -(1,2355:6797234,41756575:25785795,404226,101187 -h1,2355:6797234,41756575:0,0,0 -g1,2355:10907128,41756575 -g1,2355:11539420,41756575 -g1,2355:13436294,41756575 -k1,2355:13436294,41756575:9437 -h1,2355:14078022,41756575:0,0,0 -k1,2355:32583030,41756575:18505008 -g1,2355:32583030,41756575 -) -] -) -g1,2357:32583029,41857762 -g1,2357:6797234,41857762 -g1,2357:6797234,41857762 -g1,2357:32583029,41857762 -g1,2357:32583029,41857762 -) -h1,2357:6797234,42054370:0,0,0 -] -g1,2360:32583029,42578658 -) -h1,2360:6630773,42578658:0,0,0 -(1,2363:6630773,43944434:25952256,505283,134348 -h1,2362:6630773,43944434:983040,0,0 -k1,2362:8579992,43944434:148290 -k1,2362:9344319,43944434:148289 -k1,2362:9907401,43944434:148239 -k1,2362:11507313,43944434:148290 -k1,2362:14630282,43944434:148290 -k1,2362:16458914,43944434:148289 -k1,2362:17138701,43944434:148290 -k1,2362:17642850,43944434:148289 -k1,2362:19656950,43944434:148290 -k1,2362:23161994,43944434:148290 -k1,2362:24071811,43944434:148289 -k1,2362:25640266,43944434:148290 -k1,2362:26439984,43944434:148290 -k1,2362:28340050,43944434:148289 -k1,2362:31966991,43944434:148290 -k1,2362:32583029,43944434:0 -) -(1,2363:6630773,44785922:25952256,505283,134348 -k1,2362:9482066,44785922:185288 -k1,2362:10318782,44785922:185288 -k1,2362:14588274,44785922:185288 -k1,2362:16628231,44785922:185288 -k1,2362:17622889,44785922:185288 -k1,2362:19691026,44785922:185288 -k1,2362:22072425,44785922:185288 -k1,2362:22940598,44785922:185288 -k1,2362:25310201,44785922:185288 -k1,2362:27579534,44785922:185288 -k1,2362:30423618,44785922:185288 -k1,2362:32583029,44785922:0 -) -(1,2363:6630773,45627410:25952256,513147,7863 -g1,2362:8469057,45627410 -g1,2362:9659846,45627410 -g1,2362:10518367,45627410 -k1,2363:32583028,45627410:19447808 -g1,2363:32583028,45627410 -) -] -(1,2367:32583029,45706769:0,0,0 -g1,2367:32583029,45706769 -) -) -] -(1,2367:6630773,47279633:25952256,0,0 -h1,2367:6630773,47279633:25952256,0,0 -) -] -(1,2367:4262630,4025873:0,0,0 -[1,2367:-473656,4025873:0,0,0 -(1,2367:-473656,-710413:0,0,0 -(1,2367:-473656,-710413:0,0,0 -g1,2367:-473656,-710413 -) -g1,2367:-473656,-710413 -) -] -) -] -!28038 -}59 Input:501:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:502:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:503:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:504:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:505:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:506:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:507:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:508:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:509:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:510:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:511:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:512:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:513:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1220 -{60 -[1,2458:4262630,47279633:28320399,43253760,0 -(1,2458:4262630,4025873:0,0,0 -[1,2458:-473656,4025873:0,0,0 -(1,2458:-473656,-710413:0,0,0 -(1,2458:-473656,-644877:0,0,0 -k1,2458:-473656,-644877:-65536 -) -(1,2458:-473656,4736287:0,0,0 -k1,2458:-473656,4736287:5209943 -) -g1,2458:-473656,-710413 -) -] -) -[1,2458:6630773,47279633:25952256,43253760,0 -[1,2458:6630773,4812305:25952256,786432,0 -(1,2458:6630773,4812305:25952256,505283,11795 -(1,2458:6630773,4812305:25952256,505283,11795 -g1,2458:3078558,4812305 -[1,2458:3078558,4812305:0,0,0 -(1,2458:3078558,2439708:0,1703936,0 -k1,2458:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,2458:2537886,2439708:1179648,16384,0 -) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,2458:3078558,1915420:16384,1179648,0 -) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 -) -] -) -) -) -] -[1,2458:3078558,4812305:0,0,0 -(1,2458:3078558,2439708:0,1703936,0 -g1,2458:29030814,2439708 -g1,2458:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,2458:36151628,1915420:16384,1179648,0 -) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 -) -] -) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,2458:37855564,2439708:1179648,16384,0 -) -) -k1,2458:3078556,2439708:-34777008 -) -] -[1,2458:3078558,4812305:0,0,0 -(1,2458:3078558,49800853:0,16384,2228224 -k1,2458:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,2458:2537886,49800853:1179648,16384,0 -) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,2458:3078558,51504789:16384,1179648,0 -) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 -) -] -) -) -) -] -[1,2458:3078558,4812305:0,0,0 -(1,2458:3078558,49800853:0,16384,2228224 -g1,2458:29030814,49800853 -g1,2458:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,2458:36151628,51504789:16384,1179648,0 -) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 -) -] -) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,2458:37855564,49800853:1179648,16384,0 -) -) -k1,2458:3078556,49800853:-34777008 -) -] -g1,2458:6630773,4812305 -g1,2458:6630773,4812305 -g1,2458:10015707,4812305 -g1,2458:12209197,4812305 -k1,2458:31786111,4812305:19576914 -) -) -] -[1,2458:6630773,45706769:25952256,40108032,0 -(1,2458:6630773,45706769:25952256,40108032,0 -(1,2458:6630773,45706769:0,0,0 -g1,2458:6630773,45706769 -) -[1,2458:6630773,45706769:25952256,40108032,0 -(1,2365:6630773,6254097:25952256,513147,134348 -h1,2364:6630773,6254097:983040,0,0 -k1,2364:8739669,6254097:296826 -k1,2364:12246449,6254097:296827 -k1,2364:13865136,6254097:296826 -k1,2364:14821255,6254097:296827 -k1,2364:15473941,6254097:296826 -(1,2364:15473941,6254097:0,452978,115847 -r1,2458:18645901,6254097:3171960,568825,115847 -k1,2364:15473941,6254097:-3171960 -) -(1,2364:15473941,6254097:3171960,452978,115847 -k1,2364:15473941,6254097:3277 -h1,2364:18642624,6254097:0,411205,112570 -) -k1,2364:18942728,6254097:296827 -k1,2364:21105364,6254097:296826 -k1,2364:22158476,6254097:296827 -k1,2364:25435224,6254097:296826 -k1,2364:26130510,6254097:296827 -k1,2364:28924257,6254097:296826 -k1,2364:30089436,6254097:296827 -k1,2364:31490544,6254097:296826 -k1,2364:32583029,6254097:0 -) -(1,2365:6630773,7095585:25952256,513147,126483 -k1,2364:9878416,7095585:221846 -(1,2364:9878416,7095585:0,452978,115847 -r1,2458:11643529,7095585:1765113,568825,115847 -k1,2364:9878416,7095585:-1765113 -) -(1,2364:9878416,7095585:1765113,452978,115847 -k1,2364:9878416,7095585:3277 -h1,2364:11640252,7095585:0,411205,112570 -) -k1,2364:11865374,7095585:221845 -k1,2364:12770105,7095585:221846 -(1,2364:12770105,7095585:0,452978,122846 -r1,2458:14886930,7095585:2116825,575824,122846 -k1,2364:12770105,7095585:-2116825 -) -(1,2364:12770105,7095585:2116825,452978,122846 -k1,2364:12770105,7095585:3277 -h1,2364:14883653,7095585:0,411205,112570 -) -k1,2364:15282446,7095585:221846 -k1,2364:16700978,7095585:221845 -k1,2364:18228957,7095585:221846 -k1,2364:21112219,7095585:221845 -k1,2364:22756852,7095585:221846 -k1,2364:24633482,7095585:221846 -(1,2364:24633482,7095585:0,452978,115847 -r1,2458:27805442,7095585:3171960,568825,115847 -k1,2364:24633482,7095585:-3171960 -) -(1,2364:24633482,7095585:3171960,452978,115847 -k1,2364:24633482,7095585:3277 -h1,2364:27802165,7095585:0,411205,112570 -) -k1,2364:28027287,7095585:221845 -k1,2364:31510860,7095585:221846 -k1,2364:32583029,7095585:0 -) -(1,2365:6630773,7937073:25952256,505283,134348 -g1,2364:8840647,7937073 -g1,2364:11078046,7937073 -g1,2364:11893313,7937073 -g1,2364:14934183,7937073 -g1,2364:16237694,7937073 -g1,2364:17722739,7937073 -g1,2364:18669734,7937073 -g1,2364:21074250,7937073 -g1,2364:21959641,7937073 -k1,2365:32583029,7937073:7047088 -g1,2365:32583029,7937073 -) -v1,2367:6630773,9012897:0,393216,0 -(1,2374:6630773,9962714:25952256,1343033,196608 -g1,2374:6630773,9962714 -g1,2374:6630773,9962714 -g1,2374:6434165,9962714 -(1,2374:6434165,9962714:0,1343033,196608 -r1,2458:32779637,9962714:26345472,1539641,196608 -k1,2374:6434165,9962714:-26345472 -) -(1,2374:6434165,9962714:26345472,1343033,196608 -[1,2374:6630773,9962714:25952256,1146425,0 -(1,2369:6630773,9220515:25952256,404226,101187 -(1,2368:6630773,9220515:0,0,0 -g1,2368:6630773,9220515 -g1,2368:6630773,9220515 -g1,2368:6303093,9220515 -(1,2368:6303093,9220515:0,0,0 -) -g1,2368:6630773,9220515 -) -k1,2369:6630773,9220515:0 -g1,2369:10424522,9220515 -g1,2369:11056814,9220515 -g1,2369:12953689,9220515 -g1,2369:16747437,9220515 -g1,2369:17379729,9220515 -g1,2369:19276604,9220515 -g1,2369:19908896,9220515 -g1,2369:20541188,9220515 -h1,2369:23070354,9220515:0,0,0 -k1,2369:32583029,9220515:9512675 -g1,2369:32583029,9220515 -) -(1,2373:6630773,9886693:25952256,404226,76021 -(1,2371:6630773,9886693:0,0,0 -g1,2371:6630773,9886693 -g1,2371:6630773,9886693 -g1,2371:6303093,9886693 -(1,2371:6303093,9886693:0,0,0 -) -g1,2371:6630773,9886693 -) -g1,2373:7579210,9886693 -g1,2373:8843793,9886693 -h1,2373:11056813,9886693:0,0,0 -k1,2373:32583029,9886693:21526216 -g1,2373:32583029,9886693 -) -] -) -g1,2374:32583029,9962714 -g1,2374:6630773,9962714 -g1,2374:6630773,9962714 -g1,2374:32583029,9962714 -g1,2374:32583029,9962714 -) -h1,2374:6630773,10159322:0,0,0 -(1,2378:6630773,11410456:25952256,513147,134348 -h1,2377:6630773,11410456:983040,0,0 -k1,2377:9014509,11410456:204009 -k1,2377:12404877,11410456:204008 -k1,2377:15244089,11410456:204009 -(1,2377:15244089,11410456:0,452978,115847 -r1,2458:17009202,11410456:1765113,568825,115847 -k1,2377:15244089,11410456:-1765113 -) -(1,2377:15244089,11410456:1765113,452978,115847 -k1,2377:15244089,11410456:3277 -h1,2377:17005925,11410456:0,411205,112570 -) -k1,2377:17213211,11410456:204009 -k1,2377:21704584,11410456:204008 -k1,2377:23100038,11410456:204009 -(1,2377:23100038,11410456:0,452978,122846 -r1,2458:25216863,11410456:2116825,575824,122846 -k1,2377:23100038,11410456:-2116825 -) -(1,2377:23100038,11410456:2116825,452978,122846 -k1,2377:23100038,11410456:3277 -h1,2377:25213586,11410456:0,411205,112570 -) -k1,2377:25420872,11410456:204009 -k1,2377:27767252,11410456:204008 -k1,2377:32051532,11410456:204009 -k1,2377:32583029,11410456:0 -) -(1,2378:6630773,12251944:25952256,513147,126483 -k1,2377:8205855,12251944:290576 -k1,2377:9515517,12251944:290577 -k1,2377:11112226,12251944:290576 -k1,2377:14031452,12251944:290577 -k1,2377:15697629,12251944:290576 -k1,2377:17007290,12251944:290576 -k1,2377:18604000,12251944:290577 -k1,2377:20875729,12251944:290576 -k1,2377:23076024,12251944:290576 -k1,2377:25056119,12251944:290577 -k1,2377:26365780,12251944:290576 -k1,2377:28897688,12251944:290577 -k1,2377:31816913,12251944:290576 -k1,2377:32583029,12251944:0 -) -(1,2378:6630773,13093432:25952256,505283,7863 -k1,2378:32583029,13093432:23119790 -g1,2378:32583029,13093432 -) -v1,2380:6630773,14169257:0,393216,0 -(1,2393:6630773,17106790:25952256,3330749,196608 -g1,2393:6630773,17106790 -g1,2393:6630773,17106790 -g1,2393:6434165,17106790 -(1,2393:6434165,17106790:0,3330749,196608 -r1,2458:32779637,17106790:26345472,3527357,196608 -k1,2393:6434165,17106790:-26345472 -) -(1,2393:6434165,17106790:26345472,3330749,196608 -[1,2393:6630773,17106790:25952256,3134141,0 -(1,2382:6630773,14376875:25952256,404226,101187 -(1,2381:6630773,14376875:0,0,0 -g1,2381:6630773,14376875 -g1,2381:6630773,14376875 -g1,2381:6303093,14376875 -(1,2381:6303093,14376875:0,0,0 -) -g1,2381:6630773,14376875 -) -k1,2382:6630773,14376875:0 -g1,2382:10424522,14376875 -g1,2382:11056814,14376875 -g1,2382:12953689,14376875 -g1,2382:16747437,14376875 -g1,2382:17379729,14376875 -g1,2382:18960458,14376875 -g1,2382:19592750,14376875 -g1,2382:20225042,14376875 -h1,2382:24651082,14376875:0,0,0 -k1,2382:32583029,14376875:7931947 -g1,2382:32583029,14376875 -) -(1,2386:6630773,15043053:25952256,404226,76021 -(1,2384:6630773,15043053:0,0,0 -g1,2384:6630773,15043053 -g1,2384:6630773,15043053 -g1,2384:6303093,15043053 -(1,2384:6303093,15043053:0,0,0 -) -g1,2384:6630773,15043053 -) -g1,2386:7579210,15043053 -g1,2386:8843793,15043053 -h1,2386:12637541,15043053:0,0,0 -k1,2386:32583029,15043053:19945488 -g1,2386:32583029,15043053 -) -(1,2388:6630773,16364591:25952256,404226,107478 -(1,2387:6630773,16364591:0,0,0 -g1,2387:6630773,16364591 -g1,2387:6630773,16364591 -g1,2387:6303093,16364591 -(1,2387:6303093,16364591:0,0,0 -) -g1,2387:6630773,16364591 -) -k1,2388:6630773,16364591:0 -g1,2388:10740668,16364591 -g1,2388:11372960,16364591 -g1,2388:13269835,16364591 -g1,2388:17063583,16364591 -g1,2388:17695875,16364591 -g1,2388:19276604,16364591 -g1,2388:19908896,16364591 -g1,2388:20541188,16364591 -h1,2388:24967228,16364591:0,0,0 -k1,2388:32583029,16364591:7615801 -g1,2388:32583029,16364591 -) -(1,2392:6630773,17030769:25952256,404226,76021 -(1,2390:6630773,17030769:0,0,0 -g1,2390:6630773,17030769 -g1,2390:6630773,17030769 -g1,2390:6303093,17030769 -(1,2390:6303093,17030769:0,0,0 -) -g1,2390:6630773,17030769 -) -g1,2392:7579210,17030769 -g1,2392:8843793,17030769 -h1,2392:12321395,17030769:0,0,0 -k1,2392:32583029,17030769:20261634 -g1,2392:32583029,17030769 -) -] -) -g1,2393:32583029,17106790 -g1,2393:6630773,17106790 -g1,2393:6630773,17106790 -g1,2393:32583029,17106790 -g1,2393:32583029,17106790 -) -h1,2393:6630773,17303398:0,0,0 -v1,2397:6630773,18964178:0,393216,0 -(1,2408:6630773,23130840:25952256,4559878,0 -g1,2408:6630773,23130840 -g1,2408:6303093,23130840 -r1,2458:6401397,23130840:98304,4559878,0 -g1,2408:6600626,23130840 -g1,2408:6797234,23130840 -[1,2408:6797234,23130840:25785795,4559878,0 -(1,2398:6797234,19396716:25785795,825754,196608 -(1,2397:6797234,19396716:0,825754,196608 -r1,2458:7890375,19396716:1093141,1022362,196608 -k1,2397:6797234,19396716:-1093141 -) -(1,2397:6797234,19396716:1093141,825754,196608 -) -k1,2397:8095362,19396716:204987 -k1,2397:9821580,19396716:327680 -k1,2397:13146735,19396716:204986 -(1,2397:13146735,19396716:0,452978,115847 -r1,2458:14911848,19396716:1765113,568825,115847 -k1,2397:13146735,19396716:-1765113 -) -(1,2397:13146735,19396716:1765113,452978,115847 -k1,2397:13146735,19396716:3277 -h1,2397:14908571,19396716:0,411205,112570 -) -k1,2397:15116835,19396716:204987 -k1,2397:16004706,19396716:204986 -(1,2397:16004706,19396716:0,452978,122846 -r1,2458:18121531,19396716:2116825,575824,122846 -k1,2397:16004706,19396716:-2116825 -) -(1,2397:16004706,19396716:2116825,452978,122846 -k1,2397:16004706,19396716:3277 -h1,2397:18118254,19396716:0,411205,112570 -) -k1,2397:18326518,19396716:204987 -k1,2397:20579504,19396716:204986 -k1,2397:23759170,19396716:204987 -k1,2397:26272334,19396716:204986 -k1,2397:27163483,19396716:204987 -k1,2397:30440797,19396716:204986 -k1,2397:31593435,19396716:204987 -k1,2398:32583029,19396716:0 -) -(1,2398:6797234,20238204:25785795,513147,126483 -k1,2397:9445006,20238204:143641 -(1,2397:9445006,20238204:0,414482,115847 -r1,2458:9803272,20238204:358266,530329,115847 -k1,2397:9445006,20238204:-358266 -) -(1,2397:9445006,20238204:358266,414482,115847 -k1,2397:9445006,20238204:3277 -h1,2397:9799995,20238204:0,411205,112570 -) -k1,2397:10120583,20238204:143641 -k1,2397:11538899,20238204:143641 -k1,2397:12701626,20238204:143642 -k1,2397:14017706,20238204:143641 -k1,2397:17678009,20238204:143641 -k1,2397:19690081,20238204:143641 -k1,2397:21025167,20238204:143641 -k1,2397:22952698,20238204:143641 -k1,2397:24426721,20238204:143642 -k1,2397:25589447,20238204:143641 -k1,2397:27743733,20238204:143641 -k1,2397:30666101,20238204:143641 -k1,2398:32583029,20238204:0 -k1,2398:32583029,20238204:0 -) -v1,2400:6797234,21428670:0,393216,0 -(1,2405:6797234,22409944:25785795,1374490,196608 -g1,2405:6797234,22409944 -g1,2405:6797234,22409944 -g1,2405:6600626,22409944 -(1,2405:6600626,22409944:0,1374490,196608 -r1,2458:32779637,22409944:26179011,1571098,196608 -k1,2405:6600625,22409944:-26179012 -) -(1,2405:6600626,22409944:26179011,1374490,196608 -[1,2405:6797234,22409944:25785795,1177882,0 -(1,2402:6797234,21636288:25785795,404226,101187 -(1,2401:6797234,21636288:0,0,0 -g1,2401:6797234,21636288 -g1,2401:6797234,21636288 -g1,2401:6469554,21636288 -(1,2401:6469554,21636288:0,0,0 -) -g1,2401:6797234,21636288 -) -k1,2402:6797234,21636288:0 -g1,2402:10590983,21636288 -g1,2402:11223275,21636288 -g1,2402:13120150,21636288 -g1,2402:16913898,21636288 -g1,2402:17546190,21636288 -g1,2402:19126919,21636288 -g1,2402:19759211,21636288 -g1,2402:20391503,21636288 -g1,2402:23552961,21636288 -h1,2402:27030563,21636288:0,0,0 -k1,2402:32583029,21636288:5552466 -g1,2402:32583029,21636288 -) -(1,2403:6797234,22302466:25785795,404226,107478 -h1,2403:6797234,22302466:0,0,0 -g1,2403:10907129,22302466 -g1,2403:11539421,22302466 -g1,2403:13436296,22302466 -g1,2403:17230044,22302466 -g1,2403:17862336,22302466 -g1,2403:19443065,22302466 -g1,2403:20075357,22302466 -g1,2403:20707649,22302466 -g1,2403:23869107,22302466 -h1,2403:27346709,22302466:0,0,0 -k1,2403:32583029,22302466:5236320 -g1,2403:32583029,22302466 -) -] -) -g1,2405:32583029,22409944 -g1,2405:6797234,22409944 -g1,2405:6797234,22409944 -g1,2405:32583029,22409944 -g1,2405:32583029,22409944 -) -h1,2405:6797234,22606552:0,0,0 -] -g1,2408:32583029,23130840 -) -h1,2408:6630773,23130840:0,0,0 -(1,2411:6630773,24381974:25952256,505283,134348 -h1,2410:6630773,24381974:983040,0,0 -k1,2410:10581888,24381974:178207 -(1,2410:10581888,24381974:0,452978,122846 -r1,2458:12698713,24381974:2116825,575824,122846 -k1,2410:10581888,24381974:-2116825 -) -(1,2410:10581888,24381974:2116825,452978,122846 -k1,2410:10581888,24381974:3277 -h1,2410:12695436,24381974:0,411205,112570 -) -k1,2410:12876919,24381974:178206 -k1,2410:15396072,24381974:178207 -k1,2410:17823474,24381974:178206 -k1,2410:18653109,24381974:178207 -k1,2410:19850400,24381974:178206 -k1,2410:22039252,24381974:178207 -k1,2410:22833496,24381974:178206 -k1,2410:23367563,24381974:178207 -k1,2410:25523646,24381974:178206 -k1,2410:28673255,24381974:178207 -k1,2410:29207321,24381974:178206 -k1,2410:31900144,24381974:178207 -k1,2410:32583029,24381974:0 -) -(1,2411:6630773,25223462:25952256,505283,134348 -g1,2410:10956804,25223462 -g1,2410:12175118,25223462 -g1,2410:15345749,25223462 -g1,2410:17555623,25223462 -k1,2411:32583029,25223462:11297097 -g1,2411:32583029,25223462 -) -v1,2413:6630773,26299286:0,393216,0 -(1,2432:6630773,31224535:25952256,5318465,196608 -g1,2432:6630773,31224535 -g1,2432:6630773,31224535 -g1,2432:6434165,31224535 -(1,2432:6434165,31224535:0,5318465,196608 -r1,2458:32779637,31224535:26345472,5515073,196608 -k1,2432:6434165,31224535:-26345472 -) -(1,2432:6434165,31224535:26345472,5318465,196608 -[1,2432:6630773,31224535:25952256,5121857,0 -(1,2415:6630773,26506904:25952256,404226,107478 -(1,2414:6630773,26506904:0,0,0 -g1,2414:6630773,26506904 -g1,2414:6630773,26506904 -g1,2414:6303093,26506904 -(1,2414:6303093,26506904:0,0,0 -) -g1,2414:6630773,26506904 -) -k1,2415:6630773,26506904:0 -g1,2415:10740668,26506904 -g1,2415:11372960,26506904 -g1,2415:12953689,26506904 -g1,2415:13585981,26506904 -g1,2415:14218273,26506904 -g1,2415:16431294,26506904 -g1,2415:18644314,26506904 -g1,2415:20225043,26506904 -g1,2415:22754209,26506904 -h1,2415:25915665,26506904:0,0,0 -k1,2415:32583029,26506904:6667364 -g1,2415:32583029,26506904 -) -(1,2419:6630773,27173082:25952256,404226,76021 -(1,2417:6630773,27173082:0,0,0 -g1,2417:6630773,27173082 -g1,2417:6630773,27173082 -g1,2417:6303093,27173082 -(1,2417:6303093,27173082:0,0,0 -) -g1,2417:6630773,27173082 -) -g1,2419:7579210,27173082 -g1,2419:8843793,27173082 -g1,2419:9476085,27173082 -h1,2419:9792231,27173082:0,0,0 -k1,2419:32583029,27173082:22790798 -g1,2419:32583029,27173082 -) -(1,2421:6630773,28494620:25952256,404226,107478 -(1,2420:6630773,28494620:0,0,0 -g1,2420:6630773,28494620 -g1,2420:6630773,28494620 -g1,2420:6303093,28494620 -(1,2420:6303093,28494620:0,0,0 -) -g1,2420:6630773,28494620 -) -k1,2421:6630773,28494620:0 -g1,2421:10740668,28494620 -g1,2421:11372960,28494620 -g1,2421:12953689,28494620 -g1,2421:13585981,28494620 -g1,2421:14218273,28494620 -g1,2421:16431294,28494620 -g1,2421:18644314,28494620 -g1,2421:20225043,28494620 -g1,2421:22754209,28494620 -g1,2421:26231812,28494620 -g1,2421:28128686,28494620 -g1,2421:28760978,28494620 -h1,2421:30341707,28494620:0,0,0 -k1,2421:32583029,28494620:2241322 -g1,2421:32583029,28494620 -) -(1,2425:6630773,29160798:25952256,404226,76021 -(1,2423:6630773,29160798:0,0,0 -g1,2423:6630773,29160798 -g1,2423:6630773,29160798 -g1,2423:6303093,29160798 -(1,2423:6303093,29160798:0,0,0 -) -g1,2423:6630773,29160798 -) -g1,2425:7579210,29160798 -g1,2425:8843793,29160798 -g1,2425:10740667,29160798 -h1,2425:11689104,29160798:0,0,0 -k1,2425:32583028,29160798:20893924 -g1,2425:32583028,29160798 -) -(1,2427:6630773,30482336:25952256,404226,107478 -(1,2426:6630773,30482336:0,0,0 -g1,2426:6630773,30482336 -g1,2426:6630773,30482336 -g1,2426:6303093,30482336 -(1,2426:6303093,30482336:0,0,0 -) -g1,2426:6630773,30482336 -) -k1,2427:6630773,30482336:0 -g1,2427:10740668,30482336 -g1,2427:11372960,30482336 -g1,2427:12953689,30482336 -g1,2427:13585981,30482336 -g1,2427:14218273,30482336 -g1,2427:16431294,30482336 -g1,2427:18644314,30482336 -g1,2427:20225043,30482336 -g1,2427:22754209,30482336 -g1,2427:26231812,30482336 -g1,2427:30025560,30482336 -g1,2427:30657852,30482336 -h1,2427:32238581,30482336:0,0,0 -k1,2427:32583029,30482336:344448 -g1,2427:32583029,30482336 -) -(1,2431:6630773,31148514:25952256,404226,76021 -(1,2429:6630773,31148514:0,0,0 -g1,2429:6630773,31148514 -g1,2429:6630773,31148514 -g1,2429:6303093,31148514 -(1,2429:6303093,31148514:0,0,0 -) -g1,2429:6630773,31148514 -) -g1,2431:7579210,31148514 -g1,2431:8843793,31148514 -g1,2431:9476085,31148514 -g1,2431:10108377,31148514 -h1,2431:10424523,31148514:0,0,0 -k1,2431:32583029,31148514:22158506 -g1,2431:32583029,31148514 -) -] -) -g1,2432:32583029,31224535 -g1,2432:6630773,31224535 -g1,2432:6630773,31224535 -g1,2432:32583029,31224535 -g1,2432:32583029,31224535 -) -h1,2432:6630773,31421143:0,0,0 -(1,2436:6630773,32672278:25952256,513147,122846 -h1,2435:6630773,32672278:983040,0,0 -k1,2435:10565837,32672278:162156 -(1,2435:10565837,32672278:0,452978,122846 -r1,2458:13034374,32672278:2468537,575824,122846 -k1,2435:10565837,32672278:-2468537 -) -(1,2435:10565837,32672278:2468537,452978,122846 -k1,2435:10565837,32672278:3277 -h1,2435:13031097,32672278:0,411205,112570 -) -k1,2435:13196531,32672278:162157 -k1,2435:13890184,32672278:162156 -k1,2435:14408201,32672278:162157 -k1,2435:17396269,32672278:162156 -k1,2435:18225582,32672278:162157 -(1,2435:18225582,32672278:0,452978,122846 -r1,2458:20342407,32672278:2116825,575824,122846 -k1,2435:18225582,32672278:-2116825 -) -(1,2435:18225582,32672278:2116825,452978,122846 -k1,2435:18225582,32672278:3277 -h1,2435:20339130,32672278:0,411205,112570 -) -k1,2435:20504563,32672278:162156 -k1,2435:21951226,32672278:162157 -k1,2435:24454328,32672278:162156 -k1,2435:24972345,32672278:162157 -k1,2435:27112378,32672278:162156 -k1,2435:27941691,32672278:162157 -(1,2435:27941691,32672278:0,452978,122846 -r1,2458:30410228,32672278:2468537,575824,122846 -k1,2435:27941691,32672278:-2468537 -) -(1,2435:27941691,32672278:2468537,452978,122846 -k1,2435:27941691,32672278:3277 -h1,2435:30406951,32672278:0,411205,112570 -) -k1,2435:30572384,32672278:162156 -k1,2435:32583029,32672278:0 -) -(1,2436:6630773,33513766:25952256,513147,134348 -g1,2435:9157185,33513766 -g1,2435:10015706,33513766 -g1,2435:12835064,33513766 -g1,2435:15283489,33513766 -g1,2435:16134146,33513766 -g1,2435:17352460,33513766 -g1,2435:20523091,33513766 -g1,2435:22732965,33513766 -g1,2435:23548232,33513766 -(1,2435:23548232,33513766:0,414482,115847 -r1,2458:23906498,33513766:358266,530329,115847 -k1,2435:23548232,33513766:-358266 -) -(1,2435:23548232,33513766:358266,414482,115847 -k1,2435:23548232,33513766:3277 -h1,2435:23903221,33513766:0,411205,112570 -) -k1,2436:32583029,33513766:8502861 -g1,2436:32583029,33513766 -) -v1,2438:6630773,34589590:0,393216,0 -(1,2451:6630773,37527123:25952256,3330749,196608 -g1,2451:6630773,37527123 -g1,2451:6630773,37527123 -g1,2451:6434165,37527123 -(1,2451:6434165,37527123:0,3330749,196608 -r1,2458:32779637,37527123:26345472,3527357,196608 -k1,2451:6434165,37527123:-26345472 -) -(1,2451:6434165,37527123:26345472,3330749,196608 -[1,2451:6630773,37527123:25952256,3134141,0 -(1,2440:6630773,34797208:25952256,404226,107478 -(1,2439:6630773,34797208:0,0,0 -g1,2439:6630773,34797208 -g1,2439:6630773,34797208 -g1,2439:6303093,34797208 -(1,2439:6303093,34797208:0,0,0 -) -g1,2439:6630773,34797208 -) -k1,2440:6630773,34797208:0 -g1,2440:11056813,34797208 -g1,2440:11689105,34797208 -g1,2440:13269834,34797208 -g1,2440:13902126,34797208 -g1,2440:14534418,34797208 -g1,2440:16747439,34797208 -g1,2440:18960459,34797208 -g1,2440:20541188,34797208 -g1,2440:23070354,34797208 -h1,2440:26231810,34797208:0,0,0 -k1,2440:32583029,34797208:6351219 -g1,2440:32583029,34797208 -) -(1,2444:6630773,35463386:25952256,404226,76021 -(1,2442:6630773,35463386:0,0,0 -g1,2442:6630773,35463386 -g1,2442:6630773,35463386 -g1,2442:6303093,35463386 -(1,2442:6303093,35463386:0,0,0 -) -g1,2442:6630773,35463386 -) -g1,2444:7579210,35463386 -g1,2444:8843793,35463386 -g1,2444:10740667,35463386 -g1,2444:11056813,35463386 -g1,2444:12637542,35463386 -g1,2444:12953688,35463386 -g1,2444:14534417,35463386 -g1,2444:16431291,35463386 -h1,2444:18012019,35463386:0,0,0 -k1,2444:32583029,35463386:14571010 -g1,2444:32583029,35463386 -) -(1,2446:6630773,36784924:25952256,404226,107478 -(1,2445:6630773,36784924:0,0,0 -g1,2445:6630773,36784924 -g1,2445:6630773,36784924 -g1,2445:6303093,36784924 -(1,2445:6303093,36784924:0,0,0 -) -g1,2445:6630773,36784924 -) -k1,2446:6630773,36784924:0 -g1,2446:11056813,36784924 -g1,2446:11689105,36784924 -g1,2446:13269834,36784924 -g1,2446:13902126,36784924 -g1,2446:14534418,36784924 -g1,2446:16747439,36784924 -g1,2446:18960459,36784924 -g1,2446:20541188,36784924 -g1,2446:23070354,36784924 -g1,2446:26547957,36784924 -g1,2446:30341705,36784924 -g1,2446:30973997,36784924 -h1,2446:32554726,36784924:0,0,0 -k1,2446:32583029,36784924:28303 -g1,2446:32583029,36784924 -) -(1,2450:6630773,37451102:25952256,404226,76021 -(1,2448:6630773,37451102:0,0,0 -g1,2448:6630773,37451102 -g1,2448:6630773,37451102 -g1,2448:6303093,37451102 -(1,2448:6303093,37451102:0,0,0 -) -g1,2448:6630773,37451102 -) -g1,2450:7579210,37451102 -g1,2450:8843793,37451102 -g1,2450:10740667,37451102 -g1,2450:11056813,37451102 -g1,2450:12637542,37451102 -g1,2450:12953688,37451102 -g1,2450:14534417,37451102 -g1,2450:16431291,37451102 -g1,2450:16747437,37451102 -h1,2450:18012020,37451102:0,0,0 -k1,2450:32583029,37451102:14571009 -g1,2450:32583029,37451102 -) -] -) -g1,2451:32583029,37527123 -g1,2451:6630773,37527123 -g1,2451:6630773,37527123 -g1,2451:32583029,37527123 -g1,2451:32583029,37527123 -) -h1,2451:6630773,37723731:0,0,0 -(1,2456:6630773,38974865:25952256,513147,134348 -h1,2455:6630773,38974865:983040,0,0 -k1,2455:8419686,38974865:178038 -k1,2455:9616809,38974865:178038 -k1,2455:12786566,38974865:178038 -k1,2455:14819928,38974865:178038 -k1,2455:16017051,38974865:178038 -k1,2455:19597719,38974865:178039 -k1,2455:20723408,38974865:178038 -(1,2455:20723408,38974865:0,414482,115847 -r1,2458:23191945,38974865:2468537,530329,115847 -k1,2455:20723408,38974865:-2468537 -) -(1,2455:20723408,38974865:2468537,414482,115847 -k1,2455:20723408,38974865:3277 -h1,2455:23188668,38974865:0,411205,112570 -) -k1,2455:23369983,38974865:178038 -k1,2455:25744132,38974865:178038 -k1,2455:28671405,38974865:178038 -k1,2455:31074390,38974865:178038 -k1,2455:32583029,38974865:0 -) -(1,2456:6630773,39816353:25952256,505283,134348 -k1,2455:9163033,39816353:148716 -k1,2455:9939584,39816353:148716 -k1,2455:10503093,39816353:148666 -k1,2455:11843255,39816353:148717 -k1,2455:13693941,39816353:148716 -k1,2455:17015255,39816353:148716 -k1,2455:19514747,39816353:148716 -k1,2455:23241074,39816353:148716 -k1,2455:24381350,39816353:148716 -k1,2455:26043293,39816353:148717 -k1,2455:26843437,39816353:148716 -k1,2455:29913748,39816353:148716 -k1,2455:32583029,39816353:0 -) -(1,2456:6630773,40657841:25952256,505283,134348 -k1,2455:8502773,40657841:221803 -k1,2455:11676317,40657841:221802 -k1,2455:13089565,40657841:221803 -k1,2455:16904707,40657841:221803 -k1,2455:19971427,40657841:221802 -k1,2455:22623960,40657841:221803 -k1,2455:26616049,40657841:221803 -k1,2455:30394490,40657841:221802 -k1,2455:31607853,40657841:221803 -k1,2456:32583029,40657841:0 -) -(1,2456:6630773,41499329:25952256,505283,134348 -k1,2455:8765411,41499329:217710 -k1,2455:9669284,41499329:217711 -k1,2455:12861673,41499329:217710 -k1,2455:15449166,41499329:217711 -k1,2455:17585770,41499329:217710 -k1,2455:19495620,41499329:217710 -k1,2455:23018312,41499329:217711 -k1,2455:24427467,41499329:217710 -k1,2455:27619857,41499329:217711 -k1,2455:31107814,41499329:217710 -k1,2455:32583029,41499329:0 -) -(1,2456:6630773,42340817:25952256,505283,134348 -k1,2455:9077946,42340817:253028 -k1,2455:12232909,42340817:253029 -k1,2455:13866781,42340817:253028 -k1,2455:16188126,42340817:253029 -k1,2455:17725660,42340817:253028 -k1,2455:19676727,42340817:253029 -k1,2455:20285615,42340817:253028 -k1,2455:22879590,42340817:253029 -k1,2455:25313001,42340817:253028 -k1,2455:26313796,42340817:253029 -k1,2455:30156886,42340817:253028 -k1,2455:32583029,42340817:0 -) -(1,2456:6630773,43182305:25952256,505283,126483 -k1,2455:8792312,43182305:209877 -k1,2455:10444636,43182305:209877 -k1,2455:13588560,43182305:209877 -(1,2455:13588560,43182305:0,459977,115847 -r1,2458:17815656,43182305:4227096,575824,115847 -k1,2455:13588560,43182305:-4227096 -) -(1,2455:13588560,43182305:4227096,459977,115847 -g1,2455:15702108,43182305 -g1,2455:16405532,43182305 -h1,2455:17812379,43182305:0,411205,112570 -) -k1,2455:18025533,43182305:209877 -k1,2455:20415793,43182305:209877 -k1,2455:21373436,43182305:209877 -k1,2455:23788599,43182305:209876 -k1,2455:24614514,43182305:209877 -k1,2455:25843476,43182305:209877 -k1,2455:27326718,43182305:209877 -k1,2455:28917439,43182305:209877 -k1,2455:29743354,43182305:209877 -k1,2455:32583029,43182305:0 -) -(1,2456:6630773,44023793:25952256,513147,126483 -k1,2455:9247506,44023793:143404 -k1,2455:11234439,44023793:143405 -k1,2455:15615401,44023793:143404 -k1,2455:16386641,44023793:143405 -k1,2455:17549130,44023793:143404 -k1,2455:20684254,44023793:143405 -k1,2455:22856653,44023793:143404 -k1,2455:24019143,44023793:143405 -k1,2455:26833794,44023793:143404 -k1,2455:28490425,44023793:143405 -k1,2455:31773659,44023793:143404 -k1,2455:32583029,44023793:0 -) -(1,2456:6630773,44865281:25952256,513147,134348 -k1,2455:10145961,44865281:210207 -k1,2455:11750118,44865281:210206 -k1,2455:14154470,44865281:210207 -k1,2455:17266610,44865281:210206 -k1,2455:19067376,44865281:210207 -k1,2455:20296668,44865281:210207 -k1,2455:23285601,44865281:210206 -k1,2455:25176151,44865281:210207 -k1,2455:25917854,44865281:210206 -k1,2455:27194332,44865281:210207 -k1,2455:29183840,44865281:210206 -k1,2455:30155575,44865281:210207 -k1,2456:32583029,44865281:0 -) -(1,2456:6630773,45706769:25952256,505283,115847 -(1,2455:6630773,45706769:0,459977,115847 -r1,2458:10857869,45706769:4227096,575824,115847 -k1,2455:6630773,45706769:-4227096 -) -(1,2455:6630773,45706769:4227096,459977,115847 -g1,2455:8744321,45706769 -g1,2455:9447745,45706769 -h1,2455:10854592,45706769:0,411205,112570 -) -g1,2455:11057098,45706769 -g1,2455:11942489,45706769 -g1,2455:13719170,45706769 -k1,2456:32583029,45706769:17292306 -g1,2456:32583029,45706769 -) -] -(1,2458:32583029,45706769:0,0,0 -g1,2458:32583029,45706769 -) -) -] -(1,2458:6630773,47279633:25952256,0,0 -h1,2458:6630773,47279633:25952256,0,0 -) -] -(1,2458:4262630,4025873:0,0,0 -[1,2458:-473656,4025873:0,0,0 -(1,2458:-473656,-710413:0,0,0 -(1,2458:-473656,-710413:0,0,0 -g1,2458:-473656,-710413 -) -g1,2458:-473656,-710413 -) -] -) -] -!28513 -}60 -Input:514:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:515:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:516:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:517:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:518:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:519:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:520:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:521:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:522:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:523:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:524:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:525:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:526:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:527:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1313 -{61 -[1,2549:4262630,47279633:28320399,43253760,0 -(1,2549:4262630,4025873:0,0,0 -[1,2549:-473656,4025873:0,0,0 -(1,2549:-473656,-710413:0,0,0 -(1,2549:-473656,-644877:0,0,0 -k1,2549:-473656,-644877:-65536 -) -(1,2549:-473656,4736287:0,0,0 -k1,2549:-473656,4736287:5209943 -) -g1,2549:-473656,-710413 -) -] -) -[1,2549:6630773,47279633:25952256,43253760,0 -[1,2549:6630773,4812305:25952256,786432,0 -(1,2549:6630773,4812305:25952256,505283,11795 -(1,2549:6630773,4812305:25952256,505283,11795 -g1,2549:3078558,4812305 -[1,2549:3078558,4812305:0,0,0 -(1,2549:3078558,2439708:0,1703936,0 -k1,2549:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,2549:2537886,2439708:1179648,16384,0 -) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,2549:3078558,1915420:16384,1179648,0 -) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 -) -] -) -) -) -] -[1,2549:3078558,4812305:0,0,0 -(1,2549:3078558,2439708:0,1703936,0 -g1,2549:29030814,2439708 -g1,2549:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,2549:36151628,1915420:16384,1179648,0 -) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 -) -] -) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,2549:37855564,2439708:1179648,16384,0 -) -) -k1,2549:3078556,2439708:-34777008 -) -] -[1,2549:3078558,4812305:0,0,0 -(1,2549:3078558,49800853:0,16384,2228224 -k1,2549:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,2549:2537886,49800853:1179648,16384,0 -) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,2549:3078558,51504789:16384,1179648,0 -) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 -) -] -) -) -) -] -[1,2549:3078558,4812305:0,0,0 -(1,2549:3078558,49800853:0,16384,2228224 -g1,2549:29030814,49800853 -g1,2549:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,2549:36151628,51504789:16384,1179648,0 -) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 -) -] -) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,2549:37855564,49800853:1179648,16384,0 -) -) -k1,2549:3078556,49800853:-34777008 -) -] -g1,2549:6630773,4812305 -k1,2549:22348274,4812305:14920583 -g1,2549:23970945,4812305 -g1,2549:24793421,4812305 -g1,2549:27528893,4812305 -g1,2549:28938572,4812305 -) -) -] -[1,2549:6630773,45706769:25952256,40108032,0 -(1,2549:6630773,45706769:25952256,40108032,0 -(1,2549:6630773,45706769:0,0,0 -g1,2549:6630773,45706769 -) -[1,2549:6630773,45706769:25952256,40108032,0 -v1,2458:6630773,6254097:0,393216,0 -(1,2465:6630773,7210206:25952256,1349325,196608 -g1,2465:6630773,7210206 -g1,2465:6630773,7210206 -g1,2465:6434165,7210206 -(1,2465:6434165,7210206:0,1349325,196608 -r1,2549:32779637,7210206:26345472,1545933,196608 -k1,2465:6434165,7210206:-26345472 -) -(1,2465:6434165,7210206:26345472,1349325,196608 -[1,2465:6630773,7210206:25952256,1152717,0 -(1,2460:6630773,6468007:25952256,410518,101187 -(1,2459:6630773,6468007:0,0,0 -g1,2459:6630773,6468007 -g1,2459:6630773,6468007 -g1,2459:6303093,6468007 -(1,2459:6303093,6468007:0,0,0 -) -g1,2459:6630773,6468007 -) -k1,2460:6630773,6468007:0 -g1,2460:10424522,6468007 -g1,2460:11056814,6468007 -g1,2460:12953689,6468007 -g1,2460:16747437,6468007 -g1,2460:17379729,6468007 -g1,2460:19276604,6468007 -g1,2460:19908896,6468007 -g1,2460:20541188,6468007 -g1,2460:23386500,6468007 -g1,2460:25283374,6468007 -g1,2460:25915666,6468007 -h1,2460:27496395,6468007:0,0,0 -k1,2460:32583029,6468007:5086634 -g1,2460:32583029,6468007 -) -(1,2464:6630773,7134185:25952256,404226,76021 -(1,2462:6630773,7134185:0,0,0 -g1,2462:6630773,7134185 -g1,2462:6630773,7134185 -g1,2462:6303093,7134185 -(1,2462:6303093,7134185:0,0,0 -) -g1,2462:6630773,7134185 -) -g1,2464:7579210,7134185 -g1,2464:8843793,7134185 -h1,2464:11056813,7134185:0,0,0 -k1,2464:32583029,7134185:21526216 -g1,2464:32583029,7134185 -) -] -) -g1,2465:32583029,7210206 -g1,2465:6630773,7210206 -g1,2465:6630773,7210206 -g1,2465:32583029,7210206 -g1,2465:32583029,7210206 -) -h1,2465:6630773,7406814:0,0,0 -v1,2469:6630773,9296878:0,393216,0 -(1,2470:6630773,13209897:25952256,4306235,0 -g1,2470:6630773,13209897 -g1,2470:6303093,13209897 -r1,2549:6401397,13209897:98304,4306235,0 -g1,2470:6600626,13209897 -g1,2470:6797234,13209897 -[1,2470:6797234,13209897:25785795,4306235,0 -(1,2470:6797234,9717462:25785795,813800,267386 -(1,2469:6797234,9717462:0,813800,267386 -r1,2549:8134168,9717462:1336934,1081186,267386 -k1,2469:6797234,9717462:-1336934 -) -(1,2469:6797234,9717462:1336934,813800,267386 -) -k1,2469:8325260,9717462:191092 -k1,2469:8652940,9717462:327680 -k1,2469:11274762,9717462:191092 -k1,2469:15236140,9717462:191092 -k1,2469:16418792,9717462:191092 -k1,2469:18123110,9717462:191092 -k1,2469:18930240,9717462:191092 -k1,2469:20573611,9717462:191093 -k1,2469:21956148,9717462:191092 -k1,2469:23908192,9717462:191092 -k1,2469:25602025,9717462:191092 -k1,2469:27954494,9717462:191092 -k1,2469:29337031,9717462:191092 -k1,2469:32583029,9717462:0 -) -(1,2470:6797234,10558950:25785795,513147,134348 -k1,2469:8232036,10558950:243357 -k1,2469:9466953,10558950:243357 -k1,2469:11032171,10558950:243357 -k1,2469:11942684,10558950:243357 -k1,2469:13544602,10558950:243357 -k1,2469:15071154,10558950:243357 -k1,2469:16505956,10558950:243357 -k1,2469:18451282,10558950:243356 -k1,2469:21867237,10558950:243357 -k1,2469:22726632,10558950:243357 -k1,2469:25635994,10558950:243357 -k1,2469:26530779,10558950:243357 -k1,2469:27362649,10558950:243357 -k1,2469:28986850,10558950:243357 -k1,2469:31298523,10558950:243357 -k1,2469:32583029,10558950:0 -) -(1,2470:6797234,11400438:25785795,513147,134348 -k1,2469:10150207,11400438:196759 -k1,2469:11847741,11400438:196760 -k1,2469:12853870,11400438:196759 -k1,2469:14069715,11400438:196760 -k1,2469:15919947,11400438:196759 -k1,2469:17615515,11400438:196760 -k1,2469:19206225,11400438:196759 -k1,2469:19817825,11400438:196757 -k1,2469:23531246,11400438:196759 -k1,2469:24900445,11400438:196760 -k1,2469:28253418,11400438:196759 -k1,2469:29109470,11400438:196760 -k1,2469:30325314,11400438:196759 -k1,2469:32583029,11400438:0 -) -(1,2470:6797234,12241926:25785795,513147,134348 -k1,2469:7461184,12241926:176362 -k1,2469:11247292,12241926:176385 -k1,2469:12090833,12241926:176385 -k1,2469:12682038,12241926:176362 -k1,2469:15132522,12241926:176385 -k1,2469:19079192,12241926:176384 -k1,2469:20359859,12241926:176385 -k1,2469:21284010,12241926:176385 -k1,2469:24259438,12241926:176385 -k1,2469:25829773,12241926:176384 -(1,2469:25829773,12241926:0,452978,122846 -r1,2549:29705157,12241926:3875384,575824,122846 -k1,2469:25829773,12241926:-3875384 -) -(1,2469:25829773,12241926:3875384,452978,122846 -k1,2469:25829773,12241926:3277 -h1,2469:29701880,12241926:0,411205,112570 -) -k1,2469:30055212,12241926:176385 -k1,2469:31185146,12241926:176385 -k1,2469:32583029,12241926:0 -) -(1,2470:6797234,13083414:25785795,513147,126483 -g1,2469:9665744,13083414 -g1,2469:10783788,13083414 -g1,2469:13248597,13083414 -k1,2470:32583028,13083414:17076716 -g1,2470:32583028,13083414 -) -] -g1,2470:32583029,13209897 -) -h1,2470:6630773,13209897:0,0,0 -(1,2473:6630773,14575673:25952256,513147,134348 -h1,2472:6630773,14575673:983040,0,0 -k1,2472:10246632,14575673:202089 -k1,2472:14219007,14575673:202089 -k1,2472:15412656,14575673:202089 -k1,2472:18143779,14575673:202089 -k1,2472:19916111,14575673:202089 -k1,2472:21309646,14575673:202090 -k1,2472:24650254,14575673:202089 -k1,2472:27882728,14575673:202089 -k1,2472:29642608,14575673:202089 -k1,2472:30836257,14575673:202089 -k1,2472:31394206,14575673:202089 -k1,2473:32583029,14575673:0 -) -(1,2473:6630773,15417161:25952256,513147,134348 -k1,2472:8673379,15417161:176141 -k1,2472:9465557,15417161:176140 -k1,2472:13372007,15417161:176141 -k1,2472:16482849,15417161:176140 -k1,2472:17678075,15417161:176141 -k1,2472:19626965,15417161:176141 -k1,2472:22101453,15417161:176140 -k1,2472:22929022,15417161:176141 -k1,2472:24716693,15417161:176141 -k1,2472:26401472,15417161:176140 -k1,2472:27670098,15417161:176141 -k1,2472:29496435,15417161:176140 -k1,2472:31115023,15417161:176141 -k1,2472:32583029,15417161:0 -) -(1,2473:6630773,16258649:25952256,513147,126483 -k1,2472:8497945,16258649:211077 -k1,2472:8922002,16258649:211065 -k1,2472:10265542,16258649:211078 -k1,2472:12137301,16258649:211077 -k1,2472:15340097,16258649:211077 -k1,2472:16210466,16258649:211077 -k1,2472:17440628,16258649:211077 -k1,2472:18917861,16258649:211077 -k1,2472:21080600,16258649:211077 -k1,2472:22734125,16258649:211078 -k1,2472:27465876,16258649:211077 -k1,2472:30346234,16258649:211077 -k1,2472:32370037,16258649:211077 -k1,2472:32583029,16258649:0 -) -(1,2473:6630773,17100137:25952256,513147,134348 -k1,2472:7951322,17100137:188087 -k1,2472:9231894,17100137:188087 -(1,2472:9231894,17100137:0,452978,122846 -r1,2549:11348719,17100137:2116825,575824,122846 -k1,2472:9231894,17100137:-2116825 -) -(1,2472:9231894,17100137:2116825,452978,122846 -k1,2472:9231894,17100137:3277 -h1,2472:11345442,17100137:0,411205,112570 -) -k1,2472:11536807,17100137:188088 -k1,2472:12672545,17100137:188087 -k1,2472:14557359,17100137:188087 -k1,2472:17910835,17100137:188087 -k1,2472:19171091,17100137:188087 -k1,2472:21590679,17100137:188087 -k1,2472:23480737,17100137:188088 -k1,2472:24083656,17100137:188076 -k1,2472:27297540,17100137:188087 -k1,2472:30466204,17100137:188087 -(1,2472:30466204,17100137:0,452978,122846 -r1,2549:32583029,17100137:2116825,575824,122846 -k1,2472:30466204,17100137:-2116825 -) -(1,2472:30466204,17100137:2116825,452978,122846 -k1,2472:30466204,17100137:3277 -h1,2472:32579752,17100137:0,411205,112570 -) -k1,2472:32583029,17100137:0 -) -(1,2473:6630773,17941625:25952256,505283,134348 -g1,2472:8021447,17941625 -(1,2472:8021447,17941625:0,452978,122846 -r1,2549:10489984,17941625:2468537,575824,122846 -k1,2472:8021447,17941625:-2468537 -) -(1,2472:8021447,17941625:2468537,452978,122846 -k1,2472:8021447,17941625:3277 -h1,2472:10486707,17941625:0,411205,112570 -) -g1,2472:10689213,17941625 -g1,2472:12936442,17941625 -g1,2472:15409770,17941625 -g1,2472:19379285,17941625 -g1,2472:20264676,17941625 -k1,2473:32583029,17941625:9473435 -g1,2473:32583029,17941625 -) -(1,2475:6630773,18783113:25952256,505283,134348 -h1,2474:6630773,18783113:983040,0,0 -g1,2474:8440877,18783113 -g1,2474:8995966,18783113 -g1,2474:11469294,18783113 -g1,2474:15108508,18783113 -(1,2474:15108508,18783113:0,452978,115847 -r1,2549:15466774,18783113:358266,568825,115847 -k1,2474:15108508,18783113:-358266 -) -(1,2474:15108508,18783113:358266,452978,115847 -k1,2474:15108508,18783113:3277 -h1,2474:15463497,18783113:0,411205,112570 -) -g1,2474:15666003,18783113 -g1,2474:18898238,18783113 -g1,2474:22484368,18783113 -g1,2474:25654999,18783113 -k1,2475:32583029,18783113:4083112 -g1,2475:32583029,18783113 -) -v1,2477:6630773,19973579:0,393216,0 -(1,2484:6630773,20923396:25952256,1343033,196608 -g1,2484:6630773,20923396 -g1,2484:6630773,20923396 -g1,2484:6434165,20923396 -(1,2484:6434165,20923396:0,1343033,196608 -r1,2549:32779637,20923396:26345472,1539641,196608 -k1,2484:6434165,20923396:-26345472 -) -(1,2484:6434165,20923396:26345472,1343033,196608 -[1,2484:6630773,20923396:25952256,1146425,0 -(1,2479:6630773,20181197:25952256,404226,107478 -(1,2478:6630773,20181197:0,0,0 -g1,2478:6630773,20181197 -g1,2478:6630773,20181197 -g1,2478:6303093,20181197 -(1,2478:6303093,20181197:0,0,0 -) -g1,2478:6630773,20181197 -) -k1,2479:6630773,20181197:0 -g1,2479:10740668,20181197 -g1,2479:11372960,20181197 -g1,2479:13902126,20181197 -g1,2479:17695874,20181197 -g1,2479:18328166,20181197 -g1,2479:20541186,20181197 -g1,2479:21173478,20181197 -g1,2479:21805770,20181197 -h1,2479:24334936,20181197:0,0,0 -k1,2479:32583029,20181197:8248093 -g1,2479:32583029,20181197 -) -(1,2483:6630773,20847375:25952256,404226,76021 -(1,2481:6630773,20847375:0,0,0 -g1,2481:6630773,20847375 -g1,2481:6630773,20847375 -g1,2481:6303093,20847375 -(1,2481:6303093,20847375:0,0,0 -) -g1,2481:6630773,20847375 -) -g1,2483:7579210,20847375 -g1,2483:8843793,20847375 -h1,2483:12005250,20847375:0,0,0 -k1,2483:32583030,20847375:20577780 -g1,2483:32583030,20847375 -) -] -) -g1,2484:32583029,20923396 -g1,2484:6630773,20923396 -g1,2484:6630773,20923396 -g1,2484:32583029,20923396 -g1,2484:32583029,20923396 -) -h1,2484:6630773,21120004:0,0,0 -(1,2488:6630773,22485780:25952256,505283,134348 -h1,2487:6630773,22485780:983040,0,0 -k1,2487:9919488,22485780:210489 -k1,2487:10485837,22485780:210489 -k1,2487:12970425,22485780:210489 -k1,2487:16620899,22485780:210489 -k1,2487:17699740,22485780:210489 -k1,2487:19014511,22485780:210489 -k1,2487:21117680,22485780:210489 -k1,2487:24633150,22485780:210489 -k1,2487:26853628,22485780:210489 -(1,2487:26853628,22485780:0,452978,115847 -r1,2549:27915318,22485780:1061690,568825,115847 -k1,2487:26853628,22485780:-1061690 -) -(1,2487:26853628,22485780:1061690,452978,115847 -g1,2487:27560329,22485780 -h1,2487:27912041,22485780:0,411205,112570 -) -k1,2487:28125807,22485780:210489 -k1,2487:29022458,22485780:210489 -k1,2487:32583029,22485780:0 -) -(1,2488:6630773,23327268:25952256,505283,134348 -g1,2487:7898894,23327268 -(1,2487:7898894,23327268:0,452978,115847 -r1,2549:12125990,23327268:4227096,568825,115847 -k1,2487:7898894,23327268:-4227096 -) -(1,2487:7898894,23327268:4227096,452978,115847 -k1,2487:7898894,23327268:3277 -h1,2487:12122713,23327268:0,411205,112570 -) -g1,2487:12498889,23327268 -g1,2487:13381003,23327268 -(1,2487:13381003,23327268:0,452978,115847 -r1,2549:15146116,23327268:1765113,568825,115847 -k1,2487:13381003,23327268:-1765113 -) -(1,2487:13381003,23327268:1765113,452978,115847 -k1,2487:13381003,23327268:3277 -h1,2487:15142839,23327268:0,411205,112570 -) -g1,2487:15345345,23327268 -g1,2487:18203370,23327268 -g1,2487:19534406,23327268 -k1,2488:32583029,23327268:11420709 -g1,2488:32583029,23327268 -) -v1,2490:6630773,24517734:0,393216,0 -(1,2499:6630773,26799907:25952256,2675389,196608 -g1,2499:6630773,26799907 -g1,2499:6630773,26799907 -g1,2499:6434165,26799907 -(1,2499:6434165,26799907:0,2675389,196608 -r1,2549:32779637,26799907:26345472,2871997,196608 -k1,2499:6434165,26799907:-26345472 -) -(1,2499:6434165,26799907:26345472,2675389,196608 -[1,2499:6630773,26799907:25952256,2478781,0 -(1,2492:6630773,24725352:25952256,404226,107478 -(1,2491:6630773,24725352:0,0,0 -g1,2491:6630773,24725352 -g1,2491:6630773,24725352 -g1,2491:6303093,24725352 -(1,2491:6303093,24725352:0,0,0 -) -g1,2491:6630773,24725352 -) -k1,2492:6630773,24725352:0 -g1,2492:10740668,24725352 -g1,2492:11372960,24725352 -k1,2492:11372960,24725352:0 -h1,2492:16431291,24725352:0,0,0 -k1,2492:32583029,24725352:16151738 -g1,2492:32583029,24725352 -) -(1,2493:6630773,25391530:25952256,404226,101187 -h1,2493:6630773,25391530:0,0,0 -g1,2493:6946919,25391530 -g1,2493:7263065,25391530 -g1,2493:7579211,25391530 -g1,2493:7895357,25391530 -g1,2493:8211503,25391530 -g1,2493:12005251,25391530 -g1,2493:12637543,25391530 -k1,2493:12637543,25391530:0 -h1,2493:14218272,25391530:0,0,0 -k1,2493:32583028,25391530:18364756 -g1,2493:32583028,25391530 -) -(1,2494:6630773,26057708:25952256,404226,82312 -h1,2494:6630773,26057708:0,0,0 -g1,2494:6946919,26057708 -g1,2494:7263065,26057708 -g1,2494:7579211,26057708 -g1,2494:7895357,26057708 -g1,2494:8211503,26057708 -g1,2494:8843795,26057708 -g1,2494:9476087,26057708 -g1,2494:12953691,26057708 -g1,2494:15799003,26057708 -h1,2494:18644314,26057708:0,0,0 -k1,2494:32583029,26057708:13938715 -g1,2494:32583029,26057708 -) -(1,2498:6630773,26723886:25952256,404226,76021 -(1,2496:6630773,26723886:0,0,0 -g1,2496:6630773,26723886 -g1,2496:6630773,26723886 -g1,2496:6303093,26723886 -(1,2496:6303093,26723886:0,0,0 -) -g1,2496:6630773,26723886 -) -g1,2498:7579210,26723886 -g1,2498:8843793,26723886 -g1,2498:11372959,26723886 -g1,2498:13902125,26723886 -h1,2498:16115145,26723886:0,0,0 -k1,2498:32583029,26723886:16467884 -g1,2498:32583029,26723886 -) -] -) -g1,2499:32583029,26799907 -g1,2499:6630773,26799907 -g1,2499:6630773,26799907 -g1,2499:32583029,26799907 -g1,2499:32583029,26799907 -) -h1,2499:6630773,26996515:0,0,0 -(1,2503:6630773,28362291:25952256,513147,134348 -h1,2502:6630773,28362291:983040,0,0 -k1,2502:10907681,28362291:197292 -(1,2502:10907681,28362291:0,424981,115847 -r1,2549:11265947,28362291:358266,540828,115847 -k1,2502:10907681,28362291:-358266 -) -(1,2502:10907681,28362291:358266,424981,115847 -k1,2502:10907681,28362291:3277 -h1,2502:11262670,28362291:0,411205,112570 -) -k1,2502:11463239,28362291:197292 -k1,2502:14522488,28362291:197292 -k1,2502:16004286,28362291:197292 -k1,2502:17220663,28362291:197292 -k1,2502:19399108,28362291:197292 -k1,2502:21218416,28362291:197292 -k1,2502:22163475,28362291:197293 -k1,2502:22973529,28362291:197292 -k1,2502:24189906,28362291:197292 -k1,2502:26526293,28362291:197292 -k1,2502:27382877,28362291:197292 -k1,2502:28599254,28362291:197292 -k1,2502:30836026,28362291:197292 -k1,2502:32224763,28362291:197292 -(1,2502:32224763,28362291:0,459977,115847 -r1,2549:32583029,28362291:358266,575824,115847 -k1,2502:32224763,28362291:-358266 -) -(1,2502:32224763,28362291:358266,459977,115847 -k1,2502:32224763,28362291:3277 -h1,2502:32579752,28362291:0,411205,112570 -) -k1,2502:32583029,28362291:0 -) -(1,2503:6630773,29203779:25952256,505283,7863 -g1,2502:8114508,29203779 -g1,2502:9332822,29203779 -g1,2502:11513204,29203779 -g1,2502:13892816,29203779 -g1,2502:14839811,29203779 -g1,2502:15651802,29203779 -g1,2502:16639429,29203779 -k1,2503:32583029,29203779:14150535 -g1,2503:32583029,29203779 -) -v1,2505:6630773,30394245:0,393216,0 -(1,2514:6630773,32676418:25952256,2675389,196608 -g1,2514:6630773,32676418 -g1,2514:6630773,32676418 -g1,2514:6434165,32676418 -(1,2514:6434165,32676418:0,2675389,196608 -r1,2549:32779637,32676418:26345472,2871997,196608 -k1,2514:6434165,32676418:-26345472 -) -(1,2514:6434165,32676418:26345472,2675389,196608 -[1,2514:6630773,32676418:25952256,2478781,0 -(1,2507:6630773,30601863:25952256,404226,107478 -(1,2506:6630773,30601863:0,0,0 -g1,2506:6630773,30601863 -g1,2506:6630773,30601863 -g1,2506:6303093,30601863 -(1,2506:6303093,30601863:0,0,0 -) -g1,2506:6630773,30601863 -) -k1,2507:6630773,30601863:0 -g1,2507:10740668,30601863 -g1,2507:11372960,30601863 -k1,2507:11372960,30601863:0 -h1,2507:16747437,30601863:0,0,0 -k1,2507:32583029,30601863:15835592 -g1,2507:32583029,30601863 -) -(1,2508:6630773,31268041:25952256,404226,101187 -h1,2508:6630773,31268041:0,0,0 -g1,2508:6946919,31268041 -g1,2508:7263065,31268041 -g1,2508:7579211,31268041 -g1,2508:7895357,31268041 -g1,2508:8211503,31268041 -g1,2508:12005251,31268041 -g1,2508:12637543,31268041 -k1,2508:12637543,31268041:0 -h1,2508:14218272,31268041:0,0,0 -k1,2508:32583028,31268041:18364756 -g1,2508:32583028,31268041 -) -(1,2509:6630773,31934219:25952256,404226,82312 -h1,2509:6630773,31934219:0,0,0 -g1,2509:6946919,31934219 -g1,2509:7263065,31934219 -g1,2509:7579211,31934219 -g1,2509:7895357,31934219 -g1,2509:8211503,31934219 -g1,2509:8843795,31934219 -g1,2509:9476087,31934219 -g1,2509:12953691,31934219 -g1,2509:15799003,31934219 -g1,2509:16431295,31934219 -h1,2509:18960460,31934219:0,0,0 -k1,2509:32583029,31934219:13622569 -g1,2509:32583029,31934219 -) -(1,2513:6630773,32600397:25952256,404226,76021 -(1,2511:6630773,32600397:0,0,0 -g1,2511:6630773,32600397 -g1,2511:6630773,32600397 -g1,2511:6303093,32600397 -(1,2511:6303093,32600397:0,0,0 -) -g1,2511:6630773,32600397 -) -g1,2513:7579210,32600397 -g1,2513:8843793,32600397 -g1,2513:11372959,32600397 -g1,2513:11689105,32600397 -g1,2513:14218271,32600397 -g1,2513:14534417,32600397 -g1,2513:15166709,32600397 -h1,2513:17063583,32600397:0,0,0 -k1,2513:32583029,32600397:15519446 -g1,2513:32583029,32600397 -) -] -) -g1,2514:32583029,32676418 -g1,2514:6630773,32676418 -g1,2514:6630773,32676418 -g1,2514:32583029,32676418 -g1,2514:32583029,32676418 -) -h1,2514:6630773,32873026:0,0,0 -(1,2518:6630773,34238802:25952256,505283,134348 -h1,2517:6630773,34238802:983040,0,0 -g1,2517:9009729,34238802 -g1,2517:13146361,34238802 -g1,2517:14449872,34238802 -g1,2517:15396867,34238802 -g1,2517:16366799,34238802 -g1,2517:18572085,34238802 -k1,2518:32583029,34238802:11971464 -g1,2518:32583029,34238802 -) -v1,2520:6630773,35429268:0,393216,0 -(1,2529:6630773,37717733:25952256,2681681,196608 -g1,2529:6630773,37717733 -g1,2529:6630773,37717733 -g1,2529:6434165,37717733 -(1,2529:6434165,37717733:0,2681681,196608 -r1,2549:32779637,37717733:26345472,2878289,196608 -k1,2529:6434165,37717733:-26345472 -) -(1,2529:6434165,37717733:26345472,2681681,196608 -[1,2529:6630773,37717733:25952256,2485073,0 -(1,2522:6630773,35643178:25952256,410518,107478 -(1,2521:6630773,35643178:0,0,0 -g1,2521:6630773,35643178 -g1,2521:6630773,35643178 -g1,2521:6303093,35643178 -(1,2521:6303093,35643178:0,0,0 -) -g1,2521:6630773,35643178 -) -k1,2522:6630773,35643178:0 -g1,2522:10740668,35643178 -g1,2522:11372960,35643178 -k1,2522:11372960,35643178:0 -h1,2522:13585980,35643178:0,0,0 -k1,2522:32583028,35643178:18997048 -g1,2522:32583028,35643178 -) -(1,2523:6630773,36309356:25952256,404226,101187 -h1,2523:6630773,36309356:0,0,0 -g1,2523:6946919,36309356 -g1,2523:7263065,36309356 -g1,2523:7579211,36309356 -g1,2523:7895357,36309356 -g1,2523:8211503,36309356 -g1,2523:12005251,36309356 -g1,2523:12637543,36309356 -k1,2523:12637543,36309356:0 -h1,2523:13585980,36309356:0,0,0 -k1,2523:32583028,36309356:18997048 -g1,2523:32583028,36309356 -) -(1,2524:6630773,36975534:25952256,404226,82312 -h1,2524:6630773,36975534:0,0,0 -g1,2524:6946919,36975534 -g1,2524:7263065,36975534 -g1,2524:7579211,36975534 -g1,2524:7895357,36975534 -g1,2524:8211503,36975534 -g1,2524:8843795,36975534 -g1,2524:9476087,36975534 -g1,2524:12953691,36975534 -g1,2524:15799003,36975534 -h1,2524:18960459,36975534:0,0,0 -k1,2524:32583029,36975534:13622570 -g1,2524:32583029,36975534 -) -(1,2528:6630773,37641712:25952256,404226,76021 -(1,2526:6630773,37641712:0,0,0 -g1,2526:6630773,37641712 -g1,2526:6630773,37641712 -g1,2526:6303093,37641712 -(1,2526:6303093,37641712:0,0,0 -) -g1,2526:6630773,37641712 -) -g1,2528:7579210,37641712 -g1,2528:8843793,37641712 -g1,2528:10424522,37641712 -g1,2528:10740668,37641712 -g1,2528:11056814,37641712 -g1,2528:11372960,37641712 -g1,2528:11689106,37641712 -g1,2528:13269835,37641712 -g1,2528:13585981,37641712 -g1,2528:13902127,37641712 -g1,2528:14218273,37641712 -g1,2528:14534419,37641712 -h1,2528:17063584,37641712:0,0,0 -k1,2528:32583029,37641712:15519445 -g1,2528:32583029,37641712 -) -] -) -g1,2529:32583029,37717733 -g1,2529:6630773,37717733 -g1,2529:6630773,37717733 -g1,2529:32583029,37717733 -g1,2529:32583029,37717733 -) -h1,2529:6630773,37914341:0,0,0 -(1,2533:6630773,39280117:25952256,505283,126483 -h1,2532:6630773,39280117:983040,0,0 -k1,2532:8324218,39280117:222817 -k1,2532:9619227,39280117:222840 -(1,2532:9826321,39280117:0,414482,115847 -r1,2549:10184587,39280117:358266,530329,115847 -k1,2532:9826321,39280117:-358266 -) -(1,2532:9826321,39280117:358266,414482,115847 -k1,2532:9826321,39280117:3277 -h1,2532:10181310,39280117:0,411205,112570 -) -k1,2532:10614522,39280117:222841 -k1,2532:13496159,39280117:222841 -k1,2532:14850806,39280117:222840 -k1,2532:18221997,39280117:222841 -k1,2532:19072672,39280117:222840 -k1,2532:20498754,39280117:222841 -k1,2532:23383012,39280117:222841 -k1,2532:24474204,39280117:222840 -k1,2532:26995393,39280117:222841 -k1,2532:28237318,39280117:222840 -k1,2532:29608350,39280117:222841 -k1,2532:32583029,39280117:0 -) -(1,2533:6630773,40121605:25952256,505283,115847 -g1,2532:8223953,40121605 -(1,2532:8223953,40121605:0,452978,115847 -r1,2549:8933931,40121605:709978,568825,115847 -k1,2532:8223953,40121605:-709978 -) -(1,2532:8223953,40121605:709978,452978,115847 -k1,2532:8223953,40121605:3277 -h1,2532:8930654,40121605:0,411205,112570 -) -k1,2533:32583029,40121605:23475428 -g1,2533:32583029,40121605 -) -v1,2535:6630773,41312071:0,393216,0 -(1,2544:6630773,43600536:25952256,2681681,196608 -g1,2544:6630773,43600536 -g1,2544:6630773,43600536 -g1,2544:6434165,43600536 -(1,2544:6434165,43600536:0,2681681,196608 -r1,2549:32779637,43600536:26345472,2878289,196608 -k1,2544:6434165,43600536:-26345472 -) -(1,2544:6434165,43600536:26345472,2681681,196608 -[1,2544:6630773,43600536:25952256,2485073,0 -(1,2537:6630773,41525981:25952256,410518,107478 -(1,2536:6630773,41525981:0,0,0 -g1,2536:6630773,41525981 -g1,2536:6630773,41525981 -g1,2536:6303093,41525981 -(1,2536:6303093,41525981:0,0,0 -) -g1,2536:6630773,41525981 -) -k1,2537:6630773,41525981:0 -g1,2537:10740668,41525981 -g1,2537:11372960,41525981 -k1,2537:11372960,41525981:0 -h1,2537:12953689,41525981:0,0,0 -k1,2537:32583029,41525981:19629340 -g1,2537:32583029,41525981 -) -(1,2538:6630773,42192159:25952256,404226,101187 -h1,2538:6630773,42192159:0,0,0 -g1,2538:6946919,42192159 -g1,2538:7263065,42192159 -g1,2538:7579211,42192159 -g1,2538:7895357,42192159 -g1,2538:8211503,42192159 -g1,2538:12005251,42192159 -g1,2538:12637543,42192159 -k1,2538:12637543,42192159:0 -h1,2538:13585980,42192159:0,0,0 -k1,2538:32583028,42192159:18997048 -g1,2538:32583028,42192159 -) -(1,2539:6630773,42858337:25952256,404226,82312 -h1,2539:6630773,42858337:0,0,0 -g1,2539:6946919,42858337 -g1,2539:7263065,42858337 -g1,2539:7579211,42858337 -g1,2539:7895357,42858337 -g1,2539:8211503,42858337 -g1,2539:8843795,42858337 -g1,2539:9476087,42858337 -g1,2539:12953691,42858337 -g1,2539:15799003,42858337 -h1,2539:18960459,42858337:0,0,0 -k1,2539:32583029,42858337:13622570 -g1,2539:32583029,42858337 -) -(1,2543:6630773,43524515:25952256,404226,76021 -(1,2541:6630773,43524515:0,0,0 -g1,2541:6630773,43524515 -g1,2541:6630773,43524515 -g1,2541:6303093,43524515 -(1,2541:6303093,43524515:0,0,0 -) -g1,2541:6630773,43524515 -) -g1,2543:7579210,43524515 -g1,2543:8843793,43524515 -g1,2543:11056813,43524515 -g1,2543:11372959,43524515 -g1,2543:13585979,43524515 -g1,2543:13902125,43524515 -h1,2543:16115145,43524515:0,0,0 -k1,2543:32583029,43524515:16467884 -g1,2543:32583029,43524515 -) -] -) -g1,2544:32583029,43600536 -g1,2544:6630773,43600536 -g1,2544:6630773,43600536 -g1,2544:32583029,43600536 -g1,2544:32583029,43600536 -) -h1,2544:6630773,43797144:0,0,0 -v1,2548:6630773,45687208:0,393216,0 -] -(1,2549:32583029,45706769:0,0,0 -g1,2549:32583029,45706769 -) -) -] -(1,2549:6630773,47279633:25952256,0,0 -h1,2549:6630773,47279633:25952256,0,0 -) -] -(1,2549:4262630,4025873:0,0,0 -[1,2549:-473656,4025873:0,0,0 -(1,2549:-473656,-710413:0,0,0 -(1,2549:-473656,-710413:0,0,0 -g1,2549:-473656,-710413 -) -g1,2549:-473656,-710413 -) -] -) -] -!26227 -}61 -Input:528:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:529:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:530:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:531:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:532:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:533:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:534:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:535:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:536:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:537:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:538:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:539:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1127 -{62 -[1,2624:4262630,47279633:28320399,43253760,0 -(1,2624:4262630,4025873:0,0,0 -[1,2624:-473656,4025873:0,0,0 -(1,2624:-473656,-710413:0,0,0 -(1,2624:-473656,-644877:0,0,0 -k1,2624:-473656,-644877:-65536 -) -(1,2624:-473656,4736287:0,0,0 -k1,2624:-473656,4736287:5209943 -) -g1,2624:-473656,-710413 -) -] -) -[1,2624:6630773,47279633:25952256,43253760,0 -[1,2624:6630773,4812305:25952256,786432,0 -(1,2624:6630773,4812305:25952256,505283,11795 -(1,2624:6630773,4812305:25952256,505283,11795 -g1,2624:3078558,4812305 -[1,2624:3078558,4812305:0,0,0 -(1,2624:3078558,2439708:0,1703936,0 -k1,2624:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,2624:2537886,2439708:1179648,16384,0 -) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,2624:3078558,1915420:16384,1179648,0 -) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 -) -] -) -) -) -] -[1,2624:3078558,4812305:0,0,0 -(1,2624:3078558,2439708:0,1703936,0 -g1,2624:29030814,2439708 -g1,2624:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,2624:36151628,1915420:16384,1179648,0 -) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 -) -] -) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,2624:37855564,2439708:1179648,16384,0 -) -) -k1,2624:3078556,2439708:-34777008 -) -] -[1,2624:3078558,4812305:0,0,0 -(1,2624:3078558,49800853:0,16384,2228224 -k1,2624:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,2624:2537886,49800853:1179648,16384,0 -) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,2624:3078558,51504789:16384,1179648,0 -) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 -) -] -) -) -) -] -[1,2624:3078558,4812305:0,0,0 -(1,2624:3078558,49800853:0,16384,2228224 -g1,2624:29030814,49800853 -g1,2624:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,2624:36151628,51504789:16384,1179648,0 -) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 -) -] -) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,2624:37855564,49800853:1179648,16384,0 -) -) -k1,2624:3078556,49800853:-34777008 -) -] -g1,2624:6630773,4812305 -g1,2624:6630773,4812305 -g1,2624:10015707,4812305 -g1,2624:12209197,4812305 -k1,2624:31786111,4812305:19576914 -) -) -] -[1,2624:6630773,45706769:25952256,40108032,0 -(1,2624:6630773,45706769:25952256,40108032,0 -(1,2624:6630773,45706769:0,0,0 -g1,2624:6630773,45706769 -) -[1,2624:6630773,45706769:25952256,40108032,0 -v1,2549:6630773,6254097:0,393216,0 -(1,2549:6630773,8503959:25952256,2643078,0 -g1,2549:6630773,8503959 -g1,2549:6303093,8503959 -r1,2624:6401397,8503959:98304,2643078,0 -g1,2549:6600626,8503959 -g1,2549:6797234,8503959 -[1,2549:6797234,8503959:25785795,2643078,0 -(1,2549:6797234,6686635:25785795,825754,196608 -(1,2548:6797234,6686635:0,825754,196608 -r1,2624:7890375,6686635:1093141,1022362,196608 -k1,2548:6797234,6686635:-1093141 -) -(1,2548:6797234,6686635:1093141,825754,196608 -) -k1,2548:8444809,6686635:554434 -k1,2548:10171027,6686635:327680 -k1,2548:12146283,6686635:554435 -k1,2548:14656967,6686635:554434 -k1,2548:16381874,6686635:554434 -k1,2548:19198612,6686635:554435 -k1,2548:20772131,6686635:554434 -k1,2548:22474757,6686635:554435 -k1,2548:24525378,6686635:554434 -k1,2548:27741229,6686635:554434 -k1,2548:30150988,6686635:554435 -k1,2548:31356850,6686635:554434 -k1,2549:32583029,6686635:0 -) -(1,2549:6797234,7528123:25785795,513147,115847 -(1,2548:6797234,7528123:0,452978,115847 -r1,2624:17003431,7528123:10206197,568825,115847 -k1,2548:6797234,7528123:-10206197 -) -(1,2548:6797234,7528123:10206197,452978,115847 -g1,2548:10669341,7528123 -g1,2548:13834748,7528123 -h1,2548:17000154,7528123:0,411205,112570 -) -k1,2548:17406777,7528123:403346 -k1,2548:19077589,7528123:403346 -(1,2548:19077589,7528123:0,452978,115847 -r1,2624:28932075,7528123:9854486,568825,115847 -k1,2548:19077589,7528123:-9854486 -) -(1,2548:19077589,7528123:9854486,452978,115847 -g1,2548:22949696,7528123 -g1,2548:26115103,7528123 -h1,2548:28928798,7528123:0,411205,112570 -) -k1,2548:29662445,7528123:403345 -k1,2548:31923737,7528123:403346 -k1,2548:32583029,7528123:0 -) -(1,2549:6797234,8369611:25785795,513147,134348 -g1,2548:9758806,8369611 -g1,2548:11526312,8369611 -g1,2548:12384833,8369611 -g1,2548:14389579,8369611 -g1,2548:15792049,8369611 -g1,2548:17726671,8369611 -g1,2548:20199999,8369611 -k1,2549:32583029,8369611:8439073 -g1,2549:32583029,8369611 -) -] -g1,2549:32583029,8503959 -) -h1,2549:6630773,8503959:0,0,0 -(1,2552:6630773,9869735:25952256,513147,134348 -h1,2551:6630773,9869735:983040,0,0 -k1,2551:9031625,9869735:221125 -k1,2551:11738531,9869735:221125 -k1,2551:12618948,9869735:221125 -k1,2551:15811474,9869735:221124 -k1,2551:19337580,9869735:221125 -k1,2551:20662987,9869735:221125 -k1,2551:21631878,9869735:221125 -k1,2551:24805400,9869735:221125 -k1,2551:26420476,9869735:221125 -(1,2551:26420476,9869735:0,414482,115847 -r1,2624:26778742,9869735:358266,530329,115847 -k1,2551:26420476,9869735:-358266 -) -(1,2551:26420476,9869735:358266,414482,115847 -k1,2551:26420476,9869735:3277 -h1,2551:26775465,9869735:0,411205,112570 -) -k1,2551:26999866,9869735:221124 -k1,2551:29409238,9869735:221125 -k1,2551:30028822,9869735:221125 -k1,2551:30932832,9869735:221125 -k1,2551:32583029,9869735:0 -) -(1,2552:6630773,10711223:25952256,505283,126483 -k1,2551:9056683,10711223:289436 -(1,2551:9056683,10711223:0,435480,115847 -r1,2624:9414949,10711223:358266,551327,115847 -k1,2551:9056683,10711223:-358266 -) -(1,2551:9056683,10711223:358266,435480,115847 -k1,2551:9056683,10711223:3277 -h1,2551:9411672,10711223:0,411205,112570 -) -k1,2551:9704384,10711223:289435 -k1,2551:12182067,10711223:289436 -k1,2551:12869962,10711223:289436 -k1,2551:13842282,10711223:289435 -k1,2551:14530177,10711223:289436 -k1,2551:16956087,10711223:289436 -(1,2551:16956087,10711223:0,414482,115847 -r1,2624:17314353,10711223:358266,530329,115847 -k1,2551:16956087,10711223:-358266 -) -(1,2551:16956087,10711223:358266,414482,115847 -k1,2551:16956087,10711223:3277 -h1,2551:17311076,10711223:0,411205,112570 -) -k1,2551:17603788,10711223:289435 -k1,2551:20081471,10711223:289436 -k1,2551:20769366,10711223:289436 -k1,2551:21741686,10711223:289435 -k1,2551:23681319,10711223:289436 -k1,2551:25933558,10711223:289436 -k1,2551:26905878,10711223:289435 -k1,2551:28662010,10711223:289436 -k1,2551:32583029,10711223:0 -) -(1,2552:6630773,11552711:25952256,505283,134348 -g1,2551:9745043,11552711 -g1,2551:10475769,11552711 -g1,2551:11291036,11552711 -g1,2551:13091965,11552711 -g1,2551:14988576,11552711 -k1,2552:32583029,11552711:14681378 -g1,2552:32583029,11552711 -) -v1,2554:6630773,12743177:0,393216,0 -(1,2563:6630773,15063099:25952256,2713138,196608 -g1,2563:6630773,15063099 -g1,2563:6630773,15063099 -g1,2563:6434165,15063099 -(1,2563:6434165,15063099:0,2713138,196608 -r1,2624:32779637,15063099:26345472,2909746,196608 -k1,2563:6434165,15063099:-26345472 -) -(1,2563:6434165,15063099:26345472,2713138,196608 -[1,2563:6630773,15063099:25952256,2516530,0 -(1,2556:6630773,12957087:25952256,410518,107478 -(1,2555:6630773,12957087:0,0,0 -g1,2555:6630773,12957087 -g1,2555:6630773,12957087 -g1,2555:6303093,12957087 -(1,2555:6303093,12957087:0,0,0 -) -g1,2555:6630773,12957087 -) -k1,2556:6630773,12957087:0 -g1,2556:10740668,12957087 -g1,2556:11372960,12957087 -k1,2556:11372960,12957087:0 -h1,2556:16747436,12957087:0,0,0 -k1,2556:32583029,12957087:15835593 -g1,2556:32583029,12957087 -) -(1,2557:6630773,13623265:25952256,404226,107478 -h1,2557:6630773,13623265:0,0,0 -g1,2557:6946919,13623265 -g1,2557:7263065,13623265 -g1,2557:7579211,13623265 -g1,2557:7895357,13623265 -g1,2557:8211503,13623265 -g1,2557:12005251,13623265 -g1,2557:12637543,13623265 -k1,2557:12637543,13623265:0 -h1,2557:14850563,13623265:0,0,0 -k1,2557:32583029,13623265:17732466 -g1,2557:32583029,13623265 -) -(1,2558:6630773,14289443:25952256,404226,82312 -h1,2558:6630773,14289443:0,0,0 -g1,2558:6946919,14289443 -g1,2558:7263065,14289443 -g1,2558:7579211,14289443 -g1,2558:7895357,14289443 -g1,2558:8211503,14289443 -g1,2558:8843795,14289443 -g1,2558:9476087,14289443 -g1,2558:12953691,14289443 -g1,2558:15799003,14289443 -h1,2558:18960459,14289443:0,0,0 -k1,2558:32583029,14289443:13622570 -g1,2558:32583029,14289443 -) -(1,2562:6630773,14955621:25952256,404226,107478 -(1,2560:6630773,14955621:0,0,0 -g1,2560:6630773,14955621 -g1,2560:6630773,14955621 -g1,2560:6303093,14955621 -(1,2560:6303093,14955621:0,0,0 -) -g1,2560:6630773,14955621 -) -g1,2562:7579210,14955621 -g1,2562:8843793,14955621 -g1,2562:11372959,14955621 -g1,2562:13585979,14955621 -g1,2562:13902125,14955621 -h1,2562:15798999,14955621:0,0,0 -k1,2562:32583029,14955621:16784030 -g1,2562:32583029,14955621 -) -] -) -g1,2563:32583029,15063099 -g1,2563:6630773,15063099 -g1,2563:6630773,15063099 -g1,2563:32583029,15063099 -g1,2563:32583029,15063099 -) -h1,2563:6630773,15259707:0,0,0 -(1,2567:6630773,16625483:25952256,513147,126483 -h1,2566:6630773,16625483:983040,0,0 -k1,2566:10072722,16625483:202504 -k1,2566:12433982,16625483:202504 -k1,2566:14869299,16625483:202505 -k1,2566:15731095,16625483:202504 -k1,2566:19238580,16625483:202504 -k1,2566:20432644,16625483:202504 -k1,2566:24246837,16625483:202504 -k1,2566:25396993,16625483:202505 -k1,2566:28260914,16625483:202504 -(1,2566:28260914,16625483:0,452978,115847 -r1,2624:31432874,16625483:3171960,568825,115847 -k1,2566:28260914,16625483:-3171960 -) -(1,2566:28260914,16625483:3171960,452978,115847 -k1,2566:28260914,16625483:3277 -h1,2566:31429597,16625483:0,411205,112570 -) -k1,2566:31635378,16625483:202504 -k1,2566:32583029,16625483:0 -) -(1,2567:6630773,17466971:25952256,505283,134348 -k1,2566:8674781,17466971:287643 -k1,2566:10329506,17466971:287644 -k1,2566:13909022,17466971:287643 -k1,2566:17501646,17466971:287643 -k1,2566:20906182,17466971:287644 -k1,2566:21845253,17466971:287643 -k1,2566:23151982,17466971:287644 -k1,2566:25783848,17466971:287643 -k1,2566:28086723,17466971:287643 -k1,2566:29002202,17466971:287644 -k1,2566:30308930,17466971:287643 -k1,2566:32583029,17466971:0 -) -(1,2567:6630773,18308459:25952256,505283,126483 -k1,2566:10345352,18308459:274594 -k1,2566:11235984,18308459:274594 -k1,2566:12529663,18308459:274594 -k1,2566:15465673,18308459:274593 -k1,2566:17782369,18308459:274594 -(1,2566:17782369,18308459:0,452978,115847 -r1,2624:20954329,18308459:3171960,568825,115847 -k1,2566:17782369,18308459:-3171960 -) -(1,2566:17782369,18308459:3171960,452978,115847 -k1,2566:17782369,18308459:3277 -h1,2566:20951052,18308459:0,411205,112570 -) -k1,2566:21228923,18308459:274594 -k1,2566:24132166,18308459:274594 -k1,2566:25782361,18308459:274594 -(1,2566:25782361,18308459:0,414482,115847 -r1,2624:26844050,18308459:1061689,530329,115847 -k1,2566:25782361,18308459:-1061689 -) -(1,2566:25782361,18308459:1061689,414482,115847 -k1,2566:25782361,18308459:3277 -h1,2566:26840773,18308459:0,411205,112570 -) -k1,2566:27292314,18308459:274594 -k1,2566:28983795,18308459:274593 -k1,2566:30126741,18308459:274594 -k1,2566:31931601,18308459:274594 -k1,2566:32583029,18308459:0 -) -(1,2567:6630773,19149947:25952256,505283,126483 -k1,2566:8407691,19149947:268935 -k1,2566:9695711,19149947:268935 -k1,2566:11666617,19149947:268936 -k1,2566:14076613,19149947:268935 -k1,2566:17224545,19149947:268935 -k1,2566:19268195,19149947:268935 -(1,2566:19268195,19149947:0,414482,115847 -r1,2624:20329884,19149947:1061689,530329,115847 -k1,2566:19268195,19149947:-1061689 -) -(1,2566:19268195,19149947:1061689,414482,115847 -k1,2566:19268195,19149947:3277 -h1,2566:20326607,19149947:0,411205,112570 -) -k1,2566:20598819,19149947:268935 -k1,2566:23535725,19149947:268935 -k1,2566:25180262,19149947:268936 -k1,2566:26468282,19149947:268935 -k1,2566:30377087,19149947:268935 -k1,2567:32583029,19149947:0 -) -(1,2567:6630773,19991435:25952256,513147,126483 -(1,2566:6630773,19991435:0,452978,115847 -r1,2624:9802733,19991435:3171960,568825,115847 -k1,2566:6630773,19991435:-3171960 -) -(1,2566:6630773,19991435:3171960,452978,115847 -k1,2566:6630773,19991435:3277 -h1,2566:9799456,19991435:0,411205,112570 -) -k1,2566:9981481,19991435:178748 -k1,2566:11653140,19991435:178749 -k1,2566:14169557,19991435:178748 -k1,2566:17575298,19991435:178748 -k1,2566:21059028,19991435:178749 -k1,2566:22731342,19991435:178748 -k1,2566:23596253,19991435:178749 -k1,2566:24343853,19991435:178748 -k1,2566:25091453,19991435:178748 -k1,2566:25953087,19991435:178749 -k1,2566:26527017,19991435:178748 -k1,2566:27171726,19991435:178748 -k1,2566:28730663,19991435:178749 -k1,2566:29900971,19991435:178748 -k1,2566:30695758,19991435:178749 -k1,2566:31966991,19991435:178748 -k1,2566:32583029,19991435:0 -) -(1,2567:6630773,20832923:25952256,513147,126483 -g1,2566:7849087,20832923 -g1,2566:10392539,20832923 -g1,2566:12607000,20832923 -g1,2566:13434064,20832923 -g1,2566:14652378,20832923 -g1,2566:16218688,20832923 -g1,2566:17085073,20832923 -(1,2566:17085073,20832923:0,452978,122846 -r1,2624:20257033,20832923:3171960,575824,122846 -k1,2566:17085073,20832923:-3171960 -) -(1,2566:17085073,20832923:3171960,452978,122846 -k1,2566:17085073,20832923:3277 -h1,2566:20253756,20832923:0,411205,112570 -) -g1,2566:20456262,20832923 -g1,2566:21846936,20832923 -(1,2566:21846936,20832923:0,435480,115847 -r1,2624:22908625,20832923:1061689,551327,115847 -k1,2566:21846936,20832923:-1061689 -) -(1,2566:21846936,20832923:1061689,435480,115847 -k1,2566:21846936,20832923:3277 -h1,2566:22905348,20832923:0,411205,112570 -) -g1,2566:23281524,20832923 -g1,2566:24860941,20832923 -g1,2566:26051730,20832923 -k1,2567:32583029,20832923:3052648 -g1,2567:32583029,20832923 -) -v1,2569:6630773,22023389:0,393216,0 -(1,2578:6630773,24343311:25952256,2713138,196608 -g1,2578:6630773,24343311 -g1,2578:6630773,24343311 -g1,2578:6434165,24343311 -(1,2578:6434165,24343311:0,2713138,196608 -r1,2624:32779637,24343311:26345472,2909746,196608 -k1,2578:6434165,24343311:-26345472 -) -(1,2578:6434165,24343311:26345472,2713138,196608 -[1,2578:6630773,24343311:25952256,2516530,0 -(1,2571:6630773,22237299:25952256,410518,107478 -(1,2570:6630773,22237299:0,0,0 -g1,2570:6630773,22237299 -g1,2570:6630773,22237299 -g1,2570:6303093,22237299 -(1,2570:6303093,22237299:0,0,0 -) -g1,2570:6630773,22237299 -) -k1,2571:6630773,22237299:0 -g1,2571:10740668,22237299 -g1,2571:11372960,22237299 -k1,2571:11372960,22237299:0 -h1,2571:21173476,22237299:0,0,0 -k1,2571:32583029,22237299:11409553 -g1,2571:32583029,22237299 -) -(1,2572:6630773,22903477:25952256,404226,107478 -h1,2572:6630773,22903477:0,0,0 -g1,2572:6946919,22903477 -g1,2572:7263065,22903477 -g1,2572:7579211,22903477 -g1,2572:7895357,22903477 -g1,2572:8211503,22903477 -g1,2572:12005251,22903477 -g1,2572:12637543,22903477 -g1,2572:14534417,22903477 -g1,2572:16115146,22903477 -k1,2572:16115146,22903477:0 -h1,2572:17695875,22903477:0,0,0 -k1,2572:32583029,22903477:14887154 -g1,2572:32583029,22903477 -) -(1,2573:6630773,23569655:25952256,404226,82312 -h1,2573:6630773,23569655:0,0,0 -g1,2573:6946919,23569655 -g1,2573:7263065,23569655 -g1,2573:7579211,23569655 -g1,2573:7895357,23569655 -g1,2573:8211503,23569655 -g1,2573:8843795,23569655 -g1,2573:9476087,23569655 -g1,2573:12953691,23569655 -g1,2573:15799003,23569655 -h1,2573:18960459,23569655:0,0,0 -k1,2573:32583029,23569655:13622570 -g1,2573:32583029,23569655 -) -(1,2577:6630773,24235833:25952256,404226,107478 -(1,2575:6630773,24235833:0,0,0 -g1,2575:6630773,24235833 -g1,2575:6630773,24235833 -g1,2575:6303093,24235833 -(1,2575:6303093,24235833:0,0,0 -) -g1,2575:6630773,24235833 -) -g1,2577:7579210,24235833 -g1,2577:8843793,24235833 -g1,2577:11372959,24235833 -g1,2577:11689105,24235833 -g1,2577:12005251,24235833 -g1,2577:12321397,24235833 -g1,2577:12637543,24235833 -g1,2577:12953689,24235833 -g1,2577:13269835,24235833 -g1,2577:15166709,24235833 -g1,2577:16747438,24235833 -g1,2577:17695875,24235833 -g1,2577:19592749,24235833 -g1,2577:21173478,24235833 -h1,2577:21805769,24235833:0,0,0 -k1,2577:32583029,24235833:10777260 -g1,2577:32583029,24235833 -) -] -) -g1,2578:32583029,24343311 -g1,2578:6630773,24343311 -g1,2578:6630773,24343311 -g1,2578:32583029,24343311 -g1,2578:32583029,24343311 -) -h1,2578:6630773,24539919:0,0,0 -(1,2582:6630773,25905695:25952256,513147,134348 -h1,2581:6630773,25905695:983040,0,0 -k1,2581:9303238,25905695:210277 -k1,2581:13367687,25905695:210277 -k1,2581:14446316,25905695:210277 -k1,2581:15760874,25905695:210276 -k1,2581:18062405,25905695:210277 -k1,2581:19594543,25905695:210277 -k1,2581:20464112,25905695:210277 -k1,2581:21693474,25905695:210277 -k1,2581:24652986,25905695:210277 -k1,2581:26729073,25905695:210277 -k1,2581:28130794,25905695:210276 -k1,2581:30069255,25905695:210277 -k1,2581:30737629,25905695:210277 -k1,2581:31563944,25905695:210277 -k1,2581:32583029,25905695:0 -) -(1,2582:6630773,26747183:25952256,513147,126483 -k1,2581:10852111,26747183:283935 -k1,2581:12529997,26747183:283935 -k1,2581:13169791,26747183:283934 -k1,2581:16073855,26747183:283935 -k1,2581:21206144,26747183:283935 -k1,2581:22382024,26747183:283935 -k1,2581:23317386,26747183:283934 -k1,2581:23957181,26747183:283935 -k1,2581:27437962,26747183:283935 -k1,2581:28381189,26747183:283935 -k1,2581:30043345,26747183:283934 -k1,2581:31923737,26747183:283935 -k1,2581:32583029,26747183:0 -) -(1,2582:6630773,27588671:25952256,505283,126483 -g1,2581:10684174,27588671 -g1,2581:11987685,27588671 -g1,2581:12934680,27588671 -k1,2582:32583029,27588671:17961452 -g1,2582:32583029,27588671 -) -v1,2584:6630773,28779137:0,393216,0 -(1,2593:6630773,31099059:25952256,2713138,196608 -g1,2593:6630773,31099059 -g1,2593:6630773,31099059 -g1,2593:6434165,31099059 -(1,2593:6434165,31099059:0,2713138,196608 -r1,2624:32779637,31099059:26345472,2909746,196608 -k1,2593:6434165,31099059:-26345472 -) -(1,2593:6434165,31099059:26345472,2713138,196608 -[1,2593:6630773,31099059:25952256,2516530,0 -(1,2586:6630773,28993047:25952256,410518,107478 -(1,2585:6630773,28993047:0,0,0 -g1,2585:6630773,28993047 -g1,2585:6630773,28993047 -g1,2585:6303093,28993047 -(1,2585:6303093,28993047:0,0,0 -) -g1,2585:6630773,28993047 -) -k1,2586:6630773,28993047:0 -g1,2586:10740668,28993047 -g1,2586:11372960,28993047 -k1,2586:11372960,28993047:0 -h1,2586:17379728,28993047:0,0,0 -k1,2586:32583029,28993047:15203301 -g1,2586:32583029,28993047 -) -(1,2587:6630773,29659225:25952256,404226,107478 -h1,2587:6630773,29659225:0,0,0 -g1,2587:6946919,29659225 -g1,2587:7263065,29659225 -g1,2587:7579211,29659225 -g1,2587:7895357,29659225 -g1,2587:8211503,29659225 -g1,2587:12005251,29659225 -g1,2587:12637543,29659225 -g1,2587:14534417,29659225 -g1,2587:16115146,29659225 -k1,2587:16115146,29659225:0 -h1,2587:17695875,29659225:0,0,0 -k1,2587:32583029,29659225:14887154 -g1,2587:32583029,29659225 -) -(1,2588:6630773,30325403:25952256,404226,82312 -h1,2588:6630773,30325403:0,0,0 -g1,2588:6946919,30325403 -g1,2588:7263065,30325403 -g1,2588:7579211,30325403 -g1,2588:7895357,30325403 -g1,2588:8211503,30325403 -g1,2588:8843795,30325403 -g1,2588:9476087,30325403 -g1,2588:12953691,30325403 -g1,2588:15799003,30325403 -h1,2588:18960459,30325403:0,0,0 -k1,2588:32583029,30325403:13622570 -g1,2588:32583029,30325403 -) -(1,2592:6630773,30991581:25952256,404226,107478 -(1,2590:6630773,30991581:0,0,0 -g1,2590:6630773,30991581 -g1,2590:6630773,30991581 -g1,2590:6303093,30991581 -(1,2590:6303093,30991581:0,0,0 -) -g1,2590:6630773,30991581 -) -g1,2592:7579210,30991581 -g1,2592:8843793,30991581 -g1,2592:11372959,30991581 -g1,2592:11689105,30991581 -g1,2592:12005251,30991581 -g1,2592:12321397,30991581 -g1,2592:12637543,30991581 -g1,2592:12953689,30991581 -g1,2592:13269835,30991581 -g1,2592:15166709,30991581 -g1,2592:16747438,30991581 -g1,2592:17695875,30991581 -g1,2592:19592749,30991581 -g1,2592:21173478,30991581 -h1,2592:21805769,30991581:0,0,0 -k1,2592:32583029,30991581:10777260 -g1,2592:32583029,30991581 -) -] -) -g1,2593:32583029,31099059 -g1,2593:6630773,31099059 -g1,2593:6630773,31099059 -g1,2593:32583029,31099059 -g1,2593:32583029,31099059 -) -h1,2593:6630773,31295667:0,0,0 -v1,2597:6630773,33185731:0,393216,0 -(1,2611:6630773,39998231:25952256,7205716,0 -g1,2611:6630773,39998231 -g1,2611:6303093,39998231 -r1,2624:6401397,39998231:98304,7205716,0 -g1,2611:6600626,39998231 -g1,2611:6797234,39998231 -[1,2611:6797234,39998231:25785795,7205716,0 -(1,2598:6797234,33618269:25785795,825754,196608 -(1,2597:6797234,33618269:0,825754,196608 -r1,2624:7890375,33618269:1093141,1022362,196608 -k1,2597:6797234,33618269:-1093141 -) -(1,2597:6797234,33618269:1093141,825754,196608 -) -k1,2597:8164494,33618269:274119 -k1,2597:9890712,33618269:327680 -k1,2597:11439506,33618269:274119 -k1,2597:12732710,33618269:274119 -k1,2597:14179268,33618269:274119 -k1,2597:17970049,33618269:274119 -k1,2597:20286271,33618269:274120 -k1,2597:22344280,33618269:274119 -k1,2597:23637484,33618269:274119 -k1,2597:26690330,33618269:274119 -k1,2597:28975094,33618269:274119 -k1,2597:30010741,33618269:274119 -k1,2597:32583029,33618269:0 -) -(1,2598:6797234,34459757:25785795,513147,126483 -g1,2597:10152677,34459757 -g1,2597:11011198,34459757 -g1,2597:12229512,34459757 -g1,2597:15099988,34459757 -g1,2597:16490662,34459757 -g1,2597:19000035,34459757 -g1,2597:20496222,34459757 -g1,2597:21714536,34459757 -g1,2597:24692492,34459757 -g1,2597:26902366,34459757 -k1,2598:32583029,34459757:3763735 -g1,2598:32583029,34459757 -) -v1,2600:6797234,35650223:0,393216,0 -(1,2609:6797234,39277335:25785795,4020328,196608 -g1,2609:6797234,39277335 -g1,2609:6797234,39277335 -g1,2609:6600626,39277335 -(1,2609:6600626,39277335:0,4020328,196608 -r1,2624:32779637,39277335:26179011,4216936,196608 -k1,2609:6600625,39277335:-26179012 -) -(1,2609:6600626,39277335:26179011,4020328,196608 -[1,2609:6797234,39277335:25785795,3823720,0 -(1,2602:6797234,35864133:25785795,410518,107478 -(1,2601:6797234,35864133:0,0,0 -g1,2601:6797234,35864133 -g1,2601:6797234,35864133 -g1,2601:6469554,35864133 -(1,2601:6469554,35864133:0,0,0 -) -g1,2601:6797234,35864133 -) -k1,2602:6797234,35864133:0 -g1,2602:10907129,35864133 -g1,2602:11539421,35864133 -k1,2602:11539421,35864133:0 -h1,2602:13752441,35864133:0,0,0 -k1,2602:32583029,35864133:18830588 -g1,2602:32583029,35864133 -) -(1,2603:6797234,36530311:25785795,404226,101187 -h1,2603:6797234,36530311:0,0,0 -g1,2603:7113380,36530311 -g1,2603:7429526,36530311 -g1,2603:7745672,36530311 -g1,2603:8061818,36530311 -g1,2603:8377964,36530311 -g1,2603:12171712,36530311 -g1,2603:12804004,36530311 -k1,2603:12804004,36530311:0 -h1,2603:13752441,36530311:0,0,0 -k1,2603:32583029,36530311:18830588 -g1,2603:32583029,36530311 -) -(1,2604:6797234,37196489:25785795,404226,82312 -h1,2604:6797234,37196489:0,0,0 -g1,2604:7113380,37196489 -g1,2604:7429526,37196489 -g1,2604:7745672,37196489 -g1,2604:8061818,37196489 -g1,2604:8377964,37196489 -g1,2604:9010256,37196489 -g1,2604:9642548,37196489 -g1,2604:13120152,37196489 -g1,2604:15965464,37196489 -h1,2604:19126920,37196489:0,0,0 -k1,2604:32583029,37196489:13456109 -g1,2604:32583029,37196489 -) -(1,2605:6797234,37862667:25785795,410518,107478 -h1,2605:6797234,37862667:0,0,0 -g1,2605:10907129,37862667 -g1,2605:11539421,37862667 -k1,2605:11539421,37862667:0 -h1,2605:13752441,37862667:0,0,0 -k1,2605:32583029,37862667:18830588 -g1,2605:32583029,37862667 -) -(1,2606:6797234,38528845:25785795,404226,101187 -h1,2606:6797234,38528845:0,0,0 -g1,2606:7113380,38528845 -g1,2606:7429526,38528845 -g1,2606:7745672,38528845 -g1,2606:8061818,38528845 -g1,2606:8377964,38528845 -g1,2606:12171712,38528845 -g1,2606:12804004,38528845 -k1,2606:12804004,38528845:0 -h1,2606:13752441,38528845:0,0,0 -k1,2606:32583029,38528845:18830588 -g1,2606:32583029,38528845 -) -(1,2607:6797234,39195023:25785795,404226,82312 -h1,2607:6797234,39195023:0,0,0 -g1,2607:7113380,39195023 -g1,2607:7429526,39195023 -g1,2607:7745672,39195023 -g1,2607:8061818,39195023 -g1,2607:8377964,39195023 -g1,2607:9010256,39195023 -g1,2607:9642548,39195023 -g1,2607:13120152,39195023 -g1,2607:15965464,39195023 -h1,2607:19126920,39195023:0,0,0 -k1,2607:32583029,39195023:13456109 -g1,2607:32583029,39195023 -) -] -) -g1,2609:32583029,39277335 -g1,2609:6797234,39277335 -g1,2609:6797234,39277335 -g1,2609:32583029,39277335 -g1,2609:32583029,39277335 -) -h1,2609:6797234,39473943:0,0,0 -] -g1,2611:32583029,39998231 -) -h1,2611:6630773,39998231:0,0,0 -(1,2614:6630773,41364007:25952256,513147,134348 -h1,2613:6630773,41364007:983040,0,0 -k1,2613:10552031,41364007:251897 -k1,2613:11463219,41364007:251896 -k1,2613:14689795,41364007:251897 -k1,2613:17137802,41364007:251896 -k1,2613:19244368,41364007:251897 -k1,2613:20305634,41364007:251896 -k1,2613:22898477,41364007:251897 -k1,2613:26121775,41364007:251896 -k1,2613:26905169,41364007:251897 -k1,2613:27512926,41364007:251897 -k1,2613:31069803,41364007:251896 -k1,2613:32583029,41364007:0 -) -(1,2614:6630773,42205495:25952256,513147,134348 -k1,2613:10062602,42205495:183865 -k1,2613:11662700,42205495:183865 -k1,2613:14990982,42205495:183865 -k1,2613:17019030,42205495:183865 -k1,2613:20564891,42205495:183864 -k1,2613:24555742,42205495:183865 -k1,2613:26562163,42205495:183865 -k1,2613:27918467,42205495:183865 -k1,2613:30864675,42205495:183865 -k1,2614:32583029,42205495:0 -) -(1,2614:6630773,43046983:25952256,513147,126483 -k1,2613:8444099,43046983:174271 -k1,2613:10842662,43046983:174271 -k1,2613:12547199,43046983:174271 -k1,2613:13372898,43046983:174271 -k1,2613:14294935,43046983:174271 -k1,2613:15883473,43046983:174271 -k1,2613:17325210,43046983:174271 -k1,2613:19008120,43046983:174271 -k1,2613:23109964,43046983:174271 -k1,2613:25326992,43046983:174271 -k1,2613:26890626,43046983:174271 -k1,2613:29793161,43046983:174271 -k1,2614:32583029,43046983:0 -) -(1,2614:6630773,43888471:25952256,513147,126483 -(1,2613:6630773,43888471:0,452978,115847 -r1,2624:10154445,43888471:3523672,568825,115847 -k1,2613:6630773,43888471:-3523672 -) -(1,2613:6630773,43888471:3523672,452978,115847 -k1,2613:6630773,43888471:3277 -h1,2613:10151168,43888471:0,411205,112570 -) -k1,2613:10381761,43888471:227316 -k1,2613:11710082,43888471:227316 -k1,2613:12708102,43888471:227317 -k1,2613:15745602,43888471:227316 -k1,2613:19253650,43888471:227316 -k1,2613:20874917,43888471:227316 -(1,2613:20874917,43888471:0,452978,122846 -r1,2624:22991742,43888471:2116825,575824,122846 -k1,2613:20874917,43888471:-2116825 -) -(1,2613:20874917,43888471:2116825,452978,122846 -k1,2613:20874917,43888471:3277 -h1,2613:22988465,43888471:0,411205,112570 -) -k1,2613:23392728,43888471:227316 -k1,2613:24247879,43888471:227316 -k1,2613:25494281,43888471:227317 -k1,2613:28713316,43888471:227316 -k1,2613:29808984,43888471:227316 -k1,2613:31168762,43888471:227316 -k1,2613:32583029,43888471:0 -) -(1,2614:6630773,44729959:25952256,513147,134348 -g1,2613:9026113,44729959 -g1,2613:12587339,44729959 -g1,2613:14167412,44729959 -g1,2613:15558086,44729959 -g1,2613:17182723,44729959 -g1,2613:18041244,44729959 -g1,2613:19378178,44729959 -g1,2613:23384393,44729959 -g1,2613:24199660,44729959 -g1,2613:27161232,44729959 -k1,2614:32583029,44729959:3679850 -g1,2614:32583029,44729959 -) -v1,2616:6630773,45920425:0,393216,0 -] -(1,2624:32583029,45706769:0,0,0 -g1,2624:32583029,45706769 -) -) -] -(1,2624:6630773,47279633:25952256,0,0 -h1,2624:6630773,47279633:25952256,0,0 -) -] -(1,2624:4262630,4025873:0,0,0 -[1,2624:-473656,4025873:0,0,0 -(1,2624:-473656,-710413:0,0,0 -(1,2624:-473656,-710413:0,0,0 -g1,2624:-473656,-710413 -) -g1,2624:-473656,-710413 -) -] -) -] -!27147 -}62 -Input:540:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:541:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:542:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:543:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:544:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!476 -{63 -[1,2686:4262630,47279633:28320399,43253760,0 -(1,2686:4262630,4025873:0,0,0 -[1,2686:-473656,4025873:0,0,0 -(1,2686:-473656,-710413:0,0,0 -(1,2686:-473656,-644877:0,0,0 -k1,2686:-473656,-644877:-65536 -) -(1,2686:-473656,4736287:0,0,0 -k1,2686:-473656,4736287:5209943 -) -g1,2686:-473656,-710413 -) -] -) -[1,2686:6630773,47279633:25952256,43253760,0 -[1,2686:6630773,4812305:25952256,786432,0 -(1,2686:6630773,4812305:25952256,505283,11795 -(1,2686:6630773,4812305:25952256,505283,11795 -g1,2686:3078558,4812305 -[1,2686:3078558,4812305:0,0,0 -(1,2686:3078558,2439708:0,1703936,0 -k1,2686:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,2686:2537886,2439708:1179648,16384,0 -) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,2686:3078558,1915420:16384,1179648,0 -) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 -) -] -) -) -) -] -[1,2686:3078558,4812305:0,0,0 -(1,2686:3078558,2439708:0,1703936,0 -g1,2686:29030814,2439708 -g1,2686:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,2686:36151628,1915420:16384,1179648,0 -) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 -) -] -) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,2686:37855564,2439708:1179648,16384,0 -) -) -k1,2686:3078556,2439708:-34777008 -) -] -[1,2686:3078558,4812305:0,0,0 -(1,2686:3078558,49800853:0,16384,2228224 -k1,2686:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,2686:2537886,49800853:1179648,16384,0 -) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,2686:3078558,51504789:16384,1179648,0 -) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 -) -] -) -) -) -] -[1,2686:3078558,4812305:0,0,0 -(1,2686:3078558,49800853:0,16384,2228224 -g1,2686:29030814,49800853 -g1,2686:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,2686:36151628,51504789:16384,1179648,0 -) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 -) -] -) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,2686:37855564,49800853:1179648,16384,0 -) -) -k1,2686:3078556,49800853:-34777008 -) -] -g1,2686:6630773,4812305 -k1,2686:22348274,4812305:14920583 -g1,2686:23970945,4812305 -g1,2686:24793421,4812305 -g1,2686:27528893,4812305 -g1,2686:28938572,4812305 -) -) -] -[1,2686:6630773,45706769:25952256,40108032,0 -(1,2686:6630773,45706769:25952256,40108032,0 -(1,2686:6630773,45706769:0,0,0 -g1,2686:6630773,45706769 -) -[1,2686:6630773,45706769:25952256,40108032,0 -v1,2624:6630773,6254097:0,393216,0 -(1,2624:6630773,7870092:25952256,2009211,196608 -g1,2624:6630773,7870092 -g1,2624:6630773,7870092 -g1,2624:6434165,7870092 -(1,2624:6434165,7870092:0,2009211,196608 -r1,2686:32779637,7870092:26345472,2205819,196608 -k1,2624:6434165,7870092:-26345472 -) -(1,2624:6434165,7870092:26345472,2009211,196608 -[1,2624:6630773,7870092:25952256,1812603,0 -(1,2618:6630773,6461715:25952256,404226,101187 -(1,2617:6630773,6461715:0,0,0 -g1,2617:6630773,6461715 -g1,2617:6630773,6461715 -g1,2617:6303093,6461715 -(1,2617:6303093,6461715:0,0,0 -) -g1,2617:6630773,6461715 -) -k1,2618:6630773,6461715:0 -g1,2618:10108376,6461715 -g1,2618:10740668,6461715 -g1,2618:14534416,6461715 -g1,2618:17063582,6461715 -g1,2618:18960456,6461715 -g1,2618:19592748,6461715 -g1,2618:20225040,6461715 -h1,2618:20857332,6461715:0,0,0 -k1,2618:32583029,6461715:11725697 -g1,2618:32583029,6461715 -) -(1,2623:6630773,7127893:25952256,404226,76021 -(1,2620:6630773,7127893:0,0,0 -g1,2620:6630773,7127893 -g1,2620:6630773,7127893 -g1,2620:6303093,7127893 -(1,2620:6303093,7127893:0,0,0 -) -g1,2620:6630773,7127893 -) -g1,2623:7579210,7127893 -h1,2623:9159938,7127893:0,0,0 -k1,2623:32583030,7127893:23423092 -g1,2623:32583030,7127893 -) -(1,2623:6630773,7794071:25952256,404226,76021 -h1,2623:6630773,7794071:0,0,0 -g1,2623:7579210,7794071 -g1,2623:8843793,7794071 -g1,2623:12953687,7794071 -h1,2623:15166707,7794071:0,0,0 -k1,2623:32583029,7794071:17416322 -g1,2623:32583029,7794071 -) -] -) -g1,2624:32583029,7870092 -g1,2624:6630773,7870092 -g1,2624:6630773,7870092 -g1,2624:32583029,7870092 -g1,2624:32583029,7870092 -) -h1,2624:6630773,8066700:0,0,0 -(1,2628:6630773,9432476:25952256,505283,134348 -h1,2627:6630773,9432476:983040,0,0 -k1,2627:9544110,9432476:138543 -k1,2627:10038513,9432476:138543 -k1,2627:12301733,9432476:138543 -k1,2627:14714375,9432476:138543 -k1,2627:18292903,9432476:138543 -k1,2627:19299799,9432476:138544 -k1,2627:20542624,9432476:138543 -k1,2627:22885143,9432476:138543 -k1,2627:26216600,9432476:138543 -k1,2627:28551254,9432476:138543 -k1,2627:32583029,9432476:0 -) -(1,2628:6630773,10273964:25952256,505283,7863 -g1,2627:7849087,10273964 -k1,2628:32583029,10273964:21744190 -g1,2628:32583029,10273964 -) -v1,2630:6630773,11464430:0,393216,0 -(1,2638:6630773,13080425:25952256,2009211,196608 -g1,2638:6630773,13080425 -g1,2638:6630773,13080425 -g1,2638:6434165,13080425 -(1,2638:6434165,13080425:0,2009211,196608 -r1,2686:32779637,13080425:26345472,2205819,196608 -k1,2638:6434165,13080425:-26345472 -) -(1,2638:6434165,13080425:26345472,2009211,196608 -[1,2638:6630773,13080425:25952256,1812603,0 -(1,2632:6630773,11672048:25952256,404226,101187 -(1,2631:6630773,11672048:0,0,0 -g1,2631:6630773,11672048 -g1,2631:6630773,11672048 -g1,2631:6303093,11672048 -(1,2631:6303093,11672048:0,0,0 -) -g1,2631:6630773,11672048 -) -k1,2632:6630773,11672048:0 -g1,2632:10108376,11672048 -g1,2632:10740668,11672048 -g1,2632:14534416,11672048 -g1,2632:17063582,11672048 -g1,2632:18960456,11672048 -g1,2632:19592748,11672048 -g1,2632:20225040,11672048 -k1,2632:20225040,11672048:0 -h1,2632:22121915,11672048:0,0,0 -k1,2632:32583029,11672048:10461114 -g1,2632:32583029,11672048 -) -(1,2637:6630773,12338226:25952256,404226,76021 -(1,2634:6630773,12338226:0,0,0 -g1,2634:6630773,12338226 -g1,2634:6630773,12338226 -g1,2634:6303093,12338226 -(1,2634:6303093,12338226:0,0,0 -) -g1,2634:6630773,12338226 -) -g1,2637:7579210,12338226 -h1,2637:9159938,12338226:0,0,0 -k1,2637:32583030,12338226:23423092 -g1,2637:32583030,12338226 -) -(1,2637:6630773,13004404:25952256,404226,76021 -h1,2637:6630773,13004404:0,0,0 -g1,2637:7579210,13004404 -g1,2637:8843793,13004404 -g1,2637:11056813,13004404 -g1,2637:12637542,13004404 -g1,2637:12953688,13004404 -g1,2637:13269834,13004404 -g1,2637:14850563,13004404 -g1,2637:15166709,13004404 -g1,2637:15482855,13004404 -g1,2637:17063584,13004404 -g1,2637:17379730,13004404 -g1,2637:17695876,13004404 -h1,2637:18960459,13004404:0,0,0 -k1,2637:32583029,13004404:13622570 -g1,2637:32583029,13004404 -) -] -) -g1,2638:32583029,13080425 -g1,2638:6630773,13080425 -g1,2638:6630773,13080425 -g1,2638:32583029,13080425 -g1,2638:32583029,13080425 -) -h1,2638:6630773,13277033:0,0,0 -(1,2642:6630773,14642809:25952256,513147,134348 -h1,2641:6630773,14642809:983040,0,0 -k1,2641:8998722,14642809:188222 -k1,2641:12259272,14642809:188222 -k1,2641:13098922,14642809:188222 -(1,2641:13098922,14642809:0,452978,115847 -r1,2686:14864035,14642809:1765113,568825,115847 -k1,2641:13098922,14642809:-1765113 -) -(1,2641:13098922,14642809:1765113,452978,115847 -k1,2641:13098922,14642809:3277 -h1,2641:14860758,14642809:0,411205,112570 -) -k1,2641:15052257,14642809:188222 -k1,2641:15771976,14642809:188222 -k1,2641:16721726,14642809:188222 -k1,2641:19175528,14642809:188222 -k1,2641:22953812,14642809:188222 -k1,2641:23828196,14642809:188222 -k1,2641:24372278,14642809:188222 -k1,2641:26834599,14642809:188222 -k1,2641:30636476,14642809:188222 -k1,2641:31896867,14642809:188222 -k1,2641:32583029,14642809:0 -) -(1,2642:6630773,15484297:25952256,505283,126483 -g1,2641:9959346,15484297 -g1,2641:12013899,15484297 -g1,2641:13081480,15484297 -g1,2641:14384991,15484297 -g1,2641:16021425,15484297 -(1,2641:16021425,15484297:0,459977,115847 -r1,2686:20248521,15484297:4227096,575824,115847 -k1,2641:16021425,15484297:-4227096 -) -(1,2641:16021425,15484297:4227096,459977,115847 -g1,2641:18134973,15484297 -g1,2641:18838397,15484297 -h1,2641:20245244,15484297:0,411205,112570 -) -g1,2641:20447750,15484297 -g1,2641:21298407,15484297 -g1,2641:23930332,15484297 -k1,2642:32583029,15484297:7275786 -g1,2642:32583029,15484297 -) -v1,2644:6630773,16850073:0,393216,0 -(1,2658:6630773,22487282:25952256,6030425,0 -g1,2658:6630773,22487282 -g1,2658:6303093,22487282 -r1,2686:6401397,22487282:98304,6030425,0 -g1,2658:6600626,22487282 -g1,2658:6797234,22487282 -[1,2658:6797234,22487282:25785795,6030425,0 -(1,2645:6797234,17270657:25785795,813800,267386 -(1,2644:6797234,17270657:0,813800,267386 -r1,2686:8134168,17270657:1336934,1081186,267386 -k1,2644:6797234,17270657:-1336934 -) -(1,2644:6797234,17270657:1336934,813800,267386 -) -k1,2644:8310583,17270657:176415 -k1,2644:8638263,17270657:327680 -k1,2644:10086076,17270657:176415 -k1,2644:12123057,17270657:176414 -k1,2644:12950900,17270657:176415 -k1,2644:13875081,17270657:176415 -k1,2644:15919927,17270657:176415 -k1,2644:17380848,17270657:176415 -k1,2644:18576347,17270657:176414 -k1,2644:20074623,17270657:176415 -k1,2644:20910330,17270657:176415 -k1,2644:22105830,17270657:176415 -k1,2644:24148055,17270657:176415 -k1,2644:27073705,17270657:176415 -k1,2644:28011647,17270657:176414 -k1,2644:29207147,17270657:176415 -k1,2644:31657661,17270657:176415 -k1,2645:32583029,17270657:0 -) -(1,2645:6797234,18112145:25785795,513147,134348 -k1,2644:9686224,18112145:161382 -k1,2644:10379104,18112145:161383 -k1,2644:11606757,18112145:161382 -k1,2644:14526550,18112145:161383 -k1,2644:15303970,18112145:161382 -k1,2644:16484437,18112145:161382 -k1,2644:19424547,18112145:161383 -k1,2644:22067777,18112145:161382 -k1,2644:22706917,18112145:161383 -k1,2644:23887384,18112145:161382 -k1,2644:26322866,18112145:161383 -k1,2644:29924233,18112145:161382 -k1,2644:32583029,18112145:0 -) -(1,2645:6797234,18953633:25785795,505283,134348 -g1,2644:8646660,18953633 -g1,2644:10288336,18953633 -g1,2644:12036181,18953633 -g1,2644:13103762,18953633 -g1,2644:16033876,18953633 -g1,2644:16588965,18953633 -g1,2644:20000113,18953633 -g1,2644:21218427,18953633 -g1,2644:24196383,18953633 -g1,2644:26406257,18953633 -g1,2644:27942420,18953633 -g1,2644:28889415,18953633 -k1,2645:32583029,18953633:255595 -g1,2645:32583029,18953633 -) -v1,2647:6797234,20144099:0,393216,0 -(1,2655:6797234,21766386:25785795,2015503,196608 -g1,2655:6797234,21766386 -g1,2655:6797234,21766386 -g1,2655:6600626,21766386 -(1,2655:6600626,21766386:0,2015503,196608 -r1,2686:32779637,21766386:26179011,2212111,196608 -k1,2655:6600625,21766386:-26179012 -) -(1,2655:6600626,21766386:26179011,2015503,196608 -[1,2655:6797234,21766386:25785795,1818895,0 -(1,2649:6797234,20358009:25785795,410518,101187 -(1,2648:6797234,20358009:0,0,0 -g1,2648:6797234,20358009 -g1,2648:6797234,20358009 -g1,2648:6469554,20358009 -(1,2648:6469554,20358009:0,0,0 -) -g1,2648:6797234,20358009 -) -k1,2649:6797234,20358009:0 -g1,2649:10274837,20358009 -g1,2649:10907129,20358009 -g1,2649:15333169,20358009 -g1,2649:17230043,20358009 -g1,2649:17862335,20358009 -k1,2649:17862335,20358009:0 -h1,2649:21339938,20358009:0,0,0 -k1,2649:32583029,20358009:11243091 -g1,2649:32583029,20358009 -) -(1,2654:6797234,21024187:25785795,404226,76021 -(1,2651:6797234,21024187:0,0,0 -g1,2651:6797234,21024187 -g1,2651:6797234,21024187 -g1,2651:6469554,21024187 -(1,2651:6469554,21024187:0,0,0 -) -g1,2651:6797234,21024187 -) -g1,2654:7745671,21024187 -h1,2654:9326399,21024187:0,0,0 -k1,2654:32583029,21024187:23256630 -g1,2654:32583029,21024187 -) -(1,2654:6797234,21690365:25785795,404226,76021 -h1,2654:6797234,21690365:0,0,0 -g1,2654:7745671,21690365 -g1,2654:9010254,21690365 -k1,2654:9010254,21690365:0 -h1,2654:11855565,21690365:0,0,0 -k1,2654:32583029,21690365:20727464 -g1,2654:32583029,21690365 -) -] -) -g1,2655:32583029,21766386 -g1,2655:6797234,21766386 -g1,2655:6797234,21766386 -g1,2655:32583029,21766386 -g1,2655:32583029,21766386 -) -h1,2655:6797234,21962994:0,0,0 -] -g1,2658:32583029,22487282 -) -h1,2658:6630773,22487282:0,0,0 -v1,2661:6630773,23853058:0,393216,0 -(1,2678:6630773,33106974:25952256,9647132,0 -g1,2678:6630773,33106974 -g1,2678:6303093,33106974 -r1,2686:6401397,33106974:98304,9647132,0 -g1,2678:6600626,33106974 -g1,2678:6797234,33106974 -[1,2678:6797234,33106974:25785795,9647132,0 -(1,2662:6797234,24215131:25785795,755289,196608 -(1,2661:6797234,24215131:0,755289,196608 -r1,2686:8134168,24215131:1336934,951897,196608 -k1,2661:6797234,24215131:-1336934 -) -(1,2661:6797234,24215131:1336934,755289,196608 -) -k1,2661:8283371,24215131:149203 -k1,2661:8611051,24215131:327680 -k1,2661:10543490,24215131:149204 -k1,2661:11711778,24215131:149203 -k1,2661:14933309,24215131:149203 -k1,2661:17287800,24215131:149204 -k1,2661:18088431,24215131:149203 -(1,2661:18088431,24215131:0,414482,115847 -r1,2686:18446697,24215131:358266,530329,115847 -k1,2661:18088431,24215131:-358266 -) -(1,2661:18088431,24215131:358266,414482,115847 -k1,2661:18088431,24215131:3277 -h1,2661:18443420,24215131:0,411205,112570 -) -k1,2661:18595900,24215131:149203 -k1,2661:19276601,24215131:149204 -k1,2661:19781664,24215131:149203 -k1,2661:21908745,24215131:149204 -k1,2661:23451899,24215131:149203 -k1,2661:26272349,24215131:149203 -k1,2661:29044959,24215131:149204 -k1,2661:31563944,24215131:149203 -k1,2661:32583029,24215131:0 -) -(1,2662:6797234,25056619:25785795,513147,126483 -k1,2661:9778718,25056619:202757 -k1,2661:11661818,25056619:202757 -k1,2661:12396072,25056619:202757 -k1,2661:12954689,25056619:202757 -k1,2661:14150972,25056619:202757 -k1,2661:15020885,25056619:202757 -(1,2661:15020885,25056619:0,452978,115847 -r1,2686:18192845,25056619:3171960,568825,115847 -k1,2661:15020885,25056619:-3171960 -) -(1,2661:15020885,25056619:3171960,452978,115847 -k1,2661:15020885,25056619:3277 -h1,2661:18189568,25056619:0,411205,112570 -) -k1,2661:18395602,25056619:202757 -k1,2661:21080207,25056619:202757 -k1,2661:22663808,25056619:202757 -k1,2661:23860091,25056619:202757 -k1,2661:26764897,25056619:202757 -k1,2661:27653816,25056619:202757 -k1,2661:29608350,25056619:202757 -k1,2661:32583029,25056619:0 -) -(1,2662:6797234,25898107:25785795,505283,134348 -k1,2661:9263322,25898107:157910 -k1,2661:10107394,25898107:157910 -k1,2661:13219013,25898107:157911 -k1,2661:14568368,25898107:157910 -k1,2661:15745363,25898107:157910 -k1,2661:17881150,25898107:157910 -k1,2661:20244347,25898107:157910 -k1,2661:21088420,25898107:157911 -k1,2661:24318658,25898107:157910 -k1,2661:25127996,25898107:157910 -(1,2661:25127996,25898107:0,414482,115847 -r1,2686:25486262,25898107:358266,530329,115847 -k1,2661:25127996,25898107:-358266 -) -(1,2661:25127996,25898107:358266,414482,115847 -k1,2661:25127996,25898107:3277 -h1,2661:25482985,25898107:0,411205,112570 -) -k1,2661:25817842,25898107:157910 -k1,2661:27427375,25898107:157911 -k1,2661:29563162,25898107:157910 -k1,2661:30740157,25898107:157910 -k1,2661:32583029,25898107:0 -) -(1,2662:6797234,26739595:25785795,513147,134348 -k1,2661:7635346,26739595:178820 -k1,2661:10475582,26739595:178819 -k1,2661:11811112,26739595:178820 -k1,2661:14964611,26739595:178820 -k1,2661:17009240,26739595:178819 -k1,2661:17804098,26739595:178820 -k1,2661:19002002,26739595:178819 -k1,2661:21063016,26739595:178820 -k1,2661:22932665,26739595:178820 -k1,2661:24103044,26739595:178819 -k1,2661:27371887,26739595:178820 -k1,2661:28166745,26739595:178820 -k1,2661:30624251,26739595:178819 -h1,2661:31594839,26739595:0,0,0 -k1,2661:31773659,26739595:178820 -k1,2661:32583029,26739595:0 -) -(1,2662:6797234,27581083:25785795,505283,134348 -g1,2661:8494616,27581083 -h1,2661:9291534,27581083:0,0,0 -k1,2662:32583030,27581083:22910732 -g1,2662:32583030,27581083 -) -v1,2664:6797234,28771549:0,393216,0 -(1,2675:6797234,32386078:25785795,4007745,196608 -g1,2675:6797234,32386078 -g1,2675:6797234,32386078 -g1,2675:6600626,32386078 -(1,2675:6600626,32386078:0,4007745,196608 -r1,2686:32779637,32386078:26179011,4204353,196608 -k1,2675:6600625,32386078:-26179012 -) -(1,2675:6600626,32386078:26179011,4007745,196608 -[1,2675:6797234,32386078:25785795,3811137,0 -(1,2666:6797234,28979167:25785795,404226,101187 -(1,2665:6797234,28979167:0,0,0 -g1,2665:6797234,28979167 -g1,2665:6797234,28979167 -g1,2665:6469554,28979167 -(1,2665:6469554,28979167:0,0,0 -) -g1,2665:6797234,28979167 -) -k1,2666:6797234,28979167:0 -g1,2666:10274837,28979167 -g1,2666:10907129,28979167 -g1,2666:15333169,28979167 -g1,2666:17862335,28979167 -g1,2666:21656083,28979167 -g1,2666:24501395,28979167 -g1,2666:26398269,28979167 -g1,2666:27030561,28979167 -g1,2666:27662853,28979167 -h1,2666:28295145,28979167:0,0,0 -k1,2666:32583029,28979167:4287884 -g1,2666:32583029,28979167 -) -(1,2674:6797234,29645345:25785795,404226,76021 -(1,2668:6797234,29645345:0,0,0 -g1,2668:6797234,29645345 -g1,2668:6797234,29645345 -g1,2668:6469554,29645345 -(1,2668:6469554,29645345:0,0,0 -) -g1,2668:6797234,29645345 -) -g1,2674:7745671,29645345 -h1,2674:9326399,29645345:0,0,0 -k1,2674:32583029,29645345:23256630 -g1,2674:32583029,29645345 -) -(1,2674:6797234,30311523:25785795,404226,76021 -h1,2674:6797234,30311523:0,0,0 -g1,2674:7745671,30311523 -g1,2674:9010254,30311523 -g1,2674:13120148,30311523 -h1,2674:15333168,30311523:0,0,0 -k1,2674:32583028,30311523:17249860 -g1,2674:32583028,30311523 -) -(1,2674:6797234,30977701:25785795,379060,0 -h1,2674:6797234,30977701:0,0,0 -h1,2674:7429525,30977701:0,0,0 -k1,2674:32583029,30977701:25153504 -g1,2674:32583029,30977701 -) -(1,2674:6797234,31643879:25785795,404226,76021 -h1,2674:6797234,31643879:0,0,0 -g1,2674:7745671,31643879 -h1,2674:9326399,31643879:0,0,0 -k1,2674:32583029,31643879:23256630 -g1,2674:32583029,31643879 -) -(1,2674:6797234,32310057:25785795,404226,76021 -h1,2674:6797234,32310057:0,0,0 -g1,2674:7745671,32310057 -g1,2674:9010254,32310057 -g1,2674:13120148,32310057 -h1,2674:15333168,32310057:0,0,0 -k1,2674:32583028,32310057:17249860 -g1,2674:32583028,32310057 -) -] -) -g1,2675:32583029,32386078 -g1,2675:6797234,32386078 -g1,2675:6797234,32386078 -g1,2675:32583029,32386078 -g1,2675:32583029,32386078 -) -h1,2675:6797234,32582686:0,0,0 -] -g1,2678:32583029,33106974 -) -h1,2678:6630773,33106974:0,0,0 -v1,2683:6630773,34997038:0,393216,0 -(1,2686:6630773,45649826:25952256,11046004,0 -g1,2686:6630773,45649826 -g1,2686:6303093,45649826 -r1,2686:6401397,45649826:98304,11046004,0 -g1,2686:6600626,45649826 -g1,2686:6797234,45649826 -[1,2686:6797234,45649826:25785795,11046004,0 -(1,2684:6797234,35417622:25785795,813800,267386 -(1,2683:6797234,35417622:0,813800,267386 -r1,2686:8134168,35417622:1336934,1081186,267386 -k1,2683:6797234,35417622:-1336934 -) -(1,2683:6797234,35417622:1336934,813800,267386 -) -k1,2683:8274113,35417622:139945 -k1,2683:8601793,35417622:327680 -k1,2683:9938425,35417622:139945 -k1,2683:11802563,35417622:139886 -k1,2683:14917188,35417622:139946 -k1,2683:15991676,35417622:139945 -k1,2683:16663118,35417622:139945 -k1,2683:17822148,35417622:139945 -k1,2683:19917032,35417622:139945 -k1,2683:21248422,35417622:139945 -k1,2683:24100247,35417622:139945 -k1,2683:24856230,35417622:139945 -k1,2683:26262332,35417622:139946 -k1,2683:27030112,35417622:139945 -k1,2683:29872106,35417622:139945 -k1,2683:31387652,35417622:139945 -k1,2683:32583029,35417622:0 -) -(1,2684:6797234,36259110:25785795,505283,134348 -k1,2683:10348466,36259110:246251 -k1,2683:13575295,36259110:246252 -k1,2683:18149544,36259110:246251 -k1,2683:21874446,36259110:246251 -k1,2683:23995027,36259110:246251 -k1,2683:27546260,36259110:246252 -k1,2683:30318924,36259110:246251 -k1,2683:31584260,36259110:246251 -k1,2684:32583029,36259110:0 -) -(1,2684:6797234,37100598:25785795,513147,134348 -k1,2683:8533574,37100598:210662 -k1,2683:11760202,37100598:210661 -k1,2683:14227269,37100598:210662 -k1,2683:17200273,37100598:210661 -k1,2683:20331219,37100598:210662 -k1,2683:23205919,37100598:210661 -k1,2683:24810532,37100598:210662 -k1,2683:26216570,37100598:210661 -k1,2683:29732213,37100598:210662 -k1,2683:32583029,37100598:0 -) -(1,2684:6797234,37942086:25785795,513147,134348 -k1,2683:9586923,37942086:263276 -k1,2683:10797850,37942086:263276 -k1,2683:12763096,37942086:263276 -k1,2683:16372640,37942086:263276 -k1,2683:18803847,37942086:263276 -k1,2683:19828650,37942086:263275 -k1,2683:22279518,37942086:263276 -k1,2683:25352978,37942086:263276 -k1,2683:27648525,37942086:263276 -k1,2683:29103246,37942086:263276 -k1,2683:31058662,37942086:263276 -k1,2684:32583029,37942086:0 -) -(1,2684:6797234,38783574:25785795,513147,134348 -k1,2683:8471530,38783574:170245 -k1,2683:9838461,38783574:170244 -k1,2683:11204083,38783574:170245 -k1,2683:13098551,38783574:170216 -k1,2683:16573776,38783574:170244 -k1,2683:18248072,38783574:170245 -k1,2683:19365967,38783574:170244 -k1,2683:19892072,38783574:170245 -k1,2683:21451025,38783574:170245 -k1,2683:23046677,38783574:170244 -k1,2683:24236007,38783574:170245 -k1,2683:25781852,38783574:170244 -k1,2683:29799060,38783574:170245 -k1,2683:32583029,38783574:0 -) -(1,2684:6797234,39625062:25785795,513147,134348 -k1,2683:9114706,39625062:284545 -k1,2683:12805813,39625062:284546 -k1,2683:14024901,39625062:284545 -k1,2683:15145030,39625062:284545 -k1,2683:16377226,39625062:284545 -k1,2683:19424115,39625062:284546 -k1,2683:22881258,39625062:284545 -k1,2683:24357248,39625062:284545 -k1,2683:27623681,39625062:284545 -k1,2683:28798206,39625062:284546 -k1,2683:31577707,39625062:284545 -k1,2684:32583029,39625062:0 -) -(1,2684:6797234,40466550:25785795,513147,134348 -k1,2683:8889748,40466550:173620 -k1,2683:10082453,40466550:173620 -k1,2683:11348558,40466550:173620 -k1,2683:12181470,40466550:173620 -k1,2683:14138325,40466550:173620 -k1,2683:16171201,40466550:173620 -k1,2683:19319499,40466550:173619 -k1,2683:20757964,40466550:173620 -k1,2683:22077809,40466550:173620 -k1,2683:23914733,40466550:173620 -k1,2683:25189358,40466550:173620 -k1,2683:27806160,40466550:173620 -k1,2683:30930866,40466550:173620 -k1,2684:32583029,40466550:0 -) -(1,2684:6797234,41308038:25785795,513147,126483 -k1,2683:7358642,41308038:146565 -k1,2683:9838996,41308038:146617 -k1,2683:11528331,41308038:146617 -k1,2683:14201361,41308038:146617 -k1,2683:15295629,41308038:146617 -k1,2683:17105550,41308038:146617 -k1,2683:17783664,41308038:146617 -k1,2683:20714250,41308038:146617 -k1,2683:22746993,41308038:146617 -k1,2683:25782437,41308038:146617 -k1,2683:26899642,41308038:146617 -k1,2683:28427103,41308038:146617 -k1,2683:30619754,41308038:146617 -k1,2683:31224468,41308038:146617 -k1,2684:32583029,41308038:0 -) -(1,2684:6797234,42149526:25785795,513147,134348 -k1,2683:8491948,42149526:210324 -k1,2683:9721356,42149526:210323 -k1,2683:13367077,42149526:210324 -k1,2683:14236693,42149526:210324 -k1,2683:15673196,42149526:210324 -k1,2683:17272882,42149526:210323 -k1,2683:18430857,42149526:210324 -k1,2683:20392958,42149526:210324 -k1,2683:22253478,42149526:210323 -k1,2683:25636400,42149526:210324 -k1,2683:27289171,42149526:210324 -k1,2683:28115533,42149526:210324 -k1,2683:29344941,42149526:210323 -k1,2683:31092740,42149526:210324 -k1,2683:32583029,42149526:0 -) -(1,2684:6797234,42991014:25785795,513147,134348 -k1,2683:9283718,42991014:216317 -k1,2683:10830415,42991014:216316 -k1,2683:11504829,42991014:216317 -k1,2683:12252643,42991014:216317 -k1,2683:15098920,42991014:216317 -k1,2683:15966664,42991014:216316 -k1,2683:17275466,42991014:216317 -k1,2683:20653223,42991014:216300 -k1,2683:24174520,42991014:216316 -k1,2683:25076999,42991014:216317 -k1,2683:26615177,42991014:216317 -k1,2683:27490786,42991014:216317 -k1,2683:29666628,42991014:216316 -k1,2683:32124932,42991014:216317 -k1,2683:32583029,42991014:0 -) -(1,2684:6797234,43832502:25785795,513147,126483 -g1,2683:7527960,43832502 -g1,2683:10096971,43832502 -g1,2683:11882827,43832502 -g1,2683:12733484,43832502 -g1,2683:14025198,43832502 -g1,2683:15600028,43832502 -g1,2683:17523509,43832502 -g1,2683:21027719,43832502 -g1,2683:21913110,43832502 -g1,2683:23315580,43832502 -g1,2683:26041222,43832502 -g1,2683:26771948,43832502 -k1,2684:32583029,43832502:3649048 -g1,2684:32583029,43832502 -) -(1,2686:6797234,44673990:25785795,505283,102891 -h1,2685:6797234,44673990:983040,0,0 -k1,2685:9140866,44673990:163905 -k1,2685:12225056,44673990:163906 -k1,2685:15363640,44673990:163905 -k1,2685:16792391,44673990:163906 -k1,2685:19293965,44673990:163905 -k1,2685:22684864,44673990:163906 -k1,2685:26327420,44673990:163905 -k1,2685:27775832,44673990:163906 -k1,2685:28931297,44673990:163905 -k1,2685:31510860,44673990:163906 -k1,2685:32583029,44673990:0 -) -(1,2686:6797234,45515478:25785795,505283,134348 -k1,2685:8334315,45515478:200147 -k1,2685:11154591,45515478:200147 -k1,2685:13461065,45515478:200147 -k1,2685:14945718,45515478:200147 -k1,2685:16532607,45515478:200147 -k1,2685:18086728,45515478:200147 -k1,2685:20488885,45515478:200147 -k1,2685:21340460,45515478:200147 -k1,2685:23284520,45515478:200147 -k1,2685:24100705,45515478:200147 -k1,2685:25319937,45515478:200147 -k1,2685:27244335,45515478:200146 -k1,2685:28552696,45515478:200147 -k1,2685:30024241,45515478:200147 -k1,2685:31591469,45515478:200147 -k1,2685:32583029,45515478:0 -) -] -g1,2686:32583029,45649826 -) -] -(1,2686:32583029,45706769:0,0,0 -g1,2686:32583029,45706769 -) -) -] -(1,2686:6630773,47279633:25952256,0,0 -h1,2686:6630773,47279633:25952256,0,0 -) -] -(1,2686:4262630,4025873:0,0,0 -[1,2686:-473656,4025873:0,0,0 -(1,2686:-473656,-710413:0,0,0 -(1,2686:-473656,-710413:0,0,0 -g1,2686:-473656,-710413 -) -g1,2686:-473656,-710413 -) -] -) -] -!25156 -}63 -Input:545:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:546:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:547:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:548:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:549:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:550:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:551:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:552:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:553:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:554:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:555:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1034 -{64 -[1,2751:4262630,47279633:28320399,43253760,0 -(1,2751:4262630,4025873:0,0,0 -[1,2751:-473656,4025873:0,0,0 -(1,2751:-473656,-710413:0,0,0 -(1,2751:-473656,-644877:0,0,0 -k1,2751:-473656,-644877:-65536 -) -(1,2751:-473656,4736287:0,0,0 -k1,2751:-473656,4736287:5209943 -) -g1,2751:-473656,-710413 -) -] -) -[1,2751:6630773,47279633:25952256,43253760,0 -[1,2751:6630773,4812305:25952256,786432,0 -(1,2751:6630773,4812305:25952256,505283,134348 -(1,2751:6630773,4812305:25952256,505283,134348 -g1,2751:3078558,4812305 -[1,2751:3078558,4812305:0,0,0 -(1,2751:3078558,2439708:0,1703936,0 -k1,2751:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,2751:2537886,2439708:1179648,16384,0 -) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,2751:3078558,1915420:16384,1179648,0 -) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 -) -] -) -) -) -] -[1,2751:3078558,4812305:0,0,0 -(1,2751:3078558,2439708:0,1703936,0 -g1,2751:29030814,2439708 -g1,2751:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,2751:36151628,1915420:16384,1179648,0 -) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 -) -] -) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,2751:37855564,2439708:1179648,16384,0 -) -) -k1,2751:3078556,2439708:-34777008 -) -] -[1,2751:3078558,4812305:0,0,0 -(1,2751:3078558,49800853:0,16384,2228224 -k1,2751:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,2751:2537886,49800853:1179648,16384,0 -) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,2751:3078558,51504789:16384,1179648,0 -) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 -) -] -) -) -) -] -[1,2751:3078558,4812305:0,0,0 -(1,2751:3078558,49800853:0,16384,2228224 -g1,2751:29030814,49800853 -g1,2751:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,2751:36151628,51504789:16384,1179648,0 -) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 -) -] -) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,2751:37855564,49800853:1179648,16384,0 -) -) -k1,2751:3078556,49800853:-34777008 -) -] -g1,2751:6630773,4812305 -g1,2751:6630773,4812305 -g1,2751:9062814,4812305 -g1,2751:11256304,4812305 -g1,2751:12665983,4812305 -g1,2751:15337230,4812305 -g1,2751:17955393,4812305 -k1,2751:31786111,4812305:13830718 -) -) -] -[1,2751:6630773,45706769:25952256,40108032,0 -(1,2751:6630773,45706769:25952256,40108032,0 -(1,2751:6630773,45706769:0,0,0 -g1,2751:6630773,45706769 -) -[1,2751:6630773,45706769:25952256,40108032,0 -v1,2686:6630773,6254097:0,393216,0 -(1,2686:6630773,12398792:25952256,6537911,0 -g1,2686:6630773,12398792 -g1,2686:6303093,12398792 -r1,2751:6401397,12398792:98304,6537911,0 -g1,2686:6600626,12398792 -g1,2686:6797234,12398792 -[1,2686:6797234,12398792:25785795,6537911,0 -(1,2686:6797234,6374028:25785795,513147,134348 -k1,2685:9659191,6374028:159908 -k1,2685:11062316,6374028:159907 -k1,2685:13719146,6374028:159908 -k1,2685:14679904,6374028:159908 -k1,2685:16820965,6374028:159908 -k1,2685:18301422,6374028:159907 -$1,2685:18508516,6374028 -$1,2685:19076713,6374028 -k1,2685:19443715,6374028:159908 -k1,2685:20795068,6374028:159908 -k1,2685:23229074,6374028:159907 -k1,2685:24910728,6374028:159908 -k1,2685:25697816,6374028:159908 -k1,2685:27743195,6374028:159908 -k1,2685:28894662,6374028:159907 -k1,2685:29820686,6374028:159908 -k1,2685:32583029,6374028:0 -) -(1,2686:6797234,7215516:25785795,505283,134348 -k1,2685:10428213,7215516:152328 -k1,2685:11974492,7215516:152328 -k1,2685:13502420,7215516:152327 -k1,2685:14673833,7215516:152328 -k1,2685:15974352,7215516:152328 -k1,2685:17283390,7215516:152328 -k1,2685:20947791,7215516:152327 -k1,2685:21861647,7215516:152328 -k1,2685:22428771,7215516:152281 -k1,2685:23267261,7215516:152328 -k1,2685:24438674,7215516:152328 -k1,2685:26572154,7215516:152327 -k1,2685:29644766,7215516:152328 -k1,2685:30839116,7215516:152328 -k1,2685:32583029,7215516:0 -) -(1,2686:6797234,8057004:25785795,513147,134348 -k1,2685:9594702,8057004:297269 -k1,2685:11083415,8057004:297268 -k1,2685:13734737,8057004:297269 -k1,2685:15258184,8057004:297268 -k1,2685:17123074,8057004:297269 -k1,2685:17776202,8057004:297268 -k1,2685:23039134,8057004:297269 -k1,2685:24603868,8057004:297268 -k1,2685:25315881,8057004:297170 -k1,2685:26296035,8057004:297269 -k1,2685:29191151,8057004:297269 -k1,2685:29844279,8057004:297268 -k1,2685:32583029,8057004:0 -) -(1,2686:6797234,8898492:25785795,513147,134348 -k1,2685:9819101,8898492:176949 -k1,2685:10527546,8898492:176948 -k1,2685:11989001,8898492:176949 -k1,2685:13632645,8898492:176948 -k1,2685:14275555,8898492:176949 -k1,2685:15609214,8898492:176949 -k1,2685:17502550,8898492:176948 -k1,2685:18295537,8898492:176949 -k1,2685:19243188,8898492:176948 -k1,2685:21144367,8898492:176927 -k1,2685:23139285,8898492:176949 -k1,2685:26290912,8898492:176948 -h1,2685:26498006,8898492:0,0,0 -k1,2685:27450901,8898492:176949 -k1,2685:28646934,8898492:176948 -k1,2685:31391584,8898492:176949 -k1,2685:32583029,8898492:0 -) -(1,2686:6797234,9739980:25785795,505283,134348 -k1,2685:9228359,9739980:177342 -k1,2685:11553972,9739980:177343 -k1,2685:12347352,9739980:177342 -k1,2685:14276472,9739980:177343 -k1,2685:17626412,9739980:177342 -k1,2685:18795315,9739980:177343 -k1,2685:23289514,9739980:177342 -k1,2685:26185946,9739980:177343 -k1,2685:27757239,9739980:177342 -k1,2685:31096017,9739980:177321 -k1,2685:32583029,9739980:0 -) -(1,2686:6797234,10581468:25785795,505283,134348 -k1,2685:9220648,10581468:217472 -k1,2685:11323591,10581468:217472 -k1,2685:11955887,10581468:217453 -k1,2685:13666269,10581468:217472 -k1,2685:14950012,10581468:217472 -k1,2685:17215484,10581468:217472 -k1,2685:18119118,10581468:217472 -k1,2685:21311269,10581468:217472 -k1,2685:23394550,10581468:217471 -k1,2685:27004165,10581468:217472 -k1,2685:28418324,10581468:217472 -k1,2685:29970764,10581468:217472 -k1,2685:32583029,10581468:0 -) -(1,2686:6797234,11422956:25785795,513147,134348 -k1,2685:7563831,11422956:235100 -k1,2685:8450358,11422956:235099 -k1,2685:9777943,11422956:235100 -k1,2685:10368902,11422956:235099 -k1,2685:12201770,11422956:235100 -k1,2685:13663048,11422956:235099 -k1,2685:15807212,11422956:235100 -k1,2685:18369494,11422956:235099 -k1,2685:19263886,11422956:235100 -k1,2685:19854845,11422956:235099 -k1,2685:21714583,11422956:235100 -k1,2685:25077715,11422956:235099 -k1,2685:27010853,11422956:235100 -k1,2685:29503667,11422956:235099 -k1,2685:31900144,11422956:235100 -k1,2685:32583029,11422956:0 -) -(1,2686:6797234,12264444:25785795,513147,134348 -k1,2685:9193735,12264444:180073 -k1,2685:10599986,12264444:180072 -k1,2685:12093401,12264444:180073 -k1,2685:15635470,12264444:180072 -k1,2685:17204906,12264444:180073 -k1,2685:18036406,12264444:180072 -k1,2685:18964245,12264444:180073 -k1,2685:20556618,12264444:180072 -k1,2685:21422853,12264444:180073 -k1,2685:23099112,12264444:180072 -k1,2685:26795847,12264444:180073 -k1,2685:27658804,12264444:180072 -k1,2685:31019995,12264444:180073 -k1,2686:32583029,12264444:0 -k1,2686:32583029,12264444:0 -) -] -g1,2686:32583029,12398792 -) -h1,2686:6630773,12398792:0,0,0 -v1,2689:6630773,13554852:0,393216,0 -(1,2698:6630773,16143383:25952256,2981747,0 -g1,2698:6630773,16143383 -g1,2698:6303093,16143383 -r1,2751:6401397,16143383:98304,2981747,0 -g1,2698:6600626,16143383 -g1,2698:6797234,16143383 -[1,2698:6797234,16143383:25785795,2981747,0 -(1,2690:6797234,13916925:25785795,755289,196608 -(1,2689:6797234,13916925:0,755289,196608 -r1,2751:8134168,13916925:1336934,951897,196608 -k1,2689:6797234,13916925:-1336934 -) -(1,2689:6797234,13916925:1336934,755289,196608 -) -g1,2689:8333397,13916925 -g1,2689:8661077,13916925 -g1,2689:10056993,13916925 -g1,2689:11752409,13916925 -g1,2689:13820069,13916925 -g1,2689:16704308,13916925 -g1,2689:17669653,13916925 -g1,2689:20158710,13916925 -g1,2689:21751890,13916925 -g1,2689:24019435,13916925 -(1,2689:24019435,13916925:0,452978,115847 -r1,2751:26136260,13916925:2116825,568825,115847 -k1,2689:24019435,13916925:-2116825 -) -(1,2689:24019435,13916925:2116825,452978,115847 -k1,2689:24019435,13916925:3277 -h1,2689:26132983,13916925:0,411205,112570 -) -g1,2689:26509159,13916925 -(1,2689:26509159,13916925:0,452978,115847 -r1,2751:28625984,13916925:2116825,568825,115847 -k1,2689:26509159,13916925:-2116825 -) -(1,2689:26509159,13916925:2116825,452978,115847 -k1,2689:26509159,13916925:3277 -h1,2689:28622707,13916925:0,411205,112570 -) -g1,2689:28998883,13916925 -g1,2689:30389557,13916925 -g1,2689:31313614,13916925 -k1,2690:32583029,13916925:286375 -g1,2690:32583029,13916925 -) -v1,2692:6797234,15107391:0,393216,0 -(1,2696:6797234,15422487:25785795,708312,196608 -g1,2696:6797234,15422487 -g1,2696:6797234,15422487 -g1,2696:6600626,15422487 -(1,2696:6600626,15422487:0,708312,196608 -r1,2751:32779637,15422487:26179011,904920,196608 -k1,2696:6600625,15422487:-26179012 -) -(1,2696:6600626,15422487:26179011,708312,196608 -[1,2696:6797234,15422487:25785795,511704,0 -(1,2694:6797234,15315009:25785795,404226,107478 -(1,2693:6797234,15315009:0,0,0 -g1,2693:6797234,15315009 -g1,2693:6797234,15315009 -g1,2693:6469554,15315009 -(1,2693:6469554,15315009:0,0,0 -) -g1,2693:6797234,15315009 -) -k1,2694:6797234,15315009:0 -g1,2694:10590983,15315009 -g1,2694:11223275,15315009 -g1,2694:14700878,15315009 -g1,2694:15333170,15315009 -h1,2694:21656083,15315009:0,0,0 -k1,2694:32583029,15315009:10926946 -g1,2694:32583029,15315009 -) -] -) -g1,2696:32583029,15422487 -g1,2696:6797234,15422487 -g1,2696:6797234,15422487 -g1,2696:32583029,15422487 -g1,2696:32583029,15422487 -) -h1,2696:6797234,15619095:0,0,0 -] -g1,2698:32583029,16143383 -) -h1,2698:6630773,16143383:0,0,0 -(1,2700:6630773,18950951:25952256,32768,229376 -(1,2700:6630773,18950951:0,32768,229376 -(1,2700:6630773,18950951:5505024,32768,229376 -r1,2751:12135797,18950951:5505024,262144,229376 -) -k1,2700:6630773,18950951:-5505024 -) -(1,2700:6630773,18950951:25952256,32768,0 -r1,2751:32583029,18950951:25952256,32768,0 -) -) -(1,2700:6630773,20555279:25952256,606339,161218 -(1,2700:6630773,20555279:1974731,582746,14155 -g1,2700:6630773,20555279 -g1,2700:8605504,20555279 -) -g1,2700:11640345,20555279 -g1,2700:14463636,20555279 -g1,2700:16173339,20555279 -g1,2700:19540841,20555279 -k1,2700:32583029,20555279:10132389 -g1,2700:32583029,20555279 -) -(1,2703:6630773,21789983:25952256,505283,126483 -k1,2702:8420360,21789983:155774 -k1,2702:9192172,21789983:155774 -k1,2702:13384308,21789983:155774 -k1,2702:14531642,21789983:155774 -k1,2702:16974623,21789983:155774 -k1,2702:18998173,21789983:155774 -k1,2702:21665288,21789983:155775 -k1,2702:24005377,21789983:155774 -k1,2702:25152711,21789983:155774 -k1,2702:27176261,21789983:155774 -(1,2702:27176261,21789983:0,452978,122846 -r1,2751:29644798,21789983:2468537,575824,122846 -k1,2702:27176261,21789983:-2468537 -) -(1,2702:27176261,21789983:2468537,452978,122846 -k1,2702:27176261,21789983:3277 -h1,2702:29641521,21789983:0,411205,112570 -) -k1,2702:29800572,21789983:155774 -k1,2702:31966991,21789983:155774 -k1,2703:32583029,21789983:0 -) -(1,2703:6630773,22631471:25952256,505283,126483 -k1,2702:7422126,22631471:202840 -k1,2702:9182756,22631471:202839 -k1,2702:10489878,22631471:202840 -k1,2702:12167932,22631471:202839 -k1,2702:13746373,22631471:202840 -k1,2702:15121651,22631471:202839 -k1,2702:17335136,22631471:202840 -(1,2702:17335136,22631471:0,414482,115847 -r1,2751:18748537,22631471:1413401,530329,115847 -k1,2702:17335136,22631471:-1413401 -) -(1,2702:17335136,22631471:1413401,414482,115847 -k1,2702:17335136,22631471:3277 -h1,2702:18745260,22631471:0,411205,112570 -) -k1,2702:18951376,22631471:202839 -k1,2702:20345661,22631471:202840 -(1,2702:20345661,22631471:0,414482,115847 -r1,2751:22110774,22631471:1765113,530329,115847 -k1,2702:20345661,22631471:-1765113 -) -(1,2702:20345661,22631471:1765113,414482,115847 -k1,2702:20345661,22631471:3277 -h1,2702:22107497,22631471:0,411205,112570 -) -k1,2702:22487283,22631471:202839 -k1,2702:23306161,22631471:202840 -k1,2702:26175005,22631471:202839 -k1,2702:27029273,22631471:202840 -(1,2702:27029273,22631471:0,414482,115847 -r1,2751:27739251,22631471:709978,530329,115847 -k1,2702:27029273,22631471:-709978 -) -(1,2702:27029273,22631471:709978,414482,115847 -k1,2702:27029273,22631471:3277 -h1,2702:27735974,22631471:0,411205,112570 -) -k1,2702:27942090,22631471:202839 -k1,2702:29418295,22631471:202840 -k1,2702:32583029,22631471:0 -) -(1,2703:6630773,23472959:25952256,513147,134348 -k1,2702:9096085,23472959:235777 -k1,2702:11342506,23472959:235776 -(1,2702:11342506,23472959:0,414482,115847 -r1,2751:12755907,23472959:1413401,530329,115847 -k1,2702:11342506,23472959:-1413401 -) -(1,2702:11342506,23472959:1413401,414482,115847 -k1,2702:11342506,23472959:3277 -h1,2702:12752630,23472959:0,411205,112570 -) -k1,2702:12991684,23472959:235777 -k1,2702:14418906,23472959:235777 -(1,2702:14418906,23472959:0,414482,115847 -r1,2751:16184019,23472959:1765113,530329,115847 -k1,2702:14418906,23472959:-1765113 -) -(1,2702:14418906,23472959:1765113,414482,115847 -k1,2702:14418906,23472959:3277 -h1,2702:16180742,23472959:0,411205,112570 -) -k1,2702:16419795,23472959:235776 -k1,2702:18835955,23472959:235777 -k1,2702:20138003,23472959:235777 -k1,2702:21121546,23472959:235777 -k1,2702:24278262,23472959:235776 -k1,2702:25907990,23472959:235777 -k1,2702:27369946,23472959:235777 -k1,2702:29975504,23472959:235776 -k1,2702:31591469,23472959:235777 -k1,2702:32583029,23472959:0 -) -(1,2703:6630773,24314447:25952256,513147,134348 -k1,2702:8880976,24314447:181887 -k1,2702:10010515,24314447:181888 -k1,2702:11211487,24314447:181887 -k1,2702:12565814,24314447:181888 -k1,2702:16110353,24314447:181887 -k1,2702:17576746,24314447:181887 -k1,2702:18862916,24314447:181888 -k1,2702:19792569,24314447:181887 -k1,2702:22186296,24314447:181887 -k1,2702:24597719,24314447:181888 -k1,2702:26790251,24314447:181887 -k1,2702:27963699,24314447:181888 -k1,2702:30274851,24314447:181887 -k1,2702:32583029,24314447:0 -) -(1,2703:6630773,25155935:25952256,505283,126483 -k1,2702:7496832,25155935:179897 -k1,2702:8442846,25155935:179898 -k1,2702:10324713,25155935:179897 -k1,2702:12666644,25155935:179898 -k1,2702:14562929,25155935:179897 -k1,2702:15358864,25155935:179897 -k1,2702:15953585,25155935:179878 -k1,2702:17102105,25155935:179898 -k1,2702:19441414,25155935:179897 -k1,2702:20489664,25155935:179898 -k1,2702:22407576,25155935:179897 -k1,2702:23871979,25155935:179897 -k1,2702:25503499,25155935:179898 -k1,2702:27363739,25155935:179897 -k1,2702:28075134,25155935:179898 -k1,2702:29321302,25155935:179897 -k1,2702:32583029,25155935:0 -) -(1,2703:6630773,25997423:25952256,513147,126483 -g1,2702:7489294,25997423 -k1,2703:32583029,25997423:22460498 -g1,2703:32583029,25997423 -) -(1,2705:6630773,26838911:25952256,513147,134348 -h1,2704:6630773,26838911:983040,0,0 -k1,2704:10071085,26838911:227737 -k1,2704:12309468,26838911:227738 -k1,2704:13528765,26838911:227737 -k1,2704:15269729,26838911:227738 -k1,2704:17665397,26838911:227737 -k1,2704:18544562,26838911:227737 -k1,2704:20280283,26838911:227738 -k1,2704:22135279,26838911:227737 -k1,2704:23022309,26838911:227738 -k1,2704:25271832,26838911:227737 -k1,2704:29035893,26838911:227738 -k1,2704:30409855,26838911:227737 -k1,2704:32583029,26838911:0 -) -(1,2705:6630773,27680399:25952256,513147,134348 -k1,2704:8339296,27680399:140902 -k1,2704:12738072,27680399:140902 -k1,2704:14070420,27680399:140903 -k1,2704:16622392,27680399:140902 -k1,2704:17572664,27680399:140902 -k1,2704:19526292,27680399:140902 -k1,2704:20295029,27680399:140902 -k1,2704:24702326,27680399:140903 -k1,2704:27354568,27680399:140902 -k1,2704:29822653,27680399:140902 -k1,2704:32583029,27680399:0 -) -(1,2705:6630773,28521887:25952256,513147,134348 -k1,2704:7880709,28521887:230851 -k1,2704:9697530,28521887:230850 -k1,2704:10587673,28521887:230851 -k1,2704:11837608,28521887:230850 -k1,2704:13577098,28521887:230851 -k1,2704:15321174,28521887:230850 -k1,2704:16203453,28521887:230851 -k1,2704:19146183,28521887:230850 -k1,2704:22048281,28521887:230851 -k1,2704:24348758,28521887:230850 -k1,2704:26763924,28521887:230851 -k1,2704:29506114,28521887:230850 -k1,2704:32583029,28521887:0 -) -(1,2705:6630773,29363375:25952256,505283,134348 -k1,2704:8026041,29363375:249043 -k1,2704:9758115,29363375:248994 -k1,2704:11198603,29363375:249043 -k1,2704:12401800,29363375:248993 -k1,2704:14003507,29363375:249044 -k1,2704:14938712,29363375:249043 -k1,2704:18160468,29363375:249043 -k1,2704:20479139,29363375:249044 -k1,2704:22738827,29363375:249043 -k1,2704:24179315,29363375:249043 -k1,2704:26439004,29363375:249044 -k1,2704:27043907,29363375:249043 -k1,2704:29362577,29363375:249043 -k1,2704:31291964,29363375:249044 -k1,2704:32227169,29363375:249043 -k1,2704:32583029,29363375:0 -) -(1,2705:6630773,30204863:25952256,505283,7863 -k1,2705:32583029,30204863:24109384 -g1,2705:32583029,30204863 -) -(1,2707:6630773,31046351:25952256,513147,126483 -h1,2706:6630773,31046351:983040,0,0 -k1,2706:8472883,31046351:231235 -k1,2706:9118930,31046351:231204 -k1,2706:11004949,31046351:231235 -k1,2706:12227744,31046351:231235 -k1,2706:13631419,31046351:231236 -k1,2706:16988721,31046351:231235 -k1,2706:17879248,31046351:231235 -k1,2706:20621824,31046351:231236 -k1,2706:24103645,31046351:231235 -k1,2706:27671973,31046351:231235 -k1,2706:29094654,31046351:231236 -k1,2706:30392160,31046351:231235 -k1,2707:32583029,31046351:0 -) -(1,2707:6630773,31887839:25952256,513147,134348 -k1,2706:8359315,31887839:195655 -k1,2706:11992988,31887839:195654 -k1,2706:15265558,31887839:195655 -k1,2706:17509213,31887839:195655 -k1,2706:19774495,31887839:195655 -k1,2706:22278327,31887839:195654 -k1,2706:23133274,31887839:195655 -k1,2706:24460736,31887839:195655 -k1,2706:26669657,31887839:195655 -k1,2706:27551473,31887839:195654 -k1,2706:30893511,31887839:195655 -k1,2706:32583029,31887839:0 -) -(1,2707:6630773,32729327:25952256,513147,134348 -k1,2706:8069894,32729327:214908 -k1,2706:11621894,32729327:214907 -k1,2706:13323814,32729327:214908 -k1,2706:15586721,32729327:214907 -k1,2706:17177230,32729327:214908 -k1,2706:19461765,32729327:214908 -k1,2706:21984850,32729327:214907 -k1,2706:22859050,32729327:214908 -k1,2706:25087224,32729327:214908 -k1,2706:26458841,32729327:214907 -k1,2706:27359911,32729327:214908 -k1,2706:30721201,32729327:214907 -k1,2706:31563944,32729327:214908 -k1,2706:32583029,32729327:0 -) -(1,2707:6630773,33570815:25952256,513147,134348 -k1,2706:8809209,33570815:207768 -k1,2706:10885407,33570815:207767 -k1,2706:11961527,33570815:207768 -k1,2706:13261780,33570815:207768 -k1,2706:18243845,33570815:207767 -k1,2706:21528528,33570815:207768 -k1,2706:23130246,33570815:207767 -k1,2706:24510453,33570815:207768 -(1,2706:24510453,33570815:0,452978,122846 -r1,2751:26978990,33570815:2468537,575824,122846 -k1,2706:24510453,33570815:-2468537 -) -(1,2706:24510453,33570815:2468537,452978,122846 -k1,2706:24510453,33570815:3277 -h1,2706:26975713,33570815:0,411205,112570 -) -k1,2706:27186758,33570815:207768 -k1,2706:29702703,33570815:207767 -k1,2706:30569763,33570815:207768 -k1,2706:32583029,33570815:0 -) -(1,2707:6630773,34412303:25952256,505283,126483 -g1,2706:8160383,34412303 -(1,2706:8160383,34412303:0,414482,115847 -r1,2751:8518649,34412303:358266,530329,115847 -k1,2706:8160383,34412303:-358266 -) -(1,2706:8160383,34412303:358266,414482,115847 -k1,2706:8160383,34412303:3277 -h1,2706:8515372,34412303:0,411205,112570 -) -g1,2706:8717878,34412303 -g1,2706:10108552,34412303 -(1,2706:10108552,34412303:0,452978,115847 -r1,2751:10466818,34412303:358266,568825,115847 -k1,2706:10108552,34412303:-358266 -) -(1,2706:10108552,34412303:358266,452978,115847 -k1,2706:10108552,34412303:3277 -h1,2706:10463541,34412303:0,411205,112570 -) -g1,2706:10839717,34412303 -g1,2706:11725108,34412303 -k1,2707:32583029,34412303:17711538 -g1,2707:32583029,34412303 -) -v1,2709:6630773,35393053:0,393216,0 -(1,2747:6630773,45510161:25952256,10510324,196608 -g1,2747:6630773,45510161 -g1,2747:6630773,45510161 -g1,2747:6434165,45510161 -(1,2747:6434165,45510161:0,10510324,196608 -r1,2751:32779637,45510161:26345472,10706932,196608 -k1,2747:6434165,45510161:-26345472 -) -(1,2747:6434165,45510161:26345472,10510324,196608 -[1,2747:6630773,45510161:25952256,10313716,0 -(1,2711:6630773,35584942:25952256,388497,7863 -(1,2710:6630773,35584942:0,0,0 -g1,2710:6630773,35584942 -g1,2710:6630773,35584942 -g1,2710:6303093,35584942 -(1,2710:6303093,35584942:0,0,0 -) -g1,2710:6630773,35584942 -) -g1,2711:8211502,35584942 -g1,2711:9159940,35584942 -h1,2711:10424523,35584942:0,0,0 -k1,2711:32583029,35584942:22158506 -g1,2711:32583029,35584942 -) -(1,2712:6630773,36251120:25952256,404226,76021 -h1,2712:6630773,36251120:0,0,0 -k1,2712:6630773,36251120:0 -h1,2712:9792230,36251120:0,0,0 -k1,2712:32583030,36251120:22790800 -g1,2712:32583030,36251120 -) -(1,2716:6630773,36788049:25952256,404226,107478 -(1,2714:6630773,36788049:0,0,0 -g1,2714:6630773,36788049 -g1,2714:6630773,36788049 -g1,2714:6303093,36788049 -(1,2714:6303093,36788049:0,0,0 -) -g1,2714:6630773,36788049 -) -g1,2716:7579210,36788049 -g1,2716:8843793,36788049 -h1,2716:11689104,36788049:0,0,0 -k1,2716:32583028,36788049:20893924 -g1,2716:32583028,36788049 -) -(1,2718:6630773,37980338:25952256,388497,6290 -(1,2717:6630773,37980338:0,0,0 -g1,2717:6630773,37980338 -g1,2717:6630773,37980338 -g1,2717:6303093,37980338 -(1,2717:6303093,37980338:0,0,0 -) -g1,2717:6630773,37980338 -) -h1,2718:7895356,37980338:0,0,0 -k1,2718:32583028,37980338:24687672 -g1,2718:32583028,37980338 -) -(1,2722:6630773,38517267:25952256,404226,76021 -(1,2720:6630773,38517267:0,0,0 -g1,2720:6630773,38517267 -g1,2720:6630773,38517267 -g1,2720:6303093,38517267 -(1,2720:6303093,38517267:0,0,0 -) -g1,2720:6630773,38517267 -) -g1,2722:7579210,38517267 -g1,2722:8843793,38517267 -h1,2722:10108376,38517267:0,0,0 -k1,2722:32583028,38517267:22474652 -g1,2722:32583028,38517267 -) -(1,2724:6630773,39709556:25952256,404226,107478 -(1,2723:6630773,39709556:0,0,0 -g1,2723:6630773,39709556 -g1,2723:6630773,39709556 -g1,2723:6303093,39709556 -(1,2723:6303093,39709556:0,0,0 -) -g1,2723:6630773,39709556 -) -g1,2724:8527648,39709556 -g1,2724:9159940,39709556 -k1,2724:9159940,39709556:0 -h1,2724:11689105,39709556:0,0,0 -k1,2724:32583029,39709556:20893924 -g1,2724:32583029,39709556 -) -(1,2728:6630773,40246485:25952256,404226,76021 -(1,2726:6630773,40246485:0,0,0 -g1,2726:6630773,40246485 -g1,2726:6630773,40246485 -g1,2726:6303093,40246485 -(1,2726:6303093,40246485:0,0,0 -) -g1,2726:6630773,40246485 -) -g1,2728:7579210,40246485 -g1,2728:8843793,40246485 -h1,2728:10424521,40246485:0,0,0 -k1,2728:32583029,40246485:22158508 -g1,2728:32583029,40246485 -) -(1,2730:6630773,41438775:25952256,404226,107478 -(1,2729:6630773,41438775:0,0,0 -g1,2729:6630773,41438775 -g1,2729:6630773,41438775 -g1,2729:6303093,41438775 -(1,2729:6303093,41438775:0,0,0 -) -g1,2729:6630773,41438775 -) -g1,2730:8211502,41438775 -g1,2730:9159939,41438775 -g1,2730:11056813,41438775 -g1,2730:11689105,41438775 -g1,2730:14218271,41438775 -k1,2730:14218271,41438775:35127 -h1,2730:15201835,41438775:0,0,0 -k1,2730:32583029,41438775:17381194 -g1,2730:32583029,41438775 -) -(1,2734:6630773,41975704:25952256,404226,76021 -(1,2732:6630773,41975704:0,0,0 -g1,2732:6630773,41975704 -g1,2732:6630773,41975704 -g1,2732:6303093,41975704 -(1,2732:6303093,41975704:0,0,0 -) -g1,2732:6630773,41975704 -) -g1,2734:7579210,41975704 -g1,2734:8843793,41975704 -h1,2734:10424521,41975704:0,0,0 -k1,2734:32583029,41975704:22158508 -g1,2734:32583029,41975704 -) -(1,2736:6630773,43167993:25952256,404226,107478 -(1,2735:6630773,43167993:0,0,0 -g1,2735:6630773,43167993 -g1,2735:6630773,43167993 -g1,2735:6303093,43167993 -(1,2735:6303093,43167993:0,0,0 -) -g1,2735:6630773,43167993 -) -g1,2736:8211502,43167993 -g1,2736:9159939,43167993 -g1,2736:11056813,43167993 -g1,2736:11689105,43167993 -g1,2736:14218271,43167993 -k1,2736:14218271,43167993:1573 -h1,2736:14852135,43167993:0,0,0 -k1,2736:32583029,43167993:17730894 -g1,2736:32583029,43167993 -) -(1,2740:6630773,43704922:25952256,404226,76021 -(1,2738:6630773,43704922:0,0,0 -g1,2738:6630773,43704922 -g1,2738:6630773,43704922 -g1,2738:6303093,43704922 -(1,2738:6303093,43704922:0,0,0 -) -g1,2738:6630773,43704922 -) -g1,2740:7579210,43704922 -g1,2740:8843793,43704922 -h1,2740:10108376,43704922:0,0,0 -k1,2740:32583028,43704922:22474652 -g1,2740:32583028,43704922 -) -(1,2742:6630773,44897211:25952256,404226,82312 -(1,2741:6630773,44897211:0,0,0 -g1,2741:6630773,44897211 -g1,2741:6630773,44897211 -g1,2741:6303093,44897211 -(1,2741:6303093,44897211:0,0,0 -) -g1,2741:6630773,44897211 -) -k1,2742:6630773,44897211:0 -g1,2742:9792231,44897211 -g1,2742:12005251,44897211 -g1,2742:12637543,44897211 -g1,2742:15799000,44897211 -k1,2742:15799000,44897211:1573 -h1,2742:16432864,44897211:0,0,0 -k1,2742:32583029,44897211:16150165 -g1,2742:32583029,44897211 -) -(1,2746:6630773,45434140:25952256,404226,76021 -(1,2744:6630773,45434140:0,0,0 -g1,2744:6630773,45434140 -g1,2744:6630773,45434140 -g1,2744:6303093,45434140 -(1,2744:6303093,45434140:0,0,0 -) -g1,2744:6630773,45434140 -) -g1,2746:7579210,45434140 -g1,2746:8843793,45434140 -h1,2746:10108376,45434140:0,0,0 -k1,2746:32583028,45434140:22474652 -g1,2746:32583028,45434140 -) -] -) -g1,2747:32583029,45510161 -g1,2747:6630773,45510161 -g1,2747:6630773,45510161 -g1,2747:32583029,45510161 -g1,2747:32583029,45510161 -) -h1,2747:6630773,45706769:0,0,0 -] -(1,2751:32583029,45706769:0,0,0 -g1,2751:32583029,45706769 -) -) -] -(1,2751:6630773,47279633:25952256,0,0 -h1,2751:6630773,47279633:25952256,0,0 -) -] -(1,2751:4262630,4025873:0,0,0 -[1,2751:-473656,4025873:0,0,0 -(1,2751:-473656,-710413:0,0,0 -(1,2751:-473656,-710413:0,0,0 -g1,2751:-473656,-710413 -) -g1,2751:-473656,-710413 -) -] -) -] -!25567 -}64 -Input:556:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:557:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:558:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:559:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:560:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:561:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:562:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:563:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:564:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:565:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:566:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:567:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:568:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:569:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:570:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1406 -{65 -[1,2854:4262630,47279633:28320399,43253760,0 -(1,2854:4262630,4025873:0,0,0 -[1,2854:-473656,4025873:0,0,0 -(1,2854:-473656,-710413:0,0,0 -(1,2854:-473656,-644877:0,0,0 -k1,2854:-473656,-644877:-65536 -) -(1,2854:-473656,4736287:0,0,0 -k1,2854:-473656,4736287:5209943 -) -g1,2854:-473656,-710413 -) -] -) -[1,2854:6630773,47279633:25952256,43253760,0 -[1,2854:6630773,4812305:25952256,786432,0 -(1,2854:6630773,4812305:25952256,505283,11795 -(1,2854:6630773,4812305:25952256,505283,11795 -g1,2854:3078558,4812305 -[1,2854:3078558,4812305:0,0,0 -(1,2854:3078558,2439708:0,1703936,0 -k1,2854:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,2854:2537886,2439708:1179648,16384,0 -) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,2854:3078558,1915420:16384,1179648,0 -) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 -) -] -) -) -) -] -[1,2854:3078558,4812305:0,0,0 -(1,2854:3078558,2439708:0,1703936,0 -g1,2854:29030814,2439708 -g1,2854:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,2854:36151628,1915420:16384,1179648,0 -) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 -) -] -) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,2854:37855564,2439708:1179648,16384,0 -) -) -k1,2854:3078556,2439708:-34777008 -) -] -[1,2854:3078558,4812305:0,0,0 -(1,2854:3078558,49800853:0,16384,2228224 -k1,2854:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,2854:2537886,49800853:1179648,16384,0 -) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,2854:3078558,51504789:16384,1179648,0 -) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 -) -] -) -) -) -] -[1,2854:3078558,4812305:0,0,0 -(1,2854:3078558,49800853:0,16384,2228224 -g1,2854:29030814,49800853 -g1,2854:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,2854:36151628,51504789:16384,1179648,0 -) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 -) -] -) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,2854:37855564,49800853:1179648,16384,0 -) -) -k1,2854:3078556,49800853:-34777008 -) -] -g1,2854:6630773,4812305 -k1,2854:22348274,4812305:14920583 -g1,2854:23970945,4812305 -g1,2854:24793421,4812305 -g1,2854:27528893,4812305 -g1,2854:28938572,4812305 -) -) -] -[1,2854:6630773,45706769:25952256,40108032,0 -(1,2854:6630773,45706769:25952256,40108032,0 -(1,2854:6630773,45706769:0,0,0 -g1,2854:6630773,45706769 -) -[1,2854:6630773,45706769:25952256,40108032,0 -(1,2752:6630773,6254097:25952256,513147,134348 -h1,2751:6630773,6254097:983040,0,0 -k1,2751:9008419,6254097:197919 -k1,2751:12663361,6254097:197918 -k1,2751:13520572,6254097:197919 -k1,2751:14890930,6254097:197919 -k1,2751:16848490,6254097:197918 -k1,2751:17705701,6254097:197919 -k1,2751:19973247,6254097:197919 -k1,2751:23248080,6254097:197918 -k1,2751:24550281,6254097:197919 -k1,2751:25495966,6254097:197919 -k1,2751:29693546,6254097:197918 -k1,2751:30839116,6254097:197919 -k1,2751:32583029,6254097:0 -) -(1,2752:6630773,7095585:25952256,513147,134348 -k1,2751:8200062,7095585:286094 -k1,2751:9137585,7095585:286095 -k1,2751:10012192,7095585:286094 -k1,2751:11849524,7095585:286095 -k1,2751:12794910,7095585:286094 -k1,2751:16986295,7095585:286095 -k1,2751:19342016,7095585:286094 -k1,2751:22705026,7095585:286095 -k1,2751:25214101,7095585:286094 -k1,2751:29002440,7095585:286095 -k1,2751:30381019,7095585:286094 -k1,2751:32583029,7095585:0 -) -(1,2752:6630773,7937073:25952256,505283,134348 -k1,2751:8983734,7937073:268916 -k1,2751:10444095,7937073:268916 -k1,2751:11805496,7937073:268916 -k1,2751:14276422,7937073:268916 -k1,2751:17360765,7937073:268916 -k1,2751:18826368,7937073:268916 -k1,2751:22432377,7937073:268916 -k1,2751:25778208,7937073:268916 -k1,2751:27522339,7937073:268916 -k1,2751:32583029,7937073:0 -) -(1,2752:6630773,8778561:25952256,505283,126483 -k1,2751:9061553,8778561:188793 -(1,2751:9061553,8778561:0,435480,115847 -r1,2854:9419819,8778561:358266,551327,115847 -k1,2751:9061553,8778561:-358266 -) -(1,2751:9061553,8778561:358266,435480,115847 -k1,2751:9061553,8778561:3277 -h1,2751:9416542,8778561:0,411205,112570 -) -k1,2751:9608613,8778561:188794 -k1,2751:10988851,8778561:188793 -(1,2751:10988851,8778561:0,452978,115847 -r1,2854:11347117,8778561:358266,568825,115847 -k1,2751:10988851,8778561:-358266 -) -(1,2751:10988851,8778561:358266,452978,115847 -k1,2751:10988851,8778561:3277 -h1,2751:11343840,8778561:0,411205,112570 -) -k1,2751:11535910,8778561:188793 -k1,2751:14700039,8778561:188794 -k1,2751:15540260,8778561:188793 -k1,2751:19066146,8778561:188793 -k1,2751:22531084,8778561:188793 -k1,2751:25796793,8778561:188794 -k1,2751:27131811,8778561:188793 -(1,2751:27131811,8778561:0,414482,115847 -r1,2854:27490077,8778561:358266,530329,115847 -k1,2751:27131811,8778561:-358266 -) -(1,2751:27131811,8778561:358266,414482,115847 -k1,2751:27131811,8778561:3277 -h1,2751:27486800,8778561:0,411205,112570 -) -k1,2751:28059634,8778561:188793 -k1,2751:29937946,8778561:188794 -k1,2751:31145824,8778561:188793 -k1,2752:32583029,8778561:0 -) -(1,2752:6630773,9620049:25952256,505283,126483 -k1,2751:10136639,9620049:168773 -k1,2751:11792423,9620049:168772 -k1,2751:13436411,9620049:168773 -k1,2751:18975858,9620049:168772 -k1,2751:21386618,9620049:168773 -(1,2751:21386618,9620049:0,435480,115847 -r1,2854:22096596,9620049:709978,551327,115847 -k1,2751:21386618,9620049:-709978 -) -(1,2751:21386618,9620049:709978,435480,115847 -k1,2751:21386618,9620049:3277 -h1,2751:22093319,9620049:0,411205,112570 -) -k1,2751:22265368,9620049:168772 -k1,2751:23625586,9620049:168773 -(1,2751:23625586,9620049:0,452978,115847 -r1,2854:24335564,9620049:709978,568825,115847 -k1,2751:23625586,9620049:-709978 -) -(1,2751:23625586,9620049:709978,452978,115847 -k1,2751:23625586,9620049:3277 -h1,2751:24332287,9620049:0,411205,112570 -) -k1,2751:24678007,9620049:168773 -k1,2751:26679166,9620049:168772 -k1,2751:27379436,9620049:168773 -k1,2751:28923809,9620049:168772 -k1,2751:30249292,9620049:168773 -k1,2751:32583029,9620049:0 -) -(1,2752:6630773,10461537:25952256,513147,134348 -k1,2751:7532563,10461537:242498 -k1,2751:8794145,10461537:242497 -k1,2751:11796364,10461537:242498 -k1,2751:14785475,10461537:242497 -(1,2751:14785475,10461537:0,424981,115847 -r1,2854:15143741,10461537:358266,540828,115847 -k1,2751:14785475,10461537:-358266 -) -(1,2751:14785475,10461537:358266,424981,115847 -k1,2751:14785475,10461537:3277 -h1,2751:15140464,10461537:0,411205,112570 -) -k1,2751:15386239,10461537:242498 -k1,2751:16913242,10461537:242497 -k1,2751:17687237,10461537:242498 -k1,2751:21440498,10461537:242497 -k1,2751:22310831,10461537:242498 -k1,2751:24541690,10461537:242497 -k1,2751:27448227,10461537:242498 -k1,2751:28357880,10461537:242497 -k1,2751:29188891,10461537:242498 -k1,2751:30202091,10461537:242497 -k1,2751:32051532,10461537:242498 -k1,2751:32583029,10461537:0 -) -(1,2752:6630773,11303025:25952256,505283,134348 -k1,2751:9774452,11303025:245022 -k1,2751:11717512,11303025:245022 -k1,2751:12318395,11303025:245023 -k1,2751:17337715,11303025:245022 -k1,2751:20329351,11303025:245022 -k1,2751:21105870,11303025:245022 -k1,2751:22864119,11303025:245023 -k1,2751:24503092,11303025:245022 -k1,2751:25103974,11303025:245022 -k1,2751:27326873,11303025:245022 -k1,2751:28965847,11303025:245023 -k1,2751:31224135,11303025:245022 -$1,2751:31224135,11303025 -k1,2751:32010900,11303025:265754 -$1,2751:32409359,11303025 -k1,2751:32583029,11303025:0 -) -(1,2752:6630773,12144513:25952256,505283,126483 -k1,2751:8780085,12144513:263841 -k1,2751:10762281,12144513:263842 -k1,2751:13458818,12144513:263841 -k1,2751:16730762,12144513:263841 -k1,2751:17622439,12144513:263842 -k1,2751:19578420,12144513:263841 -k1,2751:23172801,12144513:263841 -k1,2751:26773736,12144513:263842 -(1,2751:26773736,12144513:0,452978,122846 -r1,2854:29242273,12144513:2468537,575824,122846 -k1,2751:26773736,12144513:-2468537 -) -(1,2751:26773736,12144513:2468537,452978,122846 -k1,2751:26773736,12144513:3277 -h1,2751:29238996,12144513:0,411205,112570 -) -k1,2751:29506114,12144513:263841 -k1,2751:32583029,12144513:0 -) -(1,2752:6630773,12986001:25952256,505283,126483 -k1,2751:7991049,12986001:255994 -k1,2751:10545390,12986001:255993 -k1,2751:15575682,12986001:255994 -k1,2751:17492357,12986001:255993 -k1,2751:18820520,12986001:255994 -k1,2751:19534610,12986001:255993 -k1,2751:20322101,12986001:255994 -k1,2751:23787392,12986001:255993 -k1,2751:24694814,12986001:255994 -k1,2751:26043292,12986001:255993 -k1,2751:27318371,12986001:255994 -k1,2751:29061376,12986001:255993 -k1,2751:30601876,12986001:255994 -k1,2751:32583029,12986001:0 -) -(1,2752:6630773,13827489:25952256,513147,102891 -k1,2751:7887300,13827489:237442 -k1,2751:11027332,13827489:237442 -k1,2751:11924066,13827489:237442 -k1,2751:13180592,13827489:237441 -k1,2751:15087891,13827489:237442 -k1,2751:16011495,13827489:237442 -k1,2751:17452178,13827489:237442 -k1,2751:20090859,13827489:237442 -k1,2751:22901244,13827489:237442 -k1,2751:25290887,13827489:237441 -k1,2751:26475980,13827489:237442 -k1,2751:29721525,13827489:237442 -k1,2751:31563944,13827489:237442 -k1,2751:32583029,13827489:0 -) -(1,2752:6630773,14668977:25952256,505283,134348 -k1,2751:10191225,14668977:134230 -k1,2751:10856951,14668977:134229 -k1,2751:13033283,14668977:134230 -k1,2751:14902906,14668977:134230 -k1,2751:16056220,14668977:134229 -k1,2751:17792150,14668977:134230 -k1,2751:21677004,14668977:134229 -k1,2751:24888149,14668977:134230 -k1,2751:26308195,14668977:134230 -k1,2751:30081638,14668977:134229 -k1,2751:30867296,14668977:134230 -k1,2751:32583029,14668977:0 -) -(1,2752:6630773,15510465:25952256,505283,7863 -g1,2751:8326189,15510465 -g1,2751:10395816,15510465 -g1,2751:11246473,15510465 -k1,2752:32583028,15510465:19750584 -g1,2752:32583028,15510465 -) -v1,2754:6630773,16677768:0,393216,0 -(1,2767:6630773,19615301:25952256,3330749,196608 -g1,2767:6630773,19615301 -g1,2767:6630773,19615301 -g1,2767:6434165,19615301 -(1,2767:6434165,19615301:0,3330749,196608 -r1,2854:32779637,19615301:26345472,3527357,196608 -k1,2767:6434165,19615301:-26345472 -) -(1,2767:6434165,19615301:26345472,3330749,196608 -[1,2767:6630773,19615301:25952256,3134141,0 -(1,2756:6630773,16885386:25952256,404226,82312 -(1,2755:6630773,16885386:0,0,0 -g1,2755:6630773,16885386 -g1,2755:6630773,16885386 -g1,2755:6303093,16885386 -(1,2755:6303093,16885386:0,0,0 -) -g1,2755:6630773,16885386 -) -k1,2756:6630773,16885386:0 -g1,2756:9159940,16885386 -g1,2756:11372960,16885386 -g1,2756:12005252,16885386 -g1,2756:16115148,16885386 -g1,2756:16747440,16885386 -g1,2756:20225043,16885386 -k1,2756:20225043,16885386:35127 -h1,2756:21208607,16885386:0,0,0 -k1,2756:32583029,16885386:11374422 -g1,2756:32583029,16885386 -) -(1,2760:6630773,17551564:25952256,404226,76021 -(1,2758:6630773,17551564:0,0,0 -g1,2758:6630773,17551564 -g1,2758:6630773,17551564 -g1,2758:6303093,17551564 -(1,2758:6303093,17551564:0,0,0 -) -g1,2758:6630773,17551564 -) -g1,2760:7579210,17551564 -g1,2760:8843793,17551564 -g1,2760:9159939,17551564 -g1,2760:10740668,17551564 -h1,2760:12321396,17551564:0,0,0 -k1,2760:32583028,17551564:20261632 -g1,2760:32583028,17551564 -) -(1,2762:6630773,18873102:25952256,404226,82312 -(1,2761:6630773,18873102:0,0,0 -g1,2761:6630773,18873102 -g1,2761:6630773,18873102 -g1,2761:6303093,18873102 -(1,2761:6303093,18873102:0,0,0 -) -g1,2761:6630773,18873102 -) -k1,2762:6630773,18873102:0 -g1,2762:9159940,18873102 -g1,2762:11372960,18873102 -g1,2762:12005252,18873102 -g1,2762:16115148,18873102 -g1,2762:16747440,18873102 -g1,2762:20225043,18873102 -k1,2762:20225043,18873102:1573 -h1,2762:20858907,18873102:0,0,0 -k1,2762:32583029,18873102:11724122 -g1,2762:32583029,18873102 -) -(1,2766:6630773,19539280:25952256,404226,76021 -(1,2764:6630773,19539280:0,0,0 -g1,2764:6630773,19539280 -g1,2764:6630773,19539280 -g1,2764:6303093,19539280 -(1,2764:6303093,19539280:0,0,0 -) -g1,2764:6630773,19539280 -) -g1,2766:7579210,19539280 -g1,2766:8843793,19539280 -g1,2766:10424522,19539280 -h1,2766:11689105,19539280:0,0,0 -k1,2766:32583029,19539280:20893924 -g1,2766:32583029,19539280 -) -] -) -g1,2767:32583029,19615301 -g1,2767:6630773,19615301 -g1,2767:6630773,19615301 -g1,2767:32583029,19615301 -g1,2767:32583029,19615301 -) -h1,2767:6630773,19811909:0,0,0 -(1,2771:6630773,21154522:25952256,505283,134348 -h1,2770:6630773,21154522:983040,0,0 -k1,2770:10890029,21154522:156047 -(1,2770:10890029,21154522:0,452978,115847 -r1,2854:12655142,21154522:1765113,568825,115847 -k1,2770:10890029,21154522:-1765113 -) -(1,2770:10890029,21154522:1765113,452978,115847 -k1,2770:10890029,21154522:3277 -h1,2770:12651865,21154522:0,411205,112570 -) -k1,2770:12811188,21154522:156046 -k1,2770:14158680,21154522:156047 -(1,2770:14158680,21154522:0,452978,115847 -r1,2854:15923793,21154522:1765113,568825,115847 -k1,2770:14158680,21154522:-1765113 -) -(1,2770:14158680,21154522:1765113,452978,115847 -k1,2770:14158680,21154522:3277 -h1,2770:15920516,21154522:0,411205,112570 -) -k1,2770:16079840,21154522:156047 -k1,2770:17588549,21154522:156046 -k1,2770:19164761,21154522:156047 -k1,2770:20003693,21154522:156047 -k1,2770:21809936,21154522:156046 -k1,2770:24035610,21154522:156047 -k1,2770:26499835,21154522:156047 -k1,2770:27342043,21154522:156046 -k1,2770:29006729,21154522:156047 -k1,2770:32583029,21154522:0 -) -(1,2771:6630773,21996010:25952256,505283,134348 -k1,2770:8050884,21996010:228666 -k1,2770:10290195,21996010:228666 -k1,2770:10874721,21996010:228666 -k1,2770:12976406,21996010:228666 -k1,2770:15274699,21996010:228666 -k1,2770:17183708,21996010:228666 -k1,2770:22223371,21996010:228665 -k1,2770:23471122,21996010:228666 -k1,2770:25769415,21996010:228666 -k1,2770:28008726,21996010:228666 -k1,2770:28853430,21996010:228666 -k1,2770:30101181,21996010:228666 -k1,2770:32583029,21996010:0 -) -(1,2771:6630773,22837498:25952256,513147,134348 -k1,2770:9635043,22837498:214402 -(1,2770:9635043,22837498:0,452978,115847 -r1,2854:11400156,22837498:1765113,568825,115847 -k1,2770:9635043,22837498:-1765113 -) -(1,2770:9635043,22837498:1765113,452978,115847 -k1,2770:9635043,22837498:3277 -h1,2770:11396879,22837498:0,411205,112570 -) -k1,2770:11614558,22837498:214402 -k1,2770:14169906,22837498:214402 -(1,2770:14169906,22837498:0,414482,115847 -r1,2854:15583307,22837498:1413401,530329,115847 -k1,2770:14169906,22837498:-1413401 -) -(1,2770:14169906,22837498:1413401,414482,115847 -k1,2770:14169906,22837498:3277 -h1,2770:15580030,22837498:0,411205,112570 -) -k1,2770:15797709,22837498:214402 -k1,2770:17387712,22837498:214402 -k1,2770:18068075,22837498:214402 -k1,2770:19048593,22837498:214402 -k1,2770:21273640,22837498:214402 -k1,2770:22104080,22837498:214402 -k1,2770:23337567,22837498:214402 -k1,2770:25860147,22837498:214402 -k1,2770:28279836,22837498:214402 -k1,2770:29180400,22837498:214402 -k1,2770:32583029,22837498:0 -) -(1,2771:6630773,23678986:25952256,505283,115847 -g1,2770:7821562,23678986 -(1,2770:7821562,23678986:0,414482,115847 -r1,2854:9234963,23678986:1413401,530329,115847 -k1,2770:7821562,23678986:-1413401 -) -(1,2770:7821562,23678986:1413401,414482,115847 -k1,2770:7821562,23678986:3277 -h1,2770:9231686,23678986:0,411205,112570 -) -g1,2770:9607862,23678986 -g1,2770:10998536,23678986 -(1,2770:10998536,23678986:0,452978,115847 -r1,2854:12763649,23678986:1765113,568825,115847 -k1,2770:10998536,23678986:-1765113 -) -(1,2770:10998536,23678986:1765113,452978,115847 -k1,2770:10998536,23678986:3277 -h1,2770:12760372,23678986:0,411205,112570 -) -g1,2770:12962878,23678986 -g1,2770:15503053,23678986 -(1,2770:15503053,23678986:0,414482,115847 -r1,2854:16916454,23678986:1413401,530329,115847 -k1,2770:15503053,23678986:-1413401 -) -(1,2770:15503053,23678986:1413401,414482,115847 -k1,2770:15503053,23678986:3277 -h1,2770:16913177,23678986:0,411205,112570 -) -g1,2770:17115683,23678986 -g1,2770:19357669,23678986 -g1,2770:20323014,23678986 -g1,2770:22532888,23678986 -g1,2770:23348155,23678986 -g1,2770:24566469,23678986 -g1,2770:27073876,23678986 -g1,2770:28264665,23678986 -(1,2770:28264665,23678986:0,414482,115847 -r1,2854:30029778,23678986:1765113,530329,115847 -k1,2770:28264665,23678986:-1765113 -) -(1,2770:28264665,23678986:1765113,414482,115847 -k1,2770:28264665,23678986:3277 -h1,2770:30026501,23678986:0,411205,112570 -) -k1,2771:32583029,23678986:2379581 -g1,2771:32583029,23678986 -) -v1,2773:6630773,24846288:0,393216,0 -(1,2811:6630773,36400863:25952256,11947791,196608 -g1,2811:6630773,36400863 -g1,2811:6630773,36400863 -g1,2811:6434165,36400863 -(1,2811:6434165,36400863:0,11947791,196608 -r1,2854:32779637,36400863:26345472,12144399,196608 -k1,2811:6434165,36400863:-26345472 -) -(1,2811:6434165,36400863:26345472,11947791,196608 -[1,2811:6630773,36400863:25952256,11751183,0 -(1,2775:6630773,25053906:25952256,404226,82312 -(1,2774:6630773,25053906:0,0,0 -g1,2774:6630773,25053906 -g1,2774:6630773,25053906 -g1,2774:6303093,25053906 -(1,2774:6303093,25053906:0,0,0 -) -g1,2774:6630773,25053906 -) -g1,2775:8211502,25053906 -g1,2775:9159940,25053906 -g1,2775:11689107,25053906 -g1,2775:13902127,25053906 -h1,2775:15799001,25053906:0,0,0 -k1,2775:32583029,25053906:16784028 -g1,2775:32583029,25053906 -) -(1,2776:6630773,25720084:25952256,404226,101187 -h1,2776:6630773,25720084:0,0,0 -k1,2776:6630773,25720084:0 -h1,2776:9476084,25720084:0,0,0 -k1,2776:32583028,25720084:23106944 -g1,2776:32583028,25720084 -) -(1,2780:6630773,26386262:25952256,404226,76021 -(1,2778:6630773,26386262:0,0,0 -g1,2778:6630773,26386262 -g1,2778:6630773,26386262 -g1,2778:6303093,26386262 -(1,2778:6303093,26386262:0,0,0 -) -g1,2778:6630773,26386262 -) -g1,2780:7579210,26386262 -g1,2780:8843793,26386262 -h1,2780:10108376,26386262:0,0,0 -k1,2780:32583028,26386262:22474652 -g1,2780:32583028,26386262 -) -(1,2782:6630773,27707800:25952256,404226,76021 -(1,2781:6630773,27707800:0,0,0 -g1,2781:6630773,27707800 -g1,2781:6630773,27707800 -g1,2781:6303093,27707800 -(1,2781:6303093,27707800:0,0,0 -) -g1,2781:6630773,27707800 -) -k1,2782:6630773,27707800:0 -h1,2782:9476084,27707800:0,0,0 -k1,2782:32583028,27707800:23106944 -g1,2782:32583028,27707800 -) -(1,2786:6630773,28373978:25952256,404226,76021 -(1,2784:6630773,28373978:0,0,0 -g1,2784:6630773,28373978 -g1,2784:6630773,28373978 -g1,2784:6303093,28373978 -(1,2784:6303093,28373978:0,0,0 -) -g1,2784:6630773,28373978 -) -g1,2786:7579210,28373978 -g1,2786:8843793,28373978 -h1,2786:10424521,28373978:0,0,0 -k1,2786:32583029,28373978:22158508 -g1,2786:32583029,28373978 -) -(1,2788:6630773,29695516:25952256,404226,101187 -(1,2787:6630773,29695516:0,0,0 -g1,2787:6630773,29695516 -g1,2787:6630773,29695516 -g1,2787:6303093,29695516 -(1,2787:6303093,29695516:0,0,0 -) -g1,2787:6630773,29695516 -) -k1,2788:6630773,29695516:0 -g1,2788:10424523,29695516 -g1,2788:12637543,29695516 -g1,2788:13269835,29695516 -k1,2788:13269835,29695516:0 -h1,2788:17379730,29695516:0,0,0 -k1,2788:32583029,29695516:15203299 -g1,2788:32583029,29695516 -) -(1,2792:6630773,30361694:25952256,404226,76021 -(1,2790:6630773,30361694:0,0,0 -g1,2790:6630773,30361694 -g1,2790:6630773,30361694 -g1,2790:6303093,30361694 -(1,2790:6303093,30361694:0,0,0 -) -g1,2790:6630773,30361694 -) -g1,2792:7579210,30361694 -g1,2792:8843793,30361694 -h1,2792:10108376,30361694:0,0,0 -k1,2792:32583028,30361694:22474652 -g1,2792:32583028,30361694 -) -(1,2794:6630773,31683232:25952256,404226,82312 -(1,2793:6630773,31683232:0,0,0 -g1,2793:6630773,31683232 -g1,2793:6630773,31683232 -g1,2793:6303093,31683232 -(1,2793:6303093,31683232:0,0,0 -) -g1,2793:6630773,31683232 -) -k1,2794:6630773,31683232:0 -g1,2794:10424523,31683232 -g1,2794:12637543,31683232 -g1,2794:13269835,31683232 -k1,2794:13269835,31683232:0 -h1,2794:17379730,31683232:0,0,0 -k1,2794:32583029,31683232:15203299 -g1,2794:32583029,31683232 -) -(1,2798:6630773,32349410:25952256,404226,76021 -(1,2796:6630773,32349410:0,0,0 -g1,2796:6630773,32349410 -g1,2796:6630773,32349410 -g1,2796:6303093,32349410 -(1,2796:6303093,32349410:0,0,0 -) -g1,2796:6630773,32349410 -) -g1,2798:7579210,32349410 -g1,2798:8843793,32349410 -h1,2798:10424521,32349410:0,0,0 -k1,2798:32583029,32349410:22158508 -g1,2798:32583029,32349410 -) -(1,2800:6630773,33670948:25952256,404226,101187 -(1,2799:6630773,33670948:0,0,0 -g1,2799:6630773,33670948 -g1,2799:6630773,33670948 -g1,2799:6303093,33670948 -(1,2799:6303093,33670948:0,0,0 -) -g1,2799:6630773,33670948 -) -k1,2800:6630773,33670948:0 -g1,2800:10424523,33670948 -g1,2800:12637543,33670948 -g1,2800:13269835,33670948 -k1,2800:13269835,33670948:0 -h1,2800:17379730,33670948:0,0,0 -k1,2800:32583029,33670948:15203299 -g1,2800:32583029,33670948 -) -(1,2804:6630773,34337126:25952256,404226,76021 -(1,2802:6630773,34337126:0,0,0 -g1,2802:6630773,34337126 -g1,2802:6630773,34337126 -g1,2802:6303093,34337126 -(1,2802:6303093,34337126:0,0,0 -) -g1,2802:6630773,34337126 -) -g1,2804:7579210,34337126 -g1,2804:8843793,34337126 -h1,2804:10108376,34337126:0,0,0 -k1,2804:32583028,34337126:22474652 -g1,2804:32583028,34337126 -) -(1,2806:6630773,35658664:25952256,404226,82312 -(1,2805:6630773,35658664:0,0,0 -g1,2805:6630773,35658664 -g1,2805:6630773,35658664 -g1,2805:6303093,35658664 -(1,2805:6303093,35658664:0,0,0 -) -g1,2805:6630773,35658664 -) -k1,2806:6630773,35658664:0 -g1,2806:10424523,35658664 -g1,2806:12637543,35658664 -g1,2806:13269835,35658664 -k1,2806:13269835,35658664:0 -h1,2806:17379730,35658664:0,0,0 -k1,2806:32583029,35658664:15203299 -g1,2806:32583029,35658664 -) -(1,2810:6630773,36324842:25952256,404226,76021 -(1,2808:6630773,36324842:0,0,0 -g1,2808:6630773,36324842 -g1,2808:6630773,36324842 -g1,2808:6303093,36324842 -(1,2808:6303093,36324842:0,0,0 -) -g1,2808:6630773,36324842 -) -g1,2810:7579210,36324842 -g1,2810:8843793,36324842 -h1,2810:10108376,36324842:0,0,0 -k1,2810:32583028,36324842:22474652 -g1,2810:32583028,36324842 -) -] -) -g1,2811:32583029,36400863 -g1,2811:6630773,36400863 -g1,2811:6630773,36400863 -g1,2811:32583029,36400863 -g1,2811:32583029,36400863 -) -h1,2811:6630773,36597471:0,0,0 -(1,2815:6630773,37940084:25952256,505283,134348 -h1,2814:6630773,37940084:983040,0,0 -k1,2814:10468740,37940084:250526 -k1,2814:13928564,37940084:250526 -k1,2814:15841083,37940084:250526 -k1,2814:16743037,37940084:250526 -k1,2814:18716505,37940084:250526 -k1,2814:20789588,37940084:250527 -k1,2814:23109741,37940084:250526 -k1,2814:26437182,37940084:250526 -k1,2814:27219205,37940084:250526 -k1,2814:28754237,37940084:250526 -k1,2814:30384951,37940084:250526 -k1,2815:32583029,37940084:0 -) -(1,2815:6630773,38781572:25952256,513147,126483 -k1,2814:8113940,38781572:177690 -k1,2814:11768970,38781572:177690 -k1,2814:12424417,38781572:177690 -k1,2814:13621192,38781572:177690 -k1,2814:15641754,38781572:177690 -k1,2814:16350941,38781572:177690 -k1,2814:18666415,38781572:177690 -k1,2814:20411725,38781572:177689 -k1,2814:21608500,38781572:177690 -k1,2814:23092323,38781572:177690 -k1,2814:24591874,38781572:177690 -k1,2814:25428856,38781572:177690 -k1,2814:26625631,38781572:177690 -k1,2814:30163352,38781572:177690 -k1,2814:31360127,38781572:177690 -k1,2814:32583029,38781572:0 -) -(1,2815:6630773,39623060:25952256,513147,126483 -k1,2814:7449922,39623060:159857 -k1,2814:8628865,39623060:159858 -k1,2814:11975082,39623060:159857 -k1,2814:12666436,39623060:159857 -k1,2814:13892565,39623060:159858 -k1,2814:17287279,39623060:159857 -k1,2814:18531102,39623060:159857 -k1,2814:19342387,39623060:159857 -k1,2814:23167018,39623060:159858 -k1,2814:24875491,39623060:159857 -k1,2814:27740019,39623060:159857 -k1,2814:29597915,39623060:159858 -k1,2814:30928245,39623060:159857 -k1,2814:32583029,39623060:0 -) -(1,2815:6630773,40464548:25952256,513147,134348 -k1,2814:7852781,40464548:202923 -k1,2814:11031039,40464548:202923 -k1,2814:14897425,40464548:202923 -k1,2814:18028497,40464548:202923 -k1,2814:21535090,40464548:202923 -k1,2814:22269509,40464548:202922 -k1,2814:24623324,40464548:202923 -k1,2814:25512409,40464548:202923 -k1,2814:26734417,40464548:202923 -k1,2814:28243473,40464548:202923 -k1,2814:31478747,40464548:202923 -k1,2814:32583029,40464548:0 -) -(1,2815:6630773,41306036:25952256,513147,134348 -k1,2814:7534655,41306036:156116 -k1,2814:9203997,41306036:156116 -k1,2814:10046275,41306036:156116 -k1,2814:10558251,41306036:156116 -k1,2814:12568381,41306036:156116 -k1,2814:16013094,41306036:156116 -k1,2814:16525069,41306036:156115 -k1,2814:18134774,41306036:156116 -k1,2814:21323241,41306036:156116 -k1,2814:23046978,41306036:156116 -k1,2814:24941109,41306036:156116 -k1,2814:28158412,41306036:156116 -k1,2814:30012566,41306036:156116 -k1,2814:30626779,41306036:156116 -k1,2814:32583029,41306036:0 -) -(1,2815:6630773,42147524:25952256,473825,134348 -g1,2814:8960577,42147524 -g1,2814:9930509,42147524 -k1,2815:32583030,42147524:20871908 -g1,2815:32583030,42147524 -) -v1,2817:6630773,43314827:0,393216,0 -(1,2854:6630773,45510161:25952256,2588550,196608 -g1,2854:6630773,45510161 -g1,2854:6630773,45510161 -g1,2854:6434165,45510161 -(1,2854:6434165,45510161:0,2588550,196608 -r1,2854:32779637,45510161:26345472,2785158,196608 -k1,2854:6434165,45510161:-26345472 -) -(1,2854:6434165,45510161:26345472,2588550,196608 -[1,2854:6630773,45510161:25952256,2391942,0 -(1,2819:6630773,43522445:25952256,404226,76021 -(1,2818:6630773,43522445:0,0,0 -g1,2818:6630773,43522445 -g1,2818:6630773,43522445 -g1,2818:6303093,43522445 -(1,2818:6303093,43522445:0,0,0 -) -g1,2818:6630773,43522445 -) -g1,2819:8211502,43522445 -g1,2819:9159939,43522445 -h1,2819:9792230,43522445:0,0,0 -k1,2819:32583030,43522445:22790800 -g1,2819:32583030,43522445 -) -(1,2823:6630773,44188623:25952256,404226,76021 -(1,2821:6630773,44188623:0,0,0 -g1,2821:6630773,44188623 -g1,2821:6630773,44188623 -g1,2821:6303093,44188623 -(1,2821:6303093,44188623:0,0,0 -) -g1,2821:6630773,44188623 -) -g1,2823:7579210,44188623 -g1,2823:8843793,44188623 -h1,2823:10108376,44188623:0,0,0 -k1,2823:32583028,44188623:22474652 -g1,2823:32583028,44188623 -) -(1,2825:6630773,45510161:25952256,404226,76021 -(1,2824:6630773,45510161:0,0,0 -g1,2824:6630773,45510161 -g1,2824:6630773,45510161 -g1,2824:6303093,45510161 -(1,2824:6303093,45510161:0,0,0 -) -g1,2824:6630773,45510161 -) -g1,2825:8527647,45510161 -g1,2825:9476084,45510161 -h1,2825:10108375,45510161:0,0,0 -k1,2825:32583029,45510161:22474654 -g1,2825:32583029,45510161 -) -] -) -g1,2854:32583029,45510161 -g1,2854:6630773,45510161 -g1,2854:6630773,45510161 -g1,2854:32583029,45510161 -g1,2854:32583029,45510161 -) -] -(1,2854:32583029,45706769:0,0,0 -g1,2854:32583029,45706769 -) -) -] -(1,2854:6630773,47279633:25952256,0,0 -h1,2854:6630773,47279633:25952256,0,0 -) -] -(1,2854:4262630,4025873:0,0,0 -[1,2854:-473656,4025873:0,0,0 -(1,2854:-473656,-710413:0,0,0 -(1,2854:-473656,-710413:0,0,0 -g1,2854:-473656,-710413 -) -g1,2854:-473656,-710413 -) -] -) -] -!26489 -}65 -Input:571:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:572:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:573:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:574:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:575:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:576:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:577:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:578:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:579:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!848 -{66 -[1,2927:4262630,47279633:28320399,43253760,0 -(1,2927:4262630,4025873:0,0,0 -[1,2927:-473656,4025873:0,0,0 -(1,2927:-473656,-710413:0,0,0 -(1,2927:-473656,-644877:0,0,0 -k1,2927:-473656,-644877:-65536 -) -(1,2927:-473656,4736287:0,0,0 -k1,2927:-473656,4736287:5209943 -) -g1,2927:-473656,-710413 -) -] -) -[1,2927:6630773,47279633:25952256,43253760,0 -[1,2927:6630773,4812305:25952256,786432,0 -(1,2927:6630773,4812305:25952256,505283,134348 -(1,2927:6630773,4812305:25952256,505283,134348 -g1,2927:3078558,4812305 -[1,2927:3078558,4812305:0,0,0 -(1,2927:3078558,2439708:0,1703936,0 -k1,2927:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,2927:2537886,2439708:1179648,16384,0 -) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,2927:3078558,1915420:16384,1179648,0 -) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 -) -] -) -) -) -] -[1,2927:3078558,4812305:0,0,0 -(1,2927:3078558,2439708:0,1703936,0 -g1,2927:29030814,2439708 -g1,2927:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,2927:36151628,1915420:16384,1179648,0 -) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 -) -] -) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,2927:37855564,2439708:1179648,16384,0 -) -) -k1,2927:3078556,2439708:-34777008 -) -] -[1,2927:3078558,4812305:0,0,0 -(1,2927:3078558,49800853:0,16384,2228224 -k1,2927:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,2927:2537886,49800853:1179648,16384,0 -) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,2927:3078558,51504789:16384,1179648,0 -) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 -) -] -) -) -) -] -[1,2927:3078558,4812305:0,0,0 -(1,2927:3078558,49800853:0,16384,2228224 -g1,2927:29030814,49800853 -g1,2927:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,2927:36151628,51504789:16384,1179648,0 -) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 -) -] -) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,2927:37855564,49800853:1179648,16384,0 -) -) -k1,2927:3078556,49800853:-34777008 -) -] -g1,2927:6630773,4812305 -g1,2927:6630773,4812305 -g1,2927:9062814,4812305 -g1,2927:11256304,4812305 -g1,2927:12665983,4812305 -g1,2927:15337230,4812305 -g1,2927:17955393,4812305 -k1,2927:31786111,4812305:13830718 -) -) -] -[1,2927:6630773,45706769:25952256,40108032,0 -(1,2927:6630773,45706769:25952256,40108032,0 -(1,2927:6630773,45706769:0,0,0 -g1,2927:6630773,45706769 -) -[1,2927:6630773,45706769:25952256,40108032,0 -v1,2854:6630773,6254097:0,393216,0 -(1,2854:6630773,14488600:25952256,8627719,196608 -g1,2854:6630773,14488600 -g1,2854:6630773,14488600 -g1,2854:6434165,14488600 -(1,2854:6434165,14488600:0,8627719,196608 -r1,2927:32779637,14488600:26345472,8824327,196608 -k1,2854:6434165,14488600:-26345472 -) -(1,2854:6434165,14488600:26345472,8627719,196608 -[1,2854:6630773,14488600:25952256,8431111,0 -(1,2829:6630773,6461715:25952256,404226,76021 -(1,2827:6630773,6461715:0,0,0 -g1,2827:6630773,6461715 -g1,2827:6630773,6461715 -g1,2827:6303093,6461715 -(1,2827:6303093,6461715:0,0,0 -) -g1,2827:6630773,6461715 -) -g1,2829:7579210,6461715 -g1,2829:8843793,6461715 -h1,2829:9476084,6461715:0,0,0 -k1,2829:32583028,6461715:23106944 -g1,2829:32583028,6461715 -) -(1,2831:6630773,7783253:25952256,388497,9436 -(1,2830:6630773,7783253:0,0,0 -g1,2830:6630773,7783253 -g1,2830:6630773,7783253 -g1,2830:6303093,7783253 -(1,2830:6303093,7783253:0,0,0 -) -g1,2830:6630773,7783253 -) -g1,2831:8211502,7783253 -g1,2831:9159939,7783253 -h1,2831:9792230,7783253:0,0,0 -k1,2831:32583030,7783253:22790800 -g1,2831:32583030,7783253 -) -(1,2835:6630773,8449431:25952256,404226,76021 -(1,2833:6630773,8449431:0,0,0 -g1,2833:6630773,8449431 -g1,2833:6630773,8449431 -g1,2833:6303093,8449431 -(1,2833:6303093,8449431:0,0,0 -) -g1,2833:6630773,8449431 -) -g1,2835:7579210,8449431 -g1,2835:8843793,8449431 -h1,2835:9476084,8449431:0,0,0 -k1,2835:32583028,8449431:23106944 -g1,2835:32583028,8449431 -) -(1,2837:6630773,9770969:25952256,388497,9436 -(1,2836:6630773,9770969:0,0,0 -g1,2836:6630773,9770969 -g1,2836:6630773,9770969 -g1,2836:6303093,9770969 -(1,2836:6303093,9770969:0,0,0 -) -g1,2836:6630773,9770969 -) -g1,2837:8527647,9770969 -g1,2837:9476084,9770969 -h1,2837:10108375,9770969:0,0,0 -k1,2837:32583029,9770969:22474654 -g1,2837:32583029,9770969 -) -(1,2841:6630773,10437147:25952256,404226,76021 -(1,2839:6630773,10437147:0,0,0 -g1,2839:6630773,10437147 -g1,2839:6630773,10437147 -g1,2839:6303093,10437147 -(1,2839:6303093,10437147:0,0,0 -) -g1,2839:6630773,10437147 -) -g1,2841:7579210,10437147 -g1,2841:8843793,10437147 -h1,2841:10424521,10437147:0,0,0 -k1,2841:32583029,10437147:22158508 -g1,2841:32583029,10437147 -) -(1,2843:6630773,11758685:25952256,388497,9436 -(1,2842:6630773,11758685:0,0,0 -g1,2842:6630773,11758685 -g1,2842:6630773,11758685 -g1,2842:6303093,11758685 -(1,2842:6303093,11758685:0,0,0 -) -g1,2842:6630773,11758685 -) -g1,2843:8211502,11758685 -g1,2843:9159939,11758685 -g1,2843:11056813,11758685 -g1,2843:12005250,11758685 -h1,2843:12637541,11758685:0,0,0 -k1,2843:32583029,11758685:19945488 -g1,2843:32583029,11758685 -) -(1,2847:6630773,12424863:25952256,404226,76021 -(1,2845:6630773,12424863:0,0,0 -g1,2845:6630773,12424863 -g1,2845:6630773,12424863 -g1,2845:6303093,12424863 -(1,2845:6303093,12424863:0,0,0 -) -g1,2845:6630773,12424863 -) -g1,2847:7579210,12424863 -g1,2847:8843793,12424863 -h1,2847:10424521,12424863:0,0,0 -k1,2847:32583029,12424863:22158508 -g1,2847:32583029,12424863 -) -(1,2849:6630773,13746401:25952256,388497,9436 -(1,2848:6630773,13746401:0,0,0 -g1,2848:6630773,13746401 -g1,2848:6630773,13746401 -g1,2848:6303093,13746401 -(1,2848:6303093,13746401:0,0,0 -) -g1,2848:6630773,13746401 -) -g1,2849:8211502,13746401 -g1,2849:9159939,13746401 -g1,2849:10740668,13746401 -g1,2849:11689105,13746401 -h1,2849:12321396,13746401:0,0,0 -k1,2849:32583028,13746401:20261632 -g1,2849:32583028,13746401 -) -(1,2853:6630773,14412579:25952256,404226,76021 -(1,2851:6630773,14412579:0,0,0 -g1,2851:6630773,14412579 -g1,2851:6630773,14412579 -g1,2851:6303093,14412579 -(1,2851:6303093,14412579:0,0,0 -) -g1,2851:6630773,14412579 -) -g1,2853:7579210,14412579 -g1,2853:8843793,14412579 -h1,2853:9476084,14412579:0,0,0 -k1,2853:32583028,14412579:23106944 -g1,2853:32583028,14412579 -) -] -) -g1,2854:32583029,14488600 -g1,2854:6630773,14488600 -g1,2854:6630773,14488600 -g1,2854:32583029,14488600 -g1,2854:32583029,14488600 -) -h1,2854:6630773,14685208:0,0,0 -v1,2858:6630773,16382978:0,393216,0 -(1,2859:6630773,17791352:25952256,1801590,0 -g1,2859:6630773,17791352 -g1,2859:6303093,17791352 -r1,2927:6401397,17791352:98304,1801590,0 -g1,2859:6600626,17791352 -g1,2859:6797234,17791352 -[1,2859:6797234,17791352:25785795,1801590,0 -(1,2859:6797234,16815516:25785795,825754,196608 -(1,2858:6797234,16815516:0,825754,196608 -r1,2927:7890375,16815516:1093141,1022362,196608 -k1,2858:6797234,16815516:-1093141 -) -(1,2858:6797234,16815516:1093141,825754,196608 -) -k1,2858:8109593,16815516:219218 -k1,2858:9835811,16815516:327680 -k1,2858:13510087,16815516:219218 -k1,2858:15059686,16815516:219218 -k1,2858:18317807,16815516:219217 -k1,2858:19556110,16815516:219218 -k1,2858:21514654,16815516:219218 -k1,2858:22393164,16815516:219218 -k1,2858:23631467,16815516:219218 -k1,2858:26823398,16815516:219218 -k1,2858:27658653,16815516:219217 -k1,2858:28896956,16815516:219218 -k1,2858:30612361,16815516:219218 -k1,2858:32583029,16815516:0 -) -(1,2859:6797234,17657004:25785795,513147,134348 -g1,2858:8851787,17657004 -g1,2858:11160620,17657004 -g1,2858:12378934,17657004 -g1,2858:14588808,17657004 -g1,2858:17740434,17657004 -g1,2858:19355896,17657004 -g1,2858:20574210,17657004 -g1,2858:22079572,17657004 -g1,2858:25465161,17657004 -g1,2858:28437874,17657004 -(1,2858:28437874,17657004:0,452978,115847 -r1,2927:31961547,17657004:3523673,568825,115847 -k1,2858:28437874,17657004:-3523673 -) -(1,2858:28437874,17657004:3523673,452978,115847 -g1,2858:29496287,17657004 -g1,2858:30551423,17657004 -h1,2858:31958270,17657004:0,411205,112570 -) -k1,2859:32583029,17657004:447812 -g1,2859:32583029,17657004 -) -] -g1,2859:32583029,17791352 -) -h1,2859:6630773,17791352:0,0,0 -(1,2862:6630773,19060981:25952256,513147,134348 -h1,2861:6630773,19060981:983040,0,0 -k1,2861:9687611,19060981:290563 -k1,2861:11713566,19060981:290562 -k1,2861:13023214,19060981:290563 -k1,2861:16650870,19060981:290563 -k1,2861:20018348,19060981:290563 -k1,2861:21118280,19060981:290562 -k1,2861:23717021,19060981:290563 -k1,2861:24666876,19060981:290563 -k1,2861:26970705,19060981:290563 -k1,2861:29519638,19060981:290562 -k1,2861:31252648,19060981:290563 -k1,2861:32583029,19060981:0 -) -(1,2862:6630773,19902469:25952256,513147,126483 -g1,2861:10080588,19902469 -g1,2861:13583487,19902469 -g1,2861:14981370,19902469 -g1,2861:17461907,19902469 -g1,2861:18608787,19902469 -g1,2861:19827101,19902469 -g1,2861:21869202,19902469 -g1,2861:24860265,19902469 -g1,2861:25672256,19902469 -g1,2861:27323107,19902469 -g1,2861:29271492,19902469 -k1,2862:32583029,19902469:523635 -g1,2862:32583029,19902469 -) -v1,2864:6630773,20996787:0,393216,0 -(1,2883:6630773,25922036:25952256,5318465,196608 -g1,2883:6630773,25922036 -g1,2883:6630773,25922036 -g1,2883:6434165,25922036 -(1,2883:6434165,25922036:0,5318465,196608 -r1,2927:32779637,25922036:26345472,5515073,196608 -k1,2883:6434165,25922036:-26345472 -) -(1,2883:6434165,25922036:26345472,5318465,196608 -[1,2883:6630773,25922036:25952256,5121857,0 -(1,2866:6630773,21204405:25952256,404226,82312 -(1,2865:6630773,21204405:0,0,0 -g1,2865:6630773,21204405 -g1,2865:6630773,21204405 -g1,2865:6303093,21204405 -(1,2865:6303093,21204405:0,0,0 -) -g1,2865:6630773,21204405 -) -k1,2866:6630773,21204405:0 -g1,2866:9159940,21204405 -g1,2866:11372960,21204405 -g1,2866:12005252,21204405 -g1,2866:16115148,21204405 -g1,2866:16747440,21204405 -h1,2866:17379731,21204405:0,0,0 -k1,2866:32583029,21204405:15203298 -g1,2866:32583029,21204405 -) -(1,2870:6630773,21870583:25952256,404226,76021 -(1,2868:6630773,21870583:0,0,0 -g1,2868:6630773,21870583 -g1,2868:6630773,21870583 -g1,2868:6303093,21870583 -(1,2868:6303093,21870583:0,0,0 -) -g1,2868:6630773,21870583 -) -g1,2870:7579210,21870583 -g1,2870:8843793,21870583 -g1,2870:9159939,21870583 -g1,2870:9476085,21870583 -g1,2870:9792231,21870583 -g1,2870:10740668,21870583 -h1,2870:12321396,21870583:0,0,0 -k1,2870:32583028,21870583:20261632 -g1,2870:32583028,21870583 -) -(1,2872:6630773,23192121:25952256,404226,82312 -(1,2871:6630773,23192121:0,0,0 -g1,2871:6630773,23192121 -g1,2871:6630773,23192121 -g1,2871:6303093,23192121 -(1,2871:6303093,23192121:0,0,0 -) -g1,2871:6630773,23192121 -) -k1,2872:6630773,23192121:0 -g1,2872:9159940,23192121 -g1,2872:11372960,23192121 -g1,2872:12005252,23192121 -g1,2872:16115148,23192121 -g1,2872:16747440,23192121 -g1,2872:18644315,23192121 -h1,2872:19592752,23192121:0,0,0 -k1,2872:32583029,23192121:12990277 -g1,2872:32583029,23192121 -) -(1,2876:6630773,23858299:25952256,404226,76021 -(1,2874:6630773,23858299:0,0,0 -g1,2874:6630773,23858299 -g1,2874:6630773,23858299 -g1,2874:6303093,23858299 -(1,2874:6303093,23858299:0,0,0 -) -g1,2874:6630773,23858299 -) -g1,2876:7579210,23858299 -g1,2876:8843793,23858299 -g1,2876:9159939,23858299 -g1,2876:9476085,23858299 -g1,2876:9792231,23858299 -g1,2876:10740668,23858299 -h1,2876:12321396,23858299:0,0,0 -k1,2876:32583028,23858299:20261632 -g1,2876:32583028,23858299 -) -(1,2878:6630773,25179837:25952256,404226,82312 -(1,2877:6630773,25179837:0,0,0 -g1,2877:6630773,25179837 -g1,2877:6630773,25179837 -g1,2877:6303093,25179837 -(1,2877:6303093,25179837:0,0,0 -) -g1,2877:6630773,25179837 -) -k1,2878:6630773,25179837:0 -g1,2878:9159940,25179837 -g1,2878:11372960,25179837 -g1,2878:12005252,25179837 -g1,2878:16115148,25179837 -g1,2878:16747440,25179837 -g1,2878:18644315,25179837 -h1,2878:19592752,25179837:0,0,0 -k1,2878:32583029,25179837:12990277 -g1,2878:32583029,25179837 -) -(1,2882:6630773,25846015:25952256,404226,76021 -(1,2880:6630773,25846015:0,0,0 -g1,2880:6630773,25846015 -g1,2880:6630773,25846015 -g1,2880:6303093,25846015 -(1,2880:6303093,25846015:0,0,0 -) -g1,2880:6630773,25846015 -) -g1,2882:7579210,25846015 -g1,2882:8843793,25846015 -g1,2882:10424522,25846015 -h1,2882:11689105,25846015:0,0,0 -k1,2882:32583029,25846015:20893924 -g1,2882:32583029,25846015 -) -] -) -g1,2883:32583029,25922036 -g1,2883:6630773,25922036 -g1,2883:6630773,25922036 -g1,2883:32583029,25922036 -g1,2883:32583029,25922036 -) -h1,2883:6630773,26118644:0,0,0 -v1,2887:6630773,27816414:0,393216,0 -(1,2898:6630773,37848326:25952256,10425128,0 -g1,2898:6630773,37848326 -g1,2898:6303093,37848326 -r1,2927:6401397,37848326:98304,10425128,0 -g1,2898:6600626,37848326 -g1,2898:6797234,37848326 -[1,2898:6797234,37848326:25785795,10425128,0 -(1,2888:6797234,28248952:25785795,825754,196608 -(1,2887:6797234,28248952:0,825754,196608 -r1,2927:7890375,28248952:1093141,1022362,196608 -k1,2887:6797234,28248952:-1093141 -) -(1,2887:6797234,28248952:1093141,825754,196608 -) -k1,2887:8045494,28248952:155119 -k1,2887:9771712,28248952:327680 -k1,2887:11780188,28248952:155118 -k1,2887:12744677,28248952:155119 -k1,2887:13918881,28248952:155119 -k1,2887:17683722,28248952:155118 -k1,2887:18498133,28248952:155119 -k1,2887:22112898,28248952:155119 -k1,2887:25441925,28248952:155118 -k1,2887:26406414,28248952:155119 -k1,2887:28059686,28248952:155119 -h1,2887:28856604,28248952:0,0,0 -k1,2887:29011722,28248952:155118 -k1,2887:30114492,28248952:155119 -(1,2887:30114492,28248952:0,452978,115847 -r1,2927:32583029,28248952:2468537,568825,115847 -k1,2887:30114492,28248952:-2468537 -) -(1,2887:30114492,28248952:2468537,452978,115847 -k1,2887:30114492,28248952:3277 -h1,2887:32579752,28248952:0,411205,112570 -) -k1,2887:32583029,28248952:0 -) -(1,2888:6797234,29090440:25785795,505283,134348 -k1,2887:10280546,29090440:232726 -k1,2887:12881742,29090440:232725 -k1,2887:14444849,29090440:232726 -k1,2887:18137220,29090440:232725 -k1,2887:20296704,29090440:232726 -k1,2887:21923380,29090440:232725 -k1,2887:25493199,29090440:232726 -k1,2887:27795551,29090440:232725 -k1,2887:31278863,29090440:232726 -k1,2888:32583029,29090440:0 -) -(1,2888:6797234,29931928:25785795,513147,134348 -k1,2887:7966778,29931928:209442 -k1,2887:10245847,29931928:209442 -k1,2887:12763468,29931928:209443 -k1,2887:13632202,29931928:209442 -k1,2887:16603987,29931928:209442 -k1,2887:19156996,29931928:209442 -k1,2887:22554109,29931928:209442 -k1,2887:24776817,29931928:209442 -k1,2887:26350064,29931928:209443 -k1,2887:27750951,29931928:209442 -k1,2887:29354344,29931928:209442 -k1,2887:30325314,29931928:209442 -k1,2887:32583029,29931928:0 -) -(1,2888:6797234,30773416:25785795,505283,134348 -k1,2887:9186622,30773416:157887 -k1,2887:10840696,30773416:157887 -k1,2887:14515245,30773416:157887 -k1,2887:16067083,30773416:157887 -k1,2887:19629565,30773416:157887 -k1,2887:20596822,30773416:157887 -k1,2887:22567436,30773416:157888 -k1,2887:23554353,30773416:157887 -k1,2887:24690693,30773416:157887 -k1,2887:26019053,30773416:157887 -k1,2887:28607015,30773416:157887 -k1,2887:29921612,30773416:157887 -k1,2887:32583029,30773416:0 -) -(1,2888:6797234,31614904:25785795,505283,134348 -k1,2887:7548529,31614904:219798 -k1,2887:9463087,31614904:219797 -k1,2887:11724987,31614904:219798 -k1,2887:14380757,31614904:219797 -k1,2887:15803796,31614904:219798 -k1,2887:18858681,31614904:219798 -k1,2887:20269923,31614904:219797 -k1,2887:21923649,31614904:219798 -k1,2887:24072827,31614904:219798 -k1,2887:25484069,31614904:219797 -k1,2887:26821911,31614904:219798 -k1,2887:28500539,31614904:219797 -k1,2887:30224388,31614904:219798 -k1,2887:32583029,31614904:0 -) -(1,2888:6797234,32456392:25785795,505283,126483 -k1,2887:8382059,32456392:203981 -k1,2887:9870545,32456392:203980 -k1,2887:11244999,32456392:203981 -k1,2887:15113752,32456392:203980 -k1,2887:16614691,32456392:203981 -k1,2887:17837757,32456392:203981 -k1,2887:20052382,32456392:203980 -k1,2887:23035090,32456392:203981 -k1,2887:24230630,32456392:203980 -k1,2887:25983227,32456392:203981 -k1,2887:27567395,32456392:203980 -k1,2887:28936606,32456392:203981 -k1,2887:32583029,32456392:0 -) -(1,2888:6797234,33297880:25785795,513147,126483 -k1,2887:8167387,33297880:199680 -k1,2887:9499529,33297880:199680 -k1,2887:11229475,33297880:199680 -k1,2887:12080583,33297880:199680 -k1,2887:14284354,33297880:199680 -k1,2887:16715535,33297880:199680 -k1,2887:19906934,33297880:199680 -k1,2887:20789499,33297880:199680 -k1,2887:22180624,33297880:199680 -k1,2887:24077686,33297880:199680 -k1,2887:24928794,33297880:199680 -k1,2887:26766219,33297880:199680 -k1,2887:28032170,33297880:199680 -k1,2887:28899006,33297880:199680 -k1,2887:29513528,33297880:199679 -k1,2887:30483911,33297880:199680 -k1,2888:32583029,33297880:0 -) -(1,2888:6797234,34139368:25785795,513147,134348 -k1,2887:9774360,34139368:208230 -k1,2887:10641881,34139368:208229 -k1,2887:12180492,34139368:208230 -k1,2887:12744582,34139368:208230 -k1,2887:15150890,34139368:208230 -k1,2887:17634529,34139368:208229 -k1,2887:18502051,34139368:208230 -k1,2887:19729366,34139368:208230 -k1,2887:22779892,34139368:208230 -k1,2887:25088550,34139368:208229 -k1,2887:26021608,34139368:208230 -k1,2887:27045106,34139368:208230 -k1,2887:28319607,34139368:208230 -k1,2887:29807754,34139368:208229 -k1,2887:30851568,34139368:208230 -k1,2887:32583029,34139368:0 -) -(1,2888:6797234,34980856:25785795,513147,134348 -g1,2887:8187908,34980856 -g1,2887:10102870,34980856 -g1,2887:11394584,34980856 -g1,2887:12253105,34980856 -g1,2887:13911165,34980856 -k1,2888:32583029,34980856:14707591 -g1,2888:32583029,34980856 -) -v1,2890:6797234,36171322:0,393216,0 -(1,2895:6797234,37127430:25785795,1349324,196608 -g1,2895:6797234,37127430 -g1,2895:6797234,37127430 -g1,2895:6600626,37127430 -(1,2895:6600626,37127430:0,1349324,196608 -r1,2927:32779637,37127430:26179011,1545932,196608 -k1,2895:6600625,37127430:-26179012 -) -(1,2895:6600626,37127430:26179011,1349324,196608 -[1,2895:6797234,37127430:25785795,1152716,0 -(1,2892:6797234,36378940:25785795,404226,82312 -(1,2891:6797234,36378940:0,0,0 -g1,2891:6797234,36378940 -g1,2891:6797234,36378940 -g1,2891:6469554,36378940 -(1,2891:6469554,36378940:0,0,0 -) -g1,2891:6797234,36378940 -) -k1,2892:6797234,36378940:0 -g1,2892:9326401,36378940 -g1,2892:11539421,36378940 -g1,2892:13436296,36378940 -g1,2892:14700879,36378940 -g1,2892:15333171,36378940 -h1,2892:16913899,36378940:0,0,0 -k1,2892:32583029,36378940:15669130 -g1,2892:32583029,36378940 -) -(1,2893:6797234,37045118:25785795,404226,82312 -h1,2893:6797234,37045118:0,0,0 -g1,2893:9326401,37045118 -g1,2893:11539421,37045118 -g1,2893:13436296,37045118 -g1,2893:14700879,37045118 -g1,2893:15333171,37045118 -g1,2893:17862338,37045118 -h1,2893:19759212,37045118:0,0,0 -k1,2893:32583029,37045118:12823817 -g1,2893:32583029,37045118 -) -] -) -g1,2895:32583029,37127430 -g1,2895:6797234,37127430 -g1,2895:6797234,37127430 -g1,2895:32583029,37127430 -g1,2895:32583029,37127430 -) -h1,2895:6797234,37324038:0,0,0 -] -g1,2898:32583029,37848326 -) -h1,2898:6630773,37848326:0,0,0 -v1,2901:6630773,39117955:0,393216,0 -(1,2927:6630773,45706769:25952256,6982030,0 -g1,2927:6630773,45706769 -g1,2927:6303093,45706769 -r1,2927:6401397,45706769:98304,6982030,0 -g1,2927:6600626,45706769 -g1,2927:6797234,45706769 -[1,2927:6797234,45706769:25785795,6982030,0 -(1,2902:6797234,39513058:25785795,788319,218313 -(1,2901:6797234,39513058:0,788319,218313 -r1,2927:7917113,39513058:1119879,1006632,218313 -k1,2901:6797234,39513058:-1119879 -) -(1,2901:6797234,39513058:1119879,788319,218313 -) -g1,2901:8116342,39513058 -g1,2901:8444022,39513058 -g1,2901:10152545,39513058 -g1,2901:11016309,39513058 -g1,2901:12442372,39513058 -g1,2901:13132466,39513058 -g1,2901:13701318,39513058 -g1,2901:16021292,39513058 -g1,2901:19017598,39513058 -g1,2901:20055033,39513058 -g1,2901:22407775,39513058 -g1,2901:24371233,39513058 -g1,2901:26052231,39513058 -(1,2901:26052231,39513058:0,414482,115847 -r1,2927:26762209,39513058:709978,530329,115847 -k1,2901:26052231,39513058:-709978 -) -(1,2901:26052231,39513058:709978,414482,115847 -k1,2901:26052231,39513058:3277 -h1,2901:26758932,39513058:0,411205,112570 -) -g1,2901:26966681,39513058 -g1,2901:28092589,39513058 -(1,2901:28092589,39513058:0,414482,115847 -r1,2927:29154278,39513058:1061689,530329,115847 -k1,2901:28092589,39513058:-1061689 -) -(1,2901:28092589,39513058:1061689,414482,115847 -k1,2901:28092589,39513058:3277 -h1,2901:29151001,39513058:0,411205,112570 -) -g1,2901:29573053,39513058 -k1,2901:32583029,39513058:530749 -g1,2902:32583029,39513058 -) -(1,2902:6797234,40354546:25785795,505283,126483 -k1,2901:7484963,40354546:200141 -k1,2901:8784799,40354546:200142 -k1,2901:9636368,40354546:200141 -(1,2901:9636368,40354546:0,452978,115847 -r1,2927:12104905,40354546:2468537,568825,115847 -k1,2901:9636368,40354546:-2468537 -) -(1,2901:9636368,40354546:2468537,452978,115847 -k1,2901:9636368,40354546:3277 -h1,2901:12101628,40354546:0,411205,112570 -) -k1,2901:12305047,40354546:200142 -k1,2901:14846135,40354546:200142 -k1,2901:15402137,40354546:200142 -(1,2901:15402137,40354546:0,452978,122846 -r1,2927:17870674,40354546:2468537,575824,122846 -k1,2901:15402137,40354546:-2468537 -) -(1,2901:15402137,40354546:2468537,452978,122846 -k1,2901:15402137,40354546:3277 -h1,2901:17867397,40354546:0,411205,112570 -) -k1,2901:18070815,40354546:200141 -k1,2901:20248834,40354546:200142 -k1,2901:21733482,40354546:200142 -k1,2901:22801976,40354546:200142 -k1,2901:24106399,40354546:200141 -k1,2901:25743746,40354546:200142 -k1,2901:26595316,40354546:200142 -(1,2901:26595316,40354546:0,452978,115847 -r1,2927:28360429,40354546:1765113,568825,115847 -k1,2901:26595316,40354546:-1765113 -) -(1,2901:26595316,40354546:1765113,452978,115847 -k1,2901:26595316,40354546:3277 -h1,2901:28357152,40354546:0,411205,112570 -) -k1,2901:28734241,40354546:200142 -k1,2901:29887931,40354546:200141 -k1,2901:31192355,40354546:200142 -k1,2901:32583029,40354546:0 -) -(1,2902:6797234,41196034:25785795,505283,134348 -k1,2901:8028199,41196034:211880 -k1,2901:12298067,41196034:211879 -k1,2901:14487824,41196034:211880 -(1,2901:14487824,41196034:0,414482,115847 -r1,2927:15901225,41196034:1413401,530329,115847 -k1,2901:14487824,41196034:-1413401 -) -(1,2901:14487824,41196034:1413401,414482,115847 -k1,2901:14487824,41196034:3277 -h1,2901:15897948,41196034:0,411205,112570 -) -k1,2901:16113104,41196034:211879 -k1,2901:17516429,41196034:211880 -k1,2901:19165513,41196034:211879 -k1,2901:19835490,41196034:211880 -k1,2901:20733531,41196034:211879 -k1,2901:24017739,41196034:211880 -k1,2901:24881046,41196034:211879 -(1,2901:24881046,41196034:0,452978,115847 -r1,2927:27349583,41196034:2468537,568825,115847 -k1,2901:24881046,41196034:-2468537 -) -(1,2901:24881046,41196034:2468537,452978,115847 -k1,2901:24881046,41196034:3277 -h1,2901:27346306,41196034:0,411205,112570 -) -k1,2901:27735133,41196034:211880 -k1,2901:28629897,41196034:211879 -k1,2901:32583029,41196034:0 -) -(1,2902:6797234,42037522:25785795,513147,7863 -g1,2901:8345849,42037522 -g1,2901:9564163,42037522 -g1,2901:12458888,42037522 -k1,2902:32583030,42037522:18520476 -g1,2902:32583030,42037522 -) -v1,2904:6797234,43227988:0,393216,0 -(1,2913:6797234,45510161:25785795,2675389,196608 -g1,2913:6797234,45510161 -g1,2913:6797234,45510161 -g1,2913:6600626,45510161 -(1,2913:6600626,45510161:0,2675389,196608 -r1,2927:32779637,45510161:26179011,2871997,196608 -k1,2913:6600625,45510161:-26179012 -) -(1,2913:6600626,45510161:26179011,2675389,196608 -[1,2913:6797234,45510161:25785795,2478781,0 -(1,2906:6797234,43435606:25785795,404226,101187 -(1,2905:6797234,43435606:0,0,0 -g1,2905:6797234,43435606 -g1,2905:6797234,43435606 -g1,2905:6469554,43435606 -(1,2905:6469554,43435606:0,0,0 -) -g1,2905:6797234,43435606 -) -g1,2906:8377963,43435606 -g1,2906:9326401,43435606 -g1,2906:11855567,43435606 -g1,2906:12804005,43435606 -g1,2906:13436297,43435606 -g1,2906:14700880,43435606 -k1,2906:14700880,43435606:11534 -h1,2906:15976997,43435606:0,0,0 -k1,2906:32583029,43435606:16606032 -g1,2906:32583029,43435606 -) -(1,2907:6797234,44101784:25785795,404226,101187 -h1,2907:6797234,44101784:0,0,0 -g1,2907:8377963,44101784 -g1,2907:9326401,44101784 -k1,2907:9326401,44101784:0 -h1,2907:12804003,44101784:0,0,0 -k1,2907:32583029,44101784:19779026 -g1,2907:32583029,44101784 -) -(1,2908:6797234,44767962:25785795,404226,101187 -h1,2908:6797234,44767962:0,0,0 -k1,2908:6797234,44767962:0 -h1,2908:9642545,44767962:0,0,0 -k1,2908:32583029,44767962:22940484 -g1,2908:32583029,44767962 -) -(1,2912:6797234,45434140:25785795,404226,76021 -(1,2910:6797234,45434140:0,0,0 -g1,2910:6797234,45434140 -g1,2910:6797234,45434140 -g1,2910:6469554,45434140 -(1,2910:6469554,45434140:0,0,0 -) -g1,2910:6797234,45434140 -) -g1,2912:7745671,45434140 -g1,2912:9010254,45434140 -h1,2912:10274837,45434140:0,0,0 -k1,2912:32583029,45434140:22308192 -g1,2912:32583029,45434140 -) -] -) -g1,2913:32583029,45510161 -g1,2913:6797234,45510161 -g1,2913:6797234,45510161 -g1,2913:32583029,45510161 -g1,2913:32583029,45510161 -) -h1,2913:6797234,45706769:0,0,0 -] -g1,2927:32583029,45706769 -) -] -(1,2927:32583029,45706769:0,0,0 -g1,2927:32583029,45706769 -) -) -] -(1,2927:6630773,47279633:25952256,0,0 -h1,2927:6630773,47279633:25952256,0,0 -) -] -(1,2927:4262630,4025873:0,0,0 -[1,2927:-473656,4025873:0,0,0 -(1,2927:-473656,-710413:0,0,0 -(1,2927:-473656,-710413:0,0,0 -g1,2927:-473656,-710413 -) -g1,2927:-473656,-710413 -) -] -) -] -!25281 -}66 -Input:580:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:581:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:582:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:583:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:584:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:585:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:586:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:587:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:588:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:589:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:590:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:591:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:592:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:593:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:594:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:595:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1499 -{67 -[1,3037:4262630,47279633:28320399,43253760,0 -(1,3037:4262630,4025873:0,0,0 -[1,3037:-473656,4025873:0,0,0 -(1,3037:-473656,-710413:0,0,0 -(1,3037:-473656,-644877:0,0,0 -k1,3037:-473656,-644877:-65536 -) -(1,3037:-473656,4736287:0,0,0 -k1,3037:-473656,4736287:5209943 -) -g1,3037:-473656,-710413 -) -] -) -[1,3037:6630773,47279633:25952256,43253760,0 -[1,3037:6630773,4812305:25952256,786432,0 -(1,3037:6630773,4812305:25952256,505283,11795 -(1,3037:6630773,4812305:25952256,505283,11795 -g1,3037:3078558,4812305 -[1,3037:3078558,4812305:0,0,0 -(1,3037:3078558,2439708:0,1703936,0 -k1,3037:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,3037:2537886,2439708:1179648,16384,0 -) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,3037:3078558,1915420:16384,1179648,0 -) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 -) -] -) -) -) -] -[1,3037:3078558,4812305:0,0,0 -(1,3037:3078558,2439708:0,1703936,0 -g1,3037:29030814,2439708 -g1,3037:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,3037:36151628,1915420:16384,1179648,0 -) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 -) -] -) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,3037:37855564,2439708:1179648,16384,0 -) -) -k1,3037:3078556,2439708:-34777008 -) -] -[1,3037:3078558,4812305:0,0,0 -(1,3037:3078558,49800853:0,16384,2228224 -k1,3037:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,3037:2537886,49800853:1179648,16384,0 -) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,3037:3078558,51504789:16384,1179648,0 -) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 -) -] -) -) -) -] -[1,3037:3078558,4812305:0,0,0 -(1,3037:3078558,49800853:0,16384,2228224 -g1,3037:29030814,49800853 -g1,3037:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,3037:36151628,51504789:16384,1179648,0 -) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 -) -] -) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,3037:37855564,49800853:1179648,16384,0 -) -) -k1,3037:3078556,49800853:-34777008 -) -] -g1,3037:6630773,4812305 -k1,3037:22348274,4812305:14920583 -g1,3037:23970945,4812305 -g1,3037:24793421,4812305 -g1,3037:27528893,4812305 -g1,3037:28938572,4812305 -) -) -] -[1,3037:6630773,45706769:25952256,40108032,0 -(1,3037:6630773,45706769:25952256,40108032,0 -(1,3037:6630773,45706769:0,0,0 -g1,3037:6630773,45706769 -) -[1,3037:6630773,45706769:25952256,40108032,0 -v1,2927:6630773,6254097:0,393216,0 -(1,2927:6630773,7924810:25952256,2063929,0 -g1,2927:6630773,7924810 -g1,2927:6303093,7924810 -r1,3037:6401397,7924810:98304,2063929,0 -g1,2927:6600626,7924810 -g1,2927:6797234,7924810 -[1,2927:6797234,7924810:25785795,2063929,0 -v1,2917:6797234,6254097:0,393216,0 -(1,2924:6797234,7203914:25785795,1343033,196608 -g1,2924:6797234,7203914 -g1,2924:6797234,7203914 -g1,2924:6600626,7203914 -(1,2924:6600626,7203914:0,1343033,196608 -r1,3037:32779637,7203914:26179011,1539641,196608 -k1,2924:6600625,7203914:-26179012 -) -(1,2924:6600626,7203914:26179011,1343033,196608 -[1,2924:6797234,7203914:25785795,1146425,0 -(1,2919:6797234,6461715:25785795,404226,76021 -(1,2918:6797234,6461715:0,0,0 -g1,2918:6797234,6461715 -g1,2918:6797234,6461715 -g1,2918:6469554,6461715 -(1,2918:6469554,6461715:0,0,0 -) -g1,2918:6797234,6461715 -) -k1,2919:6797234,6461715:0 -g1,2919:12171711,6461715 -g1,2919:12804003,6461715 -g1,2919:15017023,6461715 -k1,2919:15017023,6461715:0 -h1,2919:16281606,6461715:0,0,0 -k1,2919:32583029,6461715:16301423 -g1,2919:32583029,6461715 -) -(1,2923:6797234,7127893:25785795,404226,76021 -(1,2921:6797234,7127893:0,0,0 -g1,2921:6797234,7127893 -g1,2921:6797234,7127893 -g1,2921:6469554,7127893 -(1,2921:6469554,7127893:0,0,0 -) -g1,2921:6797234,7127893 -) -g1,2923:7745671,7127893 -g1,2923:9010254,7127893 -h1,2923:10274837,7127893:0,0,0 -k1,2923:32583029,7127893:22308192 -g1,2923:32583029,7127893 -) -] -) -g1,2924:32583029,7203914 -g1,2924:6797234,7203914 -g1,2924:6797234,7203914 -g1,2924:32583029,7203914 -g1,2924:32583029,7203914 -) -h1,2924:6797234,7400522:0,0,0 -] -g1,2927:32583029,7924810 -) -h1,2927:6630773,7924810:0,0,0 -v1,2930:6630773,9248959:0,393216,0 -(1,2944:6630773,14854395:25952256,5998652,0 -g1,2944:6630773,14854395 -g1,2944:6303093,14854395 -r1,3037:6401397,14854395:98304,5998652,0 -g1,2944:6600626,14854395 -g1,2944:6797234,14854395 -[1,2944:6797234,14854395:25785795,5998652,0 -(1,2931:6797234,9644062:25785795,788319,218313 -(1,2930:6797234,9644062:0,788319,218313 -r1,3037:7917113,9644062:1119879,1006632,218313 -k1,2930:6797234,9644062:-1119879 -) -(1,2930:6797234,9644062:1119879,788319,218313 -) -g1,2930:8116342,9644062 -g1,2930:8444022,9644062 -g1,2930:10152545,9644062 -g1,2930:11016309,9644062 -g1,2930:12442372,9644062 -g1,2930:13132466,9644062 -g1,2930:13701318,9644062 -g1,2930:16021292,9644062 -g1,2930:19017598,9644062 -g1,2930:20423345,9644062 -g1,2930:21334950,9644062 -g1,2930:23248601,9644062 -(1,2930:23248601,9644062:0,414482,115847 -r1,3037:23958579,9644062:709978,530329,115847 -k1,2930:23248601,9644062:-709978 -) -(1,2930:23248601,9644062:709978,414482,115847 -k1,2930:23248601,9644062:3277 -h1,2930:23955302,9644062:0,411205,112570 -) -g1,2930:24163051,9644062 -g1,2930:25288959,9644062 -(1,2930:25288959,9644062:0,414482,115847 -r1,3037:26350648,9644062:1061689,530329,115847 -k1,2930:25288959,9644062:-1061689 -) -(1,2930:25288959,9644062:1061689,414482,115847 -k1,2930:25288959,9644062:3277 -h1,2930:26347371,9644062:0,411205,112570 -) -g1,2930:26769423,9644062 -k1,2930:32583029,9644062:3334379 -g1,2931:32583029,9644062 -) -(1,2931:6797234,10485550:25785795,505283,126483 -k1,2930:8080303,10485550:233182 -k1,2930:11067963,10485550:233182 -k1,2930:14239123,10485550:233181 -k1,2930:15425854,10485550:233182 -k1,2930:17034637,10485550:233182 -k1,2930:18798085,10485550:233182 -k1,2930:19682694,10485550:233181 -k1,2930:22214224,10485550:233182 -(1,2930:22214224,10485550:0,452978,115847 -r1,3037:23979337,10485550:1765113,568825,115847 -k1,2930:22214224,10485550:-1765113 -) -(1,2930:22214224,10485550:1765113,452978,115847 -k1,2930:22214224,10485550:3277 -h1,2930:23976060,10485550:0,411205,112570 -) -k1,2930:24212519,10485550:233182 -k1,2930:25207229,10485550:233182 -(1,2930:25207229,10485550:0,452978,115847 -r1,3037:26972342,10485550:1765113,568825,115847 -k1,2930:25207229,10485550:-1765113 -) -(1,2930:25207229,10485550:1765113,452978,115847 -k1,2930:25207229,10485550:3277 -h1,2930:26969065,10485550:0,411205,112570 -) -k1,2930:27205524,10485550:233182 -k1,2930:28090133,10485550:233181 -k1,2930:30347067,10485550:233182 -k1,2930:31599334,10485550:233182 -k1,2931:32583029,10485550:0 -) -(1,2931:6797234,11327038:25785795,355205,7863 -k1,2931:32583028,11327038:24125112 -g1,2931:32583028,11327038 -) -v1,2933:6797234,12517504:0,393216,0 -(1,2941:6797234,14133499:25785795,2009211,196608 -g1,2941:6797234,14133499 -g1,2941:6797234,14133499 -g1,2941:6600626,14133499 -(1,2941:6600626,14133499:0,2009211,196608 -r1,3037:32779637,14133499:26179011,2205819,196608 -k1,2941:6600625,14133499:-26179012 -) -(1,2941:6600626,14133499:26179011,2009211,196608 -[1,2941:6797234,14133499:25785795,1812603,0 -(1,2935:6797234,12725122:25785795,404226,101187 -(1,2934:6797234,12725122:0,0,0 -g1,2934:6797234,12725122 -g1,2934:6797234,12725122 -g1,2934:6469554,12725122 -(1,2934:6469554,12725122:0,0,0 -) -g1,2934:6797234,12725122 -) -g1,2935:9010254,12725122 -g1,2935:9958692,12725122 -g1,2935:12487858,12725122 -h1,2935:13120150,12725122:0,0,0 -k1,2935:32583030,12725122:19462880 -g1,2935:32583030,12725122 -) -(1,2936:6797234,13391300:25785795,404226,101187 -h1,2936:6797234,13391300:0,0,0 -k1,2936:6797234,13391300:0 -h1,2936:12487856,13391300:0,0,0 -k1,2936:32583028,13391300:20095172 -g1,2936:32583028,13391300 -) -(1,2940:6797234,14057478:25785795,404226,76021 -(1,2938:6797234,14057478:0,0,0 -g1,2938:6797234,14057478 -g1,2938:6797234,14057478 -g1,2938:6469554,14057478 -(1,2938:6469554,14057478:0,0,0 -) -g1,2938:6797234,14057478 -) -g1,2940:7745671,14057478 -g1,2940:9010254,14057478 -h1,2940:10274837,14057478:0,0,0 -k1,2940:32583029,14057478:22308192 -g1,2940:32583029,14057478 -) -] -) -g1,2941:32583029,14133499 -g1,2941:6797234,14133499 -g1,2941:6797234,14133499 -g1,2941:32583029,14133499 -g1,2941:32583029,14133499 -) -h1,2941:6797234,14330107:0,0,0 -] -g1,2944:32583029,14854395 -) -h1,2944:6630773,14854395:0,0,0 -v1,2950:6630773,16661204:0,393216,0 -(1,2959:6630773,19249735:25952256,2981747,0 -g1,2959:6630773,19249735 -g1,2959:6303093,19249735 -r1,3037:6401397,19249735:98304,2981747,0 -g1,2959:6600626,19249735 -g1,2959:6797234,19249735 -[1,2959:6797234,19249735:25785795,2981747,0 -(1,2951:6797234,17023277:25785795,755289,196608 -(1,2950:6797234,17023277:0,755289,196608 -r1,3037:8134168,17023277:1336934,951897,196608 -k1,2950:6797234,17023277:-1336934 -) -(1,2950:6797234,17023277:1336934,755289,196608 -) -g1,2950:8333397,17023277 -g1,2950:8661077,17023277 -g1,2950:10056993,17023277 -g1,2950:11752409,17023277 -g1,2950:13820069,17023277 -g1,2950:16704308,17023277 -g1,2950:17669653,17023277 -g1,2950:20158710,17023277 -g1,2950:21751890,17023277 -g1,2950:24019435,17023277 -(1,2950:24019435,17023277:0,452978,115847 -r1,3037:26136260,17023277:2116825,568825,115847 -k1,2950:24019435,17023277:-2116825 -) -(1,2950:24019435,17023277:2116825,452978,115847 -k1,2950:24019435,17023277:3277 -h1,2950:26132983,17023277:0,411205,112570 -) -g1,2950:26509159,17023277 -(1,2950:26509159,17023277:0,452978,115847 -r1,3037:28625984,17023277:2116825,568825,115847 -k1,2950:26509159,17023277:-2116825 -) -(1,2950:26509159,17023277:2116825,452978,115847 -k1,2950:26509159,17023277:3277 -h1,2950:28622707,17023277:0,411205,112570 -) -g1,2950:28998883,17023277 -g1,2950:30389557,17023277 -g1,2950:31313614,17023277 -k1,2951:32583029,17023277:286375 -g1,2951:32583029,17023277 -) -v1,2953:6797234,18213743:0,393216,0 -(1,2957:6797234,18528839:25785795,708312,196608 -g1,2957:6797234,18528839 -g1,2957:6797234,18528839 -g1,2957:6600626,18528839 -(1,2957:6600626,18528839:0,708312,196608 -r1,3037:32779637,18528839:26179011,904920,196608 -k1,2957:6600625,18528839:-26179012 -) -(1,2957:6600626,18528839:26179011,708312,196608 -[1,2957:6797234,18528839:25785795,511704,0 -(1,2955:6797234,18421361:25785795,404226,107478 -(1,2954:6797234,18421361:0,0,0 -g1,2954:6797234,18421361 -g1,2954:6797234,18421361 -g1,2954:6469554,18421361 -(1,2954:6469554,18421361:0,0,0 -) -g1,2954:6797234,18421361 -) -k1,2955:6797234,18421361:0 -g1,2955:10590983,18421361 -g1,2955:11223275,18421361 -g1,2955:14700878,18421361 -g1,2955:15333170,18421361 -h1,2955:21656083,18421361:0,0,0 -k1,2955:32583029,18421361:10926946 -g1,2955:32583029,18421361 -) -] -) -g1,2957:32583029,18528839 -g1,2957:6797234,18528839 -g1,2957:6797234,18528839 -g1,2957:32583029,18528839 -g1,2957:32583029,18528839 -) -h1,2957:6797234,18725447:0,0,0 -] -g1,2959:32583029,19249735 -) -h1,2959:6630773,19249735:0,0,0 -(1,2961:6630773,22057303:25952256,32768,229376 -(1,2961:6630773,22057303:0,32768,229376 -(1,2961:6630773,22057303:5505024,32768,229376 -r1,3037:12135797,22057303:5505024,262144,229376 -) -k1,2961:6630773,22057303:-5505024 -) -(1,2961:6630773,22057303:25952256,32768,0 -r1,3037:32583029,22057303:25952256,32768,0 -) -) -(1,2961:6630773,23661631:25952256,606339,151780 -(1,2961:6630773,23661631:1974731,582746,14155 -g1,2961:6630773,23661631 -g1,2961:8605504,23661631 -) -g1,2961:13636310,23661631 -g1,2961:17688794,23661631 -g1,2961:19398497,23661631 -k1,2961:32583029,23661631:8970829 -g1,2961:32583029,23661631 -) -(1,2964:6630773,24896335:25952256,513147,134348 -k1,2963:10756163,24896335:249591 -k1,2963:14082670,24896335:249592 -k1,2963:16342906,24896335:249591 -k1,2963:18900676,24896335:249592 -k1,2963:19817423,24896335:249591 -(1,2963:19817423,24896335:0,452978,122846 -r1,3037:22285960,24896335:2468537,575824,122846 -k1,2963:19817423,24896335:-2468537 -) -(1,2963:19817423,24896335:2468537,452978,122846 -k1,2963:19817423,24896335:3277 -h1,2963:22282683,24896335:0,411205,112570 -) -k1,2963:22535552,24896335:249592 -k1,2963:24795788,24896335:249591 -k1,2963:26277457,24896335:249592 -k1,2963:28805735,24896335:249591 -h1,2963:29776323,24896335:0,0,0 -k1,2963:30025915,24896335:249592 -k1,2963:31084876,24896335:249591 -k1,2963:32583029,24896335:0 -) -(1,2964:6630773,25737823:25952256,505283,134348 -h1,2963:7427691,25737823:0,0,0 -g1,2963:8007684,25737823 -g1,2963:9600864,25737823 -g1,2963:11810738,25737823 -(1,2963:11810738,25737823:0,414482,115847 -r1,3037:13224139,25737823:1413401,530329,115847 -k1,2963:11810738,25737823:-1413401 -) -(1,2963:11810738,25737823:1413401,414482,115847 -k1,2963:11810738,25737823:3277 -h1,2963:13220862,25737823:0,411205,112570 -) -g1,2963:13423368,25737823 -g1,2963:14305482,25737823 -(1,2963:14305482,25737823:0,414482,115847 -r1,3037:16070595,25737823:1765113,530329,115847 -k1,2963:14305482,25737823:-1765113 -) -(1,2963:14305482,25737823:1765113,414482,115847 -k1,2963:14305482,25737823:3277 -h1,2963:16067318,25737823:0,411205,112570 -) -g1,2963:16269824,25737823 -g1,2963:19831050,25737823 -g1,2963:20839649,25737823 -g1,2963:22057963,25737823 -k1,2964:32583029,25737823:7589708 -g1,2964:32583029,25737823 -) -(1,2966:6630773,26579311:25952256,513147,126483 -h1,2965:6630773,26579311:983040,0,0 -k1,2965:10380559,26579311:196424 -(1,2965:10587653,26579311:0,414482,115847 -r1,3037:11297631,26579311:709978,530329,115847 -k1,2965:10587653,26579311:-709978 -) -(1,2965:10587653,26579311:709978,414482,115847 -k1,2965:10587653,26579311:3277 -h1,2965:11294354,26579311:0,411205,112570 -) -k1,2965:11701149,26579311:196424 -k1,2965:13089017,26579311:196423 -k1,2965:16448208,26579311:196424 -(1,2965:16655302,26579311:0,424981,115847 -r1,3037:17365280,26579311:709978,540828,115847 -k1,2965:16655302,26579311:-709978 -) -(1,2965:16655302,26579311:709978,424981,115847 -k1,2965:16655302,26579311:3277 -h1,2965:17362003,26579311:0,411205,112570 -) -k1,2965:17768798,26579311:196424 -k1,2965:21042137,26579311:196424 -k1,2965:22230121,26579311:196424 -k1,2965:24808123,26579311:196424 -k1,2965:26070817,26579311:196423 -k1,2965:27642842,26579311:196424 -k1,2965:28786917,26579311:196424 -(1,2965:28786917,26579311:0,452978,115847 -r1,3037:31255454,26579311:2468537,568825,115847 -k1,2965:28786917,26579311:-2468537 -) -(1,2965:28786917,26579311:2468537,452978,115847 -k1,2965:28786917,26579311:3277 -h1,2965:31252177,26579311:0,411205,112570 -) -k1,2965:31451878,26579311:196424 -k1,2966:32583029,26579311:0 -) -(1,2966:6630773,27420799:25952256,513147,126483 -k1,2965:7886160,27420799:162902 -k1,2965:9121232,27420799:162903 -k1,2965:10569950,27420799:162902 -k1,2965:11680504,27420799:162903 -(1,2965:11680504,27420799:0,452978,115847 -r1,3037:14852464,27420799:3171960,568825,115847 -k1,2965:11680504,27420799:-3171960 -) -(1,2965:11680504,27420799:3171960,452978,115847 -k1,2965:11680504,27420799:3277 -h1,2965:14849187,27420799:0,411205,112570 -) -k1,2965:15015366,27420799:162902 -k1,2965:16369714,27420799:162903 -k1,2965:18134316,27420799:162902 -k1,2965:19999188,27420799:162902 -k1,2965:22324124,27420799:162903 -k1,2965:23678471,27420799:162902 -k1,2965:25593151,27420799:162903 -k1,2965:27458023,27420799:162902 -k1,2965:29805241,27420799:162903 -k1,2965:30714598,27420799:162902 -k1,2965:32583029,27420799:0 -) -(1,2966:6630773,28262287:25952256,513147,134348 -k1,2965:8177695,28262287:262416 -k1,2965:11186726,28262287:262417 -(1,2965:11186726,28262287:0,414482,115847 -r1,3037:11544992,28262287:358266,530329,115847 -k1,2965:11186726,28262287:-358266 -) -(1,2965:11186726,28262287:358266,414482,115847 -k1,2965:11186726,28262287:3277 -h1,2965:11541715,28262287:0,411205,112570 -) -k1,2965:11807408,28262287:262416 -k1,2965:12601322,28262287:262417 -k1,2965:13634441,28262287:262416 -k1,2965:17817877,28262287:262417 -k1,2965:19593519,28262287:262416 -k1,2965:22752626,28262287:262416 -k1,2965:23674335,28262287:262417 -k1,2965:24955836,28262287:262416 -k1,2965:28864021,28262287:262417 -k1,2965:31873051,28262287:262416 -(1,2965:31873051,28262287:0,414482,115847 -r1,3037:32583029,28262287:709978,530329,115847 -k1,2965:31873051,28262287:-709978 -) -(1,2965:31873051,28262287:709978,414482,115847 -k1,2965:31873051,28262287:3277 -h1,2965:32579752,28262287:0,411205,112570 -) -k1,2965:32583029,28262287:0 -) -(1,2966:6630773,29103775:25952256,505283,126483 -g1,2965:8781664,29103775 -g1,2965:10423340,29103775 -g1,2965:10978429,29103775 -g1,2965:14931560,29103775 -k1,2966:32583029,29103775:14731185 -g1,2966:32583029,29103775 -) -v1,2968:6630773,30252614:0,393216,0 -(1,2994:6630773,37831757:25952256,7972359,196608 -g1,2994:6630773,37831757 -g1,2994:6630773,37831757 -g1,2994:6434165,37831757 -(1,2994:6434165,37831757:0,7972359,196608 -r1,3037:32779637,37831757:26345472,8168967,196608 -k1,2994:6434165,37831757:-26345472 -) -(1,2994:6434165,37831757:26345472,7972359,196608 -[1,2994:6630773,37831757:25952256,7775751,0 -(1,2970:6630773,30460232:25952256,404226,101187 -(1,2969:6630773,30460232:0,0,0 -g1,2969:6630773,30460232 -g1,2969:6630773,30460232 -g1,2969:6303093,30460232 -(1,2969:6303093,30460232:0,0,0 -) -g1,2969:6630773,30460232 -) -g1,2970:7263065,30460232 -g1,2970:8211502,30460232 -g1,2970:10108376,30460232 -g1,2970:11689105,30460232 -g1,2970:12637542,30460232 -g1,2970:13902125,30460232 -g1,2970:15166708,30460232 -g1,2970:15799000,30460232 -k1,2970:15799000,30460232:0 -h1,2970:18012020,30460232:0,0,0 -k1,2970:32583029,30460232:14571009 -g1,2970:32583029,30460232 -) -(1,2971:6630773,31126410:25952256,404226,6290 -h1,2971:6630773,31126410:0,0,0 -g1,2971:8527647,31126410 -g1,2971:9476084,31126410 -h1,2971:10740667,31126410:0,0,0 -k1,2971:32583029,31126410:21842362 -g1,2971:32583029,31126410 -) -(1,2975:6630773,31792588:25952256,404226,76021 -(1,2973:6630773,31792588:0,0,0 -g1,2973:6630773,31792588 -g1,2973:6630773,31792588 -g1,2973:6303093,31792588 -(1,2973:6303093,31792588:0,0,0 -) -g1,2973:6630773,31792588 -) -g1,2975:7579210,31792588 -g1,2975:8843793,31792588 -h1,2975:10424521,31792588:0,0,0 -k1,2975:32583029,31792588:22158508 -g1,2975:32583029,31792588 -) -(1,2977:6630773,33114126:25952256,404226,7863 -(1,2976:6630773,33114126:0,0,0 -g1,2976:6630773,33114126 -g1,2976:6630773,33114126 -g1,2976:6303093,33114126 -(1,2976:6303093,33114126:0,0,0 -) -g1,2976:6630773,33114126 -) -g1,2977:8527647,33114126 -g1,2977:9476084,33114126 -h1,2977:11056812,33114126:0,0,0 -k1,2977:32583028,33114126:21526216 -g1,2977:32583028,33114126 -) -(1,2981:6630773,33780304:25952256,404226,76021 -(1,2979:6630773,33780304:0,0,0 -g1,2979:6630773,33780304 -g1,2979:6630773,33780304 -g1,2979:6303093,33780304 -(1,2979:6303093,33780304:0,0,0 -) -g1,2979:6630773,33780304 -) -g1,2981:7579210,33780304 -g1,2981:8843793,33780304 -h1,2981:10424521,33780304:0,0,0 -k1,2981:32583029,33780304:22158508 -g1,2981:32583029,33780304 -) -(1,2983:6630773,35101842:25952256,404226,6290 -(1,2982:6630773,35101842:0,0,0 -g1,2982:6630773,35101842 -g1,2982:6630773,35101842 -g1,2982:6303093,35101842 -(1,2982:6303093,35101842:0,0,0 -) -g1,2982:6630773,35101842 -) -g1,2983:8527647,35101842 -g1,2983:9476084,35101842 -h1,2983:10740667,35101842:0,0,0 -k1,2983:32583029,35101842:21842362 -g1,2983:32583029,35101842 -) -(1,2987:6630773,35768020:25952256,404226,76021 -(1,2985:6630773,35768020:0,0,0 -g1,2985:6630773,35768020 -g1,2985:6630773,35768020 -g1,2985:6303093,35768020 -(1,2985:6303093,35768020:0,0,0 -) -g1,2985:6630773,35768020 -) -g1,2987:7579210,35768020 -g1,2987:8843793,35768020 -h1,2987:10108376,35768020:0,0,0 -k1,2987:32583028,35768020:22474652 -g1,2987:32583028,35768020 -) -(1,2989:6630773,37089558:25952256,404226,7863 -(1,2988:6630773,37089558:0,0,0 -g1,2988:6630773,37089558 -g1,2988:6630773,37089558 -g1,2988:6303093,37089558 -(1,2988:6303093,37089558:0,0,0 -) -g1,2988:6630773,37089558 -) -g1,2989:8527647,37089558 -g1,2989:9476084,37089558 -h1,2989:11056812,37089558:0,0,0 -k1,2989:32583028,37089558:21526216 -g1,2989:32583028,37089558 -) -(1,2993:6630773,37755736:25952256,404226,76021 -(1,2991:6630773,37755736:0,0,0 -g1,2991:6630773,37755736 -g1,2991:6630773,37755736 -g1,2991:6303093,37755736 -(1,2991:6303093,37755736:0,0,0 -) -g1,2991:6630773,37755736 -) -g1,2993:7579210,37755736 -g1,2993:8843793,37755736 -h1,2993:10108376,37755736:0,0,0 -k1,2993:32583028,37755736:22474652 -g1,2993:32583028,37755736 -) -] -) -g1,2994:32583029,37831757 -g1,2994:6630773,37831757 -g1,2994:6630773,37831757 -g1,2994:32583029,37831757 -g1,2994:32583029,37831757 -) -h1,2994:6630773,38028365:0,0,0 -(1,2998:6630773,39352513:25952256,513147,134348 -h1,2997:6630773,39352513:983040,0,0 -k1,2997:8431661,39352513:190013 -k1,2997:9640759,39352513:190013 -k1,2997:11197854,39352513:190014 -k1,2997:12055023,39352513:190013 -(1,2997:12055023,39352513:0,452978,115847 -r1,3037:14523560,39352513:2468537,568825,115847 -k1,2997:12055023,39352513:-2468537 -) -(1,2997:12055023,39352513:2468537,452978,115847 -k1,2997:12055023,39352513:3277 -h1,2997:14520283,39352513:0,411205,112570 -) -k1,2997:14713573,39352513:190013 -k1,2997:16914231,39352513:190013 -k1,2997:20331237,39352513:190013 -k1,2997:24605454,39352513:190013 -k1,2997:25787028,39352513:190014 -k1,2997:29590041,39352513:190013 -k1,2997:30971499,39352513:190013 -k1,2998:32583029,39352513:0 -) -(1,2998:6630773,40194001:25952256,513147,126483 -g1,2997:8658456,40194001 -g1,2997:11934600,40194001 -g1,2997:13125389,40194001 -k1,2998:32583030,40194001:16902392 -g1,2998:32583030,40194001 -) -v1,3000:6630773,41342840:0,393216,0 -(1,3037:6630773,45510161:25952256,4560537,196608 -g1,3037:6630773,45510161 -g1,3037:6630773,45510161 -g1,3037:6434165,45510161 -(1,3037:6434165,45510161:0,4560537,196608 -r1,3037:32779637,45510161:26345472,4757145,196608 -k1,3037:6434165,45510161:-26345472 -) -(1,3037:6434165,45510161:26345472,4560537,196608 -[1,3037:6630773,45510161:25952256,4363929,0 -(1,3002:6630773,41534729:25952256,388497,9436 -(1,3001:6630773,41534729:0,0,0 -g1,3001:6630773,41534729 -g1,3001:6630773,41534729 -g1,3001:6303093,41534729 -(1,3001:6303093,41534729:0,0,0 -) -g1,3001:6630773,41534729 -) -g1,3002:7895356,41534729 -g1,3002:8527648,41534729 -h1,3002:9476085,41534729:0,0,0 -k1,3002:32583029,41534729:23106944 -g1,3002:32583029,41534729 -) -(1,3006:6630773,42200907:25952256,404226,76021 -(1,3004:6630773,42200907:0,0,0 -g1,3004:6630773,42200907 -g1,3004:6630773,42200907 -g1,3004:6303093,42200907 -(1,3004:6303093,42200907:0,0,0 -) -g1,3004:6630773,42200907 -) -g1,3006:7579210,42200907 -g1,3006:8843793,42200907 -h1,3006:10108376,42200907:0,0,0 -k1,3006:32583028,42200907:22474652 -g1,3006:32583028,42200907 -) -(1,3008:6630773,43522445:25952256,388497,9436 -(1,3007:6630773,43522445:0,0,0 -g1,3007:6630773,43522445 -g1,3007:6630773,43522445 -g1,3007:6303093,43522445 -(1,3007:6303093,43522445:0,0,0 -) -g1,3007:6630773,43522445 -) -g1,3008:7895356,43522445 -g1,3008:8843793,43522445 -h1,3008:9792230,43522445:0,0,0 -k1,3008:32583030,43522445:22790800 -g1,3008:32583030,43522445 -) -(1,3012:6630773,44188623:25952256,404226,76021 -(1,3010:6630773,44188623:0,0,0 -g1,3010:6630773,44188623 -g1,3010:6630773,44188623 -g1,3010:6303093,44188623 -(1,3010:6303093,44188623:0,0,0 -) -g1,3010:6630773,44188623 -) -g1,3012:7579210,44188623 -g1,3012:8843793,44188623 -h1,3012:10108376,44188623:0,0,0 -k1,3012:32583028,44188623:22474652 -g1,3012:32583028,44188623 -) -(1,3014:6630773,45510161:25952256,388497,9436 -(1,3013:6630773,45510161:0,0,0 -g1,3013:6630773,45510161 -g1,3013:6630773,45510161 -g1,3013:6303093,45510161 -(1,3013:6303093,45510161:0,0,0 -) -g1,3013:6630773,45510161 -) -g1,3014:7895356,45510161 -g1,3014:8843793,45510161 -h1,3014:9792230,45510161:0,0,0 -k1,3014:32583030,45510161:22790800 -g1,3014:32583030,45510161 -) -] -) -g1,3037:32583029,45510161 -g1,3037:6630773,45510161 -g1,3037:6630773,45510161 -g1,3037:32583029,45510161 -g1,3037:32583029,45510161 -) -] -(1,3037:32583029,45706769:0,0,0 -g1,3037:32583029,45706769 -) -) -] -(1,3037:6630773,47279633:25952256,0,0 -h1,3037:6630773,47279633:25952256,0,0 -) -] -(1,3037:4262630,4025873:0,0,0 -[1,3037:-473656,4025873:0,0,0 -(1,3037:-473656,-710413:0,0,0 -(1,3037:-473656,-710413:0,0,0 -g1,3037:-473656,-710413 -) -g1,3037:-473656,-710413 -) -] -) -] -!24029 -}67 -Input:596:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:597:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:598:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!290 -{68 -[1,3116:4262630,47279633:28320399,43253760,0 -(1,3116:4262630,4025873:0,0,0 -[1,3116:-473656,4025873:0,0,0 -(1,3116:-473656,-710413:0,0,0 -(1,3116:-473656,-644877:0,0,0 -k1,3116:-473656,-644877:-65536 -) -(1,3116:-473656,4736287:0,0,0 -k1,3116:-473656,4736287:5209943 -) -g1,3116:-473656,-710413 -) -] -) -[1,3116:6630773,47279633:25952256,43253760,0 -[1,3116:6630773,4812305:25952256,786432,0 -(1,3116:6630773,4812305:25952256,505283,126483 -(1,3116:6630773,4812305:25952256,505283,126483 -g1,3116:3078558,4812305 -[1,3116:3078558,4812305:0,0,0 -(1,3116:3078558,2439708:0,1703936,0 -k1,3116:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,3116:2537886,2439708:1179648,16384,0 -) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,3116:3078558,1915420:16384,1179648,0 -) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 -) -] -) -) -) -] -[1,3116:3078558,4812305:0,0,0 -(1,3116:3078558,2439708:0,1703936,0 -g1,3116:29030814,2439708 -g1,3116:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,3116:36151628,1915420:16384,1179648,0 -) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 -) -] -) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,3116:37855564,2439708:1179648,16384,0 -) -) -k1,3116:3078556,2439708:-34777008 -) -] -[1,3116:3078558,4812305:0,0,0 -(1,3116:3078558,49800853:0,16384,2228224 -k1,3116:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,3116:2537886,49800853:1179648,16384,0 -) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,3116:3078558,51504789:16384,1179648,0 -) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 -) -] -) -) -) -] -[1,3116:3078558,4812305:0,0,0 -(1,3116:3078558,49800853:0,16384,2228224 -g1,3116:29030814,49800853 -g1,3116:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,3116:36151628,51504789:16384,1179648,0 -) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 -) -] -) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,3116:37855564,49800853:1179648,16384,0 -) -) -k1,3116:3078556,49800853:-34777008 -) -] -g1,3116:6630773,4812305 -g1,3116:6630773,4812305 -g1,3116:10646819,4812305 -g1,3116:13853495,4812305 -g1,3116:15263174,4812305 -g1,3116:18764762,4812305 -k1,3116:31786111,4812305:13021349 -) -) -] -[1,3116:6630773,45706769:25952256,40108032,0 -(1,3116:6630773,45706769:25952256,40108032,0 -(1,3116:6630773,45706769:0,0,0 -g1,3116:6630773,45706769 -) -[1,3116:6630773,45706769:25952256,40108032,0 -v1,3037:6630773,6254097:0,393216,0 -(1,3037:6630773,12500884:25952256,6640003,196608 -g1,3037:6630773,12500884 -g1,3037:6630773,12500884 -g1,3037:6434165,12500884 -(1,3037:6434165,12500884:0,6640003,196608 -r1,3116:32779637,12500884:26345472,6836611,196608 -k1,3037:6434165,12500884:-26345472 -) -(1,3037:6434165,12500884:26345472,6640003,196608 -[1,3037:6630773,12500884:25952256,6443395,0 -(1,3018:6630773,6461715:25952256,404226,76021 -(1,3016:6630773,6461715:0,0,0 -g1,3016:6630773,6461715 -g1,3016:6630773,6461715 -g1,3016:6303093,6461715 -(1,3016:6303093,6461715:0,0,0 -) -g1,3016:6630773,6461715 -) -g1,3018:7579210,6461715 -g1,3018:8843793,6461715 -h1,3018:10424521,6461715:0,0,0 -k1,3018:32583029,6461715:22158508 -g1,3018:32583029,6461715 -) -(1,3020:6630773,7783253:25952256,388497,9436 -(1,3019:6630773,7783253:0,0,0 -g1,3019:6630773,7783253 -g1,3019:6630773,7783253 -g1,3019:6303093,7783253 -(1,3019:6303093,7783253:0,0,0 -) -g1,3019:6630773,7783253 -) -g1,3020:7895356,7783253 -g1,3020:8843793,7783253 -h1,3020:9792230,7783253:0,0,0 -k1,3020:32583030,7783253:22790800 -g1,3020:32583030,7783253 -) -(1,3024:6630773,8449431:25952256,404226,76021 -(1,3022:6630773,8449431:0,0,0 -g1,3022:6630773,8449431 -g1,3022:6630773,8449431 -g1,3022:6303093,8449431 -(1,3022:6303093,8449431:0,0,0 -) -g1,3022:6630773,8449431 -) -g1,3024:7579210,8449431 -g1,3024:8843793,8449431 -h1,3024:10108376,8449431:0,0,0 -k1,3024:32583028,8449431:22474652 -g1,3024:32583028,8449431 -) -(1,3026:6630773,9770969:25952256,388497,9436 -(1,3025:6630773,9770969:0,0,0 -g1,3025:6630773,9770969 -g1,3025:6630773,9770969 -g1,3025:6303093,9770969 -(1,3025:6303093,9770969:0,0,0 -) -g1,3025:6630773,9770969 -) -g1,3026:7895356,9770969 -g1,3026:8843793,9770969 -h1,3026:9792230,9770969:0,0,0 -k1,3026:32583030,9770969:22790800 -g1,3026:32583030,9770969 -) -(1,3030:6630773,10437147:25952256,404226,76021 -(1,3028:6630773,10437147:0,0,0 -g1,3028:6630773,10437147 -g1,3028:6630773,10437147 -g1,3028:6303093,10437147 -(1,3028:6303093,10437147:0,0,0 -) -g1,3028:6630773,10437147 -) -g1,3030:7579210,10437147 -g1,3030:8843793,10437147 -h1,3030:10424521,10437147:0,0,0 -k1,3030:32583029,10437147:22158508 -g1,3030:32583029,10437147 -) -(1,3032:6630773,11758685:25952256,388497,9436 -(1,3031:6630773,11758685:0,0,0 -g1,3031:6630773,11758685 -g1,3031:6630773,11758685 -g1,3031:6303093,11758685 -(1,3031:6303093,11758685:0,0,0 -) -g1,3031:6630773,11758685 -) -g1,3032:7895356,11758685 -g1,3032:8527648,11758685 -h1,3032:9476085,11758685:0,0,0 -k1,3032:32583029,11758685:23106944 -g1,3032:32583029,11758685 -) -(1,3036:6630773,12424863:25952256,404226,76021 -(1,3034:6630773,12424863:0,0,0 -g1,3034:6630773,12424863 -g1,3034:6630773,12424863 -g1,3034:6303093,12424863 -(1,3034:6303093,12424863:0,0,0 -) -g1,3034:6630773,12424863 -) -g1,3036:7579210,12424863 -g1,3036:8843793,12424863 -h1,3036:10424521,12424863:0,0,0 -k1,3036:32583029,12424863:22158508 -g1,3036:32583029,12424863 -) -] -) -g1,3037:32583029,12500884 -g1,3037:6630773,12500884 -g1,3037:6630773,12500884 -g1,3037:32583029,12500884 -g1,3037:32583029,12500884 -) -h1,3037:6630773,12697492:0,0,0 -(1,3041:6630773,14051708:25952256,513147,134348 -h1,3040:6630773,14051708:983040,0,0 -k1,3040:9724962,14051708:236819 -k1,3040:13038696,14051708:236819 -k1,3040:14379797,14051708:236819 -k1,3040:15364382,14051708:236819 -k1,3040:17114427,14051708:236819 -k1,3040:18160616,14051708:236819 -k1,3040:20705613,14051708:236819 -k1,3040:21601724,14051708:236819 -k1,3040:22970350,14051708:236819 -k1,3040:25394105,14051708:236819 -k1,3040:28631818,14051708:236819 -k1,3040:29554799,14051708:236819 -k1,3040:30147478,14051708:236819 -k1,3040:32227169,14051708:236819 -k1,3040:32583029,14051708:0 -) -(1,3041:6630773,14893196:25952256,505283,134348 -k1,3040:8935300,14893196:234900 -k1,3040:11148076,14893196:234899 -k1,3040:12069138,14893196:234900 -k1,3040:13692746,14893196:234900 -k1,3040:14613808,14893196:234900 -k1,3040:15867792,14893196:234899 -k1,3040:18425943,14893196:234900 -k1,3040:21476925,14893196:234900 -k1,3040:22339659,14893196:234899 -k1,3040:24276529,14893196:234900 -k1,3040:26640038,14893196:234900 -k1,3040:28255126,14893196:234900 -k1,3040:30713006,14893196:234899 -k1,3040:31563944,14893196:234900 -k1,3040:32583029,14893196:0 -) -(1,3041:6630773,15734684:25952256,505283,134348 -k1,3040:8511874,15734684:227628 -k1,3040:9977478,15734684:227629 -k1,3040:10891268,15734684:227628 -k1,3040:12137981,15734684:227628 -k1,3040:15641754,15734684:227628 -k1,3040:18946298,15734684:227629 -k1,3040:22263949,15734684:227628 -k1,3040:23300947,15734684:227628 -k1,3040:25026728,15734684:227628 -h1,3040:25823646,15734684:0,0,0 -k1,3040:26224945,15734684:227629 -k1,3040:27961212,15734684:227628 -k1,3040:31591469,15734684:227628 -k1,3040:32583029,15734684:0 -) -(1,3041:6630773,16576172:25952256,513147,126483 -k1,3040:9504901,16576172:236959 -k1,3040:11439899,16576172:236960 -k1,3040:14148876,16576172:236959 -k1,3040:15937728,16576172:236959 -k1,3040:16640648,16576172:236959 -k1,3040:18048081,16576172:236960 -k1,3040:19100308,16576172:236959 -k1,3040:20403538,16576172:236959 -k1,3040:22363440,16576172:236960 -k1,3040:24149015,16576172:236959 -k1,3040:26066317,16576172:236959 -k1,3040:26834773,16576172:236959 -k1,3040:29109903,16576172:236960 -k1,3040:29962900,16576172:236959 -k1,3040:32583029,16576172:0 -) -(1,3041:6630773,17417660:25952256,513147,115847 -g1,3040:8807879,17417660 -(1,3040:8807879,17417660:0,414482,115847 -r1,3116:9166145,17417660:358266,530329,115847 -k1,3040:8807879,17417660:-358266 -) -(1,3040:8807879,17417660:358266,414482,115847 -k1,3040:8807879,17417660:3277 -h1,3040:9162868,17417660:0,411205,112570 -) -g1,3040:9539044,17417660 -g1,3040:10830758,17417660 -(1,3040:10830758,17417660:0,452978,115847 -r1,3116:13651007,17417660:2820249,568825,115847 -k1,3040:10830758,17417660:-2820249 -) -(1,3040:10830758,17417660:2820249,452978,115847 -k1,3040:10830758,17417660:3277 -h1,3040:13647730,17417660:0,411205,112570 -) -g1,3040:13850236,17417660 -g1,3040:15562691,17417660 -g1,3040:16781005,17417660 -g1,3040:18286367,17417660 -g1,3040:19981783,17417660 -g1,3040:23367372,17417660 -g1,3040:25435032,17417660 -g1,3040:26285689,17417660 -g1,3040:27509901,17417660 -g1,3040:28497528,17417660 -k1,3041:32583029,17417660:1162595 -g1,3041:32583029,17417660 -) -v1,3043:6630773,18596566:0,393216,0 -(1,3094:6630773,34777022:25952256,16573672,196608 -g1,3094:6630773,34777022 -g1,3094:6630773,34777022 -g1,3094:6434165,34777022 -(1,3094:6434165,34777022:0,16573672,196608 -r1,3116:32779637,34777022:26345472,16770280,196608 -k1,3094:6434165,34777022:-26345472 -) -(1,3094:6434165,34777022:26345472,16573672,196608 -[1,3094:6630773,34777022:25952256,16377064,0 -(1,3045:6630773,18788455:25952256,388497,9436 -(1,3044:6630773,18788455:0,0,0 -g1,3044:6630773,18788455 -g1,3044:6630773,18788455 -g1,3044:6303093,18788455 -(1,3044:6303093,18788455:0,0,0 -) -g1,3044:6630773,18788455 -) -g1,3045:8211502,18788455 -g1,3045:9159940,18788455 -h1,3045:10424523,18788455:0,0,0 -k1,3045:32583029,18788455:22158506 -g1,3045:32583029,18788455 -) -(1,3046:6630773,19454633:25952256,388497,9436 -h1,3046:6630773,19454633:0,0,0 -g1,3046:8211502,19454633 -g1,3046:8843794,19454633 -h1,3046:9159940,19454633:0,0,0 -k1,3046:32583028,19454633:23423088 -g1,3046:32583028,19454633 -) -(1,3050:6630773,20120811:25952256,404226,76021 -(1,3048:6630773,20120811:0,0,0 -g1,3048:6630773,20120811 -g1,3048:6630773,20120811 -g1,3048:6303093,20120811 -(1,3048:6303093,20120811:0,0,0 -) -g1,3048:6630773,20120811 -) -g1,3050:7579210,20120811 -g1,3050:7895356,20120811 -g1,3050:9159939,20120811 -g1,3050:11056813,20120811 -g1,3050:12953687,20120811 -g1,3050:14850561,20120811 -g1,3050:16747435,20120811 -g1,3050:18644309,20120811 -g1,3050:18960455,20120811 -g1,3050:20541184,20120811 -g1,3050:20857330,20120811 -g1,3050:22438059,20120811 -g1,3050:22754205,20120811 -g1,3050:24334934,20120811 -g1,3050:24651080,20120811 -g1,3050:26231809,20120811 -g1,3050:26547955,20120811 -h1,3050:27812538,20120811:0,0,0 -k1,3050:32583029,20120811:4770491 -g1,3050:32583029,20120811 -) -(1,3052:6630773,21442349:25952256,388497,9436 -(1,3051:6630773,21442349:0,0,0 -g1,3051:6630773,21442349 -g1,3051:6630773,21442349 -g1,3051:6303093,21442349 -(1,3051:6303093,21442349:0,0,0 -) -g1,3051:6630773,21442349 -) -g1,3052:8211502,21442349 -g1,3052:8843794,21442349 -h1,3052:9159940,21442349:0,0,0 -k1,3052:32583028,21442349:23423088 -g1,3052:32583028,21442349 -) -(1,3056:6630773,22108527:25952256,404226,76021 -(1,3054:6630773,22108527:0,0,0 -g1,3054:6630773,22108527 -g1,3054:6630773,22108527 -g1,3054:6303093,22108527 -(1,3054:6303093,22108527:0,0,0 -) -g1,3054:6630773,22108527 -) -g1,3056:7579210,22108527 -g1,3056:7895356,22108527 -g1,3056:9159939,22108527 -g1,3056:9476085,22108527 -g1,3056:11056814,22108527 -g1,3056:11372960,22108527 -g1,3056:12953689,22108527 -g1,3056:13269835,22108527 -g1,3056:14850564,22108527 -g1,3056:15166710,22108527 -g1,3056:16747439,22108527 -g1,3056:18644313,22108527 -g1,3056:20541187,22108527 -g1,3056:22438061,22108527 -g1,3056:24334935,22108527 -g1,3056:26231809,22108527 -h1,3056:27812537,22108527:0,0,0 -k1,3056:32583029,22108527:4770492 -g1,3056:32583029,22108527 -) -(1,3058:6630773,23430065:25952256,388497,9436 -(1,3057:6630773,23430065:0,0,0 -g1,3057:6630773,23430065 -g1,3057:6630773,23430065 -g1,3057:6303093,23430065 -(1,3057:6303093,23430065:0,0,0 -) -g1,3057:6630773,23430065 -) -g1,3058:8211502,23430065 -g1,3058:9159939,23430065 -h1,3058:9476085,23430065:0,0,0 -k1,3058:32583029,23430065:23106944 -g1,3058:32583029,23430065 -) -(1,3062:6630773,24096243:25952256,404226,76021 -(1,3060:6630773,24096243:0,0,0 -g1,3060:6630773,24096243 -g1,3060:6630773,24096243 -g1,3060:6303093,24096243 -(1,3060:6303093,24096243:0,0,0 -) -g1,3060:6630773,24096243 -) -g1,3062:7579210,24096243 -g1,3062:7895356,24096243 -g1,3062:9159939,24096243 -g1,3062:11056813,24096243 -g1,3062:12953687,24096243 -g1,3062:14850561,24096243 -g1,3062:16747435,24096243 -g1,3062:17063581,24096243 -g1,3062:18644310,24096243 -g1,3062:20541184,24096243 -g1,3062:22438058,24096243 -g1,3062:24334932,24096243 -g1,3062:26231806,24096243 -h1,3062:27812534,24096243:0,0,0 -k1,3062:32583029,24096243:4770495 -g1,3062:32583029,24096243 -) -(1,3064:6630773,25417781:25952256,404226,76021 -(1,3063:6630773,25417781:0,0,0 -g1,3063:6630773,25417781 -g1,3063:6630773,25417781 -g1,3063:6303093,25417781 -(1,3063:6303093,25417781:0,0,0 -) -g1,3063:6630773,25417781 -) -k1,3064:6630773,25417781:0 -g1,3064:9476084,25417781 -g1,3064:10108376,25417781 -h1,3064:10740668,25417781:0,0,0 -k1,3064:32583028,25417781:21842360 -g1,3064:32583028,25417781 -) -(1,3068:6630773,26083959:25952256,404226,76021 -(1,3066:6630773,26083959:0,0,0 -g1,3066:6630773,26083959 -g1,3066:6630773,26083959 -g1,3066:6303093,26083959 -(1,3066:6303093,26083959:0,0,0 -) -g1,3066:6630773,26083959 -) -g1,3068:7579210,26083959 -g1,3068:8843793,26083959 -h1,3068:10424521,26083959:0,0,0 -k1,3068:32583029,26083959:22158508 -g1,3068:32583029,26083959 -) -(1,3070:6630773,27405497:25952256,404226,101187 -(1,3069:6630773,27405497:0,0,0 -g1,3069:6630773,27405497 -g1,3069:6630773,27405497 -g1,3069:6303093,27405497 -(1,3069:6303093,27405497:0,0,0 -) -g1,3069:6630773,27405497 -) -k1,3070:6630773,27405497:0 -g1,3070:9476084,27405497 -g1,3070:10108376,27405497 -h1,3070:10740668,27405497:0,0,0 -k1,3070:32583028,27405497:21842360 -g1,3070:32583028,27405497 -) -(1,3074:6630773,28071675:25952256,404226,76021 -(1,3072:6630773,28071675:0,0,0 -g1,3072:6630773,28071675 -g1,3072:6630773,28071675 -g1,3072:6303093,28071675 -(1,3072:6303093,28071675:0,0,0 -) -g1,3072:6630773,28071675 -) -g1,3074:7579210,28071675 -g1,3074:8843793,28071675 -h1,3074:10108376,28071675:0,0,0 -k1,3074:32583028,28071675:22474652 -g1,3074:32583028,28071675 -) -(1,3076:6630773,29393213:25952256,388497,9436 -(1,3075:6630773,29393213:0,0,0 -g1,3075:6630773,29393213 -g1,3075:6630773,29393213 -g1,3075:6303093,29393213 -(1,3075:6303093,29393213:0,0,0 -) -g1,3075:6630773,29393213 -) -g1,3076:8211502,29393213 -g1,3076:9159940,29393213 -g1,3076:10740669,29393213 -g1,3076:11372961,29393213 -h1,3076:11689107,29393213:0,0,0 -k1,3076:32583029,29393213:20893922 -g1,3076:32583029,29393213 -) -(1,3077:6630773,30059391:25952256,379060,6290 -h1,3077:6630773,30059391:0,0,0 -h1,3077:7895356,30059391:0,0,0 -k1,3077:32583028,30059391:24687672 -g1,3077:32583028,30059391 -) -(1,3081:6630773,30725569:25952256,404226,76021 -(1,3079:6630773,30725569:0,0,0 -g1,3079:6630773,30725569 -g1,3079:6630773,30725569 -g1,3079:6303093,30725569 -(1,3079:6303093,30725569:0,0,0 -) -g1,3079:6630773,30725569 -) -g1,3081:7579210,30725569 -g1,3081:7895356,30725569 -g1,3081:9159939,30725569 -g1,3081:11056813,30725569 -g1,3081:12953687,30725569 -g1,3081:14850561,30725569 -g1,3081:16747435,30725569 -g1,3081:18644309,30725569 -g1,3081:18960455,30725569 -g1,3081:20541184,30725569 -g1,3081:20857330,30725569 -g1,3081:22438059,30725569 -g1,3081:22754205,30725569 -g1,3081:24334934,30725569 -g1,3081:24651080,30725569 -g1,3081:26231809,30725569 -g1,3081:26547955,30725569 -h1,3081:27812538,30725569:0,0,0 -k1,3081:32583029,30725569:4770491 -g1,3081:32583029,30725569 -) -(1,3083:6630773,32047107:25952256,404226,101187 -(1,3082:6630773,32047107:0,0,0 -g1,3082:6630773,32047107 -g1,3082:6630773,32047107 -g1,3082:6303093,32047107 -(1,3082:6303093,32047107:0,0,0 -) -g1,3082:6630773,32047107 -) -k1,3083:6630773,32047107:0 -h1,3083:9476084,32047107:0,0,0 -k1,3083:32583028,32047107:23106944 -g1,3083:32583028,32047107 -) -(1,3087:6630773,32713285:25952256,404226,76021 -(1,3085:6630773,32713285:0,0,0 -g1,3085:6630773,32713285 -g1,3085:6630773,32713285 -g1,3085:6303093,32713285 -(1,3085:6303093,32713285:0,0,0 -) -g1,3085:6630773,32713285 -) -g1,3087:7579210,32713285 -g1,3087:8843793,32713285 -h1,3087:10108376,32713285:0,0,0 -k1,3087:32583028,32713285:22474652 -g1,3087:32583028,32713285 -) -(1,3089:6630773,34034823:25952256,404226,76021 -(1,3088:6630773,34034823:0,0,0 -g1,3088:6630773,34034823 -g1,3088:6630773,34034823 -g1,3088:6303093,34034823 -(1,3088:6303093,34034823:0,0,0 -) -g1,3088:6630773,34034823 -) -k1,3089:6630773,34034823:0 -h1,3089:9476084,34034823:0,0,0 -k1,3089:32583028,34034823:23106944 -g1,3089:32583028,34034823 -) -(1,3093:6630773,34701001:25952256,404226,76021 -(1,3091:6630773,34701001:0,0,0 -g1,3091:6630773,34701001 -g1,3091:6630773,34701001 -g1,3091:6303093,34701001 -(1,3091:6303093,34701001:0,0,0 -) -g1,3091:6630773,34701001 -) -g1,3093:7579210,34701001 -g1,3093:8843793,34701001 -h1,3093:10424521,34701001:0,0,0 -k1,3093:32583029,34701001:22158508 -g1,3093:32583029,34701001 -) -] -) -g1,3094:32583029,34777022 -g1,3094:6630773,34777022 -g1,3094:6630773,34777022 -g1,3094:32583029,34777022 -g1,3094:32583029,34777022 -) -h1,3094:6630773,34973630:0,0,0 -(1,3098:6630773,36327845:25952256,513147,126483 -h1,3097:6630773,36327845:983040,0,0 -k1,3097:11070182,36327845:251658 -k1,3097:15406044,36327845:251658 -k1,3097:16761984,36327845:251658 -k1,3097:17761408,36327845:251658 -k1,3097:20163958,36327845:251658 -k1,3097:21487785,36327845:251658 -k1,3097:23248082,36327845:251658 -k1,3097:24589604,36327845:251658 -k1,3097:26076616,36327845:251658 -k1,3097:26944312,36327845:251658 -k1,3097:28585333,36327845:251658 -k1,3097:31391584,36327845:251658 -k1,3097:32583029,36327845:0 -) -(1,3098:6630773,37169333:25952256,513147,134348 -k1,3097:11185108,37169333:202089 -k1,3097:11918694,37169333:202089 -k1,3097:14676688,37169333:202090 -k1,3097:16576815,37169333:202089 -k1,3097:17647256,37169333:202089 -k1,3097:20561225,37169333:202089 -k1,3097:23434561,37169333:202089 -k1,3097:25158396,37169333:202089 -k1,3097:27095879,37169333:202090 -k1,3097:28317053,37169333:202089 -k1,3097:31923737,37169333:202089 -k1,3097:32583029,37169333:0 -) -(1,3098:6630773,38010821:25952256,505283,134348 -g1,3097:7849087,38010821 -g1,3097:10559656,38010821 -g1,3097:13086068,38010821 -g1,3097:16375320,38010821 -g1,3097:17190587,38010821 -g1,3097:19668503,38010821 -h1,3097:20639091,38010821:0,0,0 -g1,3097:20838320,38010821 -g1,3097:21846919,38010821 -g1,3097:23544301,38010821 -h1,3097:24341219,38010821:0,0,0 -k1,3098:32583029,38010821:8068140 -g1,3098:32583029,38010821 -) -(1,3100:6630773,38852309:25952256,513147,134348 -h1,3099:6630773,38852309:983040,0,0 -k1,3099:8880143,38852309:224308 -k1,3099:11765868,38852309:224308 -k1,3099:12641604,38852309:224308 -k1,3099:14057356,38852309:224307 -k1,3099:14747625,38852309:224308 -k1,3099:17925641,38852309:224308 -k1,3099:18809241,38852309:224308 -k1,3099:19389409,38852309:224308 -k1,3099:22233846,38852309:224308 -k1,3099:24436031,38852309:224308 -k1,3099:25651899,38852309:224308 -k1,3099:27886195,38852309:224307 -k1,3099:28466363,38852309:224308 -k1,3099:30644955,38852309:224308 -k1,3099:31485301,38852309:224308 -k1,3099:32583029,38852309:0 -) -(1,3100:6630773,39693797:25952256,513147,134348 -k1,3099:9716510,39693797:250650 -k1,3099:10578611,39693797:250650 -k1,3099:11480689,39693797:250650 -k1,3099:12871665,39693797:250650 -k1,3099:13990667,39693797:250650 -k1,3099:15345599,39693797:250650 -k1,3099:18308128,39693797:250649 -k1,3099:19577863,39693797:250650 -k1,3099:22001687,39693797:250650 -k1,3099:23819958,39693797:250650 -k1,3099:25243047,39693797:250650 -k1,3099:29577901,39693797:250650 -k1,3099:31563944,39693797:250650 -k1,3099:32583029,39693797:0 -) -(1,3100:6630773,40535285:25952256,513147,134348 -k1,3099:10243680,40535285:275814 -k1,3099:12589121,40535285:275814 -k1,3099:14378740,40535285:275737 -k1,3099:17401168,40535285:275814 -(1,3099:17401168,40535285:0,435480,115847 -r1,3116:17759434,40535285:358266,551327,115847 -k1,3099:17401168,40535285:-358266 -) -(1,3099:17401168,40535285:358266,435480,115847 -k1,3099:17401168,40535285:3277 -h1,3099:17756157,40535285:0,411205,112570 -) -k1,3099:18208918,40535285:275814 -k1,3099:19676177,40535285:275814 -k1,3099:21044475,40535285:275813 -k1,3099:25174461,40535285:275814 -k1,3099:26101703,40535285:275814 -k1,3099:29022550,40535285:275814 -k1,3099:30317449,40535285:275814 -k1,3099:32583029,40535285:0 -) -(1,3100:6630773,41376773:25952256,513147,126483 -g1,3099:8569328,41376773 -g1,3099:9427849,41376773 -g1,3099:13228281,41376773 -g1,3099:14086802,41376773 -g1,3099:15305116,41376773 -k1,3100:32583029,41376773:13699647 -g1,3100:32583029,41376773 -) -v1,3102:6630773,42555679:0,393216,0 -(1,3110:6630773,44155945:25952256,1993482,196608 -g1,3110:6630773,44155945 -g1,3110:6630773,44155945 -g1,3110:6434165,44155945 -(1,3110:6434165,44155945:0,1993482,196608 -r1,3116:32779637,44155945:26345472,2190090,196608 -k1,3110:6434165,44155945:-26345472 -) -(1,3110:6434165,44155945:26345472,1993482,196608 -[1,3110:6630773,44155945:25952256,1796874,0 -(1,3104:6630773,42747568:25952256,388497,9436 -(1,3103:6630773,42747568:0,0,0 -g1,3103:6630773,42747568 -g1,3103:6630773,42747568 -g1,3103:6303093,42747568 -(1,3103:6303093,42747568:0,0,0 -) -g1,3103:6630773,42747568 -) -g1,3104:8211502,42747568 -g1,3104:9159940,42747568 -k1,3104:9159940,42747568:0 -h1,3104:10424524,42747568:0,0,0 -k1,3104:32583028,42747568:22158504 -g1,3104:32583028,42747568 -) -(1,3105:6630773,43413746:25952256,388497,9436 -h1,3105:6630773,43413746:0,0,0 -g1,3105:8211502,43413746 -g1,3105:9159939,43413746 -g1,3105:10108377,43413746 -g1,3105:10740669,43413746 -g1,3105:12321398,43413746 -g1,3105:13269835,43413746 -h1,3105:13585981,43413746:0,0,0 -k1,3105:32583029,43413746:18997048 -g1,3105:32583029,43413746 -) -(1,3109:6630773,44079924:25952256,404226,76021 -(1,3107:6630773,44079924:0,0,0 -g1,3107:6630773,44079924 -g1,3107:6630773,44079924 -g1,3107:6303093,44079924 -(1,3107:6303093,44079924:0,0,0 -) -g1,3107:6630773,44079924 -) -g1,3109:7579210,44079924 -g1,3109:8843793,44079924 -g1,3109:10740667,44079924 -g1,3109:11056813,44079924 -g1,3109:12637542,44079924 -g1,3109:12953688,44079924 -g1,3109:14534417,44079924 -g1,3109:14850563,44079924 -g1,3109:16431292,44079924 -g1,3109:18328166,44079924 -h1,3109:19908894,44079924:0,0,0 -k1,3109:32583029,44079924:12674135 -g1,3109:32583029,44079924 -) -] -) -g1,3110:32583029,44155945 -g1,3110:6630773,44155945 -g1,3110:6630773,44155945 -g1,3110:32583029,44155945 -g1,3110:32583029,44155945 -) -h1,3110:6630773,44352553:0,0,0 -(1,3114:6630773,45706769:25952256,513147,134348 -h1,3113:6630773,45706769:983040,0,0 -k1,3113:8276381,45706769:184811 -k1,3113:9329545,45706769:184812 -k1,3113:11062972,45706769:184811 -k1,3113:11899211,45706769:184811 -k1,3113:13350179,45706769:184812 -k1,3113:15278903,45706769:184811 -k1,3113:17474359,45706769:184811 -k1,3113:20025021,45706769:184812 -k1,3113:21413073,45706769:184811 -k1,3113:23251357,45706769:184811 -k1,3113:25390453,45706769:184812 -k1,3113:26443616,45706769:184811 -k1,3113:27732709,45706769:184811 -k1,3113:30014018,45706769:184812 -k1,3113:31217914,45706769:184811 -k1,3114:32583029,45706769:0 -k1,3114:32583029,45706769:0 -) -] -(1,3116:32583029,45706769:0,0,0 -g1,3116:32583029,45706769 -) -) -] -(1,3116:6630773,47279633:25952256,0,0 -h1,3116:6630773,47279633:25952256,0,0 -) -] -(1,3116:4262630,4025873:0,0,0 -[1,3116:-473656,4025873:0,0,0 -(1,3116:-473656,-710413:0,0,0 -(1,3116:-473656,-710413:0,0,0 -g1,3116:-473656,-710413 -) -g1,3116:-473656,-710413 -) -] -) -] -!23541 -}68 -Input:599:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:600:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:601:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:602:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:603:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:604:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:605:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:606:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:607:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:608:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!941 -{69 -[1,3232:4262630,47279633:28320399,43253760,0 -(1,3232:4262630,4025873:0,0,0 -[1,3232:-473656,4025873:0,0,0 -(1,3232:-473656,-710413:0,0,0 -(1,3232:-473656,-644877:0,0,0 -k1,3232:-473656,-644877:-65536 -) -(1,3232:-473656,4736287:0,0,0 -k1,3232:-473656,4736287:5209943 -) -g1,3232:-473656,-710413 -) -] -) -[1,3232:6630773,47279633:25952256,43253760,0 -[1,3232:6630773,4812305:25952256,786432,0 -(1,3232:6630773,4812305:25952256,505283,11795 -(1,3232:6630773,4812305:25952256,505283,11795 -g1,3232:3078558,4812305 -[1,3232:3078558,4812305:0,0,0 -(1,3232:3078558,2439708:0,1703936,0 -k1,3232:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,3232:2537886,2439708:1179648,16384,0 -) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,3232:3078558,1915420:16384,1179648,0 -) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 -) -] -) -) -) -] -[1,3232:3078558,4812305:0,0,0 -(1,3232:3078558,2439708:0,1703936,0 -g1,3232:29030814,2439708 -g1,3232:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,3232:36151628,1915420:16384,1179648,0 -) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 -) -] -) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,3232:37855564,2439708:1179648,16384,0 -) -) -k1,3232:3078556,2439708:-34777008 -) -] -[1,3232:3078558,4812305:0,0,0 -(1,3232:3078558,49800853:0,16384,2228224 -k1,3232:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,3232:2537886,49800853:1179648,16384,0 -) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,3232:3078558,51504789:16384,1179648,0 -) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 -) -] -) -) -) -] -[1,3232:3078558,4812305:0,0,0 -(1,3232:3078558,49800853:0,16384,2228224 -g1,3232:29030814,49800853 -g1,3232:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,3232:36151628,51504789:16384,1179648,0 -) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 -) -] -) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,3232:37855564,49800853:1179648,16384,0 -) -) -k1,3232:3078556,49800853:-34777008 -) -] -g1,3232:6630773,4812305 -k1,3232:22348274,4812305:14920583 -g1,3232:23970945,4812305 -g1,3232:24793421,4812305 -g1,3232:27528893,4812305 -g1,3232:28938572,4812305 -) -) -] -[1,3232:6630773,45706769:25952256,40108032,0 -(1,3232:6630773,45706769:25952256,40108032,0 -(1,3232:6630773,45706769:0,0,0 -g1,3232:6630773,45706769 -) -[1,3232:6630773,45706769:25952256,40108032,0 -v1,3116:6630773,6254097:0,393216,0 -(1,3123:6630773,7203914:25952256,1343033,196608 -g1,3123:6630773,7203914 -g1,3123:6630773,7203914 -g1,3123:6434165,7203914 -(1,3123:6434165,7203914:0,1343033,196608 -r1,3232:32779637,7203914:26345472,1539641,196608 -k1,3123:6434165,7203914:-26345472 -) -(1,3123:6434165,7203914:26345472,1343033,196608 -[1,3123:6630773,7203914:25952256,1146425,0 -(1,3118:6630773,6461715:25952256,404226,76021 -(1,3117:6630773,6461715:0,0,0 -g1,3117:6630773,6461715 -g1,3117:6630773,6461715 -g1,3117:6303093,6461715 -(1,3117:6303093,6461715:0,0,0 -) -g1,3117:6630773,6461715 -) -g1,3118:8843793,6461715 -g1,3118:9792230,6461715 -g1,3118:10740668,6461715 -g1,3118:11372960,6461715 -g1,3118:12953689,6461715 -g1,3118:13902126,6461715 -h1,3118:14534418,6461715:0,0,0 -k1,3118:32583030,6461715:18048612 -g1,3118:32583030,6461715 -) -(1,3122:6630773,7127893:25952256,404226,76021 -(1,3120:6630773,7127893:0,0,0 -g1,3120:6630773,7127893 -g1,3120:6630773,7127893 -g1,3120:6303093,7127893 -(1,3120:6303093,7127893:0,0,0 -) -g1,3120:6630773,7127893 -) -g1,3122:7579210,7127893 -g1,3122:8843793,7127893 -g1,3122:9159939,7127893 -g1,3122:10740668,7127893 -g1,3122:12637542,7127893 -g1,3122:14534416,7127893 -g1,3122:16431290,7127893 -g1,3122:16747436,7127893 -g1,3122:18328165,7127893 -g1,3122:18644311,7127893 -h1,3122:19908894,7127893:0,0,0 -k1,3122:32583029,7127893:12674135 -g1,3122:32583029,7127893 -) -] -) -g1,3123:32583029,7203914 -g1,3123:6630773,7203914 -g1,3123:6630773,7203914 -g1,3123:32583029,7203914 -g1,3123:32583029,7203914 -) -h1,3123:6630773,7400522:0,0,0 -(1,3127:6630773,8744895:25952256,505283,134348 -h1,3126:6630773,8744895:983040,0,0 -k1,3126:8650831,8744895:239445 -k1,3126:9758627,8744895:239444 -k1,3126:11102354,8744895:239445 -k1,3126:14053679,8744895:239445 -k1,3126:16765796,8744895:239444 -k1,3126:18177680,8744895:239445 -k1,3126:22501328,8744895:239444 -k1,3126:24476166,8744895:239445 -k1,3126:25734696,8744895:239445 -k1,3126:29311233,8744895:239444 -k1,3126:31620305,8744895:239445 -k1,3127:32583029,8744895:0 -) -(1,3127:6630773,9586383:25952256,452978,126483 -g1,3126:9576616,9586383 -(1,3126:9576616,9586383:0,452978,115847 -r1,3232:9934882,9586383:358266,568825,115847 -k1,3126:9576616,9586383:-358266 -) -(1,3126:9576616,9586383:358266,452978,115847 -k1,3126:9576616,9586383:3277 -h1,3126:9931605,9586383:0,411205,112570 -) -k1,3127:32583028,9586383:22474476 -g1,3127:32583028,9586383 -) -v1,3129:6630773,10755447:0,393216,0 -(1,3136:6630773,11705264:25952256,1343033,196608 -g1,3136:6630773,11705264 -g1,3136:6630773,11705264 -g1,3136:6434165,11705264 -(1,3136:6434165,11705264:0,1343033,196608 -r1,3232:32779637,11705264:26345472,1539641,196608 -k1,3136:6434165,11705264:-26345472 -) -(1,3136:6434165,11705264:26345472,1343033,196608 -[1,3136:6630773,11705264:25952256,1146425,0 -(1,3131:6630773,10963065:25952256,404226,76021 -(1,3130:6630773,10963065:0,0,0 -g1,3130:6630773,10963065 -g1,3130:6630773,10963065 -g1,3130:6303093,10963065 -(1,3130:6303093,10963065:0,0,0 -) -g1,3130:6630773,10963065 -) -g1,3131:8211502,10963065 -g1,3131:8843794,10963065 -g1,3131:9792232,10963065 -g1,3131:10424524,10963065 -g1,3131:12005253,10963065 -g1,3131:12637545,10963065 -h1,3131:12953691,10963065:0,0,0 -k1,3131:32583029,10963065:19629338 -g1,3131:32583029,10963065 -) -(1,3135:6630773,11629243:25952256,404226,76021 -(1,3133:6630773,11629243:0,0,0 -g1,3133:6630773,11629243 -g1,3133:6630773,11629243 -g1,3133:6303093,11629243 -(1,3133:6303093,11629243:0,0,0 -) -g1,3133:6630773,11629243 -) -g1,3135:7579210,11629243 -g1,3135:8843793,11629243 -g1,3135:9159939,11629243 -g1,3135:10740668,11629243 -g1,3135:12637542,11629243 -g1,3135:14534416,11629243 -g1,3135:16431290,11629243 -g1,3135:16747436,11629243 -g1,3135:18328165,11629243 -g1,3135:18644311,11629243 -h1,3135:19908894,11629243:0,0,0 -k1,3135:32583029,11629243:12674135 -g1,3135:32583029,11629243 -) -] -) -g1,3136:32583029,11705264 -g1,3136:6630773,11705264 -g1,3136:6630773,11705264 -g1,3136:32583029,11705264 -g1,3136:32583029,11705264 -) -h1,3136:6630773,11901872:0,0,0 -(1,3140:6630773,13246245:25952256,505283,134348 -h1,3139:6630773,13246245:983040,0,0 -k1,3139:8418940,13246245:177292 -k1,3139:10288372,13246245:177292 -k1,3139:12163045,13246245:177291 -k1,3139:13111040,13246245:177292 -k1,3139:16515325,13246245:177292 -k1,3139:19931406,13246245:177292 -k1,3139:20640195,13246245:177292 -k1,3139:22101993,13246245:177292 -(1,3139:22101993,13246245:0,452978,122846 -r1,3232:24570530,13246245:2468537,575824,122846 -k1,3139:22101993,13246245:-2468537 -) -(1,3139:22101993,13246245:2468537,452978,122846 -k1,3139:22101993,13246245:3277 -h1,3139:24567253,13246245:0,411205,112570 -) -k1,3139:24747821,13246245:177291 -k1,3139:26935758,13246245:177292 -k1,3139:29404844,13246245:177292 -k1,3139:30795207,13246245:177292 -k1,3139:32583029,13246245:0 -) -(1,3140:6630773,14087733:25952256,513147,134348 -g1,3139:7446040,14087733 -g1,3139:10276540,14087733 -g1,3139:11423420,14087733 -g1,3139:13131288,14087733 -g1,3139:15678017,14087733 -g1,3139:17319693,14087733 -(1,3139:17319693,14087733:0,452978,115847 -r1,3232:19788230,14087733:2468537,568825,115847 -k1,3139:17319693,14087733:-2468537 -) -(1,3139:17319693,14087733:2468537,452978,115847 -k1,3139:17319693,14087733:3277 -h1,3139:19784953,14087733:0,411205,112570 -) -g1,3139:19987459,14087733 -k1,3140:32583029,14087733:10411255 -g1,3140:32583029,14087733 -) -v1,3142:6630773,15432106:0,393216,0 -(1,3152:6630773,22076046:25952256,7037156,0 -g1,3152:6630773,22076046 -g1,3152:6303093,22076046 -r1,3232:6401397,22076046:98304,7037156,0 -g1,3152:6600626,22076046 -g1,3152:6797234,22076046 -[1,3152:6797234,22076046:25785795,7037156,0 -(1,3143:6797234,15864644:25785795,825754,196608 -(1,3142:6797234,15864644:0,825754,196608 -r1,3232:7890375,15864644:1093141,1022362,196608 -k1,3142:6797234,15864644:-1093141 -) -(1,3142:6797234,15864644:1093141,825754,196608 -) -k1,3142:8055034,15864644:164659 -k1,3142:9781252,15864644:327680 -k1,3142:11094758,15864644:164660 -k1,3142:12278502,15864644:164659 -k1,3142:15629521,15864644:164659 -k1,3142:17662612,15864644:164660 -k1,3142:18513433,15864644:164659 -k1,3142:19033952,15864644:164659 -k1,3142:21677184,15864644:164660 -k1,3142:23530050,15864644:164659 -k1,3142:24310747,15864644:164659 -k1,3142:27486786,15864644:164660 -k1,3142:28981826,15864644:164659 -k1,3142:32583029,15864644:0 -) -(1,3143:6797234,16706132:25785795,513147,134348 -k1,3142:8908039,16706132:184047 -k1,3142:10790124,16706132:184047 -k1,3142:13043798,16706132:184047 -k1,3142:14419290,16706132:184047 -k1,3142:17879482,16706132:184047 -k1,3142:21140443,16706132:184046 -k1,3142:22316050,16706132:184047 -k1,3142:23821958,16706132:184047 -k1,3142:24665297,16706132:184047 -k1,3142:25868429,16706132:184047 -k1,3142:27705949,16706132:184047 -k1,3142:31250027,16706132:184047 -k1,3143:32583029,16706132:0 -) -(1,3143:6797234,17547620:25785795,513147,134348 -k1,3142:8417339,17547620:226154 -k1,3142:9662577,17547620:226153 -k1,3142:12550148,17547620:226154 -k1,3142:13537829,17547620:226153 -k1,3142:15951575,17547620:226154 -k1,3142:20031901,17547620:226154 -k1,3142:20870816,17547620:226153 -k1,3142:23859313,17547620:226154 -k1,3142:27029999,17547620:226153 -k1,3142:28447598,17547620:226154 -k1,3142:30528420,17547620:226153 -k1,3142:31563944,17547620:226154 -k1,3142:32583029,17547620:0 -) -(1,3143:6797234,18389108:25785795,513147,126483 -k1,3142:9796708,18389108:220747 -k1,3142:12201770,18389108:220747 -k1,3142:14018974,18389108:220747 -k1,3142:15305992,18389108:220747 -k1,3142:16545824,18389108:220747 -k1,3142:19032150,18389108:220746 -k1,3142:20992223,18389108:220747 -k1,3142:21872262,18389108:220747 -k1,3142:24839623,18389108:220747 -k1,3142:28661573,18389108:220747 -k1,3142:30395546,18389108:220747 -k1,3142:31563944,18389108:220747 -k1,3142:32583029,18389108:0 -) -(1,3143:6797234,19230596:25785795,513147,134348 -g1,3142:10300133,19230596 -g1,3142:11158654,19230596 -g1,3142:12376968,19230596 -g1,3142:15237614,19230596 -g1,3142:17131604,19230596 -k1,3143:32583029,19230596:13409323 -g1,3143:32583029,19230596 -) -v1,3145:6797234,20421062:0,393216,0 -(1,3150:6797234,21355150:25785795,1327304,196608 -g1,3150:6797234,21355150 -g1,3150:6797234,21355150 -g1,3150:6600626,21355150 -(1,3150:6600626,21355150:0,1327304,196608 -r1,3232:32779637,21355150:26179011,1523912,196608 -k1,3150:6600625,21355150:-26179012 -) -(1,3150:6600626,21355150:26179011,1327304,196608 -[1,3150:6797234,21355150:25785795,1130696,0 -(1,3147:6797234,20612951:25785795,388497,9436 -(1,3146:6797234,20612951:0,0,0 -g1,3146:6797234,20612951 -g1,3146:6797234,20612951 -g1,3146:6469554,20612951 -(1,3146:6469554,20612951:0,0,0 -) -g1,3146:6797234,20612951 -) -g1,3147:8377963,20612951 -g1,3147:9326401,20612951 -h1,3147:10590984,20612951:0,0,0 -k1,3147:32583028,20612951:21992044 -g1,3147:32583028,20612951 -) -(1,3148:6797234,21279129:25785795,404226,76021 -h1,3148:6797234,21279129:0,0,0 -g1,3148:8377963,21279129 -g1,3148:9010255,21279129 -g1,3148:9642547,21279129 -g1,3148:10274839,21279129 -g1,3148:11855568,21279129 -g1,3148:12487860,21279129 -g1,3148:13120152,21279129 -g1,3148:13752444,21279129 -h1,3148:14068590,21279129:0,0,0 -k1,3148:32583030,21279129:18514440 -g1,3148:32583030,21279129 -) -] -) -g1,3150:32583029,21355150 -g1,3150:6797234,21355150 -g1,3150:6797234,21355150 -g1,3150:32583029,21355150 -g1,3150:32583029,21355150 -) -h1,3150:6797234,21551758:0,0,0 -] -g1,3152:32583029,22076046 -) -h1,3152:6630773,22076046:0,0,0 -(1,3156:6630773,23420420:25952256,513147,126483 -h1,3154:6630773,23420420:983040,0,0 -k1,3154:8312427,23420420:228721 -k1,3154:9072644,23420420:228720 -k1,3154:12510663,23420420:228721 -k1,3154:13390811,23420420:228720 -k1,3154:14367298,23420420:228721 -k1,3154:16464450,23420420:228721 -k1,3154:17352462,23420420:228720 -k1,3154:18600268,23420420:228721 -k1,3154:23242182,23420420:228720 -k1,3154:24130195,23420420:228721 -k1,3154:27562315,23420420:228720 -k1,3154:31394861,23420420:228721 -k1,3156:32583029,23420420:0 -) -(1,3156:6630773,24261908:25952256,513147,134348 -k1,3154:9244786,24261908:292072 -k1,3154:10346227,24261908:292071 -k1,3154:12136452,24261908:292072 -h1,3154:12933370,24261908:0,0,0 -k1,3154:13606206,24261908:292072 -k1,3155:15094964,24261908:292071 -k1,3155:18146757,24261908:292072 -k1,3155:19098121,24261908:292072 -k1,3155:21141970,24261908:292072 -k1,3155:22093333,24261908:292071 -k1,3155:24951140,24261908:292072 -k1,3155:28269009,24261908:292072 -k1,3155:30259118,24261908:292071 -(1,3155:30259118,24261908:0,414482,115847 -r1,3232:30969096,24261908:709978,530329,115847 -k1,3155:30259118,24261908:-709978 -) -(1,3155:30259118,24261908:709978,414482,115847 -k1,3155:30259118,24261908:3277 -h1,3155:30965819,24261908:0,411205,112570 -) -k1,3155:31591469,24261908:292072 -k1,3155:32583029,24261908:0 -) -(1,3156:6630773,25103396:25952256,513147,134348 -k1,3155:9240483,25103396:203883 -k1,3155:10060405,25103396:203884 -k1,3155:11772927,25103396:203883 -k1,3155:13685335,25103396:203884 -k1,3155:17291847,25103396:203883 -k1,3155:18600012,25103396:203883 -k1,3155:19551662,25103396:203884 -k1,3155:22764303,25103396:203883 -(1,3155:22764303,25103396:0,414482,115847 -r1,3232:24177704,25103396:1413401,530329,115847 -k1,3155:22764303,25103396:-1413401 -) -(1,3155:22764303,25103396:1413401,414482,115847 -k1,3155:22764303,25103396:3277 -h1,3155:24174427,25103396:0,411205,112570 -) -k1,3155:24381587,25103396:203883 -k1,3155:26790758,25103396:203884 -k1,3155:27680803,25103396:203883 -k1,3155:28655390,25103396:203884 -k1,3155:31931601,25103396:203883 -k1,3155:32583029,25103396:0 -) -(1,3156:6630773,25944884:25952256,513147,134348 -k1,3155:10183387,25944884:271882 -(1,3155:10183387,25944884:0,414482,115847 -r1,3232:11948500,25944884:1765113,530329,115847 -k1,3155:10183387,25944884:-1765113 -) -(1,3155:10183387,25944884:1765113,414482,115847 -k1,3155:10183387,25944884:3277 -h1,3155:11945223,25944884:0,411205,112570 -) -k1,3155:12394052,25944884:271882 -k1,3155:14839109,25944884:271883 -k1,3155:15727029,25944884:271882 -(1,3155:15727029,25944884:0,414482,115847 -r1,3232:16437007,25944884:709978,530329,115847 -k1,3155:15727029,25944884:-709978 -) -(1,3155:15727029,25944884:709978,414482,115847 -k1,3155:15727029,25944884:3277 -h1,3155:16433730,25944884:0,411205,112570 -) -k1,3155:16708889,25944884:271882 -k1,3155:18991416,25944884:271882 -k1,3155:21001313,25944884:271882 -k1,3155:24045367,25944884:271882 -k1,3155:25884871,25944884:271883 -k1,3155:27175838,25944884:271882 -k1,3155:29156244,25944884:271882 -k1,3155:31563944,25944884:271882 -k1,3155:32583029,25944884:0 -) -(1,3156:6630773,26786372:25952256,513147,126483 -g1,3155:9525498,26786372 -g1,3155:10256224,26786372 -k1,3156:32583030,26786372:19781388 -g1,3156:32583030,26786372 -) -v1,3158:6630773,27955435:0,393216,0 -(1,3184:6630773,35534578:25952256,7972359,196608 -g1,3184:6630773,35534578 -g1,3184:6630773,35534578 -g1,3184:6434165,35534578 -(1,3184:6434165,35534578:0,7972359,196608 -r1,3232:32779637,35534578:26345472,8168967,196608 -k1,3184:6434165,35534578:-26345472 -) -(1,3184:6434165,35534578:26345472,7972359,196608 -[1,3184:6630773,35534578:25952256,7775751,0 -(1,3160:6630773,28163053:25952256,404226,82312 -(1,3159:6630773,28163053:0,0,0 -g1,3159:6630773,28163053 -g1,3159:6630773,28163053 -g1,3159:6303093,28163053 -(1,3159:6303093,28163053:0,0,0 -) -g1,3159:6630773,28163053 -) -g1,3160:8211502,28163053 -g1,3160:9159940,28163053 -g1,3160:11689107,28163053 -h1,3160:12637544,28163053:0,0,0 -k1,3160:32583028,28163053:19945484 -g1,3160:32583028,28163053 -) -(1,3161:6630773,28829231:25952256,404226,76021 -h1,3161:6630773,28829231:0,0,0 -g1,3161:9476084,28829231 -g1,3161:10108376,28829231 -h1,3161:11056813,28829231:0,0,0 -k1,3161:32583029,28829231:21526216 -g1,3161:32583029,28829231 -) -(1,3165:6630773,29495409:25952256,404226,76021 -(1,3163:6630773,29495409:0,0,0 -g1,3163:6630773,29495409 -g1,3163:6630773,29495409 -g1,3163:6303093,29495409 -(1,3163:6303093,29495409:0,0,0 -) -g1,3163:6630773,29495409 -) -g1,3165:7579210,29495409 -g1,3165:8843793,29495409 -h1,3165:9476084,29495409:0,0,0 -k1,3165:32583028,29495409:23106944 -g1,3165:32583028,29495409 -) -(1,3167:6630773,30816947:25952256,404226,101187 -(1,3166:6630773,30816947:0,0,0 -g1,3166:6630773,30816947 -g1,3166:6630773,30816947 -g1,3166:6303093,30816947 -(1,3166:6303093,30816947:0,0,0 -) -g1,3166:6630773,30816947 -) -k1,3167:6630773,30816947:0 -g1,3167:9476084,30816947 -g1,3167:10108376,30816947 -h1,3167:11056813,30816947:0,0,0 -k1,3167:32583029,30816947:21526216 -g1,3167:32583029,30816947 -) -(1,3171:6630773,31483125:25952256,404226,76021 -(1,3169:6630773,31483125:0,0,0 -g1,3169:6630773,31483125 -g1,3169:6630773,31483125 -g1,3169:6303093,31483125 -(1,3169:6303093,31483125:0,0,0 -) -g1,3169:6630773,31483125 -) -g1,3171:7579210,31483125 -g1,3171:8843793,31483125 -h1,3171:9476084,31483125:0,0,0 -k1,3171:32583028,31483125:23106944 -g1,3171:32583028,31483125 -) -(1,3173:6630773,32804663:25952256,404226,82312 -(1,3172:6630773,32804663:0,0,0 -g1,3172:6630773,32804663 -g1,3172:6630773,32804663 -g1,3172:6303093,32804663 -(1,3172:6303093,32804663:0,0,0 -) -g1,3172:6630773,32804663 -) -k1,3173:6630773,32804663:0 -g1,3173:9476084,32804663 -g1,3173:10108376,32804663 -g1,3173:11372959,32804663 -h1,3173:14850562,32804663:0,0,0 -k1,3173:32583030,32804663:17732468 -g1,3173:32583030,32804663 -) -(1,3177:6630773,33470841:25952256,404226,76021 -(1,3175:6630773,33470841:0,0,0 -g1,3175:6630773,33470841 -g1,3175:6630773,33470841 -g1,3175:6303093,33470841 -(1,3175:6303093,33470841:0,0,0 -) -g1,3175:6630773,33470841 -) -g1,3177:7579210,33470841 -g1,3177:8843793,33470841 -h1,3177:10108376,33470841:0,0,0 -k1,3177:32583028,33470841:22474652 -g1,3177:32583028,33470841 -) -(1,3179:6630773,34792379:25952256,404226,101187 -(1,3178:6630773,34792379:0,0,0 -g1,3178:6630773,34792379 -g1,3178:6630773,34792379 -g1,3178:6303093,34792379 -(1,3178:6303093,34792379:0,0,0 -) -g1,3178:6630773,34792379 -) -k1,3179:6630773,34792379:0 -g1,3179:9476084,34792379 -g1,3179:10108376,34792379 -g1,3179:11372959,34792379 -h1,3179:14850562,34792379:0,0,0 -k1,3179:32583030,34792379:17732468 -g1,3179:32583030,34792379 -) -(1,3183:6630773,35458557:25952256,404226,76021 -(1,3181:6630773,35458557:0,0,0 -g1,3181:6630773,35458557 -g1,3181:6630773,35458557 -g1,3181:6303093,35458557 -(1,3181:6303093,35458557:0,0,0 -) -g1,3181:6630773,35458557 -) -g1,3183:7579210,35458557 -g1,3183:8843793,35458557 -h1,3183:10424521,35458557:0,0,0 -k1,3183:32583029,35458557:22158508 -g1,3183:32583029,35458557 -) -] -) -g1,3184:32583029,35534578 -g1,3184:6630773,35534578 -g1,3184:6630773,35534578 -g1,3184:32583029,35534578 -g1,3184:32583029,35534578 -) -h1,3184:6630773,35731186:0,0,0 -v1,3188:6630773,37578445:0,393216,0 -(1,3232:6630773,45706769:25952256,8521540,0 -g1,3232:6630773,45706769 -g1,3232:6303093,45706769 -r1,3232:6401397,45706769:98304,8521540,0 -g1,3232:6600626,45706769 -g1,3232:6797234,45706769 -[1,3232:6797234,45706769:25785795,8521540,0 -(1,3189:6797234,37999029:25785795,813800,267386 -(1,3188:6797234,37999029:0,813800,267386 -r1,3232:8134168,37999029:1336934,1081186,267386 -k1,3188:6797234,37999029:-1336934 -) -(1,3188:6797234,37999029:1336934,813800,267386 -) -k1,3188:8423897,37999029:289729 -k1,3188:8751577,37999029:327680 -k1,3188:8751577,37999029:0 -k1,3188:9669140,37999029:289728 -k1,3188:11710646,37999029:289729 -k1,3188:15330915,37999029:289729 -k1,3188:17318681,37999029:289728 -k1,3188:19866125,37999029:289729 -k1,3188:23228181,37999029:289728 -k1,3188:24674620,37999029:289729 -k1,3188:27144732,37999029:289729 -k1,3188:29163955,37999029:289728 -k1,3188:31635378,37999029:289729 -k1,3188:32583029,37999029:0 -) -(1,3189:6797234,38840517:25785795,513147,134348 -k1,3188:9568697,38840517:224734 -k1,3188:10452723,38840517:224734 -k1,3188:13109498,38840517:224734 -k1,3188:15022438,38840517:224733 -k1,3188:18063254,38840517:224734 -k1,3188:20995280,38840517:224734 -k1,3188:22600858,38840517:224734 -k1,3188:23357089,38840517:224734 -k1,3188:26111513,38840517:224734 -k1,3188:26995538,38840517:224733 -k1,3188:28550653,38840517:224734 -k1,3188:31591469,38840517:224734 -k1,3188:32583029,38840517:0 -) -(1,3189:6797234,39682005:25785795,513147,134348 -k1,3188:9048770,39682005:213366 -k1,3188:9878175,39682005:213367 -k1,3188:13498102,39682005:213366 -k1,3188:14943546,39682005:213367 -k1,3188:16175997,39682005:213366 -k1,3188:17549351,39682005:213367 -k1,3188:18572087,39682005:213366 -k1,3188:20283606,39682005:213366 -h1,3188:21080524,39682005:0,0,0 -k1,3188:21293891,39682005:213367 -k1,3188:22454908,39682005:213366 -k1,3188:23438978,39682005:213367 -k1,3188:26341942,39682005:213366 -k1,3188:30668348,39682005:213367 -k1,3188:32370037,39682005:213366 -k1,3188:32583029,39682005:0 -) -(1,3189:6797234,40523493:25785795,513147,134348 -k1,3188:8611467,40523493:153551 -k1,3188:10095399,40523493:153551 -k1,3188:10900377,40523493:153550 -k1,3188:14204244,40523493:153551 -k1,3188:16516551,40523493:153551 -k1,3188:19593663,40523493:153551 -k1,3188:21684458,40523493:153551 -k1,3188:23536046,40523493:153550 -k1,3188:25424990,40523493:153551 -k1,3188:29332443,40523493:153551 -k1,3188:32583029,40523493:0 -) -(1,3189:6797234,41364981:25785795,513147,134348 -k1,3188:7757284,41364981:142161 -k1,3188:10823005,41364981:142160 -k1,3188:12902410,41364981:142161 -k1,3188:14381504,41364981:142160 -k1,3188:18335239,41364981:142161 -k1,3188:19093437,41364981:142160 -k1,3188:21773152,41364981:142161 -(1,3188:21773152,41364981:0,459977,115847 -r1,3232:28462230,41364981:6689078,575824,115847 -k1,3188:21773152,41364981:-6689078 -) -(1,3188:21773152,41364981:6689078,459977,115847 -k1,3188:21773152,41364981:3277 -h1,3188:28458953,41364981:0,411205,112570 -) -k1,3188:28604390,41364981:142160 -k1,3188:29278048,41364981:142161 -k1,3188:32583029,41364981:0 -) -(1,3189:6797234,42206469:25785795,513147,134348 -k1,3188:8078211,42206469:235022 -k1,3188:10029621,42206469:235022 -k1,3188:10620503,42206469:235022 -k1,3188:12535869,42206469:235023 -k1,3188:13422319,42206469:235022 -k1,3188:15521840,42206469:235022 -k1,3188:16849347,42206469:235022 -k1,3188:17700407,42206469:235022 -k1,3188:19457175,42206469:235022 -k1,3188:20639849,42206469:235023 -k1,3188:23242687,42206469:235022 -k1,3188:26601155,42206469:235022 -k1,3188:29466137,42206469:235022 -k1,3188:32583029,42206469:0 -) -(1,3189:6797234,43047957:25785795,513147,134348 -k1,3188:7624604,43047957:175942 -k1,3188:8819631,43047957:175942 -k1,3188:10504213,43047957:175943 -k1,3188:11339447,43047957:175942 -k1,3188:12534474,43047957:175942 -k1,3188:16685830,43047957:175942 -k1,3188:17319869,43047957:175942 -k1,3188:18027309,43047957:175943 -k1,3188:19538219,43047957:175942 -k1,3188:20365589,43047957:175942 -k1,3188:21732976,43047957:175942 -k1,3188:22856569,43047957:175942 -k1,3188:26886684,43047957:175943 -k1,3188:28010277,43047957:175942 -k1,3188:30847636,43047957:175942 -k1,3188:32583029,43047957:0 -) -(1,3189:6797234,43889445:25785795,513147,126483 -h1,3188:6797234,43889445:0,0,0 -k1,3188:7602206,43889445:409790 -k1,3188:8802360,43889445:409790 -k1,3188:10194500,43889445:206594 -k1,3188:12728277,43889445:206594 -k1,3188:13594162,43889445:206593 -h1,3188:13594162,43889445:0,0,0 -k1,3188:14399134,43889445:409790 -k1,3188:15599289,43889445:409791 -k1,3188:17165098,43889445:206593 -k1,3188:17849449,43889445:206594 -k1,3188:19259283,43889445:206593 -k1,3188:19997374,43889445:206594 -k1,3188:21270239,43889445:206594 -k1,3188:24280462,43889445:206593 -k1,3188:25920984,43889445:206594 -k1,3188:28674306,43889445:206593 -k1,3188:30402646,43889445:206594 -k1,3188:32583029,43889445:0 -) -(1,3189:6797234,44730933:25785795,505283,134348 -k1,3188:7787927,44730933:242927 -k1,3188:9608306,44730933:242927 -k1,3188:10612760,44730933:242926 -k1,3188:13796943,44730933:242927 -k1,3188:15561616,44730933:242927 -k1,3188:16950768,44730933:242927 -h1,3188:16950768,44730933:0,0,0 -k1,3188:17827809,44730933:481859 -k1,3188:19100033,44730933:481860 -k1,3188:20528506,44730933:242927 -k1,3188:22165384,44730933:242927 -h1,3188:22165384,44730933:0,0,0 -k1,3188:24623153,44730933:481859 -k1,3188:25500195,44730933:481860 -k1,3188:27562782,44730933:481859 -k1,3188:28439824,44730933:481860 -k1,3188:29251602,44730933:242926 -k1,3188:31413423,44730933:242927 -h1,3188:31413423,44730933:0,0,0 -k1,3188:32051532,44730933:242927 -k1,3188:32583029,44730933:0 -) -(1,3189:6797234,45572421:25785795,505283,134348 -k1,3188:7395066,45572421:241972 -k1,3188:10122819,45572421:241972 -k1,3188:12224048,45572421:241973 -k1,3188:13908467,45572421:241972 -(1,3188:13908467,45572421:0,414482,115847 -r1,3232:14970156,45572421:1061689,530329,115847 -k1,3188:13908467,45572421:-1061689 -) -(1,3188:13908467,45572421:1061689,414482,115847 -k1,3188:13908467,45572421:3277 -h1,3188:14966879,45572421:0,411205,112570 -) -k1,3188:15385798,45572421:241972 -k1,3188:18417638,45572421:241972 -(1,3188:18417638,45572421:0,452978,115847 -r1,3232:20182751,45572421:1765113,568825,115847 -k1,3188:18417638,45572421:-1765113 -) -(1,3188:18417638,45572421:1765113,452978,115847 -k1,3188:18417638,45572421:3277 -h1,3188:20179474,45572421:0,411205,112570 -) -k1,3188:20424723,45572421:241972 -k1,3188:23007641,45572421:241972 -k1,3188:24268699,45572421:241973 -k1,3188:27215997,45572421:241972 -k1,3188:29311983,45572421:241972 -k1,3188:30169993,45572421:241972 -k1,3188:32583029,45572421:0 -) -] -g1,3232:32583029,45706769 -) -] -(1,3232:32583029,45706769:0,0,0 -g1,3232:32583029,45706769 -) -) -] -(1,3232:6630773,47279633:25952256,0,0 -h1,3232:6630773,47279633:25952256,0,0 -) -] -(1,3232:4262630,4025873:0,0,0 -[1,3232:-473656,4025873:0,0,0 -(1,3232:-473656,-710413:0,0,0 -(1,3232:-473656,-710413:0,0,0 -g1,3232:-473656,-710413 -) -g1,3232:-473656,-710413 -) -] -) -] -!26057 -}69 -Input:609:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:610:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:611:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:612:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:613:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:614:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:615:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:616:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:617:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!848 -{70 -[1,3351:4262630,47279633:28320399,43253760,0 -(1,3351:4262630,4025873:0,0,0 -[1,3351:-473656,4025873:0,0,0 -(1,3351:-473656,-710413:0,0,0 -(1,3351:-473656,-644877:0,0,0 -k1,3351:-473656,-644877:-65536 -) -(1,3351:-473656,4736287:0,0,0 -k1,3351:-473656,4736287:5209943 -) -g1,3351:-473656,-710413 -) -] -) -[1,3351:6630773,47279633:25952256,43253760,0 -[1,3351:6630773,4812305:25952256,786432,0 -(1,3351:6630773,4812305:25952256,505283,126483 -(1,3351:6630773,4812305:25952256,505283,126483 -g1,3351:3078558,4812305 -[1,3351:3078558,4812305:0,0,0 -(1,3351:3078558,2439708:0,1703936,0 -k1,3351:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,3351:2537886,2439708:1179648,16384,0 -) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,3351:3078558,1915420:16384,1179648,0 -) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 -) -] -) -) -) -] -[1,3351:3078558,4812305:0,0,0 -(1,3351:3078558,2439708:0,1703936,0 -g1,3351:29030814,2439708 -g1,3351:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,3351:36151628,1915420:16384,1179648,0 -) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 -) -] -) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,3351:37855564,2439708:1179648,16384,0 -) -) -k1,3351:3078556,2439708:-34777008 -) -] -[1,3351:3078558,4812305:0,0,0 -(1,3351:3078558,49800853:0,16384,2228224 -k1,3351:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,3351:2537886,49800853:1179648,16384,0 -) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,3351:3078558,51504789:16384,1179648,0 -) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 -) -] -) -) -) -] -[1,3351:3078558,4812305:0,0,0 -(1,3351:3078558,49800853:0,16384,2228224 -g1,3351:29030814,49800853 -g1,3351:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,3351:36151628,51504789:16384,1179648,0 -) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 -) -] -) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,3351:37855564,49800853:1179648,16384,0 -) -) -k1,3351:3078556,49800853:-34777008 -) -] -g1,3351:6630773,4812305 -g1,3351:6630773,4812305 -g1,3351:8050282,4812305 -g1,3351:9459961,4812305 -g1,3351:10519678,4812305 -g1,3351:14021266,4812305 -k1,3351:31786110,4812305:17764844 -) -) -] -[1,3351:6630773,45706769:25952256,40108032,0 -(1,3351:6630773,45706769:25952256,40108032,0 -(1,3351:6630773,45706769:0,0,0 -g1,3351:6630773,45706769 -) -[1,3351:6630773,45706769:25952256,40108032,0 -v1,3232:6630773,6254097:0,393216,0 -(1,3232:6630773,20015275:25952256,14154394,0 -g1,3232:6630773,20015275 -g1,3232:6303093,20015275 -r1,3351:6401397,20015275:98304,14154394,0 -g1,3232:6600626,20015275 -g1,3232:6797234,20015275 -[1,3232:6797234,20015275:25785795,14154394,0 -(1,3189:6797234,6374028:25785795,513147,134348 -k1,3188:9123157,6374028:197314 -k1,3188:11366505,6374028:197314 -k1,3188:12329934,6374028:197313 -k1,3188:14537893,6374028:197314 -k1,3188:17244581,6374028:197314 -k1,3188:18124780,6374028:197314 -k1,3188:19915929,6374028:197313 -k1,3188:20874771,6374028:197314 -k1,3188:23955669,6374028:197314 -k1,3188:25172068,6374028:197314 -k1,3188:26689931,6374028:197313 -k1,3188:27546537,6374028:197314 -k1,3188:30398714,6374028:197314 -k1,3188:32583029,6374028:0 -) -(1,3189:6797234,7215516:25785795,505283,95027 -g1,3188:7679348,7215516 -g1,3188:8494615,7215516 -g1,3188:13017254,7215516 -g1,3188:15906081,7215516 -$1,3188:15906081,7215516 -g1,3188:17079700,7215516 -g1,3188:17829957,7215516 -g1,3188:18220054,7215516 -g1,3188:18933899,7215516 -$1,3188:19681009,7215516 -k1,3189:32583029,7215516:12728350 -g1,3189:32583029,7215516 -) -v1,3191:6797234,8405982:0,393216,0 -(1,3228:6797234,19294379:25785795,11281613,196608 -g1,3228:6797234,19294379 -g1,3228:6797234,19294379 -g1,3228:6600626,19294379 -(1,3228:6600626,19294379:0,11281613,196608 -r1,3351:32779637,19294379:26179011,11478221,196608 -k1,3228:6600625,19294379:-26179012 -) -(1,3228:6600626,19294379:26179011,11281613,196608 -[1,3228:6797234,19294379:25785795,11085005,0 -(1,3193:6797234,8613600:25785795,404226,107478 -(1,3192:6797234,8613600:0,0,0 -g1,3192:6797234,8613600 -g1,3192:6797234,8613600 -g1,3192:6469554,8613600 -(1,3192:6469554,8613600:0,0,0 -) -g1,3192:6797234,8613600 -) -k1,3193:6797234,8613600:0 -g1,3193:9326400,8613600 -g1,3193:10274837,8613600 -g1,3193:10907129,8613600 -g1,3193:11539421,8613600 -g1,3193:13436295,8613600 -g1,3193:14384732,8613600 -g1,3193:17230044,8613600 -g1,3193:18494627,8613600 -k1,3193:18494627,8613600:0 -h1,3193:21023792,8613600:0,0,0 -k1,3193:32583029,8613600:11559237 -g1,3193:32583029,8613600 -) -(1,3197:6797234,9279778:25785795,404226,76021 -(1,3195:6797234,9279778:0,0,0 -g1,3195:6797234,9279778 -g1,3195:6797234,9279778 -g1,3195:6469554,9279778 -(1,3195:6469554,9279778:0,0,0 -) -g1,3195:6797234,9279778 -) -g1,3197:7745671,9279778 -g1,3197:9010254,9279778 -h1,3197:10590982,9279778:0,0,0 -k1,3197:32583030,9279778:21992048 -g1,3197:32583030,9279778 -) -(1,3199:6797234,10601316:25785795,404226,101187 -(1,3198:6797234,10601316:0,0,0 -g1,3198:6797234,10601316 -g1,3198:6797234,10601316 -g1,3198:6469554,10601316 -(1,3198:6469554,10601316:0,0,0 -) -g1,3198:6797234,10601316 -) -k1,3199:6797234,10601316:0 -g1,3199:8694109,10601316 -g1,3199:9326401,10601316 -g1,3199:10590984,10601316 -g1,3199:11539421,10601316 -h1,3199:11855567,10601316:0,0,0 -k1,3199:32583029,10601316:20727462 -g1,3199:32583029,10601316 -) -(1,3203:6797234,11267494:25785795,404226,76021 -(1,3201:6797234,11267494:0,0,0 -g1,3201:6797234,11267494 -g1,3201:6797234,11267494 -g1,3201:6469554,11267494 -(1,3201:6469554,11267494:0,0,0 -) -g1,3201:6797234,11267494 -) -g1,3203:7745671,11267494 -g1,3203:9010254,11267494 -h1,3203:10590982,11267494:0,0,0 -k1,3203:32583030,11267494:21992048 -g1,3203:32583030,11267494 -) -(1,3205:6797234,12589032:25785795,404226,101187 -(1,3204:6797234,12589032:0,0,0 -g1,3204:6797234,12589032 -g1,3204:6797234,12589032 -g1,3204:6469554,12589032 -(1,3204:6469554,12589032:0,0,0 -) -g1,3204:6797234,12589032 -) -k1,3205:6797234,12589032:0 -g1,3205:10907128,12589032 -g1,3205:11539420,12589032 -k1,3205:11539420,12589032:0 -h1,3205:13120148,12589032:0,0,0 -k1,3205:32583028,12589032:19462880 -g1,3205:32583028,12589032 -) -(1,3209:6797234,13255210:25785795,404226,76021 -(1,3207:6797234,13255210:0,0,0 -g1,3207:6797234,13255210 -g1,3207:6797234,13255210 -g1,3207:6469554,13255210 -(1,3207:6469554,13255210:0,0,0 -) -g1,3207:6797234,13255210 -) -g1,3209:7745671,13255210 -g1,3209:9010254,13255210 -h1,3209:10274837,13255210:0,0,0 -k1,3209:32583029,13255210:22308192 -g1,3209:32583029,13255210 -) -(1,3211:6797234,14576748:25785795,404226,101187 -(1,3210:6797234,14576748:0,0,0 -g1,3210:6797234,14576748 -g1,3210:6797234,14576748 -g1,3210:6469554,14576748 -(1,3210:6469554,14576748:0,0,0 -) -g1,3210:6797234,14576748 -) -k1,3211:6797234,14576748:0 -g1,3211:9958692,14576748 -g1,3211:10590984,14576748 -g1,3211:12171713,14576748 -g1,3211:12804005,14576748 -k1,3211:12804005,14576748:0 -h1,3211:14384733,14576748:0,0,0 -k1,3211:32583029,14576748:18198296 -g1,3211:32583029,14576748 -) -(1,3215:6797234,15242926:25785795,404226,76021 -(1,3213:6797234,15242926:0,0,0 -g1,3213:6797234,15242926 -g1,3213:6797234,15242926 -g1,3213:6469554,15242926 -(1,3213:6469554,15242926:0,0,0 -) -g1,3213:6797234,15242926 -) -g1,3215:7745671,15242926 -g1,3215:9010254,15242926 -h1,3215:10274837,15242926:0,0,0 -k1,3215:32583029,15242926:22308192 -g1,3215:32583029,15242926 -) -(1,3217:6797234,16564464:25785795,404226,101187 -(1,3216:6797234,16564464:0,0,0 -g1,3216:6797234,16564464 -g1,3216:6797234,16564464 -g1,3216:6469554,16564464 -(1,3216:6469554,16564464:0,0,0 -) -g1,3216:6797234,16564464 -) -k1,3217:6797234,16564464:0 -h1,3217:9010254,16564464:0,0,0 -k1,3217:32583030,16564464:23572776 -g1,3217:32583030,16564464 -) -(1,3221:6797234,17230642:25785795,404226,76021 -(1,3219:6797234,17230642:0,0,0 -g1,3219:6797234,17230642 -g1,3219:6797234,17230642 -g1,3219:6469554,17230642 -(1,3219:6469554,17230642:0,0,0 -) -g1,3219:6797234,17230642 -) -g1,3221:7745671,17230642 -g1,3221:9010254,17230642 -k1,3221:9010254,17230642:0 -h1,3221:12804002,17230642:0,0,0 -k1,3221:32583030,17230642:19779028 -g1,3221:32583030,17230642 -) -(1,3223:6797234,18552180:25785795,404226,101187 -(1,3222:6797234,18552180:0,0,0 -g1,3222:6797234,18552180 -g1,3222:6797234,18552180 -g1,3222:6469554,18552180 -(1,3222:6469554,18552180:0,0,0 -) -g1,3222:6797234,18552180 -) -k1,3223:6797234,18552180:0 -g1,3223:8694109,18552180 -g1,3223:9326401,18552180 -h1,3223:10274838,18552180:0,0,0 -k1,3223:32583030,18552180:22308192 -g1,3223:32583030,18552180 -) -(1,3227:6797234,19218358:25785795,404226,76021 -(1,3225:6797234,19218358:0,0,0 -g1,3225:6797234,19218358 -g1,3225:6797234,19218358 -g1,3225:6469554,19218358 -(1,3225:6469554,19218358:0,0,0 -) -g1,3225:6797234,19218358 -) -g1,3227:7745671,19218358 -g1,3227:9010254,19218358 -k1,3227:9010254,19218358:0 -h1,3227:13120148,19218358:0,0,0 -k1,3227:32583028,19218358:19462880 -g1,3227:32583028,19218358 -) -] -) -g1,3228:32583029,19294379 -g1,3228:6797234,19294379 -g1,3228:6797234,19294379 -g1,3228:32583029,19294379 -g1,3228:32583029,19294379 -) -h1,3228:6797234,19490987:0,0,0 -] -g1,3232:32583029,20015275 -) -h1,3232:6630773,20015275:0,0,0 -v1,3237:6630773,21905339:0,393216,0 -(1,3246:6630773,24493870:25952256,2981747,0 -g1,3246:6630773,24493870 -g1,3246:6303093,24493870 -r1,3351:6401397,24493870:98304,2981747,0 -g1,3246:6600626,24493870 -g1,3246:6797234,24493870 -[1,3246:6797234,24493870:25785795,2981747,0 -(1,3238:6797234,22267412:25785795,755289,196608 -(1,3237:6797234,22267412:0,755289,196608 -r1,3351:8134168,22267412:1336934,951897,196608 -k1,3237:6797234,22267412:-1336934 -) -(1,3237:6797234,22267412:1336934,755289,196608 -) -g1,3237:8333397,22267412 -g1,3237:8661077,22267412 -g1,3237:10056993,22267412 -g1,3237:11752409,22267412 -g1,3237:13820069,22267412 -g1,3237:16704308,22267412 -g1,3237:17669653,22267412 -g1,3237:20158710,22267412 -g1,3237:21751890,22267412 -g1,3237:24019435,22267412 -(1,3237:24019435,22267412:0,452978,115847 -r1,3351:26136260,22267412:2116825,568825,115847 -k1,3237:24019435,22267412:-2116825 -) -(1,3237:24019435,22267412:2116825,452978,115847 -k1,3237:24019435,22267412:3277 -h1,3237:26132983,22267412:0,411205,112570 -) -g1,3237:26509159,22267412 -(1,3237:26509159,22267412:0,452978,115847 -r1,3351:28625984,22267412:2116825,568825,115847 -k1,3237:26509159,22267412:-2116825 -) -(1,3237:26509159,22267412:2116825,452978,115847 -k1,3237:26509159,22267412:3277 -h1,3237:28622707,22267412:0,411205,112570 -) -g1,3237:28998883,22267412 -g1,3237:30389557,22267412 -g1,3237:31313614,22267412 -k1,3238:32583029,22267412:286375 -g1,3238:32583029,22267412 -) -v1,3240:6797234,23457878:0,393216,0 -(1,3244:6797234,23772974:25785795,708312,196608 -g1,3244:6797234,23772974 -g1,3244:6797234,23772974 -g1,3244:6600626,23772974 -(1,3244:6600626,23772974:0,708312,196608 -r1,3351:32779637,23772974:26179011,904920,196608 -k1,3244:6600625,23772974:-26179012 -) -(1,3244:6600626,23772974:26179011,708312,196608 -[1,3244:6797234,23772974:25785795,511704,0 -(1,3242:6797234,23665496:25785795,404226,107478 -(1,3241:6797234,23665496:0,0,0 -g1,3241:6797234,23665496 -g1,3241:6797234,23665496 -g1,3241:6469554,23665496 -(1,3241:6469554,23665496:0,0,0 -) -g1,3241:6797234,23665496 -) -k1,3242:6797234,23665496:0 -g1,3242:10590983,23665496 -g1,3242:11223275,23665496 -g1,3242:14700878,23665496 -g1,3242:15333170,23665496 -h1,3242:21656083,23665496:0,0,0 -k1,3242:32583029,23665496:10926946 -g1,3242:32583029,23665496 -) -] -) -g1,3244:32583029,23772974 -g1,3244:6797234,23772974 -g1,3244:6797234,23772974 -g1,3244:32583029,23772974 -g1,3244:32583029,23772974 -) -h1,3244:6797234,23969582:0,0,0 -] -g1,3246:32583029,24493870 -) -h1,3246:6630773,24493870:0,0,0 -(1,3248:6630773,27301438:25952256,32768,229376 -(1,3248:6630773,27301438:0,32768,229376 -(1,3248:6630773,27301438:5505024,32768,229376 -r1,3351:12135797,27301438:5505024,262144,229376 -) -k1,3248:6630773,27301438:-5505024 -) -(1,3248:6630773,27301438:25952256,32768,0 -r1,3351:32583029,27301438:25952256,32768,0 -) -) -(1,3248:6630773,28905766:25952256,606339,151780 -(1,3248:6630773,28905766:1974731,582746,14155 -g1,3248:6630773,28905766 -g1,3248:8605504,28905766 -) -g1,3248:10448114,28905766 -g1,3248:12157817,28905766 -g1,3248:13563171,28905766 -k1,3248:32583029,28905766:14806155 -g1,3248:32583029,28905766 -) -(1,3252:6630773,30140470:25952256,513147,134348 -k1,3251:8077963,30140470:250503 -k1,3251:8743257,30140470:250451 -k1,3251:11836056,30140470:250503 -k1,3251:14943273,30140470:250503 -k1,3251:16128319,30140470:250503 -k1,3251:19783416,30140470:250502 -k1,3251:20843289,30140470:250503 -k1,3251:23575640,30140470:250503 -k1,3251:25383934,30140470:250503 -k1,3251:26738719,30140470:250503 -k1,3251:27736987,30140470:250502 -k1,3251:29964711,30140470:250503 -k1,3251:30831252,30140470:250503 -k1,3251:32583029,30140470:0 -) -(1,3252:6630773,30981958:25952256,513147,134348 -k1,3251:9628980,30981958:235864 -k1,3251:12564272,30981958:235864 -k1,3251:14498173,30981958:235863 -k1,3251:18969629,30981958:235864 -k1,3251:20396938,30981958:235864 -k1,3251:24036087,30981958:235864 -k1,3251:26580129,30981958:235864 -k1,3251:27475284,30981958:235863 -k1,3251:29895463,30981958:235864 -k1,3251:30759162,30981958:235864 -k1,3252:32583029,30981958:0 -) -(1,3252:6630773,31823446:25952256,513147,134348 -k1,3251:9825871,31823446:149640 -k1,3251:10433609,31823446:149641 -k1,3251:11114746,31823446:149640 -k1,3251:13159033,31823446:149641 -k1,3251:14256324,31823446:149640 -k1,3251:17241052,31823446:149641 -k1,3251:18042120,31823446:149640 -k1,3251:19907494,31823446:149641 -k1,3251:21149619,31823446:149640 -k1,3251:21958552,31823446:149641 -k1,3251:25082871,31823446:149640 -k1,3251:27540690,31823446:149641 -k1,3251:28349622,31823446:149640 -k1,3251:29982997,31823446:149640 -k1,3251:31623582,31823446:149641 -k1,3251:32583029,31823446:0 -) -(1,3252:6630773,32664934:25952256,505283,134348 -k1,3251:9093324,32664934:135368 -k1,3251:12633287,32664934:135368 -k1,3251:13960100,32664934:135368 -k1,3251:15604107,32664934:135368 -k1,3251:19374758,32664934:135369 -k1,3251:20126164,32664934:135368 -k1,3251:24584942,32664934:135368 -k1,3251:27409908,32664934:135368 -k1,3251:28736721,32664934:135368 -k1,3252:32583029,32664934:0 -) -(1,3252:6630773,33506422:25952256,513147,134348 -k1,3251:7949826,33506422:328804 -k1,3251:8693342,33506422:328673 -k1,3251:12047943,33506422:328804 -k1,3251:13541977,33506422:328804 -k1,3251:15840792,33506422:328803 -$1,3251:15840792,33506422 -$1,3251:16408989,33506422 -k1,3251:16911463,33506422:328804 -(1,3251:16911463,33506422:0,452978,115847 -r1,3351:19380000,33506422:2468537,568825,115847 -k1,3251:16911463,33506422:-2468537 -) -(1,3251:16911463,33506422:2468537,452978,115847 -k1,3251:16911463,33506422:3277 -h1,3251:19376723,33506422:0,411205,112570 -) -k1,3251:19882474,33506422:328804 -k1,3251:24017609,33506422:328804 -$1,3251:24017609,33506422 -$1,3251:24585806,33506422 -k1,3251:25088279,33506422:328803 -(1,3251:25088279,33506422:0,452978,115847 -r1,3351:28963663,33506422:3875384,568825,115847 -k1,3251:25088279,33506422:-3875384 -) -(1,3251:25088279,33506422:3875384,452978,115847 -k1,3251:25088279,33506422:3277 -h1,3251:28960386,33506422:0,411205,112570 -) -k1,3251:29466137,33506422:328804 -k1,3251:32583029,33506422:0 -) -(1,3252:6630773,34347910:25952256,505283,126483 -k1,3251:11670327,34347910:193167 -$1,3251:11670327,34347910 -$1,3251:12238524,34347910 -k1,3251:12605360,34347910:193166 -(1,3251:12605360,34347910:0,459977,115847 -r1,3351:15777320,34347910:3171960,575824,115847 -k1,3251:12605360,34347910:-3171960 -) -(1,3251:12605360,34347910:3171960,459977,115847 -k1,3251:12605360,34347910:3277 -h1,3251:15774043,34347910:0,411205,112570 -) -k1,3251:16144157,34347910:193167 -k1,3251:18857838,34347910:193166 -k1,3251:20193953,34347910:193167 -(1,3251:20193953,34347910:0,452978,115847 -r1,3351:23717625,34347910:3523672,568825,115847 -k1,3251:20193953,34347910:-3523672 -) -(1,3251:20193953,34347910:3523672,452978,115847 -k1,3251:20193953,34347910:3277 -h1,3251:23714348,34347910:0,411205,112570 -) -k1,3251:24084461,34347910:193166 -k1,3251:28355933,34347910:193167 -(1,3251:28355933,34347910:0,452978,115847 -r1,3351:32583029,34347910:4227096,568825,115847 -k1,3251:28355933,34347910:-4227096 -) -(1,3251:28355933,34347910:4227096,452978,115847 -k1,3251:28355933,34347910:3277 -h1,3251:32579752,34347910:0,411205,112570 -) -k1,3251:32583029,34347910:0 -) -(1,3252:6630773,35189398:25952256,513147,126483 -k1,3251:8016500,35189398:194282 -k1,3251:10957397,35189398:194283 -(1,3251:10957397,35189398:0,452978,115847 -r1,3351:12370798,35189398:1413401,568825,115847 -k1,3251:10957397,35189398:-1413401 -) -(1,3251:10957397,35189398:1413401,452978,115847 -k1,3251:10957397,35189398:3277 -h1,3251:12367521,35189398:0,411205,112570 -) -k1,3251:12738750,35189398:194282 -k1,3251:14129720,35189398:194283 -k1,3251:15630135,35189398:194282 -k1,3251:17479202,35189398:194283 -k1,3251:21078079,35189398:194282 -k1,3251:23283006,35189398:194282 -k1,3251:23833149,35189398:194283 -k1,3251:26005308,35189398:194282 -k1,3251:26858883,35189398:194283 -k1,3251:28072250,35189398:194282 -k1,3251:29920006,35189398:194283 -k1,3251:31896867,35189398:194282 -k1,3251:32583029,35189398:0 -) -(1,3252:6630773,36030886:25952256,513147,126483 -k1,3251:8325067,36030886:185655 -k1,3251:10723217,36030886:185655 -k1,3251:12100318,36030886:185656 -k1,3251:13305058,36030886:185655 -k1,3251:14638904,36030886:185655 -k1,3251:16479343,36030886:185655 -k1,3251:17020858,36030886:185655 -(1,3251:17020858,36030886:0,452978,122846 -r1,3351:19489395,36030886:2468537,575824,122846 -k1,3251:17020858,36030886:-2468537 -) -(1,3251:17020858,36030886:2468537,452978,122846 -k1,3251:17020858,36030886:3277 -h1,3251:19486118,36030886:0,411205,112570 -) -k1,3251:19675051,36030886:185656 -k1,3251:22012253,36030886:185655 -k1,3251:23394595,36030886:185655 -k1,3251:25537155,36030886:185655 -k1,3251:26382102,36030886:185655 -k1,3251:27586843,36030886:185656 -k1,3251:29078631,36030886:185655 -k1,3251:30919070,36030886:185655 -k1,3252:32583029,36030886:0 -) -(1,3252:6630773,36872374:25952256,505283,134348 -k1,3251:8779862,36872374:195461 -k1,3251:9506820,36872374:195461 -k1,3251:11303981,36872374:195461 -k1,3251:13300371,36872374:195461 -k1,3251:16778530,36872374:195461 -k1,3251:18367942,36872374:195461 -k1,3251:20198527,36872374:195462 -k1,3251:23514157,36872374:195461 -k1,3251:25628512,36872374:195461 -k1,3251:26843058,36872374:195461 -k1,3251:29817246,36872374:195461 -k1,3251:31693050,36872374:195461 -k1,3251:32583029,36872374:0 -) -(1,3252:6630773,37713862:25952256,513147,134348 -g1,3251:8672874,37713862 -g1,3251:9531395,37713862 -g1,3251:10749709,37713862 -g1,3251:14230326,37713862 -g1,3251:14961052,37713862 -g1,3251:17908861,37713862 -g1,3251:18724128,37713862 -g1,3251:21016577,37713862 -k1,3252:32583029,37713862:10021768 -g1,3252:32583029,37713862 -) -(1,3309:6630773,43907553:25952256,5646466,0 -h1,3254:6630773,43907553:983040,0,0 -k1,3254:9934956,43907553:2321143 -(1,3280:9934956,43907553:9002893,5646466,0 -g1,3280:12758189,43907553 -(1,3280:12758189,41084320:0,0,0 -(1,3280:12758189,41084320:0,0,0 -g1,3258:12758189,41084320 -g1,3261:12758189,41084320 -g1,3261:12758189,41084320 -(1,3261:12758189,41084320:0,0,0 -(1,3261:12758189,41084320:0,0,0 -g1,3261:12758189,41084320 -(1,3261:12758189,41084320:0,0,0 -(1,3261:12758189,41084320:0,0,0 -h1,3261:12758189,41084320:0,0,0 -g1,3261:12758189,41084320 -) -) -g1,3261:12758189,41084320 -g1,3261:12758189,41084320 -) -(1,3261:12758189,41084320:0,0,0 -g1,3261:12758189,41084320 -g1,3261:12758189,41084320 -g1,3261:12758189,41084320 -g1,3261:12758189,41084320 -g1,3261:12758189,41084320 -(1,3261:12758189,41084320:0,0,0 -(1,3261:12758189,41084320:414188,385352,0 -(1,3261:12758189,41084320:414188,385352,0 -$1,3261:12758189,41084320 -$1,3261:13172377,41084320 -) -g1,3261:13172377,41084320 -) -) -g1,3261:12758189,41084320 -g1,3261:12758189,41084320 -) -) -g1,3261:12758189,41084320 -g1,3264:12758189,41084320 -g1,3264:12758189,41084320 -(1,3264:12758189,41084320:0,0,0 -(1,3264:12758189,41084320:0,0,0 -g1,3264:12758189,41084320 -(1,3264:12758189,41084320:0,0,0 -(1,3264:12758189,41084320:0,0,0 -h1,3264:12758189,41084320:0,0,0 -g1,3264:12758189,41084320 -) -) -g1,3264:12758189,41084320 -g1,3264:12758189,41084320 -) -(1,3264:12758189,41084320:0,0,0 -g1,3264:12758189,41084320 -g1,3264:12758189,41084320 -g1,3264:12758189,41084320 -(1,3264:12758189,41084320:0,0,0 -(1,3264:12758189,41084320:358613,379060,0 -(1,3264:12758189,41084320:358613,379060,0 -$1,3264:12758189,41084320 -$1,3264:13116802,41084320 -) -g1,3264:13116802,41084320 -) -) -g1,3264:12758189,41084320 -g1,3264:12758189,41084320 -) -) -g1,3264:12758189,41084320 -g1,3270:12758189,41084320 -g1,3271:12758189,41084320 -g1,3271:12758189,41084320 -g1,3274:12758189,41084320 -g1,3275:12758189,41084320 -(1,3278:12758189,41084320:0,0,0 -(1,3278:12758189,41084320:0,0,0 -g1,3278:12758189,41084320 -g1,3278:12758189,41084320 -g1,3278:12758189,41084320 -g1,3278:12758189,41084320 -g1,3278:12758189,41084320 -(1,3278:12758189,41084320:0,0,0 -(1,3278:12758189,41084320:1460399,385352,0 -(1,3278:12758189,41084320:1460399,385352,0 -$1,3278:12758189,41084320 -g1,3278:13288897,41084320 -g1,3278:13859975,41084320 -$1,3278:14218588,41084320 -) -g1,3278:14218588,41084320 -) -) -g1,3278:12758189,41084320 -g1,3278:12758189,41084320 -) -) -g1,3278:12758189,41084320 -g1,3280:12758189,41084320 -g1,3280:12758189,41084320 -) -g1,3280:12758189,41084320 -) -) -k1,3281:21258993,43907553:2321144 -(1,3306:21258993,43907553:9002893,5646466,0 -g1,3306:24082226,43907553 -(1,3306:24082226,41084320:0,0,0 -(1,3306:24082226,41084320:0,0,0 -g1,3285:24082226,41084320 -g1,3288:24082226,41084320 -g1,3288:24082226,41084320 -(1,3288:24082226,41084320:0,0,0 -(1,3288:24082226,41084320:0,0,0 -g1,3288:24082226,41084320 -(1,3288:24082226,41084320:0,0,0 -(1,3288:24082226,41084320:0,0,0 -h1,3288:24082226,41084320:0,0,0 -g1,3288:24082226,41084320 -) -) -g1,3288:24082226,41084320 -g1,3288:24082226,41084320 -) -(1,3288:24082226,41084320:0,0,0 -g1,3288:24082226,41084320 -g1,3288:24082226,41084320 -g1,3288:24082226,41084320 -g1,3288:24082226,41084320 -g1,3288:24082226,41084320 -(1,3288:24082226,41084320:0,0,0 -(1,3288:24082226,41084320:414188,385352,0 -(1,3288:24082226,41084320:414188,385352,0 -$1,3288:24082226,41084320 -$1,3288:24496414,41084320 -) -g1,3288:24496414,41084320 -) -) -g1,3288:24082226,41084320 -g1,3288:24082226,41084320 -) -) -g1,3288:24082226,41084320 -g1,3291:24082226,41084320 -g1,3291:24082226,41084320 -(1,3291:24082226,41084320:0,0,0 -(1,3291:24082226,41084320:0,0,0 -g1,3291:24082226,41084320 -(1,3291:24082226,41084320:0,0,0 -(1,3291:24082226,41084320:0,0,0 -h1,3291:24082226,41084320:0,0,0 -g1,3291:24082226,41084320 -) -) -g1,3291:24082226,41084320 -g1,3291:24082226,41084320 -) -(1,3291:24082226,41084320:0,0,0 -g1,3291:24082226,41084320 -g1,3291:24082226,41084320 -g1,3291:24082226,41084320 -(1,3291:24082226,41084320:0,0,0 -(1,3291:24082226,41084320:358613,379060,0 -(1,3291:24082226,41084320:358613,379060,0 -$1,3291:24082226,41084320 -$1,3291:24440839,41084320 -) -g1,3291:24440839,41084320 -) -) -g1,3291:24082226,41084320 -g1,3291:24082226,41084320 -) -) -g1,3291:24082226,41084320 -g1,3297:24082226,41084320 -g1,3298:24082226,41084320 -g1,3298:24082226,41084320 -g1,3300:24082226,41084320 -g1,3301:24082226,41084320 -(1,3304:24082226,41084320:0,0,0 -(1,3304:24082226,41084320:0,0,0 -g1,3304:24082226,41084320 -g1,3304:24082226,41084320 -g1,3304:24082226,41084320 -g1,3304:24082226,41084320 -g1,3304:24082226,41084320 -(1,3304:24082226,41084320:0,0,0 -(1,3304:24082226,41084320:1460399,385352,0 -(1,3304:24082226,41084320:1460399,385352,0 -$1,3304:24082226,41084320 -g1,3304:24612934,41084320 -g1,3304:25184012,41084320 -$1,3304:25542625,41084320 -) -g1,3304:25542625,41084320 -) -) -g1,3304:24082226,41084320 -g1,3304:24082226,41084320 -) -) -g1,3304:24082226,41084320 -g1,3306:24082226,41084320 -g1,3306:24082226,41084320 -) -g1,3306:24082226,41084320 -) -) -k1,3307:32583029,43907553:2321143 -g1,3309:32583029,43907553 -g1,3309:32583029,43907553 -) -] -(1,3351:32583029,45706769:0,0,0 -g1,3351:32583029,45706769 -) -) -] -(1,3351:6630773,47279633:25952256,0,0 -h1,3351:6630773,47279633:25952256,0,0 -) -] -(1,3351:4262630,4025873:0,0,0 -[1,3351:-473656,4025873:0,0,0 -(1,3351:-473656,-710413:0,0,0 -(1,3351:-473656,-710413:0,0,0 -g1,3351:-473656,-710413 -) -g1,3351:-473656,-710413 -) -] -) -] -!24377 -}70 -!11 -{71 -[1,3447:4262630,47279633:28320399,43253760,0 -(1,3447:4262630,4025873:0,0,0 -[1,3447:-473656,4025873:0,0,0 -(1,3447:-473656,-710413:0,0,0 -(1,3447:-473656,-644877:0,0,0 -k1,3447:-473656,-644877:-65536 -) -(1,3447:-473656,4736287:0,0,0 -k1,3447:-473656,4736287:5209943 -) -g1,3447:-473656,-710413 -) -] -) -[1,3447:6630773,47279633:25952256,43253760,0 -[1,3447:6630773,4812305:25952256,786432,0 -(1,3447:6630773,4812305:25952256,505283,11795 -(1,3447:6630773,4812305:25952256,505283,11795 -g1,3447:3078558,4812305 -[1,3447:3078558,4812305:0,0,0 -(1,3447:3078558,2439708:0,1703936,0 -k1,3447:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,3447:2537886,2439708:1179648,16384,0 -) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,3447:3078558,1915420:16384,1179648,0 -) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 -) -] -) -) -) -] -[1,3447:3078558,4812305:0,0,0 -(1,3447:3078558,2439708:0,1703936,0 -g1,3447:29030814,2439708 -g1,3447:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,3447:36151628,1915420:16384,1179648,0 -) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 -) -] -) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,3447:37855564,2439708:1179648,16384,0 -) -) -k1,3447:3078556,2439708:-34777008 -) -] -[1,3447:3078558,4812305:0,0,0 -(1,3447:3078558,49800853:0,16384,2228224 -k1,3447:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,3447:2537886,49800853:1179648,16384,0 -) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,3447:3078558,51504789:16384,1179648,0 -) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 -) -] -) -) -) -] -[1,3447:3078558,4812305:0,0,0 -(1,3447:3078558,49800853:0,16384,2228224 -g1,3447:29030814,49800853 -g1,3447:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,3447:36151628,51504789:16384,1179648,0 -) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 -) -] -) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,3447:37855564,49800853:1179648,16384,0 -) -) -k1,3447:3078556,49800853:-34777008 -) -] -g1,3447:6630773,4812305 -k1,3447:22348274,4812305:14920583 -g1,3447:23970945,4812305 -g1,3447:24793421,4812305 -g1,3447:27528893,4812305 -g1,3447:28938572,4812305 -) -) -] -[1,3447:6630773,45706769:25952256,40108032,0 -(1,3447:6630773,45706769:25952256,40108032,0 -(1,3447:6630773,45706769:0,0,0 -g1,3447:6630773,45706769 -) -[1,3447:6630773,45706769:25952256,40108032,0 -(1,3351:6630773,11245203:25952256,5646466,0 -h1,3310:6630773,11245203:983040,0,0 -k1,3310:9868547,11245203:2254734 -(1,3328:9868547,11245203:9002893,5646466,0 -g1,3328:12691780,11245203 -(1,3328:12691780,8421970:0,0,0 -(1,3328:12691780,8421970:0,0,0 -g1,3313:12691780,8421970 -g1,3316:12691780,8421970 -g1,3316:12691780,8421970 -(1,3316:12691780,8421970:0,0,0 -(1,3316:12691780,8421970:0,0,0 -g1,3316:12691780,8421970 -(1,3316:12691780,8421970:0,0,0 -(1,3316:12691780,8421970:0,0,0 -h1,3316:12691780,8421970:0,0,0 -g1,3316:12691780,8421970 -) -) -g1,3316:12691780,8421970 -g1,3316:12691780,8421970 -) -(1,3316:12691780,8421970:0,0,0 -g1,3316:12691780,8421970 -g1,3316:12691780,8421970 -g1,3316:12691780,8421970 -g1,3316:12691780,8421970 -g1,3316:12691780,8421970 -(1,3316:12691780,8421970:0,0,0 -(1,3316:12691780,8421970:414188,385352,0 -(1,3316:12691780,8421970:414188,385352,0 -$1,3316:12691780,8421970 -$1,3316:13105968,8421970 -) -g1,3316:13105968,8421970 -) -) -g1,3316:12691780,8421970 -g1,3316:12691780,8421970 -) -) -g1,3316:12691780,8421970 -g1,3319:12691780,8421970 -g1,3319:12691780,8421970 -(1,3319:12691780,8421970:0,0,0 -(1,3319:12691780,8421970:0,0,0 -g1,3319:12691780,8421970 -(1,3319:12691780,8421970:0,0,0 -(1,3319:12691780,8421970:0,0,0 -h1,3319:12691780,8421970:0,0,0 -g1,3319:12691780,8421970 -) -) -g1,3319:12691780,8421970 -g1,3319:12691780,8421970 -) -(1,3319:12691780,8421970:0,0,0 -g1,3319:12691780,8421970 -g1,3319:12691780,8421970 -g1,3319:12691780,8421970 -(1,3319:12691780,8421970:0,0,0 -(1,3319:12691780,8421970:358613,379060,0 -(1,3319:12691780,8421970:358613,379060,0 -$1,3319:12691780,8421970 -$1,3319:13050393,8421970 -) -g1,3319:13050393,8421970 -) -) -g1,3319:12691780,8421970 -g1,3319:12691780,8421970 -) -) -g1,3319:12691780,8421970 -g1,3322:12691780,8421970 -g1,3323:12691780,8421970 -(1,3326:12691780,8421970:0,0,0 -(1,3326:12691780,8421970:0,0,0 -g1,3326:12691780,8421970 -g1,3326:12691780,8421970 -g1,3326:12691780,8421970 -g1,3326:12691780,8421970 -g1,3326:12691780,8421970 -(1,3326:12691780,8421970:0,0,0 -(1,3326:12691780,8421970:1460399,385352,0 -(1,3326:12691780,8421970:1460399,385352,0 -$1,3326:12691780,8421970 -g1,3326:13222488,8421970 -g1,3326:13793566,8421970 -$1,3326:14152179,8421970 -) -g1,3326:14152179,8421970 -) -) -g1,3326:12691780,8421970 -g1,3326:12691780,8421970 -) -) -g1,3326:12691780,8421970 -g1,3328:12691780,8421970 -g1,3328:12691780,8421970 -) -g1,3328:12691780,8421970 -) -) -k1,3329:21126174,11245203:2254734 -(1,3347:21126174,11245203:9002893,5646466,0 -g1,3347:23949407,11245203 -(1,3347:23949407,8421970:0,0,0 -(1,3347:23949407,8421970:0,0,0 -g1,3332:23949407,8421970 -g1,3335:23949407,8421970 -g1,3335:23949407,8421970 -(1,3335:23949407,8421970:0,0,0 -(1,3335:23949407,8421970:0,0,0 -g1,3335:23949407,8421970 -(1,3335:23949407,8421970:0,0,0 -(1,3335:23949407,8421970:0,0,0 -h1,3335:23949407,8421970:0,0,0 -g1,3335:23949407,8421970 -) -) -g1,3335:23949407,8421970 -g1,3335:23949407,8421970 -) -(1,3335:23949407,8421970:0,0,0 -g1,3335:23949407,8421970 -g1,3335:23949407,8421970 -g1,3335:23949407,8421970 -(1,3335:23949407,8421970:0,0,0 -(1,3335:23949407,8421970:358613,379060,0 -(1,3335:23949407,8421970:358613,379060,0 -$1,3335:23949407,8421970 -$1,3335:24308020,8421970 -) -g1,3335:24308020,8421970 -) -) -g1,3335:23949407,8421970 -g1,3335:23949407,8421970 -) -) -g1,3335:23949407,8421970 -g1,3338:23949407,8421970 -g1,3338:23949407,8421970 -(1,3338:23949407,8421970:0,0,0 -(1,3338:23949407,8421970:0,0,0 -g1,3338:23949407,8421970 -(1,3338:23949407,8421970:0,0,0 -(1,3338:23949407,8421970:0,0,0 -h1,3338:23949407,8421970:0,0,0 -g1,3338:23949407,8421970 -) -) -g1,3338:23949407,8421970 -g1,3338:23949407,8421970 -) -(1,3338:23949407,8421970:0,0,0 -g1,3338:23949407,8421970 -g1,3338:23949407,8421970 -g1,3338:23949407,8421970 -g1,3338:23949407,8421970 -g1,3338:23949407,8421970 -(1,3338:23949407,8421970:0,0,0 -(1,3338:23949407,8421970:414188,385352,0 -(1,3338:23949407,8421970:414188,385352,0 -$1,3338:23949407,8421970 -$1,3338:24363595,8421970 -) -g1,3338:24363595,8421970 -) -) -g1,3338:23949407,8421970 -g1,3338:23949407,8421970 -) -) -g1,3338:23949407,8421970 -g1,3341:23949407,8421970 -g1,3342:23949407,8421970 -(1,3345:23949407,8421970:0,0,0 -(1,3345:23949407,8421970:0,0,0 -g1,3345:23949407,8421970 -g1,3345:23949407,8421970 -g1,3345:23949407,8421970 -g1,3345:23949407,8421970 -g1,3345:23949407,8421970 -(1,3345:23949407,8421970:0,0,0 -(1,3345:23949407,8421970:1460399,385352,0 -(1,3345:23949407,8421970:1460399,385352,0 -$1,3345:23949407,8421970 -g1,3345:24424540,8421970 -g1,3345:24995618,8421970 -$1,3345:25409806,8421970 -) -g1,3345:25409806,8421970 -) -) -g1,3345:23949407,8421970 -g1,3345:23949407,8421970 -) -) -g1,3345:23949407,8421970 -g1,3347:23949407,8421970 -g1,3347:23949407,8421970 -) -g1,3347:23949407,8421970 -) -) -k1,3348:32383800,11245203:2254733 -g1,3349:32583029,11245203 -g1,3351:32583029,11245203 -g1,3351:32583029,11245203 -) -(1,3353:6630773,12434032:25952256,513147,134348 -h1,3352:6630773,12434032:983040,0,0 -k1,3352:8972910,12434032:162410 -k1,3352:12353138,12434032:162410 -k1,3352:15920143,12434032:162410 -k1,3352:17074113,12434032:162410 -k1,3352:19106921,12434032:162410 -k1,3352:19920759,12434032:162410 -k1,3352:23215790,12434032:162410 -k1,3352:25113593,12434032:162410 -k1,3352:27584181,12434032:162410 -k1,3352:29140542,12434032:162410 -k1,3352:31313597,12434032:162410 -k1,3353:32583029,12434032:0 -) -(1,3353:6630773,13275520:25952256,513147,134348 -k1,3352:9815346,13275520:209238 -k1,3352:10380445,13275520:209239 -k1,3352:13578125,13275520:209238 -k1,3352:16622451,13275520:209239 -k1,3352:19219166,13275520:209238 -k1,3352:22573478,13275520:209239 -k1,3352:24158317,13275520:209238 -k1,3352:25821145,13275520:209239 -k1,3352:28783550,13275520:209238 -k1,3352:29754317,13275520:209239 -k1,3352:31613752,13275520:209238 -k1,3353:32583029,13275520:0 -) -(1,3353:6630773,14117008:25952256,505283,126483 -g1,3352:8651903,14117008 -k1,3353:32583028,14117008:20765736 -g1,3353:32583028,14117008 -) -v1,3355:6630773,15257442:0,393216,0 -(1,3408:6630773,32792275:25952256,17928049,196608 -g1,3408:6630773,32792275 -g1,3408:6630773,32792275 -g1,3408:6434165,32792275 -(1,3408:6434165,32792275:0,17928049,196608 -r1,3447:32779637,32792275:26345472,18124657,196608 -k1,3408:6434165,32792275:-26345472 -) -(1,3408:6434165,32792275:26345472,17928049,196608 -[1,3408:6630773,32792275:25952256,17731441,0 -(1,3357:6630773,15471352:25952256,410518,107478 -(1,3356:6630773,15471352:0,0,0 -g1,3356:6630773,15471352 -g1,3356:6630773,15471352 -g1,3356:6303093,15471352 -(1,3356:6303093,15471352:0,0,0 -) -g1,3356:6630773,15471352 -) -g1,3357:8843793,15471352 -g1,3357:9792231,15471352 -g1,3357:13269835,15471352 -g1,3357:15799001,15471352 -g1,3357:18960458,15471352 -g1,3357:21805770,15471352 -h1,3357:25599518,15471352:0,0,0 -k1,3357:32583029,15471352:6983511 -g1,3357:32583029,15471352 -) -(1,3358:6630773,16137530:25952256,404226,101187 -h1,3358:6630773,16137530:0,0,0 -g1,3358:8843793,16137530 -g1,3358:9792231,16137530 -g1,3358:13269835,16137530 -g1,3358:15799001,16137530 -g1,3358:18328167,16137530 -h1,3358:21489624,16137530:0,0,0 -k1,3358:32583029,16137530:11093405 -g1,3358:32583029,16137530 -) -(1,3359:6630773,16803708:25952256,404226,101187 -h1,3359:6630773,16803708:0,0,0 -g1,3359:8527647,16803708 -g1,3359:9476085,16803708 -g1,3359:12637543,16803708 -g1,3359:15799000,16803708 -h1,3359:18644311,16803708:0,0,0 -k1,3359:32583029,16803708:13938718 -g1,3359:32583029,16803708 -) -(1,3360:6630773,17469886:25952256,404226,107478 -h1,3360:6630773,17469886:0,0,0 -g1,3360:9476084,17469886 -g1,3360:10424522,17469886 -g1,3360:13902126,17469886 -g1,3360:17063583,17469886 -g1,3360:19908895,17469886 -g1,3360:23070352,17469886 -h1,3360:25915663,17469886:0,0,0 -k1,3360:32583029,17469886:6667366 -g1,3360:32583029,17469886 -) -(1,3361:6630773,18136064:25952256,410518,107478 -h1,3361:6630773,18136064:0,0,0 -g1,3361:12321396,18136064 -h1,3361:15166707,18136064:0,0,0 -k1,3361:32583029,18136064:17416322 -g1,3361:32583029,18136064 -) -(1,3365:6630773,18802242:25952256,404226,107478 -(1,3363:6630773,18802242:0,0,0 -g1,3363:6630773,18802242 -g1,3363:6630773,18802242 -g1,3363:6303093,18802242 -(1,3363:6303093,18802242:0,0,0 -) -g1,3363:6630773,18802242 -) -g1,3365:7579210,18802242 -g1,3365:8843793,18802242 -g1,3365:11372959,18802242 -g1,3365:11689105,18802242 -h1,3365:14218270,18802242:0,0,0 -k1,3365:32583030,18802242:18364760 -g1,3365:32583030,18802242 -) -(1,3367:6630773,20123780:25952256,404226,107478 -(1,3366:6630773,20123780:0,0,0 -g1,3366:6630773,20123780 -g1,3366:6630773,20123780 -g1,3366:6303093,20123780 -(1,3366:6303093,20123780:0,0,0 -) -g1,3366:6630773,20123780 -) -k1,3367:6630773,20123780:0 -g1,3367:12321396,20123780 -h1,3367:15166707,20123780:0,0,0 -k1,3367:32583029,20123780:17416322 -g1,3367:32583029,20123780 -) -(1,3371:6630773,20789958:25952256,404226,76021 -(1,3369:6630773,20789958:0,0,0 -g1,3369:6630773,20789958 -g1,3369:6630773,20789958 -g1,3369:6303093,20789958 -(1,3369:6303093,20789958:0,0,0 -) -g1,3369:6630773,20789958 -) -g1,3371:7579210,20789958 -g1,3371:8843793,20789958 -h1,3371:11056813,20789958:0,0,0 -k1,3371:32583029,20789958:21526216 -g1,3371:32583029,20789958 -) -(1,3373:6630773,22111496:25952256,404226,107478 -(1,3372:6630773,22111496:0,0,0 -g1,3372:6630773,22111496 -g1,3372:6630773,22111496 -g1,3372:6303093,22111496 -(1,3372:6303093,22111496:0,0,0 -) -g1,3372:6630773,22111496 -) -k1,3373:6630773,22111496:0 -g1,3373:12005250,22111496 -h1,3373:14850561,22111496:0,0,0 -k1,3373:32583029,22111496:17732468 -g1,3373:32583029,22111496 -) -(1,3377:6630773,22777674:25952256,404226,76021 -(1,3375:6630773,22777674:0,0,0 -g1,3375:6630773,22777674 -g1,3375:6630773,22777674 -g1,3375:6303093,22777674 -(1,3375:6303093,22777674:0,0,0 -) -g1,3375:6630773,22777674 -) -g1,3377:7579210,22777674 -g1,3377:8843793,22777674 -g1,3377:11689104,22777674 -h1,3377:14218269,22777674:0,0,0 -k1,3377:32583029,22777674:18364760 -g1,3377:32583029,22777674 -) -(1,3379:6630773,24099212:25952256,404226,101187 -(1,3378:6630773,24099212:0,0,0 -g1,3378:6630773,24099212 -g1,3378:6630773,24099212 -g1,3378:6303093,24099212 -(1,3378:6303093,24099212:0,0,0 -) -g1,3378:6630773,24099212 -) -g1,3379:9159939,24099212 -g1,3379:10740668,24099212 -h1,3379:12321396,24099212:0,0,0 -k1,3379:32583028,24099212:20261632 -g1,3379:32583028,24099212 -) -(1,3383:6630773,24765390:25952256,404226,76021 -(1,3381:6630773,24765390:0,0,0 -g1,3381:6630773,24765390 -g1,3381:6630773,24765390 -g1,3381:6303093,24765390 -(1,3381:6303093,24765390:0,0,0 -) -g1,3381:6630773,24765390 -) -g1,3383:7579210,24765390 -g1,3383:8843793,24765390 -h1,3383:10424521,24765390:0,0,0 -k1,3383:32583029,24765390:22158508 -g1,3383:32583029,24765390 -) -(1,3385:6630773,26086928:25952256,410518,9436 -(1,3384:6630773,26086928:0,0,0 -g1,3384:6630773,26086928 -g1,3384:6630773,26086928 -g1,3384:6303093,26086928 -(1,3384:6303093,26086928:0,0,0 -) -g1,3384:6630773,26086928 -) -g1,3385:9159939,26086928 -g1,3385:10740668,26086928 -h1,3385:12637542,26086928:0,0,0 -k1,3385:32583030,26086928:19945488 -g1,3385:32583030,26086928 -) -(1,3389:6630773,26753106:25952256,404226,76021 -(1,3387:6630773,26753106:0,0,0 -g1,3387:6630773,26753106 -g1,3387:6630773,26753106 -g1,3387:6303093,26753106 -(1,3387:6303093,26753106:0,0,0 -) -g1,3387:6630773,26753106 -) -g1,3389:7579210,26753106 -g1,3389:8843793,26753106 -h1,3389:10108376,26753106:0,0,0 -k1,3389:32583028,26753106:22474652 -g1,3389:32583028,26753106 -) -(1,3391:6630773,28074644:25952256,404226,107478 -(1,3390:6630773,28074644:0,0,0 -g1,3390:6630773,28074644 -g1,3390:6630773,28074644 -g1,3390:6303093,28074644 -(1,3390:6303093,28074644:0,0,0 -) -g1,3390:6630773,28074644 -) -g1,3391:8527647,28074644 -g1,3391:10108376,28074644 -h1,3391:12637541,28074644:0,0,0 -k1,3391:32583029,28074644:19945488 -g1,3391:32583029,28074644 -) -(1,3395:6630773,28740822:25952256,404226,76021 -(1,3393:6630773,28740822:0,0,0 -g1,3393:6630773,28740822 -g1,3393:6630773,28740822 -g1,3393:6303093,28740822 -(1,3393:6303093,28740822:0,0,0 -) -g1,3393:6630773,28740822 -) -g1,3395:7579210,28740822 -g1,3395:8843793,28740822 -g1,3395:10740667,28740822 -g1,3395:11056813,28740822 -g1,3395:12637542,28740822 -g1,3395:12953688,28740822 -h1,3395:14218271,28740822:0,0,0 -k1,3395:32583029,28740822:18364758 -g1,3395:32583029,28740822 -) -(1,3397:6630773,30062360:25952256,404226,101187 -(1,3396:6630773,30062360:0,0,0 -g1,3396:6630773,30062360 -g1,3396:6630773,30062360 -g1,3396:6303093,30062360 -(1,3396:6303093,30062360:0,0,0 -) -g1,3396:6630773,30062360 -) -k1,3397:6630773,30062360:0 -g1,3397:11056813,30062360 -h1,3397:12953687,30062360:0,0,0 -k1,3397:32583029,30062360:19629342 -g1,3397:32583029,30062360 -) -(1,3401:6630773,30728538:25952256,404226,76021 -(1,3399:6630773,30728538:0,0,0 -g1,3399:6630773,30728538 -g1,3399:6630773,30728538 -g1,3399:6303093,30728538 -(1,3399:6303093,30728538:0,0,0 -) -g1,3399:6630773,30728538 -) -g1,3401:7579210,30728538 -g1,3401:8843793,30728538 -g1,3401:11372959,30728538 -g1,3401:11689105,30728538 -g1,3401:12005251,30728538 -g1,3401:14218271,30728538 -g1,3401:14534417,30728538 -g1,3401:14850563,30728538 -g1,3401:15166709,30728538 -g1,3401:17379729,30728538 -g1,3401:17695875,30728538 -g1,3401:18012021,30728538 -g1,3401:18328167,30728538 -g1,3401:21489624,30728538 -g1,3401:23702644,30728538 -g1,3401:24018790,30728538 -g1,3401:24334936,30728538 -g1,3401:24651082,30728538 -g1,3401:27496393,30728538 -g1,3401:27812539,30728538 -h1,3401:30341704,30728538:0,0,0 -k1,3401:32583029,30728538:2241325 -g1,3401:32583029,30728538 -) -(1,3403:6630773,32050076:25952256,410518,107478 -(1,3402:6630773,32050076:0,0,0 -g1,3402:6630773,32050076 -g1,3402:6630773,32050076 -g1,3402:6303093,32050076 -(1,3402:6303093,32050076:0,0,0 -) -g1,3402:6630773,32050076 -) -k1,3403:6630773,32050076:0 -g1,3403:13585979,32050076 -g1,3403:16115145,32050076 -g1,3403:19276602,32050076 -g1,3403:19908894,32050076 -g1,3403:22121914,32050076 -k1,3403:22121914,32050076:0 -h1,3403:23386497,32050076:0,0,0 -k1,3403:32583029,32050076:9196532 -g1,3403:32583029,32050076 -) -(1,3407:6630773,32716254:25952256,404226,76021 -(1,3405:6630773,32716254:0,0,0 -g1,3405:6630773,32716254 -g1,3405:6630773,32716254 -g1,3405:6303093,32716254 -(1,3405:6303093,32716254:0,0,0 -) -g1,3405:6630773,32716254 -) -g1,3407:7579210,32716254 -g1,3407:8843793,32716254 -g1,3407:11056813,32716254 -g1,3407:11372959,32716254 -g1,3407:11689105,32716254 -g1,3407:12005251,32716254 -g1,3407:14218271,32716254 -g1,3407:14534417,32716254 -g1,3407:14850563,32716254 -g1,3407:15166709,32716254 -g1,3407:18328166,32716254 -h1,3407:20225040,32716254:0,0,0 -k1,3407:32583029,32716254:12357989 -g1,3407:32583029,32716254 -) -] -) -g1,3408:32583029,32792275 -g1,3408:6630773,32792275 -g1,3408:6630773,32792275 -g1,3408:32583029,32792275 -g1,3408:32583029,32792275 -) -h1,3408:6630773,32988883:0,0,0 -v1,3412:6630773,34778882:0,393216,0 -(1,3442:6630773,45706769:25952256,11321103,0 -g1,3442:6630773,45706769 -g1,3442:6303093,45706769 -r1,3447:6401397,45706769:98304,11321103,0 -g1,3442:6600626,45706769 -g1,3442:6797234,45706769 -[1,3442:6797234,45706769:25785795,11321103,0 -(1,3413:6797234,35199466:25785795,813800,267386 -(1,3412:6797234,35199466:0,813800,267386 -r1,3447:8134168,35199466:1336934,1081186,267386 -k1,3412:6797234,35199466:-1336934 -) -(1,3412:6797234,35199466:1336934,813800,267386 -) -k1,3412:8376870,35199466:242702 -k1,3412:8704550,35199466:327680 -k1,3412:10237000,35199466:242701 -k1,3412:13148983,35199466:242702 -k1,3412:17382172,35199466:242702 -k1,3412:18311035,35199466:242701 -k1,3412:18909597,35199466:242702 -k1,3412:21174085,35199466:242702 -k1,3412:24368528,35199466:242701 -k1,3412:26028118,35199466:242702 -k1,3412:27968858,35199466:242702 -k1,3412:30519737,35199466:242701 -k1,3412:31753999,35199466:242702 -k1,3413:32583029,35199466:0 -) -(1,3413:6797234,36040954:25785795,505283,134348 -k1,3412:9932768,36040954:161510 -k1,3412:10780440,36040954:161510 -k1,3412:12380464,36040954:161509 -k1,3412:15498303,36040954:161510 -k1,3412:18613521,36040954:161510 -k1,3412:19766591,36040954:161510 -k1,3412:23436242,36040954:161509 -k1,3412:26636656,36040954:161510 -k1,3412:29751874,36040954:161510 -k1,3412:32583029,36040954:0 -) -(1,3413:6797234,36882442:25785795,513147,126483 -g1,3412:9812545,36882442 -g1,3412:10697936,36882442 -g1,3412:12605689,36882442 -g1,3412:13796478,36882442 -g1,3412:16124972,36882442 -g1,3412:19501386,36882442 -g1,3412:20316653,36882442 -g1,3412:21534967,36882442 -g1,3412:24512923,36882442 -k1,3413:32583029,36882442:5885791 -g1,3413:32583029,36882442 -) -v1,3415:6797234,38072908:0,393216,0 -(1,3440:6797234,44985873:25785795,7306181,196608 -g1,3440:6797234,44985873 -g1,3440:6797234,44985873 -g1,3440:6600626,44985873 -(1,3440:6600626,44985873:0,7306181,196608 -r1,3447:32779637,44985873:26179011,7502789,196608 -k1,3440:6600625,44985873:-26179012 -) -(1,3440:6600626,44985873:26179011,7306181,196608 -[1,3440:6797234,44985873:25785795,7109573,0 -(1,3417:6797234,38280526:25785795,404226,101187 -(1,3416:6797234,38280526:0,0,0 -g1,3416:6797234,38280526 -g1,3416:6797234,38280526 -g1,3416:6469554,38280526 -(1,3416:6469554,38280526:0,0,0 -) -g1,3416:6797234,38280526 -) -k1,3417:6797234,38280526:0 -g1,3417:10907129,38280526 -g1,3417:12487858,38280526 -g1,3417:14384733,38280526 -g1,3417:16597754,38280526 -g1,3417:18178483,38280526 -g1,3417:20075357,38280526 -g1,3417:20707649,38280526 -g1,3417:21972232,38280526 -k1,3417:21972232,38280526:0 -h1,3417:24817543,38280526:0,0,0 -k1,3417:32583029,38280526:7765486 -g1,3417:32583029,38280526 -) -(1,3421:6797234,38946704:25785795,404226,76021 -(1,3419:6797234,38946704:0,0,0 -g1,3419:6797234,38946704 -g1,3419:6797234,38946704 -g1,3419:6469554,38946704 -(1,3419:6469554,38946704:0,0,0 -) -g1,3419:6797234,38946704 -) -g1,3421:7745671,38946704 -g1,3421:9010254,38946704 -g1,3421:10274837,38946704 -h1,3421:11223274,38946704:0,0,0 -k1,3421:32583030,38946704:21359756 -g1,3421:32583030,38946704 -) -(1,3423:6797234,40268242:25785795,404226,101187 -(1,3422:6797234,40268242:0,0,0 -g1,3422:6797234,40268242 -g1,3422:6797234,40268242 -g1,3422:6469554,40268242 -(1,3422:6469554,40268242:0,0,0 -) -g1,3422:6797234,40268242 -) -k1,3423:6797234,40268242:0 -g1,3423:11855566,40268242 -g1,3423:13436295,40268242 -g1,3423:15333170,40268242 -g1,3423:17546191,40268242 -g1,3423:19126920,40268242 -g1,3423:21023794,40268242 -g1,3423:21656086,40268242 -g1,3423:23236815,40268242 -k1,3423:23236815,40268242:39846 -h1,3423:25805826,40268242:0,0,0 -k1,3423:32583029,40268242:6777203 -g1,3423:32583029,40268242 -) -(1,3427:6797234,40934420:25785795,404226,76021 -(1,3425:6797234,40934420:0,0,0 -g1,3425:6797234,40934420 -g1,3425:6797234,40934420 -g1,3425:6469554,40934420 -(1,3425:6469554,40934420:0,0,0 -) -g1,3425:6797234,40934420 -) -g1,3427:7745671,40934420 -g1,3427:9010254,40934420 -h1,3427:10274837,40934420:0,0,0 -k1,3427:32583029,40934420:22308192 -g1,3427:32583029,40934420 -) -(1,3429:6797234,42255958:25785795,404226,101187 -(1,3428:6797234,42255958:0,0,0 -g1,3428:6797234,42255958 -g1,3428:6797234,42255958 -g1,3428:6469554,42255958 -(1,3428:6469554,42255958:0,0,0 -) -g1,3428:6797234,42255958 -) -k1,3429:6797234,42255958:0 -g1,3429:12171712,42255958 -g1,3429:13752441,42255958 -g1,3429:15649316,42255958 -g1,3429:17862337,42255958 -g1,3429:19443066,42255958 -g1,3429:21339940,42255958 -g1,3429:21972232,42255958 -g1,3429:24501398,42255958 -k1,3429:24501398,42255958:39846 -h1,3429:27070409,42255958:0,0,0 -k1,3429:32583029,42255958:5512620 -g1,3429:32583029,42255958 -) -(1,3433:6797234,42922136:25785795,404226,107478 -(1,3431:6797234,42922136:0,0,0 -g1,3431:6797234,42922136 -g1,3431:6797234,42922136 -g1,3431:6469554,42922136 -(1,3431:6469554,42922136:0,0,0 -) -g1,3431:6797234,42922136 -) -g1,3433:7745671,42922136 -g1,3433:9010254,42922136 -g1,3433:9958691,42922136 -g1,3433:12171711,42922136 -h1,3433:15017022,42922136:0,0,0 -k1,3433:32583030,42922136:17566008 -g1,3433:32583030,42922136 -) -(1,3435:6797234,44243674:25785795,404226,101187 -(1,3434:6797234,44243674:0,0,0 -g1,3434:6797234,44243674 -g1,3434:6797234,44243674 -g1,3434:6469554,44243674 -(1,3434:6469554,44243674:0,0,0 -) -g1,3434:6797234,44243674 -) -k1,3435:6797234,44243674:0 -g1,3435:12171712,44243674 -g1,3435:13752441,44243674 -g1,3435:15649316,44243674 -g1,3435:17862337,44243674 -g1,3435:19443066,44243674 -g1,3435:21339940,44243674 -g1,3435:21972232,44243674 -g1,3435:24501398,44243674 -k1,3435:24501398,44243674:39846 -h1,3435:27070409,44243674:0,0,0 -k1,3435:32583029,44243674:5512620 -g1,3435:32583029,44243674 -) -(1,3439:6797234,44909852:25785795,404226,76021 -(1,3437:6797234,44909852:0,0,0 -g1,3437:6797234,44909852 -g1,3437:6797234,44909852 -g1,3437:6469554,44909852 -(1,3437:6469554,44909852:0,0,0 -) -g1,3437:6797234,44909852 -) -g1,3439:7745671,44909852 -g1,3439:9010254,44909852 -h1,3439:10590982,44909852:0,0,0 -k1,3439:32583030,44909852:21992048 -g1,3439:32583030,44909852 -) -] -) -g1,3440:32583029,44985873 -g1,3440:6797234,44985873 -g1,3440:6797234,44985873 -g1,3440:32583029,44985873 -g1,3440:32583029,44985873 -) -h1,3440:6797234,45182481:0,0,0 -] -g1,3442:32583029,45706769 -) -h1,3442:6630773,45706769:0,0,0 -] -(1,3447:32583029,45706769:0,0,0 -g1,3447:32583029,45706769 -) -) -] -(1,3447:6630773,47279633:25952256,0,0 -h1,3447:6630773,47279633:25952256,0,0 -) -] -(1,3447:4262630,4025873:0,0,0 -[1,3447:-473656,4025873:0,0,0 -(1,3447:-473656,-710413:0,0,0 -(1,3447:-473656,-710413:0,0,0 -g1,3447:-473656,-710413 -) -g1,3447:-473656,-710413 -) -] -) -] -!23791 -}71 -Input:618:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:619:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:620:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:621:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:622:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:623:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:624:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:625:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:626:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:627:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:628:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:629:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:630:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:631:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:632:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:633:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:634:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:635:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1685 -{72 -[1,3526:4262630,47279633:28320399,43253760,0 -(1,3526:4262630,4025873:0,0,0 -[1,3526:-473656,4025873:0,0,0 -(1,3526:-473656,-710413:0,0,0 -(1,3526:-473656,-644877:0,0,0 -k1,3526:-473656,-644877:-65536 -) -(1,3526:-473656,4736287:0,0,0 -k1,3526:-473656,4736287:5209943 -) -g1,3526:-473656,-710413 -) -] -) -[1,3526:6630773,47279633:25952256,43253760,0 -[1,3526:6630773,4812305:25952256,786432,0 -(1,3526:6630773,4812305:25952256,505283,126483 -(1,3526:6630773,4812305:25952256,505283,126483 -g1,3526:3078558,4812305 -[1,3526:3078558,4812305:0,0,0 -(1,3526:3078558,2439708:0,1703936,0 -k1,3526:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,3526:2537886,2439708:1179648,16384,0 -) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,3526:3078558,1915420:16384,1179648,0 -) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 -) -] -) -) -) -] -[1,3526:3078558,4812305:0,0,0 -(1,3526:3078558,2439708:0,1703936,0 -g1,3526:29030814,2439708 -g1,3526:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,3526:36151628,1915420:16384,1179648,0 -) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 -) -] -) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,3526:37855564,2439708:1179648,16384,0 -) -) -k1,3526:3078556,2439708:-34777008 -) -] -[1,3526:3078558,4812305:0,0,0 -(1,3526:3078558,49800853:0,16384,2228224 -k1,3526:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,3526:2537886,49800853:1179648,16384,0 -) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,3526:3078558,51504789:16384,1179648,0 -) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 -) -] -) -) -) -] -[1,3526:3078558,4812305:0,0,0 -(1,3526:3078558,49800853:0,16384,2228224 -g1,3526:29030814,49800853 -g1,3526:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,3526:36151628,51504789:16384,1179648,0 -) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 -) -] -) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,3526:37855564,49800853:1179648,16384,0 -) -) -k1,3526:3078556,49800853:-34777008 -) -] -g1,3526:6630773,4812305 -g1,3526:6630773,4812305 -g1,3526:8050282,4812305 -g1,3526:9459961,4812305 -g1,3526:10519678,4812305 -g1,3526:14021266,4812305 -k1,3526:31786110,4812305:17764844 -) -) -] -[1,3526:6630773,45706769:25952256,40108032,0 -(1,3526:6630773,45706769:25952256,40108032,0 -(1,3526:6630773,45706769:0,0,0 -g1,3526:6630773,45706769 -) -[1,3526:6630773,45706769:25952256,40108032,0 -(1,3445:6630773,6254097:25952256,505283,126483 -h1,3444:6630773,6254097:983040,0,0 -g1,3444:8766591,6254097 -g1,3444:11989651,6254097 -g1,3444:13380325,6254097 -g1,3444:14970228,6254097 -g1,3444:15525317,6254097 -g1,3444:18699225,6254097 -g1,3444:20876331,6254097 -g1,3444:21726988,6254097 -g1,3444:23018702,6254097 -g1,3444:23833969,6254097 -g1,3444:25052283,6254097 -g1,3444:26635632,6254097 -k1,3445:32583029,6254097:2782008 -g1,3445:32583029,6254097 -) -v1,3447:6630773,7419328:0,393216,0 -(1,3451:6630773,7709258:25952256,683146,196608 -g1,3451:6630773,7709258 -g1,3451:6630773,7709258 -g1,3451:6434165,7709258 -(1,3451:6434165,7709258:0,683146,196608 -r1,3526:32779637,7709258:26345472,879754,196608 -k1,3451:6434165,7709258:-26345472 -) -(1,3451:6434165,7709258:26345472,683146,196608 -[1,3451:6630773,7709258:25952256,486538,0 -(1,3449:6630773,7626946:25952256,404226,82312 -(1,3448:6630773,7626946:0,0,0 -g1,3448:6630773,7626946 -g1,3448:6630773,7626946 -g1,3448:6303093,7626946 -(1,3448:6303093,7626946:0,0,0 -) -g1,3448:6630773,7626946 -) -g1,3449:8211502,7626946 -g1,3449:9159940,7626946 -g1,3449:11372961,7626946 -g1,3449:12953690,7626946 -g1,3449:14534419,7626946 -h1,3449:15799002,7626946:0,0,0 -k1,3449:32583030,7626946:16784028 -g1,3449:32583030,7626946 -) -] -) -g1,3451:32583029,7709258 -g1,3451:6630773,7709258 -g1,3451:6630773,7709258 -g1,3451:32583029,7709258 -g1,3451:32583029,7709258 -) -h1,3451:6630773,7905866:0,0,0 -(1,3455:6630773,9246407:25952256,513147,134348 -h1,3454:6630773,9246407:983040,0,0 -k1,3454:8685462,9246407:242619 -k1,3454:10119527,9246407:242620 -k1,3454:10828107,9246407:242619 -k1,3454:11426586,9246407:242619 -k1,3454:13363966,9246407:242619 -k1,3454:15286929,9246407:242620 -k1,3454:17996323,9246407:242619 -k1,3454:18890370,9246407:242619 -k1,3454:19488849,9246407:242619 -k1,3454:20839683,9246407:242620 -k1,3454:21950654,9246407:242619 -k1,3454:23285758,9246407:242619 -k1,3454:26274991,9246407:242619 -(1,3454:26274991,9246407:0,452978,115847 -r1,3526:27688392,9246407:1413401,568825,115847 -k1,3454:26274991,9246407:-1413401 -) -(1,3454:26274991,9246407:1413401,452978,115847 -k1,3454:26274991,9246407:3277 -h1,3454:27685115,9246407:0,411205,112570 -) -k1,3454:27931012,9246407:242620 -k1,3454:28856516,9246407:242619 -k1,3454:29887533,9246407:242619 -k1,3454:32583029,9246407:0 -) -(1,3455:6630773,10087895:25952256,513147,134348 -k1,3454:10214687,10087895:278933 -(1,3454:10214687,10087895:0,452978,115847 -r1,3526:14441783,10087895:4227096,568825,115847 -k1,3454:10214687,10087895:-4227096 -) -(1,3454:10214687,10087895:4227096,452978,115847 -k1,3454:10214687,10087895:3277 -h1,3454:14438506,10087895:0,411205,112570 -) -k1,3454:14894387,10087895:278934 -k1,3454:15801155,10087895:278933 -k1,3454:17099174,10087895:278934 -k1,3454:19705290,10087895:278933 -k1,3454:20643516,10087895:278934 -k1,3454:22187294,10087895:278933 -k1,3454:25329495,10087895:278933 -k1,3454:26811670,10087895:278934 -k1,3454:27622100,10087895:278933 -k1,3454:30187585,10087895:278934 -$1,3454:30187585,10087895 -k1,3454:30978001,10087895:327732 -k1,3454:31891625,10087895:327732 -$1,3454:32409359,10087895 -k1,3454:32583029,10087895:0 -) -(1,3455:6630773,10929383:25952256,505283,126483 -k1,3454:8770045,10929383:220378 -$1,3454:8770045,10929383 -$1,3454:9287779,10929383 -k1,3454:9508157,10929383:220378 -k1,3454:10260032,10929383:220378 -k1,3454:10836270,10929383:220378 -k1,3454:11991191,10929383:220378 -k1,3454:13403014,10929383:220378 -$1,3454:13403014,10929383 -$1,3454:13865698,10929383 -k1,3454:14086076,10929383:220378 -k1,3454:14662314,10929383:220378 -k1,3454:17679769,10929383:220378 -k1,3454:19096834,10929383:220378 -k1,3454:21558543,10929383:220378 -k1,3454:24965281,10929383:220378 -k1,3454:27176643,10929383:220378 -k1,3454:28681527,10929383:220378 -k1,3454:29920990,10929383:220378 -(1,3454:29920990,10929383:0,452978,115847 -r1,3526:31334391,10929383:1413401,568825,115847 -k1,3454:29920990,10929383:-1413401 -) -(1,3454:29920990,10929383:1413401,452978,115847 -k1,3454:29920990,10929383:3277 -h1,3454:31331114,10929383:0,411205,112570 -) -k1,3454:31554769,10929383:220378 -k1,3455:32583029,10929383:0 -) -(1,3455:6630773,11770871:25952256,513147,134348 -g1,3454:8761348,11770871 -g1,3454:9492074,11770871 -g1,3454:13028396,11770871 -g1,3454:14036995,11770871 -g1,3454:15024622,11770871 -g1,3454:19629837,11770871 -g1,3454:21193526,11770871 -g1,3454:24208837,11770871 -g1,3454:27408960,11770871 -g1,3454:27964049,11770871 -g1,3454:30232905,11770871 -k1,3455:32583029,11770871:198577 -g1,3455:32583029,11770871 -) -v1,3457:6630773,12936102:0,393216,0 -(1,3476:6630773,17861351:25952256,5318465,196608 -g1,3476:6630773,17861351 -g1,3476:6630773,17861351 -g1,3476:6434165,17861351 -(1,3476:6434165,17861351:0,5318465,196608 -r1,3526:32779637,17861351:26345472,5515073,196608 -k1,3476:6434165,17861351:-26345472 -) -(1,3476:6434165,17861351:26345472,5318465,196608 -[1,3476:6630773,17861351:25952256,5121857,0 -(1,3459:6630773,13143720:25952256,404226,82312 -(1,3458:6630773,13143720:0,0,0 -g1,3458:6630773,13143720 -g1,3458:6630773,13143720 -g1,3458:6303093,13143720 -(1,3458:6303093,13143720:0,0,0 -) -g1,3458:6630773,13143720 -) -k1,3459:6630773,13143720:0 -g1,3459:11689105,13143720 -h1,3459:13269833,13143720:0,0,0 -k1,3459:32583029,13143720:19313196 -g1,3459:32583029,13143720 -) -(1,3463:6630773,13809898:25952256,404226,76021 -(1,3461:6630773,13809898:0,0,0 -g1,3461:6630773,13809898 -g1,3461:6630773,13809898 -g1,3461:6303093,13809898 -(1,3461:6303093,13809898:0,0,0 -) -g1,3461:6630773,13809898 -) -g1,3463:7579210,13809898 -g1,3463:8843793,13809898 -h1,3463:10108376,13809898:0,0,0 -k1,3463:32583028,13809898:22474652 -g1,3463:32583028,13809898 -) -(1,3465:6630773,15131436:25952256,404226,9436 -(1,3464:6630773,15131436:0,0,0 -g1,3464:6630773,15131436 -g1,3464:6630773,15131436 -g1,3464:6303093,15131436 -(1,3464:6303093,15131436:0,0,0 -) -g1,3464:6630773,15131436 -) -g1,3465:7895356,15131436 -g1,3465:9476085,15131436 -h1,3465:10740668,15131436:0,0,0 -k1,3465:32583028,15131436:21842360 -g1,3465:32583028,15131436 -) -(1,3469:6630773,15797614:25952256,404226,76021 -(1,3467:6630773,15797614:0,0,0 -g1,3467:6630773,15797614 -g1,3467:6630773,15797614 -g1,3467:6303093,15797614 -(1,3467:6303093,15797614:0,0,0 -) -g1,3467:6630773,15797614 -) -g1,3469:7579210,15797614 -g1,3469:8843793,15797614 -h1,3469:10108376,15797614:0,0,0 -k1,3469:32583028,15797614:22474652 -g1,3469:32583028,15797614 -) -(1,3471:6630773,17119152:25952256,404226,82312 -(1,3470:6630773,17119152:0,0,0 -g1,3470:6630773,17119152 -g1,3470:6630773,17119152 -g1,3470:6303093,17119152 -(1,3470:6303093,17119152:0,0,0 -) -g1,3470:6630773,17119152 -) -k1,3471:6630773,17119152:0 -g1,3471:8843794,17119152 -g1,3471:10424523,17119152 -g1,3471:12005252,17119152 -g1,3471:13585981,17119152 -h1,3471:14850564,17119152:0,0,0 -k1,3471:32583028,17119152:17732464 -g1,3471:32583028,17119152 -) -(1,3475:6630773,17785330:25952256,404226,76021 -(1,3473:6630773,17785330:0,0,0 -g1,3473:6630773,17785330 -g1,3473:6630773,17785330 -g1,3473:6303093,17785330 -(1,3473:6303093,17785330:0,0,0 -) -g1,3473:6630773,17785330 -) -g1,3475:7579210,17785330 -g1,3475:8843793,17785330 -g1,3475:9159939,17785330 -g1,3475:10740668,17785330 -g1,3475:11056814,17785330 -g1,3475:12637543,17785330 -h1,3475:14218271,17785330:0,0,0 -k1,3475:32583029,17785330:18364758 -g1,3475:32583029,17785330 -) -] -) -g1,3476:32583029,17861351 -g1,3476:6630773,17861351 -g1,3476:6630773,17861351 -g1,3476:32583029,17861351 -g1,3476:32583029,17861351 -) -h1,3476:6630773,18057959:0,0,0 -v1,3480:6630773,19897553:0,393216,0 -(1,3492:6630773,28169733:25952256,8665396,0 -g1,3492:6630773,28169733 -g1,3492:6303093,28169733 -r1,3526:6401397,28169733:98304,8665396,0 -g1,3492:6600626,28169733 -g1,3492:6797234,28169733 -[1,3492:6797234,28169733:25785795,8665396,0 -(1,3481:6797234,20259626:25785795,755289,196608 -(1,3480:6797234,20259626:0,755289,196608 -r1,3526:8134168,20259626:1336934,951897,196608 -k1,3480:6797234,20259626:-1336934 -) -(1,3480:6797234,20259626:1336934,755289,196608 -) -k1,3480:8315430,20259626:181262 -k1,3480:8643110,20259626:327680 -k1,3480:10403790,20259626:181262 -k1,3480:11201089,20259626:181261 -k1,3480:13039101,20259626:181262 -k1,3480:14504869,20259626:181262 -k1,3480:17770255,20259626:181262 -k1,3480:22153030,20259626:181262 -k1,3480:22950330,20259626:181262 -k1,3480:25878205,20259626:181261 -h1,3480:25878205,20259626:0,0,0 -k1,3480:27813865,20259626:181262 -k1,3480:28526624,20259626:181262 -k1,3480:29478589,20259626:181262 -k1,3481:32583029,20259626:0 -) -(1,3481:6797234,21101114:25785795,513147,134348 -k1,3480:8370753,21101114:189399 -k1,3480:9833517,21101114:189399 -k1,3480:13143740,21101114:189399 -k1,3480:16407433,21101114:189399 -k1,3480:18756243,21101114:189399 -k1,3480:19301502,21101114:189399 -k1,3480:21468779,21101114:189400 -k1,3480:22849623,21101114:189399 -k1,3480:23394882,21101114:189399 -k1,3480:24692495,21101114:189399 -k1,3480:26078581,21101114:189399 -k1,3480:31135339,21101114:189399 -k1,3480:32583029,21101114:0 -) -(1,3481:6797234,21942602:25785795,513147,134348 -k1,3480:10089326,21942602:219764 -k1,3480:10840587,21942602:219764 -k1,3480:14650413,21942602:219764 -k1,3480:15556339,21942602:219764 -k1,3480:16131963,21942602:219764 -k1,3480:17459941,21942602:219764 -k1,3480:19369222,21942602:219763 -k1,3480:20608071,21942602:219764 -k1,3480:25233821,21942602:219764 -k1,3480:26818045,21942602:219764 -k1,3480:30110137,21942602:219764 -k1,3480:30861398,21942602:219764 -k1,3481:32583029,21942602:0 -) -(1,3481:6797234,22784090:25785795,513147,126483 -k1,3480:9059905,22784090:181248 -k1,3480:9927315,22784090:181248 -k1,3480:10464423,22784090:181248 -k1,3480:12623548,22784090:181248 -k1,3480:13464088,22784090:181248 -k1,3480:15655981,22784090:181248 -k1,3480:16488657,22784090:181248 -k1,3480:17861349,22784090:181247 -k1,3480:18990248,22784090:181248 -k1,3480:23161983,22784090:181248 -k1,3480:23959269,22784090:181248 -k1,3480:25159602,22784090:181248 -k1,3480:26449064,22784090:181248 -k1,3480:27258147,22784090:181248 -k1,3480:29141365,22784090:181248 -k1,3480:31451222,22784090:181248 -k1,3480:32583029,22784090:0 -) -(1,3481:6797234,23625578:25785795,505283,126483 -k1,3480:9928847,23625578:175284 -k1,3480:12727536,23625578:175283 -k1,3480:13518858,23625578:175284 -k1,3480:14713226,23625578:175283 -k1,3480:15838782,23625578:175284 -k1,3480:18656477,23625578:175283 -k1,3480:19363258,23625578:175284 -k1,3480:22171122,23625578:175283 -k1,3480:23537851,23625578:175284 -k1,3480:25672660,23625578:175283 -k1,3480:27537462,23625578:175284 -k1,3480:28731830,23625578:175283 -k1,3480:29940617,23625578:175284 -k1,3480:32583029,23625578:0 -) -(1,3481:6797234,24467066:25785795,513147,134348 -k1,3480:7532314,24467066:203583 -k1,3480:11325959,24467066:203583 -k1,3480:12215704,24467066:203583 -k1,3480:12775147,24467066:203583 -k1,3480:13913273,24467066:203583 -k1,3480:14776148,24467066:203583 -k1,3480:17177153,24467066:203583 -k1,3480:19565050,24467066:203582 -k1,3480:20965320,24467066:203583 -k1,3480:23947630,24467066:203583 -k1,3480:26220840,24467066:203583 -k1,3480:28402300,24467066:203583 -k1,3480:29706888,24467066:203583 -k1,3480:30929556,24467066:203583 -k1,3480:32583029,24467066:0 -) -(1,3481:6797234,25308554:25785795,505283,134348 -g1,3480:9009729,25308554 -g1,3480:9895120,25308554 -g1,3480:11113434,25308554 -g1,3480:12262935,25308554 -k1,3481:32583029,25308554:17504012 -g1,3481:32583029,25308554 -) -v1,3483:6797234,26499020:0,393216,0 -(1,3490:6797234,27448837:25785795,1343033,196608 -g1,3490:6797234,27448837 -g1,3490:6797234,27448837 -g1,3490:6600626,27448837 -(1,3490:6600626,27448837:0,1343033,196608 -r1,3526:32779637,27448837:26179011,1539641,196608 -k1,3490:6600625,27448837:-26179012 -) -(1,3490:6600626,27448837:26179011,1343033,196608 -[1,3490:6797234,27448837:25785795,1146425,0 -(1,3485:6797234,26706638:25785795,404226,9436 -(1,3484:6797234,26706638:0,0,0 -g1,3484:6797234,26706638 -g1,3484:6797234,26706638 -g1,3484:6469554,26706638 -(1,3484:6469554,26706638:0,0,0 -) -g1,3484:6797234,26706638 -) -g1,3485:8377963,26706638 -g1,3485:9958692,26706638 -h1,3485:10907129,26706638:0,0,0 -k1,3485:32583029,26706638:21675900 -g1,3485:32583029,26706638 -) -(1,3489:6797234,27372816:25785795,404226,76021 -(1,3487:6797234,27372816:0,0,0 -g1,3487:6797234,27372816 -g1,3487:6797234,27372816 -g1,3487:6469554,27372816 -(1,3487:6469554,27372816:0,0,0 -) -g1,3487:6797234,27372816 -) -g1,3489:7745671,27372816 -g1,3489:9010254,27372816 -g1,3489:9326400,27372816 -g1,3489:10907129,27372816 -g1,3489:12804003,27372816 -g1,3489:14700877,27372816 -h1,3489:16281605,27372816:0,0,0 -k1,3489:32583029,27372816:16301424 -g1,3489:32583029,27372816 -) -] -) -g1,3490:32583029,27448837 -g1,3490:6797234,27448837 -g1,3490:6797234,27448837 -g1,3490:32583029,27448837 -g1,3490:32583029,27448837 -) -h1,3490:6797234,27645445:0,0,0 -] -g1,3492:32583029,28169733 -) -h1,3492:6630773,28169733:0,0,0 -(1,3495:6630773,29510274:25952256,513147,134348 -h1,3494:6630773,29510274:983040,0,0 -k1,3494:9056809,29510274:246309 -k1,3494:12062838,29510274:246308 -k1,3494:12968439,29510274:246309 -k1,3494:16125201,29510274:246308 -k1,3494:16903007,29510274:246309 -$1,3494:16903007,29510274 -k1,3494:17633796,29510274:268105 -k1,3494:18487793,29510274:268105 -$1,3494:19005527,29510274 -k1,3494:19425506,29510274:246309 -k1,3494:20863259,29510274:246308 -k1,3494:23026496,29510274:246309 -k1,3494:23888842,29510274:246308 -k1,3494:24549946,29510274:246261 -k1,3494:25557783,29510274:246309 -k1,3494:28557914,29510274:246308 -k1,3494:29823308,29510274:246309 -k1,3494:32583029,29510274:0 -) -(1,3495:6630773,30351762:25952256,513147,126483 -g1,3494:9576616,30351762 -(1,3494:9576616,30351762:0,424981,115847 -r1,3526:9934882,30351762:358266,540828,115847 -k1,3494:9576616,30351762:-358266 -) -(1,3494:9576616,30351762:358266,424981,115847 -k1,3494:9576616,30351762:3277 -h1,3494:9931605,30351762:0,411205,112570 -) -g1,3494:10134111,30351762 -g1,3494:10984768,30351762 -g1,3494:12203082,30351762 -g1,3494:14245183,30351762 -g1,3494:15103704,30351762 -g1,3494:16322018,30351762 -g1,3494:17712692,30351762 -g1,3494:19489373,30351762 -g1,3494:21082553,30351762 -(1,3494:21082553,30351762:0,452978,115847 -r1,3526:22495954,30351762:1413401,568825,115847 -k1,3494:21082553,30351762:-1413401 -) -(1,3494:21082553,30351762:1413401,452978,115847 -k1,3494:21082553,30351762:3277 -h1,3494:22492677,30351762:0,411205,112570 -) -g1,3494:22695183,30351762 -g1,3494:23577297,30351762 -g1,3494:26472022,30351762 -(1,3494:26472022,30351762:0,452978,115847 -r1,3526:30699118,30351762:4227096,568825,115847 -k1,3494:26472022,30351762:-4227096 -) -(1,3494:26472022,30351762:4227096,452978,115847 -k1,3494:26472022,30351762:3277 -h1,3494:30695841,30351762:0,411205,112570 -) -k1,3495:32583029,30351762:1710241 -g1,3495:32583029,30351762 -) -v1,3497:6630773,31516993:0,393216,0 -(1,3516:6630773,36442242:25952256,5318465,196608 -g1,3516:6630773,36442242 -g1,3516:6630773,36442242 -g1,3516:6434165,36442242 -(1,3516:6434165,36442242:0,5318465,196608 -r1,3526:32779637,36442242:26345472,5515073,196608 -k1,3516:6434165,36442242:-26345472 -) -(1,3516:6434165,36442242:26345472,5318465,196608 -[1,3516:6630773,36442242:25952256,5121857,0 -(1,3499:6630773,31724611:25952256,404226,82312 -(1,3498:6630773,31724611:0,0,0 -g1,3498:6630773,31724611 -g1,3498:6630773,31724611 -g1,3498:6303093,31724611 -(1,3498:6303093,31724611:0,0,0 -) -g1,3498:6630773,31724611 -) -k1,3499:6630773,31724611:0 -g1,3499:12005251,31724611 -h1,3499:13585979,31724611:0,0,0 -k1,3499:32583029,31724611:18997050 -g1,3499:32583029,31724611 -) -(1,3503:6630773,32390789:25952256,404226,76021 -(1,3501:6630773,32390789:0,0,0 -g1,3501:6630773,32390789 -g1,3501:6630773,32390789 -g1,3501:6303093,32390789 -(1,3501:6303093,32390789:0,0,0 -) -g1,3501:6630773,32390789 -) -g1,3503:7579210,32390789 -g1,3503:8843793,32390789 -h1,3503:10424521,32390789:0,0,0 -k1,3503:32583029,32390789:22158508 -g1,3503:32583029,32390789 -) -(1,3505:6630773,33712327:25952256,404226,9436 -(1,3504:6630773,33712327:0,0,0 -g1,3504:6630773,33712327 -g1,3504:6630773,33712327 -g1,3504:6303093,33712327 -(1,3504:6303093,33712327:0,0,0 -) -g1,3504:6630773,33712327 -) -g1,3505:8211502,33712327 -g1,3505:9792231,33712327 -h1,3505:11056814,33712327:0,0,0 -k1,3505:32583030,33712327:21526216 -g1,3505:32583030,33712327 -) -(1,3509:6630773,34378505:25952256,404226,76021 -(1,3507:6630773,34378505:0,0,0 -g1,3507:6630773,34378505 -g1,3507:6630773,34378505 -g1,3507:6303093,34378505 -(1,3507:6303093,34378505:0,0,0 -) -g1,3507:6630773,34378505 -) -g1,3509:7579210,34378505 -g1,3509:8843793,34378505 -h1,3509:10424521,34378505:0,0,0 -k1,3509:32583029,34378505:22158508 -g1,3509:32583029,34378505 -) -(1,3511:6630773,35700043:25952256,404226,82312 -(1,3510:6630773,35700043:0,0,0 -g1,3510:6630773,35700043 -g1,3510:6630773,35700043 -g1,3510:6303093,35700043 -(1,3510:6303093,35700043:0,0,0 -) -g1,3510:6630773,35700043 -) -k1,3511:6630773,35700043:0 -g1,3511:9159940,35700043 -g1,3511:10740669,35700043 -g1,3511:12321398,35700043 -g1,3511:13902127,35700043 -h1,3511:15166710,35700043:0,0,0 -k1,3511:32583030,35700043:17416320 -g1,3511:32583030,35700043 -) -(1,3515:6630773,36366221:25952256,404226,76021 -(1,3513:6630773,36366221:0,0,0 -g1,3513:6630773,36366221 -g1,3513:6630773,36366221 -g1,3513:6303093,36366221 -(1,3513:6303093,36366221:0,0,0 -) -g1,3513:6630773,36366221 -) -g1,3515:7579210,36366221 -g1,3515:8843793,36366221 -g1,3515:10740667,36366221 -g1,3515:12637541,36366221 -g1,3515:12953687,36366221 -h1,3515:14218270,36366221:0,0,0 -k1,3515:32583030,36366221:18364760 -g1,3515:32583030,36366221 -) -] -) -g1,3516:32583029,36442242 -g1,3516:6630773,36442242 -g1,3516:6630773,36442242 -g1,3516:32583029,36442242 -g1,3516:32583029,36442242 -) -h1,3516:6630773,36638850:0,0,0 -(1,3520:6630773,37979391:25952256,513147,134348 -h1,3519:6630773,37979391:983040,0,0 -k1,3519:10737209,37979391:160513 -k1,3519:13808175,37979391:160512 -k1,3519:14500185,37979391:160513 -k1,3519:15016558,37979391:160513 -k1,3519:16111613,37979391:160512 -k1,3519:19520090,37979391:160513 -k1,3519:20138700,37979391:160513 -k1,3519:20830710,37979391:160513 -k1,3519:22277038,37979391:160512 -k1,3519:23791525,37979391:160513 -k1,3519:25929259,37979391:160513 -k1,3519:27037422,37979391:160512 -k1,3519:28217020,37979391:160513 -k1,3519:32583029,37979391:0 -) -(1,3520:6630773,38820879:25952256,513147,134348 -k1,3519:7581624,38820879:283695 -(1,3519:7581624,38820879:0,459977,115847 -r1,3526:11808721,38820879:4227097,575824,115847 -k1,3519:7581624,38820879:-4227097 -) -(1,3519:7581624,38820879:4227097,459977,115847 -g1,3519:8640037,38820879 -g1,3519:9695173,38820879 -g1,3519:10398597,38820879 -h1,3519:11805444,38820879:0,411205,112570 -) -k1,3519:12092416,38820879:283695 -k1,3519:15892774,38820879:283696 -k1,3519:16937997,38820879:283695 -k1,3519:20162948,38820879:283695 -k1,3519:23117890,38820879:283695 -k1,3519:24923332,38820879:283696 -k1,3519:26154678,38820879:283695 -k1,3519:29825274,38820879:283695 -k1,3519:32583029,38820879:0 -) -(1,3520:6630773,39662367:25952256,513147,126483 -k1,3519:8808770,39662367:167352 -k1,3519:9635414,39662367:167352 -k1,3519:10821850,39662367:167351 -k1,3519:12642675,39662367:167352 -(1,3519:12642675,39662367:0,452978,115847 -r1,3526:14056076,39662367:1413401,568825,115847 -k1,3519:12642675,39662367:-1413401 -) -(1,3519:12642675,39662367:1413401,452978,115847 -k1,3519:12642675,39662367:3277 -h1,3519:14052799,39662367:0,411205,112570 -) -k1,3519:14223428,39662367:167352 -k1,3519:16879182,39662367:167352 -k1,3519:17808062,39662367:167352 -k1,3519:20646661,39662367:167352 -(1,3519:20646661,39662367:0,452978,115847 -r1,3526:21004927,39662367:358266,568825,115847 -k1,3519:20646661,39662367:-358266 -) -(1,3519:20646661,39662367:358266,452978,115847 -k1,3519:20646661,39662367:3277 -h1,3519:21001650,39662367:0,411205,112570 -) -k1,3519:21172278,39662367:167351 -k1,3519:24590216,39662367:167352 -k1,3519:25245124,39662367:167320 -k1,3519:27389697,39662367:167352 -k1,3519:30335120,39662367:167352 -k1,3519:31169628,39662367:167352 -(1,3519:31169628,39662367:0,452978,115847 -r1,3526:32583029,39662367:1413401,568825,115847 -k1,3519:31169628,39662367:-1413401 -) -(1,3519:31169628,39662367:1413401,452978,115847 -k1,3519:31169628,39662367:3277 -h1,3519:32579752,39662367:0,411205,112570 -) -k1,3519:32583029,39662367:0 -) -(1,3520:6630773,40503855:25952256,505283,126483 -g1,3519:8021447,40503855 -(1,3519:8021447,40503855:0,452978,115847 -r1,3526:12248543,40503855:4227096,568825,115847 -k1,3519:8021447,40503855:-4227096 -) -(1,3519:8021447,40503855:4227096,452978,115847 -k1,3519:8021447,40503855:3277 -h1,3519:12245266,40503855:0,411205,112570 -) -g1,3519:12447772,40503855 -g1,3519:13178498,40503855 -g1,3519:14662233,40503855 -g1,3519:16241650,40503855 -g1,3519:18195933,40503855 -g1,3519:20405807,40503855 -(1,3519:20405807,40503855:0,414482,115847 -r1,3526:21115785,40503855:709978,530329,115847 -k1,3519:20405807,40503855:-709978 -) -(1,3519:20405807,40503855:709978,414482,115847 -k1,3519:20405807,40503855:3277 -h1,3519:21112508,40503855:0,411205,112570 -) -k1,3520:32583029,40503855:11293574 -g1,3520:32583029,40503855 -) -v1,3522:6630773,41844396:0,393216,0 -(1,3526:6630773,45706769:25952256,4255589,0 -g1,3526:6630773,45706769 -g1,3526:6303093,45706769 -r1,3526:6401397,45706769:98304,4255589,0 -g1,3526:6600626,45706769 -g1,3526:6797234,45706769 -[1,3526:6797234,45706769:25785795,4255589,0 -(1,3523:6797234,42206469:25785795,755289,196608 -(1,3522:6797234,42206469:0,755289,196608 -r1,3526:8134168,42206469:1336934,951897,196608 -k1,3522:6797234,42206469:-1336934 -) -(1,3522:6797234,42206469:1336934,755289,196608 -) -k1,3522:8428532,42206469:294364 -k1,3522:8756212,42206469:327680 -k1,3522:11911877,42206469:294363 -(1,3522:11911877,42206469:0,452978,115847 -r1,3526:13325278,42206469:1413401,568825,115847 -k1,3522:11911877,42206469:-1413401 -) -(1,3522:11911877,42206469:1413401,452978,115847 -k1,3522:11911877,42206469:3277 -h1,3522:13322001,42206469:0,411205,112570 -) -k1,3522:13619642,42206469:294364 -k1,3522:14445502,42206469:294363 -k1,3522:18044847,42206469:294364 -k1,3522:18990639,42206469:294364 -k1,3522:21980498,42206469:294363 -(1,3522:21980498,42206469:0,452978,115847 -r1,3526:24449035,42206469:2468537,568825,115847 -k1,3522:21980498,42206469:-2468537 -) -(1,3522:21980498,42206469:2468537,452978,115847 -k1,3522:21980498,42206469:3277 -h1,3522:24445758,42206469:0,411205,112570 -) -k1,3522:24917069,42206469:294364 -k1,3522:28042587,42206469:294363 -k1,3522:29356036,42206469:294364 -k1,3522:32583029,42206469:0 -) -(1,3523:6797234,43047957:25785795,513147,126483 -g1,3522:10607497,43047957 -g1,3522:11473882,43047957 -(1,3522:11473882,43047957:0,452978,115847 -r1,3526:13942419,43047957:2468537,568825,115847 -k1,3522:11473882,43047957:-2468537 -) -(1,3522:11473882,43047957:2468537,452978,115847 -k1,3522:11473882,43047957:3277 -h1,3522:13939142,43047957:0,411205,112570 -) -g1,3522:14141648,43047957 -g1,3522:16770952,43047957 -g1,3522:20197174,43047957 -k1,3523:32583029,43047957:9238161 -g1,3523:32583029,43047957 -) -(1,3525:6797234,43889445:25785795,505283,134348 -h1,3524:6797234,43889445:983040,0,0 -k1,3524:8645895,43889445:237786 -k1,3524:10575822,43889445:237787 -k1,3524:12684661,43889445:237786 -k1,3524:14416013,43889445:237786 -k1,3524:15339962,43889445:237787 -k1,3524:17275786,43889445:237786 -k1,3524:20551821,43889445:237786 -k1,3524:22873653,43889445:237787 -k1,3524:26086118,43889445:237786 -k1,3524:28520015,43889445:237786 -k1,3524:29443964,43889445:237787 -k1,3524:31563944,43889445:237786 -k1,3524:32583029,43889445:0 -) -(1,3525:6797234,44730933:25785795,505283,134348 -k1,3524:8189394,44730933:215133 -k1,3524:8936024,44730933:215133 -k1,3524:10217427,44730933:215132 -k1,3524:11203263,44730933:215133 -k1,3524:13077112,44730933:215133 -k1,3524:15447069,44730933:215133 -k1,3524:16734371,44730933:215133 -k1,3524:17305363,44730933:215132 -k1,3524:19604541,44730933:215133 -k1,3524:21800827,44730933:215133 -k1,3524:22667388,44730933:215133 -k1,3524:24762094,44730933:215133 -k1,3524:27951905,44730933:215132 -k1,3524:30536820,44730933:215133 -k1,3524:31379788,44730933:215133 -k1,3524:32583029,44730933:0 -) -(1,3525:6797234,45572421:25785795,505283,134348 -k1,3524:8571206,45572421:233221 -k1,3524:10660407,45572421:233221 -(1,3524:10660407,45572421:0,452978,115847 -r1,3526:14535791,45572421:3875384,568825,115847 -k1,3524:10660407,45572421:-3875384 -) -(1,3524:10660407,45572421:3875384,452978,115847 -k1,3524:10660407,45572421:3277 -h1,3524:14532514,45572421:0,411205,112570 -) -k1,3524:14769012,45572421:233221 -k1,3524:15685119,45572421:233222 -(1,3524:15685119,45572421:0,452978,115847 -r1,3526:18505368,45572421:2820249,568825,115847 -k1,3524:15685119,45572421:-2820249 -) -(1,3524:15685119,45572421:2820249,452978,115847 -k1,3524:15685119,45572421:3277 -h1,3524:18502091,45572421:0,411205,112570 -) -k1,3524:18738589,45572421:233221 -k1,3524:19503307,45572421:233221 -k1,3524:20755613,45572421:233221 -k1,3524:23231476,45572421:233221 -k1,3524:24715779,45572421:233221 -k1,3524:25600429,45572421:233222 -k1,3524:26926135,45572421:233221 -k1,3524:30521353,45572421:233221 -k1,3524:31563944,45572421:233221 -k1,3524:32583029,45572421:0 -) -] -g1,3526:32583029,45706769 -) -] -(1,3526:32583029,45706769:0,0,0 -g1,3526:32583029,45706769 -) -) -] -(1,3526:6630773,47279633:25952256,0,0 -h1,3526:6630773,47279633:25952256,0,0 -) -] -(1,3526:4262630,4025873:0,0,0 -[1,3526:-473656,4025873:0,0,0 -(1,3526:-473656,-710413:0,0,0 -(1,3526:-473656,-710413:0,0,0 -g1,3526:-473656,-710413 -) -g1,3526:-473656,-710413 -) -] -) -] -!27908 -}72 -Input:636:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:637:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:638:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:639:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:640:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:641:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:642:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:643:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:644:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:645:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:646:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1034 -{73 -[1,3621:4262630,47279633:28320399,43253760,0 -(1,3621:4262630,4025873:0,0,0 -[1,3621:-473656,4025873:0,0,0 -(1,3621:-473656,-710413:0,0,0 -(1,3621:-473656,-644877:0,0,0 -k1,3621:-473656,-644877:-65536 -) -(1,3621:-473656,4736287:0,0,0 -k1,3621:-473656,4736287:5209943 -) -g1,3621:-473656,-710413 -) -] -) -[1,3621:6630773,47279633:25952256,43253760,0 -[1,3621:6630773,4812305:25952256,786432,0 -(1,3621:6630773,4812305:25952256,505283,11795 -(1,3621:6630773,4812305:25952256,505283,11795 -g1,3621:3078558,4812305 -[1,3621:3078558,4812305:0,0,0 -(1,3621:3078558,2439708:0,1703936,0 -k1,3621:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,3621:2537886,2439708:1179648,16384,0 -) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,3621:3078558,1915420:16384,1179648,0 -) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 -) -] -) -) -) -] -[1,3621:3078558,4812305:0,0,0 -(1,3621:3078558,2439708:0,1703936,0 -g1,3621:29030814,2439708 -g1,3621:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,3621:36151628,1915420:16384,1179648,0 -) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 -) -] -) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,3621:37855564,2439708:1179648,16384,0 -) -) -k1,3621:3078556,2439708:-34777008 -) -] -[1,3621:3078558,4812305:0,0,0 -(1,3621:3078558,49800853:0,16384,2228224 -k1,3621:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,3621:2537886,49800853:1179648,16384,0 -) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,3621:3078558,51504789:16384,1179648,0 -) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 -) -] -) -) -) -] -[1,3621:3078558,4812305:0,0,0 -(1,3621:3078558,49800853:0,16384,2228224 -g1,3621:29030814,49800853 -g1,3621:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,3621:36151628,51504789:16384,1179648,0 -) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 -) -] -) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,3621:37855564,49800853:1179648,16384,0 -) -) -k1,3621:3078556,49800853:-34777008 -) -] -g1,3621:6630773,4812305 -k1,3621:22348274,4812305:14920583 -g1,3621:23970945,4812305 -g1,3621:24793421,4812305 -g1,3621:27528893,4812305 -g1,3621:28938572,4812305 -) -) -] -[1,3621:6630773,45706769:25952256,40108032,0 -(1,3621:6630773,45706769:25952256,40108032,0 -(1,3621:6630773,45706769:0,0,0 -g1,3621:6630773,45706769 -) -[1,3621:6630773,45706769:25952256,40108032,0 -v1,3526:6630773,6254097:0,393216,0 -(1,3526:6630773,7341999:25952256,1481118,0 -g1,3526:6630773,7341999 -g1,3526:6303093,7341999 -r1,3621:6401397,7341999:98304,1481118,0 -g1,3526:6600626,7341999 -g1,3526:6797234,7341999 -[1,3526:6797234,7341999:25785795,1481118,0 -(1,3525:6797234,6374028:25785795,513147,134348 -k1,3524:9346583,6374028:193330 -k1,3524:12341577,6374028:193330 -k1,3524:13194199,6374028:193330 -k1,3524:15645245,6374028:193331 -k1,3524:19344751,6374028:193330 -k1,3524:20729526,6374028:193330 -k1,3524:22581572,6374028:193330 -k1,3524:25607368,6374028:193330 -k1,3524:26949544,6374028:193330 -(1,3524:26949544,6374028:0,452978,115847 -r1,3621:29066369,6374028:2116825,568825,115847 -k1,3524:26949544,6374028:-2116825 -) -(1,3524:26949544,6374028:2116825,452978,115847 -k1,3524:26949544,6374028:3277 -h1,3524:29063092,6374028:0,411205,112570 -) -k1,3524:29259700,6374028:193331 -k1,3524:30104458,6374028:193330 -k1,3524:31563944,6374028:193330 -k1,3524:32583029,6374028:0 -) -(1,3525:6797234,7215516:25785795,513147,126483 -g1,3524:9113931,7215516 -g1,3524:9779121,7215516 -g1,3524:11148823,7215516 -g1,3524:12878318,7215516 -g1,3524:13728975,7215516 -g1,3524:15020689,7215516 -g1,3524:16376628,7215516 -g1,3524:17235149,7215516 -k1,3525:32583029,7215516:13535154 -g1,3525:32583029,7215516 -) -] -g1,3526:32583029,7341999 -) -h1,3526:6630773,7341999:0,0,0 -v1,3529:6630773,8689196:0,393216,0 -(1,3541:6630773,14633860:25952256,6337880,0 -g1,3541:6630773,14633860 -g1,3541:6303093,14633860 -r1,3621:6401397,14633860:98304,6337880,0 -g1,3541:6600626,14633860 -g1,3541:6797234,14633860 -[1,3541:6797234,14633860:25785795,6337880,0 -(1,3530:6797234,9121734:25785795,825754,196608 -(1,3529:6797234,9121734:0,825754,196608 -r1,3621:7890375,9121734:1093141,1022362,196608 -k1,3529:6797234,9121734:-1093141 -) -(1,3529:6797234,9121734:1093141,825754,196608 -) -k1,3529:8147100,9121734:256725 -k1,3529:9873318,9121734:327680 -k1,3529:11278890,9121734:256726 -k1,3529:14282229,9121734:256725 -(1,3529:14282229,9121734:0,452978,115847 -r1,3621:15695630,9121734:1413401,568825,115847 -k1,3529:14282229,9121734:-1413401 -) -(1,3529:14282229,9121734:1413401,452978,115847 -k1,3529:14282229,9121734:3277 -h1,3529:15692353,9121734:0,411205,112570 -) -k1,3529:15952356,9121734:256726 -k1,3529:16860509,9121734:256725 -k1,3529:18732041,9121734:256725 -k1,3529:20638964,9121734:256726 -k1,3529:23817284,9121734:256725 -k1,3529:25093095,9121734:256726 -k1,3529:28325155,9121734:256725 -k1,3529:32583029,9121734:0 -) -(1,3530:6797234,9963222:25785795,513147,134348 -g1,3529:8548356,9963222 -g1,3529:9772568,9963222 -g1,3529:12250484,9963222 -h1,3529:13221072,9963222:0,0,0 -g1,3529:13420301,9963222 -g1,3529:14428900,9963222 -g1,3529:16126282,9963222 -h1,3529:16923200,9963222:0,0,0 -g1,3529:17122429,9963222 -g1,3529:18269309,9963222 -g1,3529:19487623,9963222 -g1,3529:22873212,9963222 -g1,3529:25707644,9963222 -(1,3529:25707644,9963222:0,452978,115847 -r1,3621:26065910,9963222:358266,568825,115847 -k1,3529:25707644,9963222:-358266 -) -(1,3529:25707644,9963222:358266,452978,115847 -k1,3529:25707644,9963222:3277 -h1,3529:26062633,9963222:0,411205,112570 -) -g1,3529:26265139,9963222 -g1,3529:27655813,9963222 -(1,3529:27655813,9963222:0,452978,115847 -r1,3621:28365791,9963222:709978,568825,115847 -k1,3529:27655813,9963222:-709978 -) -(1,3529:27655813,9963222:709978,452978,115847 -k1,3529:27655813,9963222:3277 -h1,3529:28362514,9963222:0,411205,112570 -) -g1,3529:28565020,9963222 -k1,3530:32583029,9963222:767423 -g1,3530:32583029,9963222 -) -v1,3532:6797234,11153688:0,393216,0 -(1,3537:6797234,12103505:25785795,1343033,196608 -g1,3537:6797234,12103505 -g1,3537:6797234,12103505 -g1,3537:6600626,12103505 -(1,3537:6600626,12103505:0,1343033,196608 -r1,3621:32779637,12103505:26179011,1539641,196608 -k1,3537:6600625,12103505:-26179012 -) -(1,3537:6600626,12103505:26179011,1343033,196608 -[1,3537:6797234,12103505:25785795,1146425,0 -(1,3534:6797234,11361306:25785795,404226,82312 -(1,3533:6797234,11361306:0,0,0 -g1,3533:6797234,11361306 -g1,3533:6797234,11361306 -g1,3533:6469554,11361306 -(1,3533:6469554,11361306:0,0,0 -) -g1,3533:6797234,11361306 -) -g1,3534:8377963,11361306 -g1,3534:9326401,11361306 -g1,3534:11539422,11361306 -g1,3534:13120151,11361306 -h1,3534:14384734,11361306:0,0,0 -k1,3534:32583030,11361306:18198296 -g1,3534:32583030,11361306 -) -(1,3535:6797234,12027484:25785795,404226,76021 -h1,3535:6797234,12027484:0,0,0 -g1,3535:8377963,12027484 -g1,3535:9326400,12027484 -g1,3535:10590983,12027484 -g1,3535:11223275,12027484 -g1,3535:12804004,12027484 -g1,3535:13752441,12027484 -g1,3535:15017024,12027484 -g1,3535:15649316,12027484 -g1,3535:17230045,12027484 -g1,3535:18178482,12027484 -g1,3535:19443065,12027484 -g1,3535:20075357,12027484 -g1,3535:21972231,12027484 -g1,3535:22920668,12027484 -h1,3535:23869105,12027484:0,0,0 -k1,3535:32583029,12027484:8713924 -g1,3535:32583029,12027484 -) -] -) -g1,3537:32583029,12103505 -g1,3537:6797234,12103505 -g1,3537:6797234,12103505 -g1,3537:32583029,12103505 -g1,3537:32583029,12103505 -) -h1,3537:6797234,12300113:0,0,0 -(1,3541:6797234,13665889:25785795,513147,134348 -h1,3540:6797234,13665889:983040,0,0 -k1,3540:10526340,13665889:231450 -k1,3540:11776876,13665889:231451 -(1,3540:11776876,13665889:0,452978,122846 -r1,3621:14245413,13665889:2468537,575824,122846 -k1,3540:11776876,13665889:-2468537 -) -(1,3540:11776876,13665889:2468537,452978,122846 -k1,3540:11776876,13665889:3277 -h1,3540:14242136,13665889:0,411205,112570 -) -k1,3540:14476863,13665889:231450 -k1,3540:17016491,13665889:231450 -k1,3540:17907233,13665889:231450 -k1,3540:20151950,13665889:231451 -k1,3540:20781859,13665889:231450 -k1,3540:22280775,13665889:231450 -k1,3540:22868086,13665889:231451 -k1,3540:25077413,13665889:231450 -k1,3540:25968155,13665889:231450 -k1,3540:28212871,13665889:231450 -k1,3540:29774703,13665889:231451 -k1,3540:31558046,13665889:231450 -k1,3540:32583029,13665889:0 -) -(1,3541:6797234,14507377:25785795,513147,126483 -g1,3540:8384516,14507377 -g1,3540:9531396,14507377 -g1,3540:12756422,14507377 -(1,3540:12756422,14507377:0,452978,115847 -r1,3621:14521535,14507377:1765113,568825,115847 -k1,3540:12756422,14507377:-1765113 -) -(1,3540:12756422,14507377:1765113,452978,115847 -k1,3540:12756422,14507377:3277 -h1,3540:14518258,14507377:0,411205,112570 -) -g1,3540:14720764,14507377 -g1,3540:16111438,14507377 -(1,3540:16111438,14507377:0,452978,115847 -r1,3621:17876551,14507377:1765113,568825,115847 -k1,3540:16111438,14507377:-1765113 -) -(1,3540:16111438,14507377:1765113,452978,115847 -k1,3540:16111438,14507377:3277 -h1,3540:17873274,14507377:0,411205,112570 -) -k1,3541:32583029,14507377:14532808 -g1,3541:32583029,14507377 -) -] -g1,3541:32583029,14633860 -) -h1,3541:6630773,14633860:0,0,0 -(1,3544:6630773,15981057:25952256,513147,126483 -h1,3543:6630773,15981057:983040,0,0 -k1,3543:9382158,15981057:289197 -(1,3543:9382158,15981057:0,452978,115847 -r1,3621:12202407,15981057:2820249,568825,115847 -k1,3543:9382158,15981057:-2820249 -) -(1,3543:9382158,15981057:2820249,452978,115847 -k1,3543:9382158,15981057:3277 -h1,3543:12199130,15981057:0,411205,112570 -) -k1,3543:12491605,15981057:289198 -k1,3543:13649154,15981057:289197 -k1,3543:16331071,15981057:289198 -k1,3543:16976128,15981057:289197 -k1,3543:19243202,15981057:289197 -k1,3543:20191692,15981057:289198 -k1,3543:23124611,15981057:289197 -k1,3543:26198434,15981057:289198 -k1,3543:28498276,15981057:289197 -k1,3543:30054939,15981057:289197 -k1,3543:30699997,15981057:289198 -k1,3543:31923737,15981057:289197 -k1,3543:32583029,15981057:0 -) -(1,3544:6630773,16822545:25952256,513147,134348 -k1,3543:9026687,16822545:198492 -k1,3543:11409494,16822545:198492 -k1,3543:12235822,16822545:198493 -k1,3543:13453399,16822545:198492 -k1,3543:15979074,16822545:198492 -k1,3543:16836858,16822545:198492 -k1,3543:18473865,16822545:198492 -k1,3543:19028217,16822545:198492 -k1,3543:21424788,16822545:198493 -k1,3543:23582806,16822545:198492 -k1,3543:26248073,16822545:198492 -k1,3543:27129450,16822545:198492 -k1,3543:28394213,16822545:198492 -k1,3543:29244134,16822545:198493 -k1,3543:29798486,16822545:198492 -k1,3543:31105192,16822545:198492 -k1,3544:32583029,16822545:0 -) -(1,3544:6630773,17664033:25952256,513147,134348 -g1,3543:10085831,17664033 -g1,3543:10901098,17664033 -g1,3543:11456187,17664033 -g1,3543:12763630,17664033 -g1,3543:15634106,17664033 -g1,3543:17861019,17664033 -g1,3543:18719540,17664033 -g1,3543:19937854,17664033 -g1,3543:21790556,17664033 -g1,3543:23949311,17664033 -g1,3543:24831425,17664033 -g1,3543:26710997,17664033 -g1,3543:27901786,17664033 -k1,3544:32583029,17664033:566237 -g1,3544:32583029,17664033 -) -v1,3546:6630773,18835920:0,393216,0 -(1,3553:6630773,19785737:25952256,1343033,196608 -g1,3553:6630773,19785737 -g1,3553:6630773,19785737 -g1,3553:6434165,19785737 -(1,3553:6434165,19785737:0,1343033,196608 -r1,3621:32779637,19785737:26345472,1539641,196608 -k1,3553:6434165,19785737:-26345472 -) -(1,3553:6434165,19785737:26345472,1343033,196608 -[1,3553:6630773,19785737:25952256,1146425,0 -(1,3548:6630773,19043538:25952256,404226,101187 -(1,3547:6630773,19043538:0,0,0 -g1,3547:6630773,19043538 -g1,3547:6630773,19043538 -g1,3547:6303093,19043538 -(1,3547:6303093,19043538:0,0,0 -) -g1,3547:6630773,19043538 -) -k1,3548:6630773,19043538:0 -h1,3548:10424521,19043538:0,0,0 -k1,3548:32583029,19043538:22158508 -g1,3548:32583029,19043538 -) -(1,3552:6630773,19709716:25952256,404226,76021 -(1,3550:6630773,19709716:0,0,0 -g1,3550:6630773,19709716 -g1,3550:6630773,19709716 -g1,3550:6303093,19709716 -(1,3550:6303093,19709716:0,0,0 -) -g1,3550:6630773,19709716 -) -g1,3552:7579210,19709716 -g1,3552:8843793,19709716 -g1,3552:10108376,19709716 -g1,3552:11372959,19709716 -h1,3552:12321396,19709716:0,0,0 -k1,3552:32583028,19709716:20261632 -g1,3552:32583028,19709716 -) -] -) -g1,3553:32583029,19785737 -g1,3553:6630773,19785737 -g1,3553:6630773,19785737 -g1,3553:32583029,19785737 -g1,3553:32583029,19785737 -) -h1,3553:6630773,19982345:0,0,0 -(1,3557:6630773,21329542:25952256,513147,126483 -h1,3556:6630773,21329542:983040,0,0 -k1,3556:10644043,21329542:240362 -(1,3556:10644043,21329542:0,452978,115847 -r1,3621:13464292,21329542:2820249,568825,115847 -k1,3556:10644043,21329542:-2820249 -) -(1,3556:10644043,21329542:2820249,452978,115847 -k1,3556:10644043,21329542:3277 -h1,3556:13461015,21329542:0,411205,112570 -) -k1,3556:13704655,21329542:240363 -k1,3556:14476514,21329542:240362 -k1,3556:18021857,21329542:240362 -k1,3556:20413112,21329542:240363 -k1,3556:21601125,21329542:240362 -k1,3556:24502904,21329542:240362 -k1,3556:26441304,21329542:240362 -k1,3556:27550019,21329542:240363 -k1,3556:29338997,21329542:240362 -k1,3556:32583029,21329542:0 -) -(1,3557:6630773,22171030:25952256,513147,7863 -g1,3556:7849087,22171030 -g1,3556:10534097,22171030 -g1,3556:11392618,22171030 -g1,3556:14007504,22171030 -g1,3556:16217378,22171030 -g1,3556:17032645,22171030 -g1,3556:17587734,22171030 -k1,3557:32583029,22171030:12843748 -g1,3557:32583029,22171030 -) -v1,3559:6630773,23342917:0,393216,0 -(1,3566:6630773,24292734:25952256,1343033,196608 -g1,3566:6630773,24292734 -g1,3566:6630773,24292734 -g1,3566:6434165,24292734 -(1,3566:6434165,24292734:0,1343033,196608 -r1,3621:32779637,24292734:26345472,1539641,196608 -k1,3566:6434165,24292734:-26345472 -) -(1,3566:6434165,24292734:26345472,1343033,196608 -[1,3566:6630773,24292734:25952256,1146425,0 -(1,3561:6630773,23550535:25952256,404226,107478 -(1,3560:6630773,23550535:0,0,0 -g1,3560:6630773,23550535 -g1,3560:6630773,23550535 -g1,3560:6303093,23550535 -(1,3560:6303093,23550535:0,0,0 -) -g1,3560:6630773,23550535 -) -k1,3561:6630773,23550535:0 -k1,3561:6630773,23550535:0 -h1,3561:12953687,23550535:0,0,0 -k1,3561:32583029,23550535:19629342 -g1,3561:32583029,23550535 -) -(1,3565:6630773,24216713:25952256,404226,76021 -(1,3563:6630773,24216713:0,0,0 -g1,3563:6630773,24216713 -g1,3563:6630773,24216713 -g1,3563:6303093,24216713 -(1,3563:6303093,24216713:0,0,0 -) -g1,3563:6630773,24216713 -) -g1,3565:7579210,24216713 -g1,3565:8843793,24216713 -h1,3565:9159939,24216713:0,0,0 -k1,3565:32583029,24216713:23423090 -g1,3565:32583029,24216713 -) -] -) -g1,3566:32583029,24292734 -g1,3566:6630773,24292734 -g1,3566:6630773,24292734 -g1,3566:32583029,24292734 -g1,3566:32583029,24292734 -) -h1,3566:6630773,24489342:0,0,0 -v1,3570:6630773,26342248:0,393216,0 -(1,3581:6630773,29661131:25952256,3712099,0 -g1,3581:6630773,29661131 -g1,3581:6303093,29661131 -r1,3621:6401397,29661131:98304,3712099,0 -g1,3581:6600626,29661131 -g1,3581:6797234,29661131 -[1,3581:6797234,29661131:25785795,3712099,0 -(1,3571:6797234,26774786:25785795,825754,196608 -(1,3570:6797234,26774786:0,825754,196608 -r1,3621:7890375,26774786:1093141,1022362,196608 -k1,3570:6797234,26774786:-1093141 -) -(1,3570:6797234,26774786:1093141,825754,196608 -) -g1,3570:8089604,26774786 -g1,3570:9815822,26774786 -g1,3570:10912894,26774786 -g1,3570:12131208,26774786 -g1,3570:14341082,26774786 -g1,3570:17319038,26774786 -g1,3570:18279795,26774786 -g1,3570:20175751,26774786 -g1,3570:21547419,26774786 -g1,3570:25263310,26774786 -k1,3571:32583029,26774786:5249437 -g1,3571:32583029,26774786 -) -v1,3573:6797234,27965252:0,393216,0 -(1,3578:6797234,28940235:25785795,1368199,196608 -g1,3578:6797234,28940235 -g1,3578:6797234,28940235 -g1,3578:6600626,28940235 -(1,3578:6600626,28940235:0,1368199,196608 -r1,3621:32779637,28940235:26179011,1564807,196608 -k1,3578:6600625,28940235:-26179012 -) -(1,3578:6600626,28940235:26179011,1368199,196608 -[1,3578:6797234,28940235:25785795,1171591,0 -(1,3575:6797234,28172870:25785795,404226,82312 -(1,3574:6797234,28172870:0,0,0 -g1,3574:6797234,28172870 -g1,3574:6797234,28172870 -g1,3574:6469554,28172870 -(1,3574:6469554,28172870:0,0,0 -) -g1,3574:6797234,28172870 -) -k1,3575:6797234,28172870:0 -g1,3575:9010255,28172870 -g1,3575:10590984,28172870 -g1,3575:12171713,28172870 -g1,3575:13752442,28172870 -h1,3575:15017025,28172870:0,0,0 -k1,3575:32583029,28172870:17566004 -g1,3575:32583029,28172870 -) -(1,3576:6797234,28839048:25785795,404226,101187 -h1,3576:6797234,28839048:0,0,0 -g1,3576:9010255,28839048 -g1,3576:10590984,28839048 -g1,3576:12171713,28839048 -g1,3576:13752442,28839048 -k1,3576:13752442,28839048:0 -h1,3576:17546190,28839048:0,0,0 -k1,3576:32583029,28839048:15036839 -g1,3576:32583029,28839048 -) -] -) -g1,3578:32583029,28940235 -g1,3578:6797234,28940235 -g1,3578:6797234,28940235 -g1,3578:32583029,28940235 -g1,3578:32583029,28940235 -) -h1,3578:6797234,29136843:0,0,0 -] -g1,3581:32583029,29661131 -) -h1,3581:6630773,29661131:0,0,0 -v1,3584:6630773,31008328:0,393216,0 -(1,3604:6630773,40434599:25952256,9819487,0 -g1,3604:6630773,40434599 -g1,3604:6303093,40434599 -r1,3621:6401397,40434599:98304,9819487,0 -g1,3604:6600626,40434599 -g1,3604:6797234,40434599 -[1,3604:6797234,40434599:25785795,9819487,0 -(1,3585:6797234,31370401:25785795,755289,196608 -(1,3584:6797234,31370401:0,755289,196608 -r1,3621:8134168,31370401:1336934,951897,196608 -k1,3584:6797234,31370401:-1336934 -) -(1,3584:6797234,31370401:1336934,755289,196608 -) -k1,3584:8403561,31370401:269393 -k1,3584:8731241,31370401:327680 -k1,3584:11790501,31370401:269392 -(1,3584:11790501,31370401:0,452978,115847 -r1,3621:16017597,31370401:4227096,568825,115847 -k1,3584:11790501,31370401:-4227096 -) -(1,3584:11790501,31370401:4227096,452978,115847 -k1,3584:11790501,31370401:3277 -h1,3584:16014320,31370401:0,411205,112570 -) -k1,3584:16286990,31370401:269393 -k1,3584:17087880,31370401:269393 -k1,3584:18376358,31370401:269393 -k1,3584:22418002,31370401:269392 -k1,3584:23354551,31370401:269393 -(1,3584:23354551,31370401:0,452978,115847 -r1,3621:26174800,31370401:2820249,568825,115847 -k1,3584:23354551,31370401:-2820249 -) -(1,3584:23354551,31370401:2820249,452978,115847 -k1,3584:23354551,31370401:3277 -h1,3584:26171523,31370401:0,411205,112570 -) -k1,3584:26617863,31370401:269393 -k1,3584:29888149,31370401:269392 -k1,3584:30513402,31370401:269393 -k1,3584:32583029,31370401:0 -) -(1,3585:6797234,32211889:25785795,513147,134348 -k1,3584:8950037,32211889:174926 -k1,3584:12299528,32211889:174927 -k1,3584:14359925,32211889:174926 -k1,3584:16545496,32211889:174926 -k1,3584:17336461,32211889:174927 -k1,3584:17867247,32211889:174926 -k1,3584:20020050,32211889:174926 -k1,3584:21186537,32211889:174927 -k1,3584:24648094,32211889:174926 -k1,3584:25482312,32211889:174926 -k1,3584:27667884,32211889:174927 -k1,3584:30177202,32211889:174926 -k1,3584:32583029,32211889:0 -) -(1,3585:6797234,33053377:25785795,505283,126483 -g1,3584:7609225,33053377 -g1,3584:10752987,33053377 -g1,3584:12346167,33053377 -g1,3584:12901256,33053377 -g1,3584:14856850,33053377 -k1,3585:32583029,33053377:15803353 -g1,3585:32583029,33053377 -) -v1,3587:6797234,34243843:0,393216,0 -(1,3600:6797234,37181376:25785795,3330749,196608 -g1,3600:6797234,37181376 -g1,3600:6797234,37181376 -g1,3600:6600626,37181376 -(1,3600:6600626,37181376:0,3330749,196608 -r1,3621:32779637,37181376:26179011,3527357,196608 -k1,3600:6600625,37181376:-26179012 -) -(1,3600:6600626,37181376:26179011,3330749,196608 -[1,3600:6797234,37181376:25785795,3134141,0 -(1,3589:6797234,34451461:25785795,404226,101187 -(1,3588:6797234,34451461:0,0,0 -g1,3588:6797234,34451461 -g1,3588:6797234,34451461 -g1,3588:6469554,34451461 -(1,3588:6469554,34451461:0,0,0 -) -g1,3588:6797234,34451461 -) -k1,3589:6797234,34451461:0 -h1,3589:11855565,34451461:0,0,0 -k1,3589:32583029,34451461:20727464 -g1,3589:32583029,34451461 -) -(1,3593:6797234,35117639:25785795,404226,76021 -(1,3591:6797234,35117639:0,0,0 -g1,3591:6797234,35117639 -g1,3591:6797234,35117639 -g1,3591:6469554,35117639 -(1,3591:6469554,35117639:0,0,0 -) -g1,3591:6797234,35117639 -) -g1,3593:7745671,35117639 -g1,3593:9010254,35117639 -g1,3593:10907128,35117639 -g1,3593:12804002,35117639 -g1,3593:14700876,35117639 -g1,3593:15017022,35117639 -h1,3593:16281605,35117639:0,0,0 -k1,3593:32583029,35117639:16301424 -g1,3593:32583029,35117639 -) -(1,3595:6797234,36439177:25785795,404226,101187 -(1,3594:6797234,36439177:0,0,0 -g1,3594:6797234,36439177 -g1,3594:6797234,36439177 -g1,3594:6469554,36439177 -(1,3594:6469554,36439177:0,0,0 -) -g1,3594:6797234,36439177 -) -k1,3595:6797234,36439177:0 -h1,3595:12804002,36439177:0,0,0 -k1,3595:32583030,36439177:19779028 -g1,3595:32583030,36439177 -) -(1,3599:6797234,37105355:25785795,404226,76021 -(1,3597:6797234,37105355:0,0,0 -g1,3597:6797234,37105355 -g1,3597:6797234,37105355 -g1,3597:6469554,37105355 -(1,3597:6469554,37105355:0,0,0 -) -g1,3597:6797234,37105355 -) -g1,3599:7745671,37105355 -g1,3599:9010254,37105355 -h1,3599:9326400,37105355:0,0,0 -k1,3599:32583028,37105355:23256628 -g1,3599:32583028,37105355 -) -] -) -g1,3600:32583029,37181376 -g1,3600:6797234,37181376 -g1,3600:6797234,37181376 -g1,3600:32583029,37181376 -g1,3600:32583029,37181376 -) -h1,3600:6797234,37377984:0,0,0 -(1,3604:6797234,38743760:25785795,513147,134348 -h1,3603:6797234,38743760:983040,0,0 -k1,3603:9257522,38743760:280561 -k1,3603:9952844,38743760:280479 -k1,3603:13075702,38743760:280562 -k1,3603:16024234,38743760:280561 -k1,3603:18056572,38743760:280561 -k1,3603:21362930,38743760:280561 -k1,3603:22927997,38743760:280561 -k1,3603:25812959,38743760:280561 -k1,3603:27759445,38743760:280561 -k1,3603:30261677,38743760:280561 -k1,3603:31193666,38743760:280561 -k1,3603:32583029,38743760:0 -) -(1,3604:6797234,39585248:25785795,505283,126483 -k1,3603:9724205,39585248:198707 -k1,3603:11639956,39585248:198708 -k1,3603:12830223,39585248:198707 -k1,3603:14307537,39585248:198707 -k1,3603:16644029,39585248:198708 -k1,3603:17988961,39585248:198707 -(1,3603:17988961,39585248:0,452978,115847 -r1,3621:20809210,39585248:2820249,568825,115847 -k1,3603:17988961,39585248:-2820249 -) -(1,3603:17988961,39585248:2820249,452978,115847 -k1,3603:17988961,39585248:3277 -h1,3603:20805933,39585248:0,411205,112570 -) -k1,3603:21181587,39585248:198707 -k1,3603:22452463,39585248:198707 -k1,3603:24683442,39585248:198708 -k1,3603:26219083,39585248:198707 -k1,3603:27948056,39585248:198707 -k1,3603:28798192,39585248:198708 -k1,3603:29744665,39585248:198707 -k1,3603:32583029,39585248:0 -) -(1,3604:6797234,40426736:25785795,513147,7863 -g1,3603:7944114,40426736 -g1,3603:8759381,40426736 -g1,3603:9977695,40426736 -k1,3604:32583029,40426736:17605592 -g1,3604:32583029,40426736 -) -] -g1,3604:32583029,40434599 -) -h1,3604:6630773,40434599:0,0,0 -v1,3607:6630773,41781796:0,393216,0 -(1,3621:6630773,45706769:25952256,4318189,0 -g1,3621:6630773,45706769 -g1,3621:6303093,45706769 -r1,3621:6401397,45706769:98304,4318189,0 -g1,3621:6600626,45706769 -g1,3621:6797234,45706769 -[1,3621:6797234,45706769:25785795,4318189,0 -(1,3608:6797234,42214334:25785795,825754,196608 -(1,3607:6797234,42214334:0,825754,196608 -r1,3621:7890375,42214334:1093141,1022362,196608 -k1,3607:6797234,42214334:-1093141 -) -(1,3607:6797234,42214334:1093141,825754,196608 -) -k1,3607:8080076,42214334:189701 -k1,3607:9806294,42214334:327680 -k1,3607:11629809,42214334:189702 -k1,3607:12634778,42214334:189701 -k1,3607:13994952,42214334:189701 -k1,3607:16255592,42214334:189702 -k1,3607:17096721,42214334:189701 -k1,3607:18034188,42214334:189701 -k1,3607:19242974,42214334:189701 -k1,3607:22619036,42214334:189702 -k1,3607:25443940,42214334:189701 -k1,3607:26652726,42214334:189701 -k1,3607:28853073,42214334:189702 -k1,3607:31821501,42214334:189701 -k1,3607:32583029,42214334:0 -) -(1,3608:6797234,43055822:25785795,513147,134348 -k1,3607:8029202,43055822:212883 -k1,3607:9896869,43055822:212883 -k1,3607:13626413,43055822:212882 -k1,3607:14455334,43055822:212883 -k1,3607:15687302,43055822:212883 -k1,3607:17396372,43055822:212883 -k1,3607:19579922,43055822:212882 -k1,3607:21988261,43055822:212883 -k1,3607:24242590,43055822:212883 -k1,3607:26978609,43055822:212883 -k1,3607:29004217,43055822:212882 -k1,3607:30831907,43055822:212883 -k1,3607:32583029,43055822:0 -) -(1,3608:6797234,43897310:25785795,505283,126483 -k1,3607:8496381,43897310:240316 -k1,3607:12761262,43897310:240315 -k1,3607:14824134,43897310:240316 -k1,3607:16083534,43897310:240315 -k1,3607:18004193,43897310:240316 -k1,3607:19696130,43897310:240315 -k1,3607:21093156,43897310:240316 -k1,3607:22465933,43897310:240315 -k1,3607:24890564,43897310:240316 -k1,3607:26621168,43897310:240315 -k1,3607:28295412,43897310:240316 -k1,3607:29653771,43897310:240315 -k1,3607:30913172,43897310:240316 -k1,3607:32583029,43897310:0 -) -(1,3608:6797234,44738798:25785795,513147,126483 -k1,3607:11661793,44738798:279660 -k1,3607:12600745,44738798:279660 -k1,3607:15471043,44738798:279660 -k1,3607:17209534,44738798:279660 -k1,3607:21098917,44738798:279660 -k1,3607:22882629,44738798:279661 -k1,3607:25404931,44738798:279660 -k1,3607:26367476,44738798:279660 -k1,3607:27887077,44738798:279660 -k1,3607:29781544,44738798:279660 -k1,3607:31812326,44738798:279660 -k1,3607:32583029,44738798:0 -) -(1,3608:6797234,45580286:25785795,513147,126483 -g1,3607:10728738,45580286 -g1,3607:11587259,45580286 -g1,3607:13335104,45580286 -g1,3607:14985955,45580286 -g1,3607:18875516,45580286 -g1,3607:22149039,45580286 -k1,3608:32583029,45580286:9728823 -g1,3608:32583029,45580286 -) -] -g1,3621:32583029,45706769 -) -] -(1,3621:32583029,45706769:0,0,0 -g1,3621:32583029,45706769 -) -) -] -(1,3621:6630773,47279633:25952256,0,0 -h1,3621:6630773,47279633:25952256,0,0 -) -] -(1,3621:4262630,4025873:0,0,0 -[1,3621:-473656,4025873:0,0,0 -(1,3621:-473656,-710413:0,0,0 -(1,3621:-473656,-710413:0,0,0 -g1,3621:-473656,-710413 -) -g1,3621:-473656,-710413 -) -] -) -] -!25800 -}73 -Input:647:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:648:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:649:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:650:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!383 -{74 -[1,3705:4262630,47279633:28320399,43253760,0 -(1,3705:4262630,4025873:0,0,0 -[1,3705:-473656,4025873:0,0,0 -(1,3705:-473656,-710413:0,0,0 -(1,3705:-473656,-644877:0,0,0 -k1,3705:-473656,-644877:-65536 -) -(1,3705:-473656,4736287:0,0,0 -k1,3705:-473656,4736287:5209943 -) -g1,3705:-473656,-710413 -) -] -) -[1,3705:6630773,47279633:25952256,43253760,0 -[1,3705:6630773,4812305:25952256,786432,0 -(1,3705:6630773,4812305:25952256,505283,126483 -(1,3705:6630773,4812305:25952256,505283,126483 -g1,3705:3078558,4812305 -[1,3705:3078558,4812305:0,0,0 -(1,3705:3078558,2439708:0,1703936,0 -k1,3705:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,3705:2537886,2439708:1179648,16384,0 -) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,3705:3078558,1915420:16384,1179648,0 -) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 -) -] -) -) -) -] -[1,3705:3078558,4812305:0,0,0 -(1,3705:3078558,2439708:0,1703936,0 -g1,3705:29030814,2439708 -g1,3705:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,3705:36151628,1915420:16384,1179648,0 -) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 -) -] -) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,3705:37855564,2439708:1179648,16384,0 -) -) -k1,3705:3078556,2439708:-34777008 -) -] -[1,3705:3078558,4812305:0,0,0 -(1,3705:3078558,49800853:0,16384,2228224 -k1,3705:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,3705:2537886,49800853:1179648,16384,0 -) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,3705:3078558,51504789:16384,1179648,0 -) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 -) -] -) -) -) -] -[1,3705:3078558,4812305:0,0,0 -(1,3705:3078558,49800853:0,16384,2228224 -g1,3705:29030814,49800853 -g1,3705:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,3705:36151628,51504789:16384,1179648,0 -) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 -) -] -) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,3705:37855564,49800853:1179648,16384,0 -) -) -k1,3705:3078556,49800853:-34777008 -) -] -g1,3705:6630773,4812305 -g1,3705:6630773,4812305 -g1,3705:8050282,4812305 -g1,3705:9459961,4812305 -g1,3705:10519678,4812305 -g1,3705:14021266,4812305 -k1,3705:31786110,4812305:17764844 -) -) -] -[1,3705:6630773,45706769:25952256,40108032,0 -(1,3705:6630773,45706769:25952256,40108032,0 -(1,3705:6630773,45706769:0,0,0 -g1,3705:6630773,45706769 -) -[1,3705:6630773,45706769:25952256,40108032,0 -v1,3621:6630773,6254097:0,393216,0 -(1,3621:6630773,10288118:25952256,4427237,0 -g1,3621:6630773,10288118 -g1,3621:6303093,10288118 -r1,3705:6401397,10288118:98304,4427237,0 -g1,3621:6600626,10288118 -g1,3621:6797234,10288118 -[1,3621:6797234,10288118:25785795,4427237,0 -v1,3610:6797234,6254097:0,393216,0 -(1,3616:6797234,7876383:25785795,2015502,196608 -g1,3616:6797234,7876383 -g1,3616:6797234,7876383 -g1,3616:6600626,7876383 -(1,3616:6600626,7876383:0,2015502,196608 -r1,3705:32779637,7876383:26179011,2212110,196608 -k1,3616:6600625,7876383:-26179012 -) -(1,3616:6600626,7876383:26179011,2015502,196608 -[1,3616:6797234,7876383:25785795,1818894,0 -(1,3612:6797234,6461715:25785795,404226,82312 -(1,3611:6797234,6461715:0,0,0 -g1,3611:6797234,6461715 -g1,3611:6797234,6461715 -g1,3611:6469554,6461715 -(1,3611:6469554,6461715:0,0,0 -) -g1,3611:6797234,6461715 -) -k1,3612:6797234,6461715:0 -g1,3612:10907129,6461715 -g1,3612:12487858,6461715 -g1,3612:14384733,6461715 -h1,3612:15965461,6461715:0,0,0 -k1,3612:32583029,6461715:16617568 -g1,3612:32583029,6461715 -) -(1,3613:6797234,7127893:25785795,404226,82312 -h1,3613:6797234,7127893:0,0,0 -g1,3613:9642547,7127893 -g1,3613:11223276,7127893 -g1,3613:13120151,7127893 -h1,3613:14700879,7127893:0,0,0 -k1,3613:32583029,7127893:17882150 -g1,3613:32583029,7127893 -) -(1,3614:6797234,7794071:25785795,404226,82312 -h1,3614:6797234,7794071:0,0,0 -g1,3614:9010255,7794071 -g1,3614:10590984,7794071 -g1,3614:12171713,7794071 -h1,3614:13752441,7794071:0,0,0 -k1,3614:32583029,7794071:18830588 -g1,3614:32583029,7794071 -) -] -) -g1,3616:32583029,7876383 -g1,3616:6797234,7876383 -g1,3616:6797234,7876383 -g1,3616:32583029,7876383 -g1,3616:32583029,7876383 -) -h1,3616:6797234,8072991:0,0,0 -(1,3620:6797234,9438767:25785795,513147,126483 -h1,3619:6797234,9438767:983040,0,0 -k1,3619:9081521,9438767:177960 -k1,3619:10194024,9438767:177960 -k1,3619:12212235,9438767:177960 -k1,3619:13581640,9438767:177960 -k1,3619:18234398,9438767:177960 -k1,3619:19071649,9438767:177959 -k1,3619:21557787,9438767:177960 -k1,3619:25040728,9438767:177960 -k1,3619:28950308,9438767:177960 -k1,3619:30425226,9438767:177960 -k1,3619:31286071,9438767:177960 -k1,3619:32583029,9438767:0 -) -(1,3620:6797234,10280255:25785795,485622,7863 -k1,3620:32583029,10280255:24392500 -g1,3620:32583029,10280255 -) -] -g1,3621:32583029,10288118 -) -h1,3621:6630773,10288118:0,0,0 -v1,3624:6630773,11543504:0,393216,0 -(1,3674:6630773,33152191:25952256,22001903,0 -g1,3674:6630773,33152191 -g1,3674:6303093,33152191 -r1,3705:6401397,33152191:98304,22001903,0 -g1,3674:6600626,33152191 -g1,3674:6797234,33152191 -[1,3674:6797234,33152191:25785795,22001903,0 -(1,3625:6797234,11905577:25785795,755289,196608 -(1,3624:6797234,11905577:0,755289,196608 -r1,3705:8134168,11905577:1336934,951897,196608 -k1,3624:6797234,11905577:-1336934 -) -(1,3624:6797234,11905577:1336934,755289,196608 -) -k1,3624:8426637,11905577:292469 -k1,3624:8754317,11905577:327680 -k1,3624:9944630,11905577:292470 -k1,3624:11171642,11905577:292469 -k1,3624:13791294,11905577:292469 -k1,3624:17075483,11905577:292470 -k1,3624:19223276,11905577:292469 -k1,3624:20608231,11905577:292470 -k1,3624:23875379,11905577:292469 -k1,3624:26476026,11905577:292469 -k1,3624:27959941,11905577:292470 -k1,3624:31227089,11905577:292469 -k1,3625:32583029,11905577:0 -) -(1,3625:6797234,12747065:25785795,513147,134348 -k1,3624:9147917,12747065:231904 -k1,3624:10760664,12747065:231903 -k1,3624:11524065,12747065:231904 -k1,3624:12984769,12747065:231904 -k1,3624:14235758,12747065:231904 -k1,3624:16069361,12747065:231903 -k1,3624:19040015,12747065:231904 -k1,3624:20364404,12747065:231904 -k1,3624:22137058,12747065:231903 -k1,3624:23658711,12747065:231904 -k1,3624:27295210,12747065:231904 -k1,3624:28518674,12747065:231904 -k1,3624:30290673,12747065:231903 -k1,3624:31331947,12747065:231904 -k1,3625:32583029,12747065:0 -) -(1,3625:6797234,13588553:25785795,513147,134348 -k1,3624:8295554,13588553:228232 -k1,3624:9183078,13588553:228232 -k1,3624:10543117,13588553:228232 -k1,3624:12933382,13588553:228232 -k1,3624:14890454,13588553:228232 -k1,3624:18099263,13588553:228232 -(1,3624:18099263,13588553:0,452978,122846 -r1,3705:20567800,13588553:2468537,575824,122846 -k1,3624:18099263,13588553:-2468537 -) -(1,3624:18099263,13588553:2468537,452978,122846 -k1,3624:18099263,13588553:3277 -h1,3624:20564523,13588553:0,411205,112570 -) -k1,3624:20969703,13588553:228233 -k1,3624:22389380,13588553:228232 -k1,3624:25826255,13588553:228232 -k1,3624:28065132,13588553:228232 -k1,3624:29397646,13588553:228232 -k1,3624:30373644,13588553:228232 -k1,3624:31923737,13588553:228232 -k1,3624:32583029,13588553:0 -) -(1,3625:6797234,14430041:25785795,505283,102891 -k1,3624:10674063,14430041:186497 -k1,3624:11488394,14430041:186496 -k1,3624:12693976,14430041:186497 -k1,3624:15121804,14430041:186497 -k1,3624:16499746,14430041:186497 -k1,3624:18268281,14430041:186496 -k1,3624:21971440,14430041:186497 -k1,3624:22773975,14430041:186497 -k1,3624:23979556,14430041:186496 -k1,3624:25550173,14430041:186497 -k1,3624:27881008,14430041:186497 -k1,3624:28935857,14430041:186497 -k1,3624:30652619,14430041:186496 -k1,3624:31490544,14430041:186497 -k1,3624:32583029,14430041:0 -) -(1,3625:6797234,15271529:25785795,513147,126483 -k1,3624:10164605,15271529:140378 -k1,3624:14159155,15271529:140378 -k1,3624:14950961,15271529:140378 -k1,3624:16544928,15271529:140378 -k1,3624:17704390,15271529:140377 -k1,3624:20110348,15271529:140378 -k1,3624:21990052,15271529:140378 -k1,3624:22789722,15271529:140378 -k1,3624:26531303,15271529:140378 -k1,3624:29306884,15271529:140378 -k1,3624:32583029,15271529:0 -) -(1,3625:6797234,16113017:25785795,505283,126483 -g1,3624:8187908,16113017 -g1,3624:9321680,16113017 -k1,3625:32583030,16113017:20010764 -g1,3625:32583030,16113017 -) -v1,3627:6797234,17303483:0,393216,0 -(1,3646:6797234,22228732:25785795,5318465,196608 -g1,3646:6797234,22228732 -g1,3646:6797234,22228732 -g1,3646:6600626,22228732 -(1,3646:6600626,22228732:0,5318465,196608 -r1,3705:32779637,22228732:26179011,5515073,196608 -k1,3646:6600625,22228732:-26179012 -) -(1,3646:6600626,22228732:26179011,5318465,196608 -[1,3646:6797234,22228732:25785795,5121857,0 -(1,3629:6797234,17511101:25785795,404226,9436 -(1,3628:6797234,17511101:0,0,0 -g1,3628:6797234,17511101 -g1,3628:6797234,17511101 -g1,3628:6469554,17511101 -(1,3628:6469554,17511101:0,0,0 -) -g1,3628:6797234,17511101 -) -g1,3629:7429526,17511101 -g1,3629:9010255,17511101 -h1,3629:9958693,17511101:0,0,0 -k1,3629:32583029,17511101:22624336 -g1,3629:32583029,17511101 -) -(1,3633:6797234,18177279:25785795,404226,76021 -(1,3631:6797234,18177279:0,0,0 -g1,3631:6797234,18177279 -g1,3631:6797234,18177279 -g1,3631:6469554,18177279 -(1,3631:6469554,18177279:0,0,0 -) -g1,3631:6797234,18177279 -) -g1,3633:7745671,18177279 -g1,3633:9010254,18177279 -h1,3633:10590982,18177279:0,0,0 -k1,3633:32583030,18177279:21992048 -g1,3633:32583030,18177279 -) -(1,3635:6797234,19498817:25785795,404226,76021 -(1,3634:6797234,19498817:0,0,0 -g1,3634:6797234,19498817 -g1,3634:6797234,19498817 -g1,3634:6469554,19498817 -(1,3634:6469554,19498817:0,0,0 -) -g1,3634:6797234,19498817 -) -g1,3635:7429526,19498817 -g1,3635:9010255,19498817 -g1,3635:11223276,19498817 -g1,3635:11855568,19498817 -h1,3635:13752443,19498817:0,0,0 -k1,3635:32583029,19498817:18830586 -g1,3635:32583029,19498817 -) -(1,3639:6797234,20164995:25785795,404226,76021 -(1,3637:6797234,20164995:0,0,0 -g1,3637:6797234,20164995 -g1,3637:6797234,20164995 -g1,3637:6469554,20164995 -(1,3637:6469554,20164995:0,0,0 -) -g1,3637:6797234,20164995 -) -g1,3639:7745671,20164995 -g1,3639:9010254,20164995 -h1,3639:10274837,20164995:0,0,0 -k1,3639:32583029,20164995:22308192 -g1,3639:32583029,20164995 -) -(1,3641:6797234,21486533:25785795,404226,82312 -(1,3640:6797234,21486533:0,0,0 -g1,3640:6797234,21486533 -g1,3640:6797234,21486533 -g1,3640:6469554,21486533 -(1,3640:6469554,21486533:0,0,0 -) -g1,3640:6797234,21486533 -) -k1,3641:6797234,21486533:0 -g1,3641:8377964,21486533 -g1,3641:9642547,21486533 -g1,3641:11223276,21486533 -g1,3641:13436297,21486533 -g1,3641:14068589,21486533 -h1,3641:15965464,21486533:0,0,0 -k1,3641:32583029,21486533:16617565 -g1,3641:32583029,21486533 -) -(1,3645:6797234,22152711:25785795,404226,76021 -(1,3643:6797234,22152711:0,0,0 -g1,3643:6797234,22152711 -g1,3643:6797234,22152711 -g1,3643:6469554,22152711 -(1,3643:6469554,22152711:0,0,0 -) -g1,3643:6797234,22152711 -) -g1,3645:7745671,22152711 -g1,3645:9010254,22152711 -g1,3645:10907128,22152711 -g1,3645:11223274,22152711 -h1,3645:12487857,22152711:0,0,0 -k1,3645:32583029,22152711:20095172 -g1,3645:32583029,22152711 -) -] -) -g1,3646:32583029,22228732 -g1,3646:6797234,22228732 -g1,3646:6797234,22228732 -g1,3646:32583029,22228732 -g1,3646:32583029,22228732 -) -h1,3646:6797234,22425340:0,0,0 -(1,3650:6797234,23791116:25785795,513147,134348 -h1,3649:6797234,23791116:983040,0,0 -k1,3649:10023481,23791116:254845 -k1,3649:11450111,23791116:254846 -k1,3649:12696516,23791116:254845 -k1,3649:13722065,23791116:254846 -k1,3649:17186208,23791116:254845 -k1,3649:21038325,23791116:254846 -k1,3649:21952462,23791116:254845 -k1,3649:23226393,23791116:254846 -k1,3649:25808421,23791116:254845 -k1,3649:26722559,23791116:254846 -k1,3649:28415919,23791116:254845 -k1,3649:29286803,23791116:254846 -k1,3649:29956436,23791116:254790 -k1,3649:31591469,23791116:254845 -k1,3649:32583029,23791116:0 -) -(1,3650:6797234,24632604:25785795,513147,134348 -k1,3649:10809629,24632604:202787 -k1,3649:11698578,24632604:202787 -k1,3649:14209543,24632604:202787 -k1,3649:15071622,24632604:202787 -k1,3649:16694574,24632604:202787 -k1,3649:19084297,24632604:202787 -k1,3649:21161414,24632604:202787 -k1,3649:23672380,24632604:202788 -k1,3649:24690435,24632604:202787 -k1,3649:27029696,24632604:202787 -k1,3649:27883911,24632604:202787 -k1,3649:28442558,24632604:202787 -k1,3649:30200514,24632604:202787 -k1,3649:31896867,24632604:202787 -k1,3650:32583029,24632604:0 -) -(1,3650:6797234,25474092:25785795,505283,126483 -(1,3649:6797234,25474092:0,452978,115847 -r1,3705:9265771,25474092:2468537,568825,115847 -k1,3649:6797234,25474092:-2468537 -) -(1,3649:6797234,25474092:2468537,452978,115847 -k1,3649:6797234,25474092:3277 -h1,3649:9262494,25474092:0,411205,112570 -) -k1,3649:9482274,25474092:216503 -k1,3649:10381662,25474092:216503 -(1,3649:10381662,25474092:0,452978,115847 -r1,3705:13553622,25474092:3171960,568825,115847 -k1,3649:10381662,25474092:-3171960 -) -(1,3649:10381662,25474092:3171960,452978,115847 -k1,3649:10381662,25474092:3277 -h1,3649:13550345,25474092:0,411205,112570 -) -k1,3649:13770125,25474092:216503 -k1,3649:15178072,25474092:216502 -k1,3649:17016591,25474092:216503 -k1,3649:17980860,25474092:216503 -k1,3649:21733030,25474092:216503 -k1,3649:23343484,25474092:216503 -k1,3649:25261957,25474092:216503 -k1,3649:28451172,25474092:216502 -k1,3649:29283713,25474092:216503 -k1,3649:30270919,25474092:216503 -k1,3650:32583029,25474092:0 -) -(1,3650:6797234,26315580:25785795,473825,7863 -k1,3650:32583029,26315580:24271258 -g1,3650:32583029,26315580 -) -v1,3652:6797234,27506046:0,393216,0 -(1,3671:6797234,32431295:25785795,5318465,196608 -g1,3671:6797234,32431295 -g1,3671:6797234,32431295 -g1,3671:6600626,32431295 -(1,3671:6600626,32431295:0,5318465,196608 -r1,3705:32779637,32431295:26179011,5515073,196608 -k1,3671:6600625,32431295:-26179012 -) -(1,3671:6600626,32431295:26179011,5318465,196608 -[1,3671:6797234,32431295:25785795,5121857,0 -(1,3654:6797234,27713664:25785795,404226,101187 -(1,3653:6797234,27713664:0,0,0 -g1,3653:6797234,27713664 -g1,3653:6797234,27713664 -g1,3653:6469554,27713664 -(1,3653:6469554,27713664:0,0,0 -) -g1,3653:6797234,27713664 -) -k1,3654:6797234,27713664:0 -g1,3654:9326401,27713664 -g1,3654:11223276,27713664 -g1,3654:12804005,27713664 -k1,3654:12804005,27713664:0 -h1,3654:16281607,27713664:0,0,0 -k1,3654:32583029,27713664:16301422 -g1,3654:32583029,27713664 -) -(1,3658:6797234,28379842:25785795,404226,76021 -(1,3656:6797234,28379842:0,0,0 -g1,3656:6797234,28379842 -g1,3656:6797234,28379842 -g1,3656:6469554,28379842 -(1,3656:6469554,28379842:0,0,0 -) -g1,3656:6797234,28379842 -) -g1,3658:7745671,28379842 -g1,3658:9010254,28379842 -g1,3658:10907128,28379842 -h1,3658:12487856,28379842:0,0,0 -k1,3658:32583028,28379842:20095172 -g1,3658:32583028,28379842 -) -(1,3660:6797234,29701380:25785795,404226,82312 -(1,3659:6797234,29701380:0,0,0 -g1,3659:6797234,29701380 -g1,3659:6797234,29701380 -g1,3659:6469554,29701380 -(1,3659:6469554,29701380:0,0,0 -) -g1,3659:6797234,29701380 -) -k1,3660:6797234,29701380:0 -g1,3660:10590982,29701380 -g1,3660:12171711,29701380 -g1,3660:14384732,29701380 -g1,3660:15965461,29701380 -h1,3660:17230044,29701380:0,0,0 -k1,3660:32583029,29701380:15352985 -g1,3660:32583029,29701380 -) -(1,3664:6797234,30367558:25785795,404226,107478 -(1,3662:6797234,30367558:0,0,0 -g1,3662:6797234,30367558 -g1,3662:6797234,30367558 -g1,3662:6469554,30367558 -(1,3662:6469554,30367558:0,0,0 -) -g1,3662:6797234,30367558 -) -g1,3664:7745671,30367558 -h1,3664:10907128,30367558:0,0,0 -k1,3664:32583028,30367558:21675900 -g1,3664:32583028,30367558 -) -(1,3666:6797234,31689096:25785795,404226,82312 -(1,3665:6797234,31689096:0,0,0 -g1,3665:6797234,31689096 -g1,3665:6797234,31689096 -g1,3665:6469554,31689096 -(1,3665:6469554,31689096:0,0,0 -) -g1,3665:6797234,31689096 -) -k1,3666:6797234,31689096:0 -g1,3666:10590983,31689096 -k1,3666:10590983,31689096:0 -h1,3666:14384731,31689096:0,0,0 -k1,3666:32583029,31689096:18198298 -g1,3666:32583029,31689096 -) -(1,3670:6797234,32355274:25785795,404226,76021 -(1,3668:6797234,32355274:0,0,0 -g1,3668:6797234,32355274 -g1,3668:6797234,32355274 -g1,3668:6469554,32355274 -(1,3668:6469554,32355274:0,0,0 -) -g1,3668:6797234,32355274 -) -g1,3670:7745671,32355274 -g1,3670:9010254,32355274 -h1,3670:10274837,32355274:0,0,0 -k1,3670:32583029,32355274:22308192 -g1,3670:32583029,32355274 -) -] -) -g1,3671:32583029,32431295 -g1,3671:6797234,32431295 -g1,3671:6797234,32431295 -g1,3671:32583029,32431295 -g1,3671:32583029,32431295 -) -h1,3671:6797234,32627903:0,0,0 -] -g1,3674:32583029,33152191 -) -h1,3674:6630773,33152191:0,0,0 -v1,3677:6630773,34407578:0,393216,0 -(1,3696:6630773,40518545:25952256,6504183,0 -g1,3696:6630773,40518545 -g1,3696:6303093,40518545 -r1,3705:6401397,40518545:98304,6504183,0 -g1,3696:6600626,40518545 -g1,3696:6797234,40518545 -[1,3696:6797234,40518545:25785795,6504183,0 -(1,3678:6797234,34828162:25785795,813800,267386 -(1,3677:6797234,34828162:0,813800,267386 -r1,3705:8134168,34828162:1336934,1081186,267386 -k1,3677:6797234,34828162:-1336934 -) -(1,3677:6797234,34828162:1336934,813800,267386 -) -k1,3677:8352243,34828162:218075 -k1,3677:8679923,34828162:327680 -k1,3677:11860881,34828162:218075 -k1,3677:13013498,34828162:218074 -k1,3677:16308488,34828162:218075 -k1,3677:17518123,34828162:218075 -k1,3677:20117776,34828162:218075 -k1,3677:21283502,34828162:218075 -(1,3677:21283502,34828162:0,452978,115847 -r1,3705:23752039,34828162:2468537,568825,115847 -k1,3677:21283502,34828162:-2468537 -) -(1,3677:21283502,34828162:2468537,452978,115847 -k1,3677:21283502,34828162:3277 -h1,3677:23748762,34828162:0,411205,112570 -) -k1,3677:23970114,34828162:218075 -k1,3677:26670036,34828162:218074 -k1,3677:29811672,34828162:218075 -k1,3677:31966991,34828162:218075 -k1,3677:32583029,34828162:0 -) -(1,3678:6797234,35669650:25785795,513147,134348 -g1,3677:9115897,35669650 -g1,3677:10419408,35669650 -g1,3677:12461509,35669650 -g1,3677:13276776,35669650 -g1,3677:17144710,35669650 -g1,3677:19517113,35669650 -g1,3677:20948419,35669650 -g1,3677:23426335,35669650 -h1,3677:24396923,35669650:0,0,0 -g1,3677:24596152,35669650 -g1,3677:25604751,35669650 -g1,3677:27302133,35669650 -h1,3677:28099051,35669650:0,0,0 -k1,3678:32583029,35669650:4103214 -g1,3678:32583029,35669650 -) -v1,3680:6797234,36860116:0,393216,0 -(1,3693:6797234,39797649:25785795,3330749,196608 -g1,3693:6797234,39797649 -g1,3693:6797234,39797649 -g1,3693:6600626,39797649 -(1,3693:6600626,39797649:0,3330749,196608 -r1,3705:32779637,39797649:26179011,3527357,196608 -k1,3693:6600625,39797649:-26179012 -) -(1,3693:6600626,39797649:26179011,3330749,196608 -[1,3693:6797234,39797649:25785795,3134141,0 -(1,3682:6797234,37067734:25785795,404226,101187 -(1,3681:6797234,37067734:0,0,0 -g1,3681:6797234,37067734 -g1,3681:6797234,37067734 -g1,3681:6469554,37067734 -(1,3681:6469554,37067734:0,0,0 -) -g1,3681:6797234,37067734 -) -k1,3682:6797234,37067734:0 -g1,3682:10274838,37067734 -g1,3682:13120149,37067734 -g1,3682:14700878,37067734 -g1,3682:16281608,37067734 -k1,3682:16281608,37067734:0 -h1,3682:17230046,37067734:0,0,0 -k1,3682:32583029,37067734:15352983 -g1,3682:32583029,37067734 -) -(1,3686:6797234,37733912:25785795,404226,76021 -(1,3684:6797234,37733912:0,0,0 -g1,3684:6797234,37733912 -g1,3684:6797234,37733912 -g1,3684:6469554,37733912 -(1,3684:6469554,37733912:0,0,0 -) -g1,3684:6797234,37733912 -) -g1,3686:7745671,37733912 -g1,3686:9010254,37733912 -g1,3686:9326400,37733912 -g1,3686:10907129,37733912 -h1,3686:12487857,37733912:0,0,0 -k1,3686:32583029,37733912:20095172 -g1,3686:32583029,37733912 -) -(1,3688:6797234,39055450:25785795,404226,101187 -(1,3687:6797234,39055450:0,0,0 -g1,3687:6797234,39055450 -g1,3687:6797234,39055450 -g1,3687:6469554,39055450 -(1,3687:6469554,39055450:0,0,0 -) -g1,3687:6797234,39055450 -) -k1,3688:6797234,39055450:0 -g1,3688:10274838,39055450 -k1,3688:10274838,39055450:0 -h1,3688:12804003,39055450:0,0,0 -k1,3688:32583029,39055450:19779026 -g1,3688:32583029,39055450 -) -(1,3692:6797234,39721628:25785795,404226,76021 -(1,3690:6797234,39721628:0,0,0 -g1,3690:6797234,39721628 -g1,3690:6797234,39721628 -g1,3690:6469554,39721628 -(1,3690:6469554,39721628:0,0,0 -) -g1,3690:6797234,39721628 -) -g1,3692:7745671,39721628 -g1,3692:9010254,39721628 -g1,3692:13436294,39721628 -g1,3692:13752440,39721628 -k1,3692:13752440,39721628:0 -h1,3692:17546188,39721628:0,0,0 -k1,3692:32583029,39721628:15036841 -g1,3692:32583029,39721628 -) -] -) -g1,3693:32583029,39797649 -g1,3693:6797234,39797649 -g1,3693:6797234,39797649 -g1,3693:32583029,39797649 -g1,3693:32583029,39797649 -) -h1,3693:6797234,39994257:0,0,0 -] -g1,3696:32583029,40518545 -) -h1,3696:6630773,40518545:0,0,0 -v1,3699:6630773,41773931:0,393216,0 -(1,3700:6630773,45706769:25952256,4326054,0 -g1,3700:6630773,45706769 -g1,3700:6303093,45706769 -r1,3705:6401397,45706769:98304,4326054,0 -g1,3700:6600626,45706769 -g1,3700:6797234,45706769 -[1,3700:6797234,45706769:25785795,4326054,0 -(1,3700:6797234,42206469:25785795,825754,196608 -(1,3699:6797234,42206469:0,825754,196608 -r1,3705:8834093,42206469:2036859,1022362,196608 -k1,3699:6797234,42206469:-2036859 -) -(1,3699:6797234,42206469:2036859,825754,196608 -) -k1,3699:9068230,42206469:234137 -k1,3699:10794448,42206469:327680 -k1,3699:11656419,42206469:234136 -k1,3699:12909641,42206469:234137 -k1,3699:15470961,42206469:234137 -k1,3699:16364389,42206469:234136 -k1,3699:17863371,42206469:234137 -k1,3699:20787106,42206469:234137 -$1,3699:20787106,42206469 -k1,3699:21550699,42206469:245859 -k1,3699:22364755,42206469:245859 -$1,3699:22813021,42206469 -k1,3699:23220828,42206469:234137 -k1,3699:25373859,42206469:234137 -$1,3699:25373859,42206469 -$1,3699:25891593,42206469 -k1,3699:26125729,42206469:234136 -k1,3699:27551311,42206469:234137 -$1,3699:27551311,42206469 -$1,3699:27999577,42206469 -k1,3699:28233714,42206469:234137 -k1,3699:29459410,42206469:234136 -k1,3699:31132062,42206469:234137 -k1,3700:32583029,42206469:0 -) -(1,3700:6797234,43047957:25785795,505283,126483 -k1,3699:8671287,43047957:250071 -k1,3699:10205864,43047957:250071 -$1,3699:10205864,43047957 -$1,3699:10723598,43047957 -k1,3699:10973669,43047957:250071 -k1,3699:11755237,43047957:250071 -k1,3699:12361168,43047957:250071 -k1,3699:14691352,43047957:250071 -k1,3699:15624308,43047957:250071 -k1,3699:17601908,43047957:250071 -k1,3699:18503407,43047957:250071 -$1,3699:18503407,43047957 -$1,3699:18951673,43047957 -k1,3699:19375414,43047957:250071 -k1,3699:20667507,43047957:250071 -k1,3699:21273438,43047957:250071 -k1,3699:22830952,43047957:250071 -k1,3699:25334806,43047957:250071 -k1,3699:26603962,43047957:250071 -k1,3699:29543631,43047957:250071 -k1,3699:30325199,43047957:250071 -$1,3699:30325199,43047957 -k1,3699:31117914,43047957:274981 -k1,3699:31961093,43047957:274982 -$1,3699:32409359,43047957 -k1,3699:32583029,43047957:0 -) -(1,3700:6797234,43889445:25785795,513147,126483 -k1,3699:8168751,43889445:174830 -k1,3699:11420496,43889445:174830 -k1,3699:12989277,43889445:174830 -k1,3699:14183191,43889445:174829 -k1,3699:16664233,43889445:174830 -k1,3699:19697743,43889445:174830 -k1,3699:20864133,43889445:174830 -$1,3699:20864133,43889445 -$1,3699:21432330,43889445 -k1,3699:21607160,43889445:174830 -k1,3699:22973435,43889445:174830 -$1,3699:22973435,43889445 -$1,3699:23541632,43889445 -k1,3699:23890131,43889445:174829 -k1,3699:27510189,43889445:174830 -k1,3699:29381746,43889445:174830 -k1,3699:30919070,43889445:174830 -k1,3700:32583029,43889445:0 -) -(1,3700:6797234,44730933:25785795,513147,126483 -k1,3699:8933008,44730933:182146 -k1,3699:9731191,44730933:182145 -k1,3699:11275831,44730933:182146 -k1,3699:11872802,44730933:182128 -k1,3699:15745280,44730933:182146 -k1,3699:17118870,44730933:182145 -k1,3699:18492461,44730933:182146 -k1,3699:20313662,44730933:182146 -k1,3699:21305177,44730933:182145 -k1,3699:22752168,44730933:182146 -k1,3699:26951015,44730933:182145 -k1,3699:27894689,44730933:182146 -k1,3699:28491660,44730933:182128 -k1,3699:31189078,44730933:182146 -k1,3699:32583029,44730933:0 -) -(1,3700:6797234,45572421:25785795,513147,134348 -g1,3699:9758806,45572421 -g1,3699:12927471,45572421 -g1,3699:15286111,45572421 -g1,3699:16419883,45572421 -k1,3700:32583029,45572421:13035768 -g1,3700:32583029,45572421 -) -] -g1,3700:32583029,45706769 -) -h1,3700:6630773,45706769:0,0,0 -] -(1,3705:32583029,45706769:0,0,0 -g1,3705:32583029,45706769 -) -) -] -(1,3705:6630773,47279633:25952256,0,0 -h1,3705:6630773,47279633:25952256,0,0 -) -] -(1,3705:4262630,4025873:0,0,0 -[1,3705:-473656,4025873:0,0,0 -(1,3705:-473656,-710413:0,0,0 -(1,3705:-473656,-710413:0,0,0 -g1,3705:-473656,-710413 -) -g1,3705:-473656,-710413 -) -] -) -] -!24562 -}74 -Input:651:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:652:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:653:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:654:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:655:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:656:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:657:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:658:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:659:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!848 -{75 -[1,3785:4262630,47279633:28320399,43253760,0 -(1,3785:4262630,4025873:0,0,0 -[1,3785:-473656,4025873:0,0,0 -(1,3785:-473656,-710413:0,0,0 -(1,3785:-473656,-644877:0,0,0 -k1,3785:-473656,-644877:-65536 -) -(1,3785:-473656,4736287:0,0,0 -k1,3785:-473656,4736287:5209943 -) -g1,3785:-473656,-710413 -) -] -) -[1,3785:6630773,47279633:25952256,43253760,0 -[1,3785:6630773,4812305:25952256,786432,0 -(1,3785:6630773,4812305:25952256,505283,11795 -(1,3785:6630773,4812305:25952256,505283,11795 -g1,3785:3078558,4812305 -[1,3785:3078558,4812305:0,0,0 -(1,3785:3078558,2439708:0,1703936,0 -k1,3785:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,3785:2537886,2439708:1179648,16384,0 -) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,3785:3078558,1915420:16384,1179648,0 -) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 -) -] -) -) -) -] -[1,3785:3078558,4812305:0,0,0 -(1,3785:3078558,2439708:0,1703936,0 -g1,3785:29030814,2439708 -g1,3785:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,3785:36151628,1915420:16384,1179648,0 -) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 -) -] -) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,3785:37855564,2439708:1179648,16384,0 -) -) -k1,3785:3078556,2439708:-34777008 -) -] -[1,3785:3078558,4812305:0,0,0 -(1,3785:3078558,49800853:0,16384,2228224 -k1,3785:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,3785:2537886,49800853:1179648,16384,0 -) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,3785:3078558,51504789:16384,1179648,0 -) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 -) -] -) -) -) -] -[1,3785:3078558,4812305:0,0,0 -(1,3785:3078558,49800853:0,16384,2228224 -g1,3785:29030814,49800853 -g1,3785:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,3785:36151628,51504789:16384,1179648,0 -) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 -) -] -) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,3785:37855564,49800853:1179648,16384,0 -) -) -k1,3785:3078556,49800853:-34777008 -) -] -g1,3785:6630773,4812305 -k1,3785:22348274,4812305:14920583 -g1,3785:23970945,4812305 -g1,3785:24793421,4812305 -g1,3785:27528893,4812305 -g1,3785:28938572,4812305 -) -) -] -[1,3785:6630773,45706769:25952256,40108032,0 -(1,3785:6630773,45706769:25952256,40108032,0 -(1,3785:6630773,45706769:0,0,0 -g1,3785:6630773,45706769 -) -[1,3785:6630773,45706769:25952256,40108032,0 -v1,3705:6630773,6254097:0,393216,0 -(1,3713:6630773,8842628:25952256,2981747,0 -g1,3713:6630773,8842628 -g1,3713:6303093,8842628 -r1,3785:6401397,8842628:98304,2981747,0 -g1,3713:6600626,8842628 -g1,3713:6797234,8842628 -[1,3713:6797234,8842628:25785795,2981747,0 -(1,3707:6797234,6616170:25785795,755289,196608 -(1,3705:6797234,6616170:0,755289,196608 -r1,3785:8134168,6616170:1336934,951897,196608 -k1,3705:6797234,6616170:-1336934 -) -(1,3705:6797234,6616170:1336934,755289,196608 -) -g1,3705:8333397,6616170 -g1,3705:8661077,6616170 -g1,3705:10056993,6616170 -g1,3705:11752409,6616170 -g1,3705:13820069,6616170 -g1,3705:16704308,6616170 -g1,3705:17669653,6616170 -g1,3705:20158710,6616170 -g1,3705:21751890,6616170 -g1,3705:24019435,6616170 -(1,3705:24019435,6616170:0,452978,115847 -r1,3785:26136260,6616170:2116825,568825,115847 -k1,3705:24019435,6616170:-2116825 -) -(1,3705:24019435,6616170:2116825,452978,115847 -k1,3705:24019435,6616170:3277 -h1,3705:26132983,6616170:0,411205,112570 -) -g1,3705:26509159,6616170 -(1,3705:26509159,6616170:0,452978,115847 -r1,3785:28625984,6616170:2116825,568825,115847 -k1,3705:26509159,6616170:-2116825 -) -(1,3705:26509159,6616170:2116825,452978,115847 -k1,3705:26509159,6616170:3277 -h1,3705:28622707,6616170:0,411205,112570 -) -g1,3705:28998883,6616170 -g1,3705:30389557,6616170 -g1,3705:31313614,6616170 -g1,3705:32495883,6616170 -k1,3707:32583029,6616170:87146 -g1,3707:32583029,6616170 -) -v1,3707:6797234,7806636:0,393216,0 -(1,3711:6797234,8121732:25785795,708312,196608 -g1,3711:6797234,8121732 -g1,3711:6797234,8121732 -g1,3711:6600626,8121732 -(1,3711:6600626,8121732:0,708312,196608 -r1,3785:32779637,8121732:26179011,904920,196608 -k1,3711:6600625,8121732:-26179012 -) -(1,3711:6600626,8121732:26179011,708312,196608 -[1,3711:6797234,8121732:25785795,511704,0 -(1,3709:6797234,8014254:25785795,404226,107478 -(1,3708:6797234,8014254:0,0,0 -g1,3708:6797234,8014254 -g1,3708:6797234,8014254 -g1,3708:6469554,8014254 -(1,3708:6469554,8014254:0,0,0 -) -g1,3708:6797234,8014254 -) -k1,3709:6797234,8014254:0 -g1,3709:10590983,8014254 -g1,3709:11223275,8014254 -g1,3709:14700878,8014254 -g1,3709:15333170,8014254 -h1,3709:21656083,8014254:0,0,0 -k1,3709:32583029,8014254:10926946 -g1,3709:32583029,8014254 -) -] -) -g1,3711:32583029,8121732 -g1,3711:6797234,8121732 -g1,3711:6797234,8121732 -g1,3711:32583029,8121732 -g1,3711:32583029,8121732 -) -h1,3711:6797234,8318340:0,0,0 -] -g1,3713:32583029,8842628 -) -h1,3713:6630773,8842628:0,0,0 -(1,3715:6630773,11650196:25952256,32768,229376 -(1,3715:6630773,11650196:0,32768,229376 -(1,3715:6630773,11650196:5505024,32768,229376 -r1,3785:12135797,11650196:5505024,262144,229376 -) -k1,3715:6630773,11650196:-5505024 -) -(1,3715:6630773,11650196:25952256,32768,0 -r1,3785:32583029,11650196:25952256,32768,0 -) -) -(1,3715:6630773,13254524:25952256,615776,161218 -(1,3715:6630773,13254524:1974731,582746,14155 -g1,3715:6630773,13254524 -g1,3715:8605504,13254524 -) -g1,3715:10368685,13254524 -g1,3715:13231298,13254524 -g1,3715:14941001,13254524 -g1,3715:17545664,13254524 -g1,3715:18603415,13254524 -k1,3715:32583029,13254524:11126439 -g1,3715:32583029,13254524 -) -(1,3718:6630773,14489228:25952256,513147,134348 -k1,3717:9249592,14489228:264110 -k1,3717:10505262,14489228:264110 -k1,3717:14862095,14489228:264110 -k1,3717:16506393,14489228:264110 -k1,3717:20014535,14489228:264110 -k1,3717:21297729,14489228:264109 -k1,3717:24890413,14489228:264110 -k1,3717:26345968,14489228:264110 -k1,3717:29369799,14489228:264110 -k1,3717:30293201,14489228:264110 -k1,3717:32583029,14489228:0 -) -(1,3718:6630773,15330716:25952256,513147,134348 -k1,3717:9900758,15330716:143262 -k1,3717:10695447,15330716:143261 -k1,3717:12651435,15330716:143262 -k1,3717:14155223,15330716:143261 -k1,3717:16531297,15330716:143262 -k1,3717:17778841,15330716:143262 -k1,3717:18669868,15330716:143261 -k1,3717:21194708,15330716:143262 -k1,3717:21954007,15330716:143261 -k1,3717:23478113,15330716:143262 -k1,3717:25117562,15330716:143262 -k1,3717:25946985,15330716:143261 -k1,3717:27368854,15330716:143262 -k1,3717:28198277,15330716:143261 -k1,3717:29624734,15330716:143262 -k1,3717:32583029,15330716:0 -) -(1,3718:6630773,16172204:25952256,513147,134348 -k1,3717:7935115,16172204:234794 -k1,3717:11195705,16172204:234793 -k1,3717:12113384,16172204:234794 -k1,3717:15425092,16172204:234793 -k1,3717:18129938,16172204:234794 -k1,3717:19016159,16172204:234793 -k1,3717:19938426,16172204:234794 -k1,3717:21985945,16172204:234793 -k1,3717:23417426,16172204:234794 -k1,3717:25158892,16172204:234793 -k1,3717:25925183,16172204:234794 -k1,3717:27306201,16172204:234793 -k1,3717:27896855,16172204:234794 -k1,3717:29718930,16172204:234793 -k1,3717:31238230,16172204:234794 -k1,3717:32583029,16172204:0 -) -(1,3718:6630773,17013692:25952256,505283,134348 -g1,3717:8160383,17013692 -g1,3717:9378697,17013692 -g1,3717:11258269,17013692 -g1,3717:12073536,17013692 -g1,3717:13043468,17013692 -g1,3717:15202223,17013692 -g1,3717:17581835,17013692 -g1,3717:18528830,17013692 -g1,3717:22318121,17013692 -g1,3717:23708795,17013692 -g1,3717:26739835,17013692 -k1,3718:32583029,17013692:4024570 -g1,3718:32583029,17013692 -) -(1,3720:6630773,17855180:25952256,505283,134348 -h1,3719:6630773,17855180:983040,0,0 -k1,3719:10691586,17855180:135206 -k1,3719:13102201,17855180:135205 -k1,3719:14932168,17855180:135206 -k1,3719:15718802,17855180:135206 -k1,3719:18350929,17855180:135205 -k1,3719:19961350,17855180:135206 -k1,3719:20452416,17855180:135206 -k1,3719:22094295,17855180:135206 -k1,3719:23514006,17855180:135205 -k1,3719:26351261,17855180:135206 -k1,3719:27295837,17855180:135206 -k1,3719:28450127,17855180:135205 -k1,3719:30544859,17855180:135206 -k1,3719:32583029,17855180:0 -) -(1,3720:6630773,18696668:25952256,505283,134348 -k1,3719:7426568,18696668:179757 -k1,3719:9419051,18696668:179757 -k1,3719:10226644,18696668:179758 -k1,3719:13037672,18696668:179757 -k1,3719:13868857,18696668:179757 -k1,3719:15740754,18696668:179757 -k1,3719:17622481,18696668:179757 -k1,3719:20974836,18696668:179757 -k1,3719:21770632,18696668:179758 -k1,3719:22365212,18696668:179737 -k1,3719:26190737,18696668:179757 -k1,3719:27021923,18696668:179758 -k1,3719:27557540,18696668:179757 -k1,3719:30248637,18696668:179757 -k1,3719:32583029,18696668:0 -) -(1,3720:6630773,19538156:25952256,513147,134348 -k1,3719:7501173,19538156:254362 -k1,3719:8848019,19538156:254361 -k1,3719:9753809,19538156:254362 -k1,3719:11625600,19538156:254362 -k1,3719:12650664,19538156:254361 -k1,3719:14864552,19538156:254362 -k1,3719:18245636,19538156:254361 -k1,3719:19151426,19538156:254362 -k1,3719:19761648,19538156:254362 -k1,3719:22778352,19538156:254361 -k1,3719:24587883,19538156:254362 -k1,3719:25373742,19538156:254362 -k1,3719:28251509,19538156:254361 -k1,3719:30338258,19538156:254362 -k1,3719:31124116,19538156:254361 -k1,3719:31734338,19538156:254362 -k1,3720:32583029,19538156:0 -) -(1,3720:6630773,20379644:25952256,513147,126483 -k1,3719:9518814,20379644:210240 -k1,3719:11013559,20379644:210239 -k1,3719:11989915,20379644:210240 -k1,3719:15069320,20379644:210239 -k1,3719:15895598,20379644:210240 -k1,3719:16461697,20379644:210239 -k1,3719:18823484,20379644:210240 -k1,3719:20683264,20379644:210239 -k1,3719:21576389,20379644:210240 -k1,3719:24047620,20379644:210239 -k1,3719:25879876,20379644:210240 -k1,3719:26837881,20379644:210239 -k1,3719:27707413,20379644:210240 -k1,3719:28936737,20379644:210239 -k1,3719:30800450,20379644:210240 -k1,3719:32583029,20379644:0 -) -(1,3720:6630773,21221132:25952256,505283,134348 -k1,3719:8768140,21221132:233546 -k1,3719:9993247,21221132:233547 -k1,3719:12094569,21221132:233546 -k1,3719:14663818,21221132:233546 -k1,3719:15583527,21221132:233547 -k1,3719:17197261,21221132:233546 -k1,3719:19802556,21221132:233547 -k1,3719:24483375,21221132:233546 -k1,3719:28051393,21221132:233546 -k1,3719:29768675,21221132:233547 -k1,3719:31193666,21221132:233546 -k1,3719:32583029,21221132:0 -) -(1,3720:6630773,22062620:25952256,513147,134348 -k1,3719:9039070,22062620:201700 -k1,3719:10345051,22062620:201699 -k1,3719:11294517,22062620:201700 -k1,3719:15821592,22062620:201699 -k1,3719:16881814,22062620:201700 -k1,3719:17831279,22062620:201699 -k1,3719:21123002,22062620:201700 -k1,3719:21940739,22062620:201699 -k1,3719:24560062,22062620:201700 -h1,3719:24958521,22062620:0,0,0 -k1,3719:25540984,22062620:201699 -k1,3719:26370519,22062620:201700 -k1,3719:29109772,22062620:201699 -k1,3719:30514713,22062620:201700 -k1,3719:32583029,22062620:0 -) -(1,3720:6630773,22904108:25952256,513147,134348 -k1,3719:8169954,22904108:254675 -k1,3719:9292981,22904108:254675 -k1,3719:10651938,22904108:254675 -k1,3719:12913325,22904108:254675 -k1,3719:13938703,22904108:254675 -k1,3719:16326575,22904108:254675 -k1,3719:18074816,22904108:254675 -k1,3719:19015653,22904108:254675 -k1,3719:19626187,22904108:254674 -k1,3719:22032409,22904108:254675 -k1,3719:23681035,22904108:254675 -k1,3719:24291570,22904108:254675 -k1,3719:27308588,22904108:254675 -(1,3719:27308588,22904108:0,452978,115847 -r1,3785:29073701,22904108:1765113,568825,115847 -k1,3719:27308588,22904108:-1765113 -) -(1,3719:27308588,22904108:1765113,452978,115847 -k1,3719:27308588,22904108:3277 -h1,3719:29070424,22904108:0,411205,112570 -) -k1,3719:29328376,22904108:254675 -k1,3719:30234479,22904108:254675 -k1,3719:30845014,22904108:254675 -k1,3719:32583029,22904108:0 -) -(1,3720:6630773,23745596:25952256,513147,134348 -k1,3719:9154783,23745596:189618 -k1,3719:9960438,23745596:189617 -k1,3719:11416212,23745596:189618 -k1,3719:12677998,23745596:189617 -k1,3719:13735968,23745596:189618 -k1,3719:16096138,23745596:189618 -k1,3719:17378240,23745596:189617 -k1,3719:20307263,23745596:189618 -k1,3719:21148308,23745596:189617 -k1,3719:23344638,23745596:189618 -k1,3719:24304959,23745596:189618 -k1,3719:26454102,23745596:189617 -k1,3719:27303012,23745596:189618 -k1,3719:27848489,23745596:189617 -k1,3719:30800450,23745596:189618 -k1,3719:32583029,23745596:0 -) -(1,3720:6630773,24587084:25952256,513147,126483 -g1,3719:7481430,24587084 -g1,3719:10873573,24587084 -g1,3719:14026510,24587084 -g1,3719:14885031,24587084 -g1,3719:15440120,24587084 -g1,3719:17790896,24587084 -g1,3719:20077447,24587084 -g1,3719:20959561,24587084 -k1,3720:32583029,24587084:9800256 -g1,3720:32583029,24587084 -) -(1,3722:6630773,25428572:25952256,513147,134348 -h1,3721:6630773,25428572:983040,0,0 -k1,3721:10834870,25428572:431189 -(1,3721:10834870,25428572:0,452978,115847 -r1,3785:13303407,25428572:2468537,568825,115847 -k1,3721:10834870,25428572:-2468537 -) -(1,3721:10834870,25428572:2468537,452978,115847 -k1,3721:10834870,25428572:3277 -h1,3721:13300130,25428572:0,411205,112570 -) -k1,3721:13734596,25428572:431189 -k1,3721:14697282,25428572:431189 -k1,3721:16641698,25428572:431190 -k1,3721:17724315,25428572:431189 -k1,3721:19971507,25428572:431189 -k1,3721:21421781,25428572:431189 -k1,3721:23408139,25428572:431189 -k1,3721:24498620,25428572:431189 -k1,3721:25700513,25428572:431190 -k1,3721:28264899,25428572:431189 -k1,3721:29887533,25428572:431189 -k1,3722:32583029,25428572:0 -) -(1,3722:6630773,26270060:25952256,513147,134348 -(1,3721:6630773,26270060:0,452978,115847 -r1,3785:10154445,26270060:3523672,568825,115847 -k1,3721:6630773,26270060:-3523672 -) -(1,3721:6630773,26270060:3523672,452978,115847 -k1,3721:6630773,26270060:3277 -h1,3721:10151168,26270060:0,411205,112570 -) -k1,3721:10405024,26270060:250579 -k1,3721:11187101,26270060:250580 -k1,3721:12950906,26270060:250579 -k1,3721:13852913,26270060:250579 -k1,3721:15294937,26270060:250579 -k1,3721:16011478,26270060:250580 -k1,3721:17032760,26270060:250579 -k1,3721:19242865,26270060:250579 -k1,3721:21960219,26270060:250579 -k1,3721:22862227,26270060:250580 -k1,3721:23468666,26270060:250579 -k1,3721:26116552,26270060:250579 -k1,3721:27922300,26270060:250579 -k1,3721:28855765,26270060:250580 -k1,3721:30172615,26270060:250579 -k1,3722:32583029,26270060:0 -) -(1,3722:6630773,27111548:25952256,505283,134348 -g1,3721:7820251,27111548 -g1,3721:10703835,27111548 -g1,3721:13309546,27111548 -g1,3721:14160203,27111548 -g1,3721:15107198,27111548 -g1,3721:16760016,27111548 -k1,3722:32583029,27111548:12352226 -g1,3722:32583029,27111548 -) -v1,3724:6630773,28092298:0,393216,0 -(1,3744:6630773,33667996:25952256,5968914,196608 -g1,3744:6630773,33667996 -g1,3744:6630773,33667996 -g1,3744:6434165,33667996 -(1,3744:6434165,33667996:0,5968914,196608 -r1,3785:32779637,33667996:26345472,6165522,196608 -k1,3744:6434165,33667996:-26345472 -) -(1,3744:6434165,33667996:26345472,5968914,196608 -[1,3744:6630773,33667996:25952256,5772306,0 -(1,3726:6630773,28284187:25952256,388497,9436 -(1,3725:6630773,28284187:0,0,0 -g1,3725:6630773,28284187 -g1,3725:6630773,28284187 -g1,3725:6303093,28284187 -(1,3725:6303093,28284187:0,0,0 -) -g1,3725:6630773,28284187 -) -g1,3726:8211502,28284187 -g1,3726:9159940,28284187 -h1,3726:10108378,28284187:0,0,0 -k1,3726:32583030,28284187:22474652 -g1,3726:32583030,28284187 -) -(1,3727:6630773,28950365:25952256,404226,76021 -h1,3727:6630773,28950365:0,0,0 -k1,3727:6630773,28950365:0 -h1,3727:10108375,28950365:0,0,0 -k1,3727:32583029,28950365:22474654 -g1,3727:32583029,28950365 -) -(1,3731:6630773,29616543:25952256,404226,107478 -(1,3729:6630773,29616543:0,0,0 -g1,3729:6630773,29616543 -g1,3729:6630773,29616543 -g1,3729:6303093,29616543 -(1,3729:6303093,29616543:0,0,0 -) -g1,3729:6630773,29616543 -) -g1,3731:7579210,29616543 -g1,3731:8843793,29616543 -h1,3731:11689104,29616543:0,0,0 -k1,3731:32583028,29616543:20893924 -g1,3731:32583028,29616543 -) -(1,3733:6630773,30938081:25952256,404226,82312 -(1,3732:6630773,30938081:0,0,0 -g1,3732:6630773,30938081 -g1,3732:6630773,30938081 -g1,3732:6303093,30938081 -(1,3732:6303093,30938081:0,0,0 -) -g1,3732:6630773,30938081 -) -k1,3733:6630773,30938081:0 -g1,3733:11372958,30938081 -h1,3733:15166706,30938081:0,0,0 -k1,3733:32583030,30938081:17416324 -g1,3733:32583030,30938081 -) -(1,3737:6630773,31604259:25952256,404226,76021 -(1,3735:6630773,31604259:0,0,0 -g1,3735:6630773,31604259 -g1,3735:6630773,31604259 -g1,3735:6303093,31604259 -(1,3735:6303093,31604259:0,0,0 -) -g1,3735:6630773,31604259 -) -g1,3737:7579210,31604259 -g1,3737:8843793,31604259 -h1,3737:10424521,31604259:0,0,0 -k1,3737:32583029,31604259:22158508 -g1,3737:32583029,31604259 -) -(1,3739:6630773,32925797:25952256,404226,82312 -(1,3738:6630773,32925797:0,0,0 -g1,3738:6630773,32925797 -g1,3738:6630773,32925797 -g1,3738:6303093,32925797 -(1,3738:6303093,32925797:0,0,0 -) -g1,3738:6630773,32925797 -) -k1,3739:6630773,32925797:0 -g1,3739:11372958,32925797 -h1,3739:14534415,32925797:0,0,0 -k1,3739:32583029,32925797:18048614 -g1,3739:32583029,32925797 -) -(1,3743:6630773,33591975:25952256,404226,76021 -(1,3741:6630773,33591975:0,0,0 -g1,3741:6630773,33591975 -g1,3741:6630773,33591975 -g1,3741:6303093,33591975 -(1,3741:6303093,33591975:0,0,0 -) -g1,3741:6630773,33591975 -) -g1,3743:7579210,33591975 -g1,3743:8843793,33591975 -h1,3743:10424521,33591975:0,0,0 -k1,3743:32583029,33591975:22158508 -g1,3743:32583029,33591975 -) -] -) -g1,3744:32583029,33667996 -g1,3744:6630773,33667996 -g1,3744:6630773,33667996 -g1,3744:32583029,33667996 -g1,3744:32583029,33667996 -) -h1,3744:6630773,33864604:0,0,0 -(1,3748:6630773,35020664:25952256,505283,134348 -h1,3747:6630773,35020664:983040,0,0 -k1,3747:10906632,35020664:172650 -k1,3747:12473232,35020664:172649 -k1,3747:14714198,35020664:172650 -k1,3747:17365420,35020664:172650 -k1,3747:18932020,35020664:172649 -(1,3747:18932020,35020664:0,452978,115847 -r1,3785:19993709,35020664:1061689,568825,115847 -k1,3747:18932020,35020664:-1061689 -) -(1,3747:18932020,35020664:1061689,452978,115847 -k1,3747:18932020,35020664:3277 -h1,3747:19990432,35020664:0,411205,112570 -) -k1,3747:20166359,35020664:172650 -k1,3747:21330569,35020664:172650 -k1,3747:23024964,35020664:172649 -k1,3747:26198508,35020664:172650 -k1,3747:26727018,35020664:172650 -k1,3747:28969294,35020664:172649 -k1,3747:30995958,35020664:172650 -(1,3747:30995958,35020664:0,414482,115847 -r1,3785:32409359,35020664:1413401,530329,115847 -k1,3747:30995958,35020664:-1413401 -) -(1,3747:30995958,35020664:1413401,414482,115847 -k1,3747:30995958,35020664:3277 -h1,3747:32406082,35020664:0,411205,112570 -) -k1,3748:32583029,35020664:0 -) -(1,3748:6630773,35862152:25952256,414482,115847 -(1,3747:6630773,35862152:0,414482,115847 -r1,3785:8395886,35862152:1765113,530329,115847 -k1,3747:6630773,35862152:-1765113 -) -(1,3747:6630773,35862152:1765113,414482,115847 -k1,3747:6630773,35862152:3277 -h1,3747:8392609,35862152:0,411205,112570 -) -g1,3747:8595115,35862152 -g1,3747:9477229,35862152 -(1,3747:9477229,35862152:0,414482,115847 -r1,3785:10187207,35862152:709978,530329,115847 -k1,3747:9477229,35862152:-709978 -) -(1,3747:9477229,35862152:709978,414482,115847 -k1,3747:9477229,35862152:3277 -h1,3747:10183930,35862152:0,411205,112570 -) -g1,3747:10560106,35862152 -g1,3747:10560106,35862152 -g1,3747:10759335,35862152 -g1,3747:10759335,35862152 -k1,3748:32583029,35862152:21823694 -g1,3748:32583029,35862152 -) -v1,3750:6630773,36842902:0,393216,0 -(1,3781:6630773,45510161:25952256,9060475,196608 -g1,3781:6630773,45510161 -g1,3781:6630773,45510161 -g1,3781:6434165,45510161 -(1,3781:6434165,45510161:0,9060475,196608 -r1,3785:32779637,45510161:26345472,9257083,196608 -k1,3781:6434165,45510161:-26345472 -) -(1,3781:6434165,45510161:26345472,9060475,196608 -[1,3781:6630773,45510161:25952256,8863867,0 -(1,3752:6630773,37056812:25952256,410518,107478 -(1,3751:6630773,37056812:0,0,0 -g1,3751:6630773,37056812 -g1,3751:6630773,37056812 -g1,3751:6303093,37056812 -(1,3751:6303093,37056812:0,0,0 -) -g1,3751:6630773,37056812 -) -k1,3752:6630773,37056812:0 -g1,3752:12005250,37056812 -g1,3752:12637542,37056812 -g1,3752:13585979,37056812 -g1,3752:17379727,37056812 -g1,3752:18328164,37056812 -g1,3752:20857330,37056812 -g1,3752:21805767,37056812 -k1,3752:21805767,37056812:1573 -h1,3752:23704214,37056812:0,0,0 -k1,3752:32583029,37056812:8878815 -g1,3752:32583029,37056812 -) -(1,3756:6630773,37696355:25952256,404226,76021 -(1,3754:6630773,37696355:0,0,0 -g1,3754:6630773,37696355 -g1,3754:6630773,37696355 -g1,3754:6303093,37696355 -(1,3754:6303093,37696355:0,0,0 -) -g1,3754:6630773,37696355 -) -g1,3756:7579210,37696355 -g1,3756:8843793,37696355 -h1,3756:10108376,37696355:0,0,0 -k1,3756:32583028,37696355:22474652 -g1,3756:32583028,37696355 -) -(1,3758:6630773,38991258:25952256,404226,76021 -(1,3757:6630773,38991258:0,0,0 -g1,3757:6630773,38991258 -g1,3757:6630773,38991258 -g1,3757:6303093,38991258 -(1,3757:6303093,38991258:0,0,0 -) -g1,3757:6630773,38991258 -) -k1,3758:6630773,38991258:0 -h1,3758:11372958,38991258:0,0,0 -k1,3758:32583030,38991258:21210072 -g1,3758:32583030,38991258 -) -(1,3762:6630773,39630801:25952256,404226,76021 -(1,3760:6630773,39630801:0,0,0 -g1,3760:6630773,39630801 -g1,3760:6630773,39630801 -g1,3760:6303093,39630801 -(1,3760:6303093,39630801:0,0,0 -) -g1,3760:6630773,39630801 -) -g1,3762:7579210,39630801 -g1,3762:8843793,39630801 -h1,3762:10424521,39630801:0,0,0 -k1,3762:32583029,39630801:22158508 -g1,3762:32583029,39630801 -) -(1,3764:6630773,40925704:25952256,404226,107478 -(1,3763:6630773,40925704:0,0,0 -g1,3763:6630773,40925704 -g1,3763:6630773,40925704 -g1,3763:6303093,40925704 -(1,3763:6303093,40925704:0,0,0 -) -g1,3763:6630773,40925704 -) -k1,3764:6630773,40925704:0 -h1,3764:11689104,40925704:0,0,0 -k1,3764:32583028,40925704:20893924 -g1,3764:32583028,40925704 -) -(1,3768:6630773,41565248:25952256,404226,76021 -(1,3766:6630773,41565248:0,0,0 -g1,3766:6630773,41565248 -g1,3766:6630773,41565248 -g1,3766:6303093,41565248 -(1,3766:6303093,41565248:0,0,0 -) -g1,3766:6630773,41565248 -) -g1,3768:7579210,41565248 -g1,3768:8843793,41565248 -h1,3768:10108376,41565248:0,0,0 -k1,3768:32583028,41565248:22474652 -g1,3768:32583028,41565248 -) -(1,3770:6630773,42860151:25952256,404226,107478 -(1,3769:6630773,42860151:0,0,0 -g1,3769:6630773,42860151 -g1,3769:6630773,42860151 -g1,3769:6303093,42860151 -(1,3769:6303093,42860151:0,0,0 -) -g1,3769:6630773,42860151 -) -k1,3770:6630773,42860151:0 -h1,3770:11689104,42860151:0,0,0 -k1,3770:32583028,42860151:20893924 -g1,3770:32583028,42860151 -) -(1,3774:6630773,43499694:25952256,404226,76021 -(1,3772:6630773,43499694:0,0,0 -g1,3772:6630773,43499694 -g1,3772:6630773,43499694 -g1,3772:6303093,43499694 -(1,3772:6303093,43499694:0,0,0 -) -g1,3772:6630773,43499694 -) -g1,3774:7579210,43499694 -g1,3774:8843793,43499694 -h1,3774:10424521,43499694:0,0,0 -k1,3774:32583029,43499694:22158508 -g1,3774:32583029,43499694 -) -(1,3776:6630773,44794597:25952256,404226,76021 -(1,3775:6630773,44794597:0,0,0 -g1,3775:6630773,44794597 -g1,3775:6630773,44794597 -g1,3775:6303093,44794597 -(1,3775:6303093,44794597:0,0,0 -) -g1,3775:6630773,44794597 -) -k1,3776:6630773,44794597:0 -h1,3776:12321395,44794597:0,0,0 -k1,3776:32583029,44794597:20261634 -g1,3776:32583029,44794597 -) -(1,3780:6630773,45434140:25952256,404226,76021 -(1,3778:6630773,45434140:0,0,0 -g1,3778:6630773,45434140 -g1,3778:6630773,45434140 -g1,3778:6303093,45434140 -(1,3778:6303093,45434140:0,0,0 -) -g1,3778:6630773,45434140 -) -g1,3780:7579210,45434140 -g1,3780:8843793,45434140 -h1,3780:10424521,45434140:0,0,0 -k1,3780:32583029,45434140:22158508 -g1,3780:32583029,45434140 -) -] -) -g1,3781:32583029,45510161 -g1,3781:6630773,45510161 -g1,3781:6630773,45510161 -g1,3781:32583029,45510161 -g1,3781:32583029,45510161 -) -h1,3781:6630773,45706769:0,0,0 -] -(1,3785:32583029,45706769:0,0,0 -g1,3785:32583029,45706769 -) -) -] -(1,3785:6630773,47279633:25952256,0,0 -h1,3785:6630773,47279633:25952256,0,0 -) -] -(1,3785:4262630,4025873:0,0,0 -[1,3785:-473656,4025873:0,0,0 -(1,3785:-473656,-710413:0,0,0 -(1,3785:-473656,-710413:0,0,0 -g1,3785:-473656,-710413 -) -g1,3785:-473656,-710413 -) -] -) -] -!24121 -}75 -Input:660:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:661:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:662:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:663:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:664:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!476 -{76 -[1,3888:4262630,47279633:28320399,43253760,0 -(1,3888:4262630,4025873:0,0,0 -[1,3888:-473656,4025873:0,0,0 -(1,3888:-473656,-710413:0,0,0 -(1,3888:-473656,-644877:0,0,0 -k1,3888:-473656,-644877:-65536 -) -(1,3888:-473656,4736287:0,0,0 -k1,3888:-473656,4736287:5209943 -) -g1,3888:-473656,-710413 -) -] -) -[1,3888:6630773,47279633:25952256,43253760,0 -[1,3888:6630773,4812305:25952256,786432,0 -(1,3888:6630773,4812305:25952256,513147,134348 -(1,3888:6630773,4812305:25952256,513147,134348 -g1,3888:3078558,4812305 -[1,3888:3078558,4812305:0,0,0 -(1,3888:3078558,2439708:0,1703936,0 -k1,3888:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,3888:2537886,2439708:1179648,16384,0 -) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,3888:3078558,1915420:16384,1179648,0 -) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 -) -] -) -) -) -] -[1,3888:3078558,4812305:0,0,0 -(1,3888:3078558,2439708:0,1703936,0 -g1,3888:29030814,2439708 -g1,3888:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,3888:36151628,1915420:16384,1179648,0 -) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 -) -] -) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,3888:37855564,2439708:1179648,16384,0 -) -) -k1,3888:3078556,2439708:-34777008 -) -] -[1,3888:3078558,4812305:0,0,0 -(1,3888:3078558,49800853:0,16384,2228224 -k1,3888:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,3888:2537886,49800853:1179648,16384,0 -) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,3888:3078558,51504789:16384,1179648,0 -) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 -) -] -) -) -) -] -[1,3888:3078558,4812305:0,0,0 -(1,3888:3078558,49800853:0,16384,2228224 -g1,3888:29030814,49800853 -g1,3888:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,3888:36151628,51504789:16384,1179648,0 -) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 -) -] -) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,3888:37855564,49800853:1179648,16384,0 -) -) -k1,3888:3078556,49800853:-34777008 -) -] -g1,3888:6630773,4812305 -g1,3888:6630773,4812305 -g1,3888:8017514,4812305 -g1,3888:10287681,4812305 -g1,3888:11697360,4812305 -g1,3888:13727665,4812305 -g1,3888:14542932,4812305 -g1,3888:16904194,4812305 -k1,3888:31786111,4812305:14881917 -) -) -] -[1,3888:6630773,45706769:25952256,40108032,0 -(1,3888:6630773,45706769:25952256,40108032,0 -(1,3888:6630773,45706769:0,0,0 -g1,3888:6630773,45706769 -) -[1,3888:6630773,45706769:25952256,40108032,0 -v1,3785:6630773,6254097:0,393216,0 -(1,3881:6630773,40709074:25952256,34848193,0 -g1,3881:6630773,40709074 -g1,3881:6303093,40709074 -r1,3888:6401397,40709074:98304,34848193,0 -g1,3881:6600626,40709074 -g1,3881:6797234,40709074 -[1,3881:6797234,40709074:25785795,34848193,0 -(1,3786:6797234,6616170:25785795,755289,196608 -(1,3785:6797234,6616170:0,755289,196608 -r1,3888:8134168,6616170:1336934,951897,196608 -k1,3785:6797234,6616170:-1336934 -) -(1,3785:6797234,6616170:1336934,755289,196608 -) -k1,3785:8273385,6616170:139217 -k1,3785:8601065,6616170:327680 -k1,3785:9936970,6616170:139218 -k1,3785:11799784,6616170:139217 -k1,3785:12598293,6616170:139217 -k1,3785:13508213,6616170:139217 -k1,3785:15606957,6616170:139218 -k1,3785:16277671,6616170:139217 -k1,3785:16772748,6616170:139217 -k1,3785:20983062,6616170:139218 -k1,3785:24074021,6616170:139217 -k1,3785:25404683,6616170:139217 -k1,3785:27796372,6616170:139217 -k1,3785:28587018,6616170:139218 -k1,3785:30470148,6616170:139217 -k1,3785:32583029,6616170:0 -) -(1,3786:6797234,7457658:25785795,513147,134348 -k1,3785:9477951,7457658:299139 -k1,3785:10463253,7457658:299140 -k1,3785:12084253,7457658:299139 -k1,3785:13042684,7457658:299139 -k1,3785:14360909,7457658:299140 -k1,3785:15074791,7457658:299039 -k1,3785:18389897,7457658:299139 -k1,3785:19316871,7457658:299139 -k1,3785:22910506,7457658:299140 -k1,3785:25971988,7457658:299139 -k1,3785:26685870,7457658:299039 -k1,3785:29274837,7457658:299139 -k1,3785:30233269,7457658:299140 -k1,3785:30888268,7457658:299139 -k1,3785:32583029,7457658:0 -) -(1,3786:6797234,8299146:25785795,513147,134348 -k1,3785:8956589,8299146:203105 -k1,3785:10653259,8299146:203104 -k1,3785:11542526,8299146:203105 -(1,3785:11542526,8299146:0,452978,115847 -r1,3888:14011063,8299146:2468537,568825,115847 -k1,3785:11542526,8299146:-2468537 -) -(1,3785:11542526,8299146:2468537,452978,115847 -k1,3785:11542526,8299146:3277 -h1,3785:14007786,8299146:0,411205,112570 -) -k1,3785:14387838,8299146:203105 -k1,3785:15695224,8299146:203104 -k1,3785:18034803,8299146:203105 -k1,3785:18889336,8299146:203105 -k1,3785:21854783,8299146:203104 -(1,3785:21854783,8299146:0,452978,115847 -r1,3888:23619896,8299146:1765113,568825,115847 -k1,3785:21854783,8299146:-1765113 -) -(1,3785:21854783,8299146:1765113,452978,115847 -k1,3785:21854783,8299146:3277 -h1,3785:23616619,8299146:0,411205,112570 -) -k1,3785:24674314,8299146:203105 -k1,3785:27232128,8299146:203105 -k1,3785:28626677,8299146:203104 -k1,3785:29848867,8299146:203105 -k1,3785:32583029,8299146:0 -) -(1,3786:6797234,9140634:25785795,513147,134348 -k1,3785:7603272,9140634:146746 -k1,3785:10534643,9140634:146746 -k1,3785:11672949,9140634:146746 -k1,3785:14949039,9140634:146746 -k1,3785:15711823,9140634:146746 -k1,3785:18137255,9140634:146745 -h1,3785:19107843,9140634:0,0,0 -k1,3785:19254589,9140634:146746 -k1,3785:20210705,9140634:146746 -k1,3785:21855604,9140634:146746 -h1,3785:23050981,9140634:0,0,0 -k1,3785:23371397,9140634:146746 -k1,3785:26198566,9140634:146746 -k1,3785:27739263,9140634:146746 -k1,3785:32583029,9140634:0 -) -(1,3786:6797234,9982122:25785795,473825,134348 -k1,3786:32583030,9982122:21259880 -g1,3786:32583030,9982122 -) -v1,3788:6797234,11172588:0,393216,0 -(1,3879:6797234,39988178:25785795,29208806,196608 -g1,3879:6797234,39988178 -g1,3879:6797234,39988178 -g1,3879:6600626,39988178 -(1,3879:6600626,39988178:0,29208806,196608 -r1,3888:32779637,39988178:26179011,29405414,196608 -k1,3879:6600625,39988178:-26179012 -) -(1,3879:6600626,39988178:26179011,29208806,196608 -[1,3879:6797234,39988178:25785795,29012198,0 -(1,3790:6797234,11386498:25785795,410518,107478 -(1,3789:6797234,11386498:0,0,0 -g1,3789:6797234,11386498 -g1,3789:6797234,11386498 -g1,3789:6469554,11386498 -(1,3789:6469554,11386498:0,0,0 -) -g1,3789:6797234,11386498 -) -k1,3790:6797234,11386498:0 -g1,3790:9958693,11386498 -g1,3790:10907131,11386498 -g1,3790:12171714,11386498 -g1,3790:12804006,11386498 -g1,3790:13752443,11386498 -g1,3790:17546191,11386498 -g1,3790:18494628,11386498 -g1,3790:21023794,11386498 -g1,3790:21972231,11386498 -k1,3790:21972231,11386498:1573 -h1,3790:23870678,11386498:0,0,0 -k1,3790:32583029,11386498:8712351 -g1,3790:32583029,11386498 -) -(1,3794:6797234,12052676:25785795,404226,76021 -(1,3792:6797234,12052676:0,0,0 -g1,3792:6797234,12052676 -g1,3792:6797234,12052676 -g1,3792:6469554,12052676 -(1,3792:6469554,12052676:0,0,0 -) -g1,3792:6797234,12052676 -) -g1,3794:7745671,12052676 -g1,3794:9010254,12052676 -h1,3794:11855565,12052676:0,0,0 -k1,3794:32583029,12052676:20727464 -g1,3794:32583029,12052676 -) -(1,3796:6797234,13374214:25785795,410518,101187 -(1,3795:6797234,13374214:0,0,0 -g1,3795:6797234,13374214 -g1,3795:6797234,13374214 -g1,3795:6469554,13374214 -(1,3795:6469554,13374214:0,0,0 -) -g1,3795:6797234,13374214 -) -k1,3796:6797234,13374214:0 -g1,3796:10590984,13374214 -g1,3796:11539422,13374214 -h1,3796:12487859,13374214:0,0,0 -k1,3796:32583029,13374214:20095170 -g1,3796:32583029,13374214 -) -(1,3800:6797234,14040392:25785795,404226,76021 -(1,3798:6797234,14040392:0,0,0 -g1,3798:6797234,14040392 -g1,3798:6797234,14040392 -g1,3798:6469554,14040392 -(1,3798:6469554,14040392:0,0,0 -) -g1,3798:6797234,14040392 -) -g1,3800:7745671,14040392 -g1,3800:9010254,14040392 -h1,3800:11539419,14040392:0,0,0 -k1,3800:32583029,14040392:21043610 -g1,3800:32583029,14040392 -) -(1,3802:6797234,15361930:25785795,404226,82312 -(1,3801:6797234,15361930:0,0,0 -g1,3801:6797234,15361930 -g1,3801:6797234,15361930 -g1,3801:6469554,15361930 -(1,3801:6469554,15361930:0,0,0 -) -g1,3801:6797234,15361930 -) -k1,3802:6797234,15361930:0 -g1,3802:10274838,15361930 -g1,3802:11223276,15361930 -h1,3802:12171713,15361930:0,0,0 -k1,3802:32583029,15361930:20411316 -g1,3802:32583029,15361930 -) -(1,3806:6797234,16028108:25785795,404226,76021 -(1,3804:6797234,16028108:0,0,0 -g1,3804:6797234,16028108 -g1,3804:6797234,16028108 -g1,3804:6469554,16028108 -(1,3804:6469554,16028108:0,0,0 -) -g1,3804:6797234,16028108 -) -g1,3806:7745671,16028108 -g1,3806:9010254,16028108 -h1,3806:11855565,16028108:0,0,0 -k1,3806:32583029,16028108:20727464 -g1,3806:32583029,16028108 -) -(1,3808:6797234,17349646:25785795,410518,107478 -(1,3807:6797234,17349646:0,0,0 -g1,3807:6797234,17349646 -g1,3807:6797234,17349646 -g1,3807:6469554,17349646 -(1,3807:6469554,17349646:0,0,0 -) -g1,3807:6797234,17349646 -) -k1,3808:6797234,17349646:0 -g1,3808:10274838,17349646 -g1,3808:11539421,17349646 -g1,3808:13120149,17349646 -g1,3808:13752441,17349646 -g1,3808:14700878,17349646 -g1,3808:18494626,17349646 -g1,3808:19443063,17349646 -g1,3808:21972229,17349646 -g1,3808:22920666,17349646 -k1,3808:22920666,17349646:1573 -h1,3808:24819113,17349646:0,0,0 -k1,3808:32583029,17349646:7763916 -g1,3808:32583029,17349646 -) -(1,3812:6797234,18015824:25785795,404226,76021 -(1,3810:6797234,18015824:0,0,0 -g1,3810:6797234,18015824 -g1,3810:6797234,18015824 -g1,3810:6469554,18015824 -(1,3810:6469554,18015824:0,0,0 -) -g1,3810:6797234,18015824 -) -g1,3812:7745671,18015824 -g1,3812:9010254,18015824 -h1,3812:11855565,18015824:0,0,0 -k1,3812:32583029,18015824:20727464 -g1,3812:32583029,18015824 -) -(1,3814:6797234,19337362:25785795,410518,101187 -(1,3813:6797234,19337362:0,0,0 -g1,3813:6797234,19337362 -g1,3813:6797234,19337362 -g1,3813:6469554,19337362 -(1,3813:6469554,19337362:0,0,0 -) -g1,3813:6797234,19337362 -) -k1,3814:6797234,19337362:0 -g1,3814:10907129,19337362 -g1,3814:12171712,19337362 -h1,3814:13436294,19337362:0,0,0 -k1,3814:32583030,19337362:19146736 -g1,3814:32583030,19337362 -) -(1,3818:6797234,20003540:25785795,404226,107478 -(1,3816:6797234,20003540:0,0,0 -g1,3816:6797234,20003540 -g1,3816:6797234,20003540 -g1,3816:6469554,20003540 -(1,3816:6469554,20003540:0,0,0 -) -g1,3816:6797234,20003540 -) -g1,3818:7745671,20003540 -g1,3818:9010254,20003540 -h1,3818:11855565,20003540:0,0,0 -k1,3818:32583029,20003540:20727464 -g1,3818:32583029,20003540 -) -(1,3820:6797234,21325078:25785795,404226,82312 -(1,3819:6797234,21325078:0,0,0 -g1,3819:6797234,21325078 -g1,3819:6797234,21325078 -g1,3819:6469554,21325078 -(1,3819:6469554,21325078:0,0,0 -) -g1,3819:6797234,21325078 -) -k1,3820:6797234,21325078:0 -g1,3820:10590983,21325078 -g1,3820:11855566,21325078 -h1,3820:13120148,21325078:0,0,0 -k1,3820:32583028,21325078:19462880 -g1,3820:32583028,21325078 -) -(1,3824:6797234,21991256:25785795,404226,107478 -(1,3822:6797234,21991256:0,0,0 -g1,3822:6797234,21991256 -g1,3822:6797234,21991256 -g1,3822:6469554,21991256 -(1,3822:6469554,21991256:0,0,0 -) -g1,3822:6797234,21991256 -) -g1,3824:7745671,21991256 -g1,3824:9010254,21991256 -h1,3824:11855565,21991256:0,0,0 -k1,3824:32583029,21991256:20727464 -g1,3824:32583029,21991256 -) -(1,3826:6797234,23312794:25785795,410518,107478 -(1,3825:6797234,23312794:0,0,0 -g1,3825:6797234,23312794 -g1,3825:6797234,23312794 -g1,3825:6469554,23312794 -(1,3825:6469554,23312794:0,0,0 -) -g1,3825:6797234,23312794 -) -k1,3826:6797234,23312794:0 -g1,3826:12804004,23312794 -g1,3826:14384733,23312794 -g1,3826:16597753,23312794 -g1,3826:17230045,23312794 -g1,3826:18178482,23312794 -g1,3826:21972230,23312794 -g1,3826:22920667,23312794 -g1,3826:25449833,23312794 -g1,3826:26398270,23312794 -k1,3826:26398270,23312794:1573 -h1,3826:28296717,23312794:0,0,0 -k1,3826:32583029,23312794:4286312 -g1,3826:32583029,23312794 -) -(1,3830:6797234,23978972:25785795,404226,76021 -(1,3828:6797234,23978972:0,0,0 -g1,3828:6797234,23978972 -g1,3828:6797234,23978972 -g1,3828:6469554,23978972 -(1,3828:6469554,23978972:0,0,0 -) -g1,3828:6797234,23978972 -) -g1,3830:7745671,23978972 -g1,3830:9010254,23978972 -h1,3830:11855565,23978972:0,0,0 -k1,3830:32583029,23978972:20727464 -g1,3830:32583029,23978972 -) -(1,3832:6797234,25300510:25785795,410518,101187 -(1,3831:6797234,25300510:0,0,0 -g1,3831:6797234,25300510 -g1,3831:6797234,25300510 -g1,3831:6469554,25300510 -(1,3831:6469554,25300510:0,0,0 -) -g1,3831:6797234,25300510 -) -k1,3832:6797234,25300510:0 -g1,3832:13436295,25300510 -g1,3832:15017024,25300510 -h1,3832:16913898,25300510:0,0,0 -k1,3832:32583029,25300510:15669131 -g1,3832:32583029,25300510 -) -(1,3836:6797234,25966688:25785795,404226,107478 -(1,3834:6797234,25966688:0,0,0 -g1,3834:6797234,25966688 -g1,3834:6797234,25966688 -g1,3834:6469554,25966688 -(1,3834:6469554,25966688:0,0,0 -) -g1,3834:6797234,25966688 -) -g1,3836:7745671,25966688 -g1,3836:9010254,25966688 -h1,3836:11855565,25966688:0,0,0 -k1,3836:32583029,25966688:20727464 -g1,3836:32583029,25966688 -) -(1,3838:6797234,27288226:25785795,410518,82312 -(1,3837:6797234,27288226:0,0,0 -g1,3837:6797234,27288226 -g1,3837:6797234,27288226 -g1,3837:6469554,27288226 -(1,3837:6469554,27288226:0,0,0 -) -g1,3837:6797234,27288226 -) -k1,3838:6797234,27288226:0 -g1,3838:13120149,27288226 -g1,3838:14700878,27288226 -h1,3838:16597752,27288226:0,0,0 -k1,3838:32583029,27288226:15985277 -g1,3838:32583029,27288226 -) -(1,3842:6797234,27954404:25785795,410518,76021 -(1,3840:6797234,27954404:0,0,0 -g1,3840:6797234,27954404 -g1,3840:6797234,27954404 -g1,3840:6469554,27954404 -(1,3840:6469554,27954404:0,0,0 -) -g1,3840:6797234,27954404 -) -g1,3842:7745671,27954404 -g1,3842:9010254,27954404 -h1,3842:11539419,27954404:0,0,0 -k1,3842:32583029,27954404:21043610 -g1,3842:32583029,27954404 -) -(1,3844:6797234,29275942:25785795,404226,82312 -(1,3843:6797234,29275942:0,0,0 -g1,3843:6797234,29275942 -g1,3843:6797234,29275942 -g1,3843:6469554,29275942 -(1,3843:6469554,29275942:0,0,0 -) -g1,3843:6797234,29275942 -) -k1,3844:6797234,29275942:0 -g1,3844:10590984,29275942 -g1,3844:12171713,29275942 -h1,3844:13752441,29275942:0,0,0 -k1,3844:32583029,29275942:18830588 -g1,3844:32583029,29275942 -) -(1,3848:6797234,29942120:25785795,404226,76021 -(1,3846:6797234,29942120:0,0,0 -g1,3846:6797234,29942120 -g1,3846:6797234,29942120 -g1,3846:6469554,29942120 -(1,3846:6469554,29942120:0,0,0 -) -g1,3846:6797234,29942120 -) -g1,3848:7745671,29942120 -g1,3848:9010254,29942120 -h1,3848:12487856,29942120:0,0,0 -k1,3848:32583028,29942120:20095172 -g1,3848:32583028,29942120 -) -(1,3850:6797234,31263658:25785795,410518,101187 -(1,3849:6797234,31263658:0,0,0 -g1,3849:6797234,31263658 -g1,3849:6797234,31263658 -g1,3849:6469554,31263658 -(1,3849:6469554,31263658:0,0,0 -) -g1,3849:6797234,31263658 -) -k1,3850:6797234,31263658:0 -g1,3850:11223275,31263658 -g1,3850:12804004,31263658 -h1,3850:14384732,31263658:0,0,0 -k1,3850:32583028,31263658:18198296 -g1,3850:32583028,31263658 -) -(1,3854:6797234,31929836:25785795,404226,76021 -(1,3852:6797234,31929836:0,0,0 -g1,3852:6797234,31929836 -g1,3852:6797234,31929836 -g1,3852:6469554,31929836 -(1,3852:6469554,31929836:0,0,0 -) -g1,3852:6797234,31929836 -) -g1,3854:7745671,31929836 -g1,3854:9010254,31929836 -h1,3854:12487856,31929836:0,0,0 -k1,3854:32583028,31929836:20095172 -g1,3854:32583028,31929836 -) -(1,3856:6797234,33251374:25785795,404226,82312 -(1,3855:6797234,33251374:0,0,0 -g1,3855:6797234,33251374 -g1,3855:6797234,33251374 -g1,3855:6469554,33251374 -(1,3855:6469554,33251374:0,0,0 -) -g1,3855:6797234,33251374 -) -k1,3856:6797234,33251374:0 -g1,3856:10907129,33251374 -g1,3856:12487858,33251374 -h1,3856:14068586,33251374:0,0,0 -k1,3856:32583030,33251374:18514444 -g1,3856:32583030,33251374 -) -(1,3860:6797234,33917552:25785795,404226,76021 -(1,3858:6797234,33917552:0,0,0 -g1,3858:6797234,33917552 -g1,3858:6797234,33917552 -g1,3858:6469554,33917552 -(1,3858:6469554,33917552:0,0,0 -) -g1,3858:6797234,33917552 -) -g1,3860:7745671,33917552 -g1,3860:9010254,33917552 -h1,3860:12487856,33917552:0,0,0 -k1,3860:32583028,33917552:20095172 -g1,3860:32583028,33917552 -) -(1,3862:6797234,35239090:25785795,404226,82312 -(1,3861:6797234,35239090:0,0,0 -g1,3861:6797234,35239090 -g1,3861:6797234,35239090 -g1,3861:6469554,35239090 -(1,3861:6469554,35239090:0,0,0 -) -g1,3861:6797234,35239090 -) -k1,3862:6797234,35239090:0 -g1,3862:10907130,35239090 -h1,3862:13120149,35239090:0,0,0 -k1,3862:32583029,35239090:19462880 -g1,3862:32583029,35239090 -) -(1,3866:6797234,35905268:25785795,404226,107478 -(1,3864:6797234,35905268:0,0,0 -g1,3864:6797234,35905268 -g1,3864:6797234,35905268 -g1,3864:6469554,35905268 -(1,3864:6469554,35905268:0,0,0 -) -g1,3864:6797234,35905268 -) -g1,3866:7745671,35905268 -g1,3866:9010254,35905268 -h1,3866:11855565,35905268:0,0,0 -k1,3866:32583029,35905268:20727464 -g1,3866:32583029,35905268 -) -(1,3868:6797234,37226806:25785795,410518,101187 -(1,3867:6797234,37226806:0,0,0 -g1,3867:6797234,37226806 -g1,3867:6797234,37226806 -g1,3867:6469554,37226806 -(1,3867:6469554,37226806:0,0,0 -) -g1,3867:6797234,37226806 -) -k1,3868:6797234,37226806:0 -g1,3868:11539421,37226806 -h1,3868:13752440,37226806:0,0,0 -k1,3868:32583028,37226806:18830588 -g1,3868:32583028,37226806 -) -(1,3872:6797234,37892984:25785795,404226,107478 -(1,3870:6797234,37892984:0,0,0 -g1,3870:6797234,37892984 -g1,3870:6797234,37892984 -g1,3870:6469554,37892984 -(1,3870:6469554,37892984:0,0,0 -) -g1,3870:6797234,37892984 -) -g1,3872:7745671,37892984 -g1,3872:9010254,37892984 -h1,3872:11855565,37892984:0,0,0 -k1,3872:32583029,37892984:20727464 -g1,3872:32583029,37892984 -) -(1,3874:6797234,39214522:25785795,404226,82312 -(1,3873:6797234,39214522:0,0,0 -g1,3873:6797234,39214522 -g1,3873:6797234,39214522 -g1,3873:6469554,39214522 -(1,3873:6469554,39214522:0,0,0 -) -g1,3873:6797234,39214522 -) -k1,3874:6797234,39214522:0 -g1,3874:11223275,39214522 -h1,3874:13436294,39214522:0,0,0 -k1,3874:32583030,39214522:19146736 -g1,3874:32583030,39214522 -) -(1,3878:6797234,39880700:25785795,404226,107478 -(1,3876:6797234,39880700:0,0,0 -g1,3876:6797234,39880700 -g1,3876:6797234,39880700 -g1,3876:6469554,39880700 -(1,3876:6469554,39880700:0,0,0 -) -g1,3876:6797234,39880700 -) -g1,3878:7745671,39880700 -g1,3878:9010254,39880700 -h1,3878:11855565,39880700:0,0,0 -k1,3878:32583029,39880700:20727464 -g1,3878:32583029,39880700 -) -] -) -g1,3879:32583029,39988178 -g1,3879:6797234,39988178 -g1,3879:6797234,39988178 -g1,3879:32583029,39988178 -g1,3879:32583029,39988178 -) -h1,3879:6797234,40184786:0,0,0 -] -g1,3881:32583029,40709074 -) -h1,3881:6630773,40709074:0,0,0 -] -(1,3888:32583029,45706769:0,0,0 -g1,3888:32583029,45706769 -) -) -] -(1,3888:6630773,47279633:25952256,0,0 -h1,3888:6630773,47279633:25952256,0,0 -) -] -(1,3888:4262630,4025873:0,0,0 -[1,3888:-473656,4025873:0,0,0 -(1,3888:-473656,-710413:0,0,0 -(1,3888:-473656,-710413:0,0,0 -g1,3888:-473656,-710413 -) -g1,3888:-473656,-710413 -) -] -) -] -!18939 -}76 -Input:665:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:666:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:667:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:668:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:669:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:670:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:671:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!662 -{77 -[1,3969:4262630,47279633:28320399,43253760,0 -(1,3969:4262630,4025873:0,0,0 -[1,3969:-473656,4025873:0,0,0 -(1,3969:-473656,-710413:0,0,0 -(1,3969:-473656,-644877:0,0,0 -k1,3969:-473656,-644877:-65536 +Input:505:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:506:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1964 +{58 +[1,2421:4262630,47279633:28320399,43253760,0 +(1,2421:4262630,4025873:0,0,0 +[1,2421:-473656,4025873:0,0,0 +(1,2421:-473656,-710413:0,0,0 +(1,2421:-473656,-644877:0,0,0 +k1,2421:-473656,-644877:-65536 ) -(1,3969:-473656,4736287:0,0,0 -k1,3969:-473656,4736287:5209943 +(1,2421:-473656,4736287:0,0,0 +k1,2421:-473656,4736287:5209943 ) -g1,3969:-473656,-710413 +g1,2421:-473656,-710413 ) ] ) -[1,3969:6630773,47279633:25952256,43253760,0 -[1,3969:6630773,4812305:25952256,786432,0 -(1,3969:6630773,4812305:25952256,505283,11795 -(1,3969:6630773,4812305:25952256,505283,11795 -g1,3969:3078558,4812305 -[1,3969:3078558,4812305:0,0,0 -(1,3969:3078558,2439708:0,1703936,0 -k1,3969:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,3969:2537886,2439708:1179648,16384,0 +[1,2421:6630773,47279633:25952256,43253760,0 +[1,2421:6630773,4812305:25952256,786432,0 +(1,2421:6630773,4812305:25952256,505283,11795 +(1,2421:6630773,4812305:25952256,505283,11795 +g1,2421:3078558,4812305 +[1,2421:3078558,4812305:0,0,0 +(1,2421:3078558,2439708:0,1703936,0 +k1,2421:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,2421:2537886,2439708:1179648,16384,0 ) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,3969:3078558,1915420:16384,1179648,0 +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,2421:3078558,1915420:16384,1179648,0 ) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) ] ) ) ) ] -[1,3969:3078558,4812305:0,0,0 -(1,3969:3078558,2439708:0,1703936,0 -g1,3969:29030814,2439708 -g1,3969:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,3969:36151628,1915420:16384,1179648,0 +[1,2421:3078558,4812305:0,0,0 +(1,2421:3078558,2439708:0,1703936,0 +g1,2421:29030814,2439708 +g1,2421:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,2421:36151628,1915420:16384,1179648,0 ) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) ] ) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,3969:37855564,2439708:1179648,16384,0 -) +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,2421:37855564,2439708:1179648,16384,0 ) -k1,3969:3078556,2439708:-34777008 ) -] -[1,3969:3078558,4812305:0,0,0 -(1,3969:3078558,49800853:0,16384,2228224 -k1,3969:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,3969:2537886,49800853:1179648,16384,0 -) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,3969:3078558,51504789:16384,1179648,0 -) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 +k1,2421:3078556,2439708:-34777008 ) ] +[1,2421:3078558,4812305:0,0,0 +(1,2421:3078558,49800853:0,16384,2228224 +k1,2421:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,2421:2537886,49800853:1179648,16384,0 ) +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,2421:3078558,51504789:16384,1179648,0 ) -) -] -[1,3969:3078558,4812305:0,0,0 -(1,3969:3078558,49800853:0,16384,2228224 -g1,3969:29030814,49800853 -g1,3969:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,3969:36151628,51504789:16384,1179648,0 -) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) ] ) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,3969:37855564,49800853:1179648,16384,0 ) ) -k1,3969:3078556,49800853:-34777008 -) ] -g1,3969:6630773,4812305 -k1,3969:22348274,4812305:14920583 -g1,3969:23970945,4812305 -g1,3969:24793421,4812305 -g1,3969:27528893,4812305 -g1,3969:28938572,4812305 +[1,2421:3078558,4812305:0,0,0 +(1,2421:3078558,49800853:0,16384,2228224 +g1,2421:29030814,49800853 +g1,2421:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,2421:36151628,51504789:16384,1179648,0 ) +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 ) ] -[1,3969:6630773,45706769:25952256,40108032,0 -(1,3969:6630773,45706769:25952256,40108032,0 -(1,3969:6630773,45706769:0,0,0 -g1,3969:6630773,45706769 -) -[1,3969:6630773,45706769:25952256,40108032,0 -(1,3883:6630773,6254097:25952256,32768,229376 -(1,3883:6630773,6254097:0,32768,229376 -(1,3883:6630773,6254097:5505024,32768,229376 -r1,3969:12135797,6254097:5505024,262144,229376 -) -k1,3883:6630773,6254097:-5505024 -) -(1,3883:6630773,6254097:25952256,32768,0 -r1,3969:32583029,6254097:25952256,32768,0 -) -) -(1,3883:6630773,7858425:25952256,606339,151780 -(1,3883:6630773,7858425:1974731,582746,14155 -g1,3883:6630773,7858425 -g1,3883:8605504,7858425 -) -g1,3883:11298248,7858425 -k1,3883:32583029,7858425:16458448 -g1,3883:32583029,7858425 -) -(1,3886:6630773,9093129:25952256,505283,134348 -k1,3885:8046529,9093129:219069 -k1,3885:12625708,9093129:219069 -k1,3885:14230863,9093129:219069 -k1,3885:18256918,9093129:219069 -k1,3885:19467547,9093129:219069 -k1,3885:21430529,9093129:219069 -k1,3885:23871269,9093129:219069 -k1,3885:24741766,9093129:219069 -k1,3885:27030462,9093129:219069 -k1,3885:29433846,9093129:219069 -k1,3885:30550758,9093129:219069 -k1,3885:32583029,9093129:0 -) -(1,3886:6630773,9934617:25952256,513147,134348 -k1,3885:7873391,9934617:251058 -k1,3885:8810610,9934617:251057 -k1,3885:10218378,9934617:251058 -k1,3885:12425685,9934617:251057 -k1,3885:14921351,9934617:251058 -k1,3885:15932626,9934617:251057 -k1,3885:19887123,9934617:251058 -k1,3885:23163977,9934617:251057 -k1,3885:24928261,9934617:251058 -k1,3885:25830746,9934617:251057 -k1,3885:28474523,9934617:251058 -k1,3885:31015408,9934617:251057 -k1,3885:32583029,9934617:0 -) -(1,3886:6630773,10776105:25952256,609711,134348 -g1,3885:7986712,10776105 -g1,3885:9968520,10776105 -g1,3885:10819177,10776105 -g1,3885:11374266,10776105 -g1,3885:14335838,10776105 -g1,3885:15691777,10776105 -g1,3885:17366221,10776105 -g1,3885:19633766,10776105 -g1,3885:22311567,10776105 -g1,3885:23904747,10776105 -(1,3885:23904747,10776105:0,414482,115847 -r1,3969:24966436,10776105:1061689,530329,115847 -k1,3885:23904747,10776105:-1061689 -) -(1,3885:23904747,10776105:1061689,414482,115847 -k1,3885:23904747,10776105:3277 -h1,3885:24963159,10776105:0,411205,112570 -) -(1,3885:24966436,10776105:311689,609711,0 -$1,3885:24966436,10776105 -(1,3885:24966436,10500824:311689,334430,0 -) -$1,3885:25278125,10776105 -) -g1,3885:25651024,10776105 -g1,3885:25651024,10776105 -g1,3885:25850253,10776105 -g1,3885:25850253,10776105 -k1,3886:32583029,10776105:6732776 -g1,3886:32583029,10776105 -) -v1,3888:6630773,11885397:0,393216,0 -(1,3913:6630773,18798362:25952256,7306181,196608 -g1,3913:6630773,18798362 -g1,3913:6630773,18798362 -g1,3913:6434165,18798362 -(1,3913:6434165,18798362:0,7306181,196608 -r1,3969:32779637,18798362:26345472,7502789,196608 -k1,3913:6434165,18798362:-26345472 -) -(1,3913:6434165,18798362:26345472,7306181,196608 -[1,3913:6630773,18798362:25952256,7109573,0 -(1,3890:6630773,12093015:25952256,404226,76021 -(1,3889:6630773,12093015:0,0,0 -g1,3889:6630773,12093015 -g1,3889:6630773,12093015 -g1,3889:6303093,12093015 -(1,3889:6303093,12093015:0,0,0 -) -g1,3889:6630773,12093015 -) -k1,3890:6630773,12093015:0 -h1,3890:11372959,12093015:0,0,0 -k1,3890:32583029,12093015:21210070 -g1,3890:32583029,12093015 -) -(1,3894:6630773,12759193:25952256,404226,76021 -(1,3892:6630773,12759193:0,0,0 -g1,3892:6630773,12759193 -g1,3892:6630773,12759193 -g1,3892:6303093,12759193 -(1,3892:6303093,12759193:0,0,0 -) -g1,3892:6630773,12759193 -) -g1,3894:7579210,12759193 -g1,3894:8843793,12759193 -h1,3894:9792230,12759193:0,0,0 -k1,3894:32583030,12759193:22790800 -g1,3894:32583030,12759193 -) -(1,3896:6630773,14080731:25952256,404226,76021 -(1,3895:6630773,14080731:0,0,0 -g1,3895:6630773,14080731 -g1,3895:6630773,14080731 -g1,3895:6303093,14080731 -(1,3895:6303093,14080731:0,0,0 -) -g1,3895:6630773,14080731 -) -k1,3896:6630773,14080731:0 -h1,3896:11372959,14080731:0,0,0 -k1,3896:32583029,14080731:21210070 -g1,3896:32583029,14080731 -) -(1,3900:6630773,14746909:25952256,404226,76021 -(1,3898:6630773,14746909:0,0,0 -g1,3898:6630773,14746909 -g1,3898:6630773,14746909 -g1,3898:6303093,14746909 -(1,3898:6303093,14746909:0,0,0 -) -g1,3898:6630773,14746909 -) -g1,3900:7579210,14746909 -g1,3900:8843793,14746909 -h1,3900:9159939,14746909:0,0,0 -k1,3900:32583029,14746909:23423090 -g1,3900:32583029,14746909 -) -(1,3902:6630773,16068447:25952256,404226,107478 -(1,3901:6630773,16068447:0,0,0 -g1,3901:6630773,16068447 -g1,3901:6630773,16068447 -g1,3901:6303093,16068447 -(1,3901:6303093,16068447:0,0,0 -) -g1,3901:6630773,16068447 -) -k1,3902:6630773,16068447:0 -h1,3902:12321396,16068447:0,0,0 -k1,3902:32583028,16068447:20261632 -g1,3902:32583028,16068447 -) -(1,3906:6630773,16734625:25952256,404226,76021 -(1,3904:6630773,16734625:0,0,0 -g1,3904:6630773,16734625 -g1,3904:6630773,16734625 -g1,3904:6303093,16734625 -(1,3904:6303093,16734625:0,0,0 -) -g1,3904:6630773,16734625 -) -g1,3906:7579210,16734625 -g1,3906:8843793,16734625 -h1,3906:10108376,16734625:0,0,0 -k1,3906:32583028,16734625:22474652 -g1,3906:32583028,16734625 -) -(1,3908:6630773,18056163:25952256,404226,107478 -(1,3907:6630773,18056163:0,0,0 -g1,3907:6630773,18056163 -g1,3907:6630773,18056163 -g1,3907:6303093,18056163 -(1,3907:6303093,18056163:0,0,0 -) -g1,3907:6630773,18056163 -) -k1,3908:6630773,18056163:0 -h1,3908:11689105,18056163:0,0,0 -k1,3908:32583029,18056163:20893924 -g1,3908:32583029,18056163 -) -(1,3912:6630773,18722341:25952256,404226,76021 -(1,3910:6630773,18722341:0,0,0 -g1,3910:6630773,18722341 -g1,3910:6630773,18722341 -g1,3910:6303093,18722341 -(1,3910:6303093,18722341:0,0,0 -) -g1,3910:6630773,18722341 -) -g1,3912:7579210,18722341 -g1,3912:8843793,18722341 -h1,3912:9476084,18722341:0,0,0 -k1,3912:32583028,18722341:23106944 -g1,3912:32583028,18722341 -) -] -) -g1,3913:32583029,18798362 -g1,3913:6630773,18798362 -g1,3913:6630773,18798362 -g1,3913:32583029,18798362 -g1,3913:32583029,18798362 -) -h1,3913:6630773,18994970:0,0,0 -(1,3917:6630773,20279572:25952256,505283,134348 -h1,3916:6630773,20279572:983040,0,0 -g1,3916:11411624,20279572 -g1,3916:13293818,20279572 -g1,3916:15155695,20279572 -g1,3916:19671781,20279572 -g1,3916:20487048,20279572 -g1,3916:23962422,20279572 -g1,3916:25353096,20279572 -g1,3916:27621952,20279572 -k1,3917:32583029,20279572:1017120 -g1,3917:32583029,20279572 -) -v1,3919:6630773,21388864:0,393216,0 -(1,3938:6630773,26298384:25952256,5302736,196608 -g1,3938:6630773,26298384 -g1,3938:6630773,26298384 -g1,3938:6434165,26298384 -(1,3938:6434165,26298384:0,5302736,196608 -r1,3969:32779637,26298384:26345472,5499344,196608 -k1,3938:6434165,26298384:-26345472 -) -(1,3938:6434165,26298384:26345472,5302736,196608 -[1,3938:6630773,26298384:25952256,5106128,0 -(1,3921:6630773,21580753:25952256,388497,9436 -(1,3920:6630773,21580753:0,0,0 -g1,3920:6630773,21580753 -g1,3920:6630773,21580753 -g1,3920:6303093,21580753 -(1,3920:6303093,21580753:0,0,0 -) -g1,3920:6630773,21580753 -) -g1,3921:8211502,21580753 -g1,3921:8843794,21580753 -h1,3921:9476085,21580753:0,0,0 -k1,3921:32583029,21580753:23106944 -g1,3921:32583029,21580753 -) -(1,3925:6630773,22246931:25952256,404226,76021 -(1,3923:6630773,22246931:0,0,0 -g1,3923:6630773,22246931 -g1,3923:6630773,22246931 -g1,3923:6303093,22246931 -(1,3923:6303093,22246931:0,0,0 -) -g1,3923:6630773,22246931 -) -g1,3925:7579210,22246931 -g1,3925:8843793,22246931 -h1,3925:9476084,22246931:0,0,0 -k1,3925:32583028,22246931:23106944 -g1,3925:32583028,22246931 -) -(1,3927:6630773,23568469:25952256,404226,76021 -(1,3926:6630773,23568469:0,0,0 -g1,3926:6630773,23568469 -g1,3926:6630773,23568469 -g1,3926:6303093,23568469 -(1,3926:6303093,23568469:0,0,0 -) -g1,3926:6630773,23568469 -) -g1,3927:7263065,23568469 -g1,3927:8211502,23568469 -h1,3927:8527648,23568469:0,0,0 -k1,3927:32583028,23568469:24055380 -g1,3927:32583028,23568469 -) -(1,3931:6630773,24234647:25952256,404226,76021 -(1,3929:6630773,24234647:0,0,0 -g1,3929:6630773,24234647 -g1,3929:6630773,24234647 -g1,3929:6303093,24234647 -(1,3929:6303093,24234647:0,0,0 -) -g1,3929:6630773,24234647 -) -g1,3931:7579210,24234647 -g1,3931:8843793,24234647 -h1,3931:10108376,24234647:0,0,0 -k1,3931:32583028,24234647:22474652 -g1,3931:32583028,24234647 -) -(1,3933:6630773,25556185:25952256,404226,76021 -(1,3932:6630773,25556185:0,0,0 -g1,3932:6630773,25556185 -g1,3932:6630773,25556185 -g1,3932:6303093,25556185 -(1,3932:6303093,25556185:0,0,0 -) -g1,3932:6630773,25556185 -) -g1,3933:8527647,25556185 -g1,3933:9159939,25556185 -k1,3933:9159939,25556185:0 -h1,3933:10424523,25556185:0,0,0 -k1,3933:32583029,25556185:22158506 -g1,3933:32583029,25556185 -) -(1,3937:6630773,26222363:25952256,404226,76021 -(1,3935:6630773,26222363:0,0,0 -g1,3935:6630773,26222363 -g1,3935:6630773,26222363 -g1,3935:6303093,26222363 -(1,3935:6303093,26222363:0,0,0 -) -g1,3935:6630773,26222363 -) -g1,3937:7579210,26222363 -g1,3937:8843793,26222363 -g1,3937:9159939,26222363 -g1,3937:10740668,26222363 -g1,3937:11056814,26222363 -g1,3937:12637543,26222363 -g1,3937:14534417,26222363 -g1,3937:14850563,26222363 -g1,3937:16431292,26222363 -g1,3937:16747438,26222363 -h1,3937:18012021,26222363:0,0,0 -k1,3937:32583029,26222363:14571008 -g1,3937:32583029,26222363 -) -] -) -g1,3938:32583029,26298384 -g1,3938:6630773,26298384 -g1,3938:6630773,26298384 -g1,3938:32583029,26298384 -g1,3938:32583029,26298384 -) -h1,3938:6630773,26494992:0,0,0 -v1,3942:6630773,28222707:0,393216,0 -(1,3962:6630773,40909435:25952256,13079944,0 -g1,3962:6630773,40909435 -g1,3962:6303093,40909435 -r1,3969:6401397,40909435:98304,13079944,0 -g1,3962:6600626,40909435 -g1,3962:6797234,40909435 -[1,3962:6797234,40909435:25785795,13079944,0 -(1,3943:6797234,28655245:25785795,825754,196608 -(1,3942:6797234,28655245:0,825754,196608 -r1,3969:7890375,28655245:1093141,1022362,196608 -k1,3942:6797234,28655245:-1093141 -) -(1,3942:6797234,28655245:1093141,825754,196608 -) -k1,3942:8146621,28655245:256246 -k1,3942:9872839,28655245:327680 -k1,3942:11961471,28655245:256245 -k1,3942:12749214,28655245:256246 -k1,3942:14697600,28655245:256246 -k1,3942:17927870,28655245:256246 -k1,3942:18800153,28655245:256245 -k1,3942:20075484,28655245:256246 -k1,3942:23808415,28655245:256246 -k1,3942:25632282,28655245:256246 -k1,3942:28863206,28655245:256245 -k1,3942:31315563,28655245:256246 -k1,3943:32583029,28655245:0 -) -(1,3943:6797234,29496733:25785795,505283,126483 -(1,3942:6797234,29496733:0,452978,115847 -r1,3969:9265771,29496733:2468537,568825,115847 -k1,3942:6797234,29496733:-2468537 -) -(1,3942:6797234,29496733:2468537,452978,115847 -k1,3942:6797234,29496733:3277 -h1,3942:9262494,29496733:0,411205,112570 -) -k1,3942:9472189,29496733:206418 -k1,3942:10870052,29496733:206418 -(1,3942:10870052,29496733:0,452978,122846 -r1,3969:13338589,29496733:2468537,575824,122846 -k1,3942:10870052,29496733:-2468537 -) -(1,3942:10870052,29496733:2468537,452978,122846 -k1,3942:10870052,29496733:3277 -h1,3942:13335312,29496733:0,411205,112570 -) -k1,3942:13545006,29496733:206417 -k1,3942:15935739,29496733:206418 -k1,3942:17291003,29496733:206418 -k1,3942:18516506,29496733:206418 -k1,3942:21714642,29496733:206417 -k1,3942:23789491,29496733:206418 -k1,3942:25366922,29496733:206418 -k1,3942:27032171,29496733:206418 -k1,3942:28568969,29496733:206417 -k1,3942:31931601,29496733:206418 -k1,3942:32583029,29496733:0 -) -(1,3943:6797234,30338221:25785795,513147,134348 -k1,3942:7985654,30338221:209967 -k1,3942:8966324,30338221:209967 -k1,3942:10501429,30338221:209967 -k1,3942:11370689,30338221:209968 -k1,3942:13129272,30338221:209967 -k1,3942:15535350,30338221:209967 -k1,3942:16736877,30338221:209967 -k1,3942:20303598,30338221:209967 -k1,3942:21705010,30338221:209967 -k1,3942:24723851,30338221:209968 -k1,3942:28094619,30338221:209967 -k1,3942:29496031,30338221:209967 -k1,3942:31591469,30338221:209967 -k1,3942:32583029,30338221:0 -) -(1,3943:6797234,31179709:25785795,505283,126483 -k1,3942:8226226,31179709:189051 -k1,3942:9313119,31179709:189050 -k1,3942:10787986,31179709:189051 -k1,3942:12114742,31179709:189051 -k1,3942:15203105,31179709:189050 -k1,3942:16004918,31179709:189051 -k1,3942:17213054,31179709:189051 -k1,3942:20878789,31179709:189050 -k1,3942:23703043,31179709:189051 -(1,3942:23703043,31179709:0,452978,115847 -r1,3969:26171580,31179709:2468537,568825,115847 -k1,3942:23703043,31179709:-2468537 -) -(1,3942:23703043,31179709:2468537,452978,115847 -k1,3942:23703043,31179709:3277 -h1,3942:26168303,31179709:0,411205,112570 -) -k1,3942:26360631,31179709:189051 -k1,3942:27741126,31179709:189050 -(1,3942:27741126,31179709:0,452978,122846 -r1,3969:30209663,31179709:2468537,575824,122846 -k1,3942:27741126,31179709:-2468537 -) -(1,3942:27741126,31179709:2468537,452978,122846 -k1,3942:27741126,31179709:3277 -h1,3942:30206386,31179709:0,411205,112570 -) -k1,3942:30398714,31179709:189051 -k1,3942:32583029,31179709:0 -) -(1,3943:6797234,32021197:25785795,0,0 -g1,3942:6797234,32021197 -g1,3942:6996463,32021197 -g1,3942:6996463,32021197 -k1,3943:32583029,32021197:25586566 -g1,3943:32583029,32021197 -) -v1,3945:6797234,33211663:0,393216,0 -(1,3959:6797234,40188539:25785795,7370092,196608 -g1,3959:6797234,40188539 -g1,3959:6797234,40188539 -g1,3959:6600626,40188539 -(1,3959:6600626,40188539:0,7370092,196608 -r1,3969:32779637,40188539:26179011,7566700,196608 -k1,3959:6600625,40188539:-26179012 -) -(1,3959:6600626,40188539:26179011,7370092,196608 -[1,3959:6797234,40188539:25785795,7173484,0 -(1,3947:6797234,33419281:25785795,404226,76021 -(1,3946:6797234,33419281:0,0,0 -g1,3946:6797234,33419281 -g1,3946:6797234,33419281 -g1,3946:6469554,33419281 -(1,3946:6469554,33419281:0,0,0 -) -g1,3946:6797234,33419281 -) -k1,3947:6797234,33419281:0 -h1,3947:13120148,33419281:0,0,0 -k1,3947:32583028,33419281:19462880 -g1,3947:32583028,33419281 -) -(1,3948:6797234,34085459:25785795,404226,76021 -h1,3948:6797234,34085459:0,0,0 -k1,3948:6797234,34085459:0 -h1,3948:12487857,34085459:0,0,0 -k1,3948:32583029,34085459:20095172 -g1,3948:32583029,34085459 -) -(1,3949:6797234,34751637:25785795,404226,76021 -h1,3949:6797234,34751637:0,0,0 -k1,3949:6797234,34751637:0 -h1,3949:11539420,34751637:0,0,0 -k1,3949:32583028,34751637:21043608 -g1,3949:32583028,34751637 -) -(1,3950:6797234,35417815:25785795,404226,76021 -h1,3950:6797234,35417815:0,0,0 -k1,3950:6797234,35417815:0 -h1,3950:11855566,35417815:0,0,0 -k1,3950:32583030,35417815:20727464 -g1,3950:32583030,35417815 -) -(1,3951:6797234,36083993:25785795,404226,76021 -h1,3951:6797234,36083993:0,0,0 -k1,3951:6797234,36083993:0 -h1,3951:12171711,36083993:0,0,0 -k1,3951:32583029,36083993:20411318 -g1,3951:32583029,36083993 -) -(1,3952:6797234,36750171:25785795,404226,107478 -h1,3952:6797234,36750171:0,0,0 -k1,3952:6797234,36750171:0 -h1,3952:11539420,36750171:0,0,0 -k1,3952:32583028,36750171:21043608 -g1,3952:32583028,36750171 -) -(1,3953:6797234,37416349:25785795,404226,107478 -h1,3953:6797234,37416349:0,0,0 -k1,3953:6797234,37416349:0 -h1,3953:11539420,37416349:0,0,0 -k1,3953:32583028,37416349:21043608 -g1,3953:32583028,37416349 -) -(1,3954:6797234,38082527:25785795,404226,107478 -h1,3954:6797234,38082527:0,0,0 -k1,3954:6797234,38082527:0 -h1,3954:12487857,38082527:0,0,0 -k1,3954:32583029,38082527:20095172 -g1,3954:32583029,38082527 -) -(1,3955:6797234,38748705:25785795,404226,107478 -h1,3955:6797234,38748705:0,0,0 -k1,3955:6797234,38748705:0 -h1,3955:11539420,38748705:0,0,0 -k1,3955:32583028,38748705:21043608 -g1,3955:32583028,38748705 -) -(1,3956:6797234,39414883:25785795,404226,107478 -h1,3956:6797234,39414883:0,0,0 -k1,3956:6797234,39414883:0 -h1,3956:10907129,39414883:0,0,0 -k1,3956:32583029,39414883:21675900 -g1,3956:32583029,39414883 -) -(1,3957:6797234,40081061:25785795,404226,107478 -h1,3957:6797234,40081061:0,0,0 -k1,3957:6797234,40081061:0 -h1,3957:11223275,40081061:0,0,0 -k1,3957:32583029,40081061:21359754 -g1,3957:32583029,40081061 -) -] -) -g1,3959:32583029,40188539 -g1,3959:6797234,40188539 -g1,3959:6797234,40188539 -g1,3959:32583029,40188539 -g1,3959:32583029,40188539 -) -h1,3959:6797234,40385147:0,0,0 -] -g1,3962:32583029,40909435 -) -h1,3962:6630773,40909435:0,0,0 -v1,3965:6630773,42194037:0,393216,0 -(1,3966:6630773,44443899:25952256,2643078,0 -g1,3966:6630773,44443899 -g1,3966:6303093,44443899 -r1,3969:6401397,44443899:98304,2643078,0 -g1,3966:6600626,44443899 -g1,3966:6797234,44443899 -[1,3966:6797234,44443899:25785795,2643078,0 -(1,3966:6797234,42626575:25785795,825754,196608 -(1,3965:6797234,42626575:0,825754,196608 -r1,3969:7890375,42626575:1093141,1022362,196608 -k1,3965:6797234,42626575:-1093141 -) -(1,3965:6797234,42626575:1093141,825754,196608 -) -k1,3965:8046106,42626575:155731 -k1,3965:9772324,42626575:327680 -k1,3965:12810329,42626575:155732 -k1,3965:13985145,42626575:155731 -k1,3965:16151522,42626575:155732 -k1,3965:19085980,42626575:155731 -k1,3965:20003239,42626575:155731 -(1,3965:20003239,42626575:0,452978,115847 -r1,3969:22471776,42626575:2468537,568825,115847 -k1,3965:20003239,42626575:-2468537 -) -(1,3965:20003239,42626575:2468537,452978,115847 -k1,3965:20003239,42626575:3277 -h1,3965:22468499,42626575:0,411205,112570 -) -k1,3965:22627508,42626575:155732 -k1,3965:23974684,42626575:155731 -(1,3965:23974684,42626575:0,452978,122846 -r1,3969:28201780,42626575:4227096,575824,122846 -k1,3965:23974684,42626575:-4227096 -) -(1,3965:23974684,42626575:4227096,452978,122846 -k1,3965:23974684,42626575:3277 -h1,3965:28198503,42626575:0,411205,112570 -) -k1,3965:28357512,42626575:155732 -k1,3965:30211281,42626575:155731 -k1,3965:32583029,42626575:0 -) -(1,3966:6797234,43468063:25785795,513147,134348 -k1,3965:7690661,43468063:241999 -k1,3965:8288519,43468063:241998 -k1,3965:10962559,43468063:241999 -k1,3965:12892765,43468063:241999 -k1,3965:15794215,43468063:241999 -k1,3965:17529779,43468063:241998 -k1,3965:18457940,43468063:241999 -(1,3965:18457940,43468063:0,435480,115847 -r1,3969:20223053,43468063:1765113,551327,115847 -k1,3965:18457940,43468063:-1765113 -) -(1,3965:18457940,43468063:1765113,435480,115847 -k1,3965:18457940,43468063:3277 -h1,3965:20219776,43468063:0,411205,112570 -) -k1,3965:20638722,43468063:241999 -k1,3965:22824518,43468063:241998 -k1,3965:24014168,43468063:241999 -k1,3965:25275252,43468063:241999 -k1,3965:28063980,43468063:241999 -k1,3965:28965270,43468063:241998 -k1,3965:31391584,43468063:241999 -k1,3965:32583029,43468063:0 -) -(1,3966:6797234,44309551:25785795,513147,134348 -g1,3965:7944114,44309551 -g1,3965:9162428,44309551 -g1,3965:10868330,44309551 -g1,3965:11726851,44309551 -g1,3965:12945165,44309551 -g1,3965:15923121,44309551 -k1,3966:32583029,44309551:14196410 -g1,3966:32583029,44309551 -) -] -g1,3966:32583029,44443899 -) -h1,3966:6630773,44443899:0,0,0 -(1,3885:6630773,45706769:25952256,506878,199855 -(1,3885:6630773,45706769:943720,506878,0 -k1,3885:7302650,45706769:671877 -(1,3885:7302650,45706769:271843,506878,0 -$1,3885:7302650,45706769 -(1,3885:7302650,45486545:271843,286654,0 -) -$1,3885:7574493,45706769 -) -) -(1,3885:7574493,45706769:0,435814,0 -r1,3969:7574493,45706769:0,435814,0 -) -g1,3885:9409502,45706769 -g1,3885:10327006,45706769 -g1,3885:11840102,45706769 -g1,3885:14327849,45706769 -g1,3885:14980064,45706769 -g1,3885:15954716,45706769 -g1,3885:18680489,45706769 -g1,3885:19867478,45706769 -g1,3885:20900850,45706769 -g1,3885:22714887,45706769 -g1,3885:24857128,45706769 -g1,3885:26131673,45706769 -(1,3885:26131673,45706769:0,332241,93333 -r1,3969:26982335,45706769:850662,425574,93333 -k1,3885:26131673,45706769:-850662 -) -(1,3885:26131673,45706769:850662,332241,93333 -k1,3885:26131673,45706769:3277 -h1,3885:26979058,45706769:0,328964,90056 -) -g1,3885:27141719,45706769 -g1,3885:29162850,45706769 -g1,3885:29855959,45706769 -(1,3885:29855959,45706769:0,332241,93333 -r1,3969:30706621,45706769:850662,425574,93333 -k1,3885:29855959,45706769:-850662 -) -(1,3885:29855959,45706769:850662,332241,93333 -k1,3885:29855959,45706769:3277 -h1,3885:30703344,45706769:0,328964,90056 -) -r1,3969:30845557,45706769:0,199855,199855 -k1,3885:32583029,45706769:1737472 -g1,3885:32583029,45706769 -) -] -(1,3969:32583029,45706769:0,0,0 -g1,3969:32583029,45706769 ) +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,2421:37855564,49800853:1179648,16384,0 ) -] -(1,3969:6630773,47279633:25952256,0,0 -h1,3969:6630773,47279633:25952256,0,0 ) -] -(1,3969:4262630,4025873:0,0,0 -[1,3969:-473656,4025873:0,0,0 -(1,3969:-473656,-710413:0,0,0 -(1,3969:-473656,-710413:0,0,0 -g1,3969:-473656,-710413 -) -g1,3969:-473656,-710413 -) -] +k1,2421:3078556,49800853:-34777008 ) ] -!22577 -}77 -Input:672:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:673:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:674:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:675:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:676:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:677:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:678:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:679:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:680:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:681:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:682:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:683:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:684:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:685:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:686:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:687:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:688:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +g1,2421:6630773,4812305 +g1,2421:6630773,4812305 +g1,2421:10015707,4812305 +g1,2421:12209197,4812305 +k1,2421:31786111,4812305:19576914 +) +) +] +[1,2421:6630773,45706769:25952256,40108032,0 +(1,2421:6630773,45706769:25952256,40108032,0 +(1,2421:6630773,45706769:0,0,0 +g1,2421:6630773,45706769 +) +[1,2421:6630773,45706769:25952256,40108032,0 +(1,2328:6630773,6254097:25952256,513147,134348 +h1,2327:6630773,6254097:983040,0,0 +k1,2327:10964396,6254097:196335 +k1,2327:13480050,6254097:196335 +k1,2327:14867830,6254097:196335 +k1,2327:17361857,6254097:196335 +k1,2327:19299484,6254097:196335 +k1,2327:21283641,6254097:196335 +k1,2327:22011473,6254097:196335 +k1,2327:22563668,6254097:196335 +k1,2327:25498753,6254097:196335 +k1,2327:28943052,6254097:196335 +k1,2327:30330832,6254097:196335 +k1,2327:30942007,6254097:196332 +k1,2328:32583029,6254097:0 +) +(1,2328:6630773,7119177:25952256,505283,126483 +g1,2327:8097468,7119177 +(1,2327:8097468,7119177:0,452978,115847 +r1,2421:10917717,7119177:2820249,568825,115847 +k1,2327:8097468,7119177:-2820249 +) +(1,2327:8097468,7119177:2820249,452978,115847 +k1,2327:8097468,7119177:3277 +h1,2327:10914440,7119177:0,411205,112570 +) +g1,2327:11116946,7119177 +g1,2327:15079908,7119177 +g1,2327:16482378,7119177 +k1,2328:32583029,7119177:12852687 +g1,2328:32583029,7119177 +) +v1,2330:6630773,7804032:0,393216,0 +(1,2344:6630773,11244321:25952256,3833505,196608 +g1,2344:6630773,11244321 +g1,2344:6630773,11244321 +g1,2344:6434165,11244321 +(1,2344:6434165,11244321:0,3833505,196608 +r1,2421:32779637,11244321:26345472,4030113,196608 +k1,2344:6434165,11244321:-26345472 +) +(1,2344:6434165,11244321:26345472,3833505,196608 +[1,2344:6630773,11244321:25952256,3636897,0 +(1,2332:6630773,8031863:25952256,424439,79822 +(1,2331:6630773,8031863:0,0,0 +g1,2331:6630773,8031863 +g1,2331:6630773,8031863 +g1,2331:6303093,8031863 +(1,2331:6303093,8031863:0,0,0 +) +g1,2331:6630773,8031863 +) +k1,2332:6630773,8031863:0 +g1,2332:9618359,8031863 +g1,2332:10282267,8031863 +g1,2332:10946175,8031863 +g1,2332:12273991,8031863 +g1,2332:14265715,8031863 +h1,2332:14929623,8031863:0,0,0 +k1,2332:32583029,8031863:17653406 +g1,2332:32583029,8031863 +) +(1,2336:6630773,8847790:25952256,424439,79822 +(1,2334:6630773,8847790:0,0,0 +g1,2334:6630773,8847790 +g1,2334:6630773,8847790 +g1,2334:6303093,8847790 +(1,2334:6303093,8847790:0,0,0 +) +g1,2334:6630773,8847790 +) +g1,2336:7626635,8847790 +g1,2336:8954451,8847790 +g1,2336:10614221,8847790 +h1,2336:12605945,8847790:0,0,0 +k1,2336:32583029,8847790:19977084 +g1,2336:32583029,8847790 +) +(1,2338:6630773,9663717:25952256,424439,112852 +(1,2337:6630773,9663717:0,0,0 +g1,2337:6630773,9663717 +g1,2337:6630773,9663717 +g1,2337:6303093,9663717 +(1,2337:6303093,9663717:0,0,0 +) +g1,2337:6630773,9663717 +) +k1,2338:6630773,9663717:0 +g1,2338:9618359,9663717 +g1,2338:10282267,9663717 +g1,2338:11610083,9663717 +g1,2338:11942037,9663717 +g1,2338:13933761,9663717 +g1,2338:15925485,9663717 +g1,2338:17253301,9663717 +g1,2338:17917209,9663717 +g1,2338:20572841,9663717 +g1,2338:21568703,9663717 +g1,2338:22896519,9663717 +g1,2338:25552151,9663717 +g1,2338:26216059,9663717 +g1,2338:27543875,9663717 +g1,2338:29535599,9663717 +h1,2338:30531461,9663717:0,0,0 +k1,2338:32583029,9663717:2051568 +g1,2338:32583029,9663717 +) +(1,2343:6630773,10479644:25952256,424439,112852 +(1,2340:6630773,10479644:0,0,0 +g1,2340:6630773,10479644 +g1,2340:6630773,10479644 +g1,2340:6303093,10479644 +(1,2340:6303093,10479644:0,0,0 +) +g1,2340:6630773,10479644 +) +g1,2343:7626635,10479644 +g1,2343:8954451,10479644 +g1,2343:11278129,10479644 +g1,2343:13269853,10479644 +g1,2343:14597669,10479644 +g1,2343:15261577,10479644 +g1,2343:17917209,10479644 +g1,2343:18913071,10479644 +g1,2343:20240887,10479644 +h1,2343:21568703,10479644:0,0,0 +k1,2343:32583029,10479644:11014326 +g1,2343:32583029,10479644 +) +(1,2343:6630773,11164499:25952256,424439,79822 +h1,2343:6630773,11164499:0,0,0 +g1,2343:7626635,11164499 +g1,2343:8954451,11164499 +g1,2343:10614221,11164499 +h1,2343:12605945,11164499:0,0,0 +k1,2343:32583029,11164499:19977084 +g1,2343:32583029,11164499 +) +] +) +g1,2344:32583029,11244321 +g1,2344:6630773,11244321 +g1,2344:6630773,11244321 +g1,2344:32583029,11244321 +g1,2344:32583029,11244321 +) +h1,2344:6630773,11440929:0,0,0 +v1,2348:6630773,12306009:0,393216,0 +(1,2349:6630773,17030369:25952256,5117576,0 +g1,2349:6630773,17030369 +g1,2349:6237557,17030369 +r1,2421:6368629,17030369:131072,5117576,0 +g1,2349:6567858,17030369 +g1,2349:6764466,17030369 +[1,2349:6764466,17030369:25818563,5117576,0 +(1,2349:6764466,12578486:25818563,665693,196608 +(1,2348:6764466,12578486:0,665693,196608 +r1,2421:8010564,12578486:1246098,862301,196608 +k1,2348:6764466,12578486:-1246098 +) +(1,2348:6764466,12578486:1246098,665693,196608 +) +k1,2348:8266301,12578486:255737 +k1,2348:9992519,12578486:327680 +k1,2348:13038125,12578486:255738 +(1,2348:13038125,12578486:0,452978,115847 +r1,2421:15858374,12578486:2820249,568825,115847 +k1,2348:13038125,12578486:-2820249 +) +(1,2348:13038125,12578486:2820249,452978,115847 +k1,2348:13038125,12578486:3277 +h1,2348:15855097,12578486:0,411205,112570 +) +k1,2348:16114111,12578486:255737 +k1,2348:17470854,12578486:255738 +k1,2348:20953584,12578486:255737 +k1,2348:24820355,12578486:255737 +k1,2348:26360599,12578486:255738 +k1,2348:28332069,12578486:255737 +k1,2348:29045904,12578486:255738 +k1,2348:31931601,12578486:255737 +k1,2348:32583029,12578486:0 +) +(1,2349:6764466,13443566:25818563,513147,134348 +k1,2348:8853972,13443566:268916 +k1,2348:11008359,13443566:268916 +k1,2348:12460200,13443566:268916 +k1,2348:13388408,13443566:268916 +k1,2348:14676409,13443566:268916 +k1,2348:16811135,13443566:268916 +k1,2348:17611547,13443566:268915 +k1,2348:20634941,13443566:268916 +k1,2348:22095302,13443566:268916 +k1,2348:24249689,13443566:268916 +k1,2348:27823586,13443566:268916 +k1,2348:29084062,13443566:268916 +k1,2348:32583029,13443566:0 +) +(1,2349:6764466,14308646:25818563,505283,126483 +k1,2348:10714449,14308646:247199 +k1,2348:12110494,14308646:247199 +(1,2348:12110494,14308646:0,452978,115847 +r1,2421:16337590,14308646:4227096,568825,115847 +k1,2348:12110494,14308646:-4227096 +) +(1,2348:12110494,14308646:4227096,452978,115847 +k1,2348:12110494,14308646:3277 +h1,2348:16334313,14308646:0,411205,112570 +) +k1,2348:16584790,14308646:247200 +k1,2348:17483417,14308646:247199 +k1,2348:19761577,14308646:247199 +k1,2348:21027861,14308646:247199 +k1,2348:22663113,14308646:247199 +k1,2348:24101758,14308646:247200 +k1,2348:26132847,14308646:247199 +k1,2348:27583287,14308646:247199 +k1,2348:32583029,14308646:0 +) +(1,2349:6764466,15173726:25818563,513147,134348 +k1,2348:9237190,15173726:266782 +k1,2348:10523057,15173726:266782 +k1,2348:13451256,15173726:266782 +k1,2348:15573361,15173726:266781 +k1,2348:16564971,15173726:266782 +k1,2348:18116259,15173726:266782 +k1,2348:19758642,15173726:266782 +k1,2348:22323116,15173726:266782 +k1,2348:24331190,15173726:266782 +k1,2348:26385794,15173726:266782 +k1,2348:27184072,15173726:266781 +k1,2348:30399974,15173726:266782 +k1,2348:31858201,15173726:266782 +k1,2348:32583029,15173726:0 +) +(1,2349:6764466,16038806:25818563,530548,126483 +k1,2348:8218147,16038806:169175 +k1,2348:9406408,16038806:169176 +k1,2348:12027285,16038806:169175 +k1,2348:15171140,16038806:169176 +h1,2348:15171140,16038806:0,0,0 +k1,2348:16170200,16038806:169175 +k1,2348:16870872,16038806:169175 +k1,2348:18106319,16038806:169176 +k1,2348:21774461,16038806:169175 +k1,2348:25646421,16038806:169176 +k1,2348:27007041,16038806:169175 +k1,2348:28593105,16038806:169176 +k1,2348:29828551,16038806:169175 +k1,2348:32583029,16038806:0 +) +(1,2349:6764466,16903886:25818563,355205,126483 +k1,2349:32583028,16903886:24051056 +g1,2349:32583028,16903886 +) +] +g1,2349:32583029,17030369 +) +h1,2349:6630773,17030369:0,0,0 +(1,2352:6630773,17895449:25952256,505283,134348 +h1,2351:6630773,17895449:983040,0,0 +k1,2351:9914387,17895449:205388 +(1,2351:9914387,17895449:0,452978,115847 +r1,2421:13086347,17895449:3171960,568825,115847 +k1,2351:9914387,17895449:-3171960 +) +(1,2351:9914387,17895449:3171960,452978,115847 +k1,2351:9914387,17895449:3277 +h1,2351:13083070,17895449:0,411205,112570 +) +k1,2351:13291735,17895449:205388 +k1,2351:15866904,17895449:205387 +k1,2351:19413973,17895449:205388 +k1,2351:20723643,17895449:205388 +k1,2351:21676797,17895449:205388 +k1,2351:24854243,17895449:205388 +k1,2351:26251075,17895449:205387 +k1,2351:29175552,17895449:205388 +k1,2351:30137225,17895449:205388 +k1,2352:32583029,17895449:0 +) +(1,2352:6630773,18760529:25952256,473825,134348 +g1,2351:8565395,18760529 +(1,2351:8565395,18760529:0,452978,122846 +r1,2421:12440779,18760529:3875384,575824,122846 +k1,2351:8565395,18760529:-3875384 +) +(1,2351:8565395,18760529:3875384,452978,122846 +k1,2351:8565395,18760529:3277 +h1,2351:12437502,18760529:0,411205,112570 +) +g1,2351:12640008,18760529 +g1,2351:13522122,18760529 +(1,2351:13522122,18760529:0,452978,115847 +r1,2421:16342371,18760529:2820249,568825,115847 +k1,2351:13522122,18760529:-2820249 +) +(1,2351:13522122,18760529:2820249,452978,115847 +k1,2351:13522122,18760529:3277 +h1,2351:16339094,18760529:0,411205,112570 +) +k1,2352:32583029,18760529:16066988 +g1,2352:32583029,18760529 +) +(1,2354:6630773,19625609:25952256,505283,126483 +h1,2353:6630773,19625609:983040,0,0 +g1,2353:8855064,19625609 +g1,2353:12268834,19625609 +g1,2353:13336415,19625609 +g1,2353:14639926,19625609 +g1,2353:16276360,19625609 +g1,2353:17127017,19625609 +(1,2353:17127017,19625609:0,414482,115847 +r1,2421:17485283,19625609:358266,530329,115847 +k1,2353:17127017,19625609:-358266 +) +(1,2353:17127017,19625609:358266,414482,115847 +k1,2353:17127017,19625609:3277 +h1,2353:17482006,19625609:0,411205,112570 +) +g1,2353:17684512,19625609 +g1,2353:18239601,19625609 +g1,2353:21196585,19625609 +g1,2353:22081976,19625609 +g1,2353:24356730,19625609 +g1,2353:26424390,19625609 +g1,2353:27306504,19625609 +g1,2353:27861593,19625609 +k1,2354:32583029,19625609:2036426 +g1,2354:32583029,19625609 +) +v1,2356:6630773,20310464:0,393216,0 +(1,2369:6630773,23065898:25952256,3148650,196608 +g1,2369:6630773,23065898 +g1,2369:6630773,23065898 +g1,2369:6434165,23065898 +(1,2369:6434165,23065898:0,3148650,196608 +r1,2421:32779637,23065898:26345472,3345258,196608 +k1,2369:6434165,23065898:-26345472 +) +(1,2369:6434165,23065898:26345472,3148650,196608 +[1,2369:6630773,23065898:25952256,2952042,0 +(1,2358:6630773,20538295:25952256,424439,106246 +(1,2357:6630773,20538295:0,0,0 +g1,2357:6630773,20538295 +g1,2357:6630773,20538295 +g1,2357:6303093,20538295 +(1,2357:6303093,20538295:0,0,0 +) +g1,2357:6630773,20538295 +) +k1,2358:6630773,20538295:0 +g1,2358:9618359,20538295 +g1,2358:10282267,20538295 +g1,2358:15261576,20538295 +g1,2358:17253300,20538295 +g1,2358:17917208,20538295 +g1,2358:18913070,20538295 +g1,2358:20572840,20538295 +g1,2358:21236748,20538295 +h1,2358:21900656,20538295:0,0,0 +k1,2358:32583029,20538295:10682373 +g1,2358:32583029,20538295 +) +(1,2362:6630773,21354222:25952256,424439,79822 +(1,2360:6630773,21354222:0,0,0 +g1,2360:6630773,21354222 +g1,2360:6630773,21354222 +g1,2360:6303093,21354222 +(1,2360:6303093,21354222:0,0,0 +) +g1,2360:6630773,21354222 +) +g1,2362:7626635,21354222 +g1,2362:8954451,21354222 +h1,2362:11278129,21354222:0,0,0 +k1,2362:32583029,21354222:21304900 +g1,2362:32583029,21354222 +) +(1,2364:6630773,22170149:25952256,424439,106246 +(1,2363:6630773,22170149:0,0,0 +g1,2363:6630773,22170149 +g1,2363:6630773,22170149 +g1,2363:6303093,22170149 +(1,2363:6303093,22170149:0,0,0 +) +g1,2363:6630773,22170149 +) +k1,2364:6630773,22170149:0 +g1,2364:9618359,22170149 +g1,2364:10282267,22170149 +g1,2364:15925484,22170149 +g1,2364:20904793,22170149 +g1,2364:22896517,22170149 +g1,2364:23560425,22170149 +g1,2364:24556287,22170149 +g1,2364:26216057,22170149 +g1,2364:26879965,22170149 +h1,2364:27875827,22170149:0,0,0 +k1,2364:32583029,22170149:4707202 +g1,2364:32583029,22170149 +) +(1,2368:6630773,22986076:25952256,424439,79822 +(1,2366:6630773,22986076:0,0,0 +g1,2366:6630773,22986076 +g1,2366:6630773,22986076 +g1,2366:6303093,22986076 +(1,2366:6303093,22986076:0,0,0 +) +g1,2366:6630773,22986076 +) +g1,2368:7626635,22986076 +g1,2368:8954451,22986076 +g1,2368:12273990,22986076 +h1,2368:14929621,22986076:0,0,0 +k1,2368:32583029,22986076:17653408 +g1,2368:32583029,22986076 +) +] +) +g1,2369:32583029,23065898 +g1,2369:6630773,23065898 +g1,2369:6630773,23065898 +g1,2369:32583029,23065898 +g1,2369:32583029,23065898 +) +h1,2369:6630773,23262506:0,0,0 +(1,2373:6630773,24127586:25952256,513147,134348 +h1,2372:6630773,24127586:983040,0,0 +k1,2372:11994547,24127586:286700 +k1,2372:12812745,24127586:286701 +k1,2372:14676897,24127586:286700 +k1,2372:15566528,24127586:286700 +k1,2372:17671853,24127586:286701 +k1,2372:18720081,24127586:286700 +k1,2372:21124905,24127586:286700 +k1,2372:24107102,24127586:286701 +(1,2372:24107102,24127586:0,452978,115847 +r1,2421:26927351,24127586:2820249,568825,115847 +k1,2372:24107102,24127586:-2820249 +) +(1,2372:24107102,24127586:2820249,452978,115847 +k1,2372:24107102,24127586:3277 +h1,2372:26924074,24127586:0,411205,112570 +) +k1,2372:27214051,24127586:286700 +k1,2372:28310121,24127586:286700 +k1,2372:29615907,24127586:286701 +k1,2372:30976742,24127586:286700 +k1,2372:32583029,24127586:0 +) +(1,2373:6630773,24992666:25952256,513147,134348 +k1,2372:8125084,24992666:194732 +k1,2372:9684277,24992666:194733 +k1,2372:10538301,24992666:194732 +k1,2372:11752119,24992666:194733 +k1,2372:15592619,24992666:194732 +k1,2372:18533965,24992666:194732 +(1,2372:18533965,24992666:0,414482,115847 +r1,2421:19243943,24992666:709978,530329,115847 +k1,2372:18533965,24992666:-709978 +) +(1,2372:18533965,24992666:709978,414482,115847 +k1,2372:18533965,24992666:3277 +h1,2372:19240666,24992666:0,411205,112570 +) +k1,2372:19612346,24992666:194733 +k1,2372:21575239,24992666:194732 +k1,2372:22789057,24992666:194733 +k1,2372:26056117,24992666:194732 +k1,2372:28456137,24992666:194733 +k1,2372:29302297,24992666:194732 +k1,2373:32583029,24992666:0 +) +(1,2373:6630773,25857746:25952256,513147,115847 +(1,2372:6630773,25857746:0,414482,115847 +r1,2421:6989039,25857746:358266,530329,115847 +k1,2372:6630773,25857746:-358266 +) +(1,2372:6630773,25857746:358266,414482,115847 +k1,2372:6630773,25857746:3277 +h1,2372:6985762,25857746:0,411205,112570 +) +k1,2372:7284892,25857746:295853 +k1,2372:8247901,25857746:295853 +(1,2372:8247901,25857746:0,452978,115847 +r1,2421:11068150,25857746:2820249,568825,115847 +k1,2372:8247901,25857746:-2820249 +) +(1,2372:8247901,25857746:2820249,452978,115847 +k1,2372:8247901,25857746:3277 +h1,2372:11064873,25857746:0,411205,112570 +) +k1,2372:11364003,25857746:295853 +k1,2372:13281872,25857746:295853 +k1,2372:14193763,25857746:295853 +k1,2372:15692857,25857746:295853 +k1,2372:17355791,25857746:295853 +k1,2372:18399410,25857746:295853 +k1,2372:19051123,25857746:295853 +k1,2372:21858316,25857746:295853 +k1,2372:24105831,25857746:295853 +k1,2372:25844131,25857746:295853 +k1,2372:26495844,25857746:295853 +k1,2372:29723122,25857746:295853 +k1,2372:31399819,25857746:295853 +k1,2372:32227169,25857746:295853 +k1,2372:32583029,25857746:0 +) +(1,2373:6630773,26722826:25952256,513147,126483 +k1,2372:10712594,26722826:208643 +k1,2372:13895915,26722826:208642 +k1,2372:14866086,26722826:208643 +k1,2372:18223079,26722826:208643 +k1,2372:19497992,26722826:208642 +k1,2372:22729811,26722826:208643 +k1,2372:23663281,26722826:208642 +k1,2372:24891009,26722826:208643 +k1,2372:27585433,26722826:208643 +k1,2372:28453367,26722826:208642 +k1,2372:31966991,26722826:208643 +k1,2372:32583029,26722826:0 +) +(1,2373:6630773,27587906:25952256,505283,134348 +k1,2372:7846936,27587906:197078 +k1,2372:9909824,27587906:197078 +k1,2372:12312189,27587906:197078 +k1,2372:13195430,27587906:197079 +k1,2372:16464836,27587906:197078 +k1,2372:17313342,27587906:197078 +(1,2372:17313342,27587906:0,414482,115847 +r1,2421:17671608,27587906:358266,530329,115847 +k1,2372:17313342,27587906:-358266 +) +(1,2372:17313342,27587906:358266,414482,115847 +k1,2372:17313342,27587906:3277 +h1,2372:17668331,27587906:0,411205,112570 +) +k1,2372:17868686,27587906:197078 +k1,2372:20623634,27587906:197078 +k1,2372:24485485,27587906:197078 +k1,2372:25752112,27587906:197079 +k1,2372:26968275,27587906:197078 +k1,2372:28845696,27587906:197078 +k1,2372:31821501,27587906:197078 +k1,2373:32583029,27587906:0 +) +(1,2373:6630773,28452986:25952256,505283,134348 +(1,2372:6630773,28452986:0,452978,115847 +r1,2421:9099310,28452986:2468537,568825,115847 +k1,2372:6630773,28452986:-2468537 +) +(1,2372:6630773,28452986:2468537,452978,115847 +k1,2372:6630773,28452986:3277 +h1,2372:9096033,28452986:0,411205,112570 +) +g1,2372:9298539,28452986 +g1,2372:10990678,28452986 +g1,2372:12256178,28452986 +k1,2373:32583028,28452986:17912504 +g1,2373:32583028,28452986 +) +v1,2375:6630773,29137841:0,393216,0 +(1,2384:6630773,31631131:25952256,2886506,196608 +g1,2384:6630773,31631131 +g1,2384:6630773,31631131 +g1,2384:6434165,31631131 +(1,2384:6434165,31631131:0,2886506,196608 +r1,2421:32779637,31631131:26345472,3083114,196608 +k1,2384:6434165,31631131:-26345472 +) +(1,2384:6434165,31631131:26345472,2886506,196608 +[1,2384:6630773,31631131:25952256,2689898,0 +(1,2377:6630773,29365672:25952256,424439,86428 +(1,2376:6630773,29365672:0,0,0 +g1,2376:6630773,29365672 +g1,2376:6630773,29365672 +g1,2376:6303093,29365672 +(1,2376:6303093,29365672:0,0,0 +) +g1,2376:6630773,29365672 +) +g1,2377:8290543,29365672 +g1,2377:9286405,29365672 +g1,2377:14929622,29365672 +h1,2377:19245023,29365672:0,0,0 +k1,2377:32583029,29365672:13338006 +g1,2377:32583029,29365672 +) +(1,2378:6630773,30050527:25952256,424439,106246 +h1,2378:6630773,30050527:0,0,0 +g1,2378:9618359,30050527 +g1,2378:10282267,30050527 +g1,2378:12273991,30050527 +g1,2378:14265715,30050527 +g1,2378:14929623,30050527 +g1,2378:15925485,30050527 +g1,2378:17585255,30050527 +g1,2378:18249163,30050527 +g1,2378:19245025,30050527 +g1,2378:20240887,30050527 +h1,2378:21900657,30050527:0,0,0 +k1,2378:32583029,30050527:10682372 +g1,2378:32583029,30050527 +) +(1,2379:6630773,30735382:25952256,398014,6605 +h1,2379:6630773,30735382:0,0,0 +h1,2379:7958589,30735382:0,0,0 +k1,2379:32583029,30735382:24624440 +g1,2379:32583029,30735382 +) +(1,2383:6630773,31551309:25952256,424439,79822 +(1,2381:6630773,31551309:0,0,0 +g1,2381:6630773,31551309 +g1,2381:6630773,31551309 +g1,2381:6303093,31551309 +(1,2381:6303093,31551309:0,0,0 +) +g1,2381:6630773,31551309 +) +g1,2383:7626635,31551309 +g1,2383:8954451,31551309 +g1,2383:13601806,31551309 +h1,2383:17585253,31551309:0,0,0 +k1,2383:32583029,31551309:14997776 +g1,2383:32583029,31551309 +) +] +) +g1,2384:32583029,31631131 +g1,2384:6630773,31631131 +g1,2384:6630773,31631131 +g1,2384:32583029,31631131 +g1,2384:32583029,31631131 +) +h1,2384:6630773,31827739:0,0,0 +(1,2388:6630773,32692819:25952256,513147,126483 +h1,2387:6630773,32692819:983040,0,0 +k1,2387:8289141,32692819:197571 +k1,2387:9355063,32692819:197570 +k1,2387:10989839,32692819:197571 +k1,2387:13198054,32692819:197570 +k1,2387:14047053,32692819:197571 +k1,2387:15711319,32692819:197570 +(1,2387:15711319,32692819:0,414482,115847 +r1,2421:17476432,32692819:1765113,530329,115847 +k1,2387:15711319,32692819:-1765113 +) +(1,2387:15711319,32692819:1765113,414482,115847 +k1,2387:15711319,32692819:3277 +h1,2387:17473155,32692819:0,411205,112570 +) +k1,2387:17674003,32692819:197571 +k1,2387:19063018,32692819:197570 +(1,2387:19063018,32692819:0,414482,115847 +r1,2421:20476419,32692819:1413401,530329,115847 +k1,2387:19063018,32692819:-1413401 +) +(1,2387:19063018,32692819:1413401,414482,115847 +k1,2387:19063018,32692819:3277 +h1,2387:20473142,32692819:0,411205,112570 +) +k1,2387:20673990,32692819:197571 +k1,2387:22305488,32692819:197570 +k1,2387:23878660,32692819:197571 +k1,2387:25398091,32692819:197570 +k1,2387:26254954,32692819:197571 +k1,2387:27471609,32692819:197570 +k1,2387:29349523,32692819:197571 +k1,2387:30356463,32692819:197570 +k1,2387:31573119,32692819:197571 +k1,2388:32583029,32692819:0 +) +(1,2388:6630773,33557899:25952256,513147,134348 +g1,2387:7489294,33557899 +g1,2387:8707608,33557899 +g1,2387:12552605,33557899 +g1,2387:15498448,33557899 +(1,2387:15498448,33557899:0,414482,115847 +r1,2421:16208426,33557899:709978,530329,115847 +k1,2387:15498448,33557899:-709978 +) +(1,2387:15498448,33557899:709978,414482,115847 +k1,2387:15498448,33557899:3277 +h1,2387:16205149,33557899:0,411205,112570 +) +g1,2387:16407655,33557899 +g1,2387:17943818,33557899 +g1,2387:18890813,33557899 +k1,2388:32583029,33557899:12005319 +g1,2388:32583029,33557899 +) +v1,2390:6630773,34242754:0,393216,0 +(1,2399:6630773,36736044:25952256,2886506,196608 +g1,2399:6630773,36736044 +g1,2399:6630773,36736044 +g1,2399:6434165,36736044 +(1,2399:6434165,36736044:0,2886506,196608 +r1,2421:32779637,36736044:26345472,3083114,196608 +k1,2399:6434165,36736044:-26345472 +) +(1,2399:6434165,36736044:26345472,2886506,196608 +[1,2399:6630773,36736044:25952256,2689898,0 +(1,2392:6630773,34470585:25952256,424439,86428 +(1,2391:6630773,34470585:0,0,0 +g1,2391:6630773,34470585 +g1,2391:6630773,34470585 +g1,2391:6303093,34470585 +(1,2391:6303093,34470585:0,0,0 +) +g1,2391:6630773,34470585 +) +g1,2392:8290543,34470585 +g1,2392:9286405,34470585 +g1,2392:14929622,34470585 +h1,2392:19245023,34470585:0,0,0 +k1,2392:32583029,34470585:13338006 +g1,2392:32583029,34470585 +) +(1,2393:6630773,35155440:25952256,424439,106246 +h1,2393:6630773,35155440:0,0,0 +g1,2393:9618359,35155440 +g1,2393:10282267,35155440 +g1,2393:12273991,35155440 +g1,2393:14265715,35155440 +g1,2393:14929623,35155440 +g1,2393:15925485,35155440 +g1,2393:17585255,35155440 +g1,2393:18249163,35155440 +g1,2393:19245025,35155440 +g1,2393:20240887,35155440 +h1,2393:21900657,35155440:0,0,0 +k1,2393:32583029,35155440:10682372 +g1,2393:32583029,35155440 +) +(1,2394:6630773,35840295:25952256,407923,9908 +h1,2394:6630773,35840295:0,0,0 +h1,2394:7958589,35840295:0,0,0 +k1,2394:32583029,35840295:24624440 +g1,2394:32583029,35840295 +) +(1,2398:6630773,36656222:25952256,424439,79822 +(1,2396:6630773,36656222:0,0,0 +g1,2396:6630773,36656222 +g1,2396:6630773,36656222 +g1,2396:6303093,36656222 +(1,2396:6303093,36656222:0,0,0 +) +g1,2396:6630773,36656222 +) +g1,2398:7626635,36656222 +g1,2398:8954451,36656222 +g1,2398:13601806,36656222 +h1,2398:17585253,36656222:0,0,0 +k1,2398:32583029,36656222:14997776 +g1,2398:32583029,36656222 +) +] +) +g1,2399:32583029,36736044 +g1,2399:6630773,36736044 +g1,2399:6630773,36736044 +g1,2399:32583029,36736044 +g1,2399:32583029,36736044 +) +h1,2399:6630773,36932652:0,0,0 +v1,2403:6630773,37797732:0,393216,0 +(1,2417:6630773,43935554:25952256,6531038,0 +g1,2417:6630773,43935554 +g1,2417:6237557,43935554 +r1,2421:6368629,43935554:131072,6531038,0 +g1,2417:6567858,43935554 +g1,2417:6764466,43935554 +[1,2417:6764466,43935554:25818563,6531038,0 +(1,2405:6764466,38070209:25818563,665693,196608 +(1,2403:6764466,38070209:0,665693,196608 +r1,2421:8010564,38070209:1246098,862301,196608 +k1,2403:6764466,38070209:-1246098 +) +(1,2403:6764466,38070209:1246098,665693,196608 +) +k1,2403:8308670,38070209:298106 +k1,2403:10034888,38070209:327680 +k1,2403:13906017,38070209:298106 +k1,2403:14559982,38070209:298105 +k1,2403:16212062,38070209:298106 +k1,2403:19186658,38070209:298106 +k1,2403:20722739,38070209:298106 +k1,2403:21680137,38070209:298106 +k1,2403:24580022,38070209:298106 +k1,2403:26208508,38070209:298105 +k1,2403:26862474,38070209:298106 +k1,2403:29856076,38070209:298106 +k1,2403:32583029,38070209:0 +) +(1,2405:6764466,38935289:25818563,505283,134348 +k1,2403:7560324,38935289:264361 +k1,2403:8476112,38935289:264360 +k1,2403:12523211,38935289:264361 +k1,2403:13415407,38935289:264361 +k1,2403:14698852,38935289:264360 +k1,2403:17624630,38935289:264361 +k1,2403:19931093,38935289:264361 +k1,2403:21063806,38935289:264361 +k1,2403:22262709,38935289:264360 +(1,2403:22262709,38935289:0,414482,115847 +r1,2421:24027822,38935289:1765113,530329,115847 +k1,2403:22262709,38935289:-1765113 +) +(1,2403:22262709,38935289:1765113,414482,115847 +k1,2403:22262709,38935289:3277 +h1,2403:24024545,38935289:0,411205,112570 +) +k1,2403:24292183,38935289:264361 +k1,2403:25747989,38935289:264361 +(1,2403:25747989,38935289:0,414482,115847 +r1,2421:27161390,38935289:1413401,530329,115847 +k1,2403:25747989,38935289:-1413401 +) +(1,2403:25747989,38935289:1413401,414482,115847 +k1,2403:25747989,38935289:3277 +h1,2403:27158113,38935289:0,411205,112570 +) +k1,2403:27425750,38935289:264360 +k1,2403:30932832,38935289:264361 +k1,2403:32583029,38935289:0 +) +(1,2405:6764466,39800369:25818563,505283,115847 +k1,2403:10316999,39800369:247552 +k1,2403:12006998,39800369:247552 +k1,2403:13998462,39800369:247551 +k1,2403:14862052,39800369:247552 +(1,2403:14862052,39800369:0,452978,115847 +r1,2421:16627165,39800369:1765113,568825,115847 +k1,2403:14862052,39800369:-1765113 +) +(1,2403:14862052,39800369:1765113,452978,115847 +k1,2403:14862052,39800369:3277 +h1,2403:16623888,39800369:0,411205,112570 +) +k1,2403:17048387,39800369:247552 +k1,2403:17923774,39800369:247552 +k1,2403:19374567,39800369:247552 +k1,2403:21162869,39800369:247551 +k1,2403:21941918,39800369:247552 +(1,2403:21941918,39800369:0,452978,115847 +r1,2421:23707031,39800369:1765113,568825,115847 +k1,2403:21941918,39800369:-1765113 +) +(1,2403:21941918,39800369:1765113,452978,115847 +k1,2403:21941918,39800369:3277 +h1,2403:23703754,39800369:0,411205,112570 +) +k1,2403:23954583,39800369:247552 +k1,2403:27296090,39800369:247552 +k1,2404:27296090,39800369:0 +k1,2404:28226526,39800369:247551 +(1,2404:28226526,39800369:0,414482,115847 +r1,2421:29991639,39800369:1765113,530329,115847 +k1,2404:28226526,39800369:-1765113 +) +(1,2404:28226526,39800369:1765113,414482,115847 +k1,2404:28226526,39800369:3277 +h1,2404:29988362,39800369:0,411205,112570 +) +k1,2404:30239191,39800369:247552 +k1,2404:31169628,39800369:247552 +(1,2404:31169628,39800369:0,414482,115847 +r1,2421:32583029,39800369:1413401,530329,115847 +k1,2404:31169628,39800369:-1413401 +) +(1,2404:31169628,39800369:1413401,414482,115847 +k1,2404:31169628,39800369:3277 +h1,2404:32579752,39800369:0,411205,112570 +) +k1,2404:32583029,39800369:0 +) +(1,2405:6764466,40665449:25818563,513147,134348 +g1,2404:9731936,40665449 +g1,2404:11205840,40665449 +g1,2404:12608310,40665449 +g1,2404:14120225,40665449 +g1,2404:17281026,40665449 +g1,2404:18131683,40665449 +g1,2404:19597068,40665449 +g1,2404:20862568,40665449 +g1,2404:22080882,40665449 +k1,2405:32583029,40665449:8070761 +g1,2405:32583029,40665449 +) +v1,2407:6764466,41350304:0,393216,0 +(1,2414:6764466,43738946:25818563,2781858,196608 +g1,2414:6764466,43738946 +g1,2414:6764466,43738946 +g1,2414:6567858,43738946 +(1,2414:6567858,43738946:0,2781858,196608 +r1,2421:32779637,43738946:26211779,2978466,196608 +k1,2414:6567857,43738946:-26211780 +) +(1,2414:6567858,43738946:26211779,2781858,196608 +[1,2414:6764466,43738946:25818563,2585250,0 +(1,2409:6764466,41578135:25818563,424439,86428 +(1,2408:6764466,41578135:0,0,0 +g1,2408:6764466,41578135 +g1,2408:6764466,41578135 +g1,2408:6436786,41578135 +(1,2408:6436786,41578135:0,0,0 +) +g1,2408:6764466,41578135 +) +g1,2409:8424236,41578135 +g1,2409:9420098,41578135 +g1,2409:15063315,41578135 +h1,2409:19378716,41578135:0,0,0 +k1,2409:32583029,41578135:13204313 +g1,2409:32583029,41578135 +) +(1,2410:6764466,42262990:25818563,424439,106246 +h1,2410:6764466,42262990:0,0,0 +g1,2410:9752052,42262990 +g1,2410:10415960,42262990 +g1,2410:12407684,42262990 +g1,2410:14399408,42262990 +g1,2410:15063316,42262990 +g1,2410:16059178,42262990 +g1,2410:17718948,42262990 +g1,2410:18382856,42262990 +g1,2410:19710672,42262990 +g1,2410:20706534,42262990 +h1,2410:22366304,42262990:0,0,0 +k1,2410:32583029,42262990:10216725 +g1,2410:32583029,42262990 +) +(1,2411:6764466,42947845:25818563,407923,8257 +h1,2411:6764466,42947845:0,0,0 +h1,2411:8092282,42947845:0,0,0 +k1,2411:32583030,42947845:24490748 +g1,2411:32583030,42947845 +) +(1,2412:6764466,43632700:25818563,424439,106246 +h1,2412:6764466,43632700:0,0,0 +g1,2412:11079868,43632700 +g1,2412:11743776,43632700 +g1,2412:13735500,43632700 +k1,2412:13735500,43632700:9909 +h1,2412:14409317,43632700:0,0,0 +k1,2412:32583029,43632700:18173712 +g1,2412:32583029,43632700 +) +] +) +g1,2414:32583029,43738946 +g1,2414:6764466,43738946 +g1,2414:6764466,43738946 +g1,2414:32583029,43738946 +g1,2414:32583029,43738946 +) +h1,2414:6764466,43935554:0,0,0 +] +g1,2417:32583029,43935554 +) +h1,2417:6630773,43935554:0,0,0 +(1,2420:6630773,44800634:25952256,505283,134348 +h1,2419:6630773,44800634:983040,0,0 +k1,2419:8579992,44800634:148290 +k1,2419:9344319,44800634:148289 +k1,2419:9907401,44800634:148239 +k1,2419:11507313,44800634:148290 +k1,2419:14630282,44800634:148290 +k1,2419:16458914,44800634:148289 +k1,2419:17138701,44800634:148290 +k1,2419:17642850,44800634:148289 +k1,2419:19656950,44800634:148290 +k1,2419:23161994,44800634:148290 +k1,2419:24071811,44800634:148289 +k1,2419:25640266,44800634:148290 +k1,2419:26439984,44800634:148290 +k1,2419:28340050,44800634:148289 +k1,2419:31966991,44800634:148290 +k1,2419:32583029,44800634:0 +) +] +(1,2421:32583029,45706769:0,0,0 +g1,2421:32583029,45706769 +) +) +] +(1,2421:6630773,47279633:25952256,0,0 +h1,2421:6630773,47279633:25952256,0,0 +) +] +(1,2421:4262630,4025873:0,0,0 +[1,2421:-473656,4025873:0,0,0 +(1,2421:-473656,-710413:0,0,0 +(1,2421:-473656,-710413:0,0,0 +g1,2421:-473656,-710413 +) +g1,2421:-473656,-710413 +) +] +) +] +!31214 +}58 +Input:507:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:508:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:509:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:510:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:511:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:512:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:513:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:514:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:515:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:516:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:517:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:518:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:519:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:520:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:521:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:522:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:523:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1592 -{78 -[1,4047:4262630,47279633:28320399,43253760,0 -(1,4047:4262630,4025873:0,0,0 -[1,4047:-473656,4025873:0,0,0 -(1,4047:-473656,-710413:0,0,0 -(1,4047:-473656,-644877:0,0,0 -k1,4047:-473656,-644877:-65536 +{59 +[1,2526:4262630,47279633:28320399,43253760,0 +(1,2526:4262630,4025873:0,0,0 +[1,2526:-473656,4025873:0,0,0 +(1,2526:-473656,-710413:0,0,0 +(1,2526:-473656,-644877:0,0,0 +k1,2526:-473656,-644877:-65536 ) -(1,4047:-473656,4736287:0,0,0 -k1,4047:-473656,4736287:5209943 +(1,2526:-473656,4736287:0,0,0 +k1,2526:-473656,4736287:5209943 ) -g1,4047:-473656,-710413 +g1,2526:-473656,-710413 ) ] ) -[1,4047:6630773,47279633:25952256,43253760,0 -[1,4047:6630773,4812305:25952256,786432,0 -(1,4047:6630773,4812305:25952256,505283,126483 -(1,4047:6630773,4812305:25952256,505283,126483 -g1,4047:3078558,4812305 -[1,4047:3078558,4812305:0,0,0 -(1,4047:3078558,2439708:0,1703936,0 -k1,4047:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,4047:2537886,2439708:1179648,16384,0 +[1,2526:6630773,47279633:25952256,43253760,0 +[1,2526:6630773,4812305:25952256,786432,0 +(1,2526:6630773,4812305:25952256,505283,11795 +(1,2526:6630773,4812305:25952256,505283,11795 +g1,2526:3078558,4812305 +[1,2526:3078558,4812305:0,0,0 +(1,2526:3078558,2439708:0,1703936,0 +k1,2526:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,2526:2537886,2439708:1179648,16384,0 ) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,4047:3078558,1915420:16384,1179648,0 +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,2526:3078558,1915420:16384,1179648,0 ) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) ] ) ) ) ] -[1,4047:3078558,4812305:0,0,0 -(1,4047:3078558,2439708:0,1703936,0 -g1,4047:29030814,2439708 -g1,4047:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,4047:36151628,1915420:16384,1179648,0 +[1,2526:3078558,4812305:0,0,0 +(1,2526:3078558,2439708:0,1703936,0 +g1,2526:29030814,2439708 +g1,2526:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,2526:36151628,1915420:16384,1179648,0 ) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) ] ) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,4047:37855564,2439708:1179648,16384,0 +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,2526:37855564,2439708:1179648,16384,0 ) ) -k1,4047:3078556,2439708:-34777008 +k1,2526:3078556,2439708:-34777008 ) ] -[1,4047:3078558,4812305:0,0,0 -(1,4047:3078558,49800853:0,16384,2228224 -k1,4047:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,4047:2537886,49800853:1179648,16384,0 +[1,2526:3078558,4812305:0,0,0 +(1,2526:3078558,49800853:0,16384,2228224 +k1,2526:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,2526:2537886,49800853:1179648,16384,0 ) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,4047:3078558,51504789:16384,1179648,0 +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,2526:3078558,51504789:16384,1179648,0 ) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) ] ) ) ) ] -[1,4047:3078558,4812305:0,0,0 -(1,4047:3078558,49800853:0,16384,2228224 -g1,4047:29030814,49800853 -g1,4047:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,4047:36151628,51504789:16384,1179648,0 +[1,2526:3078558,4812305:0,0,0 +(1,2526:3078558,49800853:0,16384,2228224 +g1,2526:29030814,49800853 +g1,2526:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,2526:36151628,51504789:16384,1179648,0 ) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 ) ] ) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,4047:37855564,49800853:1179648,16384,0 +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,2526:37855564,49800853:1179648,16384,0 ) ) -k1,4047:3078556,49800853:-34777008 +k1,2526:3078556,49800853:-34777008 +) +] +g1,2526:6630773,4812305 +k1,2526:22348274,4812305:14920583 +g1,2526:23970945,4812305 +g1,2526:24793421,4812305 +g1,2526:27528893,4812305 +g1,2526:28938572,4812305 +) +) +] +[1,2526:6630773,45706769:25952256,40108032,0 +(1,2526:6630773,45706769:25952256,40108032,0 +(1,2526:6630773,45706769:0,0,0 +g1,2526:6630773,45706769 +) +[1,2526:6630773,45706769:25952256,40108032,0 +(1,2420:6630773,6254097:25952256,505283,134348 +k1,2419:9482066,6254097:185288 +k1,2419:10318782,6254097:185288 +k1,2419:14588274,6254097:185288 +k1,2419:16628231,6254097:185288 +k1,2419:17622889,6254097:185288 +k1,2419:19691026,6254097:185288 +k1,2419:22072425,6254097:185288 +k1,2419:22940598,6254097:185288 +k1,2419:25310201,6254097:185288 +k1,2419:27579534,6254097:185288 +k1,2419:30423618,6254097:185288 +k1,2419:32583029,6254097:0 +) +(1,2420:6630773,7119177:25952256,513147,7863 +g1,2419:8469057,7119177 +g1,2419:9659846,7119177 +g1,2419:10518367,7119177 +k1,2420:32583028,7119177:19447808 +g1,2420:32583028,7119177 +) +(1,2422:6630773,7984257:25952256,513147,134348 +h1,2421:6630773,7984257:983040,0,0 +k1,2421:8739669,7984257:296826 +k1,2421:12246449,7984257:296827 +k1,2421:13865136,7984257:296826 +k1,2421:14821255,7984257:296827 +k1,2421:15473941,7984257:296826 +(1,2421:15473941,7984257:0,452978,115847 +r1,2526:18645901,7984257:3171960,568825,115847 +k1,2421:15473941,7984257:-3171960 +) +(1,2421:15473941,7984257:3171960,452978,115847 +k1,2421:15473941,7984257:3277 +h1,2421:18642624,7984257:0,411205,112570 +) +k1,2421:18942728,7984257:296827 +k1,2421:21105364,7984257:296826 +k1,2421:22158476,7984257:296827 +k1,2421:25435224,7984257:296826 +k1,2421:26130510,7984257:296827 +k1,2421:28924257,7984257:296826 +k1,2421:30089436,7984257:296827 +k1,2421:31490544,7984257:296826 +k1,2421:32583029,7984257:0 +) +(1,2422:6630773,8849337:25952256,513147,126483 +k1,2421:9878416,8849337:221846 +(1,2421:9878416,8849337:0,452978,115847 +r1,2526:11643529,8849337:1765113,568825,115847 +k1,2421:9878416,8849337:-1765113 +) +(1,2421:9878416,8849337:1765113,452978,115847 +k1,2421:9878416,8849337:3277 +h1,2421:11640252,8849337:0,411205,112570 +) +k1,2421:11865374,8849337:221845 +k1,2421:12770105,8849337:221846 +(1,2421:12770105,8849337:0,452978,122846 +r1,2526:14886930,8849337:2116825,575824,122846 +k1,2421:12770105,8849337:-2116825 +) +(1,2421:12770105,8849337:2116825,452978,122846 +k1,2421:12770105,8849337:3277 +h1,2421:14883653,8849337:0,411205,112570 +) +k1,2421:15282446,8849337:221846 +k1,2421:16700978,8849337:221845 +k1,2421:18228957,8849337:221846 +k1,2421:21112219,8849337:221845 +k1,2421:22756852,8849337:221846 +k1,2421:24633482,8849337:221846 +(1,2421:24633482,8849337:0,452978,115847 +r1,2526:27805442,8849337:3171960,568825,115847 +k1,2421:24633482,8849337:-3171960 +) +(1,2421:24633482,8849337:3171960,452978,115847 +k1,2421:24633482,8849337:3277 +h1,2421:27802165,8849337:0,411205,112570 +) +k1,2421:28027287,8849337:221845 +k1,2421:31510860,8849337:221846 +k1,2421:32583029,8849337:0 +) +(1,2422:6630773,9714417:25952256,505283,134348 +g1,2421:8840647,9714417 +g1,2421:11078046,9714417 +g1,2421:11893313,9714417 +g1,2421:14934183,9714417 +g1,2421:16237694,9714417 +g1,2421:17722739,9714417 +g1,2421:18669734,9714417 +g1,2421:21074250,9714417 +g1,2421:21959641,9714417 +k1,2422:32583029,9714417:7047088 +g1,2422:32583029,9714417 +) +v1,2424:6630773,10399272:0,393216,0 +(1,2431:6630773,11522852:25952256,1516796,196608 +g1,2431:6630773,11522852 +g1,2431:6630773,11522852 +g1,2431:6434165,11522852 +(1,2431:6434165,11522852:0,1516796,196608 +r1,2526:32779637,11522852:26345472,1713404,196608 +k1,2431:6434165,11522852:-26345472 +) +(1,2431:6434165,11522852:26345472,1516796,196608 +[1,2431:6630773,11522852:25952256,1320188,0 +(1,2426:6630773,10627103:25952256,424439,106246 +(1,2425:6630773,10627103:0,0,0 +g1,2425:6630773,10627103 +g1,2425:6630773,10627103 +g1,2425:6303093,10627103 +(1,2425:6303093,10627103:0,0,0 +) +g1,2425:6630773,10627103 +) +k1,2426:6630773,10627103:0 +g1,2426:10614221,10627103 +g1,2426:11278129,10627103 +g1,2426:13269853,10627103 +g1,2426:17253300,10627103 +g1,2426:17917208,10627103 +g1,2426:19908932,10627103 +g1,2426:20572840,10627103 +g1,2426:21236748,10627103 +h1,2426:23892380,10627103:0,0,0 +k1,2426:32583029,10627103:8690649 +g1,2426:32583029,10627103 +) +(1,2430:6630773,11443030:25952256,424439,79822 +(1,2428:6630773,11443030:0,0,0 +g1,2428:6630773,11443030 +g1,2428:6630773,11443030 +g1,2428:6303093,11443030 +(1,2428:6303093,11443030:0,0,0 +) +g1,2428:6630773,11443030 +) +g1,2430:7626635,11443030 +g1,2430:8954451,11443030 +h1,2430:11278129,11443030:0,0,0 +k1,2430:32583029,11443030:21304900 +g1,2430:32583029,11443030 +) +] +) +g1,2431:32583029,11522852 +g1,2431:6630773,11522852 +g1,2431:6630773,11522852 +g1,2431:32583029,11522852 +g1,2431:32583029,11522852 +) +h1,2431:6630773,11719460:0,0,0 +(1,2435:6630773,12584540:25952256,513147,134348 +h1,2434:6630773,12584540:983040,0,0 +k1,2434:9014509,12584540:204009 +k1,2434:12404877,12584540:204008 +k1,2434:15244089,12584540:204009 +(1,2434:15244089,12584540:0,452978,115847 +r1,2526:17009202,12584540:1765113,568825,115847 +k1,2434:15244089,12584540:-1765113 +) +(1,2434:15244089,12584540:1765113,452978,115847 +k1,2434:15244089,12584540:3277 +h1,2434:17005925,12584540:0,411205,112570 +) +k1,2434:17213211,12584540:204009 +k1,2434:21704584,12584540:204008 +k1,2434:23100038,12584540:204009 +(1,2434:23100038,12584540:0,452978,122846 +r1,2526:25216863,12584540:2116825,575824,122846 +k1,2434:23100038,12584540:-2116825 +) +(1,2434:23100038,12584540:2116825,452978,122846 +k1,2434:23100038,12584540:3277 +h1,2434:25213586,12584540:0,411205,112570 +) +k1,2434:25420872,12584540:204009 +k1,2434:27767252,12584540:204008 +k1,2434:32051532,12584540:204009 +k1,2434:32583029,12584540:0 +) +(1,2435:6630773,13449620:25952256,513147,126483 +k1,2434:8205855,13449620:290576 +k1,2434:9515517,13449620:290577 +k1,2434:11112226,13449620:290576 +k1,2434:14031452,13449620:290577 +k1,2434:15697629,13449620:290576 +k1,2434:17007290,13449620:290576 +k1,2434:18604000,13449620:290577 +k1,2434:20875729,13449620:290576 +k1,2434:23076024,13449620:290576 +k1,2434:25056119,13449620:290577 +k1,2434:26365780,13449620:290576 +k1,2434:28897688,13449620:290577 +k1,2434:31816913,13449620:290576 +k1,2434:32583029,13449620:0 +) +(1,2435:6630773,14314700:25952256,505283,7863 +k1,2435:32583029,14314700:23119790 +g1,2435:32583029,14314700 +) +v1,2437:6630773,14999555:0,393216,0 +(1,2450:6630773,17754989:25952256,3148650,196608 +g1,2450:6630773,17754989 +g1,2450:6630773,17754989 +g1,2450:6434165,17754989 +(1,2450:6434165,17754989:0,3148650,196608 +r1,2526:32779637,17754989:26345472,3345258,196608 +k1,2450:6434165,17754989:-26345472 +) +(1,2450:6434165,17754989:26345472,3148650,196608 +[1,2450:6630773,17754989:25952256,2952042,0 +(1,2439:6630773,15227386:25952256,424439,106246 +(1,2438:6630773,15227386:0,0,0 +g1,2438:6630773,15227386 +g1,2438:6630773,15227386 +g1,2438:6303093,15227386 +(1,2438:6303093,15227386:0,0,0 +) +g1,2438:6630773,15227386 +) +k1,2439:6630773,15227386:0 +g1,2439:10614221,15227386 +g1,2439:11278129,15227386 +g1,2439:13269853,15227386 +g1,2439:17253300,15227386 +g1,2439:17917208,15227386 +g1,2439:19576978,15227386 +g1,2439:20240886,15227386 +g1,2439:20904794,15227386 +h1,2439:25552149,15227386:0,0,0 +k1,2439:32583029,15227386:7030880 +g1,2439:32583029,15227386 +) +(1,2443:6630773,16043313:25952256,424439,79822 +(1,2441:6630773,16043313:0,0,0 +g1,2441:6630773,16043313 +g1,2441:6630773,16043313 +g1,2441:6303093,16043313 +(1,2441:6303093,16043313:0,0,0 +) +g1,2441:6630773,16043313 +) +g1,2443:7626635,16043313 +g1,2443:8954451,16043313 +h1,2443:12937898,16043313:0,0,0 +k1,2443:32583030,16043313:19645132 +g1,2443:32583030,16043313 +) +(1,2445:6630773,16859240:25952256,424439,112852 +(1,2444:6630773,16859240:0,0,0 +g1,2444:6630773,16859240 +g1,2444:6630773,16859240 +g1,2444:6303093,16859240 +(1,2444:6303093,16859240:0,0,0 +) +g1,2444:6630773,16859240 +) +k1,2445:6630773,16859240:0 +g1,2445:10946175,16859240 +g1,2445:11610083,16859240 +g1,2445:13601807,16859240 +g1,2445:17585254,16859240 +g1,2445:18249162,16859240 +g1,2445:19908932,16859240 +g1,2445:20572840,16859240 +g1,2445:21236748,16859240 +h1,2445:25884103,16859240:0,0,0 +k1,2445:32583029,16859240:6698926 +g1,2445:32583029,16859240 +) +(1,2449:6630773,17675167:25952256,424439,79822 +(1,2447:6630773,17675167:0,0,0 +g1,2447:6630773,17675167 +g1,2447:6630773,17675167 +g1,2447:6303093,17675167 +(1,2447:6303093,17675167:0,0,0 +) +g1,2447:6630773,17675167 +) +g1,2449:7626635,17675167 +g1,2449:8954451,17675167 +h1,2449:12605944,17675167:0,0,0 +k1,2449:32583028,17675167:19977084 +g1,2449:32583028,17675167 +) +] +) +g1,2450:32583029,17754989 +g1,2450:6630773,17754989 +g1,2450:6630773,17754989 +g1,2450:32583029,17754989 +g1,2450:32583029,17754989 +) +h1,2450:6630773,17951597:0,0,0 +v1,2454:6630773,18816677:0,393216,0 +(1,2465:6630773,21861235:25952256,3437774,0 +g1,2465:6630773,21861235 +g1,2465:6237557,21861235 +r1,2526:6368629,21861235:131072,3437774,0 +g1,2465:6567858,21861235 +g1,2465:6764466,21861235 +[1,2465:6764466,21861235:25818563,3437774,0 +(1,2455:6764466,19089154:25818563,665693,196608 +(1,2454:6764466,19089154:0,665693,196608 +r1,2526:8010564,19089154:1246098,862301,196608 +k1,2454:6764466,19089154:-1246098 +) +(1,2454:6764466,19089154:1246098,665693,196608 +) +k1,2454:8204624,19089154:194060 +k1,2454:9930842,19089154:327680 +k1,2454:13245072,19089154:194061 +(1,2454:13245072,19089154:0,452978,115847 +r1,2526:15010185,19089154:1765113,568825,115847 +k1,2454:13245072,19089154:-1765113 +) +(1,2454:13245072,19089154:1765113,452978,115847 +k1,2454:13245072,19089154:3277 +h1,2454:15006908,19089154:0,411205,112570 +) +k1,2454:15204245,19089154:194060 +k1,2454:16081190,19089154:194060 +(1,2454:16081190,19089154:0,452978,122846 +r1,2526:18198015,19089154:2116825,575824,122846 +k1,2454:16081190,19089154:-2116825 +) +(1,2454:16081190,19089154:2116825,452978,122846 +k1,2454:16081190,19089154:3277 +h1,2454:18194738,19089154:0,411205,112570 +) +k1,2454:18392075,19089154:194060 +k1,2454:20634136,19089154:194061 +k1,2454:23802875,19089154:194060 +k1,2454:26305113,19089154:194060 +k1,2454:27185335,19089154:194060 +k1,2454:30451724,19089154:194061 +k1,2454:31593435,19089154:194060 +k1,2455:32583029,19089154:0 +) +(1,2455:6764466,19954234:25818563,513147,126483 +k1,2454:9414759,19954234:146162 +(1,2454:9414759,19954234:0,414482,115847 +r1,2526:9773025,19954234:358266,530329,115847 +k1,2454:9414759,19954234:-358266 +) +(1,2454:9414759,19954234:358266,414482,115847 +k1,2454:9414759,19954234:3277 +h1,2454:9769748,19954234:0,411205,112570 +) +k1,2454:10092857,19954234:146162 +k1,2454:11513693,19954234:146161 +k1,2454:12678940,19954234:146162 +k1,2454:13997541,19954234:146162 +k1,2454:17660365,19954234:146162 +k1,2454:19674957,19954234:146161 +k1,2454:21012564,19954234:146162 +k1,2454:22942616,19954234:146162 +k1,2454:24419159,19954234:146162 +k1,2454:25584405,19954234:146161 +k1,2454:27741212,19954234:146162 +k1,2454:30666101,19954234:146162 +k1,2455:32583029,19954234:0 +k1,2455:32583029,19954234:0 +) +v1,2457:6764466,20639089:0,393216,0 +(1,2462:6764466,21664627:25818563,1418754,196608 +g1,2462:6764466,21664627 +g1,2462:6764466,21664627 +g1,2462:6567858,21664627 +(1,2462:6567858,21664627:0,1418754,196608 +r1,2526:32779637,21664627:26211779,1615362,196608 +k1,2462:6567857,21664627:-26211780 +) +(1,2462:6567858,21664627:26211779,1418754,196608 +[1,2462:6764466,21664627:25818563,1222146,0 +(1,2459:6764466,20866920:25818563,424439,106246 +(1,2458:6764466,20866920:0,0,0 +g1,2458:6764466,20866920 +g1,2458:6764466,20866920 +g1,2458:6436786,20866920 +(1,2458:6436786,20866920:0,0,0 +) +g1,2458:6764466,20866920 +) +k1,2459:6764466,20866920:0 +g1,2459:10747914,20866920 +g1,2459:11411822,20866920 +g1,2459:13403546,20866920 +g1,2459:17386993,20866920 +g1,2459:18050901,20866920 +g1,2459:19710671,20866920 +g1,2459:20374579,20866920 +g1,2459:21038487,20866920 +g1,2459:24358027,20866920 +h1,2459:28009520,20866920:0,0,0 +k1,2459:32583029,20866920:4573509 +g1,2459:32583029,20866920 +) +(1,2460:6764466,21551775:25818563,424439,112852 +h1,2460:6764466,21551775:0,0,0 +g1,2460:11079868,21551775 +g1,2460:11743776,21551775 +g1,2460:13735500,21551775 +g1,2460:17718947,21551775 +g1,2460:18382855,21551775 +g1,2460:20042625,21551775 +g1,2460:20706533,21551775 +g1,2460:21370441,21551775 +g1,2460:24689981,21551775 +h1,2460:28341474,21551775:0,0,0 +k1,2460:32583029,21551775:4241555 +g1,2460:32583029,21551775 +) +] +) +g1,2462:32583029,21664627 +g1,2462:6764466,21664627 +g1,2462:6764466,21664627 +g1,2462:32583029,21664627 +g1,2462:32583029,21664627 +) +h1,2462:6764466,21861235:0,0,0 +] +g1,2465:32583029,21861235 +) +h1,2465:6630773,21861235:0,0,0 +(1,2468:6630773,22726315:25952256,505283,134348 +h1,2467:6630773,22726315:983040,0,0 +k1,2467:10581888,22726315:178207 +(1,2467:10581888,22726315:0,452978,122846 +r1,2526:12698713,22726315:2116825,575824,122846 +k1,2467:10581888,22726315:-2116825 +) +(1,2467:10581888,22726315:2116825,452978,122846 +k1,2467:10581888,22726315:3277 +h1,2467:12695436,22726315:0,411205,112570 +) +k1,2467:12876919,22726315:178206 +k1,2467:15396072,22726315:178207 +k1,2467:17823474,22726315:178206 +k1,2467:18653109,22726315:178207 +k1,2467:19850400,22726315:178206 +k1,2467:22039252,22726315:178207 +k1,2467:22833496,22726315:178206 +k1,2467:23367563,22726315:178207 +k1,2467:25523646,22726315:178206 +k1,2467:28673255,22726315:178207 +k1,2467:29207321,22726315:178206 +k1,2467:31900144,22726315:178207 +k1,2467:32583029,22726315:0 +) +(1,2468:6630773,23591395:25952256,505283,134348 +g1,2467:10956804,23591395 +g1,2467:12175118,23591395 +g1,2467:15345749,23591395 +g1,2467:17555623,23591395 +k1,2468:32583029,23591395:11297097 +g1,2468:32583029,23591395 +) +v1,2470:6630773,24276250:0,393216,0 +(1,2489:6630773,28663538:25952256,4780504,196608 +g1,2489:6630773,28663538 +g1,2489:6630773,28663538 +g1,2489:6434165,28663538 +(1,2489:6434165,28663538:0,4780504,196608 +r1,2526:32779637,28663538:26345472,4977112,196608 +k1,2489:6434165,28663538:-26345472 +) +(1,2489:6434165,28663538:26345472,4780504,196608 +[1,2489:6630773,28663538:25952256,4583896,0 +(1,2472:6630773,24504081:25952256,424439,112852 +(1,2471:6630773,24504081:0,0,0 +g1,2471:6630773,24504081 +g1,2471:6630773,24504081 +g1,2471:6303093,24504081 +(1,2471:6303093,24504081:0,0,0 +) +g1,2471:6630773,24504081 +) +k1,2472:6630773,24504081:0 +g1,2472:10946175,24504081 +g1,2472:11610083,24504081 +g1,2472:13269853,24504081 +g1,2472:13933761,24504081 +g1,2472:14597669,24504081 +g1,2472:16921347,24504081 +g1,2472:19245025,24504081 +g1,2472:20904795,24504081 +g1,2472:23560427,24504081 +h1,2472:26879966,24504081:0,0,0 +k1,2472:32583029,24504081:5703063 +g1,2472:32583029,24504081 +) +(1,2476:6630773,25320008:25952256,424439,79822 +(1,2474:6630773,25320008:0,0,0 +g1,2474:6630773,25320008 +g1,2474:6630773,25320008 +g1,2474:6303093,25320008 +(1,2474:6303093,25320008:0,0,0 +) +g1,2474:6630773,25320008 +) +g1,2476:7626635,25320008 +g1,2476:8954451,25320008 +g1,2476:9618359,25320008 +h1,2476:9950313,25320008:0,0,0 +k1,2476:32583029,25320008:22632716 +g1,2476:32583029,25320008 +) +(1,2478:6630773,26135935:25952256,424439,112852 +(1,2477:6630773,26135935:0,0,0 +g1,2477:6630773,26135935 +g1,2477:6630773,26135935 +g1,2477:6303093,26135935 +(1,2477:6303093,26135935:0,0,0 +) +g1,2477:6630773,26135935 +) +k1,2478:6630773,26135935:0 +g1,2478:10946175,26135935 +g1,2478:11610083,26135935 +g1,2478:13269853,26135935 +g1,2478:13933761,26135935 +g1,2478:14597669,26135935 +g1,2478:16921347,26135935 +g1,2478:19245025,26135935 +g1,2478:20904795,26135935 +g1,2478:23560427,26135935 +g1,2478:27211920,26135935 +g1,2478:29203644,26135935 +g1,2478:29867552,26135935 +h1,2478:31527322,26135935:0,0,0 +k1,2478:32583029,26135935:1055707 +g1,2478:32583029,26135935 +) +(1,2482:6630773,26951862:25952256,424439,79822 +(1,2480:6630773,26951862:0,0,0 +g1,2480:6630773,26951862 +g1,2480:6630773,26951862 +g1,2480:6303093,26951862 +(1,2480:6303093,26951862:0,0,0 +) +g1,2480:6630773,26951862 +) +g1,2482:7626635,26951862 +g1,2482:8954451,26951862 +g1,2482:10946175,26951862 +h1,2482:11942037,26951862:0,0,0 +k1,2482:32583029,26951862:20640992 +g1,2482:32583029,26951862 +) +(1,2484:6630773,27767789:25952256,424439,112852 +(1,2483:6630773,27767789:0,0,0 +g1,2483:6630773,27767789 +g1,2483:6630773,27767789 +g1,2483:6303093,27767789 +(1,2483:6303093,27767789:0,0,0 +) +g1,2483:6630773,27767789 +) +k1,2484:6630773,27767789:0 +k1,2484:10868174,27767789:253953 +k1,2484:11454080,27767789:253952 +k1,2484:13035849,27767789:253953 +k1,2484:13621756,27767789:253953 +k1,2484:14207662,27767789:253952 +k1,2484:16453339,27767789:253953 +k1,2484:18699016,27767789:253953 +k1,2484:20280784,27767789:253952 +k1,2484:22858415,27767789:253953 +k1,2484:26431907,27767789:253953 +k1,2484:30337352,27767789:253952 +k1,2484:30923259,27767789:253953 +h1,2484:32583029,27767789:0,0,0 +k1,2484:32583029,27767789:0 +k1,2484:32583029,27767789:0 +) +(1,2488:6630773,28583716:25952256,424439,79822 +(1,2486:6630773,28583716:0,0,0 +g1,2486:6630773,28583716 +g1,2486:6630773,28583716 +g1,2486:6303093,28583716 +(1,2486:6303093,28583716:0,0,0 +) +g1,2486:6630773,28583716 +) +g1,2488:7626635,28583716 +g1,2488:8954451,28583716 +g1,2488:9618359,28583716 +g1,2488:10282267,28583716 +h1,2488:10614221,28583716:0,0,0 +k1,2488:32583029,28583716:21968808 +g1,2488:32583029,28583716 +) +] +) +g1,2489:32583029,28663538 +g1,2489:6630773,28663538 +g1,2489:6630773,28663538 +g1,2489:32583029,28663538 +g1,2489:32583029,28663538 +) +h1,2489:6630773,28860146:0,0,0 +(1,2493:6630773,29725226:25952256,513147,122846 +h1,2492:6630773,29725226:983040,0,0 +k1,2492:10565837,29725226:162156 +(1,2492:10565837,29725226:0,452978,122846 +r1,2526:13034374,29725226:2468537,575824,122846 +k1,2492:10565837,29725226:-2468537 +) +(1,2492:10565837,29725226:2468537,452978,122846 +k1,2492:10565837,29725226:3277 +h1,2492:13031097,29725226:0,411205,112570 +) +k1,2492:13196531,29725226:162157 +k1,2492:13890184,29725226:162156 +k1,2492:14408201,29725226:162157 +k1,2492:17396269,29725226:162156 +k1,2492:18225582,29725226:162157 +(1,2492:18225582,29725226:0,452978,122846 +r1,2526:20342407,29725226:2116825,575824,122846 +k1,2492:18225582,29725226:-2116825 +) +(1,2492:18225582,29725226:2116825,452978,122846 +k1,2492:18225582,29725226:3277 +h1,2492:20339130,29725226:0,411205,112570 +) +k1,2492:20504563,29725226:162156 +k1,2492:21951226,29725226:162157 +k1,2492:24454328,29725226:162156 +k1,2492:24972345,29725226:162157 +k1,2492:27112378,29725226:162156 +k1,2492:27941691,29725226:162157 +(1,2492:27941691,29725226:0,452978,122846 +r1,2526:30410228,29725226:2468537,575824,122846 +k1,2492:27941691,29725226:-2468537 +) +(1,2492:27941691,29725226:2468537,452978,122846 +k1,2492:27941691,29725226:3277 +h1,2492:30406951,29725226:0,411205,112570 +) +k1,2492:30572384,29725226:162156 +k1,2492:32583029,29725226:0 +) +(1,2493:6630773,30590306:25952256,513147,134348 +g1,2492:9157185,30590306 +g1,2492:10015706,30590306 +g1,2492:12835064,30590306 +g1,2492:15283489,30590306 +g1,2492:16134146,30590306 +g1,2492:17352460,30590306 +g1,2492:20523091,30590306 +g1,2492:22732965,30590306 +g1,2492:23548232,30590306 +(1,2492:23548232,30590306:0,414482,115847 +r1,2526:23906498,30590306:358266,530329,115847 +k1,2492:23548232,30590306:-358266 +) +(1,2492:23548232,30590306:358266,414482,115847 +k1,2492:23548232,30590306:3277 +h1,2492:23903221,30590306:0,411205,112570 +) +k1,2493:32583029,30590306:8502861 +g1,2493:32583029,30590306 +) +v1,2495:6630773,31275161:0,393216,0 +(1,2508:6630773,34030595:25952256,3148650,196608 +g1,2508:6630773,34030595 +g1,2508:6630773,34030595 +g1,2508:6434165,34030595 +(1,2508:6434165,34030595:0,3148650,196608 +r1,2526:32779637,34030595:26345472,3345258,196608 +k1,2508:6434165,34030595:-26345472 +) +(1,2508:6434165,34030595:26345472,3148650,196608 +[1,2508:6630773,34030595:25952256,2952042,0 +(1,2497:6630773,31502992:25952256,424439,112852 +(1,2496:6630773,31502992:0,0,0 +g1,2496:6630773,31502992 +g1,2496:6630773,31502992 +g1,2496:6303093,31502992 +(1,2496:6303093,31502992:0,0,0 +) +g1,2496:6630773,31502992 +) +k1,2497:6630773,31502992:0 +g1,2497:11278129,31502992 +g1,2497:11942037,31502992 +g1,2497:13601807,31502992 +g1,2497:14265715,31502992 +g1,2497:14929623,31502992 +g1,2497:17253301,31502992 +g1,2497:19576979,31502992 +g1,2497:21236749,31502992 +g1,2497:23892381,31502992 +h1,2497:27211920,31502992:0,0,0 +k1,2497:32583029,31502992:5371109 +g1,2497:32583029,31502992 +) +(1,2501:6630773,32318919:25952256,424439,79822 +(1,2499:6630773,32318919:0,0,0 +g1,2499:6630773,32318919 +g1,2499:6630773,32318919 +g1,2499:6303093,32318919 +(1,2499:6303093,32318919:0,0,0 +) +g1,2499:6630773,32318919 +) +g1,2501:7626635,32318919 +g1,2501:8954451,32318919 +g1,2501:10946175,32318919 +g1,2501:11278129,32318919 +g1,2501:12937899,32318919 +g1,2501:13269853,32318919 +g1,2501:14929623,32318919 +g1,2501:16921347,32318919 +h1,2501:18581117,32318919:0,0,0 +k1,2501:32583029,32318919:14001912 +g1,2501:32583029,32318919 +) +(1,2503:6630773,33134846:25952256,424439,112852 +(1,2502:6630773,33134846:0,0,0 +g1,2502:6630773,33134846 +g1,2502:6630773,33134846 +g1,2502:6303093,33134846 +(1,2502:6303093,33134846:0,0,0 +) +g1,2502:6630773,33134846 +) +k1,2503:6630773,33134846:0 +k1,2503:11172465,33134846:226290 +k1,2503:11730709,33134846:226290 +k1,2503:13284814,33134846:226289 +k1,2503:13843058,33134846:226290 +k1,2503:14401302,33134846:226290 +k1,2503:16619316,33134846:226290 +k1,2503:18837330,33134846:226290 +k1,2503:20391436,33134846:226290 +k1,2503:22941403,33134846:226289 +k1,2503:26487232,33134846:226290 +k1,2503:30365015,33134846:226290 +k1,2503:30923259,33134846:226290 +h1,2503:32583029,33134846:0,0,0 +k1,2503:32583029,33134846:0 +k1,2503:32583029,33134846:0 +) +(1,2507:6630773,33950773:25952256,424439,79822 +(1,2505:6630773,33950773:0,0,0 +g1,2505:6630773,33950773 +g1,2505:6630773,33950773 +g1,2505:6303093,33950773 +(1,2505:6303093,33950773:0,0,0 +) +g1,2505:6630773,33950773 +) +g1,2507:7626635,33950773 +g1,2507:8954451,33950773 +g1,2507:10946175,33950773 +g1,2507:11278129,33950773 +g1,2507:12937899,33950773 +g1,2507:13269853,33950773 +g1,2507:14929623,33950773 +g1,2507:16921347,33950773 +g1,2507:17253301,33950773 +h1,2507:18581117,33950773:0,0,0 +k1,2507:32583029,33950773:14001912 +g1,2507:32583029,33950773 +) +] +) +g1,2508:32583029,34030595 +g1,2508:6630773,34030595 +g1,2508:6630773,34030595 +g1,2508:32583029,34030595 +g1,2508:32583029,34030595 +) +h1,2508:6630773,34227203:0,0,0 +(1,2513:6630773,35092283:25952256,513147,134348 +h1,2512:6630773,35092283:983040,0,0 +k1,2512:8419686,35092283:178038 +k1,2512:9616809,35092283:178038 +k1,2512:12786566,35092283:178038 +k1,2512:14819928,35092283:178038 +k1,2512:16017051,35092283:178038 +k1,2512:19597719,35092283:178039 +k1,2512:20723408,35092283:178038 +(1,2512:20723408,35092283:0,414482,115847 +r1,2526:23191945,35092283:2468537,530329,115847 +k1,2512:20723408,35092283:-2468537 +) +(1,2512:20723408,35092283:2468537,414482,115847 +k1,2512:20723408,35092283:3277 +h1,2512:23188668,35092283:0,411205,112570 +) +k1,2512:23369983,35092283:178038 +k1,2512:25744132,35092283:178038 +k1,2512:28671405,35092283:178038 +k1,2512:31074390,35092283:178038 +k1,2512:32583029,35092283:0 +) +(1,2513:6630773,35957363:25952256,505283,134348 +k1,2512:9163033,35957363:148716 +k1,2512:9939584,35957363:148716 +k1,2512:10503093,35957363:148666 +k1,2512:11843255,35957363:148717 +k1,2512:13693941,35957363:148716 +k1,2512:17015255,35957363:148716 +k1,2512:19514747,35957363:148716 +k1,2512:23241074,35957363:148716 +k1,2512:24381350,35957363:148716 +k1,2512:26043293,35957363:148717 +k1,2512:26843437,35957363:148716 +k1,2512:29913748,35957363:148716 +k1,2512:32583029,35957363:0 +) +(1,2513:6630773,36822443:25952256,505283,134348 +k1,2512:8502773,36822443:221803 +k1,2512:11676317,36822443:221802 +k1,2512:13089565,36822443:221803 +k1,2512:16904707,36822443:221803 +k1,2512:19971427,36822443:221802 +k1,2512:22623960,36822443:221803 +k1,2512:26616049,36822443:221803 +k1,2512:30394490,36822443:221802 +k1,2512:31607853,36822443:221803 +k1,2513:32583029,36822443:0 +) +(1,2513:6630773,37687523:25952256,505283,134348 +k1,2512:8765411,37687523:217710 +k1,2512:9669284,37687523:217711 +k1,2512:12861673,37687523:217710 +k1,2512:15449166,37687523:217711 +k1,2512:17585770,37687523:217710 +k1,2512:19495620,37687523:217710 +k1,2512:23018312,37687523:217711 +k1,2512:24427467,37687523:217710 +k1,2512:27619857,37687523:217711 +k1,2512:31107814,37687523:217710 +k1,2512:32583029,37687523:0 +) +(1,2513:6630773,38552603:25952256,505283,134348 +k1,2512:9077946,38552603:253028 +k1,2512:12232909,38552603:253029 +k1,2512:13866781,38552603:253028 +k1,2512:16188126,38552603:253029 +k1,2512:17725660,38552603:253028 +k1,2512:19676727,38552603:253029 +k1,2512:20285615,38552603:253028 +k1,2512:22879590,38552603:253029 +k1,2512:25313001,38552603:253028 +k1,2512:26313796,38552603:253029 +k1,2512:30156886,38552603:253028 +k1,2512:32583029,38552603:0 +) +(1,2513:6630773,39417683:25952256,505283,126483 +k1,2512:8792312,39417683:209877 +k1,2512:10444636,39417683:209877 +k1,2512:13588560,39417683:209877 +(1,2512:13588560,39417683:0,459977,115847 +r1,2526:17815656,39417683:4227096,575824,115847 +k1,2512:13588560,39417683:-4227096 +) +(1,2512:13588560,39417683:4227096,459977,115847 +g1,2512:15702108,39417683 +g1,2512:16405532,39417683 +h1,2512:17812379,39417683:0,411205,112570 +) +k1,2512:18025533,39417683:209877 +k1,2512:20415793,39417683:209877 +k1,2512:21373436,39417683:209877 +k1,2512:23788599,39417683:209876 +k1,2512:24614514,39417683:209877 +k1,2512:25843476,39417683:209877 +k1,2512:27326718,39417683:209877 +k1,2512:28917439,39417683:209877 +k1,2512:29743354,39417683:209877 +k1,2512:32583029,39417683:0 +) +(1,2513:6630773,40282763:25952256,513147,126483 +k1,2512:9247506,40282763:143404 +k1,2512:11234439,40282763:143405 +k1,2512:15615401,40282763:143404 +k1,2512:16386641,40282763:143405 +k1,2512:17549130,40282763:143404 +k1,2512:20684254,40282763:143405 +k1,2512:22856653,40282763:143404 +k1,2512:24019143,40282763:143405 +k1,2512:26833794,40282763:143404 +k1,2512:28490425,40282763:143405 +k1,2512:31773659,40282763:143404 +k1,2512:32583029,40282763:0 +) +(1,2513:6630773,41147843:25952256,513147,134348 +k1,2512:10145961,41147843:210207 +k1,2512:11750118,41147843:210206 +k1,2512:14154470,41147843:210207 +k1,2512:17266610,41147843:210206 +k1,2512:19067376,41147843:210207 +k1,2512:20296668,41147843:210207 +k1,2512:23285601,41147843:210206 +k1,2512:25176151,41147843:210207 +k1,2512:25917854,41147843:210206 +k1,2512:27194332,41147843:210207 +k1,2512:29183840,41147843:210206 +k1,2512:30155575,41147843:210207 +k1,2513:32583029,41147843:0 +) +(1,2513:6630773,42012923:25952256,505283,115847 +(1,2512:6630773,42012923:0,459977,115847 +r1,2526:10857869,42012923:4227096,575824,115847 +k1,2512:6630773,42012923:-4227096 +) +(1,2512:6630773,42012923:4227096,459977,115847 +g1,2512:8744321,42012923 +g1,2512:9447745,42012923 +h1,2512:10854592,42012923:0,411205,112570 +) +g1,2512:11057098,42012923 +g1,2512:11942489,42012923 +g1,2512:13719170,42012923 +k1,2513:32583029,42012923:17292306 +g1,2513:32583029,42012923 +) +v1,2515:6630773,42697778:0,393216,0 +(1,2522:6630773,43827964:25952256,1523402,196608 +g1,2522:6630773,43827964 +g1,2522:6630773,43827964 +g1,2522:6434165,43827964 +(1,2522:6434165,43827964:0,1523402,196608 +r1,2526:32779637,43827964:26345472,1720010,196608 +k1,2522:6434165,43827964:-26345472 +) +(1,2522:6434165,43827964:26345472,1523402,196608 +[1,2522:6630773,43827964:25952256,1326794,0 +(1,2517:6630773,42932215:25952256,431045,106246 +(1,2516:6630773,42932215:0,0,0 +g1,2516:6630773,42932215 +g1,2516:6630773,42932215 +g1,2516:6303093,42932215 +(1,2516:6303093,42932215:0,0,0 +) +g1,2516:6630773,42932215 +) +k1,2517:6630773,42932215:0 +g1,2517:10614221,42932215 +g1,2517:11278129,42932215 +g1,2517:13269853,42932215 +g1,2517:17253300,42932215 +g1,2517:17917208,42932215 +g1,2517:19908932,42932215 +g1,2517:20572840,42932215 +g1,2517:21236748,42932215 +g1,2517:24224334,42932215 +g1,2517:26216058,42932215 +g1,2517:26879966,42932215 +h1,2517:28539736,42932215:0,0,0 +k1,2517:32583029,42932215:4043293 +g1,2517:32583029,42932215 +) +(1,2521:6630773,43748142:25952256,424439,79822 +(1,2519:6630773,43748142:0,0,0 +g1,2519:6630773,43748142 +g1,2519:6630773,43748142 +g1,2519:6303093,43748142 +(1,2519:6303093,43748142:0,0,0 +) +g1,2519:6630773,43748142 +) +g1,2521:7626635,43748142 +g1,2521:8954451,43748142 +h1,2521:11278129,43748142:0,0,0 +k1,2521:32583029,43748142:21304900 +g1,2521:32583029,43748142 +) +] +) +g1,2522:32583029,43827964 +g1,2522:6630773,43827964 +g1,2522:6630773,43827964 +g1,2522:32583029,43827964 +g1,2522:32583029,43827964 +) +h1,2522:6630773,44024572:0,0,0 +] +(1,2526:32583029,45706769:0,0,0 +g1,2526:32583029,45706769 +) +) +] +(1,2526:6630773,47279633:25952256,0,0 +h1,2526:6630773,47279633:25952256,0,0 +) +] +(1,2526:4262630,4025873:0,0,0 +[1,2526:-473656,4025873:0,0,0 +(1,2526:-473656,-710413:0,0,0 +(1,2526:-473656,-710413:0,0,0 +g1,2526:-473656,-710413 +) +g1,2526:-473656,-710413 ) ] -g1,4047:6630773,4812305 -g1,4047:6630773,4812305 -g1,4047:8715473,4812305 -g1,4047:12574232,4812305 -k1,4047:31786112,4812305:19211880 -) -) -] -[1,4047:6630773,45706769:25952256,40108032,0 -(1,4047:6630773,45706769:25952256,40108032,0 -(1,4047:6630773,45706769:0,0,0 -g1,4047:6630773,45706769 -) -[1,4047:6630773,45706769:25952256,40108032,0 -v1,3969:6630773,6254097:0,393216,0 -(1,4001:6630773,18455829:25952256,12594948,0 -g1,4001:6630773,18455829 -g1,4001:6303093,18455829 -r1,4047:6401397,18455829:98304,12594948,0 -g1,4001:6600626,18455829 -g1,4001:6797234,18455829 -[1,4001:6797234,18455829:25785795,12594948,0 -(1,3970:6797234,6616170:25785795,755289,196608 -(1,3969:6797234,6616170:0,755289,196608 -r1,4047:8134168,6616170:1336934,951897,196608 -k1,3969:6797234,6616170:-1336934 -) -(1,3969:6797234,6616170:1336934,755289,196608 -) -k1,3969:8344239,6616170:210071 -k1,3969:8671919,6616170:327680 -k1,3969:10673744,6616170:210071 -k1,3969:14864472,6616170:210071 -k1,3969:16093628,6616170:210071 -k1,3969:19490059,6616170:210071 -k1,3969:22335334,6616170:210072 -k1,3969:23564490,6616170:210071 -k1,3969:25787827,6616170:210071 -k1,3969:26657190,6616170:210071 -k1,3969:27223121,6616170:210071 -(1,3969:27223121,6616170:0,452978,115847 -r1,4047:30395081,6616170:3171960,568825,115847 -k1,3969:27223121,6616170:-3171960 -) -(1,3969:27223121,6616170:3171960,452978,115847 -k1,3969:27223121,6616170:3277 -h1,3969:30391804,6616170:0,411205,112570 -) -k1,3969:30605152,6616170:210071 -k1,3969:32583029,6616170:0 -) -(1,3970:6797234,7457658:25785795,513147,134348 -k1,3969:8174091,7457658:185412 -k1,3969:9378588,7457658:185412 -k1,3969:12049781,7457658:185412 -k1,3969:12894486,7457658:185413 -k1,3969:16384879,7457658:185412 -k1,3969:20054185,7457658:185412 -k1,3969:21691219,7457658:185412 -k1,3969:24500037,7457658:185412 -k1,3969:27151569,7457658:185412 -k1,3969:29346971,7457658:185413 -k1,3969:29888243,7457658:185412 -k1,3969:32051532,7457658:185412 -k1,3969:32583029,7457658:0 -) -(1,3970:6797234,8299146:25785795,505283,7863 -g1,3969:9663123,8299146 -g1,3969:9663123,8299146 -k1,3970:32583029,8299146:22919906 -g1,3970:32583029,8299146 -) -v1,3972:6797234,9489612:0,393216,0 -(1,3999:6797234,17734933:25785795,8638537,196608 -g1,3999:6797234,17734933 -g1,3999:6797234,17734933 -g1,3999:6600626,17734933 -(1,3999:6600626,17734933:0,8638537,196608 -r1,4047:32779637,17734933:26179011,8835145,196608 -k1,3999:6600625,17734933:-26179012 -) -(1,3999:6600626,17734933:26179011,8638537,196608 -[1,3999:6797234,17734933:25785795,8441929,0 -(1,3974:6797234,9697230:25785795,404226,82312 -(1,3973:6797234,9697230:0,0,0 -g1,3973:6797234,9697230 -g1,3973:6797234,9697230 -g1,3973:6469554,9697230 -(1,3973:6469554,9697230:0,0,0 -) -g1,3973:6797234,9697230 -) -g1,3974:8377963,9697230 -g1,3974:9326401,9697230 -g1,3974:11539422,9697230 -g1,3974:13120151,9697230 -h1,3974:14384734,9697230:0,0,0 -k1,3974:32583030,9697230:18198296 -g1,3974:32583030,9697230 -) -(1,3975:6797234,10363408:25785795,404226,107478 -h1,3975:6797234,10363408:0,0,0 -k1,3975:6797234,10363408:0 -h1,3975:10590982,10363408:0,0,0 -k1,3975:32583030,10363408:21992048 -g1,3975:32583030,10363408 -) -(1,3979:6797234,11029586:25785795,404226,76021 -(1,3977:6797234,11029586:0,0,0 -g1,3977:6797234,11029586 -g1,3977:6797234,11029586 -g1,3977:6469554,11029586 -(1,3977:6469554,11029586:0,0,0 -) -g1,3977:6797234,11029586 -) -g1,3979:7745671,11029586 -g1,3979:9010254,11029586 -h1,3979:9326400,11029586:0,0,0 -k1,3979:32583028,11029586:23256628 -g1,3979:32583028,11029586 -) -(1,3981:6797234,12351124:25785795,404226,9436 -(1,3980:6797234,12351124:0,0,0 -g1,3980:6797234,12351124 -g1,3980:6797234,12351124 -g1,3980:6469554,12351124 -(1,3980:6469554,12351124:0,0,0 -) -g1,3980:6797234,12351124 -) -g1,3981:8377963,12351124 -g1,3981:9326401,12351124 -h1,3981:10907129,12351124:0,0,0 -k1,3981:32583029,12351124:21675900 -g1,3981:32583029,12351124 -) -(1,3982:6797234,13017302:25785795,404226,107478 -h1,3982:6797234,13017302:0,0,0 -k1,3982:6797234,13017302:0 -h1,3982:10590982,13017302:0,0,0 -k1,3982:32583030,13017302:21992048 -g1,3982:32583030,13017302 -) -(1,3986:6797234,13683480:25785795,404226,76021 -(1,3984:6797234,13683480:0,0,0 -g1,3984:6797234,13683480 -g1,3984:6797234,13683480 -g1,3984:6469554,13683480 -(1,3984:6469554,13683480:0,0,0 -) -g1,3984:6797234,13683480 -) -g1,3986:7745671,13683480 -g1,3986:9010254,13683480 -h1,3986:9326400,13683480:0,0,0 -k1,3986:32583028,13683480:23256628 -g1,3986:32583028,13683480 -) -(1,3988:6797234,15005018:25785795,404226,76021 -(1,3987:6797234,15005018:0,0,0 -g1,3987:6797234,15005018 -g1,3987:6797234,15005018 -g1,3987:6469554,15005018 -(1,3987:6469554,15005018:0,0,0 -) -g1,3987:6797234,15005018 -) -k1,3988:6797234,15005018:0 -h1,3988:11855565,15005018:0,0,0 -k1,3988:32583029,15005018:20727464 -g1,3988:32583029,15005018 -) -(1,3992:6797234,15671196:25785795,404226,76021 -(1,3990:6797234,15671196:0,0,0 -g1,3990:6797234,15671196 -g1,3990:6797234,15671196 -g1,3990:6469554,15671196 -(1,3990:6469554,15671196:0,0,0 -) -g1,3990:6797234,15671196 -) -g1,3992:7745671,15671196 -g1,3992:9010254,15671196 -g1,3992:9642546,15671196 -g1,3992:10274838,15671196 -h1,3992:10590984,15671196:0,0,0 -k1,3992:32583028,15671196:21992044 -g1,3992:32583028,15671196 -) -(1,3994:6797234,16992734:25785795,404226,76021 -(1,3993:6797234,16992734:0,0,0 -g1,3993:6797234,16992734 -g1,3993:6797234,16992734 -g1,3993:6469554,16992734 -(1,3993:6469554,16992734:0,0,0 -) -g1,3993:6797234,16992734 -) -k1,3994:6797234,16992734:0 -h1,3994:11855565,16992734:0,0,0 -k1,3994:32583029,16992734:20727464 -g1,3994:32583029,16992734 -) -(1,3998:6797234,17658912:25785795,404226,76021 -(1,3996:6797234,17658912:0,0,0 -g1,3996:6797234,17658912 -g1,3996:6797234,17658912 -g1,3996:6469554,17658912 -(1,3996:6469554,17658912:0,0,0 -) -g1,3996:6797234,17658912 -) -g1,3998:7745671,17658912 -g1,3998:9010254,17658912 -h1,3998:9958691,17658912:0,0,0 -k1,3998:32583029,17658912:22624338 -g1,3998:32583029,17658912 -) -] -) -g1,3999:32583029,17734933 -g1,3999:6797234,17734933 -g1,3999:6797234,17734933 -g1,3999:32583029,17734933 -g1,3999:32583029,17734933 -) -h1,3999:6797234,17931541:0,0,0 -] -g1,4001:32583029,18455829 -) -h1,4001:6630773,18455829:0,0,0 -(1,4005:6630773,19821605:25952256,513147,11795 -h1,4004:6630773,19821605:983040,0,0 -k1,4004:9651863,19821605:221392 -k1,4004:12899053,19821605:221393 -k1,4004:15693388,19821605:221392 -k1,4004:16566208,19821605:221392 -k1,4004:17806686,19821605:221393 -k1,4004:22105073,19821605:221392 -k1,4004:22985758,19821605:221393 -k1,4004:26023232,19821605:221392 -k1,4004:27436069,19821605:221392 -k1,4004:29359432,19821605:221393 -k1,4004:31591469,19821605:221392 -k1,4005:32583029,19821605:0 -) -(1,4005:6630773,20663093:25952256,513147,134348 -(1,4004:6630773,20663093:0,459977,115847 -r1,4047:9451022,20663093:2820249,575824,115847 -k1,4004:6630773,20663093:-2820249 -) -(1,4004:6630773,20663093:2820249,459977,115847 -k1,4004:6630773,20663093:3277 -h1,4004:9447745,20663093:0,411205,112570 -) -k1,4004:9805675,20663093:180983 -k1,4004:11178104,20663093:180984 -(1,4004:11178104,20663093:0,459977,115847 -r1,4047:14350064,20663093:3171960,575824,115847 -k1,4004:11178104,20663093:-3171960 -) -(1,4004:11178104,20663093:3171960,459977,115847 -k1,4004:11178104,20663093:3277 -h1,4004:14346787,20663093:0,411205,112570 -) -k1,4004:14704717,20663093:180983 -k1,4004:16760031,20663093:180984 -k1,4004:18113453,20663093:180983 -k1,4004:21320233,20663093:180983 -k1,4004:23511862,20663093:180984 -(1,4004:23511862,20663093:0,452978,115847 -r1,4047:26683822,20663093:3171960,568825,115847 -k1,4004:23511862,20663093:-3171960 -) -(1,4004:23511862,20663093:3171960,452978,115847 -k1,4004:23511862,20663093:3277 -h1,4004:26680545,20663093:0,411205,112570 -) -k1,4004:26864805,20663093:180983 -k1,4004:29415571,20663093:180984 -k1,4004:31923737,20663093:180983 -k1,4005:32583029,20663093:0 -) -(1,4005:6630773,21504581:25952256,513147,134348 -(1,4004:6630773,21504581:0,452978,115847 -r1,4047:9099310,21504581:2468537,568825,115847 -k1,4004:6630773,21504581:-2468537 -) -(1,4004:6630773,21504581:2468537,452978,115847 -k1,4004:6630773,21504581:3277 -h1,4004:9096033,21504581:0,411205,112570 -) -k1,4004:9370241,21504581:270931 -k1,4004:10324058,21504581:270932 -k1,4004:12296959,21504581:270931 -k1,4004:14752206,21504581:270932 -k1,4004:16214582,21504581:270931 -k1,4004:17477073,21504581:270931 -k1,4004:19725226,21504581:270932 -k1,4004:20943808,21504581:270931 -k1,4004:23787027,21504581:270931 -k1,4004:26390385,21504581:270932 -k1,4004:27932714,21504581:270931 -k1,4004:29972463,21504581:270932 -k1,4004:31923737,21504581:270931 -k1,4004:32583029,21504581:0 -) -(1,4005:6630773,22346069:25952256,513147,134348 -k1,4004:8561391,22346069:233891 -k1,4004:11821078,22346069:233890 -k1,4004:12741131,22346069:233891 -k1,4004:15981158,22346069:233891 -k1,4004:19691733,22346069:233890 -k1,4004:22951421,22346069:233891 -k1,4004:26186206,22346069:233891 -k1,4004:29799132,22346069:233890 -k1,4004:31224468,22346069:233891 -k1,4005:32583029,22346069:0 -) -(1,4005:6630773,23187557:25952256,505283,134348 -k1,4004:8402342,23187557:273416 -k1,4004:11808379,23187557:273416 -k1,4004:13273240,23187557:273416 -k1,4004:16938144,23187557:273416 -k1,4004:20186239,23187557:273416 -k1,4004:22829437,23187557:273416 -k1,4004:26037555,23187557:273416 -k1,4004:27691159,23187557:273416 -k1,4004:28956135,23187557:273416 -k1,4004:31516758,23187557:273416 -k1,4004:32583029,23187557:0 -) -(1,4005:6630773,24029045:25952256,513147,126483 -k1,4004:10422850,24029045:293110 -k1,4004:12994647,24029045:293110 -k1,4004:16764441,24029045:293109 -k1,4004:20257019,24029045:293110 -k1,4004:21236291,24029045:293110 -k1,4004:22909589,24029045:293110 -k1,4004:24194258,24029045:293109 -k1,4004:25841342,24029045:293110 -k1,4004:27980601,24029045:293110 -k1,4004:29786937,24029045:293110 -k1,4004:30696084,24029045:293109 -k1,4004:31345054,24029045:293110 -k1,4004:32583029,24029045:0 -) -(1,4005:6630773,24870533:25952256,513147,134348 -k1,4004:8120266,24870533:204987 -k1,4004:11382508,24870533:204987 -k1,4004:12606580,24870533:204987 -k1,4004:15246885,24870533:204987 -k1,4004:18383953,24870533:204987 -k1,4004:19248232,24870533:204987 -k1,4004:20472305,24870533:204988 -k1,4004:22385816,24870533:204987 -k1,4004:24775118,24870533:204987 -k1,4004:25933654,24870533:204987 -k1,4004:27799323,24870533:204987 -k1,4004:29402193,24870533:204987 -k1,4004:30626265,24870533:204987 -k1,4004:31923737,24870533:204987 -k1,4005:32583029,24870533:0 -) -(1,4005:6630773,25712021:25952256,505283,126483 -(1,4004:6630773,25712021:0,459977,115847 -r1,4047:9451022,25712021:2820249,575824,115847 -k1,4004:6630773,25712021:-2820249 -) -(1,4004:6630773,25712021:2820249,459977,115847 -k1,4004:6630773,25712021:3277 -h1,4004:9447745,25712021:0,411205,112570 -) -k1,4004:9621311,25712021:170289 -k1,4004:10983045,25712021:170289 -(1,4004:10983045,25712021:0,459977,115847 -r1,4047:14155005,25712021:3171960,575824,115847 -k1,4004:10983045,25712021:-3171960 -) -(1,4004:10983045,25712021:3171960,459977,115847 -k1,4004:10983045,25712021:3277 -h1,4004:14151728,25712021:0,411205,112570 -) -k1,4004:14325294,25712021:170289 -k1,4004:15889534,25712021:170289 -(1,4004:15889534,25712021:0,452978,115847 -r1,4047:18358071,25712021:2468537,568825,115847 -k1,4004:15889534,25712021:-2468537 -) -(1,4004:15889534,25712021:2468537,452978,115847 -k1,4004:15889534,25712021:3277 -h1,4004:18354794,25712021:0,411205,112570 -) -k1,4004:18528360,25712021:170289 -k1,4004:20882964,25712021:170289 -k1,4004:22125421,25712021:170288 -k1,4004:23675898,25712021:170289 -k1,4004:24950469,25712021:170289 -k1,4004:26406574,25712021:170289 -k1,4004:27324629,25712021:170289 -k1,4004:29008144,25712021:170289 -k1,4004:30572384,25712021:170289 -k1,4004:32583029,25712021:0 -) -(1,4005:6630773,26553509:25952256,513147,7863 -g1,4004:7489294,26553509 -g1,4004:9390493,26553509 -k1,4005:32583028,26553509:20905984 -g1,4005:32583028,26553509 -) -(1,4007:6630773,27394997:25952256,513147,134348 -h1,4006:6630773,27394997:983040,0,0 -k1,4006:9586983,27394997:189935 -k1,4006:11512312,27394997:189936 -(1,4006:11512312,27394997:0,459977,115847 -r1,4047:14332561,27394997:2820249,575824,115847 -k1,4006:11512312,27394997:-2820249 -) -(1,4006:11512312,27394997:2820249,459977,115847 -k1,4006:11512312,27394997:3277 -h1,4006:14329284,27394997:0,411205,112570 -) -k1,4006:14696166,27394997:189935 -k1,4006:15905187,27394997:189936 -k1,4006:18275505,27394997:189935 -k1,4006:19978667,27394997:189936 -k1,4006:20820030,27394997:189935 -k1,4006:23305037,27394997:189936 -k1,4006:26311054,27394997:189935 -k1,4006:27032487,27394997:189936 -k1,4006:28156965,27394997:189935 -k1,4006:29108429,27394997:189936 -k1,4006:31725818,27394997:189935 -k1,4007:32583029,27394997:0 -) -(1,4007:6630773,28236485:25952256,513147,134348 -k1,4006:9588946,28236485:199763 -k1,4006:10440136,28236485:199762 -k1,4006:12871400,28236485:199763 -k1,4006:15833506,28236485:199763 -k1,4006:19817973,28236485:199763 -k1,4006:20835624,28236485:199762 -(1,4006:20835624,28236485:0,452978,115847 -r1,4047:23304161,28236485:2468537,568825,115847 -k1,4006:20835624,28236485:-2468537 -) -(1,4006:20835624,28236485:2468537,452978,115847 -k1,4006:20835624,28236485:3277 -h1,4006:23300884,28236485:0,411205,112570 -) -k1,4006:23503924,28236485:199763 -k1,4006:25133683,28236485:199763 -(1,4006:25133683,28236485:0,459977,115847 -r1,4047:27953932,28236485:2820249,575824,115847 -k1,4006:25133683,28236485:-2820249 -) -(1,4006:25133683,28236485:2820249,459977,115847 -k1,4006:25133683,28236485:3277 -h1,4006:27950655,28236485:0,411205,112570 -) -k1,4006:28153695,28236485:199763 -k1,4006:29004885,28236485:199762 -k1,4006:30920381,28236485:199763 -k1,4007:32583029,28236485:0 -) -(1,4007:6630773,29077973:25952256,505283,126483 -g1,4006:8196428,29077973 -g1,4006:10314551,29077973 -g1,4006:10971877,29077973 -g1,4006:13549408,29077973 -g1,4006:14767722,29077973 -g1,4006:16620424,29077973 -k1,4007:32583029,29077973:13375899 -g1,4007:32583029,29077973 -) -v1,4009:6630773,30268439:0,393216,0 -(1,4041:6630773,39835298:25952256,9960075,196608 -g1,4041:6630773,39835298 -g1,4041:6630773,39835298 -g1,4041:6434165,39835298 -(1,4041:6434165,39835298:0,9960075,196608 -r1,4047:32779637,39835298:26345472,10156683,196608 -k1,4041:6434165,39835298:-26345472 -) -(1,4041:6434165,39835298:26345472,9960075,196608 -[1,4041:6630773,39835298:25952256,9763467,0 -(1,4011:6630773,30476057:25952256,404226,82312 -(1,4010:6630773,30476057:0,0,0 -g1,4010:6630773,30476057 -g1,4010:6630773,30476057 -g1,4010:6303093,30476057 -(1,4010:6303093,30476057:0,0,0 -) -g1,4010:6630773,30476057 -) -g1,4011:8211502,30476057 -g1,4011:8843794,30476057 -g1,4011:13585980,30476057 -h1,4011:14850563,30476057:0,0,0 -k1,4011:32583029,30476057:17732466 -g1,4011:32583029,30476057 -) -(1,4012:6630773,31142235:25952256,410518,107478 -h1,4012:6630773,31142235:0,0,0 -g1,4012:10740667,31142235 -g1,4012:11372959,31142235 -g1,4012:13269833,31142235 -k1,4012:13269833,31142235:0 -h1,4012:15798998,31142235:0,0,0 -k1,4012:32583030,31142235:16784032 -g1,4012:32583030,31142235 -) -(1,4016:6630773,31808413:25952256,404226,76021 -(1,4014:6630773,31808413:0,0,0 -g1,4014:6630773,31808413 -g1,4014:6630773,31808413 -g1,4014:6303093,31808413 -(1,4014:6303093,31808413:0,0,0 -) -g1,4014:6630773,31808413 -) -g1,4016:7579210,31808413 -g1,4016:8843793,31808413 -g1,4016:12321396,31808413 -g1,4016:12953688,31808413 -g1,4016:13269834,31808413 -h1,4016:15482854,31808413:0,0,0 -k1,4016:32583030,31808413:17100176 -g1,4016:32583030,31808413 -) -(1,4018:6630773,33129951:25952256,410518,107478 -(1,4017:6630773,33129951:0,0,0 -g1,4017:6630773,33129951 -g1,4017:6630773,33129951 -g1,4017:6303093,33129951 -(1,4017:6303093,33129951:0,0,0 -) -g1,4017:6630773,33129951 -) -k1,4018:6630773,33129951:0 -g1,4018:11689104,33129951 -g1,4018:12321396,33129951 -g1,4018:14218270,33129951 -k1,4018:14218270,33129951:0 -h1,4018:16747435,33129951:0,0,0 -k1,4018:32583029,33129951:15835594 -g1,4018:32583029,33129951 -) -(1,4022:6630773,33796129:25952256,404226,76021 -(1,4020:6630773,33796129:0,0,0 -g1,4020:6630773,33796129 -g1,4020:6630773,33796129 -g1,4020:6303093,33796129 -(1,4020:6303093,33796129:0,0,0 -) -g1,4020:6630773,33796129 -) -g1,4022:7579210,33796129 -g1,4022:8843793,33796129 -h1,4022:12005250,33796129:0,0,0 -k1,4022:32583030,33796129:20577780 -g1,4022:32583030,33796129 -) -(1,4024:6630773,35117667:25952256,410518,107478 -(1,4023:6630773,35117667:0,0,0 -g1,4023:6630773,35117667 -g1,4023:6630773,35117667 -g1,4023:6303093,35117667 -(1,4023:6303093,35117667:0,0,0 -) -g1,4023:6630773,35117667 -) -k1,4024:6630773,35117667:0 -g1,4024:11689104,35117667 -g1,4024:12321396,35117667 -g1,4024:14218270,35117667 -k1,4024:14218270,35117667:0 -h1,4024:16747435,35117667:0,0,0 -k1,4024:32583029,35117667:15835594 -g1,4024:32583029,35117667 -) -(1,4028:6630773,35783845:25952256,404226,76021 -(1,4026:6630773,35783845:0,0,0 -g1,4026:6630773,35783845 -g1,4026:6630773,35783845 -g1,4026:6303093,35783845 -(1,4026:6303093,35783845:0,0,0 -) -g1,4026:6630773,35783845 -) -g1,4028:7579210,35783845 -g1,4028:8843793,35783845 -h1,4028:9792230,35783845:0,0,0 -k1,4028:32583030,35783845:22790800 -g1,4028:32583030,35783845 -) -(1,4030:6630773,37105383:25952256,410518,107478 -(1,4029:6630773,37105383:0,0,0 -g1,4029:6630773,37105383 -g1,4029:6630773,37105383 -g1,4029:6303093,37105383 -(1,4029:6303093,37105383:0,0,0 -) -g1,4029:6630773,37105383 -) -k1,4030:6630773,37105383:0 -g1,4030:10740667,37105383 -g1,4030:12953687,37105383 -g1,4030:13585979,37105383 -g1,4030:14534417,37105383 -g1,4030:16747437,37105383 -g1,4030:17379729,37105383 -h1,4030:18012021,37105383:0,0,0 -k1,4030:32583029,37105383:14571008 -g1,4030:32583029,37105383 -) -(1,4034:6630773,37771561:25952256,404226,76021 -(1,4032:6630773,37771561:0,0,0 -g1,4032:6630773,37771561 -g1,4032:6630773,37771561 -g1,4032:6303093,37771561 -(1,4032:6303093,37771561:0,0,0 -) -g1,4032:6630773,37771561 -) -g1,4034:7579210,37771561 -g1,4034:8843793,37771561 -g1,4034:11372959,37771561 -g1,4034:12005251,37771561 -g1,4034:12321397,37771561 -h1,4034:13585980,37771561:0,0,0 -k1,4034:32583028,37771561:18997048 -g1,4034:32583028,37771561 -) -(1,4036:6630773,39093099:25952256,410518,107478 -(1,4035:6630773,39093099:0,0,0 -g1,4035:6630773,39093099 -g1,4035:6630773,39093099 -g1,4035:6303093,39093099 -(1,4035:6303093,39093099:0,0,0 -) -g1,4035:6630773,39093099 -) -k1,4036:6630773,39093099:0 -g1,4036:10740667,39093099 -g1,4036:12953687,39093099 -g1,4036:13585979,39093099 -g1,4036:14534417,39093099 -g1,4036:18012020,39093099 -g1,4036:18644312,39093099 -h1,4036:20225041,39093099:0,0,0 -k1,4036:32583029,39093099:12357988 -g1,4036:32583029,39093099 -) -(1,4040:6630773,39759277:25952256,404226,76021 -(1,4038:6630773,39759277:0,0,0 -g1,4038:6630773,39759277 -g1,4038:6630773,39759277 -g1,4038:6303093,39759277 -(1,4038:6303093,39759277:0,0,0 -) -g1,4038:6630773,39759277 -) -g1,4040:7579210,39759277 -g1,4040:8843793,39759277 -g1,4040:12321396,39759277 -h1,4040:15482853,39759277:0,0,0 -k1,4040:32583029,39759277:17100176 -g1,4040:32583029,39759277 -) -] -) -g1,4041:32583029,39835298 -g1,4041:6630773,39835298 -g1,4041:6630773,39835298 -g1,4041:32583029,39835298 -g1,4041:32583029,39835298 -) -h1,4041:6630773,40031906:0,0,0 -(1,4045:6630773,41397682:25952256,513147,115847 -h1,4044:6630773,41397682:983040,0,0 -k1,4044:10659018,41397682:255337 -(1,4044:10659018,41397682:0,459977,115847 -r1,4047:13830978,41397682:3171960,575824,115847 -k1,4044:10659018,41397682:-3171960 -) -(1,4044:10659018,41397682:3171960,459977,115847 -k1,4044:10659018,41397682:3277 -h1,4044:13827701,41397682:0,411205,112570 -) -k1,4044:14086315,41397682:255337 -k1,4044:14873149,41397682:255337 -k1,4044:17330496,41397682:255337 -k1,4044:18237261,41397682:255337 -k1,4044:19450079,41397682:255337 -k1,4044:22400911,41397682:255336 -k1,4044:23315540,41397682:255337 -k1,4044:24589962,41397682:255337 -k1,4044:26498772,41397682:255337 -k1,4044:28665794,41397682:255337 -k1,4044:30117818,41397682:255337 -k1,4044:31753999,41397682:255337 -k1,4045:32583029,41397682:0 -) -(1,4045:6630773,42239170:25952256,513147,126483 -k1,4044:9079651,42239170:254733 -k1,4044:9865882,42239170:254734 -k1,4044:12072277,42239170:254733 -k1,4044:15051342,42239170:254733 -k1,4044:16378245,42239170:254734 -k1,4044:17986952,42239170:254733 -k1,4044:21272070,42239170:254733 -k1,4044:23017092,42239170:254733 -k1,4044:24428536,42239170:254734 -k1,4044:26625101,42239170:254733 -k1,4044:27898919,42239170:254733 -k1,4044:30411368,42239170:254734 -k1,4044:31563944,42239170:254733 -k1,4044:32583029,42239170:0 -) -(1,4045:6630773,43080658:25952256,513147,134348 -k1,4044:10197623,43080658:139317 -k1,4044:10868437,43080658:139317 -k1,4044:13839565,43080658:139317 -k1,4044:15714276,43080658:139318 -k1,4044:16209453,43080658:139317 -(1,4044:16209453,43080658:0,452978,115847 -r1,4047:19381413,43080658:3171960,568825,115847 -k1,4044:16209453,43080658:-3171960 -) -(1,4044:16209453,43080658:3171960,452978,115847 -k1,4044:16209453,43080658:3277 -h1,4044:19378136,43080658:0,411205,112570 -) -k1,4044:19520730,43080658:139317 -k1,4044:21525857,43080658:139317 -k1,4044:22351336,43080658:139317 -k1,4044:25474507,43080658:139317 -k1,4044:26241660,43080658:139318 -k1,4044:27584218,43080658:139317 -k1,4044:30707389,43080658:139317 -k1,4045:32583029,43080658:0 -) -(1,4045:6630773,43922146:25952256,513147,134348 -k1,4044:9167671,43922146:135659 -k1,4044:10250982,43922146:135660 -k1,4044:11776004,43922146:135659 -k1,4044:13103109,43922146:135660 -k1,4044:14257853,43922146:135659 -k1,4044:17821046,43922146:135660 -k1,4044:21794493,43922146:135659 -k1,4044:22921713,43922146:135660 -k1,4044:26382013,43922146:135659 -k1,4044:28253066,43922146:135660 -k1,4044:30582870,43922146:135659 -k1,4044:32583029,43922146:0 -) -(1,4045:6630773,44763634:25952256,505283,126483 -k1,4044:8688323,44763634:183220 -k1,4044:10698031,44763634:183220 -k1,4044:12369574,44763634:183220 -k1,4044:13946745,44763634:183220 -k1,4044:14485825,44763634:183220 -k1,4044:17078148,44763634:183220 -k1,4044:20409717,44763634:183219 -k1,4044:21546486,44763634:183220 -k1,4044:23390388,44763634:183220 -k1,4044:24189646,44763634:183220 -k1,4044:25391951,44763634:183220 -k1,4044:28236588,44763634:183220 -k1,4044:30288239,44763634:183220 -k1,4044:31490544,44763634:183220 -k1,4044:32583029,44763634:0 -) -(1,4045:6630773,45605122:25952256,513147,134348 -k1,4044:7455610,45605122:165545 -k1,4044:9313296,45605122:165546 -k1,4044:10138133,45605122:165545 -k1,4044:12174077,45605122:165546 -(1,4044:12174077,45605122:0,459977,115847 -r1,4047:12532343,45605122:358266,575824,115847 -k1,4044:12174077,45605122:-358266 -) -(1,4044:12174077,45605122:358266,459977,115847 -k1,4044:12174077,45605122:3277 -h1,4044:12529066,45605122:0,411205,112570 -) -k1,4044:12697888,45605122:165545 -k1,4044:13394931,45605122:165546 -k1,4044:15073702,45605122:165545 -k1,4044:16186899,45605122:165546 -(1,4044:16186899,45605122:0,452978,115847 -r1,4047:18655436,45605122:2468537,568825,115847 -k1,4044:16186899,45605122:-2468537 -) -(1,4044:16186899,45605122:2468537,452978,115847 -k1,4044:16186899,45605122:3277 -h1,4044:18652159,45605122:0,411205,112570 -) -k1,4044:18820981,45605122:165545 -k1,4044:20997172,45605122:165546 -k1,4044:21814145,45605122:165545 -k1,4044:22727457,45605122:165546 -k1,4044:26098368,45605122:165545 -k1,4044:29380806,45605122:165546 -k1,4044:30197779,45605122:165545 -k1,4044:30719185,45605122:165546 -k1,4044:32583029,45605122:0 -) -] -(1,4047:32583029,45706769:0,0,0 -g1,4047:32583029,45706769 -) -) -] -(1,4047:6630773,47279633:25952256,0,0 -h1,4047:6630773,47279633:25952256,0,0 -) -] -(1,4047:4262630,4025873:0,0,0 -[1,4047:-473656,4025873:0,0,0 -(1,4047:-473656,-710413:0,0,0 -(1,4047:-473656,-710413:0,0,0 -g1,4047:-473656,-710413 -) -g1,4047:-473656,-710413 -) -] -) -] -!25785 -}78 -Input:689:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:690:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:691:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:692:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:693:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:694:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:695:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:696:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:697:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:698:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:699:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:700:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:701:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:702:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:703:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:704:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:705:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:706:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:707:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:708:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1871 -{79 -[1,4153:4262630,47279633:28320399,43253760,0 -(1,4153:4262630,4025873:0,0,0 -[1,4153:-473656,4025873:0,0,0 -(1,4153:-473656,-710413:0,0,0 -(1,4153:-473656,-644877:0,0,0 -k1,4153:-473656,-644877:-65536 -) -(1,4153:-473656,4736287:0,0,0 -k1,4153:-473656,4736287:5209943 -) -g1,4153:-473656,-710413 ) ] +!30880 +}59 +Input:524:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:525:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:526:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:527:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:528:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:529:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:530:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:531:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:532:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:533:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:534:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:535:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:536:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:537:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:538:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:539:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:540:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:541:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:542:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:543:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:544:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:545:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:546:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:547:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!2243 +{60 +[1,2624:4262630,47279633:28320399,43253760,0 +(1,2624:4262630,4025873:0,0,0 +[1,2624:-473656,4025873:0,0,0 +(1,2624:-473656,-710413:0,0,0 +(1,2624:-473656,-644877:0,0,0 +k1,2624:-473656,-644877:-65536 ) -[1,4153:6630773,47279633:25952256,43253760,0 -[1,4153:6630773,4812305:25952256,786432,0 -(1,4153:6630773,4812305:25952256,505283,11795 -(1,4153:6630773,4812305:25952256,505283,11795 -g1,4153:3078558,4812305 -[1,4153:3078558,4812305:0,0,0 -(1,4153:3078558,2439708:0,1703936,0 -k1,4153:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,4153:2537886,2439708:1179648,16384,0 -) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,4153:3078558,1915420:16384,1179648,0 +(1,2624:-473656,4736287:0,0,0 +k1,2624:-473656,4736287:5209943 ) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 +g1,2624:-473656,-710413 ) ] ) +[1,2624:6630773,47279633:25952256,43253760,0 +[1,2624:6630773,4812305:25952256,786432,0 +(1,2624:6630773,4812305:25952256,505283,11795 +(1,2624:6630773,4812305:25952256,505283,11795 +g1,2624:3078558,4812305 +[1,2624:3078558,4812305:0,0,0 +(1,2624:3078558,2439708:0,1703936,0 +k1,2624:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,2624:2537886,2439708:1179648,16384,0 ) +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,2624:3078558,1915420:16384,1179648,0 ) -] -[1,4153:3078558,4812305:0,0,0 -(1,4153:3078558,2439708:0,1703936,0 -g1,4153:29030814,2439708 -g1,4153:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,4153:36151628,1915420:16384,1179648,0 -) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) ] ) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,4153:37855564,2439708:1179648,16384,0 ) ) -k1,4153:3078556,2439708:-34777008 -) ] -[1,4153:3078558,4812305:0,0,0 -(1,4153:3078558,49800853:0,16384,2228224 -k1,4153:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,4153:2537886,49800853:1179648,16384,0 -) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,4153:3078558,51504789:16384,1179648,0 +[1,2624:3078558,4812305:0,0,0 +(1,2624:3078558,2439708:0,1703936,0 +g1,2624:29030814,2439708 +g1,2624:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,2624:36151628,1915420:16384,1179648,0 ) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) ] ) +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,2624:37855564,2439708:1179648,16384,0 ) ) -] -[1,4153:3078558,4812305:0,0,0 -(1,4153:3078558,49800853:0,16384,2228224 -g1,4153:29030814,49800853 -g1,4153:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,4153:36151628,51504789:16384,1179648,0 -) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 +k1,2624:3078556,2439708:-34777008 ) ] +[1,2624:3078558,4812305:0,0,0 +(1,2624:3078558,49800853:0,16384,2228224 +k1,2624:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,2624:2537886,49800853:1179648,16384,0 ) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,4153:37855564,49800853:1179648,16384,0 -) +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,2624:3078558,51504789:16384,1179648,0 ) -k1,4153:3078556,49800853:-34777008 +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) ] -g1,4153:6630773,4812305 -k1,4153:22348274,4812305:14920583 -g1,4153:23970945,4812305 -g1,4153:24793421,4812305 -g1,4153:27528893,4812305 -g1,4153:28938572,4812305 -) -) -] -[1,4153:6630773,45706769:25952256,40108032,0 -(1,4153:6630773,45706769:25952256,40108032,0 -(1,4153:6630773,45706769:0,0,0 -g1,4153:6630773,45706769 -) -[1,4153:6630773,45706769:25952256,40108032,0 -(1,4045:6630773,6254097:25952256,513147,134348 -k1,4044:9012297,6254097:219491 -k1,4044:10921305,6254097:219490 -(1,4044:10921305,6254097:0,414482,122846 -r1,4153:11279571,6254097:358266,537328,122846 -k1,4044:10921305,6254097:-358266 -) -(1,4044:10921305,6254097:358266,414482,122846 -k1,4044:10921305,6254097:3277 -h1,4044:11276294,6254097:0,411205,112570 -) -k1,4044:11499062,6254097:219491 -k1,4044:12250050,6254097:219491 -k1,4044:13982766,6254097:219490 -k1,4044:15900295,6254097:219491 -k1,4044:16988137,6254097:219490 -k1,4044:18142171,6254097:219491 -k1,4044:19380747,6254097:219491 -k1,4044:22086018,6254097:219490 -k1,4044:22964801,6254097:219491 -k1,4044:26497792,6254097:219491 -k1,4044:28501827,6254097:219490 -k1,4044:29912763,6254097:219491 -(1,4044:29912763,6254097:0,414482,115847 -r1,4153:30271029,6254097:358266,530329,115847 -k1,4044:29912763,6254097:-358266 -) -(1,4044:29912763,6254097:358266,414482,115847 -k1,4044:29912763,6254097:3277 -h1,4044:30267752,6254097:0,411205,112570 -) -k1,4044:30490519,6254097:219490 -k1,4044:31657661,6254097:219491 -k1,4045:32583029,6254097:0 -) -(1,4045:6630773,7095585:25952256,513147,126483 -g1,4044:9841381,7095585 -g1,4044:10723495,7095585 -g1,4044:13662785,7095585 -k1,4045:32583029,7095585:16056976 -g1,4045:32583029,7095585 -) -v1,4047:6630773,8235020:0,393216,0 -(1,4067:6630773,13826447:25952256,5984643,196608 -g1,4067:6630773,13826447 -g1,4067:6630773,13826447 -g1,4067:6434165,13826447 -(1,4067:6434165,13826447:0,5984643,196608 -r1,4153:32779637,13826447:26345472,6181251,196608 -k1,4067:6434165,13826447:-26345472 -) -(1,4067:6434165,13826447:26345472,5984643,196608 -[1,4067:6630773,13826447:25952256,5788035,0 -(1,4049:6630773,8442638:25952256,404226,82312 -(1,4048:6630773,8442638:0,0,0 -g1,4048:6630773,8442638 -g1,4048:6630773,8442638 -g1,4048:6303093,8442638 -(1,4048:6303093,8442638:0,0,0 -) -g1,4048:6630773,8442638 -) -g1,4049:7263065,8442638 -g1,4049:7895357,8442638 -g1,4049:12637543,8442638 -h1,4049:13902126,8442638:0,0,0 -k1,4049:32583030,8442638:18680904 -g1,4049:32583030,8442638 -) -(1,4050:6630773,9108816:25952256,410518,101187 -h1,4050:6630773,9108816:0,0,0 -g1,4050:10740668,9108816 -g1,4050:13269834,9108816 -g1,4050:14850563,9108816 -g1,4050:16747437,9108816 -g1,4050:18012020,9108816 -g1,4050:20225040,9108816 -g1,4050:22121915,9108816 -h1,4050:23702643,9108816:0,0,0 -k1,4050:32583029,9108816:8880386 -g1,4050:32583029,9108816 -) -(1,4054:6630773,9774994:25952256,404226,76021 -(1,4052:6630773,9774994:0,0,0 -g1,4052:6630773,9774994 -g1,4052:6630773,9774994 -g1,4052:6303093,9774994 -(1,4052:6303093,9774994:0,0,0 -) -g1,4052:6630773,9774994 -) -g1,4054:7579210,9774994 -g1,4054:8843793,9774994 -g1,4054:10424522,9774994 -g1,4054:12953688,9774994 -g1,4054:14534417,9774994 -g1,4054:16747437,9774994 -g1,4054:18012020,9774994 -h1,4054:18644311,9774994:0,0,0 -k1,4054:32583029,9774994:13938718 -g1,4054:32583029,9774994 -) -(1,4056:6630773,11096532:25952256,410518,107478 -(1,4055:6630773,11096532:0,0,0 -g1,4055:6630773,11096532 -g1,4055:6630773,11096532 -g1,4055:6303093,11096532 -(1,4055:6303093,11096532:0,0,0 -) -g1,4055:6630773,11096532 -) -k1,4056:6630773,11096532:0 -g1,4056:10740668,11096532 -g1,4056:13269834,11096532 -g1,4056:14850563,11096532 -g1,4056:16431292,11096532 -g1,4056:17695875,11096532 -g1,4056:19908895,11096532 -g1,4056:21805770,11096532 -h1,4056:23386498,11096532:0,0,0 -k1,4056:32583029,11096532:9196531 -g1,4056:32583029,11096532 -) -(1,4060:6630773,11762710:25952256,404226,76021 -(1,4058:6630773,11762710:0,0,0 -g1,4058:6630773,11762710 -g1,4058:6630773,11762710 -g1,4058:6303093,11762710 -(1,4058:6303093,11762710:0,0,0 -) -g1,4058:6630773,11762710 -) -g1,4060:7579210,11762710 -g1,4060:8843793,11762710 -g1,4060:10424522,11762710 -g1,4060:12953688,11762710 -g1,4060:14534417,11762710 -g1,4060:16431291,11762710 -g1,4060:17695874,11762710 -h1,4060:18328165,11762710:0,0,0 -k1,4060:32583029,11762710:14254864 -g1,4060:32583029,11762710 -) -(1,4062:6630773,13084248:25952256,410518,101187 -(1,4061:6630773,13084248:0,0,0 -g1,4061:6630773,13084248 -g1,4061:6630773,13084248 -g1,4061:6303093,13084248 -(1,4061:6303093,13084248:0,0,0 -) -g1,4061:6630773,13084248 -) -k1,4062:6630773,13084248:0 -g1,4062:10740668,13084248 -g1,4062:13269834,13084248 -g1,4062:14850563,13084248 -g1,4062:16747437,13084248 -g1,4062:18012020,13084248 -g1,4062:20225040,13084248 -g1,4062:22121915,13084248 -h1,4062:23702643,13084248:0,0,0 -k1,4062:32583029,13084248:8880386 -g1,4062:32583029,13084248 -) -(1,4066:6630773,13750426:25952256,404226,76021 -(1,4064:6630773,13750426:0,0,0 -g1,4064:6630773,13750426 -g1,4064:6630773,13750426 -g1,4064:6303093,13750426 -(1,4064:6303093,13750426:0,0,0 -) -g1,4064:6630773,13750426 -) -g1,4066:7579210,13750426 -g1,4066:8843793,13750426 -g1,4066:10424522,13750426 -g1,4066:12953688,13750426 -g1,4066:14534417,13750426 -g1,4066:17379728,13750426 -g1,4066:18644311,13750426 -h1,4066:20541185,13750426:0,0,0 -k1,4066:32583029,13750426:12041844 -g1,4066:32583029,13750426 -) -] -) -g1,4067:32583029,13826447 -g1,4067:6630773,13826447 -g1,4067:6630773,13826447 -g1,4067:32583029,13826447 -g1,4067:32583029,13826447 -) -h1,4067:6630773,14023055:0,0,0 -(1,4071:6630773,15337800:25952256,505283,126483 -h1,4070:6630773,15337800:983040,0,0 -k1,4070:8469610,15337800:227962 -k1,4070:9716658,15337800:227963 -k1,4070:12754804,15337800:227962 -(1,4070:12754804,15337800:0,459977,115847 -r1,4153:24367848,15337800:11613044,575824,115847 -k1,4070:12754804,15337800:-11613044 -) -(1,4070:12754804,15337800:11613044,459977,115847 -g1,4070:14516640,15337800 -g1,4070:17330335,15337800 -g1,4070:19088894,15337800 -g1,4070:21199165,15337800 -g1,4070:22606012,15337800 -h1,4070:24364571,15337800:0,411205,112570 -) -k1,4070:24769480,15337800:227962 -k1,4070:26652226,15337800:227962 -k1,4070:27871749,15337800:227963 -k1,4070:29272150,15337800:227962 -k1,4071:32583029,15337800:0 -) -(1,4071:6630773,16179288:25952256,513147,126483 -k1,4070:7776967,16179288:180193 -k1,4070:8904810,16179288:180192 -(1,4070:8904810,16179288:0,452978,115847 -r1,4153:11373347,16179288:2468537,568825,115847 -k1,4070:8904810,16179288:-2468537 -) -(1,4070:8904810,16179288:2468537,452978,115847 -k1,4070:8904810,16179288:3277 -h1,4070:11370070,16179288:0,411205,112570 -) -k1,4070:11553540,16179288:180193 -k1,4070:13918047,16179288:180192 -(1,4070:13918047,16179288:0,459977,115847 -r1,4153:15683160,16179288:1765113,575824,115847 -k1,4070:13918047,16179288:-1765113 -) -(1,4070:13918047,16179288:1765113,459977,115847 -k1,4070:13918047,16179288:3277 -h1,4070:15679883,16179288:0,411205,112570 -) -k1,4070:15863353,16179288:180193 -k1,4070:17234991,16179288:180193 -(1,4070:17234991,16179288:0,459977,115847 -r1,4153:18648392,16179288:1413401,575824,115847 -k1,4070:17234991,16179288:-1413401 -) -(1,4070:17234991,16179288:1413401,459977,115847 -k1,4070:17234991,16179288:3277 -h1,4070:18645115,16179288:0,411205,112570 -) -k1,4070:19002254,16179288:180192 -k1,4070:19907275,16179288:180193 -k1,4070:20703505,16179288:180192 -k1,4070:23549703,16179288:180193 -k1,4070:24381324,16179288:180193 -k1,4070:25580601,16179288:180192 -k1,4070:28744648,16179288:180193 -k1,4070:29793192,16179288:180192 -k1,4070:31410590,16179288:180193 -k1,4070:32583029,16179288:0 -) -(1,4071:6630773,17020776:25952256,513147,126483 -k1,4070:8884674,17020776:243256 -k1,4070:12099988,17020776:243256 -k1,4070:13910864,17020776:243255 -k1,4070:15173205,17020776:243256 -k1,4070:16722594,17020776:243256 -k1,4070:18138289,17020776:243256 -k1,4070:21326077,17020776:243255 -k1,4070:22228625,17020776:243256 -k1,4070:24449758,17020776:243256 -(1,4070:24449758,17020776:0,414482,115847 -r1,4153:24808024,17020776:358266,530329,115847 -k1,4070:24449758,17020776:-358266 -) -(1,4070:24449758,17020776:358266,414482,115847 -k1,4070:24449758,17020776:3277 -h1,4070:24804747,17020776:0,411205,112570 -) -k1,4070:25224950,17020776:243256 -k1,4070:27342535,17020776:243255 -k1,4070:29354608,17020776:243256 -k1,4070:31073079,17020776:243256 -k1,4070:32583029,17020776:0 -) -(1,4071:6630773,17862264:25952256,513147,134348 -k1,4070:7975080,17862264:171868 -k1,4070:10909291,17862264:171868 -k1,4070:13389337,17862264:171868 -k1,4070:14220497,17862264:171868 -k1,4070:16405631,17862264:171868 -k1,4070:17907880,17862264:171868 -k1,4070:18762634,17862264:171869 -k1,4070:20401198,17862264:171868 -k1,4070:23193195,17862264:171868 -k1,4070:26626790,17862264:171868 -k1,4070:27995345,17862264:171868 -k1,4070:30977397,17862264:171868 -k1,4070:32583029,17862264:0 -) -(1,4071:6630773,18703752:25952256,505283,126483 -k1,4070:8347422,18703752:223739 -k1,4070:9637431,18703752:223738 -k1,4070:11391436,18703752:223739 -k1,4070:12266603,18703752:223739 -k1,4070:13238107,18703752:223738 -k1,4070:13817706,18703752:223739 -(1,4070:13817706,18703752:0,452978,115847 -r1,4153:16989666,18703752:3171960,568825,115847 -k1,4070:13817706,18703752:-3171960 -) -(1,4070:13817706,18703752:3171960,452978,115847 -k1,4070:13817706,18703752:3277 -h1,4070:16986389,18703752:0,411205,112570 -) -k1,4070:17213405,18703752:223739 -k1,4070:20194898,18703752:223738 -k1,4070:21104799,18703752:223739 -k1,4070:21944576,18703752:223739 -k1,4070:23865041,18703752:223738 -k1,4070:27254169,18703752:223739 -k1,4070:28164070,18703752:223739 -k1,4070:28743668,18703752:223738 -k1,4070:31478747,18703752:223739 -k1,4070:32583029,18703752:0 -) -(1,4071:6630773,19545240:25952256,505283,134348 -g1,4070:7577768,19545240 -g1,4070:9062813,19545240 -g1,4070:11467329,19545240 -g1,4070:12352720,19545240 -k1,4071:32583030,19545240:16984312 -g1,4071:32583030,19545240 -) -v1,4073:6630773,20859985:0,393216,0 -(1,4074:6630773,25626446:25952256,5159677,0 -g1,4074:6630773,25626446 -g1,4074:6303093,25626446 -r1,4153:6401397,25626446:98304,5159677,0 -g1,4074:6600626,25626446 -g1,4074:6797234,25626446 -[1,4074:6797234,25626446:25785795,5159677,0 -(1,4074:6797234,21292523:25785795,825754,196608 -(1,4073:6797234,21292523:0,825754,196608 -r1,4153:7890375,21292523:1093141,1022362,196608 -k1,4073:6797234,21292523:-1093141 -) -(1,4073:6797234,21292523:1093141,825754,196608 -) -k1,4073:8084897,21292523:194522 -k1,4073:9811115,21292523:327680 -k1,4073:12795504,21292523:194521 -(1,4073:12795504,21292523:0,459977,115847 -r1,4153:15615753,21292523:2820249,575824,115847 -k1,4073:12795504,21292523:-2820249 -) -(1,4073:12795504,21292523:2820249,459977,115847 -k1,4073:12795504,21292523:3277 -h1,4073:15612476,21292523:0,411205,112570 -) -k1,4073:15810275,21292523:194522 -k1,4073:17341730,21292523:194521 -k1,4073:18284018,21292523:194522 -k1,4073:20348937,21292523:194521 -k1,4073:21194887,21292523:194522 -k1,4073:22655564,21292523:194521 -k1,4073:23466124,21292523:194522 -k1,4073:25352785,21292523:194521 -k1,4073:27418360,21292523:194522 -k1,4073:28685050,21292523:194521 -(1,4073:28685050,21292523:0,459977,115847 -r1,4153:31857010,21292523:3171960,575824,115847 -k1,4073:28685050,21292523:-3171960 -) -(1,4073:28685050,21292523:3171960,459977,115847 -k1,4073:28685050,21292523:3277 -h1,4073:31853733,21292523:0,411205,112570 -) -k1,4073:32051532,21292523:194522 -k1,4073:32583029,21292523:0 -) -(1,4074:6797234,22134011:25785795,513147,134348 -k1,4073:8593861,22134011:146430 -k1,4073:11041260,22134011:146430 -k1,4073:12379134,22134011:146429 -k1,4073:15555949,22134011:146430 -k1,4073:17623895,22134011:146430 -k1,4073:19164276,22134011:146430 -k1,4073:22723821,22134011:146430 -k1,4073:23486289,22134011:146430 -k1,4073:24651803,22134011:146429 -k1,4073:25890718,22134011:146430 -k1,4073:26696440,22134011:146430 -k1,4073:27861955,22134011:146430 -k1,4073:28461841,22134011:146377 -k1,4073:31450567,22134011:146430 -k1,4073:32583029,22134011:0 -) -(1,4074:6797234,22975499:25785795,513147,134348 -k1,4073:9270288,22975499:138662 -k1,4073:11131891,22975499:138661 -k1,4073:13093109,22975499:138662 -(1,4073:13093109,22975499:0,459977,115847 -r1,4153:16265069,22975499:3171960,575824,115847 -k1,4073:13093109,22975499:-3171960 -) -(1,4073:13093109,22975499:3171960,459977,115847 -k1,4073:13093109,22975499:3277 -h1,4073:16261792,22975499:0,411205,112570 -) -k1,4073:16403731,22975499:138662 -k1,4073:17733838,22975499:138662 -k1,4073:18660897,22975499:138661 -k1,4073:19892044,22975499:138662 -k1,4073:20689998,22975499:138662 -k1,4073:23969145,22975499:138662 -k1,4073:25055457,22975499:138661 -k1,4073:28621652,22975499:138662 -k1,4073:31092740,22975499:138662 -k1,4073:32583029,22975499:0 -) -(1,4074:6797234,23816987:25785795,513147,134348 -k1,4073:7441191,23816987:177996 -k1,4073:8789659,23816987:177995 -k1,4073:9959215,23816987:177996 -k1,4073:12629545,23816987:177996 -k1,4073:14201491,23816987:177995 -k1,4073:15006666,23816987:177996 -k1,4073:16571404,23816987:177996 -k1,4073:17584983,23816987:177995 -k1,4073:18782064,23816987:177996 -k1,4073:20348113,23816987:177996 -k1,4073:22354562,23816987:177995 -k1,4073:23480209,23816987:177996 -k1,4073:25124901,23816987:177996 -k1,4073:28502364,23816987:177995 -k1,4073:29871805,23816987:177996 -k1,4073:32583029,23816987:0 -) -(1,4074:6797234,24658475:25785795,513147,134348 -k1,4073:7753919,24658475:195157 -k1,4073:9845688,24658475:195157 -k1,4073:10692273,24658475:195157 -k1,4073:12816809,24658475:195156 -k1,4073:14031051,24658475:195157 -k1,4073:15879681,24658475:195157 -k1,4073:19280204,24658475:195157 -k1,4073:21634117,24658475:195157 -k1,4073:22590802,24658475:195157 -k1,4073:24854275,24658475:195157 -k1,4073:25708723,24658475:195156 -k1,4073:26922965,24658475:195157 -k1,4073:28290561,24658475:195157 -k1,4073:31685186,24658475:195157 -k1,4073:32583029,24658475:0 -) -(1,4074:6797234,25499963:25785795,513147,126483 -k1,4073:8239040,25499963:155990 -k1,4073:9737863,25499963:155990 -k1,4073:11287804,25499963:155990 -k1,4073:13140521,25499963:155990 -k1,4073:16322308,25499963:155990 -k1,4073:17872249,25499963:155990 -k1,4073:19730209,25499963:155990 -k1,4073:21602587,25499963:155990 -k1,4073:22417869,25499963:155990 -k1,4073:23963222,25499963:155990 -k1,4073:25265437,25499963:155990 -(1,4073:25265437,25499963:0,452978,122846 -r1,4153:27733974,25499963:2468537,575824,122846 -k1,4073:25265437,25499963:-2468537 -) -(1,4073:25265437,25499963:2468537,452978,122846 -k1,4073:25265437,25499963:3277 -h1,4073:27730697,25499963:0,411205,112570 -) -k1,4073:27889964,25499963:155990 -k1,4073:29237399,25499963:155990 -(1,4073:29237399,25499963:0,452978,115847 -r1,4153:32409359,25499963:3171960,568825,115847 -k1,4073:29237399,25499963:-3171960 -) -(1,4073:29237399,25499963:3171960,452978,115847 -k1,4073:29237399,25499963:3277 -h1,4073:32406082,25499963:0,411205,112570 -) -k1,4074:32583029,25499963:0 -k1,4074:32583029,25499963:0 -) -] -g1,4074:32583029,25626446 -) -h1,4074:6630773,25626446:0,0,0 -v1,4077:6630773,26941191:0,393216,0 -(1,4153:6630773,45706769:25952256,19158794,0 -g1,4153:6630773,45706769 -g1,4153:6303093,45706769 -r1,4153:6401397,45706769:98304,19158794,0 -g1,4153:6600626,45706769 -g1,4153:6797234,45706769 -[1,4153:6797234,45706769:25785795,19158794,0 -(1,4078:6797234,27303264:25785795,755289,196608 -(1,4077:6797234,27303264:0,755289,196608 -r1,4153:8134168,27303264:1336934,951897,196608 -k1,4077:6797234,27303264:-1336934 -) -(1,4077:6797234,27303264:1336934,755289,196608 -) -k1,4077:8333288,27303264:199120 -k1,4077:8660968,27303264:327680 -k1,4077:9813637,27303264:199120 -k1,4077:11487972,27303264:199120 -k1,4077:13542416,27303264:199120 -k1,4077:16831559,27303264:199120 -(1,4077:16831559,27303264:0,414482,115847 -r1,4153:17541537,27303264:709978,530329,115847 -k1,4077:16831559,27303264:-709978 -) -(1,4077:16831559,27303264:709978,414482,115847 -k1,4077:16831559,27303264:3277 -h1,4077:17538260,27303264:0,411205,112570 -) -k1,4077:17740657,27303264:199120 -k1,4077:18625939,27303264:199120 -k1,4077:19180919,27303264:199120 -k1,4077:21253058,27303264:199120 -k1,4077:23132521,27303264:199120 -k1,4077:25995024,27303264:199120 -k1,4077:28480695,27303264:199120 -k1,4077:29751984,27303264:199120 -k1,4077:30567142,27303264:199120 -k1,4078:32583029,27303264:0 -) -(1,4078:6797234,28144752:25785795,513147,115847 -(1,4077:6797234,28144752:0,414482,115847 -r1,4153:7507212,28144752:709978,530329,115847 -k1,4077:6797234,28144752:-709978 -) -(1,4077:6797234,28144752:709978,414482,115847 -k1,4077:6797234,28144752:3277 -h1,4077:7503935,28144752:0,411205,112570 -) -k1,4077:7669363,28144752:162151 -k1,4077:8161815,28144752:162151 -k1,4077:10019382,28144752:162151 -k1,4077:10797570,28144752:162150 -k1,4077:13301978,28144752:162151 -k1,4077:15798521,28144752:162151 -(1,4077:15798521,28144752:0,452978,115847 -r1,4153:18618770,28144752:2820249,568825,115847 -k1,4077:15798521,28144752:-2820249 -) -(1,4077:15798521,28144752:2820249,452978,115847 -k1,4077:15798521,28144752:3277 -h1,4077:18615493,28144752:0,411205,112570 -) -k1,4077:18954591,28144752:162151 -(1,4077:18954591,28144752:0,452978,115847 -r1,4153:23533399,28144752:4578808,568825,115847 -k1,4077:18954591,28144752:-4578808 -) -(1,4077:18954591,28144752:4578808,452978,115847 -k1,4077:18954591,28144752:3277 -h1,4077:23530122,28144752:0,411205,112570 -) -k1,4077:23869220,28144752:162151 -k1,4077:25142862,28144752:162151 -k1,4077:26496458,28144752:162151 -(1,4077:26496458,28144752:0,414482,115847 -r1,4153:27206436,28144752:709978,530329,115847 -k1,4077:26496458,28144752:-709978 -) -(1,4077:26496458,28144752:709978,414482,115847 -k1,4077:26496458,28144752:3277 -h1,4077:27203159,28144752:0,411205,112570 -) -k1,4077:27368586,28144752:162150 -k1,4077:30126618,28144752:162151 -k1,4077:30940197,28144752:162151 -k1,4077:31873051,28144752:162151 -(1,4077:31873051,28144752:0,414482,115847 -r1,4153:32583029,28144752:709978,530329,115847 -k1,4077:31873051,28144752:-709978 -) -(1,4077:31873051,28144752:709978,414482,115847 -k1,4077:31873051,28144752:3277 -h1,4077:32579752,28144752:0,411205,112570 -) -k1,4077:32583029,28144752:0 -) -(1,4078:6797234,28986240:25785795,513147,126483 -k1,4077:7629493,28986240:172967 -k1,4077:9357629,28986240:172967 -(1,4077:9357629,28986240:0,452978,122846 -r1,4153:11826166,28986240:2468537,575824,122846 -k1,4077:9357629,28986240:-2468537 -) -(1,4077:9357629,28986240:2468537,452978,122846 -k1,4077:9357629,28986240:3277 -h1,4077:11822889,28986240:0,411205,112570 -) -k1,4077:12172803,28986240:172967 -(1,4077:12172803,28986240:0,414482,115847 -r1,4153:12882781,28986240:709978,530329,115847 -k1,4077:12172803,28986240:-709978 -) -(1,4077:12172803,28986240:709978,414482,115847 -k1,4077:12172803,28986240:3277 -h1,4077:12879504,28986240:0,411205,112570 -) -k1,4077:13055747,28986240:172966 -k1,4077:13760211,28986240:172967 -k1,4077:16778096,28986240:172967 -k1,4077:20111864,28986240:172967 -k1,4077:21094201,28986240:172967 -k1,4077:22286253,28986240:172967 -k1,4077:23254827,28986240:172967 -k1,4077:24079221,28986240:172966 -k1,4077:25954158,28986240:172967 -k1,4077:28240006,28986240:172967 -k1,4077:30111011,28986240:172967 -k1,4077:32583029,28986240:0 -) -(1,4078:6797234,29827728:25785795,505283,134348 -g1,4077:7721291,29827728 -g1,4077:8536558,29827728 -g1,4077:11068869,29827728 -(1,4077:11068869,29827728:0,414482,115847 -r1,4153:11778847,29827728:709978,530329,115847 -k1,4077:11068869,29827728:-709978 -) -(1,4077:11068869,29827728:709978,414482,115847 -k1,4077:11068869,29827728:3277 -h1,4077:11775570,29827728:0,411205,112570 -) -g1,4077:11978076,29827728 -g1,4077:12708802,29827728 -g1,4077:13674147,29827728 -g1,4077:14741728,29827728 -g1,4077:16471223,29827728 -g1,4077:17321880,29827728 -k1,4078:32583029,29827728:13994993 -g1,4078:32583029,29827728 -) -v1,4080:6797234,31018194:0,393216,0 -(1,4094:6797234,34621905:25785795,3996927,196608 -g1,4094:6797234,34621905 -g1,4094:6797234,34621905 -g1,4094:6600626,34621905 -(1,4094:6600626,34621905:0,3996927,196608 -r1,4153:32779637,34621905:26179011,4193535,196608 -k1,4094:6600625,34621905:-26179012 -) -(1,4094:6600626,34621905:26179011,3996927,196608 -[1,4094:6797234,34621905:25785795,3800319,0 -(1,4082:6797234,31225812:25785795,404226,82312 -(1,4081:6797234,31225812:0,0,0 -g1,4081:6797234,31225812 -g1,4081:6797234,31225812 -g1,4081:6469554,31225812 -(1,4081:6469554,31225812:0,0,0 -) -g1,4081:6797234,31225812 -) -g1,4082:8377963,31225812 -g1,4082:9326401,31225812 -g1,4082:10907131,31225812 -h1,4082:11855568,31225812:0,0,0 -k1,4082:32583028,31225812:20727460 -g1,4082:32583028,31225812 -) -(1,4083:6797234,31891990:25785795,404226,76021 -h1,4083:6797234,31891990:0,0,0 -k1,4083:6797234,31891990:0 -h1,4083:12804002,31891990:0,0,0 -k1,4083:32583030,31891990:19779028 -g1,4083:32583030,31891990 -) -(1,4087:6797234,32558168:25785795,404226,76021 -(1,4085:6797234,32558168:0,0,0 -g1,4085:6797234,32558168 -g1,4085:6797234,32558168 -g1,4085:6469554,32558168 -(1,4085:6469554,32558168:0,0,0 -) -g1,4085:6797234,32558168 -) -g1,4087:7745671,32558168 -g1,4087:9010254,32558168 -h1,4087:10274837,32558168:0,0,0 -k1,4087:32583029,32558168:22308192 -g1,4087:32583029,32558168 -) -(1,4089:6797234,33879706:25785795,404226,76021 -(1,4088:6797234,33879706:0,0,0 -g1,4088:6797234,33879706 -g1,4088:6797234,33879706 -g1,4088:6469554,33879706 -(1,4088:6469554,33879706:0,0,0 -) -g1,4088:6797234,33879706 -) -k1,4089:6797234,33879706:0 -h1,4089:11223274,33879706:0,0,0 -k1,4089:32583030,33879706:21359756 -g1,4089:32583030,33879706 -) -(1,4093:6797234,34545884:25785795,404226,76021 -(1,4091:6797234,34545884:0,0,0 -g1,4091:6797234,34545884 -g1,4091:6797234,34545884 -g1,4091:6469554,34545884 -(1,4091:6469554,34545884:0,0,0 -) -g1,4091:6797234,34545884 -) -g1,4093:7745671,34545884 -g1,4093:9010254,34545884 -h1,4093:10590982,34545884:0,0,0 -k1,4093:32583030,34545884:21992048 -g1,4093:32583030,34545884 -) -] -) -g1,4094:32583029,34621905 -g1,4094:6797234,34621905 -g1,4094:6797234,34621905 -g1,4094:32583029,34621905 -g1,4094:32583029,34621905 -) -h1,4094:6797234,34818513:0,0,0 -v1,4098:6797234,36533267:0,393216,0 -(1,4106:6797234,38149262:25785795,2009211,196608 -g1,4106:6797234,38149262 -g1,4106:6797234,38149262 -g1,4106:6600626,38149262 -(1,4106:6600626,38149262:0,2009211,196608 -r1,4153:32779637,38149262:26179011,2205819,196608 -k1,4106:6600625,38149262:-26179012 -) -(1,4106:6600626,38149262:26179011,2009211,196608 -[1,4106:6797234,38149262:25785795,1812603,0 -(1,4100:6797234,36740885:25785795,404226,82312 -(1,4099:6797234,36740885:0,0,0 -g1,4099:6797234,36740885 -g1,4099:6797234,36740885 -g1,4099:6469554,36740885 -(1,4099:6469554,36740885:0,0,0 -) -g1,4099:6797234,36740885 -) -g1,4100:8377963,36740885 -g1,4100:9326401,36740885 -g1,4100:12171713,36740885 -h1,4100:13120150,36740885:0,0,0 -k1,4100:32583030,36740885:19462880 -g1,4100:32583030,36740885 -) -(1,4101:6797234,37407063:25785795,404226,76021 -h1,4101:6797234,37407063:0,0,0 -k1,4101:6797234,37407063:0 -h1,4101:13436293,37407063:0,0,0 -k1,4101:32583029,37407063:19146736 -g1,4101:32583029,37407063 -) -(1,4105:6797234,38073241:25785795,404226,76021 -(1,4103:6797234,38073241:0,0,0 -g1,4103:6797234,38073241 -g1,4103:6797234,38073241 -g1,4103:6469554,38073241 -(1,4103:6469554,38073241:0,0,0 -) -g1,4103:6797234,38073241 -) -g1,4105:7745671,38073241 -g1,4105:9010254,38073241 -h1,4105:10274837,38073241:0,0,0 -k1,4105:32583029,38073241:22308192 -g1,4105:32583029,38073241 -) -] -) -g1,4106:32583029,38149262 -g1,4106:6797234,38149262 -g1,4106:6797234,38149262 -g1,4106:32583029,38149262 -g1,4106:32583029,38149262 -) -h1,4106:6797234,38345870:0,0,0 -v1,4110:6797234,40060624:0,393216,0 -(1,4129:6797234,44985873:25785795,5318465,196608 -g1,4129:6797234,44985873 -g1,4129:6797234,44985873 -g1,4129:6600626,44985873 -(1,4129:6600626,44985873:0,5318465,196608 -r1,4153:32779637,44985873:26179011,5515073,196608 -k1,4129:6600625,44985873:-26179012 -) -(1,4129:6600626,44985873:26179011,5318465,196608 -[1,4129:6797234,44985873:25785795,5121857,0 -(1,4112:6797234,40268242:25785795,404226,76021 -(1,4111:6797234,40268242:0,0,0 -g1,4111:6797234,40268242 -g1,4111:6797234,40268242 -g1,4111:6469554,40268242 -(1,4111:6469554,40268242:0,0,0 -) -g1,4111:6797234,40268242 -) -k1,4112:6797234,40268242:0 -h1,4112:11855565,40268242:0,0,0 -k1,4112:32583029,40268242:20727464 -g1,4112:32583029,40268242 -) -(1,4116:6797234,40934420:25785795,404226,76021 -(1,4114:6797234,40934420:0,0,0 -g1,4114:6797234,40934420 -g1,4114:6797234,40934420 -g1,4114:6469554,40934420 -(1,4114:6469554,40934420:0,0,0 -) -g1,4114:6797234,40934420 -) -g1,4116:7745671,40934420 -g1,4116:9010254,40934420 -h1,4116:10590982,40934420:0,0,0 -k1,4116:32583030,40934420:21992048 -g1,4116:32583030,40934420 -) -(1,4118:6797234,42255958:25785795,404226,76021 -(1,4117:6797234,42255958:0,0,0 -g1,4117:6797234,42255958 -g1,4117:6797234,42255958 -g1,4117:6469554,42255958 -(1,4117:6469554,42255958:0,0,0 -) -g1,4117:6797234,42255958 -) -k1,4118:6797234,42255958:0 -h1,4118:9642545,42255958:0,0,0 -k1,4118:32583029,42255958:22940484 -g1,4118:32583029,42255958 -) -(1,4122:6797234,42922136:25785795,404226,107478 -(1,4120:6797234,42922136:0,0,0 -g1,4120:6797234,42922136 -g1,4120:6797234,42922136 -g1,4120:6469554,42922136 -(1,4120:6469554,42922136:0,0,0 ) -g1,4120:6797234,42922136 ) -g1,4122:7745671,42922136 -g1,4122:9010254,42922136 -h1,4122:11855565,42922136:0,0,0 -k1,4122:32583029,42922136:20727464 -g1,4122:32583029,42922136 ) -(1,4124:6797234,44243674:25785795,404226,76021 -(1,4123:6797234,44243674:0,0,0 -g1,4123:6797234,44243674 -g1,4123:6797234,44243674 -g1,4123:6469554,44243674 -(1,4123:6469554,44243674:0,0,0 +] +[1,2624:3078558,4812305:0,0,0 +(1,2624:3078558,49800853:0,16384,2228224 +g1,2624:29030814,49800853 +g1,2624:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,2624:36151628,51504789:16384,1179648,0 ) -g1,4123:6797234,44243674 +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 ) -k1,4124:6797234,44243674:0 -h1,4124:13120148,44243674:0,0,0 -k1,4124:32583028,44243674:19462880 -g1,4124:32583028,44243674 +] ) -(1,4128:6797234,44909852:25785795,404226,76021 -(1,4126:6797234,44909852:0,0,0 -g1,4126:6797234,44909852 -g1,4126:6797234,44909852 -g1,4126:6469554,44909852 -(1,4126:6469554,44909852:0,0,0 +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,2624:37855564,49800853:1179648,16384,0 ) -g1,4126:6797234,44909852 ) -g1,4128:7745671,44909852 -g1,4128:9010254,44909852 -h1,4128:12487856,44909852:0,0,0 -k1,4128:32583028,44909852:20095172 -g1,4128:32583028,44909852 +k1,2624:3078556,49800853:-34777008 ) ] +g1,2624:6630773,4812305 +g1,2624:6630773,4812305 +g1,2624:10015707,4812305 +g1,2624:12209197,4812305 +k1,2624:31786111,4812305:19576914 ) -g1,4129:32583029,44985873 -g1,4129:6797234,44985873 -g1,4129:6797234,44985873 -g1,4129:32583029,44985873 -g1,4129:32583029,44985873 ) -h1,4129:6797234,45182481:0,0,0 ] -g1,4153:32583029,45706769 +[1,2624:6630773,45706769:25952256,40108032,0 +(1,2624:6630773,45706769:25952256,40108032,0 +(1,2624:6630773,45706769:0,0,0 +g1,2624:6630773,45706769 ) +[1,2624:6630773,45706769:25952256,40108032,0 +v1,2526:6630773,6254097:0,393216,0 +(1,2527:6630773,10202077:25952256,4341196,0 +g1,2527:6630773,10202077 +g1,2527:6237557,10202077 +r1,2624:6368629,10202077:131072,4341196,0 +g1,2527:6567858,10202077 +g1,2527:6764466,10202077 +[1,2527:6764466,10202077:25818563,4341196,0 +(1,2527:6764466,6615274:25818563,754393,260573 +(1,2526:6764466,6615274:0,754393,260573 +r1,2624:8010564,6615274:1246098,1014966,260573 +k1,2526:6764466,6615274:-1246098 +) +(1,2526:6764466,6615274:1246098,754393,260573 +) +k1,2526:8211956,6615274:201392 +k1,2526:8539636,6615274:327680 +k1,2526:11171759,6615274:201393 +k1,2526:15143437,6615274:201392 +k1,2526:16336390,6615274:201393 +k1,2526:18051008,6615274:201392 +k1,2526:18868438,6615274:201392 +k1,2526:20522109,6615274:201393 +k1,2526:21914946,6615274:201392 +k1,2526:23877291,6615274:201393 +k1,2526:25581424,6615274:201392 +k1,2526:27944194,6615274:201393 +k1,2526:29337031,6615274:201392 +k1,2526:32583029,6615274:0 +) +(1,2527:6764466,7480354:25818563,513147,134348 +k1,2526:8201452,7480354:245541 +k1,2526:9438554,7480354:245542 +k1,2526:11005956,7480354:245541 +k1,2526:11918654,7480354:245542 +k1,2526:13522756,7480354:245541 +k1,2526:15051493,7480354:245542 +k1,2526:16488479,7480354:245541 +k1,2526:18435991,7480354:245542 +k1,2526:21854130,7480354:245541 +k1,2526:22715710,7480354:245542 +k1,2526:25627256,7480354:245541 +k1,2526:26524226,7480354:245542 +k1,2526:27358280,7480354:245541 +k1,2526:28984666,7480354:245542 +k1,2526:31298523,7480354:245541 +k1,2526:32583029,7480354:0 +) +(1,2527:6764466,8345434:25818563,513147,134348 +k1,2526:10119960,8345434:199280 +k1,2526:11820014,8345434:199280 +k1,2526:12828664,8345434:199280 +k1,2526:14047028,8345434:199279 +k1,2526:15899781,8345434:199280 +k1,2526:17597869,8345434:199280 +k1,2526:19191100,8345434:199280 +k1,2526:19805223,8345434:199280 +k1,2526:23521165,8345434:199280 +k1,2526:24892883,8345434:199279 +k1,2526:28248377,8345434:199280 +k1,2526:29106949,8345434:199280 +k1,2526:30325314,8345434:199280 +k1,2526:32583029,8345434:0 +) +(1,2527:6764466,9210514:25818563,513147,134348 +k1,2526:7431149,9210514:179095 +k1,2526:11219987,9210514:179115 +k1,2526:12066258,9210514:179115 +k1,2526:12660196,9210514:179095 +k1,2526:15113410,9210514:179115 +k1,2526:19062811,9210514:179115 +k1,2526:20346208,9210514:179115 +k1,2526:21273089,9210514:179115 +k1,2526:24251247,9210514:179115 +k1,2526:25824313,9210514:179115 +(1,2526:25824313,9210514:0,452978,122846 +r1,2624:29699697,9210514:3875384,575824,122846 +k1,2526:25824313,9210514:-3875384 +) +(1,2526:25824313,9210514:3875384,452978,122846 +k1,2526:25824313,9210514:3277 +h1,2526:29696420,9210514:0,411205,112570 +) +k1,2526:30052482,9210514:179115 +k1,2526:31185146,9210514:179115 +k1,2526:32583029,9210514:0 +) +(1,2527:6764466,10075594:25818563,513147,126483 +g1,2526:9632976,10075594 +g1,2526:10751020,10075594 +g1,2526:13215829,10075594 +k1,2527:32583028,10075594:17109484 +g1,2527:32583028,10075594 +) +] +g1,2527:32583029,10202077 +) +h1,2527:6630773,10202077:0,0,0 +(1,2530:6630773,11067157:25952256,513147,134348 +h1,2529:6630773,11067157:983040,0,0 +k1,2529:10246632,11067157:202089 +k1,2529:14219007,11067157:202089 +k1,2529:15412656,11067157:202089 +k1,2529:18143779,11067157:202089 +k1,2529:19916111,11067157:202089 +k1,2529:21309646,11067157:202090 +k1,2529:24650254,11067157:202089 +k1,2529:27882728,11067157:202089 +k1,2529:29642608,11067157:202089 +k1,2529:30836257,11067157:202089 +k1,2529:31394206,11067157:202089 +k1,2530:32583029,11067157:0 +) +(1,2530:6630773,11932237:25952256,513147,134348 +k1,2529:8673379,11932237:176141 +k1,2529:9465557,11932237:176140 +k1,2529:13372007,11932237:176141 +k1,2529:16482849,11932237:176140 +k1,2529:17678075,11932237:176141 +k1,2529:19626965,11932237:176141 +k1,2529:22101453,11932237:176140 +k1,2529:22929022,11932237:176141 +k1,2529:24716693,11932237:176141 +k1,2529:26401472,11932237:176140 +k1,2529:27670098,11932237:176141 +k1,2529:29496435,11932237:176140 +k1,2529:31115023,11932237:176141 +k1,2529:32583029,11932237:0 +) +(1,2530:6630773,12797317:25952256,513147,126483 +k1,2529:8497945,12797317:211077 +k1,2529:8922002,12797317:211065 +k1,2529:10265542,12797317:211078 +k1,2529:12137301,12797317:211077 +k1,2529:15340097,12797317:211077 +k1,2529:16210466,12797317:211077 +k1,2529:17440628,12797317:211077 +k1,2529:18917861,12797317:211077 +k1,2529:21080600,12797317:211077 +k1,2529:22734125,12797317:211078 +k1,2529:27465876,12797317:211077 +k1,2529:30346234,12797317:211077 +k1,2529:32370037,12797317:211077 +k1,2529:32583029,12797317:0 +) +(1,2530:6630773,13662397:25952256,513147,134348 +k1,2529:7951322,13662397:188087 +k1,2529:9231894,13662397:188087 +(1,2529:9231894,13662397:0,452978,122846 +r1,2624:11348719,13662397:2116825,575824,122846 +k1,2529:9231894,13662397:-2116825 +) +(1,2529:9231894,13662397:2116825,452978,122846 +k1,2529:9231894,13662397:3277 +h1,2529:11345442,13662397:0,411205,112570 +) +k1,2529:11536807,13662397:188088 +k1,2529:12672545,13662397:188087 +k1,2529:14557359,13662397:188087 +k1,2529:17910835,13662397:188087 +k1,2529:19171091,13662397:188087 +k1,2529:21590679,13662397:188087 +k1,2529:23480737,13662397:188088 +k1,2529:24083656,13662397:188076 +k1,2529:27297540,13662397:188087 +k1,2529:30466204,13662397:188087 +(1,2529:30466204,13662397:0,452978,122846 +r1,2624:32583029,13662397:2116825,575824,122846 +k1,2529:30466204,13662397:-2116825 +) +(1,2529:30466204,13662397:2116825,452978,122846 +k1,2529:30466204,13662397:3277 +h1,2529:32579752,13662397:0,411205,112570 +) +k1,2529:32583029,13662397:0 +) +(1,2530:6630773,14527477:25952256,505283,134348 +g1,2529:8021447,14527477 +(1,2529:8021447,14527477:0,452978,122846 +r1,2624:10489984,14527477:2468537,575824,122846 +k1,2529:8021447,14527477:-2468537 +) +(1,2529:8021447,14527477:2468537,452978,122846 +k1,2529:8021447,14527477:3277 +h1,2529:10486707,14527477:0,411205,112570 +) +g1,2529:10689213,14527477 +g1,2529:12936442,14527477 +g1,2529:15409770,14527477 +g1,2529:19379285,14527477 +g1,2529:20264676,14527477 +k1,2530:32583029,14527477:9473435 +g1,2530:32583029,14527477 +) +(1,2532:6630773,15392557:25952256,505283,134348 +h1,2531:6630773,15392557:983040,0,0 +g1,2531:8440877,15392557 +g1,2531:8995966,15392557 +g1,2531:11469294,15392557 +g1,2531:15108508,15392557 +(1,2531:15108508,15392557:0,452978,115847 +r1,2624:15466774,15392557:358266,568825,115847 +k1,2531:15108508,15392557:-358266 +) +(1,2531:15108508,15392557:358266,452978,115847 +k1,2531:15108508,15392557:3277 +h1,2531:15463497,15392557:0,411205,112570 +) +g1,2531:15666003,15392557 +g1,2531:18898238,15392557 +g1,2531:22484368,15392557 +g1,2531:25654999,15392557 +k1,2532:32583029,15392557:4083112 +g1,2532:32583029,15392557 +) +v1,2534:6630773,16077412:0,393216,0 +(1,2541:6630773,17200992:25952256,1516796,196608 +g1,2541:6630773,17200992 +g1,2541:6630773,17200992 +g1,2541:6434165,17200992 +(1,2541:6434165,17200992:0,1516796,196608 +r1,2624:32779637,17200992:26345472,1713404,196608 +k1,2541:6434165,17200992:-26345472 +) +(1,2541:6434165,17200992:26345472,1516796,196608 +[1,2541:6630773,17200992:25952256,1320188,0 +(1,2536:6630773,16305243:25952256,424439,112852 +(1,2535:6630773,16305243:0,0,0 +g1,2535:6630773,16305243 +g1,2535:6630773,16305243 +g1,2535:6303093,16305243 +(1,2535:6303093,16305243:0,0,0 +) +g1,2535:6630773,16305243 +) +k1,2536:6630773,16305243:0 +g1,2536:10946175,16305243 +g1,2536:11610083,16305243 +g1,2536:14265715,16305243 +g1,2536:18249162,16305243 +g1,2536:18913070,16305243 +g1,2536:21236748,16305243 +g1,2536:21900656,16305243 +g1,2536:22564564,16305243 +h1,2536:25220196,16305243:0,0,0 +k1,2536:32583029,16305243:7362833 +g1,2536:32583029,16305243 +) +(1,2540:6630773,17121170:25952256,424439,79822 +(1,2538:6630773,17121170:0,0,0 +g1,2538:6630773,17121170 +g1,2538:6630773,17121170 +g1,2538:6303093,17121170 +(1,2538:6303093,17121170:0,0,0 +) +g1,2538:6630773,17121170 +) +g1,2540:7626635,17121170 +g1,2540:8954451,17121170 +h1,2540:12273990,17121170:0,0,0 +k1,2540:32583030,17121170:20309040 +g1,2540:32583030,17121170 +) +] +) +g1,2541:32583029,17200992 +g1,2541:6630773,17200992 +g1,2541:6630773,17200992 +g1,2541:32583029,17200992 +g1,2541:32583029,17200992 +) +h1,2541:6630773,17397600:0,0,0 +(1,2545:6630773,18262680:25952256,505283,134348 +h1,2544:6630773,18262680:983040,0,0 +k1,2544:9919488,18262680:210489 +k1,2544:10485837,18262680:210489 +k1,2544:12970425,18262680:210489 +k1,2544:16620899,18262680:210489 +k1,2544:17699740,18262680:210489 +k1,2544:19014511,18262680:210489 +k1,2544:21117680,18262680:210489 +k1,2544:24633150,18262680:210489 +k1,2544:26853628,18262680:210489 +(1,2544:26853628,18262680:0,452978,115847 +r1,2624:27915318,18262680:1061690,568825,115847 +k1,2544:26853628,18262680:-1061690 +) +(1,2544:26853628,18262680:1061690,452978,115847 +g1,2544:27560329,18262680 +h1,2544:27912041,18262680:0,411205,112570 +) +k1,2544:28125807,18262680:210489 +k1,2544:29022458,18262680:210489 +k1,2544:32583029,18262680:0 +) +(1,2545:6630773,19127760:25952256,505283,134348 +g1,2544:7898894,19127760 +(1,2544:7898894,19127760:0,452978,115847 +r1,2624:12125990,19127760:4227096,568825,115847 +k1,2544:7898894,19127760:-4227096 +) +(1,2544:7898894,19127760:4227096,452978,115847 +k1,2544:7898894,19127760:3277 +h1,2544:12122713,19127760:0,411205,112570 +) +g1,2544:12498889,19127760 +g1,2544:13381003,19127760 +(1,2544:13381003,19127760:0,452978,115847 +r1,2624:15146116,19127760:1765113,568825,115847 +k1,2544:13381003,19127760:-1765113 +) +(1,2544:13381003,19127760:1765113,452978,115847 +k1,2544:13381003,19127760:3277 +h1,2544:15142839,19127760:0,411205,112570 +) +g1,2544:15345345,19127760 +g1,2544:18203370,19127760 +g1,2544:19534406,19127760 +k1,2545:32583029,19127760:11420709 +g1,2545:32583029,19127760 +) +v1,2547:6630773,19812615:0,393216,0 +(1,2556:6630773,22305905:25952256,2886506,196608 +g1,2556:6630773,22305905 +g1,2556:6630773,22305905 +g1,2556:6434165,22305905 +(1,2556:6434165,22305905:0,2886506,196608 +r1,2624:32779637,22305905:26345472,3083114,196608 +k1,2556:6434165,22305905:-26345472 +) +(1,2556:6434165,22305905:26345472,2886506,196608 +[1,2556:6630773,22305905:25952256,2689898,0 +(1,2549:6630773,20040446:25952256,424439,112852 +(1,2548:6630773,20040446:0,0,0 +g1,2548:6630773,20040446 +g1,2548:6630773,20040446 +g1,2548:6303093,20040446 +(1,2548:6303093,20040446:0,0,0 +) +g1,2548:6630773,20040446 +) +k1,2549:6630773,20040446:0 +g1,2549:10946175,20040446 +g1,2549:11610083,20040446 +k1,2549:11610083,20040446:0 +h1,2549:16921346,20040446:0,0,0 +k1,2549:32583029,20040446:15661683 +g1,2549:32583029,20040446 +) +(1,2550:6630773,20725301:25952256,424439,106246 +h1,2550:6630773,20725301:0,0,0 +g1,2550:6962727,20725301 +g1,2550:7294681,20725301 +g1,2550:7626635,20725301 +g1,2550:7958589,20725301 +g1,2550:8290543,20725301 +g1,2550:12273990,20725301 +g1,2550:12937898,20725301 +k1,2550:12937898,20725301:0 +h1,2550:14597668,20725301:0,0,0 +k1,2550:32583028,20725301:17985360 +g1,2550:32583028,20725301 +) +(1,2551:6630773,21410156:25952256,424439,86428 +h1,2551:6630773,21410156:0,0,0 +g1,2551:6962727,21410156 +g1,2551:7294681,21410156 +g1,2551:7626635,21410156 +g1,2551:7958589,21410156 +g1,2551:8290543,21410156 +g1,2551:8954451,21410156 +g1,2551:9618359,21410156 +g1,2551:13269853,21410156 +g1,2551:16257439,21410156 +h1,2551:19245025,21410156:0,0,0 +k1,2551:32583029,21410156:13338004 +g1,2551:32583029,21410156 +) +(1,2555:6630773,22226083:25952256,424439,79822 +(1,2553:6630773,22226083:0,0,0 +g1,2553:6630773,22226083 +g1,2553:6630773,22226083 +g1,2553:6303093,22226083 +(1,2553:6303093,22226083:0,0,0 +) +g1,2553:6630773,22226083 +) +g1,2555:7626635,22226083 +g1,2555:8954451,22226083 +g1,2555:11610083,22226083 +g1,2555:14265715,22226083 +h1,2555:16589393,22226083:0,0,0 +k1,2555:32583029,22226083:15993636 +g1,2555:32583029,22226083 +) +] +) +g1,2556:32583029,22305905 +g1,2556:6630773,22305905 +g1,2556:6630773,22305905 +g1,2556:32583029,22305905 +g1,2556:32583029,22305905 +) +h1,2556:6630773,22502513:0,0,0 +(1,2560:6630773,23367593:25952256,513147,134348 +h1,2559:6630773,23367593:983040,0,0 +k1,2559:10907681,23367593:197292 +(1,2559:10907681,23367593:0,424981,115847 +r1,2624:11265947,23367593:358266,540828,115847 +k1,2559:10907681,23367593:-358266 +) +(1,2559:10907681,23367593:358266,424981,115847 +k1,2559:10907681,23367593:3277 +h1,2559:11262670,23367593:0,411205,112570 +) +k1,2559:11463239,23367593:197292 +k1,2559:14522488,23367593:197292 +k1,2559:16004286,23367593:197292 +k1,2559:17220663,23367593:197292 +k1,2559:19399108,23367593:197292 +k1,2559:21218416,23367593:197292 +k1,2559:22163475,23367593:197293 +k1,2559:22973529,23367593:197292 +k1,2559:24189906,23367593:197292 +k1,2559:26526293,23367593:197292 +k1,2559:27382877,23367593:197292 +k1,2559:28599254,23367593:197292 +k1,2559:30836026,23367593:197292 +k1,2559:32224763,23367593:197292 +(1,2559:32224763,23367593:0,459977,115847 +r1,2624:32583029,23367593:358266,575824,115847 +k1,2559:32224763,23367593:-358266 +) +(1,2559:32224763,23367593:358266,459977,115847 +k1,2559:32224763,23367593:3277 +h1,2559:32579752,23367593:0,411205,112570 +) +k1,2559:32583029,23367593:0 +) +(1,2560:6630773,24232673:25952256,505283,7863 +g1,2559:8114508,24232673 +g1,2559:9332822,24232673 +g1,2559:11513204,24232673 +g1,2559:13892816,24232673 +g1,2559:14839811,24232673 +g1,2559:15651802,24232673 +g1,2559:16639429,24232673 +k1,2560:32583029,24232673:14150535 +g1,2560:32583029,24232673 +) +v1,2562:6630773,24917528:0,393216,0 +(1,2571:6630773,27410818:25952256,2886506,196608 +g1,2571:6630773,27410818 +g1,2571:6630773,27410818 +g1,2571:6434165,27410818 +(1,2571:6434165,27410818:0,2886506,196608 +r1,2624:32779637,27410818:26345472,3083114,196608 +k1,2571:6434165,27410818:-26345472 +) +(1,2571:6434165,27410818:26345472,2886506,196608 +[1,2571:6630773,27410818:25952256,2689898,0 +(1,2564:6630773,25145359:25952256,424439,112852 +(1,2563:6630773,25145359:0,0,0 +g1,2563:6630773,25145359 +g1,2563:6630773,25145359 +g1,2563:6303093,25145359 +(1,2563:6303093,25145359:0,0,0 +) +g1,2563:6630773,25145359 +) +k1,2564:6630773,25145359:0 +g1,2564:10946175,25145359 +g1,2564:11610083,25145359 +k1,2564:11610083,25145359:0 +h1,2564:17253300,25145359:0,0,0 +k1,2564:32583029,25145359:15329729 +g1,2564:32583029,25145359 +) +(1,2565:6630773,25830214:25952256,424439,106246 +h1,2565:6630773,25830214:0,0,0 +g1,2565:6962727,25830214 +g1,2565:7294681,25830214 +g1,2565:7626635,25830214 +g1,2565:7958589,25830214 +g1,2565:8290543,25830214 +g1,2565:12273990,25830214 +g1,2565:12937898,25830214 +k1,2565:12937898,25830214:0 +h1,2565:14597668,25830214:0,0,0 +k1,2565:32583028,25830214:17985360 +g1,2565:32583028,25830214 +) +(1,2566:6630773,26515069:25952256,424439,86428 +h1,2566:6630773,26515069:0,0,0 +g1,2566:6962727,26515069 +g1,2566:7294681,26515069 +g1,2566:7626635,26515069 +g1,2566:7958589,26515069 +g1,2566:8290543,26515069 +g1,2566:8954451,26515069 +g1,2566:9618359,26515069 +g1,2566:13269853,26515069 +g1,2566:16257439,26515069 +g1,2566:16921347,26515069 +h1,2566:19576979,26515069:0,0,0 +k1,2566:32583029,26515069:13006050 +g1,2566:32583029,26515069 +) +(1,2570:6630773,27330996:25952256,424439,79822 +(1,2568:6630773,27330996:0,0,0 +g1,2568:6630773,27330996 +g1,2568:6630773,27330996 +g1,2568:6303093,27330996 +(1,2568:6303093,27330996:0,0,0 +) +g1,2568:6630773,27330996 +) +g1,2570:7626635,27330996 +g1,2570:8954451,27330996 +g1,2570:11610083,27330996 +g1,2570:11942037,27330996 +g1,2570:14597669,27330996 +g1,2570:14929623,27330996 +g1,2570:15593531,27330996 +h1,2570:17585255,27330996:0,0,0 +k1,2570:32583029,27330996:14997774 +g1,2570:32583029,27330996 +) +] +) +g1,2571:32583029,27410818 +g1,2571:6630773,27410818 +g1,2571:6630773,27410818 +g1,2571:32583029,27410818 +g1,2571:32583029,27410818 +) +h1,2571:6630773,27607426:0,0,0 +(1,2575:6630773,28472506:25952256,505283,134348 +h1,2574:6630773,28472506:983040,0,0 +g1,2574:9009729,28472506 +g1,2574:13146361,28472506 +g1,2574:14449872,28472506 +g1,2574:15396867,28472506 +g1,2574:16366799,28472506 +g1,2574:18572085,28472506 +k1,2575:32583029,28472506:11971464 +g1,2575:32583029,28472506 +) +v1,2577:6630773,29157361:0,393216,0 +(1,2586:6630773,31657257:25952256,2893112,196608 +g1,2586:6630773,31657257 +g1,2586:6630773,31657257 +g1,2586:6434165,31657257 +(1,2586:6434165,31657257:0,2893112,196608 +r1,2624:32779637,31657257:26345472,3089720,196608 +k1,2586:6434165,31657257:-26345472 +) +(1,2586:6434165,31657257:26345472,2893112,196608 +[1,2586:6630773,31657257:25952256,2696504,0 +(1,2579:6630773,29391798:25952256,431045,112852 +(1,2578:6630773,29391798:0,0,0 +g1,2578:6630773,29391798 +g1,2578:6630773,29391798 +g1,2578:6303093,29391798 +(1,2578:6303093,29391798:0,0,0 +) +g1,2578:6630773,29391798 +) +k1,2579:6630773,29391798:0 +g1,2579:10946175,29391798 +g1,2579:11610083,29391798 +k1,2579:11610083,29391798:0 +h1,2579:13933761,29391798:0,0,0 +k1,2579:32583029,29391798:18649268 +g1,2579:32583029,29391798 +) +(1,2580:6630773,30076653:25952256,424439,106246 +h1,2580:6630773,30076653:0,0,0 +g1,2580:6962727,30076653 +g1,2580:7294681,30076653 +g1,2580:7626635,30076653 +g1,2580:7958589,30076653 +g1,2580:8290543,30076653 +g1,2580:12273990,30076653 +g1,2580:12937898,30076653 +k1,2580:12937898,30076653:0 +h1,2580:13933760,30076653:0,0,0 +k1,2580:32583028,30076653:18649268 +g1,2580:32583028,30076653 +) +(1,2581:6630773,30761508:25952256,424439,86428 +h1,2581:6630773,30761508:0,0,0 +g1,2581:6962727,30761508 +g1,2581:7294681,30761508 +g1,2581:7626635,30761508 +g1,2581:7958589,30761508 +g1,2581:8290543,30761508 +g1,2581:8954451,30761508 +g1,2581:9618359,30761508 +g1,2581:13269853,30761508 +g1,2581:16257439,30761508 +h1,2581:19576978,30761508:0,0,0 +k1,2581:32583029,30761508:13006051 +g1,2581:32583029,30761508 +) +(1,2585:6630773,31577435:25952256,424439,79822 +(1,2583:6630773,31577435:0,0,0 +g1,2583:6630773,31577435 +g1,2583:6630773,31577435 +g1,2583:6303093,31577435 +(1,2583:6303093,31577435:0,0,0 +) +g1,2583:6630773,31577435 +) +g1,2585:7626635,31577435 +g1,2585:8954451,31577435 +g1,2585:10614221,31577435 +g1,2585:10946175,31577435 +g1,2585:11278129,31577435 +g1,2585:11610083,31577435 +g1,2585:11942037,31577435 +g1,2585:13601807,31577435 +g1,2585:13933761,31577435 +g1,2585:14265715,31577435 +g1,2585:14597669,31577435 +g1,2585:14929623,31577435 +h1,2585:17585254,31577435:0,0,0 +k1,2585:32583029,31577435:14997775 +g1,2585:32583029,31577435 +) +] +) +g1,2586:32583029,31657257 +g1,2586:6630773,31657257 +g1,2586:6630773,31657257 +g1,2586:32583029,31657257 +g1,2586:32583029,31657257 +) +h1,2586:6630773,31853865:0,0,0 +(1,2590:6630773,32718945:25952256,505283,126483 +h1,2589:6630773,32718945:983040,0,0 +k1,2589:8324218,32718945:222817 +k1,2589:9619227,32718945:222840 +(1,2589:9826321,32718945:0,414482,115847 +r1,2624:10184587,32718945:358266,530329,115847 +k1,2589:9826321,32718945:-358266 +) +(1,2589:9826321,32718945:358266,414482,115847 +k1,2589:9826321,32718945:3277 +h1,2589:10181310,32718945:0,411205,112570 +) +k1,2589:10614522,32718945:222841 +k1,2589:13496159,32718945:222841 +k1,2589:14850806,32718945:222840 +k1,2589:18221997,32718945:222841 +k1,2589:19072672,32718945:222840 +k1,2589:20498754,32718945:222841 +k1,2589:23383012,32718945:222841 +k1,2589:24474204,32718945:222840 +k1,2589:26995393,32718945:222841 +k1,2589:28237318,32718945:222840 +k1,2589:29608350,32718945:222841 +k1,2589:32583029,32718945:0 +) +(1,2590:6630773,33584025:25952256,505283,115847 +g1,2589:8223953,33584025 +(1,2589:8223953,33584025:0,452978,115847 +r1,2624:8933931,33584025:709978,568825,115847 +k1,2589:8223953,33584025:-709978 +) +(1,2589:8223953,33584025:709978,452978,115847 +k1,2589:8223953,33584025:3277 +h1,2589:8930654,33584025:0,411205,112570 +) +k1,2590:32583029,33584025:23475428 +g1,2590:32583029,33584025 +) +v1,2592:6630773,34268880:0,393216,0 +(1,2601:6630773,36768776:25952256,2893112,196608 +g1,2601:6630773,36768776 +g1,2601:6630773,36768776 +g1,2601:6434165,36768776 +(1,2601:6434165,36768776:0,2893112,196608 +r1,2624:32779637,36768776:26345472,3089720,196608 +k1,2601:6434165,36768776:-26345472 +) +(1,2601:6434165,36768776:26345472,2893112,196608 +[1,2601:6630773,36768776:25952256,2696504,0 +(1,2594:6630773,34503317:25952256,431045,112852 +(1,2593:6630773,34503317:0,0,0 +g1,2593:6630773,34503317 +g1,2593:6630773,34503317 +g1,2593:6303093,34503317 +(1,2593:6303093,34503317:0,0,0 +) +g1,2593:6630773,34503317 +) +k1,2594:6630773,34503317:0 +g1,2594:10946175,34503317 +g1,2594:11610083,34503317 +k1,2594:11610083,34503317:0 +h1,2594:13269853,34503317:0,0,0 +k1,2594:32583029,34503317:19313176 +g1,2594:32583029,34503317 +) +(1,2595:6630773,35188172:25952256,424439,106246 +h1,2595:6630773,35188172:0,0,0 +g1,2595:6962727,35188172 +g1,2595:7294681,35188172 +g1,2595:7626635,35188172 +g1,2595:7958589,35188172 +g1,2595:8290543,35188172 +g1,2595:12273990,35188172 +g1,2595:12937898,35188172 +k1,2595:12937898,35188172:0 +h1,2595:13933760,35188172:0,0,0 +k1,2595:32583028,35188172:18649268 +g1,2595:32583028,35188172 +) +(1,2596:6630773,35873027:25952256,424439,86428 +h1,2596:6630773,35873027:0,0,0 +g1,2596:6962727,35873027 +g1,2596:7294681,35873027 +g1,2596:7626635,35873027 +g1,2596:7958589,35873027 +g1,2596:8290543,35873027 +g1,2596:8954451,35873027 +g1,2596:9618359,35873027 +g1,2596:13269853,35873027 +g1,2596:16257439,35873027 +h1,2596:19576978,35873027:0,0,0 +k1,2596:32583029,35873027:13006051 +g1,2596:32583029,35873027 +) +(1,2600:6630773,36688954:25952256,424439,79822 +(1,2598:6630773,36688954:0,0,0 +g1,2598:6630773,36688954 +g1,2598:6630773,36688954 +g1,2598:6303093,36688954 +(1,2598:6303093,36688954:0,0,0 +) +g1,2598:6630773,36688954 +) +g1,2600:7626635,36688954 +g1,2600:8954451,36688954 +g1,2600:11278129,36688954 +g1,2600:11610083,36688954 +g1,2600:13933761,36688954 +g1,2600:14265715,36688954 +h1,2600:16589393,36688954:0,0,0 +k1,2600:32583029,36688954:15993636 +g1,2600:32583029,36688954 +) +] +) +g1,2601:32583029,36768776 +g1,2601:6630773,36768776 +g1,2601:6630773,36768776 +g1,2601:32583029,36768776 +g1,2601:32583029,36768776 +) +h1,2601:6630773,36965384:0,0,0 +v1,2605:6630773,37830464:0,393216,0 +(1,2606:6630773,39967449:25952256,2530201,0 +g1,2606:6630773,39967449 +g1,2606:6237557,39967449 +r1,2624:6368629,39967449:131072,2530201,0 +g1,2606:6567858,39967449 +g1,2606:6764466,39967449 +[1,2606:6764466,39967449:25818563,2530201,0 +(1,2606:6764466,38102941:25818563,665693,196608 +(1,2605:6764466,38102941:0,665693,196608 +r1,2624:8010564,38102941:1246098,862301,196608 +k1,2605:6764466,38102941:-1246098 +) +(1,2605:6764466,38102941:1246098,665693,196608 +) +k1,2605:8554072,38102941:543508 +k1,2605:10280290,38102941:327680 +k1,2605:12244619,38102941:543508 +k1,2605:14744377,38102941:543508 +k1,2605:16458358,38102941:543508 +k1,2605:19264169,38102941:543508 +k1,2605:20826763,38102941:543509 +k1,2605:22518462,38102941:543508 +k1,2605:24558157,38102941:543508 +k1,2605:27763082,38102941:543508 +k1,2605:30161914,38102941:543508 +k1,2605:31356850,38102941:543508 +k1,2606:32583029,38102941:0 +) +(1,2606:6764466,38968021:25818563,513147,115847 +(1,2605:6764466,38968021:0,452978,115847 +r1,2624:16970663,38968021:10206197,568825,115847 +k1,2605:6764466,38968021:-10206197 +) +(1,2605:6764466,38968021:10206197,452978,115847 +g1,2605:10636573,38968021 +g1,2605:13801980,38968021 +h1,2605:16967386,38968021:0,411205,112570 +) +k1,2605:17382201,38968021:411538 +k1,2605:19061204,38968021:411537 +(1,2605:19061204,38968021:0,452978,115847 +r1,2624:28915690,38968021:9854486,568825,115847 +k1,2605:19061204,38968021:-9854486 +) +(1,2605:19061204,38968021:9854486,452978,115847 +g1,2605:22933311,38968021 +g1,2605:26098718,38968021 +h1,2605:28912413,38968021:0,411205,112570 +) +k1,2605:29654253,38968021:411538 +k1,2605:31923737,38968021:411538 +k1,2605:32583029,38968021:0 +) +(1,2606:6764466,39833101:25818563,513147,134348 +g1,2605:9726038,39833101 +g1,2605:11493544,39833101 +g1,2605:12352065,39833101 +g1,2605:14356811,39833101 +g1,2605:15759281,39833101 +g1,2605:17693903,39833101 +g1,2605:20167231,39833101 +k1,2606:32583029,39833101:8471841 +g1,2606:32583029,39833101 +) +] +g1,2606:32583029,39967449 +) +h1,2606:6630773,39967449:0,0,0 +(1,2609:6630773,40832529:25952256,513147,134348 +h1,2608:6630773,40832529:983040,0,0 +k1,2608:9031625,40832529:221125 +k1,2608:11738531,40832529:221125 +k1,2608:12618948,40832529:221125 +k1,2608:15811474,40832529:221124 +k1,2608:19337580,40832529:221125 +k1,2608:20662987,40832529:221125 +k1,2608:21631878,40832529:221125 +k1,2608:24805400,40832529:221125 +k1,2608:26420476,40832529:221125 +(1,2608:26420476,40832529:0,414482,115847 +r1,2624:26778742,40832529:358266,530329,115847 +k1,2608:26420476,40832529:-358266 +) +(1,2608:26420476,40832529:358266,414482,115847 +k1,2608:26420476,40832529:3277 +h1,2608:26775465,40832529:0,411205,112570 +) +k1,2608:26999866,40832529:221124 +k1,2608:29409238,40832529:221125 +k1,2608:30028822,40832529:221125 +k1,2608:30932832,40832529:221125 +k1,2608:32583029,40832529:0 +) +(1,2609:6630773,41697609:25952256,505283,126483 +k1,2608:9056683,41697609:289436 +(1,2608:9056683,41697609:0,435480,115847 +r1,2624:9414949,41697609:358266,551327,115847 +k1,2608:9056683,41697609:-358266 +) +(1,2608:9056683,41697609:358266,435480,115847 +k1,2608:9056683,41697609:3277 +h1,2608:9411672,41697609:0,411205,112570 +) +k1,2608:9704384,41697609:289435 +k1,2608:12182067,41697609:289436 +k1,2608:12869962,41697609:289436 +k1,2608:13842282,41697609:289435 +k1,2608:14530177,41697609:289436 +k1,2608:16956087,41697609:289436 +(1,2608:16956087,41697609:0,414482,115847 +r1,2624:17314353,41697609:358266,530329,115847 +k1,2608:16956087,41697609:-358266 +) +(1,2608:16956087,41697609:358266,414482,115847 +k1,2608:16956087,41697609:3277 +h1,2608:17311076,41697609:0,411205,112570 +) +k1,2608:17603788,41697609:289435 +k1,2608:20081471,41697609:289436 +k1,2608:20769366,41697609:289436 +k1,2608:21741686,41697609:289435 +k1,2608:23681319,41697609:289436 +k1,2608:25933558,41697609:289436 +k1,2608:26905878,41697609:289435 +k1,2608:28662010,41697609:289436 +k1,2608:32583029,41697609:0 +) +(1,2609:6630773,42562689:25952256,505283,134348 +g1,2608:9745043,42562689 +g1,2608:10475769,42562689 +g1,2608:11291036,42562689 +g1,2608:13091965,42562689 +g1,2608:14988576,42562689 +k1,2609:32583029,42562689:14681378 +g1,2609:32583029,42562689 +) +v1,2611:6630773,43247544:0,393216,0 +(1,2620:6630773,45510161:25952256,2655833,196608 +g1,2620:6630773,45510161 +g1,2620:6630773,45510161 +g1,2620:6434165,45510161 +(1,2620:6434165,45510161:0,2655833,196608 +r1,2624:32779637,45510161:26345472,2852441,196608 +k1,2620:6434165,45510161:-26345472 +) +(1,2620:6434165,45510161:26345472,2655833,196608 +[1,2620:6630773,45510161:25952256,2459225,0 +(1,2613:6630773,43481981:25952256,431045,112852 +(1,2612:6630773,43481981:0,0,0 +g1,2612:6630773,43481981 +g1,2612:6630773,43481981 +g1,2612:6303093,43481981 +(1,2612:6303093,43481981:0,0,0 +) +g1,2612:6630773,43481981 +) +k1,2613:6630773,43481981:0 +g1,2613:10946175,43481981 +g1,2613:11610083,43481981 +k1,2613:11610083,43481981:0 +h1,2613:17253301,43481981:0,0,0 +k1,2613:32583029,43481981:15329728 +g1,2613:32583029,43481981 +) +(1,2614:6630773,44166836:25952256,424439,112852 +h1,2614:6630773,44166836:0,0,0 +g1,2614:6962727,44166836 +g1,2614:7294681,44166836 +g1,2614:7626635,44166836 +g1,2614:7958589,44166836 +g1,2614:8290543,44166836 +g1,2614:12273990,44166836 +g1,2614:12937898,44166836 +k1,2614:12937898,44166836:0 +h1,2614:15261576,44166836:0,0,0 +k1,2614:32583028,44166836:17321452 +g1,2614:32583028,44166836 +) +(1,2615:6630773,44851691:25952256,424439,86428 +h1,2615:6630773,44851691:0,0,0 +g1,2615:6962727,44851691 +g1,2615:7294681,44851691 +g1,2615:7626635,44851691 +g1,2615:7958589,44851691 +g1,2615:8290543,44851691 +g1,2615:8954451,44851691 +g1,2615:9618359,44851691 +g1,2615:13269853,44851691 +g1,2615:16257439,44851691 +h1,2615:19576978,44851691:0,0,0 +k1,2615:32583029,44851691:13006051 +g1,2615:32583029,44851691 +) +(1,2619:6630773,45397309:25952256,424439,112852 +(1,2617:6630773,45397309:0,0,0 +g1,2617:6630773,45397309 +g1,2617:6630773,45397309 +g1,2617:6303093,45397309 +(1,2617:6303093,45397309:0,0,0 +) +g1,2617:6630773,45397309 +) +g1,2619:7626635,45397309 +g1,2619:8954451,45397309 +g1,2619:11610083,45397309 +g1,2619:13933761,45397309 +g1,2619:14265715,45397309 +h1,2619:16257439,45397309:0,0,0 +k1,2619:32583029,45397309:16325590 +g1,2619:32583029,45397309 +) +] +) +g1,2620:32583029,45510161 +g1,2620:6630773,45510161 +g1,2620:6630773,45510161 +g1,2620:32583029,45510161 +g1,2620:32583029,45510161 +) +h1,2620:6630773,45706769:0,0,0 ] -(1,4153:32583029,45706769:0,0,0 -g1,4153:32583029,45706769 +(1,2624:32583029,45706769:0,0,0 +g1,2624:32583029,45706769 ) ) ] -(1,4153:6630773,47279633:25952256,0,0 -h1,4153:6630773,47279633:25952256,0,0 +(1,2624:6630773,47279633:25952256,0,0 +h1,2624:6630773,47279633:25952256,0,0 ) ] -(1,4153:4262630,4025873:0,0,0 -[1,4153:-473656,4025873:0,0,0 -(1,4153:-473656,-710413:0,0,0 -(1,4153:-473656,-710413:0,0,0 -g1,4153:-473656,-710413 +(1,2624:4262630,4025873:0,0,0 +[1,2624:-473656,4025873:0,0,0 +(1,2624:-473656,-710413:0,0,0 +(1,2624:-473656,-710413:0,0,0 +g1,2624:-473656,-710413 ) -g1,4153:-473656,-710413 +g1,2624:-473656,-710413 ) ] ) ] -!28602 -}79 -Input:709:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:710:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:711:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:712:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:713:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:714:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:715:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:716:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:717:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:718:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:719:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:720:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:721:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:722:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1313 -{80 -[1,4247:4262630,47279633:28320399,43253760,0 -(1,4247:4262630,4025873:0,0,0 -[1,4247:-473656,4025873:0,0,0 -(1,4247:-473656,-710413:0,0,0 -(1,4247:-473656,-644877:0,0,0 -k1,4247:-473656,-644877:-65536 +!30921 +}60 +Input:548:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:549:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:550:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:551:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!383 +{61 +[1,2718:4262630,47279633:28320399,43253760,0 +(1,2718:4262630,4025873:0,0,0 +[1,2718:-473656,4025873:0,0,0 +(1,2718:-473656,-710413:0,0,0 +(1,2718:-473656,-644877:0,0,0 +k1,2718:-473656,-644877:-65536 ) -(1,4247:-473656,4736287:0,0,0 -k1,4247:-473656,4736287:5209943 +(1,2718:-473656,4736287:0,0,0 +k1,2718:-473656,4736287:5209943 ) -g1,4247:-473656,-710413 +g1,2718:-473656,-710413 ) ] ) -[1,4247:6630773,47279633:25952256,43253760,0 -[1,4247:6630773,4812305:25952256,786432,0 -(1,4247:6630773,4812305:25952256,505283,126483 -(1,4247:6630773,4812305:25952256,505283,126483 -g1,4247:3078558,4812305 -[1,4247:3078558,4812305:0,0,0 -(1,4247:3078558,2439708:0,1703936,0 -k1,4247:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,4247:2537886,2439708:1179648,16384,0 +[1,2718:6630773,47279633:25952256,43253760,0 +[1,2718:6630773,4812305:25952256,786432,0 +(1,2718:6630773,4812305:25952256,505283,11795 +(1,2718:6630773,4812305:25952256,505283,11795 +g1,2718:3078558,4812305 +[1,2718:3078558,4812305:0,0,0 +(1,2718:3078558,2439708:0,1703936,0 +k1,2718:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,2718:2537886,2439708:1179648,16384,0 ) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,4247:3078558,1915420:16384,1179648,0 +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,2718:3078558,1915420:16384,1179648,0 ) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) ] ) ) ) ] -[1,4247:3078558,4812305:0,0,0 -(1,4247:3078558,2439708:0,1703936,0 -g1,4247:29030814,2439708 -g1,4247:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,4247:36151628,1915420:16384,1179648,0 +[1,2718:3078558,4812305:0,0,0 +(1,2718:3078558,2439708:0,1703936,0 +g1,2718:29030814,2439708 +g1,2718:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,2718:36151628,1915420:16384,1179648,0 ) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) ] ) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,4247:37855564,2439708:1179648,16384,0 +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,2718:37855564,2439708:1179648,16384,0 ) ) -k1,4247:3078556,2439708:-34777008 +k1,2718:3078556,2439708:-34777008 ) ] -[1,4247:3078558,4812305:0,0,0 -(1,4247:3078558,49800853:0,16384,2228224 -k1,4247:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,4247:2537886,49800853:1179648,16384,0 +[1,2718:3078558,4812305:0,0,0 +(1,2718:3078558,49800853:0,16384,2228224 +k1,2718:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,2718:2537886,49800853:1179648,16384,0 ) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,4247:3078558,51504789:16384,1179648,0 +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,2718:3078558,51504789:16384,1179648,0 ) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) ] ) ) ) ] -[1,4247:3078558,4812305:0,0,0 -(1,4247:3078558,49800853:0,16384,2228224 -g1,4247:29030814,49800853 -g1,4247:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,4247:36151628,51504789:16384,1179648,0 +[1,2718:3078558,4812305:0,0,0 +(1,2718:3078558,49800853:0,16384,2228224 +g1,2718:29030814,49800853 +g1,2718:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,2718:36151628,51504789:16384,1179648,0 ) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 ) ] ) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,4247:37855564,49800853:1179648,16384,0 -) +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,2718:37855564,49800853:1179648,16384,0 ) -k1,4247:3078556,49800853:-34777008 ) -] -g1,4247:6630773,4812305 -g1,4247:6630773,4812305 -g1,4247:8826229,4812305 -g1,4247:13247287,4812305 -k1,4247:31786111,4812305:18538824 -) -) -] -[1,4247:6630773,45706769:25952256,40108032,0 -(1,4247:6630773,45706769:25952256,40108032,0 -(1,4247:6630773,45706769:0,0,0 -g1,4247:6630773,45706769 +k1,2718:3078556,49800853:-34777008 ) -[1,4247:6630773,45706769:25952256,40108032,0 -v1,4153:6630773,6254097:0,393216,0 -(1,4153:6630773,11602311:25952256,5741430,0 -g1,4153:6630773,11602311 -g1,4153:6303093,11602311 -r1,4247:6401397,11602311:98304,5741430,0 -g1,4153:6600626,11602311 -g1,4153:6797234,11602311 -[1,4153:6797234,11602311:25785795,5741430,0 -v1,4133:6797234,6254097:0,393216,0 -(1,4141:6797234,7844926:25785795,1984045,196608 -g1,4141:6797234,7844926 -g1,4141:6797234,7844926 -g1,4141:6600626,7844926 -(1,4141:6600626,7844926:0,1984045,196608 -r1,4247:32779637,7844926:26179011,2180653,196608 -k1,4141:6600625,7844926:-26179012 -) -(1,4141:6600626,7844926:26179011,1984045,196608 -[1,4141:6797234,7844926:25785795,1787437,0 -(1,4135:6797234,6436549:25785795,379060,9436 -(1,4134:6797234,6436549:0,0,0 -g1,4134:6797234,6436549 -g1,4134:6797234,6436549 -g1,4134:6469554,6436549 -(1,4134:6469554,6436549:0,0,0 -) -g1,4134:6797234,6436549 -) -g1,4135:8377963,6436549 -g1,4135:9326401,6436549 -h1,4135:9958692,6436549:0,0,0 -k1,4135:32583028,6436549:22624336 -g1,4135:32583028,6436549 -) -(1,4136:6797234,7102727:25785795,404226,82312 -h1,4136:6797234,7102727:0,0,0 -g1,4136:9326400,7102727 -h1,4136:10590984,7102727:0,0,0 -k1,4136:32583028,7102727:21992044 -g1,4136:32583028,7102727 -) -(1,4140:6797234,7768905:25785795,404226,76021 -(1,4138:6797234,7768905:0,0,0 -g1,4138:6797234,7768905 -g1,4138:6797234,7768905 -g1,4138:6469554,7768905 -(1,4138:6469554,7768905:0,0,0 -) -g1,4138:6797234,7768905 -) -g1,4140:7745671,7768905 -g1,4140:9010254,7768905 -g1,4140:9958691,7768905 -g1,4140:10274837,7768905 -g1,4140:10907129,7768905 -g1,4140:11223275,7768905 -h1,4140:11539421,7768905:0,0,0 -k1,4140:32583029,7768905:21043608 -g1,4140:32583029,7768905 -) -] -) -g1,4141:32583029,7844926 -g1,4141:6797234,7844926 -g1,4141:6797234,7844926 -g1,4141:32583029,7844926 -g1,4141:32583029,7844926 -) -h1,4141:6797234,8041534:0,0,0 -(1,4145:6797234,9407310:25785795,505283,126483 -h1,4144:6797234,9407310:983040,0,0 -g1,4144:10914205,9407310 -g1,4144:12580130,9407310 -g1,4144:13798444,9407310 -g1,4144:17184033,9407310 -g1,4144:19251693,9407310 -g1,4144:21377680,9407310 -k1,4145:32583029,9407310:6735138 -g1,4145:32583029,9407310 -) -v1,4147:6797234,10597776:0,393216,0 -(1,4151:6797234,10881415:25785795,676855,196608 -g1,4151:6797234,10881415 -g1,4151:6797234,10881415 -g1,4151:6600626,10881415 -(1,4151:6600626,10881415:0,676855,196608 -r1,4247:32779637,10881415:26179011,873463,196608 -k1,4151:6600625,10881415:-26179012 -) -(1,4151:6600626,10881415:26179011,676855,196608 -[1,4151:6797234,10881415:25785795,480247,0 -(1,4149:6797234,10805394:25785795,404226,76021 -(1,4148:6797234,10805394:0,0,0 -g1,4148:6797234,10805394 -g1,4148:6797234,10805394 -g1,4148:6469554,10805394 -(1,4148:6469554,10805394:0,0,0 -) -g1,4148:6797234,10805394 -) -g1,4149:9326400,10805394 -g1,4149:10274838,10805394 -h1,4149:12487858,10805394:0,0,0 -k1,4149:32583030,10805394:20095172 -g1,4149:32583030,10805394 -) -] -) -g1,4151:32583029,10881415 -g1,4151:6797234,10881415 -g1,4151:6797234,10881415 -g1,4151:32583029,10881415 -g1,4151:32583029,10881415 -) -h1,4151:6797234,11078023:0,0,0 -] -g1,4153:32583029,11602311 -) -h1,4153:6630773,11602311:0,0,0 -v1,4158:6630773,13492375:0,393216,0 -(1,4167:6630773,16080906:25952256,2981747,0 -g1,4167:6630773,16080906 -g1,4167:6303093,16080906 -r1,4247:6401397,16080906:98304,2981747,0 -g1,4167:6600626,16080906 -g1,4167:6797234,16080906 -[1,4167:6797234,16080906:25785795,2981747,0 -(1,4159:6797234,13854448:25785795,755289,196608 -(1,4158:6797234,13854448:0,755289,196608 -r1,4247:8134168,13854448:1336934,951897,196608 -k1,4158:6797234,13854448:-1336934 -) -(1,4158:6797234,13854448:1336934,755289,196608 -) -g1,4158:8333397,13854448 -g1,4158:8661077,13854448 -g1,4158:10056993,13854448 -g1,4158:11752409,13854448 -g1,4158:13820069,13854448 -g1,4158:16704308,13854448 -g1,4158:17669653,13854448 -g1,4158:20158710,13854448 -g1,4158:21751890,13854448 -g1,4158:24019435,13854448 -(1,4158:24019435,13854448:0,452978,115847 -r1,4247:26136260,13854448:2116825,568825,115847 -k1,4158:24019435,13854448:-2116825 -) -(1,4158:24019435,13854448:2116825,452978,115847 -k1,4158:24019435,13854448:3277 -h1,4158:26132983,13854448:0,411205,112570 -) -g1,4158:26509159,13854448 -(1,4158:26509159,13854448:0,452978,115847 -r1,4247:28625984,13854448:2116825,568825,115847 -k1,4158:26509159,13854448:-2116825 -) -(1,4158:26509159,13854448:2116825,452978,115847 -k1,4158:26509159,13854448:3277 -h1,4158:28622707,13854448:0,411205,112570 -) -g1,4158:28998883,13854448 -g1,4158:30389557,13854448 -g1,4158:31313614,13854448 -k1,4159:32583029,13854448:286375 -g1,4159:32583029,13854448 -) -v1,4161:6797234,15044914:0,393216,0 -(1,4165:6797234,15360010:25785795,708312,196608 -g1,4165:6797234,15360010 -g1,4165:6797234,15360010 -g1,4165:6600626,15360010 -(1,4165:6600626,15360010:0,708312,196608 -r1,4247:32779637,15360010:26179011,904920,196608 -k1,4165:6600625,15360010:-26179012 -) -(1,4165:6600626,15360010:26179011,708312,196608 -[1,4165:6797234,15360010:25785795,511704,0 -(1,4163:6797234,15252532:25785795,404226,107478 -(1,4162:6797234,15252532:0,0,0 -g1,4162:6797234,15252532 -g1,4162:6797234,15252532 -g1,4162:6469554,15252532 -(1,4162:6469554,15252532:0,0,0 -) -g1,4162:6797234,15252532 -) -k1,4163:6797234,15252532:0 -g1,4163:10590983,15252532 -g1,4163:11223275,15252532 -g1,4163:14700878,15252532 -g1,4163:15333170,15252532 -h1,4163:21656083,15252532:0,0,0 -k1,4163:32583029,15252532:10926946 -g1,4163:32583029,15252532 -) -] -) -g1,4165:32583029,15360010 -g1,4165:6797234,15360010 -g1,4165:6797234,15360010 -g1,4165:32583029,15360010 -g1,4165:32583029,15360010 -) -h1,4165:6797234,15556618:0,0,0 -] -g1,4167:32583029,16080906 -) -h1,4167:6630773,16080906:0,0,0 -(1,4169:6630773,18888474:25952256,32768,229376 -(1,4169:6630773,18888474:0,32768,229376 -(1,4169:6630773,18888474:5505024,32768,229376 -r1,4247:12135797,18888474:5505024,262144,229376 -) -k1,4169:6630773,18888474:-5505024 -) -(1,4169:6630773,18888474:25952256,32768,0 -r1,4247:32583029,18888474:25952256,32768,0 -) -) -(1,4169:6630773,20492802:25952256,606339,151780 -(1,4169:6630773,20492802:2464678,582746,14155 -g1,4169:6630773,20492802 -g1,4169:9095451,20492802 -) -g1,4169:11954918,20492802 -k1,4169:32583029,20492802:15379464 -g1,4169:32583029,20492802 -) -(1,4172:6630773,21727506:25952256,513147,126483 -k1,4171:7296880,21727506:188350 -k1,4171:8655704,21727506:188351 -k1,4171:10319269,21727506:188350 -k1,4171:11919921,21727506:188351 -k1,4171:14141853,21727506:188350 -k1,4171:16939192,21727506:188351 -k1,4171:17786834,21727506:188350 -k1,4171:19178426,21727506:188351 -k1,4171:21958070,21727506:188350 -k1,4171:23316894,21727506:188351 -k1,4171:25839636,21727506:188350 -k1,4171:27750929,21727506:188351 -k1,4171:29269660,21727506:188350 -k1,4171:30109439,21727506:188351 -k1,4171:32227169,21727506:188350 -k1,4171:32583029,21727506:0 -) -(1,4172:6630773,22568994:25952256,513147,134348 -g1,4171:8981549,22568994 -g1,4171:9658535,22568994 -g1,4171:11097705,22568994 -g1,4171:12321917,22568994 -g1,4171:14349600,22568994 -h1,4171:15146518,22568994:0,0,0 -h1,4171:16271116,22568994:0,0,0 -g1,4171:16470345,22568994 -g1,4171:18712331,22568994 -k1,4172:32583029,22568994:10276048 -g1,4172:32583029,22568994 -) -(1,4174:6630773,23410482:25952256,505283,134348 -h1,4173:6630773,23410482:983040,0,0 -k1,4173:8422003,23410482:180355 -k1,4173:9805599,23410482:180355 -k1,4173:12264641,23410482:180355 -k1,4173:13313348,23410482:180355 -k1,4173:14485263,23410482:180355 -k1,4173:16424604,23410482:180355 -k1,4173:17256387,23410482:180355 -k1,4173:18461724,23410482:180354 -k1,4173:19972460,23410482:180355 -k1,4173:20804243,23410482:180355 -k1,4173:23188574,23410482:180355 -k1,4173:24051814,23410482:180355 -k1,4173:26839847,23410482:180355 -k1,4173:29492220,23410482:180355 -k1,4173:30864020,23410482:180355 -k1,4173:32583029,23410482:0 -) -(1,4174:6630773,24251970:25952256,513147,134348 -k1,4173:9711509,24251970:211570 -k1,4173:11416646,24251970:211571 -k1,4173:12314378,24251970:211570 -$1,4173:12314378,24251970 -(1,4173:12777062,24350284:311689,339935,0 -) -$1,4173:13088751,24251970 -k1,4173:13300322,24251970:211571 -k1,4173:15079513,24251970:211570 -k1,4173:15646943,24251970:211570 -k1,4173:17836391,24251970:211571 -$1,4173:17836391,24251970 -(1,4173:18299075,24350284:1729233,346358,5505 -) -$1,4173:20028308,24251970 -k1,4173:20413548,24251970:211570 -k1,4173:23517877,24251970:211570 -k1,4173:24721008,24251970:211571 -k1,4173:27904636,24251970:211570 -k1,4173:29851600,24251970:211571 -k1,4173:30833873,24251970:211570 -k1,4173:32583029,24251970:0 -) -(1,4174:6630773,25093458:25952256,505283,134348 -k1,4173:9626369,25093458:201796 -k1,4173:10444204,25093458:201797 -k1,4173:12519019,25093458:201796 -k1,4173:14861876,25093458:201796 -k1,4173:17942669,25093458:201796 -k1,4173:19341153,25093458:201797 -k1,4173:21292105,25093458:201796 -k1,4173:24355858,25093458:201796 -k1,4173:25576739,25093458:201796 -k1,4173:28392767,25093458:201797 -k1,4173:29210601,25093458:201796 -k1,4173:30431482,25093458:201796 -k1,4173:32583029,25093458:0 -) -(1,4174:6630773,25934946:25952256,513147,134348 -k1,4173:9320490,25934946:211145 -k1,4173:11099256,25934946:211145 -k1,4173:12640782,25934946:211145 -k1,4173:15827262,25934946:211145 -k1,4173:17057492,25934946:211145 -k1,4173:18989611,25934946:211144 -k1,4173:23524166,25934946:211145 -k1,4173:26699504,25934946:211145 -k1,4173:28544462,25934946:211145 -k1,4173:29371645,25934946:211145 -k1,4173:31560667,25934946:211145 -k1,4174:32583029,25934946:0 -) -(1,4174:6630773,26776434:25952256,505283,134348 -k1,4173:8707234,26776434:196233 -k1,4173:10859718,26776434:196234 -k1,4173:11803717,26776434:196233 -$1,4173:11803717,26776434 -(1,4173:12266401,26874748:233243,346358,5505 -) -$1,4173:12499644,26776434 -k1,4173:12869547,26776434:196233 -k1,4173:13681819,26776434:196234 -k1,4173:14292892,26776434:196230 -k1,4173:15020622,26776434:196233 -k1,4173:19026464,26776434:196234 -k1,4173:19908859,26776434:196233 -(1,4173:19908859,26776434:0,452978,115847 -r1,4247:21322260,26776434:1413401,568825,115847 -k1,4173:19908859,26776434:-1413401 -) -(1,4173:19908859,26776434:1413401,452978,115847 -k1,4173:19908859,26776434:3277 -h1,4173:21318983,26776434:0,411205,112570 -) -k1,4173:21518493,26776434:196233 -k1,4173:22906172,26776434:196234 -k1,4173:24121490,26776434:196233 -k1,4173:26200572,26776434:196233 -k1,4173:28548353,26776434:196234 -k1,4173:29506114,26776434:196233 -k1,4173:32583029,26776434:0 -) -(1,4174:6630773,27617922:25952256,505283,134348 -g1,4173:7849087,27617922 -g1,4173:10753642,27617922 -g1,4173:12144316,27617922 -g1,4173:15082950,27617922 -g1,4173:17433726,27617922 -g1,4173:18319117,27617922 -(1,4173:18319117,27617922:0,414482,115847 -r1,4247:18677383,27617922:358266,530329,115847 -k1,4173:18319117,27617922:-358266 -) -(1,4173:18319117,27617922:358266,414482,115847 -k1,4173:18319117,27617922:3277 -h1,4173:18674106,27617922:0,411205,112570 -) -k1,4174:32583029,27617922:13731976 -g1,4174:32583029,27617922 -) -(1,4176:6630773,28459410:25952256,513147,115847 -h1,4175:6630773,28459410:983040,0,0 -g1,4175:8766591,28459410 -g1,4175:11169796,28459410 -g1,4175:12388110,28459410 -g1,4175:13893472,28459410 -g1,4175:14889619,28459410 -g1,4175:17958014,28459410 -g1,4175:18816535,28459410 -g1,4175:20034849,28459410 -g1,4175:22211955,28459410 -(1,4175:22211955,28459410:0,452978,115847 -r1,4247:24680492,28459410:2468537,568825,115847 -k1,4175:22211955,28459410:-2468537 -) -(1,4175:22211955,28459410:2468537,452978,115847 -k1,4175:22211955,28459410:3277 -h1,4175:24677215,28459410:0,411205,112570 -) -k1,4176:32583029,28459410:7728867 -g1,4176:32583029,28459410 -) -v1,4178:6630773,29649876:0,393216,0 -(1,4186:6630773,31297328:25952256,2040668,196608 -g1,4186:6630773,31297328 -g1,4186:6630773,31297328 -g1,4186:6434165,31297328 -(1,4186:6434165,31297328:0,2040668,196608 -r1,4247:32779637,31297328:26345472,2237276,196608 -k1,4186:6434165,31297328:-26345472 -) -(1,4186:6434165,31297328:26345472,2040668,196608 -[1,4186:6630773,31297328:25952256,1844060,0 -(1,4180:6630773,29857494:25952256,404226,76021 -(1,4179:6630773,29857494:0,0,0 -g1,4179:6630773,29857494 -g1,4179:6630773,29857494 -g1,4179:6303093,29857494 -(1,4179:6303093,29857494:0,0,0 -) -g1,4179:6630773,29857494 -) -g1,4180:8211502,29857494 -g1,4180:9159940,29857494 -h1,4180:13269834,29857494:0,0,0 -k1,4180:32583030,29857494:19313196 -g1,4180:32583030,29857494 -) -(1,4181:6630773,30523672:25952256,388497,6290 -h1,4181:6630773,30523672:0,0,0 -h1,4181:7895356,30523672:0,0,0 -k1,4181:32583028,30523672:24687672 -g1,4181:32583028,30523672 -) -(1,4185:6630773,31189850:25952256,410518,107478 -(1,4183:6630773,31189850:0,0,0 -g1,4183:6630773,31189850 -g1,4183:6630773,31189850 -g1,4183:6303093,31189850 -(1,4183:6303093,31189850:0,0,0 -) -g1,4183:6630773,31189850 -) -g1,4185:7579210,31189850 -g1,4185:7895356,31189850 -g1,4185:9159939,31189850 -g1,4185:10424522,31189850 -g1,4185:11689105,31189850 -g1,4185:12953688,31189850 -g1,4185:14218271,31189850 -g1,4185:15482854,31189850 -g1,4185:16747437,31189850 -g1,4185:18012020,31189850 -g1,4185:19276603,31189850 -g1,4185:20541186,31189850 -h1,4185:21489623,31189850:0,0,0 -k1,4185:32583029,31189850:11093406 -g1,4185:32583029,31189850 -) -] -) -g1,4186:32583029,31297328 -g1,4186:6630773,31297328 -g1,4186:6630773,31297328 -g1,4186:32583029,31297328 -g1,4186:32583029,31297328 -) -h1,4186:6630773,31493936:0,0,0 -(1,4214:6630773,36991251:25952256,4252131,0 -k1,4214:7877917,36991251:1247144 -(1,4189:7877917,36991251:0,0,0 -g1,4189:7877917,36991251 -g1,4189:7877917,36991251 -g1,4189:7550237,36991251 -(1,4189:7550237,36991251:0,0,0 -) -g1,4189:7877917,36991251 -) -(1,4212:7877917,36991251:23457968,4252131,0 -g1,4212:17421117,36991251 -(1,4212:17421117,34105500:0,0,0 -(1,4203:17421117,34105500:0,0,0 -g1,4201:17421117,34105500 -g1,4202:17421117,34105500 -g1,4202:17421117,34105500 -g1,4202:17421117,34105500 -g1,4202:17421117,34105500 -g1,4203:17421117,34105500 -) -(1,4212:17421117,34105500:0,0,0 -g1,4194:17421117,34105500 -(1,4198:17421117,34105500:0,0,0 -(1,4198:17421117,34105500:0,0,0 -g1,4198:17421117,34105500 -g1,4198:17421117,34105500 -g1,4198:17421117,34105500 -g1,4198:17421117,34105500 -g1,4198:17421117,34105500 -(1,4198:17421117,34105500:0,0,0 -(1,4198:17421117,34105500:13078954,1850763,532510 -[1,4198:17421117,34105500:13078954,1850763,532510 -(1,4198:17421117,32928261:13078954,673524,285028 -g1,4197:17421117,32928261 -(1,4197:17421117,32928261:665744,673524,285028 -k1,4197:17620692,32928261:199575 -g1,4197:18086861,32928261 -(1,4197:18086861,32928261:0,660417,271921 -(1,4197:18086861,32928261:0,0,0 -(1,4197:18086861,32928261:0,0,0 -g1,4197:18086861,32928261 -g1,4197:18086861,32928261 -g1,4197:18086861,32928261 -g1,4197:18086861,32928261 -g1,4197:18086861,32928261 -(1,4197:18086861,32928261:0,0,0 -(1,4197:18086861,32928261:331874,388497,0 -(1,4197:18086861,32928261:331874,388497,0 -) -g1,4197:18418735,32928261 -) -) -g1,4197:18086861,32928261 -g1,4197:18086861,32928261 -) -) -g1,4197:18086861,32928261 -) -) -g1,4197:18086861,32928261 -(1,4197:18086861,32928261:665744,673524,285028 -g1,4197:18553030,32928261 -k1,4197:18752605,32928261:199575 -) -g1,4197:18752605,32928261 -(1,4197:18752605,32928261:639530,673524,285028 -k1,4197:18939073,32928261:186468 -g1,4197:19392135,32928261 -(1,4197:19392135,32928261:0,673524,285028 -(1,4197:19392135,32928261:0,0,0 -(1,4197:19392135,32928261:0,0,0 -g1,4197:19392135,32928261 -g1,4197:19392135,32928261 -g1,4197:19392135,32928261 -g1,4197:19392135,32928261 -g1,4197:19392135,32928261 -(1,4197:19392135,32928261:0,0,0 -(1,4197:19392135,32928261:331874,388497,0 -(1,4197:19392135,32928261:331874,388497,0 -) -g1,4197:19724009,32928261 -) -) -g1,4197:19392135,32928261 -g1,4197:19392135,32928261 -) -) -g1,4197:19392135,32928261 -) -) -g1,4197:19392135,32928261 -(1,4197:19392135,32928261:665744,673524,285028 -g1,4197:19871411,32928261 -k1,4197:20057879,32928261:186468 -) -g1,4197:20057879,32928261 -(1,4197:20057879,32928261:639530,673524,285028 -k1,4197:20257454,32928261:199575 -g1,4197:20697409,32928261 -(1,4197:20697409,32928261:0,655699,276639 -(1,4197:20697409,32928261:0,0,0 -(1,4197:20697409,32928261:0,0,0 -g1,4197:20697409,32928261 -g1,4197:20697409,32928261 -g1,4197:20697409,32928261 -g1,4197:20697409,32928261 -g1,4197:20697409,32928261 -(1,4197:20697409,32928261:0,0,0 -(1,4197:20697409,32928261:331874,388497,9436 -(1,4197:20697409,32928261:331874,388497,9436 -) -g1,4197:21029283,32928261 -) -) -g1,4197:20697409,32928261 -g1,4197:20697409,32928261 -) -) -g1,4197:20697409,32928261 -) -) -g1,4197:20697409,32928261 -(1,4197:20697409,32928261:665744,673524,285028 -g1,4197:21163578,32928261 -k1,4197:21363153,32928261:199575 -) -g1,4197:21363153,32928261 -(1,4197:21363153,32928261:639530,673524,285028 -k1,4197:21562728,32928261:199575 -g1,4197:22002683,32928261 -(1,4197:22002683,32928261:0,655699,276639 -(1,4197:22002683,32928261:0,0,0 -(1,4197:22002683,32928261:0,0,0 -g1,4197:22002683,32928261 -g1,4197:22002683,32928261 -g1,4197:22002683,32928261 -g1,4197:22002683,32928261 -g1,4197:22002683,32928261 -(1,4197:22002683,32928261:0,0,0 -(1,4197:22002683,32928261:331874,379060,0 -(1,4197:22002683,32928261:331874,379060,0 +] +g1,2718:6630773,4812305 +k1,2718:22348274,4812305:14920583 +g1,2718:23970945,4812305 +g1,2718:24793421,4812305 +g1,2718:27528893,4812305 +g1,2718:28938572,4812305 +) +) +] +[1,2718:6630773,45706769:25952256,40108032,0 +(1,2718:6630773,45706769:25952256,40108032,0 +(1,2718:6630773,45706769:0,0,0 +g1,2718:6630773,45706769 +) +[1,2718:6630773,45706769:25952256,40108032,0 +(1,2624:6630773,6254097:25952256,513147,126483 +h1,2623:6630773,6254097:983040,0,0 +k1,2623:10072722,6254097:202504 +k1,2623:12433982,6254097:202504 +k1,2623:14869299,6254097:202505 +k1,2623:15731095,6254097:202504 +k1,2623:19238580,6254097:202504 +k1,2623:20432644,6254097:202504 +k1,2623:24246837,6254097:202504 +k1,2623:25396993,6254097:202505 +k1,2623:28260914,6254097:202504 +(1,2623:28260914,6254097:0,452978,115847 +r1,2718:31432874,6254097:3171960,568825,115847 +k1,2623:28260914,6254097:-3171960 +) +(1,2623:28260914,6254097:3171960,452978,115847 +k1,2623:28260914,6254097:3277 +h1,2623:31429597,6254097:0,411205,112570 +) +k1,2623:31635378,6254097:202504 +k1,2623:32583029,6254097:0 +) +(1,2624:6630773,7119177:25952256,505283,134348 +k1,2623:8614056,7119177:226918 +k1,2623:10208056,7119177:226919 +k1,2623:13726847,7119177:226918 +k1,2623:17258746,7119177:226918 +k1,2623:20602556,7119177:226918 +k1,2623:21480903,7119177:226919 +k1,2623:22726906,7119177:226918 +k1,2623:25298047,7119177:226918 +k1,2623:27366527,7119177:226918 +k1,2623:28825523,7119177:226919 +k1,2623:30550594,7119177:226918 +h1,2623:31347512,7119177:0,0,0 +k1,2623:31955194,7119177:226918 +k1,2623:32583029,7119177:0 +) +(1,2624:6630773,7984257:25952256,505283,134348 +k1,2623:7831828,7984257:181970 +k1,2623:10287896,7984257:181969 +k1,2623:13909851,7984257:181970 +k1,2623:14707859,7984257:181970 +k1,2623:15908913,7984257:181969 +k1,2623:18752300,7984257:181970 +k1,2623:20976372,7984257:181970 +(1,2623:20976372,7984257:0,452978,115847 +r1,2718:24148332,7984257:3171960,568825,115847 +k1,2623:20976372,7984257:-3171960 +) +(1,2623:20976372,7984257:3171960,452978,115847 +k1,2623:20976372,7984257:3277 +h1,2623:24145055,7984257:0,411205,112570 +) +k1,2623:24330301,7984257:181969 +k1,2623:27140920,7984257:181970 +k1,2623:28698491,7984257:181970 +(1,2623:28698491,7984257:0,414482,115847 +r1,2718:29760180,7984257:1061689,530329,115847 +k1,2623:28698491,7984257:-1061689 +) +(1,2623:28698491,7984257:1061689,414482,115847 +k1,2623:28698491,7984257:3277 +h1,2623:29756903,7984257:0,411205,112570 +) +k1,2623:30115819,7984257:181969 +k1,2623:31714677,7984257:181970 +k1,2623:32583029,7984257:0 +) +(1,2624:6630773,8849337:25952256,505283,126483 +k1,2623:8409584,8849337:248545 +k1,2623:9309556,8849337:248544 +k1,2623:11066084,8849337:248545 +k1,2623:12333713,8849337:248544 +k1,2623:14284228,8849337:248545 +k1,2623:16673834,8849337:248545 +k1,2623:19801375,8849337:248544 +k1,2623:21824635,8849337:248545 +(1,2623:21824635,8849337:0,414482,115847 +r1,2718:22886324,8849337:1061689,530329,115847 +k1,2623:21824635,8849337:-1061689 +) +(1,2623:21824635,8849337:1061689,414482,115847 +k1,2623:21824635,8849337:3277 +h1,2623:22883047,8849337:0,411205,112570 +) +k1,2623:23134868,8849337:248544 +k1,2623:26051384,8849337:248545 +k1,2623:27675529,8849337:248544 +k1,2623:28943159,8849337:248545 +k1,2623:32583029,8849337:0 +) +(1,2624:6630773,9714417:25952256,538806,126483 +k1,2623:9045237,9714417:208522 +(1,2623:9045237,9714417:0,452978,115847 +r1,2718:12217197,9714417:3171960,568825,115847 +k1,2623:9045237,9714417:-3171960 +) +(1,2623:9045237,9714417:3171960,452978,115847 +k1,2623:9045237,9714417:3277 +h1,2623:12213920,9714417:0,411205,112570 +) +k1,2623:12425720,9714417:208523 +k1,2623:14127152,9714417:208522 +k1,2623:16673343,9714417:208522 +k1,2623:20108859,9714417:208523 +k1,2623:23622362,9714417:208522 +k1,2623:25324450,9714417:208522 +k1,2623:26219135,9714417:208523 +k1,2623:27016269,9714417:208522 +k1,2623:27813404,9714417:208523 +k1,2623:28704811,9714417:208522 +k1,2623:29328275,9714417:208522 +k1,2623:30002759,9714417:208523 +k1,2623:31591469,9714417:208522 +k1,2623:32583029,9714417:0 +) +(1,2624:6630773,10579497:25952256,513147,126483 +g1,2623:7446040,10579497 +g1,2623:8737754,10579497 +g1,2623:9553021,10579497 +g1,2623:10771335,10579497 +g1,2623:13314787,10579497 +g1,2623:15529248,10579497 +g1,2623:16356312,10579497 +g1,2623:17574626,10579497 +g1,2623:19140936,10579497 +g1,2623:20007321,10579497 +(1,2623:20007321,10579497:0,452978,122846 +r1,2718:23179281,10579497:3171960,575824,122846 +k1,2623:20007321,10579497:-3171960 +) +(1,2623:20007321,10579497:3171960,452978,122846 +k1,2623:20007321,10579497:3277 +h1,2623:23176004,10579497:0,411205,112570 +) +g1,2623:23378510,10579497 +g1,2623:24769184,10579497 +(1,2623:24769184,10579497:0,435480,115847 +r1,2718:25830873,10579497:1061689,551327,115847 +k1,2623:24769184,10579497:-1061689 +) +(1,2623:24769184,10579497:1061689,435480,115847 +k1,2623:24769184,10579497:3277 +h1,2623:25827596,10579497:0,411205,112570 +) +g1,2623:26203772,10579497 +g1,2623:27783189,10579497 +g1,2623:28973978,10579497 +k1,2624:32583029,10579497:130400 +g1,2624:32583029,10579497 +) +v1,2626:6630773,11264352:0,393216,0 +(1,2635:6630773,13797278:25952256,2926142,196608 +g1,2635:6630773,13797278 +g1,2635:6630773,13797278 +g1,2635:6434165,13797278 +(1,2635:6434165,13797278:0,2926142,196608 +r1,2718:32779637,13797278:26345472,3122750,196608 +k1,2635:6434165,13797278:-26345472 +) +(1,2635:6434165,13797278:26345472,2926142,196608 +[1,2635:6630773,13797278:25952256,2729534,0 +(1,2628:6630773,11498789:25952256,431045,112852 +(1,2627:6630773,11498789:0,0,0 +g1,2627:6630773,11498789 +g1,2627:6630773,11498789 +g1,2627:6303093,11498789 +(1,2627:6303093,11498789:0,0,0 +) +g1,2627:6630773,11498789 +) +k1,2628:6630773,11498789:0 +g1,2628:10946175,11498789 +g1,2628:11610083,11498789 +k1,2628:11610083,11498789:0 +h1,2628:21900654,11498789:0,0,0 +k1,2628:32583029,11498789:10682375 +g1,2628:32583029,11498789 +) +(1,2629:6630773,12183644:25952256,424439,112852 +h1,2629:6630773,12183644:0,0,0 +g1,2629:6962727,12183644 +g1,2629:7294681,12183644 +g1,2629:7626635,12183644 +g1,2629:7958589,12183644 +g1,2629:8290543,12183644 +g1,2629:12273990,12183644 +g1,2629:12937898,12183644 +g1,2629:14929622,12183644 +g1,2629:16589392,12183644 +k1,2629:16589392,12183644:0 +h1,2629:18249162,12183644:0,0,0 +k1,2629:32583029,12183644:14333867 +g1,2629:32583029,12183644 +) +(1,2630:6630773,12868499:25952256,424439,86428 +h1,2630:6630773,12868499:0,0,0 +g1,2630:6962727,12868499 +g1,2630:7294681,12868499 +g1,2630:7626635,12868499 +g1,2630:7958589,12868499 +g1,2630:8290543,12868499 +g1,2630:8954451,12868499 +g1,2630:9618359,12868499 +g1,2630:13269853,12868499 +g1,2630:16257439,12868499 +h1,2630:19576978,12868499:0,0,0 +k1,2630:32583029,12868499:13006051 +g1,2630:32583029,12868499 +) +(1,2634:6630773,13684426:25952256,424439,112852 +(1,2632:6630773,13684426:0,0,0 +g1,2632:6630773,13684426 +g1,2632:6630773,13684426 +g1,2632:6303093,13684426 +(1,2632:6303093,13684426:0,0,0 +) +g1,2632:6630773,13684426 +) +g1,2634:7626635,13684426 +g1,2634:8954451,13684426 +g1,2634:11610083,13684426 +g1,2634:11942037,13684426 +g1,2634:12273991,13684426 +g1,2634:12605945,13684426 +g1,2634:12937899,13684426 +g1,2634:13269853,13684426 +g1,2634:13601807,13684426 +g1,2634:15593531,13684426 +g1,2634:17253301,13684426 +g1,2634:18249163,13684426 +g1,2634:20240887,13684426 +g1,2634:21900657,13684426 +h1,2634:22564565,13684426:0,0,0 +k1,2634:32583029,13684426:10018464 +g1,2634:32583029,13684426 +) +] +) +g1,2635:32583029,13797278 +g1,2635:6630773,13797278 +g1,2635:6630773,13797278 +g1,2635:32583029,13797278 +g1,2635:32583029,13797278 +) +h1,2635:6630773,13993886:0,0,0 +(1,2639:6630773,14858966:25952256,513147,134348 +h1,2638:6630773,14858966:983040,0,0 +k1,2638:9303238,14858966:210277 +k1,2638:13367687,14858966:210277 +k1,2638:14446316,14858966:210277 +k1,2638:15760874,14858966:210276 +k1,2638:18062405,14858966:210277 +k1,2638:19594543,14858966:210277 +k1,2638:20464112,14858966:210277 +k1,2638:21693474,14858966:210277 +k1,2638:24652986,14858966:210277 +k1,2638:26729073,14858966:210277 +k1,2638:28130794,14858966:210276 +k1,2638:30069255,14858966:210277 +k1,2638:30737629,14858966:210277 +k1,2638:31563944,14858966:210277 +k1,2638:32583029,14858966:0 +) +(1,2639:6630773,15724046:25952256,513147,126483 +k1,2638:10852111,15724046:283935 +k1,2638:12529997,15724046:283935 +k1,2638:13169791,15724046:283934 +k1,2638:16073855,15724046:283935 +k1,2638:21206144,15724046:283935 +k1,2638:22382024,15724046:283935 +k1,2638:23317386,15724046:283934 +k1,2638:23957181,15724046:283935 +k1,2638:27437962,15724046:283935 +k1,2638:28381189,15724046:283935 +k1,2638:30043345,15724046:283934 +k1,2638:31923737,15724046:283935 +k1,2638:32583029,15724046:0 +) +(1,2639:6630773,16589126:25952256,505283,126483 +g1,2638:10684174,16589126 +g1,2638:11987685,16589126 +g1,2638:12934680,16589126 +k1,2639:32583029,16589126:17961452 +g1,2639:32583029,16589126 +) +v1,2641:6630773,17273981:0,393216,0 +(1,2650:6630773,19806907:25952256,2926142,196608 +g1,2650:6630773,19806907 +g1,2650:6630773,19806907 +g1,2650:6434165,19806907 +(1,2650:6434165,19806907:0,2926142,196608 +r1,2718:32779637,19806907:26345472,3122750,196608 +k1,2650:6434165,19806907:-26345472 +) +(1,2650:6434165,19806907:26345472,2926142,196608 +[1,2650:6630773,19806907:25952256,2729534,0 +(1,2643:6630773,17508418:25952256,431045,112852 +(1,2642:6630773,17508418:0,0,0 +g1,2642:6630773,17508418 +g1,2642:6630773,17508418 +g1,2642:6303093,17508418 +(1,2642:6303093,17508418:0,0,0 +) +g1,2642:6630773,17508418 +) +k1,2643:6630773,17508418:0 +g1,2643:10946175,17508418 +g1,2643:11610083,17508418 +k1,2643:11610083,17508418:0 +h1,2643:17917209,17508418:0,0,0 +k1,2643:32583029,17508418:14665820 +g1,2643:32583029,17508418 +) +(1,2644:6630773,18193273:25952256,424439,112852 +h1,2644:6630773,18193273:0,0,0 +g1,2644:6962727,18193273 +g1,2644:7294681,18193273 +g1,2644:7626635,18193273 +g1,2644:7958589,18193273 +g1,2644:8290543,18193273 +g1,2644:12273990,18193273 +g1,2644:12937898,18193273 +g1,2644:14929622,18193273 +g1,2644:16589392,18193273 +k1,2644:16589392,18193273:0 +h1,2644:18249162,18193273:0,0,0 +k1,2644:32583029,18193273:14333867 +g1,2644:32583029,18193273 +) +(1,2645:6630773,18878128:25952256,424439,86428 +h1,2645:6630773,18878128:0,0,0 +g1,2645:6962727,18878128 +g1,2645:7294681,18878128 +g1,2645:7626635,18878128 +g1,2645:7958589,18878128 +g1,2645:8290543,18878128 +g1,2645:8954451,18878128 +g1,2645:9618359,18878128 +g1,2645:13269853,18878128 +g1,2645:16257439,18878128 +h1,2645:19576978,18878128:0,0,0 +k1,2645:32583029,18878128:13006051 +g1,2645:32583029,18878128 +) +(1,2649:6630773,19694055:25952256,424439,112852 +(1,2647:6630773,19694055:0,0,0 +g1,2647:6630773,19694055 +g1,2647:6630773,19694055 +g1,2647:6303093,19694055 +(1,2647:6303093,19694055:0,0,0 +) +g1,2647:6630773,19694055 +) +g1,2649:7626635,19694055 +g1,2649:8954451,19694055 +g1,2649:11610083,19694055 +g1,2649:11942037,19694055 +g1,2649:12273991,19694055 +g1,2649:12605945,19694055 +g1,2649:12937899,19694055 +g1,2649:13269853,19694055 +g1,2649:13601807,19694055 +g1,2649:15593531,19694055 +g1,2649:17253301,19694055 +g1,2649:18249163,19694055 +g1,2649:20240887,19694055 +g1,2649:21900657,19694055 +h1,2649:22564565,19694055:0,0,0 +k1,2649:32583029,19694055:10018464 +g1,2649:32583029,19694055 +) +] +) +g1,2650:32583029,19806907 +g1,2650:6630773,19806907 +g1,2650:6630773,19806907 +g1,2650:32583029,19806907 +g1,2650:32583029,19806907 +) +h1,2650:6630773,20003515:0,0,0 +v1,2654:6630773,20868595:0,393216,0 +(1,2668:6630773,26632755:25952256,6157376,0 +g1,2668:6630773,26632755 +g1,2668:6237557,26632755 +r1,2718:6368629,26632755:131072,6157376,0 +g1,2668:6567858,26632755 +g1,2668:6764466,26632755 +[1,2668:6764466,26632755:25818563,6157376,0 +(1,2655:6764466,21141072:25818563,665693,196608 +(1,2654:6764466,21141072:0,665693,196608 +r1,2718:8010564,21141072:1246098,862301,196608 +k1,2654:6764466,21141072:-1246098 +) +(1,2654:6764466,21141072:1246098,665693,196608 +) +k1,2654:8273757,21141072:263193 +k1,2654:9999975,21141072:327680 +k1,2654:11537843,21141072:263193 +k1,2654:12820120,21141072:263192 +k1,2654:14255752,21141072:263193 +k1,2654:18035607,21141072:263193 +k1,2654:20340902,21141072:263193 +k1,2654:22387985,21141072:263193 +k1,2654:23670263,21141072:263193 +k1,2654:26712182,21141072:263192 +k1,2654:28986020,21141072:263193 +k1,2654:30010741,21141072:263193 +k1,2654:32583029,21141072:0 +) +(1,2655:6764466,22006152:25818563,513147,126483 +g1,2654:10119909,22006152 +g1,2654:10978430,22006152 +g1,2654:12196744,22006152 +g1,2654:15067220,22006152 +g1,2654:16457894,22006152 +g1,2654:18967267,22006152 +g1,2654:20463454,22006152 +g1,2654:21681768,22006152 +g1,2654:24659724,22006152 +g1,2654:26869598,22006152 +k1,2655:32583029,22006152:3796503 +g1,2655:32583029,22006152 +) +v1,2657:6764466,22691007:0,393216,0 +(1,2666:6764466,26436147:25818563,4138356,196608 +g1,2666:6764466,26436147 +g1,2666:6764466,26436147 +g1,2666:6567858,26436147 +(1,2666:6567858,26436147:0,4138356,196608 +r1,2718:32779637,26436147:26211779,4334964,196608 +k1,2666:6567857,26436147:-26211780 +) +(1,2666:6567858,26436147:26211779,4138356,196608 +[1,2666:6764466,26436147:25818563,3941748,0 +(1,2659:6764466,22925444:25818563,431045,112852 +(1,2658:6764466,22925444:0,0,0 +g1,2658:6764466,22925444 +g1,2658:6764466,22925444 +g1,2658:6436786,22925444 +(1,2658:6436786,22925444:0,0,0 +) +g1,2658:6764466,22925444 +) +k1,2659:6764466,22925444:0 +g1,2659:11079868,22925444 +g1,2659:11743776,22925444 +k1,2659:11743776,22925444:0 +h1,2659:14067454,22925444:0,0,0 +k1,2659:32583030,22925444:18515576 +g1,2659:32583030,22925444 +) +(1,2660:6764466,23610299:25818563,424439,106246 +h1,2660:6764466,23610299:0,0,0 +g1,2660:7096420,23610299 +g1,2660:7428374,23610299 +g1,2660:7760328,23610299 +g1,2660:8092282,23610299 +g1,2660:8424236,23610299 +g1,2660:12407683,23610299 +g1,2660:13071591,23610299 +k1,2660:13071591,23610299:0 +h1,2660:14067453,23610299:0,0,0 +k1,2660:32583029,23610299:18515576 +g1,2660:32583029,23610299 +) +(1,2661:6764466,24295154:25818563,424439,86428 +h1,2661:6764466,24295154:0,0,0 +g1,2661:7096420,24295154 +g1,2661:7428374,24295154 +g1,2661:7760328,24295154 +g1,2661:8092282,24295154 +g1,2661:8424236,24295154 +g1,2661:9088144,24295154 +g1,2661:9752052,24295154 +g1,2661:13403546,24295154 +g1,2661:16391132,24295154 +h1,2661:19710671,24295154:0,0,0 +k1,2661:32583029,24295154:12872358 +g1,2661:32583029,24295154 +) +(1,2662:6764466,24980009:25818563,431045,112852 +h1,2662:6764466,24980009:0,0,0 +g1,2662:11079868,24980009 +g1,2662:11743776,24980009 +k1,2662:11743776,24980009:0 +h1,2662:14067454,24980009:0,0,0 +k1,2662:32583030,24980009:18515576 +g1,2662:32583030,24980009 +) +(1,2663:6764466,25664864:25818563,424439,106246 +h1,2663:6764466,25664864:0,0,0 +g1,2663:7096420,25664864 +g1,2663:7428374,25664864 +g1,2663:7760328,25664864 +g1,2663:8092282,25664864 +g1,2663:8424236,25664864 +g1,2663:12407683,25664864 +g1,2663:13071591,25664864 +k1,2663:13071591,25664864:0 +h1,2663:14067453,25664864:0,0,0 +k1,2663:32583029,25664864:18515576 +g1,2663:32583029,25664864 +) +(1,2664:6764466,26349719:25818563,424439,86428 +h1,2664:6764466,26349719:0,0,0 +g1,2664:7096420,26349719 +g1,2664:7428374,26349719 +g1,2664:7760328,26349719 +g1,2664:8092282,26349719 +g1,2664:8424236,26349719 +g1,2664:9088144,26349719 +g1,2664:9752052,26349719 +g1,2664:13403546,26349719 +g1,2664:16391132,26349719 +h1,2664:19710671,26349719:0,0,0 +k1,2664:32583029,26349719:12872358 +g1,2664:32583029,26349719 +) +] +) +g1,2666:32583029,26436147 +g1,2666:6764466,26436147 +g1,2666:6764466,26436147 +g1,2666:32583029,26436147 +g1,2666:32583029,26436147 +) +h1,2666:6764466,26632755:0,0,0 +] +g1,2668:32583029,26632755 +) +h1,2668:6630773,26632755:0,0,0 +(1,2671:6630773,27497835:25952256,513147,134348 +h1,2670:6630773,27497835:983040,0,0 +k1,2670:10552031,27497835:251897 +k1,2670:11463219,27497835:251896 +k1,2670:14689795,27497835:251897 +k1,2670:17137802,27497835:251896 +k1,2670:19244368,27497835:251897 +k1,2670:20305634,27497835:251896 +k1,2670:22898477,27497835:251897 +k1,2670:26121775,27497835:251896 +k1,2670:26905169,27497835:251897 +k1,2670:27512926,27497835:251897 +k1,2670:31069803,27497835:251896 +k1,2670:32583029,27497835:0 +) +(1,2671:6630773,28362915:25952256,513147,134348 +k1,2670:10062602,28362915:183865 +k1,2670:11662700,28362915:183865 +k1,2670:14990982,28362915:183865 +k1,2670:17019030,28362915:183865 +k1,2670:20564891,28362915:183864 +k1,2670:24555742,28362915:183865 +k1,2670:26562163,28362915:183865 +k1,2670:27918467,28362915:183865 +k1,2670:30864675,28362915:183865 +k1,2671:32583029,28362915:0 +) +(1,2671:6630773,29227995:25952256,513147,126483 +k1,2670:8444099,29227995:174271 +k1,2670:10842662,29227995:174271 +k1,2670:12547199,29227995:174271 +k1,2670:13372898,29227995:174271 +k1,2670:14294935,29227995:174271 +k1,2670:15883473,29227995:174271 +k1,2670:17325210,29227995:174271 +k1,2670:19008120,29227995:174271 +k1,2670:23109964,29227995:174271 +k1,2670:25326992,29227995:174271 +k1,2670:26890626,29227995:174271 +k1,2670:29793161,29227995:174271 +k1,2671:32583029,29227995:0 +) +(1,2671:6630773,30093075:25952256,513147,126483 +(1,2670:6630773,30093075:0,452978,115847 +r1,2718:10154445,30093075:3523672,568825,115847 +k1,2670:6630773,30093075:-3523672 +) +(1,2670:6630773,30093075:3523672,452978,115847 +k1,2670:6630773,30093075:3277 +h1,2670:10151168,30093075:0,411205,112570 +) +k1,2670:10381761,30093075:227316 +k1,2670:11710082,30093075:227316 +k1,2670:12708102,30093075:227317 +k1,2670:15745602,30093075:227316 +k1,2670:19253650,30093075:227316 +k1,2670:20874917,30093075:227316 +(1,2670:20874917,30093075:0,452978,122846 +r1,2718:22991742,30093075:2116825,575824,122846 +k1,2670:20874917,30093075:-2116825 +) +(1,2670:20874917,30093075:2116825,452978,122846 +k1,2670:20874917,30093075:3277 +h1,2670:22988465,30093075:0,411205,112570 +) +k1,2670:23392728,30093075:227316 +k1,2670:24247879,30093075:227316 +k1,2670:25494281,30093075:227317 +k1,2670:28713316,30093075:227316 +k1,2670:29808984,30093075:227316 +k1,2670:31168762,30093075:227316 +k1,2670:32583029,30093075:0 +) +(1,2671:6630773,30958155:25952256,513147,134348 +g1,2670:9026113,30958155 +g1,2670:12587339,30958155 +g1,2670:14167412,30958155 +g1,2670:15558086,30958155 +g1,2670:17182723,30958155 +g1,2670:18041244,30958155 +g1,2670:19378178,30958155 +g1,2670:23384393,30958155 +g1,2670:24199660,30958155 +g1,2670:27161232,30958155 +k1,2671:32583029,30958155:3679850 +g1,2671:32583029,30958155 +) +v1,2673:6630773,31643010:0,393216,0 +(1,2681:6630773,33451445:25952256,2201651,196608 +g1,2681:6630773,33451445 +g1,2681:6630773,33451445 +g1,2681:6434165,33451445 +(1,2681:6434165,33451445:0,2201651,196608 +r1,2718:32779637,33451445:26345472,2398259,196608 +k1,2681:6434165,33451445:-26345472 +) +(1,2681:6434165,33451445:26345472,2201651,196608 +[1,2681:6630773,33451445:25952256,2005043,0 +(1,2675:6630773,31870841:25952256,424439,106246 +(1,2674:6630773,31870841:0,0,0 +g1,2674:6630773,31870841 +g1,2674:6630773,31870841 +g1,2674:6303093,31870841 +(1,2674:6303093,31870841:0,0,0 +) +g1,2674:6630773,31870841 +) +k1,2675:6630773,31870841:0 +g1,2675:10282266,31870841 +g1,2675:10946174,31870841 +g1,2675:14929622,31870841 +g1,2675:17585254,31870841 +g1,2675:19576978,31870841 +g1,2675:20240886,31870841 +g1,2675:20904794,31870841 +h1,2675:21568702,31870841:0,0,0 +k1,2675:32583029,31870841:11014327 +g1,2675:32583029,31870841 +) +(1,2680:6630773,32686768:25952256,424439,79822 +(1,2677:6630773,32686768:0,0,0 +g1,2677:6630773,32686768 +g1,2677:6630773,32686768 +g1,2677:6303093,32686768 +(1,2677:6303093,32686768:0,0,0 +) +g1,2677:6630773,32686768 +) +g1,2680:7626635,32686768 +h1,2680:9286405,32686768:0,0,0 +k1,2680:32583029,32686768:23296624 +g1,2680:32583029,32686768 +) +(1,2680:6630773,33371623:25952256,424439,79822 +h1,2680:6630773,33371623:0,0,0 +g1,2680:7626635,33371623 +g1,2680:8954451,33371623 +g1,2680:13269853,33371623 +h1,2680:15593531,33371623:0,0,0 +k1,2680:32583029,33371623:16989498 +g1,2680:32583029,33371623 +) +] +) +g1,2681:32583029,33451445 +g1,2681:6630773,33451445 +g1,2681:6630773,33451445 +g1,2681:32583029,33451445 +g1,2681:32583029,33451445 +) +h1,2681:6630773,33648053:0,0,0 +(1,2685:6630773,34513133:25952256,505283,134348 +h1,2684:6630773,34513133:983040,0,0 +k1,2684:9544110,34513133:138543 +k1,2684:10038513,34513133:138543 +k1,2684:12301733,34513133:138543 +k1,2684:14714375,34513133:138543 +k1,2684:18292903,34513133:138543 +k1,2684:19299799,34513133:138544 +k1,2684:20542624,34513133:138543 +k1,2684:22885143,34513133:138543 +k1,2684:26216600,34513133:138543 +k1,2684:28551254,34513133:138543 +k1,2684:32583029,34513133:0 +) +(1,2685:6630773,35378213:25952256,505283,7863 +g1,2684:7849087,35378213 +k1,2685:32583029,35378213:21744190 +g1,2685:32583029,35378213 +) +v1,2687:6630773,36063068:0,393216,0 +(1,2695:6630773,37871503:25952256,2201651,196608 +g1,2695:6630773,37871503 +g1,2695:6630773,37871503 +g1,2695:6434165,37871503 +(1,2695:6434165,37871503:0,2201651,196608 +r1,2718:32779637,37871503:26345472,2398259,196608 +k1,2695:6434165,37871503:-26345472 +) +(1,2695:6434165,37871503:26345472,2201651,196608 +[1,2695:6630773,37871503:25952256,2005043,0 +(1,2689:6630773,36290899:25952256,424439,106246 +(1,2688:6630773,36290899:0,0,0 +g1,2688:6630773,36290899 +g1,2688:6630773,36290899 +g1,2688:6303093,36290899 +(1,2688:6303093,36290899:0,0,0 +) +g1,2688:6630773,36290899 +) +k1,2689:6630773,36290899:0 +g1,2689:10282266,36290899 +g1,2689:10946174,36290899 +g1,2689:14929622,36290899 +g1,2689:17585254,36290899 +g1,2689:19576978,36290899 +g1,2689:20240886,36290899 +g1,2689:20904794,36290899 +k1,2689:20904794,36290899:0 +h1,2689:22896518,36290899:0,0,0 +k1,2689:32583029,36290899:9686511 +g1,2689:32583029,36290899 +) +(1,2694:6630773,37106826:25952256,424439,79822 +(1,2691:6630773,37106826:0,0,0 +g1,2691:6630773,37106826 +g1,2691:6630773,37106826 +g1,2691:6303093,37106826 +(1,2691:6303093,37106826:0,0,0 +) +g1,2691:6630773,37106826 +) +g1,2694:7626635,37106826 +h1,2694:9286405,37106826:0,0,0 +k1,2694:32583029,37106826:23296624 +g1,2694:32583029,37106826 +) +(1,2694:6630773,37791681:25952256,424439,79822 +h1,2694:6630773,37791681:0,0,0 +g1,2694:7626635,37791681 +g1,2694:8954451,37791681 +g1,2694:11278129,37791681 +g1,2694:12937899,37791681 +g1,2694:13269853,37791681 +g1,2694:13601807,37791681 +g1,2694:15261577,37791681 +g1,2694:15593531,37791681 +g1,2694:15925485,37791681 +g1,2694:17585255,37791681 +g1,2694:17917209,37791681 +g1,2694:18249163,37791681 +h1,2694:19576979,37791681:0,0,0 +k1,2694:32583029,37791681:13006050 +g1,2694:32583029,37791681 +) +] +) +g1,2695:32583029,37871503 +g1,2695:6630773,37871503 +g1,2695:6630773,37871503 +g1,2695:32583029,37871503 +g1,2695:32583029,37871503 +) +h1,2695:6630773,38068111:0,0,0 +(1,2699:6630773,38933191:25952256,513147,134348 +h1,2698:6630773,38933191:983040,0,0 +k1,2698:8998722,38933191:188222 +k1,2698:12259272,38933191:188222 +k1,2698:13098922,38933191:188222 +(1,2698:13098922,38933191:0,452978,115847 +r1,2718:14864035,38933191:1765113,568825,115847 +k1,2698:13098922,38933191:-1765113 +) +(1,2698:13098922,38933191:1765113,452978,115847 +k1,2698:13098922,38933191:3277 +h1,2698:14860758,38933191:0,411205,112570 +) +k1,2698:15052257,38933191:188222 +k1,2698:15771976,38933191:188222 +k1,2698:16721726,38933191:188222 +k1,2698:19175528,38933191:188222 +k1,2698:22953812,38933191:188222 +k1,2698:23828196,38933191:188222 +k1,2698:24372278,38933191:188222 +k1,2698:26834599,38933191:188222 +k1,2698:30636476,38933191:188222 +k1,2698:31896867,38933191:188222 +k1,2698:32583029,38933191:0 +) +(1,2699:6630773,39798271:25952256,505283,126483 +g1,2698:9959346,39798271 +g1,2698:12013899,39798271 +g1,2698:13081480,39798271 +g1,2698:14384991,39798271 +g1,2698:16021425,39798271 +(1,2698:16021425,39798271:0,459977,115847 +r1,2718:20248521,39798271:4227096,575824,115847 +k1,2698:16021425,39798271:-4227096 +) +(1,2698:16021425,39798271:4227096,459977,115847 +g1,2698:18134973,39798271 +g1,2698:18838397,39798271 +h1,2698:20245244,39798271:0,411205,112570 +) +g1,2698:20447750,39798271 +g1,2698:21298407,39798271 +g1,2698:23930332,39798271 +k1,2699:32583029,39798271:7275786 +g1,2699:32583029,39798271 +) +v1,2701:6630773,40663351:0,393216,0 +(1,2715:6630773,45451192:25952256,5181057,0 +g1,2715:6630773,45451192 +g1,2715:6237557,45451192 +r1,2718:6368629,45451192:131072,5181057,0 +g1,2715:6567858,45451192 +g1,2715:6764466,45451192 +[1,2715:6764466,45451192:25818563,5181057,0 +(1,2702:6764466,41024528:25818563,754393,260573 +(1,2701:6764466,41024528:0,754393,260573 +r1,2718:8010564,41024528:1246098,1014966,260573 +k1,2701:6764466,41024528:-1246098 +) +(1,2701:6764466,41024528:1246098,754393,260573 +) +k1,2701:8194704,41024528:184140 +k1,2701:8522384,41024528:327680 +k1,2701:9977922,41024528:184140 +k1,2701:12022629,41024528:184140 +k1,2701:12858197,41024528:184140 +k1,2701:13790103,41024528:184140 +k1,2701:15842674,41024528:184140 +k1,2701:17311320,41024528:184140 +k1,2701:18514545,41024528:184140 +k1,2701:20020547,41024528:184141 +k1,2701:20863979,41024528:184140 +k1,2701:22067204,41024528:184140 +k1,2701:24117154,41024528:184140 +k1,2701:27050529,41024528:184140 +k1,2701:27996197,41024528:184140 +k1,2701:29199422,41024528:184140 +k1,2701:31657661,41024528:184140 +k1,2702:32583029,41024528:0 +) +(1,2702:6764466,41889608:25818563,513147,134348 +k1,2701:9656187,41889608:164113 +k1,2701:10351797,41889608:164113 +k1,2701:11582181,41889608:164113 +k1,2701:14504704,41889608:164113 +k1,2701:15284855,41889608:164113 +k1,2701:16468053,41889608:164113 +k1,2701:19410894,41889608:164114 +k1,2701:22056855,41889608:164113 +k1,2701:22698725,41889608:164113 +k1,2701:23881923,41889608:164113 +k1,2701:26320135,41889608:164113 +k1,2701:29924233,41889608:164113 +k1,2701:32583029,41889608:0 +) +(1,2702:6764466,42754688:25818563,505283,134348 +g1,2701:8613892,42754688 +g1,2701:10255568,42754688 +g1,2701:12003413,42754688 +g1,2701:13070994,42754688 +g1,2701:16001108,42754688 +g1,2701:16556197,42754688 +g1,2701:19967345,42754688 +g1,2701:21185659,42754688 +g1,2701:24163615,42754688 +g1,2701:26373489,42754688 +g1,2701:27909652,42754688 +g1,2701:28856647,42754688 +k1,2702:32583029,42754688:288363 +g1,2702:32583029,42754688 +) +v1,2704:6764466,43439543:0,393216,0 +(1,2712:6764466,45254584:25818563,2208257,196608 +g1,2712:6764466,45254584 +g1,2712:6764466,45254584 +g1,2712:6567858,45254584 +(1,2712:6567858,45254584:0,2208257,196608 +r1,2718:32779637,45254584:26211779,2404865,196608 +k1,2712:6567857,45254584:-26211780 +) +(1,2712:6567858,45254584:26211779,2208257,196608 +[1,2712:6764466,45254584:25818563,2011649,0 +(1,2706:6764466,43673980:25818563,431045,106246 +(1,2705:6764466,43673980:0,0,0 +g1,2705:6764466,43673980 +g1,2705:6764466,43673980 +g1,2705:6436786,43673980 +(1,2705:6436786,43673980:0,0,0 +) +g1,2705:6764466,43673980 +) +k1,2706:6764466,43673980:0 +g1,2706:10415959,43673980 +g1,2706:11079867,43673980 +g1,2706:15727223,43673980 +g1,2706:17718947,43673980 +g1,2706:18382855,43673980 +k1,2706:18382855,43673980:0 +h1,2706:22034349,43673980:0,0,0 +k1,2706:32583029,43673980:10548680 +g1,2706:32583029,43673980 +) +(1,2711:6764466,44489907:25818563,424439,79822 +(1,2708:6764466,44489907:0,0,0 +g1,2708:6764466,44489907 +g1,2708:6764466,44489907 +g1,2708:6436786,44489907 +(1,2708:6436786,44489907:0,0,0 +) +g1,2708:6764466,44489907 +) +g1,2711:7760328,44489907 +h1,2711:9420098,44489907:0,0,0 +k1,2711:32583030,44489907:23162932 +g1,2711:32583030,44489907 +) +(1,2711:6764466,45174762:25818563,424439,79822 +h1,2711:6764466,45174762:0,0,0 +g1,2711:7760328,45174762 +g1,2711:9088144,45174762 +k1,2711:9088144,45174762:0 +h1,2711:12075730,45174762:0,0,0 +k1,2711:32583030,45174762:20507300 +g1,2711:32583030,45174762 +) +] +) +g1,2712:32583029,45254584 +g1,2712:6764466,45254584 +g1,2712:6764466,45254584 +g1,2712:32583029,45254584 +g1,2712:32583029,45254584 +) +h1,2712:6764466,45451192:0,0,0 +] +g1,2715:32583029,45451192 +) +h1,2715:6630773,45451192:0,0,0 +] +(1,2718:32583029,45706769:0,0,0 +g1,2718:32583029,45706769 +) +) +] +(1,2718:6630773,47279633:25952256,0,0 +h1,2718:6630773,47279633:25952256,0,0 +) +] +(1,2718:4262630,4025873:0,0,0 +[1,2718:-473656,4025873:0,0,0 +(1,2718:-473656,-710413:0,0,0 +(1,2718:-473656,-710413:0,0,0 +g1,2718:-473656,-710413 ) -g1,4197:22334557,32928261 +g1,2718:-473656,-710413 +) +] ) +] +!30102 +}61 +Input:552:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:553:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:554:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:555:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:556:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:557:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:558:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:559:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:560:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:561:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:562:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1034 +{62 +[1,2762:4262630,47279633:28320399,43253760,0 +(1,2762:4262630,4025873:0,0,0 +[1,2762:-473656,4025873:0,0,0 +(1,2762:-473656,-710413:0,0,0 +(1,2762:-473656,-644877:0,0,0 +k1,2762:-473656,-644877:-65536 ) -g1,4197:22002683,32928261 -g1,4197:22002683,32928261 +(1,2762:-473656,4736287:0,0,0 +k1,2762:-473656,4736287:5209943 ) +g1,2762:-473656,-710413 ) -g1,4197:22002683,32928261 +] ) +[1,2762:6630773,47279633:25952256,43253760,0 +[1,2762:6630773,4812305:25952256,786432,0 +(1,2762:6630773,4812305:25952256,505283,134348 +(1,2762:6630773,4812305:25952256,505283,134348 +g1,2762:3078558,4812305 +[1,2762:3078558,4812305:0,0,0 +(1,2762:3078558,2439708:0,1703936,0 +k1,2762:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,2762:2537886,2439708:1179648,16384,0 ) -g1,4197:22002683,32928261 -(1,4197:22002683,32928261:665744,673524,285028 -g1,4197:22468852,32928261 -k1,4197:22668427,32928261:199575 +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,2762:3078558,1915420:16384,1179648,0 ) -g1,4197:22668427,32928261 -(1,4197:22668427,32928261:639530,673524,285028 -k1,4197:22868002,32928261:199575 -g1,4197:23307957,32928261 -(1,4197:23307957,32928261:0,650981,281357 -(1,4197:23307957,32928261:0,0,0 -(1,4197:23307957,32928261:0,0,0 -g1,4197:23307957,32928261 -g1,4197:23307957,32928261 -g1,4197:23307957,32928261 -g1,4197:23307957,32928261 -g1,4197:23307957,32928261 -(1,4197:23307957,32928261:0,0,0 -(1,4197:23307957,32928261:331874,379060,9436 -(1,4197:23307957,32928261:331874,379060,9436 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) -g1,4197:23639831,32928261 +] ) ) -g1,4197:23307957,32928261 -g1,4197:23307957,32928261 ) +] +[1,2762:3078558,4812305:0,0,0 +(1,2762:3078558,2439708:0,1703936,0 +g1,2762:29030814,2439708 +g1,2762:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,2762:36151628,1915420:16384,1179648,0 ) -g1,4197:23307957,32928261 +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) +] ) -g1,4197:23307957,32928261 -(1,4197:23307957,32928261:665744,673524,285028 -g1,4197:23774126,32928261 -k1,4197:23973701,32928261:199575 +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,2762:37855564,2439708:1179648,16384,0 ) -g1,4197:23973701,32928261 -(1,4197:23973701,32928261:639530,673524,285028 -k1,4197:24173276,32928261:199575 -g1,4197:24613231,32928261 -(1,4197:24613231,32928261:0,655699,276639 -(1,4197:24613231,32928261:0,0,0 -(1,4197:24613231,32928261:0,0,0 -g1,4197:24613231,32928261 -g1,4197:24613231,32928261 -g1,4197:24613231,32928261 -g1,4197:24613231,32928261 -g1,4197:24613231,32928261 -(1,4197:24613231,32928261:0,0,0 -(1,4197:24613231,32928261:331874,388497,9436 -(1,4197:24613231,32928261:331874,388497,9436 ) -g1,4197:24945105,32928261 +k1,2762:3078556,2439708:-34777008 ) +] +[1,2762:3078558,4812305:0,0,0 +(1,2762:3078558,49800853:0,16384,2228224 +k1,2762:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,2762:2537886,49800853:1179648,16384,0 ) -g1,4197:24613231,32928261 -g1,4197:24613231,32928261 +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,2762:3078558,51504789:16384,1179648,0 ) +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) -g1,4197:24613231,32928261 +] ) ) -g1,4197:24613231,32928261 -(1,4197:24613231,32928261:665744,673524,285028 -g1,4197:25079400,32928261 -k1,4197:25278975,32928261:199575 ) -g1,4197:25278975,32928261 -(1,4197:25278975,32928261:639530,673524,285028 -k1,4197:25478550,32928261:199575 -g1,4197:25918505,32928261 -(1,4197:25918505,32928261:0,655699,276639 -(1,4197:25918505,32928261:0,0,0 -(1,4197:25918505,32928261:0,0,0 -g1,4197:25918505,32928261 -g1,4197:25918505,32928261 -g1,4197:25918505,32928261 -g1,4197:25918505,32928261 -g1,4197:25918505,32928261 -(1,4197:25918505,32928261:0,0,0 -(1,4197:25918505,32928261:331874,379060,0 -(1,4197:25918505,32928261:331874,379060,0 +] +[1,2762:3078558,4812305:0,0,0 +(1,2762:3078558,49800853:0,16384,2228224 +g1,2762:29030814,49800853 +g1,2762:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,2762:36151628,51504789:16384,1179648,0 ) -g1,4197:26250379,32928261 +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 +) +] +) +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,2762:37855564,49800853:1179648,16384,0 ) ) -g1,4197:25918505,32928261 -g1,4197:25918505,32928261 +k1,2762:3078556,49800853:-34777008 +) +] +g1,2762:6630773,4812305 +g1,2762:6630773,4812305 +g1,2762:9062814,4812305 +g1,2762:11256304,4812305 +g1,2762:12665983,4812305 +g1,2762:15337230,4812305 +g1,2762:17955393,4812305 +k1,2762:31786111,4812305:13830718 +) +) +] +[1,2762:6630773,45706769:25952256,40108032,0 +(1,2762:6630773,45706769:25952256,40108032,0 +(1,2762:6630773,45706769:0,0,0 +g1,2762:6630773,45706769 +) +[1,2762:6630773,45706769:25952256,40108032,0 +v1,2718:6630773,6254097:0,393216,0 +(1,2735:6630773,14767178:25952256,8906297,0 +g1,2735:6630773,14767178 +g1,2735:6237557,14767178 +r1,2762:6368629,14767178:131072,8906297,0 +g1,2735:6567858,14767178 +g1,2735:6764466,14767178 +[1,2735:6764466,14767178:25818563,8906297,0 +(1,2719:6764466,6562395:25818563,701514,196608 +(1,2718:6764466,6562395:0,701514,196608 +r1,2762:8010564,6562395:1246098,898122,196608 +k1,2718:6764466,6562395:-1246098 +) +(1,2718:6764466,6562395:1246098,701514,196608 +) +k1,2718:8168596,6562395:158032 +k1,2718:8496276,6562395:327680 +k1,2718:10437543,6562395:158032 +k1,2718:11614661,6562395:158033 +k1,2718:14845021,6562395:158032 +k1,2718:17208340,6562395:158032 +k1,2718:18017800,6562395:158032 +(1,2718:18017800,6562395:0,414482,115847 +r1,2762:18376066,6562395:358266,530329,115847 +k1,2718:18017800,6562395:-358266 +) +(1,2718:18017800,6562395:358266,414482,115847 +k1,2718:18017800,6562395:3277 +h1,2718:18372789,6562395:0,411205,112570 +) +k1,2718:18534098,6562395:158032 +k1,2718:19223628,6562395:158033 +k1,2718:19737520,6562395:158032 +k1,2718:21873429,6562395:158032 +k1,2718:23425412,6562395:158032 +k1,2718:26254692,6562395:158033 +k1,2718:29036130,6562395:158032 +k1,2718:31563944,6562395:158032 +k1,2718:32583029,6562395:0 +) +(1,2719:6764466,7427475:25818563,513147,126483 +k1,2718:9748471,7427475:205278 +k1,2718:11634091,7427475:205277 +k1,2718:12370866,7427475:205278 +k1,2718:12932003,7427475:205277 +k1,2718:14130807,7427475:205278 +k1,2718:15003241,7427475:205278 +(1,2718:15003241,7427475:0,452978,115847 +r1,2762:18175201,7427475:3171960,568825,115847 +k1,2718:15003241,7427475:-3171960 +) +(1,2718:15003241,7427475:3171960,452978,115847 +k1,2718:15003241,7427475:3277 +h1,2718:18171924,7427475:0,411205,112570 +) +k1,2718:18380478,7427475:205277 +k1,2718:21067604,7427475:205278 +k1,2718:22653726,7427475:205278 +k1,2718:23852529,7427475:205277 +k1,2718:26759856,7427475:205278 +k1,2718:27651295,7427475:205277 +k1,2718:29608350,7427475:205278 +k1,2718:32583029,7427475:0 +) +(1,2719:6764466,8292555:25818563,505283,134348 +k1,2718:9232895,8292555:160251 +k1,2718:10079308,8292555:160251 +k1,2718:13193266,8292555:160250 +k1,2718:14544962,8292555:160251 +k1,2718:15724298,8292555:160251 +k1,2718:17862426,8292555:160251 +k1,2718:20227963,8292555:160250 +k1,2718:21074376,8292555:160251 +k1,2718:24306955,8292555:160251 +k1,2718:25118634,8292555:160251 +(1,2718:25118634,8292555:0,414482,115847 +r1,2762:25476900,8292555:358266,530329,115847 +k1,2718:25118634,8292555:-358266 +) +(1,2718:25118634,8292555:358266,414482,115847 +k1,2718:25118634,8292555:3277 +h1,2718:25473623,8292555:0,411205,112570 +) +k1,2718:25810821,8292555:160251 +k1,2718:27422693,8292555:160250 +k1,2718:29560821,8292555:160251 +k1,2718:30740157,8292555:160251 +k1,2718:32583029,8292555:0 +) +(1,2719:6764466,9157635:25818563,513147,134348 +k1,2718:7604918,9157635:181160 +k1,2718:10447495,9157635:181160 +k1,2718:11785366,9157635:181161 +k1,2718:14941205,9157635:181160 +k1,2718:16988175,9157635:181160 +k1,2718:17785373,9157635:181160 +k1,2718:18985618,9157635:181160 +k1,2718:21048973,9157635:181161 +k1,2718:22920962,9157635:181160 +k1,2718:24093682,9157635:181160 +k1,2718:27364865,9157635:181160 +k1,2718:28162064,9157635:181161 +k1,2718:30621911,9157635:181160 +h1,2718:31592499,9157635:0,0,0 +k1,2718:31773659,9157635:181160 +k1,2718:32583029,9157635:0 +) +(1,2719:6764466,10022715:25818563,505283,134348 +g1,2718:8461848,10022715 +h1,2718:9258766,10022715:0,0,0 +k1,2719:32583030,10022715:22943500 +g1,2719:32583030,10022715 +) +v1,2721:6764466,10707570:0,393216,0 +(1,2732:6764466,14570570:25818563,4256216,196608 +g1,2732:6764466,14570570 +g1,2732:6764466,14570570 +g1,2732:6567858,14570570 +(1,2732:6567858,14570570:0,4256216,196608 +r1,2762:32779637,14570570:26211779,4452824,196608 +k1,2732:6567857,14570570:-26211780 +) +(1,2732:6567858,14570570:26211779,4256216,196608 +[1,2732:6764466,14570570:25818563,4059608,0 +(1,2723:6764466,10935401:25818563,424439,106246 +(1,2722:6764466,10935401:0,0,0 +g1,2722:6764466,10935401 +g1,2722:6764466,10935401 +g1,2722:6436786,10935401 +(1,2722:6436786,10935401:0,0,0 +) +g1,2722:6764466,10935401 +) +k1,2723:6764466,10935401:0 +g1,2723:10415959,10935401 +g1,2723:11079867,10935401 +g1,2723:15727223,10935401 +g1,2723:18382855,10935401 +g1,2723:22366303,10935401 +g1,2723:25353889,10935401 +g1,2723:27345613,10935401 +g1,2723:28009521,10935401 +g1,2723:28673429,10935401 +h1,2723:29337337,10935401:0,0,0 +k1,2723:32583029,10935401:3245692 +g1,2723:32583029,10935401 +) +(1,2731:6764466,11751328:25818563,424439,79822 +(1,2725:6764466,11751328:0,0,0 +g1,2725:6764466,11751328 +g1,2725:6764466,11751328 +g1,2725:6436786,11751328 +(1,2725:6436786,11751328:0,0,0 +) +g1,2725:6764466,11751328 +) +g1,2731:7760328,11751328 +h1,2731:9420098,11751328:0,0,0 +k1,2731:32583030,11751328:23162932 +g1,2731:32583030,11751328 +) +(1,2731:6764466,12436183:25818563,424439,79822 +h1,2731:6764466,12436183:0,0,0 +g1,2731:7760328,12436183 +g1,2731:9088144,12436183 +g1,2731:13403546,12436183 +h1,2731:15727224,12436183:0,0,0 +k1,2731:32583028,12436183:16855804 +g1,2731:32583028,12436183 +) +(1,2731:6764466,13121038:25818563,398014,0 +h1,2731:6764466,13121038:0,0,0 +h1,2731:7428374,13121038:0,0,0 +k1,2731:32583030,13121038:25154656 +g1,2731:32583030,13121038 +) +(1,2731:6764466,13805893:25818563,424439,79822 +h1,2731:6764466,13805893:0,0,0 +g1,2731:7760328,13805893 +h1,2731:9420098,13805893:0,0,0 +k1,2731:32583030,13805893:23162932 +g1,2731:32583030,13805893 +) +(1,2731:6764466,14490748:25818563,424439,79822 +h1,2731:6764466,14490748:0,0,0 +g1,2731:7760328,14490748 +g1,2731:9088144,14490748 +g1,2731:13403546,14490748 +h1,2731:15727224,14490748:0,0,0 +k1,2731:32583028,14490748:16855804 +g1,2731:32583028,14490748 +) +] +) +g1,2732:32583029,14570570 +g1,2732:6764466,14570570 +g1,2732:6764466,14570570 +g1,2732:32583029,14570570 +g1,2732:32583029,14570570 +) +h1,2732:6764466,14767178:0,0,0 +] +g1,2735:32583029,14767178 +) +h1,2735:6630773,14767178:0,0,0 +v1,2739:6630773,15632258:0,393216,0 +(1,2745:6630773,36016758:25952256,20777716,0 +g1,2745:6630773,36016758 +g1,2745:6237557,36016758 +r1,2762:6368629,36016758:131072,20777716,0 +g1,2745:6567858,36016758 +g1,2745:6764466,36016758 +[1,2745:6764466,36016758:25818563,20777716,0 +(1,2741:6764466,15993435:25818563,754393,260573 +(1,2739:6764466,15993435:0,754393,260573 +r1,2762:8010564,15993435:1246098,1014966,260573 +k1,2739:6764466,15993435:-1246098 +) +(1,2739:6764466,15993435:1246098,754393,260573 +) +k1,2739:8254717,15993435:244153 +k1,2739:8582397,15993435:327680 +k1,2739:8582397,15993435:0 +k1,2740:10023237,15993435:244153 +k1,2740:11991597,15993435:244108 +k1,2740:15210430,15993435:244154 +k1,2740:16389126,15993435:244153 +k1,2740:17164776,15993435:244153 +k1,2740:18428014,15993435:244153 +k1,2740:20627106,15993435:244153 +k1,2740:22062704,15993435:244153 +k1,2740:25018737,15993435:244153 +k1,2740:25878929,15993435:244154 +k1,2740:27389238,15993435:244153 +k1,2740:28261226,15993435:244153 +k1,2740:31207428,15993435:244153 +k1,2740:32583029,15993435:0 +) +(1,2741:6764466,16858515:25818563,505283,134348 +k1,2740:8185614,16858515:225771 +k1,2740:11716367,16858515:225772 +k1,2740:14922715,16858515:225771 +k1,2740:19476484,16858515:225771 +k1,2740:23180906,16858515:225771 +k1,2740:25281008,16858515:225772 +k1,2740:28811760,16858515:225771 +k1,2740:31563944,16858515:225771 +k1,2740:32583029,16858515:0 +) +(1,2741:6764466,17723595:25818563,513147,134348 +k1,2740:9373381,17723595:297460 +k1,2740:12686809,17723595:297461 +k1,2740:15240674,17723595:297460 +k1,2740:18300477,17723595:297460 +k1,2740:21518222,17723595:297461 +k1,2740:24479721,17723595:297460 +k1,2740:26171132,17723595:297460 +k1,2740:27663970,17723595:297461 +k1,2740:31266411,17723595:297460 +k1,2741:32583029,17723595:0 +) +(1,2741:6764466,18588675:25818563,513147,134348 +k1,2740:8757654,18588675:245998 +k1,2740:11530065,18588675:245998 +k1,2740:12723715,18588675:245999 +k1,2740:14671683,18588675:245998 +k1,2740:18263949,18588675:245998 +k1,2740:20677878,18588675:245998 +k1,2740:21685404,18588675:245998 +k1,2740:24118994,18588675:245998 +k1,2740:27175177,18588675:245999 +k1,2740:29453446,18588675:245998 +k1,2740:30890889,18588675:245998 +k1,2740:32583029,18588675:0 +) +(1,2741:6764466,19453755:25818563,513147,134348 +k1,2740:9736074,19453755:156181 +k1,2740:11088941,19453755:156180 +k1,2740:12440499,19453755:156181 +k1,2740:14320889,19453755:156138 +k1,2740:17782050,19453755:156180 +k1,2740:19442282,19453755:156181 +k1,2740:20546113,19453755:156180 +k1,2740:21058154,19453755:156181 +k1,2740:22603043,19453755:156181 +k1,2740:24184631,19453755:156180 +k1,2740:25359897,19453755:156181 +k1,2740:26891678,19453755:156180 +k1,2740:30894822,19453755:156181 +k1,2741:32583029,19453755:0 +) +(1,2741:6764466,20318835:25818563,513147,134348 +k1,2740:8333159,20318835:259939 +k1,2740:10626026,20318835:259940 +k1,2740:14292526,20318835:259939 +k1,2740:15487009,20318835:259940 +k1,2740:16582532,20318835:259939 +k1,2740:17790123,20318835:259940 +k1,2740:20812405,20318835:259939 +k1,2740:24244943,20318835:259940 +k1,2740:25696327,20318835:259939 +k1,2740:28938155,20318835:259940 +k1,2740:30088073,20318835:259939 +k1,2740:32583029,20318835:0 +) +(1,2741:6764466,21183915:25818563,513147,134348 +k1,2740:9738162,21183915:262472 +k1,2740:11019718,21183915:262471 +k1,2740:12374675,21183915:262472 +k1,2740:13296439,21183915:262472 +k1,2740:15342145,21183915:262471 +k1,2740:17463873,21183915:262472 +k1,2740:20701024,21183915:262472 +k1,2740:22228340,21183915:262471 +k1,2740:23637037,21183915:262472 +k1,2740:25562813,21183915:262472 +k1,2740:26926289,21183915:262471 +k1,2740:29631943,21183915:262472 +k1,2740:32583029,21183915:0 +) +(1,2741:6764466,22048995:25818563,513147,126483 +k1,2740:8589696,22048995:173067 +k1,2740:9177581,22048995:173042 +k1,2740:11684385,22048995:173067 +k1,2740:13400170,22048995:173067 +k1,2740:16099651,22048995:173068 +k1,2740:17220369,22048995:173067 +k1,2740:19056740,22048995:173067 +k1,2740:19761304,22048995:173067 +k1,2740:22718341,22048995:173068 +k1,2740:24777534,22048995:173067 +k1,2740:27839428,22048995:173067 +k1,2740:28983084,22048995:173068 +k1,2740:30536995,22048995:173067 +k1,2740:32583029,22048995:0 +) +(1,2741:6764466,22914075:25818563,513147,134348 +k1,2740:7427129,22914075:204566 +k1,2740:10261655,22914075:204566 +k1,2740:11485306,22914075:204566 +k1,2740:15125268,22914075:204565 +k1,2740:15989126,22914075:204566 +k1,2740:17419871,22914075:204566 +k1,2740:19013800,22914075:204566 +k1,2740:20166017,22914075:204566 +k1,2740:22122360,22914075:204566 +k1,2740:23977123,22914075:204566 +k1,2740:27354286,22914075:204565 +k1,2740:29001299,22914075:204566 +k1,2740:29821903,22914075:204566 +k1,2740:31045554,22914075:204566 +k1,2740:32583029,22914075:0 +) +(1,2741:6764466,23779155:25818563,513147,134348 +k1,2740:8399687,23779155:144932 +k1,2740:10814786,23779155:144932 +k1,2740:12290099,23779155:144932 +k1,2740:12893128,23779155:144932 +k1,2740:13569557,23779155:144932 +k1,2740:16344449,23779155:144932 +k1,2740:17140808,23779155:144931 +k1,2740:18378225,23779155:144932 +k1,2740:21684560,23779155:144878 +k1,2740:25134473,23779155:144932 +k1,2740:25965567,23779155:144932 +k1,2740:27432360,23779155:144932 +k1,2740:28236584,23779155:144932 +k1,2740:30341042,23779155:144932 +k1,2740:32583029,23779155:0 +) +(1,2741:6764466,24644235:25818563,513147,126483 +g1,2740:7421792,24644235 +g1,2740:8152518,24644235 +g1,2740:10721529,24644235 +g1,2740:12507385,24644235 +g1,2740:13358042,24644235 +g1,2740:14649756,24644235 +g1,2740:16224586,24644235 +g1,2740:18148067,24644235 +g1,2740:21652277,24644235 +g1,2740:22537668,24644235 +g1,2740:23940138,24644235 +g1,2740:26665780,24644235 +g1,2740:27396506,24644235 +k1,2741:32583029,24644235:3024490 +g1,2741:32583029,24644235 +) +(1,2743:6764466,25509315:25818563,505283,102891 +h1,2742:6764466,25509315:983040,0,0 +k1,2742:9111375,25509315:167182 +k1,2742:12198842,25509315:167183 +k1,2742:15340703,25509315:167182 +k1,2742:16772730,25509315:167182 +k1,2742:19277581,25509315:167182 +k1,2742:22671757,25509315:167183 +k1,2742:26317590,25509315:167182 +k1,2742:27769278,25509315:167182 +k1,2742:28928021,25509315:167183 +k1,2742:31510860,25509315:167182 +k1,2742:32583029,25509315:0 +) +(1,2743:6764466,26374395:25818563,505283,134348 +k1,2742:8389016,26374395:287616 +k1,2742:11296761,26374395:287616 +k1,2742:13690703,26374395:287615 +k1,2742:15262825,26374395:287616 +k1,2742:16937183,26374395:287616 +k1,2742:18578773,26374395:287616 +k1,2742:21068398,26374395:287615 +k1,2742:22007442,26374395:287616 +k1,2742:24038971,26374395:287616 +k1,2742:24942625,26374395:287616 +k1,2742:26249325,26374395:287615 +k1,2742:28261105,26374395:287528 +k1,2742:29656934,26374395:287615 +k1,2742:31215948,26374395:287616 +k1,2742:32583029,26374395:0 +) +(1,2743:6764466,27239475:25818563,505283,134348 +k1,2742:8044759,27239475:288733 +k1,2742:11035541,27239475:288733 +k1,2742:12567491,27239475:288732 +k1,2742:15353146,27239475:288733 +k1,2742:16442729,27239475:288733 +k1,2742:18712615,27239475:288733 +k1,2742:20321898,27239475:288733 +$1,2742:20528992,27239475 +$1,2742:21097189,27239475 +k1,2742:21593015,27239475:288732 +k1,2742:23073193,27239475:288733 +k1,2742:25636025,27239475:288733 +k1,2742:27446504,27239475:288733 +k1,2742:28362417,27239475:288733 +k1,2742:30536620,27239475:288732 +k1,2742:31816913,27239475:288733 +k1,2742:32583029,27239475:0 +) +(1,2743:6764466,28104555:25818563,513147,134348 +k1,2742:9695188,28104555:168379 +k1,2742:13342219,28104555:168380 +k1,2742:14904549,28104555:168379 +k1,2742:16448530,28104555:168380 +k1,2742:17635994,28104555:168379 +k1,2742:18952565,28104555:168380 +k1,2742:20277654,28104555:168379 +k1,2742:23958107,28104555:168379 +k1,2742:24888015,28104555:168380 +k1,2742:25471207,28104555:168349 +k1,2742:26325748,28104555:168379 +k1,2742:27513213,28104555:168380 +k1,2742:29662745,28104555:168379 +k1,2742:32583029,28104555:0 +) +(1,2743:6764466,28969635:25818563,513147,134348 +k1,2742:8079779,28969635:273291 +k1,2742:10096983,28969635:273291 +k1,2742:12870473,28969635:273291 +k1,2742:14335209,28969635:273291 +k1,2742:16962552,28969635:273290 +k1,2742:18462022,28969635:273291 +k1,2742:20302934,28969635:273291 +k1,2742:20932085,28969635:273291 +k1,2742:26171039,28969635:273291 +k1,2742:27711796,28969635:273291 +k1,2742:28399855,28969635:273216 +k1,2742:29356031,28969635:273291 +k1,2742:32227169,28969635:273291 +k1,2742:32583029,28969635:0 +) +(1,2743:6764466,29834715:25818563,530548,126483 +k1,2742:9766621,29834715:263405 +k1,2742:12874945,29834715:263406 +k1,2742:13669847,29834715:263405 +k1,2742:15217759,29834715:263406 +k1,2742:16947860,29834715:263405 +k1,2742:17677226,29834715:263405 +k1,2742:19097342,29834715:263406 +k1,2742:21077135,29834715:263405 +k1,2742:21956579,29834715:263406 +k1,2742:22990687,29834715:263405 +k1,2742:24978280,29834715:263341 +k1,2742:27059654,29834715:263405 +k1,2742:30297739,29834715:263406 +h1,2742:30504833,29834715:0,0,0 +k1,2742:31563944,29834715:263405 +k1,2742:32583029,29834715:0 +) +(1,2743:6764466,30699795:25818563,505283,134348 +k1,2742:9601716,30699795:269549 +k1,2742:11062711,30699795:269550 +k1,2742:13586043,30699795:269549 +k1,2742:16003863,30699795:269550 +k1,2742:16889450,30699795:269549 +k1,2742:18910776,30699795:269549 +k1,2742:22352924,30699795:269550 +k1,2742:23614033,30699795:269549 +k1,2742:28200440,30699795:269550 +k1,2742:31189078,30699795:269549 +k1,2742:32583029,30699795:0 +) +(1,2743:6764466,31564875:25818563,505283,134348 +k1,2742:10211113,31564875:285190 +k1,2742:11983401,31564875:285276 +k1,2742:14474619,31564875:285276 +k1,2742:16645366,31564875:285276 +k1,2742:17345398,31564875:285189 +k1,2742:19123584,31564875:285276 +k1,2742:20475131,31564875:285276 +k1,2742:22808407,31564875:285276 +k1,2742:23779845,31564875:285276 +k1,2742:27039800,31564875:285276 +k1,2742:29190886,31564875:285276 +k1,2742:32583029,31564875:0 +) +(1,2743:6764466,32429955:25818563,513147,126483 +k1,2742:8195641,32429955:234488 +k1,2742:9765097,32429955:234488 +k1,2742:12611850,32429955:234488 +k1,2742:13377834,32429955:234487 +k1,2742:14263750,32429955:234488 +k1,2742:15590723,32429955:234488 +k1,2742:16181071,32429955:234488 +k1,2742:18013327,32429955:234488 +k1,2742:19473994,32429955:234488 +k1,2742:21617546,32429955:234488 +k1,2742:24179217,32429955:234488 +k1,2742:25072996,32429955:234487 +k1,2742:25663344,32429955:234488 +k1,2742:27522470,32429955:234488 +k1,2742:30884991,32429955:234488 +k1,2742:32583029,32429955:0 +) +(1,2743:6764466,33295035:25818563,513147,134348 +k1,2742:9229779,33295035:207598 +k1,2742:11598754,33295035:207598 +k1,2742:12489236,33295035:207597 +k1,2742:14913262,33295035:207598 +k1,2742:16347039,33295035:207598 +k1,2742:17867979,33295035:207598 +k1,2742:21437573,33295035:207597 +k1,2742:23034534,33295035:207598 +k1,2742:23893560,33295035:207598 +k1,2742:24848924,33295035:207598 +k1,2742:26468822,33295035:207597 +k1,2742:27362582,33295035:207598 +k1,2742:29066367,33295035:207598 +k1,2742:32583029,33295035:0 +) +(1,2743:6764466,34160115:25818563,505283,7863 +g1,2742:7646580,34160115 +g1,2742:11026927,34160115 +k1,2743:32583029,34160115:19993068 +g1,2743:32583029,34160115 +) +(1,2745:6764466,35025195:25818563,513147,134348 +h1,2744:6764466,35025195:983040,0,0 +k1,2744:8510157,35025195:275063 +k1,2744:10626857,35025195:275138 +k1,2744:13984154,35025195:275139 +k1,2744:17833627,35025195:275139 +k1,2744:19175037,35025195:275139 +k1,2744:20825776,35025195:275138 +k1,2744:22120000,35025195:275139 +k1,2744:25411106,35025195:275139 +k1,2744:26877690,35025195:275139 +k1,2744:30127507,35025195:275138 +k1,2744:31510860,35025195:275139 +k1,2744:32583029,35025195:0 +) +(1,2745:6764466,35890275:25818563,513147,126483 +g1,2744:8249511,35890275 +g1,2744:10003254,35890275 +g1,2744:11801561,35890275 +g1,2744:13192235,35890275 +g1,2744:16173467,35890275 +k1,2745:32583029,35890275:13725207 +g1,2745:32583029,35890275 +) +] +g1,2745:32583029,36016758 +) +h1,2745:6630773,36016758:0,0,0 +v1,2748:6630773,36881838:0,393216,0 +(1,2757:6630773,38412282:25952256,1923660,0 +g1,2757:6630773,38412282 +g1,2757:6237557,38412282 +r1,2762:6368629,38412282:131072,1923660,0 +g1,2757:6567858,38412282 +g1,2757:6764466,38412282 +[1,2757:6764466,38412282:25818563,1923660,0 +(1,2749:6764466,37190136:25818563,701514,196608 +(1,2748:6764466,37190136:0,701514,196608 +r1,2762:8010564,37190136:1246098,898122,196608 +k1,2748:6764466,37190136:-1246098 +) +(1,2748:6764466,37190136:1246098,701514,196608 +) +g1,2748:8209793,37190136 +g1,2748:8537473,37190136 +g1,2748:9933389,37190136 +g1,2748:11628805,37190136 +g1,2748:13696465,37190136 +g1,2748:16580704,37190136 +g1,2748:17546049,37190136 +g1,2748:20035106,37190136 +g1,2748:21628286,37190136 +g1,2748:23895831,37190136 +(1,2748:23895831,37190136:0,452978,115847 +r1,2762:26012656,37190136:2116825,568825,115847 +k1,2748:23895831,37190136:-2116825 +) +(1,2748:23895831,37190136:2116825,452978,115847 +k1,2748:23895831,37190136:3277 +h1,2748:26009379,37190136:0,411205,112570 +) +g1,2748:26385555,37190136 +(1,2748:26385555,37190136:0,452978,115847 +r1,2762:28502380,37190136:2116825,568825,115847 +k1,2748:26385555,37190136:-2116825 +) +(1,2748:26385555,37190136:2116825,452978,115847 +k1,2748:26385555,37190136:3277 +h1,2748:28499103,37190136:0,411205,112570 +) +g1,2748:28875279,37190136 +g1,2748:30265953,37190136 +g1,2748:31190010,37190136 +k1,2749:32583029,37190136:409979 +g1,2749:32583029,37190136 +) +v1,2751:6764466,37874991:0,393216,0 +(1,2755:6764466,38215674:25818563,733899,196608 +g1,2755:6764466,38215674 +g1,2755:6764466,38215674 +g1,2755:6567858,38215674 +(1,2755:6567858,38215674:0,733899,196608 +r1,2762:32779637,38215674:26211779,930507,196608 +k1,2755:6567857,38215674:-26211780 +) +(1,2755:6567858,38215674:26211779,733899,196608 +[1,2755:6764466,38215674:25818563,537291,0 +(1,2753:6764466,38102822:25818563,424439,112852 +(1,2752:6764466,38102822:0,0,0 +g1,2752:6764466,38102822 +g1,2752:6764466,38102822 +g1,2752:6436786,38102822 +(1,2752:6436786,38102822:0,0,0 +) +g1,2752:6764466,38102822 +) +k1,2753:6764466,38102822:0 +g1,2753:10747914,38102822 +g1,2753:11411822,38102822 +g1,2753:15063316,38102822 +g1,2753:15727224,38102822 +h1,2753:22366303,38102822:0,0,0 +k1,2753:32583029,38102822:10216726 +g1,2753:32583029,38102822 +) +] +) +g1,2755:32583029,38215674 +g1,2755:6764466,38215674 +g1,2755:6764466,38215674 +g1,2755:32583029,38215674 +g1,2755:32583029,38215674 +) +h1,2755:6764466,38412282:0,0,0 +] +g1,2757:32583029,38412282 +) +h1,2757:6630773,38412282:0,0,0 +(1,2759:6630773,41243442:25952256,32768,229376 +(1,2759:6630773,41243442:0,32768,229376 +(1,2759:6630773,41243442:5505024,32768,229376 +r1,2762:12135797,41243442:5505024,262144,229376 +) +k1,2759:6630773,41243442:-5505024 +) +(1,2759:6630773,41243442:25952256,32768,0 +r1,2762:32583029,41243442:25952256,32768,0 +) +) +(1,2759:6630773,42875294:25952256,606339,161218 +(1,2759:6630773,42875294:1974731,582746,14155 +g1,2759:6630773,42875294 +g1,2759:8605504,42875294 +) +g1,2759:11640345,42875294 +g1,2759:14463636,42875294 +g1,2759:16173339,42875294 +g1,2759:19540841,42875294 +k1,2759:32583029,42875294:10132389 +g1,2759:32583029,42875294 +) +(1,2762:6630773,44133590:25952256,505283,126483 +k1,2761:8420360,44133590:155774 +k1,2761:9192172,44133590:155774 +k1,2761:13384308,44133590:155774 +k1,2761:14531642,44133590:155774 +k1,2761:16974623,44133590:155774 +k1,2761:18998173,44133590:155774 +k1,2761:21665288,44133590:155775 +k1,2761:24005377,44133590:155774 +k1,2761:25152711,44133590:155774 +k1,2761:27176261,44133590:155774 +(1,2761:27176261,44133590:0,452978,122846 +r1,2762:29644798,44133590:2468537,575824,122846 +k1,2761:27176261,44133590:-2468537 +) +(1,2761:27176261,44133590:2468537,452978,122846 +k1,2761:27176261,44133590:3277 +h1,2761:29641521,44133590:0,411205,112570 +) +k1,2761:29800572,44133590:155774 +k1,2761:31966991,44133590:155774 +k1,2762:32583029,44133590:0 +) +(1,2762:6630773,44998670:25952256,505283,126483 +k1,2761:7422126,44998670:202840 +k1,2761:9182756,44998670:202839 +k1,2761:10489878,44998670:202840 +k1,2761:12167932,44998670:202839 +k1,2761:13746373,44998670:202840 +k1,2761:15121651,44998670:202839 +k1,2761:17335136,44998670:202840 +(1,2761:17335136,44998670:0,414482,115847 +r1,2762:18748537,44998670:1413401,530329,115847 +k1,2761:17335136,44998670:-1413401 +) +(1,2761:17335136,44998670:1413401,414482,115847 +k1,2761:17335136,44998670:3277 +h1,2761:18745260,44998670:0,411205,112570 +) +k1,2761:18951376,44998670:202839 +k1,2761:20345661,44998670:202840 +(1,2761:20345661,44998670:0,414482,115847 +r1,2762:22110774,44998670:1765113,530329,115847 +k1,2761:20345661,44998670:-1765113 +) +(1,2761:20345661,44998670:1765113,414482,115847 +k1,2761:20345661,44998670:3277 +h1,2761:22107497,44998670:0,411205,112570 ) +k1,2761:22487283,44998670:202839 +k1,2761:23306161,44998670:202840 +k1,2761:26175005,44998670:202839 +k1,2761:27029273,44998670:202840 +(1,2761:27029273,44998670:0,414482,115847 +r1,2762:27739251,44998670:709978,530329,115847 +k1,2761:27029273,44998670:-709978 ) -g1,4197:25918505,32928261 +(1,2761:27029273,44998670:709978,414482,115847 +k1,2761:27029273,44998670:3277 +h1,2761:27735974,44998670:0,411205,112570 ) +k1,2761:27942090,44998670:202839 +k1,2761:29418295,44998670:202840 +k1,2761:32583029,44998670:0 ) -g1,4197:25918505,32928261 -(1,4197:25918505,32928261:665744,673524,285028 -g1,4197:26384674,32928261 -k1,4197:26584249,32928261:199575 +] +(1,2762:32583029,45706769:0,0,0 +g1,2762:32583029,45706769 ) -g1,4197:26584249,32928261 -(1,4197:26584249,32928261:639530,673524,285028 -k1,4197:26783824,32928261:199575 -g1,4197:27223779,32928261 -(1,4197:27223779,32928261:0,655699,276639 -(1,4197:27223779,32928261:0,0,0 -(1,4197:27223779,32928261:0,0,0 -g1,4197:27223779,32928261 -g1,4197:27223779,32928261 -g1,4197:27223779,32928261 -g1,4197:27223779,32928261 -g1,4197:27223779,32928261 -(1,4197:27223779,32928261:0,0,0 -(1,4197:27223779,32928261:331874,388497,9436 -(1,4197:27223779,32928261:331874,388497,9436 ) -g1,4197:27555653,32928261 +] +(1,2762:6630773,47279633:25952256,0,0 +h1,2762:6630773,47279633:25952256,0,0 ) +] +(1,2762:4262630,4025873:0,0,0 +[1,2762:-473656,4025873:0,0,0 +(1,2762:-473656,-710413:0,0,0 +(1,2762:-473656,-710413:0,0,0 +g1,2762:-473656,-710413 ) -g1,4197:27223779,32928261 -g1,4197:27223779,32928261 +g1,2762:-473656,-710413 ) +] ) -g1,4197:27223779,32928261 +] +!26064 +}62 +Input:563:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:564:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:565:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:566:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:567:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:568:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:569:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:570:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:571:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:572:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:573:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:574:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:575:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:576:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:577:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:578:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:579:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:580:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1685 +{63 +[1,2832:4262630,47279633:28320399,43253760,0 +(1,2832:4262630,4025873:0,0,0 +[1,2832:-473656,4025873:0,0,0 +(1,2832:-473656,-710413:0,0,0 +(1,2832:-473656,-644877:0,0,0 +k1,2832:-473656,-644877:-65536 ) +(1,2832:-473656,4736287:0,0,0 +k1,2832:-473656,4736287:5209943 ) -g1,4197:27223779,32928261 -(1,4197:27223779,32928261:665744,673524,285028 -g1,4197:27689948,32928261 -k1,4197:27889523,32928261:199575 +g1,2832:-473656,-710413 ) -g1,4197:27889523,32928261 -(1,4197:27889523,32928261:639530,673524,285028 -k1,4197:28089098,32928261:199575 -g1,4197:28529053,32928261 -(1,4197:28529053,32928261:0,655699,276639 -(1,4197:28529053,32928261:0,0,0 -(1,4197:28529053,32928261:0,0,0 -g1,4197:28529053,32928261 -g1,4197:28529053,32928261 -g1,4197:28529053,32928261 -g1,4197:28529053,32928261 -g1,4197:28529053,32928261 -(1,4197:28529053,32928261:0,0,0 -(1,4197:28529053,32928261:331874,388497,9436 -(1,4197:28529053,32928261:331874,388497,9436 +] ) -g1,4197:28860927,32928261 +[1,2832:6630773,47279633:25952256,43253760,0 +[1,2832:6630773,4812305:25952256,786432,0 +(1,2832:6630773,4812305:25952256,505283,11795 +(1,2832:6630773,4812305:25952256,505283,11795 +g1,2832:3078558,4812305 +[1,2832:3078558,4812305:0,0,0 +(1,2832:3078558,2439708:0,1703936,0 +k1,2832:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,2832:2537886,2439708:1179648,16384,0 ) +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,2832:3078558,1915420:16384,1179648,0 ) -g1,4197:28529053,32928261 -g1,4197:28529053,32928261 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) +] ) -g1,4197:28529053,32928261 ) ) -g1,4197:28529053,32928261 -(1,4197:28529053,32928261:665744,673524,285028 -g1,4197:28995222,32928261 -k1,4197:29194797,32928261:199575 +] +[1,2832:3078558,4812305:0,0,0 +(1,2832:3078558,2439708:0,1703936,0 +g1,2832:29030814,2439708 +g1,2832:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,2832:36151628,1915420:16384,1179648,0 ) -g1,4197:29194797,32928261 -(1,4197:29194797,32928261:639530,673524,285028 -k1,4197:29353923,32928261:159126 -g1,4197:29834327,32928261 -(1,4197:29834327,32928261:0,655699,276639 -(1,4197:29834327,32928261:0,0,0 -(1,4197:29834327,32928261:0,0,0 -g1,4197:29834327,32928261 -g1,4197:29834327,32928261 -g1,4197:29834327,32928261 -g1,4197:29834327,32928261 -g1,4197:29834327,32928261 -(1,4197:29834327,32928261:0,0,0 -(1,4197:29834327,32928261:663749,388497,9436 -(1,4197:29834327,32928261:663749,388497,9436 +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) -g1,4197:30498076,32928261 +] ) +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,2832:37855564,2439708:1179648,16384,0 ) -g1,4197:29834327,32928261 -g1,4197:29834327,32928261 ) +k1,2832:3078556,2439708:-34777008 ) -g1,4197:29834327,32928261 +] +[1,2832:3078558,4812305:0,0,0 +(1,2832:3078558,49800853:0,16384,2228224 +k1,2832:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,2832:2537886,49800853:1179648,16384,0 ) +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,2832:3078558,51504789:16384,1179648,0 ) -g1,4197:29834327,32928261 -(1,4198:29834327,32928261:665744,673524,285028 -g1,4198:30340945,32928261 -k1,4198:30500071,32928261:159126 +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) -g1,4198:30500071,32928261 +] ) -(1,4198:17421117,34105500:13078954,798978,532510 -g1,4198:17421117,34105500 -(1,4198:17421117,34105500:665744,798978,532510 -g1,4198:17421117,34105500 -g1,4198:18086861,34105500 -(1,4198:18086861,34105500:0,798978,532510 -(1,4198:18086861,34105500:0,0,0 -(1,4198:18086861,34105500:0,0,0 -g1,4198:18086861,34105500 -g1,4198:18086861,34105500 -g1,4198:18086861,34105500 -g1,4198:18086861,34105500 -g1,4198:18086861,34105500 -(1,4198:18086861,34105500:0,0,0 -(1,4198:18086861,34105500:680526,466322,199855 -(1,4198:18086861,34105500:680526,466322,199855 -r1,4247:18767387,34105500:0,666177,199855 ) -g1,4198:18767387,34105500 ) +] +[1,2832:3078558,4812305:0,0,0 +(1,2832:3078558,49800853:0,16384,2228224 +g1,2832:29030814,49800853 +g1,2832:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,2832:36151628,51504789:16384,1179648,0 ) -g1,4198:18086861,34105500 -g1,4198:18086861,34105500 +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 +) +] +) +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,2832:37855564,49800853:1179648,16384,0 +) +) +k1,2832:3078556,49800853:-34777008 +) +] +g1,2832:6630773,4812305 +k1,2832:22348274,4812305:14920583 +g1,2832:23970945,4812305 +g1,2832:24793421,4812305 +g1,2832:27528893,4812305 +g1,2832:28938572,4812305 +) +) +] +[1,2832:6630773,45706769:25952256,40108032,0 +(1,2832:6630773,45706769:25952256,40108032,0 +(1,2832:6630773,45706769:0,0,0 +g1,2832:6630773,45706769 +) +[1,2832:6630773,45706769:25952256,40108032,0 +(1,2762:6630773,6254097:25952256,513147,134348 +k1,2761:9096085,6254097:235777 +k1,2761:11342506,6254097:235776 +(1,2761:11342506,6254097:0,414482,115847 +r1,2832:12755907,6254097:1413401,530329,115847 +k1,2761:11342506,6254097:-1413401 +) +(1,2761:11342506,6254097:1413401,414482,115847 +k1,2761:11342506,6254097:3277 +h1,2761:12752630,6254097:0,411205,112570 +) +k1,2761:12991684,6254097:235777 +k1,2761:14418906,6254097:235777 +(1,2761:14418906,6254097:0,414482,115847 +r1,2832:16184019,6254097:1765113,530329,115847 +k1,2761:14418906,6254097:-1765113 +) +(1,2761:14418906,6254097:1765113,414482,115847 +k1,2761:14418906,6254097:3277 +h1,2761:16180742,6254097:0,411205,112570 +) +k1,2761:16419795,6254097:235776 +k1,2761:18835955,6254097:235777 +k1,2761:20138003,6254097:235777 +k1,2761:21121546,6254097:235777 +k1,2761:24278262,6254097:235776 +k1,2761:25907990,6254097:235777 +k1,2761:27369946,6254097:235777 +k1,2761:29975504,6254097:235776 +k1,2761:31591469,6254097:235777 +k1,2761:32583029,6254097:0 +) +(1,2762:6630773,7119177:25952256,513147,134348 +k1,2761:8880976,7119177:181887 +k1,2761:10010515,7119177:181888 +k1,2761:11211487,7119177:181887 +k1,2761:12565814,7119177:181888 +k1,2761:16110353,7119177:181887 +k1,2761:17576746,7119177:181887 +k1,2761:18862916,7119177:181888 +k1,2761:19792569,7119177:181887 +k1,2761:22186296,7119177:181887 +k1,2761:24597719,7119177:181888 +k1,2761:26790251,7119177:181887 +k1,2761:27963699,7119177:181888 +k1,2761:30274851,7119177:181887 +k1,2761:32583029,7119177:0 +) +(1,2762:6630773,7984257:25952256,505283,126483 +k1,2761:7496832,7984257:179897 +k1,2761:8442846,7984257:179898 +k1,2761:10324713,7984257:179897 +k1,2761:12666644,7984257:179898 +k1,2761:14562929,7984257:179897 +k1,2761:15358864,7984257:179897 +k1,2761:15953585,7984257:179878 +k1,2761:17102105,7984257:179898 +k1,2761:19441414,7984257:179897 +k1,2761:20489664,7984257:179898 +k1,2761:22407576,7984257:179897 +k1,2761:23871979,7984257:179897 +k1,2761:25503499,7984257:179898 +k1,2761:27363739,7984257:179897 +k1,2761:28075134,7984257:179898 +k1,2761:29321302,7984257:179897 +k1,2761:32583029,7984257:0 +) +(1,2762:6630773,8849337:25952256,513147,126483 +g1,2761:7489294,8849337 +k1,2762:32583029,8849337:22460498 +g1,2762:32583029,8849337 +) +(1,2764:6630773,9714417:25952256,513147,134348 +h1,2763:6630773,9714417:983040,0,0 +k1,2763:10071085,9714417:227737 +k1,2763:12309468,9714417:227738 +k1,2763:13528765,9714417:227737 +k1,2763:15269729,9714417:227738 +k1,2763:17665397,9714417:227737 +k1,2763:18544562,9714417:227737 +k1,2763:20280283,9714417:227738 +k1,2763:22135279,9714417:227737 +k1,2763:23022309,9714417:227738 +k1,2763:25271832,9714417:227737 +k1,2763:29035893,9714417:227738 +k1,2763:30409855,9714417:227737 +k1,2763:32583029,9714417:0 +) +(1,2764:6630773,10579497:25952256,513147,134348 +k1,2763:8339296,10579497:140902 +k1,2763:12738072,10579497:140902 +k1,2763:14070420,10579497:140903 +k1,2763:16622392,10579497:140902 +k1,2763:17572664,10579497:140902 +k1,2763:19526292,10579497:140902 +k1,2763:20295029,10579497:140902 +k1,2763:24702326,10579497:140903 +k1,2763:27354568,10579497:140902 +k1,2763:29822653,10579497:140902 +k1,2763:32583029,10579497:0 +) +(1,2764:6630773,11444577:25952256,513147,134348 +k1,2763:7880709,11444577:230851 +k1,2763:9697530,11444577:230850 +k1,2763:10587673,11444577:230851 +k1,2763:11837608,11444577:230850 +k1,2763:13577098,11444577:230851 +k1,2763:15321174,11444577:230850 +k1,2763:16203453,11444577:230851 +k1,2763:19146183,11444577:230850 +k1,2763:22048281,11444577:230851 +k1,2763:24348758,11444577:230850 +k1,2763:26763924,11444577:230851 +k1,2763:29506114,11444577:230850 +k1,2763:32583029,11444577:0 +) +(1,2764:6630773,12309657:25952256,505283,134348 +k1,2763:8026041,12309657:249043 +k1,2763:9758115,12309657:248994 +k1,2763:11198603,12309657:249043 +k1,2763:12401800,12309657:248993 +k1,2763:14003507,12309657:249044 +k1,2763:14938712,12309657:249043 +k1,2763:18160468,12309657:249043 +k1,2763:20479139,12309657:249044 +k1,2763:22738827,12309657:249043 +k1,2763:24179315,12309657:249043 +k1,2763:26439004,12309657:249044 +k1,2763:27043907,12309657:249043 +k1,2763:29362577,12309657:249043 +k1,2763:31291964,12309657:249044 +k1,2763:32227169,12309657:249043 +k1,2763:32583029,12309657:0 +) +(1,2764:6630773,13174737:25952256,505283,7863 +k1,2764:32583029,13174737:24109384 +g1,2764:32583029,13174737 +) +(1,2766:6630773,14039817:25952256,513147,126483 +h1,2765:6630773,14039817:983040,0,0 +k1,2765:8472883,14039817:231235 +k1,2765:9118930,14039817:231204 +k1,2765:11004949,14039817:231235 +k1,2765:12227744,14039817:231235 +k1,2765:13631419,14039817:231236 +k1,2765:16988721,14039817:231235 +k1,2765:17879248,14039817:231235 +k1,2765:20621824,14039817:231236 +k1,2765:24103645,14039817:231235 +k1,2765:27671973,14039817:231235 +k1,2765:29094654,14039817:231236 +k1,2765:30392160,14039817:231235 +k1,2766:32583029,14039817:0 +) +(1,2766:6630773,14904897:25952256,513147,134348 +k1,2765:8359315,14904897:195655 +k1,2765:11992988,14904897:195654 +k1,2765:15265558,14904897:195655 +k1,2765:17509213,14904897:195655 +k1,2765:19774495,14904897:195655 +k1,2765:22278327,14904897:195654 +k1,2765:23133274,14904897:195655 +k1,2765:24460736,14904897:195655 +k1,2765:26669657,14904897:195655 +k1,2765:27551473,14904897:195654 +k1,2765:30893511,14904897:195655 +k1,2765:32583029,14904897:0 +) +(1,2766:6630773,15769977:25952256,513147,134348 +k1,2765:8069894,15769977:214908 +k1,2765:11621894,15769977:214907 +k1,2765:13323814,15769977:214908 +k1,2765:15586721,15769977:214907 +k1,2765:17177230,15769977:214908 +k1,2765:19461765,15769977:214908 +k1,2765:21984850,15769977:214907 +k1,2765:22859050,15769977:214908 +k1,2765:25087224,15769977:214908 +k1,2765:26458841,15769977:214907 +k1,2765:27359911,15769977:214908 +k1,2765:30721201,15769977:214907 +k1,2765:31563944,15769977:214908 +k1,2765:32583029,15769977:0 +) +(1,2766:6630773,16635057:25952256,513147,134348 +k1,2765:8809209,16635057:207768 +k1,2765:10885407,16635057:207767 +k1,2765:11961527,16635057:207768 +k1,2765:13261780,16635057:207768 +k1,2765:18243845,16635057:207767 +k1,2765:21528528,16635057:207768 +k1,2765:23130246,16635057:207767 +k1,2765:24510453,16635057:207768 +(1,2765:24510453,16635057:0,452978,122846 +r1,2832:26978990,16635057:2468537,575824,122846 +k1,2765:24510453,16635057:-2468537 +) +(1,2765:24510453,16635057:2468537,452978,122846 +k1,2765:24510453,16635057:3277 +h1,2765:26975713,16635057:0,411205,112570 +) +k1,2765:27186758,16635057:207768 +k1,2765:29702703,16635057:207767 +k1,2765:30569763,16635057:207768 +k1,2765:32583029,16635057:0 +) +(1,2766:6630773,17500137:25952256,505283,126483 +g1,2765:8160383,17500137 +(1,2765:8160383,17500137:0,414482,115847 +r1,2832:8518649,17500137:358266,530329,115847 +k1,2765:8160383,17500137:-358266 +) +(1,2765:8160383,17500137:358266,414482,115847 +k1,2765:8160383,17500137:3277 +h1,2765:8515372,17500137:0,411205,112570 +) +g1,2765:8717878,17500137 +g1,2765:10108552,17500137 +(1,2765:10108552,17500137:0,452978,115847 +r1,2832:10466818,17500137:358266,568825,115847 +k1,2765:10108552,17500137:-358266 +) +(1,2765:10108552,17500137:358266,452978,115847 +k1,2765:10108552,17500137:3277 +h1,2765:10463541,17500137:0,411205,112570 +) +g1,2765:10839717,17500137 +g1,2765:11725108,17500137 +k1,2766:32583029,17500137:17711538 +g1,2766:32583029,17500137 +) +v1,2768:6630773,18184992:0,393216,0 +(1,2806:6630773,28136181:25952256,10344405,196608 +g1,2806:6630773,28136181 +g1,2806:6630773,28136181 +g1,2806:6434165,28136181 +(1,2806:6434165,28136181:0,10344405,196608 +r1,2832:32779637,28136181:26345472,10541013,196608 +k1,2806:6434165,28136181:-26345472 +) +(1,2806:6434165,28136181:26345472,10344405,196608 +[1,2806:6630773,28136181:25952256,10147797,0 +(1,2770:6630773,18396307:25952256,407923,8257 +(1,2769:6630773,18396307:0,0,0 +g1,2769:6630773,18396307 +g1,2769:6630773,18396307 +g1,2769:6303093,18396307 +(1,2769:6303093,18396307:0,0,0 +) +g1,2769:6630773,18396307 +) +g1,2770:8290543,18396307 +g1,2770:9286405,18396307 +h1,2770:10614221,18396307:0,0,0 +k1,2770:32583029,18396307:21968808 +g1,2770:32583029,18396307 +) +(1,2771:6630773,19081162:25952256,424439,79822 +h1,2771:6630773,19081162:0,0,0 +k1,2771:6630773,19081162:0 +h1,2771:9950313,19081162:0,0,0 +k1,2771:32583029,19081162:22632716 +g1,2771:32583029,19081162 +) +(1,2775:6630773,19897089:25952256,424439,112852 +(1,2773:6630773,19897089:0,0,0 +g1,2773:6630773,19897089 +g1,2773:6630773,19897089 +g1,2773:6303093,19897089 +(1,2773:6303093,19897089:0,0,0 +) +g1,2773:6630773,19897089 +) +g1,2775:7626635,19897089 +g1,2775:8954451,19897089 +h1,2775:11942036,19897089:0,0,0 +k1,2775:32583028,19897089:20640992 +g1,2775:32583028,19897089 +) +(1,2777:6630773,20713016:25952256,407923,6605 +(1,2776:6630773,20713016:0,0,0 +g1,2776:6630773,20713016 +g1,2776:6630773,20713016 +g1,2776:6303093,20713016 +(1,2776:6303093,20713016:0,0,0 +) +g1,2776:6630773,20713016 +) +h1,2777:7958589,20713016:0,0,0 +k1,2777:32583029,20713016:24624440 +g1,2777:32583029,20713016 +) +(1,2781:6630773,21528943:25952256,424439,79822 +(1,2779:6630773,21528943:0,0,0 +g1,2779:6630773,21528943 +g1,2779:6630773,21528943 +g1,2779:6303093,21528943 +(1,2779:6303093,21528943:0,0,0 +) +g1,2779:6630773,21528943 +) +g1,2781:7626635,21528943 +g1,2781:8954451,21528943 +h1,2781:10282267,21528943:0,0,0 +k1,2781:32583029,21528943:22300762 +g1,2781:32583029,21528943 +) +(1,2783:6630773,22344870:25952256,424439,112852 +(1,2782:6630773,22344870:0,0,0 +g1,2782:6630773,22344870 +g1,2782:6630773,22344870 +g1,2782:6303093,22344870 +(1,2782:6303093,22344870:0,0,0 +) +g1,2782:6630773,22344870 +) +g1,2783:8622497,22344870 +g1,2783:9286405,22344870 +k1,2783:9286405,22344870:0 +h1,2783:11942036,22344870:0,0,0 +k1,2783:32583028,22344870:20640992 +g1,2783:32583028,22344870 +) +(1,2787:6630773,23160797:25952256,424439,79822 +(1,2785:6630773,23160797:0,0,0 +g1,2785:6630773,23160797 +g1,2785:6630773,23160797 +g1,2785:6303093,23160797 +(1,2785:6303093,23160797:0,0,0 +) +g1,2785:6630773,23160797 +) +g1,2787:7626635,23160797 +g1,2787:8954451,23160797 +h1,2787:10614221,23160797:0,0,0 +k1,2787:32583029,23160797:21968808 +g1,2787:32583029,23160797 +) +(1,2789:6630773,23976724:25952256,424439,112852 +(1,2788:6630773,23976724:0,0,0 +g1,2788:6630773,23976724 +g1,2788:6630773,23976724 +g1,2788:6303093,23976724 +(1,2788:6303093,23976724:0,0,0 +) +g1,2788:6630773,23976724 +) +g1,2789:8290543,23976724 +g1,2789:9286405,23976724 +g1,2789:11278129,23976724 +g1,2789:11942037,23976724 +g1,2789:14597669,23976724 +k1,2789:14597669,23976724:36884 +h1,2789:15630415,23976724:0,0,0 +k1,2789:32583029,23976724:16952614 +g1,2789:32583029,23976724 +) +(1,2793:6630773,24792651:25952256,424439,79822 +(1,2791:6630773,24792651:0,0,0 +g1,2791:6630773,24792651 +g1,2791:6630773,24792651 +g1,2791:6303093,24792651 +(1,2791:6303093,24792651:0,0,0 +) +g1,2791:6630773,24792651 +) +g1,2793:7626635,24792651 +g1,2793:8954451,24792651 +h1,2793:10614221,24792651:0,0,0 +k1,2793:32583029,24792651:21968808 +g1,2793:32583029,24792651 +) +(1,2795:6630773,25608578:25952256,424439,112852 +(1,2794:6630773,25608578:0,0,0 +g1,2794:6630773,25608578 +g1,2794:6630773,25608578 +g1,2794:6303093,25608578 +(1,2794:6303093,25608578:0,0,0 +) +g1,2794:6630773,25608578 +) +g1,2795:8290543,25608578 +g1,2795:9286405,25608578 +g1,2795:11278129,25608578 +g1,2795:11942037,25608578 +g1,2795:14597669,25608578 +k1,2795:14597669,25608578:1652 +h1,2795:15263229,25608578:0,0,0 +k1,2795:32583029,25608578:17319800 +g1,2795:32583029,25608578 +) +(1,2799:6630773,26424505:25952256,424439,79822 +(1,2797:6630773,26424505:0,0,0 +g1,2797:6630773,26424505 +g1,2797:6630773,26424505 +g1,2797:6303093,26424505 +(1,2797:6303093,26424505:0,0,0 +) +g1,2797:6630773,26424505 +) +g1,2799:7626635,26424505 +g1,2799:8954451,26424505 +h1,2799:10282267,26424505:0,0,0 +k1,2799:32583029,26424505:22300762 +g1,2799:32583029,26424505 +) +(1,2801:6630773,27240432:25952256,424439,86428 +(1,2800:6630773,27240432:0,0,0 +g1,2800:6630773,27240432 +g1,2800:6630773,27240432 +g1,2800:6303093,27240432 +(1,2800:6303093,27240432:0,0,0 +) +g1,2800:6630773,27240432 +) +k1,2801:6630773,27240432:0 +g1,2801:9950313,27240432 +g1,2801:12273991,27240432 +g1,2801:12937899,27240432 +g1,2801:16257438,27240432 +k1,2801:16257438,27240432:1652 +h1,2801:16922998,27240432:0,0,0 +k1,2801:32583029,27240432:15660031 +g1,2801:32583029,27240432 +) +(1,2805:6630773,28056359:25952256,424439,79822 +(1,2803:6630773,28056359:0,0,0 +g1,2803:6630773,28056359 +g1,2803:6630773,28056359 +g1,2803:6303093,28056359 +(1,2803:6303093,28056359:0,0,0 +) +g1,2803:6630773,28056359 +) +g1,2805:7626635,28056359 +g1,2805:8954451,28056359 +h1,2805:10282267,28056359:0,0,0 +k1,2805:32583029,28056359:22300762 +g1,2805:32583029,28056359 +) +] +) +g1,2806:32583029,28136181 +g1,2806:6630773,28136181 +g1,2806:6630773,28136181 +g1,2806:32583029,28136181 +g1,2806:32583029,28136181 +) +h1,2806:6630773,28332789:0,0,0 +(1,2811:6630773,29197869:25952256,513147,134348 +h1,2810:6630773,29197869:983040,0,0 +k1,2810:9008419,29197869:197919 +k1,2810:12663361,29197869:197918 +k1,2810:13520572,29197869:197919 +k1,2810:14890930,29197869:197919 +k1,2810:16848490,29197869:197918 +k1,2810:17705701,29197869:197919 +k1,2810:19973247,29197869:197919 +k1,2810:23248080,29197869:197918 +k1,2810:24550281,29197869:197919 +k1,2810:25495966,29197869:197919 +k1,2810:29693546,29197869:197918 +k1,2810:30839116,29197869:197919 +k1,2810:32583029,29197869:0 +) +(1,2811:6630773,30062949:25952256,513147,134348 +k1,2810:8200062,30062949:286094 +k1,2810:9137585,30062949:286095 +k1,2810:10012192,30062949:286094 +k1,2810:11849524,30062949:286095 +k1,2810:12794910,30062949:286094 +k1,2810:16986295,30062949:286095 +k1,2810:19342016,30062949:286094 +k1,2810:22705026,30062949:286095 +k1,2810:25214101,30062949:286094 +k1,2810:29002440,30062949:286095 +k1,2810:30381019,30062949:286094 +k1,2810:32583029,30062949:0 +) +(1,2811:6630773,30928029:25952256,505283,134348 +k1,2810:8983734,30928029:268916 +k1,2810:10444095,30928029:268916 +k1,2810:11805496,30928029:268916 +k1,2810:14276422,30928029:268916 +k1,2810:17360765,30928029:268916 +k1,2810:18826368,30928029:268916 +k1,2810:22432377,30928029:268916 +k1,2810:25778208,30928029:268916 +k1,2810:27522339,30928029:268916 +k1,2810:32583029,30928029:0 +) +(1,2811:6630773,31793109:25952256,505283,126483 +k1,2810:9061553,31793109:188793 +(1,2810:9061553,31793109:0,435480,115847 +r1,2832:9419819,31793109:358266,551327,115847 +k1,2810:9061553,31793109:-358266 +) +(1,2810:9061553,31793109:358266,435480,115847 +k1,2810:9061553,31793109:3277 +h1,2810:9416542,31793109:0,411205,112570 +) +k1,2810:9608613,31793109:188794 +k1,2810:10988851,31793109:188793 +(1,2810:10988851,31793109:0,452978,115847 +r1,2832:11347117,31793109:358266,568825,115847 +k1,2810:10988851,31793109:-358266 +) +(1,2810:10988851,31793109:358266,452978,115847 +k1,2810:10988851,31793109:3277 +h1,2810:11343840,31793109:0,411205,112570 +) +k1,2810:11535910,31793109:188793 +k1,2810:14700039,31793109:188794 +k1,2810:15540260,31793109:188793 +k1,2810:19066146,31793109:188793 +k1,2810:22531084,31793109:188793 +k1,2810:25796793,31793109:188794 +k1,2810:27131811,31793109:188793 +(1,2810:27131811,31793109:0,414482,115847 +r1,2832:27490077,31793109:358266,530329,115847 +k1,2810:27131811,31793109:-358266 +) +(1,2810:27131811,31793109:358266,414482,115847 +k1,2810:27131811,31793109:3277 +h1,2810:27486800,31793109:0,411205,112570 +) +k1,2810:28059634,31793109:188793 +k1,2810:29937946,31793109:188794 +k1,2810:31145824,31793109:188793 +k1,2811:32583029,31793109:0 +) +(1,2811:6630773,32658189:25952256,505283,126483 +k1,2810:10136639,32658189:168773 +k1,2810:11792423,32658189:168772 +k1,2810:13436411,32658189:168773 +k1,2810:18975858,32658189:168772 +k1,2810:21386618,32658189:168773 +(1,2810:21386618,32658189:0,435480,115847 +r1,2832:22096596,32658189:709978,551327,115847 +k1,2810:21386618,32658189:-709978 +) +(1,2810:21386618,32658189:709978,435480,115847 +k1,2810:21386618,32658189:3277 +h1,2810:22093319,32658189:0,411205,112570 +) +k1,2810:22265368,32658189:168772 +k1,2810:23625586,32658189:168773 +(1,2810:23625586,32658189:0,452978,115847 +r1,2832:24335564,32658189:709978,568825,115847 +k1,2810:23625586,32658189:-709978 +) +(1,2810:23625586,32658189:709978,452978,115847 +k1,2810:23625586,32658189:3277 +h1,2810:24332287,32658189:0,411205,112570 +) +k1,2810:24678007,32658189:168773 +k1,2810:26679166,32658189:168772 +k1,2810:27379436,32658189:168773 +k1,2810:28923809,32658189:168772 +k1,2810:30249292,32658189:168773 +k1,2810:32583029,32658189:0 +) +(1,2811:6630773,33523269:25952256,513147,134348 +k1,2810:7532563,33523269:242498 +k1,2810:8794145,33523269:242497 +k1,2810:11796364,33523269:242498 +k1,2810:14785475,33523269:242497 +(1,2810:14785475,33523269:0,424981,115847 +r1,2832:15143741,33523269:358266,540828,115847 +k1,2810:14785475,33523269:-358266 +) +(1,2810:14785475,33523269:358266,424981,115847 +k1,2810:14785475,33523269:3277 +h1,2810:15140464,33523269:0,411205,112570 +) +k1,2810:15386239,33523269:242498 +k1,2810:16913242,33523269:242497 +k1,2810:17687237,33523269:242498 +k1,2810:21440498,33523269:242497 +k1,2810:22310831,33523269:242498 +k1,2810:24541690,33523269:242497 +k1,2810:27448227,33523269:242498 +k1,2810:28357880,33523269:242497 +k1,2810:29188891,33523269:242498 +k1,2810:30202091,33523269:242497 +k1,2810:32051532,33523269:242498 +k1,2810:32583029,33523269:0 +) +(1,2811:6630773,34388349:25952256,505283,134348 +k1,2810:9774452,34388349:245022 +k1,2810:11717512,34388349:245022 +k1,2810:12318395,34388349:245023 +k1,2810:17337715,34388349:245022 +k1,2810:20329351,34388349:245022 +k1,2810:21105870,34388349:245022 +k1,2810:22864119,34388349:245023 +k1,2810:24503092,34388349:245022 +k1,2810:25103974,34388349:245022 +k1,2810:27326873,34388349:245022 +k1,2810:28965847,34388349:245023 +k1,2810:31224135,34388349:245022 +$1,2810:31224135,34388349 +k1,2810:32010900,34388349:265754 +$1,2810:32409359,34388349 +k1,2810:32583029,34388349:0 +) +(1,2811:6630773,35253429:25952256,505283,126483 +k1,2810:8780085,35253429:263841 +k1,2810:10762281,35253429:263842 +k1,2810:13458818,35253429:263841 +k1,2810:16730762,35253429:263841 +k1,2810:17622439,35253429:263842 +k1,2810:19578420,35253429:263841 +k1,2810:23172801,35253429:263841 +k1,2810:26773736,35253429:263842 +(1,2810:26773736,35253429:0,452978,122846 +r1,2832:29242273,35253429:2468537,575824,122846 +k1,2810:26773736,35253429:-2468537 +) +(1,2810:26773736,35253429:2468537,452978,122846 +k1,2810:26773736,35253429:3277 +h1,2810:29238996,35253429:0,411205,112570 +) +k1,2810:29506114,35253429:263841 +k1,2810:32583029,35253429:0 +) +(1,2811:6630773,36118509:25952256,505283,126483 +k1,2810:7991049,36118509:255994 +k1,2810:10545390,36118509:255993 +k1,2810:15575682,36118509:255994 +k1,2810:17492357,36118509:255993 +k1,2810:18820520,36118509:255994 +k1,2810:19534610,36118509:255993 +k1,2810:20322101,36118509:255994 +k1,2810:23787392,36118509:255993 +k1,2810:24694814,36118509:255994 +k1,2810:26043292,36118509:255993 +k1,2810:27318371,36118509:255994 +k1,2810:29061376,36118509:255993 +k1,2810:30601876,36118509:255994 +k1,2810:32583029,36118509:0 +) +(1,2811:6630773,36983589:25952256,513147,102891 +k1,2810:7887300,36983589:237442 +k1,2810:11027332,36983589:237442 +k1,2810:11924066,36983589:237442 +k1,2810:13180592,36983589:237441 +k1,2810:15087891,36983589:237442 +k1,2810:16011495,36983589:237442 +k1,2810:17452178,36983589:237442 +k1,2810:20090859,36983589:237442 +k1,2810:22901244,36983589:237442 +k1,2810:25290887,36983589:237441 +k1,2810:26475980,36983589:237442 +k1,2810:29721525,36983589:237442 +k1,2810:31563944,36983589:237442 +k1,2810:32583029,36983589:0 +) +(1,2811:6630773,37848669:25952256,505283,134348 +k1,2810:10191225,37848669:134230 +k1,2810:10856951,37848669:134229 +k1,2810:13033283,37848669:134230 +k1,2810:14902906,37848669:134230 +k1,2810:16056220,37848669:134229 +k1,2810:17792150,37848669:134230 +k1,2810:21677004,37848669:134229 +k1,2810:24888149,37848669:134230 +k1,2810:26308195,37848669:134230 +k1,2810:30081638,37848669:134229 +k1,2810:30867296,37848669:134230 +k1,2810:32583029,37848669:0 +) +(1,2811:6630773,38713749:25952256,505283,7863 +g1,2810:8326189,38713749 +g1,2810:10395816,38713749 +g1,2810:11246473,38713749 +k1,2811:32583028,38713749:19750584 +g1,2811:32583028,38713749 +) +v1,2813:6630773,39398604:0,393216,0 +(1,2826:6630773,42154038:25952256,3148650,196608 +g1,2826:6630773,42154038 +g1,2826:6630773,42154038 +g1,2826:6434165,42154038 +(1,2826:6434165,42154038:0,3148650,196608 +r1,2832:32779637,42154038:26345472,3345258,196608 +k1,2826:6434165,42154038:-26345472 +) +(1,2826:6434165,42154038:26345472,3148650,196608 +[1,2826:6630773,42154038:25952256,2952042,0 +(1,2815:6630773,39626435:25952256,424439,86428 +(1,2814:6630773,39626435:0,0,0 +g1,2814:6630773,39626435 +g1,2814:6630773,39626435 +g1,2814:6303093,39626435 +(1,2814:6303093,39626435:0,0,0 +) +g1,2814:6630773,39626435 +) +k1,2815:6630773,39626435:0 +g1,2815:9286405,39626435 +g1,2815:11610083,39626435 +g1,2815:12273991,39626435 +g1,2815:16589393,39626435 +g1,2815:17253301,39626435 +g1,2815:20904794,39626435 +k1,2815:20904794,39626435:36884 +h1,2815:21937540,39626435:0,0,0 +k1,2815:32583029,39626435:10645489 +g1,2815:32583029,39626435 +) +(1,2819:6630773,40442362:25952256,424439,79822 +(1,2817:6630773,40442362:0,0,0 +g1,2817:6630773,40442362 +g1,2817:6630773,40442362 +g1,2817:6303093,40442362 +(1,2817:6303093,40442362:0,0,0 +) +g1,2817:6630773,40442362 +) +g1,2819:7626635,40442362 +g1,2819:8954451,40442362 +g1,2819:9286405,40442362 +g1,2819:10946175,40442362 +h1,2819:12605945,40442362:0,0,0 +k1,2819:32583029,40442362:19977084 +g1,2819:32583029,40442362 +) +(1,2821:6630773,41258289:25952256,424439,86428 +(1,2820:6630773,41258289:0,0,0 +g1,2820:6630773,41258289 +g1,2820:6630773,41258289 +g1,2820:6303093,41258289 +(1,2820:6303093,41258289:0,0,0 +) +g1,2820:6630773,41258289 +) +k1,2821:6630773,41258289:0 +g1,2821:9286405,41258289 +g1,2821:11610083,41258289 +g1,2821:12273991,41258289 +g1,2821:16589393,41258289 +g1,2821:17253301,41258289 +g1,2821:20904794,41258289 +k1,2821:20904794,41258289:1652 +h1,2821:21570354,41258289:0,0,0 +k1,2821:32583029,41258289:11012675 +g1,2821:32583029,41258289 +) +(1,2825:6630773,42074216:25952256,424439,79822 +(1,2823:6630773,42074216:0,0,0 +g1,2823:6630773,42074216 +g1,2823:6630773,42074216 +g1,2823:6303093,42074216 +(1,2823:6303093,42074216:0,0,0 +) +g1,2823:6630773,42074216 +) +g1,2825:7626635,42074216 +g1,2825:8954451,42074216 +g1,2825:10614221,42074216 +h1,2825:11942037,42074216:0,0,0 +k1,2825:32583029,42074216:20640992 +g1,2825:32583029,42074216 +) +] +) +g1,2826:32583029,42154038 +g1,2826:6630773,42154038 +g1,2826:6630773,42154038 +g1,2826:32583029,42154038 +g1,2826:32583029,42154038 +) +h1,2826:6630773,42350646:0,0,0 +(1,2830:6630773,43215726:25952256,505283,134348 +h1,2829:6630773,43215726:983040,0,0 +k1,2829:10890029,43215726:156047 +(1,2829:10890029,43215726:0,452978,115847 +r1,2832:12655142,43215726:1765113,568825,115847 +k1,2829:10890029,43215726:-1765113 +) +(1,2829:10890029,43215726:1765113,452978,115847 +k1,2829:10890029,43215726:3277 +h1,2829:12651865,43215726:0,411205,112570 +) +k1,2829:12811188,43215726:156046 +k1,2829:14158680,43215726:156047 +(1,2829:14158680,43215726:0,452978,115847 +r1,2832:15923793,43215726:1765113,568825,115847 +k1,2829:14158680,43215726:-1765113 +) +(1,2829:14158680,43215726:1765113,452978,115847 +k1,2829:14158680,43215726:3277 +h1,2829:15920516,43215726:0,411205,112570 +) +k1,2829:16079840,43215726:156047 +k1,2829:17588549,43215726:156046 +k1,2829:19164761,43215726:156047 +k1,2829:20003693,43215726:156047 +k1,2829:21809936,43215726:156046 +k1,2829:24035610,43215726:156047 +k1,2829:26499835,43215726:156047 +k1,2829:27342043,43215726:156046 +k1,2829:29006729,43215726:156047 +k1,2829:32583029,43215726:0 +) +(1,2830:6630773,44080806:25952256,505283,134348 +k1,2829:8050884,44080806:228666 +k1,2829:10290195,44080806:228666 +k1,2829:10874721,44080806:228666 +k1,2829:12976406,44080806:228666 +k1,2829:15274699,44080806:228666 +k1,2829:17183708,44080806:228666 +k1,2829:22223371,44080806:228665 +k1,2829:23471122,44080806:228666 +k1,2829:25769415,44080806:228666 +k1,2829:28008726,44080806:228666 +k1,2829:28853430,44080806:228666 +k1,2829:30101181,44080806:228666 +k1,2829:32583029,44080806:0 +) +] +(1,2832:32583029,45706769:0,0,0 +g1,2832:32583029,45706769 +) +) +] +(1,2832:6630773,47279633:25952256,0,0 +h1,2832:6630773,47279633:25952256,0,0 +) +] +(1,2832:4262630,4025873:0,0,0 +[1,2832:-473656,4025873:0,0,0 +(1,2832:-473656,-710413:0,0,0 +(1,2832:-473656,-710413:0,0,0 +g1,2832:-473656,-710413 +) +g1,2832:-473656,-710413 +) +] +) +] +!26921 +}63 +Input:581:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:582:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!197 +{64 +[1,2957:4262630,47279633:28320399,43253760,0 +(1,2957:4262630,4025873:0,0,0 +[1,2957:-473656,4025873:0,0,0 +(1,2957:-473656,-710413:0,0,0 +(1,2957:-473656,-644877:0,0,0 +k1,2957:-473656,-644877:-65536 ) +(1,2957:-473656,4736287:0,0,0 +k1,2957:-473656,4736287:5209943 ) -g1,4198:18086861,34105500 +g1,2957:-473656,-710413 ) +] ) -g1,4198:18086861,34105500 -(1,4198:18086861,34105500:665744,798978,532510 -g1,4198:18752605,34105500 -g1,4198:18752605,34105500 +[1,2957:6630773,47279633:25952256,43253760,0 +[1,2957:6630773,4812305:25952256,786432,0 +(1,2957:6630773,4812305:25952256,505283,134348 +(1,2957:6630773,4812305:25952256,505283,134348 +g1,2957:3078558,4812305 +[1,2957:3078558,4812305:0,0,0 +(1,2957:3078558,2439708:0,1703936,0 +k1,2957:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,2957:2537886,2439708:1179648,16384,0 ) -g1,4198:18752605,34105500 -(1,4198:18752605,34105500:639530,798978,532510 -g1,4198:18752605,34105500 -g1,4198:19392135,34105500 -(1,4198:19392135,34105500:0,798978,532510 -(1,4198:19392135,34105500:0,0,0 -(1,4198:19392135,34105500:0,0,0 -g1,4198:19392135,34105500 -g1,4198:19392135,34105500 -g1,4198:19392135,34105500 -g1,4198:19392135,34105500 -g1,4198:19392135,34105500 -(1,4198:19392135,34105500:0,0,0 -(1,4198:19392135,34105500:721420,466322,199855 -(1,4198:19392135,34105500:721420,466322,199855 -r1,4247:20113555,34105500:0,666177,199855 +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,2957:3078558,1915420:16384,1179648,0 ) -g1,4198:20113555,34105500 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) +] ) -g1,4198:19392135,34105500 -g1,4198:19392135,34105500 ) ) -g1,4198:19392135,34105500 +] +[1,2957:3078558,4812305:0,0,0 +(1,2957:3078558,2439708:0,1703936,0 +g1,2957:29030814,2439708 +g1,2957:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,2957:36151628,1915420:16384,1179648,0 ) +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) -g1,4198:19392135,34105500 -(1,4198:19392135,34105500:665744,798978,532510 -g1,4198:20057879,34105500 -g1,4198:20057879,34105500 +] ) -g1,4198:20057879,34105500 -(1,4198:20057879,34105500:639530,798978,532510 -g1,4198:20057879,34105500 -g1,4198:20697409,34105500 -(1,4198:20697409,34105500:0,798978,532510 -(1,4198:20697409,34105500:0,0,0 -(1,4198:20697409,34105500:0,0,0 -g1,4198:20697409,34105500 -g1,4198:20697409,34105500 -g1,4198:20697409,34105500 -g1,4198:20697409,34105500 -g1,4198:20697409,34105500 -(1,4198:20697409,34105500:0,0,0 -(1,4198:20697409,34105500:659554,466322,199855 -(1,4198:20697409,34105500:659554,466322,199855 -r1,4247:21356963,34105500:0,666177,199855 +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,2957:37855564,2439708:1179648,16384,0 ) -g1,4198:21356963,34105500 ) +k1,2957:3078556,2439708:-34777008 ) -g1,4198:20697409,34105500 -g1,4198:20697409,34105500 +] +[1,2957:3078558,4812305:0,0,0 +(1,2957:3078558,49800853:0,16384,2228224 +k1,2957:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,2957:2537886,49800853:1179648,16384,0 ) +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,2957:3078558,51504789:16384,1179648,0 ) -g1,4198:20697409,34105500 +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) +] ) -g1,4198:20697409,34105500 -(1,4198:20697409,34105500:665744,798978,532510 -g1,4198:21363153,34105500 -g1,4198:21363153,34105500 ) -g1,4198:21363153,34105500 -(1,4198:21363153,34105500:639530,798978,532510 -g1,4198:21363153,34105500 -g1,4198:22002683,34105500 -(1,4198:22002683,34105500:0,798978,532510 -(1,4198:22002683,34105500:0,0,0 -(1,4198:22002683,34105500:0,0,0 -g1,4198:22002683,34105500 -g1,4198:22002683,34105500 -g1,4198:22002683,34105500 -g1,4198:22002683,34105500 -g1,4198:22002683,34105500 -(1,4198:22002683,34105500:0,0,0 -(1,4198:22002683,34105500:721420,466322,199855 -(1,4198:22002683,34105500:721420,466322,199855 -r1,4247:22724103,34105500:0,666177,199855 ) -g1,4198:22724103,34105500 +] +[1,2957:3078558,4812305:0,0,0 +(1,2957:3078558,49800853:0,16384,2228224 +g1,2957:29030814,49800853 +g1,2957:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,2957:36151628,51504789:16384,1179648,0 ) +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 ) -g1,4198:22002683,34105500 -g1,4198:22002683,34105500 +] ) +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,2957:37855564,49800853:1179648,16384,0 ) -g1,4198:22002683,34105500 ) +k1,2957:3078556,49800853:-34777008 ) -g1,4198:22002683,34105500 -(1,4198:22002683,34105500:665744,798978,532510 -g1,4198:22668427,34105500 -g1,4198:22668427,34105500 -) -g1,4198:22668427,34105500 -(1,4198:22668427,34105500:639530,798978,532510 -g1,4198:22668427,34105500 -g1,4198:23307957,34105500 -(1,4198:23307957,34105500:0,798978,532510 -(1,4198:23307957,34105500:0,0,0 -(1,4198:23307957,34105500:0,0,0 -g1,4198:23307957,34105500 -g1,4198:23307957,34105500 -g1,4198:23307957,34105500 -g1,4198:23307957,34105500 -g1,4198:23307957,34105500 -(1,4198:23307957,34105500:0,0,0 -(1,4198:23307957,34105500:683147,466322,199855 -(1,4198:23307957,34105500:683147,466322,199855 -r1,4247:23991104,34105500:0,666177,199855 +] +g1,2957:6630773,4812305 +g1,2957:6630773,4812305 +g1,2957:9062814,4812305 +g1,2957:11256304,4812305 +g1,2957:12665983,4812305 +g1,2957:15337230,4812305 +g1,2957:17955393,4812305 +k1,2957:31786111,4812305:13830718 ) -g1,4198:23991104,34105500 ) +] +[1,2957:6630773,45706769:25952256,40108032,0 +(1,2957:6630773,45706769:25952256,40108032,0 +(1,2957:6630773,45706769:0,0,0 +g1,2957:6630773,45706769 ) -g1,4198:23307957,34105500 -g1,4198:23307957,34105500 +[1,2957:6630773,45706769:25952256,40108032,0 +(1,2830:6630773,6254097:25952256,513147,134348 +k1,2829:9635043,6254097:214402 +(1,2829:9635043,6254097:0,452978,115847 +r1,2957:11400156,6254097:1765113,568825,115847 +k1,2829:9635043,6254097:-1765113 ) +(1,2829:9635043,6254097:1765113,452978,115847 +k1,2829:9635043,6254097:3277 +h1,2829:11396879,6254097:0,411205,112570 ) -g1,4198:23307957,34105500 +k1,2829:11614558,6254097:214402 +k1,2829:14169906,6254097:214402 +(1,2829:14169906,6254097:0,414482,115847 +r1,2957:15583307,6254097:1413401,530329,115847 +k1,2829:14169906,6254097:-1413401 +) +(1,2829:14169906,6254097:1413401,414482,115847 +k1,2829:14169906,6254097:3277 +h1,2829:15580030,6254097:0,411205,112570 +) +k1,2829:15797709,6254097:214402 +k1,2829:17387712,6254097:214402 +k1,2829:18068075,6254097:214402 +k1,2829:19048593,6254097:214402 +k1,2829:21273640,6254097:214402 +k1,2829:22104080,6254097:214402 +k1,2829:23337567,6254097:214402 +k1,2829:25860147,6254097:214402 +k1,2829:28279836,6254097:214402 +k1,2829:29180400,6254097:214402 +k1,2829:32583029,6254097:0 +) +(1,2830:6630773,7119177:25952256,505283,115847 +g1,2829:7821562,7119177 +(1,2829:7821562,7119177:0,414482,115847 +r1,2957:9234963,7119177:1413401,530329,115847 +k1,2829:7821562,7119177:-1413401 +) +(1,2829:7821562,7119177:1413401,414482,115847 +k1,2829:7821562,7119177:3277 +h1,2829:9231686,7119177:0,411205,112570 +) +g1,2829:9607862,7119177 +g1,2829:10998536,7119177 +(1,2829:10998536,7119177:0,452978,115847 +r1,2957:12763649,7119177:1765113,568825,115847 +k1,2829:10998536,7119177:-1765113 +) +(1,2829:10998536,7119177:1765113,452978,115847 +k1,2829:10998536,7119177:3277 +h1,2829:12760372,7119177:0,411205,112570 +) +g1,2829:12962878,7119177 +g1,2829:15503053,7119177 +(1,2829:15503053,7119177:0,414482,115847 +r1,2957:16916454,7119177:1413401,530329,115847 +k1,2829:15503053,7119177:-1413401 +) +(1,2829:15503053,7119177:1413401,414482,115847 +k1,2829:15503053,7119177:3277 +h1,2829:16913177,7119177:0,411205,112570 +) +g1,2829:17115683,7119177 +g1,2829:19357669,7119177 +g1,2829:20323014,7119177 +g1,2829:22532888,7119177 +g1,2829:23348155,7119177 +g1,2829:24566469,7119177 +g1,2829:27073876,7119177 +g1,2829:28264665,7119177 +(1,2829:28264665,7119177:0,414482,115847 +r1,2957:30029778,7119177:1765113,530329,115847 +k1,2829:28264665,7119177:-1765113 +) +(1,2829:28264665,7119177:1765113,414482,115847 +k1,2829:28264665,7119177:3277 +h1,2829:30026501,7119177:0,411205,112570 +) +k1,2830:32583029,7119177:2379581 +g1,2830:32583029,7119177 +) +v1,2832:6630773,7804032:0,393216,0 +(1,2870:6630773,17771737:25952256,10360921,196608 +g1,2870:6630773,17771737 +g1,2870:6630773,17771737 +g1,2870:6434165,17771737 +(1,2870:6434165,17771737:0,10360921,196608 +r1,2957:32779637,17771737:26345472,10557529,196608 +k1,2870:6434165,17771737:-26345472 +) +(1,2870:6434165,17771737:26345472,10360921,196608 +[1,2870:6630773,17771737:25952256,10164313,0 +(1,2834:6630773,8031863:25952256,424439,86428 +(1,2833:6630773,8031863:0,0,0 +g1,2833:6630773,8031863 +g1,2833:6630773,8031863 +g1,2833:6303093,8031863 +(1,2833:6303093,8031863:0,0,0 +) +g1,2833:6630773,8031863 +) +g1,2834:8290543,8031863 +g1,2834:9286405,8031863 +g1,2834:11942037,8031863 +g1,2834:14265715,8031863 +h1,2834:16257439,8031863:0,0,0 +k1,2834:32583029,8031863:16325590 +g1,2834:32583029,8031863 +) +(1,2835:6630773,8716718:25952256,424439,106246 +h1,2835:6630773,8716718:0,0,0 +k1,2835:6630773,8716718:0 +h1,2835:9618359,8716718:0,0,0 +k1,2835:32583029,8716718:22964670 +g1,2835:32583029,8716718 +) +(1,2839:6630773,9532645:25952256,424439,79822 +(1,2837:6630773,9532645:0,0,0 +g1,2837:6630773,9532645 +g1,2837:6630773,9532645 +g1,2837:6303093,9532645 +(1,2837:6303093,9532645:0,0,0 +) +g1,2837:6630773,9532645 +) +g1,2839:7626635,9532645 +g1,2839:8954451,9532645 +h1,2839:10282267,9532645:0,0,0 +k1,2839:32583029,9532645:22300762 +g1,2839:32583029,9532645 +) +(1,2841:6630773,10348572:25952256,424439,79822 +(1,2840:6630773,10348572:0,0,0 +g1,2840:6630773,10348572 +g1,2840:6630773,10348572 +g1,2840:6303093,10348572 +(1,2840:6303093,10348572:0,0,0 +) +g1,2840:6630773,10348572 +) +k1,2841:6630773,10348572:0 +h1,2841:9618359,10348572:0,0,0 +k1,2841:32583029,10348572:22964670 +g1,2841:32583029,10348572 +) +(1,2845:6630773,11164499:25952256,424439,79822 +(1,2843:6630773,11164499:0,0,0 +g1,2843:6630773,11164499 +g1,2843:6630773,11164499 +g1,2843:6303093,11164499 +(1,2843:6303093,11164499:0,0,0 +) +g1,2843:6630773,11164499 +) +g1,2845:7626635,11164499 +g1,2845:8954451,11164499 +h1,2845:10614221,11164499:0,0,0 +k1,2845:32583029,11164499:21968808 +g1,2845:32583029,11164499 +) +(1,2847:6630773,11980426:25952256,424439,106246 +(1,2846:6630773,11980426:0,0,0 +g1,2846:6630773,11980426 +g1,2846:6630773,11980426 +g1,2846:6303093,11980426 +(1,2846:6303093,11980426:0,0,0 +) +g1,2846:6630773,11980426 +) +k1,2847:6630773,11980426:0 +g1,2847:10614221,11980426 +g1,2847:12937899,11980426 +g1,2847:13601807,11980426 +k1,2847:13601807,11980426:0 +h1,2847:17917209,11980426:0,0,0 +k1,2847:32583029,11980426:14665820 +g1,2847:32583029,11980426 +) +(1,2851:6630773,12796353:25952256,424439,79822 +(1,2849:6630773,12796353:0,0,0 +g1,2849:6630773,12796353 +g1,2849:6630773,12796353 +g1,2849:6303093,12796353 +(1,2849:6303093,12796353:0,0,0 +) +g1,2849:6630773,12796353 +) +g1,2851:7626635,12796353 +g1,2851:8954451,12796353 +h1,2851:10282267,12796353:0,0,0 +k1,2851:32583029,12796353:22300762 +g1,2851:32583029,12796353 +) +(1,2853:6630773,13612280:25952256,424439,86428 +(1,2852:6630773,13612280:0,0,0 +g1,2852:6630773,13612280 +g1,2852:6630773,13612280 +g1,2852:6303093,13612280 +(1,2852:6303093,13612280:0,0,0 +) +g1,2852:6630773,13612280 +) +k1,2853:6630773,13612280:0 +g1,2853:10614221,13612280 +g1,2853:12937899,13612280 +g1,2853:13601807,13612280 +k1,2853:13601807,13612280:0 +h1,2853:17917209,13612280:0,0,0 +k1,2853:32583029,13612280:14665820 +g1,2853:32583029,13612280 +) +(1,2857:6630773,14428207:25952256,424439,79822 +(1,2855:6630773,14428207:0,0,0 +g1,2855:6630773,14428207 +g1,2855:6630773,14428207 +g1,2855:6303093,14428207 +(1,2855:6303093,14428207:0,0,0 +) +g1,2855:6630773,14428207 +) +g1,2857:7626635,14428207 +g1,2857:8954451,14428207 +h1,2857:10614221,14428207:0,0,0 +k1,2857:32583029,14428207:21968808 +g1,2857:32583029,14428207 +) +(1,2859:6630773,15244134:25952256,424439,106246 +(1,2858:6630773,15244134:0,0,0 +g1,2858:6630773,15244134 +g1,2858:6630773,15244134 +g1,2858:6303093,15244134 +(1,2858:6303093,15244134:0,0,0 +) +g1,2858:6630773,15244134 +) +k1,2859:6630773,15244134:0 +g1,2859:10614221,15244134 +g1,2859:12937899,15244134 +g1,2859:13601807,15244134 +k1,2859:13601807,15244134:0 +h1,2859:17917209,15244134:0,0,0 +k1,2859:32583029,15244134:14665820 +g1,2859:32583029,15244134 +) +(1,2863:6630773,16060061:25952256,424439,79822 +(1,2861:6630773,16060061:0,0,0 +g1,2861:6630773,16060061 +g1,2861:6630773,16060061 +g1,2861:6303093,16060061 +(1,2861:6303093,16060061:0,0,0 +) +g1,2861:6630773,16060061 +) +g1,2863:7626635,16060061 +g1,2863:8954451,16060061 +h1,2863:10282267,16060061:0,0,0 +k1,2863:32583029,16060061:22300762 +g1,2863:32583029,16060061 +) +(1,2865:6630773,16875988:25952256,424439,86428 +(1,2864:6630773,16875988:0,0,0 +g1,2864:6630773,16875988 +g1,2864:6630773,16875988 +g1,2864:6303093,16875988 +(1,2864:6303093,16875988:0,0,0 +) +g1,2864:6630773,16875988 +) +k1,2865:6630773,16875988:0 +g1,2865:10614221,16875988 +g1,2865:12937899,16875988 +g1,2865:13601807,16875988 +k1,2865:13601807,16875988:0 +h1,2865:17917209,16875988:0,0,0 +k1,2865:32583029,16875988:14665820 +g1,2865:32583029,16875988 +) +(1,2869:6630773,17691915:25952256,424439,79822 +(1,2867:6630773,17691915:0,0,0 +g1,2867:6630773,17691915 +g1,2867:6630773,17691915 +g1,2867:6303093,17691915 +(1,2867:6303093,17691915:0,0,0 +) +g1,2867:6630773,17691915 +) +g1,2869:7626635,17691915 +g1,2869:8954451,17691915 +h1,2869:10282267,17691915:0,0,0 +k1,2869:32583029,17691915:22300762 +g1,2869:32583029,17691915 +) +] +) +g1,2870:32583029,17771737 +g1,2870:6630773,17771737 +g1,2870:6630773,17771737 +g1,2870:32583029,17771737 +g1,2870:32583029,17771737 +) +h1,2870:6630773,17968345:0,0,0 +(1,2874:6630773,18833425:25952256,505283,134348 +h1,2873:6630773,18833425:983040,0,0 +k1,2873:10468740,18833425:250526 +k1,2873:13928564,18833425:250526 +k1,2873:15841083,18833425:250526 +k1,2873:16743037,18833425:250526 +k1,2873:18716505,18833425:250526 +k1,2873:20789588,18833425:250527 +k1,2873:23109741,18833425:250526 +k1,2873:26437182,18833425:250526 +k1,2873:27219205,18833425:250526 +k1,2873:28754237,18833425:250526 +k1,2873:30384951,18833425:250526 +k1,2874:32583029,18833425:0 +) +(1,2874:6630773,19698505:25952256,513147,126483 +k1,2873:8113940,19698505:177690 +k1,2873:11768970,19698505:177690 +k1,2873:12424417,19698505:177690 +k1,2873:13621192,19698505:177690 +k1,2873:15641754,19698505:177690 +k1,2873:16350941,19698505:177690 +k1,2873:18666415,19698505:177690 +k1,2873:20411725,19698505:177689 +k1,2873:21608500,19698505:177690 +k1,2873:23092323,19698505:177690 +k1,2873:24591874,19698505:177690 +k1,2873:25428856,19698505:177690 +k1,2873:26625631,19698505:177690 +k1,2873:30163352,19698505:177690 +k1,2873:31360127,19698505:177690 +k1,2873:32583029,19698505:0 +) +(1,2874:6630773,20563585:25952256,513147,126483 +k1,2873:7449922,20563585:159857 +k1,2873:8628865,20563585:159858 +k1,2873:11975082,20563585:159857 +k1,2873:12666436,20563585:159857 +k1,2873:13892565,20563585:159858 +k1,2873:17287279,20563585:159857 +k1,2873:18531102,20563585:159857 +k1,2873:19342387,20563585:159857 +k1,2873:23167018,20563585:159858 +k1,2873:24875491,20563585:159857 +k1,2873:27740019,20563585:159857 +k1,2873:29597915,20563585:159858 +k1,2873:30928245,20563585:159857 +k1,2873:32583029,20563585:0 +) +(1,2874:6630773,21428665:25952256,513147,134348 +k1,2873:7852781,21428665:202923 +k1,2873:11031039,21428665:202923 +k1,2873:14897425,21428665:202923 +k1,2873:18028497,21428665:202923 +k1,2873:21535090,21428665:202923 +k1,2873:22269509,21428665:202922 +k1,2873:24623324,21428665:202923 +k1,2873:25512409,21428665:202923 +k1,2873:26734417,21428665:202923 +k1,2873:28243473,21428665:202923 +k1,2873:31478747,21428665:202923 +k1,2873:32583029,21428665:0 +) +(1,2874:6630773,22293745:25952256,513147,134348 +k1,2873:7534655,22293745:156116 +k1,2873:9203997,22293745:156116 +k1,2873:10046275,22293745:156116 +k1,2873:10558251,22293745:156116 +k1,2873:12568381,22293745:156116 +k1,2873:16013094,22293745:156116 +k1,2873:16525069,22293745:156115 +k1,2873:18134774,22293745:156116 +k1,2873:21323241,22293745:156116 +k1,2873:23046978,22293745:156116 +k1,2873:24941109,22293745:156116 +k1,2873:28158412,22293745:156116 +k1,2873:30012566,22293745:156116 +k1,2873:30626779,22293745:156116 +k1,2873:32583029,22293745:0 +) +(1,2874:6630773,23158825:25952256,473825,134348 +g1,2873:8960577,23158825 +g1,2873:9930509,23158825 +k1,2874:32583030,23158825:20871908 +g1,2874:32583030,23158825 +) +v1,2876:6630773,23843680:0,393216,0 +(1,2913:6630773,33126530:25952256,9676066,196608 +g1,2913:6630773,33126530 +g1,2913:6630773,33126530 +g1,2913:6434165,33126530 +(1,2913:6434165,33126530:0,9676066,196608 +r1,2957:32779637,33126530:26345472,9872674,196608 +k1,2913:6434165,33126530:-26345472 +) +(1,2913:6434165,33126530:26345472,9676066,196608 +[1,2913:6630773,33126530:25952256,9479458,0 +(1,2878:6630773,24071511:25952256,424439,79822 +(1,2877:6630773,24071511:0,0,0 +g1,2877:6630773,24071511 +g1,2877:6630773,24071511 +g1,2877:6303093,24071511 +(1,2877:6303093,24071511:0,0,0 +) +g1,2877:6630773,24071511 +) +g1,2878:8290543,24071511 +g1,2878:9286405,24071511 +h1,2878:9950313,24071511:0,0,0 +k1,2878:32583029,24071511:22632716 +g1,2878:32583029,24071511 +) +(1,2882:6630773,24887438:25952256,424439,79822 +(1,2880:6630773,24887438:0,0,0 +g1,2880:6630773,24887438 +g1,2880:6630773,24887438 +g1,2880:6303093,24887438 +(1,2880:6303093,24887438:0,0,0 +) +g1,2880:6630773,24887438 +) +g1,2882:7626635,24887438 +g1,2882:8954451,24887438 +h1,2882:10282267,24887438:0,0,0 +k1,2882:32583029,24887438:22300762 +g1,2882:32583029,24887438 +) +(1,2884:6630773,25703365:25952256,424439,79822 +(1,2883:6630773,25703365:0,0,0 +g1,2883:6630773,25703365 +g1,2883:6630773,25703365 +g1,2883:6303093,25703365 +(1,2883:6303093,25703365:0,0,0 +) +g1,2883:6630773,25703365 +) +g1,2884:8622497,25703365 +g1,2884:9618359,25703365 +h1,2884:10282267,25703365:0,0,0 +k1,2884:32583029,25703365:22300762 +g1,2884:32583029,25703365 +) +(1,2888:6630773,26519292:25952256,424439,79822 +(1,2886:6630773,26519292:0,0,0 +g1,2886:6630773,26519292 +g1,2886:6630773,26519292 +g1,2886:6303093,26519292 +(1,2886:6303093,26519292:0,0,0 +) +g1,2886:6630773,26519292 +) +g1,2888:7626635,26519292 +g1,2888:8954451,26519292 +h1,2888:9618359,26519292:0,0,0 +k1,2888:32583029,26519292:22964670 +g1,2888:32583029,26519292 +) +(1,2890:6630773,27335219:25952256,407923,9908 +(1,2889:6630773,27335219:0,0,0 +g1,2889:6630773,27335219 +g1,2889:6630773,27335219 +g1,2889:6303093,27335219 +(1,2889:6303093,27335219:0,0,0 +) +g1,2889:6630773,27335219 +) +g1,2890:8290543,27335219 +g1,2890:9286405,27335219 +h1,2890:9950313,27335219:0,0,0 +k1,2890:32583029,27335219:22632716 +g1,2890:32583029,27335219 +) +(1,2894:6630773,28151146:25952256,424439,79822 +(1,2892:6630773,28151146:0,0,0 +g1,2892:6630773,28151146 +g1,2892:6630773,28151146 +g1,2892:6303093,28151146 +(1,2892:6303093,28151146:0,0,0 +) +g1,2892:6630773,28151146 +) +g1,2894:7626635,28151146 +g1,2894:8954451,28151146 +h1,2894:9618359,28151146:0,0,0 +k1,2894:32583029,28151146:22964670 +g1,2894:32583029,28151146 +) +(1,2896:6630773,28967073:25952256,407923,9908 +(1,2895:6630773,28967073:0,0,0 +g1,2895:6630773,28967073 +g1,2895:6630773,28967073 +g1,2895:6303093,28967073 +(1,2895:6303093,28967073:0,0,0 +) +g1,2895:6630773,28967073 +) +g1,2896:8622497,28967073 +g1,2896:9618359,28967073 +h1,2896:10282267,28967073:0,0,0 +k1,2896:32583029,28967073:22300762 +g1,2896:32583029,28967073 +) +(1,2900:6630773,29783000:25952256,424439,79822 +(1,2898:6630773,29783000:0,0,0 +g1,2898:6630773,29783000 +g1,2898:6630773,29783000 +g1,2898:6303093,29783000 +(1,2898:6303093,29783000:0,0,0 +) +g1,2898:6630773,29783000 +) +g1,2900:7626635,29783000 +g1,2900:8954451,29783000 +h1,2900:10614221,29783000:0,0,0 +k1,2900:32583029,29783000:21968808 +g1,2900:32583029,29783000 +) +(1,2902:6630773,30598927:25952256,407923,9908 +(1,2901:6630773,30598927:0,0,0 +g1,2901:6630773,30598927 +g1,2901:6630773,30598927 +g1,2901:6303093,30598927 +(1,2901:6303093,30598927:0,0,0 +) +g1,2901:6630773,30598927 +) +g1,2902:8290543,30598927 +g1,2902:9286405,30598927 +g1,2902:11278129,30598927 +g1,2902:12273991,30598927 +h1,2902:12937899,30598927:0,0,0 +k1,2902:32583029,30598927:19645130 +g1,2902:32583029,30598927 +) +(1,2906:6630773,31414854:25952256,424439,79822 +(1,2904:6630773,31414854:0,0,0 +g1,2904:6630773,31414854 +g1,2904:6630773,31414854 +g1,2904:6303093,31414854 +(1,2904:6303093,31414854:0,0,0 +) +g1,2904:6630773,31414854 +) +g1,2906:7626635,31414854 +g1,2906:8954451,31414854 +h1,2906:10614221,31414854:0,0,0 +k1,2906:32583029,31414854:21968808 +g1,2906:32583029,31414854 +) +(1,2908:6630773,32230781:25952256,407923,9908 +(1,2907:6630773,32230781:0,0,0 +g1,2907:6630773,32230781 +g1,2907:6630773,32230781 +g1,2907:6303093,32230781 +(1,2907:6303093,32230781:0,0,0 +) +g1,2907:6630773,32230781 +) +g1,2908:8290543,32230781 +g1,2908:9286405,32230781 +g1,2908:10946175,32230781 +g1,2908:11942037,32230781 +h1,2908:12605945,32230781:0,0,0 +k1,2908:32583029,32230781:19977084 +g1,2908:32583029,32230781 +) +(1,2912:6630773,33046708:25952256,424439,79822 +(1,2910:6630773,33046708:0,0,0 +g1,2910:6630773,33046708 +g1,2910:6630773,33046708 +g1,2910:6303093,33046708 +(1,2910:6303093,33046708:0,0,0 +) +g1,2910:6630773,33046708 +) +g1,2912:7626635,33046708 +g1,2912:8954451,33046708 +h1,2912:9618359,33046708:0,0,0 +k1,2912:32583029,33046708:22964670 +g1,2912:32583029,33046708 +) +] +) +g1,2913:32583029,33126530 +g1,2913:6630773,33126530 +g1,2913:6630773,33126530 +g1,2913:32583029,33126530 +g1,2913:32583029,33126530 +) +h1,2913:6630773,33323138:0,0,0 +v1,2917:6630773,34188218:0,393216,0 +(1,2918:6630773,35460123:25952256,1665121,0 +g1,2918:6630773,35460123 +g1,2918:6237557,35460123 +r1,2957:6368629,35460123:131072,1665121,0 +g1,2918:6567858,35460123 +g1,2918:6764466,35460123 +[1,2918:6764466,35460123:25818563,1665121,0 +(1,2918:6764466,34460695:25818563,665693,196608 +(1,2917:6764466,34460695:0,665693,196608 +r1,2957:8010564,34460695:1246098,862301,196608 +k1,2917:6764466,34460695:-1246098 +) +(1,2917:6764466,34460695:1246098,665693,196608 +) +k1,2917:8219766,34460695:209202 +k1,2917:9945984,34460695:327680 +k1,2917:13610244,34460695:209202 +k1,2917:15149827,34460695:209202 +k1,2917:18397933,34460695:209202 +k1,2917:19626220,34460695:209202 +k1,2917:21574749,34460695:209203 +k1,2917:22443243,34460695:209202 +k1,2917:23671530,34460695:209202 +k1,2917:26853445,34460695:209202 +k1,2917:27678685,34460695:209202 +k1,2917:28906972,34460695:209202 +k1,2917:30612361,34460695:209202 +k1,2917:32583029,34460695:0 +) +(1,2918:6764466,35325775:25818563,513147,134348 +g1,2917:8819019,35325775 +g1,2917:11127852,35325775 +g1,2917:12346166,35325775 +g1,2917:14556040,35325775 +g1,2917:17707666,35325775 +g1,2917:19323128,35325775 +g1,2917:20541442,35325775 +g1,2917:22046804,35325775 +g1,2917:25432393,35325775 +g1,2917:28405106,35325775 +(1,2917:28405106,35325775:0,452978,115847 +r1,2957:31928779,35325775:3523673,568825,115847 +k1,2917:28405106,35325775:-3523673 +) +(1,2917:28405106,35325775:3523673,452978,115847 +g1,2917:29463519,35325775 +g1,2917:30518655,35325775 +h1,2917:31925502,35325775:0,411205,112570 +) +k1,2918:32583029,35325775:480580 +g1,2918:32583029,35325775 +) +] +g1,2918:32583029,35460123 +) +h1,2918:6630773,35460123:0,0,0 +(1,2921:6630773,36325203:25952256,513147,134348 +h1,2920:6630773,36325203:983040,0,0 +k1,2920:9687611,36325203:290563 +k1,2920:11713566,36325203:290562 +k1,2920:13023214,36325203:290563 +k1,2920:16650870,36325203:290563 +k1,2920:20018348,36325203:290563 +k1,2920:21118280,36325203:290562 +k1,2920:23717021,36325203:290563 +k1,2920:24666876,36325203:290563 +k1,2920:26970705,36325203:290563 +k1,2920:29519638,36325203:290562 +k1,2920:31252648,36325203:290563 +k1,2920:32583029,36325203:0 +) +(1,2921:6630773,37190283:25952256,513147,126483 +g1,2920:10080588,37190283 +g1,2920:13583487,37190283 +g1,2920:14981370,37190283 +g1,2920:17461907,37190283 +g1,2920:18608787,37190283 +g1,2920:19827101,37190283 +g1,2920:21869202,37190283 +g1,2920:24860265,37190283 +g1,2920:25672256,37190283 +g1,2920:27323107,37190283 +g1,2920:29271492,37190283 +k1,2921:32583029,37190283:523635 +g1,2921:32583029,37190283 +) +v1,2923:6630773,37875138:0,393216,0 +(1,2942:6630773,42262426:25952256,4780504,196608 +g1,2942:6630773,42262426 +g1,2942:6630773,42262426 +g1,2942:6434165,42262426 +(1,2942:6434165,42262426:0,4780504,196608 +r1,2957:32779637,42262426:26345472,4977112,196608 +k1,2942:6434165,42262426:-26345472 +) +(1,2942:6434165,42262426:26345472,4780504,196608 +[1,2942:6630773,42262426:25952256,4583896,0 +(1,2925:6630773,38102969:25952256,424439,86428 +(1,2924:6630773,38102969:0,0,0 +g1,2924:6630773,38102969 +g1,2924:6630773,38102969 +g1,2924:6303093,38102969 +(1,2924:6303093,38102969:0,0,0 +) +g1,2924:6630773,38102969 +) +k1,2925:6630773,38102969:0 +g1,2925:9286405,38102969 +g1,2925:11610083,38102969 +g1,2925:12273991,38102969 +g1,2925:16589393,38102969 +g1,2925:17253301,38102969 +h1,2925:17917209,38102969:0,0,0 +k1,2925:32583029,38102969:14665820 +g1,2925:32583029,38102969 +) +(1,2929:6630773,38918896:25952256,424439,79822 +(1,2927:6630773,38918896:0,0,0 +g1,2927:6630773,38918896 +g1,2927:6630773,38918896 +g1,2927:6303093,38918896 +(1,2927:6303093,38918896:0,0,0 +) +g1,2927:6630773,38918896 +) +g1,2929:7626635,38918896 +g1,2929:8954451,38918896 +g1,2929:9286405,38918896 +g1,2929:9618359,38918896 +g1,2929:9950313,38918896 +g1,2929:10946175,38918896 +h1,2929:12605945,38918896:0,0,0 +k1,2929:32583029,38918896:19977084 +g1,2929:32583029,38918896 +) +(1,2931:6630773,39734823:25952256,424439,86428 +(1,2930:6630773,39734823:0,0,0 +g1,2930:6630773,39734823 +g1,2930:6630773,39734823 +g1,2930:6303093,39734823 +(1,2930:6303093,39734823:0,0,0 +) +g1,2930:6630773,39734823 +) +k1,2931:6630773,39734823:0 +g1,2931:9286405,39734823 +g1,2931:11610083,39734823 +g1,2931:12273991,39734823 +g1,2931:16589393,39734823 +g1,2931:17253301,39734823 +g1,2931:19245025,39734823 +h1,2931:20240887,39734823:0,0,0 +k1,2931:32583029,39734823:12342142 +g1,2931:32583029,39734823 +) +(1,2935:6630773,40550750:25952256,424439,79822 +(1,2933:6630773,40550750:0,0,0 +g1,2933:6630773,40550750 +g1,2933:6630773,40550750 +g1,2933:6303093,40550750 +(1,2933:6303093,40550750:0,0,0 +) +g1,2933:6630773,40550750 +) +g1,2935:7626635,40550750 +g1,2935:8954451,40550750 +g1,2935:9286405,40550750 +g1,2935:9618359,40550750 +g1,2935:9950313,40550750 +g1,2935:10946175,40550750 +h1,2935:12605945,40550750:0,0,0 +k1,2935:32583029,40550750:19977084 +g1,2935:32583029,40550750 +) +(1,2937:6630773,41366677:25952256,424439,86428 +(1,2936:6630773,41366677:0,0,0 +g1,2936:6630773,41366677 +g1,2936:6630773,41366677 +g1,2936:6303093,41366677 +(1,2936:6303093,41366677:0,0,0 +) +g1,2936:6630773,41366677 +) +k1,2937:6630773,41366677:0 +g1,2937:9286405,41366677 +g1,2937:11610083,41366677 +g1,2937:12273991,41366677 +g1,2937:16589393,41366677 +g1,2937:17253301,41366677 +g1,2937:19245025,41366677 +h1,2937:20240887,41366677:0,0,0 +k1,2937:32583029,41366677:12342142 +g1,2937:32583029,41366677 +) +(1,2941:6630773,42182604:25952256,424439,79822 +(1,2939:6630773,42182604:0,0,0 +g1,2939:6630773,42182604 +g1,2939:6630773,42182604 +g1,2939:6303093,42182604 +(1,2939:6303093,42182604:0,0,0 +) +g1,2939:6630773,42182604 +) +g1,2941:7626635,42182604 +g1,2941:8954451,42182604 +g1,2941:10614221,42182604 +h1,2941:11942037,42182604:0,0,0 +k1,2941:32583029,42182604:20640992 +g1,2941:32583029,42182604 +) +] +) +g1,2942:32583029,42262426 +g1,2942:6630773,42262426 +g1,2942:6630773,42262426 +g1,2942:32583029,42262426 +g1,2942:32583029,42262426 +) +h1,2942:6630773,42459034:0,0,0 +v1,2946:6630773,43324114:0,393216,0 +(1,2957:6630773,45461099:25952256,2530201,0 +g1,2957:6630773,45461099 +g1,2957:6237557,45461099 +r1,2957:6368629,45461099:131072,2530201,0 +g1,2957:6567858,45461099 +g1,2957:6764466,45461099 +[1,2957:6764466,45461099:25818563,2530201,0 +(1,2947:6764466,43596591:25818563,665693,196608 +(1,2946:6764466,43596591:0,665693,196608 +r1,2957:8010564,43596591:1246098,862301,196608 +k1,2946:6764466,43596591:-1246098 +) +(1,2946:6764466,43596591:1246098,665693,196608 +) +k1,2946:8155667,43596591:145103 +k1,2946:9881885,43596591:327680 +k1,2946:11880346,43596591:145103 +k1,2946:12834819,43596591:145103 +k1,2946:13999007,43596591:145103 +k1,2946:17753833,43596591:145103 +k1,2946:18558227,43596591:145102 +k1,2946:22162976,43596591:145103 +k1,2946:25481988,43596591:145103 +k1,2946:26436461,43596591:145103 +k1,2946:28079717,43596591:145103 +h1,2946:28876635,43596591:0,0,0 +k1,2946:29021738,43596591:145103 +k1,2946:30114492,43596591:145103 +(1,2946:30114492,43596591:0,452978,115847 +r1,2957:32583029,43596591:2468537,568825,115847 +k1,2946:30114492,43596591:-2468537 +) +(1,2946:30114492,43596591:2468537,452978,115847 +k1,2946:30114492,43596591:3277 +h1,2946:32579752,43596591:0,411205,112570 +) +k1,2946:32583029,43596591:0 +) +(1,2947:6764466,44461671:25818563,505283,134348 +k1,2946:10251418,44461671:236366 +k1,2946:12856256,44461671:236367 +k1,2946:14423003,44461671:236366 +k1,2946:18119016,44461671:236367 +k1,2946:20282140,44461671:236366 +k1,2946:21912458,44461671:236367 +k1,2946:25485917,44461671:236366 +k1,2946:27791911,44461671:236367 +k1,2946:31278863,44461671:236366 +k1,2947:32583029,44461671:0 +) +(1,2947:6764466,45326751:25818563,513147,134348 +k1,2946:7936741,45326751:212173 +k1,2946:10218541,45326751:212173 +k1,2946:12738892,45326751:212173 +k1,2946:13610356,45326751:212172 +k1,2946:16584872,45326751:212173 +k1,2946:19140612,45326751:212173 +k1,2946:22540456,45326751:212173 +k1,2946:24765895,45326751:212173 +k1,2946:26341872,45326751:212173 +k1,2946:27745489,45326751:212172 +k1,2946:29351613,45326751:212173 +k1,2946:30325314,45326751:212173 +k1,2946:32583029,45326751:0 +) +] +g1,2957:32583029,45461099 +) +] +(1,2957:32583029,45706769:0,0,0 +g1,2957:32583029,45706769 +) +) +] +(1,2957:6630773,47279633:25952256,0,0 +h1,2957:6630773,47279633:25952256,0,0 +) +] +(1,2957:4262630,4025873:0,0,0 +[1,2957:-473656,4025873:0,0,0 +(1,2957:-473656,-710413:0,0,0 +(1,2957:-473656,-710413:0,0,0 +g1,2957:-473656,-710413 +) +g1,2957:-473656,-710413 +) +] +) +] +!26762 +}64 +Input:583:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:584:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:585:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:586:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:587:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:588:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:589:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:590:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:591:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:592:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:593:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:594:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:595:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:596:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:597:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:598:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:599:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:600:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:601:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:602:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:603:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:604:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:605:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!2150 +{65 +[1,3059:4262630,47279633:28320399,43253760,0 +(1,3059:4262630,4025873:0,0,0 +[1,3059:-473656,4025873:0,0,0 +(1,3059:-473656,-710413:0,0,0 +(1,3059:-473656,-644877:0,0,0 +k1,3059:-473656,-644877:-65536 ) +(1,3059:-473656,4736287:0,0,0 +k1,3059:-473656,4736287:5209943 ) -g1,4198:23307957,34105500 -(1,4198:23307957,34105500:665744,798978,532510 -g1,4198:23973701,34105500 -g1,4198:23973701,34105500 -) -g1,4198:23973701,34105500 -(1,4198:23973701,34105500:639530,798978,532510 -g1,4198:23973701,34105500 -g1,4198:24613231,34105500 -(1,4198:24613231,34105500:0,798978,532510 -(1,4198:24613231,34105500:0,0,0 -(1,4198:24613231,34105500:0,0,0 -g1,4198:24613231,34105500 -g1,4198:24613231,34105500 -g1,4198:24613231,34105500 -g1,4198:24613231,34105500 -g1,4198:24613231,34105500 -(1,4198:24613231,34105500:0,0,0 -(1,4198:24613231,34105500:583533,466322,199855 -(1,4198:24613231,34105500:583533,466322,199855 -r1,4247:25196764,34105500:0,666177,199855 +g1,3059:-473656,-710413 ) -g1,4198:25196764,34105500 +] ) +[1,3059:6630773,47279633:25952256,43253760,0 +[1,3059:6630773,4812305:25952256,786432,0 +(1,3059:6630773,4812305:25952256,505283,11795 +(1,3059:6630773,4812305:25952256,505283,11795 +g1,3059:3078558,4812305 +[1,3059:3078558,4812305:0,0,0 +(1,3059:3078558,2439708:0,1703936,0 +k1,3059:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,3059:2537886,2439708:1179648,16384,0 ) -g1,4198:24613231,34105500 -g1,4198:24613231,34105500 +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,3059:3078558,1915420:16384,1179648,0 ) +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) -g1,4198:24613231,34105500 +] ) ) -g1,4198:24613231,34105500 -(1,4198:24613231,34105500:665744,798978,532510 -g1,4198:25278975,34105500 -g1,4198:25278975,34105500 -) -g1,4198:25278975,34105500 -(1,4198:25278975,34105500:639530,798978,532510 -g1,4198:25278975,34105500 -g1,4198:25918505,34105500 -(1,4198:25918505,34105500:0,798978,532510 -(1,4198:25918505,34105500:0,0,0 -(1,4198:25918505,34105500:0,0,0 -g1,4198:25918505,34105500 -g1,4198:25918505,34105500 -g1,4198:25918505,34105500 -g1,4198:25918505,34105500 -g1,4198:25918505,34105500 -(1,4198:25918505,34105500:0,0,0 -(1,4198:25918505,34105500:913310,466322,199855 -(1,4198:25918505,34105500:913310,466322,199855 -r1,4247:26831815,34105500:0,666177,199855 ) -g1,4198:26831815,34105500 +] +[1,3059:3078558,4812305:0,0,0 +(1,3059:3078558,2439708:0,1703936,0 +g1,3059:29030814,2439708 +g1,3059:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,3059:36151628,1915420:16384,1179648,0 ) +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) -g1,4198:25918505,34105500 -g1,4198:25918505,34105500 +] ) +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,3059:37855564,2439708:1179648,16384,0 ) -g1,4198:25918505,34105500 ) +k1,3059:3078556,2439708:-34777008 ) -g1,4198:25918505,34105500 -(1,4198:25918505,34105500:665744,798978,532510 -g1,4198:26584249,34105500 -g1,4198:26584249,34105500 +] +[1,3059:3078558,4812305:0,0,0 +(1,3059:3078558,49800853:0,16384,2228224 +k1,3059:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,3059:2537886,49800853:1179648,16384,0 ) -g1,4198:26584249,34105500 -(1,4198:26584249,34105500:639530,798978,532510 -g1,4198:26584249,34105500 -g1,4198:27223779,34105500 -(1,4198:27223779,34105500:0,798978,532510 -(1,4198:27223779,34105500:0,0,0 -(1,4198:27223779,34105500:0,0,0 -g1,4198:27223779,34105500 -g1,4198:27223779,34105500 -g1,4198:27223779,34105500 -g1,4198:27223779,34105500 -g1,4198:27223779,34105500 -(1,4198:27223779,34105500:0,0,0 -(1,4198:27223779,34105500:716177,466322,199855 -(1,4198:27223779,34105500:716177,466322,199855 -r1,4247:27939956,34105500:0,666177,199855 +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,3059:3078558,51504789:16384,1179648,0 +) +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 +) +] +) +) +) +] +[1,3059:3078558,4812305:0,0,0 +(1,3059:3078558,49800853:0,16384,2228224 +g1,3059:29030814,49800853 +g1,3059:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,3059:36151628,51504789:16384,1179648,0 +) +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 +) +] +) +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,3059:37855564,49800853:1179648,16384,0 +) +) +k1,3059:3078556,49800853:-34777008 +) +] +g1,3059:6630773,4812305 +k1,3059:22348274,4812305:14920583 +g1,3059:23970945,4812305 +g1,3059:24793421,4812305 +g1,3059:27528893,4812305 +g1,3059:28938572,4812305 +) +) +] +[1,3059:6630773,45706769:25952256,40108032,0 +(1,3059:6630773,45706769:25952256,40108032,0 +(1,3059:6630773,45706769:0,0,0 +g1,3059:6630773,45706769 +) +[1,3059:6630773,45706769:25952256,40108032,0 +v1,2957:6630773,6254097:0,393216,0 +(1,2957:6630773,12572141:25952256,6711260,0 +g1,2957:6630773,12572141 +g1,2957:6237557,12572141 +r1,3059:6368629,12572141:131072,6711260,0 +g1,2957:6567858,12572141 +g1,2957:6764466,12572141 +[1,2957:6764466,12572141:25818563,6711260,0 +(1,2947:6764466,6366164:25818563,505283,134348 +k1,2946:9156585,6366164:160618 +k1,2946:10813389,6366164:160617 +k1,2946:14490669,6366164:160618 +k1,2946:16045238,6366164:160618 +k1,2946:19610451,6366164:160618 +k1,2946:20580438,6366164:160617 +k1,2946:22553782,6366164:160618 +k1,2946:23543430,6366164:160618 +k1,2946:24682501,6366164:160618 +k1,2946:26013591,6366164:160617 +k1,2946:28604284,6366164:160618 +k1,2946:29921612,6366164:160618 +k1,2946:32583029,6366164:0 +) +(1,2947:6764466,7231244:25818563,505283,134348 +k1,2946:7518281,7231244:222318 +k1,2946:9435360,7231244:222318 +k1,2946:11699781,7231244:222319 +k1,2946:14358072,7231244:222318 +k1,2946:15783631,7231244:222318 +k1,2946:18841036,7231244:222318 +k1,2946:20254800,7231244:222319 +k1,2946:21911046,7231244:222318 +k1,2946:24062744,7231244:222318 +k1,2946:25476507,7231244:222318 +k1,2946:26816870,7231244:222319 +k1,2946:28498019,7231244:222318 +k1,2946:30224388,7231244:222318 +k1,2946:32583029,7231244:0 +) +(1,2947:6764466,8096324:25818563,505283,126483 +k1,2946:8352021,8096324:206711 +k1,2946:9843239,8096324:206712 +k1,2946:11220423,8096324:206711 +k1,2946:15091907,8096324:206711 +k1,2946:16595576,8096324:206711 +k1,2946:17821373,8096324:206712 +k1,2946:20038729,8096324:206711 +k1,2946:23024167,8096324:206711 +k1,2946:24222438,8096324:206711 +k1,2946:25977766,8096324:206712 +k1,2946:27564665,8096324:206711 +k1,2946:28936606,8096324:206711 +k1,2946:32583029,8096324:0 +) +(1,2947:6764466,8961404:25818563,513147,126483 +k1,2946:8136667,8961404:201728 +k1,2946:9470857,8961404:201728 +k1,2946:11202851,8961404:201728 +k1,2946:12056007,8961404:201728 +k1,2946:14261826,8961404:201728 +k1,2946:16695056,8961404:201729 +k1,2946:19888503,8961404:201728 +k1,2946:20773116,8961404:201728 +k1,2946:22166289,8961404:201728 +k1,2946:24065399,8961404:201728 +k1,2946:24918555,8961404:201728 +k1,2946:26758028,8961404:201728 +k1,2946:28026027,8961404:201728 +k1,2946:28894911,8961404:201728 +k1,2946:29511480,8961404:201726 +k1,2946:30483911,8961404:201728 +k1,2947:32583029,8961404:0 +) +(1,2947:6764466,9826484:25818563,513147,134348 +k1,2946:9743776,9826484:210414 +k1,2946:10613483,9826484:210415 +k1,2946:12154278,9826484:210414 +k1,2946:12720552,9826484:210414 +k1,2946:15129044,9826484:210414 +k1,2946:17614869,9826484:210415 +k1,2946:18484575,9826484:210414 +k1,2946:19714074,9826484:210414 +k1,2946:22766784,9826484:210414 +k1,2946:25077628,9826484:210415 +k1,2946:26012870,9826484:210414 +k1,2946:27038552,9826484:210414 +k1,2946:28315237,9826484:210414 +k1,2946:29805570,9826484:210415 +k1,2946:30851568,9826484:210414 +k1,2946:32583029,9826484:0 +) +(1,2947:6764466,10691564:25818563,513147,134348 +g1,2946:8155140,10691564 +g1,2946:10070102,10691564 +g1,2946:11361816,10691564 +g1,2946:12220337,10691564 +g1,2946:13878397,10691564 +k1,2947:32583029,10691564:14740359 +g1,2947:32583029,10691564 +) +v1,2949:6764466,11376419:0,393216,0 +(1,2954:6764466,12375533:25818563,1392330,196608 +g1,2954:6764466,12375533 +g1,2954:6764466,12375533 +g1,2954:6567858,12375533 +(1,2954:6567858,12375533:0,1392330,196608 +r1,3059:32779637,12375533:26211779,1588938,196608 +k1,2954:6567857,12375533:-26211780 +) +(1,2954:6567858,12375533:26211779,1392330,196608 +[1,2954:6764466,12375533:25818563,1195722,0 +(1,2951:6764466,11604250:25818563,424439,86428 +(1,2950:6764466,11604250:0,0,0 +g1,2950:6764466,11604250 +g1,2950:6764466,11604250 +g1,2950:6436786,11604250 +(1,2950:6436786,11604250:0,0,0 +) +g1,2950:6764466,11604250 +) +k1,2951:6764466,11604250:0 +g1,2951:9420098,11604250 +g1,2951:11743776,11604250 +g1,2951:13735500,11604250 +g1,2951:15063316,11604250 +g1,2951:15727224,11604250 +h1,2951:17386994,11604250:0,0,0 +k1,2951:32583029,11604250:15196035 +g1,2951:32583029,11604250 +) +(1,2952:6764466,12289105:25818563,424439,86428 +h1,2952:6764466,12289105:0,0,0 +g1,2952:9420098,12289105 +g1,2952:11743776,12289105 +g1,2952:13735500,12289105 +g1,2952:15063316,12289105 +g1,2952:15727224,12289105 +g1,2952:18382856,12289105 +h1,2952:20374580,12289105:0,0,0 +k1,2952:32583029,12289105:12208449 +g1,2952:32583029,12289105 +) +] +) +g1,2954:32583029,12375533 +g1,2954:6764466,12375533 +g1,2954:6764466,12375533 +g1,2954:32583029,12375533 +g1,2954:32583029,12375533 +) +h1,2954:6764466,12572141:0,0,0 +] +g1,2957:32583029,12572141 +) +h1,2957:6630773,12572141:0,0,0 +v1,2960:6630773,13437221:0,393216,0 +(1,2986:6630773,21826799:25952256,8782794,0 +g1,2986:6630773,21826799 +g1,2986:6237557,21826799 +r1,3059:6368629,21826799:131072,8782794,0 +g1,2986:6567858,21826799 +g1,2986:6764466,21826799 +[1,2986:6764466,21826799:25818563,8782794,0 +(1,2961:6764466,13851763:25818563,807758,219026 +(1,2960:6764466,13851763:0,807758,219026 +r1,3059:7908217,13851763:1143751,1026784,219026 +k1,2960:6764466,13851763:-1143751 +) +(1,2960:6764466,13851763:1143751,807758,219026 +) +g1,2960:8107446,13851763 +g1,2960:8435126,13851763 +g1,2960:10143649,13851763 +g1,2960:11007413,13851763 +g1,2960:12433476,13851763 +g1,2960:13123570,13851763 +g1,2960:13692422,13851763 +g1,2960:16012396,13851763 +g1,2960:19008702,13851763 +g1,2960:20046137,13851763 +g1,2960:22398879,13851763 +g1,2960:24362337,13851763 +g1,2960:26043335,13851763 +(1,2960:26043335,13851763:0,414482,115847 +r1,3059:26753313,13851763:709978,530329,115847 +k1,2960:26043335,13851763:-709978 +) +(1,2960:26043335,13851763:709978,414482,115847 +k1,2960:26043335,13851763:3277 +h1,2960:26750036,13851763:0,411205,112570 +) +g1,2960:26957785,13851763 +g1,2960:28083693,13851763 +(1,2960:28083693,13851763:0,414482,115847 +r1,3059:29145382,13851763:1061689,530329,115847 +k1,2960:28083693,13851763:-1061689 +) +(1,2960:28083693,13851763:1061689,414482,115847 +k1,2960:28083693,13851763:3277 +h1,2960:29142105,13851763:0,411205,112570 +) +g1,2960:29564157,13851763 +k1,2960:32583029,13851763:539645 +g1,2961:32583029,13851763 +) +(1,2961:6764466,14716843:25818563,505283,126483 +k1,2960:7454241,14716843:202187 +k1,2960:8756125,14716843:202190 +k1,2960:9609743,14716843:202190 +(1,2960:9609743,14716843:0,452978,115847 +r1,3059:12078280,14716843:2468537,568825,115847 +k1,2960:9609743,14716843:-2468537 +) +(1,2960:9609743,14716843:2468537,452978,115847 +k1,2960:9609743,14716843:3277 +h1,2960:12075003,14716843:0,411205,112570 +) +k1,2960:12280470,14716843:202190 +k1,2960:14823605,14716843:202189 +k1,2960:15381655,14716843:202190 +(1,2960:15381655,14716843:0,452978,122846 +r1,3059:17850192,14716843:2468537,575824,122846 +k1,2960:15381655,14716843:-2468537 +) +(1,2960:15381655,14716843:2468537,452978,122846 +k1,2960:15381655,14716843:3277 +h1,2960:17846915,14716843:0,411205,112570 +) +k1,2960:18052382,14716843:202190 +k1,2960:20232449,14716843:202190 +k1,2960:21719145,14716843:202190 +k1,2960:22789687,14716843:202190 +k1,2960:24096159,14716843:202190 +k1,2960:25735554,14716843:202190 +k1,2960:26589171,14716843:202189 +(1,2960:26589171,14716843:0,452978,115847 +r1,3059:28354284,14716843:1765113,568825,115847 +k1,2960:26589171,14716843:-1765113 +) +(1,2960:26589171,14716843:1765113,452978,115847 +k1,2960:26589171,14716843:3277 +h1,2960:28351007,14716843:0,411205,112570 +) +k1,2960:28730144,14716843:202190 +k1,2960:29885883,14716843:202190 +k1,2960:31192355,14716843:202190 +k1,2960:32583029,14716843:0 +) +(1,2961:6764466,15581923:25818563,505283,134348 +k1,2960:7998161,15581923:214610 +k1,2960:12270760,15581923:214610 +k1,2960:14463248,15581923:214611 +(1,2960:14463248,15581923:0,414482,115847 +r1,3059:15876649,15581923:1413401,530329,115847 +k1,2960:14463248,15581923:-1413401 +) +(1,2960:14463248,15581923:1413401,414482,115847 +k1,2960:14463248,15581923:3277 +h1,2960:15873372,15581923:0,411205,112570 +) +k1,2960:16091259,15581923:214610 +k1,2960:17497314,15581923:214610 +k1,2960:19149129,15581923:214610 +k1,2960:19821836,15581923:214610 +k1,2960:20722608,15581923:214610 +k1,2960:24009547,15581923:214611 +k1,2960:24875585,15581923:214610 +(1,2960:24875585,15581923:0,452978,115847 +r1,3059:27344122,15581923:2468537,568825,115847 +k1,2960:24875585,15581923:-2468537 +) +(1,2960:24875585,15581923:2468537,452978,115847 +k1,2960:24875585,15581923:3277 +h1,2960:27340845,15581923:0,411205,112570 +) +k1,2960:27732402,15581923:214610 +k1,2960:28629897,15581923:214610 +k1,2960:32583029,15581923:0 +) +(1,2961:6764466,16447003:25818563,513147,7863 +g1,2960:8313081,16447003 +g1,2960:9531395,16447003 +g1,2960:12426120,16447003 +k1,2961:32583030,16447003:18553244 +g1,2961:32583030,16447003 +) +v1,2963:6764466,17131858:0,393216,0 +(1,2972:6764466,19625148:25818563,2886506,196608 +g1,2972:6764466,19625148 +g1,2972:6764466,19625148 +g1,2972:6567858,19625148 +(1,2972:6567858,19625148:0,2886506,196608 +r1,3059:32779637,19625148:26211779,3083114,196608 +k1,2972:6567857,19625148:-26211780 +) +(1,2972:6567858,19625148:26211779,2886506,196608 +[1,2972:6764466,19625148:25818563,2689898,0 +(1,2965:6764466,17359689:25818563,424439,106246 +(1,2964:6764466,17359689:0,0,0 +g1,2964:6764466,17359689 +g1,2964:6764466,17359689 +g1,2964:6436786,17359689 +(1,2964:6436786,17359689:0,0,0 +) +g1,2964:6764466,17359689 +) +g1,2965:8424236,17359689 +g1,2965:9420098,17359689 +g1,2965:12075730,17359689 +g1,2965:13071592,17359689 +g1,2965:13735500,17359689 +g1,2965:15063316,17359689 +k1,2965:15063316,17359689:12111 +h1,2965:16403243,17359689:0,0,0 +k1,2965:32583029,17359689:16179786 +g1,2965:32583029,17359689 +) +(1,2966:6764466,18044544:25818563,424439,106246 +h1,2966:6764466,18044544:0,0,0 +g1,2966:8424236,18044544 +g1,2966:9420098,18044544 +k1,2966:9420098,18044544:0 +h1,2966:13071592,18044544:0,0,0 +k1,2966:32583028,18044544:19511436 +g1,2966:32583028,18044544 +) +(1,2967:6764466,18729399:25818563,424439,106246 +h1,2967:6764466,18729399:0,0,0 +k1,2967:6764466,18729399:0 +h1,2967:9752052,18729399:0,0,0 +k1,2967:32583028,18729399:22830976 +g1,2967:32583028,18729399 +) +(1,2971:6764466,19545326:25818563,424439,79822 +(1,2969:6764466,19545326:0,0,0 +g1,2969:6764466,19545326 +g1,2969:6764466,19545326 +g1,2969:6436786,19545326 +(1,2969:6436786,19545326:0,0,0 +) +g1,2969:6764466,19545326 +) +g1,2971:7760328,19545326 +g1,2971:9088144,19545326 +h1,2971:10415960,19545326:0,0,0 +k1,2971:32583028,19545326:22167068 +g1,2971:32583028,19545326 +) +] +) +g1,2972:32583029,19625148 +g1,2972:6764466,19625148 +g1,2972:6764466,19625148 +g1,2972:32583029,19625148 +g1,2972:32583029,19625148 +) +h1,2972:6764466,19821756:0,0,0 +v1,2976:6764466,20506611:0,393216,0 +(1,2983:6764466,21630191:25818563,1516796,196608 +g1,2983:6764466,21630191 +g1,2983:6764466,21630191 +g1,2983:6567858,21630191 +(1,2983:6567858,21630191:0,1516796,196608 +r1,3059:32779637,21630191:26211779,1713404,196608 +k1,2983:6567857,21630191:-26211780 +) +(1,2983:6567858,21630191:26211779,1516796,196608 +[1,2983:6764466,21630191:25818563,1320188,0 +(1,2978:6764466,20734442:25818563,424439,79822 +(1,2977:6764466,20734442:0,0,0 +g1,2977:6764466,20734442 +g1,2977:6764466,20734442 +g1,2977:6436786,20734442 +(1,2977:6436786,20734442:0,0,0 +) +g1,2977:6764466,20734442 +) +k1,2978:6764466,20734442:0 +g1,2978:12407684,20734442 +g1,2978:13071592,20734442 +g1,2978:15395270,20734442 +k1,2978:15395270,20734442:0 +h1,2978:16723086,20734442:0,0,0 +k1,2978:32583029,20734442:15859943 +g1,2978:32583029,20734442 +) +(1,2982:6764466,21550369:25818563,424439,79822 +(1,2980:6764466,21550369:0,0,0 +g1,2980:6764466,21550369 +g1,2980:6764466,21550369 +g1,2980:6436786,21550369 +(1,2980:6436786,21550369:0,0,0 +) +g1,2980:6764466,21550369 +) +g1,2982:7760328,21550369 +g1,2982:9088144,21550369 +h1,2982:10415960,21550369:0,0,0 +k1,2982:32583028,21550369:22167068 +g1,2982:32583028,21550369 +) +] +) +g1,2983:32583029,21630191 +g1,2983:6764466,21630191 +g1,2983:6764466,21630191 +g1,2983:32583029,21630191 +g1,2983:32583029,21630191 +) +h1,2983:6764466,21826799:0,0,0 +] +g1,2986:32583029,21826799 +) +h1,2986:6630773,21826799:0,0,0 +v1,2989:6630773,22691879:0,393216,0 +(1,3003:6630773,27526479:25952256,5227816,0 +g1,3003:6630773,27526479 +g1,3003:6237557,27526479 +r1,3059:6368629,27526479:131072,5227816,0 +g1,3003:6567858,27526479 +g1,3003:6764466,27526479 +[1,3003:6764466,27526479:25818563,5227816,0 +(1,2990:6764466,23106421:25818563,807758,219026 +(1,2989:6764466,23106421:0,807758,219026 +r1,3059:7908217,23106421:1143751,1026784,219026 +k1,2989:6764466,23106421:-1143751 +) +(1,2989:6764466,23106421:1143751,807758,219026 +) +g1,2989:8107446,23106421 +g1,2989:8435126,23106421 +g1,2989:10143649,23106421 +g1,2989:11007413,23106421 +g1,2989:12433476,23106421 +g1,2989:13123570,23106421 +g1,2989:13692422,23106421 +g1,2989:16012396,23106421 +g1,2989:19008702,23106421 +g1,2989:20414449,23106421 +g1,2989:21326054,23106421 +g1,2989:23239705,23106421 +(1,2989:23239705,23106421:0,414482,115847 +r1,3059:23949683,23106421:709978,530329,115847 +k1,2989:23239705,23106421:-709978 +) +(1,2989:23239705,23106421:709978,414482,115847 +k1,2989:23239705,23106421:3277 +h1,2989:23946406,23106421:0,411205,112570 +) +g1,2989:24154155,23106421 +g1,2989:25280063,23106421 +(1,2989:25280063,23106421:0,414482,115847 +r1,3059:26341752,23106421:1061689,530329,115847 +k1,2989:25280063,23106421:-1061689 +) +(1,2989:25280063,23106421:1061689,414482,115847 +k1,2989:25280063,23106421:3277 +h1,2989:26338475,23106421:0,411205,112570 +) +g1,2989:26760527,23106421 +k1,2989:32583029,23106421:3343275 +g1,2990:32583029,23106421 +) +(1,2990:6764466,23971501:25818563,505283,126483 +k1,2989:8049875,23971501:235522 +k1,2989:11039876,23971501:235523 +k1,2989:14213377,23971501:235522 +k1,2989:15402448,23971501:235522 +k1,2989:17013572,23971501:235523 +k1,2989:18779360,23971501:235522 +k1,2989:19666311,23971501:235523 +k1,2989:22200181,23971501:235522 +(1,2989:22200181,23971501:0,452978,115847 +r1,3059:23965294,23971501:1765113,568825,115847 +k1,2989:22200181,23971501:-1765113 +) +(1,2989:22200181,23971501:1765113,452978,115847 +k1,2989:22200181,23971501:3277 +h1,2989:23962017,23971501:0,411205,112570 +) +k1,2989:24200816,23971501:235522 +k1,2989:25197867,23971501:235523 +(1,2989:25197867,23971501:0,452978,115847 +r1,3059:26962980,23971501:1765113,568825,115847 +k1,2989:25197867,23971501:-1765113 +) +(1,2989:25197867,23971501:1765113,452978,115847 +k1,2989:25197867,23971501:3277 +h1,2989:26959703,23971501:0,411205,112570 +) +k1,2989:27198502,23971501:235522 +k1,2989:28085452,23971501:235522 +k1,2989:30344727,23971501:235523 +k1,2989:31599334,23971501:235522 +k1,2990:32583029,23971501:0 +) +(1,2990:6764466,24836581:25818563,355205,7863 +k1,2990:32583028,24836581:24157880 +g1,2990:32583028,24836581 +) +v1,2992:6764466,25521436:0,393216,0 +(1,3000:6764466,27329871:25818563,2201651,196608 +g1,3000:6764466,27329871 +g1,3000:6764466,27329871 +g1,3000:6567858,27329871 +(1,3000:6567858,27329871:0,2201651,196608 +r1,3059:32779637,27329871:26211779,2398259,196608 +k1,3000:6567857,27329871:-26211780 +) +(1,3000:6567858,27329871:26211779,2201651,196608 +[1,3000:6764466,27329871:25818563,2005043,0 +(1,2994:6764466,25749267:25818563,424439,106246 +(1,2993:6764466,25749267:0,0,0 +g1,2993:6764466,25749267 +g1,2993:6764466,25749267 +g1,2993:6436786,25749267 +(1,2993:6436786,25749267:0,0,0 +) +g1,2993:6764466,25749267 +) +g1,2994:9088144,25749267 +g1,2994:10084006,25749267 +g1,2994:12739638,25749267 +h1,2994:13403546,25749267:0,0,0 +k1,2994:32583030,25749267:19179484 +g1,2994:32583030,25749267 +) +(1,2995:6764466,26434122:25818563,424439,106246 +h1,2995:6764466,26434122:0,0,0 +k1,2995:6764466,26434122:0 +h1,2995:12739637,26434122:0,0,0 +k1,2995:32583029,26434122:19843392 +g1,2995:32583029,26434122 +) +(1,2999:6764466,27250049:25818563,424439,79822 +(1,2997:6764466,27250049:0,0,0 +g1,2997:6764466,27250049 +g1,2997:6764466,27250049 +g1,2997:6436786,27250049 +(1,2997:6436786,27250049:0,0,0 +) +g1,2997:6764466,27250049 +) +g1,2999:7760328,27250049 +g1,2999:9088144,27250049 +h1,2999:10415960,27250049:0,0,0 +k1,2999:32583028,27250049:22167068 +g1,2999:32583028,27250049 +) +] +) +g1,3000:32583029,27329871 +g1,3000:6764466,27329871 +g1,3000:6764466,27329871 +g1,3000:32583029,27329871 +g1,3000:32583029,27329871 +) +h1,3000:6764466,27526479:0,0,0 +] +g1,3003:32583029,27526479 +) +h1,3003:6630773,27526479:0,0,0 +v1,3009:6630773,28391559:0,393216,0 +(1,3018:6630773,29922003:25952256,1923660,0 +g1,3018:6630773,29922003 +g1,3018:6237557,29922003 +r1,3059:6368629,29922003:131072,1923660,0 +g1,3018:6567858,29922003 +g1,3018:6764466,29922003 +[1,3018:6764466,29922003:25818563,1923660,0 +(1,3010:6764466,28699857:25818563,701514,196608 +(1,3009:6764466,28699857:0,701514,196608 +r1,3059:8010564,28699857:1246098,898122,196608 +k1,3009:6764466,28699857:-1246098 +) +(1,3009:6764466,28699857:1246098,701514,196608 +) +g1,3009:8209793,28699857 +g1,3009:8537473,28699857 +g1,3009:9933389,28699857 +g1,3009:11628805,28699857 +g1,3009:13696465,28699857 +g1,3009:16580704,28699857 +g1,3009:17546049,28699857 +g1,3009:20035106,28699857 +g1,3009:21628286,28699857 +g1,3009:23895831,28699857 +(1,3009:23895831,28699857:0,452978,115847 +r1,3059:26012656,28699857:2116825,568825,115847 +k1,3009:23895831,28699857:-2116825 +) +(1,3009:23895831,28699857:2116825,452978,115847 +k1,3009:23895831,28699857:3277 +h1,3009:26009379,28699857:0,411205,112570 +) +g1,3009:26385555,28699857 +(1,3009:26385555,28699857:0,452978,115847 +r1,3059:28502380,28699857:2116825,568825,115847 +k1,3009:26385555,28699857:-2116825 +) +(1,3009:26385555,28699857:2116825,452978,115847 +k1,3009:26385555,28699857:3277 +h1,3009:28499103,28699857:0,411205,112570 +) +g1,3009:28875279,28699857 +g1,3009:30265953,28699857 +g1,3009:31190010,28699857 +k1,3010:32583029,28699857:409979 +g1,3010:32583029,28699857 +) +v1,3012:6764466,29384712:0,393216,0 +(1,3016:6764466,29725395:25818563,733899,196608 +g1,3016:6764466,29725395 +g1,3016:6764466,29725395 +g1,3016:6567858,29725395 +(1,3016:6567858,29725395:0,733899,196608 +r1,3059:32779637,29725395:26211779,930507,196608 +k1,3016:6567857,29725395:-26211780 +) +(1,3016:6567858,29725395:26211779,733899,196608 +[1,3016:6764466,29725395:25818563,537291,0 +(1,3014:6764466,29612543:25818563,424439,112852 +(1,3013:6764466,29612543:0,0,0 +g1,3013:6764466,29612543 +g1,3013:6764466,29612543 +g1,3013:6436786,29612543 +(1,3013:6436786,29612543:0,0,0 +) +g1,3013:6764466,29612543 +) +k1,3014:6764466,29612543:0 +g1,3014:10747914,29612543 +g1,3014:11411822,29612543 +g1,3014:15063316,29612543 +g1,3014:15727224,29612543 +h1,3014:22366303,29612543:0,0,0 +k1,3014:32583029,29612543:10216726 +g1,3014:32583029,29612543 +) +] +) +g1,3016:32583029,29725395 +g1,3016:6764466,29725395 +g1,3016:6764466,29725395 +g1,3016:32583029,29725395 +g1,3016:32583029,29725395 +) +h1,3016:6764466,29922003:0,0,0 +] +g1,3018:32583029,29922003 +) +h1,3018:6630773,29922003:0,0,0 +(1,3020:6630773,32753163:25952256,32768,229376 +(1,3020:6630773,32753163:0,32768,229376 +(1,3020:6630773,32753163:5505024,32768,229376 +r1,3059:12135797,32753163:5505024,262144,229376 +) +k1,3020:6630773,32753163:-5505024 +) +(1,3020:6630773,32753163:25952256,32768,0 +r1,3059:32583029,32753163:25952256,32768,0 +) +) +(1,3020:6630773,34385015:25952256,606339,151780 +(1,3020:6630773,34385015:1974731,582746,14155 +g1,3020:6630773,34385015 +g1,3020:8605504,34385015 +) +g1,3020:13636310,34385015 +g1,3020:17688794,34385015 +g1,3020:19398497,34385015 +k1,3020:32583029,34385015:8970829 +g1,3020:32583029,34385015 +) +(1,3023:6630773,35643311:25952256,513147,134348 +k1,3022:10756163,35643311:249591 +k1,3022:14082670,35643311:249592 +k1,3022:16342906,35643311:249591 +k1,3022:18900676,35643311:249592 +k1,3022:19817423,35643311:249591 +(1,3022:19817423,35643311:0,452978,122846 +r1,3059:22285960,35643311:2468537,575824,122846 +k1,3022:19817423,35643311:-2468537 +) +(1,3022:19817423,35643311:2468537,452978,122846 +k1,3022:19817423,35643311:3277 +h1,3022:22282683,35643311:0,411205,112570 +) +k1,3022:22535552,35643311:249592 +k1,3022:24795788,35643311:249591 +k1,3022:26277457,35643311:249592 +k1,3022:28805735,35643311:249591 +h1,3022:29776323,35643311:0,0,0 +k1,3022:30025915,35643311:249592 +k1,3022:31084876,35643311:249591 +k1,3022:32583029,35643311:0 +) +(1,3023:6630773,36508391:25952256,505283,134348 +h1,3022:7427691,36508391:0,0,0 +g1,3022:8007684,36508391 +g1,3022:9600864,36508391 +g1,3022:11810738,36508391 +(1,3022:11810738,36508391:0,414482,115847 +r1,3059:13224139,36508391:1413401,530329,115847 +k1,3022:11810738,36508391:-1413401 +) +(1,3022:11810738,36508391:1413401,414482,115847 +k1,3022:11810738,36508391:3277 +h1,3022:13220862,36508391:0,411205,112570 +) +g1,3022:13423368,36508391 +g1,3022:14305482,36508391 +(1,3022:14305482,36508391:0,414482,115847 +r1,3059:16070595,36508391:1765113,530329,115847 +k1,3022:14305482,36508391:-1765113 +) +(1,3022:14305482,36508391:1765113,414482,115847 +k1,3022:14305482,36508391:3277 +h1,3022:16067318,36508391:0,411205,112570 +) +g1,3022:16269824,36508391 +g1,3022:19831050,36508391 +g1,3022:20839649,36508391 +g1,3022:22057963,36508391 +k1,3023:32583029,36508391:7589708 +g1,3023:32583029,36508391 +) +(1,3025:6630773,37373471:25952256,513147,126483 +h1,3024:6630773,37373471:983040,0,0 +k1,3024:10380559,37373471:196424 +(1,3024:10587653,37373471:0,414482,115847 +r1,3059:11297631,37373471:709978,530329,115847 +k1,3024:10587653,37373471:-709978 +) +(1,3024:10587653,37373471:709978,414482,115847 +k1,3024:10587653,37373471:3277 +h1,3024:11294354,37373471:0,411205,112570 +) +k1,3024:11701149,37373471:196424 +k1,3024:13089017,37373471:196423 +k1,3024:16448208,37373471:196424 +(1,3024:16655302,37373471:0,424981,115847 +r1,3059:17365280,37373471:709978,540828,115847 +k1,3024:16655302,37373471:-709978 +) +(1,3024:16655302,37373471:709978,424981,115847 +k1,3024:16655302,37373471:3277 +h1,3024:17362003,37373471:0,411205,112570 +) +k1,3024:17768798,37373471:196424 +k1,3024:21042137,37373471:196424 +k1,3024:22230121,37373471:196424 +k1,3024:24808123,37373471:196424 +k1,3024:26070817,37373471:196423 +k1,3024:27642842,37373471:196424 +k1,3024:28786917,37373471:196424 +(1,3024:28786917,37373471:0,452978,115847 +r1,3059:31255454,37373471:2468537,568825,115847 +k1,3024:28786917,37373471:-2468537 +) +(1,3024:28786917,37373471:2468537,452978,115847 +k1,3024:28786917,37373471:3277 +h1,3024:31252177,37373471:0,411205,112570 +) +k1,3024:31451878,37373471:196424 +k1,3025:32583029,37373471:0 +) +(1,3025:6630773,38238551:25952256,513147,126483 +k1,3024:7886160,38238551:162902 +k1,3024:9121232,38238551:162903 +k1,3024:10569950,38238551:162902 +k1,3024:11680504,38238551:162903 +(1,3024:11680504,38238551:0,452978,115847 +r1,3059:14852464,38238551:3171960,568825,115847 +k1,3024:11680504,38238551:-3171960 +) +(1,3024:11680504,38238551:3171960,452978,115847 +k1,3024:11680504,38238551:3277 +h1,3024:14849187,38238551:0,411205,112570 +) +k1,3024:15015366,38238551:162902 +k1,3024:16369714,38238551:162903 +k1,3024:18134316,38238551:162902 +k1,3024:19999188,38238551:162902 +k1,3024:22324124,38238551:162903 +k1,3024:23678471,38238551:162902 +k1,3024:25593151,38238551:162903 +k1,3024:27458023,38238551:162902 +k1,3024:29805241,38238551:162903 +k1,3024:30714598,38238551:162902 +k1,3024:32583029,38238551:0 +) +(1,3025:6630773,39103631:25952256,513147,134348 +k1,3024:8177695,39103631:262416 +k1,3024:11186726,39103631:262417 +(1,3024:11186726,39103631:0,414482,115847 +r1,3059:11544992,39103631:358266,530329,115847 +k1,3024:11186726,39103631:-358266 +) +(1,3024:11186726,39103631:358266,414482,115847 +k1,3024:11186726,39103631:3277 +h1,3024:11541715,39103631:0,411205,112570 +) +k1,3024:11807408,39103631:262416 +k1,3024:12601322,39103631:262417 +k1,3024:13634441,39103631:262416 +k1,3024:17817877,39103631:262417 +k1,3024:19593519,39103631:262416 +k1,3024:22752626,39103631:262416 +k1,3024:23674335,39103631:262417 +k1,3024:24955836,39103631:262416 +k1,3024:28864021,39103631:262417 +k1,3024:31873051,39103631:262416 +(1,3024:31873051,39103631:0,414482,115847 +r1,3059:32583029,39103631:709978,530329,115847 +k1,3024:31873051,39103631:-709978 +) +(1,3024:31873051,39103631:709978,414482,115847 +k1,3024:31873051,39103631:3277 +h1,3024:32579752,39103631:0,411205,112570 +) +k1,3024:32583029,39103631:0 +) +(1,3025:6630773,39968711:25952256,505283,126483 +g1,3024:8781664,39968711 +g1,3024:10423340,39968711 +g1,3024:10978429,39968711 +g1,3024:14931560,39968711 +k1,3025:32583029,39968711:14731185 +g1,3025:32583029,39968711 +) +v1,3027:6630773,40653566:0,393216,0 +(1,3053:6630773,45510161:25952256,5249811,196608 +g1,3053:6630773,45510161 +g1,3053:6630773,45510161 +g1,3053:6434165,45510161 +(1,3053:6434165,45510161:0,5249811,196608 +r1,3059:32779637,45510161:26345472,5446419,196608 +k1,3053:6434165,45510161:-26345472 +) +(1,3053:6434165,45510161:26345472,5249811,196608 +[1,3053:6630773,45510161:25952256,5053203,0 +(1,3029:6630773,40881397:25952256,424439,106246 +(1,3028:6630773,40881397:0,0,0 +g1,3028:6630773,40881397 +g1,3028:6630773,40881397 +g1,3028:6303093,40881397 +(1,3028:6303093,40881397:0,0,0 +) +g1,3028:6630773,40881397 +) +g1,3029:7294681,40881397 +g1,3029:8290543,40881397 +g1,3029:10282267,40881397 +g1,3029:11942037,40881397 +g1,3029:12937899,40881397 +g1,3029:14265715,40881397 +g1,3029:15593531,40881397 +g1,3029:16257439,40881397 +k1,3029:16257439,40881397:0 +h1,3029:18581117,40881397:0,0,0 +k1,3029:32583029,40881397:14001912 +g1,3029:32583029,40881397 +) +(1,3030:6630773,41566252:25952256,424439,6605 +h1,3030:6630773,41566252:0,0,0 +g1,3030:8622497,41566252 +g1,3030:9618359,41566252 +h1,3030:10946175,41566252:0,0,0 +k1,3030:32583029,41566252:21636854 +g1,3030:32583029,41566252 +) +(1,3034:6630773,42118264:25952256,424439,79822 +(1,3032:6630773,42118264:0,0,0 +g1,3032:6630773,42118264 +g1,3032:6630773,42118264 +g1,3032:6303093,42118264 +(1,3032:6303093,42118264:0,0,0 +) +g1,3032:6630773,42118264 +) +g1,3034:7626635,42118264 +g1,3034:8954451,42118264 +h1,3034:10614221,42118264:0,0,0 +k1,3034:32583029,42118264:21968808 +g1,3034:32583029,42118264 +) +(1,3036:6630773,42670277:25952256,424439,8257 +(1,3035:6630773,42670277:0,0,0 +g1,3035:6630773,42670277 +g1,3035:6630773,42670277 +g1,3035:6303093,42670277 +(1,3035:6303093,42670277:0,0,0 +) +g1,3035:6630773,42670277 +) +g1,3036:8622497,42670277 +g1,3036:9618359,42670277 +h1,3036:11278129,42670277:0,0,0 +k1,3036:32583029,42670277:21304900 +g1,3036:32583029,42670277 +) +(1,3040:6630773,43222289:25952256,424439,79822 +(1,3038:6630773,43222289:0,0,0 +g1,3038:6630773,43222289 +g1,3038:6630773,43222289 +g1,3038:6303093,43222289 +(1,3038:6303093,43222289:0,0,0 +) +g1,3038:6630773,43222289 +) +g1,3040:7626635,43222289 +g1,3040:8954451,43222289 +h1,3040:10614221,43222289:0,0,0 +k1,3040:32583029,43222289:21968808 +g1,3040:32583029,43222289 +) +(1,3042:6630773,43774302:25952256,424439,6605 +(1,3041:6630773,43774302:0,0,0 +g1,3041:6630773,43774302 +g1,3041:6630773,43774302 +g1,3041:6303093,43774302 +(1,3041:6303093,43774302:0,0,0 +) +g1,3041:6630773,43774302 +) +g1,3042:8622497,43774302 +g1,3042:9618359,43774302 +h1,3042:10946175,43774302:0,0,0 +k1,3042:32583029,43774302:21636854 +g1,3042:32583029,43774302 +) +(1,3046:6630773,44326314:25952256,424439,79822 +(1,3044:6630773,44326314:0,0,0 +g1,3044:6630773,44326314 +g1,3044:6630773,44326314 +g1,3044:6303093,44326314 +(1,3044:6303093,44326314:0,0,0 +) +g1,3044:6630773,44326314 +) +g1,3046:7626635,44326314 +g1,3046:8954451,44326314 +h1,3046:10282267,44326314:0,0,0 +k1,3046:32583029,44326314:22300762 +g1,3046:32583029,44326314 +) +(1,3048:6630773,44878327:25952256,424439,8257 +(1,3047:6630773,44878327:0,0,0 +g1,3047:6630773,44878327 +g1,3047:6630773,44878327 +g1,3047:6303093,44878327 +(1,3047:6303093,44878327:0,0,0 +) +g1,3047:6630773,44878327 +) +g1,3048:8622497,44878327 +g1,3048:9618359,44878327 +h1,3048:11278129,44878327:0,0,0 +k1,3048:32583029,44878327:21304900 +g1,3048:32583029,44878327 ) -g1,4198:27939956,34105500 +(1,3052:6630773,45430339:25952256,424439,79822 +(1,3050:6630773,45430339:0,0,0 +g1,3050:6630773,45430339 +g1,3050:6630773,45430339 +g1,3050:6303093,45430339 +(1,3050:6303093,45430339:0,0,0 ) +g1,3050:6630773,45430339 ) -g1,4198:27223779,34105500 -g1,4198:27223779,34105500 +g1,3052:7626635,45430339 +g1,3052:8954451,45430339 +h1,3052:10282267,45430339:0,0,0 +k1,3052:32583029,45430339:22300762 +g1,3052:32583029,45430339 ) +] ) -g1,4198:27223779,34105500 +g1,3053:32583029,45510161 +g1,3053:6630773,45510161 +g1,3053:6630773,45510161 +g1,3053:32583029,45510161 +g1,3053:32583029,45510161 ) +h1,3053:6630773,45706769:0,0,0 +] +(1,3059:32583029,45706769:0,0,0 +g1,3059:32583029,45706769 ) -g1,4198:27223779,34105500 -(1,4198:27223779,34105500:665744,798978,532510 -g1,4198:27889523,34105500 -g1,4198:27889523,34105500 ) -g1,4198:27889523,34105500 -(1,4198:27889523,34105500:639530,798978,532510 -g1,4198:27889523,34105500 -g1,4198:28529053,34105500 -(1,4198:28529053,34105500:0,798978,532510 -(1,4198:28529053,34105500:0,0,0 -(1,4198:28529053,34105500:0,0,0 -g1,4198:28529053,34105500 -g1,4198:28529053,34105500 -g1,4198:28529053,34105500 -g1,4198:28529053,34105500 -g1,4198:28529053,34105500 -(1,4198:28529053,34105500:0,0,0 -(1,4198:28529053,34105500:542638,466322,199855 -(1,4198:28529053,34105500:542638,466322,199855 -r1,4247:29071691,34105500:0,666177,199855 +] +(1,3059:6630773,47279633:25952256,0,0 +h1,3059:6630773,47279633:25952256,0,0 ) -g1,4198:29071691,34105500 +] +(1,3059:4262630,4025873:0,0,0 +[1,3059:-473656,4025873:0,0,0 +(1,3059:-473656,-710413:0,0,0 +(1,3059:-473656,-710413:0,0,0 +g1,3059:-473656,-710413 ) +g1,3059:-473656,-710413 ) -g1,4198:28529053,34105500 -g1,4198:28529053,34105500 +] ) +] +!30912 +}65 +Input:606:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:607:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:608:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!290 +{66 +[1,3175:4262630,47279633:28320399,43253760,0 +(1,3175:4262630,4025873:0,0,0 +[1,3175:-473656,4025873:0,0,0 +(1,3175:-473656,-710413:0,0,0 +(1,3175:-473656,-644877:0,0,0 +k1,3175:-473656,-644877:-65536 ) -g1,4198:28529053,34105500 +(1,3175:-473656,4736287:0,0,0 +k1,3175:-473656,4736287:5209943 ) +g1,3175:-473656,-710413 ) -g1,4198:28529053,34105500 -(1,4198:28529053,34105500:665744,798978,532510 -g1,4198:29194797,34105500 -g1,4198:29194797,34105500 +] ) -g1,4198:29194797,34105500 -(1,4198:29194797,34105500:639530,798978,532510 -g1,4198:29194797,34105500 -g1,4198:29834327,34105500 -(1,4198:29834327,34105500:0,798978,532510 -(1,4198:29834327,34105500:0,0,0 -(1,4198:29834327,34105500:0,0,0 -g1,4198:29834327,34105500 -g1,4198:29834327,34105500 -g1,4198:29834327,34105500 -g1,4198:29834327,34105500 -g1,4198:29834327,34105500 -(1,4198:29834327,34105500:0,0,0 -(1,4198:29834327,34105500:550502,466322,199855 -(1,4198:29834327,34105500:550502,466322,199855 -r1,4247:30384829,34105500:0,666177,199855 +[1,3175:6630773,47279633:25952256,43253760,0 +[1,3175:6630773,4812305:25952256,786432,0 +(1,3175:6630773,4812305:25952256,505283,126483 +(1,3175:6630773,4812305:25952256,505283,126483 +g1,3175:3078558,4812305 +[1,3175:3078558,4812305:0,0,0 +(1,3175:3078558,2439708:0,1703936,0 +k1,3175:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,3175:2537886,2439708:1179648,16384,0 ) -g1,4198:30384829,34105500 +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,3175:3078558,1915420:16384,1179648,0 ) +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) -g1,4198:29834327,34105500 -g1,4198:29834327,34105500 +] ) ) -g1,4198:29834327,34105500 ) +] +[1,3175:3078558,4812305:0,0,0 +(1,3175:3078558,2439708:0,1703936,0 +g1,3175:29030814,2439708 +g1,3175:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,3175:36151628,1915420:16384,1179648,0 ) -g1,4198:29834327,34105500 -(1,4198:29834327,34105500:665744,798978,532510 -g1,4198:30500071,34105500 -g1,4198:30500071,34105500 -) -g1,4198:30500071,34105500 +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) ] ) -) -g1,4198:17421117,34105500 -g1,4198:17421117,34105500 +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,3175:37855564,2439708:1179648,16384,0 ) ) -g1,4198:17421117,34105500 -g1,4199:17421117,34105500 -(1,4199:17421117,34105500:0,0,0 -(1,4199:17421117,34105500:0,0,0 -g1,4199:17421117,34105500 -g1,4199:17421117,34105500 -g1,4199:17421117,34105500 -g1,4199:17421117,34105500 -g1,4199:17421117,34105500 -(1,4199:17421117,34105500:0,0,0 -(1,4199:17421117,34105500:0,0,0 -h1,4199:17421117,34105500:0,0,0 -g1,4199:17421117,34105500 +k1,3175:3078556,2439708:-34777008 ) +] +[1,3175:3078558,4812305:0,0,0 +(1,3175:3078558,49800853:0,16384,2228224 +k1,3175:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,3175:2537886,49800853:1179648,16384,0 ) -g1,4199:17421117,34105500 -g1,4199:17421117,34105500 +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,3175:3078558,51504789:16384,1179648,0 ) +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) -g1,4199:17421117,34105500 -g1,4203:17421117,34105500 -g1,4203:17421117,34105500 -g1,4205:17421117,34105500 -(1,4205:17421117,34105500:0,0,0 -(1,4205:17421117,34105500:0,0,0 -g1,4205:17421117,34105500 -(1,4205:17421117,34105500:0,0,0 -(1,4205:17421117,34105500:1976140,469599,203132 -(1,4205:17421117,34105500:1976140,469599,203132 -(1,4205:17421117,34105500:0,469599,203132 -r1,4247:19397257,34105500:1976140,672731,203132 -k1,4205:17421117,34105500:-1976140 +] ) -(1,4205:17421117,34105500:1976140,469599,203132 -r1,4247:17424394,34105500:0,666177,199855 -g1,4205:17705763,34105500 -h1,4205:18831241,34105500:562739,252906,0 -h1,4205:19393980,34105500:0,328964,90056 ) ) -g1,4205:19397257,34105500 +] +[1,3175:3078558,4812305:0,0,0 +(1,3175:3078558,49800853:0,16384,2228224 +g1,3175:29030814,49800853 +g1,3175:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,3175:36151628,51504789:16384,1179648,0 ) +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 ) -g1,4205:17421117,34105500 -g1,4205:17421117,34105500 +] ) +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,3175:37855564,49800853:1179648,16384,0 ) -g1,4205:17421117,34105500 -g1,4207:17421117,34105500 -(1,4207:17421117,34105500:0,0,0 -(1,4207:17421117,34105500:0,0,0 -g1,4207:17421117,34105500 -g1,4207:17421117,34105500 -g1,4207:17421117,34105500 -g1,4207:17421117,34105500 -g1,4207:17421117,34105500 -(1,4207:17421117,34105500:0,0,0 -(1,4207:17421117,34105500:6599312,404226,101187 -(1,4207:17421117,34105500:6599312,404226,101187 -(1,4207:17421117,34105500:0,363038,98932 -r1,4247:19397257,34105500:1976140,461970,98932 -k1,4207:17421117,34105500:-1976140 ) -(1,4207:17421117,34105500:1976140,363038,98932 -k1,4207:17421117,34105500:3277 -h1,4207:19393980,34105500:0,328964,90056 +k1,3175:3078556,49800853:-34777008 ) -g1,4207:19562932,34105500 -g1,4207:22234704,34105500 +] +g1,3175:6630773,4812305 +g1,3175:6630773,4812305 +g1,3175:10646819,4812305 +g1,3175:13853495,4812305 +g1,3175:15263174,4812305 +g1,3175:18764762,4812305 +k1,3175:31786111,4812305:13021349 ) -g1,4207:24020429,34105500 ) +] +[1,3175:6630773,45706769:25952256,40108032,0 +(1,3175:6630773,45706769:25952256,40108032,0 +(1,3175:6630773,45706769:0,0,0 +g1,3175:6630773,45706769 ) -g1,4207:17421117,34105500 -g1,4207:17421117,34105500 +[1,3175:6630773,45706769:25952256,40108032,0 +(1,3057:6630773,6254097:25952256,513147,134348 +h1,3056:6630773,6254097:983040,0,0 +k1,3056:8431661,6254097:190013 +k1,3056:9640759,6254097:190013 +k1,3056:11197854,6254097:190014 +k1,3056:12055023,6254097:190013 +(1,3056:12055023,6254097:0,452978,115847 +r1,3175:14523560,6254097:2468537,568825,115847 +k1,3056:12055023,6254097:-2468537 ) +(1,3056:12055023,6254097:2468537,452978,115847 +k1,3056:12055023,6254097:3277 +h1,3056:14520283,6254097:0,411205,112570 +) +k1,3056:14713573,6254097:190013 +k1,3056:16914231,6254097:190013 +k1,3056:20331237,6254097:190013 +k1,3056:24605454,6254097:190013 +k1,3056:25787028,6254097:190014 +k1,3056:29590041,6254097:190013 +k1,3056:30971499,6254097:190013 +k1,3057:32583029,6254097:0 +) +(1,3057:6630773,7119177:25952256,513147,126483 +g1,3056:8658456,7119177 +g1,3056:11934600,7119177 +g1,3056:13125389,7119177 +k1,3057:32583030,7119177:16902392 +g1,3057:32583030,7119177 +) +v1,3059:6630773,7804032:0,393216,0 +(1,3096:6630773,17070366:25952256,9659550,196608 +g1,3096:6630773,17070366 +g1,3096:6630773,17070366 +g1,3096:6434165,17070366 +(1,3096:6434165,17070366:0,9659550,196608 +r1,3175:32779637,17070366:26345472,9856158,196608 +k1,3096:6434165,17070366:-26345472 +) +(1,3096:6434165,17070366:26345472,9659550,196608 +[1,3096:6630773,17070366:25952256,9462942,0 +(1,3061:6630773,8015347:25952256,407923,9908 +(1,3060:6630773,8015347:0,0,0 +g1,3060:6630773,8015347 +g1,3060:6630773,8015347 +g1,3060:6303093,8015347 +(1,3060:6303093,8015347:0,0,0 +) +g1,3060:6630773,8015347 +) +g1,3061:7958589,8015347 +g1,3061:8622497,8015347 +h1,3061:9618359,8015347:0,0,0 +k1,3061:32583029,8015347:22964670 +g1,3061:32583029,8015347 +) +(1,3065:6630773,8831274:25952256,424439,79822 +(1,3063:6630773,8831274:0,0,0 +g1,3063:6630773,8831274 +g1,3063:6630773,8831274 +g1,3063:6303093,8831274 +(1,3063:6303093,8831274:0,0,0 +) +g1,3063:6630773,8831274 +) +g1,3065:7626635,8831274 +g1,3065:8954451,8831274 +h1,3065:10282267,8831274:0,0,0 +k1,3065:32583029,8831274:22300762 +g1,3065:32583029,8831274 +) +(1,3067:6630773,9647201:25952256,407923,9908 +(1,3066:6630773,9647201:0,0,0 +g1,3066:6630773,9647201 +g1,3066:6630773,9647201 +g1,3066:6303093,9647201 +(1,3066:6303093,9647201:0,0,0 +) +g1,3066:6630773,9647201 +) +g1,3067:7958589,9647201 +g1,3067:8954451,9647201 +h1,3067:9950313,9647201:0,0,0 +k1,3067:32583029,9647201:22632716 +g1,3067:32583029,9647201 +) +(1,3071:6630773,10463128:25952256,424439,79822 +(1,3069:6630773,10463128:0,0,0 +g1,3069:6630773,10463128 +g1,3069:6630773,10463128 +g1,3069:6303093,10463128 +(1,3069:6303093,10463128:0,0,0 +) +g1,3069:6630773,10463128 +) +g1,3071:7626635,10463128 +g1,3071:8954451,10463128 +h1,3071:10282267,10463128:0,0,0 +k1,3071:32583029,10463128:22300762 +g1,3071:32583029,10463128 +) +(1,3073:6630773,11279055:25952256,407923,9908 +(1,3072:6630773,11279055:0,0,0 +g1,3072:6630773,11279055 +g1,3072:6630773,11279055 +g1,3072:6303093,11279055 +(1,3072:6303093,11279055:0,0,0 +) +g1,3072:6630773,11279055 +) +g1,3073:7958589,11279055 +g1,3073:8954451,11279055 +h1,3073:9950313,11279055:0,0,0 +k1,3073:32583029,11279055:22632716 +g1,3073:32583029,11279055 +) +(1,3077:6630773,12094982:25952256,424439,79822 +(1,3075:6630773,12094982:0,0,0 +g1,3075:6630773,12094982 +g1,3075:6630773,12094982 +g1,3075:6303093,12094982 +(1,3075:6303093,12094982:0,0,0 +) +g1,3075:6630773,12094982 +) +g1,3077:7626635,12094982 +g1,3077:8954451,12094982 +h1,3077:10614221,12094982:0,0,0 +k1,3077:32583029,12094982:21968808 +g1,3077:32583029,12094982 +) +(1,3079:6630773,12910909:25952256,407923,9908 +(1,3078:6630773,12910909:0,0,0 +g1,3078:6630773,12910909 +g1,3078:6630773,12910909 +g1,3078:6303093,12910909 +(1,3078:6303093,12910909:0,0,0 +) +g1,3078:6630773,12910909 +) +g1,3079:7958589,12910909 +g1,3079:8954451,12910909 +h1,3079:9950313,12910909:0,0,0 +k1,3079:32583029,12910909:22632716 +g1,3079:32583029,12910909 +) +(1,3083:6630773,13726836:25952256,424439,79822 +(1,3081:6630773,13726836:0,0,0 +g1,3081:6630773,13726836 +g1,3081:6630773,13726836 +g1,3081:6303093,13726836 +(1,3081:6303093,13726836:0,0,0 +) +g1,3081:6630773,13726836 +) +g1,3083:7626635,13726836 +g1,3083:8954451,13726836 +h1,3083:10282267,13726836:0,0,0 +k1,3083:32583029,13726836:22300762 +g1,3083:32583029,13726836 +) +(1,3085:6630773,14542763:25952256,407923,9908 +(1,3084:6630773,14542763:0,0,0 +g1,3084:6630773,14542763 +g1,3084:6630773,14542763 +g1,3084:6303093,14542763 +(1,3084:6303093,14542763:0,0,0 +) +g1,3084:6630773,14542763 +) +g1,3085:7958589,14542763 +g1,3085:8954451,14542763 +h1,3085:9950313,14542763:0,0,0 +k1,3085:32583029,14542763:22632716 +g1,3085:32583029,14542763 +) +(1,3089:6630773,15358690:25952256,424439,79822 +(1,3087:6630773,15358690:0,0,0 +g1,3087:6630773,15358690 +g1,3087:6630773,15358690 +g1,3087:6303093,15358690 +(1,3087:6303093,15358690:0,0,0 +) +g1,3087:6630773,15358690 +) +g1,3089:7626635,15358690 +g1,3089:8954451,15358690 +h1,3089:10614221,15358690:0,0,0 +k1,3089:32583029,15358690:21968808 +g1,3089:32583029,15358690 +) +(1,3091:6630773,16174617:25952256,407923,9908 +(1,3090:6630773,16174617:0,0,0 +g1,3090:6630773,16174617 +g1,3090:6630773,16174617 +g1,3090:6303093,16174617 +(1,3090:6303093,16174617:0,0,0 +) +g1,3090:6630773,16174617 +) +g1,3091:7958589,16174617 +g1,3091:8622497,16174617 +h1,3091:9618359,16174617:0,0,0 +k1,3091:32583029,16174617:22964670 +g1,3091:32583029,16174617 +) +(1,3095:6630773,16990544:25952256,424439,79822 +(1,3093:6630773,16990544:0,0,0 +g1,3093:6630773,16990544 +g1,3093:6630773,16990544 +g1,3093:6303093,16990544 +(1,3093:6303093,16990544:0,0,0 +) +g1,3093:6630773,16990544 +) +g1,3095:7626635,16990544 +g1,3095:8954451,16990544 +h1,3095:10614221,16990544:0,0,0 +k1,3095:32583029,16990544:21968808 +g1,3095:32583029,16990544 +) +] +) +g1,3096:32583029,17070366 +g1,3096:6630773,17070366 +g1,3096:6630773,17070366 +g1,3096:32583029,17070366 +g1,3096:32583029,17070366 +) +h1,3096:6630773,17266974:0,0,0 +(1,3100:6630773,18132054:25952256,513147,134348 +h1,3099:6630773,18132054:983040,0,0 +k1,3099:9724962,18132054:236819 +k1,3099:13038696,18132054:236819 +k1,3099:14379797,18132054:236819 +k1,3099:15364382,18132054:236819 +k1,3099:17114427,18132054:236819 +k1,3099:18160616,18132054:236819 +k1,3099:20705613,18132054:236819 +k1,3099:21601724,18132054:236819 +k1,3099:22970350,18132054:236819 +k1,3099:25394105,18132054:236819 +k1,3099:28631818,18132054:236819 +k1,3099:29554799,18132054:236819 +k1,3099:30147478,18132054:236819 +k1,3099:32227169,18132054:236819 +k1,3099:32583029,18132054:0 +) +(1,3100:6630773,18997134:25952256,505283,134348 +k1,3099:8935300,18997134:234900 +k1,3099:11148076,18997134:234899 +k1,3099:12069138,18997134:234900 +k1,3099:13692746,18997134:234900 +k1,3099:14613808,18997134:234900 +k1,3099:15867792,18997134:234899 +k1,3099:18425943,18997134:234900 +k1,3099:21476925,18997134:234900 +k1,3099:22339659,18997134:234899 +k1,3099:24276529,18997134:234900 +k1,3099:26640038,18997134:234900 +k1,3099:28255126,18997134:234900 +k1,3099:30713006,18997134:234899 +k1,3099:31563944,18997134:234900 +k1,3099:32583029,18997134:0 +) +(1,3100:6630773,19862214:25952256,505283,134348 +k1,3099:8511874,19862214:227628 +k1,3099:9977478,19862214:227629 +k1,3099:10891268,19862214:227628 +k1,3099:12137981,19862214:227628 +k1,3099:15641754,19862214:227628 +k1,3099:18946298,19862214:227629 +k1,3099:22263949,19862214:227628 +k1,3099:23300947,19862214:227628 +k1,3099:25026728,19862214:227628 +h1,3099:25823646,19862214:0,0,0 +k1,3099:26224945,19862214:227629 +k1,3099:27961212,19862214:227628 +k1,3099:31591469,19862214:227628 +k1,3099:32583029,19862214:0 +) +(1,3100:6630773,20727294:25952256,513147,126483 +k1,3099:9504901,20727294:236959 +k1,3099:11439899,20727294:236960 +k1,3099:14148876,20727294:236959 +k1,3099:15937728,20727294:236959 +k1,3099:16640648,20727294:236959 +k1,3099:18048081,20727294:236960 +k1,3099:19100308,20727294:236959 +k1,3099:20403538,20727294:236959 +k1,3099:22363440,20727294:236960 +k1,3099:24149015,20727294:236959 +k1,3099:26066317,20727294:236959 +k1,3099:26834773,20727294:236959 +k1,3099:29109903,20727294:236960 +k1,3099:29962900,20727294:236959 +k1,3099:32583029,20727294:0 +) +(1,3100:6630773,21592374:25952256,513147,115847 +g1,3099:8807879,21592374 +(1,3099:8807879,21592374:0,414482,115847 +r1,3175:9166145,21592374:358266,530329,115847 +k1,3099:8807879,21592374:-358266 +) +(1,3099:8807879,21592374:358266,414482,115847 +k1,3099:8807879,21592374:3277 +h1,3099:9162868,21592374:0,411205,112570 +) +g1,3099:9539044,21592374 +g1,3099:10830758,21592374 +(1,3099:10830758,21592374:0,452978,115847 +r1,3175:13651007,21592374:2820249,568825,115847 +k1,3099:10830758,21592374:-2820249 +) +(1,3099:10830758,21592374:2820249,452978,115847 +k1,3099:10830758,21592374:3277 +h1,3099:13647730,21592374:0,411205,112570 +) +g1,3099:13850236,21592374 +g1,3099:15562691,21592374 +g1,3099:16781005,21592374 +g1,3099:18286367,21592374 +g1,3099:19981783,21592374 +g1,3099:23367372,21592374 +g1,3099:25435032,21592374 +g1,3099:26285689,21592374 +g1,3099:27509901,21592374 +g1,3099:28497528,21592374 +k1,3100:32583029,21592374:1162595 +g1,3100:32583029,21592374 +) +v1,3102:6630773,22277229:0,393216,0 +(1,3153:6630773,36176981:25952256,14292968,196608 +g1,3153:6630773,36176981 +g1,3153:6630773,36176981 +g1,3153:6434165,36176981 +(1,3153:6434165,36176981:0,14292968,196608 +r1,3175:32779637,36176981:26345472,14489576,196608 +k1,3153:6434165,36176981:-26345472 +) +(1,3153:6434165,36176981:26345472,14292968,196608 +[1,3153:6630773,36176981:25952256,14096360,0 +(1,3104:6630773,22488544:25952256,407923,9908 +(1,3103:6630773,22488544:0,0,0 +g1,3103:6630773,22488544 +g1,3103:6630773,22488544 +g1,3103:6303093,22488544 +(1,3103:6303093,22488544:0,0,0 +) +g1,3103:6630773,22488544 +) +g1,3104:8290543,22488544 +g1,3104:9286405,22488544 +h1,3104:10614221,22488544:0,0,0 +k1,3104:32583029,22488544:21968808 +g1,3104:32583029,22488544 +) +(1,3105:6630773,23173399:25952256,407923,9908 +h1,3105:6630773,23173399:0,0,0 +g1,3105:8290543,23173399 +g1,3105:8954451,23173399 +h1,3105:9286405,23173399:0,0,0 +k1,3105:32583029,23173399:23296624 +g1,3105:32583029,23173399 +) +(1,3109:6630773,23989326:25952256,424439,79822 +(1,3107:6630773,23989326:0,0,0 +g1,3107:6630773,23989326 +g1,3107:6630773,23989326 +g1,3107:6303093,23989326 +(1,3107:6303093,23989326:0,0,0 +) +g1,3107:6630773,23989326 +) +g1,3109:7626635,23989326 +g1,3109:7958589,23989326 +g1,3109:9286405,23989326 +g1,3109:11278129,23989326 +g1,3109:13269853,23989326 +g1,3109:15261577,23989326 +g1,3109:17253301,23989326 +g1,3109:19245025,23989326 +g1,3109:19576979,23989326 +g1,3109:21236749,23989326 +g1,3109:21568703,23989326 +g1,3109:23228473,23989326 +g1,3109:23560427,23989326 +g1,3109:25220197,23989326 +g1,3109:25552151,23989326 +g1,3109:27211921,23989326 +g1,3109:27543875,23989326 +h1,3109:28871691,23989326:0,0,0 +k1,3109:32583029,23989326:3711338 +g1,3109:32583029,23989326 +) +(1,3111:6630773,24805253:25952256,407923,9908 +(1,3110:6630773,24805253:0,0,0 +g1,3110:6630773,24805253 +g1,3110:6630773,24805253 +g1,3110:6303093,24805253 +(1,3110:6303093,24805253:0,0,0 +) +g1,3110:6630773,24805253 +) +g1,3111:8290543,24805253 +g1,3111:8954451,24805253 +h1,3111:9286405,24805253:0,0,0 +k1,3111:32583029,24805253:23296624 +g1,3111:32583029,24805253 +) +(1,3115:6630773,25621180:25952256,424439,79822 +(1,3113:6630773,25621180:0,0,0 +g1,3113:6630773,25621180 +g1,3113:6630773,25621180 +g1,3113:6303093,25621180 +(1,3113:6303093,25621180:0,0,0 +) +g1,3113:6630773,25621180 +) +g1,3115:7626635,25621180 +g1,3115:7958589,25621180 +g1,3115:9286405,25621180 +g1,3115:9618359,25621180 +g1,3115:11278129,25621180 +g1,3115:11610083,25621180 +g1,3115:13269853,25621180 +g1,3115:13601807,25621180 +g1,3115:15261577,25621180 +g1,3115:15593531,25621180 +g1,3115:17253301,25621180 +g1,3115:19245025,25621180 +g1,3115:21236749,25621180 +g1,3115:23228473,25621180 +g1,3115:25220197,25621180 +g1,3115:27211921,25621180 +h1,3115:28871691,25621180:0,0,0 +k1,3115:32583029,25621180:3711338 +g1,3115:32583029,25621180 +) +(1,3117:6630773,26437107:25952256,407923,9908 +(1,3116:6630773,26437107:0,0,0 +g1,3116:6630773,26437107 +g1,3116:6630773,26437107 +g1,3116:6303093,26437107 +(1,3116:6303093,26437107:0,0,0 +) +g1,3116:6630773,26437107 +) +g1,3117:8290543,26437107 +g1,3117:9286405,26437107 +h1,3117:9618359,26437107:0,0,0 +k1,3117:32583029,26437107:22964670 +g1,3117:32583029,26437107 +) +(1,3121:6630773,27253034:25952256,424439,79822 +(1,3119:6630773,27253034:0,0,0 +g1,3119:6630773,27253034 +g1,3119:6630773,27253034 +g1,3119:6303093,27253034 +(1,3119:6303093,27253034:0,0,0 +) +g1,3119:6630773,27253034 +) +g1,3121:7626635,27253034 +g1,3121:7958589,27253034 +g1,3121:9286405,27253034 +g1,3121:11278129,27253034 +g1,3121:13269853,27253034 +g1,3121:15261577,27253034 +g1,3121:17253301,27253034 +g1,3121:17585255,27253034 +g1,3121:19245025,27253034 +g1,3121:21236749,27253034 +g1,3121:23228473,27253034 +g1,3121:25220197,27253034 +g1,3121:27211921,27253034 +h1,3121:28871691,27253034:0,0,0 +k1,3121:32583029,27253034:3711338 +g1,3121:32583029,27253034 +) +(1,3123:6630773,28068961:25952256,424439,79822 +(1,3122:6630773,28068961:0,0,0 +g1,3122:6630773,28068961 +g1,3122:6630773,28068961 +g1,3122:6303093,28068961 +(1,3122:6303093,28068961:0,0,0 +) +g1,3122:6630773,28068961 +) +k1,3123:6630773,28068961:0 +g1,3123:9618359,28068961 +g1,3123:10282267,28068961 +h1,3123:10946175,28068961:0,0,0 +k1,3123:32583029,28068961:21636854 +g1,3123:32583029,28068961 +) +(1,3127:6630773,28884888:25952256,424439,79822 +(1,3125:6630773,28884888:0,0,0 +g1,3125:6630773,28884888 +g1,3125:6630773,28884888 +g1,3125:6303093,28884888 +(1,3125:6303093,28884888:0,0,0 +) +g1,3125:6630773,28884888 +) +g1,3127:7626635,28884888 +g1,3127:8954451,28884888 +h1,3127:10614221,28884888:0,0,0 +k1,3127:32583029,28884888:21968808 +g1,3127:32583029,28884888 +) +(1,3129:6630773,29700815:25952256,424439,106246 +(1,3128:6630773,29700815:0,0,0 +g1,3128:6630773,29700815 +g1,3128:6630773,29700815 +g1,3128:6303093,29700815 +(1,3128:6303093,29700815:0,0,0 +) +g1,3128:6630773,29700815 +) +k1,3129:6630773,29700815:0 +g1,3129:9618359,29700815 +g1,3129:10282267,29700815 +h1,3129:10946175,29700815:0,0,0 +k1,3129:32583029,29700815:21636854 +g1,3129:32583029,29700815 +) +(1,3133:6630773,30516742:25952256,424439,79822 +(1,3131:6630773,30516742:0,0,0 +g1,3131:6630773,30516742 +g1,3131:6630773,30516742 +g1,3131:6303093,30516742 +(1,3131:6303093,30516742:0,0,0 +) +g1,3131:6630773,30516742 +) +g1,3133:7626635,30516742 +g1,3133:8954451,30516742 +h1,3133:10282267,30516742:0,0,0 +k1,3133:32583029,30516742:22300762 +g1,3133:32583029,30516742 +) +(1,3135:6630773,31332669:25952256,407923,9908 +(1,3134:6630773,31332669:0,0,0 +g1,3134:6630773,31332669 +g1,3134:6630773,31332669 +g1,3134:6303093,31332669 +(1,3134:6303093,31332669:0,0,0 +) +g1,3134:6630773,31332669 +) +g1,3135:8290543,31332669 +g1,3135:9286405,31332669 +g1,3135:10946175,31332669 +g1,3135:11610083,31332669 +h1,3135:11942037,31332669:0,0,0 +k1,3135:32583029,31332669:20640992 +g1,3135:32583029,31332669 +) +(1,3136:6630773,32017524:25952256,398014,6605 +h1,3136:6630773,32017524:0,0,0 +h1,3136:7958589,32017524:0,0,0 +k1,3136:32583029,32017524:24624440 +g1,3136:32583029,32017524 +) +(1,3140:6630773,32833451:25952256,424439,79822 +(1,3138:6630773,32833451:0,0,0 +g1,3138:6630773,32833451 +g1,3138:6630773,32833451 +g1,3138:6303093,32833451 +(1,3138:6303093,32833451:0,0,0 +) +g1,3138:6630773,32833451 +) +g1,3140:7626635,32833451 +g1,3140:7958589,32833451 +g1,3140:9286405,32833451 +g1,3140:11278129,32833451 +g1,3140:13269853,32833451 +g1,3140:15261577,32833451 +g1,3140:17253301,32833451 +g1,3140:19245025,32833451 +g1,3140:19576979,32833451 +g1,3140:21236749,32833451 +g1,3140:21568703,32833451 +g1,3140:23228473,32833451 +g1,3140:23560427,32833451 +g1,3140:25220197,32833451 +g1,3140:25552151,32833451 +g1,3140:27211921,32833451 +g1,3140:27543875,32833451 +h1,3140:28871691,32833451:0,0,0 +k1,3140:32583029,32833451:3711338 +g1,3140:32583029,32833451 +) +(1,3142:6630773,33649378:25952256,424439,106246 +(1,3141:6630773,33649378:0,0,0 +g1,3141:6630773,33649378 +g1,3141:6630773,33649378 +g1,3141:6303093,33649378 +(1,3141:6303093,33649378:0,0,0 +) +g1,3141:6630773,33649378 +) +k1,3142:6630773,33649378:0 +h1,3142:9618359,33649378:0,0,0 +k1,3142:32583029,33649378:22964670 +g1,3142:32583029,33649378 +) +(1,3146:6630773,34465305:25952256,424439,79822 +(1,3144:6630773,34465305:0,0,0 +g1,3144:6630773,34465305 +g1,3144:6630773,34465305 +g1,3144:6303093,34465305 +(1,3144:6303093,34465305:0,0,0 +) +g1,3144:6630773,34465305 +) +g1,3146:7626635,34465305 +g1,3146:8954451,34465305 +h1,3146:10282267,34465305:0,0,0 +k1,3146:32583029,34465305:22300762 +g1,3146:32583029,34465305 +) +(1,3148:6630773,35281232:25952256,424439,79822 +(1,3147:6630773,35281232:0,0,0 +g1,3147:6630773,35281232 +g1,3147:6630773,35281232 +g1,3147:6303093,35281232 +(1,3147:6303093,35281232:0,0,0 +) +g1,3147:6630773,35281232 +) +k1,3148:6630773,35281232:0 +h1,3148:9618359,35281232:0,0,0 +k1,3148:32583029,35281232:22964670 +g1,3148:32583029,35281232 +) +(1,3152:6630773,36097159:25952256,424439,79822 +(1,3150:6630773,36097159:0,0,0 +g1,3150:6630773,36097159 +g1,3150:6630773,36097159 +g1,3150:6303093,36097159 +(1,3150:6303093,36097159:0,0,0 +) +g1,3150:6630773,36097159 +) +g1,3152:7626635,36097159 +g1,3152:8954451,36097159 +h1,3152:10614221,36097159:0,0,0 +k1,3152:32583029,36097159:21968808 +g1,3152:32583029,36097159 +) +] +) +g1,3153:32583029,36176981 +g1,3153:6630773,36176981 +g1,3153:6630773,36176981 +g1,3153:32583029,36176981 +g1,3153:32583029,36176981 +) +h1,3153:6630773,36373589:0,0,0 +(1,3157:6630773,37238669:25952256,513147,126483 +h1,3156:6630773,37238669:983040,0,0 +k1,3156:11070182,37238669:251658 +k1,3156:15406044,37238669:251658 +k1,3156:16761984,37238669:251658 +k1,3156:17761408,37238669:251658 +k1,3156:20163958,37238669:251658 +k1,3156:21487785,37238669:251658 +k1,3156:23248082,37238669:251658 +k1,3156:24589604,37238669:251658 +k1,3156:26076616,37238669:251658 +k1,3156:26944312,37238669:251658 +k1,3156:28585333,37238669:251658 +k1,3156:31391584,37238669:251658 +k1,3156:32583029,37238669:0 +) +(1,3157:6630773,38103749:25952256,513147,134348 +k1,3156:11185108,38103749:202089 +k1,3156:11918694,38103749:202089 +k1,3156:14676688,38103749:202090 +k1,3156:16576815,38103749:202089 +k1,3156:17647256,38103749:202089 +k1,3156:20561225,38103749:202089 +k1,3156:23434561,38103749:202089 +k1,3156:25158396,38103749:202089 +k1,3156:27095879,38103749:202090 +k1,3156:28317053,38103749:202089 +k1,3156:31923737,38103749:202089 +k1,3156:32583029,38103749:0 +) +(1,3157:6630773,38968829:25952256,505283,134348 +g1,3156:7849087,38968829 +g1,3156:10559656,38968829 +g1,3156:13086068,38968829 +g1,3156:16375320,38968829 +g1,3156:17190587,38968829 +g1,3156:19668503,38968829 +h1,3156:20639091,38968829:0,0,0 +g1,3156:20838320,38968829 +g1,3156:21846919,38968829 +g1,3156:23544301,38968829 +h1,3156:24341219,38968829:0,0,0 +k1,3157:32583029,38968829:8068140 +g1,3157:32583029,38968829 +) +(1,3159:6630773,39833909:25952256,513147,134348 +h1,3158:6630773,39833909:983040,0,0 +k1,3158:8880143,39833909:224308 +k1,3158:11765868,39833909:224308 +k1,3158:12641604,39833909:224308 +k1,3158:14057356,39833909:224307 +k1,3158:14747625,39833909:224308 +k1,3158:17925641,39833909:224308 +k1,3158:18809241,39833909:224308 +k1,3158:19389409,39833909:224308 +k1,3158:22233846,39833909:224308 +k1,3158:24436031,39833909:224308 +k1,3158:25651899,39833909:224308 +k1,3158:27886195,39833909:224307 +k1,3158:28466363,39833909:224308 +k1,3158:30644955,39833909:224308 +k1,3158:31485301,39833909:224308 +k1,3158:32583029,39833909:0 +) +(1,3159:6630773,40698989:25952256,513147,134348 +k1,3158:9716510,40698989:250650 +k1,3158:10578611,40698989:250650 +k1,3158:11480689,40698989:250650 +k1,3158:12871665,40698989:250650 +k1,3158:13990667,40698989:250650 +k1,3158:15345599,40698989:250650 +k1,3158:18308128,40698989:250649 +k1,3158:19577863,40698989:250650 +k1,3158:22001687,40698989:250650 +k1,3158:23819958,40698989:250650 +k1,3158:25243047,40698989:250650 +k1,3158:29577901,40698989:250650 +k1,3158:31563944,40698989:250650 +k1,3158:32583029,40698989:0 +) +(1,3159:6630773,41564069:25952256,513147,134348 +k1,3158:10243680,41564069:275814 +k1,3158:12589121,41564069:275814 +k1,3158:14378740,41564069:275737 +k1,3158:17401168,41564069:275814 +(1,3158:17401168,41564069:0,435480,115847 +r1,3175:17759434,41564069:358266,551327,115847 +k1,3158:17401168,41564069:-358266 +) +(1,3158:17401168,41564069:358266,435480,115847 +k1,3158:17401168,41564069:3277 +h1,3158:17756157,41564069:0,411205,112570 +) +k1,3158:18208918,41564069:275814 +k1,3158:19676177,41564069:275814 +k1,3158:21044475,41564069:275813 +k1,3158:25174461,41564069:275814 +k1,3158:26101703,41564069:275814 +k1,3158:29022550,41564069:275814 +k1,3158:30317449,41564069:275814 +k1,3158:32583029,41564069:0 +) +(1,3159:6630773,42429149:25952256,513147,126483 +g1,3158:8569328,42429149 +g1,3158:9427849,42429149 +g1,3158:13228281,42429149 +g1,3158:14086802,42429149 +g1,3158:15305116,42429149 +k1,3159:32583029,42429149:13699647 +g1,3159:32583029,42429149 +) +v1,3161:6630773,43114004:0,393216,0 +(1,3169:6630773,44905923:25952256,2185135,196608 +g1,3169:6630773,44905923 +g1,3169:6630773,44905923 +g1,3169:6434165,44905923 +(1,3169:6434165,44905923:0,2185135,196608 +r1,3175:32779637,44905923:26345472,2381743,196608 +k1,3169:6434165,44905923:-26345472 +) +(1,3169:6434165,44905923:26345472,2185135,196608 +[1,3169:6630773,44905923:25952256,1988527,0 +(1,3163:6630773,43325319:25952256,407923,9908 +(1,3162:6630773,43325319:0,0,0 +g1,3162:6630773,43325319 +g1,3162:6630773,43325319 +g1,3162:6303093,43325319 +(1,3162:6303093,43325319:0,0,0 +) +g1,3162:6630773,43325319 +) +g1,3163:8290543,43325319 +g1,3163:9286405,43325319 +k1,3163:9286405,43325319:0 +h1,3163:10614221,43325319:0,0,0 +k1,3163:32583029,43325319:21968808 +g1,3163:32583029,43325319 +) +(1,3164:6630773,44010174:25952256,407923,9908 +h1,3164:6630773,44010174:0,0,0 +g1,3164:8290543,44010174 +g1,3164:9286405,44010174 +g1,3164:10282267,44010174 +g1,3164:10946175,44010174 +g1,3164:12605945,44010174 +g1,3164:13601807,44010174 +h1,3164:13933761,44010174:0,0,0 +k1,3164:32583029,44010174:18649268 +g1,3164:32583029,44010174 +) +(1,3168:6630773,44826101:25952256,424439,79822 +(1,3166:6630773,44826101:0,0,0 +g1,3166:6630773,44826101 +g1,3166:6630773,44826101 +g1,3166:6303093,44826101 +(1,3166:6303093,44826101:0,0,0 +) +g1,3166:6630773,44826101 +) +g1,3168:7626635,44826101 +g1,3168:8954451,44826101 +g1,3168:10946175,44826101 +g1,3168:11278129,44826101 +g1,3168:12937899,44826101 +g1,3168:13269853,44826101 +g1,3168:14929623,44826101 +g1,3168:15261577,44826101 +g1,3168:16921347,44826101 +g1,3168:18913071,44826101 +h1,3168:20572841,44826101:0,0,0 +k1,3168:32583029,44826101:12010188 +g1,3168:32583029,44826101 +) +] +) +g1,3169:32583029,44905923 +g1,3169:6630773,44905923 +g1,3169:6630773,44905923 +g1,3169:32583029,44905923 +g1,3169:32583029,44905923 +) +h1,3169:6630773,45102531:0,0,0 +] +(1,3175:32583029,45706769:0,0,0 +g1,3175:32583029,45706769 +) +) +] +(1,3175:6630773,47279633:25952256,0,0 +h1,3175:6630773,47279633:25952256,0,0 +) +] +(1,3175:4262630,4025873:0,0,0 +[1,3175:-473656,4025873:0,0,0 +(1,3175:-473656,-710413:0,0,0 +(1,3175:-473656,-710413:0,0,0 +g1,3175:-473656,-710413 +) +g1,3175:-473656,-710413 +) +] +) +] +!25589 +}66 +Input:609:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:610:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:611:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:612:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:613:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:614:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:615:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:616:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:617:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:618:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!941 +{67 +[1,3291:4262630,47279633:28320399,43253760,0 +(1,3291:4262630,4025873:0,0,0 +[1,3291:-473656,4025873:0,0,0 +(1,3291:-473656,-710413:0,0,0 +(1,3291:-473656,-644877:0,0,0 +k1,3291:-473656,-644877:-65536 ) -g1,4207:17421117,34105500 -g1,4208:17421117,34105500 -(1,4208:17421117,34105500:0,0,0 -(1,4208:17421117,34105500:0,0,0 -g1,4208:17421117,34105500 -g1,4208:17421117,34105500 -g1,4208:17421117,34105500 -g1,4208:17421117,34105500 -g1,4208:17421117,34105500 -(1,4208:17421117,34105500:0,0,0 -(1,4208:17421117,34105500:4301011,404226,93333 -(1,4208:17421117,34105500:4301011,404226,93333 -(1,4208:17421117,34105500:0,363038,93333 -r1,4247:19959996,34105500:2538879,456371,93333 -k1,4208:17421117,34105500:-2538879 +(1,3291:-473656,4736287:0,0,0 +k1,3291:-473656,4736287:5209943 ) -(1,4208:17421117,34105500:2538879,363038,93333 -k1,4208:17421117,34105500:3277 -h1,4208:19956719,34105500:0,328964,90056 -) -g1,4208:20125671,34105500 -) -g1,4208:21722128,34105500 -) -) -g1,4208:17421117,34105500 -g1,4208:17421117,34105500 -) -) -(1,4209:17421117,34105500:0,0,0 -(1,4209:17421117,34105500:0,0,0 -g1,4209:17421117,34105500 -g1,4209:17421117,34105500 -g1,4209:17421117,34105500 -g1,4209:17421117,34105500 -g1,4209:17421117,34105500 -(1,4209:17421117,34105500:0,0,0 -(1,4209:17421117,34105500:1132032,363038,93333 -(1,4209:17421117,34105500:1132032,363038,93333 -(1,4209:17421117,34105500:1132032,363038,93333 -(1,4209:17421117,34105500:0,363038,93333 -r1,4247:18553149,34105500:1132032,456371,93333 -k1,4209:17421117,34105500:-1132032 -) -(1,4209:17421117,34105500:1132032,363038,93333 -k1,4209:17421117,34105500:3277 -h1,4209:18549872,34105500:0,328964,90056 -) -) -) -g1,4209:18553149,34105500 -) -) -g1,4209:17421117,34105500 -g1,4209:17421117,34105500 -) -) -g1,4209:17421117,34105500 -g1,4210:17421117,34105500 -g1,4210:17421117,34105500 -g1,4210:17421117,34105500 -g1,4210:17421117,34105500 -g1,4210:17421117,34105500 -g1,4210:17421117,34105500 -g1,4212:17421117,34105500 -g1,4212:17421117,34105500 -) -g1,4212:17421117,34105500 -) -) -g1,4214:31335885,36991251 -k1,4214:32583029,36991251:1247144 -) -v1,4217:6630773,38837077:0,393216,0 -(1,4224:6630773,39786894:25952256,1343033,196608 -g1,4224:6630773,39786894 -g1,4224:6630773,39786894 -g1,4224:6434165,39786894 -(1,4224:6434165,39786894:0,1343033,196608 -r1,4247:32779637,39786894:26345472,1539641,196608 -k1,4224:6434165,39786894:-26345472 -) -(1,4224:6434165,39786894:26345472,1343033,196608 -[1,4224:6630773,39786894:25952256,1146425,0 -(1,4219:6630773,39044695:25952256,404226,76021 -(1,4218:6630773,39044695:0,0,0 -g1,4218:6630773,39044695 -g1,4218:6630773,39044695 -g1,4218:6303093,39044695 -(1,4218:6303093,39044695:0,0,0 -) -g1,4218:6630773,39044695 -) -h1,4219:8843793,39044695:0,0,0 -k1,4219:32583029,39044695:23739236 -g1,4219:32583029,39044695 -) -(1,4223:6630773,39710873:25952256,404226,76021 -(1,4221:6630773,39710873:0,0,0 -g1,4221:6630773,39710873 -g1,4221:6630773,39710873 -g1,4221:6303093,39710873 -(1,4221:6303093,39710873:0,0,0 -) -g1,4221:6630773,39710873 -) -g1,4223:7579210,39710873 -g1,4223:8843793,39710873 -h1,4223:9792230,39710873:0,0,0 -k1,4223:32583030,39710873:22790800 -g1,4223:32583030,39710873 -) -] -) -g1,4224:32583029,39786894 -g1,4224:6630773,39786894 -g1,4224:6630773,39786894 -g1,4224:32583029,39786894 -g1,4224:32583029,39786894 -) -h1,4224:6630773,39983502:0,0,0 -v1,4228:6630773,41873566:0,393216,0 -(1,4247:6630773,44052963:25952256,2572613,0 -g1,4247:6630773,44052963 -g1,4247:6303093,44052963 -r1,4247:6401397,44052963:98304,2572613,0 -g1,4247:6600626,44052963 -g1,4247:6797234,44052963 -[1,4247:6797234,44052963:25785795,2572613,0 -(1,4229:6797234,42235639:25785795,755289,196608 -(1,4228:6797234,42235639:0,755289,196608 -r1,4247:8134168,42235639:1336934,951897,196608 -k1,4228:6797234,42235639:-1336934 -) -(1,4228:6797234,42235639:1336934,755289,196608 -) -k1,4228:8350194,42235639:216026 -k1,4228:8677874,42235639:327680 -k1,4228:10350766,42235639:216027 -k1,4228:13324547,42235639:216026 -k1,4228:15848751,42235639:216026 -k1,4228:17056337,42235639:216026 -k1,4228:20056333,42235639:216027 -k1,4228:20888397,42235639:216026 -k1,4228:22538351,42235639:216026 -k1,4228:23342890,42235639:216026 -(1,4228:23342890,42235639:0,452978,115847 -r1,4247:25811427,42235639:2468537,568825,115847 -k1,4228:23342890,42235639:-2468537 -) -(1,4228:23342890,42235639:2468537,452978,115847 -k1,4228:23342890,42235639:3277 -h1,4228:25808150,42235639:0,411205,112570 -) -k1,4228:26201124,42235639:216027 -(1,4228:26201124,42235639:0,414482,115847 -r1,4247:28669661,42235639:2468537,530329,115847 -k1,4228:26201124,42235639:-2468537 -) -(1,4228:26201124,42235639:2468537,414482,115847 -k1,4228:26201124,42235639:3277 -h1,4228:28666384,42235639:0,411205,112570 -) -k1,4228:29059357,42235639:216026 -(1,4228:29059357,42235639:0,452978,115847 -r1,4247:32583029,42235639:3523672,568825,115847 -k1,4228:29059357,42235639:-3523672 -) -(1,4228:29059357,42235639:3523672,452978,115847 -k1,4228:29059357,42235639:3277 -h1,4228:32579752,42235639:0,411205,112570 -) -k1,4228:32583029,42235639:0 -) -(1,4229:6797234,43077127:25785795,513147,126483 -k1,4228:8220189,43077127:231510 -(1,4228:8220189,43077127:0,452978,115847 -r1,4247:11392149,43077127:3171960,568825,115847 -k1,4228:8220189,43077127:-3171960 -) -(1,4228:8220189,43077127:3171960,452978,115847 -k1,4228:8220189,43077127:3277 -h1,4228:11388872,43077127:0,411205,112570 -) -k1,4228:11797329,43077127:231510 -k1,4228:12688131,43077127:231510 -k1,4228:14805112,43077127:231510 -k1,4228:15249582,43077127:231478 -k1,4228:16994318,43077127:231510 -(1,4228:16994318,43077127:0,452978,115847 -r1,4247:19462855,43077127:2468537,568825,115847 -k1,4228:16994318,43077127:-2468537 -) -(1,4228:16994318,43077127:2468537,452978,115847 -k1,4228:16994318,43077127:3277 -h1,4228:19459578,43077127:0,411205,112570 -) -k1,4228:19694365,43077127:231510 -k1,4228:20541913,43077127:231510 -k1,4228:21792509,43077127:231511 -k1,4228:24685436,43077127:231510 -k1,4228:26945941,43077127:231510 -k1,4228:29051781,43077127:231510 -k1,4228:31591469,43077127:231510 -k1,4228:32583029,43077127:0 -) -(1,4229:6797234,43918615:25785795,513147,134348 -g1,4228:9125728,43918615 -g1,4228:10272608,43918615 -g1,4228:12956962,43918615 -g1,4228:16876014,43918615 -g1,4228:17734535,43918615 -g1,4228:18952849,43918615 -k1,4229:32583029,43918615:11614948 -g1,4229:32583029,43918615 -) -] -g1,4247:32583029,44052963 -) -] -(1,4247:32583029,45706769:0,0,0 -g1,4247:32583029,45706769 -) -) -] -(1,4247:6630773,47279633:25952256,0,0 -h1,4247:6630773,47279633:25952256,0,0 +g1,3291:-473656,-710413 ) ] -(1,4247:4262630,4025873:0,0,0 -[1,4247:-473656,4025873:0,0,0 -(1,4247:-473656,-710413:0,0,0 -(1,4247:-473656,-710413:0,0,0 -g1,4247:-473656,-710413 ) -g1,4247:-473656,-710413 +[1,3291:6630773,47279633:25952256,43253760,0 +[1,3291:6630773,4812305:25952256,786432,0 +(1,3291:6630773,4812305:25952256,505283,11795 +(1,3291:6630773,4812305:25952256,505283,11795 +g1,3291:3078558,4812305 +[1,3291:3078558,4812305:0,0,0 +(1,3291:3078558,2439708:0,1703936,0 +k1,3291:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,3291:2537886,2439708:1179648,16384,0 ) -] +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,3291:3078558,1915420:16384,1179648,0 +) +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) ] -!40452 -}80 -Input:723:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!104 -{81 -[1,4327:4262630,47279633:28320399,43253760,0 -(1,4327:4262630,4025873:0,0,0 -[1,4327:-473656,4025873:0,0,0 -(1,4327:-473656,-710413:0,0,0 -(1,4327:-473656,-644877:0,0,0 -k1,4327:-473656,-644877:-65536 ) -(1,4327:-473656,4736287:0,0,0 -k1,4327:-473656,4736287:5209943 ) -g1,4327:-473656,-710413 ) ] +[1,3291:3078558,4812305:0,0,0 +(1,3291:3078558,2439708:0,1703936,0 +g1,3291:29030814,2439708 +g1,3291:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,3291:36151628,1915420:16384,1179648,0 ) -[1,4327:6630773,47279633:25952256,43253760,0 -[1,4327:6630773,4812305:25952256,786432,0 -(1,4327:6630773,4812305:25952256,505283,11795 -(1,4327:6630773,4812305:25952256,505283,11795 -g1,4327:3078558,4812305 -[1,4327:3078558,4812305:0,0,0 -(1,4327:3078558,2439708:0,1703936,0 -k1,4327:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,4327:2537886,2439708:1179648,16384,0 -) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,4327:3078558,1915420:16384,1179648,0 -) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) ] ) +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,3291:37855564,2439708:1179648,16384,0 ) ) -] -[1,4327:3078558,4812305:0,0,0 -(1,4327:3078558,2439708:0,1703936,0 -g1,4327:29030814,2439708 -g1,4327:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,4327:36151628,1915420:16384,1179648,0 -) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 +k1,3291:3078556,2439708:-34777008 ) ] +[1,3291:3078558,4812305:0,0,0 +(1,3291:3078558,49800853:0,16384,2228224 +k1,3291:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,3291:2537886,49800853:1179648,16384,0 ) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,4327:37855564,2439708:1179648,16384,0 -) +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,3291:3078558,51504789:16384,1179648,0 ) -k1,4327:3078556,2439708:-34777008 +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) ] -[1,4327:3078558,4812305:0,0,0 -(1,4327:3078558,49800853:0,16384,2228224 -k1,4327:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,4327:2537886,49800853:1179648,16384,0 ) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,4327:3078558,51504789:16384,1179648,0 ) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 ) ] +[1,3291:3078558,4812305:0,0,0 +(1,3291:3078558,49800853:0,16384,2228224 +g1,3291:29030814,49800853 +g1,3291:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,3291:36151628,51504789:16384,1179648,0 +) +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 ) +] +) +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,3291:37855564,49800853:1179648,16384,0 ) ) +k1,3291:3078556,49800853:-34777008 +) ] -[1,4327:3078558,4812305:0,0,0 -(1,4327:3078558,49800853:0,16384,2228224 -g1,4327:29030814,49800853 -g1,4327:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,4327:36151628,51504789:16384,1179648,0 -) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 -) -] -) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,4327:37855564,49800853:1179648,16384,0 -) -) -k1,4327:3078556,49800853:-34777008 -) -] -g1,4327:6630773,4812305 -k1,4327:22348274,4812305:14920583 -g1,4327:23970945,4812305 -g1,4327:24793421,4812305 -g1,4327:27528893,4812305 -g1,4327:28938572,4812305 -) -) -] -[1,4327:6630773,45706769:25952256,40108032,0 -(1,4327:6630773,45706769:25952256,40108032,0 -(1,4327:6630773,45706769:0,0,0 -g1,4327:6630773,45706769 -) -[1,4327:6630773,45706769:25952256,40108032,0 -v1,4247:6630773,6254097:0,393216,0 -(1,4247:6630773,10578704:25952256,4717823,0 -g1,4247:6630773,10578704 -g1,4247:6303093,10578704 -r1,4327:6401397,10578704:98304,4717823,0 -g1,4247:6600626,10578704 -g1,4247:6797234,10578704 -[1,4247:6797234,10578704:25785795,4717823,0 -v1,4231:6797234,6254097:0,393216,0 -(1,4245:6797234,9857808:25785795,3996927,196608 -g1,4245:6797234,9857808 -g1,4245:6797234,9857808 -g1,4245:6600626,9857808 -(1,4245:6600626,9857808:0,3996927,196608 -r1,4327:32779637,9857808:26179011,4193535,196608 -k1,4245:6600625,9857808:-26179012 -) -(1,4245:6600626,9857808:26179011,3996927,196608 -[1,4245:6797234,9857808:25785795,3800319,0 -(1,4233:6797234,6461715:25785795,404226,6290 -(1,4232:6797234,6461715:0,0,0 -g1,4232:6797234,6461715 -g1,4232:6797234,6461715 -g1,4232:6469554,6461715 -(1,4232:6469554,6461715:0,0,0 -) -g1,4232:6797234,6461715 -) -h1,4233:9958691,6461715:0,0,0 -k1,4233:32583029,6461715:22624338 -g1,4233:32583029,6461715 -) -(1,4238:6797234,7127893:25785795,404226,101187 -(1,4235:6797234,7127893:0,0,0 -g1,4235:6797234,7127893 -g1,4235:6797234,7127893 -g1,4235:6469554,7127893 -(1,4235:6469554,7127893:0,0,0 -) -g1,4235:6797234,7127893 -) -g1,4238:7745671,7127893 -g1,4238:8061817,7127893 -g1,4238:9326400,7127893 -g1,4238:12487857,7127893 -g1,4238:12804003,7127893 -g1,4238:13120149,7127893 -g1,4238:16597752,7127893 -g1,4238:16913898,7127893 -g1,4238:19443064,7127893 -g1,4238:19759210,7127893 -g1,4238:20075356,7127893 -g1,4238:20391502,7127893 -g1,4238:20707648,7127893 -g1,4238:23236814,7127893 -g1,4238:23552960,7127893 -g1,4238:23869106,7127893 -g1,4238:24185252,7127893 -g1,4238:24501398,7127893 -g1,4238:26398272,7127893 -g1,4238:26714418,7127893 -g1,4238:27030564,7127893 -g1,4238:27346710,7127893 -g1,4238:27662856,7127893 -g1,4238:27979002,7127893 -g1,4238:28295148,7127893 -h1,4238:30192022,7127893:0,0,0 -k1,4238:32583029,7127893:2391007 -g1,4238:32583029,7127893 -) -(1,4238:6797234,7794071:25785795,404226,107478 -h1,4238:6797234,7794071:0,0,0 -g1,4238:7745671,7794071 -g1,4238:8061817,7794071 -g1,4238:9326400,7794071 -g1,4238:11539420,7794071 -g1,4238:11855566,7794071 -g1,4238:12171712,7794071 -g1,4238:12487858,7794071 -g1,4238:12804004,7794071 -g1,4238:13120150,7794071 -g1,4238:15965461,7794071 -g1,4238:16281607,7794071 -g1,4238:16597753,7794071 -g1,4238:16913899,7794071 -g1,4238:20707647,7794071 -g1,4238:23869104,7794071 -g1,4238:24185250,7794071 -g1,4238:24501396,7794071 -g1,4238:27978999,7794071 -g1,4238:28295145,7794071 -h1,4238:31456602,7794071:0,0,0 -k1,4238:32583029,7794071:1126427 -g1,4238:32583029,7794071 -) -(1,4240:6797234,9115609:25785795,404226,76021 -(1,4239:6797234,9115609:0,0,0 -g1,4239:6797234,9115609 -g1,4239:6797234,9115609 -g1,4239:6469554,9115609 -(1,4239:6469554,9115609:0,0,0 -) -g1,4239:6797234,9115609 -) -h1,4240:10907128,9115609:0,0,0 -k1,4240:32583028,9115609:21675900 -g1,4240:32583028,9115609 -) -(1,4244:6797234,9781787:25785795,404226,76021 -(1,4242:6797234,9781787:0,0,0 -g1,4242:6797234,9781787 -g1,4242:6797234,9781787 -g1,4242:6469554,9781787 -(1,4242:6469554,9781787:0,0,0 -) -g1,4242:6797234,9781787 -) -g1,4244:7745671,9781787 -g1,4244:9010254,9781787 -h1,4244:10907128,9781787:0,0,0 -k1,4244:32583028,9781787:21675900 -g1,4244:32583028,9781787 -) -] -) -g1,4245:32583029,9857808 -g1,4245:6797234,9857808 -g1,4245:6797234,9857808 -g1,4245:32583029,9857808 -g1,4245:32583029,9857808 -) -h1,4245:6797234,10054416:0,0,0 -] -g1,4247:32583029,10578704 -) -h1,4247:6630773,10578704:0,0,0 -v1,4250:6630773,11944480:0,393216,0 -(1,4251:6630773,15023876:25952256,3472612,0 -g1,4251:6630773,15023876 -g1,4251:6303093,15023876 -r1,4327:6401397,15023876:98304,3472612,0 -g1,4251:6600626,15023876 -g1,4251:6797234,15023876 -[1,4251:6797234,15023876:25785795,3472612,0 -(1,4251:6797234,12365064:25785795,813800,267386 -(1,4250:6797234,12365064:0,813800,267386 -r1,4327:8134168,12365064:1336934,1081186,267386 -k1,4250:6797234,12365064:-1336934 -) -(1,4250:6797234,12365064:1336934,813800,267386 -) -k1,4250:8343530,12365064:209362 -k1,4250:8671210,12365064:327680 -k1,4250:9508408,12365064:209363 -k1,4250:10306283,12365064:209362 -k1,4250:12942443,12365064:209362 -k1,4250:15281071,12365064:209363 -k1,4250:16978756,12365064:209362 -k1,4250:18755739,12365064:209362 -k1,4250:20295482,12365064:209362 -k1,4250:22194363,12365064:209363 -k1,4250:23019763,12365064:209362 -k1,4250:24921265,12365064:209362 -k1,4250:26832598,12365064:209363 -k1,4250:31394206,12365064:209362 -k1,4251:32583029,12365064:0 -) -(1,4251:6797234,13206552:25785795,513147,134348 -k1,4250:9244177,13206552:250176 -k1,4250:10987919,13206552:250176 -k1,4250:11924257,13206552:250176 -k1,4250:12627891,13206552:250125 -k1,4250:14069512,13206552:250176 -k1,4250:15776553,13206552:250176 -k1,4250:18453527,13206552:250176 -k1,4250:20192026,13206552:250176 -k1,4250:22009824,13206552:250177 -k1,4250:23853836,13206552:250176 -k1,4250:24573905,13206552:250176 -k1,4250:25355578,13206552:250176 -k1,4250:28815052,13206552:250176 -k1,4250:29716656,13206552:250176 -k1,4250:30714598,13206552:250176 -k1,4250:32583029,13206552:0 -) -(1,4251:6797234,14048040:25785795,513147,134348 -k1,4250:7687868,14048040:231342 -k1,4250:9122451,14048040:231342 -k1,4250:12713825,14048040:231343 -k1,4250:13631329,14048040:231342 -k1,4250:15614448,14048040:231342 -k1,4250:19909677,14048040:231342 -k1,4250:23582314,14048040:231342 -k1,4250:24805216,14048040:231342 -k1,4250:26576655,14048040:231343 -k1,4250:28183598,14048040:231342 -k1,4250:30301066,14048040:231342 -k1,4250:30888268,14048040:231342 -k1,4250:32583029,14048040:0 -) -(1,4251:6797234,14889528:25785795,505283,134348 -g1,4250:9735868,14889528 -k1,4251:32583029,14889528:19143722 -g1,4251:32583029,14889528 -) -] -g1,4251:32583029,15023876 -) -h1,4251:6630773,15023876:0,0,0 -v1,4254:6630773,16389652:0,393216,0 -(1,4265:6630773,20312112:25952256,4315676,0 -g1,4265:6630773,20312112 -g1,4265:6303093,20312112 -r1,4327:6401397,20312112:98304,4315676,0 -g1,4265:6600626,20312112 -g1,4265:6797234,20312112 -[1,4265:6797234,20312112:25785795,4315676,0 -(1,4255:6797234,16784755:25785795,788319,218313 -(1,4254:6797234,16784755:0,788319,218313 -r1,4327:7917113,16784755:1119879,1006632,218313 -k1,4254:6797234,16784755:-1119879 -) -(1,4254:6797234,16784755:1119879,788319,218313 -) -g1,4254:8116342,16784755 -g1,4254:8444022,16784755 -g1,4254:10152545,16784755 -g1,4254:11016309,16784755 -g1,4254:13349390,16784755 -g1,4254:14605715,16784755 -g1,4254:15985903,16784755 -g1,4254:17995237,16784755 -g1,4254:18841306,16784755 -g1,4254:19410158,16784755 -k1,4254:32583029,16784755:10726412 -g1,4255:32583029,16784755 -) -(1,4255:6797234,17450933:25785795,0,0 -k1,4255:32583030,17450933:25785796 -g1,4255:32583030,17450933 -) -v1,4255:6797234,18641399:0,393216,0 -(1,4262:6797234,19591216:25785795,1343033,196608 -g1,4262:6797234,19591216 -g1,4262:6797234,19591216 -g1,4262:6600626,19591216 -(1,4262:6600626,19591216:0,1343033,196608 -r1,4327:32779637,19591216:26179011,1539641,196608 -k1,4262:6600625,19591216:-26179012 -) -(1,4262:6600626,19591216:26179011,1343033,196608 -[1,4262:6797234,19591216:25785795,1146425,0 -(1,4257:6797234,18849017:25785795,404226,107478 -(1,4256:6797234,18849017:0,0,0 -g1,4256:6797234,18849017 -g1,4256:6797234,18849017 -g1,4256:6469554,18849017 -(1,4256:6469554,18849017:0,0,0 -) -g1,4256:6797234,18849017 -) -k1,4257:6797234,18849017:0 -h1,4257:16281604,18849017:0,0,0 -k1,4257:32583029,18849017:16301425 -g1,4257:32583029,18849017 -) -(1,4261:6797234,19515195:25785795,404226,76021 -(1,4259:6797234,19515195:0,0,0 -g1,4259:6797234,19515195 -g1,4259:6797234,19515195 -g1,4259:6469554,19515195 -(1,4259:6469554,19515195:0,0,0 -) -g1,4259:6797234,19515195 -) -g1,4261:7745671,19515195 -g1,4261:9010254,19515195 -h1,4261:12171711,19515195:0,0,0 -k1,4261:32583029,19515195:20411318 -g1,4261:32583029,19515195 -) -] -) -g1,4262:32583029,19591216 -g1,4262:6797234,19591216 -g1,4262:6797234,19591216 -g1,4262:32583029,19591216 -g1,4262:32583029,19591216 -) -h1,4262:6797234,19787824:0,0,0 -] -g1,4265:32583029,20312112 -) -h1,4265:6630773,20312112:0,0,0 -(1,4268:6630773,21677888:25952256,513147,134348 -h1,4267:6630773,21677888:983040,0,0 -k1,4267:8234521,21677888:150815 -k1,4267:8916832,21677888:150814 -k1,4267:11697607,21677888:150815 -k1,4267:12499850,21677888:150815 -k1,4267:14854641,21677888:150815 -k1,4267:15361315,21677888:150814 -k1,4267:17592243,21677888:150815 -k1,4267:18402350,21677888:150815 -k1,4267:19572250,21677888:150815 -k1,4267:22592230,21677888:150814 -k1,4267:23402337,21677888:150815 -k1,4267:23909012,21677888:150815 -k1,4267:26037704,21677888:150815 -k1,4267:26804556,21677888:150814 -k1,4267:27311231,21677888:150815 -k1,4267:29335065,21677888:150815 -k1,4267:32583029,21677888:0 -) -(1,4268:6630773,22519376:25952256,513147,134348 -k1,4267:8634208,22519376:268042 -k1,4267:9258110,22519376:268042 -k1,4267:11504030,22519376:268043 -k1,4267:12431364,22519376:268042 -k1,4267:15299875,22519376:268042 -k1,4267:16764604,22519376:268042 -k1,4267:19977180,22519376:268043 -k1,4267:20904514,22519376:268042 -k1,4267:22191641,22519376:268042 -k1,4267:25431741,22519376:268042 -k1,4267:28568950,22519376:268043 -k1,4267:29453030,22519376:268042 -k1,4267:30740157,22519376:268042 -k1,4267:32583029,22519376:0 -) -(1,4268:6630773,23360864:25952256,513147,134348 -k1,4267:10098635,23360864:181887 -k1,4267:12468115,23360864:181888 -k1,4267:13641562,23360864:181887 -k1,4267:17488223,23360864:181888 -k1,4267:18431638,23360864:181887 -k1,4267:19632611,23360864:181888 -k1,4267:22544073,23360864:181887 -k1,4267:23385253,23360864:181888 -k1,4267:24586225,23360864:181887 -k1,4267:27721821,23360864:181888 -k1,4267:28563000,23360864:181887 -k1,4267:29763973,23360864:181888 -k1,4267:31923737,23360864:181887 -k1,4267:32583029,23360864:0 -) -(1,4268:6630773,24202352:25952256,505283,126483 -g1,4267:11782558,24202352 -g1,4267:12633215,24202352 -g1,4267:16865530,24202352 -g1,4267:18507206,24202352 -g1,4267:19357863,24202352 -k1,4268:32583029,24202352:10741351 -g1,4268:32583029,24202352 -) -v1,4270:6630773,25392818:0,393216,0 -(1,4283:6630773,28361808:25952256,3362206,196608 -g1,4283:6630773,28361808 -g1,4283:6630773,28361808 -g1,4283:6434165,28361808 -(1,4283:6434165,28361808:0,3362206,196608 -r1,4327:32779637,28361808:26345472,3558814,196608 -k1,4283:6434165,28361808:-26345472 -) -(1,4283:6434165,28361808:26345472,3362206,196608 -[1,4283:6630773,28361808:25952256,3165598,0 -(1,4272:6630773,25600436:25952256,404226,82312 -(1,4271:6630773,25600436:0,0,0 -g1,4271:6630773,25600436 -g1,4271:6630773,25600436 -g1,4271:6303093,25600436 -(1,4271:6303093,25600436:0,0,0 -) -g1,4271:6630773,25600436 -) -k1,4272:6630773,25600436:0 -g1,4272:9792231,25600436 -h1,4272:10740668,25600436:0,0,0 -k1,4272:32583028,25600436:21842360 -g1,4272:32583028,25600436 -) -(1,4276:6630773,26266614:25952256,404226,76021 -(1,4274:6630773,26266614:0,0,0 -g1,4274:6630773,26266614 -g1,4274:6630773,26266614 -g1,4274:6303093,26266614 -(1,4274:6303093,26266614:0,0,0 -) -g1,4274:6630773,26266614 -) -g1,4276:7579210,26266614 -g1,4276:8843793,26266614 -g1,4276:10108376,26266614 -h1,4276:11056813,26266614:0,0,0 -k1,4276:32583029,26266614:21526216 -g1,4276:32583029,26266614 -) -(1,4278:6630773,27588152:25952256,404226,76021 -(1,4277:6630773,27588152:0,0,0 -g1,4277:6630773,27588152 -g1,4277:6630773,27588152 -g1,4277:6303093,27588152 -(1,4277:6303093,27588152:0,0,0 -) -g1,4277:6630773,27588152 -) -h1,4278:9792230,27588152:0,0,0 -k1,4278:32583030,27588152:22790800 -g1,4278:32583030,27588152 -) -(1,4282:6630773,28254330:25952256,410518,107478 -(1,4280:6630773,28254330:0,0,0 -g1,4280:6630773,28254330 -g1,4280:6630773,28254330 -g1,4280:6303093,28254330 -(1,4280:6303093,28254330:0,0,0 -) -g1,4280:6630773,28254330 -) -g1,4282:7579210,28254330 -g1,4282:7895356,28254330 -g1,4282:9159939,28254330 -g1,4282:10424522,28254330 -g1,4282:11689105,28254330 -g1,4282:12953688,28254330 -g1,4282:14218271,28254330 -g1,4282:15482854,28254330 -g1,4282:16747437,28254330 -g1,4282:18012020,28254330 -g1,4282:19276603,28254330 -g1,4282:20541186,28254330 -h1,4282:21489623,28254330:0,0,0 -k1,4282:32583029,28254330:11093406 -g1,4282:32583029,28254330 -) -] -) -g1,4283:32583029,28361808 -g1,4283:6630773,28361808 -g1,4283:6630773,28361808 -g1,4283:32583029,28361808 -g1,4283:32583029,28361808 -) -h1,4283:6630773,28558416:0,0,0 -v1,4287:6630773,30448480:0,393216,0 -(1,4303:6630773,41765495:25952256,11710231,0 -g1,4303:6630773,41765495 -g1,4303:6303093,41765495 -r1,4327:6401397,41765495:98304,11710231,0 -g1,4303:6600626,41765495 -g1,4303:6797234,41765495 -[1,4303:6797234,41765495:25785795,11710231,0 -(1,4288:6797234,30881018:25785795,825754,196608 -(1,4287:6797234,30881018:0,825754,196608 -r1,4327:7890375,30881018:1093141,1022362,196608 -k1,4287:6797234,30881018:-1093141 -) -(1,4287:6797234,30881018:1093141,825754,196608 -) -k1,4287:8120594,30881018:230219 -k1,4287:9846812,30881018:327680 -k1,4287:11273717,30881018:230218 -k1,4287:13517202,30881018:230219 -k1,4287:14406712,30881018:230218 -k1,4287:15656016,30881018:230219 -k1,4287:18625639,30881018:230218 -k1,4287:20833735,30881018:230219 -k1,4287:21595451,30881018:230219 -k1,4287:22888663,30881018:230218 -k1,4287:26189899,30881018:230219 -k1,4287:27181645,30881018:230218 -k1,4287:28430949,30881018:230219 -k1,4287:30674433,30881018:230218 -k1,4287:31563944,30881018:230219 -k1,4287:32583029,30881018:0 -) -(1,4288:6797234,31722506:25785795,505283,126483 -k1,4287:9511145,31722506:196673 -k1,4287:11859366,31722506:196674 -k1,4287:14990741,31722506:196673 -k1,4287:16563016,31722506:196674 -k1,4287:19940807,31722506:196673 -k1,4287:22564278,31722506:196673 -k1,4287:24045458,31722506:196674 -k1,4287:26223284,31722506:196673 -k1,4287:29364491,31722506:196674 -k1,4287:31966991,31722506:196673 -k1,4287:32583029,31722506:0 -) -(1,4288:6797234,32563994:25785795,505283,134348 -k1,4287:7967652,32563994:151333 -k1,4287:10636224,32563994:151334 -k1,4287:12765434,32563994:151333 -k1,4287:14021049,32563994:151333 -k1,4287:16376359,32563994:151334 -k1,4287:18712007,32563994:151333 -k1,4287:20784856,32563994:151333 -k1,4287:22946835,32563994:151334 -k1,4287:23714206,32563994:151333 -k1,4287:24884624,32563994:151333 -k1,4287:27775363,32563994:151334 -k1,4287:29904573,32563994:151333 -k1,4287:32583029,32563994:0 -) -(1,4288:6797234,33405482:25785795,505283,126483 -k1,4287:7627473,33405482:178811 -k1,4287:10750817,33405482:178811 -k1,4287:12214134,33405482:178811 -k1,4287:13384504,33405482:178810 -k1,4287:14629586,33405482:178811 -k1,4287:17214224,33405482:178811 -k1,4287:18009073,33405482:178811 -k1,4287:19206969,33405482:178811 -k1,4287:21903018,33405482:178811 -k1,4287:24233376,33405482:178811 -k1,4287:26255059,33405482:178811 -k1,4287:27049907,33405482:178810 -(1,4287:27049907,33405482:0,414482,115847 -r1,4327:27759885,33405482:709978,530329,115847 -k1,4287:27049907,33405482:-709978 -) -(1,4287:27049907,33405482:709978,414482,115847 -k1,4287:27049907,33405482:3277 -h1,4287:27756608,33405482:0,411205,112570 -) -k1,4287:28442668,33405482:178811 -k1,4287:30002323,33405482:178811 -k1,4287:30712631,33405482:178811 -k1,4287:32583029,33405482:0 -) -(1,4288:6797234,34246970:25785795,513147,134348 -k1,4287:7603187,34246970:154525 -k1,4287:9369241,34246970:154524 -k1,4287:10285294,34246970:154525 -k1,4287:12799114,34246970:154524 -k1,4287:14347590,34246970:154525 -k1,4287:15090627,34246970:154524 -k1,4287:16687599,34246970:154525 -k1,4287:18409745,34246970:154525 -k1,4287:22800516,34246970:154524 -k1,4287:24252654,34246970:154525 -k1,4287:25801129,34246970:154524 -k1,4287:26544167,34246970:154525 -k1,4287:28434084,34246970:154524 -k1,4287:29607694,34246970:154525 -k1,4287:32583029,34246970:0 -) -(1,4288:6797234,35088458:25785795,505283,134348 -g1,4287:9988182,35088458 -g1,4287:10873573,35088458 -g1,4287:11428662,35088458 -g1,4287:14106463,35088458 -k1,4288:32583029,35088458:16614688 -g1,4288:32583029,35088458 -) -v1,4290:6797234,36278924:0,393216,0 -(1,4298:6797234,39227275:25785795,3341567,196608 -g1,4298:6797234,39227275 -g1,4298:6797234,39227275 -g1,4298:6600626,39227275 -(1,4298:6600626,39227275:0,3341567,196608 -r1,4327:32779637,39227275:26179011,3538175,196608 -k1,4298:6600625,39227275:-26179012 -) -(1,4298:6600626,39227275:26179011,3341567,196608 -[1,4298:6797234,39227275:25785795,3144959,0 -(1,4292:6797234,36486542:25785795,404226,107478 -(1,4291:6797234,36486542:0,0,0 -g1,4291:6797234,36486542 -g1,4291:6797234,36486542 -g1,4291:6469554,36486542 -(1,4291:6469554,36486542:0,0,0 -) -g1,4291:6797234,36486542 -) -k1,4292:6797234,36486542:0 -h1,4292:9642545,36486542:0,0,0 -k1,4292:32583029,36486542:22940484 -g1,4292:32583029,36486542 -) -(1,4293:6797234,37152720:25785795,404226,82312 -h1,4293:6797234,37152720:0,0,0 -g1,4293:9958692,37152720 -g1,4293:10907130,37152720 -g1,4293:11855568,37152720 -h1,4293:12804005,37152720:0,0,0 -k1,4293:32583029,37152720:19779024 -g1,4293:32583029,37152720 -) -(1,4294:6797234,37818898:25785795,404226,82312 -h1,4294:6797234,37818898:0,0,0 -g1,4294:10907129,37818898 -h1,4294:12804003,37818898:0,0,0 -k1,4294:32583029,37818898:19779026 -g1,4294:32583029,37818898 -) -(1,4295:6797234,38485076:25785795,404226,82312 -h1,4295:6797234,38485076:0,0,0 -g1,4295:9958692,38485076 -h1,4295:11223274,38485076:0,0,0 -k1,4295:32583030,38485076:21359756 -g1,4295:32583030,38485076 -) -(1,4296:6797234,39151254:25785795,404226,76021 -h1,4296:6797234,39151254:0,0,0 -h1,4296:9326399,39151254:0,0,0 -k1,4296:32583029,39151254:23256630 -g1,4296:32583029,39151254 -) -] -) -g1,4298:32583029,39227275 -g1,4298:6797234,39227275 -g1,4298:6797234,39227275 -g1,4298:32583029,39227275 -g1,4298:32583029,39227275 -) -h1,4298:6797234,39423883:0,0,0 -(1,4302:6797234,40789659:25785795,513147,126483 -h1,4301:6797234,40789659:983040,0,0 -k1,4301:9530179,40789659:184250 -k1,4301:10884901,40789659:184249 -k1,4301:12583688,40789659:184250 -k1,4301:14460078,40789659:184250 -k1,4301:15303620,40789659:184250 -k1,4301:16946700,40789659:184249 -k1,4301:18461331,40789659:184250 -k1,4301:21964324,40789659:184250 -k1,4301:22626330,40789659:184249 -k1,4301:23876851,40789659:184250 -k1,4301:25200117,40789659:184250 -k1,4301:26199635,40789659:184250 -k1,4301:27777835,40789659:184249 -k1,4301:29356036,40789659:184250 -k1,4301:32583029,40789659:0 -) -(1,4302:6797234,41631147:25785795,513147,134348 -g1,4301:10152677,41631147 -g1,4301:11011198,41631147 -g1,4301:12669258,41631147 -g1,4301:14198868,41631147 -g1,4301:16440854,41631147 -k1,4302:32583029,41631147:12547525 -g1,4302:32583029,41631147 -) -] -g1,4303:32583029,41765495 -) -h1,4303:6630773,41765495:0,0,0 -(1,4306:6630773,43131271:25952256,505283,134348 -h1,4305:6630773,43131271:983040,0,0 -k1,4305:10574134,43131271:228125 -k1,4305:13229057,43131271:228125 -k1,4305:14932396,43131271:228124 -k1,4305:15516381,43131271:228125 -k1,4305:17938651,43131271:228125 -k1,4305:21068710,43131271:228125 -k1,4305:22677023,43131271:228125 -k1,4305:25436804,43131271:228125 -k1,4305:26684013,43131271:228124 -k1,4305:29856671,43131271:228125 -k1,4305:30697558,43131271:228125 -k1,4305:32583029,43131271:0 -) -(1,4306:6630773,43972759:25952256,505283,134348 -k1,4305:8854223,43972759:212805 -k1,4305:11247410,43972759:212804 -k1,4305:12207981,43972759:212805 -k1,4305:15449204,43972759:212804 -k1,4305:16408464,43972759:212805 -k1,4305:18489699,43972759:212804 -k1,4305:19987010,43972759:212805 -k1,4305:20657912,43972759:212805 -k1,4305:21402213,43972759:212804 -k1,4305:23538499,43972759:212805 -k1,4305:24402731,43972759:212804 -k1,4305:25801738,43972759:212805 -k1,4305:28523916,43972759:212804 -k1,4305:29928166,43972759:212805 -k1,4305:32583029,43972759:0 -) -(1,4306:6630773,44814247:25952256,505283,134348 -g1,4305:8840647,44814247 -g1,4305:9655914,44814247 -g1,4305:10874228,44814247 -g1,4305:12726930,44814247 -g1,4305:15665564,44814247 -k1,4306:32583029,44814247:13669501 -g1,4306:32583029,44814247 -) -v1,4308:6630773,46004713:0,393216,0 -] -(1,4327:32583029,45706769:0,0,0 -g1,4327:32583029,45706769 -) -) -] -(1,4327:6630773,47279633:25952256,0,0 -h1,4327:6630773,47279633:25952256,0,0 -) -] -(1,4327:4262630,4025873:0,0,0 -[1,4327:-473656,4025873:0,0,0 -(1,4327:-473656,-710413:0,0,0 -(1,4327:-473656,-710413:0,0,0 -g1,4327:-473656,-710413 -) -g1,4327:-473656,-710413 -) -] -) -] -!22644 -}81 -Input:724:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:725:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:726:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:727:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:728:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!476 -{82 -[1,4394:4262630,47279633:28320399,43253760,0 -(1,4394:4262630,4025873:0,0,0 -[1,4394:-473656,4025873:0,0,0 -(1,4394:-473656,-710413:0,0,0 -(1,4394:-473656,-644877:0,0,0 -k1,4394:-473656,-644877:-65536 +g1,3291:6630773,4812305 +k1,3291:22348274,4812305:14920583 +g1,3291:23970945,4812305 +g1,3291:24793421,4812305 +g1,3291:27528893,4812305 +g1,3291:28938572,4812305 +) +) +] +[1,3291:6630773,45706769:25952256,40108032,0 +(1,3291:6630773,45706769:25952256,40108032,0 +(1,3291:6630773,45706769:0,0,0 +g1,3291:6630773,45706769 +) +[1,3291:6630773,45706769:25952256,40108032,0 +(1,3173:6630773,6254097:25952256,513147,134348 +h1,3172:6630773,6254097:983040,0,0 +k1,3172:8276381,6254097:184811 +k1,3172:9329545,6254097:184812 +k1,3172:11062972,6254097:184811 +k1,3172:11899211,6254097:184811 +k1,3172:13350179,6254097:184812 +k1,3172:15278903,6254097:184811 +k1,3172:17474359,6254097:184811 +k1,3172:20025021,6254097:184812 +k1,3172:21413073,6254097:184811 +k1,3172:23251357,6254097:184811 +k1,3172:25390453,6254097:184812 +k1,3172:26443616,6254097:184811 +k1,3172:27732709,6254097:184811 +k1,3172:30014018,6254097:184812 +k1,3172:31217914,6254097:184811 +k1,3173:32583029,6254097:0 +k1,3173:32583029,6254097:0 +) +v1,3175:6630773,6938952:0,393216,0 +(1,3182:6630773,8062532:25952256,1516796,196608 +g1,3182:6630773,8062532 +g1,3182:6630773,8062532 +g1,3182:6434165,8062532 +(1,3182:6434165,8062532:0,1516796,196608 +r1,3291:32779637,8062532:26345472,1713404,196608 +k1,3182:6434165,8062532:-26345472 +) +(1,3182:6434165,8062532:26345472,1516796,196608 +[1,3182:6630773,8062532:25952256,1320188,0 +(1,3177:6630773,7166783:25952256,424439,79822 +(1,3176:6630773,7166783:0,0,0 +g1,3176:6630773,7166783 +g1,3176:6630773,7166783 +g1,3176:6303093,7166783 +(1,3176:6303093,7166783:0,0,0 +) +g1,3176:6630773,7166783 +) +g1,3177:8954451,7166783 +g1,3177:9950313,7166783 +g1,3177:10946175,7166783 +g1,3177:11610083,7166783 +g1,3177:13269853,7166783 +g1,3177:14265715,7166783 +h1,3177:14929623,7166783:0,0,0 +k1,3177:32583029,7166783:17653406 +g1,3177:32583029,7166783 +) +(1,3181:6630773,7982710:25952256,424439,79822 +(1,3179:6630773,7982710:0,0,0 +g1,3179:6630773,7982710 +g1,3179:6630773,7982710 +g1,3179:6303093,7982710 +(1,3179:6303093,7982710:0,0,0 +) +g1,3179:6630773,7982710 +) +g1,3181:7626635,7982710 +g1,3181:8954451,7982710 +g1,3181:9286405,7982710 +g1,3181:10946175,7982710 +g1,3181:12937899,7982710 +g1,3181:14929623,7982710 +g1,3181:16921347,7982710 +g1,3181:17253301,7982710 +g1,3181:18913071,7982710 +g1,3181:19245025,7982710 +h1,3181:20572841,7982710:0,0,0 +k1,3181:32583029,7982710:12010188 +g1,3181:32583029,7982710 +) +] +) +g1,3182:32583029,8062532 +g1,3182:6630773,8062532 +g1,3182:6630773,8062532 +g1,3182:32583029,8062532 +g1,3182:32583029,8062532 +) +h1,3182:6630773,8259140:0,0,0 +(1,3186:6630773,9124220:25952256,505283,134348 +h1,3185:6630773,9124220:983040,0,0 +k1,3185:8650831,9124220:239445 +k1,3185:9758627,9124220:239444 +k1,3185:11102354,9124220:239445 +k1,3185:14053679,9124220:239445 +k1,3185:16765796,9124220:239444 +k1,3185:18177680,9124220:239445 +k1,3185:22501328,9124220:239444 +k1,3185:24476166,9124220:239445 +k1,3185:25734696,9124220:239445 +k1,3185:29311233,9124220:239444 +k1,3185:31620305,9124220:239445 +k1,3186:32583029,9124220:0 +) +(1,3186:6630773,9989300:25952256,452978,126483 +g1,3185:9576616,9989300 +(1,3185:9576616,9989300:0,452978,115847 +r1,3291:9934882,9989300:358266,568825,115847 +k1,3185:9576616,9989300:-358266 +) +(1,3185:9576616,9989300:358266,452978,115847 +k1,3185:9576616,9989300:3277 +h1,3185:9931605,9989300:0,411205,112570 +) +k1,3186:32583028,9989300:22474476 +g1,3186:32583028,9989300 +) +v1,3188:6630773,10674155:0,393216,0 +(1,3195:6630773,11797735:25952256,1516796,196608 +g1,3195:6630773,11797735 +g1,3195:6630773,11797735 +g1,3195:6434165,11797735 +(1,3195:6434165,11797735:0,1516796,196608 +r1,3291:32779637,11797735:26345472,1713404,196608 +k1,3195:6434165,11797735:-26345472 +) +(1,3195:6434165,11797735:26345472,1516796,196608 +[1,3195:6630773,11797735:25952256,1320188,0 +(1,3190:6630773,10901986:25952256,424439,79822 +(1,3189:6630773,10901986:0,0,0 +g1,3189:6630773,10901986 +g1,3189:6630773,10901986 +g1,3189:6303093,10901986 +(1,3189:6303093,10901986:0,0,0 +) +g1,3189:6630773,10901986 +) +g1,3190:8290543,10901986 +g1,3190:8954451,10901986 +g1,3190:9950313,10901986 +g1,3190:10614221,10901986 +g1,3190:12273991,10901986 +g1,3190:12937899,10901986 +h1,3190:13269853,10901986:0,0,0 +k1,3190:32583029,10901986:19313176 +g1,3190:32583029,10901986 +) +(1,3194:6630773,11717913:25952256,424439,79822 +(1,3192:6630773,11717913:0,0,0 +g1,3192:6630773,11717913 +g1,3192:6630773,11717913 +g1,3192:6303093,11717913 +(1,3192:6303093,11717913:0,0,0 +) +g1,3192:6630773,11717913 +) +g1,3194:7626635,11717913 +g1,3194:8954451,11717913 +g1,3194:9286405,11717913 +g1,3194:10946175,11717913 +g1,3194:12937899,11717913 +g1,3194:14929623,11717913 +g1,3194:16921347,11717913 +g1,3194:17253301,11717913 +g1,3194:18913071,11717913 +g1,3194:19245025,11717913 +h1,3194:20572841,11717913:0,0,0 +k1,3194:32583029,11717913:12010188 +g1,3194:32583029,11717913 +) +] +) +g1,3195:32583029,11797735 +g1,3195:6630773,11797735 +g1,3195:6630773,11797735 +g1,3195:32583029,11797735 +g1,3195:32583029,11797735 +) +h1,3195:6630773,11994343:0,0,0 +(1,3199:6630773,12859423:25952256,505283,134348 +h1,3198:6630773,12859423:983040,0,0 +k1,3198:8418940,12859423:177292 +k1,3198:10288372,12859423:177292 +k1,3198:12163045,12859423:177291 +k1,3198:13111040,12859423:177292 +k1,3198:16515325,12859423:177292 +k1,3198:19931406,12859423:177292 +k1,3198:20640195,12859423:177292 +k1,3198:22101993,12859423:177292 +(1,3198:22101993,12859423:0,452978,122846 +r1,3291:24570530,12859423:2468537,575824,122846 +k1,3198:22101993,12859423:-2468537 +) +(1,3198:22101993,12859423:2468537,452978,122846 +k1,3198:22101993,12859423:3277 +h1,3198:24567253,12859423:0,411205,112570 +) +k1,3198:24747821,12859423:177291 +k1,3198:26935758,12859423:177292 +k1,3198:29404844,12859423:177292 +k1,3198:30795207,12859423:177292 +k1,3198:32583029,12859423:0 +) +(1,3199:6630773,13724503:25952256,513147,134348 +g1,3198:7446040,13724503 +g1,3198:10276540,13724503 +g1,3198:11423420,13724503 +g1,3198:13131288,13724503 +g1,3198:15678017,13724503 +g1,3198:17319693,13724503 +(1,3198:17319693,13724503:0,452978,115847 +r1,3291:19788230,13724503:2468537,568825,115847 +k1,3198:17319693,13724503:-2468537 +) +(1,3198:17319693,13724503:2468537,452978,115847 +k1,3198:17319693,13724503:3277 +h1,3198:19784953,13724503:0,411205,112570 +) +g1,3198:19987459,13724503 +k1,3199:32583029,13724503:10411255 +g1,3199:32583029,13724503 +) +v1,3201:6630773,14589583:0,393216,0 +(1,3211:6630773,20179835:25952256,5983468,0 +g1,3211:6630773,20179835 +g1,3211:6237557,20179835 +r1,3291:6368629,20179835:131072,5983468,0 +g1,3211:6567858,20179835 +g1,3211:6764466,20179835 +[1,3211:6764466,20179835:25818563,5983468,0 +(1,3202:6764466,14862060:25818563,665693,196608 +(1,3201:6764466,14862060:0,665693,196608 +r1,3291:8010564,14862060:1246098,862301,196608 +k1,3201:6764466,14862060:-1246098 +) +(1,3201:6764466,14862060:1246098,665693,196608 +) +k1,3201:8165208,14862060:154644 +k1,3201:9891426,14862060:327680 +k1,3201:11194915,14862060:154643 +k1,3201:12368644,14862060:154644 +k1,3201:15709647,14862060:154643 +k1,3201:17732722,14862060:154644 +k1,3201:18573527,14862060:154643 +k1,3201:19084031,14862060:154644 +k1,3201:21717247,14862060:154644 +k1,3201:23560097,14862060:154643 +k1,3201:24330779,14862060:154644 +k1,3201:27496801,14862060:154643 +k1,3201:28981826,14862060:154644 +k1,3201:32583029,14862060:0 +) +(1,3202:6764466,15727140:25818563,513147,134348 +k1,3201:8878002,15727140:186778 +k1,3201:10762817,15727140:186777 +k1,3201:13019222,15727140:186778 +k1,3201:14397444,15727140:186777 +k1,3201:17860367,15727140:186778 +k1,3201:21124059,15727140:186777 +k1,3201:22302397,15727140:186778 +k1,3201:23811036,15727140:186778 +k1,3201:24657105,15727140:186777 +k1,3201:25862968,15727140:186778 +k1,3201:27703218,15727140:186777 +k1,3201:31250027,15727140:186778 +k1,3202:32583029,15727140:0 +) +(1,3202:6764466,16592220:25818563,513147,134348 +k1,3201:8387301,16592220:228884 +k1,3201:9635271,16592220:228885 +k1,3201:12525572,16592220:228884 +k1,3201:13515984,16592220:228884 +k1,3201:15932460,16592220:228884 +k1,3201:20015517,16592220:228885 +k1,3201:20857163,16592220:228884 +k1,3201:23848390,16592220:228884 +k1,3201:27021807,16592220:228884 +k1,3201:28442137,16592220:228885 +k1,3201:30525690,16592220:228884 +k1,3201:31563944,16592220:228884 +k1,3201:32583029,16592220:0 +) +(1,3202:6764466,17457300:25818563,513147,126483 +k1,3201:9766671,17457300:223478 +k1,3201:12174463,17457300:223477 +k1,3201:13994398,17457300:223478 +k1,3201:15284146,17457300:223477 +k1,3201:16526709,17457300:223478 +k1,3201:19015767,17457300:223478 +k1,3201:20978570,17457300:223477 +k1,3201:21861340,17457300:223478 +k1,3201:24831431,17457300:223477 +k1,3201:28656112,17457300:223478 +k1,3201:30392815,17457300:223477 +k1,3201:31563944,17457300:223478 +k1,3201:32583029,17457300:0 +) +(1,3202:6764466,18322380:25818563,513147,134348 +g1,3201:10267365,18322380 +g1,3201:11125886,18322380 +g1,3201:12344200,18322380 +g1,3201:15204846,18322380 +g1,3201:17098836,18322380 +k1,3202:32583029,18322380:13442091 +g1,3202:32583029,18322380 +) +v1,3204:6764466,19007235:0,393216,0 +(1,3209:6764466,19983227:25818563,1369208,196608 +g1,3209:6764466,19983227 +g1,3209:6764466,19983227 +g1,3209:6567858,19983227 +(1,3209:6567858,19983227:0,1369208,196608 +r1,3291:32779637,19983227:26211779,1565816,196608 +k1,3209:6567857,19983227:-26211780 +) +(1,3209:6567858,19983227:26211779,1369208,196608 +[1,3209:6764466,19983227:25818563,1172600,0 +(1,3206:6764466,19218550:25818563,407923,9908 +(1,3205:6764466,19218550:0,0,0 +g1,3205:6764466,19218550 +g1,3205:6764466,19218550 +g1,3205:6436786,19218550 +(1,3205:6436786,19218550:0,0,0 +) +g1,3205:6764466,19218550 +) +g1,3206:8424236,19218550 +g1,3206:9420098,19218550 +h1,3206:10747914,19218550:0,0,0 +k1,3206:32583030,19218550:21835116 +g1,3206:32583030,19218550 +) +(1,3207:6764466,19903405:25818563,424439,79822 +h1,3207:6764466,19903405:0,0,0 +g1,3207:8424236,19903405 +g1,3207:9088144,19903405 +g1,3207:9752052,19903405 +g1,3207:10415960,19903405 +g1,3207:12075730,19903405 +g1,3207:12739638,19903405 +g1,3207:13403546,19903405 +g1,3207:14067454,19903405 +h1,3207:14399408,19903405:0,0,0 +k1,3207:32583028,19903405:18183620 +g1,3207:32583028,19903405 +) +] +) +g1,3209:32583029,19983227 +g1,3209:6764466,19983227 +g1,3209:6764466,19983227 +g1,3209:32583029,19983227 +g1,3209:32583029,19983227 +) +h1,3209:6764466,20179835:0,0,0 +] +g1,3211:32583029,20179835 +) +h1,3211:6630773,20179835:0,0,0 +(1,3215:6630773,21044915:25952256,513147,126483 +h1,3213:6630773,21044915:983040,0,0 +k1,3213:8312427,21044915:228721 +k1,3213:9072644,21044915:228720 +k1,3213:12510663,21044915:228721 +k1,3213:13390811,21044915:228720 +k1,3213:14367298,21044915:228721 +k1,3213:16464450,21044915:228721 +k1,3213:17352462,21044915:228720 +k1,3213:18600268,21044915:228721 +k1,3213:23242182,21044915:228720 +k1,3213:24130195,21044915:228721 +k1,3213:27562315,21044915:228720 +k1,3213:31394861,21044915:228721 +k1,3215:32583029,21044915:0 +) +(1,3215:6630773,21909995:25952256,513147,134348 +k1,3213:9244786,21909995:292072 +k1,3213:10346227,21909995:292071 +k1,3213:12136452,21909995:292072 +h1,3213:12933370,21909995:0,0,0 +k1,3213:13606206,21909995:292072 +k1,3214:15094964,21909995:292071 +k1,3214:18146757,21909995:292072 +k1,3214:19098121,21909995:292072 +k1,3214:21141970,21909995:292072 +k1,3214:22093333,21909995:292071 +k1,3214:24951140,21909995:292072 +k1,3214:28269009,21909995:292072 +k1,3214:30259118,21909995:292071 +(1,3214:30259118,21909995:0,414482,115847 +r1,3291:30969096,21909995:709978,530329,115847 +k1,3214:30259118,21909995:-709978 +) +(1,3214:30259118,21909995:709978,414482,115847 +k1,3214:30259118,21909995:3277 +h1,3214:30965819,21909995:0,411205,112570 +) +k1,3214:31591469,21909995:292072 +k1,3214:32583029,21909995:0 +) +(1,3215:6630773,22775075:25952256,513147,134348 +k1,3214:9240483,22775075:203883 +k1,3214:10060405,22775075:203884 +k1,3214:11772927,22775075:203883 +k1,3214:13685335,22775075:203884 +k1,3214:17291847,22775075:203883 +k1,3214:18600012,22775075:203883 +k1,3214:19551662,22775075:203884 +k1,3214:22764303,22775075:203883 +(1,3214:22764303,22775075:0,414482,115847 +r1,3291:24177704,22775075:1413401,530329,115847 +k1,3214:22764303,22775075:-1413401 +) +(1,3214:22764303,22775075:1413401,414482,115847 +k1,3214:22764303,22775075:3277 +h1,3214:24174427,22775075:0,411205,112570 +) +k1,3214:24381587,22775075:203883 +k1,3214:26790758,22775075:203884 +k1,3214:27680803,22775075:203883 +k1,3214:28655390,22775075:203884 +k1,3214:31931601,22775075:203883 +k1,3214:32583029,22775075:0 +) +(1,3215:6630773,23640155:25952256,513147,134348 +k1,3214:10183387,23640155:271882 +(1,3214:10183387,23640155:0,414482,115847 +r1,3291:11948500,23640155:1765113,530329,115847 +k1,3214:10183387,23640155:-1765113 +) +(1,3214:10183387,23640155:1765113,414482,115847 +k1,3214:10183387,23640155:3277 +h1,3214:11945223,23640155:0,411205,112570 +) +k1,3214:12394052,23640155:271882 +k1,3214:14839109,23640155:271883 +k1,3214:15727029,23640155:271882 +(1,3214:15727029,23640155:0,414482,115847 +r1,3291:16437007,23640155:709978,530329,115847 +k1,3214:15727029,23640155:-709978 +) +(1,3214:15727029,23640155:709978,414482,115847 +k1,3214:15727029,23640155:3277 +h1,3214:16433730,23640155:0,411205,112570 +) +k1,3214:16708889,23640155:271882 +k1,3214:18991416,23640155:271882 +k1,3214:21001313,23640155:271882 +k1,3214:24045367,23640155:271882 +k1,3214:25884871,23640155:271883 +k1,3214:27175838,23640155:271882 +k1,3214:29156244,23640155:271882 +k1,3214:31563944,23640155:271882 +k1,3214:32583029,23640155:0 +) +(1,3215:6630773,24505235:25952256,513147,126483 +g1,3214:9525498,24505235 +g1,3214:10256224,24505235 +k1,3215:32583030,24505235:19781388 +g1,3215:32583030,24505235 +) +v1,3217:6630773,25190090:0,393216,0 +(1,3243:6630773,31894087:25952256,7097213,196608 +g1,3243:6630773,31894087 +g1,3243:6630773,31894087 +g1,3243:6434165,31894087 +(1,3243:6434165,31894087:0,7097213,196608 +r1,3291:32779637,31894087:26345472,7293821,196608 +k1,3243:6434165,31894087:-26345472 +) +(1,3243:6434165,31894087:26345472,7097213,196608 +[1,3243:6630773,31894087:25952256,6900605,0 +(1,3219:6630773,25417921:25952256,424439,86428 +(1,3218:6630773,25417921:0,0,0 +g1,3218:6630773,25417921 +g1,3218:6630773,25417921 +g1,3218:6303093,25417921 +(1,3218:6303093,25417921:0,0,0 +) +g1,3218:6630773,25417921 +) +g1,3219:8290543,25417921 +g1,3219:9286405,25417921 +g1,3219:11942037,25417921 +h1,3219:12937899,25417921:0,0,0 +k1,3219:32583029,25417921:19645130 +g1,3219:32583029,25417921 +) +(1,3220:6630773,26102776:25952256,424439,79822 +h1,3220:6630773,26102776:0,0,0 +g1,3220:9618359,26102776 +g1,3220:10282267,26102776 +h1,3220:11278129,26102776:0,0,0 +k1,3220:32583029,26102776:21304900 +g1,3220:32583029,26102776 +) +(1,3224:6630773,26918703:25952256,424439,79822 +(1,3222:6630773,26918703:0,0,0 +g1,3222:6630773,26918703 +g1,3222:6630773,26918703 +g1,3222:6303093,26918703 +(1,3222:6303093,26918703:0,0,0 +) +g1,3222:6630773,26918703 +) +g1,3224:7626635,26918703 +g1,3224:8954451,26918703 +h1,3224:9618359,26918703:0,0,0 +k1,3224:32583029,26918703:22964670 +g1,3224:32583029,26918703 +) +(1,3226:6630773,27734630:25952256,424439,106246 +(1,3225:6630773,27734630:0,0,0 +g1,3225:6630773,27734630 +g1,3225:6630773,27734630 +g1,3225:6303093,27734630 +(1,3225:6303093,27734630:0,0,0 +) +g1,3225:6630773,27734630 +) +k1,3226:6630773,27734630:0 +g1,3226:9618359,27734630 +g1,3226:10282267,27734630 +h1,3226:11278129,27734630:0,0,0 +k1,3226:32583029,27734630:21304900 +g1,3226:32583029,27734630 +) +(1,3230:6630773,28550557:25952256,424439,79822 +(1,3228:6630773,28550557:0,0,0 +g1,3228:6630773,28550557 +g1,3228:6630773,28550557 +g1,3228:6303093,28550557 +(1,3228:6303093,28550557:0,0,0 +) +g1,3228:6630773,28550557 +) +g1,3230:7626635,28550557 +g1,3230:8954451,28550557 +h1,3230:9618359,28550557:0,0,0 +k1,3230:32583029,28550557:22964670 +g1,3230:32583029,28550557 +) +(1,3232:6630773,29366484:25952256,424439,86428 +(1,3231:6630773,29366484:0,0,0 +g1,3231:6630773,29366484 +g1,3231:6630773,29366484 +g1,3231:6303093,29366484 +(1,3231:6303093,29366484:0,0,0 +) +g1,3231:6630773,29366484 +) +k1,3232:6630773,29366484:0 +g1,3232:9618359,29366484 +g1,3232:10282267,29366484 +g1,3232:11610083,29366484 +h1,3232:15261577,29366484:0,0,0 +k1,3232:32583029,29366484:17321452 +g1,3232:32583029,29366484 +) +(1,3236:6630773,30182411:25952256,424439,79822 +(1,3234:6630773,30182411:0,0,0 +g1,3234:6630773,30182411 +g1,3234:6630773,30182411 +g1,3234:6303093,30182411 +(1,3234:6303093,30182411:0,0,0 +) +g1,3234:6630773,30182411 +) +g1,3236:7626635,30182411 +g1,3236:8954451,30182411 +h1,3236:10282267,30182411:0,0,0 +k1,3236:32583029,30182411:22300762 +g1,3236:32583029,30182411 +) +(1,3238:6630773,30998338:25952256,424439,106246 +(1,3237:6630773,30998338:0,0,0 +g1,3237:6630773,30998338 +g1,3237:6630773,30998338 +g1,3237:6303093,30998338 +(1,3237:6303093,30998338:0,0,0 +) +g1,3237:6630773,30998338 +) +k1,3238:6630773,30998338:0 +g1,3238:9618359,30998338 +g1,3238:10282267,30998338 +g1,3238:11610083,30998338 +h1,3238:15261577,30998338:0,0,0 +k1,3238:32583029,30998338:17321452 +g1,3238:32583029,30998338 +) +(1,3242:6630773,31814265:25952256,424439,79822 +(1,3240:6630773,31814265:0,0,0 +g1,3240:6630773,31814265 +g1,3240:6630773,31814265 +g1,3240:6303093,31814265 +(1,3240:6303093,31814265:0,0,0 +) +g1,3240:6630773,31814265 +) +g1,3242:7626635,31814265 +g1,3242:8954451,31814265 +h1,3242:10614221,31814265:0,0,0 +k1,3242:32583029,31814265:21968808 +g1,3242:32583029,31814265 +) +] +) +g1,3243:32583029,31894087 +g1,3243:6630773,31894087 +g1,3243:6630773,31894087 +g1,3243:32583029,31894087 +g1,3243:32583029,31894087 +) +h1,3243:6630773,32090695:0,0,0 +v1,3247:6630773,32955775:0,393216,0 +(1,3291:6630773,42927859:25952256,10365300,0 +g1,3291:6630773,42927859 +g1,3291:6237557,42927859 +r1,3291:6368629,42927859:131072,10365300,0 +g1,3291:6567858,42927859 +g1,3291:6764466,42927859 +[1,3291:6764466,42927859:25818563,10365300,0 +(1,3248:6764466,33316952:25818563,754393,260573 +(1,3247:6764466,33316952:0,754393,260573 +r1,3291:8010564,33316952:1246098,1014966,260573 +k1,3247:6764466,33316952:-1246098 +) +(1,3247:6764466,33316952:1246098,754393,260573 +) +k1,3247:8311529,33316952:300965 +k1,3247:8639209,33316952:327680 +k1,3247:8639209,33316952:0 +k1,3247:9568010,33316952:300966 +k1,3247:11620752,33316952:300965 +k1,3247:15252257,33316952:300965 +k1,3247:17251261,33316952:300966 +k1,3247:19809941,33316952:300965 +k1,3247:23183235,33316952:300966 +k1,3247:24640910,33316952:300965 +k1,3247:27122258,33316952:300965 +k1,3247:29152719,33316952:300966 +k1,3247:31635378,33316952:300965 +k1,3247:32583029,33316952:0 +) +(1,3248:6764466,34182032:25818563,513147,134348 +k1,3247:9538660,34182032:227465 +k1,3247:10425416,34182032:227464 +k1,3247:13084922,34182032:227465 +k1,3247:15000593,34182032:227464 +k1,3247:18044140,34182032:227465 +k1,3247:20978896,34182032:227464 +k1,3247:22587205,34182032:227465 +k1,3247:23346166,34182032:227464 +k1,3247:26103321,34182032:227465 +k1,3247:26990077,34182032:227464 +k1,3247:28547923,34182032:227465 +k1,3247:31591469,34182032:227464 +k1,3247:32583029,34182032:0 +) +(1,3248:6764466,35047112:25818563,513147,134348 +k1,3247:9018343,35047112:215707 +k1,3247:9850088,35047112:215707 +k1,3247:13472356,35047112:215707 +k1,3247:14920140,35047112:215707 +k1,3247:16154932,35047112:215707 +k1,3247:17530626,35047112:215707 +k1,3247:18555703,35047112:215707 +k1,3247:20269563,35047112:215707 +h1,3247:21066481,35047112:0,0,0 +k1,3247:21282188,35047112:215707 +k1,3247:22445546,35047112:215707 +k1,3247:23431956,35047112:215707 +k1,3247:26337261,35047112:215707 +k1,3247:30666007,35047112:215707 +k1,3247:32370037,35047112:215707 +k1,3247:32583029,35047112:0 +) +(1,3248:6764466,35912192:25818563,513147,134348 +k1,3247:8581976,35912192:156828 +k1,3247:10069184,35912192:156827 +k1,3247:10877440,35912192:156828 +k1,3247:14184583,35912192:156827 +k1,3247:16500167,35912192:156828 +k1,3247:19580556,35912192:156828 +k1,3247:21674627,35912192:156827 +k1,3247:23529493,35912192:156828 +k1,3247:25421713,35912192:156827 +k1,3247:29332443,35912192:156828 +k1,3247:32583029,35912192:0 +) +(1,3248:6764466,36777272:25818563,513147,134348 +k1,3247:7728156,36777272:145801 +k1,3247:10797519,36777272:145802 +k1,3247:12880564,36777272:145801 +k1,3247:14363300,36777272:145802 +k1,3247:18320675,36777272:145801 +k1,3247:19082515,36777272:145802 +k1,3247:21765870,36777272:145801 +(1,3247:21765870,36777272:0,459977,115847 +r1,3291:28454948,36777272:6689078,575824,115847 +k1,3247:21765870,36777272:-6689078 +) +(1,3247:21765870,36777272:6689078,459977,115847 +k1,3247:21765870,36777272:3277 +h1,3247:28451671,36777272:0,411205,112570 +) +k1,3247:28600750,36777272:145802 +k1,3247:29278048,36777272:145801 +k1,3247:32583029,36777272:0 +) +(1,3248:6764466,37642352:25818563,513147,134348 +k1,3247:8047964,37642352:237543 +k1,3247:10001895,37642352:237543 +k1,3247:10595297,37642352:237542 +k1,3247:12513183,37642352:237543 +k1,3247:13402154,37642352:237543 +k1,3247:15504196,37642352:237543 +k1,3247:16834223,37642352:237542 +k1,3247:17687804,37642352:237543 +k1,3247:19447093,37642352:237543 +k1,3247:20632287,37642352:237543 +k1,3247:23237645,37642352:237542 +k1,3247:26598634,37642352:237543 +k1,3247:29466137,37642352:237543 +k1,3247:32583029,37642352:0 +) +(1,3248:6764466,38507432:25818563,513147,134348 +k1,3247:7594021,38507432:178127 +k1,3247:8791232,38507432:178126 +k1,3247:10477998,38507432:178127 +k1,3247:11315417,38507432:178127 +k1,3247:12512629,38507432:178127 +k1,3247:16666169,38507432:178126 +k1,3247:17302393,38507432:178127 +k1,3247:18012017,38507432:178127 +k1,3247:19525112,38507432:178127 +k1,3247:20354666,38507432:178126 +k1,3247:21724238,38507432:178127 +k1,3247:22850016,38507432:178127 +k1,3247:26882315,38507432:178127 +k1,3247:28008092,38507432:178126 +k1,3247:30847636,38507432:178127 +k1,3247:32583029,38507432:0 +) +(1,3248:6764466,39372512:25818563,513147,126483 +h1,3247:6764466,39372512:0,0,0 +k1,3247:7580358,39372512:400950 +k1,3247:8811192,39372512:400949 +k1,3247:10248530,39372512:192511 +k1,3247:12768224,39372512:192511 +k1,3247:13620027,39372512:192511 +h1,3247:13620027,39372512:0,0,0 +k1,3247:14435918,39372512:400949 +k1,3247:15666753,39372512:400950 +k1,3247:17277761,39372512:192511 +k1,3247:17948028,39372512:192510 +k1,3247:19343780,39372512:192511 +k1,3247:20067788,39372512:192511 +k1,3247:21326570,39372512:192511 +k1,3247:24322711,39372512:192511 +k1,3247:25949149,39372512:192510 +k1,3247:28688389,39372512:192511 +k1,3247:30402646,39372512:192511 +k1,3247:32583029,39372512:0 +) +(1,3248:6764466,40237592:25818563,530548,134348 +k1,3247:7734422,40237592:222190 +k1,3247:9534064,40237592:222190 +k1,3247:10517782,40237592:222190 +k1,3247:13681228,40237592:222190 +k1,3247:15425164,40237592:222190 +k1,3247:16793579,40237592:222190 +h1,3247:16793579,40237592:0,0,0 +k1,3247:17671285,40237592:462764 +k1,3247:18963934,40237592:462764 +k1,3247:20430951,40237592:222190 +k1,3247:22047092,40237592:222190 +h1,3247:22047092,40237592:0,0,0 +k1,3247:24584568,40237592:462764 +k1,3247:25462274,40237592:462764 +k1,3247:27584808,40237592:462764 +k1,3247:28462514,40237592:462764 +k1,3247:29273316,40237592:222190 +k1,3247:31414400,40237592:222190 +h1,3247:31414400,40237592:0,0,0 +k1,3247:32051532,40237592:222190 +k1,3247:32583029,40237592:0 +) +(1,3248:6764466,41102672:25818563,505283,134348 +k1,3247:7365029,41102672:244703 +k1,3247:10095513,41102672:244703 +k1,3247:12199472,41102672:244703 +k1,3247:13886621,41102672:244702 +(1,3247:13886621,41102672:0,414482,115847 +r1,3291:14948310,41102672:1061689,530329,115847 +k1,3247:13886621,41102672:-1061689 +) +(1,3247:13886621,41102672:1061689,414482,115847 +k1,3247:13886621,41102672:3277 +h1,3247:14945033,41102672:0,411205,112570 +) +k1,3247:15366683,41102672:244703 +k1,3247:18401254,41102672:244703 +(1,3247:18401254,41102672:0,452978,115847 +r1,3291:20166367,41102672:1765113,568825,115847 +k1,3247:18401254,41102672:-1765113 +) +(1,3247:18401254,41102672:1765113,452978,115847 +k1,3247:18401254,41102672:3277 +h1,3247:20163090,41102672:0,411205,112570 +) +k1,3247:20411070,41102672:244703 +k1,3247:22996719,41102672:244703 +k1,3247:24260507,41102672:244703 +k1,3247:27210535,41102672:244702 +k1,3247:29309252,41102672:244703 +k1,3247:30169993,41102672:244703 +k1,3247:32583029,41102672:0 +) +(1,3248:6764466,41967752:25818563,513147,134348 +k1,3247:9092909,41967752:199834 +k1,3247:11338778,41967752:199835 +k1,3247:12304728,41967752:199834 +k1,3247:14515208,41967752:199835 +k1,3247:17224416,41967752:199834 +k1,3247:18107135,41967752:199834 +k1,3247:19900806,41967752:199835 +k1,3247:20862168,41967752:199834 +k1,3247:23945586,41967752:199834 +k1,3247:25164506,41967752:199835 +k1,3247:26684890,41967752:199834 +k1,3247:27544017,41967752:199835 +k1,3247:30398714,41967752:199834 +k1,3247:32583029,41967752:0 +) +(1,3248:6764466,42832832:25818563,505283,95027 +g1,3247:7646580,42832832 +g1,3247:8461847,42832832 +g1,3247:12984486,42832832 +g1,3247:15873313,42832832 +$1,3247:15873313,42832832 +g1,3247:17046932,42832832 +g1,3247:17797189,42832832 +g1,3247:18187286,42832832 +g1,3247:18901131,42832832 +$1,3247:19648241,42832832 +k1,3248:32583029,42832832:12761118 +g1,3248:32583029,42832832 +) +] +g1,3291:32583029,42927859 +) +] +(1,3291:32583029,45706769:0,0,0 +g1,3291:32583029,45706769 +) +) +] +(1,3291:6630773,47279633:25952256,0,0 +h1,3291:6630773,47279633:25952256,0,0 +) +] +(1,3291:4262630,4025873:0,0,0 +[1,3291:-473656,4025873:0,0,0 +(1,3291:-473656,-710413:0,0,0 +(1,3291:-473656,-710413:0,0,0 +g1,3291:-473656,-710413 +) +g1,3291:-473656,-710413 +) +] +) +] +!27551 +}67 +Input:619:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:620:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:621:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:622:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:623:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:624:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:625:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:626:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:627:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!848 +{68 +[1,3414:4262630,47279633:28320399,43253760,0 +(1,3414:4262630,4025873:0,0,0 +[1,3414:-473656,4025873:0,0,0 +(1,3414:-473656,-710413:0,0,0 +(1,3414:-473656,-644877:0,0,0 +k1,3414:-473656,-644877:-65536 ) -(1,4394:-473656,4736287:0,0,0 -k1,4394:-473656,4736287:5209943 +(1,3414:-473656,4736287:0,0,0 +k1,3414:-473656,4736287:5209943 ) -g1,4394:-473656,-710413 +g1,3414:-473656,-710413 ) ] ) -[1,4394:6630773,47279633:25952256,43253760,0 -[1,4394:6630773,4812305:25952256,786432,0 -(1,4394:6630773,4812305:25952256,505283,126483 -(1,4394:6630773,4812305:25952256,505283,126483 -g1,4394:3078558,4812305 -[1,4394:3078558,4812305:0,0,0 -(1,4394:3078558,2439708:0,1703936,0 -k1,4394:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,4394:2537886,2439708:1179648,16384,0 +[1,3414:6630773,47279633:25952256,43253760,0 +[1,3414:6630773,4812305:25952256,786432,0 +(1,3414:6630773,4812305:25952256,505283,126483 +(1,3414:6630773,4812305:25952256,505283,126483 +g1,3414:3078558,4812305 +[1,3414:3078558,4812305:0,0,0 +(1,3414:3078558,2439708:0,1703936,0 +k1,3414:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,3414:2537886,2439708:1179648,16384,0 ) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,4394:3078558,1915420:16384,1179648,0 +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,3414:3078558,1915420:16384,1179648,0 ) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) ] ) ) ) ] -[1,4394:3078558,4812305:0,0,0 -(1,4394:3078558,2439708:0,1703936,0 -g1,4394:29030814,2439708 -g1,4394:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,4394:36151628,1915420:16384,1179648,0 +[1,3414:3078558,4812305:0,0,0 +(1,3414:3078558,2439708:0,1703936,0 +g1,3414:29030814,2439708 +g1,3414:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,3414:36151628,1915420:16384,1179648,0 ) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) ] ) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,4394:37855564,2439708:1179648,16384,0 +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,3414:37855564,2439708:1179648,16384,0 ) ) -k1,4394:3078556,2439708:-34777008 +k1,3414:3078556,2439708:-34777008 ) ] -[1,4394:3078558,4812305:0,0,0 -(1,4394:3078558,49800853:0,16384,2228224 -k1,4394:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,4394:2537886,49800853:1179648,16384,0 +[1,3414:3078558,4812305:0,0,0 +(1,3414:3078558,49800853:0,16384,2228224 +k1,3414:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,3414:2537886,49800853:1179648,16384,0 ) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,4394:3078558,51504789:16384,1179648,0 +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,3414:3078558,51504789:16384,1179648,0 ) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) ] ) ) ) ] -[1,4394:3078558,4812305:0,0,0 -(1,4394:3078558,49800853:0,16384,2228224 -g1,4394:29030814,49800853 -g1,4394:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,4394:36151628,51504789:16384,1179648,0 +[1,3414:3078558,4812305:0,0,0 +(1,3414:3078558,49800853:0,16384,2228224 +g1,3414:29030814,49800853 +g1,3414:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,3414:36151628,51504789:16384,1179648,0 ) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 ) ] ) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,4394:37855564,49800853:1179648,16384,0 +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,3414:37855564,49800853:1179648,16384,0 ) ) -k1,4394:3078556,49800853:-34777008 +k1,3414:3078556,49800853:-34777008 ) ] -g1,4394:6630773,4812305 -g1,4394:6630773,4812305 -g1,4394:8826229,4812305 -g1,4394:13247287,4812305 -k1,4394:31786111,4812305:18538824 +g1,3414:6630773,4812305 +g1,3414:6630773,4812305 +g1,3414:8050282,4812305 +g1,3414:9459961,4812305 +g1,3414:10519678,4812305 +g1,3414:14021266,4812305 +k1,3414:31786110,4812305:17764844 +) +) +] +[1,3414:6630773,45706769:25952256,40108032,0 +(1,3414:6630773,45706769:25952256,40108032,0 +(1,3414:6630773,45706769:0,0,0 +g1,3414:6630773,45706769 ) +[1,3414:6630773,45706769:25952256,40108032,0 +v1,3291:6630773,6254097:0,393216,0 +(1,3291:6630773,15733555:25952256,9872674,0 +g1,3291:6630773,15733555 +g1,3291:6237557,15733555 +r1,3414:6368629,15733555:131072,9872674,0 +g1,3291:6567858,15733555 +g1,3291:6764466,15733555 +[1,3291:6764466,15733555:25818563,9872674,0 +v1,3250:6764466,6254097:0,393216,0 +(1,3287:6764466,15536947:25818563,9676066,196608 +g1,3287:6764466,15536947 +g1,3287:6764466,15536947 +g1,3287:6567858,15536947 +(1,3287:6567858,15536947:0,9676066,196608 +r1,3414:32779637,15536947:26211779,9872674,196608 +k1,3287:6567857,15536947:-26211780 +) +(1,3287:6567858,15536947:26211779,9676066,196608 +[1,3287:6764466,15536947:25818563,9479458,0 +(1,3252:6764466,6481928:25818563,424439,112852 +(1,3251:6764466,6481928:0,0,0 +g1,3251:6764466,6481928 +g1,3251:6764466,6481928 +g1,3251:6436786,6481928 +(1,3251:6436786,6481928:0,0,0 +) +g1,3251:6764466,6481928 +) +k1,3252:6764466,6481928:0 +g1,3252:9420098,6481928 +g1,3252:10415960,6481928 +g1,3252:11079868,6481928 +g1,3252:11743776,6481928 +g1,3252:13735500,6481928 +g1,3252:14731362,6481928 +g1,3252:17718948,6481928 +g1,3252:19046764,6481928 +k1,3252:19046764,6481928:0 +h1,3252:21702395,6481928:0,0,0 +k1,3252:32583029,6481928:10880634 +g1,3252:32583029,6481928 +) +(1,3256:6764466,7297855:25818563,424439,79822 +(1,3254:6764466,7297855:0,0,0 +g1,3254:6764466,7297855 +g1,3254:6764466,7297855 +g1,3254:6436786,7297855 +(1,3254:6436786,7297855:0,0,0 +) +g1,3254:6764466,7297855 +) +g1,3256:7760328,7297855 +g1,3256:9088144,7297855 +h1,3256:10747914,7297855:0,0,0 +k1,3256:32583030,7297855:21835116 +g1,3256:32583030,7297855 +) +(1,3258:6764466,8113782:25818563,424439,106246 +(1,3257:6764466,8113782:0,0,0 +g1,3257:6764466,8113782 +g1,3257:6764466,8113782 +g1,3257:6436786,8113782 +(1,3257:6436786,8113782:0,0,0 +) +g1,3257:6764466,8113782 +) +k1,3258:6764466,8113782:0 +g1,3258:8756190,8113782 +g1,3258:9420098,8113782 +g1,3258:10747914,8113782 +g1,3258:11743776,8113782 +h1,3258:12075730,8113782:0,0,0 +k1,3258:32583030,8113782:20507300 +g1,3258:32583030,8113782 +) +(1,3262:6764466,8929709:25818563,424439,79822 +(1,3260:6764466,8929709:0,0,0 +g1,3260:6764466,8929709 +g1,3260:6764466,8929709 +g1,3260:6436786,8929709 +(1,3260:6436786,8929709:0,0,0 +) +g1,3260:6764466,8929709 +) +g1,3262:7760328,8929709 +g1,3262:9088144,8929709 +h1,3262:10747914,8929709:0,0,0 +k1,3262:32583030,8929709:21835116 +g1,3262:32583030,8929709 +) +(1,3264:6764466,9745636:25818563,424439,106246 +(1,3263:6764466,9745636:0,0,0 +g1,3263:6764466,9745636 +g1,3263:6764466,9745636 +g1,3263:6436786,9745636 +(1,3263:6436786,9745636:0,0,0 +) +g1,3263:6764466,9745636 +) +k1,3264:6764466,9745636:0 +g1,3264:11079868,9745636 +g1,3264:11743776,9745636 +k1,3264:11743776,9745636:0 +h1,3264:13403546,9745636:0,0,0 +k1,3264:32583030,9745636:19179484 +g1,3264:32583030,9745636 +) +(1,3268:6764466,10561563:25818563,424439,79822 +(1,3266:6764466,10561563:0,0,0 +g1,3266:6764466,10561563 +g1,3266:6764466,10561563 +g1,3266:6436786,10561563 +(1,3266:6436786,10561563:0,0,0 +) +g1,3266:6764466,10561563 +) +g1,3268:7760328,10561563 +g1,3268:9088144,10561563 +h1,3268:10415960,10561563:0,0,0 +k1,3268:32583028,10561563:22167068 +g1,3268:32583028,10561563 +) +(1,3270:6764466,11377490:25818563,424439,106246 +(1,3269:6764466,11377490:0,0,0 +g1,3269:6764466,11377490 +g1,3269:6764466,11377490 +g1,3269:6436786,11377490 +(1,3269:6436786,11377490:0,0,0 +) +g1,3269:6764466,11377490 +) +k1,3270:6764466,11377490:0 +g1,3270:10084006,11377490 +g1,3270:10747914,11377490 +g1,3270:12407684,11377490 +g1,3270:13071592,11377490 +k1,3270:13071592,11377490:0 +h1,3270:14731362,11377490:0,0,0 +k1,3270:32583030,11377490:17851668 +g1,3270:32583030,11377490 +) +(1,3274:6764466,12193417:25818563,424439,79822 +(1,3272:6764466,12193417:0,0,0 +g1,3272:6764466,12193417 +g1,3272:6764466,12193417 +g1,3272:6436786,12193417 +(1,3272:6436786,12193417:0,0,0 +) +g1,3272:6764466,12193417 +) +g1,3274:7760328,12193417 +g1,3274:9088144,12193417 +h1,3274:10415960,12193417:0,0,0 +k1,3274:32583028,12193417:22167068 +g1,3274:32583028,12193417 +) +(1,3276:6764466,13009344:25818563,424439,106246 +(1,3275:6764466,13009344:0,0,0 +g1,3275:6764466,13009344 +g1,3275:6764466,13009344 +g1,3275:6436786,13009344 +(1,3275:6436786,13009344:0,0,0 +) +g1,3275:6764466,13009344 +) +k1,3276:6764466,13009344:0 +h1,3276:9088144,13009344:0,0,0 +k1,3276:32583028,13009344:23494884 +g1,3276:32583028,13009344 +) +(1,3280:6764466,13825271:25818563,424439,79822 +(1,3278:6764466,13825271:0,0,0 +g1,3278:6764466,13825271 +g1,3278:6764466,13825271 +g1,3278:6436786,13825271 +(1,3278:6436786,13825271:0,0,0 +) +g1,3278:6764466,13825271 +) +g1,3280:7760328,13825271 +g1,3280:9088144,13825271 +k1,3280:9088144,13825271:0 +h1,3280:13071591,13825271:0,0,0 +k1,3280:32583029,13825271:19511438 +g1,3280:32583029,13825271 +) +(1,3282:6764466,14641198:25818563,424439,106246 +(1,3281:6764466,14641198:0,0,0 +g1,3281:6764466,14641198 +g1,3281:6764466,14641198 +g1,3281:6436786,14641198 +(1,3281:6436786,14641198:0,0,0 +) +g1,3281:6764466,14641198 +) +k1,3282:6764466,14641198:0 +g1,3282:8756190,14641198 +g1,3282:9420098,14641198 +h1,3282:10415960,14641198:0,0,0 +k1,3282:32583028,14641198:22167068 +g1,3282:32583028,14641198 +) +(1,3286:6764466,15457125:25818563,424439,79822 +(1,3284:6764466,15457125:0,0,0 +g1,3284:6764466,15457125 +g1,3284:6764466,15457125 +g1,3284:6436786,15457125 +(1,3284:6436786,15457125:0,0,0 +) +g1,3284:6764466,15457125 +) +g1,3286:7760328,15457125 +g1,3286:9088144,15457125 +k1,3286:9088144,15457125:0 +h1,3286:13403545,15457125:0,0,0 +k1,3286:32583029,15457125:19179484 +g1,3286:32583029,15457125 +) +] +) +g1,3287:32583029,15536947 +g1,3287:6764466,15536947 +g1,3287:6764466,15536947 +g1,3287:32583029,15536947 +g1,3287:32583029,15536947 +) +h1,3287:6764466,15733555:0,0,0 +] +g1,3291:32583029,15733555 +) +h1,3291:6630773,15733555:0,0,0 +v1,3296:6630773,16598635:0,393216,0 +(1,3305:6630773,18129079:25952256,1923660,0 +g1,3305:6630773,18129079 +g1,3305:6237557,18129079 +r1,3414:6368629,18129079:131072,1923660,0 +g1,3305:6567858,18129079 +g1,3305:6764466,18129079 +[1,3305:6764466,18129079:25818563,1923660,0 +(1,3297:6764466,16906933:25818563,701514,196608 +(1,3296:6764466,16906933:0,701514,196608 +r1,3414:8010564,16906933:1246098,898122,196608 +k1,3296:6764466,16906933:-1246098 +) +(1,3296:6764466,16906933:1246098,701514,196608 +) +g1,3296:8209793,16906933 +g1,3296:8537473,16906933 +g1,3296:9933389,16906933 +g1,3296:11628805,16906933 +g1,3296:13696465,16906933 +g1,3296:16580704,16906933 +g1,3296:17546049,16906933 +g1,3296:20035106,16906933 +g1,3296:21628286,16906933 +g1,3296:23895831,16906933 +(1,3296:23895831,16906933:0,452978,115847 +r1,3414:26012656,16906933:2116825,568825,115847 +k1,3296:23895831,16906933:-2116825 +) +(1,3296:23895831,16906933:2116825,452978,115847 +k1,3296:23895831,16906933:3277 +h1,3296:26009379,16906933:0,411205,112570 +) +g1,3296:26385555,16906933 +(1,3296:26385555,16906933:0,452978,115847 +r1,3414:28502380,16906933:2116825,568825,115847 +k1,3296:26385555,16906933:-2116825 +) +(1,3296:26385555,16906933:2116825,452978,115847 +k1,3296:26385555,16906933:3277 +h1,3296:28499103,16906933:0,411205,112570 +) +g1,3296:28875279,16906933 +g1,3296:30265953,16906933 +g1,3296:31190010,16906933 +k1,3297:32583029,16906933:409979 +g1,3297:32583029,16906933 +) +v1,3299:6764466,17591788:0,393216,0 +(1,3303:6764466,17932471:25818563,733899,196608 +g1,3303:6764466,17932471 +g1,3303:6764466,17932471 +g1,3303:6567858,17932471 +(1,3303:6567858,17932471:0,733899,196608 +r1,3414:32779637,17932471:26211779,930507,196608 +k1,3303:6567857,17932471:-26211780 +) +(1,3303:6567858,17932471:26211779,733899,196608 +[1,3303:6764466,17932471:25818563,537291,0 +(1,3301:6764466,17819619:25818563,424439,112852 +(1,3300:6764466,17819619:0,0,0 +g1,3300:6764466,17819619 +g1,3300:6764466,17819619 +g1,3300:6436786,17819619 +(1,3300:6436786,17819619:0,0,0 +) +g1,3300:6764466,17819619 +) +k1,3301:6764466,17819619:0 +g1,3301:10747914,17819619 +g1,3301:11411822,17819619 +g1,3301:15063316,17819619 +g1,3301:15727224,17819619 +h1,3301:22366303,17819619:0,0,0 +k1,3301:32583029,17819619:10216726 +g1,3301:32583029,17819619 +) +] +) +g1,3303:32583029,17932471 +g1,3303:6764466,17932471 +g1,3303:6764466,17932471 +g1,3303:32583029,17932471 +g1,3303:32583029,17932471 +) +h1,3303:6764466,18129079:0,0,0 +] +g1,3305:32583029,18129079 +) +h1,3305:6630773,18129079:0,0,0 +(1,3307:6630773,20960239:25952256,32768,229376 +(1,3307:6630773,20960239:0,32768,229376 +(1,3307:6630773,20960239:5505024,32768,229376 +r1,3414:12135797,20960239:5505024,262144,229376 +) +k1,3307:6630773,20960239:-5505024 +) +(1,3307:6630773,20960239:25952256,32768,0 +r1,3414:32583029,20960239:25952256,32768,0 +) +) +(1,3307:6630773,22592091:25952256,606339,151780 +(1,3307:6630773,22592091:1974731,582746,14155 +g1,3307:6630773,22592091 +g1,3307:8605504,22592091 +) +g1,3307:10448114,22592091 +g1,3307:12157817,22592091 +g1,3307:13563171,22592091 +k1,3307:32583029,22592091:14806155 +g1,3307:32583029,22592091 +) +(1,3311:6630773,23850387:25952256,513147,134348 +k1,3310:8077963,23850387:250503 +k1,3310:8743257,23850387:250451 +k1,3310:11836056,23850387:250503 +k1,3310:14943273,23850387:250503 +k1,3310:16128319,23850387:250503 +k1,3310:19783416,23850387:250502 +k1,3310:20843289,23850387:250503 +k1,3310:23575640,23850387:250503 +k1,3310:25383934,23850387:250503 +k1,3310:26738719,23850387:250503 +k1,3310:27736987,23850387:250502 +k1,3310:29964711,23850387:250503 +k1,3310:30831252,23850387:250503 +k1,3310:32583029,23850387:0 +) +(1,3311:6630773,24715467:25952256,513147,134348 +k1,3310:9628980,24715467:235864 +k1,3310:12564272,24715467:235864 +k1,3310:14498173,24715467:235863 +k1,3310:18969629,24715467:235864 +k1,3310:20396938,24715467:235864 +k1,3310:24036087,24715467:235864 +k1,3310:26580129,24715467:235864 +k1,3310:27475284,24715467:235863 +k1,3310:29895463,24715467:235864 +k1,3310:30759162,24715467:235864 +k1,3311:32583029,24715467:0 +) +(1,3311:6630773,25580547:25952256,513147,134348 +k1,3310:9825871,25580547:149640 +k1,3310:10433609,25580547:149641 +k1,3310:11114746,25580547:149640 +k1,3310:13159033,25580547:149641 +k1,3310:14256324,25580547:149640 +k1,3310:17241052,25580547:149641 +k1,3310:18042120,25580547:149640 +k1,3310:19907494,25580547:149641 +k1,3310:21149619,25580547:149640 +k1,3310:21958552,25580547:149641 +k1,3310:25082871,25580547:149640 +k1,3310:27540690,25580547:149641 +k1,3310:28349622,25580547:149640 +k1,3310:29982997,25580547:149640 +k1,3310:31623582,25580547:149641 +k1,3310:32583029,25580547:0 +) +(1,3311:6630773,26445627:25952256,505283,134348 +k1,3310:9093324,26445627:135368 +k1,3310:12633287,26445627:135368 +k1,3310:13960100,26445627:135368 +k1,3310:15604107,26445627:135368 +k1,3310:19374758,26445627:135369 +k1,3310:20126164,26445627:135368 +k1,3310:24584942,26445627:135368 +k1,3310:27409908,26445627:135368 +k1,3310:28736721,26445627:135368 +k1,3311:32583029,26445627:0 +) +(1,3311:6630773,27310707:25952256,513147,134348 +k1,3310:7949826,27310707:328804 +k1,3310:8693342,27310707:328673 +k1,3310:12047943,27310707:328804 +k1,3310:13541977,27310707:328804 +k1,3310:15840792,27310707:328803 +$1,3310:15840792,27310707 +$1,3310:16408989,27310707 +k1,3310:16911463,27310707:328804 +(1,3310:16911463,27310707:0,452978,115847 +r1,3414:19380000,27310707:2468537,568825,115847 +k1,3310:16911463,27310707:-2468537 +) +(1,3310:16911463,27310707:2468537,452978,115847 +k1,3310:16911463,27310707:3277 +h1,3310:19376723,27310707:0,411205,112570 +) +k1,3310:19882474,27310707:328804 +k1,3310:24017609,27310707:328804 +$1,3310:24017609,27310707 +$1,3310:24585806,27310707 +k1,3310:25088279,27310707:328803 +(1,3310:25088279,27310707:0,452978,115847 +r1,3414:28963663,27310707:3875384,568825,115847 +k1,3310:25088279,27310707:-3875384 +) +(1,3310:25088279,27310707:3875384,452978,115847 +k1,3310:25088279,27310707:3277 +h1,3310:28960386,27310707:0,411205,112570 +) +k1,3310:29466137,27310707:328804 +k1,3310:32583029,27310707:0 +) +(1,3311:6630773,28175787:25952256,505283,126483 +k1,3310:11670327,28175787:193167 +$1,3310:11670327,28175787 +$1,3310:12238524,28175787 +k1,3310:12605360,28175787:193166 +(1,3310:12605360,28175787:0,459977,115847 +r1,3414:15777320,28175787:3171960,575824,115847 +k1,3310:12605360,28175787:-3171960 +) +(1,3310:12605360,28175787:3171960,459977,115847 +k1,3310:12605360,28175787:3277 +h1,3310:15774043,28175787:0,411205,112570 +) +k1,3310:16144157,28175787:193167 +k1,3310:18857838,28175787:193166 +k1,3310:20193953,28175787:193167 +(1,3310:20193953,28175787:0,452978,115847 +r1,3414:23717625,28175787:3523672,568825,115847 +k1,3310:20193953,28175787:-3523672 +) +(1,3310:20193953,28175787:3523672,452978,115847 +k1,3310:20193953,28175787:3277 +h1,3310:23714348,28175787:0,411205,112570 +) +k1,3310:24084461,28175787:193166 +k1,3310:28355933,28175787:193167 +(1,3310:28355933,28175787:0,452978,115847 +r1,3414:32583029,28175787:4227096,568825,115847 +k1,3310:28355933,28175787:-4227096 +) +(1,3310:28355933,28175787:4227096,452978,115847 +k1,3310:28355933,28175787:3277 +h1,3310:32579752,28175787:0,411205,112570 +) +k1,3310:32583029,28175787:0 +) +(1,3311:6630773,29040867:25952256,513147,126483 +k1,3310:8016500,29040867:194282 +k1,3310:10957397,29040867:194283 +(1,3310:10957397,29040867:0,452978,115847 +r1,3414:12370798,29040867:1413401,568825,115847 +k1,3310:10957397,29040867:-1413401 +) +(1,3310:10957397,29040867:1413401,452978,115847 +k1,3310:10957397,29040867:3277 +h1,3310:12367521,29040867:0,411205,112570 +) +k1,3310:12738750,29040867:194282 +k1,3310:14129720,29040867:194283 +k1,3310:15630135,29040867:194282 +k1,3310:17479202,29040867:194283 +k1,3310:21078079,29040867:194282 +k1,3310:23283006,29040867:194282 +k1,3310:23833149,29040867:194283 +k1,3310:26005308,29040867:194282 +k1,3310:26858883,29040867:194283 +k1,3310:28072250,29040867:194282 +k1,3310:29920006,29040867:194283 +k1,3310:31896867,29040867:194282 +k1,3310:32583029,29040867:0 +) +(1,3311:6630773,29905947:25952256,513147,126483 +k1,3310:8325067,29905947:185655 +k1,3310:10723217,29905947:185655 +k1,3310:12100318,29905947:185656 +k1,3310:13305058,29905947:185655 +k1,3310:14638904,29905947:185655 +k1,3310:16479343,29905947:185655 +k1,3310:17020858,29905947:185655 +(1,3310:17020858,29905947:0,452978,122846 +r1,3414:19489395,29905947:2468537,575824,122846 +k1,3310:17020858,29905947:-2468537 +) +(1,3310:17020858,29905947:2468537,452978,122846 +k1,3310:17020858,29905947:3277 +h1,3310:19486118,29905947:0,411205,112570 +) +k1,3310:19675051,29905947:185656 +k1,3310:22012253,29905947:185655 +k1,3310:23394595,29905947:185655 +k1,3310:25537155,29905947:185655 +k1,3310:26382102,29905947:185655 +k1,3310:27586843,29905947:185656 +k1,3310:29078631,29905947:185655 +k1,3310:30919070,29905947:185655 +k1,3311:32583029,29905947:0 +) +(1,3311:6630773,30771027:25952256,505283,134348 +k1,3310:8779862,30771027:195461 +k1,3310:9506820,30771027:195461 +k1,3310:11303981,30771027:195461 +k1,3310:13300371,30771027:195461 +k1,3310:16778530,30771027:195461 +k1,3310:18367942,30771027:195461 +k1,3310:20198527,30771027:195462 +k1,3310:23514157,30771027:195461 +k1,3310:25628512,30771027:195461 +k1,3310:26843058,30771027:195461 +k1,3310:29817246,30771027:195461 +k1,3310:31693050,30771027:195461 +k1,3310:32583029,30771027:0 +) +(1,3311:6630773,31636107:25952256,513147,134348 +g1,3310:8672874,31636107 +g1,3310:9531395,31636107 +g1,3310:10749709,31636107 +g1,3310:14230326,31636107 +g1,3310:14961052,31636107 +g1,3310:17908861,31636107 +g1,3310:18724128,31636107 +g1,3310:21016577,31636107 +k1,3311:32583029,31636107:10021768 +g1,3311:32583029,31636107 +) +(1,3368:6630773,37829798:25952256,5646466,0 +h1,3313:6630773,37829798:983040,0,0 +k1,3313:9934956,37829798:2321143 +(1,3339:9934956,37829798:9002893,5646466,0 +g1,3339:12758189,37829798 +(1,3339:12758189,35006565:0,0,0 +(1,3339:12758189,35006565:0,0,0 +g1,3317:12758189,35006565 +g1,3320:12758189,35006565 +g1,3320:12758189,35006565 +(1,3320:12758189,35006565:0,0,0 +(1,3320:12758189,35006565:0,0,0 +g1,3320:12758189,35006565 +(1,3320:12758189,35006565:0,0,0 +(1,3320:12758189,35006565:0,0,0 +h1,3320:12758189,35006565:0,0,0 +g1,3320:12758189,35006565 +) +) +g1,3320:12758189,35006565 +g1,3320:12758189,35006565 +) +(1,3320:12758189,35006565:0,0,0 +g1,3320:12758189,35006565 +g1,3320:12758189,35006565 +g1,3320:12758189,35006565 +g1,3320:12758189,35006565 +g1,3320:12758189,35006565 +(1,3320:12758189,35006565:0,0,0 +(1,3320:12758189,35006565:414188,385352,0 +(1,3320:12758189,35006565:414188,385352,0 +$1,3320:12758189,35006565 +$1,3320:13172377,35006565 +) +g1,3320:13172377,35006565 +) +) +g1,3320:12758189,35006565 +g1,3320:12758189,35006565 +) +) +g1,3320:12758189,35006565 +g1,3323:12758189,35006565 +g1,3323:12758189,35006565 +(1,3323:12758189,35006565:0,0,0 +(1,3323:12758189,35006565:0,0,0 +g1,3323:12758189,35006565 +(1,3323:12758189,35006565:0,0,0 +(1,3323:12758189,35006565:0,0,0 +h1,3323:12758189,35006565:0,0,0 +g1,3323:12758189,35006565 +) +) +g1,3323:12758189,35006565 +g1,3323:12758189,35006565 +) +(1,3323:12758189,35006565:0,0,0 +g1,3323:12758189,35006565 +g1,3323:12758189,35006565 +g1,3323:12758189,35006565 +(1,3323:12758189,35006565:0,0,0 +(1,3323:12758189,35006565:358613,379060,0 +(1,3323:12758189,35006565:358613,379060,0 +$1,3323:12758189,35006565 +$1,3323:13116802,35006565 +) +g1,3323:13116802,35006565 +) +) +g1,3323:12758189,35006565 +g1,3323:12758189,35006565 +) +) +g1,3323:12758189,35006565 +g1,3329:12758189,35006565 +g1,3330:12758189,35006565 +g1,3330:12758189,35006565 +g1,3333:12758189,35006565 +g1,3334:12758189,35006565 +(1,3337:12758189,35006565:0,0,0 +(1,3337:12758189,35006565:0,0,0 +g1,3337:12758189,35006565 +g1,3337:12758189,35006565 +g1,3337:12758189,35006565 +g1,3337:12758189,35006565 +g1,3337:12758189,35006565 +(1,3337:12758189,35006565:0,0,0 +(1,3337:12758189,35006565:1460399,385352,0 +(1,3337:12758189,35006565:1460399,385352,0 +$1,3337:12758189,35006565 +g1,3337:13288897,35006565 +g1,3337:13859975,35006565 +$1,3337:14218588,35006565 +) +g1,3337:14218588,35006565 +) +) +g1,3337:12758189,35006565 +g1,3337:12758189,35006565 +) +) +g1,3337:12758189,35006565 +g1,3339:12758189,35006565 +g1,3339:12758189,35006565 +) +g1,3339:12758189,35006565 +) +) +k1,3340:21258993,37829798:2321144 +(1,3365:21258993,37829798:9002893,5646466,0 +g1,3365:24082226,37829798 +(1,3365:24082226,35006565:0,0,0 +(1,3365:24082226,35006565:0,0,0 +g1,3344:24082226,35006565 +g1,3347:24082226,35006565 +g1,3347:24082226,35006565 +(1,3347:24082226,35006565:0,0,0 +(1,3347:24082226,35006565:0,0,0 +g1,3347:24082226,35006565 +(1,3347:24082226,35006565:0,0,0 +(1,3347:24082226,35006565:0,0,0 +h1,3347:24082226,35006565:0,0,0 +g1,3347:24082226,35006565 +) +) +g1,3347:24082226,35006565 +g1,3347:24082226,35006565 +) +(1,3347:24082226,35006565:0,0,0 +g1,3347:24082226,35006565 +g1,3347:24082226,35006565 +g1,3347:24082226,35006565 +g1,3347:24082226,35006565 +g1,3347:24082226,35006565 +(1,3347:24082226,35006565:0,0,0 +(1,3347:24082226,35006565:414188,385352,0 +(1,3347:24082226,35006565:414188,385352,0 +$1,3347:24082226,35006565 +$1,3347:24496414,35006565 +) +g1,3347:24496414,35006565 +) +) +g1,3347:24082226,35006565 +g1,3347:24082226,35006565 +) +) +g1,3347:24082226,35006565 +g1,3350:24082226,35006565 +g1,3350:24082226,35006565 +(1,3350:24082226,35006565:0,0,0 +(1,3350:24082226,35006565:0,0,0 +g1,3350:24082226,35006565 +(1,3350:24082226,35006565:0,0,0 +(1,3350:24082226,35006565:0,0,0 +h1,3350:24082226,35006565:0,0,0 +g1,3350:24082226,35006565 +) +) +g1,3350:24082226,35006565 +g1,3350:24082226,35006565 +) +(1,3350:24082226,35006565:0,0,0 +g1,3350:24082226,35006565 +g1,3350:24082226,35006565 +g1,3350:24082226,35006565 +(1,3350:24082226,35006565:0,0,0 +(1,3350:24082226,35006565:358613,379060,0 +(1,3350:24082226,35006565:358613,379060,0 +$1,3350:24082226,35006565 +$1,3350:24440839,35006565 +) +g1,3350:24440839,35006565 +) +) +g1,3350:24082226,35006565 +g1,3350:24082226,35006565 +) +) +g1,3350:24082226,35006565 +g1,3356:24082226,35006565 +g1,3357:24082226,35006565 +g1,3357:24082226,35006565 +g1,3359:24082226,35006565 +g1,3360:24082226,35006565 +(1,3363:24082226,35006565:0,0,0 +(1,3363:24082226,35006565:0,0,0 +g1,3363:24082226,35006565 +g1,3363:24082226,35006565 +g1,3363:24082226,35006565 +g1,3363:24082226,35006565 +g1,3363:24082226,35006565 +(1,3363:24082226,35006565:0,0,0 +(1,3363:24082226,35006565:1460399,385352,0 +(1,3363:24082226,35006565:1460399,385352,0 +$1,3363:24082226,35006565 +g1,3363:24612934,35006565 +g1,3363:25184012,35006565 +$1,3363:25542625,35006565 +) +g1,3363:25542625,35006565 +) +) +g1,3363:24082226,35006565 +g1,3363:24082226,35006565 +) +) +g1,3363:24082226,35006565 +g1,3365:24082226,35006565 +g1,3365:24082226,35006565 +) +g1,3365:24082226,35006565 +) +) +k1,3366:32583029,37829798:2321143 +g1,3368:32583029,37829798 +g1,3368:32583029,37829798 +) +(1,3410:6630773,44097546:25952256,5646466,0 +h1,3369:6630773,44097546:983040,0,0 +k1,3369:9868547,44097546:2254734 +(1,3387:9868547,44097546:9002893,5646466,0 +g1,3387:12691780,44097546 +(1,3387:12691780,41274313:0,0,0 +(1,3387:12691780,41274313:0,0,0 +g1,3372:12691780,41274313 +g1,3375:12691780,41274313 +g1,3375:12691780,41274313 +(1,3375:12691780,41274313:0,0,0 +(1,3375:12691780,41274313:0,0,0 +g1,3375:12691780,41274313 +(1,3375:12691780,41274313:0,0,0 +(1,3375:12691780,41274313:0,0,0 +h1,3375:12691780,41274313:0,0,0 +g1,3375:12691780,41274313 +) +) +g1,3375:12691780,41274313 +g1,3375:12691780,41274313 +) +(1,3375:12691780,41274313:0,0,0 +g1,3375:12691780,41274313 +g1,3375:12691780,41274313 +g1,3375:12691780,41274313 +g1,3375:12691780,41274313 +g1,3375:12691780,41274313 +(1,3375:12691780,41274313:0,0,0 +(1,3375:12691780,41274313:414188,385352,0 +(1,3375:12691780,41274313:414188,385352,0 +$1,3375:12691780,41274313 +$1,3375:13105968,41274313 +) +g1,3375:13105968,41274313 +) +) +g1,3375:12691780,41274313 +g1,3375:12691780,41274313 +) +) +g1,3375:12691780,41274313 +g1,3378:12691780,41274313 +g1,3378:12691780,41274313 +(1,3378:12691780,41274313:0,0,0 +(1,3378:12691780,41274313:0,0,0 +g1,3378:12691780,41274313 +(1,3378:12691780,41274313:0,0,0 +(1,3378:12691780,41274313:0,0,0 +h1,3378:12691780,41274313:0,0,0 +g1,3378:12691780,41274313 +) +) +g1,3378:12691780,41274313 +g1,3378:12691780,41274313 +) +(1,3378:12691780,41274313:0,0,0 +g1,3378:12691780,41274313 +g1,3378:12691780,41274313 +g1,3378:12691780,41274313 +(1,3378:12691780,41274313:0,0,0 +(1,3378:12691780,41274313:358613,379060,0 +(1,3378:12691780,41274313:358613,379060,0 +$1,3378:12691780,41274313 +$1,3378:13050393,41274313 +) +g1,3378:13050393,41274313 +) +) +g1,3378:12691780,41274313 +g1,3378:12691780,41274313 +) +) +g1,3378:12691780,41274313 +g1,3381:12691780,41274313 +g1,3382:12691780,41274313 +(1,3385:12691780,41274313:0,0,0 +(1,3385:12691780,41274313:0,0,0 +g1,3385:12691780,41274313 +g1,3385:12691780,41274313 +g1,3385:12691780,41274313 +g1,3385:12691780,41274313 +g1,3385:12691780,41274313 +(1,3385:12691780,41274313:0,0,0 +(1,3385:12691780,41274313:1460399,385352,0 +(1,3385:12691780,41274313:1460399,385352,0 +$1,3385:12691780,41274313 +g1,3385:13222488,41274313 +g1,3385:13793566,41274313 +$1,3385:14152179,41274313 +) +g1,3385:14152179,41274313 +) +) +g1,3385:12691780,41274313 +g1,3385:12691780,41274313 +) +) +g1,3385:12691780,41274313 +g1,3387:12691780,41274313 +g1,3387:12691780,41274313 +) +g1,3387:12691780,41274313 +) +) +k1,3388:21126174,44097546:2254734 +(1,3406:21126174,44097546:9002893,5646466,0 +g1,3406:23949407,44097546 +(1,3406:23949407,41274313:0,0,0 +(1,3406:23949407,41274313:0,0,0 +g1,3391:23949407,41274313 +g1,3394:23949407,41274313 +g1,3394:23949407,41274313 +(1,3394:23949407,41274313:0,0,0 +(1,3394:23949407,41274313:0,0,0 +g1,3394:23949407,41274313 +(1,3394:23949407,41274313:0,0,0 +(1,3394:23949407,41274313:0,0,0 +h1,3394:23949407,41274313:0,0,0 +g1,3394:23949407,41274313 +) +) +g1,3394:23949407,41274313 +g1,3394:23949407,41274313 +) +(1,3394:23949407,41274313:0,0,0 +g1,3394:23949407,41274313 +g1,3394:23949407,41274313 +g1,3394:23949407,41274313 +(1,3394:23949407,41274313:0,0,0 +(1,3394:23949407,41274313:358613,379060,0 +(1,3394:23949407,41274313:358613,379060,0 +$1,3394:23949407,41274313 +$1,3394:24308020,41274313 ) -] -[1,4394:6630773,45706769:25952256,40108032,0 -(1,4394:6630773,45706769:25952256,40108032,0 -(1,4394:6630773,45706769:0,0,0 -g1,4394:6630773,45706769 +g1,3394:24308020,41274313 ) -[1,4394:6630773,45706769:25952256,40108032,0 -v1,4327:6630773,6254097:0,393216,0 -(1,4327:6630773,11210803:25952256,5349922,196608 -g1,4327:6630773,11210803 -g1,4327:6630773,11210803 -g1,4327:6434165,11210803 -(1,4327:6434165,11210803:0,5349922,196608 -r1,4394:32779637,11210803:26345472,5546530,196608 -k1,4327:6434165,11210803:-26345472 ) -(1,4327:6434165,11210803:26345472,5349922,196608 -[1,4327:6630773,11210803:25952256,5153314,0 -(1,4310:6630773,6461715:25952256,404226,76021 -(1,4309:6630773,6461715:0,0,0 -g1,4309:6630773,6461715 -g1,4309:6630773,6461715 -g1,4309:6303093,6461715 -(1,4309:6303093,6461715:0,0,0 -) -g1,4309:6630773,6461715 -) -k1,4310:6630773,6461715:0 -h1,4310:9159939,6461715:0,0,0 -k1,4310:32583029,6461715:23423090 -g1,4310:32583029,6461715 -) -(1,4314:6630773,7127893:25952256,410518,107478 -(1,4312:6630773,7127893:0,0,0 -g1,4312:6630773,7127893 -g1,4312:6630773,7127893 -g1,4312:6303093,7127893 -(1,4312:6303093,7127893:0,0,0 -) -g1,4312:6630773,7127893 -) -g1,4314:7579210,7127893 -g1,4314:8843793,7127893 -g1,4314:10108376,7127893 -g1,4314:11372959,7127893 -g1,4314:12637542,7127893 -g1,4314:13902125,7127893 -g1,4314:15166708,7127893 -g1,4314:16431291,7127893 -g1,4314:17695874,7127893 -g1,4314:18960457,7127893 -h1,4314:19908894,7127893:0,0,0 -k1,4314:32583029,7127893:12674135 -g1,4314:32583029,7127893 -) -(1,4316:6630773,8449431:25952256,404226,82312 -(1,4315:6630773,8449431:0,0,0 -g1,4315:6630773,8449431 -g1,4315:6630773,8449431 -g1,4315:6303093,8449431 -(1,4315:6303093,8449431:0,0,0 -) -g1,4315:6630773,8449431 -) -k1,4316:6630773,8449431:0 -k1,4316:6630773,8449431:0 -h1,4316:10740668,8449431:0,0,0 -k1,4316:32583028,8449431:21842360 -g1,4316:32583028,8449431 -) -(1,4320:6630773,9115609:25952256,410518,107478 -(1,4318:6630773,9115609:0,0,0 -g1,4318:6630773,9115609 -g1,4318:6630773,9115609 -g1,4318:6303093,9115609 -(1,4318:6303093,9115609:0,0,0 -) -g1,4318:6630773,9115609 -) -g1,4320:7579210,9115609 -g1,4320:8843793,9115609 -g1,4320:10108376,9115609 -g1,4320:11372959,9115609 -g1,4320:12637542,9115609 -g1,4320:13902125,9115609 -g1,4320:15166708,9115609 -g1,4320:16431291,9115609 -g1,4320:17695874,9115609 -h1,4320:18644311,9115609:0,0,0 -k1,4320:32583029,9115609:13938718 -g1,4320:32583029,9115609 -) -(1,4322:6630773,10437147:25952256,404226,76021 -(1,4321:6630773,10437147:0,0,0 -g1,4321:6630773,10437147 -g1,4321:6630773,10437147 -g1,4321:6303093,10437147 -(1,4321:6303093,10437147:0,0,0 -) -g1,4321:6630773,10437147 -) -k1,4322:6630773,10437147:0 -k1,4322:6630773,10437147:0 -h1,4322:10108377,10437147:0,0,0 -k1,4322:32583029,10437147:22474652 -g1,4322:32583029,10437147 -) -(1,4326:6630773,11103325:25952256,410518,107478 -(1,4324:6630773,11103325:0,0,0 -g1,4324:6630773,11103325 -g1,4324:6630773,11103325 -g1,4324:6303093,11103325 -(1,4324:6303093,11103325:0,0,0 -) -g1,4324:6630773,11103325 -) -g1,4326:7579210,11103325 -g1,4326:8843793,11103325 -g1,4326:10108376,11103325 -g1,4326:11372959,11103325 -g1,4326:12637542,11103325 -g1,4326:13902125,11103325 -g1,4326:15166708,11103325 -g1,4326:16431291,11103325 -g1,4326:17695874,11103325 -h1,4326:18644311,11103325:0,0,0 -k1,4326:32583029,11103325:13938718 -g1,4326:32583029,11103325 -) -] -) -g1,4327:32583029,11210803 -g1,4327:6630773,11210803 -g1,4327:6630773,11210803 -g1,4327:32583029,11210803 -g1,4327:32583029,11210803 -) -h1,4327:6630773,11407411:0,0,0 -v1,4331:6630773,12881109:0,393216,0 -(1,4346:6630773,24560935:25952256,12073042,0 -g1,4346:6630773,24560935 -g1,4346:6303093,24560935 -r1,4394:6401397,24560935:98304,12073042,0 -g1,4346:6600626,24560935 -g1,4346:6797234,24560935 -[1,4346:6797234,24560935:25785795,12073042,0 -(1,4332:6797234,13313647:25785795,825754,196608 -(1,4331:6797234,13313647:0,825754,196608 -r1,4394:8834093,13313647:2036859,1022362,196608 -k1,4331:6797234,13313647:-2036859 -) -(1,4331:6797234,13313647:2036859,825754,196608 -) -k1,4331:8984349,13313647:150256 -k1,4331:10710567,13313647:327680 -k1,4331:13190628,13313647:150256 -k1,4331:14908505,13313647:150256 -k1,4331:17798166,13313647:150256 -k1,4331:19342373,13313647:150256 -k1,4331:21686775,13313647:150257 -k1,4331:23847676,13313647:150256 -k1,4331:25189377,13313647:150256 -k1,4331:26759798,13313647:150256 -k1,4331:28246988,13313647:150256 -k1,4331:29145010,13313647:150256 -k1,4331:32583029,13313647:0 -) -(1,4332:6797234,14155135:25785795,513147,126483 -k1,4331:8103192,14155135:221992 -k1,4331:8976612,14155135:221992 -k1,4331:10840937,14155135:221993 -k1,4331:11418789,14155135:221992 -k1,4331:12896451,14155135:221992 -k1,4331:14686064,14155135:221992 -k1,4331:15927141,14155135:221992 -k1,4331:19140853,14155135:221993 -k1,4331:21404947,14155135:221992 -k1,4331:21982799,14155135:221992 -k1,4331:23460461,14155135:221992 -k1,4331:24966959,14155135:221992 -k1,4331:26321414,14155135:221993 -k1,4331:27931459,14155135:221992 -k1,4331:29323924,14155135:221992 -k1,4331:32583029,14155135:0 -) -(1,4332:6797234,14996623:25785795,513147,134348 -k1,4331:8554691,14996623:208841 -k1,4331:9414961,14996623:208842 -k1,4331:11694740,14996623:208841 -k1,4331:13287701,14996623:208841 -k1,4331:14921951,14996623:208842 -k1,4331:16301265,14996623:208841 -k1,4331:17501666,14996623:208841 -k1,4331:21240932,14996623:208842 -k1,4331:22843724,14996623:208841 -k1,4331:25254575,14996623:208841 -k1,4331:28980079,14996623:208842 -k1,4331:30924313,14996623:208841 -k1,4332:32583029,14996623:0 -) -(1,4332:6797234,15838111:25785795,513147,134348 -k1,4331:9488688,15838111:229922 -k1,4331:11604081,15838111:229922 -k1,4331:12825564,15838111:229923 -k1,4331:15249631,15838111:229922 -k1,4331:17490198,15838111:229922 -k1,4331:20047303,15838111:229922 -k1,4331:20936517,15838111:229922 -k1,4331:23726931,15838111:229922 -k1,4331:25816110,15838111:229923 -k1,4331:26728917,15838111:229922 -k1,4331:28686368,15838111:229922 -k1,4331:29567718,15838111:229922 -k1,4331:32583029,15838111:0 -) -(1,4332:6797234,16679599:25785795,513147,126483 -k1,4331:7537398,16679599:208667 -k1,4331:9458520,16679599:208666 -k1,4331:10318615,16679599:208667 -k1,4331:12901650,16679599:208666 -k1,4331:15280214,16679599:208667 -k1,4331:16171765,16679599:208666 -k1,4331:17834021,16679599:208667 -k1,4331:18728849,16679599:208666 -k1,4331:20634243,16679599:208667 -k1,4331:23037054,16679599:208666 -k1,4331:25256366,16679599:208667 -k1,4331:26569314,16679599:208666 -k1,4331:27525747,16679599:208667 -k1,4331:30513140,16679599:208666 -k1,4331:31483335,16679599:208667 -k1,4332:32583029,16679599:0 -) -(1,4332:6797234,17521087:25785795,513147,134348 -k1,4331:8918933,17521087:202149 -k1,4331:9535922,17521087:202146 -k1,4331:13508357,17521087:202149 -k1,4331:17072503,17521087:202149 -k1,4331:18084022,17521087:202149 -k1,4331:19305255,17521087:202148 -k1,4331:21187747,17521087:202149 -k1,4331:22049188,17521087:202149 -k1,4331:25224050,17521087:202149 -k1,4331:26109084,17521087:202149 -k1,4331:29006729,17521087:202149 -k1,4331:32583029,17521087:0 -) -(1,4332:6797234,18362575:25785795,513147,126483 -g1,4331:8688603,18362575 -g1,4331:9547124,18362575 -g1,4331:11385408,18362575 -g1,4331:14674660,18362575 -g1,4331:16907471,18362575 -g1,4331:17722738,18362575 -g1,4331:19125208,18362575 -k1,4332:32583029,18362575:10866527 -g1,4332:32583029,18362575 -) -v1,4334:6797234,19553041:0,393216,0 -(1,4344:6797234,23840039:25785795,4680214,196608 -g1,4344:6797234,23840039 -g1,4344:6797234,23840039 -g1,4344:6600626,23840039 -(1,4344:6600626,23840039:0,4680214,196608 -r1,4394:32779637,23840039:26179011,4876822,196608 -k1,4344:6600625,23840039:-26179012 -) -(1,4344:6600626,23840039:26179011,4680214,196608 -[1,4344:6797234,23840039:25785795,4483606,0 -(1,4336:6797234,19760659:25785795,404226,76021 -(1,4335:6797234,19760659:0,0,0 -g1,4335:6797234,19760659 -g1,4335:6797234,19760659 -g1,4335:6469554,19760659 -(1,4335:6469554,19760659:0,0,0 -) -g1,4335:6797234,19760659 -) -g1,4336:8694108,19760659 -h1,4336:9010254,19760659:0,0,0 -k1,4336:32583030,19760659:23572776 -g1,4336:32583030,19760659 -) -(1,4337:6797234,20426837:25785795,404226,76021 -h1,4337:6797234,20426837:0,0,0 -h1,4337:9010254,20426837:0,0,0 -k1,4337:32583030,20426837:23572776 -g1,4337:32583030,20426837 -) -(1,4338:6797234,21093015:25785795,404226,76021 -h1,4338:6797234,21093015:0,0,0 -k1,4338:6797234,21093015:0 -h1,4338:11855565,21093015:0,0,0 -k1,4338:32583029,21093015:20727464 -g1,4338:32583029,21093015 -) -(1,4339:6797234,21759193:25785795,404226,76021 -h1,4339:6797234,21759193:0,0,0 -h1,4339:9326399,21759193:0,0,0 -k1,4339:32583029,21759193:23256630 -g1,4339:32583029,21759193 -) -(1,4340:6797234,22425371:25785795,404226,82312 -h1,4340:6797234,22425371:0,0,0 -g1,4340:9958692,22425371 -h1,4340:11223274,22425371:0,0,0 -k1,4340:32583030,22425371:21359756 -g1,4340:32583030,22425371 -) -(1,4341:6797234,23091549:25785795,404226,76021 -h1,4341:6797234,23091549:0,0,0 -k1,4341:6797234,23091549:0 -h1,4341:9958691,23091549:0,0,0 -k1,4341:32583029,23091549:22624338 -g1,4341:32583029,23091549 -) -(1,4342:6797234,23757727:25785795,404226,82312 -h1,4342:6797234,23757727:0,0,0 -g1,4342:9958692,23757727 -k1,4342:9958692,23757727:0 -h1,4342:11855566,23757727:0,0,0 -k1,4342:32583030,23757727:20727464 -g1,4342:32583030,23757727 -) -] -) -g1,4344:32583029,23840039 -g1,4344:6797234,23840039 -g1,4344:6797234,23840039 -g1,4344:32583029,23840039 -g1,4344:32583029,23840039 -) -h1,4344:6797234,24036647:0,0,0 -] -g1,4346:32583029,24560935 -) -h1,4346:6630773,24560935:0,0,0 -(1,4349:6630773,25718527:25952256,513147,134348 -h1,4348:6630773,25718527:983040,0,0 -k1,4348:10433626,25718527:215412 -k1,4348:11887013,25718527:215412 -k1,4348:12761716,25718527:215411 -k1,4348:15890203,25718527:215412 -k1,4348:17991086,25718527:215412 -k1,4348:18737995,25718527:215412 -k1,4348:20307380,25718527:215411 -k1,4348:22663853,25718527:215412 -k1,4348:23951434,25718527:215412 -k1,4348:25233117,25718527:215412 -k1,4348:28232497,25718527:215411 -k1,4348:29063947,25718527:215412 -k1,4348:30881059,25718527:215412 -k1,4348:32583029,25718527:0 -) -(1,4349:6630773,26560015:25952256,513147,134348 -k1,4348:11189375,26560015:206356 -k1,4348:14742000,26560015:206357 -k1,4348:15479853,26560015:206356 -k1,4348:18425614,26560015:206356 -k1,4348:20025922,26560015:206357 -k1,4348:20588138,26560015:206356 -k1,4348:22772372,26560015:206357 -k1,4348:23645884,26560015:206356 -(1,4348:23645884,26560015:0,452978,122846 -r1,4394:26114421,26560015:2468537,575824,122846 -k1,4348:23645884,26560015:-2468537 -) -(1,4348:23645884,26560015:2468537,452978,122846 -k1,4348:23645884,26560015:3277 -h1,4348:26111144,26560015:0,411205,112570 -) -k1,4348:26320777,26560015:206356 -k1,4348:28711449,26560015:206357 -k1,4348:30114492,26560015:206356 -(1,4348:30114492,26560015:0,452978,122846 -r1,4394:32583029,26560015:2468537,575824,122846 -k1,4348:30114492,26560015:-2468537 -) -(1,4348:30114492,26560015:2468537,452978,122846 -k1,4348:30114492,26560015:3277 -h1,4348:32579752,26560015:0,411205,112570 -) -k1,4348:32583029,26560015:0 -) -(1,4349:6630773,27401503:25952256,513147,134348 -k1,4348:8856797,27401503:248147 -k1,4348:10618170,27401503:248147 -k1,4348:11813969,27401503:248148 -k1,4348:14801521,27401503:248147 -k1,4348:15581165,27401503:248147 -k1,4348:18116519,27401503:248147 -k1,4348:19023959,27401503:248148 -k1,4348:20291191,27401503:248147 -k1,4348:22192811,27401503:248147 -k1,4348:24454224,27401503:248147 -k1,4348:25388533,27401503:248147 -k1,4348:26655766,27401503:248148 -k1,4348:28881790,27401503:248147 -k1,4348:30697558,27401503:248147 -k1,4348:32583029,27401503:0 -) -(1,4349:6630773,28242991:25952256,513147,134348 -k1,4348:9729113,28242991:229174 -k1,4348:10949847,28242991:229174 -k1,4348:12938008,28242991:229175 -k1,4348:13818610,28242991:229174 -k1,4348:14795550,28242991:229174 -k1,4348:17787067,28242991:229174 -k1,4348:20950944,28242991:229175 -k1,4348:22383359,28242991:229174 -k1,4348:23144030,28242991:229174 -k1,4348:24439475,28242991:229174 -k1,4348:25024510,28242991:229175 -k1,4348:29358204,28242991:229174 -k1,4348:32117068,28242991:229174 -k1,4348:32583029,28242991:0 -) -(1,4349:6630773,29084479:25952256,513147,126483 -k1,4348:7828786,29084479:178928 -(1,4348:7828786,29084479:0,452978,122846 -r1,4394:10297323,29084479:2468537,575824,122846 -k1,4348:7828786,29084479:-2468537 -) -(1,4348:7828786,29084479:2468537,452978,122846 -k1,4348:7828786,29084479:3277 -h1,4348:10294046,29084479:0,411205,112570 -) -k1,4348:10476250,29084479:178927 -k1,4348:12633055,29084479:178928 -k1,4348:13471275,29084479:178928 -k1,4348:16077001,29084479:178928 -k1,4348:16787425,29084479:178927 -k1,4348:19286983,29084479:178928 -k1,4348:20908358,29084479:178928 -k1,4348:22106370,29084479:178927 -k1,4348:24802536,29084479:178928 -k1,4348:27133011,29084479:178928 -k1,4348:27770036,29084479:178928 -k1,4348:28480460,29084479:178927 -k1,4348:31896867,29084479:178928 -k1,4348:32583029,29084479:0 -) -(1,4349:6630773,29925967:25952256,505283,126483 -g1,4348:9959346,29925967 -g1,4348:12013899,29925967 -g1,4348:12829166,29925967 -g1,4348:15492549,29925967 -g1,4348:16343206,29925967 -g1,4348:18244405,29925967 -k1,4349:32583029,29925967:11088038 -g1,4349:32583029,29925967 -) -v1,4351:6630773,30908250:0,393216,0 -(1,4388:6630773,41828104:25952256,11313070,196608 -g1,4388:6630773,41828104 -g1,4388:6630773,41828104 -g1,4388:6434165,41828104 -(1,4388:6434165,41828104:0,11313070,196608 -r1,4394:32779637,41828104:26345472,11509678,196608 -k1,4388:6434165,41828104:-26345472 -) -(1,4388:6434165,41828104:26345472,11313070,196608 -[1,4388:6630773,41828104:25952256,11116462,0 -(1,4353:6630773,31115868:25952256,404226,76021 -(1,4352:6630773,31115868:0,0,0 -g1,4352:6630773,31115868 -g1,4352:6630773,31115868 -g1,4352:6303093,31115868 -(1,4352:6303093,31115868:0,0,0 -) -g1,4352:6630773,31115868 -) -h1,4353:9792230,31115868:0,0,0 -k1,4353:32583030,31115868:22790800 -g1,4353:32583030,31115868 -) -(1,4357:6630773,31782046:25952256,410518,107478 -(1,4355:6630773,31782046:0,0,0 -g1,4355:6630773,31782046 -g1,4355:6630773,31782046 -g1,4355:6303093,31782046 -(1,4355:6303093,31782046:0,0,0 -) -g1,4355:6630773,31782046 -) -g1,4357:7579210,31782046 -g1,4357:7895356,31782046 -g1,4357:9159939,31782046 -g1,4357:10424522,31782046 -g1,4357:11689105,31782046 -g1,4357:12953688,31782046 -g1,4357:14218271,31782046 -g1,4357:15482854,31782046 -g1,4357:16747437,31782046 -g1,4357:18012020,31782046 -g1,4357:19276603,31782046 -g1,4357:20541186,31782046 -h1,4357:21489623,31782046:0,0,0 -k1,4357:32583029,31782046:11093406 -g1,4357:32583029,31782046 -) -(1,4359:6630773,33103584:25952256,404226,76021 -(1,4358:6630773,33103584:0,0,0 -g1,4358:6630773,33103584 -g1,4358:6630773,33103584 -g1,4358:6303093,33103584 -(1,4358:6303093,33103584:0,0,0 -) -g1,4358:6630773,33103584 -) -h1,4359:10108375,33103584:0,0,0 -k1,4359:32583029,33103584:22474654 -g1,4359:32583029,33103584 -) -(1,4363:6630773,33769762:25952256,404226,76021 -(1,4361:6630773,33769762:0,0,0 -g1,4361:6630773,33769762 -g1,4361:6630773,33769762 -g1,4361:6303093,33769762 -(1,4361:6303093,33769762:0,0,0 -) -g1,4361:6630773,33769762 -) -g1,4363:7579210,33769762 -h1,4363:11372958,33769762:0,0,0 -k1,4363:32583030,33769762:21210072 -g1,4363:32583030,33769762 -) -(1,4365:6630773,35091300:25952256,404226,82312 -(1,4364:6630773,35091300:0,0,0 -g1,4364:6630773,35091300 -g1,4364:6630773,35091300 -g1,4364:6303093,35091300 -(1,4364:6303093,35091300:0,0,0 -) -g1,4364:6630773,35091300 -) -k1,4365:6630773,35091300:0 -g1,4365:10740668,35091300 -h1,4365:12953687,35091300:0,0,0 -k1,4365:32583029,35091300:19629342 -g1,4365:32583029,35091300 -) -(1,4369:6630773,35757478:25952256,404226,107478 -(1,4367:6630773,35757478:0,0,0 -g1,4367:6630773,35757478 -g1,4367:6630773,35757478 -g1,4367:6303093,35757478 -(1,4367:6303093,35757478:0,0,0 -) -g1,4367:6630773,35757478 -) -g1,4369:7579210,35757478 -g1,4369:8843793,35757478 -g1,4369:10108376,35757478 -g1,4369:11372959,35757478 -g1,4369:12637542,35757478 -g1,4369:13902125,35757478 -h1,4369:14850562,35757478:0,0,0 -k1,4369:32583030,35757478:17732468 -g1,4369:32583030,35757478 -) -(1,4371:6630773,37079016:25952256,404226,82312 -(1,4370:6630773,37079016:0,0,0 -g1,4370:6630773,37079016 -g1,4370:6630773,37079016 -g1,4370:6303093,37079016 -(1,4370:6303093,37079016:0,0,0 -) -g1,4370:6630773,37079016 -) -k1,4371:6630773,37079016:0 -g1,4371:11056813,37079016 -h1,4371:12953687,37079016:0,0,0 -k1,4371:32583029,37079016:19629342 -g1,4371:32583029,37079016 -) -(1,4375:6630773,37745194:25952256,410518,107478 -(1,4373:6630773,37745194:0,0,0 -g1,4373:6630773,37745194 -g1,4373:6630773,37745194 -g1,4373:6303093,37745194 -(1,4373:6303093,37745194:0,0,0 -) -g1,4373:6630773,37745194 -) -g1,4375:7579210,37745194 -g1,4375:8843793,37745194 -g1,4375:10108376,37745194 -g1,4375:11372959,37745194 -g1,4375:12637542,37745194 -g1,4375:13902125,37745194 -h1,4375:14850562,37745194:0,0,0 -k1,4375:32583030,37745194:17732468 -g1,4375:32583030,37745194 -) -(1,4377:6630773,39066732:25952256,404226,6290 -(1,4376:6630773,39066732:0,0,0 -g1,4376:6630773,39066732 -g1,4376:6630773,39066732 -g1,4376:6303093,39066732 -(1,4376:6303093,39066732:0,0,0 -) -g1,4376:6630773,39066732 -) -g1,4377:8211502,39066732 -g1,4377:8843794,39066732 -h1,4377:9792231,39066732:0,0,0 -k1,4377:32583029,39066732:22790798 -g1,4377:32583029,39066732 -) -(1,4381:6630773,39732910:25952256,404226,76021 -(1,4379:6630773,39732910:0,0,0 -g1,4379:6630773,39732910 -g1,4379:6630773,39732910 -g1,4379:6303093,39732910 -(1,4379:6303093,39732910:0,0,0 -) -g1,4379:6630773,39732910 -) -g1,4381:7579210,39732910 -g1,4381:7895356,39732910 -g1,4381:9159939,39732910 -g1,4381:11056813,39732910 -g1,4381:12953687,39732910 -g1,4381:14850561,39732910 -g1,4381:15166707,39732910 -g1,4381:16747436,39732910 -g1,4381:17063582,39732910 -g1,4381:18644311,39732910 -g1,4381:18960457,39732910 -g1,4381:20541186,39732910 -g1,4381:20857332,39732910 -g1,4381:22438061,39732910 -g1,4381:22754207,39732910 -g1,4381:24334936,39732910 -g1,4381:24651082,39732910 -g1,4381:26231811,39732910 -g1,4381:26547957,39732910 -h1,4381:27812540,39732910:0,0,0 -k1,4381:32583029,39732910:4770489 -g1,4381:32583029,39732910 -) -(1,4383:6630773,41054448:25952256,404226,76021 -(1,4382:6630773,41054448:0,0,0 -g1,4382:6630773,41054448 -g1,4382:6630773,41054448 -g1,4382:6303093,41054448 -(1,4382:6303093,41054448:0,0,0 -) -g1,4382:6630773,41054448 -) -g1,4383:9792230,41054448 -g1,4383:10424522,41054448 -h1,4383:11689105,41054448:0,0,0 -k1,4383:32583029,41054448:20893924 -g1,4383:32583029,41054448 -) -(1,4387:6630773,41720626:25952256,410518,107478 -(1,4385:6630773,41720626:0,0,0 -g1,4385:6630773,41720626 -g1,4385:6630773,41720626 -g1,4385:6303093,41720626 -(1,4385:6303093,41720626:0,0,0 -) -g1,4385:6630773,41720626 -) -g1,4387:7579210,41720626 -g1,4387:8843793,41720626 -g1,4387:10108376,41720626 -g1,4387:11372959,41720626 -g1,4387:12637542,41720626 -g1,4387:13902125,41720626 -g1,4387:15166708,41720626 -g1,4387:16431291,41720626 -h1,4387:17379728,41720626:0,0,0 -k1,4387:32583029,41720626:15203301 -g1,4387:32583029,41720626 -) -] -) -g1,4388:32583029,41828104 -g1,4388:6630773,41828104 -g1,4388:6630773,41828104 -g1,4388:32583029,41828104 -g1,4388:32583029,41828104 -) -h1,4388:6630773,42024712:0,0,0 -(1,4392:6630773,43182305:25952256,513147,134348 -h1,4391:6630773,43182305:983040,0,0 -k1,4391:10585753,43182305:220739 -k1,4391:12200443,43182305:220739 -k1,4391:14490809,43182305:220739 -k1,4391:17019726,43182305:220739 -k1,4391:17771962,43182305:220739 -k1,4391:19346675,43182305:220739 -k1,4391:22872395,43182305:220739 -k1,4391:24606360,43182305:220739 -k1,4391:25443137,43182305:220739 -k1,4391:26078698,43182305:220718 -k1,4391:28829127,43182305:220739 -k1,4391:32583029,43182305:0 -) -(1,4392:6630773,44023793:25952256,505283,126483 -k1,4391:9908425,44023793:200737 -k1,4391:11100721,44023793:200736 -k1,4391:14812222,44023793:200737 -k1,4391:18888757,44023793:200736 -k1,4391:22340080,44023793:200737 -k1,4391:24238855,44023793:200737 -k1,4391:26811339,44023793:200736 -k1,4391:27663504,44023793:200737 -k1,4391:28220100,44023793:200736 -k1,4391:30572384,44023793:200737 -k1,4391:32583029,44023793:0 -) -(1,4392:6630773,44865281:25952256,513147,122846 -k1,4391:7213095,44865281:226462 -(1,4391:7213095,44865281:0,452978,122846 -r1,4394:9681632,44865281:2468537,575824,122846 -k1,4391:7213095,44865281:-2468537 -) -(1,4391:7213095,44865281:2468537,452978,122846 -k1,4391:7213095,44865281:3277 -h1,4391:9678355,44865281:0,411205,112570 -) -k1,4391:9908094,44865281:226462 -k1,4391:12286104,44865281:226463 -k1,4391:12868426,44865281:226462 -k1,4391:15072765,44865281:226462 -k1,4391:16583733,44865281:226462 -k1,4391:17914477,44865281:226462 -k1,4391:18888706,44865281:226463 -k1,4391:20628394,44865281:226462 -k1,4391:21506284,44865281:226462 -k1,4391:23936722,44865281:226462 -k1,4391:25182269,44865281:226462 -k1,4391:28277898,44865281:226463 -k1,4391:29452011,44865281:226462 -k1,4391:31563944,44865281:226462 -k1,4391:32583029,44865281:0 -) -(1,4392:6630773,45706769:25952256,513147,126483 -g1,4391:8672874,45706769 -g1,4391:9531395,45706769 -g1,4391:10749709,45706769 -g1,4391:14702840,45706769 -g1,4391:16093514,45706769 -g1,4391:17499916,45706769 -(1,4391:17499916,45706769:0,414482,115847 -r1,4394:18913317,45706769:1413401,530329,115847 -k1,4391:17499916,45706769:-1413401 -) -(1,4391:17499916,45706769:1413401,414482,115847 -k1,4391:17499916,45706769:3277 -h1,4391:18910040,45706769:0,411205,112570 -) -k1,4392:32583029,45706769:13496042 -g1,4392:32583029,45706769 -) -] -(1,4394:32583029,45706769:0,0,0 -g1,4394:32583029,45706769 -) -) -] -(1,4394:6630773,47279633:25952256,0,0 -h1,4394:6630773,47279633:25952256,0,0 -) -] -(1,4394:4262630,4025873:0,0,0 -[1,4394:-473656,4025873:0,0,0 -(1,4394:-473656,-710413:0,0,0 -(1,4394:-473656,-710413:0,0,0 -g1,4394:-473656,-710413 -) -g1,4394:-473656,-710413 -) -] -) -] -!24009 -}82 -Input:729:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:730:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:731:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:732:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:733:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:734:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:735:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!662 -{83 -[1,4525:4262630,47279633:28320399,43253760,0 -(1,4525:4262630,4025873:0,0,0 -[1,4525:-473656,4025873:0,0,0 -(1,4525:-473656,-710413:0,0,0 -(1,4525:-473656,-644877:0,0,0 -k1,4525:-473656,-644877:-65536 +g1,3394:23949407,41274313 +g1,3394:23949407,41274313 +) +) +g1,3394:23949407,41274313 +g1,3397:23949407,41274313 +g1,3397:23949407,41274313 +(1,3397:23949407,41274313:0,0,0 +(1,3397:23949407,41274313:0,0,0 +g1,3397:23949407,41274313 +(1,3397:23949407,41274313:0,0,0 +(1,3397:23949407,41274313:0,0,0 +h1,3397:23949407,41274313:0,0,0 +g1,3397:23949407,41274313 ) -(1,4525:-473656,4736287:0,0,0 -k1,4525:-473656,4736287:5209943 ) -g1,4525:-473656,-710413 +g1,3397:23949407,41274313 +g1,3397:23949407,41274313 ) -] +(1,3397:23949407,41274313:0,0,0 +g1,3397:23949407,41274313 +g1,3397:23949407,41274313 +g1,3397:23949407,41274313 +g1,3397:23949407,41274313 +g1,3397:23949407,41274313 +(1,3397:23949407,41274313:0,0,0 +(1,3397:23949407,41274313:414188,385352,0 +(1,3397:23949407,41274313:414188,385352,0 +$1,3397:23949407,41274313 +$1,3397:24363595,41274313 ) -[1,4525:6630773,47279633:25952256,43253760,0 -[1,4525:6630773,4812305:25952256,786432,0 -(1,4525:6630773,4812305:25952256,505283,11795 -(1,4525:6630773,4812305:25952256,505283,11795 -g1,4525:3078558,4812305 -[1,4525:3078558,4812305:0,0,0 -(1,4525:3078558,2439708:0,1703936,0 -k1,4525:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,4525:2537886,2439708:1179648,16384,0 +g1,3397:24363595,41274313 ) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,4525:3078558,1915420:16384,1179648,0 ) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 +g1,3397:23949407,41274313 +g1,3397:23949407,41274313 ) -] ) +g1,3397:23949407,41274313 +g1,3400:23949407,41274313 +g1,3401:23949407,41274313 +(1,3404:23949407,41274313:0,0,0 +(1,3404:23949407,41274313:0,0,0 +g1,3404:23949407,41274313 +g1,3404:23949407,41274313 +g1,3404:23949407,41274313 +g1,3404:23949407,41274313 +g1,3404:23949407,41274313 +(1,3404:23949407,41274313:0,0,0 +(1,3404:23949407,41274313:1460399,385352,0 +(1,3404:23949407,41274313:1460399,385352,0 +$1,3404:23949407,41274313 +g1,3404:24424540,41274313 +g1,3404:24995618,41274313 +$1,3404:25409806,41274313 ) +g1,3404:25409806,41274313 ) -] -[1,4525:3078558,4812305:0,0,0 -(1,4525:3078558,2439708:0,1703936,0 -g1,4525:29030814,2439708 -g1,4525:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,4525:36151628,1915420:16384,1179648,0 ) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 +g1,3404:23949407,41274313 +g1,3404:23949407,41274313 ) -] ) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,4525:37855564,2439708:1179648,16384,0 +g1,3404:23949407,41274313 +g1,3406:23949407,41274313 +g1,3406:23949407,41274313 +) +g1,3406:23949407,41274313 +) ) +k1,3407:32383800,44097546:2254733 +g1,3408:32583029,44097546 +g1,3410:32583029,44097546 +g1,3410:32583029,44097546 ) -k1,4525:3078556,2439708:-34777008 +(1,3412:6630773,45309967:25952256,513147,134348 +h1,3411:6630773,45309967:983040,0,0 +k1,3411:8972910,45309967:162410 +k1,3411:12353138,45309967:162410 +k1,3411:15920143,45309967:162410 +k1,3411:17074113,45309967:162410 +k1,3411:19106921,45309967:162410 +k1,3411:19920759,45309967:162410 +k1,3411:23215790,45309967:162410 +k1,3411:25113593,45309967:162410 +k1,3411:27584181,45309967:162410 +k1,3411:29140542,45309967:162410 +k1,3411:31313597,45309967:162410 +k1,3412:32583029,45309967:0 ) ] -[1,4525:3078558,4812305:0,0,0 -(1,4525:3078558,49800853:0,16384,2228224 -k1,4525:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,4525:2537886,49800853:1179648,16384,0 +(1,3414:32583029,45706769:0,0,0 +g1,3414:32583029,45706769 ) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,4525:3078558,51504789:16384,1179648,0 ) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 +] +(1,3414:6630773,47279633:25952256,0,0 +h1,3414:6630773,47279633:25952256,0,0 ) ] +(1,3414:4262630,4025873:0,0,0 +[1,3414:-473656,4025873:0,0,0 +(1,3414:-473656,-710413:0,0,0 +(1,3414:-473656,-710413:0,0,0 +g1,3414:-473656,-710413 +) +g1,3414:-473656,-710413 ) +] ) +] +!28832 +}68 +Input:628:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:629:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:630:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!290 +{69 +[1,3551:4262630,47279633:28320399,43253760,0 +(1,3551:4262630,4025873:0,0,0 +[1,3551:-473656,4025873:0,0,0 +(1,3551:-473656,-710413:0,0,0 +(1,3551:-473656,-644877:0,0,0 +k1,3551:-473656,-644877:-65536 ) -] -[1,4525:3078558,4812305:0,0,0 -(1,4525:3078558,49800853:0,16384,2228224 -g1,4525:29030814,49800853 -g1,4525:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,4525:36151628,51504789:16384,1179648,0 -) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 -) -] -) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,4525:37855564,49800853:1179648,16384,0 -) -) -k1,4525:3078556,49800853:-34777008 -) -] -g1,4525:6630773,4812305 -k1,4525:22348274,4812305:14920583 -g1,4525:23970945,4812305 -g1,4525:24793421,4812305 -g1,4525:27528893,4812305 -g1,4525:28938572,4812305 -) -) -] -[1,4525:6630773,45706769:25952256,40108032,0 -(1,4525:6630773,45706769:25952256,40108032,0 -(1,4525:6630773,45706769:0,0,0 -g1,4525:6630773,45706769 -) -[1,4525:6630773,45706769:25952256,40108032,0 -v1,4394:6630773,6254097:0,393216,0 -(1,4423:6630773,24113801:25952256,18252920,0 -g1,4423:6630773,24113801 -g1,4423:6303093,24113801 -r1,4525:6401397,24113801:98304,18252920,0 -g1,4423:6600626,24113801 -g1,4423:6797234,24113801 -[1,4423:6797234,24113801:25785795,18252920,0 -(1,4395:6797234,6686635:25785795,825754,196608 -(1,4394:6797234,6686635:0,825754,196608 -r1,4525:7890375,6686635:1093141,1022362,196608 -k1,4394:6797234,6686635:-1093141 -) -(1,4394:6797234,6686635:1093141,825754,196608 -) -k1,4394:8177720,6686635:287345 -k1,4394:9903938,6686635:327680 -k1,4394:11387971,6686635:287346 -k1,4394:14667035,6686635:287345 -k1,4394:15570419,6686635:287346 -k1,4394:17061005,6686635:287345 -k1,4394:18574530,6686635:287346 -k1,4394:20021862,6686635:287345 -k1,4394:24342294,6686635:287346 -k1,4394:27856632,6686635:287345 -k1,4394:29566765,6686635:287346 -k1,4394:30513402,6686635:287345 -k1,4394:32583029,6686635:0 -) -(1,4395:6797234,7528123:25785795,505283,134348 -k1,4394:9508622,7528123:229540 -k1,4394:10343715,7528123:229540 -k1,4394:11592339,7528123:229539 -k1,4394:13891506,7528123:229540 -k1,4394:16098923,7528123:229540 -k1,4394:19107190,7528123:229540 -k1,4394:20098257,7528123:229539 -k1,4394:20683657,7528123:229540 -k1,4394:24250290,7528123:229540 -k1,4394:28233732,7528123:229540 -k1,4394:29567553,7528123:229539 -k1,4394:30544859,7528123:229540 -k1,4394:32583029,7528123:0 -) -(1,4395:6797234,8369611:25785795,513147,134348 -k1,4394:7579952,8369611:166680 -k1,4394:8102492,8369611:166680 -k1,4394:10954182,8369611:166680 -k1,4394:12312306,8369611:166679 -k1,4394:13498071,8369611:166680 -k1,4394:16176091,8369611:166680 -k1,4394:17855997,8369611:166680 -k1,4394:18708839,8369611:166680 -k1,4394:19231379,8369611:166680 -k1,4394:22501844,8369611:166680 -k1,4394:23616175,8369611:166680 -k1,4394:26977079,8369611:166679 -k1,4394:27499619,8369611:166680 -k1,4394:29746412,8369611:166680 -k1,4394:30572384,8369611:166680 -k1,4394:32583029,8369611:0 -) -(1,4395:6797234,9211099:25785795,513147,102891 -g1,4394:8564084,9211099 -g1,4394:9782398,9211099 -g1,4394:11635100,9211099 -g1,4394:13985876,9211099 -g1,4394:14867990,9211099 -g1,4394:16634840,9211099 -g1,4394:17189929,9211099 -g1,4394:20151501,9211099 -k1,4395:32583029,9211099:10279981 -g1,4395:32583029,9211099 -) -v1,4397:6797234,10401565:0,393216,0 -(1,4406:6797234,14016094:25785795,4007745,196608 -g1,4406:6797234,14016094 -g1,4406:6797234,14016094 -g1,4406:6600626,14016094 -(1,4406:6600626,14016094:0,4007745,196608 -r1,4525:32779637,14016094:26179011,4204353,196608 -k1,4406:6600625,14016094:-26179012 -) -(1,4406:6600626,14016094:26179011,4007745,196608 -[1,4406:6797234,14016094:25785795,3811137,0 -(1,4399:6797234,10609183:25785795,404226,76021 -(1,4398:6797234,10609183:0,0,0 -g1,4398:6797234,10609183 -g1,4398:6797234,10609183 -g1,4398:6469554,10609183 -(1,4398:6469554,10609183:0,0,0 -) -g1,4398:6797234,10609183 -) -g1,4399:8377963,10609183 -g1,4399:9326401,10609183 -h1,4399:13436295,10609183:0,0,0 -k1,4399:32583029,10609183:19146734 -g1,4399:32583029,10609183 -) -(1,4400:6797234,11275361:25785795,388497,9436 -h1,4400:6797234,11275361:0,0,0 -g1,4400:8377963,11275361 -g1,4400:9326401,11275361 -h1,4400:10590984,11275361:0,0,0 -k1,4400:32583028,11275361:21992044 -g1,4400:32583028,11275361 -) -(1,4401:6797234,11941539:25785795,404226,6290 -h1,4401:6797234,11941539:0,0,0 -g1,4401:9642545,11941539 -g1,4401:10590983,11941539 -g1,4401:12171712,11941539 -g1,4401:12804004,11941539 -h1,4401:13752441,11941539:0,0,0 -k1,4401:32583029,11941539:18830588 -g1,4401:32583029,11941539 -) -(1,4402:6797234,12607717:25785795,404226,6290 -h1,4402:6797234,12607717:0,0,0 -h1,4402:9326399,12607717:0,0,0 -k1,4402:32583029,12607717:23256630 -g1,4402:32583029,12607717 -) -(1,4403:6797234,13273895:25785795,404226,76021 -h1,4403:6797234,13273895:0,0,0 -h1,4403:11223274,13273895:0,0,0 -k1,4403:32583030,13273895:21359756 -g1,4403:32583030,13273895 -) -(1,4404:6797234,13940073:25785795,404226,76021 -h1,4404:6797234,13940073:0,0,0 -h1,4404:11223274,13940073:0,0,0 -k1,4404:32583030,13940073:21359756 -g1,4404:32583030,13940073 -) -] -) -g1,4406:32583029,14016094 -g1,4406:6797234,14016094 -g1,4406:6797234,14016094 -g1,4406:32583029,14016094 -g1,4406:32583029,14016094 -) -h1,4406:6797234,14212702:0,0,0 -(1,4410:6797234,15578478:25785795,513147,134348 -h1,4409:6797234,15578478:983040,0,0 -k1,4409:11231891,15578478:193167 -k1,4409:13851857,15578478:193168 -k1,4409:15149306,15578478:193167 -k1,4409:16090239,15578478:193167 -k1,4409:19075241,15578478:193168 -k1,4409:20836029,15578478:193167 -k1,4409:21385056,15578478:193167 -k1,4409:23647851,15578478:193168 -k1,4409:25818895,15578478:193167 -k1,4409:26773590,15578478:193167 -k1,4409:29035074,15578478:193168 -k1,4409:29887533,15578478:193167 -k1,4410:32583029,15578478:0 -) -(1,4410:6797234,16419966:25785795,452978,115847 -(1,4409:6797234,16419966:0,452978,115847 -r1,4525:9265771,16419966:2468537,568825,115847 -k1,4409:6797234,16419966:-2468537 -) -(1,4409:6797234,16419966:2468537,452978,115847 -k1,4409:6797234,16419966:3277 -h1,4409:9262494,16419966:0,411205,112570 -) -k1,4410:32583029,16419966:23143588 -g1,4410:32583029,16419966 -) -v1,4412:6797234,17610432:0,393216,0 -(1,4419:6797234,19892605:25785795,2675389,196608 -g1,4419:6797234,19892605 -g1,4419:6797234,19892605 -g1,4419:6600626,19892605 -(1,4419:6600626,19892605:0,2675389,196608 -r1,4525:32779637,19892605:26179011,2871997,196608 -k1,4419:6600625,19892605:-26179012 -) -(1,4419:6600626,19892605:26179011,2675389,196608 -[1,4419:6797234,19892605:25785795,2478781,0 -(1,4414:6797234,17818050:25785795,404226,76021 -(1,4413:6797234,17818050:0,0,0 -g1,4413:6797234,17818050 -g1,4413:6797234,17818050 -g1,4413:6469554,17818050 -(1,4413:6469554,17818050:0,0,0 -) -g1,4413:6797234,17818050 -) -g1,4414:9326400,17818050 -g1,4414:10274838,17818050 -g1,4414:13752440,17818050 -g1,4414:14384732,17818050 -h1,4414:15649315,17818050:0,0,0 -k1,4414:32583029,17818050:16933714 -g1,4414:32583029,17818050 -) -(1,4415:6797234,18484228:25785795,404226,6290 -h1,4415:6797234,18484228:0,0,0 -h1,4415:9010254,18484228:0,0,0 -k1,4415:32583030,18484228:23572776 -g1,4415:32583030,18484228 -) -(1,4416:6797234,19150406:25785795,404226,76021 -h1,4416:6797234,19150406:0,0,0 -h1,4416:10907128,19150406:0,0,0 -k1,4416:32583028,19150406:21675900 -g1,4416:32583028,19150406 -) -(1,4417:6797234,19816584:25785795,404226,76021 -h1,4417:6797234,19816584:0,0,0 -h1,4417:10907128,19816584:0,0,0 -k1,4417:32583028,19816584:21675900 -g1,4417:32583028,19816584 -) -] -) -g1,4419:32583029,19892605 -g1,4419:6797234,19892605 -g1,4419:6797234,19892605 -g1,4419:32583029,19892605 -g1,4419:32583029,19892605 -) -h1,4419:6797234,20089213:0,0,0 -(1,4423:6797234,21454989:25785795,505283,126483 -h1,4422:6797234,21454989:983040,0,0 -k1,4422:9601103,21454989:161457 -k1,4422:11143403,21454989:161456 -k1,4422:11956288,21454989:161457 -k1,4422:15782517,21454989:161456 -k1,4422:16963059,21454989:161457 -k1,4422:20116234,21454989:161456 -k1,4422:22306686,21454989:161457 -k1,4422:24342472,21454989:161456 -k1,4422:27858062,21454989:161457 -k1,4422:29011078,21454989:161456 -k1,4422:30526509,21454989:161457 -k1,4422:32583029,21454989:0 -) -(1,4423:6797234,22296477:25785795,513147,126483 -k1,4422:8488938,22296477:178478 -k1,4422:9283453,22296477:178477 -k1,4422:9876753,22296477:178457 -k1,4422:12584921,22296477:178478 -k1,4422:14143587,22296477:178478 -k1,4422:16003719,22296477:178478 -k1,4422:17129847,22296477:178477 -k1,4422:19663689,22296477:178478 -k1,4422:21338354,22296477:178478 -k1,4422:22801337,22296477:178477 -k1,4422:23511312,22296477:178478 -k1,4422:25084396,22296477:178478 -k1,4422:25914302,22296477:178478 -k1,4422:29757552,22296477:178477 -k1,4422:31426319,22296477:178478 -k1,4422:32583029,22296477:0 -) -(1,4423:6797234,23137965:25785795,513147,134348 -k1,4422:7491613,23137965:162882 -k1,4422:10146829,23137965:162882 -k1,4422:11703662,23137965:162882 -k1,4422:12885629,23137965:162882 -k1,4422:15787916,23137965:162882 -k1,4422:17710440,23137965:162882 -k1,4422:20808025,23137965:162883 -k1,4422:21436868,23137965:162882 -k1,4422:22756460,23137965:162882 -k1,4422:24412252,23137965:162882 -k1,4422:25641405,23137965:162882 -k1,4422:28963778,23137965:162882 -k1,4422:30823387,23137965:162882 -k1,4422:32583029,23137965:0 -) -(1,4423:6797234,23979453:25785795,513147,134348 -g1,4422:8748240,23979453 -g1,4422:9606761,23979453 -g1,4422:11502717,23979453 -g1,4422:13272189,23979453 -g1,4422:16988080,23979453 -g1,4422:19630491,23979453 -k1,4423:32583029,23979453:8589151 -g1,4423:32583029,23979453 -) -] -g1,4423:32583029,24113801 -) -h1,4423:6630773,24113801:0,0,0 -v1,4425:6630773,25269861:0,393216,0 -(1,4525:6630773,45706769:25952256,20830124,0 -g1,4525:6630773,45706769 -g1,4525:6303093,45706769 -r1,4525:6401397,45706769:98304,20830124,0 -g1,4525:6600626,45706769 -g1,4525:6797234,45706769 -[1,4525:6797234,45706769:25785795,20830124,0 -(1,4428:6797234,25631934:25785795,755289,196608 -(1,4425:6797234,25631934:0,755289,196608 -r1,4525:8134168,25631934:1336934,951897,196608 -k1,4425:6797234,25631934:-1336934 -) -(1,4425:6797234,25631934:1336934,755289,196608 -) -k1,4425:8308681,25631934:174513 -k1,4425:8636361,25631934:327680 -k1,4425:8636361,25631934:0 -k1,4426:8810874,25631934:174513 -k1,4427:9613222,25631934:174513 -k1,4427:10553851,25631934:174513 -k1,4427:12761946,25631934:174513 -k1,4427:15928178,25631934:174513 -k1,4427:16971043,25631934:174513 -k1,4427:18620771,25631934:174513 -k1,4427:20308510,25631934:174513 -k1,4427:22713213,25631934:174513 -k1,4427:24988810,25631934:174513 -k1,4427:27412519,25631934:174513 -k1,4427:28534683,25631934:174513 -k1,4427:31923737,25631934:174513 -k1,4427:32583029,25631934:0 -) -(1,4428:6797234,26473422:25785795,505283,126483 -k1,4427:10080826,26473422:240755 -k1,4427:10949417,26473422:240756 -k1,4427:12209257,26473422:240755 -k1,4427:14758190,26473422:240755 -k1,4427:16512172,26473422:240756 -k1,4427:17439089,26473422:240755 -k1,4427:20671564,26473422:240756 -k1,4427:22767643,26473422:240755 -k1,4427:24027483,26473422:240755 -k1,4427:27137405,26473422:240756 -k1,4427:28882211,26473422:240755 -k1,4427:32583029,26473422:0 -) -(1,4428:6797234,27314910:25785795,505283,134348 -k1,4427:7701024,27314910:220905 -k1,4427:11046685,27314910:220904 -k1,4427:11895425,27314910:220905 -k1,4427:12531151,27314910:220883 -k1,4427:13771140,27314910:220904 -k1,4427:16861211,27314910:220905 -k1,4427:18186398,27314910:220905 -k1,4427:19155068,27314910:220904 -k1,4427:22150767,27314910:220905 -k1,4427:24613659,27314910:220905 -k1,4427:26026008,27314910:220904 -k1,4427:27943640,27314910:220905 -k1,4427:30232860,27314910:220904 -k1,4427:31966991,27314910:220905 -k1,4427:32583029,27314910:0 -) -(1,4428:6797234,28156398:25785795,513147,126483 -k1,4427:8724156,28156398:264274 -k1,4427:9647722,28156398:264274 -k1,4427:12532124,28156398:264273 -k1,4427:15045594,28156398:264274 -k1,4427:15961296,28156398:264274 -k1,4427:18429546,28156398:264274 -k1,4427:19712905,28156398:264274 -k1,4427:22135935,28156398:264274 -k1,4427:25443046,28156398:264274 -k1,4427:27539706,28156398:264273 -k1,4427:28335477,28156398:264274 -k1,4427:29756461,28156398:264274 -k1,4427:32583029,28156398:0 -) -(1,4428:6797234,28997886:25785795,513147,134348 -g1,4427:8915357,28997886 -g1,4427:10317827,28997886 -g1,4427:11048553,28997886 -g1,4427:12601756,28997886 -g1,4427:14951877,28997886 -g1,4427:16170191,28997886 -g1,4427:19176982,28997886 -g1,4427:20035503,28997886 -g1,4427:22245377,28997886 -g1,4427:25079809,28997886 -g1,4427:26451477,28997886 -k1,4428:32583029,28997886:962727 -g1,4428:32583029,28997886 -) -(1,4430:6797234,29839374:25785795,505283,134348 -h1,4429:6797234,29839374:983040,0,0 -k1,4429:9542477,29839374:288954 -k1,4429:12230049,29839374:288954 -k1,4429:13387356,29839374:288955 -k1,4429:15151525,29839374:288954 -k1,4429:15796339,29839374:288954 -k1,4429:17474001,29839374:288954 -k1,4429:19740832,29839374:288954 -k1,4429:22931065,29839374:288954 -k1,4429:26694739,29839374:288955 -k1,4429:28719086,29839374:288954 -k1,4429:30881059,29839374:288954 -k1,4429:32583029,29839374:0 -) -(1,4430:6797234,30680862:25785795,505283,126483 -g1,4429:8822951,30680862 -g1,4429:10213625,30680862 -g1,4429:11281206,30680862 -g1,4429:13029051,30680862 -g1,4429:13879708,30680862 -g1,4429:16377285,30680862 -g1,4429:18273241,30680862 -g1,4429:20298958,30680862 -g1,4429:21892138,30680862 -g1,4429:24257332,30680862 -k1,4430:32583029,30680862:6083710 -g1,4430:32583029,30680862 -) -v1,4432:6797234,31837357:0,393216,0 -(1,4436:6797234,32127287:25785795,683146,196608 -g1,4436:6797234,32127287 -g1,4436:6797234,32127287 -g1,4436:6600626,32127287 -(1,4436:6600626,32127287:0,683146,196608 -r1,4525:32779637,32127287:26179011,879754,196608 -k1,4436:6600625,32127287:-26179012 -) -(1,4436:6600626,32127287:26179011,683146,196608 -[1,4436:6797234,32127287:25785795,486538,0 -(1,4434:6797234,32044975:25785795,404226,82312 -(1,4433:6797234,32044975:0,0,0 -g1,4433:6797234,32044975 -g1,4433:6797234,32044975 -g1,4433:6469554,32044975 -(1,4433:6469554,32044975:0,0,0 -) -g1,4433:6797234,32044975 -) -g1,4434:8694108,32044975 -g1,4434:9642546,32044975 -g1,4434:11855567,32044975 -g1,4434:13436296,32044975 -g1,4434:15017025,32044975 -g1,4434:16597754,32044975 -g1,4434:18178483,32044975 -g1,4434:19759212,32044975 -g1,4434:21339941,32044975 -g1,4434:22920670,32044975 -h1,4434:24185253,32044975:0,0,0 -k1,4434:32583029,32044975:8397776 -g1,4434:32583029,32044975 -) -] -) -g1,4436:32583029,32127287 -g1,4436:6797234,32127287 -g1,4436:6797234,32127287 -g1,4436:32583029,32127287 -g1,4436:32583029,32127287 -) -h1,4436:6797234,32323895:0,0,0 -(1,4440:6797234,33655700:25785795,505283,134348 -h1,4439:6797234,33655700:983040,0,0 -k1,4439:8959080,33655700:225257 -k1,4439:10288618,33655700:225256 -k1,4439:12443255,33655700:225257 -k1,4439:13024371,33655700:225256 -k1,4439:15408384,33655700:225257 -k1,4439:17611517,33655700:225256 -k1,4439:18488202,33655700:225257 -k1,4439:20149352,33655700:225256 -k1,4439:21393694,33655700:225257 -k1,4439:23491969,33655700:225256 -k1,4439:25419196,33655700:225257 -k1,4439:27470940,33655700:225256 -k1,4439:28963663,33655700:225257 -k1,4439:30881059,33655700:225256 -k1,4439:32583029,33655700:0 -) -(1,4440:6797234,34497188:25785795,513147,102891 -g1,4439:8996622,34497188 -g1,4439:9811889,34497188 -g1,4439:11214359,34497188 -g1,4439:12780669,34497188 -g1,4439:14069762,34497188 -g1,4439:16223930,34497188 -g1,4439:17707665,34497188 -g1,4439:18898454,34497188 -g1,4439:20968081,34497188 -g1,4439:21818738,34497188 -k1,4440:32583029,34497188:6925847 -g1,4440:32583029,34497188 -) -v1,4442:6797234,35653683:0,393216,0 -(1,4451:6797234,37866125:25785795,2605658,196608 -g1,4451:6797234,37866125 -g1,4451:6797234,37866125 -g1,4451:6600626,37866125 -(1,4451:6600626,37866125:0,2605658,196608 -r1,4525:32779637,37866125:26179011,2802266,196608 -k1,4451:6600625,37866125:-26179012 -) -(1,4451:6600626,37866125:26179011,2605658,196608 -[1,4451:6797234,37866125:25785795,2409050,0 -(1,4444:6797234,35861301:25785795,404226,101187 -(1,4443:6797234,35861301:0,0,0 -g1,4443:6797234,35861301 -g1,4443:6797234,35861301 -g1,4443:6469554,35861301 -(1,4443:6469554,35861301:0,0,0 -) -g1,4443:6797234,35861301 -) -g1,4444:9958691,35861301 -g1,4444:10907129,35861301 -g1,4444:12171713,35861301 -g1,4444:12804005,35861301 -g1,4444:15017025,35861301 -g1,4444:15649317,35861301 -g1,4444:16281609,35861301 -g1,4444:18810775,35861301 -g1,4444:19443067,35861301 -g1,4444:20075359,35861301 -h1,4444:22288379,35861301:0,0,0 -k1,4444:32583029,35861301:10294650 -g1,4444:32583029,35861301 -) -(1,4445:6797234,36527479:25785795,369623,101187 -h1,4445:6797234,36527479:0,0,0 -h1,4445:9642545,36527479:0,0,0 -k1,4445:32583029,36527479:22940484 -g1,4445:32583029,36527479 -) -(1,4450:6797234,37193657:25785795,379060,7863 -(1,4447:6797234,37193657:0,0,0 -g1,4447:6797234,37193657 -g1,4447:6797234,37193657 -g1,4447:6469554,37193657 -(1,4447:6469554,37193657:0,0,0 -) -g1,4447:6797234,37193657 -) -g1,4450:7745671,37193657 -g1,4450:8061817,37193657 -g1,4450:8377963,37193657 -g1,4450:8694109,37193657 -g1,4450:9010255,37193657 -g1,4450:9326401,37193657 -g1,4450:9958693,37193657 -g1,4450:10274839,37193657 -g1,4450:10590985,37193657 -g1,4450:10907131,37193657 -g1,4450:11223277,37193657 -g1,4450:11539423,37193657 -g1,4450:12171715,37193657 -g1,4450:12487861,37193657 -g1,4450:12804007,37193657 -g1,4450:13120153,37193657 -g1,4450:13436299,37193657 -g1,4450:13752445,37193657 -h1,4450:14068591,37193657:0,0,0 -k1,4450:32583029,37193657:18514438 -g1,4450:32583029,37193657 -) -(1,4450:6797234,37859835:25785795,404226,6290 -h1,4450:6797234,37859835:0,0,0 -g1,4450:7745671,37859835 -g1,4450:8061817,37859835 -g1,4450:9958691,37859835 -g1,4450:12171711,37859835 -h1,4450:14068585,37859835:0,0,0 -k1,4450:32583029,37859835:18514444 -g1,4450:32583029,37859835 -) -] -) -g1,4451:32583029,37866125 -g1,4451:6797234,37866125 -g1,4451:6797234,37866125 -g1,4451:32583029,37866125 -g1,4451:32583029,37866125 -) -h1,4451:6797234,38062733:0,0,0 -(1,4479:6797234,43403034:25785795,4171552,0 -k1,4479:11338644,43403034:4541410 -(1,4454:11338644,43403034:0,0,0 -g1,4454:11338644,43403034 -g1,4454:11338644,43403034 -g1,4454:11010964,43403034 -(1,4454:11010964,43403034:0,0,0 -) -g1,4454:11338644,43403034 -) -(1,4477:11338644,43403034:16702975,4171552,0 -g1,4477:17685348,43403034 -(1,4477:17685348,42047402:0,0,0 -(1,4466:17685348,42047402:0,0,0 -g1,4464:17685348,42047402 -g1,4465:17685348,42047402 -g1,4465:17685348,42047402 -g1,4465:17685348,42047402 -g1,4465:17685348,42047402 -g1,4466:17685348,42047402 -) -(1,4477:17685348,42047402:0,0,0 -g1,4458:17685348,42047402 -(1,4462:17685348,42047402:0,0,0 -(1,4462:17685348,42047402:0,0,0 -g1,4462:17685348,42047402 -g1,4462:17685348,42047402 -g1,4462:17685348,42047402 -g1,4462:17685348,42047402 -g1,4462:17685348,42047402 -(1,4462:17685348,42047402:0,0,0 -(1,4462:17685348,42047402:5560486,1829267,532510 -[1,4462:17685348,42047402:5560486,1829267,532510 -(1,4462:17685348,40878552:5560486,660417,276639 -g1,4461:17685348,40878552 -(1,4461:17685348,40878552:804938,660417,276639 -k1,4461:18024117,40878552:338769 -g1,4461:18490286,40878552 -(1,4461:18490286,40878552:0,660417,271921 -(1,4461:18490286,40878552:0,0,0 -(1,4461:18490286,40878552:0,0,0 -g1,4461:18490286,40878552 -g1,4461:18490286,40878552 -g1,4461:18490286,40878552 -g1,4461:18490286,40878552 -g1,4461:18490286,40878552 -(1,4461:18490286,40878552:0,0,0 -(1,4461:18490286,40878552:331874,388497,0 -(1,4461:18490286,40878552:331874,388497,0 -) -g1,4461:18822160,40878552 -) -) -g1,4461:18490286,40878552 -g1,4461:18490286,40878552 -) -) -g1,4461:18490286,40878552 -) -) -g1,4461:18490286,40878552 -(1,4461:18490286,40878552:804938,660417,276639 -g1,4461:18956455,40878552 -k1,4461:19295224,40878552:338769 -) -g1,4461:19295224,40878552 -(1,4461:19295224,40878552:893281,660417,276639 -k1,4461:19748550,40878552:453326 -g1,4461:20188505,40878552 -(1,4461:20188505,40878552:0,660417,271921 -(1,4461:20188505,40878552:0,0,0 -(1,4461:20188505,40878552:0,0,0 -g1,4461:20188505,40878552 -g1,4461:20188505,40878552 -g1,4461:20188505,40878552 -g1,4461:20188505,40878552 -g1,4461:20188505,40878552 -(1,4461:20188505,40878552:0,0,0 -(1,4461:20188505,40878552:331874,388497,0 -(1,4461:20188505,40878552:331874,388497,0 -) -g1,4461:20520379,40878552 -) -) -g1,4461:20188505,40878552 -g1,4461:20188505,40878552 -) -) -g1,4461:20188505,40878552 -) -) -g1,4461:20188505,40878552 -(1,4461:20188505,40878552:919495,660417,276639 -g1,4461:20654674,40878552 -k1,4461:21108000,40878552:453326 -) -g1,4461:21108000,40878552 -(1,4461:21108000,40878552:1055810,660417,276639 -k1,4461:21723855,40878552:615855 -g1,4461:22163810,40878552 -(1,4461:22163810,40878552:0,655699,276639 -(1,4461:22163810,40878552:0,0,0 -(1,4461:22163810,40878552:0,0,0 -g1,4461:22163810,40878552 -g1,4461:22163810,40878552 -g1,4461:22163810,40878552 -g1,4461:22163810,40878552 -g1,4461:22163810,40878552 -(1,4461:22163810,40878552:0,0,0 -(1,4461:22163810,40878552:331874,388497,9436 -(1,4461:22163810,40878552:331874,388497,9436 -) -g1,4461:22495684,40878552 -) -) -g1,4461:22163810,40878552 -g1,4461:22163810,40878552 -) -) -g1,4461:22163810,40878552 -) -) -g1,4461:22163810,40878552 -(1,4462:22163810,40878552:1082024,660417,276639 -g1,4462:22629979,40878552 -k1,4462:23245834,40878552:615855 -) -g1,4462:23245834,40878552 -) -(1,4462:17685348,42047402:5560486,798978,532510 -g1,4462:17685348,42047402 -(1,4462:17685348,42047402:804938,798978,532510 -g1,4462:17685348,42047402 -g1,4462:18490286,42047402 -(1,4462:18490286,42047402:0,798978,532510 -(1,4462:18490286,42047402:0,0,0 -(1,4462:18490286,42047402:0,0,0 -g1,4462:18490286,42047402 -g1,4462:18490286,42047402 -g1,4462:18490286,42047402 -g1,4462:18490286,42047402 -g1,4462:18490286,42047402 -(1,4462:18490286,42047402:0,0,0 -(1,4462:18490286,42047402:1234174,466322,199855 -(1,4462:18490286,42047402:1234174,466322,199855 -r1,4525:19724460,42047402:0,666177,199855 -) -g1,4462:19724460,42047402 -) +(1,3551:-473656,4736287:0,0,0 +k1,3551:-473656,4736287:5209943 ) -g1,4462:18490286,42047402 -g1,4462:18490286,42047402 +g1,3551:-473656,-710413 ) +] ) -g1,4462:18490286,42047402 +[1,3551:6630773,47279633:25952256,43253760,0 +[1,3551:6630773,4812305:25952256,786432,0 +(1,3551:6630773,4812305:25952256,505283,11795 +(1,3551:6630773,4812305:25952256,505283,11795 +g1,3551:3078558,4812305 +[1,3551:3078558,4812305:0,0,0 +(1,3551:3078558,2439708:0,1703936,0 +k1,3551:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,3551:2537886,2439708:1179648,16384,0 ) +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,3551:3078558,1915420:16384,1179648,0 ) -g1,4462:18490286,42047402 -(1,4462:18490286,42047402:804938,798978,532510 -g1,4462:19295224,42047402 -g1,4462:19295224,42047402 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) -g1,4462:19295224,42047402 -(1,4462:19295224,42047402:893281,798978,532510 -g1,4462:19295224,42047402 -g1,4462:20188505,42047402 -(1,4462:20188505,42047402:0,798978,532510 -(1,4462:20188505,42047402:0,0,0 -(1,4462:20188505,42047402:0,0,0 -g1,4462:20188505,42047402 -g1,4462:20188505,42047402 -g1,4462:20188505,42047402 -g1,4462:20188505,42047402 -g1,4462:20188505,42047402 -(1,4462:20188505,42047402:0,0,0 -(1,4462:20188505,42047402:1463288,466322,199855 -(1,4462:20188505,42047402:1463288,466322,199855 -r1,4525:21651793,42047402:0,666177,199855 +] ) -g1,4462:21651793,42047402 ) ) -g1,4462:20188505,42047402 -g1,4462:20188505,42047402 +] +[1,3551:3078558,4812305:0,0,0 +(1,3551:3078558,2439708:0,1703936,0 +g1,3551:29030814,2439708 +g1,3551:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,3551:36151628,1915420:16384,1179648,0 ) +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) -g1,4462:20188505,42047402 +] ) +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,3551:37855564,2439708:1179648,16384,0 ) -g1,4462:20188505,42047402 -(1,4462:20188505,42047402:919495,798978,532510 -g1,4462:21108000,42047402 -g1,4462:21108000,42047402 ) -g1,4462:21108000,42047402 -(1,4462:21108000,42047402:1055810,798978,532510 -g1,4462:21108000,42047402 -g1,4462:22163810,42047402 -(1,4462:22163810,42047402:0,798978,532510 -(1,4462:22163810,42047402:0,0,0 -(1,4462:22163810,42047402:0,0,0 -g1,4462:22163810,42047402 -g1,4462:22163810,42047402 -g1,4462:22163810,42047402 -g1,4462:22163810,42047402 -g1,4462:22163810,42047402 -(1,4462:22163810,42047402:0,0,0 -(1,4462:22163810,42047402:1788346,466322,199855 -(1,4462:22163810,42047402:1788346,466322,199855 -r1,4525:23952156,42047402:0,666177,199855 +k1,3551:3078556,2439708:-34777008 ) -g1,4462:23952156,42047402 +] +[1,3551:3078558,4812305:0,0,0 +(1,3551:3078558,49800853:0,16384,2228224 +k1,3551:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,3551:2537886,49800853:1179648,16384,0 ) +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,3551:3078558,51504789:16384,1179648,0 ) -g1,4462:22163810,42047402 -g1,4462:22163810,42047402 +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) +] ) -g1,4462:22163810,42047402 ) ) -g1,4462:22163810,42047402 -(1,4462:22163810,42047402:1082024,798978,532510 -g1,4462:23245834,42047402 -g1,4462:23245834,42047402 +] +[1,3551:3078558,4812305:0,0,0 +(1,3551:3078558,49800853:0,16384,2228224 +g1,3551:29030814,49800853 +g1,3551:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,3551:36151628,51504789:16384,1179648,0 ) -g1,4462:23245834,42047402 +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 +) +] +) +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,3551:37855564,49800853:1179648,16384,0 +) +) +k1,3551:3078556,49800853:-34777008 +) +] +g1,3551:6630773,4812305 +k1,3551:22348274,4812305:14920583 +g1,3551:23970945,4812305 +g1,3551:24793421,4812305 +g1,3551:27528893,4812305 +g1,3551:28938572,4812305 +) +) +] +[1,3551:6630773,45706769:25952256,40108032,0 +(1,3551:6630773,45706769:25952256,40108032,0 +(1,3551:6630773,45706769:0,0,0 +g1,3551:6630773,45706769 +) +[1,3551:6630773,45706769:25952256,40108032,0 +(1,3412:6630773,6254097:25952256,513147,134348 +k1,3411:9815346,6254097:209238 +k1,3411:10380445,6254097:209239 +k1,3411:13578125,6254097:209238 +k1,3411:16622451,6254097:209239 +k1,3411:19219166,6254097:209238 +k1,3411:22573478,6254097:209239 +k1,3411:24158317,6254097:209238 +k1,3411:25821145,6254097:209239 +k1,3411:28783550,6254097:209238 +k1,3411:29754317,6254097:209239 +k1,3411:31613752,6254097:209238 +k1,3412:32583029,6254097:0 +) +(1,3412:6630773,7119177:25952256,505283,126483 +g1,3411:8651903,7119177 +k1,3412:32583028,7119177:20765736 +g1,3412:32583028,7119177 +) +v1,3414:6630773,7804032:0,393216,0 +(1,3467:6630773,23096616:25952256,15685800,196608 +g1,3467:6630773,23096616 +g1,3467:6630773,23096616 +g1,3467:6434165,23096616 +(1,3467:6434165,23096616:0,15685800,196608 +r1,3551:32779637,23096616:26345472,15882408,196608 +k1,3467:6434165,23096616:-26345472 +) +(1,3467:6434165,23096616:26345472,15685800,196608 +[1,3467:6630773,23096616:25952256,15489192,0 +(1,3416:6630773,8038469:25952256,431045,112852 +(1,3415:6630773,8038469:0,0,0 +g1,3415:6630773,8038469 +g1,3415:6630773,8038469 +g1,3415:6303093,8038469 +(1,3415:6303093,8038469:0,0,0 +) +g1,3415:6630773,8038469 +) +g1,3416:8954451,8038469 +g1,3416:9950313,8038469 +g1,3416:13601807,8038469 +g1,3416:16257439,8038469 +g1,3416:19576978,8038469 +g1,3416:22564564,8038469 +h1,3416:26548011,8038469:0,0,0 +k1,3416:32583029,8038469:6035018 +g1,3416:32583029,8038469 +) +(1,3417:6630773,8723324:25952256,424439,106246 +h1,3417:6630773,8723324:0,0,0 +g1,3417:8954451,8723324 +g1,3417:9950313,8723324 +g1,3417:13601807,8723324 +g1,3417:16257439,8723324 +g1,3417:18913071,8723324 +h1,3417:22232610,8723324:0,0,0 +k1,3417:32583029,8723324:10350419 +g1,3417:32583029,8723324 +) +(1,3418:6630773,9408179:25952256,424439,106246 +h1,3418:6630773,9408179:0,0,0 +g1,3418:8622497,9408179 +g1,3418:9618359,9408179 +g1,3418:12937899,9408179 +g1,3418:16257438,9408179 +h1,3418:19245023,9408179:0,0,0 +k1,3418:32583029,9408179:13338006 +g1,3418:32583029,9408179 +) +(1,3419:6630773,10093034:25952256,424439,112852 +h1,3419:6630773,10093034:0,0,0 +g1,3419:9618358,10093034 +g1,3419:10614220,10093034 +g1,3419:14265714,10093034 +g1,3419:17585253,10093034 +g1,3419:20572839,10093034 +g1,3419:23892378,10093034 +h1,3419:26879963,10093034:0,0,0 +k1,3419:32583029,10093034:5703066 +g1,3419:32583029,10093034 +) +(1,3420:6630773,10777889:25952256,431045,112852 +h1,3420:6630773,10777889:0,0,0 +g1,3420:12605944,10777889 +h1,3420:15593529,10777889:0,0,0 +k1,3420:32583029,10777889:16989500 +g1,3420:32583029,10777889 +) +(1,3424:6630773,11593816:25952256,424439,112852 +(1,3422:6630773,11593816:0,0,0 +g1,3422:6630773,11593816 +g1,3422:6630773,11593816 +g1,3422:6303093,11593816 +(1,3422:6303093,11593816:0,0,0 +) +g1,3422:6630773,11593816 +) +g1,3424:7626635,11593816 +g1,3424:8954451,11593816 +g1,3424:11610083,11593816 +g1,3424:11942037,11593816 +h1,3424:14597668,11593816:0,0,0 +k1,3424:32583028,11593816:17985360 +g1,3424:32583028,11593816 +) +(1,3426:6630773,12409743:25952256,424439,112852 +(1,3425:6630773,12409743:0,0,0 +g1,3425:6630773,12409743 +g1,3425:6630773,12409743 +g1,3425:6303093,12409743 +(1,3425:6303093,12409743:0,0,0 +) +g1,3425:6630773,12409743 +) +k1,3426:6630773,12409743:0 +g1,3426:12605944,12409743 +h1,3426:15593529,12409743:0,0,0 +k1,3426:32583029,12409743:16989500 +g1,3426:32583029,12409743 +) +(1,3430:6630773,13225670:25952256,424439,79822 +(1,3428:6630773,13225670:0,0,0 +g1,3428:6630773,13225670 +g1,3428:6630773,13225670 +g1,3428:6303093,13225670 +(1,3428:6303093,13225670:0,0,0 +) +g1,3428:6630773,13225670 +) +g1,3430:7626635,13225670 +g1,3430:8954451,13225670 +h1,3430:11278129,13225670:0,0,0 +k1,3430:32583029,13225670:21304900 +g1,3430:32583029,13225670 +) +(1,3432:6630773,14041597:25952256,424439,112852 +(1,3431:6630773,14041597:0,0,0 +g1,3431:6630773,14041597 +g1,3431:6630773,14041597 +g1,3431:6303093,14041597 +(1,3431:6303093,14041597:0,0,0 +) +g1,3431:6630773,14041597 +) +k1,3432:6630773,14041597:0 +g1,3432:12273990,14041597 +h1,3432:15261575,14041597:0,0,0 +k1,3432:32583029,14041597:17321454 +g1,3432:32583029,14041597 +) +(1,3436:6630773,14857524:25952256,424439,79822 +(1,3434:6630773,14857524:0,0,0 +g1,3434:6630773,14857524 +g1,3434:6630773,14857524 +g1,3434:6303093,14857524 +(1,3434:6303093,14857524:0,0,0 +) +g1,3434:6630773,14857524 +) +g1,3436:7626635,14857524 +g1,3436:8954451,14857524 +g1,3436:11942036,14857524 +h1,3436:14597667,14857524:0,0,0 +k1,3436:32583029,14857524:17985362 +g1,3436:32583029,14857524 +) +(1,3438:6630773,15673451:25952256,424439,106246 +(1,3437:6630773,15673451:0,0,0 +g1,3437:6630773,15673451 +g1,3437:6630773,15673451 +g1,3437:6303093,15673451 +(1,3437:6303093,15673451:0,0,0 +) +g1,3437:6630773,15673451 +) +g1,3438:9286405,15673451 +g1,3438:10946175,15673451 +h1,3438:12605945,15673451:0,0,0 +k1,3438:32583029,15673451:19977084 +g1,3438:32583029,15673451 +) +(1,3442:6630773,16489378:25952256,424439,79822 +(1,3440:6630773,16489378:0,0,0 +g1,3440:6630773,16489378 +g1,3440:6630773,16489378 +g1,3440:6303093,16489378 +(1,3440:6303093,16489378:0,0,0 +) +g1,3440:6630773,16489378 +) +g1,3442:7626635,16489378 +g1,3442:8954451,16489378 +h1,3442:10614221,16489378:0,0,0 +k1,3442:32583029,16489378:21968808 +g1,3442:32583029,16489378 +) +(1,3444:6630773,17305305:25952256,431045,9908 +(1,3443:6630773,17305305:0,0,0 +g1,3443:6630773,17305305 +g1,3443:6630773,17305305 +g1,3443:6303093,17305305 +(1,3443:6303093,17305305:0,0,0 +) +g1,3443:6630773,17305305 +) +g1,3444:9286405,17305305 +g1,3444:10946175,17305305 +h1,3444:12937899,17305305:0,0,0 +k1,3444:32583029,17305305:19645130 +g1,3444:32583029,17305305 +) +(1,3448:6630773,18121232:25952256,424439,79822 +(1,3446:6630773,18121232:0,0,0 +g1,3446:6630773,18121232 +g1,3446:6630773,18121232 +g1,3446:6303093,18121232 +(1,3446:6303093,18121232:0,0,0 +) +g1,3446:6630773,18121232 +) +g1,3448:7626635,18121232 +g1,3448:8954451,18121232 +h1,3448:10282267,18121232:0,0,0 +k1,3448:32583029,18121232:22300762 +g1,3448:32583029,18121232 +) +(1,3450:6630773,18937159:25952256,424439,112852 +(1,3449:6630773,18937159:0,0,0 +g1,3449:6630773,18937159 +g1,3449:6630773,18937159 +g1,3449:6303093,18937159 +(1,3449:6303093,18937159:0,0,0 +) +g1,3449:6630773,18937159 +) +g1,3450:8622497,18937159 +g1,3450:10282267,18937159 +h1,3450:12937898,18937159:0,0,0 +k1,3450:32583030,18937159:19645132 +g1,3450:32583030,18937159 +) +(1,3454:6630773,19753086:25952256,424439,79822 +(1,3452:6630773,19753086:0,0,0 +g1,3452:6630773,19753086 +g1,3452:6630773,19753086 +g1,3452:6303093,19753086 +(1,3452:6303093,19753086:0,0,0 +) +g1,3452:6630773,19753086 +) +g1,3454:7626635,19753086 +g1,3454:8954451,19753086 +g1,3454:10946175,19753086 +g1,3454:11278129,19753086 +g1,3454:12937899,19753086 +g1,3454:13269853,19753086 +h1,3454:14597669,19753086:0,0,0 +k1,3454:32583029,19753086:17985360 +g1,3454:32583029,19753086 +) +(1,3456:6630773,20569013:25952256,424439,106246 +(1,3455:6630773,20569013:0,0,0 +g1,3455:6630773,20569013 +g1,3455:6630773,20569013 +g1,3455:6303093,20569013 +(1,3455:6303093,20569013:0,0,0 +) +g1,3455:6630773,20569013 +) +k1,3456:6630773,20569013:0 +g1,3456:11278129,20569013 +h1,3456:13269853,20569013:0,0,0 +k1,3456:32583029,20569013:19313176 +g1,3456:32583029,20569013 +) +(1,3460:6630773,21384940:25952256,424439,79822 +(1,3458:6630773,21384940:0,0,0 +g1,3458:6630773,21384940 +g1,3458:6630773,21384940 +g1,3458:6303093,21384940 +(1,3458:6303093,21384940:0,0,0 +) +g1,3458:6630773,21384940 +) +g1,3460:7626635,21384940 +g1,3460:8954451,21384940 +g1,3460:11610083,21384940 +g1,3460:11942037,21384940 +g1,3460:12273991,21384940 +g1,3460:14597669,21384940 +g1,3460:14929623,21384940 +g1,3460:15261577,21384940 +g1,3460:15593531,21384940 +g1,3460:17917209,21384940 +g1,3460:18249163,21384940 +g1,3460:18581117,21384940 +g1,3460:18913071,21384940 +g1,3460:22232610,21384940 +g1,3460:24556288,21384940 +g1,3460:24888242,21384940 +g1,3460:25220196,21384940 +g1,3460:25552150,21384940 +g1,3460:28539735,21384940 +g1,3460:28871689,21384940 +h1,3460:31527320,21384940:0,0,0 +k1,3460:32583029,21384940:1055709 +g1,3460:32583029,21384940 +) +(1,3462:6630773,22200867:25952256,431045,112852 +(1,3461:6630773,22200867:0,0,0 +g1,3461:6630773,22200867 +g1,3461:6630773,22200867 +g1,3461:6303093,22200867 +(1,3461:6303093,22200867:0,0,0 +) +g1,3461:6630773,22200867 +) +k1,3462:6630773,22200867:0 +g1,3462:13933761,22200867 +g1,3462:16589393,22200867 +g1,3462:19908932,22200867 +g1,3462:20572840,22200867 +g1,3462:22896518,22200867 +k1,3462:22896518,22200867:0 +h1,3462:24224334,22200867:0,0,0 +k1,3462:32583029,22200867:8358695 +g1,3462:32583029,22200867 +) +(1,3466:6630773,23016794:25952256,424439,79822 +(1,3464:6630773,23016794:0,0,0 +g1,3464:6630773,23016794 +g1,3464:6630773,23016794 +g1,3464:6303093,23016794 +(1,3464:6303093,23016794:0,0,0 +) +g1,3464:6630773,23016794 +) +g1,3466:7626635,23016794 +g1,3466:8954451,23016794 +g1,3466:11278129,23016794 +g1,3466:11610083,23016794 +g1,3466:11942037,23016794 +g1,3466:12273991,23016794 +g1,3466:14597669,23016794 +g1,3466:14929623,23016794 +g1,3466:15261577,23016794 +g1,3466:15593531,23016794 +g1,3466:18913070,23016794 +h1,3466:20904794,23016794:0,0,0 +k1,3466:32583029,23016794:11678235 +g1,3466:32583029,23016794 +) +] +) +g1,3467:32583029,23096616 +g1,3467:6630773,23096616 +g1,3467:6630773,23096616 +g1,3467:32583029,23096616 +g1,3467:32583029,23096616 +) +h1,3467:6630773,23293224:0,0,0 +v1,3471:6630773,24158304:0,393216,0 +(1,3501:6630773,33150246:25952256,9385158,0 +g1,3501:6630773,33150246 +g1,3501:6237557,33150246 +r1,3551:6368629,33150246:131072,9385158,0 +g1,3501:6567858,33150246 +g1,3501:6764466,33150246 +[1,3501:6764466,33150246:25818563,9385158,0 +(1,3472:6764466,24519481:25818563,754393,260573 +(1,3471:6764466,24519481:0,754393,260573 +r1,3551:8010564,24519481:1246098,1014966,260573 +k1,3471:6764466,24519481:-1246098 +) +(1,3471:6764466,24519481:1246098,754393,260573 +) +k1,3471:8189183,24519481:178619 +k1,3471:8516863,24519481:327680 +k1,3471:9985230,24519481:178618 +k1,3471:12833130,24519481:178619 +k1,3471:17002235,24519481:178618 +k1,3471:17867016,24519481:178619 +k1,3471:18401494,24519481:178618 +k1,3471:20601899,24519481:178619 +k1,3471:23732260,24519481:178619 +k1,3471:25327766,24519481:178618 +k1,3471:27204423,24519481:178619 +k1,3471:29691219,24519481:178618 +k1,3471:30861398,24519481:178619 +k1,3472:32583029,24519481:0 +) +(1,3472:6764466,25384561:25818563,505283,134348 +k1,3471:9110218,25384561:264329 +k1,3471:10060708,25384561:264328 +k1,3471:11763552,25384561:264329 +k1,3471:14984209,25384561:264328 +k1,3471:18202246,25384561:264329 +k1,3471:19458134,25384561:264328 +k1,3471:23230605,25384561:264329 +k1,3471:26533837,25384561:264328 +k1,3471:29751874,25384561:264329 +k1,3471:32583029,25384561:0 +) +(1,3472:6764466,26249641:25818563,513147,126483 +g1,3471:9779777,26249641 +g1,3471:10665168,26249641 +g1,3471:12572921,26249641 +g1,3471:13763710,26249641 +g1,3471:16092204,26249641 +g1,3471:19468618,26249641 +g1,3471:20283885,26249641 +g1,3471:21502199,26249641 +g1,3471:24480155,26249641 +k1,3472:32583029,26249641:5918559 +g1,3472:32583029,26249641 +) +v1,3474:6764466,26934496:0,393216,0 +(1,3499:6764466,32953638:25818563,6412358,196608 +g1,3499:6764466,32953638 +g1,3499:6764466,32953638 +g1,3499:6567858,32953638 +(1,3499:6567858,32953638:0,6412358,196608 +r1,3551:32779637,32953638:26211779,6608966,196608 +k1,3499:6567857,32953638:-26211780 +) +(1,3499:6567858,32953638:26211779,6412358,196608 +[1,3499:6764466,32953638:25818563,6215750,0 +(1,3476:6764466,27162327:25818563,424439,106246 +(1,3475:6764466,27162327:0,0,0 +g1,3475:6764466,27162327 +g1,3475:6764466,27162327 +g1,3475:6436786,27162327 +(1,3475:6436786,27162327:0,0,0 +) +g1,3475:6764466,27162327 +) +k1,3476:6764466,27162327:0 +g1,3476:11079868,27162327 +g1,3476:12739638,27162327 +g1,3476:14731362,27162327 +g1,3476:17055040,27162327 +g1,3476:18714810,27162327 +g1,3476:20706534,27162327 +g1,3476:21370442,27162327 +g1,3476:22698258,27162327 +k1,3476:22698258,27162327:0 +h1,3476:25685843,27162327:0,0,0 +k1,3476:32583029,27162327:6897186 +g1,3476:32583029,27162327 +) +(1,3480:6764466,27978254:25818563,424439,79822 +(1,3478:6764466,27978254:0,0,0 +g1,3478:6764466,27978254 +g1,3478:6764466,27978254 +g1,3478:6436786,27978254 +(1,3478:6436786,27978254:0,0,0 +) +g1,3478:6764466,27978254 +) +g1,3480:7760328,27978254 +g1,3480:9088144,27978254 +g1,3480:10415960,27978254 +h1,3480:11411822,27978254:0,0,0 +k1,3480:32583030,27978254:21171208 +g1,3480:32583030,27978254 +) +(1,3482:6764466,28794181:25818563,424439,106246 +(1,3481:6764466,28794181:0,0,0 +g1,3481:6764466,28794181 +g1,3481:6764466,28794181 +g1,3481:6436786,28794181 +(1,3481:6436786,28794181:0,0,0 +) +g1,3481:6764466,28794181 +) +k1,3482:6764466,28794181:0 +g1,3482:12075729,28794181 +g1,3482:13735499,28794181 +g1,3482:15727223,28794181 +g1,3482:18050901,28794181 +g1,3482:19710671,28794181 +g1,3482:21702395,28794181 +g1,3482:22366303,28794181 +g1,3482:24026073,28794181 +k1,3482:24026073,28794181:41838 +h1,3482:26723542,28794181:0,0,0 +k1,3482:32583029,28794181:5859487 +g1,3482:32583029,28794181 +) +(1,3486:6764466,29610108:25818563,424439,79822 +(1,3484:6764466,29610108:0,0,0 +g1,3484:6764466,29610108 +g1,3484:6764466,29610108 +g1,3484:6436786,29610108 +(1,3484:6436786,29610108:0,0,0 +) +g1,3484:6764466,29610108 +) +g1,3486:7760328,29610108 +g1,3486:9088144,29610108 +h1,3486:10415960,29610108:0,0,0 +k1,3486:32583028,29610108:22167068 +g1,3486:32583028,29610108 +) +(1,3488:6764466,30426035:25818563,424439,106246 +(1,3487:6764466,30426035:0,0,0 +g1,3487:6764466,30426035 +g1,3487:6764466,30426035 +g1,3487:6436786,30426035 +(1,3487:6436786,30426035:0,0,0 +) +g1,3487:6764466,30426035 +) +k1,3488:6764466,30426035:0 +g1,3488:12407683,30426035 +g1,3488:14067453,30426035 +g1,3488:16059177,30426035 +g1,3488:18382855,30426035 +g1,3488:20042625,30426035 +g1,3488:22034349,30426035 +g1,3488:22698257,30426035 +g1,3488:25353889,30426035 +k1,3488:25353889,30426035:41838 +h1,3488:28051358,30426035:0,0,0 +k1,3488:32583029,30426035:4531671 +g1,3488:32583029,30426035 +) +(1,3492:6764466,31241962:25818563,424439,112852 +(1,3490:6764466,31241962:0,0,0 +g1,3490:6764466,31241962 +g1,3490:6764466,31241962 +g1,3490:6436786,31241962 +(1,3490:6436786,31241962:0,0,0 +) +g1,3490:6764466,31241962 +) +g1,3492:7760328,31241962 +g1,3492:9088144,31241962 +g1,3492:10084006,31241962 +g1,3492:12407684,31241962 +h1,3492:15395269,31241962:0,0,0 +k1,3492:32583029,31241962:17187760 +g1,3492:32583029,31241962 +) +(1,3494:6764466,32057889:25818563,424439,106246 +(1,3493:6764466,32057889:0,0,0 +g1,3493:6764466,32057889 +g1,3493:6764466,32057889 +g1,3493:6436786,32057889 +(1,3493:6436786,32057889:0,0,0 +) +g1,3493:6764466,32057889 +) +k1,3494:6764466,32057889:0 +g1,3494:12407683,32057889 +g1,3494:14067453,32057889 +g1,3494:16059177,32057889 +g1,3494:18382855,32057889 +g1,3494:20042625,32057889 +g1,3494:22034349,32057889 +g1,3494:22698257,32057889 +g1,3494:25353889,32057889 +k1,3494:25353889,32057889:41838 +h1,3494:28051358,32057889:0,0,0 +k1,3494:32583029,32057889:4531671 +g1,3494:32583029,32057889 +) +(1,3498:6764466,32873816:25818563,424439,79822 +(1,3496:6764466,32873816:0,0,0 +g1,3496:6764466,32873816 +g1,3496:6764466,32873816 +g1,3496:6436786,32873816 +(1,3496:6436786,32873816:0,0,0 +) +g1,3496:6764466,32873816 +) +g1,3498:7760328,32873816 +g1,3498:9088144,32873816 +h1,3498:10747914,32873816:0,0,0 +k1,3498:32583030,32873816:21835116 +g1,3498:32583030,32873816 +) +] +) +g1,3499:32583029,32953638 +g1,3499:6764466,32953638 +g1,3499:6764466,32953638 +g1,3499:32583029,32953638 +g1,3499:32583029,32953638 +) +h1,3499:6764466,33150246:0,0,0 +] +g1,3501:32583029,33150246 +) +h1,3501:6630773,33150246:0,0,0 +(1,3504:6630773,34015326:25952256,505283,126483 +h1,3503:6630773,34015326:983040,0,0 +g1,3503:8766591,34015326 +g1,3503:11989651,34015326 +g1,3503:13380325,34015326 +g1,3503:14970228,34015326 +g1,3503:15525317,34015326 +g1,3503:18699225,34015326 +g1,3503:20876331,34015326 +g1,3503:21726988,34015326 +g1,3503:23018702,34015326 +g1,3503:23833969,34015326 +g1,3503:25052283,34015326 +g1,3503:26635632,34015326 +k1,3504:32583029,34015326:2782008 +g1,3504:32583029,34015326 +) +v1,3506:6630773,34700181:0,393216,0 +(1,3510:6630773,35014440:25952256,707475,196608 +g1,3510:6630773,35014440 +g1,3510:6630773,35014440 +g1,3510:6434165,35014440 +(1,3510:6434165,35014440:0,707475,196608 +r1,3551:32779637,35014440:26345472,904083,196608 +k1,3510:6434165,35014440:-26345472 +) +(1,3510:6434165,35014440:26345472,707475,196608 +[1,3510:6630773,35014440:25952256,510867,0 +(1,3508:6630773,34928012:25952256,424439,86428 +(1,3507:6630773,34928012:0,0,0 +g1,3507:6630773,34928012 +g1,3507:6630773,34928012 +g1,3507:6303093,34928012 +(1,3507:6303093,34928012:0,0,0 +) +g1,3507:6630773,34928012 +) +g1,3508:8290543,34928012 +g1,3508:9286405,34928012 +g1,3508:11610083,34928012 +g1,3508:13269853,34928012 +g1,3508:14929623,34928012 +h1,3508:16257439,34928012:0,0,0 +k1,3508:32583029,34928012:16325590 +g1,3508:32583029,34928012 +) +] +) +g1,3510:32583029,35014440 +g1,3510:6630773,35014440 +g1,3510:6630773,35014440 +g1,3510:32583029,35014440 +g1,3510:32583029,35014440 +) +h1,3510:6630773,35211048:0,0,0 +(1,3514:6630773,36076128:25952256,513147,134348 +h1,3513:6630773,36076128:983040,0,0 +k1,3513:8685462,36076128:242619 +k1,3513:10119527,36076128:242620 +k1,3513:10828107,36076128:242619 +k1,3513:11426586,36076128:242619 +k1,3513:13363966,36076128:242619 +k1,3513:15286929,36076128:242620 +k1,3513:17996323,36076128:242619 +k1,3513:18890370,36076128:242619 +k1,3513:19488849,36076128:242619 +k1,3513:20839683,36076128:242620 +k1,3513:21950654,36076128:242619 +k1,3513:23285758,36076128:242619 +k1,3513:26274991,36076128:242619 +(1,3513:26274991,36076128:0,452978,115847 +r1,3551:27688392,36076128:1413401,568825,115847 +k1,3513:26274991,36076128:-1413401 +) +(1,3513:26274991,36076128:1413401,452978,115847 +k1,3513:26274991,36076128:3277 +h1,3513:27685115,36076128:0,411205,112570 +) +k1,3513:27931012,36076128:242620 +k1,3513:28856516,36076128:242619 +k1,3513:29887533,36076128:242619 +k1,3513:32583029,36076128:0 +) +(1,3514:6630773,36941208:25952256,513147,134348 +k1,3513:10214687,36941208:278933 +(1,3513:10214687,36941208:0,452978,115847 +r1,3551:14441783,36941208:4227096,568825,115847 +k1,3513:10214687,36941208:-4227096 +) +(1,3513:10214687,36941208:4227096,452978,115847 +k1,3513:10214687,36941208:3277 +h1,3513:14438506,36941208:0,411205,112570 +) +k1,3513:14894387,36941208:278934 +k1,3513:15801155,36941208:278933 +k1,3513:17099174,36941208:278934 +k1,3513:19705290,36941208:278933 +k1,3513:20643516,36941208:278934 +k1,3513:22187294,36941208:278933 +k1,3513:25329495,36941208:278933 +k1,3513:26811670,36941208:278934 +k1,3513:27622100,36941208:278933 +k1,3513:30187585,36941208:278934 +$1,3513:30187585,36941208 +k1,3513:30978001,36941208:327732 +k1,3513:31891625,36941208:327732 +$1,3513:32409359,36941208 +k1,3513:32583029,36941208:0 +) +(1,3514:6630773,37806288:25952256,505283,126483 +k1,3513:8770045,37806288:220378 +$1,3513:8770045,37806288 +$1,3513:9287779,37806288 +k1,3513:9508157,37806288:220378 +k1,3513:10260032,37806288:220378 +k1,3513:10836270,37806288:220378 +k1,3513:11991191,37806288:220378 +k1,3513:13403014,37806288:220378 +$1,3513:13403014,37806288 +$1,3513:13865698,37806288 +k1,3513:14086076,37806288:220378 +k1,3513:14662314,37806288:220378 +k1,3513:17679769,37806288:220378 +k1,3513:19096834,37806288:220378 +k1,3513:21558543,37806288:220378 +k1,3513:24965281,37806288:220378 +k1,3513:27176643,37806288:220378 +k1,3513:28681527,37806288:220378 +k1,3513:29920990,37806288:220378 +(1,3513:29920990,37806288:0,452978,115847 +r1,3551:31334391,37806288:1413401,568825,115847 +k1,3513:29920990,37806288:-1413401 +) +(1,3513:29920990,37806288:1413401,452978,115847 +k1,3513:29920990,37806288:3277 +h1,3513:31331114,37806288:0,411205,112570 +) +k1,3513:31554769,37806288:220378 +k1,3514:32583029,37806288:0 +) +(1,3514:6630773,38671368:25952256,513147,134348 +g1,3513:8761348,38671368 +g1,3513:9492074,38671368 +g1,3513:13028396,38671368 +g1,3513:14036995,38671368 +g1,3513:15024622,38671368 +g1,3513:19629837,38671368 +g1,3513:21193526,38671368 +g1,3513:24208837,38671368 +g1,3513:27408960,38671368 +g1,3513:27964049,38671368 +g1,3513:30232905,38671368 +k1,3514:32583029,38671368:198577 +g1,3514:32583029,38671368 +) +v1,3516:6630773,39356223:0,393216,0 +(1,3535:6630773,43743511:25952256,4780504,196608 +g1,3535:6630773,43743511 +g1,3535:6630773,43743511 +g1,3535:6434165,43743511 +(1,3535:6434165,43743511:0,4780504,196608 +r1,3551:32779637,43743511:26345472,4977112,196608 +k1,3535:6434165,43743511:-26345472 +) +(1,3535:6434165,43743511:26345472,4780504,196608 +[1,3535:6630773,43743511:25952256,4583896,0 +(1,3518:6630773,39584054:25952256,424439,86428 +(1,3517:6630773,39584054:0,0,0 +g1,3517:6630773,39584054 +g1,3517:6630773,39584054 +g1,3517:6303093,39584054 +(1,3517:6303093,39584054:0,0,0 +) +g1,3517:6630773,39584054 +) +k1,3518:6630773,39584054:0 +g1,3518:11942036,39584054 +h1,3518:13601806,39584054:0,0,0 +k1,3518:32583030,39584054:18981224 +g1,3518:32583030,39584054 +) +(1,3522:6630773,40399981:25952256,424439,79822 +(1,3520:6630773,40399981:0,0,0 +g1,3520:6630773,40399981 +g1,3520:6630773,40399981 +g1,3520:6303093,40399981 +(1,3520:6303093,40399981:0,0,0 +) +g1,3520:6630773,40399981 +) +g1,3522:7626635,40399981 +g1,3522:8954451,40399981 +h1,3522:10282267,40399981:0,0,0 +k1,3522:32583029,40399981:22300762 +g1,3522:32583029,40399981 +) +(1,3524:6630773,41215908:25952256,424439,9908 +(1,3523:6630773,41215908:0,0,0 +g1,3523:6630773,41215908 +g1,3523:6630773,41215908 +g1,3523:6303093,41215908 +(1,3523:6303093,41215908:0,0,0 +) +g1,3523:6630773,41215908 +) +g1,3524:7958589,41215908 +g1,3524:9618359,41215908 +h1,3524:10946175,41215908:0,0,0 +k1,3524:32583029,41215908:21636854 +g1,3524:32583029,41215908 +) +(1,3528:6630773,42031835:25952256,424439,79822 +(1,3526:6630773,42031835:0,0,0 +g1,3526:6630773,42031835 +g1,3526:6630773,42031835 +g1,3526:6303093,42031835 +(1,3526:6303093,42031835:0,0,0 +) +g1,3526:6630773,42031835 +) +g1,3528:7626635,42031835 +g1,3528:8954451,42031835 +h1,3528:10282267,42031835:0,0,0 +k1,3528:32583029,42031835:22300762 +g1,3528:32583029,42031835 +) +(1,3530:6630773,42847762:25952256,424439,86428 +(1,3529:6630773,42847762:0,0,0 +g1,3529:6630773,42847762 +g1,3529:6630773,42847762 +g1,3529:6303093,42847762 +(1,3529:6303093,42847762:0,0,0 +) +g1,3529:6630773,42847762 +) +k1,3530:6630773,42847762:0 +g1,3530:8954451,42847762 +g1,3530:10614221,42847762 +g1,3530:12273991,42847762 +g1,3530:13933761,42847762 +h1,3530:15261577,42847762:0,0,0 +k1,3530:32583029,42847762:17321452 +g1,3530:32583029,42847762 +) +(1,3534:6630773,43663689:25952256,424439,79822 +(1,3532:6630773,43663689:0,0,0 +g1,3532:6630773,43663689 +g1,3532:6630773,43663689 +g1,3532:6303093,43663689 +(1,3532:6303093,43663689:0,0,0 +) +g1,3532:6630773,43663689 +) +g1,3534:7626635,43663689 +g1,3534:8954451,43663689 +g1,3534:9286405,43663689 +g1,3534:10946175,43663689 +g1,3534:11278129,43663689 +g1,3534:12937899,43663689 +h1,3534:14597669,43663689:0,0,0 +k1,3534:32583029,43663689:17985360 +g1,3534:32583029,43663689 ) ] ) +g1,3535:32583029,43743511 +g1,3535:6630773,43743511 +g1,3535:6630773,43743511 +g1,3535:32583029,43743511 +g1,3535:32583029,43743511 ) -g1,4462:17685348,42047402 -g1,4462:17685348,42047402 +h1,3535:6630773,43940119:0,0,0 +v1,3539:6630773,44805199:0,393216,0 +] +(1,3551:32583029,45706769:0,0,0 +g1,3551:32583029,45706769 ) ) -g1,4462:17685348,42047402 -g1,4466:17685348,42047402 -g1,4466:17685348,42047402 -g1,4468:17685348,42047402 -(1,4468:17685348,42047402:0,0,0 -(1,4468:17685348,42047402:0,0,0 -g1,4468:17685348,42047402 -(1,4468:17685348,42047402:0,0,0 -(1,4468:17685348,42047402:2538879,469599,203132 -(1,4468:17685348,42047402:2538879,469599,203132 -(1,4468:17685348,42047402:0,469599,203132 -r1,4525:20224227,42047402:2538879,672731,203132 -k1,4468:17685348,42047402:-2538879 +] +(1,3551:6630773,47279633:25952256,0,0 +h1,3551:6630773,47279633:25952256,0,0 ) -(1,4468:17685348,42047402:2538879,469599,203132 -r1,4525:17688625,42047402:0,666177,199855 -h1,4468:20220950,42047402:0,328964,90056 +] +(1,3551:4262630,4025873:0,0,0 +[1,3551:-473656,4025873:0,0,0 +(1,3551:-473656,-710413:0,0,0 +(1,3551:-473656,-710413:0,0,0 +g1,3551:-473656,-710413 ) +g1,3551:-473656,-710413 ) -g1,4468:20224227,42047402 +] ) +] +!25941 +}69 +Input:631:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:632:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:633:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:634:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:635:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:636:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:637:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:638:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:639:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:640:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:641:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:642:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:643:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:644:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:645:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:646:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:647:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:648:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:649:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:650:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:651:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:652:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:653:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!2150 +{70 +[1,3629:4262630,47279633:28320399,43253760,0 +(1,3629:4262630,4025873:0,0,0 +[1,3629:-473656,4025873:0,0,0 +(1,3629:-473656,-710413:0,0,0 +(1,3629:-473656,-644877:0,0,0 +k1,3629:-473656,-644877:-65536 ) -g1,4468:17685348,42047402 -g1,4468:17685348,42047402 +(1,3629:-473656,4736287:0,0,0 +k1,3629:-473656,4736287:5209943 ) +g1,3629:-473656,-710413 ) -(1,4469:17685348,42047402:0,0,0 -(1,4469:17685348,42047402:0,0,0 -g1,4469:17685348,42047402 -(1,4469:17685348,42047402:0,0,0 -(1,4469:17685348,42047402:666177,385352,0 -(1,4469:17685348,42047402:666177,385352,0 -(1,4469:17685348,42047402:666177,385352,0 -(1,4469:18151670,42047402:385352,466322,199855 -(1,4469:18151670,42047402:385352,466322,199855 -r1,4525:18537022,42047402:0,666177,199855 +] ) +[1,3629:6630773,47279633:25952256,43253760,0 +[1,3629:6630773,4812305:25952256,786432,0 +(1,3629:6630773,4812305:25952256,505283,126483 +(1,3629:6630773,4812305:25952256,505283,126483 +g1,3629:3078558,4812305 +[1,3629:3078558,4812305:0,0,0 +(1,3629:3078558,2439708:0,1703936,0 +k1,3629:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,3629:2537886,2439708:1179648,16384,0 ) +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,3629:3078558,1915420:16384,1179648,0 ) +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) -g1,4469:18351525,42047402 +] ) ) -g1,4469:17685348,42047402 -g1,4469:17685348,42047402 ) +] +[1,3629:3078558,4812305:0,0,0 +(1,3629:3078558,2439708:0,1703936,0 +g1,3629:29030814,2439708 +g1,3629:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,3629:36151628,1915420:16384,1179648,0 ) -(1,4470:17685348,42047402:0,0,0 -(1,4470:17685348,42047402:0,0,0 -g1,4470:17685348,42047402 -(1,4470:17685348,42047402:0,0,0 -(1,4470:17685348,42047402:666177,362807,0 -(1,4470:17685348,42047402:666177,362807,0 -(1,4470:17685348,42047402:666177,362807,0 -(1,4470:18151670,42047402:362807,466322,199855 -(1,4470:18151670,42047402:362807,466322,199855 -r1,4525:18514477,42047402:0,666177,199855 +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) +] ) +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,3629:37855564,2439708:1179648,16384,0 ) ) -g1,4470:18351525,42047402 +k1,3629:3078556,2439708:-34777008 ) +] +[1,3629:3078558,4812305:0,0,0 +(1,3629:3078558,49800853:0,16384,2228224 +k1,3629:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,3629:2537886,49800853:1179648,16384,0 ) -g1,4470:17685348,42047402 -g1,4470:17685348,42047402 +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,3629:3078558,51504789:16384,1179648,0 ) +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) -(1,4471:17685348,42047402:0,0,0 -(1,4471:17685348,42047402:0,0,0 -g1,4471:17685348,42047402 -(1,4471:17685348,42047402:0,0,0 -(1,4471:17685348,42047402:666177,448266,0 -(1,4471:17685348,42047402:666177,448266,0 -(1,4471:17685348,42047402:666177,448266,0 -(1,4471:18151670,42047402:448266,466322,199855 -(1,4471:18151670,42047402:448266,466322,199855 -r1,4525:18599936,42047402:0,666177,199855 +] +) +) +) +] +[1,3629:3078558,4812305:0,0,0 +(1,3629:3078558,49800853:0,16384,2228224 +g1,3629:29030814,49800853 +g1,3629:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,3629:36151628,51504789:16384,1179648,0 +) +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 +) +] +) +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,3629:37855564,49800853:1179648,16384,0 +) +) +k1,3629:3078556,49800853:-34777008 +) +] +g1,3629:6630773,4812305 +g1,3629:6630773,4812305 +g1,3629:8050282,4812305 +g1,3629:9459961,4812305 +g1,3629:10519678,4812305 +g1,3629:14021266,4812305 +k1,3629:31786110,4812305:17764844 +) +) +] +[1,3629:6630773,45706769:25952256,40108032,0 +(1,3629:6630773,45706769:25952256,40108032,0 +(1,3629:6630773,45706769:0,0,0 +g1,3629:6630773,45706769 +) +[1,3629:6630773,45706769:25952256,40108032,0 +v1,3551:6630773,6254097:0,393216,0 +(1,3551:6630773,13757918:25952256,7897037,0 +g1,3551:6630773,13757918 +g1,3551:6237557,13757918 +r1,3629:6368629,13757918:131072,7897037,0 +g1,3551:6567858,13757918 +g1,3551:6764466,13757918 +[1,3551:6764466,13757918:25818563,7897037,0 +(1,3540:6764466,6562395:25818563,701514,196608 +(1,3539:6764466,6562395:0,701514,196608 +r1,3629:8010564,6562395:1246098,898122,196608 +k1,3539:6764466,6562395:-1246098 +) +(1,3539:6764466,6562395:1246098,701514,196608 +) +k1,3539:8195539,6562395:184975 +k1,3539:8523219,6562395:327680 +k1,3539:10287613,6562395:184976 +k1,3539:11088626,6562395:184975 +k1,3539:12930351,6562395:184975 +k1,3539:14399833,6562395:184976 +k1,3539:17668932,6562395:184975 +k1,3539:22055420,6562395:184975 +k1,3539:22856434,6562395:184976 +k1,3539:25788023,6562395:184975 +h1,3539:25788023,6562395:0,0,0 +k1,3539:27806438,6562395:184975 +k1,3539:28522911,6562395:184976 +k1,3539:29478589,6562395:184975 +k1,3540:32583029,6562395:0 +) +(1,3540:6764466,7427475:25818563,513147,134348 +k1,3539:8340716,7427475:192130 +k1,3539:9806210,7427475:192129 +k1,3539:13119164,7427475:192130 +k1,3539:16385588,7427475:192130 +k1,3539:18737129,7427475:192130 +k1,3539:19285118,7427475:192129 +k1,3539:21455125,7427475:192130 +k1,3539:22838700,7427475:192130 +k1,3539:23386690,7427475:192130 +k1,3539:24687033,7427475:192129 +k1,3539:26075850,7427475:192130 +k1,3539:31135339,7427475:192130 +k1,3539:32583029,7427475:0 +) +(1,3540:6764466,8292555:25818563,513147,134348 +k1,3539:10059289,8292555:222495 +k1,3539:10813280,8292555:222494 +k1,3539:14625837,8292555:222495 +k1,3539:15534493,8292555:222494 +k1,3539:16112848,8292555:222495 +k1,3539:17443557,8292555:222495 +k1,3539:19355569,8292555:222494 +k1,3539:20597149,8292555:222495 +k1,3539:25225629,8292555:222494 +k1,3539:26812584,8292555:222495 +k1,3539:30107406,8292555:222494 +k1,3539:30861398,8292555:222495 +k1,3540:32583029,8292555:0 +) +(1,3540:6764466,9157635:25818563,513147,126483 +k1,3539:9029185,9157635:183296 +k1,3539:9898643,9157635:183296 +k1,3539:10437799,9157635:183296 +k1,3539:12598972,9157635:183296 +k1,3539:13441560,9157635:183296 +k1,3539:15635501,9157635:183296 +k1,3539:16470225,9157635:183296 +k1,3539:17844965,9157635:183295 +k1,3539:18975912,9157635:183296 +k1,3539:23149695,9157635:183296 +k1,3539:23949029,9157635:183296 +k1,3539:25151410,9157635:183296 +k1,3539:26442920,9157635:183296 +k1,3539:27254051,9157635:183296 +k1,3539:29139317,9157635:183296 +k1,3539:31451222,9157635:183296 +k1,3539:32583029,9157635:0 +) +(1,3540:6764466,10022715:25818563,505283,126483 +k1,3539:9898599,10022715:177804 +k1,3539:12699809,10022715:177804 +k1,3539:13493651,10022715:177804 +k1,3539:14690541,10022715:177805 +k1,3539:15818617,10022715:177804 +k1,3539:18638833,10022715:177804 +k1,3539:19348134,10022715:177804 +k1,3539:22158519,10022715:177804 +k1,3539:23527768,10022715:177804 +k1,3539:25665099,10022715:177805 +k1,3539:27532421,10022715:177804 +k1,3539:28729310,10022715:177804 +k1,3539:29940617,10022715:177804 +k1,3539:32583029,10022715:0 +) +(1,3540:6764466,10887795:25818563,513147,134348 +k1,3539:7501887,10887795:205924 +k1,3539:11297872,10887795:205923 +k1,3539:12189958,10887795:205924 +k1,3539:12751741,10887795:205923 +k1,3539:13892208,10887795:205924 +k1,3539:14757423,10887795:205923 +k1,3539:17160769,10887795:205924 +k1,3539:19551007,10887795:205923 +k1,3539:20953618,10887795:205924 +k1,3539:23938268,10887795:205923 +k1,3539:26213819,10887795:205924 +k1,3539:28397619,10887795:205923 +k1,3539:29704548,10887795:205924 +k1,3539:30929556,10887795:205923 +k1,3539:32583029,10887795:0 +) +(1,3540:6764466,11752875:25818563,505283,134348 +g1,3539:8976961,11752875 +g1,3539:9862352,11752875 +g1,3539:11080666,11752875 +g1,3539:12230167,11752875 +k1,3540:32583029,11752875:17536780 +g1,3540:32583029,11752875 +) +v1,3542:6764466,12437730:0,393216,0 +(1,3549:6764466,13561310:25818563,1516796,196608 +g1,3549:6764466,13561310 +g1,3549:6764466,13561310 +g1,3549:6567858,13561310 +(1,3549:6567858,13561310:0,1516796,196608 +r1,3629:32779637,13561310:26211779,1713404,196608 +k1,3549:6567857,13561310:-26211780 +) +(1,3549:6567858,13561310:26211779,1516796,196608 +[1,3549:6764466,13561310:25818563,1320188,0 +(1,3544:6764466,12665561:25818563,424439,9908 +(1,3543:6764466,12665561:0,0,0 +g1,3543:6764466,12665561 +g1,3543:6764466,12665561 +g1,3543:6436786,12665561 +(1,3543:6436786,12665561:0,0,0 +) +g1,3543:6764466,12665561 +) +g1,3544:8424236,12665561 +g1,3544:10084006,12665561 +h1,3544:11079868,12665561:0,0,0 +k1,3544:32583028,12665561:21503160 +g1,3544:32583028,12665561 +) +(1,3548:6764466,13481488:25818563,424439,79822 +(1,3546:6764466,13481488:0,0,0 +g1,3546:6764466,13481488 +g1,3546:6764466,13481488 +g1,3546:6436786,13481488 +(1,3546:6436786,13481488:0,0,0 +) +g1,3546:6764466,13481488 +) +g1,3548:7760328,13481488 +g1,3548:9088144,13481488 +g1,3548:9420098,13481488 +g1,3548:11079868,13481488 +g1,3548:13071592,13481488 +g1,3548:15063316,13481488 +h1,3548:16723086,13481488:0,0,0 +k1,3548:32583029,13481488:15859943 +g1,3548:32583029,13481488 +) +] +) +g1,3549:32583029,13561310 +g1,3549:6764466,13561310 +g1,3549:6764466,13561310 +g1,3549:32583029,13561310 +g1,3549:32583029,13561310 +) +h1,3549:6764466,13757918:0,0,0 +] +g1,3551:32583029,13757918 +) +h1,3551:6630773,13757918:0,0,0 +(1,3554:6630773,14622998:25952256,513147,134348 +h1,3553:6630773,14622998:983040,0,0 +k1,3553:9056809,14622998:246309 +k1,3553:12062838,14622998:246308 +k1,3553:12968439,14622998:246309 +k1,3553:16125201,14622998:246308 +k1,3553:16903007,14622998:246309 +$1,3553:16903007,14622998 +k1,3553:17633796,14622998:268105 +k1,3553:18487793,14622998:268105 +$1,3553:19005527,14622998 +k1,3553:19425506,14622998:246309 +k1,3553:20863259,14622998:246308 +k1,3553:23026496,14622998:246309 +k1,3553:23888842,14622998:246308 +k1,3553:24549946,14622998:246261 +k1,3553:25557783,14622998:246309 +k1,3553:28557914,14622998:246308 +k1,3553:29823308,14622998:246309 +k1,3553:32583029,14622998:0 +) +(1,3554:6630773,15488078:25952256,513147,126483 +g1,3553:9576616,15488078 +(1,3553:9576616,15488078:0,424981,115847 +r1,3629:9934882,15488078:358266,540828,115847 +k1,3553:9576616,15488078:-358266 +) +(1,3553:9576616,15488078:358266,424981,115847 +k1,3553:9576616,15488078:3277 +h1,3553:9931605,15488078:0,411205,112570 +) +g1,3553:10134111,15488078 +g1,3553:10984768,15488078 +g1,3553:12203082,15488078 +g1,3553:14245183,15488078 +g1,3553:15103704,15488078 +g1,3553:16322018,15488078 +g1,3553:17712692,15488078 +g1,3553:19489373,15488078 +g1,3553:21082553,15488078 +(1,3553:21082553,15488078:0,452978,115847 +r1,3629:22495954,15488078:1413401,568825,115847 +k1,3553:21082553,15488078:-1413401 +) +(1,3553:21082553,15488078:1413401,452978,115847 +k1,3553:21082553,15488078:3277 +h1,3553:22492677,15488078:0,411205,112570 +) +g1,3553:22695183,15488078 +g1,3553:23577297,15488078 +g1,3553:26472022,15488078 +(1,3553:26472022,15488078:0,452978,115847 +r1,3629:30699118,15488078:4227096,568825,115847 +k1,3553:26472022,15488078:-4227096 +) +(1,3553:26472022,15488078:4227096,452978,115847 +k1,3553:26472022,15488078:3277 +h1,3553:30695841,15488078:0,411205,112570 +) +k1,3554:32583029,15488078:1710241 +g1,3554:32583029,15488078 +) +v1,3556:6630773,16172933:0,393216,0 +(1,3575:6630773,20560221:25952256,4780504,196608 +g1,3575:6630773,20560221 +g1,3575:6630773,20560221 +g1,3575:6434165,20560221 +(1,3575:6434165,20560221:0,4780504,196608 +r1,3629:32779637,20560221:26345472,4977112,196608 +k1,3575:6434165,20560221:-26345472 +) +(1,3575:6434165,20560221:26345472,4780504,196608 +[1,3575:6630773,20560221:25952256,4583896,0 +(1,3558:6630773,16400764:25952256,424439,86428 +(1,3557:6630773,16400764:0,0,0 +g1,3557:6630773,16400764 +g1,3557:6630773,16400764 +g1,3557:6303093,16400764 +(1,3557:6303093,16400764:0,0,0 +) +g1,3557:6630773,16400764 +) +k1,3558:6630773,16400764:0 +g1,3558:12273990,16400764 +h1,3558:13933760,16400764:0,0,0 +k1,3558:32583028,16400764:18649268 +g1,3558:32583028,16400764 +) +(1,3562:6630773,17216691:25952256,424439,79822 +(1,3560:6630773,17216691:0,0,0 +g1,3560:6630773,17216691 +g1,3560:6630773,17216691 +g1,3560:6303093,17216691 +(1,3560:6303093,17216691:0,0,0 +) +g1,3560:6630773,17216691 +) +g1,3562:7626635,17216691 +g1,3562:8954451,17216691 +h1,3562:10614221,17216691:0,0,0 +k1,3562:32583029,17216691:21968808 +g1,3562:32583029,17216691 +) +(1,3564:6630773,18032618:25952256,424439,9908 +(1,3563:6630773,18032618:0,0,0 +g1,3563:6630773,18032618 +g1,3563:6630773,18032618 +g1,3563:6303093,18032618 +(1,3563:6303093,18032618:0,0,0 +) +g1,3563:6630773,18032618 +) +g1,3564:8290543,18032618 +g1,3564:9950313,18032618 +h1,3564:11278129,18032618:0,0,0 +k1,3564:32583029,18032618:21304900 +g1,3564:32583029,18032618 +) +(1,3568:6630773,18848545:25952256,424439,79822 +(1,3566:6630773,18848545:0,0,0 +g1,3566:6630773,18848545 +g1,3566:6630773,18848545 +g1,3566:6303093,18848545 +(1,3566:6303093,18848545:0,0,0 +) +g1,3566:6630773,18848545 +) +g1,3568:7626635,18848545 +g1,3568:8954451,18848545 +h1,3568:10614221,18848545:0,0,0 +k1,3568:32583029,18848545:21968808 +g1,3568:32583029,18848545 +) +(1,3570:6630773,19664472:25952256,424439,86428 +(1,3569:6630773,19664472:0,0,0 +g1,3569:6630773,19664472 +g1,3569:6630773,19664472 +g1,3569:6303093,19664472 +(1,3569:6303093,19664472:0,0,0 +) +g1,3569:6630773,19664472 +) +k1,3570:6630773,19664472:0 +g1,3570:9286405,19664472 +g1,3570:10946175,19664472 +g1,3570:12605945,19664472 +g1,3570:14265715,19664472 +h1,3570:15593531,19664472:0,0,0 +k1,3570:32583029,19664472:16989498 +g1,3570:32583029,19664472 +) +(1,3574:6630773,20480399:25952256,424439,79822 +(1,3572:6630773,20480399:0,0,0 +g1,3572:6630773,20480399 +g1,3572:6630773,20480399 +g1,3572:6303093,20480399 +(1,3572:6303093,20480399:0,0,0 +) +g1,3572:6630773,20480399 +) +g1,3574:7626635,20480399 +g1,3574:8954451,20480399 +g1,3574:10946175,20480399 +g1,3574:12937899,20480399 +g1,3574:13269853,20480399 +h1,3574:14597669,20480399:0,0,0 +k1,3574:32583029,20480399:17985360 +g1,3574:32583029,20480399 +) +] +) +g1,3575:32583029,20560221 +g1,3575:6630773,20560221 +g1,3575:6630773,20560221 +g1,3575:32583029,20560221 +g1,3575:32583029,20560221 +) +h1,3575:6630773,20756829:0,0,0 +(1,3579:6630773,21621909:25952256,513147,134348 +h1,3578:6630773,21621909:983040,0,0 +k1,3578:10737209,21621909:160513 +k1,3578:13808175,21621909:160512 +k1,3578:14500185,21621909:160513 +k1,3578:15016558,21621909:160513 +k1,3578:16111613,21621909:160512 +k1,3578:19520090,21621909:160513 +k1,3578:20138700,21621909:160513 +k1,3578:20830710,21621909:160513 +k1,3578:22277038,21621909:160512 +k1,3578:23791525,21621909:160513 +k1,3578:25929259,21621909:160513 +k1,3578:27037422,21621909:160512 +k1,3578:28217020,21621909:160513 +k1,3578:32583029,21621909:0 +) +(1,3579:6630773,22486989:25952256,513147,134348 +k1,3578:7581624,22486989:283695 +(1,3578:7581624,22486989:0,459977,115847 +r1,3629:11808721,22486989:4227097,575824,115847 +k1,3578:7581624,22486989:-4227097 +) +(1,3578:7581624,22486989:4227097,459977,115847 +g1,3578:8640037,22486989 +g1,3578:9695173,22486989 +g1,3578:10398597,22486989 +h1,3578:11805444,22486989:0,411205,112570 +) +k1,3578:12092416,22486989:283695 +k1,3578:15892774,22486989:283696 +k1,3578:16937997,22486989:283695 +k1,3578:20162948,22486989:283695 +k1,3578:23117890,22486989:283695 +k1,3578:24923332,22486989:283696 +k1,3578:26154678,22486989:283695 +k1,3578:29825274,22486989:283695 +k1,3578:32583029,22486989:0 +) +(1,3579:6630773,23352069:25952256,513147,126483 +k1,3578:8808770,23352069:167352 +k1,3578:9635414,23352069:167352 +k1,3578:10821850,23352069:167351 +k1,3578:12642675,23352069:167352 +(1,3578:12642675,23352069:0,452978,115847 +r1,3629:14056076,23352069:1413401,568825,115847 +k1,3578:12642675,23352069:-1413401 +) +(1,3578:12642675,23352069:1413401,452978,115847 +k1,3578:12642675,23352069:3277 +h1,3578:14052799,23352069:0,411205,112570 +) +k1,3578:14223428,23352069:167352 +k1,3578:16879182,23352069:167352 +k1,3578:17808062,23352069:167352 +k1,3578:20646661,23352069:167352 +(1,3578:20646661,23352069:0,452978,115847 +r1,3629:21004927,23352069:358266,568825,115847 +k1,3578:20646661,23352069:-358266 +) +(1,3578:20646661,23352069:358266,452978,115847 +k1,3578:20646661,23352069:3277 +h1,3578:21001650,23352069:0,411205,112570 +) +k1,3578:21172278,23352069:167351 +k1,3578:24590216,23352069:167352 +k1,3578:25245124,23352069:167320 +k1,3578:27389697,23352069:167352 +k1,3578:30335120,23352069:167352 +k1,3578:31169628,23352069:167352 +(1,3578:31169628,23352069:0,452978,115847 +r1,3629:32583029,23352069:1413401,568825,115847 +k1,3578:31169628,23352069:-1413401 +) +(1,3578:31169628,23352069:1413401,452978,115847 +k1,3578:31169628,23352069:3277 +h1,3578:32579752,23352069:0,411205,112570 +) +k1,3578:32583029,23352069:0 +) +(1,3579:6630773,24217149:25952256,505283,126483 +g1,3578:8021447,24217149 +(1,3578:8021447,24217149:0,452978,115847 +r1,3629:12248543,24217149:4227096,568825,115847 +k1,3578:8021447,24217149:-4227096 +) +(1,3578:8021447,24217149:4227096,452978,115847 +k1,3578:8021447,24217149:3277 +h1,3578:12245266,24217149:0,411205,112570 +) +g1,3578:12447772,24217149 +g1,3578:13178498,24217149 +g1,3578:14662233,24217149 +g1,3578:16241650,24217149 +g1,3578:18195933,24217149 +g1,3578:20405807,24217149 +(1,3578:20405807,24217149:0,414482,115847 +r1,3629:21115785,24217149:709978,530329,115847 +k1,3578:20405807,24217149:-709978 +) +(1,3578:20405807,24217149:709978,414482,115847 +k1,3578:20405807,24217149:3277 +h1,3578:21112508,24217149:0,411205,112570 +) +k1,3579:32583029,24217149:11293574 +g1,3579:32583029,24217149 +) +v1,3581:6630773,25082229:0,393216,0 +(1,3585:6630773,30707490:25952256,6018477,0 +g1,3585:6630773,30707490 +g1,3585:6237557,30707490 +r1,3629:6368629,30707490:131072,6018477,0 +g1,3585:6567858,30707490 +g1,3585:6764466,30707490 +[1,3585:6764466,30707490:25818563,6018477,0 +(1,3582:6764466,25390527:25818563,701514,196608 +(1,3581:6764466,25390527:0,701514,196608 +r1,3629:8010564,25390527:1246098,898122,196608 +k1,3581:6764466,25390527:-1246098 +) +(1,3581:6764466,25390527:1246098,701514,196608 +) +k1,3581:8199441,25390527:188877 +k1,3581:8527121,25390527:327680 +k1,3581:11577300,25390527:188877 +(1,3581:11577300,25390527:0,452978,115847 +r1,3629:12990701,25390527:1413401,568825,115847 +k1,3581:11577300,25390527:-1413401 +) +(1,3581:11577300,25390527:1413401,452978,115847 +k1,3581:11577300,25390527:3277 +h1,3581:12987424,25390527:0,411205,112570 +) +k1,3581:13179578,25390527:188877 +k1,3581:13899952,25390527:188877 +k1,3581:17393810,25390527:188877 +k1,3581:18234114,25390527:188876 +k1,3581:21118487,25390527:188877 +(1,3581:21118487,25390527:0,452978,115847 +r1,3629:23587024,25390527:2468537,568825,115847 +k1,3581:21118487,25390527:-2468537 +) +(1,3581:21118487,25390527:2468537,452978,115847 +k1,3581:21118487,25390527:3277 +h1,3581:23583747,25390527:0,411205,112570 +) +k1,3581:23949571,25390527:188877 +k1,3581:26969603,25390527:188877 +k1,3581:28177565,25390527:188877 +k1,3581:31593435,25390527:188877 +k1,3582:32583029,25390527:0 +) +(1,3582:6764466,26255607:25818563,513147,126483 +g1,3581:9798127,26255607 +g1,3581:10664512,26255607 +(1,3581:10664512,26255607:0,452978,115847 +r1,3629:13133049,26255607:2468537,568825,115847 +k1,3581:10664512,26255607:-2468537 +) +(1,3581:10664512,26255607:2468537,452978,115847 +k1,3581:10664512,26255607:3277 +h1,3581:13129772,26255607:0,411205,112570 +) +g1,3581:13332278,26255607 +g1,3581:15961582,26255607 +g1,3581:19387804,26255607 +k1,3582:32583029,26255607:10047531 +g1,3582:32583029,26255607 +) +(1,3584:6764466,27120687:25818563,505283,134348 +h1,3583:6764466,27120687:983040,0,0 +k1,3583:8615858,27120687:240517 +k1,3583:10548515,27120687:240517 +k1,3583:12660085,27120687:240517 +k1,3583:14394168,27120687:240517 +k1,3583:15320847,27120687:240517 +k1,3583:17259402,27120687:240517 +k1,3583:20538168,27120687:240517 +k1,3583:22862730,27120687:240517 +k1,3583:26077926,27120687:240517 +k1,3583:28514554,27120687:240517 +k1,3583:29441233,27120687:240517 +k1,3583:31563944,27120687:240517 +k1,3583:32583029,27120687:0 +) +(1,3584:6764466,27985767:25818563,505283,134348 +k1,3583:8158810,27985767:217317 +k1,3583:8907625,27985767:217318 +k1,3583:10191213,27985767:217317 +k1,3583:11179233,27985767:217317 +k1,3583:13055267,27985767:217318 +k1,3583:15427408,27985767:217317 +k1,3583:16716894,27985767:217317 +k1,3583:17290072,27985767:217318 +k1,3583:19591434,27985767:217317 +k1,3583:21789904,27985767:217317 +k1,3583:22658650,27985767:217318 +k1,3583:24755540,27985767:217317 +k1,3583:27947536,27985767:217317 +k1,3583:30534636,27985767:217318 +k1,3583:31379788,27985767:217317 +k1,3583:32583029,27985767:0 +) +(1,3584:6764466,28850847:25818563,505283,134348 +k1,3583:8540959,28850847:235742 +k1,3583:10632681,28850847:235742 +(1,3583:10632681,28850847:0,452978,115847 +r1,3629:14508065,28850847:3875384,568825,115847 +k1,3583:10632681,28850847:-3875384 +) +(1,3583:10632681,28850847:3875384,452978,115847 +k1,3583:10632681,28850847:3277 +h1,3583:14504788,28850847:0,411205,112570 +) +k1,3583:14743806,28850847:235741 +k1,3583:15662433,28850847:235742 +(1,3583:15662433,28850847:0,452978,115847 +r1,3629:18482682,28850847:2820249,568825,115847 +k1,3583:15662433,28850847:-2820249 +) +(1,3583:15662433,28850847:2820249,452978,115847 +k1,3583:15662433,28850847:3277 +h1,3583:18479405,28850847:0,411205,112570 +) +k1,3583:18718424,28850847:235742 +k1,3583:19485663,28850847:235742 +k1,3583:20740489,28850847:235741 +k1,3583:23218873,28850847:235742 +k1,3583:24705697,28850847:235742 +k1,3583:25592867,28850847:235742 +k1,3583:26921093,28850847:235741 +k1,3583:30518832,28850847:235742 +k1,3583:31563944,28850847:235742 +k1,3583:32583029,28850847:0 +) +(1,3584:6764466,29715927:25818563,513147,134348 +k1,3583:9316546,29715927:196061 +k1,3583:12314271,29715927:196061 +k1,3583:13169623,29715927:196060 +k1,3583:15623399,29715927:196061 +k1,3583:19325636,29715927:196061 +k1,3583:20713142,29715927:196061 +k1,3583:22567919,29715927:196061 +k1,3583:25596446,29715927:196061 +k1,3583:26941352,29715927:196060 +(1,3583:26941352,29715927:0,452978,115847 +r1,3629:29058177,29715927:2116825,568825,115847 +k1,3583:26941352,29715927:-2116825 +) +(1,3583:26941352,29715927:2116825,452978,115847 +k1,3583:26941352,29715927:3277 +h1,3583:29054900,29715927:0,411205,112570 +) +k1,3583:29254238,29715927:196061 +k1,3583:30101727,29715927:196061 +k1,3583:31563944,29715927:196061 +k1,3583:32583029,29715927:0 +) +(1,3584:6764466,30581007:25818563,513147,126483 +g1,3583:9081163,30581007 +g1,3583:9746353,30581007 +g1,3583:11116055,30581007 +g1,3583:12845550,30581007 +g1,3583:13696207,30581007 +g1,3583:14987921,30581007 +g1,3583:16343860,30581007 +g1,3583:17202381,30581007 +k1,3584:32583029,30581007:13567922 +g1,3584:32583029,30581007 +) +] +g1,3585:32583029,30707490 +) +h1,3585:6630773,30707490:0,0,0 +v1,3588:6630773,31572570:0,393216,0 +(1,3600:6630773,36440741:25952256,5261387,0 +g1,3600:6630773,36440741 +g1,3600:6237557,36440741 +r1,3629:6368629,36440741:131072,5261387,0 +g1,3600:6567858,36440741 +g1,3600:6764466,36440741 +[1,3600:6764466,36440741:25818563,5261387,0 +(1,3589:6764466,31845047:25818563,665693,196608 +(1,3588:6764466,31845047:0,665693,196608 +r1,3629:8010564,31845047:1246098,862301,196608 +k1,3588:6764466,31845047:-1246098 +) +(1,3588:6764466,31845047:1246098,665693,196608 +) +k1,3588:8255271,31845047:244707 +k1,3588:9981489,31845047:327680 +k1,3588:11375041,31845047:244706 +k1,3588:14366362,31845047:244707 +(1,3588:14366362,31845047:0,452978,115847 +r1,3629:15779763,31845047:1413401,568825,115847 +k1,3588:14366362,31845047:-1413401 +) +(1,3588:14366362,31845047:1413401,452978,115847 +k1,3588:14366362,31845047:3277 +h1,3588:15776486,31845047:0,411205,112570 +) +k1,3588:16024469,31845047:244706 +k1,3588:16920604,31845047:244707 +k1,3588:18780117,31845047:244706 +k1,3588:20675021,31845047:244707 +k1,3588:23841322,31845047:244706 +k1,3588:25105114,31845047:244707 +k1,3588:28325155,31845047:244706 +k1,3588:32583029,31845047:0 +) +(1,3589:6764466,32710127:25818563,513147,134348 +g1,3588:8515588,32710127 +g1,3588:9739800,32710127 +g1,3588:12217716,32710127 +h1,3588:13188304,32710127:0,0,0 +g1,3588:13387533,32710127 +g1,3588:14396132,32710127 +g1,3588:16093514,32710127 +h1,3588:16890432,32710127:0,0,0 +g1,3588:17089661,32710127 +g1,3588:18236541,32710127 +g1,3588:19454855,32710127 +g1,3588:22840444,32710127 +g1,3588:25674876,32710127 +(1,3588:25674876,32710127:0,452978,115847 +r1,3629:26033142,32710127:358266,568825,115847 +k1,3588:25674876,32710127:-358266 +) +(1,3588:25674876,32710127:358266,452978,115847 +k1,3588:25674876,32710127:3277 +h1,3588:26029865,32710127:0,411205,112570 +) +g1,3588:26232371,32710127 +g1,3588:27623045,32710127 +(1,3588:27623045,32710127:0,452978,115847 +r1,3629:28333023,32710127:709978,568825,115847 +k1,3588:27623045,32710127:-709978 +) +(1,3588:27623045,32710127:709978,452978,115847 +k1,3588:27623045,32710127:3277 +h1,3588:28329746,32710127:0,411205,112570 +) +g1,3588:28532252,32710127 +k1,3589:32583029,32710127:800191 +g1,3589:32583029,32710127 +) +v1,3591:6764466,33394982:0,393216,0 +(1,3596:6764466,34387490:25818563,1385724,196608 +g1,3596:6764466,34387490 +g1,3596:6764466,34387490 +g1,3596:6567858,34387490 +(1,3596:6567858,34387490:0,1385724,196608 +r1,3629:32779637,34387490:26211779,1582332,196608 +k1,3596:6567857,34387490:-26211780 +) +(1,3596:6567858,34387490:26211779,1385724,196608 +[1,3596:6764466,34387490:25818563,1189116,0 +(1,3593:6764466,33622813:25818563,424439,86428 +(1,3592:6764466,33622813:0,0,0 +g1,3592:6764466,33622813 +g1,3592:6764466,33622813 +g1,3592:6436786,33622813 +(1,3592:6436786,33622813:0,0,0 +) +g1,3592:6764466,33622813 +) +g1,3593:8424236,33622813 +g1,3593:9420098,33622813 +g1,3593:11743776,33622813 +g1,3593:13403546,33622813 +h1,3593:14731362,33622813:0,0,0 +k1,3593:32583030,33622813:17851668 +g1,3593:32583030,33622813 +) +(1,3594:6764466,34307668:25818563,424439,79822 +h1,3594:6764466,34307668:0,0,0 +g1,3594:8424236,34307668 +g1,3594:9420098,34307668 +g1,3594:10747914,34307668 +g1,3594:11411822,34307668 +g1,3594:13071592,34307668 +g1,3594:14067454,34307668 +g1,3594:15395270,34307668 +g1,3594:16059178,34307668 +g1,3594:17718948,34307668 +g1,3594:18714810,34307668 +g1,3594:20042626,34307668 +g1,3594:20706534,34307668 +g1,3594:22698258,34307668 +g1,3594:23694120,34307668 +h1,3594:24689982,34307668:0,0,0 +k1,3594:32583029,34307668:7893047 +g1,3594:32583029,34307668 +) +] +) +g1,3596:32583029,34387490 +g1,3596:6764466,34387490 +g1,3596:6764466,34387490 +g1,3596:32583029,34387490 +g1,3596:32583029,34387490 +) +h1,3596:6764466,34584098:0,0,0 +(1,3600:6764466,35449178:25818563,513147,134348 +h1,3599:6764466,35449178:983040,0,0 +k1,3599:10495913,35449178:233791 +k1,3599:11748789,35449178:233791 +(1,3599:11748789,35449178:0,452978,122846 +r1,3629:14217326,35449178:2468537,575824,122846 +k1,3599:11748789,35449178:-2468537 +) +(1,3599:11748789,35449178:2468537,452978,122846 +k1,3599:11748789,35449178:3277 +h1,3599:14214049,35449178:0,411205,112570 +) +k1,3599:14451117,35449178:233791 +k1,3599:16993085,35449178:233790 +k1,3599:17886168,35449178:233791 +k1,3599:20133225,35449178:233791 +k1,3599:20765475,35449178:233791 +k1,3599:22266732,35449178:233791 +k1,3599:22856383,35449178:233791 +k1,3599:25068051,35449178:233791 +k1,3599:25961133,35449178:233790 +k1,3599:28208190,35449178:233791 +k1,3599:29772362,35449178:233791 +k1,3599:31558046,35449178:233791 +k1,3599:32583029,35449178:0 +) +(1,3600:6764466,36314258:25818563,513147,126483 +g1,3599:8351748,36314258 +g1,3599:9498628,36314258 +g1,3599:12723654,36314258 +(1,3599:12723654,36314258:0,452978,115847 +r1,3629:14488767,36314258:1765113,568825,115847 +k1,3599:12723654,36314258:-1765113 +) +(1,3599:12723654,36314258:1765113,452978,115847 +k1,3599:12723654,36314258:3277 +h1,3599:14485490,36314258:0,411205,112570 +) +g1,3599:14687996,36314258 +g1,3599:16078670,36314258 +(1,3599:16078670,36314258:0,452978,115847 +r1,3629:17843783,36314258:1765113,568825,115847 +k1,3599:16078670,36314258:-1765113 +) +(1,3599:16078670,36314258:1765113,452978,115847 +k1,3599:16078670,36314258:3277 +h1,3599:17840506,36314258:0,411205,112570 +) +k1,3600:32583029,36314258:14565576 +g1,3600:32583029,36314258 +) +] +g1,3600:32583029,36440741 +) +h1,3600:6630773,36440741:0,0,0 +(1,3603:6630773,37305821:25952256,513147,126483 +h1,3602:6630773,37305821:983040,0,0 +k1,3602:9382158,37305821:289197 +(1,3602:9382158,37305821:0,452978,115847 +r1,3629:12202407,37305821:2820249,568825,115847 +k1,3602:9382158,37305821:-2820249 +) +(1,3602:9382158,37305821:2820249,452978,115847 +k1,3602:9382158,37305821:3277 +h1,3602:12199130,37305821:0,411205,112570 +) +k1,3602:12491605,37305821:289198 +k1,3602:13649154,37305821:289197 +k1,3602:16331071,37305821:289198 +k1,3602:16976128,37305821:289197 +k1,3602:19243202,37305821:289197 +k1,3602:20191692,37305821:289198 +k1,3602:23124611,37305821:289197 +k1,3602:26198434,37305821:289198 +k1,3602:28498276,37305821:289197 +k1,3602:30054939,37305821:289197 +k1,3602:30699997,37305821:289198 +k1,3602:31923737,37305821:289197 +k1,3602:32583029,37305821:0 +) +(1,3603:6630773,38170901:25952256,513147,134348 +k1,3602:9026687,38170901:198492 +k1,3602:11409494,38170901:198492 +k1,3602:12235822,38170901:198493 +k1,3602:13453399,38170901:198492 +k1,3602:15979074,38170901:198492 +k1,3602:16836858,38170901:198492 +k1,3602:18473865,38170901:198492 +k1,3602:19028217,38170901:198492 +k1,3602:21424788,38170901:198493 +k1,3602:23582806,38170901:198492 +k1,3602:26248073,38170901:198492 +k1,3602:27129450,38170901:198492 +k1,3602:28394213,38170901:198492 +k1,3602:29244134,38170901:198493 +k1,3602:29798486,38170901:198492 +k1,3602:31105192,38170901:198492 +k1,3603:32583029,38170901:0 +) +(1,3603:6630773,39035981:25952256,513147,134348 +g1,3602:10085831,39035981 +g1,3602:10901098,39035981 +g1,3602:11456187,39035981 +g1,3602:12763630,39035981 +g1,3602:15634106,39035981 +g1,3602:17861019,39035981 +g1,3602:18719540,39035981 +g1,3602:19937854,39035981 +g1,3602:21790556,39035981 +g1,3602:23949311,39035981 +g1,3602:24831425,39035981 +g1,3602:26710997,39035981 +g1,3602:27901786,39035981 +k1,3603:32583029,39035981:566237 +g1,3603:32583029,39035981 +) +v1,3605:6630773,39720836:0,393216,0 +(1,3612:6630773,40844416:25952256,1516796,196608 +g1,3612:6630773,40844416 +g1,3612:6630773,40844416 +g1,3612:6434165,40844416 +(1,3612:6434165,40844416:0,1516796,196608 +r1,3629:32779637,40844416:26345472,1713404,196608 +k1,3612:6434165,40844416:-26345472 +) +(1,3612:6434165,40844416:26345472,1516796,196608 +[1,3612:6630773,40844416:25952256,1320188,0 +(1,3607:6630773,39948667:25952256,424439,106246 +(1,3606:6630773,39948667:0,0,0 +g1,3606:6630773,39948667 +g1,3606:6630773,39948667 +g1,3606:6303093,39948667 +(1,3606:6303093,39948667:0,0,0 +) +g1,3606:6630773,39948667 +) +k1,3607:6630773,39948667:0 +h1,3607:10614221,39948667:0,0,0 +k1,3607:32583029,39948667:21968808 +g1,3607:32583029,39948667 +) +(1,3611:6630773,40764594:25952256,424439,79822 +(1,3609:6630773,40764594:0,0,0 +g1,3609:6630773,40764594 +g1,3609:6630773,40764594 +g1,3609:6303093,40764594 +(1,3609:6303093,40764594:0,0,0 +) +g1,3609:6630773,40764594 +) +g1,3611:7626635,40764594 +g1,3611:8954451,40764594 +g1,3611:10282267,40764594 +g1,3611:11610083,40764594 +h1,3611:12605945,40764594:0,0,0 +k1,3611:32583029,40764594:19977084 +g1,3611:32583029,40764594 +) +] +) +g1,3612:32583029,40844416 +g1,3612:6630773,40844416 +g1,3612:6630773,40844416 +g1,3612:32583029,40844416 +g1,3612:32583029,40844416 +) +h1,3612:6630773,41041024:0,0,0 +(1,3616:6630773,41906104:25952256,513147,126483 +h1,3615:6630773,41906104:983040,0,0 +k1,3615:10644043,41906104:240362 +(1,3615:10644043,41906104:0,452978,115847 +r1,3629:13464292,41906104:2820249,568825,115847 +k1,3615:10644043,41906104:-2820249 +) +(1,3615:10644043,41906104:2820249,452978,115847 +k1,3615:10644043,41906104:3277 +h1,3615:13461015,41906104:0,411205,112570 +) +k1,3615:13704655,41906104:240363 +k1,3615:14476514,41906104:240362 +k1,3615:18021857,41906104:240362 +k1,3615:20413112,41906104:240363 +k1,3615:21601125,41906104:240362 +k1,3615:24502904,41906104:240362 +k1,3615:26441304,41906104:240362 +k1,3615:27550019,41906104:240363 +k1,3615:29338997,41906104:240362 +k1,3615:32583029,41906104:0 +) +(1,3616:6630773,42771184:25952256,513147,7863 +g1,3615:7849087,42771184 +g1,3615:10534097,42771184 +g1,3615:11392618,42771184 +g1,3615:14007504,42771184 +g1,3615:16217378,42771184 +g1,3615:17032645,42771184 +g1,3615:17587734,42771184 +k1,3616:32583029,42771184:12843748 +g1,3616:32583029,42771184 +) +v1,3618:6630773,43456039:0,393216,0 +(1,3625:6630773,44579619:25952256,1516796,196608 +g1,3625:6630773,44579619 +g1,3625:6630773,44579619 +g1,3625:6434165,44579619 +(1,3625:6434165,44579619:0,1516796,196608 +r1,3629:32779637,44579619:26345472,1713404,196608 +k1,3625:6434165,44579619:-26345472 +) +(1,3625:6434165,44579619:26345472,1516796,196608 +[1,3625:6630773,44579619:25952256,1320188,0 +(1,3620:6630773,43683870:25952256,424439,112852 +(1,3619:6630773,43683870:0,0,0 +g1,3619:6630773,43683870 +g1,3619:6630773,43683870 +g1,3619:6303093,43683870 +(1,3619:6303093,43683870:0,0,0 +) +g1,3619:6630773,43683870 +) +k1,3620:6630773,43683870:0 +k1,3620:6630773,43683870:0 +h1,3620:13269853,43683870:0,0,0 +k1,3620:32583029,43683870:19313176 +g1,3620:32583029,43683870 +) +(1,3624:6630773,44499797:25952256,424439,79822 +(1,3622:6630773,44499797:0,0,0 +g1,3622:6630773,44499797 +g1,3622:6630773,44499797 +g1,3622:6303093,44499797 +(1,3622:6303093,44499797:0,0,0 +) +g1,3622:6630773,44499797 +) +g1,3624:7626635,44499797 +g1,3624:8954451,44499797 +h1,3624:9286405,44499797:0,0,0 +k1,3624:32583029,44499797:23296624 +g1,3624:32583029,44499797 +) +] +) +g1,3625:32583029,44579619 +g1,3625:6630773,44579619 +g1,3625:6630773,44579619 +g1,3625:32583029,44579619 +g1,3625:32583029,44579619 +) +h1,3625:6630773,44776227:0,0,0 +] +(1,3629:32583029,45706769:0,0,0 +g1,3629:32583029,45706769 ) ) +] +(1,3629:6630773,47279633:25952256,0,0 +h1,3629:6630773,47279633:25952256,0,0 ) +] +(1,3629:4262630,4025873:0,0,0 +[1,3629:-473656,4025873:0,0,0 +(1,3629:-473656,-710413:0,0,0 +(1,3629:-473656,-710413:0,0,0 +g1,3629:-473656,-710413 ) -g1,4471:18351525,42047402 +g1,3629:-473656,-710413 +) +] ) +] +!32314 +}70 +Input:654:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:655:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:656:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:657:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:658:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:659:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!569 +{71 +[1,3733:4262630,47279633:28320399,43253760,0 +(1,3733:4262630,4025873:0,0,0 +[1,3733:-473656,4025873:0,0,0 +(1,3733:-473656,-710413:0,0,0 +(1,3733:-473656,-644877:0,0,0 +k1,3733:-473656,-644877:-65536 ) -g1,4471:17685348,42047402 -g1,4471:17685348,42047402 +(1,3733:-473656,4736287:0,0,0 +k1,3733:-473656,4736287:5209943 ) +g1,3733:-473656,-710413 ) -g1,4471:17685348,42047402 -g1,4473:17685348,42047402 -(1,4473:17685348,42047402:0,0,0 -(1,4473:17685348,42047402:0,0,0 -g1,4473:17685348,42047402 -g1,4473:17685348,42047402 -g1,4473:17685348,42047402 -g1,4473:17685348,42047402 -g1,4473:17685348,42047402 -(1,4473:17685348,42047402:0,0,0 -(1,4473:17685348,42047402:6599312,404226,101187 -(1,4473:17685348,42047402:6599312,404226,101187 -(1,4473:17685348,42047402:0,363038,98932 -r1,4525:19661488,42047402:1976140,461970,98932 -k1,4473:17685348,42047402:-1976140 +] ) -(1,4473:17685348,42047402:1976140,363038,98932 -k1,4473:17685348,42047402:3277 -h1,4473:19658211,42047402:0,328964,90056 +[1,3733:6630773,47279633:25952256,43253760,0 +[1,3733:6630773,4812305:25952256,786432,0 +(1,3733:6630773,4812305:25952256,505283,11795 +(1,3733:6630773,4812305:25952256,505283,11795 +g1,3733:3078558,4812305 +[1,3733:3078558,4812305:0,0,0 +(1,3733:3078558,2439708:0,1703936,0 +k1,3733:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,3733:2537886,2439708:1179648,16384,0 ) -g1,4473:19827163,42047402 -g1,4473:22498935,42047402 +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,3733:3078558,1915420:16384,1179648,0 ) -g1,4473:24284660,42047402 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) +] ) -g1,4473:17685348,42047402 -g1,4473:17685348,42047402 ) ) -g1,4473:17685348,42047402 -g1,4474:17685348,42047402 -(1,4474:17685348,42047402:0,0,0 -(1,4474:17685348,42047402:0,0,0 -g1,4474:17685348,42047402 -g1,4474:17685348,42047402 -g1,4474:17685348,42047402 -g1,4474:17685348,42047402 -g1,4474:17685348,42047402 -(1,4474:17685348,42047402:0,0,0 -(1,4474:17685348,42047402:4301011,404226,93333 -(1,4474:17685348,42047402:4301011,404226,93333 -(1,4474:17685348,42047402:0,363038,93333 -r1,4525:20224227,42047402:2538879,456371,93333 -k1,4474:17685348,42047402:-2538879 +] +[1,3733:3078558,4812305:0,0,0 +(1,3733:3078558,2439708:0,1703936,0 +g1,3733:29030814,2439708 +g1,3733:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,3733:36151628,1915420:16384,1179648,0 ) -(1,4474:17685348,42047402:2538879,363038,93333 -k1,4474:17685348,42047402:3277 -h1,4474:20220950,42047402:0,328964,90056 +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) -g1,4474:20389902,42047402 +] ) -g1,4474:21986359,42047402 +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,3733:37855564,2439708:1179648,16384,0 ) ) -g1,4474:17685348,42047402 -g1,4474:17685348,42047402 +k1,3733:3078556,2439708:-34777008 ) +] +[1,3733:3078558,4812305:0,0,0 +(1,3733:3078558,49800853:0,16384,2228224 +k1,3733:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,3733:2537886,49800853:1179648,16384,0 ) -g1,4474:17685348,42047402 -g1,4475:17685348,42047402 -(1,4475:17685348,42047402:0,0,0 -(1,4475:17685348,42047402:0,0,0 -g1,4475:17685348,42047402 -g1,4475:17685348,42047402 -g1,4475:17685348,42047402 -g1,4475:17685348,42047402 -g1,4475:17685348,42047402 -(1,4475:17685348,42047402:0,0,0 -(1,4475:17685348,42047402:6641433,404226,93333 -(1,4475:17685348,42047402:6641433,404226,93333 -(1,4475:17685348,42047402:0,363038,93333 -r1,4525:20224227,42047402:2538879,456371,93333 -k1,4475:17685348,42047402:-2538879 +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,3733:3078558,51504789:16384,1179648,0 ) -(1,4475:17685348,42047402:2538879,363038,93333 -k1,4475:17685348,42047402:3277 -h1,4475:20220950,42047402:0,328964,90056 +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) -g1,4475:20389902,42047402 -g1,4475:22663739,42047402 +] ) -g1,4475:24326781,42047402 ) ) -g1,4475:17685348,42047402 -g1,4475:17685348,42047402 +] +[1,3733:3078558,4812305:0,0,0 +(1,3733:3078558,49800853:0,16384,2228224 +g1,3733:29030814,49800853 +g1,3733:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,3733:36151628,51504789:16384,1179648,0 ) +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 ) -g1,4475:17685348,42047402 -g1,4477:17685348,42047402 -g1,4477:17685348,42047402 +] ) -g1,4477:17685348,42047402 +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,3733:37855564,49800853:1179648,16384,0 ) ) -g1,4479:28041619,43403034 -k1,4479:32583029,43403034:4541410 +k1,3733:3078556,49800853:-34777008 ) -(1,4482:6797234,44857418:25785795,513147,115847 -h1,4481:6797234,44857418:983040,0,0 -k1,4481:8815367,44857418:217204 -(1,4481:8815367,44857418:0,414482,115847 -r1,4525:11987327,44857418:3171960,530329,115847 -k1,4481:8815367,44857418:-3171960 +] +g1,3733:6630773,4812305 +k1,3733:22348274,4812305:14920583 +g1,3733:23970945,4812305 +g1,3733:24793421,4812305 +g1,3733:27528893,4812305 +g1,3733:28938572,4812305 +) +) +] +[1,3733:6630773,45706769:25952256,40108032,0 +(1,3733:6630773,45706769:25952256,40108032,0 +(1,3733:6630773,45706769:0,0,0 +g1,3733:6630773,45706769 ) -(1,4481:8815367,44857418:3171960,414482,115847 -k1,4481:8815367,44857418:3277 -h1,4481:11984050,44857418:0,411205,112570 +[1,3733:6630773,45706769:25952256,40108032,0 +v1,3629:6630773,6254097:0,393216,0 +(1,3640:6630773,8426969:25952256,2566088,0 +g1,3640:6630773,8426969 +g1,3640:6237557,8426969 +r1,3733:6368629,8426969:131072,2566088,0 +g1,3640:6567858,8426969 +g1,3640:6764466,8426969 +[1,3640:6764466,8426969:25818563,2566088,0 +(1,3630:6764466,6526574:25818563,665693,196608 +(1,3629:6764466,6526574:0,665693,196608 +r1,3733:8010564,6526574:1246098,862301,196608 +k1,3629:6764466,6526574:-1246098 +) +(1,3629:6764466,6526574:1246098,665693,196608 +) +g1,3629:8209793,6526574 +g1,3629:9936011,6526574 +g1,3629:11033083,6526574 +g1,3629:12251397,6526574 +g1,3629:14461271,6526574 +g1,3629:17439227,6526574 +g1,3629:18399984,6526574 +g1,3629:20295940,6526574 +g1,3629:21667608,6526574 +g1,3629:25383499,6526574 +k1,3630:32583029,6526574:5129248 +g1,3630:32583029,6526574 +) +v1,3632:6764466,7211429:0,393216,0 +(1,3637:6764466,8230361:25818563,1412148,196608 +g1,3637:6764466,8230361 +g1,3637:6764466,8230361 +g1,3637:6567858,8230361 +(1,3637:6567858,8230361:0,1412148,196608 +r1,3733:32779637,8230361:26211779,1608756,196608 +k1,3637:6567857,8230361:-26211780 +) +(1,3637:6567858,8230361:26211779,1412148,196608 +[1,3637:6764466,8230361:25818563,1215540,0 +(1,3634:6764466,7439260:25818563,424439,86428 +(1,3633:6764466,7439260:0,0,0 +g1,3633:6764466,7439260 +g1,3633:6764466,7439260 +g1,3633:6436786,7439260 +(1,3633:6436786,7439260:0,0,0 +) +g1,3633:6764466,7439260 +) +k1,3634:6764466,7439260:0 +g1,3634:9088144,7439260 +g1,3634:10747914,7439260 +g1,3634:12407684,7439260 +g1,3634:14067454,7439260 +h1,3634:15395270,7439260:0,0,0 +k1,3634:32583030,7439260:17187760 +g1,3634:32583030,7439260 +) +(1,3635:6764466,8124115:25818563,424439,106246 +h1,3635:6764466,8124115:0,0,0 +g1,3635:9088144,8124115 +g1,3635:10747914,8124115 +g1,3635:12407684,8124115 +g1,3635:14067454,8124115 +k1,3635:14067454,8124115:0 +h1,3635:18050902,8124115:0,0,0 +k1,3635:32583029,8124115:14532127 +g1,3635:32583029,8124115 +) +] +) +g1,3637:32583029,8230361 +g1,3637:6764466,8230361 +g1,3637:6764466,8230361 +g1,3637:32583029,8230361 +g1,3637:32583029,8230361 +) +h1,3637:6764466,8426969:0,0,0 +] +g1,3640:32583029,8426969 +) +h1,3640:6630773,8426969:0,0,0 +v1,3643:6630773,9292049:0,393216,0 +(1,3663:6630773,17570507:25952256,8671674,0 +g1,3663:6630773,17570507 +g1,3663:6237557,17570507 +r1,3733:6368629,17570507:131072,8671674,0 +g1,3663:6567858,17570507 +g1,3663:6764466,17570507 +[1,3663:6764466,17570507:25818563,8671674,0 +(1,3644:6764466,9600347:25818563,701514,196608 +(1,3643:6764466,9600347:0,701514,196608 +r1,3733:8010564,9600347:1246098,898122,196608 +k1,3643:6764466,9600347:-1246098 +) +(1,3643:6764466,9600347:1246098,701514,196608 +) +k1,3643:8292317,9600347:281753 +k1,3643:8619997,9600347:327680 +k1,3643:11691618,9600347:281753 +(1,3643:11691618,9600347:0,452978,115847 +r1,3733:15918714,9600347:4227096,568825,115847 +k1,3643:11691618,9600347:-4227096 +) +(1,3643:11691618,9600347:4227096,452978,115847 +k1,3643:11691618,9600347:3277 +h1,3643:15915437,9600347:0,411205,112570 +) +k1,3643:16200467,9600347:281753 +k1,3643:17013717,9600347:281753 +k1,3643:18314556,9600347:281754 +k1,3643:22368561,9600347:281753 +k1,3643:23317470,9600347:281753 +(1,3643:23317470,9600347:0,452978,115847 +r1,3733:26137719,9600347:2820249,568825,115847 +k1,3643:23317470,9600347:-2820249 +) +(1,3643:23317470,9600347:2820249,452978,115847 +k1,3643:23317470,9600347:3277 +h1,3643:26134442,9600347:0,411205,112570 +) +k1,3643:26593142,9600347:281753 +k1,3643:29875789,9600347:281753 +k1,3643:30513402,9600347:281753 +k1,3643:32583029,9600347:0 +) +(1,3644:6764466,10465427:25818563,513147,134348 +k1,3643:8920000,10465427:177657 +k1,3643:12272221,10465427:177657 +k1,3643:14335349,10465427:177657 +k1,3643:16523651,10465427:177657 +k1,3643:17317346,10465427:177657 +k1,3643:17850863,10465427:177657 +k1,3643:20006397,10465427:177657 +k1,3643:21175614,10465427:177657 +k1,3643:24639902,10465427:177657 +k1,3643:25476851,10465427:177657 +k1,3643:27665153,10465427:177657 +k1,3643:30177202,10465427:177657 +k1,3643:32583029,10465427:0 +) +(1,3644:6764466,11330507:25818563,505283,126483 +g1,3643:7576457,11330507 +g1,3643:10720219,11330507 +g1,3643:12313399,11330507 +g1,3643:12868488,11330507 +g1,3643:14824082,11330507 +k1,3644:32583029,11330507:15836121 +g1,3644:32583029,11330507 +) +v1,3646:6764466,12015362:0,393216,0 +(1,3659:6764466,14770796:25818563,3148650,196608 +g1,3659:6764466,14770796 +g1,3659:6764466,14770796 +g1,3659:6567858,14770796 +(1,3659:6567858,14770796:0,3148650,196608 +r1,3733:32779637,14770796:26211779,3345258,196608 +k1,3659:6567857,14770796:-26211780 +) +(1,3659:6567858,14770796:26211779,3148650,196608 +[1,3659:6764466,14770796:25818563,2952042,0 +(1,3648:6764466,12243193:25818563,424439,106246 +(1,3647:6764466,12243193:0,0,0 +g1,3647:6764466,12243193 +g1,3647:6764466,12243193 +g1,3647:6436786,12243193 +(1,3647:6436786,12243193:0,0,0 +) +g1,3647:6764466,12243193 +) +k1,3648:6764466,12243193:0 +h1,3648:12075729,12243193:0,0,0 +k1,3648:32583029,12243193:20507300 +g1,3648:32583029,12243193 +) +(1,3652:6764466,13059120:25818563,424439,79822 +(1,3650:6764466,13059120:0,0,0 +g1,3650:6764466,13059120 +g1,3650:6764466,13059120 +g1,3650:6436786,13059120 +(1,3650:6436786,13059120:0,0,0 +) +g1,3650:6764466,13059120 +) +g1,3652:7760328,13059120 +g1,3652:9088144,13059120 +g1,3652:11079868,13059120 +g1,3652:13071592,13059120 +g1,3652:15063316,13059120 +g1,3652:15395270,13059120 +h1,3652:16723086,13059120:0,0,0 +k1,3652:32583029,13059120:15859943 +g1,3652:32583029,13059120 +) +(1,3654:6764466,13875047:25818563,424439,106246 +(1,3653:6764466,13875047:0,0,0 +g1,3653:6764466,13875047 +g1,3653:6764466,13875047 +g1,3653:6436786,13875047 +(1,3653:6436786,13875047:0,0,0 +) +g1,3653:6764466,13875047 +) +k1,3654:6764466,13875047:0 +h1,3654:13071591,13875047:0,0,0 +k1,3654:32583029,13875047:19511438 +g1,3654:32583029,13875047 +) +(1,3658:6764466,14690974:25818563,424439,79822 +(1,3656:6764466,14690974:0,0,0 +g1,3656:6764466,14690974 +g1,3656:6764466,14690974 +g1,3656:6436786,14690974 +(1,3656:6436786,14690974:0,0,0 +) +g1,3656:6764466,14690974 +) +g1,3658:7760328,14690974 +g1,3658:9088144,14690974 +h1,3658:9420098,14690974:0,0,0 +k1,3658:32583030,14690974:23162932 +g1,3658:32583030,14690974 +) +] +) +g1,3659:32583029,14770796 +g1,3659:6764466,14770796 +g1,3659:6764466,14770796 +g1,3659:32583029,14770796 +g1,3659:32583029,14770796 +) +h1,3659:6764466,14967404:0,0,0 +(1,3663:6764466,15832484:25818563,513147,134348 +h1,3662:6764466,15832484:983040,0,0 +k1,3662:9227733,15832484:283540 +k1,3662:9926032,15832484:283456 +k1,3662:13051868,15832484:283540 +k1,3662:16003379,15832484:283540 +k1,3662:18038697,15832484:283541 +k1,3662:21348034,15832484:283540 +k1,3662:22916080,15832484:283540 +k1,3662:25804021,15832484:283540 +k1,3662:27753487,15832484:283541 +k1,3662:30258698,15832484:283540 +k1,3662:31193666,15832484:283540 +k1,3662:32583029,15832484:0 +) +(1,3663:6764466,16697564:25818563,505283,126483 +k1,3662:9693958,16697564:201228 +k1,3662:11612229,16697564:201228 +k1,3662:12805017,16697564:201228 +k1,3662:14284852,16697564:201228 +k1,3662:16623864,16697564:201228 +k1,3662:17971317,16697564:201228 +(1,3662:17971317,16697564:0,452978,115847 +r1,3733:20791566,16697564:2820249,568825,115847 +k1,3662:17971317,16697564:-2820249 +) +(1,3662:17971317,16697564:2820249,452978,115847 +k1,3662:17971317,16697564:3277 +h1,3662:20788289,16697564:0,411205,112570 +) +k1,3662:21166463,16697564:201227 +k1,3662:22439860,16697564:201228 +k1,3662:24673359,16697564:201228 +k1,3662:26211521,16697564:201228 +k1,3662:27943015,16697564:201228 +k1,3662:28795671,16697564:201228 +k1,3662:29744665,16697564:201228 +k1,3662:32583029,16697564:0 +) +(1,3663:6764466,17562644:25818563,513147,7863 +g1,3662:7911346,17562644 +g1,3662:8726613,17562644 +g1,3662:9944927,17562644 +k1,3663:32583029,17562644:17638360 +g1,3663:32583029,17562644 +) +] +g1,3663:32583029,17570507 +) +h1,3663:6630773,17570507:0,0,0 +v1,3666:6630773,18435587:0,393216,0 +(1,3680:6630773,26471839:25952256,8429468,0 +g1,3680:6630773,26471839 +g1,3680:6237557,26471839 +r1,3733:6368629,26471839:131072,8429468,0 +g1,3680:6567858,26471839 +g1,3680:6764466,26471839 +[1,3680:6764466,26471839:25818563,8429468,0 +(1,3667:6764466,18708064:25818563,665693,196608 +(1,3666:6764466,18708064:0,665693,196608 +r1,3733:8010564,18708064:1246098,862301,196608 +k1,3666:6764466,18708064:-1246098 +) +(1,3666:6764466,18708064:1246098,665693,196608 +) +k1,3666:8191020,18708064:180456 +k1,3666:9917238,18708064:327680 +k1,3666:11731507,18708064:180456 +k1,3666:12727231,18708064:180456 +k1,3666:14078160,18708064:180456 +k1,3666:16329554,18708064:180456 +k1,3666:17161438,18708064:180456 +k1,3666:18089660,18708064:180456 +k1,3666:19289201,18708064:180456 +k1,3666:22656017,18708064:180456 +k1,3666:25471676,18708064:180456 +k1,3666:26671217,18708064:180456 +k1,3666:28862318,18708064:180456 +k1,3666:31821501,18708064:180456 +k1,3666:32583029,18708064:0 +) +(1,3667:6764466,19573144:25818563,513147,134348 +k1,3666:7999164,19573144:215613 +k1,3666:9869562,19573144:215614 +k1,3666:13601837,19573144:215613 +k1,3666:14433489,19573144:215614 +k1,3666:15668187,19573144:215613 +k1,3666:17379988,19573144:215614 +k1,3666:19566269,19573144:215613 +k1,3666:21977338,19573144:215613 +k1,3666:24234398,19573144:215614 +k1,3666:26973147,19573144:215613 +k1,3666:29001487,19573144:215614 +k1,3666:30831907,19573144:215613 +k1,3666:32583029,19573144:0 +) +(1,3667:6764466,20438224:25818563,505283,126483 +k1,3666:8466133,20438224:242836 +k1,3666:12733535,20438224:242836 +k1,3666:14798927,20438224:242836 +k1,3666:16060849,20438224:242837 +k1,3666:17984028,20438224:242836 +k1,3666:19678486,20438224:242836 +k1,3666:21078032,20438224:242836 +k1,3666:22453330,20438224:242836 +k1,3666:24880481,20438224:242836 +k1,3666:26613607,20438224:242837 +k1,3666:28290371,20438224:242836 +k1,3666:29651251,20438224:242836 +k1,3666:30913172,20438224:242836 +k1,3666:32583029,20438224:0 +) +(1,3667:6764466,21303304:25818563,513147,126483 +k1,3666:11632004,21303304:282639 +k1,3666:12573935,21303304:282639 +k1,3666:15447212,21303304:282639 +k1,3666:17188682,21303304:282639 +k1,3666:21081044,21303304:282639 +k1,3666:22867734,21303304:282639 +k1,3666:25393015,21303304:282639 +k1,3666:26358539,21303304:282639 +k1,3666:27881119,21303304:282639 +k1,3666:29778565,21303304:282639 +k1,3666:31812326,21303304:282639 +k1,3666:32583029,21303304:0 +) +(1,3667:6764466,22168384:25818563,513147,126483 +g1,3666:10695970,22168384 +g1,3666:11554491,22168384 +g1,3666:13302336,22168384 +g1,3666:14953187,22168384 +g1,3666:18842748,22168384 +g1,3666:22116271,22168384 +k1,3667:32583029,22168384:9761591 +g1,3667:32583029,22168384 +) +v1,3669:6764466,22853239:0,393216,0 +(1,3675:6764466,24537208:25818563,2077185,196608 +g1,3675:6764466,24537208 +g1,3675:6764466,24537208 +g1,3675:6567858,24537208 +(1,3675:6567858,24537208:0,2077185,196608 +r1,3733:32779637,24537208:26211779,2273793,196608 +k1,3675:6567857,24537208:-26211780 +) +(1,3675:6567858,24537208:26211779,2077185,196608 +[1,3675:6764466,24537208:25818563,1880577,0 +(1,3671:6764466,23081070:25818563,424439,86428 +(1,3670:6764466,23081070:0,0,0 +g1,3670:6764466,23081070 +g1,3670:6764466,23081070 +g1,3670:6436786,23081070 +(1,3670:6436786,23081070:0,0,0 +) +g1,3670:6764466,23081070 +) +k1,3671:6764466,23081070:0 +g1,3671:11079868,23081070 +g1,3671:12739638,23081070 +g1,3671:14731362,23081070 +h1,3671:16391132,23081070:0,0,0 +k1,3671:32583029,23081070:16191897 +g1,3671:32583029,23081070 +) +(1,3672:6764466,23765925:25818563,424439,86428 +h1,3672:6764466,23765925:0,0,0 +g1,3672:9752052,23765925 +g1,3672:11411822,23765925 +g1,3672:13403546,23765925 +h1,3672:15063316,23765925:0,0,0 +k1,3672:32583028,23765925:17519712 +g1,3672:32583028,23765925 +) +(1,3673:6764466,24450780:25818563,424439,86428 +h1,3673:6764466,24450780:0,0,0 +g1,3673:9088144,24450780 +g1,3673:10747914,24450780 +g1,3673:12407684,24450780 +h1,3673:14067454,24450780:0,0,0 +k1,3673:32583030,24450780:18515576 +g1,3673:32583030,24450780 +) +] +) +g1,3675:32583029,24537208 +g1,3675:6764466,24537208 +g1,3675:6764466,24537208 +g1,3675:32583029,24537208 +g1,3675:32583029,24537208 +) +h1,3675:6764466,24733816:0,0,0 +(1,3679:6764466,25598896:25818563,513147,126483 +h1,3678:6764466,25598896:983040,0,0 +k1,3678:9051732,25598896:180939 +k1,3678:10167214,25598896:180939 +k1,3678:12188403,25598896:180938 +k1,3678:13560787,25598896:180939 +k1,3678:18216524,25598896:180939 +k1,3678:19056755,25598896:180939 +k1,3678:21545872,25598896:180939 +k1,3678:25031792,25598896:180939 +k1,3678:28944350,25598896:180938 +k1,3678:30422247,25598896:180939 +k1,3678:31286071,25598896:180939 +k1,3678:32583029,25598896:0 +) +(1,3679:6764466,26463976:25818563,485622,7863 +k1,3679:32583029,26463976:24425268 +g1,3679:32583029,26463976 +) +] +g1,3680:32583029,26471839 +) +h1,3680:6630773,26471839:0,0,0 +v1,3683:6630773,27336919:0,393216,0 +(1,3733:6630773,40707551:25952256,13763848,0 +g1,3733:6630773,40707551 +g1,3733:6237557,40707551 +r1,3733:6368629,40707551:131072,13763848,0 +g1,3733:6567858,40707551 +g1,3733:6764466,40707551 +[1,3733:6764466,40707551:25818563,13763848,0 +(1,3684:6764466,27645217:25818563,701514,196608 +(1,3683:6764466,27645217:0,701514,196608 +r1,3733:8010564,27645217:1246098,898122,196608 +k1,3683:6764466,27645217:-1246098 +) +(1,3683:6764466,27645217:1246098,701514,196608 +) +k1,3683:8314270,27645217:303706 +k1,3683:8641950,27645217:327680 +k1,3683:9843499,27645217:303706 +k1,3683:11081748,27645217:303706 +k1,3683:13712637,27645217:303706 +k1,3683:17008062,27645217:303706 +k1,3683:19167093,27645217:303707 +k1,3683:20563284,27645217:303706 +k1,3683:23841669,27645217:303706 +k1,3683:26453553,27645217:303706 +k1,3683:27948704,27645217:303706 +k1,3683:31227089,27645217:303706 +k1,3684:32583029,27645217:0 +) +(1,3684:6764466,28510297:25818563,513147,134348 +k1,3683:9041982,28510297:158737 +k1,3683:10581564,28510297:158738 +k1,3683:11271798,28510297:158737 +k1,3683:12659336,28510297:158738 +k1,3683:13837158,28510297:158737 +k1,3683:15597596,28510297:158738 +k1,3683:18495083,28510297:158737 +k1,3683:19746305,28510297:158737 +k1,3683:21445794,28510297:158738 +k1,3683:22894280,28510297:158737 +k1,3683:26457613,28510297:158738 +k1,3683:27607910,28510297:158737 +k1,3683:29306744,28510297:158738 +k1,3683:30274851,28510297:158737 +k1,3683:32583029,28510297:0 +) +(1,3684:6764466,29375377:25818563,513147,134348 +k1,3683:7616802,29375377:193044 +k1,3683:8941654,29375377:193045 +k1,3683:11296731,29375377:193044 +k1,3683:13218615,29375377:193044 +k1,3683:16392237,29375377:193045 +(1,3683:16392237,29375377:0,452978,122846 +r1,3733:18860774,29375377:2468537,575824,122846 +k1,3683:16392237,29375377:-2468537 +) +(1,3683:16392237,29375377:2468537,452978,122846 +k1,3683:16392237,29375377:3277 +h1,3683:18857497,29375377:0,411205,112570 +) +k1,3683:19227488,29375377:193044 +k1,3683:20611977,29375377:193044 +k1,3683:24013664,29375377:193044 +k1,3683:26217354,29375377:193045 +k1,3683:27514680,29375377:193044 +k1,3683:28455490,29375377:193044 +k1,3683:29970396,29375377:193045 +k1,3683:30822732,29375377:193044 +k1,3684:32583029,29375377:0 +) +(1,3684:6764466,30240457:25818563,505283,102891 +k1,3683:9120922,30240457:213429 +k1,3683:9962186,30240457:213429 +k1,3683:11194700,30240457:213429 +k1,3683:13649459,30240457:213428 +k1,3683:15054333,30240457:213429 +k1,3683:16849801,30240457:213429 +k1,3683:20579892,30240457:213429 +k1,3683:21409359,30240457:213429 +k1,3683:22641873,30240457:213429 +k1,3683:24239422,30240457:213429 +k1,3683:26597189,30240457:213429 +k1,3683:27678969,30240457:213428 +k1,3683:29422664,30240457:213429 +k1,3683:30287521,30240457:213429 +k1,3683:31593435,30240457:213429 +k1,3684:32583029,30240457:0 +) +(1,3684:6764466,31105537:25818563,513147,126483 +k1,3683:9436172,31105537:221315 +k1,3683:13511659,31105537:221315 +k1,3683:14384402,31105537:221315 +k1,3683:16059306,31105537:221315 +k1,3683:17299706,31105537:221315 +k1,3683:19786600,31105537:221314 +k1,3683:21747241,31105537:221315 +k1,3683:22627848,31105537:221315 +k1,3683:26450366,31105537:221315 +k1,3683:29306884,31105537:221315 +k1,3683:32583029,31105537:0 +) +(1,3684:6764466,31970617:25818563,505283,126483 +g1,3683:8155140,31970617 +g1,3683:9288912,31970617 +k1,3684:32583030,31970617:20043532 +g1,3684:32583030,31970617 +) +v1,3686:6764466,32655472:0,393216,0 +(1,3705:6764466,37042760:25818563,4780504,196608 +g1,3705:6764466,37042760 +g1,3705:6764466,37042760 +g1,3705:6567858,37042760 +(1,3705:6567858,37042760:0,4780504,196608 +r1,3733:32779637,37042760:26211779,4977112,196608 +k1,3705:6567857,37042760:-26211780 +) +(1,3705:6567858,37042760:26211779,4780504,196608 +[1,3705:6764466,37042760:25818563,4583896,0 +(1,3688:6764466,32883303:25818563,424439,9908 +(1,3687:6764466,32883303:0,0,0 +g1,3687:6764466,32883303 +g1,3687:6764466,32883303 +g1,3687:6436786,32883303 +(1,3687:6436786,32883303:0,0,0 +) +g1,3687:6764466,32883303 +) +g1,3688:7428374,32883303 +g1,3688:9088144,32883303 +h1,3688:10084006,32883303:0,0,0 +k1,3688:32583030,32883303:22499024 +g1,3688:32583030,32883303 +) +(1,3692:6764466,33699230:25818563,424439,79822 +(1,3690:6764466,33699230:0,0,0 +g1,3690:6764466,33699230 +g1,3690:6764466,33699230 +g1,3690:6436786,33699230 +(1,3690:6436786,33699230:0,0,0 +) +g1,3690:6764466,33699230 +) +g1,3692:7760328,33699230 +g1,3692:9088144,33699230 +h1,3692:10747914,33699230:0,0,0 +k1,3692:32583030,33699230:21835116 +g1,3692:32583030,33699230 +) +(1,3694:6764466,34515157:25818563,424439,79822 +(1,3693:6764466,34515157:0,0,0 +g1,3693:6764466,34515157 +g1,3693:6764466,34515157 +g1,3693:6436786,34515157 +(1,3693:6436786,34515157:0,0,0 +) +g1,3693:6764466,34515157 +) +g1,3694:7428374,34515157 +g1,3694:9088144,34515157 +g1,3694:11411822,34515157 +g1,3694:12075730,34515157 +h1,3694:14067454,34515157:0,0,0 +k1,3694:32583030,34515157:18515576 +g1,3694:32583030,34515157 +) +(1,3698:6764466,35331084:25818563,424439,79822 +(1,3696:6764466,35331084:0,0,0 +g1,3696:6764466,35331084 +g1,3696:6764466,35331084 +g1,3696:6436786,35331084 +(1,3696:6436786,35331084:0,0,0 +) +g1,3696:6764466,35331084 +) +g1,3698:7760328,35331084 +g1,3698:9088144,35331084 +h1,3698:10415960,35331084:0,0,0 +k1,3698:32583028,35331084:22167068 +g1,3698:32583028,35331084 +) +(1,3700:6764466,36147011:25818563,424439,86428 +(1,3699:6764466,36147011:0,0,0 +g1,3699:6764466,36147011 +g1,3699:6764466,36147011 +g1,3699:6436786,36147011 +(1,3699:6436786,36147011:0,0,0 +) +g1,3699:6764466,36147011 +) +k1,3700:6764466,36147011:0 +g1,3700:8424236,36147011 +g1,3700:9752052,36147011 +g1,3700:11411822,36147011 +g1,3700:13735500,36147011 +g1,3700:14399408,36147011 +h1,3700:16391132,36147011:0,0,0 +k1,3700:32583029,36147011:16191897 +g1,3700:32583029,36147011 +) +(1,3704:6764466,36962938:25818563,424439,79822 +(1,3702:6764466,36962938:0,0,0 +g1,3702:6764466,36962938 +g1,3702:6764466,36962938 +g1,3702:6436786,36962938 +(1,3702:6436786,36962938:0,0,0 +) +g1,3702:6764466,36962938 +) +g1,3704:7760328,36962938 +g1,3704:9088144,36962938 +g1,3704:11079868,36962938 +g1,3704:11411822,36962938 +h1,3704:12739638,36962938:0,0,0 +k1,3704:32583030,36962938:19843392 +g1,3704:32583030,36962938 +) +] +) +g1,3705:32583029,37042760 +g1,3705:6764466,37042760 +g1,3705:6764466,37042760 +g1,3705:32583029,37042760 +g1,3705:32583029,37042760 +) +h1,3705:6764466,37239368:0,0,0 +(1,3709:6764466,38104448:25818563,513147,134348 +h1,3708:6764466,38104448:983040,0,0 +k1,3708:9993054,38104448:257186 +k1,3708:11422024,38104448:257186 +k1,3708:12670771,38104448:257187 +k1,3708:13698660,38104448:257186 +k1,3708:17165144,38104448:257186 +k1,3708:21019601,38104448:257186 +k1,3708:21936080,38104448:257187 +k1,3708:23212351,38104448:257186 +k1,3708:25796720,38104448:257186 +k1,3708:26713198,38104448:257186 +k1,3708:28408900,38104448:257187 +k1,3708:29282124,38104448:257186 +k1,3708:29954095,38104448:257128 +k1,3708:31591469,38104448:257186 +k1,3708:32583029,38104448:0 +) +(1,3709:6764466,38969528:25818563,513147,134348 +k1,3708:10779202,38969528:205128 +k1,3708:11670491,38969528:205127 +k1,3708:14183797,38969528:205128 +k1,3708:15048217,38969528:205128 +k1,3708:16673509,38969528:205127 +k1,3708:19065573,38969528:205128 +k1,3708:21145031,38969528:205128 +k1,3708:23658336,38969528:205127 +k1,3708:24678732,38969528:205128 +k1,3708:27020333,38969528:205127 +k1,3708:27876889,38969528:205128 +k1,3708:28437877,38969528:205128 +k1,3708:30198173,38969528:205127 +k1,3708:31896867,38969528:205128 +k1,3709:32583029,38969528:0 +) +(1,3709:6764466,39834608:25818563,505283,126483 +(1,3708:6764466,39834608:0,452978,115847 +r1,3733:9233003,39834608:2468537,568825,115847 +k1,3708:6764466,39834608:-2468537 +) +(1,3708:6764466,39834608:2468537,452978,115847 +k1,3708:6764466,39834608:3277 +h1,3708:9229726,39834608:0,411205,112570 +) +k1,3708:9452237,39834608:219234 +k1,3708:10354355,39834608:219233 +(1,3708:10354355,39834608:0,452978,115847 +r1,3733:13526315,39834608:3171960,568825,115847 +k1,3708:10354355,39834608:-3171960 +) +(1,3708:10354355,39834608:3171960,452978,115847 +k1,3708:10354355,39834608:3277 +h1,3708:13523038,39834608:0,411205,112570 +) +k1,3708:13745549,39834608:219234 +k1,3708:15156227,39834608:219233 +k1,3708:16997477,39834608:219234 +k1,3708:17964476,39834608:219233 +k1,3708:21719377,39834608:219234 +k1,3708:23332561,39834608:219233 +k1,3708:25253765,39834608:219234 +k1,3708:28445711,39834608:219233 +k1,3708:29280983,39834608:219234 +k1,3708:30270919,39834608:219233 +k1,3709:32583029,39834608:0 +) +(1,3709:6764466,40699688:25818563,473825,7863 +k1,3709:32583029,40699688:24304026 +g1,3709:32583029,40699688 +) +] +g1,3733:32583029,40707551 +) +] +(1,3733:32583029,45706769:0,0,0 +g1,3733:32583029,45706769 +) +) +] +(1,3733:6630773,47279633:25952256,0,0 +h1,3733:6630773,47279633:25952256,0,0 +) +] +(1,3733:4262630,4025873:0,0,0 +[1,3733:-473656,4025873:0,0,0 +(1,3733:-473656,-710413:0,0,0 +(1,3733:-473656,-710413:0,0,0 +g1,3733:-473656,-710413 +) +g1,3733:-473656,-710413 +) +] +) +] +!24320 +}71 +Input:660:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:661:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:662:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:663:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:664:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:665:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!569 +{72 +[1,3803:4262630,47279633:28320399,43253760,0 +(1,3803:4262630,4025873:0,0,0 +[1,3803:-473656,4025873:0,0,0 +(1,3803:-473656,-710413:0,0,0 +(1,3803:-473656,-644877:0,0,0 +k1,3803:-473656,-644877:-65536 ) -k1,4481:12204530,44857418:217203 -k1,4481:12953231,44857418:217204 -k1,4481:13526295,44857418:217204 -k1,4481:15902255,44857418:217204 -k1,4481:18271005,44857418:217203 -k1,4481:19356561,44857418:217204 -k1,4481:20678047,44857418:217204 -k1,4481:21987735,44857418:217203 -k1,4481:23224024,44857418:217204 -k1,4481:25980093,44857418:217204 -k1,4481:28265613,44857418:217204 -k1,4481:29168978,44857418:217203 -k1,4481:31635378,44857418:217204 -k1,4481:32583029,44857418:0 +(1,3803:-473656,4736287:0,0,0 +k1,3803:-473656,4736287:5209943 ) -(1,4482:6797234,45698906:25785795,505283,7863 -g1,4481:9535328,45698906 -k1,4482:32583029,45698906:19659490 -g1,4482:32583029,45698906 +g1,3803:-473656,-710413 ) ] -g1,4525:32583029,45706769 ) -] -(1,4525:32583029,45706769:0,0,0 -g1,4525:32583029,45706769 +[1,3803:6630773,47279633:25952256,43253760,0 +[1,3803:6630773,4812305:25952256,786432,0 +(1,3803:6630773,4812305:25952256,513147,134348 +(1,3803:6630773,4812305:25952256,513147,134348 +g1,3803:3078558,4812305 +[1,3803:3078558,4812305:0,0,0 +(1,3803:3078558,2439708:0,1703936,0 +k1,3803:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,3803:2537886,2439708:1179648,16384,0 ) +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,3803:3078558,1915420:16384,1179648,0 ) -] -(1,4525:6630773,47279633:25952256,0,0 -h1,4525:6630773,47279633:25952256,0,0 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) ] -(1,4525:4262630,4025873:0,0,0 -[1,4525:-473656,4025873:0,0,0 -(1,4525:-473656,-710413:0,0,0 -(1,4525:-473656,-710413:0,0,0 -g1,4525:-473656,-710413 ) -g1,4525:-473656,-710413 ) -] ) ] -!31070 -}83 -Input:736:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!104 -{84 -[1,4580:4262630,47279633:28320399,43253760,0 -(1,4580:4262630,4025873:0,0,0 -[1,4580:-473656,4025873:0,0,0 -(1,4580:-473656,-710413:0,0,0 -(1,4580:-473656,-644877:0,0,0 -k1,4580:-473656,-644877:-65536 -) -(1,4580:-473656,4736287:0,0,0 -k1,4580:-473656,4736287:5209943 +[1,3803:3078558,4812305:0,0,0 +(1,3803:3078558,2439708:0,1703936,0 +g1,3803:29030814,2439708 +g1,3803:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,3803:36151628,1915420:16384,1179648,0 ) -g1,4580:-473656,-710413 +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) ] ) -[1,4580:6630773,47279633:25952256,43253760,0 -[1,4580:6630773,4812305:25952256,786432,0 -(1,4580:6630773,4812305:25952256,505283,126483 -(1,4580:6630773,4812305:25952256,505283,126483 -g1,4580:3078558,4812305 -[1,4580:3078558,4812305:0,0,0 -(1,4580:3078558,2439708:0,1703936,0 -k1,4580:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,4580:2537886,2439708:1179648,16384,0 +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,3803:37855564,2439708:1179648,16384,0 ) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,4580:3078558,1915420:16384,1179648,0 ) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 +k1,3803:3078556,2439708:-34777008 ) ] +[1,3803:3078558,4812305:0,0,0 +(1,3803:3078558,49800853:0,16384,2228224 +k1,3803:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,3803:2537886,49800853:1179648,16384,0 ) +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,3803:3078558,51504789:16384,1179648,0 ) +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) ] -[1,4580:3078558,4812305:0,0,0 -(1,4580:3078558,2439708:0,1703936,0 -g1,4580:29030814,2439708 -g1,4580:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,4580:36151628,1915420:16384,1179648,0 -) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 -) -] -) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,4580:37855564,2439708:1179648,16384,0 ) ) -k1,4580:3078556,2439708:-34777008 ) ] -[1,4580:3078558,4812305:0,0,0 -(1,4580:3078558,49800853:0,16384,2228224 -k1,4580:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,4580:2537886,49800853:1179648,16384,0 +[1,3803:3078558,4812305:0,0,0 +(1,3803:3078558,49800853:0,16384,2228224 +g1,3803:29030814,49800853 +g1,3803:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,3803:36151628,51504789:16384,1179648,0 ) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,4580:3078558,51504789:16384,1179648,0 -) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 ) ] ) +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,3803:37855564,49800853:1179648,16384,0 +) ) +k1,3803:3078556,49800853:-34777008 ) ] -[1,4580:3078558,4812305:0,0,0 -(1,4580:3078558,49800853:0,16384,2228224 -g1,4580:29030814,49800853 -g1,4580:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,4580:36151628,51504789:16384,1179648,0 +g1,3803:6630773,4812305 +g1,3803:6630773,4812305 +g1,3803:8017514,4812305 +g1,3803:10287681,4812305 +g1,3803:11697360,4812305 +g1,3803:13727665,4812305 +g1,3803:14542932,4812305 +g1,3803:16904194,4812305 +k1,3803:31786111,4812305:14881917 ) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 ) ] +[1,3803:6630773,45706769:25952256,40108032,0 +(1,3803:6630773,45706769:25952256,40108032,0 +(1,3803:6630773,45706769:0,0,0 +g1,3803:6630773,45706769 ) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,4580:37855564,49800853:1179648,16384,0 +[1,3803:6630773,45706769:25952256,40108032,0 +v1,3733:6630773,6254097:0,393216,0 +(1,3733:6630773,10837993:25952256,4977112,0 +g1,3733:6630773,10837993 +g1,3733:6237557,10837993 +r1,3803:6368629,10837993:131072,4977112,0 +g1,3733:6567858,10837993 +g1,3733:6764466,10837993 +[1,3733:6764466,10837993:25818563,4977112,0 +v1,3711:6764466,6254097:0,393216,0 +(1,3730:6764466,10641385:25818563,4780504,196608 +g1,3730:6764466,10641385 +g1,3730:6764466,10641385 +g1,3730:6567858,10641385 +(1,3730:6567858,10641385:0,4780504,196608 +r1,3803:32779637,10641385:26211779,4977112,196608 +k1,3730:6567857,10641385:-26211780 +) +(1,3730:6567858,10641385:26211779,4780504,196608 +[1,3730:6764466,10641385:25818563,4583896,0 +(1,3713:6764466,6481928:25818563,424439,106246 +(1,3712:6764466,6481928:0,0,0 +g1,3712:6764466,6481928 +g1,3712:6764466,6481928 +g1,3712:6436786,6481928 +(1,3712:6436786,6481928:0,0,0 ) +g1,3712:6764466,6481928 +) +k1,3713:6764466,6481928:0 +g1,3713:9420098,6481928 +g1,3713:11411822,6481928 +g1,3713:13071592,6481928 +k1,3713:13071592,6481928:0 +h1,3713:16723085,6481928:0,0,0 +k1,3713:32583029,6481928:15859944 +g1,3713:32583029,6481928 +) +(1,3717:6764466,7297855:25818563,424439,79822 +(1,3715:6764466,7297855:0,0,0 +g1,3715:6764466,7297855 +g1,3715:6764466,7297855 +g1,3715:6436786,7297855 +(1,3715:6436786,7297855:0,0,0 +) +g1,3715:6764466,7297855 +) +g1,3717:7760328,7297855 +g1,3717:9088144,7297855 +g1,3717:11079868,7297855 +h1,3717:12739638,7297855:0,0,0 +k1,3717:32583030,7297855:19843392 +g1,3717:32583030,7297855 +) +(1,3719:6764466,8113782:25818563,424439,86428 +(1,3718:6764466,8113782:0,0,0 +g1,3718:6764466,8113782 +g1,3718:6764466,8113782 +g1,3718:6436786,8113782 +(1,3718:6436786,8113782:0,0,0 +) +g1,3718:6764466,8113782 +) +k1,3719:6764466,8113782:0 +g1,3719:10747913,8113782 +g1,3719:12407683,8113782 +g1,3719:14731361,8113782 +g1,3719:16391131,8113782 +h1,3719:17718947,8113782:0,0,0 +k1,3719:32583029,8113782:14864082 +g1,3719:32583029,8113782 +) +(1,3723:6764466,8929709:25818563,424439,112852 +(1,3721:6764466,8929709:0,0,0 +g1,3721:6764466,8929709 +g1,3721:6764466,8929709 +g1,3721:6436786,8929709 +(1,3721:6436786,8929709:0,0,0 +) +g1,3721:6764466,8929709 +) +g1,3723:7760328,8929709 +h1,3723:11079867,8929709:0,0,0 +k1,3723:32583029,8929709:21503162 +g1,3723:32583029,8929709 +) +(1,3725:6764466,9745636:25818563,424439,86428 +(1,3724:6764466,9745636:0,0,0 +g1,3724:6764466,9745636 +g1,3724:6764466,9745636 +g1,3724:6436786,9745636 +(1,3724:6436786,9745636:0,0,0 +) +g1,3724:6764466,9745636 +) +k1,3725:6764466,9745636:0 +g1,3725:10747914,9745636 +k1,3725:10747914,9745636:0 +h1,3725:14731361,9745636:0,0,0 +k1,3725:32583029,9745636:17851668 +g1,3725:32583029,9745636 +) +(1,3729:6764466,10561563:25818563,424439,79822 +(1,3727:6764466,10561563:0,0,0 +g1,3727:6764466,10561563 +g1,3727:6764466,10561563 +g1,3727:6436786,10561563 +(1,3727:6436786,10561563:0,0,0 +) +g1,3727:6764466,10561563 +) +g1,3729:7760328,10561563 +g1,3729:9088144,10561563 +h1,3729:10415960,10561563:0,0,0 +k1,3729:32583028,10561563:22167068 +g1,3729:32583028,10561563 +) +] +) +g1,3730:32583029,10641385 +g1,3730:6764466,10641385 +g1,3730:6764466,10641385 +g1,3730:32583029,10641385 +g1,3730:32583029,10641385 +) +h1,3730:6764466,10837993:0,0,0 +] +g1,3733:32583029,10837993 +) +h1,3733:6630773,10837993:0,0,0 +v1,3736:6630773,11703073:0,393216,0 +(1,3755:6630773,16566227:25952256,5256370,0 +g1,3755:6630773,16566227 +g1,3755:6237557,16566227 +r1,3803:6368629,16566227:131072,5256370,0 +g1,3755:6567858,16566227 +g1,3755:6764466,16566227 +[1,3755:6764466,16566227:25818563,5256370,0 +(1,3737:6764466,12064250:25818563,754393,260573 +(1,3736:6764466,12064250:0,754393,260573 +r1,3803:8010564,12064250:1246098,1014966,260573 +k1,3736:6764466,12064250:-1246098 +) +(1,3736:6764466,12064250:1246098,754393,260573 +) +k1,3736:8239876,12064250:229312 +k1,3736:8567556,12064250:327680 +k1,3736:11759750,12064250:229311 +k1,3736:12923605,12064250:229312 +k1,3736:16229831,12064250:229311 +k1,3736:17450703,12064250:229312 +k1,3736:20061592,12064250:229311 +k1,3736:21238555,12064250:229312 +(1,3736:21238555,12064250:0,452978,115847 +r1,3803:23707092,12064250:2468537,568825,115847 +k1,3736:21238555,12064250:-2468537 +) +(1,3736:21238555,12064250:2468537,452978,115847 +k1,3736:21238555,12064250:3277 +h1,3736:23703815,12064250:0,411205,112570 +) +k1,3736:23936403,12064250:229311 +k1,3736:26647563,12064250:229312 +k1,3736:29800435,12064250:229311 +k1,3736:31966991,12064250:229312 +k1,3736:32583029,12064250:0 +) +(1,3737:6764466,12929330:25818563,513147,134348 +g1,3736:9083129,12929330 +g1,3736:10386640,12929330 +g1,3736:12428741,12929330 +g1,3736:13244008,12929330 +g1,3736:17111942,12929330 +g1,3736:19484345,12929330 +g1,3736:20915651,12929330 +g1,3736:23393567,12929330 +h1,3736:24364155,12929330:0,0,0 +g1,3736:24563384,12929330 +g1,3736:25571983,12929330 +g1,3736:27269365,12929330 +h1,3736:28066283,12929330:0,0,0 +k1,3737:32583029,12929330:4135982 +g1,3737:32583029,12929330 +) +v1,3739:6764466,13614185:0,393216,0 +(1,3752:6764466,16369619:25818563,3148650,196608 +g1,3752:6764466,16369619 +g1,3752:6764466,16369619 +g1,3752:6567858,16369619 +(1,3752:6567858,16369619:0,3148650,196608 +r1,3803:32779637,16369619:26211779,3345258,196608 +k1,3752:6567857,16369619:-26211780 +) +(1,3752:6567858,16369619:26211779,3148650,196608 +[1,3752:6764466,16369619:25818563,2952042,0 +(1,3741:6764466,13842016:25818563,424439,106246 +(1,3740:6764466,13842016:0,0,0 +g1,3740:6764466,13842016 +g1,3740:6764466,13842016 +g1,3740:6436786,13842016 +(1,3740:6436786,13842016:0,0,0 +) +g1,3740:6764466,13842016 +) +k1,3741:6764466,13842016:0 +g1,3741:10415960,13842016 +g1,3741:13403546,13842016 +g1,3741:15063316,13842016 +g1,3741:16723086,13842016 +k1,3741:16723086,13842016:0 +h1,3741:17718948,13842016:0,0,0 +k1,3741:32583029,13842016:14864081 +g1,3741:32583029,13842016 +) +(1,3745:6764466,14657943:25818563,424439,79822 +(1,3743:6764466,14657943:0,0,0 +g1,3743:6764466,14657943 +g1,3743:6764466,14657943 +g1,3743:6436786,14657943 +(1,3743:6436786,14657943:0,0,0 +) +g1,3743:6764466,14657943 +) +g1,3745:7760328,14657943 +g1,3745:9088144,14657943 +g1,3745:9420098,14657943 +g1,3745:11079868,14657943 +h1,3745:12739638,14657943:0,0,0 +k1,3745:32583030,14657943:19843392 +g1,3745:32583030,14657943 +) +(1,3747:6764466,15473870:25818563,424439,106246 +(1,3746:6764466,15473870:0,0,0 +g1,3746:6764466,15473870 +g1,3746:6764466,15473870 +g1,3746:6436786,15473870 +(1,3746:6436786,15473870:0,0,0 +) +g1,3746:6764466,15473870 +) +k1,3747:6764466,15473870:0 +g1,3747:10415960,15473870 +k1,3747:10415960,15473870:0 +h1,3747:13071592,15473870:0,0,0 +k1,3747:32583028,15473870:19511436 +g1,3747:32583028,15473870 +) +(1,3751:6764466,16289797:25818563,424439,79822 +(1,3749:6764466,16289797:0,0,0 +g1,3749:6764466,16289797 +g1,3749:6764466,16289797 +g1,3749:6436786,16289797 +(1,3749:6436786,16289797:0,0,0 +) +g1,3749:6764466,16289797 +) +g1,3751:7760328,16289797 +g1,3751:9088144,16289797 +g1,3751:13735499,16289797 +g1,3751:14067453,16289797 +k1,3751:14067453,16289797:0 +h1,3751:18050900,16289797:0,0,0 +k1,3751:32583029,16289797:14532129 +g1,3751:32583029,16289797 +) +] +) +g1,3752:32583029,16369619 +g1,3752:6764466,16369619 +g1,3752:6764466,16369619 +g1,3752:32583029,16369619 +g1,3752:32583029,16369619 +) +h1,3752:6764466,16566227:0,0,0 +] +g1,3755:32583029,16566227 +) +h1,3755:6630773,16566227:0,0,0 +v1,3758:6630773,17431307:0,393216,0 +(1,3759:6630773,21334273:25952256,4296182,0 +g1,3759:6630773,21334273 +g1,3759:6237557,21334273 +r1,3803:6368629,21334273:131072,4296182,0 +g1,3759:6567858,21334273 +g1,3759:6764466,21334273 +[1,3759:6764466,21334273:25818563,4296182,0 +(1,3759:6764466,17739605:25818563,701514,196608 +(1,3758:6764466,17739605:0,701514,196608 +r1,3803:8863446,17739605:2098980,898122,196608 +k1,3758:6764466,17739605:-2098980 +) +(1,3758:6764466,17739605:2098980,701514,196608 +) +k1,3758:9095920,17739605:232474 +k1,3758:10822138,17739605:327680 +k1,3758:11682447,17739605:232474 +k1,3758:12934006,17739605:232474 +k1,3758:15493664,17739605:232475 +k1,3758:16385430,17739605:232474 +k1,3758:17882749,17739605:232474 +k1,3758:20804821,17739605:232474 +$1,3758:20804821,17739605 +k1,3758:21565376,17739605:242821 +k1,3758:22376393,17739605:242820 +$1,3758:22824659,17739605 +k1,3758:23230803,17739605:232474 +k1,3758:25382171,17739605:232474 +$1,3758:25382171,17739605 +$1,3758:25899905,17739605 +k1,3758:26132379,17739605:232474 +k1,3758:27556299,17739605:232475 +$1,3758:27556299,17739605 +$1,3758:28004565,17739605 +k1,3758:28237039,17739605:232474 +k1,3758:29461073,17739605:232474 +k1,3758:31132062,17739605:232474 +k1,3759:32583029,17739605:0 +) +(1,3759:6764466,18604685:25818563,505283,126483 +k1,3758:8640105,18604685:251657 +k1,3758:10176269,18604685:251658 +$1,3758:10176269,18604685 +$1,3758:10694003,18604685 +k1,3758:10945660,18604685:251657 +k1,3758:11728815,18604685:251658 +k1,3758:12336332,18604685:251657 +k1,3758:14668102,18604685:251657 +k1,3758:15602645,18604685:251658 +k1,3758:17581831,18604685:251657 +k1,3758:18484917,18604685:251658 +$1,3758:18484917,18604685 +$1,3758:18933183,18604685 +k1,3758:19358510,18604685:251657 +k1,3758:20652190,18604685:251658 +k1,3758:21259707,18604685:251657 +k1,3758:22818807,18604685:251657 +k1,3758:25324248,18604685:251658 +k1,3758:26594990,18604685:251657 +k1,3758:29536246,18604685:251658 +k1,3758:30319400,18604685:251657 +$1,3758:30319400,18604685 +k1,3758:31115015,18604685:277881 +k1,3758:31961093,18604685:277881 +$1,3758:32409359,18604685 +k1,3758:32583029,18604685:0 +) +(1,3759:6764466,19469765:25818563,513147,126483 +k1,3758:8138503,19469765:177350 +k1,3758:11392769,19469765:177351 +k1,3758:12964070,19469765:177350 +k1,3758:14160506,19469765:177351 +k1,3758:16644068,19469765:177350 +k1,3758:19680099,19469765:177351 +k1,3758:20849009,19469765:177350 +$1,3758:20849009,19469765 +$1,3758:21417206,19469765 +k1,3758:21594557,19469765:177351 +k1,3758:22963352,19469765:177350 +$1,3758:22963352,19469765 +$1,3758:23531549,19469765 +k1,3758:23882570,19469765:177351 +k1,3758:27505148,19469765:177350 +k1,3758:29379226,19469765:177351 +k1,3758:30919070,19469765:177350 +k1,3759:32583029,19469765:0 +) +(1,3759:6764466,20334845:25818563,513147,126483 +k1,3758:8902580,20334845:184486 +k1,3758:9703104,20334845:184486 +k1,3758:11250083,20334845:184485 +k1,3758:11849398,20334845:184472 +k1,3758:15724215,20334845:184485 +k1,3758:17100146,20334845:184486 +k1,3758:18476077,20334845:184486 +k1,3758:20299618,20334845:184486 +k1,3758:21293474,20334845:184486 +k1,3758:22742804,20334845:184485 +k1,3758:26943992,20334845:184486 +k1,3758:27890006,20334845:184486 +k1,3758:28489320,20334845:184471 +k1,3758:31189078,20334845:184486 +k1,3758:32583029,20334845:0 +) +(1,3759:6764466,21199925:25818563,513147,134348 +g1,3758:9726038,21199925 +g1,3758:12894703,21199925 +g1,3758:15253343,21199925 +g1,3758:16387115,21199925 +k1,3759:32583029,21199925:13068536 +g1,3759:32583029,21199925 +) +] +g1,3759:32583029,21334273 +) +h1,3759:6630773,21334273:0,0,0 +v1,3764:6630773,22199353:0,393216,0 +(1,3772:6630773,23729797:25952256,1923660,0 +g1,3772:6630773,23729797 +g1,3772:6237557,23729797 +r1,3803:6368629,23729797:131072,1923660,0 +g1,3772:6567858,23729797 +g1,3772:6764466,23729797 +[1,3772:6764466,23729797:25818563,1923660,0 +(1,3766:6764466,22507651:25818563,701514,196608 +(1,3764:6764466,22507651:0,701514,196608 +r1,3803:8010564,22507651:1246098,898122,196608 +k1,3764:6764466,22507651:-1246098 +) +(1,3764:6764466,22507651:1246098,701514,196608 +) +g1,3764:8209793,22507651 +g1,3764:8537473,22507651 +g1,3764:9933389,22507651 +g1,3764:11628805,22507651 +g1,3764:13696465,22507651 +g1,3764:16580704,22507651 +g1,3764:17546049,22507651 +g1,3764:20035106,22507651 +g1,3764:21628286,22507651 +g1,3764:23895831,22507651 +(1,3764:23895831,22507651:0,452978,115847 +r1,3803:26012656,22507651:2116825,568825,115847 +k1,3764:23895831,22507651:-2116825 +) +(1,3764:23895831,22507651:2116825,452978,115847 +k1,3764:23895831,22507651:3277 +h1,3764:26009379,22507651:0,411205,112570 +) +g1,3764:26385555,22507651 +(1,3764:26385555,22507651:0,452978,115847 +r1,3803:28502380,22507651:2116825,568825,115847 +k1,3764:26385555,22507651:-2116825 +) +(1,3764:26385555,22507651:2116825,452978,115847 +k1,3764:26385555,22507651:3277 +h1,3764:28499103,22507651:0,411205,112570 +) +g1,3764:28875279,22507651 +g1,3764:30265953,22507651 +g1,3764:31190010,22507651 +g1,3764:32372279,22507651 +k1,3766:32583029,22507651:210750 +g1,3766:32583029,22507651 +) +v1,3766:6764466,23192506:0,393216,0 +(1,3770:6764466,23533189:25818563,733899,196608 +g1,3770:6764466,23533189 +g1,3770:6764466,23533189 +g1,3770:6567858,23533189 +(1,3770:6567858,23533189:0,733899,196608 +r1,3803:32779637,23533189:26211779,930507,196608 +k1,3770:6567857,23533189:-26211780 +) +(1,3770:6567858,23533189:26211779,733899,196608 +[1,3770:6764466,23533189:25818563,537291,0 +(1,3768:6764466,23420337:25818563,424439,112852 +(1,3767:6764466,23420337:0,0,0 +g1,3767:6764466,23420337 +g1,3767:6764466,23420337 +g1,3767:6436786,23420337 +(1,3767:6436786,23420337:0,0,0 +) +g1,3767:6764466,23420337 +) +k1,3768:6764466,23420337:0 +g1,3768:10747914,23420337 +g1,3768:11411822,23420337 +g1,3768:15063316,23420337 +g1,3768:15727224,23420337 +h1,3768:22366303,23420337:0,0,0 +k1,3768:32583029,23420337:10216726 +g1,3768:32583029,23420337 +) +] +) +g1,3770:32583029,23533189 +g1,3770:6764466,23533189 +g1,3770:6764466,23533189 +g1,3770:32583029,23533189 +g1,3770:32583029,23533189 +) +h1,3770:6764466,23729797:0,0,0 +] +g1,3772:32583029,23729797 +) +h1,3772:6630773,23729797:0,0,0 +(1,3774:6630773,26560957:25952256,32768,229376 +(1,3774:6630773,26560957:0,32768,229376 +(1,3774:6630773,26560957:5505024,32768,229376 +r1,3803:12135797,26560957:5505024,262144,229376 +) +k1,3774:6630773,26560957:-5505024 +) +(1,3774:6630773,26560957:25952256,32768,0 +r1,3803:32583029,26560957:25952256,32768,0 +) +) +(1,3774:6630773,28192809:25952256,615776,161218 +(1,3774:6630773,28192809:1974731,582746,14155 +g1,3774:6630773,28192809 +g1,3774:8605504,28192809 +) +g1,3774:10368685,28192809 +g1,3774:13231298,28192809 +g1,3774:14941001,28192809 +g1,3774:17545664,28192809 +g1,3774:18603415,28192809 +k1,3774:32583029,28192809:11126439 +g1,3774:32583029,28192809 +) +(1,3777:6630773,29451105:25952256,513147,134348 +k1,3776:9249592,29451105:264110 +k1,3776:10505262,29451105:264110 +k1,3776:14862095,29451105:264110 +k1,3776:16506393,29451105:264110 +k1,3776:20014535,29451105:264110 +k1,3776:21297729,29451105:264109 +k1,3776:24890413,29451105:264110 +k1,3776:26345968,29451105:264110 +k1,3776:29369799,29451105:264110 +k1,3776:30293201,29451105:264110 +k1,3776:32583029,29451105:0 +) +(1,3777:6630773,30316185:25952256,513147,134348 +k1,3776:9900758,30316185:143262 +k1,3776:10695447,30316185:143261 +k1,3776:12651435,30316185:143262 +k1,3776:14155223,30316185:143261 +k1,3776:16531297,30316185:143262 +k1,3776:17778841,30316185:143262 +k1,3776:18669868,30316185:143261 +k1,3776:21194708,30316185:143262 +k1,3776:21954007,30316185:143261 +k1,3776:23478113,30316185:143262 +k1,3776:25117562,30316185:143262 +k1,3776:25946985,30316185:143261 +k1,3776:27368854,30316185:143262 +k1,3776:28198277,30316185:143261 +k1,3776:29624734,30316185:143262 +k1,3776:32583029,30316185:0 +) +(1,3777:6630773,31181265:25952256,513147,134348 +k1,3776:7935115,31181265:234794 +k1,3776:11195705,31181265:234793 +k1,3776:12113384,31181265:234794 +k1,3776:15425092,31181265:234793 +k1,3776:18129938,31181265:234794 +k1,3776:19016159,31181265:234793 +k1,3776:19938426,31181265:234794 +k1,3776:21985945,31181265:234793 +k1,3776:23417426,31181265:234794 +k1,3776:25158892,31181265:234793 +k1,3776:25925183,31181265:234794 +k1,3776:27306201,31181265:234793 +k1,3776:27896855,31181265:234794 +k1,3776:29718930,31181265:234793 +k1,3776:31238230,31181265:234794 +k1,3776:32583029,31181265:0 +) +(1,3777:6630773,32046345:25952256,505283,134348 +g1,3776:8160383,32046345 +g1,3776:9378697,32046345 +g1,3776:11258269,32046345 +g1,3776:12073536,32046345 +g1,3776:13043468,32046345 +g1,3776:15202223,32046345 +g1,3776:17581835,32046345 +g1,3776:18528830,32046345 +g1,3776:22318121,32046345 +g1,3776:23708795,32046345 +g1,3776:26739835,32046345 +k1,3777:32583029,32046345:4024570 +g1,3777:32583029,32046345 +) +(1,3779:6630773,32911425:25952256,505283,134348 +h1,3778:6630773,32911425:983040,0,0 +k1,3778:10691586,32911425:135206 +k1,3778:13102201,32911425:135205 +k1,3778:14932168,32911425:135206 +k1,3778:15718802,32911425:135206 +k1,3778:18350929,32911425:135205 +k1,3778:19961350,32911425:135206 +k1,3778:20452416,32911425:135206 +k1,3778:22094295,32911425:135206 +k1,3778:23514006,32911425:135205 +k1,3778:26351261,32911425:135206 +k1,3778:27295837,32911425:135206 +k1,3778:28450127,32911425:135205 +k1,3778:30544859,32911425:135206 +k1,3778:32583029,32911425:0 +) +(1,3779:6630773,33776505:25952256,505283,134348 +k1,3778:7426568,33776505:179757 +k1,3778:9419051,33776505:179757 +k1,3778:10226644,33776505:179758 +k1,3778:13037672,33776505:179757 +k1,3778:13868857,33776505:179757 +k1,3778:15740754,33776505:179757 +k1,3778:17622481,33776505:179757 +k1,3778:20974836,33776505:179757 +k1,3778:21770632,33776505:179758 +k1,3778:22365212,33776505:179737 +k1,3778:26190737,33776505:179757 +k1,3778:27021923,33776505:179758 +k1,3778:27557540,33776505:179757 +k1,3778:30248637,33776505:179757 +k1,3778:32583029,33776505:0 +) +(1,3779:6630773,34641585:25952256,513147,134348 +k1,3778:7501173,34641585:254362 +k1,3778:8848019,34641585:254361 +k1,3778:9753809,34641585:254362 +k1,3778:11625600,34641585:254362 +k1,3778:12650664,34641585:254361 +k1,3778:14864552,34641585:254362 +k1,3778:18245636,34641585:254361 +k1,3778:19151426,34641585:254362 +k1,3778:19761648,34641585:254362 +k1,3778:22778352,34641585:254361 +k1,3778:24587883,34641585:254362 +k1,3778:25373742,34641585:254362 +k1,3778:28251509,34641585:254361 +k1,3778:30338258,34641585:254362 +k1,3778:31124116,34641585:254361 +k1,3778:31734338,34641585:254362 +k1,3779:32583029,34641585:0 +) +(1,3779:6630773,35506665:25952256,513147,126483 +k1,3778:9518814,35506665:210240 +k1,3778:11013559,35506665:210239 +k1,3778:11989915,35506665:210240 +k1,3778:15069320,35506665:210239 +k1,3778:15895598,35506665:210240 +k1,3778:16461697,35506665:210239 +k1,3778:18823484,35506665:210240 +k1,3778:20683264,35506665:210239 +k1,3778:21576389,35506665:210240 +k1,3778:24047620,35506665:210239 +k1,3778:25879876,35506665:210240 +k1,3778:26837881,35506665:210239 +k1,3778:27707413,35506665:210240 +k1,3778:28936737,35506665:210239 +k1,3778:30800450,35506665:210240 +k1,3778:32583029,35506665:0 +) +(1,3779:6630773,36371745:25952256,505283,134348 +k1,3778:8768140,36371745:233546 +k1,3778:9993247,36371745:233547 +k1,3778:12094569,36371745:233546 +k1,3778:14663818,36371745:233546 +k1,3778:15583527,36371745:233547 +k1,3778:17197261,36371745:233546 +k1,3778:19802556,36371745:233547 +k1,3778:24483375,36371745:233546 +k1,3778:28051393,36371745:233546 +k1,3778:29768675,36371745:233547 +k1,3778:31193666,36371745:233546 +k1,3778:32583029,36371745:0 +) +(1,3779:6630773,37236825:25952256,513147,134348 +k1,3778:9039070,37236825:201700 +k1,3778:10345051,37236825:201699 +k1,3778:11294517,37236825:201700 +k1,3778:15821592,37236825:201699 +k1,3778:16881814,37236825:201700 +k1,3778:17831279,37236825:201699 +k1,3778:21123002,37236825:201700 +k1,3778:21940739,37236825:201699 +k1,3778:24560062,37236825:201700 +h1,3778:24958521,37236825:0,0,0 +k1,3778:25540984,37236825:201699 +k1,3778:26370519,37236825:201700 +k1,3778:29109772,37236825:201699 +k1,3778:30514713,37236825:201700 +k1,3778:32583029,37236825:0 +) +(1,3779:6630773,38101905:25952256,513147,134348 +k1,3778:8169954,38101905:254675 +k1,3778:9292981,38101905:254675 +k1,3778:10651938,38101905:254675 +k1,3778:12913325,38101905:254675 +k1,3778:13938703,38101905:254675 +k1,3778:16326575,38101905:254675 +k1,3778:18074816,38101905:254675 +k1,3778:19015653,38101905:254675 +k1,3778:19626187,38101905:254674 +k1,3778:22032409,38101905:254675 +k1,3778:23681035,38101905:254675 +k1,3778:24291570,38101905:254675 +k1,3778:27308588,38101905:254675 +(1,3778:27308588,38101905:0,452978,115847 +r1,3803:29073701,38101905:1765113,568825,115847 +k1,3778:27308588,38101905:-1765113 +) +(1,3778:27308588,38101905:1765113,452978,115847 +k1,3778:27308588,38101905:3277 +h1,3778:29070424,38101905:0,411205,112570 +) +k1,3778:29328376,38101905:254675 +k1,3778:30234479,38101905:254675 +k1,3778:30845014,38101905:254675 +k1,3778:32583029,38101905:0 +) +(1,3779:6630773,38966985:25952256,513147,134348 +k1,3778:9154783,38966985:189618 +k1,3778:9960438,38966985:189617 +k1,3778:11416212,38966985:189618 +k1,3778:12677998,38966985:189617 +k1,3778:13735968,38966985:189618 +k1,3778:16096138,38966985:189618 +k1,3778:17378240,38966985:189617 +k1,3778:20307263,38966985:189618 +k1,3778:21148308,38966985:189617 +k1,3778:23344638,38966985:189618 +k1,3778:24304959,38966985:189618 +k1,3778:26454102,38966985:189617 +k1,3778:27303012,38966985:189618 +k1,3778:27848489,38966985:189617 +k1,3778:30800450,38966985:189618 +k1,3778:32583029,38966985:0 +) +(1,3779:6630773,39832065:25952256,513147,126483 +g1,3778:7481430,39832065 +g1,3778:10873573,39832065 +g1,3778:14026510,39832065 +g1,3778:14885031,39832065 +g1,3778:15440120,39832065 +g1,3778:17790896,39832065 +g1,3778:20077447,39832065 +g1,3778:20959561,39832065 +k1,3779:32583029,39832065:9800256 +g1,3779:32583029,39832065 +) +(1,3781:6630773,40697145:25952256,513147,134348 +h1,3780:6630773,40697145:983040,0,0 +k1,3780:10834870,40697145:431189 +(1,3780:10834870,40697145:0,452978,115847 +r1,3803:13303407,40697145:2468537,568825,115847 +k1,3780:10834870,40697145:-2468537 +) +(1,3780:10834870,40697145:2468537,452978,115847 +k1,3780:10834870,40697145:3277 +h1,3780:13300130,40697145:0,411205,112570 +) +k1,3780:13734596,40697145:431189 +k1,3780:14697282,40697145:431189 +k1,3780:16641698,40697145:431190 +k1,3780:17724315,40697145:431189 +k1,3780:19971507,40697145:431189 +k1,3780:21421781,40697145:431189 +k1,3780:23408139,40697145:431189 +k1,3780:24498620,40697145:431189 +k1,3780:25700513,40697145:431190 +k1,3780:28264899,40697145:431189 +k1,3780:29887533,40697145:431189 +k1,3781:32583029,40697145:0 +) +(1,3781:6630773,41562225:25952256,513147,134348 +(1,3780:6630773,41562225:0,452978,115847 +r1,3803:10154445,41562225:3523672,568825,115847 +k1,3780:6630773,41562225:-3523672 +) +(1,3780:6630773,41562225:3523672,452978,115847 +k1,3780:6630773,41562225:3277 +h1,3780:10151168,41562225:0,411205,112570 +) +k1,3780:10405024,41562225:250579 +k1,3780:11187101,41562225:250580 +k1,3780:12950906,41562225:250579 +k1,3780:13852913,41562225:250579 +k1,3780:15294937,41562225:250579 +k1,3780:16011478,41562225:250580 +k1,3780:17032760,41562225:250579 +k1,3780:19242865,41562225:250579 +k1,3780:21960219,41562225:250579 +k1,3780:22862227,41562225:250580 +k1,3780:23468666,41562225:250579 +k1,3780:26116552,41562225:250579 +k1,3780:27922300,41562225:250579 +k1,3780:28855765,41562225:250580 +k1,3780:30172615,41562225:250579 +k1,3781:32583029,41562225:0 +) +(1,3781:6630773,42427305:25952256,505283,134348 +g1,3780:7820251,42427305 +g1,3780:10703835,42427305 +g1,3780:13309546,42427305 +g1,3780:14160203,42427305 +g1,3780:15107198,42427305 +g1,3780:16760016,42427305 +k1,3781:32583029,42427305:12352226 +g1,3781:32583029,42427305 +) +v1,3783:6630773,43112160:0,393216,0 +(1,3803:6630773,45510161:25952256,2791217,196608 +g1,3803:6630773,45510161 +g1,3803:6630773,45510161 +g1,3803:6434165,45510161 +(1,3803:6434165,45510161:0,2791217,196608 +r1,3803:32779637,45510161:26345472,2987825,196608 +k1,3803:6434165,45510161:-26345472 +) +(1,3803:6434165,45510161:26345472,2791217,196608 +[1,3803:6630773,45510161:25952256,2594609,0 +(1,3785:6630773,43323475:25952256,407923,9908 +(1,3784:6630773,43323475:0,0,0 +g1,3784:6630773,43323475 +g1,3784:6630773,43323475 +g1,3784:6303093,43323475 +(1,3784:6303093,43323475:0,0,0 +) +g1,3784:6630773,43323475 +) +g1,3785:8290543,43323475 +g1,3785:9286405,43323475 +h1,3785:10282267,43323475:0,0,0 +k1,3785:32583029,43323475:22300762 +g1,3785:32583029,43323475 +) +(1,3786:6630773,44008330:25952256,424439,79822 +h1,3786:6630773,44008330:0,0,0 +k1,3786:6630773,44008330:0 +h1,3786:10282267,44008330:0,0,0 +k1,3786:32583029,44008330:22300762 +g1,3786:32583029,44008330 +) +(1,3790:6630773,44759245:25952256,424439,112852 +(1,3788:6630773,44759245:0,0,0 +g1,3788:6630773,44759245 +g1,3788:6630773,44759245 +g1,3788:6303093,44759245 +(1,3788:6303093,44759245:0,0,0 +) +g1,3788:6630773,44759245 +) +g1,3790:7626635,44759245 +g1,3790:8954451,44759245 +h1,3790:11942036,44759245:0,0,0 +k1,3790:32583028,44759245:20640992 +g1,3790:32583028,44759245 +) +(1,3792:6630773,45510161:25952256,424439,86428 +(1,3791:6630773,45510161:0,0,0 +g1,3791:6630773,45510161 +g1,3791:6630773,45510161 +g1,3791:6303093,45510161 +(1,3791:6303093,45510161:0,0,0 +) +g1,3791:6630773,45510161 +) +k1,3792:6630773,45510161:0 +g1,3792:11610082,45510161 +h1,3792:15593529,45510161:0,0,0 +k1,3792:32583029,45510161:16989500 +g1,3792:32583029,45510161 +) +] +) +g1,3803:32583029,45510161 +g1,3803:6630773,45510161 +g1,3803:6630773,45510161 +g1,3803:32583029,45510161 +g1,3803:32583029,45510161 +) +] +(1,3803:32583029,45706769:0,0,0 +g1,3803:32583029,45706769 +) +) +] +(1,3803:6630773,47279633:25952256,0,0 +h1,3803:6630773,47279633:25952256,0,0 +) +] +(1,3803:4262630,4025873:0,0,0 +[1,3803:-473656,4025873:0,0,0 +(1,3803:-473656,-710413:0,0,0 +(1,3803:-473656,-710413:0,0,0 +g1,3803:-473656,-710413 ) -k1,4580:3078556,49800853:-34777008 -) -] -g1,4580:6630773,4812305 -g1,4580:6630773,4812305 -g1,4580:8826229,4812305 -g1,4580:13247287,4812305 -k1,4580:31786111,4812305:18538824 -) -) -] -[1,4580:6630773,45706769:25952256,40108032,0 -(1,4580:6630773,45706769:25952256,40108032,0 -(1,4580:6630773,45706769:0,0,0 -g1,4580:6630773,45706769 -) -[1,4580:6630773,45706769:25952256,40108032,0 -v1,4525:6630773,6254097:0,393216,0 -(1,4525:6630773,21347829:25952256,15486948,0 -g1,4525:6630773,21347829 -g1,4525:6303093,21347829 -r1,4580:6401397,21347829:98304,15486948,0 -g1,4525:6600626,21347829 -g1,4525:6797234,21347829 -[1,4525:6797234,21347829:25785795,15486948,0 -v1,4484:6797234,6254097:0,393216,0 -(1,4492:6797234,7800361:25785795,1939480,196608 -g1,4492:6797234,7800361 -g1,4492:6797234,7800361 -g1,4492:6600626,7800361 -(1,4492:6600626,7800361:0,1939480,196608 -r1,4580:32779637,7800361:26179011,2136088,196608 -k1,4492:6600625,7800361:-26179012 -) -(1,4492:6600626,7800361:26179011,1939480,196608 -[1,4492:6797234,7800361:25785795,1742872,0 -(1,4486:6797234,6461715:25785795,404226,101187 -(1,4485:6797234,6461715:0,0,0 -g1,4485:6797234,6461715 -g1,4485:6797234,6461715 -g1,4485:6469554,6461715 -(1,4485:6469554,6461715:0,0,0 -) -g1,4485:6797234,6461715 -) -h1,4486:11223274,6461715:0,0,0 -k1,4486:32583030,6461715:21359756 -g1,4486:32583030,6461715 -) -(1,4491:6797234,7127893:25785795,379060,0 -(1,4488:6797234,7127893:0,0,0 -g1,4488:6797234,7127893 -g1,4488:6797234,7127893 -g1,4488:6469554,7127893 -(1,4488:6469554,7127893:0,0,0 -) -g1,4488:6797234,7127893 -) -g1,4491:7745671,7127893 -g1,4491:8061817,7127893 -g1,4491:8377963,7127893 -g1,4491:8694109,7127893 -g1,4491:9010255,7127893 -h1,4491:9326401,7127893:0,0,0 -k1,4491:32583029,7127893:23256628 -g1,4491:32583029,7127893 -) -(1,4491:6797234,7794071:25785795,404226,6290 -h1,4491:6797234,7794071:0,0,0 -g1,4491:7745671,7794071 -h1,4491:9326399,7794071:0,0,0 -k1,4491:32583029,7794071:23256630 -g1,4491:32583029,7794071 -) -] -) -g1,4492:32583029,7800361 -g1,4492:6797234,7800361 -g1,4492:6797234,7800361 -g1,4492:32583029,7800361 -g1,4492:32583029,7800361 -) -h1,4492:6797234,7996969:0,0,0 -(1,4496:6797234,9362745:25785795,513147,134348 -h1,4495:6797234,9362745:983040,0,0 -k1,4495:9201901,9362745:224940 -k1,4495:12166245,9362745:224939 -k1,4495:14369062,9362745:224940 -k1,4495:15698283,9362745:224939 -k1,4495:16670989,9362745:224940 -k1,4495:17555221,9362745:224940 -k1,4495:18136020,9362745:224939 -k1,4495:21123303,9362745:224940 -k1,4495:23361509,9362745:224940 -k1,4495:25028895,9362745:224939 -k1,4495:26272920,9362745:224940 -k1,4495:29015097,9362745:224939 -k1,4495:31391584,9362745:224940 -k1,4495:32583029,9362745:0 -) -(1,4496:6797234,10204233:25785795,513147,134348 -g1,4495:8015548,10204233 -g1,4495:10993504,10204233 -g1,4495:12873076,10204233 -g1,4495:13603802,10204233 -g1,4495:14158891,10204233 -g1,4495:15641315,10204233 -g1,4495:17818421,10204233 -g1,4495:18676942,10204233 -g1,4495:19895256,10204233 -g1,4495:21747958,10204233 -g1,4495:23960453,10204233 -g1,4495:24845844,10204233 -g1,4495:26064158,10204233 -g1,4495:29002792,10204233 -k1,4496:32583029,10204233:1428690 -g1,4496:32583029,10204233 -) -v1,4498:6797234,11394699:0,393216,0 -(1,4507:6797234,13607141:25785795,2605658,196608 -g1,4507:6797234,13607141 -g1,4507:6797234,13607141 -g1,4507:6600626,13607141 -(1,4507:6600626,13607141:0,2605658,196608 -r1,4580:32779637,13607141:26179011,2802266,196608 -k1,4507:6600625,13607141:-26179012 -) -(1,4507:6600626,13607141:26179011,2605658,196608 -[1,4507:6797234,13607141:25785795,2409050,0 -(1,4500:6797234,11602317:25785795,404226,101187 -(1,4499:6797234,11602317:0,0,0 -g1,4499:6797234,11602317 -g1,4499:6797234,11602317 -g1,4499:6469554,11602317 -(1,4499:6469554,11602317:0,0,0 -) -g1,4499:6797234,11602317 -) -g1,4500:9958691,11602317 -g1,4500:10907129,11602317 -h1,4500:15965460,11602317:0,0,0 -k1,4500:32583029,11602317:16617569 -g1,4500:32583029,11602317 -) -(1,4501:6797234,12268495:25785795,369623,6290 -h1,4501:6797234,12268495:0,0,0 -h1,4501:9642545,12268495:0,0,0 -k1,4501:32583029,12268495:22940484 -g1,4501:32583029,12268495 -) -(1,4506:6797234,12934673:25785795,379060,7863 -(1,4503:6797234,12934673:0,0,0 -g1,4503:6797234,12934673 -g1,4503:6797234,12934673 -g1,4503:6469554,12934673 -(1,4503:6469554,12934673:0,0,0 -) -g1,4503:6797234,12934673 -) -g1,4506:7745671,12934673 -g1,4506:8061817,12934673 -g1,4506:8377963,12934673 -g1,4506:8694109,12934673 -g1,4506:9010255,12934673 -g1,4506:9326401,12934673 -g1,4506:9958693,12934673 -g1,4506:10274839,12934673 -g1,4506:10590985,12934673 -g1,4506:10907131,12934673 -g1,4506:11223277,12934673 -g1,4506:11539423,12934673 -g1,4506:12171715,12934673 -g1,4506:12487861,12934673 -g1,4506:12804007,12934673 -g1,4506:13120153,12934673 -g1,4506:13436299,12934673 -g1,4506:13752445,12934673 -g1,4506:14384737,12934673 -g1,4506:14700883,12934673 -g1,4506:15017029,12934673 -g1,4506:15333175,12934673 -g1,4506:15649321,12934673 -g1,4506:15965467,12934673 -g1,4506:16597759,12934673 -g1,4506:16913905,12934673 -g1,4506:17230051,12934673 -g1,4506:17546197,12934673 -g1,4506:17862343,12934673 -g1,4506:18178489,12934673 -g1,4506:18810781,12934673 -g1,4506:19126927,12934673 -g1,4506:19443073,12934673 -g1,4506:19759219,12934673 -g1,4506:20075365,12934673 -g1,4506:20391511,12934673 -g1,4506:21023803,12934673 -g1,4506:21339949,12934673 -g1,4506:21656095,12934673 -g1,4506:21972241,12934673 -g1,4506:22288387,12934673 -g1,4506:22604533,12934673 -g1,4506:23236825,12934673 -g1,4506:23552971,12934673 -g1,4506:23869117,12934673 -g1,4506:24185263,12934673 -g1,4506:24501409,12934673 -g1,4506:24817555,12934673 -g1,4506:25449847,12934673 -g1,4506:25765993,12934673 -g1,4506:26082139,12934673 -g1,4506:26398285,12934673 -g1,4506:26714431,12934673 -g1,4506:27030577,12934673 -h1,4506:27346723,12934673:0,0,0 -k1,4506:32583029,12934673:5236306 -g1,4506:32583029,12934673 -) -(1,4506:6797234,13600851:25785795,404226,6290 -h1,4506:6797234,13600851:0,0,0 -g1,4506:7745671,13600851 -g1,4506:8061817,13600851 -g1,4506:9958691,13600851 -g1,4506:12171711,13600851 -g1,4506:12487857,13600851 -g1,4506:14384731,13600851 -g1,4506:16597751,13600851 -g1,4506:18810771,13600851 -g1,4506:19126917,13600851 -g1,4506:21023791,13600851 -g1,4506:21339937,13600851 -g1,4506:23236811,13600851 -g1,4506:25449831,13600851 -h1,4506:27346705,13600851:0,0,0 -k1,4506:32583029,13600851:5236324 -g1,4506:32583029,13600851 -) -] -) -g1,4507:32583029,13607141 -g1,4507:6797234,13607141 -g1,4507:6797234,13607141 -g1,4507:32583029,13607141 -g1,4507:32583029,13607141 -) -h1,4507:6797234,13803749:0,0,0 -(1,4511:6797234,15169525:25785795,513147,126483 -h1,4510:6797234,15169525:983040,0,0 -k1,4510:9995444,15169525:296276 -(1,4510:9995444,15169525:0,414482,115847 -r1,4580:13167404,15169525:3171960,530329,115847 -k1,4510:9995444,15169525:-3171960 -) -(1,4510:9995444,15169525:3171960,414482,115847 -k1,4510:9995444,15169525:3277 -h1,4510:13164127,15169525:0,411205,112570 -) -k1,4510:13463680,15169525:296276 -k1,4510:14291453,15169525:296276 -k1,4510:14943588,15169525:296275 -k1,4510:17398620,15169525:296276 -k1,4510:19846443,15169525:296276 -k1,4510:21710340,15169525:296276 -k1,4510:23892087,15169525:296276 -k1,4510:25056715,15169525:296276 -k1,4510:26485452,15169525:296275 -k1,4510:30086709,15169525:296276 -k1,4510:31931601,15169525:296276 -k1,4510:32583029,15169525:0 -) -(1,4511:6797234,16011013:25785795,505283,7863 -g1,4510:9351172,16011013 -g1,4510:10569486,16011013 -k1,4511:32583029,16011013:19771556 -g1,4511:32583029,16011013 -) -v1,4513:6797234,17201479:0,393216,0 -(1,4521:6797234,18817474:25785795,2009211,196608 -g1,4521:6797234,18817474 -g1,4521:6797234,18817474 -g1,4521:6600626,18817474 -(1,4521:6600626,18817474:0,2009211,196608 -r1,4580:32779637,18817474:26179011,2205819,196608 -k1,4521:6600625,18817474:-26179012 -) -(1,4521:6600626,18817474:26179011,2009211,196608 -[1,4521:6797234,18817474:25785795,1812603,0 -(1,4515:6797234,17409097:25785795,404226,76021 -(1,4514:6797234,17409097:0,0,0 -g1,4514:6797234,17409097 -g1,4514:6797234,17409097 -g1,4514:6469554,17409097 -(1,4514:6469554,17409097:0,0,0 -) -g1,4514:6797234,17409097 -) -g1,4515:9958691,17409097 -g1,4515:10907129,17409097 -k1,4515:10907129,17409097:0 -h1,4515:16281605,17409097:0,0,0 -k1,4515:32583029,17409097:16301424 -g1,4515:32583029,17409097 -) -(1,4516:6797234,18075275:25785795,369623,6290 -h1,4516:6797234,18075275:0,0,0 -h1,4516:9642545,18075275:0,0,0 -k1,4516:32583029,18075275:22940484 -g1,4516:32583029,18075275 -) -(1,4520:6797234,18741453:25785795,404226,76021 -(1,4518:6797234,18741453:0,0,0 -g1,4518:6797234,18741453 -g1,4518:6797234,18741453 -g1,4518:6469554,18741453 -(1,4518:6469554,18741453:0,0,0 -) -g1,4518:6797234,18741453 -) -g1,4520:7745671,18741453 -g1,4520:9010254,18741453 -g1,4520:10907128,18741453 -g1,4520:11223274,18741453 -g1,4520:13436294,18741453 -g1,4520:15333168,18741453 -g1,4520:15649314,18741453 -g1,4520:17862334,18741453 -g1,4520:20075354,18741453 -g1,4520:21972228,18741453 -g1,4520:22288374,18741453 -g1,4520:24185248,18741453 -g1,4520:24501394,18741453 -g1,4520:26714414,18741453 -h1,4520:28611288,18741453:0,0,0 -k1,4520:32583029,18741453:3971741 -g1,4520:32583029,18741453 -) -] -) -g1,4521:32583029,18817474 -g1,4521:6797234,18817474 -g1,4521:6797234,18817474 -g1,4521:32583029,18817474 -g1,4521:32583029,18817474 -) -h1,4521:6797234,19014082:0,0,0 -(1,4525:6797234,20379858:25785795,505283,102891 -h1,4524:6797234,20379858:983040,0,0 -k1,4524:8449677,20379858:199510 -k1,4524:9180685,20379858:199511 -k1,4524:11030392,20379858:199510 -k1,4524:14007318,20379858:199510 -k1,4524:14858256,20379858:199510 -k1,4524:16150252,20379858:199511 -k1,4524:18508518,20379858:199510 -k1,4524:21661736,20379858:199510 -k1,4524:23255198,20379858:199511 -k1,4524:24778535,20379858:199510 -k1,4524:26420492,20379858:199510 -k1,4524:28013953,20379858:199510 -k1,4524:30695312,20379858:199511 -k1,4524:31966991,20379858:199510 -k1,4525:32583029,20379858:0 -) -(1,4525:6797234,21221346:25785795,505283,126483 -g1,4524:7584976,21221346 -g1,4524:8400243,21221346 -g1,4524:10066168,21221346 -g1,4524:11962779,21221346 -g1,4524:12620105,21221346 -g1,4524:13350831,21221346 -g1,4524:16180020,21221346 -g1,4524:17030677,21221346 -g1,4524:18322391,21221346 -g1,4524:19988316,21221346 -g1,4524:22807674,21221346 -g1,4524:26182122,21221346 -g1,4524:28630547,21221346 -g1,4524:30021221,21221346 -k1,4525:32583029,21221346:319821 -g1,4525:32583029,21221346 -) -] -g1,4525:32583029,21347829 -) -h1,4525:6630773,21347829:0,0,0 -(1,4528:6630773,22503889:25952256,513147,134348 -h1,4527:6630773,22503889:983040,0,0 -k1,4527:10563538,22503889:198524 -k1,4527:11866343,22503889:198523 -k1,4527:12812633,22503889:198524 -k1,4527:14524382,22503889:198523 -k1,4527:15532276,22503889:198524 -k1,4527:17586779,22503889:198523 -k1,4527:19084882,22503889:198524 -k1,4527:19942697,22503889:198523 -k1,4527:20911924,22503889:198524 -k1,4527:24756215,22503889:198523 -k1,4527:28568394,22503889:198524 -k1,4527:29394752,22503889:198523 -k1,4527:30612361,22503889:198524 -k1,4527:32583029,22503889:0 -) -(1,4528:6630773,23345377:25952256,513147,134348 -k1,4527:8947307,23345377:274432 -k1,4527:10090091,23345377:274432 -k1,4527:11457008,23345377:274432 -k1,4527:12750524,23345377:274431 -k1,4527:16239497,23345377:274432 -k1,4527:19260543,23345377:274432 -k1,4527:20344345,23345377:274432 -k1,4527:21637862,23345377:274432 -k1,4527:24805709,23345377:274432 -k1,4527:26379719,23345377:274431 -k1,4527:27313443,23345377:274432 -k1,4527:28606960,23345377:274432 -k1,4527:32583029,23345377:0 -) -(1,4528:6630773,24186865:25952256,505283,126483 -k1,4527:7561233,24186865:279032 -k1,4527:10138613,24186865:279032 -k1,4527:12428290,24186865:279032 -k1,4527:14082923,24186865:279032 -k1,4527:14974717,24186865:279032 -k1,4527:17842421,24186865:279032 -k1,4527:21065985,24186865:279031 -k1,4527:21961055,24186865:279032 -k1,4527:23259172,24186865:279032 -k1,4527:25689751,24186865:279032 -k1,4527:27349627,24186865:279032 -k1,4527:28965593,24186865:279032 -k1,4527:30631367,24186865:279032 -k1,4527:32583029,24186865:0 -) -(1,4528:6630773,25028353:25952256,513147,134348 -k1,4527:9420553,25028353:290237 -k1,4527:10323552,25028353:290237 -k1,4527:11919922,25028353:290237 -k1,4527:13961281,25028353:290237 -k1,4527:15323687,25028353:290237 -k1,4527:16072021,25028353:290237 -k1,4527:16893755,25028353:290237 -k1,4527:18412792,25028353:290237 -k1,4527:19058889,25028353:290237 -k1,4527:21473803,25028353:290237 -k1,4527:24836368,25028353:290237 -k1,4527:25785897,25028353:290237 -k1,4527:27095219,25028353:290237 -k1,4527:28894095,25028353:290237 -k1,4527:29843624,25028353:290237 -k1,4527:32583029,25028353:0 -) -(1,4528:6630773,25869841:25952256,513147,126483 -k1,4527:9944473,25869841:223677 -k1,4527:12197146,25869841:223678 -k1,4527:12890716,25869841:223677 -k1,4527:15214823,25869841:223678 -k1,4527:17968190,25869841:223677 -k1,4527:19210953,25869841:223678 -k1,4527:20555296,25869841:223677 -k1,4527:24380176,25869841:223677 -k1,4527:25263146,25869841:223678 -k1,4527:26505908,25869841:223677 -(1,4527:26505908,25869841:0,414482,115847 -r1,4580:27215886,25869841:709978,530329,115847 -k1,4527:26505908,25869841:-709978 -) -(1,4527:26505908,25869841:709978,414482,115847 -k1,4527:26505908,25869841:3277 -h1,4527:27212609,25869841:0,411205,112570 -) -k1,4527:27439564,25869841:223678 -k1,4527:30409855,25869841:223677 -k1,4527:32583029,25869841:0 -) -(1,4528:6630773,26711329:25952256,513147,134348 -k1,4527:7437621,26711329:190810 -k1,4527:9095128,26711329:190811 -k1,4527:10305023,26711329:190810 -k1,4527:13389249,26711329:190811 -k1,4527:14879638,26711329:190810 -k1,4527:16261893,26711329:190810 -k1,4527:17471789,26711329:190811 -k1,4527:21017387,26711329:190810 -k1,4527:22507776,26711329:190810 -k1,4527:24436602,26711329:190811 -k1,4527:26078379,26711329:190810 -k1,4527:29330377,26711329:190811 -k1,4527:31563944,26711329:190810 -k1,4527:32583029,26711329:0 -) -(1,4528:6630773,27552817:25952256,513147,134348 -k1,4527:10516907,27552817:240366 -k1,4527:12440237,27552817:240365 -k1,4527:14516922,27552817:240366 -k1,4527:15586318,27552817:240366 -k1,4527:17542416,27552817:240365 -k1,4527:18801867,27552817:240366 -k1,4527:21613210,27552817:240366 -k1,4527:22505004,27552817:240366 -k1,4527:23764454,27552817:240365 -k1,4527:26312998,27552817:240366 -k1,4527:28423762,27552817:240366 -k1,4527:29315555,27552817:240365 -k1,4527:31714677,27552817:240366 -k1,4527:32583029,27552817:0 -) -(1,4528:6630773,28394305:25952256,513147,126483 -g1,4527:7922487,28394305 -g1,4527:10858499,28394305 -g1,4527:13365906,28394305 -g1,4527:14959086,28394305 -g1,4527:17920658,28394305 -g1,4527:20188203,28394305 -g1,4527:21335083,28394305 -g1,4527:22985934,28394305 -g1,4527:23844455,28394305 -g1,4527:25740411,28394305 -k1,4528:32583029,28394305:3677229 -g1,4528:32583029,28394305 -) -v1,4530:6630773,29375055:0,393216,0 -(1,4577:6630773,45510161:25952256,16528322,196608 -g1,4577:6630773,45510161 -g1,4577:6630773,45510161 -g1,4577:6434165,45510161 -(1,4577:6434165,45510161:0,16528322,196608 -r1,4580:32779637,45510161:26345472,16724930,196608 -k1,4577:6434165,45510161:-26345472 -) -(1,4577:6434165,45510161:26345472,16528322,196608 -[1,4577:6630773,45510161:25952256,16331714,0 -(1,4532:6630773,29566944:25952256,388497,9436 -(1,4531:6630773,29566944:0,0,0 -g1,4531:6630773,29566944 -g1,4531:6630773,29566944 -g1,4531:6303093,29566944 -(1,4531:6303093,29566944:0,0,0 -) -g1,4531:6630773,29566944 -) -g1,4532:8211502,29566944 -g1,4532:9159940,29566944 -h1,4532:10424523,29566944:0,0,0 -k1,4532:32583029,29566944:22158506 -g1,4532:32583029,29566944 -) -(1,4533:6630773,30233122:25952256,388497,6290 -h1,4533:6630773,30233122:0,0,0 -h1,4533:7895356,30233122:0,0,0 -k1,4533:32583028,30233122:24687672 -g1,4533:32583028,30233122 -) -(1,4537:6630773,30772087:25952256,404226,76021 -(1,4535:6630773,30772087:0,0,0 -g1,4535:6630773,30772087 -g1,4535:6630773,30772087 -g1,4535:6303093,30772087 -(1,4535:6303093,30772087:0,0,0 -) -g1,4535:6630773,30772087 -) -g1,4537:7579210,30772087 -g1,4537:7895356,30772087 -g1,4537:9159939,30772087 -g1,4537:9476085,30772087 -g1,4537:10108377,30772087 -g1,4537:10424523,30772087 -g1,4537:11056815,30772087 -g1,4537:11372961,30772087 -g1,4537:12005253,30772087 -g1,4537:12321399,30772087 -g1,4537:12953691,30772087 -g1,4537:13269837,30772087 -g1,4537:13902129,30772087 -g1,4537:14218275,30772087 -g1,4537:14850567,30772087 -g1,4537:15166713,30772087 -g1,4537:15799005,30772087 -g1,4537:16115151,30772087 -g1,4537:16747443,30772087 -g1,4537:17063589,30772087 -g1,4537:17695881,30772087 -h1,4537:18328172,30772087:0,0,0 -k1,4537:32583029,30772087:14254857 -g1,4537:32583029,30772087 -) -(1,4539:6630773,31966412:25952256,404226,76021 -(1,4538:6630773,31966412:0,0,0 -g1,4538:6630773,31966412 -g1,4538:6630773,31966412 -g1,4538:6303093,31966412 -(1,4538:6303093,31966412:0,0,0 -) -g1,4538:6630773,31966412 -) -g1,4539:9159939,31966412 -g1,4539:10108377,31966412 -h1,4539:10740668,31966412:0,0,0 -k1,4539:32583028,31966412:21842360 -g1,4539:32583028,31966412 -) -(1,4540:6630773,32632590:25952256,388497,6290 -h1,4540:6630773,32632590:0,0,0 -h1,4540:7895356,32632590:0,0,0 -k1,4540:32583028,32632590:24687672 -g1,4540:32583028,32632590 -) -(1,4544:6630773,33171555:25952256,404226,76021 -(1,4542:6630773,33171555:0,0,0 -g1,4542:6630773,33171555 -g1,4542:6630773,33171555 -g1,4542:6303093,33171555 -(1,4542:6303093,33171555:0,0,0 -) -g1,4542:6630773,33171555 -) -g1,4544:7579210,33171555 -g1,4544:7895356,33171555 -g1,4544:9159939,33171555 -g1,4544:10108376,33171555 -g1,4544:10424522,33171555 -g1,4544:11056814,33171555 -g1,4544:11372960,33171555 -g1,4544:12005252,33171555 -g1,4544:12321398,33171555 -g1,4544:12953690,33171555 -g1,4544:13269836,33171555 -g1,4544:13902128,33171555 -g1,4544:14218274,33171555 -g1,4544:14850566,33171555 -g1,4544:15166712,33171555 -g1,4544:15799004,33171555 -g1,4544:16115150,33171555 -g1,4544:16747442,33171555 -g1,4544:17063588,33171555 -g1,4544:17695880,33171555 -h1,4544:18328171,33171555:0,0,0 -k1,4544:32583029,33171555:14254858 -g1,4544:32583029,33171555 -) -(1,4546:6630773,34365880:25952256,388497,9436 -(1,4545:6630773,34365880:0,0,0 -g1,4545:6630773,34365880 -g1,4545:6630773,34365880 -g1,4545:6303093,34365880 -(1,4545:6303093,34365880:0,0,0 -) -g1,4545:6630773,34365880 -) -g1,4546:8211502,34365880 -g1,4546:9159940,34365880 -h1,4546:10424523,34365880:0,0,0 -k1,4546:32583029,34365880:22158506 -g1,4546:32583029,34365880 -) -(1,4547:6630773,35032058:25952256,404226,107478 -h1,4547:6630773,35032058:0,0,0 -g1,4547:10740668,35032058 -g1,4547:11689106,35032058 -g1,4547:12953689,35032058 -g1,4547:13585981,35032058 -k1,4547:13585981,35032058:11010 -h1,4547:16442302,35032058:0,0,0 -k1,4547:32583029,35032058:16140727 -g1,4547:32583029,35032058 -) -(1,4548:6630773,35698236:25952256,388497,6290 -h1,4548:6630773,35698236:0,0,0 -h1,4548:7895356,35698236:0,0,0 -k1,4548:32583028,35698236:24687672 -g1,4548:32583028,35698236 -) -(1,4552:6630773,36237201:25952256,404226,76021 -(1,4550:6630773,36237201:0,0,0 -g1,4550:6630773,36237201 -g1,4550:6630773,36237201 -g1,4550:6303093,36237201 -(1,4550:6303093,36237201:0,0,0 -) -g1,4550:6630773,36237201 -) -g1,4552:7579210,36237201 -g1,4552:7895356,36237201 -g1,4552:9159939,36237201 -g1,4552:9476085,36237201 -g1,4552:9792231,36237201 -g1,4552:10424523,36237201 -g1,4552:11689106,36237201 -g1,4552:12005252,36237201 -g1,4552:12321398,36237201 -g1,4552:12953690,36237201 -g1,4552:14218273,36237201 -g1,4552:14534419,36237201 -g1,4552:14850565,36237201 -g1,4552:15482857,36237201 -g1,4552:15799003,36237201 -g1,4552:16115149,36237201 -g1,4552:16747441,36237201 -g1,4552:17063587,36237201 -g1,4552:17379733,36237201 -g1,4552:18012025,36237201 -g1,4552:18328171,36237201 -g1,4552:18644317,36237201 -g1,4552:19276609,36237201 -g1,4552:19592755,36237201 -g1,4552:19908901,36237201 -g1,4552:20541193,36237201 -g1,4552:20857339,36237201 -h1,4552:21489630,36237201:0,0,0 -k1,4552:32583029,36237201:11093399 -g1,4552:32583029,36237201 -) -(1,4554:6630773,37431527:25952256,388497,9436 -(1,4553:6630773,37431527:0,0,0 -g1,4553:6630773,37431527 -g1,4553:6630773,37431527 -g1,4553:6303093,37431527 -(1,4553:6303093,37431527:0,0,0 -) -g1,4553:6630773,37431527 -) -g1,4554:8211502,37431527 -g1,4554:9159940,37431527 -h1,4554:10424523,37431527:0,0,0 -k1,4554:32583029,37431527:22158506 -g1,4554:32583029,37431527 -) -(1,4555:6630773,38097705:25952256,404226,82312 -h1,4555:6630773,38097705:0,0,0 -g1,4555:10740668,38097705 -g1,4555:11689106,38097705 -g1,4555:13902127,38097705 -h1,4555:14850564,38097705:0,0,0 -k1,4555:32583028,38097705:17732464 -g1,4555:32583028,38097705 -) -(1,4556:6630773,38763883:25952256,388497,6290 -h1,4556:6630773,38763883:0,0,0 -h1,4556:7895356,38763883:0,0,0 -k1,4556:32583028,38763883:24687672 -g1,4556:32583028,38763883 -) -(1,4560:6630773,39302848:25952256,404226,76021 -(1,4558:6630773,39302848:0,0,0 -g1,4558:6630773,39302848 -g1,4558:6630773,39302848 -g1,4558:6303093,39302848 -(1,4558:6303093,39302848:0,0,0 -) -g1,4558:6630773,39302848 -) -g1,4560:7579210,39302848 -g1,4560:7895356,39302848 -g1,4560:9159939,39302848 -g1,4560:9476085,39302848 -g1,4560:9792231,39302848 -g1,4560:10424523,39302848 -g1,4560:11689106,39302848 -g1,4560:12005252,39302848 -g1,4560:12321398,39302848 -g1,4560:12953690,39302848 -g1,4560:13269836,39302848 -g1,4560:14218273,39302848 -g1,4560:14534419,39302848 -g1,4560:14850565,39302848 -g1,4560:15482857,39302848 -g1,4560:15799003,39302848 -g1,4560:16115149,39302848 -g1,4560:16747441,39302848 -g1,4560:17063587,39302848 -g1,4560:17379733,39302848 -g1,4560:18012025,39302848 -g1,4560:18328171,39302848 -g1,4560:18644317,39302848 -g1,4560:19276609,39302848 -g1,4560:19592755,39302848 -g1,4560:19908901,39302848 -g1,4560:20541193,39302848 -g1,4560:20857339,39302848 -h1,4560:21489630,39302848:0,0,0 -k1,4560:32583029,39302848:11093399 -g1,4560:32583029,39302848 -) -(1,4562:6630773,40497173:25952256,388497,9436 -(1,4561:6630773,40497173:0,0,0 -g1,4561:6630773,40497173 -g1,4561:6630773,40497173 -g1,4561:6303093,40497173 -(1,4561:6303093,40497173:0,0,0 -) -g1,4561:6630773,40497173 -) -g1,4562:8211502,40497173 -g1,4562:9159940,40497173 -h1,4562:10424523,40497173:0,0,0 -k1,4562:32583029,40497173:22158506 -g1,4562:32583029,40497173 -) -(1,4563:6630773,41163351:25952256,404226,107478 -h1,4563:6630773,41163351:0,0,0 -g1,4563:10108376,41163351 -g1,4563:11056814,41163351 -g1,4563:11689106,41163351 -g1,4563:12321398,41163351 -k1,4563:12321398,41163351:11010 -h1,4563:15177719,41163351:0,0,0 -k1,4563:32583029,41163351:17405310 -g1,4563:32583029,41163351 -) -(1,4564:6630773,41829529:25952256,388497,6290 -h1,4564:6630773,41829529:0,0,0 -h1,4564:7895356,41829529:0,0,0 -k1,4564:32583028,41829529:24687672 -g1,4564:32583028,41829529 -) -(1,4568:6630773,42368494:25952256,404226,76021 -(1,4566:6630773,42368494:0,0,0 -g1,4566:6630773,42368494 -g1,4566:6630773,42368494 -g1,4566:6303093,42368494 -(1,4566:6303093,42368494:0,0,0 -) -g1,4566:6630773,42368494 -) -g1,4568:7579210,42368494 -g1,4568:7895356,42368494 -g1,4568:9159939,42368494 -g1,4568:9792231,42368494 -g1,4568:10424523,42368494 -g1,4568:11056815,42368494 -g1,4568:11689107,42368494 -g1,4568:12321399,42368494 -g1,4568:12953691,42368494 -g1,4568:13585983,42368494 -g1,4568:14218275,42368494 -g1,4568:14850567,42368494 -h1,4568:15166713,42368494:0,0,0 -k1,4568:32583029,42368494:17416316 -g1,4568:32583029,42368494 -) -(1,4570:6630773,43562819:25952256,388497,9436 -(1,4569:6630773,43562819:0,0,0 -g1,4569:6630773,43562819 -g1,4569:6630773,43562819 -g1,4569:6303093,43562819 -(1,4569:6303093,43562819:0,0,0 -) -g1,4569:6630773,43562819 -) -g1,4570:8211502,43562819 -g1,4570:9159940,43562819 -h1,4570:10424523,43562819:0,0,0 -k1,4570:32583029,43562819:22158506 -g1,4570:32583029,43562819 -) -(1,4571:6630773,44228997:25952256,404226,107478 -h1,4571:6630773,44228997:0,0,0 -g1,4571:8211502,44228997 -g1,4571:9159940,44228997 -g1,4571:9792232,44228997 -g1,4571:10108378,44228997 -g1,4571:10740670,44228997 -g1,4571:11689107,44228997 -k1,4571:11689107,44228997:11010 -h1,4571:14545428,44228997:0,0,0 -k1,4571:32583028,44228997:18037600 -g1,4571:32583028,44228997 -) -(1,4572:6630773,44895175:25952256,388497,6290 -h1,4572:6630773,44895175:0,0,0 -h1,4572:7895356,44895175:0,0,0 -k1,4572:32583028,44895175:24687672 -g1,4572:32583028,44895175 -) -(1,4576:6630773,45434140:25952256,404226,76021 -(1,4574:6630773,45434140:0,0,0 -g1,4574:6630773,45434140 -g1,4574:6630773,45434140 -g1,4574:6303093,45434140 -(1,4574:6303093,45434140:0,0,0 -) -g1,4574:6630773,45434140 -) -g1,4576:7579210,45434140 -g1,4576:8843793,45434140 -h1,4576:9159939,45434140:0,0,0 -k1,4576:32583029,45434140:23423090 -g1,4576:32583029,45434140 -) -] -) -g1,4577:32583029,45510161 -g1,4577:6630773,45510161 -g1,4577:6630773,45510161 -g1,4577:32583029,45510161 -g1,4577:32583029,45510161 -) -h1,4577:6630773,45706769:0,0,0 -] -(1,4580:32583029,45706769:0,0,0 -g1,4580:32583029,45706769 -) -) -] -(1,4580:6630773,47279633:25952256,0,0 -h1,4580:6630773,47279633:25952256,0,0 -) -] -(1,4580:4262630,4025873:0,0,0 -[1,4580:-473656,4025873:0,0,0 -(1,4580:-473656,-710413:0,0,0 -(1,4580:-473656,-710413:0,0,0 -g1,4580:-473656,-710413 -) -g1,4580:-473656,-710413 +g1,3803:-473656,-710413 ) ] ) ] -!27004 -}84 -Input:737:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:738:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:739:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:740:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:741:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:742:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:743:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:744:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:745:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!848 -{85 -[1,4691:4262630,47279633:28320399,43253760,0 -(1,4691:4262630,4025873:0,0,0 -[1,4691:-473656,4025873:0,0,0 -(1,4691:-473656,-710413:0,0,0 -(1,4691:-473656,-644877:0,0,0 -k1,4691:-473656,-644877:-65536 +!27775 +}72 +Input:666:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:667:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:668:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:669:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:670:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:671:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!569 +{73 +[1,3955:4262630,47279633:28320399,43253760,0 +(1,3955:4262630,4025873:0,0,0 +[1,3955:-473656,4025873:0,0,0 +(1,3955:-473656,-710413:0,0,0 +(1,3955:-473656,-644877:0,0,0 +k1,3955:-473656,-644877:-65536 ) -(1,4691:-473656,4736287:0,0,0 -k1,4691:-473656,4736287:5209943 +(1,3955:-473656,4736287:0,0,0 +k1,3955:-473656,4736287:5209943 ) -g1,4691:-473656,-710413 +g1,3955:-473656,-710413 ) ] ) -[1,4691:6630773,47279633:25952256,43253760,0 -[1,4691:6630773,4812305:25952256,786432,0 -(1,4691:6630773,4812305:25952256,505283,11795 -(1,4691:6630773,4812305:25952256,505283,11795 -g1,4691:3078558,4812305 -[1,4691:3078558,4812305:0,0,0 -(1,4691:3078558,2439708:0,1703936,0 -k1,4691:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,4691:2537886,2439708:1179648,16384,0 +[1,3955:6630773,47279633:25952256,43253760,0 +[1,3955:6630773,4812305:25952256,786432,0 +(1,3955:6630773,4812305:25952256,505283,11795 +(1,3955:6630773,4812305:25952256,505283,11795 +g1,3955:3078558,4812305 +[1,3955:3078558,4812305:0,0,0 +(1,3955:3078558,2439708:0,1703936,0 +k1,3955:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,3955:2537886,2439708:1179648,16384,0 ) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,4691:3078558,1915420:16384,1179648,0 +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,3955:3078558,1915420:16384,1179648,0 ) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) ] ) ) ) ] -[1,4691:3078558,4812305:0,0,0 -(1,4691:3078558,2439708:0,1703936,0 -g1,4691:29030814,2439708 -g1,4691:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,4691:36151628,1915420:16384,1179648,0 +[1,3955:3078558,4812305:0,0,0 +(1,3955:3078558,2439708:0,1703936,0 +g1,3955:29030814,2439708 +g1,3955:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,3955:36151628,1915420:16384,1179648,0 ) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) ] ) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,4691:37855564,2439708:1179648,16384,0 +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,3955:37855564,2439708:1179648,16384,0 ) ) -k1,4691:3078556,2439708:-34777008 +k1,3955:3078556,2439708:-34777008 ) ] -[1,4691:3078558,4812305:0,0,0 -(1,4691:3078558,49800853:0,16384,2228224 -k1,4691:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,4691:2537886,49800853:1179648,16384,0 +[1,3955:3078558,4812305:0,0,0 +(1,3955:3078558,49800853:0,16384,2228224 +k1,3955:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,3955:2537886,49800853:1179648,16384,0 ) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,4691:3078558,51504789:16384,1179648,0 +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,3955:3078558,51504789:16384,1179648,0 ) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) ] ) ) ) ] -[1,4691:3078558,4812305:0,0,0 -(1,4691:3078558,49800853:0,16384,2228224 -g1,4691:29030814,49800853 -g1,4691:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,4691:36151628,51504789:16384,1179648,0 +[1,3955:3078558,4812305:0,0,0 +(1,3955:3078558,49800853:0,16384,2228224 +g1,3955:29030814,49800853 +g1,3955:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,3955:36151628,51504789:16384,1179648,0 ) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 ) ] ) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,4691:37855564,49800853:1179648,16384,0 +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,3955:37855564,49800853:1179648,16384,0 ) ) -k1,4691:3078556,49800853:-34777008 +k1,3955:3078556,49800853:-34777008 ) -] -g1,4691:6630773,4812305 -k1,4691:22348274,4812305:14920583 -g1,4691:23970945,4812305 -g1,4691:24793421,4812305 -g1,4691:27528893,4812305 -g1,4691:28938572,4812305 -) -) -] -[1,4691:6630773,45706769:25952256,40108032,0 -(1,4691:6630773,45706769:25952256,40108032,0 -(1,4691:6630773,45706769:0,0,0 -g1,4691:6630773,45706769 -) -[1,4691:6630773,45706769:25952256,40108032,0 -(1,4581:6630773,6254097:25952256,513147,134348 -h1,4580:6630773,6254097:983040,0,0 -k1,4580:8856376,6254097:289014 -k1,4580:10249671,6254097:289013 -k1,4580:11824501,6254097:289014 -k1,4580:13206000,6254097:289014 -k1,4580:17461907,6254097:289013 -k1,4580:18560291,6254097:289014 -k1,4580:20316001,6254097:289014 -k1,4580:22234894,6254097:289013 -k1,4580:23183200,6254097:289014 -k1,4580:24491299,6254097:289014 -k1,4580:28426080,6254097:289013 -k1,4580:31635378,6254097:289014 -k1,4580:32583029,6254097:0 -) -(1,4581:6630773,7095585:25952256,505283,126483 -g1,4580:9665089,7095585 -g1,4580:10515746,7095585 -g1,4580:12342889,7095585 -g1,4580:13714557,7095585 -k1,4581:32583029,7095585:15825635 -g1,4581:32583029,7095585 -) -v1,4583:6630773,8286051:0,393216,0 -(1,4592:6630773,10599681:25952256,2706846,196608 -g1,4592:6630773,10599681 -g1,4592:6630773,10599681 -g1,4592:6434165,10599681 -(1,4592:6434165,10599681:0,2706846,196608 -r1,4691:32779637,10599681:26345472,2903454,196608 -k1,4592:6434165,10599681:-26345472 -) -(1,4592:6434165,10599681:26345472,2706846,196608 -[1,4592:6630773,10599681:25952256,2510238,0 -(1,4585:6630773,8493669:25952256,404226,76021 -(1,4584:6630773,8493669:0,0,0 -g1,4584:6630773,8493669 -g1,4584:6630773,8493669 -g1,4584:6303093,8493669 -(1,4584:6303093,8493669:0,0,0 -) -g1,4584:6630773,8493669 -) -g1,4585:8211502,8493669 -g1,4585:9159940,8493669 -h1,4585:13269834,8493669:0,0,0 -k1,4585:32583030,8493669:19313196 -g1,4585:32583030,8493669 -) -(1,4586:6630773,9159847:25952256,404226,76021 -h1,4586:6630773,9159847:0,0,0 -g1,4586:9792231,9159847 -g1,4586:10740669,9159847 -h1,4586:13585981,9159847:0,0,0 -k1,4586:32583029,9159847:18997048 -g1,4586:32583029,9159847 -) -(1,4587:6630773,9826025:25952256,388497,9436 -h1,4587:6630773,9826025:0,0,0 -h1,4587:7895356,9826025:0,0,0 -k1,4587:32583028,9826025:24687672 -g1,4587:32583028,9826025 -) -(1,4591:6630773,10492203:25952256,410518,107478 -(1,4589:6630773,10492203:0,0,0 -g1,4589:6630773,10492203 -g1,4589:6630773,10492203 -g1,4589:6303093,10492203 -(1,4589:6303093,10492203:0,0,0 -) -g1,4589:6630773,10492203 -) -g1,4591:7579210,10492203 -g1,4591:7895356,10492203 -g1,4591:9159939,10492203 -g1,4591:10424522,10492203 -g1,4591:11689105,10492203 -g1,4591:12953688,10492203 -g1,4591:14218271,10492203 -g1,4591:15482854,10492203 -g1,4591:16747437,10492203 -g1,4591:18012020,10492203 -g1,4591:19276603,10492203 -g1,4591:20541186,10492203 -h1,4591:21489623,10492203:0,0,0 -k1,4591:32583029,10492203:11093406 -g1,4591:32583029,10492203 -) -] -) -g1,4592:32583029,10599681 -g1,4592:6630773,10599681 -g1,4592:6630773,10599681 -g1,4592:32583029,10599681 -g1,4592:32583029,10599681 -) -h1,4592:6630773,10796289:0,0,0 -v1,4596:6630773,12686353:0,393216,0 -(1,4608:6630773,20785530:25952256,8492393,0 -g1,4608:6630773,20785530 -g1,4608:6303093,20785530 -r1,4691:6401397,20785530:98304,8492393,0 -g1,4608:6600626,20785530 -g1,4608:6797234,20785530 -[1,4608:6797234,20785530:25785795,8492393,0 -(1,4597:6797234,13118891:25785795,825754,196608 -(1,4596:6797234,13118891:0,825754,196608 -r1,4691:7890375,13118891:1093141,1022362,196608 -k1,4596:6797234,13118891:-1093141 -) -(1,4596:6797234,13118891:1093141,825754,196608 -) -k1,4596:8050501,13118891:160126 -k1,4596:9776719,13118891:327680 -k1,4596:10834688,13118891:160126 -k1,4596:12337648,13118891:160127 -k1,4596:13891725,13118891:160126 -k1,4596:17358798,13118891:160126 -k1,4596:18170353,13118891:160127 -k1,4596:19789310,13118891:160126 -k1,4596:22116712,13118891:160126 -k1,4596:24869442,13118891:160126 -k1,4596:26792487,13118891:160127 -k1,4596:29712334,13118891:160126 -k1,4596:31202841,13118891:160126 -k1,4596:32583029,13118891:0 -) -(1,4597:6797234,13960379:25785795,513147,134348 -k1,4596:8541879,13960379:148188 -k1,4596:9881513,13960379:148189 -k1,4596:11360082,13960379:148188 -k1,4596:12888458,13960379:148188 -k1,4596:14140929,13960379:148189 -k1,4596:15036883,13960379:148188 -k1,4596:16871968,13960379:148188 -k1,4596:18152619,13960379:148189 -k1,4596:19048573,13960379:148188 -k1,4596:20550736,13960379:148189 -k1,4596:22676145,13960379:148188 -k1,4596:23440371,13960379:148188 -k1,4596:26382360,13960379:148189 -k1,4596:27701021,13960379:148188 -k1,4596:28664477,13960379:148188 -k1,4596:29428704,13960379:148189 -k1,4596:30595977,13960379:148188 -k1,4596:32583029,13960379:0 -) -(1,4597:6797234,14801867:25785795,513147,134348 -k1,4596:8334608,14801867:143423 -k1,4596:9066544,14801867:143423 -k1,4596:10700256,14801867:143423 -k1,4596:11862764,14801867:143423 -k1,4596:15020843,14801867:143423 -k1,4596:17825683,14801867:143423 -k1,4596:19837537,14801867:143423 -k1,4596:22296347,14801867:143423 -k1,4596:23458855,14801867:143423 -k1,4596:25255751,14801867:143423 -k1,4596:27523851,14801867:143423 -k1,4596:29426916,14801867:143423 -k1,4596:30799139,14801867:143423 -k1,4596:32583029,14801867:0 -) -(1,4597:6797234,15643355:25785795,513147,126483 -k1,4596:7465716,15643355:210385 -k1,4596:8534623,15643355:210385 -k1,4596:9506536,15643355:210385 -k1,4596:10749112,15643355:210384 -k1,4596:12511390,15643355:210385 -k1,4596:13740860,15643355:210385 -k1,4596:16192576,15643355:210385 -k1,4596:19589321,15643355:210385 -k1,4596:20415744,15643355:210385 -k1,4596:21645214,15643355:210385 -k1,4596:23826267,15643355:210385 -k1,4596:26078753,15643355:210384 -k1,4596:29033786,15643355:210385 -(1,4596:29033786,15643355:0,414482,115847 -r1,4691:29392052,15643355:358266,530329,115847 -k1,4596:29033786,15643355:-358266 -) -(1,4596:29033786,15643355:358266,414482,115847 -k1,4596:29033786,15643355:3277 -h1,4596:29388775,15643355:0,411205,112570 -) -k1,4596:29776107,15643355:210385 -k1,4596:30884991,15643355:210385 -k1,4596:32583029,15643355:0 -) -(1,4597:6797234,16484843:25785795,513147,134348 -k1,4596:9808882,16484843:237509 -k1,4596:13202605,16484843:237509 -k1,4596:14099406,16484843:237509 -k1,4596:15540156,16484843:237509 -k1,4596:18439082,16484843:237509 -k1,4596:19847064,16484843:237509 -k1,4596:21217035,16484843:237509 -k1,4596:22984810,16484843:237509 -k1,4596:23873747,16484843:237509 -k1,4596:26676335,16484843:237509 -(1,4596:26676335,16484843:0,414482,115847 -r1,4691:27034601,16484843:358266,530329,115847 -k1,4596:26676335,16484843:-358266 -) -(1,4596:26676335,16484843:358266,414482,115847 -k1,4596:26676335,16484843:3277 -h1,4596:27031324,16484843:0,411205,112570 -) -k1,4596:27272110,16484843:237509 -k1,4596:28271147,16484843:237509 -k1,4596:31563944,16484843:237509 -k1,4596:32583029,16484843:0 -) -(1,4597:6797234,17326331:25785795,513147,126483 -g1,4596:8302596,17326331 -g1,4596:11861856,17326331 -g1,4596:13512707,17326331 -g1,4596:15137344,17326331 -g1,4596:16507046,17326331 -g1,4596:17824319,17326331 -g1,4596:18379408,17326331 -g1,4596:21404549,17326331 -g1,4596:22263070,17326331 -g1,4596:23481384,17326331 -g1,4596:25921944,17326331 -k1,4597:32583029,17326331:3301054 -g1,4597:32583029,17326331 -) -v1,4599:6797234,18516797:0,393216,0 -(1,4605:6797234,20064634:25785795,1941053,196608 -g1,4605:6797234,20064634 -g1,4605:6797234,20064634 -g1,4605:6600626,20064634 -(1,4605:6600626,20064634:0,1941053,196608 -r1,4691:32779637,20064634:26179011,2137661,196608 -k1,4605:6600625,20064634:-26179012 -) -(1,4605:6600626,20064634:26179011,1941053,196608 -[1,4605:6797234,20064634:25785795,1744445,0 -(1,4601:6797234,18724415:25785795,404226,76021 -(1,4600:6797234,18724415:0,0,0 -g1,4600:6797234,18724415 -g1,4600:6797234,18724415 -g1,4600:6469554,18724415 -(1,4600:6469554,18724415:0,0,0 -) -g1,4600:6797234,18724415 -) -g1,4601:8377963,18724415 -g1,4601:9326401,18724415 -h1,4601:13436295,18724415:0,0,0 -k1,4601:32583029,18724415:19146734 -g1,4601:32583029,18724415 -) -(1,4602:6797234,19390593:25785795,404226,82312 -h1,4602:6797234,19390593:0,0,0 -g1,4602:9958692,19390593 -g1,4602:10907130,19390593 -k1,4602:10907130,19390593:0 -h1,4602:16913898,19390593:0,0,0 -k1,4602:32583029,19390593:15669131 -g1,4602:32583029,19390593 -) -(1,4603:6797234,20056771:25785795,388497,7863 -h1,4603:6797234,20056771:0,0,0 -h1,4603:8061817,20056771:0,0,0 -k1,4603:32583029,20056771:24521212 -g1,4603:32583029,20056771 -) -] -) -g1,4605:32583029,20064634 -g1,4605:6797234,20064634 -g1,4605:6797234,20064634 -g1,4605:32583029,20064634 -g1,4605:32583029,20064634 -) -h1,4605:6797234,20261242:0,0,0 -] -g1,4608:32583029,20785530 -) -h1,4608:6630773,20785530:0,0,0 -v1,4610:6630773,22151306:0,393216,0 -(1,4691:6630773,40016364:25952256,18258274,0 -g1,4691:6630773,40016364 -g1,4691:6303093,40016364 -r1,4691:6401397,40016364:98304,18258274,0 -g1,4691:6600626,40016364 -g1,4691:6797234,40016364 -[1,4691:6797234,40016364:25785795,18258274,0 -(1,4612:6797234,22513379:25785795,755289,196608 -(1,4610:6797234,22513379:0,755289,196608 -r1,4691:8134168,22513379:1336934,951897,196608 -k1,4610:6797234,22513379:-1336934 -) -(1,4610:6797234,22513379:1336934,755289,196608 -) -k1,4610:8343864,22513379:209696 -k1,4610:8671544,22513379:327680 -k1,4610:8671544,22513379:0 -k1,4611:8671544,22513379:0 -k1,4611:9509075,22513379:209696 -k1,4611:10307284,22513379:209696 -k1,4611:13256386,22513379:209697 -k1,4611:14860033,22513379:209696 -k1,4611:18244948,22513379:209696 -k1,4611:20881442,22513379:209696 -k1,4611:22195420,22513379:209696 -k1,4611:23152882,22513379:209696 -k1,4611:24940031,22513379:209697 -k1,4611:26543678,22513379:209696 -(1,4611:26543678,22513379:0,452978,122846 -r1,4691:29012215,22513379:2468537,575824,122846 -k1,4611:26543678,22513379:-2468537 -) -(1,4611:26543678,22513379:2468537,452978,122846 -k1,4611:26543678,22513379:3277 -h1,4611:29008938,22513379:0,411205,112570 -) -k1,4611:29221911,22513379:209696 -k1,4611:30114492,22513379:209696 -(1,4611:30114492,22513379:0,452978,115847 -r1,4691:32583029,22513379:2468537,568825,115847 -k1,4611:30114492,22513379:-2468537 -) -(1,4611:30114492,22513379:2468537,452978,115847 -k1,4611:30114492,22513379:3277 -h1,4611:32579752,22513379:0,411205,112570 -) -k1,4611:32583029,22513379:0 -) -(1,4612:6797234,23354867:25785795,513147,134348 -k1,4611:9277772,23354867:296223 -k1,4611:12271456,23354867:296222 -k1,4611:14578324,23354867:296223 -k1,4611:15978828,23354867:296222 -k1,4611:17022817,23354867:296223 -k1,4611:19264803,23354867:296222 -k1,4611:20633195,23354867:296223 -k1,4611:21877068,23354867:296222 -k1,4611:25086366,23354867:296223 -k1,4611:26758189,23354867:296222 -k1,4611:29284602,23354867:296223 -k1,4611:31591469,23354867:296222 -k1,4611:32583029,23354867:0 -) -(1,4612:6797234,24196355:25785795,513147,134348 -k1,4611:10778786,24196355:194882 -k1,4611:15494341,24196355:194881 -(1,4611:15494341,24196355:0,452978,115847 -r1,4691:17611166,24196355:2116825,568825,115847 -k1,4611:15494341,24196355:-2116825 -) -(1,4611:15494341,24196355:2116825,452978,115847 -k1,4611:15494341,24196355:3277 -h1,4611:17607889,24196355:0,411205,112570 -) -k1,4611:17806048,24196355:194882 -k1,4611:20011574,24196355:194881 -k1,4611:21198016,24196355:194882 -k1,4611:24553698,24196355:194881 -k1,4611:26016046,24196355:194882 -(1,4611:26016046,24196355:0,452978,122846 -r1,4691:28484583,24196355:2468537,575824,122846 -k1,4611:26016046,24196355:-2468537 -) -(1,4611:26016046,24196355:2468537,452978,122846 -k1,4611:26016046,24196355:3277 -h1,4611:28481306,24196355:0,411205,112570 -) -k1,4611:28679464,24196355:194881 -k1,4611:30884991,24196355:194882 -k1,4611:32583029,24196355:0 -) -(1,4612:6797234,25037843:25785795,505283,126483 -k1,4611:8473745,25037843:163285 -k1,4611:9323193,25037843:163286 -k1,4611:12086947,25037843:163285 -k1,4611:13446920,25037843:163286 -k1,4611:17086890,25037843:163285 -k1,4611:17781672,25037843:163285 -k1,4611:19522410,25037843:163286 -k1,4611:22531924,25037843:163285 -k1,4611:23767378,25037843:163285 -k1,4611:24388761,25037843:163286 -k1,4611:26044956,25037843:163285 -k1,4611:27659209,25037843:163286 -k1,4611:29573616,25037843:163285 -k1,4612:32583029,25037843:0 -) -(1,4612:6797234,25879331:25785795,505283,134348 -k1,4611:8600529,25879331:205527 -k1,4611:11328537,25879331:205527 -k1,4611:13317299,25879331:205527 -k1,4611:16109531,25879331:205526 -k1,4611:17124428,25879331:205527 -k1,4611:18305786,25879331:205527 -k1,4611:19900676,25879331:205527 -k1,4611:21544718,25879331:205527 -k1,4611:24647592,25879331:205527 -k1,4611:26588511,25879331:205526 -(1,4611:26588511,25879331:0,452978,122846 -r1,4691:29057048,25879331:2468537,575824,122846 -k1,4611:26588511,25879331:-2468537 -) -(1,4611:26588511,25879331:2468537,452978,122846 -k1,4611:26588511,25879331:3277 -h1,4611:29053771,25879331:0,411205,112570 -) -k1,4611:29262575,25879331:205527 -k1,4611:31478747,25879331:205527 -k1,4611:32583029,25879331:0 -) -(1,4612:6797234,26720819:25785795,513147,126483 -g1,4611:9625767,26720819 -k1,4612:32583029,26720819:18707908 -g1,4612:32583029,26720819 -) -v1,4614:6797234,27911285:0,393216,0 -(1,4646:6797234,37478144:25785795,9960075,196608 -g1,4646:6797234,37478144 -g1,4646:6797234,37478144 -g1,4646:6600626,37478144 -(1,4646:6600626,37478144:0,9960075,196608 -r1,4691:32779637,37478144:26179011,10156683,196608 -k1,4646:6600625,37478144:-26179012 -) -(1,4646:6600626,37478144:26179011,9960075,196608 -[1,4646:6797234,37478144:25785795,9763467,0 -(1,4616:6797234,28118903:25785795,404226,76021 -(1,4615:6797234,28118903:0,0,0 -g1,4615:6797234,28118903 -g1,4615:6797234,28118903 -g1,4615:6469554,28118903 -(1,4615:6469554,28118903:0,0,0 -) -g1,4615:6797234,28118903 -) -g1,4616:8377963,28118903 -g1,4616:9326401,28118903 -h1,4616:13436295,28118903:0,0,0 -k1,4616:32583029,28118903:19146734 -g1,4616:32583029,28118903 -) -(1,4617:6797234,28785081:25785795,379060,6290 -h1,4617:6797234,28785081:0,0,0 -h1,4617:8061817,28785081:0,0,0 -k1,4617:32583029,28785081:24521212 -g1,4617:32583029,28785081 -) -(1,4621:6797234,29451259:25785795,404226,76021 -(1,4619:6797234,29451259:0,0,0 -g1,4619:6797234,29451259 -g1,4619:6797234,29451259 -g1,4619:6469554,29451259 -(1,4619:6469554,29451259:0,0,0 -) -g1,4619:6797234,29451259 -) -g1,4621:7745671,29451259 -g1,4621:8061817,29451259 -g1,4621:9326400,29451259 -g1,4621:10590983,29451259 -g1,4621:11855566,29451259 -g1,4621:13120149,29451259 -g1,4621:14384732,29451259 -g1,4621:15649315,29451259 -g1,4621:16913898,29451259 -g1,4621:18178481,29451259 -g1,4621:19443064,29451259 -g1,4621:20707647,29451259 -h1,4621:21656084,29451259:0,0,0 -k1,4621:32583029,29451259:10926945 -g1,4621:32583029,29451259 -) -(1,4623:6797234,30772797:25785795,404226,76021 -(1,4622:6797234,30772797:0,0,0 -g1,4622:6797234,30772797 -g1,4622:6797234,30772797 -g1,4622:6469554,30772797 -(1,4622:6469554,30772797:0,0,0 -) -g1,4622:6797234,30772797 -) -h1,4623:9010254,30772797:0,0,0 -k1,4623:32583030,30772797:23572776 -g1,4623:32583030,30772797 -) -(1,4627:6797234,31438975:25785795,404226,76021 -(1,4625:6797234,31438975:0,0,0 -g1,4625:6797234,31438975 -g1,4625:6797234,31438975 -g1,4625:6469554,31438975 -(1,4625:6469554,31438975:0,0,0 -) -g1,4625:6797234,31438975 -) -g1,4627:7745671,31438975 -g1,4627:9010254,31438975 -h1,4627:9958691,31438975:0,0,0 -k1,4627:32583029,31438975:22624338 -g1,4627:32583029,31438975 -) -(1,4629:6797234,32760513:25785795,404226,76021 -(1,4628:6797234,32760513:0,0,0 -g1,4628:6797234,32760513 -g1,4628:6797234,32760513 -g1,4628:6469554,32760513 -(1,4628:6469554,32760513:0,0,0 -) -g1,4628:6797234,32760513 -) -h1,4629:9642545,32760513:0,0,0 -k1,4629:32583029,32760513:22940484 -g1,4629:32583029,32760513 -) -(1,4633:6797234,33426691:25785795,404226,76021 -(1,4631:6797234,33426691:0,0,0 -g1,4631:6797234,33426691 -g1,4631:6797234,33426691 -g1,4631:6469554,33426691 -(1,4631:6469554,33426691:0,0,0 -) -g1,4631:6797234,33426691 -) -g1,4633:7745671,33426691 -g1,4633:9010254,33426691 -h1,4633:9958691,33426691:0,0,0 -k1,4633:32583029,33426691:22624338 -g1,4633:32583029,33426691 -) -(1,4635:6797234,34748229:25785795,404226,101187 -(1,4634:6797234,34748229:0,0,0 -g1,4634:6797234,34748229 -g1,4634:6797234,34748229 -g1,4634:6469554,34748229 -(1,4634:6469554,34748229:0,0,0 -) -g1,4634:6797234,34748229 -) -g1,4635:10907128,34748229 -g1,4635:11539420,34748229 -k1,4635:11539420,34748229:0 -h1,4635:14700877,34748229:0,0,0 -k1,4635:32583029,34748229:17882152 -g1,4635:32583029,34748229 -) -(1,4639:6797234,35414407:25785795,404226,76021 -(1,4637:6797234,35414407:0,0,0 -g1,4637:6797234,35414407 -g1,4637:6797234,35414407 -g1,4637:6469554,35414407 -(1,4637:6469554,35414407:0,0,0 -) -g1,4637:6797234,35414407 -) -g1,4639:7745671,35414407 -g1,4639:9010254,35414407 -h1,4639:9958691,35414407:0,0,0 -k1,4639:32583029,35414407:22624338 -g1,4639:32583029,35414407 -) -(1,4641:6797234,36735945:25785795,404226,76021 -(1,4640:6797234,36735945:0,0,0 -g1,4640:6797234,36735945 -g1,4640:6797234,36735945 -g1,4640:6469554,36735945 -(1,4640:6469554,36735945:0,0,0 -) -g1,4640:6797234,36735945 -) -h1,4641:9010254,36735945:0,0,0 -k1,4641:32583030,36735945:23572776 -g1,4641:32583030,36735945 -) -(1,4645:6797234,37402123:25785795,404226,76021 -(1,4643:6797234,37402123:0,0,0 -g1,4643:6797234,37402123 -g1,4643:6797234,37402123 -g1,4643:6469554,37402123 -(1,4643:6469554,37402123:0,0,0 -) -g1,4643:6797234,37402123 -) -g1,4645:7745671,37402123 -g1,4645:9010254,37402123 -h1,4645:9958691,37402123:0,0,0 -k1,4645:32583029,37402123:22624338 -g1,4645:32583029,37402123 -) -] -) -g1,4646:32583029,37478144 -g1,4646:6797234,37478144 -g1,4646:6797234,37478144 -g1,4646:32583029,37478144 -g1,4646:32583029,37478144 -) -h1,4646:6797234,37674752:0,0,0 -(1,4650:6797234,39040528:25785795,513147,126483 -h1,4649:6797234,39040528:983040,0,0 -k1,4649:9617702,39040528:175435 -k1,4649:10996378,39040528:175435 -k1,4649:14954550,39040528:175434 -k1,4649:15998337,39040528:175435 -k1,4649:17278054,39040528:175435 -k1,4649:19065019,39040528:175435 -k1,4649:20524959,39040528:175434 -k1,4649:21166355,39040528:175435 -k1,4649:23851164,39040528:175435 -k1,4649:26453397,39040528:175435 -k1,4649:27620391,39040528:175434 -k1,4649:28862097,39040528:175435 -k1,4649:30920381,39040528:175435 -k1,4650:32583029,39040528:0 +] +g1,3955:6630773,4812305 +k1,3955:22348274,4812305:14920583 +g1,3955:23970945,4812305 +g1,3955:24793421,4812305 +g1,3955:27528893,4812305 +g1,3955:28938572,4812305 ) -(1,4650:6797234,39882016:25785795,505283,134348 -g1,4649:8536559,39882016 -g1,4649:10115976,39882016 -g1,4649:11306765,39882016 -g1,4649:14595361,39882016 -g1,4649:15446018,39882016 -g1,4649:16664332,39882016 -g1,4649:18247681,39882016 -g1,4649:20798997,39882016 -k1,4650:32583029,39882016:9380171 -g1,4650:32583029,39882016 ) ] -g1,4691:32583029,40016364 +[1,3955:6630773,45706769:25952256,40108032,0 +(1,3955:6630773,45706769:25952256,40108032,0 +(1,3955:6630773,45706769:0,0,0 +g1,3955:6630773,45706769 ) -] -(1,4691:32583029,45706769:0,0,0 -g1,4691:32583029,45706769 +[1,3955:6630773,45706769:25952256,40108032,0 +v1,3803:6630773,6254097:0,393216,0 +(1,3803:6630773,8193604:25952256,2332723,196608 +g1,3803:6630773,8193604 +g1,3803:6630773,8193604 +g1,3803:6434165,8193604 +(1,3803:6434165,8193604:0,2332723,196608 +r1,3955:32779637,8193604:26345472,2529331,196608 +k1,3803:6434165,8193604:-26345472 ) +(1,3803:6434165,8193604:26345472,2332723,196608 +[1,3803:6630773,8193604:25952256,2136115,0 +(1,3796:6630773,6481928:25952256,424439,79822 +(1,3794:6630773,6481928:0,0,0 +g1,3794:6630773,6481928 +g1,3794:6630773,6481928 +g1,3794:6303093,6481928 +(1,3794:6303093,6481928:0,0,0 ) -] -(1,4691:6630773,47279633:25952256,0,0 -h1,4691:6630773,47279633:25952256,0,0 +g1,3794:6630773,6481928 ) -] -(1,4691:4262630,4025873:0,0,0 -[1,4691:-473656,4025873:0,0,0 -(1,4691:-473656,-710413:0,0,0 -(1,4691:-473656,-710413:0,0,0 -g1,4691:-473656,-710413 +g1,3796:7626635,6481928 +g1,3796:8954451,6481928 +h1,3796:10614221,6481928:0,0,0 +k1,3796:32583029,6481928:21968808 +g1,3796:32583029,6481928 ) -g1,4691:-473656,-710413 +(1,3798:6630773,7297855:25952256,424439,86428 +(1,3797:6630773,7297855:0,0,0 +g1,3797:6630773,7297855 +g1,3797:6630773,7297855 +g1,3797:6303093,7297855 +(1,3797:6303093,7297855:0,0,0 +) +g1,3797:6630773,7297855 +) +k1,3798:6630773,7297855:0 +g1,3798:11610082,7297855 +h1,3798:14929621,7297855:0,0,0 +k1,3798:32583029,7297855:17653408 +g1,3798:32583029,7297855 +) +(1,3802:6630773,8113782:25952256,424439,79822 +(1,3800:6630773,8113782:0,0,0 +g1,3800:6630773,8113782 +g1,3800:6630773,8113782 +g1,3800:6303093,8113782 +(1,3800:6303093,8113782:0,0,0 +) +g1,3800:6630773,8113782 +) +g1,3802:7626635,8113782 +g1,3802:8954451,8113782 +h1,3802:10614221,8113782:0,0,0 +k1,3802:32583029,8113782:21968808 +g1,3802:32583029,8113782 +) +] +) +g1,3803:32583029,8193604 +g1,3803:6630773,8193604 +g1,3803:6630773,8193604 +g1,3803:32583029,8193604 +g1,3803:32583029,8193604 +) +h1,3803:6630773,8390212:0,0,0 +(1,3807:6630773,9255292:25952256,505283,134348 +h1,3806:6630773,9255292:983040,0,0 +k1,3806:10906632,9255292:172650 +k1,3806:12473232,9255292:172649 +k1,3806:14714198,9255292:172650 +k1,3806:17365420,9255292:172650 +k1,3806:18932020,9255292:172649 +(1,3806:18932020,9255292:0,452978,115847 +r1,3955:19993709,9255292:1061689,568825,115847 +k1,3806:18932020,9255292:-1061689 +) +(1,3806:18932020,9255292:1061689,452978,115847 +k1,3806:18932020,9255292:3277 +h1,3806:19990432,9255292:0,411205,112570 +) +k1,3806:20166359,9255292:172650 +k1,3806:21330569,9255292:172650 +k1,3806:23024964,9255292:172649 +k1,3806:26198508,9255292:172650 +k1,3806:26727018,9255292:172650 +k1,3806:28969294,9255292:172649 +k1,3806:30995958,9255292:172650 +(1,3806:30995958,9255292:0,414482,115847 +r1,3955:32409359,9255292:1413401,530329,115847 +k1,3806:30995958,9255292:-1413401 +) +(1,3806:30995958,9255292:1413401,414482,115847 +k1,3806:30995958,9255292:3277 +h1,3806:32406082,9255292:0,411205,112570 +) +k1,3807:32583029,9255292:0 +) +(1,3807:6630773,10120372:25952256,414482,115847 +(1,3806:6630773,10120372:0,414482,115847 +r1,3955:8395886,10120372:1765113,530329,115847 +k1,3806:6630773,10120372:-1765113 +) +(1,3806:6630773,10120372:1765113,414482,115847 +k1,3806:6630773,10120372:3277 +h1,3806:8392609,10120372:0,411205,112570 +) +g1,3806:8595115,10120372 +g1,3806:9477229,10120372 +(1,3806:9477229,10120372:0,414482,115847 +r1,3955:10187207,10120372:709978,530329,115847 +k1,3806:9477229,10120372:-709978 +) +(1,3806:9477229,10120372:709978,414482,115847 +k1,3806:9477229,10120372:3277 +h1,3806:10183930,10120372:0,411205,112570 +) +g1,3806:10560106,10120372 +g1,3806:10560106,10120372 +g1,3806:10759335,10120372 +g1,3806:10759335,10120372 +k1,3807:32583029,10120372:21823694 +g1,3807:32583029,10120372 +) +v1,3809:6630773,10805227:0,393216,0 +(1,3840:6630773,18462829:25952256,8050818,196608 +g1,3840:6630773,18462829 +g1,3840:6630773,18462829 +g1,3840:6434165,18462829 +(1,3840:6434165,18462829:0,8050818,196608 +r1,3955:32779637,18462829:26345472,8247426,196608 +k1,3840:6434165,18462829:-26345472 +) +(1,3840:6434165,18462829:26345472,8050818,196608 +[1,3840:6630773,18462829:25952256,7854210,0 +(1,3811:6630773,11039664:25952256,431045,112852 +(1,3810:6630773,11039664:0,0,0 +g1,3810:6630773,11039664 +g1,3810:6630773,11039664 +g1,3810:6303093,11039664 +(1,3810:6303093,11039664:0,0,0 +) +g1,3810:6630773,11039664 +) +k1,3811:6630773,11039664:0 +g1,3811:12273990,11039664 +g1,3811:12937898,11039664 +g1,3811:13933760,11039664 +g1,3811:17917207,11039664 +g1,3811:18913069,11039664 +g1,3811:21568701,11039664 +g1,3811:22564563,11039664 +k1,3811:22564563,11039664:1652 +h1,3811:24557939,11039664:0,0,0 +k1,3811:32583029,11039664:8025090 +g1,3811:32583029,11039664 +) +(1,3815:6630773,11855591:25952256,424439,79822 +(1,3813:6630773,11855591:0,0,0 +g1,3813:6630773,11855591 +g1,3813:6630773,11855591 +g1,3813:6303093,11855591 +(1,3813:6303093,11855591:0,0,0 +) +g1,3813:6630773,11855591 +) +g1,3815:7626635,11855591 +g1,3815:8954451,11855591 +h1,3815:10282267,11855591:0,0,0 +k1,3815:32583029,11855591:22300762 +g1,3815:32583029,11855591 +) +(1,3817:6630773,12671518:25952256,424439,79822 +(1,3816:6630773,12671518:0,0,0 +g1,3816:6630773,12671518 +g1,3816:6630773,12671518 +g1,3816:6303093,12671518 +(1,3816:6303093,12671518:0,0,0 +) +g1,3816:6630773,12671518 +) +k1,3817:6630773,12671518:0 +h1,3817:11610082,12671518:0,0,0 +k1,3817:32583030,12671518:20972948 +g1,3817:32583030,12671518 +) +(1,3821:6630773,13487445:25952256,424439,79822 +(1,3819:6630773,13487445:0,0,0 +g1,3819:6630773,13487445 +g1,3819:6630773,13487445 +g1,3819:6303093,13487445 +(1,3819:6303093,13487445:0,0,0 +) +g1,3819:6630773,13487445 +) +g1,3821:7626635,13487445 +g1,3821:8954451,13487445 +h1,3821:10614221,13487445:0,0,0 +k1,3821:32583029,13487445:21968808 +g1,3821:32583029,13487445 +) +(1,3823:6630773,14303372:25952256,424439,112852 +(1,3822:6630773,14303372:0,0,0 +g1,3822:6630773,14303372 +g1,3822:6630773,14303372 +g1,3822:6303093,14303372 +(1,3822:6303093,14303372:0,0,0 +) +g1,3822:6630773,14303372 +) +k1,3823:6630773,14303372:0 +h1,3823:11942036,14303372:0,0,0 +k1,3823:32583028,14303372:20640992 +g1,3823:32583028,14303372 +) +(1,3827:6630773,15119299:25952256,424439,79822 +(1,3825:6630773,15119299:0,0,0 +g1,3825:6630773,15119299 +g1,3825:6630773,15119299 +g1,3825:6303093,15119299 +(1,3825:6303093,15119299:0,0,0 +) +g1,3825:6630773,15119299 +) +g1,3827:7626635,15119299 +g1,3827:8954451,15119299 +h1,3827:10282267,15119299:0,0,0 +k1,3827:32583029,15119299:22300762 +g1,3827:32583029,15119299 +) +(1,3829:6630773,15935226:25952256,424439,112852 +(1,3828:6630773,15935226:0,0,0 +g1,3828:6630773,15935226 +g1,3828:6630773,15935226 +g1,3828:6303093,15935226 +(1,3828:6303093,15935226:0,0,0 +) +g1,3828:6630773,15935226 +) +k1,3829:6630773,15935226:0 +h1,3829:11942036,15935226:0,0,0 +k1,3829:32583028,15935226:20640992 +g1,3829:32583028,15935226 +) +(1,3833:6630773,16751153:25952256,424439,79822 +(1,3831:6630773,16751153:0,0,0 +g1,3831:6630773,16751153 +g1,3831:6630773,16751153 +g1,3831:6303093,16751153 +(1,3831:6303093,16751153:0,0,0 +) +g1,3831:6630773,16751153 +) +g1,3833:7626635,16751153 +g1,3833:8954451,16751153 +h1,3833:10614221,16751153:0,0,0 +k1,3833:32583029,16751153:21968808 +g1,3833:32583029,16751153 +) +(1,3835:6630773,17567080:25952256,424439,79822 +(1,3834:6630773,17567080:0,0,0 +g1,3834:6630773,17567080 +g1,3834:6630773,17567080 +g1,3834:6303093,17567080 +(1,3834:6303093,17567080:0,0,0 +) +g1,3834:6630773,17567080 +) +k1,3835:6630773,17567080:0 +h1,3835:12605944,17567080:0,0,0 +k1,3835:32583028,17567080:19977084 +g1,3835:32583028,17567080 +) +(1,3839:6630773,18383007:25952256,424439,79822 +(1,3837:6630773,18383007:0,0,0 +g1,3837:6630773,18383007 +g1,3837:6630773,18383007 +g1,3837:6303093,18383007 +(1,3837:6303093,18383007:0,0,0 +) +g1,3837:6630773,18383007 +) +g1,3839:7626635,18383007 +g1,3839:8954451,18383007 +h1,3839:10614221,18383007:0,0,0 +k1,3839:32583029,18383007:21968808 +g1,3839:32583029,18383007 +) +] +) +g1,3840:32583029,18462829 +g1,3840:6630773,18462829 +g1,3840:6630773,18462829 +g1,3840:32583029,18462829 +g1,3840:32583029,18462829 +) +h1,3840:6630773,18659437:0,0,0 +v1,3844:6630773,19524517:0,393216,0 +(1,3955:6630773,44041192:25952256,24909891,0 +g1,3955:6630773,44041192 +g1,3955:6237557,44041192 +r1,3955:6368629,44041192:131072,24909891,0 +g1,3955:6567858,44041192 +g1,3955:6764466,44041192 +[1,3955:6764466,44041192:25818563,24909891,0 +(1,3845:6764466,19832815:25818563,701514,196608 +(1,3844:6764466,19832815:0,701514,196608 +r1,3955:8010564,19832815:1246098,898122,196608 +k1,3844:6764466,19832815:-1246098 +) +(1,3844:6764466,19832815:1246098,701514,196608 +) +k1,3844:8158610,19832815:148046 +k1,3844:8486290,19832815:327680 +k1,3844:9831023,19832815:148046 +k1,3844:11702666,19832815:148046 +k1,3844:12510005,19832815:148047 +k1,3844:13428754,19832815:148046 +k1,3844:15536326,19832815:148046 +k1,3844:16215869,19832815:148046 +k1,3844:16719775,19832815:148046 +k1,3844:20938917,19832815:148046 +k1,3844:24038705,19832815:148046 +k1,3844:25378197,19832815:148047 +k1,3844:27778715,19832815:148046 +k1,3844:28578189,19832815:148046 +k1,3844:30470148,19832815:148046 +k1,3844:32583029,19832815:0 +) +(1,3845:6764466,20697895:25818563,513147,134348 +k1,3844:9447524,20697895:301480 +k1,3844:10435166,20697895:301480 +k1,3844:12058508,20697895:301481 +k1,3844:13019280,20697895:301480 +k1,3844:14339845,20697895:301480 +k1,3844:15056066,20697895:301378 +k1,3844:18373513,20697895:301480 +k1,3844:19302828,20697895:301480 +k1,3844:22898804,20697895:301481 +k1,3844:25962627,20697895:301480 +k1,3844:26678847,20697895:301377 +k1,3844:29270156,20697895:301481 +k1,3844:30230928,20697895:301480 +k1,3844:30888268,20697895:301480 +k1,3844:32583029,20697895:0 +) +(1,3845:6764466,21562975:25818563,513147,134348 +k1,3844:8926551,21562975:205835 +k1,3844:10625953,21562975:205836 +k1,3844:11517950,21562975:205835 +(1,3844:11517950,21562975:0,452978,115847 +r1,3955:13986487,21562975:2468537,568825,115847 +k1,3844:11517950,21562975:-2468537 +) +(1,3844:11517950,21562975:2468537,452978,115847 +k1,3844:11517950,21562975:3277 +h1,3844:13983210,21562975:0,411205,112570 +) +k1,3844:14365992,21562975:205835 +k1,3844:15676110,21562975:205836 +k1,3844:18018419,21562975:205835 +k1,3844:18875682,21562975:205835 +k1,3844:21843861,21562975:205836 +(1,3844:21843861,21562975:0,452978,115847 +r1,3955:23608974,21562975:1765113,568825,115847 +k1,3844:21843861,21562975:-1765113 +) +(1,3844:21843861,21562975:1765113,452978,115847 +k1,3844:21843861,21562975:3277 +h1,3844:23605697,21562975:0,411205,112570 +) +k1,3844:24666122,21562975:205835 +k1,3844:27226666,21562975:205835 +k1,3844:28623947,21562975:205836 +k1,3844:29848867,21562975:205835 +k1,3844:32583029,21562975:0 +) +(1,3845:6764466,22428055:25818563,513147,134348 +k1,3844:7573235,22428055:149477 +k1,3844:10507336,22428055:149476 +k1,3844:11648373,22428055:149477 +k1,3844:14927193,22428055:149476 +k1,3844:15692708,22428055:149477 +k1,3844:18120871,22428055:149476 +h1,3844:19091459,22428055:0,0,0 +k1,3844:19240936,22428055:149477 +k1,3844:20199783,22428055:149477 +k1,3844:21847412,22428055:149476 +h1,3844:23042789,22428055:0,0,0 +k1,3844:23365936,22428055:149477 +k1,3844:26195835,22428055:149476 +k1,3844:27739263,22428055:149477 +k1,3844:32583029,22428055:0 +) +(1,3845:6764466,23293135:25818563,473825,134348 +k1,3845:32583030,23293135:21292648 +g1,3845:32583030,23293135 +) +v1,3847:6764466,23977990:0,393216,0 +(1,3884:6764466,33300476:25818563,9715702,196608 +g1,3884:6764466,33300476 +g1,3884:6764466,33300476 +g1,3884:6567858,33300476 +(1,3884:6567858,33300476:0,9715702,196608 +r1,3955:32779637,33300476:26211779,9912310,196608 +k1,3884:6567857,33300476:-26211780 +) +(1,3884:6567858,33300476:26211779,9715702,196608 +[1,3884:6764466,33300476:25818563,9519094,0 +(1,3849:6764466,24212427:25818563,431045,112852 +(1,3848:6764466,24212427:0,0,0 +g1,3848:6764466,24212427 +g1,3848:6764466,24212427 +g1,3848:6436786,24212427 +(1,3848:6436786,24212427:0,0,0 +) +g1,3848:6764466,24212427 +) +k1,3849:6764466,24212427:0 +g1,3849:10084006,24212427 +g1,3849:11079868,24212427 +g1,3849:12407684,24212427 +g1,3849:13071592,24212427 +g1,3849:14067454,24212427 +g1,3849:18050901,24212427 +g1,3849:19046763,24212427 +g1,3849:21702395,24212427 +g1,3849:22698257,24212427 +k1,3849:22698257,24212427:1652 +h1,3849:24691633,24212427:0,0,0 +k1,3849:32583029,24212427:7891396 +g1,3849:32583029,24212427 +) +(1,3853:6764466,25028354:25818563,424439,79822 +(1,3851:6764466,25028354:0,0,0 +g1,3851:6764466,25028354 +g1,3851:6764466,25028354 +g1,3851:6436786,25028354 +(1,3851:6436786,25028354:0,0,0 +) +g1,3851:6764466,25028354 +) +g1,3853:7760328,25028354 +g1,3853:9088144,25028354 +h1,3853:12075729,25028354:0,0,0 +k1,3853:32583029,25028354:20507300 +g1,3853:32583029,25028354 +) +(1,3855:6764466,25844281:25818563,431045,106246 +(1,3854:6764466,25844281:0,0,0 +g1,3854:6764466,25844281 +g1,3854:6764466,25844281 +g1,3854:6436786,25844281 +(1,3854:6436786,25844281:0,0,0 +) +g1,3854:6764466,25844281 +) +k1,3855:6764466,25844281:0 +g1,3855:10747914,25844281 +g1,3855:11743776,25844281 +h1,3855:12739638,25844281:0,0,0 +k1,3855:32583030,25844281:19843392 +g1,3855:32583030,25844281 +) +(1,3859:6764466,26660208:25818563,424439,79822 +(1,3857:6764466,26660208:0,0,0 +g1,3857:6764466,26660208 +g1,3857:6764466,26660208 +g1,3857:6436786,26660208 +(1,3857:6436786,26660208:0,0,0 +) +g1,3857:6764466,26660208 +) +g1,3859:7760328,26660208 +g1,3859:9088144,26660208 +h1,3859:11743775,26660208:0,0,0 +k1,3859:32583029,26660208:20839254 +g1,3859:32583029,26660208 +) +(1,3861:6764466,27476135:25818563,424439,86428 +(1,3860:6764466,27476135:0,0,0 +g1,3860:6764466,27476135 +g1,3860:6764466,27476135 +g1,3860:6436786,27476135 +(1,3860:6436786,27476135:0,0,0 +) +g1,3860:6764466,27476135 +) +k1,3861:6764466,27476135:0 +g1,3861:10415960,27476135 +g1,3861:11411822,27476135 +h1,3861:12407684,27476135:0,0,0 +k1,3861:32583028,27476135:20175344 +g1,3861:32583028,27476135 +) +(1,3865:6764466,28292062:25818563,424439,79822 +(1,3863:6764466,28292062:0,0,0 +g1,3863:6764466,28292062 +g1,3863:6764466,28292062 +g1,3863:6436786,28292062 +(1,3863:6436786,28292062:0,0,0 +) +g1,3863:6764466,28292062 +) +g1,3865:7760328,28292062 +g1,3865:9088144,28292062 +h1,3865:12075729,28292062:0,0,0 +k1,3865:32583029,28292062:20507300 +g1,3865:32583029,28292062 +) +(1,3867:6764466,29107989:25818563,431045,112852 +(1,3866:6764466,29107989:0,0,0 +g1,3866:6764466,29107989 +g1,3866:6764466,29107989 +g1,3866:6436786,29107989 +(1,3866:6436786,29107989:0,0,0 +) +g1,3866:6764466,29107989 +) +k1,3867:6764466,29107989:0 +g1,3867:10415960,29107989 +g1,3867:11743776,29107989 +g1,3867:13403546,29107989 +g1,3867:14067454,29107989 +g1,3867:15063316,29107989 +g1,3867:19046763,29107989 +g1,3867:20042625,29107989 +g1,3867:22698257,29107989 +g1,3867:23694119,29107989 +k1,3867:23694119,29107989:1652 +h1,3867:25687495,29107989:0,0,0 +k1,3867:32583029,29107989:6895534 +g1,3867:32583029,29107989 +) +(1,3871:6764466,29923916:25818563,424439,79822 +(1,3869:6764466,29923916:0,0,0 +g1,3869:6764466,29923916 +g1,3869:6764466,29923916 +g1,3869:6436786,29923916 +(1,3869:6436786,29923916:0,0,0 +) +g1,3869:6764466,29923916 +) +g1,3871:7760328,29923916 +g1,3871:9088144,29923916 +h1,3871:12075729,29923916:0,0,0 +k1,3871:32583029,29923916:20507300 +g1,3871:32583029,29923916 +) +(1,3873:6764466,30739843:25818563,431045,106246 +(1,3872:6764466,30739843:0,0,0 +g1,3872:6764466,30739843 +g1,3872:6764466,30739843 +g1,3872:6436786,30739843 +(1,3872:6436786,30739843:0,0,0 +) +g1,3872:6764466,30739843 +) +k1,3873:6764466,30739843:0 +g1,3873:11079868,30739843 +g1,3873:12407684,30739843 +h1,3873:13735500,30739843:0,0,0 +k1,3873:32583028,30739843:18847528 +g1,3873:32583028,30739843 +) +(1,3877:6764466,31555770:25818563,424439,112852 +(1,3875:6764466,31555770:0,0,0 +g1,3875:6764466,31555770 +g1,3875:6764466,31555770 +g1,3875:6436786,31555770 +(1,3875:6436786,31555770:0,0,0 +) +g1,3875:6764466,31555770 +) +g1,3877:7760328,31555770 +g1,3877:9088144,31555770 +h1,3877:12075729,31555770:0,0,0 +k1,3877:32583029,31555770:20507300 +g1,3877:32583029,31555770 +) +(1,3879:6764466,32371697:25818563,424439,86428 +(1,3878:6764466,32371697:0,0,0 +g1,3878:6764466,32371697 +g1,3878:6764466,32371697 +g1,3878:6436786,32371697 +(1,3878:6436786,32371697:0,0,0 +) +g1,3878:6764466,32371697 +) +k1,3879:6764466,32371697:0 +g1,3879:10747914,32371697 +g1,3879:12075730,32371697 +h1,3879:13403546,32371697:0,0,0 +k1,3879:32583030,32371697:19179484 +g1,3879:32583030,32371697 +) +(1,3883:6764466,33187624:25818563,424439,112852 +(1,3881:6764466,33187624:0,0,0 +g1,3881:6764466,33187624 +g1,3881:6764466,33187624 +g1,3881:6436786,33187624 +(1,3881:6436786,33187624:0,0,0 +) +g1,3881:6764466,33187624 +) +g1,3883:7760328,33187624 +g1,3883:9088144,33187624 +h1,3883:12075729,33187624:0,0,0 +k1,3883:32583029,33187624:20507300 +g1,3883:32583029,33187624 +) +] +) +g1,3884:32583029,33300476 +g1,3884:6764466,33300476 +g1,3884:6764466,33300476 +g1,3884:32583029,33300476 +g1,3884:32583029,33300476 +) +h1,3884:6764466,33497084:0,0,0 +v1,3888:6764466,34181939:0,393216,0 +(1,3907:6764466,38575833:25818563,4787110,196608 +g1,3907:6764466,38575833 +g1,3907:6764466,38575833 +g1,3907:6567858,38575833 +(1,3907:6567858,38575833:0,4787110,196608 +r1,3955:32779637,38575833:26211779,4983718,196608 +k1,3907:6567857,38575833:-26211780 +) +(1,3907:6567858,38575833:26211779,4787110,196608 +[1,3907:6764466,38575833:25818563,4590502,0 +(1,3890:6764466,34416376:25818563,431045,112852 +(1,3889:6764466,34416376:0,0,0 +g1,3889:6764466,34416376 +g1,3889:6764466,34416376 +g1,3889:6436786,34416376 +(1,3889:6436786,34416376:0,0,0 +) +g1,3889:6764466,34416376 +) +k1,3890:6764466,34416376:0 +g1,3890:13071592,34416376 +g1,3890:14731362,34416376 +g1,3890:17055040,34416376 +g1,3890:17718948,34416376 +g1,3890:18714810,34416376 +g1,3890:22698257,34416376 +g1,3890:23694119,34416376 +g1,3890:26349751,34416376 +g1,3890:27345613,34416376 +k1,3890:27345613,34416376:1652 +h1,3890:29338989,34416376:0,0,0 +k1,3890:32583029,34416376:3244040 +g1,3890:32583029,34416376 +) +(1,3894:6764466,35232303:25818563,424439,79822 +(1,3892:6764466,35232303:0,0,0 +g1,3892:6764466,35232303 +g1,3892:6764466,35232303 +g1,3892:6436786,35232303 +(1,3892:6436786,35232303:0,0,0 +) +g1,3892:6764466,35232303 +) +g1,3894:7760328,35232303 +g1,3894:9088144,35232303 +h1,3894:12075729,35232303:0,0,0 +k1,3894:32583029,35232303:20507300 +g1,3894:32583029,35232303 +) +(1,3896:6764466,36048230:25818563,431045,106246 +(1,3895:6764466,36048230:0,0,0 +g1,3895:6764466,36048230 +g1,3895:6764466,36048230 +g1,3895:6436786,36048230 +(1,3895:6436786,36048230:0,0,0 +) +g1,3895:6764466,36048230 +) +k1,3896:6764466,36048230:0 +g1,3896:13735500,36048230 +g1,3896:15395270,36048230 +h1,3896:17386994,36048230:0,0,0 +k1,3896:32583029,36048230:15196035 +g1,3896:32583029,36048230 +) +(1,3900:6764466,36864157:25818563,424439,112852 +(1,3898:6764466,36864157:0,0,0 +g1,3898:6764466,36864157 +g1,3898:6764466,36864157 +g1,3898:6436786,36864157 +(1,3898:6436786,36864157:0,0,0 +) +g1,3898:6764466,36864157 +) +g1,3900:7760328,36864157 +g1,3900:9088144,36864157 +h1,3900:12075729,36864157:0,0,0 +k1,3900:32583029,36864157:20507300 +g1,3900:32583029,36864157 +) +(1,3902:6764466,37680084:25818563,431045,86428 +(1,3901:6764466,37680084:0,0,0 +g1,3901:6764466,37680084 +g1,3901:6764466,37680084 +g1,3901:6436786,37680084 +(1,3901:6436786,37680084:0,0,0 +) +g1,3901:6764466,37680084 +) +k1,3902:6764466,37680084:0 +g1,3902:13403546,37680084 +g1,3902:15063316,37680084 +h1,3902:17055040,37680084:0,0,0 +k1,3902:32583029,37680084:15527989 +g1,3902:32583029,37680084 +) +(1,3906:6764466,38496011:25818563,431045,79822 +(1,3904:6764466,38496011:0,0,0 +g1,3904:6764466,38496011 +g1,3904:6764466,38496011 +g1,3904:6436786,38496011 +(1,3904:6436786,38496011:0,0,0 +) +g1,3904:6764466,38496011 +) +g1,3906:7760328,38496011 +g1,3906:9088144,38496011 +h1,3906:11743775,38496011:0,0,0 +k1,3906:32583029,38496011:20839254 +g1,3906:32583029,38496011 +) +] +) +g1,3907:32583029,38575833 +g1,3907:6764466,38575833 +g1,3907:6764466,38575833 +g1,3907:32583029,38575833 +g1,3907:32583029,38575833 +) +h1,3907:6764466,38772441:0,0,0 +v1,3911:6764466,39457296:0,393216,0 +(1,3930:6764466,43844584:25818563,4780504,196608 +g1,3930:6764466,43844584 +g1,3930:6764466,43844584 +g1,3930:6567858,43844584 +(1,3930:6567858,43844584:0,4780504,196608 +r1,3955:32779637,43844584:26211779,4977112,196608 +k1,3930:6567857,43844584:-26211780 +) +(1,3930:6567858,43844584:26211779,4780504,196608 +[1,3930:6764466,43844584:25818563,4583896,0 +(1,3913:6764466,39685127:25818563,424439,86428 +(1,3912:6764466,39685127:0,0,0 +g1,3912:6764466,39685127 +g1,3912:6764466,39685127 +g1,3912:6436786,39685127 +(1,3912:6436786,39685127:0,0,0 +) +g1,3912:6764466,39685127 +) +k1,3913:6764466,39685127:0 +g1,3913:10747914,39685127 +g1,3913:12407684,39685127 +h1,3913:14067454,39685127:0,0,0 +k1,3913:32583030,39685127:18515576 +g1,3913:32583030,39685127 +) +(1,3917:6764466,40501054:25818563,424439,79822 +(1,3915:6764466,40501054:0,0,0 +g1,3915:6764466,40501054 +g1,3915:6764466,40501054 +g1,3915:6436786,40501054 +(1,3915:6436786,40501054:0,0,0 +) +g1,3915:6764466,40501054 +) +g1,3917:7760328,40501054 +g1,3917:9088144,40501054 +h1,3917:12739637,40501054:0,0,0 +k1,3917:32583029,40501054:19843392 +g1,3917:32583029,40501054 +) +(1,3919:6764466,41316981:25818563,431045,106246 +(1,3918:6764466,41316981:0,0,0 +g1,3918:6764466,41316981 +g1,3918:6764466,41316981 +g1,3918:6436786,41316981 +(1,3918:6436786,41316981:0,0,0 ) -] +g1,3918:6764466,41316981 ) -] -!21016 -}85 -Input:746:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:747:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:748:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:749:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!383 -{86 -[1,4769:4262630,47279633:28320399,43253760,0 -(1,4769:4262630,4025873:0,0,0 -[1,4769:-473656,4025873:0,0,0 -(1,4769:-473656,-710413:0,0,0 -(1,4769:-473656,-644877:0,0,0 -k1,4769:-473656,-644877:-65536 +k1,3919:6764466,41316981:0 +g1,3919:11411822,41316981 +g1,3919:13071592,41316981 +h1,3919:14731362,41316981:0,0,0 +k1,3919:32583030,41316981:17851668 +g1,3919:32583030,41316981 ) -(1,4769:-473656,4736287:0,0,0 -k1,4769:-473656,4736287:5209943 +(1,3923:6764466,42132908:25818563,424439,79822 +(1,3921:6764466,42132908:0,0,0 +g1,3921:6764466,42132908 +g1,3921:6764466,42132908 +g1,3921:6436786,42132908 +(1,3921:6436786,42132908:0,0,0 ) -g1,4769:-473656,-710413 +g1,3921:6764466,42132908 ) -] +g1,3923:7760328,42132908 +g1,3923:9088144,42132908 +h1,3923:12739637,42132908:0,0,0 +k1,3923:32583029,42132908:19843392 +g1,3923:32583029,42132908 ) -[1,4769:6630773,47279633:25952256,43253760,0 -[1,4769:6630773,4812305:25952256,786432,0 -(1,4769:6630773,4812305:25952256,505283,126483 -(1,4769:6630773,4812305:25952256,505283,126483 -g1,4769:3078558,4812305 -[1,4769:3078558,4812305:0,0,0 -(1,4769:3078558,2439708:0,1703936,0 -k1,4769:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,4769:2537886,2439708:1179648,16384,0 +(1,3925:6764466,42948835:25818563,424439,86428 +(1,3924:6764466,42948835:0,0,0 +g1,3924:6764466,42948835 +g1,3924:6764466,42948835 +g1,3924:6436786,42948835 +(1,3924:6436786,42948835:0,0,0 ) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,4769:3078558,1915420:16384,1179648,0 +g1,3924:6764466,42948835 ) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 +k1,3925:6764466,42948835:0 +g1,3925:11079868,42948835 +g1,3925:12739638,42948835 +h1,3925:14399408,42948835:0,0,0 +k1,3925:32583028,42948835:18183620 +g1,3925:32583028,42948835 ) -] +(1,3929:6764466,43764762:25818563,424439,79822 +(1,3927:6764466,43764762:0,0,0 +g1,3927:6764466,43764762 +g1,3927:6764466,43764762 +g1,3927:6436786,43764762 +(1,3927:6436786,43764762:0,0,0 ) +g1,3927:6764466,43764762 ) +g1,3929:7760328,43764762 +g1,3929:9088144,43764762 +h1,3929:12739637,43764762:0,0,0 +k1,3929:32583029,43764762:19843392 +g1,3929:32583029,43764762 ) ] -[1,4769:3078558,4812305:0,0,0 -(1,4769:3078558,2439708:0,1703936,0 -g1,4769:29030814,2439708 -g1,4769:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,4769:36151628,1915420:16384,1179648,0 ) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 +g1,3930:32583029,43844584 +g1,3930:6764466,43844584 +g1,3930:6764466,43844584 +g1,3930:32583029,43844584 +g1,3930:32583029,43844584 ) +h1,3930:6764466,44041192:0,0,0 ] -) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,4769:37855564,2439708:1179648,16384,0 -) -) -k1,4769:3078556,2439708:-34777008 +g1,3955:32583029,44041192 ) ] -[1,4769:3078558,4812305:0,0,0 -(1,4769:3078558,49800853:0,16384,2228224 -k1,4769:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,4769:2537886,49800853:1179648,16384,0 +(1,3955:32583029,45706769:0,0,0 +g1,3955:32583029,45706769 ) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,4769:3078558,51504789:16384,1179648,0 -) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 ) ] -) -) +(1,3955:6630773,47279633:25952256,0,0 +h1,3955:6630773,47279633:25952256,0,0 ) ] -[1,4769:3078558,4812305:0,0,0 -(1,4769:3078558,49800853:0,16384,2228224 -g1,4769:29030814,49800853 -g1,4769:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,4769:36151628,51504789:16384,1179648,0 +(1,3955:4262630,4025873:0,0,0 +[1,3955:-473656,4025873:0,0,0 +(1,3955:-473656,-710413:0,0,0 +(1,3955:-473656,-710413:0,0,0 +g1,3955:-473656,-710413 ) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 +g1,3955:-473656,-710413 ) ] ) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,4769:37855564,49800853:1179648,16384,0 -) -) -k1,4769:3078556,49800853:-34777008 -) ] -g1,4769:6630773,4812305 -g1,4769:6630773,4812305 -g1,4769:8826229,4812305 -g1,4769:13247287,4812305 -k1,4769:31786111,4812305:18538824 -) -) -] -[1,4769:6630773,45706769:25952256,40108032,0 -(1,4769:6630773,45706769:25952256,40108032,0 -(1,4769:6630773,45706769:0,0,0 -g1,4769:6630773,45706769 -) -[1,4769:6630773,45706769:25952256,40108032,0 -v1,4691:6630773,6254097:0,393216,0 -(1,4691:6630773,20757155:25952256,14896274,0 -g1,4691:6630773,20757155 -g1,4691:6303093,20757155 -r1,4769:6401397,20757155:98304,14896274,0 -g1,4691:6600626,20757155 -g1,4691:6797234,20757155 -[1,4691:6797234,20757155:25785795,14896274,0 -v1,4652:6797234,6254097:0,393216,0 -(1,4684:6797234,15820956:25785795,9960075,196608 -g1,4684:6797234,15820956 -g1,4684:6797234,15820956 -g1,4684:6600626,15820956 -(1,4684:6600626,15820956:0,9960075,196608 -r1,4769:32779637,15820956:26179011,10156683,196608 -k1,4684:6600625,15820956:-26179012 -) -(1,4684:6600626,15820956:26179011,9960075,196608 -[1,4684:6797234,15820956:25785795,9763467,0 -(1,4654:6797234,6461715:25785795,404226,76021 -(1,4653:6797234,6461715:0,0,0 -g1,4653:6797234,6461715 -g1,4653:6797234,6461715 -g1,4653:6469554,6461715 -(1,4653:6469554,6461715:0,0,0 -) -g1,4653:6797234,6461715 -) -g1,4654:8377963,6461715 -g1,4654:9326401,6461715 -h1,4654:13436295,6461715:0,0,0 -k1,4654:32583029,6461715:19146734 -g1,4654:32583029,6461715 -) -(1,4655:6797234,7127893:25785795,379060,6290 -h1,4655:6797234,7127893:0,0,0 -h1,4655:8061817,7127893:0,0,0 -k1,4655:32583029,7127893:24521212 -g1,4655:32583029,7127893 -) -(1,4659:6797234,7794071:25785795,404226,76021 -(1,4657:6797234,7794071:0,0,0 -g1,4657:6797234,7794071 -g1,4657:6797234,7794071 -g1,4657:6469554,7794071 -(1,4657:6469554,7794071:0,0,0 -) -g1,4657:6797234,7794071 -) -g1,4659:7745671,7794071 -g1,4659:8061817,7794071 -g1,4659:9326400,7794071 -g1,4659:10590983,7794071 -g1,4659:11855566,7794071 -g1,4659:13120149,7794071 -g1,4659:14384732,7794071 -g1,4659:15649315,7794071 -g1,4659:16913898,7794071 -g1,4659:18178481,7794071 -g1,4659:19443064,7794071 -g1,4659:20707647,7794071 -h1,4659:21656084,7794071:0,0,0 -k1,4659:32583029,7794071:10926945 -g1,4659:32583029,7794071 -) -(1,4661:6797234,9115609:25785795,404226,76021 -(1,4660:6797234,9115609:0,0,0 -g1,4660:6797234,9115609 -g1,4660:6797234,9115609 -g1,4660:6469554,9115609 -(1,4660:6469554,9115609:0,0,0 -) -g1,4660:6797234,9115609 -) -k1,4661:6797234,9115609:0 -h1,4661:9326400,9115609:0,0,0 -k1,4661:32583028,9115609:23256628 -g1,4661:32583028,9115609 -) -(1,4665:6797234,9781787:25785795,404226,76021 -(1,4663:6797234,9781787:0,0,0 -g1,4663:6797234,9781787 -g1,4663:6797234,9781787 -g1,4663:6469554,9781787 -(1,4663:6469554,9781787:0,0,0 -) -g1,4663:6797234,9781787 -) -g1,4665:7745671,9781787 -g1,4665:9010254,9781787 -g1,4665:10274837,9781787 -g1,4665:11539420,9781787 -g1,4665:12804003,9781787 -g1,4665:14068586,9781787 -g1,4665:15333169,9781787 -g1,4665:16597752,9781787 -g1,4665:17862335,9781787 -g1,4665:19126918,9781787 -h1,4665:20075355,9781787:0,0,0 -k1,4665:32583029,9781787:12507674 -g1,4665:32583029,9781787 -) -(1,4667:6797234,11103325:25785795,404226,76021 -(1,4666:6797234,11103325:0,0,0 -g1,4666:6797234,11103325 -g1,4666:6797234,11103325 -g1,4666:6469554,11103325 -(1,4666:6469554,11103325:0,0,0 -) -g1,4666:6797234,11103325 -) -k1,4667:6797234,11103325:0 -h1,4667:9958691,11103325:0,0,0 -k1,4667:32583029,11103325:22624338 -g1,4667:32583029,11103325 -) -(1,4671:6797234,11769503:25785795,404226,76021 -(1,4669:6797234,11769503:0,0,0 -g1,4669:6797234,11769503 -g1,4669:6797234,11769503 -g1,4669:6469554,11769503 -(1,4669:6469554,11769503:0,0,0 -) -g1,4669:6797234,11769503 -) -g1,4671:7745671,11769503 -g1,4671:9010254,11769503 -g1,4671:10274837,11769503 -g1,4671:11539420,11769503 -g1,4671:12804003,11769503 -g1,4671:14068586,11769503 -g1,4671:15333169,11769503 -g1,4671:16597752,11769503 -g1,4671:17862335,11769503 -g1,4671:19126918,11769503 -h1,4671:20075355,11769503:0,0,0 -k1,4671:32583029,11769503:12507674 -g1,4671:32583029,11769503 -) -(1,4673:6797234,13091041:25785795,404226,76021 -(1,4672:6797234,13091041:0,0,0 -g1,4672:6797234,13091041 -g1,4672:6797234,13091041 -g1,4672:6469554,13091041 -(1,4672:6469554,13091041:0,0,0 -) -g1,4672:6797234,13091041 -) -k1,4673:6797234,13091041:0 -h1,4673:10907128,13091041:0,0,0 -k1,4673:32583028,13091041:21675900 -g1,4673:32583028,13091041 -) -(1,4677:6797234,13757219:25785795,404226,76021 -(1,4675:6797234,13757219:0,0,0 -g1,4675:6797234,13757219 -g1,4675:6797234,13757219 -g1,4675:6469554,13757219 -(1,4675:6469554,13757219:0,0,0 -) -g1,4675:6797234,13757219 -) -g1,4677:7745671,13757219 -g1,4677:9010254,13757219 -g1,4677:10274837,13757219 -g1,4677:11539420,13757219 -g1,4677:12804003,13757219 -g1,4677:14068586,13757219 -g1,4677:15333169,13757219 -g1,4677:16597752,13757219 -g1,4677:17862335,13757219 -g1,4677:19126918,13757219 -h1,4677:20075355,13757219:0,0,0 -k1,4677:32583029,13757219:12507674 -g1,4677:32583029,13757219 -) -(1,4679:6797234,15078757:25785795,404226,76021 -(1,4678:6797234,15078757:0,0,0 -g1,4678:6797234,15078757 -g1,4678:6797234,15078757 -g1,4678:6469554,15078757 -(1,4678:6469554,15078757:0,0,0 -) -g1,4678:6797234,15078757 -) -k1,4679:6797234,15078757:0 -h1,4679:9326400,15078757:0,0,0 -k1,4679:32583028,15078757:23256628 -g1,4679:32583028,15078757 -) -(1,4683:6797234,15744935:25785795,404226,76021 -(1,4681:6797234,15744935:0,0,0 -g1,4681:6797234,15744935 -g1,4681:6797234,15744935 -g1,4681:6469554,15744935 -(1,4681:6469554,15744935:0,0,0 -) -g1,4681:6797234,15744935 -) -g1,4683:7745671,15744935 -g1,4683:9010254,15744935 -g1,4683:10274837,15744935 -g1,4683:11539420,15744935 -g1,4683:12804003,15744935 -g1,4683:14068586,15744935 -g1,4683:15333169,15744935 -g1,4683:16597752,15744935 -g1,4683:17862335,15744935 -g1,4683:19126918,15744935 -h1,4683:20075355,15744935:0,0,0 -k1,4683:32583029,15744935:12507674 -g1,4683:32583029,15744935 -) -] -) -g1,4684:32583029,15820956 -g1,4684:6797234,15820956 -g1,4684:6797234,15820956 -g1,4684:32583029,15820956 -g1,4684:32583029,15820956 -) -h1,4684:6797234,16017564:0,0,0 -(1,4688:6797234,17383340:25785795,513147,134348 -h1,4687:6797234,17383340:983040,0,0 -k1,4687:9606510,17383340:164243 -k1,4687:10973995,17383340:164244 -k1,4687:14920976,17383340:164243 -k1,4687:15953571,17383340:164243 -k1,4687:17222097,17383340:164244 -k1,4687:18997870,17383340:164243 -k1,4687:20446619,17383340:164243 -k1,4687:21076823,17383340:164243 -k1,4687:23895930,17383340:164244 -k1,4687:26486971,17383340:164243 -k1,4687:27642774,17383340:164243 -k1,4687:28873289,17383340:164244 -k1,4687:30920381,17383340:164243 -k1,4688:32583029,17383340:0 -) -(1,4688:6797234,18224828:25785795,505283,134348 -k1,4687:8582817,18224828:245487 -k1,4687:10208492,18224828:245487 -k1,4687:11445539,18224828:245487 -k1,4687:14780393,18224828:245487 -k1,4687:15677308,18224828:245487 -k1,4687:16941880,18224828:245487 -k1,4687:18571486,18224828:245486 -k1,4687:20676229,18224828:245487 -k1,4687:22341881,18224828:245487 -k1,4687:25449325,18224828:245487 -k1,4687:28098673,18224828:245487 -k1,4687:28971995,18224828:245487 -k1,4688:32583029,18224828:0 -) -(1,4688:6797234,19066316:25785795,513147,134348 -(1,4687:6797234,19066316:0,452978,115847 -r1,4769:8914059,19066316:2116825,568825,115847 -k1,4687:6797234,19066316:-2116825 -) -(1,4687:6797234,19066316:2116825,452978,115847 -k1,4687:6797234,19066316:3277 -h1,4687:8910782,19066316:0,411205,112570 -) -g1,4687:9113288,19066316 -g1,4687:11061673,19066316 -g1,4687:13271547,19066316 -g1,4687:15693757,19066316 -g1,4687:16579148,19066316 -g1,4687:17244338,19066316 -g1,4687:18823755,19066316 -g1,4687:20941878,19066316 -g1,4687:24059425,19066316 -g1,4687:25994047,19066316 -g1,4687:28888772,19066316 -(1,4687:28888772,19066316:0,452978,115847 -r1,4769:31357309,19066316:2468537,568825,115847 -k1,4687:28888772,19066316:-2468537 -) -(1,4687:28888772,19066316:2468537,452978,115847 -k1,4687:28888772,19066316:3277 -h1,4687:31354032,19066316:0,411205,112570 -) -k1,4688:32583029,19066316:1052050 -g1,4688:32583029,19066316 -) -(1,4690:6797234,19907804:25785795,513147,134348 -h1,4689:6797234,19907804:983040,0,0 -k1,4689:9374720,19907804:213602 -k1,4689:12249738,19907804:213601 -k1,4689:13749156,19907804:213602 -k1,4689:15953741,19907804:213601 -k1,4689:17497724,19907804:213602 -k1,4689:18868035,19907804:213601 -k1,4689:20185919,19907804:213602 -k1,4689:22037265,19907804:213601 -k1,4689:23317138,19907804:213602 -k1,4689:24197895,19907804:213601 -k1,4689:24826325,19907804:213587 -k1,4689:25828325,19907804:213602 -k1,4689:27627897,19907804:213601 -k1,4689:30400025,19907804:213602 -k1,4690:32583029,19907804:0 -) -(1,4690:6797234,20749292:25785795,473825,7863 -k1,4690:32583029,20749292:22349742 -g1,4690:32583029,20749292 -) -] -g1,4691:32583029,20757155 -) -h1,4691:6630773,20757155:0,0,0 -(1,4694:6630773,22122931:25952256,513147,134348 -h1,4693:6630773,22122931:983040,0,0 -k1,4693:8244983,22122931:143582 -k1,4693:11127371,22122931:143638 -k1,4693:14345303,22122931:143638 -k1,4693:15298310,22122931:143637 -k1,4693:17750126,22122931:143638 -k1,4693:18425260,22122931:143637 -k1,4693:20829235,22122931:143638 -k1,4693:22611928,22122931:143638 -k1,4693:24023031,22122931:143637 -k1,4693:24937372,22122931:143638 -k1,4693:28342736,22122931:143637 -k1,4693:29169259,22122931:143638 -k1,4693:32583029,22122931:0 -) -(1,4694:6630773,22964419:25952256,505283,126483 -g1,4693:8742998,22964419 -g1,4693:10138914,22964419 -g1,4693:11939843,22964419 -g1,4693:13987187,22964419 -g1,4693:17170926,22964419 -g1,4693:17901652,22964419 -g1,4693:18752309,22964419 -g1,4693:20044023,22964419 -(1,4693:20044023,22964419:0,452978,115847 -r1,4769:22160848,22964419:2116825,568825,115847 -k1,4693:20044023,22964419:-2116825 -) -(1,4693:20044023,22964419:2116825,452978,115847 -k1,4693:20044023,22964419:3277 -h1,4693:22157571,22964419:0,411205,112570 -) -k1,4694:32583029,22964419:10248511 -g1,4694:32583029,22964419 -) -v1,4696:6630773,24154885:0,393216,0 -(1,4710:6630773,27758596:25952256,3996927,196608 -g1,4710:6630773,27758596 -g1,4710:6630773,27758596 -g1,4710:6434165,27758596 -(1,4710:6434165,27758596:0,3996927,196608 -r1,4769:32779637,27758596:26345472,4193535,196608 -k1,4710:6434165,27758596:-26345472 -) -(1,4710:6434165,27758596:26345472,3996927,196608 -[1,4710:6630773,27758596:25952256,3800319,0 -(1,4698:6630773,24362503:25952256,404226,82312 -(1,4697:6630773,24362503:0,0,0 -g1,4697:6630773,24362503 -g1,4697:6630773,24362503 -g1,4697:6303093,24362503 -(1,4697:6303093,24362503:0,0,0 -) -g1,4697:6630773,24362503 -) -g1,4698:8211502,24362503 -g1,4698:9159940,24362503 -g1,4698:11056815,24362503 -g1,4698:12005253,24362503 -g1,4698:13269836,24362503 -g1,4698:14218274,24362503 -h1,4698:14850566,24362503:0,0,0 -k1,4698:32583030,24362503:17732464 -g1,4698:32583030,24362503 -) -(1,4699:6630773,25028681:25952256,404226,76021 -h1,4699:6630773,25028681:0,0,0 -k1,4699:6630773,25028681:0 -h1,4699:9792230,25028681:0,0,0 -k1,4699:32583030,25028681:22790800 -g1,4699:32583030,25028681 -) -(1,4703:6630773,25694859:25952256,404226,76021 -(1,4701:6630773,25694859:0,0,0 -g1,4701:6630773,25694859 -g1,4701:6630773,25694859 -g1,4701:6303093,25694859 -(1,4701:6303093,25694859:0,0,0 -) -g1,4701:6630773,25694859 -) -g1,4703:7579210,25694859 -g1,4703:8843793,25694859 -g1,4703:9159939,25694859 -g1,4703:9792231,25694859 -g1,4703:10108377,25694859 -g1,4703:10740669,25694859 -g1,4703:11056815,25694859 -g1,4703:11689107,25694859 -g1,4703:12637544,25694859 -h1,4703:13269835,25694859:0,0,0 -k1,4703:32583029,25694859:19313194 -g1,4703:32583029,25694859 -) -(1,4705:6630773,27016397:25952256,404226,107478 -(1,4704:6630773,27016397:0,0,0 -g1,4704:6630773,27016397 -g1,4704:6630773,27016397 -g1,4704:6303093,27016397 -(1,4704:6303093,27016397:0,0,0 -) -g1,4704:6630773,27016397 -) -k1,4705:6630773,27016397:0 -g1,4705:10108376,27016397 -g1,4705:13585979,27016397 -g1,4705:14218271,27016397 -h1,4705:15799000,27016397:0,0,0 -k1,4705:32583028,27016397:16784028 -g1,4705:32583028,27016397 -) -(1,4709:6630773,27682575:25952256,404226,76021 -(1,4707:6630773,27682575:0,0,0 -g1,4707:6630773,27682575 -g1,4707:6630773,27682575 -g1,4707:6303093,27682575 -(1,4707:6303093,27682575:0,0,0 -) -g1,4707:6630773,27682575 -) -g1,4709:7579210,27682575 -g1,4709:8843793,27682575 -g1,4709:9792230,27682575 -g1,4709:10740667,27682575 -g1,4709:11056813,27682575 -g1,4709:11689105,27682575 -g1,4709:12005251,27682575 -g1,4709:12637543,27682575 -g1,4709:12953689,27682575 -h1,4709:13269835,27682575:0,0,0 -k1,4709:32583029,27682575:19313194 -g1,4709:32583029,27682575 -) -] -) -g1,4710:32583029,27758596 -g1,4710:6630773,27758596 -g1,4710:6630773,27758596 -g1,4710:32583029,27758596 -g1,4710:32583029,27758596 -) -h1,4710:6630773,27955204:0,0,0 -(1,4714:6630773,29320980:25952256,513147,134348 -h1,4713:6630773,29320980:983040,0,0 -k1,4713:8743186,29320980:226942 -k1,4713:11434281,29320980:226941 -k1,4713:12899198,29320980:226942 -k1,4713:13785432,29320980:226942 -k1,4713:16272711,29320980:226942 -k1,4713:16855512,29320980:226941 -k1,4713:19234001,29320980:226942 -k1,4713:22104665,29320980:226942 -k1,4713:24186275,29320980:226941 -k1,4713:25222587,29320980:226942 -k1,4713:25805389,29320980:226942 -k1,4713:28794674,29320980:226942 -k1,4713:31173162,29320980:226941 -k1,4713:31931601,29320980:226942 -k1,4713:32583029,29320980:0 -) -(1,4714:6630773,30162468:25952256,513147,134348 -k1,4713:9601284,30162468:238315 -k1,4713:11233549,30162468:238314 -(1,4713:11233549,30162468:0,452978,115847 -r1,4769:13702086,30162468:2468537,568825,115847 -k1,4713:11233549,30162468:-2468537 -) -(1,4713:11233549,30162468:2468537,452978,115847 -k1,4713:11233549,30162468:3277 -h1,4713:13698809,30162468:0,411205,112570 -) -k1,4713:13940401,30162468:238315 -k1,4713:14534575,30162468:238314 -k1,4713:16750767,30162468:238315 -k1,4713:17648373,30162468:238314 -k1,4713:21067806,30162468:238315 -k1,4713:23732918,30162468:238314 -k1,4713:25255739,30162468:238315 -k1,4713:26598335,30162468:238314 -k1,4713:27584416,30162468:238315 -k1,4713:29335956,30162468:238314 -k1,4713:30225699,30162468:238315 -k1,4713:32583029,30162468:0 -) -(1,4714:6630773,31003956:25952256,505283,134348 -g1,4713:7849087,31003956 -k1,4714:32583028,31003956:21830696 -g1,4714:32583028,31003956 -) -v1,4716:6630773,32194422:0,393216,0 -(1,4736:6630773,37811015:25952256,6009809,196608 -g1,4736:6630773,37811015 -g1,4736:6630773,37811015 -g1,4736:6434165,37811015 -(1,4736:6434165,37811015:0,6009809,196608 -r1,4769:32779637,37811015:26345472,6206417,196608 -k1,4736:6434165,37811015:-26345472 -) -(1,4736:6434165,37811015:26345472,6009809,196608 -[1,4736:6630773,37811015:25952256,5813201,0 -(1,4718:6630773,32402040:25952256,404226,76021 -(1,4717:6630773,32402040:0,0,0 -g1,4717:6630773,32402040 -g1,4717:6630773,32402040 -g1,4717:6303093,32402040 -(1,4717:6303093,32402040:0,0,0 -) -g1,4717:6630773,32402040 -) -k1,4718:6630773,32402040:0 -h1,4718:10108375,32402040:0,0,0 -k1,4718:32583029,32402040:22474654 -g1,4718:32583029,32402040 -) -(1,4722:6630773,33068218:25952256,404226,76021 -(1,4720:6630773,33068218:0,0,0 -g1,4720:6630773,33068218 -g1,4720:6630773,33068218 -g1,4720:6303093,33068218 -(1,4720:6303093,33068218:0,0,0 -) -g1,4720:6630773,33068218 -) -g1,4722:7579210,33068218 -g1,4722:8843793,33068218 -g1,4722:9476085,33068218 -g1,4722:10108377,33068218 -g1,4722:10740669,33068218 -g1,4722:11372961,33068218 -h1,4722:11689107,33068218:0,0,0 -k1,4722:32583029,33068218:20893922 -g1,4722:32583029,33068218 -) -(1,4724:6630773,34389756:25952256,404226,76021 -(1,4723:6630773,34389756:0,0,0 -g1,4723:6630773,34389756 -g1,4723:6630773,34389756 -g1,4723:6303093,34389756 -(1,4723:6303093,34389756:0,0,0 -) -g1,4723:6630773,34389756 -) -k1,4724:6630773,34389756:0 -h1,4724:12005249,34389756:0,0,0 -k1,4724:32583029,34389756:20577780 -g1,4724:32583029,34389756 -) -(1,4728:6630773,35055934:25952256,404226,76021 -(1,4726:6630773,35055934:0,0,0 -g1,4726:6630773,35055934 -g1,4726:6630773,35055934 -g1,4726:6303093,35055934 -(1,4726:6303093,35055934:0,0,0 -) -g1,4726:6630773,35055934 -) -g1,4728:7579210,35055934 -g1,4728:8843793,35055934 -g1,4728:9159939,35055934 -g1,4728:9792231,35055934 -g1,4728:10108377,35055934 -g1,4728:10740669,35055934 -g1,4728:11056815,35055934 -g1,4728:11689107,35055934 -g1,4728:12637544,35055934 -h1,4728:13269835,35055934:0,0,0 -k1,4728:32583029,35055934:19313194 -g1,4728:32583029,35055934 -) -(1,4730:6630773,36377472:25952256,404226,101187 -(1,4729:6630773,36377472:0,0,0 -g1,4729:6630773,36377472 -g1,4729:6630773,36377472 -g1,4729:6303093,36377472 -(1,4729:6303093,36377472:0,0,0 -) -g1,4729:6630773,36377472 -) -g1,4730:8211502,36377472 -g1,4730:9159940,36377472 -g1,4730:11689107,36377472 -g1,4730:13585982,36377472 -g1,4730:15166711,36377472 -g1,4730:17063586,36377472 -h1,4730:18328169,36377472:0,0,0 -k1,4730:32583029,36377472:14254860 -g1,4730:32583029,36377472 -) -(1,4731:6630773,37043650:25952256,404226,76021 -h1,4731:6630773,37043650:0,0,0 -k1,4731:6630773,37043650:0 -h1,4731:12005249,37043650:0,0,0 -k1,4731:32583029,37043650:20577780 -g1,4731:32583029,37043650 -) -(1,4735:6630773,37709828:25952256,404226,101187 -(1,4733:6630773,37709828:0,0,0 -g1,4733:6630773,37709828 -g1,4733:6630773,37709828 -g1,4733:6303093,37709828 -(1,4733:6303093,37709828:0,0,0 -) -g1,4733:6630773,37709828 -) -g1,4735:7579210,37709828 -g1,4735:8843793,37709828 -g1,4735:10424522,37709828 -g1,4735:12005251,37709828 -g1,4735:13269834,37709828 -g1,4735:13585980,37709828 -g1,4735:15166709,37709828 -h1,4735:16115146,37709828:0,0,0 -k1,4735:32583029,37709828:16467883 -g1,4735:32583029,37709828 -) -] -) -g1,4736:32583029,37811015 -g1,4736:6630773,37811015 -g1,4736:6630773,37811015 -g1,4736:32583029,37811015 -g1,4736:32583029,37811015 -) -h1,4736:6630773,38007623:0,0,0 -v1,4740:6630773,39897687:0,393216,0 -(1,4769:6630773,44475063:25952256,4970592,0 -g1,4769:6630773,44475063 -g1,4769:6303093,44475063 -r1,4769:6401397,44475063:98304,4970592,0 -g1,4769:6600626,44475063 -g1,4769:6797234,44475063 -[1,4769:6797234,44475063:25785795,4970592,0 -(1,4741:6797234,40259760:25785795,755289,196608 -(1,4740:6797234,40259760:0,755289,196608 -r1,4769:8134168,40259760:1336934,951897,196608 -k1,4740:6797234,40259760:-1336934 -) -(1,4740:6797234,40259760:1336934,755289,196608 -) -k1,4740:8336019,40259760:201851 -k1,4740:8663699,40259760:327680 -k1,4740:9353135,40259760:201848 -k1,4740:12231477,40259760:201852 -k1,4740:14415137,40259760:201851 -k1,4740:15268416,40259760:201851 -k1,4740:17730604,40259760:201851 -k1,4740:19216961,40259760:201851 -k1,4740:20287164,40259760:201851 -k1,4740:21825949,40259760:201851 -k1,4740:23329345,40259760:201851 -k1,4740:24062693,40259760:201851 -k1,4740:27069485,40259760:201851 -k1,4740:28601717,40259760:201851 -k1,4740:30555345,40259760:201851 -k1,4740:32583029,40259760:0 -) -(1,4741:6797234,41101248:25785795,513147,126483 -k1,4740:7705824,41101248:249298 -k1,4740:9406744,41101248:249298 -k1,4740:11336385,41101248:249298 -k1,4740:12577244,41101248:249299 -k1,4740:15232369,41101248:249298 -k1,4740:16097705,41101248:249298 -k1,4740:16702863,41101248:249298 -k1,4740:19103708,41101248:249298 -k1,4740:20306555,41101248:249298 -k1,4740:22086119,41101248:249298 -k1,4740:22986845,41101248:249298 -k1,4740:24328629,41101248:249299 -k1,4740:25750366,41101248:249298 -k1,4740:29025461,41101248:249298 -(1,4740:29025461,41101248:0,452978,115847 -r1,4769:31142286,41101248:2116825,568825,115847 -k1,4740:29025461,41101248:-2116825 -) -(1,4740:29025461,41101248:2116825,452978,115847 -k1,4740:29025461,41101248:3277 -h1,4740:31139009,41101248:0,411205,112570 -) -k1,4740:31391584,41101248:249298 -k1,4741:32583029,41101248:0 -) -(1,4741:6797234,41942736:25785795,513147,134348 -(1,4740:6797234,41942736:0,452978,115847 -r1,4769:8562347,41942736:1765113,568825,115847 -k1,4740:6797234,41942736:-1765113 -) -(1,4740:6797234,41942736:1765113,452978,115847 -k1,4740:6797234,41942736:3277 -h1,4740:8559070,41942736:0,411205,112570 -) -k1,4740:8766429,41942736:204082 -k1,4740:8766429,41942736:0 -k1,4740:9144180,41942736:204081 -k1,4740:10544949,41942736:204082 -k1,4740:12990362,41942736:204082 -k1,4740:13853736,41942736:204082 -k1,4740:15754544,41942736:204081 -k1,4740:18984423,41942736:204082 -k1,4740:22306708,41942736:204082 -k1,4740:23645217,41942736:204081 -k1,4740:25833729,41942736:204082 -k1,4740:26723973,41942736:204082 -k1,4740:28441281,41942736:204082 -k1,4740:29261400,41942736:204081 -k1,4740:30599910,41942736:204082 -k1,4740:32583029,41942736:0 -) -(1,4741:6797234,42784224:25785795,513147,134348 -k1,4740:9809130,42784224:166979 -k1,4740:10923759,42784224:166978 -k1,4740:12976209,42784224:166979 -k1,4740:13980083,42784224:166979 -k1,4740:14678559,42784224:166979 -k1,4740:15616240,42784224:166978 -k1,4740:19930993,42784224:166979 -k1,4740:20585528,42784224:166947 -k1,4740:21888245,42784224:166978 -k1,4740:22586721,42784224:166979 -k1,4740:23109560,42784224:166979 -k1,4740:25121377,42784224:166979 -k1,4740:25947647,42784224:166978 -k1,4740:29846246,42784224:166979 -k1,4740:32583029,42784224:0 -) -(1,4741:6797234,43625712:25785795,513147,134348 -k1,4740:9220053,43625712:238504 -k1,4740:10276446,43625712:238504 -k1,4740:11534036,43625712:238505 -k1,4740:14637774,43625712:238504 -k1,4740:15407775,43625712:238504 -k1,4740:16297707,43625712:238504 -k1,4740:18350904,43625712:238505 -k1,4740:19608493,43625712:238504 -k1,4740:22332778,43625712:238504 -k1,4740:23230574,43625712:238504 -k1,4740:25496762,43625712:238504 -k1,4740:26394559,43625712:238505 -k1,4740:28084685,43625712:238504 -k1,4740:30003532,43625712:238504 -k1,4740:32583029,43625712:0 -) -(1,4741:6797234,44467200:25785795,513147,7863 -g1,4740:7864815,44467200 -g1,4740:9594310,44467200 -g1,4740:11099672,44467200 -g1,4740:11950329,44467200 -g1,4740:13419646,44467200 -g1,4740:14637960,44467200 -k1,4741:32583029,44467200:15793522 -g1,4741:32583029,44467200 -) -] -g1,4769:32583029,44475063 -) -] -(1,4769:32583029,45706769:0,0,0 -g1,4769:32583029,45706769 -) -) -] -(1,4769:6630773,47279633:25952256,0,0 -h1,4769:6630773,47279633:25952256,0,0 -) -] -(1,4769:4262630,4025873:0,0,0 -[1,4769:-473656,4025873:0,0,0 -(1,4769:-473656,-710413:0,0,0 -(1,4769:-473656,-710413:0,0,0 -g1,4769:-473656,-710413 -) -g1,4769:-473656,-710413 -) -] -) -] -!24152 -}86 -Input:750:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:751:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:752:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:753:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!383 -{87 -[1,4846:4262630,47279633:28320399,43253760,0 -(1,4846:4262630,4025873:0,0,0 -[1,4846:-473656,4025873:0,0,0 -(1,4846:-473656,-710413:0,0,0 -(1,4846:-473656,-644877:0,0,0 -k1,4846:-473656,-644877:-65536 +!25380 +}73 +Input:672:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:673:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:674:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:675:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:676:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:677:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:678:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:679:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:680:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:681:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!941 +{74 +[1,4040:4262630,47279633:28320399,43253760,0 +(1,4040:4262630,4025873:0,0,0 +[1,4040:-473656,4025873:0,0,0 +(1,4040:-473656,-710413:0,0,0 +(1,4040:-473656,-644877:0,0,0 +k1,4040:-473656,-644877:-65536 ) -(1,4846:-473656,4736287:0,0,0 -k1,4846:-473656,4736287:5209943 +(1,4040:-473656,4736287:0,0,0 +k1,4040:-473656,4736287:5209943 ) -g1,4846:-473656,-710413 +g1,4040:-473656,-710413 ) ] ) -[1,4846:6630773,47279633:25952256,43253760,0 -[1,4846:6630773,4812305:25952256,786432,0 -(1,4846:6630773,4812305:25952256,505283,11795 -(1,4846:6630773,4812305:25952256,505283,11795 -g1,4846:3078558,4812305 -[1,4846:3078558,4812305:0,0,0 -(1,4846:3078558,2439708:0,1703936,0 -k1,4846:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,4846:2537886,2439708:1179648,16384,0 +[1,4040:6630773,47279633:25952256,43253760,0 +[1,4040:6630773,4812305:25952256,786432,0 +(1,4040:6630773,4812305:25952256,505283,126483 +(1,4040:6630773,4812305:25952256,505283,126483 +g1,4040:3078558,4812305 +[1,4040:3078558,4812305:0,0,0 +(1,4040:3078558,2439708:0,1703936,0 +k1,4040:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,4040:2537886,2439708:1179648,16384,0 ) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,4846:3078558,1915420:16384,1179648,0 +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,4040:3078558,1915420:16384,1179648,0 ) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) ] ) ) ) ] -[1,4846:3078558,4812305:0,0,0 -(1,4846:3078558,2439708:0,1703936,0 -g1,4846:29030814,2439708 -g1,4846:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,4846:36151628,1915420:16384,1179648,0 +[1,4040:3078558,4812305:0,0,0 +(1,4040:3078558,2439708:0,1703936,0 +g1,4040:29030814,2439708 +g1,4040:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,4040:36151628,1915420:16384,1179648,0 ) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) ] ) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,4846:37855564,2439708:1179648,16384,0 +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,4040:37855564,2439708:1179648,16384,0 ) ) -k1,4846:3078556,2439708:-34777008 +k1,4040:3078556,2439708:-34777008 ) ] -[1,4846:3078558,4812305:0,0,0 -(1,4846:3078558,49800853:0,16384,2228224 -k1,4846:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,4846:2537886,49800853:1179648,16384,0 +[1,4040:3078558,4812305:0,0,0 +(1,4040:3078558,49800853:0,16384,2228224 +k1,4040:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,4040:2537886,49800853:1179648,16384,0 ) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,4846:3078558,51504789:16384,1179648,0 +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,4040:3078558,51504789:16384,1179648,0 ) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) ] ) ) ) ] -[1,4846:3078558,4812305:0,0,0 -(1,4846:3078558,49800853:0,16384,2228224 -g1,4846:29030814,49800853 -g1,4846:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,4846:36151628,51504789:16384,1179648,0 -) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 -) -] -) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,4846:37855564,49800853:1179648,16384,0 +[1,4040:3078558,4812305:0,0,0 +(1,4040:3078558,49800853:0,16384,2228224 +g1,4040:29030814,49800853 +g1,4040:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,4040:36151628,51504789:16384,1179648,0 ) -) -k1,4846:3078556,49800853:-34777008 +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 ) ] -g1,4846:6630773,4812305 -k1,4846:22348274,4812305:14920583 -g1,4846:23970945,4812305 -g1,4846:24793421,4812305 -g1,4846:27528893,4812305 -g1,4846:28938572,4812305 -) -) -] -[1,4846:6630773,45706769:25952256,40108032,0 -(1,4846:6630773,45706769:25952256,40108032,0 -(1,4846:6630773,45706769:0,0,0 -g1,4846:6630773,45706769 -) -[1,4846:6630773,45706769:25952256,40108032,0 -v1,4769:6630773,6254097:0,393216,0 -(1,4769:6630773,16581180:25952256,10720299,0 -g1,4769:6630773,16581180 -g1,4769:6303093,16581180 -r1,4846:6401397,16581180:98304,10720299,0 -g1,4769:6600626,16581180 -g1,4769:6797234,16581180 -[1,4769:6797234,16581180:25785795,10720299,0 -v1,4743:6797234,6254097:0,393216,0 -(1,4765:6797234,13209337:25785795,7348456,196608 -g1,4765:6797234,13209337 -g1,4765:6797234,13209337 -g1,4765:6600626,13209337 -(1,4765:6600626,13209337:0,7348456,196608 -r1,4846:32779637,13209337:26179011,7545064,196608 -k1,4765:6600625,13209337:-26179012 -) -(1,4765:6600626,13209337:26179011,7348456,196608 -[1,4765:6797234,13209337:25785795,7151848,0 -(1,4745:6797234,6461715:25785795,404226,82312 -(1,4744:6797234,6461715:0,0,0 -g1,4744:6797234,6461715 -g1,4744:6797234,6461715 -g1,4744:6469554,6461715 -(1,4744:6469554,6461715:0,0,0 -) -g1,4744:6797234,6461715 -) -g1,4745:8377963,6461715 -g1,4745:9326401,6461715 -g1,4745:13436296,6461715 -g1,4745:14384734,6461715 -g1,4745:15649317,6461715 -g1,4745:16597755,6461715 -g1,4745:17546193,6461715 -g1,4745:18494631,6461715 -g1,4745:19759214,6461715 -g1,4745:20707652,6461715 -h1,4745:21972234,6461715:0,0,0 -k1,4745:32583029,6461715:10610795 -g1,4745:32583029,6461715 -) -(1,4746:6797234,7127893:25785795,379060,6290 -h1,4746:6797234,7127893:0,0,0 -h1,4746:8061817,7127893:0,0,0 -k1,4746:32583029,7127893:24521212 -g1,4746:32583029,7127893 -) -(1,4750:6797234,7794071:25785795,404226,107478 -(1,4748:6797234,7794071:0,0,0 -g1,4748:6797234,7794071 -g1,4748:6797234,7794071 -g1,4748:6469554,7794071 -(1,4748:6469554,7794071:0,0,0 -) -g1,4748:6797234,7794071 -) -g1,4750:7745671,7794071 -g1,4750:9010254,7794071 -g1,4750:10274837,7794071 -g1,4750:11539420,7794071 -g1,4750:12804003,7794071 -g1,4750:14068586,7794071 -g1,4750:15333169,7794071 -g1,4750:16597752,7794071 -g1,4750:17862335,7794071 -g1,4750:19126918,7794071 -h1,4750:20075355,7794071:0,0,0 -k1,4750:32583029,7794071:12507674 -g1,4750:32583029,7794071 -) -(1,4752:6797234,9115609:25785795,404226,76021 -(1,4751:6797234,9115609:0,0,0 -g1,4751:6797234,9115609 -g1,4751:6797234,9115609 -g1,4751:6469554,9115609 -(1,4751:6469554,9115609:0,0,0 -) -g1,4751:6797234,9115609 -) -k1,4752:6797234,9115609:0 -h1,4752:9958691,9115609:0,0,0 -k1,4752:32583029,9115609:22624338 -g1,4752:32583029,9115609 -) -(1,4756:6797234,9781787:25785795,404226,107478 -(1,4754:6797234,9781787:0,0,0 -g1,4754:6797234,9781787 -g1,4754:6797234,9781787 -g1,4754:6469554,9781787 -(1,4754:6469554,9781787:0,0,0 -) -g1,4754:6797234,9781787 -) -g1,4756:7745671,9781787 -g1,4756:9010254,9781787 -g1,4756:10274837,9781787 -g1,4756:11539420,9781787 -g1,4756:12804003,9781787 -g1,4756:14068586,9781787 -g1,4756:15333169,9781787 -g1,4756:16597752,9781787 -g1,4756:17862335,9781787 -g1,4756:19126918,9781787 -h1,4756:20075355,9781787:0,0,0 -k1,4756:32583029,9781787:12507674 -g1,4756:32583029,9781787 -) -(1,4758:6797234,11103325:25785795,404226,76021 -(1,4757:6797234,11103325:0,0,0 -g1,4757:6797234,11103325 -g1,4757:6797234,11103325 -g1,4757:6469554,11103325 -(1,4757:6469554,11103325:0,0,0 -) -g1,4757:6797234,11103325 -) -k1,4758:6797234,11103325:0 -k1,4758:6797234,11103325:0 -h1,4758:11539420,11103325:0,0,0 -k1,4758:32583028,11103325:21043608 -g1,4758:32583028,11103325 -) -(1,4764:6797234,11769503:25785795,404226,107478 -(1,4760:6797234,11769503:0,0,0 -g1,4760:6797234,11769503 -g1,4760:6797234,11769503 -g1,4760:6469554,11769503 -(1,4760:6469554,11769503:0,0,0 -) -g1,4760:6797234,11769503 -) -g1,4764:7745671,11769503 -g1,4764:9010254,11769503 -g1,4764:11223274,11769503 -h1,4764:13752439,11769503:0,0,0 -k1,4764:32583029,11769503:18830590 -g1,4764:32583029,11769503 -) -(1,4764:6797234,12435681:25785795,404226,107478 -h1,4764:6797234,12435681:0,0,0 -g1,4764:7745671,12435681 -g1,4764:8061817,12435681 -g1,4764:8377963,12435681 -g1,4764:11223274,12435681 -g1,4764:12487857,12435681 -g1,4764:14384731,12435681 -g1,4764:15017023,12435681 -g1,4764:15649315,12435681 -g1,4764:16281607,12435681 -g1,4764:16913899,12435681 -g1,4764:17546191,12435681 -h1,4764:17862337,12435681:0,0,0 -k1,4764:32583029,12435681:14720692 -g1,4764:32583029,12435681 -) -(1,4764:6797234,13101859:25785795,404226,107478 -h1,4764:6797234,13101859:0,0,0 -g1,4764:7745671,13101859 -g1,4764:8061817,13101859 -g1,4764:8377963,13101859 -g1,4764:10590983,13101859 -g1,4764:11223275,13101859 -g1,4764:12487858,13101859 -g1,4764:14384732,13101859 -g1,4764:15649315,13101859 -g1,4764:16913898,13101859 -g1,4764:18178481,13101859 -g1,4764:19443064,13101859 -g1,4764:20707647,13101859 -h1,4764:21656084,13101859:0,0,0 -k1,4764:32583029,13101859:10926945 -g1,4764:32583029,13101859 -) -] -) -g1,4765:32583029,13209337 -g1,4765:6797234,13209337 -g1,4765:6797234,13209337 -g1,4765:32583029,13209337 -g1,4765:32583029,13209337 -) -h1,4765:6797234,13405945:0,0,0 -(1,4769:6797234,14771721:25785795,513147,126483 -h1,4768:6797234,14771721:983040,0,0 -k1,4768:9237139,14771721:260178 -k1,4768:11738648,14771721:260178 -k1,4768:13190271,14771721:260178 -k1,4768:15032487,14771721:260177 -k1,4768:18809327,14771721:260178 -k1,4768:20061065,14771721:260178 -k1,4768:21696844,14771721:260178 -k1,4768:22608450,14771721:260178 -k1,4768:26901714,14771721:260178 -k1,4768:28180976,14771721:260177 -k1,4768:30211937,14771721:260178 -k1,4768:31131407,14771721:260178 -k1,4768:32583029,14771721:0 -) -(1,4769:6797234,15613209:25785795,513147,126483 -k1,4768:8614220,15613209:288031 -k1,4768:10098937,15613209:288030 -k1,4768:11535159,15613209:288031 -k1,4768:15009549,15613209:288030 -k1,4768:16720367,15613209:288031 -k1,4768:19125866,15613209:288031 -k1,4768:22109392,15613209:288030 -k1,4768:23827419,15613209:288031 -k1,4768:24766877,15613209:288030 -k1,4768:27842810,15613209:288031 -k1,4768:29149925,15613209:288030 -k1,4768:31923737,15613209:288031 -k1,4768:32583029,15613209:0 -) -(1,4769:6797234,16454697:25785795,513147,126483 -g1,4768:9024147,16454697 -g1,4768:9882668,16454697 -g1,4768:11533519,16454697 -g1,4768:13413091,16454697 -g1,4768:14228358,16454697 -g1,4768:15446672,16454697 -k1,4769:32583029,16454697:14984810 -g1,4769:32583029,16454697 -) -] -g1,4769:32583029,16581180 -) -h1,4769:6630773,16581180:0,0,0 -v1,4772:6630773,17919534:0,393216,0 -(1,4781:6630773,21349554:25952256,3823236,0 -g1,4781:6630773,21349554 -g1,4781:6303093,21349554 -r1,4846:6401397,21349554:98304,3823236,0 -g1,4781:6600626,21349554 -g1,4781:6797234,21349554 -[1,4781:6797234,21349554:25785795,3823236,0 -(1,4773:6797234,18281607:25785795,755289,196608 -(1,4772:6797234,18281607:0,755289,196608 -r1,4846:8134168,18281607:1336934,951897,196608 -k1,4772:6797234,18281607:-1336934 -) -(1,4772:6797234,18281607:1336934,755289,196608 -) -k1,4772:8314342,18281607:180174 -k1,4772:8642022,18281607:327680 -k1,4772:10018882,18281607:180173 -k1,4772:11695243,18281607:180174 -k1,4772:13743847,18281607:180173 -k1,4772:16609031,18281607:180174 -k1,4772:17555321,18281607:180174 -k1,4772:20025322,18281607:180173 -k1,4772:22276434,18281607:180174 -k1,4772:24200521,18281607:180174 -k1,4772:26388717,18281607:180173 -k1,4772:28637207,18281607:180174 -k1,4772:29808940,18281607:180173 -k1,4772:30605152,18281607:180174 -k1,4773:32583029,18281607:0 -) -(1,4773:6797234,19123095:25785795,452978,115847 -(1,4772:6797234,19123095:0,452978,115847 -r1,4846:9265771,19123095:2468537,568825,115847 -k1,4772:6797234,19123095:-2468537 -) -(1,4772:6797234,19123095:2468537,452978,115847 -k1,4772:6797234,19123095:3277 -h1,4772:9262494,19123095:0,411205,112570 -) -k1,4773:32583029,19123095:23143588 -g1,4773:32583029,19123095 -) -v1,4775:6797234,20313561:0,393216,0 -(1,4779:6797234,20628658:25785795,708313,196608 -g1,4779:6797234,20628658 -g1,4779:6797234,20628658 -g1,4779:6600626,20628658 -(1,4779:6600626,20628658:0,708313,196608 -r1,4846:32779637,20628658:26179011,904921,196608 -k1,4779:6600625,20628658:-26179012 -) -(1,4779:6600626,20628658:26179011,708313,196608 -[1,4779:6797234,20628658:25785795,511705,0 -(1,4777:6797234,20527471:25785795,410518,101187 -(1,4776:6797234,20527471:0,0,0 -g1,4776:6797234,20527471 -g1,4776:6797234,20527471 -g1,4776:6469554,20527471 -(1,4776:6469554,20527471:0,0,0 -) -g1,4776:6797234,20527471 -) -k1,4777:6797234,20527471:0 -g1,4777:10590983,20527471 -g1,4777:11223275,20527471 -g1,4777:19126919,20527471 -h1,4777:21972230,20527471:0,0,0 -k1,4777:32583029,20527471:10610799 -g1,4777:32583029,20527471 -) -] -) -g1,4779:32583029,20628658 -g1,4779:6797234,20628658 -g1,4779:6797234,20628658 -g1,4779:32583029,20628658 -g1,4779:32583029,20628658 -) -h1,4779:6797234,20825266:0,0,0 -] -g1,4781:32583029,21349554 -) -h1,4781:6630773,21349554:0,0,0 -(1,4785:6630773,24653989:25952256,32768,229376 -(1,4785:6630773,24653989:0,32768,229376 -(1,4785:6630773,24653989:5505024,32768,229376 -r1,4846:12135797,24653989:5505024,262144,229376 -) -k1,4785:6630773,24653989:-5505024 -) -(1,4785:6630773,24653989:25952256,32768,0 -r1,4846:32583029,24653989:25952256,32768,0 -) -) -(1,4785:6630773,26258317:25952256,606339,151780 -(1,4785:6630773,26258317:2464678,582746,14155 -g1,4785:6630773,26258317 -g1,4785:9095451,26258317 -) -g1,4785:12693378,26258317 -g1,4785:14403081,26258317 -g1,4785:21585565,26258317 -k1,4785:32583029,26258317:8469871 -g1,4785:32583029,26258317 -) -(1,4789:6630773,27493021:25952256,505283,102891 -k1,4788:9511681,27493021:203762 -k1,4788:11190658,27493021:203762 -k1,4788:12566860,27493021:203763 -k1,4788:16619551,27493021:203762 -k1,4788:18357511,27493021:203762 -k1,4788:19752718,27493021:203762 -k1,4788:22843341,27493021:203762 -k1,4788:24238548,27493021:203762 -k1,4788:25588536,27493021:203763 -k1,4788:28100476,27493021:203762 -k1,4788:29070354,27493021:203762 -k1,4788:30782755,27493021:203762 -k1,4789:32583029,27493021:0 -) -(1,4789:6630773,28334509:25952256,505283,134348 -k1,4788:8192042,28334509:194843 -k1,4788:10123590,28334509:194844 -k1,4788:11337518,28334509:194843 -k1,4788:13185834,28334509:194843 -k1,4788:15336928,28334509:194844 -k1,4788:16723216,28334509:194843 -k1,4788:17909619,28334509:194843 -k1,4788:20440165,28334509:194843 -k1,4788:21704557,28334509:194844 -k1,4788:23279588,28334509:194843 -k1,4788:24465991,28334509:194843 -k1,4788:29281779,28334509:194844 -k1,4788:31021961,28334509:194843 -k1,4789:32583029,28334509:0 -) -(1,4789:6630773,29175997:25952256,505283,126483 -k1,4788:8978925,29175997:178910 -k1,4788:11891341,29175997:178909 -k1,4788:13061811,29175997:178910 -k1,4788:14753946,29175997:178909 -k1,4788:15584284,29175997:178910 -k1,4788:17380623,29175997:178910 -(1,4788:17380623,29175997:0,452978,115847 -r1,4846:19849160,29175997:2468537,568825,115847 -k1,4788:17380623,29175997:-2468537 -) -(1,4788:17380623,29175997:2468537,452978,115847 -k1,4788:17380623,29175997:3277 -h1,4788:19845883,29175997:0,411205,112570 -) -k1,4788:20201739,29175997:178909 -(1,4788:20201739,29175997:0,452978,122846 -r1,4846:22670276,29175997:2468537,575824,122846 -k1,4788:20201739,29175997:-2468537 -) -(1,4788:20201739,29175997:2468537,452978,122846 -k1,4788:20201739,29175997:3277 -h1,4788:22666999,29175997:0,411205,112570 -) -k1,4788:22849186,29175997:178910 -k1,4788:23710980,29175997:178909 -(1,4788:23710980,29175997:0,452978,122846 -r1,4846:26179517,29175997:2468537,575824,122846 -k1,4788:23710980,29175997:-2468537 -) -(1,4788:23710980,29175997:2468537,452978,122846 -k1,4788:23710980,29175997:3277 -h1,4788:26176240,29175997:0,411205,112570 -) -k1,4788:26358427,29175997:178910 -k1,4788:28721651,29175997:178909 -k1,4788:30097248,29175997:178910 -k1,4788:32583029,29175997:0 -) -(1,4789:6630773,30017485:25952256,513147,134348 -k1,4788:7475157,30017485:185092 -k1,4788:9194447,30017485:185092 -k1,4788:10570985,30017485:185093 -k1,4788:13469268,30017485:185092 -k1,4788:14758642,30017485:185092 -k1,4788:16860662,30017485:185092 -k1,4788:17770582,30017485:185092 -k1,4788:20689182,30017485:185093 -k1,4788:21978556,30017485:185092 -k1,4788:22911414,30017485:185092 -k1,4788:24952486,30017485:185092 -k1,4788:27278640,30017485:185093 -k1,4788:28146617,30017485:185092 -k1,4788:31966991,30017485:185092 -k1,4788:32583029,30017485:0 -) -(1,4789:6630773,30858973:25952256,505283,134348 -g1,4788:8872759,30858973 -g1,4788:10144157,30858973 -g1,4788:12098440,30858973 -k1,4789:32583028,30858973:18150196 -g1,4789:32583028,30858973 -) -(1,4791:6630773,31700461:25952256,513147,126483 -h1,4790:6630773,31700461:983040,0,0 -k1,4790:8446322,31700461:204674 -k1,4790:9239509,31700461:204674 -k1,4790:10463267,31700461:204673 -k1,4790:11974074,31700461:204674 -k1,4790:13927904,31700461:204674 -k1,4790:16261843,31700461:204674 -k1,4790:18978511,31700461:204673 -k1,4790:20717383,31700461:204674 -k1,4790:22113502,31700461:204674 -k1,4790:23337261,31700461:204674 -k1,4790:25783265,31700461:204673 -k1,4790:27737095,31700461:204674 -k1,4790:30071034,31700461:204674 -k1,4790:32583029,31700461:0 -) -(1,4791:6630773,32541949:25952256,505283,134348 -k1,4790:9696594,32541949:178960 -k1,4790:11072241,32541949:178960 -k1,4790:13867398,32541949:178960 -k1,4790:15914789,32541949:178960 -k1,4790:18404548,32541949:178960 -k1,4790:18939368,32541949:178960 -k1,4790:21379320,32541949:178960 -$1,4790:21379320,32541949 -$1,4790:21897054,32541949 -k1,4790:22249685,32541949:178961 -k1,4790:23822596,32541949:178960 -$1,4790:23822596,32541949 -$1,4790:24542837,32541949 -k1,4790:24721797,32541949:178960 -k1,4790:26434955,32541949:178960 -k1,4790:27805360,32541949:178960 -$1,4790:27805360,32541949 -$1,4790:28320473,32541949 -k1,4790:28499433,32541949:178960 -k1,4790:31391584,32541949:178960 -k1,4790:32583029,32541949:0 -) -(1,4791:6630773,33383437:25952256,505283,195111 -k1,4790:8111856,33383437:212306 -k1,4790:10051691,33383437:212306 -k1,4790:10915424,33383437:212305 -$1,4790:10915424,33383437 -k1,4790:11790873,33383437:155208 -k1,4790:12514278,33383437:155208 -$1,4790:13029391,33383437 -k1,4790:13241697,33383437:212306 -k1,4790:15649459,33383437:212306 -k1,4790:17255716,33383437:212306 -k1,4790:20660935,33383437:212305 -k1,4790:22883886,33383437:212306 -k1,4790:25698627,33383437:212306 -k1,4790:26672461,33383437:212306 -$1,4790:26672461,33383437 -(1,4790:27135145,33481751:619971,346358,96797 -) -$1,4790:27755116,33383437 -k1,4790:28141092,33383437:212306 -k1,4790:29841720,33383437:212305 -k1,4790:30922378,33383437:212306 -k1,4790:32227169,33383437:212306 -k1,4790:32583029,33383437:0 -) -(1,4791:6630773,34224925:25952256,513147,134348 -k1,4790:9236132,34224925:192323 -k1,4790:14093308,34224925:192323 -k1,4790:15728077,34224925:192322 -k1,4790:17204906,34224925:192323 -k1,4790:18910455,34224925:192323 -k1,4790:20050429,34224925:192323 -k1,4790:22550929,34224925:192322 -k1,4790:23552622,34224925:192323 -k1,4790:25243098,34224925:192323 -h1,4790:26040016,34224925:0,0,0 -k1,4790:26232339,34224925:192323 -k1,4790:28453656,34224925:192322 -k1,4790:29718148,34224925:192323 -k1,4790:30929556,34224925:192323 -k1,4790:32583029,34224925:0 -) -(1,4791:6630773,35066413:25952256,505283,126483 -g1,4790:9661813,35066413 -k1,4791:32583029,35066413:20983972 -g1,4791:32583029,35066413 -) -(1,4843:6630773,45706769:25952256,9827254,0 -k1,4843:14480545,45706769:7849772 -(1,4792:14480545,45706769:0,0,0 -g1,4792:14480545,45706769 -g1,4792:14480545,45706769 -g1,4792:14152865,45706769 -(1,4792:14152865,45706769:0,0,0 -) -g1,4792:14480545,45706769 -) -(1,4841:14480545,45706769:10252712,9827254,0 -g1,4841:19880232,45706769 -(1,4841:19880232,40295546:0,0,0 -(1,4841:19880232,40295546:0,0,0 -g1,4829:19880232,40295546 -(1,4836:19880232,40295546:0,0,0 -(1,4836:19880232,40295546:0,0,0 -g1,4836:19880232,40295546 -g1,4836:19880232,40295546 -g1,4836:19880232,40295546 -g1,4836:19880232,40295546 -g1,4836:19880232,40295546 -(1,4836:19880232,40295546:0,0,0 -(1,4836:19880232,40295546:7877422,7084437,792985 -[1,4836:19880232,40295546:7877422,7084437,792985 -(1,4832:19880232,34004094:7877422,792985,792985 -g1,4831:19880232,34004094 -(1,4831:19880232,34004094:792985,792985,792985 -g1,4831:19880232,34004094 -g1,4831:20673217,34004094 -(1,4831:20673217,34004094:0,792985,792985 -(1,4831:20673217,34004094:0,0,0 -(1,4831:20673217,34004094:0,0,0 -g1,4831:20673217,34004094 -g1,4831:20673217,34004094 -g1,4831:20673217,34004094 -g1,4831:20673217,34004094 -g1,4831:20673217,34004094 -(1,4831:20673217,34004094:0,0,0 -(1,4831:20673217,34004094:994704,281018,140387 -(1,4831:20673217,34004094:994704,281018,140387 -$1,4831:20673217,34004094 -h1,4831:20673217,34004094:0,281018,137888 -(1,4831:21043364,34082746:624557,286654,61735 -) -$1,4831:21667921,34004094 -) -g1,4831:21667921,34004094 -) -) -g1,4831:20673217,34004094 -g1,4831:20673217,34004094 -) -) -g1,4831:20673217,34004094 -) -) -g1,4831:20673217,34004094 -(1,4831:20673217,34004094:792985,792985,792985 -g1,4831:21466202,34004094 -g1,4831:21466202,34004094 -) -g1,4831:21466202,34004094 -(1,4831:21466202,34004094:779878,792985,792985 -g1,4831:21466202,34004094 -g1,4831:22246080,34004094 -(1,4831:22246080,34004094:0,792985,792985 -(1,4831:22246080,34004094:0,0,0 -(1,4831:22246080,34004094:0,0,0 -g1,4831:22246080,34004094 -g1,4831:22246080,34004094 -g1,4831:22246080,34004094 -g1,4831:22246080,34004094 -g1,4831:22246080,34004094 -(1,4831:22246080,34004094:0,0,0 -(1,4831:22246080,34004094:994704,281018,140387 -(1,4831:22246080,34004094:994704,281018,140387 -$1,4831:22246080,34004094 -h1,4831:22246080,34004094:0,281018,137888 -(1,4831:22616227,34082746:624557,291373,61735 -) -$1,4831:23240784,34004094 -) -g1,4831:23240784,34004094 -) -) -g1,4831:22246080,34004094 -g1,4831:22246080,34004094 -) -) -g1,4831:22246080,34004094 -) -) -g1,4831:22246080,34004094 -(1,4831:22246080,34004094:792985,792985,792985 -g1,4831:23039065,34004094 -g1,4831:23039065,34004094 -) -g1,4831:23039065,34004094 -(1,4831:23039065,34004094:779878,792985,792985 -g1,4831:23039065,34004094 -g1,4831:23818943,34004094 -(1,4831:23818943,34004094:0,792985,792985 -(1,4831:23818943,34004094:0,0,0 -(1,4831:23818943,34004094:0,0,0 -g1,4831:23818943,34004094 -g1,4831:23818943,34004094 -g1,4831:23818943,34004094 -g1,4831:23818943,34004094 -g1,4831:23818943,34004094 -(1,4831:23818943,34004094:0,0,0 -(1,4831:23818943,34004094:994704,281018,140387 -(1,4831:23818943,34004094:994704,281018,140387 -$1,4831:23818943,34004094 -h1,4831:23818943,34004094:0,281018,137888 -(1,4831:24189090,34082746:624557,291373,61735 -) -$1,4831:24813647,34004094 -) -g1,4831:24813647,34004094 -) -) -g1,4831:23818943,34004094 -g1,4831:23818943,34004094 -) -) -g1,4831:23818943,34004094 -) -) -g1,4831:23818943,34004094 -(1,4831:23818943,34004094:792985,792985,792985 -g1,4831:24611928,34004094 -g1,4831:24611928,34004094 -) -g1,4831:24611928,34004094 -(1,4831:24611928,34004094:779878,792985,792985 -g1,4831:24611928,34004094 -g1,4831:25391806,34004094 -(1,4831:25391806,34004094:0,792985,792985 -(1,4831:25391806,34004094:0,0,0 -(1,4831:25391806,34004094:0,0,0 -g1,4831:25391806,34004094 -g1,4831:25391806,34004094 -g1,4831:25391806,34004094 -g1,4831:25391806,34004094 -g1,4831:25391806,34004094 -(1,4831:25391806,34004094:0,0,0 -(1,4831:25391806,34004094:549288,281018,137888 -(1,4831:25391806,34004094:549288,281018,137888 -$1,4831:25391806,34004094 -h1,4831:25391806,34004094:0,281018,137888 -g1,4831:25479196,34004094 -$1,4831:25941094,34004094 -) -g1,4831:25941094,34004094 -) -) -g1,4831:25391806,34004094 -g1,4831:25391806,34004094 -) -) -g1,4831:25391806,34004094 -) -) -g1,4831:25391806,34004094 -(1,4831:25391806,34004094:792985,792985,792985 -g1,4831:26184791,34004094 -g1,4831:26184791,34004094 -) -g1,4831:26184791,34004094 -(1,4831:26184791,34004094:779878,792985,792985 -g1,4831:26184791,34004094 -g1,4831:26964669,34004094 -(1,4831:26964669,34004094:0,792985,792985 -(1,4831:26964669,34004094:0,0,0 -(1,4831:26964669,34004094:0,0,0 -g1,4831:26964669,34004094 -g1,4831:26964669,34004094 -g1,4831:26964669,34004094 -g1,4831:26964669,34004094 -g1,4831:26964669,34004094 -(1,4831:26964669,34004094:0,0,0 -(1,4831:26964669,34004094:1064697,281018,140387 -(1,4831:26964669,34004094:1064697,281018,140387 -$1,4831:26964669,34004094 -h1,4831:26964669,34004094:0,281018,137888 -(1,4831:27334816,34082746:694550,286654,61735 -) -$1,4831:28029366,34004094 -) -g1,4831:28029366,34004094 -) -) -g1,4831:26964669,34004094 -g1,4831:26964669,34004094 -) -) -g1,4831:26964669,34004094 -) -) -g1,4831:26964669,34004094 -(1,4832:26964669,34004094:792985,792985,792985 -g1,4832:27757654,34004094 -g1,4832:27757654,34004094 -) -g1,4832:27757654,34004094 -) -(1,4833:19880232,35576957:7877422,792985,792985 -g1,4832:19880232,35576957 -(1,4832:19880232,35576957:792985,792985,792985 -g1,4832:19880232,35576957 -g1,4832:20673217,35576957 -(1,4832:20673217,35576957:0,792985,792985 -(1,4832:20673217,35576957:0,0,0 -(1,4832:20673217,35576957:0,0,0 -g1,4832:20673217,35576957 -g1,4832:20673217,35576957 -g1,4832:20673217,35576957 -g1,4832:20673217,35576957 -g1,4832:20673217,35576957 -(1,4832:20673217,35576957:0,0,0 -(1,4832:20673217,35576957:994704,281018,140387 -(1,4832:20673217,35576957:994704,281018,140387 -$1,4832:20673217,35576957 -h1,4832:20673217,35576957:0,281018,137888 -(1,4832:21043364,35655609:624557,291373,61735 -) -$1,4832:21667921,35576957 -) -g1,4832:21667921,35576957 -) -) -g1,4832:20673217,35576957 -g1,4832:20673217,35576957 -) -) -g1,4832:20673217,35576957 -) -) -g1,4832:20673217,35576957 -(1,4832:20673217,35576957:792985,792985,792985 -g1,4832:21466202,35576957 -g1,4832:21466202,35576957 -) -g1,4832:21466202,35576957 -(1,4832:21466202,35576957:779878,792985,792985 -g1,4832:21466202,35576957 -g1,4832:22246080,35576957 -(1,4832:22246080,35576957:0,792985,792985 -(1,4832:22246080,35576957:0,0,0 -(1,4832:22246080,35576957:0,0,0 -g1,4832:22246080,35576957 -g1,4832:22246080,35576957 -g1,4832:22246080,35576957 -g1,4832:22246080,35576957 -g1,4832:22246080,35576957 -(1,4832:22246080,35576957:0,0,0 -(1,4832:22246080,35576957:994704,281018,140387 -(1,4832:22246080,35576957:994704,281018,140387 -$1,4832:22246080,35576957 -h1,4832:22246080,35576957:0,281018,137888 -(1,4832:22616227,35655609:624557,291373,61735 -) -$1,4832:23240784,35576957 -) -g1,4832:23240784,35576957 -) -) -g1,4832:22246080,35576957 -g1,4832:22246080,35576957 -) -) -g1,4832:22246080,35576957 -) -) -g1,4832:22246080,35576957 -(1,4832:22246080,35576957:792985,792985,792985 -g1,4832:23039065,35576957 -g1,4832:23039065,35576957 -) -g1,4832:23039065,35576957 -(1,4832:23039065,35576957:779878,792985,792985 -g1,4832:23039065,35576957 -g1,4832:23818943,35576957 -(1,4832:23818943,35576957:0,792985,792985 -(1,4832:23818943,35576957:0,0,0 -(1,4832:23818943,35576957:0,0,0 -g1,4832:23818943,35576957 -g1,4832:23818943,35576957 -g1,4832:23818943,35576957 -g1,4832:23818943,35576957 -g1,4832:23818943,35576957 -(1,4832:23818943,35576957:0,0,0 -(1,4832:23818943,35576957:994704,281018,140387 -(1,4832:23818943,35576957:994704,281018,140387 -$1,4832:23818943,35576957 -h1,4832:23818943,35576957:0,281018,137888 -(1,4832:24189090,35655609:624557,291373,61735 -) -$1,4832:24813647,35576957 -) -g1,4832:24813647,35576957 -) -) -g1,4832:23818943,35576957 -g1,4832:23818943,35576957 -) -) -g1,4832:23818943,35576957 -) -) -g1,4832:23818943,35576957 -(1,4832:23818943,35576957:792985,792985,792985 -g1,4832:24611928,35576957 -g1,4832:24611928,35576957 -) -g1,4832:24611928,35576957 -(1,4832:24611928,35576957:779878,792985,792985 -g1,4832:24611928,35576957 -g1,4832:25391806,35576957 -(1,4832:25391806,35576957:0,792985,792985 -(1,4832:25391806,35576957:0,0,0 -(1,4832:25391806,35576957:0,0,0 -g1,4832:25391806,35576957 -g1,4832:25391806,35576957 -g1,4832:25391806,35576957 -g1,4832:25391806,35576957 -g1,4832:25391806,35576957 -(1,4832:25391806,35576957:0,0,0 -(1,4832:25391806,35576957:0,281018,137888 -(1,4832:25391806,35576957:0,281018,137888 -$1,4832:25391806,35576957 -h1,4832:25391806,35576957:0,281018,137888 -$1,4832:25391806,35576957 -) -g1,4832:25391806,35576957 -) -) -g1,4832:25391806,35576957 -g1,4832:25391806,35576957 -) -) -g1,4832:25391806,35576957 -) -) -g1,4832:25391806,35576957 -(1,4832:25391806,35576957:792985,792985,792985 -g1,4832:26184791,35576957 -g1,4832:26184791,35576957 -) -g1,4832:26184791,35576957 -(1,4832:26184791,35576957:779878,792985,792985 -g1,4832:26184791,35576957 -g1,4832:26964669,35576957 -(1,4832:26964669,35576957:0,792985,792985 -(1,4832:26964669,35576957:0,0,0 -(1,4832:26964669,35576957:0,0,0 -g1,4832:26964669,35576957 -g1,4832:26964669,35576957 -g1,4832:26964669,35576957 -g1,4832:26964669,35576957 -g1,4832:26964669,35576957 -(1,4832:26964669,35576957:0,0,0 -(1,4832:26964669,35576957:1064697,281018,140387 -(1,4832:26964669,35576957:1064697,281018,140387 -$1,4832:26964669,35576957 -h1,4832:26964669,35576957:0,281018,137888 -(1,4832:27334816,35655609:694550,291373,61735 -) -$1,4832:28029366,35576957 -) -g1,4832:28029366,35576957 -) -) -g1,4832:26964669,35576957 -g1,4832:26964669,35576957 -) -) -g1,4832:26964669,35576957 -) -) -g1,4832:26964669,35576957 -(1,4833:26964669,35576957:792985,792985,792985 -g1,4833:27757654,35576957 -g1,4833:27757654,35576957 -) -g1,4833:27757654,35576957 -) -(1,4834:19880232,37149820:7877422,792985,792985 -g1,4833:19880232,37149820 -(1,4833:19880232,37149820:792985,792985,792985 -g1,4833:19880232,37149820 -g1,4833:20673217,37149820 -(1,4833:20673217,37149820:0,792985,792985 -(1,4833:20673217,37149820:0,0,0 -(1,4833:20673217,37149820:0,0,0 -g1,4833:20673217,37149820 -g1,4833:20673217,37149820 -g1,4833:20673217,37149820 -g1,4833:20673217,37149820 -g1,4833:20673217,37149820 -(1,4833:20673217,37149820:0,0,0 -(1,4833:20673217,37149820:994704,281018,140387 -(1,4833:20673217,37149820:994704,281018,140387 -$1,4833:20673217,37149820 -h1,4833:20673217,37149820:0,281018,137888 -(1,4833:21043364,37228472:624557,291373,61735 -) -$1,4833:21667921,37149820 -) -g1,4833:21667921,37149820 -) -) -g1,4833:20673217,37149820 -g1,4833:20673217,37149820 -) -) -g1,4833:20673217,37149820 -) -) -g1,4833:20673217,37149820 -(1,4833:20673217,37149820:792985,792985,792985 -g1,4833:21466202,37149820 -g1,4833:21466202,37149820 -) -g1,4833:21466202,37149820 -(1,4833:21466202,37149820:779878,792985,792985 -g1,4833:21466202,37149820 -g1,4833:22246080,37149820 -(1,4833:22246080,37149820:0,792985,792985 -(1,4833:22246080,37149820:0,0,0 -(1,4833:22246080,37149820:0,0,0 -g1,4833:22246080,37149820 -g1,4833:22246080,37149820 -g1,4833:22246080,37149820 -g1,4833:22246080,37149820 -g1,4833:22246080,37149820 -(1,4833:22246080,37149820:0,0,0 -(1,4833:22246080,37149820:994704,281018,140387 -(1,4833:22246080,37149820:994704,281018,140387 -$1,4833:22246080,37149820 -h1,4833:22246080,37149820:0,281018,137888 -(1,4833:22616227,37228472:624557,291373,61735 -) -$1,4833:23240784,37149820 -) -g1,4833:23240784,37149820 -) -) -g1,4833:22246080,37149820 -g1,4833:22246080,37149820 -) -) -g1,4833:22246080,37149820 -) -) -g1,4833:22246080,37149820 -(1,4833:22246080,37149820:792985,792985,792985 -g1,4833:23039065,37149820 -g1,4833:23039065,37149820 -) -g1,4833:23039065,37149820 -(1,4833:23039065,37149820:779878,792985,792985 -g1,4833:23039065,37149820 -g1,4833:23818943,37149820 -(1,4833:23818943,37149820:0,792985,792985 -(1,4833:23818943,37149820:0,0,0 -(1,4833:23818943,37149820:0,0,0 -g1,4833:23818943,37149820 -g1,4833:23818943,37149820 -g1,4833:23818943,37149820 -g1,4833:23818943,37149820 -g1,4833:23818943,37149820 -(1,4833:23818943,37149820:0,0,0 -(1,4833:23818943,37149820:994704,281018,140387 -(1,4833:23818943,37149820:994704,281018,140387 -$1,4833:23818943,37149820 -h1,4833:23818943,37149820:0,281018,137888 -(1,4833:24189090,37228472:624557,291373,61735 -) -$1,4833:24813647,37149820 -) -g1,4833:24813647,37149820 -) -) -g1,4833:23818943,37149820 -g1,4833:23818943,37149820 -) -) -g1,4833:23818943,37149820 -) -) -g1,4833:23818943,37149820 -(1,4833:23818943,37149820:792985,792985,792985 -g1,4833:24611928,37149820 -g1,4833:24611928,37149820 -) -g1,4833:24611928,37149820 -(1,4833:24611928,37149820:779878,792985,792985 -g1,4833:24611928,37149820 -g1,4833:25391806,37149820 -(1,4833:25391806,37149820:0,792985,792985 -(1,4833:25391806,37149820:0,0,0 -(1,4833:25391806,37149820:0,0,0 -g1,4833:25391806,37149820 -g1,4833:25391806,37149820 -g1,4833:25391806,37149820 -g1,4833:25391806,37149820 -g1,4833:25391806,37149820 -(1,4833:25391806,37149820:0,0,0 -(1,4833:25391806,37149820:0,281018,137888 -(1,4833:25391806,37149820:0,281018,137888 -$1,4833:25391806,37149820 -h1,4833:25391806,37149820:0,281018,137888 -$1,4833:25391806,37149820 -) -g1,4833:25391806,37149820 -) -) -g1,4833:25391806,37149820 -g1,4833:25391806,37149820 -) -) -g1,4833:25391806,37149820 -) -) -g1,4833:25391806,37149820 -(1,4833:25391806,37149820:792985,792985,792985 -g1,4833:26184791,37149820 -g1,4833:26184791,37149820 -) -g1,4833:26184791,37149820 -(1,4833:26184791,37149820:779878,792985,792985 -g1,4833:26184791,37149820 -g1,4833:26964669,37149820 -(1,4833:26964669,37149820:0,792985,792985 -(1,4833:26964669,37149820:0,0,0 -(1,4833:26964669,37149820:0,0,0 -g1,4833:26964669,37149820 -g1,4833:26964669,37149820 -g1,4833:26964669,37149820 -g1,4833:26964669,37149820 -g1,4833:26964669,37149820 -(1,4833:26964669,37149820:0,0,0 -(1,4833:26964669,37149820:1064697,281018,140387 -(1,4833:26964669,37149820:1064697,281018,140387 -$1,4833:26964669,37149820 -h1,4833:26964669,37149820:0,281018,137888 -(1,4833:27334816,37228472:694550,291373,61735 -) -$1,4833:28029366,37149820 -) -g1,4833:28029366,37149820 -) -) -g1,4833:26964669,37149820 -g1,4833:26964669,37149820 -) -) -g1,4833:26964669,37149820 -) -) -g1,4833:26964669,37149820 -(1,4834:26964669,37149820:792985,792985,792985 -g1,4834:27757654,37149820 -g1,4834:27757654,37149820 -) -g1,4834:27757654,37149820 -) -(1,4835:19880232,38722683:7877422,792985,792985 -g1,4834:19880232,38722683 -(1,4834:19880232,38722683:792985,792985,792985 -g1,4834:19880232,38722683 -g1,4834:20673217,38722683 -(1,4834:20673217,38722683:0,792985,792985 -(1,4834:20673217,38722683:0,0,0 -(1,4834:20673217,38722683:0,0,0 -g1,4834:20673217,38722683 -g1,4834:20673217,38722683 -g1,4834:20673217,38722683 -g1,4834:20673217,38722683 -g1,4834:20673217,38722683 -(1,4834:20673217,38722683:0,0,0 -(1,4834:20673217,38722683:607548,341312,137888 -(1,4834:20673217,38722683:607548,341312,137888 -$1,4834:20673217,38722683 -h1,4834:20673217,38722683:0,281018,137888 -g1,4834:20818867,38722683 -$1,4834:21280765,38722683 -) -g1,4834:21280765,38722683 -) -) -g1,4834:20673217,38722683 -g1,4834:20673217,38722683 -) -) -g1,4834:20673217,38722683 -) -) -g1,4834:20673217,38722683 -(1,4834:20673217,38722683:792985,792985,792985 -g1,4834:21466202,38722683 -g1,4834:21466202,38722683 -) -g1,4834:21466202,38722683 -(1,4834:21466202,38722683:779878,792985,792985 -g1,4834:21466202,38722683 -g1,4834:22246080,38722683 -(1,4834:22246080,38722683:0,792985,792985 -(1,4834:22246080,38722683:0,0,0 -(1,4834:22246080,38722683:0,0,0 -g1,4834:22246080,38722683 -g1,4834:22246080,38722683 -g1,4834:22246080,38722683 -g1,4834:22246080,38722683 -g1,4834:22246080,38722683 -(1,4834:22246080,38722683:0,0,0 -(1,4834:22246080,38722683:0,281018,137888 -(1,4834:22246080,38722683:0,281018,137888 -$1,4834:22246080,38722683 -h1,4834:22246080,38722683:0,281018,137888 -$1,4834:22246080,38722683 -) -g1,4834:22246080,38722683 -) -) -g1,4834:22246080,38722683 -g1,4834:22246080,38722683 -) -) -g1,4834:22246080,38722683 -) -) -g1,4834:22246080,38722683 -(1,4834:22246080,38722683:792985,792985,792985 -g1,4834:23039065,38722683 -g1,4834:23039065,38722683 -) -g1,4834:23039065,38722683 -(1,4834:23039065,38722683:779878,792985,792985 -g1,4834:23039065,38722683 -g1,4834:23818943,38722683 -(1,4834:23818943,38722683:0,792985,792985 -(1,4834:23818943,38722683:0,0,0 -(1,4834:23818943,38722683:0,0,0 -g1,4834:23818943,38722683 -g1,4834:23818943,38722683 -g1,4834:23818943,38722683 -g1,4834:23818943,38722683 -g1,4834:23818943,38722683 -(1,4834:23818943,38722683:0,0,0 -(1,4834:23818943,38722683:0,281018,137888 -(1,4834:23818943,38722683:0,281018,137888 -$1,4834:23818943,38722683 -h1,4834:23818943,38722683:0,281018,137888 -$1,4834:23818943,38722683 -) -g1,4834:23818943,38722683 -) -) -g1,4834:23818943,38722683 -g1,4834:23818943,38722683 -) -) -g1,4834:23818943,38722683 -) -) -g1,4834:23818943,38722683 -(1,4834:23818943,38722683:792985,792985,792985 -g1,4834:24611928,38722683 -g1,4834:24611928,38722683 -) -g1,4834:24611928,38722683 -(1,4834:24611928,38722683:779878,792985,792985 -g1,4834:24611928,38722683 -g1,4834:25391806,38722683 -(1,4834:25391806,38722683:0,792985,792985 -(1,4834:25391806,38722683:0,0,0 -(1,4834:25391806,38722683:0,0,0 -g1,4834:25391806,38722683 -g1,4834:25391806,38722683 -g1,4834:25391806,38722683 -g1,4834:25391806,38722683 -g1,4834:25391806,38722683 -(1,4834:25391806,38722683:0,0,0 -(1,4834:25391806,38722683:600208,341312,137888 -(1,4834:25391806,38722683:600208,341312,137888 -$1,4834:25391806,38722683 -h1,4834:25391806,38722683:0,281018,137888 -g1,4834:25537456,38722683 -$1,4834:25992014,38722683 -) -g1,4834:25992014,38722683 -) -) -g1,4834:25391806,38722683 -g1,4834:25391806,38722683 -) -) -g1,4834:25391806,38722683 -) -) -g1,4834:25391806,38722683 -(1,4834:25391806,38722683:792985,792985,792985 -g1,4834:26184791,38722683 -g1,4834:26184791,38722683 -) -g1,4834:26184791,38722683 -(1,4834:26184791,38722683:779878,792985,792985 -g1,4834:26184791,38722683 -g1,4834:26964669,38722683 -(1,4834:26964669,38722683:0,792985,792985 -(1,4834:26964669,38722683:0,0,0 -(1,4834:26964669,38722683:0,0,0 -g1,4834:26964669,38722683 -g1,4834:26964669,38722683 -g1,4834:26964669,38722683 -g1,4834:26964669,38722683 -g1,4834:26964669,38722683 -(1,4834:26964669,38722683:0,0,0 -(1,4834:26964669,38722683:0,281018,137888 -(1,4834:26964669,38722683:0,281018,137888 -$1,4834:26964669,38722683 -h1,4834:26964669,38722683:0,281018,137888 -$1,4834:26964669,38722683 -) -g1,4834:26964669,38722683 -) -) -g1,4834:26964669,38722683 -g1,4834:26964669,38722683 -) -) -g1,4834:26964669,38722683 -) -) -g1,4834:26964669,38722683 -(1,4835:26964669,38722683:792985,792985,792985 -g1,4835:27757654,38722683 -g1,4835:27757654,38722683 -) -g1,4835:27757654,38722683 -) -(1,4836:19880232,40295546:7877422,792985,792985 -g1,4835:19880232,40295546 -(1,4835:19880232,40295546:792985,792985,792985 -g1,4835:19880232,40295546 -g1,4835:20673217,40295546 -(1,4835:20673217,40295546:0,792985,792985 -(1,4835:20673217,40295546:0,0,0 -(1,4835:20673217,40295546:0,0,0 -g1,4835:20673217,40295546 -g1,4835:20673217,40295546 -g1,4835:20673217,40295546 -g1,4835:20673217,40295546 -g1,4835:20673217,40295546 -(1,4835:20673217,40295546:0,0,0 -(1,4835:20673217,40295546:1187773,281018,140387 -(1,4835:20673217,40295546:1187773,281018,140387 -$1,4835:20673217,40295546 -h1,4835:20673217,40295546:0,281018,137888 -(1,4835:21043364,40374198:817626,286654,61735 -) -$1,4835:21860990,40295546 -) -g1,4835:21860990,40295546 -) -) -g1,4835:20673217,40295546 -g1,4835:20673217,40295546 -) -) -g1,4835:20673217,40295546 -) -) -g1,4835:20673217,40295546 -(1,4835:20673217,40295546:792985,792985,792985 -g1,4835:21466202,40295546 -g1,4835:21466202,40295546 -) -g1,4835:21466202,40295546 -(1,4835:21466202,40295546:779878,792985,792985 -g1,4835:21466202,40295546 -g1,4835:22246080,40295546 -(1,4835:22246080,40295546:0,792985,792985 -(1,4835:22246080,40295546:0,0,0 -(1,4835:22246080,40295546:0,0,0 -g1,4835:22246080,40295546 -g1,4835:22246080,40295546 -g1,4835:22246080,40295546 -g1,4835:22246080,40295546 -g1,4835:22246080,40295546 -(1,4835:22246080,40295546:0,0,0 -(1,4835:22246080,40295546:1187773,281018,140387 -(1,4835:22246080,40295546:1187773,281018,140387 -$1,4835:22246080,40295546 -h1,4835:22246080,40295546:0,281018,137888 -(1,4835:22616227,40374198:817626,291373,61735 -) -$1,4835:23433853,40295546 -) -g1,4835:23433853,40295546 -) -) -g1,4835:22246080,40295546 -g1,4835:22246080,40295546 -) -) -g1,4835:22246080,40295546 -) -) -g1,4835:22246080,40295546 -(1,4835:22246080,40295546:792985,792985,792985 -g1,4835:23039065,40295546 -g1,4835:23039065,40295546 -) -g1,4835:23039065,40295546 -(1,4835:23039065,40295546:779878,792985,792985 -g1,4835:23039065,40295546 -g1,4835:23818943,40295546 -(1,4835:23818943,40295546:0,792985,792985 -(1,4835:23818943,40295546:0,0,0 -(1,4835:23818943,40295546:0,0,0 -g1,4835:23818943,40295546 -g1,4835:23818943,40295546 -g1,4835:23818943,40295546 -g1,4835:23818943,40295546 -g1,4835:23818943,40295546 -(1,4835:23818943,40295546:0,0,0 -(1,4835:23818943,40295546:1187773,281018,140387 -(1,4835:23818943,40295546:1187773,281018,140387 -$1,4835:23818943,40295546 -h1,4835:23818943,40295546:0,281018,137888 -(1,4835:24189090,40374198:817626,291373,61735 -) -$1,4835:25006716,40295546 -) -g1,4835:25006716,40295546 -) -) -g1,4835:23818943,40295546 -g1,4835:23818943,40295546 ) +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,4040:37855564,49800853:1179648,16384,0 ) -g1,4835:23818943,40295546 ) -) -g1,4835:23818943,40295546 -(1,4835:23818943,40295546:792985,792985,792985 -g1,4835:24611928,40295546 -g1,4835:24611928,40295546 -) -g1,4835:24611928,40295546 -(1,4835:24611928,40295546:779878,792985,792985 -g1,4835:24611928,40295546 -g1,4835:25391806,40295546 -(1,4835:25391806,40295546:0,792985,792985 -(1,4835:25391806,40295546:0,0,0 -(1,4835:25391806,40295546:0,0,0 -g1,4835:25391806,40295546 -g1,4835:25391806,40295546 -g1,4835:25391806,40295546 -g1,4835:25391806,40295546 -g1,4835:25391806,40295546 -(1,4835:25391806,40295546:0,0,0 -(1,4835:25391806,40295546:0,281018,137888 -(1,4835:25391806,40295546:0,281018,137888 -$1,4835:25391806,40295546 -h1,4835:25391806,40295546:0,281018,137888 -$1,4835:25391806,40295546 -) -g1,4835:25391806,40295546 -) -) -g1,4835:25391806,40295546 -g1,4835:25391806,40295546 -) -) -g1,4835:25391806,40295546 -) -) -g1,4835:25391806,40295546 -(1,4835:25391806,40295546:792985,792985,792985 -g1,4835:26184791,40295546 -g1,4835:26184791,40295546 -) -g1,4835:26184791,40295546 -(1,4835:26184791,40295546:779878,792985,792985 -g1,4835:26184791,40295546 -g1,4835:26964669,40295546 -(1,4835:26964669,40295546:0,792985,792985 -(1,4835:26964669,40295546:0,0,0 -(1,4835:26964669,40295546:0,0,0 -g1,4835:26964669,40295546 -g1,4835:26964669,40295546 -g1,4835:26964669,40295546 -g1,4835:26964669,40295546 -g1,4835:26964669,40295546 -(1,4835:26964669,40295546:0,0,0 -(1,4835:26964669,40295546:1257766,281018,140387 -(1,4835:26964669,40295546:1257766,281018,140387 -$1,4835:26964669,40295546 -h1,4835:26964669,40295546:0,281018,137888 -(1,4835:27334816,40374198:887619,213123,61735 -) -$1,4835:28222435,40295546 -) -g1,4835:28222435,40295546 -) -) -g1,4835:26964669,40295546 -g1,4835:26964669,40295546 -) -) -g1,4835:26964669,40295546 -) -) -g1,4835:26964669,40295546 -(1,4836:26964669,40295546:792985,792985,792985 -g1,4836:27757654,40295546 -g1,4836:27757654,40295546 -) -g1,4836:27757654,40295546 +k1,4040:3078556,49800853:-34777008 ) ] +g1,4040:6630773,4812305 +g1,4040:6630773,4812305 +g1,4040:8715473,4812305 +g1,4040:12574232,4812305 +k1,4040:31786112,4812305:19211880 ) ) -g1,4836:19880232,40295546 -g1,4836:19880232,40295546 -) -) -g1,4838:19880232,40295546 -g1,4838:19880232,40295546 -g1,4838:19880232,40295546 -g1,4838:19880232,40295546 -g1,4838:19880232,40295546 -g1,4838:19880232,40295546 -(1,4838:19880232,40295546:0,0,0 -(1,4838:19880232,40295546:0,0,0 -g1,4838:19880232,40295546 -g1,4838:19880232,40295546 -g1,4838:19880232,40295546 -g1,4838:19880232,40295546 -g1,4838:19880232,40295546 -(1,4838:19880232,40295546:0,0,0 -(1,4838:19880232,40295546:9356563,404226,110625 -(1,4838:19880232,40295546:9356563,404226,110625 -g1,4838:22307686,40295546 -g1,4838:23013378,40295546 -g1,4838:24976313,40295546 -g1,4838:25593400,40295546 -$1,4838:25593400,40295546 -g1,4838:26029506,40295546 -g1,4838:26629714,40295546 -$1,4838:26948481,40295546 -g1,4838:27107865,40295546 -g1,4838:27788391,40295546 -$1,4838:27788391,40295546 -g1,4838:28224497,40295546 -g1,4838:28824705,40295546 -$1,4838:29236795,40295546 -) -g1,4838:29236795,40295546 -) -) -g1,4838:19880232,40295546 -g1,4838:19880232,40295546 -) +] +[1,4040:6630773,45706769:25952256,40108032,0 +(1,4040:6630773,45706769:25952256,40108032,0 +(1,4040:6630773,45706769:0,0,0 +g1,4040:6630773,45706769 ) -g1,4838:19880232,40295546 -g1,4840:19880232,40295546 -(1,4840:19880232,40295546:0,0,0 -(1,4840:19880232,40295546:0,0,0 -g1,4840:19880232,40295546 -g1,4840:19880232,40295546 -g1,4840:19880232,40295546 -g1,4840:19880232,40295546 -g1,4840:19880232,40295546 -(1,4840:19880232,40295546:0,0,0 -(1,4840:19880232,40295546:8482575,395837,107478 -(1,4840:19880232,40295546:8482575,395837,107478 -g1,4840:21392279,40295546 -g1,4840:22097971,40295546 -g1,4840:24060906,40295546 -g1,4840:24677993,40295546 -$1,4840:24677993,40295546 -g1,4840:25052757,40295546 -g1,4840:25652965,40295546 -$1,4840:25971732,40295546 -g1,4840:26131116,40295546 -g1,4840:26811642,40295546 -$1,4840:26811642,40295546 -g1,4840:27186406,40295546 -g1,4840:27786614,40295546 -$1,4840:28362807,40295546 +[1,4040:6630773,45706769:25952256,40108032,0 +v1,3955:6630773,6254097:0,393216,0 +(1,3955:6630773,10871023:25952256,5010142,0 +g1,3955:6630773,10871023 +g1,3955:6237557,10871023 +r1,4040:6368629,10871023:131072,5010142,0 +g1,3955:6567858,10871023 +g1,3955:6764466,10871023 +[1,3955:6764466,10871023:25818563,5010142,0 +v1,3934:6764466,6254097:0,393216,0 +(1,3953:6764466,10674415:25818563,4813534,196608 +g1,3953:6764466,10674415 +g1,3953:6764466,10674415 +g1,3953:6567858,10674415 +(1,3953:6567858,10674415:0,4813534,196608 +r1,4040:32779637,10674415:26211779,5010142,196608 +k1,3953:6567857,10674415:-26211780 ) -g1,4840:28362807,40295546 +(1,3953:6567858,10674415:26211779,4813534,196608 +[1,3953:6764466,10674415:25818563,4616926,0 +(1,3936:6764466,6481928:25818563,424439,86428 +(1,3935:6764466,6481928:0,0,0 +g1,3935:6764466,6481928 +g1,3935:6764466,6481928 +g1,3935:6436786,6481928 +(1,3935:6436786,6481928:0,0,0 ) +g1,3935:6764466,6481928 ) -g1,4840:19880232,40295546 -g1,4840:19880232,40295546 +k1,3936:6764466,6481928:0 +g1,3936:11079868,6481928 +h1,3936:13403546,6481928:0,0,0 +k1,3936:32583030,6481928:19179484 +g1,3936:32583030,6481928 ) +(1,3940:6764466,7297855:25818563,424439,112852 +(1,3938:6764466,7297855:0,0,0 +g1,3938:6764466,7297855 +g1,3938:6764466,7297855 +g1,3938:6436786,7297855 +(1,3938:6436786,7297855:0,0,0 +) +g1,3938:6764466,7297855 ) -g1,4840:19880232,40295546 -g1,4841:19880232,40295546 -g1,4841:19880232,40295546 +g1,3940:7760328,7297855 +g1,3940:9088144,7297855 +h1,3940:12075729,7297855:0,0,0 +k1,3940:32583029,7297855:20507300 +g1,3940:32583029,7297855 +) +(1,3942:6764466,8113782:25818563,431045,106246 +(1,3941:6764466,8113782:0,0,0 +g1,3941:6764466,8113782 +g1,3941:6764466,8113782 +g1,3941:6436786,8113782 +(1,3941:6436786,8113782:0,0,0 +) +g1,3941:6764466,8113782 +) +k1,3942:6764466,8113782:0 +g1,3942:11743776,8113782 +h1,3942:14067454,8113782:0,0,0 +k1,3942:32583030,8113782:18515576 +g1,3942:32583030,8113782 +) +(1,3946:6764466,8929709:25818563,424439,112852 +(1,3944:6764466,8929709:0,0,0 +g1,3944:6764466,8929709 +g1,3944:6764466,8929709 +g1,3944:6436786,8929709 +(1,3944:6436786,8929709:0,0,0 +) +g1,3944:6764466,8929709 +) +g1,3946:7760328,8929709 +g1,3946:9088144,8929709 +h1,3946:12075729,8929709:0,0,0 +k1,3946:32583029,8929709:20507300 +g1,3946:32583029,8929709 +) +(1,3948:6764466,9745636:25818563,424439,86428 +(1,3947:6764466,9745636:0,0,0 +g1,3947:6764466,9745636 +g1,3947:6764466,9745636 +g1,3947:6436786,9745636 +(1,3947:6436786,9745636:0,0,0 +) +g1,3947:6764466,9745636 +) +k1,3948:6764466,9745636:0 +g1,3948:11411822,9745636 +h1,3948:13735500,9745636:0,0,0 +k1,3948:32583028,9745636:18847528 +g1,3948:32583028,9745636 +) +(1,3952:6764466,10561563:25818563,424439,112852 +(1,3950:6764466,10561563:0,0,0 +g1,3950:6764466,10561563 +g1,3950:6764466,10561563 +g1,3950:6436786,10561563 +(1,3950:6436786,10561563:0,0,0 +) +g1,3950:6764466,10561563 +) +g1,3952:7760328,10561563 +g1,3952:9088144,10561563 +h1,3952:12075729,10561563:0,0,0 +k1,3952:32583029,10561563:20507300 +g1,3952:32583029,10561563 +) +] +) +g1,3953:32583029,10674415 +g1,3953:6764466,10674415 +g1,3953:6764466,10674415 +g1,3953:32583029,10674415 +g1,3953:32583029,10674415 +) +h1,3953:6764466,10871023:0,0,0 +] +g1,3955:32583029,10871023 +) +h1,3955:6630773,10871023:0,0,0 +(1,3957:6630773,13702183:25952256,32768,229376 +(1,3957:6630773,13702183:0,32768,229376 +(1,3957:6630773,13702183:5505024,32768,229376 +r1,4040:12135797,13702183:5505024,262144,229376 +) +k1,3957:6630773,13702183:-5505024 +) +(1,3957:6630773,13702183:25952256,32768,0 +r1,4040:32583029,13702183:25952256,32768,0 +) +) +(1,3957:6630773,15334035:25952256,606339,151780 +(1,3957:6630773,15334035:1974731,582746,14155 +g1,3957:6630773,15334035 +g1,3957:8605504,15334035 +) +g1,3957:11298248,15334035 +k1,3957:32583029,15334035:16458448 +g1,3957:32583029,15334035 +) +(1,3960:6630773,16592331:25952256,513147,134348 +k1,3959:7662076,16592331:271085 +k1,3959:9319247,16592331:271085 +k1,3959:13067017,16592331:271085 +k1,3959:14206455,16592331:271086 +k1,3959:16215555,16592331:271085 +k1,3959:19869608,16592331:271085 +k1,3959:20496553,16592331:271085 +k1,3959:22447981,16592331:271085 +k1,3959:24286687,16592331:271085 +k1,3959:25714482,16592331:271085 +k1,3959:27540737,16592331:271086 +k1,3959:29079288,16592331:271085 +k1,3959:29706233,16592331:271085 +k1,3959:31657661,16592331:271085 +k1,3960:32583029,16592331:0 +) +(1,3960:6630773,17457411:25952256,513147,134348 +k1,3959:9336707,17457411:220809 +k1,3959:10173555,17457411:220810 +k1,3959:10750224,17457411:220809 +k1,3959:13733376,17457411:220809 +k1,3959:15683025,17457411:220809 +k1,3959:18191042,17457411:220810 +k1,3959:19430936,17457411:220809 +k1,3959:22380009,17457411:220809 +k1,3959:23705101,17457411:220810 +k1,3959:24673676,17457411:220809 +k1,3959:27700737,17457411:220809 +k1,3959:28534308,17457411:220809 +k1,3959:30250650,17457411:220810 +k1,3959:31087497,17457411:220809 +k1,3959:32583029,17457411:0 +) +(1,3960:6630773,18322491:25952256,513147,134348 +k1,3959:7835871,18322491:251549 +k1,3959:9191702,18322491:251549 +k1,3959:10390902,18322491:251549 +k1,3959:13303868,18322491:251549 +k1,3959:15948136,18322491:251549 +k1,3959:19174364,18322491:251549 +k1,3959:21622024,18322491:251549 +k1,3959:23141039,18322491:251549 +k1,3959:26012717,18322491:251549 +k1,3959:28448581,18322491:251549 +k1,3959:29772299,18322491:251549 +k1,3959:31227089,18322491:251549 +k1,3960:32583029,18322491:0 +) +(1,3960:6630773,19187571:25952256,513147,134348 +k1,3959:9142366,19187571:177856 +k1,3959:9851720,19187571:177857 +k1,3959:12659536,19187571:177856 +k1,3959:14212994,19187571:177857 +k1,3959:15338501,19187571:177856 +k1,3959:18491037,19187571:177857 +k1,3959:20865004,19187571:177856 +k1,3959:24521512,19187571:177857 +k1,3959:25460896,19187571:177856 +k1,3959:27596969,19187571:177857 +k1,3959:28921050,19187571:177856 +(1,3959:28921050,19187571:0,452978,115847 +r1,4040:30686163,19187571:1765113,568825,115847 +k1,3959:28921050,19187571:-1765113 +) +(1,3959:28921050,19187571:1765113,452978,115847 +k1,3959:28921050,19187571:3277 +h1,3959:30682886,19187571:0,411205,112570 +) +k1,3959:31037690,19187571:177857 +k1,3959:32583029,19187571:0 +) +(1,3960:6630773,20052651:25952256,513147,115847 +k1,3959:10847356,20052651:235926 +k1,3959:12576847,20052651:235925 +k1,3959:13498935,20052651:235926 +k1,3959:14753946,20052651:235926 +k1,3959:18466557,20052651:235926 +k1,3959:19369638,20052651:235925 +(1,3959:19369638,20052651:0,452978,115847 +r1,4040:22541598,20052651:3171960,568825,115847 +k1,3959:19369638,20052651:-3171960 +) +(1,3959:19369638,20052651:3171960,452978,115847 +k1,3959:19369638,20052651:3277 +h1,3959:22538321,20052651:0,411205,112570 +) +k1,3959:22777524,20052651:235926 +k1,3959:24693793,20052651:235926 +(1,3959:24693793,20052651:0,452978,115847 +r1,4040:26458906,20052651:1765113,568825,115847 +k1,3959:24693793,20052651:-1765113 +) +(1,3959:24693793,20052651:1765113,452978,115847 +k1,3959:24693793,20052651:3277 +h1,3959:26455629,20052651:0,411205,112570 +) +k1,3959:26694832,20052651:235926 +k1,3959:28198223,20052651:235925 +(1,3959:28198223,20052651:0,452978,115847 +r1,4040:30666760,20052651:2468537,568825,115847 +k1,3959:28198223,20052651:-2468537 +) +(1,3959:28198223,20052651:2468537,452978,115847 +k1,3959:28198223,20052651:3277 +h1,3959:30663483,20052651:0,411205,112570 +) +k1,3959:30902686,20052651:235926 +k1,3960:32583029,20052651:0 +) +(1,3960:6630773,20917731:25952256,505283,134348 +(1,3959:6630773,20917731:0,435480,115847 +r1,4040:7692462,20917731:1061689,551327,115847 +k1,3959:6630773,20917731:-1061689 +) +(1,3959:6630773,20917731:1061689,435480,115847 +k1,3959:6630773,20917731:3277 +h1,3959:7689185,20917731:0,411205,112570 +) +k1,3959:7835384,20917731:142922 +k1,3959:8969867,20917731:142923 +k1,3959:11779449,20917731:142922 +k1,3959:13486061,20917731:142923 +k1,3959:17435969,20917731:142922 +k1,3959:20499176,20917731:142923 +k1,3959:22711725,20917731:142922 +k1,3959:24865293,20917731:142923 +k1,3959:25999775,20917731:142922 +k1,3959:27355769,20917731:142923 +k1,3959:30323948,20917731:142922 +k1,3959:31227089,20917731:142923 +k1,3960:32583029,20917731:0 +) +(1,3960:6630773,21782811:25952256,513147,134348 +k1,3959:9422355,21782811:231090 +k1,3959:12679242,21782811:231090 +k1,3959:14423558,21782811:231090 +k1,3959:15306076,21782811:231090 +k1,3959:17929885,21782811:231090 +k1,3959:20450803,21782811:231090 +k1,3959:22249515,21782811:231091 +k1,3959:23637315,21782811:231090 +k1,3959:25650984,21782811:231090 +k1,3959:26564959,21782811:231090 +k1,3959:28351218,21782811:231090 +k1,3959:29233736,21782811:231090 +k1,3959:29820686,21782811:231090 +k1,3959:32583029,21782811:0 +) +(1,3960:6630773,22647891:25952256,609711,134348 +g1,3959:7986712,22647891 +g1,3959:9661156,22647891 +g1,3959:11928701,22647891 +g1,3959:14606502,22647891 +g1,3959:16199682,22647891 +(1,3959:16199682,22647891:0,414482,115847 +r1,4040:17261371,22647891:1061689,530329,115847 +k1,3959:16199682,22647891:-1061689 +) +(1,3959:16199682,22647891:1061689,414482,115847 +k1,3959:16199682,22647891:3277 +h1,3959:17258094,22647891:0,411205,112570 +) +(1,3959:17261371,22647891:311689,609711,0 +$1,3959:17261371,22647891 +(1,3959:17261371,22372610:311689,334430,0 +) +$1,3959:17573060,22647891 +) +g1,3959:17945959,22647891 +g1,3959:17945959,22647891 +g1,3959:18145188,22647891 +g1,3959:18145188,22647891 +k1,3960:32583029,22647891:14437841 +g1,3960:32583029,22647891 +) +v1,3962:6630773,23332746:0,393216,0 +(1,4011:6630773,35879304:25952256,12939774,196608 +g1,4011:6630773,35879304 +g1,4011:6630773,35879304 +g1,4011:6434165,35879304 +(1,4011:6434165,35879304:0,12939774,196608 +r1,4040:32779637,35879304:26345472,13136382,196608 +k1,4011:6434165,35879304:-26345472 +) +(1,4011:6434165,35879304:26345472,12939774,196608 +[1,4011:6630773,35879304:25952256,12743166,0 +(1,3964:6630773,23560577:25952256,424439,79822 +(1,3963:6630773,23560577:0,0,0 +g1,3963:6630773,23560577 +g1,3963:6630773,23560577 +g1,3963:6303093,23560577 +(1,3963:6303093,23560577:0,0,0 +) +g1,3963:6630773,23560577 +) +k1,3964:6630773,23560577:0 +h1,3964:12273990,23560577:0,0,0 +k1,3964:32583030,23560577:20309040 +g1,3964:32583030,23560577 +) +(1,3968:6630773,24376504:25952256,424439,79822 +(1,3966:6630773,24376504:0,0,0 +g1,3966:6630773,24376504 +g1,3966:6630773,24376504 +g1,3966:6303093,24376504 +(1,3966:6303093,24376504:0,0,0 +) +g1,3966:6630773,24376504 +) +g1,3968:7626635,24376504 +g1,3968:8954451,24376504 +h1,3968:10614221,24376504:0,0,0 +k1,3968:32583029,24376504:21968808 +g1,3968:32583029,24376504 +) +(1,3970:6630773,25192431:25952256,424439,79822 +(1,3969:6630773,25192431:0,0,0 +g1,3969:6630773,25192431 +g1,3969:6630773,25192431 +g1,3969:6303093,25192431 +(1,3969:6303093,25192431:0,0,0 +) +g1,3969:6630773,25192431 +) +k1,3970:6630773,25192431:0 +h1,3970:12605944,25192431:0,0,0 +k1,3970:32583028,25192431:19977084 +g1,3970:32583028,25192431 +) +(1,3974:6630773,26008358:25952256,424439,79822 +(1,3972:6630773,26008358:0,0,0 +g1,3972:6630773,26008358 +g1,3972:6630773,26008358 +g1,3972:6303093,26008358 +(1,3972:6303093,26008358:0,0,0 +) +g1,3972:6630773,26008358 +) +g1,3974:7626635,26008358 +g1,3974:8954451,26008358 +h1,3974:10946175,26008358:0,0,0 +k1,3974:32583029,26008358:21636854 +g1,3974:32583029,26008358 +) +(1,3976:6630773,26824285:25952256,424439,79822 +(1,3975:6630773,26824285:0,0,0 +g1,3975:6630773,26824285 +g1,3975:6630773,26824285 +g1,3975:6303093,26824285 +(1,3975:6303093,26824285:0,0,0 +) +g1,3975:6630773,26824285 +) +k1,3976:6630773,26824285:0 +h1,3976:13269852,26824285:0,0,0 +k1,3976:32583028,26824285:19313176 +g1,3976:32583028,26824285 +) +(1,3980:6630773,27640212:25952256,424439,79822 +(1,3978:6630773,27640212:0,0,0 +g1,3978:6630773,27640212 +g1,3978:6630773,27640212 +g1,3978:6303093,27640212 +(1,3978:6303093,27640212:0,0,0 +) +g1,3978:6630773,27640212 +) +g1,3980:7626635,27640212 +g1,3980:8954451,27640212 +h1,3980:11278129,27640212:0,0,0 +k1,3980:32583029,27640212:21304900 +g1,3980:32583029,27640212 +) +(1,3982:6630773,28456139:25952256,424439,79822 +(1,3981:6630773,28456139:0,0,0 +g1,3981:6630773,28456139 +g1,3981:6630773,28456139 +g1,3981:6303093,28456139 +(1,3981:6303093,28456139:0,0,0 +) +g1,3981:6630773,28456139 +) +k1,3982:6630773,28456139:0 +h1,3982:12273990,28456139:0,0,0 +k1,3982:32583030,28456139:20309040 +g1,3982:32583030,28456139 +) +(1,3986:6630773,29272066:25952256,424439,79822 +(1,3984:6630773,29272066:0,0,0 +g1,3984:6630773,29272066 +g1,3984:6630773,29272066 +g1,3984:6303093,29272066 +(1,3984:6303093,29272066:0,0,0 +) +g1,3984:6630773,29272066 +) +g1,3986:7626635,29272066 +g1,3986:8954451,29272066 +h1,3986:9950313,29272066:0,0,0 +k1,3986:32583029,29272066:22632716 +g1,3986:32583029,29272066 +) +(1,3988:6630773,30087993:25952256,424439,112852 +(1,3987:6630773,30087993:0,0,0 +g1,3987:6630773,30087993 +g1,3987:6630773,30087993 +g1,3987:6303093,30087993 +(1,3987:6303093,30087993:0,0,0 +) +g1,3987:6630773,30087993 +) +k1,3988:6630773,30087993:0 +h1,3988:12605944,30087993:0,0,0 +k1,3988:32583028,30087993:19977084 +g1,3988:32583028,30087993 +) +(1,3992:6630773,30903920:25952256,424439,79822 +(1,3990:6630773,30903920:0,0,0 +g1,3990:6630773,30903920 +g1,3990:6630773,30903920 +g1,3990:6303093,30903920 +(1,3990:6303093,30903920:0,0,0 +) +g1,3990:6630773,30903920 +) +g1,3992:7626635,30903920 +g1,3992:8954451,30903920 +h1,3992:10282267,30903920:0,0,0 +k1,3992:32583029,30903920:22300762 +g1,3992:32583029,30903920 +) +(1,3994:6630773,31719847:25952256,424439,112852 +(1,3993:6630773,31719847:0,0,0 +g1,3993:6630773,31719847 +g1,3993:6630773,31719847 +g1,3993:6303093,31719847 +(1,3993:6303093,31719847:0,0,0 +) +g1,3993:6630773,31719847 +) +k1,3994:6630773,31719847:0 +h1,3994:11610082,31719847:0,0,0 +k1,3994:32583030,31719847:20972948 +g1,3994:32583030,31719847 +) +(1,3998:6630773,32535774:25952256,424439,79822 +(1,3996:6630773,32535774:0,0,0 +g1,3996:6630773,32535774 +g1,3996:6630773,32535774 +g1,3996:6303093,32535774 +(1,3996:6303093,32535774:0,0,0 +) +g1,3996:6630773,32535774 +) +g1,3998:7626635,32535774 +g1,3998:8954451,32535774 +h1,3998:10282267,32535774:0,0,0 +k1,3998:32583029,32535774:22300762 +g1,3998:32583029,32535774 +) +(1,4000:6630773,33351701:25952256,424439,112852 +(1,3999:6630773,33351701:0,0,0 +g1,3999:6630773,33351701 +g1,3999:6630773,33351701 +g1,3999:6303093,33351701 +(1,3999:6303093,33351701:0,0,0 +) +g1,3999:6630773,33351701 +) +k1,4000:6630773,33351701:0 +h1,4000:10946174,33351701:0,0,0 +k1,4000:32583030,33351701:21636856 +g1,4000:32583030,33351701 +) +(1,4004:6630773,34167628:25952256,424439,79822 +(1,4002:6630773,34167628:0,0,0 +g1,4002:6630773,34167628 +g1,4002:6630773,34167628 +g1,4002:6303093,34167628 +(1,4002:6303093,34167628:0,0,0 +) +g1,4002:6630773,34167628 +) +g1,4004:7626635,34167628 +g1,4004:8954451,34167628 +h1,4004:10614221,34167628:0,0,0 +k1,4004:32583029,34167628:21968808 +g1,4004:32583029,34167628 +) +(1,4006:6630773,34983555:25952256,424439,112852 +(1,4005:6630773,34983555:0,0,0 +g1,4005:6630773,34983555 +g1,4005:6630773,34983555 +g1,4005:6303093,34983555 +(1,4005:6303093,34983555:0,0,0 +) +g1,4005:6630773,34983555 +) +k1,4006:6630773,34983555:0 +k1,4006:6630773,34983555:0 +h1,4006:11278128,34983555:0,0,0 +k1,4006:32583028,34983555:21304900 +g1,4006:32583028,34983555 +) +(1,4010:6630773,35799482:25952256,424439,79822 +(1,4008:6630773,35799482:0,0,0 +g1,4008:6630773,35799482 +g1,4008:6630773,35799482 +g1,4008:6303093,35799482 +(1,4008:6303093,35799482:0,0,0 +) +g1,4008:6630773,35799482 +) +g1,4010:7626635,35799482 +g1,4010:8954451,35799482 +h1,4010:10282267,35799482:0,0,0 +k1,4010:32583029,35799482:22300762 +g1,4010:32583029,35799482 +) +] +) +g1,4011:32583029,35879304 +g1,4011:6630773,35879304 +g1,4011:6630773,35879304 +g1,4011:32583029,35879304 +g1,4011:32583029,35879304 +) +h1,4011:6630773,36075912:0,0,0 +(1,4015:6630773,36940992:25952256,505283,134348 +h1,4014:6630773,36940992:983040,0,0 +k1,4014:9707033,36940992:376177 +k1,4014:13890195,36940992:376176 +k1,4014:15949337,36940992:376177 +k1,4014:17988162,36940992:376177 +k1,4014:22681195,36940992:376176 +k1,4014:23673410,36940992:376177 +k1,4014:27819872,36940992:376176 +k1,4014:31116333,36940992:376177 +k1,4015:32583029,36940992:0 +) +(1,4015:6630773,37806072:25952256,505283,122846 +(1,4014:6630773,37806072:0,452978,115847 +r1,4040:9099310,37806072:2468537,568825,115847 +k1,4014:6630773,37806072:-2468537 +) +(1,4014:6630773,37806072:2468537,452978,115847 +k1,4014:6630773,37806072:3277 +h1,4014:9096033,37806072:0,411205,112570 +) +g1,4014:9298539,37806072 +g1,4014:10689213,37806072 +(1,4014:10689213,37806072:0,452978,122846 +r1,4040:13157750,37806072:2468537,575824,122846 +k1,4014:10689213,37806072:-2468537 +) +(1,4014:10689213,37806072:2468537,452978,122846 +k1,4014:10689213,37806072:3277 +h1,4014:13154473,37806072:0,411205,112570 +) +g1,4014:13356979,37806072 +k1,4015:32583030,37806072:17041736 +g1,4015:32583030,37806072 +) +v1,4017:6630773,38490927:0,393216,0 +(1,4036:6630773,42861699:25952256,4763988,196608 +g1,4036:6630773,42861699 +g1,4036:6630773,42861699 +g1,4036:6434165,42861699 +(1,4036:6434165,42861699:0,4763988,196608 +r1,4040:32779637,42861699:26345472,4960596,196608 +k1,4036:6434165,42861699:-26345472 +) +(1,4036:6434165,42861699:26345472,4763988,196608 +[1,4036:6630773,42861699:25952256,4567380,0 +(1,4019:6630773,38702242:25952256,407923,9908 +(1,4018:6630773,38702242:0,0,0 +g1,4018:6630773,38702242 +g1,4018:6630773,38702242 +g1,4018:6303093,38702242 +(1,4018:6303093,38702242:0,0,0 +) +g1,4018:6630773,38702242 +) +g1,4019:8290543,38702242 +g1,4019:8954451,38702242 +h1,4019:9618359,38702242:0,0,0 +k1,4019:32583029,38702242:22964670 +g1,4019:32583029,38702242 +) +(1,4023:6630773,39518169:25952256,424439,79822 +(1,4021:6630773,39518169:0,0,0 +g1,4021:6630773,39518169 +g1,4021:6630773,39518169 +g1,4021:6303093,39518169 +(1,4021:6303093,39518169:0,0,0 +) +g1,4021:6630773,39518169 +) +g1,4023:7626635,39518169 +g1,4023:8954451,39518169 +h1,4023:9618359,39518169:0,0,0 +k1,4023:32583029,39518169:22964670 +g1,4023:32583029,39518169 +) +(1,4025:6630773,40334096:25952256,424439,79822 +(1,4024:6630773,40334096:0,0,0 +g1,4024:6630773,40334096 +g1,4024:6630773,40334096 +g1,4024:6303093,40334096 +(1,4024:6303093,40334096:0,0,0 +) +g1,4024:6630773,40334096 +) +g1,4025:7294681,40334096 +g1,4025:8290543,40334096 +h1,4025:8622497,40334096:0,0,0 +k1,4025:32583029,40334096:23960532 +g1,4025:32583029,40334096 +) +(1,4029:6630773,41150023:25952256,424439,79822 +(1,4027:6630773,41150023:0,0,0 +g1,4027:6630773,41150023 +g1,4027:6630773,41150023 +g1,4027:6303093,41150023 +(1,4027:6303093,41150023:0,0,0 +) +g1,4027:6630773,41150023 +) +g1,4029:7626635,41150023 +g1,4029:8954451,41150023 +h1,4029:10282267,41150023:0,0,0 +k1,4029:32583029,41150023:22300762 +g1,4029:32583029,41150023 +) +(1,4031:6630773,41965950:25952256,424439,79822 +(1,4030:6630773,41965950:0,0,0 +g1,4030:6630773,41965950 +g1,4030:6630773,41965950 +g1,4030:6303093,41965950 +(1,4030:6303093,41965950:0,0,0 +) +g1,4030:6630773,41965950 +) +g1,4031:8622497,41965950 +g1,4031:9286405,41965950 +k1,4031:9286405,41965950:0 +h1,4031:10614221,41965950:0,0,0 +k1,4031:32583029,41965950:21968808 +g1,4031:32583029,41965950 +) +(1,4035:6630773,42781877:25952256,424439,79822 +(1,4033:6630773,42781877:0,0,0 +g1,4033:6630773,42781877 +g1,4033:6630773,42781877 +g1,4033:6303093,42781877 +(1,4033:6303093,42781877:0,0,0 +) +g1,4033:6630773,42781877 +) +g1,4035:7626635,42781877 +g1,4035:8954451,42781877 +g1,4035:9286405,42781877 +g1,4035:10946175,42781877 +g1,4035:11278129,42781877 +g1,4035:12937899,42781877 +g1,4035:14929623,42781877 +g1,4035:15261577,42781877 +g1,4035:16921347,42781877 +g1,4035:17253301,42781877 +h1,4035:18581117,42781877:0,0,0 +k1,4035:32583029,42781877:14001912 +g1,4035:32583029,42781877 +) +] +) +g1,4036:32583029,42861699 +g1,4036:6630773,42861699 +g1,4036:6630773,42861699 +g1,4036:32583029,42861699 +g1,4036:32583029,42861699 +) +h1,4036:6630773,43058307:0,0,0 +(1,3959:6630773,44351617:25952256,506878,205458 +(1,3959:6630773,44351617:943720,506878,0 +k1,3959:7302650,44351617:671877 +(1,3959:7302650,44351617:271843,506878,0 +$1,3959:7302650,44351617 +(1,3959:7302650,44131393:271843,286654,0 +) +$1,3959:7574493,44351617 +) +) +(1,3959:7574493,44351617:0,435814,0 +r1,4040:7574493,44351617:0,435814,0 +) +g1,3959:9409502,44351617 +g1,3959:10327006,44351617 +g1,3959:11840102,44351617 +g1,3959:14327849,44351617 +g1,3959:14980064,44351617 +g1,3959:15954716,44351617 +g1,3959:18680489,44351617 +g1,3959:19867478,44351617 +g1,3959:20900850,44351617 +g1,3959:22714887,44351617 +g1,3959:24857128,44351617 +g1,3959:26131673,44351617 +(1,3959:26131673,44351617:0,332241,93333 +r1,4040:26982335,44351617:850662,425574,93333 +k1,3959:26131673,44351617:-850662 ) -g1,4841:19880232,40295546 +(1,3959:26131673,44351617:850662,332241,93333 +k1,3959:26131673,44351617:3277 +h1,3959:26979058,44351617:0,328964,90056 +) +g1,3959:27141719,44351617 +g1,3959:29162850,44351617 +g1,3959:29855959,44351617 +(1,3959:29855959,44351617:0,332241,93333 +r1,4040:30706621,44351617:850662,425574,93333 +k1,3959:29855959,44351617:-850662 ) +(1,3959:29855959,44351617:850662,332241,93333 +k1,3959:29855959,44351617:3277 +h1,3959:30703344,44351617:0,328964,90056 ) -g1,4843:24733257,45706769 -k1,4843:32583029,45706769:7849772 +r1,4040:30845557,44351617:0,205458,205458 +k1,3959:32583029,44351617:1737472 +g1,3959:32583029,44351617 ) ] -(1,4846:32583029,45706769:0,0,0 -g1,4846:32583029,45706769 +(1,4040:32583029,45706769:0,0,0 +g1,4040:32583029,45706769 ) ) ] -(1,4846:6630773,47279633:25952256,0,0 -h1,4846:6630773,47279633:25952256,0,0 +(1,4040:6630773,47279633:25952256,0,0 +h1,4040:6630773,47279633:25952256,0,0 ) ] -(1,4846:4262630,4025873:0,0,0 -[1,4846:-473656,4025873:0,0,0 -(1,4846:-473656,-710413:0,0,0 -(1,4846:-473656,-710413:0,0,0 -g1,4846:-473656,-710413 +(1,4040:4262630,4025873:0,0,0 +[1,4040:-473656,4025873:0,0,0 +(1,4040:-473656,-710413:0,0,0 +(1,4040:-473656,-710413:0,0,0 +g1,4040:-473656,-710413 ) -g1,4846:-473656,-710413 +g1,4040:-473656,-710413 ) -] +] ) ] -!42446 -}87 -Input:754:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:755:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:756:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:757:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:758:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:759:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:760:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:761:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:762:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:763:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:764:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1034 -{88 -[1,4929:4262630,47279633:28320399,43253760,0 -(1,4929:4262630,4025873:0,0,0 -[1,4929:-473656,4025873:0,0,0 -(1,4929:-473656,-710413:0,0,0 -(1,4929:-473656,-644877:0,0,0 -k1,4929:-473656,-644877:-65536 +!23747 +}74 +Input:682:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:683:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:684:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:685:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:686:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:687:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:688:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:689:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:690:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:691:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:692:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:693:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:694:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:695:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:696:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:697:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:698:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:699:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:700:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:701:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:702:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:703:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:704:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!2150 +{75 +[1,4117:4262630,47279633:28320399,43253760,0 +(1,4117:4262630,4025873:0,0,0 +[1,4117:-473656,4025873:0,0,0 +(1,4117:-473656,-710413:0,0,0 +(1,4117:-473656,-644877:0,0,0 +k1,4117:-473656,-644877:-65536 ) -(1,4929:-473656,4736287:0,0,0 -k1,4929:-473656,4736287:5209943 +(1,4117:-473656,4736287:0,0,0 +k1,4117:-473656,4736287:5209943 ) -g1,4929:-473656,-710413 +g1,4117:-473656,-710413 ) ] ) -[1,4929:6630773,47279633:25952256,43253760,0 -[1,4929:6630773,4812305:25952256,786432,0 -(1,4929:6630773,4812305:25952256,505283,126483 -(1,4929:6630773,4812305:25952256,505283,126483 -g1,4929:3078558,4812305 -[1,4929:3078558,4812305:0,0,0 -(1,4929:3078558,2439708:0,1703936,0 -k1,4929:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,4929:2537886,2439708:1179648,16384,0 +[1,4117:6630773,47279633:25952256,43253760,0 +[1,4117:6630773,4812305:25952256,786432,0 +(1,4117:6630773,4812305:25952256,505283,11795 +(1,4117:6630773,4812305:25952256,505283,11795 +g1,4117:3078558,4812305 +[1,4117:3078558,4812305:0,0,0 +(1,4117:3078558,2439708:0,1703936,0 +k1,4117:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,4117:2537886,2439708:1179648,16384,0 ) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,4929:3078558,1915420:16384,1179648,0 +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,4117:3078558,1915420:16384,1179648,0 ) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) ] ) ) ) ] -[1,4929:3078558,4812305:0,0,0 -(1,4929:3078558,2439708:0,1703936,0 -g1,4929:29030814,2439708 -g1,4929:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,4929:36151628,1915420:16384,1179648,0 +[1,4117:3078558,4812305:0,0,0 +(1,4117:3078558,2439708:0,1703936,0 +g1,4117:29030814,2439708 +g1,4117:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,4117:36151628,1915420:16384,1179648,0 ) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) ] ) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,4929:37855564,2439708:1179648,16384,0 +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,4117:37855564,2439708:1179648,16384,0 ) ) -k1,4929:3078556,2439708:-34777008 +k1,4117:3078556,2439708:-34777008 ) ] -[1,4929:3078558,4812305:0,0,0 -(1,4929:3078558,49800853:0,16384,2228224 -k1,4929:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,4929:2537886,49800853:1179648,16384,0 +[1,4117:3078558,4812305:0,0,0 +(1,4117:3078558,49800853:0,16384,2228224 +k1,4117:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,4117:2537886,49800853:1179648,16384,0 ) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,4929:3078558,51504789:16384,1179648,0 +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,4117:3078558,51504789:16384,1179648,0 ) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) ] ) ) ) ] -[1,4929:3078558,4812305:0,0,0 -(1,4929:3078558,49800853:0,16384,2228224 -g1,4929:29030814,49800853 -g1,4929:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,4929:36151628,51504789:16384,1179648,0 -) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 -) -] -) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,4929:37855564,49800853:1179648,16384,0 -) -) -k1,4929:3078556,49800853:-34777008 -) -] -g1,4929:6630773,4812305 -g1,4929:6630773,4812305 -g1,4929:9472414,4812305 -g1,4929:10882093,4812305 -g1,4929:16529985,4812305 -g1,4929:18796220,4812305 -k1,4929:31786111,4812305:12989891 -) -) -] -[1,4929:6630773,45706769:25952256,40108032,0 -(1,4929:6630773,45706769:25952256,40108032,0 -(1,4929:6630773,45706769:0,0,0 -g1,4929:6630773,45706769 -) -[1,4929:6630773,45706769:25952256,40108032,0 -v1,4846:6630773,6254097:0,393216,0 -(1,4847:6630773,9207008:25952256,3346127,0 -g1,4847:6630773,9207008 -g1,4847:6303093,9207008 -r1,4929:6401397,9207008:98304,3346127,0 -g1,4847:6600626,9207008 -g1,4847:6797234,9207008 -[1,4847:6797234,9207008:25785795,3346127,0 -(1,4847:6797234,6674681:25785795,813800,267386 -(1,4846:6797234,6674681:0,813800,267386 -r1,4929:8134168,6674681:1336934,1081186,267386 -k1,4846:6797234,6674681:-1336934 -) -(1,4846:6797234,6674681:1336934,813800,267386 -) -k1,4846:8373795,6674681:239627 -k1,4846:8701475,6674681:327680 -k1,4846:9568937,6674681:239627 -k1,4846:10223366,6674681:239586 -k1,4846:15462735,6674681:239627 -k1,4846:16721447,6674681:239627 -k1,4846:20153988,6674681:239627 -k1,4846:24068874,6674681:239627 -k1,4846:24967793,6674681:239627 -k1,4846:27940927,6674681:239627 -k1,4846:29371999,6674681:239627 -k1,4846:31591469,6674681:239627 -k1,4846:32583029,6674681:0 -) -(1,4847:6797234,7516169:25785795,513147,134348 -k1,4846:10329898,7516169:227683 -k1,4846:12425357,7516169:227683 -k1,4846:15437664,7516169:227683 -k1,4846:18919210,7516169:227683 -k1,4846:19762931,7516169:227683 -k1,4846:21009698,7516169:227682 -k1,4846:22890854,7516169:227683 -k1,4846:24857863,7516169:227683 -k1,4846:25771708,7516169:227683 -k1,4846:27018476,7516169:227683 -k1,4846:29495355,7516169:227683 -k1,4846:30714598,7516169:227683 -k1,4846:32583029,7516169:0 -) -(1,4847:6797234,8357657:25785795,513147,134348 -k1,4846:8848932,8357657:283537 -k1,4846:9748507,8357657:283537 -k1,4846:10387903,8357657:283536 -k1,4846:12758762,8357657:283537 -k1,4846:14061384,8357657:283537 -k1,4846:15651054,8357657:283537 -k1,4846:18189030,8357657:283537 -k1,4846:22436183,8357657:283536 -k1,4846:23371148,8357657:283537 -k1,4846:25188883,8357657:283537 -k1,4846:26663865,8357657:283537 -k1,4846:27966486,8357657:283536 -k1,4846:30491354,8357657:283537 -k1,4846:31931601,8357657:283537 -k1,4846:32583029,8357657:0 -) -(1,4847:6797234,9199145:25785795,505283,7863 -k1,4847:32583029,9199145:22898934 -g1,4847:32583029,9199145 -) -] -g1,4847:32583029,9207008 -) -h1,4847:6630773,9207008:0,0,0 -(1,4850:6630773,10445091:25952256,505283,134348 -h1,4849:6630773,10445091:983040,0,0 -g1,4849:8440877,10445091 -g1,4849:12963516,10445091 -g1,4849:15852343,10445091 -g1,4849:17070657,10445091 -g1,4849:18923359,10445091 -g1,4849:21429455,10445091 -g1,4849:23716006,10445091 -g1,4849:24446732,10445091 -g1,4849:28455569,10445091 -k1,4850:32583029,10445091:3441298 -g1,4850:32583029,10445091 -) -(1,4851:6630773,11286579:25952256,0,0 -h1,4851:6630773,11286579:983040,0,0 -k1,4851:32583029,11286579:24969216 -g1,4851:32583029,11286579 -) -(1,4861:12708387,14081726:13797028,2729611,2319311 -(1,4861:13226121,14180040:1295253,298648,5505 -) -g1,4861:14703434,14081726 -g1,4861:15453691,14081726 -(1,4861:15453691,14081726:11051724,2729611,2319311 -[1,4861:15453691,16237197:459407,4721242,0 -] -g1,4853:15585418,14081726 -[1,4860:15585418,14081726:10788270,2729611,2319311 -(1,4854:15585418,11941154:10788270,589039,252448 -g1,4854:15585418,11941154 -(1,4854:15585418,11941154:2066480,589039,252448 -r1,4929:15585418,11941154:0,841487,252448 -g1,4854:15913098,11941154 -k1,4854:16025722,11941154:112624 -$1,4854:16025722,11941154 -(1,4854:16488406,12039468:723189,334430,72024 -) -$1,4854:17211595,11941154 -k1,4854:17324218,11941154:112623 -g1,4854:17651898,11941154 -) -g1,4854:17651898,11941154 -(1,4854:17651898,11941154:2066480,589039,252448 -g1,4854:17979578,11941154 -k1,4854:18092202,11941154:112624 -$1,4854:18092202,11941154 -(1,4854:18554886,12039468:723189,339935,72024 -) -$1,4854:19278075,11941154 -k1,4854:19390698,11941154:112623 -g1,4854:19718378,11941154 -) -g1,4854:19718378,11941154 -(1,4854:19718378,11941154:1232732,589039,252448 -g1,4854:20046058,11941154 -g1,4854:20046058,11941154 -$1,4854:20046058,11941154 -$1,4854:20623430,11941154 -g1,4854:20623430,11941154 -g1,4854:20951110,11941154 -) -g1,4854:20951110,11941154 -(1,4854:20951110,11941154:2041708,589039,252448 -g1,4854:21278790,11941154 -k1,4854:21391414,11941154:112624 -$1,4854:21391414,11941154 -(1,4854:21854098,12039468:698417,346358,96797 -) -$1,4854:22552515,11941154 -k1,4854:22665138,11941154:112623 -g1,4854:22992818,11941154 -) -g1,4854:22992818,11941154 -(1,4854:22992818,11941154:1232732,589039,252448 -g1,4854:23320498,11941154 -g1,4854:23320498,11941154 -$1,4854:23320498,11941154 -$1,4854:23897870,11941154 -g1,4854:23897870,11941154 -g1,4854:24225550,11941154 -) -g1,4854:24225550,11941154 -(1,4854:24225550,11941154:2148138,589039,252448 -g1,4854:24553230,11941154 -k1,4854:24665854,11941154:112624 -$1,4854:24665854,11941154 -(1,4854:25128538,12039468:804847,334430,72024 -) -$1,4854:25933385,11941154 -$1,4854:25933385,11941154 -h1,4854:25933385,11941154:0,0,0 -$1,4854:25933385,11941154 -k1,4854:26046008,11941154:112623 -g1,4854:26373688,11941154 -) -g1,4854:26373688,11941154 -) -(1,4855:15585418,12782641:10788270,589039,252448 -g1,4855:15585418,12782641 -(1,4855:15585418,12782641:2066480,589039,252448 -r1,4929:15585418,12782641:0,841487,252448 -g1,4855:15913098,12782641 -k1,4855:16025722,12782641:112624 -$1,4855:16025722,12782641 -(1,4855:16488406,12880955:723189,339935,72024 -) -$1,4855:17211595,12782641 -k1,4855:17324218,12782641:112623 -g1,4855:17651898,12782641 -) -g1,4855:17651898,12782641 -(1,4855:17651898,12782641:2066480,589039,252448 -g1,4855:17979578,12782641 -k1,4855:18092202,12782641:112624 -$1,4855:18092202,12782641 -(1,4855:18554886,12880955:723189,339935,72024 -) -$1,4855:19278075,12782641 -k1,4855:19390698,12782641:112623 -g1,4855:19718378,12782641 -) -g1,4855:19718378,12782641 -(1,4855:19718378,12782641:1232732,589039,252448 -g1,4855:20046058,12782641 -g1,4855:20046058,12782641 -$1,4855:20046058,12782641 -$1,4855:20623430,12782641 -g1,4855:20623430,12782641 -g1,4855:20951110,12782641 -) -g1,4855:20951110,12782641 -(1,4855:20951110,12782641:2041708,589039,252448 -g1,4855:21278790,12782641 -k1,4855:21391414,12782641:112624 -$1,4855:21391414,12782641 -(1,4855:21854098,12880955:698417,346358,96797 -) -$1,4855:22552515,12782641 -k1,4855:22665138,12782641:112623 -g1,4855:22992818,12782641 -) -g1,4855:22992818,12782641 -(1,4855:22992818,12782641:1232732,589039,252448 -g1,4855:23320498,12782641 -g1,4855:23320498,12782641 -$1,4855:23320498,12782641 -$1,4855:23897870,12782641 -g1,4855:23897870,12782641 -g1,4855:24225550,12782641 -) -g1,4855:24225550,12782641 -(1,4855:24225550,12782641:2148138,589039,252448 -g1,4855:24553230,12782641 -k1,4855:24665854,12782641:112624 -$1,4855:24665854,12782641 -(1,4855:25128538,12880955:804847,339935,72024 -) -$1,4855:25933385,12782641 -$1,4855:25933385,12782641 -h1,4855:25933385,12782641:0,0,0 -$1,4855:25933385,12782641 -k1,4855:26046008,12782641:112623 -g1,4855:26373688,12782641 -) -g1,4855:26373688,12782641 -) -(1,4856:15585418,13624128:10788270,589039,252448 -g1,4856:15585418,13624128 -(1,4856:15585418,13624128:2066480,589039,252448 -r1,4929:15585418,13624128:0,841487,252448 -g1,4856:15913098,13624128 -k1,4856:16329972,13624128:416874 -$1,4856:16329972,13624128 -$1,4856:16907344,13624128 -k1,4856:17324218,13624128:416874 -g1,4856:17651898,13624128 -) -g1,4856:17651898,13624128 -(1,4856:17651898,13624128:2066480,589039,252448 -g1,4856:17979578,13624128 -k1,4856:18396452,13624128:416874 -$1,4856:18396452,13624128 -$1,4856:18973824,13624128 -k1,4856:19390698,13624128:416874 -g1,4856:19718378,13624128 -) -g1,4856:19718378,13624128 -(1,4856:19718378,13624128:1232732,589039,252448 -g1,4856:20046058,13624128 -k1,4856:20050646,13624128:4588 -$1,4856:20050646,13624128 -$1,4856:20618843,13624128 -k1,4856:20623430,13624128:4587 -g1,4856:20951110,13624128 -) -g1,4856:20951110,13624128 -(1,4856:20951110,13624128:2041708,589039,252448 -g1,4856:21278790,13624128 -k1,4856:21683278,13624128:404488 -$1,4856:21683278,13624128 -$1,4856:22260650,13624128 -k1,4856:22665138,13624128:404488 -g1,4856:22992818,13624128 -) -g1,4856:22992818,13624128 -(1,4856:22992818,13624128:1232732,589039,252448 -g1,4856:23320498,13624128 -k1,4856:23609184,13624128:288686 -$1,4856:23609184,13624128 -$1,4856:23609184,13624128 -k1,4856:23897870,13624128:288686 -g1,4856:24225550,13624128 -) -g1,4856:24225550,13624128 -(1,4856:24225550,13624128:2148138,589039,252448 -g1,4856:24553230,13624128 -k1,4856:25010933,13624128:457703 -$1,4856:25010933,13624128 -$1,4856:25588305,13624128 -$1,4856:25588305,13624128 -h1,4856:25588305,13624128:0,0,0 -$1,4856:25588305,13624128 -k1,4856:26046008,13624128:457703 -g1,4856:26373688,13624128 -) -g1,4856:26373688,13624128 -) -(1,4857:15585418,14465615:10788270,589039,252448 -g1,4857:15585418,14465615 -(1,4857:15585418,14465615:2066480,589039,252448 -r1,4929:15585418,14465615:0,841487,252448 -g1,4857:15913098,14465615 -k1,4857:16064945,14465615:151847 -$1,4857:16064945,14465615 -(1,4857:16527629,14563929:644743,346358,72024 -) -$1,4857:17172372,14465615 -k1,4857:17324218,14465615:151846 -g1,4857:17651898,14465615 -) -g1,4857:17651898,14465615 -(1,4857:17651898,14465615:2066480,589039,252448 -g1,4857:17979578,14465615 -k1,4857:18131425,14465615:151847 -$1,4857:18131425,14465615 -(1,4857:18594109,14563929:644743,346358,72024 -) -$1,4857:19238852,14465615 -k1,4857:19390698,14465615:151846 -g1,4857:19718378,14465615 -) -g1,4857:19718378,14465615 -(1,4857:19718378,14465615:1232732,589039,252448 -g1,4857:20046058,14465615 -g1,4857:20046058,14465615 -$1,4857:20046058,14465615 -$1,4857:20623430,14465615 -g1,4857:20623430,14465615 -g1,4857:20951110,14465615 -) -g1,4857:20951110,14465615 -(1,4857:20951110,14465615:2041708,589039,252448 -g1,4857:21278790,14465615 -k1,4857:21430637,14465615:151847 -$1,4857:21430637,14465615 -(1,4857:21893321,14563929:619971,346358,96797 -) -$1,4857:22513292,14465615 -k1,4857:22665138,14465615:151846 -g1,4857:22992818,14465615 -) -g1,4857:22992818,14465615 -(1,4857:22992818,14465615:1232732,589039,252448 -g1,4857:23320498,14465615 -g1,4857:23320498,14465615 -$1,4857:23320498,14465615 -$1,4857:23897870,14465615 -g1,4857:23897870,14465615 -g1,4857:24225550,14465615 -) -g1,4857:24225550,14465615 -(1,4857:24225550,14465615:2148138,589039,252448 -g1,4857:24553230,14465615 -k1,4857:24705077,14465615:151847 -$1,4857:24705077,14465615 -(1,4857:25167761,14563929:726401,346358,72024 -) -$1,4857:25894162,14465615 -$1,4857:25894162,14465615 -h1,4857:25894162,14465615:0,0,0 -$1,4857:25894162,14465615 -k1,4857:26046008,14465615:151846 -g1,4857:26373688,14465615 -) -g1,4857:26373688,14465615 -) -(1,4858:15585418,15307102:10788270,589039,252448 -g1,4858:15585418,15307102 -(1,4858:15585418,15307102:2066480,589039,252448 -r1,4929:15585418,15307102:0,841487,252448 -g1,4858:15913098,15307102 -k1,4858:16329972,15307102:416874 -$1,4858:16329972,15307102 -$1,4858:16907344,15307102 -k1,4858:17324218,15307102:416874 -g1,4858:17651898,15307102 -) -g1,4858:17651898,15307102 -(1,4858:17651898,15307102:2066480,589039,252448 -g1,4858:17979578,15307102 -k1,4858:18396452,15307102:416874 -$1,4858:18396452,15307102 -$1,4858:18973824,15307102 -k1,4858:19390698,15307102:416874 -g1,4858:19718378,15307102 -) -g1,4858:19718378,15307102 -(1,4858:19718378,15307102:1232732,589039,252448 -g1,4858:20046058,15307102 -k1,4858:20334744,15307102:288686 -$1,4858:20334744,15307102 -$1,4858:20334744,15307102 -k1,4858:20623430,15307102:288686 -g1,4858:20951110,15307102 -) -g1,4858:20951110,15307102 -(1,4858:20951110,15307102:2041708,589039,252448 -g1,4858:21278790,15307102 -k1,4858:21683278,15307102:404488 -$1,4858:21683278,15307102 -$1,4858:22260650,15307102 -k1,4858:22665138,15307102:404488 -g1,4858:22992818,15307102 -) -g1,4858:22992818,15307102 -(1,4858:22992818,15307102:1232732,589039,252448 -g1,4858:23320498,15307102 -k1,4858:23325086,15307102:4588 -$1,4858:23325086,15307102 -$1,4858:23893283,15307102 -k1,4858:23897870,15307102:4587 -g1,4858:24225550,15307102 -) -g1,4858:24225550,15307102 -(1,4858:24225550,15307102:2148138,589039,252448 -g1,4858:24553230,15307102 -k1,4858:25010933,15307102:457703 -$1,4858:25010933,15307102 -$1,4858:25588305,15307102 -$1,4858:25588305,15307102 -h1,4858:25588305,15307102:0,0,0 -$1,4858:25588305,15307102 -k1,4858:26046008,15307102:457703 -g1,4858:26373688,15307102 -) -g1,4858:26373688,15307102 -) -(1,4860:15585418,16148589:10788270,589039,252448 -g1,4859:15585418,16148589 -(1,4859:15585418,16148589:2066480,589039,252448 -r1,4929:15585418,16148589:0,841487,252448 -g1,4859:15913098,16148589 -g1,4859:15913098,16148589 -$1,4859:15913098,16148589 -(1,4859:16375782,16246903:948436,334430,72024 -) -$1,4859:17324218,16148589 -g1,4859:17324218,16148589 -g1,4859:17651898,16148589 -) -g1,4859:17651898,16148589 -(1,4859:17651898,16148589:2066480,589039,252448 -g1,4859:17979578,16148589 -g1,4859:17979578,16148589 -$1,4859:17979578,16148589 -(1,4859:18442262,16246903:948436,339935,72024 -) -$1,4859:19390698,16148589 -g1,4859:19390698,16148589 -g1,4859:19718378,16148589 -) -g1,4859:19718378,16148589 -(1,4859:19718378,16148589:1232732,589039,252448 -g1,4859:20046058,16148589 -g1,4859:20046058,16148589 -$1,4859:20046058,16148589 -$1,4859:20623430,16148589 -g1,4859:20623430,16148589 -g1,4859:20951110,16148589 -) -g1,4859:20951110,16148589 -(1,4859:20951110,16148589:2041708,589039,252448 -g1,4859:21278790,16148589 -g1,4859:21278790,16148589 -$1,4859:21278790,16148589 -(1,4859:21741474,16246903:923664,346358,96797 -) -$1,4859:22665138,16148589 -g1,4859:22665138,16148589 -g1,4859:22992818,16148589 -) -g1,4859:22992818,16148589 -(1,4859:22992818,16148589:1232732,589039,252448 -g1,4859:23320498,16148589 -g1,4859:23320498,16148589 -$1,4859:23320498,16148589 -$1,4859:23897870,16148589 -g1,4859:23897870,16148589 -g1,4859:24225550,16148589 -) -g1,4859:24225550,16148589 -(1,4860:24225550,16148589:2148138,589039,252448 -g1,4859:24553230,16148589 -g1,4859:24553230,16148589 -$1,4860:24553230,16148589 -(1,4860:25015914,16246903:1030094,248644,72024 -) -$1,4860:26046008,16148589 -g1,4860:26046008,16148589 -g1,4860:26373688,16148589 -) -g1,4860:26373688,16148589 -) -] -g1,4860:26046008,14081726 -[1,4861:26046008,16237197:459407,4721242,0 -] -) -) -(1,4864:6630773,17269302:25952256,505283,195111 -h1,4863:6630773,17269302:983040,0,0 -k1,4863:9783905,17269302:251198 -$1,4863:9783905,17269302 -$1,4863:10301639,17269302 -k1,4863:10552837,17269302:251198 -k1,4863:14175862,17269302:251198 -k1,4863:15446145,17269302:251198 -k1,4863:17580192,17269302:251198 -k1,4863:20092382,17269302:251198 -$1,4863:20092382,17269302 -k1,4863:20996264,17269302:183641 -k1,4863:21748102,17269302:183641 -$1,4863:22263215,17269302 -k1,4863:22514413,17269302:251198 -k1,4863:23554009,17269302:251198 -k1,4863:27654136,17269302:251198 -k1,4863:29096779,17269302:251198 -$1,4863:29096779,17269302 -(1,4863:29559463,17367616:619971,346358,96797 -) -$1,4863:30179434,17269302 -k1,4863:30430632,17269302:251198 -k1,4863:31470228,17269302:251198 -k1,4864:32583029,17269302:0 -) -(1,4864:6630773,18110790:25952256,513147,138281 -k1,4863:9020122,18110790:246322 -k1,4863:10660394,18110790:246321 -$1,4863:10660394,18110790 -$1,4863:10946786,18110790 -k1,4863:11193108,18110790:246322 -k1,4863:14178835,18110790:246322 -k1,4863:15959355,18110790:246322 -k1,4863:17397121,18110790:246321 -$1,4863:17397121,18110790 -$1,4863:17760190,18110790 -k1,4863:18006512,18110790:246322 -k1,4863:20992239,18110790:246322 -k1,4863:24125421,18110790:246321 -k1,4863:25568430,18110790:246322 -k1,4863:28158319,18110790:246322 -k1,4863:29063933,18110790:246322 -k1,4863:30329339,18110790:246321 -k1,4863:31748100,18110790:246322 -k1,4864:32583029,18110790:0 -) -(1,4864:6630773,18952278:25952256,513147,134348 -g1,4863:9883324,18952278 -g1,4863:10741845,18952278 -g1,4863:11960159,18952278 -g1,4863:14246710,18952278 -g1,4863:15437499,18952278 -g1,4863:17331489,18952278 -g1,4863:18292246,18952278 -$1,4863:18292246,18952278 -$1,4863:19012487,18952278 -g1,4863:19211716,18952278 -g1,4863:20602390,18952278 -$1,4863:20602390,18952278 -$1,4863:21117503,18952278 -g1,4863:21490402,18952278 -g1,4863:22637282,18952278 -g1,4863:24370709,18952278 -g1,4863:25761383,18952278 -k1,4864:32583029,18952278:3934785 -g1,4864:32583029,18952278 -) -(1,4866:6630773,19793766:25952256,505283,134348 -h1,4865:6630773,19793766:983040,0,0 -k1,4865:10260610,19793766:237694 -k1,4865:11973519,19793766:237694 -k1,4865:12567073,19793766:237694 -k1,4865:14677786,19793766:237694 -k1,4865:18434108,19793766:237694 -k1,4865:20036917,19793766:237694 -k1,4865:20960772,19793766:237693 -k1,4865:24288489,19793766:237694 -k1,4865:25335553,19793766:237694 -k1,4865:27071400,19793766:237694 -h1,4865:27868318,19793766:0,0,0 -k1,4865:28106012,19793766:237694 -k1,4865:30372701,19793766:237694 -k1,4865:31478747,19793766:237694 -k1,4865:32583029,19793766:0 -) -(1,4866:6630773,20635254:25952256,513147,134348 -k1,4865:8671841,20635254:225065 -k1,4865:10100147,20635254:225065 -k1,4865:13843840,20635254:225065 -k1,4865:15577544,20635254:225065 -k1,4865:17989545,20635254:225065 -k1,4865:19608560,20635254:225064 -k1,4865:22529121,20635254:225065 -(1,4865:22529121,20635254:0,452978,122846 -r1,4929:25349370,20635254:2820249,575824,122846 -k1,4865:22529121,20635254:-2820249 -) -(1,4865:22529121,20635254:2820249,452978,122846 -k1,4865:22529121,20635254:3277 -h1,4865:25346093,20635254:0,411205,112570 -) -k1,4865:25748105,20635254:225065 -k1,4865:28650316,20635254:225065 -k1,4865:30350596,20635254:225065 -k1,4865:31748100,20635254:225065 -k1,4866:32583029,20635254:0 -) -(1,4866:6630773,21476742:25952256,505283,134348 -k1,4865:10090476,21476742:232710 -k1,4865:12208657,21476742:232710 -k1,4865:13545649,21476742:232710 -k1,4865:14526125,21476742:232710 -k1,4865:17183012,21476742:232710 -k1,4865:21174866,21476742:232709 -k1,4865:22801527,21476742:232710 -(1,4865:22801527,21476742:0,452978,115847 -r1,4929:24918352,21476742:2116825,568825,115847 -k1,4865:22801527,21476742:-2116825 -) -(1,4865:22801527,21476742:2116825,452978,115847 -k1,4865:22801527,21476742:3277 -h1,4865:24915075,21476742:0,411205,112570 -) -k1,4865:25151062,21476742:232710 -k1,4865:26575217,21476742:232710 -(1,4865:26575217,21476742:0,452978,115847 -r1,4929:28692042,21476742:2116825,568825,115847 -k1,4865:26575217,21476742:-2116825 -) -(1,4865:26575217,21476742:2116825,452978,115847 -k1,4865:26575217,21476742:3277 -h1,4865:28688765,21476742:0,411205,112570 -) -k1,4865:29098422,21476742:232710 -k1,4865:30522577,21476742:232710 -k1,4865:32583029,21476742:0 -) -(1,4866:6630773,22318230:25952256,505283,126483 -g1,4865:8223953,22318230 -(1,4865:8223953,22318230:0,452978,115847 -r1,4929:9989066,22318230:1765113,568825,115847 -k1,4865:8223953,22318230:-1765113 -) -(1,4865:8223953,22318230:1765113,452978,115847 -k1,4865:8223953,22318230:3277 -h1,4865:9985789,22318230:0,411205,112570 -) -g1,4865:10361965,22318230 -g1,4865:11379083,22318230 -g1,4865:14417332,22318230 -(1,4865:14417332,22318230:0,452978,115847 -r1,4929:18292716,22318230:3875384,568825,115847 -k1,4865:14417332,22318230:-3875384 -) -(1,4865:14417332,22318230:3875384,452978,115847 -k1,4865:14417332,22318230:3277 -h1,4865:18289439,22318230:0,411205,112570 -) -g1,4865:18491945,22318230 -g1,4865:19795456,22318230 -g1,4865:20742451,22318230 -g1,4865:22454906,22318230 -g1,4865:23305563,22318230 -g1,4865:25320795,22318230 -g1,4865:26539109,22318230 -k1,4866:32583029,22318230:4315080 -g1,4866:32583029,22318230 -) -(1,4868:6630773,23159718:25952256,505283,134348 -h1,4867:6630773,23159718:983040,0,0 -k1,4867:8839949,23159718:272587 -k1,4867:10216817,23159718:272586 -k1,4867:12418784,23159718:272587 -k1,4867:13047230,23159718:272586 -k1,4867:15407139,23159718:272587 -k1,4867:17415118,23159718:272586 -k1,4867:18706790,23159718:272587 -(1,4867:18706790,23159718:0,452978,115847 -r1,4929:21527039,23159718:2820249,568825,115847 -k1,4867:18706790,23159718:-2820249 -) -(1,4867:18706790,23159718:2820249,452978,115847 -k1,4867:18706790,23159718:3277 -h1,4867:21523762,23159718:0,411205,112570 -) -k1,4867:21799625,23159718:272586 -k1,4867:22755097,23159718:272587 -(1,4867:22755097,23159718:0,452978,115847 -r1,4929:26630481,23159718:3875384,568825,115847 -k1,4867:22755097,23159718:-3875384 -) -(1,4867:22755097,23159718:3875384,452978,115847 -k1,4867:22755097,23159718:3277 -h1,4867:26627204,23159718:0,411205,112570 -) -k1,4867:26903067,23159718:272586 -k1,4867:31386342,23159718:272587 -k1,4867:32583029,23159718:0 -) -(1,4868:6630773,24001206:25952256,513147,134348 -k1,4867:8118565,24001206:181659 -k1,4867:11372552,24001206:181659 -k1,4867:12221367,24001206:181659 -(1,4867:12221367,24001206:0,452978,115847 -r1,4929:15041616,24001206:2820249,568825,115847 -k1,4867:12221367,24001206:-2820249 -) -(1,4867:12221367,24001206:2820249,452978,115847 -k1,4867:12221367,24001206:3277 -h1,4867:15038339,24001206:0,411205,112570 -) -k1,4867:15223275,24001206:181659 -k1,4867:17026950,24001206:181659 -k1,4867:17956374,24001206:181658 -k1,4867:18493893,24001206:181659 -k1,4867:20827099,24001206:181659 -k1,4867:23798626,24001206:181659 -(1,4867:23798626,24001206:0,452978,115847 -r1,4929:27674010,24001206:3875384,568825,115847 -k1,4867:23798626,24001206:-3875384 -) -(1,4867:23798626,24001206:3875384,452978,115847 -k1,4867:23798626,24001206:3277 -h1,4867:27670733,24001206:0,411205,112570 -) -k1,4867:27855669,24001206:181659 -k1,4867:28568825,24001206:181659 -k1,4867:29106344,24001206:181659 -k1,4867:32583029,24001206:0 -) -(1,4868:6630773,24842694:25952256,513147,134348 -k1,4867:10669691,24842694:158531 -k1,4867:12222174,24842694:158532 -k1,4867:17119613,24842694:158531 -k1,4867:20316394,24842694:158532 -k1,4867:21161087,24842694:158531 -k1,4867:24391946,24842694:158531 -k1,4867:26840306,24842694:158532 -k1,4867:30125560,24842694:158531 -k1,4867:30935520,24842694:158532 -k1,4867:31449911,24842694:158531 -k1,4867:32583029,24842694:0 -) -(1,4868:6630773,25684182:25952256,505283,7863 -g1,4867:8531972,25684182 -k1,4868:32583030,25684182:21644576 -g1,4868:32583030,25684182 -) -v1,4870:6630773,26746955:0,393216,0 -(1,4891:6630773,35020203:25952256,8666464,196608 -g1,4891:6630773,35020203 -g1,4891:6630773,35020203 -g1,4891:6434165,35020203 -(1,4891:6434165,35020203:0,8666464,196608 -r1,4929:32779637,35020203:26345472,8863072,196608 -k1,4891:6434165,35020203:-26345472 -) -(1,4891:6434165,35020203:26345472,8666464,196608 -[1,4891:6630773,35020203:25952256,8469856,0 -(1,4872:6630773,26954573:25952256,404226,82312 -(1,4871:6630773,26954573:0,0,0 -g1,4871:6630773,26954573 -g1,4871:6630773,26954573 -g1,4871:6303093,26954573 -(1,4871:6303093,26954573:0,0,0 -) -g1,4871:6630773,26954573 -) -k1,4872:6630773,26954573:0 -g1,4872:10740668,26954573 -g1,4872:12321397,26954573 -g1,4872:12953689,26954573 -h1,4872:13585981,26954573:0,0,0 -k1,4872:32583029,26954573:18997048 -g1,4872:32583029,26954573 -) -(1,4881:6630773,27620751:25952256,404226,82312 -(1,4874:6630773,27620751:0,0,0 -g1,4874:6630773,27620751 -g1,4874:6630773,27620751 -g1,4874:6303093,27620751 -(1,4874:6303093,27620751:0,0,0 -) -g1,4874:6630773,27620751 -) -g1,4881:7579210,27620751 -g1,4881:7895356,27620751 -g1,4881:8211502,27620751 -g1,4881:8527648,27620751 -g1,4881:8843794,27620751 -g1,4881:9159940,27620751 -g1,4881:10740669,27620751 -g1,4881:12321398,27620751 -k1,4881:12321398,27620751:0 -h1,4881:13585981,27620751:0,0,0 -k1,4881:32583029,27620751:18997048 -g1,4881:32583029,27620751 -) -(1,4881:6630773,28286929:25952256,404226,82312 -h1,4881:6630773,28286929:0,0,0 -g1,4881:7579210,28286929 -g1,4881:9159938,28286929 -g1,4881:9476084,28286929 -g1,4881:9792230,28286929 -g1,4881:10108376,28286929 -g1,4881:10740668,28286929 -g1,4881:11056814,28286929 -g1,4881:11372960,28286929 -g1,4881:11689106,28286929 -g1,4881:12321398,28286929 -g1,4881:12637544,28286929 -g1,4881:12953690,28286929 -h1,4881:13585981,28286929:0,0,0 -k1,4881:32583029,28286929:18997048 -g1,4881:32583029,28286929 -) -(1,4881:6630773,28953107:25952256,404226,82312 -h1,4881:6630773,28953107:0,0,0 -g1,4881:7579210,28953107 -g1,4881:9159938,28953107 -g1,4881:9476084,28953107 -g1,4881:9792230,28953107 -g1,4881:10108376,28953107 -g1,4881:10740668,28953107 -g1,4881:11056814,28953107 -g1,4881:11372960,28953107 -g1,4881:11689106,28953107 -g1,4881:12321398,28953107 -g1,4881:12637544,28953107 -g1,4881:12953690,28953107 -h1,4881:13585981,28953107:0,0,0 -k1,4881:32583029,28953107:18997048 -g1,4881:32583029,28953107 -) -(1,4881:6630773,29619285:25952256,404226,82312 -h1,4881:6630773,29619285:0,0,0 -g1,4881:7579210,29619285 -g1,4881:9159938,29619285 -g1,4881:9476084,29619285 -g1,4881:9792230,29619285 -g1,4881:10108376,29619285 -g1,4881:10740668,29619285 -g1,4881:11056814,29619285 -g1,4881:11372960,29619285 -g1,4881:11689106,29619285 -g1,4881:12321398,29619285 -g1,4881:12637544,29619285 -g1,4881:12953690,29619285 -h1,4881:13585981,29619285:0,0,0 -k1,4881:32583029,29619285:18997048 -g1,4881:32583029,29619285 -) -(1,4881:6630773,30285463:25952256,404226,82312 -h1,4881:6630773,30285463:0,0,0 -g1,4881:7579210,30285463 -g1,4881:9159938,30285463 -g1,4881:9476084,30285463 -g1,4881:9792230,30285463 -g1,4881:10108376,30285463 -g1,4881:10740668,30285463 -g1,4881:11056814,30285463 -g1,4881:11372960,30285463 -g1,4881:11689106,30285463 -g1,4881:12321398,30285463 -g1,4881:12637544,30285463 -g1,4881:12953690,30285463 -h1,4881:13585981,30285463:0,0,0 -k1,4881:32583029,30285463:18997048 -g1,4881:32583029,30285463 -) -(1,4881:6630773,30951641:25952256,404226,82312 -h1,4881:6630773,30951641:0,0,0 -g1,4881:7579210,30951641 -g1,4881:9159938,30951641 -g1,4881:9476084,30951641 -g1,4881:9792230,30951641 -g1,4881:10108376,30951641 -g1,4881:10740668,30951641 -g1,4881:11056814,30951641 -g1,4881:11372960,30951641 -g1,4881:12321397,30951641 -g1,4881:12637543,30951641 -g1,4881:12953689,30951641 -h1,4881:13585980,30951641:0,0,0 -k1,4881:32583028,30951641:18997048 -g1,4881:32583028,30951641 -) -(1,4883:6630773,32273179:25952256,404226,82312 -(1,4882:6630773,32273179:0,0,0 -g1,4882:6630773,32273179 -g1,4882:6630773,32273179 -g1,4882:6303093,32273179 -(1,4882:6303093,32273179:0,0,0 -) -g1,4882:6630773,32273179 -) -k1,4883:6630773,32273179:0 -g1,4883:10740668,32273179 -g1,4883:12321397,32273179 -g1,4883:12953689,32273179 -h1,4883:13585981,32273179:0,0,0 -k1,4883:32583029,32273179:18997048 -g1,4883:32583029,32273179 -) -(1,4890:6630773,32939357:25952256,404226,82312 -(1,4885:6630773,32939357:0,0,0 -g1,4885:6630773,32939357 -g1,4885:6630773,32939357 -g1,4885:6303093,32939357 -(1,4885:6303093,32939357:0,0,0 -) -g1,4885:6630773,32939357 -) -g1,4890:7579210,32939357 -g1,4890:7895356,32939357 -g1,4890:8211502,32939357 -g1,4890:8527648,32939357 -g1,4890:8843794,32939357 -g1,4890:9159940,32939357 -g1,4890:10740669,32939357 -g1,4890:12321398,32939357 -g1,4890:13902127,32939357 -g1,4890:15482856,32939357 -k1,4890:15482856,32939357:0 -h1,4890:16747439,32939357:0,0,0 -k1,4890:32583029,32939357:15835590 -g1,4890:32583029,32939357 -) -(1,4890:6630773,33605535:25952256,404226,82312 -h1,4890:6630773,33605535:0,0,0 -g1,4890:7579210,33605535 -g1,4890:9159938,33605535 -g1,4890:9476084,33605535 -g1,4890:9792230,33605535 -g1,4890:10108376,33605535 -g1,4890:10740668,33605535 -g1,4890:11056814,33605535 -g1,4890:11372960,33605535 -g1,4890:11689106,33605535 -g1,4890:12321398,33605535 -g1,4890:12637544,33605535 -g1,4890:12953690,33605535 -g1,4890:13269836,33605535 -g1,4890:13902128,33605535 -g1,4890:14218274,33605535 -g1,4890:14534420,33605535 -g1,4890:15482857,33605535 -g1,4890:15799003,33605535 -g1,4890:16115149,33605535 -h1,4890:16747440,33605535:0,0,0 -k1,4890:32583029,33605535:15835589 -g1,4890:32583029,33605535 -) -(1,4890:6630773,34271713:25952256,404226,82312 -h1,4890:6630773,34271713:0,0,0 -g1,4890:7579210,34271713 -g1,4890:9159938,34271713 -g1,4890:9476084,34271713 -g1,4890:9792230,34271713 -g1,4890:10108376,34271713 -g1,4890:10740668,34271713 -g1,4890:11056814,34271713 -g1,4890:11372960,34271713 -g1,4890:11689106,34271713 -g1,4890:12321398,34271713 -g1,4890:12637544,34271713 -g1,4890:12953690,34271713 -g1,4890:13269836,34271713 -g1,4890:13902128,34271713 -g1,4890:14218274,34271713 -g1,4890:14534420,34271713 -g1,4890:15482857,34271713 -g1,4890:15799003,34271713 -g1,4890:16115149,34271713 -h1,4890:16747440,34271713:0,0,0 -k1,4890:32583029,34271713:15835589 -g1,4890:32583029,34271713 -) -(1,4890:6630773,34937891:25952256,404226,82312 -h1,4890:6630773,34937891:0,0,0 -g1,4890:7579210,34937891 -g1,4890:9159938,34937891 -g1,4890:9476084,34937891 -g1,4890:9792230,34937891 -g1,4890:10108376,34937891 -g1,4890:10740668,34937891 -g1,4890:11056814,34937891 -g1,4890:11372960,34937891 -g1,4890:11689106,34937891 -g1,4890:12321398,34937891 -g1,4890:12637544,34937891 -g1,4890:12953690,34937891 -g1,4890:13269836,34937891 -g1,4890:13902128,34937891 -g1,4890:14218274,34937891 -g1,4890:14534420,34937891 -g1,4890:15482857,34937891 -g1,4890:15799003,34937891 -g1,4890:16115149,34937891 -h1,4890:16747440,34937891:0,0,0 -k1,4890:32583029,34937891:15835589 -g1,4890:32583029,34937891 -) -] -) -g1,4891:32583029,35020203 -g1,4891:6630773,35020203 -g1,4891:6630773,35020203 -g1,4891:32583029,35020203 -g1,4891:32583029,35020203 -) -h1,4891:6630773,35216811:0,0,0 -(1,4895:6630773,36454893:25952256,505283,126483 -h1,4894:6630773,36454893:983040,0,0 -k1,4894:9585967,36454893:188919 -k1,4894:10130746,36454893:188919 -k1,4894:12406987,36454893:188919 -k1,4894:13127403,36454893:188919 -k1,4894:15666443,36454893:188919 -k1,4894:16471400,36454893:188919 -k1,4894:17075152,36454893:188909 -k1,4894:18283156,36454893:188919 -k1,4894:19675971,36454893:188919 -k1,4894:21056335,36454893:188919 -k1,4894:23628143,36454893:188919 -k1,4894:26243860,36454893:188919 -k1,4894:27424339,36454893:188919 -k1,4894:30565655,36454893:188919 -k1,4894:31563944,36454893:188919 -k1,4894:32583029,36454893:0 -) -(1,4895:6630773,37296381:25952256,513147,134348 -k1,4894:7878251,37296381:173343 -k1,4894:9243038,37296381:173342 -k1,4894:10488550,37296381:173343 -k1,4894:13420303,37296381:173343 -k1,4894:14209683,37296381:173342 -k1,4894:15402111,37296381:173343 -k1,4894:17228927,37296381:173343 -k1,4894:18640244,37296381:173342 -k1,4894:19499749,37296381:173343 -k1,4894:21053280,37296381:173343 -k1,4894:23182873,37296381:173343 -k1,4894:24103981,37296381:173342 -k1,4894:25790550,37296381:173343 -k1,4894:26615321,37296381:173343 -k1,4894:28992639,37296381:173342 -k1,4894:31048831,37296381:173343 -k1,4894:32583029,37296381:0 -) -(1,4895:6630773,38137869:25952256,505283,7863 -g1,4894:8021447,38137869 -k1,4895:32583028,38137869:21674720 -g1,4895:32583028,38137869 -) -(1,4897:6630773,38979357:25952256,513147,102891 -h1,4896:6630773,38979357:983040,0,0 -k1,4896:9625332,38979357:228284 -k1,4896:10209475,38979357:228283 -k1,4896:12415636,38979357:228284 -k1,4896:13175417,38979357:228284 -k1,4896:16564501,38979357:228283 -k1,4896:17444213,38979357:228284 -k1,4896:18028357,38979357:228284 -k1,4896:20517632,38979357:228283 -k1,4896:21664731,38979357:228284 -k1,4896:24158595,38979357:228284 -k1,4896:24918375,38979357:228283 -k1,4896:25798087,38979357:228284 -k1,4896:28480694,38979357:228284 -k1,4896:29728062,38979357:228283 -k1,4896:31966991,38979357:228284 -k1,4896:32583029,38979357:0 -) -(1,4897:6630773,39820845:25952256,513147,134348 -k1,4896:7813143,39820845:163285 -k1,4896:9954306,39820845:163286 -k1,4896:10769019,39820845:163285 -k1,4896:11951389,39820845:163285 -k1,4896:14201997,39820845:163286 -k1,4896:16843854,39820845:163285 -k1,4896:18574760,39820845:163285 -k1,4896:19757130,39820845:163285 -k1,4896:22596251,39820845:163286 -k1,4896:25316095,39820845:163285 -k1,4896:26670825,39820845:163285 -k1,4896:28844100,39820845:163286 -k1,4896:30026470,39820845:163285 -k1,4896:32583029,39820845:0 -) -(1,4897:6630773,40662333:25952256,513147,126483 -k1,4896:8566332,40662333:184437 -k1,4896:10318390,40662333:184437 -k1,4896:11521912,40662333:184437 -k1,4896:12952188,40662333:184437 -k1,4896:14741602,40662333:184437 -k1,4896:15945124,40662333:184437 -k1,4896:17435693,40662333:184436 -k1,4896:20003019,40662333:184437 -k1,4896:20718953,40662333:184437 -k1,4896:22685969,40662333:184437 -k1,4896:23889491,40662333:184437 -k1,4896:26519076,40662333:184437 -k1,4896:29811886,40662333:184437 -k1,4896:31563944,40662333:184437 -k1,4896:32583029,40662333:0 -) -(1,4897:6630773,41503821:25952256,513147,134348 -k1,4896:7938175,41503821:235233 -k1,4896:8832700,41503821:235233 -k1,4896:10087018,41503821:235233 -k1,4896:11706372,41503821:235234 -k1,4896:14498164,41503821:235233 -k1,4896:15419559,41503821:235233 -k1,4896:16759074,41503821:235233 -k1,4896:17742073,41503821:235233 -k1,4896:19417132,41503821:235233 -k1,4896:21681360,41503821:235233 -k1,4896:23297437,41503821:235233 -k1,4896:25271997,41503821:235234 -k1,4896:26611512,41503821:235233 -k1,4896:27594511,41503821:235233 -k1,4896:30491161,41503821:235233 -k1,4896:31412556,41503821:235233 -k1,4896:32583029,41503821:0 -) -(1,4897:6630773,42345309:25952256,505283,134348 -g1,4896:7962464,42345309 -g1,4896:10834907,42345309 -g1,4896:11650174,42345309 -g1,4896:12868488,42345309 -g1,4896:16718072,42345309 -k1,4897:32583029,42345309:13822855 -g1,4897:32583029,42345309 -) -v1,4899:6630773,43583392:0,393216,0 -(1,4929:6630773,45706769:25952256,2516593,0 -g1,4929:6630773,45706769 -g1,4929:6303093,45706769 -r1,4929:6401397,45706769:98304,2516593,0 -g1,4929:6600626,45706769 -g1,4929:6797234,45706769 -[1,4929:6797234,45706769:25785795,2516593,0 -(1,4900:6797234,44015930:25785795,825754,196608 -(1,4899:6797234,44015930:0,825754,196608 -r1,4929:7890375,44015930:1093141,1022362,196608 -k1,4899:6797234,44015930:-1093141 -) -(1,4899:6797234,44015930:1093141,825754,196608 -) -k1,4899:8094128,44015930:203753 -k1,4899:9820346,44015930:327680 -k1,4899:11967897,44015930:203753 -k1,4899:12787688,44015930:203753 -k1,4899:14010525,44015930:203752 -k1,4899:15602331,44015930:203753 -k1,4899:17304237,44015930:203753 -k1,4899:18455641,44015930:203753 -k1,4899:19678479,44015930:203753 -(1,4899:19678479,44015930:0,452978,115847 -r1,4929:21795304,44015930:2116825,568825,115847 -k1,4899:19678479,44015930:-2116825 -) -(1,4899:19678479,44015930:2116825,452978,115847 -k1,4899:19678479,44015930:3277 -h1,4899:21792027,44015930:0,411205,112570 -) -k1,4899:21999057,44015930:203753 -k1,4899:25909526,44015930:203753 -k1,4899:27443659,44015930:203752 -k1,4899:28298840,44015930:203753 -k1,4899:29595078,44015930:203753 -k1,4899:30817916,44015930:203753 -(1,4899:30817916,44015930:0,452978,115847 -r1,4929:32583029,44015930:1765113,568825,115847 -k1,4899:30817916,44015930:-1765113 -) -(1,4899:30817916,44015930:1765113,452978,115847 -k1,4899:30817916,44015930:3277 -h1,4899:32579752,44015930:0,411205,112570 -) -k1,4899:32583029,44015930:0 -) -(1,4900:6797234,44857418:25785795,513147,126483 -k1,4899:10289741,44857418:211775 -k1,4899:11152943,44857418:211774 -k1,4899:12818307,44857418:211775 -k1,4899:14049167,44857418:211775 -k1,4899:16526522,44857418:211775 -k1,4899:18477622,44857418:211774 -k1,4899:19305435,44857418:211775 -k1,4899:21402681,44857418:211775 -k1,4899:22633540,44857418:211774 -k1,4899:25714481,44857418:211775 -k1,4899:26585548,44857418:211775 -k1,4899:27816408,44857418:211775 -k1,4899:30006059,44857418:211774 -k1,4899:31209394,44857418:211775 -k1,4900:32583029,44857418:0 -) -(1,4900:6797234,45698906:25785795,513147,7863 -g1,4899:8710885,45698906 -g1,4899:9561542,45698906 -g1,4899:12473962,45698906 -g1,4899:13864636,45698906 -g1,4899:15598063,45698906 -g1,4899:16456584,45698906 -g1,4899:17674898,45698906 -g1,4899:19157322,45698906 -k1,4900:32583029,45698906:11164715 -g1,4900:32583029,45698906 -) -] -g1,4929:32583029,45706769 -) -] -(1,4929:32583029,45706769:0,0,0 -g1,4929:32583029,45706769 -) -) -] -(1,4929:6630773,47279633:25952256,0,0 -h1,4929:6630773,47279633:25952256,0,0 -) -] -(1,4929:4262630,4025873:0,0,0 -[1,4929:-473656,4025873:0,0,0 -(1,4929:-473656,-710413:0,0,0 -(1,4929:-473656,-710413:0,0,0 -g1,4929:-473656,-710413 -) -g1,4929:-473656,-710413 -) -] -) -] -!37638 -}88 -!11 -{89 -[1,5004:4262630,47279633:28320399,43253760,0 -(1,5004:4262630,4025873:0,0,0 -[1,5004:-473656,4025873:0,0,0 -(1,5004:-473656,-710413:0,0,0 -(1,5004:-473656,-644877:0,0,0 -k1,5004:-473656,-644877:-65536 -) -(1,5004:-473656,4736287:0,0,0 -k1,5004:-473656,4736287:5209943 -) -g1,5004:-473656,-710413 -) -] -) -[1,5004:6630773,47279633:25952256,43253760,0 -[1,5004:6630773,4812305:25952256,786432,0 -(1,5004:6630773,4812305:25952256,505283,11795 -(1,5004:6630773,4812305:25952256,505283,11795 -g1,5004:3078558,4812305 -[1,5004:3078558,4812305:0,0,0 -(1,5004:3078558,2439708:0,1703936,0 -k1,5004:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,5004:2537886,2439708:1179648,16384,0 -) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,5004:3078558,1915420:16384,1179648,0 +[1,4117:3078558,4812305:0,0,0 +(1,4117:3078558,49800853:0,16384,2228224 +g1,4117:29030814,49800853 +g1,4117:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,4117:36151628,51504789:16384,1179648,0 ) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 -) -] +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 +) +] ) +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,4117:37855564,49800853:1179648,16384,0 ) ) -] -[1,5004:3078558,4812305:0,0,0 -(1,5004:3078558,2439708:0,1703936,0 -g1,5004:29030814,2439708 -g1,5004:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,5004:36151628,1915420:16384,1179648,0 +k1,4117:3078556,49800853:-34777008 +) +] +g1,4117:6630773,4812305 +k1,4117:22348274,4812305:14920583 +g1,4117:23970945,4812305 +g1,4117:24793421,4812305 +g1,4117:27528893,4812305 +g1,4117:28938572,4812305 +) +) +] +[1,4117:6630773,45706769:25952256,40108032,0 +(1,4117:6630773,45706769:25952256,40108032,0 +(1,4117:6630773,45706769:0,0,0 +g1,4117:6630773,45706769 +) +[1,4117:6630773,45706769:25952256,40108032,0 +v1,4040:6630773,6254097:0,393216,0 +(1,4060:6630773,17192510:25952256,11331629,0 +g1,4060:6630773,17192510 +g1,4060:6237557,17192510 +r1,4117:6368629,17192510:131072,11331629,0 +g1,4060:6567858,17192510 +g1,4060:6764466,17192510 +[1,4060:6764466,17192510:25818563,11331629,0 +(1,4041:6764466,6526574:25818563,665693,196608 +(1,4040:6764466,6526574:0,665693,196608 +r1,4117:8010564,6526574:1246098,862301,196608 +k1,4040:6764466,6526574:-1246098 +) +(1,4040:6764466,6526574:1246098,665693,196608 +) +k1,4040:8185302,6526574:174738 +k1,4040:9911520,6526574:327680 +k1,4040:11918645,6526574:174738 +k1,4040:12624880,6526574:174738 +k1,4040:15773642,6526574:174738 +k1,4040:16564418,6526574:174738 +k1,4040:17758240,6526574:174737 +k1,4040:21409663,6526574:174738 +k1,4040:23152022,6526574:174738 +k1,4040:26301439,6526574:174738 +k1,4040:28672288,6526574:174738 +k1,4040:30114492,6526574:174738 +(1,4040:30114492,6526574:0,452978,115847 +r1,4117:32583029,6526574:2468537,568825,115847 +k1,4040:30114492,6526574:-2468537 +) +(1,4040:30114492,6526574:2468537,452978,115847 +k1,4040:30114492,6526574:3277 +h1,4040:32579752,6526574:0,411205,112570 +) +k1,4040:32583029,6526574:0 +) +(1,4041:6764466,7391654:25818563,505283,134348 +k1,4040:8204308,7391654:248397 +(1,4040:8204308,7391654:0,452978,122846 +r1,4117:10672845,7391654:2468537,575824,122846 +k1,4040:8204308,7391654:-2468537 +) +(1,4040:8204308,7391654:2468537,452978,122846 +k1,4040:8204308,7391654:3277 +h1,4040:10669568,7391654:0,411205,112570 +) +k1,4040:10921242,7391654:248397 +k1,4040:13353954,7391654:248397 +k1,4040:14751197,7391654:248397 +k1,4040:16018679,7391654:248397 +k1,4040:19258795,7391654:248397 +k1,4040:21375624,7391654:248398 +k1,4040:22995034,7391654:248397 +k1,4040:24702262,7391654:248397 +k1,4040:26281040,7391654:248397 +k1,4040:29685651,7391654:248397 +k1,4040:30585476,7391654:248397 +k1,4040:31812326,7391654:248397 +k1,4040:32583029,7391654:0 +) +(1,4041:6764466,8256734:25818563,513147,134348 +k1,4040:8272197,8256734:182593 +k1,4040:9114083,8256734:182594 +k1,4040:10845292,8256734:182593 +k1,4040:13223996,8256734:182593 +k1,4040:14398150,8256734:182594 +k1,4040:17937497,8256734:182593 +k1,4040:19311535,8256734:182593 +k1,4040:22303001,8256734:182593 +k1,4040:25646396,8256734:182594 +k1,4040:27020434,8256734:182593 +k1,4040:29088498,8256734:182593 +k1,4040:30262652,8256734:182594 +k1,4040:31685186,8256734:182593 +k1,4040:32583029,8256734:0 +) +(1,4041:6764466,9121814:25818563,505283,126483 +g1,4040:8249511,9121814 +g1,4040:9586445,9121814 +g1,4040:12684987,9121814 +g1,4040:13496978,9121814 +g1,4040:14715292,9121814 +g1,4040:18391206,9121814 +g1,4040:21225638,9121814 +(1,4040:21225638,9121814:0,452978,115847 +r1,4117:23694175,9121814:2468537,568825,115847 +k1,4040:21225638,9121814:-2468537 +) +(1,4040:21225638,9121814:2468537,452978,115847 +k1,4040:21225638,9121814:3277 +h1,4040:23690898,9121814:0,411205,112570 +) +g1,4040:23893404,9121814 +g1,4040:25284078,9121814 +(1,4040:25284078,9121814:0,452978,122846 +r1,4117:27752615,9121814:2468537,575824,122846 +k1,4040:25284078,9121814:-2468537 +) +(1,4040:25284078,9121814:2468537,452978,122846 +k1,4040:25284078,9121814:3277 +h1,4040:27749338,9121814:0,411205,112570 +) +g1,4040:27951844,9121814 +g1,4040:30335388,9121814 +g1,4040:30335388,9121814 +g1,4040:30534617,9121814 +g1,4040:30534617,9121814 +k1,4041:32583029,9121814:2048412 +g1,4041:32583029,9121814 +) +v1,4043:6764466,9806669:0,393216,0 +(1,4057:6764466,16995902:25818563,7582449,196608 +g1,4057:6764466,16995902 +g1,4057:6764466,16995902 +g1,4057:6567858,16995902 +(1,4057:6567858,16995902:0,7582449,196608 +r1,4117:32779637,16995902:26211779,7779057,196608 +k1,4057:6567857,16995902:-26211780 +) +(1,4057:6567858,16995902:26211779,7582449,196608 +[1,4057:6764466,16995902:25818563,7385841,0 +(1,4045:6764466,10034500:25818563,424439,79822 +(1,4044:6764466,10034500:0,0,0 +g1,4044:6764466,10034500 +g1,4044:6764466,10034500 +g1,4044:6436786,10034500 +(1,4044:6436786,10034500:0,0,0 +) +g1,4044:6764466,10034500 +) +k1,4045:6764466,10034500:0 +h1,4045:12739637,10034500:0,0,0 +k1,4045:32583029,10034500:19843392 +g1,4045:32583029,10034500 +) +(1,4046:6764466,10719355:25818563,424439,79822 +h1,4046:6764466,10719355:0,0,0 +k1,4046:6764466,10719355:0 +h1,4046:13071591,10719355:0,0,0 +k1,4046:32583029,10719355:19511438 +g1,4046:32583029,10719355 +) +(1,4047:6764466,11404210:25818563,424439,79822 +h1,4047:6764466,11404210:0,0,0 +k1,4047:6764466,11404210:0 +h1,4047:12407683,11404210:0,0,0 +k1,4047:32583029,11404210:20175346 +g1,4047:32583029,11404210 +) +(1,4048:6764466,12089065:25818563,424439,79822 +h1,4048:6764466,12089065:0,0,0 +k1,4048:6764466,12089065:0 +h1,4048:12739637,12089065:0,0,0 +k1,4048:32583029,12089065:19843392 +g1,4048:32583029,12089065 +) +(1,4049:6764466,12773920:25818563,424439,79822 +h1,4049:6764466,12773920:0,0,0 +k1,4049:6764466,12773920:0 +h1,4049:11743775,12773920:0,0,0 +k1,4049:32583029,12773920:20839254 +g1,4049:32583029,12773920 +) +(1,4050:6764466,13458775:25818563,424439,112852 +h1,4050:6764466,13458775:0,0,0 +k1,4050:6764466,13458775:0 +h1,4050:12739637,13458775:0,0,0 +k1,4050:32583029,13458775:19843392 +g1,4050:32583029,13458775 +) +(1,4051:6764466,14143630:25818563,424439,112852 +h1,4051:6764466,14143630:0,0,0 +k1,4051:6764466,14143630:0 +h1,4051:13071591,14143630:0,0,0 +k1,4051:32583029,14143630:19511438 +g1,4051:32583029,14143630 +) +(1,4052:6764466,14828485:25818563,424439,112852 +h1,4052:6764466,14828485:0,0,0 +k1,4052:6764466,14828485:0 +h1,4052:11743775,14828485:0,0,0 +k1,4052:32583029,14828485:20839254 +g1,4052:32583029,14828485 +) +(1,4053:6764466,15513340:25818563,424439,112852 +h1,4053:6764466,15513340:0,0,0 +k1,4053:6764466,15513340:0 +h1,4053:11743775,15513340:0,0,0 +k1,4053:32583029,15513340:20839254 +g1,4053:32583029,15513340 +) +(1,4054:6764466,16198195:25818563,424439,112852 +h1,4054:6764466,16198195:0,0,0 +k1,4054:6764466,16198195:0 +h1,4054:12739637,16198195:0,0,0 +k1,4054:32583029,16198195:19843392 +g1,4054:32583029,16198195 +) +(1,4055:6764466,16883050:25818563,424439,112852 +h1,4055:6764466,16883050:0,0,0 +k1,4055:6764466,16883050:0 +h1,4055:12075729,16883050:0,0,0 +k1,4055:32583029,16883050:20507300 +g1,4055:32583029,16883050 +) +] +) +g1,4057:32583029,16995902 +g1,4057:6764466,16995902 +g1,4057:6764466,16995902 +g1,4057:32583029,16995902 +g1,4057:32583029,16995902 +) +h1,4057:6764466,17192510:0,0,0 +] +g1,4060:32583029,17192510 +) +h1,4060:6630773,17192510:0,0,0 +v1,4063:6630773,18057590:0,393216,0 +(1,4066:6630773,27115215:25952256,9450841,0 +g1,4066:6630773,27115215 +g1,4066:6237557,27115215 +r1,4117:6368629,27115215:131072,9450841,0 +g1,4066:6567858,27115215 +g1,4066:6764466,27115215 +[1,4066:6764466,27115215:25818563,9450841,0 +(1,4064:6764466,18330067:25818563,665693,196608 +(1,4063:6764466,18330067:0,665693,196608 +r1,4117:8010564,18330067:1246098,862301,196608 +k1,4063:6764466,18330067:-1246098 +) +(1,4063:6764466,18330067:1246098,665693,196608 +) +k1,4063:8221040,18330067:210476 +k1,4063:9947258,18330067:327680 +k1,4063:13756316,18330067:210476 +k1,4063:14626083,18330067:210475 +k1,4063:17907576,18330067:210476 +k1,4063:20934134,18330067:210476 +k1,4063:22412076,18330067:210476 +k1,4063:24505401,18330067:210476 +k1,4063:27531958,18330067:210475 +k1,4063:28846716,18330067:210476 +k1,4063:29804958,18330067:210476 +k1,4063:32583029,18330067:0 +) +(1,4064:6764466,19195147:25818563,513147,134348 +k1,4063:7596632,19195147:216128 +k1,4063:10575104,19195147:216129 +k1,4063:12533179,19195147:216128 +k1,4063:13510836,19195147:216129 +k1,4063:17058814,19195147:216128 +k1,4063:17934235,19195147:216129 +k1,4063:19169448,19195147:216128 +k1,4063:22456593,19195147:216128 +k1,4063:23994583,19195147:216129 +k1,4063:24893596,19195147:216128 +k1,4063:28033286,19195147:216129 +k1,4063:28707511,19195147:216128 +k1,4063:29759224,19195147:216129 +k1,4063:30658237,19195147:216128 +k1,4063:32583029,19195147:0 +) +(1,4064:6764466,20060227:25818563,513147,134348 +k1,4063:7417456,20060227:175233 +k1,4063:8461041,20060227:175233 +k1,4063:11367160,20060227:175234 +k1,4063:13009089,20060227:175233 +k1,4063:15839185,20060227:175233 +k1,4063:17205863,20060227:175233 +k1,4063:19890471,20060227:175234 +k1,4063:23055456,20060227:175233 +k1,4063:24561070,20060227:175233 +k1,4063:26187925,20060227:175233 +k1,4063:27022451,20060227:175234 +k1,4063:28836739,20060227:175233 +k1,4063:30003532,20060227:175233 +k1,4063:32583029,20060227:0 +) +(1,4064:6764466,20925307:25818563,513147,126483 +k1,4063:9260878,20925307:236731 +k1,4063:12724601,20925307:236730 +k1,4063:16955751,20925307:236731 +k1,4063:18090325,20925307:236731 +k1,4063:20023782,20925307:236730 +k1,4063:23922665,20925307:236731 +k1,4063:24845558,20925307:236731 +k1,4063:27463866,20925307:236730 +k1,4063:28316635,20925307:236731 +k1,4063:32583029,20925307:0 +) +(1,4064:6764466,21790387:25818563,513147,134348 +k1,4063:8005985,21790387:249959 +k1,4063:11039913,21790387:249959 +k1,4063:13848398,21790387:249959 +k1,4063:16860700,21790387:249959 +k1,4063:17525452,21790387:249909 +k1,4063:20974879,21790387:249959 +k1,4063:23099168,21790387:249959 +k1,4063:26548595,21790387:249959 +k1,4063:27790114,21790387:249959 +k1,4063:29106344,21790387:249959 +k1,4063:32583029,21790387:0 +) +(1,4064:6764466,22655467:25818563,513147,134348 +k1,4063:9987025,22655467:196762 +k1,4063:10869949,22655467:196762 +k1,4063:12446900,22655467:196763 +k1,4063:14654307,22655467:196762 +k1,4063:15206929,22655467:196762 +(1,4063:15206929,22655467:0,452978,115847 +r1,4117:17675466,22655467:2468537,568825,115847 +k1,4063:15206929,22655467:-2468537 +) +(1,4063:15206929,22655467:2468537,452978,115847 +k1,4063:15206929,22655467:3277 +h1,4063:17672189,22655467:0,411205,112570 +) +k1,4063:17872228,22655467:196762 +k1,4063:19749333,22655467:196762 +k1,4063:20605388,22655467:196763 +k1,4063:22357319,22655467:196762 +(1,4063:22357319,22655467:0,452978,115847 +r1,4117:24474144,22655467:2116825,568825,115847 +k1,4063:22357319,22655467:-2116825 +) +(1,4063:22357319,22655467:2116825,452978,115847 +k1,4063:22357319,22655467:3277 +h1,4063:24470867,22655467:0,411205,112570 +) +k1,4063:24844576,22655467:196762 +k1,4063:26091225,22655467:196762 +k1,4063:27786141,22655467:196763 +h1,4063:28583059,22655467:0,0,0 +k1,4063:28953491,22655467:196762 +k1,4063:29778088,22655467:196762 +k1,4064:32583029,22655467:0 +) +(1,4064:6764466,23520547:25818563,513147,126483 +(1,4063:6764466,23520547:0,452978,122846 +r1,4117:10991562,23520547:4227096,575824,122846 +k1,4063:6764466,23520547:-4227096 +) +(1,4063:6764466,23520547:4227096,452978,122846 +k1,4063:6764466,23520547:3277 +h1,4063:10988285,23520547:0,411205,112570 +) +k1,4063:11151975,23520547:160413 +k1,4063:11843886,23520547:160414 +k1,4063:12360159,23520547:160413 +k1,4063:15997258,23520547:160414 +k1,4063:18853167,23520547:160413 +k1,4063:19961231,23520547:160413 +k1,4063:21507731,23520547:160414 +(1,4063:21507731,23520547:0,452978,115847 +r1,4117:23624556,23520547:2116825,568825,115847 +k1,4063:21507731,23520547:-2116825 +) +(1,4063:21507731,23520547:2116825,452978,115847 +k1,4063:21507731,23520547:3277 +h1,4063:23621279,23520547:0,411205,112570 +) +k1,4063:23784969,23520547:160413 +k1,4063:25212849,23520547:160414 +k1,4063:26759348,23520547:160413 +(1,4063:26759348,23520547:0,452978,122846 +r1,4117:29227885,23520547:2468537,575824,122846 +k1,4063:26759348,23520547:-2468537 +) +(1,4063:26759348,23520547:2468537,452978,122846 +k1,4063:26759348,23520547:3277 +h1,4063:29224608,23520547:0,411205,112570 +) +k1,4063:29561969,23520547:160414 +k1,4063:31189078,23520547:160413 +k1,4063:32583029,23520547:0 +) +(1,4064:6764466,24385627:25818563,505283,115847 +g1,4063:8746274,24385627 +(1,4063:8746274,24385627:0,452978,115847 +r1,4117:11214811,24385627:2468537,568825,115847 +k1,4063:8746274,24385627:-2468537 +) +(1,4063:8746274,24385627:2468537,452978,115847 +k1,4063:8746274,24385627:3277 +h1,4063:11211534,24385627:0,411205,112570 +) +k1,4064:32583029,24385627:21194548 +g1,4064:32583029,24385627 +) +(1,4066:6764466,25250707:25818563,505283,126483 +h1,4065:6764466,25250707:983040,0,0 +k1,4065:10849698,25250707:219919 +k1,4065:12088703,25250707:219920 +k1,4065:14319267,25250707:219919 +k1,4065:17317913,25250707:219919 +k1,4065:18299361,25250707:219920 +(1,4065:18299361,25250707:0,452978,115847 +r1,4117:20767898,25250707:2468537,568825,115847 +k1,4065:18299361,25250707:-2468537 +) +(1,4065:18299361,25250707:2468537,452978,115847 +k1,4065:18299361,25250707:3277 +h1,4065:20764621,25250707:0,411205,112570 +) +k1,4065:20987817,25250707:219919 +k1,4065:22399182,25250707:219920 +(1,4065:22399182,25250707:0,452978,122846 +r1,4117:26626278,25250707:4227096,575824,122846 +k1,4065:22399182,25250707:-4227096 +) +(1,4065:22399182,25250707:4227096,452978,122846 +k1,4065:22399182,25250707:3277 +h1,4065:26623001,25250707:0,411205,112570 +) +k1,4065:26846197,25250707:219919 +k1,4065:28764154,25250707:219919 +k1,4065:31355822,25250707:219920 +k1,4065:32227169,25250707:219919 +k1,4065:32583029,25250707:0 +) +(1,4066:6764466,26115787:25818563,513147,134348 +k1,4065:9372314,26115787:175807 +k1,4065:11236329,26115787:175808 +k1,4065:14071587,26115787:175807 +k1,4065:15740960,26115787:175807 +k1,4065:16602929,26115787:175807 +(1,4065:16602929,26115787:0,435480,115847 +r1,4117:18368042,26115787:1765113,551327,115847 +k1,4065:16602929,26115787:-1765113 +) +(1,4065:16602929,26115787:1765113,435480,115847 +k1,4065:16602929,26115787:3277 +h1,4065:18364765,26115787:0,411205,112570 +) +k1,4065:18717520,26115787:175808 +k1,4065:20837125,26115787:175807 +k1,4065:21960583,26115787:175807 +k1,4065:23155476,26115787:175808 +k1,4065:25878012,26115787:175807 +k1,4065:26713111,26115787:175807 +k1,4065:29073233,26115787:175807 +k1,4065:30440486,26115787:175808 +k1,4065:31563944,26115787:175807 +k1,4065:32583029,26115787:0 +) +(1,4066:6764466,26980867:25818563,513147,134348 +g1,4065:8470368,26980867 +g1,4065:9861042,26980867 +g1,4065:11396550,26980867 +g1,4065:12255071,26980867 +g1,4065:13473385,26980867 +g1,4065:16451341,26980867 +k1,4066:32583029,26980867:13668190 +g1,4066:32583029,26980867 +) +] +g1,4066:32583029,27115215 +) +h1,4066:6630773,27115215:0,0,0 +v1,4069:6630773,27980295:0,393216,0 +(1,4113:6630773,41552776:25952256,13965697,0 +g1,4113:6630773,41552776 +g1,4113:6237557,41552776 +r1,4117:6368629,41552776:131072,13965697,0 +g1,4113:6567858,41552776 +g1,4113:6764466,41552776 +[1,4113:6764466,41552776:25818563,13965697,0 +(1,4070:6764466,28288593:25818563,701514,196608 +(1,4069:6764466,28288593:0,701514,196608 +r1,4117:8010564,28288593:1246098,898122,196608 +k1,4069:6764466,28288593:-1246098 +) +(1,4069:6764466,28288593:1246098,701514,196608 +) +k1,4069:8231872,28288593:221308 +k1,4069:8559552,28288593:327680 +k1,4069:10572614,28288593:221308 +k1,4069:14774578,28288593:221307 +k1,4069:16014971,28288593:221308 +k1,4069:19422639,28288593:221308 +k1,4069:22279150,28288593:221308 +k1,4069:23519543,28288593:221308 +k1,4069:25754117,28288593:221308 +k1,4069:26634716,28288593:221307 +k1,4069:27211884,28288593:221308 +(1,4069:27211884,28288593:0,452978,115847 +r1,4117:30383844,28288593:3171960,568825,115847 +k1,4069:27211884,28288593:-3171960 +) +(1,4069:27211884,28288593:3171960,452978,115847 +k1,4069:27211884,28288593:3277 +h1,4069:30380567,28288593:0,411205,112570 +) +k1,4069:30605152,28288593:221308 +k1,4069:32583029,28288593:0 +) +(1,4070:6764466,29153673:25818563,513147,134348 +k1,4069:8144054,29153673:188143 +k1,4069:9351282,29153673:188143 +k1,4069:12025205,29153673:188142 +k1,4069:12872640,29153673:188143 +k1,4069:16365764,29153673:188143 +k1,4069:20037801,29153673:188143 +k1,4069:21677566,29153673:188143 +k1,4069:24489115,29153673:188143 +k1,4069:27143377,29153673:188142 +k1,4069:29341509,29153673:188143 +k1,4069:29885512,29153673:188143 +k1,4069:32051532,29153673:188143 +k1,4069:32583029,29153673:0 +) +(1,4070:6764466,30018753:25818563,505283,7863 +g1,4069:9630355,30018753 +g1,4069:9630355,30018753 +k1,4070:32583029,30018753:22952674 +g1,4070:32583029,30018753 +) +v1,4072:6764466,30703608:0,393216,0 +(1,4111:6764466,41356168:25818563,11045776,196608 +g1,4111:6764466,41356168 +g1,4111:6764466,41356168 +g1,4111:6567858,41356168 +(1,4111:6567858,41356168:0,11045776,196608 +r1,4117:32779637,41356168:26211779,11242384,196608 +k1,4111:6567857,41356168:-26211780 +) +(1,4111:6567858,41356168:26211779,11045776,196608 +[1,4111:6764466,41356168:25818563,10849168,0 +(1,4074:6764466,30931439:25818563,424439,86428 +(1,4073:6764466,30931439:0,0,0 +g1,4073:6764466,30931439 +g1,4073:6764466,30931439 +g1,4073:6436786,30931439 +(1,4073:6436786,30931439:0,0,0 +) +g1,4073:6764466,30931439 +) +g1,4074:8424236,30931439 +g1,4074:9420098,30931439 +g1,4074:11743776,30931439 +g1,4074:13403546,30931439 +h1,4074:14731362,30931439:0,0,0 +k1,4074:32583030,30931439:17851668 +g1,4074:32583030,30931439 +) +(1,4075:6764466,31616294:25818563,424439,112852 +h1,4075:6764466,31616294:0,0,0 +k1,4075:6764466,31616294:0 +h1,4075:10747914,31616294:0,0,0 +k1,4075:32583030,31616294:21835116 +g1,4075:32583030,31616294 +) +(1,4079:6764466,32432221:25818563,424439,79822 +(1,4077:6764466,32432221:0,0,0 +g1,4077:6764466,32432221 +g1,4077:6764466,32432221 +g1,4077:6436786,32432221 +(1,4077:6436786,32432221:0,0,0 +) +g1,4077:6764466,32432221 +) +g1,4079:7760328,32432221 +g1,4079:9088144,32432221 +h1,4079:9420098,32432221:0,0,0 +k1,4079:32583030,32432221:23162932 +g1,4079:32583030,32432221 +) +(1,4081:6764466,33248148:25818563,424439,9908 +(1,4080:6764466,33248148:0,0,0 +g1,4080:6764466,33248148 +g1,4080:6764466,33248148 +g1,4080:6436786,33248148 +(1,4080:6436786,33248148:0,0,0 +) +g1,4080:6764466,33248148 +) +g1,4081:8424236,33248148 +g1,4081:9420098,33248148 +h1,4081:11743776,33248148:0,0,0 +k1,4081:32583028,33248148:20839252 +g1,4081:32583028,33248148 +) +(1,4082:6764466,33933003:25818563,424439,112852 +h1,4082:6764466,33933003:0,0,0 +k1,4082:6764466,33933003:0 +h1,4082:10747914,33933003:0,0,0 +k1,4082:32583030,33933003:21835116 +g1,4082:32583030,33933003 +) +(1,4086:6764466,34748930:25818563,424439,79822 +(1,4084:6764466,34748930:0,0,0 +g1,4084:6764466,34748930 +g1,4084:6764466,34748930 +g1,4084:6436786,34748930 +(1,4084:6436786,34748930:0,0,0 +) +g1,4084:6764466,34748930 +) +g1,4086:7760328,34748930 +g1,4086:9088144,34748930 +h1,4086:9420098,34748930:0,0,0 +k1,4086:32583030,34748930:23162932 +g1,4086:32583030,34748930 +) +(1,4088:6764466,35564857:25818563,424439,79822 +(1,4087:6764466,35564857:0,0,0 +g1,4087:6764466,35564857 +g1,4087:6764466,35564857 +g1,4087:6436786,35564857 +(1,4087:6436786,35564857:0,0,0 +) +g1,4087:6764466,35564857 +) +k1,4088:6764466,35564857:0 +h1,4088:12075729,35564857:0,0,0 +k1,4088:32583029,35564857:20507300 +g1,4088:32583029,35564857 +) +(1,4092:6764466,36380784:25818563,424439,79822 +(1,4090:6764466,36380784:0,0,0 +g1,4090:6764466,36380784 +g1,4090:6764466,36380784 +g1,4090:6436786,36380784 +(1,4090:6436786,36380784:0,0,0 +) +g1,4090:6764466,36380784 +) +g1,4092:7760328,36380784 +g1,4092:9088144,36380784 +g1,4092:9752052,36380784 +g1,4092:10415960,36380784 +h1,4092:10747914,36380784:0,0,0 +k1,4092:32583030,36380784:21835116 +g1,4092:32583030,36380784 +) +(1,4094:6764466,37196711:25818563,424439,79822 +(1,4093:6764466,37196711:0,0,0 +g1,4093:6764466,37196711 +g1,4093:6764466,37196711 +g1,4093:6436786,37196711 +(1,4093:6436786,37196711:0,0,0 +) +g1,4093:6764466,37196711 +) +k1,4094:6764466,37196711:0 +h1,4094:12075729,37196711:0,0,0 +k1,4094:32583029,37196711:20507300 +g1,4094:32583029,37196711 +) +(1,4098:6764466,38012638:25818563,424439,79822 +(1,4096:6764466,38012638:0,0,0 +g1,4096:6764466,38012638 +g1,4096:6764466,38012638 +g1,4096:6436786,38012638 +(1,4096:6436786,38012638:0,0,0 +) +g1,4096:6764466,38012638 +) +g1,4098:7760328,38012638 +g1,4098:9088144,38012638 +h1,4098:10747914,38012638:0,0,0 +k1,4098:32583030,38012638:21835116 +g1,4098:32583030,38012638 +) +(1,4100:6764466,38828565:25818563,424439,112852 +(1,4099:6764466,38828565:0,0,0 +g1,4099:6764466,38828565 +g1,4099:6764466,38828565 +g1,4099:6436786,38828565 +(1,4099:6436786,38828565:0,0,0 +) +g1,4099:6764466,38828565 +) +k1,4100:6764466,38828565:0 +h1,4100:12075729,38828565:0,0,0 +k1,4100:32583029,38828565:20507300 +g1,4100:32583029,38828565 +) +(1,4104:6764466,39644492:25818563,424439,79822 +(1,4102:6764466,39644492:0,0,0 +g1,4102:6764466,39644492 +g1,4102:6764466,39644492 +g1,4102:6436786,39644492 +(1,4102:6436786,39644492:0,0,0 +) +g1,4102:6764466,39644492 +) +g1,4104:7760328,39644492 +g1,4104:9088144,39644492 +g1,4104:9752052,39644492 +g1,4104:10415960,39644492 +h1,4104:10747914,39644492:0,0,0 +k1,4104:32583030,39644492:21835116 +g1,4104:32583030,39644492 +) +(1,4106:6764466,40460419:25818563,424439,112852 +(1,4105:6764466,40460419:0,0,0 +g1,4105:6764466,40460419 +g1,4105:6764466,40460419 +g1,4105:6436786,40460419 +(1,4105:6436786,40460419:0,0,0 +) +g1,4105:6764466,40460419 +) +k1,4106:6764466,40460419:0 +h1,4106:12075729,40460419:0,0,0 +k1,4106:32583029,40460419:20507300 +g1,4106:32583029,40460419 +) +(1,4110:6764466,41276346:25818563,424439,79822 +(1,4108:6764466,41276346:0,0,0 +g1,4108:6764466,41276346 +g1,4108:6764466,41276346 +g1,4108:6436786,41276346 +(1,4108:6436786,41276346:0,0,0 +) +g1,4108:6764466,41276346 +) +g1,4110:7760328,41276346 +g1,4110:9088144,41276346 +h1,4110:10084006,41276346:0,0,0 +k1,4110:32583030,41276346:22499024 +g1,4110:32583030,41276346 +) +] +) +g1,4111:32583029,41356168 +g1,4111:6764466,41356168 +g1,4111:6764466,41356168 +g1,4111:32583029,41356168 +g1,4111:32583029,41356168 +) +h1,4111:6764466,41552776:0,0,0 +] +g1,4113:32583029,41552776 +) +h1,4113:6630773,41552776:0,0,0 +(1,4117:6630773,42417856:25952256,513147,11795 +h1,4116:6630773,42417856:983040,0,0 +k1,4116:9651863,42417856:221392 +k1,4116:12899053,42417856:221393 +k1,4116:15693388,42417856:221392 +k1,4116:16566208,42417856:221392 +k1,4116:17806686,42417856:221393 +k1,4116:22105073,42417856:221392 +k1,4116:22985758,42417856:221393 +k1,4116:26023232,42417856:221392 +k1,4116:27436069,42417856:221392 +k1,4116:29359432,42417856:221393 +k1,4116:31591469,42417856:221392 +k1,4117:32583029,42417856:0 +) +(1,4117:6630773,43282936:25952256,513147,134348 +(1,4116:6630773,43282936:0,459977,115847 +r1,4117:9451022,43282936:2820249,575824,115847 +k1,4116:6630773,43282936:-2820249 +) +(1,4116:6630773,43282936:2820249,459977,115847 +k1,4116:6630773,43282936:3277 +h1,4116:9447745,43282936:0,411205,112570 +) +k1,4116:9914115,43282936:289423 +k1,4116:11394982,43282936:289422 +(1,4116:11394982,43282936:0,459977,115847 +r1,4117:14566942,43282936:3171960,575824,115847 +k1,4116:11394982,43282936:-3171960 +) +(1,4116:11394982,43282936:3171960,459977,115847 +k1,4116:11394982,43282936:3277 +h1,4116:14563665,43282936:0,411205,112570 +) +k1,4116:15030035,43282936:289423 +k1,4116:16700301,43282936:289422 +k1,4116:17521221,43282936:289423 +k1,4116:21258492,43282936:289422 +k1,4116:24858794,43282936:289423 +k1,4116:27015992,43282936:289422 +k1,4116:29536916,43282936:289423 +k1,4116:32583029,43282936:0 +) +(1,4117:6630773,44148016:25952256,513147,134348 +k1,4116:8809505,44148016:304402 +k1,4116:10286346,44148016:304402 +k1,4116:13616545,44148016:304402 +k1,4116:15931592,44148016:304402 +(1,4116:15931592,44148016:0,452978,115847 +r1,4117:19103552,44148016:3171960,568825,115847 +k1,4116:15931592,44148016:-3171960 +) +(1,4116:15931592,44148016:3171960,452978,115847 +k1,4116:15931592,44148016:3277 +h1,4116:19100275,44148016:0,411205,112570 +) +k1,4116:19407954,44148016:304402 +k1,4116:22082137,44148016:304401 +k1,4116:24713722,44148016:304402 +k1,4116:25685280,44148016:304402 +(1,4116:25685280,44148016:0,452978,115847 +r1,4117:28153817,44148016:2468537,568825,115847 +k1,4116:25685280,44148016:-2468537 +) +(1,4116:25685280,44148016:2468537,452978,115847 +k1,4116:25685280,44148016:3277 +h1,4116:28150540,44148016:0,411205,112570 +) +k1,4116:28458219,44148016:304402 +k1,4116:29445506,44148016:304402 +k1,4116:31451878,44148016:304402 +k1,4117:32583029,44148016:0 +) +(1,4117:6630773,45013096:25952256,513147,126483 +k1,4116:8212863,45013096:315934 +k1,4116:9720242,45013096:315934 +k1,4116:11027736,45013096:315934 +k1,4116:13320890,45013096:315933 +k1,4116:14584475,45013096:315934 +k1,4116:17250530,45013096:315934 +k1,4116:19898890,45013096:315934 +k1,4116:21486222,45013096:315934 +k1,4116:23570973,45013096:315934 +k1,4116:25567250,45013096:315934 +k1,4116:26542475,45013096:315933 +k1,4116:28555136,45013096:315934 +k1,4116:31896867,45013096:315934 +k1,4116:32583029,45013096:0 +) +] +(1,4117:32583029,45706769:0,0,0 +g1,4117:32583029,45706769 +) +) +] +(1,4117:6630773,47279633:25952256,0,0 +h1,4117:6630773,47279633:25952256,0,0 +) +] +(1,4117:4262630,4025873:0,0,0 +[1,4117:-473656,4025873:0,0,0 +(1,4117:-473656,-710413:0,0,0 +(1,4117:-473656,-710413:0,0,0 +g1,4117:-473656,-710413 +) +g1,4117:-473656,-710413 +) +] +) +] +!27092 +}75 +Input:705:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:706:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:707:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:708:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:709:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:710:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:711:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:712:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:713:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:714:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:715:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:716:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:717:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:718:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:719:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:720:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:721:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:722:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:723:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:724:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:725:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:726:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!2057 +{76 +[1,4186:4262630,47279633:28320399,43253760,0 +(1,4186:4262630,4025873:0,0,0 +[1,4186:-473656,4025873:0,0,0 +(1,4186:-473656,-710413:0,0,0 +(1,4186:-473656,-644877:0,0,0 +k1,4186:-473656,-644877:-65536 +) +(1,4186:-473656,4736287:0,0,0 +k1,4186:-473656,4736287:5209943 ) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 +g1,4186:-473656,-710413 ) ] ) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,5004:37855564,2439708:1179648,16384,0 +[1,4186:6630773,47279633:25952256,43253760,0 +[1,4186:6630773,4812305:25952256,786432,0 +(1,4186:6630773,4812305:25952256,505283,126483 +(1,4186:6630773,4812305:25952256,505283,126483 +g1,4186:3078558,4812305 +[1,4186:3078558,4812305:0,0,0 +(1,4186:3078558,2439708:0,1703936,0 +k1,4186:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,4186:2537886,2439708:1179648,16384,0 ) +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,4186:3078558,1915420:16384,1179648,0 ) -k1,5004:3078556,2439708:-34777008 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) ] -[1,5004:3078558,4812305:0,0,0 -(1,5004:3078558,49800853:0,16384,2228224 -k1,5004:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,5004:2537886,49800853:1179648,16384,0 ) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,5004:3078558,51504789:16384,1179648,0 ) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 ) ] +[1,4186:3078558,4812305:0,0,0 +(1,4186:3078558,2439708:0,1703936,0 +g1,4186:29030814,2439708 +g1,4186:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,4186:36151628,1915420:16384,1179648,0 ) -) +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) ] -[1,5004:3078558,4812305:0,0,0 -(1,5004:3078558,49800853:0,16384,2228224 -g1,5004:29030814,49800853 -g1,5004:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,5004:36151628,51504789:16384,1179648,0 ) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,4186:37855564,2439708:1179648,16384,0 +) +) +k1,4186:3078556,2439708:-34777008 ) ] +[1,4186:3078558,4812305:0,0,0 +(1,4186:3078558,49800853:0,16384,2228224 +k1,4186:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,4186:2537886,49800853:1179648,16384,0 ) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,5004:37855564,49800853:1179648,16384,0 +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,4186:3078558,51504789:16384,1179648,0 +) +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 +) +] ) ) -k1,5004:3078556,49800853:-34777008 ) ] -g1,5004:6630773,4812305 -k1,5004:22348274,4812305:14920583 -g1,5004:23970945,4812305 -g1,5004:24793421,4812305 -g1,5004:27528893,4812305 -g1,5004:28938572,4812305 +[1,4186:3078558,4812305:0,0,0 +(1,4186:3078558,49800853:0,16384,2228224 +g1,4186:29030814,49800853 +g1,4186:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,4186:36151628,51504789:16384,1179648,0 ) +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 +) +] +) +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,4186:37855564,49800853:1179648,16384,0 ) -] -[1,5004:6630773,45706769:25952256,40108032,0 -(1,5004:6630773,45706769:25952256,40108032,0 -(1,5004:6630773,45706769:0,0,0 -g1,5004:6630773,45706769 ) -[1,5004:6630773,45706769:25952256,40108032,0 -v1,4929:6630773,6254097:0,393216,0 -(1,4929:6630773,16729019:25952256,10868138,0 -g1,4929:6630773,16729019 -g1,4929:6303093,16729019 -r1,5004:6401397,16729019:98304,10868138,0 -g1,4929:6600626,16729019 -g1,4929:6797234,16729019 -[1,4929:6797234,16729019:25785795,10868138,0 -v1,4902:6797234,6254097:0,393216,0 -(1,4906:6797234,6562902:25785795,702021,196608 -g1,4906:6797234,6562902 -g1,4906:6797234,6562902 -g1,4906:6600626,6562902 -(1,4906:6600626,6562902:0,702021,196608 -r1,5004:32779637,6562902:26179011,898629,196608 -k1,4906:6600625,6562902:-26179012 -) -(1,4906:6600626,6562902:26179011,702021,196608 -[1,4906:6797234,6562902:25785795,505413,0 -(1,4904:6797234,6461715:25785795,404226,101187 -(1,4903:6797234,6461715:0,0,0 -g1,4903:6797234,6461715 -g1,4903:6797234,6461715 -g1,4903:6469554,6461715 -(1,4903:6469554,6461715:0,0,0 -) -g1,4903:6797234,6461715 -) -k1,4904:6797234,6461715:0 -h1,4904:10590982,6461715:0,0,0 -k1,4904:32583030,6461715:21992048 -g1,4904:32583030,6461715 -) -] -) -g1,4906:32583029,6562902 -g1,4906:6797234,6562902 -g1,4906:6797234,6562902 -g1,4906:32583029,6562902 -g1,4906:32583029,6562902 -) -h1,4906:6797234,6759510:0,0,0 -(1,4910:6797234,8125286:25785795,513147,134348 -h1,4909:6797234,8125286:983040,0,0 -k1,4909:9812747,8125286:257758 -k1,4909:11240978,8125286:257758 -k1,4909:12490296,8125286:257758 -k1,4909:15125045,8125286:257758 -k1,4909:15995565,8125286:257758 -k1,4909:17272408,8125286:257758 -k1,4909:18918219,8125286:257758 -k1,4909:20847800,8125286:257758 -k1,4909:22391374,8125286:257758 -k1,4909:25380017,8125286:257758 -k1,4909:26656860,8125286:257758 -k1,4909:29180198,8125286:257758 -k1,4909:31923737,8125286:257758 -k1,4909:32583029,8125286:0 -) -(1,4910:6797234,8966774:25785795,505283,7863 -g1,4909:9709654,8966774 -g1,4909:11100328,8966774 -k1,4910:32583028,8966774:19774832 -g1,4910:32583028,8966774 -) -v1,4912:6797234,10157240:0,393216,0 -(1,4916:6797234,10440879:25785795,676855,196608 -g1,4916:6797234,10440879 -g1,4916:6797234,10440879 -g1,4916:6600626,10440879 -(1,4916:6600626,10440879:0,676855,196608 -r1,5004:32779637,10440879:26179011,873463,196608 -k1,4916:6600625,10440879:-26179012 -) -(1,4916:6600626,10440879:26179011,676855,196608 -[1,4916:6797234,10440879:25785795,480247,0 -(1,4914:6797234,10364858:25785795,404226,76021 -(1,4913:6797234,10364858:0,0,0 -g1,4913:6797234,10364858 -g1,4913:6797234,10364858 -g1,4913:6469554,10364858 -(1,4913:6469554,10364858:0,0,0 -) -g1,4913:6797234,10364858 -) -k1,4914:6797234,10364858:0 -h1,4914:10590983,10364858:0,0,0 -k1,4914:32583029,10364858:21992046 -g1,4914:32583029,10364858 -) -] -) -g1,4916:32583029,10440879 -g1,4916:6797234,10440879 -g1,4916:6797234,10440879 -g1,4916:32583029,10440879 -g1,4916:32583029,10440879 -) -h1,4916:6797234,10637487:0,0,0 -(1,4920:6797234,12003263:25785795,513147,134348 -h1,4919:6797234,12003263:983040,0,0 -k1,4919:9330150,12003263:226704 -k1,4919:10208282,12003263:226704 -k1,4919:11923309,12003263:226704 -k1,4919:14375616,12003263:226704 -k1,4919:14958180,12003263:226704 -k1,4919:16955011,12003263:226704 -k1,4919:17841008,12003263:226705 -k1,4919:19398093,12003263:226704 -k1,4919:20276225,12003263:226704 -k1,4919:23324909,12003263:226704 -k1,4919:25158556,12003263:226704 -k1,4919:26576705,12003263:226704 -k1,4919:29373731,12003263:226704 -k1,4919:32583029,12003263:0 -) -(1,4920:6797234,12844751:25785795,505283,134348 -k1,4919:8183018,12844751:267740 -k1,4919:9469842,12844751:267739 -k1,4919:11233769,12844751:267740 -k1,4919:13369940,12844751:267740 -k1,4919:14829124,12844751:267739 -k1,4919:16812597,12844751:267740 -k1,4919:18461181,12844751:267740 -k1,4919:19899394,12844751:267740 -k1,4919:23831906,12844751:267739 -k1,4919:25985117,12844751:267740 -k1,4919:28929347,12844751:267740 -k1,4919:29728583,12844751:267739 -k1,4919:31734338,12844751:267740 -k1,4920:32583029,12844751:0 -) -(1,4920:6797234,13686239:25785795,513147,134348 -k1,4919:9309765,13686239:210251 -k1,4919:11561463,13686239:210252 -k1,4919:14827002,13686239:210251 -k1,4919:16056338,13686239:210251 -k1,4919:19626620,13686239:210251 -k1,4919:22266947,13686239:210252 -k1,4919:22935295,13686239:210251 -k1,4919:24336991,13686239:210251 -k1,4919:26816098,13686239:210251 -k1,4919:28574966,13686239:210252 -k1,4919:29804302,13686239:210251 -k1,4919:32583029,13686239:0 -) -(1,4920:6797234,14527727:25785795,513147,126483 -k1,4919:8646005,14527727:168428 -k1,4919:9946894,14527727:168427 -k1,4919:11036758,14527727:168428 -k1,4919:14940082,14527727:168427 -k1,4919:17868886,14527727:168428 -k1,4919:19496144,14527727:168427 -k1,4919:23117664,14527727:168428 -k1,4919:23937519,14527727:168427 -k1,4919:25125032,14527727:168428 -k1,4919:26973802,14527727:168427 -k1,4919:29630632,14527727:168428 -k1,4920:32583029,14527727:0 -k1,4920:32583029,14527727:0 -) -v1,4922:6797234,15718193:0,393216,0 -(1,4926:6797234,16008123:25785795,683146,196608 -g1,4926:6797234,16008123 -g1,4926:6797234,16008123 -g1,4926:6600626,16008123 -(1,4926:6600626,16008123:0,683146,196608 -r1,5004:32779637,16008123:26179011,879754,196608 -k1,4926:6600625,16008123:-26179012 -) -(1,4926:6600626,16008123:26179011,683146,196608 -[1,4926:6797234,16008123:25785795,486538,0 -(1,4924:6797234,15925811:25785795,404226,82312 -(1,4923:6797234,15925811:0,0,0 -g1,4923:6797234,15925811 -g1,4923:6797234,15925811 -g1,4923:6469554,15925811 -(1,4923:6469554,15925811:0,0,0 -) -g1,4923:6797234,15925811 -) -k1,4924:6797234,15925811:0 -g1,4924:10907129,15925811 -g1,4924:12487858,15925811 -g1,4924:13120150,15925811 -h1,4924:13752442,15925811:0,0,0 -k1,4924:32583030,15925811:18830588 -g1,4924:32583030,15925811 -) -] -) -g1,4926:32583029,16008123 -g1,4926:6797234,16008123 -g1,4926:6797234,16008123 -g1,4926:32583029,16008123 -g1,4926:32583029,16008123 -) -h1,4926:6797234,16204731:0,0,0 -] -g1,4929:32583029,16729019 -) -h1,4929:6630773,16729019:0,0,0 -(1,4932:6630773,18094795:25952256,513147,134348 -h1,4931:6630773,18094795:983040,0,0 -k1,4931:11781575,18094795:175964 -k1,4931:12616831,18094795:175964 -k1,4931:15526302,18094795:175964 -k1,4931:16893711,18094795:175964 -k1,4931:19049518,18094795:175964 -k1,4931:19756979,18094795:175964 -k1,4931:23213675,18094795:175964 -k1,4931:24783590,18094795:175964 -k1,4931:26244060,18094795:175964 -k1,4931:27933250,18094795:175964 -k1,4931:29056865,18094795:175964 -k1,4931:31714677,18094795:175964 -k1,4931:32583029,18094795:0 -) -(1,4932:6630773,18936283:25952256,513147,134348 -k1,4931:8169278,18936283:162904 -k1,4931:9862447,18936283:162903 -k1,4931:10676779,18936283:162904 -k1,4931:12992541,18936283:162904 -k1,4931:13926147,18936283:162903 -k1,4931:16828456,18936283:162904 -k1,4931:19142906,18936283:162903 -k1,4931:19988695,18936283:162904 -k1,4931:21764440,18936283:162904 -k1,4931:22283203,18936283:162903 -k1,4931:24214924,18936283:162904 -k1,4931:26339321,18936283:162904 -k1,4931:27449875,18936283:162903 -k1,4931:29064401,18936283:162904 -k1,4931:32583029,18936283:0 -) -(1,4932:6630773,19777771:25952256,513147,134348 -k1,4931:7360617,19777771:242256 -k1,4931:9690238,19777771:242299 -k1,4931:11033542,19777771:242299 -k1,4931:12448280,19777771:242299 -k1,4931:16539507,19777771:242298 -k1,4931:17506634,19777771:242299 -k1,4931:18400361,19777771:242299 -k1,4931:20673621,19777771:242299 -k1,4931:21686623,19777771:242299 -k1,4931:24467787,19777771:242299 -k1,4931:25392971,19777771:242299 -k1,4931:27527950,19777771:242299 -k1,4931:28429541,19777771:242299 -k1,4931:31714677,19777771:242299 -k1,4931:32583029,19777771:0 -) -(1,4932:6630773,20619259:25952256,513147,102891 -g1,4931:7922487,20619259 -g1,4931:9294155,20619259 -g1,4931:11916250,20619259 -g1,4931:13312166,20619259 -g1,4931:14817528,20619259 -g1,4931:16765913,20619259 -g1,4931:18645485,20619259 -g1,4931:20995606,20619259 -g1,4931:22902703,20619259 -g1,4931:24293377,20619259 -g1,4931:25511691,20619259 -g1,4931:27952251,20619259 -g1,4931:29481861,20619259 -k1,4932:32583029,20619259:214307 -g1,4932:32583029,20619259 -) -v1,4934:6630773,21809725:0,393216,0 -(1,4953:6630773,28744326:25952256,7327817,196608 -g1,4953:6630773,28744326 -g1,4953:6630773,28744326 -g1,4953:6434165,28744326 -(1,4953:6434165,28744326:0,7327817,196608 -r1,5004:32779637,28744326:26345472,7524425,196608 -k1,4953:6434165,28744326:-26345472 -) -(1,4953:6434165,28744326:26345472,7327817,196608 -[1,4953:6630773,28744326:25952256,7131209,0 -(1,4936:6630773,22017343:25952256,404226,82312 -(1,4935:6630773,22017343:0,0,0 -g1,4935:6630773,22017343 -g1,4935:6630773,22017343 -g1,4935:6303093,22017343 -(1,4935:6303093,22017343:0,0,0 -) -g1,4935:6630773,22017343 -) -g1,4936:8211502,22017343 -g1,4936:9159940,22017343 -g1,4936:13269835,22017343 -g1,4936:14850564,22017343 -g1,4936:15482856,22017343 -h1,4936:16115148,22017343:0,0,0 -k1,4936:32583029,22017343:16467881 -g1,4936:32583029,22017343 -) -(1,4937:6630773,22683521:25952256,388497,6290 -h1,4937:6630773,22683521:0,0,0 -h1,4937:7895356,22683521:0,0,0 -k1,4937:32583028,22683521:24687672 -g1,4937:32583028,22683521 -) -(1,4946:6630773,23349699:25952256,404226,82312 -(1,4939:6630773,23349699:0,0,0 -g1,4939:6630773,23349699 -g1,4939:6630773,23349699 -g1,4939:6303093,23349699 -(1,4939:6303093,23349699:0,0,0 -) -g1,4939:6630773,23349699 -) -g1,4946:7579210,23349699 -g1,4946:7895356,23349699 -g1,4946:8211502,23349699 -g1,4946:8527648,23349699 -g1,4946:8843794,23349699 -g1,4946:9159940,23349699 -g1,4946:10740669,23349699 -g1,4946:12321398,23349699 -g1,4946:13902127,23349699 -k1,4946:13902127,23349699:0 -h1,4946:15166710,23349699:0,0,0 -k1,4946:32583030,23349699:17416320 -g1,4946:32583030,23349699 -) -(1,4946:6630773,24015877:25952256,404226,82312 -h1,4946:6630773,24015877:0,0,0 -g1,4946:7579210,24015877 -g1,4946:9159938,24015877 -g1,4946:9476084,24015877 -g1,4946:9792230,24015877 -g1,4946:10108376,24015877 -g1,4946:10740668,24015877 -g1,4946:11056814,24015877 -g1,4946:11372960,24015877 -g1,4946:11689106,24015877 -g1,4946:12321398,24015877 -g1,4946:12637544,24015877 -g1,4946:12953690,24015877 -g1,4946:13902127,24015877 -g1,4946:14218273,24015877 -g1,4946:14534419,24015877 -h1,4946:15166710,24015877:0,0,0 -k1,4946:32583030,24015877:17416320 -g1,4946:32583030,24015877 -) -(1,4946:6630773,24682055:25952256,404226,82312 -h1,4946:6630773,24682055:0,0,0 -g1,4946:7579210,24682055 -g1,4946:9159938,24682055 -g1,4946:9476084,24682055 -g1,4946:9792230,24682055 -g1,4946:10108376,24682055 -g1,4946:10740668,24682055 -g1,4946:11056814,24682055 -g1,4946:11372960,24682055 -g1,4946:11689106,24682055 -g1,4946:12321398,24682055 -g1,4946:12637544,24682055 -g1,4946:12953690,24682055 -g1,4946:13902127,24682055 -g1,4946:14218273,24682055 -g1,4946:14534419,24682055 -h1,4946:15166710,24682055:0,0,0 -k1,4946:32583030,24682055:17416320 -g1,4946:32583030,24682055 -) -(1,4946:6630773,25348233:25952256,404226,82312 -h1,4946:6630773,25348233:0,0,0 -g1,4946:7579210,25348233 -g1,4946:9159938,25348233 -g1,4946:9476084,25348233 -g1,4946:9792230,25348233 -g1,4946:10108376,25348233 -g1,4946:10740668,25348233 -g1,4946:11056814,25348233 -g1,4946:11372960,25348233 -g1,4946:11689106,25348233 -g1,4946:12321398,25348233 -g1,4946:12637544,25348233 -g1,4946:12953690,25348233 -g1,4946:13902127,25348233 -g1,4946:14218273,25348233 -g1,4946:14534419,25348233 -h1,4946:15166710,25348233:0,0,0 -k1,4946:32583030,25348233:17416320 -g1,4946:32583030,25348233 -) -(1,4946:6630773,26014411:25952256,404226,82312 -h1,4946:6630773,26014411:0,0,0 -g1,4946:7579210,26014411 -g1,4946:9159938,26014411 -g1,4946:9476084,26014411 -g1,4946:9792230,26014411 -g1,4946:10108376,26014411 -g1,4946:10740668,26014411 -g1,4946:11056814,26014411 -g1,4946:11372960,26014411 -g1,4946:11689106,26014411 -g1,4946:12321398,26014411 -g1,4946:12637544,26014411 -g1,4946:12953690,26014411 -g1,4946:13902127,26014411 -g1,4946:14218273,26014411 -g1,4946:14534419,26014411 -h1,4946:15166710,26014411:0,0,0 -k1,4946:32583030,26014411:17416320 -g1,4946:32583030,26014411 -) -(1,4946:6630773,26680589:25952256,404226,82312 -h1,4946:6630773,26680589:0,0,0 -g1,4946:7579210,26680589 -g1,4946:9159938,26680589 -g1,4946:9476084,26680589 -g1,4946:9792230,26680589 -g1,4946:10108376,26680589 -g1,4946:10740668,26680589 -g1,4946:11056814,26680589 -g1,4946:11372960,26680589 -g1,4946:12321397,26680589 -g1,4946:12637543,26680589 -g1,4946:12953689,26680589 -g1,4946:13902126,26680589 -g1,4946:14218272,26680589 -g1,4946:14534418,26680589 -h1,4946:15166709,26680589:0,0,0 -k1,4946:32583029,26680589:17416320 -g1,4946:32583029,26680589 -) -(1,4948:6630773,28002127:25952256,404226,82312 -(1,4947:6630773,28002127:0,0,0 -g1,4947:6630773,28002127 -g1,4947:6630773,28002127 -g1,4947:6303093,28002127 -(1,4947:6303093,28002127:0,0,0 -) -g1,4947:6630773,28002127 -) -k1,4948:6630773,28002127:0 -g1,4948:9159939,28002127 -h1,4948:9792231,28002127:0,0,0 -k1,4948:32583029,28002127:22790798 -g1,4948:32583029,28002127 -) -(1,4952:6630773,28668305:25952256,404226,76021 -(1,4950:6630773,28668305:0,0,0 -g1,4950:6630773,28668305 -g1,4950:6630773,28668305 -g1,4950:6303093,28668305 -(1,4950:6303093,28668305:0,0,0 -) -g1,4950:6630773,28668305 -) -g1,4952:7579210,28668305 -g1,4952:8843793,28668305 -h1,4952:9159939,28668305:0,0,0 -k1,4952:32583029,28668305:23423090 -g1,4952:32583029,28668305 -) -] -) -g1,4953:32583029,28744326 -g1,4953:6630773,28744326 -g1,4953:6630773,28744326 -g1,4953:32583029,28744326 -g1,4953:32583029,28744326 -) -h1,4953:6630773,28940934:0,0,0 -(1,4957:6630773,30306710:25952256,513147,134348 -h1,4956:6630773,30306710:983040,0,0 -k1,4956:10337545,30306710:274652 -k1,4956:13218564,30306710:274652 -k1,4956:14152508,30306710:274652 -k1,4956:15757541,30306710:274652 -k1,4956:18771598,30306710:274652 -k1,4956:19705542,30306710:274652 -k1,4956:22288372,30306710:274652 -k1,4956:24489782,30306710:274652 -k1,4956:25380473,30306710:274653 -k1,4956:26069892,30306710:274576 -k1,4956:27576621,30306710:274652 -k1,4956:30129960,30306710:274652 -h1,4956:31499007,30306710:0,0,0 -k1,4956:31773659,30306710:274652 -k1,4956:32583029,30306710:0 -) -(1,4957:6630773,31148198:25952256,505283,134348 -k1,4956:8360836,31148198:231910 -h1,4956:9157754,31148198:0,0,0 -k1,4956:9770428,31148198:231910 -k1,4956:10955887,31148198:231910 -k1,4956:12320259,31148198:231910 -k1,4956:13882550,31148198:231910 -k1,4956:15878034,31148198:231910 -k1,4956:17129029,31148198:231910 -k1,4956:19014412,31148198:231910 -k1,4956:20832293,31148198:231910 -k1,4956:21680241,31148198:231910 -k1,4956:23084590,31148198:231910 -k1,4956:26991759,31148198:231910 -k1,4956:27875097,31148198:231910 -k1,4956:30310983,31148198:231910 -k1,4956:31734338,31148198:231910 -k1,4957:32583029,31148198:0 -) -(1,4957:6630773,31989686:25952256,513147,134348 -k1,4956:8557313,31989686:263892 -k1,4956:11005519,31989686:263891 -k1,4956:12466098,31989686:263892 -k1,4956:14036122,31989686:263891 -k1,4956:14982899,31989686:263892 -k1,4956:17922625,31989686:263891 -k1,4956:20925922,31989686:263892 -k1,4956:23167690,31989686:263891 -k1,4956:27395199,31989686:263892 -k1,4956:28310518,31989686:263891 -k1,4956:30108608,31989686:263892 -k1,4956:31563944,31989686:263891 -k1,4956:32583029,31989686:0 -) -(1,4957:6630773,32831174:25952256,513147,134348 -k1,4956:9057421,32831174:185317 -k1,4956:10399448,32831174:185317 -k1,4956:11236192,32831174:185316 -k1,4956:14308370,32831174:185317 -k1,4956:15218515,32831174:185317 -k1,4956:15818661,32831174:185303 -k1,4956:17426764,32831174:185316 -k1,4956:17967941,32831174:185317 -k1,4956:21206580,32831174:185317 -k1,4956:24921666,32831174:185317 -k1,4956:26054633,32831174:185316 -k1,4956:29153025,32831174:185317 -k1,4956:31753999,32831174:185317 -k1,4957:32583029,32831174:0 -) -(1,4957:6630773,33672662:25952256,505283,134348 -k1,4956:8933545,33672662:179405 -k1,4956:11421127,33672662:179404 -k1,4956:12592092,33672662:179405 -k1,4956:16361559,33672662:179405 -k1,4956:17227125,33672662:179404 -k1,4956:20134794,33672662:179405 -k1,4956:22478853,33672662:179405 -k1,4956:23435514,33672662:179404 -k1,4956:25128801,33672662:179405 -k1,4956:26499651,33672662:179405 -k1,4956:28843709,33672662:179404 -k1,4956:29800371,33672662:179405 -k1,4956:32583029,33672662:0 -) -(1,4957:6630773,34514150:25952256,505283,126483 -k1,4957:32583028,34514150:21982084 -g1,4957:32583028,34514150 -) -v1,4959:6630773,35704616:0,393216,0 -(1,5004:6630773,43873916:25952256,8562516,196608 -g1,5004:6630773,43873916 -g1,5004:6630773,43873916 -g1,5004:6434165,43873916 -(1,5004:6434165,43873916:0,8562516,196608 -r1,5004:32779637,43873916:26345472,8759124,196608 -k1,5004:6434165,43873916:-26345472 -) -(1,5004:6434165,43873916:26345472,8562516,196608 -[1,5004:6630773,43873916:25952256,8365908,0 -(1,4961:6630773,35912234:25952256,404226,82312 -(1,4960:6630773,35912234:0,0,0 -g1,4960:6630773,35912234 -g1,4960:6630773,35912234 -g1,4960:6303093,35912234 -(1,4960:6303093,35912234:0,0,0 -) -g1,4960:6630773,35912234 -) -k1,4961:6630773,35912234:0 -g1,4961:9159939,35912234 -h1,4961:9476085,35912234:0,0,0 -k1,4961:32583029,35912234:23106944 -g1,4961:32583029,35912234 -) -(1,4965:6630773,36578412:25952256,404226,76021 -(1,4963:6630773,36578412:0,0,0 -g1,4963:6630773,36578412 -g1,4963:6630773,36578412 -g1,4963:6303093,36578412 -(1,4963:6303093,36578412:0,0,0 -) -g1,4963:6630773,36578412 -) -g1,4965:7579210,36578412 -g1,4965:8843793,36578412 -g1,4965:9159939,36578412 -g1,4965:9792231,36578412 -g1,4965:10108377,36578412 -g1,4965:10740669,36578412 -g1,4965:11689106,36578412 -h1,4965:12321397,36578412:0,0,0 -k1,4965:32583029,36578412:20261632 -g1,4965:32583029,36578412 -) -(1,4967:6630773,37899950:25952256,404226,82312 -(1,4966:6630773,37899950:0,0,0 -g1,4966:6630773,37899950 -g1,4966:6630773,37899950 -g1,4966:6303093,37899950 -(1,4966:6303093,37899950:0,0,0 -) -g1,4966:6630773,37899950 -) -g1,4967:8527647,37899950 -g1,4967:9159939,37899950 -h1,4967:9792231,37899950:0,0,0 -k1,4967:32583029,37899950:22790798 -g1,4967:32583029,37899950 -) -(1,4971:6630773,38566128:25952256,404226,76021 -(1,4969:6630773,38566128:0,0,0 -g1,4969:6630773,38566128 -g1,4969:6630773,38566128 -g1,4969:6303093,38566128 -(1,4969:6303093,38566128:0,0,0 -) -g1,4969:6630773,38566128 -) -g1,4971:7579210,38566128 -g1,4971:8843793,38566128 -g1,4971:9476085,38566128 -g1,4971:10108377,38566128 -g1,4971:10740669,38566128 -g1,4971:11372961,38566128 -h1,4971:11689107,38566128:0,0,0 -k1,4971:32583029,38566128:20893922 -g1,4971:32583029,38566128 -) -(1,4973:6630773,39887666:25952256,404226,82312 -(1,4972:6630773,39887666:0,0,0 -g1,4972:6630773,39887666 -g1,4972:6630773,39887666 -g1,4972:6303093,39887666 -(1,4972:6303093,39887666:0,0,0 -) -g1,4972:6630773,39887666 -) -k1,4973:6630773,39887666:0 -g1,4973:9792231,39887666 -k1,4973:9792231,39887666:0 -h1,4973:12005252,39887666:0,0,0 -k1,4973:32583028,39887666:20577776 -g1,4973:32583028,39887666 -) -(1,4979:6630773,40553844:25952256,404226,82312 -(1,4975:6630773,40553844:0,0,0 -g1,4975:6630773,40553844 -g1,4975:6630773,40553844 -g1,4975:6303093,40553844 -(1,4975:6303093,40553844:0,0,0 -) -g1,4975:6630773,40553844 -) -g1,4979:7579210,40553844 -g1,4979:7895356,40553844 -g1,4979:8211502,40553844 -g1,4979:8527648,40553844 -g1,4979:8843794,40553844 -g1,4979:9159940,40553844 -g1,4979:10740669,40553844 -k1,4979:10740669,40553844:0 -h1,4979:12005252,40553844:0,0,0 -k1,4979:32583028,40553844:20577776 -g1,4979:32583028,40553844 -) -(1,4979:6630773,41220022:25952256,404226,82312 -h1,4979:6630773,41220022:0,0,0 -g1,4979:7579210,41220022 -g1,4979:9159938,41220022 -g1,4979:9476084,41220022 -g1,4979:9792230,41220022 -g1,4979:10108376,41220022 -g1,4979:10740668,41220022 -g1,4979:11056814,41220022 -g1,4979:11372960,41220022 -h1,4979:12005251,41220022:0,0,0 -k1,4979:32583029,41220022:20577778 -g1,4979:32583029,41220022 -) -(1,4979:6630773,41886200:25952256,404226,82312 -h1,4979:6630773,41886200:0,0,0 -g1,4979:7579210,41886200 -g1,4979:9159938,41886200 -g1,4979:9476084,41886200 -g1,4979:9792230,41886200 -g1,4979:10108376,41886200 -g1,4979:10740668,41886200 -g1,4979:11056814,41886200 -g1,4979:11372960,41886200 -h1,4979:12005251,41886200:0,0,0 -k1,4979:32583029,41886200:20577778 -g1,4979:32583029,41886200 -) -(1,4981:6630773,43207738:25952256,404226,82312 -(1,4980:6630773,43207738:0,0,0 -g1,4980:6630773,43207738 -g1,4980:6630773,43207738 -g1,4980:6303093,43207738 -(1,4980:6303093,43207738:0,0,0 -) -g1,4980:6630773,43207738 -) -k1,4981:6630773,43207738:0 -g1,4981:9159939,43207738 -g1,4981:10108377,43207738 -g1,4981:11056815,43207738 -h1,4981:11689106,43207738:0,0,0 -k1,4981:32583030,43207738:20893924 -g1,4981:32583030,43207738 -) -(1,4982:6630773,43873916:25952256,388497,6290 -h1,4982:6630773,43873916:0,0,0 -h1,4982:7895356,43873916:0,0,0 -k1,4982:32583028,43873916:24687672 -g1,4982:32583028,43873916 -) -] -) -g1,5004:32583029,43873916 -g1,5004:6630773,43873916 -g1,5004:6630773,43873916 -g1,5004:32583029,43873916 -g1,5004:32583029,43873916 -) -] -(1,5004:32583029,45706769:0,0,0 -g1,5004:32583029,45706769 -) -) -] -(1,5004:6630773,47279633:25952256,0,0 -h1,5004:6630773,47279633:25952256,0,0 -) -] -(1,5004:4262630,4025873:0,0,0 -[1,5004:-473656,4025873:0,0,0 -(1,5004:-473656,-710413:0,0,0 -(1,5004:-473656,-710413:0,0,0 -g1,5004:-473656,-710413 -) -g1,5004:-473656,-710413 -) -] -) -] -!23451 -}89 -Input:765:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!104 -{90 -[1,5104:4262630,47279633:28320399,43253760,0 -(1,5104:4262630,4025873:0,0,0 -[1,5104:-473656,4025873:0,0,0 -(1,5104:-473656,-710413:0,0,0 -(1,5104:-473656,-644877:0,0,0 -k1,5104:-473656,-644877:-65536 +k1,4186:3078556,49800853:-34777008 +) +] +g1,4186:6630773,4812305 +g1,4186:6630773,4812305 +g1,4186:8715473,4812305 +g1,4186:12574232,4812305 +k1,4186:31786112,4812305:19211880 +) +) +] +[1,4186:6630773,45706769:25952256,40108032,0 +(1,4186:6630773,45706769:25952256,40108032,0 +(1,4186:6630773,45706769:0,0,0 +g1,4186:6630773,45706769 +) +[1,4186:6630773,45706769:25952256,40108032,0 +(1,4117:6630773,6254097:25952256,513147,134348 +k1,4116:9874968,6254097:238059 +k1,4116:13589713,6254097:238060 +k1,4116:16853569,6254097:238059 +k1,4116:20092523,6254097:238060 +k1,4116:23709618,6254097:238059 +k1,4116:25139122,6254097:238059 +k1,4116:28020904,6254097:238060 +k1,4116:31391584,6254097:238059 +k1,4116:32583029,6254097:0 +) +(1,4117:6630773,7119177:25952256,505283,134348 +k1,4116:10164539,7119177:142278 +k1,4116:13281497,7119177:142279 +k1,4116:15793557,7119177:142278 +k1,4116:18870538,7119177:142279 +k1,4116:20393004,7119177:142278 +k1,4116:21526843,7119177:142279 +k1,4116:23956328,7119177:142278 +k1,4116:25164878,7119177:142279 +k1,4116:28806123,7119177:142278 +k1,4116:31227089,7119177:142279 +k1,4117:32583029,7119177:0 +) +(1,4117:6630773,7984257:25952256,513147,134348 +k1,4116:9153207,7984257:188697 +k1,4116:12541372,7984257:188697 +k1,4116:13416230,7984257:188696 +k1,4116:14985115,7984257:188697 +k1,4116:16165372,7984257:188697 +k1,4116:17708043,7984257:188697 +k1,4116:19742888,7984257:188696 +k1,4116:21444811,7984257:188697 +k1,4116:22249546,7984257:188697 +k1,4116:22794103,7984257:188697 +k1,4116:24220775,7984257:188697 +k1,4116:25693977,7984257:188696 +k1,4116:28939929,7984257:188697 +k1,4116:30147711,7984257:188697 +k1,4116:32583029,7984257:0 +) +(1,4117:6630773,8849337:25952256,513147,126483 +k1,4116:9830121,8849337:267267 +k1,4116:10756679,8849337:267266 +k1,4116:12043031,8849337:267267 +k1,4116:14018821,8849337:267266 +k1,4116:16470403,8849337:267267 +k1,4116:17691218,8849337:267266 +k1,4116:19619167,8849337:267267 +k1,4116:21284316,8849337:267266 +k1,4116:22570668,8849337:267267 +k1,4116:23930419,8849337:267266 +k1,4116:24864842,8849337:267267 +(1,4116:24864842,8849337:0,459977,115847 +r1,4186:27685091,8849337:2820249,575824,115847 +k1,4116:24864842,8849337:-2820249 +) +(1,4116:24864842,8849337:2820249,459977,115847 +k1,4116:24864842,8849337:3277 +h1,4116:27681814,8849337:0,411205,112570 +) +k1,4116:27952358,8849337:267267 +k1,4116:29411069,8849337:267266 +(1,4116:29411069,8849337:0,459977,115847 +r1,4186:32583029,8849337:3171960,575824,115847 +k1,4116:29411069,8849337:-3171960 +) +(1,4116:29411069,8849337:3171960,459977,115847 +k1,4116:29411069,8849337:3277 +h1,4116:32579752,8849337:0,411205,112570 +) +k1,4116:32583029,8849337:0 +) +(1,4117:6630773,9714417:25952256,513147,126483 +k1,4116:8285946,9714417:261222 +(1,4116:8285946,9714417:0,452978,115847 +r1,4186:10754483,9714417:2468537,568825,115847 +k1,4116:8285946,9714417:-2468537 +) +(1,4116:8285946,9714417:2468537,452978,115847 +k1,4116:8285946,9714417:3277 +h1,4116:10751206,9714417:0,411205,112570 +) +k1,4116:11015705,9714417:261222 +k1,4116:13461243,9714417:261223 +k1,4116:14794634,9714417:261222 +k1,4116:16436044,9714417:261222 +k1,4116:17801548,9714417:261222 +k1,4116:19348587,9714417:261223 +k1,4116:20357575,9714417:261222 +k1,4116:22132023,9714417:261222 +k1,4116:23787196,9714417:261222 +k1,4116:26059063,9714417:261222 +k1,4116:26979578,9714417:261223 +k1,4116:28942770,9714417:261222 +k1,4116:31436804,9714417:261222 +k1,4117:32583029,9714417:0 +) +(1,4117:6630773,10579497:25952256,452978,122846 +(1,4116:6630773,10579497:0,452978,115847 +r1,4186:9802733,10579497:3171960,568825,115847 +k1,4116:6630773,10579497:-3171960 +) +(1,4116:6630773,10579497:3171960,452978,115847 +k1,4116:6630773,10579497:3277 +h1,4116:9799456,10579497:0,411205,112570 +) +g1,4116:10175632,10579497 +(1,4116:10175632,10579497:0,452978,122846 +r1,4186:12644169,10579497:2468537,575824,122846 +k1,4116:10175632,10579497:-2468537 +) +(1,4116:10175632,10579497:2468537,452978,122846 +k1,4116:10175632,10579497:3277 +h1,4116:12640892,10579497:0,411205,112570 +) +g1,4116:13017068,10579497 +k1,4117:32583029,10579497:18454470 +g1,4117:32583029,10579497 +) +(1,4119:6630773,11444577:25952256,513147,134348 +h1,4118:6630773,11444577:983040,0,0 +k1,4118:9674246,11444577:277198 +k1,4118:11686836,11444577:277197 +(1,4118:11686836,11444577:0,459977,115847 +r1,4186:14507085,11444577:2820249,575824,115847 +k1,4118:11686836,11444577:-2820249 +) +(1,4118:11686836,11444577:2820249,459977,115847 +k1,4118:11686836,11444577:3277 +h1,4118:14503808,11444577:0,411205,112570 +) +k1,4118:14957953,11444577:277198 +k1,4118:16254236,11444577:277198 +k1,4118:18711816,11444577:277197 +k1,4118:20502240,11444577:277198 +k1,4118:21430866,11444577:277198 +k1,4118:24003134,11444577:277197 +k1,4118:27096414,11444577:277198 +k1,4118:27905109,11444577:277198 +k1,4118:29116849,11444577:277197 +k1,4118:30155575,11444577:277198 +k1,4118:32583029,11444577:0 +) +(1,4119:6630773,12309657:25952256,513147,134348 +k1,4118:10287285,12309657:253883 +k1,4118:11192597,12309657:253884 +k1,4118:13677981,12309657:253883 +k1,4118:16694207,12309657:253883 +k1,4118:20732795,12309657:253884 +k1,4118:21804567,12309657:253883 +(1,4118:21804567,12309657:0,452978,115847 +r1,4186:24273104,12309657:2468537,568825,115847 +k1,4118:21804567,12309657:-2468537 +) +(1,4118:21804567,12309657:2468537,452978,115847 +k1,4118:21804567,12309657:3277 +h1,4118:24269827,12309657:0,411205,112570 +) +k1,4118:24526987,12309657:253883 +k1,4118:26210866,12309657:253883 +(1,4118:26210866,12309657:0,459977,115847 +r1,4186:29031115,12309657:2820249,575824,115847 +k1,4118:26210866,12309657:-2820249 +) +(1,4118:26210866,12309657:2820249,459977,115847 +k1,4118:26210866,12309657:3277 +h1,4118:29027838,12309657:0,411205,112570 +) +k1,4118:29284999,12309657:253884 +k1,4118:30190310,12309657:253883 +k1,4119:32583029,12309657:0 +) +(1,4119:6630773,13174737:25952256,505283,134348 +(1,4118:6630773,13174737:0,452978,115847 +r1,4186:9099310,13174737:2468537,568825,115847 +k1,4118:6630773,13174737:-2468537 +) +(1,4118:6630773,13174737:2468537,452978,115847 +k1,4118:6630773,13174737:3277 +h1,4118:9096033,13174737:0,411205,112570 +) +g1,4118:9298539,13174737 +g1,4118:11508413,13174737 +g1,4118:12975108,13174737 +(1,4118:12975108,13174737:0,452978,115847 +r1,4186:16147068,13174737:3171960,568825,115847 +k1,4118:12975108,13174737:-3171960 +) +(1,4118:12975108,13174737:3171960,452978,115847 +k1,4118:12975108,13174737:3277 +h1,4118:16143791,13174737:0,411205,112570 +) +g1,4118:16346297,13174737 +g1,4118:18915308,13174737 +g1,4118:19572634,13174737 +g1,4118:22150165,13174737 +g1,4118:23368479,13174737 +g1,4118:25221181,13174737 +k1,4119:32583029,13174737:4775142 +g1,4119:32583029,13174737 +) +v1,4121:6630773,13859592:0,393216,0 +(1,4153:6630773,22195443:25952256,8729067,196608 +g1,4153:6630773,22195443 +g1,4153:6630773,22195443 +g1,4153:6434165,22195443 +(1,4153:6434165,22195443:0,8729067,196608 +r1,4186:32779637,22195443:26345472,8925675,196608 +k1,4153:6434165,22195443:-26345472 +) +(1,4153:6434165,22195443:26345472,8729067,196608 +[1,4153:6630773,22195443:25952256,8532459,0 +(1,4123:6630773,14087423:25952256,424439,86428 +(1,4122:6630773,14087423:0,0,0 +g1,4122:6630773,14087423 +g1,4122:6630773,14087423 +g1,4122:6303093,14087423 +(1,4122:6303093,14087423:0,0,0 +) +g1,4122:6630773,14087423 +) +g1,4123:8290543,14087423 +g1,4123:8954451,14087423 +g1,4123:13933760,14087423 +h1,4123:15261576,14087423:0,0,0 +k1,4123:32583028,14087423:17321452 +g1,4123:32583028,14087423 +) +(1,4124:6630773,14772278:25952256,431045,112852 +h1,4124:6630773,14772278:0,0,0 +g1,4124:10946175,14772278 +g1,4124:11610083,14772278 +g1,4124:13601807,14772278 +k1,4124:13601807,14772278:0 +h1,4124:16257438,14772278:0,0,0 +k1,4124:32583029,14772278:16325591 +g1,4124:32583029,14772278 +) +(1,4128:6630773,15588205:25952256,424439,79822 +(1,4126:6630773,15588205:0,0,0 +g1,4126:6630773,15588205 +g1,4126:6630773,15588205 +g1,4126:6303093,15588205 +(1,4126:6303093,15588205:0,0,0 +) +g1,4126:6630773,15588205 +) +g1,4128:7626635,15588205 +g1,4128:8954451,15588205 +g1,4128:12605944,15588205 +g1,4128:13269852,15588205 +g1,4128:13601806,15588205 +h1,4128:15925484,15588205:0,0,0 +k1,4128:32583029,15588205:16657545 +g1,4128:32583029,15588205 +) +(1,4130:6630773,16404132:25952256,431045,112852 +(1,4129:6630773,16404132:0,0,0 +g1,4129:6630773,16404132 +g1,4129:6630773,16404132 +g1,4129:6303093,16404132 +(1,4129:6303093,16404132:0,0,0 +) +g1,4129:6630773,16404132 +) +k1,4130:6630773,16404132:0 +g1,4130:13269852,16404132 +g1,4130:13933760,16404132 +g1,4130:15925484,16404132 +k1,4130:15925484,16404132:0 +h1,4130:18581115,16404132:0,0,0 +k1,4130:32583029,16404132:14001914 +g1,4130:32583029,16404132 +) +(1,4134:6630773,17220059:25952256,424439,79822 +(1,4132:6630773,17220059:0,0,0 +g1,4132:6630773,17220059 +g1,4132:6630773,17220059 +g1,4132:6303093,17220059 +(1,4132:6303093,17220059:0,0,0 +) +g1,4132:6630773,17220059 +) +g1,4134:7626635,17220059 +g1,4134:8954451,17220059 +h1,4134:12273990,17220059:0,0,0 +k1,4134:32583030,17220059:20309040 +g1,4134:32583030,17220059 +) +(1,4136:6630773,18035986:25952256,431045,112852 +(1,4135:6630773,18035986:0,0,0 +g1,4135:6630773,18035986 +g1,4135:6630773,18035986 +g1,4135:6303093,18035986 +(1,4135:6303093,18035986:0,0,0 +) +g1,4135:6630773,18035986 +) +k1,4136:6630773,18035986:0 +g1,4136:10614221,18035986 +g1,4136:11278129,18035986 +g1,4136:13269853,18035986 +k1,4136:13269853,18035986:0 +h1,4136:15925484,18035986:0,0,0 +k1,4136:32583029,18035986:16657545 +g1,4136:32583029,18035986 +) +(1,4140:6630773,18851913:25952256,424439,79822 +(1,4138:6630773,18851913:0,0,0 +g1,4138:6630773,18851913 +g1,4138:6630773,18851913 +g1,4138:6303093,18851913 +(1,4138:6303093,18851913:0,0,0 +) +g1,4138:6630773,18851913 +) +g1,4140:7626635,18851913 +g1,4140:8954451,18851913 +h1,4140:9950313,18851913:0,0,0 +k1,4140:32583029,18851913:22632716 +g1,4140:32583029,18851913 +) +(1,4142:6630773,19667840:25952256,431045,112852 +(1,4141:6630773,19667840:0,0,0 +g1,4141:6630773,19667840 +g1,4141:6630773,19667840 +g1,4141:6303093,19667840 +(1,4141:6303093,19667840:0,0,0 +) +g1,4141:6630773,19667840 +) +k1,4142:6630773,19667840:0 +g1,4142:10946175,19667840 +g1,4142:13269853,19667840 +g1,4142:13933761,19667840 +g1,4142:14929623,19667840 +g1,4142:17253301,19667840 +g1,4142:17917209,19667840 +h1,4142:18581117,19667840:0,0,0 +k1,4142:32583029,19667840:14001912 +g1,4142:32583029,19667840 +) +(1,4146:6630773,20483767:25952256,424439,79822 +(1,4144:6630773,20483767:0,0,0 +g1,4144:6630773,20483767 +g1,4144:6630773,20483767 +g1,4144:6303093,20483767 +(1,4144:6303093,20483767:0,0,0 +) +g1,4144:6630773,20483767 +) +g1,4146:7626635,20483767 +g1,4146:8954451,20483767 +g1,4146:11610083,20483767 +g1,4146:12273991,20483767 +g1,4146:12605945,20483767 +h1,4146:13933761,20483767:0,0,0 +k1,4146:32583029,20483767:18649268 +g1,4146:32583029,20483767 +) +(1,4148:6630773,21299694:25952256,431045,112852 +(1,4147:6630773,21299694:0,0,0 +g1,4147:6630773,21299694 +g1,4147:6630773,21299694 +g1,4147:6303093,21299694 +(1,4147:6303093,21299694:0,0,0 +) +g1,4147:6630773,21299694 +) +k1,4148:6630773,21299694:0 +g1,4148:10946175,21299694 +g1,4148:13269853,21299694 +g1,4148:13933761,21299694 +g1,4148:14929623,21299694 +g1,4148:18581116,21299694 +g1,4148:19245024,21299694 +h1,4148:20904794,21299694:0,0,0 +k1,4148:32583029,21299694:11678235 +g1,4148:32583029,21299694 +) +(1,4152:6630773,22115621:25952256,424439,79822 +(1,4150:6630773,22115621:0,0,0 +g1,4150:6630773,22115621 +g1,4150:6630773,22115621 +g1,4150:6303093,22115621 +(1,4150:6303093,22115621:0,0,0 +) +g1,4150:6630773,22115621 +) +g1,4152:7626635,22115621 +g1,4152:8954451,22115621 +g1,4152:12605944,22115621 +h1,4152:15925483,22115621:0,0,0 +k1,4152:32583029,22115621:16657546 +g1,4152:32583029,22115621 +) +] +) +g1,4153:32583029,22195443 +g1,4153:6630773,22195443 +g1,4153:6630773,22195443 +g1,4153:32583029,22195443 +g1,4153:32583029,22195443 +) +h1,4153:6630773,22392051:0,0,0 +(1,4157:6630773,23257131:25952256,513147,115847 +h1,4156:6630773,23257131:983040,0,0 +k1,4156:10659018,23257131:255337 +(1,4156:10659018,23257131:0,459977,115847 +r1,4186:13830978,23257131:3171960,575824,115847 +k1,4156:10659018,23257131:-3171960 +) +(1,4156:10659018,23257131:3171960,459977,115847 +k1,4156:10659018,23257131:3277 +h1,4156:13827701,23257131:0,411205,112570 +) +k1,4156:14086315,23257131:255337 +k1,4156:14873149,23257131:255337 +k1,4156:17330496,23257131:255337 +k1,4156:18237261,23257131:255337 +k1,4156:19450079,23257131:255337 +k1,4156:22400911,23257131:255336 +k1,4156:23315540,23257131:255337 +k1,4156:24589962,23257131:255337 +k1,4156:26498772,23257131:255337 +k1,4156:28665794,23257131:255337 +k1,4156:30117818,23257131:255337 +k1,4156:31753999,23257131:255337 +k1,4157:32583029,23257131:0 +) +(1,4157:6630773,24122211:25952256,513147,126483 +k1,4156:9079651,24122211:254733 +k1,4156:9865882,24122211:254734 +k1,4156:12072277,24122211:254733 +k1,4156:15051342,24122211:254733 +k1,4156:16378245,24122211:254734 +k1,4156:17986952,24122211:254733 +k1,4156:21272070,24122211:254733 +k1,4156:23017092,24122211:254733 +k1,4156:24428536,24122211:254734 +k1,4156:26625101,24122211:254733 +k1,4156:27898919,24122211:254733 +k1,4156:30411368,24122211:254734 +k1,4156:31563944,24122211:254733 +k1,4156:32583029,24122211:0 +) +(1,4157:6630773,24987291:25952256,513147,134348 +k1,4156:10197623,24987291:139317 +k1,4156:10868437,24987291:139317 +k1,4156:13839565,24987291:139317 +k1,4156:15714276,24987291:139318 +k1,4156:16209453,24987291:139317 +(1,4156:16209453,24987291:0,452978,115847 +r1,4186:19381413,24987291:3171960,568825,115847 +k1,4156:16209453,24987291:-3171960 +) +(1,4156:16209453,24987291:3171960,452978,115847 +k1,4156:16209453,24987291:3277 +h1,4156:19378136,24987291:0,411205,112570 +) +k1,4156:19520730,24987291:139317 +k1,4156:21525857,24987291:139317 +k1,4156:22351336,24987291:139317 +k1,4156:25474507,24987291:139317 +k1,4156:26241660,24987291:139318 +k1,4156:27584218,24987291:139317 +k1,4156:30707389,24987291:139317 +k1,4157:32583029,24987291:0 +) +(1,4157:6630773,25852371:25952256,513147,134348 +k1,4156:9167671,25852371:135659 +k1,4156:10250982,25852371:135660 +k1,4156:11776004,25852371:135659 +k1,4156:13103109,25852371:135660 +k1,4156:14257853,25852371:135659 +k1,4156:17821046,25852371:135660 +k1,4156:21794493,25852371:135659 +k1,4156:22921713,25852371:135660 +k1,4156:26382013,25852371:135659 +k1,4156:28253066,25852371:135660 +k1,4156:30582870,25852371:135659 +k1,4156:32583029,25852371:0 +) +(1,4157:6630773,26717451:25952256,505283,126483 +k1,4156:8688323,26717451:183220 +k1,4156:10698031,26717451:183220 +k1,4156:12369574,26717451:183220 +k1,4156:13946745,26717451:183220 +k1,4156:14485825,26717451:183220 +k1,4156:17078148,26717451:183220 +k1,4156:20409717,26717451:183219 +k1,4156:21546486,26717451:183220 +k1,4156:23390388,26717451:183220 +k1,4156:24189646,26717451:183220 +k1,4156:25391951,26717451:183220 +k1,4156:28236588,26717451:183220 +k1,4156:30288239,26717451:183220 +k1,4156:31490544,26717451:183220 +k1,4156:32583029,26717451:0 +) +(1,4157:6630773,27582531:25952256,513147,134348 +k1,4156:7455610,27582531:165545 +k1,4156:9313296,27582531:165546 +k1,4156:10138133,27582531:165545 +k1,4156:12174077,27582531:165546 +(1,4156:12174077,27582531:0,459977,115847 +r1,4186:12532343,27582531:358266,575824,115847 +k1,4156:12174077,27582531:-358266 +) +(1,4156:12174077,27582531:358266,459977,115847 +k1,4156:12174077,27582531:3277 +h1,4156:12529066,27582531:0,411205,112570 +) +k1,4156:12697888,27582531:165545 +k1,4156:13394931,27582531:165546 +k1,4156:15073702,27582531:165545 +k1,4156:16186899,27582531:165546 +(1,4156:16186899,27582531:0,452978,115847 +r1,4186:18655436,27582531:2468537,568825,115847 +k1,4156:16186899,27582531:-2468537 +) +(1,4156:16186899,27582531:2468537,452978,115847 +k1,4156:16186899,27582531:3277 +h1,4156:18652159,27582531:0,411205,112570 +) +k1,4156:18820981,27582531:165545 +k1,4156:20997172,27582531:165546 +k1,4156:21814145,27582531:165545 +k1,4156:22727457,27582531:165546 +k1,4156:26098368,27582531:165545 +k1,4156:29380806,27582531:165546 +k1,4156:30197779,27582531:165545 +k1,4156:30719185,27582531:165546 +k1,4156:32583029,27582531:0 +) +(1,4157:6630773,28447611:25952256,513147,134348 +k1,4156:9012297,28447611:219491 +k1,4156:10921305,28447611:219490 +(1,4156:10921305,28447611:0,414482,122846 +r1,4186:11279571,28447611:358266,537328,122846 +k1,4156:10921305,28447611:-358266 +) +(1,4156:10921305,28447611:358266,414482,122846 +k1,4156:10921305,28447611:3277 +h1,4156:11276294,28447611:0,411205,112570 +) +k1,4156:11499062,28447611:219491 +k1,4156:12250050,28447611:219491 +k1,4156:13982766,28447611:219490 +k1,4156:15900295,28447611:219491 +k1,4156:16988137,28447611:219490 +k1,4156:18142171,28447611:219491 +k1,4156:19380747,28447611:219491 +k1,4156:22086018,28447611:219490 +k1,4156:22964801,28447611:219491 +k1,4156:26497792,28447611:219491 +k1,4156:28501827,28447611:219490 +k1,4156:29912763,28447611:219491 +(1,4156:29912763,28447611:0,414482,115847 +r1,4186:30271029,28447611:358266,530329,115847 +k1,4156:29912763,28447611:-358266 +) +(1,4156:29912763,28447611:358266,414482,115847 +k1,4156:29912763,28447611:3277 +h1,4156:30267752,28447611:0,411205,112570 +) +k1,4156:30490519,28447611:219490 +k1,4156:31657661,28447611:219491 +k1,4157:32583029,28447611:0 +) +(1,4157:6630773,29312691:25952256,513147,126483 +g1,4156:9841381,29312691 +g1,4156:10723495,29312691 +g1,4156:13662785,29312691 +k1,4157:32583029,29312691:16056976 +g1,4157:32583029,29312691 +) +v1,4159:6630773,29997546:0,393216,0 +(1,4179:6630773,35069689:25952256,5465359,196608 +g1,4179:6630773,35069689 +g1,4179:6630773,35069689 +g1,4179:6434165,35069689 +(1,4179:6434165,35069689:0,5465359,196608 +r1,4186:32779637,35069689:26345472,5661967,196608 +k1,4179:6434165,35069689:-26345472 +) +(1,4179:6434165,35069689:26345472,5465359,196608 +[1,4179:6630773,35069689:25952256,5268751,0 +(1,4161:6630773,30225377:25952256,424439,86428 +(1,4160:6630773,30225377:0,0,0 +g1,4160:6630773,30225377 +g1,4160:6630773,30225377 +g1,4160:6303093,30225377 +(1,4160:6303093,30225377:0,0,0 +) +g1,4160:6630773,30225377 +) +g1,4161:7294681,30225377 +g1,4161:7958589,30225377 +g1,4161:12937898,30225377 +h1,4161:14265714,30225377:0,0,0 +k1,4161:32583030,30225377:18317316 +g1,4161:32583030,30225377 +) +(1,4162:6630773,30910232:25952256,431045,106246 +h1,4162:6630773,30910232:0,0,0 +g1,4162:10946175,30910232 +g1,4162:13601807,30910232 +g1,4162:15261577,30910232 +g1,4162:17253301,30910232 +g1,4162:18581117,30910232 +g1,4162:20904795,30910232 +g1,4162:22896519,30910232 +h1,4162:24556289,30910232:0,0,0 +k1,4162:32583029,30910232:8026740 +g1,4162:32583029,30910232 +) +(1,4166:6630773,31726159:25952256,424439,79822 +(1,4164:6630773,31726159:0,0,0 +g1,4164:6630773,31726159 +g1,4164:6630773,31726159 +g1,4164:6303093,31726159 +(1,4164:6303093,31726159:0,0,0 +) +g1,4164:6630773,31726159 +) +g1,4166:7626635,31726159 +g1,4166:8954451,31726159 +g1,4166:10614221,31726159 +g1,4166:13269853,31726159 +g1,4166:14929623,31726159 +g1,4166:17253301,31726159 +g1,4166:18581117,31726159 +h1,4166:19245025,31726159:0,0,0 +k1,4166:32583029,31726159:13338004 +g1,4166:32583029,31726159 +) +(1,4168:6630773,32542086:25952256,431045,112852 +(1,4167:6630773,32542086:0,0,0 +g1,4167:6630773,32542086 +g1,4167:6630773,32542086 +g1,4167:6303093,32542086 +(1,4167:6303093,32542086:0,0,0 +) +g1,4167:6630773,32542086 +) +k1,4168:6630773,32542086:0 +g1,4168:10946175,32542086 +g1,4168:13601807,32542086 +g1,4168:15261577,32542086 +g1,4168:16921347,32542086 +g1,4168:18249163,32542086 +g1,4168:20572841,32542086 +g1,4168:22564565,32542086 +h1,4168:24224335,32542086:0,0,0 +k1,4168:32583029,32542086:8358694 +g1,4168:32583029,32542086 +) +(1,4172:6630773,33358013:25952256,424439,79822 +(1,4170:6630773,33358013:0,0,0 +g1,4170:6630773,33358013 +g1,4170:6630773,33358013 +g1,4170:6303093,33358013 +(1,4170:6303093,33358013:0,0,0 +) +g1,4170:6630773,33358013 +) +g1,4172:7626635,33358013 +g1,4172:8954451,33358013 +g1,4172:10614221,33358013 +g1,4172:13269853,33358013 +g1,4172:14929623,33358013 +g1,4172:16921347,33358013 +g1,4172:18249163,33358013 +h1,4172:18913071,33358013:0,0,0 +k1,4172:32583029,33358013:13669958 +g1,4172:32583029,33358013 +) +(1,4174:6630773,34173940:25952256,431045,106246 +(1,4173:6630773,34173940:0,0,0 +g1,4173:6630773,34173940 +g1,4173:6630773,34173940 +g1,4173:6303093,34173940 +(1,4173:6303093,34173940:0,0,0 +) +g1,4173:6630773,34173940 +) +k1,4174:6630773,34173940:0 +g1,4174:10946175,34173940 +g1,4174:13601807,34173940 +g1,4174:15261577,34173940 +g1,4174:17253301,34173940 +g1,4174:18581117,34173940 +g1,4174:20904795,34173940 +g1,4174:22896519,34173940 +h1,4174:24556289,34173940:0,0,0 +k1,4174:32583029,34173940:8026740 +g1,4174:32583029,34173940 +) +(1,4178:6630773,34989867:25952256,424439,79822 +(1,4176:6630773,34989867:0,0,0 +g1,4176:6630773,34989867 +g1,4176:6630773,34989867 +g1,4176:6303093,34989867 +(1,4176:6303093,34989867:0,0,0 +) +g1,4176:6630773,34989867 +) +g1,4178:7626635,34989867 +g1,4178:8954451,34989867 +g1,4178:10614221,34989867 +g1,4178:13269853,34989867 +g1,4178:14929623,34989867 +g1,4178:17917208,34989867 +g1,4178:19245024,34989867 +h1,4178:21236748,34989867:0,0,0 +k1,4178:32583029,34989867:11346281 +g1,4178:32583029,34989867 +) +] +) +g1,4179:32583029,35069689 +g1,4179:6630773,35069689 +g1,4179:6630773,35069689 +g1,4179:32583029,35069689 +g1,4179:32583029,35069689 +) +h1,4179:6630773,35266297:0,0,0 +(1,4183:6630773,36131377:25952256,505283,126483 +h1,4182:6630773,36131377:983040,0,0 +k1,4182:8469610,36131377:227962 +k1,4182:9716658,36131377:227963 +k1,4182:12754804,36131377:227962 +(1,4182:12754804,36131377:0,459977,115847 +r1,4186:24367848,36131377:11613044,575824,115847 +k1,4182:12754804,36131377:-11613044 +) +(1,4182:12754804,36131377:11613044,459977,115847 +g1,4182:14516640,36131377 +g1,4182:17330335,36131377 +g1,4182:19088894,36131377 +g1,4182:21199165,36131377 +g1,4182:22606012,36131377 +h1,4182:24364571,36131377:0,411205,112570 +) +k1,4182:24769480,36131377:227962 +k1,4182:26652226,36131377:227962 +k1,4182:27871749,36131377:227963 +k1,4182:29272150,36131377:227962 +k1,4183:32583029,36131377:0 +) +(1,4183:6630773,36996457:25952256,513147,126483 +k1,4182:7776967,36996457:180193 +k1,4182:8904810,36996457:180192 +(1,4182:8904810,36996457:0,452978,115847 +r1,4186:11373347,36996457:2468537,568825,115847 +k1,4182:8904810,36996457:-2468537 +) +(1,4182:8904810,36996457:2468537,452978,115847 +k1,4182:8904810,36996457:3277 +h1,4182:11370070,36996457:0,411205,112570 +) +k1,4182:11553540,36996457:180193 +k1,4182:13918047,36996457:180192 +(1,4182:13918047,36996457:0,459977,115847 +r1,4186:15683160,36996457:1765113,575824,115847 +k1,4182:13918047,36996457:-1765113 +) +(1,4182:13918047,36996457:1765113,459977,115847 +k1,4182:13918047,36996457:3277 +h1,4182:15679883,36996457:0,411205,112570 +) +k1,4182:15863353,36996457:180193 +k1,4182:17234991,36996457:180193 +(1,4182:17234991,36996457:0,459977,115847 +r1,4186:18648392,36996457:1413401,575824,115847 +k1,4182:17234991,36996457:-1413401 +) +(1,4182:17234991,36996457:1413401,459977,115847 +k1,4182:17234991,36996457:3277 +h1,4182:18645115,36996457:0,411205,112570 +) +k1,4182:19002254,36996457:180192 +k1,4182:19907275,36996457:180193 +k1,4182:20703505,36996457:180192 +k1,4182:23549703,36996457:180193 +k1,4182:24381324,36996457:180193 +k1,4182:25580601,36996457:180192 +k1,4182:28744648,36996457:180193 +k1,4182:29793192,36996457:180192 +k1,4182:31410590,36996457:180193 +k1,4182:32583029,36996457:0 +) +(1,4183:6630773,37861537:25952256,513147,126483 +k1,4182:8884674,37861537:243256 +k1,4182:12099988,37861537:243256 +k1,4182:13910864,37861537:243255 +k1,4182:15173205,37861537:243256 +k1,4182:16722594,37861537:243256 +k1,4182:18138289,37861537:243256 +k1,4182:21326077,37861537:243255 +k1,4182:22228625,37861537:243256 +k1,4182:24449758,37861537:243256 +(1,4182:24449758,37861537:0,414482,115847 +r1,4186:24808024,37861537:358266,530329,115847 +k1,4182:24449758,37861537:-358266 +) +(1,4182:24449758,37861537:358266,414482,115847 +k1,4182:24449758,37861537:3277 +h1,4182:24804747,37861537:0,411205,112570 +) +k1,4182:25224950,37861537:243256 +k1,4182:27342535,37861537:243255 +k1,4182:29354608,37861537:243256 +k1,4182:31073079,37861537:243256 +k1,4182:32583029,37861537:0 +) +(1,4183:6630773,38726617:25952256,513147,134348 +k1,4182:7975080,38726617:171868 +k1,4182:10909291,38726617:171868 +k1,4182:13389337,38726617:171868 +k1,4182:14220497,38726617:171868 +k1,4182:16405631,38726617:171868 +k1,4182:17907880,38726617:171868 +k1,4182:18762634,38726617:171869 +k1,4182:20401198,38726617:171868 +k1,4182:23193195,38726617:171868 +k1,4182:26626790,38726617:171868 +k1,4182:27995345,38726617:171868 +k1,4182:30977397,38726617:171868 +k1,4182:32583029,38726617:0 +) +(1,4183:6630773,39591697:25952256,505283,126483 +k1,4182:8347422,39591697:223739 +k1,4182:9637431,39591697:223738 +k1,4182:11391436,39591697:223739 +k1,4182:12266603,39591697:223739 +k1,4182:13238107,39591697:223738 +k1,4182:13817706,39591697:223739 +(1,4182:13817706,39591697:0,452978,115847 +r1,4186:16989666,39591697:3171960,568825,115847 +k1,4182:13817706,39591697:-3171960 +) +(1,4182:13817706,39591697:3171960,452978,115847 +k1,4182:13817706,39591697:3277 +h1,4182:16986389,39591697:0,411205,112570 +) +k1,4182:17213405,39591697:223739 +k1,4182:20194898,39591697:223738 +k1,4182:21104799,39591697:223739 +k1,4182:21944576,39591697:223739 +k1,4182:23865041,39591697:223738 +k1,4182:27254169,39591697:223739 +k1,4182:28164070,39591697:223739 +k1,4182:28743668,39591697:223738 +k1,4182:31478747,39591697:223739 +k1,4182:32583029,39591697:0 +) +(1,4183:6630773,40456777:25952256,505283,134348 +g1,4182:7577768,40456777 +g1,4182:9062813,40456777 +g1,4182:11467329,40456777 +g1,4182:12352720,40456777 +k1,4183:32583030,40456777:16984312 +g1,4183:32583030,40456777 +) +v1,4185:6630773,41321857:0,393216,0 +(1,4186:6630773,44323922:25952256,3395281,0 +g1,4186:6630773,44323922 +g1,4186:6237557,44323922 +r1,4186:6368629,44323922:131072,3395281,0 +g1,4186:6567858,44323922 +g1,4186:6764466,44323922 +[1,4186:6764466,44323922:25818563,3395281,0 +(1,4186:6764466,41594334:25818563,665693,196608 +(1,4185:6764466,41594334:0,665693,196608 +r1,4186:8010564,41594334:1246098,862301,196608 +k1,4185:6764466,41594334:-1246098 +) +(1,4185:6764466,41594334:1246098,665693,196608 +) +k1,4185:8195840,41594334:185276 +k1,4185:9922058,41594334:327680 +k1,4185:12897202,41594334:185276 +(1,4185:12897202,41594334:0,459977,115847 +r1,4186:15717451,41594334:2820249,575824,115847 +k1,4185:12897202,41594334:-2820249 +) +(1,4185:12897202,41594334:2820249,459977,115847 +k1,4185:12897202,41594334:3277 +h1,4185:15714174,41594334:0,411205,112570 +) +k1,4185:15902728,41594334:185277 +k1,4185:17424938,41594334:185276 +k1,4185:18357980,41594334:185276 +k1,4185:20413654,41594334:185276 +k1,4185:21250359,41594334:185277 +k1,4185:22701791,41594334:185276 +k1,4185:23503105,41594334:185276 +k1,4185:25380521,41594334:185276 +k1,4185:27436851,41594334:185277 +k1,4185:28694296,41594334:185276 +(1,4185:28694296,41594334:0,459977,115847 +r1,4186:31866256,41594334:3171960,575824,115847 +k1,4185:28694296,41594334:-3171960 +) +(1,4185:28694296,41594334:3171960,459977,115847 +k1,4185:28694296,41594334:3277 +h1,4185:31862979,41594334:0,411205,112570 +) +k1,4185:32051532,41594334:185276 +k1,4185:32583029,41594334:0 +) +(1,4186:6764466,42459414:25818563,513147,134348 +k1,4185:8563433,42459414:148770 +k1,4185:11013172,42459414:148770 +k1,4185:12353388,42459414:148771 +k1,4185:15532543,42459414:148770 +k1,4185:17602829,42459414:148770 +k1,4185:19145550,42459414:148770 +k1,4185:22707436,42459414:148771 +k1,4185:23472244,42459414:148770 +k1,4185:24640099,42459414:148770 +k1,4185:25881354,42459414:148770 +k1,4185:26689416,42459414:148770 +k1,4185:27857272,42459414:148771 +k1,4185:28459501,42459414:148720 +k1,4185:31450567,42459414:148770 +k1,4185:32583029,42459414:0 +) +(1,4186:6764466,43324494:25818563,513147,134348 +k1,4185:9240250,43324494:141392 +k1,4185:11104585,43324494:141393 +k1,4185:13068533,43324494:141392 +(1,4185:13068533,43324494:0,459977,115847 +r1,4186:16240493,43324494:3171960,575824,115847 +k1,4185:13068533,43324494:-3171960 +) +(1,4185:13068533,43324494:3171960,459977,115847 +k1,4185:13068533,43324494:3277 +h1,4185:16237216,43324494:0,411205,112570 +) +k1,4185:16381886,43324494:141393 +k1,4185:17714723,43324494:141392 +k1,4185:18644513,43324494:141392 +k1,4185:19878391,43324494:141393 +k1,4185:20679075,43324494:141392 +k1,4185:23960953,43324494:141393 +k1,4185:25049996,43324494:141392 +k1,4185:28618922,43324494:141393 +k1,4185:31092740,43324494:141392 +k1,4185:32583029,43324494:0 +) +(1,4186:6764466,44189574:25818563,513147,134348 +k1,4185:7410607,44189574:180180 +k1,4185:8761260,44189574:180180 +k1,4185:9933001,44189574:180181 +k1,4185:12605515,44189574:180180 +k1,4185:14179646,44189574:180180 +k1,4185:14987005,44189574:180180 +k1,4185:16553927,44189574:180180 +k1,4185:17569692,44189574:180181 +k1,4185:18768957,44189574:180180 +k1,4185:20337190,44189574:180180 +k1,4185:22345824,44189574:180180 +k1,4185:23473655,44189574:180180 +k1,4185:25120532,44189574:180181 +k1,4185:28500180,44189574:180180 +k1,4185:29871805,44189574:180180 +k1,4185:32583029,44189574:0 +) +] +g1,4186:32583029,44323922 +) +] +(1,4186:32583029,45706769:0,0,0 +g1,4186:32583029,45706769 +) +) +] +(1,4186:6630773,47279633:25952256,0,0 +h1,4186:6630773,47279633:25952256,0,0 +) +] +(1,4186:4262630,4025873:0,0,0 +[1,4186:-473656,4025873:0,0,0 +(1,4186:-473656,-710413:0,0,0 +(1,4186:-473656,-710413:0,0,0 +g1,4186:-473656,-710413 +) +g1,4186:-473656,-710413 +) +] +) +] +!31380 +}76 +Input:727:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:728:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:729:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:730:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:731:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:732:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:733:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:734:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:735:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:736:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:737:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:738:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:739:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:740:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1313 +{77 +[1,4290:4262630,47279633:28320399,43253760,0 +(1,4290:4262630,4025873:0,0,0 +[1,4290:-473656,4025873:0,0,0 +(1,4290:-473656,-710413:0,0,0 +(1,4290:-473656,-644877:0,0,0 +k1,4290:-473656,-644877:-65536 ) -(1,5104:-473656,4736287:0,0,0 -k1,5104:-473656,4736287:5209943 +(1,4290:-473656,4736287:0,0,0 +k1,4290:-473656,4736287:5209943 ) -g1,5104:-473656,-710413 +g1,4290:-473656,-710413 ) ] ) -[1,5104:6630773,47279633:25952256,43253760,0 -[1,5104:6630773,4812305:25952256,786432,0 -(1,5104:6630773,4812305:25952256,505283,126483 -(1,5104:6630773,4812305:25952256,505283,126483 -g1,5104:3078558,4812305 -[1,5104:3078558,4812305:0,0,0 -(1,5104:3078558,2439708:0,1703936,0 -k1,5104:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,5104:2537886,2439708:1179648,16384,0 +[1,4290:6630773,47279633:25952256,43253760,0 +[1,4290:6630773,4812305:25952256,786432,0 +(1,4290:6630773,4812305:25952256,505283,11795 +(1,4290:6630773,4812305:25952256,505283,11795 +g1,4290:3078558,4812305 +[1,4290:3078558,4812305:0,0,0 +(1,4290:3078558,2439708:0,1703936,0 +k1,4290:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,4290:2537886,2439708:1179648,16384,0 ) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,5104:3078558,1915420:16384,1179648,0 +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,4290:3078558,1915420:16384,1179648,0 ) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) ] ) ) ) ] -[1,5104:3078558,4812305:0,0,0 -(1,5104:3078558,2439708:0,1703936,0 -g1,5104:29030814,2439708 -g1,5104:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,5104:36151628,1915420:16384,1179648,0 +[1,4290:3078558,4812305:0,0,0 +(1,4290:3078558,2439708:0,1703936,0 +g1,4290:29030814,2439708 +g1,4290:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,4290:36151628,1915420:16384,1179648,0 ) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) ] ) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,5104:37855564,2439708:1179648,16384,0 +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,4290:37855564,2439708:1179648,16384,0 ) ) -k1,5104:3078556,2439708:-34777008 +k1,4290:3078556,2439708:-34777008 ) ] -[1,5104:3078558,4812305:0,0,0 -(1,5104:3078558,49800853:0,16384,2228224 -k1,5104:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,5104:2537886,49800853:1179648,16384,0 +[1,4290:3078558,4812305:0,0,0 +(1,4290:3078558,49800853:0,16384,2228224 +k1,4290:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,4290:2537886,49800853:1179648,16384,0 ) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,5104:3078558,51504789:16384,1179648,0 +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,4290:3078558,51504789:16384,1179648,0 ) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) ] ) ) ) ] -[1,5104:3078558,4812305:0,0,0 -(1,5104:3078558,49800853:0,16384,2228224 -g1,5104:29030814,49800853 -g1,5104:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,5104:36151628,51504789:16384,1179648,0 -) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 -) -] -) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,5104:37855564,49800853:1179648,16384,0 -) -) -k1,5104:3078556,49800853:-34777008 -) -] -g1,5104:6630773,4812305 -g1,5104:6630773,4812305 -g1,5104:9472414,4812305 -g1,5104:10882093,4812305 -g1,5104:16529985,4812305 -g1,5104:18796220,4812305 -k1,5104:31786111,4812305:12989891 -) -) -] -[1,5104:6630773,45706769:25952256,40108032,0 -(1,5104:6630773,45706769:25952256,40108032,0 -(1,5104:6630773,45706769:0,0,0 -g1,5104:6630773,45706769 -) -[1,5104:6630773,45706769:25952256,40108032,0 -v1,5004:6630773,6254097:0,393216,0 -(1,5004:6630773,15859701:25952256,9998820,196608 -g1,5004:6630773,15859701 -g1,5004:6630773,15859701 -g1,5004:6434165,15859701 -(1,5004:6434165,15859701:0,9998820,196608 -r1,5104:32779637,15859701:26345472,10195428,196608 -k1,5004:6434165,15859701:-26345472 -) -(1,5004:6434165,15859701:26345472,9998820,196608 -[1,5004:6630773,15859701:25952256,9802212,0 -(1,4991:6630773,6461715:25952256,404226,82312 -(1,4984:6630773,6461715:0,0,0 -g1,4984:6630773,6461715 -g1,4984:6630773,6461715 -g1,4984:6303093,6461715 -(1,4984:6303093,6461715:0,0,0 -) -g1,4984:6630773,6461715 -) -g1,4991:7579210,6461715 -g1,4991:7895356,6461715 -g1,4991:8211502,6461715 -g1,4991:8527648,6461715 -g1,4991:8843794,6461715 -g1,4991:9159940,6461715 -g1,4991:10740669,6461715 -g1,4991:12321398,6461715 -g1,4991:13902127,6461715 -k1,4991:13902127,6461715:0 -h1,4991:15166710,6461715:0,0,0 -k1,4991:32583030,6461715:17416320 -g1,4991:32583030,6461715 -) -(1,4991:6630773,7127893:25952256,404226,82312 -h1,4991:6630773,7127893:0,0,0 -g1,4991:7579210,7127893 -g1,4991:9159938,7127893 -g1,4991:9476084,7127893 -g1,4991:9792230,7127893 -g1,4991:10108376,7127893 -g1,4991:10740668,7127893 -g1,4991:11056814,7127893 -g1,4991:11372960,7127893 -g1,4991:11689106,7127893 -g1,4991:12321398,7127893 -g1,4991:12637544,7127893 -g1,4991:12953690,7127893 -g1,4991:13902127,7127893 -g1,4991:14218273,7127893 -g1,4991:14534419,7127893 -h1,4991:15166710,7127893:0,0,0 -k1,4991:32583030,7127893:17416320 -g1,4991:32583030,7127893 -) -(1,4991:6630773,7794071:25952256,404226,82312 -h1,4991:6630773,7794071:0,0,0 -g1,4991:7579210,7794071 -g1,4991:9159938,7794071 -g1,4991:9476084,7794071 -g1,4991:9792230,7794071 -g1,4991:10108376,7794071 -g1,4991:10740668,7794071 -g1,4991:11056814,7794071 -g1,4991:11372960,7794071 -g1,4991:11689106,7794071 -g1,4991:12321398,7794071 -g1,4991:12637544,7794071 -g1,4991:12953690,7794071 -g1,4991:13902127,7794071 -g1,4991:14218273,7794071 -g1,4991:14534419,7794071 -h1,4991:15166710,7794071:0,0,0 -k1,4991:32583030,7794071:17416320 -g1,4991:32583030,7794071 -) -(1,4991:6630773,8460249:25952256,404226,82312 -h1,4991:6630773,8460249:0,0,0 -g1,4991:7579210,8460249 -g1,4991:9159938,8460249 -g1,4991:9476084,8460249 -g1,4991:9792230,8460249 -g1,4991:10108376,8460249 -g1,4991:10740668,8460249 -g1,4991:11056814,8460249 -g1,4991:11372960,8460249 -g1,4991:11689106,8460249 -g1,4991:12321398,8460249 -g1,4991:12637544,8460249 -g1,4991:12953690,8460249 -g1,4991:13902127,8460249 -g1,4991:14218273,8460249 -g1,4991:14534419,8460249 -h1,4991:15166710,8460249:0,0,0 -k1,4991:32583030,8460249:17416320 -g1,4991:32583030,8460249 -) -(1,4991:6630773,9126427:25952256,404226,82312 -h1,4991:6630773,9126427:0,0,0 -g1,4991:7579210,9126427 -g1,4991:9159938,9126427 -g1,4991:9476084,9126427 -g1,4991:9792230,9126427 -g1,4991:10108376,9126427 -g1,4991:10740668,9126427 -g1,4991:11056814,9126427 -g1,4991:11372960,9126427 -g1,4991:11689106,9126427 -g1,4991:12321398,9126427 -g1,4991:12637544,9126427 -g1,4991:12953690,9126427 -g1,4991:13902127,9126427 -g1,4991:14218273,9126427 -g1,4991:14534419,9126427 -h1,4991:15166710,9126427:0,0,0 -k1,4991:32583030,9126427:17416320 -g1,4991:32583030,9126427 -) -(1,4991:6630773,9792605:25952256,404226,82312 -h1,4991:6630773,9792605:0,0,0 -g1,4991:7579210,9792605 -g1,4991:9159938,9792605 -g1,4991:9476084,9792605 -g1,4991:9792230,9792605 -g1,4991:10108376,9792605 -g1,4991:10740668,9792605 -g1,4991:11056814,9792605 -g1,4991:11372960,9792605 -g1,4991:12321397,9792605 -g1,4991:12637543,9792605 -g1,4991:12953689,9792605 -g1,4991:13902126,9792605 -g1,4991:14218272,9792605 -g1,4991:14534418,9792605 -h1,4991:15166709,9792605:0,0,0 -k1,4991:32583029,9792605:17416320 -g1,4991:32583029,9792605 -) -(1,4993:6630773,11114143:25952256,404226,82312 -(1,4992:6630773,11114143:0,0,0 -g1,4992:6630773,11114143 -g1,4992:6630773,11114143 -g1,4992:6303093,11114143 -(1,4992:6303093,11114143:0,0,0 -) -g1,4992:6630773,11114143 -) -k1,4993:6630773,11114143:0 -g1,4993:9792231,11114143 -g1,4993:11372961,11114143 -g1,4993:12321399,11114143 -g1,4993:15482857,11114143 -h1,4993:16747441,11114143:0,0,0 -k1,4993:32583029,11114143:15835588 -g1,4993:32583029,11114143 -) -(1,4994:6630773,11780321:25952256,388497,6290 -h1,4994:6630773,11780321:0,0,0 -h1,4994:7895356,11780321:0,0,0 -k1,4994:32583028,11780321:24687672 -g1,4994:32583028,11780321 -) -(1,5003:6630773,12446499:25952256,404226,82312 -(1,4996:6630773,12446499:0,0,0 -g1,4996:6630773,12446499 -g1,4996:6630773,12446499 -g1,4996:6303093,12446499 -(1,4996:6303093,12446499:0,0,0 -) -g1,4996:6630773,12446499 -) -g1,5003:7579210,12446499 -g1,5003:7895356,12446499 -g1,5003:8211502,12446499 -g1,5003:8527648,12446499 -g1,5003:8843794,12446499 -g1,5003:9159940,12446499 -g1,5003:10740669,12446499 -g1,5003:12321398,12446499 -g1,5003:13902127,12446499 -k1,5003:13902127,12446499:0 -h1,5003:15166710,12446499:0,0,0 -k1,5003:32583030,12446499:17416320 -g1,5003:32583030,12446499 -) -(1,5003:6630773,13112677:25952256,404226,82312 -h1,5003:6630773,13112677:0,0,0 -g1,5003:7579210,13112677 -g1,5003:9159938,13112677 -g1,5003:9476084,13112677 -g1,5003:9792230,13112677 -g1,5003:10108376,13112677 -g1,5003:10740668,13112677 -g1,5003:11056814,13112677 -g1,5003:11372960,13112677 -g1,5003:11689106,13112677 -g1,5003:12321398,13112677 -g1,5003:12637544,13112677 -g1,5003:12953690,13112677 -g1,5003:13902127,13112677 -g1,5003:14218273,13112677 -g1,5003:14534419,13112677 -h1,5003:15166710,13112677:0,0,0 -k1,5003:32583030,13112677:17416320 -g1,5003:32583030,13112677 -) -(1,5003:6630773,13778855:25952256,404226,82312 -h1,5003:6630773,13778855:0,0,0 -g1,5003:7579210,13778855 -g1,5003:9159938,13778855 -g1,5003:9476084,13778855 -g1,5003:9792230,13778855 -g1,5003:10108376,13778855 -g1,5003:10740668,13778855 -g1,5003:11056814,13778855 -g1,5003:11372960,13778855 -g1,5003:11689106,13778855 -g1,5003:12321398,13778855 -g1,5003:12637544,13778855 -g1,5003:12953690,13778855 -g1,5003:13902127,13778855 -g1,5003:14218273,13778855 -g1,5003:14534419,13778855 -h1,5003:15166710,13778855:0,0,0 -k1,5003:32583030,13778855:17416320 -g1,5003:32583030,13778855 -) -(1,5003:6630773,14445033:25952256,404226,82312 -h1,5003:6630773,14445033:0,0,0 -g1,5003:7579210,14445033 -g1,5003:9159938,14445033 -g1,5003:9476084,14445033 -g1,5003:9792230,14445033 -g1,5003:10108376,14445033 -g1,5003:10740668,14445033 -g1,5003:11056814,14445033 -g1,5003:11372960,14445033 -g1,5003:11689106,14445033 -g1,5003:12321398,14445033 -g1,5003:12637544,14445033 -g1,5003:12953690,14445033 -g1,5003:13902127,14445033 -g1,5003:14218273,14445033 -g1,5003:14534419,14445033 -h1,5003:15166710,14445033:0,0,0 -k1,5003:32583030,14445033:17416320 -g1,5003:32583030,14445033 -) -(1,5003:6630773,15111211:25952256,404226,82312 -h1,5003:6630773,15111211:0,0,0 -g1,5003:7579210,15111211 -g1,5003:9159938,15111211 -g1,5003:9476084,15111211 -g1,5003:9792230,15111211 -g1,5003:10108376,15111211 -g1,5003:10740668,15111211 -g1,5003:11056814,15111211 -g1,5003:11372960,15111211 -g1,5003:11689106,15111211 -g1,5003:12321398,15111211 -g1,5003:12637544,15111211 -g1,5003:12953690,15111211 -g1,5003:13902127,15111211 -g1,5003:14218273,15111211 -g1,5003:14534419,15111211 -h1,5003:15166710,15111211:0,0,0 -k1,5003:32583030,15111211:17416320 -g1,5003:32583030,15111211 -) -(1,5003:6630773,15777389:25952256,404226,82312 -h1,5003:6630773,15777389:0,0,0 -g1,5003:7579210,15777389 -g1,5003:9159938,15777389 -g1,5003:9476084,15777389 -g1,5003:9792230,15777389 -g1,5003:10108376,15777389 -g1,5003:10740668,15777389 -g1,5003:11056814,15777389 -g1,5003:11372960,15777389 -g1,5003:12321397,15777389 -g1,5003:12637543,15777389 -g1,5003:12953689,15777389 -g1,5003:13902126,15777389 -g1,5003:14218272,15777389 -g1,5003:14534418,15777389 -h1,5003:15166709,15777389:0,0,0 -k1,5003:32583029,15777389:17416320 -g1,5003:32583029,15777389 -) -] -) -g1,5004:32583029,15859701 -g1,5004:6630773,15859701 -g1,5004:6630773,15859701 -g1,5004:32583029,15859701 -g1,5004:32583029,15859701 -) -h1,5004:6630773,16056309:0,0,0 -v1,5008:6630773,17763106:0,393216,0 -(1,5051:6630773,32607914:25952256,15238024,0 -g1,5051:6630773,32607914 -g1,5051:6303093,32607914 -r1,5104:6401397,32607914:98304,15238024,0 -g1,5051:6600626,32607914 -g1,5051:6797234,32607914 -[1,5051:6797234,32607914:25785795,15238024,0 -(1,5009:6797234,18125179:25785795,755289,196608 -(1,5008:6797234,18125179:0,755289,196608 -r1,5104:8134168,18125179:1336934,951897,196608 -k1,5008:6797234,18125179:-1336934 -) -(1,5008:6797234,18125179:1336934,755289,196608 -) -k1,5008:8332032,18125179:197864 -k1,5008:8659712,18125179:327680 -k1,5008:11266679,18125179:197864 -k1,5008:12456103,18125179:197864 -k1,5008:15067003,18125179:197864 -k1,5008:16707314,18125179:197864 -k1,5008:19812355,18125179:197864 -k1,5008:21201664,18125179:197864 -k1,5008:22161056,18125179:197864 -k1,5008:24624500,18125179:197864 -k1,5008:26520402,18125179:197864 -k1,5008:29348226,18125179:197864 -k1,5008:30565175,18125179:197864 -k1,5008:32583029,18125179:0 -) -(1,5009:6797234,18966667:25785795,513147,134348 -k1,5008:9974117,18966667:204825 -k1,5008:11746563,18966667:204825 -k1,5008:12307249,18966667:204826 -k1,5008:14599396,18966667:204825 -k1,5008:15262318,18966667:204825 -k1,5008:15998640,18966667:204825 -k1,5008:19380651,18966667:204826 -k1,5008:20852942,18966667:204825 -k1,5008:21413627,18966667:204825 -k1,5008:23596329,18966667:204825 -k1,5008:24562683,18966667:204826 -k1,5008:27702866,18966667:204825 -k1,5008:29064401,18966667:204825 -k1,5008:32583029,18966667:0 -) -(1,5009:6797234,19808155:25785795,505283,134348 -g1,5008:7756681,19808155 -g1,5008:10383364,19808155 -(1,5008:10383364,19808155:0,452978,115847 -r1,5104:14610460,19808155:4227096,568825,115847 -k1,5008:10383364,19808155:-4227096 -) -(1,5008:10383364,19808155:4227096,452978,115847 -g1,5008:12145200,19808155 -g1,5008:12848624,19808155 -h1,5008:14607183,19808155:0,411205,112570 -) -g1,5008:14983359,19808155 -g1,5008:16050940,19808155 -g1,5008:17354451,19808155 -g1,5008:19986376,19808155 -k1,5009:32583029,19808155:11219742 -g1,5009:32583029,19808155 -) -v1,5011:6797234,20998621:0,393216,0 -(1,5048:6797234,31887018:25785795,11281613,196608 -g1,5048:6797234,31887018 -g1,5048:6797234,31887018 -g1,5048:6600626,31887018 -(1,5048:6600626,31887018:0,11281613,196608 -r1,5104:32779637,31887018:26179011,11478221,196608 -k1,5048:6600625,31887018:-26179012 -) -(1,5048:6600626,31887018:26179011,11281613,196608 -[1,5048:6797234,31887018:25785795,11085005,0 -(1,5013:6797234,21206239:25785795,404226,82312 -(1,5012:6797234,21206239:0,0,0 -g1,5012:6797234,21206239 -g1,5012:6797234,21206239 -g1,5012:6469554,21206239 -(1,5012:6469554,21206239:0,0,0 -) -g1,5012:6797234,21206239 -) -k1,5013:6797234,21206239:0 -g1,5013:12487857,21206239 -h1,5013:13120148,21206239:0,0,0 -k1,5013:32583028,21206239:19462880 -g1,5013:32583028,21206239 -) -(1,5017:6797234,21872417:25785795,404226,76021 -(1,5015:6797234,21872417:0,0,0 -g1,5015:6797234,21872417 -g1,5015:6797234,21872417 -g1,5015:6469554,21872417 -(1,5015:6469554,21872417:0,0,0 -) -g1,5015:6797234,21872417 -) -g1,5017:7745671,21872417 -g1,5017:9010254,21872417 -h1,5017:10590982,21872417:0,0,0 -k1,5017:32583030,21872417:21992048 -g1,5017:32583030,21872417 -) -(1,5019:6797234,23193955:25785795,404226,82312 -(1,5018:6797234,23193955:0,0,0 -g1,5018:6797234,23193955 -g1,5018:6797234,23193955 -g1,5018:6469554,23193955 -(1,5018:6469554,23193955:0,0,0 -) -g1,5018:6797234,23193955 -) -k1,5019:6797234,23193955:0 -g1,5019:13120149,23193955 -h1,5019:14700878,23193955:0,0,0 -k1,5019:32583030,23193955:17882152 -g1,5019:32583030,23193955 -) -(1,5023:6797234,23860133:25785795,404226,76021 -(1,5021:6797234,23860133:0,0,0 -g1,5021:6797234,23860133 -g1,5021:6797234,23860133 -g1,5021:6469554,23860133 -(1,5021:6469554,23860133:0,0,0 -) -g1,5021:6797234,23860133 -) -g1,5023:7745671,23860133 -g1,5023:9010254,23860133 -h1,5023:10274837,23860133:0,0,0 -k1,5023:32583029,23860133:22308192 -g1,5023:32583029,23860133 -) -(1,5025:6797234,25181671:25785795,404226,82312 -(1,5024:6797234,25181671:0,0,0 -g1,5024:6797234,25181671 -g1,5024:6797234,25181671 -g1,5024:6469554,25181671 -(1,5024:6469554,25181671:0,0,0 -) -g1,5024:6797234,25181671 -) -k1,5025:6797234,25181671:0 -g1,5025:12487857,25181671 -h1,5025:13120148,25181671:0,0,0 -k1,5025:32583028,25181671:19462880 -g1,5025:32583028,25181671 -) -(1,5029:6797234,25847849:25785795,404226,76021 -(1,5027:6797234,25847849:0,0,0 -g1,5027:6797234,25847849 -g1,5027:6797234,25847849 -g1,5027:6469554,25847849 -(1,5027:6469554,25847849:0,0,0 -) -g1,5027:6797234,25847849 -) -g1,5029:7745671,25847849 -g1,5029:9010254,25847849 -h1,5029:10274837,25847849:0,0,0 -k1,5029:32583029,25847849:22308192 -g1,5029:32583029,25847849 -) -(1,5031:6797234,27169387:25785795,404226,82312 -(1,5030:6797234,27169387:0,0,0 -g1,5030:6797234,27169387 -g1,5030:6797234,27169387 -g1,5030:6469554,27169387 -(1,5030:6469554,27169387:0,0,0 -) -g1,5030:6797234,27169387 -) -k1,5031:6797234,27169387:0 -g1,5031:13120149,27169387 -h1,5031:14700878,27169387:0,0,0 -k1,5031:32583030,27169387:17882152 -g1,5031:32583030,27169387 -) -(1,5035:6797234,27835565:25785795,404226,76021 -(1,5033:6797234,27835565:0,0,0 -g1,5033:6797234,27835565 -g1,5033:6797234,27835565 -g1,5033:6469554,27835565 -(1,5033:6469554,27835565:0,0,0 -) -g1,5033:6797234,27835565 -) -g1,5035:7745671,27835565 -g1,5035:9010254,27835565 -h1,5035:10590982,27835565:0,0,0 -k1,5035:32583030,27835565:21992048 -g1,5035:32583030,27835565 -) -(1,5037:6797234,29157103:25785795,404226,101187 -(1,5036:6797234,29157103:0,0,0 -g1,5036:6797234,29157103 -g1,5036:6797234,29157103 -g1,5036:6469554,29157103 -(1,5036:6469554,29157103:0,0,0 -) -g1,5036:6797234,29157103 -) -k1,5037:6797234,29157103:0 -g1,5037:12487857,29157103 -g1,5037:13120149,29157103 -g1,5037:14700878,29157103 -g1,5037:15333170,29157103 -h1,5037:17546189,29157103:0,0,0 -k1,5037:32583029,29157103:15036840 -g1,5037:32583029,29157103 -) -(1,5041:6797234,29823281:25785795,404226,76021 -(1,5039:6797234,29823281:0,0,0 -g1,5039:6797234,29823281 -g1,5039:6797234,29823281 -g1,5039:6469554,29823281 -(1,5039:6469554,29823281:0,0,0 -) -g1,5039:6797234,29823281 -) -g1,5041:7745671,29823281 -g1,5041:9010254,29823281 -h1,5041:10274837,29823281:0,0,0 -k1,5041:32583029,29823281:22308192 -g1,5041:32583029,29823281 -) -(1,5043:6797234,31144819:25785795,404226,101187 -(1,5042:6797234,31144819:0,0,0 -g1,5042:6797234,31144819 -g1,5042:6797234,31144819 -g1,5042:6469554,31144819 -(1,5042:6469554,31144819:0,0,0 -) -g1,5042:6797234,31144819 -) -k1,5043:6797234,31144819:0 -g1,5043:13120149,31144819 -g1,5043:14700879,31144819 -g1,5043:16281608,31144819 -g1,5043:16913900,31144819 -h1,5043:19126919,31144819:0,0,0 -k1,5043:32583029,31144819:13456110 -g1,5043:32583029,31144819 -) -(1,5047:6797234,31810997:25785795,404226,76021 -(1,5045:6797234,31810997:0,0,0 -g1,5045:6797234,31810997 -g1,5045:6797234,31810997 -g1,5045:6469554,31810997 -(1,5045:6469554,31810997:0,0,0 -) -g1,5045:6797234,31810997 -) -g1,5047:7745671,31810997 -g1,5047:9010254,31810997 -h1,5047:10274837,31810997:0,0,0 -k1,5047:32583029,31810997:22308192 -g1,5047:32583029,31810997 -) -] -) -g1,5048:32583029,31887018 -g1,5048:6797234,31887018 -g1,5048:6797234,31887018 -g1,5048:32583029,31887018 -g1,5048:32583029,31887018 -) -h1,5048:6797234,32083626:0,0,0 -] -g1,5051:32583029,32607914 -) -h1,5051:6630773,32607914:0,0,0 -(1,5054:6630773,33882056:25952256,513147,134348 -h1,5053:6630773,33882056:983040,0,0 -k1,5053:10661952,33882056:197323 -k1,5053:12005500,33882056:197323 -k1,5053:14684670,33882056:197322 -k1,5053:15986275,33882056:197323 -k1,5053:16931364,33882056:197323 -k1,5053:19903481,33882056:197323 -k1,5053:22169120,33882056:197323 -k1,5053:23650949,33882056:197323 -k1,5053:26543767,33882056:197322 -k1,5053:27427252,33882056:197323 -k1,5053:31635378,33882056:197323 -k1,5053:32583029,33882056:0 -) -(1,5054:6630773,34723544:25952256,513147,134348 -k1,5053:9120426,34723544:240457 -k1,5053:10308535,34723544:240458 -k1,5053:14194760,34723544:240457 -k1,5053:15626662,34723544:240457 -k1,5053:19255331,34723544:240458 -k1,5053:22172934,34723544:240457 -k1,5053:23517674,34723544:240458 -k1,5053:25233346,34723544:240457 -k1,5053:26677699,34723544:240457 -k1,5053:28986473,34723544:240458 -k1,5053:31436804,34723544:240457 -k1,5054:32583029,34723544:0 -) -(1,5054:6630773,35565032:25952256,355205,7863 -g1,5053:8279658,35565032 -k1,5054:32583029,35565032:22061384 -g1,5054:32583029,35565032 -) -v1,5056:6630773,36663865:0,393216,0 -(1,5104:6630773,45510161:25952256,9239512,196608 -g1,5104:6630773,45510161 -g1,5104:6630773,45510161 -g1,5104:6434165,45510161 -(1,5104:6434165,45510161:0,9239512,196608 -r1,5104:32779637,45510161:26345472,9436120,196608 -k1,5104:6434165,45510161:-26345472 -) -(1,5104:6434165,45510161:26345472,9239512,196608 -[1,5104:6630773,45510161:25952256,9042904,0 -(1,5058:6630773,36871483:25952256,404226,76021 -(1,5057:6630773,36871483:0,0,0 -g1,5057:6630773,36871483 -g1,5057:6630773,36871483 -g1,5057:6303093,36871483 -(1,5057:6303093,36871483:0,0,0 -) -g1,5057:6630773,36871483 -) -k1,5058:6630773,36871483:0 -h1,5058:11056812,36871483:0,0,0 -k1,5058:32583028,36871483:21526216 -g1,5058:32583028,36871483 -) -(1,5062:6630773,37537661:25952256,379060,7863 -(1,5060:6630773,37537661:0,0,0 -g1,5060:6630773,37537661 -g1,5060:6630773,37537661 -g1,5060:6303093,37537661 -(1,5060:6303093,37537661:0,0,0 -) -g1,5060:6630773,37537661 -) -g1,5062:7579210,37537661 -h1,5062:8843793,37537661:0,0,0 -k1,5062:32583029,37537661:23739236 -g1,5062:32583029,37537661 -) -(1,5064:6630773,38859199:25952256,404226,76021 -(1,5063:6630773,38859199:0,0,0 -g1,5063:6630773,38859199 -g1,5063:6630773,38859199 -g1,5063:6303093,38859199 -(1,5063:6303093,38859199:0,0,0 -) -g1,5063:6630773,38859199 -) -k1,5064:6630773,38859199:0 -h1,5064:11056812,38859199:0,0,0 -k1,5064:32583028,38859199:21526216 -g1,5064:32583028,38859199 -) -(1,5068:6630773,39525377:25952256,379060,7863 -(1,5066:6630773,39525377:0,0,0 -g1,5066:6630773,39525377 -g1,5066:6630773,39525377 -g1,5066:6303093,39525377 -(1,5066:6303093,39525377:0,0,0 -) -g1,5066:6630773,39525377 -) -g1,5068:7579210,39525377 -h1,5068:8843793,39525377:0,0,0 -k1,5068:32583029,39525377:23739236 -g1,5068:32583029,39525377 -) -(1,5070:6630773,40846915:25952256,404226,82312 -(1,5069:6630773,40846915:0,0,0 -g1,5069:6630773,40846915 -g1,5069:6630773,40846915 -g1,5069:6303093,40846915 -(1,5069:6303093,40846915:0,0,0 -) -g1,5069:6630773,40846915 -) -k1,5070:6630773,40846915:0 -g1,5070:11372958,40846915 -g1,5070:12321396,40846915 -g1,5070:14534417,40846915 -g1,5070:16115146,40846915 -g1,5070:17695875,40846915 -h1,5070:18960458,40846915:0,0,0 -k1,5070:32583029,40846915:13622571 -g1,5070:32583029,40846915 -) -(1,5071:6630773,41513093:25952256,388497,6290 -h1,5071:6630773,41513093:0,0,0 -h1,5071:7895356,41513093:0,0,0 -k1,5071:32583028,41513093:24687672 -g1,5071:32583028,41513093 -) -(1,5080:6630773,42179271:25952256,404226,6290 -(1,5073:6630773,42179271:0,0,0 -g1,5073:6630773,42179271 -g1,5073:6630773,42179271 -g1,5073:6303093,42179271 -(1,5073:6303093,42179271:0,0,0 -) -g1,5073:6630773,42179271 -) -g1,5080:7579210,42179271 -g1,5080:7895356,42179271 -g1,5080:8211502,42179271 -g1,5080:8527648,42179271 -g1,5080:8843794,42179271 -g1,5080:9159940,42179271 -g1,5080:9792232,42179271 -g1,5080:10108378,42179271 -g1,5080:10740670,42179271 -g1,5080:11056816,42179271 -g1,5080:11689108,42179271 -g1,5080:12005254,42179271 -h1,5080:12321400,42179271:0,0,0 -k1,5080:32583028,42179271:20261628 -g1,5080:32583028,42179271 -) -(1,5080:6630773,42845449:25952256,404226,82312 -h1,5080:6630773,42845449:0,0,0 -g1,5080:7579210,42845449 -g1,5080:9159938,42845449 -g1,5080:9792230,42845449 -g1,5080:10108376,42845449 -g1,5080:10740668,42845449 -g1,5080:11689105,42845449 -h1,5080:12321396,42845449:0,0,0 -k1,5080:32583028,42845449:20261632 -g1,5080:32583028,42845449 -) -(1,5080:6630773,43511627:25952256,404226,82312 -h1,5080:6630773,43511627:0,0,0 -g1,5080:7579210,43511627 -g1,5080:9159938,43511627 -g1,5080:9792230,43511627 -g1,5080:10108376,43511627 -g1,5080:10740668,43511627 -g1,5080:11689105,43511627 -h1,5080:12321396,43511627:0,0,0 -k1,5080:32583028,43511627:20261632 -g1,5080:32583028,43511627 -) -(1,5080:6630773,44177805:25952256,404226,82312 -h1,5080:6630773,44177805:0,0,0 -g1,5080:7579210,44177805 -g1,5080:9159938,44177805 -g1,5080:9792230,44177805 -g1,5080:10108376,44177805 -g1,5080:10740668,44177805 -g1,5080:11689105,44177805 -h1,5080:12321396,44177805:0,0,0 -k1,5080:32583028,44177805:20261632 -g1,5080:32583028,44177805 -) -(1,5080:6630773,44843983:25952256,404226,82312 -h1,5080:6630773,44843983:0,0,0 -g1,5080:7579210,44843983 -g1,5080:9159938,44843983 -g1,5080:9792230,44843983 -g1,5080:10108376,44843983 -g1,5080:10740668,44843983 -g1,5080:11689105,44843983 -h1,5080:12321396,44843983:0,0,0 -k1,5080:32583028,44843983:20261632 -g1,5080:32583028,44843983 -) -(1,5080:6630773,45510161:25952256,404226,82312 -h1,5080:6630773,45510161:0,0,0 -g1,5080:7579210,45510161 -g1,5080:9159938,45510161 -g1,5080:9792230,45510161 -g1,5080:10740667,45510161 -g1,5080:11689104,45510161 -h1,5080:12321395,45510161:0,0,0 -k1,5080:32583029,45510161:20261634 -g1,5080:32583029,45510161 -) -] -) -g1,5104:32583029,45510161 -g1,5104:6630773,45510161 -g1,5104:6630773,45510161 -g1,5104:32583029,45510161 -g1,5104:32583029,45510161 -) -] -(1,5104:32583029,45706769:0,0,0 -g1,5104:32583029,45706769 -) -) -] -(1,5104:6630773,47279633:25952256,0,0 -h1,5104:6630773,47279633:25952256,0,0 -) -] -(1,5104:4262630,4025873:0,0,0 -[1,5104:-473656,4025873:0,0,0 -(1,5104:-473656,-710413:0,0,0 -(1,5104:-473656,-710413:0,0,0 -g1,5104:-473656,-710413 -) -g1,5104:-473656,-710413 -) -] -) -] -!23970 -}90 -Input:766:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!104 -{91 -[1,5181:4262630,47279633:28320399,43253760,0 -(1,5181:4262630,4025873:0,0,0 -[1,5181:-473656,4025873:0,0,0 -(1,5181:-473656,-710413:0,0,0 -(1,5181:-473656,-644877:0,0,0 -k1,5181:-473656,-644877:-65536 -) -(1,5181:-473656,4736287:0,0,0 -k1,5181:-473656,4736287:5209943 +[1,4290:3078558,4812305:0,0,0 +(1,4290:3078558,49800853:0,16384,2228224 +g1,4290:29030814,49800853 +g1,4290:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,4290:36151628,51504789:16384,1179648,0 ) -g1,5181:-473656,-710413 +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 ) ] ) -[1,5181:6630773,47279633:25952256,43253760,0 -[1,5181:6630773,4812305:25952256,786432,0 -(1,5181:6630773,4812305:25952256,505283,11795 -(1,5181:6630773,4812305:25952256,505283,11795 -g1,5181:3078558,4812305 -[1,5181:3078558,4812305:0,0,0 -(1,5181:3078558,2439708:0,1703936,0 -k1,5181:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,5181:2537886,2439708:1179648,16384,0 -) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,5181:3078558,1915420:16384,1179648,0 -) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,4290:37855564,49800853:1179648,16384,0 ) -] ) +k1,4290:3078556,49800853:-34777008 ) +] +g1,4290:6630773,4812305 +k1,4290:22348274,4812305:14920583 +g1,4290:23970945,4812305 +g1,4290:24793421,4812305 +g1,4290:27528893,4812305 +g1,4290:28938572,4812305 +) +) +] +[1,4290:6630773,45706769:25952256,40108032,0 +(1,4290:6630773,45706769:25952256,40108032,0 +(1,4290:6630773,45706769:0,0,0 +g1,4290:6630773,45706769 +) +[1,4290:6630773,45706769:25952256,40108032,0 +v1,4186:6630773,6254097:0,393216,0 +(1,4186:6630773,7365591:25952256,1504710,0 +g1,4186:6630773,7365591 +g1,4186:6237557,7365591 +r1,4290:6368629,7365591:131072,1504710,0 +g1,4186:6567858,7365591 +g1,4186:6764466,7365591 +[1,4186:6764466,7365591:25818563,1504710,0 +(1,4186:6764466,6374028:25818563,513147,134348 +k1,4185:7723491,6374028:197497 +k1,4185:9817601,6374028:197498 +k1,4185:10666526,6374028:197497 +k1,4185:12793404,6374028:197498 +k1,4185:14009986,6374028:197497 +k1,4185:15860957,6374028:197498 +k1,4185:19263820,6374028:197497 +k1,4185:21620073,6374028:197497 +k1,4185:22579099,6374028:197498 +k1,4185:24844912,6374028:197497 +k1,4185:25701702,6374028:197498 +k1,4185:26918284,6374028:197497 +k1,4185:28288221,6374028:197498 +k1,4185:31685186,6374028:197497 +k1,4185:32583029,6374028:0 +) +(1,4186:6764466,7239108:25818563,513147,126483 +k1,4185:8208793,7239108:158511 +k1,4185:9710136,7239108:158510 +k1,4185:11262598,7239108:158511 +k1,4185:13117835,7239108:158510 +k1,4185:16302143,7239108:158511 +k1,4185:17854605,7239108:158511 +k1,4185:19715085,7239108:158510 +k1,4185:21589984,7239108:158511 +k1,4185:22407787,7239108:158511 +k1,4185:23955660,7239108:158510 +k1,4185:25260396,7239108:158511 +(1,4185:25260396,7239108:0,452978,122846 +r1,4290:27728933,7239108:2468537,575824,122846 +k1,4185:25260396,7239108:-2468537 +) +(1,4185:25260396,7239108:2468537,452978,122846 +k1,4185:25260396,7239108:3277 +h1,4185:27725656,7239108:0,411205,112570 +) +k1,4185:27887443,7239108:158510 +k1,4185:29237399,7239108:158511 +(1,4185:29237399,7239108:0,452978,115847 +r1,4290:32409359,7239108:3171960,568825,115847 +k1,4185:29237399,7239108:-3171960 +) +(1,4185:29237399,7239108:3171960,452978,115847 +k1,4185:29237399,7239108:3277 +h1,4185:32406082,7239108:0,411205,112570 +) +k1,4186:32583029,7239108:0 +k1,4186:32583029,7239108:0 +) +] +g1,4186:32583029,7365591 +) +h1,4186:6630773,7365591:0,0,0 +v1,4189:6630773,8230671:0,393216,0 +(1,4265:6630773,29862439:25952256,22024984,0 +g1,4265:6630773,29862439 +g1,4265:6237557,29862439 +r1,4290:6368629,29862439:131072,22024984,0 +g1,4265:6567858,29862439 +g1,4265:6764466,29862439 +[1,4265:6764466,29862439:25818563,22024984,0 +(1,4190:6764466,8538969:25818563,701514,196608 +(1,4189:6764466,8538969:0,701514,196608 +r1,4290:8010564,8538969:1246098,898122,196608 +k1,4189:6764466,8538969:-1246098 +) +(1,4189:6764466,8538969:1246098,701514,196608 +) +k1,4189:8157318,8538969:146754 +k1,4189:8484998,8538969:327680 +k1,4189:9585300,8538969:146753 +k1,4189:11207269,8538969:146754 +k1,4189:13209347,8538969:146754 +k1,4189:16446124,8538969:146754 +(1,4189:16446124,8538969:0,414482,115847 +r1,4290:17156102,8538969:709978,530329,115847 +k1,4189:16446124,8538969:-709978 +) +(1,4189:16446124,8538969:709978,414482,115847 +k1,4189:16446124,8538969:3277 +h1,4189:17152825,8538969:0,411205,112570 +) +k1,4189:17302855,8538969:146753 +k1,4189:18135771,8538969:146754 +k1,4189:18638385,8538969:146754 +k1,4189:20658158,8538969:146754 +k1,4189:22485254,8538969:146753 +k1,4189:25295391,8538969:146754 +k1,4189:27728696,8538969:146754 +k1,4189:28947618,8538969:146753 +k1,4189:29710410,8538969:146754 +k1,4189:31873051,8538969:146754 +(1,4189:31873051,8538969:0,414482,115847 +r1,4290:32583029,8538969:709978,530329,115847 +k1,4189:31873051,8538969:-709978 +) +(1,4189:31873051,8538969:709978,414482,115847 +k1,4189:31873051,8538969:3277 +h1,4189:32579752,8538969:0,411205,112570 +) +k1,4189:32583029,8538969:0 +) +(1,4190:6764466,9404049:25818563,513147,115847 +k1,4189:7262879,9404049:168112 +k1,4189:9126407,9404049:168112 +k1,4189:9910557,9404049:168112 +k1,4189:12420925,9404049:168111 +k1,4189:14923429,9404049:168112 +(1,4189:14923429,9404049:0,452978,115847 +r1,4290:17743678,9404049:2820249,568825,115847 +k1,4189:14923429,9404049:-2820249 +) +(1,4189:14923429,9404049:2820249,452978,115847 +k1,4189:14923429,9404049:3277 +h1,4189:17740401,9404049:0,411205,112570 +) +k1,4189:18085460,9404049:168112 +(1,4189:18085460,9404049:0,452978,115847 +r1,4290:22664268,9404049:4578808,568825,115847 +k1,4189:18085460,9404049:-4578808 +) +(1,4189:18085460,9404049:4578808,452978,115847 +k1,4189:18085460,9404049:3277 +h1,4189:22660991,9404049:0,411205,112570 +) +k1,4189:23006050,9404049:168112 +k1,4189:24285653,9404049:168112 +k1,4189:25645210,9404049:168112 +(1,4189:25645210,9404049:0,414482,115847 +r1,4290:26355188,9404049:709978,530329,115847 +k1,4189:25645210,9404049:-709978 +) +(1,4189:25645210,9404049:709978,414482,115847 +k1,4189:25645210,9404049:3277 +h1,4189:26351911,9404049:0,411205,112570 +) +k1,4189:26523300,9404049:168112 +k1,4189:29287292,9404049:168111 +k1,4189:30106832,9404049:168112 +k1,4189:31045647,9404049:168112 +(1,4189:31045647,9404049:0,414482,115847 +r1,4290:31755625,9404049:709978,530329,115847 +k1,4189:31045647,9404049:-709978 +) +(1,4189:31045647,9404049:709978,414482,115847 +k1,4189:31045647,9404049:3277 +h1,4189:31752348,9404049:0,411205,112570 +) +k1,4189:31923737,9404049:168112 +k1,4189:32583029,9404049:0 +) +(1,4190:6764466,10269129:25818563,513147,126483 +k1,4189:8490261,10269129:170626 +(1,4189:8490261,10269129:0,452978,122846 +r1,4290:10958798,10269129:2468537,575824,122846 +k1,4189:8490261,10269129:-2468537 +) +(1,4189:8490261,10269129:2468537,452978,122846 +k1,4189:8490261,10269129:3277 +h1,4189:10955521,10269129:0,411205,112570 +) +k1,4189:11303095,10269129:170627 +(1,4189:11303095,10269129:0,414482,115847 +r1,4290:12013073,10269129:709978,530329,115847 +k1,4189:11303095,10269129:-709978 +) +(1,4189:11303095,10269129:709978,414482,115847 +k1,4189:11303095,10269129:3277 +h1,4189:12009796,10269129:0,411205,112570 +) +k1,4189:12183699,10269129:170626 +k1,4189:12885822,10269129:170626 +k1,4189:15901366,10269129:170626 +k1,4189:19232794,10269129:170627 +k1,4189:20212790,10269129:170626 +k1,4189:21402501,10269129:170626 +k1,4189:22368735,10269129:170627 +k1,4189:23190789,10269129:170626 +k1,4189:25063385,10269129:170626 +k1,4189:27346892,10269129:170626 +k1,4189:29215557,10269129:170627 +k1,4189:31858201,10269129:170626 +k1,4189:32583029,10269129:0 +) +(1,4190:6764466,11134209:25818563,505283,134348 +k1,4189:7541577,11134209:161073 +k1,4189:10035731,11134209:161072 +(1,4189:10035731,11134209:0,414482,115847 +r1,4290:10745709,11134209:709978,530329,115847 +k1,4189:10035731,11134209:-709978 +) +(1,4189:10035731,11134209:709978,414482,115847 +k1,4189:10035731,11134209:3277 +h1,4189:10742432,11134209:0,411205,112570 +) +k1,4189:10906782,11134209:161073 +k1,4189:11599351,11134209:161072 +k1,4189:12526540,11134209:161073 +k1,4189:13555964,11134209:161072 +k1,4189:15247303,11134209:161073 +k1,4189:16059803,11134209:161072 +k1,4189:17487032,11134209:161073 +k1,4189:18844791,11134209:161072 +k1,4189:21997583,11134209:161073 +k1,4189:24027086,11134209:161072 +k1,4189:25280644,11134209:161073 +k1,4189:26460801,11134209:161072 +k1,4189:29836415,11134209:161073 +k1,4189:32583029,11134209:0 +) +(1,4190:6764466,11999289:25818563,505283,134348 +k1,4189:7648110,11999289:232216 +k1,4189:11913411,11999289:232215 +k1,4189:15335264,11999289:232216 +k1,4189:19044165,11999289:232216 +k1,4189:20085750,11999289:232215 +k1,4189:24137404,11999289:232216 +k1,4189:25750464,11999289:232216 +k1,4189:28729293,11999289:232215 +k1,4189:29493006,11999289:232216 +k1,4189:32583029,11999289:0 +) +(1,4190:6764466,12864369:25818563,505283,11795 +g1,4189:7579733,12864369 +g1,4189:10057649,12864369 +h1,4189:11426696,12864369:0,0,0 +g1,4189:11625925,12864369 +k1,4190:32583029,12864369:18915002 +g1,4190:32583029,12864369 +) +v1,4192:6764466,13549224:0,393216,0 +(1,4206:6764466,16989513:25818563,3833505,196608 +g1,4206:6764466,16989513 +g1,4206:6764466,16989513 +g1,4206:6567858,16989513 +(1,4206:6567858,16989513:0,3833505,196608 +r1,4290:32779637,16989513:26211779,4030113,196608 +k1,4206:6567857,16989513:-26211780 +) +(1,4206:6567858,16989513:26211779,3833505,196608 +[1,4206:6764466,16989513:25818563,3636897,0 +(1,4194:6764466,13777055:25818563,424439,86428 +(1,4193:6764466,13777055:0,0,0 +g1,4193:6764466,13777055 +g1,4193:6764466,13777055 +g1,4193:6436786,13777055 +(1,4193:6436786,13777055:0,0,0 +) +g1,4193:6764466,13777055 +) +g1,4194:8424236,13777055 +g1,4194:9420098,13777055 +g1,4194:11079868,13777055 +h1,4194:12075730,13777055:0,0,0 +k1,4194:32583030,13777055:20507300 +g1,4194:32583030,13777055 +) +(1,4195:6764466,14461910:25818563,424439,79822 +h1,4195:6764466,14461910:0,0,0 +k1,4195:6764466,14461910:0 +h1,4195:13071591,14461910:0,0,0 +k1,4195:32583029,14461910:19511438 +g1,4195:32583029,14461910 +) +(1,4199:6764466,15277837:25818563,424439,79822 +(1,4197:6764466,15277837:0,0,0 +g1,4197:6764466,15277837 +g1,4197:6764466,15277837 +g1,4197:6436786,15277837 +(1,4197:6436786,15277837:0,0,0 +) +g1,4197:6764466,15277837 +) +g1,4199:7760328,15277837 +g1,4199:9088144,15277837 +h1,4199:10415960,15277837:0,0,0 +k1,4199:32583028,15277837:22167068 +g1,4199:32583028,15277837 +) +(1,4201:6764466,16093764:25818563,424439,79822 +(1,4200:6764466,16093764:0,0,0 +g1,4200:6764466,16093764 +g1,4200:6764466,16093764 +g1,4200:6436786,16093764 +(1,4200:6436786,16093764:0,0,0 +) +g1,4200:6764466,16093764 +) +k1,4201:6764466,16093764:0 +h1,4201:11411821,16093764:0,0,0 +k1,4201:32583029,16093764:21171208 +g1,4201:32583029,16093764 +) +(1,4205:6764466,16909691:25818563,424439,79822 +(1,4203:6764466,16909691:0,0,0 +g1,4203:6764466,16909691 +g1,4203:6764466,16909691 +g1,4203:6436786,16909691 +(1,4203:6436786,16909691:0,0,0 +) +g1,4203:6764466,16909691 +) +g1,4205:7760328,16909691 +g1,4205:9088144,16909691 +h1,4205:10747914,16909691:0,0,0 +k1,4205:32583030,16909691:21835116 +g1,4205:32583030,16909691 +) +] +) +g1,4206:32583029,16989513 +g1,4206:6764466,16989513 +g1,4206:6764466,16989513 +g1,4206:32583029,16989513 +g1,4206:32583029,16989513 +) +h1,4206:6764466,17186121:0,0,0 +v1,4210:6764466,17870976:0,393216,0 +(1,4218:6764466,19679411:25818563,2201651,196608 +g1,4218:6764466,19679411 +g1,4218:6764466,19679411 +g1,4218:6567858,19679411 +(1,4218:6567858,19679411:0,2201651,196608 +r1,4290:32779637,19679411:26211779,2398259,196608 +k1,4218:6567857,19679411:-26211780 +) +(1,4218:6567858,19679411:26211779,2201651,196608 +[1,4218:6764466,19679411:25818563,2005043,0 +(1,4212:6764466,18098807:25818563,424439,86428 +(1,4211:6764466,18098807:0,0,0 +g1,4211:6764466,18098807 +g1,4211:6764466,18098807 +g1,4211:6436786,18098807 +(1,4211:6436786,18098807:0,0,0 +) +g1,4211:6764466,18098807 +) +g1,4212:8424236,18098807 +g1,4212:9420098,18098807 +g1,4212:12407684,18098807 +h1,4212:13403546,18098807:0,0,0 +k1,4212:32583030,18098807:19179484 +g1,4212:32583030,18098807 +) +(1,4213:6764466,18783662:25818563,424439,79822 +h1,4213:6764466,18783662:0,0,0 +k1,4213:6764466,18783662:0 +h1,4213:13735499,18783662:0,0,0 +k1,4213:32583029,18783662:18847530 +g1,4213:32583029,18783662 +) +(1,4217:6764466,19599589:25818563,424439,79822 +(1,4215:6764466,19599589:0,0,0 +g1,4215:6764466,19599589 +g1,4215:6764466,19599589 +g1,4215:6436786,19599589 +(1,4215:6436786,19599589:0,0,0 +) +g1,4215:6764466,19599589 +) +g1,4217:7760328,19599589 +g1,4217:9088144,19599589 +h1,4217:10415960,19599589:0,0,0 +k1,4217:32583028,19599589:22167068 +g1,4217:32583028,19599589 +) +] +) +g1,4218:32583029,19679411 +g1,4218:6764466,19679411 +g1,4218:6764466,19679411 +g1,4218:32583029,19679411 +g1,4218:32583029,19679411 +) +h1,4218:6764466,19876019:0,0,0 +v1,4222:6764466,20560874:0,393216,0 +(1,4241:6764466,24948162:25818563,4780504,196608 +g1,4241:6764466,24948162 +g1,4241:6764466,24948162 +g1,4241:6567858,24948162 +(1,4241:6567858,24948162:0,4780504,196608 +r1,4290:32779637,24948162:26211779,4977112,196608 +k1,4241:6567857,24948162:-26211780 +) +(1,4241:6567858,24948162:26211779,4780504,196608 +[1,4241:6764466,24948162:25818563,4583896,0 +(1,4224:6764466,20788705:25818563,424439,79822 +(1,4223:6764466,20788705:0,0,0 +g1,4223:6764466,20788705 +g1,4223:6764466,20788705 +g1,4223:6436786,20788705 +(1,4223:6436786,20788705:0,0,0 +) +g1,4223:6764466,20788705 +) +k1,4224:6764466,20788705:0 +h1,4224:12075729,20788705:0,0,0 +k1,4224:32583029,20788705:20507300 +g1,4224:32583029,20788705 +) +(1,4228:6764466,21604632:25818563,424439,79822 +(1,4226:6764466,21604632:0,0,0 +g1,4226:6764466,21604632 +g1,4226:6764466,21604632 +g1,4226:6436786,21604632 +(1,4226:6436786,21604632:0,0,0 +) +g1,4226:6764466,21604632 +) +g1,4228:7760328,21604632 +g1,4228:9088144,21604632 +h1,4228:10747914,21604632:0,0,0 +k1,4228:32583030,21604632:21835116 +g1,4228:32583030,21604632 +) +(1,4230:6764466,22420559:25818563,424439,79822 +(1,4229:6764466,22420559:0,0,0 +g1,4229:6764466,22420559 +g1,4229:6764466,22420559 +g1,4229:6436786,22420559 +(1,4229:6436786,22420559:0,0,0 +) +g1,4229:6764466,22420559 +) +k1,4230:6764466,22420559:0 +h1,4230:9752052,22420559:0,0,0 +k1,4230:32583028,22420559:22830976 +g1,4230:32583028,22420559 +) +(1,4234:6764466,23236486:25818563,424439,112852 +(1,4232:6764466,23236486:0,0,0 +g1,4232:6764466,23236486 +g1,4232:6764466,23236486 +g1,4232:6436786,23236486 +(1,4232:6436786,23236486:0,0,0 +) +g1,4232:6764466,23236486 +) +g1,4234:7760328,23236486 +g1,4234:9088144,23236486 +h1,4234:12075729,23236486:0,0,0 +k1,4234:32583029,23236486:20507300 +g1,4234:32583029,23236486 +) +(1,4236:6764466,24052413:25818563,424439,79822 +(1,4235:6764466,24052413:0,0,0 +g1,4235:6764466,24052413 +g1,4235:6764466,24052413 +g1,4235:6436786,24052413 +(1,4235:6436786,24052413:0,0,0 +) +g1,4235:6764466,24052413 +) +k1,4236:6764466,24052413:0 +h1,4236:13403545,24052413:0,0,0 +k1,4236:32583029,24052413:19179484 +g1,4236:32583029,24052413 +) +(1,4240:6764466,24868340:25818563,424439,79822 +(1,4238:6764466,24868340:0,0,0 +g1,4238:6764466,24868340 +g1,4238:6764466,24868340 +g1,4238:6436786,24868340 +(1,4238:6436786,24868340:0,0,0 +) +g1,4238:6764466,24868340 +) +g1,4240:7760328,24868340 +g1,4240:9088144,24868340 +h1,4240:12739637,24868340:0,0,0 +k1,4240:32583029,24868340:19843392 +g1,4240:32583029,24868340 +) +] +) +g1,4241:32583029,24948162 +g1,4241:6764466,24948162 +g1,4241:6764466,24948162 +g1,4241:32583029,24948162 +g1,4241:32583029,24948162 +) +h1,4241:6764466,25144770:0,0,0 +v1,4245:6764466,25829625:0,393216,0 +(1,4253:6764466,27611635:25818563,2175226,196608 +g1,4253:6764466,27611635 +g1,4253:6764466,27611635 +g1,4253:6567858,27611635 +(1,4253:6567858,27611635:0,2175226,196608 +r1,4290:32779637,27611635:26211779,2371834,196608 +k1,4253:6567857,27611635:-26211780 +) +(1,4253:6567858,27611635:26211779,2175226,196608 +[1,4253:6764466,27611635:25818563,1978618,0 +(1,4247:6764466,26031031:25818563,398014,9908 +(1,4246:6764466,26031031:0,0,0 +g1,4246:6764466,26031031 +g1,4246:6764466,26031031 +g1,4246:6436786,26031031 +(1,4246:6436786,26031031:0,0,0 +) +g1,4246:6764466,26031031 +) +g1,4247:8424236,26031031 +g1,4247:9420098,26031031 +h1,4247:10084006,26031031:0,0,0 +k1,4247:32583030,26031031:22499024 +g1,4247:32583030,26031031 +) +(1,4248:6764466,26715886:25818563,424439,86428 +h1,4248:6764466,26715886:0,0,0 +g1,4248:9420098,26715886 +h1,4248:10747914,26715886:0,0,0 +k1,4248:32583030,26715886:21835116 +g1,4248:32583030,26715886 +) +(1,4252:6764466,27531813:25818563,424439,79822 +(1,4250:6764466,27531813:0,0,0 +g1,4250:6764466,27531813 +g1,4250:6764466,27531813 +g1,4250:6436786,27531813 +(1,4250:6436786,27531813:0,0,0 +) +g1,4250:6764466,27531813 +) +g1,4252:7760328,27531813 +g1,4252:9088144,27531813 +g1,4252:10084006,27531813 +g1,4252:10415960,27531813 +g1,4252:11079868,27531813 +g1,4252:11411822,27531813 +h1,4252:11743776,27531813:0,0,0 +k1,4252:32583028,27531813:20839252 +g1,4252:32583028,27531813 +) +] +) +g1,4253:32583029,27611635 +g1,4253:6764466,27611635 +g1,4253:6764466,27611635 +g1,4253:32583029,27611635 +g1,4253:32583029,27611635 +) +h1,4253:6764466,27808243:0,0,0 +(1,4257:6764466,28673323:25818563,505283,126483 +h1,4256:6764466,28673323:983040,0,0 +g1,4256:10881437,28673323 +g1,4256:12547362,28673323 +g1,4256:13765676,28673323 +g1,4256:17151265,28673323 +g1,4256:19218925,28673323 +g1,4256:21344912,28673323 +k1,4257:32583029,28673323:6767906 +g1,4257:32583029,28673323 +) +v1,4259:6764466,29358178:0,393216,0 +(1,4263:6764466,29665831:25818563,700869,196608 +g1,4263:6764466,29665831 +g1,4263:6764466,29665831 +g1,4263:6567858,29665831 +(1,4263:6567858,29665831:0,700869,196608 +r1,4290:32779637,29665831:26211779,897477,196608 +k1,4263:6567857,29665831:-26211780 +) +(1,4263:6567858,29665831:26211779,700869,196608 +[1,4263:6764466,29665831:25818563,504261,0 +(1,4261:6764466,29586009:25818563,424439,79822 +(1,4260:6764466,29586009:0,0,0 +g1,4260:6764466,29586009 +g1,4260:6764466,29586009 +g1,4260:6436786,29586009 +(1,4260:6436786,29586009:0,0,0 +) +g1,4260:6764466,29586009 +) +g1,4261:9420098,29586009 +g1,4261:10415960,29586009 +h1,4261:12739638,29586009:0,0,0 +k1,4261:32583030,29586009:19843392 +g1,4261:32583030,29586009 +) +] +) +g1,4263:32583029,29665831 +g1,4263:6764466,29665831 +g1,4263:6764466,29665831 +g1,4263:32583029,29665831 +g1,4263:32583029,29665831 +) +h1,4263:6764466,29862439:0,0,0 +] +g1,4265:32583029,29862439 +) +h1,4265:6630773,29862439:0,0,0 +v1,4270:6630773,30727519:0,393216,0 +(1,4279:6630773,32257963:25952256,1923660,0 +g1,4279:6630773,32257963 +g1,4279:6237557,32257963 +r1,4290:6368629,32257963:131072,1923660,0 +g1,4279:6567858,32257963 +g1,4279:6764466,32257963 +[1,4279:6764466,32257963:25818563,1923660,0 +(1,4271:6764466,31035817:25818563,701514,196608 +(1,4270:6764466,31035817:0,701514,196608 +r1,4290:8010564,31035817:1246098,898122,196608 +k1,4270:6764466,31035817:-1246098 +) +(1,4270:6764466,31035817:1246098,701514,196608 +) +g1,4270:8209793,31035817 +g1,4270:8537473,31035817 +g1,4270:9933389,31035817 +g1,4270:11628805,31035817 +g1,4270:13696465,31035817 +g1,4270:16580704,31035817 +g1,4270:17546049,31035817 +g1,4270:20035106,31035817 +g1,4270:21628286,31035817 +g1,4270:23895831,31035817 +(1,4270:23895831,31035817:0,452978,115847 +r1,4290:26012656,31035817:2116825,568825,115847 +k1,4270:23895831,31035817:-2116825 +) +(1,4270:23895831,31035817:2116825,452978,115847 +k1,4270:23895831,31035817:3277 +h1,4270:26009379,31035817:0,411205,112570 +) +g1,4270:26385555,31035817 +(1,4270:26385555,31035817:0,452978,115847 +r1,4290:28502380,31035817:2116825,568825,115847 +k1,4270:26385555,31035817:-2116825 +) +(1,4270:26385555,31035817:2116825,452978,115847 +k1,4270:26385555,31035817:3277 +h1,4270:28499103,31035817:0,411205,112570 +) +g1,4270:28875279,31035817 +g1,4270:30265953,31035817 +g1,4270:31190010,31035817 +k1,4271:32583029,31035817:409979 +g1,4271:32583029,31035817 +) +v1,4273:6764466,31720672:0,393216,0 +(1,4277:6764466,32061355:25818563,733899,196608 +g1,4277:6764466,32061355 +g1,4277:6764466,32061355 +g1,4277:6567858,32061355 +(1,4277:6567858,32061355:0,733899,196608 +r1,4290:32779637,32061355:26211779,930507,196608 +k1,4277:6567857,32061355:-26211780 +) +(1,4277:6567858,32061355:26211779,733899,196608 +[1,4277:6764466,32061355:25818563,537291,0 +(1,4275:6764466,31948503:25818563,424439,112852 +(1,4274:6764466,31948503:0,0,0 +g1,4274:6764466,31948503 +g1,4274:6764466,31948503 +g1,4274:6436786,31948503 +(1,4274:6436786,31948503:0,0,0 +) +g1,4274:6764466,31948503 +) +k1,4275:6764466,31948503:0 +g1,4275:10747914,31948503 +g1,4275:11411822,31948503 +g1,4275:15063316,31948503 +g1,4275:15727224,31948503 +h1,4275:22366303,31948503:0,0,0 +k1,4275:32583029,31948503:10216726 +g1,4275:32583029,31948503 +) +] +) +g1,4277:32583029,32061355 +g1,4277:6764466,32061355 +g1,4277:6764466,32061355 +g1,4277:32583029,32061355 +g1,4277:32583029,32061355 +) +h1,4277:6764466,32257963:0,0,0 +] +g1,4279:32583029,32257963 +) +h1,4279:6630773,32257963:0,0,0 +(1,4281:6630773,35089123:25952256,32768,229376 +(1,4281:6630773,35089123:0,32768,229376 +(1,4281:6630773,35089123:5505024,32768,229376 +r1,4290:12135797,35089123:5505024,262144,229376 +) +k1,4281:6630773,35089123:-5505024 +) +(1,4281:6630773,35089123:25952256,32768,0 +r1,4290:32583029,35089123:25952256,32768,0 +) +) +(1,4281:6630773,36720975:25952256,606339,151780 +(1,4281:6630773,36720975:2464678,582746,14155 +g1,4281:6630773,36720975 +g1,4281:9095451,36720975 +) +g1,4281:11954918,36720975 +k1,4281:32583029,36720975:15379464 +g1,4281:32583029,36720975 +) +(1,4284:6630773,37979271:25952256,513147,126483 +k1,4283:7296880,37979271:188350 +k1,4283:8655704,37979271:188351 +k1,4283:10319269,37979271:188350 +k1,4283:11919921,37979271:188351 +k1,4283:14141853,37979271:188350 +k1,4283:16939192,37979271:188351 +k1,4283:17786834,37979271:188350 +k1,4283:19178426,37979271:188351 +k1,4283:21958070,37979271:188350 +k1,4283:23316894,37979271:188351 +k1,4283:25839636,37979271:188350 +k1,4283:27750929,37979271:188351 +k1,4283:29269660,37979271:188350 +k1,4283:30109439,37979271:188351 +k1,4283:32227169,37979271:188350 +k1,4283:32583029,37979271:0 +) +(1,4284:6630773,38844351:25952256,513147,134348 +g1,4283:8981549,38844351 +g1,4283:9658535,38844351 +g1,4283:11097705,38844351 +g1,4283:12321917,38844351 +g1,4283:14349600,38844351 +h1,4283:15146518,38844351:0,0,0 +h1,4283:16271116,38844351:0,0,0 +g1,4283:16470345,38844351 +g1,4283:18712331,38844351 +k1,4284:32583029,38844351:10276048 +g1,4284:32583029,38844351 +) +(1,4286:6630773,39709431:25952256,505283,134348 +h1,4285:6630773,39709431:983040,0,0 +k1,4285:8422003,39709431:180355 +k1,4285:9805599,39709431:180355 +k1,4285:12264641,39709431:180355 +k1,4285:13313348,39709431:180355 +k1,4285:14485263,39709431:180355 +k1,4285:16424604,39709431:180355 +k1,4285:17256387,39709431:180355 +k1,4285:18461724,39709431:180354 +k1,4285:19972460,39709431:180355 +k1,4285:20804243,39709431:180355 +k1,4285:23188574,39709431:180355 +k1,4285:24051814,39709431:180355 +k1,4285:26839847,39709431:180355 +k1,4285:29492220,39709431:180355 +k1,4285:30864020,39709431:180355 +k1,4285:32583029,39709431:0 +) +(1,4286:6630773,40574511:25952256,513147,134348 +k1,4285:9711509,40574511:211570 +k1,4285:11416646,40574511:211571 +k1,4285:12314378,40574511:211570 +$1,4285:12314378,40574511 +(1,4285:12777062,40672825:311689,339935,0 +) +$1,4285:13088751,40574511 +k1,4285:13300322,40574511:211571 +k1,4285:15079513,40574511:211570 +k1,4285:15646943,40574511:211570 +k1,4285:17836391,40574511:211571 +$1,4285:17836391,40574511 +(1,4285:18299075,40672825:1729233,346358,5505 +) +$1,4285:20028308,40574511 +k1,4285:20413548,40574511:211570 +k1,4285:23517877,40574511:211570 +k1,4285:24721008,40574511:211571 +k1,4285:27904636,40574511:211570 +k1,4285:29851600,40574511:211571 +k1,4285:30833873,40574511:211570 +k1,4285:32583029,40574511:0 +) +(1,4286:6630773,41439591:25952256,505283,134348 +k1,4285:9626369,41439591:201796 +k1,4285:10444204,41439591:201797 +k1,4285:12519019,41439591:201796 +k1,4285:14861876,41439591:201796 +k1,4285:17942669,41439591:201796 +k1,4285:19341153,41439591:201797 +k1,4285:21292105,41439591:201796 +k1,4285:24355858,41439591:201796 +k1,4285:25576739,41439591:201796 +k1,4285:28392767,41439591:201797 +k1,4285:29210601,41439591:201796 +k1,4285:30431482,41439591:201796 +k1,4285:32583029,41439591:0 +) +(1,4286:6630773,42304671:25952256,513147,134348 +k1,4285:9320490,42304671:211145 +k1,4285:11099256,42304671:211145 +k1,4285:12640782,42304671:211145 +k1,4285:15827262,42304671:211145 +k1,4285:17057492,42304671:211145 +k1,4285:18989611,42304671:211144 +k1,4285:23524166,42304671:211145 +k1,4285:26699504,42304671:211145 +k1,4285:28544462,42304671:211145 +k1,4285:29371645,42304671:211145 +k1,4285:31560667,42304671:211145 +k1,4286:32583029,42304671:0 +) +(1,4286:6630773,43169751:25952256,505283,134348 +k1,4285:8707234,43169751:196233 +k1,4285:10859718,43169751:196234 +k1,4285:11803717,43169751:196233 +$1,4285:11803717,43169751 +(1,4285:12266401,43268065:233243,346358,5505 +) +$1,4285:12499644,43169751 +k1,4285:12869547,43169751:196233 +k1,4285:13681819,43169751:196234 +k1,4285:14292892,43169751:196230 +k1,4285:15020622,43169751:196233 +k1,4285:19026464,43169751:196234 +k1,4285:19908859,43169751:196233 +(1,4285:19908859,43169751:0,452978,115847 +r1,4290:21322260,43169751:1413401,568825,115847 +k1,4285:19908859,43169751:-1413401 +) +(1,4285:19908859,43169751:1413401,452978,115847 +k1,4285:19908859,43169751:3277 +h1,4285:21318983,43169751:0,411205,112570 +) +k1,4285:21518493,43169751:196233 +k1,4285:22906172,43169751:196234 +k1,4285:24121490,43169751:196233 +k1,4285:26200572,43169751:196233 +k1,4285:28548353,43169751:196234 +k1,4285:29506114,43169751:196233 +k1,4285:32583029,43169751:0 +) +(1,4286:6630773,44034831:25952256,505283,134348 +g1,4285:7849087,44034831 +g1,4285:10753642,44034831 +g1,4285:12144316,44034831 +g1,4285:15082950,44034831 +g1,4285:17433726,44034831 +g1,4285:18319117,44034831 +(1,4285:18319117,44034831:0,414482,115847 +r1,4290:18677383,44034831:358266,530329,115847 +k1,4285:18319117,44034831:-358266 +) +(1,4285:18319117,44034831:358266,414482,115847 +k1,4285:18319117,44034831:3277 +h1,4285:18674106,44034831:0,411205,112570 +) +k1,4286:32583029,44034831:13731976 +g1,4286:32583029,44034831 +) +(1,4288:6630773,44899911:25952256,513147,115847 +h1,4287:6630773,44899911:983040,0,0 +g1,4287:8766591,44899911 +g1,4287:11169796,44899911 +g1,4287:12388110,44899911 +g1,4287:13893472,44899911 +g1,4287:14889619,44899911 +g1,4287:17958014,44899911 +g1,4287:18816535,44899911 +g1,4287:20034849,44899911 +g1,4287:22211955,44899911 +(1,4287:22211955,44899911:0,452978,115847 +r1,4290:24680492,44899911:2468537,568825,115847 +k1,4287:22211955,44899911:-2468537 +) +(1,4287:22211955,44899911:2468537,452978,115847 +k1,4287:22211955,44899911:3277 +h1,4287:24677215,44899911:0,411205,112570 +) +k1,4288:32583029,44899911:7728867 +g1,4288:32583029,44899911 +) +] +(1,4290:32583029,45706769:0,0,0 +g1,4290:32583029,45706769 +) +) +] +(1,4290:6630773,47279633:25952256,0,0 +h1,4290:6630773,47279633:25952256,0,0 +) +] +(1,4290:4262630,4025873:0,0,0 +[1,4290:-473656,4025873:0,0,0 +(1,4290:-473656,-710413:0,0,0 +(1,4290:-473656,-710413:0,0,0 +g1,4290:-473656,-710413 +) +g1,4290:-473656,-710413 +) +] +) +] +!28032 +}77 +Input:741:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:742:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:743:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:744:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:745:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:746:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:747:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:748:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:749:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:750:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!941 +{78 +[1,4415:4262630,47279633:28320399,43253760,0 +(1,4415:4262630,4025873:0,0,0 +[1,4415:-473656,4025873:0,0,0 +(1,4415:-473656,-710413:0,0,0 +(1,4415:-473656,-644877:0,0,0 +k1,4415:-473656,-644877:-65536 ) -] -[1,5181:3078558,4812305:0,0,0 -(1,5181:3078558,2439708:0,1703936,0 -g1,5181:29030814,2439708 -g1,5181:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,5181:36151628,1915420:16384,1179648,0 +(1,4415:-473656,4736287:0,0,0 +k1,4415:-473656,4736287:5209943 ) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 +g1,4415:-473656,-710413 ) ] ) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,5181:37855564,2439708:1179648,16384,0 +[1,4415:6630773,47279633:25952256,43253760,0 +[1,4415:6630773,4812305:25952256,786432,0 +(1,4415:6630773,4812305:25952256,505283,126483 +(1,4415:6630773,4812305:25952256,505283,126483 +g1,4415:3078558,4812305 +[1,4415:3078558,4812305:0,0,0 +(1,4415:3078558,2439708:0,1703936,0 +k1,4415:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,4415:2537886,2439708:1179648,16384,0 ) +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,4415:3078558,1915420:16384,1179648,0 ) -k1,5181:3078556,2439708:-34777008 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) ] -[1,5181:3078558,4812305:0,0,0 -(1,5181:3078558,49800853:0,16384,2228224 -k1,5181:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,5181:2537886,49800853:1179648,16384,0 ) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,5181:3078558,51504789:16384,1179648,0 ) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 ) ] +[1,4415:3078558,4812305:0,0,0 +(1,4415:3078558,2439708:0,1703936,0 +g1,4415:29030814,2439708 +g1,4415:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,4415:36151628,1915420:16384,1179648,0 ) -) +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) ] -[1,5181:3078558,4812305:0,0,0 -(1,5181:3078558,49800853:0,16384,2228224 -g1,5181:29030814,49800853 -g1,5181:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,5181:36151628,51504789:16384,1179648,0 ) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,4415:37855564,2439708:1179648,16384,0 ) -] ) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,5181:37855564,49800853:1179648,16384,0 +k1,4415:3078556,2439708:-34777008 ) +] +[1,4415:3078558,4812305:0,0,0 +(1,4415:3078558,49800853:0,16384,2228224 +k1,4415:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,4415:2537886,49800853:1179648,16384,0 +) +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,4415:3078558,51504789:16384,1179648,0 ) -k1,5181:3078556,49800853:-34777008 +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) -] -g1,5181:6630773,4812305 -k1,5181:22348274,4812305:14920583 -g1,5181:23970945,4812305 -g1,5181:24793421,4812305 -g1,5181:27528893,4812305 -g1,5181:28938572,4812305 -) -) -] -[1,5181:6630773,45706769:25952256,40108032,0 -(1,5181:6630773,45706769:25952256,40108032,0 -(1,5181:6630773,45706769:0,0,0 -g1,5181:6630773,45706769 -) -[1,5181:6630773,45706769:25952256,40108032,0 -v1,5104:6630773,6254097:0,393216,0 -(1,5104:6630773,16525879:25952256,10664998,196608 -g1,5104:6630773,16525879 -g1,5104:6630773,16525879 -g1,5104:6434165,16525879 -(1,5104:6434165,16525879:0,10664998,196608 -r1,5181:32779637,16525879:26345472,10861606,196608 -k1,5104:6434165,16525879:-26345472 -) -(1,5104:6434165,16525879:26345472,10664998,196608 -[1,5104:6630773,16525879:25952256,10468390,0 -(1,5082:6630773,6461715:25952256,404226,82312 -(1,5081:6630773,6461715:0,0,0 -g1,5081:6630773,6461715 -g1,5081:6630773,6461715 -g1,5081:6303093,6461715 -(1,5081:6303093,6461715:0,0,0 -) -g1,5081:6630773,6461715 -) -g1,5082:8527647,6461715 -g1,5082:9159939,6461715 -g1,5082:11372960,6461715 -h1,5082:12953688,6461715:0,0,0 -k1,5082:32583028,6461715:19629340 -g1,5082:32583028,6461715 -) -(1,5091:6630773,7127893:25952256,404226,6290 -(1,5084:6630773,7127893:0,0,0 -g1,5084:6630773,7127893 -g1,5084:6630773,7127893 -g1,5084:6303093,7127893 -(1,5084:6303093,7127893:0,0,0 -) -g1,5084:6630773,7127893 -) -g1,5091:7579210,7127893 -g1,5091:7895356,7127893 -g1,5091:8211502,7127893 -g1,5091:8527648,7127893 -g1,5091:8843794,7127893 -g1,5091:9159940,7127893 -g1,5091:9476086,7127893 -g1,5091:10108378,7127893 -h1,5091:10424524,7127893:0,0,0 -k1,5091:32583028,7127893:22158504 -g1,5091:32583028,7127893 -) -(1,5091:6630773,7794071:25952256,404226,82312 -h1,5091:6630773,7794071:0,0,0 -g1,5091:7579210,7794071 -g1,5091:9159938,7794071 -g1,5091:9476084,7794071 -g1,5091:10108376,7794071 -h1,5091:10424522,7794071:0,0,0 -k1,5091:32583030,7794071:22158508 -g1,5091:32583030,7794071 -) -(1,5091:6630773,8460249:25952256,404226,82312 -h1,5091:6630773,8460249:0,0,0 -g1,5091:7579210,8460249 -g1,5091:9159938,8460249 -g1,5091:9476084,8460249 -g1,5091:10108376,8460249 -h1,5091:10424522,8460249:0,0,0 -k1,5091:32583030,8460249:22158508 -g1,5091:32583030,8460249 -) -(1,5091:6630773,9126427:25952256,404226,82312 -h1,5091:6630773,9126427:0,0,0 -g1,5091:7579210,9126427 -g1,5091:9159938,9126427 -g1,5091:9476084,9126427 -g1,5091:10108376,9126427 -h1,5091:10424522,9126427:0,0,0 -k1,5091:32583030,9126427:22158508 -g1,5091:32583030,9126427 -) -(1,5091:6630773,9792605:25952256,404226,82312 -h1,5091:6630773,9792605:0,0,0 -g1,5091:7579210,9792605 -g1,5091:9159938,9792605 -g1,5091:9476084,9792605 -g1,5091:10108376,9792605 -h1,5091:10424522,9792605:0,0,0 -k1,5091:32583030,9792605:22158508 -g1,5091:32583030,9792605 -) -(1,5091:6630773,10458783:25952256,404226,82312 -h1,5091:6630773,10458783:0,0,0 -g1,5091:7579210,10458783 -g1,5091:9159938,10458783 -g1,5091:10108375,10458783 -h1,5091:10424521,10458783:0,0,0 -k1,5091:32583029,10458783:22158508 -g1,5091:32583029,10458783 -) -(1,5093:6630773,11780321:25952256,404226,76021 -(1,5092:6630773,11780321:0,0,0 -g1,5092:6630773,11780321 -g1,5092:6630773,11780321 -g1,5092:6303093,11780321 -(1,5092:6303093,11780321:0,0,0 -) -g1,5092:6630773,11780321 -) -k1,5093:6630773,11780321:0 -g1,5093:11372958,11780321 -g1,5093:12321396,11780321 -k1,5093:12321396,11780321:0 -h1,5093:13585979,11780321:0,0,0 -k1,5093:32583029,11780321:18997050 -g1,5093:32583029,11780321 -) -(1,5094:6630773,12446499:25952256,388497,6290 -h1,5094:6630773,12446499:0,0,0 -h1,5094:7895356,12446499:0,0,0 -k1,5094:32583028,12446499:24687672 -g1,5094:32583028,12446499 -) -(1,5103:6630773,13112677:25952256,404226,82312 -(1,5096:6630773,13112677:0,0,0 -g1,5096:6630773,13112677 -g1,5096:6630773,13112677 -g1,5096:6303093,13112677 -(1,5096:6303093,13112677:0,0,0 -) -g1,5096:6630773,13112677 -) -g1,5103:7579210,13112677 -g1,5103:7895356,13112677 -g1,5103:8211502,13112677 -g1,5103:8527648,13112677 -g1,5103:8843794,13112677 -g1,5103:9159940,13112677 -g1,5103:10740669,13112677 -g1,5103:12321398,13112677 -g1,5103:13902127,13112677 -k1,5103:13902127,13112677:0 -h1,5103:15166710,13112677:0,0,0 -k1,5103:32583030,13112677:17416320 -g1,5103:32583030,13112677 -) -(1,5103:6630773,13778855:25952256,404226,82312 -h1,5103:6630773,13778855:0,0,0 -g1,5103:7579210,13778855 -g1,5103:9159938,13778855 -g1,5103:9476084,13778855 -g1,5103:9792230,13778855 -g1,5103:10108376,13778855 -g1,5103:10740668,13778855 -g1,5103:11056814,13778855 -g1,5103:11372960,13778855 -g1,5103:11689106,13778855 -g1,5103:12321398,13778855 -g1,5103:12637544,13778855 -g1,5103:12953690,13778855 -g1,5103:13902127,13778855 -g1,5103:14218273,13778855 -g1,5103:14534419,13778855 -h1,5103:15166710,13778855:0,0,0 -k1,5103:32583030,13778855:17416320 -g1,5103:32583030,13778855 -) -(1,5103:6630773,14445033:25952256,404226,82312 -h1,5103:6630773,14445033:0,0,0 -g1,5103:7579210,14445033 -g1,5103:9159938,14445033 -g1,5103:9476084,14445033 -g1,5103:9792230,14445033 -g1,5103:10108376,14445033 -g1,5103:10740668,14445033 -g1,5103:11056814,14445033 -g1,5103:11372960,14445033 -g1,5103:11689106,14445033 -g1,5103:12321398,14445033 -g1,5103:12637544,14445033 -g1,5103:12953690,14445033 -g1,5103:13902127,14445033 -g1,5103:14218273,14445033 -g1,5103:14534419,14445033 -h1,5103:15166710,14445033:0,0,0 -k1,5103:32583030,14445033:17416320 -g1,5103:32583030,14445033 -) -(1,5103:6630773,15111211:25952256,404226,82312 -h1,5103:6630773,15111211:0,0,0 -g1,5103:7579210,15111211 -g1,5103:9159938,15111211 -g1,5103:9476084,15111211 -g1,5103:9792230,15111211 -g1,5103:10108376,15111211 -g1,5103:10740668,15111211 -g1,5103:11056814,15111211 -g1,5103:11372960,15111211 -g1,5103:11689106,15111211 -g1,5103:12321398,15111211 -g1,5103:12637544,15111211 -g1,5103:12953690,15111211 -g1,5103:13902127,15111211 -g1,5103:14218273,15111211 -g1,5103:14534419,15111211 -h1,5103:15166710,15111211:0,0,0 -k1,5103:32583030,15111211:17416320 -g1,5103:32583030,15111211 -) -(1,5103:6630773,15777389:25952256,404226,82312 -h1,5103:6630773,15777389:0,0,0 -g1,5103:7579210,15777389 -g1,5103:9159938,15777389 -g1,5103:9476084,15777389 -g1,5103:9792230,15777389 -g1,5103:10108376,15777389 -g1,5103:10740668,15777389 -g1,5103:11056814,15777389 -g1,5103:11372960,15777389 -g1,5103:11689106,15777389 -g1,5103:12321398,15777389 -g1,5103:12637544,15777389 -g1,5103:12953690,15777389 -g1,5103:13902127,15777389 -g1,5103:14218273,15777389 -g1,5103:14534419,15777389 -h1,5103:15166710,15777389:0,0,0 -k1,5103:32583030,15777389:17416320 -g1,5103:32583030,15777389 -) -(1,5103:6630773,16443567:25952256,404226,82312 -h1,5103:6630773,16443567:0,0,0 -g1,5103:7579210,16443567 -g1,5103:9159938,16443567 -g1,5103:9476084,16443567 -g1,5103:9792230,16443567 -g1,5103:10108376,16443567 -g1,5103:10740668,16443567 -g1,5103:11056814,16443567 -g1,5103:11372960,16443567 -g1,5103:12321397,16443567 -g1,5103:12637543,16443567 -g1,5103:12953689,16443567 -g1,5103:13902126,16443567 -g1,5103:14218272,16443567 -g1,5103:14534418,16443567 -h1,5103:15166709,16443567:0,0,0 -k1,5103:32583029,16443567:17416320 -g1,5103:32583029,16443567 -) -] -) -g1,5104:32583029,16525879 -g1,5104:6630773,16525879 -g1,5104:6630773,16525879 -g1,5104:32583029,16525879 -g1,5104:32583029,16525879 -) -h1,5104:6630773,16722487:0,0,0 -v1,5108:6630773,18193119:0,393216,0 -(1,5181:6630773,45706769:25952256,27906866,0 -g1,5181:6630773,45706769 -g1,5181:6303093,45706769 -r1,5181:6401397,45706769:98304,27906866,0 -g1,5181:6600626,45706769 -g1,5181:6797234,45706769 -[1,5181:6797234,45706769:25785795,27906866,0 -(1,5109:6797234,18613703:25785795,813800,267386 -(1,5108:6797234,18613703:0,813800,267386 -r1,5181:8134168,18613703:1336934,1081186,267386 -k1,5108:6797234,18613703:-1336934 -) -(1,5108:6797234,18613703:1336934,813800,267386 -) -g1,5108:8333397,18613703 -g1,5108:8661077,18613703 -g1,5108:11537452,18613703 -g1,5108:12840963,18613703 -g1,5108:13787958,18613703 -g1,5108:16504425,18613703 -g1,5108:17389816,18613703 -g1,5108:20070893,18613703 -g1,5108:22730344,18613703 -g1,5108:26050397,18613703 -g1,5108:27020329,18613703 -g1,5108:28826501,18613703 -g1,5108:29708615,18613703 -k1,5109:32583029,18613703:130422 -g1,5109:32583029,18613703 -) -v1,5111:6797234,19620869:0,393216,0 -(1,5142:6797234,30530902:25785795,11303249,196608 -g1,5142:6797234,30530902 -g1,5142:6797234,30530902 -g1,5142:6600626,30530902 -(1,5142:6600626,30530902:0,11303249,196608 -r1,5181:32779637,30530902:26179011,11499857,196608 -k1,5142:6600625,30530902:-26179012 -) -(1,5142:6600626,30530902:26179011,11303249,196608 -[1,5142:6797234,30530902:25785795,11106641,0 -(1,5113:6797234,19828487:25785795,404226,82312 -(1,5112:6797234,19828487:0,0,0 -g1,5112:6797234,19828487 -g1,5112:6797234,19828487 -g1,5112:6469554,19828487 -(1,5112:6469554,19828487:0,0,0 -) -g1,5112:6797234,19828487 -) -g1,5113:8377963,19828487 -g1,5113:9326401,19828487 -g1,5113:13436296,19828487 -g1,5113:15017025,19828487 -g1,5113:15649317,19828487 -h1,5113:16281609,19828487:0,0,0 -k1,5113:32583029,19828487:16301420 -g1,5113:32583029,19828487 -) -(1,5114:6797234,20494665:25785795,388497,6290 -h1,5114:6797234,20494665:0,0,0 -h1,5114:8061817,20494665:0,0,0 -k1,5114:32583029,20494665:24521212 -g1,5114:32583029,20494665 -) -(1,5123:6797234,21160843:25785795,404226,82312 -(1,5116:6797234,21160843:0,0,0 -g1,5116:6797234,21160843 -g1,5116:6797234,21160843 -g1,5116:6469554,21160843 -(1,5116:6469554,21160843:0,0,0 -) -g1,5116:6797234,21160843 -) -g1,5123:7745671,21160843 -g1,5123:8061817,21160843 -g1,5123:8377963,21160843 -g1,5123:8694109,21160843 -g1,5123:9010255,21160843 -g1,5123:9326401,21160843 -g1,5123:10907130,21160843 -g1,5123:12487859,21160843 -g1,5123:14068588,21160843 -k1,5123:14068588,21160843:0 -h1,5123:15333171,21160843:0,0,0 -k1,5123:32583029,21160843:17249858 -g1,5123:32583029,21160843 -) -(1,5123:6797234,21827021:25785795,404226,82312 -h1,5123:6797234,21827021:0,0,0 -g1,5123:7745671,21827021 -g1,5123:9326399,21827021 -g1,5123:9642545,21827021 -g1,5123:9958691,21827021 -g1,5123:10274837,21827021 -g1,5123:10907129,21827021 -g1,5123:11223275,21827021 -g1,5123:11539421,21827021 -g1,5123:11855567,21827021 -g1,5123:12487859,21827021 -g1,5123:12804005,21827021 -g1,5123:13120151,21827021 -g1,5123:14068588,21827021 -g1,5123:14384734,21827021 -g1,5123:14700880,21827021 -h1,5123:15333171,21827021:0,0,0 -k1,5123:32583029,21827021:17249858 -g1,5123:32583029,21827021 -) -(1,5123:6797234,22493199:25785795,404226,82312 -h1,5123:6797234,22493199:0,0,0 -g1,5123:7745671,22493199 -g1,5123:9326399,22493199 -g1,5123:9642545,22493199 -g1,5123:9958691,22493199 -g1,5123:10274837,22493199 -g1,5123:10907129,22493199 -g1,5123:11223275,22493199 -g1,5123:11539421,22493199 -g1,5123:11855567,22493199 -g1,5123:12487859,22493199 -g1,5123:12804005,22493199 -g1,5123:13120151,22493199 -g1,5123:14068588,22493199 -g1,5123:14384734,22493199 -g1,5123:14700880,22493199 -h1,5123:15333171,22493199:0,0,0 -k1,5123:32583029,22493199:17249858 -g1,5123:32583029,22493199 -) -(1,5123:6797234,23159377:25785795,404226,82312 -h1,5123:6797234,23159377:0,0,0 -g1,5123:7745671,23159377 -g1,5123:9326399,23159377 -g1,5123:9642545,23159377 -g1,5123:9958691,23159377 -g1,5123:10274837,23159377 -g1,5123:10907129,23159377 -g1,5123:11223275,23159377 -g1,5123:11539421,23159377 -g1,5123:11855567,23159377 -g1,5123:12487859,23159377 -g1,5123:12804005,23159377 -g1,5123:13120151,23159377 -g1,5123:14068588,23159377 -g1,5123:14384734,23159377 -g1,5123:14700880,23159377 -h1,5123:15333171,23159377:0,0,0 -k1,5123:32583029,23159377:17249858 -g1,5123:32583029,23159377 -) -(1,5123:6797234,23825555:25785795,404226,82312 -h1,5123:6797234,23825555:0,0,0 -g1,5123:7745671,23825555 -g1,5123:9326399,23825555 -g1,5123:9642545,23825555 -g1,5123:9958691,23825555 -g1,5123:10274837,23825555 -g1,5123:10907129,23825555 -g1,5123:11223275,23825555 -g1,5123:11539421,23825555 -g1,5123:11855567,23825555 -g1,5123:12487859,23825555 -g1,5123:12804005,23825555 -g1,5123:13120151,23825555 -g1,5123:14068588,23825555 -g1,5123:14384734,23825555 -g1,5123:14700880,23825555 -h1,5123:15333171,23825555:0,0,0 -k1,5123:32583029,23825555:17249858 -g1,5123:32583029,23825555 -) -(1,5123:6797234,24491733:25785795,404226,82312 -h1,5123:6797234,24491733:0,0,0 -g1,5123:7745671,24491733 -g1,5123:9326399,24491733 -g1,5123:9642545,24491733 -g1,5123:9958691,24491733 -g1,5123:10274837,24491733 -g1,5123:10907129,24491733 -g1,5123:11223275,24491733 -g1,5123:11539421,24491733 -g1,5123:12487858,24491733 -g1,5123:12804004,24491733 -g1,5123:13120150,24491733 -g1,5123:14068587,24491733 -g1,5123:14384733,24491733 -g1,5123:14700879,24491733 -h1,5123:15333170,24491733:0,0,0 -k1,5123:32583030,24491733:17249860 -g1,5123:32583030,24491733 -) -(1,5125:6797234,25813271:25785795,404226,76021 -(1,5124:6797234,25813271:0,0,0 -g1,5124:6797234,25813271 -g1,5124:6797234,25813271 -g1,5124:6469554,25813271 -(1,5124:6469554,25813271:0,0,0 -) -g1,5124:6797234,25813271 -) -k1,5125:6797234,25813271:0 -h1,5125:9642545,25813271:0,0,0 -k1,5125:32583029,25813271:22940484 -g1,5125:32583029,25813271 -) -(1,5129:6797234,26479449:25785795,404226,76021 -(1,5127:6797234,26479449:0,0,0 -g1,5127:6797234,26479449 -g1,5127:6797234,26479449 -g1,5127:6469554,26479449 -(1,5127:6469554,26479449:0,0,0 -) -g1,5127:6797234,26479449 -) -g1,5129:7745671,26479449 -g1,5129:9010254,26479449 -g1,5129:9642546,26479449 -h1,5129:9958692,26479449:0,0,0 -k1,5129:32583028,26479449:22624336 -g1,5129:32583028,26479449 -) -(1,5131:6797234,27800987:25785795,404226,76021 -(1,5130:6797234,27800987:0,0,0 -g1,5130:6797234,27800987 -g1,5130:6797234,27800987 -g1,5130:6469554,27800987 -(1,5130:6469554,27800987:0,0,0 -) -g1,5130:6797234,27800987 -) -h1,5131:9326399,27800987:0,0,0 -k1,5131:32583029,27800987:23256630 -g1,5131:32583029,27800987 -) -(1,5135:6797234,28467165:25785795,404226,76021 -(1,5133:6797234,28467165:0,0,0 -g1,5133:6797234,28467165 -g1,5133:6797234,28467165 -g1,5133:6469554,28467165 -(1,5133:6469554,28467165:0,0,0 -) -g1,5133:6797234,28467165 -) -g1,5135:7745671,28467165 -g1,5135:9010254,28467165 -h1,5135:9642545,28467165:0,0,0 -k1,5135:32583029,28467165:22940484 -g1,5135:32583029,28467165 -) -(1,5137:6797234,29788703:25785795,404226,82312 -(1,5136:6797234,29788703:0,0,0 -g1,5136:6797234,29788703 -g1,5136:6797234,29788703 -g1,5136:6469554,29788703 -(1,5136:6469554,29788703:0,0,0 -) -g1,5136:6797234,29788703 -) -k1,5137:6797234,29788703:0 -g1,5137:9326400,29788703 -h1,5137:9958692,29788703:0,0,0 -k1,5137:32583028,29788703:22624336 -g1,5137:32583028,29788703 -) -(1,5141:6797234,30454881:25785795,404226,76021 -(1,5139:6797234,30454881:0,0,0 -g1,5139:6797234,30454881 -g1,5139:6797234,30454881 -g1,5139:6469554,30454881 -(1,5139:6469554,30454881:0,0,0 -) -g1,5139:6797234,30454881 -) -g1,5141:7745671,30454881 -g1,5141:9010254,30454881 -h1,5141:9642545,30454881:0,0,0 -k1,5141:32583029,30454881:22940484 -g1,5141:32583029,30454881 -) -] -) -g1,5142:32583029,30530902 -g1,5142:6797234,30530902 -g1,5142:6797234,30530902 -g1,5142:32583029,30530902 -g1,5142:32583029,30530902 -) -h1,5142:6797234,30727510:0,0,0 -(1,5146:6797234,31909986:25785795,505283,134348 -h1,5145:6797234,31909986:983040,0,0 -k1,5145:9229821,31909986:252860 -k1,5145:10866801,31909986:252860 -k1,5145:12615847,31909986:252859 -k1,5145:15530124,31909986:252860 -k1,5145:20146371,31909986:252860 -k1,5145:21683737,31909986:252860 -k1,5145:24676001,31909986:252859 -k1,5145:25615023,31909986:252860 -k1,5145:26223743,31909986:252860 -k1,5145:28454480,31909986:252860 -k1,5145:30101290,31909986:252859 -k1,5145:30710010,31909986:252860 -k1,5145:32583029,31909986:0 -) -(1,5146:6797234,32751474:25785795,513147,134348 -k1,5145:8898281,32751474:178221 -k1,5145:11205768,32751474:178222 -k1,5145:13310747,32751474:178221 -k1,5145:17484698,32751474:178221 -k1,5145:19129616,32751474:178222 -k1,5145:19773798,32751474:178221 -k1,5145:22039996,32751474:178221 -(1,5145:22039996,32751474:0,414482,115847 -r1,5181:22398262,32751474:358266,530329,115847 -k1,5145:22039996,32751474:-358266 -) -(1,5145:22039996,32751474:358266,414482,115847 -k1,5145:22039996,32751474:3277 -h1,5145:22394985,32751474:0,411205,112570 -) -k1,5145:22576484,32751474:178222 -k1,5145:23961878,32751474:178221 -k1,5145:26490220,32751474:178221 -k1,5145:27429970,32751474:178222 -k1,5145:30605152,32751474:178221 -k1,5145:32583029,32751474:0 -) -(1,5146:6797234,33592962:25785795,505283,126483 -g1,5145:9865629,33592962 -g1,5145:10826386,33592962 -k1,5146:32583029,33592962:20379076 -g1,5146:32583029,33592962 -) -v1,5148:6797234,34600128:0,393216,0 -(1,5179:6797234,45510161:25785795,11303249,196608 -g1,5179:6797234,45510161 -g1,5179:6797234,45510161 -g1,5179:6600626,45510161 -(1,5179:6600626,45510161:0,11303249,196608 -r1,5181:32779637,45510161:26179011,11499857,196608 -k1,5179:6600625,45510161:-26179012 -) -(1,5179:6600626,45510161:26179011,11303249,196608 -[1,5179:6797234,45510161:25785795,11106641,0 -(1,5150:6797234,34807746:25785795,404226,101187 -(1,5149:6797234,34807746:0,0,0 -g1,5149:6797234,34807746 -g1,5149:6797234,34807746 -g1,5149:6469554,34807746 -(1,5149:6469554,34807746:0,0,0 -) -g1,5149:6797234,34807746 -) -g1,5150:8377963,34807746 -g1,5150:9326401,34807746 -g1,5150:13436296,34807746 -g1,5150:15017025,34807746 -g1,5150:15649317,34807746 -g1,5150:16597755,34807746 -g1,5150:18494629,34807746 -g1,5150:19126921,34807746 -h1,5150:20707650,34807746:0,0,0 -k1,5150:32583029,34807746:11875379 -g1,5150:32583029,34807746 -) -(1,5151:6797234,35473924:25785795,388497,6290 -h1,5151:6797234,35473924:0,0,0 -h1,5151:8061817,35473924:0,0,0 -k1,5151:32583029,35473924:24521212 -g1,5151:32583029,35473924 -) -(1,5160:6797234,36140102:25785795,404226,82312 -(1,5153:6797234,36140102:0,0,0 -g1,5153:6797234,36140102 -g1,5153:6797234,36140102 -g1,5153:6469554,36140102 -(1,5153:6469554,36140102:0,0,0 -) -g1,5153:6797234,36140102 -) -g1,5160:7745671,36140102 -g1,5160:8061817,36140102 -g1,5160:8377963,36140102 -g1,5160:8694109,36140102 -g1,5160:9010255,36140102 -g1,5160:9326401,36140102 -g1,5160:10907130,36140102 -g1,5160:12487859,36140102 -g1,5160:14068588,36140102 -k1,5160:14068588,36140102:0 -h1,5160:15333171,36140102:0,0,0 -k1,5160:32583029,36140102:17249858 -g1,5160:32583029,36140102 -) -(1,5160:6797234,36806280:25785795,404226,82312 -h1,5160:6797234,36806280:0,0,0 -g1,5160:7745671,36806280 -g1,5160:9326399,36806280 -g1,5160:9642545,36806280 -g1,5160:9958691,36806280 -g1,5160:10274837,36806280 -g1,5160:10907129,36806280 -g1,5160:11223275,36806280 -g1,5160:11539421,36806280 -g1,5160:11855567,36806280 -g1,5160:12487859,36806280 -g1,5160:12804005,36806280 -g1,5160:13120151,36806280 -g1,5160:13436297,36806280 -g1,5160:14068589,36806280 -g1,5160:14384735,36806280 -g1,5160:14700881,36806280 -g1,5160:15017027,36806280 -h1,5160:15333173,36806280:0,0,0 -k1,5160:32583029,36806280:17249856 -g1,5160:32583029,36806280 -) -(1,5160:6797234,37472458:25785795,404226,82312 -h1,5160:6797234,37472458:0,0,0 -g1,5160:7745671,37472458 -g1,5160:9326399,37472458 -g1,5160:9642545,37472458 -g1,5160:9958691,37472458 -g1,5160:10274837,37472458 -g1,5160:10907129,37472458 -g1,5160:11223275,37472458 -g1,5160:11539421,37472458 -g1,5160:11855567,37472458 -g1,5160:12487859,37472458 -g1,5160:12804005,37472458 -g1,5160:13120151,37472458 -g1,5160:13436297,37472458 -g1,5160:14068589,37472458 -g1,5160:14384735,37472458 -g1,5160:14700881,37472458 -g1,5160:15017027,37472458 -h1,5160:15333173,37472458:0,0,0 -k1,5160:32583029,37472458:17249856 -g1,5160:32583029,37472458 -) -(1,5160:6797234,38138636:25785795,404226,82312 -h1,5160:6797234,38138636:0,0,0 -g1,5160:7745671,38138636 -g1,5160:9326399,38138636 -g1,5160:9642545,38138636 -g1,5160:9958691,38138636 -g1,5160:10274837,38138636 -g1,5160:10907129,38138636 -g1,5160:11223275,38138636 -g1,5160:11539421,38138636 -g1,5160:12487858,38138636 -g1,5160:12804004,38138636 -g1,5160:13120150,38138636 -g1,5160:14068587,38138636 -g1,5160:14384733,38138636 -g1,5160:14700879,38138636 -h1,5160:15333170,38138636:0,0,0 -k1,5160:32583030,38138636:17249860 -g1,5160:32583030,38138636 -) -(1,5160:6797234,38804814:25785795,404226,82312 -h1,5160:6797234,38804814:0,0,0 -g1,5160:7745671,38804814 -g1,5160:9326399,38804814 -g1,5160:9642545,38804814 -g1,5160:9958691,38804814 -g1,5160:10907128,38804814 -g1,5160:11223274,38804814 -g1,5160:11539420,38804814 -g1,5160:12487857,38804814 -g1,5160:12804003,38804814 -g1,5160:13120149,38804814 -g1,5160:14068586,38804814 -g1,5160:14384732,38804814 -g1,5160:14700878,38804814 -h1,5160:15333169,38804814:0,0,0 -k1,5160:32583029,38804814:17249860 -g1,5160:32583029,38804814 -) -(1,5160:6797234,39470992:25785795,404226,82312 -h1,5160:6797234,39470992:0,0,0 -g1,5160:7745671,39470992 -g1,5160:9326399,39470992 -g1,5160:9642545,39470992 -g1,5160:9958691,39470992 -g1,5160:10907128,39470992 -g1,5160:11223274,39470992 -g1,5160:11539420,39470992 -g1,5160:12487857,39470992 -g1,5160:12804003,39470992 -g1,5160:13120149,39470992 -g1,5160:14068586,39470992 -g1,5160:14384732,39470992 -g1,5160:14700878,39470992 -h1,5160:15333169,39470992:0,0,0 -k1,5160:32583029,39470992:17249860 -g1,5160:32583029,39470992 -) -(1,5162:6797234,40792530:25785795,404226,76021 -(1,5161:6797234,40792530:0,0,0 -g1,5161:6797234,40792530 -g1,5161:6797234,40792530 -g1,5161:6469554,40792530 -(1,5161:6469554,40792530:0,0,0 -) -g1,5161:6797234,40792530 -) -k1,5162:6797234,40792530:0 -h1,5162:9642545,40792530:0,0,0 -k1,5162:32583029,40792530:22940484 -g1,5162:32583029,40792530 -) -(1,5166:6797234,41458708:25785795,404226,76021 -(1,5164:6797234,41458708:0,0,0 -g1,5164:6797234,41458708 -g1,5164:6797234,41458708 -g1,5164:6469554,41458708 -(1,5164:6469554,41458708:0,0,0 -) -g1,5164:6797234,41458708 -) -g1,5166:7745671,41458708 -g1,5166:9010254,41458708 -g1,5166:9642546,41458708 -h1,5166:9958692,41458708:0,0,0 -k1,5166:32583028,41458708:22624336 -g1,5166:32583028,41458708 -) -(1,5168:6797234,42780246:25785795,404226,76021 -(1,5167:6797234,42780246:0,0,0 -g1,5167:6797234,42780246 -g1,5167:6797234,42780246 -g1,5167:6469554,42780246 -(1,5167:6469554,42780246:0,0,0 -) -g1,5167:6797234,42780246 -) -h1,5168:9326399,42780246:0,0,0 -k1,5168:32583029,42780246:23256630 -g1,5168:32583029,42780246 -) -(1,5172:6797234,43446424:25785795,404226,76021 -(1,5170:6797234,43446424:0,0,0 -g1,5170:6797234,43446424 -g1,5170:6797234,43446424 -g1,5170:6469554,43446424 -(1,5170:6469554,43446424:0,0,0 -) -g1,5170:6797234,43446424 -) -g1,5172:7745671,43446424 -g1,5172:9010254,43446424 -h1,5172:9642545,43446424:0,0,0 -k1,5172:32583029,43446424:22940484 -g1,5172:32583029,43446424 -) -(1,5174:6797234,44767962:25785795,404226,82312 -(1,5173:6797234,44767962:0,0,0 -g1,5173:6797234,44767962 -g1,5173:6797234,44767962 -g1,5173:6469554,44767962 -(1,5173:6469554,44767962:0,0,0 -) -g1,5173:6797234,44767962 -) -k1,5174:6797234,44767962:0 -g1,5174:9326400,44767962 -h1,5174:9958692,44767962:0,0,0 -k1,5174:32583028,44767962:22624336 -g1,5174:32583028,44767962 -) -(1,5178:6797234,45434140:25785795,404226,76021 -(1,5176:6797234,45434140:0,0,0 -g1,5176:6797234,45434140 -g1,5176:6797234,45434140 -g1,5176:6469554,45434140 -(1,5176:6469554,45434140:0,0,0 +] ) -g1,5176:6797234,45434140 ) -g1,5178:7745671,45434140 -g1,5178:9010254,45434140 -h1,5178:9642545,45434140:0,0,0 -k1,5178:32583029,45434140:22940484 -g1,5178:32583029,45434140 ) ] +[1,4415:3078558,4812305:0,0,0 +(1,4415:3078558,49800853:0,16384,2228224 +g1,4415:29030814,49800853 +g1,4415:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,4415:36151628,51504789:16384,1179648,0 ) -g1,5179:32583029,45510161 -g1,5179:6797234,45510161 -g1,5179:6797234,45510161 -g1,5179:32583029,45510161 -g1,5179:32583029,45510161 +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 ) -h1,5179:6797234,45706769:0,0,0 ] -g1,5181:32583029,45706769 ) -] -(1,5181:32583029,45706769:0,0,0 -g1,5181:32583029,45706769 +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,4415:37855564,49800853:1179648,16384,0 ) ) -] -(1,5181:6630773,47279633:25952256,0,0 -h1,5181:6630773,47279633:25952256,0,0 +k1,4415:3078556,49800853:-34777008 ) ] -(1,5181:4262630,4025873:0,0,0 -[1,5181:-473656,4025873:0,0,0 -(1,5181:-473656,-710413:0,0,0 -(1,5181:-473656,-710413:0,0,0 -g1,5181:-473656,-710413 +g1,4415:6630773,4812305 +g1,4415:6630773,4812305 +g1,4415:8826229,4812305 +g1,4415:13247287,4812305 +k1,4415:31786111,4812305:18538824 ) -g1,5181:-473656,-710413 ) ] +[1,4415:6630773,45706769:25952256,40108032,0 +(1,4415:6630773,45706769:25952256,40108032,0 +(1,4415:6630773,45706769:0,0,0 +g1,4415:6630773,45706769 ) -] -!25620 -}91 -Input:767:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:768:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:769:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:770:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:771:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:772:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:773:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!662 -{92 -[1,5320:4262630,47279633:28320399,43253760,0 -(1,5320:4262630,4025873:0,0,0 -[1,5320:-473656,4025873:0,0,0 -(1,5320:-473656,-710413:0,0,0 -(1,5320:-473656,-644877:0,0,0 -k1,5320:-473656,-644877:-65536 +[1,4415:6630773,45706769:25952256,40108032,0 +v1,4290:6630773,6254097:0,393216,0 +(1,4298:6630773,8095562:25952256,2234681,196608 +g1,4298:6630773,8095562 +g1,4298:6630773,8095562 +g1,4298:6434165,8095562 +(1,4298:6434165,8095562:0,2234681,196608 +r1,4415:32779637,8095562:26345472,2431289,196608 +k1,4298:6434165,8095562:-26345472 +) +(1,4298:6434165,8095562:26345472,2234681,196608 +[1,4298:6630773,8095562:25952256,2038073,0 +(1,4292:6630773,6481928:25952256,424439,79822 +(1,4291:6630773,6481928:0,0,0 +g1,4291:6630773,6481928 +g1,4291:6630773,6481928 +g1,4291:6303093,6481928 +(1,4291:6303093,6481928:0,0,0 +) +g1,4291:6630773,6481928 +) +g1,4292:8290543,6481928 +g1,4292:9286405,6481928 +h1,4292:13601806,6481928:0,0,0 +k1,4292:32583030,6481928:18981224 +g1,4292:32583030,6481928 +) +(1,4293:6630773,7166783:25952256,407923,6605 +h1,4293:6630773,7166783:0,0,0 +h1,4293:7958589,7166783:0,0,0 +k1,4293:32583029,7166783:24624440 +g1,4293:32583029,7166783 +) +(1,4297:6630773,7982710:25952256,431045,112852 +(1,4295:6630773,7982710:0,0,0 +g1,4295:6630773,7982710 +g1,4295:6630773,7982710 +g1,4295:6303093,7982710 +(1,4295:6303093,7982710:0,0,0 +) +g1,4295:6630773,7982710 +) +g1,4297:7626635,7982710 +g1,4297:7958589,7982710 +g1,4297:9286405,7982710 +g1,4297:10614221,7982710 +g1,4297:11942037,7982710 +g1,4297:13269853,7982710 +g1,4297:14597669,7982710 +g1,4297:15925485,7982710 +g1,4297:17253301,7982710 +g1,4297:18581117,7982710 +g1,4297:19908933,7982710 +g1,4297:21236749,7982710 +h1,4297:22232611,7982710:0,0,0 +k1,4297:32583029,7982710:10350418 +g1,4297:32583029,7982710 +) +] +) +g1,4298:32583029,8095562 +g1,4298:6630773,8095562 +g1,4298:6630773,8095562 +g1,4298:32583029,8095562 +g1,4298:32583029,8095562 +) +h1,4298:6630773,8292170:0,0,0 +(1,4326:6630773,13265198:25952256,4252132,0 +k1,4326:7877917,13265198:1247144 +(1,4301:7877917,13265198:0,0,0 +g1,4301:7877917,13265198 +g1,4301:7877917,13265198 +g1,4301:7550237,13265198 +(1,4301:7550237,13265198:0,0,0 +) +g1,4301:7877917,13265198 +) +(1,4324:7877917,13265198:23457968,4252132,0 +g1,4324:17421117,13265198 +(1,4324:17421117,10379446:0,0,0 +(1,4315:17421117,10379446:0,0,0 +g1,4313:17421117,10379446 +g1,4314:17421117,10379446 +g1,4314:17421117,10379446 +g1,4314:17421117,10379446 +g1,4314:17421117,10379446 +g1,4315:17421117,10379446 +) +(1,4324:17421117,10379446:0,0,0 +g1,4306:17421117,10379446 +(1,4310:17421117,10379446:0,0,0 +(1,4310:17421117,10379446:0,0,0 +g1,4310:17421117,10379446 +g1,4310:17421117,10379446 +g1,4310:17421117,10379446 +g1,4310:17421117,10379446 +g1,4310:17421117,10379446 +(1,4310:17421117,10379446:0,0,0 +(1,4310:17421117,10379446:13078954,1854498,528775 +[1,4310:17421117,10379446:13078954,1854498,528775 +(1,4310:17421117,9198472:13078954,673524,285028 +g1,4309:17421117,9198472 +(1,4309:17421117,9198472:665744,673524,285028 +k1,4309:17620692,9198472:199575 +g1,4309:18086861,9198472 +(1,4309:18086861,9198472:0,660417,271921 +(1,4309:18086861,9198472:0,0,0 +(1,4309:18086861,9198472:0,0,0 +g1,4309:18086861,9198472 +g1,4309:18086861,9198472 +g1,4309:18086861,9198472 +g1,4309:18086861,9198472 +g1,4309:18086861,9198472 +(1,4309:18086861,9198472:0,0,0 +(1,4309:18086861,9198472:331874,388497,0 +(1,4309:18086861,9198472:331874,388497,0 +) +g1,4309:18418735,9198472 +) +) +g1,4309:18086861,9198472 +g1,4309:18086861,9198472 +) +) +g1,4309:18086861,9198472 +) +) +g1,4309:18086861,9198472 +(1,4309:18086861,9198472:665744,673524,285028 +g1,4309:18553030,9198472 +k1,4309:18752605,9198472:199575 +) +g1,4309:18752605,9198472 +(1,4309:18752605,9198472:639530,673524,285028 +k1,4309:18939073,9198472:186468 +g1,4309:19392135,9198472 +(1,4309:19392135,9198472:0,673524,285028 +(1,4309:19392135,9198472:0,0,0 +(1,4309:19392135,9198472:0,0,0 +g1,4309:19392135,9198472 +g1,4309:19392135,9198472 +g1,4309:19392135,9198472 +g1,4309:19392135,9198472 +g1,4309:19392135,9198472 +(1,4309:19392135,9198472:0,0,0 +(1,4309:19392135,9198472:331874,388497,0 +(1,4309:19392135,9198472:331874,388497,0 +) +g1,4309:19724009,9198472 +) +) +g1,4309:19392135,9198472 +g1,4309:19392135,9198472 +) +) +g1,4309:19392135,9198472 +) +) +g1,4309:19392135,9198472 +(1,4309:19392135,9198472:665744,673524,285028 +g1,4309:19871411,9198472 +k1,4309:20057879,9198472:186468 +) +g1,4309:20057879,9198472 +(1,4309:20057879,9198472:639530,673524,285028 +k1,4309:20257454,9198472:199575 +g1,4309:20697409,9198472 +(1,4309:20697409,9198472:0,655699,276639 +(1,4309:20697409,9198472:0,0,0 +(1,4309:20697409,9198472:0,0,0 +g1,4309:20697409,9198472 +g1,4309:20697409,9198472 +g1,4309:20697409,9198472 +g1,4309:20697409,9198472 +g1,4309:20697409,9198472 +(1,4309:20697409,9198472:0,0,0 +(1,4309:20697409,9198472:331874,388497,9436 +(1,4309:20697409,9198472:331874,388497,9436 +) +g1,4309:21029283,9198472 +) +) +g1,4309:20697409,9198472 +g1,4309:20697409,9198472 +) +) +g1,4309:20697409,9198472 +) +) +g1,4309:20697409,9198472 +(1,4309:20697409,9198472:665744,673524,285028 +g1,4309:21163578,9198472 +k1,4309:21363153,9198472:199575 +) +g1,4309:21363153,9198472 +(1,4309:21363153,9198472:639530,673524,285028 +k1,4309:21562728,9198472:199575 +g1,4309:22002683,9198472 +(1,4309:22002683,9198472:0,655699,276639 +(1,4309:22002683,9198472:0,0,0 +(1,4309:22002683,9198472:0,0,0 +g1,4309:22002683,9198472 +g1,4309:22002683,9198472 +g1,4309:22002683,9198472 +g1,4309:22002683,9198472 +g1,4309:22002683,9198472 +(1,4309:22002683,9198472:0,0,0 +(1,4309:22002683,9198472:331874,379060,0 +(1,4309:22002683,9198472:331874,379060,0 ) -(1,5320:-473656,4736287:0,0,0 -k1,5320:-473656,4736287:5209943 +g1,4309:22334557,9198472 ) -g1,5320:-473656,-710413 ) -] +g1,4309:22002683,9198472 +g1,4309:22002683,9198472 ) -[1,5320:6630773,47279633:25952256,43253760,0 -[1,5320:6630773,4812305:25952256,786432,0 -(1,5320:6630773,4812305:25952256,505283,126483 -(1,5320:6630773,4812305:25952256,505283,126483 -g1,5320:3078558,4812305 -[1,5320:3078558,4812305:0,0,0 -(1,5320:3078558,2439708:0,1703936,0 -k1,5320:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,5320:2537886,2439708:1179648,16384,0 ) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,5320:3078558,1915420:16384,1179648,0 +g1,4309:22002683,9198472 ) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 ) -] +g1,4309:22002683,9198472 +(1,4309:22002683,9198472:665744,673524,285028 +g1,4309:22468852,9198472 +k1,4309:22668427,9198472:199575 ) +g1,4309:22668427,9198472 +(1,4309:22668427,9198472:639530,673524,285028 +k1,4309:22868002,9198472:199575 +g1,4309:23307957,9198472 +(1,4309:23307957,9198472:0,650981,281357 +(1,4309:23307957,9198472:0,0,0 +(1,4309:23307957,9198472:0,0,0 +g1,4309:23307957,9198472 +g1,4309:23307957,9198472 +g1,4309:23307957,9198472 +g1,4309:23307957,9198472 +g1,4309:23307957,9198472 +(1,4309:23307957,9198472:0,0,0 +(1,4309:23307957,9198472:331874,379060,9436 +(1,4309:23307957,9198472:331874,379060,9436 ) +g1,4309:23639831,9198472 ) -] -[1,5320:3078558,4812305:0,0,0 -(1,5320:3078558,2439708:0,1703936,0 -g1,5320:29030814,2439708 -g1,5320:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,5320:36151628,1915420:16384,1179648,0 ) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 +g1,4309:23307957,9198472 +g1,4309:23307957,9198472 ) -] ) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,5320:37855564,2439708:1179648,16384,0 +g1,4309:23307957,9198472 ) ) -k1,5320:3078556,2439708:-34777008 +g1,4309:23307957,9198472 +(1,4309:23307957,9198472:665744,673524,285028 +g1,4309:23774126,9198472 +k1,4309:23973701,9198472:199575 ) -] -[1,5320:3078558,4812305:0,0,0 -(1,5320:3078558,49800853:0,16384,2228224 -k1,5320:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,5320:2537886,49800853:1179648,16384,0 +g1,4309:23973701,9198472 +(1,4309:23973701,9198472:639530,673524,285028 +k1,4309:24173276,9198472:199575 +g1,4309:24613231,9198472 +(1,4309:24613231,9198472:0,655699,276639 +(1,4309:24613231,9198472:0,0,0 +(1,4309:24613231,9198472:0,0,0 +g1,4309:24613231,9198472 +g1,4309:24613231,9198472 +g1,4309:24613231,9198472 +g1,4309:24613231,9198472 +g1,4309:24613231,9198472 +(1,4309:24613231,9198472:0,0,0 +(1,4309:24613231,9198472:331874,388497,9436 +(1,4309:24613231,9198472:331874,388497,9436 ) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,5320:3078558,51504789:16384,1179648,0 +g1,4309:24945105,9198472 ) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 ) -] +g1,4309:24613231,9198472 +g1,4309:24613231,9198472 ) ) +g1,4309:24613231,9198472 ) -] -[1,5320:3078558,4812305:0,0,0 -(1,5320:3078558,49800853:0,16384,2228224 -g1,5320:29030814,49800853 -g1,5320:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,5320:36151628,51504789:16384,1179648,0 ) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 +g1,4309:24613231,9198472 +(1,4309:24613231,9198472:665744,673524,285028 +g1,4309:25079400,9198472 +k1,4309:25278975,9198472:199575 ) -] +g1,4309:25278975,9198472 +(1,4309:25278975,9198472:639530,673524,285028 +k1,4309:25478550,9198472:199575 +g1,4309:25918505,9198472 +(1,4309:25918505,9198472:0,655699,276639 +(1,4309:25918505,9198472:0,0,0 +(1,4309:25918505,9198472:0,0,0 +g1,4309:25918505,9198472 +g1,4309:25918505,9198472 +g1,4309:25918505,9198472 +g1,4309:25918505,9198472 +g1,4309:25918505,9198472 +(1,4309:25918505,9198472:0,0,0 +(1,4309:25918505,9198472:331874,379060,0 +(1,4309:25918505,9198472:331874,379060,0 ) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,5320:37855564,49800853:1179648,16384,0 +g1,4309:26250379,9198472 ) ) -k1,5320:3078556,49800853:-34777008 +g1,4309:25918505,9198472 +g1,4309:25918505,9198472 ) -] -g1,5320:6630773,4812305 -g1,5320:6630773,4812305 -g1,5320:9472414,4812305 -g1,5320:10882093,4812305 -g1,5320:16529985,4812305 -g1,5320:18796220,4812305 -k1,5320:31786111,4812305:12989891 -) -) -] -[1,5320:6630773,45706769:25952256,40108032,0 -(1,5320:6630773,45706769:25952256,40108032,0 -(1,5320:6630773,45706769:0,0,0 -g1,5320:6630773,45706769 -) -[1,5320:6630773,45706769:25952256,40108032,0 -v1,5181:6630773,6254097:0,393216,0 -(1,5181:6630773,5860881:25952256,0,0 -g1,5181:6630773,5860881 -g1,5181:6303093,5860881 -r1,5320:6401397,5860881:98304,0,0 -g1,5181:6600626,5860881 -g1,5181:6797234,5860881 -[1,5181:6797234,5860881:25785795,0,0 -] -g1,5181:32583029,5860881 -) -h1,5181:6630773,5860881:0,0,0 -v1,5184:6630773,7226657:0,393216,0 -(1,5231:6630773,24204215:25952256,17370774,0 -g1,5231:6630773,24204215 -g1,5231:6303093,24204215 -r1,5320:6401397,24204215:98304,17370774,0 -g1,5231:6600626,24204215 -g1,5231:6797234,24204215 -[1,5231:6797234,24204215:25785795,17370774,0 -(1,5185:6797234,7588730:25785795,755289,196608 -(1,5184:6797234,7588730:0,755289,196608 -r1,5320:8134168,7588730:1336934,951897,196608 -k1,5184:6797234,7588730:-1336934 -) -(1,5184:6797234,7588730:1336934,755289,196608 -) -k1,5184:8384802,7588730:250634 -k1,5184:8712482,7588730:327680 -k1,5184:9590950,7588730:250633 -k1,5184:10430097,7588730:250634 -k1,5184:11036591,7588730:250634 -(1,5184:11036591,7588730:0,452978,115847 -r1,5320:13153416,7588730:2116825,568825,115847 -k1,5184:11036591,7588730:-2116825 -) -(1,5184:11036591,7588730:2116825,452978,115847 -k1,5184:11036591,7588730:3277 -h1,5184:13150139,7588730:0,411205,112570 -) -k1,5184:13404049,7588730:250633 -k1,5184:14758965,7588730:250634 -k1,5184:16484813,7588730:250633 -k1,5184:17091307,7588730:250634 -k1,5184:19214960,7588730:250634 -k1,5184:20843160,7588730:250633 -k1,5184:21449654,7588730:250634 -k1,5184:23573307,7588730:250634 -k1,5184:26380499,7588730:250633 -k1,5184:26986993,7588730:250634 -k1,5184:29110645,7588730:250633 -k1,5184:31900144,7588730:250634 -k1,5184:32583029,7588730:0 -) -(1,5185:6797234,8430218:25785795,505283,115847 -k1,5184:7829728,8430218:223124 -k1,5184:11095689,8430218:223124 -k1,5184:14253515,8430218:223124 -k1,5184:15092677,8430218:223124 -k1,5184:16081917,8430218:223124 -k1,5184:18176094,8430218:223124 -k1,5184:18755077,8430218:223123 -(1,5184:18755077,8430218:0,452978,115847 -r1,5320:20871902,8430218:2116825,568825,115847 -k1,5184:18755077,8430218:-2116825 -) -(1,5184:18755077,8430218:2116825,452978,115847 -k1,5184:18755077,8430218:3277 -h1,5184:20868625,8430218:0,411205,112570 -) -k1,5184:21095026,8430218:223124 -k1,5184:22450612,8430218:223124 -k1,5184:24148951,8430218:223124 -k1,5184:25058237,8430218:223124 -k1,5184:28810475,8430218:223124 -k1,5184:31812326,8430218:223124 -k1,5185:32583029,8430218:0 -) -(1,5185:6797234,9271706:25785795,513147,134348 -(1,5184:6797234,9271706:0,452978,122846 -r1,5320:9265771,9271706:2468537,575824,122846 -k1,5184:6797234,9271706:-2468537 -) -(1,5184:6797234,9271706:2468537,452978,122846 -k1,5184:6797234,9271706:3277 -h1,5184:9262494,9271706:0,411205,112570 -) -g1,5184:9465000,9271706 -g1,5184:11642106,9271706 -g1,5184:12500627,9271706 -g1,5184:14713122,9271706 -k1,5185:32583029,9271706:16523797 -g1,5185:32583029,9271706 -) -v1,5187:6797234,10462172:0,393216,0 -(1,5195:6797234,11994280:25785795,1925324,196608 -g1,5195:6797234,11994280 -g1,5195:6797234,11994280 -g1,5195:6600626,11994280 -(1,5195:6600626,11994280:0,1925324,196608 -r1,5320:32779637,11994280:26179011,2121932,196608 -k1,5195:6600625,11994280:-26179012 -) -(1,5195:6600626,11994280:26179011,1925324,196608 -[1,5195:6797234,11994280:25785795,1728716,0 -(1,5189:6797234,10654061:25785795,388497,9436 -(1,5188:6797234,10654061:0,0,0 -g1,5188:6797234,10654061 -g1,5188:6797234,10654061 -g1,5188:6469554,10654061 -(1,5188:6469554,10654061:0,0,0 -) -g1,5188:6797234,10654061 -) -g1,5189:8377963,10654061 -g1,5189:9326401,10654061 -h1,5189:10274839,10654061:0,0,0 -k1,5189:32583029,10654061:22308190 -g1,5189:32583029,10654061 -) -(1,5190:6797234,11320239:25785795,404226,76021 -h1,5190:6797234,11320239:0,0,0 -k1,5190:6797234,11320239:0 -h1,5190:9642545,11320239:0,0,0 -k1,5190:32583029,11320239:22940484 -g1,5190:32583029,11320239 -) -(1,5194:6797234,11986417:25785795,379060,7863 -(1,5192:6797234,11986417:0,0,0 -g1,5192:6797234,11986417 -g1,5192:6797234,11986417 -g1,5192:6469554,11986417 -(1,5192:6469554,11986417:0,0,0 -) -g1,5192:6797234,11986417 -) -g1,5194:7745671,11986417 -h1,5194:9010254,11986417:0,0,0 -k1,5194:32583030,11986417:23572776 -g1,5194:32583030,11986417 -) -] -) -g1,5195:32583029,11994280 -g1,5195:6797234,11994280 -g1,5195:6797234,11994280 -g1,5195:32583029,11994280 -g1,5195:32583029,11994280 -) -h1,5195:6797234,12190888:0,0,0 -v1,5199:6797234,13905642:0,393216,0 -(1,5228:6797234,23483319:25785795,9970893,196608 -g1,5228:6797234,23483319 -g1,5228:6797234,23483319 -g1,5228:6600626,23483319 -(1,5228:6600626,23483319:0,9970893,196608 -r1,5320:32779637,23483319:26179011,10167501,196608 -k1,5228:6600625,23483319:-26179012 -) -(1,5228:6600626,23483319:26179011,9970893,196608 -[1,5228:6797234,23483319:25785795,9774285,0 -(1,5201:6797234,14113260:25785795,404226,82312 -(1,5200:6797234,14113260:0,0,0 -g1,5200:6797234,14113260 -g1,5200:6797234,14113260 -g1,5200:6469554,14113260 -(1,5200:6469554,14113260:0,0,0 -) -g1,5200:6797234,14113260 -) -g1,5201:11539420,14113260 -g1,5201:12487858,14113260 -g1,5201:16281608,14113260 -g1,5201:17862337,14113260 -g1,5201:18494629,14113260 -h1,5201:19126921,14113260:0,0,0 -k1,5201:32583029,14113260:13456108 -g1,5201:32583029,14113260 -) -(1,5202:6797234,14779438:25785795,404226,76021 -h1,5202:6797234,14779438:0,0,0 -k1,5202:6797234,14779438:0 -h1,5202:12804002,14779438:0,0,0 -k1,5202:32583030,14779438:19779028 -g1,5202:32583030,14779438 -) -(1,5206:6797234,15445616:25785795,404226,76021 -(1,5204:6797234,15445616:0,0,0 -g1,5204:6797234,15445616 -g1,5204:6797234,15445616 -g1,5204:6469554,15445616 -(1,5204:6469554,15445616:0,0,0 -) -g1,5204:6797234,15445616 -) -g1,5206:7745671,15445616 -g1,5206:9010254,15445616 -g1,5206:9642546,15445616 -h1,5206:9958692,15445616:0,0,0 -k1,5206:32583028,15445616:22624336 -g1,5206:32583028,15445616 -) -(1,5208:6797234,16767154:25785795,404226,82312 -(1,5207:6797234,16767154:0,0,0 -g1,5207:6797234,16767154 -g1,5207:6797234,16767154 -g1,5207:6469554,16767154 -(1,5207:6469554,16767154:0,0,0 -) -g1,5207:6797234,16767154 -) -g1,5208:11539420,16767154 -g1,5208:12487858,16767154 -g1,5208:16281608,16767154 -g1,5208:17862337,16767154 -g1,5208:18494629,16767154 -h1,5208:19126921,16767154:0,0,0 -k1,5208:32583029,16767154:13456108 -g1,5208:32583029,16767154 -) -(1,5209:6797234,17433332:25785795,404226,76021 -h1,5209:6797234,17433332:0,0,0 -k1,5209:6797234,17433332:0 -h1,5209:12804002,17433332:0,0,0 -k1,5209:32583030,17433332:19779028 -g1,5209:32583030,17433332 -) -(1,5213:6797234,18099510:25785795,404226,76021 -(1,5211:6797234,18099510:0,0,0 -g1,5211:6797234,18099510 -g1,5211:6797234,18099510 -g1,5211:6469554,18099510 -(1,5211:6469554,18099510:0,0,0 -) -g1,5211:6797234,18099510 -) -g1,5213:7745671,18099510 -g1,5213:9010254,18099510 -g1,5213:9642546,18099510 -h1,5213:9958692,18099510:0,0,0 -k1,5213:32583028,18099510:22624336 -g1,5213:32583028,18099510 -) -(1,5215:6797234,19421048:25785795,404226,82312 -(1,5214:6797234,19421048:0,0,0 -g1,5214:6797234,19421048 -g1,5214:6797234,19421048 -g1,5214:6469554,19421048 -(1,5214:6469554,19421048:0,0,0 -) -g1,5214:6797234,19421048 -) -g1,5215:11855565,19421048 -g1,5215:12804003,19421048 -g1,5215:15965461,19421048 -g1,5215:17546190,19421048 -g1,5215:18178482,19421048 -h1,5215:18810774,19421048:0,0,0 -k1,5215:32583029,19421048:13772255 -g1,5215:32583029,19421048 -) -(1,5216:6797234,20087226:25785795,404226,76021 -h1,5216:6797234,20087226:0,0,0 -k1,5216:6797234,20087226:0 -h1,5216:13120148,20087226:0,0,0 -k1,5216:32583028,20087226:19462880 -g1,5216:32583028,20087226 -) -(1,5220:6797234,20753404:25785795,404226,76021 -(1,5218:6797234,20753404:0,0,0 -g1,5218:6797234,20753404 -g1,5218:6797234,20753404 -g1,5218:6469554,20753404 -(1,5218:6469554,20753404:0,0,0 -) -g1,5218:6797234,20753404 -) -g1,5220:7745671,20753404 -g1,5220:9010254,20753404 -g1,5220:9642546,20753404 -h1,5220:9958692,20753404:0,0,0 -k1,5220:32583028,20753404:22624336 -g1,5220:32583028,20753404 -) -(1,5222:6797234,22074942:25785795,404226,82312 -(1,5221:6797234,22074942:0,0,0 -g1,5221:6797234,22074942 -g1,5221:6797234,22074942 -g1,5221:6469554,22074942 -(1,5221:6469554,22074942:0,0,0 -) -g1,5221:6797234,22074942 -) -g1,5222:11539420,22074942 -g1,5222:12487858,22074942 -g1,5222:18178481,22074942 -g1,5222:19759210,22074942 -g1,5222:20391502,22074942 -h1,5222:21023794,22074942:0,0,0 -k1,5222:32583029,22074942:11559235 -g1,5222:32583029,22074942 -) -(1,5223:6797234,22741120:25785795,404226,76021 -h1,5223:6797234,22741120:0,0,0 -k1,5223:6797234,22741120:0 -h1,5223:12804002,22741120:0,0,0 -k1,5223:32583030,22741120:19779028 -g1,5223:32583030,22741120 -) -(1,5227:6797234,23407298:25785795,404226,76021 -(1,5225:6797234,23407298:0,0,0 -g1,5225:6797234,23407298 -g1,5225:6797234,23407298 -g1,5225:6469554,23407298 -(1,5225:6469554,23407298:0,0,0 -) -g1,5225:6797234,23407298 -) -g1,5227:7745671,23407298 -g1,5227:9010254,23407298 -g1,5227:9642546,23407298 -h1,5227:9958692,23407298:0,0,0 -k1,5227:32583028,23407298:22624336 -g1,5227:32583028,23407298 -) -] -) -g1,5228:32583029,23483319 -g1,5228:6797234,23483319 -g1,5228:6797234,23483319 -g1,5228:32583029,23483319 -g1,5228:32583029,23483319 -) -h1,5228:6797234,23679927:0,0,0 -] -g1,5231:32583029,24204215 -) -h1,5231:6630773,24204215:0,0,0 -(1,5234:6630773,25569991:25952256,505283,126483 -h1,5233:6630773,25569991:983040,0,0 -k1,5233:9962573,25569991:237190 -k1,5233:11191323,25569991:237190 -k1,5233:13630523,25569991:237190 -k1,5233:14519140,25569991:237189 -k1,5233:17663507,25569991:237190 -k1,5233:18972866,25569991:237190 -k1,5233:20314338,25569991:237190 -k1,5233:22026743,25569991:237190 -k1,5233:23420643,25569991:237190 -k1,5233:24340717,25569991:237189 -k1,5233:26228104,25569991:237190 -k1,5233:30314223,25569991:237190 -k1,5233:31748100,25569991:237190 -k1,5234:32583029,25569991:0 -) -(1,5234:6630773,26411479:25952256,513147,126483 -k1,5233:9820947,26411479:136852 -k1,5233:10617091,26411479:136852 -k1,5233:11524645,26411479:136851 -k1,5233:13311038,26411479:136852 -k1,5233:14552172,26411479:136852 -k1,5233:15436790,26411479:136852 -k1,5233:17997818,26411479:136851 -k1,5233:19528621,26411479:136852 -(1,5233:19528621,26411479:0,452978,115847 -r1,5320:21293734,26411479:1765113,568825,115847 -k1,5233:19528621,26411479:-1765113 -) -(1,5233:19528621,26411479:1765113,452978,115847 -k1,5233:19528621,26411479:3277 -h1,5233:21290457,26411479:0,411205,112570 -) -k1,5233:21604256,26411479:136852 -k1,5233:24509349,26411479:136852 -k1,5233:25332362,26411479:136851 -k1,5233:26863165,26411479:136852 -k1,5233:29907194,26411479:136852 -k1,5233:32583029,26411479:0 -) -(1,5234:6630773,27252967:25952256,513147,134348 -k1,5233:7619725,27252967:218249 -k1,5233:8252799,27252967:218231 -k1,5233:10430574,27252967:218249 -k1,5233:11180321,27252967:218250 -k1,5233:12169273,27252967:218249 -k1,5233:14037064,27252967:218250 -k1,5233:15359595,27252967:218249 -k1,5233:16325611,27252967:218250 -k1,5233:18453579,27252967:218249 -k1,5233:19738100,27252967:218250 -k1,5233:21350300,27252967:218249 -(1,5233:21350300,27252967:0,452978,115847 -r1,5320:24873972,27252967:3523672,568825,115847 -k1,5233:21350300,27252967:-3523672 -) -(1,5233:21350300,27252967:3523672,452978,115847 -k1,5233:21350300,27252967:3277 -h1,5233:24870695,27252967:0,411205,112570 -) -k1,5233:25265892,27252967:218250 -k1,5233:26680828,27252967:218249 -k1,5233:29515275,27252967:218250 -k1,5233:31601955,27252967:218249 -k1,5234:32583029,27252967:0 -) -(1,5234:6630773,28094455:25952256,505283,134348 -k1,5233:8465691,28094455:292200 -k1,5233:9528593,28094455:292199 -k1,5233:11644005,28094455:292200 -$1,5233:11644005,28094455 -$1,5233:12161739,28094455 -k1,5233:12453938,28094455:292199 -k1,5233:14140089,28094455:292200 -k1,5233:16087073,28094455:292200 -k1,5233:20054531,28094455:292199 -k1,5233:22269557,28094455:292200 -k1,5233:22917617,28094455:292200 -k1,5233:24478593,28094455:292199 -k1,5233:26498322,28094455:292200 -k1,5233:27441949,28094455:292199 -$1,5233:27441949,28094455 -k1,5233:27913121,28094455:213616 -k1,5233:28694933,28094455:213615 -k1,5233:29628789,28094455:213615 -k1,5233:30410601,28094455:213615 -$1,5233:30925714,28094455 -k1,5233:31391584,28094455:292200 -k1,5233:32583029,28094455:0 -) -(1,5234:6630773,28935943:25952256,505283,195111 -g1,5233:10022916,28935943 -g1,5233:12232790,28935943 -g1,5233:15034454,28935943 -g1,5233:15995211,28935943 -$1,5233:15995211,28935943 -(1,5233:16457895,29034257:1041564,353698,96797 -) -$1,5233:17499459,28935943 -k1,5234:32583029,28935943:14909900 -g1,5234:32583029,28935943 -) -(1,5315:6630773,44462590:25952256,14610640,0 -k1,5315:11522327,44462590:4891554 -(1,5236:11522327,44462590:0,0,0 -g1,5236:11522327,44462590 -g1,5236:11522327,44462590 -g1,5236:11194647,44462590 -(1,5236:11194647,44462590:0,0,0 -) -g1,5236:11522327,44462590 -) -(1,5313:11522327,44462590:16169148,14610640,0 -g1,5313:17585764,44462590 -(1,5313:17585764,38404395:0,0,0 -(1,5313:17585764,38404395:0,0,0 -(1,5282:17585764,38404395:0,0,0 -(1,5282:17585764,38404395:0,0,0 -g1,5282:17585764,38404395 -g1,5282:17585764,38404395 -g1,5282:17585764,38404395 -g1,5282:17585764,38404395 -g1,5282:17585764,38404395 -(1,5282:17585764,38404395:0,0,0 -(1,5282:17585764,38404395:9188142,8264085,924057 -[1,5282:17585764,38404395:9188142,8264085,924057 -(1,5278:17585764,31064367:9188142,924057,924057 -g1,5277:17585764,31064367 -(1,5277:17585764,31064367:924057,924057,924057 -g1,5277:17585764,31064367 -g1,5277:18509821,31064367 -(1,5277:18509821,31064367:0,924057,924057 -(1,5277:18509821,31064367:0,0,0 -(1,5277:18509821,31064367:0,0,0 -g1,5277:18509821,31064367 -g1,5277:18509821,31064367 -g1,5277:18509821,31064367 -g1,5277:18509821,31064367 -g1,5277:18509821,31064367 -(1,5277:18509821,31064367:0,0,0 -(1,5277:18509821,31064367:1347418,281018,140387 -(1,5277:18509821,31064367:1347418,281018,140387 -$1,5277:18509821,31064367 -h1,5277:18509821,31064367:0,281018,137888 -(1,5277:18879968,31143019:977271,289014,61735 -) -$1,5277:19857239,31064367 -) -g1,5277:19857239,31064367 -) -) -g1,5277:18509821,31064367 -g1,5277:18509821,31064367 -) -) -g1,5277:18509821,31064367 -) -) -g1,5277:18509821,31064367 -(1,5277:18509821,31064367:924057,924057,924057 -g1,5277:19433878,31064367 -g1,5277:19433878,31064367 -) -g1,5277:19433878,31064367 -(1,5277:19433878,31064367:910950,924057,924057 -g1,5277:19433878,31064367 -g1,5277:20344828,31064367 -(1,5277:20344828,31064367:0,924057,924057 -(1,5277:20344828,31064367:0,0,0 -(1,5277:20344828,31064367:0,0,0 -g1,5277:20344828,31064367 -g1,5277:20344828,31064367 -g1,5277:20344828,31064367 -g1,5277:20344828,31064367 -g1,5277:20344828,31064367 -(1,5277:20344828,31064367:0,0,0 -(1,5277:20344828,31064367:1347418,281018,140387 -(1,5277:20344828,31064367:1347418,281018,140387 -$1,5277:20344828,31064367 -h1,5277:20344828,31064367:0,281018,137888 -(1,5277:20714975,31143019:977271,291373,61735 -) -$1,5277:21692246,31064367 -) -g1,5277:21692246,31064367 -) -) -g1,5277:20344828,31064367 -g1,5277:20344828,31064367 -) -) -g1,5277:20344828,31064367 -) -) -g1,5277:20344828,31064367 -(1,5277:20344828,31064367:924057,924057,924057 -g1,5277:21268885,31064367 -g1,5277:21268885,31064367 -) -g1,5277:21268885,31064367 -(1,5277:21268885,31064367:910950,924057,924057 -g1,5277:21268885,31064367 -g1,5277:22179835,31064367 -(1,5277:22179835,31064367:0,924057,924057 -(1,5277:22179835,31064367:0,0,0 -(1,5277:22179835,31064367:0,0,0 -g1,5277:22179835,31064367 -g1,5277:22179835,31064367 -g1,5277:22179835,31064367 -g1,5277:22179835,31064367 -g1,5277:22179835,31064367 -(1,5277:22179835,31064367:0,0,0 -(1,5277:22179835,31064367:1347418,281018,140387 -(1,5277:22179835,31064367:1347418,281018,140387 -$1,5277:22179835,31064367 -h1,5277:22179835,31064367:0,281018,137888 -(1,5277:22549982,31143019:977271,291373,61735 -) -$1,5277:23527253,31064367 -) -g1,5277:23527253,31064367 -) -) -g1,5277:22179835,31064367 -g1,5277:22179835,31064367 -) -) -g1,5277:22179835,31064367 -) -) -g1,5277:22179835,31064367 -(1,5277:22179835,31064367:924057,924057,924057 -g1,5277:23103892,31064367 -g1,5277:23103892,31064367 -) -g1,5277:23103892,31064367 -(1,5277:23103892,31064367:910950,924057,924057 -g1,5277:23103892,31064367 -g1,5277:24014842,31064367 -(1,5277:24014842,31064367:0,924057,924057 -(1,5277:24014842,31064367:0,0,0 -(1,5277:24014842,31064367:0,0,0 -g1,5277:24014842,31064367 -g1,5277:24014842,31064367 -g1,5277:24014842,31064367 -g1,5277:24014842,31064367 -g1,5277:24014842,31064367 -(1,5277:24014842,31064367:0,0,0 -(1,5277:24014842,31064367:549288,281018,137888 -(1,5277:24014842,31064367:549288,281018,137888 -$1,5277:24014842,31064367 -h1,5277:24014842,31064367:0,281018,137888 -g1,5277:24102232,31064367 -$1,5277:24564130,31064367 -) -g1,5277:24564130,31064367 -) -) -g1,5277:24014842,31064367 -g1,5277:24014842,31064367 -) -) -g1,5277:24014842,31064367 -) -) -g1,5277:24014842,31064367 -(1,5277:24014842,31064367:924057,924057,924057 -g1,5277:24938899,31064367 -g1,5277:24938899,31064367 -) -g1,5277:24938899,31064367 -(1,5277:24938899,31064367:910950,924057,924057 -g1,5277:24938899,31064367 -g1,5277:25849849,31064367 -(1,5277:25849849,31064367:0,924057,924057 -(1,5277:25849849,31064367:0,0,0 -(1,5277:25849849,31064367:0,0,0 -g1,5277:25849849,31064367 -g1,5277:25849849,31064367 -g1,5277:25849849,31064367 -g1,5277:25849849,31064367 -g1,5277:25849849,31064367 -(1,5277:25849849,31064367:0,0,0 -(1,5277:25849849,31064367:1540487,281018,140387 -(1,5277:25849849,31064367:1540487,281018,140387 -$1,5277:25849849,31064367 -h1,5277:25849849,31064367:0,281018,137888 -(1,5277:26219996,31143019:1170340,289014,61735 ) -$1,5277:27390336,31064367 -) -g1,5277:27390336,31064367 -) -) -g1,5277:25849849,31064367 -g1,5277:25849849,31064367 -) -) -g1,5277:25849849,31064367 -) -) -g1,5277:25849849,31064367 -(1,5278:25849849,31064367:924057,924057,924057 -g1,5278:26773906,31064367 -g1,5278:26773906,31064367 -) -g1,5278:26773906,31064367 +g1,4309:25918505,9198472 ) -(1,5279:17585764,32899374:9188142,924057,924057 -g1,5278:17585764,32899374 -(1,5278:17585764,32899374:924057,924057,924057 -g1,5278:17585764,32899374 -g1,5278:18509821,32899374 -(1,5278:18509821,32899374:0,924057,924057 -(1,5278:18509821,32899374:0,0,0 -(1,5278:18509821,32899374:0,0,0 -g1,5278:18509821,32899374 -g1,5278:18509821,32899374 -g1,5278:18509821,32899374 -g1,5278:18509821,32899374 -g1,5278:18509821,32899374 -(1,5278:18509821,32899374:0,0,0 -(1,5278:18509821,32899374:1347418,281018,140387 -(1,5278:18509821,32899374:1347418,281018,140387 -$1,5278:18509821,32899374 -h1,5278:18509821,32899374:0,281018,137888 -(1,5278:18879968,32978026:977271,291373,61735 -) -$1,5278:19857239,32899374 -) -g1,5278:19857239,32899374 -) -) -g1,5278:18509821,32899374 -g1,5278:18509821,32899374 -) -) -g1,5278:18509821,32899374 -) -) -g1,5278:18509821,32899374 -(1,5278:18509821,32899374:924057,924057,924057 -g1,5278:19433878,32899374 -g1,5278:19433878,32899374 ) -g1,5278:19433878,32899374 -(1,5278:19433878,32899374:910950,924057,924057 -g1,5278:19433878,32899374 -g1,5278:20344828,32899374 -(1,5278:20344828,32899374:0,924057,924057 -(1,5278:20344828,32899374:0,0,0 -(1,5278:20344828,32899374:0,0,0 -g1,5278:20344828,32899374 -g1,5278:20344828,32899374 -g1,5278:20344828,32899374 -g1,5278:20344828,32899374 -g1,5278:20344828,32899374 -(1,5278:20344828,32899374:0,0,0 -(1,5278:20344828,32899374:1347418,281018,140387 -(1,5278:20344828,32899374:1347418,281018,140387 -$1,5278:20344828,32899374 -h1,5278:20344828,32899374:0,281018,137888 -(1,5278:20714975,32978026:977271,291373,61735 -) -$1,5278:21692246,32899374 -) -g1,5278:21692246,32899374 -) -) -g1,5278:20344828,32899374 -g1,5278:20344828,32899374 -) -) -g1,5278:20344828,32899374 -) -) -g1,5278:20344828,32899374 -(1,5278:20344828,32899374:924057,924057,924057 -g1,5278:21268885,32899374 -g1,5278:21268885,32899374 +g1,4309:25918505,9198472 +(1,4309:25918505,9198472:665744,673524,285028 +g1,4309:26384674,9198472 +k1,4309:26584249,9198472:199575 ) -g1,5278:21268885,32899374 -(1,5278:21268885,32899374:910950,924057,924057 -g1,5278:21268885,32899374 -g1,5278:22179835,32899374 -(1,5278:22179835,32899374:0,924057,924057 -(1,5278:22179835,32899374:0,0,0 -(1,5278:22179835,32899374:0,0,0 -g1,5278:22179835,32899374 -g1,5278:22179835,32899374 -g1,5278:22179835,32899374 -g1,5278:22179835,32899374 -g1,5278:22179835,32899374 -(1,5278:22179835,32899374:0,0,0 -(1,5278:22179835,32899374:1347418,281018,140387 -(1,5278:22179835,32899374:1347418,281018,140387 -$1,5278:22179835,32899374 -h1,5278:22179835,32899374:0,281018,137888 -(1,5278:22549982,32978026:977271,291373,61735 -) -$1,5278:23527253,32899374 -) -g1,5278:23527253,32899374 -) -) -g1,5278:22179835,32899374 -g1,5278:22179835,32899374 -) -) -g1,5278:22179835,32899374 -) -) -g1,5278:22179835,32899374 -(1,5278:22179835,32899374:924057,924057,924057 -g1,5278:23103892,32899374 -g1,5278:23103892,32899374 +g1,4309:26584249,9198472 +(1,4309:26584249,9198472:639530,673524,285028 +k1,4309:26783824,9198472:199575 +g1,4309:27223779,9198472 +(1,4309:27223779,9198472:0,655699,276639 +(1,4309:27223779,9198472:0,0,0 +(1,4309:27223779,9198472:0,0,0 +g1,4309:27223779,9198472 +g1,4309:27223779,9198472 +g1,4309:27223779,9198472 +g1,4309:27223779,9198472 +g1,4309:27223779,9198472 +(1,4309:27223779,9198472:0,0,0 +(1,4309:27223779,9198472:331874,388497,9436 +(1,4309:27223779,9198472:331874,388497,9436 ) -g1,5278:23103892,32899374 -(1,5278:23103892,32899374:910950,924057,924057 -g1,5278:23103892,32899374 -g1,5278:24014842,32899374 -(1,5278:24014842,32899374:0,924057,924057 -(1,5278:24014842,32899374:0,0,0 -(1,5278:24014842,32899374:0,0,0 -g1,5278:24014842,32899374 -g1,5278:24014842,32899374 -g1,5278:24014842,32899374 -g1,5278:24014842,32899374 -g1,5278:24014842,32899374 -(1,5278:24014842,32899374:0,0,0 -(1,5278:24014842,32899374:0,281018,137888 -(1,5278:24014842,32899374:0,281018,137888 -$1,5278:24014842,32899374 -h1,5278:24014842,32899374:0,281018,137888 -$1,5278:24014842,32899374 +g1,4309:27555653,9198472 ) -g1,5278:24014842,32899374 -) -) -g1,5278:24014842,32899374 -g1,5278:24014842,32899374 -) -) -g1,5278:24014842,32899374 -) -) -g1,5278:24014842,32899374 -(1,5278:24014842,32899374:924057,924057,924057 -g1,5278:24938899,32899374 -g1,5278:24938899,32899374 -) -g1,5278:24938899,32899374 -(1,5278:24938899,32899374:910950,924057,924057 -g1,5278:24938899,32899374 -g1,5278:25849849,32899374 -(1,5278:25849849,32899374:0,924057,924057 -(1,5278:25849849,32899374:0,0,0 -(1,5278:25849849,32899374:0,0,0 -g1,5278:25849849,32899374 -g1,5278:25849849,32899374 -g1,5278:25849849,32899374 -g1,5278:25849849,32899374 -g1,5278:25849849,32899374 -(1,5278:25849849,32899374:0,0,0 -(1,5278:25849849,32899374:1540487,281018,140387 -(1,5278:25849849,32899374:1540487,281018,140387 -$1,5278:25849849,32899374 -h1,5278:25849849,32899374:0,281018,137888 -(1,5278:26219996,32978026:1170340,291373,61735 ) -$1,5278:27390336,32899374 +g1,4309:27223779,9198472 +g1,4309:27223779,9198472 ) -g1,5278:27390336,32899374 -) -) -g1,5278:25849849,32899374 -g1,5278:25849849,32899374 -) -) -g1,5278:25849849,32899374 -) -) -g1,5278:25849849,32899374 -(1,5279:25849849,32899374:924057,924057,924057 -g1,5279:26773906,32899374 -g1,5279:26773906,32899374 -) -g1,5279:26773906,32899374 ) -(1,5280:17585764,34734381:9188142,924057,924057 -g1,5279:17585764,34734381 -(1,5279:17585764,34734381:924057,924057,924057 -g1,5279:17585764,34734381 -g1,5279:18509821,34734381 -(1,5279:18509821,34734381:0,924057,924057 -(1,5279:18509821,34734381:0,0,0 -(1,5279:18509821,34734381:0,0,0 -g1,5279:18509821,34734381 -g1,5279:18509821,34734381 -g1,5279:18509821,34734381 -g1,5279:18509821,34734381 -g1,5279:18509821,34734381 -(1,5279:18509821,34734381:0,0,0 -(1,5279:18509821,34734381:1347418,281018,140387 -(1,5279:18509821,34734381:1347418,281018,140387 -$1,5279:18509821,34734381 -h1,5279:18509821,34734381:0,281018,137888 -(1,5279:18879968,34813033:977271,291373,61735 -) -$1,5279:19857239,34734381 -) -g1,5279:19857239,34734381 -) -) -g1,5279:18509821,34734381 -g1,5279:18509821,34734381 -) -) -g1,5279:18509821,34734381 -) -) -g1,5279:18509821,34734381 -(1,5279:18509821,34734381:924057,924057,924057 -g1,5279:19433878,34734381 -g1,5279:19433878,34734381 +g1,4309:27223779,9198472 ) -g1,5279:19433878,34734381 -(1,5279:19433878,34734381:910950,924057,924057 -g1,5279:19433878,34734381 -g1,5279:20344828,34734381 -(1,5279:20344828,34734381:0,924057,924057 -(1,5279:20344828,34734381:0,0,0 -(1,5279:20344828,34734381:0,0,0 -g1,5279:20344828,34734381 -g1,5279:20344828,34734381 -g1,5279:20344828,34734381 -g1,5279:20344828,34734381 -g1,5279:20344828,34734381 -(1,5279:20344828,34734381:0,0,0 -(1,5279:20344828,34734381:1347418,281018,140387 -(1,5279:20344828,34734381:1347418,281018,140387 -$1,5279:20344828,34734381 -h1,5279:20344828,34734381:0,281018,137888 -(1,5279:20714975,34813033:977271,291373,61735 -) -$1,5279:21692246,34734381 -) -g1,5279:21692246,34734381 -) -) -g1,5279:20344828,34734381 -g1,5279:20344828,34734381 -) -) -g1,5279:20344828,34734381 -) -) -g1,5279:20344828,34734381 -(1,5279:20344828,34734381:924057,924057,924057 -g1,5279:21268885,34734381 -g1,5279:21268885,34734381 ) -g1,5279:21268885,34734381 -(1,5279:21268885,34734381:910950,924057,924057 -g1,5279:21268885,34734381 -g1,5279:22179835,34734381 -(1,5279:22179835,34734381:0,924057,924057 -(1,5279:22179835,34734381:0,0,0 -(1,5279:22179835,34734381:0,0,0 -g1,5279:22179835,34734381 -g1,5279:22179835,34734381 -g1,5279:22179835,34734381 -g1,5279:22179835,34734381 -g1,5279:22179835,34734381 -(1,5279:22179835,34734381:0,0,0 -(1,5279:22179835,34734381:1347418,281018,140387 -(1,5279:22179835,34734381:1347418,281018,140387 -$1,5279:22179835,34734381 -h1,5279:22179835,34734381:0,281018,137888 -(1,5279:22549982,34813033:977271,291373,61735 -) -$1,5279:23527253,34734381 -) -g1,5279:23527253,34734381 -) -) -g1,5279:22179835,34734381 -g1,5279:22179835,34734381 -) -) -g1,5279:22179835,34734381 -) -) -g1,5279:22179835,34734381 -(1,5279:22179835,34734381:924057,924057,924057 -g1,5279:23103892,34734381 -g1,5279:23103892,34734381 +g1,4309:27223779,9198472 +(1,4309:27223779,9198472:665744,673524,285028 +g1,4309:27689948,9198472 +k1,4309:27889523,9198472:199575 ) -g1,5279:23103892,34734381 -(1,5279:23103892,34734381:910950,924057,924057 -g1,5279:23103892,34734381 -g1,5279:24014842,34734381 -(1,5279:24014842,34734381:0,924057,924057 -(1,5279:24014842,34734381:0,0,0 -(1,5279:24014842,34734381:0,0,0 -g1,5279:24014842,34734381 -g1,5279:24014842,34734381 -g1,5279:24014842,34734381 -g1,5279:24014842,34734381 -g1,5279:24014842,34734381 -(1,5279:24014842,34734381:0,0,0 -(1,5279:24014842,34734381:0,281018,137888 -(1,5279:24014842,34734381:0,281018,137888 -$1,5279:24014842,34734381 -h1,5279:24014842,34734381:0,281018,137888 -$1,5279:24014842,34734381 -) -g1,5279:24014842,34734381 -) -) -g1,5279:24014842,34734381 -g1,5279:24014842,34734381 -) -) -g1,5279:24014842,34734381 -) -) -g1,5279:24014842,34734381 -(1,5279:24014842,34734381:924057,924057,924057 -g1,5279:24938899,34734381 -g1,5279:24938899,34734381 -) -g1,5279:24938899,34734381 -(1,5279:24938899,34734381:910950,924057,924057 -g1,5279:24938899,34734381 -g1,5279:25849849,34734381 -(1,5279:25849849,34734381:0,924057,924057 -(1,5279:25849849,34734381:0,0,0 -(1,5279:25849849,34734381:0,0,0 -g1,5279:25849849,34734381 -g1,5279:25849849,34734381 -g1,5279:25849849,34734381 -g1,5279:25849849,34734381 -g1,5279:25849849,34734381 -(1,5279:25849849,34734381:0,0,0 -(1,5279:25849849,34734381:1540487,281018,140387 -(1,5279:25849849,34734381:1540487,281018,140387 -$1,5279:25849849,34734381 -h1,5279:25849849,34734381:0,281018,137888 -(1,5279:26219996,34813033:1170340,291373,61735 -) -$1,5279:27390336,34734381 -) -g1,5279:27390336,34734381 -) -) -g1,5279:25849849,34734381 -g1,5279:25849849,34734381 -) -) -g1,5279:25849849,34734381 -) -) -g1,5279:25849849,34734381 -(1,5280:25849849,34734381:924057,924057,924057 -g1,5280:26773906,34734381 -g1,5280:26773906,34734381 -) -g1,5280:26773906,34734381 +g1,4309:27889523,9198472 +(1,4309:27889523,9198472:639530,673524,285028 +k1,4309:28089098,9198472:199575 +g1,4309:28529053,9198472 +(1,4309:28529053,9198472:0,655699,276639 +(1,4309:28529053,9198472:0,0,0 +(1,4309:28529053,9198472:0,0,0 +g1,4309:28529053,9198472 +g1,4309:28529053,9198472 +g1,4309:28529053,9198472 +g1,4309:28529053,9198472 +g1,4309:28529053,9198472 +(1,4309:28529053,9198472:0,0,0 +(1,4309:28529053,9198472:331874,388497,9436 +(1,4309:28529053,9198472:331874,388497,9436 ) -(1,5281:17585764,36569388:9188142,924057,924057 -g1,5280:17585764,36569388 -(1,5280:17585764,36569388:924057,924057,924057 -g1,5280:17585764,36569388 -g1,5280:18509821,36569388 -(1,5280:18509821,36569388:0,924057,924057 -(1,5280:18509821,36569388:0,0,0 -(1,5280:18509821,36569388:0,0,0 -g1,5280:18509821,36569388 -g1,5280:18509821,36569388 -g1,5280:18509821,36569388 -g1,5280:18509821,36569388 -g1,5280:18509821,36569388 -(1,5280:18509821,36569388:0,0,0 -(1,5280:18509821,36569388:607548,341312,137888 -(1,5280:18509821,36569388:607548,341312,137888 -$1,5280:18509821,36569388 -h1,5280:18509821,36569388:0,281018,137888 -g1,5280:18655471,36569388 -$1,5280:19117369,36569388 -) -g1,5280:19117369,36569388 -) -) -g1,5280:18509821,36569388 -g1,5280:18509821,36569388 -) -) -g1,5280:18509821,36569388 -) -) -g1,5280:18509821,36569388 -(1,5280:18509821,36569388:924057,924057,924057 -g1,5280:19433878,36569388 -g1,5280:19433878,36569388 -) -g1,5280:19433878,36569388 -(1,5280:19433878,36569388:910950,924057,924057 -g1,5280:19433878,36569388 -g1,5280:20344828,36569388 -(1,5280:20344828,36569388:0,924057,924057 -(1,5280:20344828,36569388:0,0,0 -(1,5280:20344828,36569388:0,0,0 -g1,5280:20344828,36569388 -g1,5280:20344828,36569388 -g1,5280:20344828,36569388 -g1,5280:20344828,36569388 -g1,5280:20344828,36569388 -(1,5280:20344828,36569388:0,0,0 -(1,5280:20344828,36569388:0,281018,137888 -(1,5280:20344828,36569388:0,281018,137888 -$1,5280:20344828,36569388 -h1,5280:20344828,36569388:0,281018,137888 -$1,5280:20344828,36569388 -) -g1,5280:20344828,36569388 -) -) -g1,5280:20344828,36569388 -g1,5280:20344828,36569388 -) -) -g1,5280:20344828,36569388 -) -) -g1,5280:20344828,36569388 -(1,5280:20344828,36569388:924057,924057,924057 -g1,5280:21268885,36569388 -g1,5280:21268885,36569388 -) -g1,5280:21268885,36569388 -(1,5280:21268885,36569388:910950,924057,924057 -g1,5280:21268885,36569388 -g1,5280:22179835,36569388 -(1,5280:22179835,36569388:0,924057,924057 -(1,5280:22179835,36569388:0,0,0 -(1,5280:22179835,36569388:0,0,0 -g1,5280:22179835,36569388 -g1,5280:22179835,36569388 -g1,5280:22179835,36569388 -g1,5280:22179835,36569388 -g1,5280:22179835,36569388 -(1,5280:22179835,36569388:0,0,0 -(1,5280:22179835,36569388:0,281018,137888 -(1,5280:22179835,36569388:0,281018,137888 -$1,5280:22179835,36569388 -h1,5280:22179835,36569388:0,281018,137888 -$1,5280:22179835,36569388 -) -g1,5280:22179835,36569388 -) -) -g1,5280:22179835,36569388 -g1,5280:22179835,36569388 -) -) -g1,5280:22179835,36569388 -) -) -g1,5280:22179835,36569388 -(1,5280:22179835,36569388:924057,924057,924057 -g1,5280:23103892,36569388 -g1,5280:23103892,36569388 -) -g1,5280:23103892,36569388 -(1,5280:23103892,36569388:910950,924057,924057 -g1,5280:23103892,36569388 -g1,5280:24014842,36569388 -(1,5280:24014842,36569388:0,924057,924057 -(1,5280:24014842,36569388:0,0,0 -(1,5280:24014842,36569388:0,0,0 -g1,5280:24014842,36569388 -g1,5280:24014842,36569388 -g1,5280:24014842,36569388 -g1,5280:24014842,36569388 -g1,5280:24014842,36569388 -(1,5280:24014842,36569388:0,0,0 -(1,5280:24014842,36569388:600208,341312,137888 -(1,5280:24014842,36569388:600208,341312,137888 -$1,5280:24014842,36569388 -h1,5280:24014842,36569388:0,281018,137888 -g1,5280:24160492,36569388 -$1,5280:24615050,36569388 -) -g1,5280:24615050,36569388 -) -) -g1,5280:24014842,36569388 -g1,5280:24014842,36569388 -) -) -g1,5280:24014842,36569388 -) -) -g1,5280:24014842,36569388 -(1,5280:24014842,36569388:924057,924057,924057 -g1,5280:24938899,36569388 -g1,5280:24938899,36569388 -) -g1,5280:24938899,36569388 -(1,5280:24938899,36569388:910950,924057,924057 -g1,5280:24938899,36569388 -g1,5280:25849849,36569388 -(1,5280:25849849,36569388:0,924057,924057 -(1,5280:25849849,36569388:0,0,0 -(1,5280:25849849,36569388:0,0,0 -g1,5280:25849849,36569388 -g1,5280:25849849,36569388 -g1,5280:25849849,36569388 -g1,5280:25849849,36569388 -g1,5280:25849849,36569388 -(1,5280:25849849,36569388:0,0,0 -(1,5280:25849849,36569388:0,281018,137888 -(1,5280:25849849,36569388:0,281018,137888 -$1,5280:25849849,36569388 -h1,5280:25849849,36569388:0,281018,137888 -$1,5280:25849849,36569388 -) -g1,5280:25849849,36569388 -) -) -g1,5280:25849849,36569388 -g1,5280:25849849,36569388 -) -) -g1,5280:25849849,36569388 -) -) -g1,5280:25849849,36569388 -(1,5281:25849849,36569388:924057,924057,924057 -g1,5281:26773906,36569388 -g1,5281:26773906,36569388 -) -g1,5281:26773906,36569388 -) -(1,5282:17585764,38404395:9188142,924057,924057 -g1,5281:17585764,38404395 -(1,5281:17585764,38404395:924057,924057,924057 -g1,5281:17585764,38404395 -g1,5281:18509821,38404395 -(1,5281:18509821,38404395:0,924057,924057 -(1,5281:18509821,38404395:0,0,0 -(1,5281:18509821,38404395:0,0,0 -g1,5281:18509821,38404395 -g1,5281:18509821,38404395 -g1,5281:18509821,38404395 -g1,5281:18509821,38404395 -g1,5281:18509821,38404395 -(1,5281:18509821,38404395:0,0,0 -(1,5281:18509821,38404395:1262877,281018,142607 -(1,5281:18509821,38404395:1262877,281018,142607 -$1,5281:18509821,38404395 -h1,5281:18509821,38404395:0,281018,137888 -(1,5281:18879968,38485267:892730,303170,61735 -) -$1,5281:19772698,38404395 -) -g1,5281:19772698,38404395 -) -) -g1,5281:18509821,38404395 -g1,5281:18509821,38404395 -) -) -g1,5281:18509821,38404395 -) -) -g1,5281:18509821,38404395 -(1,5281:18509821,38404395:924057,924057,924057 -g1,5281:19433878,38404395 -g1,5281:19433878,38404395 +g1,4309:28860927,9198472 ) -g1,5281:19433878,38404395 -(1,5281:19433878,38404395:910950,924057,924057 -g1,5281:19433878,38404395 -g1,5281:20344828,38404395 -(1,5281:20344828,38404395:0,924057,924057 -(1,5281:20344828,38404395:0,0,0 -(1,5281:20344828,38404395:0,0,0 -g1,5281:20344828,38404395 -g1,5281:20344828,38404395 -g1,5281:20344828,38404395 -g1,5281:20344828,38404395 -g1,5281:20344828,38404395 -(1,5281:20344828,38404395:0,0,0 -(1,5281:20344828,38404395:1262877,281018,142607 -(1,5281:20344828,38404395:1262877,281018,142607 -$1,5281:20344828,38404395 -h1,5281:20344828,38404395:0,281018,137888 -(1,5281:20714975,38485267:892730,303170,61735 -) -$1,5281:21607705,38404395 -) -g1,5281:21607705,38404395 -) -) -g1,5281:20344828,38404395 -g1,5281:20344828,38404395 -) -) -g1,5281:20344828,38404395 -) -) -g1,5281:20344828,38404395 -(1,5281:20344828,38404395:924057,924057,924057 -g1,5281:21268885,38404395 -g1,5281:21268885,38404395 ) -g1,5281:21268885,38404395 -(1,5281:21268885,38404395:910950,924057,924057 -g1,5281:21268885,38404395 -g1,5281:22179835,38404395 -(1,5281:22179835,38404395:0,924057,924057 -(1,5281:22179835,38404395:0,0,0 -(1,5281:22179835,38404395:0,0,0 -g1,5281:22179835,38404395 -g1,5281:22179835,38404395 -g1,5281:22179835,38404395 -g1,5281:22179835,38404395 -g1,5281:22179835,38404395 -(1,5281:22179835,38404395:0,0,0 -(1,5281:22179835,38404395:1262877,281018,142607 -(1,5281:22179835,38404395:1262877,281018,142607 -$1,5281:22179835,38404395 -h1,5281:22179835,38404395:0,281018,137888 -(1,5281:22549982,38485267:892730,303170,61735 +g1,4309:28529053,9198472 +g1,4309:28529053,9198472 ) -$1,5281:23442712,38404395 ) -g1,5281:23442712,38404395 +g1,4309:28529053,9198472 ) ) -g1,5281:22179835,38404395 -g1,5281:22179835,38404395 +g1,4309:28529053,9198472 +(1,4309:28529053,9198472:665744,673524,285028 +g1,4309:28995222,9198472 +k1,4309:29194797,9198472:199575 ) +g1,4309:29194797,9198472 +(1,4309:29194797,9198472:639530,673524,285028 +k1,4309:29353923,9198472:159126 +g1,4309:29834327,9198472 +(1,4309:29834327,9198472:0,655699,276639 +(1,4309:29834327,9198472:0,0,0 +(1,4309:29834327,9198472:0,0,0 +g1,4309:29834327,9198472 +g1,4309:29834327,9198472 +g1,4309:29834327,9198472 +g1,4309:29834327,9198472 +g1,4309:29834327,9198472 +(1,4309:29834327,9198472:0,0,0 +(1,4309:29834327,9198472:663749,388497,9436 +(1,4309:29834327,9198472:663749,388497,9436 ) -g1,5281:22179835,38404395 +g1,4309:30498076,9198472 ) ) -g1,5281:22179835,38404395 -(1,5281:22179835,38404395:924057,924057,924057 -g1,5281:23103892,38404395 -g1,5281:23103892,38404395 +g1,4309:29834327,9198472 +g1,4309:29834327,9198472 ) -g1,5281:23103892,38404395 -(1,5281:23103892,38404395:910950,924057,924057 -g1,5281:23103892,38404395 -g1,5281:24014842,38404395 -(1,5281:24014842,38404395:0,924057,924057 -(1,5281:24014842,38404395:0,0,0 -(1,5281:24014842,38404395:0,0,0 -g1,5281:24014842,38404395 -g1,5281:24014842,38404395 -g1,5281:24014842,38404395 -g1,5281:24014842,38404395 -g1,5281:24014842,38404395 -(1,5281:24014842,38404395:0,0,0 -(1,5281:24014842,38404395:0,281018,137888 -(1,5281:24014842,38404395:0,281018,137888 -$1,5281:24014842,38404395 -h1,5281:24014842,38404395:0,281018,137888 -$1,5281:24014842,38404395 ) -g1,5281:24014842,38404395 +g1,4309:29834327,9198472 ) ) -g1,5281:24014842,38404395 -g1,5281:24014842,38404395 +g1,4309:29834327,9198472 +(1,4310:29834327,9198472:665744,673524,285028 +g1,4310:30340945,9198472 +k1,4310:30500071,9198472:159126 ) +g1,4310:30500071,9198472 ) -g1,5281:24014842,38404395 +(1,4310:17421117,10379446:13078954,802713,528775 +g1,4310:17421117,10379446 +(1,4310:17421117,10379446:665744,802713,528775 +g1,4310:17421117,10379446 +g1,4310:18086861,10379446 +(1,4310:18086861,10379446:0,802713,528775 +(1,4310:18086861,10379446:0,0,0 +(1,4310:18086861,10379446:0,0,0 +g1,4310:18086861,10379446 +g1,4310:18086861,10379446 +g1,4310:18086861,10379446 +g1,4310:18086861,10379446 +g1,4310:18086861,10379446 +(1,4310:18086861,10379446:0,0,0 +(1,4310:18086861,10379446:680526,479396,205458 +(1,4310:18086861,10379446:680526,479396,205458 +r1,4415:18767387,10379446:0,684854,205458 ) +g1,4310:18767387,10379446 ) -g1,5281:24014842,38404395 -(1,5281:24014842,38404395:924057,924057,924057 -g1,5281:24938899,38404395 -g1,5281:24938899,38404395 ) -g1,5281:24938899,38404395 -(1,5281:24938899,38404395:910950,924057,924057 -g1,5281:24938899,38404395 -g1,5281:25849849,38404395 -(1,5281:25849849,38404395:0,924057,924057 -(1,5281:25849849,38404395:0,0,0 -(1,5281:25849849,38404395:0,0,0 -g1,5281:25849849,38404395 -g1,5281:25849849,38404395 -g1,5281:25849849,38404395 -g1,5281:25849849,38404395 -g1,5281:25849849,38404395 -(1,5281:25849849,38404395:0,0,0 -(1,5281:25849849,38404395:1455946,281018,142607 -(1,5281:25849849,38404395:1455946,281018,142607 -$1,5281:25849849,38404395 -h1,5281:25849849,38404395:0,281018,137888 -(1,5281:26219996,38485267:1085799,303170,61735 +g1,4310:18086861,10379446 +g1,4310:18086861,10379446 ) -$1,5281:27305795,38404395 ) -g1,5281:27305795,38404395 +g1,4310:18086861,10379446 ) ) -g1,5281:25849849,38404395 -g1,5281:25849849,38404395 +g1,4310:18086861,10379446 +(1,4310:18086861,10379446:665744,802713,528775 +g1,4310:18752605,10379446 +g1,4310:18752605,10379446 ) +g1,4310:18752605,10379446 +(1,4310:18752605,10379446:639530,802713,528775 +g1,4310:18752605,10379446 +g1,4310:19392135,10379446 +(1,4310:19392135,10379446:0,802713,528775 +(1,4310:19392135,10379446:0,0,0 +(1,4310:19392135,10379446:0,0,0 +g1,4310:19392135,10379446 +g1,4310:19392135,10379446 +g1,4310:19392135,10379446 +g1,4310:19392135,10379446 +g1,4310:19392135,10379446 +(1,4310:19392135,10379446:0,0,0 +(1,4310:19392135,10379446:721420,479396,205458 +(1,4310:19392135,10379446:721420,479396,205458 +r1,4415:20113555,10379446:0,684854,205458 ) -g1,5281:25849849,38404395 +g1,4310:20113555,10379446 ) ) -g1,5281:25849849,38404395 -(1,5282:25849849,38404395:924057,924057,924057 -g1,5282:26773906,38404395 -g1,5282:26773906,38404395 +g1,4310:19392135,10379446 +g1,4310:19392135,10379446 ) -g1,5282:26773906,38404395 ) -] +g1,4310:19392135,10379446 ) ) -g1,5282:17585764,38404395 -g1,5282:17585764,38404395 +g1,4310:19392135,10379446 +(1,4310:19392135,10379446:665744,802713,528775 +g1,4310:20057879,10379446 +g1,4310:20057879,10379446 ) +g1,4310:20057879,10379446 +(1,4310:20057879,10379446:639530,802713,528775 +g1,4310:20057879,10379446 +g1,4310:20697409,10379446 +(1,4310:20697409,10379446:0,802713,528775 +(1,4310:20697409,10379446:0,0,0 +(1,4310:20697409,10379446:0,0,0 +g1,4310:20697409,10379446 +g1,4310:20697409,10379446 +g1,4310:20697409,10379446 +g1,4310:20697409,10379446 +g1,4310:20697409,10379446 +(1,4310:20697409,10379446:0,0,0 +(1,4310:20697409,10379446:659554,479396,205458 +(1,4310:20697409,10379446:659554,479396,205458 +r1,4415:21356963,10379446:0,684854,205458 ) -(1,5290:17585764,38404395:0,0,0 -(1,5290:17585764,38404395:0,0,0 -g1,5290:17585764,38404395 -g1,5290:17585764,38404395 -g1,5290:17585764,38404395 -g1,5290:17585764,38404395 -g1,5290:17585764,38404395 -(1,5290:17585764,38404395:0,0,0 -(1,5290:17585764,38404395:9188142,8264085,924057 -[1,5290:17585764,38404395:9188142,8264085,924057 -(1,5286:17585764,31064367:9188142,924057,924057 -g1,5285:17585764,31064367 -(1,5285:17585764,31064367:924057,924057,924057 -g1,5285:17585764,31064367 -g1,5285:18509821,31064367 -(1,5285:18509821,31064367:0,924057,924057 -(1,5285:18509821,31064367:0,0,0 -(1,5285:18509821,31064367:0,0,0 -g1,5285:18509821,31064367 -g1,5285:18509821,31064367 -g1,5285:18509821,31064367 -g1,5285:18509821,31064367 -g1,5285:18509821,31064367 -(1,5285:18509821,31064367:0,0,0 -(1,5285:18509821,31064367:1347418,281018,140387 -(1,5285:18509821,31064367:1347418,281018,140387 -$1,5285:18509821,31064367 -h1,5285:18509821,31064367:0,281018,137888 -(1,5285:18879968,31143019:977271,291373,61735 +g1,4310:21356963,10379446 ) -$1,5285:19857239,31064367 ) -g1,5285:19857239,31064367 +g1,4310:20697409,10379446 +g1,4310:20697409,10379446 ) ) -g1,5285:18509821,31064367 -g1,5285:18509821,31064367 +g1,4310:20697409,10379446 ) ) -g1,5285:18509821,31064367 +g1,4310:20697409,10379446 +(1,4310:20697409,10379446:665744,802713,528775 +g1,4310:21363153,10379446 +g1,4310:21363153,10379446 ) +g1,4310:21363153,10379446 +(1,4310:21363153,10379446:639530,802713,528775 +g1,4310:21363153,10379446 +g1,4310:22002683,10379446 +(1,4310:22002683,10379446:0,802713,528775 +(1,4310:22002683,10379446:0,0,0 +(1,4310:22002683,10379446:0,0,0 +g1,4310:22002683,10379446 +g1,4310:22002683,10379446 +g1,4310:22002683,10379446 +g1,4310:22002683,10379446 +g1,4310:22002683,10379446 +(1,4310:22002683,10379446:0,0,0 +(1,4310:22002683,10379446:721420,479396,205458 +(1,4310:22002683,10379446:721420,479396,205458 +r1,4415:22724103,10379446:0,684854,205458 ) -g1,5285:18509821,31064367 -(1,5285:18509821,31064367:924057,924057,924057 -g1,5285:19433878,31064367 -g1,5285:19433878,31064367 +g1,4310:22724103,10379446 ) -g1,5285:19433878,31064367 -(1,5285:19433878,31064367:910950,924057,924057 -g1,5285:19433878,31064367 -g1,5285:20344828,31064367 -(1,5285:20344828,31064367:0,924057,924057 -(1,5285:20344828,31064367:0,0,0 -(1,5285:20344828,31064367:0,0,0 -g1,5285:20344828,31064367 -g1,5285:20344828,31064367 -g1,5285:20344828,31064367 -g1,5285:20344828,31064367 -g1,5285:20344828,31064367 -(1,5285:20344828,31064367:0,0,0 -(1,5285:20344828,31064367:1347418,281018,140387 -(1,5285:20344828,31064367:1347418,281018,140387 -$1,5285:20344828,31064367 -h1,5285:20344828,31064367:0,281018,137888 -(1,5285:20714975,31143019:977271,291373,61735 ) -$1,5285:21692246,31064367 +g1,4310:22002683,10379446 +g1,4310:22002683,10379446 ) -g1,5285:21692246,31064367 ) +g1,4310:22002683,10379446 ) -g1,5285:20344828,31064367 -g1,5285:20344828,31064367 ) +g1,4310:22002683,10379446 +(1,4310:22002683,10379446:665744,802713,528775 +g1,4310:22668427,10379446 +g1,4310:22668427,10379446 +) +g1,4310:22668427,10379446 +(1,4310:22668427,10379446:639530,802713,528775 +g1,4310:22668427,10379446 +g1,4310:23307957,10379446 +(1,4310:23307957,10379446:0,802713,528775 +(1,4310:23307957,10379446:0,0,0 +(1,4310:23307957,10379446:0,0,0 +g1,4310:23307957,10379446 +g1,4310:23307957,10379446 +g1,4310:23307957,10379446 +g1,4310:23307957,10379446 +g1,4310:23307957,10379446 +(1,4310:23307957,10379446:0,0,0 +(1,4310:23307957,10379446:683147,479396,205458 +(1,4310:23307957,10379446:683147,479396,205458 +r1,4415:23991104,10379446:0,684854,205458 ) -g1,5285:20344828,31064367 +g1,4310:23991104,10379446 ) ) -g1,5285:20344828,31064367 -(1,5285:20344828,31064367:924057,924057,924057 -g1,5285:21268885,31064367 -g1,5285:21268885,31064367 +g1,4310:23307957,10379446 +g1,4310:23307957,10379446 ) -g1,5285:21268885,31064367 -(1,5285:21268885,31064367:910950,924057,924057 -g1,5285:21268885,31064367 -g1,5285:22179835,31064367 -(1,5285:22179835,31064367:0,924057,924057 -(1,5285:22179835,31064367:0,0,0 -(1,5285:22179835,31064367:0,0,0 -g1,5285:22179835,31064367 -g1,5285:22179835,31064367 -g1,5285:22179835,31064367 -g1,5285:22179835,31064367 -g1,5285:22179835,31064367 -(1,5285:22179835,31064367:0,0,0 -(1,5285:22179835,31064367:1347418,281018,140387 -(1,5285:22179835,31064367:1347418,281018,140387 -$1,5285:22179835,31064367 -h1,5285:22179835,31064367:0,281018,137888 -(1,5285:22549982,31143019:977271,291373,61735 -) -$1,5285:23527253,31064367 -) -g1,5285:23527253,31064367 -) -) -g1,5285:22179835,31064367 -g1,5285:22179835,31064367 -) -) -g1,5285:22179835,31064367 -) -) -g1,5285:22179835,31064367 -(1,5285:22179835,31064367:924057,924057,924057 -g1,5285:23103892,31064367 -g1,5285:23103892,31064367 -) -g1,5285:23103892,31064367 -(1,5285:23103892,31064367:910950,924057,924057 -g1,5285:23103892,31064367 -g1,5285:24014842,31064367 -(1,5285:24014842,31064367:0,924057,924057 -(1,5285:24014842,31064367:0,0,0 -(1,5285:24014842,31064367:0,0,0 -g1,5285:24014842,31064367 -g1,5285:24014842,31064367 -g1,5285:24014842,31064367 -g1,5285:24014842,31064367 -g1,5285:24014842,31064367 -(1,5285:24014842,31064367:0,0,0 -(1,5285:24014842,31064367:549288,281018,137888 -(1,5285:24014842,31064367:549288,281018,137888 -$1,5285:24014842,31064367 -h1,5285:24014842,31064367:0,281018,137888 -g1,5285:24102232,31064367 -$1,5285:24564130,31064367 -) -g1,5285:24564130,31064367 -) -) -g1,5285:24014842,31064367 -g1,5285:24014842,31064367 -) -) -g1,5285:24014842,31064367 -) -) -g1,5285:24014842,31064367 -(1,5285:24014842,31064367:924057,924057,924057 -g1,5285:24938899,31064367 -g1,5285:24938899,31064367 -) -g1,5285:24938899,31064367 -(1,5285:24938899,31064367:910950,924057,924057 -g1,5285:24938899,31064367 -g1,5285:25849849,31064367 -(1,5285:25849849,31064367:0,924057,924057 -(1,5285:25849849,31064367:0,0,0 -(1,5285:25849849,31064367:0,0,0 -g1,5285:25849849,31064367 -g1,5285:25849849,31064367 -g1,5285:25849849,31064367 -g1,5285:25849849,31064367 -g1,5285:25849849,31064367 -(1,5285:25849849,31064367:0,0,0 -(1,5285:25849849,31064367:1540487,281018,140387 -(1,5285:25849849,31064367:1540487,281018,140387 -$1,5285:25849849,31064367 -h1,5285:25849849,31064367:0,281018,137888 -(1,5285:26219996,31143019:1170340,291373,61735 ) -$1,5285:27390336,31064367 -) -g1,5285:27390336,31064367 -) -) -g1,5285:25849849,31064367 -g1,5285:25849849,31064367 -) -) -g1,5285:25849849,31064367 -) -) -g1,5285:25849849,31064367 -(1,5286:25849849,31064367:924057,924057,924057 -g1,5286:26773906,31064367 -g1,5286:26773906,31064367 -) -g1,5286:26773906,31064367 +g1,4310:23307957,10379446 ) -(1,5287:17585764,32899374:9188142,924057,924057 -g1,5286:17585764,32899374 -(1,5286:17585764,32899374:924057,924057,924057 -g1,5286:17585764,32899374 -g1,5286:18509821,32899374 -(1,5286:18509821,32899374:0,924057,924057 -(1,5286:18509821,32899374:0,0,0 -(1,5286:18509821,32899374:0,0,0 -g1,5286:18509821,32899374 -g1,5286:18509821,32899374 -g1,5286:18509821,32899374 -g1,5286:18509821,32899374 -g1,5286:18509821,32899374 -(1,5286:18509821,32899374:0,0,0 -(1,5286:18509821,32899374:1347418,281018,140387 -(1,5286:18509821,32899374:1347418,281018,140387 -$1,5286:18509821,32899374 -h1,5286:18509821,32899374:0,281018,137888 -(1,5286:18879968,32978026:977271,291373,61735 -) -$1,5286:19857239,32899374 -) -g1,5286:19857239,32899374 -) -) -g1,5286:18509821,32899374 -g1,5286:18509821,32899374 -) -) -g1,5286:18509821,32899374 -) -) -g1,5286:18509821,32899374 -(1,5286:18509821,32899374:924057,924057,924057 -g1,5286:19433878,32899374 -g1,5286:19433878,32899374 ) -g1,5286:19433878,32899374 -(1,5286:19433878,32899374:910950,924057,924057 -g1,5286:19433878,32899374 -g1,5286:20344828,32899374 -(1,5286:20344828,32899374:0,924057,924057 -(1,5286:20344828,32899374:0,0,0 -(1,5286:20344828,32899374:0,0,0 -g1,5286:20344828,32899374 -g1,5286:20344828,32899374 -g1,5286:20344828,32899374 -g1,5286:20344828,32899374 -g1,5286:20344828,32899374 -(1,5286:20344828,32899374:0,0,0 -(1,5286:20344828,32899374:1347418,281018,140387 -(1,5286:20344828,32899374:1347418,281018,140387 -$1,5286:20344828,32899374 -h1,5286:20344828,32899374:0,281018,137888 -(1,5286:20714975,32978026:977271,291373,61735 -) -$1,5286:21692246,32899374 -) -g1,5286:21692246,32899374 -) -) -g1,5286:20344828,32899374 -g1,5286:20344828,32899374 -) -) -g1,5286:20344828,32899374 -) -) -g1,5286:20344828,32899374 -(1,5286:20344828,32899374:924057,924057,924057 -g1,5286:21268885,32899374 -g1,5286:21268885,32899374 +g1,4310:23307957,10379446 +(1,4310:23307957,10379446:665744,802713,528775 +g1,4310:23973701,10379446 +g1,4310:23973701,10379446 +) +g1,4310:23973701,10379446 +(1,4310:23973701,10379446:639530,802713,528775 +g1,4310:23973701,10379446 +g1,4310:24613231,10379446 +(1,4310:24613231,10379446:0,802713,528775 +(1,4310:24613231,10379446:0,0,0 +(1,4310:24613231,10379446:0,0,0 +g1,4310:24613231,10379446 +g1,4310:24613231,10379446 +g1,4310:24613231,10379446 +g1,4310:24613231,10379446 +g1,4310:24613231,10379446 +(1,4310:24613231,10379446:0,0,0 +(1,4310:24613231,10379446:583533,479396,205458 +(1,4310:24613231,10379446:583533,479396,205458 +r1,4415:25196764,10379446:0,684854,205458 ) -g1,5286:21268885,32899374 -(1,5286:21268885,32899374:910950,924057,924057 -g1,5286:21268885,32899374 -g1,5286:22179835,32899374 -(1,5286:22179835,32899374:0,924057,924057 -(1,5286:22179835,32899374:0,0,0 -(1,5286:22179835,32899374:0,0,0 -g1,5286:22179835,32899374 -g1,5286:22179835,32899374 -g1,5286:22179835,32899374 -g1,5286:22179835,32899374 -g1,5286:22179835,32899374 -(1,5286:22179835,32899374:0,0,0 -(1,5286:22179835,32899374:1347418,281018,140387 -(1,5286:22179835,32899374:1347418,281018,140387 -$1,5286:22179835,32899374 -h1,5286:22179835,32899374:0,281018,137888 -(1,5286:22549982,32978026:977271,291373,61735 -) -$1,5286:23527253,32899374 -) -g1,5286:23527253,32899374 -) -) -g1,5286:22179835,32899374 -g1,5286:22179835,32899374 -) -) -g1,5286:22179835,32899374 -) -) -g1,5286:22179835,32899374 -(1,5286:22179835,32899374:924057,924057,924057 -g1,5286:23103892,32899374 -g1,5286:23103892,32899374 +g1,4310:25196764,10379446 ) -g1,5286:23103892,32899374 -(1,5286:23103892,32899374:910950,924057,924057 -g1,5286:23103892,32899374 -g1,5286:24014842,32899374 -(1,5286:24014842,32899374:0,924057,924057 -(1,5286:24014842,32899374:0,0,0 -(1,5286:24014842,32899374:0,0,0 -g1,5286:24014842,32899374 -g1,5286:24014842,32899374 -g1,5286:24014842,32899374 -g1,5286:24014842,32899374 -g1,5286:24014842,32899374 -(1,5286:24014842,32899374:0,0,0 -(1,5286:24014842,32899374:0,281018,137888 -(1,5286:24014842,32899374:0,281018,137888 -$1,5286:24014842,32899374 -h1,5286:24014842,32899374:0,281018,137888 -$1,5286:24014842,32899374 ) -g1,5286:24014842,32899374 -) -) -g1,5286:24014842,32899374 -g1,5286:24014842,32899374 -) -) -g1,5286:24014842,32899374 -) -) -g1,5286:24014842,32899374 -(1,5286:24014842,32899374:924057,924057,924057 -g1,5286:24938899,32899374 -g1,5286:24938899,32899374 -) -g1,5286:24938899,32899374 -(1,5286:24938899,32899374:910950,924057,924057 -g1,5286:24938899,32899374 -g1,5286:25849849,32899374 -(1,5286:25849849,32899374:0,924057,924057 -(1,5286:25849849,32899374:0,0,0 -(1,5286:25849849,32899374:0,0,0 -g1,5286:25849849,32899374 -g1,5286:25849849,32899374 -g1,5286:25849849,32899374 -g1,5286:25849849,32899374 -g1,5286:25849849,32899374 -(1,5286:25849849,32899374:0,0,0 -(1,5286:25849849,32899374:1540487,281018,140387 -(1,5286:25849849,32899374:1540487,281018,140387 -$1,5286:25849849,32899374 -h1,5286:25849849,32899374:0,281018,137888 -(1,5286:26219996,32978026:1170340,291373,61735 +g1,4310:24613231,10379446 +g1,4310:24613231,10379446 ) -$1,5286:27390336,32899374 ) -g1,5286:27390336,32899374 -) -) -g1,5286:25849849,32899374 -g1,5286:25849849,32899374 -) -) -g1,5286:25849849,32899374 -) -) -g1,5286:25849849,32899374 -(1,5287:25849849,32899374:924057,924057,924057 -g1,5287:26773906,32899374 -g1,5287:26773906,32899374 -) -g1,5287:26773906,32899374 +g1,4310:24613231,10379446 ) -(1,5288:17585764,34734381:9188142,924057,924057 -g1,5287:17585764,34734381 -(1,5287:17585764,34734381:924057,924057,924057 -g1,5287:17585764,34734381 -g1,5287:18509821,34734381 -(1,5287:18509821,34734381:0,924057,924057 -(1,5287:18509821,34734381:0,0,0 -(1,5287:18509821,34734381:0,0,0 -g1,5287:18509821,34734381 -g1,5287:18509821,34734381 -g1,5287:18509821,34734381 -g1,5287:18509821,34734381 -g1,5287:18509821,34734381 -(1,5287:18509821,34734381:0,0,0 -(1,5287:18509821,34734381:1347418,281018,140387 -(1,5287:18509821,34734381:1347418,281018,140387 -$1,5287:18509821,34734381 -h1,5287:18509821,34734381:0,281018,137888 -(1,5287:18879968,34813033:977271,291373,61735 -) -$1,5287:19857239,34734381 -) -g1,5287:19857239,34734381 -) -) -g1,5287:18509821,34734381 -g1,5287:18509821,34734381 -) -) -g1,5287:18509821,34734381 -) -) -g1,5287:18509821,34734381 -(1,5287:18509821,34734381:924057,924057,924057 -g1,5287:19433878,34734381 -g1,5287:19433878,34734381 ) -g1,5287:19433878,34734381 -(1,5287:19433878,34734381:910950,924057,924057 -g1,5287:19433878,34734381 -g1,5287:20344828,34734381 -(1,5287:20344828,34734381:0,924057,924057 -(1,5287:20344828,34734381:0,0,0 -(1,5287:20344828,34734381:0,0,0 -g1,5287:20344828,34734381 -g1,5287:20344828,34734381 -g1,5287:20344828,34734381 -g1,5287:20344828,34734381 -g1,5287:20344828,34734381 -(1,5287:20344828,34734381:0,0,0 -(1,5287:20344828,34734381:1347418,281018,140387 -(1,5287:20344828,34734381:1347418,281018,140387 -$1,5287:20344828,34734381 -h1,5287:20344828,34734381:0,281018,137888 -(1,5287:20714975,34813033:977271,291373,61735 -) -$1,5287:21692246,34734381 -) -g1,5287:21692246,34734381 -) -) -g1,5287:20344828,34734381 -g1,5287:20344828,34734381 -) -) -g1,5287:20344828,34734381 -) -) -g1,5287:20344828,34734381 -(1,5287:20344828,34734381:924057,924057,924057 -g1,5287:21268885,34734381 -g1,5287:21268885,34734381 +g1,4310:24613231,10379446 +(1,4310:24613231,10379446:665744,802713,528775 +g1,4310:25278975,10379446 +g1,4310:25278975,10379446 +) +g1,4310:25278975,10379446 +(1,4310:25278975,10379446:639530,802713,528775 +g1,4310:25278975,10379446 +g1,4310:25918505,10379446 +(1,4310:25918505,10379446:0,802713,528775 +(1,4310:25918505,10379446:0,0,0 +(1,4310:25918505,10379446:0,0,0 +g1,4310:25918505,10379446 +g1,4310:25918505,10379446 +g1,4310:25918505,10379446 +g1,4310:25918505,10379446 +g1,4310:25918505,10379446 +(1,4310:25918505,10379446:0,0,0 +(1,4310:25918505,10379446:913310,479396,205458 +(1,4310:25918505,10379446:913310,479396,205458 +r1,4415:26831815,10379446:0,684854,205458 ) -g1,5287:21268885,34734381 -(1,5287:21268885,34734381:910950,924057,924057 -g1,5287:21268885,34734381 -g1,5287:22179835,34734381 -(1,5287:22179835,34734381:0,924057,924057 -(1,5287:22179835,34734381:0,0,0 -(1,5287:22179835,34734381:0,0,0 -g1,5287:22179835,34734381 -g1,5287:22179835,34734381 -g1,5287:22179835,34734381 -g1,5287:22179835,34734381 -g1,5287:22179835,34734381 -(1,5287:22179835,34734381:0,0,0 -(1,5287:22179835,34734381:1347418,281018,140387 -(1,5287:22179835,34734381:1347418,281018,140387 -$1,5287:22179835,34734381 -h1,5287:22179835,34734381:0,281018,137888 -(1,5287:22549982,34813033:977271,291373,61735 -) -$1,5287:23527253,34734381 -) -g1,5287:23527253,34734381 -) -) -g1,5287:22179835,34734381 -g1,5287:22179835,34734381 -) -) -g1,5287:22179835,34734381 -) -) -g1,5287:22179835,34734381 -(1,5287:22179835,34734381:924057,924057,924057 -g1,5287:23103892,34734381 -g1,5287:23103892,34734381 +g1,4310:26831815,10379446 ) -g1,5287:23103892,34734381 -(1,5287:23103892,34734381:910950,924057,924057 -g1,5287:23103892,34734381 -g1,5287:24014842,34734381 -(1,5287:24014842,34734381:0,924057,924057 -(1,5287:24014842,34734381:0,0,0 -(1,5287:24014842,34734381:0,0,0 -g1,5287:24014842,34734381 -g1,5287:24014842,34734381 -g1,5287:24014842,34734381 -g1,5287:24014842,34734381 -g1,5287:24014842,34734381 -(1,5287:24014842,34734381:0,0,0 -(1,5287:24014842,34734381:0,281018,137888 -(1,5287:24014842,34734381:0,281018,137888 -$1,5287:24014842,34734381 -h1,5287:24014842,34734381:0,281018,137888 -$1,5287:24014842,34734381 -) -g1,5287:24014842,34734381 -) -) -g1,5287:24014842,34734381 -g1,5287:24014842,34734381 -) -) -g1,5287:24014842,34734381 -) -) -g1,5287:24014842,34734381 -(1,5287:24014842,34734381:924057,924057,924057 -g1,5287:24938899,34734381 -g1,5287:24938899,34734381 -) -g1,5287:24938899,34734381 -(1,5287:24938899,34734381:910950,924057,924057 -g1,5287:24938899,34734381 -g1,5287:25849849,34734381 -(1,5287:25849849,34734381:0,924057,924057 -(1,5287:25849849,34734381:0,0,0 -(1,5287:25849849,34734381:0,0,0 -g1,5287:25849849,34734381 -g1,5287:25849849,34734381 -g1,5287:25849849,34734381 -g1,5287:25849849,34734381 -g1,5287:25849849,34734381 -(1,5287:25849849,34734381:0,0,0 -(1,5287:25849849,34734381:1540487,281018,140387 -(1,5287:25849849,34734381:1540487,281018,140387 -$1,5287:25849849,34734381 -h1,5287:25849849,34734381:0,281018,137888 -(1,5287:26219996,34813033:1170340,291373,61735 -) -$1,5287:27390336,34734381 -) -g1,5287:27390336,34734381 -) -) -g1,5287:25849849,34734381 -g1,5287:25849849,34734381 -) -) -g1,5287:25849849,34734381 -) -) -g1,5287:25849849,34734381 -(1,5288:25849849,34734381:924057,924057,924057 -g1,5288:26773906,34734381 -g1,5288:26773906,34734381 -) -g1,5288:26773906,34734381 ) -(1,5289:17585764,36569388:9188142,924057,924057 -g1,5288:17585764,36569388 -(1,5288:17585764,36569388:924057,924057,924057 -g1,5288:17585764,36569388 -g1,5288:18509821,36569388 -(1,5288:18509821,36569388:0,924057,924057 -(1,5288:18509821,36569388:0,0,0 -(1,5288:18509821,36569388:0,0,0 -g1,5288:18509821,36569388 -g1,5288:18509821,36569388 -g1,5288:18509821,36569388 -g1,5288:18509821,36569388 -g1,5288:18509821,36569388 -(1,5288:18509821,36569388:0,0,0 -(1,5288:18509821,36569388:607548,341312,137888 -(1,5288:18509821,36569388:607548,341312,137888 -$1,5288:18509821,36569388 -h1,5288:18509821,36569388:0,281018,137888 -g1,5288:18655471,36569388 -$1,5288:19117369,36569388 -) -g1,5288:19117369,36569388 -) -) -g1,5288:18509821,36569388 -g1,5288:18509821,36569388 -) -) -g1,5288:18509821,36569388 -) -) -g1,5288:18509821,36569388 -(1,5288:18509821,36569388:924057,924057,924057 -g1,5288:19433878,36569388 -g1,5288:19433878,36569388 -) -g1,5288:19433878,36569388 -(1,5288:19433878,36569388:910950,924057,924057 -g1,5288:19433878,36569388 -g1,5288:20344828,36569388 -(1,5288:20344828,36569388:0,924057,924057 -(1,5288:20344828,36569388:0,0,0 -(1,5288:20344828,36569388:0,0,0 -g1,5288:20344828,36569388 -g1,5288:20344828,36569388 -g1,5288:20344828,36569388 -g1,5288:20344828,36569388 -g1,5288:20344828,36569388 -(1,5288:20344828,36569388:0,0,0 -(1,5288:20344828,36569388:0,281018,137888 -(1,5288:20344828,36569388:0,281018,137888 -$1,5288:20344828,36569388 -h1,5288:20344828,36569388:0,281018,137888 -$1,5288:20344828,36569388 -) -g1,5288:20344828,36569388 -) -) -g1,5288:20344828,36569388 -g1,5288:20344828,36569388 -) -) -g1,5288:20344828,36569388 -) -) -g1,5288:20344828,36569388 -(1,5288:20344828,36569388:924057,924057,924057 -g1,5288:21268885,36569388 -g1,5288:21268885,36569388 -) -g1,5288:21268885,36569388 -(1,5288:21268885,36569388:910950,924057,924057 -g1,5288:21268885,36569388 -g1,5288:22179835,36569388 -(1,5288:22179835,36569388:0,924057,924057 -(1,5288:22179835,36569388:0,0,0 -(1,5288:22179835,36569388:0,0,0 -g1,5288:22179835,36569388 -g1,5288:22179835,36569388 -g1,5288:22179835,36569388 -g1,5288:22179835,36569388 -g1,5288:22179835,36569388 -(1,5288:22179835,36569388:0,0,0 -(1,5288:22179835,36569388:0,281018,137888 -(1,5288:22179835,36569388:0,281018,137888 -$1,5288:22179835,36569388 -h1,5288:22179835,36569388:0,281018,137888 -$1,5288:22179835,36569388 -) -g1,5288:22179835,36569388 -) -) -g1,5288:22179835,36569388 -g1,5288:22179835,36569388 -) -) -g1,5288:22179835,36569388 -) -) -g1,5288:22179835,36569388 -(1,5288:22179835,36569388:924057,924057,924057 -g1,5288:23103892,36569388 -g1,5288:23103892,36569388 -) -g1,5288:23103892,36569388 -(1,5288:23103892,36569388:910950,924057,924057 -g1,5288:23103892,36569388 -g1,5288:24014842,36569388 -(1,5288:24014842,36569388:0,924057,924057 -(1,5288:24014842,36569388:0,0,0 -(1,5288:24014842,36569388:0,0,0 -g1,5288:24014842,36569388 -g1,5288:24014842,36569388 -g1,5288:24014842,36569388 -g1,5288:24014842,36569388 -g1,5288:24014842,36569388 -(1,5288:24014842,36569388:0,0,0 -(1,5288:24014842,36569388:600208,341312,137888 -(1,5288:24014842,36569388:600208,341312,137888 -$1,5288:24014842,36569388 -h1,5288:24014842,36569388:0,281018,137888 -g1,5288:24160492,36569388 -$1,5288:24615050,36569388 -) -g1,5288:24615050,36569388 -) -) -g1,5288:24014842,36569388 -g1,5288:24014842,36569388 -) -) -g1,5288:24014842,36569388 -) -) -g1,5288:24014842,36569388 -(1,5288:24014842,36569388:924057,924057,924057 -g1,5288:24938899,36569388 -g1,5288:24938899,36569388 -) -g1,5288:24938899,36569388 -(1,5288:24938899,36569388:910950,924057,924057 -g1,5288:24938899,36569388 -g1,5288:25849849,36569388 -(1,5288:25849849,36569388:0,924057,924057 -(1,5288:25849849,36569388:0,0,0 -(1,5288:25849849,36569388:0,0,0 -g1,5288:25849849,36569388 -g1,5288:25849849,36569388 -g1,5288:25849849,36569388 -g1,5288:25849849,36569388 -g1,5288:25849849,36569388 -(1,5288:25849849,36569388:0,0,0 -(1,5288:25849849,36569388:0,281018,137888 -(1,5288:25849849,36569388:0,281018,137888 -$1,5288:25849849,36569388 -h1,5288:25849849,36569388:0,281018,137888 -$1,5288:25849849,36569388 -) -g1,5288:25849849,36569388 -) -) -g1,5288:25849849,36569388 -g1,5288:25849849,36569388 -) -) -g1,5288:25849849,36569388 -) -) -g1,5288:25849849,36569388 -(1,5289:25849849,36569388:924057,924057,924057 -g1,5289:26773906,36569388 -g1,5289:26773906,36569388 -) -g1,5289:26773906,36569388 -) -(1,5290:17585764,38404395:9188142,924057,924057 -g1,5289:17585764,38404395 -(1,5289:17585764,38404395:924057,924057,924057 -g1,5289:17585764,38404395 -g1,5289:18509821,38404395 -(1,5289:18509821,38404395:0,924057,924057 -(1,5289:18509821,38404395:0,0,0 -(1,5289:18509821,38404395:0,0,0 -g1,5289:18509821,38404395 -g1,5289:18509821,38404395 -g1,5289:18509821,38404395 -g1,5289:18509821,38404395 -g1,5289:18509821,38404395 -(1,5289:18509821,38404395:0,0,0 -(1,5289:18509821,38404395:1262877,281018,142607 -(1,5289:18509821,38404395:1262877,281018,142607 -$1,5289:18509821,38404395 -h1,5289:18509821,38404395:0,281018,137888 -(1,5289:18879968,38485267:892730,303170,61735 -) -$1,5289:19772698,38404395 -) -g1,5289:19772698,38404395 -) -) -g1,5289:18509821,38404395 -g1,5289:18509821,38404395 -) -) -g1,5289:18509821,38404395 -) -) -g1,5289:18509821,38404395 -(1,5289:18509821,38404395:924057,924057,924057 -g1,5289:19433878,38404395 -g1,5289:19433878,38404395 +g1,4310:25918505,10379446 +g1,4310:25918505,10379446 ) -g1,5289:19433878,38404395 -(1,5289:19433878,38404395:910950,924057,924057 -g1,5289:19433878,38404395 -g1,5289:20344828,38404395 -(1,5289:20344828,38404395:0,924057,924057 -(1,5289:20344828,38404395:0,0,0 -(1,5289:20344828,38404395:0,0,0 -g1,5289:20344828,38404395 -g1,5289:20344828,38404395 -g1,5289:20344828,38404395 -g1,5289:20344828,38404395 -g1,5289:20344828,38404395 -(1,5289:20344828,38404395:0,0,0 -(1,5289:20344828,38404395:1262877,281018,142607 -(1,5289:20344828,38404395:1262877,281018,142607 -$1,5289:20344828,38404395 -h1,5289:20344828,38404395:0,281018,137888 -(1,5289:20714975,38485267:892730,303170,61735 -) -$1,5289:21607705,38404395 -) -g1,5289:21607705,38404395 -) -) -g1,5289:20344828,38404395 -g1,5289:20344828,38404395 -) -) -g1,5289:20344828,38404395 -) -) -g1,5289:20344828,38404395 -(1,5289:20344828,38404395:924057,924057,924057 -g1,5289:21268885,38404395 -g1,5289:21268885,38404395 ) -g1,5289:21268885,38404395 -(1,5289:21268885,38404395:910950,924057,924057 -g1,5289:21268885,38404395 -g1,5289:22179835,38404395 -(1,5289:22179835,38404395:0,924057,924057 -(1,5289:22179835,38404395:0,0,0 -(1,5289:22179835,38404395:0,0,0 -g1,5289:22179835,38404395 -g1,5289:22179835,38404395 -g1,5289:22179835,38404395 -g1,5289:22179835,38404395 -g1,5289:22179835,38404395 -(1,5289:22179835,38404395:0,0,0 -(1,5289:22179835,38404395:1262877,281018,142607 -(1,5289:22179835,38404395:1262877,281018,142607 -$1,5289:22179835,38404395 -h1,5289:22179835,38404395:0,281018,137888 -(1,5289:22549982,38485267:892730,303170,61735 +g1,4310:25918505,10379446 ) -$1,5289:23442712,38404395 ) -g1,5289:23442712,38404395 +g1,4310:25918505,10379446 +(1,4310:25918505,10379446:665744,802713,528775 +g1,4310:26584249,10379446 +g1,4310:26584249,10379446 ) +g1,4310:26584249,10379446 +(1,4310:26584249,10379446:639530,802713,528775 +g1,4310:26584249,10379446 +g1,4310:27223779,10379446 +(1,4310:27223779,10379446:0,802713,528775 +(1,4310:27223779,10379446:0,0,0 +(1,4310:27223779,10379446:0,0,0 +g1,4310:27223779,10379446 +g1,4310:27223779,10379446 +g1,4310:27223779,10379446 +g1,4310:27223779,10379446 +g1,4310:27223779,10379446 +(1,4310:27223779,10379446:0,0,0 +(1,4310:27223779,10379446:716177,479396,205458 +(1,4310:27223779,10379446:716177,479396,205458 +r1,4415:27939956,10379446:0,684854,205458 ) -g1,5289:22179835,38404395 -g1,5289:22179835,38404395 +g1,4310:27939956,10379446 ) ) -g1,5289:22179835,38404395 +g1,4310:27223779,10379446 +g1,4310:27223779,10379446 ) ) -g1,5289:22179835,38404395 -(1,5289:22179835,38404395:924057,924057,924057 -g1,5289:23103892,38404395 -g1,5289:23103892,38404395 +g1,4310:27223779,10379446 ) -g1,5289:23103892,38404395 -(1,5289:23103892,38404395:910950,924057,924057 -g1,5289:23103892,38404395 -g1,5289:24014842,38404395 -(1,5289:24014842,38404395:0,924057,924057 -(1,5289:24014842,38404395:0,0,0 -(1,5289:24014842,38404395:0,0,0 -g1,5289:24014842,38404395 -g1,5289:24014842,38404395 -g1,5289:24014842,38404395 -g1,5289:24014842,38404395 -g1,5289:24014842,38404395 -(1,5289:24014842,38404395:0,0,0 -(1,5289:24014842,38404395:0,281018,137888 -(1,5289:24014842,38404395:0,281018,137888 -$1,5289:24014842,38404395 -h1,5289:24014842,38404395:0,281018,137888 -$1,5289:24014842,38404395 ) -g1,5289:24014842,38404395 +g1,4310:27223779,10379446 +(1,4310:27223779,10379446:665744,802713,528775 +g1,4310:27889523,10379446 +g1,4310:27889523,10379446 ) +g1,4310:27889523,10379446 +(1,4310:27889523,10379446:639530,802713,528775 +g1,4310:27889523,10379446 +g1,4310:28529053,10379446 +(1,4310:28529053,10379446:0,802713,528775 +(1,4310:28529053,10379446:0,0,0 +(1,4310:28529053,10379446:0,0,0 +g1,4310:28529053,10379446 +g1,4310:28529053,10379446 +g1,4310:28529053,10379446 +g1,4310:28529053,10379446 +g1,4310:28529053,10379446 +(1,4310:28529053,10379446:0,0,0 +(1,4310:28529053,10379446:542638,479396,205458 +(1,4310:28529053,10379446:542638,479396,205458 +r1,4415:29071691,10379446:0,684854,205458 ) -g1,5289:24014842,38404395 -g1,5289:24014842,38404395 +g1,4310:29071691,10379446 ) ) -g1,5289:24014842,38404395 +g1,4310:28529053,10379446 +g1,4310:28529053,10379446 ) ) -g1,5289:24014842,38404395 -(1,5289:24014842,38404395:924057,924057,924057 -g1,5289:24938899,38404395 -g1,5289:24938899,38404395 +g1,4310:28529053,10379446 ) -g1,5289:24938899,38404395 -(1,5289:24938899,38404395:910950,924057,924057 -g1,5289:24938899,38404395 -g1,5289:25849849,38404395 -(1,5289:25849849,38404395:0,924057,924057 -(1,5289:25849849,38404395:0,0,0 -(1,5289:25849849,38404395:0,0,0 -g1,5289:25849849,38404395 -g1,5289:25849849,38404395 -g1,5289:25849849,38404395 -g1,5289:25849849,38404395 -g1,5289:25849849,38404395 -(1,5289:25849849,38404395:0,0,0 -(1,5289:25849849,38404395:1455946,281018,142607 -(1,5289:25849849,38404395:1455946,281018,142607 -$1,5289:25849849,38404395 -h1,5289:25849849,38404395:0,281018,137888 -(1,5289:26219996,38485267:1085799,303170,61735 ) -$1,5289:27305795,38404395 +g1,4310:28529053,10379446 +(1,4310:28529053,10379446:665744,802713,528775 +g1,4310:29194797,10379446 +g1,4310:29194797,10379446 ) -g1,5289:27305795,38404395 +g1,4310:29194797,10379446 +(1,4310:29194797,10379446:639530,802713,528775 +g1,4310:29194797,10379446 +g1,4310:29834327,10379446 +(1,4310:29834327,10379446:0,802713,528775 +(1,4310:29834327,10379446:0,0,0 +(1,4310:29834327,10379446:0,0,0 +g1,4310:29834327,10379446 +g1,4310:29834327,10379446 +g1,4310:29834327,10379446 +g1,4310:29834327,10379446 +g1,4310:29834327,10379446 +(1,4310:29834327,10379446:0,0,0 +(1,4310:29834327,10379446:550502,479396,205458 +(1,4310:29834327,10379446:550502,479396,205458 +r1,4415:30384829,10379446:0,684854,205458 ) +g1,4310:30384829,10379446 ) -g1,5289:25849849,38404395 -g1,5289:25849849,38404395 ) +g1,4310:29834327,10379446 +g1,4310:29834327,10379446 ) -g1,5289:25849849,38404395 ) +g1,4310:29834327,10379446 ) -g1,5289:25849849,38404395 -(1,5290:25849849,38404395:924057,924057,924057 -g1,5290:26773906,38404395 -g1,5290:26773906,38404395 ) -g1,5290:26773906,38404395 +g1,4310:29834327,10379446 +(1,4310:29834327,10379446:665744,802713,528775 +g1,4310:30500071,10379446 +g1,4310:30500071,10379446 +) +g1,4310:30500071,10379446 ) ] ) ) -g1,5290:17585764,38404395 -g1,5290:17585764,38404395 +g1,4310:17421117,10379446 +g1,4310:17421117,10379446 +) ) +g1,4310:17421117,10379446 +g1,4311:17421117,10379446 +(1,4311:17421117,10379446:0,0,0 +(1,4311:17421117,10379446:0,0,0 +g1,4311:17421117,10379446 +g1,4311:17421117,10379446 +g1,4311:17421117,10379446 +g1,4311:17421117,10379446 +g1,4311:17421117,10379446 +(1,4311:17421117,10379446:0,0,0 +(1,4311:17421117,10379446:0,0,0 +h1,4311:17421117,10379446:0,0,0 +g1,4311:17421117,10379446 ) -(1,5298:17585764,38404395:0,0,0 -(1,5298:17585764,38404395:0,0,0 -g1,5298:17585764,38404395 -g1,5298:17585764,38404395 -g1,5298:17585764,38404395 -g1,5298:17585764,38404395 -g1,5298:17585764,38404395 -(1,5298:17585764,38404395:0,0,0 -(1,5298:17585764,38404395:9188142,8264085,924057 -[1,5298:17585764,38404395:9188142,8264085,924057 -(1,5294:17585764,31064367:9188142,924057,924057 -g1,5293:17585764,31064367 -(1,5293:17585764,31064367:924057,924057,924057 -g1,5293:17585764,31064367 -g1,5293:18509821,31064367 -(1,5293:18509821,31064367:0,924057,924057 -(1,5293:18509821,31064367:0,0,0 -(1,5293:18509821,31064367:0,0,0 -g1,5293:18509821,31064367 -g1,5293:18509821,31064367 -g1,5293:18509821,31064367 -g1,5293:18509821,31064367 -g1,5293:18509821,31064367 -(1,5293:18509821,31064367:0,0,0 -(1,5293:18509821,31064367:1347418,281018,140387 -(1,5293:18509821,31064367:1347418,281018,140387 -$1,5293:18509821,31064367 -h1,5293:18509821,31064367:0,281018,137888 -(1,5293:18879968,31143019:977271,291373,61735 ) -$1,5293:19857239,31064367 +g1,4311:17421117,10379446 +g1,4311:17421117,10379446 ) -g1,5293:19857239,31064367 ) +g1,4311:17421117,10379446 +g1,4315:17421117,10379446 +g1,4315:17421117,10379446 +g1,4317:17421117,10379446 +(1,4317:17421117,10379446:0,0,0 +(1,4317:17421117,10379446:0,0,0 +g1,4317:17421117,10379446 +(1,4317:17421117,10379446:0,0,0 +(1,4317:17421117,10379446:1976140,482673,208735 +(1,4317:17421117,10379446:1976140,482673,208735 +(1,4317:17421117,10379446:0,482673,208735 +r1,4415:19397257,10379446:1976140,691408,208735 +k1,4317:17421117,10379446:-1976140 ) -g1,5293:18509821,31064367 -g1,5293:18509821,31064367 +(1,4317:17421117,10379446:1976140,482673,208735 +r1,4415:17424394,10379446:0,684854,205458 +g1,4317:17705763,10379446 +h1,4317:18831241,10379446:562739,252906,0 +h1,4317:19393980,10379446:0,328964,90056 ) ) -g1,5293:18509821,31064367 +g1,4317:19397257,10379446 ) ) -g1,5293:18509821,31064367 -(1,5293:18509821,31064367:924057,924057,924057 -g1,5293:19433878,31064367 -g1,5293:19433878,31064367 +g1,4317:17421117,10379446 +g1,4317:17421117,10379446 ) -g1,5293:19433878,31064367 -(1,5293:19433878,31064367:910950,924057,924057 -g1,5293:19433878,31064367 -g1,5293:20344828,31064367 -(1,5293:20344828,31064367:0,924057,924057 -(1,5293:20344828,31064367:0,0,0 -(1,5293:20344828,31064367:0,0,0 -g1,5293:20344828,31064367 -g1,5293:20344828,31064367 -g1,5293:20344828,31064367 -g1,5293:20344828,31064367 -g1,5293:20344828,31064367 -(1,5293:20344828,31064367:0,0,0 -(1,5293:20344828,31064367:1347418,281018,140387 -(1,5293:20344828,31064367:1347418,281018,140387 -$1,5293:20344828,31064367 -h1,5293:20344828,31064367:0,281018,137888 -(1,5293:20714975,31143019:977271,291373,61735 ) -$1,5293:21692246,31064367 +g1,4317:17421117,10379446 +g1,4319:17421117,10379446 +(1,4319:17421117,10379446:0,0,0 +(1,4319:17421117,10379446:0,0,0 +g1,4319:17421117,10379446 +g1,4319:17421117,10379446 +g1,4319:17421117,10379446 +g1,4319:17421117,10379446 +g1,4319:17421117,10379446 +(1,4319:17421117,10379446:0,0,0 +(1,4319:17421117,10379446:6599312,404226,101187 +(1,4319:17421117,10379446:6599312,404226,101187 +(1,4319:17421117,10379446:0,363038,98932 +r1,4415:19397257,10379446:1976140,461970,98932 +k1,4319:17421117,10379446:-1976140 ) -g1,5293:21692246,31064367 +(1,4319:17421117,10379446:1976140,363038,98932 +k1,4319:17421117,10379446:3277 +h1,4319:19393980,10379446:0,328964,90056 ) +g1,4319:19562932,10379446 +g1,4319:22234704,10379446 ) -g1,5293:20344828,31064367 -g1,5293:20344828,31064367 +g1,4319:24020429,10379446 ) ) -g1,5293:20344828,31064367 +g1,4319:17421117,10379446 +g1,4319:17421117,10379446 ) ) -g1,5293:20344828,31064367 -(1,5293:20344828,31064367:924057,924057,924057 -g1,5293:21268885,31064367 -g1,5293:21268885,31064367 +g1,4319:17421117,10379446 +g1,4320:17421117,10379446 +(1,4320:17421117,10379446:0,0,0 +(1,4320:17421117,10379446:0,0,0 +g1,4320:17421117,10379446 +g1,4320:17421117,10379446 +g1,4320:17421117,10379446 +g1,4320:17421117,10379446 +g1,4320:17421117,10379446 +(1,4320:17421117,10379446:0,0,0 +(1,4320:17421117,10379446:4301011,404226,93333 +(1,4320:17421117,10379446:4301011,404226,93333 +(1,4320:17421117,10379446:0,363038,93333 +r1,4415:19959996,10379446:2538879,456371,93333 +k1,4320:17421117,10379446:-2538879 ) -g1,5293:21268885,31064367 -(1,5293:21268885,31064367:910950,924057,924057 -g1,5293:21268885,31064367 -g1,5293:22179835,31064367 -(1,5293:22179835,31064367:0,924057,924057 -(1,5293:22179835,31064367:0,0,0 -(1,5293:22179835,31064367:0,0,0 -g1,5293:22179835,31064367 -g1,5293:22179835,31064367 -g1,5293:22179835,31064367 -g1,5293:22179835,31064367 -g1,5293:22179835,31064367 -(1,5293:22179835,31064367:0,0,0 -(1,5293:22179835,31064367:1347418,281018,140387 -(1,5293:22179835,31064367:1347418,281018,140387 -$1,5293:22179835,31064367 -h1,5293:22179835,31064367:0,281018,137888 -(1,5293:22549982,31143019:977271,291373,61735 -) -$1,5293:23527253,31064367 -) -g1,5293:23527253,31064367 -) -) -g1,5293:22179835,31064367 -g1,5293:22179835,31064367 -) -) -g1,5293:22179835,31064367 -) -) -g1,5293:22179835,31064367 -(1,5293:22179835,31064367:924057,924057,924057 -g1,5293:23103892,31064367 -g1,5293:23103892,31064367 -) -g1,5293:23103892,31064367 -(1,5293:23103892,31064367:910950,924057,924057 -g1,5293:23103892,31064367 -g1,5293:24014842,31064367 -(1,5293:24014842,31064367:0,924057,924057 -(1,5293:24014842,31064367:0,0,0 -(1,5293:24014842,31064367:0,0,0 -g1,5293:24014842,31064367 -g1,5293:24014842,31064367 -g1,5293:24014842,31064367 -g1,5293:24014842,31064367 -g1,5293:24014842,31064367 -(1,5293:24014842,31064367:0,0,0 -(1,5293:24014842,31064367:549288,281018,137888 -(1,5293:24014842,31064367:549288,281018,137888 -$1,5293:24014842,31064367 -h1,5293:24014842,31064367:0,281018,137888 -g1,5293:24102232,31064367 -$1,5293:24564130,31064367 -) -g1,5293:24564130,31064367 -) -) -g1,5293:24014842,31064367 -g1,5293:24014842,31064367 -) -) -g1,5293:24014842,31064367 -) -) -g1,5293:24014842,31064367 -(1,5293:24014842,31064367:924057,924057,924057 -g1,5293:24938899,31064367 -g1,5293:24938899,31064367 -) -g1,5293:24938899,31064367 -(1,5293:24938899,31064367:910950,924057,924057 -g1,5293:24938899,31064367 -g1,5293:25849849,31064367 -(1,5293:25849849,31064367:0,924057,924057 -(1,5293:25849849,31064367:0,0,0 -(1,5293:25849849,31064367:0,0,0 -g1,5293:25849849,31064367 -g1,5293:25849849,31064367 -g1,5293:25849849,31064367 -g1,5293:25849849,31064367 -g1,5293:25849849,31064367 -(1,5293:25849849,31064367:0,0,0 -(1,5293:25849849,31064367:1540487,281018,140387 -(1,5293:25849849,31064367:1540487,281018,140387 -$1,5293:25849849,31064367 -h1,5293:25849849,31064367:0,281018,137888 -(1,5293:26219996,31143019:1170340,291373,61735 -) -$1,5293:27390336,31064367 -) -g1,5293:27390336,31064367 -) -) -g1,5293:25849849,31064367 -g1,5293:25849849,31064367 -) -) -g1,5293:25849849,31064367 -) -) -g1,5293:25849849,31064367 -(1,5294:25849849,31064367:924057,924057,924057 -g1,5294:26773906,31064367 -g1,5294:26773906,31064367 -) -g1,5294:26773906,31064367 +(1,4320:17421117,10379446:2538879,363038,93333 +k1,4320:17421117,10379446:3277 +h1,4320:19956719,10379446:0,328964,90056 +) +g1,4320:20125671,10379446 +) +g1,4320:21722128,10379446 +) +) +g1,4320:17421117,10379446 +g1,4320:17421117,10379446 +) +) +(1,4321:17421117,10379446:0,0,0 +(1,4321:17421117,10379446:0,0,0 +g1,4321:17421117,10379446 +g1,4321:17421117,10379446 +g1,4321:17421117,10379446 +g1,4321:17421117,10379446 +g1,4321:17421117,10379446 +(1,4321:17421117,10379446:0,0,0 +(1,4321:17421117,10379446:1132032,363038,93333 +(1,4321:17421117,10379446:1132032,363038,93333 +(1,4321:17421117,10379446:1132032,363038,93333 +(1,4321:17421117,10379446:0,363038,93333 +r1,4415:18553149,10379446:1132032,456371,93333 +k1,4321:17421117,10379446:-1132032 +) +(1,4321:17421117,10379446:1132032,363038,93333 +k1,4321:17421117,10379446:3277 +h1,4321:18549872,10379446:0,328964,90056 +) +) +) +g1,4321:18553149,10379446 +) +) +g1,4321:17421117,10379446 +g1,4321:17421117,10379446 +) +) +g1,4321:17421117,10379446 +g1,4322:17421117,10379446 +g1,4322:17421117,10379446 +g1,4322:17421117,10379446 +g1,4322:17421117,10379446 +g1,4322:17421117,10379446 +g1,4322:17421117,10379446 +g1,4324:17421117,10379446 +g1,4324:17421117,10379446 +) +g1,4324:17421117,10379446 +) +) +g1,4326:31335885,13265198 +k1,4326:32583029,13265198:1247144 +) +v1,4329:6630773,14605413:0,393216,0 +(1,4336:6630773,15728993:25952256,1516796,196608 +g1,4336:6630773,15728993 +g1,4336:6630773,15728993 +g1,4336:6434165,15728993 +(1,4336:6434165,15728993:0,1516796,196608 +r1,4415:32779637,15728993:26345472,1713404,196608 +k1,4336:6434165,15728993:-26345472 +) +(1,4336:6434165,15728993:26345472,1516796,196608 +[1,4336:6630773,15728993:25952256,1320188,0 +(1,4331:6630773,14833244:25952256,424439,79822 +(1,4330:6630773,14833244:0,0,0 +g1,4330:6630773,14833244 +g1,4330:6630773,14833244 +g1,4330:6303093,14833244 +(1,4330:6303093,14833244:0,0,0 +) +g1,4330:6630773,14833244 +) +h1,4331:8954451,14833244:0,0,0 +k1,4331:32583029,14833244:23628578 +g1,4331:32583029,14833244 +) +(1,4335:6630773,15649171:25952256,424439,79822 +(1,4333:6630773,15649171:0,0,0 +g1,4333:6630773,15649171 +g1,4333:6630773,15649171 +g1,4333:6303093,15649171 +(1,4333:6303093,15649171:0,0,0 +) +g1,4333:6630773,15649171 +) +g1,4335:7626635,15649171 +g1,4335:8954451,15649171 +h1,4335:9950313,15649171:0,0,0 +k1,4335:32583029,15649171:22632716 +g1,4335:32583029,15649171 +) +] +) +g1,4336:32583029,15728993 +g1,4336:6630773,15728993 +g1,4336:6630773,15728993 +g1,4336:32583029,15728993 +g1,4336:32583029,15728993 +) +h1,4336:6630773,15925601:0,0,0 +v1,4340:6630773,16790681:0,393216,0 +(1,4359:6630773,23150891:25952256,6753426,0 +g1,4359:6630773,23150891 +g1,4359:6237557,23150891 +r1,4415:6368629,23150891:131072,6753426,0 +g1,4359:6567858,23150891 +g1,4359:6764466,23150891 +[1,4359:6764466,23150891:25818563,6753426,0 +(1,4341:6764466,17098979:25818563,701514,196608 +(1,4340:6764466,17098979:0,701514,196608 +r1,4415:8010564,17098979:1246098,898122,196608 +k1,4340:6764466,17098979:-1246098 +) +(1,4340:6764466,17098979:1246098,701514,196608 +) +k1,4340:8237827,17098979:227263 +k1,4340:8565507,17098979:327680 +k1,4340:10249635,17098979:227263 +k1,4340:13234653,17098979:227263 +k1,4340:15770094,17098979:227263 +k1,4340:16988917,17098979:227263 +k1,4340:20000149,17098979:227263 +k1,4340:20843450,17098979:227263 +k1,4340:22504641,17098979:227263 +k1,4340:23320417,17098979:227263 +(1,4340:23320417,17098979:0,452978,115847 +r1,4415:25788954,17098979:2468537,568825,115847 +k1,4340:23320417,17098979:-2468537 +) +(1,4340:23320417,17098979:2468537,452978,115847 +k1,4340:23320417,17098979:3277 +h1,4340:25785677,17098979:0,411205,112570 +) +k1,4340:26189887,17098979:227263 +(1,4340:26189887,17098979:0,414482,115847 +r1,4415:28658424,17098979:2468537,530329,115847 +k1,4340:26189887,17098979:-2468537 +) +(1,4340:26189887,17098979:2468537,414482,115847 +k1,4340:26189887,17098979:3277 +h1,4340:28655147,17098979:0,411205,112570 +) +k1,4340:29059357,17098979:227263 +(1,4340:29059357,17098979:0,452978,115847 +r1,4415:32583029,17098979:3523672,568825,115847 +k1,4340:29059357,17098979:-3523672 +) +(1,4340:29059357,17098979:3523672,452978,115847 +k1,4340:29059357,17098979:3277 +h1,4340:32579752,17098979:0,411205,112570 +) +k1,4340:32583029,17098979:0 +) +(1,4341:6764466,17964059:25818563,513147,126483 +k1,4340:8189942,17964059:234031 +(1,4340:8189942,17964059:0,452978,115847 +r1,4415:11361902,17964059:3171960,568825,115847 +k1,4340:8189942,17964059:-3171960 +) +(1,4340:8189942,17964059:3171960,452978,115847 +k1,4340:8189942,17964059:3277 +h1,4340:11358625,17964059:0,411205,112570 +) +k1,4340:11769603,17964059:234031 +k1,4340:12662926,17964059:234031 +k1,4340:14782428,17964059:234031 +k1,4340:15229416,17964059:233996 +k1,4340:16976673,17964059:234031 +(1,4340:16976673,17964059:0,452978,115847 +r1,4415:19445210,17964059:2468537,568825,115847 +k1,4340:16976673,17964059:-2468537 +) +(1,4340:16976673,17964059:2468537,452978,115847 +k1,4340:16976673,17964059:3277 +h1,4340:19441933,17964059:0,411205,112570 +) +k1,4340:19679240,17964059:234030 +k1,4340:20529309,17964059:234031 +k1,4340:21782425,17964059:234031 +k1,4340:24677873,17964059:234031 +k1,4340:26940899,17964059:234031 +k1,4340:29049260,17964059:234031 +k1,4340:31591469,17964059:234031 +k1,4340:32583029,17964059:0 +) +(1,4341:6764466,18829139:25818563,513147,134348 +g1,4340:9092960,18829139 +g1,4340:10239840,18829139 +g1,4340:12924194,18829139 +g1,4340:16843246,18829139 +g1,4340:17701767,18829139 +g1,4340:18920081,18829139 +k1,4341:32583029,18829139:11647716 +g1,4341:32583029,18829139 +) +v1,4343:6764466,19513994:0,393216,0 +(1,4357:6764466,22954283:25818563,3833505,196608 +g1,4357:6764466,22954283 +g1,4357:6764466,22954283 +g1,4357:6567858,22954283 +(1,4357:6567858,22954283:0,3833505,196608 +r1,4415:32779637,22954283:26211779,4030113,196608 +k1,4357:6567857,22954283:-26211780 +) +(1,4357:6567858,22954283:26211779,3833505,196608 +[1,4357:6764466,22954283:25818563,3636897,0 +(1,4345:6764466,19741825:25818563,424439,6605 +(1,4344:6764466,19741825:0,0,0 +g1,4344:6764466,19741825 +g1,4344:6764466,19741825 +g1,4344:6436786,19741825 +(1,4344:6436786,19741825:0,0,0 +) +g1,4344:6764466,19741825 +) +h1,4345:10084005,19741825:0,0,0 +k1,4345:32583029,19741825:22499024 +g1,4345:32583029,19741825 +) +(1,4350:6764466,20557752:25818563,424439,106246 +(1,4347:6764466,20557752:0,0,0 +g1,4347:6764466,20557752 +g1,4347:6764466,20557752 +g1,4347:6436786,20557752 +(1,4347:6436786,20557752:0,0,0 +) +g1,4347:6764466,20557752 +) +g1,4350:7760328,20557752 +g1,4350:8092282,20557752 +g1,4350:9420098,20557752 +g1,4350:12739637,20557752 +g1,4350:13071591,20557752 +g1,4350:13403545,20557752 +g1,4350:17055038,20557752 +g1,4350:17386992,20557752 +g1,4350:20042624,20557752 +g1,4350:20374578,20557752 +g1,4350:20706532,20557752 +g1,4350:21038486,20557752 +g1,4350:21370440,20557752 +g1,4350:24026072,20557752 +g1,4350:24358026,20557752 +g1,4350:24689980,20557752 +g1,4350:25021934,20557752 +g1,4350:25353888,20557752 +g1,4350:27345612,20557752 +g1,4350:27677566,20557752 +g1,4350:28009520,20557752 +g1,4350:28341474,20557752 +g1,4350:28673428,20557752 +g1,4350:29005382,20557752 +g1,4350:29337336,20557752 +h1,4350:31329060,20557752:0,0,0 +k1,4350:32583029,20557752:1253969 +g1,4350:32583029,20557752 +) +(1,4350:6764466,21242607:25818563,424439,112852 +h1,4350:6764466,21242607:0,0,0 +k1,4350:7756441,21242607:328067 +k1,4350:8084509,21242607:328068 +k1,4350:9408438,21242607:328067 +k1,4350:11728230,21242607:328068 +k1,4350:12056297,21242607:328067 +k1,4350:12384365,21242607:328068 +k1,4350:12712432,21242607:328067 +k1,4350:13040500,21242607:328068 +k1,4350:13368567,21242607:328067 +k1,4350:16352266,21242607:328068 +k1,4350:16680333,21242607:328067 +k1,4350:17008401,21242607:328068 +k1,4350:17336468,21242607:328067 +k1,4350:21316029,21242607:328068 +k1,4350:24631681,21242607:328067 +k1,4350:24959749,21242607:328068 +k1,4350:25287816,21242607:328067 +k1,4350:28935423,21242607:328068 +k1,4350:29263490,21242607:328067 +h1,4350:32583029,21242607:0,0,0 +k1,4350:32583029,21242607:0 +k1,4350:32583029,21242607:0 +) +(1,4352:6764466,22058534:25818563,424439,79822 +(1,4351:6764466,22058534:0,0,0 +g1,4351:6764466,22058534 +g1,4351:6764466,22058534 +g1,4351:6436786,22058534 +(1,4351:6436786,22058534:0,0,0 +) +g1,4351:6764466,22058534 +) +h1,4352:11079867,22058534:0,0,0 +k1,4352:32583029,22058534:21503162 +g1,4352:32583029,22058534 +) +(1,4356:6764466,22874461:25818563,424439,79822 +(1,4354:6764466,22874461:0,0,0 +g1,4354:6764466,22874461 +g1,4354:6764466,22874461 +g1,4354:6436786,22874461 +(1,4354:6436786,22874461:0,0,0 +) +g1,4354:6764466,22874461 +) +g1,4356:7760328,22874461 +g1,4356:9088144,22874461 +h1,4356:11079868,22874461:0,0,0 +k1,4356:32583028,22874461:21503160 +g1,4356:32583028,22874461 +) +] +) +g1,4357:32583029,22954283 +g1,4357:6764466,22954283 +g1,4357:6764466,22954283 +g1,4357:32583029,22954283 +g1,4357:32583029,22954283 +) +h1,4357:6764466,23150891:0,0,0 +] +g1,4359:32583029,23150891 +) +h1,4359:6630773,23150891:0,0,0 +v1,4362:6630773,24015971:0,393216,0 +(1,4363:6630773,27106736:25952256,3483981,0 +g1,4363:6630773,27106736 +g1,4363:6237557,27106736 +r1,4415:6368629,27106736:131072,3483981,0 +g1,4363:6567858,27106736 +g1,4363:6764466,27106736 +[1,4363:6764466,27106736:25818563,3483981,0 +(1,4363:6764466,24377148:25818563,754393,260573 +(1,4362:6764466,24377148:0,754393,260573 +r1,4415:8010564,24377148:1246098,1014966,260573 +k1,4362:6764466,24377148:-1246098 +) +(1,4362:6764466,24377148:1246098,754393,260573 +) +k1,4362:8229434,24377148:218870 +k1,4362:8557114,24377148:327680 +k1,4362:9403820,24377148:218871 +k1,4362:10211203,24377148:218870 +k1,4362:12856871,24377148:218870 +k1,4362:15205007,24377148:218871 +k1,4362:16912200,24377148:218870 +k1,4362:18698691,24377148:218870 +k1,4362:20247942,24377148:218870 +k1,4362:22156331,24377148:218871 +k1,4362:22991239,24377148:218870 +k1,4362:24902249,24377148:218870 +k1,4362:26823090,24377148:218871 +k1,4362:31394206,24377148:218870 +k1,4363:32583029,24377148:0 +) +(1,4363:6764466,25242228:25818563,513147,134348 +k1,4362:9213594,25242228:252361 +k1,4362:10959521,25242228:252361 +k1,4362:11898043,25242228:252360 +k1,4362:12603860,25242228:252308 +k1,4362:14047665,25242228:252360 +k1,4362:15756891,25242228:252361 +k1,4362:18436050,25242228:252361 +k1,4362:20176734,25242228:252361 +k1,4362:21996715,25242228:252360 +k1,4362:23842912,25242228:252361 +k1,4362:24565166,25242228:252361 +k1,4362:25349024,25242228:252361 +k1,4362:28810683,25242228:252361 +k1,4362:29714471,25242228:252360 +k1,4362:30714598,25242228:252361 +k1,4362:32583029,25242228:0 +) +(1,4363:6764466,26107308:25818563,513147,134348 +k1,4362:7657831,26107308:234073 +k1,4362:9095145,26107308:234073 +k1,4362:12689249,26107308:234073 +k1,4362:13609483,26107308:234072 +k1,4362:15595333,26107308:234073 +k1,4362:19893293,26107308:234073 +k1,4362:23568661,26107308:234073 +k1,4362:24794294,26107308:234073 +k1,4362:26568463,26107308:234073 +k1,4362:28178136,26107308:234072 +k1,4362:30298335,26107308:234073 +k1,4362:30888268,26107308:234073 +k1,4362:32583029,26107308:0 +) +(1,4363:6764466,26972388:25818563,505283,134348 +g1,4362:9703100,26972388 +k1,4363:32583029,26972388:19176490 +g1,4363:32583029,26972388 +) +] +g1,4363:32583029,27106736 +) +h1,4363:6630773,27106736:0,0,0 +v1,4366:6630773,27971816:0,393216,0 +(1,4377:6630773,31076256:25952256,3497656,0 +g1,4377:6630773,31076256 +g1,4377:6237557,31076256 +r1,4415:6368629,31076256:131072,3497656,0 +g1,4377:6567858,31076256 +g1,4377:6764466,31076256 +[1,4377:6764466,31076256:25818563,3497656,0 +(1,4367:6764466,28386358:25818563,807758,219026 +(1,4366:6764466,28386358:0,807758,219026 +r1,4415:7908217,28386358:1143751,1026784,219026 +k1,4366:6764466,28386358:-1143751 +) +(1,4366:6764466,28386358:1143751,807758,219026 +) +g1,4366:8107446,28386358 +g1,4366:8435126,28386358 +g1,4366:10143649,28386358 +g1,4366:11007413,28386358 +g1,4366:13340494,28386358 +g1,4366:14596819,28386358 +g1,4366:15977007,28386358 +g1,4366:17986341,28386358 +g1,4366:18832410,28386358 +g1,4366:19401262,28386358 +k1,4366:32583029,28386358:10735308 +g1,4367:32583029,28386358 +) +(1,4367:6764466,29071213:25818563,0,0 +k1,4367:32583030,29071213:25818564 +g1,4367:32583030,29071213 +) +v1,4367:6764466,29756068:0,393216,0 +(1,4374:6764466,30879648:25818563,1516796,196608 +g1,4374:6764466,30879648 +g1,4374:6764466,30879648 +g1,4374:6567858,30879648 +(1,4374:6567858,30879648:0,1516796,196608 +r1,4415:32779637,30879648:26211779,1713404,196608 +k1,4374:6567857,30879648:-26211780 +) +(1,4374:6567858,30879648:26211779,1516796,196608 +[1,4374:6764466,30879648:25818563,1320188,0 +(1,4369:6764466,29983899:25818563,424439,112852 +(1,4368:6764466,29983899:0,0,0 +g1,4368:6764466,29983899 +g1,4368:6764466,29983899 +g1,4368:6436786,29983899 +(1,4368:6436786,29983899:0,0,0 +) +g1,4368:6764466,29983899 +) +k1,4369:6764466,29983899:0 +h1,4369:16723084,29983899:0,0,0 +k1,4369:32583029,29983899:15859945 +g1,4369:32583029,29983899 +) +(1,4373:6764466,30799826:25818563,424439,79822 +(1,4371:6764466,30799826:0,0,0 +g1,4371:6764466,30799826 +g1,4371:6764466,30799826 +g1,4371:6436786,30799826 +(1,4371:6436786,30799826:0,0,0 +) +g1,4371:6764466,30799826 +) +g1,4373:7760328,30799826 +g1,4373:9088144,30799826 +h1,4373:12407683,30799826:0,0,0 +k1,4373:32583029,30799826:20175346 +g1,4373:32583029,30799826 +) +] +) +g1,4374:32583029,30879648 +g1,4374:6764466,30879648 +g1,4374:6764466,30879648 +g1,4374:32583029,30879648 +g1,4374:32583029,30879648 +) +h1,4374:6764466,31076256:0,0,0 +] +g1,4377:32583029,31076256 +) +h1,4377:6630773,31076256:0,0,0 +(1,4380:6630773,31941336:25952256,513147,134348 +h1,4379:6630773,31941336:983040,0,0 +k1,4379:8234521,31941336:150815 +k1,4379:8916832,31941336:150814 +k1,4379:11697607,31941336:150815 +k1,4379:12499850,31941336:150815 +k1,4379:14854641,31941336:150815 +k1,4379:15361315,31941336:150814 +k1,4379:17592243,31941336:150815 +k1,4379:18402350,31941336:150815 +k1,4379:19572250,31941336:150815 +k1,4379:22592230,31941336:150814 +k1,4379:23402337,31941336:150815 +k1,4379:23909012,31941336:150815 +k1,4379:26037704,31941336:150815 +k1,4379:26804556,31941336:150814 +k1,4379:27311231,31941336:150815 +k1,4379:29335065,31941336:150815 +k1,4379:32583029,31941336:0 +) +(1,4380:6630773,32806416:25952256,513147,134348 +k1,4379:8634208,32806416:268042 +k1,4379:9258110,32806416:268042 +k1,4379:11504030,32806416:268043 +k1,4379:12431364,32806416:268042 +k1,4379:15299875,32806416:268042 +k1,4379:16764604,32806416:268042 +k1,4379:19977180,32806416:268043 +k1,4379:20904514,32806416:268042 +k1,4379:22191641,32806416:268042 +k1,4379:25431741,32806416:268042 +k1,4379:28568950,32806416:268043 +k1,4379:29453030,32806416:268042 +k1,4379:30740157,32806416:268042 +k1,4379:32583029,32806416:0 +) +(1,4380:6630773,33671496:25952256,513147,134348 +k1,4379:10098635,33671496:181887 +k1,4379:12468115,33671496:181888 +k1,4379:13641562,33671496:181887 +k1,4379:17488223,33671496:181888 +k1,4379:18431638,33671496:181887 +k1,4379:19632611,33671496:181888 +k1,4379:22544073,33671496:181887 +k1,4379:23385253,33671496:181888 +k1,4379:24586225,33671496:181887 +k1,4379:27721821,33671496:181888 +k1,4379:28563000,33671496:181887 +k1,4379:29763973,33671496:181888 +k1,4379:31923737,33671496:181887 +k1,4379:32583029,33671496:0 +) +(1,4380:6630773,34536576:25952256,505283,126483 +g1,4379:11782558,34536576 +g1,4379:12633215,34536576 +g1,4379:16865530,34536576 +g1,4379:18507206,34536576 +g1,4379:19357863,34536576 +k1,4380:32583029,34536576:10741351 +g1,4380:32583029,34536576 +) +v1,4382:6630773,35221431:0,393216,0 +(1,4395:6630773,38009895:25952256,3181680,196608 +g1,4395:6630773,38009895 +g1,4395:6630773,38009895 +g1,4395:6434165,38009895 +(1,4395:6434165,38009895:0,3181680,196608 +r1,4415:32779637,38009895:26345472,3378288,196608 +k1,4395:6434165,38009895:-26345472 +) +(1,4395:6434165,38009895:26345472,3181680,196608 +[1,4395:6630773,38009895:25952256,2985072,0 +(1,4384:6630773,35449262:25952256,424439,86428 +(1,4383:6630773,35449262:0,0,0 +g1,4383:6630773,35449262 +g1,4383:6630773,35449262 +g1,4383:6303093,35449262 +(1,4383:6303093,35449262:0,0,0 +) +g1,4383:6630773,35449262 +) +k1,4384:6630773,35449262:0 +g1,4384:9950313,35449262 +h1,4384:10946175,35449262:0,0,0 +k1,4384:32583029,35449262:21636854 +g1,4384:32583029,35449262 +) +(1,4388:6630773,36265189:25952256,424439,79822 +(1,4386:6630773,36265189:0,0,0 +g1,4386:6630773,36265189 +g1,4386:6630773,36265189 +g1,4386:6303093,36265189 +(1,4386:6303093,36265189:0,0,0 +) +g1,4386:6630773,36265189 +) +g1,4388:7626635,36265189 +g1,4388:8954451,36265189 +g1,4388:10282267,36265189 +h1,4388:11278129,36265189:0,0,0 +k1,4388:32583029,36265189:21304900 +g1,4388:32583029,36265189 +) +(1,4390:6630773,37081116:25952256,424439,79822 +(1,4389:6630773,37081116:0,0,0 +g1,4389:6630773,37081116 +g1,4389:6630773,37081116 +g1,4389:6303093,37081116 +(1,4389:6303093,37081116:0,0,0 +) +g1,4389:6630773,37081116 +) +h1,4390:9950313,37081116:0,0,0 +k1,4390:32583029,37081116:22632716 +g1,4390:32583029,37081116 +) +(1,4394:6630773,37897043:25952256,431045,112852 +(1,4392:6630773,37897043:0,0,0 +g1,4392:6630773,37897043 +g1,4392:6630773,37897043 +g1,4392:6303093,37897043 +(1,4392:6303093,37897043:0,0,0 +) +g1,4392:6630773,37897043 +) +g1,4394:7626635,37897043 +g1,4394:7958589,37897043 +g1,4394:9286405,37897043 +g1,4394:10614221,37897043 +g1,4394:11942037,37897043 +g1,4394:13269853,37897043 +g1,4394:14597669,37897043 +g1,4394:15925485,37897043 +g1,4394:17253301,37897043 +g1,4394:18581117,37897043 +g1,4394:19908933,37897043 +g1,4394:21236749,37897043 +h1,4394:22232611,37897043:0,0,0 +k1,4394:32583029,37897043:10350418 +g1,4394:32583029,37897043 +) +] +) +g1,4395:32583029,38009895 +g1,4395:6630773,38009895 +g1,4395:6630773,38009895 +g1,4395:32583029,38009895 +g1,4395:32583029,38009895 +) +h1,4395:6630773,38206503:0,0,0 +v1,4399:6630773,39071583:0,393216,0 +(1,4415:6630773,43803808:25952256,5125441,0 +g1,4415:6630773,43803808 +g1,4415:6237557,43803808 +r1,4415:6368629,43803808:131072,5125441,0 +g1,4415:6567858,43803808 +g1,4415:6764466,43803808 +[1,4415:6764466,43803808:25818563,5125441,0 +(1,4400:6764466,39344060:25818563,665693,196608 +(1,4399:6764466,39344060:0,665693,196608 +r1,4415:8010564,39344060:1246098,862301,196608 +k1,4399:6764466,39344060:-1246098 +) +(1,4399:6764466,39344060:1246098,665693,196608 +) +k1,4399:8232198,39344060:221634 +k1,4399:9958416,39344060:327680 +k1,4399:11376736,39344060:221633 +k1,4399:13611636,39344060:221634 +k1,4399:14492562,39344060:221634 +k1,4399:15733280,39344060:221633 +k1,4399:18694319,39344060:221634 +k1,4399:20893830,39344060:221634 +k1,4399:21646960,39344060:221633 +k1,4399:22931588,39344060:221634 +k1,4399:26224238,39344060:221633 +k1,4399:27207400,39344060:221634 +k1,4399:28448119,39344060:221634 +k1,4399:30683018,39344060:221633 +k1,4399:31563944,39344060:221634 +k1,4399:32583029,39344060:0 +) +(1,4400:6764466,40209140:25818563,505283,126483 +k1,4399:9481654,40209140:199950 +k1,4399:11833151,40209140:199950 +k1,4399:14967804,40209140:199951 +k1,4399:16543355,40209140:199950 +k1,4399:19924423,40209140:199950 +k1,4399:22551171,40209140:199950 +k1,4399:24035627,40209140:199950 +k1,4399:26216731,40209140:199951 +k1,4399:29361214,40209140:199950 +k1,4399:31966991,40209140:199950 +k1,4399:32583029,40209140:0 +) +(1,4400:6764466,41074220:25818563,505283,134348 +k1,4399:7937615,41074220:154064 +k1,4399:10608917,41074220:154064 +k1,4399:12740858,41074220:154064 +k1,4399:13999204,41074220:154064 +k1,4399:16357244,41074220:154064 +k1,4399:18695623,41074220:154064 +k1,4399:20771203,41074220:154064 +k1,4399:22935912,41074220:154064 +k1,4399:23706014,41074220:154064 +k1,4399:24879163,41074220:154064 +k1,4399:27772632,41074220:154064 +k1,4399:29904573,41074220:154064 +k1,4399:32583029,41074220:0 +) +(1,4400:6764466,41939300:25818563,505283,126483 +k1,4399:7596889,41939300:180995 +k1,4399:10722418,41939300:180996 +k1,4399:12187919,41939300:180995 +k1,4399:13360475,41939300:180996 +k1,4399:14607741,41939300:180995 +k1,4399:17194563,41939300:180995 +k1,4399:17991597,41939300:180996 +k1,4399:19191677,41939300:180995 +k1,4399:21889911,41939300:180996 +k1,4399:24222453,41939300:180995 +k1,4399:26246320,41939300:180995 +k1,4399:27043354,41939300:180996 +(1,4399:27043354,41939300:0,414482,115847 +r1,4415:27753332,41939300:709978,530329,115847 +k1,4399:27043354,41939300:-709978 +) +(1,4399:27043354,41939300:709978,414482,115847 +k1,4399:27043354,41939300:3277 +h1,4399:27750055,41939300:0,411205,112570 +) +k1,4399:28438299,41939300:180995 +k1,4399:30000139,41939300:180996 +k1,4399:30712631,41939300:180995 +k1,4399:32583029,41939300:0 +) +(1,4400:6764466,42804380:25818563,513147,134348 +k1,4399:7572759,42804380:156865 +k1,4399:9341154,42804380:156865 +k1,4399:10259547,42804380:156865 +k1,4399:12775709,42804380:156866 +k1,4399:14326525,42804380:156865 +k1,4399:15071903,42804380:156865 +k1,4399:16671215,42804380:156865 +k1,4399:18395701,42804380:156865 +k1,4399:22788813,42804380:156865 +k1,4399:24243291,42804380:156865 +k1,4399:25794108,42804380:156866 +k1,4399:26539486,42804380:156865 +k1,4399:28431744,42804380:156865 +k1,4399:29607694,42804380:156865 +k1,4399:32583029,42804380:0 +) +(1,4400:6764466,43669460:25818563,505283,134348 +g1,4399:9955414,43669460 +g1,4399:10840805,43669460 +g1,4399:11395894,43669460 +g1,4399:14073695,43669460 +k1,4400:32583029,43669460:16647456 +g1,4400:32583029,43669460 +) +] +g1,4415:32583029,43803808 +) +] +(1,4415:32583029,45706769:0,0,0 +g1,4415:32583029,45706769 +) +) +] +(1,4415:6630773,47279633:25952256,0,0 +h1,4415:6630773,47279633:25952256,0,0 +) +] +(1,4415:4262630,4025873:0,0,0 +[1,4415:-473656,4025873:0,0,0 +(1,4415:-473656,-710413:0,0,0 +(1,4415:-473656,-710413:0,0,0 +g1,4415:-473656,-710413 +) +g1,4415:-473656,-710413 +) +] +) +] +!44258 +}78 +Input:751:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:752:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:753:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:754:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:755:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!476 +{79 +[1,4504:4262630,47279633:28320399,43253760,0 +(1,4504:4262630,4025873:0,0,0 +[1,4504:-473656,4025873:0,0,0 +(1,4504:-473656,-710413:0,0,0 +(1,4504:-473656,-644877:0,0,0 +k1,4504:-473656,-644877:-65536 ) -(1,5295:17585764,32899374:9188142,924057,924057 -g1,5294:17585764,32899374 -(1,5294:17585764,32899374:924057,924057,924057 -g1,5294:17585764,32899374 -g1,5294:18509821,32899374 -(1,5294:18509821,32899374:0,924057,924057 -(1,5294:18509821,32899374:0,0,0 -(1,5294:18509821,32899374:0,0,0 -g1,5294:18509821,32899374 -g1,5294:18509821,32899374 -g1,5294:18509821,32899374 -g1,5294:18509821,32899374 -g1,5294:18509821,32899374 -(1,5294:18509821,32899374:0,0,0 -(1,5294:18509821,32899374:1347418,281018,140387 -(1,5294:18509821,32899374:1347418,281018,140387 -$1,5294:18509821,32899374 -h1,5294:18509821,32899374:0,281018,137888 -(1,5294:18879968,32978026:977271,291373,61735 -) -$1,5294:19857239,32899374 -) -g1,5294:19857239,32899374 -) -) -g1,5294:18509821,32899374 -g1,5294:18509821,32899374 -) -) -g1,5294:18509821,32899374 -) -) -g1,5294:18509821,32899374 -(1,5294:18509821,32899374:924057,924057,924057 -g1,5294:19433878,32899374 -g1,5294:19433878,32899374 +(1,4504:-473656,4736287:0,0,0 +k1,4504:-473656,4736287:5209943 ) -g1,5294:19433878,32899374 -(1,5294:19433878,32899374:910950,924057,924057 -g1,5294:19433878,32899374 -g1,5294:20344828,32899374 -(1,5294:20344828,32899374:0,924057,924057 -(1,5294:20344828,32899374:0,0,0 -(1,5294:20344828,32899374:0,0,0 -g1,5294:20344828,32899374 -g1,5294:20344828,32899374 -g1,5294:20344828,32899374 -g1,5294:20344828,32899374 -g1,5294:20344828,32899374 -(1,5294:20344828,32899374:0,0,0 -(1,5294:20344828,32899374:1347418,281018,140387 -(1,5294:20344828,32899374:1347418,281018,140387 -$1,5294:20344828,32899374 -h1,5294:20344828,32899374:0,281018,137888 -(1,5294:20714975,32978026:977271,291373,61735 -) -$1,5294:21692246,32899374 -) -g1,5294:21692246,32899374 -) -) -g1,5294:20344828,32899374 -g1,5294:20344828,32899374 -) -) -g1,5294:20344828,32899374 -) -) -g1,5294:20344828,32899374 -(1,5294:20344828,32899374:924057,924057,924057 -g1,5294:21268885,32899374 -g1,5294:21268885,32899374 +g1,4504:-473656,-710413 ) -g1,5294:21268885,32899374 -(1,5294:21268885,32899374:910950,924057,924057 -g1,5294:21268885,32899374 -g1,5294:22179835,32899374 -(1,5294:22179835,32899374:0,924057,924057 -(1,5294:22179835,32899374:0,0,0 -(1,5294:22179835,32899374:0,0,0 -g1,5294:22179835,32899374 -g1,5294:22179835,32899374 -g1,5294:22179835,32899374 -g1,5294:22179835,32899374 -g1,5294:22179835,32899374 -(1,5294:22179835,32899374:0,0,0 -(1,5294:22179835,32899374:1347418,281018,140387 -(1,5294:22179835,32899374:1347418,281018,140387 -$1,5294:22179835,32899374 -h1,5294:22179835,32899374:0,281018,137888 -(1,5294:22549982,32978026:977271,291373,61735 -) -$1,5294:23527253,32899374 -) -g1,5294:23527253,32899374 -) -) -g1,5294:22179835,32899374 -g1,5294:22179835,32899374 -) -) -g1,5294:22179835,32899374 -) -) -g1,5294:22179835,32899374 -(1,5294:22179835,32899374:924057,924057,924057 -g1,5294:23103892,32899374 -g1,5294:23103892,32899374 +] ) -g1,5294:23103892,32899374 -(1,5294:23103892,32899374:910950,924057,924057 -g1,5294:23103892,32899374 -g1,5294:24014842,32899374 -(1,5294:24014842,32899374:0,924057,924057 -(1,5294:24014842,32899374:0,0,0 -(1,5294:24014842,32899374:0,0,0 -g1,5294:24014842,32899374 -g1,5294:24014842,32899374 -g1,5294:24014842,32899374 -g1,5294:24014842,32899374 -g1,5294:24014842,32899374 -(1,5294:24014842,32899374:0,0,0 -(1,5294:24014842,32899374:0,281018,137888 -(1,5294:24014842,32899374:0,281018,137888 -$1,5294:24014842,32899374 -h1,5294:24014842,32899374:0,281018,137888 -$1,5294:24014842,32899374 +[1,4504:6630773,47279633:25952256,43253760,0 +[1,4504:6630773,4812305:25952256,786432,0 +(1,4504:6630773,4812305:25952256,505283,11795 +(1,4504:6630773,4812305:25952256,505283,11795 +g1,4504:3078558,4812305 +[1,4504:3078558,4812305:0,0,0 +(1,4504:3078558,2439708:0,1703936,0 +k1,4504:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,4504:2537886,2439708:1179648,16384,0 ) -g1,5294:24014842,32899374 -) -) -g1,5294:24014842,32899374 -g1,5294:24014842,32899374 -) -) -g1,5294:24014842,32899374 -) -) -g1,5294:24014842,32899374 -(1,5294:24014842,32899374:924057,924057,924057 -g1,5294:24938899,32899374 -g1,5294:24938899,32899374 -) -g1,5294:24938899,32899374 -(1,5294:24938899,32899374:910950,924057,924057 -g1,5294:24938899,32899374 -g1,5294:25849849,32899374 -(1,5294:25849849,32899374:0,924057,924057 -(1,5294:25849849,32899374:0,0,0 -(1,5294:25849849,32899374:0,0,0 -g1,5294:25849849,32899374 -g1,5294:25849849,32899374 -g1,5294:25849849,32899374 -g1,5294:25849849,32899374 -g1,5294:25849849,32899374 -(1,5294:25849849,32899374:0,0,0 -(1,5294:25849849,32899374:1540487,281018,140387 -(1,5294:25849849,32899374:1540487,281018,140387 -$1,5294:25849849,32899374 -h1,5294:25849849,32899374:0,281018,137888 -(1,5294:26219996,32978026:1170340,291373,61735 +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,4504:3078558,1915420:16384,1179648,0 ) -$1,5294:27390336,32899374 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) -g1,5294:27390336,32899374 -) -) -g1,5294:25849849,32899374 -g1,5294:25849849,32899374 -) -) -g1,5294:25849849,32899374 -) -) -g1,5294:25849849,32899374 -(1,5295:25849849,32899374:924057,924057,924057 -g1,5295:26773906,32899374 -g1,5295:26773906,32899374 -) -g1,5295:26773906,32899374 +] ) -(1,5296:17585764,34734381:9188142,924057,924057 -g1,5295:17585764,34734381 -(1,5295:17585764,34734381:924057,924057,924057 -g1,5295:17585764,34734381 -g1,5295:18509821,34734381 -(1,5295:18509821,34734381:0,924057,924057 -(1,5295:18509821,34734381:0,0,0 -(1,5295:18509821,34734381:0,0,0 -g1,5295:18509821,34734381 -g1,5295:18509821,34734381 -g1,5295:18509821,34734381 -g1,5295:18509821,34734381 -g1,5295:18509821,34734381 -(1,5295:18509821,34734381:0,0,0 -(1,5295:18509821,34734381:1347418,281018,140387 -(1,5295:18509821,34734381:1347418,281018,140387 -$1,5295:18509821,34734381 -h1,5295:18509821,34734381:0,281018,137888 -(1,5295:18879968,34813033:977271,291373,61735 -) -$1,5295:19857239,34734381 -) -g1,5295:19857239,34734381 -) -) -g1,5295:18509821,34734381 -g1,5295:18509821,34734381 -) -) -g1,5295:18509821,34734381 -) -) -g1,5295:18509821,34734381 -(1,5295:18509821,34734381:924057,924057,924057 -g1,5295:19433878,34734381 -g1,5295:19433878,34734381 ) -g1,5295:19433878,34734381 -(1,5295:19433878,34734381:910950,924057,924057 -g1,5295:19433878,34734381 -g1,5295:20344828,34734381 -(1,5295:20344828,34734381:0,924057,924057 -(1,5295:20344828,34734381:0,0,0 -(1,5295:20344828,34734381:0,0,0 -g1,5295:20344828,34734381 -g1,5295:20344828,34734381 -g1,5295:20344828,34734381 -g1,5295:20344828,34734381 -g1,5295:20344828,34734381 -(1,5295:20344828,34734381:0,0,0 -(1,5295:20344828,34734381:1347418,281018,140387 -(1,5295:20344828,34734381:1347418,281018,140387 -$1,5295:20344828,34734381 -h1,5295:20344828,34734381:0,281018,137888 -(1,5295:20714975,34813033:977271,291373,61735 -) -$1,5295:21692246,34734381 -) -g1,5295:21692246,34734381 -) -) -g1,5295:20344828,34734381 -g1,5295:20344828,34734381 -) -) -g1,5295:20344828,34734381 -) -) -g1,5295:20344828,34734381 -(1,5295:20344828,34734381:924057,924057,924057 -g1,5295:21268885,34734381 -g1,5295:21268885,34734381 ) -g1,5295:21268885,34734381 -(1,5295:21268885,34734381:910950,924057,924057 -g1,5295:21268885,34734381 -g1,5295:22179835,34734381 -(1,5295:22179835,34734381:0,924057,924057 -(1,5295:22179835,34734381:0,0,0 -(1,5295:22179835,34734381:0,0,0 -g1,5295:22179835,34734381 -g1,5295:22179835,34734381 -g1,5295:22179835,34734381 -g1,5295:22179835,34734381 -g1,5295:22179835,34734381 -(1,5295:22179835,34734381:0,0,0 -(1,5295:22179835,34734381:1347418,281018,140387 -(1,5295:22179835,34734381:1347418,281018,140387 -$1,5295:22179835,34734381 -h1,5295:22179835,34734381:0,281018,137888 -(1,5295:22549982,34813033:977271,291373,61735 -) -$1,5295:23527253,34734381 -) -g1,5295:23527253,34734381 -) -) -g1,5295:22179835,34734381 -g1,5295:22179835,34734381 -) -) -g1,5295:22179835,34734381 -) -) -g1,5295:22179835,34734381 -(1,5295:22179835,34734381:924057,924057,924057 -g1,5295:23103892,34734381 -g1,5295:23103892,34734381 +] +[1,4504:3078558,4812305:0,0,0 +(1,4504:3078558,2439708:0,1703936,0 +g1,4504:29030814,2439708 +g1,4504:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,4504:36151628,1915420:16384,1179648,0 ) -g1,5295:23103892,34734381 -(1,5295:23103892,34734381:910950,924057,924057 -g1,5295:23103892,34734381 -g1,5295:24014842,34734381 -(1,5295:24014842,34734381:0,924057,924057 -(1,5295:24014842,34734381:0,0,0 -(1,5295:24014842,34734381:0,0,0 -g1,5295:24014842,34734381 -g1,5295:24014842,34734381 -g1,5295:24014842,34734381 -g1,5295:24014842,34734381 -g1,5295:24014842,34734381 -(1,5295:24014842,34734381:0,0,0 -(1,5295:24014842,34734381:0,281018,137888 -(1,5295:24014842,34734381:0,281018,137888 -$1,5295:24014842,34734381 -h1,5295:24014842,34734381:0,281018,137888 -$1,5295:24014842,34734381 -) -g1,5295:24014842,34734381 -) -) -g1,5295:24014842,34734381 -g1,5295:24014842,34734381 -) -) -g1,5295:24014842,34734381 -) -) -g1,5295:24014842,34734381 -(1,5295:24014842,34734381:924057,924057,924057 -g1,5295:24938899,34734381 -g1,5295:24938899,34734381 -) -g1,5295:24938899,34734381 -(1,5295:24938899,34734381:910950,924057,924057 -g1,5295:24938899,34734381 -g1,5295:25849849,34734381 -(1,5295:25849849,34734381:0,924057,924057 -(1,5295:25849849,34734381:0,0,0 -(1,5295:25849849,34734381:0,0,0 -g1,5295:25849849,34734381 -g1,5295:25849849,34734381 -g1,5295:25849849,34734381 -g1,5295:25849849,34734381 -g1,5295:25849849,34734381 -(1,5295:25849849,34734381:0,0,0 -(1,5295:25849849,34734381:1540487,281018,140387 -(1,5295:25849849,34734381:1540487,281018,140387 -$1,5295:25849849,34734381 -h1,5295:25849849,34734381:0,281018,137888 -(1,5295:26219996,34813033:1170340,291373,61735 -) -$1,5295:27390336,34734381 -) -g1,5295:27390336,34734381 -) -) -g1,5295:25849849,34734381 -g1,5295:25849849,34734381 -) -) -g1,5295:25849849,34734381 -) -) -g1,5295:25849849,34734381 -(1,5296:25849849,34734381:924057,924057,924057 -g1,5296:26773906,34734381 -g1,5296:26773906,34734381 -) -g1,5296:26773906,34734381 +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) -(1,5297:17585764,36569388:9188142,924057,924057 -g1,5296:17585764,36569388 -(1,5296:17585764,36569388:924057,924057,924057 -g1,5296:17585764,36569388 -g1,5296:18509821,36569388 -(1,5296:18509821,36569388:0,924057,924057 -(1,5296:18509821,36569388:0,0,0 -(1,5296:18509821,36569388:0,0,0 -g1,5296:18509821,36569388 -g1,5296:18509821,36569388 -g1,5296:18509821,36569388 -g1,5296:18509821,36569388 -g1,5296:18509821,36569388 -(1,5296:18509821,36569388:0,0,0 -(1,5296:18509821,36569388:607548,341312,137888 -(1,5296:18509821,36569388:607548,341312,137888 -$1,5296:18509821,36569388 -h1,5296:18509821,36569388:0,281018,137888 -g1,5296:18655471,36569388 -$1,5296:19117369,36569388 -) -g1,5296:19117369,36569388 -) -) -g1,5296:18509821,36569388 -g1,5296:18509821,36569388 -) -) -g1,5296:18509821,36569388 -) -) -g1,5296:18509821,36569388 -(1,5296:18509821,36569388:924057,924057,924057 -g1,5296:19433878,36569388 -g1,5296:19433878,36569388 -) -g1,5296:19433878,36569388 -(1,5296:19433878,36569388:910950,924057,924057 -g1,5296:19433878,36569388 -g1,5296:20344828,36569388 -(1,5296:20344828,36569388:0,924057,924057 -(1,5296:20344828,36569388:0,0,0 -(1,5296:20344828,36569388:0,0,0 -g1,5296:20344828,36569388 -g1,5296:20344828,36569388 -g1,5296:20344828,36569388 -g1,5296:20344828,36569388 -g1,5296:20344828,36569388 -(1,5296:20344828,36569388:0,0,0 -(1,5296:20344828,36569388:0,281018,137888 -(1,5296:20344828,36569388:0,281018,137888 -$1,5296:20344828,36569388 -h1,5296:20344828,36569388:0,281018,137888 -$1,5296:20344828,36569388 -) -g1,5296:20344828,36569388 -) -) -g1,5296:20344828,36569388 -g1,5296:20344828,36569388 -) -) -g1,5296:20344828,36569388 -) -) -g1,5296:20344828,36569388 -(1,5296:20344828,36569388:924057,924057,924057 -g1,5296:21268885,36569388 -g1,5296:21268885,36569388 -) -g1,5296:21268885,36569388 -(1,5296:21268885,36569388:910950,924057,924057 -g1,5296:21268885,36569388 -g1,5296:22179835,36569388 -(1,5296:22179835,36569388:0,924057,924057 -(1,5296:22179835,36569388:0,0,0 -(1,5296:22179835,36569388:0,0,0 -g1,5296:22179835,36569388 -g1,5296:22179835,36569388 -g1,5296:22179835,36569388 -g1,5296:22179835,36569388 -g1,5296:22179835,36569388 -(1,5296:22179835,36569388:0,0,0 -(1,5296:22179835,36569388:0,281018,137888 -(1,5296:22179835,36569388:0,281018,137888 -$1,5296:22179835,36569388 -h1,5296:22179835,36569388:0,281018,137888 -$1,5296:22179835,36569388 -) -g1,5296:22179835,36569388 -) -) -g1,5296:22179835,36569388 -g1,5296:22179835,36569388 -) -) -g1,5296:22179835,36569388 -) -) -g1,5296:22179835,36569388 -(1,5296:22179835,36569388:924057,924057,924057 -g1,5296:23103892,36569388 -g1,5296:23103892,36569388 -) -g1,5296:23103892,36569388 -(1,5296:23103892,36569388:910950,924057,924057 -g1,5296:23103892,36569388 -g1,5296:24014842,36569388 -(1,5296:24014842,36569388:0,924057,924057 -(1,5296:24014842,36569388:0,0,0 -(1,5296:24014842,36569388:0,0,0 -g1,5296:24014842,36569388 -g1,5296:24014842,36569388 -g1,5296:24014842,36569388 -g1,5296:24014842,36569388 -g1,5296:24014842,36569388 -(1,5296:24014842,36569388:0,0,0 -(1,5296:24014842,36569388:600208,341312,137888 -(1,5296:24014842,36569388:600208,341312,137888 -$1,5296:24014842,36569388 -h1,5296:24014842,36569388:0,281018,137888 -g1,5296:24160492,36569388 -$1,5296:24615050,36569388 -) -g1,5296:24615050,36569388 -) -) -g1,5296:24014842,36569388 -g1,5296:24014842,36569388 -) -) -g1,5296:24014842,36569388 -) -) -g1,5296:24014842,36569388 -(1,5296:24014842,36569388:924057,924057,924057 -g1,5296:24938899,36569388 -g1,5296:24938899,36569388 -) -g1,5296:24938899,36569388 -(1,5296:24938899,36569388:910950,924057,924057 -g1,5296:24938899,36569388 -g1,5296:25849849,36569388 -(1,5296:25849849,36569388:0,924057,924057 -(1,5296:25849849,36569388:0,0,0 -(1,5296:25849849,36569388:0,0,0 -g1,5296:25849849,36569388 -g1,5296:25849849,36569388 -g1,5296:25849849,36569388 -g1,5296:25849849,36569388 -g1,5296:25849849,36569388 -(1,5296:25849849,36569388:0,0,0 -(1,5296:25849849,36569388:0,281018,137888 -(1,5296:25849849,36569388:0,281018,137888 -$1,5296:25849849,36569388 -h1,5296:25849849,36569388:0,281018,137888 -$1,5296:25849849,36569388 -) -g1,5296:25849849,36569388 -) -) -g1,5296:25849849,36569388 -g1,5296:25849849,36569388 -) -) -g1,5296:25849849,36569388 -) -) -g1,5296:25849849,36569388 -(1,5297:25849849,36569388:924057,924057,924057 -g1,5297:26773906,36569388 -g1,5297:26773906,36569388 -) -g1,5297:26773906,36569388 -) -(1,5298:17585764,38404395:9188142,924057,924057 -g1,5297:17585764,38404395 -(1,5297:17585764,38404395:924057,924057,924057 -g1,5297:17585764,38404395 -g1,5297:18509821,38404395 -(1,5297:18509821,38404395:0,924057,924057 -(1,5297:18509821,38404395:0,0,0 -(1,5297:18509821,38404395:0,0,0 -g1,5297:18509821,38404395 -g1,5297:18509821,38404395 -g1,5297:18509821,38404395 -g1,5297:18509821,38404395 -g1,5297:18509821,38404395 -(1,5297:18509821,38404395:0,0,0 -(1,5297:18509821,38404395:1262877,281018,142607 -(1,5297:18509821,38404395:1262877,281018,142607 -$1,5297:18509821,38404395 -h1,5297:18509821,38404395:0,281018,137888 -(1,5297:18879968,38485267:892730,303170,61735 -) -$1,5297:19772698,38404395 -) -g1,5297:19772698,38404395 -) -) -g1,5297:18509821,38404395 -g1,5297:18509821,38404395 -) -) -g1,5297:18509821,38404395 -) -) -g1,5297:18509821,38404395 -(1,5297:18509821,38404395:924057,924057,924057 -g1,5297:19433878,38404395 -g1,5297:19433878,38404395 +] ) -g1,5297:19433878,38404395 -(1,5297:19433878,38404395:910950,924057,924057 -g1,5297:19433878,38404395 -g1,5297:20344828,38404395 -(1,5297:20344828,38404395:0,924057,924057 -(1,5297:20344828,38404395:0,0,0 -(1,5297:20344828,38404395:0,0,0 -g1,5297:20344828,38404395 -g1,5297:20344828,38404395 -g1,5297:20344828,38404395 -g1,5297:20344828,38404395 -g1,5297:20344828,38404395 -(1,5297:20344828,38404395:0,0,0 -(1,5297:20344828,38404395:1262877,281018,142607 -(1,5297:20344828,38404395:1262877,281018,142607 -$1,5297:20344828,38404395 -h1,5297:20344828,38404395:0,281018,137888 -(1,5297:20714975,38485267:892730,303170,61735 -) -$1,5297:21607705,38404395 -) -g1,5297:21607705,38404395 -) -) -g1,5297:20344828,38404395 -g1,5297:20344828,38404395 -) -) -g1,5297:20344828,38404395 -) -) -g1,5297:20344828,38404395 -(1,5297:20344828,38404395:924057,924057,924057 -g1,5297:21268885,38404395 -g1,5297:21268885,38404395 +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,4504:37855564,2439708:1179648,16384,0 ) -g1,5297:21268885,38404395 -(1,5297:21268885,38404395:910950,924057,924057 -g1,5297:21268885,38404395 -g1,5297:22179835,38404395 -(1,5297:22179835,38404395:0,924057,924057 -(1,5297:22179835,38404395:0,0,0 -(1,5297:22179835,38404395:0,0,0 -g1,5297:22179835,38404395 -g1,5297:22179835,38404395 -g1,5297:22179835,38404395 -g1,5297:22179835,38404395 -g1,5297:22179835,38404395 -(1,5297:22179835,38404395:0,0,0 -(1,5297:22179835,38404395:1262877,281018,142607 -(1,5297:22179835,38404395:1262877,281018,142607 -$1,5297:22179835,38404395 -h1,5297:22179835,38404395:0,281018,137888 -(1,5297:22549982,38485267:892730,303170,61735 ) -$1,5297:23442712,38404395 +k1,4504:3078556,2439708:-34777008 ) -g1,5297:23442712,38404395 +] +[1,4504:3078558,4812305:0,0,0 +(1,4504:3078558,49800853:0,16384,2228224 +k1,4504:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,4504:2537886,49800853:1179648,16384,0 ) +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,4504:3078558,51504789:16384,1179648,0 ) -g1,5297:22179835,38404395 -g1,5297:22179835,38404395 +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) +] ) -g1,5297:22179835,38404395 ) ) -g1,5297:22179835,38404395 -(1,5297:22179835,38404395:924057,924057,924057 -g1,5297:23103892,38404395 -g1,5297:23103892,38404395 +] +[1,4504:3078558,4812305:0,0,0 +(1,4504:3078558,49800853:0,16384,2228224 +g1,4504:29030814,49800853 +g1,4504:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,4504:36151628,51504789:16384,1179648,0 ) -g1,5297:23103892,38404395 -(1,5297:23103892,38404395:910950,924057,924057 -g1,5297:23103892,38404395 -g1,5297:24014842,38404395 -(1,5297:24014842,38404395:0,924057,924057 -(1,5297:24014842,38404395:0,0,0 -(1,5297:24014842,38404395:0,0,0 -g1,5297:24014842,38404395 -g1,5297:24014842,38404395 -g1,5297:24014842,38404395 -g1,5297:24014842,38404395 -g1,5297:24014842,38404395 -(1,5297:24014842,38404395:0,0,0 -(1,5297:24014842,38404395:0,281018,137888 -(1,5297:24014842,38404395:0,281018,137888 -$1,5297:24014842,38404395 -h1,5297:24014842,38404395:0,281018,137888 -$1,5297:24014842,38404395 +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 ) -g1,5297:24014842,38404395 +] ) +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,4504:37855564,49800853:1179648,16384,0 ) -g1,5297:24014842,38404395 -g1,5297:24014842,38404395 ) +k1,4504:3078556,49800853:-34777008 ) -g1,5297:24014842,38404395 +] +g1,4504:6630773,4812305 +k1,4504:22348274,4812305:14920583 +g1,4504:23970945,4812305 +g1,4504:24793421,4812305 +g1,4504:27528893,4812305 +g1,4504:28938572,4812305 +) +) +] +[1,4504:6630773,45706769:25952256,40108032,0 +(1,4504:6630773,45706769:25952256,40108032,0 +(1,4504:6630773,45706769:0,0,0 +g1,4504:6630773,45706769 ) +[1,4504:6630773,45706769:25952256,40108032,0 +v1,4415:6630773,6254097:0,393216,0 +(1,4415:6630773,11362286:25952256,5501405,0 +g1,4415:6630773,11362286 +g1,4415:6237557,11362286 +r1,4504:6368629,11362286:131072,5501405,0 +g1,4415:6567858,11362286 +g1,4415:6764466,11362286 +[1,4415:6764466,11362286:25818563,5501405,0 +v1,4402:6764466,6254097:0,393216,0 +(1,4410:6764466,9301170:25818563,3440289,196608 +g1,4410:6764466,9301170 +g1,4410:6764466,9301170 +g1,4410:6567858,9301170 +(1,4410:6567858,9301170:0,3440289,196608 +r1,4504:32779637,9301170:26211779,3636897,196608 +k1,4410:6567857,9301170:-26211780 +) +(1,4410:6567858,9301170:26211779,3440289,196608 +[1,4410:6764466,9301170:25818563,3243681,0 +(1,4404:6764466,6481928:25818563,424439,112852 +(1,4403:6764466,6481928:0,0,0 +g1,4403:6764466,6481928 +g1,4403:6764466,6481928 +g1,4403:6436786,6481928 +(1,4403:6436786,6481928:0,0,0 +) +g1,4403:6764466,6481928 +) +k1,4404:6764466,6481928:0 +h1,4404:9752052,6481928:0,0,0 +k1,4404:32583028,6481928:22830976 +g1,4404:32583028,6481928 +) +(1,4405:6764466,7166783:25818563,424439,86428 +h1,4405:6764466,7166783:0,0,0 +g1,4405:10084006,7166783 +g1,4405:11079868,7166783 +g1,4405:12075730,7166783 +h1,4405:13071592,7166783:0,0,0 +k1,4405:32583028,7166783:19511436 +g1,4405:32583028,7166783 +) +(1,4406:6764466,7851638:25818563,424439,86428 +h1,4406:6764466,7851638:0,0,0 +g1,4406:11079868,7851638 +h1,4406:13071592,7851638:0,0,0 +k1,4406:32583028,7851638:19511436 +g1,4406:32583028,7851638 +) +(1,4407:6764466,8536493:25818563,424439,86428 +h1,4407:6764466,8536493:0,0,0 +g1,4407:10084006,8536493 +h1,4407:11411822,8536493:0,0,0 +k1,4407:32583030,8536493:21171208 +g1,4407:32583030,8536493 +) +(1,4408:6764466,9221348:25818563,424439,79822 +h1,4408:6764466,9221348:0,0,0 +h1,4408:9420098,9221348:0,0,0 +k1,4408:32583030,9221348:23162932 +g1,4408:32583030,9221348 +) +] +) +g1,4410:32583029,9301170 +g1,4410:6764466,9301170 +g1,4410:6764466,9301170 +g1,4410:32583029,9301170 +g1,4410:32583029,9301170 +) +h1,4410:6764466,9497778:0,0,0 +(1,4414:6764466,10362858:25818563,513147,126483 +h1,4413:6764466,10362858:983040,0,0 +k1,4413:9499751,10362858:186590 +k1,4413:10856815,10362858:186591 +k1,4413:12557942,10362858:186590 +k1,4413:14436672,10362858:186590 +k1,4413:15282554,10362858:186590 +k1,4413:16927976,10362858:186591 +k1,4413:18444947,10362858:186590 +k1,4413:21950280,10362858:186590 +k1,4413:22614628,10362858:186591 +k1,4413:23867489,10362858:186590 +k1,4413:25193095,10362858:186590 +k1,4413:26194953,10362858:186590 +k1,4413:27775495,10362858:186591 +k1,4413:29356036,10362858:186590 +k1,4413:32583029,10362858:0 +) +(1,4414:6764466,11227938:25818563,513147,134348 +g1,4413:10119909,11227938 +g1,4413:10978430,11227938 +g1,4413:12636490,11227938 +g1,4413:14166100,11227938 +g1,4413:16408086,11227938 +k1,4414:32583029,11227938:12580293 +g1,4414:32583029,11227938 +) +] +g1,4415:32583029,11362286 +) +h1,4415:6630773,11362286:0,0,0 +(1,4418:6630773,12227366:25952256,505283,134348 +h1,4417:6630773,12227366:983040,0,0 +k1,4417:10574134,12227366:228125 +k1,4417:13229057,12227366:228125 +k1,4417:14932396,12227366:228124 +k1,4417:15516381,12227366:228125 +k1,4417:17938651,12227366:228125 +k1,4417:21068710,12227366:228125 +k1,4417:22677023,12227366:228125 +k1,4417:25436804,12227366:228125 +k1,4417:26684013,12227366:228124 +k1,4417:29856671,12227366:228125 +k1,4417:30697558,12227366:228125 +k1,4417:32583029,12227366:0 +) +(1,4418:6630773,13092446:25952256,505283,134348 +k1,4417:8854223,13092446:212805 +k1,4417:11247410,13092446:212804 +k1,4417:12207981,13092446:212805 +k1,4417:15449204,13092446:212804 +k1,4417:16408464,13092446:212805 +k1,4417:18489699,13092446:212804 +k1,4417:19987010,13092446:212805 +k1,4417:20657912,13092446:212805 +k1,4417:21402213,13092446:212804 +k1,4417:23538499,13092446:212805 +k1,4417:24402731,13092446:212804 +k1,4417:25801738,13092446:212805 +k1,4417:28523916,13092446:212804 +k1,4417:29928166,13092446:212805 +k1,4417:32583029,13092446:0 +) +(1,4418:6630773,13957526:25952256,505283,134348 +g1,4417:8840647,13957526 +g1,4417:9655914,13957526 +g1,4417:10874228,13957526 +g1,4417:12726930,13957526 +g1,4417:15665564,13957526 +k1,4418:32583029,13957526:13669501 +g1,4418:32583029,13957526 +) +v1,4420:6630773,14642381:0,393216,0 +(1,4439:6630773,19062699:25952256,4813534,196608 +g1,4439:6630773,19062699 +g1,4439:6630773,19062699 +g1,4439:6434165,19062699 +(1,4439:6434165,19062699:0,4813534,196608 +r1,4504:32779637,19062699:26345472,5010142,196608 +k1,4439:6434165,19062699:-26345472 +) +(1,4439:6434165,19062699:26345472,4813534,196608 +[1,4439:6630773,19062699:25952256,4616926,0 +(1,4422:6630773,14870212:25952256,424439,79822 +(1,4421:6630773,14870212:0,0,0 +g1,4421:6630773,14870212 +g1,4421:6630773,14870212 +g1,4421:6303093,14870212 +(1,4421:6303093,14870212:0,0,0 +) +g1,4421:6630773,14870212 +) +k1,4422:6630773,14870212:0 +h1,4422:9286405,14870212:0,0,0 +k1,4422:32583029,14870212:23296624 +g1,4422:32583029,14870212 +) +(1,4426:6630773,15686139:25952256,431045,112852 +(1,4424:6630773,15686139:0,0,0 +g1,4424:6630773,15686139 +g1,4424:6630773,15686139 +g1,4424:6303093,15686139 +(1,4424:6303093,15686139:0,0,0 +) +g1,4424:6630773,15686139 +) +g1,4426:7626635,15686139 +g1,4426:8954451,15686139 +g1,4426:10282267,15686139 +g1,4426:11610083,15686139 +g1,4426:12937899,15686139 +g1,4426:14265715,15686139 +g1,4426:15593531,15686139 +g1,4426:16921347,15686139 +g1,4426:18249163,15686139 +g1,4426:19576979,15686139 +h1,4426:20572841,15686139:0,0,0 +k1,4426:32583029,15686139:12010188 +g1,4426:32583029,15686139 +) +(1,4428:6630773,16502066:25952256,424439,86428 +(1,4427:6630773,16502066:0,0,0 +g1,4427:6630773,16502066 +g1,4427:6630773,16502066 +g1,4427:6303093,16502066 +(1,4427:6303093,16502066:0,0,0 +) +g1,4427:6630773,16502066 +) +k1,4428:6630773,16502066:0 +k1,4428:6630773,16502066:0 +h1,4428:10946175,16502066:0,0,0 +k1,4428:32583029,16502066:21636854 +g1,4428:32583029,16502066 +) +(1,4432:6630773,17317993:25952256,431045,112852 +(1,4430:6630773,17317993:0,0,0 +g1,4430:6630773,17317993 +g1,4430:6630773,17317993 +g1,4430:6303093,17317993 +(1,4430:6303093,17317993:0,0,0 +) +g1,4430:6630773,17317993 +) +g1,4432:7626635,17317993 +g1,4432:8954451,17317993 +g1,4432:10282267,17317993 +g1,4432:11610083,17317993 +g1,4432:12937899,17317993 +g1,4432:14265715,17317993 +g1,4432:15593531,17317993 +g1,4432:16921347,17317993 +g1,4432:18249163,17317993 +h1,4432:19245025,17317993:0,0,0 +k1,4432:32583029,17317993:13338004 +g1,4432:32583029,17317993 +) +(1,4434:6630773,18133920:25952256,424439,79822 +(1,4433:6630773,18133920:0,0,0 +g1,4433:6630773,18133920 +g1,4433:6630773,18133920 +g1,4433:6303093,18133920 +(1,4433:6303093,18133920:0,0,0 +) +g1,4433:6630773,18133920 +) +k1,4434:6630773,18133920:0 +k1,4434:6630773,18133920:0 +h1,4434:10282267,18133920:0,0,0 +k1,4434:32583029,18133920:22300762 +g1,4434:32583029,18133920 +) +(1,4438:6630773,18949847:25952256,431045,112852 +(1,4436:6630773,18949847:0,0,0 +g1,4436:6630773,18949847 +g1,4436:6630773,18949847 +g1,4436:6303093,18949847 +(1,4436:6303093,18949847:0,0,0 +) +g1,4436:6630773,18949847 +) +g1,4438:7626635,18949847 +g1,4438:8954451,18949847 +g1,4438:10282267,18949847 +g1,4438:11610083,18949847 +g1,4438:12937899,18949847 +g1,4438:14265715,18949847 +g1,4438:15593531,18949847 +g1,4438:16921347,18949847 +g1,4438:18249163,18949847 +h1,4438:19245025,18949847:0,0,0 +k1,4438:32583029,18949847:13338004 +g1,4438:32583029,18949847 +) +] +) +g1,4439:32583029,19062699 +g1,4439:6630773,19062699 +g1,4439:6630773,19062699 +g1,4439:32583029,19062699 +g1,4439:32583029,19062699 +) +h1,4439:6630773,19259307:0,0,0 +v1,4443:6630773,20124387:0,393216,0 +(1,4458:6630773,30928017:25952256,11196846,0 +g1,4458:6630773,30928017 +g1,4458:6237557,30928017 +r1,4504:6368629,30928017:131072,11196846,0 +g1,4458:6567858,30928017 +g1,4458:6764466,30928017 +[1,4458:6764466,30928017:25818563,11196846,0 +(1,4444:6764466,20432685:25818563,701514,196608 +(1,4443:6764466,20432685:0,701514,196608 +r1,4504:8863446,20432685:2098980,898122,196608 +k1,4443:6764466,20432685:-2098980 +) +(1,4443:6764466,20432685:2098980,701514,196608 +) +k1,4443:9011034,20432685:147588 +k1,4443:10737252,20432685:327680 +k1,4443:13214644,20432685:147587 +k1,4443:14929853,20432685:147588 +k1,4443:17816846,20432685:147588 +k1,4443:19358384,20432685:147587 +k1,4443:21700117,20432685:147588 +k1,4443:23858349,20432685:147587 +k1,4443:25197382,20432685:147588 +k1,4443:26765135,20432685:147588 +k1,4443:28249656,20432685:147587 +k1,4443:29145010,20432685:147588 +k1,4443:32583029,20432685:0 +) +(1,4444:6764466,21297765:25818563,513147,126483 +k1,4443:8072609,21297765:224177 +k1,4443:8948213,21297765:224176 +k1,4443:10814722,21297765:224177 +k1,4443:11394759,21297765:224177 +k1,4443:12874606,21297765:224177 +k1,4443:14666403,21297765:224176 +k1,4443:15909665,21297765:224177 +k1,4443:19125561,21297765:224177 +k1,4443:21391840,21297765:224177 +k1,4443:21971876,21297765:224176 +k1,4443:23451723,21297765:224177 +k1,4443:24960406,21297765:224177 +k1,4443:26317045,21297765:224177 +k1,4443:27929274,21297765:224176 +k1,4443:29323924,21297765:224177 +k1,4443:32583029,21297765:0 +) +(1,4444:6764466,22162845:25818563,513147,134348 +k1,4443:8524654,22162845:211572 +k1,4443:9387654,22162845:211572 +k1,4443:11670164,22162845:211572 +k1,4443:13265856,22162845:211572 +k1,4443:14902836,22162845:211572 +k1,4443:16284881,22162845:211572 +k1,4443:17488013,22162845:211572 +k1,4443:21230009,22162845:211572 +k1,4443:22835532,22162845:211572 +k1,4443:25249114,22162845:211572 +k1,4443:28977348,22162845:211572 +k1,4443:30924313,22162845:211572 +k1,4444:32583029,22162845:0 +) +(1,4444:6764466,23027925:25818563,513147,134348 +k1,4443:9458651,23027925:232653 +k1,4443:11576775,23027925:232653 +k1,4443:12800988,23027925:232653 +k1,4443:15227785,23027925:232652 +k1,4443:17471083,23027925:232653 +k1,4443:20030919,23027925:232653 +k1,4443:20922864,23027925:232653 +k1,4443:23716009,23027925:232653 +k1,4443:25807918,23027925:232653 +k1,4443:26723455,23027925:232652 +k1,4443:28683637,23027925:232653 +k1,4443:29567718,23027925:232653 +k1,4443:32583029,23027925:0 +) +(1,4444:6764466,23893005:25818563,513147,126483 +k1,4443:7506814,23893005:210851 +k1,4443:9430121,23893005:210851 +k1,4443:10292400,23893005:210851 +k1,4443:12877620,23893005:210851 +k1,4443:15258368,23893005:210851 +k1,4443:16152104,23893005:210851 +k1,4443:17816544,23893005:210851 +k1,4443:18713558,23893005:210852 +k1,4443:20621136,23893005:210851 +k1,4443:23026132,23893005:210851 +k1,4443:25247628,23893005:210851 +k1,4443:26562761,23893005:210851 +k1,4443:27521378,23893005:210851 +k1,4443:30510956,23893005:210851 +k1,4443:31483335,23893005:210851 +k1,4444:32583029,23893005:0 +) +(1,4444:6764466,24758085:25818563,513147,134348 +k1,4443:8889144,24758085:205128 +k1,4443:9509109,24758085:205122 +k1,4443:13484523,24758085:205128 +k1,4443:17051648,24758085:205128 +k1,4443:18066146,24758085:205128 +k1,4443:19290360,24758085:205129 +k1,4443:21175831,24758085:205128 +k1,4443:22040251,24758085:205128 +k1,4443:25218092,24758085:205128 +k1,4443:26106105,24758085:205128 +k1,4443:29006729,24758085:205128 +k1,4443:32583029,24758085:0 +) +(1,4444:6764466,25623165:25818563,513147,126483 +g1,4443:8655835,25623165 +g1,4443:9514356,25623165 +g1,4443:11352640,25623165 +g1,4443:14641892,25623165 +g1,4443:16874703,25623165 +g1,4443:17689970,25623165 +g1,4443:19092440,25623165 +k1,4444:32583029,25623165:10899295 +g1,4444:32583029,25623165 +) +v1,4446:6764466,26308020:0,393216,0 +(1,4456:6764466,30731409:25818563,4816605,196608 +g1,4456:6764466,30731409 +g1,4456:6764466,30731409 +g1,4456:6567858,30731409 +(1,4456:6567858,30731409:0,4816605,196608 +r1,4504:32779637,30731409:26211779,5013213,196608 +k1,4456:6567857,30731409:-26211780 +) +(1,4456:6567858,30731409:26211779,4816605,196608 +[1,4456:6764466,30731409:25818563,4619997,0 +(1,4448:6764466,26535851:25818563,424439,79822 +(1,4447:6764466,26535851:0,0,0 +g1,4447:6764466,26535851 +g1,4447:6764466,26535851 +g1,4447:6436786,26535851 +(1,4447:6436786,26535851:0,0,0 +) +g1,4447:6764466,26535851 +) +g1,4448:8756190,26535851 +h1,4448:9088144,26535851:0,0,0 +k1,4448:32583028,26535851:23494884 +g1,4448:32583028,26535851 +) +(1,4449:6764466,27220706:25818563,424439,79822 +h1,4449:6764466,27220706:0,0,0 +h1,4449:9088144,27220706:0,0,0 +k1,4449:32583028,27220706:23494884 +g1,4449:32583028,27220706 +) +(1,4450:6764466,27905561:25818563,424439,79822 +h1,4450:6764466,27905561:0,0,0 +k1,4450:6764466,27905561:0 +h1,4450:12075730,27905561:0,0,0 +k1,4450:32583030,27905561:20507300 +g1,4450:32583030,27905561 +) +(1,4451:6764466,28590416:25818563,424439,79822 +h1,4451:6764466,28590416:0,0,0 +h1,4451:9420098,28590416:0,0,0 +k1,4451:32583030,28590416:23162932 +g1,4451:32583030,28590416 +) +(1,4452:6764466,29275271:25818563,424439,86428 +h1,4452:6764466,29275271:0,0,0 +g1,4452:10084006,29275271 +h1,4452:11411822,29275271:0,0,0 +k1,4452:32583030,29275271:21171208 +g1,4452:32583030,29275271 +) +(1,4453:6764466,29960126:25818563,424439,79822 +h1,4453:6764466,29960126:0,0,0 +k1,4453:6764466,29960126:0 +h1,4453:10084006,29960126:0,0,0 +k1,4453:32583030,29960126:22499024 +g1,4453:32583030,29960126 +) +(1,4454:6764466,30644981:25818563,424439,86428 +h1,4454:6764466,30644981:0,0,0 +g1,4454:10084006,30644981 +k1,4454:10084006,30644981:0 +h1,4454:12075730,30644981:0,0,0 +k1,4454:32583030,30644981:20507300 +g1,4454:32583030,30644981 +) +] +) +g1,4456:32583029,30731409 +g1,4456:6764466,30731409 +g1,4456:6764466,30731409 +g1,4456:32583029,30731409 +g1,4456:32583029,30731409 +) +h1,4456:6764466,30928017:0,0,0 +] +g1,4458:32583029,30928017 +) +h1,4458:6630773,30928017:0,0,0 +(1,4461:6630773,31793097:25952256,513147,134348 +h1,4460:6630773,31793097:983040,0,0 +k1,4460:10433626,31793097:215412 +k1,4460:11887013,31793097:215412 +k1,4460:12761716,31793097:215411 +k1,4460:15890203,31793097:215412 +k1,4460:17991086,31793097:215412 +k1,4460:18737995,31793097:215412 +k1,4460:20307380,31793097:215411 +k1,4460:22663853,31793097:215412 +k1,4460:23951434,31793097:215412 +k1,4460:25233117,31793097:215412 +k1,4460:28232497,31793097:215411 +k1,4460:29063947,31793097:215412 +k1,4460:30881059,31793097:215412 +k1,4460:32583029,31793097:0 +) +(1,4461:6630773,32658177:25952256,513147,134348 +k1,4460:11189375,32658177:206356 +k1,4460:14742000,32658177:206357 +k1,4460:15479853,32658177:206356 +k1,4460:18425614,32658177:206356 +k1,4460:20025922,32658177:206357 +k1,4460:20588138,32658177:206356 +k1,4460:22772372,32658177:206357 +k1,4460:23645884,32658177:206356 +(1,4460:23645884,32658177:0,452978,122846 +r1,4504:26114421,32658177:2468537,575824,122846 +k1,4460:23645884,32658177:-2468537 +) +(1,4460:23645884,32658177:2468537,452978,122846 +k1,4460:23645884,32658177:3277 +h1,4460:26111144,32658177:0,411205,112570 +) +k1,4460:26320777,32658177:206356 +k1,4460:28711449,32658177:206357 +k1,4460:30114492,32658177:206356 +(1,4460:30114492,32658177:0,452978,122846 +r1,4504:32583029,32658177:2468537,575824,122846 +k1,4460:30114492,32658177:-2468537 +) +(1,4460:30114492,32658177:2468537,452978,122846 +k1,4460:30114492,32658177:3277 +h1,4460:32579752,32658177:0,411205,112570 +) +k1,4460:32583029,32658177:0 +) +(1,4461:6630773,33523257:25952256,513147,134348 +k1,4460:8856797,33523257:248147 +k1,4460:10618170,33523257:248147 +k1,4460:11813969,33523257:248148 +k1,4460:14801521,33523257:248147 +k1,4460:15581165,33523257:248147 +k1,4460:18116519,33523257:248147 +k1,4460:19023959,33523257:248148 +k1,4460:20291191,33523257:248147 +k1,4460:22192811,33523257:248147 +k1,4460:24454224,33523257:248147 +k1,4460:25388533,33523257:248147 +k1,4460:26655766,33523257:248148 +k1,4460:28881790,33523257:248147 +k1,4460:30697558,33523257:248147 +k1,4460:32583029,33523257:0 +) +(1,4461:6630773,34388337:25952256,513147,134348 +k1,4460:9729113,34388337:229174 +k1,4460:10949847,34388337:229174 +k1,4460:12938008,34388337:229175 +k1,4460:13818610,34388337:229174 +k1,4460:14795550,34388337:229174 +k1,4460:17787067,34388337:229174 +k1,4460:20950944,34388337:229175 +k1,4460:22383359,34388337:229174 +k1,4460:23144030,34388337:229174 +k1,4460:24439475,34388337:229174 +k1,4460:25024510,34388337:229175 +k1,4460:29358204,34388337:229174 +k1,4460:32117068,34388337:229174 +k1,4460:32583029,34388337:0 +) +(1,4461:6630773,35253417:25952256,513147,126483 +k1,4460:7828786,35253417:178928 +(1,4460:7828786,35253417:0,452978,122846 +r1,4504:10297323,35253417:2468537,575824,122846 +k1,4460:7828786,35253417:-2468537 +) +(1,4460:7828786,35253417:2468537,452978,122846 +k1,4460:7828786,35253417:3277 +h1,4460:10294046,35253417:0,411205,112570 +) +k1,4460:10476250,35253417:178927 +k1,4460:12633055,35253417:178928 +k1,4460:13471275,35253417:178928 +k1,4460:16077001,35253417:178928 +k1,4460:16787425,35253417:178927 +k1,4460:19286983,35253417:178928 +k1,4460:20908358,35253417:178928 +k1,4460:22106370,35253417:178927 +k1,4460:24802536,35253417:178928 +k1,4460:27133011,35253417:178928 +k1,4460:27770036,35253417:178928 +k1,4460:28480460,35253417:178927 +k1,4460:31896867,35253417:178928 +k1,4460:32583029,35253417:0 +) +(1,4461:6630773,36118497:25952256,505283,134348 +g1,4460:9959346,36118497 +g1,4460:10774613,36118497 +g1,4460:12471995,36118497 +h1,4460:13268913,36118497:0,0,0 +g1,4460:13468142,36118497 +g1,4460:14283409,36118497 +g1,4460:16946792,36118497 +g1,4460:17797449,36118497 +g1,4460:19698648,36118497 +k1,4461:32583029,36118497:9633795 +g1,4461:32583029,36118497 +) +v1,4463:6630773,36803352:0,393216,0 +(1,4500:6630773,45510161:25952256,9100025,196608 +g1,4500:6630773,45510161 +g1,4500:6630773,45510161 +g1,4500:6434165,45510161 +(1,4500:6434165,45510161:0,9100025,196608 +r1,4504:32779637,45510161:26345472,9296633,196608 +k1,4500:6434165,45510161:-26345472 +) +(1,4500:6434165,45510161:26345472,9100025,196608 +[1,4500:6630773,45510161:25952256,8903417,0 +(1,4465:6630773,37031183:25952256,424439,79822 +(1,4464:6630773,37031183:0,0,0 +g1,4464:6630773,37031183 +g1,4464:6630773,37031183 +g1,4464:6303093,37031183 +(1,4464:6303093,37031183:0,0,0 +) +g1,4464:6630773,37031183 +) +h1,4465:9950313,37031183:0,0,0 +k1,4465:32583029,37031183:22632716 +g1,4465:32583029,37031183 +) +(1,4469:6630773,37791740:25952256,431045,112852 +(1,4467:6630773,37791740:0,0,0 +g1,4467:6630773,37791740 +g1,4467:6630773,37791740 +g1,4467:6303093,37791740 +(1,4467:6303093,37791740:0,0,0 +) +g1,4467:6630773,37791740 +) +g1,4469:7626635,37791740 +g1,4469:7958589,37791740 +g1,4469:9286405,37791740 +g1,4469:10614221,37791740 +g1,4469:11942037,37791740 +g1,4469:13269853,37791740 +g1,4469:14597669,37791740 +g1,4469:15925485,37791740 +g1,4469:17253301,37791740 +g1,4469:18581117,37791740 +g1,4469:19908933,37791740 +g1,4469:21236749,37791740 +h1,4469:22232611,37791740:0,0,0 +k1,4469:32583029,37791740:10350418 +g1,4469:32583029,37791740 +) +(1,4471:6630773,38552297:25952256,424439,79822 +(1,4470:6630773,38552297:0,0,0 +g1,4470:6630773,38552297 +g1,4470:6630773,38552297 +g1,4470:6303093,38552297 +(1,4470:6303093,38552297:0,0,0 +) +g1,4470:6630773,38552297 +) +h1,4471:10282267,38552297:0,0,0 +k1,4471:32583029,38552297:22300762 +g1,4471:32583029,38552297 +) +(1,4475:6630773,39312854:25952256,424439,79822 +(1,4473:6630773,39312854:0,0,0 +g1,4473:6630773,39312854 +g1,4473:6630773,39312854 +g1,4473:6303093,39312854 +(1,4473:6303093,39312854:0,0,0 +) +g1,4473:6630773,39312854 +) +g1,4475:7626635,39312854 +h1,4475:11610082,39312854:0,0,0 +k1,4475:32583030,39312854:20972948 +g1,4475:32583030,39312854 +) +(1,4477:6630773,40073411:25952256,424439,86428 +(1,4476:6630773,40073411:0,0,0 +g1,4476:6630773,40073411 +g1,4476:6630773,40073411 +g1,4476:6303093,40073411 +(1,4476:6303093,40073411:0,0,0 +) +g1,4476:6630773,40073411 +) +k1,4477:6630773,40073411:0 +g1,4477:10946175,40073411 +h1,4477:13269853,40073411:0,0,0 +k1,4477:32583029,40073411:19313176 +g1,4477:32583029,40073411 +) +(1,4481:6630773,40833968:25952256,424439,112852 +(1,4479:6630773,40833968:0,0,0 +g1,4479:6630773,40833968 +g1,4479:6630773,40833968 +g1,4479:6303093,40833968 +(1,4479:6303093,40833968:0,0,0 +) +g1,4479:6630773,40833968 +) +g1,4481:7626635,40833968 +g1,4481:8954451,40833968 +g1,4481:10282267,40833968 +g1,4481:11610083,40833968 +g1,4481:12937899,40833968 +g1,4481:14265715,40833968 +h1,4481:15261577,40833968:0,0,0 +k1,4481:32583029,40833968:17321452 +g1,4481:32583029,40833968 +) +(1,4483:6630773,41594524:25952256,424439,86428 +(1,4482:6630773,41594524:0,0,0 +g1,4482:6630773,41594524 +g1,4482:6630773,41594524 +g1,4482:6303093,41594524 +(1,4482:6303093,41594524:0,0,0 +) +g1,4482:6630773,41594524 +) +k1,4483:6630773,41594524:0 +g1,4483:11278129,41594524 +h1,4483:13269853,41594524:0,0,0 +k1,4483:32583029,41594524:19313176 +g1,4483:32583029,41594524 +) +(1,4487:6630773,42355081:25952256,431045,112852 +(1,4485:6630773,42355081:0,0,0 +g1,4485:6630773,42355081 +g1,4485:6630773,42355081 +g1,4485:6303093,42355081 +(1,4485:6303093,42355081:0,0,0 +) +g1,4485:6630773,42355081 +) +g1,4487:7626635,42355081 +g1,4487:8954451,42355081 +g1,4487:10282267,42355081 +g1,4487:11610083,42355081 +g1,4487:12937899,42355081 +g1,4487:14265715,42355081 +h1,4487:15261577,42355081:0,0,0 +k1,4487:32583029,42355081:17321452 +g1,4487:32583029,42355081 +) +(1,4489:6630773,43115638:25952256,424439,6605 +(1,4488:6630773,43115638:0,0,0 +g1,4488:6630773,43115638 +g1,4488:6630773,43115638 +g1,4488:6303093,43115638 +(1,4488:6303093,43115638:0,0,0 +) +g1,4488:6630773,43115638 +) +g1,4489:8290543,43115638 +g1,4489:8954451,43115638 +h1,4489:9950313,43115638:0,0,0 +k1,4489:32583029,43115638:22632716 +g1,4489:32583029,43115638 +) +(1,4493:6630773,43876195:25952256,424439,79822 +(1,4491:6630773,43876195:0,0,0 +g1,4491:6630773,43876195 +g1,4491:6630773,43876195 +g1,4491:6303093,43876195 +(1,4491:6303093,43876195:0,0,0 +) +g1,4491:6630773,43876195 +) +g1,4493:7626635,43876195 +g1,4493:7958589,43876195 +g1,4493:9286405,43876195 +g1,4493:11278129,43876195 +g1,4493:13269853,43876195 +g1,4493:15261577,43876195 +g1,4493:15593531,43876195 +g1,4493:17253301,43876195 +g1,4493:17585255,43876195 +g1,4493:19245025,43876195 +g1,4493:19576979,43876195 +g1,4493:21236749,43876195 +g1,4493:21568703,43876195 +g1,4493:23228473,43876195 +g1,4493:23560427,43876195 +g1,4493:25220197,43876195 +g1,4493:25552151,43876195 +g1,4493:27211921,43876195 +g1,4493:27543875,43876195 +h1,4493:28871691,43876195:0,0,0 +k1,4493:32583029,43876195:3711338 +g1,4493:32583029,43876195 +) +(1,4495:6630773,44636752:25952256,424439,79822 +(1,4494:6630773,44636752:0,0,0 +g1,4494:6630773,44636752 +g1,4494:6630773,44636752 +g1,4494:6303093,44636752 +(1,4494:6303093,44636752:0,0,0 +) +g1,4494:6630773,44636752 +) +g1,4495:9950312,44636752 +g1,4495:10614220,44636752 +h1,4495:11942036,44636752:0,0,0 +k1,4495:32583028,44636752:20640992 +g1,4495:32583028,44636752 +) +(1,4499:6630773,45397309:25952256,431045,112852 +(1,4497:6630773,45397309:0,0,0 +g1,4497:6630773,45397309 +g1,4497:6630773,45397309 +g1,4497:6303093,45397309 +(1,4497:6303093,45397309:0,0,0 +) +g1,4497:6630773,45397309 +) +g1,4499:7626635,45397309 +g1,4499:8954451,45397309 +g1,4499:10282267,45397309 +g1,4499:11610083,45397309 +g1,4499:12937899,45397309 +g1,4499:14265715,45397309 +g1,4499:15593531,45397309 +g1,4499:16921347,45397309 +h1,4499:17917209,45397309:0,0,0 +k1,4499:32583029,45397309:14665820 +g1,4499:32583029,45397309 +) +] +) +g1,4500:32583029,45510161 +g1,4500:6630773,45510161 +g1,4500:6630773,45510161 +g1,4500:32583029,45510161 +g1,4500:32583029,45510161 +) +h1,4500:6630773,45706769:0,0,0 +] +(1,4504:32583029,45706769:0,0,0 +g1,4504:32583029,45706769 +) +) +] +(1,4504:6630773,47279633:25952256,0,0 +h1,4504:6630773,47279633:25952256,0,0 +) +] +(1,4504:4262630,4025873:0,0,0 +[1,4504:-473656,4025873:0,0,0 +(1,4504:-473656,-710413:0,0,0 +(1,4504:-473656,-710413:0,0,0 +g1,4504:-473656,-710413 +) +g1,4504:-473656,-710413 +) +] +) +] +!26013 +}79 +Input:756:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:757:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:758:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:759:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:760:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:761:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:762:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!662 +{80 +[1,4637:4262630,47279633:28320399,43253760,0 +(1,4637:4262630,4025873:0,0,0 +[1,4637:-473656,4025873:0,0,0 +(1,4637:-473656,-710413:0,0,0 +(1,4637:-473656,-644877:0,0,0 +k1,4637:-473656,-644877:-65536 ) -g1,5297:24014842,38404395 -(1,5297:24014842,38404395:924057,924057,924057 -g1,5297:24938899,38404395 -g1,5297:24938899,38404395 +(1,4637:-473656,4736287:0,0,0 +k1,4637:-473656,4736287:5209943 ) -g1,5297:24938899,38404395 -(1,5297:24938899,38404395:910950,924057,924057 -g1,5297:24938899,38404395 -g1,5297:25849849,38404395 -(1,5297:25849849,38404395:0,924057,924057 -(1,5297:25849849,38404395:0,0,0 -(1,5297:25849849,38404395:0,0,0 -g1,5297:25849849,38404395 -g1,5297:25849849,38404395 -g1,5297:25849849,38404395 -g1,5297:25849849,38404395 -g1,5297:25849849,38404395 -(1,5297:25849849,38404395:0,0,0 -(1,5297:25849849,38404395:1455946,281018,142607 -(1,5297:25849849,38404395:1455946,281018,142607 -$1,5297:25849849,38404395 -h1,5297:25849849,38404395:0,281018,137888 -(1,5297:26219996,38485267:1085799,303170,61735 +g1,4637:-473656,-710413 ) -$1,5297:27305795,38404395 +] ) -g1,5297:27305795,38404395 +[1,4637:6630773,47279633:25952256,43253760,0 +[1,4637:6630773,4812305:25952256,786432,0 +(1,4637:6630773,4812305:25952256,505283,126483 +(1,4637:6630773,4812305:25952256,505283,126483 +g1,4637:3078558,4812305 +[1,4637:3078558,4812305:0,0,0 +(1,4637:3078558,2439708:0,1703936,0 +k1,4637:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,4637:2537886,2439708:1179648,16384,0 ) +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,4637:3078558,1915420:16384,1179648,0 ) -g1,5297:25849849,38404395 -g1,5297:25849849,38404395 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) +] ) -g1,5297:25849849,38404395 ) ) -g1,5297:25849849,38404395 -(1,5298:25849849,38404395:924057,924057,924057 -g1,5298:26773906,38404395 -g1,5298:26773906,38404395 +] +[1,4637:3078558,4812305:0,0,0 +(1,4637:3078558,2439708:0,1703936,0 +g1,4637:29030814,2439708 +g1,4637:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,4637:36151628,1915420:16384,1179648,0 ) -g1,5298:26773906,38404395 +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) ] ) +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,4637:37855564,2439708:1179648,16384,0 ) -g1,5298:17585764,38404395 -g1,5298:17585764,38404395 ) +k1,4637:3078556,2439708:-34777008 ) -g1,5298:17585764,38404395 -g1,5299:17585764,38404395 -(1,5306:17585764,38404395:0,0,0 -(1,5306:17585764,38404395:0,0,0 -g1,5306:17585764,38404395 -g1,5306:17585764,38404395 -g1,5306:17585764,38404395 -g1,5306:17585764,38404395 -g1,5306:17585764,38404395 -(1,5306:17585764,38404395:0,0,0 -(1,5306:17585764,38404395:9188142,8264085,924057 -[1,5306:17585764,38404395:9188142,8264085,924057 -(1,5302:17585764,31064367:9188142,924057,924057 -g1,5301:17585764,31064367 -(1,5301:17585764,31064367:924057,924057,924057 -g1,5301:17585764,31064367 -g1,5301:18509821,31064367 -(1,5301:18509821,31064367:0,924057,924057 -(1,5301:18509821,31064367:0,0,0 -(1,5301:18509821,31064367:0,0,0 -g1,5301:18509821,31064367 -g1,5301:18509821,31064367 -g1,5301:18509821,31064367 -g1,5301:18509821,31064367 -g1,5301:18509821,31064367 -(1,5301:18509821,31064367:0,0,0 -(1,5301:18509821,31064367:1347418,281018,140387 -(1,5301:18509821,31064367:1347418,281018,140387 -$1,5301:18509821,31064367 -h1,5301:18509821,31064367:0,281018,137888 -(1,5301:18879968,31143019:977271,286654,61735 -) -$1,5301:19857239,31064367 +] +[1,4637:3078558,4812305:0,0,0 +(1,4637:3078558,49800853:0,16384,2228224 +k1,4637:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,4637:2537886,49800853:1179648,16384,0 ) -g1,5301:19857239,31064367 +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,4637:3078558,51504789:16384,1179648,0 ) +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) -g1,5301:18509821,31064367 -g1,5301:18509821,31064367 +] ) ) -g1,5301:18509821,31064367 ) +] +[1,4637:3078558,4812305:0,0,0 +(1,4637:3078558,49800853:0,16384,2228224 +g1,4637:29030814,49800853 +g1,4637:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,4637:36151628,51504789:16384,1179648,0 ) -g1,5301:18509821,31064367 -(1,5301:18509821,31064367:924057,924057,924057 -g1,5301:19433878,31064367 -g1,5301:19433878,31064367 +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 +) +] +) +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,4637:37855564,49800853:1179648,16384,0 +) +) +k1,4637:3078556,49800853:-34777008 +) +] +g1,4637:6630773,4812305 +g1,4637:6630773,4812305 +g1,4637:8826229,4812305 +g1,4637:13247287,4812305 +k1,4637:31786111,4812305:18538824 +) +) +] +[1,4637:6630773,45706769:25952256,40108032,0 +(1,4637:6630773,45706769:25952256,40108032,0 +(1,4637:6630773,45706769:0,0,0 +g1,4637:6630773,45706769 +) +[1,4637:6630773,45706769:25952256,40108032,0 +(1,4504:6630773,6254097:25952256,513147,134348 +h1,4503:6630773,6254097:983040,0,0 +k1,4503:10585753,6254097:220739 +k1,4503:12200443,6254097:220739 +k1,4503:14490809,6254097:220739 +k1,4503:17019726,6254097:220739 +k1,4503:17771962,6254097:220739 +k1,4503:19346675,6254097:220739 +k1,4503:22872395,6254097:220739 +k1,4503:24606360,6254097:220739 +k1,4503:25443137,6254097:220739 +k1,4503:26078698,6254097:220718 +k1,4503:28829127,6254097:220739 +k1,4503:32583029,6254097:0 +) +(1,4504:6630773,7119177:25952256,505283,126483 +k1,4503:9908425,7119177:200737 +k1,4503:11100721,7119177:200736 +k1,4503:14812222,7119177:200737 +k1,4503:18888757,7119177:200736 +k1,4503:22340080,7119177:200737 +k1,4503:24238855,7119177:200737 +k1,4503:26811339,7119177:200736 +k1,4503:27663504,7119177:200737 +k1,4503:28220100,7119177:200736 +k1,4503:30572384,7119177:200737 +k1,4503:32583029,7119177:0 +) +(1,4504:6630773,7984257:25952256,513147,122846 +k1,4503:7213095,7984257:226462 +(1,4503:7213095,7984257:0,452978,122846 +r1,4637:9681632,7984257:2468537,575824,122846 +k1,4503:7213095,7984257:-2468537 +) +(1,4503:7213095,7984257:2468537,452978,122846 +k1,4503:7213095,7984257:3277 +h1,4503:9678355,7984257:0,411205,112570 +) +k1,4503:9908094,7984257:226462 +k1,4503:12286104,7984257:226463 +k1,4503:12868426,7984257:226462 +k1,4503:15072765,7984257:226462 +k1,4503:16583733,7984257:226462 +k1,4503:17914477,7984257:226462 +k1,4503:18888706,7984257:226463 +k1,4503:20628394,7984257:226462 +k1,4503:21506284,7984257:226462 +k1,4503:23936722,7984257:226462 +k1,4503:25182269,7984257:226462 +k1,4503:28277898,7984257:226463 +k1,4503:29452011,7984257:226462 +k1,4503:31563944,7984257:226462 +k1,4503:32583029,7984257:0 +) +(1,4504:6630773,8849337:25952256,513147,126483 +g1,4503:8672874,8849337 +g1,4503:9531395,8849337 +g1,4503:10749709,8849337 +g1,4503:14702840,8849337 +g1,4503:16093514,8849337 +g1,4503:17499916,8849337 +(1,4503:17499916,8849337:0,414482,115847 +r1,4637:18913317,8849337:1413401,530329,115847 +k1,4503:17499916,8849337:-1413401 +) +(1,4503:17499916,8849337:1413401,414482,115847 +k1,4503:17499916,8849337:3277 +h1,4503:18910040,8849337:0,411205,112570 +) +k1,4504:32583029,8849337:13496042 +g1,4504:32583029,8849337 +) +v1,4506:6630773,9714417:0,393216,0 +(1,4535:6630773,25764034:25952256,16442833,0 +g1,4535:6630773,25764034 +g1,4535:6237557,25764034 +r1,4637:6368629,25764034:131072,16442833,0 +g1,4535:6567858,25764034 +g1,4535:6764466,25764034 +[1,4535:6764466,25764034:25818563,16442833,0 +(1,4507:6764466,9986894:25818563,665693,196608 +(1,4506:6764466,9986894:0,665693,196608 +r1,4637:8010564,9986894:1246098,862301,196608 +k1,4506:6764466,9986894:-1246098 +) +(1,4506:6764466,9986894:1246098,665693,196608 +) +k1,4506:8286983,9986894:276419 +k1,4506:10013201,9986894:327680 +k1,4506:11486307,9986894:276419 +k1,4506:14754446,9986894:276420 +k1,4506:15646903,9986894:276419 +k1,4506:17126563,9986894:276419 +k1,4506:18629161,9986894:276419 +k1,4506:20065567,9986894:276419 +k1,4506:24375073,9986894:276420 +k1,4506:27878485,9986894:276419 +k1,4506:29577691,9986894:276419 +k1,4506:30513402,9986894:276419 +k1,4506:32583029,9986894:0 +) +(1,4507:6764466,10851974:25818563,505283,134348 +k1,4506:9478584,10851974:232270 +k1,4506:10316408,10851974:232271 +k1,4506:11567763,10851974:232270 +k1,4506:13869661,10851974:232271 +k1,4506:16079808,10851974:232270 +k1,4506:19090806,10851974:232271 +k1,4506:20084604,10851974:232270 +k1,4506:20672734,10851974:232270 +k1,4506:24242098,10851974:232271 +k1,4506:28228270,10851974:232270 +k1,4506:29564823,10851974:232271 +k1,4506:30544859,10851974:232270 +k1,4506:32583029,10851974:0 +) +(1,4507:6764466,11717054:25818563,513147,134348 +k1,4506:7549368,11717054:168864 +k1,4506:8074093,11717054:168865 +k1,4506:10927967,11717054:168864 +k1,4506:12288277,11717054:168865 +k1,4506:13476226,11717054:168864 +k1,4506:16156430,11717054:168864 +k1,4506:17838521,11717054:168865 +k1,4506:18693547,11717054:168864 +k1,4506:19218272,11717054:168865 +k1,4506:22490921,11717054:168864 +k1,4506:23607436,11717054:168864 +k1,4506:26970526,11717054:168865 +k1,4506:27495250,11717054:168864 +k1,4506:29744228,11717054:168865 +k1,4506:30572384,11717054:168864 +k1,4506:32583029,11717054:0 +) +(1,4507:6764466,12582134:25818563,513147,102891 +g1,4506:8531316,12582134 +g1,4506:9749630,12582134 +g1,4506:11602332,12582134 +g1,4506:13953108,12582134 +g1,4506:14835222,12582134 +g1,4506:16602072,12582134 +g1,4506:17157161,12582134 +g1,4506:20118733,12582134 +k1,4507:32583029,12582134:10312749 +g1,4507:32583029,12582134 +) +v1,4509:6764466,13266989:0,393216,0 +(1,4518:6764466,16998917:25818563,4125144,196608 +g1,4518:6764466,16998917 +g1,4518:6764466,16998917 +g1,4518:6567858,16998917 +(1,4518:6567858,16998917:0,4125144,196608 +r1,4637:32779637,16998917:26211779,4321752,196608 +k1,4518:6567857,16998917:-26211780 +) +(1,4518:6567858,16998917:26211779,4125144,196608 +[1,4518:6764466,16998917:25818563,3928536,0 +(1,4511:6764466,13494820:25818563,424439,79822 +(1,4510:6764466,13494820:0,0,0 +g1,4510:6764466,13494820 +g1,4510:6764466,13494820 +g1,4510:6436786,13494820 +(1,4510:6436786,13494820:0,0,0 +) +g1,4510:6764466,13494820 +) +g1,4511:8424236,13494820 +g1,4511:9420098,13494820 +h1,4511:13735499,13494820:0,0,0 +k1,4511:32583029,13494820:18847530 +g1,4511:32583029,13494820 +) +(1,4512:6764466,14179675:25818563,407923,9908 +h1,4512:6764466,14179675:0,0,0 +g1,4512:8424236,14179675 +g1,4512:9420098,14179675 +h1,4512:10747914,14179675:0,0,0 +k1,4512:32583030,14179675:21835116 +g1,4512:32583030,14179675 +) +(1,4513:6764466,14864530:25818563,424439,6605 +h1,4513:6764466,14864530:0,0,0 +g1,4513:9752051,14864530 +g1,4513:10747913,14864530 +g1,4513:12407683,14864530 +g1,4513:13071591,14864530 +h1,4513:14067453,14864530:0,0,0 +k1,4513:32583029,14864530:18515576 +g1,4513:32583029,14864530 +) +(1,4514:6764466,15549385:25818563,424439,6605 +h1,4514:6764466,15549385:0,0,0 +h1,4514:9420097,15549385:0,0,0 +k1,4514:32583029,15549385:23162932 +g1,4514:32583029,15549385 +) +(1,4515:6764466,16234240:25818563,424439,79822 +h1,4515:6764466,16234240:0,0,0 +h1,4515:11411821,16234240:0,0,0 +k1,4515:32583029,16234240:21171208 +g1,4515:32583029,16234240 +) +(1,4516:6764466,16919095:25818563,424439,79822 +h1,4516:6764466,16919095:0,0,0 +h1,4516:11411821,16919095:0,0,0 +k1,4516:32583029,16919095:21171208 +g1,4516:32583029,16919095 +) +] +) +g1,4518:32583029,16998917 +g1,4518:6764466,16998917 +g1,4518:6764466,16998917 +g1,4518:32583029,16998917 +g1,4518:32583029,16998917 +) +h1,4518:6764466,17195525:0,0,0 +(1,4522:6764466,18060605:25818563,513147,134348 +h1,4521:6764466,18060605:983040,0,0 +k1,4521:11201854,18060605:195898 +k1,4521:13824550,18060605:195898 +k1,4521:15124730,18060605:195898 +k1,4521:16068394,18060605:195898 +k1,4521:19056126,18060605:195898 +k1,4521:20819645,18060605:195898 +k1,4521:21371403,18060605:195898 +k1,4521:23636928,18060605:195898 +k1,4521:25810703,18060605:195898 +k1,4521:26768129,18060605:195898 +k1,4521:29032343,18060605:195898 +k1,4521:29887533,18060605:195898 +k1,4522:32583029,18060605:0 +) +(1,4522:6764466,18925685:25818563,452978,115847 +(1,4521:6764466,18925685:0,452978,115847 +r1,4637:9233003,18925685:2468537,568825,115847 +k1,4521:6764466,18925685:-2468537 +) +(1,4521:6764466,18925685:2468537,452978,115847 +k1,4521:6764466,18925685:3277 +h1,4521:9229726,18925685:0,411205,112570 +) +k1,4522:32583029,18925685:23176356 +g1,4522:32583029,18925685 +) +v1,4524:6764466,19610540:0,393216,0 +(1,4531:6764466,21972758:25818563,2755434,196608 +g1,4531:6764466,21972758 +g1,4531:6764466,21972758 +g1,4531:6567858,21972758 +(1,4531:6567858,21972758:0,2755434,196608 +r1,4637:32779637,21972758:26211779,2952042,196608 +k1,4531:6567857,21972758:-26211780 +) +(1,4531:6567858,21972758:26211779,2755434,196608 +[1,4531:6764466,21972758:25818563,2558826,0 +(1,4526:6764466,19838371:25818563,424439,79822 +(1,4525:6764466,19838371:0,0,0 +g1,4525:6764466,19838371 +g1,4525:6764466,19838371 +g1,4525:6436786,19838371 +(1,4525:6436786,19838371:0,0,0 +) +g1,4525:6764466,19838371 +) +g1,4526:9420098,19838371 +g1,4526:10415960,19838371 +g1,4526:14067454,19838371 +g1,4526:14731362,19838371 +h1,4526:16059178,19838371:0,0,0 +k1,4526:32583029,19838371:16523851 +g1,4526:32583029,19838371 +) +(1,4527:6764466,20523226:25818563,424439,6605 +h1,4527:6764466,20523226:0,0,0 +h1,4527:9088144,20523226:0,0,0 +k1,4527:32583028,20523226:23494884 +g1,4527:32583028,20523226 +) +(1,4528:6764466,21208081:25818563,424439,79822 +h1,4528:6764466,21208081:0,0,0 +h1,4528:11079867,21208081:0,0,0 +k1,4528:32583029,21208081:21503162 +g1,4528:32583029,21208081 +) +(1,4529:6764466,21892936:25818563,424439,79822 +h1,4529:6764466,21892936:0,0,0 +h1,4529:11079867,21892936:0,0,0 +k1,4529:32583029,21892936:21503162 +g1,4529:32583029,21892936 +) +] +) +g1,4531:32583029,21972758 +g1,4531:6764466,21972758 +g1,4531:6764466,21972758 +g1,4531:32583029,21972758 +g1,4531:32583029,21972758 +) +h1,4531:6764466,22169366:0,0,0 +(1,4535:6764466,23034446:25818563,505283,126483 +h1,4534:6764466,23034446:983040,0,0 +k1,4534:9571313,23034446:164435 +k1,4534:11116593,23034446:164436 +k1,4534:11932456,23034446:164435 +k1,4534:15761665,23034446:164436 +k1,4534:16945185,23034446:164435 +k1,4534:20101340,23034446:164436 +k1,4534:22294770,23034446:164435 +k1,4534:24333536,23034446:164436 +k1,4534:27852104,23034446:164435 +k1,4534:29008100,23034446:164436 +k1,4534:30526509,23034446:164435 +k1,4534:32583029,23034446:0 +) +(1,4535:6764466,23899526:25818563,513147,126483 +k1,4534:8458354,23899526:180662 +k1,4534:9255054,23899526:180662 +k1,4534:9850541,23899526:180644 +k1,4534:12560893,23899526:180662 +k1,4534:14121743,23899526:180662 +k1,4534:15984059,23899526:180662 +k1,4534:17112372,23899526:180662 +k1,4534:19648398,23899526:180662 +k1,4534:21325247,23899526:180662 +k1,4534:22790416,23899526:180663 +k1,4534:23502575,23899526:180662 +k1,4534:25077843,23899526:180662 +k1,4534:25909933,23899526:180662 +k1,4534:29755368,23899526:180662 +k1,4534:31426319,23899526:180662 +k1,4534:32583029,23899526:0 +) +(1,4535:6764466,24764606:25818563,513147,134348 +k1,4534:7461366,24764606:165403 +k1,4534:10119102,24764606:165402 +k1,4534:11678456,24764606:165403 +k1,4534:12862944,24764606:165403 +k1,4534:15767751,24764606:165402 +k1,4534:17692796,24764606:165403 +k1,4534:20792901,24764606:165403 +k1,4534:21424265,24764606:165403 +k1,4534:22746377,24764606:165402 +k1,4534:24404690,24764606:165403 +k1,4534:25636364,24764606:165403 +k1,4534:28961257,24764606:165402 +k1,4534:30823387,24764606:165403 +k1,4534:32583029,24764606:0 +) +(1,4535:6764466,25629686:25818563,513147,134348 +g1,4534:8715472,25629686 +g1,4534:9573993,25629686 +g1,4534:11469949,25629686 +g1,4534:13239421,25629686 +g1,4534:16955312,25629686 +g1,4534:19597723,25629686 +k1,4535:32583029,25629686:8621919 +g1,4535:32583029,25629686 +) +] +g1,4535:32583029,25764034 +) +h1,4535:6630773,25764034:0,0,0 +v1,4537:6630773,26629114:0,393216,0 +(1,4637:6630773,45650479:25952256,19414581,0 +g1,4637:6630773,45650479 +g1,4637:6237557,45650479 +r1,4637:6368629,45650479:131072,19414581,0 +g1,4637:6567858,45650479 +g1,4637:6764466,45650479 +[1,4637:6764466,45650479:25818563,19414581,0 +(1,4540:6764466,26937412:25818563,701514,196608 +(1,4537:6764466,26937412:0,701514,196608 +r1,4637:8010564,26937412:1246098,898122,196608 +k1,4537:6764466,26937412:-1246098 +) +(1,4537:6764466,26937412:1246098,701514,196608 +) +k1,4537:8193906,26937412:183342 +k1,4537:8521586,26937412:327680 +k1,4537:8521586,26937412:0 +k1,4538:8704928,26937412:183342 +k1,4539:9516105,26937412:183342 +k1,4539:10465562,26937412:183341 +k1,4539:12682486,26937412:183342 +k1,4539:15857547,26937412:183342 +k1,4539:16909241,26937412:183342 +k1,4539:18567798,26937412:183342 +k1,4539:20264366,26937412:183342 +k1,4539:22677898,26937412:183342 +k1,4539:24962323,26937412:183341 +k1,4539:27394861,26937412:183342 +k1,4539:28525854,26937412:183342 +k1,4539:31923737,26937412:183342 +k1,4539:32583029,26937412:0 +) +(1,4540:6764466,27802492:25818563,505283,126483 +k1,4539:10051037,27802492:243734 +k1,4539:10922607,27802492:243735 +k1,4539:12185426,27802492:243734 +k1,4539:14737338,27802492:243734 +k1,4539:16494298,27802492:243734 +k1,4539:17424195,27802492:243735 +k1,4539:20659648,27802492:243734 +k1,4539:22758706,27802492:243734 +k1,4539:24021525,27802492:243734 +k1,4539:27134426,27802492:243735 +k1,4539:28882211,27802492:243734 +k1,4539:32583029,27802492:0 +) +(1,4540:6764466,28667572:25818563,505283,134348 +k1,4539:7670596,28667572:223245 +k1,4539:11018599,28667572:223246 +k1,4539:11869679,28667572:223245 +k1,4539:12507743,28667572:223221 +k1,4539:13750074,28667572:223246 +k1,4539:16842485,28667572:223245 +k1,4539:18170012,28667572:223245 +k1,4539:19141024,28667572:223246 +k1,4539:22139063,28667572:223245 +k1,4539:24604296,28667572:223246 +k1,4539:26018986,28667572:223245 +k1,4539:27938958,28667572:223245 +k1,4539:30230520,28667572:223246 +k1,4539:31966991,28667572:223245 +k1,4539:32583029,28667572:0 +) +(1,4540:6764466,29532652:25818563,513147,126483 +k1,4539:8694119,29532652:267005 +k1,4539:9620415,29532652:267004 +k1,4539:12507549,29532652:267005 +k1,4539:15023749,29532652:267004 +k1,4539:15942182,29532652:267005 +k1,4539:18413162,29532652:267004 +k1,4539:19699252,29532652:267005 +k1,4539:22125012,29532652:267004 +k1,4539:25434854,29532652:267005 +k1,4539:27534245,29532652:267004 +k1,4539:28332747,29532652:267005 +k1,4539:29756461,29532652:267004 +k1,4539:32583029,29532652:0 +) +(1,4540:6764466,30397732:25818563,513147,134348 +g1,4539:8882589,30397732 +g1,4539:10285059,30397732 +g1,4539:11015785,30397732 +g1,4539:12568988,30397732 +g1,4539:14919109,30397732 +g1,4539:16137423,30397732 +g1,4539:19144214,30397732 +g1,4539:20002735,30397732 +g1,4539:22212609,30397732 +g1,4539:25047041,30397732 +g1,4539:26418709,30397732 +k1,4540:32583029,30397732:995495 +g1,4540:32583029,30397732 +) +(1,4542:6764466,31262812:25818563,505283,134348 +h1,4541:6764466,31262812:983040,0,0 +k1,4541:9512688,31262812:291933 +k1,4541:12203239,31262812:291933 +k1,4541:13363524,31262812:291933 +k1,4541:15130672,31262812:291933 +k1,4541:15778465,31262812:291933 +k1,4541:17459107,31262812:291934 +k1,4541:19728917,31262812:291933 +k1,4541:22922129,31262812:291933 +k1,4541:26688781,31262812:291933 +k1,4541:28716107,31262812:291933 +k1,4541:30881059,31262812:291933 +k1,4541:32583029,31262812:0 +) +(1,4542:6764466,32127892:25818563,505283,126483 +g1,4541:8790183,32127892 +g1,4541:10180857,32127892 +g1,4541:11248438,32127892 +g1,4541:12996283,32127892 +g1,4541:13846940,32127892 +g1,4541:16344517,32127892 +g1,4541:18240473,32127892 +g1,4541:20266190,32127892 +g1,4541:21859370,32127892 +g1,4541:24224564,32127892 +k1,4542:32583029,32127892:6116478 +g1,4542:32583029,32127892 +) +v1,4544:6764466,32812747:0,393216,0 +(1,4548:6764466,33127006:25818563,707475,196608 +g1,4548:6764466,33127006 +g1,4548:6764466,33127006 +g1,4548:6567858,33127006 +(1,4548:6567858,33127006:0,707475,196608 +r1,4637:32779637,33127006:26211779,904083,196608 +k1,4548:6567857,33127006:-26211780 +) +(1,4548:6567858,33127006:26211779,707475,196608 +[1,4548:6764466,33127006:25818563,510867,0 +(1,4546:6764466,33040578:25818563,424439,86428 +(1,4545:6764466,33040578:0,0,0 +g1,4545:6764466,33040578 +g1,4545:6764466,33040578 +g1,4545:6436786,33040578 +(1,4545:6436786,33040578:0,0,0 +) +g1,4545:6764466,33040578 +) +g1,4546:8756190,33040578 +g1,4546:9752052,33040578 +g1,4546:12075730,33040578 +g1,4546:13735500,33040578 +g1,4546:15395270,33040578 +g1,4546:17055040,33040578 +g1,4546:18714810,33040578 +g1,4546:20374580,33040578 +g1,4546:22034350,33040578 +g1,4546:23694120,33040578 +h1,4546:25021936,33040578:0,0,0 +k1,4546:32583029,33040578:7561093 +g1,4546:32583029,33040578 +) +] +) +g1,4548:32583029,33127006 +g1,4548:6764466,33127006 +g1,4548:6764466,33127006 +g1,4548:32583029,33127006 +g1,4548:32583029,33127006 +) +h1,4548:6764466,33323614:0,0,0 +(1,4552:6764466,34188694:25818563,505283,134348 +h1,4551:6764466,34188694:983040,0,0 +k1,4551:8928652,34188694:227597 +k1,4551:10260531,34188694:227597 +k1,4551:12417508,34188694:227597 +k1,4551:13000965,34188694:227597 +k1,4551:15387318,34188694:227597 +k1,4551:17592792,34188694:227597 +k1,4551:18471818,34188694:227598 +k1,4551:20135309,34188694:227597 +k1,4551:21381991,34188694:227597 +k1,4551:23482607,34188694:227597 +k1,4551:25412174,34188694:227597 +k1,4551:27466259,34188694:227597 +k1,4551:28961322,34188694:227597 +k1,4551:30881059,34188694:227597 +k1,4551:32583029,34188694:0 +) +(1,4552:6764466,35053774:25818563,513147,102891 +g1,4551:8963854,35053774 +g1,4551:9779121,35053774 +g1,4551:11181591,35053774 +g1,4551:12747901,35053774 +g1,4551:14036994,35053774 +g1,4551:16191162,35053774 +g1,4551:17674897,35053774 +g1,4551:18865686,35053774 +g1,4551:20935313,35053774 +g1,4551:21785970,35053774 +k1,4552:32583029,35053774:6958615 +g1,4552:32583029,35053774 +) +v1,4554:6764466,35738629:0,393216,0 +(1,4563:6764466,38158702:25818563,2813289,196608 +g1,4563:6764466,38158702 +g1,4563:6764466,38158702 +g1,4563:6567858,38158702 +(1,4563:6567858,38158702:0,2813289,196608 +r1,4637:32779637,38158702:26211779,3009897,196608 +k1,4563:6567857,38158702:-26211780 +) +(1,4563:6567858,38158702:26211779,2813289,196608 +[1,4563:6764466,38158702:25818563,2616681,0 +(1,4556:6764466,35966460:25818563,424439,106246 +(1,4555:6764466,35966460:0,0,0 +g1,4555:6764466,35966460 +g1,4555:6764466,35966460 +g1,4555:6436786,35966460 +(1,4555:6436786,35966460:0,0,0 +) +g1,4555:6764466,35966460 +) +g1,4556:10084005,35966460 +g1,4556:11079867,35966460 +g1,4556:12407683,35966460 +g1,4556:13071591,35966460 +g1,4556:15395269,35966460 +g1,4556:16059177,35966460 +g1,4556:16723085,35966460 +g1,4556:19378717,35966460 +g1,4556:20042625,35966460 +g1,4556:20706533,35966460 +h1,4556:23030211,35966460:0,0,0 +k1,4556:32583029,35966460:9552818 +g1,4556:32583029,35966460 +) +(1,4557:6764466,36651315:25818563,388105,106246 +h1,4557:6764466,36651315:0,0,0 +h1,4557:9752051,36651315:0,0,0 +k1,4557:32583029,36651315:22830978 +g1,4557:32583029,36651315 +) +(1,4562:6764466,37467242:25818563,398014,8257 +(1,4559:6764466,37467242:0,0,0 +g1,4559:6764466,37467242 +g1,4559:6764466,37467242 +g1,4559:6436786,37467242 +(1,4559:6436786,37467242:0,0,0 +) +g1,4559:6764466,37467242 +) +g1,4562:7760328,37467242 +g1,4562:8092282,37467242 +g1,4562:8424236,37467242 +g1,4562:8756190,37467242 +g1,4562:9088144,37467242 +g1,4562:9420098,37467242 +g1,4562:10084006,37467242 +g1,4562:10415960,37467242 +g1,4562:10747914,37467242 +g1,4562:11079868,37467242 +g1,4562:11411822,37467242 +g1,4562:11743776,37467242 +g1,4562:12407684,37467242 +g1,4562:12739638,37467242 +g1,4562:13071592,37467242 +g1,4562:13403546,37467242 +g1,4562:13735500,37467242 +g1,4562:14067454,37467242 +h1,4562:14399408,37467242:0,0,0 +k1,4562:32583028,37467242:18183620 +g1,4562:32583028,37467242 +) +(1,4562:6764466,38152097:25818563,424439,6605 +h1,4562:6764466,38152097:0,0,0 +g1,4562:7760328,38152097 +g1,4562:8092282,38152097 +g1,4562:10084006,38152097 +g1,4562:12407684,38152097 +h1,4562:14399408,38152097:0,0,0 +k1,4562:32583028,38152097:18183620 +g1,4562:32583028,38152097 +) +] +) +g1,4563:32583029,38158702 +g1,4563:6764466,38158702 +g1,4563:6764466,38158702 +g1,4563:32583029,38158702 +g1,4563:32583029,38158702 +) +h1,4563:6764466,38355310:0,0,0 +(1,4591:6764466,43257096:25818563,4180890,0 +k1,4591:11322260,43257096:4557794 +(1,4566:11322260,43257096:0,0,0 +g1,4566:11322260,43257096 +g1,4566:11322260,43257096 +g1,4566:10994580,43257096 +(1,4566:10994580,43257096:0,0,0 +) +g1,4566:11322260,43257096 +) +(1,4589:11322260,43257096:16702975,4180890,0 +g1,4589:17668964,43257096 +(1,4589:17668964,41901464:0,0,0 +(1,4578:17668964,41901464:0,0,0 +g1,4576:17668964,41901464 +g1,4577:17668964,41901464 +g1,4577:17668964,41901464 +g1,4577:17668964,41901464 +g1,4577:17668964,41901464 +g1,4578:17668964,41901464 +) +(1,4589:17668964,41901464:0,0,0 +g1,4570:17668964,41901464 +(1,4574:17668964,41901464:0,0,0 +(1,4574:17668964,41901464:0,0,0 +g1,4574:17668964,41901464 +g1,4574:17668964,41901464 +g1,4574:17668964,41901464 +g1,4574:17668964,41901464 +g1,4574:17668964,41901464 +(1,4574:17668964,41901464:0,0,0 +(1,4574:17668964,41901464:5560486,1833002,528775 +[1,4574:17668964,41901464:5560486,1833002,528775 +(1,4574:17668964,40728879:5560486,660417,276639 +g1,4573:17668964,40728879 +(1,4573:17668964,40728879:804938,660417,276639 +k1,4573:18007733,40728879:338769 +g1,4573:18473902,40728879 +(1,4573:18473902,40728879:0,660417,271921 +(1,4573:18473902,40728879:0,0,0 +(1,4573:18473902,40728879:0,0,0 +g1,4573:18473902,40728879 +g1,4573:18473902,40728879 +g1,4573:18473902,40728879 +g1,4573:18473902,40728879 +g1,4573:18473902,40728879 +(1,4573:18473902,40728879:0,0,0 +(1,4573:18473902,40728879:331874,388497,0 +(1,4573:18473902,40728879:331874,388497,0 +) +g1,4573:18805776,40728879 +) +) +g1,4573:18473902,40728879 +g1,4573:18473902,40728879 +) +) +g1,4573:18473902,40728879 +) +) +g1,4573:18473902,40728879 +(1,4573:18473902,40728879:804938,660417,276639 +g1,4573:18940071,40728879 +k1,4573:19278840,40728879:338769 +) +g1,4573:19278840,40728879 +(1,4573:19278840,40728879:893281,660417,276639 +k1,4573:19732166,40728879:453326 +g1,4573:20172121,40728879 +(1,4573:20172121,40728879:0,660417,271921 +(1,4573:20172121,40728879:0,0,0 +(1,4573:20172121,40728879:0,0,0 +g1,4573:20172121,40728879 +g1,4573:20172121,40728879 +g1,4573:20172121,40728879 +g1,4573:20172121,40728879 +g1,4573:20172121,40728879 +(1,4573:20172121,40728879:0,0,0 +(1,4573:20172121,40728879:331874,388497,0 +(1,4573:20172121,40728879:331874,388497,0 +) +g1,4573:20503995,40728879 +) +) +g1,4573:20172121,40728879 +g1,4573:20172121,40728879 +) +) +g1,4573:20172121,40728879 +) +) +g1,4573:20172121,40728879 +(1,4573:20172121,40728879:919495,660417,276639 +g1,4573:20638290,40728879 +k1,4573:21091616,40728879:453326 +) +g1,4573:21091616,40728879 +(1,4573:21091616,40728879:1055810,660417,276639 +k1,4573:21707471,40728879:615855 +g1,4573:22147426,40728879 +(1,4573:22147426,40728879:0,655699,276639 +(1,4573:22147426,40728879:0,0,0 +(1,4573:22147426,40728879:0,0,0 +g1,4573:22147426,40728879 +g1,4573:22147426,40728879 +g1,4573:22147426,40728879 +g1,4573:22147426,40728879 +g1,4573:22147426,40728879 +(1,4573:22147426,40728879:0,0,0 +(1,4573:22147426,40728879:331874,388497,9436 +(1,4573:22147426,40728879:331874,388497,9436 +) +g1,4573:22479300,40728879 +) +) +g1,4573:22147426,40728879 +g1,4573:22147426,40728879 +) +) +g1,4573:22147426,40728879 +) +) +g1,4573:22147426,40728879 +(1,4574:22147426,40728879:1082024,660417,276639 +g1,4574:22613595,40728879 +k1,4574:23229450,40728879:615855 +) +g1,4574:23229450,40728879 ) -g1,5301:19433878,31064367 -(1,5301:19433878,31064367:910950,924057,924057 -g1,5301:19433878,31064367 -g1,5301:20344828,31064367 -(1,5301:20344828,31064367:0,924057,924057 -(1,5301:20344828,31064367:0,0,0 -(1,5301:20344828,31064367:0,0,0 -g1,5301:20344828,31064367 -g1,5301:20344828,31064367 -g1,5301:20344828,31064367 -g1,5301:20344828,31064367 -g1,5301:20344828,31064367 -(1,5301:20344828,31064367:0,0,0 -(1,5301:20344828,31064367:1347418,281018,140387 -(1,5301:20344828,31064367:1347418,281018,140387 -$1,5301:20344828,31064367 -h1,5301:20344828,31064367:0,281018,137888 -(1,5301:20714975,31143019:977271,291373,61735 +(1,4574:17668964,41901464:5560486,802713,528775 +g1,4574:17668964,41901464 +(1,4574:17668964,41901464:804938,802713,528775 +g1,4574:17668964,41901464 +g1,4574:18473902,41901464 +(1,4574:18473902,41901464:0,802713,528775 +(1,4574:18473902,41901464:0,0,0 +(1,4574:18473902,41901464:0,0,0 +g1,4574:18473902,41901464 +g1,4574:18473902,41901464 +g1,4574:18473902,41901464 +g1,4574:18473902,41901464 +g1,4574:18473902,41901464 +(1,4574:18473902,41901464:0,0,0 +(1,4574:18473902,41901464:1234174,479396,205458 +(1,4574:18473902,41901464:1234174,479396,205458 +r1,4637:19708076,41901464:0,684854,205458 ) -$1,5301:21692246,31064367 +g1,4574:19708076,41901464 ) -g1,5301:21692246,31064367 ) +g1,4574:18473902,41901464 +g1,4574:18473902,41901464 ) -g1,5301:20344828,31064367 -g1,5301:20344828,31064367 ) +g1,4574:18473902,41901464 ) -g1,5301:20344828,31064367 ) +g1,4574:18473902,41901464 +(1,4574:18473902,41901464:804938,802713,528775 +g1,4574:19278840,41901464 +g1,4574:19278840,41901464 ) -g1,5301:20344828,31064367 -(1,5301:20344828,31064367:924057,924057,924057 -g1,5301:21268885,31064367 -g1,5301:21268885,31064367 +g1,4574:19278840,41901464 +(1,4574:19278840,41901464:893281,802713,528775 +g1,4574:19278840,41901464 +g1,4574:20172121,41901464 +(1,4574:20172121,41901464:0,802713,528775 +(1,4574:20172121,41901464:0,0,0 +(1,4574:20172121,41901464:0,0,0 +g1,4574:20172121,41901464 +g1,4574:20172121,41901464 +g1,4574:20172121,41901464 +g1,4574:20172121,41901464 +g1,4574:20172121,41901464 +(1,4574:20172121,41901464:0,0,0 +(1,4574:20172121,41901464:1463288,479396,205458 +(1,4574:20172121,41901464:1463288,479396,205458 +r1,4637:21635409,41901464:0,684854,205458 ) -g1,5301:21268885,31064367 -(1,5301:21268885,31064367:910950,924057,924057 -g1,5301:21268885,31064367 -g1,5301:22179835,31064367 -(1,5301:22179835,31064367:0,924057,924057 -(1,5301:22179835,31064367:0,0,0 -(1,5301:22179835,31064367:0,0,0 -g1,5301:22179835,31064367 -g1,5301:22179835,31064367 -g1,5301:22179835,31064367 -g1,5301:22179835,31064367 -g1,5301:22179835,31064367 -(1,5301:22179835,31064367:0,0,0 -(1,5301:22179835,31064367:1347418,281018,140387 -(1,5301:22179835,31064367:1347418,281018,140387 -$1,5301:22179835,31064367 -h1,5301:22179835,31064367:0,281018,137888 -(1,5301:22549982,31143019:977271,291373,61735 -) -$1,5301:23527253,31064367 -) -g1,5301:23527253,31064367 -) -) -g1,5301:22179835,31064367 -g1,5301:22179835,31064367 -) -) -g1,5301:22179835,31064367 -) -) -g1,5301:22179835,31064367 -(1,5301:22179835,31064367:924057,924057,924057 -g1,5301:23103892,31064367 -g1,5301:23103892,31064367 -) -g1,5301:23103892,31064367 -(1,5301:23103892,31064367:910950,924057,924057 -g1,5301:23103892,31064367 -g1,5301:24014842,31064367 -(1,5301:24014842,31064367:0,924057,924057 -(1,5301:24014842,31064367:0,0,0 -(1,5301:24014842,31064367:0,0,0 -g1,5301:24014842,31064367 -g1,5301:24014842,31064367 -g1,5301:24014842,31064367 -g1,5301:24014842,31064367 -g1,5301:24014842,31064367 -(1,5301:24014842,31064367:0,0,0 -(1,5301:24014842,31064367:549288,281018,137888 -(1,5301:24014842,31064367:549288,281018,137888 -$1,5301:24014842,31064367 -h1,5301:24014842,31064367:0,281018,137888 -g1,5301:24102232,31064367 -$1,5301:24564130,31064367 -) -g1,5301:24564130,31064367 -) -) -g1,5301:24014842,31064367 -g1,5301:24014842,31064367 -) -) -g1,5301:24014842,31064367 -) -) -g1,5301:24014842,31064367 -(1,5301:24014842,31064367:924057,924057,924057 -g1,5301:24938899,31064367 -g1,5301:24938899,31064367 -) -g1,5301:24938899,31064367 -(1,5301:24938899,31064367:910950,924057,924057 -g1,5301:24938899,31064367 -g1,5301:25849849,31064367 -(1,5301:25849849,31064367:0,924057,924057 -(1,5301:25849849,31064367:0,0,0 -(1,5301:25849849,31064367:0,0,0 -g1,5301:25849849,31064367 -g1,5301:25849849,31064367 -g1,5301:25849849,31064367 -g1,5301:25849849,31064367 -g1,5301:25849849,31064367 -(1,5301:25849849,31064367:0,0,0 -(1,5301:25849849,31064367:1540487,281018,140387 -(1,5301:25849849,31064367:1540487,281018,140387 -$1,5301:25849849,31064367 -h1,5301:25849849,31064367:0,281018,137888 -(1,5301:26219996,31143019:1170340,286654,61735 +g1,4574:21635409,41901464 ) -$1,5301:27390336,31064367 -) -g1,5301:27390336,31064367 -) -) -g1,5301:25849849,31064367 -g1,5301:25849849,31064367 -) -) -g1,5301:25849849,31064367 -) -) -g1,5301:25849849,31064367 -(1,5302:25849849,31064367:924057,924057,924057 -g1,5302:26773906,31064367 -g1,5302:26773906,31064367 -) -g1,5302:26773906,31064367 ) -(1,5303:17585764,32899374:9188142,924057,924057 -g1,5302:17585764,32899374 -(1,5302:17585764,32899374:924057,924057,924057 -g1,5302:17585764,32899374 -g1,5302:18509821,32899374 -(1,5302:18509821,32899374:0,924057,924057 -(1,5302:18509821,32899374:0,0,0 -(1,5302:18509821,32899374:0,0,0 -g1,5302:18509821,32899374 -g1,5302:18509821,32899374 -g1,5302:18509821,32899374 -g1,5302:18509821,32899374 -g1,5302:18509821,32899374 -(1,5302:18509821,32899374:0,0,0 -(1,5302:18509821,32899374:1347418,281018,140387 -(1,5302:18509821,32899374:1347418,281018,140387 -$1,5302:18509821,32899374 -h1,5302:18509821,32899374:0,281018,137888 -(1,5302:18879968,32978026:977271,291373,61735 -) -$1,5302:19857239,32899374 -) -g1,5302:19857239,32899374 -) -) -g1,5302:18509821,32899374 -g1,5302:18509821,32899374 -) -) -g1,5302:18509821,32899374 -) -) -g1,5302:18509821,32899374 -(1,5302:18509821,32899374:924057,924057,924057 -g1,5302:19433878,32899374 -g1,5302:19433878,32899374 +g1,4574:20172121,41901464 +g1,4574:20172121,41901464 ) -g1,5302:19433878,32899374 -(1,5302:19433878,32899374:910950,924057,924057 -g1,5302:19433878,32899374 -g1,5302:20344828,32899374 -(1,5302:20344828,32899374:0,924057,924057 -(1,5302:20344828,32899374:0,0,0 -(1,5302:20344828,32899374:0,0,0 -g1,5302:20344828,32899374 -g1,5302:20344828,32899374 -g1,5302:20344828,32899374 -g1,5302:20344828,32899374 -g1,5302:20344828,32899374 -(1,5302:20344828,32899374:0,0,0 -(1,5302:20344828,32899374:1347418,281018,140387 -(1,5302:20344828,32899374:1347418,281018,140387 -$1,5302:20344828,32899374 -h1,5302:20344828,32899374:0,281018,137888 -(1,5302:20714975,32978026:977271,291373,61735 -) -$1,5302:21692246,32899374 -) -g1,5302:21692246,32899374 -) -) -g1,5302:20344828,32899374 -g1,5302:20344828,32899374 -) -) -g1,5302:20344828,32899374 -) -) -g1,5302:20344828,32899374 -(1,5302:20344828,32899374:924057,924057,924057 -g1,5302:21268885,32899374 -g1,5302:21268885,32899374 ) -g1,5302:21268885,32899374 -(1,5302:21268885,32899374:910950,924057,924057 -g1,5302:21268885,32899374 -g1,5302:22179835,32899374 -(1,5302:22179835,32899374:0,924057,924057 -(1,5302:22179835,32899374:0,0,0 -(1,5302:22179835,32899374:0,0,0 -g1,5302:22179835,32899374 -g1,5302:22179835,32899374 -g1,5302:22179835,32899374 -g1,5302:22179835,32899374 -g1,5302:22179835,32899374 -(1,5302:22179835,32899374:0,0,0 -(1,5302:22179835,32899374:1347418,281018,140387 -(1,5302:22179835,32899374:1347418,281018,140387 -$1,5302:22179835,32899374 -h1,5302:22179835,32899374:0,281018,137888 -(1,5302:22549982,32978026:977271,291373,61735 -) -$1,5302:23527253,32899374 -) -g1,5302:23527253,32899374 -) -) -g1,5302:22179835,32899374 -g1,5302:22179835,32899374 -) -) -g1,5302:22179835,32899374 -) -) -g1,5302:22179835,32899374 -(1,5302:22179835,32899374:924057,924057,924057 -g1,5302:23103892,32899374 -g1,5302:23103892,32899374 +g1,4574:20172121,41901464 ) -g1,5302:23103892,32899374 -(1,5302:23103892,32899374:910950,924057,924057 -g1,5302:23103892,32899374 -g1,5302:24014842,32899374 -(1,5302:24014842,32899374:0,924057,924057 -(1,5302:24014842,32899374:0,0,0 -(1,5302:24014842,32899374:0,0,0 -g1,5302:24014842,32899374 -g1,5302:24014842,32899374 -g1,5302:24014842,32899374 -g1,5302:24014842,32899374 -g1,5302:24014842,32899374 -(1,5302:24014842,32899374:0,0,0 -(1,5302:24014842,32899374:0,281018,137888 -(1,5302:24014842,32899374:0,281018,137888 -$1,5302:24014842,32899374 -h1,5302:24014842,32899374:0,281018,137888 -$1,5302:24014842,32899374 ) -g1,5302:24014842,32899374 -) -) -g1,5302:24014842,32899374 -g1,5302:24014842,32899374 -) -) -g1,5302:24014842,32899374 -) -) -g1,5302:24014842,32899374 -(1,5302:24014842,32899374:924057,924057,924057 -g1,5302:24938899,32899374 -g1,5302:24938899,32899374 -) -g1,5302:24938899,32899374 -(1,5302:24938899,32899374:910950,924057,924057 -g1,5302:24938899,32899374 -g1,5302:25849849,32899374 -(1,5302:25849849,32899374:0,924057,924057 -(1,5302:25849849,32899374:0,0,0 -(1,5302:25849849,32899374:0,0,0 -g1,5302:25849849,32899374 -g1,5302:25849849,32899374 -g1,5302:25849849,32899374 -g1,5302:25849849,32899374 -g1,5302:25849849,32899374 -(1,5302:25849849,32899374:0,0,0 -(1,5302:25849849,32899374:1540487,281018,140387 -(1,5302:25849849,32899374:1540487,281018,140387 -$1,5302:25849849,32899374 -h1,5302:25849849,32899374:0,281018,137888 -(1,5302:26219996,32978026:1170340,291373,61735 +g1,4574:20172121,41901464 +(1,4574:20172121,41901464:919495,802713,528775 +g1,4574:21091616,41901464 +g1,4574:21091616,41901464 ) -$1,5302:27390336,32899374 +g1,4574:21091616,41901464 +(1,4574:21091616,41901464:1055810,802713,528775 +g1,4574:21091616,41901464 +g1,4574:22147426,41901464 +(1,4574:22147426,41901464:0,802713,528775 +(1,4574:22147426,41901464:0,0,0 +(1,4574:22147426,41901464:0,0,0 +g1,4574:22147426,41901464 +g1,4574:22147426,41901464 +g1,4574:22147426,41901464 +g1,4574:22147426,41901464 +g1,4574:22147426,41901464 +(1,4574:22147426,41901464:0,0,0 +(1,4574:22147426,41901464:1788346,479396,205458 +(1,4574:22147426,41901464:1788346,479396,205458 +r1,4637:23935772,41901464:0,684854,205458 ) -g1,5302:27390336,32899374 -) -) -g1,5302:25849849,32899374 -g1,5302:25849849,32899374 -) -) -g1,5302:25849849,32899374 -) -) -g1,5302:25849849,32899374 -(1,5303:25849849,32899374:924057,924057,924057 -g1,5303:26773906,32899374 -g1,5303:26773906,32899374 -) -g1,5303:26773906,32899374 +g1,4574:23935772,41901464 ) -(1,5304:17585764,34734381:9188142,924057,924057 -g1,5303:17585764,34734381 -(1,5303:17585764,34734381:924057,924057,924057 -g1,5303:17585764,34734381 -g1,5303:18509821,34734381 -(1,5303:18509821,34734381:0,924057,924057 -(1,5303:18509821,34734381:0,0,0 -(1,5303:18509821,34734381:0,0,0 -g1,5303:18509821,34734381 -g1,5303:18509821,34734381 -g1,5303:18509821,34734381 -g1,5303:18509821,34734381 -g1,5303:18509821,34734381 -(1,5303:18509821,34734381:0,0,0 -(1,5303:18509821,34734381:1347418,281018,140387 -(1,5303:18509821,34734381:1347418,281018,140387 -$1,5303:18509821,34734381 -h1,5303:18509821,34734381:0,281018,137888 -(1,5303:18879968,34813033:977271,291373,61735 -) -$1,5303:19857239,34734381 -) -g1,5303:19857239,34734381 -) -) -g1,5303:18509821,34734381 -g1,5303:18509821,34734381 -) -) -g1,5303:18509821,34734381 -) -) -g1,5303:18509821,34734381 -(1,5303:18509821,34734381:924057,924057,924057 -g1,5303:19433878,34734381 -g1,5303:19433878,34734381 ) -g1,5303:19433878,34734381 -(1,5303:19433878,34734381:910950,924057,924057 -g1,5303:19433878,34734381 -g1,5303:20344828,34734381 -(1,5303:20344828,34734381:0,924057,924057 -(1,5303:20344828,34734381:0,0,0 -(1,5303:20344828,34734381:0,0,0 -g1,5303:20344828,34734381 -g1,5303:20344828,34734381 -g1,5303:20344828,34734381 -g1,5303:20344828,34734381 -g1,5303:20344828,34734381 -(1,5303:20344828,34734381:0,0,0 -(1,5303:20344828,34734381:1347418,281018,140387 -(1,5303:20344828,34734381:1347418,281018,140387 -$1,5303:20344828,34734381 -h1,5303:20344828,34734381:0,281018,137888 -(1,5303:20714975,34813033:977271,291373,61735 -) -$1,5303:21692246,34734381 -) -g1,5303:21692246,34734381 -) -) -g1,5303:20344828,34734381 -g1,5303:20344828,34734381 -) -) -g1,5303:20344828,34734381 -) -) -g1,5303:20344828,34734381 -(1,5303:20344828,34734381:924057,924057,924057 -g1,5303:21268885,34734381 -g1,5303:21268885,34734381 +g1,4574:22147426,41901464 +g1,4574:22147426,41901464 ) -g1,5303:21268885,34734381 -(1,5303:21268885,34734381:910950,924057,924057 -g1,5303:21268885,34734381 -g1,5303:22179835,34734381 -(1,5303:22179835,34734381:0,924057,924057 -(1,5303:22179835,34734381:0,0,0 -(1,5303:22179835,34734381:0,0,0 -g1,5303:22179835,34734381 -g1,5303:22179835,34734381 -g1,5303:22179835,34734381 -g1,5303:22179835,34734381 -g1,5303:22179835,34734381 -(1,5303:22179835,34734381:0,0,0 -(1,5303:22179835,34734381:1347418,281018,140387 -(1,5303:22179835,34734381:1347418,281018,140387 -$1,5303:22179835,34734381 -h1,5303:22179835,34734381:0,281018,137888 -(1,5303:22549982,34813033:977271,291373,61735 -) -$1,5303:23527253,34734381 -) -g1,5303:23527253,34734381 -) -) -g1,5303:22179835,34734381 -g1,5303:22179835,34734381 -) -) -g1,5303:22179835,34734381 -) -) -g1,5303:22179835,34734381 -(1,5303:22179835,34734381:924057,924057,924057 -g1,5303:23103892,34734381 -g1,5303:23103892,34734381 ) -g1,5303:23103892,34734381 -(1,5303:23103892,34734381:910950,924057,924057 -g1,5303:23103892,34734381 -g1,5303:24014842,34734381 -(1,5303:24014842,34734381:0,924057,924057 -(1,5303:24014842,34734381:0,0,0 -(1,5303:24014842,34734381:0,0,0 -g1,5303:24014842,34734381 -g1,5303:24014842,34734381 -g1,5303:24014842,34734381 -g1,5303:24014842,34734381 -g1,5303:24014842,34734381 -(1,5303:24014842,34734381:0,0,0 -(1,5303:24014842,34734381:0,281018,137888 -(1,5303:24014842,34734381:0,281018,137888 -$1,5303:24014842,34734381 -h1,5303:24014842,34734381:0,281018,137888 -$1,5303:24014842,34734381 -) -g1,5303:24014842,34734381 -) -) -g1,5303:24014842,34734381 -g1,5303:24014842,34734381 -) -) -g1,5303:24014842,34734381 -) -) -g1,5303:24014842,34734381 -(1,5303:24014842,34734381:924057,924057,924057 -g1,5303:24938899,34734381 -g1,5303:24938899,34734381 -) -g1,5303:24938899,34734381 -(1,5303:24938899,34734381:910950,924057,924057 -g1,5303:24938899,34734381 -g1,5303:25849849,34734381 -(1,5303:25849849,34734381:0,924057,924057 -(1,5303:25849849,34734381:0,0,0 -(1,5303:25849849,34734381:0,0,0 -g1,5303:25849849,34734381 -g1,5303:25849849,34734381 -g1,5303:25849849,34734381 -g1,5303:25849849,34734381 -g1,5303:25849849,34734381 -(1,5303:25849849,34734381:0,0,0 -(1,5303:25849849,34734381:1540487,281018,140387 -(1,5303:25849849,34734381:1540487,281018,140387 -$1,5303:25849849,34734381 -h1,5303:25849849,34734381:0,281018,137888 -(1,5303:26219996,34813033:1170340,291373,61735 -) -$1,5303:27390336,34734381 -) -g1,5303:27390336,34734381 -) -) -g1,5303:25849849,34734381 -g1,5303:25849849,34734381 -) -) -g1,5303:25849849,34734381 -) -) -g1,5303:25849849,34734381 -(1,5304:25849849,34734381:924057,924057,924057 -g1,5304:26773906,34734381 -g1,5304:26773906,34734381 -) -g1,5304:26773906,34734381 +g1,4574:22147426,41901464 ) -(1,5305:17585764,36569388:9188142,924057,924057 -g1,5304:17585764,36569388 -(1,5304:17585764,36569388:924057,924057,924057 -g1,5304:17585764,36569388 -g1,5304:18509821,36569388 -(1,5304:18509821,36569388:0,924057,924057 -(1,5304:18509821,36569388:0,0,0 -(1,5304:18509821,36569388:0,0,0 -g1,5304:18509821,36569388 -g1,5304:18509821,36569388 -g1,5304:18509821,36569388 -g1,5304:18509821,36569388 -g1,5304:18509821,36569388 -(1,5304:18509821,36569388:0,0,0 -(1,5304:18509821,36569388:607548,341312,137888 -(1,5304:18509821,36569388:607548,341312,137888 -$1,5304:18509821,36569388 -h1,5304:18509821,36569388:0,281018,137888 -g1,5304:18655471,36569388 -$1,5304:19117369,36569388 -) -g1,5304:19117369,36569388 -) -) -g1,5304:18509821,36569388 -g1,5304:18509821,36569388 -) -) -g1,5304:18509821,36569388 -) -) -g1,5304:18509821,36569388 -(1,5304:18509821,36569388:924057,924057,924057 -g1,5304:19433878,36569388 -g1,5304:19433878,36569388 -) -g1,5304:19433878,36569388 -(1,5304:19433878,36569388:910950,924057,924057 -g1,5304:19433878,36569388 -g1,5304:20344828,36569388 -(1,5304:20344828,36569388:0,924057,924057 -(1,5304:20344828,36569388:0,0,0 -(1,5304:20344828,36569388:0,0,0 -g1,5304:20344828,36569388 -g1,5304:20344828,36569388 -g1,5304:20344828,36569388 -g1,5304:20344828,36569388 -g1,5304:20344828,36569388 -(1,5304:20344828,36569388:0,0,0 -(1,5304:20344828,36569388:0,281018,137888 -(1,5304:20344828,36569388:0,281018,137888 -$1,5304:20344828,36569388 -h1,5304:20344828,36569388:0,281018,137888 -$1,5304:20344828,36569388 -) -g1,5304:20344828,36569388 -) -) -g1,5304:20344828,36569388 -g1,5304:20344828,36569388 -) -) -g1,5304:20344828,36569388 -) -) -g1,5304:20344828,36569388 -(1,5304:20344828,36569388:924057,924057,924057 -g1,5304:21268885,36569388 -g1,5304:21268885,36569388 -) -g1,5304:21268885,36569388 -(1,5304:21268885,36569388:910950,924057,924057 -g1,5304:21268885,36569388 -g1,5304:22179835,36569388 -(1,5304:22179835,36569388:0,924057,924057 -(1,5304:22179835,36569388:0,0,0 -(1,5304:22179835,36569388:0,0,0 -g1,5304:22179835,36569388 -g1,5304:22179835,36569388 -g1,5304:22179835,36569388 -g1,5304:22179835,36569388 -g1,5304:22179835,36569388 -(1,5304:22179835,36569388:0,0,0 -(1,5304:22179835,36569388:0,281018,137888 -(1,5304:22179835,36569388:0,281018,137888 -$1,5304:22179835,36569388 -h1,5304:22179835,36569388:0,281018,137888 -$1,5304:22179835,36569388 -) -g1,5304:22179835,36569388 -) -) -g1,5304:22179835,36569388 -g1,5304:22179835,36569388 -) -) -g1,5304:22179835,36569388 -) -) -g1,5304:22179835,36569388 -(1,5304:22179835,36569388:924057,924057,924057 -g1,5304:23103892,36569388 -g1,5304:23103892,36569388 -) -g1,5304:23103892,36569388 -(1,5304:23103892,36569388:910950,924057,924057 -g1,5304:23103892,36569388 -g1,5304:24014842,36569388 -(1,5304:24014842,36569388:0,924057,924057 -(1,5304:24014842,36569388:0,0,0 -(1,5304:24014842,36569388:0,0,0 -g1,5304:24014842,36569388 -g1,5304:24014842,36569388 -g1,5304:24014842,36569388 -g1,5304:24014842,36569388 -g1,5304:24014842,36569388 -(1,5304:24014842,36569388:0,0,0 -(1,5304:24014842,36569388:600208,341312,137888 -(1,5304:24014842,36569388:600208,341312,137888 -$1,5304:24014842,36569388 -h1,5304:24014842,36569388:0,281018,137888 -g1,5304:24160492,36569388 -$1,5304:24615050,36569388 -) -g1,5304:24615050,36569388 -) -) -g1,5304:24014842,36569388 -g1,5304:24014842,36569388 -) -) -g1,5304:24014842,36569388 -) -) -g1,5304:24014842,36569388 -(1,5304:24014842,36569388:924057,924057,924057 -g1,5304:24938899,36569388 -g1,5304:24938899,36569388 -) -g1,5304:24938899,36569388 -(1,5304:24938899,36569388:910950,924057,924057 -g1,5304:24938899,36569388 -g1,5304:25849849,36569388 -(1,5304:25849849,36569388:0,924057,924057 -(1,5304:25849849,36569388:0,0,0 -(1,5304:25849849,36569388:0,0,0 -g1,5304:25849849,36569388 -g1,5304:25849849,36569388 -g1,5304:25849849,36569388 -g1,5304:25849849,36569388 -g1,5304:25849849,36569388 -(1,5304:25849849,36569388:0,0,0 -(1,5304:25849849,36569388:0,281018,137888 -(1,5304:25849849,36569388:0,281018,137888 -$1,5304:25849849,36569388 -h1,5304:25849849,36569388:0,281018,137888 -$1,5304:25849849,36569388 -) -g1,5304:25849849,36569388 -) -) -g1,5304:25849849,36569388 -g1,5304:25849849,36569388 -) -) -g1,5304:25849849,36569388 -) -) -g1,5304:25849849,36569388 -(1,5305:25849849,36569388:924057,924057,924057 -g1,5305:26773906,36569388 -g1,5305:26773906,36569388 -) -g1,5305:26773906,36569388 -) -(1,5306:17585764,38404395:9188142,924057,924057 -g1,5305:17585764,38404395 -(1,5305:17585764,38404395:924057,924057,924057 -g1,5305:17585764,38404395 -g1,5305:18509821,38404395 -(1,5305:18509821,38404395:0,924057,924057 -(1,5305:18509821,38404395:0,0,0 -(1,5305:18509821,38404395:0,0,0 -g1,5305:18509821,38404395 -g1,5305:18509821,38404395 -g1,5305:18509821,38404395 -g1,5305:18509821,38404395 -g1,5305:18509821,38404395 -(1,5305:18509821,38404395:0,0,0 -(1,5305:18509821,38404395:1262877,281018,142607 -(1,5305:18509821,38404395:1262877,281018,142607 -$1,5305:18509821,38404395 -h1,5305:18509821,38404395:0,281018,137888 -(1,5305:18879968,38485267:892730,303170,61735 -) -$1,5305:19772698,38404395 -) -g1,5305:19772698,38404395 -) -) -g1,5305:18509821,38404395 -g1,5305:18509821,38404395 -) -) -g1,5305:18509821,38404395 -) -) -g1,5305:18509821,38404395 -(1,5305:18509821,38404395:924057,924057,924057 -g1,5305:19433878,38404395 -g1,5305:19433878,38404395 ) -g1,5305:19433878,38404395 -(1,5305:19433878,38404395:910950,924057,924057 -g1,5305:19433878,38404395 -g1,5305:20344828,38404395 -(1,5305:20344828,38404395:0,924057,924057 -(1,5305:20344828,38404395:0,0,0 -(1,5305:20344828,38404395:0,0,0 -g1,5305:20344828,38404395 -g1,5305:20344828,38404395 -g1,5305:20344828,38404395 -g1,5305:20344828,38404395 -g1,5305:20344828,38404395 -(1,5305:20344828,38404395:0,0,0 -(1,5305:20344828,38404395:1262877,281018,142607 -(1,5305:20344828,38404395:1262877,281018,142607 -$1,5305:20344828,38404395 -h1,5305:20344828,38404395:0,281018,137888 -(1,5305:20714975,38485267:892730,303170,61735 -) -$1,5305:21607705,38404395 -) -g1,5305:21607705,38404395 -) -) -g1,5305:20344828,38404395 -g1,5305:20344828,38404395 -) -) -g1,5305:20344828,38404395 -) -) -g1,5305:20344828,38404395 -(1,5305:20344828,38404395:924057,924057,924057 -g1,5305:21268885,38404395 -g1,5305:21268885,38404395 +g1,4574:22147426,41901464 +(1,4574:22147426,41901464:1082024,802713,528775 +g1,4574:23229450,41901464 +g1,4574:23229450,41901464 ) -g1,5305:21268885,38404395 -(1,5305:21268885,38404395:910950,924057,924057 -g1,5305:21268885,38404395 -g1,5305:22179835,38404395 -(1,5305:22179835,38404395:0,924057,924057 -(1,5305:22179835,38404395:0,0,0 -(1,5305:22179835,38404395:0,0,0 -g1,5305:22179835,38404395 -g1,5305:22179835,38404395 -g1,5305:22179835,38404395 -g1,5305:22179835,38404395 -g1,5305:22179835,38404395 -(1,5305:22179835,38404395:0,0,0 -(1,5305:22179835,38404395:1262877,281018,142607 -(1,5305:22179835,38404395:1262877,281018,142607 -$1,5305:22179835,38404395 -h1,5305:22179835,38404395:0,281018,137888 -(1,5305:22549982,38485267:892730,303170,61735 +g1,4574:23229450,41901464 ) -$1,5305:23442712,38404395 +] ) -g1,5305:23442712,38404395 ) +g1,4574:17668964,41901464 +g1,4574:17668964,41901464 ) -g1,5305:22179835,38404395 -g1,5305:22179835,38404395 ) +g1,4574:17668964,41901464 +g1,4578:17668964,41901464 +g1,4578:17668964,41901464 +g1,4580:17668964,41901464 +(1,4580:17668964,41901464:0,0,0 +(1,4580:17668964,41901464:0,0,0 +g1,4580:17668964,41901464 +(1,4580:17668964,41901464:0,0,0 +(1,4580:17668964,41901464:2538879,482673,208735 +(1,4580:17668964,41901464:2538879,482673,208735 +(1,4580:17668964,41901464:0,482673,208735 +r1,4637:20207843,41901464:2538879,691408,208735 +k1,4580:17668964,41901464:-2538879 ) -g1,5305:22179835,38404395 +(1,4580:17668964,41901464:2538879,482673,208735 +r1,4637:17672241,41901464:0,684854,205458 +h1,4580:20204566,41901464:0,328964,90056 ) ) -g1,5305:22179835,38404395 -(1,5305:22179835,38404395:924057,924057,924057 -g1,5305:23103892,38404395 -g1,5305:23103892,38404395 +g1,4580:20207843,41901464 ) -g1,5305:23103892,38404395 -(1,5305:23103892,38404395:910950,924057,924057 -g1,5305:23103892,38404395 -g1,5305:24014842,38404395 -(1,5305:24014842,38404395:0,924057,924057 -(1,5305:24014842,38404395:0,0,0 -(1,5305:24014842,38404395:0,0,0 -g1,5305:24014842,38404395 -g1,5305:24014842,38404395 -g1,5305:24014842,38404395 -g1,5305:24014842,38404395 -g1,5305:24014842,38404395 -(1,5305:24014842,38404395:0,0,0 -(1,5305:24014842,38404395:0,281018,137888 -(1,5305:24014842,38404395:0,281018,137888 -$1,5305:24014842,38404395 -h1,5305:24014842,38404395:0,281018,137888 -$1,5305:24014842,38404395 ) -g1,5305:24014842,38404395 -) -) -g1,5305:24014842,38404395 -g1,5305:24014842,38404395 -) -) -g1,5305:24014842,38404395 -) -) -g1,5305:24014842,38404395 -(1,5305:24014842,38404395:924057,924057,924057 -g1,5305:24938899,38404395 -g1,5305:24938899,38404395 -) -g1,5305:24938899,38404395 -(1,5305:24938899,38404395:910950,924057,924057 -g1,5305:24938899,38404395 -g1,5305:25849849,38404395 -(1,5305:25849849,38404395:0,924057,924057 -(1,5305:25849849,38404395:0,0,0 -(1,5305:25849849,38404395:0,0,0 -g1,5305:25849849,38404395 -g1,5305:25849849,38404395 -g1,5305:25849849,38404395 -g1,5305:25849849,38404395 -g1,5305:25849849,38404395 -(1,5305:25849849,38404395:0,0,0 -(1,5305:25849849,38404395:1455946,281018,142607 -(1,5305:25849849,38404395:1455946,281018,142607 -$1,5305:25849849,38404395 -h1,5305:25849849,38404395:0,281018,137888 -(1,5305:26219996,38485267:1085799,303170,61735 -) -$1,5305:27305795,38404395 -) -g1,5305:27305795,38404395 -) -) -g1,5305:25849849,38404395 -g1,5305:25849849,38404395 -) -) -g1,5305:25849849,38404395 -) -) -g1,5305:25849849,38404395 -(1,5306:25849849,38404395:924057,924057,924057 -g1,5306:26773906,38404395 -g1,5306:26773906,38404395 -) -g1,5306:26773906,38404395 -) -] -) -) -g1,5306:17585764,38404395 -g1,5306:17585764,38404395 -) -) -g1,5306:17585764,38404395 -g1,5307:17585764,38404395 -(1,5308:17585764,38404395:0,0,0 -(1,5308:17585764,38404395:0,0,0 -g1,5308:17585764,38404395 -g1,5308:17585764,38404395 -g1,5308:17585764,38404395 -g1,5308:17585764,38404395 -g1,5308:17585764,38404395 -(1,5308:17585764,38404395:0,0,0 -(1,5308:17585764,38404395:6258018,404226,107478 -(1,5308:17585764,38404395:6258018,404226,107478 -g1,5308:19503610,38404395 -g1,5308:20120697,38404395 -$1,5308:20120697,38404395 -g1,5308:20596648,38404395 -g1,5308:21196856,38404395 -$1,5308:21515623,38404395 -g1,5308:21675007,38404395 -g1,5308:22355533,38404395 -$1,5308:22355533,38404395 -g1,5308:22831484,38404395 -g1,5308:23431692,38404395 -$1,5308:23843782,38404395 +g1,4580:17668964,41901464 +g1,4580:17668964,41901464 ) -g1,5308:23843782,38404395 ) +(1,4581:17668964,41901464:0,0,0 +(1,4581:17668964,41901464:0,0,0 +g1,4581:17668964,41901464 +(1,4581:17668964,41901464:0,0,0 +(1,4581:17668964,41901464:684854,385352,0 +(1,4581:17668964,41901464:684854,385352,0 +(1,4581:17668964,41901464:684854,385352,0 +(1,4581:18148360,41901464:385352,479396,205458 +(1,4581:18148360,41901464:385352,479396,205458 +r1,4637:18533712,41901464:0,684854,205458 ) -g1,5308:17585764,38404395 -g1,5308:17585764,38404395 ) ) -g1,5308:17585764,38404395 -g1,5310:17585764,38404395 -(1,5310:17585764,38404395:0,0,0 -(1,5310:17585764,38404395:0,0,0 -g1,5310:17585764,38404395 -g1,5310:17585764,38404395 -g1,5310:17585764,38404395 -g1,5310:17585764,38404395 -g1,5310:17585764,38404395 -(1,5310:17585764,38404395:0,0,0 -(1,5310:17585764,38404395:6342431,395837,110625 -(1,5310:17585764,38404395:6342431,395837,110625 -g1,5310:19503610,38404395 -g1,5310:20120697,38404395 -$1,5310:20120697,38404395 -g1,5310:20556803,38404395 -g1,5310:21157011,38404395 -$1,5310:21475778,38404395 -g1,5310:21635162,38404395 -g1,5310:22315688,38404395 -$1,5310:22315688,38404395 -g1,5310:22751794,38404395 -g1,5310:23352002,38404395 -$1,5310:23928195,38404395 ) -g1,5310:23928195,38404395 +g1,4581:18353818,41901464 ) ) -g1,5310:17585764,38404395 -g1,5310:17585764,38404395 +g1,4581:17668964,41901464 +g1,4581:17668964,41901464 ) ) -g1,5310:17585764,38404395 -g1,5312:17585764,38404395 -(1,5312:17585764,38404395:0,0,0 -(1,5312:17585764,38404395:0,0,0 -g1,5312:17585764,38404395 -g1,5312:17585764,38404395 -g1,5312:17585764,38404395 -g1,5312:17585764,38404395 -g1,5312:17585764,38404395 -(1,5312:17585764,38404395:0,0,0 -(1,5312:17585764,38404395:5849599,404226,107478 -(1,5312:17585764,38404395:5849599,404226,107478 -g1,5312:19503610,38404395 -g1,5312:20120697,38404395 -$1,5312:20120697,38404395 -g1,5312:20495461,38404395 -g1,5312:21095669,38404395 -$1,5312:21414436,38404395 -g1,5312:21573820,38404395 -g1,5312:22254346,38404395 -$1,5312:22254346,38404395 -g1,5312:22629110,38404395 -g1,5312:23229318,38404395 -$1,5312:23435363,38404395 +(1,4582:17668964,41901464:0,0,0 +(1,4582:17668964,41901464:0,0,0 +g1,4582:17668964,41901464 +(1,4582:17668964,41901464:0,0,0 +(1,4582:17668964,41901464:684854,362807,0 +(1,4582:17668964,41901464:684854,362807,0 +(1,4582:17668964,41901464:684854,362807,0 +(1,4582:18148360,41901464:362807,479396,205458 +(1,4582:18148360,41901464:362807,479396,205458 +r1,4637:18511167,41901464:0,684854,205458 ) -g1,5312:23435363,38404395 ) ) -g1,5312:17585764,38404395 -g1,5312:17585764,38404395 ) +g1,4582:18353818,41901464 ) -g1,5312:17585764,38404395 -g1,5313:17585764,38404395 -g1,5313:17585764,38404395 -) -g1,5313:17585764,38404395 -) -) -g1,5315:27691475,44462590 -k1,5315:32583029,44462590:4891554 ) -] -(1,5320:32583029,45706769:0,0,0 -g1,5320:32583029,45706769 +g1,4582:17668964,41901464 +g1,4582:17668964,41901464 ) ) -] -(1,5320:6630773,47279633:25952256,0,0 -h1,5320:6630773,47279633:25952256,0,0 +(1,4583:17668964,41901464:0,0,0 +(1,4583:17668964,41901464:0,0,0 +g1,4583:17668964,41901464 +(1,4583:17668964,41901464:0,0,0 +(1,4583:17668964,41901464:684854,448266,0 +(1,4583:17668964,41901464:684854,448266,0 +(1,4583:17668964,41901464:684854,448266,0 +(1,4583:18148360,41901464:448266,479396,205458 +(1,4583:18148360,41901464:448266,479396,205458 +r1,4637:18596626,41901464:0,684854,205458 ) -] -(1,5320:4262630,4025873:0,0,0 -[1,5320:-473656,4025873:0,0,0 -(1,5320:-473656,-710413:0,0,0 -(1,5320:-473656,-710413:0,0,0 -g1,5320:-473656,-710413 ) -g1,5320:-473656,-710413 ) -] ) -] -!107401 -}92 -Input:774:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:775:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!198 -{93 -[1,5392:4262630,47279633:28320399,43253760,0 -(1,5392:4262630,4025873:0,0,0 -[1,5392:-473656,4025873:0,0,0 -(1,5392:-473656,-710413:0,0,0 -(1,5392:-473656,-644877:0,0,0 -k1,5392:-473656,-644877:-65536 +g1,4583:18353818,41901464 ) -(1,5392:-473656,4736287:0,0,0 -k1,5392:-473656,4736287:5209943 ) -g1,5392:-473656,-710413 +g1,4583:17668964,41901464 +g1,4583:17668964,41901464 ) -] ) -[1,5392:6630773,47279633:25952256,43253760,0 -[1,5392:6630773,4812305:25952256,786432,0 -(1,5392:6630773,4812305:25952256,505283,11795 -(1,5392:6630773,4812305:25952256,505283,11795 -g1,5392:3078558,4812305 -[1,5392:3078558,4812305:0,0,0 -(1,5392:3078558,2439708:0,1703936,0 -k1,5392:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,5392:2537886,2439708:1179648,16384,0 +g1,4583:17668964,41901464 +g1,4585:17668964,41901464 +(1,4585:17668964,41901464:0,0,0 +(1,4585:17668964,41901464:0,0,0 +g1,4585:17668964,41901464 +g1,4585:17668964,41901464 +g1,4585:17668964,41901464 +g1,4585:17668964,41901464 +g1,4585:17668964,41901464 +(1,4585:17668964,41901464:0,0,0 +(1,4585:17668964,41901464:6599312,404226,101187 +(1,4585:17668964,41901464:6599312,404226,101187 +(1,4585:17668964,41901464:0,363038,98932 +r1,4637:19645104,41901464:1976140,461970,98932 +k1,4585:17668964,41901464:-1976140 ) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,5392:3078558,1915420:16384,1179648,0 +(1,4585:17668964,41901464:1976140,363038,98932 +k1,4585:17668964,41901464:3277 +h1,4585:19641827,41901464:0,328964,90056 ) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 +g1,4585:19810779,41901464 +g1,4585:22482551,41901464 ) -] +g1,4585:24268276,41901464 ) ) +g1,4585:17668964,41901464 +g1,4585:17668964,41901464 ) -] -[1,5392:3078558,4812305:0,0,0 -(1,5392:3078558,2439708:0,1703936,0 -g1,5392:29030814,2439708 -g1,5392:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,5392:36151628,1915420:16384,1179648,0 ) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 +g1,4585:17668964,41901464 +g1,4586:17668964,41901464 +(1,4586:17668964,41901464:0,0,0 +(1,4586:17668964,41901464:0,0,0 +g1,4586:17668964,41901464 +g1,4586:17668964,41901464 +g1,4586:17668964,41901464 +g1,4586:17668964,41901464 +g1,4586:17668964,41901464 +(1,4586:17668964,41901464:0,0,0 +(1,4586:17668964,41901464:4301011,404226,93333 +(1,4586:17668964,41901464:4301011,404226,93333 +(1,4586:17668964,41901464:0,363038,93333 +r1,4637:20207843,41901464:2538879,456371,93333 +k1,4586:17668964,41901464:-2538879 ) -] +(1,4586:17668964,41901464:2538879,363038,93333 +k1,4586:17668964,41901464:3277 +h1,4586:20204566,41901464:0,328964,90056 ) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,5392:37855564,2439708:1179648,16384,0 +g1,4586:20373518,41901464 ) +g1,4586:21969975,41901464 ) -k1,5392:3078556,2439708:-34777008 ) -] -[1,5392:3078558,4812305:0,0,0 -(1,5392:3078558,49800853:0,16384,2228224 -k1,5392:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,5392:2537886,49800853:1179648,16384,0 +g1,4586:17668964,41901464 +g1,4586:17668964,41901464 ) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,5392:3078558,51504789:16384,1179648,0 ) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 +g1,4586:17668964,41901464 +g1,4587:17668964,41901464 +(1,4587:17668964,41901464:0,0,0 +(1,4587:17668964,41901464:0,0,0 +g1,4587:17668964,41901464 +g1,4587:17668964,41901464 +g1,4587:17668964,41901464 +g1,4587:17668964,41901464 +g1,4587:17668964,41901464 +(1,4587:17668964,41901464:0,0,0 +(1,4587:17668964,41901464:6641433,404226,93333 +(1,4587:17668964,41901464:6641433,404226,93333 +(1,4587:17668964,41901464:0,363038,93333 +r1,4637:20207843,41901464:2538879,456371,93333 +k1,4587:17668964,41901464:-2538879 ) -] +(1,4587:17668964,41901464:2538879,363038,93333 +k1,4587:17668964,41901464:3277 +h1,4587:20204566,41901464:0,328964,90056 ) +g1,4587:20373518,41901464 +g1,4587:22647355,41901464 ) +g1,4587:24310397,41901464 ) -] -[1,5392:3078558,4812305:0,0,0 -(1,5392:3078558,49800853:0,16384,2228224 -g1,5392:29030814,49800853 -g1,5392:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,5392:36151628,51504789:16384,1179648,0 ) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 +g1,4587:17668964,41901464 +g1,4587:17668964,41901464 ) -] ) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,5392:37855564,49800853:1179648,16384,0 +g1,4587:17668964,41901464 +g1,4589:17668964,41901464 +g1,4589:17668964,41901464 ) +g1,4589:17668964,41901464 ) -k1,5392:3078556,49800853:-34777008 ) -] -g1,5392:6630773,4812305 -k1,5392:22348274,4812305:14920583 -g1,5392:23970945,4812305 -g1,5392:24793421,4812305 -g1,5392:27528893,4812305 -g1,5392:28938572,4812305 +g1,4591:28025235,43257096 +k1,4591:32583029,43257096:4557794 ) +(1,4594:6764466,44777536:25818563,513147,115847 +h1,4593:6764466,44777536:983040,0,0 +k1,4593:8784939,44777536:219544 +(1,4593:8784939,44777536:0,414482,115847 +r1,4637:11956899,44777536:3171960,530329,115847 +k1,4593:8784939,44777536:-3171960 ) -] -[1,5392:6630773,45706769:25952256,40108032,0 -(1,5392:6630773,45706769:25952256,40108032,0 -(1,5392:6630773,45706769:0,0,0 -g1,5392:6630773,45706769 +(1,4593:8784939,44777536:3171960,414482,115847 +k1,4593:8784939,44777536:3277 +h1,4593:11953622,44777536:0,411205,112570 ) -[1,5392:6630773,45706769:25952256,40108032,0 -(1,5318:6630773,6254097:25952256,513147,134348 -h1,5317:6630773,6254097:983040,0,0 -k1,5317:9614058,6254097:217010 -k1,5317:11921011,6254097:217010 -k1,5317:13157106,6254097:217010 -k1,5317:17080832,6254097:217010 -(1,5317:17080832,6254097:0,452978,115847 -r1,5392:19549369,6254097:2468537,568825,115847 -k1,5317:17080832,6254097:-2468537 -) -(1,5317:17080832,6254097:2468537,452978,115847 -k1,5317:17080832,6254097:3277 -h1,5317:19546092,6254097:0,411205,112570 -) -k1,5317:19940049,6254097:217010 -k1,5317:23832318,6254097:217010 -k1,5317:25040888,6254097:217010 -k1,5317:28089709,6254097:217010 -k1,5317:29700670,6254097:217010 -k1,5317:30936765,6254097:217010 -k1,5318:32583029,6254097:0 -) -(1,5318:6630773,7095585:25952256,505283,126483 -g1,5317:8469057,7095585 -g1,5317:10873573,7095585 -g1,5317:11724230,7095585 -g1,5317:15204191,7095585 -(1,5317:15204191,7095585:0,452978,115847 -r1,5392:16265880,7095585:1061689,568825,115847 -k1,5317:15204191,7095585:-1061689 -) -(1,5317:15204191,7095585:1061689,452978,115847 -k1,5317:15204191,7095585:3277 -h1,5317:16262603,7095585:0,411205,112570 -) -k1,5318:32583029,7095585:16143479 -g1,5318:32583029,7095585 -) -v1,5320:6630773,8076335:0,393216,0 -(1,5353:6630773,24337428:25952256,16654309,196608 -g1,5353:6630773,24337428 -g1,5353:6630773,24337428 -g1,5353:6434165,24337428 -(1,5353:6434165,24337428:0,16654309,196608 -r1,5392:32779637,24337428:26345472,16850917,196608 -k1,5353:6434165,24337428:-26345472 -) -(1,5353:6434165,24337428:26345472,16654309,196608 -[1,5353:6630773,24337428:25952256,16457701,0 -(1,5322:6630773,8283953:25952256,404226,101187 -(1,5321:6630773,8283953:0,0,0 -g1,5321:6630773,8283953 -g1,5321:6630773,8283953 -g1,5321:6303093,8283953 -(1,5321:6303093,8283953:0,0,0 -) -g1,5321:6630773,8283953 -) -g1,5322:8211502,8283953 -g1,5322:9159940,8283953 -g1,5322:12953689,8283953 -g1,5322:14218272,8283953 -g1,5322:14850564,8283953 -g1,5322:16431294,8283953 -g1,5322:17379732,8283953 -h1,5322:18328169,8283953:0,0,0 -k1,5322:32583029,8283953:14254860 -g1,5322:32583029,8283953 -) -(1,5323:6630773,8950131:25952256,388497,101187 -h1,5323:6630773,8950131:0,0,0 -h1,5323:7895356,8950131:0,0,0 -k1,5323:32583028,8950131:24687672 -g1,5323:32583028,8950131 -) -(1,5346:6630773,9616309:25952256,388497,82312 -(1,5325:6630773,9616309:0,0,0 -g1,5325:6630773,9616309 -g1,5325:6630773,9616309 -g1,5325:6303093,9616309 -(1,5325:6303093,9616309:0,0,0 -) -g1,5325:6630773,9616309 -) -g1,5346:7579210,9616309 -g1,5346:8211502,9616309 -g1,5346:8843794,9616309 -h1,5346:9159940,9616309:0,0,0 -k1,5346:32583028,9616309:23423088 -g1,5346:32583028,9616309 -) -(1,5346:6630773,10282487:25952256,379060,0 -h1,5346:6630773,10282487:0,0,0 -h1,5346:7263064,10282487:0,0,0 -k1,5346:32583028,10282487:25319964 -g1,5346:32583028,10282487 -) -(1,5346:6630773,10948665:25952256,404226,82312 -h1,5346:6630773,10948665:0,0,0 -g1,5346:7579210,10948665 -g1,5346:7895356,10948665 -g1,5346:8211502,10948665 -g1,5346:8527648,10948665 -g1,5346:8843794,10948665 -g1,5346:9159940,10948665 -g1,5346:10740669,10948665 -g1,5346:12321398,10948665 -k1,5346:12321398,10948665:0 -h1,5346:13585981,10948665:0,0,0 -k1,5346:32583029,10948665:18997048 -g1,5346:32583029,10948665 -) -(1,5346:6630773,11614843:25952256,404226,82312 -h1,5346:6630773,11614843:0,0,0 -g1,5346:7579210,11614843 -g1,5346:9159938,11614843 -g1,5346:9476084,11614843 -g1,5346:9792230,11614843 -g1,5346:10108376,11614843 -g1,5346:10740668,11614843 -g1,5346:11056814,11614843 -g1,5346:11372960,11614843 -g1,5346:11689106,11614843 -g1,5346:12321398,11614843 -g1,5346:12637544,11614843 -g1,5346:12953690,11614843 -g1,5346:13269836,11614843 -h1,5346:13585982,11614843:0,0,0 -k1,5346:32583030,11614843:18997048 -g1,5346:32583030,11614843 -) -(1,5346:6630773,12281021:25952256,404226,82312 -h1,5346:6630773,12281021:0,0,0 -g1,5346:7579210,12281021 -g1,5346:9159938,12281021 -g1,5346:9476084,12281021 -g1,5346:9792230,12281021 -g1,5346:10108376,12281021 -g1,5346:10740668,12281021 -g1,5346:11056814,12281021 -g1,5346:11372960,12281021 -g1,5346:11689106,12281021 -g1,5346:12321398,12281021 -g1,5346:12637544,12281021 -g1,5346:12953690,12281021 -g1,5346:13269836,12281021 -h1,5346:13585982,12281021:0,0,0 -k1,5346:32583030,12281021:18997048 -g1,5346:32583030,12281021 -) -(1,5346:6630773,12947199:25952256,404226,82312 -h1,5346:6630773,12947199:0,0,0 -g1,5346:7579210,12947199 -g1,5346:9159938,12947199 -g1,5346:9476084,12947199 -g1,5346:9792230,12947199 -g1,5346:10108376,12947199 -g1,5346:10740668,12947199 -g1,5346:11056814,12947199 -g1,5346:11372960,12947199 -g1,5346:11689106,12947199 -g1,5346:12321398,12947199 -g1,5346:12637544,12947199 -g1,5346:12953690,12947199 -g1,5346:13269836,12947199 -h1,5346:13585982,12947199:0,0,0 -k1,5346:32583030,12947199:18997048 -g1,5346:32583030,12947199 -) -(1,5346:6630773,13613377:25952256,379060,0 -h1,5346:6630773,13613377:0,0,0 -h1,5346:7263064,13613377:0,0,0 -k1,5346:32583028,13613377:25319964 -g1,5346:32583028,13613377 -) -(1,5346:6630773,14279555:25952256,388497,82312 -h1,5346:6630773,14279555:0,0,0 -g1,5346:7579210,14279555 -g1,5346:8211502,14279555 -g1,5346:8843794,14279555 -h1,5346:9159940,14279555:0,0,0 -k1,5346:32583028,14279555:23423088 -g1,5346:32583028,14279555 -) -(1,5346:6630773,14945733:25952256,379060,0 -h1,5346:6630773,14945733:0,0,0 -h1,5346:7263064,14945733:0,0,0 -k1,5346:32583028,14945733:25319964 -g1,5346:32583028,14945733 -) -(1,5346:6630773,15611911:25952256,404226,82312 -h1,5346:6630773,15611911:0,0,0 -g1,5346:7579210,15611911 -g1,5346:7895356,15611911 -g1,5346:8211502,15611911 -g1,5346:8527648,15611911 -g1,5346:8843794,15611911 -g1,5346:9159940,15611911 -g1,5346:10740669,15611911 -g1,5346:12321398,15611911 -k1,5346:12321398,15611911:0 -h1,5346:13585981,15611911:0,0,0 -k1,5346:32583029,15611911:18997048 -g1,5346:32583029,15611911 -) -(1,5346:6630773,16278089:25952256,404226,82312 -h1,5346:6630773,16278089:0,0,0 -g1,5346:7579210,16278089 -g1,5346:9159938,16278089 -g1,5346:9476084,16278089 -g1,5346:9792230,16278089 -g1,5346:10740667,16278089 -g1,5346:11056813,16278089 -g1,5346:11372959,16278089 -g1,5346:12321396,16278089 -g1,5346:12637542,16278089 -g1,5346:12953688,16278089 -h1,5346:13585979,16278089:0,0,0 -k1,5346:32583029,16278089:18997050 -g1,5346:32583029,16278089 -) -(1,5346:6630773,16944267:25952256,404226,82312 -h1,5346:6630773,16944267:0,0,0 -g1,5346:7579210,16944267 -g1,5346:9159938,16944267 -g1,5346:9476084,16944267 -g1,5346:9792230,16944267 -g1,5346:10740667,16944267 -g1,5346:11056813,16944267 -g1,5346:11372959,16944267 -g1,5346:12321396,16944267 -g1,5346:12637542,16944267 -g1,5346:12953688,16944267 -h1,5346:13585979,16944267:0,0,0 -k1,5346:32583029,16944267:18997050 -g1,5346:32583029,16944267 -) -(1,5346:6630773,17610445:25952256,404226,82312 -h1,5346:6630773,17610445:0,0,0 -g1,5346:7579210,17610445 -g1,5346:9159938,17610445 -g1,5346:9476084,17610445 -g1,5346:9792230,17610445 -g1,5346:10740667,17610445 -g1,5346:11056813,17610445 -g1,5346:11372959,17610445 -g1,5346:12321396,17610445 -g1,5346:12637542,17610445 -g1,5346:12953688,17610445 -h1,5346:13585979,17610445:0,0,0 -k1,5346:32583029,17610445:18997050 -g1,5346:32583029,17610445 -) -(1,5346:6630773,18276623:25952256,379060,0 -h1,5346:6630773,18276623:0,0,0 -h1,5346:7263064,18276623:0,0,0 -k1,5346:32583028,18276623:25319964 -g1,5346:32583028,18276623 -) -(1,5346:6630773,18942801:25952256,388497,82312 -h1,5346:6630773,18942801:0,0,0 -g1,5346:7579210,18942801 -g1,5346:8211502,18942801 -g1,5346:8843794,18942801 -h1,5346:9159940,18942801:0,0,0 -k1,5346:32583028,18942801:23423088 -g1,5346:32583028,18942801 -) -(1,5346:6630773,19608979:25952256,379060,0 -h1,5346:6630773,19608979:0,0,0 -h1,5346:7263064,19608979:0,0,0 -k1,5346:32583028,19608979:25319964 -g1,5346:32583028,19608979 -) -(1,5346:6630773,20275157:25952256,404226,82312 -h1,5346:6630773,20275157:0,0,0 -g1,5346:7579210,20275157 -g1,5346:7895356,20275157 -g1,5346:8211502,20275157 -g1,5346:8527648,20275157 -g1,5346:8843794,20275157 -g1,5346:9159940,20275157 -g1,5346:10740669,20275157 -g1,5346:12321398,20275157 -k1,5346:12321398,20275157:0 -h1,5346:13585981,20275157:0,0,0 -k1,5346:32583029,20275157:18997048 -g1,5346:32583029,20275157 -) -(1,5346:6630773,20941335:25952256,404226,82312 -h1,5346:6630773,20941335:0,0,0 -g1,5346:7579210,20941335 -g1,5346:9159938,20941335 -g1,5346:9476084,20941335 -g1,5346:9792230,20941335 -g1,5346:10740667,20941335 -g1,5346:11056813,20941335 -g1,5346:11372959,20941335 -g1,5346:12321396,20941335 -g1,5346:12637542,20941335 -g1,5346:12953688,20941335 -h1,5346:13585979,20941335:0,0,0 -k1,5346:32583029,20941335:18997050 -g1,5346:32583029,20941335 -) -(1,5346:6630773,21607513:25952256,404226,82312 -h1,5346:6630773,21607513:0,0,0 -g1,5346:7579210,21607513 -g1,5346:9159938,21607513 -g1,5346:9476084,21607513 -g1,5346:9792230,21607513 -g1,5346:10740667,21607513 -g1,5346:11056813,21607513 -g1,5346:11372959,21607513 -g1,5346:12321396,21607513 -g1,5346:12637542,21607513 -g1,5346:12953688,21607513 -h1,5346:13585979,21607513:0,0,0 -k1,5346:32583029,21607513:18997050 -g1,5346:32583029,21607513 -) -(1,5346:6630773,22273691:25952256,404226,82312 -h1,5346:6630773,22273691:0,0,0 -g1,5346:7579210,22273691 -g1,5346:9159938,22273691 -g1,5346:9476084,22273691 -g1,5346:9792230,22273691 -g1,5346:10740667,22273691 -g1,5346:11056813,22273691 -g1,5346:11372959,22273691 -g1,5346:12321396,22273691 -g1,5346:12637542,22273691 -g1,5346:12953688,22273691 -h1,5346:13585979,22273691:0,0,0 -k1,5346:32583029,22273691:18997050 -g1,5346:32583029,22273691 -) -(1,5348:6630773,23595229:25952256,404226,101187 -(1,5347:6630773,23595229:0,0,0 -g1,5347:6630773,23595229 -g1,5347:6630773,23595229 -g1,5347:6303093,23595229 -(1,5347:6303093,23595229:0,0,0 -) -g1,5347:6630773,23595229 -) -k1,5348:6630773,23595229:0 -g1,5348:9159939,23595229 -g1,5348:10108377,23595229 -h1,5348:10740669,23595229:0,0,0 -k1,5348:32583029,23595229:21842360 -g1,5348:32583029,23595229 -) -(1,5352:6630773,24261407:25952256,404226,76021 -(1,5350:6630773,24261407:0,0,0 -g1,5350:6630773,24261407 -g1,5350:6630773,24261407 -g1,5350:6303093,24261407 -(1,5350:6303093,24261407:0,0,0 -) -g1,5350:6630773,24261407 -) -g1,5352:7579210,24261407 -g1,5352:8843793,24261407 -h1,5352:9476084,24261407:0,0,0 -k1,5352:32583028,24261407:23106944 -g1,5352:32583028,24261407 -) -] -) -g1,5353:32583029,24337428 -g1,5353:6630773,24337428 -g1,5353:6630773,24337428 -g1,5353:32583029,24337428 -g1,5353:32583029,24337428 -) -h1,5353:6630773,24534036:0,0,0 -(1,5357:6630773,25690096:25952256,513147,134348 -h1,5356:6630773,25690096:983040,0,0 -k1,5356:8535530,25690096:293882 -k1,5356:9848497,25690096:293882 -k1,5356:12113047,25690096:293882 -k1,5356:14435924,25690096:293882 -k1,5356:15748891,25690096:293882 -k1,5356:18056039,25690096:293882 -k1,5356:19009213,25690096:293882 -k1,5356:20322179,25690096:293881 -k1,5356:23377093,25690096:293882 -k1,5356:25648852,25690096:293882 -k1,5356:26474231,25690096:293882 -k1,5356:27787198,25690096:293882 -k1,5356:30610770,25690096:293882 -k1,5356:31563944,25690096:293882 -k1,5356:32583029,25690096:0 -) -(1,5357:6630773,26531584:25952256,615216,126483 -k1,5356:10714544,26531584:234842 -$1,5356:10714544,26531584 -k1,5356:11758609,26531584:247147 -k1,5356:12573954,26531584:247148 -k1,5356:13144096,26531584:171683 -k1,5356:13883976,26531584:171683 -k1,5356:14454118,26531584:171683 -k1,5356:15193998,26531584:171683 -k1,5356:15839605,26531584:247148 -k1,5356:16654950,26531584:247148 -(1,5356:17053409,26256303:311689,339935,8258 -) -$1,5356:17365098,26531584 -k1,5356:17773609,26531584:234841 -k1,5356:20120021,26531584:234842 -k1,5356:21346423,26531584:234842 -k1,5356:23931385,26531584:234841 -k1,5356:24782265,26531584:234842 -k1,5356:26938623,26531584:234842 -k1,5356:28567415,26531584:234841 -k1,5356:30550102,26531584:234842 -k1,5356:32583029,26531584:0 -) -(1,5357:6630773,27373072:25952256,505283,134348 -k1,5356:7981834,27373072:243503 -k1,5356:9416781,27373072:243502 -k1,5356:11701075,27373072:243503 -k1,5356:15619836,27373072:243502 -k1,5356:18213460,27373072:243503 -k1,5356:21899568,27373072:243502 -k1,5356:23537022,27373072:243503 -k1,5356:25289163,27373072:243502 -k1,5356:30156231,27373072:243503 -k1,5356:32583029,27373072:0 -) -(1,5357:6630773,28214560:25952256,513147,134348 -k1,5356:8761398,28214560:275301 -k1,5356:10488322,28214560:275302 -k1,5356:12181167,28214560:275301 -k1,5356:13647914,28214560:275302 -k1,5356:14942300,28214560:275301 -k1,5356:16523735,28214560:275302 -k1,5356:17971475,28214560:275301 -k1,5356:21922036,28214560:275302 -k1,5356:23006707,28214560:275301 -k1,5356:24301094,28214560:275302 -k1,5356:27161135,28214560:275301 -k1,5356:28095729,28214560:275302 -k1,5356:29390115,28214560:275301 -k1,5356:32583029,28214560:0 -) -(1,5357:6630773,29056048:25952256,505283,126483 -g1,5356:8751518,29056048 -g1,5356:11718988,29056048 -g1,5356:12569645,29056048 -g1,5356:14099255,29056048 -g1,5356:17031991,29056048 -g1,5356:18222780,29056048 -k1,5357:32583029,29056048:11123426 -g1,5357:32583029,29056048 -) -v1,5359:6630773,30212108:0,393216,0 -(1,5388:6630773,45706769:25952256,15887877,0 -g1,5388:6630773,45706769 -g1,5388:6303093,45706769 -r1,5392:6401397,45706769:98304,15887877,0 -g1,5388:6600626,45706769 -g1,5388:6797234,45706769 -[1,5388:6797234,45706769:25785795,15887877,0 -(1,5360:6797234,30644646:25785795,825754,196608 -(1,5359:6797234,30644646:0,825754,196608 -r1,5392:7890375,30644646:1093141,1022362,196608 -k1,5359:6797234,30644646:-1093141 -) -(1,5359:6797234,30644646:1093141,825754,196608 -) -k1,5359:8142084,30644646:251709 -k1,5359:9868302,30644646:327680 -k1,5359:11540831,30644646:251708 -k1,5359:12607808,30644646:251709 -k1,5359:14029989,30644646:251708 -k1,5359:15374183,30644646:251709 -k1,5359:18052689,30644646:251708 -k1,5359:18955826,30644646:251709 -k1,5359:21411510,30644646:251708 -k1,5359:22682304,30644646:251709 -k1,5359:25175343,30644646:251708 -k1,5359:27965917,30644646:251709 -k1,5359:28876917,30644646:251708 -k1,5359:30147711,30644646:251709 -k1,5359:32583029,30644646:0 -) -(1,5360:6797234,31486134:25785795,513147,134348 -g1,5359:9148010,31486134 -g1,5359:9963277,31486134 -g1,5359:11614128,31486134 -g1,5359:12472649,31486134 -g1,5359:13690963,31486134 -g1,5359:16865527,31486134 -g1,5359:19798263,31486134 -g1,5359:21188937,31486134 -k1,5360:32583029,31486134:9087225 -g1,5360:32583029,31486134 -) -v1,5362:6797234,32553023:0,393216,0 -(1,5370:6797234,35510811:25785795,3351004,196608 -g1,5370:6797234,35510811 -g1,5370:6797234,35510811 -g1,5370:6600626,35510811 -(1,5370:6600626,35510811:0,3351004,196608 -r1,5392:32779637,35510811:26179011,3547612,196608 -k1,5370:6600625,35510811:-26179012 -) -(1,5370:6600626,35510811:26179011,3351004,196608 -[1,5370:6797234,35510811:25785795,3154396,0 -(1,5364:6797234,32744912:25785795,388497,9436 -(1,5363:6797234,32744912:0,0,0 -g1,5363:6797234,32744912 -g1,5363:6797234,32744912 -g1,5363:6469554,32744912 -(1,5363:6469554,32744912:0,0,0 -) -g1,5363:6797234,32744912 -) -g1,5364:8377963,32744912 -g1,5364:9326401,32744912 -h1,5364:10590984,32744912:0,0,0 -k1,5364:32583028,32744912:21992044 -g1,5364:32583028,32744912 -) -(1,5365:6797234,33411090:25785795,404226,82312 -h1,5365:6797234,33411090:0,0,0 -g1,5365:8377963,33411090 -g1,5365:9326401,33411090 -g1,5365:13436295,33411090 -g1,5365:15017024,33411090 -g1,5365:15649316,33411090 -h1,5365:16281608,33411090:0,0,0 -k1,5365:32583029,33411090:16301421 -g1,5365:32583029,33411090 -) -(1,5366:6797234,34077268:25785795,404226,101187 -h1,5366:6797234,34077268:0,0,0 -g1,5366:8377963,34077268 -g1,5366:9326401,34077268 -g1,5366:13436295,34077268 -g1,5366:15017024,34077268 -g1,5366:15649316,34077268 -g1,5366:16597754,34077268 -g1,5366:18494628,34077268 -g1,5366:19126920,34077268 -h1,5366:20707649,34077268:0,0,0 -k1,5366:32583029,34077268:11875380 -g1,5366:32583029,34077268 -) -(1,5367:6797234,34743446:25785795,404226,82312 -h1,5367:6797234,34743446:0,0,0 -g1,5367:8377963,34743446 -g1,5367:9326401,34743446 -g1,5367:13436295,34743446 -g1,5367:15017024,34743446 -g1,5367:15649316,34743446 -h1,5367:16281608,34743446:0,0,0 -k1,5367:32583029,34743446:16301421 -g1,5367:32583029,34743446 -) -(1,5368:6797234,35409624:25785795,404226,101187 -h1,5368:6797234,35409624:0,0,0 -g1,5368:8377963,35409624 -g1,5368:9326401,35409624 -g1,5368:13436295,35409624 -g1,5368:15017024,35409624 -g1,5368:15649316,35409624 -g1,5368:16597754,35409624 -g1,5368:18494628,35409624 -g1,5368:19126920,35409624 -h1,5368:20707649,35409624:0,0,0 -k1,5368:32583029,35409624:11875380 -g1,5368:32583029,35409624 -) -] -) -g1,5370:32583029,35510811 -g1,5370:6797234,35510811 -g1,5370:6797234,35510811 -g1,5370:32583029,35510811 -g1,5370:32583029,35510811 -) -h1,5370:6797234,35707419:0,0,0 -v1,5374:6797234,37175019:0,393216,0 -(1,5380:6797234,38816180:25785795,2034377,196608 -g1,5380:6797234,38816180 -g1,5380:6797234,38816180 -g1,5380:6600626,38816180 -(1,5380:6600626,38816180:0,2034377,196608 -r1,5392:32779637,38816180:26179011,2230985,196608 -k1,5380:6600625,38816180:-26179012 -) -(1,5380:6600626,38816180:26179011,2034377,196608 -[1,5380:6797234,38816180:25785795,1837769,0 -(1,5376:6797234,37382637:25785795,404226,101187 -(1,5375:6797234,37382637:0,0,0 -g1,5375:6797234,37382637 -g1,5375:6797234,37382637 -g1,5375:6469554,37382637 -(1,5375:6469554,37382637:0,0,0 -) -g1,5375:6797234,37382637 -) -g1,5376:8377963,37382637 -g1,5376:9326401,37382637 -g1,5376:13120149,37382637 -g1,5376:14384732,37382637 -g1,5376:15017024,37382637 -g1,5376:16597754,37382637 -h1,5376:17546191,37382637:0,0,0 -k1,5376:32583029,37382637:15036838 -g1,5376:32583029,37382637 -) -(1,5377:6797234,38048815:25785795,404226,101187 -h1,5377:6797234,38048815:0,0,0 -g1,5377:8377963,38048815 -g1,5377:9326401,38048815 -g1,5377:13120149,38048815 -g1,5377:14384732,38048815 -g1,5377:15017024,38048815 -g1,5377:16597754,38048815 -g1,5377:17862338,38048815 -g1,5377:20707649,38048815 -g1,5377:21339941,38048815 -g1,5377:24817545,38048815 -g1,5377:27346712,38048815 -h1,5377:29559732,38048815:0,0,0 -k1,5377:32583029,38048815:3023297 -g1,5377:32583029,38048815 -) -(1,5378:6797234,38714993:25785795,404226,101187 -h1,5378:6797234,38714993:0,0,0 -g1,5378:8377963,38714993 -g1,5378:9326401,38714993 -g1,5378:13120149,38714993 -g1,5378:14384732,38714993 -g1,5378:15017024,38714993 -g1,5378:16597754,38714993 -h1,5378:17546191,38714993:0,0,0 -k1,5378:32583029,38714993:15036838 -g1,5378:32583029,38714993 -) -] -) -g1,5380:32583029,38816180 -g1,5380:6797234,38816180 -g1,5380:6797234,38816180 -g1,5380:32583029,38816180 -g1,5380:32583029,38816180 -) -h1,5380:6797234,39012788:0,0,0 -(1,5385:6797234,40254987:25785795,505283,134348 -h1,5383:6797234,40254987:983040,0,0 -k1,5383:8684452,40254987:157723 -k1,5383:10710606,40254987:157723 -k1,5383:12152836,40254987:157724 -k1,5383:14618737,40254987:157723 -k1,5383:15967905,40254987:157723 -k1,5383:21401276,40254987:157723 -k1,5383:23538843,40254987:157724 -k1,5383:24688126,40254987:157723 -k1,5383:25912120,40254987:157723 -k1,5383:27088928,40254987:157723 -k1,5383:28900125,40254987:157724 -k1,5383:30893511,40254987:157723 -k1,5383:32583029,40254987:0 -) -(1,5385:6797234,41096475:25785795,505283,126483 -g1,5383:12287840,41096475 -g1,5383:14466912,41096475 -g1,5383:15657701,41096475 -k1,5385:32583029,41096475:14018151 -g1,5385:32583029,41096475 -) -(1,5386:8940261,42431356:22856336,513147,126483 -(1,5385:8940261,42431356:0,477757,0 -g1,5385:8940261,42431356 -g1,5385:7629541,42431356 -g1,5385:7629541,42431356 -(1,5385:7629541,42431356:1310720,477757,0 -(1,5385:7629541,42431356:1048576,477757,0 -g1,5385:7891685,42431356 -(1,5385:7891685,42431356:572129,477757,0 -g1,5385:7891685,42431356 -) -) -) -g1,5385:8940261,42431356 -) -k1,5385:10315861,42431356:226754 -k1,5385:11561701,42431356:226755 -k1,5385:14550798,42431356:226754 -k1,5385:18814571,42431356:226755 -k1,5385:20232770,42431356:226754 -k1,5385:22275527,42431356:226754 -k1,5385:25528079,42431356:226755 -k1,5385:26406261,42431356:226754 -k1,5385:29001487,42431356:226755 -k1,5385:30605152,42431356:226754 -k1,5385:31796597,42431356:0 -) -(1,5386:8940261,43272844:22856336,473825,126483 -g1,5385:9927888,43272844 -k1,5386:31796597,43272844:17281844 -g1,5386:31796597,43272844 -) -(1,5387:8940261,44345582:22856336,505283,134348 -(1,5386:8940261,44345582:0,485622,0 -g1,5386:8940261,44345582 -g1,5386:7629541,44345582 -g1,5386:7629541,44345582 -(1,5386:7629541,44345582:1310720,485622,0 -(1,5386:7629541,44345582:1048576,485622,0 -g1,5386:7891685,44345582 -(1,5386:7891685,44345582:572129,485622,0 -g1,5386:7891685,44345582 -) -) -) -g1,5386:8940261,44345582 -) -k1,5386:11629636,44345582:174759 -k1,5386:12160255,44345582:174759 -k1,5386:14422337,44345582:174760 -k1,5386:15864562,44345582:174759 -k1,5386:16395181,44345582:174759 -k1,5386:18547817,44345582:174759 -k1,5386:20457969,44345582:174759 -(1,5386:20457969,44345582:0,452978,115847 -r1,5392:23278218,44345582:2820249,568825,115847 -k1,5386:20457969,44345582:-2820249 -) -(1,5386:20457969,44345582:2820249,452978,115847 -k1,5386:20457969,44345582:3277 -h1,5386:23274941,44345582:0,411205,112570 -) -k1,5386:23452977,44345582:174759 -k1,5386:24819182,44345582:174760 -(1,5386:24819182,44345582:0,452978,115847 -r1,5392:28694566,44345582:3875384,568825,115847 -k1,5386:24819182,44345582:-3875384 +k1,4593:12176444,44777536:219545 +k1,4593:12927485,44777536:219544 +k1,4593:13502889,44777536:219544 +k1,4593:15881189,44777536:219544 +k1,4593:18252281,44777536:219545 +k1,4593:19340177,44777536:219544 +k1,4593:20664003,44777536:219544 +k1,4593:21976033,44777536:219545 +k1,4593:23214662,44777536:219544 +k1,4593:25973071,44777536:219544 +k1,4593:28260931,44777536:219544 +k1,4593:29166638,44777536:219545 +k1,4593:31635378,44777536:219544 +k1,4593:32583029,44777536:0 ) -(1,5386:24819182,44345582:3875384,452978,115847 -k1,5386:24819182,44345582:3277 -h1,5386:28691289,44345582:0,411205,112570 -) -k1,5386:28869325,44345582:174759 -k1,5386:30235529,44345582:174759 -k1,5387:31796597,44345582:0 -) -(1,5387:8940261,45187070:22856336,505283,126483 -g1,5386:10551791,45187070 -g1,5386:11770105,45187070 -g1,5386:14748061,45187070 -k1,5387:31796597,45187070:14864221 -g1,5387:31796597,45187070 +(1,4594:6764466,45642616:25818563,505283,7863 +g1,4593:9502560,45642616 +k1,4594:32583029,45642616:19692258 +g1,4594:32583029,45642616 ) ] -g1,5388:32583029,45706769 +g1,4637:32583029,45650479 ) -h1,5388:6630773,45706769:0,0,0 ] -(1,5392:32583029,45706769:0,0,0 -g1,5392:32583029,45706769 +(1,4637:32583029,45706769:0,0,0 +g1,4637:32583029,45706769 ) ) ] -(1,5392:6630773,47279633:25952256,0,0 -h1,5392:6630773,47279633:25952256,0,0 +(1,4637:6630773,47279633:25952256,0,0 +h1,4637:6630773,47279633:25952256,0,0 ) ] -(1,5392:4262630,4025873:0,0,0 -[1,5392:-473656,4025873:0,0,0 -(1,5392:-473656,-710413:0,0,0 -(1,5392:-473656,-710413:0,0,0 -g1,5392:-473656,-710413 +(1,4637:4262630,4025873:0,0,0 +[1,4637:-473656,4025873:0,0,0 +(1,4637:-473656,-710413:0,0,0 +(1,4637:-473656,-710413:0,0,0 +g1,4637:-473656,-710413 ) -g1,5392:-473656,-710413 +g1,4637:-473656,-710413 ) ] ) ] -!24369 -}93 -Input:776:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:777:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:778:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:779:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!383 -{94 -[1,5486:4262630,47279633:28320399,43253760,0 -(1,5486:4262630,4025873:0,0,0 -[1,5486:-473656,4025873:0,0,0 -(1,5486:-473656,-710413:0,0,0 -(1,5486:-473656,-644877:0,0,0 -k1,5486:-473656,-644877:-65536 +!33241 +}80 +Input:763:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!104 +{81 +[1,4695:4262630,47279633:28320399,43253760,0 +(1,4695:4262630,4025873:0,0,0 +[1,4695:-473656,4025873:0,0,0 +(1,4695:-473656,-710413:0,0,0 +(1,4695:-473656,-644877:0,0,0 +k1,4695:-473656,-644877:-65536 ) -(1,5486:-473656,4736287:0,0,0 -k1,5486:-473656,4736287:5209943 +(1,4695:-473656,4736287:0,0,0 +k1,4695:-473656,4736287:5209943 ) -g1,5486:-473656,-710413 +g1,4695:-473656,-710413 ) ] ) -[1,5486:6630773,47279633:25952256,43253760,0 -[1,5486:6630773,4812305:25952256,786432,0 -(1,5486:6630773,4812305:25952256,505283,126483 -(1,5486:6630773,4812305:25952256,505283,126483 -g1,5486:3078558,4812305 -[1,5486:3078558,4812305:0,0,0 -(1,5486:3078558,2439708:0,1703936,0 -k1,5486:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,5486:2537886,2439708:1179648,16384,0 +[1,4695:6630773,47279633:25952256,43253760,0 +[1,4695:6630773,4812305:25952256,786432,0 +(1,4695:6630773,4812305:25952256,505283,11795 +(1,4695:6630773,4812305:25952256,505283,11795 +g1,4695:3078558,4812305 +[1,4695:3078558,4812305:0,0,0 +(1,4695:3078558,2439708:0,1703936,0 +k1,4695:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,4695:2537886,2439708:1179648,16384,0 ) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,5486:3078558,1915420:16384,1179648,0 +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,4695:3078558,1915420:16384,1179648,0 ) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) ] ) ) ) ] -[1,5486:3078558,4812305:0,0,0 -(1,5486:3078558,2439708:0,1703936,0 -g1,5486:29030814,2439708 -g1,5486:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,5486:36151628,1915420:16384,1179648,0 +[1,4695:3078558,4812305:0,0,0 +(1,4695:3078558,2439708:0,1703936,0 +g1,4695:29030814,2439708 +g1,4695:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,4695:36151628,1915420:16384,1179648,0 ) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) ] ) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,5486:37855564,2439708:1179648,16384,0 +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,4695:37855564,2439708:1179648,16384,0 ) ) -k1,5486:3078556,2439708:-34777008 +k1,4695:3078556,2439708:-34777008 ) ] -[1,5486:3078558,4812305:0,0,0 -(1,5486:3078558,49800853:0,16384,2228224 -k1,5486:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,5486:2537886,49800853:1179648,16384,0 +[1,4695:3078558,4812305:0,0,0 +(1,4695:3078558,49800853:0,16384,2228224 +k1,4695:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,4695:2537886,49800853:1179648,16384,0 ) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,5486:3078558,51504789:16384,1179648,0 +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,4695:3078558,51504789:16384,1179648,0 ) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) ] ) ) ) ] -[1,5486:3078558,4812305:0,0,0 -(1,5486:3078558,49800853:0,16384,2228224 -g1,5486:29030814,49800853 -g1,5486:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,5486:36151628,51504789:16384,1179648,0 -) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 -) -] +[1,4695:3078558,4812305:0,0,0 +(1,4695:3078558,49800853:0,16384,2228224 +g1,4695:29030814,49800853 +g1,4695:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,4695:36151628,51504789:16384,1179648,0 ) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,5486:37855564,49800853:1179648,16384,0 -) -) -k1,5486:3078556,49800853:-34777008 -) -] -g1,5486:6630773,4812305 -g1,5486:6630773,4812305 -g1,5486:9472414,4812305 -g1,5486:10882093,4812305 -g1,5486:16529985,4812305 -g1,5486:18796220,4812305 -k1,5486:31786111,4812305:12989891 -) -) -] -[1,5486:6630773,45706769:25952256,40108032,0 -(1,5486:6630773,45706769:25952256,40108032,0 -(1,5486:6630773,45706769:0,0,0 -g1,5486:6630773,45706769 -) -[1,5486:6630773,45706769:25952256,40108032,0 -(1,5393:6630773,6254097:25952256,513147,126483 -h1,5392:6630773,6254097:983040,0,0 -k1,5392:10939261,6254097:133845 -k1,5392:12020756,6254097:133844 -k1,5392:14888108,6254097:133845 -k1,5392:16013513,6254097:133845 -k1,5392:18931326,6254097:133844 -k1,5392:19681209,6254097:133845 -k1,5392:20403567,6254097:133845 -k1,5392:21223574,6254097:133845 -k1,5392:24090925,6254097:133844 -k1,5392:25216330,6254097:133845 -k1,5392:26863401,6254097:133845 -k1,5392:27613283,6254097:133844 -k1,5392:29498905,6254097:133845 -k1,5392:32583029,6254097:0 -) -(1,5393:6630773,7095585:25952256,505283,134348 -k1,5392:10452341,7095585:206602 -k1,5392:11612491,7095585:206601 -k1,5392:12951555,7095585:206602 -k1,5392:14224428,7095585:206602 -k1,5392:17100310,7095585:206601 -k1,5392:18945967,7095585:206602 -k1,5392:19918685,7095585:206602 -k1,5392:21696839,7095585:206601 -k1,5392:23279042,7095585:206602 -(1,5392:23279042,7095585:0,452978,115847 -r1,5486:24340731,7095585:1061689,568825,115847 -k1,5392:23279042,7095585:-1061689 -) -(1,5392:23279042,7095585:1061689,452978,115847 -k1,5392:23279042,7095585:3277 -h1,5392:24337454,7095585:0,411205,112570 -) -k1,5392:24547333,7095585:206602 -k1,5392:25945379,7095585:206601 -k1,5392:27844121,7095585:206602 -k1,5392:32583029,7095585:0 -) -(1,5393:6630773,7937073:25952256,513147,134348 -k1,5392:7521538,7937073:231473 -k1,5392:11029155,7937073:231472 -k1,5392:14511214,7937073:231473 -k1,5392:17532554,7937073:231472 -(1,5392:17532554,7937073:0,452978,115847 -r1,5486:18594243,7937073:1061689,568825,115847 -k1,5392:17532554,7937073:-1061689 -) -(1,5392:17532554,7937073:1061689,452978,115847 -k1,5392:17532554,7937073:3277 -h1,5392:18590966,7937073:0,411205,112570 -) -k1,5392:18825716,7937073:231473 -k1,5392:22526664,7937073:231472 -k1,5392:23113997,7937073:231473 -k1,5392:25606461,7937073:231472 -k1,5392:26599462,7937073:231473 -k1,5392:29869838,7937073:231472 -k1,5392:32583029,7937073:0 -) -(1,5393:6630773,8778561:25952256,505283,7863 -g1,5392:8021447,8778561 -k1,5393:32583029,8778561:22853714 -g1,5393:32583029,8778561 -) -v1,5395:6630773,9969027:0,393216,0 -(1,5418:6630773,19574631:25952256,9998820,196608 -g1,5418:6630773,19574631 -g1,5418:6630773,19574631 -g1,5418:6434165,19574631 -(1,5418:6434165,19574631:0,9998820,196608 -r1,5486:32779637,19574631:26345472,10195428,196608 -k1,5418:6434165,19574631:-26345472 -) -(1,5418:6434165,19574631:26345472,9998820,196608 -[1,5418:6630773,19574631:25952256,9802212,0 -(1,5397:6630773,10176645:25952256,404226,82312 -(1,5396:6630773,10176645:0,0,0 -g1,5396:6630773,10176645 -g1,5396:6630773,10176645 -g1,5396:6303093,10176645 -(1,5396:6303093,10176645:0,0,0 -) -g1,5396:6630773,10176645 -) -g1,5397:8211502,10176645 -g1,5397:9159940,10176645 -g1,5397:13269835,10176645 -g1,5397:14850564,10176645 -g1,5397:15482856,10176645 -h1,5397:16115148,10176645:0,0,0 -k1,5397:32583029,10176645:16467881 -g1,5397:32583029,10176645 -) -(1,5398:6630773,10842823:25952256,388497,9436 -h1,5398:6630773,10842823:0,0,0 -h1,5398:7895356,10842823:0,0,0 -k1,5398:32583028,10842823:24687672 -g1,5398:32583028,10842823 -) -(1,5407:6630773,11509001:25952256,404226,82312 -(1,5400:6630773,11509001:0,0,0 -g1,5400:6630773,11509001 -g1,5400:6630773,11509001 -g1,5400:6303093,11509001 -(1,5400:6303093,11509001:0,0,0 -) -g1,5400:6630773,11509001 -) -g1,5407:7579210,11509001 -g1,5407:7895356,11509001 -g1,5407:8211502,11509001 -g1,5407:8527648,11509001 -g1,5407:8843794,11509001 -g1,5407:9159940,11509001 -g1,5407:10740669,11509001 -g1,5407:12321398,11509001 -g1,5407:13902127,11509001 -k1,5407:13902127,11509001:0 -h1,5407:15166710,11509001:0,0,0 -k1,5407:32583030,11509001:17416320 -g1,5407:32583030,11509001 -) -(1,5407:6630773,12175179:25952256,404226,82312 -h1,5407:6630773,12175179:0,0,0 -g1,5407:7579210,12175179 -g1,5407:9159938,12175179 -g1,5407:9476084,12175179 -g1,5407:9792230,12175179 -g1,5407:10108376,12175179 -g1,5407:10740668,12175179 -g1,5407:11056814,12175179 -g1,5407:11372960,12175179 -g1,5407:11689106,12175179 -g1,5407:12321398,12175179 -g1,5407:12637544,12175179 -g1,5407:12953690,12175179 -g1,5407:13902127,12175179 -g1,5407:14218273,12175179 -g1,5407:14534419,12175179 -h1,5407:15166710,12175179:0,0,0 -k1,5407:32583030,12175179:17416320 -g1,5407:32583030,12175179 -) -(1,5407:6630773,12841357:25952256,404226,82312 -h1,5407:6630773,12841357:0,0,0 -g1,5407:7579210,12841357 -g1,5407:9159938,12841357 -g1,5407:9476084,12841357 -g1,5407:9792230,12841357 -g1,5407:10108376,12841357 -g1,5407:10740668,12841357 -g1,5407:11056814,12841357 -g1,5407:11372960,12841357 -g1,5407:11689106,12841357 -g1,5407:12321398,12841357 -g1,5407:12637544,12841357 -g1,5407:12953690,12841357 -g1,5407:13902127,12841357 -g1,5407:14218273,12841357 -g1,5407:14534419,12841357 -h1,5407:15166710,12841357:0,0,0 -k1,5407:32583030,12841357:17416320 -g1,5407:32583030,12841357 -) -(1,5407:6630773,13507535:25952256,404226,82312 -h1,5407:6630773,13507535:0,0,0 -g1,5407:7579210,13507535 -g1,5407:9159938,13507535 -g1,5407:9476084,13507535 -g1,5407:9792230,13507535 -g1,5407:10108376,13507535 -g1,5407:10740668,13507535 -g1,5407:11056814,13507535 -g1,5407:11372960,13507535 -g1,5407:11689106,13507535 -g1,5407:12321398,13507535 -g1,5407:12637544,13507535 -g1,5407:12953690,13507535 -g1,5407:13902127,13507535 -g1,5407:14218273,13507535 -g1,5407:14534419,13507535 -h1,5407:15166710,13507535:0,0,0 -k1,5407:32583030,13507535:17416320 -g1,5407:32583030,13507535 -) -(1,5407:6630773,14173713:25952256,404226,82312 -h1,5407:6630773,14173713:0,0,0 -g1,5407:7579210,14173713 -g1,5407:9159938,14173713 -g1,5407:9476084,14173713 -g1,5407:9792230,14173713 -g1,5407:10108376,14173713 -g1,5407:10740668,14173713 -g1,5407:11056814,14173713 -g1,5407:11372960,14173713 -g1,5407:11689106,14173713 -g1,5407:12321398,14173713 -g1,5407:12637544,14173713 -g1,5407:12953690,14173713 -g1,5407:13902127,14173713 -g1,5407:14218273,14173713 -g1,5407:14534419,14173713 -h1,5407:15166710,14173713:0,0,0 -k1,5407:32583030,14173713:17416320 -g1,5407:32583030,14173713 -) -(1,5407:6630773,14839891:25952256,404226,82312 -h1,5407:6630773,14839891:0,0,0 -g1,5407:7579210,14839891 -g1,5407:9159938,14839891 -g1,5407:9476084,14839891 -g1,5407:9792230,14839891 -g1,5407:10108376,14839891 -g1,5407:10740668,14839891 -g1,5407:11056814,14839891 -g1,5407:11372960,14839891 -g1,5407:12321397,14839891 -g1,5407:12637543,14839891 -g1,5407:12953689,14839891 -g1,5407:13902126,14839891 -g1,5407:14218272,14839891 -g1,5407:14534418,14839891 -h1,5407:15166709,14839891:0,0,0 -k1,5407:32583029,14839891:17416320 -g1,5407:32583029,14839891 -) -(1,5409:6630773,16161429:25952256,404226,76021 -(1,5408:6630773,16161429:0,0,0 -g1,5408:6630773,16161429 -g1,5408:6630773,16161429 -g1,5408:6303093,16161429 -(1,5408:6303093,16161429:0,0,0 -) -g1,5408:6630773,16161429 -) -k1,5409:6630773,16161429:0 -h1,5409:8843793,16161429:0,0,0 -k1,5409:32583029,16161429:23739236 -g1,5409:32583029,16161429 -) -(1,5417:6630773,16827607:25952256,404226,82312 -(1,5411:6630773,16827607:0,0,0 -g1,5411:6630773,16827607 -g1,5411:6630773,16827607 -g1,5411:6303093,16827607 -(1,5411:6303093,16827607:0,0,0 -) -g1,5411:6630773,16827607 -) -g1,5417:7579210,16827607 -g1,5417:7895356,16827607 -g1,5417:8211502,16827607 -g1,5417:8527648,16827607 -g1,5417:8843794,16827607 -g1,5417:9159940,16827607 -g1,5417:10740669,16827607 -g1,5417:12321398,16827607 -g1,5417:13902127,16827607 -g1,5417:15482856,16827607 -k1,5417:15482856,16827607:0 -h1,5417:16747439,16827607:0,0,0 -k1,5417:32583029,16827607:15835590 -g1,5417:32583029,16827607 -) -(1,5417:6630773,17493785:25952256,404226,82312 -h1,5417:6630773,17493785:0,0,0 -g1,5417:7579210,17493785 -g1,5417:9159938,17493785 -g1,5417:9476084,17493785 -g1,5417:9792230,17493785 -g1,5417:10108376,17493785 -g1,5417:10740668,17493785 -g1,5417:11056814,17493785 -g1,5417:11372960,17493785 -g1,5417:11689106,17493785 -g1,5417:12321398,17493785 -g1,5417:12637544,17493785 -g1,5417:12953690,17493785 -g1,5417:13269836,17493785 -g1,5417:13902128,17493785 -g1,5417:14218274,17493785 -g1,5417:14534420,17493785 -g1,5417:14850566,17493785 -g1,5417:15482858,17493785 -g1,5417:15799004,17493785 -g1,5417:16115150,17493785 -g1,5417:16431296,17493785 -h1,5417:16747442,17493785:0,0,0 -k1,5417:32583029,17493785:15835587 -g1,5417:32583029,17493785 -) -(1,5417:6630773,18159963:25952256,404226,82312 -h1,5417:6630773,18159963:0,0,0 -g1,5417:7579210,18159963 -g1,5417:9159938,18159963 -g1,5417:9476084,18159963 -g1,5417:9792230,18159963 -g1,5417:10108376,18159963 -g1,5417:10740668,18159963 -g1,5417:11056814,18159963 -g1,5417:11372960,18159963 -g1,5417:11689106,18159963 -g1,5417:12321398,18159963 -g1,5417:12637544,18159963 -g1,5417:12953690,18159963 -g1,5417:13269836,18159963 -g1,5417:13902128,18159963 -g1,5417:14218274,18159963 -g1,5417:14534420,18159963 -g1,5417:14850566,18159963 -g1,5417:15482858,18159963 -g1,5417:15799004,18159963 -g1,5417:16115150,18159963 -h1,5417:16747441,18159963:0,0,0 -k1,5417:32583029,18159963:15835588 -g1,5417:32583029,18159963 -) -(1,5417:6630773,18826141:25952256,404226,82312 -h1,5417:6630773,18826141:0,0,0 -g1,5417:7579210,18826141 -g1,5417:9159938,18826141 -g1,5417:9476084,18826141 -g1,5417:9792230,18826141 -g1,5417:10740667,18826141 -g1,5417:11056813,18826141 -g1,5417:11372959,18826141 -g1,5417:12321396,18826141 -g1,5417:12637542,18826141 -g1,5417:12953688,18826141 -g1,5417:13902125,18826141 -g1,5417:14218271,18826141 -g1,5417:14534417,18826141 -g1,5417:15482854,18826141 -g1,5417:15799000,18826141 -g1,5417:16115146,18826141 -h1,5417:16747437,18826141:0,0,0 -k1,5417:32583029,18826141:15835592 -g1,5417:32583029,18826141 -) -(1,5417:6630773,19492319:25952256,404226,82312 -h1,5417:6630773,19492319:0,0,0 -g1,5417:7579210,19492319 -g1,5417:9159938,19492319 -g1,5417:9476084,19492319 -g1,5417:9792230,19492319 -g1,5417:10740667,19492319 -g1,5417:11056813,19492319 -g1,5417:11372959,19492319 -g1,5417:12321396,19492319 -g1,5417:12637542,19492319 -g1,5417:12953688,19492319 -g1,5417:13902125,19492319 -g1,5417:14218271,19492319 -g1,5417:14534417,19492319 -g1,5417:15482854,19492319 -g1,5417:15799000,19492319 -g1,5417:16115146,19492319 -h1,5417:16747437,19492319:0,0,0 -k1,5417:32583029,19492319:15835592 -g1,5417:32583029,19492319 -) -] -) -g1,5418:32583029,19574631 -g1,5418:6630773,19574631 -g1,5418:6630773,19574631 -g1,5418:32583029,19574631 -g1,5418:32583029,19574631 -) -h1,5418:6630773,19771239:0,0,0 -(1,5422:6630773,21137015:25952256,505283,134348 -h1,5421:6630773,21137015:983040,0,0 -k1,5421:8633553,21137015:201851 -k1,5421:10229355,21137015:201851 -k1,5421:12913053,21137015:201850 -k1,5421:15974240,21137015:201851 -k1,5421:18457399,21137015:201851 -k1,5421:19310678,21137015:201851 -k1,5421:22788674,21137015:201851 -k1,5421:26067440,21137015:201851 -k1,5421:27967328,21137015:201850 -k1,5421:30540927,21137015:201851 -k1,5421:31394206,21137015:201851 -k1,5422:32583029,21137015:0 -) -(1,5422:6630773,21978503:25952256,473825,7863 -k1,5422:32583029,21978503:24020910 -g1,5422:32583029,21978503 -) -v1,5424:6630773,23168969:0,393216,0 -(1,5458:6630773,38077450:25952256,15301697,196608 -g1,5458:6630773,38077450 -g1,5458:6630773,38077450 -g1,5458:6434165,38077450 -(1,5458:6434165,38077450:0,15301697,196608 -r1,5486:32779637,38077450:26345472,15498305,196608 -k1,5458:6434165,38077450:-26345472 -) -(1,5458:6434165,38077450:26345472,15301697,196608 -[1,5458:6630773,38077450:25952256,15105089,0 -(1,5426:6630773,23360858:25952256,388497,9436 -(1,5425:6630773,23360858:0,0,0 -g1,5425:6630773,23360858 -g1,5425:6630773,23360858 -g1,5425:6303093,23360858 -(1,5425:6303093,23360858:0,0,0 -) -g1,5425:6630773,23360858 -) -g1,5426:8211502,23360858 -g1,5426:8843794,23360858 -h1,5426:9159940,23360858:0,0,0 -k1,5426:32583028,23360858:23423088 -g1,5426:32583028,23360858 -) -(1,5435:6630773,24027036:25952256,404226,82312 -(1,5428:6630773,24027036:0,0,0 -g1,5428:6630773,24027036 -g1,5428:6630773,24027036 -g1,5428:6303093,24027036 -(1,5428:6303093,24027036:0,0,0 -) -g1,5428:6630773,24027036 -) -g1,5435:7579210,24027036 -g1,5435:7895356,24027036 -g1,5435:8211502,24027036 -g1,5435:8527648,24027036 -g1,5435:8843794,24027036 -g1,5435:9159940,24027036 -g1,5435:10740669,24027036 -g1,5435:12321398,24027036 -g1,5435:13902127,24027036 -k1,5435:13902127,24027036:0 -h1,5435:15166710,24027036:0,0,0 -k1,5435:32583030,24027036:17416320 -g1,5435:32583030,24027036 -) -(1,5435:6630773,24693214:25952256,404226,82312 -h1,5435:6630773,24693214:0,0,0 -g1,5435:7579210,24693214 -g1,5435:9159938,24693214 -g1,5435:9476084,24693214 -g1,5435:9792230,24693214 -g1,5435:10108376,24693214 -g1,5435:10740668,24693214 -g1,5435:11056814,24693214 -g1,5435:11372960,24693214 -g1,5435:11689106,24693214 -g1,5435:12321398,24693214 -g1,5435:12637544,24693214 -g1,5435:12953690,24693214 -g1,5435:13902127,24693214 -g1,5435:14218273,24693214 -g1,5435:14534419,24693214 -h1,5435:15166710,24693214:0,0,0 -k1,5435:32583030,24693214:17416320 -g1,5435:32583030,24693214 -) -(1,5435:6630773,25359392:25952256,404226,82312 -h1,5435:6630773,25359392:0,0,0 -g1,5435:7579210,25359392 -g1,5435:9159938,25359392 -g1,5435:9476084,25359392 -g1,5435:9792230,25359392 -g1,5435:10108376,25359392 -g1,5435:10740668,25359392 -g1,5435:11056814,25359392 -g1,5435:11372960,25359392 -g1,5435:11689106,25359392 -g1,5435:12321398,25359392 -g1,5435:12637544,25359392 -g1,5435:12953690,25359392 -g1,5435:13902127,25359392 -g1,5435:14218273,25359392 -g1,5435:14534419,25359392 -h1,5435:15166710,25359392:0,0,0 -k1,5435:32583030,25359392:17416320 -g1,5435:32583030,25359392 -) -(1,5435:6630773,26025570:25952256,404226,82312 -h1,5435:6630773,26025570:0,0,0 -g1,5435:7579210,26025570 -g1,5435:9159938,26025570 -g1,5435:9476084,26025570 -g1,5435:9792230,26025570 -g1,5435:10108376,26025570 -g1,5435:10740668,26025570 -g1,5435:11056814,26025570 -g1,5435:11372960,26025570 -g1,5435:12321397,26025570 -g1,5435:12637543,26025570 -g1,5435:12953689,26025570 -g1,5435:13902126,26025570 -g1,5435:14218272,26025570 -g1,5435:14534418,26025570 -h1,5435:15166709,26025570:0,0,0 -k1,5435:32583029,26025570:17416320 -g1,5435:32583029,26025570 -) -(1,5435:6630773,26691748:25952256,404226,82312 -h1,5435:6630773,26691748:0,0,0 -g1,5435:7579210,26691748 -g1,5435:9159938,26691748 -g1,5435:9476084,26691748 -g1,5435:9792230,26691748 -g1,5435:10108376,26691748 -g1,5435:10740668,26691748 -g1,5435:11056814,26691748 -g1,5435:11372960,26691748 -g1,5435:12321397,26691748 -g1,5435:12637543,26691748 -g1,5435:12953689,26691748 -g1,5435:13902126,26691748 -g1,5435:14218272,26691748 -g1,5435:14534418,26691748 -h1,5435:15166709,26691748:0,0,0 -k1,5435:32583029,26691748:17416320 -g1,5435:32583029,26691748 -) -(1,5435:6630773,27357926:25952256,404226,82312 -h1,5435:6630773,27357926:0,0,0 -g1,5435:7579210,27357926 -g1,5435:9159938,27357926 -g1,5435:9476084,27357926 -g1,5435:9792230,27357926 -g1,5435:10108376,27357926 -g1,5435:10740668,27357926 -g1,5435:11056814,27357926 -g1,5435:11372960,27357926 -g1,5435:12321397,27357926 -g1,5435:12637543,27357926 -g1,5435:12953689,27357926 -g1,5435:13902126,27357926 -g1,5435:14218272,27357926 -g1,5435:14534418,27357926 -h1,5435:15166709,27357926:0,0,0 -k1,5435:32583029,27357926:17416320 -g1,5435:32583029,27357926 -) -(1,5437:6630773,28679464:25952256,388497,9436 -(1,5436:6630773,28679464:0,0,0 -g1,5436:6630773,28679464 -g1,5436:6630773,28679464 -g1,5436:6303093,28679464 -(1,5436:6303093,28679464:0,0,0 -) -g1,5436:6630773,28679464 -) -g1,5437:8211502,28679464 -g1,5437:8843794,28679464 -h1,5437:9792232,28679464:0,0,0 -k1,5437:32583028,28679464:22790796 -g1,5437:32583028,28679464 -) -(1,5446:6630773,29345642:25952256,404226,82312 -(1,5439:6630773,29345642:0,0,0 -g1,5439:6630773,29345642 -g1,5439:6630773,29345642 -g1,5439:6303093,29345642 -(1,5439:6303093,29345642:0,0,0 -) -g1,5439:6630773,29345642 -) -g1,5446:7579210,29345642 -g1,5446:7895356,29345642 -g1,5446:8211502,29345642 -g1,5446:8527648,29345642 -g1,5446:8843794,29345642 -g1,5446:9159940,29345642 -g1,5446:10740669,29345642 -g1,5446:12321398,29345642 -g1,5446:13902127,29345642 -k1,5446:13902127,29345642:0 -h1,5446:15166710,29345642:0,0,0 -k1,5446:32583030,29345642:17416320 -g1,5446:32583030,29345642 -) -(1,5446:6630773,30011820:25952256,404226,82312 -h1,5446:6630773,30011820:0,0,0 -g1,5446:7579210,30011820 -g1,5446:9159938,30011820 -g1,5446:9476084,30011820 -g1,5446:9792230,30011820 -g1,5446:10108376,30011820 -g1,5446:10740668,30011820 -g1,5446:11056814,30011820 -g1,5446:11372960,30011820 -g1,5446:11689106,30011820 -g1,5446:12321398,30011820 -g1,5446:12637544,30011820 -g1,5446:12953690,30011820 -g1,5446:13269836,30011820 -g1,5446:13902128,30011820 -g1,5446:14218274,30011820 -g1,5446:14534420,30011820 -h1,5446:15166711,30011820:0,0,0 -k1,5446:32583029,30011820:17416318 -g1,5446:32583029,30011820 -) -(1,5446:6630773,30677998:25952256,404226,82312 -h1,5446:6630773,30677998:0,0,0 -g1,5446:7579210,30677998 -g1,5446:9159938,30677998 -g1,5446:9476084,30677998 -g1,5446:9792230,30677998 -g1,5446:10108376,30677998 -g1,5446:10740668,30677998 -g1,5446:11056814,30677998 -g1,5446:11372960,30677998 -g1,5446:11689106,30677998 -g1,5446:12321398,30677998 -g1,5446:12637544,30677998 -g1,5446:12953690,30677998 -g1,5446:13902127,30677998 -g1,5446:14218273,30677998 -g1,5446:14534419,30677998 -g1,5446:14850565,30677998 -h1,5446:15166711,30677998:0,0,0 -k1,5446:32583029,30677998:17416318 -g1,5446:32583029,30677998 -) -(1,5446:6630773,31344176:25952256,404226,82312 -h1,5446:6630773,31344176:0,0,0 -g1,5446:7579210,31344176 -g1,5446:9159938,31344176 -g1,5446:9476084,31344176 -g1,5446:9792230,31344176 -g1,5446:10108376,31344176 -g1,5446:10740668,31344176 -g1,5446:11056814,31344176 -g1,5446:11372960,31344176 -g1,5446:11689106,31344176 -g1,5446:12321398,31344176 -g1,5446:12637544,31344176 -g1,5446:12953690,31344176 -g1,5446:13269836,31344176 -g1,5446:13902128,31344176 -g1,5446:14218274,31344176 -g1,5446:14534420,31344176 -h1,5446:15166711,31344176:0,0,0 -k1,5446:32583029,31344176:17416318 -g1,5446:32583029,31344176 -) -(1,5446:6630773,32010354:25952256,404226,82312 -h1,5446:6630773,32010354:0,0,0 -g1,5446:7579210,32010354 -g1,5446:9159938,32010354 -g1,5446:9476084,32010354 -g1,5446:9792230,32010354 -g1,5446:10108376,32010354 -g1,5446:10740668,32010354 -g1,5446:11056814,32010354 -g1,5446:11372960,32010354 -g1,5446:11689106,32010354 -g1,5446:12321398,32010354 -g1,5446:12637544,32010354 -g1,5446:12953690,32010354 -g1,5446:13902127,32010354 -g1,5446:14218273,32010354 -g1,5446:14534419,32010354 -g1,5446:14850565,32010354 -h1,5446:15166711,32010354:0,0,0 -k1,5446:32583029,32010354:17416318 -g1,5446:32583029,32010354 -) -(1,5446:6630773,32676532:25952256,404226,82312 -h1,5446:6630773,32676532:0,0,0 -g1,5446:7579210,32676532 -g1,5446:9159938,32676532 -g1,5446:9476084,32676532 -g1,5446:9792230,32676532 -g1,5446:10108376,32676532 -g1,5446:10740668,32676532 -g1,5446:11056814,32676532 -g1,5446:11372960,32676532 -g1,5446:12321397,32676532 -g1,5446:12637543,32676532 -g1,5446:12953689,32676532 -g1,5446:13269835,32676532 -g1,5446:13902127,32676532 -g1,5446:14218273,32676532 -g1,5446:14534419,32676532 -h1,5446:15166710,32676532:0,0,0 -k1,5446:32583030,32676532:17416320 -g1,5446:32583030,32676532 -) -(1,5448:6630773,33998070:25952256,388497,9436 -(1,5447:6630773,33998070:0,0,0 -g1,5447:6630773,33998070 -g1,5447:6630773,33998070 -g1,5447:6303093,33998070 -(1,5447:6303093,33998070:0,0,0 -) -g1,5447:6630773,33998070 -) -g1,5448:8211502,33998070 -g1,5448:8843794,33998070 -h1,5448:9792232,33998070:0,0,0 -k1,5448:32583028,33998070:22790796 -g1,5448:32583028,33998070 -) -(1,5457:6630773,34664248:25952256,404226,82312 -(1,5450:6630773,34664248:0,0,0 -g1,5450:6630773,34664248 -g1,5450:6630773,34664248 -g1,5450:6303093,34664248 -(1,5450:6303093,34664248:0,0,0 -) -g1,5450:6630773,34664248 -) -g1,5457:7579210,34664248 -g1,5457:7895356,34664248 -g1,5457:8211502,34664248 -g1,5457:8527648,34664248 -g1,5457:8843794,34664248 -g1,5457:9159940,34664248 -g1,5457:10740669,34664248 -g1,5457:12321398,34664248 -g1,5457:13902127,34664248 -k1,5457:13902127,34664248:0 -h1,5457:15166710,34664248:0,0,0 -k1,5457:32583030,34664248:17416320 -g1,5457:32583030,34664248 -) -(1,5457:6630773,35330426:25952256,404226,82312 -h1,5457:6630773,35330426:0,0,0 -g1,5457:7579210,35330426 -g1,5457:9159938,35330426 -g1,5457:9476084,35330426 -g1,5457:9792230,35330426 -g1,5457:10108376,35330426 -g1,5457:10740668,35330426 -g1,5457:11056814,35330426 -g1,5457:11372960,35330426 -g1,5457:11689106,35330426 -g1,5457:12321398,35330426 -g1,5457:12637544,35330426 -g1,5457:12953690,35330426 -g1,5457:13902127,35330426 -g1,5457:14218273,35330426 -g1,5457:14534419,35330426 -g1,5457:14850565,35330426 -h1,5457:15166711,35330426:0,0,0 -k1,5457:32583029,35330426:17416318 -g1,5457:32583029,35330426 -) -(1,5457:6630773,35996604:25952256,404226,82312 -h1,5457:6630773,35996604:0,0,0 -g1,5457:7579210,35996604 -g1,5457:9159938,35996604 -g1,5457:9476084,35996604 -g1,5457:9792230,35996604 -g1,5457:10108376,35996604 -g1,5457:10740668,35996604 -g1,5457:11056814,35996604 -g1,5457:11372960,35996604 -g1,5457:11689106,35996604 -g1,5457:12321398,35996604 -g1,5457:12637544,35996604 -g1,5457:12953690,35996604 -g1,5457:13269836,35996604 -g1,5457:13902128,35996604 -g1,5457:14218274,35996604 -g1,5457:14534420,35996604 -h1,5457:15166711,35996604:0,0,0 -k1,5457:32583029,35996604:17416318 -g1,5457:32583029,35996604 -) -(1,5457:6630773,36662782:25952256,404226,82312 -h1,5457:6630773,36662782:0,0,0 -g1,5457:7579210,36662782 -g1,5457:9159938,36662782 -g1,5457:9476084,36662782 -g1,5457:9792230,36662782 -g1,5457:10108376,36662782 -g1,5457:10740668,36662782 -g1,5457:11056814,36662782 -g1,5457:11372960,36662782 -g1,5457:11689106,36662782 -g1,5457:12321398,36662782 -g1,5457:12637544,36662782 -g1,5457:12953690,36662782 -g1,5457:13902127,36662782 -g1,5457:14218273,36662782 -g1,5457:14534419,36662782 -g1,5457:14850565,36662782 -h1,5457:15166711,36662782:0,0,0 -k1,5457:32583029,36662782:17416318 -g1,5457:32583029,36662782 -) -(1,5457:6630773,37328960:25952256,404226,82312 -h1,5457:6630773,37328960:0,0,0 -g1,5457:7579210,37328960 -g1,5457:9159938,37328960 -g1,5457:9476084,37328960 -g1,5457:9792230,37328960 -g1,5457:10108376,37328960 -g1,5457:10740668,37328960 -g1,5457:11056814,37328960 -g1,5457:11372960,37328960 -g1,5457:11689106,37328960 -g1,5457:12321398,37328960 -g1,5457:12637544,37328960 -g1,5457:12953690,37328960 -g1,5457:13269836,37328960 -g1,5457:13902128,37328960 -g1,5457:14218274,37328960 -g1,5457:14534420,37328960 -h1,5457:15166711,37328960:0,0,0 -k1,5457:32583029,37328960:17416318 -g1,5457:32583029,37328960 -) -(1,5457:6630773,37995138:25952256,404226,82312 -h1,5457:6630773,37995138:0,0,0 -g1,5457:7579210,37995138 -g1,5457:9159938,37995138 -g1,5457:9476084,37995138 -g1,5457:9792230,37995138 -g1,5457:10108376,37995138 -g1,5457:10740668,37995138 -g1,5457:11056814,37995138 -g1,5457:11372960,37995138 -g1,5457:11689106,37995138 -g1,5457:12321398,37995138 -g1,5457:12637544,37995138 -g1,5457:12953690,37995138 -g1,5457:13902127,37995138 -g1,5457:14218273,37995138 -g1,5457:14534419,37995138 -g1,5457:14850565,37995138 -h1,5457:15166711,37995138:0,0,0 -k1,5457:32583029,37995138:17416318 -g1,5457:32583029,37995138 -) -] -) -g1,5458:32583029,38077450 -g1,5458:6630773,38077450 -g1,5458:6630773,38077450 -g1,5458:32583029,38077450 -g1,5458:32583029,38077450 -) -h1,5458:6630773,38274058:0,0,0 -(1,5462:6630773,39639834:25952256,505283,126483 -h1,5461:6630773,39639834:983040,0,0 -k1,5461:8467767,39639834:226119 -k1,5461:9712970,39639834:226118 -k1,5461:12930808,39639834:226119 -k1,5461:15012251,39639834:226119 -k1,5461:16632321,39639834:226119 -k1,5461:17877524,39639834:226118 -k1,5461:19824618,39639834:226119 -k1,5461:24532744,39639834:226119 -k1,5461:27505477,39639834:226119 -(1,5461:27505477,39639834:0,414482,115847 -r1,5486:27863743,39639834:358266,530329,115847 -k1,5461:27505477,39639834:-358266 -) -(1,5461:27505477,39639834:358266,414482,115847 -k1,5461:27505477,39639834:3277 -h1,5461:27860466,39639834:0,411205,112570 -) -k1,5461:28263531,39639834:226118 -k1,5461:29508735,39639834:226119 -k1,5461:32583029,39639834:0 -) -(1,5462:6630773,40481322:25952256,505283,126483 -k1,5461:9978769,40481322:257973 -k1,5461:10768240,40481322:257974 -k1,5461:12092484,40481322:257973 -k1,5461:12706317,40481322:257973 -k1,5461:15051613,40481322:257974 -k1,5461:18012946,40481322:257973 -k1,5461:19343089,40481322:257974 -k1,5461:22101916,40481322:257973 -k1,5461:23378974,40481322:257973 -k1,5461:26496939,40481322:257974 -k1,5461:29390115,40481322:257973 -k1,5461:32583029,40481322:0 -) -(1,5462:6630773,41322810:25952256,513147,134348 -k1,5461:9779188,41322810:279249 -k1,5461:10717729,41322810:279249 -k1,5461:12016062,41322810:279248 -k1,5461:14382633,41322810:279249 -k1,5461:15853327,41322810:279249 -k1,5461:18614424,41322810:279249 -k1,5461:22085276,41322810:279249 -k1,5461:23555969,41322810:279248 -k1,5461:26861015,41322810:279249 -k1,5461:31563944,41322810:279249 -k1,5461:32583029,41322810:0 -) -(1,5462:6630773,42164298:25952256,513147,134348 -k1,5461:10283312,42164298:247944 -k1,5461:11190549,42164298:247945 -k1,5461:13525815,42164298:247944 -k1,5461:16100943,42164298:247945 -k1,5461:17340447,42164298:247944 -k1,5461:20546032,42164298:247945 -k1,5461:22824937,42164298:247944 -k1,5461:25400064,42164298:247944 -k1,5461:27258229,42164298:247945 -k1,5461:28525258,42164298:247944 -k1,5461:30359174,42164298:247945 -k1,5461:31554769,42164298:247944 -k1,5462:32583029,42164298:0 -) -(1,5462:6630773,43005786:25952256,505283,126483 -k1,5461:9432895,43005786:212795 -k1,5461:11564585,43005786:212796 -k1,5461:13244076,43005786:212795 -k1,5461:16429585,43005786:212796 -k1,5461:17633940,43005786:212795 -k1,5461:20753912,43005786:212795 -k1,5461:22008730,43005786:212796 -k1,5461:25056612,43005786:212795 -k1,5461:27356730,43005786:212796 -k1,5461:32051532,43005786:212795 -k1,5461:32583029,43005786:0 -) -(1,5462:6630773,43847274:25952256,505283,126483 -g1,5461:9782399,43847274 -g1,5461:10743156,43847274 -g1,5461:13688999,43847274 -(1,5461:13688999,43847274:0,435480,115847 -r1,5486:14750688,43847274:1061689,551327,115847 -k1,5461:13688999,43847274:-1061689 -) -(1,5461:13688999,43847274:1061689,435480,115847 -k1,5461:13688999,43847274:3277 -h1,5461:14747411,43847274:0,411205,112570 -) -g1,5461:15123587,43847274 -k1,5462:32583029,43847274:17459442 -g1,5462:32583029,43847274 -) -v1,5464:6630773,45037740:0,393216,0 -] -(1,5486:32583029,45706769:0,0,0 -g1,5486:32583029,45706769 -) -) -] -(1,5486:6630773,47279633:25952256,0,0 -h1,5486:6630773,47279633:25952256,0,0 -) -] -(1,5486:4262630,4025873:0,0,0 -[1,5486:-473656,4025873:0,0,0 -(1,5486:-473656,-710413:0,0,0 -(1,5486:-473656,-710413:0,0,0 -g1,5486:-473656,-710413 -) -g1,5486:-473656,-710413 -) -] -) -] -!28815 -}94 -Input:780:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:781:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:782:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:783:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:784:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:785:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:786:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:787:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:788:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:789:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:790:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:791:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:792:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1220 -{95 -[1,5514:4262630,47279633:28320399,43253760,0 -(1,5514:4262630,4025873:0,0,0 -[1,5514:-473656,4025873:0,0,0 -(1,5514:-473656,-710413:0,0,0 -(1,5514:-473656,-644877:0,0,0 -k1,5514:-473656,-644877:-65536 -) -(1,5514:-473656,4736287:0,0,0 -k1,5514:-473656,4736287:5209943 -) -g1,5514:-473656,-710413 +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 ) ] ) -[1,5514:6630773,47279633:25952256,43253760,0 -[1,5514:6630773,4812305:25952256,786432,0 -(1,5514:6630773,4812305:25952256,505283,11795 -(1,5514:6630773,4812305:25952256,505283,11795 -g1,5514:3078558,4812305 -[1,5514:3078558,4812305:0,0,0 -(1,5514:3078558,2439708:0,1703936,0 -k1,5514:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,5514:2537886,2439708:1179648,16384,0 +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,4695:37855564,49800853:1179648,16384,0 ) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,5514:3078558,1915420:16384,1179648,0 ) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 +k1,4695:3078556,49800853:-34777008 ) ] +g1,4695:6630773,4812305 +k1,4695:22348274,4812305:14920583 +g1,4695:23970945,4812305 +g1,4695:24793421,4812305 +g1,4695:27528893,4812305 +g1,4695:28938572,4812305 +) +) +] +[1,4695:6630773,45706769:25952256,40108032,0 +(1,4695:6630773,45706769:25952256,40108032,0 +(1,4695:6630773,45706769:0,0,0 +g1,4695:6630773,45706769 +) +[1,4695:6630773,45706769:25952256,40108032,0 +v1,4637:6630773,6254097:0,393216,0 +(1,4637:6630773,19494320:25952256,13633439,0 +g1,4637:6630773,19494320 +g1,4637:6237557,19494320 +r1,4695:6368629,19494320:131072,13633439,0 +g1,4637:6567858,19494320 +g1,4637:6764466,19494320 +[1,4637:6764466,19494320:25818563,13633439,0 +v1,4596:6764466,6254097:0,393216,0 +(1,4604:6764466,7989315:25818563,2128434,196608 +g1,4604:6764466,7989315 +g1,4604:6764466,7989315 +g1,4604:6567858,7989315 +(1,4604:6567858,7989315:0,2128434,196608 +r1,4695:32779637,7989315:26211779,2325042,196608 +k1,4604:6567857,7989315:-26211780 +) +(1,4604:6567858,7989315:26211779,2128434,196608 +[1,4604:6764466,7989315:25818563,1931826,0 +(1,4598:6764466,6481928:25818563,424439,106246 +(1,4597:6764466,6481928:0,0,0 +g1,4597:6764466,6481928 +g1,4597:6764466,6481928 +g1,4597:6436786,6481928 +(1,4597:6436786,6481928:0,0,0 +) +g1,4597:6764466,6481928 +) +h1,4598:11411821,6481928:0,0,0 +k1,4598:32583029,6481928:21171208 +g1,4598:32583029,6481928 +) +(1,4603:6764466,7297855:25818563,398014,0 +(1,4600:6764466,7297855:0,0,0 +g1,4600:6764466,7297855 +g1,4600:6764466,7297855 +g1,4600:6436786,7297855 +(1,4600:6436786,7297855:0,0,0 +) +g1,4600:6764466,7297855 +) +g1,4603:7760328,7297855 +g1,4603:8092282,7297855 +g1,4603:8424236,7297855 +g1,4603:8756190,7297855 +g1,4603:9088144,7297855 +h1,4603:9420098,7297855:0,0,0 +k1,4603:32583030,7297855:23162932 +g1,4603:32583030,7297855 +) +(1,4603:6764466,7982710:25818563,424439,6605 +h1,4603:6764466,7982710:0,0,0 +g1,4603:7760328,7982710 +h1,4603:9420098,7982710:0,0,0 +k1,4603:32583030,7982710:23162932 +g1,4603:32583030,7982710 +) +] +) +g1,4604:32583029,7989315 +g1,4604:6764466,7989315 +g1,4604:6764466,7989315 +g1,4604:32583029,7989315 +g1,4604:32583029,7989315 +) +h1,4604:6764466,8185923:0,0,0 +(1,4608:6764466,9051003:25818563,513147,134348 +h1,4607:6764466,9051003:983040,0,0 +k1,4607:9171653,9051003:227460 +k1,4607:12138518,9051003:227460 +k1,4607:14343856,9051003:227461 +k1,4607:15675598,9051003:227460 +k1,4607:16650824,9051003:227460 +k1,4607:17537576,9051003:227460 +k1,4607:18120897,9051003:227461 +k1,4607:21110700,9051003:227460 +k1,4607:23351426,9051003:227460 +k1,4607:25021333,9051003:227460 +k1,4607:26267879,9051003:227461 +k1,4607:29012577,9051003:227460 +k1,4607:31391584,9051003:227460 +k1,4607:32583029,9051003:0 +) +(1,4608:6764466,9916083:25818563,513147,134348 +g1,4607:7982780,9916083 +g1,4607:10960736,9916083 +g1,4607:12840308,9916083 +g1,4607:13571034,9916083 +g1,4607:14126123,9916083 +g1,4607:15608547,9916083 +g1,4607:17785653,9916083 +g1,4607:18644174,9916083 +g1,4607:19862488,9916083 +g1,4607:21715190,9916083 +g1,4607:23927685,9916083 +g1,4607:24813076,9916083 +g1,4607:26031390,9916083 +g1,4607:28970024,9916083 +k1,4608:32583029,9916083:1461458 +g1,4608:32583029,9916083 +) +v1,4610:6764466,10600938:0,393216,0 +(1,4619:6764466,13021011:25818563,2813289,196608 +g1,4619:6764466,13021011 +g1,4619:6764466,13021011 +g1,4619:6567858,13021011 +(1,4619:6567858,13021011:0,2813289,196608 +r1,4695:32779637,13021011:26211779,3009897,196608 +k1,4619:6567857,13021011:-26211780 +) +(1,4619:6567858,13021011:26211779,2813289,196608 +[1,4619:6764466,13021011:25818563,2616681,0 +(1,4612:6764466,10828769:25818563,424439,106246 +(1,4611:6764466,10828769:0,0,0 +g1,4611:6764466,10828769 +g1,4611:6764466,10828769 +g1,4611:6436786,10828769 +(1,4611:6436786,10828769:0,0,0 +) +g1,4611:6764466,10828769 +) +g1,4612:10084005,10828769 +g1,4612:11079867,10828769 +h1,4612:16391130,10828769:0,0,0 +k1,4612:32583029,10828769:16191899 +g1,4612:32583029,10828769 +) +(1,4613:6764466,11513624:25818563,388105,6605 +h1,4613:6764466,11513624:0,0,0 +h1,4613:9752051,11513624:0,0,0 +k1,4613:32583029,11513624:22830978 +g1,4613:32583029,11513624 +) +(1,4618:6764466,12329551:25818563,398014,8257 +(1,4615:6764466,12329551:0,0,0 +g1,4615:6764466,12329551 +g1,4615:6764466,12329551 +g1,4615:6436786,12329551 +(1,4615:6436786,12329551:0,0,0 +) +g1,4615:6764466,12329551 +) +g1,4618:7760328,12329551 +g1,4618:8092282,12329551 +g1,4618:8424236,12329551 +g1,4618:8756190,12329551 +g1,4618:9088144,12329551 +g1,4618:9420098,12329551 +g1,4618:10084006,12329551 +g1,4618:10415960,12329551 +g1,4618:10747914,12329551 +g1,4618:11079868,12329551 +g1,4618:11411822,12329551 +g1,4618:11743776,12329551 +g1,4618:12407684,12329551 +g1,4618:12739638,12329551 +g1,4618:13071592,12329551 +g1,4618:13403546,12329551 +g1,4618:13735500,12329551 +g1,4618:14067454,12329551 +g1,4618:14731362,12329551 +g1,4618:15063316,12329551 +g1,4618:15395270,12329551 +g1,4618:15727224,12329551 +g1,4618:16059178,12329551 +g1,4618:16391132,12329551 +g1,4618:17055040,12329551 +g1,4618:17386994,12329551 +g1,4618:17718948,12329551 +g1,4618:18050902,12329551 +g1,4618:18382856,12329551 +g1,4618:18714810,12329551 +g1,4618:19378718,12329551 +g1,4618:19710672,12329551 +g1,4618:20042626,12329551 +g1,4618:20374580,12329551 +g1,4618:20706534,12329551 +g1,4618:21038488,12329551 +g1,4618:21702396,12329551 +g1,4618:22034350,12329551 +g1,4618:22366304,12329551 +g1,4618:22698258,12329551 +g1,4618:23030212,12329551 +g1,4618:23362166,12329551 +g1,4618:24026074,12329551 +g1,4618:24358028,12329551 +g1,4618:24689982,12329551 +g1,4618:25021936,12329551 +g1,4618:25353890,12329551 +g1,4618:25685844,12329551 +g1,4618:26349752,12329551 +g1,4618:26681706,12329551 +g1,4618:27013660,12329551 +g1,4618:27345614,12329551 +g1,4618:27677568,12329551 +g1,4618:28009522,12329551 +h1,4618:28341476,12329551:0,0,0 +k1,4618:32583029,12329551:4241553 +g1,4618:32583029,12329551 +) +(1,4618:6764466,13014406:25818563,424439,6605 +h1,4618:6764466,13014406:0,0,0 +g1,4618:7760328,13014406 +g1,4618:8092282,13014406 +g1,4618:10084006,13014406 +g1,4618:12407684,13014406 +g1,4618:12739638,13014406 +g1,4618:14731362,13014406 +g1,4618:17055040,13014406 +g1,4618:19378718,13014406 +g1,4618:19710672,13014406 +g1,4618:21702396,13014406 +g1,4618:22034350,13014406 +g1,4618:24026074,13014406 +g1,4618:26349752,13014406 +h1,4618:28341476,13014406:0,0,0 +k1,4618:32583029,13014406:4241553 +g1,4618:32583029,13014406 +) +] +) +g1,4619:32583029,13021011 +g1,4619:6764466,13021011 +g1,4619:6764466,13021011 +g1,4619:32583029,13021011 +g1,4619:32583029,13021011 +) +h1,4619:6764466,13217619:0,0,0 +(1,4623:6764466,14082699:25818563,513147,126483 +h1,4622:6764466,14082699:983040,0,0 +k1,4622:9965407,14082699:299007 +(1,4622:9965407,14082699:0,414482,115847 +r1,4695:13137367,14082699:3171960,530329,115847 +k1,4622:9965407,14082699:-3171960 +) +(1,4622:9965407,14082699:3171960,414482,115847 +k1,4622:9965407,14082699:3277 +h1,4622:13134090,14082699:0,411205,112570 +) +k1,4622:13436373,14082699:299006 +k1,4622:14266877,14082699:299007 +k1,4622:14921743,14082699:299006 +k1,4622:17379506,14082699:299007 +k1,4622:19830059,14082699:299006 +k1,4622:21696687,14082699:299007 +k1,4622:23881164,14082699:299006 +k1,4622:25048523,14082699:299007 +k1,4622:26479991,14082699:299006 +k1,4622:30083979,14082699:299007 +k1,4622:31931601,14082699:299006 +k1,4622:32583029,14082699:0 +) +(1,4623:6764466,14947779:25818563,505283,7863 +g1,4622:9318404,14947779 +g1,4622:10536718,14947779 +k1,4623:32583029,14947779:19804324 +g1,4623:32583029,14947779 +) +v1,4625:6764466,15632634:0,393216,0 +(1,4633:6764466,17441069:25818563,2201651,196608 +g1,4633:6764466,17441069 +g1,4633:6764466,17441069 +g1,4633:6567858,17441069 +(1,4633:6567858,17441069:0,2201651,196608 +r1,4695:32779637,17441069:26211779,2398259,196608 +k1,4633:6567857,17441069:-26211780 +) +(1,4633:6567858,17441069:26211779,2201651,196608 +[1,4633:6764466,17441069:25818563,2005043,0 +(1,4627:6764466,15860465:25818563,424439,79822 +(1,4626:6764466,15860465:0,0,0 +g1,4626:6764466,15860465 +g1,4626:6764466,15860465 +g1,4626:6436786,15860465 +(1,4626:6436786,15860465:0,0,0 +) +g1,4626:6764466,15860465 +) +g1,4627:10084005,15860465 +g1,4627:11079867,15860465 +k1,4627:11079867,15860465:0 +h1,4627:16723084,15860465:0,0,0 +k1,4627:32583029,15860465:15859945 +g1,4627:32583029,15860465 +) +(1,4628:6764466,16545320:25818563,388105,6605 +h1,4628:6764466,16545320:0,0,0 +h1,4628:9752051,16545320:0,0,0 +k1,4628:32583029,16545320:22830978 +g1,4628:32583029,16545320 +) +(1,4632:6764466,17361247:25818563,424439,79822 +(1,4630:6764466,17361247:0,0,0 +g1,4630:6764466,17361247 +g1,4630:6764466,17361247 +g1,4630:6436786,17361247 +(1,4630:6436786,17361247:0,0,0 +) +g1,4630:6764466,17361247 +) +g1,4632:7760328,17361247 +g1,4632:9088144,17361247 +g1,4632:11079868,17361247 +g1,4632:11411822,17361247 +g1,4632:13735500,17361247 +g1,4632:15727224,17361247 +g1,4632:16059178,17361247 +g1,4632:18382856,17361247 +g1,4632:20706534,17361247 +g1,4632:22698258,17361247 +g1,4632:23030212,17361247 +g1,4632:25021936,17361247 +g1,4632:25353890,17361247 +g1,4632:27677568,17361247 +h1,4632:29669292,17361247:0,0,0 +k1,4632:32583029,17361247:2913737 +g1,4632:32583029,17361247 +) +] +) +g1,4633:32583029,17441069 +g1,4633:6764466,17441069 +g1,4633:6764466,17441069 +g1,4633:32583029,17441069 +g1,4633:32583029,17441069 +) +h1,4633:6764466,17637677:0,0,0 +(1,4637:6764466,18502757:25818563,505283,102891 +h1,4636:6764466,18502757:983040,0,0 +k1,4636:8419250,18502757:201851 +k1,4636:9152598,18502757:201851 +k1,4636:11004646,18502757:201851 +k1,4636:13983912,18502757:201850 +k1,4636:14837191,18502757:201851 +k1,4636:16131527,18502757:201851 +k1,4636:18492134,18502757:201851 +k1,4636:21647693,18502757:201851 +k1,4636:23243495,18502757:201851 +k1,4636:24769173,18502757:201851 +k1,4636:26413470,18502757:201850 +k1,4636:28009272,18502757:201851 +k1,4636:30692971,18502757:201851 +k1,4636:31966991,18502757:201851 +k1,4637:32583029,18502757:0 +) +(1,4637:6764466,19367837:25818563,505283,126483 +g1,4636:7552208,19367837 +g1,4636:8367475,19367837 +g1,4636:10033400,19367837 +g1,4636:11930011,19367837 +g1,4636:12587337,19367837 +g1,4636:13318063,19367837 +g1,4636:16147252,19367837 +g1,4636:16997909,19367837 +g1,4636:18289623,19367837 +g1,4636:19955548,19367837 +g1,4636:22774906,19367837 +g1,4636:26149354,19367837 +g1,4636:28597779,19367837 +g1,4636:29988453,19367837 +k1,4637:32583029,19367837:352589 +g1,4637:32583029,19367837 +) +] +g1,4637:32583029,19494320 +) +h1,4637:6630773,19494320:0,0,0 +(1,4640:6630773,20359400:25952256,513147,134348 +h1,4639:6630773,20359400:983040,0,0 +k1,4639:10563538,20359400:198524 +k1,4639:11866343,20359400:198523 +k1,4639:12812633,20359400:198524 +k1,4639:14524382,20359400:198523 +k1,4639:15532276,20359400:198524 +k1,4639:17586779,20359400:198523 +k1,4639:19084882,20359400:198524 +k1,4639:19942697,20359400:198523 +k1,4639:20911924,20359400:198524 +k1,4639:24756215,20359400:198523 +k1,4639:28568394,20359400:198524 +k1,4639:29394752,20359400:198523 +k1,4639:30612361,20359400:198524 +k1,4639:32583029,20359400:0 +) +(1,4640:6630773,21224480:25952256,513147,134348 +k1,4639:8947307,21224480:274432 +k1,4639:10090091,21224480:274432 +k1,4639:11457008,21224480:274432 +k1,4639:12750524,21224480:274431 +k1,4639:16239497,21224480:274432 +k1,4639:19260543,21224480:274432 +k1,4639:20344345,21224480:274432 +k1,4639:21637862,21224480:274432 +k1,4639:24805709,21224480:274432 +k1,4639:26379719,21224480:274431 +k1,4639:27313443,21224480:274432 +k1,4639:28606960,21224480:274432 +k1,4639:32583029,21224480:0 +) +(1,4640:6630773,22089560:25952256,505283,126483 +k1,4639:7561233,22089560:279032 +k1,4639:10138613,22089560:279032 +k1,4639:12428290,22089560:279032 +k1,4639:14082923,22089560:279032 +k1,4639:14974717,22089560:279032 +k1,4639:17842421,22089560:279032 +k1,4639:21065985,22089560:279031 +k1,4639:21961055,22089560:279032 +k1,4639:23259172,22089560:279032 +k1,4639:25689751,22089560:279032 +k1,4639:27349627,22089560:279032 +k1,4639:28965593,22089560:279032 +k1,4639:30631367,22089560:279032 +k1,4639:32583029,22089560:0 +) +(1,4640:6630773,22954640:25952256,513147,134348 +k1,4639:9420553,22954640:290237 +k1,4639:10323552,22954640:290237 +k1,4639:11919922,22954640:290237 +k1,4639:13961281,22954640:290237 +k1,4639:15323687,22954640:290237 +k1,4639:16072021,22954640:290237 +k1,4639:16893755,22954640:290237 +k1,4639:18412792,22954640:290237 +k1,4639:19058889,22954640:290237 +k1,4639:21473803,22954640:290237 +k1,4639:24836368,22954640:290237 +k1,4639:25785897,22954640:290237 +k1,4639:27095219,22954640:290237 +k1,4639:28894095,22954640:290237 +k1,4639:29843624,22954640:290237 +k1,4639:32583029,22954640:0 +) +(1,4640:6630773,23819720:25952256,513147,126483 +k1,4639:9944473,23819720:223677 +k1,4639:12197146,23819720:223678 +k1,4639:12890716,23819720:223677 +k1,4639:15214823,23819720:223678 +k1,4639:17968190,23819720:223677 +k1,4639:19210953,23819720:223678 +k1,4639:20555296,23819720:223677 +k1,4639:24380176,23819720:223677 +k1,4639:25263146,23819720:223678 +k1,4639:26505908,23819720:223677 +(1,4639:26505908,23819720:0,414482,115847 +r1,4695:27215886,23819720:709978,530329,115847 +k1,4639:26505908,23819720:-709978 +) +(1,4639:26505908,23819720:709978,414482,115847 +k1,4639:26505908,23819720:3277 +h1,4639:27212609,23819720:0,411205,112570 +) +k1,4639:27439564,23819720:223678 +k1,4639:30409855,23819720:223677 +k1,4639:32583029,23819720:0 +) +(1,4640:6630773,24684800:25952256,513147,134348 +k1,4639:7437621,24684800:190810 +k1,4639:9095128,24684800:190811 +k1,4639:10305023,24684800:190810 +k1,4639:13389249,24684800:190811 +k1,4639:14879638,24684800:190810 +k1,4639:16261893,24684800:190810 +k1,4639:17471789,24684800:190811 +k1,4639:21017387,24684800:190810 +k1,4639:22507776,24684800:190810 +k1,4639:24436602,24684800:190811 +k1,4639:26078379,24684800:190810 +k1,4639:29330377,24684800:190811 +k1,4639:31563944,24684800:190810 +k1,4639:32583029,24684800:0 +) +(1,4640:6630773,25549880:25952256,513147,134348 +k1,4639:10516907,25549880:240366 +k1,4639:12440237,25549880:240365 +k1,4639:14516922,25549880:240366 +k1,4639:15586318,25549880:240366 +k1,4639:17542416,25549880:240365 +k1,4639:18801867,25549880:240366 +k1,4639:21613210,25549880:240366 +k1,4639:22505004,25549880:240366 +k1,4639:23764454,25549880:240365 +k1,4639:26312998,25549880:240366 +k1,4639:28423762,25549880:240366 +k1,4639:29315555,25549880:240365 +k1,4639:31714677,25549880:240366 +k1,4639:32583029,25549880:0 +) +(1,4640:6630773,26414960:25952256,513147,126483 +g1,4639:7922487,26414960 +g1,4639:10858499,26414960 +g1,4639:13365906,26414960 +g1,4639:14959086,26414960 +g1,4639:17920658,26414960 +g1,4639:20188203,26414960 +g1,4639:21335083,26414960 +g1,4639:22985934,26414960 +g1,4639:23844455,26414960 +g1,4639:25740411,26414960 +k1,4640:32583029,26414960:3677229 +g1,4640:32583029,26414960 +) +v1,4642:6630773,27099815:0,393216,0 +(1,4689:6630773,43214699:25952256,16508100,196608 +g1,4689:6630773,43214699 +g1,4689:6630773,43214699 +g1,4689:6434165,43214699 +(1,4689:6434165,43214699:0,16508100,196608 +r1,4695:32779637,43214699:26345472,16704708,196608 +k1,4689:6434165,43214699:-26345472 +) +(1,4689:6434165,43214699:26345472,16508100,196608 +[1,4689:6630773,43214699:25952256,16311492,0 +(1,4644:6630773,27311130:25952256,407923,9908 +(1,4643:6630773,27311130:0,0,0 +g1,4643:6630773,27311130 +g1,4643:6630773,27311130 +g1,4643:6303093,27311130 +(1,4643:6303093,27311130:0,0,0 +) +g1,4643:6630773,27311130 +) +g1,4644:8290543,27311130 +g1,4644:9286405,27311130 +h1,4644:10614221,27311130:0,0,0 +k1,4644:32583029,27311130:21968808 +g1,4644:32583029,27311130 +) +(1,4645:6630773,27995985:25952256,407923,6605 +h1,4645:6630773,27995985:0,0,0 +h1,4645:7958589,27995985:0,0,0 +k1,4645:32583029,27995985:24624440 +g1,4645:32583029,27995985 +) +(1,4649:6630773,28811912:25952256,424439,79822 +(1,4647:6630773,28811912:0,0,0 +g1,4647:6630773,28811912 +g1,4647:6630773,28811912 +g1,4647:6303093,28811912 +(1,4647:6303093,28811912:0,0,0 +) +g1,4647:6630773,28811912 +) +g1,4649:7626635,28811912 +g1,4649:7958589,28811912 +g1,4649:9286405,28811912 +g1,4649:9618359,28811912 +g1,4649:10282267,28811912 +g1,4649:10614221,28811912 +g1,4649:11278129,28811912 +g1,4649:11610083,28811912 +g1,4649:12273991,28811912 +g1,4649:12605945,28811912 +g1,4649:13269853,28811912 +g1,4649:13601807,28811912 +g1,4649:14265715,28811912 +g1,4649:14597669,28811912 +g1,4649:15261577,28811912 +g1,4649:15593531,28811912 +g1,4649:16257439,28811912 +g1,4649:16589393,28811912 +g1,4649:17253301,28811912 +g1,4649:17585255,28811912 +g1,4649:18249163,28811912 +h1,4649:18913071,28811912:0,0,0 +k1,4649:32583029,28811912:13669958 +g1,4649:32583029,28811912 +) +(1,4651:6630773,29627839:25952256,424439,79822 +(1,4650:6630773,29627839:0,0,0 +g1,4650:6630773,29627839 +g1,4650:6630773,29627839 +g1,4650:6303093,29627839 +(1,4650:6303093,29627839:0,0,0 +) +g1,4650:6630773,29627839 +) +g1,4651:9286405,29627839 +g1,4651:10282267,29627839 +h1,4651:10946175,29627839:0,0,0 +k1,4651:32583029,29627839:21636854 +g1,4651:32583029,29627839 +) +(1,4652:6630773,30312694:25952256,407923,6605 +h1,4652:6630773,30312694:0,0,0 +h1,4652:7958589,30312694:0,0,0 +k1,4652:32583029,30312694:24624440 +g1,4652:32583029,30312694 +) +(1,4656:6630773,31128621:25952256,424439,79822 +(1,4654:6630773,31128621:0,0,0 +g1,4654:6630773,31128621 +g1,4654:6630773,31128621 +g1,4654:6303093,31128621 +(1,4654:6303093,31128621:0,0,0 +) +g1,4654:6630773,31128621 +) +g1,4656:7626635,31128621 +g1,4656:7958589,31128621 +g1,4656:9286405,31128621 +g1,4656:10282267,31128621 +g1,4656:10614221,31128621 +g1,4656:11278129,31128621 +g1,4656:11610083,31128621 +g1,4656:12273991,31128621 +g1,4656:12605945,31128621 +g1,4656:13269853,31128621 +g1,4656:13601807,31128621 +g1,4656:14265715,31128621 +g1,4656:14597669,31128621 +g1,4656:15261577,31128621 +g1,4656:15593531,31128621 +g1,4656:16257439,31128621 +g1,4656:16589393,31128621 +g1,4656:17253301,31128621 +g1,4656:17585255,31128621 +g1,4656:18249163,31128621 +h1,4656:18913071,31128621:0,0,0 +k1,4656:32583029,31128621:13669958 +g1,4656:32583029,31128621 +) +(1,4658:6630773,31944548:25952256,407923,9908 +(1,4657:6630773,31944548:0,0,0 +g1,4657:6630773,31944548 +g1,4657:6630773,31944548 +g1,4657:6303093,31944548 +(1,4657:6303093,31944548:0,0,0 +) +g1,4657:6630773,31944548 +) +g1,4658:8290543,31944548 +g1,4658:9286405,31944548 +h1,4658:10614221,31944548:0,0,0 +k1,4658:32583029,31944548:21968808 +g1,4658:32583029,31944548 +) +(1,4659:6630773,32629403:25952256,424439,112852 +h1,4659:6630773,32629403:0,0,0 +g1,4659:10946175,32629403 +g1,4659:11942037,32629403 +g1,4659:13269853,32629403 +g1,4659:13933761,32629403 +k1,4659:13933761,32629403:11561 +h1,4659:16932907,32629403:0,0,0 +k1,4659:32583029,32629403:15650122 +g1,4659:32583029,32629403 +) +(1,4660:6630773,33314258:25952256,407923,6605 +h1,4660:6630773,33314258:0,0,0 +h1,4660:7958589,33314258:0,0,0 +k1,4660:32583029,33314258:24624440 +g1,4660:32583029,33314258 +) +(1,4664:6630773,34130185:25952256,424439,79822 +(1,4662:6630773,34130185:0,0,0 +g1,4662:6630773,34130185 +g1,4662:6630773,34130185 +g1,4662:6303093,34130185 +(1,4662:6303093,34130185:0,0,0 +) +g1,4662:6630773,34130185 +) +g1,4664:7626635,34130185 +g1,4664:7958589,34130185 +g1,4664:9286405,34130185 +g1,4664:9618359,34130185 +g1,4664:9950313,34130185 +g1,4664:10614221,34130185 +g1,4664:11942037,34130185 +g1,4664:12273991,34130185 +g1,4664:12605945,34130185 +g1,4664:13269853,34130185 +g1,4664:14597669,34130185 +g1,4664:14929623,34130185 +g1,4664:15261577,34130185 +g1,4664:15925485,34130185 +g1,4664:16257439,34130185 +g1,4664:16589393,34130185 +g1,4664:17253301,34130185 +g1,4664:17585255,34130185 +g1,4664:17917209,34130185 +g1,4664:18581117,34130185 +g1,4664:18913071,34130185 +g1,4664:19245025,34130185 +g1,4664:19908933,34130185 +g1,4664:20240887,34130185 +g1,4664:20572841,34130185 +g1,4664:21236749,34130185 +g1,4664:21568703,34130185 +h1,4664:22232611,34130185:0,0,0 +k1,4664:32583029,34130185:10350418 +g1,4664:32583029,34130185 +) +(1,4666:6630773,34946112:25952256,407923,9908 +(1,4665:6630773,34946112:0,0,0 +g1,4665:6630773,34946112 +g1,4665:6630773,34946112 +g1,4665:6303093,34946112 +(1,4665:6303093,34946112:0,0,0 +) +g1,4665:6630773,34946112 +) +g1,4666:8290543,34946112 +g1,4666:9286405,34946112 +h1,4666:10614221,34946112:0,0,0 +k1,4666:32583029,34946112:21968808 +g1,4666:32583029,34946112 +) +(1,4667:6630773,35630967:25952256,424439,86428 +h1,4667:6630773,35630967:0,0,0 +g1,4667:10946175,35630967 +g1,4667:11942037,35630967 +g1,4667:14265715,35630967 +h1,4667:15261577,35630967:0,0,0 +k1,4667:32583029,35630967:17321452 +g1,4667:32583029,35630967 +) +(1,4668:6630773,36315822:25952256,407923,6605 +h1,4668:6630773,36315822:0,0,0 +h1,4668:7958589,36315822:0,0,0 +k1,4668:32583029,36315822:24624440 +g1,4668:32583029,36315822 +) +(1,4672:6630773,37131749:25952256,424439,79822 +(1,4670:6630773,37131749:0,0,0 +g1,4670:6630773,37131749 +g1,4670:6630773,37131749 +g1,4670:6303093,37131749 +(1,4670:6303093,37131749:0,0,0 +) +g1,4670:6630773,37131749 +) +g1,4672:7626635,37131749 +g1,4672:7958589,37131749 +g1,4672:9286405,37131749 +g1,4672:9618359,37131749 +g1,4672:9950313,37131749 +g1,4672:10614221,37131749 +g1,4672:11942037,37131749 +g1,4672:12273991,37131749 +g1,4672:12605945,37131749 +g1,4672:13269853,37131749 +g1,4672:13601807,37131749 +g1,4672:14597669,37131749 +g1,4672:14929623,37131749 +g1,4672:15261577,37131749 +g1,4672:15925485,37131749 +g1,4672:16257439,37131749 +g1,4672:16589393,37131749 +g1,4672:17253301,37131749 +g1,4672:17585255,37131749 +g1,4672:17917209,37131749 +g1,4672:18581117,37131749 +g1,4672:18913071,37131749 +g1,4672:19245025,37131749 +g1,4672:19908933,37131749 +g1,4672:20240887,37131749 +g1,4672:20572841,37131749 +g1,4672:21236749,37131749 +g1,4672:21568703,37131749 +h1,4672:22232611,37131749:0,0,0 +k1,4672:32583029,37131749:10350418 +g1,4672:32583029,37131749 +) +(1,4674:6630773,37947676:25952256,407923,9908 +(1,4673:6630773,37947676:0,0,0 +g1,4673:6630773,37947676 +g1,4673:6630773,37947676 +g1,4673:6303093,37947676 +(1,4673:6303093,37947676:0,0,0 +) +g1,4673:6630773,37947676 +) +g1,4674:8290543,37947676 +g1,4674:9286405,37947676 +h1,4674:10614221,37947676:0,0,0 +k1,4674:32583029,37947676:21968808 +g1,4674:32583029,37947676 +) +(1,4675:6630773,38632531:25952256,424439,112852 +h1,4675:6630773,38632531:0,0,0 +g1,4675:10282267,38632531 +g1,4675:11278129,38632531 +g1,4675:11942037,38632531 +g1,4675:12605945,38632531 +k1,4675:12605945,38632531:11561 +h1,4675:15605091,38632531:0,0,0 +k1,4675:32583029,38632531:16977938 +g1,4675:32583029,38632531 +) +(1,4676:6630773,39317386:25952256,407923,6605 +h1,4676:6630773,39317386:0,0,0 +h1,4676:7958589,39317386:0,0,0 +k1,4676:32583029,39317386:24624440 +g1,4676:32583029,39317386 +) +(1,4680:6630773,40133313:25952256,424439,79822 +(1,4678:6630773,40133313:0,0,0 +g1,4678:6630773,40133313 +g1,4678:6630773,40133313 +g1,4678:6303093,40133313 +(1,4678:6303093,40133313:0,0,0 +) +g1,4678:6630773,40133313 +) +g1,4680:7626635,40133313 +g1,4680:7958589,40133313 +g1,4680:9286405,40133313 +g1,4680:9950313,40133313 +g1,4680:10614221,40133313 +g1,4680:11278129,40133313 +g1,4680:11942037,40133313 +g1,4680:12605945,40133313 +g1,4680:13269853,40133313 +g1,4680:13933761,40133313 +g1,4680:14597669,40133313 +g1,4680:15261577,40133313 +h1,4680:15593531,40133313:0,0,0 +k1,4680:32583029,40133313:16989498 +g1,4680:32583029,40133313 +) +(1,4682:6630773,40949240:25952256,407923,9908 +(1,4681:6630773,40949240:0,0,0 +g1,4681:6630773,40949240 +g1,4681:6630773,40949240 +g1,4681:6303093,40949240 +(1,4681:6303093,40949240:0,0,0 +) +g1,4681:6630773,40949240 +) +g1,4682:8290543,40949240 +g1,4682:9286405,40949240 +h1,4682:10614221,40949240:0,0,0 +k1,4682:32583029,40949240:21968808 +g1,4682:32583029,40949240 +) +(1,4683:6630773,41634095:25952256,424439,112852 +h1,4683:6630773,41634095:0,0,0 +g1,4683:8290543,41634095 +g1,4683:9286405,41634095 +g1,4683:9950313,41634095 +g1,4683:10282267,41634095 +g1,4683:10946175,41634095 +g1,4683:11942037,41634095 +k1,4683:11942037,41634095:11561 +h1,4683:14941183,41634095:0,0,0 +k1,4683:32583029,41634095:17641846 +g1,4683:32583029,41634095 +) +(1,4684:6630773,42318950:25952256,407923,6605 +h1,4684:6630773,42318950:0,0,0 +h1,4684:7958589,42318950:0,0,0 +k1,4684:32583029,42318950:24624440 +g1,4684:32583029,42318950 +) +(1,4688:6630773,43134877:25952256,424439,79822 +(1,4686:6630773,43134877:0,0,0 +g1,4686:6630773,43134877 +g1,4686:6630773,43134877 +g1,4686:6303093,43134877 +(1,4686:6303093,43134877:0,0,0 +) +g1,4686:6630773,43134877 +) +g1,4688:7626635,43134877 +g1,4688:8954451,43134877 +h1,4688:9286405,43134877:0,0,0 +k1,4688:32583029,43134877:23296624 +g1,4688:32583029,43134877 +) +] +) +g1,4689:32583029,43214699 +g1,4689:6630773,43214699 +g1,4689:6630773,43214699 +g1,4689:32583029,43214699 +g1,4689:32583029,43214699 +) +h1,4689:6630773,43411307:0,0,0 +(1,4693:6630773,44276387:25952256,513147,134348 +h1,4692:6630773,44276387:983040,0,0 +k1,4692:8856376,44276387:289014 +k1,4692:10249671,44276387:289013 +k1,4692:11824501,44276387:289014 +k1,4692:13206000,44276387:289014 +k1,4692:17461907,44276387:289013 +k1,4692:18560291,44276387:289014 +k1,4692:20316001,44276387:289014 +k1,4692:22234894,44276387:289013 +k1,4692:23183200,44276387:289014 +k1,4692:24491299,44276387:289014 +k1,4692:28426080,44276387:289013 +k1,4692:31635378,44276387:289014 +k1,4692:32583029,44276387:0 +) +(1,4693:6630773,45141467:25952256,505283,126483 +g1,4692:9665089,45141467 +g1,4692:10515746,45141467 +g1,4692:12342889,45141467 +g1,4692:13714557,45141467 +k1,4693:32583029,45141467:15825635 +g1,4693:32583029,45141467 +) +] +(1,4695:32583029,45706769:0,0,0 +g1,4695:32583029,45706769 +) +) +] +(1,4695:6630773,47279633:25952256,0,0 +h1,4695:6630773,47279633:25952256,0,0 +) +] +(1,4695:4262630,4025873:0,0,0 +[1,4695:-473656,4025873:0,0,0 +(1,4695:-473656,-710413:0,0,0 +(1,4695:-473656,-710413:0,0,0 +g1,4695:-473656,-710413 +) +g1,4695:-473656,-710413 ) -) +] ) ] -[1,5514:3078558,4812305:0,0,0 -(1,5514:3078558,2439708:0,1703936,0 -g1,5514:29030814,2439708 -g1,5514:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,5514:36151628,1915420:16384,1179648,0 +!27740 +}81 +Input:764:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:765:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:766:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:767:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:768:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:769:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:770:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:771:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:772:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!848 +{82 +[1,4803:4262630,47279633:28320399,43253760,0 +(1,4803:4262630,4025873:0,0,0 +[1,4803:-473656,4025873:0,0,0 +(1,4803:-473656,-710413:0,0,0 +(1,4803:-473656,-644877:0,0,0 +k1,4803:-473656,-644877:-65536 ) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 +(1,4803:-473656,4736287:0,0,0 +k1,4803:-473656,4736287:5209943 +) +g1,4803:-473656,-710413 ) ] ) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,5514:37855564,2439708:1179648,16384,0 +[1,4803:6630773,47279633:25952256,43253760,0 +[1,4803:6630773,4812305:25952256,786432,0 +(1,4803:6630773,4812305:25952256,505283,126483 +(1,4803:6630773,4812305:25952256,505283,126483 +g1,4803:3078558,4812305 +[1,4803:3078558,4812305:0,0,0 +(1,4803:3078558,2439708:0,1703936,0 +k1,4803:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,4803:2537886,2439708:1179648,16384,0 ) +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,4803:3078558,1915420:16384,1179648,0 ) -k1,5514:3078556,2439708:-34777008 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) ] -[1,5514:3078558,4812305:0,0,0 -(1,5514:3078558,49800853:0,16384,2228224 -k1,5514:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,5514:2537886,49800853:1179648,16384,0 ) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,5514:3078558,51504789:16384,1179648,0 ) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 ) ] +[1,4803:3078558,4812305:0,0,0 +(1,4803:3078558,2439708:0,1703936,0 +g1,4803:29030814,2439708 +g1,4803:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,4803:36151628,1915420:16384,1179648,0 ) -) +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) ] -[1,5514:3078558,4812305:0,0,0 -(1,5514:3078558,49800853:0,16384,2228224 -g1,5514:29030814,49800853 -g1,5514:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,5514:36151628,51504789:16384,1179648,0 ) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 -) -] -) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,5514:37855564,49800853:1179648,16384,0 -) -) -k1,5514:3078556,49800853:-34777008 -) -] -g1,5514:6630773,4812305 -k1,5514:22348274,4812305:14920583 -g1,5514:23970945,4812305 -g1,5514:24793421,4812305 -g1,5514:27528893,4812305 -g1,5514:28938572,4812305 -) -) -] -[1,5514:6630773,45706769:25952256,40108032,0 -(1,5514:6630773,45706769:25952256,40108032,0 -(1,5514:6630773,45706769:0,0,0 -g1,5514:6630773,45706769 -) -[1,5514:6630773,45706769:25952256,40108032,0 -v1,5486:6630773,6254097:0,393216,0 -(1,5486:6630773,15193523:25952256,9332642,196608 -g1,5486:6630773,15193523 -g1,5486:6630773,15193523 -g1,5486:6434165,15193523 -(1,5486:6434165,15193523:0,9332642,196608 -r1,5514:32779637,15193523:26345472,9529250,196608 -k1,5486:6434165,15193523:-26345472 -) -(1,5486:6434165,15193523:26345472,9332642,196608 -[1,5486:6630773,15193523:25952256,9136034,0 -(1,5466:6630773,6461715:25952256,404226,82312 -(1,5465:6630773,6461715:0,0,0 -g1,5465:6630773,6461715 -g1,5465:6630773,6461715 -g1,5465:6303093,6461715 -(1,5465:6303093,6461715:0,0,0 -) -g1,5465:6630773,6461715 -) -g1,5466:8211502,6461715 -g1,5466:9159940,6461715 -g1,5466:13269835,6461715 -g1,5466:14850564,6461715 -g1,5466:15482856,6461715 -h1,5466:16115148,6461715:0,0,0 -k1,5466:32583029,6461715:16467881 -g1,5466:32583029,6461715 -) -(1,5467:6630773,7127893:25952256,379060,6290 -h1,5467:6630773,7127893:0,0,0 -g1,5467:8211502,7127893 -g1,5467:8843794,7127893 -h1,5467:10108377,7127893:0,0,0 -k1,5467:32583029,7127893:22474652 -g1,5467:32583029,7127893 -) -(1,5475:6630773,7794071:25952256,404226,82312 -(1,5469:6630773,7794071:0,0,0 -g1,5469:6630773,7794071 -g1,5469:6630773,7794071 -g1,5469:6303093,7794071 -(1,5469:6303093,7794071:0,0,0 -) -g1,5469:6630773,7794071 -) -g1,5475:7579210,7794071 -g1,5475:7895356,7794071 -g1,5475:8211502,7794071 -g1,5475:8527648,7794071 -g1,5475:8843794,7794071 -g1,5475:9159940,7794071 -g1,5475:10740669,7794071 -g1,5475:12321398,7794071 -g1,5475:13902127,7794071 -k1,5475:13902127,7794071:0 -h1,5475:15166710,7794071:0,0,0 -k1,5475:32583030,7794071:17416320 -g1,5475:32583030,7794071 -) -(1,5475:6630773,8460249:25952256,404226,82312 -h1,5475:6630773,8460249:0,0,0 -g1,5475:7579210,8460249 -g1,5475:9159938,8460249 -g1,5475:9476084,8460249 -g1,5475:9792230,8460249 -g1,5475:10108376,8460249 -g1,5475:10740668,8460249 -g1,5475:11056814,8460249 -g1,5475:11372960,8460249 -g1,5475:12321397,8460249 -g1,5475:12637543,8460249 -g1,5475:12953689,8460249 -g1,5475:13902126,8460249 -g1,5475:14218272,8460249 -h1,5475:15166709,8460249:0,0,0 -k1,5475:32583029,8460249:17416320 -g1,5475:32583029,8460249 -) -(1,5475:6630773,9126427:25952256,404226,82312 -h1,5475:6630773,9126427:0,0,0 -g1,5475:7579210,9126427 -g1,5475:9159938,9126427 -g1,5475:9476084,9126427 -g1,5475:9792230,9126427 -g1,5475:10108376,9126427 -g1,5475:10740668,9126427 -g1,5475:11056814,9126427 -g1,5475:11372960,9126427 -g1,5475:12321397,9126427 -g1,5475:12637543,9126427 -g1,5475:13902126,9126427 -g1,5475:14218272,9126427 -h1,5475:15166709,9126427:0,0,0 -k1,5475:32583029,9126427:17416320 -g1,5475:32583029,9126427 -) -(1,5475:6630773,9792605:25952256,404226,82312 -h1,5475:6630773,9792605:0,0,0 -g1,5475:7579210,9792605 -g1,5475:9159938,9792605 -g1,5475:9476084,9792605 -g1,5475:9792230,9792605 -g1,5475:10108376,9792605 -g1,5475:10740668,9792605 -g1,5475:11056814,9792605 -g1,5475:11372960,9792605 -g1,5475:12321397,9792605 -g1,5475:12637543,9792605 -g1,5475:13902126,9792605 -g1,5475:14218272,9792605 -h1,5475:15166709,9792605:0,0,0 -k1,5475:32583029,9792605:17416320 -g1,5475:32583029,9792605 -) -(1,5475:6630773,10458783:25952256,404226,82312 -h1,5475:6630773,10458783:0,0,0 -g1,5475:7579210,10458783 -g1,5475:9159938,10458783 -g1,5475:9476084,10458783 -g1,5475:9792230,10458783 -g1,5475:10740667,10458783 -g1,5475:11056813,10458783 -g1,5475:11372959,10458783 -g1,5475:12321396,10458783 -g1,5475:12637542,10458783 -g1,5475:13902125,10458783 -g1,5475:14218271,10458783 -h1,5475:15166708,10458783:0,0,0 -k1,5475:32583028,10458783:17416320 -g1,5475:32583028,10458783 -) -(1,5477:6630773,11780321:25952256,388497,9436 -(1,5476:6630773,11780321:0,0,0 -g1,5476:6630773,11780321 -g1,5476:6630773,11780321 -g1,5476:6303093,11780321 -(1,5476:6303093,11780321:0,0,0 -) -g1,5476:6630773,11780321 -) -g1,5477:8211502,11780321 -g1,5477:9476085,11780321 -h1,5477:10740668,11780321:0,0,0 -k1,5477:32583028,11780321:21842360 -g1,5477:32583028,11780321 -) -(1,5485:6630773,12446499:25952256,404226,82312 -(1,5479:6630773,12446499:0,0,0 -g1,5479:6630773,12446499 -g1,5479:6630773,12446499 -g1,5479:6303093,12446499 -(1,5479:6303093,12446499:0,0,0 -) -g1,5479:6630773,12446499 -) -g1,5485:7579210,12446499 -g1,5485:7895356,12446499 -g1,5485:8211502,12446499 -g1,5485:8527648,12446499 -g1,5485:8843794,12446499 -g1,5485:9159940,12446499 -g1,5485:10740669,12446499 -g1,5485:12321398,12446499 -g1,5485:13902127,12446499 -k1,5485:13902127,12446499:0 -h1,5485:15166710,12446499:0,0,0 -k1,5485:32583030,12446499:17416320 -g1,5485:32583030,12446499 -) -(1,5485:6630773,13112677:25952256,404226,82312 -h1,5485:6630773,13112677:0,0,0 -g1,5485:7579210,13112677 -g1,5485:9159938,13112677 -g1,5485:9476084,13112677 -g1,5485:9792230,13112677 -g1,5485:10740667,13112677 -g1,5485:11056813,13112677 -g1,5485:12321396,13112677 -g1,5485:12637542,13112677 -g1,5485:13902125,13112677 -g1,5485:14218271,13112677 -h1,5485:15166708,13112677:0,0,0 -k1,5485:32583028,13112677:17416320 -g1,5485:32583028,13112677 -) -(1,5485:6630773,13778855:25952256,404226,82312 -h1,5485:6630773,13778855:0,0,0 -g1,5485:7579210,13778855 -g1,5485:9159938,13778855 -g1,5485:9476084,13778855 -g1,5485:10740667,13778855 -g1,5485:11056813,13778855 -g1,5485:12321396,13778855 -g1,5485:12637542,13778855 -g1,5485:13902125,13778855 -g1,5485:14218271,13778855 -h1,5485:15166708,13778855:0,0,0 -k1,5485:32583028,13778855:17416320 -g1,5485:32583028,13778855 -) -(1,5485:6630773,14445033:25952256,404226,82312 -h1,5485:6630773,14445033:0,0,0 -g1,5485:7579210,14445033 -g1,5485:9159938,14445033 -g1,5485:9476084,14445033 -g1,5485:10740667,14445033 -g1,5485:11056813,14445033 -g1,5485:12321396,14445033 -g1,5485:12637542,14445033 -g1,5485:13902125,14445033 -g1,5485:14218271,14445033 -h1,5485:15166708,14445033:0,0,0 -k1,5485:32583028,14445033:17416320 -g1,5485:32583028,14445033 -) -(1,5485:6630773,15111211:25952256,404226,82312 -h1,5485:6630773,15111211:0,0,0 -g1,5485:7579210,15111211 -g1,5485:9159938,15111211 -g1,5485:9476084,15111211 -g1,5485:10740667,15111211 -g1,5485:11056813,15111211 -g1,5485:12321396,15111211 -g1,5485:12637542,15111211 -g1,5485:13902125,15111211 -g1,5485:14218271,15111211 -h1,5485:15166708,15111211:0,0,0 -k1,5485:32583028,15111211:17416320 -g1,5485:32583028,15111211 -) -] -) -g1,5486:32583029,15193523 -g1,5486:6630773,15193523 -g1,5486:6630773,15193523 -g1,5486:32583029,15193523 -g1,5486:32583029,15193523 -) -h1,5486:6630773,15390131:0,0,0 -(1,5490:6630773,16722266:25952256,513147,134348 -h1,5489:6630773,16722266:983040,0,0 -k1,5489:10046755,16722266:616284 -k1,5489:13739954,16722266:616284 -k1,5489:15547683,16722266:616284 -k1,5489:19189764,16722266:616284 -k1,5489:20753699,16722266:616284 -k1,5489:23457305,16722266:616284 -k1,5489:26400772,16722266:616284 -k1,5489:28163281,16722266:616284 -k1,5489:32583029,16722266:0 -) -(1,5490:6630773,17563754:25952256,505283,134348 -(1,5489:6837867,17563754:0,452978,115847 -r1,5514:10713251,17563754:3875384,568825,115847 -k1,5489:6837867,17563754:-3875384 -) -(1,5489:6837867,17563754:3875384,452978,115847 -k1,5489:6837867,17563754:3277 -h1,5489:10709974,17563754:0,411205,112570 -) -k1,5489:11351284,17563754:257269 -k1,5489:14802778,17563754:257269 -k1,5489:15742932,17563754:257269 -k1,5489:18941457,17563754:257269 -k1,5489:20217811,17563754:257269 -k1,5489:23197445,17563754:257268 -(1,5489:23404539,17563754:0,452978,122846 -r1,5514:25521364,17563754:2116825,575824,122846 -k1,5489:23404539,17563754:-2116825 -) -(1,5489:23404539,17563754:2116825,452978,122846 -k1,5489:23404539,17563754:3277 -h1,5489:25518087,17563754:0,411205,112570 -) -k1,5489:25985727,17563754:257269 -k1,5489:27234556,17563754:257269 -k1,5489:30275794,17563754:257269 -k1,5489:31149101,17563754:257269 -k1,5490:32583029,17563754:0 -) -(1,5490:6630773,18405242:25952256,513147,134348 -k1,5489:7501173,18405242:281887 -k1,5489:10821964,18405242:281887 -k1,5489:14084428,18405242:281887 -k1,5489:18504257,18405242:281887 -k1,5489:21216218,18405242:281886 -k1,5489:24725098,18405242:281887 -k1,5489:28032782,18405242:281887 -k1,5489:29506114,18405242:281887 -k1,5489:32583029,18405242:0 -) -(1,5490:6630773,19246730:25952256,513147,7863 -g1,5489:7777653,19246730 -k1,5490:32583030,19246730:21898200 -g1,5490:32583030,19246730 -) -v1,5492:6630773,20578866:0,393216,0 -(1,5496:6630773,21898274:25952256,1712624,0 -g1,5496:6630773,21898274 -g1,5496:6303093,21898274 -r1,5514:6401397,21898274:98304,1712624,0 -g1,5496:6600626,21898274 -g1,5496:6797234,21898274 -[1,5496:6797234,21898274:25785795,1712624,0 -(1,5493:6797234,20940939:25785795,755289,196608 -(1,5492:6797234,20940939:0,755289,196608 -r1,5514:8134168,20940939:1336934,951897,196608 -k1,5492:6797234,20940939:-1336934 -) -(1,5492:6797234,20940939:1336934,755289,196608 -) -k1,5492:8314342,20940939:180174 -k1,5492:8642022,20940939:327680 -k1,5492:10018882,20940939:180173 -k1,5492:11695243,20940939:180174 -k1,5492:13743847,20940939:180173 -k1,5492:16609031,20940939:180174 -k1,5492:17555321,20940939:180174 -k1,5492:20025322,20940939:180173 -k1,5492:22276434,20940939:180174 -k1,5492:24200521,20940939:180174 -k1,5492:26388717,20940939:180173 -k1,5492:28637207,20940939:180174 -k1,5492:29808940,20940939:180173 -k1,5492:30605152,20940939:180174 -k1,5493:32583029,20940939:0 -) -(1,5493:6797234,21782427:25785795,452978,115847 -(1,5492:6797234,21782427:0,452978,115847 -r1,5514:9265771,21782427:2468537,568825,115847 -k1,5492:6797234,21782427:-2468537 -) -(1,5492:6797234,21782427:2468537,452978,115847 -k1,5492:6797234,21782427:3277 -h1,5492:9262494,21782427:0,411205,112570 -) -k1,5493:32583029,21782427:23143588 -g1,5493:32583029,21782427 -) -] -g1,5496:32583029,21898274 -) -h1,5496:6630773,21898274:0,0,0 -(1,5501:6630773,25196489:25952256,32768,229376 -(1,5501:6630773,25196489:0,32768,229376 -(1,5501:6630773,25196489:5505024,32768,229376 -r1,5514:12135797,25196489:5505024,262144,229376 -) -k1,5501:6630773,25196489:-5505024 -) -(1,5501:6630773,25196489:25952256,32768,0 -r1,5514:32583029,25196489:25952256,32768,0 -) -) -(1,5501:6630773,26800817:25952256,582746,14155 -(1,5501:6630773,26800817:2464678,582746,14155 -g1,5501:6630773,26800817 -g1,5501:9095451,26800817 -) -k1,5501:32583028,26800817:20599012 -g1,5501:32583028,26800817 -) -(1,5506:6630773,28035521:25952256,505283,126483 -k1,5505:7445564,28035521:186956 -k1,5505:9021883,28035521:186956 -k1,5505:11763433,28035521:186957 -k1,5505:13141834,28035521:186956 -k1,5505:16207131,28035521:186956 -k1,5505:17413172,28035521:186956 -k1,5505:21026350,28035521:186956 -k1,5505:23848509,28035521:186956 -k1,5505:26046111,28035521:186957 -k1,5505:29357824,28035521:186956 -k1,5505:30354150,28035521:186956 -k1,5506:32583029,28035521:0 -) -(1,5506:6630773,28877009:25952256,505283,126483 -k1,5505:8414850,28877009:229563 -k1,5505:9505556,28877009:229563 -k1,5505:12260877,28877009:229563 -k1,5505:14336591,28877009:229564 -k1,5505:15097651,28877009:229563 -k1,5505:17633426,28877009:229563 -k1,5505:18490824,28877009:229563 -k1,5505:19076247,28877009:229563 -k1,5505:22876211,28877009:229563 -k1,5505:24851653,28877009:229563 -k1,5505:26213024,28877009:229564 -k1,5505:28453232,28877009:229563 -k1,5505:29674355,28877009:229563 -k1,5505:30519956,28877009:229563 -k1,5505:32583029,28877009:0 -) -(1,5506:6630773,29718497:25952256,513147,134348 -g1,5505:9633632,29718497 -g1,5505:10460696,29718497 -g1,5505:11015785,29718497 -g1,5505:13740772,29718497 -g1,5505:15685880,29718497 -g1,5505:16904194,29718497 -g1,5505:21175175,29718497 -g1,5505:22365964,29718497 -g1,5505:24575838,29718497 -g1,5505:26342688,29718497 -g1,5505:26897777,29718497 -g1,5505:28230124,29718497 -k1,5506:32583029,29718497:949620 -g1,5506:32583029,29718497 -) -(1,5508:6630773,30559985:25952256,513147,7863 -h1,5507:6630773,30559985:983040,0,0 -k1,5507:8427972,30559985:186324 -k1,5507:11245567,30559985:186324 -k1,5507:12083319,30559985:186324 -k1,5507:13971612,30559985:186323 -k1,5507:17242060,30559985:186324 -k1,5507:20187450,30559985:186324 -k1,5507:20989812,30559985:186324 -k1,5507:23061607,30559985:186324 -k1,5507:23603791,30559985:186324 -k1,5507:26301454,30559985:186323 -k1,5507:27019275,30559985:186324 -k1,5507:28140142,30559985:186324 -k1,5507:29012628,30559985:186324 -k1,5507:32583029,30559985:0 -) -(1,5508:6630773,31401473:25952256,513147,134348 -k1,5507:7527383,31401473:213725 -k1,5507:10266867,31401473:213726 -k1,5507:12178630,31401473:213725 -k1,5507:14996100,31401473:213725 -k1,5507:15565685,31401473:213725 -k1,5507:17767118,31401473:213726 -k1,5507:18632271,31401473:213725 -k1,5507:19593762,31401473:213725 -k1,5507:21519943,31401473:213725 -k1,5507:22416554,31401473:213726 -k1,5507:24328317,31401473:213725 -k1,5507:26723736,31401473:213725 -k1,5507:27773045,31401473:213725 -k1,5507:28342631,31401473:213726 -k1,5507:29921471,31401473:213725 -k1,5507:30751234,31401473:213725 -k1,5507:31379788,31401473:213711 -k1,5507:32583029,31401473:0 -) -(1,5508:6630773,32242961:25952256,505283,126483 -k1,5507:10302906,32242961:245911 -k1,5507:11080315,32242961:245912 -k1,5507:13180895,32242961:245911 -k1,5507:14236176,32242961:245911 -k1,5507:17072726,32242961:245912 -k1,5507:18337722,32242961:245911 -k1,5507:22349332,32242961:245911 -k1,5507:25106583,32242961:245911 -k1,5507:25883992,32242961:245912 -(1,5507:25883992,32242961:0,452978,115847 -r1,5514:28352529,32242961:2468537,568825,115847 -k1,5507:25883992,32242961:-2468537 -) -(1,5507:25883992,32242961:2468537,452978,115847 -k1,5507:25883992,32242961:3277 -h1,5507:28349252,32242961:0,411205,112570 -) -k1,5507:28598440,32242961:245911 -k1,5507:32583029,32242961:0 -) -(1,5508:6630773,33084449:25952256,505283,126483 -k1,5507:7489730,33084449:176072 -k1,5507:8021663,33084449:176073 -(1,5507:8021663,33084449:0,459977,115847 -r1,5514:10138488,33084449:2116825,575824,115847 -k1,5507:8021663,33084449:-2116825 -) -(1,5507:8021663,33084449:2116825,459977,115847 -k1,5507:8021663,33084449:3277 -h1,5507:10135211,33084449:0,411205,112570 -) -k1,5507:10314560,33084449:176072 -k1,5507:13604248,33084449:176073 -k1,5507:15161164,33084449:176072 -k1,5507:18321746,33084449:176072 -k1,5507:20543853,33084449:176073 -k1,5507:22490052,33084449:176072 -k1,5507:25195815,33084449:176073 -k1,5507:25987925,33084449:176072 -k1,5507:27765698,33084449:176073 -k1,5507:29639152,33084449:176072 -k1,5508:32583029,33084449:0 -) -(1,5508:6630773,33925937:25952256,505283,134348 -k1,5507:7839694,33925937:218672 -k1,5507:8829068,33925937:218671 -k1,5507:12813439,33925937:218672 -k1,5507:15543451,33925937:218672 -k1,5507:16448284,33925937:218671 -k1,5507:20113494,33925937:218672 -k1,5507:21015051,33925937:218672 -k1,5507:22473663,33925937:218671 -k1,5507:25394384,33925937:218672 -k1,5507:26422426,33925937:218672 -k1,5507:27660182,33925937:218671 -k1,5507:30544859,33925937:218672 -k1,5507:32583029,33925937:0 -) -(1,5508:6630773,34767425:25952256,513147,134348 -k1,5507:9069695,34767425:229048 -k1,5507:10317829,34767425:229049 -k1,5507:12635509,34767425:229048 -k1,5507:13523849,34767425:229048 -k1,5507:14771982,34767425:229048 -k1,5507:18610099,34767425:229049 -k1,5507:19522032,34767425:229048 -k1,5507:22023869,34767425:229048 -k1,5507:22880752,34767425:229048 -k1,5507:24811771,34767425:229049 -k1,5507:27169428,34767425:229048 -k1,5507:29136491,34767425:229048 -k1,5507:32583029,34767425:0 -) -(1,5508:6630773,35608913:25952256,513147,126483 -k1,5507:7364694,35608913:202424 -k1,5507:7922977,35608913:202423 -k1,5507:10903472,35608913:202424 -k1,5507:11765187,35608913:202423 -k1,5507:12986696,35608913:202424 -k1,5507:14752153,35608913:202423 -k1,5507:16151264,35608913:202424 -k1,5507:18093013,35608913:202423 -k1,5507:18954729,35608913:202424 -k1,5507:20176238,35608913:202424 -k1,5507:22171071,35608913:202423 -k1,5507:22989533,35608913:202424 -k1,5507:23962659,35608913:202423 -k1,5507:27502176,35608913:202424 -(1,5507:27502176,35608913:0,459977,115847 -r1,5514:29619001,35608913:2116825,575824,115847 -k1,5507:27502176,35608913:-2116825 -) -(1,5507:27502176,35608913:2116825,459977,115847 -k1,5507:27502176,35608913:3277 -h1,5507:29615724,35608913:0,411205,112570 -) -k1,5507:29821424,35608913:202423 -k1,5507:31516758,35608913:202424 -k1,5507:32583029,35608913:0 -) -(1,5508:6630773,36450401:25952256,513147,126483 -k1,5507:8564740,36450401:154665 -k1,5507:10844082,36450401:154665 -k1,5507:14800490,36450401:154665 -k1,5507:15638040,36450401:154665 -k1,5507:16811790,36450401:154665 -k1,5507:18977100,36450401:154665 -k1,5507:21607715,36450401:154665 -k1,5507:22834548,36450401:154664 -k1,5507:23675375,36450401:154665 -k1,5507:24698392,36450401:154665 -k1,5507:25985519,36450401:154665 -k1,5507:27165167,36450401:154665 -k1,5507:27935870,36450401:154665 -k1,5507:30838460,36450401:154665 -h1,5507:31236919,36450401:0,0,0 -k1,5507:31391584,36450401:154665 -k1,5507:32583029,36450401:0 -) -(1,5508:6630773,37291889:25952256,513147,134348 -h1,5507:7029232,37291889:0,0,0 -k1,5507:7356350,37291889:153448 -k1,5507:7967895,37291889:153448 -k1,5507:9225624,37291889:153447 -k1,5507:11158374,37291889:153448 -k1,5507:12330907,37291889:153448 -k1,5507:15445927,37291889:153448 -k1,5507:17112600,37291889:153447 -k1,5507:18027576,37291889:153448 -k1,5507:19873164,37291889:153448 -k1,5507:21548358,37291889:153448 -k1,5507:22361098,37291889:153448 -k1,5507:26001716,37291889:153447 -k1,5507:27346609,37291889:153448 -k1,5507:28519142,37291889:153448 -k1,5507:32583029,37291889:0 -) -(1,5508:6630773,38133377:25952256,513147,134348 -g1,5507:7512887,38133377 -g1,5507:10656649,38133377 -g1,5507:11515170,38133377 -g1,5507:12733484,38133377 -g1,5507:14725123,38133377 -g1,5507:16668920,38133377 -g1,5507:18266687,38133377 -g1,5507:19657361,38133377 -g1,5507:21287896,38133377 -g1,5507:22103163,38133377 -k1,5508:32583029,38133377:8698597 -g1,5508:32583029,38133377 -) -(1,5510:6630773,38974865:25952256,513147,134348 -h1,5509:6630773,38974865:983040,0,0 -k1,5509:8456672,38974865:215024 -k1,5509:9442399,38974865:215024 -k1,5509:10072250,38974865:215008 -(1,5509:10072250,38974865:0,459977,115847 -r1,5514:12189075,38974865:2116825,575824,115847 -k1,5509:10072250,38974865:-2116825 -) -(1,5509:10072250,38974865:2116825,459977,115847 -k1,5509:10072250,38974865:3277 -h1,5509:12185798,38974865:0,411205,112570 -) -k1,5509:12577768,38974865:215023 -k1,5509:14803437,38974865:215024 -k1,5509:17550117,38974865:215024 -k1,5509:20290899,38974865:215024 -k1,5509:23843015,38974865:215023 -k1,5509:27461324,38974865:215024 -k1,5509:29278048,38974865:215024 -k1,5509:32583029,38974865:0 -) -(1,5510:6630773,39816353:25952256,505283,134348 -k1,5509:7876108,39816353:226250 -k1,5509:11577078,39816353:226251 -k1,5509:12419366,39816353:226250 -k1,5509:13416320,39816353:226251 -k1,5509:17425308,39816353:226250 -k1,5509:18334444,39816353:226251 -k1,5509:21790308,39816353:226250 -k1,5509:22632597,39816353:226251 -k1,5509:23214707,39816353:226250 -k1,5509:25713747,39816353:226251 -k1,5509:27928359,39816353:226250 -k1,5509:29258892,39816353:226251 -k1,5509:30232908,39816353:226250 -k1,5509:32583029,39816353:0 -) -(1,5510:6630773,40657841:25952256,513147,126483 -k1,5509:8645767,40657841:159014 -k1,5509:10372402,40657841:159014 -k1,5509:13712534,40657841:159014 -k1,5509:14554433,40657841:159014 -k1,5509:17688126,40657841:159014 -k1,5509:20328988,40657841:159014 -k1,5509:21684689,40657841:159014 -k1,5509:24606046,40657841:159014 -k1,5509:27395020,40657841:159014 -k1,5509:29564679,40657841:159014 -k1,5509:30715253,40657841:159014 -k1,5509:32583029,40657841:0 -) -(1,5510:6630773,41499329:25952256,505283,134348 -k1,5509:8763714,41499329:247471 -k1,5509:11329849,41499329:247471 -k1,5509:13927440,41499329:247470 -k1,5509:15568862,41499329:247471 -(1,5509:15568862,41499329:0,459977,115847 -r1,5514:18389111,41499329:2820249,575824,115847 -k1,5509:15568862,41499329:-2820249 -) -(1,5509:15568862,41499329:2820249,459977,115847 -k1,5509:15568862,41499329:3277 -h1,5509:18385834,41499329:0,411205,112570 -) -k1,5509:18636582,41499329:247471 -k1,5509:19875613,41499329:247471 -k1,5509:22252348,41499329:247470 -k1,5509:25836912,41499329:247471 -k1,5509:26767268,41499329:247471 -k1,5509:30634948,41499329:247471 -k1,5509:31297213,41499329:247422 -k1,5509:32583029,41499329:0 -) -(1,5510:6630773,42340817:25952256,513147,126483 -k1,5509:9625918,42340817:138431 -(1,5509:9625918,42340817:0,452978,115847 -r1,5514:12094455,42340817:2468537,568825,115847 -k1,5509:9625918,42340817:-2468537 -) -(1,5509:9625918,42340817:2468537,452978,115847 -k1,5509:9625918,42340817:3277 -h1,5509:12091178,42340817:0,411205,112570 -) -k1,5509:12232885,42340817:138430 -k1,5509:14769278,42340817:138431 -k1,5509:17257829,42340817:138430 -k1,5509:18790211,42340817:138431 -k1,5509:21624138,42340817:138431 -(1,5509:21624138,42340817:0,452978,115847 -r1,5514:24796098,42340817:3171960,568825,115847 -k1,5509:21624138,42340817:-3171960 -) -(1,5509:21624138,42340817:3171960,452978,115847 -k1,5509:21624138,42340817:3277 -h1,5509:24792821,42340817:0,411205,112570 -) -k1,5509:24934528,42340817:138430 -k1,5509:26466910,42340817:138431 -k1,5509:29342123,42340817:138430 -k1,5509:30861398,42340817:138431 -k1,5510:32583029,42340817:0 -) -(1,5510:6630773,43182305:25952256,513147,126483 -k1,5509:8320410,43182305:214422 -k1,5509:9731519,43182305:214422 -k1,5509:13545833,43182305:214421 -k1,5509:16604518,43182305:214422 -k1,5509:18194541,43182305:214422 -k1,5509:20518567,43182305:214422 -k1,5509:22063370,43182305:214422 -k1,5509:23657980,43182305:214422 -k1,5509:24863961,43182305:214421 -k1,5509:28668445,43182305:214422 -k1,5509:29498905,43182305:214422 -k1,5509:32583029,43182305:0 -) -(1,5510:6630773,44023793:25952256,505283,126483 -g1,5509:8351748,44023793 -g1,5509:9237139,44023793 -g1,5509:12565712,44023793 -g1,5509:13380979,44023793 -g1,5509:15997831,44023793 -h1,5509:16396290,44023793:0,0,0 -k1,5510:32583029,44023793:16013069 -g1,5510:32583029,44023793 -) -(1,5512:6630773,44865281:25952256,513147,134348 -h1,5511:6630773,44865281:983040,0,0 -k1,5511:9656854,44865281:259806 -k1,5511:11652052,44865281:259805 -(1,5511:11652052,44865281:0,459977,115847 -r1,5514:14472301,44865281:2820249,575824,115847 -k1,5511:11652052,44865281:-2820249 -) -(1,5511:11652052,44865281:2820249,459977,115847 -k1,5511:11652052,44865281:3277 -h1,5511:14469024,44865281:0,411205,112570 -) -k1,5511:14732107,44865281:259806 -k1,5511:15674798,44865281:259806 -(1,5511:15674798,44865281:0,452978,115847 -r1,5514:18846758,44865281:3171960,568825,115847 -k1,5511:15674798,44865281:-3171960 -) -(1,5511:15674798,44865281:3171960,452978,115847 -k1,5511:15674798,44865281:3277 -h1,5511:18843481,44865281:0,411205,112570 -) -k1,5511:19106563,44865281:259805 -k1,5511:20234721,44865281:259806 -k1,5511:22423907,44865281:259806 -k1,5511:23039573,44865281:259806 -k1,5511:25193368,44865281:259805 -k1,5511:27020795,44865281:259806 -k1,5511:27636461,44865281:259806 -k1,5511:30047813,44865281:259805 -k1,5511:31379788,44865281:259806 -k1,5511:32583029,44865281:0 -) -(1,5512:6630773,45706769:25952256,513147,126483 -k1,5511:8827868,45706769:219218 -k1,5511:10151368,45706769:219218 -k1,5511:11118351,45706769:219217 -k1,5511:13687690,45706769:219218 -k1,5511:16956954,45706769:219218 -k1,5511:18367617,45706769:219218 -k1,5511:22287652,45706769:219217 -k1,5511:23193032,45706769:219218 -k1,5511:25487775,45706769:219218 -k1,5511:26323031,45706769:219218 -k1,5511:27745489,45706769:219217 -k1,5511:30799794,45706769:219218 -k1,5511:32583029,45706769:0 -) -] -(1,5514:32583029,45706769:0,0,0 -g1,5514:32583029,45706769 -) -) -] -(1,5514:6630773,47279633:25952256,0,0 -h1,5514:6630773,47279633:25952256,0,0 -) -] -(1,5514:4262630,4025873:0,0,0 -[1,5514:-473656,4025873:0,0,0 -(1,5514:-473656,-710413:0,0,0 -(1,5514:-473656,-710413:0,0,0 -g1,5514:-473656,-710413 -) -g1,5514:-473656,-710413 -) -] -) -] -!25990 -}95 -Input:793:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:794:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:795:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:796:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:797:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:798:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:799:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:800:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:801:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:802:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:803:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:804:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:805:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1220 -{96 -[1,5594:4262630,47279633:28320399,43253760,0 -(1,5594:4262630,4025873:0,0,0 -[1,5594:-473656,4025873:0,0,0 -(1,5594:-473656,-710413:0,0,0 -(1,5594:-473656,-644877:0,0,0 -k1,5594:-473656,-644877:-65536 +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,4803:37855564,2439708:1179648,16384,0 ) -(1,5594:-473656,4736287:0,0,0 -k1,5594:-473656,4736287:5209943 ) -g1,5594:-473656,-710413 +k1,4803:3078556,2439708:-34777008 ) ] +[1,4803:3078558,4812305:0,0,0 +(1,4803:3078558,49800853:0,16384,2228224 +k1,4803:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,4803:2537886,49800853:1179648,16384,0 ) -[1,5594:6630773,47279633:25952256,43253760,0 -[1,5594:6630773,4812305:25952256,786432,0 -(1,5594:6630773,4812305:25952256,485622,11795 -(1,5594:6630773,4812305:25952256,485622,11795 -g1,5594:3078558,4812305 -[1,5594:3078558,4812305:0,0,0 -(1,5594:3078558,2439708:0,1703936,0 -k1,5594:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,5594:2537886,2439708:1179648,16384,0 -) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,5594:3078558,1915420:16384,1179648,0 +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,4803:3078558,51504789:16384,1179648,0 ) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) ] ) ) ) ] -[1,5594:3078558,4812305:0,0,0 -(1,5594:3078558,2439708:0,1703936,0 -g1,5594:29030814,2439708 -g1,5594:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,5594:36151628,1915420:16384,1179648,0 +[1,4803:3078558,4812305:0,0,0 +(1,4803:3078558,49800853:0,16384,2228224 +g1,4803:29030814,49800853 +g1,4803:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,4803:36151628,51504789:16384,1179648,0 ) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 ) ] ) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,5594:37855564,2439708:1179648,16384,0 +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,4803:37855564,49800853:1179648,16384,0 ) ) -k1,5594:3078556,2439708:-34777008 +k1,4803:3078556,49800853:-34777008 ) ] -[1,5594:3078558,4812305:0,0,0 -(1,5594:3078558,49800853:0,16384,2228224 -k1,5594:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,5594:2537886,49800853:1179648,16384,0 +g1,4803:6630773,4812305 +g1,4803:6630773,4812305 +g1,4803:8826229,4812305 +g1,4803:13247287,4812305 +k1,4803:31786111,4812305:18538824 ) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,5594:3078558,51504789:16384,1179648,0 -) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 ) ] +[1,4803:6630773,45706769:25952256,40108032,0 +(1,4803:6630773,45706769:25952256,40108032,0 +(1,4803:6630773,45706769:0,0,0 +g1,4803:6630773,45706769 ) +[1,4803:6630773,45706769:25952256,40108032,0 +v1,4695:6630773,6254097:0,393216,0 +(1,4704:6630773,8780417:25952256,2919536,196608 +g1,4704:6630773,8780417 +g1,4704:6630773,8780417 +g1,4704:6434165,8780417 +(1,4704:6434165,8780417:0,2919536,196608 +r1,4803:32779637,8780417:26345472,3116144,196608 +k1,4704:6434165,8780417:-26345472 +) +(1,4704:6434165,8780417:26345472,2919536,196608 +[1,4704:6630773,8780417:25952256,2722928,0 +(1,4697:6630773,6481928:25952256,424439,79822 +(1,4696:6630773,6481928:0,0,0 +g1,4696:6630773,6481928 +g1,4696:6630773,6481928 +g1,4696:6303093,6481928 +(1,4696:6303093,6481928:0,0,0 +) +g1,4696:6630773,6481928 +) +g1,4697:8290543,6481928 +g1,4697:9286405,6481928 +h1,4697:13601806,6481928:0,0,0 +k1,4697:32583030,6481928:18981224 +g1,4697:32583030,6481928 +) +(1,4698:6630773,7166783:25952256,424439,79822 +h1,4698:6630773,7166783:0,0,0 +g1,4698:9950313,7166783 +g1,4698:10946175,7166783 +h1,4698:13933761,7166783:0,0,0 +k1,4698:32583029,7166783:18649268 +g1,4698:32583029,7166783 +) +(1,4699:6630773,7851638:25952256,407923,9908 +h1,4699:6630773,7851638:0,0,0 +h1,4699:7958589,7851638:0,0,0 +k1,4699:32583029,7851638:24624440 +g1,4699:32583029,7851638 +) +(1,4703:6630773,8667565:25952256,431045,112852 +(1,4701:6630773,8667565:0,0,0 +g1,4701:6630773,8667565 +g1,4701:6630773,8667565 +g1,4701:6303093,8667565 +(1,4701:6303093,8667565:0,0,0 +) +g1,4701:6630773,8667565 +) +g1,4703:7626635,8667565 +g1,4703:7958589,8667565 +g1,4703:9286405,8667565 +g1,4703:10614221,8667565 +g1,4703:11942037,8667565 +g1,4703:13269853,8667565 +g1,4703:14597669,8667565 +g1,4703:15925485,8667565 +g1,4703:17253301,8667565 +g1,4703:18581117,8667565 +g1,4703:19908933,8667565 +g1,4703:21236749,8667565 +h1,4703:22232611,8667565:0,0,0 +k1,4703:32583029,8667565:10350418 +g1,4703:32583029,8667565 +) +] +) +g1,4704:32583029,8780417 +g1,4704:6630773,8780417 +g1,4704:6630773,8780417 +g1,4704:32583029,8780417 +g1,4704:32583029,8780417 +) +h1,4704:6630773,8977025:0,0,0 +v1,4708:6630773,9842105:0,393216,0 +(1,4720:6630773,16927243:25952256,7478354,0 +g1,4720:6630773,16927243 +g1,4720:6237557,16927243 +r1,4803:6368629,16927243:131072,7478354,0 +g1,4720:6567858,16927243 +g1,4720:6764466,16927243 +[1,4720:6764466,16927243:25818563,7478354,0 +(1,4709:6764466,10114582:25818563,665693,196608 +(1,4708:6764466,10114582:0,665693,196608 +r1,4803:8010564,10114582:1246098,862301,196608 +k1,4708:6764466,10114582:-1246098 +) +(1,4708:6764466,10114582:1246098,665693,196608 +) +k1,4708:8160674,10114582:150110 +k1,4708:9886892,10114582:327680 +k1,4708:10934846,10114582:150111 +k1,4708:12427789,10114582:150110 +k1,4708:13971851,10114582:150111 +k1,4708:17428908,10114582:150110 +k1,4708:18230447,10114582:150111 +k1,4708:19839388,10114582:150110 +k1,4708:22156775,10114582:150111 +k1,4708:24899489,10114582:150110 +k1,4708:26812518,10114582:150111 +k1,4708:29722349,10114582:150110 +k1,4708:31202841,10114582:150111 +k1,4708:32583029,10114582:0 +) +(1,4709:6764466,10979662:25818563,513147,134348 +k1,4708:8511039,10979662:150116 +k1,4708:9852600,10979662:150116 +k1,4708:11333097,10979662:150116 +k1,4708:12863401,10979662:150116 +k1,4708:14117798,10979662:150115 +k1,4708:15015680,10979662:150116 +k1,4708:16852693,10979662:150116 +k1,4708:18135271,10979662:150116 +k1,4708:19033153,10979662:150116 +k1,4708:20537243,10979662:150116 +k1,4708:22664580,10979662:150116 +k1,4708:23430734,10979662:150116 +k1,4708:26374649,10979662:150115 +k1,4708:27695238,10979662:150116 +k1,4708:28660622,10979662:150116 +k1,4708:29426776,10979662:150116 +k1,4708:30595977,10979662:150116 +k1,4708:32583029,10979662:0 +) +(1,4709:6764466,11844742:25818563,513147,134348 +k1,4708:8304361,11844742:145944 +k1,4708:9038817,11844742:145943 +k1,4708:10675050,11844742:145944 +k1,4708:11840078,11844742:145943 +k1,4708:15000678,11844742:145944 +k1,4708:17808039,11844742:145944 +k1,4708:19822413,11844742:145943 +k1,4708:22283744,11844742:145944 +k1,4708:23448773,11844742:145944 +k1,4708:25248189,11844742:145943 +k1,4708:27518810,11844742:145944 +k1,4708:29424395,11844742:145943 +k1,4708:30799139,11844742:145944 +k1,4708:32583029,11844742:0 +) +(1,4709:6764466,12709822:25818563,513147,126483 +k1,4708:7435132,12709822:212569 +k1,4708:8506224,12709822:212570 +k1,4708:9480321,12709822:212569 +k1,4708:10725083,12709822:212570 +k1,4708:12489545,12709822:212569 +k1,4708:13721199,12709822:212569 +k1,4708:16175100,12709822:212570 +k1,4708:19574029,12709822:212569 +k1,4708:20402637,12709822:212570 +k1,4708:21634291,12709822:212569 +k1,4708:23817528,12709822:212569 +k1,4708:26072200,12709822:212570 +k1,4708:29029417,12709822:212569 +(1,4708:29029417,12709822:0,414482,115847 +r1,4803:29387683,12709822:358266,530329,115847 +k1,4708:29029417,12709822:-358266 +) +(1,4708:29029417,12709822:358266,414482,115847 +k1,4708:29029417,12709822:3277 +h1,4708:29384406,12709822:0,411205,112570 +) +k1,4708:29773923,12709822:212570 +k1,4708:30884991,12709822:212569 +k1,4708:32583029,12709822:0 +) +(1,4709:6764466,13574902:25818563,513147,134348 +k1,4708:9778635,13574902:240030 +k1,4708:13174878,13574902:240029 +k1,4708:14074200,13574902:240030 +k1,4708:15517470,13574902:240029 +k1,4708:18418917,13574902:240030 +k1,4708:19829420,13574902:240030 +k1,4708:21201911,13574902:240029 +k1,4708:22972207,13574902:240030 +k1,4708:23863665,13574902:240030 +k1,4708:26668773,13574902:240029 +(1,4708:26668773,13574902:0,414482,115847 +r1,4803:27027039,13574902:358266,530329,115847 +k1,4708:26668773,13574902:-358266 +) +(1,4708:26668773,13574902:358266,414482,115847 +k1,4708:26668773,13574902:3277 +h1,4708:27023762,13574902:0,411205,112570 +) +k1,4708:27267069,13574902:240030 +k1,4708:28268626,13574902:240029 +k1,4708:31563944,13574902:240030 +k1,4708:32583029,13574902:0 +) +(1,4709:6764466,14439982:25818563,513147,126483 +g1,4708:8269828,14439982 +g1,4708:11829088,14439982 +g1,4708:13479939,14439982 +g1,4708:15104576,14439982 +g1,4708:16474278,14439982 +g1,4708:17791551,14439982 +g1,4708:18346640,14439982 +g1,4708:21371781,14439982 +g1,4708:22230302,14439982 +g1,4708:23448616,14439982 +g1,4708:25889176,14439982 +k1,4709:32583029,14439982:3333822 +g1,4709:32583029,14439982 +) +v1,4711:6764466,15124837:0,393216,0 +(1,4717:6764466,16730635:25818563,1999014,196608 +g1,4717:6764466,16730635 +g1,4717:6764466,16730635 +g1,4717:6567858,16730635 +(1,4717:6567858,16730635:0,1999014,196608 +r1,4803:32779637,16730635:26211779,2195622,196608 +k1,4717:6567857,16730635:-26211780 +) +(1,4717:6567858,16730635:26211779,1999014,196608 +[1,4717:6764466,16730635:25818563,1802406,0 +(1,4713:6764466,15352668:25818563,424439,79822 +(1,4712:6764466,15352668:0,0,0 +g1,4712:6764466,15352668 +g1,4712:6764466,15352668 +g1,4712:6436786,15352668 +(1,4712:6436786,15352668:0,0,0 +) +g1,4712:6764466,15352668 +) +g1,4713:8424236,15352668 +g1,4713:9420098,15352668 +h1,4713:13735499,15352668:0,0,0 +k1,4713:32583029,15352668:18847530 +g1,4713:32583029,15352668 +) +(1,4714:6764466,16037523:25818563,424439,86428 +h1,4714:6764466,16037523:0,0,0 +g1,4714:10084006,16037523 +g1,4714:11079868,16037523 +k1,4714:11079868,16037523:0 +h1,4714:17386994,16037523:0,0,0 +k1,4714:32583029,16037523:15196035 +g1,4714:32583029,16037523 +) +(1,4715:6764466,16722378:25818563,407923,8257 +h1,4715:6764466,16722378:0,0,0 +h1,4715:8092282,16722378:0,0,0 +k1,4715:32583030,16722378:24490748 +g1,4715:32583030,16722378 +) +] +) +g1,4717:32583029,16730635 +g1,4717:6764466,16730635 +g1,4717:6764466,16730635 +g1,4717:32583029,16730635 +g1,4717:32583029,16730635 +) +h1,4717:6764466,16927243:0,0,0 +] +g1,4720:32583029,16927243 +) +h1,4720:6630773,16927243:0,0,0 +v1,4722:6630773,17792323:0,393216,0 +(1,4803:6630773,45320397:25952256,27921290,0 +g1,4803:6630773,45320397 +g1,4803:6237557,45320397 +r1,4803:6368629,45320397:131072,27921290,0 +g1,4803:6567858,45320397 +g1,4803:6764466,45320397 +[1,4803:6764466,45320397:25818563,27921290,0 +(1,4724:6764466,18100621:25818563,701514,196608 +(1,4722:6764466,18100621:0,701514,196608 +r1,4803:8010564,18100621:1246098,898122,196608 +k1,4722:6764466,18100621:-1246098 +) +(1,4722:6764466,18100621:1246098,701514,196608 +) +k1,4722:8229768,18100621:219204 +k1,4722:8557448,18100621:327680 +k1,4722:8557448,18100621:0 +k1,4723:8557448,18100621:0 +k1,4723:9404487,18100621:219204 +k1,4723:10212204,18100621:219204 +k1,4723:13170814,18100621:219205 +k1,4723:14783969,18100621:219204 +k1,4723:18178392,18100621:219204 +k1,4723:20824394,18100621:219204 +k1,4723:22147880,18100621:219204 +k1,4723:23114850,18100621:219204 +k1,4723:24911507,18100621:219205 +k1,4723:26524662,18100621:219204 +(1,4723:26524662,18100621:0,452978,122846 +r1,4803:28993199,18100621:2468537,575824,122846 +k1,4723:26524662,18100621:-2468537 +) +(1,4723:26524662,18100621:2468537,452978,122846 +k1,4723:26524662,18100621:3277 +h1,4723:28989922,18100621:0,411205,112570 +) +k1,4723:29212403,18100621:219204 +k1,4723:30114492,18100621:219204 +(1,4723:30114492,18100621:0,452978,115847 +r1,4803:32583029,18100621:2468537,568825,115847 +k1,4723:30114492,18100621:-2468537 +) +(1,4723:30114492,18100621:2468537,452978,115847 +k1,4723:30114492,18100621:3277 +h1,4723:32579752,18100621:0,411205,112570 +) +k1,4723:32583029,18100621:0 +) +(1,4724:6764466,18965701:25818563,513147,134348 +k1,4723:9247734,18965701:298953 +k1,4723:12244149,18965701:298953 +k1,4723:14553748,18965701:298954 +k1,4723:15956983,18965701:298953 +k1,4723:17003702,18965701:298953 +k1,4723:19248419,18965701:298953 +k1,4723:20619541,18965701:298953 +k1,4723:21866145,18965701:298953 +k1,4723:25078174,18965701:298954 +k1,4723:26752728,18965701:298953 +k1,4723:29281871,18965701:298953 +k1,4723:31591469,18965701:298953 +k1,4723:32583029,18965701:0 +) +(1,4724:6764466,19830781:25818563,513147,134348 +k1,4723:10749658,19830781:198522 +k1,4723:15468855,19830781:198523 +(1,4723:15468855,19830781:0,452978,115847 +r1,4803:17585680,19830781:2116825,568825,115847 +k1,4723:15468855,19830781:-2116825 +) +(1,4723:15468855,19830781:2116825,452978,115847 +k1,4723:15468855,19830781:3277 +h1,4723:17582403,19830781:0,411205,112570 +) +k1,4723:17784202,19830781:198522 +k1,4723:19993370,19830781:198523 +k1,4723:21183452,19830781:198522 +k1,4723:24542776,19830781:198523 +k1,4723:26008764,19830781:198522 +(1,4723:26008764,19830781:0,452978,122846 +r1,4803:28477301,19830781:2468537,575824,122846 +k1,4723:26008764,19830781:-2468537 +) +(1,4723:26008764,19830781:2468537,452978,122846 +k1,4723:26008764,19830781:3277 +h1,4723:28474024,19830781:0,411205,112570 +) +k1,4723:28675824,19830781:198523 +k1,4723:30884991,19830781:198522 +k1,4723:32583029,19830781:0 +) +(1,4724:6764466,20695861:25818563,505283,126483 +k1,4723:8443498,20695861:165806 +k1,4723:9295466,20695861:165806 +k1,4723:12061741,20695861:165806 +k1,4723:13424234,20695861:165806 +k1,4723:17066725,20695861:165806 +k1,4723:17764028,20695861:165806 +k1,4723:19507286,20695861:165806 +k1,4723:22519321,20695861:165806 +k1,4723:23757296,20695861:165806 +k1,4723:24381199,20695861:165806 +k1,4723:26039915,20695861:165806 +k1,4723:27656688,20695861:165806 +k1,4723:29573616,20695861:165806 +k1,4724:32583029,20695861:0 +) +(1,4724:6764466,21560941:25818563,505283,134348 +k1,4723:8570492,21560941:208258 +k1,4723:11301230,21560941:208257 +k1,4723:13292723,21560941:208258 +k1,4723:16087686,21560941:208257 +k1,4723:17105314,21560941:208258 +k1,4723:18289402,21560941:208257 +k1,4723:19887023,21560941:208258 +k1,4723:21533795,21560941:208257 +k1,4723:24639400,21560941:208258 +k1,4723:26583050,21560941:208257 +(1,4723:26583050,21560941:0,452978,122846 +r1,4803:29051587,21560941:2468537,575824,122846 +k1,4723:26583050,21560941:-2468537 +) +(1,4723:26583050,21560941:2468537,452978,122846 +k1,4723:26583050,21560941:3277 +h1,4723:29048310,21560941:0,411205,112570 +) +k1,4723:29259845,21560941:208258 +k1,4723:31478747,21560941:208257 +k1,4723:32583029,21560941:0 +) +(1,4724:6764466,22426021:25818563,513147,126483 +g1,4723:9592999,22426021 +k1,4724:32583029,22426021:18740676 +g1,4724:32583029,22426021 +) +v1,4726:6764466,23110876:0,393216,0 +(1,4758:6764466,31446727:25818563,8729067,196608 +g1,4758:6764466,31446727 +g1,4758:6764466,31446727 +g1,4758:6567858,31446727 +(1,4758:6567858,31446727:0,8729067,196608 +r1,4803:32779637,31446727:26211779,8925675,196608 +k1,4758:6567857,31446727:-26211780 +) +(1,4758:6567858,31446727:26211779,8729067,196608 +[1,4758:6764466,31446727:25818563,8532459,0 +(1,4728:6764466,23338707:25818563,424439,79822 +(1,4727:6764466,23338707:0,0,0 +g1,4727:6764466,23338707 +g1,4727:6764466,23338707 +g1,4727:6436786,23338707 +(1,4727:6436786,23338707:0,0,0 +) +g1,4727:6764466,23338707 +) +g1,4728:8424236,23338707 +g1,4728:9420098,23338707 +h1,4728:13735499,23338707:0,0,0 +k1,4728:32583029,23338707:18847530 +g1,4728:32583029,23338707 +) +(1,4729:6764466,24023562:25818563,398014,6605 +h1,4729:6764466,24023562:0,0,0 +h1,4729:8092282,24023562:0,0,0 +k1,4729:32583030,24023562:24490748 +g1,4729:32583030,24023562 +) +(1,4733:6764466,24839489:25818563,424439,79822 +(1,4731:6764466,24839489:0,0,0 +g1,4731:6764466,24839489 +g1,4731:6764466,24839489 +g1,4731:6436786,24839489 +(1,4731:6436786,24839489:0,0,0 +) +g1,4731:6764466,24839489 +) +g1,4733:7760328,24839489 +g1,4733:8092282,24839489 +g1,4733:9420098,24839489 +g1,4733:10747914,24839489 +g1,4733:12075730,24839489 +g1,4733:13403546,24839489 +g1,4733:14731362,24839489 +g1,4733:16059178,24839489 +g1,4733:17386994,24839489 +g1,4733:18714810,24839489 +g1,4733:20042626,24839489 +g1,4733:21370442,24839489 +h1,4733:22366304,24839489:0,0,0 +k1,4733:32583029,24839489:10216725 +g1,4733:32583029,24839489 +) +(1,4735:6764466,25655416:25818563,424439,79822 +(1,4734:6764466,25655416:0,0,0 +g1,4734:6764466,25655416 +g1,4734:6764466,25655416 +g1,4734:6436786,25655416 +(1,4734:6436786,25655416:0,0,0 +) +g1,4734:6764466,25655416 +) +h1,4735:9088144,25655416:0,0,0 +k1,4735:32583028,25655416:23494884 +g1,4735:32583028,25655416 +) +(1,4739:6764466,26471343:25818563,424439,79822 +(1,4737:6764466,26471343:0,0,0 +g1,4737:6764466,26471343 +g1,4737:6764466,26471343 +g1,4737:6436786,26471343 +(1,4737:6436786,26471343:0,0,0 +) +g1,4737:6764466,26471343 +) +g1,4739:7760328,26471343 +g1,4739:9088144,26471343 +h1,4739:10084006,26471343:0,0,0 +k1,4739:32583030,26471343:22499024 +g1,4739:32583030,26471343 +) +(1,4741:6764466,27287270:25818563,424439,79822 +(1,4740:6764466,27287270:0,0,0 +g1,4740:6764466,27287270 +g1,4740:6764466,27287270 +g1,4740:6436786,27287270 +(1,4740:6436786,27287270:0,0,0 +) +g1,4740:6764466,27287270 +) +h1,4741:9752052,27287270:0,0,0 +k1,4741:32583028,27287270:22830976 +g1,4741:32583028,27287270 +) +(1,4745:6764466,28103197:25818563,424439,79822 +(1,4743:6764466,28103197:0,0,0 +g1,4743:6764466,28103197 +g1,4743:6764466,28103197 +g1,4743:6436786,28103197 +(1,4743:6436786,28103197:0,0,0 +) +g1,4743:6764466,28103197 +) +g1,4745:7760328,28103197 +g1,4745:9088144,28103197 +h1,4745:10084006,28103197:0,0,0 +k1,4745:32583030,28103197:22499024 +g1,4745:32583030,28103197 +) +(1,4747:6764466,28919124:25818563,424439,106246 +(1,4746:6764466,28919124:0,0,0 +g1,4746:6764466,28919124 +g1,4746:6764466,28919124 +g1,4746:6436786,28919124 +(1,4746:6436786,28919124:0,0,0 +) +g1,4746:6764466,28919124 +) +g1,4747:11079868,28919124 +g1,4747:11743776,28919124 +k1,4747:11743776,28919124:0 +h1,4747:15063315,28919124:0,0,0 +k1,4747:32583029,28919124:17519714 +g1,4747:32583029,28919124 +) +(1,4751:6764466,29735051:25818563,424439,79822 +(1,4749:6764466,29735051:0,0,0 +g1,4749:6764466,29735051 +g1,4749:6764466,29735051 +g1,4749:6436786,29735051 +(1,4749:6436786,29735051:0,0,0 +) +g1,4749:6764466,29735051 +) +g1,4751:7760328,29735051 +g1,4751:9088144,29735051 +h1,4751:10084006,29735051:0,0,0 +k1,4751:32583030,29735051:22499024 +g1,4751:32583030,29735051 +) +(1,4753:6764466,30550978:25818563,424439,79822 +(1,4752:6764466,30550978:0,0,0 +g1,4752:6764466,30550978 +g1,4752:6764466,30550978 +g1,4752:6436786,30550978 +(1,4752:6436786,30550978:0,0,0 +) +g1,4752:6764466,30550978 +) +h1,4753:9088144,30550978:0,0,0 +k1,4753:32583028,30550978:23494884 +g1,4753:32583028,30550978 +) +(1,4757:6764466,31366905:25818563,424439,79822 +(1,4755:6764466,31366905:0,0,0 +g1,4755:6764466,31366905 +g1,4755:6764466,31366905 +g1,4755:6436786,31366905 +(1,4755:6436786,31366905:0,0,0 +) +g1,4755:6764466,31366905 +) +g1,4757:7760328,31366905 +g1,4757:9088144,31366905 +h1,4757:10084006,31366905:0,0,0 +k1,4757:32583030,31366905:22499024 +g1,4757:32583030,31366905 +) +] +) +g1,4758:32583029,31446727 +g1,4758:6764466,31446727 +g1,4758:6764466,31446727 +g1,4758:32583029,31446727 +g1,4758:32583029,31446727 +) +h1,4758:6764466,31643335:0,0,0 +(1,4762:6764466,32508415:25818563,513147,126483 +h1,4761:6764466,32508415:983040,0,0 +k1,4761:9587454,32508415:177955 +k1,4761:10968651,32508415:177956 +k1,4761:14929344,32508415:177955 +k1,4761:15975652,32508415:177956 +k1,4761:17257889,32508415:177955 +k1,4761:19047374,32508415:177955 +k1,4761:20509836,32508415:177956 +k1,4761:21153752,32508415:177955 +k1,4761:23841081,32508415:177955 +k1,4761:26445835,32508415:177956 +k1,4761:27615350,32508415:177955 +k1,4761:28859577,32508415:177956 +k1,4761:30920381,32508415:177955 +k1,4762:32583029,32508415:0 +) +(1,4762:6764466,33373495:25818563,505283,134348 +g1,4761:8503791,33373495 +g1,4761:10083208,33373495 +g1,4761:11273997,33373495 +g1,4761:14562593,33373495 +g1,4761:15413250,33373495 +g1,4761:16631564,33373495 +g1,4761:18214913,33373495 +g1,4761:20766229,33373495 +k1,4762:32583029,33373495:9412939 +g1,4762:32583029,33373495 +) +v1,4764:6764466,34058350:0,393216,0 +(1,4796:6764466,42394201:25818563,8729067,196608 +g1,4796:6764466,42394201 +g1,4796:6764466,42394201 +g1,4796:6567858,42394201 +(1,4796:6567858,42394201:0,8729067,196608 +r1,4803:32779637,42394201:26211779,8925675,196608 +k1,4796:6567857,42394201:-26211780 +) +(1,4796:6567858,42394201:26211779,8729067,196608 +[1,4796:6764466,42394201:25818563,8532459,0 +(1,4766:6764466,34286181:25818563,424439,79822 +(1,4765:6764466,34286181:0,0,0 +g1,4765:6764466,34286181 +g1,4765:6764466,34286181 +g1,4765:6436786,34286181 +(1,4765:6436786,34286181:0,0,0 +) +g1,4765:6764466,34286181 +) +g1,4766:8424236,34286181 +g1,4766:9420098,34286181 +h1,4766:13735499,34286181:0,0,0 +k1,4766:32583029,34286181:18847530 +g1,4766:32583029,34286181 +) +(1,4767:6764466,34971036:25818563,398014,6605 +h1,4767:6764466,34971036:0,0,0 +h1,4767:8092282,34971036:0,0,0 +k1,4767:32583030,34971036:24490748 +g1,4767:32583030,34971036 +) +(1,4771:6764466,35786963:25818563,424439,79822 +(1,4769:6764466,35786963:0,0,0 +g1,4769:6764466,35786963 +g1,4769:6764466,35786963 +g1,4769:6436786,35786963 +(1,4769:6436786,35786963:0,0,0 +) +g1,4769:6764466,35786963 +) +g1,4771:7760328,35786963 +g1,4771:8092282,35786963 +g1,4771:9420098,35786963 +g1,4771:10747914,35786963 +g1,4771:12075730,35786963 +g1,4771:13403546,35786963 +g1,4771:14731362,35786963 +g1,4771:16059178,35786963 +g1,4771:17386994,35786963 +g1,4771:18714810,35786963 +g1,4771:20042626,35786963 +g1,4771:21370442,35786963 +h1,4771:22366304,35786963:0,0,0 +k1,4771:32583029,35786963:10216725 +g1,4771:32583029,35786963 +) +(1,4773:6764466,36602890:25818563,424439,79822 +(1,4772:6764466,36602890:0,0,0 +g1,4772:6764466,36602890 +g1,4772:6764466,36602890 +g1,4772:6436786,36602890 +(1,4772:6436786,36602890:0,0,0 +) +g1,4772:6764466,36602890 +) +k1,4773:6764466,36602890:0 +h1,4773:9420098,36602890:0,0,0 +k1,4773:32583030,36602890:23162932 +g1,4773:32583030,36602890 +) +(1,4777:6764466,37418817:25818563,424439,79822 +(1,4775:6764466,37418817:0,0,0 +g1,4775:6764466,37418817 +g1,4775:6764466,37418817 +g1,4775:6436786,37418817 +(1,4775:6436786,37418817:0,0,0 +) +g1,4775:6764466,37418817 +) +g1,4777:7760328,37418817 +g1,4777:9088144,37418817 +g1,4777:10415960,37418817 +g1,4777:11743776,37418817 +g1,4777:13071592,37418817 +g1,4777:14399408,37418817 +g1,4777:15727224,37418817 +g1,4777:17055040,37418817 +g1,4777:18382856,37418817 +g1,4777:19710672,37418817 +h1,4777:20706534,37418817:0,0,0 +k1,4777:32583029,37418817:11876495 +g1,4777:32583029,37418817 +) +(1,4779:6764466,38234744:25818563,424439,79822 +(1,4778:6764466,38234744:0,0,0 +g1,4778:6764466,38234744 +g1,4778:6764466,38234744 +g1,4778:6436786,38234744 +(1,4778:6436786,38234744:0,0,0 +) +g1,4778:6764466,38234744 +) +k1,4779:6764466,38234744:0 +h1,4779:10084006,38234744:0,0,0 +k1,4779:32583030,38234744:22499024 +g1,4779:32583030,38234744 +) +(1,4783:6764466,39050671:25818563,424439,79822 +(1,4781:6764466,39050671:0,0,0 +g1,4781:6764466,39050671 +g1,4781:6764466,39050671 +g1,4781:6436786,39050671 +(1,4781:6436786,39050671:0,0,0 +) +g1,4781:6764466,39050671 +) +g1,4783:7760328,39050671 +g1,4783:9088144,39050671 +g1,4783:10415960,39050671 +g1,4783:11743776,39050671 +g1,4783:13071592,39050671 +g1,4783:14399408,39050671 +g1,4783:15727224,39050671 +g1,4783:17055040,39050671 +g1,4783:18382856,39050671 +g1,4783:19710672,39050671 +h1,4783:20706534,39050671:0,0,0 +k1,4783:32583029,39050671:11876495 +g1,4783:32583029,39050671 +) +(1,4785:6764466,39866598:25818563,424439,79822 +(1,4784:6764466,39866598:0,0,0 +g1,4784:6764466,39866598 +g1,4784:6764466,39866598 +g1,4784:6436786,39866598 +(1,4784:6436786,39866598:0,0,0 +) +g1,4784:6764466,39866598 +) +k1,4785:6764466,39866598:0 +h1,4785:11079868,39866598:0,0,0 +k1,4785:32583028,39866598:21503160 +g1,4785:32583028,39866598 +) +(1,4789:6764466,40682525:25818563,424439,79822 +(1,4787:6764466,40682525:0,0,0 +g1,4787:6764466,40682525 +g1,4787:6764466,40682525 +g1,4787:6436786,40682525 +(1,4787:6436786,40682525:0,0,0 +) +g1,4787:6764466,40682525 +) +g1,4789:7760328,40682525 +g1,4789:9088144,40682525 +g1,4789:10415960,40682525 +g1,4789:11743776,40682525 +g1,4789:13071592,40682525 +g1,4789:14399408,40682525 +g1,4789:15727224,40682525 +g1,4789:17055040,40682525 +g1,4789:18382856,40682525 +g1,4789:19710672,40682525 +h1,4789:20706534,40682525:0,0,0 +k1,4789:32583029,40682525:11876495 +g1,4789:32583029,40682525 +) +(1,4791:6764466,41498452:25818563,424439,79822 +(1,4790:6764466,41498452:0,0,0 +g1,4790:6764466,41498452 +g1,4790:6764466,41498452 +g1,4790:6436786,41498452 +(1,4790:6436786,41498452:0,0,0 +) +g1,4790:6764466,41498452 +) +k1,4791:6764466,41498452:0 +h1,4791:9420098,41498452:0,0,0 +k1,4791:32583030,41498452:23162932 +g1,4791:32583030,41498452 +) +(1,4795:6764466,42314379:25818563,424439,79822 +(1,4793:6764466,42314379:0,0,0 +g1,4793:6764466,42314379 +g1,4793:6764466,42314379 +g1,4793:6436786,42314379 +(1,4793:6436786,42314379:0,0,0 +) +g1,4793:6764466,42314379 +) +g1,4795:7760328,42314379 +g1,4795:9088144,42314379 +g1,4795:10415960,42314379 +g1,4795:11743776,42314379 +g1,4795:13071592,42314379 +g1,4795:14399408,42314379 +g1,4795:15727224,42314379 +g1,4795:17055040,42314379 +g1,4795:18382856,42314379 +g1,4795:19710672,42314379 +h1,4795:20706534,42314379:0,0,0 +k1,4795:32583029,42314379:11876495 +g1,4795:32583029,42314379 +) +] +) +g1,4796:32583029,42394201 +g1,4796:6764466,42394201 +g1,4796:6764466,42394201 +g1,4796:32583029,42394201 +g1,4796:32583029,42394201 +) +h1,4796:6764466,42590809:0,0,0 +(1,4800:6764466,43455889:25818563,513147,134348 +h1,4799:6764466,43455889:983040,0,0 +k1,4799:9576263,43455889:166764 +k1,4799:10946268,43455889:166764 +k1,4799:14895770,43455889:166764 +k1,4799:15930886,43455889:166764 +k1,4799:17201932,43455889:166764 +k1,4799:18980226,43455889:166764 +k1,4799:20431495,43455889:166763 +k1,4799:21064220,43455889:166764 +k1,4799:23885847,43455889:166764 +k1,4799:26479409,43455889:166764 +k1,4799:27637733,43455889:166764 +k1,4799:28870768,43455889:166764 +k1,4799:30920381,43455889:166764 +k1,4800:32583029,43455889:0 +) +(1,4800:6764466,44320969:25818563,505283,134348 +k1,4799:8552780,44320969:248218 +k1,4799:10181185,44320969:248217 +k1,4799:11420963,44320969:248218 +k1,4799:14758547,44320969:248217 +k1,4799:15658193,44320969:248218 +k1,4799:16925496,44320969:248218 +k1,4799:18557833,44320969:248217 +k1,4799:20665307,44320969:248218 +k1,4799:22333689,44320969:248217 +k1,4799:25443864,44320969:248218 +k1,4799:28095942,44320969:248217 +k1,4799:28971995,44320969:248218 +k1,4800:32583029,44320969:0 +) +(1,4800:6764466,45186049:25818563,513147,134348 +(1,4799:6764466,45186049:0,452978,115847 +r1,4803:8881291,45186049:2116825,568825,115847 +k1,4799:6764466,45186049:-2116825 +) +(1,4799:6764466,45186049:2116825,452978,115847 +k1,4799:6764466,45186049:3277 +h1,4799:8878014,45186049:0,411205,112570 +) +g1,4799:9080520,45186049 +g1,4799:11028905,45186049 +g1,4799:13238779,45186049 +g1,4799:15660989,45186049 +g1,4799:16546380,45186049 +g1,4799:17211570,45186049 +g1,4799:18790987,45186049 +g1,4799:20909110,45186049 +g1,4799:24026657,45186049 +g1,4799:25961279,45186049 +g1,4799:28856004,45186049 +(1,4799:28856004,45186049:0,452978,115847 +r1,4803:31324541,45186049:2468537,568825,115847 +k1,4799:28856004,45186049:-2468537 +) +(1,4799:28856004,45186049:2468537,452978,115847 +k1,4799:28856004,45186049:3277 +h1,4799:31321264,45186049:0,411205,112570 +) +k1,4800:32583029,45186049:1084818 +g1,4800:32583029,45186049 +) +] +g1,4803:32583029,45320397 +) +] +(1,4803:32583029,45706769:0,0,0 +g1,4803:32583029,45706769 +) +) +] +(1,4803:6630773,47279633:25952256,0,0 +h1,4803:6630773,47279633:25952256,0,0 +) +] +(1,4803:4262630,4025873:0,0,0 +[1,4803:-473656,4025873:0,0,0 +(1,4803:-473656,-710413:0,0,0 +(1,4803:-473656,-710413:0,0,0 +g1,4803:-473656,-710413 +) +g1,4803:-473656,-710413 +) +] +) +] +!27456 +}82 +Input:773:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:774:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:775:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:776:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:777:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:778:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:779:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:780:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!755 +{83 +[1,4901:4262630,47279633:28320399,43253760,0 +(1,4901:4262630,4025873:0,0,0 +[1,4901:-473656,4025873:0,0,0 +(1,4901:-473656,-710413:0,0,0 +(1,4901:-473656,-644877:0,0,0 +k1,4901:-473656,-644877:-65536 ) +(1,4901:-473656,4736287:0,0,0 +k1,4901:-473656,4736287:5209943 ) -] -[1,5594:3078558,4812305:0,0,0 -(1,5594:3078558,49800853:0,16384,2228224 -g1,5594:29030814,49800853 -g1,5594:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,5594:36151628,51504789:16384,1179648,0 -) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 +g1,4901:-473656,-710413 ) ] ) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,5594:37855564,49800853:1179648,16384,0 +[1,4901:6630773,47279633:25952256,43253760,0 +[1,4901:6630773,4812305:25952256,786432,0 +(1,4901:6630773,4812305:25952256,505283,11795 +(1,4901:6630773,4812305:25952256,505283,11795 +g1,4901:3078558,4812305 +[1,4901:3078558,4812305:0,0,0 +(1,4901:3078558,2439708:0,1703936,0 +k1,4901:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,4901:2537886,2439708:1179648,16384,0 ) +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,4901:3078558,1915420:16384,1179648,0 ) -k1,5594:3078556,49800853:-34777008 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) -] -g1,5594:6630773,4812305 -g1,5594:6630773,4812305 -g1,5594:9104757,4812305 -k1,5594:31786111,4812305:22681354 -) -) -] -[1,5594:6630773,45706769:25952256,40108032,0 -(1,5594:6630773,45706769:25952256,40108032,0 -(1,5594:6630773,45706769:0,0,0 -g1,5594:6630773,45706769 -) -[1,5594:6630773,45706769:25952256,40108032,0 -(1,5512:6630773,6254097:25952256,505283,134348 -k1,5511:7858732,6254097:208874 -k1,5511:10045483,6254097:208874 -k1,5511:10785853,6254097:208873 -(1,5511:10785853,6254097:0,452978,115847 -r1,5594:13254390,6254097:2468537,568825,115847 -k1,5511:10785853,6254097:-2468537 -) -(1,5511:10785853,6254097:2468537,452978,115847 -k1,5511:10785853,6254097:3277 -h1,5511:13251113,6254097:0,411205,112570 -) -k1,5511:13463264,6254097:208874 -k1,5511:14863583,6254097:208874 -k1,5511:15881827,6254097:208874 -k1,5511:17934883,6254097:208873 -k1,5511:19135317,6254097:208874 -k1,5511:22278893,6254097:208874 -k1,5511:23949875,6254097:208874 -k1,5511:26002931,6254097:208873 -k1,5511:27203365,6254097:208874 -k1,5511:30386918,6254097:208874 -k1,5511:32583029,6254097:0 -) -(1,5512:6630773,7095585:25952256,513147,134348 -g1,5511:9801404,7095585 -g1,5511:11019718,7095585 -g1,5511:14208699,7095585 -g1,5511:15604615,7095585 -g1,5511:18069424,7095585 -g1,5511:20998228,7095585 -g1,5511:21856749,7095585 -g1,5511:23075063,7095585 -g1,5511:25066702,7095585 -g1,5511:25797428,7095585 -k1,5512:32583029,7095585:1678380 -g1,5512:32583029,7095585 -) -v1,5514:6630773,8233901:0,393216,0 -(1,5536:6630773,15094245:25952256,7253560,196608 -g1,5536:6630773,15094245 -g1,5536:6630773,15094245 -g1,5536:6434165,15094245 -(1,5536:6434165,15094245:0,7253560,196608 -r1,5594:32779637,15094245:26345472,7450168,196608 -k1,5536:6434165,15094245:-26345472 -) -(1,5536:6434165,15094245:26345472,7253560,196608 -[1,5536:6630773,15094245:25952256,7056952,0 -(1,5516:6630773,8447811:25952256,410518,82312 -(1,5515:6630773,8447811:0,0,0 -g1,5515:6630773,8447811 -g1,5515:6630773,8447811 -g1,5515:6303093,8447811 -(1,5515:6303093,8447811:0,0,0 -) -g1,5515:6630773,8447811 -) -k1,5516:6630773,8447811:0 -g1,5516:9476085,8447811 -g1,5516:10108377,8447811 -g1,5516:11689107,8447811 -g1,5516:12637545,8447811 -g1,5516:13585983,8447811 -g1,5516:14534421,8447811 -g1,5516:15482859,8447811 -g1,5516:16431297,8447811 -h1,5516:17379734,8447811:0,0,0 -k1,5516:32583029,8447811:15203295 -g1,5516:32583029,8447811 -) -(1,5521:6630773,9113989:25952256,404226,76021 -(1,5518:6630773,9113989:0,0,0 -g1,5518:6630773,9113989 -g1,5518:6630773,9113989 -g1,5518:6303093,9113989 -(1,5518:6303093,9113989:0,0,0 -) -g1,5518:6630773,9113989 -) -g1,5521:7579210,9113989 -g1,5521:8843793,9113989 -g1,5521:9476085,9113989 -g1,5521:10108377,9113989 -g1,5521:10740669,9113989 -g1,5521:11372961,9113989 -g1,5521:12005253,9113989 -g1,5521:12637545,9113989 -h1,5521:12953691,9113989:0,0,0 -k1,5521:32583029,9113989:19629338 -g1,5521:32583029,9113989 -) -(1,5521:6630773,9780167:25952256,404226,6290 -h1,5521:6630773,9780167:0,0,0 -g1,5521:7579210,9780167 -g1,5521:10108376,9780167 -g1,5521:10740668,9780167 -h1,5521:11056814,9780167:0,0,0 -k1,5521:32583030,9780167:21526216 -g1,5521:32583030,9780167 -) -(1,5523:6630773,11101705:25952256,404226,82312 -(1,5522:6630773,11101705:0,0,0 -g1,5522:6630773,11101705 -g1,5522:6630773,11101705 -g1,5522:6303093,11101705 -(1,5522:6303093,11101705:0,0,0 -) -g1,5522:6630773,11101705 -) -k1,5523:6630773,11101705:0 -g1,5523:9792231,11101705 -g1,5523:10424523,11101705 -g1,5523:12005253,11101705 -g1,5523:12953691,11101705 -g1,5523:13902129,11101705 -g1,5523:14850567,11101705 -g1,5523:15799005,11101705 -g1,5523:16747443,11101705 -h1,5523:17695880,11101705:0,0,0 -k1,5523:32583029,11101705:14887149 -g1,5523:32583029,11101705 -) -(1,5528:6630773,11767883:25952256,404226,76021 -(1,5525:6630773,11767883:0,0,0 -g1,5525:6630773,11767883 -g1,5525:6630773,11767883 -g1,5525:6303093,11767883 -(1,5525:6303093,11767883:0,0,0 -) -g1,5525:6630773,11767883 -) -g1,5528:7579210,11767883 -g1,5528:8843793,11767883 -g1,5528:9476085,11767883 -g1,5528:10108377,11767883 -g1,5528:10740669,11767883 -g1,5528:11372961,11767883 -g1,5528:12005253,11767883 -g1,5528:12637545,11767883 -h1,5528:12953691,11767883:0,0,0 -k1,5528:32583029,11767883:19629338 -g1,5528:32583029,11767883 -) -(1,5528:6630773,12434061:25952256,404226,6290 -h1,5528:6630773,12434061:0,0,0 -g1,5528:7579210,12434061 -g1,5528:10108376,12434061 -g1,5528:10740668,12434061 -g1,5528:11372960,12434061 -h1,5528:11689106,12434061:0,0,0 -k1,5528:32583030,12434061:20893924 -g1,5528:32583030,12434061 -) -(1,5530:6630773,13755599:25952256,410518,82312 -(1,5529:6630773,13755599:0,0,0 -g1,5529:6630773,13755599 -g1,5529:6630773,13755599 -g1,5529:6303093,13755599 -(1,5529:6303093,13755599:0,0,0 -) -g1,5529:6630773,13755599 -) -k1,5530:6630773,13755599:0 -g1,5530:9476085,13755599 -g1,5530:10108377,13755599 -g1,5530:11689107,13755599 -g1,5530:12637545,13755599 -g1,5530:13585983,13755599 -g1,5530:14534421,13755599 -g1,5530:15482859,13755599 -g1,5530:16431297,13755599 -g1,5530:17695881,13755599 -g1,5530:20225047,13755599 -g1,5530:20857339,13755599 -h1,5530:22438068,13755599:0,0,0 -k1,5530:32583029,13755599:10144961 -g1,5530:32583029,13755599 -) -(1,5535:6630773,14421777:25952256,404226,76021 -(1,5532:6630773,14421777:0,0,0 -g1,5532:6630773,14421777 -g1,5532:6630773,14421777 -g1,5532:6303093,14421777 -(1,5532:6303093,14421777:0,0,0 -) -g1,5532:6630773,14421777 -) -g1,5535:7579210,14421777 -g1,5535:8843793,14421777 -g1,5535:9476085,14421777 -g1,5535:10108377,14421777 -g1,5535:10740669,14421777 -g1,5535:11372961,14421777 -g1,5535:12005253,14421777 -g1,5535:12637545,14421777 -h1,5535:12953691,14421777:0,0,0 -k1,5535:32583029,14421777:19629338 -g1,5535:32583029,14421777 -) -(1,5535:6630773,15087955:25952256,404226,6290 -h1,5535:6630773,15087955:0,0,0 -g1,5535:7579210,15087955 -g1,5535:10108376,15087955 -g1,5535:10740668,15087955 -g1,5535:11372960,15087955 -h1,5535:11689106,15087955:0,0,0 -k1,5535:32583030,15087955:20893924 -g1,5535:32583030,15087955 -) -] -) -g1,5536:32583029,15094245 -g1,5536:6630773,15094245 -g1,5536:6630773,15094245 -g1,5536:32583029,15094245 -g1,5536:32583029,15094245 -) -h1,5536:6630773,15290853:0,0,0 -v1,5540:6630773,17076618:0,393216,0 -(1,5560:6630773,29440627:25952256,12757225,0 -g1,5560:6630773,29440627 -g1,5560:6303093,29440627 -r1,5594:6401397,29440627:98304,12757225,0 -g1,5560:6600626,29440627 -g1,5560:6797234,29440627 -[1,5560:6797234,29440627:25785795,12757225,0 -(1,5541:6797234,17438691:25785795,755289,196608 -(1,5540:6797234,17438691:0,755289,196608 -r1,5594:8134168,17438691:1336934,951897,196608 -k1,5540:6797234,17438691:-1336934 -) -(1,5540:6797234,17438691:1336934,755289,196608 -) -k1,5540:8412805,17438691:278637 -k1,5540:8740485,17438691:327680 -k1,5540:10802356,17438691:278636 -k1,5540:12100078,17438691:278637 -k1,5540:14719660,17438691:278636 -k1,5540:15657589,17438691:278637 -k1,5540:17728635,17438691:278636 -k1,5540:18538769,17438691:278637 -k1,5540:21265176,17438691:278637 -k1,5540:22001909,17438691:278636 -k1,5540:22812043,17438691:278637 -k1,5540:25720639,17438691:278636 -k1,5540:26650704,17438691:278637 -k1,5540:28021825,17438691:278636 -k1,5540:30995958,17438691:278637 -(1,5540:30995958,17438691:0,452978,122846 -r1,5594:32409359,17438691:1413401,575824,122846 -k1,5540:30995958,17438691:-1413401 -) -(1,5540:30995958,17438691:1413401,452978,122846 -k1,5540:30995958,17438691:3277 -h1,5540:32406082,17438691:0,411205,112570 -) -k1,5540:32583029,17438691:0 -) -(1,5541:6797234,18280179:25785795,513147,134348 -k1,5540:9833189,18280179:270336 -k1,5540:11988995,18280179:270336 -k1,5540:12910759,18280179:270336 -k1,5540:16204926,18280179:270336 -k1,5540:16831122,18280179:270336 -k1,5540:19169119,18280179:270336 -k1,5540:22844706,18280179:270336 -k1,5540:23573140,18280179:270337 -k1,5540:24374973,18280179:270336 -k1,5540:26366284,18280179:270336 -k1,5540:27288048,18280179:270336 -k1,5540:28970685,18280179:270336 -k1,5540:30630384,18280179:270336 -k1,5540:32168186,18280179:270336 -k1,5541:32583029,18280179:0 -) -(1,5541:6797234,19121667:25785795,513147,134348 -k1,5540:8568727,19121667:203872 -k1,5540:10085940,19121667:203871 -k1,5540:10905850,19121667:203872 -k1,5540:12995193,19121667:203872 -k1,5540:14218149,19121667:203871 -k1,5540:17566438,19121667:203872 -k1,5540:19596798,19121667:203872 -k1,5540:20792229,19121667:203871 -k1,5540:23330493,19121667:203872 -k1,5540:26318334,19121667:203872 -k1,5540:27208367,19121667:203871 -k1,5540:30386918,19121667:203872 -k1,5540:32583029,19121667:0 -) -(1,5541:6797234,19963155:25785795,513147,122846 -k1,5540:7721587,19963155:241468 -k1,5540:10583185,19963155:241469 -k1,5540:13008968,19963155:241468 -k1,5540:16094699,19963155:241468 -k1,5540:18034206,19963155:241469 -k1,5540:19144026,19963155:241468 -k1,5540:20915761,19963155:241469 -k1,5540:21808657,19963155:241468 -k1,5540:23979505,19963155:241468 -k1,5540:24576834,19963155:241469 -k1,5540:26712292,19963155:241468 -k1,5540:28963749,19963155:241468 -k1,5540:29823878,19963155:241469 -(1,5540:29823878,19963155:0,452978,122846 -r1,5594:31237279,19963155:1413401,575824,122846 -k1,5540:29823878,19963155:-1413401 -) -(1,5540:29823878,19963155:1413401,452978,122846 -k1,5540:29823878,19963155:3277 -h1,5540:31234002,19963155:0,411205,112570 -) -k1,5540:31478747,19963155:241468 -k1,5540:32583029,19963155:0 -) -(1,5541:6797234,20804643:25785795,513147,134348 -k1,5540:8424821,20804643:236913 -k1,5540:10353873,20804643:236912 -k1,5540:12793451,20804643:236913 -k1,5540:13658198,20804643:236912 -k1,5540:15098352,20804643:236913 -k1,5540:16702345,20804643:236912 -k1,5540:19266441,20804643:236913 -k1,5540:20162646,20804643:236913 -k1,5540:22827012,20804643:236912 -k1,5540:23419785,20804643:236913 -k1,5540:25634574,20804643:236912 -k1,5540:26557649,20804643:236913 -k1,5540:30040559,20804643:236912 -k1,5540:31145824,20804643:236913 -k1,5540:32583029,20804643:0 -) -(1,5541:6797234,21646131:25785795,513147,134348 -k1,5540:7406827,21646131:253733 -k1,5540:9554550,21646131:253733 -k1,5540:10459712,21646131:253734 -k1,5540:12642825,21646131:253733 -k1,5540:13528325,21646131:253733 -(1,5540:13528325,21646131:0,414482,115847 -r1,5594:13886591,21646131:358266,530329,115847 -k1,5540:13528325,21646131:-358266 -) -(1,5540:13528325,21646131:358266,414482,115847 -k1,5540:13528325,21646131:3277 -h1,5540:13883314,21646131:0,411205,112570 -) -k1,5540:14140324,21646131:253733 -k1,5540:14925554,21646131:253733 -k1,5540:16198373,21646131:253734 -k1,5540:18937887,21646131:253733 -k1,5540:19850912,21646131:253733 -k1,5540:22070725,21646131:253733 -k1,5540:23515903,21646131:253733 -(1,5540:23515903,21646131:0,452978,115847 -r1,5594:23874169,21646131:358266,568825,115847 -k1,5540:23515903,21646131:-358266 -) -(1,5540:23515903,21646131:358266,452978,115847 -k1,5540:23515903,21646131:3277 -h1,5540:23870892,21646131:0,411205,112570 -) -k1,5540:24127902,21646131:253733 -k1,5540:25400721,21646131:253734 -k1,5540:28140235,21646131:253733 -k1,5540:29053260,21646131:253733 -k1,5540:32583029,21646131:0 -) -(1,5541:6797234,22487619:25785795,513147,134348 -k1,5540:9285749,22487619:141671 -k1,5540:11502290,22487619:141671 -k1,5540:15331015,22487619:141670 -k1,5540:16088724,22487619:141671 -k1,5540:16645181,22487619:141614 -k1,5540:21820016,22487619:141670 -k1,5540:23153132,22487619:141671 -(1,5540:23153132,22487619:0,452978,122846 -r1,5594:25269957,22487619:2116825,575824,122846 -k1,5540:23153132,22487619:-2116825 -) -(1,5540:23153132,22487619:2116825,452978,122846 -k1,5540:23153132,22487619:3277 -h1,5540:25266680,22487619:0,411205,112570 -) -k1,5540:25411628,22487619:141671 -k1,5540:26572384,22487619:141671 -k1,5540:28727320,22487619:141670 -k1,5540:29528283,22487619:141671 -k1,5540:30689039,22487619:141671 -k1,5540:32583029,22487619:0 -) -(1,5541:6797234,23329107:25785795,505283,7863 -g1,5540:7647891,23329107 -g1,5540:8594886,23329107 -k1,5541:32583029,23329107:21464352 -g1,5541:32583029,23329107 -) -v1,5543:6797234,24519573:0,393216,0 -(1,5558:6797234,28719731:25785795,4593374,196608 -g1,5558:6797234,28719731 -g1,5558:6797234,28719731 -g1,5558:6600626,28719731 -(1,5558:6600626,28719731:0,4593374,196608 -r1,5594:32779637,28719731:26179011,4789982,196608 -k1,5558:6600625,28719731:-26179012 -) -(1,5558:6600626,28719731:26179011,4593374,196608 -[1,5558:6797234,28719731:25785795,4396766,0 -(1,5545:6797234,24727191:25785795,404226,107478 -(1,5544:6797234,24727191:0,0,0 -g1,5544:6797234,24727191 -g1,5544:6797234,24727191 -g1,5544:6469554,24727191 -(1,5544:6469554,24727191:0,0,0 -) -g1,5544:6797234,24727191 -) -k1,5545:6797234,24727191:0 -g1,5545:8377963,24727191 -g1,5545:9010255,24727191 -g1,5545:9958693,24727191 -g1,5545:10590985,24727191 -g1,5545:11223277,24727191 -g1,5545:12171715,24727191 -g1,5545:14384735,24727191 -g1,5545:15017027,24727191 -g1,5545:17230048,24727191 -h1,5545:18810776,24727191:0,0,0 -k1,5545:32583029,24727191:13772253 -g1,5545:32583029,24727191 -) -(1,5550:6797234,25393369:25785795,404226,76021 -(1,5547:6797234,25393369:0,0,0 -g1,5547:6797234,25393369 -g1,5547:6797234,25393369 -g1,5547:6469554,25393369 -(1,5547:6469554,25393369:0,0,0 -) -g1,5547:6797234,25393369 -) -g1,5550:7745671,25393369 -g1,5550:8061817,25393369 -g1,5550:9326400,25393369 -g1,5550:9958692,25393369 -g1,5550:10590984,25393369 -g1,5550:11223276,25393369 -g1,5550:11855568,25393369 -g1,5550:12487860,25393369 -g1,5550:13120152,25393369 -g1,5550:13752444,25393369 -g1,5550:14384736,25393369 -g1,5550:15017028,25393369 -h1,5550:15333174,25393369:0,0,0 -k1,5550:32583030,25393369:17249856 -g1,5550:32583030,25393369 -) -(1,5550:6797234,26059547:25785795,404226,6290 -h1,5550:6797234,26059547:0,0,0 -g1,5550:7745671,26059547 -g1,5550:10274837,26059547 -g1,5550:10907129,26059547 -h1,5550:11223275,26059547:0,0,0 -k1,5550:32583029,26059547:21359754 -g1,5550:32583029,26059547 -) -(1,5552:6797234,27381085:25785795,404226,107478 -(1,5551:6797234,27381085:0,0,0 -g1,5551:6797234,27381085 -g1,5551:6797234,27381085 -g1,5551:6469554,27381085 -(1,5551:6469554,27381085:0,0,0 -) -g1,5551:6797234,27381085 -) -k1,5552:6797234,27381085:0 -g1,5552:8377963,27381085 -g1,5552:9010255,27381085 -g1,5552:9958693,27381085 -g1,5552:10590985,27381085 -g1,5552:11223277,27381085 -g1,5552:12171715,27381085 -g1,5552:14384735,27381085 -g1,5552:15017027,27381085 -g1,5552:16281610,27381085 -g1,5552:18494630,27381085 -g1,5552:19126922,27381085 -g1,5552:21339943,27381085 -h1,5552:22920671,27381085:0,0,0 -k1,5552:32583029,27381085:9662358 -g1,5552:32583029,27381085 -) -(1,5557:6797234,28047263:25785795,404226,76021 -(1,5554:6797234,28047263:0,0,0 -g1,5554:6797234,28047263 -g1,5554:6797234,28047263 -g1,5554:6469554,28047263 -(1,5554:6469554,28047263:0,0,0 -) -g1,5554:6797234,28047263 -) -g1,5557:7745671,28047263 -g1,5557:8061817,28047263 -g1,5557:9326400,28047263 -g1,5557:9958692,28047263 -g1,5557:10590984,28047263 -g1,5557:11223276,28047263 -g1,5557:11855568,28047263 -g1,5557:12487860,28047263 -g1,5557:13120152,28047263 -g1,5557:13752444,28047263 -g1,5557:14384736,28047263 -g1,5557:15017028,28047263 -h1,5557:15333174,28047263:0,0,0 -k1,5557:32583030,28047263:17249856 -g1,5557:32583030,28047263 -) -(1,5557:6797234,28713441:25785795,404226,6290 -h1,5557:6797234,28713441:0,0,0 -g1,5557:7745671,28713441 -g1,5557:10274837,28713441 -g1,5557:10907129,28713441 -h1,5557:11223275,28713441:0,0,0 -k1,5557:32583029,28713441:21359754 -g1,5557:32583029,28713441 -) -] -) -g1,5558:32583029,28719731 -g1,5558:6797234,28719731 -g1,5558:6797234,28719731 -g1,5558:32583029,28719731 -g1,5558:32583029,28719731 -) -h1,5558:6797234,28916339:0,0,0 -] -g1,5560:32583029,29440627 -) -h1,5560:6630773,29440627:0,0,0 -(1,5563:6630773,30754253:25952256,513147,134348 -h1,5562:6630773,30754253:983040,0,0 -k1,5562:8336819,30754253:253113 -k1,5562:9121429,30754253:253113 -k1,5562:11503807,30754253:253113 -k1,5562:15022580,30754253:253114 -k1,5562:15927121,30754253:253113 -k1,5562:17272719,30754253:253113 -k1,5562:21138832,30754253:253113 -k1,5562:23236128,30754253:253113 -k1,5562:24436892,30754253:253113 -k1,5562:26656086,30754253:253114 -k1,5562:28375895,30754253:253113 -k1,5562:29102833,30754253:253113 -k1,5562:29770735,30754253:253059 -k1,5562:31516758,30754253:253113 -k1,5562:32583029,30754253:0 -) -(1,5563:6630773,31595741:25952256,505283,126483 -k1,5562:9150325,31595741:227758 -k1,5562:10009851,31595741:227759 -k1,5562:11725932,31595741:227758 -k1,5562:12972775,31595741:227758 -k1,5562:15178410,31595741:227758 -k1,5562:15937666,31595741:227759 -k1,5562:18203594,31595741:227758 -k1,5562:19047390,31595741:227758 -k1,5562:19631008,31595741:227758 -k1,5562:22370107,31595741:227759 -k1,5562:24756621,31595741:227758 -(1,5562:24756621,31595741:0,414482,115847 -r1,5594:27928581,31595741:3171960,530329,115847 -k1,5562:24756621,31595741:-3171960 -) -(1,5562:24756621,31595741:3171960,414482,115847 -k1,5562:24756621,31595741:3277 -h1,5562:27925304,31595741:0,411205,112570 -) -k1,5562:28330009,31595741:227758 -k1,5562:29185602,31595741:227758 -k1,5562:29769221,31595741:227759 -k1,5562:31193666,31595741:227758 -k1,5562:32583029,31595741:0 -) -(1,5563:6630773,32437229:25952256,513147,126483 -k1,5562:9441752,32437229:256386 -k1,5562:12524706,32437229:256386 -k1,5562:13397130,32437229:256386 -k1,5562:15255217,32437229:256387 -k1,5562:17208985,32437229:256386 -k1,5562:18484456,32437229:256386 -k1,5562:20718719,32437229:256386 -k1,5562:22931355,32437229:256386 -k1,5562:24662956,32437229:256386 -k1,5562:26429292,32437229:256386 -k1,5562:28097980,32437229:256387 -k1,5562:29921987,32437229:256386 -k1,5562:30534233,32437229:256386 -k1,5562:31773659,32437229:256386 -k1,5562:32583029,32437229:0 -) -(1,5563:6630773,33278717:25952256,505283,134348 -g1,5562:8174801,33278717 -g1,5562:9565475,33278717 -g1,5562:11720954,33278717 -g1,5562:12667949,33278717 -k1,5563:32583029,33278717:17717002 -g1,5563:32583029,33278717 -) -v1,5565:6630773,34417034:0,393216,0 -(1,5574:6630773,36629476:25952256,2605658,196608 -g1,5574:6630773,36629476 -g1,5574:6630773,36629476 -g1,5574:6434165,36629476 -(1,5574:6434165,36629476:0,2605658,196608 -r1,5594:32779637,36629476:26345472,2802266,196608 -k1,5574:6434165,36629476:-26345472 -) -(1,5574:6434165,36629476:26345472,2605658,196608 -[1,5574:6630773,36629476:25952256,2409050,0 -(1,5567:6630773,34624652:25952256,404226,82312 -(1,5566:6630773,34624652:0,0,0 -g1,5566:6630773,34624652 -g1,5566:6630773,34624652 -g1,5566:6303093,34624652 -(1,5566:6303093,34624652:0,0,0 -) -g1,5566:6630773,34624652 -) -g1,5567:8211502,34624652 -g1,5567:9159940,34624652 -g1,5567:13269835,34624652 -g1,5567:16747438,34624652 -g1,5567:20225041,34624652 -g1,5567:23702644,34624652 -g1,5567:27180247,34624652 -h1,5567:30341704,34624652:0,0,0 -k1,5567:32583029,34624652:2241325 -g1,5567:32583029,34624652 -) -(1,5568:6630773,35290830:25952256,410518,76021 -h1,5568:6630773,35290830:0,0,0 -k1,5568:6630773,35290830:0 -h1,5568:10424521,35290830:0,0,0 -k1,5568:32583029,35290830:22158508 -g1,5568:32583029,35290830 -) -(1,5573:6630773,35957008:25952256,404226,76021 -(1,5570:6630773,35957008:0,0,0 -g1,5570:6630773,35957008 -g1,5570:6630773,35957008 -g1,5570:6303093,35957008 -(1,5570:6303093,35957008:0,0,0 -) -g1,5570:6630773,35957008 -) -g1,5573:7579210,35957008 -g1,5573:8843793,35957008 -g1,5573:11372959,35957008 -g1,5573:13902125,35957008 -g1,5573:16431291,35957008 -g1,5573:18960457,35957008 -g1,5573:21489623,35957008 -h1,5573:23702643,35957008:0,0,0 -k1,5573:32583029,35957008:8880386 -g1,5573:32583029,35957008 -) -(1,5573:6630773,36623186:25952256,404226,6290 -h1,5573:6630773,36623186:0,0,0 -g1,5573:7579210,36623186 -g1,5573:10108376,36623186 -g1,5573:12637542,36623186 -h1,5573:14850562,36623186:0,0,0 -k1,5573:32583030,36623186:17732468 -g1,5573:32583030,36623186 -) -] -) -g1,5574:32583029,36629476 -g1,5574:6630773,36629476 -g1,5574:6630773,36629476 -g1,5574:32583029,36629476 -g1,5574:32583029,36629476 -) -h1,5574:6630773,36826084:0,0,0 -(1,5578:6630773,38139710:25952256,513147,134348 -h1,5577:6630773,38139710:983040,0,0 -k1,5577:9105787,38139710:295287 -k1,5577:12130648,38139710:295286 -k1,5577:13085227,38139710:295287 -k1,5577:15172923,38139710:295286 -k1,5577:15999707,38139710:295287 -k1,5577:19905371,38139710:295286 -k1,5577:20813420,38139710:295287 -k1,5577:22127791,38139710:295286 -k1,5577:23848486,38139710:295287 -k1,5577:24499632,38139710:295286 -k1,5577:26688909,38139710:295287 -k1,5577:27515692,38139710:295286 -k1,5577:30334770,38139710:295287 -k1,5577:31821501,38139710:295286 -k1,5577:32583029,38139710:0 -) -(1,5578:6630773,38981198:25952256,513147,134348 -k1,5577:9164887,38981198:268534 -k1,5577:9964917,38981198:268533 -k1,5577:14259983,38981198:268534 -k1,5577:15909360,38981198:268533 -k1,5577:18443474,38981198:268534 -k1,5577:21441582,38981198:268533 -k1,5577:22369408,38981198:268534 -k1,5577:24430351,38981198:268533 -k1,5577:25230382,38981198:268534 -k1,5577:28803896,38981198:268533 -k1,5577:30138701,38981198:268534 -k1,5577:31426319,38981198:268533 -k1,5577:32583029,38981198:0 -) -(1,5578:6630773,39822686:25952256,513147,134348 -k1,5577:9282189,39822686:179398 -k1,5577:10415137,39822686:179399 -k1,5577:11698817,39822686:179398 -k1,5577:13315420,39822686:179398 -k1,5577:14265522,39822686:179399 -k1,5577:17517248,39822686:179398 -k1,5577:18348074,39822686:179398 -k1,5577:21808204,39822686:179398 -(1,5577:21808204,39822686:0,452978,115847 -r1,5594:23925029,39822686:2116825,568825,115847 -k1,5577:21808204,39822686:-2116825 -) -(1,5577:21808204,39822686:2116825,452978,115847 -k1,5577:21808204,39822686:3277 -h1,5577:23921752,39822686:0,411205,112570 -) -k1,5577:24104428,39822686:179399 -k1,5577:24943118,39822686:179398 -k1,5577:27818012,39822686:179398 -(1,5577:27818012,39822686:0,459977,115847 -r1,5594:30638261,39822686:2820249,575824,115847 -k1,5577:27818012,39822686:-2820249 -) -(1,5577:27818012,39822686:2820249,459977,115847 -k1,5577:27818012,39822686:3277 -h1,5577:30634984,39822686:0,411205,112570 -) -k1,5577:30817660,39822686:179399 -k1,5577:31648486,39822686:179398 -k1,5577:32583029,39822686:0 -) -(1,5578:6630773,40664174:25952256,513147,134348 -g1,5577:7185862,40664174 -g1,5577:10147434,40664174 -g1,5577:13076238,40664174 -g1,5577:13934759,40664174 -g1,5577:15153073,40664174 -k1,5578:32583029,40664174:15463876 -g1,5578:32583029,40664174 -) -v1,5580:6630773,41802491:0,393216,0 -(1,5588:6630773,43355047:25952256,1945772,196608 -g1,5588:6630773,43355047 -g1,5588:6630773,43355047 -g1,5588:6434165,43355047 -(1,5588:6434165,43355047:0,1945772,196608 -r1,5594:32779637,43355047:26345472,2142380,196608 -k1,5588:6434165,43355047:-26345472 -) -(1,5588:6434165,43355047:26345472,1945772,196608 -[1,5588:6630773,43355047:25952256,1749164,0 -(1,5582:6630773,42016401:25952256,410518,82312 -(1,5581:6630773,42016401:0,0,0 -g1,5581:6630773,42016401 -g1,5581:6630773,42016401 -g1,5581:6303093,42016401 -(1,5581:6303093,42016401:0,0,0 -) -g1,5581:6630773,42016401 -) -k1,5582:6630773,42016401:0 -g1,5582:9476085,42016401 -g1,5582:10108377,42016401 -g1,5582:12005252,42016401 -g1,5582:14218272,42016401 -g1,5582:14850564,42016401 -g1,5582:18960459,42016401 -h1,5582:22438061,42016401:0,0,0 -k1,5582:32583029,42016401:10144968 -g1,5582:32583029,42016401 -) -(1,5587:6630773,42682579:25952256,404226,76021 -(1,5584:6630773,42682579:0,0,0 -g1,5584:6630773,42682579 -g1,5584:6630773,42682579 -g1,5584:6303093,42682579 -(1,5584:6303093,42682579:0,0,0 -) -g1,5584:6630773,42682579 -) -g1,5587:7579210,42682579 -g1,5587:8843793,42682579 -g1,5587:11372959,42682579 -g1,5587:13902125,42682579 -g1,5587:16431291,42682579 -g1,5587:18960457,42682579 -g1,5587:21489623,42682579 -h1,5587:23702643,42682579:0,0,0 -k1,5587:32583029,42682579:8880386 -g1,5587:32583029,42682579 -) -(1,5587:6630773,43348757:25952256,404226,6290 -h1,5587:6630773,43348757:0,0,0 -g1,5587:7579210,43348757 -g1,5587:10108376,43348757 -g1,5587:12637542,43348757 -h1,5587:14850562,43348757:0,0,0 -k1,5587:32583030,43348757:17732468 -g1,5587:32583030,43348757 -) -] -) -g1,5588:32583029,43355047 -g1,5588:6630773,43355047 -g1,5588:6630773,43355047 -g1,5588:32583029,43355047 -g1,5588:32583029,43355047 -) -h1,5588:6630773,43551655:0,0,0 -(1,5592:6630773,44865281:25952256,513147,134348 -h1,5591:6630773,44865281:983040,0,0 -k1,5591:8975733,44865281:165233 -k1,5591:10985150,44865281:165234 -k1,5591:14233197,44865281:165233 -k1,5591:15057723,44865281:165234 -k1,5591:16242041,44865281:165233 -k1,5591:18199684,44865281:165233 -k1,5591:19469200,44865281:165234 -k1,5591:20382199,44865281:165233 -k1,5591:21481975,44865281:165233 -k1,5591:23345247,44865281:165234 -k1,5591:25600423,44865281:165233 -(1,5591:25600423,44865281:0,459977,115847 -r1,5594:28420672,44865281:2820249,575824,115847 -k1,5591:25600423,44865281:-2820249 -) -(1,5591:25600423,44865281:2820249,459977,115847 -k1,5591:25600423,44865281:3277 -h1,5591:28417395,44865281:0,411205,112570 -) -k1,5591:28759576,44865281:165234 -k1,5591:30274851,44865281:165233 -k1,5591:32583029,44865281:0 -) -(1,5592:6630773,45706769:25952256,505283,134348 -k1,5591:7758154,45706769:135821 -k1,5591:10099262,45706769:135821 -k1,5591:10921245,45706769:135821 -k1,5591:14459695,45706769:135821 -k1,5591:15246944,45706769:135821 -k1,5591:18993799,45706769:135821 -(1,5591:18993799,45706769:0,452978,115847 -r1,5594:21110624,45706769:2116825,568825,115847 -k1,5591:18993799,45706769:-2116825 -) -(1,5591:18993799,45706769:2116825,452978,115847 -k1,5591:18993799,45706769:3277 -h1,5591:21107347,45706769:0,411205,112570 -) -k1,5591:21246446,45706769:135822 -k1,5591:22573712,45706769:135821 -(1,5591:22573712,45706769:0,452978,115847 -r1,5594:24690537,45706769:2116825,568825,115847 -k1,5591:22573712,45706769:-2116825 -) -(1,5591:22573712,45706769:2116825,452978,115847 -k1,5591:22573712,45706769:3277 -h1,5591:24687260,45706769:0,411205,112570 -) -k1,5591:24826358,45706769:135821 -k1,5591:26356130,45706769:135821 -k1,5591:28284361,45706769:135821 -k1,5591:29611627,45706769:135821 -k1,5591:32583029,45706769:0 -) -] -(1,5594:32583029,45706769:0,0,0 -g1,5594:32583029,45706769 -) -) -] -(1,5594:6630773,47279633:25952256,0,0 -h1,5594:6630773,47279633:25952256,0,0 -) -] -(1,5594:4262630,4025873:0,0,0 -[1,5594:-473656,4025873:0,0,0 -(1,5594:-473656,-710413:0,0,0 -(1,5594:-473656,-710413:0,0,0 -g1,5594:-473656,-710413 -) -g1,5594:-473656,-710413 -) -] -) -] -!28080 -}96 -Input:806:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:807:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:808:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:809:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:810:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:811:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:812:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:813:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:814:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!848 -{97 -[1,5683:4262630,47279633:28320399,43253760,0 -(1,5683:4262630,4025873:0,0,0 -[1,5683:-473656,4025873:0,0,0 -(1,5683:-473656,-710413:0,0,0 -(1,5683:-473656,-644877:0,0,0 -k1,5683:-473656,-644877:-65536 +] ) -(1,5683:-473656,4736287:0,0,0 -k1,5683:-473656,4736287:5209943 ) -g1,5683:-473656,-710413 ) ] +[1,4901:3078558,4812305:0,0,0 +(1,4901:3078558,2439708:0,1703936,0 +g1,4901:29030814,2439708 +g1,4901:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,4901:36151628,1915420:16384,1179648,0 ) -[1,5683:6630773,47279633:25952256,43253760,0 -[1,5683:6630773,4812305:25952256,786432,0 -(1,5683:6630773,4812305:25952256,505283,11795 -(1,5683:6630773,4812305:25952256,505283,11795 -g1,5683:3078558,4812305 -[1,5683:3078558,4812305:0,0,0 -(1,5683:3078558,2439708:0,1703936,0 -k1,5683:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,5683:2537886,2439708:1179648,16384,0 -) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,5683:3078558,1915420:16384,1179648,0 -) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) ] ) +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,4901:37855564,2439708:1179648,16384,0 ) ) -] -[1,5683:3078558,4812305:0,0,0 -(1,5683:3078558,2439708:0,1703936,0 -g1,5683:29030814,2439708 -g1,5683:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,5683:36151628,1915420:16384,1179648,0 -) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 +k1,4901:3078556,2439708:-34777008 ) ] +[1,4901:3078558,4812305:0,0,0 +(1,4901:3078558,49800853:0,16384,2228224 +k1,4901:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,4901:2537886,49800853:1179648,16384,0 ) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,5683:37855564,2439708:1179648,16384,0 +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,4901:3078558,51504789:16384,1179648,0 ) -) -k1,5683:3078556,2439708:-34777008 +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) ] -[1,5683:3078558,4812305:0,0,0 -(1,5683:3078558,49800853:0,16384,2228224 -k1,5683:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,5683:2537886,49800853:1179648,16384,0 ) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,5683:3078558,51504789:16384,1179648,0 ) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 ) ] +[1,4901:3078558,4812305:0,0,0 +(1,4901:3078558,49800853:0,16384,2228224 +g1,4901:29030814,49800853 +g1,4901:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,4901:36151628,51504789:16384,1179648,0 ) +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 +) +] +) +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,4901:37855564,49800853:1179648,16384,0 ) -) +) +k1,4901:3078556,49800853:-34777008 +) +] +g1,4901:6630773,4812305 +k1,4901:22348274,4812305:14920583 +g1,4901:23970945,4812305 +g1,4901:24793421,4812305 +g1,4901:27528893,4812305 +g1,4901:28938572,4812305 +) +) +] +[1,4901:6630773,45706769:25952256,40108032,0 +(1,4901:6630773,45706769:25952256,40108032,0 +(1,4901:6630773,45706769:0,0,0 +g1,4901:6630773,45706769 +) +[1,4901:6630773,45706769:25952256,40108032,0 +v1,4803:6630773,6254097:0,393216,0 +(1,4803:6630773,7246971:25952256,1386090,0 +g1,4803:6630773,7246971 +g1,4803:6237557,7246971 +r1,4901:6368629,7246971:131072,1386090,0 +g1,4803:6567858,7246971 +g1,4803:6764466,7246971 +[1,4803:6764466,7246971:25818563,1386090,0 +(1,4802:6764466,6374028:25818563,513147,134348 +h1,4801:6764466,6374028:983040,0,0 +k1,4801:9344292,6374028:215942 +k1,4801:12221652,6374028:215943 +k1,4801:13723410,6374028:215942 +k1,4801:15930336,6374028:215942 +k1,4801:17476659,6374028:215942 +k1,4801:18849312,6374028:215943 +k1,4801:20169536,6374028:215942 +k1,4801:22023223,6374028:215942 +k1,4801:23305436,6374028:215942 +k1,4801:24188535,6374028:215943 +k1,4801:24819303,6374028:215925 +k1,4801:25823643,6374028:215942 +k1,4801:27625557,6374028:215943 +k1,4801:30400025,6374028:215942 +k1,4802:32583029,6374028:0 +) +(1,4802:6764466,7239108:25818563,473825,7863 +k1,4802:32583029,7239108:22382510 +g1,4802:32583029,7239108 +) +] +g1,4803:32583029,7246971 +) +h1,4803:6630773,7246971:0,0,0 +(1,4806:6630773,8112051:25952256,513147,134348 +h1,4805:6630773,8112051:983040,0,0 +k1,4805:8244983,8112051:143582 +k1,4805:11127371,8112051:143638 +k1,4805:14345303,8112051:143638 +k1,4805:15298310,8112051:143637 +k1,4805:17750126,8112051:143638 +k1,4805:18425260,8112051:143637 +k1,4805:20829235,8112051:143638 +k1,4805:22611928,8112051:143638 +k1,4805:24023031,8112051:143637 +k1,4805:24937372,8112051:143638 +k1,4805:28342736,8112051:143637 +k1,4805:29169259,8112051:143638 +k1,4805:32583029,8112051:0 +) +(1,4806:6630773,8977131:25952256,505283,126483 +g1,4805:8742998,8977131 +g1,4805:10138914,8977131 +g1,4805:11939843,8977131 +g1,4805:13987187,8977131 +g1,4805:17170926,8977131 +g1,4805:17901652,8977131 +g1,4805:18752309,8977131 +g1,4805:20044023,8977131 +(1,4805:20044023,8977131:0,452978,115847 +r1,4901:22160848,8977131:2116825,568825,115847 +k1,4805:20044023,8977131:-2116825 +) +(1,4805:20044023,8977131:2116825,452978,115847 +k1,4805:20044023,8977131:3277 +h1,4805:22157571,8977131:0,411205,112570 +) +k1,4806:32583029,8977131:10248511 +g1,4806:32583029,8977131 +) +v1,4808:6630773,9661986:0,393216,0 +(1,4822:6630773,13102275:25952256,3833505,196608 +g1,4822:6630773,13102275 +g1,4822:6630773,13102275 +g1,4822:6434165,13102275 +(1,4822:6434165,13102275:0,3833505,196608 +r1,4901:32779637,13102275:26345472,4030113,196608 +k1,4822:6434165,13102275:-26345472 +) +(1,4822:6434165,13102275:26345472,3833505,196608 +[1,4822:6630773,13102275:25952256,3636897,0 +(1,4810:6630773,9889817:25952256,424439,86428 +(1,4809:6630773,9889817:0,0,0 +g1,4809:6630773,9889817 +g1,4809:6630773,9889817 +g1,4809:6303093,9889817 +(1,4809:6303093,9889817:0,0,0 +) +g1,4809:6630773,9889817 +) +g1,4810:8290543,9889817 +g1,4810:9286405,9889817 +g1,4810:11278129,9889817 +g1,4810:12273991,9889817 +g1,4810:13601807,9889817 +g1,4810:14597669,9889817 +h1,4810:15261577,9889817:0,0,0 +k1,4810:32583029,9889817:17321452 +g1,4810:32583029,9889817 +) +(1,4811:6630773,10574672:25952256,424439,79822 +h1,4811:6630773,10574672:0,0,0 +k1,4811:6630773,10574672:0 +h1,4811:9950313,10574672:0,0,0 +k1,4811:32583029,10574672:22632716 +g1,4811:32583029,10574672 +) +(1,4815:6630773,11390599:25952256,424439,79822 +(1,4813:6630773,11390599:0,0,0 +g1,4813:6630773,11390599 +g1,4813:6630773,11390599 +g1,4813:6303093,11390599 +(1,4813:6303093,11390599:0,0,0 +) +g1,4813:6630773,11390599 +) +g1,4815:7626635,11390599 +g1,4815:8954451,11390599 +g1,4815:9286405,11390599 +g1,4815:9950313,11390599 +g1,4815:10282267,11390599 +g1,4815:10946175,11390599 +g1,4815:11278129,11390599 +g1,4815:11942037,11390599 +g1,4815:12937899,11390599 +h1,4815:13601807,11390599:0,0,0 +k1,4815:32583029,11390599:18981222 +g1,4815:32583029,11390599 +) +(1,4817:6630773,12206526:25952256,424439,112852 +(1,4816:6630773,12206526:0,0,0 +g1,4816:6630773,12206526 +g1,4816:6630773,12206526 +g1,4816:6303093,12206526 +(1,4816:6303093,12206526:0,0,0 +) +g1,4816:6630773,12206526 +) +k1,4817:6630773,12206526:0 +g1,4817:10282267,12206526 +g1,4817:13933760,12206526 +g1,4817:14597668,12206526 +h1,4817:16257438,12206526:0,0,0 +k1,4817:32583029,12206526:16325591 +g1,4817:32583029,12206526 +) +(1,4821:6630773,13022453:25952256,424439,79822 +(1,4819:6630773,13022453:0,0,0 +g1,4819:6630773,13022453 +g1,4819:6630773,13022453 +g1,4819:6303093,13022453 +(1,4819:6303093,13022453:0,0,0 +) +g1,4819:6630773,13022453 +) +g1,4821:7626635,13022453 +g1,4821:8954451,13022453 +g1,4821:9950313,13022453 +g1,4821:10946175,13022453 +g1,4821:11278129,13022453 +g1,4821:11942037,13022453 +g1,4821:12273991,13022453 +g1,4821:12937899,13022453 +g1,4821:13269853,13022453 +h1,4821:13601807,13022453:0,0,0 +k1,4821:32583029,13022453:18981222 +g1,4821:32583029,13022453 +) +] +) +g1,4822:32583029,13102275 +g1,4822:6630773,13102275 +g1,4822:6630773,13102275 +g1,4822:32583029,13102275 +g1,4822:32583029,13102275 +) +h1,4822:6630773,13298883:0,0,0 +(1,4826:6630773,14163963:25952256,513147,134348 +h1,4825:6630773,14163963:983040,0,0 +k1,4825:8743186,14163963:226942 +k1,4825:11434281,14163963:226941 +k1,4825:12899198,14163963:226942 +k1,4825:13785432,14163963:226942 +k1,4825:16272711,14163963:226942 +k1,4825:16855512,14163963:226941 +k1,4825:19234001,14163963:226942 +k1,4825:22104665,14163963:226942 +k1,4825:24186275,14163963:226941 +k1,4825:25222587,14163963:226942 +k1,4825:25805389,14163963:226942 +k1,4825:28794674,14163963:226942 +k1,4825:31173162,14163963:226941 +k1,4825:31931601,14163963:226942 +k1,4825:32583029,14163963:0 +) +(1,4826:6630773,15029043:25952256,513147,134348 +k1,4825:9601284,15029043:238315 +k1,4825:11233549,15029043:238314 +(1,4825:11233549,15029043:0,452978,115847 +r1,4901:13702086,15029043:2468537,568825,115847 +k1,4825:11233549,15029043:-2468537 +) +(1,4825:11233549,15029043:2468537,452978,115847 +k1,4825:11233549,15029043:3277 +h1,4825:13698809,15029043:0,411205,112570 +) +k1,4825:13940401,15029043:238315 +k1,4825:14534575,15029043:238314 +k1,4825:16750767,15029043:238315 +k1,4825:17648373,15029043:238314 +k1,4825:21067806,15029043:238315 +k1,4825:23732918,15029043:238314 +k1,4825:25255739,15029043:238315 +k1,4825:26598335,15029043:238314 +k1,4825:27584416,15029043:238315 +k1,4825:29335956,15029043:238314 +k1,4825:30225699,15029043:238315 +k1,4825:32583029,15029043:0 +) +(1,4826:6630773,15894123:25952256,505283,134348 +g1,4825:7849087,15894123 +k1,4826:32583028,15894123:21830696 +g1,4826:32583028,15894123 +) +v1,4828:6630773,16578978:0,393216,0 +(1,4848:6630773,21677545:25952256,5491783,196608 +g1,4848:6630773,21677545 +g1,4848:6630773,21677545 +g1,4848:6434165,21677545 +(1,4848:6434165,21677545:0,5491783,196608 +r1,4901:32779637,21677545:26345472,5688391,196608 +k1,4848:6434165,21677545:-26345472 +) +(1,4848:6434165,21677545:26345472,5491783,196608 +[1,4848:6630773,21677545:25952256,5295175,0 +(1,4830:6630773,16806809:25952256,424439,79822 +(1,4829:6630773,16806809:0,0,0 +g1,4829:6630773,16806809 +g1,4829:6630773,16806809 +g1,4829:6303093,16806809 +(1,4829:6303093,16806809:0,0,0 +) +g1,4829:6630773,16806809 +) +k1,4830:6630773,16806809:0 +h1,4830:10282267,16806809:0,0,0 +k1,4830:32583029,16806809:22300762 +g1,4830:32583029,16806809 +) +(1,4834:6630773,17622736:25952256,424439,79822 +(1,4832:6630773,17622736:0,0,0 +g1,4832:6630773,17622736 +g1,4832:6630773,17622736 +g1,4832:6303093,17622736 +(1,4832:6303093,17622736:0,0,0 +) +g1,4832:6630773,17622736 +) +g1,4834:7626635,17622736 +g1,4834:8954451,17622736 +g1,4834:9618359,17622736 +g1,4834:10282267,17622736 +g1,4834:10946175,17622736 +g1,4834:11610083,17622736 +h1,4834:11942037,17622736:0,0,0 +k1,4834:32583029,17622736:20640992 +g1,4834:32583029,17622736 +) +(1,4836:6630773,18438663:25952256,424439,79822 +(1,4835:6630773,18438663:0,0,0 +g1,4835:6630773,18438663 +g1,4835:6630773,18438663 +g1,4835:6303093,18438663 +(1,4835:6303093,18438663:0,0,0 +) +g1,4835:6630773,18438663 +) +k1,4836:6630773,18438663:0 +h1,4836:12273991,18438663:0,0,0 +k1,4836:32583029,18438663:20309038 +g1,4836:32583029,18438663 +) +(1,4840:6630773,19254590:25952256,424439,79822 +(1,4838:6630773,19254590:0,0,0 +g1,4838:6630773,19254590 +g1,4838:6630773,19254590 +g1,4838:6303093,19254590 +(1,4838:6303093,19254590:0,0,0 +) +g1,4838:6630773,19254590 +) +g1,4840:7626635,19254590 +g1,4840:8954451,19254590 +g1,4840:9286405,19254590 +g1,4840:9950313,19254590 +g1,4840:10282267,19254590 +g1,4840:10946175,19254590 +g1,4840:11278129,19254590 +g1,4840:11942037,19254590 +g1,4840:12937899,19254590 +h1,4840:13601807,19254590:0,0,0 +k1,4840:32583029,19254590:18981222 +g1,4840:32583029,19254590 +) +(1,4842:6630773,20070517:25952256,424439,106246 +(1,4841:6630773,20070517:0,0,0 +g1,4841:6630773,20070517 +g1,4841:6630773,20070517 +g1,4841:6303093,20070517 +(1,4841:6303093,20070517:0,0,0 +) +g1,4841:6630773,20070517 +) +g1,4842:8290543,20070517 +g1,4842:9286405,20070517 +g1,4842:11942037,20070517 +g1,4842:13933761,20070517 +g1,4842:15593531,20070517 +g1,4842:17585255,20070517 +h1,4842:18913071,20070517:0,0,0 +k1,4842:32583029,20070517:13669958 +g1,4842:32583029,20070517 +) +(1,4843:6630773,20755372:25952256,424439,79822 +h1,4843:6630773,20755372:0,0,0 +k1,4843:6630773,20755372:0 +h1,4843:12273991,20755372:0,0,0 +k1,4843:32583029,20755372:20309038 +g1,4843:32583029,20755372 +) +(1,4847:6630773,21571299:25952256,424439,106246 +(1,4845:6630773,21571299:0,0,0 +g1,4845:6630773,21571299 +g1,4845:6630773,21571299 +g1,4845:6303093,21571299 +(1,4845:6303093,21571299:0,0,0 +) +g1,4845:6630773,21571299 +) +g1,4847:7626635,21571299 +g1,4847:8954451,21571299 +g1,4847:10614221,21571299 +g1,4847:12273991,21571299 +g1,4847:13601807,21571299 +g1,4847:13933761,21571299 +g1,4847:15593531,21571299 +h1,4847:16589393,21571299:0,0,0 +k1,4847:32583029,21571299:15993636 +g1,4847:32583029,21571299 +) +] +) +g1,4848:32583029,21677545 +g1,4848:6630773,21677545 +g1,4848:6630773,21677545 +g1,4848:32583029,21677545 +g1,4848:32583029,21677545 +) +h1,4848:6630773,21874153:0,0,0 +v1,4852:6630773,22739233:0,393216,0 +(1,4881:6630773,37451000:25952256,15104983,0 +g1,4881:6630773,37451000 +g1,4881:6237557,37451000 +r1,4901:6368629,37451000:131072,15104983,0 +g1,4881:6567858,37451000 +g1,4881:6764466,37451000 +[1,4881:6764466,37451000:25818563,15104983,0 +(1,4853:6764466,23047531:25818563,701514,196608 +(1,4852:6764466,23047531:0,701514,196608 +r1,4901:8010564,23047531:1246098,898122,196608 +k1,4852:6764466,23047531:-1246098 +) +(1,4852:6764466,23047531:1246098,701514,196608 +) +k1,4852:8221245,23047531:210681 +k1,4852:8548925,23047531:327680 +k1,4852:9247182,23047531:210669 +k1,4852:12134352,23047531:210680 +k1,4852:14326842,23047531:210681 +k1,4852:15188950,23047531:210680 +k1,4852:17659968,23047531:210681 +k1,4852:19155154,23047531:210680 +k1,4852:20234187,23047531:210681 +k1,4852:21781801,23047531:210680 +k1,4852:23294027,23047531:210681 +k1,4852:24036204,23047531:210680 +k1,4852:27051826,23047531:210681 +k1,4852:28592887,23047531:210680 +k1,4852:30555345,23047531:210681 +k1,4852:32583029,23047531:0 +) +(1,4853:6764466,23912611:25818563,513147,126483 +k1,4852:7675241,23912611:251483 +k1,4852:9378345,23912611:251482 +k1,4852:11310171,23912611:251483 +k1,4852:12553214,23912611:251483 +k1,4852:15210523,23912611:251482 +k1,4852:16078044,23912611:251483 +k1,4852:16685387,23912611:251483 +k1,4852:19088416,23912611:251482 +k1,4852:20293448,23912611:251483 +k1,4852:22075197,23912611:251483 +k1,4852:22978107,23912611:251482 +k1,4852:24322075,23912611:251483 +k1,4852:25745997,23912611:251483 +k1,4852:29023276,23912611:251482 +(1,4852:29023276,23912611:0,452978,115847 +r1,4901:31140101,23912611:2116825,568825,115847 +k1,4852:29023276,23912611:-2116825 +) +(1,4852:29023276,23912611:2116825,452978,115847 +k1,4852:29023276,23912611:3277 +h1,4852:31136824,23912611:0,411205,112570 +) +k1,4852:31391584,23912611:251483 +k1,4853:32583029,23912611:0 +) +(1,4853:6764466,24777691:25818563,513147,134348 +(1,4852:6764466,24777691:0,452978,115847 +r1,4901:8529579,24777691:1765113,568825,115847 +k1,4852:6764466,24777691:-1765113 +) +(1,4852:6764466,24777691:1765113,452978,115847 +k1,4852:6764466,24777691:3277 +h1,4852:8526302,24777691:0,411205,112570 +) +k1,4852:8736001,24777691:206422 +k1,4852:8736001,24777691:0 +k1,4852:9116094,24777691:206423 +k1,4852:10519203,24777691:206422 +k1,4852:12966956,24777691:206422 +k1,4852:13832670,24777691:206422 +k1,4852:15735820,24777691:206423 +k1,4852:18968039,24777691:206422 +k1,4852:22292664,24777691:206422 +k1,4852:23633515,24777691:206423 +k1,4852:25824367,24777691:206422 +k1,4852:26716951,24777691:206422 +k1,4852:28436599,24777691:206422 +k1,4852:29259060,24777691:206423 +k1,4852:30599910,24777691:206422 +k1,4852:32583029,24777691:0 +) +(1,4853:6764466,25642771:25818563,513147,134348 +k1,4852:9778702,25642771:169319 +k1,4852:10895672,25642771:169319 +k1,4852:12950462,25642771:169319 +k1,4852:13956676,25642771:169319 +k1,4852:14657493,25642771:169320 +k1,4852:15597515,25642771:169319 +k1,4852:19914608,25642771:169319 +k1,4852:20571485,25642771:169289 +k1,4852:21876543,25642771:169319 +k1,4852:22577359,25642771:169319 +k1,4852:23102539,25642771:169320 +k1,4852:25116696,25642771:169319 +k1,4852:25945307,25642771:169319 +k1,4852:29846246,25642771:169319 +k1,4852:32583029,25642771:0 +) +(1,4853:6764466,26507851:25818563,513147,134348 +k1,4852:9189626,26507851:240845 +k1,4852:10248360,26507851:240845 +k1,4852:11508289,26507851:240844 +k1,4852:14614368,26507851:240845 +k1,4852:15386710,26507851:240845 +k1,4852:16278983,26507851:240845 +k1,4852:18334520,26507851:240845 +k1,4852:19594449,26507851:240844 +k1,4852:22321075,26507851:240845 +k1,4852:23221212,26507851:240845 +k1,4852:25489741,26507851:240845 +k1,4852:26389877,26507851:240844 +k1,4852:28082344,26507851:240845 +k1,4852:30003532,26507851:240845 +k1,4852:32583029,26507851:0 +) +(1,4853:6764466,27372931:25818563,513147,7863 +g1,4852:7832047,27372931 +g1,4852:9561542,27372931 +g1,4852:11066904,27372931 +g1,4852:11917561,27372931 +g1,4852:13386878,27372931 +g1,4852:14605192,27372931 +k1,4853:32583029,27372931:15826290 +g1,4853:32583029,27372931 +) +v1,4855:6764466,28057786:0,393216,0 +(1,4877:6764466,34532669:25818563,6868099,196608 +g1,4877:6764466,34532669 +g1,4877:6764466,34532669 +g1,4877:6567858,34532669 +(1,4877:6567858,34532669:0,6868099,196608 +r1,4901:32779637,34532669:26211779,7064707,196608 +k1,4877:6567857,34532669:-26211780 +) +(1,4877:6567858,34532669:26211779,6868099,196608 +[1,4877:6764466,34532669:25818563,6671491,0 +(1,4857:6764466,28285617:25818563,424439,86428 +(1,4856:6764466,28285617:0,0,0 +g1,4856:6764466,28285617 +g1,4856:6764466,28285617 +g1,4856:6436786,28285617 +(1,4856:6436786,28285617:0,0,0 +) +g1,4856:6764466,28285617 +) +g1,4857:8424236,28285617 +g1,4857:9420098,28285617 +g1,4857:13735499,28285617 +g1,4857:14731361,28285617 +g1,4857:16059177,28285617 +g1,4857:17055039,28285617 +g1,4857:18050901,28285617 +g1,4857:19046763,28285617 +g1,4857:20374579,28285617 +g1,4857:21370441,28285617 +h1,4857:22698257,28285617:0,0,0 +k1,4857:32583029,28285617:9884772 +g1,4857:32583029,28285617 +) +(1,4858:6764466,28970472:25818563,398014,6605 +h1,4858:6764466,28970472:0,0,0 +h1,4858:8092282,28970472:0,0,0 +k1,4858:32583030,28970472:24490748 +g1,4858:32583030,28970472 +) +(1,4862:6764466,29786399:25818563,424439,112852 +(1,4860:6764466,29786399:0,0,0 +g1,4860:6764466,29786399 +g1,4860:6764466,29786399 +g1,4860:6436786,29786399 +(1,4860:6436786,29786399:0,0,0 +) +g1,4860:6764466,29786399 +) +g1,4862:7760328,29786399 +g1,4862:9088144,29786399 +g1,4862:10415960,29786399 +g1,4862:11743776,29786399 +g1,4862:13071592,29786399 +g1,4862:14399408,29786399 +g1,4862:15727224,29786399 +g1,4862:17055040,29786399 +g1,4862:18382856,29786399 +g1,4862:19710672,29786399 +h1,4862:20706534,29786399:0,0,0 +k1,4862:32583029,29786399:11876495 +g1,4862:32583029,29786399 +) +(1,4864:6764466,30602326:25818563,424439,79822 +(1,4863:6764466,30602326:0,0,0 +g1,4863:6764466,30602326 +g1,4863:6764466,30602326 +g1,4863:6436786,30602326 +(1,4863:6436786,30602326:0,0,0 +) +g1,4863:6764466,30602326 +) +k1,4864:6764466,30602326:0 +h1,4864:10084006,30602326:0,0,0 +k1,4864:32583030,30602326:22499024 +g1,4864:32583030,30602326 +) +(1,4868:6764466,31418253:25818563,424439,112852 +(1,4866:6764466,31418253:0,0,0 +g1,4866:6764466,31418253 +g1,4866:6764466,31418253 +g1,4866:6436786,31418253 +(1,4866:6436786,31418253:0,0,0 +) +g1,4866:6764466,31418253 +) +g1,4868:7760328,31418253 +g1,4868:9088144,31418253 +g1,4868:10415960,31418253 +g1,4868:11743776,31418253 +g1,4868:13071592,31418253 +g1,4868:14399408,31418253 +g1,4868:15727224,31418253 +g1,4868:17055040,31418253 +g1,4868:18382856,31418253 +g1,4868:19710672,31418253 +h1,4868:20706534,31418253:0,0,0 +k1,4868:32583029,31418253:11876495 +g1,4868:32583029,31418253 +) +(1,4870:6764466,32234180:25818563,424439,79822 +(1,4869:6764466,32234180:0,0,0 +g1,4869:6764466,32234180 +g1,4869:6764466,32234180 +g1,4869:6436786,32234180 +(1,4869:6436786,32234180:0,0,0 +) +g1,4869:6764466,32234180 +) +k1,4870:6764466,32234180:0 +k1,4870:6764466,32234180:0 +h1,4870:11743776,32234180:0,0,0 +k1,4870:32583028,32234180:20839252 +g1,4870:32583028,32234180 +) +(1,4876:6764466,33050107:25818563,424439,112852 +(1,4872:6764466,33050107:0,0,0 +g1,4872:6764466,33050107 +g1,4872:6764466,33050107 +g1,4872:6436786,33050107 +(1,4872:6436786,33050107:0,0,0 +) +g1,4872:6764466,33050107 +) +g1,4876:7760328,33050107 +g1,4876:9088144,33050107 +g1,4876:11411822,33050107 +h1,4876:14067453,33050107:0,0,0 +k1,4876:32583029,33050107:18515576 +g1,4876:32583029,33050107 +) +(1,4876:6764466,33734962:25818563,424439,112852 +h1,4876:6764466,33734962:0,0,0 +g1,4876:7760328,33734962 +g1,4876:8092282,33734962 +g1,4876:8424236,33734962 +g1,4876:11411821,33734962 +g1,4876:12739637,33734962 +g1,4876:14731361,33734962 +g1,4876:15395269,33734962 +g1,4876:16059177,33734962 +g1,4876:16723085,33734962 +g1,4876:17386993,33734962 +g1,4876:18050901,33734962 +h1,4876:18382855,33734962:0,0,0 +k1,4876:32583029,33734962:14200174 +g1,4876:32583029,33734962 +) +(1,4876:6764466,34419817:25818563,424439,112852 +h1,4876:6764466,34419817:0,0,0 +g1,4876:7760328,34419817 +g1,4876:8092282,34419817 +g1,4876:8424236,34419817 +g1,4876:10747914,34419817 +g1,4876:11411822,34419817 +g1,4876:12739638,34419817 +g1,4876:14731362,34419817 +g1,4876:16059178,34419817 +g1,4876:17386994,34419817 +g1,4876:18714810,34419817 +g1,4876:20042626,34419817 +g1,4876:21370442,34419817 +h1,4876:22366304,34419817:0,0,0 +k1,4876:32583029,34419817:10216725 +g1,4876:32583029,34419817 +) +] +) +g1,4877:32583029,34532669 +g1,4877:6764466,34532669 +g1,4877:6764466,34532669 +g1,4877:32583029,34532669 +g1,4877:32583029,34532669 +) +h1,4877:6764466,34729277:0,0,0 +(1,4881:6764466,35594357:25818563,513147,126483 +h1,4880:6764466,35594357:983040,0,0 +k1,4880:9207102,35594357:262909 +k1,4880:11711341,35594357:262908 +k1,4880:13165695,35594357:262909 +k1,4880:15010642,35594357:262908 +k1,4880:18790213,35594357:262909 +k1,4880:20044681,35594357:262908 +k1,4880:21683191,35594357:262909 +k1,4880:22597527,35594357:262908 +k1,4880:26893522,35594357:262909 +k1,4880:28175515,35594357:262908 +k1,4880:30209207,35594357:262909 +k1,4880:31131407,35594357:262908 +k1,4880:32583029,35594357:0 +) +(1,4881:6764466,36459437:25818563,513147,126483 +k1,4880:8584182,36459437:290761 +k1,4880:10071631,36459437:290762 +k1,4880:11510583,36459437:290761 +k1,4880:14987704,36459437:290761 +k1,4880:16701252,36459437:290761 +k1,4880:19109482,36459437:290762 +k1,4880:22095739,36459437:290761 +k1,4880:23816496,36459437:290761 +k1,4880:24758685,36459437:290761 +k1,4880:27837349,36459437:290762 +k1,4880:29147195,36459437:290761 +k1,4880:31923737,36459437:290761 +k1,4880:32583029,36459437:0 +) +(1,4881:6764466,37324517:25818563,513147,126483 +g1,4880:8991379,37324517 +g1,4880:9849900,37324517 +g1,4880:11500751,37324517 +g1,4880:13380323,37324517 +g1,4880:14195590,37324517 +g1,4880:15413904,37324517 +k1,4881:32583029,37324517:15017578 +g1,4881:32583029,37324517 +) +] +g1,4881:32583029,37451000 +) +h1,4881:6630773,37451000:0,0,0 +v1,4884:6630773,38316080:0,393216,0 +(1,4893:6630773,40711604:25952256,2788740,0 +g1,4893:6630773,40711604 +g1,4893:6237557,40711604 +r1,4901:6368629,40711604:131072,2788740,0 +g1,4893:6567858,40711604 +g1,4893:6764466,40711604 +[1,4893:6764466,40711604:25818563,2788740,0 +(1,4885:6764466,38624378:25818563,701514,196608 +(1,4884:6764466,38624378:0,701514,196608 +r1,4901:8010564,38624378:1246098,898122,196608 +k1,4884:6764466,38624378:-1246098 +) +(1,4884:6764466,38624378:1246098,701514,196608 +) +k1,4884:8200246,38624378:189682 +k1,4884:8527926,38624378:327680 +k1,4884:9914294,38624378:189681 +k1,4884:11600163,38624378:189682 +k1,4884:13658275,38624378:189681 +k1,4884:16532967,38624378:189682 +k1,4884:17488765,38624378:189682 +k1,4884:19968274,38624378:189681 +k1,4884:22228894,38624378:189682 +k1,4884:24162489,38624378:189682 +k1,4884:26360193,38624378:189681 +k1,4884:28618191,38624378:189682 +k1,4884:29799432,38624378:189681 +k1,4884:30605152,38624378:189682 +k1,4885:32583029,38624378:0 +) +(1,4885:6764466,39489458:25818563,452978,115847 +(1,4884:6764466,39489458:0,452978,115847 +r1,4901:9233003,39489458:2468537,568825,115847 +k1,4884:6764466,39489458:-2468537 +) +(1,4884:6764466,39489458:2468537,452978,115847 +k1,4884:6764466,39489458:3277 +h1,4884:9229726,39489458:0,411205,112570 +) +k1,4885:32583029,39489458:23176356 +g1,4885:32583029,39489458 +) +v1,4887:6764466,40174313:0,393216,0 +(1,4891:6764466,40514996:25818563,733899,196608 +g1,4891:6764466,40514996 +g1,4891:6764466,40514996 +g1,4891:6567858,40514996 +(1,4891:6567858,40514996:0,733899,196608 +r1,4901:32779637,40514996:26211779,930507,196608 +k1,4891:6567857,40514996:-26211780 +) +(1,4891:6567858,40514996:26211779,733899,196608 +[1,4891:6764466,40514996:25818563,537291,0 +(1,4889:6764466,40408750:25818563,431045,106246 +(1,4888:6764466,40408750:0,0,0 +g1,4888:6764466,40408750 +g1,4888:6764466,40408750 +g1,4888:6436786,40408750 +(1,4888:6436786,40408750:0,0,0 +) +g1,4888:6764466,40408750 +) +k1,4889:6764466,40408750:0 +g1,4889:10747914,40408750 +g1,4889:11411822,40408750 +g1,4889:19710672,40408750 +h1,4889:22698257,40408750:0,0,0 +k1,4889:32583029,40408750:9884772 +g1,4889:32583029,40408750 +) +] +) +g1,4891:32583029,40514996 +g1,4891:6764466,40514996 +g1,4891:6764466,40514996 +g1,4891:32583029,40514996 +g1,4891:32583029,40514996 +) +h1,4891:6764466,40711604:0,0,0 +] +g1,4893:32583029,40711604 +) +h1,4893:6630773,40711604:0,0,0 ] -[1,5683:3078558,4812305:0,0,0 -(1,5683:3078558,49800853:0,16384,2228224 -g1,5683:29030814,49800853 -g1,5683:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,5683:36151628,51504789:16384,1179648,0 -) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 +(1,4901:32583029,45706769:0,0,0 +g1,4901:32583029,45706769 +) ) ] +(1,4901:6630773,47279633:25952256,0,0 +h1,4901:6630773,47279633:25952256,0,0 ) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,5683:37855564,49800853:1179648,16384,0 +] +(1,4901:4262630,4025873:0,0,0 +[1,4901:-473656,4025873:0,0,0 +(1,4901:-473656,-710413:0,0,0 +(1,4901:-473656,-710413:0,0,0 +g1,4901:-473656,-710413 ) +g1,4901:-473656,-710413 ) -k1,5683:3078556,49800853:-34777008 +] ) -] -g1,5683:6630773,4812305 -k1,5683:22348274,4812305:14920583 -g1,5683:23970945,4812305 -g1,5683:24793421,4812305 -g1,5683:27528893,4812305 -g1,5683:28938572,4812305 -) -) -] -[1,5683:6630773,45706769:25952256,40108032,0 -(1,5683:6630773,45706769:25952256,40108032,0 -(1,5683:6630773,45706769:0,0,0 -g1,5683:6630773,45706769 -) -[1,5683:6630773,45706769:25952256,40108032,0 -(1,5592:6630773,6254097:25952256,505283,134348 -k1,5591:8679646,6254097:204690 -k1,5591:9500373,6254097:204689 -k1,5591:10724148,6254097:204690 -k1,5591:12582310,6254097:204689 -k1,5591:15574902,6254097:204690 -k1,5591:16976278,6254097:204689 -k1,5591:20253296,6254097:204690 -k1,5591:22663273,6254097:204690 -k1,5591:23519390,6254097:204689 -(1,5591:23519390,6254097:0,452978,115847 -r1,5683:25636215,6254097:2116825,568825,115847 -k1,5591:23519390,6254097:-2116825 -) -(1,5591:23519390,6254097:2116825,452978,115847 -k1,5591:23519390,6254097:3277 -h1,5591:25632938,6254097:0,411205,112570 -) -k1,5591:25840905,6254097:204690 -k1,5591:29619928,6254097:204689 -k1,5591:30843703,6254097:204690 -k1,5591:32583029,6254097:0 -) -(1,5592:6630773,7095585:25952256,513147,134348 -k1,5591:7429830,7095585:139765 -k1,5591:8588681,7095585:139766 -k1,5591:10520856,7095585:139765 -k1,5591:12515291,7095585:139766 -k1,5591:13464426,7095585:139765 -k1,5591:15112830,7095585:139765 -k1,5591:16272992,7095585:139766 -k1,5591:18481073,7095585:139765 -k1,5591:19303724,7095585:139766 -k1,5591:21627804,7095585:139765 -k1,5591:22959014,7095585:139765 -k1,5591:24117865,7095585:139766 -k1,5591:27329958,7095585:139765 -k1,5591:29675011,7095585:139766 -k1,5591:30466204,7095585:139765 -(1,5591:30466204,7095585:0,452978,115847 -r1,5683:32583029,7095585:2116825,568825,115847 -k1,5591:30466204,7095585:-2116825 -) -(1,5591:30466204,7095585:2116825,452978,115847 -k1,5591:30466204,7095585:3277 -h1,5591:32579752,7095585:0,411205,112570 -) -k1,5591:32583029,7095585:0 -) -(1,5592:6630773,7937073:25952256,505283,134348 -g1,5591:8440222,7937073 -g1,5591:9922646,7937073 -g1,5591:12190191,7937073 -g1,5591:13040848,7937073 -g1,5591:14259162,7937073 -k1,5592:32583029,7937073:16357787 -g1,5592:32583029,7937073 -) -v1,5594:6630773,9127539:0,393216,0 -(1,5602:6630773,11346273:25952256,2611950,196608 -g1,5602:6630773,11346273 -g1,5602:6630773,11346273 -g1,5602:6434165,11346273 -(1,5602:6434165,11346273:0,2611950,196608 -r1,5683:32779637,11346273:26345472,2808558,196608 -k1,5602:6434165,11346273:-26345472 -) -(1,5602:6434165,11346273:26345472,2611950,196608 -[1,5602:6630773,11346273:25952256,2415342,0 -(1,5596:6630773,9341449:25952256,410518,82312 -(1,5595:6630773,9341449:0,0,0 -g1,5595:6630773,9341449 -g1,5595:6630773,9341449 -g1,5595:6303093,9341449 -(1,5595:6303093,9341449:0,0,0 -) -g1,5595:6630773,9341449 -) -k1,5596:6630773,9341449:0 -k1,5596:9820935,9341449:660996 -k1,5596:10798076,9341449:660995 -k1,5596:13355947,9341449:660996 -k1,5596:15281525,9341449:660995 -k1,5596:17207104,9341449:660996 -k1,5596:19132683,9341449:660996 -k1,5596:21058261,9341449:660995 -k1,5596:23299986,9341449:660996 -k1,5596:25857855,9341449:660995 -k1,5596:26834997,9341449:660996 -k1,5596:29392868,9341449:660996 -k1,5596:31634592,9341449:660995 -k1,5596:32583029,9341449:0 -) -(1,5596:6630773,10007627:25952256,404226,82312 -g1,5596:8211502,10007627 -g1,5596:8843794,10007627 -g1,5596:12953689,10007627 -h1,5596:16431291,10007627:0,0,0 -k1,5596:32583029,10007627:16151738 -g1,5596:32583029,10007627 -) -(1,5601:6630773,10673805:25952256,404226,76021 -(1,5598:6630773,10673805:0,0,0 -g1,5598:6630773,10673805 -g1,5598:6630773,10673805 -g1,5598:6303093,10673805 -(1,5598:6303093,10673805:0,0,0 -) -g1,5598:6630773,10673805 -) -g1,5601:7579210,10673805 -g1,5601:8843793,10673805 -g1,5601:11372959,10673805 -g1,5601:13902125,10673805 -g1,5601:16431291,10673805 -g1,5601:18960457,10673805 -g1,5601:21489623,10673805 -h1,5601:23702643,10673805:0,0,0 -k1,5601:32583029,10673805:8880386 -g1,5601:32583029,10673805 -) -(1,5601:6630773,11339983:25952256,404226,6290 -h1,5601:6630773,11339983:0,0,0 -g1,5601:7579210,11339983 -g1,5601:10108376,11339983 -g1,5601:12637542,11339983 -h1,5601:14850562,11339983:0,0,0 -k1,5601:32583030,11339983:17732468 -g1,5601:32583030,11339983 -) -] -) -g1,5602:32583029,11346273 -g1,5602:6630773,11346273 -g1,5602:6630773,11346273 -g1,5602:32583029,11346273 -g1,5602:32583029,11346273 -) -h1,5602:6630773,11542881:0,0,0 -(1,5606:6630773,12908657:25952256,505283,134348 -h1,5605:6630773,12908657:983040,0,0 -k1,5605:9080962,12908657:270462 -k1,5605:12423752,12908657:270462 -k1,5605:14899501,12908657:270462 -k1,5605:15821390,12908657:270461 -k1,5605:17936035,12908657:270462 -k1,5605:19310779,12908657:270462 -k1,5605:20329007,12908657:270462 -k1,5605:20955329,12908657:270462 -k1,5605:23384547,12908657:270462 -k1,5605:25632886,12908657:270462 -k1,5605:27187853,12908657:270461 -k1,5605:29185189,12908657:270462 -k1,5605:30738846,12908657:270462 -k1,5605:32583029,12908657:0 -) -(1,5606:6630773,13750145:25952256,505283,134348 -k1,5605:8351436,13750145:259865 -k1,5605:9630387,13750145:259866 -k1,5605:11900897,13750145:259865 -k1,5605:12846925,13750145:259866 -k1,5605:15144960,13750145:259865 -k1,5605:16020864,13750145:259866 -k1,5605:17299814,13750145:259865 -k1,5605:19537556,13750145:259865 -k1,5605:22002709,13750145:259866 -k1,5605:22948736,13750145:259865 -k1,5605:26280930,13750145:259866 -k1,5605:27192223,13750145:259865 -k1,5605:30732821,13750145:259866 -(1,5605:30732821,13750145:0,414482,115847 -r1,5683:31091087,13750145:358266,530329,115847 -k1,5605:30732821,13750145:-358266 -) -(1,5605:30732821,13750145:358266,414482,115847 -k1,5605:30732821,13750145:3277 -h1,5605:31087810,13750145:0,411205,112570 -) -k1,5605:31350952,13750145:259865 -k1,5605:32583029,13750145:0 -) -(1,5606:6630773,14591633:25952256,505283,134348 -g1,5605:8988758,14591633 -g1,5605:11496165,14591633 -g1,5605:12886839,14591633 -g1,5605:15893630,14591633 -g1,5605:16902229,14591633 -g1,5605:18599611,14591633 -h1,5605:19396529,14591633:0,0,0 -k1,5606:32583029,14591633:12805736 -g1,5606:32583029,14591633 -) -v1,5608:6630773,15782099:0,393216,0 -(1,5616:6630773,17334655:25952256,1945772,196608 -g1,5616:6630773,17334655 -g1,5616:6630773,17334655 -g1,5616:6434165,17334655 -(1,5616:6434165,17334655:0,1945772,196608 -r1,5683:32779637,17334655:26345472,2142380,196608 -k1,5616:6434165,17334655:-26345472 -) -(1,5616:6434165,17334655:26345472,1945772,196608 -[1,5616:6630773,17334655:25952256,1749164,0 -(1,5610:6630773,15996009:25952256,410518,82312 -(1,5609:6630773,15996009:0,0,0 -g1,5609:6630773,15996009 -g1,5609:6630773,15996009 -g1,5609:6303093,15996009 -(1,5609:6303093,15996009:0,0,0 -) -g1,5609:6630773,15996009 -) -k1,5610:6630773,15996009:0 -k1,5610:9414743,15996009:254804 -k1,5610:9985692,15996009:254803 -k1,5610:12137371,15996009:254804 -k1,5610:13656757,15996009:254803 -k1,5610:15176144,15996009:254804 -k1,5610:16695530,15996009:254803 -k1,5610:18214917,15996009:254804 -k1,5610:20050449,15996009:254803 -k1,5610:22202127,15996009:254804 -k1,5610:22773076,15996009:254803 -k1,5610:23976318,15996009:254804 -k1,5610:24547267,15996009:254803 -k1,5610:27963528,15996009:254804 -k1,5610:28534477,15996009:254803 -k1,5610:29105427,15996009:254804 -h1,5610:32583029,15996009:0,0,0 -k1,5610:32583029,15996009:0 -k1,5610:32583029,15996009:0 -) -(1,5615:6630773,16662187:25952256,404226,76021 -(1,5612:6630773,16662187:0,0,0 -g1,5612:6630773,16662187 -g1,5612:6630773,16662187 -g1,5612:6303093,16662187 -(1,5612:6303093,16662187:0,0,0 -) -g1,5612:6630773,16662187 -) -g1,5615:7579210,16662187 -g1,5615:8843793,16662187 -g1,5615:11372959,16662187 -g1,5615:13902125,16662187 -g1,5615:16431291,16662187 -g1,5615:18960457,16662187 -g1,5615:21489623,16662187 -h1,5615:23702643,16662187:0,0,0 -k1,5615:32583029,16662187:8880386 -g1,5615:32583029,16662187 -) -(1,5615:6630773,17328365:25952256,404226,6290 -h1,5615:6630773,17328365:0,0,0 -g1,5615:7579210,17328365 -g1,5615:10108376,17328365 -g1,5615:12637542,17328365 -h1,5615:14850562,17328365:0,0,0 -k1,5615:32583030,17328365:17732468 -g1,5615:32583030,17328365 -) -] -) -g1,5616:32583029,17334655 -g1,5616:6630773,17334655 -g1,5616:6630773,17334655 -g1,5616:32583029,17334655 -g1,5616:32583029,17334655 -) -h1,5616:6630773,17531263:0,0,0 -(1,5620:6630773,18897039:25952256,505283,126483 -h1,5619:6630773,18897039:983040,0,0 -k1,5619:8455904,18897039:214256 -k1,5619:9689245,18897039:214256 -k1,5619:12895220,18897039:214256 -k1,5619:14964799,18897039:214255 -k1,5619:16047407,18897039:214256 -k1,5619:18466950,18897039:214256 -k1,5619:19037066,18897039:214256 -k1,5619:21871451,18897039:214256 -k1,5619:24063584,18897039:214256 -k1,5619:24960725,18897039:214256 -k1,5619:25530840,18897039:214255 -k1,5619:28719775,18897039:214256 -k1,5619:30911908,18897039:214256 -k1,5619:31812326,18897039:214256 -k1,5619:32583029,18897039:0 -) -(1,5620:6630773,19738527:25952256,513147,134348 -k1,5619:9879250,19738527:176149 -k1,5619:11003050,19738527:176149 -k1,5619:14459931,19738527:176149 -(1,5619:14459931,19738527:0,414482,115847 -r1,5683:14818197,19738527:358266,530329,115847 -k1,5619:14459931,19738527:-358266 -) -(1,5619:14459931,19738527:358266,414482,115847 -k1,5619:14459931,19738527:3277 -h1,5619:14814920,19738527:0,411205,112570 -) -k1,5619:14994347,19738527:176150 -k1,5619:15829788,19738527:176149 -k1,5619:18701433,19738527:176149 -(1,5619:18701433,19738527:0,459977,115847 -r1,5683:21521682,19738527:2820249,575824,115847 -k1,5619:18701433,19738527:-2820249 -) -(1,5619:18701433,19738527:2820249,459977,115847 -k1,5619:18701433,19738527:3277 -h1,5619:21518405,19738527:0,411205,112570 -) -k1,5619:21871501,19738527:176149 -k1,5619:22517543,19738527:176149 -k1,5619:23225189,19738527:176149 -k1,5619:24687154,19738527:176149 -k1,5619:27493264,19738527:176150 -k1,5619:28320841,19738527:176149 -k1,5619:29934195,19738527:176149 -k1,5619:30466204,19738527:176149 -(1,5619:30466204,19738527:0,459977,115847 -r1,5683:32583029,19738527:2116825,575824,115847 -k1,5619:30466204,19738527:-2116825 -) -(1,5619:30466204,19738527:2116825,459977,115847 -k1,5619:30466204,19738527:3277 -h1,5619:32579752,19738527:0,411205,112570 -) -k1,5619:32583029,19738527:0 -) -(1,5620:6630773,20580015:25952256,513147,134348 -k1,5619:7539960,20580015:223025 -k1,5619:8533688,20580015:223025 -k1,5619:11829041,20580015:223025 -k1,5619:12703494,20580015:223025 -k1,5619:16207251,20580015:223025 -(1,5619:16207251,20580015:0,414482,115847 -r1,5683:16565517,20580015:358266,530329,115847 -k1,5619:16207251,20580015:-358266 -) -(1,5619:16207251,20580015:358266,414482,115847 -k1,5619:16207251,20580015:3277 -h1,5619:16562240,20580015:0,411205,112570 -) -k1,5619:16962212,20580015:223025 -k1,5619:18566081,20580015:223025 -k1,5619:20835139,20580015:223024 -k1,5619:21516261,20580015:223025 -k1,5619:24369246,20580015:223025 -k1,5619:25243699,20580015:223025 -k1,5619:27729027,20580015:223025 -k1,5619:28971137,20580015:223025 -k1,5619:31923737,20580015:223025 -k1,5619:32583029,20580015:0 -) -(1,5620:6630773,21421503:25952256,513147,126483 -g1,5619:8622412,21421503 -g1,5619:9504526,21421503 -g1,5619:12002103,21421503 -g1,5619:13220417,21421503 -g1,5619:15263829,21421503 -g1,5619:16079096,21421503 -g1,5619:16634185,21421503 -k1,5620:32583029,21421503:13881183 -g1,5620:32583029,21421503 -) -v1,5622:6630773,22611969:0,393216,0 -(1,5654:6630773,34124741:25952256,11905988,196608 -g1,5654:6630773,34124741 -g1,5654:6630773,34124741 -g1,5654:6434165,34124741 -(1,5654:6434165,34124741:0,11905988,196608 -r1,5683:32779637,34124741:26345472,12102596,196608 -k1,5654:6434165,34124741:-26345472 -) -(1,5654:6434165,34124741:26345472,11905988,196608 -[1,5654:6630773,34124741:25952256,11709380,0 -(1,5624:6630773,22825879:25952256,410518,76021 -(1,5623:6630773,22825879:0,0,0 -g1,5623:6630773,22825879 -g1,5623:6630773,22825879 -g1,5623:6303093,22825879 -(1,5623:6303093,22825879:0,0,0 -) -g1,5623:6630773,22825879 -) -g1,5624:8211502,22825879 -g1,5624:9159940,22825879 -g1,5624:12005252,22825879 -g1,5624:12637544,22825879 -h1,5624:14218272,22825879:0,0,0 -k1,5624:32583028,22825879:18364756 -g1,5624:32583028,22825879 -) -(1,5625:6630773,23492057:25952256,410518,6290 -h1,5625:6630773,23492057:0,0,0 -h1,5625:7895356,23492057:0,0,0 -k1,5625:32583028,23492057:24687672 -g1,5625:32583028,23492057 -) -(1,5630:6630773,24158235:25952256,404226,76021 -(1,5627:6630773,24158235:0,0,0 -g1,5627:6630773,24158235 -g1,5627:6630773,24158235 -g1,5627:6303093,24158235 -(1,5627:6303093,24158235:0,0,0 -) -g1,5627:6630773,24158235 -) -g1,5630:7579210,24158235 -g1,5630:8843793,24158235 -g1,5630:11372959,24158235 -g1,5630:13902125,24158235 -g1,5630:16431291,24158235 -g1,5630:18960457,24158235 -g1,5630:21489623,24158235 -h1,5630:23702643,24158235:0,0,0 -k1,5630:32583029,24158235:8880386 -g1,5630:32583029,24158235 -) -(1,5630:6630773,24824413:25952256,404226,6290 -h1,5630:6630773,24824413:0,0,0 -g1,5630:7579210,24824413 -g1,5630:10108376,24824413 -g1,5630:12637542,24824413 -h1,5630:14850562,24824413:0,0,0 -k1,5630:32583030,24824413:17732468 -g1,5630:32583030,24824413 -) -(1,5632:6630773,26145951:25952256,410518,82312 -(1,5631:6630773,26145951:0,0,0 -g1,5631:6630773,26145951 -g1,5631:6630773,26145951 -g1,5631:6303093,26145951 -(1,5631:6303093,26145951:0,0,0 -) -g1,5631:6630773,26145951 -) -k1,5632:6630773,26145951:0 -g1,5632:9476085,26145951 -g1,5632:10108377,26145951 -g1,5632:12005252,26145951 -g1,5632:14218272,26145951 -g1,5632:14850564,26145951 -g1,5632:18960459,26145951 -h1,5632:22438061,26145951:0,0,0 -k1,5632:32583029,26145951:10144968 -g1,5632:32583029,26145951 -) -(1,5637:6630773,26812129:25952256,404226,76021 -(1,5634:6630773,26812129:0,0,0 -g1,5634:6630773,26812129 -g1,5634:6630773,26812129 -g1,5634:6303093,26812129 -(1,5634:6303093,26812129:0,0,0 -) -g1,5634:6630773,26812129 -) -g1,5637:7579210,26812129 -g1,5637:8843793,26812129 -g1,5637:11372959,26812129 -g1,5637:13902125,26812129 -g1,5637:16431291,26812129 -g1,5637:18960457,26812129 -g1,5637:21489623,26812129 -h1,5637:23702643,26812129:0,0,0 -k1,5637:32583029,26812129:8880386 -g1,5637:32583029,26812129 -) -(1,5637:6630773,27478307:25952256,404226,6290 -h1,5637:6630773,27478307:0,0,0 -g1,5637:7579210,27478307 -g1,5637:10108376,27478307 -g1,5637:12637542,27478307 -h1,5637:14850562,27478307:0,0,0 -k1,5637:32583030,27478307:17732468 -g1,5637:32583030,27478307 -) -(1,5639:6630773,28799845:25952256,410518,82312 -(1,5638:6630773,28799845:0,0,0 -g1,5638:6630773,28799845 -g1,5638:6630773,28799845 -g1,5638:6303093,28799845 -(1,5638:6303093,28799845:0,0,0 -) -g1,5638:6630773,28799845 -) -k1,5639:6630773,28799845:0 -g1,5639:9476085,28799845 -g1,5639:10108377,28799845 -g1,5639:12005252,28799845 -g1,5639:14218272,28799845 -g1,5639:14850564,28799845 -g1,5639:18012022,28799845 -g1,5639:18644314,28799845 -g1,5639:21805771,28799845 -g1,5639:24334937,28799845 -g1,5639:24967229,28799845 -h1,5639:28128685,28799845:0,0,0 -k1,5639:32583029,28799845:4454344 -g1,5639:32583029,28799845 -) -(1,5644:6630773,29466023:25952256,404226,76021 -(1,5641:6630773,29466023:0,0,0 -g1,5641:6630773,29466023 -g1,5641:6630773,29466023 -g1,5641:6303093,29466023 -(1,5641:6303093,29466023:0,0,0 -) -g1,5641:6630773,29466023 -) -g1,5644:7579210,29466023 -g1,5644:8843793,29466023 -g1,5644:11056813,29466023 -g1,5644:13269833,29466023 -g1,5644:15482853,29466023 -g1,5644:17695873,29466023 -g1,5644:19908893,29466023 -h1,5644:21805767,29466023:0,0,0 -k1,5644:32583029,29466023:10777262 -g1,5644:32583029,29466023 -) -(1,5644:6630773,30132201:25952256,404226,6290 -h1,5644:6630773,30132201:0,0,0 -g1,5644:7579210,30132201 -g1,5644:10108376,30132201 -g1,5644:12321396,30132201 -h1,5644:14218270,30132201:0,0,0 -k1,5644:32583030,30132201:18364760 -g1,5644:32583030,30132201 -) -(1,5646:6630773,31453739:25952256,410518,82312 -(1,5645:6630773,31453739:0,0,0 -g1,5645:6630773,31453739 -g1,5645:6630773,31453739 -g1,5645:6303093,31453739 -(1,5645:6303093,31453739:0,0,0 -) -g1,5645:6630773,31453739 -) -k1,5646:6630773,31453739:0 -g1,5646:9476085,31453739 -g1,5646:10108377,31453739 -k1,5646:10108377,31453739:0 -h1,5646:11689106,31453739:0,0,0 -k1,5646:32583030,31453739:20893924 -g1,5646:32583030,31453739 -) -(1,5647:6630773,32119917:25952256,404226,82312 -h1,5647:6630773,32119917:0,0,0 -g1,5647:6946919,32119917 -g1,5647:7263065,32119917 -g1,5647:7579211,32119917 -g1,5647:7895357,32119917 -g1,5647:8211503,32119917 -g1,5647:8527649,32119917 -g1,5647:8843795,32119917 -g1,5647:11056815,32119917 -g1,5647:11689107,32119917 -g1,5647:15799002,32119917 -k1,5647:15799002,32119917:0 -h1,5647:19276605,32119917:0,0,0 -k1,5647:32583029,32119917:13306424 -g1,5647:32583029,32119917 -) -(1,5648:6630773,32786095:25952256,404226,82312 -h1,5648:6630773,32786095:0,0,0 -g1,5648:6946919,32786095 -g1,5648:7263065,32786095 -g1,5648:7579211,32786095 -g1,5648:7895357,32786095 -g1,5648:8211503,32786095 -g1,5648:8527649,32786095 -g1,5648:8843795,32786095 -g1,5648:11056815,32786095 -g1,5648:11689107,32786095 -g1,5648:15482856,32786095 -h1,5648:18644312,32786095:0,0,0 -k1,5648:32583029,32786095:13938717 -g1,5648:32583029,32786095 -) -(1,5653:6630773,33452273:25952256,404226,76021 -(1,5650:6630773,33452273:0,0,0 -g1,5650:6630773,33452273 -g1,5650:6630773,33452273 -g1,5650:6303093,33452273 -(1,5650:6303093,33452273:0,0,0 -) -g1,5650:6630773,33452273 -) -g1,5653:7579210,33452273 -g1,5653:8843793,33452273 -g1,5653:11056813,33452273 -g1,5653:13269833,33452273 -g1,5653:15482853,33452273 -g1,5653:17695873,33452273 -g1,5653:19908893,33452273 -h1,5653:21805767,33452273:0,0,0 -k1,5653:32583029,33452273:10777262 -g1,5653:32583029,33452273 -) -(1,5653:6630773,34118451:25952256,404226,6290 -h1,5653:6630773,34118451:0,0,0 -g1,5653:7579210,34118451 -g1,5653:10108376,34118451 -g1,5653:12321396,34118451 -h1,5653:14218270,34118451:0,0,0 -k1,5653:32583030,34118451:18364760 -g1,5653:32583030,34118451 -) -] -) -g1,5654:32583029,34124741 -g1,5654:6630773,34124741 -g1,5654:6630773,34124741 -g1,5654:32583029,34124741 -g1,5654:32583029,34124741 -) -h1,5654:6630773,34321349:0,0,0 -(1,5658:6630773,35687125:25952256,513147,134348 -h1,5657:6630773,35687125:983040,0,0 -k1,5657:10489433,35687125:185367 -k1,5657:12628427,35687125:185366 -k1,5657:14919300,35687125:180614 -k1,5657:16053463,35687125:180614 -k1,5657:17326561,35687125:180613 -(1,5657:17326561,35687125:0,459977,115847 -r1,5683:20146810,35687125:2820249,575824,115847 -k1,5657:17326561,35687125:-2820249 -) -(1,5657:17326561,35687125:2820249,459977,115847 -k1,5657:17326561,35687125:3277 -h1,5657:20143533,35687125:0,411205,112570 -) -k1,5657:20327424,35687125:180614 -k1,5657:21194200,35687125:180614 -k1,5657:23450338,35687125:180613 -k1,5657:25673054,35687125:180614 -k1,5657:28035362,35687125:180614 -k1,5657:29235060,35687125:180613 -k1,5657:31069147,35687125:180614 -k1,5657:32583029,35687125:0 -) -(1,5658:6630773,36528613:25952256,513147,134348 -g1,5657:7777653,36528613 -g1,5657:8995967,36528613 -g1,5657:10987606,36528613 -g1,5657:12055187,36528613 -g1,5657:13803032,36528613 -g1,5657:14653689,36528613 -k1,5658:32583029,36528613:15778448 -g1,5658:32583029,36528613 -) -v1,5660:6630773,37719079:0,393216,0 -(1,5678:6630773,43925636:25952256,6599773,196608 -g1,5678:6630773,43925636 -g1,5678:6630773,43925636 -g1,5678:6434165,43925636 -(1,5678:6434165,43925636:0,6599773,196608 -r1,5683:32779637,43925636:26345472,6796381,196608 -k1,5678:6434165,43925636:-26345472 -) -(1,5678:6434165,43925636:26345472,6599773,196608 -[1,5678:6630773,43925636:25952256,6403165,0 -(1,5662:6630773,37932989:25952256,410518,107478 -(1,5661:6630773,37932989:0,0,0 -g1,5661:6630773,37932989 -g1,5661:6630773,37932989 -g1,5661:6303093,37932989 -(1,5661:6303093,37932989:0,0,0 -) -g1,5661:6630773,37932989 -) -g1,5662:8211502,37932989 -g1,5662:9159940,37932989 -g1,5662:11056815,37932989 -g1,5662:12005253,37932989 -g1,5662:14218273,37932989 -g1,5662:14850565,37932989 -g1,5662:17063586,37932989 -g1,5662:18644315,37932989 -g1,5662:20225044,37932989 -h1,5662:21805772,37932989:0,0,0 -k1,5662:32583029,37932989:10777257 -g1,5662:32583029,37932989 -) -(1,5663:6630773,38599167:25952256,410518,6290 -h1,5663:6630773,38599167:0,0,0 -h1,5663:7895356,38599167:0,0,0 -k1,5663:32583028,38599167:24687672 -g1,5663:32583028,38599167 -) -(1,5668:6630773,39265345:25952256,404226,76021 -(1,5665:6630773,39265345:0,0,0 -g1,5665:6630773,39265345 -g1,5665:6630773,39265345 -g1,5665:6303093,39265345 -(1,5665:6303093,39265345:0,0,0 -) -g1,5665:6630773,39265345 -) -g1,5668:7579210,39265345 -g1,5668:7895356,39265345 -g1,5668:9159939,39265345 -g1,5668:9792231,39265345 -g1,5668:10424523,39265345 -g1,5668:11056815,39265345 -g1,5668:11689107,39265345 -g1,5668:12321399,39265345 -g1,5668:12953691,39265345 -g1,5668:13585983,39265345 -g1,5668:14218275,39265345 -g1,5668:14850567,39265345 -g1,5668:15482859,39265345 -g1,5668:16115151,39265345 -h1,5668:16431297,39265345:0,0,0 -k1,5668:32583029,39265345:16151732 -g1,5668:32583029,39265345 -) -(1,5668:6630773,39931523:25952256,404226,6290 -h1,5668:6630773,39931523:0,0,0 -g1,5668:7579210,39931523 -g1,5668:10108376,39931523 -g1,5668:10740668,39931523 -g1,5668:11372960,39931523 -g1,5668:12005252,39931523 -h1,5668:12321398,39931523:0,0,0 -k1,5668:32583030,39931523:20261632 -g1,5668:32583030,39931523 -) -(1,5670:6630773,41253061:25952256,410518,82312 -(1,5669:6630773,41253061:0,0,0 -g1,5669:6630773,41253061 -g1,5669:6630773,41253061 -g1,5669:6303093,41253061 -(1,5669:6303093,41253061:0,0,0 -) -g1,5669:6630773,41253061 -) -k1,5670:6630773,41253061:0 -k1,5670:6630773,41253061:0 -h1,5670:10424521,41253061:0,0,0 -k1,5670:32583029,41253061:22158508 -g1,5670:32583029,41253061 -) -(1,5671:6630773,41919239:25952256,404226,82312 -h1,5671:6630773,41919239:0,0,0 -g1,5671:6946919,41919239 -g1,5671:7263065,41919239 -g1,5671:7579211,41919239 -g1,5671:7895357,41919239 -g1,5671:8211503,41919239 -g1,5671:8527649,41919239 -g1,5671:8843795,41919239 -g1,5671:11056815,41919239 -g1,5671:11689107,41919239 -g1,5671:13902128,41919239 -g1,5671:15482857,41919239 -g1,5671:17063586,41919239 -k1,5671:17063586,41919239:0 -h1,5671:18644315,41919239:0,0,0 -k1,5671:32583029,41919239:13938714 -g1,5671:32583029,41919239 -) -(1,5672:6630773,42585417:25952256,404226,82312 -h1,5672:6630773,42585417:0,0,0 -g1,5672:6946919,42585417 -g1,5672:7263065,42585417 -g1,5672:7579211,42585417 -g1,5672:7895357,42585417 -g1,5672:8211503,42585417 -g1,5672:8527649,42585417 -g1,5672:8843795,42585417 -g1,5672:11056815,42585417 -g1,5672:11689107,42585417 -g1,5672:13902128,42585417 -g1,5672:15482857,42585417 -g1,5672:17063586,42585417 -h1,5672:18644314,42585417:0,0,0 -k1,5672:32583029,42585417:13938715 -g1,5672:32583029,42585417 -) -(1,5677:6630773,43251595:25952256,404226,76021 -(1,5674:6630773,43251595:0,0,0 -g1,5674:6630773,43251595 -g1,5674:6630773,43251595 -g1,5674:6303093,43251595 -(1,5674:6303093,43251595:0,0,0 -) -g1,5674:6630773,43251595 -) -g1,5677:7579210,43251595 -g1,5677:7895356,43251595 -g1,5677:9159939,43251595 -g1,5677:9792231,43251595 -g1,5677:10424523,43251595 -g1,5677:11056815,43251595 -g1,5677:11689107,43251595 -g1,5677:12321399,43251595 -g1,5677:12953691,43251595 -g1,5677:13585983,43251595 -g1,5677:14218275,43251595 -g1,5677:14850567,43251595 -g1,5677:15482859,43251595 -g1,5677:16115151,43251595 -h1,5677:16431297,43251595:0,0,0 -k1,5677:32583029,43251595:16151732 -g1,5677:32583029,43251595 -) -(1,5677:6630773,43917773:25952256,404226,7863 -h1,5677:6630773,43917773:0,0,0 -g1,5677:7579210,43917773 -g1,5677:10108376,43917773 -g1,5677:10740668,43917773 -g1,5677:11372960,43917773 -h1,5677:11689106,43917773:0,0,0 -k1,5677:32583030,43917773:20893924 -g1,5677:32583030,43917773 -) -] -) -g1,5678:32583029,43925636 -g1,5678:6630773,43925636 -g1,5678:6630773,43925636 -g1,5678:32583029,43925636 -g1,5678:32583029,43925636 -) -h1,5678:6630773,44122244:0,0,0 -v1,5682:6630773,46012308:0,393216,0 -] -(1,5683:32583029,45706769:0,0,0 -g1,5683:32583029,45706769 -) -) -] -(1,5683:6630773,47279633:25952256,0,0 -h1,5683:6630773,47279633:25952256,0,0 -) -] -(1,5683:4262630,4025873:0,0,0 -[1,5683:-473656,4025873:0,0,0 -(1,5683:-473656,-710413:0,0,0 -(1,5683:-473656,-710413:0,0,0 -g1,5683:-473656,-710413 -) -g1,5683:-473656,-710413 -) -] -) -] -!25993 -}97 -Input:815:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:816:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:817:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:818:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:819:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:820:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:821:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:822:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:823:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:824:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:825:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1034 -{98 -[1,5802:4262630,47279633:28320399,43253760,0 -(1,5802:4262630,4025873:0,0,0 -[1,5802:-473656,4025873:0,0,0 -(1,5802:-473656,-710413:0,0,0 -(1,5802:-473656,-644877:0,0,0 -k1,5802:-473656,-644877:-65536 +] +!25037 +}83 +Input:781:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:782:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:783:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:784:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:785:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:786:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:787:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:788:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:789:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!848 +{84 +[1,4980:4262630,47279633:28320399,43253760,0 +(1,4980:4262630,4025873:0,0,0 +[1,4980:-473656,4025873:0,0,0 +(1,4980:-473656,-710413:0,0,0 +(1,4980:-473656,-644877:0,0,0 +k1,4980:-473656,-644877:-65536 ) -(1,5802:-473656,4736287:0,0,0 -k1,5802:-473656,4736287:5209943 +(1,4980:-473656,4736287:0,0,0 +k1,4980:-473656,4736287:5209943 ) -g1,5802:-473656,-710413 +g1,4980:-473656,-710413 ) ] ) -[1,5802:6630773,47279633:25952256,43253760,0 -[1,5802:6630773,4812305:25952256,786432,0 -(1,5802:6630773,4812305:25952256,485622,11795 -(1,5802:6630773,4812305:25952256,485622,11795 -g1,5802:3078558,4812305 -[1,5802:3078558,4812305:0,0,0 -(1,5802:3078558,2439708:0,1703936,0 -k1,5802:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,5802:2537886,2439708:1179648,16384,0 +[1,4980:6630773,47279633:25952256,43253760,0 +[1,4980:6630773,4812305:25952256,786432,0 +(1,4980:6630773,4812305:25952256,505283,126483 +(1,4980:6630773,4812305:25952256,505283,126483 +g1,4980:3078558,4812305 +[1,4980:3078558,4812305:0,0,0 +(1,4980:3078558,2439708:0,1703936,0 +k1,4980:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,4980:2537886,2439708:1179648,16384,0 ) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,5802:3078558,1915420:16384,1179648,0 +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,4980:3078558,1915420:16384,1179648,0 ) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) ] ) ) ) ] -[1,5802:3078558,4812305:0,0,0 -(1,5802:3078558,2439708:0,1703936,0 -g1,5802:29030814,2439708 -g1,5802:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,5802:36151628,1915420:16384,1179648,0 +[1,4980:3078558,4812305:0,0,0 +(1,4980:3078558,2439708:0,1703936,0 +g1,4980:29030814,2439708 +g1,4980:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,4980:36151628,1915420:16384,1179648,0 ) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) ] ) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,5802:37855564,2439708:1179648,16384,0 +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,4980:37855564,2439708:1179648,16384,0 ) ) -k1,5802:3078556,2439708:-34777008 +k1,4980:3078556,2439708:-34777008 ) ] -[1,5802:3078558,4812305:0,0,0 -(1,5802:3078558,49800853:0,16384,2228224 -k1,5802:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,5802:2537886,49800853:1179648,16384,0 +[1,4980:3078558,4812305:0,0,0 +(1,4980:3078558,49800853:0,16384,2228224 +k1,4980:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,4980:2537886,49800853:1179648,16384,0 ) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,5802:3078558,51504789:16384,1179648,0 +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,4980:3078558,51504789:16384,1179648,0 ) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) ] ) ) ) ] -[1,5802:3078558,4812305:0,0,0 -(1,5802:3078558,49800853:0,16384,2228224 -g1,5802:29030814,49800853 -g1,5802:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,5802:36151628,51504789:16384,1179648,0 +[1,4980:3078558,4812305:0,0,0 +(1,4980:3078558,49800853:0,16384,2228224 +g1,4980:29030814,49800853 +g1,4980:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,4980:36151628,51504789:16384,1179648,0 ) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 ) ] ) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,5802:37855564,49800853:1179648,16384,0 +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,4980:37855564,49800853:1179648,16384,0 ) ) -k1,5802:3078556,49800853:-34777008 +k1,4980:3078556,49800853:-34777008 ) ] -g1,5802:6630773,4812305 -g1,5802:6630773,4812305 -g1,5802:9104757,4812305 -k1,5802:31786111,4812305:22681354 -) -) -] -[1,5802:6630773,45706769:25952256,40108032,0 -(1,5802:6630773,45706769:25952256,40108032,0 -(1,5802:6630773,45706769:0,0,0 -g1,5802:6630773,45706769 -) -[1,5802:6630773,45706769:25952256,40108032,0 -v1,5683:6630773,6254097:0,393216,0 -(1,5683:6630773,7654606:25952256,1793725,0 -g1,5683:6630773,7654606 -g1,5683:6303093,7654606 -r1,5802:6401397,7654606:98304,1793725,0 -g1,5683:6600626,7654606 -g1,5683:6797234,7654606 -[1,5683:6797234,7654606:25785795,1793725,0 -(1,5683:6797234,6686635:25785795,825754,196608 -(1,5682:6797234,6686635:0,825754,196608 -r1,5802:7890375,6686635:1093141,1022362,196608 -k1,5682:6797234,6686635:-1093141 -) -(1,5682:6797234,6686635:1093141,825754,196608 -) -k1,5682:8094628,6686635:204253 -k1,5682:9820846,6686635:327680 -k1,5682:11274871,6686635:204253 -k1,5682:12498209,6686635:204253 -k1,5682:14198649,6686635:204253 -k1,5682:15018940,6686635:204253 -k1,5682:16242278,6686635:204253 -k1,5682:18417199,6686635:204253 -k1,5682:20476775,6686635:204252 -k1,5682:21332456,6686635:204253 -k1,5682:22629194,6686635:204253 -k1,5682:24209048,6686635:204253 -k1,5682:24769161,6686635:204253 -k1,5682:27132170,6686635:204253 -k1,5682:29314300,6686635:204253 -k1,5682:30466204,6686635:204253 -(1,5682:30466204,6686635:0,452978,115847 -r1,5802:32583029,6686635:2116825,568825,115847 -k1,5682:30466204,6686635:-2116825 -) -(1,5682:30466204,6686635:2116825,452978,115847 -k1,5682:30466204,6686635:3277 -h1,5682:32579752,6686635:0,411205,112570 -) -k1,5682:32583029,6686635:0 -) -(1,5683:6797234,7528123:25785795,513147,126483 -g1,5682:9323646,7528123 -g1,5682:10182167,7528123 -g1,5682:13084101,7528123 -g1,5682:15591508,7528123 -g1,5682:17996024,7528123 -g1,5682:18846681,7528123 -(1,5682:18846681,7528123:0,452978,115847 -r1,5802:20963506,7528123:2116825,568825,115847 -k1,5682:18846681,7528123:-2116825 -) -(1,5682:18846681,7528123:2116825,452978,115847 -k1,5682:18846681,7528123:3277 -h1,5682:20960229,7528123:0,411205,112570 -) -g1,5682:21162735,7528123 -g1,5682:22553409,7528123 -(1,5682:22553409,7528123:0,452978,115847 -r1,5802:24670234,7528123:2116825,568825,115847 -k1,5682:22553409,7528123:-2116825 -) -(1,5682:22553409,7528123:2116825,452978,115847 -k1,5682:22553409,7528123:3277 -h1,5682:24666957,7528123:0,411205,112570 -) -k1,5683:32583029,7528123:7739125 -g1,5683:32583029,7528123 -) -] -g1,5683:32583029,7654606 -) -h1,5683:6630773,7654606:0,0,0 -(1,5686:6630773,9020382:25952256,513147,134348 -h1,5685:6630773,9020382:983040,0,0 -k1,5685:8829113,9020382:261751 -k1,5685:10195145,9020382:261750 -k1,5685:11549381,9020382:261751 -k1,5685:14550537,9020382:261751 -k1,5685:15621658,9020382:261751 -k1,5685:18107700,9020382:261750 -k1,5685:18985489,9020382:261751 -k1,5685:20266325,9020382:261751 -k1,5685:22181549,9020382:261751 -k1,5685:23681274,9020382:261750 -k1,5685:24629187,9020382:261751 -k1,5685:26284889,9020382:261751 -k1,5685:29028488,9020382:261751 -k1,5685:29918073,9020382:261750 -k1,5685:31198909,9020382:261751 -k1,5685:32583029,9020382:0 -) -(1,5686:6630773,9861870:25952256,505283,134348 -k1,5685:9690508,9861870:224648 -k1,5685:10783508,9861870:224648 -k1,5685:12100641,9861870:224648 -k1,5685:12681149,9861870:224648 -k1,5685:14097242,9861870:224648 -k1,5685:17322784,9861870:224648 -k1,5685:17903292,9861870:224648 -k1,5685:20197567,9861870:224648 -k1,5685:22400092,9861870:224648 -k1,5685:23276168,9861870:224648 -k1,5685:25704792,9861870:224648 -k1,5685:26695556,9861870:224648 -k1,5685:30312347,9861870:224648 -k1,5685:31490544,9861870:224648 -k1,5685:32583029,9861870:0 -) -(1,5686:6630773,10703358:25952256,513147,122846 -k1,5685:9505726,10703358:179457 -(1,5685:9505726,10703358:0,452978,115847 -r1,5802:12325975,10703358:2820249,568825,115847 -k1,5685:9505726,10703358:-2820249 -) -(1,5685:9505726,10703358:2820249,452978,115847 -k1,5685:9505726,10703358:3277 -h1,5685:12322698,10703358:0,411205,112570 -) -k1,5685:12505432,10703358:179457 -k1,5685:13336317,10703358:179457 -k1,5685:14902515,10703358:179456 -k1,5685:15694734,10703358:179457 -k1,5685:16893276,10703358:179457 -k1,5685:18865143,10703358:179457 -k1,5685:19703892,10703358:179457 -k1,5685:20902434,10703358:179457 -k1,5685:23479853,10703358:179457 -k1,5685:24345471,10703358:179456 -k1,5685:25918879,10703358:179457 -k1,5685:28580184,10703358:179457 -(1,5685:28580184,10703358:0,452978,122846 -r1,5802:31752144,10703358:3171960,575824,122846 -k1,5685:28580184,10703358:-3171960 -) -(1,5685:28580184,10703358:3171960,452978,122846 -k1,5685:28580184,10703358:3277 -h1,5685:31748867,10703358:0,411205,112570 -) -k1,5685:31931601,10703358:179457 -k1,5685:32583029,10703358:0 -) -(1,5686:6630773,11544846:25952256,513147,126483 -g1,5685:8646005,11544846 -g1,5685:9864319,11544846 -g1,5685:12549329,11544846 -g1,5685:13407850,11544846 -g1,5685:15617724,11544846 -k1,5686:32583029,11544846:14753465 -g1,5686:32583029,11544846 -) -v1,5688:6630773,12735312:0,393216,0 -(1,5735:6630773,28282429:25952256,15940333,196608 -g1,5735:6630773,28282429 -g1,5735:6630773,28282429 -g1,5735:6434165,28282429 -(1,5735:6434165,28282429:0,15940333,196608 -r1,5802:32779637,28282429:26345472,16136941,196608 -k1,5735:6434165,28282429:-26345472 -) -(1,5735:6434165,28282429:26345472,15940333,196608 -[1,5735:6630773,28282429:25952256,15743725,0 -(1,5690:6630773,12949222:25952256,410518,6290 -(1,5689:6630773,12949222:0,0,0 -g1,5689:6630773,12949222 -g1,5689:6630773,12949222 -g1,5689:6303093,12949222 -(1,5689:6303093,12949222:0,0,0 -) -g1,5689:6630773,12949222 -) -h1,5690:7895356,12949222:0,0,0 -k1,5690:32583028,12949222:24687672 -g1,5690:32583028,12949222 -) -(1,5695:6630773,13615400:25952256,404226,76021 -(1,5692:6630773,13615400:0,0,0 -g1,5692:6630773,13615400 -g1,5692:6630773,13615400 -g1,5692:6303093,13615400 -(1,5692:6303093,13615400:0,0,0 -) -g1,5692:6630773,13615400 -) -g1,5695:7579210,13615400 -g1,5695:8843793,13615400 -g1,5695:11372959,13615400 -g1,5695:13902125,13615400 -g1,5695:16431291,13615400 -g1,5695:18960457,13615400 -g1,5695:21489623,13615400 -h1,5695:23702643,13615400:0,0,0 -k1,5695:32583029,13615400:8880386 -g1,5695:32583029,13615400 -) -(1,5695:6630773,14281578:25952256,404226,6290 -h1,5695:6630773,14281578:0,0,0 -g1,5695:7579210,14281578 -g1,5695:10108376,14281578 -g1,5695:12637542,14281578 -h1,5695:14850562,14281578:0,0,0 -k1,5695:32583030,14281578:17732468 -g1,5695:32583030,14281578 -) -(1,5697:6630773,15603116:25952256,410518,76021 -(1,5696:6630773,15603116:0,0,0 -g1,5696:6630773,15603116 -g1,5696:6630773,15603116 -g1,5696:6303093,15603116 -(1,5696:6303093,15603116:0,0,0 -) -g1,5696:6630773,15603116 -) -k1,5697:6630773,15603116:0 -h1,5697:10424521,15603116:0,0,0 -k1,5697:32583029,15603116:22158508 -g1,5697:32583029,15603116 -) -(1,5701:6630773,16269294:25952256,404226,76021 -(1,5699:6630773,16269294:0,0,0 -g1,5699:6630773,16269294 -g1,5699:6630773,16269294 -g1,5699:6303093,16269294 -(1,5699:6303093,16269294:0,0,0 -) -g1,5699:6630773,16269294 -) -g1,5701:7579210,16269294 -g1,5701:8843793,16269294 -g1,5701:12005250,16269294 -h1,5701:14850561,16269294:0,0,0 -k1,5701:32583029,16269294:17732468 -g1,5701:32583029,16269294 -) -(1,5703:6630773,17590832:25952256,410518,107478 -(1,5702:6630773,17590832:0,0,0 -g1,5702:6630773,17590832 -g1,5702:6630773,17590832 -g1,5702:6303093,17590832 -(1,5702:6303093,17590832:0,0,0 -) -g1,5702:6630773,17590832 -) -k1,5703:6630773,17590832:0 -h1,5703:10424521,17590832:0,0,0 -k1,5703:32583029,17590832:22158508 -g1,5703:32583029,17590832 -) -(1,5707:6630773,18257010:25952256,404226,76021 -(1,5705:6630773,18257010:0,0,0 -g1,5705:6630773,18257010 -g1,5705:6630773,18257010 -g1,5705:6303093,18257010 -(1,5705:6303093,18257010:0,0,0 -) -g1,5705:6630773,18257010 -) -g1,5707:7579210,18257010 -g1,5707:8843793,18257010 -h1,5707:9159939,18257010:0,0,0 -k1,5707:32583029,18257010:23423090 -g1,5707:32583029,18257010 -) -(1,5709:6630773,19578548:25952256,410518,76021 -(1,5708:6630773,19578548:0,0,0 -g1,5708:6630773,19578548 -g1,5708:6630773,19578548 -g1,5708:6303093,19578548 -(1,5708:6303093,19578548:0,0,0 -) -g1,5708:6630773,19578548 -) -g1,5709:10740667,19578548 -g1,5709:11689105,19578548 -g1,5709:14850562,19578548 -g1,5709:15798999,19578548 -h1,5709:18960456,19578548:0,0,0 -k1,5709:32583029,19578548:13622573 -g1,5709:32583029,19578548 -) -(1,5710:6630773,20244726:25952256,410518,6290 -h1,5710:6630773,20244726:0,0,0 -h1,5710:10424521,20244726:0,0,0 -k1,5710:32583029,20244726:22158508 -g1,5710:32583029,20244726 -) -(1,5715:6630773,20910904:25952256,404226,76021 -(1,5712:6630773,20910904:0,0,0 -g1,5712:6630773,20910904 -g1,5712:6630773,20910904 -g1,5712:6303093,20910904 -(1,5712:6303093,20910904:0,0,0 -) -g1,5712:6630773,20910904 -) -g1,5715:7579210,20910904 -g1,5715:8843793,20910904 -g1,5715:11372959,20910904 -g1,5715:13902125,20910904 -h1,5715:16115145,20910904:0,0,0 -k1,5715:32583029,20910904:16467884 -g1,5715:32583029,20910904 -) -(1,5715:6630773,21577082:25952256,404226,6290 -h1,5715:6630773,21577082:0,0,0 -g1,5715:7579210,21577082 -g1,5715:10108376,21577082 -g1,5715:12637542,21577082 -h1,5715:14850562,21577082:0,0,0 -k1,5715:32583030,21577082:17732468 -g1,5715:32583030,21577082 -) -(1,5717:6630773,22898620:25952256,410518,101187 -(1,5716:6630773,22898620:0,0,0 -g1,5716:6630773,22898620 -g1,5716:6630773,22898620 -g1,5716:6303093,22898620 -(1,5716:6303093,22898620:0,0,0 -) -g1,5716:6630773,22898620 -) -k1,5717:6630773,22898620:0 -g1,5717:13269833,22898620 -g1,5717:13902125,22898620 -g1,5717:15482854,22898620 -g1,5717:16431291,22898620 -g1,5717:17379728,22898620 -k1,5717:17379728,22898620:23593 -h1,5717:20248632,22898620:0,0,0 -k1,5717:32583029,22898620:12334397 -g1,5717:32583029,22898620 -) -(1,5721:6630773,23564798:25952256,404226,76021 -(1,5719:6630773,23564798:0,0,0 -g1,5719:6630773,23564798 -g1,5719:6630773,23564798 -g1,5719:6303093,23564798 -(1,5719:6303093,23564798:0,0,0 -) -g1,5719:6630773,23564798 -) -g1,5721:7579210,23564798 -g1,5721:8843793,23564798 -g1,5721:12005250,23564798 -h1,5721:14850561,23564798:0,0,0 -k1,5721:32583029,23564798:17732468 -g1,5721:32583029,23564798 -) -(1,5723:6630773,24886336:25952256,410518,107478 -(1,5722:6630773,24886336:0,0,0 -g1,5722:6630773,24886336 -g1,5722:6630773,24886336 -g1,5722:6303093,24886336 -(1,5722:6303093,24886336:0,0,0 -) -g1,5722:6630773,24886336 -) -k1,5723:6630773,24886336:0 -g1,5723:13269833,24886336 -g1,5723:13902125,24886336 -g1,5723:16431291,24886336 -g1,5723:18012020,24886336 -k1,5723:18012020,24886336:23593 -h1,5723:20880924,24886336:0,0,0 -k1,5723:32583029,24886336:11702105 -g1,5723:32583029,24886336 -) -(1,5727:6630773,25552514:25952256,404226,76021 -(1,5725:6630773,25552514:0,0,0 -g1,5725:6630773,25552514 -g1,5725:6630773,25552514 -g1,5725:6303093,25552514 -(1,5725:6303093,25552514:0,0,0 -) -g1,5725:6630773,25552514 -) -g1,5727:7579210,25552514 -g1,5727:8843793,25552514 -h1,5727:9159939,25552514:0,0,0 -k1,5727:32583029,25552514:23423090 -g1,5727:32583029,25552514 -) -(1,5729:6630773,26874052:25952256,410518,76021 -(1,5728:6630773,26874052:0,0,0 -g1,5728:6630773,26874052 -g1,5728:6630773,26874052 -g1,5728:6303093,26874052 -(1,5728:6303093,26874052:0,0,0 -) -g1,5728:6630773,26874052 -) -g1,5729:10740667,26874052 -g1,5729:11689105,26874052 -k1,5729:11689105,26874052:0 -h1,5729:18012019,26874052:0,0,0 -k1,5729:32583029,26874052:14571010 -g1,5729:32583029,26874052 -) -(1,5730:6630773,27540230:25952256,410518,101187 -h1,5730:6630773,27540230:0,0,0 -g1,5730:13269833,27540230 -g1,5730:13902125,27540230 -g1,5730:15166708,27540230 -g1,5730:17379728,27540230 -g1,5730:19276602,27540230 -g1,5730:20541185,27540230 -k1,5730:20541185,27540230:39846 -h1,5730:22794051,27540230:0,0,0 -k1,5730:32583029,27540230:9788978 -g1,5730:32583029,27540230 -) -(1,5734:6630773,28206408:25952256,404226,76021 -(1,5732:6630773,28206408:0,0,0 -g1,5732:6630773,28206408 -g1,5732:6630773,28206408 -g1,5732:6303093,28206408 -(1,5732:6303093,28206408:0,0,0 -) -g1,5732:6630773,28206408 -) -g1,5734:7579210,28206408 -g1,5734:8843793,28206408 -h1,5734:11689104,28206408:0,0,0 -k1,5734:32583028,28206408:20893924 -g1,5734:32583028,28206408 -) -] -) -g1,5735:32583029,28282429 -g1,5735:6630773,28282429 -g1,5735:6630773,28282429 -g1,5735:32583029,28282429 -g1,5735:32583029,28282429 -) -h1,5735:6630773,28479037:0,0,0 -(1,5739:6630773,29844813:25952256,513147,134348 -h1,5738:6630773,29844813:983040,0,0 -k1,5738:8334658,29844813:250952 -k1,5738:9689893,29844813:250953 -k1,5738:10688611,29844813:250952 -k1,5738:12379390,29844813:250953 -k1,5738:14485666,29844813:250952 -k1,5738:16021124,29844813:250952 -k1,5738:19599340,29844813:250953 -k1,5738:21343202,29844813:250952 -k1,5738:22660425,29844813:250952 -k1,5738:24435745,29844813:250953 -k1,5738:27029609,29844813:250952 -k1,5738:29174552,29844813:250953 -k1,5738:31391584,29844813:250952 -k1,5738:32583029,29844813:0 -) -(1,5739:6630773,30686301:25952256,513147,126483 -g1,5738:8114508,30686301 -(1,5738:8114508,30686301:0,459977,115847 -r1,5802:10934757,30686301:2820249,575824,115847 -k1,5738:8114508,30686301:-2820249 -) -(1,5738:8114508,30686301:2820249,459977,115847 -k1,5738:8114508,30686301:3277 -h1,5738:10931480,30686301:0,411205,112570 -) -g1,5738:11133986,30686301 -g1,5738:12437497,30686301 -g1,5738:13384492,30686301 -g1,5738:15096947,30686301 -g1,5738:15947604,30686301 -g1,5738:19044180,30686301 -g1,5738:20767776,30686301 -g1,5738:21986090,30686301 -g1,5738:24528231,30686301 -g1,5738:26621450,30686301 -k1,5739:32583029,30686301:3995499 -g1,5739:32583029,30686301 -) -v1,5741:6630773,32052077:0,393216,0 -(1,5774:6630773,44137010:25952256,12478149,0 -g1,5774:6630773,44137010 -g1,5774:6303093,44137010 -r1,5802:6401397,44137010:98304,12478149,0 -g1,5774:6600626,44137010 -g1,5774:6797234,44137010 -[1,5774:6797234,44137010:25785795,12478149,0 -(1,5742:6797234,32472661:25785795,813800,267386 -(1,5741:6797234,32472661:0,813800,267386 -r1,5802:8134168,32472661:1336934,1081186,267386 -k1,5741:6797234,32472661:-1336934 -) -(1,5741:6797234,32472661:1336934,813800,267386 -) -k1,5741:8348622,32472661:214454 -k1,5741:8676302,32472661:327680 -k1,5741:10311577,32472661:214454 -k1,5741:11177459,32472661:214454 -k1,5741:13784632,32472661:214454 -k1,5741:16223378,32472661:214454 -k1,5741:17705298,32472661:214454 -k1,5741:20539880,32472661:214453 -k1,5741:23062512,32472661:214454 -k1,5741:23808463,32472661:214454 -k1,5741:25089188,32472661:214454 -k1,5741:27970302,32472661:214454 -k1,5741:29651452,32472661:214454 -k1,5741:31563944,32472661:214454 -k1,5741:32583029,32472661:0 -) -(1,5742:6797234,33314149:25785795,513147,115847 -g1,5741:8890453,33314149 -g1,5741:10296855,33314149 -g1,5741:12846205,33314149 -g1,5741:14613055,33314149 -g1,5741:15168144,33314149 -(1,5741:15168144,33314149:0,452978,115847 -r1,5802:17636681,33314149:2468537,568825,115847 -k1,5741:15168144,33314149:-2468537 -) -(1,5741:15168144,33314149:2468537,452978,115847 -k1,5741:15168144,33314149:3277 -h1,5741:17633404,33314149:0,411205,112570 -) -g1,5741:17835910,33314149 -k1,5742:32583029,33314149:12595572 -g1,5742:32583029,33314149 -) -v1,5744:6797234,34504615:0,393216,0 -(1,5772:6797234,43416114:25785795,9304715,196608 -g1,5772:6797234,43416114 -g1,5772:6797234,43416114 -g1,5772:6600626,43416114 -(1,5772:6600626,43416114:0,9304715,196608 -r1,5802:32779637,43416114:26179011,9501323,196608 -k1,5772:6600625,43416114:-26179012 -) -(1,5772:6600626,43416114:26179011,9304715,196608 -[1,5772:6797234,43416114:25785795,9108107,0 -(1,5746:6797234,34712233:25785795,404226,101187 -(1,5745:6797234,34712233:0,0,0 -g1,5745:6797234,34712233 -g1,5745:6797234,34712233 -g1,5745:6469554,34712233 -(1,5745:6469554,34712233:0,0,0 -) -g1,5745:6797234,34712233 -) -g1,5746:8377963,34712233 -g1,5746:9326401,34712233 -g1,5746:12171714,34712233 -h1,5746:12804006,34712233:0,0,0 -k1,5746:32583030,34712233:19779024 -g1,5746:32583030,34712233 -) -(1,5747:6797234,35378411:25785795,388497,9436 -h1,5747:6797234,35378411:0,0,0 -h1,5747:8061817,35378411:0,0,0 -k1,5747:32583029,35378411:24521212 -g1,5747:32583029,35378411 -) -(1,5751:6797234,36044589:25785795,404226,76021 -(1,5749:6797234,36044589:0,0,0 -g1,5749:6797234,36044589 -g1,5749:6797234,36044589 -g1,5749:6469554,36044589 -(1,5749:6469554,36044589:0,0,0 -) -g1,5749:6797234,36044589 -) -g1,5751:7745671,36044589 -g1,5751:8061817,36044589 -g1,5751:9326400,36044589 -g1,5751:9958692,36044589 -g1,5751:10590984,36044589 -g1,5751:11223276,36044589 -g1,5751:11855568,36044589 -g1,5751:12487860,36044589 -g1,5751:13120152,36044589 -g1,5751:13752444,36044589 -g1,5751:14384736,36044589 -g1,5751:15017028,36044589 -g1,5751:15649320,36044589 -g1,5751:16281612,36044589 -h1,5751:16597758,36044589:0,0,0 -k1,5751:32583029,36044589:15985271 -g1,5751:32583029,36044589 -) -(1,5753:6797234,37366127:25785795,410518,76021 -(1,5752:6797234,37366127:0,0,0 -g1,5752:6797234,37366127 -g1,5752:6797234,37366127 -g1,5752:6469554,37366127 -(1,5752:6469554,37366127:0,0,0 -) -g1,5752:6797234,37366127 -) -g1,5753:8377963,37366127 -g1,5753:9326401,37366127 -k1,5753:9326401,37366127:0 -h1,5753:13120149,37366127:0,0,0 -k1,5753:32583029,37366127:19462880 -g1,5753:32583029,37366127 -) -(1,5754:6797234,38032305:25785795,410518,9436 -h1,5754:6797234,38032305:0,0,0 -h1,5754:8061817,38032305:0,0,0 -k1,5754:32583029,38032305:24521212 -g1,5754:32583029,38032305 -) -(1,5759:6797234,38698483:25785795,404226,76021 -(1,5756:6797234,38698483:0,0,0 -g1,5756:6797234,38698483 -g1,5756:6797234,38698483 -g1,5756:6469554,38698483 -(1,5756:6469554,38698483:0,0,0 -) -g1,5756:6797234,38698483 -) -g1,5759:7745671,38698483 -g1,5759:8061817,38698483 -g1,5759:9326400,38698483 -g1,5759:9958692,38698483 -g1,5759:10590984,38698483 -g1,5759:11223276,38698483 -g1,5759:11855568,38698483 -g1,5759:12487860,38698483 -g1,5759:13120152,38698483 -g1,5759:13752444,38698483 -g1,5759:14384736,38698483 -g1,5759:15017028,38698483 -g1,5759:15649320,38698483 -g1,5759:16281612,38698483 -h1,5759:16597758,38698483:0,0,0 -k1,5759:32583029,38698483:15985271 -g1,5759:32583029,38698483 -) -(1,5759:6797234,39364661:25785795,404226,9436 -h1,5759:6797234,39364661:0,0,0 -g1,5759:7745671,39364661 -g1,5759:10274837,39364661 -g1,5759:10907129,39364661 -g1,5759:11539421,39364661 -h1,5759:11855567,39364661:0,0,0 -k1,5759:32583029,39364661:20727462 -g1,5759:32583029,39364661 -) -(1,5761:6797234,40686199:25785795,410518,76021 -(1,5760:6797234,40686199:0,0,0 -g1,5760:6797234,40686199 -g1,5760:6797234,40686199 -g1,5760:6469554,40686199 -(1,5760:6469554,40686199:0,0,0 -) -g1,5760:6797234,40686199 -) -k1,5761:6797234,40686199:0 -h1,5761:11855565,40686199:0,0,0 -k1,5761:32583029,40686199:20727464 -g1,5761:32583029,40686199 -) -(1,5765:6797234,41352377:25785795,404226,76021 -(1,5763:6797234,41352377:0,0,0 -g1,5763:6797234,41352377 -g1,5763:6797234,41352377 -g1,5763:6469554,41352377 -(1,5763:6469554,41352377:0,0,0 -) -g1,5763:6797234,41352377 -) -g1,5765:7745671,41352377 -g1,5765:8061817,41352377 -g1,5765:9326400,41352377 -g1,5765:9958692,41352377 -g1,5765:10590984,41352377 -g1,5765:11223276,41352377 -g1,5765:11855568,41352377 -g1,5765:12487860,41352377 -g1,5765:13120152,41352377 -g1,5765:13752444,41352377 -g1,5765:14384736,41352377 -g1,5765:15017028,41352377 -g1,5765:15649320,41352377 -g1,5765:16281612,41352377 -h1,5765:16597758,41352377:0,0,0 -k1,5765:32583029,41352377:15985271 -g1,5765:32583029,41352377 -) -(1,5767:6797234,42673915:25785795,410518,76021 -(1,5766:6797234,42673915:0,0,0 -g1,5766:6797234,42673915 -g1,5766:6797234,42673915 -g1,5766:6469554,42673915 -(1,5766:6469554,42673915:0,0,0 -) -g1,5766:6797234,42673915 -) -k1,5767:6797234,42673915:0 -k1,5767:6797234,42673915:0 -h1,5767:16281605,42673915:0,0,0 -k1,5767:32583029,42673915:16301424 -g1,5767:32583029,42673915 -) -(1,5771:6797234,43340093:25785795,404226,76021 -(1,5769:6797234,43340093:0,0,0 -g1,5769:6797234,43340093 -g1,5769:6797234,43340093 -g1,5769:6469554,43340093 -(1,5769:6469554,43340093:0,0,0 -) -g1,5769:6797234,43340093 -) -g1,5771:7745671,43340093 -g1,5771:8061817,43340093 -g1,5771:9326400,43340093 -g1,5771:9958692,43340093 -g1,5771:10590984,43340093 -g1,5771:11223276,43340093 -g1,5771:11855568,43340093 -g1,5771:12487860,43340093 -g1,5771:13120152,43340093 -g1,5771:13752444,43340093 -g1,5771:14384736,43340093 -g1,5771:15017028,43340093 -g1,5771:15649320,43340093 -g1,5771:16281612,43340093 -h1,5771:16597758,43340093:0,0,0 -k1,5771:32583029,43340093:15985271 -g1,5771:32583029,43340093 -) -] -) -g1,5772:32583029,43416114 -g1,5772:6797234,43416114 -g1,5772:6797234,43416114 -g1,5772:32583029,43416114 -g1,5772:32583029,43416114 -) -h1,5772:6797234,43612722:0,0,0 -] -g1,5774:32583029,44137010 -) -h1,5774:6630773,44137010:0,0,0 -v1,5777:6630773,45502786:0,393216,0 -] -(1,5802:32583029,45706769:0,0,0 -g1,5802:32583029,45706769 -) -) -] -(1,5802:6630773,47279633:25952256,0,0 -h1,5802:6630773,47279633:25952256,0,0 +g1,4980:6630773,4812305 +g1,4980:6630773,4812305 +g1,4980:9472414,4812305 +g1,4980:10882093,4812305 +g1,4980:16529985,4812305 +g1,4980:18796220,4812305 +k1,4980:31786111,4812305:12989891 ) -] -(1,5802:4262630,4025873:0,0,0 -[1,5802:-473656,4025873:0,0,0 -(1,5802:-473656,-710413:0,0,0 -(1,5802:-473656,-710413:0,0,0 -g1,5802:-473656,-710413 -) -g1,5802:-473656,-710413 -) -] ) ] -!23008 -}98 -Input:826:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:827:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:828:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:829:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:830:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:831:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:832:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:833:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:834:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!848 -{99 -[1,5893:4262630,47279633:28320399,43253760,0 -(1,5893:4262630,4025873:0,0,0 -[1,5893:-473656,4025873:0,0,0 -(1,5893:-473656,-710413:0,0,0 -(1,5893:-473656,-644877:0,0,0 -k1,5893:-473656,-644877:-65536 +[1,4980:6630773,45706769:25952256,40108032,0 +(1,4980:6630773,45706769:25952256,40108032,0 +(1,4980:6630773,45706769:0,0,0 +g1,4980:6630773,45706769 ) -(1,5893:-473656,4736287:0,0,0 -k1,5893:-473656,4736287:5209943 +[1,4980:6630773,45706769:25952256,40108032,0 +(1,4897:6630773,6254097:25952256,32768,229376 +(1,4897:6630773,6254097:0,32768,229376 +(1,4897:6630773,6254097:5505024,32768,229376 +r1,4980:12135797,6254097:5505024,262144,229376 ) -g1,5893:-473656,-710413 +k1,4897:6630773,6254097:-5505024 +) +(1,4897:6630773,6254097:25952256,32768,0 +r1,4980:32583029,6254097:25952256,32768,0 +) +) +(1,4897:6630773,7885949:25952256,606339,151780 +(1,4897:6630773,7885949:2464678,582746,14155 +g1,4897:6630773,7885949 +g1,4897:9095451,7885949 +) +g1,4897:12693378,7885949 +g1,4897:14403081,7885949 +g1,4897:21585565,7885949 +k1,4897:32583029,7885949:8469871 +g1,4897:32583029,7885949 +) +(1,4901:6630773,9144245:25952256,505283,102891 +k1,4900:9511681,9144245:203762 +k1,4900:11190658,9144245:203762 +k1,4900:12566860,9144245:203763 +k1,4900:16619551,9144245:203762 +k1,4900:18357511,9144245:203762 +k1,4900:19752718,9144245:203762 +k1,4900:22843341,9144245:203762 +k1,4900:24238548,9144245:203762 +k1,4900:25588536,9144245:203763 +k1,4900:28100476,9144245:203762 +k1,4900:29070354,9144245:203762 +k1,4900:30782755,9144245:203762 +k1,4901:32583029,9144245:0 +) +(1,4901:6630773,10009325:25952256,505283,134348 +k1,4900:8192042,10009325:194843 +k1,4900:10123590,10009325:194844 +k1,4900:11337518,10009325:194843 +k1,4900:13185834,10009325:194843 +k1,4900:15336928,10009325:194844 +k1,4900:16723216,10009325:194843 +k1,4900:17909619,10009325:194843 +k1,4900:20440165,10009325:194843 +k1,4900:21704557,10009325:194844 +k1,4900:23279588,10009325:194843 +k1,4900:24465991,10009325:194843 +k1,4900:29281779,10009325:194844 +k1,4900:31021961,10009325:194843 +k1,4901:32583029,10009325:0 +) +(1,4901:6630773,10874405:25952256,505283,126483 +k1,4900:8978925,10874405:178910 +k1,4900:11891341,10874405:178909 +k1,4900:13061811,10874405:178910 +k1,4900:14753946,10874405:178909 +k1,4900:15584284,10874405:178910 +k1,4900:17380623,10874405:178910 +(1,4900:17380623,10874405:0,452978,115847 +r1,4980:19849160,10874405:2468537,568825,115847 +k1,4900:17380623,10874405:-2468537 +) +(1,4900:17380623,10874405:2468537,452978,115847 +k1,4900:17380623,10874405:3277 +h1,4900:19845883,10874405:0,411205,112570 +) +k1,4900:20201739,10874405:178909 +(1,4900:20201739,10874405:0,452978,122846 +r1,4980:22670276,10874405:2468537,575824,122846 +k1,4900:20201739,10874405:-2468537 +) +(1,4900:20201739,10874405:2468537,452978,122846 +k1,4900:20201739,10874405:3277 +h1,4900:22666999,10874405:0,411205,112570 +) +k1,4900:22849186,10874405:178910 +k1,4900:23710980,10874405:178909 +(1,4900:23710980,10874405:0,452978,122846 +r1,4980:26179517,10874405:2468537,575824,122846 +k1,4900:23710980,10874405:-2468537 +) +(1,4900:23710980,10874405:2468537,452978,122846 +k1,4900:23710980,10874405:3277 +h1,4900:26176240,10874405:0,411205,112570 +) +k1,4900:26358427,10874405:178910 +k1,4900:28721651,10874405:178909 +k1,4900:30097248,10874405:178910 +k1,4900:32583029,10874405:0 +) +(1,4901:6630773,11739485:25952256,513147,134348 +k1,4900:7475157,11739485:185092 +k1,4900:9194447,11739485:185092 +k1,4900:10570985,11739485:185093 +k1,4900:13469268,11739485:185092 +k1,4900:14758642,11739485:185092 +k1,4900:16860662,11739485:185092 +k1,4900:17770582,11739485:185092 +k1,4900:20689182,11739485:185093 +k1,4900:21978556,11739485:185092 +k1,4900:22911414,11739485:185092 +k1,4900:24952486,11739485:185092 +k1,4900:27278640,11739485:185093 +k1,4900:28146617,11739485:185092 +k1,4900:31966991,11739485:185092 +k1,4900:32583029,11739485:0 +) +(1,4901:6630773,12604565:25952256,505283,134348 +g1,4900:8872759,12604565 +g1,4900:10144157,12604565 +g1,4900:12098440,12604565 +k1,4901:32583028,12604565:18150196 +g1,4901:32583028,12604565 +) +(1,4903:6630773,13469645:25952256,513147,126483 +h1,4902:6630773,13469645:983040,0,0 +k1,4902:8446322,13469645:204674 +k1,4902:9239509,13469645:204674 +k1,4902:10463267,13469645:204673 +k1,4902:11974074,13469645:204674 +k1,4902:13927904,13469645:204674 +k1,4902:16261843,13469645:204674 +k1,4902:18978511,13469645:204673 +k1,4902:20717383,13469645:204674 +k1,4902:22113502,13469645:204674 +k1,4902:23337261,13469645:204674 +k1,4902:25783265,13469645:204673 +k1,4902:27737095,13469645:204674 +k1,4902:30071034,13469645:204674 +k1,4902:32583029,13469645:0 +) +(1,4903:6630773,14334725:25952256,505283,134348 +k1,4902:9696594,14334725:178960 +k1,4902:11072241,14334725:178960 +k1,4902:13867398,14334725:178960 +k1,4902:15914789,14334725:178960 +k1,4902:18404548,14334725:178960 +k1,4902:18939368,14334725:178960 +k1,4902:21379320,14334725:178960 +$1,4902:21379320,14334725 +$1,4902:21897054,14334725 +k1,4902:22249685,14334725:178961 +k1,4902:23822596,14334725:178960 +$1,4902:23822596,14334725 +$1,4902:24542837,14334725 +k1,4902:24721797,14334725:178960 +k1,4902:26434955,14334725:178960 +k1,4902:27805360,14334725:178960 +$1,4902:27805360,14334725 +$1,4902:28320473,14334725 +k1,4902:28499433,14334725:178960 +k1,4902:31391584,14334725:178960 +k1,4902:32583029,14334725:0 +) +(1,4903:6630773,15199805:25952256,505283,195111 +k1,4902:8111856,15199805:212306 +k1,4902:10051691,15199805:212306 +k1,4902:10915424,15199805:212305 +$1,4902:10915424,15199805 +k1,4902:11790873,15199805:155208 +k1,4902:12514278,15199805:155208 +$1,4902:13029391,15199805 +k1,4902:13241697,15199805:212306 +k1,4902:15649459,15199805:212306 +k1,4902:17255716,15199805:212306 +k1,4902:20660935,15199805:212305 +k1,4902:22883886,15199805:212306 +k1,4902:25698627,15199805:212306 +k1,4902:26672461,15199805:212306 +$1,4902:26672461,15199805 +(1,4902:27135145,15298119:619971,346358,96797 +) +$1,4902:27755116,15199805 +k1,4902:28141092,15199805:212306 +k1,4902:29841720,15199805:212305 +k1,4902:30922378,15199805:212306 +k1,4902:32227169,15199805:212306 +k1,4902:32583029,15199805:0 +) +(1,4903:6630773,16064885:25952256,513147,134348 +k1,4902:9236132,16064885:192323 +k1,4902:14093308,16064885:192323 +k1,4902:15728077,16064885:192322 +k1,4902:17204906,16064885:192323 +k1,4902:18910455,16064885:192323 +k1,4902:20050429,16064885:192323 +k1,4902:22550929,16064885:192322 +k1,4902:23552622,16064885:192323 +k1,4902:25243098,16064885:192323 +h1,4902:26040016,16064885:0,0,0 +k1,4902:26232339,16064885:192323 +k1,4902:28453656,16064885:192322 +k1,4902:29718148,16064885:192323 +k1,4902:30929556,16064885:192323 +k1,4902:32583029,16064885:0 +) +(1,4903:6630773,16929965:25952256,505283,126483 +g1,4902:9661813,16929965 +k1,4903:32583029,16929965:20983972 +g1,4903:32583029,16929965 +) +(1,4955:6630773,27604598:25952256,9827254,0 +k1,4955:14480545,27604598:7849772 +(1,4904:14480545,27604598:0,0,0 +g1,4904:14480545,27604598 +g1,4904:14480545,27604598 +g1,4904:14152865,27604598 +(1,4904:14152865,27604598:0,0,0 +) +g1,4904:14480545,27604598 +) +(1,4953:14480545,27604598:10252712,9827254,0 +g1,4953:19880232,27604598 +(1,4953:19880232,22193375:0,0,0 +(1,4953:19880232,22193375:0,0,0 +g1,4941:19880232,22193375 +(1,4948:19880232,22193375:0,0,0 +(1,4948:19880232,22193375:0,0,0 +g1,4948:19880232,22193375 +g1,4948:19880232,22193375 +g1,4948:19880232,22193375 +g1,4948:19880232,22193375 +g1,4948:19880232,22193375 +(1,4948:19880232,22193375:0,0,0 +(1,4948:19880232,22193375:7877422,7084437,792985 +[1,4948:19880232,22193375:7877422,7084437,792985 +(1,4944:19880232,15901923:7877422,792985,792985 +g1,4943:19880232,15901923 +(1,4943:19880232,15901923:792985,792985,792985 +g1,4943:19880232,15901923 +g1,4943:20673217,15901923 +(1,4943:20673217,15901923:0,792985,792985 +(1,4943:20673217,15901923:0,0,0 +(1,4943:20673217,15901923:0,0,0 +g1,4943:20673217,15901923 +g1,4943:20673217,15901923 +g1,4943:20673217,15901923 +g1,4943:20673217,15901923 +g1,4943:20673217,15901923 +(1,4943:20673217,15901923:0,0,0 +(1,4943:20673217,15901923:994704,281018,140387 +(1,4943:20673217,15901923:994704,281018,140387 +$1,4943:20673217,15901923 +h1,4943:20673217,15901923:0,281018,137888 +(1,4943:21043364,15980575:624557,286654,61735 +) +$1,4943:21667921,15901923 +) +g1,4943:21667921,15901923 +) +) +g1,4943:20673217,15901923 +g1,4943:20673217,15901923 +) +) +g1,4943:20673217,15901923 +) +) +g1,4943:20673217,15901923 +(1,4943:20673217,15901923:792985,792985,792985 +g1,4943:21466202,15901923 +g1,4943:21466202,15901923 +) +g1,4943:21466202,15901923 +(1,4943:21466202,15901923:779878,792985,792985 +g1,4943:21466202,15901923 +g1,4943:22246080,15901923 +(1,4943:22246080,15901923:0,792985,792985 +(1,4943:22246080,15901923:0,0,0 +(1,4943:22246080,15901923:0,0,0 +g1,4943:22246080,15901923 +g1,4943:22246080,15901923 +g1,4943:22246080,15901923 +g1,4943:22246080,15901923 +g1,4943:22246080,15901923 +(1,4943:22246080,15901923:0,0,0 +(1,4943:22246080,15901923:994704,281018,140387 +(1,4943:22246080,15901923:994704,281018,140387 +$1,4943:22246080,15901923 +h1,4943:22246080,15901923:0,281018,137888 +(1,4943:22616227,15980575:624557,291373,61735 +) +$1,4943:23240784,15901923 +) +g1,4943:23240784,15901923 +) +) +g1,4943:22246080,15901923 +g1,4943:22246080,15901923 +) +) +g1,4943:22246080,15901923 +) +) +g1,4943:22246080,15901923 +(1,4943:22246080,15901923:792985,792985,792985 +g1,4943:23039065,15901923 +g1,4943:23039065,15901923 +) +g1,4943:23039065,15901923 +(1,4943:23039065,15901923:779878,792985,792985 +g1,4943:23039065,15901923 +g1,4943:23818943,15901923 +(1,4943:23818943,15901923:0,792985,792985 +(1,4943:23818943,15901923:0,0,0 +(1,4943:23818943,15901923:0,0,0 +g1,4943:23818943,15901923 +g1,4943:23818943,15901923 +g1,4943:23818943,15901923 +g1,4943:23818943,15901923 +g1,4943:23818943,15901923 +(1,4943:23818943,15901923:0,0,0 +(1,4943:23818943,15901923:994704,281018,140387 +(1,4943:23818943,15901923:994704,281018,140387 +$1,4943:23818943,15901923 +h1,4943:23818943,15901923:0,281018,137888 +(1,4943:24189090,15980575:624557,291373,61735 +) +$1,4943:24813647,15901923 +) +g1,4943:24813647,15901923 +) +) +g1,4943:23818943,15901923 +g1,4943:23818943,15901923 +) +) +g1,4943:23818943,15901923 +) +) +g1,4943:23818943,15901923 +(1,4943:23818943,15901923:792985,792985,792985 +g1,4943:24611928,15901923 +g1,4943:24611928,15901923 +) +g1,4943:24611928,15901923 +(1,4943:24611928,15901923:779878,792985,792985 +g1,4943:24611928,15901923 +g1,4943:25391806,15901923 +(1,4943:25391806,15901923:0,792985,792985 +(1,4943:25391806,15901923:0,0,0 +(1,4943:25391806,15901923:0,0,0 +g1,4943:25391806,15901923 +g1,4943:25391806,15901923 +g1,4943:25391806,15901923 +g1,4943:25391806,15901923 +g1,4943:25391806,15901923 +(1,4943:25391806,15901923:0,0,0 +(1,4943:25391806,15901923:549288,281018,137888 +(1,4943:25391806,15901923:549288,281018,137888 +$1,4943:25391806,15901923 +h1,4943:25391806,15901923:0,281018,137888 +g1,4943:25479196,15901923 +$1,4943:25941094,15901923 +) +g1,4943:25941094,15901923 +) +) +g1,4943:25391806,15901923 +g1,4943:25391806,15901923 +) +) +g1,4943:25391806,15901923 +) +) +g1,4943:25391806,15901923 +(1,4943:25391806,15901923:792985,792985,792985 +g1,4943:26184791,15901923 +g1,4943:26184791,15901923 +) +g1,4943:26184791,15901923 +(1,4943:26184791,15901923:779878,792985,792985 +g1,4943:26184791,15901923 +g1,4943:26964669,15901923 +(1,4943:26964669,15901923:0,792985,792985 +(1,4943:26964669,15901923:0,0,0 +(1,4943:26964669,15901923:0,0,0 +g1,4943:26964669,15901923 +g1,4943:26964669,15901923 +g1,4943:26964669,15901923 +g1,4943:26964669,15901923 +g1,4943:26964669,15901923 +(1,4943:26964669,15901923:0,0,0 +(1,4943:26964669,15901923:1064697,281018,140387 +(1,4943:26964669,15901923:1064697,281018,140387 +$1,4943:26964669,15901923 +h1,4943:26964669,15901923:0,281018,137888 +(1,4943:27334816,15980575:694550,286654,61735 ) -] +$1,4943:28029366,15901923 +) +g1,4943:28029366,15901923 +) +) +g1,4943:26964669,15901923 +g1,4943:26964669,15901923 +) +) +g1,4943:26964669,15901923 +) +) +g1,4943:26964669,15901923 +(1,4944:26964669,15901923:792985,792985,792985 +g1,4944:27757654,15901923 +g1,4944:27757654,15901923 +) +g1,4944:27757654,15901923 ) -[1,5893:6630773,47279633:25952256,43253760,0 -[1,5893:6630773,4812305:25952256,786432,0 -(1,5893:6630773,4812305:25952256,505283,11795 -(1,5893:6630773,4812305:25952256,505283,11795 -g1,5893:3078558,4812305 -[1,5893:3078558,4812305:0,0,0 -(1,5893:3078558,2439708:0,1703936,0 -k1,5893:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,5893:2537886,2439708:1179648,16384,0 +(1,4945:19880232,17474786:7877422,792985,792985 +g1,4944:19880232,17474786 +(1,4944:19880232,17474786:792985,792985,792985 +g1,4944:19880232,17474786 +g1,4944:20673217,17474786 +(1,4944:20673217,17474786:0,792985,792985 +(1,4944:20673217,17474786:0,0,0 +(1,4944:20673217,17474786:0,0,0 +g1,4944:20673217,17474786 +g1,4944:20673217,17474786 +g1,4944:20673217,17474786 +g1,4944:20673217,17474786 +g1,4944:20673217,17474786 +(1,4944:20673217,17474786:0,0,0 +(1,4944:20673217,17474786:994704,281018,140387 +(1,4944:20673217,17474786:994704,281018,140387 +$1,4944:20673217,17474786 +h1,4944:20673217,17474786:0,281018,137888 +(1,4944:21043364,17553438:624557,291373,61735 +) +$1,4944:21667921,17474786 +) +g1,4944:21667921,17474786 +) +) +g1,4944:20673217,17474786 +g1,4944:20673217,17474786 +) +) +g1,4944:20673217,17474786 +) +) +g1,4944:20673217,17474786 +(1,4944:20673217,17474786:792985,792985,792985 +g1,4944:21466202,17474786 +g1,4944:21466202,17474786 ) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,5893:3078558,1915420:16384,1179648,0 +g1,4944:21466202,17474786 +(1,4944:21466202,17474786:779878,792985,792985 +g1,4944:21466202,17474786 +g1,4944:22246080,17474786 +(1,4944:22246080,17474786:0,792985,792985 +(1,4944:22246080,17474786:0,0,0 +(1,4944:22246080,17474786:0,0,0 +g1,4944:22246080,17474786 +g1,4944:22246080,17474786 +g1,4944:22246080,17474786 +g1,4944:22246080,17474786 +g1,4944:22246080,17474786 +(1,4944:22246080,17474786:0,0,0 +(1,4944:22246080,17474786:994704,281018,140387 +(1,4944:22246080,17474786:994704,281018,140387 +$1,4944:22246080,17474786 +h1,4944:22246080,17474786:0,281018,137888 +(1,4944:22616227,17553438:624557,291373,61735 +) +$1,4944:23240784,17474786 +) +g1,4944:23240784,17474786 +) +) +g1,4944:22246080,17474786 +g1,4944:22246080,17474786 +) +) +g1,4944:22246080,17474786 +) +) +g1,4944:22246080,17474786 +(1,4944:22246080,17474786:792985,792985,792985 +g1,4944:23039065,17474786 +g1,4944:23039065,17474786 ) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 +g1,4944:23039065,17474786 +(1,4944:23039065,17474786:779878,792985,792985 +g1,4944:23039065,17474786 +g1,4944:23818943,17474786 +(1,4944:23818943,17474786:0,792985,792985 +(1,4944:23818943,17474786:0,0,0 +(1,4944:23818943,17474786:0,0,0 +g1,4944:23818943,17474786 +g1,4944:23818943,17474786 +g1,4944:23818943,17474786 +g1,4944:23818943,17474786 +g1,4944:23818943,17474786 +(1,4944:23818943,17474786:0,0,0 +(1,4944:23818943,17474786:994704,281018,140387 +(1,4944:23818943,17474786:994704,281018,140387 +$1,4944:23818943,17474786 +h1,4944:23818943,17474786:0,281018,137888 +(1,4944:24189090,17553438:624557,291373,61735 +) +$1,4944:24813647,17474786 +) +g1,4944:24813647,17474786 +) +) +g1,4944:23818943,17474786 +g1,4944:23818943,17474786 +) +) +g1,4944:23818943,17474786 +) +) +g1,4944:23818943,17474786 +(1,4944:23818943,17474786:792985,792985,792985 +g1,4944:24611928,17474786 +g1,4944:24611928,17474786 ) -] +g1,4944:24611928,17474786 +(1,4944:24611928,17474786:779878,792985,792985 +g1,4944:24611928,17474786 +g1,4944:25391806,17474786 +(1,4944:25391806,17474786:0,792985,792985 +(1,4944:25391806,17474786:0,0,0 +(1,4944:25391806,17474786:0,0,0 +g1,4944:25391806,17474786 +g1,4944:25391806,17474786 +g1,4944:25391806,17474786 +g1,4944:25391806,17474786 +g1,4944:25391806,17474786 +(1,4944:25391806,17474786:0,0,0 +(1,4944:25391806,17474786:0,281018,137888 +(1,4944:25391806,17474786:0,281018,137888 +$1,4944:25391806,17474786 +h1,4944:25391806,17474786:0,281018,137888 +$1,4944:25391806,17474786 ) +g1,4944:25391806,17474786 +) +) +g1,4944:25391806,17474786 +g1,4944:25391806,17474786 +) +) +g1,4944:25391806,17474786 +) +) +g1,4944:25391806,17474786 +(1,4944:25391806,17474786:792985,792985,792985 +g1,4944:26184791,17474786 +g1,4944:26184791,17474786 +) +g1,4944:26184791,17474786 +(1,4944:26184791,17474786:779878,792985,792985 +g1,4944:26184791,17474786 +g1,4944:26964669,17474786 +(1,4944:26964669,17474786:0,792985,792985 +(1,4944:26964669,17474786:0,0,0 +(1,4944:26964669,17474786:0,0,0 +g1,4944:26964669,17474786 +g1,4944:26964669,17474786 +g1,4944:26964669,17474786 +g1,4944:26964669,17474786 +g1,4944:26964669,17474786 +(1,4944:26964669,17474786:0,0,0 +(1,4944:26964669,17474786:1064697,281018,140387 +(1,4944:26964669,17474786:1064697,281018,140387 +$1,4944:26964669,17474786 +h1,4944:26964669,17474786:0,281018,137888 +(1,4944:27334816,17553438:694550,291373,61735 ) +$1,4944:28029366,17474786 ) -] -[1,5893:3078558,4812305:0,0,0 -(1,5893:3078558,2439708:0,1703936,0 -g1,5893:29030814,2439708 -g1,5893:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,5893:36151628,1915420:16384,1179648,0 +g1,4944:28029366,17474786 +) +) +g1,4944:26964669,17474786 +g1,4944:26964669,17474786 +) +) +g1,4944:26964669,17474786 +) +) +g1,4944:26964669,17474786 +(1,4945:26964669,17474786:792985,792985,792985 +g1,4945:27757654,17474786 +g1,4945:27757654,17474786 +) +g1,4945:27757654,17474786 ) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 +(1,4946:19880232,19047649:7877422,792985,792985 +g1,4945:19880232,19047649 +(1,4945:19880232,19047649:792985,792985,792985 +g1,4945:19880232,19047649 +g1,4945:20673217,19047649 +(1,4945:20673217,19047649:0,792985,792985 +(1,4945:20673217,19047649:0,0,0 +(1,4945:20673217,19047649:0,0,0 +g1,4945:20673217,19047649 +g1,4945:20673217,19047649 +g1,4945:20673217,19047649 +g1,4945:20673217,19047649 +g1,4945:20673217,19047649 +(1,4945:20673217,19047649:0,0,0 +(1,4945:20673217,19047649:994704,281018,140387 +(1,4945:20673217,19047649:994704,281018,140387 +$1,4945:20673217,19047649 +h1,4945:20673217,19047649:0,281018,137888 +(1,4945:21043364,19126301:624557,291373,61735 +) +$1,4945:21667921,19047649 +) +g1,4945:21667921,19047649 +) +) +g1,4945:20673217,19047649 +g1,4945:20673217,19047649 +) +) +g1,4945:20673217,19047649 +) +) +g1,4945:20673217,19047649 +(1,4945:20673217,19047649:792985,792985,792985 +g1,4945:21466202,19047649 +g1,4945:21466202,19047649 ) -] +g1,4945:21466202,19047649 +(1,4945:21466202,19047649:779878,792985,792985 +g1,4945:21466202,19047649 +g1,4945:22246080,19047649 +(1,4945:22246080,19047649:0,792985,792985 +(1,4945:22246080,19047649:0,0,0 +(1,4945:22246080,19047649:0,0,0 +g1,4945:22246080,19047649 +g1,4945:22246080,19047649 +g1,4945:22246080,19047649 +g1,4945:22246080,19047649 +g1,4945:22246080,19047649 +(1,4945:22246080,19047649:0,0,0 +(1,4945:22246080,19047649:994704,281018,140387 +(1,4945:22246080,19047649:994704,281018,140387 +$1,4945:22246080,19047649 +h1,4945:22246080,19047649:0,281018,137888 +(1,4945:22616227,19126301:624557,291373,61735 +) +$1,4945:23240784,19047649 +) +g1,4945:23240784,19047649 +) +) +g1,4945:22246080,19047649 +g1,4945:22246080,19047649 +) +) +g1,4945:22246080,19047649 +) +) +g1,4945:22246080,19047649 +(1,4945:22246080,19047649:792985,792985,792985 +g1,4945:23039065,19047649 +g1,4945:23039065,19047649 ) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,5893:37855564,2439708:1179648,16384,0 +g1,4945:23039065,19047649 +(1,4945:23039065,19047649:779878,792985,792985 +g1,4945:23039065,19047649 +g1,4945:23818943,19047649 +(1,4945:23818943,19047649:0,792985,792985 +(1,4945:23818943,19047649:0,0,0 +(1,4945:23818943,19047649:0,0,0 +g1,4945:23818943,19047649 +g1,4945:23818943,19047649 +g1,4945:23818943,19047649 +g1,4945:23818943,19047649 +g1,4945:23818943,19047649 +(1,4945:23818943,19047649:0,0,0 +(1,4945:23818943,19047649:994704,281018,140387 +(1,4945:23818943,19047649:994704,281018,140387 +$1,4945:23818943,19047649 +h1,4945:23818943,19047649:0,281018,137888 +(1,4945:24189090,19126301:624557,291373,61735 +) +$1,4945:24813647,19047649 +) +g1,4945:24813647,19047649 +) +) +g1,4945:23818943,19047649 +g1,4945:23818943,19047649 +) +) +g1,4945:23818943,19047649 +) +) +g1,4945:23818943,19047649 +(1,4945:23818943,19047649:792985,792985,792985 +g1,4945:24611928,19047649 +g1,4945:24611928,19047649 ) +g1,4945:24611928,19047649 +(1,4945:24611928,19047649:779878,792985,792985 +g1,4945:24611928,19047649 +g1,4945:25391806,19047649 +(1,4945:25391806,19047649:0,792985,792985 +(1,4945:25391806,19047649:0,0,0 +(1,4945:25391806,19047649:0,0,0 +g1,4945:25391806,19047649 +g1,4945:25391806,19047649 +g1,4945:25391806,19047649 +g1,4945:25391806,19047649 +g1,4945:25391806,19047649 +(1,4945:25391806,19047649:0,0,0 +(1,4945:25391806,19047649:0,281018,137888 +(1,4945:25391806,19047649:0,281018,137888 +$1,4945:25391806,19047649 +h1,4945:25391806,19047649:0,281018,137888 +$1,4945:25391806,19047649 +) +g1,4945:25391806,19047649 +) +) +g1,4945:25391806,19047649 +g1,4945:25391806,19047649 +) +) +g1,4945:25391806,19047649 +) +) +g1,4945:25391806,19047649 +(1,4945:25391806,19047649:792985,792985,792985 +g1,4945:26184791,19047649 +g1,4945:26184791,19047649 +) +g1,4945:26184791,19047649 +(1,4945:26184791,19047649:779878,792985,792985 +g1,4945:26184791,19047649 +g1,4945:26964669,19047649 +(1,4945:26964669,19047649:0,792985,792985 +(1,4945:26964669,19047649:0,0,0 +(1,4945:26964669,19047649:0,0,0 +g1,4945:26964669,19047649 +g1,4945:26964669,19047649 +g1,4945:26964669,19047649 +g1,4945:26964669,19047649 +g1,4945:26964669,19047649 +(1,4945:26964669,19047649:0,0,0 +(1,4945:26964669,19047649:1064697,281018,140387 +(1,4945:26964669,19047649:1064697,281018,140387 +$1,4945:26964669,19047649 +h1,4945:26964669,19047649:0,281018,137888 +(1,4945:27334816,19126301:694550,291373,61735 +) +$1,4945:28029366,19047649 +) +g1,4945:28029366,19047649 +) +) +g1,4945:26964669,19047649 +g1,4945:26964669,19047649 +) +) +g1,4945:26964669,19047649 +) +) +g1,4945:26964669,19047649 +(1,4946:26964669,19047649:792985,792985,792985 +g1,4946:27757654,19047649 +g1,4946:27757654,19047649 +) +g1,4946:27757654,19047649 ) -k1,5893:3078556,2439708:-34777008 +(1,4947:19880232,20620512:7877422,792985,792985 +g1,4946:19880232,20620512 +(1,4946:19880232,20620512:792985,792985,792985 +g1,4946:19880232,20620512 +g1,4946:20673217,20620512 +(1,4946:20673217,20620512:0,792985,792985 +(1,4946:20673217,20620512:0,0,0 +(1,4946:20673217,20620512:0,0,0 +g1,4946:20673217,20620512 +g1,4946:20673217,20620512 +g1,4946:20673217,20620512 +g1,4946:20673217,20620512 +g1,4946:20673217,20620512 +(1,4946:20673217,20620512:0,0,0 +(1,4946:20673217,20620512:607548,341312,137888 +(1,4946:20673217,20620512:607548,341312,137888 +$1,4946:20673217,20620512 +h1,4946:20673217,20620512:0,281018,137888 +g1,4946:20818867,20620512 +$1,4946:21280765,20620512 +) +g1,4946:21280765,20620512 +) +) +g1,4946:20673217,20620512 +g1,4946:20673217,20620512 +) +) +g1,4946:20673217,20620512 +) +) +g1,4946:20673217,20620512 +(1,4946:20673217,20620512:792985,792985,792985 +g1,4946:21466202,20620512 +g1,4946:21466202,20620512 +) +g1,4946:21466202,20620512 +(1,4946:21466202,20620512:779878,792985,792985 +g1,4946:21466202,20620512 +g1,4946:22246080,20620512 +(1,4946:22246080,20620512:0,792985,792985 +(1,4946:22246080,20620512:0,0,0 +(1,4946:22246080,20620512:0,0,0 +g1,4946:22246080,20620512 +g1,4946:22246080,20620512 +g1,4946:22246080,20620512 +g1,4946:22246080,20620512 +g1,4946:22246080,20620512 +(1,4946:22246080,20620512:0,0,0 +(1,4946:22246080,20620512:0,281018,137888 +(1,4946:22246080,20620512:0,281018,137888 +$1,4946:22246080,20620512 +h1,4946:22246080,20620512:0,281018,137888 +$1,4946:22246080,20620512 +) +g1,4946:22246080,20620512 +) +) +g1,4946:22246080,20620512 +g1,4946:22246080,20620512 +) +) +g1,4946:22246080,20620512 +) +) +g1,4946:22246080,20620512 +(1,4946:22246080,20620512:792985,792985,792985 +g1,4946:23039065,20620512 +g1,4946:23039065,20620512 +) +g1,4946:23039065,20620512 +(1,4946:23039065,20620512:779878,792985,792985 +g1,4946:23039065,20620512 +g1,4946:23818943,20620512 +(1,4946:23818943,20620512:0,792985,792985 +(1,4946:23818943,20620512:0,0,0 +(1,4946:23818943,20620512:0,0,0 +g1,4946:23818943,20620512 +g1,4946:23818943,20620512 +g1,4946:23818943,20620512 +g1,4946:23818943,20620512 +g1,4946:23818943,20620512 +(1,4946:23818943,20620512:0,0,0 +(1,4946:23818943,20620512:0,281018,137888 +(1,4946:23818943,20620512:0,281018,137888 +$1,4946:23818943,20620512 +h1,4946:23818943,20620512:0,281018,137888 +$1,4946:23818943,20620512 +) +g1,4946:23818943,20620512 +) +) +g1,4946:23818943,20620512 +g1,4946:23818943,20620512 +) +) +g1,4946:23818943,20620512 +) +) +g1,4946:23818943,20620512 +(1,4946:23818943,20620512:792985,792985,792985 +g1,4946:24611928,20620512 +g1,4946:24611928,20620512 +) +g1,4946:24611928,20620512 +(1,4946:24611928,20620512:779878,792985,792985 +g1,4946:24611928,20620512 +g1,4946:25391806,20620512 +(1,4946:25391806,20620512:0,792985,792985 +(1,4946:25391806,20620512:0,0,0 +(1,4946:25391806,20620512:0,0,0 +g1,4946:25391806,20620512 +g1,4946:25391806,20620512 +g1,4946:25391806,20620512 +g1,4946:25391806,20620512 +g1,4946:25391806,20620512 +(1,4946:25391806,20620512:0,0,0 +(1,4946:25391806,20620512:600208,341312,137888 +(1,4946:25391806,20620512:600208,341312,137888 +$1,4946:25391806,20620512 +h1,4946:25391806,20620512:0,281018,137888 +g1,4946:25537456,20620512 +$1,4946:25992014,20620512 +) +g1,4946:25992014,20620512 +) +) +g1,4946:25391806,20620512 +g1,4946:25391806,20620512 +) +) +g1,4946:25391806,20620512 +) +) +g1,4946:25391806,20620512 +(1,4946:25391806,20620512:792985,792985,792985 +g1,4946:26184791,20620512 +g1,4946:26184791,20620512 +) +g1,4946:26184791,20620512 +(1,4946:26184791,20620512:779878,792985,792985 +g1,4946:26184791,20620512 +g1,4946:26964669,20620512 +(1,4946:26964669,20620512:0,792985,792985 +(1,4946:26964669,20620512:0,0,0 +(1,4946:26964669,20620512:0,0,0 +g1,4946:26964669,20620512 +g1,4946:26964669,20620512 +g1,4946:26964669,20620512 +g1,4946:26964669,20620512 +g1,4946:26964669,20620512 +(1,4946:26964669,20620512:0,0,0 +(1,4946:26964669,20620512:0,281018,137888 +(1,4946:26964669,20620512:0,281018,137888 +$1,4946:26964669,20620512 +h1,4946:26964669,20620512:0,281018,137888 +$1,4946:26964669,20620512 +) +g1,4946:26964669,20620512 +) +) +g1,4946:26964669,20620512 +g1,4946:26964669,20620512 +) +) +g1,4946:26964669,20620512 +) +) +g1,4946:26964669,20620512 +(1,4947:26964669,20620512:792985,792985,792985 +g1,4947:27757654,20620512 +g1,4947:27757654,20620512 +) +g1,4947:27757654,20620512 +) +(1,4948:19880232,22193375:7877422,792985,792985 +g1,4947:19880232,22193375 +(1,4947:19880232,22193375:792985,792985,792985 +g1,4947:19880232,22193375 +g1,4947:20673217,22193375 +(1,4947:20673217,22193375:0,792985,792985 +(1,4947:20673217,22193375:0,0,0 +(1,4947:20673217,22193375:0,0,0 +g1,4947:20673217,22193375 +g1,4947:20673217,22193375 +g1,4947:20673217,22193375 +g1,4947:20673217,22193375 +g1,4947:20673217,22193375 +(1,4947:20673217,22193375:0,0,0 +(1,4947:20673217,22193375:1187773,281018,140387 +(1,4947:20673217,22193375:1187773,281018,140387 +$1,4947:20673217,22193375 +h1,4947:20673217,22193375:0,281018,137888 +(1,4947:21043364,22272027:817626,286654,61735 +) +$1,4947:21860990,22193375 +) +g1,4947:21860990,22193375 +) +) +g1,4947:20673217,22193375 +g1,4947:20673217,22193375 +) +) +g1,4947:20673217,22193375 +) +) +g1,4947:20673217,22193375 +(1,4947:20673217,22193375:792985,792985,792985 +g1,4947:21466202,22193375 +g1,4947:21466202,22193375 ) -] -[1,5893:3078558,4812305:0,0,0 -(1,5893:3078558,49800853:0,16384,2228224 -k1,5893:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,5893:2537886,49800853:1179648,16384,0 +g1,4947:21466202,22193375 +(1,4947:21466202,22193375:779878,792985,792985 +g1,4947:21466202,22193375 +g1,4947:22246080,22193375 +(1,4947:22246080,22193375:0,792985,792985 +(1,4947:22246080,22193375:0,0,0 +(1,4947:22246080,22193375:0,0,0 +g1,4947:22246080,22193375 +g1,4947:22246080,22193375 +g1,4947:22246080,22193375 +g1,4947:22246080,22193375 +g1,4947:22246080,22193375 +(1,4947:22246080,22193375:0,0,0 +(1,4947:22246080,22193375:1187773,281018,140387 +(1,4947:22246080,22193375:1187773,281018,140387 +$1,4947:22246080,22193375 +h1,4947:22246080,22193375:0,281018,137888 +(1,4947:22616227,22272027:817626,291373,61735 +) +$1,4947:23433853,22193375 +) +g1,4947:23433853,22193375 +) +) +g1,4947:22246080,22193375 +g1,4947:22246080,22193375 +) +) +g1,4947:22246080,22193375 +) +) +g1,4947:22246080,22193375 +(1,4947:22246080,22193375:792985,792985,792985 +g1,4947:23039065,22193375 +g1,4947:23039065,22193375 ) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,5893:3078558,51504789:16384,1179648,0 +g1,4947:23039065,22193375 +(1,4947:23039065,22193375:779878,792985,792985 +g1,4947:23039065,22193375 +g1,4947:23818943,22193375 +(1,4947:23818943,22193375:0,792985,792985 +(1,4947:23818943,22193375:0,0,0 +(1,4947:23818943,22193375:0,0,0 +g1,4947:23818943,22193375 +g1,4947:23818943,22193375 +g1,4947:23818943,22193375 +g1,4947:23818943,22193375 +g1,4947:23818943,22193375 +(1,4947:23818943,22193375:0,0,0 +(1,4947:23818943,22193375:1187773,281018,140387 +(1,4947:23818943,22193375:1187773,281018,140387 +$1,4947:23818943,22193375 +h1,4947:23818943,22193375:0,281018,137888 +(1,4947:24189090,22272027:817626,291373,61735 ) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 +$1,4947:25006716,22193375 ) -] +g1,4947:25006716,22193375 ) ) +g1,4947:23818943,22193375 +g1,4947:23818943,22193375 ) -] -[1,5893:3078558,4812305:0,0,0 -(1,5893:3078558,49800853:0,16384,2228224 -g1,5893:29030814,49800853 -g1,5893:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,5893:36151628,51504789:16384,1179648,0 -) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 -) -] -) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,5893:37855564,49800853:1179648,16384,0 -) -) -k1,5893:3078556,49800853:-34777008 -) -] -g1,5893:6630773,4812305 -k1,5893:22348274,4812305:14920583 -g1,5893:23970945,4812305 -g1,5893:24793421,4812305 -g1,5893:27528893,4812305 -g1,5893:28938572,4812305 -) -) -] -[1,5893:6630773,45706769:25952256,40108032,0 -(1,5893:6630773,45706769:25952256,40108032,0 -(1,5893:6630773,45706769:0,0,0 -g1,5893:6630773,45706769 -) -[1,5893:6630773,45706769:25952256,40108032,0 -v1,5802:6630773,6254097:0,393216,0 -(1,5802:6630773,21038756:25952256,15177875,0 -g1,5802:6630773,21038756 -g1,5802:6303093,21038756 -r1,5893:6401397,21038756:98304,15177875,0 -g1,5802:6600626,21038756 -g1,5802:6797234,21038756 -[1,5802:6797234,21038756:25785795,15177875,0 -(1,5778:6797234,6616170:25785795,755289,196608 -(1,5777:6797234,6616170:0,755289,196608 -r1,5893:8134168,6616170:1336934,951897,196608 -k1,5777:6797234,6616170:-1336934 -) -(1,5777:6797234,6616170:1336934,755289,196608 -) -k1,5777:8290505,6616170:156337 -k1,5777:8618185,6616170:327680 -k1,5777:10261715,6616170:160450 -k1,5777:10978567,6616170:160451 -k1,5777:11503398,6616170:160451 -k1,5777:13924840,6616170:160450 -k1,5777:17763827,6616170:160451 -k1,5777:20639253,6616170:156337 -k1,5777:24031757,6616170:156336 -k1,5777:26082084,6616170:156337 -k1,5777:28249066,6616170:156337 -k1,5777:29396962,6616170:156336 -k1,5777:30544859,6616170:156337 -k1,5777:32583029,6616170:0 -) -(1,5778:6797234,7457658:25785795,513147,134348 -k1,5777:7707201,7457658:223805 -k1,5777:10454143,7457658:223806 -k1,5777:13238440,7457658:223805 -k1,5777:15940818,7457658:223806 -k1,5777:17732244,7457658:223805 -k1,5777:19286430,7457658:223805 -k1,5777:20961858,7457658:223806 -k1,5777:23601320,7457658:223805 -k1,5777:26055316,7457658:223806 -k1,5777:27959464,7457658:223805 -k1,5777:32583029,7457658:0 -) -(1,5778:6797234,8299146:25785795,505283,134348 -k1,5777:7733026,8299146:284364 -k1,5777:8373251,8299146:284365 -k1,5777:10293394,8299146:284364 -k1,5777:12452088,8299146:284364 -k1,5777:16179059,8299146:284365 -k1,5777:18693613,8299146:284364 -k1,5777:20988623,8299146:284365 -k1,5777:22264547,8299146:284364 -k1,5777:25327638,8299146:284364 -k1,5777:26373531,8299146:284365 -(1,5777:26373531,8299146:0,452978,115847 -r1,5893:30600627,8299146:4227096,568825,115847 -k1,5777:26373531,8299146:-4227096 -) -(1,5777:26373531,8299146:4227096,452978,115847 -k1,5777:26373531,8299146:3277 -h1,5777:30597350,8299146:0,411205,112570 -) -k1,5777:30884991,8299146:284364 -k1,5777:32583029,8299146:0 -) -(1,5778:6797234,9140634:25785795,513147,126483 -k1,5777:9439927,9140634:270945 -k1,5777:10362299,9140634:270944 -k1,5777:10989104,9140634:270945 -k1,5777:13327709,9140634:270944 -k1,5777:14795341,9140634:270945 -k1,5777:16910468,9140634:270944 -k1,5777:17840705,9140634:270945 -k1,5777:19130734,9140634:270944 -k1,5777:21295669,9140634:270945 -k1,5777:23359023,9140634:270944 -k1,5777:24621528,9140634:270945 -k1,5777:27021737,9140634:270944 -k1,5777:29330852,9140634:270945 -k1,5777:30287958,9140634:270944 -k1,5778:32583029,9140634:0 -) -(1,5778:6797234,9982122:25785795,505283,134348 -k1,5777:7971279,9982122:281445 -k1,5777:10622506,9982122:281445 -k1,5777:12370647,9982122:281445 -k1,5777:14350130,9982122:281445 -k1,5777:16328302,9982122:281445 -k1,5777:19914728,9982122:281445 -k1,5777:21187733,9982122:281445 -k1,5777:23427394,9982122:281445 -k1,5777:24336674,9982122:281445 -k1,5777:27249390,9982122:281445 -k1,5777:28182263,9982122:281445 -(1,5777:28182263,9982122:0,452978,115847 -r1,5893:32409359,9982122:4227096,568825,115847 -k1,5777:28182263,9982122:-4227096 -) -(1,5777:28182263,9982122:4227096,452978,115847 -k1,5777:28182263,9982122:3277 -h1,5777:32406082,9982122:0,411205,112570 -) -k1,5778:32583029,9982122:0 -) -(1,5778:6797234,10823610:25785795,513147,115847 -(1,5777:6797234,10823610:0,452978,115847 -r1,5893:11727754,10823610:4930520,568825,115847 -k1,5777:6797234,10823610:-4930520 -) -(1,5777:6797234,10823610:4930520,452978,115847 -k1,5777:6797234,10823610:3277 -h1,5777:11724477,10823610:0,411205,112570 -) -k1,5777:11987529,10823610:259775 -k1,5777:14588250,10823610:259775 -k1,5777:15867110,10823610:259775 -k1,5777:19101564,10823610:259775 -k1,5777:21205522,10823610:259775 -k1,5777:22124589,10823610:259775 -k1,5777:23403449,10823610:259775 -k1,5777:25455634,10823610:259775 -k1,5777:26663060,10823610:259775 -k1,5777:28374457,10823610:259775 -k1,5777:29293524,10823610:259775 -k1,5777:30572384,10823610:259775 -k1,5777:32583029,10823610:0 -) -(1,5778:6797234,11665098:25785795,513147,134348 -k1,5777:9121742,11665098:286338 -k1,5777:10024118,11665098:286338 -k1,5777:11329540,11665098:286337 -k1,5777:13683539,11665098:286338 -k1,5777:14447634,11665098:286338 -k1,5777:16430699,11665098:286338 -k1,5777:19691715,11665098:286337 -k1,5777:22174164,11665098:286338 -k1,5777:25502028,11665098:286338 -k1,5777:28778118,11665098:286338 -k1,5777:30444643,11665098:286337 -k1,5777:31835263,11665098:286338 -k1,5777:32583029,11665098:0 -) -(1,5778:6797234,12506586:25785795,505283,134348 -k1,5777:10333555,12506586:201849 -k1,5777:11151442,12506586:201849 -k1,5777:11709150,12506586:201848 -k1,5777:14152330,12506586:201849 -k1,5777:15883134,12506586:201849 -k1,5777:17820376,12506586:201849 -(1,5777:17820376,12506586:0,452978,115847 -r1,5893:22047472,12506586:4227096,568825,115847 -k1,5777:17820376,12506586:-4227096 -) -(1,5777:17820376,12506586:4227096,452978,115847 -k1,5777:17820376,12506586:3277 -h1,5777:22044195,12506586:0,411205,112570 -) -k1,5777:22249321,12506586:201849 -k1,5777:23718636,12506586:201849 -k1,5777:24939569,12506586:201848 -k1,5777:27576736,12506586:201849 -k1,5777:30398714,12506586:201849 -k1,5777:32583029,12506586:0 -) -(1,5778:6797234,13348074:25785795,513147,134348 -k1,5777:8157172,13348074:211092 -k1,5777:9035421,13348074:211093 -(1,5777:9035421,13348074:0,452978,115847 -r1,5893:10800534,13348074:1765113,568825,115847 -k1,5777:9035421,13348074:-1765113 -) -(1,5777:9035421,13348074:1765113,452978,115847 -k1,5777:9035421,13348074:3277 -h1,5777:10797257,13348074:0,411205,112570 -) -k1,5777:11011626,13348074:211092 -k1,5777:12414163,13348074:211092 -(1,5777:12414163,13348074:0,452978,115847 -r1,5893:13827564,13348074:1413401,568825,115847 -k1,5777:12414163,13348074:-1413401 -) -(1,5777:12414163,13348074:1413401,452978,115847 -k1,5777:12414163,13348074:3277 -h1,5777:13824287,13348074:0,411205,112570 -) -k1,5777:14038657,13348074:211093 -k1,5777:14781246,13348074:211092 -k1,5777:18082361,13348074:211092 -k1,5777:19102824,13348074:211093 -k1,5777:21592603,13348074:211092 -h1,5777:22563191,13348074:0,0,0 -k1,5777:22774283,13348074:211092 -k1,5777:23794745,13348074:211092 -k1,5777:25503991,13348074:211093 -h1,5777:26300909,13348074:0,0,0 -k1,5777:26685671,13348074:211092 -k1,5777:28088208,13348074:211092 -(1,5777:28088208,13348074:0,452978,115847 -r1,5893:29853321,13348074:1765113,568825,115847 -k1,5777:28088208,13348074:-1765113 -) -(1,5777:28088208,13348074:1765113,452978,115847 -k1,5777:28088208,13348074:3277 -h1,5777:29850044,13348074:0,411205,112570 -) -k1,5777:30064414,13348074:211093 -k1,5777:31084876,13348074:211092 -k1,5777:32583029,13348074:0 -) -(1,5778:6797234,14189562:25785795,485622,11795 -h1,5777:7594152,14189562:0,0,0 -k1,5778:32583030,14189562:24815208 -g1,5778:32583030,14189562 -) -v1,5780:6797234,15380028:0,393216,0 -(1,5799:6797234,20317860:25785795,5331048,196608 -g1,5799:6797234,20317860 -g1,5799:6797234,20317860 -g1,5799:6600626,20317860 -(1,5799:6600626,20317860:0,5331048,196608 -r1,5893:32779637,20317860:26179011,5527656,196608 -k1,5799:6600625,20317860:-26179012 -) -(1,5799:6600626,20317860:26179011,5331048,196608 -[1,5799:6797234,20317860:25785795,5134440,0 -(1,5782:6797234,15593938:25785795,410518,76021 -(1,5781:6797234,15593938:0,0,0 -g1,5781:6797234,15593938 -g1,5781:6797234,15593938 -g1,5781:6469554,15593938 -(1,5781:6469554,15593938:0,0,0 -) -g1,5781:6797234,15593938 -) -k1,5782:6797234,15593938:0 -h1,5782:10274836,15593938:0,0,0 -k1,5782:32583028,15593938:22308192 -g1,5782:32583028,15593938 -) -(1,5786:6797234,16260116:25785795,410518,76021 -(1,5784:6797234,16260116:0,0,0 -g1,5784:6797234,16260116 -g1,5784:6797234,16260116 -g1,5784:6469554,16260116 -(1,5784:6469554,16260116:0,0,0 -) -g1,5784:6797234,16260116 -) -g1,5786:7745671,16260116 -g1,5786:9010254,16260116 -h1,5786:11539419,16260116:0,0,0 -k1,5786:32583029,16260116:21043610 -g1,5786:32583029,16260116 -) -(1,5788:6797234,17581654:25785795,410518,76021 -(1,5787:6797234,17581654:0,0,0 -g1,5787:6797234,17581654 -g1,5787:6797234,17581654 -g1,5787:6469554,17581654 -(1,5787:6469554,17581654:0,0,0 -) -g1,5787:6797234,17581654 -) -k1,5788:6797234,17581654:0 -h1,5788:9958691,17581654:0,0,0 -k1,5788:32583029,17581654:22624338 -g1,5788:32583029,17581654 -) -(1,5792:6797234,18247832:25785795,404226,76021 -(1,5790:6797234,18247832:0,0,0 -g1,5790:6797234,18247832 -g1,5790:6797234,18247832 -g1,5790:6469554,18247832 -(1,5790:6469554,18247832:0,0,0 -) -g1,5790:6797234,18247832 -) -g1,5792:7745671,18247832 -g1,5792:9010254,18247832 -h1,5792:11855565,18247832:0,0,0 -k1,5792:32583029,18247832:20727464 -g1,5792:32583029,18247832 -) -(1,5794:6797234,19569370:25785795,410518,76021 -(1,5793:6797234,19569370:0,0,0 -g1,5793:6797234,19569370 -g1,5793:6797234,19569370 -g1,5793:6469554,19569370 -(1,5793:6469554,19569370:0,0,0 -) -g1,5793:6797234,19569370 -) -k1,5794:6797234,19569370:0 -h1,5794:9642545,19569370:0,0,0 -k1,5794:32583029,19569370:22940484 -g1,5794:32583029,19569370 -) -(1,5798:6797234,20235548:25785795,404226,82312 -(1,5796:6797234,20235548:0,0,0 -g1,5796:6797234,20235548 -g1,5796:6797234,20235548 -g1,5796:6469554,20235548 -(1,5796:6469554,20235548:0,0,0 -) -g1,5796:6797234,20235548 -) -g1,5798:7745671,20235548 -g1,5798:8061817,20235548 -g1,5798:10274837,20235548 -g1,5798:11223274,20235548 -g1,5798:11855566,20235548 -g1,5798:14068586,20235548 -g1,5798:18178480,20235548 -g1,5798:18810772,20235548 -g1,5798:19443064,20235548 -g1,5798:20075356,20235548 -g1,5798:20707648,20235548 -g1,5798:21339940,20235548 -g1,5798:21972232,20235548 -g1,5798:22604524,20235548 -g1,5798:23236816,20235548 -g1,5798:23869108,20235548 -g1,5798:24501400,20235548 -h1,5798:25449837,20235548:0,0,0 -k1,5798:32583029,20235548:7133192 -g1,5798:32583029,20235548 -) -] -) -g1,5799:32583029,20317860 -g1,5799:6797234,20317860 -g1,5799:6797234,20317860 -g1,5799:32583029,20317860 -g1,5799:32583029,20317860 -) -h1,5799:6797234,20514468:0,0,0 -] -g1,5802:32583029,21038756 -) -h1,5802:6630773,21038756:0,0,0 -v1,5805:6630773,22194816:0,393216,0 -(1,5806:6630773,25159681:25952256,3358081,0 -g1,5806:6630773,25159681 -g1,5806:6303093,25159681 -r1,5893:6401397,25159681:98304,3358081,0 -g1,5806:6600626,25159681 -g1,5806:6797234,25159681 -[1,5806:6797234,25159681:25785795,3358081,0 -(1,5806:6797234,22627354:25785795,825754,196608 -(1,5805:6797234,22627354:0,825754,196608 -r1,5893:7890375,22627354:1093141,1022362,196608 -k1,5805:6797234,22627354:-1093141 -) -(1,5805:6797234,22627354:1093141,825754,196608 -) -k1,5805:8045586,22627354:155211 -k1,5805:9771804,22627354:327680 -k1,5805:11978292,22627354:155211 -k1,5805:12489363,22627354:155211 -k1,5805:14538564,22627354:155211 -k1,5805:16087726,22627354:155211 -k1,5805:18035347,22627354:155211 -k1,5805:20472523,22627354:155212 -k1,5805:22021685,22627354:155211 -k1,5805:24305505,22627354:155211 -k1,5805:26511993,22627354:155211 -k1,5805:29139877,22627354:155211 -k1,5805:31189078,22627354:155211 -k1,5805:32583029,22627354:0 -) -(1,5806:6797234,23468842:25785795,513147,126483 -k1,5805:7997526,23468842:181207 -k1,5805:9971143,23468842:181207 -k1,5805:12434314,23468842:181207 -k1,5805:14009472,23468842:181207 -k1,5805:15209764,23468842:181207 -k1,5805:17044444,23468842:181207 -k1,5805:19354260,23468842:181207 -k1,5805:20607636,23468842:181207 -k1,5805:23296250,23468842:181207 -k1,5805:26979701,23468842:181207 -k1,5805:28805862,23468842:181207 -k1,5805:30190310,23468842:181207 -k1,5805:32583029,23468842:0 -) -(1,5806:6797234,24310330:25785795,513147,134348 -k1,5805:8439981,24310330:176051 -k1,5805:10840325,24310330:176052 -k1,5805:11667804,24310330:176051 -k1,5805:14463984,24310330:176051 -k1,5805:16948214,24310330:176052 -k1,5805:18859658,24310330:176051 -(1,5805:18859658,24310330:0,452978,115847 -r1,5893:23086754,24310330:4227096,568825,115847 -k1,5805:18859658,24310330:-4227096 -) -(1,5805:18859658,24310330:4227096,452978,115847 -k1,5805:18859658,24310330:3277 -h1,5805:23083477,24310330:0,411205,112570 -) -k1,5805:23436476,24310330:176052 -k1,5805:25946264,24310330:176051 -k1,5805:27419273,24310330:176051 -k1,5805:28614410,24310330:176052 -k1,5805:29962900,24310330:176051 -k1,5805:32583029,24310330:0 -) -(1,5806:6797234,25151818:25785795,513147,7863 -g1,5805:9304641,25151818 -g1,5805:11247128,25151818 -g1,5805:12129242,25151818 -g1,5805:13394742,25151818 -g1,5805:15161592,25151818 -g1,5805:16812443,25151818 -k1,5806:32583029,25151818:13894946 -g1,5806:32583029,25151818 -) -] -g1,5806:32583029,25159681 -) -h1,5806:6630773,25159681:0,0,0 -v1,5809:6630773,26315741:0,393216,0 -(1,5893:6630773,45706769:25952256,19784244,0 -g1,5893:6630773,45706769 -g1,5893:6303093,45706769 -r1,5893:6401397,45706769:98304,19784244,0 -g1,5893:6600626,45706769 -g1,5893:6797234,45706769 -[1,5893:6797234,45706769:25785795,19784244,0 -(1,5810:6797234,26677814:25785795,755289,196608 -(1,5809:6797234,26677814:0,755289,196608 -r1,5893:8134168,26677814:1336934,951897,196608 -k1,5809:6797234,26677814:-1336934 -) -(1,5809:6797234,26677814:1336934,755289,196608 -) -k1,5809:8406426,26677814:272258 -k1,5809:8734106,26677814:327680 -k1,5809:11024830,26677814:279424 -k1,5809:14815018,26677814:279424 -k1,5809:16314721,26677814:279423 -k1,5809:19726111,26677814:279424 -k1,5809:21959163,26677814:279424 -k1,5809:24341680,26677814:272258 -k1,5809:25810625,26677814:272258 -k1,5809:28794764,26677814:272259 -k1,5809:32051532,26677814:272258 -k1,5809:32583029,26677814:0 -) -(1,5810:6797234,27519302:25785795,505283,134348 -k1,5809:7722210,27519302:273548 -k1,5809:9088244,27519302:273549 -(1,5809:9088244,27519302:0,459977,115847 -r1,5893:11908493,27519302:2820249,575824,115847 -k1,5809:9088244,27519302:-2820249 -) -(1,5809:9088244,27519302:2820249,459977,115847 -k1,5809:9088244,27519302:3277 -h1,5809:11905216,27519302:0,411205,112570 -) -k1,5809:12182041,27519302:273548 -k1,5809:13647034,27519302:273548 -k1,5809:14708980,27519302:273548 -(1,5809:14708980,27519302:0,452978,115847 -r1,5893:16825805,27519302:2116825,568825,115847 -k1,5809:14708980,27519302:-2116825 -) -(1,5809:14708980,27519302:2116825,452978,115847 -k1,5809:14708980,27519302:3277 -h1,5809:16822528,27519302:0,411205,112570 -) -k1,5809:17099354,27519302:273549 -k1,5809:20653634,27519302:273548 -k1,5809:21613344,27519302:273548 -k1,5809:23962418,27519302:273549 -k1,5809:25045336,27519302:273548 -k1,5809:26817037,27519302:273548 -h1,5809:27613955,27519302:0,0,0 -k1,5809:28061173,27519302:273548 -k1,5809:28962557,27519302:273549 -k1,5809:30932832,27519302:273548 -k1,5809:32583029,27519302:0 -) -(1,5810:6797234,28360790:25785795,513147,126483 -k1,5809:10016949,28360790:213579 -k1,5809:13222247,28360790:213579 -k1,5809:14304178,28360790:213579 -k1,5809:15610241,28360790:213578 -(1,5809:15610241,28360790:0,452978,115847 -r1,5893:18430490,28360790:2820249,568825,115847 -k1,5809:15610241,28360790:-2820249 -) -(1,5809:15610241,28360790:2820249,452978,115847 -k1,5809:15610241,28360790:3277 -h1,5809:18427213,28360790:0,411205,112570 -) -k1,5809:18644069,28360790:213579 -k1,5809:19509076,28360790:213579 -k1,5809:22156662,28360790:213579 -k1,5809:23389326,28360790:213579 -k1,5809:25671221,28360790:213579 -k1,5809:26544091,28360790:213578 -k1,5809:27776755,28360790:213579 -k1,5809:29782744,28360790:213579 -k1,5809:31563944,28360790:213579 -k1,5809:32583029,28360790:0 -) -(1,5810:6797234,29202278:25785795,513147,134348 -k1,5809:8887076,29202278:195852 -k1,5809:10688559,29202278:195851 -k1,5809:11535839,29202278:195852 -k1,5809:14030039,29202278:195852 -k1,5809:15793511,29202278:195851 -k1,5809:18619323,29202278:195852 -k1,5809:20334955,29202278:195852 -k1,5809:21713732,29202278:195852 -k1,5809:22561011,29202278:195851 -k1,5809:24785858,29202278:195852 -k1,5809:27989813,29202278:195852 -k1,5809:28868549,29202278:195851 -k1,5809:30012052,29202278:195852 -k1,5809:32583029,29202278:0 -) -(1,5810:6797234,30043766:25785795,505283,134348 -g1,5809:7612501,30043766 -g1,5809:8830815,30043766 -g1,5809:11410967,30043766 -g1,5809:15470267,30043766 -k1,5810:32583029,30043766:15425865 -g1,5810:32583029,30043766 -) -(1,5812:6797234,30885254:25785795,505283,134348 -h1,5811:6797234,30885254:983040,0,0 -g1,5811:10442346,30885254 -g1,5811:13396053,30885254 -g1,5811:15334608,30885254 -g1,5811:17269230,30885254 -(1,5811:17269230,30885254:0,452978,115847 -r1,5893:19034343,30885254:1765113,568825,115847 -k1,5811:17269230,30885254:-1765113 -) -(1,5811:17269230,30885254:1765113,452978,115847 -k1,5811:17269230,30885254:3277 -h1,5811:19031066,30885254:0,411205,112570 -) -k1,5812:32583029,30885254:13375016 -g1,5812:32583029,30885254 -) -v1,5814:6797234,32024082:0,393216,0 -(1,5829:6797234,36300263:25785795,4669397,196608 -g1,5829:6797234,36300263 -g1,5829:6797234,36300263 -g1,5829:6600626,36300263 -(1,5829:6600626,36300263:0,4669397,196608 -r1,5893:32779637,36300263:26179011,4866005,196608 -k1,5829:6600625,36300263:-26179012 -) -(1,5829:6600626,36300263:26179011,4669397,196608 -[1,5829:6797234,36300263:25785795,4472789,0 -(1,5816:6797234,32237992:25785795,410518,82312 -(1,5815:6797234,32237992:0,0,0 -g1,5815:6797234,32237992 -g1,5815:6797234,32237992 -g1,5815:6469554,32237992 -(1,5815:6469554,32237992:0,0,0 -) -g1,5815:6797234,32237992 -) -k1,5816:8313063,32237992:251246 -k1,5816:9196601,32237992:251246 -k1,5816:15454616,32237992:251246 -k1,5816:18867318,32237992:251245 -k1,5816:22280021,32237992:251246 -k1,5816:25692724,32237992:251246 -k1,5816:29105427,32237992:251246 -h1,5816:32583029,32237992:0,0,0 -k1,5816:32583029,32237992:0 -k1,5816:32583029,32237992:0 -) -(1,5817:6797234,32904170:25785795,410518,76021 -h1,5817:6797234,32904170:0,0,0 -k1,5817:6797234,32904170:0 -h1,5817:10590982,32904170:0,0,0 -k1,5817:32583030,32904170:21992048 -g1,5817:32583030,32904170 -) -(1,5821:6797234,33570348:25785795,404226,76021 -(1,5819:6797234,33570348:0,0,0 -g1,5819:6797234,33570348 -g1,5819:6797234,33570348 -g1,5819:6469554,33570348 -(1,5819:6469554,33570348:0,0,0 -) -g1,5819:6797234,33570348 -) -g1,5821:7745671,33570348 -g1,5821:9010254,33570348 -g1,5821:12171711,33570348 -h1,5821:15017022,33570348:0,0,0 -k1,5821:32583030,33570348:17566008 -g1,5821:32583030,33570348 -) -(1,5823:6797234,34891886:25785795,410518,82312 -(1,5822:6797234,34891886:0,0,0 -g1,5822:6797234,34891886 -g1,5822:6797234,34891886 -g1,5822:6469554,34891886 -(1,5822:6469554,34891886:0,0,0 -) -g1,5822:6797234,34891886 -) -g1,5823:8377963,34891886 -g1,5823:9326401,34891886 -g1,5823:13436295,34891886 -g1,5823:15649315,34891886 -g1,5823:16281607,34891886 -k1,5823:16281607,34891886:0 -h1,5823:21972229,34891886:0,0,0 -k1,5823:32583029,34891886:10610800 -g1,5823:32583029,34891886 -) -(1,5824:6797234,35558064:25785795,410518,76021 -h1,5824:6797234,35558064:0,0,0 -k1,5824:6797234,35558064:0 -h1,5824:10590982,35558064:0,0,0 -k1,5824:32583030,35558064:21992048 -g1,5824:32583030,35558064 -) -(1,5828:6797234,36224242:25785795,404226,76021 -(1,5826:6797234,36224242:0,0,0 -g1,5826:6797234,36224242 -g1,5826:6797234,36224242 -g1,5826:6469554,36224242 -(1,5826:6469554,36224242:0,0,0 -) -g1,5826:6797234,36224242 -) -g1,5828:7745671,36224242 -g1,5828:9010254,36224242 -g1,5828:12171711,36224242 -h1,5828:15017022,36224242:0,0,0 -k1,5828:32583030,36224242:17566008 -g1,5828:32583030,36224242 -) -] -) -g1,5829:32583029,36300263 -g1,5829:6797234,36300263 -g1,5829:6797234,36300263 -g1,5829:32583029,36300263 -g1,5829:32583029,36300263 -) -h1,5829:6797234,36496871:0,0,0 -(1,5833:6797234,37811008:25785795,513147,134348 -h1,5832:6797234,37811008:983040,0,0 -g1,5832:9274494,37811008 -g1,5832:10089761,37811008 -g1,5832:13702760,37811008 -g1,5832:15814985,37811008 -g1,5832:17083762,37811008 -g1,5832:20049266,37811008 -g1,5832:20899923,37811008 -k1,5833:32583029,37811008:9243856 -g1,5833:32583029,37811008 -) -v1,5835:6797234,38949836:0,393216,0 -(1,5844:6797234,41238301:25785795,2681681,196608 -g1,5844:6797234,41238301 -g1,5844:6797234,41238301 -g1,5844:6600626,41238301 -(1,5844:6600626,41238301:0,2681681,196608 -r1,5893:32779637,41238301:26179011,2878289,196608 -k1,5844:6600625,41238301:-26179012 -) -(1,5844:6600626,41238301:26179011,2681681,196608 -[1,5844:6797234,41238301:25785795,2485073,0 -(1,5837:6797234,39163746:25785795,410518,82312 -(1,5836:6797234,39163746:0,0,0 -g1,5836:6797234,39163746 -g1,5836:6797234,39163746 -g1,5836:6469554,39163746 -(1,5836:6469554,39163746:0,0,0 -) -g1,5836:6797234,39163746 -) -g1,5837:8377963,39163746 -g1,5837:9326401,39163746 -k1,5837:9326401,39163746:0 -h1,5837:13120149,39163746:0,0,0 -k1,5837:32583029,39163746:19462880 -g1,5837:32583029,39163746 -) -(1,5838:6797234,39829924:25785795,410518,107478 -h1,5838:6797234,39829924:0,0,0 -g1,5838:7113380,39829924 -g1,5838:7429526,39829924 -g1,5838:7745672,39829924 -g1,5838:8061818,39829924 -g1,5838:8377964,39829924 -g1,5838:8694110,39829924 -g1,5838:9010256,39829924 -g1,5838:9326402,39829924 -g1,5838:9642548,39829924 -g1,5838:9958694,39829924 -g1,5838:10274840,39829924 -g1,5838:10590986,39829924 -g1,5838:10907132,39829924 -g1,5838:11223278,39829924 -g1,5838:11539424,39829924 -g1,5838:13752444,39829924 -g1,5838:14384736,39829924 -g1,5838:20391505,39829924 -g1,5838:23869108,39829924 -g1,5838:24501400,39829924 -h1,5838:26398274,39829924:0,0,0 -k1,5838:32583029,39829924:6184755 -g1,5838:32583029,39829924 -) -(1,5839:6797234,40496102:25785795,410518,76021 -h1,5839:6797234,40496102:0,0,0 -k1,5839:6797234,40496102:0 -h1,5839:10590982,40496102:0,0,0 -k1,5839:32583030,40496102:21992048 -g1,5839:32583030,40496102 -) -(1,5843:6797234,41162280:25785795,404226,76021 -(1,5841:6797234,41162280:0,0,0 -g1,5841:6797234,41162280 -g1,5841:6797234,41162280 -g1,5841:6469554,41162280 -(1,5841:6469554,41162280:0,0,0 -) -g1,5841:6797234,41162280 -) -g1,5843:7745671,41162280 -g1,5843:9010254,41162280 -g1,5843:12171711,41162280 -h1,5843:15017022,41162280:0,0,0 -k1,5843:32583030,41162280:17566008 -g1,5843:32583030,41162280 -) -] -) -g1,5844:32583029,41238301 -g1,5844:6797234,41238301 -g1,5844:6797234,41238301 -g1,5844:32583029,41238301 -g1,5844:32583029,41238301 -) -h1,5844:6797234,41434909:0,0,0 -(1,5848:6797234,42749046:25785795,513147,134348 -h1,5847:6797234,42749046:983040,0,0 -g1,5847:9564819,42749046 -g1,5847:12493623,42749046 -g1,5847:14428245,42749046 -g1,5847:18768039,42749046 -g1,5847:22074985,42749046 -g1,5847:24251435,42749046 -g1,5847:25844615,42749046 -g1,5847:27698628,42749046 -g1,5847:28580742,42749046 -g1,5847:30430168,42749046 -k1,5848:32583029,42749046:186781 -g1,5848:32583029,42749046 -) -v1,5850:6797234,43887874:0,393216,0 -(1,5858:6797234,45510161:25785795,2015503,196608 -g1,5858:6797234,45510161 -g1,5858:6797234,45510161 -g1,5858:6600626,45510161 -(1,5858:6600626,45510161:0,2015503,196608 -r1,5893:32779637,45510161:26179011,2212111,196608 -k1,5858:6600625,45510161:-26179012 -) -(1,5858:6600626,45510161:26179011,2015503,196608 -[1,5858:6797234,45510161:25785795,1818895,0 -(1,5852:6797234,44101784:25785795,410518,82312 -(1,5851:6797234,44101784:0,0,0 -g1,5851:6797234,44101784 -g1,5851:6797234,44101784 -g1,5851:6469554,44101784 -(1,5851:6469554,44101784:0,0,0 -) -g1,5851:6797234,44101784 -) -g1,5852:8377963,44101784 -g1,5852:9326401,44101784 -g1,5852:13436295,44101784 -g1,5852:15649315,44101784 -g1,5852:16281607,44101784 -g1,5852:21972231,44101784 -h1,5852:23236814,44101784:0,0,0 -k1,5852:32583029,44101784:9346215 -g1,5852:32583029,44101784 -) -(1,5853:6797234,44767962:25785795,410518,76021 -h1,5853:6797234,44767962:0,0,0 -k1,5853:6797234,44767962:0 -h1,5853:10590982,44767962:0,0,0 -k1,5853:32583030,44767962:21992048 -g1,5853:32583030,44767962 -) -(1,5857:6797234,45434140:25785795,404226,76021 -(1,5855:6797234,45434140:0,0,0 -g1,5855:6797234,45434140 -g1,5855:6797234,45434140 -g1,5855:6469554,45434140 -(1,5855:6469554,45434140:0,0,0 -) -g1,5855:6797234,45434140 -) -g1,5857:7745671,45434140 -g1,5857:9010254,45434140 -g1,5857:12171711,45434140 -h1,5857:15017022,45434140:0,0,0 -k1,5857:32583030,45434140:17566008 -g1,5857:32583030,45434140 ) -] -) -g1,5858:32583029,45510161 -g1,5858:6797234,45510161 -g1,5858:6797234,45510161 -g1,5858:32583029,45510161 -g1,5858:32583029,45510161 +g1,4947:23818943,22193375 ) -h1,5858:6797234,45706769:0,0,0 -] -g1,5893:32583029,45706769 ) -] -(1,5893:32583029,45706769:0,0,0 -g1,5893:32583029,45706769 +g1,4947:23818943,22193375 +(1,4947:23818943,22193375:792985,792985,792985 +g1,4947:24611928,22193375 +g1,4947:24611928,22193375 ) +g1,4947:24611928,22193375 +(1,4947:24611928,22193375:779878,792985,792985 +g1,4947:24611928,22193375 +g1,4947:25391806,22193375 +(1,4947:25391806,22193375:0,792985,792985 +(1,4947:25391806,22193375:0,0,0 +(1,4947:25391806,22193375:0,0,0 +g1,4947:25391806,22193375 +g1,4947:25391806,22193375 +g1,4947:25391806,22193375 +g1,4947:25391806,22193375 +g1,4947:25391806,22193375 +(1,4947:25391806,22193375:0,0,0 +(1,4947:25391806,22193375:0,281018,137888 +(1,4947:25391806,22193375:0,281018,137888 +$1,4947:25391806,22193375 +h1,4947:25391806,22193375:0,281018,137888 +$1,4947:25391806,22193375 ) -] -(1,5893:6630773,47279633:25952256,0,0 -h1,5893:6630773,47279633:25952256,0,0 +g1,4947:25391806,22193375 +) +) +g1,4947:25391806,22193375 +g1,4947:25391806,22193375 +) +) +g1,4947:25391806,22193375 +) +) +g1,4947:25391806,22193375 +(1,4947:25391806,22193375:792985,792985,792985 +g1,4947:26184791,22193375 +g1,4947:26184791,22193375 +) +g1,4947:26184791,22193375 +(1,4947:26184791,22193375:779878,792985,792985 +g1,4947:26184791,22193375 +g1,4947:26964669,22193375 +(1,4947:26964669,22193375:0,792985,792985 +(1,4947:26964669,22193375:0,0,0 +(1,4947:26964669,22193375:0,0,0 +g1,4947:26964669,22193375 +g1,4947:26964669,22193375 +g1,4947:26964669,22193375 +g1,4947:26964669,22193375 +g1,4947:26964669,22193375 +(1,4947:26964669,22193375:0,0,0 +(1,4947:26964669,22193375:1257766,281018,140387 +(1,4947:26964669,22193375:1257766,281018,140387 +$1,4947:26964669,22193375 +h1,4947:26964669,22193375:0,281018,137888 +(1,4947:27334816,22272027:887619,213123,61735 +) +$1,4947:28222435,22193375 +) +g1,4947:28222435,22193375 +) +) +g1,4947:26964669,22193375 +g1,4947:26964669,22193375 +) +) +g1,4947:26964669,22193375 +) +) +g1,4947:26964669,22193375 +(1,4948:26964669,22193375:792985,792985,792985 +g1,4948:27757654,22193375 +g1,4948:27757654,22193375 +) +g1,4948:27757654,22193375 +) +] +) +) +g1,4948:19880232,22193375 +g1,4948:19880232,22193375 +) +) +g1,4950:19880232,22193375 +g1,4950:19880232,22193375 +g1,4950:19880232,22193375 +g1,4950:19880232,22193375 +g1,4950:19880232,22193375 +g1,4950:19880232,22193375 +(1,4950:19880232,22193375:0,0,0 +(1,4950:19880232,22193375:0,0,0 +g1,4950:19880232,22193375 +g1,4950:19880232,22193375 +g1,4950:19880232,22193375 +g1,4950:19880232,22193375 +g1,4950:19880232,22193375 +(1,4950:19880232,22193375:0,0,0 +(1,4950:19880232,22193375:9356563,404226,110625 +(1,4950:19880232,22193375:9356563,404226,110625 +g1,4950:22307686,22193375 +g1,4950:23013378,22193375 +g1,4950:24976313,22193375 +g1,4950:25593400,22193375 +$1,4950:25593400,22193375 +g1,4950:26029506,22193375 +g1,4950:26629714,22193375 +$1,4950:26948481,22193375 +g1,4950:27107865,22193375 +g1,4950:27788391,22193375 +$1,4950:27788391,22193375 +g1,4950:28224497,22193375 +g1,4950:28824705,22193375 +$1,4950:29236795,22193375 +) +g1,4950:29236795,22193375 +) +) +g1,4950:19880232,22193375 +g1,4950:19880232,22193375 +) +) +g1,4950:19880232,22193375 +g1,4952:19880232,22193375 +(1,4952:19880232,22193375:0,0,0 +(1,4952:19880232,22193375:0,0,0 +g1,4952:19880232,22193375 +g1,4952:19880232,22193375 +g1,4952:19880232,22193375 +g1,4952:19880232,22193375 +g1,4952:19880232,22193375 +(1,4952:19880232,22193375:0,0,0 +(1,4952:19880232,22193375:8482575,395837,107478 +(1,4952:19880232,22193375:8482575,395837,107478 +g1,4952:21392279,22193375 +g1,4952:22097971,22193375 +g1,4952:24060906,22193375 +g1,4952:24677993,22193375 +$1,4952:24677993,22193375 +g1,4952:25052757,22193375 +g1,4952:25652965,22193375 +$1,4952:25971732,22193375 +g1,4952:26131116,22193375 +g1,4952:26811642,22193375 +$1,4952:26811642,22193375 +g1,4952:27186406,22193375 +g1,4952:27786614,22193375 +$1,4952:28362807,22193375 +) +g1,4952:28362807,22193375 +) +) +g1,4952:19880232,22193375 +g1,4952:19880232,22193375 +) +) +g1,4952:19880232,22193375 +g1,4953:19880232,22193375 +g1,4953:19880232,22193375 +) +g1,4953:19880232,22193375 +) +) +g1,4955:24733257,27604598 +k1,4955:32583029,27604598:7849772 +) +v1,4958:6630773,29125038:0,393216,0 +(1,4959:6630773,32089318:25952256,3357496,0 +g1,4959:6630773,32089318 +g1,4959:6237557,32089318 +r1,4980:6368629,32089318:131072,3357496,0 +g1,4959:6567858,32089318 +g1,4959:6764466,32089318 +[1,4959:6764466,32089318:25818563,3357496,0 +(1,4959:6764466,29486215:25818563,754393,260573 +(1,4958:6764466,29486215:0,754393,260573 +r1,4980:8010564,29486215:1246098,1014966,260573 +k1,4958:6764466,29486215:-1246098 +) +(1,4958:6764466,29486215:1246098,754393,260573 +) +k1,4958:8261429,29486215:250865 +k1,4958:8589109,29486215:327680 +k1,4958:9467808,29486215:250864 +k1,4958:10133464,29486215:250813 +k1,4958:15384071,29486215:250865 +k1,4958:16654021,29486215:250865 +k1,4958:20097799,29486215:250864 +k1,4958:24023923,29486215:250865 +k1,4958:24934080,29486215:250865 +k1,4958:27918452,29486215:250865 +k1,4958:29360761,29486215:250864 +k1,4958:31591469,29486215:250865 +k1,4958:32583029,29486215:0 +) +(1,4959:6764466,30351295:25818563,513147,134348 +k1,4958:10299861,30351295:230414 +k1,4958:12398050,30351295:230413 +k1,4958:15413088,30351295:230414 +k1,4958:18897364,30351295:230413 +k1,4958:19743816,30351295:230414 +k1,4958:20993315,30351295:230414 +k1,4958:22877201,30351295:230413 +k1,4958:24846941,30351295:230414 +k1,4958:25763516,30351295:230413 +k1,4958:27013015,30351295:230414 +k1,4958:29492624,30351295:230413 +k1,4958:30714598,30351295:230414 +k1,4958:32583029,30351295:0 +) +(1,4959:6764466,31216375:25818563,513147,134348 +k1,4958:8818504,31216375:285877 +k1,4958:9720420,31216375:285878 +k1,4958:10362157,31216375:285877 +k1,4958:12735356,31216375:285877 +k1,4958:14040319,31216375:285878 +k1,4958:15632329,31216375:285877 +k1,4958:18172646,31216375:285878 +k1,4958:22422140,31216375:285877 +k1,4958:23359445,31216375:285877 +k1,4958:25179521,31216375:285878 +k1,4958:26656843,31216375:285877 +k1,4958:27961805,31216375:285877 +k1,4958:30489014,31216375:285878 +k1,4958:31931601,31216375:285877 +k1,4958:32583029,31216375:0 +) +(1,4959:6764466,32081455:25818563,505283,7863 +k1,4959:32583029,32081455:22931702 +g1,4959:32583029,32081455 +) +] +g1,4959:32583029,32089318 +) +h1,4959:6630773,32089318:0,0,0 +(1,4962:6630773,32954398:25952256,505283,134348 +h1,4961:6630773,32954398:983040,0,0 +g1,4961:8440877,32954398 +g1,4961:12963516,32954398 +g1,4961:15852343,32954398 +g1,4961:17070657,32954398 +g1,4961:18923359,32954398 +g1,4961:21429455,32954398 +g1,4961:23716006,32954398 +g1,4961:24446732,32954398 +g1,4961:28455569,32954398 +k1,4962:32583029,32954398:3441298 +g1,4962:32583029,32954398 +) +(1,4963:6630773,33819478:25952256,0,0 +h1,4963:6630773,33819478:983040,0,0 +k1,4963:32583029,33819478:24969216 +g1,4963:32583029,33819478 +) +(1,4973:12708387,36685401:13797028,2800387,2390087 +(1,4973:13226121,36783715:1295253,298648,5505 +) +g1,4973:14703434,36685401 +g1,4973:15453691,36685401 +(1,4973:15453691,36685401:11051724,2800387,2390087 +[1,4973:15453691,38911648:459407,4862794,0 +] +g1,4965:15585418,36685401 +[1,4972:15585418,36685401:10788270,2800387,2390087 +(1,4966:15585418,34490567:10788270,605553,259526 +g1,4966:15585418,34490567 +(1,4966:15585418,34490567:2066480,605553,259526 +r1,4980:15585418,34490567:0,865079,259526 +g1,4966:15913098,34490567 +k1,4966:16025722,34490567:112624 +$1,4966:16025722,34490567 +(1,4966:16488406,34588881:723189,334430,72024 +) +$1,4966:17211595,34490567 +k1,4966:17324218,34490567:112623 +g1,4966:17651898,34490567 +) +g1,4966:17651898,34490567 +(1,4966:17651898,34490567:2066480,605553,259526 +g1,4966:17979578,34490567 +k1,4966:18092202,34490567:112624 +$1,4966:18092202,34490567 +(1,4966:18554886,34588881:723189,339935,72024 +) +$1,4966:19278075,34490567 +k1,4966:19390698,34490567:112623 +g1,4966:19718378,34490567 +) +g1,4966:19718378,34490567 +(1,4966:19718378,34490567:1232732,605553,259526 +g1,4966:20046058,34490567 +g1,4966:20046058,34490567 +$1,4966:20046058,34490567 +$1,4966:20623430,34490567 +g1,4966:20623430,34490567 +g1,4966:20951110,34490567 +) +g1,4966:20951110,34490567 +(1,4966:20951110,34490567:2041708,605553,259526 +g1,4966:21278790,34490567 +k1,4966:21391414,34490567:112624 +$1,4966:21391414,34490567 +(1,4966:21854098,34588881:698417,346358,96797 +) +$1,4966:22552515,34490567 +k1,4966:22665138,34490567:112623 +g1,4966:22992818,34490567 +) +g1,4966:22992818,34490567 +(1,4966:22992818,34490567:1232732,605553,259526 +g1,4966:23320498,34490567 +g1,4966:23320498,34490567 +$1,4966:23320498,34490567 +$1,4966:23897870,34490567 +g1,4966:23897870,34490567 +g1,4966:24225550,34490567 +) +g1,4966:24225550,34490567 +(1,4966:24225550,34490567:2148138,605553,259526 +g1,4966:24553230,34490567 +k1,4966:24665854,34490567:112624 +$1,4966:24665854,34490567 +(1,4966:25128538,34588881:804847,334430,72024 +) +$1,4966:25933385,34490567 +$1,4966:25933385,34490567 +h1,4966:25933385,34490567:0,0,0 +$1,4966:25933385,34490567 +k1,4966:26046008,34490567:112623 +g1,4966:26373688,34490567 +) +g1,4966:26373688,34490567 +) +(1,4967:15585418,35355646:10788270,605553,259526 +g1,4967:15585418,35355646 +(1,4967:15585418,35355646:2066480,605553,259526 +r1,4980:15585418,35355646:0,865079,259526 +g1,4967:15913098,35355646 +k1,4967:16025722,35355646:112624 +$1,4967:16025722,35355646 +(1,4967:16488406,35453960:723189,339935,72024 +) +$1,4967:17211595,35355646 +k1,4967:17324218,35355646:112623 +g1,4967:17651898,35355646 +) +g1,4967:17651898,35355646 +(1,4967:17651898,35355646:2066480,605553,259526 +g1,4967:17979578,35355646 +k1,4967:18092202,35355646:112624 +$1,4967:18092202,35355646 +(1,4967:18554886,35453960:723189,339935,72024 +) +$1,4967:19278075,35355646 +k1,4967:19390698,35355646:112623 +g1,4967:19718378,35355646 +) +g1,4967:19718378,35355646 +(1,4967:19718378,35355646:1232732,605553,259526 +g1,4967:20046058,35355646 +g1,4967:20046058,35355646 +$1,4967:20046058,35355646 +$1,4967:20623430,35355646 +g1,4967:20623430,35355646 +g1,4967:20951110,35355646 +) +g1,4967:20951110,35355646 +(1,4967:20951110,35355646:2041708,605553,259526 +g1,4967:21278790,35355646 +k1,4967:21391414,35355646:112624 +$1,4967:21391414,35355646 +(1,4967:21854098,35453960:698417,346358,96797 +) +$1,4967:22552515,35355646 +k1,4967:22665138,35355646:112623 +g1,4967:22992818,35355646 +) +g1,4967:22992818,35355646 +(1,4967:22992818,35355646:1232732,605553,259526 +g1,4967:23320498,35355646 +g1,4967:23320498,35355646 +$1,4967:23320498,35355646 +$1,4967:23897870,35355646 +g1,4967:23897870,35355646 +g1,4967:24225550,35355646 +) +g1,4967:24225550,35355646 +(1,4967:24225550,35355646:2148138,605553,259526 +g1,4967:24553230,35355646 +k1,4967:24665854,35355646:112624 +$1,4967:24665854,35355646 +(1,4967:25128538,35453960:804847,339935,72024 +) +$1,4967:25933385,35355646 +$1,4967:25933385,35355646 +h1,4967:25933385,35355646:0,0,0 +$1,4967:25933385,35355646 +k1,4967:26046008,35355646:112623 +g1,4967:26373688,35355646 +) +g1,4967:26373688,35355646 +) +(1,4968:15585418,36220725:10788270,605553,259526 +g1,4968:15585418,36220725 +(1,4968:15585418,36220725:2066480,605553,259526 +r1,4980:15585418,36220725:0,865079,259526 +g1,4968:15913098,36220725 +k1,4968:16329972,36220725:416874 +$1,4968:16329972,36220725 +$1,4968:16907344,36220725 +k1,4968:17324218,36220725:416874 +g1,4968:17651898,36220725 +) +g1,4968:17651898,36220725 +(1,4968:17651898,36220725:2066480,605553,259526 +g1,4968:17979578,36220725 +k1,4968:18396452,36220725:416874 +$1,4968:18396452,36220725 +$1,4968:18973824,36220725 +k1,4968:19390698,36220725:416874 +g1,4968:19718378,36220725 +) +g1,4968:19718378,36220725 +(1,4968:19718378,36220725:1232732,605553,259526 +g1,4968:20046058,36220725 +k1,4968:20050646,36220725:4588 +$1,4968:20050646,36220725 +$1,4968:20618843,36220725 +k1,4968:20623430,36220725:4587 +g1,4968:20951110,36220725 +) +g1,4968:20951110,36220725 +(1,4968:20951110,36220725:2041708,605553,259526 +g1,4968:21278790,36220725 +k1,4968:21683278,36220725:404488 +$1,4968:21683278,36220725 +$1,4968:22260650,36220725 +k1,4968:22665138,36220725:404488 +g1,4968:22992818,36220725 +) +g1,4968:22992818,36220725 +(1,4968:22992818,36220725:1232732,605553,259526 +g1,4968:23320498,36220725 +k1,4968:23609184,36220725:288686 +$1,4968:23609184,36220725 +$1,4968:23609184,36220725 +k1,4968:23897870,36220725:288686 +g1,4968:24225550,36220725 +) +g1,4968:24225550,36220725 +(1,4968:24225550,36220725:2148138,605553,259526 +g1,4968:24553230,36220725 +k1,4968:25010933,36220725:457703 +$1,4968:25010933,36220725 +$1,4968:25588305,36220725 +$1,4968:25588305,36220725 +h1,4968:25588305,36220725:0,0,0 +$1,4968:25588305,36220725 +k1,4968:26046008,36220725:457703 +g1,4968:26373688,36220725 +) +g1,4968:26373688,36220725 +) +(1,4969:15585418,37085804:10788270,605553,259526 +g1,4969:15585418,37085804 +(1,4969:15585418,37085804:2066480,605553,259526 +r1,4980:15585418,37085804:0,865079,259526 +g1,4969:15913098,37085804 +k1,4969:16064945,37085804:151847 +$1,4969:16064945,37085804 +(1,4969:16527629,37184118:644743,346358,72024 +) +$1,4969:17172372,37085804 +k1,4969:17324218,37085804:151846 +g1,4969:17651898,37085804 +) +g1,4969:17651898,37085804 +(1,4969:17651898,37085804:2066480,605553,259526 +g1,4969:17979578,37085804 +k1,4969:18131425,37085804:151847 +$1,4969:18131425,37085804 +(1,4969:18594109,37184118:644743,346358,72024 +) +$1,4969:19238852,37085804 +k1,4969:19390698,37085804:151846 +g1,4969:19718378,37085804 +) +g1,4969:19718378,37085804 +(1,4969:19718378,37085804:1232732,605553,259526 +g1,4969:20046058,37085804 +g1,4969:20046058,37085804 +$1,4969:20046058,37085804 +$1,4969:20623430,37085804 +g1,4969:20623430,37085804 +g1,4969:20951110,37085804 +) +g1,4969:20951110,37085804 +(1,4969:20951110,37085804:2041708,605553,259526 +g1,4969:21278790,37085804 +k1,4969:21430637,37085804:151847 +$1,4969:21430637,37085804 +(1,4969:21893321,37184118:619971,346358,96797 +) +$1,4969:22513292,37085804 +k1,4969:22665138,37085804:151846 +g1,4969:22992818,37085804 +) +g1,4969:22992818,37085804 +(1,4969:22992818,37085804:1232732,605553,259526 +g1,4969:23320498,37085804 +g1,4969:23320498,37085804 +$1,4969:23320498,37085804 +$1,4969:23897870,37085804 +g1,4969:23897870,37085804 +g1,4969:24225550,37085804 +) +g1,4969:24225550,37085804 +(1,4969:24225550,37085804:2148138,605553,259526 +g1,4969:24553230,37085804 +k1,4969:24705077,37085804:151847 +$1,4969:24705077,37085804 +(1,4969:25167761,37184118:726401,346358,72024 +) +$1,4969:25894162,37085804 +$1,4969:25894162,37085804 +h1,4969:25894162,37085804:0,0,0 +$1,4969:25894162,37085804 +k1,4969:26046008,37085804:151846 +g1,4969:26373688,37085804 +) +g1,4969:26373688,37085804 +) +(1,4970:15585418,37950883:10788270,605553,259526 +g1,4970:15585418,37950883 +(1,4970:15585418,37950883:2066480,605553,259526 +r1,4980:15585418,37950883:0,865079,259526 +g1,4970:15913098,37950883 +k1,4970:16329972,37950883:416874 +$1,4970:16329972,37950883 +$1,4970:16907344,37950883 +k1,4970:17324218,37950883:416874 +g1,4970:17651898,37950883 +) +g1,4970:17651898,37950883 +(1,4970:17651898,37950883:2066480,605553,259526 +g1,4970:17979578,37950883 +k1,4970:18396452,37950883:416874 +$1,4970:18396452,37950883 +$1,4970:18973824,37950883 +k1,4970:19390698,37950883:416874 +g1,4970:19718378,37950883 +) +g1,4970:19718378,37950883 +(1,4970:19718378,37950883:1232732,605553,259526 +g1,4970:20046058,37950883 +k1,4970:20334744,37950883:288686 +$1,4970:20334744,37950883 +$1,4970:20334744,37950883 +k1,4970:20623430,37950883:288686 +g1,4970:20951110,37950883 +) +g1,4970:20951110,37950883 +(1,4970:20951110,37950883:2041708,605553,259526 +g1,4970:21278790,37950883 +k1,4970:21683278,37950883:404488 +$1,4970:21683278,37950883 +$1,4970:22260650,37950883 +k1,4970:22665138,37950883:404488 +g1,4970:22992818,37950883 +) +g1,4970:22992818,37950883 +(1,4970:22992818,37950883:1232732,605553,259526 +g1,4970:23320498,37950883 +k1,4970:23325086,37950883:4588 +$1,4970:23325086,37950883 +$1,4970:23893283,37950883 +k1,4970:23897870,37950883:4587 +g1,4970:24225550,37950883 +) +g1,4970:24225550,37950883 +(1,4970:24225550,37950883:2148138,605553,259526 +g1,4970:24553230,37950883 +k1,4970:25010933,37950883:457703 +$1,4970:25010933,37950883 +$1,4970:25588305,37950883 +$1,4970:25588305,37950883 +h1,4970:25588305,37950883:0,0,0 +$1,4970:25588305,37950883 +k1,4970:26046008,37950883:457703 +g1,4970:26373688,37950883 +) +g1,4970:26373688,37950883 +) +(1,4972:15585418,38815962:10788270,605553,259526 +g1,4971:15585418,38815962 +(1,4971:15585418,38815962:2066480,605553,259526 +r1,4980:15585418,38815962:0,865079,259526 +g1,4971:15913098,38815962 +g1,4971:15913098,38815962 +$1,4971:15913098,38815962 +(1,4971:16375782,38914276:948436,334430,72024 +) +$1,4971:17324218,38815962 +g1,4971:17324218,38815962 +g1,4971:17651898,38815962 +) +g1,4971:17651898,38815962 +(1,4971:17651898,38815962:2066480,605553,259526 +g1,4971:17979578,38815962 +g1,4971:17979578,38815962 +$1,4971:17979578,38815962 +(1,4971:18442262,38914276:948436,339935,72024 +) +$1,4971:19390698,38815962 +g1,4971:19390698,38815962 +g1,4971:19718378,38815962 +) +g1,4971:19718378,38815962 +(1,4971:19718378,38815962:1232732,605553,259526 +g1,4971:20046058,38815962 +g1,4971:20046058,38815962 +$1,4971:20046058,38815962 +$1,4971:20623430,38815962 +g1,4971:20623430,38815962 +g1,4971:20951110,38815962 +) +g1,4971:20951110,38815962 +(1,4971:20951110,38815962:2041708,605553,259526 +g1,4971:21278790,38815962 +g1,4971:21278790,38815962 +$1,4971:21278790,38815962 +(1,4971:21741474,38914276:923664,346358,96797 +) +$1,4971:22665138,38815962 +g1,4971:22665138,38815962 +g1,4971:22992818,38815962 +) +g1,4971:22992818,38815962 +(1,4971:22992818,38815962:1232732,605553,259526 +g1,4971:23320498,38815962 +g1,4971:23320498,38815962 +$1,4971:23320498,38815962 +$1,4971:23897870,38815962 +g1,4971:23897870,38815962 +g1,4971:24225550,38815962 +) +g1,4971:24225550,38815962 +(1,4972:24225550,38815962:2148138,605553,259526 +g1,4971:24553230,38815962 +g1,4971:24553230,38815962 +$1,4972:24553230,38815962 +(1,4972:25015914,38914276:1030094,248644,72024 +) +$1,4972:26046008,38815962 +g1,4972:26046008,38815962 +g1,4972:26373688,38815962 +) +g1,4972:26373688,38815962 +) +] +g1,4972:26046008,36685401 +[1,4973:26046008,38911648:459407,4862794,0 +] +) +) +(1,4976:6630773,40039523:25952256,505283,195111 +h1,4975:6630773,40039523:983040,0,0 +k1,4975:9783905,40039523:251198 +$1,4975:9783905,40039523 +$1,4975:10301639,40039523 +k1,4975:10552837,40039523:251198 +k1,4975:14175862,40039523:251198 +k1,4975:15446145,40039523:251198 +k1,4975:17580192,40039523:251198 +k1,4975:20092382,40039523:251198 +$1,4975:20092382,40039523 +k1,4975:20996264,40039523:183641 +k1,4975:21748102,40039523:183641 +$1,4975:22263215,40039523 +k1,4975:22514413,40039523:251198 +k1,4975:23554009,40039523:251198 +k1,4975:27654136,40039523:251198 +k1,4975:29096779,40039523:251198 +$1,4975:29096779,40039523 +(1,4975:29559463,40137837:619971,346358,96797 +) +$1,4975:30179434,40039523 +k1,4975:30430632,40039523:251198 +k1,4975:31470228,40039523:251198 +k1,4976:32583029,40039523:0 +) +(1,4976:6630773,40904603:25952256,513147,138281 +k1,4975:9020122,40904603:246322 +k1,4975:10660394,40904603:246321 +$1,4975:10660394,40904603 +$1,4975:10946786,40904603 +k1,4975:11193108,40904603:246322 +k1,4975:14178835,40904603:246322 +k1,4975:15959355,40904603:246322 +k1,4975:17397121,40904603:246321 +$1,4975:17397121,40904603 +$1,4975:17760190,40904603 +k1,4975:18006512,40904603:246322 +k1,4975:20992239,40904603:246322 +k1,4975:24125421,40904603:246321 +k1,4975:25568430,40904603:246322 +k1,4975:28158319,40904603:246322 +k1,4975:29063933,40904603:246322 +k1,4975:30329339,40904603:246321 +k1,4975:31748100,40904603:246322 +k1,4976:32583029,40904603:0 +) +(1,4976:6630773,41769683:25952256,513147,134348 +g1,4975:9883324,41769683 +g1,4975:10741845,41769683 +g1,4975:11960159,41769683 +g1,4975:14246710,41769683 +g1,4975:15437499,41769683 +g1,4975:17331489,41769683 +g1,4975:18292246,41769683 +$1,4975:18292246,41769683 +$1,4975:19012487,41769683 +g1,4975:19211716,41769683 +g1,4975:20602390,41769683 +$1,4975:20602390,41769683 +$1,4975:21117503,41769683 +g1,4975:21490402,41769683 +g1,4975:22637282,41769683 +g1,4975:24370709,41769683 +g1,4975:25761383,41769683 +k1,4976:32583029,41769683:3934785 +g1,4976:32583029,41769683 +) +(1,4978:6630773,42634763:25952256,505283,134348 +h1,4977:6630773,42634763:983040,0,0 +k1,4977:10260610,42634763:237694 +k1,4977:11973519,42634763:237694 +k1,4977:12567073,42634763:237694 +k1,4977:14677786,42634763:237694 +k1,4977:18434108,42634763:237694 +k1,4977:20036917,42634763:237694 +k1,4977:20960772,42634763:237693 +k1,4977:24288489,42634763:237694 +k1,4977:25335553,42634763:237694 +k1,4977:27071400,42634763:237694 +h1,4977:27868318,42634763:0,0,0 +k1,4977:28106012,42634763:237694 +k1,4977:30372701,42634763:237694 +k1,4977:31478747,42634763:237694 +k1,4977:32583029,42634763:0 +) +(1,4978:6630773,43499843:25952256,513147,134348 +k1,4977:8671841,43499843:225065 +k1,4977:10100147,43499843:225065 +k1,4977:13843840,43499843:225065 +k1,4977:15577544,43499843:225065 +k1,4977:17989545,43499843:225065 +k1,4977:19608560,43499843:225064 +k1,4977:22529121,43499843:225065 +(1,4977:22529121,43499843:0,452978,122846 +r1,4980:25349370,43499843:2820249,575824,122846 +k1,4977:22529121,43499843:-2820249 +) +(1,4977:22529121,43499843:2820249,452978,122846 +k1,4977:22529121,43499843:3277 +h1,4977:25346093,43499843:0,411205,112570 +) +k1,4977:25748105,43499843:225065 +k1,4977:28650316,43499843:225065 +k1,4977:30350596,43499843:225065 +k1,4977:31748100,43499843:225065 +k1,4978:32583029,43499843:0 +) +(1,4978:6630773,44364923:25952256,505283,134348 +k1,4977:10090476,44364923:232710 +k1,4977:12208657,44364923:232710 +k1,4977:13545649,44364923:232710 +k1,4977:14526125,44364923:232710 +k1,4977:17183012,44364923:232710 +k1,4977:21174866,44364923:232709 +k1,4977:22801527,44364923:232710 +(1,4977:22801527,44364923:0,452978,115847 +r1,4980:24918352,44364923:2116825,568825,115847 +k1,4977:22801527,44364923:-2116825 +) +(1,4977:22801527,44364923:2116825,452978,115847 +k1,4977:22801527,44364923:3277 +h1,4977:24915075,44364923:0,411205,112570 +) +k1,4977:25151062,44364923:232710 +k1,4977:26575217,44364923:232710 +(1,4977:26575217,44364923:0,452978,115847 +r1,4980:28692042,44364923:2116825,568825,115847 +k1,4977:26575217,44364923:-2116825 +) +(1,4977:26575217,44364923:2116825,452978,115847 +k1,4977:26575217,44364923:3277 +h1,4977:28688765,44364923:0,411205,112570 +) +k1,4977:29098422,44364923:232710 +k1,4977:30522577,44364923:232710 +k1,4977:32583029,44364923:0 +) +(1,4978:6630773,45230003:25952256,505283,126483 +g1,4977:8223953,45230003 +(1,4977:8223953,45230003:0,452978,115847 +r1,4980:9989066,45230003:1765113,568825,115847 +k1,4977:8223953,45230003:-1765113 +) +(1,4977:8223953,45230003:1765113,452978,115847 +k1,4977:8223953,45230003:3277 +h1,4977:9985789,45230003:0,411205,112570 +) +g1,4977:10361965,45230003 +g1,4977:11379083,45230003 +g1,4977:14417332,45230003 +(1,4977:14417332,45230003:0,452978,115847 +r1,4980:18292716,45230003:3875384,568825,115847 +k1,4977:14417332,45230003:-3875384 +) +(1,4977:14417332,45230003:3875384,452978,115847 +k1,4977:14417332,45230003:3277 +h1,4977:18289439,45230003:0,411205,112570 +) +g1,4977:18491945,45230003 +g1,4977:19795456,45230003 +g1,4977:20742451,45230003 +g1,4977:22454906,45230003 +g1,4977:23305563,45230003 +g1,4977:25320795,45230003 +g1,4977:26539109,45230003 +k1,4978:32583029,45230003:4315080 +g1,4978:32583029,45230003 +) +] +(1,4980:32583029,45706769:0,0,0 +g1,4980:32583029,45706769 +) +) +] +(1,4980:6630773,47279633:25952256,0,0 +h1,4980:6630773,47279633:25952256,0,0 +) +] +(1,4980:4262630,4025873:0,0,0 +[1,4980:-473656,4025873:0,0,0 +(1,4980:-473656,-710413:0,0,0 +(1,4980:-473656,-710413:0,0,0 +g1,4980:-473656,-710413 +) +g1,4980:-473656,-710413 +) +] +) +] +!52816 +}84 +Input:790:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:791:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!197 +{85 +[1,5071:4262630,47279633:28320399,43253760,0 +(1,5071:4262630,4025873:0,0,0 +[1,5071:-473656,4025873:0,0,0 +(1,5071:-473656,-710413:0,0,0 +(1,5071:-473656,-644877:0,0,0 +k1,5071:-473656,-644877:-65536 ) -] -(1,5893:4262630,4025873:0,0,0 -[1,5893:-473656,4025873:0,0,0 -(1,5893:-473656,-710413:0,0,0 -(1,5893:-473656,-710413:0,0,0 -g1,5893:-473656,-710413 +(1,5071:-473656,4736287:0,0,0 +k1,5071:-473656,4736287:5209943 ) -g1,5893:-473656,-710413 +g1,5071:-473656,-710413 ) ] ) -] -!26732 -}99 -Input:835:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:836:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:837:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!290 -{100 -[1,5950:4262630,47279633:28320399,43253760,0 -(1,5950:4262630,4025873:0,0,0 -[1,5950:-473656,4025873:0,0,0 -(1,5950:-473656,-710413:0,0,0 -(1,5950:-473656,-644877:0,0,0 -k1,5950:-473656,-644877:-65536 +[1,5071:6630773,47279633:25952256,43253760,0 +[1,5071:6630773,4812305:25952256,786432,0 +(1,5071:6630773,4812305:25952256,505283,11795 +(1,5071:6630773,4812305:25952256,505283,11795 +g1,5071:3078558,4812305 +[1,5071:3078558,4812305:0,0,0 +(1,5071:3078558,2439708:0,1703936,0 +k1,5071:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,5071:2537886,2439708:1179648,16384,0 ) -(1,5950:-473656,4736287:0,0,0 -k1,5950:-473656,4736287:5209943 +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,5071:3078558,1915420:16384,1179648,0 ) -g1,5950:-473656,-710413 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) ] ) -[1,5950:6630773,47279633:25952256,43253760,0 -[1,5950:6630773,4812305:25952256,786432,0 -(1,5950:6630773,4812305:25952256,485622,11795 -(1,5950:6630773,4812305:25952256,485622,11795 -g1,5950:3078558,4812305 -[1,5950:3078558,4812305:0,0,0 -(1,5950:3078558,2439708:0,1703936,0 -k1,5950:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,5950:2537886,2439708:1179648,16384,0 ) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,5950:3078558,1915420:16384,1179648,0 ) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 +] +[1,5071:3078558,4812305:0,0,0 +(1,5071:3078558,2439708:0,1703936,0 +g1,5071:29030814,2439708 +g1,5071:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,5071:36151628,1915420:16384,1179648,0 +) +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) ] ) +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,5071:37855564,2439708:1179648,16384,0 ) ) +k1,5071:3078556,2439708:-34777008 +) ] -[1,5950:3078558,4812305:0,0,0 -(1,5950:3078558,2439708:0,1703936,0 -g1,5950:29030814,2439708 -g1,5950:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,5950:36151628,1915420:16384,1179648,0 +[1,5071:3078558,4812305:0,0,0 +(1,5071:3078558,49800853:0,16384,2228224 +k1,5071:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,5071:2537886,49800853:1179648,16384,0 ) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,5071:3078558,51504789:16384,1179648,0 ) -] +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,5950:37855564,2439708:1179648,16384,0 +] ) ) -k1,5950:3078556,2439708:-34777008 ) ] -[1,5950:3078558,4812305:0,0,0 -(1,5950:3078558,49800853:0,16384,2228224 -k1,5950:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,5950:2537886,49800853:1179648,16384,0 -) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,5950:3078558,51504789:16384,1179648,0 +[1,5071:3078558,4812305:0,0,0 +(1,5071:3078558,49800853:0,16384,2228224 +g1,5071:29030814,49800853 +g1,5071:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,5071:36151628,51504789:16384,1179648,0 ) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 ) ] ) -) -) -] -[1,5950:3078558,4812305:0,0,0 -(1,5950:3078558,49800853:0,16384,2228224 -g1,5950:29030814,49800853 -g1,5950:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,5950:36151628,51504789:16384,1179648,0 -) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 -) -] -) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,5950:37855564,49800853:1179648,16384,0 -) -) -k1,5950:3078556,49800853:-34777008 -) -] -g1,5950:6630773,4812305 -g1,5950:6630773,4812305 -g1,5950:9104757,4812305 -k1,5950:31786111,4812305:22681354 -) -) -] -[1,5950:6630773,45706769:25952256,40108032,0 -(1,5950:6630773,45706769:25952256,40108032,0 -(1,5950:6630773,45706769:0,0,0 -g1,5950:6630773,45706769 -) -[1,5950:6630773,45706769:25952256,40108032,0 -v1,5893:6630773,6254097:0,393216,0 -(1,5893:6630773,21712596:25952256,15851715,0 -g1,5893:6630773,21712596 -g1,5893:6303093,21712596 -r1,5950:6401397,21712596:98304,15851715,0 -g1,5893:6600626,21712596 -g1,5893:6797234,21712596 -[1,5893:6797234,21712596:25785795,15851715,0 -(1,5862:6797234,6374028:25785795,513147,134348 -h1,5861:6797234,6374028:983040,0,0 -k1,5861:11446085,6374028:143906 -k1,5861:12609076,6374028:143906 -k1,5861:14545392,6374028:143906 -k1,5861:15348590,6374028:143906 -k1,5861:15848356,6374028:143906 -k1,5861:17886252,6374028:143906 -k1,5861:19884828,6374028:143907 -k1,5861:20838104,6374028:143906 -k1,5861:23972418,6374028:143906 -k1,5861:27300063,6374028:143906 -k1,5861:29011590,6374028:143906 -k1,5861:30544859,6374028:143906 -k1,5861:32583029,6374028:0 -) -(1,5862:6797234,7215516:25785795,513147,134348 -k1,5861:7659984,7215516:246712 -k1,5861:8262555,7215516:246711 -k1,5861:11129396,7215516:246712 -k1,5861:13353985,7215516:246712 -k1,5861:14132193,7215516:246711 -k1,5861:15732879,7215516:246712 -k1,5861:18130482,7215516:246711 -k1,5861:21484911,7215516:246712 -k1,5861:23429661,7215516:246712 -k1,5861:26374489,7215516:246711 -k1,5861:29411069,7215516:246712 -(1,5861:29411069,7215516:0,452978,115847 -r1,5950:32583029,7215516:3171960,568825,115847 -k1,5861:29411069,7215516:-3171960 -) -(1,5861:29411069,7215516:3171960,452978,115847 -k1,5861:29411069,7215516:3277 -h1,5861:32579752,7215516:0,411205,112570 -) -k1,5861:32583029,7215516:0 -) -(1,5862:6797234,8057004:25785795,513147,134348 -k1,5861:8193478,8057004:291962 -k1,5861:9233206,8057004:291962 -k1,5861:11038394,8057004:291962 -k1,5861:11946394,8057004:291962 -k1,5861:13441597,8057004:291962 -k1,5861:15274310,8057004:291962 -k1,5861:16036165,8057004:291962 -k1,5861:18924008,8057004:291962 -k1,5861:19867398,8057004:291962 -k1,5861:21894753,8057004:291962 -(1,5861:21894753,8057004:0,452978,115847 -r1,5950:24011578,8057004:2116825,568825,115847 -k1,5861:21894753,8057004:-2116825 -) -(1,5861:21894753,8057004:2116825,452978,115847 -k1,5861:21894753,8057004:3277 -h1,5861:24008301,8057004:0,411205,112570 -) -k1,5861:24303540,8057004:291962 -k1,5861:25543153,8057004:291962 -k1,5861:29516928,8057004:291962 -k1,5861:30881059,8057004:291962 -k1,5861:32583029,8057004:0 -) -(1,5862:6797234,8898492:25785795,513147,126483 -g1,5861:9508458,8898492 -g1,5861:12698095,8898492 -g1,5861:16096792,8898492 -g1,5861:17789587,8898492 -g1,5861:18674978,8898492 -(1,5861:18674978,8898492:0,452978,115847 -r1,5950:21495227,8898492:2820249,568825,115847 -k1,5861:18674978,8898492:-2820249 -) -(1,5861:18674978,8898492:2820249,452978,115847 -k1,5861:18674978,8898492:3277 -h1,5861:21491950,8898492:0,411205,112570 -) -g1,5861:21694456,8898492 -g1,5861:22997967,8898492 -g1,5861:23944962,8898492 -g1,5861:26905223,8898492 -g1,5861:27720490,8898492 -g1,5861:28708117,8898492 -k1,5862:32583029,8898492:2038593 -g1,5862:32583029,8898492 -) -v1,5864:6797234,10088958:0,393216,0 -(1,5888:6797234,18351389:25785795,8655647,196608 -g1,5888:6797234,18351389 -g1,5888:6797234,18351389 -g1,5888:6600626,18351389 -(1,5888:6600626,18351389:0,8655647,196608 -r1,5950:32779637,18351389:26179011,8852255,196608 -k1,5888:6600625,18351389:-26179012 -) -(1,5888:6600626,18351389:26179011,8655647,196608 -[1,5888:6797234,18351389:25785795,8459039,0 -(1,5866:6797234,10302868:25785795,410518,107478 -(1,5865:6797234,10302868:0,0,0 -g1,5865:6797234,10302868 -g1,5865:6797234,10302868 -g1,5865:6469554,10302868 -(1,5865:6469554,10302868:0,0,0 -) -g1,5865:6797234,10302868 -) -g1,5866:8377963,10302868 -g1,5866:9326401,10302868 -g1,5866:11223276,10302868 -g1,5866:12171714,10302868 -g1,5866:14384734,10302868 -g1,5866:15017026,10302868 -g1,5866:17230047,10302868 -h1,5866:18810775,10302868:0,0,0 -k1,5866:32583029,10302868:13772254 -g1,5866:32583029,10302868 -) -(1,5867:6797234,10969046:25785795,404226,82312 -h1,5867:6797234,10969046:0,0,0 -g1,5867:8377963,10969046 -g1,5867:9326401,10969046 -g1,5867:11539422,10969046 -g1,5867:13120151,10969046 -g1,5867:14700880,10969046 -g1,5867:16281609,10969046 -g1,5867:17862338,10969046 -g1,5867:19443067,10969046 -g1,5867:21023796,10969046 -g1,5867:22604525,10969046 -g1,5867:24185254,10969046 -h1,5867:25449837,10969046:0,0,0 -k1,5867:32583029,10969046:7133192 -g1,5867:32583029,10969046 -) -(1,5868:6797234,11635224:25785795,410518,6290 -h1,5868:6797234,11635224:0,0,0 -h1,5868:8061817,11635224:0,0,0 -k1,5868:32583029,11635224:24521212 -g1,5868:32583029,11635224 -) -(1,5873:6797234,12301402:25785795,404226,76021 -(1,5870:6797234,12301402:0,0,0 -g1,5870:6797234,12301402 -g1,5870:6797234,12301402 -g1,5870:6469554,12301402 -(1,5870:6469554,12301402:0,0,0 -) -g1,5870:6797234,12301402 -) -g1,5873:7745671,12301402 -g1,5873:8061817,12301402 -g1,5873:9326400,12301402 -g1,5873:9958692,12301402 -g1,5873:10590984,12301402 -g1,5873:11223276,12301402 -g1,5873:11855568,12301402 -g1,5873:12487860,12301402 -g1,5873:13120152,12301402 -g1,5873:13752444,12301402 -g1,5873:14384736,12301402 -g1,5873:15017028,12301402 -h1,5873:15333174,12301402:0,0,0 -k1,5873:32583030,12301402:17249856 -g1,5873:32583030,12301402 -) -(1,5873:6797234,12967580:25785795,404226,6290 -h1,5873:6797234,12967580:0,0,0 -g1,5873:7745671,12967580 -g1,5873:10274837,12967580 -g1,5873:10907129,12967580 -h1,5873:11223275,12967580:0,0,0 -k1,5873:32583029,12967580:21359754 -g1,5873:32583029,12967580 -) -(1,5875:6797234,14289118:25785795,410518,82312 -(1,5874:6797234,14289118:0,0,0 -g1,5874:6797234,14289118 -g1,5874:6797234,14289118 -g1,5874:6469554,14289118 -(1,5874:6469554,14289118:0,0,0 -) -g1,5874:6797234,14289118 -) -g1,5875:9326400,14289118 -g1,5875:10274838,14289118 -g1,5875:14700878,14289118 -h1,5875:16281606,14289118:0,0,0 -k1,5875:32583029,14289118:16301423 -g1,5875:32583029,14289118 -) -(1,5876:6797234,14955296:25785795,410518,76021 -h1,5876:6797234,14955296:0,0,0 -k1,5876:6797234,14955296:0 -h1,5876:11539419,14955296:0,0,0 -k1,5876:32583029,14955296:21043610 -g1,5876:32583029,14955296 -) -(1,5880:6797234,15621474:25785795,404226,76021 -(1,5878:6797234,15621474:0,0,0 -g1,5878:6797234,15621474 -g1,5878:6797234,15621474 -g1,5878:6469554,15621474 -(1,5878:6469554,15621474:0,0,0 -) -g1,5878:6797234,15621474 -) -g1,5880:7745671,15621474 -g1,5880:9010254,15621474 -g1,5880:10274837,15621474 -h1,5880:11223274,15621474:0,0,0 -k1,5880:32583030,15621474:21359756 -g1,5880:32583030,15621474 -) -(1,5882:6797234,16943012:25785795,410518,107478 -(1,5881:6797234,16943012:0,0,0 -g1,5881:6797234,16943012 -g1,5881:6797234,16943012 -g1,5881:6469554,16943012 -(1,5881:6469554,16943012:0,0,0 -) -g1,5881:6797234,16943012 -) -g1,5882:9326400,16943012 -g1,5882:10274838,16943012 -g1,5882:14700878,16943012 -g1,5882:16913898,16943012 -g1,5882:17546190,16943012 -g1,5882:18178482,16943012 -g1,5882:20391502,16943012 -g1,5882:22604522,16943012 -g1,5882:24817542,16943012 -k1,5882:24817542,16943012:0 -h1,5882:26082125,16943012:0,0,0 -k1,5882:32583029,16943012:6500904 -g1,5882:32583029,16943012 -) -(1,5883:6797234,17609190:25785795,410518,76021 -h1,5883:6797234,17609190:0,0,0 -k1,5883:6797234,17609190:0 -h1,5883:11539419,17609190:0,0,0 -k1,5883:32583029,17609190:21043610 -g1,5883:32583029,17609190 -) -(1,5887:6797234,18275368:25785795,404226,76021 -(1,5885:6797234,18275368:0,0,0 -g1,5885:6797234,18275368 -g1,5885:6797234,18275368 -g1,5885:6469554,18275368 -(1,5885:6469554,18275368:0,0,0 -) -g1,5885:6797234,18275368 -) -g1,5887:7745671,18275368 -g1,5887:9010254,18275368 -g1,5887:10274837,18275368 -h1,5887:11223274,18275368:0,0,0 -k1,5887:32583030,18275368:21359756 -g1,5887:32583030,18275368 -) -] -) -g1,5888:32583029,18351389 -g1,5888:6797234,18351389 -g1,5888:6797234,18351389 -g1,5888:32583029,18351389 -g1,5888:32583029,18351389 -) -h1,5888:6797234,18547997:0,0,0 -(1,5892:6797234,19913773:25785795,505283,134348 -h1,5891:6797234,19913773:983040,0,0 -k1,5891:8630872,19913773:222763 -k1,5891:9872719,19913773:222762 -k1,5891:11243673,19913773:222763 -k1,5891:14826467,19913773:222763 -k1,5891:16784623,19913773:222763 -k1,5891:18026470,19913773:222762 -k1,5891:20084241,19913773:222763 -k1,5891:23066725,19913773:222763 -k1,5891:26209772,19913773:222763 -k1,5891:28318005,19913773:222762 -k1,5891:29072265,19913773:222763 -k1,5891:32583029,19913773:0 -) -(1,5892:6797234,20755261:25785795,513147,134348 -k1,5891:9021245,20755261:212056 -k1,5891:9978444,20755261:212055 -k1,5891:10841928,20755261:212056 -k1,5891:12854913,20755261:212056 -k1,5891:15373181,20755261:212056 -k1,5891:16604321,20755261:212055 -k1,5891:19545952,20755261:212056 -k1,5891:20417300,20755261:212056 -k1,5891:21648440,20755261:212055 -k1,5891:23826576,20755261:212056 -k1,5891:25728150,20755261:212056 -k1,5891:27138860,20755261:212056 -k1,5891:29086308,20755261:212055 -k1,5891:30317449,20755261:212056 -k1,5891:32583029,20755261:0 -) -(1,5892:6797234,21596749:25785795,513147,115847 -g1,5891:9865629,21596749 -(1,5891:9865629,21596749:0,452978,115847 -r1,5950:11982454,21596749:2116825,568825,115847 -k1,5891:9865629,21596749:-2116825 -) -(1,5891:9865629,21596749:2116825,452978,115847 -k1,5891:9865629,21596749:3277 -h1,5891:11979177,21596749:0,411205,112570 -) -g1,5891:12355353,21596749 -g1,5891:13206010,21596749 -g1,5891:16973019,21596749 -g1,5891:18191333,21596749 -k1,5892:32583029,21596749:12828662 -g1,5892:32583029,21596749 -) -] -g1,5893:32583029,21712596 -) -h1,5893:6630773,21712596:0,0,0 -v1,5895:6630773,23078372:0,393216,0 -(1,5927:6630773,41490285:25952256,18805129,0 -g1,5927:6630773,41490285 -g1,5927:6303093,41490285 -r1,5950:6401397,41490285:98304,18805129,0 -g1,5927:6600626,41490285 -g1,5927:6797234,41490285 -[1,5927:6797234,41490285:25785795,18805129,0 -(1,5897:6797234,23510910:25785795,825754,196608 -(1,5895:6797234,23510910:0,825754,196608 -r1,5950:8834093,23510910:2036859,1022362,196608 -k1,5895:6797234,23510910:-2036859 -) -(1,5895:6797234,23510910:2036859,825754,196608 -) -k1,5895:9041446,23510910:207353 -k1,5895:10767664,23510910:327680 -k1,5895:10767664,23510910:0 -k1,5896:14660320,23510910:212809 -k1,5896:16826757,23510910:212809 -k1,5896:19356051,23510910:207353 -k1,5896:20033297,23510910:207353 -k1,5896:20772146,23510910:207352 -k1,5896:23609459,23510910:207353 -k1,5896:24468239,23510910:207352 -k1,5896:27100424,23510910:207353 -k1,5896:28326861,23510910:207352 -k1,5896:30544859,23510910:207353 -k1,5896:32583029,23510910:0 -) -(1,5897:6797234,24352398:25785795,513147,134348 -k1,5896:7624248,24352398:210976 -k1,5896:8191083,24352398:210975 -k1,5896:10296049,24352398:210976 -k1,5896:12363004,24352398:210975 -k1,5896:16993073,24352398:210976 -k1,5896:20320940,24352398:210975 -k1,5896:21183344,24352398:210976 -k1,5896:22413404,24352398:210975 -k1,5896:24468563,24352398:210976 -k1,5896:25338830,24352398:210975 -k1,5896:26568891,24352398:210976 -k1,5896:28572276,24352398:210975 -k1,5896:29466137,24352398:210976 -k1,5896:32583029,24352398:0 -) -(1,5897:6797234,25193886:25785795,513147,134348 -g1,5896:7647891,25193886 -g1,5896:8866205,25193886 -g1,5896:10804760,25193886 -g1,5896:11663281,25193886 -g1,5896:12881595,25193886 -g1,5896:15046904,25193886 -g1,5896:16649914,25193886 -g1,5896:17941628,25193886 -g1,5896:18808013,25193886 -(1,5896:18808013,25193886:0,452978,115847 -r1,5950:20573126,25193886:1765113,568825,115847 -k1,5896:18808013,25193886:-1765113 -) -(1,5896:18808013,25193886:1765113,452978,115847 -k1,5896:18808013,25193886:3277 -h1,5896:20569849,25193886:0,411205,112570 -) -g1,5896:20772355,25193886 -g1,5896:21503081,25193886 -g1,5896:24780536,25193886 -g1,5896:25789135,25193886 -g1,5896:27486517,25193886 -h1,5896:28283435,25193886:0,0,0 -k1,5897:32583029,25193886:3918830 -g1,5897:32583029,25193886 -) -v1,5899:6797234,26384352:0,393216,0 -(1,5911:6797234,32035164:25785795,6044028,196608 -g1,5911:6797234,32035164 -g1,5911:6797234,32035164 -g1,5911:6600626,32035164 -(1,5911:6600626,32035164:0,6044028,196608 -r1,5950:32779637,32035164:26179011,6240636,196608 -k1,5911:6600625,32035164:-26179012 -) -(1,5911:6600626,32035164:26179011,6044028,196608 -[1,5911:6797234,32035164:25785795,5847420,0 -(1,5901:6797234,26598262:25785795,410518,107478 -(1,5900:6797234,26598262:0,0,0 -g1,5900:6797234,26598262 -g1,5900:6797234,26598262 -g1,5900:6469554,26598262 -(1,5900:6469554,26598262:0,0,0 -) -g1,5900:6797234,26598262 -) -g1,5901:7429526,26598262 -g1,5901:9010255,26598262 -g1,5901:10907129,26598262 -g1,5901:12804003,26598262 -g1,5901:13752440,26598262 -k1,5901:13752440,26598262:0 -h1,5901:15649314,26598262:0,0,0 -k1,5901:32583030,26598262:16933716 -g1,5901:32583030,26598262 -) -(1,5902:6797234,27264440:25785795,404226,107478 -h1,5902:6797234,27264440:0,0,0 -g1,5902:8377963,27264440 -g1,5902:9326401,27264440 -g1,5902:11223276,27264440 -g1,5902:12171714,27264440 -g1,5902:14384734,27264440 -g1,5902:15017026,27264440 -g1,5902:17230047,27264440 -g1,5902:18810776,27264440 -g1,5902:20391505,27264440 -h1,5902:21972233,27264440:0,0,0 -k1,5902:32583029,27264440:10610796 -g1,5902:32583029,27264440 -) -(1,5903:6797234,27930618:25785795,388497,7863 -h1,5903:6797234,27930618:0,0,0 -h1,5903:8061817,27930618:0,0,0 -k1,5903:32583029,27930618:24521212 -g1,5903:32583029,27930618 -) -(1,5904:6797234,28596796:25785795,404226,107478 -h1,5904:6797234,28596796:0,0,0 -k1,5904:6797234,28596796:0 -h1,5904:11855565,28596796:0,0,0 -k1,5904:32583029,28596796:20727464 -g1,5904:32583029,28596796 -) -(1,5905:6797234,29262974:25785795,410518,101187 -h1,5905:6797234,29262974:0,0,0 -g1,5905:7429526,29262974 -g1,5905:10274837,29262974 -g1,5905:12487857,29262974 -g1,5905:14700877,29262974 -k1,5905:14700877,29262974:41419 -h1,5905:19168336,29262974:0,0,0 -k1,5905:32583029,29262974:13414693 -g1,5905:32583029,29262974 -) -(1,5906:6797234,29929152:25785795,410518,101187 -h1,5906:6797234,29929152:0,0,0 -k1,5906:8322931,29929152:261114 -k1,5906:9216337,29929152:261114 -k1,5906:14851928,29929152:261113 -k1,5906:16377625,29929152:261114 -k1,5906:17903322,29929152:261114 -k1,5906:19745165,29929152:261114 -k1,5906:21587006,29929152:261113 -k1,5906:22164266,29929152:261114 -k1,5906:24322255,29929152:261114 -k1,5906:26164097,29929152:261114 -k1,5906:26741357,29929152:261114 -k1,5906:28267053,29929152:261113 -k1,5906:28844313,29929152:261114 -k1,5906:31002301,29929152:261114 -k1,5906:31002301,29929152:0 -h1,5906:32583029,29929152:0,0,0 -k1,5906:32583029,29929152:0 -k1,5906:32583029,29929152:0 -) -(1,5907:6797234,30595330:25785795,388497,7863 -h1,5907:6797234,30595330:0,0,0 -h1,5907:8061817,30595330:0,0,0 -k1,5907:32583029,30595330:24521212 -g1,5907:32583029,30595330 -) -(1,5908:6797234,31261508:25785795,404226,107478 -h1,5908:6797234,31261508:0,0,0 -k1,5908:6797234,31261508:0 -h1,5908:11855565,31261508:0,0,0 -k1,5908:32583029,31261508:20727464 -g1,5908:32583029,31261508 -) -(1,5909:6797234,31927686:25785795,404226,107478 -h1,5909:6797234,31927686:0,0,0 -k1,5909:6797234,31927686:0 -h1,5909:16281605,31927686:0,0,0 -k1,5909:32583029,31927686:16301424 -g1,5909:32583029,31927686 -) -] -) -g1,5911:32583029,32035164 -g1,5911:6797234,32035164 -g1,5911:6797234,32035164 -g1,5911:32583029,32035164 -g1,5911:32583029,32035164 -) -h1,5911:6797234,32231772:0,0,0 -(1,5915:6797234,33597548:25785795,513147,134348 -h1,5914:6797234,33597548:983040,0,0 -k1,5914:9013521,33597548:279698 -k1,5914:10318203,33597548:279699 -k1,5914:12453225,33597548:279698 -k1,5914:14017429,33597548:279698 -k1,5914:15316212,33597548:279698 -k1,5914:17826101,33597548:279699 -k1,5914:20116444,33597548:279698 -k1,5914:21157670,33597548:279698 -k1,5914:23322840,33597548:279699 -k1,5914:25394948,33597548:279698 -k1,5914:26290684,33597548:279698 -k1,5914:26926242,33597548:279698 -k1,5914:29099931,33597548:279699 -k1,5914:30371189,33597548:279698 -k1,5914:32583029,33597548:0 -) -(1,5915:6797234,34439036:25785795,513147,134348 -k1,5914:7962643,34439036:173849 -k1,5914:11441473,34439036:173849 -k1,5914:12266750,34439036:173849 -k1,5914:14689795,34439036:173849 -k1,5914:15546529,34439036:173849 -k1,5914:19627633,34439036:173848 -k1,5914:23423657,34439036:173849 -k1,5914:24616591,34439036:173849 -k1,5914:26768317,34439036:173849 -k1,5914:27601458,34439036:173849 -k1,5914:29793161,34439036:173849 -k1,5915:32583029,34439036:0 -) -(1,5915:6797234,35280524:25785795,505283,134348 -(1,5914:6797234,35280524:0,452978,115847 -r1,5950:8914059,35280524:2116825,568825,115847 -k1,5914:6797234,35280524:-2116825 -) -(1,5914:6797234,35280524:2116825,452978,115847 -k1,5914:6797234,35280524:3277 -h1,5914:8910782,35280524:0,411205,112570 -) -k1,5914:9117110,35280524:203051 -k1,5914:12061532,35280524:203051 -k1,5914:13073954,35280524:203052 -k1,5914:14296090,35280524:203051 -k1,5914:16683456,35280524:203051 -k1,5914:20329114,35280524:203052 -k1,5914:23092657,35280524:203051 -k1,5914:24487153,35280524:203051 -k1,5914:26290593,35280524:203051 -k1,5914:29610537,35280524:203052 -k1,5914:30465016,35280524:203051 -k1,5914:31687152,35280524:203051 -k1,5915:32583029,35280524:0 -) -(1,5915:6797234,36122012:25785795,513147,126483 -k1,5914:8041964,36122012:188290 -k1,5914:8889546,36122012:188290 -k1,5914:10096921,36122012:188290 -k1,5914:12077621,36122012:188290 -k1,5914:13955429,36122012:188290 -(1,5914:13955429,36122012:0,452978,115847 -r1,5950:16423966,36122012:2468537,568825,115847 -k1,5914:13955429,36122012:-2468537 -) -(1,5914:13955429,36122012:2468537,452978,115847 -k1,5914:13955429,36122012:3277 -h1,5914:16420689,36122012:0,411205,112570 -) -k1,5914:16612256,36122012:188290 -k1,5914:19541917,36122012:188290 -k1,5914:20539578,36122012:188291 -k1,5914:21746953,36122012:188290 -k1,5914:24119558,36122012:188290 -k1,5914:26152031,36122012:188290 -k1,5914:27531766,36122012:188290 -k1,5914:30061002,36122012:188290 -k1,5914:30605152,36122012:188290 -k1,5914:32583029,36122012:0 -) -(1,5915:6797234,36963500:25785795,513147,134348 -g1,5914:7655755,36963500 -g1,5914:10104180,36963500 -g1,5914:11587915,36963500 -g1,5914:14211976,36963500 -g1,5914:15430290,36963500 -g1,5914:17640164,36963500 -k1,5915:32583029,36963500:10350102 -g1,5915:32583029,36963500 -) -v1,5917:6797234,38153966:0,393216,0 -(1,5923:6797234,39801418:25785795,2040668,196608 -g1,5923:6797234,39801418 -g1,5923:6797234,39801418 -g1,5923:6600626,39801418 -(1,5923:6600626,39801418:0,2040668,196608 -r1,5950:32779637,39801418:26179011,2237276,196608 -k1,5923:6600625,39801418:-26179012 -) -(1,5923:6600626,39801418:26179011,2040668,196608 -[1,5923:6797234,39801418:25785795,1844060,0 -(1,5919:6797234,38361584:25785795,404226,76021 -(1,5918:6797234,38361584:0,0,0 -g1,5918:6797234,38361584 -g1,5918:6797234,38361584 -g1,5918:6469554,38361584 -(1,5918:6469554,38361584:0,0,0 -) -g1,5918:6797234,38361584 -) -k1,5919:6797234,38361584:0 -h1,5919:9958691,38361584:0,0,0 -k1,5919:32583029,38361584:22624338 -g1,5919:32583029,38361584 -) -(1,5920:6797234,39027762:25785795,404226,76021 -h1,5920:6797234,39027762:0,0,0 -k1,5920:6797234,39027762:0 -h1,5920:12171710,39027762:0,0,0 -k1,5920:32583030,39027762:20411320 -g1,5920:32583030,39027762 -) -(1,5921:6797234,39693940:25785795,404226,107478 -h1,5921:6797234,39693940:0,0,0 -k1,5921:6797234,39693940:0 -h1,5921:15965458,39693940:0,0,0 -k1,5921:32583029,39693940:16617571 -g1,5921:32583029,39693940 -) -] -) -g1,5923:32583029,39801418 -g1,5923:6797234,39801418 -g1,5923:6797234,39801418 -g1,5923:32583029,39801418 -g1,5923:32583029,39801418 -) -h1,5923:6797234,39998026:0,0,0 -(1,5927:6797234,41363802:25785795,513147,126483 -h1,5926:6797234,41363802:983040,0,0 -g1,5926:9254178,41363802 -g1,5926:10472492,41363802 -g1,5926:13663440,41363802 -g1,5926:14478707,41363802 -g1,5926:15697021,41363802 -g1,5926:17866918,41363802 -g1,5926:19921471,41363802 -g1,5926:21312145,41363802 -g1,5926:23107831,41363802 -g1,5926:24373331,41363802 -g1,5926:25869518,41363802 -g1,5926:27087832,41363802 -g1,5926:29460235,41363802 -k1,5927:32583029,41363802:1205866 -g1,5927:32583029,41363802 -) -] -g1,5927:32583029,41490285 -) -h1,5927:6630773,41490285:0,0,0 -] -(1,5950:32583029,45706769:0,0,0 -g1,5950:32583029,45706769 -) -) -] -(1,5950:6630773,47279633:25952256,0,0 -h1,5950:6630773,47279633:25952256,0,0 -) -] -(1,5950:4262630,4025873:0,0,0 -[1,5950:-473656,4025873:0,0,0 -(1,5950:-473656,-710413:0,0,0 -(1,5950:-473656,-710413:0,0,0 -g1,5950:-473656,-710413 -) -g1,5950:-473656,-710413 +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,5071:37855564,49800853:1179648,16384,0 +) +) +k1,5071:3078556,49800853:-34777008 ) ] +g1,5071:6630773,4812305 +k1,5071:22348274,4812305:14920583 +g1,5071:23970945,4812305 +g1,5071:24793421,4812305 +g1,5071:27528893,4812305 +g1,5071:28938572,4812305 +) +) +] +[1,5071:6630773,45706769:25952256,40108032,0 +(1,5071:6630773,45706769:25952256,40108032,0 +(1,5071:6630773,45706769:0,0,0 +g1,5071:6630773,45706769 ) -] -!22542 -}100 -!12 -{101 -[1,5950:4262630,47279633:28320399,43253760,0 -(1,5950:4262630,4025873:0,0,0 -[1,5950:-473656,4025873:0,0,0 -(1,5950:-473656,-710413:0,0,0 -(1,5950:-473656,-644877:0,0,0 -k1,5950:-473656,-644877:-65536 +[1,5071:6630773,45706769:25952256,40108032,0 +(1,4980:6630773,6254097:25952256,505283,134348 +h1,4979:6630773,6254097:983040,0,0 +k1,4979:8839949,6254097:272587 +k1,4979:10216817,6254097:272586 +k1,4979:12418784,6254097:272587 +k1,4979:13047230,6254097:272586 +k1,4979:15407139,6254097:272587 +k1,4979:17415118,6254097:272586 +k1,4979:18706790,6254097:272587 +(1,4979:18706790,6254097:0,452978,115847 +r1,5071:21527039,6254097:2820249,568825,115847 +k1,4979:18706790,6254097:-2820249 +) +(1,4979:18706790,6254097:2820249,452978,115847 +k1,4979:18706790,6254097:3277 +h1,4979:21523762,6254097:0,411205,112570 +) +k1,4979:21799625,6254097:272586 +k1,4979:22755097,6254097:272587 +(1,4979:22755097,6254097:0,452978,115847 +r1,5071:26630481,6254097:3875384,568825,115847 +k1,4979:22755097,6254097:-3875384 +) +(1,4979:22755097,6254097:3875384,452978,115847 +k1,4979:22755097,6254097:3277 +h1,4979:26627204,6254097:0,411205,112570 +) +k1,4979:26903067,6254097:272586 +k1,4979:31386342,6254097:272587 +k1,4979:32583029,6254097:0 +) +(1,4980:6630773,7119177:25952256,513147,134348 +k1,4979:8118565,7119177:181659 +k1,4979:11372552,7119177:181659 +k1,4979:12221367,7119177:181659 +(1,4979:12221367,7119177:0,452978,115847 +r1,5071:15041616,7119177:2820249,568825,115847 +k1,4979:12221367,7119177:-2820249 +) +(1,4979:12221367,7119177:2820249,452978,115847 +k1,4979:12221367,7119177:3277 +h1,4979:15038339,7119177:0,411205,112570 +) +k1,4979:15223275,7119177:181659 +k1,4979:17026950,7119177:181659 +k1,4979:17956374,7119177:181658 +k1,4979:18493893,7119177:181659 +k1,4979:20827099,7119177:181659 +k1,4979:23798626,7119177:181659 +(1,4979:23798626,7119177:0,452978,115847 +r1,5071:27674010,7119177:3875384,568825,115847 +k1,4979:23798626,7119177:-3875384 +) +(1,4979:23798626,7119177:3875384,452978,115847 +k1,4979:23798626,7119177:3277 +h1,4979:27670733,7119177:0,411205,112570 +) +k1,4979:27855669,7119177:181659 +k1,4979:28568825,7119177:181659 +k1,4979:29106344,7119177:181659 +k1,4979:32583029,7119177:0 +) +(1,4980:6630773,7984257:25952256,513147,134348 +k1,4979:10669691,7984257:158531 +k1,4979:12222174,7984257:158532 +k1,4979:17119613,7984257:158531 +k1,4979:20316394,7984257:158532 +k1,4979:21161087,7984257:158531 +k1,4979:24391946,7984257:158531 +k1,4979:26840306,7984257:158532 +k1,4979:30125560,7984257:158531 +k1,4979:30935520,7984257:158532 +k1,4979:31449911,7984257:158531 +k1,4979:32583029,7984257:0 +) +(1,4980:6630773,8849337:25952256,505283,7863 +g1,4979:8531972,8849337 +k1,4980:32583030,8849337:21644576 +g1,4980:32583030,8849337 +) +v1,4982:6630773,9534192:0,393216,0 +(1,5003:6630773,17775072:25952256,8634096,196608 +g1,5003:6630773,17775072 +g1,5003:6630773,17775072 +g1,5003:6434165,17775072 +(1,5003:6434165,17775072:0,8634096,196608 +r1,5071:32779637,17775072:26345472,8830704,196608 +k1,5003:6434165,17775072:-26345472 +) +(1,5003:6434165,17775072:26345472,8634096,196608 +[1,5003:6630773,17775072:25952256,8437488,0 +(1,4984:6630773,9762023:25952256,424439,86428 +(1,4983:6630773,9762023:0,0,0 +g1,4983:6630773,9762023 +g1,4983:6630773,9762023 +g1,4983:6303093,9762023 +(1,4983:6303093,9762023:0,0,0 +) +g1,4983:6630773,9762023 +) +k1,4984:6630773,9762023:0 +g1,4984:10946175,9762023 +g1,4984:12605945,9762023 +g1,4984:13269853,9762023 +h1,4984:13933761,9762023:0,0,0 +k1,4984:32583029,9762023:18649268 +g1,4984:32583029,9762023 +) +(1,4993:6630773,10577950:25952256,424439,86428 +(1,4986:6630773,10577950:0,0,0 +g1,4986:6630773,10577950 +g1,4986:6630773,10577950 +g1,4986:6303093,10577950 +(1,4986:6303093,10577950:0,0,0 +) +g1,4986:6630773,10577950 +) +g1,4993:7626635,10577950 +g1,4993:7958589,10577950 +g1,4993:8290543,10577950 +g1,4993:8622497,10577950 +g1,4993:8954451,10577950 +g1,4993:9286405,10577950 +g1,4993:10946175,10577950 +g1,4993:12605945,10577950 +k1,4993:12605945,10577950:0 +h1,4993:13933761,10577950:0,0,0 +k1,4993:32583029,10577950:18649268 +g1,4993:32583029,10577950 +) +(1,4993:6630773,11262805:25952256,424439,86428 +h1,4993:6630773,11262805:0,0,0 +g1,4993:7626635,11262805 +g1,4993:9286405,11262805 +g1,4993:9618359,11262805 +g1,4993:9950313,11262805 +g1,4993:10282267,11262805 +g1,4993:10946175,11262805 +g1,4993:11278129,11262805 +g1,4993:11610083,11262805 +g1,4993:11942037,11262805 +g1,4993:12605945,11262805 +g1,4993:12937899,11262805 +g1,4993:13269853,11262805 +h1,4993:13933761,11262805:0,0,0 +k1,4993:32583029,11262805:18649268 +g1,4993:32583029,11262805 +) +(1,4993:6630773,11947660:25952256,424439,86428 +h1,4993:6630773,11947660:0,0,0 +g1,4993:7626635,11947660 +g1,4993:9286405,11947660 +g1,4993:9618359,11947660 +g1,4993:9950313,11947660 +g1,4993:10282267,11947660 +g1,4993:10946175,11947660 +g1,4993:11278129,11947660 +g1,4993:11610083,11947660 +g1,4993:11942037,11947660 +g1,4993:12605945,11947660 +g1,4993:12937899,11947660 +g1,4993:13269853,11947660 +h1,4993:13933761,11947660:0,0,0 +k1,4993:32583029,11947660:18649268 +g1,4993:32583029,11947660 +) +(1,4993:6630773,12632515:25952256,424439,86428 +h1,4993:6630773,12632515:0,0,0 +g1,4993:7626635,12632515 +g1,4993:9286405,12632515 +g1,4993:9618359,12632515 +g1,4993:9950313,12632515 +g1,4993:10282267,12632515 +g1,4993:10946175,12632515 +g1,4993:11278129,12632515 +g1,4993:11610083,12632515 +g1,4993:11942037,12632515 +g1,4993:12605945,12632515 +g1,4993:12937899,12632515 +g1,4993:13269853,12632515 +h1,4993:13933761,12632515:0,0,0 +k1,4993:32583029,12632515:18649268 +g1,4993:32583029,12632515 +) +(1,4993:6630773,13317370:25952256,424439,86428 +h1,4993:6630773,13317370:0,0,0 +g1,4993:7626635,13317370 +g1,4993:9286405,13317370 +g1,4993:9618359,13317370 +g1,4993:9950313,13317370 +g1,4993:10282267,13317370 +g1,4993:10946175,13317370 +g1,4993:11278129,13317370 +g1,4993:11610083,13317370 +g1,4993:11942037,13317370 +g1,4993:12605945,13317370 +g1,4993:12937899,13317370 +g1,4993:13269853,13317370 +h1,4993:13933761,13317370:0,0,0 +k1,4993:32583029,13317370:18649268 +g1,4993:32583029,13317370 +) +(1,4993:6630773,14002225:25952256,424439,86428 +h1,4993:6630773,14002225:0,0,0 +g1,4993:7626635,14002225 +g1,4993:9286405,14002225 +g1,4993:9618359,14002225 +g1,4993:9950313,14002225 +g1,4993:10282267,14002225 +g1,4993:10946175,14002225 +g1,4993:11278129,14002225 +g1,4993:11610083,14002225 +g1,4993:12605945,14002225 +g1,4993:12937899,14002225 +g1,4993:13269853,14002225 +h1,4993:13933761,14002225:0,0,0 +k1,4993:32583029,14002225:18649268 +g1,4993:32583029,14002225 +) +(1,4995:6630773,14818152:25952256,424439,86428 +(1,4994:6630773,14818152:0,0,0 +g1,4994:6630773,14818152 +g1,4994:6630773,14818152 +g1,4994:6303093,14818152 +(1,4994:6303093,14818152:0,0,0 +) +g1,4994:6630773,14818152 +) +k1,4995:6630773,14818152:0 +g1,4995:10946175,14818152 +g1,4995:12605945,14818152 +g1,4995:13269853,14818152 +h1,4995:13933761,14818152:0,0,0 +k1,4995:32583029,14818152:18649268 +g1,4995:32583029,14818152 +) +(1,5002:6630773,15634079:25952256,424439,86428 +(1,4997:6630773,15634079:0,0,0 +g1,4997:6630773,15634079 +g1,4997:6630773,15634079 +g1,4997:6303093,15634079 +(1,4997:6303093,15634079:0,0,0 +) +g1,4997:6630773,15634079 +) +g1,5002:7626635,15634079 +g1,5002:7958589,15634079 +g1,5002:8290543,15634079 +g1,5002:8622497,15634079 +g1,5002:8954451,15634079 +g1,5002:9286405,15634079 +g1,5002:10946175,15634079 +g1,5002:12605945,15634079 +g1,5002:14265715,15634079 +g1,5002:15925485,15634079 +k1,5002:15925485,15634079:0 +h1,5002:17253301,15634079:0,0,0 +k1,5002:32583029,15634079:15329728 +g1,5002:32583029,15634079 +) +(1,5002:6630773,16318934:25952256,424439,86428 +h1,5002:6630773,16318934:0,0,0 +g1,5002:7626635,16318934 +g1,5002:9286405,16318934 +g1,5002:9618359,16318934 +g1,5002:9950313,16318934 +g1,5002:10282267,16318934 +g1,5002:10946175,16318934 +g1,5002:11278129,16318934 +g1,5002:11610083,16318934 +g1,5002:11942037,16318934 +g1,5002:12605945,16318934 +g1,5002:12937899,16318934 +g1,5002:13269853,16318934 +g1,5002:13601807,16318934 +g1,5002:14265715,16318934 +g1,5002:14597669,16318934 +g1,5002:14929623,16318934 +g1,5002:15925485,16318934 +g1,5002:16257439,16318934 +g1,5002:16589393,16318934 +h1,5002:17253301,16318934:0,0,0 +k1,5002:32583029,16318934:15329728 +g1,5002:32583029,16318934 +) +(1,5002:6630773,17003789:25952256,424439,86428 +h1,5002:6630773,17003789:0,0,0 +g1,5002:7626635,17003789 +g1,5002:9286405,17003789 +g1,5002:9618359,17003789 +g1,5002:9950313,17003789 +g1,5002:10282267,17003789 +g1,5002:10946175,17003789 +g1,5002:11278129,17003789 +g1,5002:11610083,17003789 +g1,5002:11942037,17003789 +g1,5002:12605945,17003789 +g1,5002:12937899,17003789 +g1,5002:13269853,17003789 +g1,5002:13601807,17003789 +g1,5002:14265715,17003789 +g1,5002:14597669,17003789 +g1,5002:14929623,17003789 +g1,5002:15925485,17003789 +g1,5002:16257439,17003789 +g1,5002:16589393,17003789 +h1,5002:17253301,17003789:0,0,0 +k1,5002:32583029,17003789:15329728 +g1,5002:32583029,17003789 +) +(1,5002:6630773,17688644:25952256,424439,86428 +h1,5002:6630773,17688644:0,0,0 +g1,5002:7626635,17688644 +g1,5002:9286405,17688644 +g1,5002:9618359,17688644 +g1,5002:9950313,17688644 +g1,5002:10282267,17688644 +g1,5002:10946175,17688644 +g1,5002:11278129,17688644 +g1,5002:11610083,17688644 +g1,5002:11942037,17688644 +g1,5002:12605945,17688644 +g1,5002:12937899,17688644 +g1,5002:13269853,17688644 +g1,5002:13601807,17688644 +g1,5002:14265715,17688644 +g1,5002:14597669,17688644 +g1,5002:14929623,17688644 +g1,5002:15925485,17688644 +g1,5002:16257439,17688644 +g1,5002:16589393,17688644 +h1,5002:17253301,17688644:0,0,0 +k1,5002:32583029,17688644:15329728 +g1,5002:32583029,17688644 +) +] +) +g1,5003:32583029,17775072 +g1,5003:6630773,17775072 +g1,5003:6630773,17775072 +g1,5003:32583029,17775072 +g1,5003:32583029,17775072 +) +h1,5003:6630773,17971680:0,0,0 +(1,5007:6630773,18836760:25952256,505283,126483 +h1,5006:6630773,18836760:983040,0,0 +k1,5006:9585967,18836760:188919 +k1,5006:10130746,18836760:188919 +k1,5006:12406987,18836760:188919 +k1,5006:13127403,18836760:188919 +k1,5006:15666443,18836760:188919 +k1,5006:16471400,18836760:188919 +k1,5006:17075152,18836760:188909 +k1,5006:18283156,18836760:188919 +k1,5006:19675971,18836760:188919 +k1,5006:21056335,18836760:188919 +k1,5006:23628143,18836760:188919 +k1,5006:26243860,18836760:188919 +k1,5006:27424339,18836760:188919 +k1,5006:30565655,18836760:188919 +k1,5006:31563944,18836760:188919 +k1,5006:32583029,18836760:0 +) +(1,5007:6630773,19701840:25952256,513147,134348 +k1,5006:7878251,19701840:173343 +k1,5006:9243038,19701840:173342 +k1,5006:10488550,19701840:173343 +k1,5006:13420303,19701840:173343 +k1,5006:14209683,19701840:173342 +k1,5006:15402111,19701840:173343 +k1,5006:17228927,19701840:173343 +k1,5006:18640244,19701840:173342 +k1,5006:19499749,19701840:173343 +k1,5006:21053280,19701840:173343 +k1,5006:23182873,19701840:173343 +k1,5006:24103981,19701840:173342 +k1,5006:25790550,19701840:173343 +k1,5006:26615321,19701840:173343 +k1,5006:28992639,19701840:173342 +k1,5006:31048831,19701840:173343 +k1,5006:32583029,19701840:0 +) +(1,5007:6630773,20566920:25952256,505283,7863 +g1,5006:8021447,20566920 +k1,5007:32583028,20566920:21674720 +g1,5007:32583028,20566920 +) +(1,5009:6630773,21432000:25952256,513147,102891 +h1,5008:6630773,21432000:983040,0,0 +k1,5008:9625332,21432000:228284 +k1,5008:10209475,21432000:228283 +k1,5008:12415636,21432000:228284 +k1,5008:13175417,21432000:228284 +k1,5008:16564501,21432000:228283 +k1,5008:17444213,21432000:228284 +k1,5008:18028357,21432000:228284 +k1,5008:20517632,21432000:228283 +k1,5008:21664731,21432000:228284 +k1,5008:24158595,21432000:228284 +k1,5008:24918375,21432000:228283 +k1,5008:25798087,21432000:228284 +k1,5008:28480694,21432000:228284 +k1,5008:29728062,21432000:228283 +k1,5008:31966991,21432000:228284 +k1,5008:32583029,21432000:0 +) +(1,5009:6630773,22297080:25952256,513147,134348 +k1,5008:7813143,22297080:163285 +k1,5008:9954306,22297080:163286 +k1,5008:10769019,22297080:163285 +k1,5008:11951389,22297080:163285 +k1,5008:14201997,22297080:163286 +k1,5008:16843854,22297080:163285 +k1,5008:18574760,22297080:163285 +k1,5008:19757130,22297080:163285 +k1,5008:22596251,22297080:163286 +k1,5008:25316095,22297080:163285 +k1,5008:26670825,22297080:163285 +k1,5008:28844100,22297080:163286 +k1,5008:30026470,22297080:163285 +k1,5008:32583029,22297080:0 +) +(1,5009:6630773,23162160:25952256,513147,126483 +k1,5008:8566332,23162160:184437 +k1,5008:10318390,23162160:184437 +k1,5008:11521912,23162160:184437 +k1,5008:12952188,23162160:184437 +k1,5008:14741602,23162160:184437 +k1,5008:15945124,23162160:184437 +k1,5008:17435693,23162160:184436 +k1,5008:20003019,23162160:184437 +k1,5008:20718953,23162160:184437 +k1,5008:22685969,23162160:184437 +k1,5008:23889491,23162160:184437 +k1,5008:26519076,23162160:184437 +k1,5008:29811886,23162160:184437 +k1,5008:31563944,23162160:184437 +k1,5008:32583029,23162160:0 +) +(1,5009:6630773,24027240:25952256,513147,134348 +k1,5008:7938175,24027240:235233 +k1,5008:8832700,24027240:235233 +k1,5008:10087018,24027240:235233 +k1,5008:11706372,24027240:235234 +k1,5008:14498164,24027240:235233 +k1,5008:15419559,24027240:235233 +k1,5008:16759074,24027240:235233 +k1,5008:17742073,24027240:235233 +k1,5008:19417132,24027240:235233 +k1,5008:21681360,24027240:235233 +k1,5008:23297437,24027240:235233 +k1,5008:25271997,24027240:235234 +k1,5008:26611512,24027240:235233 +k1,5008:27594511,24027240:235233 +k1,5008:30491161,24027240:235233 +k1,5008:31412556,24027240:235233 +k1,5008:32583029,24027240:0 +) +(1,5009:6630773,24892320:25952256,505283,134348 +g1,5008:7962464,24892320 +g1,5008:10834907,24892320 +g1,5008:11650174,24892320 +g1,5008:12868488,24892320 +g1,5008:16718072,24892320 +k1,5009:32583029,24892320:13822855 +g1,5009:32583029,24892320 +) +v1,5011:6630773,25757400:0,393216,0 +(1,5041:6630773,36550895:25952256,11186711,0 +g1,5041:6630773,36550895 +g1,5041:6237557,36550895 +r1,5071:6368629,36550895:131072,11186711,0 +g1,5041:6567858,36550895 +g1,5041:6764466,36550895 +[1,5041:6764466,36550895:25818563,11186711,0 +(1,5012:6764466,26029877:25818563,665693,196608 +(1,5011:6764466,26029877:0,665693,196608 +r1,5071:8010564,26029877:1246098,862301,196608 +k1,5011:6764466,26029877:-1246098 +) +(1,5011:6764466,26029877:1246098,665693,196608 +) +k1,5011:8205732,26029877:195168 +k1,5011:9931950,26029877:327680 +k1,5011:12070916,26029877:195168 +k1,5011:12882122,26029877:195168 +k1,5011:14096375,26029877:195168 +k1,5011:15679596,26029877:195168 +k1,5011:17372917,26029877:195168 +k1,5011:18515735,26029877:195167 +k1,5011:19729988,26029877:195168 +(1,5011:19729988,26029877:0,452978,115847 +r1,5071:21846813,26029877:2116825,568825,115847 +k1,5011:19729988,26029877:-2116825 +) +(1,5011:19729988,26029877:2116825,452978,115847 +k1,5011:19729988,26029877:3277 +h1,5011:21843536,26029877:0,411205,112570 +) +k1,5011:22041981,26029877:195168 +k1,5011:25943865,26029877:195168 +k1,5011:27469414,26029877:195168 +k1,5011:28316010,26029877:195168 +k1,5011:29603663,26029877:195168 +k1,5011:30817916,26029877:195168 +(1,5011:30817916,26029877:0,452978,115847 +r1,5071:32583029,26029877:1765113,568825,115847 +k1,5011:30817916,26029877:-1765113 +) +(1,5011:30817916,26029877:1765113,452978,115847 +k1,5011:30817916,26029877:3277 +h1,5011:32579752,26029877:0,411205,112570 +) +k1,5011:32583029,26029877:0 +) +(1,5012:6764466,26894957:25818563,513147,126483 +k1,5011:10259313,26894957:214115 +k1,5011:11124857,26894957:214116 +k1,5011:12792561,26894957:214115 +k1,5011:14025761,26894957:214115 +k1,5011:16505456,26894957:214115 +k1,5011:18458898,26894957:214116 +k1,5011:19289051,26894957:214115 +k1,5011:21388637,26894957:214115 +k1,5011:22621838,26894957:214116 +k1,5011:25705119,26894957:214115 +k1,5011:26578526,26894957:214115 +k1,5011:27811726,26894957:214115 +k1,5011:30003719,26894957:214116 +k1,5011:31209394,26894957:214115 +k1,5012:32583029,26894957:0 +) +(1,5012:6764466,27760037:25818563,513147,7863 +g1,5011:8678117,27760037 +g1,5011:9528774,27760037 +g1,5011:12441194,27760037 +g1,5011:13831868,27760037 +g1,5011:15565295,27760037 +g1,5011:16423816,27760037 +g1,5011:17642130,27760037 +g1,5011:19124554,27760037 +k1,5012:32583029,27760037:11197483 +g1,5012:32583029,27760037 +) +v1,5014:6764466,28444892:0,393216,0 +(1,5018:6764466,28778969:25818563,727293,196608 +g1,5018:6764466,28778969 +g1,5018:6764466,28778969 +g1,5018:6567858,28778969 +(1,5018:6567858,28778969:0,727293,196608 +r1,5071:32779637,28778969:26211779,923901,196608 +k1,5018:6567857,28778969:-26211780 +) +(1,5018:6567858,28778969:26211779,727293,196608 +[1,5018:6764466,28778969:25818563,530685,0 +(1,5016:6764466,28672723:25818563,424439,106246 +(1,5015:6764466,28672723:0,0,0 +g1,5015:6764466,28672723 +g1,5015:6764466,28672723 +g1,5015:6436786,28672723 +(1,5015:6436786,28672723:0,0,0 +) +g1,5015:6764466,28672723 +) +k1,5016:6764466,28672723:0 +h1,5016:10747913,28672723:0,0,0 +k1,5016:32583029,28672723:21835116 +g1,5016:32583029,28672723 +) +] +) +g1,5018:32583029,28778969 +g1,5018:6764466,28778969 +g1,5018:6764466,28778969 +g1,5018:32583029,28778969 +g1,5018:32583029,28778969 +) +h1,5018:6764466,28975577:0,0,0 +(1,5022:6764466,29840657:25818563,513147,134348 +h1,5021:6764466,29840657:983040,0,0 +k1,5021:9782500,29840657:260279 +k1,5021:11213251,29840657:260278 +k1,5021:12465090,29840657:260279 +k1,5021:15102359,29840657:260278 +k1,5021:15975400,29840657:260279 +k1,5021:17254764,29840657:260279 +k1,5021:18903095,29840657:260278 +k1,5021:20835197,29840657:260279 +k1,5021:22381292,29840657:260279 +k1,5021:25372455,29840657:260278 +k1,5021:26651819,29840657:260279 +k1,5021:29177677,29840657:260278 +k1,5021:31923737,29840657:260279 +k1,5021:32583029,29840657:0 +) +(1,5022:6764466,30705737:25818563,505283,7863 +g1,5021:9676886,30705737 +g1,5021:11067560,30705737 +k1,5022:32583028,30705737:19807600 +g1,5022:32583028,30705737 +) +v1,5024:6764466,31390592:0,393216,0 +(1,5028:6764466,31698245:25818563,700869,196608 +g1,5028:6764466,31698245 +g1,5028:6764466,31698245 +g1,5028:6567858,31698245 +(1,5028:6567858,31698245:0,700869,196608 +r1,5071:32779637,31698245:26211779,897477,196608 +k1,5028:6567857,31698245:-26211780 +) +(1,5028:6567858,31698245:26211779,700869,196608 +[1,5028:6764466,31698245:25818563,504261,0 +(1,5026:6764466,31618423:25818563,424439,79822 +(1,5025:6764466,31618423:0,0,0 +g1,5025:6764466,31618423 +g1,5025:6764466,31618423 +g1,5025:6436786,31618423 +(1,5025:6436786,31618423:0,0,0 +) +g1,5025:6764466,31618423 +) +k1,5026:6764466,31618423:0 +h1,5026:10747914,31618423:0,0,0 +k1,5026:32583030,31618423:21835116 +g1,5026:32583030,31618423 +) +] +) +g1,5028:32583029,31698245 +g1,5028:6764466,31698245 +g1,5028:6764466,31698245 +g1,5028:32583029,31698245 +g1,5028:32583029,31698245 +) +h1,5028:6764466,31894853:0,0,0 +(1,5032:6764466,32759933:25818563,513147,134348 +h1,5031:6764466,32759933:983040,0,0 +k1,5031:9203669,32759933:132991 +k1,5031:9988088,32759933:132991 +k1,5031:11609403,32759933:132992 +k1,5031:13967997,32759933:132991 +k1,5031:14456848,32759933:132991 +k1,5031:16359966,32759933:132991 +k1,5031:17152249,32759933:132991 +k1,5031:18615622,32759933:132992 +k1,5031:19400041,32759933:132991 +k1,5031:22355012,32759933:132991 +k1,5031:24094946,32759933:132991 +k1,5031:25419383,32759933:132992 +k1,5031:28122696,32759933:132991 +k1,5031:31464985,32759933:132991 +k1,5031:32583029,32759933:0 +) +(1,5032:6764466,33625013:25818563,505283,134348 +k1,5031:7995396,33625013:211845 +k1,5031:9703428,33625013:211845 +k1,5031:11783704,33625013:211845 +k1,5031:13186994,33625013:211845 +k1,5031:15114572,33625013:211845 +k1,5031:16707261,33625013:211845 +k1,5031:18089579,33625013:211845 +k1,5031:21966197,33625013:211845 +k1,5031:24063513,33625013:211845 +k1,5031:26951848,33625013:211845 +k1,5031:27695190,33625013:211845 +k1,5031:29645050,33625013:211845 +k1,5031:32583029,33625013:0 +) +(1,5032:6764466,34490093:25818563,513147,134348 +k1,5031:8958829,34490093:152917 +k1,5031:12167034,34490093:152917 +k1,5031:13339037,34490093:152918 +k1,5031:16851985,34490093:152917 +k1,5031:19434977,34490093:152917 +k1,5031:20045991,34490093:152917 +k1,5031:21390354,34490093:152918 +k1,5031:23812127,34490093:152917 +k1,5031:25513660,34490093:152917 +k1,5031:26685662,34490093:152917 +k1,5031:29617307,34490093:152918 +k1,5031:31450567,34490093:152917 +k1,5031:32583029,34490093:0 +) +(1,5032:6764466,35355173:25818563,513147,126483 +g1,5031:7885131,35355173 +g1,5031:11819257,35355173 +g1,5031:14778862,35355173 +g1,5031:16436922,35355173 +g1,5031:20089243,35355173 +g1,5031:20939900,35355173 +g1,5031:22158214,35355173 +g1,5031:24037786,35355173 +g1,5031:26725417,35355173 +k1,5032:32583029,35355173:2905215 +g1,5032:32583029,35355173 +) +v1,5034:6764466,36040028:0,393216,0 +(1,5038:6764466,36354287:25818563,707475,196608 +g1,5038:6764466,36354287 +g1,5038:6764466,36354287 +g1,5038:6567858,36354287 +(1,5038:6567858,36354287:0,707475,196608 +r1,5071:32779637,36354287:26211779,904083,196608 +k1,5038:6567857,36354287:-26211780 +) +(1,5038:6567858,36354287:26211779,707475,196608 +[1,5038:6764466,36354287:25818563,510867,0 +(1,5036:6764466,36267859:25818563,424439,86428 +(1,5035:6764466,36267859:0,0,0 +g1,5035:6764466,36267859 +g1,5035:6764466,36267859 +g1,5035:6436786,36267859 +(1,5035:6436786,36267859:0,0,0 +) +g1,5035:6764466,36267859 +) +k1,5036:6764466,36267859:0 +g1,5036:11079868,36267859 +g1,5036:12739638,36267859 +g1,5036:13403546,36267859 +h1,5036:14067454,36267859:0,0,0 +k1,5036:32583030,36267859:18515576 +g1,5036:32583030,36267859 +) +] +) +g1,5038:32583029,36354287 +g1,5038:6764466,36354287 +g1,5038:6764466,36354287 +g1,5038:32583029,36354287 +g1,5038:32583029,36354287 +) +h1,5038:6764466,36550895:0,0,0 +] +g1,5041:32583029,36550895 +) +h1,5041:6630773,36550895:0,0,0 +(1,5044:6630773,37415975:25952256,513147,134348 +h1,5043:6630773,37415975:983040,0,0 +k1,5043:11781575,37415975:175964 +k1,5043:12616831,37415975:175964 +k1,5043:15526302,37415975:175964 +k1,5043:16893711,37415975:175964 +k1,5043:19049518,37415975:175964 +k1,5043:19756979,37415975:175964 +k1,5043:23213675,37415975:175964 +k1,5043:24783590,37415975:175964 +k1,5043:26244060,37415975:175964 +k1,5043:27933250,37415975:175964 +k1,5043:29056865,37415975:175964 +k1,5043:31714677,37415975:175964 +k1,5043:32583029,37415975:0 +) +(1,5044:6630773,38281055:25952256,513147,134348 +k1,5043:8169278,38281055:162904 +k1,5043:9862447,38281055:162903 +k1,5043:10676779,38281055:162904 +k1,5043:12992541,38281055:162904 +k1,5043:13926147,38281055:162903 +k1,5043:16828456,38281055:162904 +k1,5043:19142906,38281055:162903 +k1,5043:19988695,38281055:162904 +k1,5043:21764440,38281055:162904 +k1,5043:22283203,38281055:162903 +k1,5043:24214924,38281055:162904 +k1,5043:26339321,38281055:162904 +k1,5043:27449875,38281055:162903 +k1,5043:29064401,38281055:162904 +k1,5043:32583029,38281055:0 +) +(1,5044:6630773,39146135:25952256,513147,134348 +k1,5043:7360617,39146135:242256 +k1,5043:9690238,39146135:242299 +k1,5043:11033542,39146135:242299 +k1,5043:12448280,39146135:242299 +k1,5043:16539507,39146135:242298 +k1,5043:17506634,39146135:242299 +k1,5043:18400361,39146135:242299 +k1,5043:20673621,39146135:242299 +k1,5043:21686623,39146135:242299 +k1,5043:24467787,39146135:242299 +k1,5043:25392971,39146135:242299 +k1,5043:27527950,39146135:242299 +k1,5043:28429541,39146135:242299 +k1,5043:31714677,39146135:242299 +k1,5043:32583029,39146135:0 +) +(1,5044:6630773,40011215:25952256,513147,102891 +g1,5043:7922487,40011215 +g1,5043:9294155,40011215 +g1,5043:11916250,40011215 +g1,5043:13312166,40011215 +g1,5043:14817528,40011215 +g1,5043:16765913,40011215 +g1,5043:18645485,40011215 +g1,5043:20995606,40011215 +g1,5043:22902703,40011215 +g1,5043:24293377,40011215 +g1,5043:25511691,40011215 +g1,5043:27952251,40011215 +g1,5043:29481861,40011215 +k1,5044:32583029,40011215:214307 +g1,5044:32583029,40011215 +) +v1,5046:6630773,40696070:0,393216,0 +(1,5071:6630773,45250531:25952256,4947677,196608 +g1,5071:6630773,45250531 +g1,5071:6630773,45250531 +g1,5071:6434165,45250531 +(1,5071:6434165,45250531:0,4947677,196608 +r1,5071:32779637,45250531:26345472,5144285,196608 +k1,5071:6434165,45250531:-26345472 +) +(1,5071:6434165,45250531:26345472,4947677,196608 +[1,5071:6630773,45250531:25952256,4751069,0 +(1,5048:6630773,40923901:25952256,424439,86428 +(1,5047:6630773,40923901:0,0,0 +g1,5047:6630773,40923901 +g1,5047:6630773,40923901 +g1,5047:6303093,40923901 +(1,5047:6303093,40923901:0,0,0 +) +g1,5047:6630773,40923901 +) +g1,5048:8290543,40923901 +g1,5048:9286405,40923901 +g1,5048:13601807,40923901 +g1,5048:15261577,40923901 +g1,5048:15925485,40923901 +h1,5048:16589393,40923901:0,0,0 +k1,5048:32583029,40923901:15993636 +g1,5048:32583029,40923901 +) +(1,5049:6630773,41608756:25952256,407923,6605 +h1,5049:6630773,41608756:0,0,0 +h1,5049:7958589,41608756:0,0,0 +k1,5049:32583029,41608756:24624440 +g1,5049:32583029,41608756 +) +(1,5058:6630773,42424683:25952256,424439,86428 +(1,5051:6630773,42424683:0,0,0 +g1,5051:6630773,42424683 +g1,5051:6630773,42424683 +g1,5051:6303093,42424683 +(1,5051:6303093,42424683:0,0,0 +) +g1,5051:6630773,42424683 +) +g1,5058:7626635,42424683 +g1,5058:7958589,42424683 +g1,5058:8290543,42424683 +g1,5058:8622497,42424683 +g1,5058:8954451,42424683 +g1,5058:9286405,42424683 +g1,5058:10946175,42424683 +g1,5058:12605945,42424683 +g1,5058:14265715,42424683 +k1,5058:14265715,42424683:0 +h1,5058:15593531,42424683:0,0,0 +k1,5058:32583029,42424683:16989498 +g1,5058:32583029,42424683 +) +(1,5058:6630773,43109538:25952256,424439,86428 +h1,5058:6630773,43109538:0,0,0 +g1,5058:7626635,43109538 +g1,5058:9286405,43109538 +g1,5058:9618359,43109538 +g1,5058:9950313,43109538 +g1,5058:10282267,43109538 +g1,5058:10946175,43109538 +g1,5058:11278129,43109538 +g1,5058:11610083,43109538 +g1,5058:11942037,43109538 +g1,5058:12605945,43109538 +g1,5058:12937899,43109538 +g1,5058:13269853,43109538 +g1,5058:14265715,43109538 +g1,5058:14597669,43109538 +g1,5058:14929623,43109538 +h1,5058:15593531,43109538:0,0,0 +k1,5058:32583029,43109538:16989498 +g1,5058:32583029,43109538 +) +(1,5058:6630773,43794393:25952256,424439,86428 +h1,5058:6630773,43794393:0,0,0 +g1,5058:7626635,43794393 +g1,5058:9286405,43794393 +g1,5058:9618359,43794393 +g1,5058:9950313,43794393 +g1,5058:10282267,43794393 +g1,5058:10946175,43794393 +g1,5058:11278129,43794393 +g1,5058:11610083,43794393 +g1,5058:11942037,43794393 +g1,5058:12605945,43794393 +g1,5058:12937899,43794393 +g1,5058:13269853,43794393 +g1,5058:14265715,43794393 +g1,5058:14597669,43794393 +g1,5058:14929623,43794393 +h1,5058:15593531,43794393:0,0,0 +k1,5058:32583029,43794393:16989498 +g1,5058:32583029,43794393 +) +(1,5058:6630773,44479248:25952256,424439,86428 +h1,5058:6630773,44479248:0,0,0 +g1,5058:7626635,44479248 +g1,5058:9286405,44479248 +g1,5058:9618359,44479248 +g1,5058:9950313,44479248 +g1,5058:10282267,44479248 +g1,5058:10946175,44479248 +g1,5058:11278129,44479248 +g1,5058:11610083,44479248 +g1,5058:11942037,44479248 +g1,5058:12605945,44479248 +g1,5058:12937899,44479248 +g1,5058:13269853,44479248 +g1,5058:14265715,44479248 +g1,5058:14597669,44479248 +g1,5058:14929623,44479248 +h1,5058:15593531,44479248:0,0,0 +k1,5058:32583029,44479248:16989498 +g1,5058:32583029,44479248 +) +(1,5058:6630773,45164103:25952256,424439,86428 +h1,5058:6630773,45164103:0,0,0 +g1,5058:7626635,45164103 +g1,5058:9286405,45164103 +g1,5058:9618359,45164103 +g1,5058:9950313,45164103 +g1,5058:10282267,45164103 +g1,5058:10946175,45164103 +g1,5058:11278129,45164103 +g1,5058:11610083,45164103 +g1,5058:11942037,45164103 +g1,5058:12605945,45164103 +g1,5058:12937899,45164103 +g1,5058:13269853,45164103 +g1,5058:14265715,45164103 +g1,5058:14597669,45164103 +g1,5058:14929623,45164103 +h1,5058:15593531,45164103:0,0,0 +k1,5058:32583029,45164103:16989498 +g1,5058:32583029,45164103 +) +] +) +g1,5071:32583029,45250531 +g1,5071:6630773,45250531 +g1,5071:6630773,45250531 +g1,5071:32583029,45250531 +g1,5071:32583029,45250531 +) +] +(1,5071:32583029,45706769:0,0,0 +g1,5071:32583029,45706769 +) +) +] +(1,5071:6630773,47279633:25952256,0,0 +h1,5071:6630773,47279633:25952256,0,0 +) +] +(1,5071:4262630,4025873:0,0,0 +[1,5071:-473656,4025873:0,0,0 +(1,5071:-473656,-710413:0,0,0 +(1,5071:-473656,-710413:0,0,0 +g1,5071:-473656,-710413 +) +g1,5071:-473656,-710413 +) +] +) +] +!30193 +}85 +Input:792:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!104 +{86 +[1,5179:4262630,47279633:28320399,43253760,0 +(1,5179:4262630,4025873:0,0,0 +[1,5179:-473656,4025873:0,0,0 +(1,5179:-473656,-710413:0,0,0 +(1,5179:-473656,-644877:0,0,0 +k1,5179:-473656,-644877:-65536 ) -(1,5950:-473656,4736287:0,0,0 -k1,5950:-473656,4736287:5209943 +(1,5179:-473656,4736287:0,0,0 +k1,5179:-473656,4736287:5209943 ) -g1,5950:-473656,-710413 +g1,5179:-473656,-710413 ) ] ) -[1,5950:6630773,47279633:25952256,43253760,0 -[1,5950:6630773,4812305:25952256,786432,0 -(1,5950:6630773,4812305:25952256,505283,11795 -(1,5950:6630773,4812305:25952256,505283,11795 -g1,5950:3078558,4812305 -[1,5950:3078558,4812305:0,0,0 -(1,5950:3078558,2439708:0,1703936,0 -k1,5950:1358238,2439708:-1720320 -(1,651:1358238,2439708:1720320,1703936,0 -(1,651:1358238,2439708:1179648,16384,0 -r1,5950:2537886,2439708:1179648,16384,0 +[1,5179:6630773,47279633:25952256,43253760,0 +[1,5179:6630773,4812305:25952256,786432,0 +(1,5179:6630773,4812305:25952256,505283,126483 +(1,5179:6630773,4812305:25952256,505283,126483 +g1,5179:3078558,4812305 +[1,5179:3078558,4812305:0,0,0 +(1,5179:3078558,2439708:0,1703936,0 +k1,5179:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,5179:2537886,2439708:1179648,16384,0 ) -g1,651:3062174,2439708 -(1,651:3062174,2439708:16384,1703936,0 -[1,651:3062174,2439708:25952256,1703936,0 -(1,651:3062174,1915420:25952256,1179648,0 -(1,651:3062174,1915420:16384,1179648,0 -r1,5950:3078558,1915420:16384,1179648,0 +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,5179:3078558,1915420:16384,1179648,0 ) -k1,651:29014430,1915420:25935872 -g1,651:29014430,1915420 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) ] ) ) ) ] -[1,5950:3078558,4812305:0,0,0 -(1,5950:3078558,2439708:0,1703936,0 -g1,5950:29030814,2439708 -g1,5950:36135244,2439708 -(1,651:36135244,2439708:1720320,1703936,0 -(1,651:36135244,2439708:16384,1703936,0 -[1,651:36135244,2439708:25952256,1703936,0 -(1,651:36135244,1915420:25952256,1179648,0 -(1,651:36135244,1915420:16384,1179648,0 -r1,5950:36151628,1915420:16384,1179648,0 +[1,5179:3078558,4812305:0,0,0 +(1,5179:3078558,2439708:0,1703936,0 +g1,5179:29030814,2439708 +g1,5179:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,5179:36151628,1915420:16384,1179648,0 ) -k1,651:62087500,1915420:25935872 -g1,651:62087500,1915420 +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) ] ) -g1,651:36675916,2439708 -(1,651:36675916,2439708:1179648,16384,0 -r1,5950:37855564,2439708:1179648,16384,0 +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,5179:37855564,2439708:1179648,16384,0 ) ) -k1,5950:3078556,2439708:-34777008 +k1,5179:3078556,2439708:-34777008 ) ] -[1,5950:3078558,4812305:0,0,0 -(1,5950:3078558,49800853:0,16384,2228224 -k1,5950:1358238,49800853:-1720320 -(1,651:1358238,49800853:1720320,16384,2228224 -(1,651:1358238,49800853:1179648,16384,0 -r1,5950:2537886,49800853:1179648,16384,0 +[1,5179:3078558,4812305:0,0,0 +(1,5179:3078558,49800853:0,16384,2228224 +k1,5179:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,5179:2537886,49800853:1179648,16384,0 ) -g1,651:3062174,49800853 -(1,651:3062174,52029077:16384,1703936,0 -[1,651:3062174,52029077:25952256,1703936,0 -(1,651:3062174,51504789:25952256,1179648,0 -(1,651:3062174,51504789:16384,1179648,0 -r1,5950:3078558,51504789:16384,1179648,0 +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,5179:3078558,51504789:16384,1179648,0 ) -k1,651:29014430,51504789:25935872 -g1,651:29014430,51504789 +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) ] ) ) ) ] -[1,5950:3078558,4812305:0,0,0 -(1,5950:3078558,49800853:0,16384,2228224 -g1,5950:29030814,49800853 -g1,5950:36135244,49800853 -(1,651:36135244,49800853:1720320,16384,2228224 -(1,651:36135244,52029077:16384,1703936,0 -[1,651:36135244,52029077:25952256,1703936,0 -(1,651:36135244,51504789:25952256,1179648,0 -(1,651:36135244,51504789:16384,1179648,0 -r1,5950:36151628,51504789:16384,1179648,0 +[1,5179:3078558,4812305:0,0,0 +(1,5179:3078558,49800853:0,16384,2228224 +g1,5179:29030814,49800853 +g1,5179:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,5179:36151628,51504789:16384,1179648,0 ) -k1,651:62087500,51504789:25935872 -g1,651:62087500,51504789 +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 ) ] ) -g1,651:36675916,49800853 -(1,651:36675916,49800853:1179648,16384,0 -r1,5950:37855564,49800853:1179648,16384,0 +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,5179:37855564,49800853:1179648,16384,0 ) ) -k1,5950:3078556,49800853:-34777008 +k1,5179:3078556,49800853:-34777008 ) ] -g1,5950:6630773,4812305 -k1,5950:22348274,4812305:14920583 -g1,5950:23970945,4812305 -g1,5950:24793421,4812305 -g1,5950:27528893,4812305 -g1,5950:28938572,4812305 +g1,5179:6630773,4812305 +g1,5179:6630773,4812305 +g1,5179:9472414,4812305 +g1,5179:10882093,4812305 +g1,5179:16529985,4812305 +g1,5179:18796220,4812305 +k1,5179:31786111,4812305:12989891 ) ) ] -[1,5950:6630773,45706769:25952256,40108032,0 -(1,5950:6630773,45706769:25952256,40108032,0 -(1,5950:6630773,45706769:0,0,0 -g1,5950:6630773,45706769 +[1,5179:6630773,45706769:25952256,40108032,0 +(1,5179:6630773,45706769:25952256,40108032,0 +(1,5179:6630773,45706769:0,0,0 +g1,5179:6630773,45706769 ) -[1,5950:6630773,45706769:25952256,40108032,0 -(1,5936:6630773,6254097:25952256,32768,229376 -(1,5936:6630773,6254097:0,32768,229376 -(1,5936:6630773,6254097:5505024,32768,229376 -r1,5950:12135797,6254097:5505024,262144,229376 +[1,5179:6630773,45706769:25952256,40108032,0 +v1,5071:6630773,6254097:0,393216,0 +(1,5071:6630773,9825458:25952256,3964577,196608 +g1,5071:6630773,9825458 +g1,5071:6630773,9825458 +g1,5071:6434165,9825458 +(1,5071:6434165,9825458:0,3964577,196608 +r1,5179:32779637,9825458:26345472,4161185,196608 +k1,5071:6434165,9825458:-26345472 ) -k1,5936:6630773,6254097:-5505024 +(1,5071:6434165,9825458:26345472,3964577,196608 +[1,5071:6630773,9825458:25952256,3767969,0 +(1,5058:6630773,6481928:25952256,424439,86428 +h1,5058:6630773,6481928:0,0,0 +g1,5058:7626635,6481928 +g1,5058:9286405,6481928 +g1,5058:9618359,6481928 +g1,5058:9950313,6481928 +g1,5058:10282267,6481928 +g1,5058:10946175,6481928 +g1,5058:11278129,6481928 +g1,5058:11610083,6481928 +g1,5058:12605945,6481928 +g1,5058:12937899,6481928 +g1,5058:13269853,6481928 +g1,5058:14265715,6481928 +g1,5058:14597669,6481928 +g1,5058:14929623,6481928 +h1,5058:15593531,6481928:0,0,0 +k1,5058:32583029,6481928:16989498 +g1,5058:32583029,6481928 +) +(1,5060:6630773,7297855:25952256,424439,86428 +(1,5059:6630773,7297855:0,0,0 +g1,5059:6630773,7297855 +g1,5059:6630773,7297855 +g1,5059:6303093,7297855 +(1,5059:6303093,7297855:0,0,0 +) +g1,5059:6630773,7297855 +) +k1,5060:6630773,7297855:0 +g1,5060:9286405,7297855 +h1,5060:9950313,7297855:0,0,0 +k1,5060:32583029,7297855:22632716 +g1,5060:32583029,7297855 +) +(1,5064:6630773,8113782:25952256,424439,79822 +(1,5062:6630773,8113782:0,0,0 +g1,5062:6630773,8113782 +g1,5062:6630773,8113782 +g1,5062:6303093,8113782 +(1,5062:6303093,8113782:0,0,0 +) +g1,5062:6630773,8113782 +) +g1,5064:7626635,8113782 +g1,5064:8954451,8113782 +h1,5064:9286405,8113782:0,0,0 +k1,5064:32583029,8113782:23296624 +g1,5064:32583029,8113782 +) +(1,5066:6630773,8929709:25952256,424439,86428 +(1,5065:6630773,8929709:0,0,0 +g1,5065:6630773,8929709 +g1,5065:6630773,8929709 +g1,5065:6303093,8929709 +(1,5065:6303093,8929709:0,0,0 +) +g1,5065:6630773,8929709 +) +k1,5066:6630773,8929709:0 +g1,5066:9286405,8929709 +h1,5066:9950313,8929709:0,0,0 +k1,5066:32583029,8929709:22632716 +g1,5066:32583029,8929709 +) +(1,5070:6630773,9745636:25952256,424439,79822 +(1,5068:6630773,9745636:0,0,0 +g1,5068:6630773,9745636 +g1,5068:6630773,9745636 +g1,5068:6303093,9745636 +(1,5068:6303093,9745636:0,0,0 +) +g1,5068:6630773,9745636 +) +g1,5070:7626635,9745636 +g1,5070:8954451,9745636 +h1,5070:9286405,9745636:0,0,0 +k1,5070:32583029,9745636:23296624 +g1,5070:32583029,9745636 +) +] +) +g1,5071:32583029,9825458 +g1,5071:6630773,9825458 +g1,5071:6630773,9825458 +g1,5071:32583029,9825458 +g1,5071:32583029,9825458 +) +h1,5071:6630773,10022066:0,0,0 +(1,5075:6630773,10887146:25952256,513147,134348 +h1,5074:6630773,10887146:983040,0,0 +k1,5074:10337545,10887146:274652 +k1,5074:13218564,10887146:274652 +k1,5074:14152508,10887146:274652 +k1,5074:15757541,10887146:274652 +k1,5074:18771598,10887146:274652 +k1,5074:19705542,10887146:274652 +k1,5074:22288372,10887146:274652 +k1,5074:24489782,10887146:274652 +k1,5074:25380473,10887146:274653 +k1,5074:26069892,10887146:274576 +k1,5074:27576621,10887146:274652 +k1,5074:30129960,10887146:274652 +h1,5074:31499007,10887146:0,0,0 +k1,5074:31773659,10887146:274652 +k1,5074:32583029,10887146:0 +) +(1,5075:6630773,11752226:25952256,505283,134348 +k1,5074:8360836,11752226:231910 +h1,5074:9157754,11752226:0,0,0 +k1,5074:9770428,11752226:231910 +k1,5074:10955887,11752226:231910 +k1,5074:12320259,11752226:231910 +k1,5074:13882550,11752226:231910 +k1,5074:15878034,11752226:231910 +k1,5074:17129029,11752226:231910 +k1,5074:19014412,11752226:231910 +k1,5074:20832293,11752226:231910 +k1,5074:21680241,11752226:231910 +k1,5074:23084590,11752226:231910 +k1,5074:26991759,11752226:231910 +k1,5074:27875097,11752226:231910 +k1,5074:30310983,11752226:231910 +k1,5074:31734338,11752226:231910 +k1,5075:32583029,11752226:0 +) +(1,5075:6630773,12617306:25952256,513147,134348 +k1,5074:8557313,12617306:263892 +k1,5074:11005519,12617306:263891 +k1,5074:12466098,12617306:263892 +k1,5074:14036122,12617306:263891 +k1,5074:14982899,12617306:263892 +k1,5074:17922625,12617306:263891 +k1,5074:20925922,12617306:263892 +k1,5074:23167690,12617306:263891 +k1,5074:27395199,12617306:263892 +k1,5074:28310518,12617306:263891 +k1,5074:30108608,12617306:263892 +k1,5074:31563944,12617306:263891 +k1,5074:32583029,12617306:0 +) +(1,5075:6630773,13482386:25952256,513147,134348 +k1,5074:9057421,13482386:185317 +k1,5074:10399448,13482386:185317 +k1,5074:11236192,13482386:185316 +k1,5074:14308370,13482386:185317 +k1,5074:15218515,13482386:185317 +k1,5074:15818661,13482386:185303 +k1,5074:17426764,13482386:185316 +k1,5074:17967941,13482386:185317 +k1,5074:21206580,13482386:185317 +k1,5074:24921666,13482386:185317 +k1,5074:26054633,13482386:185316 +k1,5074:29153025,13482386:185317 +k1,5074:31753999,13482386:185317 +k1,5075:32583029,13482386:0 +) +(1,5075:6630773,14347466:25952256,505283,134348 +k1,5074:8933545,14347466:179405 +k1,5074:11421127,14347466:179404 +k1,5074:12592092,14347466:179405 +k1,5074:16361559,14347466:179405 +k1,5074:17227125,14347466:179404 +k1,5074:20134794,14347466:179405 +k1,5074:22478853,14347466:179405 +k1,5074:23435514,14347466:179404 +k1,5074:25128801,14347466:179405 +k1,5074:26499651,14347466:179405 +k1,5074:28843709,14347466:179404 +k1,5074:29800371,14347466:179405 +k1,5074:32583029,14347466:0 +) +(1,5075:6630773,15212546:25952256,505283,126483 +k1,5075:32583028,15212546:21982084 +g1,5075:32583028,15212546 +) +v1,5077:6630773,15897401:0,393216,0 +(1,5122:6630773,33142973:25952256,17638788,196608 +g1,5122:6630773,33142973 +g1,5122:6630773,33142973 +g1,5122:6434165,33142973 +(1,5122:6434165,33142973:0,17638788,196608 +r1,5179:32779637,33142973:26345472,17835396,196608 +k1,5122:6434165,33142973:-26345472 +) +(1,5122:6434165,33142973:26345472,17638788,196608 +[1,5122:6630773,33142973:25952256,17442180,0 +(1,5079:6630773,16125232:25952256,424439,86428 +(1,5078:6630773,16125232:0,0,0 +g1,5078:6630773,16125232 +g1,5078:6630773,16125232 +g1,5078:6303093,16125232 +(1,5078:6303093,16125232:0,0,0 +) +g1,5078:6630773,16125232 +) +k1,5079:6630773,16125232:0 +g1,5079:9286405,16125232 +h1,5079:9618359,16125232:0,0,0 +k1,5079:32583029,16125232:22964670 +g1,5079:32583029,16125232 +) +(1,5083:6630773,16941159:25952256,424439,79822 +(1,5081:6630773,16941159:0,0,0 +g1,5081:6630773,16941159 +g1,5081:6630773,16941159 +g1,5081:6303093,16941159 +(1,5081:6303093,16941159:0,0,0 +) +g1,5081:6630773,16941159 +) +g1,5083:7626635,16941159 +g1,5083:8954451,16941159 +g1,5083:9286405,16941159 +g1,5083:9950313,16941159 +g1,5083:10282267,16941159 +g1,5083:10946175,16941159 +g1,5083:11942037,16941159 +h1,5083:12605945,16941159:0,0,0 +k1,5083:32583029,16941159:19977084 +g1,5083:32583029,16941159 +) +(1,5085:6630773,17757086:25952256,424439,86428 +(1,5084:6630773,17757086:0,0,0 +g1,5084:6630773,17757086 +g1,5084:6630773,17757086 +g1,5084:6303093,17757086 +(1,5084:6303093,17757086:0,0,0 +) +g1,5084:6630773,17757086 +) +g1,5085:8622497,17757086 +g1,5085:9286405,17757086 +h1,5085:9950313,17757086:0,0,0 +k1,5085:32583029,17757086:22632716 +g1,5085:32583029,17757086 +) +(1,5089:6630773,18573013:25952256,424439,79822 +(1,5087:6630773,18573013:0,0,0 +g1,5087:6630773,18573013 +g1,5087:6630773,18573013 +g1,5087:6303093,18573013 +(1,5087:6303093,18573013:0,0,0 +) +g1,5087:6630773,18573013 +) +g1,5089:7626635,18573013 +g1,5089:8954451,18573013 +g1,5089:9618359,18573013 +g1,5089:10282267,18573013 +g1,5089:10946175,18573013 +g1,5089:11610083,18573013 +h1,5089:11942037,18573013:0,0,0 +k1,5089:32583029,18573013:20640992 +g1,5089:32583029,18573013 +) +(1,5091:6630773,19388940:25952256,424439,86428 +(1,5090:6630773,19388940:0,0,0 +g1,5090:6630773,19388940 +g1,5090:6630773,19388940 +g1,5090:6303093,19388940 +(1,5090:6303093,19388940:0,0,0 +) +g1,5090:6630773,19388940 +) +k1,5091:6630773,19388940:0 +g1,5091:9950313,19388940 +k1,5091:9950313,19388940:0 +h1,5091:12273991,19388940:0,0,0 +k1,5091:32583029,19388940:20309038 +g1,5091:32583029,19388940 +) +(1,5097:6630773,20204867:25952256,424439,86428 +(1,5093:6630773,20204867:0,0,0 +g1,5093:6630773,20204867 +g1,5093:6630773,20204867 +g1,5093:6303093,20204867 +(1,5093:6303093,20204867:0,0,0 +) +g1,5093:6630773,20204867 +) +g1,5097:7626635,20204867 +g1,5097:7958589,20204867 +g1,5097:8290543,20204867 +g1,5097:8622497,20204867 +g1,5097:8954451,20204867 +g1,5097:9286405,20204867 +g1,5097:10946175,20204867 +k1,5097:10946175,20204867:0 +h1,5097:12273991,20204867:0,0,0 +k1,5097:32583029,20204867:20309038 +g1,5097:32583029,20204867 +) +(1,5097:6630773,20889722:25952256,424439,86428 +h1,5097:6630773,20889722:0,0,0 +g1,5097:7626635,20889722 +g1,5097:9286405,20889722 +g1,5097:9618359,20889722 +g1,5097:9950313,20889722 +g1,5097:10282267,20889722 +g1,5097:10946175,20889722 +g1,5097:11278129,20889722 +g1,5097:11610083,20889722 +h1,5097:12273991,20889722:0,0,0 +k1,5097:32583029,20889722:20309038 +g1,5097:32583029,20889722 +) +(1,5097:6630773,21574577:25952256,424439,86428 +h1,5097:6630773,21574577:0,0,0 +g1,5097:7626635,21574577 +g1,5097:9286405,21574577 +g1,5097:9618359,21574577 +g1,5097:9950313,21574577 +g1,5097:10282267,21574577 +g1,5097:10946175,21574577 +g1,5097:11278129,21574577 +g1,5097:11610083,21574577 +h1,5097:12273991,21574577:0,0,0 +k1,5097:32583029,21574577:20309038 +g1,5097:32583029,21574577 +) +(1,5099:6630773,22390504:25952256,424439,86428 +(1,5098:6630773,22390504:0,0,0 +g1,5098:6630773,22390504 +g1,5098:6630773,22390504 +g1,5098:6303093,22390504 +(1,5098:6303093,22390504:0,0,0 +) +g1,5098:6630773,22390504 +) +k1,5099:6630773,22390504:0 +g1,5099:9286405,22390504 +g1,5099:10282267,22390504 +g1,5099:11278129,22390504 +h1,5099:11942037,22390504:0,0,0 +k1,5099:32583029,22390504:20640992 +g1,5099:32583029,22390504 +) +(1,5100:6630773,23075359:25952256,407923,6605 +h1,5100:6630773,23075359:0,0,0 +h1,5100:7958589,23075359:0,0,0 +k1,5100:32583029,23075359:24624440 +g1,5100:32583029,23075359 +) +(1,5109:6630773,23891286:25952256,424439,86428 +(1,5102:6630773,23891286:0,0,0 +g1,5102:6630773,23891286 +g1,5102:6630773,23891286 +g1,5102:6303093,23891286 +(1,5102:6303093,23891286:0,0,0 +) +g1,5102:6630773,23891286 +) +g1,5109:7626635,23891286 +g1,5109:7958589,23891286 +g1,5109:8290543,23891286 +g1,5109:8622497,23891286 +g1,5109:8954451,23891286 +g1,5109:9286405,23891286 +g1,5109:10946175,23891286 +g1,5109:12605945,23891286 +g1,5109:14265715,23891286 +k1,5109:14265715,23891286:0 +h1,5109:15593531,23891286:0,0,0 +k1,5109:32583029,23891286:16989498 +g1,5109:32583029,23891286 +) +(1,5109:6630773,24576141:25952256,424439,86428 +h1,5109:6630773,24576141:0,0,0 +g1,5109:7626635,24576141 +g1,5109:9286405,24576141 +g1,5109:9618359,24576141 +g1,5109:9950313,24576141 +g1,5109:10282267,24576141 +g1,5109:10946175,24576141 +g1,5109:11278129,24576141 +g1,5109:11610083,24576141 +g1,5109:11942037,24576141 +g1,5109:12605945,24576141 +g1,5109:12937899,24576141 +g1,5109:13269853,24576141 +g1,5109:14265715,24576141 +g1,5109:14597669,24576141 +g1,5109:14929623,24576141 +h1,5109:15593531,24576141:0,0,0 +k1,5109:32583029,24576141:16989498 +g1,5109:32583029,24576141 +) +(1,5109:6630773,25260996:25952256,424439,86428 +h1,5109:6630773,25260996:0,0,0 +g1,5109:7626635,25260996 +g1,5109:9286405,25260996 +g1,5109:9618359,25260996 +g1,5109:9950313,25260996 +g1,5109:10282267,25260996 +g1,5109:10946175,25260996 +g1,5109:11278129,25260996 +g1,5109:11610083,25260996 +g1,5109:11942037,25260996 +g1,5109:12605945,25260996 +g1,5109:12937899,25260996 +g1,5109:13269853,25260996 +g1,5109:14265715,25260996 +g1,5109:14597669,25260996 +g1,5109:14929623,25260996 +h1,5109:15593531,25260996:0,0,0 +k1,5109:32583029,25260996:16989498 +g1,5109:32583029,25260996 +) +(1,5109:6630773,25945851:25952256,424439,86428 +h1,5109:6630773,25945851:0,0,0 +g1,5109:7626635,25945851 +g1,5109:9286405,25945851 +g1,5109:9618359,25945851 +g1,5109:9950313,25945851 +g1,5109:10282267,25945851 +g1,5109:10946175,25945851 +g1,5109:11278129,25945851 +g1,5109:11610083,25945851 +g1,5109:11942037,25945851 +g1,5109:12605945,25945851 +g1,5109:12937899,25945851 +g1,5109:13269853,25945851 +g1,5109:14265715,25945851 +g1,5109:14597669,25945851 +g1,5109:14929623,25945851 +h1,5109:15593531,25945851:0,0,0 +k1,5109:32583029,25945851:16989498 +g1,5109:32583029,25945851 +) +(1,5109:6630773,26630706:25952256,424439,86428 +h1,5109:6630773,26630706:0,0,0 +g1,5109:7626635,26630706 +g1,5109:9286405,26630706 +g1,5109:9618359,26630706 +g1,5109:9950313,26630706 +g1,5109:10282267,26630706 +g1,5109:10946175,26630706 +g1,5109:11278129,26630706 +g1,5109:11610083,26630706 +g1,5109:11942037,26630706 +g1,5109:12605945,26630706 +g1,5109:12937899,26630706 +g1,5109:13269853,26630706 +g1,5109:14265715,26630706 +g1,5109:14597669,26630706 +g1,5109:14929623,26630706 +h1,5109:15593531,26630706:0,0,0 +k1,5109:32583029,26630706:16989498 +g1,5109:32583029,26630706 +) +(1,5109:6630773,27315561:25952256,424439,86428 +h1,5109:6630773,27315561:0,0,0 +g1,5109:7626635,27315561 +g1,5109:9286405,27315561 +g1,5109:9618359,27315561 +g1,5109:9950313,27315561 +g1,5109:10282267,27315561 +g1,5109:10946175,27315561 +g1,5109:11278129,27315561 +g1,5109:11610083,27315561 +g1,5109:12605945,27315561 +g1,5109:12937899,27315561 +g1,5109:13269853,27315561 +g1,5109:14265715,27315561 +g1,5109:14597669,27315561 +g1,5109:14929623,27315561 +h1,5109:15593531,27315561:0,0,0 +k1,5109:32583029,27315561:16989498 +g1,5109:32583029,27315561 +) +(1,5111:6630773,28131488:25952256,424439,86428 +(1,5110:6630773,28131488:0,0,0 +g1,5110:6630773,28131488 +g1,5110:6630773,28131488 +g1,5110:6303093,28131488 +(1,5110:6303093,28131488:0,0,0 +) +g1,5110:6630773,28131488 +) +k1,5111:6630773,28131488:0 +g1,5111:9950313,28131488 +g1,5111:11610083,28131488 +g1,5111:12605945,28131488 +g1,5111:15925485,28131488 +h1,5111:17253301,28131488:0,0,0 +k1,5111:32583029,28131488:15329728 +g1,5111:32583029,28131488 +) +(1,5112:6630773,28816343:25952256,407923,6605 +h1,5112:6630773,28816343:0,0,0 +h1,5112:7958589,28816343:0,0,0 +k1,5112:32583029,28816343:24624440 +g1,5112:32583029,28816343 +) +(1,5121:6630773,29632270:25952256,424439,86428 +(1,5114:6630773,29632270:0,0,0 +g1,5114:6630773,29632270 +g1,5114:6630773,29632270 +g1,5114:6303093,29632270 +(1,5114:6303093,29632270:0,0,0 +) +g1,5114:6630773,29632270 +) +g1,5121:7626635,29632270 +g1,5121:7958589,29632270 +g1,5121:8290543,29632270 +g1,5121:8622497,29632270 +g1,5121:8954451,29632270 +g1,5121:9286405,29632270 +g1,5121:10946175,29632270 +g1,5121:12605945,29632270 +g1,5121:14265715,29632270 +k1,5121:14265715,29632270:0 +h1,5121:15593531,29632270:0,0,0 +k1,5121:32583029,29632270:16989498 +g1,5121:32583029,29632270 +) +(1,5121:6630773,30317125:25952256,424439,86428 +h1,5121:6630773,30317125:0,0,0 +g1,5121:7626635,30317125 +g1,5121:9286405,30317125 +g1,5121:9618359,30317125 +g1,5121:9950313,30317125 +g1,5121:10282267,30317125 +g1,5121:10946175,30317125 +g1,5121:11278129,30317125 +g1,5121:11610083,30317125 +g1,5121:11942037,30317125 +g1,5121:12605945,30317125 +g1,5121:12937899,30317125 +g1,5121:13269853,30317125 +g1,5121:14265715,30317125 +g1,5121:14597669,30317125 +g1,5121:14929623,30317125 +h1,5121:15593531,30317125:0,0,0 +k1,5121:32583029,30317125:16989498 +g1,5121:32583029,30317125 +) +(1,5121:6630773,31001980:25952256,424439,86428 +h1,5121:6630773,31001980:0,0,0 +g1,5121:7626635,31001980 +g1,5121:9286405,31001980 +g1,5121:9618359,31001980 +g1,5121:9950313,31001980 +g1,5121:10282267,31001980 +g1,5121:10946175,31001980 +g1,5121:11278129,31001980 +g1,5121:11610083,31001980 +g1,5121:11942037,31001980 +g1,5121:12605945,31001980 +g1,5121:12937899,31001980 +g1,5121:13269853,31001980 +g1,5121:14265715,31001980 +g1,5121:14597669,31001980 +g1,5121:14929623,31001980 +h1,5121:15593531,31001980:0,0,0 +k1,5121:32583029,31001980:16989498 +g1,5121:32583029,31001980 +) +(1,5121:6630773,31686835:25952256,424439,86428 +h1,5121:6630773,31686835:0,0,0 +g1,5121:7626635,31686835 +g1,5121:9286405,31686835 +g1,5121:9618359,31686835 +g1,5121:9950313,31686835 +g1,5121:10282267,31686835 +g1,5121:10946175,31686835 +g1,5121:11278129,31686835 +g1,5121:11610083,31686835 +g1,5121:11942037,31686835 +g1,5121:12605945,31686835 +g1,5121:12937899,31686835 +g1,5121:13269853,31686835 +g1,5121:14265715,31686835 +g1,5121:14597669,31686835 +g1,5121:14929623,31686835 +h1,5121:15593531,31686835:0,0,0 +k1,5121:32583029,31686835:16989498 +g1,5121:32583029,31686835 +) +(1,5121:6630773,32371690:25952256,424439,86428 +h1,5121:6630773,32371690:0,0,0 +g1,5121:7626635,32371690 +g1,5121:9286405,32371690 +g1,5121:9618359,32371690 +g1,5121:9950313,32371690 +g1,5121:10282267,32371690 +g1,5121:10946175,32371690 +g1,5121:11278129,32371690 +g1,5121:11610083,32371690 +g1,5121:11942037,32371690 +g1,5121:12605945,32371690 +g1,5121:12937899,32371690 +g1,5121:13269853,32371690 +g1,5121:14265715,32371690 +g1,5121:14597669,32371690 +g1,5121:14929623,32371690 +h1,5121:15593531,32371690:0,0,0 +k1,5121:32583029,32371690:16989498 +g1,5121:32583029,32371690 +) +(1,5121:6630773,33056545:25952256,424439,86428 +h1,5121:6630773,33056545:0,0,0 +g1,5121:7626635,33056545 +g1,5121:9286405,33056545 +g1,5121:9618359,33056545 +g1,5121:9950313,33056545 +g1,5121:10282267,33056545 +g1,5121:10946175,33056545 +g1,5121:11278129,33056545 +g1,5121:11610083,33056545 +g1,5121:12605945,33056545 +g1,5121:12937899,33056545 +g1,5121:13269853,33056545 +g1,5121:14265715,33056545 +g1,5121:14597669,33056545 +g1,5121:14929623,33056545 +h1,5121:15593531,33056545:0,0,0 +k1,5121:32583029,33056545:16989498 +g1,5121:32583029,33056545 +) +] +) +g1,5122:32583029,33142973 +g1,5122:6630773,33142973 +g1,5122:6630773,33142973 +g1,5122:32583029,33142973 +g1,5122:32583029,33142973 +) +h1,5122:6630773,33339581:0,0,0 +v1,5126:6630773,34204661:0,393216,0 +(1,5179:6630773,43516913:25952256,9705468,0 +g1,5179:6630773,43516913 +g1,5179:6237557,43516913 +r1,5179:6368629,43516913:131072,9705468,0 +g1,5179:6567858,43516913 +g1,5179:6764466,43516913 +[1,5179:6764466,43516913:25818563,9705468,0 +(1,5127:6764466,34512959:25818563,701514,196608 +(1,5126:6764466,34512959:0,701514,196608 +r1,5179:8010564,34512959:1246098,898122,196608 +k1,5126:6764466,34512959:-1246098 +) +(1,5126:6764466,34512959:1246098,701514,196608 +) +k1,5126:8218728,34512959:208164 +k1,5126:8546408,34512959:327680 +k1,5126:11163676,34512959:208165 +k1,5126:12363400,34512959:208164 +k1,5126:14984600,34512959:208164 +k1,5126:16635212,34512959:208165 +k1,5126:19750553,34512959:208164 +k1,5126:21150162,34512959:208164 +k1,5126:22119855,34512959:208165 +k1,5126:24593599,34512959:208164 +k1,5126:26499801,34512959:208164 +k1,5126:29337926,34512959:208165 +k1,5126:30565175,34512959:208164 +k1,5126:32583029,34512959:0 +) +(1,5127:6764466,35378039:25818563,513147,134348 +k1,5126:9920630,35378039:184106 +k1,5126:11672357,35378039:184106 +k1,5126:12212322,35378039:184105 +k1,5126:14483750,35378039:184106 +k1,5126:15199353,35378039:184106 +k1,5126:18560644,35378039:184106 +k1,5126:20012215,35378039:184105 +k1,5126:20552181,35378039:184106 +k1,5126:22714164,35378039:184106 +k1,5126:23659798,35378039:184106 +k1,5126:26779261,35378039:184105 +k1,5126:28120077,35378039:184106 +k1,5126:31822811,35378039:184106 +k1,5126:32583029,35378039:0 +) +(1,5127:6764466,36243119:25818563,505283,134348 +g1,5126:9391149,36243119 +(1,5126:9391149,36243119:0,452978,115847 +r1,5179:13618245,36243119:4227096,568825,115847 +k1,5126:9391149,36243119:-4227096 +) +(1,5126:9391149,36243119:4227096,452978,115847 +g1,5126:11152985,36243119 +g1,5126:11856409,36243119 +h1,5126:13614968,36243119:0,411205,112570 +) +g1,5126:13991144,36243119 +g1,5126:15058725,36243119 +g1,5126:16362236,36243119 +g1,5126:18994161,36243119 +k1,5127:32583029,36243119:12211957 +g1,5127:32583029,36243119 +) +v1,5129:6764466,36927974:0,393216,0 +(1,5142:6764466,39683408:25818563,3148650,196608 +g1,5142:6764466,39683408 +g1,5142:6764466,39683408 +g1,5142:6567858,39683408 +(1,5142:6567858,39683408:0,3148650,196608 +r1,5179:32779637,39683408:26211779,3345258,196608 +k1,5142:6567857,39683408:-26211780 +) +(1,5142:6567858,39683408:26211779,3148650,196608 +[1,5142:6764466,39683408:25818563,2952042,0 +(1,5131:6764466,37155805:25818563,424439,86428 +(1,5130:6764466,37155805:0,0,0 +g1,5130:6764466,37155805 +g1,5130:6764466,37155805 +g1,5130:6436786,37155805 +(1,5130:6436786,37155805:0,0,0 +) +g1,5130:6764466,37155805 +) +k1,5131:6764466,37155805:0 +g1,5131:12739637,37155805 +h1,5131:13403545,37155805:0,0,0 +k1,5131:32583029,37155805:19179484 +g1,5131:32583029,37155805 +) +(1,5135:6764466,37971732:25818563,424439,79822 +(1,5133:6764466,37971732:0,0,0 +g1,5133:6764466,37971732 +g1,5133:6764466,37971732 +g1,5133:6436786,37971732 +(1,5133:6436786,37971732:0,0,0 +) +g1,5133:6764466,37971732 +) +g1,5135:7760328,37971732 +g1,5135:9088144,37971732 +h1,5135:10747914,37971732:0,0,0 +k1,5135:32583030,37971732:21835116 +g1,5135:32583030,37971732 +) +(1,5137:6764466,38787659:25818563,424439,86428 +(1,5136:6764466,38787659:0,0,0 +g1,5136:6764466,38787659 +g1,5136:6764466,38787659 +g1,5136:6436786,38787659 +(1,5136:6436786,38787659:0,0,0 +) +g1,5136:6764466,38787659 +) +k1,5137:6764466,38787659:0 +g1,5137:13403545,38787659 +h1,5137:15063315,38787659:0,0,0 +k1,5137:32583029,38787659:17519714 +g1,5137:32583029,38787659 +) +(1,5141:6764466,39603586:25818563,424439,79822 +(1,5139:6764466,39603586:0,0,0 +g1,5139:6764466,39603586 +g1,5139:6764466,39603586 +g1,5139:6436786,39603586 +(1,5139:6436786,39603586:0,0,0 +) +g1,5139:6764466,39603586 +) +g1,5141:7760328,39603586 +g1,5141:9088144,39603586 +h1,5141:10415960,39603586:0,0,0 +k1,5141:32583028,39603586:22167068 +g1,5141:32583028,39603586 +) +] +) +g1,5142:32583029,39683408 +g1,5142:6764466,39683408 +g1,5142:6764466,39683408 +g1,5142:32583029,39683408 +g1,5142:32583029,39683408 +) +h1,5142:6764466,39880016:0,0,0 +v1,5146:6764466,40564871:0,393216,0 +(1,5159:6764466,43320305:25818563,3148650,196608 +g1,5159:6764466,43320305 +g1,5159:6764466,43320305 +g1,5159:6567858,43320305 +(1,5159:6567858,43320305:0,3148650,196608 +r1,5179:32779637,43320305:26211779,3345258,196608 +k1,5159:6567857,43320305:-26211780 +) +(1,5159:6567858,43320305:26211779,3148650,196608 +[1,5159:6764466,43320305:25818563,2952042,0 +(1,5148:6764466,40792702:25818563,424439,86428 +(1,5147:6764466,40792702:0,0,0 +g1,5147:6764466,40792702 +g1,5147:6764466,40792702 +g1,5147:6436786,40792702 +(1,5147:6436786,40792702:0,0,0 +) +g1,5147:6764466,40792702 ) -(1,5936:6630773,6254097:25952256,32768,0 -r1,5950:32583029,6254097:25952256,32768,0 +k1,5148:6764466,40792702:0 +g1,5148:12739637,40792702 +h1,5148:13403545,40792702:0,0,0 +k1,5148:32583029,40792702:19179484 +g1,5148:32583029,40792702 ) +(1,5152:6764466,41608629:25818563,424439,79822 +(1,5150:6764466,41608629:0,0,0 +g1,5150:6764466,41608629 +g1,5150:6764466,41608629 +g1,5150:6436786,41608629 +(1,5150:6436786,41608629:0,0,0 ) -(1,5936:6630773,7858425:25952256,606339,161218 -(1,5936:6630773,7858425:2464678,582746,14155 -g1,5936:6630773,7858425 -g1,5936:9095451,7858425 +g1,5150:6764466,41608629 ) -g1,5936:12303307,7858425 -k1,5936:32583029,7858425:17283416 -g1,5936:32583029,7858425 +g1,5152:7760328,41608629 +g1,5152:9088144,41608629 +h1,5152:10415960,41608629:0,0,0 +k1,5152:32583028,41608629:22167068 +g1,5152:32583028,41608629 ) -(1,5939:6630773,9093129:25952256,513147,134348 -k1,5937:7858919,9093129:186124 -k1,5937:10320453,9093129:186124 -k1,5937:12909127,9093129:186124 -k1,5937:13904621,9093129:186124 -k1,5937:15109830,9093129:186124 -k1,5937:17670979,9093129:186124 -k1,5937:18524259,9093129:186124 -k1,5937:19125213,9093129:186111 -k1,5937:22440681,9093129:186124 -k1,5937:23242843,9093129:186124 -k1,5937:24448052,9093129:186124 -k1,5937:26978399,9093129:186124 -k1,5937:29755817,9093129:186124 -k1,5938:30154920,9093129:186111 -k1,5938:32583029,9093129:0 +(1,5154:6764466,42424556:25818563,424439,86428 +(1,5153:6764466,42424556:0,0,0 +g1,5153:6764466,42424556 +g1,5153:6764466,42424556 +g1,5153:6436786,42424556 +(1,5153:6436786,42424556:0,0,0 ) -(1,5939:6630773,9934617:25952256,513147,134348 -k1,5938:7826196,9934617:176338 -k1,5938:9914876,9934617:176339 -k1,5938:10540791,9934617:176338 -k1,5938:15107387,9934617:176339 -k1,5938:16207783,9934617:176338 -k1,5938:17918320,9934617:176339 -k1,5938:20374656,9934617:176338 -k1,5938:22270004,9934617:176338 -k1,5938:24247272,9934617:176339 -k1,5938:25615055,9934617:176338 -k1,5938:26978906,9934617:176339 -k1,5938:28185470,9934617:176338 -k1,5938:28977847,9934617:176339 -k1,5938:29603762,9934617:176338 -k1,5939:32583029,9934617:0 +g1,5153:6764466,42424556 ) -(1,5939:6630773,10776105:25952256,513147,134348 -g1,5938:8619790,10776105 -g1,5938:9308573,10776105 -g1,5938:11030203,10776105 -g1,5938:11845470,10776105 -g1,5938:15075084,10776105 -g1,5938:18056316,10776105 -g1,5938:20386776,10776105 -g1,5938:23054746,10776105 -k1,5939:32583029,10776105:7553683 -g1,5939:32583029,10776105 +k1,5154:6764466,42424556:0 +g1,5154:13403545,42424556 +h1,5154:15063315,42424556:0,0,0 +k1,5154:32583029,42424556:17519714 +g1,5154:32583029,42424556 ) -] -(1,5950:32583029,45706769:0,0,0 -g1,5950:32583029,45706769 +(1,5158:6764466,43240483:25818563,424439,79822 +(1,5156:6764466,43240483:0,0,0 +g1,5156:6764466,43240483 +g1,5156:6764466,43240483 +g1,5156:6436786,43240483 +(1,5156:6436786,43240483:0,0,0 ) +g1,5156:6764466,43240483 ) -] -(1,5950:6630773,47279633:25952256,0,0 -h1,5950:6630773,47279633:25952256,0,0 +g1,5158:7760328,43240483 +g1,5158:9088144,43240483 +h1,5158:10747914,43240483:0,0,0 +k1,5158:32583030,43240483:21835116 +g1,5158:32583030,43240483 ) ] -(1,5950:4262630,4025873:0,0,0 -[1,5950:-473656,4025873:0,0,0 -(1,5950:-473656,-710413:0,0,0 -(1,5950:-473656,-710413:0,0,0 -g1,5950:-473656,-710413 -) -g1,5950:-473656,-710413 -) -] -) -] -!5307 -}101 -!11 -{102 -[1,5971:4262630,47279633:28320399,43253760,11795 -(1,5971:4262630,4025873:0,0,0 -[1,5971:-473656,4025873:0,0,0 -(1,5971:-473656,-710413:0,0,0 -(1,5971:-473656,-644877:0,0,0 -k1,5971:-473656,-644877:-65536 ) -(1,5971:-473656,4736287:0,0,0 -k1,5971:-473656,4736287:5209943 -) -g1,5971:-473656,-710413 +g1,5159:32583029,43320305 +g1,5159:6764466,43320305 +g1,5159:6764466,43320305 +g1,5159:32583029,43320305 +g1,5159:32583029,43320305 ) +h1,5159:6764466,43516913:0,0,0 ] -) -[1,5971:6630773,47279633:25952256,43253760,11795 -[1,5971:6630773,4812305:25952256,786432,0 -(1,5971:6630773,4812305:25952256,0,0 -(1,5971:6630773,4812305:25952256,0,0 -g1,5971:3078558,4812305 -[1,5971:3078558,4812305:0,0,0 -(1,5971:3078558,2439708:0,1703936,0 -k1,5971:1358238,2439708:-1720320 -(1,5950:1358238,2439708:1720320,1703936,0 -(1,5950:1358238,2439708:1179648,16384,0 -r1,5971:2537886,2439708:1179648,16384,0 -) -g1,5950:3062174,2439708 -(1,5950:3062174,2439708:16384,1703936,0 -[1,5950:3062174,2439708:25952256,1703936,0 -(1,5950:3062174,1915420:25952256,1179648,0 -(1,5950:3062174,1915420:16384,1179648,0 -r1,5971:3078558,1915420:16384,1179648,0 -) -k1,5950:29014430,1915420:25935872 -g1,5950:29014430,1915420 +g1,5179:32583029,43516913 ) ] +(1,5179:32583029,45706769:0,0,0 +g1,5179:32583029,45706769 ) ) +] +(1,5179:6630773,47279633:25952256,0,0 +h1,5179:6630773,47279633:25952256,0,0 ) ] -[1,5971:3078558,4812305:0,0,0 -(1,5971:3078558,2439708:0,1703936,0 -g1,5971:29030814,2439708 -g1,5971:36135244,2439708 -(1,5950:36135244,2439708:1720320,1703936,0 -(1,5950:36135244,2439708:16384,1703936,0 -[1,5950:36135244,2439708:25952256,1703936,0 -(1,5950:36135244,1915420:25952256,1179648,0 -(1,5950:36135244,1915420:16384,1179648,0 -r1,5971:36151628,1915420:16384,1179648,0 +(1,5179:4262630,4025873:0,0,0 +[1,5179:-473656,4025873:0,0,0 +(1,5179:-473656,-710413:0,0,0 +(1,5179:-473656,-710413:0,0,0 +g1,5179:-473656,-710413 ) -k1,5950:62087500,1915420:25935872 -g1,5950:62087500,1915420 +g1,5179:-473656,-710413 ) ] ) -g1,5950:36675916,2439708 -(1,5950:36675916,2439708:1179648,16384,0 -r1,5971:37855564,2439708:1179648,16384,0 +] +!26296 +}86 +Input:793:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!104 +{87 +[1,5309:4262630,47279633:28320399,43253760,0 +(1,5309:4262630,4025873:0,0,0 +[1,5309:-473656,4025873:0,0,0 +(1,5309:-473656,-710413:0,0,0 +(1,5309:-473656,-644877:0,0,0 +k1,5309:-473656,-644877:-65536 ) +(1,5309:-473656,4736287:0,0,0 +k1,5309:-473656,4736287:5209943 ) -k1,5971:3078556,2439708:-34777008 +g1,5309:-473656,-710413 ) ] -[1,5971:3078558,4812305:0,0,0 -(1,5971:3078558,49800853:0,16384,2228224 -k1,5971:1358238,49800853:-1720320 -(1,5950:1358238,49800853:1720320,16384,2228224 -(1,5950:1358238,49800853:1179648,16384,0 -r1,5971:2537886,49800853:1179648,16384,0 ) -g1,5950:3062174,49800853 -(1,5950:3062174,52029077:16384,1703936,0 -[1,5950:3062174,52029077:25952256,1703936,0 -(1,5950:3062174,51504789:25952256,1179648,0 -(1,5950:3062174,51504789:16384,1179648,0 -r1,5971:3078558,51504789:16384,1179648,0 +[1,5309:6630773,47279633:25952256,43253760,0 +[1,5309:6630773,4812305:25952256,786432,0 +(1,5309:6630773,4812305:25952256,505283,11795 +(1,5309:6630773,4812305:25952256,505283,11795 +g1,5309:3078558,4812305 +[1,5309:3078558,4812305:0,0,0 +(1,5309:3078558,2439708:0,1703936,0 +k1,5309:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,5309:2537886,2439708:1179648,16384,0 ) -k1,5950:29014430,51504789:25935872 -g1,5950:29014430,51504789 +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,5309:3078558,1915420:16384,1179648,0 +) +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) ] ) ) ) ] -[1,5971:3078558,4812305:0,0,0 -(1,5971:3078558,49800853:0,16384,2228224 -g1,5971:29030814,49800853 -g1,5971:36135244,49800853 -(1,5950:36135244,49800853:1720320,16384,2228224 -(1,5950:36135244,52029077:16384,1703936,0 -[1,5950:36135244,52029077:25952256,1703936,0 -(1,5950:36135244,51504789:25952256,1179648,0 -(1,5950:36135244,51504789:16384,1179648,0 -r1,5971:36151628,51504789:16384,1179648,0 +[1,5309:3078558,4812305:0,0,0 +(1,5309:3078558,2439708:0,1703936,0 +g1,5309:29030814,2439708 +g1,5309:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,5309:36151628,1915420:16384,1179648,0 ) -k1,5950:62087500,51504789:25935872 -g1,5950:62087500,51504789 +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) ] ) -g1,5950:36675916,49800853 -(1,5950:36675916,49800853:1179648,16384,0 -r1,5971:37855564,49800853:1179648,16384,0 +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,5309:37855564,2439708:1179648,16384,0 ) ) -k1,5971:3078556,49800853:-34777008 +k1,5309:3078556,2439708:-34777008 ) ] -g1,5971:6630773,4812305 -) -) -] -[1,5971:6630773,45706769:25952256,40108032,0 -(1,5971:6630773,45706769:25952256,40108032,0 -(1,5971:6630773,45706769:0,0,0 -g1,5971:6630773,45706769 -) -[1,5971:6630773,45706769:25952256,40108032,0 -[1,5950:6630773,11649578:25952256,6050841,0 -(1,5950:6630773,6619002:25952256,1151337,0 -h1,5950:6630773,6619002:0,0,0 -k1,5950:20096848,6619002:12486181 -k1,5950:32583029,6619002:12486181 -) -(1,5950:6630773,7318938:25952256,32768,229376 -(1,5950:6630773,7318938:0,32768,229376 -(1,5950:6630773,7318938:5505024,32768,229376 -r1,5971:12135797,7318938:5505024,262144,229376 -) -k1,5950:6630773,7318938:-5505024 -) -(1,5950:6630773,7318938:25952256,32768,0 -r1,5971:32583029,7318938:25952256,32768,0 -) -) -(1,5950:6630773,9114634:25952256,909509,21233 -h1,5950:6630773,9114634:0,0,0 -g1,5950:9551582,9114634 -g1,5950:11032040,9114634 -g1,5950:17329001,9114634 -k1,5950:27008603,9114634:5574427 -k1,5950:32583029,9114634:5574426 -) -(1,5950:6630773,9814570:25952256,32768,0 -(1,5950:6630773,9814570:5505024,32768,0 -r1,5971:12135797,9814570:5505024,32768,0 -) -k1,5950:22359413,9814570:10223616 -k1,5950:32583029,9814570:10223616 -) -] -(1,5952:6630773,14542343:25952256,131072,0 -r1,5971:32583029,14542343:25952256,131072,0 -g1,5952:32583029,14542343 -g1,5952:32583029,14542343 -) -(1,5954:6630773,15862244:25952256,513147,126483 -k1,5954:8596853,15862244:1966080 -k1,5953:9927531,15862244:133991 -k1,5953:13868509,15862244:133992 -k1,5953:15287006,15862244:133991 -k1,5953:15952494,15862244:133991 -k1,5953:18870455,15862244:133992 -k1,5953:19655874,15862244:133991 -k1,5953:20808951,15862244:133992 -k1,5953:24019202,15862244:133991 -k1,5953:26745142,15862244:133991 -k1,5953:27538426,15862244:133992 -k1,5953:28028277,15862244:133991 -k1,5953:32583029,15862244:1966080 -) -(1,5954:6630773,16703732:25952256,513147,126483 -k1,5954:8596853,16703732:1966080 -k1,5953:9726311,16703732:194915 -k1,5953:10580518,16703732:194915 -k1,5953:12208051,16703732:194915 -k1,5953:14225522,16703732:194915 -k1,5953:15439522,16703732:194915 -k1,5953:16831123,16703732:194914 -k1,5953:19029474,16703732:194915 -k1,5953:21702305,16703732:194915 -k1,5953:23181726,16703732:194915 -k1,5953:24311184,16703732:194915 -k1,5953:26391570,16703732:194915 -k1,5953:27117982,16703732:194915 -k1,5953:32583029,16703732:1966080 -) -(1,5954:6630773,17545220:25952256,513147,126483 -k1,5954:8596853,17545220:1966080 -k1,5953:11333989,17545220:164193 -k1,5953:12149610,17545220:164193 -k1,5953:13332887,17545220:164192 -k1,5953:16173570,17545220:164193 -k1,5953:16950525,17545220:164193 -k1,5953:18894676,17545220:164193 -k1,5953:20343374,17545220:164192 -k1,5953:21442110,17545220:164193 -k1,5953:23173924,17545220:164193 -k1,5953:25223588,17545220:164193 -k1,5953:25845877,17545220:164192 -k1,5953:26541567,17545220:164193 -k1,5953:29332443,17545220:164193 -k1,5953:32583029,17545220:1966080 -) -(1,5954:6630773,18386708:25952256,505283,126483 -k1,5954:8596853,18386708:1966080 -k1,5953:9823556,18386708:207618 -k1,5953:12387193,18386708:207618 -k1,5953:14767985,18386708:207618 -k1,5953:16079885,18386708:207618 -k1,5953:17035270,18386708:207619 -k1,5953:19799447,18386708:207618 -k1,5953:21203752,18386708:207618 -k1,5953:22800733,18386708:207618 -k1,5953:26049877,18386708:207618 -k1,5953:27028198,18386708:207618 -k1,5953:32583029,18386708:1966080 -) -(1,5954:6630773,19228196:25952256,513147,126483 -g1,5954:8596853,19228196 -g1,5953:9455374,19228196 -k1,5954:30616949,19228196:18490328 -g1,5954:32583029,19228196 -) -(1,5955:6630773,20856116:25952256,505283,7863 -k1,5955:26258149,20856116:19627376 -h1,5955:26258149,20856116:0,0,0 -g1,5955:28849442,20856116 -g1,5955:30616948,20856116 -g1,5955:32583028,20856116 -) -(1,5956:6630773,21697604:25952256,505283,134348 -k1,5956:15215991,21697604:8585218 -h1,5955:15215991,21697604:0,0,0 -g1,5955:18906323,21697604 -g1,5955:19673749,21697604 -g1,5955:21407176,21697604 -g1,5955:24820291,21697604 -g1,5955:25587717,21697604 -g1,5955:29023113,21697604 -g1,5956:30616949,21697604 -g1,5956:32583029,21697604 -) -(1,5956:6630773,22932308:25952256,131072,0 -r1,5971:32583029,22932308:25952256,131072,0 -g1,5956:32583029,22932308 -g1,5956:34549109,22932308 -) -(1,5958:6630773,25739876:25952256,32768,229376 -(1,5958:6630773,25739876:0,32768,229376 -(1,5958:6630773,25739876:5505024,32768,229376 -r1,5971:12135797,25739876:5505024,262144,229376 -) -k1,5958:6630773,25739876:-5505024 -) -(1,5958:6630773,25739876:25952256,32768,0 -r1,5971:32583029,25739876:25952256,32768,0 -) -) -(1,5958:6630773,27344204:25952256,615776,151780 -(1,5958:6630773,27344204:1974731,575668,0 -g1,5958:6630773,27344204 -g1,5958:8605504,27344204 -) -g1,5958:10904245,27344204 -g1,5958:11961996,27344204 -g1,5958:13695292,27344204 -k1,5958:32583029,27344204:15886712 -g1,5958:32583029,27344204 -) -(1,5961:6630773,28578908:25952256,513147,134348 -k1,5960:9552914,28578908:302667 -k1,5960:13897842,28578908:302667 -k1,5960:15391954,28578908:302667 -k1,5960:18042121,28578908:302667 -k1,5960:18876285,28578908:302667 -k1,5960:20335662,28578908:302667 -k1,5960:21297621,28578908:302667 -k1,5960:22619373,28578908:302667 -k1,5960:24353346,28578908:302667 -k1,5960:25307441,28578908:302667 -k1,5960:28162735,28578908:302667 -k1,5960:29854765,28578908:302667 -k1,5960:32583029,28578908:0 -) -(1,5961:6630773,29420396:25952256,513147,134348 -k1,5960:8281898,29420396:230304 -k1,5960:9163631,29420396:230305 -k1,5960:10901918,29420396:230304 -k1,5960:13812645,29420396:230304 -k1,5960:14809066,29420396:230305 -k1,5960:16058455,29420396:230304 -k1,5960:20095745,29420396:230304 -k1,5960:21610556,29420396:230305 -k1,5960:24307635,29420396:230304 -k1,5960:27392032,29420396:230304 -k1,5960:28669602,29420396:230305 -k1,5960:29666022,29420396:230304 -k1,5961:32583029,29420396:0 -) -(1,5961:6630773,30261884:25952256,513147,134348 -k1,5960:8860832,30261884:260702 -k1,5960:10689155,30261884:260702 -k1,5960:11720560,30261884:260702 -k1,5960:15590330,30261884:260702 -k1,5960:17042477,30261884:260702 -k1,5960:21926744,30261884:260702 -k1,5960:25156882,30261884:260702 -k1,5960:26911150,30261884:260702 -k1,5960:27858014,30261884:260702 -k1,5960:31593435,30261884:260702 -k1,5961:32583029,30261884:0 -) -(1,5961:6630773,31103372:25952256,505283,126483 -k1,5960:8408764,31103372:182845 -k1,5960:10801484,31103372:182846 -k1,5960:12869144,31103372:182845 -k1,5960:14248677,31103372:182846 -k1,5960:15698988,31103372:182845 -k1,5960:19163877,31103372:182846 -k1,5960:21616234,31103372:182845 -k1,5960:22330577,31103372:182846 -k1,5960:24368091,31103372:182845 -k1,5960:25360307,31103372:182846 -k1,5960:26562237,31103372:182845 -k1,5960:28070221,31103372:182846 -k1,5960:29537572,31103372:182845 -k1,5960:30076278,31103372:182846 -k1,5960:31648486,31103372:182845 -k1,5960:32583029,31103372:0 -) -(1,5961:6630773,31944860:25952256,513147,134348 -g1,5960:7361499,31944860 -g1,5960:7916588,31944860 -g1,5960:11202563,31944860 -g1,5960:12061084,31944860 -g1,5960:13649676,31944860 -k1,5961:32583029,31944860:16469855 -g1,5961:32583029,31944860 -) -(1,5963:6630773,32786348:25952256,513147,126483 -h1,5962:6630773,32786348:983040,0,0 -k1,5962:8444564,32786348:202916 -k1,5962:9850721,32786348:202916 -k1,5962:12471259,32786348:202915 -k1,5962:13844648,32786348:202916 -k1,5962:15180026,32786348:202916 -k1,5962:18813752,32786348:202916 -k1,5962:20410618,32786348:202915 -k1,5962:21943915,32786348:202916 -k1,5962:23350072,32786348:202916 -k1,5962:24657270,32786348:202916 -k1,5962:25607951,32786348:202915 -k1,5962:27388319,32786348:202916 -k1,5962:28207273,32786348:202916 -k1,5962:28998702,32786348:202916 -k1,5962:30155166,32786348:202915 -k1,5962:31490544,32786348:202916 -k1,5962:32583029,32786348:0 -) -(1,5963:6630773,33627836:25952256,513147,134348 -k1,5962:8270534,33627836:173065 -k1,5962:11021785,33627836:173065 -k1,5962:14186570,33627836:173066 -k1,5962:15011063,33627836:173065 -k1,5962:18611661,33627836:173065 -k1,5962:19803811,33627836:173065 -k1,5962:22309959,33627836:173066 -k1,5962:25778830,33627836:173065 -k1,5962:26611187,33627836:173065 -k1,5962:28173615,33627836:173065 -k1,5962:29611526,33627836:173066 -k1,5962:30976036,33627836:173065 -k1,5962:32168186,33627836:173065 -k1,5963:32583029,33627836:0 -) -(1,5963:6630773,34469324:25952256,513147,134348 -k1,5962:9082584,34469324:218999 -k1,5962:12085552,34469324:218999 -k1,5962:13252203,34469324:219000 -k1,5962:14979841,34469324:218999 -k1,5962:17546340,34469324:218999 -k1,5962:18956784,34469324:218999 -k1,5962:19531643,34469324:218999 -k1,5962:20883760,34469324:218999 -k1,5962:22752957,34469324:219000 -k1,5962:25369263,34469324:218999 -k1,5962:28579981,34469324:218999 -k1,5962:29450408,34469324:218999 -k1,5962:32583029,34469324:0 -) -(1,5963:6630773,35310812:25952256,513147,126483 -k1,5962:8413352,35310812:273940 -k1,5962:9779778,35310812:273941 -k1,5962:10669756,35310812:273940 -k1,5962:11299557,35310812:273941 -k1,5962:13223694,35310812:273940 -k1,5962:16214102,35310812:273941 -k1,5962:17899688,35310812:273940 -k1,5962:19948343,35310812:273940 -k1,5962:20838322,35310812:273941 -k1,5962:22131347,35310812:273940 -k1,5962:25159766,35310812:273941 -k1,5962:27851329,35310812:273940 -k1,5962:28993622,35310812:273941 -k1,5962:31773659,35310812:273940 -k1,5962:32583029,35310812:0 -) -(1,5963:6630773,36152300:25952256,513147,134348 -k1,5962:9045611,36152300:252805 -k1,5962:10687779,36152300:252805 -k1,5962:12656972,36152300:252805 -k1,5962:14101222,36152300:252805 -k1,5962:16817525,36152300:252805 -k1,5962:18216555,36152300:252805 -k1,5962:20951208,36152300:252805 -k1,5962:23181234,36152300:252805 -k1,5962:24381690,36152300:252805 -k1,5962:25653580,36152300:252805 -k1,5962:28253885,36152300:252805 -k1,5962:29165982,36152300:252805 -k1,5962:32583029,36152300:0 -) -(1,5963:6630773,36993788:25952256,513147,134348 -k1,5962:7548058,36993788:257993 -k1,5962:9816697,36993788:257994 -k1,5962:10733982,36993788:257993 -k1,5962:11347835,36993788:257993 -k1,5962:13300590,36993788:257994 -k1,5962:15118340,36993788:257993 -k1,5962:16522558,36993788:257993 -k1,5962:19770304,36993788:257994 -k1,5962:20644335,36993788:257993 -k1,5962:21921413,36993788:257993 -k1,5962:24585234,36993788:257994 -k1,5962:27260850,36993788:257993 -k1,5962:28387195,36993788:257993 -k1,5962:29777651,36993788:257994 -k1,5962:31773659,36993788:257993 -k1,5962:32583029,36993788:0 -) -(1,5963:6630773,37835276:25952256,513147,134348 -k1,5962:7827511,37835276:177653 -k1,5962:10352664,37835276:177653 -k1,5962:12540306,37835276:177653 -k1,5962:13073819,37835276:177653 -k1,5962:15124491,37835276:177653 -k1,5962:17261670,37835276:177653 -k1,5962:18098614,37835276:177652 -k1,5962:22948984,37835276:177653 -k1,5962:24689671,37835276:177653 -k1,5962:26360890,37835276:177653 -k1,5962:27224705,37835276:177653 -k1,5962:27758218,37835276:177653 -k1,5962:31923737,37835276:177653 -k1,5962:32583029,37835276:0 -) -(1,5963:6630773,38676764:25952256,513147,134348 -k1,5962:9201896,38676764:173161 -k1,5962:10566501,38676764:173160 -k1,5962:13714341,38676764:173161 -k1,5962:15078946,38676764:173160 -k1,5962:17872236,38676764:173161 -k1,5962:20527244,38676764:173160 -k1,5962:23125237,38676764:173161 -k1,5962:26309121,38676764:173160 -k1,5962:31154999,38676764:173161 -k1,5962:32583029,38676764:0 -) -(1,5963:6630773,39518252:25952256,473825,7863 -k1,5963:32583030,39518252:22508996 -g1,5963:32583030,39518252 -) -(1,5965:6630773,40359740:25952256,513147,134348 -h1,5964:6630773,40359740:983040,0,0 -k1,5964:8677865,40359740:246163 -k1,5964:9540067,40359740:246164 -k1,5964:10805315,40359740:246163 -k1,5964:13805956,40359740:246163 -k1,5964:16643414,40359740:246164 -k1,5964:17757929,40359740:246163 -k1,5964:19136554,40359740:246163 -k1,5964:20475202,40359740:246163 -k1,5964:23667865,40359740:246164 -k1,5964:24565456,40359740:246163 -k1,5964:27480900,40359740:246163 -k1,5964:28746149,40359740:246164 -k1,5964:31923737,40359740:246163 -k1,5964:32583029,40359740:0 -) -(1,5965:6630773,41201228:25952256,505283,134348 -k1,5965:32583029,41201228:23488758 -g1,5965:32583029,41201228 -) -] -(1,5971:32583029,45706769:0,0,0 -g1,5971:32583029,45706769 -) -) -] -(1,5971:6630773,47279633:25952256,485622,11795 -(1,5971:6630773,47279633:25952256,485622,11795 -(1,5971:6630773,47279633:0,0,0 -v1,5971:6630773,47279633:0,0,0 -) -g1,5971:6830002,47279633 -k1,5971:31786110,47279633:24956108 -) -) -] -(1,5971:4262630,4025873:0,0,0 -[1,5971:-473656,4025873:0,0,0 -(1,5971:-473656,-710413:0,0,0 -(1,5971:-473656,-710413:0,0,0 -g1,5971:-473656,-710413 -) -g1,5971:-473656,-710413 -) -] -) -] -!14894 -}102 -Input:838:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:839:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!198 -{103 -[1,5988:4262630,47279633:28320399,43253760,0 -(1,5988:4262630,4025873:0,0,0 -[1,5988:-473656,4025873:0,0,0 -(1,5988:-473656,-710413:0,0,0 -(1,5988:-473656,-644877:0,0,0 -k1,5988:-473656,-644877:-65536 +[1,5309:3078558,4812305:0,0,0 +(1,5309:3078558,49800853:0,16384,2228224 +k1,5309:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,5309:2537886,49800853:1179648,16384,0 ) -(1,5988:-473656,4736287:0,0,0 -k1,5988:-473656,4736287:5209943 +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,5309:3078558,51504789:16384,1179648,0 ) -g1,5988:-473656,-710413 +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) ] ) -[1,5988:6630773,47279633:25952256,43253760,0 -[1,5988:6630773,4812305:25952256,786432,0 -(1,5988:6630773,4812305:25952256,505283,11795 -(1,5988:6630773,4812305:25952256,505283,11795 -g1,5988:3078558,4812305 -[1,5988:3078558,4812305:0,0,0 -(1,5988:3078558,2439708:0,1703936,0 -k1,5988:1358238,2439708:-1720320 -(1,5950:1358238,2439708:1720320,1703936,0 -(1,5950:1358238,2439708:1179648,16384,0 -r1,5988:2537886,2439708:1179648,16384,0 ) -g1,5950:3062174,2439708 -(1,5950:3062174,2439708:16384,1703936,0 -[1,5950:3062174,2439708:25952256,1703936,0 -(1,5950:3062174,1915420:25952256,1179648,0 -(1,5950:3062174,1915420:16384,1179648,0 -r1,5988:3078558,1915420:16384,1179648,0 -) -k1,5950:29014430,1915420:25935872 -g1,5950:29014430,1915420 ) ] +[1,5309:3078558,4812305:0,0,0 +(1,5309:3078558,49800853:0,16384,2228224 +g1,5309:29030814,49800853 +g1,5309:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,5309:36151628,51504789:16384,1179648,0 ) -) +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 ) ] -[1,5988:3078558,4812305:0,0,0 -(1,5988:3078558,2439708:0,1703936,0 -g1,5988:29030814,2439708 -g1,5988:36135244,2439708 -(1,5950:36135244,2439708:1720320,1703936,0 -(1,5950:36135244,2439708:16384,1703936,0 -[1,5950:36135244,2439708:25952256,1703936,0 -(1,5950:36135244,1915420:25952256,1179648,0 -(1,5950:36135244,1915420:16384,1179648,0 -r1,5988:36151628,1915420:16384,1179648,0 ) -k1,5950:62087500,1915420:25935872 -g1,5950:62087500,1915420 +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,5309:37855564,49800853:1179648,16384,0 ) -] ) -g1,5950:36675916,2439708 -(1,5950:36675916,2439708:1179648,16384,0 -r1,5988:37855564,2439708:1179648,16384,0 +k1,5309:3078556,49800853:-34777008 ) +] +g1,5309:6630773,4812305 +k1,5309:22348274,4812305:14920583 +g1,5309:23970945,4812305 +g1,5309:24793421,4812305 +g1,5309:27528893,4812305 +g1,5309:28938572,4812305 ) -k1,5988:3078556,2439708:-34777008 ) ] -[1,5988:3078558,4812305:0,0,0 -(1,5988:3078558,49800853:0,16384,2228224 -k1,5988:1358238,49800853:-1720320 -(1,5950:1358238,49800853:1720320,16384,2228224 -(1,5950:1358238,49800853:1179648,16384,0 -r1,5988:2537886,49800853:1179648,16384,0 +[1,5309:6630773,45706769:25952256,40108032,0 +(1,5309:6630773,45706769:25952256,40108032,0 +(1,5309:6630773,45706769:0,0,0 +g1,5309:6630773,45706769 ) -g1,5950:3062174,49800853 -(1,5950:3062174,52029077:16384,1703936,0 -[1,5950:3062174,52029077:25952256,1703936,0 -(1,5950:3062174,51504789:25952256,1179648,0 -(1,5950:3062174,51504789:16384,1179648,0 -r1,5988:3078558,51504789:16384,1179648,0 +[1,5309:6630773,45706769:25952256,40108032,0 +v1,5179:6630773,6254097:0,393216,0 +(1,5179:6630773,9206139:25952256,3345258,0 +g1,5179:6630773,9206139 +g1,5179:6237557,9206139 +r1,5309:6368629,9206139:131072,3345258,0 +g1,5179:6567858,9206139 +g1,5179:6764466,9206139 +[1,5179:6764466,9206139:25818563,3345258,0 +v1,5163:6764466,6254097:0,393216,0 +(1,5176:6764466,9009531:25818563,3148650,196608 +g1,5176:6764466,9009531 +g1,5176:6764466,9009531 +g1,5176:6567858,9009531 +(1,5176:6567858,9009531:0,3148650,196608 +r1,5309:32779637,9009531:26211779,3345258,196608 +k1,5176:6567857,9009531:-26211780 +) +(1,5176:6567858,9009531:26211779,3148650,196608 +[1,5176:6764466,9009531:25818563,2952042,0 +(1,5165:6764466,6481928:25818563,424439,106246 +(1,5164:6764466,6481928:0,0,0 +g1,5164:6764466,6481928 +g1,5164:6764466,6481928 +g1,5164:6436786,6481928 +(1,5164:6436786,6481928:0,0,0 +) +g1,5164:6764466,6481928 +) +k1,5165:6764466,6481928:0 +g1,5165:12739637,6481928 +g1,5165:13403545,6481928 +g1,5165:15063315,6481928 +g1,5165:15727223,6481928 +h1,5165:18050901,6481928:0,0,0 +k1,5165:32583029,6481928:14532128 +g1,5165:32583029,6481928 +) +(1,5169:6764466,7297855:25818563,424439,79822 +(1,5167:6764466,7297855:0,0,0 +g1,5167:6764466,7297855 +g1,5167:6764466,7297855 +g1,5167:6436786,7297855 +(1,5167:6436786,7297855:0,0,0 +) +g1,5167:6764466,7297855 +) +g1,5169:7760328,7297855 +g1,5169:9088144,7297855 +h1,5169:10415960,7297855:0,0,0 +k1,5169:32583028,7297855:22167068 +g1,5169:32583028,7297855 +) +(1,5171:6764466,8113782:25818563,424439,106246 +(1,5170:6764466,8113782:0,0,0 +g1,5170:6764466,8113782 +g1,5170:6764466,8113782 +g1,5170:6436786,8113782 +(1,5170:6436786,8113782:0,0,0 +) +g1,5170:6764466,8113782 +) +k1,5171:6764466,8113782:0 +g1,5171:13403545,8113782 +g1,5171:15063315,8113782 +g1,5171:16723085,8113782 +g1,5171:17386993,8113782 +h1,5171:19710671,8113782:0,0,0 +k1,5171:32583029,8113782:12872358 +g1,5171:32583029,8113782 +) +(1,5175:6764466,8929709:25818563,424439,79822 +(1,5173:6764466,8929709:0,0,0 +g1,5173:6764466,8929709 +g1,5173:6764466,8929709 +g1,5173:6436786,8929709 +(1,5173:6436786,8929709:0,0,0 +) +g1,5173:6764466,8929709 +) +g1,5175:7760328,8929709 +g1,5175:9088144,8929709 +h1,5175:10415960,8929709:0,0,0 +k1,5175:32583028,8929709:22167068 +g1,5175:32583028,8929709 +) +] +) +g1,5176:32583029,9009531 +g1,5176:6764466,9009531 +g1,5176:6764466,9009531 +g1,5176:32583029,9009531 +g1,5176:32583029,9009531 +) +h1,5176:6764466,9206139:0,0,0 +] +g1,5179:32583029,9206139 +) +h1,5179:6630773,9206139:0,0,0 +(1,5182:6630773,10071219:25952256,513147,134348 +h1,5181:6630773,10071219:983040,0,0 +k1,5181:10661952,10071219:197323 +k1,5181:12005500,10071219:197323 +k1,5181:14684670,10071219:197322 +k1,5181:15986275,10071219:197323 +k1,5181:16931364,10071219:197323 +k1,5181:19903481,10071219:197323 +k1,5181:22169120,10071219:197323 +k1,5181:23650949,10071219:197323 +k1,5181:26543767,10071219:197322 +k1,5181:27427252,10071219:197323 +k1,5181:31635378,10071219:197323 +k1,5181:32583029,10071219:0 +) +(1,5182:6630773,10936299:25952256,513147,134348 +k1,5181:9120426,10936299:240457 +k1,5181:10308535,10936299:240458 +k1,5181:14194760,10936299:240457 +k1,5181:15626662,10936299:240457 +k1,5181:19255331,10936299:240458 +k1,5181:22172934,10936299:240457 +k1,5181:23517674,10936299:240458 +k1,5181:25233346,10936299:240457 +k1,5181:26677699,10936299:240457 +k1,5181:28986473,10936299:240458 +k1,5181:31436804,10936299:240457 +k1,5182:32583029,10936299:0 +) +(1,5182:6630773,11801379:25952256,355205,7863 +g1,5181:8279658,11801379 +k1,5182:32583029,11801379:22061384 +g1,5182:32583029,11801379 +) +v1,5184:6630773,12486234:0,393216,0 +(1,5232:6630773,31786371:25952256,19693353,196608 +g1,5232:6630773,31786371 +g1,5232:6630773,31786371 +g1,5232:6434165,31786371 +(1,5232:6434165,31786371:0,19693353,196608 +r1,5309:32779637,31786371:26345472,19889961,196608 +k1,5232:6434165,31786371:-26345472 +) +(1,5232:6434165,31786371:26345472,19693353,196608 +[1,5232:6630773,31786371:25952256,19496745,0 +(1,5186:6630773,12714065:25952256,424439,79822 +(1,5185:6630773,12714065:0,0,0 +g1,5185:6630773,12714065 +g1,5185:6630773,12714065 +g1,5185:6303093,12714065 +(1,5185:6303093,12714065:0,0,0 +) +g1,5185:6630773,12714065 +) +k1,5186:6630773,12714065:0 +h1,5186:11278128,12714065:0,0,0 +k1,5186:32583028,12714065:21304900 +g1,5186:32583028,12714065 +) +(1,5190:6630773,13529992:25952256,398014,8257 +(1,5188:6630773,13529992:0,0,0 +g1,5188:6630773,13529992 +g1,5188:6630773,13529992 +g1,5188:6303093,13529992 +(1,5188:6303093,13529992:0,0,0 +) +g1,5188:6630773,13529992 +) +g1,5190:7626635,13529992 +h1,5190:8954451,13529992:0,0,0 +k1,5190:32583029,13529992:23628578 +g1,5190:32583029,13529992 +) +(1,5192:6630773,14345919:25952256,424439,79822 +(1,5191:6630773,14345919:0,0,0 +g1,5191:6630773,14345919 +g1,5191:6630773,14345919 +g1,5191:6303093,14345919 +(1,5191:6303093,14345919:0,0,0 +) +g1,5191:6630773,14345919 +) +k1,5192:6630773,14345919:0 +h1,5192:11278128,14345919:0,0,0 +k1,5192:32583028,14345919:21304900 +g1,5192:32583028,14345919 +) +(1,5196:6630773,15161846:25952256,398014,8257 +(1,5194:6630773,15161846:0,0,0 +g1,5194:6630773,15161846 +g1,5194:6630773,15161846 +g1,5194:6303093,15161846 +(1,5194:6303093,15161846:0,0,0 +) +g1,5194:6630773,15161846 +) +g1,5196:7626635,15161846 +h1,5196:8954451,15161846:0,0,0 +k1,5196:32583029,15161846:23628578 +g1,5196:32583029,15161846 +) +(1,5198:6630773,15977773:25952256,424439,86428 +(1,5197:6630773,15977773:0,0,0 +g1,5197:6630773,15977773 +g1,5197:6630773,15977773 +g1,5197:6303093,15977773 +(1,5197:6303093,15977773:0,0,0 +) +g1,5197:6630773,15977773 +) +k1,5198:6630773,15977773:0 +g1,5198:11610082,15977773 +g1,5198:12605944,15977773 +g1,5198:14929622,15977773 +g1,5198:16589392,15977773 +g1,5198:18249162,15977773 +h1,5198:19576978,15977773:0,0,0 +k1,5198:32583029,15977773:13006051 +g1,5198:32583029,15977773 +) +(1,5199:6630773,16662628:25952256,407923,6605 +h1,5199:6630773,16662628:0,0,0 +h1,5199:7958589,16662628:0,0,0 +k1,5199:32583029,16662628:24624440 +g1,5199:32583029,16662628 +) +(1,5208:6630773,17478555:25952256,424439,6605 +(1,5201:6630773,17478555:0,0,0 +g1,5201:6630773,17478555 +g1,5201:6630773,17478555 +g1,5201:6303093,17478555 +(1,5201:6303093,17478555:0,0,0 +) +g1,5201:6630773,17478555 +) +g1,5208:7626635,17478555 +g1,5208:7958589,17478555 +g1,5208:8290543,17478555 +g1,5208:8622497,17478555 +g1,5208:8954451,17478555 +g1,5208:9286405,17478555 +g1,5208:9950313,17478555 +g1,5208:10282267,17478555 +g1,5208:10946175,17478555 +g1,5208:11278129,17478555 +g1,5208:11942037,17478555 +g1,5208:12273991,17478555 +h1,5208:12605945,17478555:0,0,0 +k1,5208:32583029,17478555:19977084 +g1,5208:32583029,17478555 +) +(1,5208:6630773,18163410:25952256,424439,86428 +h1,5208:6630773,18163410:0,0,0 +g1,5208:7626635,18163410 +g1,5208:9286405,18163410 +g1,5208:9950313,18163410 +g1,5208:10282267,18163410 +g1,5208:10946175,18163410 +g1,5208:11942037,18163410 +h1,5208:12605945,18163410:0,0,0 +k1,5208:32583029,18163410:19977084 +g1,5208:32583029,18163410 +) +(1,5208:6630773,18848265:25952256,424439,86428 +h1,5208:6630773,18848265:0,0,0 +g1,5208:7626635,18848265 +g1,5208:9286405,18848265 +g1,5208:9950313,18848265 +g1,5208:10282267,18848265 +g1,5208:10946175,18848265 +g1,5208:11942037,18848265 +h1,5208:12605945,18848265:0,0,0 +k1,5208:32583029,18848265:19977084 +g1,5208:32583029,18848265 +) +(1,5208:6630773,19533120:25952256,424439,86428 +h1,5208:6630773,19533120:0,0,0 +g1,5208:7626635,19533120 +g1,5208:9286405,19533120 +g1,5208:9950313,19533120 +g1,5208:10282267,19533120 +g1,5208:10946175,19533120 +g1,5208:11942037,19533120 +h1,5208:12605945,19533120:0,0,0 +k1,5208:32583029,19533120:19977084 +g1,5208:32583029,19533120 +) +(1,5208:6630773,20217975:25952256,424439,86428 +h1,5208:6630773,20217975:0,0,0 +g1,5208:7626635,20217975 +g1,5208:9286405,20217975 +g1,5208:9950313,20217975 +g1,5208:10282267,20217975 +g1,5208:10946175,20217975 +g1,5208:11942037,20217975 +h1,5208:12605945,20217975:0,0,0 +k1,5208:32583029,20217975:19977084 +g1,5208:32583029,20217975 +) +(1,5208:6630773,20902830:25952256,424439,86428 +h1,5208:6630773,20902830:0,0,0 +g1,5208:7626635,20902830 +g1,5208:9286405,20902830 +g1,5208:9950313,20902830 +g1,5208:10946175,20902830 +g1,5208:11942037,20902830 +h1,5208:12605945,20902830:0,0,0 +k1,5208:32583029,20902830:19977084 +g1,5208:32583029,20902830 +) +(1,5210:6630773,21718757:25952256,424439,86428 +(1,5209:6630773,21718757:0,0,0 +g1,5209:6630773,21718757 +g1,5209:6630773,21718757 +g1,5209:6303093,21718757 +(1,5209:6303093,21718757:0,0,0 +) +g1,5209:6630773,21718757 +) +g1,5210:8622497,21718757 +g1,5210:9286405,21718757 +g1,5210:11610083,21718757 +h1,5210:13269853,21718757:0,0,0 +k1,5210:32583029,21718757:19313176 +g1,5210:32583029,21718757 +) +(1,5219:6630773,22534684:25952256,424439,6605 +(1,5212:6630773,22534684:0,0,0 +g1,5212:6630773,22534684 +g1,5212:6630773,22534684 +g1,5212:6303093,22534684 +(1,5212:6303093,22534684:0,0,0 +) +g1,5212:6630773,22534684 +) +g1,5219:7626635,22534684 +g1,5219:7958589,22534684 +g1,5219:8290543,22534684 +g1,5219:8622497,22534684 +g1,5219:8954451,22534684 +g1,5219:9286405,22534684 +g1,5219:9618359,22534684 +g1,5219:10282267,22534684 +h1,5219:10614221,22534684:0,0,0 +k1,5219:32583029,22534684:21968808 +g1,5219:32583029,22534684 +) +(1,5219:6630773,23219539:25952256,424439,86428 +h1,5219:6630773,23219539:0,0,0 +g1,5219:7626635,23219539 +g1,5219:9286405,23219539 +g1,5219:9618359,23219539 +g1,5219:10282267,23219539 +h1,5219:10614221,23219539:0,0,0 +k1,5219:32583029,23219539:21968808 +g1,5219:32583029,23219539 +) +(1,5219:6630773,23904394:25952256,424439,86428 +h1,5219:6630773,23904394:0,0,0 +g1,5219:7626635,23904394 +g1,5219:9286405,23904394 +g1,5219:9618359,23904394 +g1,5219:10282267,23904394 +h1,5219:10614221,23904394:0,0,0 +k1,5219:32583029,23904394:21968808 +g1,5219:32583029,23904394 +) +(1,5219:6630773,24589249:25952256,424439,86428 +h1,5219:6630773,24589249:0,0,0 +g1,5219:7626635,24589249 +g1,5219:9286405,24589249 +g1,5219:9618359,24589249 +g1,5219:10282267,24589249 +h1,5219:10614221,24589249:0,0,0 +k1,5219:32583029,24589249:21968808 +g1,5219:32583029,24589249 +) +(1,5219:6630773,25274104:25952256,424439,86428 +h1,5219:6630773,25274104:0,0,0 +g1,5219:7626635,25274104 +g1,5219:9286405,25274104 +g1,5219:9618359,25274104 +g1,5219:10282267,25274104 +h1,5219:10614221,25274104:0,0,0 +k1,5219:32583029,25274104:21968808 +g1,5219:32583029,25274104 +) +(1,5219:6630773,25958959:25952256,424439,86428 +h1,5219:6630773,25958959:0,0,0 +g1,5219:7626635,25958959 +g1,5219:9286405,25958959 +g1,5219:10282267,25958959 +h1,5219:10614221,25958959:0,0,0 +k1,5219:32583029,25958959:21968808 +g1,5219:32583029,25958959 +) +(1,5221:6630773,26774886:25952256,424439,79822 +(1,5220:6630773,26774886:0,0,0 +g1,5220:6630773,26774886 +g1,5220:6630773,26774886 +g1,5220:6303093,26774886 +(1,5220:6303093,26774886:0,0,0 +) +g1,5220:6630773,26774886 +) +k1,5221:6630773,26774886:0 +g1,5221:11610082,26774886 +g1,5221:12605944,26774886 +k1,5221:12605944,26774886:0 +h1,5221:13933760,26774886:0,0,0 +k1,5221:32583028,26774886:18649268 +g1,5221:32583028,26774886 +) +(1,5222:6630773,27459741:25952256,407923,6605 +h1,5222:6630773,27459741:0,0,0 +h1,5222:7958589,27459741:0,0,0 +k1,5222:32583029,27459741:24624440 +g1,5222:32583029,27459741 +) +(1,5231:6630773,28275668:25952256,424439,86428 +(1,5224:6630773,28275668:0,0,0 +g1,5224:6630773,28275668 +g1,5224:6630773,28275668 +g1,5224:6303093,28275668 +(1,5224:6303093,28275668:0,0,0 +) +g1,5224:6630773,28275668 +) +g1,5231:7626635,28275668 +g1,5231:7958589,28275668 +g1,5231:8290543,28275668 +g1,5231:8622497,28275668 +g1,5231:8954451,28275668 +g1,5231:9286405,28275668 +g1,5231:10946175,28275668 +g1,5231:12605945,28275668 +g1,5231:14265715,28275668 +k1,5231:14265715,28275668:0 +h1,5231:15593531,28275668:0,0,0 +k1,5231:32583029,28275668:16989498 +g1,5231:32583029,28275668 +) +(1,5231:6630773,28960523:25952256,424439,86428 +h1,5231:6630773,28960523:0,0,0 +g1,5231:7626635,28960523 +g1,5231:9286405,28960523 +g1,5231:9618359,28960523 +g1,5231:9950313,28960523 +g1,5231:10282267,28960523 +g1,5231:10946175,28960523 +g1,5231:11278129,28960523 +g1,5231:11610083,28960523 +g1,5231:11942037,28960523 +g1,5231:12605945,28960523 +g1,5231:12937899,28960523 +g1,5231:13269853,28960523 +g1,5231:14265715,28960523 +g1,5231:14597669,28960523 +g1,5231:14929623,28960523 +h1,5231:15593531,28960523:0,0,0 +k1,5231:32583029,28960523:16989498 +g1,5231:32583029,28960523 +) +(1,5231:6630773,29645378:25952256,424439,86428 +h1,5231:6630773,29645378:0,0,0 +g1,5231:7626635,29645378 +g1,5231:9286405,29645378 +g1,5231:9618359,29645378 +g1,5231:9950313,29645378 +g1,5231:10282267,29645378 +g1,5231:10946175,29645378 +g1,5231:11278129,29645378 +g1,5231:11610083,29645378 +g1,5231:11942037,29645378 +g1,5231:12605945,29645378 +g1,5231:12937899,29645378 +g1,5231:13269853,29645378 +g1,5231:14265715,29645378 +g1,5231:14597669,29645378 +g1,5231:14929623,29645378 +h1,5231:15593531,29645378:0,0,0 +k1,5231:32583029,29645378:16989498 +g1,5231:32583029,29645378 +) +(1,5231:6630773,30330233:25952256,424439,86428 +h1,5231:6630773,30330233:0,0,0 +g1,5231:7626635,30330233 +g1,5231:9286405,30330233 +g1,5231:9618359,30330233 +g1,5231:9950313,30330233 +g1,5231:10282267,30330233 +g1,5231:10946175,30330233 +g1,5231:11278129,30330233 +g1,5231:11610083,30330233 +g1,5231:11942037,30330233 +g1,5231:12605945,30330233 +g1,5231:12937899,30330233 +g1,5231:13269853,30330233 +g1,5231:14265715,30330233 +g1,5231:14597669,30330233 +g1,5231:14929623,30330233 +h1,5231:15593531,30330233:0,0,0 +k1,5231:32583029,30330233:16989498 +g1,5231:32583029,30330233 +) +(1,5231:6630773,31015088:25952256,424439,86428 +h1,5231:6630773,31015088:0,0,0 +g1,5231:7626635,31015088 +g1,5231:9286405,31015088 +g1,5231:9618359,31015088 +g1,5231:9950313,31015088 +g1,5231:10282267,31015088 +g1,5231:10946175,31015088 +g1,5231:11278129,31015088 +g1,5231:11610083,31015088 +g1,5231:11942037,31015088 +g1,5231:12605945,31015088 +g1,5231:12937899,31015088 +g1,5231:13269853,31015088 +g1,5231:14265715,31015088 +g1,5231:14597669,31015088 +g1,5231:14929623,31015088 +h1,5231:15593531,31015088:0,0,0 +k1,5231:32583029,31015088:16989498 +g1,5231:32583029,31015088 +) +(1,5231:6630773,31699943:25952256,424439,86428 +h1,5231:6630773,31699943:0,0,0 +g1,5231:7626635,31699943 +g1,5231:9286405,31699943 +g1,5231:9618359,31699943 +g1,5231:9950313,31699943 +g1,5231:10282267,31699943 +g1,5231:10946175,31699943 +g1,5231:11278129,31699943 +g1,5231:11610083,31699943 +g1,5231:12605945,31699943 +g1,5231:12937899,31699943 +g1,5231:13269853,31699943 +g1,5231:14265715,31699943 +g1,5231:14597669,31699943 +g1,5231:14929623,31699943 +h1,5231:15593531,31699943:0,0,0 +k1,5231:32583029,31699943:16989498 +g1,5231:32583029,31699943 +) +] +) +g1,5232:32583029,31786371 +g1,5232:6630773,31786371 +g1,5232:6630773,31786371 +g1,5232:32583029,31786371 +g1,5232:32583029,31786371 +) +h1,5232:6630773,31982979:0,0,0 +v1,5236:6630773,32848059:0,393216,0 +(1,5309:6630773,45218399:25952256,12763556,0 +g1,5309:6630773,45218399 +g1,5309:6237557,45218399 +r1,5309:6368629,45218399:131072,12763556,0 +g1,5309:6567858,45218399 +g1,5309:6764466,45218399 +[1,5309:6764466,45218399:25818563,12763556,0 +(1,5237:6764466,33209236:25818563,754393,260573 +(1,5236:6764466,33209236:0,754393,260573 +r1,5309:8010564,33209236:1246098,1014966,260573 +k1,5236:6764466,33209236:-1246098 +) +(1,5236:6764466,33209236:1246098,754393,260573 +) +g1,5236:8209793,33209236 +g1,5236:8537473,33209236 +g1,5236:11413848,33209236 +g1,5236:12717359,33209236 +g1,5236:13664354,33209236 +g1,5236:16380821,33209236 +g1,5236:17266212,33209236 +g1,5236:19947289,33209236 +g1,5236:22606740,33209236 +g1,5236:25926793,33209236 +g1,5236:26896725,33209236 +g1,5236:28702897,33209236 +g1,5236:29585011,33209236 +k1,5237:32583029,33209236:254026 +g1,5237:32583029,33209236 +) +v1,5239:6764466,33894091:0,393216,0 +(1,5270:6764466,44022363:25818563,10521488,196608 +g1,5270:6764466,44022363 +g1,5270:6764466,44022363 +g1,5270:6567858,44022363 +(1,5270:6567858,44022363:0,10521488,196608 +r1,5309:32779637,44022363:26211779,10718096,196608 +k1,5270:6567857,44022363:-26211780 +) +(1,5270:6567858,44022363:26211779,10521488,196608 +[1,5270:6764466,44022363:25818563,10324880,0 +(1,5241:6764466,34121922:25818563,424439,86428 +(1,5240:6764466,34121922:0,0,0 +g1,5240:6764466,34121922 +g1,5240:6764466,34121922 +g1,5240:6436786,34121922 +(1,5240:6436786,34121922:0,0,0 +) +g1,5240:6764466,34121922 +) +g1,5241:8424236,34121922 +g1,5241:9420098,34121922 +g1,5241:13735500,34121922 +g1,5241:15395270,34121922 +g1,5241:16059178,34121922 +h1,5241:16723086,34121922:0,0,0 +k1,5241:32583029,34121922:15859943 +g1,5241:32583029,34121922 +) +(1,5242:6764466,34806777:25818563,407923,6605 +h1,5242:6764466,34806777:0,0,0 +h1,5242:8092282,34806777:0,0,0 +k1,5242:32583030,34806777:24490748 +g1,5242:32583030,34806777 +) +(1,5251:6764466,35622704:25818563,424439,86428 +(1,5244:6764466,35622704:0,0,0 +g1,5244:6764466,35622704 +g1,5244:6764466,35622704 +g1,5244:6436786,35622704 +(1,5244:6436786,35622704:0,0,0 +) +g1,5244:6764466,35622704 +) +g1,5251:7760328,35622704 +g1,5251:8092282,35622704 +g1,5251:8424236,35622704 +g1,5251:8756190,35622704 +g1,5251:9088144,35622704 +g1,5251:9420098,35622704 +g1,5251:11079868,35622704 +g1,5251:12739638,35622704 +g1,5251:14399408,35622704 +k1,5251:14399408,35622704:0 +h1,5251:15727224,35622704:0,0,0 +k1,5251:32583028,35622704:16855804 +g1,5251:32583028,35622704 +) +(1,5251:6764466,36307559:25818563,424439,86428 +h1,5251:6764466,36307559:0,0,0 +g1,5251:7760328,36307559 +g1,5251:9420098,36307559 +g1,5251:9752052,36307559 +g1,5251:10084006,36307559 +g1,5251:10415960,36307559 +g1,5251:11079868,36307559 +g1,5251:11411822,36307559 +g1,5251:11743776,36307559 +g1,5251:12075730,36307559 +g1,5251:12739638,36307559 +g1,5251:13071592,36307559 +g1,5251:13403546,36307559 +g1,5251:14399408,36307559 +g1,5251:14731362,36307559 +g1,5251:15063316,36307559 +h1,5251:15727224,36307559:0,0,0 +k1,5251:32583028,36307559:16855804 +g1,5251:32583028,36307559 +) +(1,5251:6764466,36992414:25818563,424439,86428 +h1,5251:6764466,36992414:0,0,0 +g1,5251:7760328,36992414 +g1,5251:9420098,36992414 +g1,5251:9752052,36992414 +g1,5251:10084006,36992414 +g1,5251:10415960,36992414 +g1,5251:11079868,36992414 +g1,5251:11411822,36992414 +g1,5251:11743776,36992414 +g1,5251:12075730,36992414 +g1,5251:12739638,36992414 +g1,5251:13071592,36992414 +g1,5251:13403546,36992414 +g1,5251:14399408,36992414 +g1,5251:14731362,36992414 +g1,5251:15063316,36992414 +h1,5251:15727224,36992414:0,0,0 +k1,5251:32583028,36992414:16855804 +g1,5251:32583028,36992414 +) +(1,5251:6764466,37677269:25818563,424439,86428 +h1,5251:6764466,37677269:0,0,0 +g1,5251:7760328,37677269 +g1,5251:9420098,37677269 +g1,5251:9752052,37677269 +g1,5251:10084006,37677269 +g1,5251:10415960,37677269 +g1,5251:11079868,37677269 +g1,5251:11411822,37677269 +g1,5251:11743776,37677269 +g1,5251:12075730,37677269 +g1,5251:12739638,37677269 +g1,5251:13071592,37677269 +g1,5251:13403546,37677269 +g1,5251:14399408,37677269 +g1,5251:14731362,37677269 +g1,5251:15063316,37677269 +h1,5251:15727224,37677269:0,0,0 +k1,5251:32583028,37677269:16855804 +g1,5251:32583028,37677269 +) +(1,5251:6764466,38362124:25818563,424439,86428 +h1,5251:6764466,38362124:0,0,0 +g1,5251:7760328,38362124 +g1,5251:9420098,38362124 +g1,5251:9752052,38362124 +g1,5251:10084006,38362124 +g1,5251:10415960,38362124 +g1,5251:11079868,38362124 +g1,5251:11411822,38362124 +g1,5251:11743776,38362124 +g1,5251:12075730,38362124 +g1,5251:12739638,38362124 +g1,5251:13071592,38362124 +g1,5251:13403546,38362124 +g1,5251:14399408,38362124 +g1,5251:14731362,38362124 +g1,5251:15063316,38362124 +h1,5251:15727224,38362124:0,0,0 +k1,5251:32583028,38362124:16855804 +g1,5251:32583028,38362124 +) +(1,5251:6764466,39046979:25818563,424439,86428 +h1,5251:6764466,39046979:0,0,0 +g1,5251:7760328,39046979 +g1,5251:9420098,39046979 +g1,5251:9752052,39046979 +g1,5251:10084006,39046979 +g1,5251:10415960,39046979 +g1,5251:11079868,39046979 +g1,5251:11411822,39046979 +g1,5251:11743776,39046979 +g1,5251:12739638,39046979 +g1,5251:13071592,39046979 +g1,5251:13403546,39046979 +g1,5251:14399408,39046979 +g1,5251:14731362,39046979 +g1,5251:15063316,39046979 +h1,5251:15727224,39046979:0,0,0 +k1,5251:32583028,39046979:16855804 +g1,5251:32583028,39046979 +) +(1,5253:6764466,39862906:25818563,424439,79822 +(1,5252:6764466,39862906:0,0,0 +g1,5252:6764466,39862906 +g1,5252:6764466,39862906 +g1,5252:6436786,39862906 +(1,5252:6436786,39862906:0,0,0 +) +g1,5252:6764466,39862906 +) +k1,5253:6764466,39862906:0 +h1,5253:9752052,39862906:0,0,0 +k1,5253:32583028,39862906:22830976 +g1,5253:32583028,39862906 +) +(1,5257:6764466,40678833:25818563,424439,79822 +(1,5255:6764466,40678833:0,0,0 +g1,5255:6764466,40678833 +g1,5255:6764466,40678833 +g1,5255:6436786,40678833 +(1,5255:6436786,40678833:0,0,0 +) +g1,5255:6764466,40678833 +) +g1,5257:7760328,40678833 +g1,5257:9088144,40678833 +g1,5257:9752052,40678833 +h1,5257:10084006,40678833:0,0,0 +k1,5257:32583030,40678833:22499024 +g1,5257:32583030,40678833 +) +(1,5259:6764466,41494760:25818563,424439,79822 +(1,5258:6764466,41494760:0,0,0 +g1,5258:6764466,41494760 +g1,5258:6764466,41494760 +g1,5258:6436786,41494760 +(1,5258:6436786,41494760:0,0,0 +) +g1,5258:6764466,41494760 +) +h1,5259:9420098,41494760:0,0,0 +k1,5259:32583030,41494760:23162932 +g1,5259:32583030,41494760 +) +(1,5263:6764466,42310687:25818563,424439,79822 +(1,5261:6764466,42310687:0,0,0 +g1,5261:6764466,42310687 +g1,5261:6764466,42310687 +g1,5261:6436786,42310687 +(1,5261:6436786,42310687:0,0,0 +) +g1,5261:6764466,42310687 +) +g1,5263:7760328,42310687 +g1,5263:9088144,42310687 +h1,5263:9752052,42310687:0,0,0 +k1,5263:32583028,42310687:22830976 +g1,5263:32583028,42310687 +) +(1,5265:6764466,43126614:25818563,424439,86428 +(1,5264:6764466,43126614:0,0,0 +g1,5264:6764466,43126614 +g1,5264:6764466,43126614 +g1,5264:6436786,43126614 +(1,5264:6436786,43126614:0,0,0 +) +g1,5264:6764466,43126614 +) +k1,5265:6764466,43126614:0 +g1,5265:9420098,43126614 +h1,5265:10084006,43126614:0,0,0 +k1,5265:32583030,43126614:22499024 +g1,5265:32583030,43126614 +) +(1,5269:6764466,43942541:25818563,424439,79822 +(1,5267:6764466,43942541:0,0,0 +g1,5267:6764466,43942541 +g1,5267:6764466,43942541 +g1,5267:6436786,43942541 +(1,5267:6436786,43942541:0,0,0 +) +g1,5267:6764466,43942541 +) +g1,5269:7760328,43942541 +g1,5269:9088144,43942541 +h1,5269:9752052,43942541:0,0,0 +k1,5269:32583028,43942541:22830976 +g1,5269:32583028,43942541 +) +] +) +g1,5270:32583029,44022363 +g1,5270:6764466,44022363 +g1,5270:6764466,44022363 +g1,5270:32583029,44022363 +g1,5270:32583029,44022363 ) -k1,5950:29014430,51504789:25935872 -g1,5950:29014430,51504789 +h1,5270:6764466,44218971:0,0,0 +(1,5274:6764466,45084051:25818563,505283,134348 +h1,5273:6764466,45084051:983040,0,0 +k1,5273:9199783,45084051:255590 +k1,5273:10839494,45084051:255591 +k1,5273:12591271,45084051:255590 +k1,5273:15508279,45084051:255591 +k1,5273:20127256,45084051:255590 +k1,5273:21667353,45084051:255591 +k1,5273:24662348,45084051:255590 +k1,5273:25604100,45084051:255590 +k1,5273:26215551,45084051:255591 +k1,5273:28449018,45084051:255590 +k1,5273:30098560,45084051:255591 +k1,5273:30710010,45084051:255590 +k1,5273:32583029,45084051:0 ) ] +g1,5309:32583029,45218399 ) +] +(1,5309:32583029,45706769:0,0,0 +g1,5309:32583029,45706769 ) ) ] -[1,5988:3078558,4812305:0,0,0 -(1,5988:3078558,49800853:0,16384,2228224 -g1,5988:29030814,49800853 -g1,5988:36135244,49800853 -(1,5950:36135244,49800853:1720320,16384,2228224 -(1,5950:36135244,52029077:16384,1703936,0 -[1,5950:36135244,52029077:25952256,1703936,0 -(1,5950:36135244,51504789:25952256,1179648,0 -(1,5950:36135244,51504789:16384,1179648,0 -r1,5988:36151628,51504789:16384,1179648,0 -) -k1,5950:62087500,51504789:25935872 -g1,5950:62087500,51504789 +(1,5309:6630773,47279633:25952256,0,0 +h1,5309:6630773,47279633:25952256,0,0 ) ] +(1,5309:4262630,4025873:0,0,0 +[1,5309:-473656,4025873:0,0,0 +(1,5309:-473656,-710413:0,0,0 +(1,5309:-473656,-710413:0,0,0 +g1,5309:-473656,-710413 ) -g1,5950:36675916,49800853 -(1,5950:36675916,49800853:1179648,16384,0 -r1,5988:37855564,49800853:1179648,16384,0 +g1,5309:-473656,-710413 ) +] ) -k1,5988:3078556,49800853:-34777008 -) -] -g1,5988:6630773,4812305 -k1,5988:24358919,4812305:16931228 -g1,5988:25981590,4812305 -g1,5988:26804066,4812305 -g1,5988:30302377,4812305 -) -) -] -[1,5988:6630773,45706769:25952256,40108032,0 -(1,5988:6630773,45706769:25952256,40108032,0 -(1,5988:6630773,45706769:0,0,0 -g1,5988:6630773,45706769 -) -[1,5988:6630773,45706769:25952256,40108032,0 -(1,5968:6630773,6254097:25952256,32768,229376 -(1,5968:6630773,6254097:0,32768,229376 -(1,5968:6630773,6254097:5505024,32768,229376 -r1,5988:12135797,6254097:5505024,262144,229376 -) -k1,5968:6630773,6254097:-5505024 -) -(1,5968:6630773,6254097:25952256,32768,0 -r1,5988:32583029,6254097:25952256,32768,0 -) -) -(1,5968:6630773,7858425:25952256,615776,151780 -(1,5968:6630773,7858425:1974731,582746,0 -g1,5968:6630773,7858425 -g1,5968:8605504,7858425 -) -g1,5968:10655733,7858425 -g1,5968:12837296,7858425 -g1,5968:16257489,7858425 -g1,5968:17967192,7858425 -k1,5968:32583029,7858425:9687267 -g1,5968:32583029,7858425 -) -(1,5971:6630773,9093129:25952256,513147,134348 -k1,5970:8027439,9093129:199979 -k1,5970:9616780,9093129:199978 -k1,5970:10685111,9093129:199979 -k1,5970:12336056,9093129:199978 -k1,5970:16103815,9093129:199979 -k1,5970:17495238,9093129:199978 -k1,5970:20125292,9093129:199979 -k1,5970:20941308,9093129:199978 -k1,5970:21729800,9093129:199979 -k1,5970:22545816,9093129:199978 -k1,5970:24347495,9093129:199979 -k1,5970:26244855,9093129:199978 -k1,5970:29279266,9093129:199979 -k1,5970:31046865,9093129:199978 -k1,5971:32583029,9093129:0 -) -(1,5971:6630773,9934617:25952256,513147,126483 -k1,5970:10247704,9934617:266731 -k1,5970:12091888,9934617:266732 -k1,5970:13044781,9934617:266731 -k1,5970:14633374,9934617:266732 -k1,5970:15559397,9934617:266731 -k1,5970:19765497,9934617:266731 -k1,5970:20715114,9934617:266732 -k1,5970:23584935,9934617:266731 -k1,5970:25323606,9934617:266732 -k1,5970:28434600,9934617:266731 -k1,5970:32583029,9934617:0 -) -(1,5971:6630773,10776105:25952256,513147,134348 -k1,5970:8345304,10776105:146910 -k1,5970:9873057,10776105:146909 -k1,5970:13815812,10776105:146910 -k1,5970:15356673,10776105:146910 -k1,5970:16772360,10776105:146910 -k1,5970:18385309,10776105:146909 -k1,5970:19215104,10776105:146910 -k1,5970:20123542,10776105:146910 -k1,5970:22964637,10776105:146910 -k1,5970:25670072,10776105:146909 -k1,5970:28344706,10776105:146910 -k1,5970:30910550,10776105:146910 -k1,5971:32583029,10776105:0 -) -(1,5971:6630773,11617593:25952256,513147,126483 -k1,5970:8167037,11617593:161319 -k1,5970:9895978,11617593:161320 -k1,5970:10413157,11617593:161319 -k1,5970:13658601,11617593:161320 -k1,5970:17470931,11617593:161319 -k1,5970:19199872,11617593:161320 -k1,5970:21964281,11617593:161319 -k1,5970:23322288,11617593:161320 -k1,5970:25163950,11617593:161319 -k1,5970:25984562,11617593:161320 -k1,5970:27277688,11617593:161319 -k1,5970:28828371,11617593:161320 -k1,5970:31015408,11617593:161319 -k1,5970:32583029,11617593:0 -) -(1,5971:6630773,12459081:25952256,513147,134348 -k1,5970:9517088,12459081:173124 -k1,5970:11198851,12459081:173124 -k1,5970:13419975,12459081:173124 -k1,5970:14640365,12459081:173125 -k1,5970:18288208,12459081:173124 -k1,5970:20833080,12459081:173124 -k1,5970:21657632,12459081:173124 -k1,5970:23988201,12459081:173124 -k1,5970:24844210,12459081:173124 -k1,5970:27481489,12459081:173125 -k1,5970:29222234,12459081:173124 -k1,5970:31314252,12459081:173124 -k1,5970:32583029,12459081:0 -) -(1,5971:6630773,13300569:25952256,513147,126483 -k1,5970:8041704,13300569:275192 -k1,5970:10028040,13300569:275191 -k1,5970:12972513,13300569:275192 -k1,5970:16695553,13300569:275191 -k1,5970:19202246,13300569:275192 -k1,5970:22773243,13300569:275191 -k1,5970:24039995,13300569:275192 -k1,5970:24974478,13300569:275191 -k1,5970:27692852,13300569:275192 -k1,5970:28619471,13300569:275191 -k1,5970:31563944,13300569:275192 -k1,5970:32583029,13300569:0 -) -(1,5971:6630773,14142057:25952256,513147,134348 -k1,5970:8722985,14142057:217882 -k1,5970:9600159,14142057:217882 -k1,5970:10837126,14142057:217882 -k1,5970:12444371,14142057:217882 -k1,5970:13853698,14142057:217882 -k1,5970:14687618,14142057:217882 -k1,5970:16607470,14142057:217882 -k1,5970:18522734,14142057:217882 -k1,5970:22812368,14142057:217882 -k1,5970:25291897,14142057:217882 -k1,5970:26125817,14142057:217882 -k1,5970:27362784,14142057:217882 -k1,5970:31923737,14142057:217882 -k1,5970:32583029,14142057:0 -) -(1,5971:6630773,14983545:25952256,513147,134348 -k1,5970:9556365,14983545:254345 -k1,5970:13106516,14983545:254345 -k1,5970:14170231,14983545:254345 -k1,5970:15876198,14983545:254345 -k1,5970:18440688,14983545:254346 -k1,5970:20581159,14983545:254345 -k1,5970:22793064,14983545:254345 -k1,5970:27568083,14983545:254345 -k1,5970:28588544,14983545:254345 -k1,5970:31601955,14983545:254345 -k1,5971:32583029,14983545:0 -) -(1,5971:6630773,15825033:25952256,513147,134348 -k1,5970:9003125,15825033:283720 -k1,5970:10234497,15825033:283721 -k1,5970:11907580,15825033:283720 -k1,5970:14745894,15825033:283721 -k1,5970:18793347,15825033:283720 -k1,5970:20645345,15825033:283721 -k1,5970:21588357,15825033:283720 -k1,5970:24191397,15825033:283721 -k1,5970:25869068,15825033:283720 -k1,5970:27542152,15825033:283721 -k1,5970:29090717,15825033:283720 -k1,5970:30060600,15825033:283721 -k1,5970:30700180,15825033:283720 -k1,5970:32583029,15825033:0 -) -(1,5971:6630773,16666521:25952256,513147,134348 -k1,5970:8275678,16666521:178209 -k1,5970:10568078,16666521:178209 -k1,5970:13093787,16666521:178209 -k1,5970:14463441,16666521:178209 -k1,5970:16339688,16666521:178209 -k1,5970:18945351,16666521:178209 -k1,5970:20762615,16666521:178209 -k1,5970:21626986,16666521:178209 -k1,5970:25207824,16666521:178209 -k1,5970:26037461,16666521:178209 -k1,5970:29415138,16666521:178209 -k1,5970:30080914,16666521:178188 -k1,5970:31648486,16666521:178209 -k1,5970:32583029,16666521:0 -) -(1,5971:6630773,17508009:25952256,513147,134348 -g1,5970:7361499,17508009 -g1,5970:7916588,17508009 -g1,5970:10403024,17508009 -g1,5970:15274970,17508009 -g1,5970:18560945,17508009 -g1,5970:19419466,17508009 -g1,5970:21008058,17508009 -g1,5970:22601238,17508009 -g1,5970:25022138,17508009 -k1,5971:32583029,17508009:3580234 -g1,5971:32583029,17508009 -) -(1,5973:6630773,18349497:25952256,513147,134348 -h1,5972:6630773,18349497:983040,0,0 -k1,5972:8393954,18349497:152306 -k1,5972:9134772,18349497:152305 -k1,5972:10610905,18349497:152306 -k1,5972:11754771,18349497:152306 -k1,5972:12926161,18349497:152305 -k1,5972:14680167,18349497:152306 -k1,5972:17133442,18349497:152306 -k1,5972:18671833,18349497:152305 -k1,5972:19483431,18349497:152306 -k1,5972:21925565,18349497:152306 -k1,5972:24055091,18349497:152305 -k1,5972:25155048,18349497:152306 -k1,5972:27567691,18349497:152306 -k1,5972:29602845,18349497:152305 -k1,5972:31144514,18349497:152306 -k1,5972:32583029,18349497:0 -) -(1,5973:6630773,19190985:25952256,513147,134348 -k1,5972:7413366,19190985:154758 -k1,5972:9169825,19190985:154759 -k1,5972:11021965,19190985:154758 -k1,5972:12045076,19190985:154759 -k1,5972:13015102,19190985:154758 -k1,5972:14236132,19190985:154759 -k1,5972:15921156,19190985:154758 -k1,5972:17279156,19190985:154759 -k1,5972:19217149,19190985:154758 -k1,5972:22519602,19190985:154759 -k1,5972:23399188,19190985:154758 -k1,5972:27189229,19190985:154759 -k1,5972:30761034,19190985:154758 -k1,5972:31575085,19190985:154759 -k1,5973:32583029,19190985:0 -) -(1,5973:6630773,20032473:25952256,513147,126483 -k1,5972:10102160,20032473:194587 -k1,5972:11288307,20032473:194587 -k1,5972:13084595,20032473:194588 -k1,5972:16584163,20032473:194587 -k1,5972:18816920,20032473:194587 -k1,5972:19627545,20032473:194587 -k1,5972:20177993,20032473:194588 -k1,5972:23198492,20032473:194587 -k1,5972:25038033,20032473:194587 -k1,5972:26556447,20032473:194587 -k1,5972:28618811,20032473:194588 -k1,5972:30202761,20032473:194587 -k1,5972:32583029,20032473:0 -) -(1,5973:6630773,20873961:25952256,513147,134348 -k1,5972:8716078,20873961:210975 -k1,5972:11216882,20873961:210976 -k1,5972:12532139,20873961:210975 -k1,5972:14218329,20873961:210975 -k1,5972:15115467,20873961:210976 -k1,5972:16835081,20873961:210975 -k1,5972:19999764,20873961:210975 -k1,5972:21229824,20873961:210975 -k1,5972:23748978,20873961:210976 -k1,5972:25151398,20873961:210975 -k1,5972:27586665,20873961:210975 -k1,5972:28665993,20873961:210976 -k1,5972:31966991,20873961:210975 -k1,5972:32583029,20873961:0 -) -(1,5973:6630773,21715449:25952256,505283,126483 -g1,5972:7849087,21715449 -g1,5972:10802794,21715449 -k1,5973:32583028,21715449:19188940 -g1,5973:32583028,21715449 -) -(1,5975:6630773,22556937:25952256,505283,134348 -h1,5974:6630773,22556937:983040,0,0 -k1,5974:9049709,22556937:172362 -k1,5974:9636887,22556937:172335 -k1,5974:11768775,22556937:172362 -k1,5974:13045419,22556937:172362 -k1,5974:14692996,22556937:172362 -k1,5974:18148056,22556937:172362 -k1,5974:20992321,22556937:172362 -k1,5974:23454510,22556937:172361 -k1,5974:24278300,22556937:172362 -k1,5974:26077921,22556937:172362 -k1,5974:27994851,22556937:172362 -k1,5974:31394206,22556937:172362 -k1,5974:32583029,22556937:0 -) -(1,5975:6630773,23398425:25952256,513147,134348 -k1,5974:7451427,23398425:161362 -k1,5974:11593445,23398425:161361 -k1,5974:13471850,23398425:161362 -k1,5974:14779436,23398425:161361 -k1,5974:18258230,23398425:161362 -k1,5974:19411151,23398425:161361 -k1,5974:20894374,23398425:161362 -k1,5974:21722891,23398425:161361 -k1,5974:22299058,23398425:161324 -k1,5974:23651865,23398425:161362 -k1,5974:25758335,23398425:161361 -k1,5974:26532459,23398425:161362 -k1,5974:29041320,23398425:161361 -k1,5974:29861974,23398425:161362 -k1,5974:32583029,23398425:0 -) -(1,5975:6630773,24239913:25952256,513147,126483 -k1,5974:10598728,24239913:160969 -k1,5974:11442583,24239913:160970 -k1,5974:14572988,24239913:160969 -k1,5974:15495486,24239913:160970 -k1,5974:17541270,24239913:160969 -k1,5974:19849199,24239913:160970 -k1,5974:21001728,24239913:160969 -k1,5974:22675924,24239913:160970 -k1,5974:25887594,24239913:160969 -k1,5974:26810092,24239913:160970 -k1,5974:27385866,24239913:160931 -k1,5974:28738280,24239913:160969 -k1,5974:30871884,24239913:160970 -k1,5974:32583029,24239913:0 -) -(1,5975:6630773,25081401:25952256,505283,134348 -g1,5974:7934284,25081401 -g1,5974:9750942,25081401 -g1,5974:11339534,25081401 -g1,5974:13274156,25081401 -g1,5974:16582413,25081401 -g1,5974:18940398,25081401 -g1,5974:19936545,25081401 -k1,5975:32583029,25081401:11373120 -g1,5975:32583029,25081401 -) -(1,5976:6630773,27888969:25952256,32768,229376 -(1,5976:6630773,27888969:0,32768,229376 -(1,5976:6630773,27888969:5505024,32768,229376 -r1,5988:12135797,27888969:5505024,262144,229376 -) -k1,5976:6630773,27888969:-5505024 -) -(1,5976:6630773,27888969:25952256,32768,0 -r1,5988:32583029,27888969:25952256,32768,0 -) -) -(1,5976:6630773,29493297:25952256,606339,14155 -(1,5976:6630773,29493297:1974731,582746,14155 -g1,5976:6630773,29493297 -g1,5976:8605504,29493297 -) -k1,5976:32583030,29493297:22132556 -g1,5976:32583030,29493297 -) -(1,5979:6630773,30728001:25952256,513147,134348 -k1,5978:8435635,30728001:203817 -k1,5978:10231322,30728001:203817 -k1,5978:13621499,30728001:203817 -k1,5978:15392937,30728001:203817 -k1,5978:17904932,30728001:203817 -k1,5978:18813916,30728001:203817 -k1,5978:19633770,30728001:203816 -k1,5978:20426100,30728001:203817 -k1,5978:21914423,30728001:203817 -k1,5978:23498428,30728001:203817 -k1,5978:24806527,30728001:203817 -k1,5978:25758110,30728001:203817 -k1,5978:30808314,30728001:203817 -k1,5978:32583029,30728001:0 -) -(1,5979:6630773,31569489:25952256,513147,134348 -k1,5978:7839012,31569489:189154 -k1,5978:10651572,31569489:189154 -k1,5978:13709891,31569489:189153 -k1,5978:14558337,31569489:189154 -k1,5978:15103351,31569489:189154 -k1,5978:17270382,31569489:189154 -k1,5978:19081552,31569489:189154 -k1,5978:20018472,31569489:189154 -k1,5978:22367037,31569489:189153 -k1,5978:24740506,31569489:189154 -k1,5978:26061467,31569489:189154 -k1,5978:26665454,31569489:189144 -k1,5978:28814134,31569489:189154 -k1,5978:30107569,31569489:189153 -k1,5978:31044489,31569489:189154 -k1,5978:31589503,31569489:189154 -k1,5978:32583029,31569489:0 -) -(1,5979:6630773,32410977:25952256,513147,134348 -k1,5978:9580112,32410977:152262 -k1,5978:10360209,32410977:152262 -k1,5978:11100984,32410977:152262 -k1,5978:12272330,32410977:152261 -k1,5978:15378300,32410977:152262 -k1,5978:16189854,32410977:152262 -k1,5978:16697976,32410977:152262 -k1,5978:17843764,32410977:152262 -k1,5978:19100308,32410977:152262 -k1,5978:20000336,32410977:152262 -k1,5978:23651565,32410977:152262 -k1,5978:24489988,32410977:152261 -k1,5978:27617585,32410977:152262 -k1,5978:28125707,32410977:152262 -k1,5978:31391584,32410977:152262 -k1,5978:32583029,32410977:0 -) -(1,5979:6630773,33252465:25952256,513147,134348 -k1,5978:10023441,33252465:207618 -k1,5978:12789585,33252465:207618 -k1,5978:16178320,33252465:207617 -k1,5978:18986407,33252465:207618 -k1,5978:20213110,33252465:207618 -k1,5978:22074201,33252465:207618 -k1,5978:22967981,33252465:207618 -k1,5978:26129306,33252465:207617 -k1,5978:26996216,33252465:207618 -k1,5978:29685682,33252465:207618 -k1,5978:32583029,33252465:0 -) -(1,5979:6630773,34093953:25952256,513147,102891 -k1,5978:7568986,34093953:278921 -k1,5978:8203767,34093953:278921 -k1,5978:9476215,34093953:278922 -k1,5978:10441298,34093953:278921 -k1,5978:11998826,34093953:278921 -k1,5978:12963909,34093953:278921 -k1,5978:16196538,34093953:278921 -k1,5978:17134752,34093953:278922 -k1,5978:17769533,34093953:278921 -k1,5978:20026331,34093953:278921 -k1,5978:21409534,34093953:278921 -k1,5978:22436221,34093953:278921 -k1,5978:25047569,34093953:278922 -k1,5978:26517935,34093953:278921 -k1,5978:29651604,34093953:278921 -k1,5978:32583029,34093953:0 -) -(1,5979:6630773,34935441:25952256,513147,134348 -k1,5978:9335990,34935441:146691 -k1,5978:10991320,34935441:146691 -k1,5978:13379999,34935441:146692 -k1,5978:14154525,34935441:146691 -k1,5978:17012440,34935441:146691 -k1,5978:19317887,34935441:146691 -k1,5978:20788406,34935441:146692 -k1,5978:21926657,34935441:146691 -k1,5978:23723545,34935441:146691 -k1,5978:27175217,34935441:146691 -k1,5978:28835135,34935441:146692 -k1,5978:30424273,34935441:146691 -k1,5978:32583029,34935441:0 -) -(1,5979:6630773,35776929:25952256,513147,134348 -k1,5978:9274695,35776929:162074 -k1,5978:10920504,35776929:162074 -k1,5978:12074138,35776929:162074 -k1,5978:14586334,35776929:162075 -k1,5978:16483801,35776929:162074 -k1,5978:19341371,35776929:162074 -(1,5978:19341371,35776929:0,452978,115847 -r1,5988:21458196,35776929:2116825,568825,115847 -k1,5978:19341371,35776929:-2116825 -) -(1,5978:19341371,35776929:2116825,452978,115847 -k1,5978:19341371,35776929:3277 -h1,5978:21454919,35776929:0,411205,112570 -) -k1,5978:21620270,35776929:162074 -k1,5978:24550585,35776929:162074 -k1,5978:25398821,35776929:162074 -(1,5978:25398821,35776929:0,452978,115847 -r1,5988:26460510,35776929:1061689,568825,115847 -k1,5978:25398821,35776929:-1061689 -) -(1,5978:25398821,35776929:1061689,452978,115847 -k1,5978:25398821,35776929:3277 -h1,5978:26457233,35776929:0,411205,112570 -) -k1,5978:26622585,35776929:162075 -k1,5978:27316156,35776929:162074 -k1,5978:28991456,35776929:162074 -k1,5978:30101181,35776929:162074 -k1,5978:32583029,35776929:0 -) -(1,5979:6630773,36618417:25952256,513147,134348 -k1,5978:9701995,36618417:173875 -k1,5978:10535162,36618417:173875 -k1,5978:11064897,36618417:173875 -k1,5978:12232298,36618417:173875 -k1,5978:13510456,36618417:173876 -k1,5978:14432097,36618417:173875 -k1,5978:16895800,36618417:173875 -k1,5978:19803182,36618417:173875 -k1,5978:21443753,36618417:173875 -k1,5978:22233666,36618417:173875 -k1,5978:23916180,36618417:173875 -k1,5978:25645224,36618417:173875 -k1,5978:27010545,36618417:173876 -k1,5978:27800458,36618417:173875 -k1,5978:29482972,36618417:173875 -k1,5978:31099294,36618417:173875 -k1,5978:32583029,36618417:0 -) -(1,5979:6630773,37459905:25952256,513147,7863 -g1,5978:7934284,37459905 -g1,5978:8881279,37459905 -g1,5978:11197976,37459905 -g1,5978:12048633,37459905 -g1,5978:15271693,37459905 -g1,5978:16794749,37459905 -g1,5978:17653270,37459905 -k1,5979:32583029,37459905:13432261 -g1,5979:32583029,37459905 -) -v1,5981:6630773,38615965:0,393216,0 -(1,5984:6630773,42478338:25952256,4255589,0 -g1,5984:6630773,42478338 -g1,5984:6303093,42478338 -r1,5988:6401397,42478338:98304,4255589,0 -g1,5984:6600626,42478338 -g1,5984:6797234,42478338 -[1,5984:6797234,42478338:25785795,4255589,0 -(1,5982:6797234,38978038:25785795,755289,196608 -(1,5981:6797234,38978038:0,755289,196608 -r1,5988:8134168,38978038:1336934,951897,196608 -k1,5981:6797234,38978038:-1336934 -) -(1,5981:6797234,38978038:1336934,755289,196608 -) -k1,5981:8395427,38978038:261259 -k1,5981:8723107,38978038:327680 -k1,5981:9612201,38978038:261259 -k1,5981:10288241,38978038:261197 -k1,5981:11873327,38978038:261259 -k1,5981:13238867,38978038:261258 -k1,5981:14975341,38978038:261259 -k1,5981:15922762,38978038:261259 -k1,5981:19137729,38978038:261259 -k1,5981:20465259,38978038:261259 -k1,5981:22102119,38978038:261259 -k1,5981:24653206,38978038:261259 -k1,5981:27174802,38978038:261259 -k1,5981:28825424,38978038:261259 -k1,5981:29896053,38978038:261259 -k1,5982:32583029,38978038:0 -) -(1,5982:6797234,39819526:25785795,513147,134348 -k1,5981:8620300,39819526:225298 -k1,5981:10037043,39819526:225298 -k1,5981:13665626,39819526:225298 -k1,5981:14963093,39819526:225298 -k1,5981:16474208,39819526:225299 -k1,5981:19395002,39819526:225298 -k1,5981:23206430,39819526:225298 -k1,5981:25419435,39819526:225298 -k1,5981:28692157,39819526:225298 -k1,5981:32583029,39819526:0 -) -(1,5982:6797234,40661014:25785795,513147,134348 -g1,5981:10940420,40661014 -g1,5981:14046826,40661014 -g1,5981:16399568,40661014 -g1,5981:17790242,40661014 -g1,5981:20279299,40661014 -g1,5981:21137820,40661014 -g1,5981:22717893,40661014 -g1,5981:25298700,40661014 -k1,5982:32583029,40661014:4877847 -g1,5982:32583029,40661014 -) -(1,5984:6797234,41502502:25785795,513147,134348 -h1,5983:6797234,41502502:983040,0,0 -k1,5983:11371648,41502502:180225 -k1,5983:12203302,41502502:180226 -k1,5983:15556125,41502502:180225 -k1,5983:16882576,41502502:180226 -k1,5983:17689980,41502502:180225 -k1,5983:19153401,41502502:180226 -k1,5983:20525071,41502502:180225 -k1,5983:22823420,41502502:180226 -k1,5983:23418470,41502502:180207 -k1,5983:25091605,41502502:180225 -k1,5983:26338101,41502502:180225 -k1,5983:29951758,41502502:180226 -k1,5983:32583029,41502502:0 -) -(1,5984:6797234,42343990:25785795,505283,134348 -g1,5983:9650671,42343990 -g1,5983:10532785,42343990 -g1,5983:12713823,42343990 -g1,5983:14236879,42343990 -g1,5983:16171501,42343990 -k1,5984:32583029,42343990:13583649 -g1,5984:32583029,42343990 -) -] -g1,5984:32583029,42478338 -) -h1,5984:6630773,42478338:0,0,0 -v1,5987:6630773,43634398:0,393216,0 -(1,5988:6630773,45706769:25952256,2465587,0 -g1,5988:6630773,45706769 -g1,5988:6303093,45706769 -r1,5988:6401397,45706769:98304,2465587,0 -g1,5988:6600626,45706769 -g1,5988:6797234,45706769 -[1,5988:6797234,45706769:25785795,2465587,0 -(1,5988:6797234,43996471:25785795,755289,196608 -(1,5987:6797234,43996471:0,755289,196608 -r1,5988:8134168,43996471:1336934,951897,196608 -k1,5987:6797234,43996471:-1336934 -) -(1,5987:6797234,43996471:1336934,755289,196608 -) -k1,5987:8336159,43996471:201991 -k1,5987:8663839,43996471:327680 -k1,5987:10019265,43996471:201992 -k1,5987:11412701,43996471:201991 -k1,5987:13967435,43996471:201991 -k1,5987:16459255,43996471:201992 -k1,5987:17652806,43996471:201991 -k1,5987:19911317,43996471:201991 -k1,5987:21626535,43996471:201992 -k1,5987:22444564,43996471:201991 -k1,5987:23061396,43996471:201989 -k1,5987:25793077,43996471:201991 -k1,5987:27375256,43996471:201991 -k1,5987:29292981,43996471:201992 -k1,5987:29953069,43996471:201991 -k1,5987:32583029,43996471:0 -) -(1,5988:6797234,44837959:25785795,513147,126483 -k1,5987:7693439,44837959:244777 -k1,5987:9619870,44837959:244777 -k1,5987:10812298,44837959:244777 -k1,5987:13892161,44837959:244776 -k1,5987:15156023,44837959:244777 -k1,5987:16963834,44837959:244777 -k1,5987:21046399,44837959:244777 -k1,5987:22238827,44837959:244777 -k1,5987:25888199,44837959:244777 -k1,5987:27324420,44837959:244776 -k1,5987:29742371,44837959:244777 -k1,5987:31554769,44837959:244777 -k1,5988:32583029,44837959:0 -) -(1,5988:6797234,45679447:25785795,505283,134348 -k1,5987:9628916,45679447:242355 -k1,5987:12551694,45679447:242355 -k1,5987:13410087,45679447:242355 -k1,5987:14008302,45679447:242355 -k1,5987:16123676,45679447:242355 -k1,5987:16780830,45679447:242311 -k1,5987:18982711,45679447:242355 -k1,5987:20509572,45679447:242355 -k1,5987:21856209,45679447:242355 -k1,5987:24083650,45679447:242355 -k1,5987:26617799,45679447:242355 -k1,5987:27971645,45679447:242355 -k1,5987:28900162,45679447:242355 -k1,5987:29498377,45679447:242355 -k1,5987:31202185,45679447:242355 -k1,5987:32583029,45679447:0 -) -] -g1,5988:32583029,45706769 -) -] -(1,5988:32583029,45706769:0,0,0 -g1,5988:32583029,45706769 -) -) -] -(1,5988:6630773,47279633:25952256,0,0 -h1,5988:6630773,47279633:25952256,0,0 -) -] -(1,5988:4262630,4025873:0,0,0 -[1,5988:-473656,4025873:0,0,0 -(1,5988:-473656,-710413:0,0,0 -(1,5988:-473656,-710413:0,0,0 -g1,5988:-473656,-710413 -) -g1,5988:-473656,-710413 -) -] -) -] -!23378 -}103 -Input:840:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:841:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:842:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:843:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:844:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:845:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:846:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:847:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:848:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:849:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:850:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:851:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1128 -{104 -[1,6082:4262630,47279633:28320399,43253760,0 -(1,6082:4262630,4025873:0,0,0 -[1,6082:-473656,4025873:0,0,0 -(1,6082:-473656,-710413:0,0,0 -(1,6082:-473656,-644877:0,0,0 -k1,6082:-473656,-644877:-65536 +] +!25772 +}87 +Input:794:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:795:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:796:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:797:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:798:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!476 +{88 +[1,5443:4262630,47279633:28320399,43253760,0 +(1,5443:4262630,4025873:0,0,0 +[1,5443:-473656,4025873:0,0,0 +(1,5443:-473656,-710413:0,0,0 +(1,5443:-473656,-644877:0,0,0 +k1,5443:-473656,-644877:-65536 ) -(1,6082:-473656,4736287:0,0,0 -k1,6082:-473656,4736287:5209943 +(1,5443:-473656,4736287:0,0,0 +k1,5443:-473656,4736287:5209943 ) -g1,6082:-473656,-710413 +g1,5443:-473656,-710413 ) ] ) -[1,6082:6630773,47279633:25952256,43253760,0 -[1,6082:6630773,4812305:25952256,786432,0 -(1,6082:6630773,4812305:25952256,485622,11795 -(1,6082:6630773,4812305:25952256,485622,11795 -g1,6082:3078558,4812305 -[1,6082:3078558,4812305:0,0,0 -(1,6082:3078558,2439708:0,1703936,0 -k1,6082:1358238,2439708:-1720320 -(1,5950:1358238,2439708:1720320,1703936,0 -(1,5950:1358238,2439708:1179648,16384,0 -r1,6082:2537886,2439708:1179648,16384,0 +[1,5443:6630773,47279633:25952256,43253760,0 +[1,5443:6630773,4812305:25952256,786432,0 +(1,5443:6630773,4812305:25952256,505283,126483 +(1,5443:6630773,4812305:25952256,505283,126483 +g1,5443:3078558,4812305 +[1,5443:3078558,4812305:0,0,0 +(1,5443:3078558,2439708:0,1703936,0 +k1,5443:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,5443:2537886,2439708:1179648,16384,0 ) -g1,5950:3062174,2439708 -(1,5950:3062174,2439708:16384,1703936,0 -[1,5950:3062174,2439708:25952256,1703936,0 -(1,5950:3062174,1915420:25952256,1179648,0 -(1,5950:3062174,1915420:16384,1179648,0 -r1,6082:3078558,1915420:16384,1179648,0 +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,5443:3078558,1915420:16384,1179648,0 ) -k1,5950:29014430,1915420:25935872 -g1,5950:29014430,1915420 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) ] ) ) ) ] -[1,6082:3078558,4812305:0,0,0 -(1,6082:3078558,2439708:0,1703936,0 -g1,6082:29030814,2439708 -g1,6082:36135244,2439708 -(1,5950:36135244,2439708:1720320,1703936,0 -(1,5950:36135244,2439708:16384,1703936,0 -[1,5950:36135244,2439708:25952256,1703936,0 -(1,5950:36135244,1915420:25952256,1179648,0 -(1,5950:36135244,1915420:16384,1179648,0 -r1,6082:36151628,1915420:16384,1179648,0 +[1,5443:3078558,4812305:0,0,0 +(1,5443:3078558,2439708:0,1703936,0 +g1,5443:29030814,2439708 +g1,5443:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,5443:36151628,1915420:16384,1179648,0 ) -k1,5950:62087500,1915420:25935872 -g1,5950:62087500,1915420 +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) ] ) -g1,5950:36675916,2439708 -(1,5950:36675916,2439708:1179648,16384,0 -r1,6082:37855564,2439708:1179648,16384,0 +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,5443:37855564,2439708:1179648,16384,0 ) ) -k1,6082:3078556,2439708:-34777008 +k1,5443:3078556,2439708:-34777008 ) ] -[1,6082:3078558,4812305:0,0,0 -(1,6082:3078558,49800853:0,16384,2228224 -k1,6082:1358238,49800853:-1720320 -(1,5950:1358238,49800853:1720320,16384,2228224 -(1,5950:1358238,49800853:1179648,16384,0 -r1,6082:2537886,49800853:1179648,16384,0 +[1,5443:3078558,4812305:0,0,0 +(1,5443:3078558,49800853:0,16384,2228224 +k1,5443:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,5443:2537886,49800853:1179648,16384,0 ) -g1,5950:3062174,49800853 -(1,5950:3062174,52029077:16384,1703936,0 -[1,5950:3062174,52029077:25952256,1703936,0 -(1,5950:3062174,51504789:25952256,1179648,0 -(1,5950:3062174,51504789:16384,1179648,0 -r1,6082:3078558,51504789:16384,1179648,0 +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,5443:3078558,51504789:16384,1179648,0 ) -k1,5950:29014430,51504789:25935872 -g1,5950:29014430,51504789 -) -] -) -) -) -] -[1,6082:3078558,4812305:0,0,0 -(1,6082:3078558,49800853:0,16384,2228224 -g1,6082:29030814,49800853 -g1,6082:36135244,49800853 -(1,5950:36135244,49800853:1720320,16384,2228224 -(1,5950:36135244,52029077:16384,1703936,0 -[1,5950:36135244,52029077:25952256,1703936,0 -(1,5950:36135244,51504789:25952256,1179648,0 -(1,5950:36135244,51504789:16384,1179648,0 -r1,6082:36151628,51504789:16384,1179648,0 -) -k1,5950:62087500,51504789:25935872 -g1,5950:62087500,51504789 -) -] -) -g1,5950:36675916,49800853 -(1,5950:36675916,49800853:1179648,16384,0 -r1,6082:37855564,49800853:1179648,16384,0 -) -) -k1,6082:3078556,49800853:-34777008 -) -] -g1,6082:6630773,4812305 -g1,6082:6630773,4812305 -g1,6082:8203637,4812305 -k1,6082:31786111,4812305:23582474 -) -) -] -[1,6082:6630773,45706769:25952256,40108032,0 -(1,6082:6630773,45706769:25952256,40108032,0 -(1,6082:6630773,45706769:0,0,0 -g1,6082:6630773,45706769 -) -[1,6082:6630773,45706769:25952256,40108032,0 -v1,5988:6630773,6254097:0,393216,0 -(1,5988:6630773,10707951:25952256,4847070,0 -g1,5988:6630773,10707951 -g1,5988:6303093,10707951 -r1,6082:6401397,10707951:98304,4847070,0 -g1,5988:6600626,10707951 -g1,5988:6797234,10707951 -[1,5988:6797234,10707951:25785795,4847070,0 -(1,5988:6797234,6374028:25785795,513147,134348 -k1,5987:8703611,6374028:176882 -k1,5987:9899577,6374028:176881 -k1,5987:14110200,6374028:176882 -k1,5987:14946373,6374028:176881 -k1,5987:17794502,6374028:176882 -k1,5987:21419233,6374028:176882 -k1,5987:23885942,6374028:176881 -k1,5987:25456775,6374028:176882 -k1,5987:27142295,6374028:176881 -k1,5987:31622271,6374028:176882 -k1,5988:32583029,6374028:0 -) -(1,5988:6797234,7215516:25785795,505283,134348 -k1,5987:8055045,7215516:267562 -k1,5987:11001718,7215516:267561 -k1,5987:12644881,7215516:267562 -k1,5987:13673970,7215516:267561 -k1,5987:15450171,7215516:267562 -k1,5987:17959720,7215516:267562 -k1,5987:18910166,7215516:267561 -k1,5987:20644424,7215516:267562 -k1,5987:22793524,7215516:267561 -k1,5987:23677124,7215516:267562 -k1,5987:26647391,7215516:267562 -k1,5987:28658865,7215516:267561 -k1,5987:29609312,7215516:267562 -k1,5987:31343569,7215516:267561 -k1,5987:32227169,7215516:267562 -k1,5987:32583029,7215516:0 -) -(1,5988:6797234,8057004:25785795,513147,126483 -k1,5987:9879928,8057004:292171 -k1,5987:12977041,8057004:292172 -k1,5987:14035328,8057004:292171 -k1,5987:17989651,8057004:292171 -k1,5987:19566328,8057004:292171 -k1,5987:20850060,8057004:292172 -k1,5987:22749174,8057004:292171 -k1,5987:25080825,8057004:292171 -k1,5987:27304343,8057004:292172 -k1,5987:28283987,8057004:292171 -k1,5987:31601955,8057004:292171 -k1,5988:32583029,8057004:0 -) -(1,5988:6797234,8898492:25785795,513147,134348 -k1,5987:9369724,8898492:250549 -k1,5987:10236311,8898492:250549 -k1,5987:12904483,8898492:250549 -h1,5987:13302942,8898492:0,0,0 -k1,5987:13553491,8898492:250549 -k1,5987:14795600,8898492:250549 -k1,5987:16630154,8898492:250549 -k1,5987:19872423,8898492:250550 -k1,5987:20782264,8898492:250549 -k1,5987:22236054,8898492:250549 -k1,5987:25644783,8898492:250549 -k1,5987:28299848,8898492:250549 -k1,5987:30063623,8898492:250549 -k1,5987:30965600,8898492:250549 -k1,5987:32583029,8898492:0 -) -(1,5988:6797234,9739980:25785795,505283,126483 -k1,5987:8029077,9739980:212758 -k1,5987:12079623,9739980:212758 -k1,5987:12943809,9739980:212758 -k1,5987:14798899,9739980:212758 -k1,5987:16619255,9739980:212758 -k1,5987:18225964,9739980:212758 -k1,5987:21109969,9739980:212758 -k1,5987:23210819,9739980:212758 -k1,5987:24109739,9739980:212758 -k1,5987:27412520,9739980:212758 -k1,5987:28241316,9739980:212758 -k1,5987:30871697,9739980:212758 -h1,5987:31270156,9739980:0,0,0 -k1,5987:31482914,9739980:212758 -k1,5987:32227169,9739980:212758 -k1,5987:32583029,9739980:0 -) -(1,5988:6797234,10581468:25785795,513147,126483 -g1,5987:9271873,10581468 -k1,5988:32583028,10581468:20476068 -g1,5988:32583028,10581468 -) -] -g1,5988:32583029,10707951 -) -h1,5988:6630773,10707951:0,0,0 -(1,5991:6630773,11984420:25952256,513147,134348 -h1,5990:6630773,11984420:983040,0,0 -k1,5990:9029491,11984420:203262 -k1,5990:10538887,11984420:203263 -k1,5990:11735675,11984420:203262 -k1,5990:13039942,11984420:203262 -k1,5990:13929367,11984420:203263 -k1,5990:14921027,11984420:203262 -k1,5990:18077997,11984420:203262 -k1,5990:19936043,11984420:203262 -k1,5990:22901649,11984420:203263 -k1,5990:25586759,11984420:203262 -k1,5990:27241643,11984420:203262 -k1,5990:28601616,11984420:203263 -k1,5990:31931601,11984420:203262 -k1,5990:32583029,11984420:0 -) -(1,5991:6630773,12825908:25952256,513147,122846 -k1,5990:7207686,12825908:221053 -k1,5990:10191082,12825908:221053 -k1,5990:12140974,12825908:221052 -(1,5990:12140974,12825908:0,452978,115847 -r1,6082:14609511,12825908:2468537,568825,115847 -k1,5990:12140974,12825908:-2468537 -) -(1,5990:12140974,12825908:2468537,452978,115847 -k1,5990:12140974,12825908:3277 -h1,5990:14606234,12825908:0,411205,112570 -) -k1,5990:15004234,12825908:221053 -(1,5990:15004234,12825908:0,452978,115847 -r1,6082:18176194,12825908:3171960,568825,115847 -k1,5990:15004234,12825908:-3171960 -) -(1,5990:15004234,12825908:3171960,452978,115847 -k1,5990:15004234,12825908:3277 -h1,5990:18172917,12825908:0,411205,112570 -) -k1,5990:18397247,12825908:221053 -k1,5990:19809745,12825908:221053 -(1,5990:19809745,12825908:0,452978,122846 -r1,6082:22278282,12825908:2468537,575824,122846 -k1,5990:19809745,12825908:-2468537 -) -(1,5990:19809745,12825908:2468537,452978,122846 -k1,5990:19809745,12825908:3277 -h1,5990:22275005,12825908:0,411205,112570 -) -k1,5990:22673004,12825908:221052 -k1,5990:24090744,12825908:221053 -k1,5990:25966581,12825908:221053 -k1,5990:28495812,12825908:221053 -k1,5990:30002680,12825908:221052 -k1,5990:31966991,12825908:221053 -k1,5990:32583029,12825908:0 -) -(1,5991:6630773,13667396:25952256,505283,134348 -g1,5990:8338641,13667396 -g1,5990:10724806,13667396 -g1,5990:11496164,13667396 -g1,5990:12267522,13667396 -g1,5990:13658196,13667396 -g1,5990:14429554,13667396 -k1,5991:32583029,13667396:14183304 -g1,5991:32583029,13667396 -) -v1,5993:6630773,14768555:0,393216,0 -(1,5997:6630773,15077360:25952256,702021,196608 -g1,5997:6630773,15077360 -g1,5997:6630773,15077360 -g1,5997:6434165,15077360 -(1,5997:6434165,15077360:0,702021,196608 -r1,6082:32779637,15077360:26345472,898629,196608 -k1,5997:6434165,15077360:-26345472 -) -(1,5997:6434165,15077360:26345472,702021,196608 -[1,5997:6630773,15077360:25952256,505413,0 -(1,5995:6630773,14976173:25952256,404226,101187 -(1,5994:6630773,14976173:0,0,0 -g1,5994:6630773,14976173 -g1,5994:6630773,14976173 -g1,5994:6303093,14976173 -(1,5994:6303093,14976173:0,0,0 -) -g1,5994:6630773,14976173 -) -g1,5995:8843793,14976173 -g1,5995:9792231,14976173 -g1,5995:12005252,14976173 -g1,5995:12637544,14976173 -g1,5995:14218274,14976173 -g1,5995:14850566,14976173 -g1,5995:15482858,14976173 -g1,5995:17379733,14976173 -g1,5995:18012025,14976173 -g1,5995:18644317,14976173 -g1,5995:21173484,14976173 -h1,5995:23386503,14976173:0,0,0 -k1,5995:32583029,14976173:9196526 -g1,5995:32583029,14976173 -) -] -) -g1,5997:32583029,15077360 -g1,5997:6630773,15077360 -g1,5997:6630773,15077360 -g1,5997:32583029,15077360 -g1,5997:32583029,15077360 -) -h1,5997:6630773,15273968:0,0,0 -v1,6001:6630773,16810108:0,393216,0 -(1,6017:6630773,21771341:25952256,5354449,196608 -g1,6017:6630773,21771341 -g1,6017:6630773,21771341 -g1,6017:6434165,21771341 -(1,6017:6434165,21771341:0,5354449,196608 -r1,6082:32779637,21771341:26345472,5551057,196608 -k1,6017:6434165,21771341:-26345472 -) -(1,6017:6434165,21771341:26345472,5354449,196608 -[1,6017:6630773,21771341:25952256,5157841,0 -(1,6003:6630773,17017726:25952256,404226,76021 -(1,6002:6630773,17017726:0,0,0 -g1,6002:6630773,17017726 -g1,6002:6630773,17017726 -g1,6002:6303093,17017726 -(1,6002:6303093,17017726:0,0,0 -) -g1,6002:6630773,17017726 -) -k1,6003:6630773,17017726:0 -h1,6003:10108375,17017726:0,0,0 -k1,6003:32583029,17017726:22474654 -g1,6003:32583029,17017726 -) -(1,6010:6630773,17683904:25952256,410518,9436 -(1,6005:6630773,17683904:0,0,0 -g1,6005:6630773,17683904 -g1,6005:6630773,17683904 -g1,6005:6303093,17683904 -(1,6005:6303093,17683904:0,0,0 -) -g1,6005:6630773,17683904 -) -g1,6010:7579210,17683904 -g1,6010:9159939,17683904 -g1,6010:10108376,17683904 -h1,6010:10424522,17683904:0,0,0 -k1,6010:32583030,17683904:22158508 -g1,6010:32583030,17683904 -) -(1,6010:6630773,18350082:25952256,410518,76021 -h1,6010:6630773,18350082:0,0,0 -g1,6010:7579210,18350082 -g1,6010:7895356,18350082 -g1,6010:8527648,18350082 -g1,6010:9476085,18350082 -g1,6010:10740668,18350082 -g1,6010:12637542,18350082 -g1,6010:13269834,18350082 -g1,6010:13902126,18350082 -h1,6010:14218272,18350082:0,0,0 -k1,6010:32583028,18350082:18364756 -g1,6010:32583028,18350082 -) -(1,6010:6630773,19016260:25952256,410518,101187 -h1,6010:6630773,19016260:0,0,0 -g1,6010:7579210,19016260 -g1,6010:7895356,19016260 -g1,6010:8527648,19016260 -g1,6010:9476085,19016260 -g1,6010:10740668,19016260 -h1,6010:12005251,19016260:0,0,0 -k1,6010:32583029,19016260:20577778 -g1,6010:32583029,19016260 -) -(1,6010:6630773,19682438:25952256,410518,107478 -h1,6010:6630773,19682438:0,0,0 -g1,6010:7579210,19682438 -g1,6010:7895356,19682438 -g1,6010:8527648,19682438 -g1,6010:9476085,19682438 -g1,6010:11056814,19682438 -g1,6010:12953688,19682438 -g1,6010:14534417,19682438 -h1,6010:16115145,19682438:0,0,0 -k1,6010:32583029,19682438:16467884 -g1,6010:32583029,19682438 -) -(1,6012:6630773,21003976:25952256,404226,76021 -(1,6011:6630773,21003976:0,0,0 -g1,6011:6630773,21003976 -g1,6011:6630773,21003976 -g1,6011:6303093,21003976 -(1,6011:6303093,21003976:0,0,0 -) -g1,6011:6630773,21003976 -) -k1,6012:6630773,21003976:0 -h1,6012:10740666,21003976:0,0,0 -k1,6012:32583030,21003976:21842364 -g1,6012:32583030,21003976 -) -(1,6016:6630773,21670154:25952256,404226,101187 -(1,6014:6630773,21670154:0,0,0 -g1,6014:6630773,21670154 -g1,6014:6630773,21670154 -g1,6014:6303093,21670154 -(1,6014:6303093,21670154:0,0,0 -) -g1,6014:6630773,21670154 -) -g1,6016:7579210,21670154 -g1,6016:8843793,21670154 -g1,6016:10108376,21670154 -g1,6016:11372959,21670154 -h1,6016:12321396,21670154:0,0,0 -k1,6016:32583028,21670154:20261632 -g1,6016:32583028,21670154 -) -] -) -g1,6017:32583029,21771341 -g1,6017:6630773,21771341 -g1,6017:6630773,21771341 -g1,6017:32583029,21771341 -g1,6017:32583029,21771341 -) -h1,6017:6630773,21967949:0,0,0 -(1,6053:6630773,29066334:25952256,6054141,0 -k1,6053:9238345,29066334:2607572 -(1,6020:9238345,29066334:0,0,0 -g1,6020:9238345,29066334 -g1,6020:9238345,29066334 -g1,6020:8910665,29066334 -(1,6020:8910665,29066334:0,0,0 -) -g1,6020:9238345,29066334 -) -(1,6051:9238345,29066334:20737113,6054141,0 -g1,6051:15452340,29066334 -(1,6051:15452340,25448314:0,0,0 -(1,6033:15452340,25448314:0,0,0 -g1,6031:15452340,25448314 -g1,6032:15452340,25448314 -g1,6032:15452340,25448314 -g1,6032:15452340,25448314 -g1,6032:15452340,25448314 -g1,6033:15452340,25448314 -) -(1,6051:15452340,25448314:0,0,0 -g1,6025:15452340,25448314 -(1,6029:15452340,25448314:0,0,0 -(1,6029:15452340,25448314:0,0,0 -g1,6029:15452340,25448314 -g1,6029:15452340,25448314 -g1,6029:15452340,25448314 -g1,6029:15452340,25448314 -g1,6029:15452340,25448314 -(1,6029:15452340,25448314:0,0,0 -(1,6029:15452340,25448314:6983284,1035058,187851 -[1,6029:15452340,25448314:6983284,1035058,187851 -(1,6029:15452340,24976496:6983284,563240,184180 -g1,6028:15452340,24976496 -(1,6028:15452340,24976496:1120190,563240,184180 -k1,6028:16231849,24976496:779509 -g1,6028:16572530,24976496 -(1,6028:16572530,24976496:0,563240,174744 -(1,6028:16572530,24976496:0,0,0 -(1,6028:16572530,24976496:0,0,0 -g1,6028:16572530,24976496 -g1,6028:16572530,24976496 -g1,6028:16572530,24976496 -g1,6028:16572530,24976496 -g1,6028:16572530,24976496 -(1,6028:16572530,24976496:0,0,0 -(1,6028:16572530,24976496:331874,388497,0 -(1,6028:16572530,24976496:331874,388497,0 -) -g1,6028:16904404,24976496 -) -) -g1,6028:16572530,24976496 -g1,6028:16572530,24976496 -) -) -g1,6028:16572530,24976496 -) -) -g1,6028:16572530,24976496 -(1,6028:16572530,24976496:1120190,563240,184180 -g1,6028:16913211,24976496 -k1,6028:17692720,24976496:779509 -) -g1,6028:17692720,24976496 -(1,6028:17692720,24976496:1251262,563240,184180 -k1,6028:18472229,24976496:779509 -g1,6028:18943982,24976496 -(1,6028:18943982,24976496:0,563240,174744 -(1,6028:18943982,24976496:0,0,0 -(1,6028:18943982,24976496:0,0,0 -g1,6028:18943982,24976496 -g1,6028:18943982,24976496 -g1,6028:18943982,24976496 -g1,6028:18943982,24976496 -g1,6028:18943982,24976496 -(1,6028:18943982,24976496:0,0,0 -(1,6028:18943982,24976496:331874,388497,0 -(1,6028:18943982,24976496:331874,388497,0 -) -g1,6028:19275856,24976496 -) -) -g1,6028:18943982,24976496 -g1,6028:18943982,24976496 -) -) -g1,6028:18943982,24976496 -) -) -g1,6028:18943982,24976496 -(1,6028:18943982,24976496:1120190,563240,184180 -g1,6028:19284663,24976496 -k1,6028:20064172,24976496:779509 -) -g1,6028:20064172,24976496 -(1,6028:20064172,24976496:1251262,563240,184180 -k1,6028:20843681,24976496:779509 -g1,6028:21315434,24976496 -(1,6028:21315434,24976496:0,563240,184180 -(1,6028:21315434,24976496:0,0,0 -(1,6028:21315434,24976496:0,0,0 -g1,6028:21315434,24976496 -g1,6028:21315434,24976496 -g1,6028:21315434,24976496 -g1,6028:21315434,24976496 -g1,6028:21315434,24976496 -(1,6028:21315434,24976496:0,0,0 -(1,6028:21315434,24976496:331874,388497,9436 -(1,6028:21315434,24976496:331874,388497,9436 -) -g1,6028:21647308,24976496 -) -) -g1,6028:21315434,24976496 -g1,6028:21315434,24976496 -) -) -g1,6028:21315434,24976496 -) -) -g1,6028:21315434,24976496 -(1,6029:21315434,24976496:1120190,563240,184180 -g1,6029:21656115,24976496 -k1,6029:22435624,24976496:779509 +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) -g1,6029:22435624,24976496 +] ) -(1,6029:15452340,25448314:6983284,194405,187851 -g1,6029:15452340,25448314 -(1,6029:15452340,25448314:1120190,194405,187851 -g1,6029:15452340,25448314 -g1,6029:16572530,25448314 -(1,6029:16572530,25448314:0,194405,187851 -(1,6029:16572530,25448314:0,0,0 -(1,6029:16572530,25448314:0,0,0 -g1,6029:16572530,25448314 -g1,6029:16572530,25448314 -g1,6029:16572530,25448314 -g1,6029:16572530,25448314 -g1,6029:16572530,25448314 -(1,6029:16572530,25448314:0,0,0 -(1,6029:16572530,25448314:1864679,6554,0 -(1,6029:16572530,25448314:1864679,6554,0 -(1,6029:16572530,25448314:1864679,6554,0 -r1,6082:18437209,25448314:1864679,6554,0 ) ) -g1,6029:18437209,25448314 +] +[1,5443:3078558,4812305:0,0,0 +(1,5443:3078558,49800853:0,16384,2228224 +g1,5443:29030814,49800853 +g1,5443:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,5443:36151628,51504789:16384,1179648,0 ) +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 +) +] ) -g1,6029:16572530,25448314 -g1,6029:16572530,25448314 +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,5443:37855564,49800853:1179648,16384,0 ) ) -g1,6029:16572530,25448314 +k1,5443:3078556,49800853:-34777008 +) +] +g1,5443:6630773,4812305 +g1,5443:6630773,4812305 +g1,5443:9472414,4812305 +g1,5443:10882093,4812305 +g1,5443:16529985,4812305 +g1,5443:18796220,4812305 +k1,5443:31786111,4812305:12989891 +) +) +] +[1,5443:6630773,45706769:25952256,40108032,0 +(1,5443:6630773,45706769:25952256,40108032,0 +(1,5443:6630773,45706769:0,0,0 +g1,5443:6630773,45706769 +) +[1,5443:6630773,45706769:25952256,40108032,0 +v1,5309:6630773,6254097:0,393216,0 +(1,5309:6630773,18248843:25952256,12387962,0 +g1,5309:6630773,18248843 +g1,5309:6237557,18248843 +r1,5443:6368629,18248843:131072,12387962,0 +g1,5309:6567858,18248843 +g1,5309:6764466,18248843 +[1,5309:6764466,18248843:25818563,12387962,0 +(1,5274:6764466,6374028:25818563,513147,134348 +k1,5273:8868244,6374028:180952 +k1,5273:11178461,6374028:180952 +k1,5273:13286171,6374028:180952 +k1,5273:17462853,6374028:180952 +k1,5273:19110501,6374028:180952 +k1,5273:19757414,6374028:180952 +k1,5273:22026343,6374028:180952 +(1,5273:22026343,6374028:0,414482,115847 +r1,5443:22384609,6374028:358266,530329,115847 +k1,5273:22026343,6374028:-358266 +) +(1,5273:22026343,6374028:358266,414482,115847 +k1,5273:22026343,6374028:3277 +h1,5273:22381332,6374028:0,411205,112570 +) +k1,5273:22565561,6374028:180952 +k1,5273:23953686,6374028:180952 +k1,5273:26484759,6374028:180952 +k1,5273:27427239,6374028:180952 +k1,5273:30605152,6374028:180952 +k1,5273:32583029,6374028:0 +) +(1,5274:6764466,7239108:25818563,505283,126483 +g1,5273:9832861,7239108 +g1,5273:10793618,7239108 +k1,5274:32583029,7239108:20411844 +g1,5274:32583029,7239108 +) +v1,5276:6764466,7923963:0,393216,0 +(1,5307:6764466,18052235:25818563,10521488,196608 +g1,5307:6764466,18052235 +g1,5307:6764466,18052235 +g1,5307:6567858,18052235 +(1,5307:6567858,18052235:0,10521488,196608 +r1,5443:32779637,18052235:26211779,10718096,196608 +k1,5307:6567857,18052235:-26211780 +) +(1,5307:6567858,18052235:26211779,10521488,196608 +[1,5307:6764466,18052235:25818563,10324880,0 +(1,5278:6764466,8151794:25818563,424439,106246 +(1,5277:6764466,8151794:0,0,0 +g1,5277:6764466,8151794 +g1,5277:6764466,8151794 +g1,5277:6436786,8151794 +(1,5277:6436786,8151794:0,0,0 +) +g1,5277:6764466,8151794 +) +g1,5278:8424236,8151794 +g1,5278:9420098,8151794 +g1,5278:13735500,8151794 +g1,5278:15395270,8151794 +g1,5278:16059178,8151794 +g1,5278:17055040,8151794 +g1,5278:19046764,8151794 +g1,5278:19710672,8151794 +h1,5278:21370442,8151794:0,0,0 +k1,5278:32583029,8151794:11212587 +g1,5278:32583029,8151794 +) +(1,5279:6764466,8836649:25818563,407923,6605 +h1,5279:6764466,8836649:0,0,0 +h1,5279:8092282,8836649:0,0,0 +k1,5279:32583030,8836649:24490748 +g1,5279:32583030,8836649 +) +(1,5288:6764466,9652576:25818563,424439,86428 +(1,5281:6764466,9652576:0,0,0 +g1,5281:6764466,9652576 +g1,5281:6764466,9652576 +g1,5281:6436786,9652576 +(1,5281:6436786,9652576:0,0,0 +) +g1,5281:6764466,9652576 +) +g1,5288:7760328,9652576 +g1,5288:8092282,9652576 +g1,5288:8424236,9652576 +g1,5288:8756190,9652576 +g1,5288:9088144,9652576 +g1,5288:9420098,9652576 +g1,5288:11079868,9652576 +g1,5288:12739638,9652576 +g1,5288:14399408,9652576 +k1,5288:14399408,9652576:0 +h1,5288:15727224,9652576:0,0,0 +k1,5288:32583028,9652576:16855804 +g1,5288:32583028,9652576 +) +(1,5288:6764466,10337431:25818563,424439,86428 +h1,5288:6764466,10337431:0,0,0 +g1,5288:7760328,10337431 +g1,5288:9420098,10337431 +g1,5288:9752052,10337431 +g1,5288:10084006,10337431 +g1,5288:10415960,10337431 +g1,5288:11079868,10337431 +g1,5288:11411822,10337431 +g1,5288:11743776,10337431 +g1,5288:12075730,10337431 +g1,5288:12739638,10337431 +g1,5288:13071592,10337431 +g1,5288:13403546,10337431 +g1,5288:13735500,10337431 +g1,5288:14399408,10337431 +g1,5288:14731362,10337431 +g1,5288:15063316,10337431 +g1,5288:15395270,10337431 +h1,5288:15727224,10337431:0,0,0 +k1,5288:32583028,10337431:16855804 +g1,5288:32583028,10337431 +) +(1,5288:6764466,11022286:25818563,424439,86428 +h1,5288:6764466,11022286:0,0,0 +g1,5288:7760328,11022286 +g1,5288:9420098,11022286 +g1,5288:9752052,11022286 +g1,5288:10084006,11022286 +g1,5288:10415960,11022286 +g1,5288:11079868,11022286 +g1,5288:11411822,11022286 +g1,5288:11743776,11022286 +g1,5288:12075730,11022286 +g1,5288:12739638,11022286 +g1,5288:13071592,11022286 +g1,5288:13403546,11022286 +g1,5288:13735500,11022286 +g1,5288:14399408,11022286 +g1,5288:14731362,11022286 +g1,5288:15063316,11022286 +g1,5288:15395270,11022286 +h1,5288:15727224,11022286:0,0,0 +k1,5288:32583028,11022286:16855804 +g1,5288:32583028,11022286 +) +(1,5288:6764466,11707141:25818563,424439,86428 +h1,5288:6764466,11707141:0,0,0 +g1,5288:7760328,11707141 +g1,5288:9420098,11707141 +g1,5288:9752052,11707141 +g1,5288:10084006,11707141 +g1,5288:10415960,11707141 +g1,5288:11079868,11707141 +g1,5288:11411822,11707141 +g1,5288:11743776,11707141 +g1,5288:12739638,11707141 +g1,5288:13071592,11707141 +g1,5288:13403546,11707141 +g1,5288:14399408,11707141 +g1,5288:14731362,11707141 +g1,5288:15063316,11707141 +h1,5288:15727224,11707141:0,0,0 +k1,5288:32583028,11707141:16855804 +g1,5288:32583028,11707141 +) +(1,5288:6764466,12391996:25818563,424439,86428 +h1,5288:6764466,12391996:0,0,0 +g1,5288:7760328,12391996 +g1,5288:9420098,12391996 +g1,5288:9752052,12391996 +g1,5288:10084006,12391996 +g1,5288:11079868,12391996 +g1,5288:11411822,12391996 +g1,5288:11743776,12391996 +g1,5288:12739638,12391996 +g1,5288:13071592,12391996 +g1,5288:13403546,12391996 +g1,5288:14399408,12391996 +g1,5288:14731362,12391996 +g1,5288:15063316,12391996 +h1,5288:15727224,12391996:0,0,0 +k1,5288:32583028,12391996:16855804 +g1,5288:32583028,12391996 +) +(1,5288:6764466,13076851:25818563,424439,86428 +h1,5288:6764466,13076851:0,0,0 +g1,5288:7760328,13076851 +g1,5288:9420098,13076851 +g1,5288:9752052,13076851 +g1,5288:10084006,13076851 +g1,5288:11079868,13076851 +g1,5288:11411822,13076851 +g1,5288:11743776,13076851 +g1,5288:12739638,13076851 +g1,5288:13071592,13076851 +g1,5288:13403546,13076851 +g1,5288:14399408,13076851 +g1,5288:14731362,13076851 +g1,5288:15063316,13076851 +h1,5288:15727224,13076851:0,0,0 +k1,5288:32583028,13076851:16855804 +g1,5288:32583028,13076851 +) +(1,5290:6764466,13892778:25818563,424439,79822 +(1,5289:6764466,13892778:0,0,0 +g1,5289:6764466,13892778 +g1,5289:6764466,13892778 +g1,5289:6436786,13892778 +(1,5289:6436786,13892778:0,0,0 +) +g1,5289:6764466,13892778 +) +k1,5290:6764466,13892778:0 +h1,5290:9752052,13892778:0,0,0 +k1,5290:32583028,13892778:22830976 +g1,5290:32583028,13892778 +) +(1,5294:6764466,14708705:25818563,424439,79822 +(1,5292:6764466,14708705:0,0,0 +g1,5292:6764466,14708705 +g1,5292:6764466,14708705 +g1,5292:6436786,14708705 +(1,5292:6436786,14708705:0,0,0 +) +g1,5292:6764466,14708705 +) +g1,5294:7760328,14708705 +g1,5294:9088144,14708705 +g1,5294:9752052,14708705 +h1,5294:10084006,14708705:0,0,0 +k1,5294:32583030,14708705:22499024 +g1,5294:32583030,14708705 +) +(1,5296:6764466,15524632:25818563,424439,79822 +(1,5295:6764466,15524632:0,0,0 +g1,5295:6764466,15524632 +g1,5295:6764466,15524632 +g1,5295:6436786,15524632 +(1,5295:6436786,15524632:0,0,0 +) +g1,5295:6764466,15524632 +) +h1,5296:9420098,15524632:0,0,0 +k1,5296:32583030,15524632:23162932 +g1,5296:32583030,15524632 +) +(1,5300:6764466,16340559:25818563,424439,79822 +(1,5298:6764466,16340559:0,0,0 +g1,5298:6764466,16340559 +g1,5298:6764466,16340559 +g1,5298:6436786,16340559 +(1,5298:6436786,16340559:0,0,0 +) +g1,5298:6764466,16340559 +) +g1,5300:7760328,16340559 +g1,5300:9088144,16340559 +h1,5300:9752052,16340559:0,0,0 +k1,5300:32583028,16340559:22830976 +g1,5300:32583028,16340559 +) +(1,5302:6764466,17156486:25818563,424439,86428 +(1,5301:6764466,17156486:0,0,0 +g1,5301:6764466,17156486 +g1,5301:6764466,17156486 +g1,5301:6436786,17156486 +(1,5301:6436786,17156486:0,0,0 +) +g1,5301:6764466,17156486 +) +k1,5302:6764466,17156486:0 +g1,5302:9420098,17156486 +h1,5302:10084006,17156486:0,0,0 +k1,5302:32583030,17156486:22499024 +g1,5302:32583030,17156486 +) +(1,5306:6764466,17972413:25818563,424439,79822 +(1,5304:6764466,17972413:0,0,0 +g1,5304:6764466,17972413 +g1,5304:6764466,17972413 +g1,5304:6436786,17972413 +(1,5304:6436786,17972413:0,0,0 +) +g1,5304:6764466,17972413 +) +g1,5306:7760328,17972413 +g1,5306:9088144,17972413 +h1,5306:9752052,17972413:0,0,0 +k1,5306:32583028,17972413:22830976 +g1,5306:32583028,17972413 +) +] +) +g1,5307:32583029,18052235 +g1,5307:6764466,18052235 +g1,5307:6764466,18052235 +g1,5307:32583029,18052235 +g1,5307:32583029,18052235 +) +h1,5307:6764466,18248843:0,0,0 +] +g1,5309:32583029,18248843 +) +h1,5309:6630773,18248843:0,0,0 +v1,5312:6630773,19113923:0,393216,0 +(1,5359:6630773,33394223:25952256,14673516,0 +g1,5359:6630773,33394223 +g1,5359:6237557,33394223 +r1,5443:6368629,33394223:131072,14673516,0 +g1,5359:6567858,33394223 +g1,5359:6764466,33394223 +[1,5359:6764466,33394223:25818563,14673516,0 +(1,5313:6764466,19422221:25818563,701514,196608 +(1,5312:6764466,19422221:0,701514,196608 +r1,5443:8010564,19422221:1246098,898122,196608 +k1,5312:6764466,19422221:-1246098 +) +(1,5312:6764466,19422221:1246098,701514,196608 +) +k1,5312:8268923,19422221:258359 +k1,5312:8596603,19422221:327680 +k1,5312:9482797,19422221:258359 +k1,5312:10329669,19422221:258359 +k1,5312:10943888,19422221:258359 +(1,5312:10943888,19422221:0,452978,115847 +r1,5443:13060713,19422221:2116825,568825,115847 +k1,5312:10943888,19422221:-2116825 +) +(1,5312:10943888,19422221:2116825,452978,115847 +k1,5312:10943888,19422221:3277 +h1,5312:13057436,19422221:0,411205,112570 +) +k1,5312:13319071,19422221:258358 +k1,5312:14681712,19422221:258359 +k1,5312:16415286,19422221:258359 +k1,5312:17029505,19422221:258359 +k1,5312:19160883,19422221:258359 +k1,5312:20796809,19422221:258359 +k1,5312:21411028,19422221:258359 +k1,5312:23542406,19422221:258359 +k1,5312:26357323,19422221:258358 +k1,5312:26971542,19422221:258359 +k1,5312:29102920,19422221:258359 +k1,5312:31900144,19422221:258359 +k1,5312:32583029,19422221:0 +) +(1,5313:6764466,20287301:25818563,505283,115847 +k1,5312:7799481,20287301:225645 +k1,5312:11067962,20287301:225644 +k1,5312:14228309,20287301:225645 +k1,5312:15069991,20287301:225644 +k1,5312:16061752,20287301:225645 +k1,5312:18158449,20287301:225644 +k1,5312:18739954,20287301:225645 +(1,5312:18739954,20287301:0,452978,115847 +r1,5443:20856779,20287301:2116825,568825,115847 +k1,5312:18739954,20287301:-2116825 +) +(1,5312:18739954,20287301:2116825,452978,115847 +k1,5312:18739954,20287301:3277 +h1,5312:20853502,20287301:0,411205,112570 +) +k1,5312:21082423,20287301:225644 +k1,5312:22440530,20287301:225645 +k1,5312:24141389,20287301:225644 +k1,5312:25053196,20287301:225645 +k1,5312:28807954,20287301:225644 +k1,5312:31812326,20287301:225645 +k1,5313:32583029,20287301:0 +) +(1,5313:6764466,21152381:25818563,513147,134348 +(1,5312:6764466,21152381:0,452978,122846 +r1,5443:9233003,21152381:2468537,575824,122846 +k1,5312:6764466,21152381:-2468537 +) +(1,5312:6764466,21152381:2468537,452978,122846 +k1,5312:6764466,21152381:3277 +h1,5312:9229726,21152381:0,411205,112570 +) +g1,5312:9432232,21152381 +g1,5312:11609338,21152381 +g1,5312:12467859,21152381 +g1,5312:14680354,21152381 +k1,5313:32583029,21152381:16556565 +g1,5313:32583029,21152381 +) +v1,5315:6764466,21837236:0,393216,0 +(1,5323:6764466,23557590:25818563,2113570,196608 +g1,5323:6764466,23557590 +g1,5323:6764466,23557590 +g1,5323:6567858,23557590 +(1,5323:6567858,23557590:0,2113570,196608 +r1,5443:32779637,23557590:26211779,2310178,196608 +k1,5323:6567857,23557590:-26211780 +) +(1,5323:6567858,23557590:26211779,2113570,196608 +[1,5323:6764466,23557590:25818563,1916962,0 +(1,5317:6764466,22048551:25818563,407923,9908 +(1,5316:6764466,22048551:0,0,0 +g1,5316:6764466,22048551 +g1,5316:6764466,22048551 +g1,5316:6436786,22048551 +(1,5316:6436786,22048551:0,0,0 +) +g1,5316:6764466,22048551 +) +g1,5317:8424236,22048551 +g1,5317:9420098,22048551 +h1,5317:10415960,22048551:0,0,0 +k1,5317:32583028,22048551:22167068 +g1,5317:32583028,22048551 +) +(1,5318:6764466,22733406:25818563,424439,79822 +h1,5318:6764466,22733406:0,0,0 +k1,5318:6764466,22733406:0 +h1,5318:9752052,22733406:0,0,0 +k1,5318:32583028,22733406:22830976 +g1,5318:32583028,22733406 +) +(1,5322:6764466,23549333:25818563,398014,8257 +(1,5320:6764466,23549333:0,0,0 +g1,5320:6764466,23549333 +g1,5320:6764466,23549333 +g1,5320:6436786,23549333 +(1,5320:6436786,23549333:0,0,0 +) +g1,5320:6764466,23549333 +) +g1,5322:7760328,23549333 +h1,5322:9088144,23549333:0,0,0 +k1,5322:32583028,23549333:23494884 +g1,5322:32583028,23549333 +) +] +) +g1,5323:32583029,23557590 +g1,5323:6764466,23557590 +g1,5323:6764466,23557590 +g1,5323:32583029,23557590 +g1,5323:32583029,23557590 +) +h1,5323:6764466,23754198:0,0,0 +v1,5327:6764466,24439053:0,393216,0 +(1,5356:6764466,33197615:25818563,9151778,196608 +g1,5356:6764466,33197615 +g1,5356:6764466,33197615 +g1,5356:6567858,33197615 +(1,5356:6567858,33197615:0,9151778,196608 +r1,5443:32779637,33197615:26211779,9348386,196608 +k1,5356:6567857,33197615:-26211780 +) +(1,5356:6567858,33197615:26211779,9151778,196608 +[1,5356:6764466,33197615:25818563,8955170,0 +(1,5329:6764466,24666884:25818563,424439,86428 +(1,5328:6764466,24666884:0,0,0 +g1,5328:6764466,24666884 +g1,5328:6764466,24666884 +g1,5328:6436786,24666884 +(1,5328:6436786,24666884:0,0,0 +) +g1,5328:6764466,24666884 +) +g1,5329:11743775,24666884 +g1,5329:12739637,24666884 +g1,5329:16723085,24666884 +g1,5329:18382855,24666884 +g1,5329:19046763,24666884 +h1,5329:19710671,24666884:0,0,0 +k1,5329:32583029,24666884:12872358 +g1,5329:32583029,24666884 +) +(1,5330:6764466,25351739:25818563,424439,79822 +h1,5330:6764466,25351739:0,0,0 +k1,5330:6764466,25351739:0 +h1,5330:13071591,25351739:0,0,0 +k1,5330:32583029,25351739:19511438 +g1,5330:32583029,25351739 +) +(1,5334:6764466,26167666:25818563,424439,79822 +(1,5332:6764466,26167666:0,0,0 +g1,5332:6764466,26167666 +g1,5332:6764466,26167666 +g1,5332:6436786,26167666 +(1,5332:6436786,26167666:0,0,0 +) +g1,5332:6764466,26167666 +) +g1,5334:7760328,26167666 +g1,5334:9088144,26167666 +g1,5334:9752052,26167666 +h1,5334:10084006,26167666:0,0,0 +k1,5334:32583030,26167666:22499024 +g1,5334:32583030,26167666 +) +(1,5336:6764466,26983593:25818563,424439,86428 +(1,5335:6764466,26983593:0,0,0 +g1,5335:6764466,26983593 +g1,5335:6764466,26983593 +g1,5335:6436786,26983593 +(1,5335:6436786,26983593:0,0,0 +) +g1,5335:6764466,26983593 +) +g1,5336:11743775,26983593 +g1,5336:12739637,26983593 +g1,5336:16723085,26983593 +g1,5336:18382855,26983593 +g1,5336:19046763,26983593 +h1,5336:19710671,26983593:0,0,0 +k1,5336:32583029,26983593:12872358 +g1,5336:32583029,26983593 +) +(1,5337:6764466,27668448:25818563,424439,79822 +h1,5337:6764466,27668448:0,0,0 +k1,5337:6764466,27668448:0 +h1,5337:13071591,27668448:0,0,0 +k1,5337:32583029,27668448:19511438 +g1,5337:32583029,27668448 +) +(1,5341:6764466,28484375:25818563,424439,79822 +(1,5339:6764466,28484375:0,0,0 +g1,5339:6764466,28484375 +g1,5339:6764466,28484375 +g1,5339:6436786,28484375 +(1,5339:6436786,28484375:0,0,0 +) +g1,5339:6764466,28484375 +) +g1,5341:7760328,28484375 +g1,5341:9088144,28484375 +g1,5341:9752052,28484375 +h1,5341:10084006,28484375:0,0,0 +k1,5341:32583030,28484375:22499024 +g1,5341:32583030,28484375 +) +(1,5343:6764466,29300302:25818563,424439,86428 +(1,5342:6764466,29300302:0,0,0 +g1,5342:6764466,29300302 +g1,5342:6764466,29300302 +g1,5342:6436786,29300302 +(1,5342:6436786,29300302:0,0,0 +) +g1,5342:6764466,29300302 +) +g1,5343:12075729,29300302 +g1,5343:13071591,29300302 +g1,5343:16391131,29300302 +g1,5343:18050901,29300302 +g1,5343:18714809,29300302 +h1,5343:19378717,29300302:0,0,0 +k1,5343:32583029,29300302:13204312 +g1,5343:32583029,29300302 +) +(1,5344:6764466,29985157:25818563,424439,79822 +h1,5344:6764466,29985157:0,0,0 +k1,5344:6764466,29985157:0 +h1,5344:13403545,29985157:0,0,0 +k1,5344:32583029,29985157:19179484 +g1,5344:32583029,29985157 +) +(1,5348:6764466,30801084:25818563,424439,79822 +(1,5346:6764466,30801084:0,0,0 +g1,5346:6764466,30801084 +g1,5346:6764466,30801084 +g1,5346:6436786,30801084 +(1,5346:6436786,30801084:0,0,0 +) +g1,5346:6764466,30801084 +) +g1,5348:7760328,30801084 +g1,5348:9088144,30801084 +g1,5348:9752052,30801084 +h1,5348:10084006,30801084:0,0,0 +k1,5348:32583030,30801084:22499024 +g1,5348:32583030,30801084 +) +(1,5350:6764466,31617011:25818563,424439,86428 +(1,5349:6764466,31617011:0,0,0 +g1,5349:6764466,31617011 +g1,5349:6764466,31617011 +g1,5349:6436786,31617011 +(1,5349:6436786,31617011:0,0,0 +) +g1,5349:6764466,31617011 +) +g1,5350:11743775,31617011 +g1,5350:12739637,31617011 +g1,5350:18714809,31617011 +g1,5350:20374579,31617011 +g1,5350:21038487,31617011 +h1,5350:21702395,31617011:0,0,0 +k1,5350:32583029,31617011:10880634 +g1,5350:32583029,31617011 +) +(1,5351:6764466,32301866:25818563,424439,79822 +h1,5351:6764466,32301866:0,0,0 +k1,5351:6764466,32301866:0 +h1,5351:13071591,32301866:0,0,0 +k1,5351:32583029,32301866:19511438 +g1,5351:32583029,32301866 +) +(1,5355:6764466,33117793:25818563,424439,79822 +(1,5353:6764466,33117793:0,0,0 +g1,5353:6764466,33117793 +g1,5353:6764466,33117793 +g1,5353:6436786,33117793 +(1,5353:6436786,33117793:0,0,0 +) +g1,5353:6764466,33117793 +) +g1,5355:7760328,33117793 +g1,5355:9088144,33117793 +g1,5355:9752052,33117793 +h1,5355:10084006,33117793:0,0,0 +k1,5355:32583030,33117793:22499024 +g1,5355:32583030,33117793 +) +] +) +g1,5356:32583029,33197615 +g1,5356:6764466,33197615 +g1,5356:6764466,33197615 +g1,5356:32583029,33197615 +g1,5356:32583029,33197615 +) +h1,5356:6764466,33394223:0,0,0 +] +g1,5359:32583029,33394223 +) +h1,5359:6630773,33394223:0,0,0 +(1,5362:6630773,34259303:25952256,505283,126483 +h1,5361:6630773,34259303:983040,0,0 +k1,5361:9962573,34259303:237190 +k1,5361:11191323,34259303:237190 +k1,5361:13630523,34259303:237190 +k1,5361:14519140,34259303:237189 +k1,5361:17663507,34259303:237190 +k1,5361:18972866,34259303:237190 +k1,5361:20314338,34259303:237190 +k1,5361:22026743,34259303:237190 +k1,5361:23420643,34259303:237190 +k1,5361:24340717,34259303:237189 +k1,5361:26228104,34259303:237190 +k1,5361:30314223,34259303:237190 +k1,5361:31748100,34259303:237190 +k1,5362:32583029,34259303:0 +) +(1,5362:6630773,35124383:25952256,513147,126483 +k1,5361:9820947,35124383:136852 +k1,5361:10617091,35124383:136852 +k1,5361:11524645,35124383:136851 +k1,5361:13311038,35124383:136852 +k1,5361:14552172,35124383:136852 +k1,5361:15436790,35124383:136852 +k1,5361:17997818,35124383:136851 +k1,5361:19528621,35124383:136852 +(1,5361:19528621,35124383:0,452978,115847 +r1,5443:21293734,35124383:1765113,568825,115847 +k1,5361:19528621,35124383:-1765113 +) +(1,5361:19528621,35124383:1765113,452978,115847 +k1,5361:19528621,35124383:3277 +h1,5361:21290457,35124383:0,411205,112570 +) +k1,5361:21604256,35124383:136852 +k1,5361:24509349,35124383:136852 +k1,5361:25332362,35124383:136851 +k1,5361:26863165,35124383:136852 +k1,5361:29907194,35124383:136852 +k1,5361:32583029,35124383:0 +) +(1,5362:6630773,35989463:25952256,513147,134348 +k1,5361:7619725,35989463:218249 +k1,5361:8252799,35989463:218231 +k1,5361:10430574,35989463:218249 +k1,5361:11180321,35989463:218250 +k1,5361:12169273,35989463:218249 +k1,5361:14037064,35989463:218250 +k1,5361:15359595,35989463:218249 +k1,5361:16325611,35989463:218250 +k1,5361:18453579,35989463:218249 +k1,5361:19738100,35989463:218250 +k1,5361:21350300,35989463:218249 +(1,5361:21350300,35989463:0,452978,115847 +r1,5443:24873972,35989463:3523672,568825,115847 +k1,5361:21350300,35989463:-3523672 +) +(1,5361:21350300,35989463:3523672,452978,115847 +k1,5361:21350300,35989463:3277 +h1,5361:24870695,35989463:0,411205,112570 +) +k1,5361:25265892,35989463:218250 +k1,5361:26680828,35989463:218249 +k1,5361:29515275,35989463:218250 +k1,5361:31601955,35989463:218249 +k1,5362:32583029,35989463:0 +) +(1,5362:6630773,36854543:25952256,505283,134348 +k1,5361:8465691,36854543:292200 +k1,5361:9528593,36854543:292199 +k1,5361:11644005,36854543:292200 +$1,5361:11644005,36854543 +$1,5361:12161739,36854543 +k1,5361:12453938,36854543:292199 +k1,5361:14140089,36854543:292200 +k1,5361:16087073,36854543:292200 +k1,5361:20054531,36854543:292199 +k1,5361:22269557,36854543:292200 +k1,5361:22917617,36854543:292200 +k1,5361:24478593,36854543:292199 +k1,5361:26498322,36854543:292200 +k1,5361:27441949,36854543:292199 +$1,5361:27441949,36854543 +k1,5361:27913121,36854543:213616 +k1,5361:28694933,36854543:213615 +k1,5361:29628789,36854543:213615 +k1,5361:30410601,36854543:213615 +$1,5361:30925714,36854543 +k1,5361:31391584,36854543:292200 +k1,5361:32583029,36854543:0 +) +(1,5362:6630773,37719623:25952256,505283,195111 +g1,5361:10022916,37719623 +g1,5361:12232790,37719623 +g1,5361:15034454,37719623 +g1,5361:15995211,37719623 +$1,5361:15995211,37719623 +(1,5361:16457895,37817937:1041564,353698,96797 +) +$1,5361:17499459,37719623 +k1,5362:32583029,37719623:14909900 +g1,5362:32583029,37719623 +) +] +(1,5443:32583029,45706769:0,0,0 +g1,5443:32583029,45706769 +) +) +] +(1,5443:6630773,47279633:25952256,0,0 +h1,5443:6630773,47279633:25952256,0,0 +) +] +(1,5443:4262630,4025873:0,0,0 +[1,5443:-473656,4025873:0,0,0 +(1,5443:-473656,-710413:0,0,0 +(1,5443:-473656,-710413:0,0,0 +g1,5443:-473656,-710413 +) +g1,5443:-473656,-710413 +) +] +) +] +!23102 +}88 +Input:799:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:800:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!197 +{89 +[1,5487:4262630,47279633:28320399,43253760,0 +(1,5487:4262630,4025873:0,0,0 +[1,5487:-473656,4025873:0,0,0 +(1,5487:-473656,-710413:0,0,0 +(1,5487:-473656,-644877:0,0,0 +k1,5487:-473656,-644877:-65536 ) +(1,5487:-473656,4736287:0,0,0 +k1,5487:-473656,4736287:5209943 ) -g1,6029:16572530,25448314 -(1,6029:16572530,25448314:1120190,194405,187851 -g1,6029:17692720,25448314 -g1,6029:17692720,25448314 +g1,5487:-473656,-710413 ) -g1,6029:17692720,25448314 -(1,6029:17692720,25448314:1251262,194405,187851 -g1,6029:17692720,25448314 -g1,6029:18943982,25448314 -(1,6029:18943982,25448314:0,194405,187851 -(1,6029:18943982,25448314:0,0,0 -(1,6029:18943982,25448314:0,0,0 -g1,6029:18943982,25448314 -g1,6029:18943982,25448314 -g1,6029:18943982,25448314 -g1,6029:18943982,25448314 -g1,6029:18943982,25448314 -(1,6029:18943982,25448314:0,0,0 -(1,6029:18943982,25448314:1864679,6554,0 -(1,6029:18943982,25448314:1864679,6554,0 -(1,6029:18943982,25448314:1864679,6554,0 -r1,6082:20808661,25448314:1864679,6554,0 +] ) +[1,5487:6630773,47279633:25952256,43253760,0 +[1,5487:6630773,4812305:25952256,786432,0 +(1,5487:6630773,4812305:25952256,505283,11795 +(1,5487:6630773,4812305:25952256,505283,11795 +g1,5487:3078558,4812305 +[1,5487:3078558,4812305:0,0,0 +(1,5487:3078558,2439708:0,1703936,0 +k1,5487:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,5487:2537886,2439708:1179648,16384,0 ) -g1,6029:20808661,25448314 +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,5487:3078558,1915420:16384,1179648,0 ) +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) -g1,6029:18943982,25448314 -g1,6029:18943982,25448314 +] ) ) -g1,6029:18943982,25448314 ) +] +[1,5487:3078558,4812305:0,0,0 +(1,5487:3078558,2439708:0,1703936,0 +g1,5487:29030814,2439708 +g1,5487:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,5487:36151628,1915420:16384,1179648,0 ) -g1,6029:18943982,25448314 -(1,6029:18943982,25448314:1120190,194405,187851 -g1,6029:20064172,25448314 -g1,6029:20064172,25448314 +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) -g1,6029:20064172,25448314 -(1,6029:20064172,25448314:1251262,194405,187851 -g1,6029:20064172,25448314 -g1,6029:21315434,25448314 -(1,6029:21315434,25448314:0,194405,187851 -(1,6029:21315434,25448314:0,0,0 -(1,6029:21315434,25448314:0,0,0 -g1,6029:21315434,25448314 -g1,6029:21315434,25448314 -g1,6029:21315434,25448314 -g1,6029:21315434,25448314 -g1,6029:21315434,25448314 -(1,6029:21315434,25448314:0,0,0 -(1,6029:21315434,25448314:1864679,6554,0 -(1,6029:21315434,25448314:1864679,6554,0 -(1,6029:21315434,25448314:1864679,6554,0 -r1,6082:23180113,25448314:1864679,6554,0 +] ) +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,5487:37855564,2439708:1179648,16384,0 ) -g1,6029:23180113,25448314 ) +k1,5487:3078556,2439708:-34777008 ) -g1,6029:21315434,25448314 -g1,6029:21315434,25448314 +] +[1,5487:3078558,4812305:0,0,0 +(1,5487:3078558,49800853:0,16384,2228224 +k1,5487:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,5487:2537886,49800853:1179648,16384,0 ) +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,5487:3078558,51504789:16384,1179648,0 ) -g1,6029:21315434,25448314 +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) +] ) -g1,6029:21315434,25448314 -(1,6029:21315434,25448314:1120190,194405,187851 -g1,6029:22435624,25448314 -g1,6029:22435624,25448314 ) -g1,6029:22435624,25448314 ) ] +[1,5487:3078558,4812305:0,0,0 +(1,5487:3078558,49800853:0,16384,2228224 +g1,5487:29030814,49800853 +g1,5487:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,5487:36151628,51504789:16384,1179648,0 ) +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 ) -g1,6029:15452340,25448314 -g1,6029:15452340,25448314 +] ) +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,5487:37855564,49800853:1179648,16384,0 ) -g1,6029:15452340,25448314 -g1,6033:15452340,25448314 -g1,6033:15452340,25448314 -g1,6035:15452340,25448314 -(1,6035:15452340,25448314:0,0,0 -(1,6035:15452340,25448314:0,0,0 -g1,6035:15452340,25448314 -(1,6035:15452340,25448314:0,0,0 -(1,6035:15452340,25448314:1694771,469599,203132 -(1,6035:15452340,25448314:1694771,469599,203132 -(1,6035:15452340,25448314:0,469599,203132 -r1,6082:17147111,25448314:1694771,672731,203132 -k1,6035:15452340,25448314:-1694771 ) -(1,6035:15452340,25448314:1694771,469599,203132 -r1,6082:15455617,25448314:0,666177,199855 -h1,6035:17143834,25448314:0,328964,90056 +k1,5487:3078556,49800853:-34777008 ) +] +g1,5487:6630773,4812305 +k1,5487:22348274,4812305:14920583 +g1,5487:23970945,4812305 +g1,5487:24793421,4812305 +g1,5487:27528893,4812305 +g1,5487:28938572,4812305 ) -g1,6035:17147111,25448314 ) +] +[1,5487:6630773,45706769:25952256,40108032,0 +(1,5487:6630773,45706769:25952256,40108032,0 +(1,5487:6630773,45706769:0,0,0 +g1,5487:6630773,45706769 ) -g1,6035:15452340,25448314 -g1,6035:15452340,25448314 +[1,5487:6630773,45706769:25952256,40108032,0 +(1,5443:6630773,20209377:25952256,14610640,0 +k1,5443:11522327,20209377:4891554 +(1,5364:11522327,20209377:0,0,0 +g1,5364:11522327,20209377 +g1,5364:11522327,20209377 +g1,5364:11194647,20209377 +(1,5364:11194647,20209377:0,0,0 ) +g1,5364:11522327,20209377 +) +(1,5441:11522327,20209377:16169148,14610640,0 +g1,5441:17585764,20209377 +(1,5441:17585764,14151182:0,0,0 +(1,5441:17585764,14151182:0,0,0 +(1,5410:17585764,14151182:0,0,0 +(1,5410:17585764,14151182:0,0,0 +g1,5410:17585764,14151182 +g1,5410:17585764,14151182 +g1,5410:17585764,14151182 +g1,5410:17585764,14151182 +g1,5410:17585764,14151182 +(1,5410:17585764,14151182:0,0,0 +(1,5410:17585764,14151182:9188142,8264085,924057 +[1,5410:17585764,14151182:9188142,8264085,924057 +(1,5406:17585764,6811154:9188142,924057,924057 +g1,5405:17585764,6811154 +(1,5405:17585764,6811154:924057,924057,924057 +g1,5405:17585764,6811154 +g1,5405:18509821,6811154 +(1,5405:18509821,6811154:0,924057,924057 +(1,5405:18509821,6811154:0,0,0 +(1,5405:18509821,6811154:0,0,0 +g1,5405:18509821,6811154 +g1,5405:18509821,6811154 +g1,5405:18509821,6811154 +g1,5405:18509821,6811154 +g1,5405:18509821,6811154 +(1,5405:18509821,6811154:0,0,0 +(1,5405:18509821,6811154:1347418,281018,140387 +(1,5405:18509821,6811154:1347418,281018,140387 +$1,5405:18509821,6811154 +h1,5405:18509821,6811154:0,281018,137888 +(1,5405:18879968,6889806:977271,289014,61735 +) +$1,5405:19857239,6811154 +) +g1,5405:19857239,6811154 +) +) +g1,5405:18509821,6811154 +g1,5405:18509821,6811154 +) +) +g1,5405:18509821,6811154 ) -(1,6036:15452340,25448314:0,0,0 -(1,6036:15452340,25448314:0,0,0 -g1,6036:15452340,25448314 -(1,6036:15452340,25448314:0,0,0 -(1,6036:15452340,25448314:666177,321389,0 -(1,6036:15452340,25448314:666177,321389,0 -(1,6036:15452340,25448314:666177,321389,0 -(1,6036:15918662,25448314:321389,466322,199855 -(1,6036:15918662,25448314:321389,466322,199855 -r1,6082:16240051,25448314:0,666177,199855 ) +g1,5405:18509821,6811154 +(1,5405:18509821,6811154:924057,924057,924057 +g1,5405:19433878,6811154 +g1,5405:19433878,6811154 +) +g1,5405:19433878,6811154 +(1,5405:19433878,6811154:910950,924057,924057 +g1,5405:19433878,6811154 +g1,5405:20344828,6811154 +(1,5405:20344828,6811154:0,924057,924057 +(1,5405:20344828,6811154:0,0,0 +(1,5405:20344828,6811154:0,0,0 +g1,5405:20344828,6811154 +g1,5405:20344828,6811154 +g1,5405:20344828,6811154 +g1,5405:20344828,6811154 +g1,5405:20344828,6811154 +(1,5405:20344828,6811154:0,0,0 +(1,5405:20344828,6811154:1347418,281018,140387 +(1,5405:20344828,6811154:1347418,281018,140387 +$1,5405:20344828,6811154 +h1,5405:20344828,6811154:0,281018,137888 +(1,5405:20714975,6889806:977271,291373,61735 +) +$1,5405:21692246,6811154 +) +g1,5405:21692246,6811154 +) +) +g1,5405:20344828,6811154 +g1,5405:20344828,6811154 +) +) +g1,5405:20344828,6811154 +) +) +g1,5405:20344828,6811154 +(1,5405:20344828,6811154:924057,924057,924057 +g1,5405:21268885,6811154 +g1,5405:21268885,6811154 +) +g1,5405:21268885,6811154 +(1,5405:21268885,6811154:910950,924057,924057 +g1,5405:21268885,6811154 +g1,5405:22179835,6811154 +(1,5405:22179835,6811154:0,924057,924057 +(1,5405:22179835,6811154:0,0,0 +(1,5405:22179835,6811154:0,0,0 +g1,5405:22179835,6811154 +g1,5405:22179835,6811154 +g1,5405:22179835,6811154 +g1,5405:22179835,6811154 +g1,5405:22179835,6811154 +(1,5405:22179835,6811154:0,0,0 +(1,5405:22179835,6811154:1347418,281018,140387 +(1,5405:22179835,6811154:1347418,281018,140387 +$1,5405:22179835,6811154 +h1,5405:22179835,6811154:0,281018,137888 +(1,5405:22549982,6889806:977271,291373,61735 +) +$1,5405:23527253,6811154 +) +g1,5405:23527253,6811154 +) +) +g1,5405:22179835,6811154 +g1,5405:22179835,6811154 +) +) +g1,5405:22179835,6811154 +) +) +g1,5405:22179835,6811154 +(1,5405:22179835,6811154:924057,924057,924057 +g1,5405:23103892,6811154 +g1,5405:23103892,6811154 +) +g1,5405:23103892,6811154 +(1,5405:23103892,6811154:910950,924057,924057 +g1,5405:23103892,6811154 +g1,5405:24014842,6811154 +(1,5405:24014842,6811154:0,924057,924057 +(1,5405:24014842,6811154:0,0,0 +(1,5405:24014842,6811154:0,0,0 +g1,5405:24014842,6811154 +g1,5405:24014842,6811154 +g1,5405:24014842,6811154 +g1,5405:24014842,6811154 +g1,5405:24014842,6811154 +(1,5405:24014842,6811154:0,0,0 +(1,5405:24014842,6811154:549288,281018,137888 +(1,5405:24014842,6811154:549288,281018,137888 +$1,5405:24014842,6811154 +h1,5405:24014842,6811154:0,281018,137888 +g1,5405:24102232,6811154 +$1,5405:24564130,6811154 +) +g1,5405:24564130,6811154 +) +) +g1,5405:24014842,6811154 +g1,5405:24014842,6811154 +) +) +g1,5405:24014842,6811154 +) +) +g1,5405:24014842,6811154 +(1,5405:24014842,6811154:924057,924057,924057 +g1,5405:24938899,6811154 +g1,5405:24938899,6811154 +) +g1,5405:24938899,6811154 +(1,5405:24938899,6811154:910950,924057,924057 +g1,5405:24938899,6811154 +g1,5405:25849849,6811154 +(1,5405:25849849,6811154:0,924057,924057 +(1,5405:25849849,6811154:0,0,0 +(1,5405:25849849,6811154:0,0,0 +g1,5405:25849849,6811154 +g1,5405:25849849,6811154 +g1,5405:25849849,6811154 +g1,5405:25849849,6811154 +g1,5405:25849849,6811154 +(1,5405:25849849,6811154:0,0,0 +(1,5405:25849849,6811154:1540487,281018,140387 +(1,5405:25849849,6811154:1540487,281018,140387 +$1,5405:25849849,6811154 +h1,5405:25849849,6811154:0,281018,137888 +(1,5405:26219996,6889806:1170340,289014,61735 ) +$1,5405:27390336,6811154 +) +g1,5405:27390336,6811154 +) +) +g1,5405:25849849,6811154 +g1,5405:25849849,6811154 +) +) +g1,5405:25849849,6811154 +) +) +g1,5405:25849849,6811154 +(1,5406:25849849,6811154:924057,924057,924057 +g1,5406:26773906,6811154 +g1,5406:26773906,6811154 +) +g1,5406:26773906,6811154 ) +(1,5407:17585764,8646161:9188142,924057,924057 +g1,5406:17585764,8646161 +(1,5406:17585764,8646161:924057,924057,924057 +g1,5406:17585764,8646161 +g1,5406:18509821,8646161 +(1,5406:18509821,8646161:0,924057,924057 +(1,5406:18509821,8646161:0,0,0 +(1,5406:18509821,8646161:0,0,0 +g1,5406:18509821,8646161 +g1,5406:18509821,8646161 +g1,5406:18509821,8646161 +g1,5406:18509821,8646161 +g1,5406:18509821,8646161 +(1,5406:18509821,8646161:0,0,0 +(1,5406:18509821,8646161:1347418,281018,140387 +(1,5406:18509821,8646161:1347418,281018,140387 +$1,5406:18509821,8646161 +h1,5406:18509821,8646161:0,281018,137888 +(1,5406:18879968,8724813:977271,291373,61735 +) +$1,5406:19857239,8646161 +) +g1,5406:19857239,8646161 +) +) +g1,5406:18509821,8646161 +g1,5406:18509821,8646161 +) +) +g1,5406:18509821,8646161 +) +) +g1,5406:18509821,8646161 +(1,5406:18509821,8646161:924057,924057,924057 +g1,5406:19433878,8646161 +g1,5406:19433878,8646161 ) -g1,6036:16118517,25448314 +g1,5406:19433878,8646161 +(1,5406:19433878,8646161:910950,924057,924057 +g1,5406:19433878,8646161 +g1,5406:20344828,8646161 +(1,5406:20344828,8646161:0,924057,924057 +(1,5406:20344828,8646161:0,0,0 +(1,5406:20344828,8646161:0,0,0 +g1,5406:20344828,8646161 +g1,5406:20344828,8646161 +g1,5406:20344828,8646161 +g1,5406:20344828,8646161 +g1,5406:20344828,8646161 +(1,5406:20344828,8646161:0,0,0 +(1,5406:20344828,8646161:1347418,281018,140387 +(1,5406:20344828,8646161:1347418,281018,140387 +$1,5406:20344828,8646161 +h1,5406:20344828,8646161:0,281018,137888 +(1,5406:20714975,8724813:977271,291373,61735 +) +$1,5406:21692246,8646161 +) +g1,5406:21692246,8646161 +) +) +g1,5406:20344828,8646161 +g1,5406:20344828,8646161 +) +) +g1,5406:20344828,8646161 +) +) +g1,5406:20344828,8646161 +(1,5406:20344828,8646161:924057,924057,924057 +g1,5406:21268885,8646161 +g1,5406:21268885,8646161 ) +g1,5406:21268885,8646161 +(1,5406:21268885,8646161:910950,924057,924057 +g1,5406:21268885,8646161 +g1,5406:22179835,8646161 +(1,5406:22179835,8646161:0,924057,924057 +(1,5406:22179835,8646161:0,0,0 +(1,5406:22179835,8646161:0,0,0 +g1,5406:22179835,8646161 +g1,5406:22179835,8646161 +g1,5406:22179835,8646161 +g1,5406:22179835,8646161 +g1,5406:22179835,8646161 +(1,5406:22179835,8646161:0,0,0 +(1,5406:22179835,8646161:1347418,281018,140387 +(1,5406:22179835,8646161:1347418,281018,140387 +$1,5406:22179835,8646161 +h1,5406:22179835,8646161:0,281018,137888 +(1,5406:22549982,8724813:977271,291373,61735 +) +$1,5406:23527253,8646161 +) +g1,5406:23527253,8646161 +) +) +g1,5406:22179835,8646161 +g1,5406:22179835,8646161 +) +) +g1,5406:22179835,8646161 +) +) +g1,5406:22179835,8646161 +(1,5406:22179835,8646161:924057,924057,924057 +g1,5406:23103892,8646161 +g1,5406:23103892,8646161 ) -g1,6036:15452340,25448314 -g1,6036:15452340,25448314 +g1,5406:23103892,8646161 +(1,5406:23103892,8646161:910950,924057,924057 +g1,5406:23103892,8646161 +g1,5406:24014842,8646161 +(1,5406:24014842,8646161:0,924057,924057 +(1,5406:24014842,8646161:0,0,0 +(1,5406:24014842,8646161:0,0,0 +g1,5406:24014842,8646161 +g1,5406:24014842,8646161 +g1,5406:24014842,8646161 +g1,5406:24014842,8646161 +g1,5406:24014842,8646161 +(1,5406:24014842,8646161:0,0,0 +(1,5406:24014842,8646161:0,281018,137888 +(1,5406:24014842,8646161:0,281018,137888 +$1,5406:24014842,8646161 +h1,5406:24014842,8646161:0,281018,137888 +$1,5406:24014842,8646161 ) +g1,5406:24014842,8646161 +) +) +g1,5406:24014842,8646161 +g1,5406:24014842,8646161 +) +) +g1,5406:24014842,8646161 +) +) +g1,5406:24014842,8646161 +(1,5406:24014842,8646161:924057,924057,924057 +g1,5406:24938899,8646161 +g1,5406:24938899,8646161 +) +g1,5406:24938899,8646161 +(1,5406:24938899,8646161:910950,924057,924057 +g1,5406:24938899,8646161 +g1,5406:25849849,8646161 +(1,5406:25849849,8646161:0,924057,924057 +(1,5406:25849849,8646161:0,0,0 +(1,5406:25849849,8646161:0,0,0 +g1,5406:25849849,8646161 +g1,5406:25849849,8646161 +g1,5406:25849849,8646161 +g1,5406:25849849,8646161 +g1,5406:25849849,8646161 +(1,5406:25849849,8646161:0,0,0 +(1,5406:25849849,8646161:1540487,281018,140387 +(1,5406:25849849,8646161:1540487,281018,140387 +$1,5406:25849849,8646161 +h1,5406:25849849,8646161:0,281018,137888 +(1,5406:26219996,8724813:1170340,291373,61735 ) -(1,6037:15452340,25448314:0,0,0 -(1,6037:15452340,25448314:0,0,0 -g1,6037:15452340,25448314 -(1,6037:15452340,25448314:0,0,0 -(1,6037:15452340,25448314:666177,273678,0 -(1,6037:15452340,25448314:666177,273678,0 -(1,6037:15452340,25448314:666177,273678,0 -(1,6037:15918662,25448314:273678,466322,199855 -(1,6037:15918662,25448314:273678,466322,199855 -r1,6082:16192340,25448314:0,666177,199855 +$1,5406:27390336,8646161 ) +g1,5406:27390336,8646161 +) +) +g1,5406:25849849,8646161 +g1,5406:25849849,8646161 +) +) +g1,5406:25849849,8646161 +) +) +g1,5406:25849849,8646161 +(1,5407:25849849,8646161:924057,924057,924057 +g1,5407:26773906,8646161 +g1,5407:26773906,8646161 +) +g1,5407:26773906,8646161 ) +(1,5408:17585764,10481168:9188142,924057,924057 +g1,5407:17585764,10481168 +(1,5407:17585764,10481168:924057,924057,924057 +g1,5407:17585764,10481168 +g1,5407:18509821,10481168 +(1,5407:18509821,10481168:0,924057,924057 +(1,5407:18509821,10481168:0,0,0 +(1,5407:18509821,10481168:0,0,0 +g1,5407:18509821,10481168 +g1,5407:18509821,10481168 +g1,5407:18509821,10481168 +g1,5407:18509821,10481168 +g1,5407:18509821,10481168 +(1,5407:18509821,10481168:0,0,0 +(1,5407:18509821,10481168:1347418,281018,140387 +(1,5407:18509821,10481168:1347418,281018,140387 +$1,5407:18509821,10481168 +h1,5407:18509821,10481168:0,281018,137888 +(1,5407:18879968,10559820:977271,291373,61735 +) +$1,5407:19857239,10481168 +) +g1,5407:19857239,10481168 +) +) +g1,5407:18509821,10481168 +g1,5407:18509821,10481168 +) +) +g1,5407:18509821,10481168 +) +) +g1,5407:18509821,10481168 +(1,5407:18509821,10481168:924057,924057,924057 +g1,5407:19433878,10481168 +g1,5407:19433878,10481168 ) +g1,5407:19433878,10481168 +(1,5407:19433878,10481168:910950,924057,924057 +g1,5407:19433878,10481168 +g1,5407:20344828,10481168 +(1,5407:20344828,10481168:0,924057,924057 +(1,5407:20344828,10481168:0,0,0 +(1,5407:20344828,10481168:0,0,0 +g1,5407:20344828,10481168 +g1,5407:20344828,10481168 +g1,5407:20344828,10481168 +g1,5407:20344828,10481168 +g1,5407:20344828,10481168 +(1,5407:20344828,10481168:0,0,0 +(1,5407:20344828,10481168:1347418,281018,140387 +(1,5407:20344828,10481168:1347418,281018,140387 +$1,5407:20344828,10481168 +h1,5407:20344828,10481168:0,281018,137888 +(1,5407:20714975,10559820:977271,291373,61735 +) +$1,5407:21692246,10481168 +) +g1,5407:21692246,10481168 +) +) +g1,5407:20344828,10481168 +g1,5407:20344828,10481168 +) +) +g1,5407:20344828,10481168 +) +) +g1,5407:20344828,10481168 +(1,5407:20344828,10481168:924057,924057,924057 +g1,5407:21268885,10481168 +g1,5407:21268885,10481168 ) -g1,6037:16118517,25448314 +g1,5407:21268885,10481168 +(1,5407:21268885,10481168:910950,924057,924057 +g1,5407:21268885,10481168 +g1,5407:22179835,10481168 +(1,5407:22179835,10481168:0,924057,924057 +(1,5407:22179835,10481168:0,0,0 +(1,5407:22179835,10481168:0,0,0 +g1,5407:22179835,10481168 +g1,5407:22179835,10481168 +g1,5407:22179835,10481168 +g1,5407:22179835,10481168 +g1,5407:22179835,10481168 +(1,5407:22179835,10481168:0,0,0 +(1,5407:22179835,10481168:1347418,281018,140387 +(1,5407:22179835,10481168:1347418,281018,140387 +$1,5407:22179835,10481168 +h1,5407:22179835,10481168:0,281018,137888 +(1,5407:22549982,10559820:977271,291373,61735 +) +$1,5407:23527253,10481168 +) +g1,5407:23527253,10481168 +) +) +g1,5407:22179835,10481168 +g1,5407:22179835,10481168 +) +) +g1,5407:22179835,10481168 +) +) +g1,5407:22179835,10481168 +(1,5407:22179835,10481168:924057,924057,924057 +g1,5407:23103892,10481168 +g1,5407:23103892,10481168 ) +g1,5407:23103892,10481168 +(1,5407:23103892,10481168:910950,924057,924057 +g1,5407:23103892,10481168 +g1,5407:24014842,10481168 +(1,5407:24014842,10481168:0,924057,924057 +(1,5407:24014842,10481168:0,0,0 +(1,5407:24014842,10481168:0,0,0 +g1,5407:24014842,10481168 +g1,5407:24014842,10481168 +g1,5407:24014842,10481168 +g1,5407:24014842,10481168 +g1,5407:24014842,10481168 +(1,5407:24014842,10481168:0,0,0 +(1,5407:24014842,10481168:0,281018,137888 +(1,5407:24014842,10481168:0,281018,137888 +$1,5407:24014842,10481168 +h1,5407:24014842,10481168:0,281018,137888 +$1,5407:24014842,10481168 +) +g1,5407:24014842,10481168 +) +) +g1,5407:24014842,10481168 +g1,5407:24014842,10481168 +) +) +g1,5407:24014842,10481168 +) +) +g1,5407:24014842,10481168 +(1,5407:24014842,10481168:924057,924057,924057 +g1,5407:24938899,10481168 +g1,5407:24938899,10481168 +) +g1,5407:24938899,10481168 +(1,5407:24938899,10481168:910950,924057,924057 +g1,5407:24938899,10481168 +g1,5407:25849849,10481168 +(1,5407:25849849,10481168:0,924057,924057 +(1,5407:25849849,10481168:0,0,0 +(1,5407:25849849,10481168:0,0,0 +g1,5407:25849849,10481168 +g1,5407:25849849,10481168 +g1,5407:25849849,10481168 +g1,5407:25849849,10481168 +g1,5407:25849849,10481168 +(1,5407:25849849,10481168:0,0,0 +(1,5407:25849849,10481168:1540487,281018,140387 +(1,5407:25849849,10481168:1540487,281018,140387 +$1,5407:25849849,10481168 +h1,5407:25849849,10481168:0,281018,137888 +(1,5407:26219996,10559820:1170340,291373,61735 +) +$1,5407:27390336,10481168 +) +g1,5407:27390336,10481168 +) +) +g1,5407:25849849,10481168 +g1,5407:25849849,10481168 +) +) +g1,5407:25849849,10481168 +) +) +g1,5407:25849849,10481168 +(1,5408:25849849,10481168:924057,924057,924057 +g1,5408:26773906,10481168 +g1,5408:26773906,10481168 +) +g1,5408:26773906,10481168 ) -g1,6037:15452340,25448314 -g1,6037:15452340,25448314 +(1,5409:17585764,12316175:9188142,924057,924057 +g1,5408:17585764,12316175 +(1,5408:17585764,12316175:924057,924057,924057 +g1,5408:17585764,12316175 +g1,5408:18509821,12316175 +(1,5408:18509821,12316175:0,924057,924057 +(1,5408:18509821,12316175:0,0,0 +(1,5408:18509821,12316175:0,0,0 +g1,5408:18509821,12316175 +g1,5408:18509821,12316175 +g1,5408:18509821,12316175 +g1,5408:18509821,12316175 +g1,5408:18509821,12316175 +(1,5408:18509821,12316175:0,0,0 +(1,5408:18509821,12316175:607548,341312,137888 +(1,5408:18509821,12316175:607548,341312,137888 +$1,5408:18509821,12316175 +h1,5408:18509821,12316175:0,281018,137888 +g1,5408:18655471,12316175 +$1,5408:19117369,12316175 +) +g1,5408:19117369,12316175 +) +) +g1,5408:18509821,12316175 +g1,5408:18509821,12316175 +) +) +g1,5408:18509821,12316175 +) +) +g1,5408:18509821,12316175 +(1,5408:18509821,12316175:924057,924057,924057 +g1,5408:19433878,12316175 +g1,5408:19433878,12316175 +) +g1,5408:19433878,12316175 +(1,5408:19433878,12316175:910950,924057,924057 +g1,5408:19433878,12316175 +g1,5408:20344828,12316175 +(1,5408:20344828,12316175:0,924057,924057 +(1,5408:20344828,12316175:0,0,0 +(1,5408:20344828,12316175:0,0,0 +g1,5408:20344828,12316175 +g1,5408:20344828,12316175 +g1,5408:20344828,12316175 +g1,5408:20344828,12316175 +g1,5408:20344828,12316175 +(1,5408:20344828,12316175:0,0,0 +(1,5408:20344828,12316175:0,281018,137888 +(1,5408:20344828,12316175:0,281018,137888 +$1,5408:20344828,12316175 +h1,5408:20344828,12316175:0,281018,137888 +$1,5408:20344828,12316175 +) +g1,5408:20344828,12316175 +) +) +g1,5408:20344828,12316175 +g1,5408:20344828,12316175 +) +) +g1,5408:20344828,12316175 +) +) +g1,5408:20344828,12316175 +(1,5408:20344828,12316175:924057,924057,924057 +g1,5408:21268885,12316175 +g1,5408:21268885,12316175 +) +g1,5408:21268885,12316175 +(1,5408:21268885,12316175:910950,924057,924057 +g1,5408:21268885,12316175 +g1,5408:22179835,12316175 +(1,5408:22179835,12316175:0,924057,924057 +(1,5408:22179835,12316175:0,0,0 +(1,5408:22179835,12316175:0,0,0 +g1,5408:22179835,12316175 +g1,5408:22179835,12316175 +g1,5408:22179835,12316175 +g1,5408:22179835,12316175 +g1,5408:22179835,12316175 +(1,5408:22179835,12316175:0,0,0 +(1,5408:22179835,12316175:0,281018,137888 +(1,5408:22179835,12316175:0,281018,137888 +$1,5408:22179835,12316175 +h1,5408:22179835,12316175:0,281018,137888 +$1,5408:22179835,12316175 +) +g1,5408:22179835,12316175 +) +) +g1,5408:22179835,12316175 +g1,5408:22179835,12316175 +) +) +g1,5408:22179835,12316175 +) +) +g1,5408:22179835,12316175 +(1,5408:22179835,12316175:924057,924057,924057 +g1,5408:23103892,12316175 +g1,5408:23103892,12316175 +) +g1,5408:23103892,12316175 +(1,5408:23103892,12316175:910950,924057,924057 +g1,5408:23103892,12316175 +g1,5408:24014842,12316175 +(1,5408:24014842,12316175:0,924057,924057 +(1,5408:24014842,12316175:0,0,0 +(1,5408:24014842,12316175:0,0,0 +g1,5408:24014842,12316175 +g1,5408:24014842,12316175 +g1,5408:24014842,12316175 +g1,5408:24014842,12316175 +g1,5408:24014842,12316175 +(1,5408:24014842,12316175:0,0,0 +(1,5408:24014842,12316175:600208,341312,137888 +(1,5408:24014842,12316175:600208,341312,137888 +$1,5408:24014842,12316175 +h1,5408:24014842,12316175:0,281018,137888 +g1,5408:24160492,12316175 +$1,5408:24615050,12316175 +) +g1,5408:24615050,12316175 +) +) +g1,5408:24014842,12316175 +g1,5408:24014842,12316175 +) +) +g1,5408:24014842,12316175 +) +) +g1,5408:24014842,12316175 +(1,5408:24014842,12316175:924057,924057,924057 +g1,5408:24938899,12316175 +g1,5408:24938899,12316175 +) +g1,5408:24938899,12316175 +(1,5408:24938899,12316175:910950,924057,924057 +g1,5408:24938899,12316175 +g1,5408:25849849,12316175 +(1,5408:25849849,12316175:0,924057,924057 +(1,5408:25849849,12316175:0,0,0 +(1,5408:25849849,12316175:0,0,0 +g1,5408:25849849,12316175 +g1,5408:25849849,12316175 +g1,5408:25849849,12316175 +g1,5408:25849849,12316175 +g1,5408:25849849,12316175 +(1,5408:25849849,12316175:0,0,0 +(1,5408:25849849,12316175:0,281018,137888 +(1,5408:25849849,12316175:0,281018,137888 +$1,5408:25849849,12316175 +h1,5408:25849849,12316175:0,281018,137888 +$1,5408:25849849,12316175 +) +g1,5408:25849849,12316175 +) +) +g1,5408:25849849,12316175 +g1,5408:25849849,12316175 +) +) +g1,5408:25849849,12316175 +) +) +g1,5408:25849849,12316175 +(1,5409:25849849,12316175:924057,924057,924057 +g1,5409:26773906,12316175 +g1,5409:26773906,12316175 +) +g1,5409:26773906,12316175 +) +(1,5410:17585764,14151182:9188142,924057,924057 +g1,5409:17585764,14151182 +(1,5409:17585764,14151182:924057,924057,924057 +g1,5409:17585764,14151182 +g1,5409:18509821,14151182 +(1,5409:18509821,14151182:0,924057,924057 +(1,5409:18509821,14151182:0,0,0 +(1,5409:18509821,14151182:0,0,0 +g1,5409:18509821,14151182 +g1,5409:18509821,14151182 +g1,5409:18509821,14151182 +g1,5409:18509821,14151182 +g1,5409:18509821,14151182 +(1,5409:18509821,14151182:0,0,0 +(1,5409:18509821,14151182:1262877,281018,142607 +(1,5409:18509821,14151182:1262877,281018,142607 +$1,5409:18509821,14151182 +h1,5409:18509821,14151182:0,281018,137888 +(1,5409:18879968,14232054:892730,303170,61735 +) +$1,5409:19772698,14151182 +) +g1,5409:19772698,14151182 +) +) +g1,5409:18509821,14151182 +g1,5409:18509821,14151182 +) +) +g1,5409:18509821,14151182 +) +) +g1,5409:18509821,14151182 +(1,5409:18509821,14151182:924057,924057,924057 +g1,5409:19433878,14151182 +g1,5409:19433878,14151182 ) +g1,5409:19433878,14151182 +(1,5409:19433878,14151182:910950,924057,924057 +g1,5409:19433878,14151182 +g1,5409:20344828,14151182 +(1,5409:20344828,14151182:0,924057,924057 +(1,5409:20344828,14151182:0,0,0 +(1,5409:20344828,14151182:0,0,0 +g1,5409:20344828,14151182 +g1,5409:20344828,14151182 +g1,5409:20344828,14151182 +g1,5409:20344828,14151182 +g1,5409:20344828,14151182 +(1,5409:20344828,14151182:0,0,0 +(1,5409:20344828,14151182:1262877,281018,142607 +(1,5409:20344828,14151182:1262877,281018,142607 +$1,5409:20344828,14151182 +h1,5409:20344828,14151182:0,281018,137888 +(1,5409:20714975,14232054:892730,303170,61735 +) +$1,5409:21607705,14151182 +) +g1,5409:21607705,14151182 +) +) +g1,5409:20344828,14151182 +g1,5409:20344828,14151182 +) +) +g1,5409:20344828,14151182 +) +) +g1,5409:20344828,14151182 +(1,5409:20344828,14151182:924057,924057,924057 +g1,5409:21268885,14151182 +g1,5409:21268885,14151182 ) -(1,6038:15452340,25448314:0,0,0 -(1,6038:15452340,25448314:0,0,0 -g1,6038:15452340,25448314 -(1,6038:15452340,25448314:0,0,0 -(1,6038:15452340,25448314:666177,300941,0 -(1,6038:15452340,25448314:666177,300941,0 -(1,6038:15452340,25448314:666177,300941,0 -(1,6038:15918662,25448314:300941,466322,199855 -(1,6038:15918662,25448314:300941,466322,199855 -r1,6082:16219603,25448314:0,666177,199855 +g1,5409:21268885,14151182 +(1,5409:21268885,14151182:910950,924057,924057 +g1,5409:21268885,14151182 +g1,5409:22179835,14151182 +(1,5409:22179835,14151182:0,924057,924057 +(1,5409:22179835,14151182:0,0,0 +(1,5409:22179835,14151182:0,0,0 +g1,5409:22179835,14151182 +g1,5409:22179835,14151182 +g1,5409:22179835,14151182 +g1,5409:22179835,14151182 +g1,5409:22179835,14151182 +(1,5409:22179835,14151182:0,0,0 +(1,5409:22179835,14151182:1262877,281018,142607 +(1,5409:22179835,14151182:1262877,281018,142607 +$1,5409:22179835,14151182 +h1,5409:22179835,14151182:0,281018,137888 +(1,5409:22549982,14232054:892730,303170,61735 ) +$1,5409:23442712,14151182 ) +g1,5409:23442712,14151182 ) ) -g1,6038:16118517,25448314 +g1,5409:22179835,14151182 +g1,5409:22179835,14151182 ) ) -g1,6038:15452340,25448314 -g1,6038:15452340,25448314 +g1,5409:22179835,14151182 ) ) -g1,6038:15452340,25448314 -g1,6040:15452340,25448314 -(1,6040:15452340,25448314:0,0,0 -(1,6040:15452340,25448314:0,0,0 -g1,6040:15452340,25448314 -g1,6040:15452340,25448314 -g1,6040:15452340,25448314 -g1,6040:15452340,25448314 -g1,6040:15452340,25448314 -(1,6040:15452340,25448314:0,0,0 -(1,6040:15452340,25448314:6599312,404226,101187 -(1,6040:15452340,25448314:6599312,404226,101187 -(1,6040:15452340,25448314:0,363038,98932 -r1,6082:17428480,25448314:1976140,461970,98932 -k1,6040:15452340,25448314:-1976140 +g1,5409:22179835,14151182 +(1,5409:22179835,14151182:924057,924057,924057 +g1,5409:23103892,14151182 +g1,5409:23103892,14151182 ) -(1,6040:15452340,25448314:1976140,363038,98932 -k1,6040:15452340,25448314:3277 -h1,6040:17425203,25448314:0,328964,90056 +g1,5409:23103892,14151182 +(1,5409:23103892,14151182:910950,924057,924057 +g1,5409:23103892,14151182 +g1,5409:24014842,14151182 +(1,5409:24014842,14151182:0,924057,924057 +(1,5409:24014842,14151182:0,0,0 +(1,5409:24014842,14151182:0,0,0 +g1,5409:24014842,14151182 +g1,5409:24014842,14151182 +g1,5409:24014842,14151182 +g1,5409:24014842,14151182 +g1,5409:24014842,14151182 +(1,5409:24014842,14151182:0,0,0 +(1,5409:24014842,14151182:0,281018,137888 +(1,5409:24014842,14151182:0,281018,137888 +$1,5409:24014842,14151182 +h1,5409:24014842,14151182:0,281018,137888 +$1,5409:24014842,14151182 ) -g1,6040:17594155,25448314 -g1,6040:20265927,25448314 +g1,5409:24014842,14151182 ) -g1,6040:22051652,25448314 ) +g1,5409:24014842,14151182 +g1,5409:24014842,14151182 ) -g1,6040:15452340,25448314 -g1,6040:15452340,25448314 ) +g1,5409:24014842,14151182 ) -g1,6040:15452340,25448314 -g1,6041:15452340,25448314 -(1,6041:15452340,25448314:0,0,0 -(1,6041:15452340,25448314:0,0,0 -g1,6041:15452340,25448314 -g1,6041:15452340,25448314 -g1,6041:15452340,25448314 -g1,6041:15452340,25448314 -g1,6041:15452340,25448314 -(1,6041:15452340,25448314:0,0,0 -(1,6041:15452340,25448314:9177138,404226,107478 -(1,6041:15452340,25448314:9177138,404226,107478 -g1,6041:19331023,25448314 -g1,6041:20905460,25448314 -g1,6041:23013098,25448314 ) -g1,6041:24629478,25448314 +g1,5409:24014842,14151182 +(1,5409:24014842,14151182:924057,924057,924057 +g1,5409:24938899,14151182 +g1,5409:24938899,14151182 ) +g1,5409:24938899,14151182 +(1,5409:24938899,14151182:910950,924057,924057 +g1,5409:24938899,14151182 +g1,5409:25849849,14151182 +(1,5409:25849849,14151182:0,924057,924057 +(1,5409:25849849,14151182:0,0,0 +(1,5409:25849849,14151182:0,0,0 +g1,5409:25849849,14151182 +g1,5409:25849849,14151182 +g1,5409:25849849,14151182 +g1,5409:25849849,14151182 +g1,5409:25849849,14151182 +(1,5409:25849849,14151182:0,0,0 +(1,5409:25849849,14151182:1455946,281018,142607 +(1,5409:25849849,14151182:1455946,281018,142607 +$1,5409:25849849,14151182 +h1,5409:25849849,14151182:0,281018,137888 +(1,5409:26219996,14232054:1085799,303170,61735 ) -g1,6041:15452340,25448314 -g1,6041:15452340,25448314 +$1,5409:27305795,14151182 ) +g1,5409:27305795,14151182 ) -g1,6041:15452340,25448314 -g1,6042:15452340,25448314 -(1,6042:15452340,25448314:0,0,0 -(1,6042:15452340,25448314:0,0,0 -g1,6042:15452340,25448314 -g1,6042:15452340,25448314 -g1,6042:15452340,25448314 -g1,6042:15452340,25448314 -g1,6042:15452340,25448314 -(1,6042:15452340,25448314:0,0,0 -(1,6042:15452340,25448314:6641433,404226,93333 -(1,6042:15452340,25448314:6641433,404226,93333 -(1,6042:15452340,25448314:0,363038,93333 -r1,6082:17991219,25448314:2538879,456371,93333 -k1,6042:15452340,25448314:-2538879 ) -(1,6042:15452340,25448314:2538879,363038,93333 -k1,6042:15452340,25448314:3277 -h1,6042:17987942,25448314:0,328964,90056 +g1,5409:25849849,14151182 +g1,5409:25849849,14151182 ) -g1,6042:18156894,25448314 -g1,6042:20430731,25448314 ) -g1,6042:22093773,25448314 +g1,5409:25849849,14151182 ) ) -g1,6042:15452340,25448314 -g1,6042:15452340,25448314 +g1,5409:25849849,14151182 +(1,5410:25849849,14151182:924057,924057,924057 +g1,5410:26773906,14151182 +g1,5410:26773906,14151182 ) +g1,5410:26773906,14151182 ) -g1,6042:15452340,25448314 -(1,6045:15452340,25448314:0,0,0 -(1,6045:15452340,25448314:0,0,0 -g1,6045:15452340,25448314 -g1,6045:15452340,25448314 -(1,6045:15452340,25448314:0,0,0 -(1,6045:15452340,25448314:331874,466322,199855 -(1,6045:15452340,25448314:331874,466322,199855 -r1,6082:15784214,25448314:0,666177,199855 +] ) -g1,6045:15784214,25448314 ) +g1,5410:17585764,14151182 +g1,5410:17585764,14151182 ) -g1,6045:15452340,25448314 -(1,6045:15452340,25448314:0,0,0 -(1,6045:15452340,25448314:331874,466322,199855 -r1,6082:15784214,25448314:0,666177,199855 -) -) -g1,6045:15452340,25448314 -(1,6045:15452340,25448314:0,0,0 -(1,6045:15452340,25448314:331874,466322,199855 -r1,6082:15784214,25448314:0,666177,199855 -) -) -g1,6045:15452340,25448314 -g1,6045:15452340,25448314 -) -) -g1,6045:15452340,25448314 -(1,6047:15452340,25448314:0,0,0 -(1,6047:15452340,25448314:0,0,0 -g1,6047:15452340,25448314 -g1,6047:15452340,25448314 -(1,6047:15452340,25448314:0,0,0 -(1,6047:15452340,25448314:1010827,466322,199855 -(1,6047:15452340,25448314:1010827,466322,199855 -r1,6082:16463167,25448314:0,666177,199855 -) -g1,6047:16463167,25448314 -) -) -g1,6047:15452340,25448314 -g1,6047:15452340,25448314 -) -) -g1,6047:15452340,25448314 -(1,6049:15452340,25448314:0,0,0 -(1,6049:15452340,25448314:0,0,0 -g1,6049:15452340,25448314 -g1,6049:15452340,25448314 -(1,6049:15452340,25448314:0,0,0 -(1,6049:15452340,25448314:1310720,466322,199855 -(1,6049:15452340,25448314:1310720,466322,199855 -r1,6082:16763060,25448314:0,666177,199855 -) -g1,6049:16763060,25448314 -) -) -g1,6049:15452340,25448314 -(1,6049:15452340,25448314:0,0,0 -(1,6049:15452340,25448314:1488978,466322,199855 -r1,6082:16941318,25448314:0,666177,199855 -) -) -g1,6049:15452340,25448314 -g1,6049:15452340,25448314 -) -) -g1,6049:15452340,25448314 -g1,6051:15452340,25448314 -g1,6051:15452340,25448314 -) -g1,6051:15452340,25448314 -) -) -g1,6053:29975458,29066334 -k1,6053:32583029,29066334:2607571 -) -v1,6056:6630773,30451548:0,393216,0 -(1,6057:6630773,35213920:25952256,5155588,0 -g1,6057:6630773,35213920 -g1,6057:6303093,35213920 -r1,6082:6401397,35213920:98304,5155588,0 -g1,6057:6600626,35213920 -g1,6057:6797234,35213920 -[1,6057:6797234,35213920:25785795,5155588,0 -(1,6057:6797234,30872132:25785795,813800,267386 -(1,6056:6797234,30872132:0,813800,267386 -r1,6082:8134168,30872132:1336934,1081186,267386 -k1,6056:6797234,30872132:-1336934 -) -(1,6056:6797234,30872132:1336934,813800,267386 -) -k1,6056:8310600,30872132:176432 -k1,6056:8638280,30872132:327680 -k1,6056:10293860,30872132:176432 -k1,6056:11794120,30872132:176433 -k1,6056:12428649,30872132:176432 -k1,6056:13136578,30872132:176432 -k1,6056:14647978,30872132:176432 -k1,6056:15475838,30872132:176432 -k1,6056:16744756,30872132:176433 -k1,6056:20623317,30872132:176432 -k1,6056:22868065,30872132:176432 -k1,6056:23992148,30872132:176432 -k1,6056:27081656,30872132:176433 -k1,6056:27944250,30872132:176432 -k1,6056:29629321,30872132:176432 -k1,6056:32583029,30872132:0 -) -(1,6057:6797234,31713620:25785795,505283,134348 -k1,6056:7955828,31713620:167034 -k1,6056:12448239,31713620:167035 -k1,6056:14902480,31713620:167034 -k1,6056:18431512,31713620:167035 -k1,6056:20836601,31713620:167034 -k1,6056:26824544,31713620:167035 -k1,6056:28554612,31713620:167034 -k1,6056:30867296,31713620:167035 -k1,6056:32583029,31713620:0 -) -(1,6057:6797234,32555108:25785795,505283,134348 -k1,6056:8567838,32555108:274417 -k1,6056:10712653,32555108:274417 -k1,6056:11638498,32555108:274417 -k1,6056:15577688,32555108:274417 -k1,6056:17043550,32555108:274417 -k1,6056:20152399,32555108:274417 -k1,6056:22077013,32555108:274417 -k1,6056:24567858,32555108:274417 -k1,6056:26634029,32555108:274417 -k1,6056:28976762,32555108:274417 -k1,6056:30536995,32555108:274417 -k1,6056:32583029,32555108:0 -) -(1,6057:6797234,33396596:25785795,513147,134348 -k1,6056:8450473,33396596:157052 -k1,6056:10257723,33396596:157053 -k1,6056:12500131,33396596:157052 -k1,6056:13308611,33396596:157052 -k1,6056:15452715,33396596:157052 -k1,6056:18180745,33396596:157053 -k1,6056:18953835,33396596:157052 -k1,6056:20129972,33396596:157052 -k1,6056:22901256,33396596:157053 -k1,6056:23717600,33396596:157052 -k1,6056:24868178,33396596:157052 -k1,6056:27978938,33396596:157052 -k1,6056:28752029,33396596:157053 -k1,6056:30232908,33396596:157052 -k1,6056:32583029,33396596:0 -) -(1,6057:6797234,34238084:25785795,513147,126483 -k1,6056:10029797,34238084:198246 -k1,6056:10887336,34238084:198247 -k1,6056:12183310,34238084:198246 -k1,6056:13711938,34238084:198247 -k1,6056:14325026,34238084:198245 -k1,6056:16193130,34238084:198247 -k1,6056:18432167,34238084:198246 -k1,6056:19498765,34238084:198246 -k1,6056:20789497,34238084:198247 -k1,6056:22454439,34238084:198246 -k1,6056:25827905,34238084:198247 -k1,6056:28275347,34238084:198246 -k1,6056:29665039,34238084:198247 -k1,6056:31931601,34238084:198246 -k1,6056:32583029,34238084:0 -) -(1,6057:6797234,35079572:25785795,505283,134348 -g1,6056:9853833,35079572 -g1,6056:11072147,35079572 -g1,6056:14810320,35079572 -g1,6056:17644752,35079572 -g1,6056:19167808,35079572 -g1,6056:20558482,35079572 -k1,6057:32583029,35079572:9542699 -g1,6057:32583029,35079572 -) -] -g1,6057:32583029,35213920 -) -h1,6057:6630773,35213920:0,0,0 -(1,6060:6630773,36490389:25952256,505283,134348 -h1,6059:6630773,36490389:983040,0,0 -k1,6059:9357547,36490389:259999 -k1,6059:10721828,36490389:259999 -k1,6059:13204808,36490389:259999 -k1,6059:14150969,36490389:259999 -k1,6059:16719146,36490389:259999 -k1,6059:18373097,36490389:260000 -k1,6059:23305813,36490389:259999 -k1,6059:26434978,36490389:259999 -k1,6059:27381139,36490389:259999 -k1,6059:30768516,36490389:259999 -k1,6059:31714677,36490389:259999 -k1,6059:32583029,36490389:0 -) -(1,6060:6630773,37331877:25952256,505283,126483 -k1,6059:7931461,37331877:168226 -k1,6059:10768968,37331877:168226 -k1,6059:12494984,37331877:168225 -k1,6059:14146945,37331877:168226 -k1,6059:15419453,37331877:168226 -k1,6059:16873495,37331877:168226 -k1,6059:17789486,37331877:168225 -k1,6059:20248851,37331877:168226 -k1,6059:21141905,37331877:168226 -k1,6059:23909289,37331877:168226 -k1,6059:27339241,37331877:168225 -k1,6059:28499027,37331877:168226 -k1,6059:29953069,37331877:168226 -k1,6059:32583029,37331877:0 -) -(1,6060:6630773,38173365:25952256,505283,134348 -g1,6059:8062079,38173365 -g1,6059:10539995,38173365 -h1,6059:12082713,38173365:0,0,0 -g1,6059:12281942,38173365 -g1,6059:13290541,38173365 -g1,6059:14987923,38173365 -h1,6059:15784841,38173365:0,0,0 -k1,6060:32583029,38173365:16417424 -g1,6060:32583029,38173365 -) -(1,6077:6630773,40264625:25952256,555811,104529 -(1,6077:6630773,40264625:2450326,534184,12975 -g1,6077:6630773,40264625 -g1,6077:9081099,40264625 -) -g1,6077:12259530,40264625 -g1,6077:16354220,40264625 -g1,6077:19524721,40264625 -g1,6077:21091949,40264625 -k1,6077:32583029,40264625:8238397 -g1,6077:32583029,40264625 -) -(1,6080:6630773,41499329:25952256,505283,134348 -k1,6079:7511358,41499329:252750 -k1,6079:10042795,41499329:252750 -h1,6079:11411842,41499329:0,0,0 -k1,6079:11664592,41499329:252750 -k1,6079:12726712,41499329:252750 -k1,6079:14477615,41499329:252750 -h1,6079:15274533,41499329:0,0,0 -k1,6079:15527283,41499329:252750 -k1,6079:16648385,41499329:252750 -k1,6079:18108307,41499329:252749 -k1,6079:19645563,41499329:252750 -k1,6079:20917398,41499329:252750 -k1,6079:24384689,41499329:252750 -k1,6079:27384053,41499329:252750 -(1,6079:27384053,41499329:0,452978,115847 -r1,6082:28445743,41499329:1061690,568825,115847 -k1,6079:27384053,41499329:-1061690 -) -(1,6079:27384053,41499329:1061690,452978,115847 -g1,6079:28090754,41499329 -h1,6079:28442466,41499329:0,411205,112570 -) -k1,6079:28698493,41499329:252750 -k1,6079:31322991,41499329:252750 -k1,6079:32227169,41499329:252750 -k1,6079:32583029,41499329:0 -) -(1,6080:6630773,42340817:25952256,513147,134348 -k1,6079:9008570,42340817:226250 -k1,6079:11575767,42340817:226251 -k1,6079:12157877,42340817:226250 -k1,6079:14535675,42340817:226251 -k1,6079:16786332,42340817:226250 -k1,6079:17695468,42340817:226251 -k1,6079:20416018,42340817:226250 -k1,6079:23285991,42340817:226251 -k1,6079:24171533,42340817:226250 -k1,6079:26411050,42340817:226251 -k1,6079:27967681,42340817:226250 -k1,6079:28876817,42340817:226251 -k1,6079:30569763,42340817:226250 -k1,6079:32583029,42340817:0 -) -(1,6080:6630773,43182305:25952256,513147,134348 -k1,6079:8447632,43182305:223023 -k1,6079:11637471,43182305:223024 -k1,6079:14614317,43182305:223023 -k1,6079:17583955,43182305:223024 -(1,6079:17583955,43182305:0,452978,115847 -r1,6082:18645645,43182305:1061690,568825,115847 -k1,6079:17583955,43182305:-1061690 -) -(1,6079:17583955,43182305:1061690,452978,115847 -g1,6079:18290656,43182305 -h1,6079:18642368,43182305:0,411205,112570 -) -k1,6079:18868668,43182305:223023 -k1,6079:19743120,43182305:223024 -k1,6079:20322003,43182305:223023 -k1,6079:21538553,43182305:223024 -k1,6079:24102522,43182305:223023 -k1,6079:24681406,43182305:223024 -k1,6079:26071625,43182305:223023 -k1,6079:28938371,43182305:223024 -k1,6079:29820686,43182305:223023 -k1,6079:32583029,43182305:0 -) -(1,6080:6630773,44023793:25952256,505283,134348 -k1,6079:9087217,44023793:269508 -(1,6079:9087217,44023793:0,452978,115847 -r1,6082:12962601,44023793:3875384,568825,115847 -k1,6079:9087217,44023793:-3875384 -) -(1,6079:9087217,44023793:3875384,452978,115847 -k1,6079:9087217,44023793:3277 -h1,6079:12959324,44023793:0,411205,112570 -) -k1,6079:13232109,44023793:269508 -k1,6079:14184503,44023793:269509 -(1,6079:14184503,44023793:0,452978,115847 -r1,6082:17356463,44023793:3171960,568825,115847 -k1,6079:14184503,44023793:-3171960 -) -(1,6079:14184503,44023793:3171960,452978,115847 -k1,6079:14184503,44023793:3277 -h1,6079:17353186,44023793:0,411205,112570 -) -k1,6079:17625971,44023793:269508 -k1,6079:19906124,44023793:269508 -k1,6079:20531492,44023793:269508 -k1,6079:21794526,44023793:269508 -k1,6079:25426031,44023793:269508 -k1,6079:27071141,44023793:269509 -k1,6079:28497359,44023793:269508 -k1,6079:31563944,44023793:269508 -k1,6079:32583029,44023793:0 -) -(1,6080:6630773,44865281:25952256,513147,126483 -k1,6079:9465960,44865281:215058 -k1,6079:11658895,44865281:215058 -k1,6079:13912123,44865281:215058 -k1,6079:14739942,44865281:215057 -k1,6079:15974085,44865281:215058 -k1,6079:17495276,44865281:215058 -k1,6079:20324565,44865281:215058 -k1,6079:21206779,44865281:215058 -(1,6079:21206779,44865281:0,452978,115847 -r1,6082:23323604,44865281:2116825,568825,115847 -k1,6079:21206779,44865281:-2116825 -) -(1,6079:21206779,44865281:2116825,452978,115847 -k1,6079:21206779,44865281:3277 -h1,6079:23320327,44865281:0,411205,112570 -) -k1,6079:23712332,44865281:215058 -k1,6079:24555224,44865281:215057 -k1,6079:25789367,44865281:215058 -k1,6079:27152616,44865281:215058 -k1,6079:30554034,44865281:215058 -k1,6080:32583029,44865281:0 -) -(1,6080:6630773,45706769:25952256,513147,134348 -(1,6079:6630773,45706769:0,452978,115847 -r1,6082:11913004,45706769:5282231,568825,115847 -k1,6079:6630773,45706769:-5282231 -) -(1,6079:6630773,45706769:5282231,452978,115847 -g1,6079:10854592,45706769 -h1,6079:11909727,45706769:0,411205,112570 -) -g1,6079:12112233,45706769 -g1,6079:14652408,45706769 -g1,6079:15207497,45706769 -g1,6079:16400252,45706769 -g1,6079:17258773,45706769 -g1,6079:19471268,45706769 -g1,6079:20842936,45706769 -g1,6079:21728327,45706769 -k1,6080:32583029,45706769:7842012 -g1,6080:32583029,45706769 ) -] -(1,6082:32583029,45706769:0,0,0 -g1,6082:32583029,45706769 +(1,5418:17585764,14151182:0,0,0 +(1,5418:17585764,14151182:0,0,0 +g1,5418:17585764,14151182 +g1,5418:17585764,14151182 +g1,5418:17585764,14151182 +g1,5418:17585764,14151182 +g1,5418:17585764,14151182 +(1,5418:17585764,14151182:0,0,0 +(1,5418:17585764,14151182:9188142,8264085,924057 +[1,5418:17585764,14151182:9188142,8264085,924057 +(1,5414:17585764,6811154:9188142,924057,924057 +g1,5413:17585764,6811154 +(1,5413:17585764,6811154:924057,924057,924057 +g1,5413:17585764,6811154 +g1,5413:18509821,6811154 +(1,5413:18509821,6811154:0,924057,924057 +(1,5413:18509821,6811154:0,0,0 +(1,5413:18509821,6811154:0,0,0 +g1,5413:18509821,6811154 +g1,5413:18509821,6811154 +g1,5413:18509821,6811154 +g1,5413:18509821,6811154 +g1,5413:18509821,6811154 +(1,5413:18509821,6811154:0,0,0 +(1,5413:18509821,6811154:1347418,281018,140387 +(1,5413:18509821,6811154:1347418,281018,140387 +$1,5413:18509821,6811154 +h1,5413:18509821,6811154:0,281018,137888 +(1,5413:18879968,6889806:977271,291373,61735 ) +$1,5413:19857239,6811154 ) -] -(1,6082:6630773,47279633:25952256,0,0 -h1,6082:6630773,47279633:25952256,0,0 +g1,5413:19857239,6811154 ) -] -(1,6082:4262630,4025873:0,0,0 -[1,6082:-473656,4025873:0,0,0 -(1,6082:-473656,-710413:0,0,0 -(1,6082:-473656,-710413:0,0,0 -g1,6082:-473656,-710413 ) -g1,6082:-473656,-710413 +g1,5413:18509821,6811154 +g1,5413:18509821,6811154 ) -] ) -] -!33460 -}104 -Input:852:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:853:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:854:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:855:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:856:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:857:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:858:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:859:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!756 -{105 -[1,6195:4262630,47279633:28320399,43253760,0 -(1,6195:4262630,4025873:0,0,0 -[1,6195:-473656,4025873:0,0,0 -(1,6195:-473656,-710413:0,0,0 -(1,6195:-473656,-644877:0,0,0 -k1,6195:-473656,-644877:-65536 -) -(1,6195:-473656,4736287:0,0,0 -k1,6195:-473656,4736287:5209943 +g1,5413:18509821,6811154 ) -g1,6195:-473656,-710413 ) -] +g1,5413:18509821,6811154 +(1,5413:18509821,6811154:924057,924057,924057 +g1,5413:19433878,6811154 +g1,5413:19433878,6811154 ) -[1,6195:6630773,47279633:25952256,43253760,0 -[1,6195:6630773,4812305:25952256,786432,0 -(1,6195:6630773,4812305:25952256,505283,11795 -(1,6195:6630773,4812305:25952256,505283,11795 -g1,6195:3078558,4812305 -[1,6195:3078558,4812305:0,0,0 -(1,6195:3078558,2439708:0,1703936,0 -k1,6195:1358238,2439708:-1720320 -(1,5950:1358238,2439708:1720320,1703936,0 -(1,5950:1358238,2439708:1179648,16384,0 -r1,6195:2537886,2439708:1179648,16384,0 +g1,5413:19433878,6811154 +(1,5413:19433878,6811154:910950,924057,924057 +g1,5413:19433878,6811154 +g1,5413:20344828,6811154 +(1,5413:20344828,6811154:0,924057,924057 +(1,5413:20344828,6811154:0,0,0 +(1,5413:20344828,6811154:0,0,0 +g1,5413:20344828,6811154 +g1,5413:20344828,6811154 +g1,5413:20344828,6811154 +g1,5413:20344828,6811154 +g1,5413:20344828,6811154 +(1,5413:20344828,6811154:0,0,0 +(1,5413:20344828,6811154:1347418,281018,140387 +(1,5413:20344828,6811154:1347418,281018,140387 +$1,5413:20344828,6811154 +h1,5413:20344828,6811154:0,281018,137888 +(1,5413:20714975,6889806:977271,291373,61735 ) -g1,5950:3062174,2439708 -(1,5950:3062174,2439708:16384,1703936,0 -[1,5950:3062174,2439708:25952256,1703936,0 -(1,5950:3062174,1915420:25952256,1179648,0 -(1,5950:3062174,1915420:16384,1179648,0 -r1,6195:3078558,1915420:16384,1179648,0 +$1,5413:21692246,6811154 ) -k1,5950:29014430,1915420:25935872 -g1,5950:29014430,1915420 +g1,5413:21692246,6811154 ) -] ) +g1,5413:20344828,6811154 +g1,5413:20344828,6811154 ) ) -] -[1,6195:3078558,4812305:0,0,0 -(1,6195:3078558,2439708:0,1703936,0 -g1,6195:29030814,2439708 -g1,6195:36135244,2439708 -(1,5950:36135244,2439708:1720320,1703936,0 -(1,5950:36135244,2439708:16384,1703936,0 -[1,5950:36135244,2439708:25952256,1703936,0 -(1,5950:36135244,1915420:25952256,1179648,0 -(1,5950:36135244,1915420:16384,1179648,0 -r1,6195:36151628,1915420:16384,1179648,0 +g1,5413:20344828,6811154 ) -k1,5950:62087500,1915420:25935872 -g1,5950:62087500,1915420 ) -] +g1,5413:20344828,6811154 +(1,5413:20344828,6811154:924057,924057,924057 +g1,5413:21268885,6811154 +g1,5413:21268885,6811154 ) -g1,5950:36675916,2439708 -(1,5950:36675916,2439708:1179648,16384,0 -r1,6195:37855564,2439708:1179648,16384,0 +g1,5413:21268885,6811154 +(1,5413:21268885,6811154:910950,924057,924057 +g1,5413:21268885,6811154 +g1,5413:22179835,6811154 +(1,5413:22179835,6811154:0,924057,924057 +(1,5413:22179835,6811154:0,0,0 +(1,5413:22179835,6811154:0,0,0 +g1,5413:22179835,6811154 +g1,5413:22179835,6811154 +g1,5413:22179835,6811154 +g1,5413:22179835,6811154 +g1,5413:22179835,6811154 +(1,5413:22179835,6811154:0,0,0 +(1,5413:22179835,6811154:1347418,281018,140387 +(1,5413:22179835,6811154:1347418,281018,140387 +$1,5413:22179835,6811154 +h1,5413:22179835,6811154:0,281018,137888 +(1,5413:22549982,6889806:977271,291373,61735 +) +$1,5413:23527253,6811154 +) +g1,5413:23527253,6811154 +) +) +g1,5413:22179835,6811154 +g1,5413:22179835,6811154 +) +) +g1,5413:22179835,6811154 +) +) +g1,5413:22179835,6811154 +(1,5413:22179835,6811154:924057,924057,924057 +g1,5413:23103892,6811154 +g1,5413:23103892,6811154 +) +g1,5413:23103892,6811154 +(1,5413:23103892,6811154:910950,924057,924057 +g1,5413:23103892,6811154 +g1,5413:24014842,6811154 +(1,5413:24014842,6811154:0,924057,924057 +(1,5413:24014842,6811154:0,0,0 +(1,5413:24014842,6811154:0,0,0 +g1,5413:24014842,6811154 +g1,5413:24014842,6811154 +g1,5413:24014842,6811154 +g1,5413:24014842,6811154 +g1,5413:24014842,6811154 +(1,5413:24014842,6811154:0,0,0 +(1,5413:24014842,6811154:549288,281018,137888 +(1,5413:24014842,6811154:549288,281018,137888 +$1,5413:24014842,6811154 +h1,5413:24014842,6811154:0,281018,137888 +g1,5413:24102232,6811154 +$1,5413:24564130,6811154 +) +g1,5413:24564130,6811154 +) +) +g1,5413:24014842,6811154 +g1,5413:24014842,6811154 +) +) +g1,5413:24014842,6811154 +) +) +g1,5413:24014842,6811154 +(1,5413:24014842,6811154:924057,924057,924057 +g1,5413:24938899,6811154 +g1,5413:24938899,6811154 +) +g1,5413:24938899,6811154 +(1,5413:24938899,6811154:910950,924057,924057 +g1,5413:24938899,6811154 +g1,5413:25849849,6811154 +(1,5413:25849849,6811154:0,924057,924057 +(1,5413:25849849,6811154:0,0,0 +(1,5413:25849849,6811154:0,0,0 +g1,5413:25849849,6811154 +g1,5413:25849849,6811154 +g1,5413:25849849,6811154 +g1,5413:25849849,6811154 +g1,5413:25849849,6811154 +(1,5413:25849849,6811154:0,0,0 +(1,5413:25849849,6811154:1540487,281018,140387 +(1,5413:25849849,6811154:1540487,281018,140387 +$1,5413:25849849,6811154 +h1,5413:25849849,6811154:0,281018,137888 +(1,5413:26219996,6889806:1170340,291373,61735 ) +$1,5413:27390336,6811154 +) +g1,5413:27390336,6811154 +) +) +g1,5413:25849849,6811154 +g1,5413:25849849,6811154 +) +) +g1,5413:25849849,6811154 +) +) +g1,5413:25849849,6811154 +(1,5414:25849849,6811154:924057,924057,924057 +g1,5414:26773906,6811154 +g1,5414:26773906,6811154 +) +g1,5414:26773906,6811154 ) -k1,6195:3078556,2439708:-34777008 +(1,5415:17585764,8646161:9188142,924057,924057 +g1,5414:17585764,8646161 +(1,5414:17585764,8646161:924057,924057,924057 +g1,5414:17585764,8646161 +g1,5414:18509821,8646161 +(1,5414:18509821,8646161:0,924057,924057 +(1,5414:18509821,8646161:0,0,0 +(1,5414:18509821,8646161:0,0,0 +g1,5414:18509821,8646161 +g1,5414:18509821,8646161 +g1,5414:18509821,8646161 +g1,5414:18509821,8646161 +g1,5414:18509821,8646161 +(1,5414:18509821,8646161:0,0,0 +(1,5414:18509821,8646161:1347418,281018,140387 +(1,5414:18509821,8646161:1347418,281018,140387 +$1,5414:18509821,8646161 +h1,5414:18509821,8646161:0,281018,137888 +(1,5414:18879968,8724813:977271,291373,61735 +) +$1,5414:19857239,8646161 +) +g1,5414:19857239,8646161 +) +) +g1,5414:18509821,8646161 +g1,5414:18509821,8646161 +) +) +g1,5414:18509821,8646161 +) +) +g1,5414:18509821,8646161 +(1,5414:18509821,8646161:924057,924057,924057 +g1,5414:19433878,8646161 +g1,5414:19433878,8646161 ) -] -[1,6195:3078558,4812305:0,0,0 -(1,6195:3078558,49800853:0,16384,2228224 -k1,6195:1358238,49800853:-1720320 -(1,5950:1358238,49800853:1720320,16384,2228224 -(1,5950:1358238,49800853:1179648,16384,0 -r1,6195:2537886,49800853:1179648,16384,0 +g1,5414:19433878,8646161 +(1,5414:19433878,8646161:910950,924057,924057 +g1,5414:19433878,8646161 +g1,5414:20344828,8646161 +(1,5414:20344828,8646161:0,924057,924057 +(1,5414:20344828,8646161:0,0,0 +(1,5414:20344828,8646161:0,0,0 +g1,5414:20344828,8646161 +g1,5414:20344828,8646161 +g1,5414:20344828,8646161 +g1,5414:20344828,8646161 +g1,5414:20344828,8646161 +(1,5414:20344828,8646161:0,0,0 +(1,5414:20344828,8646161:1347418,281018,140387 +(1,5414:20344828,8646161:1347418,281018,140387 +$1,5414:20344828,8646161 +h1,5414:20344828,8646161:0,281018,137888 +(1,5414:20714975,8724813:977271,291373,61735 +) +$1,5414:21692246,8646161 +) +g1,5414:21692246,8646161 +) +) +g1,5414:20344828,8646161 +g1,5414:20344828,8646161 +) +) +g1,5414:20344828,8646161 +) +) +g1,5414:20344828,8646161 +(1,5414:20344828,8646161:924057,924057,924057 +g1,5414:21268885,8646161 +g1,5414:21268885,8646161 ) -g1,5950:3062174,49800853 -(1,5950:3062174,52029077:16384,1703936,0 -[1,5950:3062174,52029077:25952256,1703936,0 -(1,5950:3062174,51504789:25952256,1179648,0 -(1,5950:3062174,51504789:16384,1179648,0 -r1,6195:3078558,51504789:16384,1179648,0 +g1,5414:21268885,8646161 +(1,5414:21268885,8646161:910950,924057,924057 +g1,5414:21268885,8646161 +g1,5414:22179835,8646161 +(1,5414:22179835,8646161:0,924057,924057 +(1,5414:22179835,8646161:0,0,0 +(1,5414:22179835,8646161:0,0,0 +g1,5414:22179835,8646161 +g1,5414:22179835,8646161 +g1,5414:22179835,8646161 +g1,5414:22179835,8646161 +g1,5414:22179835,8646161 +(1,5414:22179835,8646161:0,0,0 +(1,5414:22179835,8646161:1347418,281018,140387 +(1,5414:22179835,8646161:1347418,281018,140387 +$1,5414:22179835,8646161 +h1,5414:22179835,8646161:0,281018,137888 +(1,5414:22549982,8724813:977271,291373,61735 +) +$1,5414:23527253,8646161 +) +g1,5414:23527253,8646161 +) +) +g1,5414:22179835,8646161 +g1,5414:22179835,8646161 +) +) +g1,5414:22179835,8646161 +) +) +g1,5414:22179835,8646161 +(1,5414:22179835,8646161:924057,924057,924057 +g1,5414:23103892,8646161 +g1,5414:23103892,8646161 ) -k1,5950:29014430,51504789:25935872 -g1,5950:29014430,51504789 +g1,5414:23103892,8646161 +(1,5414:23103892,8646161:910950,924057,924057 +g1,5414:23103892,8646161 +g1,5414:24014842,8646161 +(1,5414:24014842,8646161:0,924057,924057 +(1,5414:24014842,8646161:0,0,0 +(1,5414:24014842,8646161:0,0,0 +g1,5414:24014842,8646161 +g1,5414:24014842,8646161 +g1,5414:24014842,8646161 +g1,5414:24014842,8646161 +g1,5414:24014842,8646161 +(1,5414:24014842,8646161:0,0,0 +(1,5414:24014842,8646161:0,281018,137888 +(1,5414:24014842,8646161:0,281018,137888 +$1,5414:24014842,8646161 +h1,5414:24014842,8646161:0,281018,137888 +$1,5414:24014842,8646161 ) -] +g1,5414:24014842,8646161 +) +) +g1,5414:24014842,8646161 +g1,5414:24014842,8646161 +) +) +g1,5414:24014842,8646161 +) +) +g1,5414:24014842,8646161 +(1,5414:24014842,8646161:924057,924057,924057 +g1,5414:24938899,8646161 +g1,5414:24938899,8646161 +) +g1,5414:24938899,8646161 +(1,5414:24938899,8646161:910950,924057,924057 +g1,5414:24938899,8646161 +g1,5414:25849849,8646161 +(1,5414:25849849,8646161:0,924057,924057 +(1,5414:25849849,8646161:0,0,0 +(1,5414:25849849,8646161:0,0,0 +g1,5414:25849849,8646161 +g1,5414:25849849,8646161 +g1,5414:25849849,8646161 +g1,5414:25849849,8646161 +g1,5414:25849849,8646161 +(1,5414:25849849,8646161:0,0,0 +(1,5414:25849849,8646161:1540487,281018,140387 +(1,5414:25849849,8646161:1540487,281018,140387 +$1,5414:25849849,8646161 +h1,5414:25849849,8646161:0,281018,137888 +(1,5414:26219996,8724813:1170340,291373,61735 ) +$1,5414:27390336,8646161 ) +g1,5414:27390336,8646161 +) +) +g1,5414:25849849,8646161 +g1,5414:25849849,8646161 +) +) +g1,5414:25849849,8646161 +) +) +g1,5414:25849849,8646161 +(1,5415:25849849,8646161:924057,924057,924057 +g1,5415:26773906,8646161 +g1,5415:26773906,8646161 +) +g1,5415:26773906,8646161 ) -] -[1,6195:3078558,4812305:0,0,0 -(1,6195:3078558,49800853:0,16384,2228224 -g1,6195:29030814,49800853 -g1,6195:36135244,49800853 -(1,5950:36135244,49800853:1720320,16384,2228224 -(1,5950:36135244,52029077:16384,1703936,0 -[1,5950:36135244,52029077:25952256,1703936,0 -(1,5950:36135244,51504789:25952256,1179648,0 -(1,5950:36135244,51504789:16384,1179648,0 -r1,6195:36151628,51504789:16384,1179648,0 +(1,5416:17585764,10481168:9188142,924057,924057 +g1,5415:17585764,10481168 +(1,5415:17585764,10481168:924057,924057,924057 +g1,5415:17585764,10481168 +g1,5415:18509821,10481168 +(1,5415:18509821,10481168:0,924057,924057 +(1,5415:18509821,10481168:0,0,0 +(1,5415:18509821,10481168:0,0,0 +g1,5415:18509821,10481168 +g1,5415:18509821,10481168 +g1,5415:18509821,10481168 +g1,5415:18509821,10481168 +g1,5415:18509821,10481168 +(1,5415:18509821,10481168:0,0,0 +(1,5415:18509821,10481168:1347418,281018,140387 +(1,5415:18509821,10481168:1347418,281018,140387 +$1,5415:18509821,10481168 +h1,5415:18509821,10481168:0,281018,137888 +(1,5415:18879968,10559820:977271,291373,61735 +) +$1,5415:19857239,10481168 +) +g1,5415:19857239,10481168 +) +) +g1,5415:18509821,10481168 +g1,5415:18509821,10481168 +) +) +g1,5415:18509821,10481168 +) +) +g1,5415:18509821,10481168 +(1,5415:18509821,10481168:924057,924057,924057 +g1,5415:19433878,10481168 +g1,5415:19433878,10481168 ) -k1,5950:62087500,51504789:25935872 -g1,5950:62087500,51504789 +g1,5415:19433878,10481168 +(1,5415:19433878,10481168:910950,924057,924057 +g1,5415:19433878,10481168 +g1,5415:20344828,10481168 +(1,5415:20344828,10481168:0,924057,924057 +(1,5415:20344828,10481168:0,0,0 +(1,5415:20344828,10481168:0,0,0 +g1,5415:20344828,10481168 +g1,5415:20344828,10481168 +g1,5415:20344828,10481168 +g1,5415:20344828,10481168 +g1,5415:20344828,10481168 +(1,5415:20344828,10481168:0,0,0 +(1,5415:20344828,10481168:1347418,281018,140387 +(1,5415:20344828,10481168:1347418,281018,140387 +$1,5415:20344828,10481168 +h1,5415:20344828,10481168:0,281018,137888 +(1,5415:20714975,10559820:977271,291373,61735 +) +$1,5415:21692246,10481168 +) +g1,5415:21692246,10481168 +) +) +g1,5415:20344828,10481168 +g1,5415:20344828,10481168 +) +) +g1,5415:20344828,10481168 +) +) +g1,5415:20344828,10481168 +(1,5415:20344828,10481168:924057,924057,924057 +g1,5415:21268885,10481168 +g1,5415:21268885,10481168 ) -] +g1,5415:21268885,10481168 +(1,5415:21268885,10481168:910950,924057,924057 +g1,5415:21268885,10481168 +g1,5415:22179835,10481168 +(1,5415:22179835,10481168:0,924057,924057 +(1,5415:22179835,10481168:0,0,0 +(1,5415:22179835,10481168:0,0,0 +g1,5415:22179835,10481168 +g1,5415:22179835,10481168 +g1,5415:22179835,10481168 +g1,5415:22179835,10481168 +g1,5415:22179835,10481168 +(1,5415:22179835,10481168:0,0,0 +(1,5415:22179835,10481168:1347418,281018,140387 +(1,5415:22179835,10481168:1347418,281018,140387 +$1,5415:22179835,10481168 +h1,5415:22179835,10481168:0,281018,137888 +(1,5415:22549982,10559820:977271,291373,61735 +) +$1,5415:23527253,10481168 +) +g1,5415:23527253,10481168 +) +) +g1,5415:22179835,10481168 +g1,5415:22179835,10481168 +) +) +g1,5415:22179835,10481168 +) +) +g1,5415:22179835,10481168 +(1,5415:22179835,10481168:924057,924057,924057 +g1,5415:23103892,10481168 +g1,5415:23103892,10481168 ) -g1,5950:36675916,49800853 -(1,5950:36675916,49800853:1179648,16384,0 -r1,6195:37855564,49800853:1179648,16384,0 +g1,5415:23103892,10481168 +(1,5415:23103892,10481168:910950,924057,924057 +g1,5415:23103892,10481168 +g1,5415:24014842,10481168 +(1,5415:24014842,10481168:0,924057,924057 +(1,5415:24014842,10481168:0,0,0 +(1,5415:24014842,10481168:0,0,0 +g1,5415:24014842,10481168 +g1,5415:24014842,10481168 +g1,5415:24014842,10481168 +g1,5415:24014842,10481168 +g1,5415:24014842,10481168 +(1,5415:24014842,10481168:0,0,0 +(1,5415:24014842,10481168:0,281018,137888 +(1,5415:24014842,10481168:0,281018,137888 +$1,5415:24014842,10481168 +h1,5415:24014842,10481168:0,281018,137888 +$1,5415:24014842,10481168 +) +g1,5415:24014842,10481168 +) +) +g1,5415:24014842,10481168 +g1,5415:24014842,10481168 +) +) +g1,5415:24014842,10481168 +) +) +g1,5415:24014842,10481168 +(1,5415:24014842,10481168:924057,924057,924057 +g1,5415:24938899,10481168 +g1,5415:24938899,10481168 +) +g1,5415:24938899,10481168 +(1,5415:24938899,10481168:910950,924057,924057 +g1,5415:24938899,10481168 +g1,5415:25849849,10481168 +(1,5415:25849849,10481168:0,924057,924057 +(1,5415:25849849,10481168:0,0,0 +(1,5415:25849849,10481168:0,0,0 +g1,5415:25849849,10481168 +g1,5415:25849849,10481168 +g1,5415:25849849,10481168 +g1,5415:25849849,10481168 +g1,5415:25849849,10481168 +(1,5415:25849849,10481168:0,0,0 +(1,5415:25849849,10481168:1540487,281018,140387 +(1,5415:25849849,10481168:1540487,281018,140387 +$1,5415:25849849,10481168 +h1,5415:25849849,10481168:0,281018,137888 +(1,5415:26219996,10559820:1170340,291373,61735 +) +$1,5415:27390336,10481168 +) +g1,5415:27390336,10481168 +) +) +g1,5415:25849849,10481168 +g1,5415:25849849,10481168 +) +) +g1,5415:25849849,10481168 +) +) +g1,5415:25849849,10481168 +(1,5416:25849849,10481168:924057,924057,924057 +g1,5416:26773906,10481168 +g1,5416:26773906,10481168 +) +g1,5416:26773906,10481168 ) +(1,5417:17585764,12316175:9188142,924057,924057 +g1,5416:17585764,12316175 +(1,5416:17585764,12316175:924057,924057,924057 +g1,5416:17585764,12316175 +g1,5416:18509821,12316175 +(1,5416:18509821,12316175:0,924057,924057 +(1,5416:18509821,12316175:0,0,0 +(1,5416:18509821,12316175:0,0,0 +g1,5416:18509821,12316175 +g1,5416:18509821,12316175 +g1,5416:18509821,12316175 +g1,5416:18509821,12316175 +g1,5416:18509821,12316175 +(1,5416:18509821,12316175:0,0,0 +(1,5416:18509821,12316175:607548,341312,137888 +(1,5416:18509821,12316175:607548,341312,137888 +$1,5416:18509821,12316175 +h1,5416:18509821,12316175:0,281018,137888 +g1,5416:18655471,12316175 +$1,5416:19117369,12316175 +) +g1,5416:19117369,12316175 +) +) +g1,5416:18509821,12316175 +g1,5416:18509821,12316175 +) +) +g1,5416:18509821,12316175 +) +) +g1,5416:18509821,12316175 +(1,5416:18509821,12316175:924057,924057,924057 +g1,5416:19433878,12316175 +g1,5416:19433878,12316175 +) +g1,5416:19433878,12316175 +(1,5416:19433878,12316175:910950,924057,924057 +g1,5416:19433878,12316175 +g1,5416:20344828,12316175 +(1,5416:20344828,12316175:0,924057,924057 +(1,5416:20344828,12316175:0,0,0 +(1,5416:20344828,12316175:0,0,0 +g1,5416:20344828,12316175 +g1,5416:20344828,12316175 +g1,5416:20344828,12316175 +g1,5416:20344828,12316175 +g1,5416:20344828,12316175 +(1,5416:20344828,12316175:0,0,0 +(1,5416:20344828,12316175:0,281018,137888 +(1,5416:20344828,12316175:0,281018,137888 +$1,5416:20344828,12316175 +h1,5416:20344828,12316175:0,281018,137888 +$1,5416:20344828,12316175 +) +g1,5416:20344828,12316175 +) +) +g1,5416:20344828,12316175 +g1,5416:20344828,12316175 +) +) +g1,5416:20344828,12316175 +) +) +g1,5416:20344828,12316175 +(1,5416:20344828,12316175:924057,924057,924057 +g1,5416:21268885,12316175 +g1,5416:21268885,12316175 +) +g1,5416:21268885,12316175 +(1,5416:21268885,12316175:910950,924057,924057 +g1,5416:21268885,12316175 +g1,5416:22179835,12316175 +(1,5416:22179835,12316175:0,924057,924057 +(1,5416:22179835,12316175:0,0,0 +(1,5416:22179835,12316175:0,0,0 +g1,5416:22179835,12316175 +g1,5416:22179835,12316175 +g1,5416:22179835,12316175 +g1,5416:22179835,12316175 +g1,5416:22179835,12316175 +(1,5416:22179835,12316175:0,0,0 +(1,5416:22179835,12316175:0,281018,137888 +(1,5416:22179835,12316175:0,281018,137888 +$1,5416:22179835,12316175 +h1,5416:22179835,12316175:0,281018,137888 +$1,5416:22179835,12316175 +) +g1,5416:22179835,12316175 +) +) +g1,5416:22179835,12316175 +g1,5416:22179835,12316175 +) +) +g1,5416:22179835,12316175 +) +) +g1,5416:22179835,12316175 +(1,5416:22179835,12316175:924057,924057,924057 +g1,5416:23103892,12316175 +g1,5416:23103892,12316175 +) +g1,5416:23103892,12316175 +(1,5416:23103892,12316175:910950,924057,924057 +g1,5416:23103892,12316175 +g1,5416:24014842,12316175 +(1,5416:24014842,12316175:0,924057,924057 +(1,5416:24014842,12316175:0,0,0 +(1,5416:24014842,12316175:0,0,0 +g1,5416:24014842,12316175 +g1,5416:24014842,12316175 +g1,5416:24014842,12316175 +g1,5416:24014842,12316175 +g1,5416:24014842,12316175 +(1,5416:24014842,12316175:0,0,0 +(1,5416:24014842,12316175:600208,341312,137888 +(1,5416:24014842,12316175:600208,341312,137888 +$1,5416:24014842,12316175 +h1,5416:24014842,12316175:0,281018,137888 +g1,5416:24160492,12316175 +$1,5416:24615050,12316175 +) +g1,5416:24615050,12316175 +) +) +g1,5416:24014842,12316175 +g1,5416:24014842,12316175 +) +) +g1,5416:24014842,12316175 +) +) +g1,5416:24014842,12316175 +(1,5416:24014842,12316175:924057,924057,924057 +g1,5416:24938899,12316175 +g1,5416:24938899,12316175 +) +g1,5416:24938899,12316175 +(1,5416:24938899,12316175:910950,924057,924057 +g1,5416:24938899,12316175 +g1,5416:25849849,12316175 +(1,5416:25849849,12316175:0,924057,924057 +(1,5416:25849849,12316175:0,0,0 +(1,5416:25849849,12316175:0,0,0 +g1,5416:25849849,12316175 +g1,5416:25849849,12316175 +g1,5416:25849849,12316175 +g1,5416:25849849,12316175 +g1,5416:25849849,12316175 +(1,5416:25849849,12316175:0,0,0 +(1,5416:25849849,12316175:0,281018,137888 +(1,5416:25849849,12316175:0,281018,137888 +$1,5416:25849849,12316175 +h1,5416:25849849,12316175:0,281018,137888 +$1,5416:25849849,12316175 +) +g1,5416:25849849,12316175 +) +) +g1,5416:25849849,12316175 +g1,5416:25849849,12316175 +) +) +g1,5416:25849849,12316175 +) +) +g1,5416:25849849,12316175 +(1,5417:25849849,12316175:924057,924057,924057 +g1,5417:26773906,12316175 +g1,5417:26773906,12316175 +) +g1,5417:26773906,12316175 +) +(1,5418:17585764,14151182:9188142,924057,924057 +g1,5417:17585764,14151182 +(1,5417:17585764,14151182:924057,924057,924057 +g1,5417:17585764,14151182 +g1,5417:18509821,14151182 +(1,5417:18509821,14151182:0,924057,924057 +(1,5417:18509821,14151182:0,0,0 +(1,5417:18509821,14151182:0,0,0 +g1,5417:18509821,14151182 +g1,5417:18509821,14151182 +g1,5417:18509821,14151182 +g1,5417:18509821,14151182 +g1,5417:18509821,14151182 +(1,5417:18509821,14151182:0,0,0 +(1,5417:18509821,14151182:1262877,281018,142607 +(1,5417:18509821,14151182:1262877,281018,142607 +$1,5417:18509821,14151182 +h1,5417:18509821,14151182:0,281018,137888 +(1,5417:18879968,14232054:892730,303170,61735 +) +$1,5417:19772698,14151182 +) +g1,5417:19772698,14151182 +) +) +g1,5417:18509821,14151182 +g1,5417:18509821,14151182 +) +) +g1,5417:18509821,14151182 +) +) +g1,5417:18509821,14151182 +(1,5417:18509821,14151182:924057,924057,924057 +g1,5417:19433878,14151182 +g1,5417:19433878,14151182 ) -k1,6195:3078556,49800853:-34777008 +g1,5417:19433878,14151182 +(1,5417:19433878,14151182:910950,924057,924057 +g1,5417:19433878,14151182 +g1,5417:20344828,14151182 +(1,5417:20344828,14151182:0,924057,924057 +(1,5417:20344828,14151182:0,0,0 +(1,5417:20344828,14151182:0,0,0 +g1,5417:20344828,14151182 +g1,5417:20344828,14151182 +g1,5417:20344828,14151182 +g1,5417:20344828,14151182 +g1,5417:20344828,14151182 +(1,5417:20344828,14151182:0,0,0 +(1,5417:20344828,14151182:1262877,281018,142607 +(1,5417:20344828,14151182:1262877,281018,142607 +$1,5417:20344828,14151182 +h1,5417:20344828,14151182:0,281018,137888 +(1,5417:20714975,14232054:892730,303170,61735 +) +$1,5417:21607705,14151182 +) +g1,5417:21607705,14151182 +) +) +g1,5417:20344828,14151182 +g1,5417:20344828,14151182 +) +) +g1,5417:20344828,14151182 +) +) +g1,5417:20344828,14151182 +(1,5417:20344828,14151182:924057,924057,924057 +g1,5417:21268885,14151182 +g1,5417:21268885,14151182 ) -] -g1,6195:6630773,4812305 -k1,6195:24358919,4812305:16931228 -g1,6195:25981590,4812305 -g1,6195:26804066,4812305 -g1,6195:30302377,4812305 +g1,5417:21268885,14151182 +(1,5417:21268885,14151182:910950,924057,924057 +g1,5417:21268885,14151182 +g1,5417:22179835,14151182 +(1,5417:22179835,14151182:0,924057,924057 +(1,5417:22179835,14151182:0,0,0 +(1,5417:22179835,14151182:0,0,0 +g1,5417:22179835,14151182 +g1,5417:22179835,14151182 +g1,5417:22179835,14151182 +g1,5417:22179835,14151182 +g1,5417:22179835,14151182 +(1,5417:22179835,14151182:0,0,0 +(1,5417:22179835,14151182:1262877,281018,142607 +(1,5417:22179835,14151182:1262877,281018,142607 +$1,5417:22179835,14151182 +h1,5417:22179835,14151182:0,281018,137888 +(1,5417:22549982,14232054:892730,303170,61735 ) +$1,5417:23442712,14151182 ) -] -[1,6195:6630773,45706769:25952256,40108032,0 -(1,6195:6630773,45706769:25952256,40108032,0 -(1,6195:6630773,45706769:0,0,0 -g1,6195:6630773,45706769 +g1,5417:23442712,14151182 ) -[1,6195:6630773,45706769:25952256,40108032,0 -v1,6082:6630773,6254097:0,393216,0 -(1,6113:6630773,17164130:25952256,11303249,196608 -g1,6113:6630773,17164130 -g1,6113:6630773,17164130 -g1,6113:6434165,17164130 -(1,6113:6434165,17164130:0,11303249,196608 -r1,6195:32779637,17164130:26345472,11499857,196608 -k1,6113:6434165,17164130:-26345472 ) -(1,6113:6434165,17164130:26345472,11303249,196608 -[1,6113:6630773,17164130:25952256,11106641,0 -(1,6084:6630773,6461715:25952256,404226,76021 -(1,6083:6630773,6461715:0,0,0 -g1,6083:6630773,6461715 -g1,6083:6630773,6461715 -g1,6083:6303093,6461715 -(1,6083:6303093,6461715:0,0,0 -) -g1,6083:6630773,6461715 -) -h1,6084:10108376,6461715:0,0,0 -k1,6084:32583028,6461715:22474652 -g1,6084:32583028,6461715 +g1,5417:22179835,14151182 +g1,5417:22179835,14151182 ) -(1,6089:6630773,7127893:25952256,410518,31456 -(1,6086:6630773,7127893:0,0,0 -g1,6086:6630773,7127893 -g1,6086:6630773,7127893 -g1,6086:6303093,7127893 -(1,6086:6303093,7127893:0,0,0 ) -g1,6086:6630773,7127893 -) -g1,6089:7579210,7127893 -h1,6089:8211501,7127893:0,0,0 -k1,6089:32583029,7127893:24371528 -g1,6089:32583029,7127893 -) -(1,6089:6630773,7794071:25952256,404226,76021 -h1,6089:6630773,7794071:0,0,0 -g1,6089:7579210,7794071 -g1,6089:8843793,7794071 -g1,6089:9476085,7794071 -g1,6089:10108377,7794071 -h1,6089:10424523,7794071:0,0,0 -k1,6089:32583029,7794071:22158506 -g1,6089:32583029,7794071 -) -(1,6091:6630773,9115609:25952256,410518,31456 -(1,6090:6630773,9115609:0,0,0 -g1,6090:6630773,9115609 -g1,6090:6630773,9115609 -g1,6090:6303093,9115609 -(1,6090:6303093,9115609:0,0,0 -) -g1,6090:6630773,9115609 -) -h1,6091:9159939,9115609:0,0,0 -k1,6091:32583029,9115609:23423090 -g1,6091:32583029,9115609 -) -(1,6095:6630773,9781787:25952256,404226,76021 -(1,6093:6630773,9781787:0,0,0 -g1,6093:6630773,9781787 -g1,6093:6630773,9781787 -g1,6093:6303093,9781787 -(1,6093:6303093,9781787:0,0,0 -) -g1,6093:6630773,9781787 -) -g1,6095:7579210,9781787 -g1,6095:8843793,9781787 -g1,6095:9476085,9781787 -g1,6095:10108377,9781787 -h1,6095:10424523,9781787:0,0,0 -k1,6095:32583029,9781787:22158506 -g1,6095:32583029,9781787 -) -(1,6097:6630773,11103325:25952256,404226,76021 -(1,6096:6630773,11103325:0,0,0 -g1,6096:6630773,11103325 -g1,6096:6630773,11103325 -g1,6096:6303093,11103325 -(1,6096:6303093,11103325:0,0,0 -) -g1,6096:6630773,11103325 -) -h1,6097:9476085,11103325:0,0,0 -k1,6097:32583029,11103325:23106944 -g1,6097:32583029,11103325 -) -(1,6102:6630773,11769503:25952256,410518,31456 -(1,6099:6630773,11769503:0,0,0 -g1,6099:6630773,11769503 -g1,6099:6630773,11769503 -g1,6099:6303093,11769503 -(1,6099:6303093,11769503:0,0,0 -) -g1,6099:6630773,11769503 -) -g1,6102:7579210,11769503 -h1,6102:8211501,11769503:0,0,0 -k1,6102:32583029,11769503:24371528 -g1,6102:32583029,11769503 -) -(1,6102:6630773,12435681:25952256,404226,76021 -h1,6102:6630773,12435681:0,0,0 -g1,6102:7579210,12435681 -g1,6102:8843793,12435681 -g1,6102:9476085,12435681 -g1,6102:10108377,12435681 -h1,6102:10424523,12435681:0,0,0 -k1,6102:32583029,12435681:22158506 -g1,6102:32583029,12435681 -) -(1,6104:6630773,13757219:25952256,404226,82312 -(1,6103:6630773,13757219:0,0,0 -g1,6103:6630773,13757219 -g1,6103:6630773,13757219 -g1,6103:6303093,13757219 -(1,6103:6303093,13757219:0,0,0 -) -g1,6103:6630773,13757219 -) -k1,6104:6630773,13757219:0 -g1,6104:10424523,13757219 -h1,6104:11372960,13757219:0,0,0 -k1,6104:32583028,13757219:21210068 -g1,6104:32583028,13757219 -) -(1,6112:6630773,14423397:25952256,410518,31456 -(1,6106:6630773,14423397:0,0,0 -g1,6106:6630773,14423397 -g1,6106:6630773,14423397 -g1,6106:6303093,14423397 -(1,6106:6303093,14423397:0,0,0 -) -g1,6106:6630773,14423397 -) -g1,6112:7579210,14423397 -h1,6112:8211501,14423397:0,0,0 -k1,6112:32583029,14423397:24371528 -g1,6112:32583029,14423397 -) -(1,6112:6630773,15089575:25952256,404226,76021 -h1,6112:6630773,15089575:0,0,0 -g1,6112:7579210,15089575 -g1,6112:8843793,15089575 -g1,6112:9476085,15089575 -g1,6112:10108377,15089575 -h1,6112:10424523,15089575:0,0,0 -k1,6112:32583029,15089575:22158506 -g1,6112:32583029,15089575 -) -(1,6112:6630773,15755753:25952256,379060,0 -h1,6112:6630773,15755753:0,0,0 -h1,6112:7263064,15755753:0,0,0 -k1,6112:32583028,15755753:25319964 -g1,6112:32583028,15755753 -) -(1,6112:6630773,16421931:25952256,410518,31456 -h1,6112:6630773,16421931:0,0,0 -g1,6112:7579210,16421931 -h1,6112:8211501,16421931:0,0,0 -k1,6112:32583029,16421931:24371528 -g1,6112:32583029,16421931 -) -(1,6112:6630773,17088109:25952256,404226,76021 -h1,6112:6630773,17088109:0,0,0 -g1,6112:7579210,17088109 -g1,6112:8843793,17088109 -g1,6112:9159939,17088109 -g1,6112:10740668,17088109 -h1,6112:12321396,17088109:0,0,0 -k1,6112:32583028,17088109:20261632 -g1,6112:32583028,17088109 -) -] -) -g1,6113:32583029,17164130 -g1,6113:6630773,17164130 -g1,6113:6630773,17164130 -g1,6113:32583029,17164130 -g1,6113:32583029,17164130 -) -h1,6113:6630773,17360738:0,0,0 -(1,6117:6630773,18634862:25952256,513147,134348 -h1,6116:6630773,18634862:983040,0,0 -k1,6116:8597508,18634862:165806 -k1,6116:10157265,18634862:165806 -k1,6116:12631249,18634862:165806 -k1,6116:15451918,18634862:165806 -k1,6116:18792943,18634862:165806 -k1,6116:21207945,18634862:165806 -k1,6116:23728460,18634862:165806 -k1,6116:26847974,18634862:165806 -k1,6116:29340963,18634862:165806 -k1,6116:30166061,18634862:165806 -k1,6117:32583029,18634862:0 -) -(1,6117:6630773,19476350:25952256,513147,134348 -g1,6116:7820251,19476350 -g1,6116:9832206,19476350 -g1,6116:11081322,19476350 -g1,6116:12778704,19476350 -h1,6116:13575622,19476350:0,0,0 -g1,6116:13774851,19476350 -g1,6116:14921731,19476350 -g1,6116:15476820,19476350 -g1,6116:17262676,19476350 -g1,6116:20446415,19476350 -g1,6116:21297072,19476350 -g1,6116:24084318,19476350 -g1,6116:24942839,19476350 -g1,6116:26135594,19476350 -k1,6117:32583029,19476350:3320057 -g1,6117:32583029,19476350 -) -v1,6119:6630773,20575164:0,393216,0 -(1,6137:6630773,26843587:25952256,6661639,196608 -g1,6137:6630773,26843587 -g1,6137:6630773,26843587 -g1,6137:6434165,26843587 -(1,6137:6434165,26843587:0,6661639,196608 -r1,6195:32779637,26843587:26345472,6858247,196608 -k1,6137:6434165,26843587:-26345472 -) -(1,6137:6434165,26843587:26345472,6661639,196608 -[1,6137:6630773,26843587:25952256,6465031,0 -(1,6121:6630773,20782782:25952256,404226,76021 -(1,6120:6630773,20782782:0,0,0 -g1,6120:6630773,20782782 -g1,6120:6630773,20782782 -g1,6120:6303093,20782782 -(1,6120:6303093,20782782:0,0,0 -) -g1,6120:6630773,20782782 -) -k1,6121:6630773,20782782:0 -h1,6121:9792231,20782782:0,0,0 -k1,6121:32583029,20782782:22790798 -g1,6121:32583029,20782782 -) -(1,6129:6630773,21448960:25952256,410518,101187 -(1,6123:6630773,21448960:0,0,0 -g1,6123:6630773,21448960 -g1,6123:6630773,21448960 -g1,6123:6303093,21448960 -(1,6123:6303093,21448960:0,0,0 -) -g1,6123:6630773,21448960 -) -g1,6129:7579210,21448960 -h1,6129:8211501,21448960:0,0,0 -k1,6129:32583029,21448960:24371528 -g1,6129:32583029,21448960 -) -(1,6129:6630773,22115138:25952256,404226,76021 -h1,6129:6630773,22115138:0,0,0 -g1,6129:7579210,22115138 -g1,6129:8843793,22115138 -h1,6129:10108376,22115138:0,0,0 -k1,6129:32583028,22115138:22474652 -g1,6129:32583028,22115138 -) -(1,6129:6630773,22781316:25952256,379060,0 -h1,6129:6630773,22781316:0,0,0 -h1,6129:7263064,22781316:0,0,0 -k1,6129:32583028,22781316:25319964 -g1,6129:32583028,22781316 -) -(1,6129:6630773,23447494:25952256,410518,31456 -h1,6129:6630773,23447494:0,0,0 -g1,6129:7579210,23447494 -h1,6129:8211501,23447494:0,0,0 -k1,6129:32583029,23447494:24371528 -g1,6129:32583029,23447494 -) -(1,6129:6630773,24113672:25952256,404226,76021 -h1,6129:6630773,24113672:0,0,0 -g1,6129:7579210,24113672 -g1,6129:8843793,24113672 -g1,6129:9159939,24113672 -g1,6129:10740668,24113672 -h1,6129:12321396,24113672:0,0,0 -k1,6129:32583028,24113672:20261632 -g1,6129:32583028,24113672 -) -(1,6131:6630773,25435210:25952256,404226,82312 -(1,6130:6630773,25435210:0,0,0 -g1,6130:6630773,25435210 -g1,6130:6630773,25435210 -g1,6130:6303093,25435210 -(1,6130:6303093,25435210:0,0,0 -) -g1,6130:6630773,25435210 -) -k1,6131:6630773,25435210:0 -g1,6131:10740669,25435210 -k1,6131:10740669,25435210:0 -h1,6131:12005252,25435210:0,0,0 -k1,6131:32583028,25435210:20577776 -g1,6131:32583028,25435210 -) -(1,6136:6630773,26101388:25952256,410518,101187 -(1,6133:6630773,26101388:0,0,0 -g1,6133:6630773,26101388 -g1,6133:6630773,26101388 -g1,6133:6303093,26101388 -(1,6133:6303093,26101388:0,0,0 -) -g1,6133:6630773,26101388 -) -g1,6136:7579210,26101388 -h1,6136:8211501,26101388:0,0,0 -k1,6136:32583029,26101388:24371528 -g1,6136:32583029,26101388 -) -(1,6136:6630773,26767566:25952256,404226,76021 -h1,6136:6630773,26767566:0,0,0 -g1,6136:7579210,26767566 -g1,6136:8843793,26767566 -h1,6136:10108376,26767566:0,0,0 -k1,6136:32583028,26767566:22474652 -g1,6136:32583028,26767566 -) -] -) -g1,6137:32583029,26843587 -g1,6137:6630773,26843587 -g1,6137:6630773,26843587 -g1,6137:32583029,26843587 -g1,6137:32583029,26843587 -) -h1,6137:6630773,27040195:0,0,0 -(1,6141:6630773,28314319:25952256,513147,134348 -h1,6140:6630773,28314319:983040,0,0 -k1,6140:9644872,28314319:239305 -k1,6140:12630790,28314319:239304 -(1,6140:12630790,28314319:0,452978,115847 -r1,6195:14395904,28314319:1765114,568825,115847 -k1,6140:12630790,28314319:-1765114 -) -(1,6140:12630790,28314319:1765114,452978,115847 -g1,6140:13689203,28314319 -h1,6140:14392627,28314319:0,411205,112570 -) -k1,6140:14635209,28314319:239305 -k1,6140:17264612,28314319:239305 -k1,6140:19644977,28314319:239304 -k1,6140:22796702,28314319:239305 -k1,6140:23983657,28314319:239304 -k1,6140:26962367,28314319:239305 -k1,6140:27557532,28314319:239305 -k1,6140:28790362,28314319:239304 -k1,6140:31563944,28314319:239305 -k1,6140:32583029,28314319:0 -) -(1,6141:6630773,29155807:25952256,505283,134348 -k1,6140:9311765,29155807:142127 -k1,6140:11492062,29155807:142127 -k1,6140:12250227,29155807:142127 -k1,6140:13411439,29155807:142127 -k1,6140:14720762,29155807:142127 -k1,6140:15478927,29155807:142127 -k1,6140:16409452,29155807:142127 -k1,6140:18986897,29155807:142127 -k1,6140:21085274,29155807:142127 -k1,6140:21855236,29155807:142127 -k1,6140:23016448,29155807:142127 -k1,6140:25819992,29155807:142127 -k1,6140:28004221,29155807:142127 -(1,6140:28004221,29155807:0,452978,115847 -r1,6195:32583029,29155807:4578808,568825,115847 -k1,6140:28004221,29155807:-4578808 -) -(1,6140:28004221,29155807:4578808,452978,115847 -k1,6140:28004221,29155807:3277 -h1,6140:32579752,29155807:0,411205,112570 -) -k1,6140:32583029,29155807:0 -) -(1,6141:6630773,29997295:25952256,505283,134348 -k1,6140:8061641,29997295:239423 -(1,6140:8061641,29997295:0,452978,115847 -r1,6195:11937025,29997295:3875384,568825,115847 -k1,6140:8061641,29997295:-3875384 -) -(1,6140:8061641,29997295:3875384,452978,115847 -k1,6140:8061641,29997295:3277 -h1,6140:11933748,29997295:0,411205,112570 -) -k1,6140:12176447,29997295:239422 -k1,6140:14426515,29997295:239423 -k1,6140:15021798,29997295:239423 -k1,6140:17881350,29997295:239423 -k1,6140:20272319,29997295:239422 -k1,6140:21465291,29997295:239423 -k1,6140:23571835,29997295:239423 -k1,6140:24858523,29997295:239423 -k1,6140:26382451,29997295:239422 -k1,6140:29836415,29997295:239423 -k1,6141:32583029,29997295:0 -) -(1,6141:6630773,30838783:25952256,505283,126483 -(1,6140:6630773,30838783:0,452978,115847 -r1,6195:8395887,30838783:1765114,568825,115847 -k1,6140:6630773,30838783:-1765114 -) -(1,6140:6630773,30838783:1765114,452978,115847 -g1,6140:7689186,30838783 -h1,6140:8392610,30838783:0,411205,112570 -) -g1,6140:8595116,30838783 -g1,6140:11211968,30838783 -g1,6140:14183370,30838783 -g1,6140:15650065,30838783 -g1,6140:16868379,30838783 -g1,6140:18061134,30838783 -g1,6140:19702810,30838783 -g1,6140:22648653,30838783 -(1,6140:22648653,30838783:0,452978,115847 -r1,6195:23710343,30838783:1061690,568825,115847 -k1,6140:22648653,30838783:-1061690 -) -(1,6140:22648653,30838783:1061690,452978,115847 -g1,6140:23355354,30838783 -h1,6140:23707066,30838783:0,411205,112570 -) -k1,6141:32583029,30838783:8699016 -g1,6141:32583029,30838783 -) -v1,6143:6630773,31937597:0,393216,0 -(1,6162:6630773,36869138:25952256,5324757,196608 -g1,6162:6630773,36869138 -g1,6162:6630773,36869138 -g1,6162:6434165,36869138 -(1,6162:6434165,36869138:0,5324757,196608 -r1,6195:32779637,36869138:26345472,5521365,196608 -k1,6162:6434165,36869138:-26345472 -) -(1,6162:6434165,36869138:26345472,5324757,196608 -[1,6162:6630773,36869138:25952256,5128149,0 -(1,6145:6630773,32151507:25952256,410518,31456 -(1,6144:6630773,32151507:0,0,0 -g1,6144:6630773,32151507 -g1,6144:6630773,32151507 -g1,6144:6303093,32151507 -(1,6144:6303093,32151507:0,0,0 -) -g1,6144:6630773,32151507 -) -h1,6145:9159939,32151507:0,0,0 -k1,6145:32583029,32151507:23423090 -g1,6145:32583029,32151507 -) -(1,6149:6630773,32817685:25952256,404226,76021 -(1,6147:6630773,32817685:0,0,0 -g1,6147:6630773,32817685 -g1,6147:6630773,32817685 -g1,6147:6303093,32817685 -(1,6147:6303093,32817685:0,0,0 -) -g1,6147:6630773,32817685 -) -g1,6149:7579210,32817685 -g1,6149:8843793,32817685 -g1,6149:9476085,32817685 -g1,6149:10108377,32817685 -h1,6149:10424523,32817685:0,0,0 -k1,6149:32583029,32817685:22158506 -g1,6149:32583029,32817685 -) -(1,6151:6630773,34139223:25952256,404226,76021 -(1,6150:6630773,34139223:0,0,0 -g1,6150:6630773,34139223 -g1,6150:6630773,34139223 -g1,6150:6303093,34139223 -(1,6150:6303093,34139223:0,0,0 -) -g1,6150:6630773,34139223 -) -h1,6151:10740666,34139223:0,0,0 -k1,6151:32583030,34139223:21842364 -g1,6151:32583030,34139223 -) -(1,6155:6630773,34805401:25952256,404226,76021 -(1,6153:6630773,34805401:0,0,0 -g1,6153:6630773,34805401 -g1,6153:6630773,34805401 -g1,6153:6303093,34805401 -(1,6153:6303093,34805401:0,0,0 -) -g1,6153:6630773,34805401 -) -g1,6155:7579210,34805401 -g1,6155:8843793,34805401 -g1,6155:9476085,34805401 -g1,6155:10108377,34805401 -h1,6155:10424523,34805401:0,0,0 -k1,6155:32583029,34805401:22158506 -g1,6155:32583029,34805401 -) -(1,6157:6630773,36126939:25952256,404226,76021 -(1,6156:6630773,36126939:0,0,0 -g1,6156:6630773,36126939 -g1,6156:6630773,36126939 -g1,6156:6303093,36126939 -(1,6156:6303093,36126939:0,0,0 -) -g1,6156:6630773,36126939 -) -h1,6157:10108375,36126939:0,0,0 -k1,6157:32583029,36126939:22474654 -g1,6157:32583029,36126939 -) -(1,6161:6630773,36793117:25952256,404226,76021 -(1,6159:6630773,36793117:0,0,0 -g1,6159:6630773,36793117 -g1,6159:6630773,36793117 -g1,6159:6303093,36793117 -(1,6159:6303093,36793117:0,0,0 -) -g1,6159:6630773,36793117 -) -g1,6161:7579210,36793117 -g1,6161:8843793,36793117 -g1,6161:9476085,36793117 -g1,6161:10108377,36793117 -h1,6161:10424523,36793117:0,0,0 -k1,6161:32583029,36793117:22158506 -g1,6161:32583029,36793117 -) -] -) -g1,6162:32583029,36869138 -g1,6162:6630773,36869138 -g1,6162:6630773,36869138 -g1,6162:32583029,36869138 -g1,6162:32583029,36869138 -) -h1,6162:6630773,37065746:0,0,0 -v1,6166:6630773,38597196:0,393216,0 -(1,6191:6630773,45510161:25952256,7306181,196608 -g1,6191:6630773,45510161 -g1,6191:6630773,45510161 -g1,6191:6434165,45510161 -(1,6191:6434165,45510161:0,7306181,196608 -r1,6195:32779637,45510161:26345472,7502789,196608 -k1,6191:6434165,45510161:-26345472 -) -(1,6191:6434165,45510161:26345472,7306181,196608 -[1,6191:6630773,45510161:25952256,7109573,0 -(1,6168:6630773,38804814:25952256,404226,76021 -(1,6167:6630773,38804814:0,0,0 -g1,6167:6630773,38804814 -g1,6167:6630773,38804814 -g1,6167:6303093,38804814 -(1,6167:6303093,38804814:0,0,0 -) -g1,6167:6630773,38804814 -) -k1,6168:6630773,38804814:0 -h1,6168:12953686,38804814:0,0,0 -k1,6168:32583030,38804814:19629344 -g1,6168:32583030,38804814 -) -(1,6172:6630773,39470992:25952256,404226,76021 -(1,6170:6630773,39470992:0,0,0 -g1,6170:6630773,39470992 -g1,6170:6630773,39470992 -g1,6170:6303093,39470992 -(1,6170:6303093,39470992:0,0,0 -) -g1,6170:6630773,39470992 -) -g1,6172:7579210,39470992 -g1,6172:8843793,39470992 -h1,6172:10108376,39470992:0,0,0 -k1,6172:32583028,39470992:22474652 -g1,6172:32583028,39470992 -) -(1,6174:6630773,40792530:25952256,404226,76021 -(1,6173:6630773,40792530:0,0,0 -g1,6173:6630773,40792530 -g1,6173:6630773,40792530 -g1,6173:6303093,40792530 -(1,6173:6303093,40792530:0,0,0 -) -g1,6173:6630773,40792530 -) -k1,6174:6630773,40792530:0 -h1,6174:12321395,40792530:0,0,0 -k1,6174:32583029,40792530:20261634 -g1,6174:32583029,40792530 -) -(1,6178:6630773,41458708:25952256,404226,76021 -(1,6176:6630773,41458708:0,0,0 -g1,6176:6630773,41458708 -g1,6176:6630773,41458708 -g1,6176:6303093,41458708 -(1,6176:6303093,41458708:0,0,0 +g1,5417:22179835,14151182 ) -g1,6176:6630773,41458708 -) -g1,6178:7579210,41458708 -g1,6178:8843793,41458708 -h1,6178:10108376,41458708:0,0,0 -k1,6178:32583028,41458708:22474652 -g1,6178:32583028,41458708 ) -(1,6180:6630773,42780246:25952256,404226,76021 -(1,6179:6630773,42780246:0,0,0 -g1,6179:6630773,42780246 -g1,6179:6630773,42780246 -g1,6179:6303093,42780246 -(1,6179:6303093,42780246:0,0,0 +g1,5417:22179835,14151182 +(1,5417:22179835,14151182:924057,924057,924057 +g1,5417:23103892,14151182 +g1,5417:23103892,14151182 ) -g1,6179:6630773,42780246 +g1,5417:23103892,14151182 +(1,5417:23103892,14151182:910950,924057,924057 +g1,5417:23103892,14151182 +g1,5417:24014842,14151182 +(1,5417:24014842,14151182:0,924057,924057 +(1,5417:24014842,14151182:0,0,0 +(1,5417:24014842,14151182:0,0,0 +g1,5417:24014842,14151182 +g1,5417:24014842,14151182 +g1,5417:24014842,14151182 +g1,5417:24014842,14151182 +g1,5417:24014842,14151182 +(1,5417:24014842,14151182:0,0,0 +(1,5417:24014842,14151182:0,281018,137888 +(1,5417:24014842,14151182:0,281018,137888 +$1,5417:24014842,14151182 +h1,5417:24014842,14151182:0,281018,137888 +$1,5417:24014842,14151182 ) -k1,6180:6630773,42780246:0 -h1,6180:13585978,42780246:0,0,0 -k1,6180:32583030,42780246:18997052 -g1,6180:32583030,42780246 +g1,5417:24014842,14151182 ) -(1,6184:6630773,43446424:25952256,404226,76021 -(1,6182:6630773,43446424:0,0,0 -g1,6182:6630773,43446424 -g1,6182:6630773,43446424 -g1,6182:6303093,43446424 -(1,6182:6303093,43446424:0,0,0 ) -g1,6182:6630773,43446424 +g1,5417:24014842,14151182 +g1,5417:24014842,14151182 ) -g1,6184:7579210,43446424 -g1,6184:8843793,43446424 -h1,6184:10108376,43446424:0,0,0 -k1,6184:32583028,43446424:22474652 -g1,6184:32583028,43446424 ) -(1,6186:6630773,44767962:25952256,404226,76021 -(1,6185:6630773,44767962:0,0,0 -g1,6185:6630773,44767962 -g1,6185:6630773,44767962 -g1,6185:6303093,44767962 -(1,6185:6303093,44767962:0,0,0 +g1,5417:24014842,14151182 ) -g1,6185:6630773,44767962 ) -k1,6186:6630773,44767962:0 -h1,6186:12953687,44767962:0,0,0 -k1,6186:32583029,44767962:19629342 -g1,6186:32583029,44767962 +g1,5417:24014842,14151182 +(1,5417:24014842,14151182:924057,924057,924057 +g1,5417:24938899,14151182 +g1,5417:24938899,14151182 ) -(1,6190:6630773,45434140:25952256,404226,76021 -(1,6188:6630773,45434140:0,0,0 -g1,6188:6630773,45434140 -g1,6188:6630773,45434140 -g1,6188:6303093,45434140 -(1,6188:6303093,45434140:0,0,0 +g1,5417:24938899,14151182 +(1,5417:24938899,14151182:910950,924057,924057 +g1,5417:24938899,14151182 +g1,5417:25849849,14151182 +(1,5417:25849849,14151182:0,924057,924057 +(1,5417:25849849,14151182:0,0,0 +(1,5417:25849849,14151182:0,0,0 +g1,5417:25849849,14151182 +g1,5417:25849849,14151182 +g1,5417:25849849,14151182 +g1,5417:25849849,14151182 +g1,5417:25849849,14151182 +(1,5417:25849849,14151182:0,0,0 +(1,5417:25849849,14151182:1455946,281018,142607 +(1,5417:25849849,14151182:1455946,281018,142607 +$1,5417:25849849,14151182 +h1,5417:25849849,14151182:0,281018,137888 +(1,5417:26219996,14232054:1085799,303170,61735 ) -g1,6188:6630773,45434140 +$1,5417:27305795,14151182 ) -g1,6190:7579210,45434140 -g1,6190:8843793,45434140 -h1,6190:10424521,45434140:0,0,0 -k1,6190:32583029,45434140:22158508 -g1,6190:32583029,45434140 +g1,5417:27305795,14151182 ) -] ) -g1,6191:32583029,45510161 -g1,6191:6630773,45510161 -g1,6191:6630773,45510161 -g1,6191:32583029,45510161 -g1,6191:32583029,45510161 +g1,5417:25849849,14151182 +g1,5417:25849849,14151182 ) -h1,6191:6630773,45706769:0,0,0 -] -(1,6195:32583029,45706769:0,0,0 -g1,6195:32583029,45706769 ) +g1,5417:25849849,14151182 ) -] -(1,6195:6630773,47279633:25952256,0,0 -h1,6195:6630773,47279633:25952256,0,0 ) -] -(1,6195:4262630,4025873:0,0,0 -[1,6195:-473656,4025873:0,0,0 -(1,6195:-473656,-710413:0,0,0 -(1,6195:-473656,-710413:0,0,0 -g1,6195:-473656,-710413 +g1,5417:25849849,14151182 +(1,5418:25849849,14151182:924057,924057,924057 +g1,5418:26773906,14151182 +g1,5418:26773906,14151182 ) -g1,6195:-473656,-710413 +g1,5418:26773906,14151182 ) ] ) -] -!20997 -}105 -Input:860:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:861:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:862:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:863:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:864:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:865:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:866:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:867:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!756 -{106 -[1,6270:4262630,47279633:28320399,43253760,0 -(1,6270:4262630,4025873:0,0,0 -[1,6270:-473656,4025873:0,0,0 -(1,6270:-473656,-710413:0,0,0 -(1,6270:-473656,-644877:0,0,0 -k1,6270:-473656,-644877:-65536 ) -(1,6270:-473656,4736287:0,0,0 -k1,6270:-473656,4736287:5209943 +g1,5418:17585764,14151182 +g1,5418:17585764,14151182 ) -g1,6270:-473656,-710413 ) -] +(1,5426:17585764,14151182:0,0,0 +(1,5426:17585764,14151182:0,0,0 +g1,5426:17585764,14151182 +g1,5426:17585764,14151182 +g1,5426:17585764,14151182 +g1,5426:17585764,14151182 +g1,5426:17585764,14151182 +(1,5426:17585764,14151182:0,0,0 +(1,5426:17585764,14151182:9188142,8264085,924057 +[1,5426:17585764,14151182:9188142,8264085,924057 +(1,5422:17585764,6811154:9188142,924057,924057 +g1,5421:17585764,6811154 +(1,5421:17585764,6811154:924057,924057,924057 +g1,5421:17585764,6811154 +g1,5421:18509821,6811154 +(1,5421:18509821,6811154:0,924057,924057 +(1,5421:18509821,6811154:0,0,0 +(1,5421:18509821,6811154:0,0,0 +g1,5421:18509821,6811154 +g1,5421:18509821,6811154 +g1,5421:18509821,6811154 +g1,5421:18509821,6811154 +g1,5421:18509821,6811154 +(1,5421:18509821,6811154:0,0,0 +(1,5421:18509821,6811154:1347418,281018,140387 +(1,5421:18509821,6811154:1347418,281018,140387 +$1,5421:18509821,6811154 +h1,5421:18509821,6811154:0,281018,137888 +(1,5421:18879968,6889806:977271,291373,61735 ) -[1,6270:6630773,47279633:25952256,43253760,0 -[1,6270:6630773,4812305:25952256,786432,0 -(1,6270:6630773,4812305:25952256,485622,11795 -(1,6270:6630773,4812305:25952256,485622,11795 -g1,6270:3078558,4812305 -[1,6270:3078558,4812305:0,0,0 -(1,6270:3078558,2439708:0,1703936,0 -k1,6270:1358238,2439708:-1720320 -(1,5950:1358238,2439708:1720320,1703936,0 -(1,5950:1358238,2439708:1179648,16384,0 -r1,6270:2537886,2439708:1179648,16384,0 +$1,5421:19857239,6811154 ) -g1,5950:3062174,2439708 -(1,5950:3062174,2439708:16384,1703936,0 -[1,5950:3062174,2439708:25952256,1703936,0 -(1,5950:3062174,1915420:25952256,1179648,0 -(1,5950:3062174,1915420:16384,1179648,0 -r1,6270:3078558,1915420:16384,1179648,0 +g1,5421:19857239,6811154 ) -k1,5950:29014430,1915420:25935872 -g1,5950:29014430,1915420 ) -] +g1,5421:18509821,6811154 +g1,5421:18509821,6811154 ) ) +g1,5421:18509821,6811154 ) -] -[1,6270:3078558,4812305:0,0,0 -(1,6270:3078558,2439708:0,1703936,0 -g1,6270:29030814,2439708 -g1,6270:36135244,2439708 -(1,5950:36135244,2439708:1720320,1703936,0 -(1,5950:36135244,2439708:16384,1703936,0 -[1,5950:36135244,2439708:25952256,1703936,0 -(1,5950:36135244,1915420:25952256,1179648,0 -(1,5950:36135244,1915420:16384,1179648,0 -r1,6270:36151628,1915420:16384,1179648,0 ) -k1,5950:62087500,1915420:25935872 -g1,5950:62087500,1915420 +g1,5421:18509821,6811154 +(1,5421:18509821,6811154:924057,924057,924057 +g1,5421:19433878,6811154 +g1,5421:19433878,6811154 ) -] +g1,5421:19433878,6811154 +(1,5421:19433878,6811154:910950,924057,924057 +g1,5421:19433878,6811154 +g1,5421:20344828,6811154 +(1,5421:20344828,6811154:0,924057,924057 +(1,5421:20344828,6811154:0,0,0 +(1,5421:20344828,6811154:0,0,0 +g1,5421:20344828,6811154 +g1,5421:20344828,6811154 +g1,5421:20344828,6811154 +g1,5421:20344828,6811154 +g1,5421:20344828,6811154 +(1,5421:20344828,6811154:0,0,0 +(1,5421:20344828,6811154:1347418,281018,140387 +(1,5421:20344828,6811154:1347418,281018,140387 +$1,5421:20344828,6811154 +h1,5421:20344828,6811154:0,281018,137888 +(1,5421:20714975,6889806:977271,291373,61735 ) -g1,5950:36675916,2439708 -(1,5950:36675916,2439708:1179648,16384,0 -r1,6270:37855564,2439708:1179648,16384,0 +$1,5421:21692246,6811154 ) +g1,5421:21692246,6811154 ) -k1,6270:3078556,2439708:-34777008 ) -] -[1,6270:3078558,4812305:0,0,0 -(1,6270:3078558,49800853:0,16384,2228224 -k1,6270:1358238,49800853:-1720320 -(1,5950:1358238,49800853:1720320,16384,2228224 -(1,5950:1358238,49800853:1179648,16384,0 -r1,6270:2537886,49800853:1179648,16384,0 +g1,5421:20344828,6811154 +g1,5421:20344828,6811154 ) -g1,5950:3062174,49800853 -(1,5950:3062174,52029077:16384,1703936,0 -[1,5950:3062174,52029077:25952256,1703936,0 -(1,5950:3062174,51504789:25952256,1179648,0 -(1,5950:3062174,51504789:16384,1179648,0 -r1,6270:3078558,51504789:16384,1179648,0 ) -k1,5950:29014430,51504789:25935872 -g1,5950:29014430,51504789 +g1,5421:20344828,6811154 ) -] ) +g1,5421:20344828,6811154 +(1,5421:20344828,6811154:924057,924057,924057 +g1,5421:21268885,6811154 +g1,5421:21268885,6811154 ) +g1,5421:21268885,6811154 +(1,5421:21268885,6811154:910950,924057,924057 +g1,5421:21268885,6811154 +g1,5421:22179835,6811154 +(1,5421:22179835,6811154:0,924057,924057 +(1,5421:22179835,6811154:0,0,0 +(1,5421:22179835,6811154:0,0,0 +g1,5421:22179835,6811154 +g1,5421:22179835,6811154 +g1,5421:22179835,6811154 +g1,5421:22179835,6811154 +g1,5421:22179835,6811154 +(1,5421:22179835,6811154:0,0,0 +(1,5421:22179835,6811154:1347418,281018,140387 +(1,5421:22179835,6811154:1347418,281018,140387 +$1,5421:22179835,6811154 +h1,5421:22179835,6811154:0,281018,137888 +(1,5421:22549982,6889806:977271,291373,61735 +) +$1,5421:23527253,6811154 +) +g1,5421:23527253,6811154 +) +) +g1,5421:22179835,6811154 +g1,5421:22179835,6811154 +) +) +g1,5421:22179835,6811154 +) +) +g1,5421:22179835,6811154 +(1,5421:22179835,6811154:924057,924057,924057 +g1,5421:23103892,6811154 +g1,5421:23103892,6811154 +) +g1,5421:23103892,6811154 +(1,5421:23103892,6811154:910950,924057,924057 +g1,5421:23103892,6811154 +g1,5421:24014842,6811154 +(1,5421:24014842,6811154:0,924057,924057 +(1,5421:24014842,6811154:0,0,0 +(1,5421:24014842,6811154:0,0,0 +g1,5421:24014842,6811154 +g1,5421:24014842,6811154 +g1,5421:24014842,6811154 +g1,5421:24014842,6811154 +g1,5421:24014842,6811154 +(1,5421:24014842,6811154:0,0,0 +(1,5421:24014842,6811154:549288,281018,137888 +(1,5421:24014842,6811154:549288,281018,137888 +$1,5421:24014842,6811154 +h1,5421:24014842,6811154:0,281018,137888 +g1,5421:24102232,6811154 +$1,5421:24564130,6811154 +) +g1,5421:24564130,6811154 +) +) +g1,5421:24014842,6811154 +g1,5421:24014842,6811154 +) +) +g1,5421:24014842,6811154 +) +) +g1,5421:24014842,6811154 +(1,5421:24014842,6811154:924057,924057,924057 +g1,5421:24938899,6811154 +g1,5421:24938899,6811154 +) +g1,5421:24938899,6811154 +(1,5421:24938899,6811154:910950,924057,924057 +g1,5421:24938899,6811154 +g1,5421:25849849,6811154 +(1,5421:25849849,6811154:0,924057,924057 +(1,5421:25849849,6811154:0,0,0 +(1,5421:25849849,6811154:0,0,0 +g1,5421:25849849,6811154 +g1,5421:25849849,6811154 +g1,5421:25849849,6811154 +g1,5421:25849849,6811154 +g1,5421:25849849,6811154 +(1,5421:25849849,6811154:0,0,0 +(1,5421:25849849,6811154:1540487,281018,140387 +(1,5421:25849849,6811154:1540487,281018,140387 +$1,5421:25849849,6811154 +h1,5421:25849849,6811154:0,281018,137888 +(1,5421:26219996,6889806:1170340,291373,61735 ) -] -[1,6270:3078558,4812305:0,0,0 -(1,6270:3078558,49800853:0,16384,2228224 -g1,6270:29030814,49800853 -g1,6270:36135244,49800853 -(1,5950:36135244,49800853:1720320,16384,2228224 -(1,5950:36135244,52029077:16384,1703936,0 -[1,5950:36135244,52029077:25952256,1703936,0 -(1,5950:36135244,51504789:25952256,1179648,0 -(1,5950:36135244,51504789:16384,1179648,0 -r1,6270:36151628,51504789:16384,1179648,0 +$1,5421:27390336,6811154 +) +g1,5421:27390336,6811154 +) +) +g1,5421:25849849,6811154 +g1,5421:25849849,6811154 +) +) +g1,5421:25849849,6811154 +) +) +g1,5421:25849849,6811154 +(1,5422:25849849,6811154:924057,924057,924057 +g1,5422:26773906,6811154 +g1,5422:26773906,6811154 +) +g1,5422:26773906,6811154 ) -k1,5950:62087500,51504789:25935872 -g1,5950:62087500,51504789 +(1,5423:17585764,8646161:9188142,924057,924057 +g1,5422:17585764,8646161 +(1,5422:17585764,8646161:924057,924057,924057 +g1,5422:17585764,8646161 +g1,5422:18509821,8646161 +(1,5422:18509821,8646161:0,924057,924057 +(1,5422:18509821,8646161:0,0,0 +(1,5422:18509821,8646161:0,0,0 +g1,5422:18509821,8646161 +g1,5422:18509821,8646161 +g1,5422:18509821,8646161 +g1,5422:18509821,8646161 +g1,5422:18509821,8646161 +(1,5422:18509821,8646161:0,0,0 +(1,5422:18509821,8646161:1347418,281018,140387 +(1,5422:18509821,8646161:1347418,281018,140387 +$1,5422:18509821,8646161 +h1,5422:18509821,8646161:0,281018,137888 +(1,5422:18879968,8724813:977271,291373,61735 +) +$1,5422:19857239,8646161 +) +g1,5422:19857239,8646161 +) +) +g1,5422:18509821,8646161 +g1,5422:18509821,8646161 +) +) +g1,5422:18509821,8646161 +) +) +g1,5422:18509821,8646161 +(1,5422:18509821,8646161:924057,924057,924057 +g1,5422:19433878,8646161 +g1,5422:19433878,8646161 ) -] +g1,5422:19433878,8646161 +(1,5422:19433878,8646161:910950,924057,924057 +g1,5422:19433878,8646161 +g1,5422:20344828,8646161 +(1,5422:20344828,8646161:0,924057,924057 +(1,5422:20344828,8646161:0,0,0 +(1,5422:20344828,8646161:0,0,0 +g1,5422:20344828,8646161 +g1,5422:20344828,8646161 +g1,5422:20344828,8646161 +g1,5422:20344828,8646161 +g1,5422:20344828,8646161 +(1,5422:20344828,8646161:0,0,0 +(1,5422:20344828,8646161:1347418,281018,140387 +(1,5422:20344828,8646161:1347418,281018,140387 +$1,5422:20344828,8646161 +h1,5422:20344828,8646161:0,281018,137888 +(1,5422:20714975,8724813:977271,291373,61735 +) +$1,5422:21692246,8646161 +) +g1,5422:21692246,8646161 +) +) +g1,5422:20344828,8646161 +g1,5422:20344828,8646161 +) +) +g1,5422:20344828,8646161 +) +) +g1,5422:20344828,8646161 +(1,5422:20344828,8646161:924057,924057,924057 +g1,5422:21268885,8646161 +g1,5422:21268885,8646161 ) -g1,5950:36675916,49800853 -(1,5950:36675916,49800853:1179648,16384,0 -r1,6270:37855564,49800853:1179648,16384,0 +g1,5422:21268885,8646161 +(1,5422:21268885,8646161:910950,924057,924057 +g1,5422:21268885,8646161 +g1,5422:22179835,8646161 +(1,5422:22179835,8646161:0,924057,924057 +(1,5422:22179835,8646161:0,0,0 +(1,5422:22179835,8646161:0,0,0 +g1,5422:22179835,8646161 +g1,5422:22179835,8646161 +g1,5422:22179835,8646161 +g1,5422:22179835,8646161 +g1,5422:22179835,8646161 +(1,5422:22179835,8646161:0,0,0 +(1,5422:22179835,8646161:1347418,281018,140387 +(1,5422:22179835,8646161:1347418,281018,140387 +$1,5422:22179835,8646161 +h1,5422:22179835,8646161:0,281018,137888 +(1,5422:22549982,8724813:977271,291373,61735 +) +$1,5422:23527253,8646161 +) +g1,5422:23527253,8646161 +) +) +g1,5422:22179835,8646161 +g1,5422:22179835,8646161 +) +) +g1,5422:22179835,8646161 +) +) +g1,5422:22179835,8646161 +(1,5422:22179835,8646161:924057,924057,924057 +g1,5422:23103892,8646161 +g1,5422:23103892,8646161 ) +g1,5422:23103892,8646161 +(1,5422:23103892,8646161:910950,924057,924057 +g1,5422:23103892,8646161 +g1,5422:24014842,8646161 +(1,5422:24014842,8646161:0,924057,924057 +(1,5422:24014842,8646161:0,0,0 +(1,5422:24014842,8646161:0,0,0 +g1,5422:24014842,8646161 +g1,5422:24014842,8646161 +g1,5422:24014842,8646161 +g1,5422:24014842,8646161 +g1,5422:24014842,8646161 +(1,5422:24014842,8646161:0,0,0 +(1,5422:24014842,8646161:0,281018,137888 +(1,5422:24014842,8646161:0,281018,137888 +$1,5422:24014842,8646161 +h1,5422:24014842,8646161:0,281018,137888 +$1,5422:24014842,8646161 ) -k1,6270:3078556,49800853:-34777008 +g1,5422:24014842,8646161 +) +) +g1,5422:24014842,8646161 +g1,5422:24014842,8646161 +) +) +g1,5422:24014842,8646161 +) +) +g1,5422:24014842,8646161 +(1,5422:24014842,8646161:924057,924057,924057 +g1,5422:24938899,8646161 +g1,5422:24938899,8646161 +) +g1,5422:24938899,8646161 +(1,5422:24938899,8646161:910950,924057,924057 +g1,5422:24938899,8646161 +g1,5422:25849849,8646161 +(1,5422:25849849,8646161:0,924057,924057 +(1,5422:25849849,8646161:0,0,0 +(1,5422:25849849,8646161:0,0,0 +g1,5422:25849849,8646161 +g1,5422:25849849,8646161 +g1,5422:25849849,8646161 +g1,5422:25849849,8646161 +g1,5422:25849849,8646161 +(1,5422:25849849,8646161:0,0,0 +(1,5422:25849849,8646161:1540487,281018,140387 +(1,5422:25849849,8646161:1540487,281018,140387 +$1,5422:25849849,8646161 +h1,5422:25849849,8646161:0,281018,137888 +(1,5422:26219996,8724813:1170340,291373,61735 ) -] -g1,6270:6630773,4812305 -g1,6270:6630773,4812305 -g1,6270:8203637,4812305 -k1,6270:31786111,4812305:23582474 +$1,5422:27390336,8646161 ) +g1,5422:27390336,8646161 +) +) +g1,5422:25849849,8646161 +g1,5422:25849849,8646161 +) +) +g1,5422:25849849,8646161 +) +) +g1,5422:25849849,8646161 +(1,5423:25849849,8646161:924057,924057,924057 +g1,5423:26773906,8646161 +g1,5423:26773906,8646161 +) +g1,5423:26773906,8646161 ) -] -[1,6270:6630773,45706769:25952256,40108032,0 -(1,6270:6630773,45706769:25952256,40108032,0 -(1,6270:6630773,45706769:0,0,0 -g1,6270:6630773,45706769 +(1,5424:17585764,10481168:9188142,924057,924057 +g1,5423:17585764,10481168 +(1,5423:17585764,10481168:924057,924057,924057 +g1,5423:17585764,10481168 +g1,5423:18509821,10481168 +(1,5423:18509821,10481168:0,924057,924057 +(1,5423:18509821,10481168:0,0,0 +(1,5423:18509821,10481168:0,0,0 +g1,5423:18509821,10481168 +g1,5423:18509821,10481168 +g1,5423:18509821,10481168 +g1,5423:18509821,10481168 +g1,5423:18509821,10481168 +(1,5423:18509821,10481168:0,0,0 +(1,5423:18509821,10481168:1347418,281018,140387 +(1,5423:18509821,10481168:1347418,281018,140387 +$1,5423:18509821,10481168 +h1,5423:18509821,10481168:0,281018,137888 +(1,5423:18879968,10559820:977271,291373,61735 +) +$1,5423:19857239,10481168 +) +g1,5423:19857239,10481168 +) +) +g1,5423:18509821,10481168 +g1,5423:18509821,10481168 +) +) +g1,5423:18509821,10481168 +) +) +g1,5423:18509821,10481168 +(1,5423:18509821,10481168:924057,924057,924057 +g1,5423:19433878,10481168 +g1,5423:19433878,10481168 ) -[1,6270:6630773,45706769:25952256,40108032,0 -(1,6195:6630773,6254097:25952256,505283,134348 -h1,6194:6630773,6254097:983040,0,0 -k1,6194:9006848,6254097:196348 -k1,6194:12280110,6254097:196347 -k1,6194:13580740,6254097:196348 -k1,6194:14524854,6254097:196348 -k1,6194:16234428,6254097:196348 -k1,6194:19111198,6254097:196347 -k1,6194:19993708,6254097:196348 -k1,6194:22265581,6254097:196348 -k1,6194:24504031,6254097:196348 -k1,6194:26094329,6254097:196347 -(1,6194:26094329,6254097:0,452978,115847 -r1,6270:29969713,6254097:3875384,568825,115847 -k1,6194:26094329,6254097:-3875384 -) -(1,6194:26094329,6254097:3875384,452978,115847 -k1,6194:26094329,6254097:3277 -h1,6194:29966436,6254097:0,411205,112570 -) -k1,6194:30166061,6254097:196348 -k1,6195:32583029,6254097:0 -) -(1,6195:6630773,7095585:25952256,513147,134348 -k1,6194:7898659,7095585:277637 -k1,6194:9195381,7095585:277637 -k1,6194:11450895,7095585:277637 -k1,6194:13296154,7095585:277638 -(1,6194:13296154,7095585:0,452978,115847 -r1,6270:15412979,7095585:2116825,568825,115847 -k1,6194:13296154,7095585:-2116825 -) -(1,6194:13296154,7095585:2116825,452978,115847 -k1,6194:13296154,7095585:3277 -h1,6194:15409702,7095585:0,411205,112570 -) -k1,6194:15690616,7095585:277637 -k1,6194:17159698,7095585:277637 -(1,6194:17159698,7095585:0,452978,115847 -r1,6270:18221387,7095585:1061689,568825,115847 -k1,6194:17159698,7095585:-1061689 -) -(1,6194:17159698,7095585:1061689,452978,115847 -k1,6194:17159698,7095585:3277 -h1,6194:18218110,7095585:0,411205,112570 -) -k1,6194:18499024,7095585:277637 -k1,6194:21970886,7095585:277637 -k1,6194:23267608,7095585:277637 -k1,6194:26168651,7095585:277637 -k1,6194:27059051,7095585:277638 -k1,6194:29950919,7095585:277637 -k1,6194:30627015,7095585:277637 -k1,6194:31563944,7095585:277637 -k1,6194:32583029,7095585:0 -) -(1,6195:6630773,7937073:25952256,426639,7863 -k1,6195:32583028,7937073:23800708 -g1,6195:32583028,7937073 -) -v1,6197:6630773,9127539:0,393216,0 -(1,6204:6630773,10077356:25952256,1343033,196608 -g1,6204:6630773,10077356 -g1,6204:6630773,10077356 -g1,6204:6434165,10077356 -(1,6204:6434165,10077356:0,1343033,196608 -r1,6270:32779637,10077356:26345472,1539641,196608 -k1,6204:6434165,10077356:-26345472 -) -(1,6204:6434165,10077356:26345472,1343033,196608 -[1,6204:6630773,10077356:25952256,1146425,0 -(1,6199:6630773,9335157:25952256,404226,76021 -(1,6198:6630773,9335157:0,0,0 -g1,6198:6630773,9335157 -g1,6198:6630773,9335157 -g1,6198:6303093,9335157 -(1,6198:6303093,9335157:0,0,0 -) -g1,6198:6630773,9335157 -) -h1,6199:11056813,9335157:0,0,0 -k1,6199:32583029,9335157:21526216 -g1,6199:32583029,9335157 -) -(1,6203:6630773,10001335:25952256,404226,76021 -(1,6201:6630773,10001335:0,0,0 -g1,6201:6630773,10001335 -g1,6201:6630773,10001335 -g1,6201:6303093,10001335 -(1,6201:6303093,10001335:0,0,0 -) -g1,6201:6630773,10001335 -) -g1,6203:7579210,10001335 -g1,6203:8843793,10001335 -h1,6203:9159939,10001335:0,0,0 -k1,6203:32583029,10001335:23423090 -g1,6203:32583029,10001335 -) -] -) -g1,6204:32583029,10077356 -g1,6204:6630773,10077356 -g1,6204:6630773,10077356 -g1,6204:32583029,10077356 -g1,6204:32583029,10077356 -) -h1,6204:6630773,10273964:0,0,0 -v1,6208:6630773,12164028:0,393216,0 -(1,6233:6630773,23358347:25952256,11587535,0 -g1,6233:6630773,23358347 -g1,6233:6303093,23358347 -r1,6270:6401397,23358347:98304,11587535,0 -g1,6233:6600626,23358347 -g1,6233:6797234,23358347 -[1,6233:6797234,23358347:25785795,11587535,0 -(1,6209:6797234,12596566:25785795,825754,196608 -(1,6208:6797234,12596566:0,825754,196608 -r1,6270:7890375,12596566:1093141,1022362,196608 -k1,6208:6797234,12596566:-1093141 -) -(1,6208:6797234,12596566:1093141,825754,196608 -) -k1,6208:8095175,12596566:204800 -k1,6208:9413104,12596566:327680 -k1,6208:12809507,12596566:204800 -k1,6208:14118589,12596566:204800 -k1,6208:15071155,12596566:204800 -k1,6208:16789181,12596566:204800 -k1,6208:17803351,12596566:204800 -k1,6208:19027236,12596566:204800 -k1,6208:20182308,12596566:204800 -k1,6208:21073269,12596566:204799 -k1,6208:22556676,12596566:204800 -k1,6208:23447638,12596566:204800 -k1,6208:24461808,12596566:204800 -k1,6208:25685693,12596566:204800 -k1,6208:26923996,12596566:204800 -k1,6208:27788088,12596566:204800 -k1,6208:28763591,12596566:204800 -k1,6208:32583029,12596566:0 -) -(1,6209:6797234,13438054:25785795,513147,134348 -k1,6208:8242303,13438054:253624 -k1,6208:9819755,13438054:253625 -k1,6208:11177661,13438054:253624 -k1,6208:12179051,13438054:253624 -k1,6208:14612403,13438054:253625 -k1,6208:15761904,13438054:253624 -k1,6208:16763294,13438054:253624 -k1,6208:17676211,13438054:253625 -k1,6208:19943101,13438054:253624 -k1,6208:21790561,13438054:253624 -k1,6208:23240873,13438054:253625 -k1,6208:26155914,13438054:253624 -k1,6208:28277969,13438054:253624 -k1,6208:30577628,13438054:253625 -k1,6208:31923737,13438054:253624 -k1,6208:32583029,13438054:0 -) -(1,6209:6797234,14279542:25785795,505283,126483 -g1,6208:8199704,14279542 -g1,6208:9050361,14279542 -g1,6208:10891922,14279542 -g1,6208:11447011,14279542 -g1,6208:12639766,14279542 -g1,6208:14194280,14279542 -g1,6208:15155037,14279542 -k1,6209:32583029,14279542:15899037 -g1,6209:32583029,14279542 -) -v1,6211:6797234,15470008:0,393216,0 -(1,6218:6797234,17758472:25785795,2681680,196608 -g1,6218:6797234,17758472 -g1,6218:6797234,17758472 -g1,6218:6600626,17758472 -(1,6218:6600626,17758472:0,2681680,196608 -r1,6270:32779637,17758472:26179011,2878288,196608 -k1,6218:6600625,17758472:-26179012 -) -(1,6218:6600626,17758472:26179011,2681680,196608 -[1,6218:6797234,17758472:25785795,2485072,0 -(1,6213:6797234,15677626:25785795,404226,76021 -(1,6212:6797234,15677626:0,0,0 -g1,6212:6797234,15677626 -g1,6212:6797234,15677626 -g1,6212:6469554,15677626 -(1,6212:6469554,15677626:0,0,0 -) -g1,6212:6797234,15677626 -) -g1,6213:9010254,15677626 -g1,6213:9958692,15677626 -k1,6213:9958692,15677626:0 -h1,6213:11855566,15677626:0,0,0 -k1,6213:32583030,15677626:20727464 -g1,6213:32583030,15677626 -) -(1,6214:6797234,16343804:25785795,404226,76021 -h1,6214:6797234,16343804:0,0,0 -g1,6214:11223273,16343804 -g1,6214:12171711,16343804 -h1,6214:13120149,16343804:0,0,0 -k1,6214:32583029,16343804:19462880 -g1,6214:32583029,16343804 -) -(1,6215:6797234,17009982:25785795,404226,101187 -h1,6215:6797234,17009982:0,0,0 -g1,6215:11223273,17009982 -g1,6215:12171711,17009982 -h1,6215:13436294,17009982:0,0,0 -k1,6215:32583030,17009982:19146736 -g1,6215:32583030,17009982 -) -(1,6216:6797234,17676160:25785795,404226,82312 -h1,6216:6797234,17676160:0,0,0 -g1,6216:11223273,17676160 -g1,6216:12171711,17676160 -g1,6216:14700878,17676160 -h1,6216:16597752,17676160:0,0,0 -k1,6216:32583029,17676160:15985277 -g1,6216:32583029,17676160 -) -] -) -g1,6218:32583029,17758472 -g1,6218:6797234,17758472 -g1,6218:6797234,17758472 -g1,6218:32583029,17758472 -g1,6218:32583029,17758472 -) -h1,6218:6797234,17955080:0,0,0 -(1,6222:6797234,19320856:25785795,513147,126483 -h1,6221:6797234,19320856:983040,0,0 -g1,6221:10861776,19320856 -(1,6221:10861776,19320856:0,452978,115847 -r1,6270:12978601,19320856:2116825,568825,115847 -k1,6221:10861776,19320856:-2116825 -) -(1,6221:10861776,19320856:2116825,452978,115847 -k1,6221:10861776,19320856:3277 -h1,6221:12975324,19320856:0,411205,112570 -) -g1,6221:13177830,19320856 -g1,6221:14028487,19320856 -(1,6221:14028487,19320856:0,452978,115847 -r1,6270:16145312,19320856:2116825,568825,115847 -k1,6221:14028487,19320856:-2116825 -) -(1,6221:14028487,19320856:2116825,452978,115847 -k1,6221:14028487,19320856:3277 -h1,6221:16142035,19320856:0,411205,112570 -) -g1,6221:16518211,19320856 -g1,6221:18230666,19320856 -g1,6221:19377546,19320856 -g1,6221:20595860,19320856 -g1,6221:23786808,19320856 -k1,6222:32583029,19320856:6767226 -g1,6222:32583029,19320856 -) -v1,6224:6797234,20511322:0,393216,0 -(1,6228:6797234,20820127:25785795,702021,196608 -g1,6228:6797234,20820127 -g1,6228:6797234,20820127 -g1,6228:6600626,20820127 -(1,6228:6600626,20820127:0,702021,196608 -r1,6270:32779637,20820127:26179011,898629,196608 -k1,6228:6600625,20820127:-26179012 -) -(1,6228:6600626,20820127:26179011,702021,196608 -[1,6228:6797234,20820127:25785795,505413,0 -(1,6226:6797234,20718940:25785795,404226,101187 -(1,6225:6797234,20718940:0,0,0 -g1,6225:6797234,20718940 -g1,6225:6797234,20718940 -g1,6225:6469554,20718940 -(1,6225:6469554,20718940:0,0,0 -) -g1,6225:6797234,20718940 -) -g1,6226:11223273,20718940 -g1,6226:12171711,20718940 -h1,6226:16281604,20718940:0,0,0 -k1,6226:32583029,20718940:16301425 -g1,6226:32583029,20718940 -) -] -) -g1,6228:32583029,20820127 -g1,6228:6797234,20820127 -g1,6228:6797234,20820127 -g1,6228:32583029,20820127 -g1,6228:32583029,20820127 -) -h1,6228:6797234,21016735:0,0,0 -(1,6232:6797234,22382511:25785795,505283,134348 -h1,6231:6797234,22382511:983040,0,0 -k1,6231:10851391,22382511:188844 -k1,6231:12679289,22382511:188843 -k1,6231:14743773,22382511:188844 -k1,6231:16124061,22382511:188843 -k1,6231:17219268,22382511:188844 -k1,6231:18059539,22382511:188843 -k1,6231:21913156,22382511:188844 -k1,6231:23398957,22382511:188843 -(1,6231:23398957,22382511:0,452978,115847 -r1,6270:25515782,22382511:2116825,568825,115847 -k1,6231:23398957,22382511:-2116825 -) -(1,6231:23398957,22382511:2116825,452978,115847 -k1,6231:23398957,22382511:3277 -h1,6231:25512505,22382511:0,411205,112570 -) -k1,6231:25704626,22382511:188844 -k1,6231:26994474,22382511:188843 -k1,6231:29844735,22382511:188844 -k1,6231:30719740,22382511:188843 -k1,6231:31366681,22382511:188844 -k1,6231:32583029,22382511:0 -) -(1,6232:6797234,23223999:25785795,505283,134348 -g1,6231:8088948,23223999 -g1,6231:9573993,23223999 -g1,6231:12672535,23223999 -g1,6231:13523192,23223999 -g1,6231:16352381,23223999 -g1,6231:19122587,23223999 -g1,6231:19973244,23223999 -g1,6231:21191558,23223999 -g1,6231:24518165,23223999 -k1,6232:32583029,23223999:5822877 -g1,6232:32583029,23223999 -) -] -g1,6233:32583029,23358347 -) -h1,6233:6630773,23358347:0,0,0 -v1,6236:6630773,24724123:0,393216,0 -(1,6248:6630773,31371838:25952256,7040931,0 -g1,6248:6630773,31371838 -g1,6248:6303093,31371838 -r1,6270:6401397,31371838:98304,7040931,0 -g1,6248:6600626,31371838 -g1,6248:6797234,31371838 -[1,6248:6797234,31371838:25785795,7040931,0 -(1,6237:6797234,25144707:25785795,813800,267386 -(1,6236:6797234,25144707:0,813800,267386 -r1,6270:8134168,25144707:1336934,1081186,267386 -k1,6236:6797234,25144707:-1336934 -) -(1,6236:6797234,25144707:1336934,813800,267386 -) -k1,6236:8361376,25144707:227208 -k1,6236:8689056,25144707:327680 -k1,6236:12945418,25144707:227209 -(1,6236:12945418,25144707:0,452978,115847 -r1,6270:18931073,25144707:5985655,568825,115847 -k1,6236:12945418,25144707:-5985655 -) -(1,6236:12945418,25144707:5985655,452978,115847 -g1,6236:17520949,25144707 -h1,6236:18927796,25144707:0,411205,112570 -) -k1,6236:19158281,25144707:227208 -k1,6236:21726435,25144707:227208 -k1,6236:22972728,25144707:227208 -k1,6236:24880280,25144707:227209 -k1,6236:25720250,25144707:227208 -k1,6236:28561689,25144707:227208 -k1,6236:29187356,25144707:227208 -k1,6236:30030603,25144707:227209 -k1,6236:31276896,25144707:227208 -k1,6236:32583029,25144707:0 -) -(1,6237:6797234,25986195:25785795,513147,126483 -k1,6236:9565235,25986195:144595 -k1,6236:10369123,25986195:144596 -k1,6236:11532803,25986195:144595 -k1,6236:12844595,25986195:144596 -k1,6236:13759893,25986195:144595 -k1,6236:16978783,25986195:144596 -k1,6236:18407884,25986195:144595 -k1,6236:21397398,25986195:144596 -k1,6236:23498243,25986195:144595 -k1,6236:24390605,25986195:144596 -k1,6236:26821751,25986195:144595 -k1,6236:27652509,25986195:144596 -(1,6236:27652509,25986195:0,452978,115847 -r1,6270:32583029,25986195:4930520,568825,115847 -k1,6236:27652509,25986195:-4930520 -) -(1,6236:27652509,25986195:4930520,452978,115847 -k1,6236:27652509,25986195:3277 -h1,6236:32579752,25986195:0,411205,112570 -) -k1,6236:32583029,25986195:0 -) -(1,6237:6797234,26827683:25785795,513147,134348 -k1,6236:8789091,26827683:256464 -k1,6236:10217995,26827683:256465 -k1,6236:14192972,26827683:256464 -k1,6236:15606146,26827683:256464 -k1,6236:17375836,26827683:256464 -k1,6236:20278645,26827683:256465 -k1,6236:21162944,26827683:256464 -k1,6236:23021108,26827683:256464 -k1,6236:24974954,26827683:256464 -k1,6236:28748081,26827683:256465 -k1,6236:30150770,26827683:256464 -k1,6236:31426319,26827683:256464 -k1,6236:32583029,26827683:0 -) -(1,6237:6797234,27669171:25785795,505283,134348 -k1,6236:8911526,27669171:245861 -k1,6236:10289849,27669171:245861 -k1,6236:11283476,27669171:245861 -k1,6236:13952203,27669171:245861 -k1,6236:14959592,27669171:245861 -k1,6236:17709584,27669171:245861 -k1,6236:19907106,27669171:245860 -k1,6236:21595414,27669171:245861 -k1,6236:26044754,27669171:245861 -k1,6236:27362784,27669171:245861 -k1,6236:29346660,27669171:245861 -k1,6236:31132617,27669171:245861 -k1,6236:31994516,27669171:245861 -k1,6236:32583029,27669171:0 -) -(1,6237:6797234,28510659:25785795,505283,134348 -g1,6236:8376651,28510659 -g1,6236:9708342,28510659 -g1,6236:10973842,28510659 -g1,6236:13303646,28510659 -g1,6236:14273578,28510659 -g1,6236:16079750,28510659 -k1,6237:32583029,28510659:13624282 -g1,6237:32583029,28510659 -) -v1,6239:6797234,29701125:0,393216,0 -(1,6246:6797234,30650942:25785795,1343033,196608 -g1,6246:6797234,30650942 -g1,6246:6797234,30650942 -g1,6246:6600626,30650942 -(1,6246:6600626,30650942:0,1343033,196608 -r1,6270:32779637,30650942:26179011,1539641,196608 -k1,6246:6600625,30650942:-26179012 -) -(1,6246:6600626,30650942:26179011,1343033,196608 -[1,6246:6797234,30650942:25785795,1146425,0 -(1,6241:6797234,29908743:25785795,404226,82312 -(1,6240:6797234,29908743:0,0,0 -g1,6240:6797234,29908743 -g1,6240:6797234,29908743 -g1,6240:6469554,29908743 -(1,6240:6469554,29908743:0,0,0 -) -g1,6240:6797234,29908743 -) -k1,6241:6797234,29908743:0 -g1,6241:10907129,29908743 -h1,6241:12171712,29908743:0,0,0 -k1,6241:32583028,29908743:20411316 -g1,6241:32583028,29908743 -) -(1,6245:6797234,30574921:25785795,404226,76021 -(1,6243:6797234,30574921:0,0,0 -g1,6243:6797234,30574921 -g1,6243:6797234,30574921 -g1,6243:6469554,30574921 -(1,6243:6469554,30574921:0,0,0 -) -g1,6243:6797234,30574921 -) -g1,6245:7745671,30574921 -g1,6245:9010254,30574921 -h1,6245:9326400,30574921:0,0,0 -k1,6245:32583028,30574921:23256628 -g1,6245:32583028,30574921 -) -] -) -g1,6246:32583029,30650942 -g1,6246:6797234,30650942 -g1,6246:6797234,30650942 -g1,6246:32583029,30650942 -g1,6246:32583029,30650942 -) -h1,6246:6797234,30847550:0,0,0 -] -g1,6248:32583029,31371838 -) -h1,6248:6630773,31371838:0,0,0 -v1,6251:6630773,32737614:0,393216,0 -(1,6267:6630773,45357482:25952256,13013084,0 -g1,6267:6630773,45357482 -g1,6267:6303093,45357482 -r1,6270:6401397,45357482:98304,13013084,0 -g1,6267:6600626,45357482 -g1,6267:6797234,45357482 -[1,6267:6797234,45357482:25785795,13013084,0 -(1,6252:6797234,33099687:25785795,755289,196608 -(1,6251:6797234,33099687:0,755289,196608 -r1,6270:8134168,33099687:1336934,951897,196608 -k1,6251:6797234,33099687:-1336934 -) -(1,6251:6797234,33099687:1336934,755289,196608 -) -k1,6251:8340981,33099687:206813 -k1,6251:8668661,33099687:327680 -k1,6251:10422779,33099687:206813 -k1,6251:11315754,33099687:206813 -k1,6251:13809773,33099687:206812 -k1,6251:16398164,33099687:206813 -k1,6251:17221015,33099687:206813 -k1,6251:20600426,33099687:206813 -k1,6251:21953464,33099687:206813 -k1,6251:22787456,33099687:206813 -k1,6251:23985829,33099687:206813 -k1,6251:26047310,33099687:206812 -k1,6251:27063493,33099687:206813 -k1,6251:29924514,33099687:206813 -k1,6251:30782755,33099687:206813 -k1,6252:32583029,33099687:0 -) -(1,6252:6797234,33941175:25785795,505283,126483 -k1,6251:8042368,33941175:201145 -k1,6251:11304044,33941175:201145 -k1,6251:12899140,33941175:201145 -k1,6251:15754493,33941175:201145 -k1,6251:17993808,33941175:201145 -k1,6251:18807715,33941175:201145 -k1,6251:20460482,33941175:201145 -k1,6251:22412749,33941175:201145 -k1,6251:24488224,33941175:201145 -k1,6251:27343577,33941175:201145 -k1,6251:29265042,33941175:201145 -k1,6251:30149072,33941175:201145 -k1,6251:31563944,33941175:201145 -k1,6251:32583029,33941175:0 -) -(1,6252:6797234,34782663:25785795,513147,134348 -k1,6251:9727400,34782663:167823 -k1,6251:12518628,34782663:167822 -k1,6251:14594204,34782663:167823 -k1,6251:16172361,34782663:167822 -k1,6251:18525810,34782663:167823 -k1,6251:19641284,34782663:167823 -k1,6251:22644193,34782663:167822 -k1,6251:25072353,34782663:167823 -k1,6251:25899468,34782663:167823 -k1,6251:27391117,34782663:167822 -k1,6251:28174978,34782663:167823 -k1,6251:30005448,34782663:167822 -k1,6251:30934799,34782663:167823 -k1,6252:32583029,34782663:0 -) -(1,6252:6797234,35624151:25785795,513147,134348 -k1,6251:8770523,35624151:155976 -k1,6251:9945583,35624151:155975 -k1,6251:13136531,35624151:155976 -k1,6251:13920342,35624151:155976 -k1,6251:15569883,35624151:155975 -k1,6251:21286589,35624151:155976 -k1,6251:24181969,35624151:155975 -k1,6251:25099473,35624151:155976 -k1,6251:27869680,35624151:155976 -k1,6251:28557152,35624151:155975 -k1,6251:29779399,35624151:155976 -k1,6251:32583029,35624151:0 -) -(1,6252:6797234,36465639:25785795,505283,134348 -k1,6251:7652930,36465639:172811 -k1,6251:8438502,36465639:172810 -k1,6251:10106845,36465639:172811 -k1,6251:12901750,36465639:172810 -k1,6251:16139680,36465639:172811 -k1,6251:18063612,36465639:172810 -k1,6251:19255508,36465639:172811 -k1,6251:20595514,36465639:172810 -k1,6251:22345777,36465639:172811 -k1,6251:23280115,36465639:172810 -k1,6251:25204048,36465639:172811 -k1,6251:26004693,36465639:172810 -k1,6251:26766017,36465639:172811 -(1,6251:26766017,36465639:0,452978,115847 -r1,6270:28179418,36465639:1413401,568825,115847 -k1,6251:26766017,36465639:-1413401 -) -(1,6251:26766017,36465639:1413401,452978,115847 -k1,6251:26766017,36465639:3277 -h1,6251:28176141,36465639:0,411205,112570 -) -k1,6251:28352228,36465639:172810 -k1,6251:31478747,36465639:172811 -k1,6251:32583029,36465639:0 -) -(1,6252:6797234,37307127:25785795,513147,134348 -k1,6251:7721685,37307127:176685 -k1,6251:10697413,37307127:176685 -k1,6251:13432624,37307127:176685 -k1,6251:16784528,37307127:176685 -k1,6251:19561681,37307127:176684 -k1,6251:22506607,37307127:176685 -k1,6251:23334720,37307127:176685 -k1,6251:25993253,37307127:176685 -k1,6251:26943918,37307127:176685 -k1,6251:29403222,37307127:176685 -k1,6251:32583029,37307127:0 -) -(1,6252:6797234,38148615:25785795,513147,134348 -k1,6251:8238465,38148615:249786 -k1,6251:11406569,38148615:249786 -k1,6251:12272392,38148615:249785 -k1,6251:13541263,38148615:249786 -k1,6251:16006166,38148615:249786 -k1,6251:16915244,38148615:249786 -k1,6251:17520890,38148615:249786 -k1,6251:18937871,38148615:249785 -k1,6251:20655663,38148615:249786 -k1,6251:21924534,38148615:249786 -k1,6251:24788551,38148615:249786 -k1,6251:25697628,38148615:249785 -k1,6251:28901122,38148615:249786 -k1,6251:30342353,38148615:249786 -k1,6251:32583029,38148615:0 -) -(1,6252:6797234,38990103:25785795,513147,126483 -k1,6251:8903343,38990103:220638 -k1,6251:11747387,38990103:220638 -k1,6251:12499522,38990103:220638 -k1,6251:15176448,38990103:220637 -k1,6251:16009848,38990103:220638 -k1,6251:16992014,38990103:220638 -k1,6251:19639450,38990103:220638 -k1,6251:20807739,38990103:220638 -k1,6251:23972910,38990103:220638 -k1,6251:25557351,38990103:220637 -k1,6251:26797074,38990103:220638 -k1,6251:29852799,38990103:220638 -k1,6251:32583029,38990103:0 -) -(1,6252:6797234,39831591:25785795,505283,102891 -g1,6251:8193150,39831591 -g1,6251:10634366,39831591 -g1,6251:11449633,39831591 -g1,6251:14280133,39831591 -g1,6251:16706931,39831591 -k1,6252:32583029,39831591:14162332 -g1,6252:32583029,39831591 -) -v1,6254:6797234,41022057:0,393216,0 -(1,6265:6797234,44636586:25785795,4007745,196608 -g1,6265:6797234,44636586 -g1,6265:6797234,44636586 -g1,6265:6600626,44636586 -(1,6265:6600626,44636586:0,4007745,196608 -r1,6270:32779637,44636586:26179011,4204353,196608 -k1,6265:6600625,44636586:-26179012 -) -(1,6265:6600626,44636586:26179011,4007745,196608 -[1,6265:6797234,44636586:25785795,3811137,0 -(1,6256:6797234,41229675:25785795,404226,82312 -(1,6255:6797234,41229675:0,0,0 -g1,6255:6797234,41229675 -g1,6255:6797234,41229675 -g1,6255:6469554,41229675 -(1,6255:6469554,41229675:0,0,0 -) -g1,6255:6797234,41229675 -) -k1,6256:6797234,41229675:0 -g1,6256:9010255,41229675 -g1,6256:9642547,41229675 -g1,6256:10590985,41229675 -g1,6256:11223277,41229675 -g1,6256:11855569,41229675 -g1,6256:12804007,41229675 -g1,6256:13436299,41229675 -g1,6256:14068591,41229675 -k1,6256:14068591,41229675:0 -h1,6256:15965466,41229675:0,0,0 -k1,6256:32583029,41229675:16617563 -g1,6256:32583029,41229675 -) -(1,6264:6797234,41895853:25785795,410518,31456 -(1,6258:6797234,41895853:0,0,0 -g1,6258:6797234,41895853 -g1,6258:6797234,41895853 -g1,6258:6469554,41895853 -(1,6258:6469554,41895853:0,0,0 -) -g1,6258:6797234,41895853 -) -g1,6264:7745671,41895853 -h1,6264:8377962,41895853:0,0,0 -k1,6264:32583030,41895853:24205068 -g1,6264:32583030,41895853 -) -(1,6264:6797234,42562031:25785795,404226,76021 -h1,6264:6797234,42562031:0,0,0 -g1,6264:7745671,42562031 -g1,6264:9010254,42562031 -h1,6264:9326400,42562031:0,0,0 -k1,6264:32583028,42562031:23256628 -g1,6264:32583028,42562031 -) -(1,6264:6797234,43228209:25785795,379060,0 -h1,6264:6797234,43228209:0,0,0 -h1,6264:7429525,43228209:0,0,0 -k1,6264:32583029,43228209:25153504 -g1,6264:32583029,43228209 -) -(1,6264:6797234,43894387:25785795,410518,31456 -h1,6264:6797234,43894387:0,0,0 -g1,6264:7745671,43894387 -h1,6264:8377962,43894387:0,0,0 -k1,6264:32583030,43894387:24205068 -g1,6264:32583030,43894387 -) -(1,6264:6797234,44560565:25785795,404226,76021 -h1,6264:6797234,44560565:0,0,0 -g1,6264:7745671,44560565 -g1,6264:9010254,44560565 -h1,6264:9326400,44560565:0,0,0 -k1,6264:32583028,44560565:23256628 -g1,6264:32583028,44560565 -) -] -) -g1,6265:32583029,44636586 -g1,6265:6797234,44636586 -g1,6265:6797234,44636586 -g1,6265:32583029,44636586 -g1,6265:32583029,44636586 -) -h1,6265:6797234,44833194:0,0,0 -] -g1,6267:32583029,45357482 -) -h1,6267:6630773,45357482:0,0,0 -] -(1,6270:32583029,45706769:0,0,0 -g1,6270:32583029,45706769 -) -) -] -(1,6270:6630773,47279633:25952256,0,0 -h1,6270:6630773,47279633:25952256,0,0 +g1,5423:19433878,10481168 +(1,5423:19433878,10481168:910950,924057,924057 +g1,5423:19433878,10481168 +g1,5423:20344828,10481168 +(1,5423:20344828,10481168:0,924057,924057 +(1,5423:20344828,10481168:0,0,0 +(1,5423:20344828,10481168:0,0,0 +g1,5423:20344828,10481168 +g1,5423:20344828,10481168 +g1,5423:20344828,10481168 +g1,5423:20344828,10481168 +g1,5423:20344828,10481168 +(1,5423:20344828,10481168:0,0,0 +(1,5423:20344828,10481168:1347418,281018,140387 +(1,5423:20344828,10481168:1347418,281018,140387 +$1,5423:20344828,10481168 +h1,5423:20344828,10481168:0,281018,137888 +(1,5423:20714975,10559820:977271,291373,61735 +) +$1,5423:21692246,10481168 +) +g1,5423:21692246,10481168 +) +) +g1,5423:20344828,10481168 +g1,5423:20344828,10481168 +) +) +g1,5423:20344828,10481168 +) +) +g1,5423:20344828,10481168 +(1,5423:20344828,10481168:924057,924057,924057 +g1,5423:21268885,10481168 +g1,5423:21268885,10481168 ) -] -(1,6270:4262630,4025873:0,0,0 -[1,6270:-473656,4025873:0,0,0 -(1,6270:-473656,-710413:0,0,0 -(1,6270:-473656,-710413:0,0,0 -g1,6270:-473656,-710413 +g1,5423:21268885,10481168 +(1,5423:21268885,10481168:910950,924057,924057 +g1,5423:21268885,10481168 +g1,5423:22179835,10481168 +(1,5423:22179835,10481168:0,924057,924057 +(1,5423:22179835,10481168:0,0,0 +(1,5423:22179835,10481168:0,0,0 +g1,5423:22179835,10481168 +g1,5423:22179835,10481168 +g1,5423:22179835,10481168 +g1,5423:22179835,10481168 +g1,5423:22179835,10481168 +(1,5423:22179835,10481168:0,0,0 +(1,5423:22179835,10481168:1347418,281018,140387 +(1,5423:22179835,10481168:1347418,281018,140387 +$1,5423:22179835,10481168 +h1,5423:22179835,10481168:0,281018,137888 +(1,5423:22549982,10559820:977271,291373,61735 +) +$1,5423:23527253,10481168 +) +g1,5423:23527253,10481168 +) +) +g1,5423:22179835,10481168 +g1,5423:22179835,10481168 +) +) +g1,5423:22179835,10481168 +) +) +g1,5423:22179835,10481168 +(1,5423:22179835,10481168:924057,924057,924057 +g1,5423:23103892,10481168 +g1,5423:23103892,10481168 ) -g1,6270:-473656,-710413 +g1,5423:23103892,10481168 +(1,5423:23103892,10481168:910950,924057,924057 +g1,5423:23103892,10481168 +g1,5423:24014842,10481168 +(1,5423:24014842,10481168:0,924057,924057 +(1,5423:24014842,10481168:0,0,0 +(1,5423:24014842,10481168:0,0,0 +g1,5423:24014842,10481168 +g1,5423:24014842,10481168 +g1,5423:24014842,10481168 +g1,5423:24014842,10481168 +g1,5423:24014842,10481168 +(1,5423:24014842,10481168:0,0,0 +(1,5423:24014842,10481168:0,281018,137888 +(1,5423:24014842,10481168:0,281018,137888 +$1,5423:24014842,10481168 +h1,5423:24014842,10481168:0,281018,137888 +$1,5423:24014842,10481168 +) +g1,5423:24014842,10481168 +) +) +g1,5423:24014842,10481168 +g1,5423:24014842,10481168 +) +) +g1,5423:24014842,10481168 +) +) +g1,5423:24014842,10481168 +(1,5423:24014842,10481168:924057,924057,924057 +g1,5423:24938899,10481168 +g1,5423:24938899,10481168 +) +g1,5423:24938899,10481168 +(1,5423:24938899,10481168:910950,924057,924057 +g1,5423:24938899,10481168 +g1,5423:25849849,10481168 +(1,5423:25849849,10481168:0,924057,924057 +(1,5423:25849849,10481168:0,0,0 +(1,5423:25849849,10481168:0,0,0 +g1,5423:25849849,10481168 +g1,5423:25849849,10481168 +g1,5423:25849849,10481168 +g1,5423:25849849,10481168 +g1,5423:25849849,10481168 +(1,5423:25849849,10481168:0,0,0 +(1,5423:25849849,10481168:1540487,281018,140387 +(1,5423:25849849,10481168:1540487,281018,140387 +$1,5423:25849849,10481168 +h1,5423:25849849,10481168:0,281018,137888 +(1,5423:26219996,10559820:1170340,291373,61735 +) +$1,5423:27390336,10481168 +) +g1,5423:27390336,10481168 +) +) +g1,5423:25849849,10481168 +g1,5423:25849849,10481168 +) +) +g1,5423:25849849,10481168 +) +) +g1,5423:25849849,10481168 +(1,5424:25849849,10481168:924057,924057,924057 +g1,5424:26773906,10481168 +g1,5424:26773906,10481168 +) +g1,5424:26773906,10481168 ) -] +(1,5425:17585764,12316175:9188142,924057,924057 +g1,5424:17585764,12316175 +(1,5424:17585764,12316175:924057,924057,924057 +g1,5424:17585764,12316175 +g1,5424:18509821,12316175 +(1,5424:18509821,12316175:0,924057,924057 +(1,5424:18509821,12316175:0,0,0 +(1,5424:18509821,12316175:0,0,0 +g1,5424:18509821,12316175 +g1,5424:18509821,12316175 +g1,5424:18509821,12316175 +g1,5424:18509821,12316175 +g1,5424:18509821,12316175 +(1,5424:18509821,12316175:0,0,0 +(1,5424:18509821,12316175:607548,341312,137888 +(1,5424:18509821,12316175:607548,341312,137888 +$1,5424:18509821,12316175 +h1,5424:18509821,12316175:0,281018,137888 +g1,5424:18655471,12316175 +$1,5424:19117369,12316175 +) +g1,5424:19117369,12316175 +) +) +g1,5424:18509821,12316175 +g1,5424:18509821,12316175 +) +) +g1,5424:18509821,12316175 +) +) +g1,5424:18509821,12316175 +(1,5424:18509821,12316175:924057,924057,924057 +g1,5424:19433878,12316175 +g1,5424:19433878,12316175 +) +g1,5424:19433878,12316175 +(1,5424:19433878,12316175:910950,924057,924057 +g1,5424:19433878,12316175 +g1,5424:20344828,12316175 +(1,5424:20344828,12316175:0,924057,924057 +(1,5424:20344828,12316175:0,0,0 +(1,5424:20344828,12316175:0,0,0 +g1,5424:20344828,12316175 +g1,5424:20344828,12316175 +g1,5424:20344828,12316175 +g1,5424:20344828,12316175 +g1,5424:20344828,12316175 +(1,5424:20344828,12316175:0,0,0 +(1,5424:20344828,12316175:0,281018,137888 +(1,5424:20344828,12316175:0,281018,137888 +$1,5424:20344828,12316175 +h1,5424:20344828,12316175:0,281018,137888 +$1,5424:20344828,12316175 +) +g1,5424:20344828,12316175 +) +) +g1,5424:20344828,12316175 +g1,5424:20344828,12316175 +) +) +g1,5424:20344828,12316175 +) +) +g1,5424:20344828,12316175 +(1,5424:20344828,12316175:924057,924057,924057 +g1,5424:21268885,12316175 +g1,5424:21268885,12316175 +) +g1,5424:21268885,12316175 +(1,5424:21268885,12316175:910950,924057,924057 +g1,5424:21268885,12316175 +g1,5424:22179835,12316175 +(1,5424:22179835,12316175:0,924057,924057 +(1,5424:22179835,12316175:0,0,0 +(1,5424:22179835,12316175:0,0,0 +g1,5424:22179835,12316175 +g1,5424:22179835,12316175 +g1,5424:22179835,12316175 +g1,5424:22179835,12316175 +g1,5424:22179835,12316175 +(1,5424:22179835,12316175:0,0,0 +(1,5424:22179835,12316175:0,281018,137888 +(1,5424:22179835,12316175:0,281018,137888 +$1,5424:22179835,12316175 +h1,5424:22179835,12316175:0,281018,137888 +$1,5424:22179835,12316175 +) +g1,5424:22179835,12316175 +) +) +g1,5424:22179835,12316175 +g1,5424:22179835,12316175 +) +) +g1,5424:22179835,12316175 +) +) +g1,5424:22179835,12316175 +(1,5424:22179835,12316175:924057,924057,924057 +g1,5424:23103892,12316175 +g1,5424:23103892,12316175 +) +g1,5424:23103892,12316175 +(1,5424:23103892,12316175:910950,924057,924057 +g1,5424:23103892,12316175 +g1,5424:24014842,12316175 +(1,5424:24014842,12316175:0,924057,924057 +(1,5424:24014842,12316175:0,0,0 +(1,5424:24014842,12316175:0,0,0 +g1,5424:24014842,12316175 +g1,5424:24014842,12316175 +g1,5424:24014842,12316175 +g1,5424:24014842,12316175 +g1,5424:24014842,12316175 +(1,5424:24014842,12316175:0,0,0 +(1,5424:24014842,12316175:600208,341312,137888 +(1,5424:24014842,12316175:600208,341312,137888 +$1,5424:24014842,12316175 +h1,5424:24014842,12316175:0,281018,137888 +g1,5424:24160492,12316175 +$1,5424:24615050,12316175 +) +g1,5424:24615050,12316175 +) +) +g1,5424:24014842,12316175 +g1,5424:24014842,12316175 +) +) +g1,5424:24014842,12316175 +) +) +g1,5424:24014842,12316175 +(1,5424:24014842,12316175:924057,924057,924057 +g1,5424:24938899,12316175 +g1,5424:24938899,12316175 +) +g1,5424:24938899,12316175 +(1,5424:24938899,12316175:910950,924057,924057 +g1,5424:24938899,12316175 +g1,5424:25849849,12316175 +(1,5424:25849849,12316175:0,924057,924057 +(1,5424:25849849,12316175:0,0,0 +(1,5424:25849849,12316175:0,0,0 +g1,5424:25849849,12316175 +g1,5424:25849849,12316175 +g1,5424:25849849,12316175 +g1,5424:25849849,12316175 +g1,5424:25849849,12316175 +(1,5424:25849849,12316175:0,0,0 +(1,5424:25849849,12316175:0,281018,137888 +(1,5424:25849849,12316175:0,281018,137888 +$1,5424:25849849,12316175 +h1,5424:25849849,12316175:0,281018,137888 +$1,5424:25849849,12316175 +) +g1,5424:25849849,12316175 +) +) +g1,5424:25849849,12316175 +g1,5424:25849849,12316175 +) +) +g1,5424:25849849,12316175 +) +) +g1,5424:25849849,12316175 +(1,5425:25849849,12316175:924057,924057,924057 +g1,5425:26773906,12316175 +g1,5425:26773906,12316175 +) +g1,5425:26773906,12316175 +) +(1,5426:17585764,14151182:9188142,924057,924057 +g1,5425:17585764,14151182 +(1,5425:17585764,14151182:924057,924057,924057 +g1,5425:17585764,14151182 +g1,5425:18509821,14151182 +(1,5425:18509821,14151182:0,924057,924057 +(1,5425:18509821,14151182:0,0,0 +(1,5425:18509821,14151182:0,0,0 +g1,5425:18509821,14151182 +g1,5425:18509821,14151182 +g1,5425:18509821,14151182 +g1,5425:18509821,14151182 +g1,5425:18509821,14151182 +(1,5425:18509821,14151182:0,0,0 +(1,5425:18509821,14151182:1262877,281018,142607 +(1,5425:18509821,14151182:1262877,281018,142607 +$1,5425:18509821,14151182 +h1,5425:18509821,14151182:0,281018,137888 +(1,5425:18879968,14232054:892730,303170,61735 +) +$1,5425:19772698,14151182 +) +g1,5425:19772698,14151182 +) +) +g1,5425:18509821,14151182 +g1,5425:18509821,14151182 +) +) +g1,5425:18509821,14151182 +) +) +g1,5425:18509821,14151182 +(1,5425:18509821,14151182:924057,924057,924057 +g1,5425:19433878,14151182 +g1,5425:19433878,14151182 ) -] -!24663 -}106 -Input:868:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:869:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:870:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!291 -{107 -[1,6363:4262630,47279633:28320399,43253760,0 -(1,6363:4262630,4025873:0,0,0 -[1,6363:-473656,4025873:0,0,0 -(1,6363:-473656,-710413:0,0,0 -(1,6363:-473656,-644877:0,0,0 -k1,6363:-473656,-644877:-65536 +g1,5425:19433878,14151182 +(1,5425:19433878,14151182:910950,924057,924057 +g1,5425:19433878,14151182 +g1,5425:20344828,14151182 +(1,5425:20344828,14151182:0,924057,924057 +(1,5425:20344828,14151182:0,0,0 +(1,5425:20344828,14151182:0,0,0 +g1,5425:20344828,14151182 +g1,5425:20344828,14151182 +g1,5425:20344828,14151182 +g1,5425:20344828,14151182 +g1,5425:20344828,14151182 +(1,5425:20344828,14151182:0,0,0 +(1,5425:20344828,14151182:1262877,281018,142607 +(1,5425:20344828,14151182:1262877,281018,142607 +$1,5425:20344828,14151182 +h1,5425:20344828,14151182:0,281018,137888 +(1,5425:20714975,14232054:892730,303170,61735 +) +$1,5425:21607705,14151182 +) +g1,5425:21607705,14151182 +) +) +g1,5425:20344828,14151182 +g1,5425:20344828,14151182 +) +) +g1,5425:20344828,14151182 +) +) +g1,5425:20344828,14151182 +(1,5425:20344828,14151182:924057,924057,924057 +g1,5425:21268885,14151182 +g1,5425:21268885,14151182 ) -(1,6363:-473656,4736287:0,0,0 -k1,6363:-473656,4736287:5209943 +g1,5425:21268885,14151182 +(1,5425:21268885,14151182:910950,924057,924057 +g1,5425:21268885,14151182 +g1,5425:22179835,14151182 +(1,5425:22179835,14151182:0,924057,924057 +(1,5425:22179835,14151182:0,0,0 +(1,5425:22179835,14151182:0,0,0 +g1,5425:22179835,14151182 +g1,5425:22179835,14151182 +g1,5425:22179835,14151182 +g1,5425:22179835,14151182 +g1,5425:22179835,14151182 +(1,5425:22179835,14151182:0,0,0 +(1,5425:22179835,14151182:1262877,281018,142607 +(1,5425:22179835,14151182:1262877,281018,142607 +$1,5425:22179835,14151182 +h1,5425:22179835,14151182:0,281018,137888 +(1,5425:22549982,14232054:892730,303170,61735 ) -g1,6363:-473656,-710413 +$1,5425:23442712,14151182 ) -] +g1,5425:23442712,14151182 ) -[1,6363:6630773,47279633:25952256,43253760,0 -[1,6363:6630773,4812305:25952256,786432,0 -(1,6363:6630773,4812305:25952256,505283,11795 -(1,6363:6630773,4812305:25952256,505283,11795 -g1,6363:3078558,4812305 -[1,6363:3078558,4812305:0,0,0 -(1,6363:3078558,2439708:0,1703936,0 -k1,6363:1358238,2439708:-1720320 -(1,5950:1358238,2439708:1720320,1703936,0 -(1,5950:1358238,2439708:1179648,16384,0 -r1,6363:2537886,2439708:1179648,16384,0 ) -g1,5950:3062174,2439708 -(1,5950:3062174,2439708:16384,1703936,0 -[1,5950:3062174,2439708:25952256,1703936,0 -(1,5950:3062174,1915420:25952256,1179648,0 -(1,5950:3062174,1915420:16384,1179648,0 -r1,6363:3078558,1915420:16384,1179648,0 +g1,5425:22179835,14151182 +g1,5425:22179835,14151182 ) -k1,5950:29014430,1915420:25935872 -g1,5950:29014430,1915420 ) -] +g1,5425:22179835,14151182 ) ) +g1,5425:22179835,14151182 +(1,5425:22179835,14151182:924057,924057,924057 +g1,5425:23103892,14151182 +g1,5425:23103892,14151182 ) -] -[1,6363:3078558,4812305:0,0,0 -(1,6363:3078558,2439708:0,1703936,0 -g1,6363:29030814,2439708 -g1,6363:36135244,2439708 -(1,5950:36135244,2439708:1720320,1703936,0 -(1,5950:36135244,2439708:16384,1703936,0 -[1,5950:36135244,2439708:25952256,1703936,0 -(1,5950:36135244,1915420:25952256,1179648,0 -(1,5950:36135244,1915420:16384,1179648,0 -r1,6363:36151628,1915420:16384,1179648,0 +g1,5425:23103892,14151182 +(1,5425:23103892,14151182:910950,924057,924057 +g1,5425:23103892,14151182 +g1,5425:24014842,14151182 +(1,5425:24014842,14151182:0,924057,924057 +(1,5425:24014842,14151182:0,0,0 +(1,5425:24014842,14151182:0,0,0 +g1,5425:24014842,14151182 +g1,5425:24014842,14151182 +g1,5425:24014842,14151182 +g1,5425:24014842,14151182 +g1,5425:24014842,14151182 +(1,5425:24014842,14151182:0,0,0 +(1,5425:24014842,14151182:0,281018,137888 +(1,5425:24014842,14151182:0,281018,137888 +$1,5425:24014842,14151182 +h1,5425:24014842,14151182:0,281018,137888 +$1,5425:24014842,14151182 ) -k1,5950:62087500,1915420:25935872 -g1,5950:62087500,1915420 +g1,5425:24014842,14151182 ) -] ) -g1,5950:36675916,2439708 -(1,5950:36675916,2439708:1179648,16384,0 -r1,6363:37855564,2439708:1179648,16384,0 +g1,5425:24014842,14151182 +g1,5425:24014842,14151182 ) ) -k1,6363:3078556,2439708:-34777008 +g1,5425:24014842,14151182 ) -] -[1,6363:3078558,4812305:0,0,0 -(1,6363:3078558,49800853:0,16384,2228224 -k1,6363:1358238,49800853:-1720320 -(1,5950:1358238,49800853:1720320,16384,2228224 -(1,5950:1358238,49800853:1179648,16384,0 -r1,6363:2537886,49800853:1179648,16384,0 ) -g1,5950:3062174,49800853 -(1,5950:3062174,52029077:16384,1703936,0 -[1,5950:3062174,52029077:25952256,1703936,0 -(1,5950:3062174,51504789:25952256,1179648,0 -(1,5950:3062174,51504789:16384,1179648,0 -r1,6363:3078558,51504789:16384,1179648,0 +g1,5425:24014842,14151182 +(1,5425:24014842,14151182:924057,924057,924057 +g1,5425:24938899,14151182 +g1,5425:24938899,14151182 ) -k1,5950:29014430,51504789:25935872 -g1,5950:29014430,51504789 +g1,5425:24938899,14151182 +(1,5425:24938899,14151182:910950,924057,924057 +g1,5425:24938899,14151182 +g1,5425:25849849,14151182 +(1,5425:25849849,14151182:0,924057,924057 +(1,5425:25849849,14151182:0,0,0 +(1,5425:25849849,14151182:0,0,0 +g1,5425:25849849,14151182 +g1,5425:25849849,14151182 +g1,5425:25849849,14151182 +g1,5425:25849849,14151182 +g1,5425:25849849,14151182 +(1,5425:25849849,14151182:0,0,0 +(1,5425:25849849,14151182:1455946,281018,142607 +(1,5425:25849849,14151182:1455946,281018,142607 +$1,5425:25849849,14151182 +h1,5425:25849849,14151182:0,281018,137888 +(1,5425:26219996,14232054:1085799,303170,61735 ) -] +$1,5425:27305795,14151182 ) +g1,5425:27305795,14151182 ) ) -] -[1,6363:3078558,4812305:0,0,0 -(1,6363:3078558,49800853:0,16384,2228224 -g1,6363:29030814,49800853 -g1,6363:36135244,49800853 -(1,5950:36135244,49800853:1720320,16384,2228224 -(1,5950:36135244,52029077:16384,1703936,0 -[1,5950:36135244,52029077:25952256,1703936,0 -(1,5950:36135244,51504789:25952256,1179648,0 -(1,5950:36135244,51504789:16384,1179648,0 -r1,6363:36151628,51504789:16384,1179648,0 +g1,5425:25849849,14151182 +g1,5425:25849849,14151182 ) -k1,5950:62087500,51504789:25935872 -g1,5950:62087500,51504789 -) -] ) -g1,5950:36675916,49800853 -(1,5950:36675916,49800853:1179648,16384,0 -r1,6363:37855564,49800853:1179648,16384,0 +g1,5425:25849849,14151182 ) ) -k1,6363:3078556,49800853:-34777008 -) -] -g1,6363:6630773,4812305 -k1,6363:24358919,4812305:16931228 -g1,6363:25981590,4812305 -g1,6363:26804066,4812305 -g1,6363:30302377,4812305 -) -) -] -[1,6363:6630773,45706769:25952256,40108032,0 -(1,6363:6630773,45706769:25952256,40108032,0 -(1,6363:6630773,45706769:0,0,0 -g1,6363:6630773,45706769 -) -[1,6363:6630773,45706769:25952256,40108032,0 -(1,6270:6630773,6254097:25952256,513147,126483 -h1,6269:6630773,6254097:983040,0,0 -k1,6269:9641424,6254097:195224 -k1,6269:12575398,6254097:195224 -k1,6269:16175217,6254097:195224 -k1,6269:17179811,6254097:195224 -k1,6269:18698863,6254097:195225 -k1,6269:19885647,6254097:195224 -k1,6269:24729340,6254097:195224 -k1,6269:28104371,6254097:195224 -k1,6269:29491040,6254097:195224 -k1,6269:32583029,6254097:0 -) -(1,6270:6630773,7095585:25952256,513147,115847 -k1,6269:8019808,7095585:192348 -k1,6269:9865628,7095585:192347 -k1,6269:13083773,7095585:192348 -k1,6269:13962282,7095585:192347 -k1,6269:15548581,7095585:192348 -k1,6269:18049106,7095585:192347 -k1,6269:19233014,7095585:192348 -k1,6269:21112259,7095585:192348 -k1,6269:24330403,7095585:192347 -(1,6269:24330403,7095585:0,452978,115847 -r1,6363:25392092,7095585:1061689,568825,115847 -k1,6269:24330403,7095585:-1061689 -) -(1,6269:24330403,7095585:1061689,452978,115847 -k1,6269:24330403,7095585:3277 -h1,6269:25388815,7095585:0,411205,112570 -) -k1,6269:25584440,7095585:192348 -k1,6269:26724438,7095585:192347 -k1,6269:31391584,7095585:192348 -k1,6270:32583029,7095585:0 -) -(1,6270:6630773,7937073:25952256,505283,126483 -(1,6269:6630773,7937073:0,452978,115847 -r1,6363:9451022,7937073:2820249,568825,115847 -k1,6269:6630773,7937073:-2820249 -) -(1,6269:6630773,7937073:2820249,452978,115847 -k1,6269:6630773,7937073:3277 -h1,6269:9447745,7937073:0,411205,112570 -) -k1,6269:9705535,7937073:254513 -k1,6269:10611477,7937073:254514 -k1,6269:13246258,7937073:254513 -k1,6269:14692217,7937073:254514 -k1,6269:16785670,7937073:254513 -k1,6269:18537682,7937073:254514 -k1,6269:20275930,7937073:254513 -k1,6269:21634726,7937073:254514 -k1,6269:22637005,7937073:254513 -k1,6269:26024140,7937073:254514 -k1,6269:27654254,7937073:254513 -k1,6269:29302719,7937073:254514 -k1,6269:31259202,7937073:254513 -k1,6269:32583029,7937073:0 -) -(1,6270:6630773,8778561:25952256,505283,134348 -g1,6269:8062079,8778561 -g1,6269:10089762,8778561 -h1,6269:10886680,8778561:0,0,0 -h1,6269:12011278,8778561:0,0,0 -k1,6270:32583030,8778561:20190988 -g1,6270:32583030,8778561 -) -v1,6272:6630773,9880400:0,393216,0 -(1,6293:6630773,20156709:25952256,10669525,196608 -g1,6293:6630773,20156709 -g1,6293:6630773,20156709 -g1,6293:6434165,20156709 -(1,6293:6434165,20156709:0,10669525,196608 -r1,6363:32779637,20156709:26345472,10866133,196608 -k1,6293:6434165,20156709:-26345472 -) -(1,6293:6434165,20156709:26345472,10669525,196608 -[1,6293:6630773,20156709:25952256,10472917,0 -(1,6274:6630773,10088018:25952256,404226,101187 -(1,6273:6630773,10088018:0,0,0 -g1,6273:6630773,10088018 -g1,6273:6630773,10088018 -g1,6273:6303093,10088018 -(1,6273:6303093,10088018:0,0,0 -) -g1,6273:6630773,10088018 -) -g1,6274:10740667,10088018 -g1,6274:11689105,10088018 -g1,6274:16431291,10088018 -g1,6274:18960457,10088018 -g1,6274:19592749,10088018 -g1,6274:21489624,10088018 -g1,6274:22438061,10088018 -g1,6274:23070353,10088018 -g1,6274:27812539,10088018 -h1,6274:28444831,10088018:0,0,0 -k1,6274:32583029,10088018:4138198 -g1,6274:32583029,10088018 -) -(1,6275:6630773,10754196:25952256,404226,6290 -h1,6275:6630773,10754196:0,0,0 -h1,6275:10424521,10754196:0,0,0 -k1,6275:32583029,10754196:22158508 -g1,6275:32583029,10754196 -) -(1,6292:6630773,11420374:25952256,410518,31456 -(1,6277:6630773,11420374:0,0,0 -g1,6277:6630773,11420374 -g1,6277:6630773,11420374 -g1,6277:6303093,11420374 -(1,6277:6303093,11420374:0,0,0 -) -g1,6277:6630773,11420374 -) -g1,6292:7579210,11420374 -h1,6292:8211501,11420374:0,0,0 -k1,6292:32583029,11420374:24371528 -g1,6292:32583029,11420374 -) -(1,6292:6630773,12086552:25952256,404226,76021 -h1,6292:6630773,12086552:0,0,0 -g1,6292:7579210,12086552 -g1,6292:8843793,12086552 -g1,6292:9476085,12086552 -g1,6292:10108377,12086552 -h1,6292:10424523,12086552:0,0,0 -k1,6292:32583029,12086552:22158506 -g1,6292:32583029,12086552 -) -(1,6292:6630773,12752730:25952256,379060,0 -h1,6292:6630773,12752730:0,0,0 -h1,6292:7263064,12752730:0,0,0 -k1,6292:32583028,12752730:25319964 -g1,6292:32583028,12752730 -) -(1,6292:6630773,13418908:25952256,410518,101187 -h1,6292:6630773,13418908:0,0,0 -g1,6292:7579210,13418908 -h1,6292:8211501,13418908:0,0,0 -k1,6292:32583029,13418908:24371528 -g1,6292:32583029,13418908 -) -(1,6292:6630773,14085086:25952256,404226,76021 -h1,6292:6630773,14085086:0,0,0 -g1,6292:7579210,14085086 -g1,6292:8843793,14085086 -h1,6292:10108376,14085086:0,0,0 -k1,6292:32583028,14085086:22474652 -g1,6292:32583028,14085086 -) -(1,6292:6630773,14751264:25952256,379060,0 -h1,6292:6630773,14751264:0,0,0 -h1,6292:7263064,14751264:0,0,0 -k1,6292:32583028,14751264:25319964 -g1,6292:32583028,14751264 -) -(1,6292:6630773,15417442:25952256,410518,101187 -h1,6292:6630773,15417442:0,0,0 -g1,6292:7579210,15417442 -h1,6292:8527647,15417442:0,0,0 -k1,6292:32583029,15417442:24055382 -g1,6292:32583029,15417442 -) -(1,6292:6630773,16083620:25952256,404226,76021 -h1,6292:6630773,16083620:0,0,0 -g1,6292:7579210,16083620 -g1,6292:7895356,16083620 -g1,6292:9159939,16083620 -g1,6292:9476085,16083620 -g1,6292:10108377,16083620 -g1,6292:10424523,16083620 -g1,6292:11056815,16083620 -g1,6292:11372961,16083620 -g1,6292:12005253,16083620 -g1,6292:12321399,16083620 -g1,6292:12953691,16083620 -g1,6292:13269837,16083620 -g1,6292:13902129,16083620 -g1,6292:14218275,16083620 -g1,6292:14850567,16083620 -g1,6292:15166713,16083620 -g1,6292:15799005,16083620 -g1,6292:16115151,16083620 -g1,6292:16747443,16083620 -g1,6292:17063589,16083620 -g1,6292:17695881,16083620 -h1,6292:18328172,16083620:0,0,0 -k1,6292:32583029,16083620:14254857 -g1,6292:32583029,16083620 -) -(1,6292:6630773,16749798:25952256,379060,0 -h1,6292:6630773,16749798:0,0,0 -h1,6292:7263064,16749798:0,0,0 -k1,6292:32583028,16749798:25319964 -g1,6292:32583028,16749798 -) -(1,6292:6630773,17415976:25952256,410518,31456 -h1,6292:6630773,17415976:0,0,0 -g1,6292:7579210,17415976 -h1,6292:8527647,17415976:0,0,0 -k1,6292:32583029,17415976:24055382 -g1,6292:32583029,17415976 -) -(1,6292:6630773,18082154:25952256,404226,76021 -h1,6292:6630773,18082154:0,0,0 -g1,6292:7579210,18082154 -g1,6292:8843793,18082154 -g1,6292:10108376,18082154 -g1,6292:11372959,18082154 -g1,6292:12637542,18082154 -g1,6292:13902125,18082154 -h1,6292:14850562,18082154:0,0,0 -k1,6292:32583030,18082154:17732468 -g1,6292:32583030,18082154 -) -(1,6292:6630773,18748332:25952256,379060,0 -h1,6292:6630773,18748332:0,0,0 -h1,6292:7263064,18748332:0,0,0 -k1,6292:32583028,18748332:25319964 -g1,6292:32583028,18748332 -) -(1,6292:6630773,19414510:25952256,410518,31456 -h1,6292:6630773,19414510:0,0,0 -g1,6292:7579210,19414510 -h1,6292:8211501,19414510:0,0,0 -k1,6292:32583029,19414510:24371528 -g1,6292:32583029,19414510 -) -(1,6292:6630773,20080688:25952256,404226,76021 -h1,6292:6630773,20080688:0,0,0 -g1,6292:7579210,20080688 -g1,6292:8843793,20080688 -g1,6292:9159939,20080688 -g1,6292:10740668,20080688 -h1,6292:12321396,20080688:0,0,0 -k1,6292:32583028,20080688:20261632 -g1,6292:32583028,20080688 -) -] -) -g1,6293:32583029,20156709 -g1,6293:6630773,20156709 -g1,6293:6630773,20156709 -g1,6293:32583029,20156709 -g1,6293:32583029,20156709 -) -h1,6293:6630773,20353317:0,0,0 -(1,6297:6630773,21630467:25952256,513147,134348 -h1,6296:6630773,21630467:983040,0,0 -g1,6296:8642072,21630467 -g1,6296:10766093,21630467 -g1,6296:11321182,21630467 -g1,6296:14143817,21630467 -g1,6296:15910667,21630467 -g1,6296:16465756,21630467 -g1,6296:17658511,21630467 -g1,6296:18726092,21630467 -g1,6296:20932033,21630467 -(1,6296:20932033,21630467:0,414482,115847 -r1,6363:22345434,21630467:1413401,530329,115847 -k1,6296:20932033,21630467:-1413401 -) -(1,6296:20932033,21630467:1413401,414482,115847 -k1,6296:20932033,21630467:3277 -h1,6296:22342157,21630467:0,411205,112570 -) -g1,6296:22544663,21630467 -g1,6296:23395320,21630467 -k1,6297:32583029,21630467:8555942 -g1,6297:32583029,21630467 -) -v1,6299:6630773,22732306:0,393216,0 -(1,6311:6630773,27019305:25952256,4680215,196608 -g1,6311:6630773,27019305 -g1,6311:6630773,27019305 -g1,6311:6434165,27019305 -(1,6311:6434165,27019305:0,4680215,196608 -r1,6363:32779637,27019305:26345472,4876823,196608 -k1,6311:6434165,27019305:-26345472 -) -(1,6311:6434165,27019305:26345472,4680215,196608 -[1,6311:6630773,27019305:25952256,4483607,0 -(1,6301:6630773,22946216:25952256,410518,101187 -(1,6300:6630773,22946216:0,0,0 -g1,6300:6630773,22946216 -g1,6300:6630773,22946216 -g1,6300:6303093,22946216 -(1,6300:6303093,22946216:0,0,0 -) -g1,6300:6630773,22946216 -) -g1,6301:9476085,22946216 -g1,6301:10424523,22946216 -k1,6301:10424523,22946216:0 -h1,6301:11689106,22946216:0,0,0 -k1,6301:32583030,22946216:20893924 -g1,6301:32583030,22946216 -) -(1,6302:6630773,23612394:25952256,404226,6290 -h1,6302:6630773,23612394:0,0,0 -h1,6302:8527647,23612394:0,0,0 -k1,6302:32583029,23612394:24055382 -g1,6302:32583029,23612394 -) -(1,6310:6630773,24278572:25952256,410518,31456 -(1,6304:6630773,24278572:0,0,0 -g1,6304:6630773,24278572 -g1,6304:6630773,24278572 -g1,6304:6303093,24278572 -(1,6304:6303093,24278572:0,0,0 -) -g1,6304:6630773,24278572 -) -g1,6310:7579210,24278572 -h1,6310:8211501,24278572:0,0,0 -k1,6310:32583029,24278572:24371528 -g1,6310:32583029,24278572 -) -(1,6310:6630773,24944750:25952256,404226,76021 -h1,6310:6630773,24944750:0,0,0 -g1,6310:7579210,24944750 -g1,6310:8843793,24944750 -g1,6310:9476085,24944750 -g1,6310:10108377,24944750 -h1,6310:10424523,24944750:0,0,0 -k1,6310:32583029,24944750:22158506 -g1,6310:32583029,24944750 -) -(1,6310:6630773,25610928:25952256,379060,0 -h1,6310:6630773,25610928:0,0,0 -h1,6310:7263064,25610928:0,0,0 -k1,6310:32583028,25610928:25319964 -g1,6310:32583028,25610928 -) -(1,6310:6630773,26277106:25952256,410518,31456 -h1,6310:6630773,26277106:0,0,0 -g1,6310:7579210,26277106 -h1,6310:8211501,26277106:0,0,0 -k1,6310:32583029,26277106:24371528 -g1,6310:32583029,26277106 -) -(1,6310:6630773,26943284:25952256,404226,76021 -h1,6310:6630773,26943284:0,0,0 -g1,6310:7579210,26943284 -g1,6310:8843793,26943284 -g1,6310:9159939,26943284 -g1,6310:10740668,26943284 -h1,6310:12321396,26943284:0,0,0 -k1,6310:32583028,26943284:20261632 -g1,6310:32583028,26943284 -) -] -) -g1,6311:32583029,27019305 -g1,6311:6630773,27019305 -g1,6311:6630773,27019305 -g1,6311:32583029,27019305 -g1,6311:32583029,27019305 -) -h1,6311:6630773,27215913:0,0,0 -(1,6315:6630773,28493063:25952256,513147,134348 -h1,6314:6630773,28493063:983040,0,0 -k1,6314:8627336,28493063:184493 -k1,6314:12255091,28493063:184493 -k1,6314:13458668,28493063:184492 -k1,6314:16596869,28493063:184493 -k1,6314:19921192,28493063:184493 -k1,6314:20721723,28493063:184493 -k1,6314:21262076,28493063:184493 -k1,6314:22613765,28493063:184493 -k1,6314:25493753,28493063:184492 -(1,6314:25493753,28493063:0,452978,115847 -r1,6363:27258866,28493063:1765113,568825,115847 -k1,6314:25493753,28493063:-1765113 -) -(1,6314:25493753,28493063:1765113,452978,115847 -k1,6314:25493753,28493063:3277 -h1,6314:27255589,28493063:0,411205,112570 -) -k1,6314:27443359,28493063:184493 -k1,6314:31069803,28493063:184493 -k1,6314:32583029,28493063:0 -) -(1,6315:6630773,29334551:25952256,513147,126483 -k1,6314:8838222,29334551:178454 -k1,6314:9548174,29334551:178455 -k1,6314:13382882,29334551:178454 -k1,6314:16669054,29334551:178455 -k1,6314:18545546,29334551:178454 -k1,6314:20047828,29334551:178455 -k1,6314:21701497,29334551:178454 -k1,6314:23631729,29334551:178455 -k1,6314:26937561,29334551:178454 -k1,6314:30072345,29334551:178455 -k1,6314:32583029,29334551:0 -) -(1,6315:6630773,30176039:25952256,505283,126483 -g1,6314:8153829,30176039 -g1,6314:10003255,30176039 -g1,6314:13483872,30176039 -g1,6314:15125548,30176039 -(1,6314:15125548,30176039:0,452978,115847 -r1,6363:17594085,30176039:2468537,568825,115847 -k1,6314:15125548,30176039:-2468537 -) -(1,6314:15125548,30176039:2468537,452978,115847 -k1,6314:15125548,30176039:3277 -h1,6314:17590808,30176039:0,411205,112570 -) -g1,6314:17793314,30176039 -g1,6314:20364291,30176039 -g1,6314:22977866,30176039 -g1,6314:23828523,30176039 -g1,6314:24383612,30176039 -k1,6315:32583029,30176039:7032221 -g1,6315:32583029,30176039 -) -v1,6317:6630773,31277878:0,393216,0 -(1,6336:6630773,38243936:25952256,7359274,196608 -g1,6336:6630773,38243936 -g1,6336:6630773,38243936 -g1,6336:6434165,38243936 -(1,6336:6434165,38243936:0,7359274,196608 -r1,6363:32779637,38243936:26345472,7555882,196608 -k1,6336:6434165,38243936:-26345472 -) -(1,6336:6434165,38243936:26345472,7359274,196608 -[1,6336:6630773,38243936:25952256,7162666,0 -(1,6319:6630773,31485496:25952256,404226,101187 -(1,6318:6630773,31485496:0,0,0 -g1,6318:6630773,31485496 -g1,6318:6630773,31485496 -g1,6318:6303093,31485496 -(1,6318:6303093,31485496:0,0,0 -) -g1,6318:6630773,31485496 -) -k1,6319:6630773,31485496:0 -h1,6319:10740666,31485496:0,0,0 -k1,6319:32583030,31485496:21842364 -g1,6319:32583030,31485496 -) -(1,6327:6630773,32151674:25952256,410518,31456 -(1,6321:6630773,32151674:0,0,0 -g1,6321:6630773,32151674 -g1,6321:6630773,32151674 -g1,6321:6303093,32151674 -(1,6321:6303093,32151674:0,0,0 -) -g1,6321:6630773,32151674 -) -g1,6327:7579210,32151674 -h1,6327:8211501,32151674:0,0,0 -k1,6327:32583029,32151674:24371528 -g1,6327:32583029,32151674 -) -(1,6327:6630773,32817852:25952256,404226,76021 -h1,6327:6630773,32817852:0,0,0 -g1,6327:7579210,32817852 -g1,6327:8843793,32817852 -g1,6327:9476085,32817852 -g1,6327:10108377,32817852 -h1,6327:10424523,32817852:0,0,0 -k1,6327:32583029,32817852:22158506 -g1,6327:32583029,32817852 -) -(1,6327:6630773,33484030:25952256,379060,0 -h1,6327:6630773,33484030:0,0,0 -h1,6327:7263064,33484030:0,0,0 -k1,6327:32583028,33484030:25319964 -g1,6327:32583028,33484030 -) -(1,6327:6630773,34150208:25952256,410518,31456 -h1,6327:6630773,34150208:0,0,0 -g1,6327:7579210,34150208 -h1,6327:8211501,34150208:0,0,0 -k1,6327:32583029,34150208:24371528 -g1,6327:32583029,34150208 -) -(1,6327:6630773,34816386:25952256,404226,76021 -h1,6327:6630773,34816386:0,0,0 -g1,6327:7579210,34816386 -g1,6327:8843793,34816386 -g1,6327:9159939,34816386 -g1,6327:10740668,34816386 -h1,6327:12321396,34816386:0,0,0 -k1,6327:32583028,34816386:20261632 -g1,6327:32583028,34816386 -) -(1,6329:6630773,36137924:25952256,404226,76021 -(1,6328:6630773,36137924:0,0,0 -g1,6328:6630773,36137924 -g1,6328:6630773,36137924 -g1,6328:6303093,36137924 -(1,6328:6303093,36137924:0,0,0 -) -g1,6328:6630773,36137924 -) -k1,6329:6630773,36137924:0 -h1,6329:10108375,36137924:0,0,0 -k1,6329:32583029,36137924:22474654 -g1,6329:32583029,36137924 -) -(1,6335:6630773,36804102:25952256,410518,6290 -(1,6331:6630773,36804102:0,0,0 -g1,6331:6630773,36804102 -g1,6331:6630773,36804102 -g1,6331:6303093,36804102 -(1,6331:6303093,36804102:0,0,0 -) -g1,6331:6630773,36804102 -) -g1,6335:7579210,36804102 -g1,6335:9159939,36804102 -g1,6335:10108376,36804102 -h1,6335:10424522,36804102:0,0,0 -k1,6335:32583030,36804102:22158508 -g1,6335:32583030,36804102 -) -(1,6335:6630773,37470280:25952256,410518,76021 -h1,6335:6630773,37470280:0,0,0 -g1,6335:7579210,37470280 -g1,6335:7895356,37470280 -g1,6335:8527648,37470280 -g1,6335:9476085,37470280 -g1,6335:10740668,37470280 -g1,6335:12637542,37470280 -g1,6335:13269834,37470280 -g1,6335:13902126,37470280 -h1,6335:14218272,37470280:0,0,0 -k1,6335:32583028,37470280:18364756 -g1,6335:32583028,37470280 -) -(1,6335:6630773,38136458:25952256,410518,107478 -h1,6335:6630773,38136458:0,0,0 -g1,6335:7579210,38136458 -g1,6335:7895356,38136458 -g1,6335:8527648,38136458 -g1,6335:9476085,38136458 -g1,6335:11056814,38136458 -g1,6335:12953688,38136458 -g1,6335:14534417,38136458 -h1,6335:16115145,38136458:0,0,0 -k1,6335:32583029,38136458:16467884 -g1,6335:32583029,38136458 -) -] -) -g1,6336:32583029,38243936 -g1,6336:6630773,38243936 -g1,6336:6630773,38243936 -g1,6336:32583029,38243936 -g1,6336:32583029,38243936 -) -h1,6336:6630773,38440544:0,0,0 -(1,6341:6630773,40967466:25952256,555811,12975 -(1,6341:6630773,40967466:2450326,534184,12975 -g1,6341:6630773,40967466 -g1,6341:9081099,40967466 -) -g1,6341:11812575,40967466 -k1,6341:32583029,40967466:19265944 -g1,6341:32583029,40967466 -) -(1,6344:6630773,42202170:25952256,513147,126483 -g1,6343:8313737,42202170 -g1,6343:9617248,42202170 -g1,6343:10564243,42202170 -g1,6343:13054611,42202170 -g1,6343:14323388,42202170 -g1,6343:15846444,42202170 -g1,6343:16704965,42202170 -g1,6343:18228021,42202170 -g1,6343:19531532,42202170 -g1,6343:20478527,42202170 -g1,6343:24469669,42202170 -g1,6343:25320326,42202170 -g1,6343:26290258,42202170 -g1,6343:29285908,42202170 -k1,6344:32583029,42202170:1262883 -g1,6344:32583029,42202170 -) -v1,6346:6630773,43304009:0,393216,0 -(1,6363:6630773,45510161:25952256,2599368,196608 -g1,6363:6630773,45510161 -g1,6363:6630773,45510161 -g1,6363:6434165,45510161 -(1,6363:6434165,45510161:0,2599368,196608 -r1,6363:32779637,45510161:26345472,2795976,196608 -k1,6363:6434165,45510161:-26345472 -) -(1,6363:6434165,45510161:26345472,2599368,196608 -[1,6363:6630773,45510161:25952256,2402760,0 -(1,6348:6630773,43511627:25952256,404226,82312 -(1,6347:6630773,43511627:0,0,0 -g1,6347:6630773,43511627 -g1,6347:6630773,43511627 -g1,6347:6303093,43511627 -(1,6347:6303093,43511627:0,0,0 -) -g1,6347:6630773,43511627 -) -g1,6348:8843793,43511627 -g1,6348:9792231,43511627 -g1,6348:12953689,43511627 -g1,6348:14850564,43511627 -h1,6348:15799001,43511627:0,0,0 -k1,6348:32583029,43511627:16784028 -g1,6348:32583029,43511627 -) -(1,6349:6630773,44177805:25952256,404226,82312 -h1,6349:6630773,44177805:0,0,0 -g1,6349:8843793,44177805 -g1,6349:9792231,44177805 -g1,6349:12953689,44177805 -h1,6349:14534418,44177805:0,0,0 -k1,6349:32583030,44177805:18048612 -g1,6349:32583030,44177805 -) -(1,6350:6630773,44843983:25952256,404226,82312 -h1,6350:6630773,44843983:0,0,0 -g1,6350:10424521,44843983 -g1,6350:11372959,44843983 -g1,6350:13585980,44843983 -g1,6350:14218272,44843983 -g1,6350:16747438,44843983 -g1,6350:17379730,44843983 -g1,6350:18012022,44843983 -h1,6350:20225042,44843983:0,0,0 -k1,6350:32583029,44843983:12357987 -g1,6350:32583029,44843983 -) -(1,6351:6630773,45510161:25952256,404226,76021 -h1,6351:6630773,45510161:0,0,0 -k1,6351:6630773,45510161:0 -h1,6351:11689104,45510161:0,0,0 -k1,6351:32583028,45510161:20893924 -g1,6351:32583028,45510161 -) -] -) -g1,6363:32583029,45510161 -g1,6363:6630773,45510161 -g1,6363:6630773,45510161 -g1,6363:32583029,45510161 -g1,6363:32583029,45510161 -) -] -(1,6363:32583029,45706769:0,0,0 -g1,6363:32583029,45706769 -) -) -] -(1,6363:6630773,47279633:25952256,0,0 -h1,6363:6630773,47279633:25952256,0,0 -) -] -(1,6363:4262630,4025873:0,0,0 -[1,6363:-473656,4025873:0,0,0 -(1,6363:-473656,-710413:0,0,0 -(1,6363:-473656,-710413:0,0,0 -g1,6363:-473656,-710413 -) -g1,6363:-473656,-710413 -) -] -) -] -!21117 -}107 -Input:871:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:872:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:873:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:874:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:875:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:876:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!570 -{108 -[1,6438:4262630,47279633:28320399,43253760,0 -(1,6438:4262630,4025873:0,0,0 -[1,6438:-473656,4025873:0,0,0 -(1,6438:-473656,-710413:0,0,0 -(1,6438:-473656,-644877:0,0,0 -k1,6438:-473656,-644877:-65536 -) -(1,6438:-473656,4736287:0,0,0 -k1,6438:-473656,4736287:5209943 +g1,5425:25849849,14151182 +(1,5426:25849849,14151182:924057,924057,924057 +g1,5426:26773906,14151182 +g1,5426:26773906,14151182 ) -g1,6438:-473656,-710413 +g1,5426:26773906,14151182 ) ] ) -[1,6438:6630773,47279633:25952256,43253760,0 -[1,6438:6630773,4812305:25952256,786432,0 -(1,6438:6630773,4812305:25952256,485622,11795 -(1,6438:6630773,4812305:25952256,485622,11795 -g1,6438:3078558,4812305 -[1,6438:3078558,4812305:0,0,0 -(1,6438:3078558,2439708:0,1703936,0 -k1,6438:1358238,2439708:-1720320 -(1,5950:1358238,2439708:1720320,1703936,0 -(1,5950:1358238,2439708:1179648,16384,0 -r1,6438:2537886,2439708:1179648,16384,0 ) -g1,5950:3062174,2439708 -(1,5950:3062174,2439708:16384,1703936,0 -[1,5950:3062174,2439708:25952256,1703936,0 -(1,5950:3062174,1915420:25952256,1179648,0 -(1,5950:3062174,1915420:16384,1179648,0 -r1,6438:3078558,1915420:16384,1179648,0 +g1,5426:17585764,14151182 +g1,5426:17585764,14151182 ) -k1,5950:29014430,1915420:25935872 -g1,5950:29014430,1915420 ) -] +g1,5426:17585764,14151182 +g1,5427:17585764,14151182 +(1,5434:17585764,14151182:0,0,0 +(1,5434:17585764,14151182:0,0,0 +g1,5434:17585764,14151182 +g1,5434:17585764,14151182 +g1,5434:17585764,14151182 +g1,5434:17585764,14151182 +g1,5434:17585764,14151182 +(1,5434:17585764,14151182:0,0,0 +(1,5434:17585764,14151182:9188142,8264085,924057 +[1,5434:17585764,14151182:9188142,8264085,924057 +(1,5430:17585764,6811154:9188142,924057,924057 +g1,5429:17585764,6811154 +(1,5429:17585764,6811154:924057,924057,924057 +g1,5429:17585764,6811154 +g1,5429:18509821,6811154 +(1,5429:18509821,6811154:0,924057,924057 +(1,5429:18509821,6811154:0,0,0 +(1,5429:18509821,6811154:0,0,0 +g1,5429:18509821,6811154 +g1,5429:18509821,6811154 +g1,5429:18509821,6811154 +g1,5429:18509821,6811154 +g1,5429:18509821,6811154 +(1,5429:18509821,6811154:0,0,0 +(1,5429:18509821,6811154:1347418,281018,140387 +(1,5429:18509821,6811154:1347418,281018,140387 +$1,5429:18509821,6811154 +h1,5429:18509821,6811154:0,281018,137888 +(1,5429:18879968,6889806:977271,286654,61735 ) +$1,5429:19857239,6811154 ) +g1,5429:19857239,6811154 ) -] -[1,6438:3078558,4812305:0,0,0 -(1,6438:3078558,2439708:0,1703936,0 -g1,6438:29030814,2439708 -g1,6438:36135244,2439708 -(1,5950:36135244,2439708:1720320,1703936,0 -(1,5950:36135244,2439708:16384,1703936,0 -[1,5950:36135244,2439708:25952256,1703936,0 -(1,5950:36135244,1915420:25952256,1179648,0 -(1,5950:36135244,1915420:16384,1179648,0 -r1,6438:36151628,1915420:16384,1179648,0 ) -k1,5950:62087500,1915420:25935872 -g1,5950:62087500,1915420 +g1,5429:18509821,6811154 +g1,5429:18509821,6811154 ) -] ) -g1,5950:36675916,2439708 -(1,5950:36675916,2439708:1179648,16384,0 -r1,6438:37855564,2439708:1179648,16384,0 +g1,5429:18509821,6811154 ) ) -k1,6438:3078556,2439708:-34777008 +g1,5429:18509821,6811154 +(1,5429:18509821,6811154:924057,924057,924057 +g1,5429:19433878,6811154 +g1,5429:19433878,6811154 ) -] -[1,6438:3078558,4812305:0,0,0 -(1,6438:3078558,49800853:0,16384,2228224 -k1,6438:1358238,49800853:-1720320 -(1,5950:1358238,49800853:1720320,16384,2228224 -(1,5950:1358238,49800853:1179648,16384,0 -r1,6438:2537886,49800853:1179648,16384,0 +g1,5429:19433878,6811154 +(1,5429:19433878,6811154:910950,924057,924057 +g1,5429:19433878,6811154 +g1,5429:20344828,6811154 +(1,5429:20344828,6811154:0,924057,924057 +(1,5429:20344828,6811154:0,0,0 +(1,5429:20344828,6811154:0,0,0 +g1,5429:20344828,6811154 +g1,5429:20344828,6811154 +g1,5429:20344828,6811154 +g1,5429:20344828,6811154 +g1,5429:20344828,6811154 +(1,5429:20344828,6811154:0,0,0 +(1,5429:20344828,6811154:1347418,281018,140387 +(1,5429:20344828,6811154:1347418,281018,140387 +$1,5429:20344828,6811154 +h1,5429:20344828,6811154:0,281018,137888 +(1,5429:20714975,6889806:977271,291373,61735 ) -g1,5950:3062174,49800853 -(1,5950:3062174,52029077:16384,1703936,0 -[1,5950:3062174,52029077:25952256,1703936,0 -(1,5950:3062174,51504789:25952256,1179648,0 -(1,5950:3062174,51504789:16384,1179648,0 -r1,6438:3078558,51504789:16384,1179648,0 +$1,5429:21692246,6811154 ) -k1,5950:29014430,51504789:25935872 -g1,5950:29014430,51504789 +g1,5429:21692246,6811154 ) -] ) +g1,5429:20344828,6811154 +g1,5429:20344828,6811154 ) ) -] -[1,6438:3078558,4812305:0,0,0 -(1,6438:3078558,49800853:0,16384,2228224 -g1,6438:29030814,49800853 -g1,6438:36135244,49800853 -(1,5950:36135244,49800853:1720320,16384,2228224 -(1,5950:36135244,52029077:16384,1703936,0 -[1,5950:36135244,52029077:25952256,1703936,0 -(1,5950:36135244,51504789:25952256,1179648,0 -(1,5950:36135244,51504789:16384,1179648,0 -r1,6438:36151628,51504789:16384,1179648,0 +g1,5429:20344828,6811154 ) -k1,5950:62087500,51504789:25935872 -g1,5950:62087500,51504789 -) -] -) -g1,5950:36675916,49800853 -(1,5950:36675916,49800853:1179648,16384,0 -r1,6438:37855564,49800853:1179648,16384,0 -) -) -k1,6438:3078556,49800853:-34777008 -) -] -g1,6438:6630773,4812305 -g1,6438:6630773,4812305 -g1,6438:8203637,4812305 -k1,6438:31786111,4812305:23582474 -) -) -] -[1,6438:6630773,45706769:25952256,40108032,0 -(1,6438:6630773,45706769:25952256,40108032,0 -(1,6438:6630773,45706769:0,0,0 -g1,6438:6630773,45706769 -) -[1,6438:6630773,45706769:25952256,40108032,0 -v1,6363:6630773,6254097:0,393216,0 -(1,6363:6630773,11238731:25952256,5377850,196608 -g1,6363:6630773,11238731 -g1,6363:6630773,11238731 -g1,6363:6434165,11238731 -(1,6363:6434165,11238731:0,5377850,196608 -r1,6438:32779637,11238731:26345472,5574458,196608 -k1,6363:6434165,11238731:-26345472 -) -(1,6363:6434165,11238731:26345472,5377850,196608 -[1,6363:6630773,11238731:25952256,5181242,0 -(1,6362:6630773,6468007:25952256,410518,6290 -(1,6353:6630773,6468007:0,0,0 -g1,6353:6630773,6468007 -g1,6353:6630773,6468007 -g1,6353:6303093,6468007 -(1,6353:6303093,6468007:0,0,0 -) -g1,6353:6630773,6468007 -) -g1,6362:7579210,6468007 -g1,6362:9159939,6468007 -g1,6362:10108376,6468007 -h1,6362:10424522,6468007:0,0,0 -k1,6362:32583030,6468007:22158508 -g1,6362:32583030,6468007 -) -(1,6362:6630773,7134185:25952256,410518,31456 -h1,6362:6630773,7134185:0,0,0 -g1,6362:7579210,7134185 -g1,6362:7895356,7134185 -g1,6362:8527648,7134185 -g1,6362:10740668,7134185 -g1,6362:11689105,7134185 -h1,6362:12005251,7134185:0,0,0 -k1,6362:32583029,7134185:20577778 -g1,6362:32583029,7134185 -) -(1,6362:6630773,7800363:25952256,410518,31456 -h1,6362:6630773,7800363:0,0,0 -g1,6362:7579210,7800363 -g1,6362:7895356,7800363 -g1,6362:8211502,7800363 -g1,6362:9476085,7800363 -g1,6362:10108377,7800363 -g1,6362:11372960,7800363 -h1,6362:12321397,7800363:0,0,0 -k1,6362:32583029,7800363:20261632 -g1,6362:32583029,7800363 -) -(1,6362:6630773,8466541:25952256,410518,31456 -h1,6362:6630773,8466541:0,0,0 -g1,6362:7579210,8466541 -g1,6362:7895356,8466541 -g1,6362:8211502,8466541 -g1,6362:9476085,8466541 -g1,6362:10108377,8466541 -g1,6362:11372960,8466541 -h1,6362:12637543,8466541:0,0,0 -k1,6362:32583029,8466541:19945486 -g1,6362:32583029,8466541 -) -(1,6362:6630773,9132719:25952256,410518,31456 -h1,6362:6630773,9132719:0,0,0 -g1,6362:7579210,9132719 -g1,6362:7895356,9132719 -g1,6362:8211502,9132719 -g1,6362:9476085,9132719 -g1,6362:10108377,9132719 -g1,6362:11372960,9132719 -h1,6362:12005251,9132719:0,0,0 -k1,6362:32583029,9132719:20577778 -g1,6362:32583029,9132719 -) -(1,6362:6630773,9798897:25952256,410518,31456 -h1,6362:6630773,9798897:0,0,0 -g1,6362:7579210,9798897 -g1,6362:7895356,9798897 -g1,6362:8527648,9798897 -g1,6362:10740668,9798897 -g1,6362:11689105,9798897 -h1,6362:12005251,9798897:0,0,0 -k1,6362:32583029,9798897:20577778 -g1,6362:32583029,9798897 -) -(1,6362:6630773,10465075:25952256,410518,31456 -h1,6362:6630773,10465075:0,0,0 -g1,6362:7579210,10465075 -g1,6362:7895356,10465075 -g1,6362:8211502,10465075 -g1,6362:9476085,10465075 -g1,6362:10108377,10465075 -g1,6362:11372960,10465075 -h1,6362:12321397,10465075:0,0,0 -k1,6362:32583029,10465075:20261632 -g1,6362:32583029,10465075 -) -(1,6362:6630773,11131253:25952256,410518,107478 -h1,6362:6630773,11131253:0,0,0 -g1,6362:7579210,11131253 -g1,6362:7895356,11131253 -g1,6362:8211502,11131253 -g1,6362:9476085,11131253 -g1,6362:10108377,11131253 -g1,6362:11689106,11131253 -h1,6362:12953689,11131253:0,0,0 -k1,6362:32583029,11131253:19629340 -g1,6362:32583029,11131253 -) -] -) -g1,6363:32583029,11238731 -g1,6363:6630773,11238731 -g1,6363:6630773,11238731 -g1,6363:32583029,11238731 -g1,6363:32583029,11238731 -) -h1,6363:6630773,11435339:0,0,0 -(1,6367:6630773,12801115:25952256,505283,134348 -h1,6366:6630773,12801115:983040,0,0 -k1,6366:8255260,12801115:153859 -k1,6366:10526632,12801115:153904 -k1,6366:11674062,12801115:153904 -k1,6366:12932248,12801115:153904 -k1,6366:17039284,12801115:153904 -k1,6366:17940954,12801115:153904 -k1,6366:21886772,12801115:153905 -k1,6366:24050665,12801115:153904 -k1,6366:24560429,12801115:153904 -k1,6366:26587352,12801115:153904 -k1,6366:29927616,12801115:153904 -k1,6366:30697558,12801115:153904 -k1,6366:32583029,12801115:0 -) -(1,6367:6630773,13642603:25952256,513147,7863 -k1,6366:9020569,13642603:158295 -k1,6366:11802269,13642603:158294 -k1,6366:13284391,13642603:158295 -k1,6366:14434245,13642603:158294 -k1,6366:17116331,13642603:158295 -k1,6366:18762948,13642603:158294 -k1,6366:19789595,13642603:158295 -k1,6366:22659769,13642603:158294 -k1,6366:23837149,13642603:158295 -k1,6366:25301576,13642603:158294 -k1,6366:27114655,13642603:158295 -k1,6366:30789611,13642603:158294 -k1,6366:31563944,13642603:158295 -k1,6366:32583029,13642603:0 -) -(1,6367:6630773,14484091:25952256,505283,134348 -g1,6366:8863584,14484091 -g1,6366:11033481,14484091 -g1,6366:12500176,14484091 -g1,6366:13055265,14484091 -g1,6366:15127513,14484091 -k1,6367:32583029,14484091:16125135 -g1,6367:32583029,14484091 -) -v1,6369:6630773,15674557:0,393216,0 -(1,6384:6630773,21985255:25952256,6703914,196608 -g1,6384:6630773,21985255 -g1,6384:6630773,21985255 -g1,6384:6434165,21985255 -(1,6384:6434165,21985255:0,6703914,196608 -r1,6438:32779637,21985255:26345472,6900522,196608 -k1,6384:6434165,21985255:-26345472 -) -(1,6384:6434165,21985255:26345472,6703914,196608 -[1,6384:6630773,21985255:25952256,6507306,0 -(1,6371:6630773,15882175:25952256,404226,82312 -(1,6370:6630773,15882175:0,0,0 -g1,6370:6630773,15882175 -g1,6370:6630773,15882175 -g1,6370:6303093,15882175 -(1,6370:6303093,15882175:0,0,0 -) -g1,6370:6630773,15882175 -) -g1,6371:10424521,15882175 -g1,6371:11372959,15882175 -g1,6371:13585980,15882175 -g1,6371:14218272,15882175 -g1,6371:17379730,15882175 -g1,6371:19276605,15882175 -g1,6371:20857334,15882175 -g1,6371:21489626,15882175 -g1,6371:22121918,15882175 -g1,6371:25283376,15882175 -h1,6371:27180250,15882175:0,0,0 -k1,6371:32583029,15882175:5402779 -g1,6371:32583029,15882175 -) -(1,6372:6630773,16548353:25952256,404226,76021 -h1,6372:6630773,16548353:0,0,0 -k1,6372:6630773,16548353:0 -h1,6372:11689104,16548353:0,0,0 -k1,6372:32583028,16548353:20893924 -g1,6372:32583028,16548353 -) -(1,6383:6630773,17214531:25952256,410518,6290 -(1,6374:6630773,17214531:0,0,0 -g1,6374:6630773,17214531 -g1,6374:6630773,17214531 -g1,6374:6303093,17214531 -(1,6374:6303093,17214531:0,0,0 -) -g1,6374:6630773,17214531 -) -g1,6383:7579210,17214531 -g1,6383:9159939,17214531 -g1,6383:10108376,17214531 -h1,6383:10424522,17214531:0,0,0 -k1,6383:32583030,17214531:22158508 -g1,6383:32583030,17214531 -) -(1,6383:6630773,17880709:25952256,410518,31456 -h1,6383:6630773,17880709:0,0,0 -g1,6383:7579210,17880709 -g1,6383:7895356,17880709 -g1,6383:8527648,17880709 -g1,6383:10740668,17880709 -g1,6383:11689105,17880709 -h1,6383:12005251,17880709:0,0,0 -k1,6383:32583029,17880709:20577778 -g1,6383:32583029,17880709 -) -(1,6383:6630773,18546887:25952256,410518,31456 -h1,6383:6630773,18546887:0,0,0 -g1,6383:7579210,18546887 -g1,6383:7895356,18546887 -g1,6383:8211502,18546887 -g1,6383:9476085,18546887 -g1,6383:10108377,18546887 -g1,6383:11372960,18546887 -h1,6383:12321397,18546887:0,0,0 -k1,6383:32583029,18546887:20261632 -g1,6383:32583029,18546887 -) -(1,6383:6630773,19213065:25952256,410518,31456 -h1,6383:6630773,19213065:0,0,0 -g1,6383:7579210,19213065 -g1,6383:7895356,19213065 -g1,6383:8211502,19213065 -g1,6383:9476085,19213065 -g1,6383:10108377,19213065 -g1,6383:11372960,19213065 -h1,6383:12637543,19213065:0,0,0 -k1,6383:32583029,19213065:19945486 -g1,6383:32583029,19213065 -) -(1,6383:6630773,19879243:25952256,410518,31456 -h1,6383:6630773,19879243:0,0,0 -g1,6383:7579210,19879243 -g1,6383:7895356,19879243 -g1,6383:8211502,19879243 -g1,6383:9476085,19879243 -g1,6383:10108377,19879243 -g1,6383:11372960,19879243 -h1,6383:12005251,19879243:0,0,0 -k1,6383:32583029,19879243:20577778 -g1,6383:32583029,19879243 -) -(1,6383:6630773,20545421:25952256,410518,31456 -h1,6383:6630773,20545421:0,0,0 -g1,6383:7579210,20545421 -g1,6383:7895356,20545421 -g1,6383:8527648,20545421 -g1,6383:10740668,20545421 -g1,6383:11689105,20545421 -h1,6383:12005251,20545421:0,0,0 -k1,6383:32583029,20545421:20577778 -g1,6383:32583029,20545421 -) -(1,6383:6630773,21211599:25952256,410518,31456 -h1,6383:6630773,21211599:0,0,0 -g1,6383:7579210,21211599 -g1,6383:7895356,21211599 -g1,6383:8211502,21211599 -g1,6383:9476085,21211599 -g1,6383:10108377,21211599 -g1,6383:11372960,21211599 -h1,6383:12321397,21211599:0,0,0 -k1,6383:32583029,21211599:20261632 -g1,6383:32583029,21211599 -) -(1,6383:6630773,21877777:25952256,410518,107478 -h1,6383:6630773,21877777:0,0,0 -g1,6383:7579210,21877777 -g1,6383:7895356,21877777 -g1,6383:8211502,21877777 -g1,6383:9476085,21877777 -g1,6383:10108377,21877777 -g1,6383:11689106,21877777 -h1,6383:12953689,21877777:0,0,0 -k1,6383:32583029,21877777:19629340 -g1,6383:32583029,21877777 -) -] -) -g1,6384:32583029,21985255 -g1,6384:6630773,21985255 -g1,6384:6630773,21985255 -g1,6384:32583029,21985255 -g1,6384:32583029,21985255 -) -h1,6384:6630773,22181863:0,0,0 -(1,6388:6630773,23547639:25952256,513147,7863 -h1,6387:6630773,23547639:983040,0,0 -g1,6387:8300630,23547639 -g1,6387:9493385,23547639 -g1,6387:10796896,23547639 -g1,6387:13367873,23547639 -g1,6387:13922962,23547639 -g1,6387:18110057,23547639 -g1,6387:18968578,23547639 -g1,6387:20161333,23547639 -g1,6387:21552007,23547639 -g1,6387:23729113,23547639 -k1,6388:32583029,23547639:5726538 -g1,6388:32583029,23547639 -) -v1,6390:6630773,24738105:0,393216,0 -(1,6410:6630773,34303671:25952256,9958782,196608 -g1,6410:6630773,34303671 -g1,6410:6630773,34303671 -g1,6410:6434165,34303671 -(1,6410:6434165,34303671:0,9958782,196608 -r1,6438:32779637,34303671:26345472,10155390,196608 -k1,6410:6434165,34303671:-26345472 -) -(1,6410:6434165,34303671:26345472,9958782,196608 -[1,6410:6630773,34303671:25952256,9762174,0 -(1,6392:6630773,24945723:25952256,404226,82312 -(1,6391:6630773,24945723:0,0,0 -g1,6391:6630773,24945723 -g1,6391:6630773,24945723 -g1,6391:6303093,24945723 -(1,6391:6303093,24945723:0,0,0 -) -g1,6391:6630773,24945723 -) -g1,6392:10424521,24945723 -g1,6392:11372959,24945723 -g1,6392:13585980,24945723 -g1,6392:14218272,24945723 -g1,6392:17379730,24945723 -g1,6392:19276605,24945723 -k1,6392:19276605,24945723:0 -h1,6392:20541188,24945723:0,0,0 -k1,6392:32583029,24945723:12041841 -g1,6392:32583029,24945723 -) -(1,6393:6630773,25611901:25952256,404226,82312 -h1,6393:6630773,25611901:0,0,0 -g1,6393:6946919,25611901 -g1,6393:7263065,25611901 -g1,6393:7579211,25611901 -g1,6393:7895357,25611901 -g1,6393:8211503,25611901 -g1,6393:8527649,25611901 -g1,6393:8843795,25611901 -g1,6393:9159941,25611901 -g1,6393:9476087,25611901 -g1,6393:9792233,25611901 -g1,6393:10108379,25611901 -g1,6393:10424525,25611901 -g1,6393:10740671,25611901 -g1,6393:11056817,25611901 -g1,6393:11372963,25611901 -g1,6393:11689109,25611901 -g1,6393:12005255,25611901 -g1,6393:12321401,25611901 -g1,6393:12637547,25611901 -g1,6393:12953693,25611901 -g1,6393:13585985,25611901 -g1,6393:14218277,25611901 -g1,6393:17379735,25611901 -k1,6393:17379735,25611901:0 -h1,6393:19276610,25611901:0,0,0 -k1,6393:32583029,25611901:13306419 -g1,6393:32583029,25611901 -) -(1,6394:6630773,26278079:25952256,404226,82312 -h1,6394:6630773,26278079:0,0,0 -g1,6394:6946919,26278079 -g1,6394:7263065,26278079 -g1,6394:7579211,26278079 -g1,6394:7895357,26278079 -g1,6394:8211503,26278079 -g1,6394:8527649,26278079 -g1,6394:8843795,26278079 -g1,6394:9159941,26278079 -g1,6394:9476087,26278079 -g1,6394:9792233,26278079 -g1,6394:10108379,26278079 -g1,6394:10424525,26278079 -g1,6394:10740671,26278079 -g1,6394:11056817,26278079 -g1,6394:11372963,26278079 -g1,6394:11689109,26278079 -g1,6394:12005255,26278079 -g1,6394:12321401,26278079 -g1,6394:12637547,26278079 -g1,6394:12953693,26278079 -g1,6394:13585985,26278079 -g1,6394:14218277,26278079 -g1,6394:15799007,26278079 -g1,6394:16747445,26278079 -k1,6394:16747445,26278079:0 -h1,6394:17695883,26278079:0,0,0 -k1,6394:32583029,26278079:14887146 -g1,6394:32583029,26278079 -) -(1,6395:6630773,26944257:25952256,404226,76021 -h1,6395:6630773,26944257:0,0,0 -g1,6395:6946919,26944257 -g1,6395:7263065,26944257 -g1,6395:7579211,26944257 -g1,6395:7895357,26944257 -g1,6395:8211503,26944257 -g1,6395:8527649,26944257 -g1,6395:8843795,26944257 -g1,6395:9159941,26944257 -g1,6395:9476087,26944257 -g1,6395:9792233,26944257 -g1,6395:10108379,26944257 -g1,6395:10424525,26944257 -g1,6395:10740671,26944257 -g1,6395:11056817,26944257 -g1,6395:11372963,26944257 -g1,6395:11689109,26944257 -g1,6395:12005255,26944257 -g1,6395:12321401,26944257 -g1,6395:12637547,26944257 -g1,6395:12953693,26944257 -g1,6395:13585985,26944257 -g1,6395:14218277,26944257 -h1,6395:15799006,26944257:0,0,0 -k1,6395:32583030,26944257:16784024 -g1,6395:32583030,26944257 -) -(1,6396:6630773,27610435:25952256,404226,76021 -h1,6396:6630773,27610435:0,0,0 -k1,6396:6630773,27610435:0 -h1,6396:11689104,27610435:0,0,0 -k1,6396:32583028,27610435:20893924 -g1,6396:32583028,27610435 -) -(1,6409:6630773,28276613:25952256,410518,6290 -(1,6398:6630773,28276613:0,0,0 -g1,6398:6630773,28276613 -g1,6398:6630773,28276613 -g1,6398:6303093,28276613 -(1,6398:6303093,28276613:0,0,0 -) -g1,6398:6630773,28276613 -) -g1,6409:7579210,28276613 -g1,6409:9159939,28276613 -g1,6409:10108376,28276613 -h1,6409:10424522,28276613:0,0,0 -k1,6409:32583030,28276613:22158508 -g1,6409:32583030,28276613 -) -(1,6409:6630773,28942791:25952256,410518,31456 -h1,6409:6630773,28942791:0,0,0 -g1,6409:7579210,28942791 -g1,6409:7895356,28942791 -g1,6409:8527648,28942791 -g1,6409:10740668,28942791 -g1,6409:11689105,28942791 -h1,6409:12005251,28942791:0,0,0 -k1,6409:32583029,28942791:20577778 -g1,6409:32583029,28942791 -) -(1,6409:6630773,29608969:25952256,410518,31456 -h1,6409:6630773,29608969:0,0,0 -g1,6409:7579210,29608969 -g1,6409:7895356,29608969 -g1,6409:8211502,29608969 -g1,6409:9476085,29608969 -g1,6409:10108377,29608969 -g1,6409:11372960,29608969 -h1,6409:12321397,29608969:0,0,0 -k1,6409:32583029,29608969:20261632 -g1,6409:32583029,29608969 -) -(1,6409:6630773,30275147:25952256,410518,31456 -h1,6409:6630773,30275147:0,0,0 -g1,6409:7579210,30275147 -g1,6409:7895356,30275147 -g1,6409:8211502,30275147 -g1,6409:9476085,30275147 -g1,6409:10108377,30275147 -g1,6409:11372960,30275147 -h1,6409:12637543,30275147:0,0,0 -k1,6409:32583029,30275147:19945486 -g1,6409:32583029,30275147 -) -(1,6409:6630773,30941325:25952256,410518,31456 -h1,6409:6630773,30941325:0,0,0 -g1,6409:7579210,30941325 -g1,6409:7895356,30941325 -g1,6409:8211502,30941325 -g1,6409:9476085,30941325 -g1,6409:10108377,30941325 -g1,6409:11372960,30941325 -h1,6409:12005251,30941325:0,0,0 -k1,6409:32583029,30941325:20577778 -g1,6409:32583029,30941325 -) -(1,6409:6630773,31607503:25952256,410518,31456 -h1,6409:6630773,31607503:0,0,0 -g1,6409:7579210,31607503 -g1,6409:7895356,31607503 -g1,6409:8527648,31607503 -g1,6409:10740668,31607503 -g1,6409:11689105,31607503 -h1,6409:12005251,31607503:0,0,0 -k1,6409:32583029,31607503:20577778 -g1,6409:32583029,31607503 -) -(1,6409:6630773,32273681:25952256,410518,31456 -h1,6409:6630773,32273681:0,0,0 -g1,6409:7579210,32273681 -g1,6409:7895356,32273681 -g1,6409:8211502,32273681 -g1,6409:9476085,32273681 -g1,6409:10108377,32273681 -g1,6409:11372960,32273681 -h1,6409:12321397,32273681:0,0,0 -k1,6409:32583029,32273681:20261632 -g1,6409:32583029,32273681 -) -(1,6409:6630773,32939859:25952256,410518,107478 -h1,6409:6630773,32939859:0,0,0 -g1,6409:7579210,32939859 -g1,6409:7895356,32939859 -g1,6409:8211502,32939859 -g1,6409:9476085,32939859 -g1,6409:10108377,32939859 -g1,6409:11689106,32939859 -h1,6409:12953689,32939859:0,0,0 -k1,6409:32583029,32939859:19629340 -g1,6409:32583029,32939859 -) -(1,6409:6630773,33606037:25952256,410518,76021 -h1,6409:6630773,33606037:0,0,0 -g1,6409:7579210,33606037 -g1,6409:7895356,33606037 -g1,6409:8527648,33606037 -g1,6409:9476085,33606037 -g1,6409:10740668,33606037 -g1,6409:12637542,33606037 -g1,6409:13269834,33606037 -g1,6409:13902126,33606037 -h1,6409:14218272,33606037:0,0,0 -k1,6409:32583028,33606037:18364756 -g1,6409:32583028,33606037 -) -(1,6409:6630773,34272215:25952256,410518,31456 -h1,6409:6630773,34272215:0,0,0 -g1,6409:7579210,34272215 -g1,6409:7895356,34272215 -g1,6409:8527648,34272215 -g1,6409:9476085,34272215 -g1,6409:10740668,34272215 -h1,6409:12005251,34272215:0,0,0 -k1,6409:32583029,34272215:20577778 -g1,6409:32583029,34272215 -) -] -) -g1,6410:32583029,34303671 -g1,6410:6630773,34303671 -g1,6410:6630773,34303671 -g1,6410:32583029,34303671 -g1,6410:32583029,34303671 -) -h1,6410:6630773,34500279:0,0,0 -v1,6414:6630773,36390343:0,393216,0 -(1,6417:6630773,43610803:25952256,7613676,0 -g1,6417:6630773,43610803 -g1,6417:6303093,43610803 -r1,6438:6401397,43610803:98304,7613676,0 -g1,6417:6600626,43610803 -g1,6417:6797234,43610803 -[1,6417:6797234,43610803:25785795,7613676,0 -(1,6415:6797234,36752416:25785795,755289,196608 -(1,6414:6797234,36752416:0,755289,196608 -r1,6438:8134168,36752416:1336934,951897,196608 -k1,6414:6797234,36752416:-1336934 -) -(1,6414:6797234,36752416:1336934,755289,196608 -) -k1,6414:8480854,36752416:346686 -k1,6414:8808534,36752416:327680 -k1,6414:10351906,36752416:346685 -k1,6414:12207231,36752416:346686 -k1,6414:14753304,36752416:346685 -k1,6414:18314531,36752416:346686 -k1,6414:19320508,36752416:346685 -k1,6414:22620902,36752416:346686 -k1,6414:23626879,36752416:346685 -k1,6414:26091033,36752416:346686 -k1,6414:27761546,36752416:346686 -k1,6414:29843624,36752416:346685 -k1,6414:32583029,36752416:0 -) -(1,6415:6797234,37593904:25785795,513147,134348 -k1,6414:7616256,37593904:287525 -k1,6414:8922866,37593904:287525 -k1,6414:10863864,37593904:287525 -k1,6414:11837551,37593904:287525 -k1,6414:13072727,37593904:287525 -k1,6414:15484929,37593904:287525 -k1,6414:17269952,37593904:287525 -k1,6414:18629646,37593904:287525 -k1,6414:21288919,37593904:287525 -k1,6414:26949086,37593904:287525 -(1,6414:26949086,37593904:0,452978,115847 -r1,6438:32583029,37593904:5633943,568825,115847 -k1,6414:26949086,37593904:-5633943 -) -(1,6414:26949086,37593904:5633943,452978,115847 -k1,6414:26949086,37593904:3277 -h1,6414:32579752,37593904:0,411205,112570 -) -k1,6414:32583029,37593904:0 -) -(1,6415:6797234,38435392:25785795,513147,102891 -k1,6414:9679016,38435392:347505 -k1,6414:11045605,38435392:347504 -k1,6414:13634441,38435392:347505 -k1,6414:16605352,38435392:347505 -k1,6414:17612148,38435392:347504 -k1,6414:18978738,38435392:347505 -k1,6414:22629913,38435392:347505 -k1,6414:24144613,38435392:347504 -k1,6414:26377589,38435392:347505 -k1,6414:27256591,38435392:347505 -k1,6414:30076768,38435392:347504 -k1,6414:31591469,38435392:347505 -k1,6414:32583029,38435392:0 -) -(1,6415:6797234,39276880:25785795,505283,134348 -k1,6414:8259745,39276880:259270 -k1,6414:9050513,39276880:259271 -k1,6414:9665643,39276880:259270 -k1,6414:11092110,39276880:259271 -k1,6414:12139778,39276880:259270 -k1,6414:15352757,39276880:259271 -k1,6414:16716309,39276880:259270 -k1,6414:17723346,39276880:259271 -k1,6414:20954674,39276880:259270 -k1,6414:22949338,39276880:259271 -k1,6414:24910578,39276880:259270 -k1,6414:26188934,39276880:259271 -k1,6414:29662745,39276880:259270 -k1,6415:32583029,39276880:0 -) -(1,6415:6797234,40118368:25785795,505283,126483 -(1,6414:6797234,40118368:0,452978,115847 -r1,6438:14189736,40118368:7392502,568825,115847 -k1,6414:6797234,40118368:-7392502 -) -(1,6414:6797234,40118368:7392502,452978,115847 -k1,6414:6797234,40118368:3277 -h1,6414:14186459,40118368:0,411205,112570 -) -k1,6414:14581127,40118368:217721 -k1,6414:15268740,40118368:217720 -k1,6414:16017958,40118368:217721 -k1,6414:19444977,40118368:217721 -k1,6414:20314125,40118368:217720 -k1,6414:23790951,40118368:217721 -k1,6414:25293178,40118368:217721 -k1,6414:27207625,40118368:217720 -k1,6414:31657661,40118368:217721 -k1,6415:32583029,40118368:0 -) -(1,6415:6797234,40959856:25785795,513147,126483 -k1,6414:9597424,40959856:298025 -k1,6414:13300044,40959856:298025 -k1,6414:14589629,40959856:298025 -k1,6414:17174204,40959856:298024 -k1,6414:18197057,40959856:298025 -k1,6414:19779588,40959856:298025 -k1,6414:21096698,40959856:298025 -k1,6414:24070558,40959856:298025 -k1,6414:27115197,40959856:298025 -k1,6414:27944718,40959856:298024 -k1,6414:30614491,40959856:298025 -k1,6414:31563944,40959856:298025 -k1,6414:32583029,40959856:0 -) -(1,6415:6797234,41801344:25785795,505283,7863 -g1,6414:10300133,41801344 -k1,6415:32583029,41801344:21115700 -g1,6415:32583029,41801344 -) -(1,6417:6797234,42642832:25785795,513147,134348 -h1,6416:6797234,42642832:983040,0,0 -k1,6416:9227672,42642832:250711 -k1,6416:12139799,42642832:250710 -k1,6416:14245834,42642832:250711 -k1,6416:15919332,42642832:250711 -k1,6416:17189127,42642832:250710 -(1,6416:17189127,42642832:0,452978,115847 -r1,6438:18954241,42642832:1765114,568825,115847 -k1,6416:17189127,42642832:-1765114 -) -(1,6416:17189127,42642832:1765114,452978,115847 -g1,6416:18247540,42642832 -h1,6416:18950964,42642832:0,411205,112570 -) -k1,6416:19204952,42642832:250711 -k1,6416:22375947,42642832:250711 -k1,6416:23698826,42642832:250710 -k1,6416:24968622,42642832:250711 -k1,6416:26293468,42642832:250711 -k1,6416:27195606,42642832:250710 -k1,6416:28981826,42642832:250711 -k1,6416:32583029,42642832:0 -) -(1,6417:6797234,43484320:25785795,505283,126483 -g1,6416:8282279,43484320 -g1,6416:10762816,43484320 -g1,6416:11613473,43484320 -g1,6416:16045017,43484320 -g1,6416:17674242,43484320 -g1,6416:18524899,43484320 -(1,6416:18524899,43484320:0,452978,115847 -r1,6438:19586589,43484320:1061690,568825,115847 -k1,6416:18524899,43484320:-1061690 -) -(1,6416:18524899,43484320:1061690,452978,115847 -g1,6416:19231600,43484320 -h1,6416:19583312,43484320:0,411205,112570 -) -k1,6417:32583029,43484320:12822770 -g1,6417:32583029,43484320 -) -] -g1,6417:32583029,43610803 -) -h1,6417:6630773,43610803:0,0,0 -v1,6420:6630773,44976579:0,393216,0 -] -(1,6438:32583029,45706769:0,0,0 -g1,6438:32583029,45706769 -) -) -] -(1,6438:6630773,47279633:25952256,0,0 -h1,6438:6630773,47279633:25952256,0,0 -) -] -(1,6438:4262630,4025873:0,0,0 -[1,6438:-473656,4025873:0,0,0 -(1,6438:-473656,-710413:0,0,0 -(1,6438:-473656,-710413:0,0,0 -g1,6438:-473656,-710413 -) -g1,6438:-473656,-710413 -) -] -) -] -!24067 -}108 -Input:877:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:878:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:879:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:880:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:881:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:882:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!570 -{109 -[1,6515:4262630,47279633:28320399,43253760,0 -(1,6515:4262630,4025873:0,0,0 -[1,6515:-473656,4025873:0,0,0 -(1,6515:-473656,-710413:0,0,0 -(1,6515:-473656,-644877:0,0,0 -k1,6515:-473656,-644877:-65536 ) -(1,6515:-473656,4736287:0,0,0 -k1,6515:-473656,4736287:5209943 +g1,5429:20344828,6811154 +(1,5429:20344828,6811154:924057,924057,924057 +g1,5429:21268885,6811154 +g1,5429:21268885,6811154 ) -g1,6515:-473656,-710413 +g1,5429:21268885,6811154 +(1,5429:21268885,6811154:910950,924057,924057 +g1,5429:21268885,6811154 +g1,5429:22179835,6811154 +(1,5429:22179835,6811154:0,924057,924057 +(1,5429:22179835,6811154:0,0,0 +(1,5429:22179835,6811154:0,0,0 +g1,5429:22179835,6811154 +g1,5429:22179835,6811154 +g1,5429:22179835,6811154 +g1,5429:22179835,6811154 +g1,5429:22179835,6811154 +(1,5429:22179835,6811154:0,0,0 +(1,5429:22179835,6811154:1347418,281018,140387 +(1,5429:22179835,6811154:1347418,281018,140387 +$1,5429:22179835,6811154 +h1,5429:22179835,6811154:0,281018,137888 +(1,5429:22549982,6889806:977271,291373,61735 +) +$1,5429:23527253,6811154 +) +g1,5429:23527253,6811154 +) +) +g1,5429:22179835,6811154 +g1,5429:22179835,6811154 +) +) +g1,5429:22179835,6811154 +) +) +g1,5429:22179835,6811154 +(1,5429:22179835,6811154:924057,924057,924057 +g1,5429:23103892,6811154 +g1,5429:23103892,6811154 +) +g1,5429:23103892,6811154 +(1,5429:23103892,6811154:910950,924057,924057 +g1,5429:23103892,6811154 +g1,5429:24014842,6811154 +(1,5429:24014842,6811154:0,924057,924057 +(1,5429:24014842,6811154:0,0,0 +(1,5429:24014842,6811154:0,0,0 +g1,5429:24014842,6811154 +g1,5429:24014842,6811154 +g1,5429:24014842,6811154 +g1,5429:24014842,6811154 +g1,5429:24014842,6811154 +(1,5429:24014842,6811154:0,0,0 +(1,5429:24014842,6811154:549288,281018,137888 +(1,5429:24014842,6811154:549288,281018,137888 +$1,5429:24014842,6811154 +h1,5429:24014842,6811154:0,281018,137888 +g1,5429:24102232,6811154 +$1,5429:24564130,6811154 +) +g1,5429:24564130,6811154 +) +) +g1,5429:24014842,6811154 +g1,5429:24014842,6811154 +) +) +g1,5429:24014842,6811154 +) +) +g1,5429:24014842,6811154 +(1,5429:24014842,6811154:924057,924057,924057 +g1,5429:24938899,6811154 +g1,5429:24938899,6811154 +) +g1,5429:24938899,6811154 +(1,5429:24938899,6811154:910950,924057,924057 +g1,5429:24938899,6811154 +g1,5429:25849849,6811154 +(1,5429:25849849,6811154:0,924057,924057 +(1,5429:25849849,6811154:0,0,0 +(1,5429:25849849,6811154:0,0,0 +g1,5429:25849849,6811154 +g1,5429:25849849,6811154 +g1,5429:25849849,6811154 +g1,5429:25849849,6811154 +g1,5429:25849849,6811154 +(1,5429:25849849,6811154:0,0,0 +(1,5429:25849849,6811154:1540487,281018,140387 +(1,5429:25849849,6811154:1540487,281018,140387 +$1,5429:25849849,6811154 +h1,5429:25849849,6811154:0,281018,137888 +(1,5429:26219996,6889806:1170340,286654,61735 ) -] +$1,5429:27390336,6811154 +) +g1,5429:27390336,6811154 +) +) +g1,5429:25849849,6811154 +g1,5429:25849849,6811154 +) +) +g1,5429:25849849,6811154 +) +) +g1,5429:25849849,6811154 +(1,5430:25849849,6811154:924057,924057,924057 +g1,5430:26773906,6811154 +g1,5430:26773906,6811154 +) +g1,5430:26773906,6811154 ) -[1,6515:6630773,47279633:25952256,43253760,0 -[1,6515:6630773,4812305:25952256,786432,0 -(1,6515:6630773,4812305:25952256,505283,11795 -(1,6515:6630773,4812305:25952256,505283,11795 -g1,6515:3078558,4812305 -[1,6515:3078558,4812305:0,0,0 -(1,6515:3078558,2439708:0,1703936,0 -k1,6515:1358238,2439708:-1720320 -(1,5950:1358238,2439708:1720320,1703936,0 -(1,5950:1358238,2439708:1179648,16384,0 -r1,6515:2537886,2439708:1179648,16384,0 +(1,5431:17585764,8646161:9188142,924057,924057 +g1,5430:17585764,8646161 +(1,5430:17585764,8646161:924057,924057,924057 +g1,5430:17585764,8646161 +g1,5430:18509821,8646161 +(1,5430:18509821,8646161:0,924057,924057 +(1,5430:18509821,8646161:0,0,0 +(1,5430:18509821,8646161:0,0,0 +g1,5430:18509821,8646161 +g1,5430:18509821,8646161 +g1,5430:18509821,8646161 +g1,5430:18509821,8646161 +g1,5430:18509821,8646161 +(1,5430:18509821,8646161:0,0,0 +(1,5430:18509821,8646161:1347418,281018,140387 +(1,5430:18509821,8646161:1347418,281018,140387 +$1,5430:18509821,8646161 +h1,5430:18509821,8646161:0,281018,137888 +(1,5430:18879968,8724813:977271,291373,61735 +) +$1,5430:19857239,8646161 +) +g1,5430:19857239,8646161 +) +) +g1,5430:18509821,8646161 +g1,5430:18509821,8646161 +) +) +g1,5430:18509821,8646161 +) +) +g1,5430:18509821,8646161 +(1,5430:18509821,8646161:924057,924057,924057 +g1,5430:19433878,8646161 +g1,5430:19433878,8646161 ) -g1,5950:3062174,2439708 -(1,5950:3062174,2439708:16384,1703936,0 -[1,5950:3062174,2439708:25952256,1703936,0 -(1,5950:3062174,1915420:25952256,1179648,0 -(1,5950:3062174,1915420:16384,1179648,0 -r1,6515:3078558,1915420:16384,1179648,0 +g1,5430:19433878,8646161 +(1,5430:19433878,8646161:910950,924057,924057 +g1,5430:19433878,8646161 +g1,5430:20344828,8646161 +(1,5430:20344828,8646161:0,924057,924057 +(1,5430:20344828,8646161:0,0,0 +(1,5430:20344828,8646161:0,0,0 +g1,5430:20344828,8646161 +g1,5430:20344828,8646161 +g1,5430:20344828,8646161 +g1,5430:20344828,8646161 +g1,5430:20344828,8646161 +(1,5430:20344828,8646161:0,0,0 +(1,5430:20344828,8646161:1347418,281018,140387 +(1,5430:20344828,8646161:1347418,281018,140387 +$1,5430:20344828,8646161 +h1,5430:20344828,8646161:0,281018,137888 +(1,5430:20714975,8724813:977271,291373,61735 +) +$1,5430:21692246,8646161 +) +g1,5430:21692246,8646161 +) +) +g1,5430:20344828,8646161 +g1,5430:20344828,8646161 +) +) +g1,5430:20344828,8646161 +) +) +g1,5430:20344828,8646161 +(1,5430:20344828,8646161:924057,924057,924057 +g1,5430:21268885,8646161 +g1,5430:21268885,8646161 ) -k1,5950:29014430,1915420:25935872 -g1,5950:29014430,1915420 +g1,5430:21268885,8646161 +(1,5430:21268885,8646161:910950,924057,924057 +g1,5430:21268885,8646161 +g1,5430:22179835,8646161 +(1,5430:22179835,8646161:0,924057,924057 +(1,5430:22179835,8646161:0,0,0 +(1,5430:22179835,8646161:0,0,0 +g1,5430:22179835,8646161 +g1,5430:22179835,8646161 +g1,5430:22179835,8646161 +g1,5430:22179835,8646161 +g1,5430:22179835,8646161 +(1,5430:22179835,8646161:0,0,0 +(1,5430:22179835,8646161:1347418,281018,140387 +(1,5430:22179835,8646161:1347418,281018,140387 +$1,5430:22179835,8646161 +h1,5430:22179835,8646161:0,281018,137888 +(1,5430:22549982,8724813:977271,291373,61735 +) +$1,5430:23527253,8646161 +) +g1,5430:23527253,8646161 +) +) +g1,5430:22179835,8646161 +g1,5430:22179835,8646161 +) +) +g1,5430:22179835,8646161 +) +) +g1,5430:22179835,8646161 +(1,5430:22179835,8646161:924057,924057,924057 +g1,5430:23103892,8646161 +g1,5430:23103892,8646161 ) -] +g1,5430:23103892,8646161 +(1,5430:23103892,8646161:910950,924057,924057 +g1,5430:23103892,8646161 +g1,5430:24014842,8646161 +(1,5430:24014842,8646161:0,924057,924057 +(1,5430:24014842,8646161:0,0,0 +(1,5430:24014842,8646161:0,0,0 +g1,5430:24014842,8646161 +g1,5430:24014842,8646161 +g1,5430:24014842,8646161 +g1,5430:24014842,8646161 +g1,5430:24014842,8646161 +(1,5430:24014842,8646161:0,0,0 +(1,5430:24014842,8646161:0,281018,137888 +(1,5430:24014842,8646161:0,281018,137888 +$1,5430:24014842,8646161 +h1,5430:24014842,8646161:0,281018,137888 +$1,5430:24014842,8646161 ) +g1,5430:24014842,8646161 +) +) +g1,5430:24014842,8646161 +g1,5430:24014842,8646161 +) +) +g1,5430:24014842,8646161 +) +) +g1,5430:24014842,8646161 +(1,5430:24014842,8646161:924057,924057,924057 +g1,5430:24938899,8646161 +g1,5430:24938899,8646161 +) +g1,5430:24938899,8646161 +(1,5430:24938899,8646161:910950,924057,924057 +g1,5430:24938899,8646161 +g1,5430:25849849,8646161 +(1,5430:25849849,8646161:0,924057,924057 +(1,5430:25849849,8646161:0,0,0 +(1,5430:25849849,8646161:0,0,0 +g1,5430:25849849,8646161 +g1,5430:25849849,8646161 +g1,5430:25849849,8646161 +g1,5430:25849849,8646161 +g1,5430:25849849,8646161 +(1,5430:25849849,8646161:0,0,0 +(1,5430:25849849,8646161:1540487,281018,140387 +(1,5430:25849849,8646161:1540487,281018,140387 +$1,5430:25849849,8646161 +h1,5430:25849849,8646161:0,281018,137888 +(1,5430:26219996,8724813:1170340,291373,61735 ) +$1,5430:27390336,8646161 ) -] -[1,6515:3078558,4812305:0,0,0 -(1,6515:3078558,2439708:0,1703936,0 -g1,6515:29030814,2439708 -g1,6515:36135244,2439708 -(1,5950:36135244,2439708:1720320,1703936,0 -(1,5950:36135244,2439708:16384,1703936,0 -[1,5950:36135244,2439708:25952256,1703936,0 -(1,5950:36135244,1915420:25952256,1179648,0 -(1,5950:36135244,1915420:16384,1179648,0 -r1,6515:36151628,1915420:16384,1179648,0 +g1,5430:27390336,8646161 +) +) +g1,5430:25849849,8646161 +g1,5430:25849849,8646161 +) +) +g1,5430:25849849,8646161 +) +) +g1,5430:25849849,8646161 +(1,5431:25849849,8646161:924057,924057,924057 +g1,5431:26773906,8646161 +g1,5431:26773906,8646161 +) +g1,5431:26773906,8646161 ) -k1,5950:62087500,1915420:25935872 -g1,5950:62087500,1915420 +(1,5432:17585764,10481168:9188142,924057,924057 +g1,5431:17585764,10481168 +(1,5431:17585764,10481168:924057,924057,924057 +g1,5431:17585764,10481168 +g1,5431:18509821,10481168 +(1,5431:18509821,10481168:0,924057,924057 +(1,5431:18509821,10481168:0,0,0 +(1,5431:18509821,10481168:0,0,0 +g1,5431:18509821,10481168 +g1,5431:18509821,10481168 +g1,5431:18509821,10481168 +g1,5431:18509821,10481168 +g1,5431:18509821,10481168 +(1,5431:18509821,10481168:0,0,0 +(1,5431:18509821,10481168:1347418,281018,140387 +(1,5431:18509821,10481168:1347418,281018,140387 +$1,5431:18509821,10481168 +h1,5431:18509821,10481168:0,281018,137888 +(1,5431:18879968,10559820:977271,291373,61735 +) +$1,5431:19857239,10481168 +) +g1,5431:19857239,10481168 +) +) +g1,5431:18509821,10481168 +g1,5431:18509821,10481168 +) +) +g1,5431:18509821,10481168 +) +) +g1,5431:18509821,10481168 +(1,5431:18509821,10481168:924057,924057,924057 +g1,5431:19433878,10481168 +g1,5431:19433878,10481168 ) -] +g1,5431:19433878,10481168 +(1,5431:19433878,10481168:910950,924057,924057 +g1,5431:19433878,10481168 +g1,5431:20344828,10481168 +(1,5431:20344828,10481168:0,924057,924057 +(1,5431:20344828,10481168:0,0,0 +(1,5431:20344828,10481168:0,0,0 +g1,5431:20344828,10481168 +g1,5431:20344828,10481168 +g1,5431:20344828,10481168 +g1,5431:20344828,10481168 +g1,5431:20344828,10481168 +(1,5431:20344828,10481168:0,0,0 +(1,5431:20344828,10481168:1347418,281018,140387 +(1,5431:20344828,10481168:1347418,281018,140387 +$1,5431:20344828,10481168 +h1,5431:20344828,10481168:0,281018,137888 +(1,5431:20714975,10559820:977271,291373,61735 +) +$1,5431:21692246,10481168 +) +g1,5431:21692246,10481168 +) +) +g1,5431:20344828,10481168 +g1,5431:20344828,10481168 +) +) +g1,5431:20344828,10481168 +) +) +g1,5431:20344828,10481168 +(1,5431:20344828,10481168:924057,924057,924057 +g1,5431:21268885,10481168 +g1,5431:21268885,10481168 ) -g1,5950:36675916,2439708 -(1,5950:36675916,2439708:1179648,16384,0 -r1,6515:37855564,2439708:1179648,16384,0 +g1,5431:21268885,10481168 +(1,5431:21268885,10481168:910950,924057,924057 +g1,5431:21268885,10481168 +g1,5431:22179835,10481168 +(1,5431:22179835,10481168:0,924057,924057 +(1,5431:22179835,10481168:0,0,0 +(1,5431:22179835,10481168:0,0,0 +g1,5431:22179835,10481168 +g1,5431:22179835,10481168 +g1,5431:22179835,10481168 +g1,5431:22179835,10481168 +g1,5431:22179835,10481168 +(1,5431:22179835,10481168:0,0,0 +(1,5431:22179835,10481168:1347418,281018,140387 +(1,5431:22179835,10481168:1347418,281018,140387 +$1,5431:22179835,10481168 +h1,5431:22179835,10481168:0,281018,137888 +(1,5431:22549982,10559820:977271,291373,61735 +) +$1,5431:23527253,10481168 +) +g1,5431:23527253,10481168 +) +) +g1,5431:22179835,10481168 +g1,5431:22179835,10481168 +) +) +g1,5431:22179835,10481168 +) +) +g1,5431:22179835,10481168 +(1,5431:22179835,10481168:924057,924057,924057 +g1,5431:23103892,10481168 +g1,5431:23103892,10481168 ) +g1,5431:23103892,10481168 +(1,5431:23103892,10481168:910950,924057,924057 +g1,5431:23103892,10481168 +g1,5431:24014842,10481168 +(1,5431:24014842,10481168:0,924057,924057 +(1,5431:24014842,10481168:0,0,0 +(1,5431:24014842,10481168:0,0,0 +g1,5431:24014842,10481168 +g1,5431:24014842,10481168 +g1,5431:24014842,10481168 +g1,5431:24014842,10481168 +g1,5431:24014842,10481168 +(1,5431:24014842,10481168:0,0,0 +(1,5431:24014842,10481168:0,281018,137888 +(1,5431:24014842,10481168:0,281018,137888 +$1,5431:24014842,10481168 +h1,5431:24014842,10481168:0,281018,137888 +$1,5431:24014842,10481168 +) +g1,5431:24014842,10481168 +) +) +g1,5431:24014842,10481168 +g1,5431:24014842,10481168 +) +) +g1,5431:24014842,10481168 +) +) +g1,5431:24014842,10481168 +(1,5431:24014842,10481168:924057,924057,924057 +g1,5431:24938899,10481168 +g1,5431:24938899,10481168 +) +g1,5431:24938899,10481168 +(1,5431:24938899,10481168:910950,924057,924057 +g1,5431:24938899,10481168 +g1,5431:25849849,10481168 +(1,5431:25849849,10481168:0,924057,924057 +(1,5431:25849849,10481168:0,0,0 +(1,5431:25849849,10481168:0,0,0 +g1,5431:25849849,10481168 +g1,5431:25849849,10481168 +g1,5431:25849849,10481168 +g1,5431:25849849,10481168 +g1,5431:25849849,10481168 +(1,5431:25849849,10481168:0,0,0 +(1,5431:25849849,10481168:1540487,281018,140387 +(1,5431:25849849,10481168:1540487,281018,140387 +$1,5431:25849849,10481168 +h1,5431:25849849,10481168:0,281018,137888 +(1,5431:26219996,10559820:1170340,291373,61735 +) +$1,5431:27390336,10481168 +) +g1,5431:27390336,10481168 +) +) +g1,5431:25849849,10481168 +g1,5431:25849849,10481168 +) +) +g1,5431:25849849,10481168 +) +) +g1,5431:25849849,10481168 +(1,5432:25849849,10481168:924057,924057,924057 +g1,5432:26773906,10481168 +g1,5432:26773906,10481168 +) +g1,5432:26773906,10481168 ) -k1,6515:3078556,2439708:-34777008 +(1,5433:17585764,12316175:9188142,924057,924057 +g1,5432:17585764,12316175 +(1,5432:17585764,12316175:924057,924057,924057 +g1,5432:17585764,12316175 +g1,5432:18509821,12316175 +(1,5432:18509821,12316175:0,924057,924057 +(1,5432:18509821,12316175:0,0,0 +(1,5432:18509821,12316175:0,0,0 +g1,5432:18509821,12316175 +g1,5432:18509821,12316175 +g1,5432:18509821,12316175 +g1,5432:18509821,12316175 +g1,5432:18509821,12316175 +(1,5432:18509821,12316175:0,0,0 +(1,5432:18509821,12316175:607548,341312,137888 +(1,5432:18509821,12316175:607548,341312,137888 +$1,5432:18509821,12316175 +h1,5432:18509821,12316175:0,281018,137888 +g1,5432:18655471,12316175 +$1,5432:19117369,12316175 +) +g1,5432:19117369,12316175 +) +) +g1,5432:18509821,12316175 +g1,5432:18509821,12316175 +) +) +g1,5432:18509821,12316175 +) +) +g1,5432:18509821,12316175 +(1,5432:18509821,12316175:924057,924057,924057 +g1,5432:19433878,12316175 +g1,5432:19433878,12316175 +) +g1,5432:19433878,12316175 +(1,5432:19433878,12316175:910950,924057,924057 +g1,5432:19433878,12316175 +g1,5432:20344828,12316175 +(1,5432:20344828,12316175:0,924057,924057 +(1,5432:20344828,12316175:0,0,0 +(1,5432:20344828,12316175:0,0,0 +g1,5432:20344828,12316175 +g1,5432:20344828,12316175 +g1,5432:20344828,12316175 +g1,5432:20344828,12316175 +g1,5432:20344828,12316175 +(1,5432:20344828,12316175:0,0,0 +(1,5432:20344828,12316175:0,281018,137888 +(1,5432:20344828,12316175:0,281018,137888 +$1,5432:20344828,12316175 +h1,5432:20344828,12316175:0,281018,137888 +$1,5432:20344828,12316175 +) +g1,5432:20344828,12316175 +) +) +g1,5432:20344828,12316175 +g1,5432:20344828,12316175 +) +) +g1,5432:20344828,12316175 +) +) +g1,5432:20344828,12316175 +(1,5432:20344828,12316175:924057,924057,924057 +g1,5432:21268885,12316175 +g1,5432:21268885,12316175 +) +g1,5432:21268885,12316175 +(1,5432:21268885,12316175:910950,924057,924057 +g1,5432:21268885,12316175 +g1,5432:22179835,12316175 +(1,5432:22179835,12316175:0,924057,924057 +(1,5432:22179835,12316175:0,0,0 +(1,5432:22179835,12316175:0,0,0 +g1,5432:22179835,12316175 +g1,5432:22179835,12316175 +g1,5432:22179835,12316175 +g1,5432:22179835,12316175 +g1,5432:22179835,12316175 +(1,5432:22179835,12316175:0,0,0 +(1,5432:22179835,12316175:0,281018,137888 +(1,5432:22179835,12316175:0,281018,137888 +$1,5432:22179835,12316175 +h1,5432:22179835,12316175:0,281018,137888 +$1,5432:22179835,12316175 +) +g1,5432:22179835,12316175 +) +) +g1,5432:22179835,12316175 +g1,5432:22179835,12316175 +) +) +g1,5432:22179835,12316175 +) +) +g1,5432:22179835,12316175 +(1,5432:22179835,12316175:924057,924057,924057 +g1,5432:23103892,12316175 +g1,5432:23103892,12316175 +) +g1,5432:23103892,12316175 +(1,5432:23103892,12316175:910950,924057,924057 +g1,5432:23103892,12316175 +g1,5432:24014842,12316175 +(1,5432:24014842,12316175:0,924057,924057 +(1,5432:24014842,12316175:0,0,0 +(1,5432:24014842,12316175:0,0,0 +g1,5432:24014842,12316175 +g1,5432:24014842,12316175 +g1,5432:24014842,12316175 +g1,5432:24014842,12316175 +g1,5432:24014842,12316175 +(1,5432:24014842,12316175:0,0,0 +(1,5432:24014842,12316175:600208,341312,137888 +(1,5432:24014842,12316175:600208,341312,137888 +$1,5432:24014842,12316175 +h1,5432:24014842,12316175:0,281018,137888 +g1,5432:24160492,12316175 +$1,5432:24615050,12316175 +) +g1,5432:24615050,12316175 +) +) +g1,5432:24014842,12316175 +g1,5432:24014842,12316175 +) +) +g1,5432:24014842,12316175 +) +) +g1,5432:24014842,12316175 +(1,5432:24014842,12316175:924057,924057,924057 +g1,5432:24938899,12316175 +g1,5432:24938899,12316175 +) +g1,5432:24938899,12316175 +(1,5432:24938899,12316175:910950,924057,924057 +g1,5432:24938899,12316175 +g1,5432:25849849,12316175 +(1,5432:25849849,12316175:0,924057,924057 +(1,5432:25849849,12316175:0,0,0 +(1,5432:25849849,12316175:0,0,0 +g1,5432:25849849,12316175 +g1,5432:25849849,12316175 +g1,5432:25849849,12316175 +g1,5432:25849849,12316175 +g1,5432:25849849,12316175 +(1,5432:25849849,12316175:0,0,0 +(1,5432:25849849,12316175:0,281018,137888 +(1,5432:25849849,12316175:0,281018,137888 +$1,5432:25849849,12316175 +h1,5432:25849849,12316175:0,281018,137888 +$1,5432:25849849,12316175 +) +g1,5432:25849849,12316175 +) +) +g1,5432:25849849,12316175 +g1,5432:25849849,12316175 +) +) +g1,5432:25849849,12316175 +) +) +g1,5432:25849849,12316175 +(1,5433:25849849,12316175:924057,924057,924057 +g1,5433:26773906,12316175 +g1,5433:26773906,12316175 +) +g1,5433:26773906,12316175 +) +(1,5434:17585764,14151182:9188142,924057,924057 +g1,5433:17585764,14151182 +(1,5433:17585764,14151182:924057,924057,924057 +g1,5433:17585764,14151182 +g1,5433:18509821,14151182 +(1,5433:18509821,14151182:0,924057,924057 +(1,5433:18509821,14151182:0,0,0 +(1,5433:18509821,14151182:0,0,0 +g1,5433:18509821,14151182 +g1,5433:18509821,14151182 +g1,5433:18509821,14151182 +g1,5433:18509821,14151182 +g1,5433:18509821,14151182 +(1,5433:18509821,14151182:0,0,0 +(1,5433:18509821,14151182:1262877,281018,142607 +(1,5433:18509821,14151182:1262877,281018,142607 +$1,5433:18509821,14151182 +h1,5433:18509821,14151182:0,281018,137888 +(1,5433:18879968,14232054:892730,303170,61735 +) +$1,5433:19772698,14151182 +) +g1,5433:19772698,14151182 +) +) +g1,5433:18509821,14151182 +g1,5433:18509821,14151182 +) +) +g1,5433:18509821,14151182 +) +) +g1,5433:18509821,14151182 +(1,5433:18509821,14151182:924057,924057,924057 +g1,5433:19433878,14151182 +g1,5433:19433878,14151182 ) -] -[1,6515:3078558,4812305:0,0,0 -(1,6515:3078558,49800853:0,16384,2228224 -k1,6515:1358238,49800853:-1720320 -(1,5950:1358238,49800853:1720320,16384,2228224 -(1,5950:1358238,49800853:1179648,16384,0 -r1,6515:2537886,49800853:1179648,16384,0 +g1,5433:19433878,14151182 +(1,5433:19433878,14151182:910950,924057,924057 +g1,5433:19433878,14151182 +g1,5433:20344828,14151182 +(1,5433:20344828,14151182:0,924057,924057 +(1,5433:20344828,14151182:0,0,0 +(1,5433:20344828,14151182:0,0,0 +g1,5433:20344828,14151182 +g1,5433:20344828,14151182 +g1,5433:20344828,14151182 +g1,5433:20344828,14151182 +g1,5433:20344828,14151182 +(1,5433:20344828,14151182:0,0,0 +(1,5433:20344828,14151182:1262877,281018,142607 +(1,5433:20344828,14151182:1262877,281018,142607 +$1,5433:20344828,14151182 +h1,5433:20344828,14151182:0,281018,137888 +(1,5433:20714975,14232054:892730,303170,61735 +) +$1,5433:21607705,14151182 +) +g1,5433:21607705,14151182 +) +) +g1,5433:20344828,14151182 +g1,5433:20344828,14151182 +) +) +g1,5433:20344828,14151182 +) +) +g1,5433:20344828,14151182 +(1,5433:20344828,14151182:924057,924057,924057 +g1,5433:21268885,14151182 +g1,5433:21268885,14151182 ) -g1,5950:3062174,49800853 -(1,5950:3062174,52029077:16384,1703936,0 -[1,5950:3062174,52029077:25952256,1703936,0 -(1,5950:3062174,51504789:25952256,1179648,0 -(1,5950:3062174,51504789:16384,1179648,0 -r1,6515:3078558,51504789:16384,1179648,0 +g1,5433:21268885,14151182 +(1,5433:21268885,14151182:910950,924057,924057 +g1,5433:21268885,14151182 +g1,5433:22179835,14151182 +(1,5433:22179835,14151182:0,924057,924057 +(1,5433:22179835,14151182:0,0,0 +(1,5433:22179835,14151182:0,0,0 +g1,5433:22179835,14151182 +g1,5433:22179835,14151182 +g1,5433:22179835,14151182 +g1,5433:22179835,14151182 +g1,5433:22179835,14151182 +(1,5433:22179835,14151182:0,0,0 +(1,5433:22179835,14151182:1262877,281018,142607 +(1,5433:22179835,14151182:1262877,281018,142607 +$1,5433:22179835,14151182 +h1,5433:22179835,14151182:0,281018,137888 +(1,5433:22549982,14232054:892730,303170,61735 ) -k1,5950:29014430,51504789:25935872 -g1,5950:29014430,51504789 -) -] +$1,5433:23442712,14151182 ) +g1,5433:23442712,14151182 ) ) -] -[1,6515:3078558,4812305:0,0,0 -(1,6515:3078558,49800853:0,16384,2228224 -g1,6515:29030814,49800853 -g1,6515:36135244,49800853 -(1,5950:36135244,49800853:1720320,16384,2228224 -(1,5950:36135244,52029077:16384,1703936,0 -[1,5950:36135244,52029077:25952256,1703936,0 -(1,5950:36135244,51504789:25952256,1179648,0 -(1,5950:36135244,51504789:16384,1179648,0 -r1,6515:36151628,51504789:16384,1179648,0 -) -k1,5950:62087500,51504789:25935872 -g1,5950:62087500,51504789 -) -] -) -g1,5950:36675916,49800853 -(1,5950:36675916,49800853:1179648,16384,0 -r1,6515:37855564,49800853:1179648,16384,0 +g1,5433:22179835,14151182 +g1,5433:22179835,14151182 ) ) -k1,6515:3078556,49800853:-34777008 -) -] -g1,6515:6630773,4812305 -k1,6515:24358919,4812305:16931228 -g1,6515:25981590,4812305 -g1,6515:26804066,4812305 -g1,6515:30302377,4812305 -) -) -] -[1,6515:6630773,45706769:25952256,40108032,0 -(1,6515:6630773,45706769:25952256,40108032,0 -(1,6515:6630773,45706769:0,0,0 -g1,6515:6630773,45706769 -) -[1,6515:6630773,45706769:25952256,40108032,0 -v1,6438:6630773,6254097:0,393216,0 -(1,6438:6630773,16069346:25952256,10208465,0 -g1,6438:6630773,16069346 -g1,6438:6303093,16069346 -r1,6515:6401397,16069346:98304,10208465,0 -g1,6438:6600626,16069346 -g1,6438:6797234,16069346 -[1,6438:6797234,16069346:25785795,10208465,0 -(1,6421:6797234,6686635:25785795,825754,196608 -(1,6420:6797234,6686635:0,825754,196608 -r1,6515:7890375,6686635:1093141,1022362,196608 -k1,6420:6797234,6686635:-1093141 -) -(1,6420:6797234,6686635:1093141,825754,196608 -) -k1,6420:8108862,6686635:218487 -k1,6420:9426791,6686635:327680 -k1,6420:11279091,6686635:218487 -k1,6420:12312846,6686635:218487 -k1,6420:13701805,6686635:218486 -k1,6420:15991230,6686635:218487 -k1,6420:17661339,6686635:218487 -k1,6420:18539118,6686635:218487 -k1,6420:19776690,6686635:218487 -k1,6420:23511839,6686635:218487 -k1,6420:25598756,6686635:218486 -k1,6420:26468671,6686635:218487 -k1,6420:29024827,6686635:218487 -k1,6420:31243473,6686635:218487 -k1,6421:32583029,6686635:0 -) -(1,6421:6797234,7528123:25785795,513147,134348 -k1,6420:8425148,7528123:216924 -k1,6420:9627734,7528123:216925 -k1,6420:11442425,7528123:216924 -k1,6420:13928205,7528123:216924 -k1,6420:15693746,7528123:216925 -k1,6420:17591013,7528123:216924 -k1,6420:18999382,7528123:216924 -k1,6420:19875598,7528123:216924 -k1,6420:21977994,7528123:216925 -k1,6420:23977497,7528123:216924 -k1,6420:25646043,7528123:216924 -k1,6420:29049328,7528123:216925 -k1,6420:30398714,7528123:216924 -k1,6420:32583029,7528123:0 -) -(1,6421:6797234,8369611:25785795,505283,126483 -k1,6420:8245753,8369611:194815 -k1,6420:9777502,8369611:194815 -k1,6420:11064802,8369611:194815 -k1,6420:13699522,8369611:194815 -k1,6420:14577222,8369611:194815 -k1,6420:17103153,8369611:194815 -k1,6420:18727964,8369611:194815 -k1,6420:19574207,8369611:194815 -(1,6420:19574207,8369611:0,452978,115847 -r1,6515:22042744,8369611:2468537,568825,115847 -k1,6420:19574207,8369611:-2468537 -) -(1,6420:19574207,8369611:2468537,452978,115847 -k1,6420:19574207,8369611:3277 -h1,6420:22039467,8369611:0,411205,112570 -) -k1,6420:22411229,8369611:194815 -k1,6420:23288929,8369611:194815 -k1,6420:24913740,8369611:194815 -k1,6420:25759983,8369611:194815 -(1,6420:25759983,8369611:0,452978,115847 -r1,6515:27525096,8369611:1765113,568825,115847 -k1,6420:25759983,8369611:-1765113 -) -(1,6420:25759983,8369611:1765113,452978,115847 -k1,6420:25759983,8369611:3277 -h1,6420:27521819,8369611:0,411205,112570 -) -k1,6420:27719911,8369611:194815 -k1,6420:28566154,8369611:194815 -k1,6420:31563944,8369611:194815 -k1,6420:32583029,8369611:0 -) -(1,6421:6797234,9211099:25785795,513147,134348 -g1,6420:9927888,9211099 -g1,6420:10786409,9211099 -g1,6420:12004723,9211099 -g1,6420:14966295,9211099 -k1,6421:32583029,9211099:15153236 -g1,6421:32583029,9211099 -) -v1,6424:6797234,10401565:0,393216,0 -(1,6435:6797234,15348450:25785795,5340101,196608 -g1,6435:6797234,15348450 -g1,6435:6797234,15348450 -g1,6435:6600626,15348450 -(1,6435:6600626,15348450:0,5340101,196608 -r1,6515:32779637,15348450:26179011,5536709,196608 -k1,6435:6600625,15348450:-26179012 -) -(1,6435:6600626,15348450:26179011,5340101,196608 -[1,6435:6797234,15348450:25785795,5143493,0 -(1,6426:6797234,10609183:25785795,404226,82312 -(1,6425:6797234,10609183:0,0,0 -g1,6425:6797234,10609183 -g1,6425:6797234,10609183 -g1,6425:6469554,10609183 -(1,6425:6469554,10609183:0,0,0 -) -g1,6425:6797234,10609183 -) -g1,6426:10590982,10609183 -g1,6426:11539420,10609183 -g1,6426:13752441,10609183 -g1,6426:14384733,10609183 -g1,6426:17546191,10609183 -g1,6426:19443066,10609183 -g1,6426:21972232,10609183 -g1,6426:22604524,10609183 -g1,6426:23236816,10609183 -g1,6426:26398274,10609183 -h1,6426:28295148,10609183:0,0,0 -k1,6426:32583029,10609183:4287881 -g1,6426:32583029,10609183 -) -(1,6427:6797234,11275361:25785795,404226,76021 -h1,6427:6797234,11275361:0,0,0 -k1,6427:6797234,11275361:0 -h1,6427:11855565,11275361:0,0,0 -k1,6427:32583029,11275361:20727464 -g1,6427:32583029,11275361 -) -(1,6428:6797234,11941539:25785795,404226,76021 -h1,6428:6797234,11941539:0,0,0 -h1,6428:11855566,11941539:0,0,0 -k1,6428:32583030,11941539:20727464 -g1,6428:32583030,11941539 -) -(1,6429:6797234,12607717:25785795,404226,76021 -h1,6429:6797234,12607717:0,0,0 -h1,6429:11223274,12607717:0,0,0 -k1,6429:32583030,12607717:21359756 -g1,6429:32583030,12607717 -) -(1,6430:6797234,13273895:25785795,404226,76021 -h1,6430:6797234,13273895:0,0,0 -h1,6430:12804003,13273895:0,0,0 -k1,6430:32583029,13273895:19779026 -g1,6430:32583029,13273895 -) -(1,6431:6797234,13940073:25785795,404226,76021 -h1,6431:6797234,13940073:0,0,0 -h1,6431:13436294,13940073:0,0,0 -k1,6431:32583030,13940073:19146736 -g1,6431:32583030,13940073 -) -(1,6432:6797234,14606251:25785795,404226,76021 -h1,6432:6797234,14606251:0,0,0 -h1,6432:11223274,14606251:0,0,0 -k1,6432:32583030,14606251:21359756 -g1,6432:32583030,14606251 -) -(1,6433:6797234,15272429:25785795,404226,76021 -h1,6433:6797234,15272429:0,0,0 -h1,6433:12804002,15272429:0,0,0 -k1,6433:32583030,15272429:19779028 -g1,6433:32583030,15272429 -) -] -) -g1,6435:32583029,15348450 -g1,6435:6797234,15348450 -g1,6435:6797234,15348450 -g1,6435:32583029,15348450 -g1,6435:32583029,15348450 -) -h1,6435:6797234,15545058:0,0,0 -] -g1,6438:32583029,16069346 -) -h1,6438:6630773,16069346:0,0,0 -v1,6440:6630773,17352396:0,393216,0 -(1,6458:6630773,24878771:25952256,7919591,0 -g1,6458:6630773,24878771 -g1,6458:6303093,24878771 -r1,6515:6401397,24878771:98304,7919591,0 -g1,6458:6600626,24878771 -g1,6458:6797234,24878771 -[1,6458:6797234,24878771:25785795,7919591,0 -(1,6442:6797234,17714469:25785795,755289,196608 -(1,6440:6797234,17714469:0,755289,196608 -r1,6515:8134168,17714469:1336934,951897,196608 -k1,6440:6797234,17714469:-1336934 -) -(1,6440:6797234,17714469:1336934,755289,196608 -) -k1,6440:8339623,17714469:205455 -k1,6440:8667303,17714469:327680 -k1,6440:8667303,17714469:0 -k1,6441:10655994,17714469:205456 -k1,6441:13180768,17714469:205455 -k1,6441:14780174,17714469:205455 -k1,6441:16521793,17714469:205455 -k1,6441:18224747,17714469:205456 -k1,6441:18888299,17714469:205455 -k1,6441:19625251,17714469:205455 -k1,6441:23278556,17714469:205456 -k1,6441:25461232,17714469:205455 -k1,6441:26318115,17714469:205455 -k1,6441:28007960,17714469:205455 -k1,6441:29232501,17714469:205456 -k1,6441:31923737,17714469:205455 -k1,6441:32583029,17714469:0 -) -(1,6442:6797234,18555957:25785795,513147,134348 -k1,6441:8854760,18555957:265116 -k1,6441:9779169,18555957:265117 -k1,6441:12383920,18555957:265116 -k1,6441:15427764,18555957:265117 -k1,6441:16454408,18555957:265116 -(1,6441:16454408,18555957:0,452978,115847 -r1,6515:18219521,18555957:1765113,568825,115847 -k1,6441:16454408,18555957:-1765113 -) -(1,6441:16454408,18555957:1765113,452978,115847 -k1,6441:16454408,18555957:3277 -h1,6441:18216244,18555957:0,411205,112570 -) -k1,6441:18484638,18555957:265117 -k1,6441:19511282,18555957:265116 -k1,6441:21844715,18555957:265117 -k1,6441:22769123,18555957:265116 -k1,6441:23390100,18555957:265117 -(1,6441:23390100,18555957:0,452978,115847 -r1,6515:25858637,18555957:2468537,568825,115847 -k1,6441:23390100,18555957:-2468537 -) -(1,6441:23390100,18555957:2468537,452978,115847 -k1,6441:23390100,18555957:3277 -h1,6441:25855360,18555957:0,411205,112570 -) -k1,6441:26123753,18555957:265116 -k1,6441:29461198,18555957:265117 -k1,6441:31931601,18555957:265116 -k1,6441:32583029,18555957:0 -) -(1,6442:6797234,19397445:25785795,452978,126483 -g1,6441:10277195,19397445 -(1,6441:10277195,19397445:0,452978,115847 -r1,6515:13800867,19397445:3523672,568825,115847 -k1,6441:10277195,19397445:-3523672 -) -(1,6441:10277195,19397445:3523672,452978,115847 -k1,6441:10277195,19397445:3277 -h1,6441:13797590,19397445:0,411205,112570 -) -k1,6442:32583029,19397445:18608492 -g1,6442:32583029,19397445 -) -v1,6444:6797234,20587911:0,393216,0 -(1,6455:6797234,24157875:25785795,3963180,196608 -g1,6455:6797234,24157875 -g1,6455:6797234,24157875 -g1,6455:6600626,24157875 -(1,6455:6600626,24157875:0,3963180,196608 -r1,6515:32779637,24157875:26179011,4159788,196608 -k1,6455:6600625,24157875:-26179012 -) -(1,6455:6600626,24157875:26179011,3963180,196608 -[1,6455:6797234,24157875:25785795,3766572,0 -(1,6446:6797234,20795529:25785795,404226,82312 -(1,6445:6797234,20795529:0,0,0 -g1,6445:6797234,20795529 -g1,6445:6797234,20795529 -g1,6445:6469554,20795529 -(1,6445:6469554,20795529:0,0,0 -) -g1,6445:6797234,20795529 -) -k1,6446:6797234,20795529:0 -g1,6446:12171711,20795529 -g1,6446:15333168,20795529 -g1,6446:15965460,20795529 -h1,6446:16597752,20795529:0,0,0 -k1,6446:32583029,20795529:15985277 -g1,6446:32583029,20795529 -) -(1,6454:6797234,21461707:25785795,410518,6290 -(1,6448:6797234,21461707:0,0,0 -g1,6448:6797234,21461707 -g1,6448:6797234,21461707 -g1,6448:6469554,21461707 -(1,6448:6469554,21461707:0,0,0 -) -g1,6448:6797234,21461707 -) -g1,6454:7745671,21461707 -g1,6454:9326400,21461707 -g1,6454:10274837,21461707 -h1,6454:10590983,21461707:0,0,0 -k1,6454:32583029,21461707:21992046 -g1,6454:32583029,21461707 -) -(1,6454:6797234,22127885:25785795,410518,31456 -h1,6454:6797234,22127885:0,0,0 -g1,6454:7745671,22127885 -g1,6454:8061817,22127885 -g1,6454:8694109,22127885 -g1,6454:10907129,22127885 -g1,6454:11855566,22127885 -h1,6454:12171712,22127885:0,0,0 -k1,6454:32583028,22127885:20411316 -g1,6454:32583028,22127885 -) -(1,6454:6797234,22794063:25785795,410518,31456 -h1,6454:6797234,22794063:0,0,0 -g1,6454:7745671,22794063 -g1,6454:8061817,22794063 -g1,6454:8694109,22794063 -g1,6454:10907129,22794063 -g1,6454:11855566,22794063 -h1,6454:12171712,22794063:0,0,0 -k1,6454:32583028,22794063:20411316 -g1,6454:32583028,22794063 -) -(1,6454:6797234,23460241:25785795,410518,76021 -h1,6454:6797234,23460241:0,0,0 -g1,6454:7745671,23460241 -g1,6454:8061817,23460241 -g1,6454:8694109,23460241 -g1,6454:9642546,23460241 -g1,6454:10907129,23460241 -g1,6454:12804003,23460241 -g1,6454:13436295,23460241 -g1,6454:14068587,23460241 -h1,6454:14384733,23460241:0,0,0 -k1,6454:32583029,23460241:18198296 -g1,6454:32583029,23460241 -) -(1,6454:6797234,24126419:25785795,410518,31456 -h1,6454:6797234,24126419:0,0,0 -g1,6454:7745671,24126419 -g1,6454:8061817,24126419 -g1,6454:8694109,24126419 -g1,6454:9642546,24126419 -g1,6454:10907129,24126419 -h1,6454:12171712,24126419:0,0,0 -k1,6454:32583028,24126419:20411316 -g1,6454:32583028,24126419 -) -] -) -g1,6455:32583029,24157875 -g1,6455:6797234,24157875 -g1,6455:6797234,24157875 -g1,6455:32583029,24157875 -g1,6455:32583029,24157875 -) -h1,6455:6797234,24354483:0,0,0 -] -g1,6458:32583029,24878771 -) -h1,6458:6630773,24878771:0,0,0 -(1,6461:6630773,26161822:25952256,513147,102891 -h1,6460:6630773,26161822:983040,0,0 -k1,6460:11320764,26161822:234198 -k1,6460:12423313,26161822:234197 -k1,6460:14187777,26161822:234198 -k1,6460:15073403,26161822:234198 -k1,6460:17373950,26161822:234197 -k1,6460:17964008,26161822:234198 -k1,6460:19365401,26161822:234197 -k1,6460:20282484,26161822:234198 -k1,6460:20872542,26161822:234198 -k1,6460:23224207,26161822:234197 -k1,6460:26389830,26161822:234198 -k1,6460:27283320,26161822:234198 -k1,6460:28841344,26161822:234197 -k1,6460:31085531,26161822:234198 -k1,6460:32583029,26161822:0 -) -(1,6461:6630773,27003310:25952256,505283,126483 -g1,6460:9619870,27003310 -(1,6460:9619870,27003310:0,452978,115847 -r1,6515:12440119,27003310:2820249,568825,115847 -k1,6460:9619870,27003310:-2820249 -) -(1,6460:9619870,27003310:2820249,452978,115847 -k1,6460:9619870,27003310:3277 -h1,6460:12436842,27003310:0,411205,112570 -) -g1,6460:12639348,27003310 -g1,6460:13370074,27003310 -g1,6460:15117919,27003310 -g1,6460:17497531,27003310 -g1,6460:18444526,27003310 -g1,6460:21488673,27003310 -g1,6460:23201128,27003310 -g1,6460:24016395,27003310 -g1,6460:25709190,27003310 -k1,6461:32583029,27003310:5002786 -g1,6461:32583029,27003310 -) -(1,6463:6630773,27844798:25952256,513147,126483 -h1,6462:6630773,27844798:983040,0,0 -k1,6462:8994738,27844798:184238 -k1,6462:10172503,27844798:184239 -(1,6462:10172503,27844798:0,452978,115847 -r1,6515:14047887,27844798:3875384,568825,115847 -k1,6462:10172503,27844798:-3875384 -) -(1,6462:10172503,27844798:3875384,452978,115847 -k1,6462:10172503,27844798:3277 -h1,6462:14044610,27844798:0,411205,112570 -) -k1,6462:14232125,27844798:184238 -k1,6462:14947861,27844798:184239 -k1,6462:15487959,27844798:184238 -k1,6462:17789666,27844798:184239 -k1,6462:20219823,27844798:184238 -k1,6462:21063354,27844798:184239 -k1,6462:22745090,27844798:184238 -k1,6462:24001498,27844798:184239 -k1,6462:24951852,27844798:184238 -k1,6462:26155176,27844798:184239 -k1,6462:29629321,27844798:184238 -k1,6462:32583029,27844798:0 -) -(1,6463:6630773,28686286:25952256,513147,134348 -k1,6462:7892694,28686286:270361 -k1,6462:11137734,28686286:270361 -k1,6462:13777877,28686286:270361 -k1,6462:14676073,28686286:270361 -k1,6462:16648404,28686286:270361 -k1,6462:19047374,28686286:270361 -k1,6462:22007334,28686286:270362 -k1,6462:24185448,28686286:270361 -k1,6462:25447369,28686286:270361 -k1,6462:26483846,28686286:270361 -k1,6462:27413499,28686286:270361 -k1,6462:28702945,28686286:270361 -k1,6462:30626779,28686286:270361 -k1,6462:32583029,28686286:0 -) -(1,6463:6630773,29527774:25952256,513147,134348 -g1,6462:9501905,29527774 -g1,6462:10720219,29527774 -g1,6462:11912974,29527774 -g1,6462:12763631,29527774 -g1,6462:13710626,29527774 -g1,6462:17344597,29527774 -g1,6462:18811292,29527774 -g1,6462:19366381,29527774 -g1,6462:22540289,29527774 -k1,6463:32583029,29527774:7891193 -g1,6463:32583029,29527774 -) -v1,6465:6630773,30635514:0,393216,0 -(1,6511:6630773,45510161:25952256,15267863,196608 -g1,6511:6630773,45510161 -g1,6511:6630773,45510161 -g1,6511:6434165,45510161 -(1,6511:6434165,45510161:0,15267863,196608 -r1,6515:32779637,45510161:26345472,15464471,196608 -k1,6511:6434165,45510161:-26345472 -) -(1,6511:6434165,45510161:26345472,15267863,196608 -[1,6511:6630773,45510161:25952256,15071255,0 -(1,6467:6630773,30843132:25952256,404226,82312 -(1,6466:6630773,30843132:0,0,0 -g1,6466:6630773,30843132 -g1,6466:6630773,30843132 -g1,6466:6303093,30843132 -(1,6466:6303093,30843132:0,0,0 -) -g1,6466:6630773,30843132 -) -g1,6467:10424521,30843132 -g1,6467:11372959,30843132 -g1,6467:13585980,30843132 -g1,6467:14218272,30843132 -g1,6467:17379730,30843132 -g1,6467:19276605,30843132 -g1,6467:21805771,30843132 -g1,6467:22438063,30843132 -g1,6467:23070355,30843132 -g1,6467:26231813,30843132 -h1,6467:28128687,30843132:0,0,0 -k1,6467:32583029,30843132:4454342 -g1,6467:32583029,30843132 -) -(1,6468:6630773,31509310:25952256,404226,76021 -h1,6468:6630773,31509310:0,0,0 -g1,6468:8527647,31509310 -g1,6468:9476085,31509310 -k1,6468:9476085,31509310:0 -h1,6468:15482853,31509310:0,0,0 -k1,6468:32583029,31509310:17100176 -g1,6468:32583029,31509310 -) -(1,6469:6630773,32175488:25952256,284164,6290 -h1,6469:6630773,32175488:0,0,0 -h1,6469:8211501,32175488:0,0,0 -k1,6469:32583029,32175488:24371528 -g1,6469:32583029,32175488 -) -(1,6474:6630773,32841666:25952256,388497,9436 -(1,6471:6630773,32841666:0,0,0 -g1,6471:6630773,32841666 -g1,6471:6630773,32841666 -g1,6471:6303093,32841666 -(1,6471:6303093,32841666:0,0,0 -) -g1,6471:6630773,32841666 -) -g1,6474:7579210,32841666 -g1,6474:7895356,32841666 -g1,6474:8211502,32841666 -g1,6474:8527648,32841666 -g1,6474:9476085,32841666 -g1,6474:9792231,32841666 -g1,6474:10108377,32841666 -g1,6474:10424523,32841666 -g1,6474:11372960,32841666 -g1,6474:11689106,32841666 -g1,6474:12005252,32841666 -g1,6474:12321398,32841666 -g1,6474:13269835,32841666 -g1,6474:13585981,32841666 -g1,6474:13902127,32841666 -g1,6474:14218273,32841666 -g1,6474:15166710,32841666 -g1,6474:15482856,32841666 -g1,6474:15799002,32841666 -g1,6474:16115148,32841666 -h1,6474:16747439,32841666:0,0,0 -k1,6474:32583029,32841666:15835590 -g1,6474:32583029,32841666 -) -(1,6474:6630773,33507844:25952256,404226,6290 -h1,6474:6630773,33507844:0,0,0 -g1,6474:7579210,33507844 -g1,6474:7895356,33507844 -g1,6474:8211502,33507844 -g1,6474:9476085,33507844 -g1,6474:9792231,33507844 -g1,6474:11372960,33507844 -g1,6474:13269834,33507844 -g1,6474:13585980,33507844 -g1,6474:13902126,33507844 -g1,6474:15166709,33507844 -g1,6474:15482855,33507844 -h1,6474:16747438,33507844:0,0,0 -k1,6474:32583029,33507844:15835591 -g1,6474:32583029,33507844 -) -(1,6476:6630773,34829382:25952256,404226,76021 -(1,6475:6630773,34829382:0,0,0 -g1,6475:6630773,34829382 -g1,6475:6630773,34829382 -g1,6475:6303093,34829382 -(1,6475:6303093,34829382:0,0,0 -) -g1,6475:6630773,34829382 -) -k1,6476:6630773,34829382:0 -h1,6476:12953687,34829382:0,0,0 -k1,6476:32583029,34829382:19629342 -g1,6476:32583029,34829382 -) -(1,6480:6630773,35495560:25952256,404226,76021 -(1,6478:6630773,35495560:0,0,0 -g1,6478:6630773,35495560 -g1,6478:6630773,35495560 -g1,6478:6303093,35495560 -(1,6478:6303093,35495560:0,0,0 -) -g1,6478:6630773,35495560 -) -g1,6480:7579210,35495560 -g1,6480:8843793,35495560 -h1,6480:10108376,35495560:0,0,0 -k1,6480:32583028,35495560:22474652 -g1,6480:32583028,35495560 -) -(1,6482:6630773,36817098:25952256,404226,76021 -(1,6481:6630773,36817098:0,0,0 -g1,6481:6630773,36817098 -g1,6481:6630773,36817098 -g1,6481:6303093,36817098 -(1,6481:6303093,36817098:0,0,0 -) -g1,6481:6630773,36817098 -) -k1,6482:6630773,36817098:0 -h1,6482:11056813,36817098:0,0,0 -k1,6482:32583029,36817098:21526216 -g1,6482:32583029,36817098 -) -(1,6486:6630773,37483276:25952256,404226,76021 -(1,6484:6630773,37483276:0,0,0 -g1,6484:6630773,37483276 -g1,6484:6630773,37483276 -g1,6484:6303093,37483276 -(1,6484:6303093,37483276:0,0,0 -) -g1,6484:6630773,37483276 -) -g1,6486:7579210,37483276 -g1,6486:8843793,37483276 -h1,6486:10424521,37483276:0,0,0 -k1,6486:32583029,37483276:22158508 -g1,6486:32583029,37483276 -) -(1,6488:6630773,38804814:25952256,404226,76021 -(1,6487:6630773,38804814:0,0,0 -g1,6487:6630773,38804814 -g1,6487:6630773,38804814 -g1,6487:6303093,38804814 -(1,6487:6303093,38804814:0,0,0 -) -g1,6487:6630773,38804814 -) -k1,6488:6630773,38804814:0 -h1,6488:12005250,38804814:0,0,0 -k1,6488:32583030,38804814:20577780 -g1,6488:32583030,38804814 -) -(1,6492:6630773,39470992:25952256,404226,76021 -(1,6490:6630773,39470992:0,0,0 -g1,6490:6630773,39470992 -g1,6490:6630773,39470992 -g1,6490:6303093,39470992 -(1,6490:6303093,39470992:0,0,0 -) -g1,6490:6630773,39470992 -) -g1,6492:7579210,39470992 -g1,6492:8843793,39470992 -h1,6492:10740667,39470992:0,0,0 -k1,6492:32583029,39470992:21842362 -g1,6492:32583029,39470992 -) -(1,6494:6630773,40792530:25952256,404226,76021 -(1,6493:6630773,40792530:0,0,0 -g1,6493:6630773,40792530 -g1,6493:6630773,40792530 -g1,6493:6303093,40792530 -(1,6493:6303093,40792530:0,0,0 -) -g1,6493:6630773,40792530 -) -k1,6494:6630773,40792530:0 -h1,6494:10108376,40792530:0,0,0 -k1,6494:32583028,40792530:22474652 -g1,6494:32583028,40792530 -) -(1,6498:6630773,41458708:25952256,404226,76021 -(1,6496:6630773,41458708:0,0,0 -g1,6496:6630773,41458708 -g1,6496:6630773,41458708 -g1,6496:6303093,41458708 -(1,6496:6303093,41458708:0,0,0 -) -g1,6496:6630773,41458708 -) -g1,6498:7579210,41458708 -g1,6498:8843793,41458708 -h1,6498:12321395,41458708:0,0,0 -k1,6498:32583029,41458708:20261634 -g1,6498:32583029,41458708 -) -(1,6500:6630773,42780246:25952256,404226,76021 -(1,6499:6630773,42780246:0,0,0 -g1,6499:6630773,42780246 -g1,6499:6630773,42780246 -g1,6499:6303093,42780246 -(1,6499:6303093,42780246:0,0,0 -) -g1,6499:6630773,42780246 -) -k1,6500:6630773,42780246:0 -h1,6500:12321395,42780246:0,0,0 -k1,6500:32583029,42780246:20261634 -g1,6500:32583029,42780246 -) -(1,6504:6630773,43446424:25952256,404226,76021 -(1,6502:6630773,43446424:0,0,0 -g1,6502:6630773,43446424 -g1,6502:6630773,43446424 -g1,6502:6303093,43446424 -(1,6502:6303093,43446424:0,0,0 -) -g1,6502:6630773,43446424 -) -g1,6504:7579210,43446424 -g1,6504:8843793,43446424 -g1,6504:10108376,43446424 -h1,6504:11056813,43446424:0,0,0 -k1,6504:32583029,43446424:21526216 -g1,6504:32583029,43446424 +g1,5433:22179835,14151182 ) -(1,6506:6630773,44767962:25952256,404226,76021 -(1,6505:6630773,44767962:0,0,0 -g1,6505:6630773,44767962 -g1,6505:6630773,44767962 -g1,6505:6303093,44767962 -(1,6505:6303093,44767962:0,0,0 ) -g1,6505:6630773,44767962 +g1,5433:22179835,14151182 +(1,5433:22179835,14151182:924057,924057,924057 +g1,5433:23103892,14151182 +g1,5433:23103892,14151182 ) -k1,6506:6630773,44767962:0 -h1,6506:10424521,44767962:0,0,0 -k1,6506:32583029,44767962:22158508 -g1,6506:32583029,44767962 +g1,5433:23103892,14151182 +(1,5433:23103892,14151182:910950,924057,924057 +g1,5433:23103892,14151182 +g1,5433:24014842,14151182 +(1,5433:24014842,14151182:0,924057,924057 +(1,5433:24014842,14151182:0,0,0 +(1,5433:24014842,14151182:0,0,0 +g1,5433:24014842,14151182 +g1,5433:24014842,14151182 +g1,5433:24014842,14151182 +g1,5433:24014842,14151182 +g1,5433:24014842,14151182 +(1,5433:24014842,14151182:0,0,0 +(1,5433:24014842,14151182:0,281018,137888 +(1,5433:24014842,14151182:0,281018,137888 +$1,5433:24014842,14151182 +h1,5433:24014842,14151182:0,281018,137888 +$1,5433:24014842,14151182 ) -(1,6510:6630773,45434140:25952256,404226,76021 -(1,6508:6630773,45434140:0,0,0 -g1,6508:6630773,45434140 -g1,6508:6630773,45434140 -g1,6508:6303093,45434140 -(1,6508:6303093,45434140:0,0,0 +g1,5433:24014842,14151182 +) +) +g1,5433:24014842,14151182 +g1,5433:24014842,14151182 +) +) +g1,5433:24014842,14151182 +) +) +g1,5433:24014842,14151182 +(1,5433:24014842,14151182:924057,924057,924057 +g1,5433:24938899,14151182 +g1,5433:24938899,14151182 +) +g1,5433:24938899,14151182 +(1,5433:24938899,14151182:910950,924057,924057 +g1,5433:24938899,14151182 +g1,5433:25849849,14151182 +(1,5433:25849849,14151182:0,924057,924057 +(1,5433:25849849,14151182:0,0,0 +(1,5433:25849849,14151182:0,0,0 +g1,5433:25849849,14151182 +g1,5433:25849849,14151182 +g1,5433:25849849,14151182 +g1,5433:25849849,14151182 +g1,5433:25849849,14151182 +(1,5433:25849849,14151182:0,0,0 +(1,5433:25849849,14151182:1455946,281018,142607 +(1,5433:25849849,14151182:1455946,281018,142607 +$1,5433:25849849,14151182 +h1,5433:25849849,14151182:0,281018,137888 +(1,5433:26219996,14232054:1085799,303170,61735 +) +$1,5433:27305795,14151182 +) +g1,5433:27305795,14151182 +) +) +g1,5433:25849849,14151182 +g1,5433:25849849,14151182 +) +) +g1,5433:25849849,14151182 +) +) +g1,5433:25849849,14151182 +(1,5434:25849849,14151182:924057,924057,924057 +g1,5434:26773906,14151182 +g1,5434:26773906,14151182 +) +g1,5434:26773906,14151182 +) +] +) +) +g1,5434:17585764,14151182 +g1,5434:17585764,14151182 +) +) +g1,5434:17585764,14151182 +g1,5435:17585764,14151182 +(1,5436:17585764,14151182:0,0,0 +(1,5436:17585764,14151182:0,0,0 +g1,5436:17585764,14151182 +g1,5436:17585764,14151182 +g1,5436:17585764,14151182 +g1,5436:17585764,14151182 +g1,5436:17585764,14151182 +(1,5436:17585764,14151182:0,0,0 +(1,5436:17585764,14151182:6258018,404226,107478 +(1,5436:17585764,14151182:6258018,404226,107478 +g1,5436:19503610,14151182 +g1,5436:20120697,14151182 +$1,5436:20120697,14151182 +g1,5436:20596648,14151182 +g1,5436:21196856,14151182 +$1,5436:21515623,14151182 +g1,5436:21675007,14151182 +g1,5436:22355533,14151182 +$1,5436:22355533,14151182 +g1,5436:22831484,14151182 +g1,5436:23431692,14151182 +$1,5436:23843782,14151182 +) +g1,5436:23843782,14151182 +) +) +g1,5436:17585764,14151182 +g1,5436:17585764,14151182 +) +) +g1,5436:17585764,14151182 +g1,5438:17585764,14151182 +(1,5438:17585764,14151182:0,0,0 +(1,5438:17585764,14151182:0,0,0 +g1,5438:17585764,14151182 +g1,5438:17585764,14151182 +g1,5438:17585764,14151182 +g1,5438:17585764,14151182 +g1,5438:17585764,14151182 +(1,5438:17585764,14151182:0,0,0 +(1,5438:17585764,14151182:6342431,395837,110625 +(1,5438:17585764,14151182:6342431,395837,110625 +g1,5438:19503610,14151182 +g1,5438:20120697,14151182 +$1,5438:20120697,14151182 +g1,5438:20556803,14151182 +g1,5438:21157011,14151182 +$1,5438:21475778,14151182 +g1,5438:21635162,14151182 +g1,5438:22315688,14151182 +$1,5438:22315688,14151182 +g1,5438:22751794,14151182 +g1,5438:23352002,14151182 +$1,5438:23928195,14151182 +) +g1,5438:23928195,14151182 +) +) +g1,5438:17585764,14151182 +g1,5438:17585764,14151182 +) +) +g1,5438:17585764,14151182 +g1,5440:17585764,14151182 +(1,5440:17585764,14151182:0,0,0 +(1,5440:17585764,14151182:0,0,0 +g1,5440:17585764,14151182 +g1,5440:17585764,14151182 +g1,5440:17585764,14151182 +g1,5440:17585764,14151182 +g1,5440:17585764,14151182 +(1,5440:17585764,14151182:0,0,0 +(1,5440:17585764,14151182:5849599,404226,107478 +(1,5440:17585764,14151182:5849599,404226,107478 +g1,5440:19503610,14151182 +g1,5440:20120697,14151182 +$1,5440:20120697,14151182 +g1,5440:20495461,14151182 +g1,5440:21095669,14151182 +$1,5440:21414436,14151182 +g1,5440:21573820,14151182 +g1,5440:22254346,14151182 +$1,5440:22254346,14151182 +g1,5440:22629110,14151182 +g1,5440:23229318,14151182 +$1,5440:23435363,14151182 +) +g1,5440:23435363,14151182 +) +) +g1,5440:17585764,14151182 +g1,5440:17585764,14151182 +) +) +g1,5440:17585764,14151182 +g1,5441:17585764,14151182 +g1,5441:17585764,14151182 +) +g1,5441:17585764,14151182 +) +) +g1,5443:27691475,20209377 +k1,5443:32583029,20209377:4891554 +) +(1,5446:6630773,21729817:25952256,513147,134348 +h1,5445:6630773,21729817:983040,0,0 +k1,5445:9614058,21729817:217010 +k1,5445:11921011,21729817:217010 +k1,5445:13157106,21729817:217010 +k1,5445:17080832,21729817:217010 +(1,5445:17080832,21729817:0,452978,115847 +r1,5487:19549369,21729817:2468537,568825,115847 +k1,5445:17080832,21729817:-2468537 +) +(1,5445:17080832,21729817:2468537,452978,115847 +k1,5445:17080832,21729817:3277 +h1,5445:19546092,21729817:0,411205,112570 +) +k1,5445:19940049,21729817:217010 +k1,5445:23832318,21729817:217010 +k1,5445:25040888,21729817:217010 +k1,5445:28089709,21729817:217010 +k1,5445:29700670,21729817:217010 +k1,5445:30936765,21729817:217010 +k1,5446:32583029,21729817:0 +) +(1,5446:6630773,22594897:25952256,505283,126483 +g1,5445:8469057,22594897 +g1,5445:10873573,22594897 +g1,5445:11724230,22594897 +g1,5445:15204191,22594897 +(1,5445:15204191,22594897:0,452978,115847 +r1,5487:16265880,22594897:1061689,568825,115847 +k1,5445:15204191,22594897:-1061689 +) +(1,5445:15204191,22594897:1061689,452978,115847 +k1,5445:15204191,22594897:3277 +h1,5445:16262603,22594897:0,411205,112570 +) +k1,5446:32583029,22594897:16143479 +g1,5446:32583029,22594897 +) +v1,5448:6630773,23279752:0,393216,0 +(1,5481:6630773,39732286:25952256,16845750,196608 +g1,5481:6630773,39732286 +g1,5481:6630773,39732286 +g1,5481:6434165,39732286 +(1,5481:6434165,39732286:0,16845750,196608 +r1,5487:32779637,39732286:26345472,17042358,196608 +k1,5481:6434165,39732286:-26345472 +) +(1,5481:6434165,39732286:26345472,16845750,196608 +[1,5481:6630773,39732286:25952256,16649142,0 +(1,5450:6630773,23507583:25952256,424439,106246 +(1,5449:6630773,23507583:0,0,0 +g1,5449:6630773,23507583 +g1,5449:6630773,23507583 +g1,5449:6303093,23507583 +(1,5449:6303093,23507583:0,0,0 +) +g1,5449:6630773,23507583 +) +g1,5450:8290543,23507583 +g1,5450:9286405,23507583 +g1,5450:13269853,23507583 +g1,5450:14597669,23507583 +g1,5450:15261577,23507583 +g1,5450:16921347,23507583 +g1,5450:17917209,23507583 +h1,5450:18913071,23507583:0,0,0 +k1,5450:32583029,23507583:13669958 +g1,5450:32583029,23507583 +) +(1,5451:6630773,24192438:25952256,407923,106246 +h1,5451:6630773,24192438:0,0,0 +h1,5451:7958589,24192438:0,0,0 +k1,5451:32583029,24192438:24624440 +g1,5451:32583029,24192438 +) +(1,5474:6630773,25008365:25952256,407923,86428 +(1,5453:6630773,25008365:0,0,0 +g1,5453:6630773,25008365 +g1,5453:6630773,25008365 +g1,5453:6303093,25008365 +(1,5453:6303093,25008365:0,0,0 +) +g1,5453:6630773,25008365 +) +g1,5474:7626635,25008365 +g1,5474:8290543,25008365 +g1,5474:8954451,25008365 +h1,5474:9286405,25008365:0,0,0 +k1,5474:32583029,25008365:23296624 +g1,5474:32583029,25008365 +) +(1,5474:6630773,25693220:25952256,398014,0 +h1,5474:6630773,25693220:0,0,0 +h1,5474:7294681,25693220:0,0,0 +k1,5474:32583029,25693220:25288348 +g1,5474:32583029,25693220 +) +(1,5474:6630773,26378075:25952256,424439,86428 +h1,5474:6630773,26378075:0,0,0 +g1,5474:7626635,26378075 +g1,5474:7958589,26378075 +g1,5474:8290543,26378075 +g1,5474:8622497,26378075 +g1,5474:8954451,26378075 +g1,5474:9286405,26378075 +g1,5474:10946175,26378075 +g1,5474:12605945,26378075 +k1,5474:12605945,26378075:0 +h1,5474:13933761,26378075:0,0,0 +k1,5474:32583029,26378075:18649268 +g1,5474:32583029,26378075 +) +(1,5474:6630773,27062930:25952256,424439,86428 +h1,5474:6630773,27062930:0,0,0 +g1,5474:7626635,27062930 +g1,5474:9286405,27062930 +g1,5474:9618359,27062930 +g1,5474:9950313,27062930 +g1,5474:10282267,27062930 +g1,5474:10946175,27062930 +g1,5474:11278129,27062930 +g1,5474:11610083,27062930 +g1,5474:11942037,27062930 +g1,5474:12605945,27062930 +g1,5474:12937899,27062930 +g1,5474:13269853,27062930 +g1,5474:13601807,27062930 +h1,5474:13933761,27062930:0,0,0 +k1,5474:32583029,27062930:18649268 +g1,5474:32583029,27062930 +) +(1,5474:6630773,27747785:25952256,424439,86428 +h1,5474:6630773,27747785:0,0,0 +g1,5474:7626635,27747785 +g1,5474:9286405,27747785 +g1,5474:9618359,27747785 +g1,5474:9950313,27747785 +g1,5474:10282267,27747785 +g1,5474:10946175,27747785 +g1,5474:11278129,27747785 +g1,5474:11610083,27747785 +g1,5474:11942037,27747785 +g1,5474:12605945,27747785 +g1,5474:12937899,27747785 +g1,5474:13269853,27747785 +g1,5474:13601807,27747785 +h1,5474:13933761,27747785:0,0,0 +k1,5474:32583029,27747785:18649268 +g1,5474:32583029,27747785 +) +(1,5474:6630773,28432640:25952256,424439,86428 +h1,5474:6630773,28432640:0,0,0 +g1,5474:7626635,28432640 +g1,5474:9286405,28432640 +g1,5474:9618359,28432640 +g1,5474:9950313,28432640 +g1,5474:10282267,28432640 +g1,5474:10946175,28432640 +g1,5474:11278129,28432640 +g1,5474:11610083,28432640 +g1,5474:11942037,28432640 +g1,5474:12605945,28432640 +g1,5474:12937899,28432640 +g1,5474:13269853,28432640 +g1,5474:13601807,28432640 +h1,5474:13933761,28432640:0,0,0 +k1,5474:32583029,28432640:18649268 +g1,5474:32583029,28432640 +) +(1,5474:6630773,29117495:25952256,398014,0 +h1,5474:6630773,29117495:0,0,0 +h1,5474:7294681,29117495:0,0,0 +k1,5474:32583029,29117495:25288348 +g1,5474:32583029,29117495 +) +(1,5474:6630773,29802350:25952256,407923,86428 +h1,5474:6630773,29802350:0,0,0 +g1,5474:7626635,29802350 +g1,5474:8290543,29802350 +g1,5474:8954451,29802350 +h1,5474:9286405,29802350:0,0,0 +k1,5474:32583029,29802350:23296624 +g1,5474:32583029,29802350 +) +(1,5474:6630773,30487205:25952256,398014,0 +h1,5474:6630773,30487205:0,0,0 +h1,5474:7294681,30487205:0,0,0 +k1,5474:32583029,30487205:25288348 +g1,5474:32583029,30487205 +) +(1,5474:6630773,31172060:25952256,424439,86428 +h1,5474:6630773,31172060:0,0,0 +g1,5474:7626635,31172060 +g1,5474:7958589,31172060 +g1,5474:8290543,31172060 +g1,5474:8622497,31172060 +g1,5474:8954451,31172060 +g1,5474:9286405,31172060 +g1,5474:10946175,31172060 +g1,5474:12605945,31172060 +k1,5474:12605945,31172060:0 +h1,5474:13933761,31172060:0,0,0 +k1,5474:32583029,31172060:18649268 +g1,5474:32583029,31172060 +) +(1,5474:6630773,31856915:25952256,424439,86428 +h1,5474:6630773,31856915:0,0,0 +g1,5474:7626635,31856915 +g1,5474:9286405,31856915 +g1,5474:9618359,31856915 +g1,5474:9950313,31856915 +g1,5474:10946175,31856915 +g1,5474:11278129,31856915 +g1,5474:11610083,31856915 +g1,5474:12605945,31856915 +g1,5474:12937899,31856915 +g1,5474:13269853,31856915 +h1,5474:13933761,31856915:0,0,0 +k1,5474:32583029,31856915:18649268 +g1,5474:32583029,31856915 +) +(1,5474:6630773,32541770:25952256,424439,86428 +h1,5474:6630773,32541770:0,0,0 +g1,5474:7626635,32541770 +g1,5474:9286405,32541770 +g1,5474:9618359,32541770 +g1,5474:9950313,32541770 +g1,5474:10946175,32541770 +g1,5474:11278129,32541770 +g1,5474:11610083,32541770 +g1,5474:12605945,32541770 +g1,5474:12937899,32541770 +g1,5474:13269853,32541770 +h1,5474:13933761,32541770:0,0,0 +k1,5474:32583029,32541770:18649268 +g1,5474:32583029,32541770 +) +(1,5474:6630773,33226625:25952256,424439,86428 +h1,5474:6630773,33226625:0,0,0 +g1,5474:7626635,33226625 +g1,5474:9286405,33226625 +g1,5474:9618359,33226625 +g1,5474:9950313,33226625 +g1,5474:10946175,33226625 +g1,5474:11278129,33226625 +g1,5474:11610083,33226625 +g1,5474:12605945,33226625 +g1,5474:12937899,33226625 +g1,5474:13269853,33226625 +h1,5474:13933761,33226625:0,0,0 +k1,5474:32583029,33226625:18649268 +g1,5474:32583029,33226625 +) +(1,5474:6630773,33911480:25952256,398014,0 +h1,5474:6630773,33911480:0,0,0 +h1,5474:7294681,33911480:0,0,0 +k1,5474:32583029,33911480:25288348 +g1,5474:32583029,33911480 +) +(1,5474:6630773,34596335:25952256,407923,86428 +h1,5474:6630773,34596335:0,0,0 +g1,5474:7626635,34596335 +g1,5474:8290543,34596335 +g1,5474:8954451,34596335 +h1,5474:9286405,34596335:0,0,0 +k1,5474:32583029,34596335:23296624 +g1,5474:32583029,34596335 +) +(1,5474:6630773,35281190:25952256,398014,0 +h1,5474:6630773,35281190:0,0,0 +h1,5474:7294681,35281190:0,0,0 +k1,5474:32583029,35281190:25288348 +g1,5474:32583029,35281190 +) +(1,5474:6630773,35966045:25952256,424439,86428 +h1,5474:6630773,35966045:0,0,0 +g1,5474:7626635,35966045 +g1,5474:7958589,35966045 +g1,5474:8290543,35966045 +g1,5474:8622497,35966045 +g1,5474:8954451,35966045 +g1,5474:9286405,35966045 +g1,5474:10946175,35966045 +g1,5474:12605945,35966045 +k1,5474:12605945,35966045:0 +h1,5474:13933761,35966045:0,0,0 +k1,5474:32583029,35966045:18649268 +g1,5474:32583029,35966045 +) +(1,5474:6630773,36650900:25952256,424439,86428 +h1,5474:6630773,36650900:0,0,0 +g1,5474:7626635,36650900 +g1,5474:9286405,36650900 +g1,5474:9618359,36650900 +g1,5474:9950313,36650900 +g1,5474:10946175,36650900 +g1,5474:11278129,36650900 +g1,5474:11610083,36650900 +g1,5474:12605945,36650900 +g1,5474:12937899,36650900 +g1,5474:13269853,36650900 +h1,5474:13933761,36650900:0,0,0 +k1,5474:32583029,36650900:18649268 +g1,5474:32583029,36650900 +) +(1,5474:6630773,37335755:25952256,424439,86428 +h1,5474:6630773,37335755:0,0,0 +g1,5474:7626635,37335755 +g1,5474:9286405,37335755 +g1,5474:9618359,37335755 +g1,5474:9950313,37335755 +g1,5474:10946175,37335755 +g1,5474:11278129,37335755 +g1,5474:11610083,37335755 +g1,5474:12605945,37335755 +g1,5474:12937899,37335755 +g1,5474:13269853,37335755 +h1,5474:13933761,37335755:0,0,0 +k1,5474:32583029,37335755:18649268 +g1,5474:32583029,37335755 +) +(1,5474:6630773,38020610:25952256,424439,86428 +h1,5474:6630773,38020610:0,0,0 +g1,5474:7626635,38020610 +g1,5474:9286405,38020610 +g1,5474:9618359,38020610 +g1,5474:9950313,38020610 +g1,5474:10946175,38020610 +g1,5474:11278129,38020610 +g1,5474:11610083,38020610 +g1,5474:12605945,38020610 +g1,5474:12937899,38020610 +g1,5474:13269853,38020610 +h1,5474:13933761,38020610:0,0,0 +k1,5474:32583029,38020610:18649268 +g1,5474:32583029,38020610 +) +(1,5476:6630773,38836537:25952256,424439,106246 +(1,5475:6630773,38836537:0,0,0 +g1,5475:6630773,38836537 +g1,5475:6630773,38836537 +g1,5475:6303093,38836537 +(1,5475:6303093,38836537:0,0,0 +) +g1,5475:6630773,38836537 +) +k1,5476:6630773,38836537:0 +g1,5476:9286405,38836537 +g1,5476:10282267,38836537 +h1,5476:10946175,38836537:0,0,0 +k1,5476:32583029,38836537:21636854 +g1,5476:32583029,38836537 +) +(1,5480:6630773,39652464:25952256,424439,79822 +(1,5478:6630773,39652464:0,0,0 +g1,5478:6630773,39652464 +g1,5478:6630773,39652464 +g1,5478:6303093,39652464 +(1,5478:6303093,39652464:0,0,0 +) +g1,5478:6630773,39652464 +) +g1,5480:7626635,39652464 +g1,5480:8954451,39652464 +h1,5480:9618359,39652464:0,0,0 +k1,5480:32583029,39652464:22964670 +g1,5480:32583029,39652464 +) +] +) +g1,5481:32583029,39732286 +g1,5481:6630773,39732286 +g1,5481:6630773,39732286 +g1,5481:32583029,39732286 +g1,5481:32583029,39732286 +) +h1,5481:6630773,39928894:0,0,0 +(1,5485:6630773,40793974:25952256,513147,134348 +h1,5484:6630773,40793974:983040,0,0 +k1,5484:8535530,40793974:293882 +k1,5484:9848497,40793974:293882 +k1,5484:12113047,40793974:293882 +k1,5484:14435924,40793974:293882 +k1,5484:15748891,40793974:293882 +k1,5484:18056039,40793974:293882 +k1,5484:19009213,40793974:293882 +k1,5484:20322179,40793974:293881 +k1,5484:23377093,40793974:293882 +k1,5484:25648852,40793974:293882 +k1,5484:26474231,40793974:293882 +k1,5484:27787198,40793974:293882 +k1,5484:30610770,40793974:293882 +k1,5484:31563944,40793974:293882 +k1,5484:32583029,40793974:0 +) +(1,5485:6630773,41659054:25952256,615216,126483 +k1,5484:10714544,41659054:234842 +$1,5484:10714544,41659054 +k1,5484:11758609,41659054:247147 +k1,5484:12573954,41659054:247148 +k1,5484:13144096,41659054:171683 +k1,5484:13883976,41659054:171683 +k1,5484:14454118,41659054:171683 +k1,5484:15193998,41659054:171683 +k1,5484:15839605,41659054:247148 +k1,5484:16654950,41659054:247148 +(1,5484:17053409,41383773:311689,339935,8258 +) +$1,5484:17365098,41659054 +k1,5484:17773609,41659054:234841 +k1,5484:20120021,41659054:234842 +k1,5484:21346423,41659054:234842 +k1,5484:23931385,41659054:234841 +k1,5484:24782265,41659054:234842 +k1,5484:26938623,41659054:234842 +k1,5484:28567415,41659054:234841 +k1,5484:30550102,41659054:234842 +k1,5484:32583029,41659054:0 +) +(1,5485:6630773,42524134:25952256,505283,134348 +k1,5484:7981834,42524134:243503 +k1,5484:9416781,42524134:243502 +k1,5484:11701075,42524134:243503 +k1,5484:15619836,42524134:243502 +k1,5484:18213460,42524134:243503 +k1,5484:21899568,42524134:243502 +k1,5484:23537022,42524134:243503 +k1,5484:25289163,42524134:243502 +k1,5484:30156231,42524134:243503 +k1,5484:32583029,42524134:0 +) +(1,5485:6630773,43389214:25952256,513147,134348 +k1,5484:8761398,43389214:275301 +k1,5484:10488322,43389214:275302 +k1,5484:12181167,43389214:275301 +k1,5484:13647914,43389214:275302 +k1,5484:14942300,43389214:275301 +k1,5484:16523735,43389214:275302 +k1,5484:17971475,43389214:275301 +k1,5484:21922036,43389214:275302 +k1,5484:23006707,43389214:275301 +k1,5484:24301094,43389214:275302 +k1,5484:27161135,43389214:275301 +k1,5484:28095729,43389214:275302 +k1,5484:29390115,43389214:275301 +k1,5484:32583029,43389214:0 +) +(1,5485:6630773,44254294:25952256,505283,126483 +g1,5484:8751518,44254294 +g1,5484:11718988,44254294 +g1,5484:12569645,44254294 +g1,5484:14099255,44254294 +g1,5484:17031991,44254294 +g1,5484:18222780,44254294 +k1,5485:32583029,44254294:11123426 +g1,5485:32583029,44254294 +) +] +(1,5487:32583029,45706769:0,0,0 +g1,5487:32583029,45706769 +) +) +] +(1,5487:6630773,47279633:25952256,0,0 +h1,5487:6630773,47279633:25952256,0,0 +) +] +(1,5487:4262630,4025873:0,0,0 +[1,5487:-473656,4025873:0,0,0 +(1,5487:-473656,-710413:0,0,0 +(1,5487:-473656,-710413:0,0,0 +g1,5487:-473656,-710413 +) +g1,5487:-473656,-710413 +) +] +) +] +!106802 +}89 +Input:801:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:802:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:803:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:804:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:805:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:806:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!570 +{90 +[1,5573:4262630,47279633:28320399,43253760,0 +(1,5573:4262630,4025873:0,0,0 +[1,5573:-473656,4025873:0,0,0 +(1,5573:-473656,-710413:0,0,0 +(1,5573:-473656,-644877:0,0,0 +k1,5573:-473656,-644877:-65536 ) -g1,6508:6630773,45434140 +(1,5573:-473656,4736287:0,0,0 +k1,5573:-473656,4736287:5209943 ) -g1,6510:7579210,45434140 -g1,6510:8843793,45434140 -g1,6510:10424522,45434140 -g1,6510:12005251,45434140 -g1,6510:13585980,45434140 -g1,6510:15166709,45434140 -h1,6510:16431292,45434140:0,0,0 -k1,6510:32583029,45434140:16151737 -g1,6510:32583029,45434140 +g1,5573:-473656,-710413 ) ] ) -g1,6511:32583029,45510161 -g1,6511:6630773,45510161 -g1,6511:6630773,45510161 -g1,6511:32583029,45510161 -g1,6511:32583029,45510161 +[1,5573:6630773,47279633:25952256,43253760,0 +[1,5573:6630773,4812305:25952256,786432,0 +(1,5573:6630773,4812305:25952256,505283,126483 +(1,5573:6630773,4812305:25952256,505283,126483 +g1,5573:3078558,4812305 +[1,5573:3078558,4812305:0,0,0 +(1,5573:3078558,2439708:0,1703936,0 +k1,5573:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,5573:2537886,2439708:1179648,16384,0 ) -h1,6511:6630773,45706769:0,0,0 -] -(1,6515:32583029,45706769:0,0,0 -g1,6515:32583029,45706769 +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,5573:3078558,1915420:16384,1179648,0 ) +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) ] -(1,6515:6630773,47279633:25952256,0,0 -h1,6515:6630773,47279633:25952256,0,0 ) -] -(1,6515:4262630,4025873:0,0,0 -[1,6515:-473656,4025873:0,0,0 -(1,6515:-473656,-710413:0,0,0 -(1,6515:-473656,-710413:0,0,0 -g1,6515:-473656,-710413 ) -g1,6515:-473656,-710413 ) ] +[1,5573:3078558,4812305:0,0,0 +(1,5573:3078558,2439708:0,1703936,0 +g1,5573:29030814,2439708 +g1,5573:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,5573:36151628,1915420:16384,1179648,0 ) -] -!23582 -}109 -Input:883:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:884:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:885:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:886:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:887:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:888:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:889:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:890:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:891:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:892:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:893:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:894:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1128 -{110 -[1,6588:4262630,47279633:28320399,43253760,0 -(1,6588:4262630,4025873:0,0,0 -[1,6588:-473656,4025873:0,0,0 -(1,6588:-473656,-710413:0,0,0 -(1,6588:-473656,-644877:0,0,0 -k1,6588:-473656,-644877:-65536 -) -(1,6588:-473656,4736287:0,0,0 -k1,6588:-473656,4736287:5209943 -) -g1,6588:-473656,-710413 +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) ] ) -[1,6588:6630773,47279633:25952256,43253760,0 -[1,6588:6630773,4812305:25952256,786432,0 -(1,6588:6630773,4812305:25952256,485622,11795 -(1,6588:6630773,4812305:25952256,485622,11795 -g1,6588:3078558,4812305 -[1,6588:3078558,4812305:0,0,0 -(1,6588:3078558,2439708:0,1703936,0 -k1,6588:1358238,2439708:-1720320 -(1,5950:1358238,2439708:1720320,1703936,0 -(1,5950:1358238,2439708:1179648,16384,0 -r1,6588:2537886,2439708:1179648,16384,0 +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,5573:37855564,2439708:1179648,16384,0 ) -g1,5950:3062174,2439708 -(1,5950:3062174,2439708:16384,1703936,0 -[1,5950:3062174,2439708:25952256,1703936,0 -(1,5950:3062174,1915420:25952256,1179648,0 -(1,5950:3062174,1915420:16384,1179648,0 -r1,6588:3078558,1915420:16384,1179648,0 ) -k1,5950:29014430,1915420:25935872 -g1,5950:29014430,1915420 +k1,5573:3078556,2439708:-34777008 ) ] +[1,5573:3078558,4812305:0,0,0 +(1,5573:3078558,49800853:0,16384,2228224 +k1,5573:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,5573:2537886,49800853:1179648,16384,0 ) +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,5573:3078558,51504789:16384,1179648,0 ) +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) ] -[1,6588:3078558,4812305:0,0,0 -(1,6588:3078558,2439708:0,1703936,0 -g1,6588:29030814,2439708 -g1,6588:36135244,2439708 -(1,5950:36135244,2439708:1720320,1703936,0 -(1,5950:36135244,2439708:16384,1703936,0 -[1,5950:36135244,2439708:25952256,1703936,0 -(1,5950:36135244,1915420:25952256,1179648,0 -(1,5950:36135244,1915420:16384,1179648,0 -r1,6588:36151628,1915420:16384,1179648,0 ) -k1,5950:62087500,1915420:25935872 -g1,5950:62087500,1915420 +) ) ] +[1,5573:3078558,4812305:0,0,0 +(1,5573:3078558,49800853:0,16384,2228224 +g1,5573:29030814,49800853 +g1,5573:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,5573:36151628,51504789:16384,1179648,0 ) -g1,5950:36675916,2439708 -(1,5950:36675916,2439708:1179648,16384,0 -r1,6588:37855564,2439708:1179648,16384,0 +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 +) +] +) +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,5573:37855564,49800853:1179648,16384,0 ) ) -k1,6588:3078556,2439708:-34777008 +k1,5573:3078556,49800853:-34777008 +) +] +g1,5573:6630773,4812305 +g1,5573:6630773,4812305 +g1,5573:9472414,4812305 +g1,5573:10882093,4812305 +g1,5573:16529985,4812305 +g1,5573:18796220,4812305 +k1,5573:31786111,4812305:12989891 +) +) +] +[1,5573:6630773,45706769:25952256,40108032,0 +(1,5573:6630773,45706769:25952256,40108032,0 +(1,5573:6630773,45706769:0,0,0 +g1,5573:6630773,45706769 +) +[1,5573:6630773,45706769:25952256,40108032,0 +v1,5487:6630773,6254097:0,393216,0 +(1,5516:6630773,20883823:25952256,15022942,0 +g1,5516:6630773,20883823 +g1,5516:6237557,20883823 +r1,5573:6368629,20883823:131072,15022942,0 +g1,5516:6567858,20883823 +g1,5516:6764466,20883823 +[1,5516:6764466,20883823:25818563,15022942,0 +(1,5488:6764466,6526574:25818563,665693,196608 +(1,5487:6764466,6526574:0,665693,196608 +r1,5573:8010564,6526574:1246098,862301,196608 +k1,5487:6764466,6526574:-1246098 +) +(1,5487:6764466,6526574:1246098,665693,196608 +) +k1,5487:8253027,6526574:242463 +k1,5487:9979245,6526574:327680 +k1,5487:11642529,6526574:242463 +k1,5487:12700261,6526574:242464 +k1,5487:14113197,6526574:242463 +k1,5487:15448145,6526574:242463 +k1,5487:18117406,6526574:242463 +k1,5487:19011298,6526574:242464 +k1,5487:21457737,6526574:242463 +k1,5487:22719285,6526574:242463 +k1,5487:25203079,6526574:242463 +k1,5487:27984408,6526574:242464 +k1,5487:28886163,6526574:242463 +k1,5487:30147711,6526574:242463 +k1,5487:32583029,6526574:0 +) +(1,5488:6764466,7391654:25818563,513147,134348 +g1,5487:9115242,7391654 +g1,5487:9930509,7391654 +g1,5487:11581360,7391654 +g1,5487:12439881,7391654 +g1,5487:13658195,7391654 +g1,5487:16832759,7391654 +g1,5487:19765495,7391654 +g1,5487:21156169,7391654 +k1,5488:32583029,7391654:9119993 +g1,5488:32583029,7391654 +) +v1,5490:6764466,8076509:0,393216,0 +(1,5498:6764466,11133490:25818563,3450197,196608 +g1,5498:6764466,11133490 +g1,5498:6764466,11133490 +g1,5498:6567858,11133490 +(1,5498:6567858,11133490:0,3450197,196608 +r1,5573:32779637,11133490:26211779,3646805,196608 +k1,5498:6567857,11133490:-26211780 +) +(1,5498:6567858,11133490:26211779,3450197,196608 +[1,5498:6764466,11133490:25818563,3253589,0 +(1,5492:6764466,8287824:25818563,407923,9908 +(1,5491:6764466,8287824:0,0,0 +g1,5491:6764466,8287824 +g1,5491:6764466,8287824 +g1,5491:6436786,8287824 +(1,5491:6436786,8287824:0,0,0 +) +g1,5491:6764466,8287824 +) +g1,5492:8424236,8287824 +g1,5492:9420098,8287824 +h1,5492:10747914,8287824:0,0,0 +k1,5492:32583030,8287824:21835116 +g1,5492:32583030,8287824 +) +(1,5493:6764466,8972679:25818563,424439,86428 +h1,5493:6764466,8972679:0,0,0 +g1,5493:8424236,8972679 +g1,5493:9420098,8972679 +g1,5493:13735500,8972679 +g1,5493:15395270,8972679 +g1,5493:16059178,8972679 +h1,5493:16723086,8972679:0,0,0 +k1,5493:32583029,8972679:15859943 +g1,5493:32583029,8972679 +) +(1,5494:6764466,9657534:25818563,424439,106246 +h1,5494:6764466,9657534:0,0,0 +g1,5494:8424236,9657534 +g1,5494:9420098,9657534 +g1,5494:13735500,9657534 +g1,5494:15395270,9657534 +g1,5494:16059178,9657534 +g1,5494:17055040,9657534 +g1,5494:19046764,9657534 +g1,5494:19710672,9657534 +h1,5494:21370442,9657534:0,0,0 +k1,5494:32583029,9657534:11212587 +g1,5494:32583029,9657534 +) +(1,5495:6764466,10342389:25818563,424439,86428 +h1,5495:6764466,10342389:0,0,0 +g1,5495:8424236,10342389 +g1,5495:9420098,10342389 +g1,5495:13735500,10342389 +g1,5495:15395270,10342389 +g1,5495:16059178,10342389 +h1,5495:16723086,10342389:0,0,0 +k1,5495:32583029,10342389:15859943 +g1,5495:32583029,10342389 +) +(1,5496:6764466,11027244:25818563,424439,106246 +h1,5496:6764466,11027244:0,0,0 +g1,5496:8424236,11027244 +g1,5496:9420098,11027244 +g1,5496:13735500,11027244 +g1,5496:15395270,11027244 +g1,5496:16059178,11027244 +g1,5496:17055040,11027244 +g1,5496:19046764,11027244 +g1,5496:19710672,11027244 +h1,5496:21370442,11027244:0,0,0 +k1,5496:32583029,11027244:11212587 +g1,5496:32583029,11027244 +) +] +) +g1,5498:32583029,11133490 +g1,5498:6764466,11133490 +g1,5498:6764466,11133490 +g1,5498:32583029,11133490 +g1,5498:32583029,11133490 +) +h1,5498:6764466,11330098:0,0,0 +v1,5502:6764466,12014953:0,393216,0 +(1,5508:6764466,13718740:25818563,2097003,196608 +g1,5508:6764466,13718740 +g1,5508:6764466,13718740 +g1,5508:6567858,13718740 +(1,5508:6567858,13718740:0,2097003,196608 +r1,5573:32779637,13718740:26211779,2293611,196608 +k1,5508:6567857,13718740:-26211780 +) +(1,5508:6567858,13718740:26211779,2097003,196608 +[1,5508:6764466,13718740:25818563,1900395,0 +(1,5504:6764466,12242784:25818563,424439,106246 +(1,5503:6764466,12242784:0,0,0 +g1,5503:6764466,12242784 +g1,5503:6764466,12242784 +g1,5503:6436786,12242784 +(1,5503:6436786,12242784:0,0,0 +) +g1,5503:6764466,12242784 +) +g1,5504:8424236,12242784 +g1,5504:9420098,12242784 +g1,5504:13403546,12242784 +g1,5504:14731362,12242784 +g1,5504:15395270,12242784 +g1,5504:17055040,12242784 +h1,5504:18050902,12242784:0,0,0 +k1,5504:32583029,12242784:14532127 +g1,5504:32583029,12242784 +) +(1,5505:6764466,12927639:25818563,424439,106246 +h1,5505:6764466,12927639:0,0,0 +g1,5505:8424236,12927639 +g1,5505:9420098,12927639 +g1,5505:13403546,12927639 +g1,5505:14731362,12927639 +g1,5505:15395270,12927639 +g1,5505:17055040,12927639 +g1,5505:18382856,12927639 +g1,5505:21370441,12927639 +g1,5505:22034349,12927639 +g1,5505:25685843,12927639 +g1,5505:28341475,12927639 +h1,5505:30665153,12927639:0,0,0 +k1,5505:32583029,12927639:1917876 +g1,5505:32583029,12927639 +) +(1,5506:6764466,13612494:25818563,424439,106246 +h1,5506:6764466,13612494:0,0,0 +g1,5506:8424236,13612494 +g1,5506:9420098,13612494 +g1,5506:13403546,13612494 +g1,5506:14731362,13612494 +g1,5506:15395270,13612494 +g1,5506:17055040,13612494 +h1,5506:18050902,13612494:0,0,0 +k1,5506:32583029,13612494:14532127 +g1,5506:32583029,13612494 +) +] +) +g1,5508:32583029,13718740 +g1,5508:6764466,13718740 +g1,5508:6764466,13718740 +g1,5508:32583029,13718740 +g1,5508:32583029,13718740 +) +h1,5508:6764466,13915348:0,0,0 +(1,5513:6764466,14780428:25818563,505283,134348 +h1,5511:6764466,14780428:983040,0,0 +k1,5511:8654415,14780428:160454 +k1,5511:10683300,14780428:160454 +k1,5511:12128260,14780428:160454 +k1,5511:14596892,14780428:160454 +k1,5511:15948791,14780428:160454 +k1,5511:21384893,14780428:160454 +k1,5511:23525189,14780428:160453 +k1,5511:24677203,14780428:160454 +k1,5511:25903928,14780428:160454 +k1,5511:27083467,14780428:160454 +k1,5511:28897394,14780428:160454 +k1,5511:30893511,14780428:160454 +k1,5511:32583029,14780428:0 +) +(1,5513:6764466,15645508:25818563,505283,126483 +g1,5511:12255072,15645508 +g1,5511:14434144,15645508 +g1,5511:15624933,15645508 +k1,5513:32583029,15645508:14050919 +g1,5513:32583029,15645508 +) +(1,5514:8907493,17034876:22889104,513147,126483 +(1,5513:8907493,17034876:0,477757,0 +g1,5513:8907493,17034876 +g1,5513:7596773,17034876 +g1,5513:7596773,17034876 +(1,5513:7596773,17034876:1310720,477757,0 +(1,5513:7596773,17034876:1048576,477757,0 +g1,5513:7858917,17034876 +(1,5513:7858917,17034876:572129,477757,0 +g1,5513:7858917,17034876 +) +) +) +g1,5513:8907493,17034876 +) +k1,5513:10286370,17034876:230031 +k1,5513:11535486,17034876:230031 +k1,5513:14527861,17034876:230032 +k1,5513:18794910,17034876:230031 +k1,5513:20216386,17034876:230031 +k1,5513:22262420,17034876:230031 +k1,5513:25518248,17034876:230031 +k1,5513:26399708,17034876:230032 +k1,5513:28998210,17034876:230031 +k1,5513:30605152,17034876:230031 +k1,5513:31796597,17034876:0 +) +(1,5514:8907493,17899956:22889104,473825,126483 +g1,5513:9895120,17899956 +k1,5514:31796597,17899956:17314612 +g1,5514:31796597,17899956 +) +(1,5515:8907493,19027180:22889104,505283,134348 +(1,5514:8907493,19027180:0,485622,0 +g1,5514:8907493,19027180 +g1,5514:7596773,19027180 +g1,5514:7596773,19027180 +(1,5514:7596773,19027180:1310720,485622,0 +(1,5514:7596773,19027180:1048576,485622,0 +g1,5514:7858917,19027180 +(1,5514:7858917,19027180:572129,485622,0 +g1,5514:7858917,19027180 +) +) +) +g1,5514:8907493,19027180 +) +k1,5514:11685721,19027180:263612 +k1,5514:12305192,19027180:263611 +k1,5514:14656126,19027180:263612 +k1,5514:16187204,19027180:263612 +k1,5514:16806676,19027180:263612 +k1,5514:19048164,19027180:263611 +k1,5514:21047169,19027180:263612 +(1,5514:21047169,19027180:0,452978,115847 +r1,5573:24922553,19027180:3875384,568825,115847 +k1,5514:21047169,19027180:-3875384 +) +(1,5514:21047169,19027180:3875384,452978,115847 +k1,5514:21047169,19027180:3277 +h1,5514:24919276,19027180:0,411205,112570 +) +k1,5514:25186165,19027180:263612 +k1,5514:26641222,19027180:263612 +k1,5514:29665209,19027180:263611 +k1,5514:30947906,19027180:263612 +k1,5515:31796597,19027180:0 +) +(1,5515:8907493,19892260:22889104,505283,126483 +k1,5514:11232218,19892260:181698 +k1,5514:13424562,19892260:181699 +k1,5514:14257688,19892260:181698 +k1,5514:16183300,19892260:181699 +k1,5514:16981036,19892260:181698 +k1,5514:18181820,19892260:181699 +k1,5514:20624510,19892260:181698 +k1,5514:21929496,19892260:181699 +k1,5514:24121839,19892260:181698 +k1,5514:27275596,19892260:181699 +k1,5514:28218822,19892260:181698 +k1,5514:31113712,19892260:181699 +k1,5514:31796597,19892260:0 +) +(1,5515:8907493,20757340:22889104,513147,126483 +g1,5514:9868250,20757340 +g1,5514:11601677,20757340 +k1,5515:31796596,20757340:18715116 +g1,5515:31796596,20757340 +) +] +g1,5516:32583029,20883823 +) +h1,5516:6630773,20883823:0,0,0 +(1,5521:6630773,21748903:25952256,513147,134348 +h1,5520:6630773,21748903:983040,0,0 +k1,5520:11053801,21748903:248385 +k1,5520:12493632,21748903:248386 +k1,5520:15767814,21748903:248385 +k1,5520:16963851,21748903:248386 +k1,5520:19299558,21748903:248385 +k1,5520:21875127,21748903:248386 +k1,5520:23115072,21748903:248385 +k1,5520:26147427,21748903:248386 +k1,5520:27011850,21748903:248385 +k1,5520:27675029,21748903:248336 +k1,5520:28609577,21748903:248386 +k1,5520:31591469,21748903:248385 +k1,5520:32583029,21748903:0 +) +(1,5521:6630773,22613983:25952256,513147,134348 +k1,5520:8348710,22613983:204711 +k1,5520:9169459,22613983:204711 +k1,5520:12458294,22613983:204711 +k1,5520:16277972,22613983:204712 +k1,5520:16695669,22613983:204705 +k1,5520:19569661,22613983:204711 +k1,5520:21642803,22613983:204711 +k1,5520:23223116,22613983:204712 +k1,5520:25119967,22613983:204711 +k1,5520:25983970,22613983:204711 +k1,5520:27885408,22613983:204711 +k1,5520:32583029,22613983:0 +) +(1,5521:6630773,23479063:25952256,513147,134348 +k1,5520:9820718,23479063:164148 +k1,5520:11176311,23479063:164148 +k1,5520:14591045,23479063:164148 +k1,5520:14968151,23479063:164114 +k1,5520:16418115,23479063:164148 +k1,5520:17862181,23479063:164148 +k1,5520:21018048,23479063:164148 +k1,5520:21841488,23479063:164148 +k1,5520:23024721,23479063:164148 +k1,5520:24281354,23479063:164148 +k1,5520:25104794,23479063:164148 +k1,5520:26961083,23479063:164149 +k1,5520:27784523,23479063:164148 +k1,5520:28967756,23479063:164148 +k1,5520:30852879,23479063:164148 +k1,5521:32583029,23479063:0 +) +(1,5521:6630773,24344143:25952256,513147,134348 +g1,5520:8588988,24344143 +g1,5520:11865132,24344143 +g1,5520:14744784,24344143 +g1,5520:16337964,24344143 +g1,5520:18827021,24344143 +g1,5520:19685542,24344143 +g1,5520:21439940,24344143 +(1,5520:21439940,24344143:0,452978,115847 +r1,5573:23556765,24344143:2116825,568825,115847 +k1,5520:21439940,24344143:-2116825 +) +(1,5520:21439940,24344143:2116825,452978,115847 +k1,5520:21439940,24344143:3277 +h1,5520:23553488,24344143:0,411205,112570 +) +k1,5521:32583029,24344143:8852594 +g1,5521:32583029,24344143 +) +(1,5523:6630773,25209223:25952256,505283,134348 +h1,5522:6630773,25209223:983040,0,0 +k1,5522:10859680,25209223:229900 +k1,5522:13370888,25209223:229900 +k1,5522:14252217,25209223:229901 +k1,5522:15501202,25209223:229900 +k1,5522:17452077,25209223:229900 +k1,5522:20958122,25209223:229900 +k1,5522:24264937,25209223:229900 +k1,5522:26192876,25209223:229901 +k1,5522:28794524,25209223:229900 +k1,5522:29675852,25209223:229900 +k1,5522:32583029,25209223:0 +) +(1,5523:6630773,26074303:25952256,505283,134348 +g1,5522:8210846,26074303 +g1,5522:8941572,26074303 +g1,5522:11342811,26074303 +g1,5522:12193468,26074303 +g1,5522:13901336,26074303 +g1,5522:16860286,26074303 +g1,5522:18757553,26074303 +g1,5522:19722898,26074303 +g1,5522:22894840,26074303 +g1,5522:24085629,26074303 +g1,5522:26593036,26074303 +g1,5522:28024342,26074303 +g1,5522:29721724,26074303 +h1,5522:30518642,26074303:0,0,0 +k1,5523:32583029,26074303:1683623 +g1,5523:32583029,26074303 +) +v1,5525:6630773,26759158:0,393216,0 +(1,5560:6630773,42110732:25952256,15744790,196608 +g1,5560:6630773,42110732 +g1,5560:6630773,42110732 +g1,5560:6434165,42110732 +(1,5560:6434165,42110732:0,15744790,196608 +r1,5573:32779637,42110732:26345472,15941398,196608 +k1,5560:6434165,42110732:-26345472 +) +(1,5560:6434165,42110732:26345472,15744790,196608 +[1,5560:6630773,42110732:25952256,15548182,0 +(1,5527:6630773,26986989:25952256,424439,86428 +(1,5526:6630773,26986989:0,0,0 +g1,5526:6630773,26986989 +g1,5526:6630773,26986989 +g1,5526:6303093,26986989 +(1,5526:6303093,26986989:0,0,0 +) +g1,5526:6630773,26986989 +) +g1,5527:8290543,26986989 +g1,5527:9286405,26986989 +g1,5527:13601807,26986989 +g1,5527:15261577,26986989 +g1,5527:15925485,26986989 +h1,5527:16589393,26986989:0,0,0 +k1,5527:32583029,26986989:15993636 +g1,5527:32583029,26986989 +) +(1,5528:6630773,27671844:25952256,407923,9908 +h1,5528:6630773,27671844:0,0,0 +g1,5528:8290543,27671844 +g1,5528:8954451,27671844 +h1,5528:9286405,27671844:0,0,0 +k1,5528:32583029,27671844:23296624 +g1,5528:32583029,27671844 +) +(1,5537:6630773,28487771:25952256,424439,86428 +(1,5530:6630773,28487771:0,0,0 +g1,5530:6630773,28487771 +g1,5530:6630773,28487771 +g1,5530:6303093,28487771 +(1,5530:6303093,28487771:0,0,0 +) +g1,5530:6630773,28487771 +) +g1,5537:7626635,28487771 +g1,5537:7958589,28487771 +g1,5537:8290543,28487771 +g1,5537:8622497,28487771 +g1,5537:8954451,28487771 +g1,5537:9286405,28487771 +g1,5537:10946175,28487771 +g1,5537:12605945,28487771 +g1,5537:14265715,28487771 +k1,5537:14265715,28487771:0 +h1,5537:15593531,28487771:0,0,0 +k1,5537:32583029,28487771:16989498 +g1,5537:32583029,28487771 +) +(1,5537:6630773,29172626:25952256,424439,86428 +h1,5537:6630773,29172626:0,0,0 +g1,5537:7626635,29172626 +g1,5537:9286405,29172626 +g1,5537:9618359,29172626 +g1,5537:9950313,29172626 +g1,5537:10282267,29172626 +g1,5537:10946175,29172626 +g1,5537:11278129,29172626 +g1,5537:11610083,29172626 +g1,5537:11942037,29172626 +g1,5537:12605945,29172626 +g1,5537:12937899,29172626 +g1,5537:13269853,29172626 +g1,5537:14265715,29172626 +g1,5537:14597669,29172626 +g1,5537:14929623,29172626 +h1,5537:15593531,29172626:0,0,0 +k1,5537:32583029,29172626:16989498 +g1,5537:32583029,29172626 +) +(1,5537:6630773,29857481:25952256,424439,86428 +h1,5537:6630773,29857481:0,0,0 +g1,5537:7626635,29857481 +g1,5537:9286405,29857481 +g1,5537:9618359,29857481 +g1,5537:9950313,29857481 +g1,5537:10282267,29857481 +g1,5537:10946175,29857481 +g1,5537:11278129,29857481 +g1,5537:11610083,29857481 +g1,5537:11942037,29857481 +g1,5537:12605945,29857481 +g1,5537:12937899,29857481 +g1,5537:13269853,29857481 +g1,5537:14265715,29857481 +g1,5537:14597669,29857481 +g1,5537:14929623,29857481 +h1,5537:15593531,29857481:0,0,0 +k1,5537:32583029,29857481:16989498 +g1,5537:32583029,29857481 +) +(1,5537:6630773,30542336:25952256,424439,86428 +h1,5537:6630773,30542336:0,0,0 +g1,5537:7626635,30542336 +g1,5537:9286405,30542336 +g1,5537:9618359,30542336 +g1,5537:9950313,30542336 +g1,5537:10282267,30542336 +g1,5537:10946175,30542336 +g1,5537:11278129,30542336 +g1,5537:11610083,30542336 +g1,5537:12605945,30542336 +g1,5537:12937899,30542336 +g1,5537:13269853,30542336 +g1,5537:14265715,30542336 +g1,5537:14597669,30542336 +g1,5537:14929623,30542336 +h1,5537:15593531,30542336:0,0,0 +k1,5537:32583029,30542336:16989498 +g1,5537:32583029,30542336 +) +(1,5537:6630773,31227191:25952256,424439,86428 +h1,5537:6630773,31227191:0,0,0 +g1,5537:7626635,31227191 +g1,5537:9286405,31227191 +g1,5537:9618359,31227191 +g1,5537:9950313,31227191 +g1,5537:10282267,31227191 +g1,5537:10946175,31227191 +g1,5537:11278129,31227191 +g1,5537:11610083,31227191 +g1,5537:12605945,31227191 +g1,5537:12937899,31227191 +g1,5537:13269853,31227191 +g1,5537:14265715,31227191 +g1,5537:14597669,31227191 +g1,5537:14929623,31227191 +h1,5537:15593531,31227191:0,0,0 +k1,5537:32583029,31227191:16989498 +g1,5537:32583029,31227191 +) +(1,5537:6630773,31912046:25952256,424439,86428 +h1,5537:6630773,31912046:0,0,0 +g1,5537:7626635,31912046 +g1,5537:9286405,31912046 +g1,5537:9618359,31912046 +g1,5537:9950313,31912046 +g1,5537:10282267,31912046 +g1,5537:10946175,31912046 +g1,5537:11278129,31912046 +g1,5537:11610083,31912046 +g1,5537:12605945,31912046 +g1,5537:12937899,31912046 +g1,5537:13269853,31912046 +g1,5537:14265715,31912046 +g1,5537:14597669,31912046 +g1,5537:14929623,31912046 +h1,5537:15593531,31912046:0,0,0 +k1,5537:32583029,31912046:16989498 +g1,5537:32583029,31912046 +) +(1,5539:6630773,32727973:25952256,407923,9908 +(1,5538:6630773,32727973:0,0,0 +g1,5538:6630773,32727973 +g1,5538:6630773,32727973 +g1,5538:6303093,32727973 +(1,5538:6303093,32727973:0,0,0 +) +g1,5538:6630773,32727973 +) +g1,5539:8290543,32727973 +g1,5539:8954451,32727973 +h1,5539:9950313,32727973:0,0,0 +k1,5539:32583029,32727973:22632716 +g1,5539:32583029,32727973 +) +(1,5548:6630773,33543900:25952256,424439,86428 +(1,5541:6630773,33543900:0,0,0 +g1,5541:6630773,33543900 +g1,5541:6630773,33543900 +g1,5541:6303093,33543900 +(1,5541:6303093,33543900:0,0,0 +) +g1,5541:6630773,33543900 +) +g1,5548:7626635,33543900 +g1,5548:7958589,33543900 +g1,5548:8290543,33543900 +g1,5548:8622497,33543900 +g1,5548:8954451,33543900 +g1,5548:9286405,33543900 +g1,5548:10946175,33543900 +g1,5548:12605945,33543900 +g1,5548:14265715,33543900 +k1,5548:14265715,33543900:0 +h1,5548:15593531,33543900:0,0,0 +k1,5548:32583029,33543900:16989498 +g1,5548:32583029,33543900 +) +(1,5548:6630773,34228755:25952256,424439,86428 +h1,5548:6630773,34228755:0,0,0 +g1,5548:7626635,34228755 +g1,5548:9286405,34228755 +g1,5548:9618359,34228755 +g1,5548:9950313,34228755 +g1,5548:10282267,34228755 +g1,5548:10946175,34228755 +g1,5548:11278129,34228755 +g1,5548:11610083,34228755 +g1,5548:11942037,34228755 +g1,5548:12605945,34228755 +g1,5548:12937899,34228755 +g1,5548:13269853,34228755 +g1,5548:13601807,34228755 +g1,5548:14265715,34228755 +g1,5548:14597669,34228755 +g1,5548:14929623,34228755 +h1,5548:15593531,34228755:0,0,0 +k1,5548:32583029,34228755:16989498 +g1,5548:32583029,34228755 +) +(1,5548:6630773,34913610:25952256,424439,86428 +h1,5548:6630773,34913610:0,0,0 +g1,5548:7626635,34913610 +g1,5548:9286405,34913610 +g1,5548:9618359,34913610 +g1,5548:9950313,34913610 +g1,5548:10282267,34913610 +g1,5548:10946175,34913610 +g1,5548:11278129,34913610 +g1,5548:11610083,34913610 +g1,5548:11942037,34913610 +g1,5548:12605945,34913610 +g1,5548:12937899,34913610 +g1,5548:13269853,34913610 +g1,5548:14265715,34913610 +g1,5548:14597669,34913610 +g1,5548:14929623,34913610 +g1,5548:15261577,34913610 +h1,5548:15593531,34913610:0,0,0 +k1,5548:32583029,34913610:16989498 +g1,5548:32583029,34913610 +) +(1,5548:6630773,35598465:25952256,424439,86428 +h1,5548:6630773,35598465:0,0,0 +g1,5548:7626635,35598465 +g1,5548:9286405,35598465 +g1,5548:9618359,35598465 +g1,5548:9950313,35598465 +g1,5548:10282267,35598465 +g1,5548:10946175,35598465 +g1,5548:11278129,35598465 +g1,5548:11610083,35598465 +g1,5548:11942037,35598465 +g1,5548:12605945,35598465 +g1,5548:12937899,35598465 +g1,5548:13269853,35598465 +g1,5548:13601807,35598465 +g1,5548:14265715,35598465 +g1,5548:14597669,35598465 +g1,5548:14929623,35598465 +h1,5548:15593531,35598465:0,0,0 +k1,5548:32583029,35598465:16989498 +g1,5548:32583029,35598465 +) +(1,5548:6630773,36283320:25952256,424439,86428 +h1,5548:6630773,36283320:0,0,0 +g1,5548:7626635,36283320 +g1,5548:9286405,36283320 +g1,5548:9618359,36283320 +g1,5548:9950313,36283320 +g1,5548:10282267,36283320 +g1,5548:10946175,36283320 +g1,5548:11278129,36283320 +g1,5548:11610083,36283320 +g1,5548:11942037,36283320 +g1,5548:12605945,36283320 +g1,5548:12937899,36283320 +g1,5548:13269853,36283320 +g1,5548:14265715,36283320 +g1,5548:14597669,36283320 +g1,5548:14929623,36283320 +g1,5548:15261577,36283320 +h1,5548:15593531,36283320:0,0,0 +k1,5548:32583029,36283320:16989498 +g1,5548:32583029,36283320 +) +(1,5548:6630773,36968175:25952256,424439,86428 +h1,5548:6630773,36968175:0,0,0 +g1,5548:7626635,36968175 +g1,5548:9286405,36968175 +g1,5548:9618359,36968175 +g1,5548:9950313,36968175 +g1,5548:10282267,36968175 +g1,5548:10946175,36968175 +g1,5548:11278129,36968175 +g1,5548:11610083,36968175 +g1,5548:12605945,36968175 +g1,5548:12937899,36968175 +g1,5548:13269853,36968175 +g1,5548:13601807,36968175 +g1,5548:14265715,36968175 +g1,5548:14597669,36968175 +g1,5548:14929623,36968175 +h1,5548:15593531,36968175:0,0,0 +k1,5548:32583029,36968175:16989498 +g1,5548:32583029,36968175 +) +(1,5550:6630773,37784102:25952256,407923,9908 +(1,5549:6630773,37784102:0,0,0 +g1,5549:6630773,37784102 +g1,5549:6630773,37784102 +g1,5549:6303093,37784102 +(1,5549:6303093,37784102:0,0,0 +) +g1,5549:6630773,37784102 +) +g1,5550:8290543,37784102 +g1,5550:8954451,37784102 +h1,5550:9950313,37784102:0,0,0 +k1,5550:32583029,37784102:22632716 +g1,5550:32583029,37784102 +) +(1,5559:6630773,38600029:25952256,424439,86428 +(1,5552:6630773,38600029:0,0,0 +g1,5552:6630773,38600029 +g1,5552:6630773,38600029 +g1,5552:6303093,38600029 +(1,5552:6303093,38600029:0,0,0 +) +g1,5552:6630773,38600029 +) +g1,5559:7626635,38600029 +g1,5559:7958589,38600029 +g1,5559:8290543,38600029 +g1,5559:8622497,38600029 +g1,5559:8954451,38600029 +g1,5559:9286405,38600029 +g1,5559:10946175,38600029 +g1,5559:12605945,38600029 +g1,5559:14265715,38600029 +k1,5559:14265715,38600029:0 +h1,5559:15593531,38600029:0,0,0 +k1,5559:32583029,38600029:16989498 +g1,5559:32583029,38600029 +) +(1,5559:6630773,39284884:25952256,424439,86428 +h1,5559:6630773,39284884:0,0,0 +g1,5559:7626635,39284884 +g1,5559:9286405,39284884 +g1,5559:9618359,39284884 +g1,5559:9950313,39284884 +g1,5559:10282267,39284884 +g1,5559:10946175,39284884 +g1,5559:11278129,39284884 +g1,5559:11610083,39284884 +g1,5559:11942037,39284884 +g1,5559:12605945,39284884 +g1,5559:12937899,39284884 +g1,5559:13269853,39284884 +g1,5559:14265715,39284884 +g1,5559:14597669,39284884 +g1,5559:14929623,39284884 +g1,5559:15261577,39284884 +h1,5559:15593531,39284884:0,0,0 +k1,5559:32583029,39284884:16989498 +g1,5559:32583029,39284884 +) +(1,5559:6630773,39969739:25952256,424439,86428 +h1,5559:6630773,39969739:0,0,0 +g1,5559:7626635,39969739 +g1,5559:9286405,39969739 +g1,5559:9618359,39969739 +g1,5559:9950313,39969739 +g1,5559:10282267,39969739 +g1,5559:10946175,39969739 +g1,5559:11278129,39969739 +g1,5559:11610083,39969739 +g1,5559:11942037,39969739 +g1,5559:12605945,39969739 +g1,5559:12937899,39969739 +g1,5559:13269853,39969739 +g1,5559:13601807,39969739 +g1,5559:14265715,39969739 +g1,5559:14597669,39969739 +g1,5559:14929623,39969739 +h1,5559:15593531,39969739:0,0,0 +k1,5559:32583029,39969739:16989498 +g1,5559:32583029,39969739 +) +(1,5559:6630773,40654594:25952256,424439,86428 +h1,5559:6630773,40654594:0,0,0 +g1,5559:7626635,40654594 +g1,5559:9286405,40654594 +g1,5559:9618359,40654594 +g1,5559:9950313,40654594 +g1,5559:10282267,40654594 +g1,5559:10946175,40654594 +g1,5559:11278129,40654594 +g1,5559:11610083,40654594 +g1,5559:11942037,40654594 +g1,5559:12605945,40654594 +g1,5559:12937899,40654594 +g1,5559:13269853,40654594 +g1,5559:14265715,40654594 +g1,5559:14597669,40654594 +g1,5559:14929623,40654594 +g1,5559:15261577,40654594 +h1,5559:15593531,40654594:0,0,0 +k1,5559:32583029,40654594:16989498 +g1,5559:32583029,40654594 +) +(1,5559:6630773,41339449:25952256,424439,86428 +h1,5559:6630773,41339449:0,0,0 +g1,5559:7626635,41339449 +g1,5559:9286405,41339449 +g1,5559:9618359,41339449 +g1,5559:9950313,41339449 +g1,5559:10282267,41339449 +g1,5559:10946175,41339449 +g1,5559:11278129,41339449 +g1,5559:11610083,41339449 +g1,5559:11942037,41339449 +g1,5559:12605945,41339449 +g1,5559:12937899,41339449 +g1,5559:13269853,41339449 +g1,5559:13601807,41339449 +g1,5559:14265715,41339449 +g1,5559:14597669,41339449 +g1,5559:14929623,41339449 +h1,5559:15593531,41339449:0,0,0 +k1,5559:32583029,41339449:16989498 +g1,5559:32583029,41339449 +) +(1,5559:6630773,42024304:25952256,424439,86428 +h1,5559:6630773,42024304:0,0,0 +g1,5559:7626635,42024304 +g1,5559:9286405,42024304 +g1,5559:9618359,42024304 +g1,5559:9950313,42024304 +g1,5559:10282267,42024304 +g1,5559:10946175,42024304 +g1,5559:11278129,42024304 +g1,5559:11610083,42024304 +g1,5559:11942037,42024304 +g1,5559:12605945,42024304 +g1,5559:12937899,42024304 +g1,5559:13269853,42024304 +g1,5559:14265715,42024304 +g1,5559:14597669,42024304 +g1,5559:14929623,42024304 +g1,5559:15261577,42024304 +h1,5559:15593531,42024304:0,0,0 +k1,5559:32583029,42024304:16989498 +g1,5559:32583029,42024304 +) +] +) +g1,5560:32583029,42110732 +g1,5560:6630773,42110732 +g1,5560:6630773,42110732 +g1,5560:32583029,42110732 +g1,5560:32583029,42110732 +) +h1,5560:6630773,42307340:0,0,0 +v1,5564:6630773,43172420:0,393216,0 +(1,5573:6630773,45309405:25952256,2530201,0 +g1,5573:6630773,45309405 +g1,5573:6237557,45309405 +r1,5573:6368629,45309405:131072,2530201,0 +g1,5573:6567858,45309405 +g1,5573:6764466,45309405 +[1,5573:6764466,45309405:25818563,2530201,0 +(1,5565:6764466,43444897:25818563,665693,196608 +(1,5564:6764466,43444897:0,665693,196608 +r1,5573:8010564,43444897:1246098,862301,196608 +k1,5564:6764466,43444897:-1246098 +) +(1,5564:6764466,43444897:1246098,665693,196608 +) +k1,5564:8264820,43444897:254256 +k1,5564:9991038,43444897:327680 +k1,5564:12028529,43444897:254256 +k1,5564:12638646,43444897:254257 +(1,5564:12638646,43444897:0,452978,115847 +r1,5573:14755471,43444897:2116825,568825,115847 +k1,5564:12638646,43444897:-2116825 +) +(1,5564:12638646,43444897:2116825,452978,115847 +k1,5564:12638646,43444897:3277 +h1,5564:14752194,43444897:0,411205,112570 +) +k1,5564:15009727,43444897:254256 +k1,5564:16455428,43444897:254256 +k1,5564:17065544,43444897:254256 +(1,5564:17065544,43444897:0,414482,115847 +r1,5573:19182369,43444897:2116825,530329,115847 +k1,5564:17065544,43444897:-2116825 +) +(1,5564:17065544,43444897:2116825,414482,115847 +k1,5564:17065544,43444897:3277 +h1,5564:19179092,43444897:0,411205,112570 +) +k1,5564:19436625,43444897:254256 +k1,5564:20682441,43444897:254256 +k1,5564:23909410,43444897:254256 +k1,5564:24779705,43444897:254257 +k1,5564:25804664,43444897:254256 +k1,5564:29335065,43444897:254256 +k1,5564:32583029,43444897:0 +) +(1,5565:6764466,44309977:25818563,513147,126483 +k1,5564:8285976,44309977:191129 +k1,5564:9496190,44309977:191129 +k1,5564:12631853,44309977:191130 +k1,5564:13482274,44309977:191129 +k1,5564:14692488,44309977:191129 +(1,5564:14692488,44309977:0,414482,115847 +r1,5573:16809313,44309977:2116825,530329,115847 +k1,5564:14692488,44309977:-2116825 +) +(1,5564:14692488,44309977:2116825,414482,115847 +k1,5564:14692488,44309977:3277 +h1,5564:16806036,44309977:0,411205,112570 +) +k1,5564:17000442,44309977:191129 +k1,5564:18183131,44309977:191129 +k1,5564:20959656,44309977:191130 +k1,5564:21802213,44309977:191129 +k1,5564:24937875,44309977:191129 +k1,5564:25745042,44309977:191129 +k1,5564:26955257,44309977:191130 +(1,5564:26955257,44309977:0,452978,115847 +r1,5573:29072082,44309977:2116825,568825,115847 +k1,5564:26955257,44309977:-2116825 +) +(1,5564:26955257,44309977:2116825,452978,115847 +k1,5564:26955257,44309977:3277 +h1,5564:29068805,44309977:0,411205,112570 +) +k1,5564:29263211,44309977:191129 +k1,5564:31563944,44309977:191129 +k1,5564:32583029,44309977:0 +) +(1,5565:6764466,45175057:25818563,513147,134348 +g1,5564:8806567,45175057 +g1,5564:9665088,45175057 +g1,5564:10883402,45175057 +g1,5564:14330595,45175057 +g1,5564:15804499,45175057 +g1,5564:17022813,45175057 +g1,5564:18718229,45175057 +g1,5564:20785889,45175057 +g1,5564:21636546,45175057 +g1,5564:23101931,45175057 +g1,5564:24541101,45175057 +g1,5564:26374143,45175057 +g1,5564:27104869,45175057 +g1,5564:28323183,45175057 +g1,5564:30031051,45175057 +k1,5565:32583029,45175057:25565 +g1,5565:32583029,45175057 +) +] +g1,5573:32583029,45309405 +) +] +(1,5573:32583029,45706769:0,0,0 +g1,5573:32583029,45706769 +) +) +] +(1,5573:6630773,47279633:25952256,0,0 +h1,5573:6630773,47279633:25952256,0,0 +) +] +(1,5573:4262630,4025873:0,0,0 +[1,5573:-473656,4025873:0,0,0 +(1,5573:-473656,-710413:0,0,0 +(1,5573:-473656,-710413:0,0,0 +g1,5573:-473656,-710413 +) +g1,5573:-473656,-710413 +) +] +) +] +!30145 +}90 +Input:807:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:808:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:809:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:810:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:811:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!476 +{91 +[1,5662:4262630,47279633:28320399,43253760,0 +(1,5662:4262630,4025873:0,0,0 +[1,5662:-473656,4025873:0,0,0 +(1,5662:-473656,-710413:0,0,0 +(1,5662:-473656,-644877:0,0,0 +k1,5662:-473656,-644877:-65536 +) +(1,5662:-473656,4736287:0,0,0 +k1,5662:-473656,4736287:5209943 +) +g1,5662:-473656,-710413 ) ] -[1,6588:3078558,4812305:0,0,0 -(1,6588:3078558,49800853:0,16384,2228224 -k1,6588:1358238,49800853:-1720320 -(1,5950:1358238,49800853:1720320,16384,2228224 -(1,5950:1358238,49800853:1179648,16384,0 -r1,6588:2537886,49800853:1179648,16384,0 ) -g1,5950:3062174,49800853 -(1,5950:3062174,52029077:16384,1703936,0 -[1,5950:3062174,52029077:25952256,1703936,0 -(1,5950:3062174,51504789:25952256,1179648,0 -(1,5950:3062174,51504789:16384,1179648,0 -r1,6588:3078558,51504789:16384,1179648,0 +[1,5662:6630773,47279633:25952256,43253760,0 +[1,5662:6630773,4812305:25952256,786432,0 +(1,5662:6630773,4812305:25952256,505283,11795 +(1,5662:6630773,4812305:25952256,505283,11795 +g1,5662:3078558,4812305 +[1,5662:3078558,4812305:0,0,0 +(1,5662:3078558,2439708:0,1703936,0 +k1,5662:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,5662:2537886,2439708:1179648,16384,0 +) +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,5662:3078558,1915420:16384,1179648,0 ) -k1,5950:29014430,51504789:25935872 -g1,5950:29014430,51504789 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) ] ) ) ) ] -[1,6588:3078558,4812305:0,0,0 -(1,6588:3078558,49800853:0,16384,2228224 -g1,6588:29030814,49800853 -g1,6588:36135244,49800853 -(1,5950:36135244,49800853:1720320,16384,2228224 -(1,5950:36135244,52029077:16384,1703936,0 -[1,5950:36135244,52029077:25952256,1703936,0 -(1,5950:36135244,51504789:25952256,1179648,0 -(1,5950:36135244,51504789:16384,1179648,0 -r1,6588:36151628,51504789:16384,1179648,0 -) -k1,5950:62087500,51504789:25935872 -g1,5950:62087500,51504789 -) -] -) -g1,5950:36675916,49800853 -(1,5950:36675916,49800853:1179648,16384,0 -r1,6588:37855564,49800853:1179648,16384,0 -) -) -k1,6588:3078556,49800853:-34777008 -) -] -g1,6588:6630773,4812305 -g1,6588:6630773,4812305 -g1,6588:8203637,4812305 -k1,6588:31786111,4812305:23582474 -) -) -] -[1,6588:6630773,45706769:25952256,40108032,0 -(1,6588:6630773,45706769:25952256,40108032,0 -(1,6588:6630773,45706769:0,0,0 -g1,6588:6630773,45706769 -) -[1,6588:6630773,45706769:25952256,40108032,0 -(1,6515:6630773,6254097:25952256,513147,7863 -h1,6514:6630773,6254097:983040,0,0 -k1,6514:9017812,6254097:207312 -k1,6514:12003851,6254097:207312 -k1,6514:13891506,6254097:207312 -k1,6514:14630315,6254097:207312 -k1,6514:15193487,6254097:207312 -k1,6514:17378677,6254097:207313 -k1,6514:18979940,6254097:207312 -k1,6514:21346008,6254097:207312 -k1,6514:24176726,6254097:207312 -k1,6514:27426875,6254097:207312 -k1,6514:28587736,6254097:207312 -k1,6514:29887533,6254097:207312 -k1,6515:32583029,6254097:0 -) -(1,6515:6630773,7095585:25952256,513147,134348 -(1,6514:6630773,7095585:0,452978,115847 -r1,6588:8395886,7095585:1765113,568825,115847 -k1,6514:6630773,7095585:-1765113 -) -(1,6514:6630773,7095585:1765113,452978,115847 -k1,6514:6630773,7095585:3277 -h1,6514:8392609,7095585:0,411205,112570 -) -k1,6514:8619488,7095585:223602 -k1,6514:9494517,7095585:223601 -k1,6514:11573443,7095585:223602 -k1,6514:12863316,7095585:223602 -k1,6514:14417299,7095585:223602 -k1,6514:15844141,7095585:223601 -k1,6514:18045620,7095585:223602 -k1,6514:20400453,7095585:223602 -k1,6514:21275482,7095585:223601 -k1,6514:22518169,7095585:223602 -k1,6514:25177089,7095585:223602 -k1,6514:26567887,7095585:223602 -k1,6514:27988175,7095585:223601 -k1,6514:30453764,7095585:223602 -k1,6514:32583029,7095585:0 -) -(1,6515:6630773,7937073:25952256,513147,102891 -k1,6514:7501746,7937073:211681 -k1,6514:9496006,7937073:211681 -k1,6514:12856037,7937073:211681 -k1,6514:14059279,7937073:211682 -k1,6514:16125629,7937073:211681 -k1,6514:17146680,7937073:211681 -k1,6514:18377446,7937073:211681 -k1,6514:20657443,7937073:211681 -k1,6514:21528416,7937073:211681 -k1,6514:22733624,7937073:211682 -k1,6514:25814471,7937073:211681 -k1,6514:27724190,7937073:211681 -k1,6514:30893511,7937073:211681 -k1,6514:32583029,7937073:0 -) -(1,6515:6630773,8778561:25952256,513147,134348 -k1,6514:10111867,8778561:176113 -k1,6514:13258727,8778561:176113 -k1,6514:16379373,8778561:176113 -k1,6514:17241648,8778561:176113 -k1,6514:20233843,8778561:176113 -k1,6514:21401515,8778561:176112 -k1,6514:23090854,8778561:176113 -k1,6514:24214618,8778561:176113 -k1,6514:28091549,8778561:176113 -k1,6514:30349085,8778561:176113 -k1,6514:31478747,8778561:176113 -k1,6514:32583029,8778561:0 -) -(1,6515:6630773,9620049:25952256,513147,134348 -g1,6514:8860963,9620049 -g1,6514:10079277,9620049 -g1,6514:13232214,9620049 -g1,6514:14090735,9620049 -g1,6514:15309049,9620049 -g1,6514:17486155,9620049 -g1,6514:19541364,9620049 -g1,6514:22299119,9620049 -g1,6514:25118477,9620049 -g1,6514:27744504,9620049 -g1,6514:28626618,9620049 -k1,6515:32583029,9620049:1714424 -g1,6515:32583029,9620049 -) -v1,6517:6630773,10810515:0,393216,0 -(1,6539:6630773,17662995:25952256,7245696,196608 -g1,6539:6630773,17662995 -g1,6539:6630773,17662995 -g1,6539:6434165,17662995 -(1,6539:6434165,17662995:0,7245696,196608 -r1,6588:32779637,17662995:26345472,7442304,196608 -k1,6539:6434165,17662995:-26345472 -) -(1,6539:6434165,17662995:26345472,7245696,196608 -[1,6539:6630773,17662995:25952256,7049088,0 -(1,6519:6630773,11018133:25952256,404226,76021 -(1,6518:6630773,11018133:0,0,0 -g1,6518:6630773,11018133 -g1,6518:6630773,11018133 -g1,6518:6303093,11018133 -(1,6518:6303093,11018133:0,0,0 -) -g1,6518:6630773,11018133 -) -k1,6519:6630773,11018133:0 -h1,6519:9792230,11018133:0,0,0 -k1,6519:32583030,11018133:22790800 -g1,6519:32583030,11018133 -) -(1,6524:6630773,11684311:25952256,404226,76021 -(1,6521:6630773,11684311:0,0,0 -g1,6521:6630773,11684311 -g1,6521:6630773,11684311 -g1,6521:6303093,11684311 -(1,6521:6303093,11684311:0,0,0 -) -g1,6521:6630773,11684311 -) -g1,6524:7579210,11684311 -g1,6524:7895356,11684311 -g1,6524:9792230,11684311 -g1,6524:11056813,11684311 -g1,6524:12953687,11684311 -g1,6524:14218270,11684311 -g1,6524:15798999,11684311 -g1,6524:17695873,11684311 -g1,6524:18960456,11684311 -h1,6524:20225039,11684311:0,0,0 -k1,6524:32583029,11684311:12357990 -g1,6524:32583029,11684311 -) -(1,6524:6630773,12350489:25952256,404226,82312 -h1,6524:6630773,12350489:0,0,0 -g1,6524:7579210,12350489 -g1,6524:7895356,12350489 -g1,6524:8527648,12350489 -g1,6524:11056814,12350489 -g1,6524:14218271,12350489 -g1,6524:15482854,12350489 -g1,6524:17379728,12350489 -g1,6524:18960457,12350489 -g1,6524:20541186,12350489 -g1,6524:22121915,12350489 -g1,6524:23702644,12350489 -h1,6524:24651081,12350489:0,0,0 -k1,6524:32583029,12350489:7931948 -g1,6524:32583029,12350489 -) -(1,6526:6630773,13672027:25952256,404226,76021 -(1,6525:6630773,13672027:0,0,0 -g1,6525:6630773,13672027 -g1,6525:6630773,13672027 -g1,6525:6303093,13672027 -(1,6525:6303093,13672027:0,0,0 -) -g1,6525:6630773,13672027 -) -h1,6526:9159939,13672027:0,0,0 -k1,6526:32583029,13672027:23423090 -g1,6526:32583029,13672027 -) -(1,6531:6630773,14338205:25952256,388497,0 -(1,6528:6630773,14338205:0,0,0 -g1,6528:6630773,14338205 -g1,6528:6630773,14338205 -g1,6528:6303093,14338205 -(1,6528:6303093,14338205:0,0,0 -) -g1,6528:6630773,14338205 -) -g1,6531:7579210,14338205 -g1,6531:7895356,14338205 -g1,6531:8211502,14338205 -h1,6531:8843793,14338205:0,0,0 -k1,6531:32583029,14338205:23739236 -g1,6531:32583029,14338205 -) -(1,6531:6630773,15004383:25952256,404226,4718 -h1,6531:6630773,15004383:0,0,0 -g1,6531:7579210,15004383 -h1,6531:8843793,15004383:0,0,0 -k1,6531:32583029,15004383:23739236 -g1,6531:32583029,15004383 -) -(1,6533:6630773,16325921:25952256,404226,76021 -(1,6532:6630773,16325921:0,0,0 -g1,6532:6630773,16325921 -g1,6532:6630773,16325921 -g1,6532:6303093,16325921 -(1,6532:6303093,16325921:0,0,0 -) -g1,6532:6630773,16325921 -) -h1,6533:10108376,16325921:0,0,0 -k1,6533:32583028,16325921:22474652 -g1,6533:32583028,16325921 -) -(1,6538:6630773,16992099:25952256,388497,0 -(1,6535:6630773,16992099:0,0,0 -g1,6535:6630773,16992099 -g1,6535:6630773,16992099 -g1,6535:6303093,16992099 -(1,6535:6303093,16992099:0,0,0 -) -g1,6535:6630773,16992099 -) -g1,6538:7579210,16992099 -g1,6538:7895356,16992099 -g1,6538:8211502,16992099 -h1,6538:8843793,16992099:0,0,0 -k1,6538:32583029,16992099:23739236 -g1,6538:32583029,16992099 -) -(1,6538:6630773,17658277:25952256,404226,4718 -h1,6538:6630773,17658277:0,0,0 -g1,6538:7579210,17658277 -h1,6538:8843793,17658277:0,0,0 -k1,6538:32583029,17658277:23739236 -g1,6538:32583029,17658277 -) -] -) -g1,6539:32583029,17662995 -g1,6539:6630773,17662995 -g1,6539:6630773,17662995 -g1,6539:32583029,17662995 -g1,6539:32583029,17662995 -) -h1,6539:6630773,17859603:0,0,0 -v1,6543:6630773,19749667:0,393216,0 -(1,6544:6630773,24516128:25952256,5159677,0 -g1,6544:6630773,24516128 -g1,6544:6303093,24516128 -r1,6588:6401397,24516128:98304,5159677,0 -g1,6544:6600626,24516128 -g1,6544:6797234,24516128 -[1,6544:6797234,24516128:25785795,5159677,0 -(1,6544:6797234,20182205:25785795,825754,196608 -(1,6543:6797234,20182205:0,825754,196608 -r1,6588:7890375,20182205:1093141,1022362,196608 -k1,6543:6797234,20182205:-1093141 -) -(1,6543:6797234,20182205:1093141,825754,196608 -) -k1,6543:8084554,20182205:194179 -k1,6543:9402483,20182205:327680 -k1,6543:12386529,20182205:194178 -(1,6543:12386529,20182205:0,452978,115847 -r1,6588:15206778,20182205:2820249,568825,115847 -k1,6543:12386529,20182205:-2820249 -) -(1,6543:12386529,20182205:2820249,452978,115847 -k1,6543:12386529,20182205:3277 -h1,6543:15203501,20182205:0,411205,112570 -) -k1,6543:15400957,20182205:194179 -k1,6543:15400957,20182205:0 -k1,6543:16696141,20182205:194179 -k1,6543:18062758,20182205:194178 -k1,6543:21483930,20182205:194179 -k1,6543:25462813,20182205:194179 -k1,6543:27050942,20182205:194178 -k1,6543:29510701,20182205:194179 -k1,6543:32583029,20182205:0 -) -(1,6544:6797234,21023693:25785795,513147,126483 -k1,6543:9287711,21023693:306162 -k1,6543:11479344,21023693:306162 -k1,6543:12653859,21023693:306163 -k1,6543:14002699,21023693:306162 -k1,6543:15375132,21023693:306162 -k1,6543:17943597,21023693:306162 -k1,6543:18865797,21023693:306162 -k1,6543:20191044,21023693:306162 -k1,6543:23158623,21023693:306162 -k1,6543:25493781,21023693:306163 -k1,6543:27674273,21023693:306162 -k1,6543:31591469,21023693:306162 -k1,6544:32583029,21023693:0 -) -(1,6544:6797234,21865181:25785795,513147,134348 -(1,6543:6797234,21865181:0,452978,115847 -r1,6588:9969194,21865181:3171960,568825,115847 -k1,6543:6797234,21865181:-3171960 -) -(1,6543:6797234,21865181:3171960,452978,115847 -k1,6543:6797234,21865181:3277 -h1,6543:9965917,21865181:0,411205,112570 -) -k1,6543:10139438,21865181:170244 -k1,6543:11501127,21865181:170244 -(1,6543:11501127,21865181:0,414482,115847 -r1,6588:14673087,21865181:3171960,530329,115847 -k1,6543:11501127,21865181:-3171960 -) -(1,6543:11501127,21865181:3171960,414482,115847 -k1,6543:11501127,21865181:3277 -h1,6543:14669810,21865181:0,411205,112570 -) -k1,6543:15017001,21865181:170244 -k1,6543:16653941,21865181:170244 -k1,6543:17483477,21865181:170244 -k1,6543:19292775,21865181:170243 -k1,6543:22524206,21865181:170244 -k1,6543:23050310,21865181:170244 -(1,6543:23050310,21865181:0,452978,122846 -r1,6588:25518847,21865181:2468537,575824,122846 -k1,6543:23050310,21865181:-2468537 -) -(1,6543:23050310,21865181:2468537,452978,122846 -k1,6543:23050310,21865181:3277 -h1,6543:25515570,21865181:0,411205,112570 -) -k1,6543:25689091,21865181:170244 -k1,6543:27539678,21865181:170244 -k1,6543:28396084,21865181:170244 -k1,6543:29337031,21865181:170244 -k1,6543:32583029,21865181:0 -) -(1,6544:6797234,22706669:25785795,513147,134348 -k1,6543:9183345,22706669:180169 -k1,6543:10382599,22706669:180169 -k1,6543:13749129,22706669:180170 -(1,6543:13749129,22706669:0,452978,115847 -r1,6588:21845056,22706669:8095927,568825,115847 -k1,6543:13749129,22706669:-8095927 -) -(1,6543:13749129,22706669:8095927,452978,115847 -g1,6543:15862677,22706669 -g1,6543:16917813,22706669 -h1,6543:21841779,22706669:0,411205,112570 -) -k1,6543:22198895,22706669:180169 -k1,6543:23140592,22706669:180169 -k1,6543:25748215,22706669:180169 -(1,6543:25748215,22706669:0,414482,115847 -r1,6588:27513328,22706669:1765113,530329,115847 -k1,6543:25748215,22706669:-1765113 -) -(1,6543:25748215,22706669:1765113,414482,115847 -k1,6543:25748215,22706669:3277 -h1,6543:27510051,22706669:0,411205,112570 -) -k1,6543:27693498,22706669:180170 -k1,6543:28559829,22706669:180169 -k1,6543:29510701,22706669:180169 -k1,6543:32583029,22706669:0 -) -(1,6544:6797234,23548157:25785795,505283,126483 -k1,6543:7667412,23548157:218750 -k1,6543:9582889,23548157:218750 -k1,6543:10974077,23548157:218749 -k1,6543:14977531,23548157:218750 -k1,6543:15812319,23548157:218750 -k1,6543:17579685,23548157:218750 -k1,6543:18989880,23548157:218750 -k1,6543:19824667,23548157:218749 -k1,6543:21495039,23548157:218750 -k1,6543:23254540,23548157:218750 -k1,6543:25257180,23548157:218750 -k1,6543:26495014,23548157:218749 -k1,6543:28394107,23548157:218750 -k1,6543:31391584,23548157:218750 -k1,6543:32583029,23548157:0 -) -(1,6544:6797234,24389645:25785795,513147,126483 -g1,6543:8326844,24389645 -g1,6543:8984170,24389645 -g1,6543:11256958,24389645 -g1,6543:12850138,24389645 -g1,6543:15373929,24389645 -g1,6543:16224586,24389645 -g1,6543:17442900,24389645 -g1,6543:18798839,24389645 -g1,6543:21789902,24389645 -k1,6544:32583029,24389645:8764132 -g1,6544:32583029,24389645 -) -] -g1,6544:32583029,24516128 -) -h1,6544:6630773,24516128:0,0,0 -(1,6547:6630773,25881904:25952256,513147,126483 -h1,6546:6630773,25881904:983040,0,0 -k1,6546:10676230,25881904:272549 -(1,6546:10676230,25881904:0,452978,115847 -r1,6588:13496479,25881904:2820249,568825,115847 -k1,6546:10676230,25881904:-2820249 -) -(1,6546:10676230,25881904:2820249,452978,115847 -k1,6546:10676230,25881904:3277 -h1,6546:13493202,25881904:0,411205,112570 -) -k1,6546:13769027,25881904:272548 -k1,6546:15145858,25881904:272549 -k1,6546:16166173,25881904:272549 -k1,6546:17951947,25881904:272548 -k1,6546:18875924,25881904:272549 -k1,6546:21503181,25881904:272548 -k1,6546:23844046,25881904:272549 -k1,6546:27706002,25881904:272549 -k1,6546:30438772,25881904:272548 -k1,6546:31923737,25881904:272549 -k1,6546:32583029,25881904:0 -) -(1,6547:6630773,26723392:25952256,513147,134348 -g1,6546:9273840,26723392 -g1,6546:10492154,26723392 -g1,6546:12473962,26723392 -g1,6546:13356076,26723392 -g1,6546:15110474,26723392 -g1,6546:15968995,26723392 -g1,6546:17187309,26723392 -k1,6547:32583029,26723392:13262523 -g1,6547:32583029,26723392 -) -v1,6549:6630773,27913858:0,393216,0 -(1,6578:6630773,41510239:25952256,13989597,196608 -g1,6578:6630773,41510239 -g1,6578:6630773,41510239 -g1,6578:6434165,41510239 -(1,6578:6434165,41510239:0,13989597,196608 -r1,6588:32779637,41510239:26345472,14186205,196608 -k1,6578:6434165,41510239:-26345472 -) -(1,6578:6434165,41510239:26345472,13989597,196608 -[1,6578:6630773,41510239:25952256,13792989,0 -(1,6551:6630773,28121476:25952256,404226,76021 -(1,6550:6630773,28121476:0,0,0 -g1,6550:6630773,28121476 -g1,6550:6630773,28121476 -g1,6550:6303093,28121476 -(1,6550:6303093,28121476:0,0,0 -) -g1,6550:6630773,28121476 -) -k1,6551:6630773,28121476:0 -h1,6551:10740667,28121476:0,0,0 -k1,6551:32583029,28121476:21842362 -g1,6551:32583029,28121476 -) -(1,6555:6630773,28787654:25952256,404226,76021 -(1,6553:6630773,28787654:0,0,0 -g1,6553:6630773,28787654 -g1,6553:6630773,28787654 -g1,6553:6303093,28787654 -(1,6553:6303093,28787654:0,0,0 -) -g1,6553:6630773,28787654 -) -g1,6555:7579210,28787654 -g1,6555:8843793,28787654 -g1,6555:10108376,28787654 -g1,6555:10424522,28787654 -g1,6555:10740668,28787654 -g1,6555:12321397,28787654 -g1,6555:12637543,28787654 -g1,6555:14534417,28787654 -g1,6555:15799000,28787654 -g1,6555:16115146,28787654 -g1,6555:16431292,28787654 -h1,6555:17695875,28787654:0,0,0 -k1,6555:32583029,28787654:14887154 -g1,6555:32583029,28787654 -) -(1,6557:6630773,30109192:25952256,404226,76021 -(1,6556:6630773,30109192:0,0,0 -g1,6556:6630773,30109192 -g1,6556:6630773,30109192 -g1,6556:6303093,30109192 -(1,6556:6303093,30109192:0,0,0 -) -g1,6556:6630773,30109192 -) -k1,6557:6630773,30109192:0 -h1,6557:12637541,30109192:0,0,0 -k1,6557:32583029,30109192:19945488 -g1,6557:32583029,30109192 -) -(1,6577:6630773,30775370:25952256,404226,76021 -(1,6559:6630773,30775370:0,0,0 -g1,6559:6630773,30775370 -g1,6559:6630773,30775370 -g1,6559:6303093,30775370 -(1,6559:6303093,30775370:0,0,0 -) -g1,6559:6630773,30775370 -) -g1,6577:7579210,30775370 -h1,6577:9159938,30775370:0,0,0 -k1,6577:32583030,30775370:23423092 -g1,6577:32583030,30775370 -) -(1,6577:6630773,31441548:25952256,404226,76021 -h1,6577:6630773,31441548:0,0,0 -g1,6577:7579210,31441548 -h1,6577:10740667,31441548:0,0,0 -k1,6577:32583029,31441548:21842362 -g1,6577:32583029,31441548 -) -(1,6577:6630773,32107726:25952256,404226,76021 -h1,6577:6630773,32107726:0,0,0 -g1,6577:7579210,32107726 -g1,6577:8843793,32107726 -h1,6577:9792230,32107726:0,0,0 -k1,6577:32583030,32107726:22790800 -g1,6577:32583030,32107726 -) -(1,6577:6630773,32773904:25952256,379060,0 -h1,6577:6630773,32773904:0,0,0 -h1,6577:7263064,32773904:0,0,0 -k1,6577:32583028,32773904:25319964 -g1,6577:32583028,32773904 -) -(1,6577:6630773,33440082:25952256,404226,76021 -h1,6577:6630773,33440082:0,0,0 -g1,6577:7579210,33440082 -h1,6577:10740667,33440082:0,0,0 -k1,6577:32583029,33440082:21842362 -g1,6577:32583029,33440082 -) -(1,6577:6630773,34106260:25952256,404226,76021 -h1,6577:6630773,34106260:0,0,0 -g1,6577:7579210,34106260 -g1,6577:8843793,34106260 -h1,6577:10108376,34106260:0,0,0 -k1,6577:32583028,34106260:22474652 -g1,6577:32583028,34106260 -) -(1,6577:6630773,34772438:25952256,379060,0 -h1,6577:6630773,34772438:0,0,0 -h1,6577:7263064,34772438:0,0,0 -k1,6577:32583028,34772438:25319964 -g1,6577:32583028,34772438 -) -(1,6577:6630773,35438616:25952256,404226,76021 -h1,6577:6630773,35438616:0,0,0 -g1,6577:7579210,35438616 -h1,6577:10740667,35438616:0,0,0 -k1,6577:32583029,35438616:21842362 -g1,6577:32583029,35438616 -) -(1,6577:6630773,36104794:25952256,404226,76021 -h1,6577:6630773,36104794:0,0,0 -g1,6577:7579210,36104794 -g1,6577:8843793,36104794 -h1,6577:10424521,36104794:0,0,0 -k1,6577:32583029,36104794:22158508 -g1,6577:32583029,36104794 -) -(1,6577:6630773,36770972:25952256,379060,0 -h1,6577:6630773,36770972:0,0,0 -h1,6577:7263064,36770972:0,0,0 -k1,6577:32583028,36770972:25319964 -g1,6577:32583028,36770972 -) -(1,6577:6630773,37437150:25952256,379060,0 -h1,6577:6630773,37437150:0,0,0 -h1,6577:7263064,37437150:0,0,0 -k1,6577:32583028,37437150:25319964 -g1,6577:32583028,37437150 -) -(1,6577:6630773,38103328:25952256,404226,76021 -h1,6577:6630773,38103328:0,0,0 -g1,6577:7579210,38103328 -h1,6577:9159938,38103328:0,0,0 -k1,6577:32583030,38103328:23423092 -g1,6577:32583030,38103328 -) -(1,6577:6630773,38769506:25952256,404226,76021 -h1,6577:6630773,38769506:0,0,0 -g1,6577:7579210,38769506 -h1,6577:10740667,38769506:0,0,0 -k1,6577:32583029,38769506:21842362 -g1,6577:32583029,38769506 -) -(1,6577:6630773,39435684:25952256,404226,76021 -h1,6577:6630773,39435684:0,0,0 -g1,6577:7579210,39435684 -g1,6577:8843793,39435684 -h1,6577:9792230,39435684:0,0,0 -k1,6577:32583030,39435684:22790800 -g1,6577:32583030,39435684 -) -(1,6577:6630773,40101862:25952256,379060,0 -h1,6577:6630773,40101862:0,0,0 -h1,6577:7263064,40101862:0,0,0 -k1,6577:32583028,40101862:25319964 -g1,6577:32583028,40101862 -) -(1,6577:6630773,40768040:25952256,404226,76021 -h1,6577:6630773,40768040:0,0,0 -g1,6577:7579210,40768040 -h1,6577:10740667,40768040:0,0,0 -k1,6577:32583029,40768040:21842362 -g1,6577:32583029,40768040 -) -(1,6577:6630773,41434218:25952256,404226,76021 -h1,6577:6630773,41434218:0,0,0 -g1,6577:7579210,41434218 -g1,6577:8843793,41434218 -h1,6577:10108376,41434218:0,0,0 -k1,6577:32583028,41434218:22474652 -g1,6577:32583028,41434218 -) -] -) -g1,6578:32583029,41510239 -g1,6578:6630773,41510239 -g1,6578:6630773,41510239 -g1,6578:32583029,41510239 -g1,6578:32583029,41510239 -) -h1,6578:6630773,41706847:0,0,0 -] -(1,6588:32583029,45706769:0,0,0 -g1,6588:32583029,45706769 -) -) -] -(1,6588:6630773,47279633:25952256,0,0 -h1,6588:6630773,47279633:25952256,0,0 -) -] -(1,6588:4262630,4025873:0,0,0 -[1,6588:-473656,4025873:0,0,0 -(1,6588:-473656,-710413:0,0,0 -(1,6588:-473656,-710413:0,0,0 -g1,6588:-473656,-710413 -) -g1,6588:-473656,-710413 -) -] +[1,5662:3078558,4812305:0,0,0 +(1,5662:3078558,2439708:0,1703936,0 +g1,5662:29030814,2439708 +g1,5662:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,5662:36151628,1915420:16384,1179648,0 +) +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) ] -!20547 -}110 -Input:895:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:896:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:897:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:898:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:899:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!477 -{111 -[1,6688:4262630,47279633:28320399,43253760,0 -(1,6688:4262630,4025873:0,0,0 -[1,6688:-473656,4025873:0,0,0 -(1,6688:-473656,-710413:0,0,0 -(1,6688:-473656,-644877:0,0,0 -k1,6688:-473656,-644877:-65536 ) -(1,6688:-473656,4736287:0,0,0 -k1,6688:-473656,4736287:5209943 +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,5662:37855564,2439708:1179648,16384,0 ) -g1,6688:-473656,-710413 ) -] +k1,5662:3078556,2439708:-34777008 ) -[1,6688:6630773,47279633:25952256,43253760,0 -[1,6688:6630773,4812305:25952256,786432,0 -(1,6688:6630773,4812305:25952256,505283,11795 -(1,6688:6630773,4812305:25952256,505283,11795 -g1,6688:3078558,4812305 -[1,6688:3078558,4812305:0,0,0 -(1,6688:3078558,2439708:0,1703936,0 -k1,6688:1358238,2439708:-1720320 -(1,5950:1358238,2439708:1720320,1703936,0 -(1,5950:1358238,2439708:1179648,16384,0 -r1,6688:2537886,2439708:1179648,16384,0 +] +[1,5662:3078558,4812305:0,0,0 +(1,5662:3078558,49800853:0,16384,2228224 +k1,5662:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,5662:2537886,49800853:1179648,16384,0 ) -g1,5950:3062174,2439708 -(1,5950:3062174,2439708:16384,1703936,0 -[1,5950:3062174,2439708:25952256,1703936,0 -(1,5950:3062174,1915420:25952256,1179648,0 -(1,5950:3062174,1915420:16384,1179648,0 -r1,6688:3078558,1915420:16384,1179648,0 +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,5662:3078558,51504789:16384,1179648,0 ) -k1,5950:29014430,1915420:25935872 -g1,5950:29014430,1915420 +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) ] ) ) ) ] -[1,6688:3078558,4812305:0,0,0 -(1,6688:3078558,2439708:0,1703936,0 -g1,6688:29030814,2439708 -g1,6688:36135244,2439708 -(1,5950:36135244,2439708:1720320,1703936,0 -(1,5950:36135244,2439708:16384,1703936,0 -[1,5950:36135244,2439708:25952256,1703936,0 -(1,5950:36135244,1915420:25952256,1179648,0 -(1,5950:36135244,1915420:16384,1179648,0 -r1,6688:36151628,1915420:16384,1179648,0 +[1,5662:3078558,4812305:0,0,0 +(1,5662:3078558,49800853:0,16384,2228224 +g1,5662:29030814,49800853 +g1,5662:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,5662:36151628,51504789:16384,1179648,0 ) -k1,5950:62087500,1915420:25935872 -g1,5950:62087500,1915420 +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 ) ] ) -g1,5950:36675916,2439708 -(1,5950:36675916,2439708:1179648,16384,0 -r1,6688:37855564,2439708:1179648,16384,0 +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,5662:37855564,49800853:1179648,16384,0 ) ) -k1,6688:3078556,2439708:-34777008 +k1,5662:3078556,49800853:-34777008 ) ] -[1,6688:3078558,4812305:0,0,0 -(1,6688:3078558,49800853:0,16384,2228224 -k1,6688:1358238,49800853:-1720320 -(1,5950:1358238,49800853:1720320,16384,2228224 -(1,5950:1358238,49800853:1179648,16384,0 -r1,6688:2537886,49800853:1179648,16384,0 +g1,5662:6630773,4812305 +k1,5662:22348274,4812305:14920583 +g1,5662:23970945,4812305 +g1,5662:24793421,4812305 +g1,5662:27528893,4812305 +g1,5662:28938572,4812305 ) -g1,5950:3062174,49800853 -(1,5950:3062174,52029077:16384,1703936,0 -[1,5950:3062174,52029077:25952256,1703936,0 -(1,5950:3062174,51504789:25952256,1179648,0 -(1,5950:3062174,51504789:16384,1179648,0 -r1,6688:3078558,51504789:16384,1179648,0 -) -k1,5950:29014430,51504789:25935872 -g1,5950:29014430,51504789 ) ] +[1,5662:6630773,45706769:25952256,40108032,0 +(1,5662:6630773,45706769:25952256,40108032,0 +(1,5662:6630773,45706769:0,0,0 +g1,5662:6630773,45706769 ) +[1,5662:6630773,45706769:25952256,40108032,0 +v1,5573:6630773,6254097:0,393216,0 +(1,5573:6630773,6784782:25952256,923901,0 +g1,5573:6630773,6784782 +g1,5573:6237557,6784782 +r1,5662:6368629,6784782:131072,923901,0 +g1,5573:6567858,6784782 +g1,5573:6764466,6784782 +[1,5573:6764466,6784782:25818563,923901,0 +v1,5567:6764466,6254097:0,393216,0 +(1,5571:6764466,6588174:25818563,727293,196608 +g1,5571:6764466,6588174 +g1,5571:6764466,6588174 +g1,5571:6567858,6588174 +(1,5571:6567858,6588174:0,727293,196608 +r1,5662:32779637,6588174:26211779,923901,196608 +k1,5571:6567857,6588174:-26211780 +) +(1,5571:6567858,6588174:26211779,727293,196608 +[1,5571:6764466,6588174:25818563,530685,0 +(1,5569:6764466,6481928:25818563,424439,106246 +(1,5568:6764466,6481928:0,0,0 +g1,5568:6764466,6481928 +g1,5568:6764466,6481928 +g1,5568:6436786,6481928 +(1,5568:6436786,6481928:0,0,0 +) +g1,5568:6764466,6481928 +) +k1,5569:6764466,6481928:0 +g1,5569:11411822,6481928 +g1,5569:12739638,6481928 +g1,5569:13403546,6481928 +h1,5569:14399408,6481928:0,0,0 +k1,5569:32583028,6481928:18183620 +g1,5569:32583028,6481928 +) +] +) +g1,5571:32583029,6588174 +g1,5571:6764466,6588174 +g1,5571:6764466,6588174 +g1,5571:32583029,6588174 +g1,5571:32583029,6588174 +) +h1,5571:6764466,6784782:0,0,0 +] +g1,5573:32583029,6784782 +) +h1,5573:6630773,6784782:0,0,0 +(1,5576:6630773,7649862:25952256,505283,134348 +h1,5575:6630773,7649862:983040,0,0 +g1,5575:10602910,7649862 +(1,5575:10602910,7649862:0,452978,115847 +r1,5662:11664599,7649862:1061689,568825,115847 +k1,5575:10602910,7649862:-1061689 +) +(1,5575:10602910,7649862:1061689,452978,115847 +k1,5575:10602910,7649862:3277 +h1,5575:11661322,7649862:0,411205,112570 +) +g1,5575:11863828,7649862 +g1,5575:15532533,7649862 +g1,5575:16087622,7649862 +g1,5575:18547843,7649862 +g1,5575:19508600,7649862 +g1,5575:22746733,7649862 +g1,5575:25659153,7649862 +g1,5575:27049827,7649862 +k1,5576:32583029,7649862:3825334 +g1,5576:32583029,7649862 +) +v1,5578:6630773,8334717:0,393216,0 +(1,5600:6630773,17243936:25952256,9302435,196608 +g1,5600:6630773,17243936 +g1,5600:6630773,17243936 +g1,5600:6434165,17243936 +(1,5600:6434165,17243936:0,9302435,196608 +r1,5662:32779637,17243936:26345472,9499043,196608 +k1,5600:6434165,17243936:-26345472 +) +(1,5600:6434165,17243936:26345472,9302435,196608 +[1,5600:6630773,17243936:25952256,9105827,0 +(1,5580:6630773,8546032:25952256,407923,9908 +(1,5579:6630773,8546032:0,0,0 +g1,5579:6630773,8546032 +g1,5579:6630773,8546032 +g1,5579:6303093,8546032 +(1,5579:6303093,8546032:0,0,0 +) +g1,5579:6630773,8546032 +) +h1,5580:7958589,8546032:0,0,0 +k1,5580:32583029,8546032:24624440 +g1,5580:32583029,8546032 +) +(1,5589:6630773,9361959:25952256,424439,86428 +(1,5582:6630773,9361959:0,0,0 +g1,5582:6630773,9361959 +g1,5582:6630773,9361959 +g1,5582:6303093,9361959 +(1,5582:6303093,9361959:0,0,0 +) +g1,5582:6630773,9361959 +) +g1,5589:7626635,9361959 +g1,5589:7958589,9361959 +g1,5589:8290543,9361959 +g1,5589:8622497,9361959 +g1,5589:8954451,9361959 +g1,5589:9286405,9361959 +g1,5589:10946175,9361959 +g1,5589:12605945,9361959 +g1,5589:14265715,9361959 +k1,5589:14265715,9361959:0 +h1,5589:15593531,9361959:0,0,0 +k1,5589:32583029,9361959:16989498 +g1,5589:32583029,9361959 +) +(1,5589:6630773,10046814:25952256,424439,86428 +h1,5589:6630773,10046814:0,0,0 +g1,5589:7626635,10046814 +g1,5589:9286405,10046814 +g1,5589:9618359,10046814 +g1,5589:9950313,10046814 +g1,5589:10282267,10046814 +g1,5589:10946175,10046814 +g1,5589:11278129,10046814 +g1,5589:11610083,10046814 +g1,5589:11942037,10046814 +g1,5589:12605945,10046814 +g1,5589:12937899,10046814 +g1,5589:13269853,10046814 +g1,5589:14265715,10046814 +g1,5589:14597669,10046814 +g1,5589:14929623,10046814 +h1,5589:15593531,10046814:0,0,0 +k1,5589:32583029,10046814:16989498 +g1,5589:32583029,10046814 +) +(1,5589:6630773,10731669:25952256,424439,86428 +h1,5589:6630773,10731669:0,0,0 +g1,5589:7626635,10731669 +g1,5589:9286405,10731669 +g1,5589:9618359,10731669 +g1,5589:9950313,10731669 +g1,5589:10282267,10731669 +g1,5589:10946175,10731669 +g1,5589:11278129,10731669 +g1,5589:11610083,10731669 +g1,5589:11942037,10731669 +g1,5589:12605945,10731669 +g1,5589:12937899,10731669 +g1,5589:13269853,10731669 +g1,5589:14265715,10731669 +g1,5589:14597669,10731669 +g1,5589:14929623,10731669 +h1,5589:15593531,10731669:0,0,0 +k1,5589:32583029,10731669:16989498 +g1,5589:32583029,10731669 +) +(1,5589:6630773,11416524:25952256,424439,86428 +h1,5589:6630773,11416524:0,0,0 +g1,5589:7626635,11416524 +g1,5589:9286405,11416524 +g1,5589:9618359,11416524 +g1,5589:9950313,11416524 +g1,5589:10282267,11416524 +g1,5589:10946175,11416524 +g1,5589:11278129,11416524 +g1,5589:11610083,11416524 +g1,5589:11942037,11416524 +g1,5589:12605945,11416524 +g1,5589:12937899,11416524 +g1,5589:13269853,11416524 +g1,5589:14265715,11416524 +g1,5589:14597669,11416524 +g1,5589:14929623,11416524 +h1,5589:15593531,11416524:0,0,0 +k1,5589:32583029,11416524:16989498 +g1,5589:32583029,11416524 +) +(1,5589:6630773,12101379:25952256,424439,86428 +h1,5589:6630773,12101379:0,0,0 +g1,5589:7626635,12101379 +g1,5589:9286405,12101379 +g1,5589:9618359,12101379 +g1,5589:9950313,12101379 +g1,5589:10282267,12101379 +g1,5589:10946175,12101379 +g1,5589:11278129,12101379 +g1,5589:11610083,12101379 +g1,5589:11942037,12101379 +g1,5589:12605945,12101379 +g1,5589:12937899,12101379 +g1,5589:13269853,12101379 +g1,5589:14265715,12101379 +g1,5589:14597669,12101379 +g1,5589:14929623,12101379 +h1,5589:15593531,12101379:0,0,0 +k1,5589:32583029,12101379:16989498 +g1,5589:32583029,12101379 +) +(1,5589:6630773,12786234:25952256,424439,86428 +h1,5589:6630773,12786234:0,0,0 +g1,5589:7626635,12786234 +g1,5589:9286405,12786234 +g1,5589:9618359,12786234 +g1,5589:9950313,12786234 +g1,5589:10282267,12786234 +g1,5589:10946175,12786234 +g1,5589:11278129,12786234 +g1,5589:11610083,12786234 +g1,5589:12605945,12786234 +g1,5589:12937899,12786234 +g1,5589:13269853,12786234 +g1,5589:14265715,12786234 +g1,5589:14597669,12786234 +g1,5589:14929623,12786234 +h1,5589:15593531,12786234:0,0,0 +k1,5589:32583029,12786234:16989498 +g1,5589:32583029,12786234 +) +(1,5591:6630773,13602161:25952256,424439,79822 +(1,5590:6630773,13602161:0,0,0 +g1,5590:6630773,13602161 +g1,5590:6630773,13602161 +g1,5590:6303093,13602161 +(1,5590:6303093,13602161:0,0,0 +) +g1,5590:6630773,13602161 +) +k1,5591:6630773,13602161:0 +h1,5591:8954451,13602161:0,0,0 +k1,5591:32583029,13602161:23628578 +g1,5591:32583029,13602161 +) +(1,5599:6630773,14418088:25952256,424439,86428 +(1,5593:6630773,14418088:0,0,0 +g1,5593:6630773,14418088 +g1,5593:6630773,14418088 +g1,5593:6303093,14418088 +(1,5593:6303093,14418088:0,0,0 +) +g1,5593:6630773,14418088 +) +g1,5599:7626635,14418088 +g1,5599:7958589,14418088 +g1,5599:8290543,14418088 +g1,5599:8622497,14418088 +g1,5599:8954451,14418088 +g1,5599:9286405,14418088 +g1,5599:10946175,14418088 +g1,5599:12605945,14418088 +g1,5599:14265715,14418088 +g1,5599:15925485,14418088 +k1,5599:15925485,14418088:0 +h1,5599:17253301,14418088:0,0,0 +k1,5599:32583029,14418088:15329728 +g1,5599:32583029,14418088 +) +(1,5599:6630773,15102943:25952256,424439,86428 +h1,5599:6630773,15102943:0,0,0 +g1,5599:7626635,15102943 +g1,5599:9286405,15102943 +g1,5599:9618359,15102943 +g1,5599:9950313,15102943 +g1,5599:10282267,15102943 +g1,5599:10946175,15102943 +g1,5599:11278129,15102943 +g1,5599:11610083,15102943 +g1,5599:11942037,15102943 +g1,5599:12605945,15102943 +g1,5599:12937899,15102943 +g1,5599:13269853,15102943 +g1,5599:13601807,15102943 +g1,5599:14265715,15102943 +g1,5599:14597669,15102943 +g1,5599:14929623,15102943 +g1,5599:15261577,15102943 +g1,5599:15925485,15102943 +g1,5599:16257439,15102943 +g1,5599:16589393,15102943 +g1,5599:16921347,15102943 +h1,5599:17253301,15102943:0,0,0 +k1,5599:32583029,15102943:15329728 +g1,5599:32583029,15102943 +) +(1,5599:6630773,15787798:25952256,424439,86428 +h1,5599:6630773,15787798:0,0,0 +g1,5599:7626635,15787798 +g1,5599:9286405,15787798 +g1,5599:9618359,15787798 +g1,5599:9950313,15787798 +g1,5599:10282267,15787798 +g1,5599:10946175,15787798 +g1,5599:11278129,15787798 +g1,5599:11610083,15787798 +g1,5599:11942037,15787798 +g1,5599:12605945,15787798 +g1,5599:12937899,15787798 +g1,5599:13269853,15787798 +g1,5599:13601807,15787798 +g1,5599:14265715,15787798 +g1,5599:14597669,15787798 +g1,5599:14929623,15787798 +g1,5599:15261577,15787798 +g1,5599:15925485,15787798 +g1,5599:16257439,15787798 +g1,5599:16589393,15787798 +h1,5599:17253301,15787798:0,0,0 +k1,5599:32583029,15787798:15329728 +g1,5599:32583029,15787798 +) +(1,5599:6630773,16472653:25952256,424439,86428 +h1,5599:6630773,16472653:0,0,0 +g1,5599:7626635,16472653 +g1,5599:9286405,16472653 +g1,5599:9618359,16472653 +g1,5599:9950313,16472653 +g1,5599:10946175,16472653 +g1,5599:11278129,16472653 +g1,5599:11610083,16472653 +g1,5599:12605945,16472653 +g1,5599:12937899,16472653 +g1,5599:13269853,16472653 +g1,5599:14265715,16472653 +g1,5599:14597669,16472653 +g1,5599:14929623,16472653 +g1,5599:15925485,16472653 +g1,5599:16257439,16472653 +g1,5599:16589393,16472653 +h1,5599:17253301,16472653:0,0,0 +k1,5599:32583029,16472653:15329728 +g1,5599:32583029,16472653 +) +(1,5599:6630773,17157508:25952256,424439,86428 +h1,5599:6630773,17157508:0,0,0 +g1,5599:7626635,17157508 +g1,5599:9286405,17157508 +g1,5599:9618359,17157508 +g1,5599:9950313,17157508 +g1,5599:10946175,17157508 +g1,5599:11278129,17157508 +g1,5599:11610083,17157508 +g1,5599:12605945,17157508 +g1,5599:12937899,17157508 +g1,5599:13269853,17157508 +g1,5599:14265715,17157508 +g1,5599:14597669,17157508 +g1,5599:14929623,17157508 +g1,5599:15925485,17157508 +g1,5599:16257439,17157508 +g1,5599:16589393,17157508 +h1,5599:17253301,17157508:0,0,0 +k1,5599:32583029,17157508:15329728 +g1,5599:32583029,17157508 +) +] +) +g1,5600:32583029,17243936 +g1,5600:6630773,17243936 +g1,5600:6630773,17243936 +g1,5600:32583029,17243936 +g1,5600:32583029,17243936 +) +h1,5600:6630773,17440544:0,0,0 +(1,5604:6630773,18305624:25952256,505283,126483 +h1,5603:6630773,18305624:983040,0,0 +k1,5603:8467767,18305624:226119 +k1,5603:9712970,18305624:226118 +k1,5603:12930808,18305624:226119 +k1,5603:15012251,18305624:226119 +k1,5603:16632321,18305624:226119 +k1,5603:17877524,18305624:226118 +k1,5603:19824618,18305624:226119 +k1,5603:24532744,18305624:226119 +k1,5603:27505477,18305624:226119 +(1,5603:27505477,18305624:0,414482,115847 +r1,5662:27863743,18305624:358266,530329,115847 +k1,5603:27505477,18305624:-358266 +) +(1,5603:27505477,18305624:358266,414482,115847 +k1,5603:27505477,18305624:3277 +h1,5603:27860466,18305624:0,411205,112570 +) +k1,5603:28263531,18305624:226118 +k1,5603:29508735,18305624:226119 +k1,5603:32583029,18305624:0 +) +(1,5604:6630773,19170704:25952256,505283,126483 +k1,5603:9978769,19170704:257973 +k1,5603:10768240,19170704:257974 +k1,5603:12092484,19170704:257973 +k1,5603:12706317,19170704:257973 +k1,5603:15051613,19170704:257974 +k1,5603:18012946,19170704:257973 +k1,5603:19343089,19170704:257974 +k1,5603:22101916,19170704:257973 +k1,5603:23378974,19170704:257973 +k1,5603:26496939,19170704:257974 +k1,5603:29390115,19170704:257973 +k1,5603:32583029,19170704:0 +) +(1,5604:6630773,20035784:25952256,513147,134348 +k1,5603:9779188,20035784:279249 +k1,5603:10717729,20035784:279249 +k1,5603:12016062,20035784:279248 +k1,5603:14382633,20035784:279249 +k1,5603:15853327,20035784:279249 +k1,5603:18614424,20035784:279249 +k1,5603:22085276,20035784:279249 +k1,5603:23555969,20035784:279248 +k1,5603:26861015,20035784:279249 +k1,5603:31563944,20035784:279249 +k1,5603:32583029,20035784:0 +) +(1,5604:6630773,20900864:25952256,513147,134348 +k1,5603:10261030,20900864:225662 +k1,5603:11145985,20900864:225663 +k1,5603:13458969,20900864:225662 +k1,5603:16011814,20900864:225662 +k1,5603:17229036,20900864:225662 +k1,5603:20044026,20900864:225663 +k1,5603:22300649,20900864:225662 +k1,5603:24853494,20900864:225662 +k1,5603:26689376,20900864:225662 +k1,5603:27934124,20900864:225663 +k1,5603:29745757,20900864:225662 +k1,5603:30919070,20900864:225662 +k1,5604:32583029,20900864:0 +) +(1,5604:6630773,21765944:25952256,505283,126483 +k1,5603:8860766,21765944:276365 +k1,5603:11056026,21765944:276366 +k1,5603:12799087,21765944:276365 +k1,5603:16048165,21765944:276365 +k1,5603:17316091,21765944:276366 +k1,5603:20499633,21765944:276365 +k1,5603:21818020,21765944:276365 +k1,5603:24929472,21765944:276365 +k1,5603:27293160,21765944:276366 +k1,5603:32051532,21765944:276365 +k1,5603:32583029,21765944:0 +) +(1,5604:6630773,22631024:25952256,505283,126483 +g1,5603:9782399,22631024 +g1,5603:10743156,22631024 +g1,5603:13688999,22631024 +(1,5603:13688999,22631024:0,435480,115847 +r1,5662:14750688,22631024:1061689,551327,115847 +k1,5603:13688999,22631024:-1061689 +) +(1,5603:13688999,22631024:1061689,435480,115847 +k1,5603:13688999,22631024:3277 +h1,5603:14747411,22631024:0,411205,112570 +) +g1,5603:15123587,22631024 +k1,5604:32583029,22631024:17459442 +g1,5604:32583029,22631024 +) +v1,5606:6630773,23315879:0,393216,0 +(1,5628:6630773,32241614:25952256,9318951,196608 +g1,5628:6630773,32241614 +g1,5628:6630773,32241614 +g1,5628:6434165,32241614 +(1,5628:6434165,32241614:0,9318951,196608 +r1,5662:32779637,32241614:26345472,9515559,196608 +k1,5628:6434165,32241614:-26345472 +) +(1,5628:6434165,32241614:26345472,9318951,196608 +[1,5628:6630773,32241614:25952256,9122343,0 +(1,5608:6630773,23543710:25952256,424439,86428 +(1,5607:6630773,23543710:0,0,0 +g1,5607:6630773,23543710 +g1,5607:6630773,23543710 +g1,5607:6303093,23543710 +(1,5607:6303093,23543710:0,0,0 +) +g1,5607:6630773,23543710 +) +g1,5608:8290543,23543710 +g1,5608:9286405,23543710 +g1,5608:13601807,23543710 +g1,5608:15261577,23543710 +g1,5608:15925485,23543710 +h1,5608:16589393,23543710:0,0,0 +k1,5608:32583029,23543710:15993636 +g1,5608:32583029,23543710 +) +(1,5609:6630773,24228565:25952256,398014,6605 +h1,5609:6630773,24228565:0,0,0 +g1,5609:8290543,24228565 +g1,5609:8954451,24228565 +h1,5609:10282267,24228565:0,0,0 +k1,5609:32583029,24228565:22300762 +g1,5609:32583029,24228565 +) +(1,5617:6630773,25044492:25952256,424439,86428 +(1,5611:6630773,25044492:0,0,0 +g1,5611:6630773,25044492 +g1,5611:6630773,25044492 +g1,5611:6303093,25044492 +(1,5611:6303093,25044492:0,0,0 +) +g1,5611:6630773,25044492 +) +g1,5617:7626635,25044492 +g1,5617:7958589,25044492 +g1,5617:8290543,25044492 +g1,5617:8622497,25044492 +g1,5617:8954451,25044492 +g1,5617:9286405,25044492 +g1,5617:10946175,25044492 +g1,5617:12605945,25044492 +g1,5617:14265715,25044492 +k1,5617:14265715,25044492:0 +h1,5617:15593531,25044492:0,0,0 +k1,5617:32583029,25044492:16989498 +g1,5617:32583029,25044492 +) +(1,5617:6630773,25729347:25952256,424439,86428 +h1,5617:6630773,25729347:0,0,0 +g1,5617:7626635,25729347 +g1,5617:9286405,25729347 +g1,5617:9618359,25729347 +g1,5617:9950313,25729347 +g1,5617:10282267,25729347 +g1,5617:10946175,25729347 +g1,5617:11278129,25729347 +g1,5617:11610083,25729347 +g1,5617:12605945,25729347 +g1,5617:12937899,25729347 +g1,5617:13269853,25729347 +g1,5617:14265715,25729347 +g1,5617:14597669,25729347 +h1,5617:15593531,25729347:0,0,0 +k1,5617:32583029,25729347:16989498 +g1,5617:32583029,25729347 +) +(1,5617:6630773,26414202:25952256,424439,86428 +h1,5617:6630773,26414202:0,0,0 +g1,5617:7626635,26414202 +g1,5617:9286405,26414202 +g1,5617:9618359,26414202 +g1,5617:9950313,26414202 +g1,5617:10282267,26414202 +g1,5617:10946175,26414202 +g1,5617:11278129,26414202 +g1,5617:11610083,26414202 +g1,5617:12605945,26414202 +g1,5617:12937899,26414202 +g1,5617:14265715,26414202 +g1,5617:14597669,26414202 +h1,5617:15593531,26414202:0,0,0 +k1,5617:32583029,26414202:16989498 +g1,5617:32583029,26414202 +) +(1,5617:6630773,27099057:25952256,424439,86428 +h1,5617:6630773,27099057:0,0,0 +g1,5617:7626635,27099057 +g1,5617:9286405,27099057 +g1,5617:9618359,27099057 +g1,5617:9950313,27099057 +g1,5617:10282267,27099057 +g1,5617:10946175,27099057 +g1,5617:11278129,27099057 +g1,5617:11610083,27099057 +g1,5617:12605945,27099057 +g1,5617:12937899,27099057 +g1,5617:14265715,27099057 +g1,5617:14597669,27099057 +h1,5617:15593531,27099057:0,0,0 +k1,5617:32583029,27099057:16989498 +g1,5617:32583029,27099057 +) +(1,5617:6630773,27783912:25952256,424439,86428 +h1,5617:6630773,27783912:0,0,0 +g1,5617:7626635,27783912 +g1,5617:9286405,27783912 +g1,5617:9618359,27783912 +g1,5617:9950313,27783912 +g1,5617:10946175,27783912 +g1,5617:11278129,27783912 +g1,5617:11610083,27783912 +g1,5617:12605945,27783912 +g1,5617:12937899,27783912 +g1,5617:14265715,27783912 +g1,5617:14597669,27783912 +h1,5617:15593531,27783912:0,0,0 +k1,5617:32583029,27783912:16989498 +g1,5617:32583029,27783912 +) +(1,5619:6630773,28599839:25952256,407923,9908 +(1,5618:6630773,28599839:0,0,0 +g1,5618:6630773,28599839 +g1,5618:6630773,28599839 +g1,5618:6303093,28599839 +(1,5618:6303093,28599839:0,0,0 +) +g1,5618:6630773,28599839 +) +g1,5619:8290543,28599839 +g1,5619:9618359,28599839 +h1,5619:10946175,28599839:0,0,0 +k1,5619:32583029,28599839:21636854 +g1,5619:32583029,28599839 +) +(1,5627:6630773,29415766:25952256,424439,86428 +(1,5621:6630773,29415766:0,0,0 +g1,5621:6630773,29415766 +g1,5621:6630773,29415766 +g1,5621:6303093,29415766 +(1,5621:6303093,29415766:0,0,0 +) +g1,5621:6630773,29415766 +) +g1,5627:7626635,29415766 +g1,5627:7958589,29415766 +g1,5627:8290543,29415766 +g1,5627:8622497,29415766 +g1,5627:8954451,29415766 +g1,5627:9286405,29415766 +g1,5627:10946175,29415766 +g1,5627:12605945,29415766 +g1,5627:14265715,29415766 +k1,5627:14265715,29415766:0 +h1,5627:15593531,29415766:0,0,0 +k1,5627:32583029,29415766:16989498 +g1,5627:32583029,29415766 +) +(1,5627:6630773,30100621:25952256,424439,86428 +h1,5627:6630773,30100621:0,0,0 +g1,5627:7626635,30100621 +g1,5627:9286405,30100621 +g1,5627:9618359,30100621 +g1,5627:9950313,30100621 +g1,5627:10946175,30100621 +g1,5627:11278129,30100621 +g1,5627:12605945,30100621 +g1,5627:12937899,30100621 +g1,5627:14265715,30100621 +g1,5627:14597669,30100621 +h1,5627:15593531,30100621:0,0,0 +k1,5627:32583029,30100621:16989498 +g1,5627:32583029,30100621 +) +(1,5627:6630773,30785476:25952256,424439,86428 +h1,5627:6630773,30785476:0,0,0 +g1,5627:7626635,30785476 +g1,5627:9286405,30785476 +g1,5627:9618359,30785476 +g1,5627:10946175,30785476 +g1,5627:11278129,30785476 +g1,5627:12605945,30785476 +g1,5627:12937899,30785476 +g1,5627:14265715,30785476 +g1,5627:14597669,30785476 +h1,5627:15593531,30785476:0,0,0 +k1,5627:32583029,30785476:16989498 +g1,5627:32583029,30785476 +) +(1,5627:6630773,31470331:25952256,424439,86428 +h1,5627:6630773,31470331:0,0,0 +g1,5627:7626635,31470331 +g1,5627:9286405,31470331 +g1,5627:9618359,31470331 +g1,5627:10946175,31470331 +g1,5627:11278129,31470331 +g1,5627:12605945,31470331 +g1,5627:12937899,31470331 +g1,5627:14265715,31470331 +g1,5627:14597669,31470331 +h1,5627:15593531,31470331:0,0,0 +k1,5627:32583029,31470331:16989498 +g1,5627:32583029,31470331 +) +(1,5627:6630773,32155186:25952256,424439,86428 +h1,5627:6630773,32155186:0,0,0 +g1,5627:7626635,32155186 +g1,5627:9286405,32155186 +g1,5627:9618359,32155186 +g1,5627:10946175,32155186 +g1,5627:11278129,32155186 +g1,5627:12605945,32155186 +g1,5627:12937899,32155186 +g1,5627:14265715,32155186 +g1,5627:14597669,32155186 +h1,5627:15593531,32155186:0,0,0 +k1,5627:32583029,32155186:16989498 +g1,5627:32583029,32155186 +) +] +) +g1,5628:32583029,32241614 +g1,5628:6630773,32241614 +g1,5628:6630773,32241614 +g1,5628:32583029,32241614 +g1,5628:32583029,32241614 +) +h1,5628:6630773,32438222:0,0,0 +(1,5632:6630773,33303302:25952256,505283,134348 +h1,5631:6630773,33303302:983040,0,0 +g1,5631:10602910,33303302 +(1,5631:10602910,33303302:0,452978,122846 +r1,5662:12719735,33303302:2116825,575824,122846 +k1,5631:10602910,33303302:-2116825 +) +(1,5631:10602910,33303302:2116825,452978,122846 +k1,5631:10602910,33303302:3277 +h1,5631:12716458,33303302:0,411205,112570 +) +g1,5631:12918964,33303302 +g1,5631:15164227,33303302 +g1,5631:15821553,33303302 +g1,5631:18650742,33303302 +g1,5631:19501399,33303302 +g1,5631:21501557,33303302 +g1,5631:23630166,33303302 +g1,5631:24185255,33303302 +g1,5631:27106850,33303302 +k1,5632:32583029,33303302:3215187 +g1,5632:32583029,33303302 +) +v1,5634:6630773,33988157:0,393216,0 +(1,5656:6630773,42913892:25952256,9318951,196608 +g1,5656:6630773,42913892 +g1,5656:6630773,42913892 +g1,5656:6434165,42913892 +(1,5656:6434165,42913892:0,9318951,196608 +r1,5662:32779637,42913892:26345472,9515559,196608 +k1,5656:6434165,42913892:-26345472 +) +(1,5656:6434165,42913892:26345472,9318951,196608 +[1,5656:6630773,42913892:25952256,9122343,0 +(1,5636:6630773,34215988:25952256,424439,112852 +(1,5635:6630773,34215988:0,0,0 +g1,5635:6630773,34215988 +g1,5635:6630773,34215988 +g1,5635:6303093,34215988 +(1,5635:6303093,34215988:0,0,0 +) +g1,5635:6630773,34215988 +) +g1,5636:8290543,34215988 +g1,5636:9286405,34215988 +k1,5636:9286405,34215988:0 +h1,5636:11610083,34215988:0,0,0 +k1,5636:32583029,34215988:20972946 +g1,5636:32583029,34215988 +) +(1,5637:6630773,34900843:25952256,398014,9908 +h1,5637:6630773,34900843:0,0,0 +h1,5637:7958589,34900843:0,0,0 +k1,5637:32583029,34900843:24624440 +g1,5637:32583029,34900843 +) +(1,5645:6630773,35716770:25952256,424439,86428 +(1,5639:6630773,35716770:0,0,0 +g1,5639:6630773,35716770 +g1,5639:6630773,35716770 +g1,5639:6303093,35716770 +(1,5639:6303093,35716770:0,0,0 +) +g1,5639:6630773,35716770 +) +g1,5645:7626635,35716770 +g1,5645:7958589,35716770 +g1,5645:8290543,35716770 +g1,5645:8622497,35716770 +g1,5645:8954451,35716770 +g1,5645:9286405,35716770 +g1,5645:10946175,35716770 +g1,5645:12605945,35716770 +g1,5645:14265715,35716770 +k1,5645:14265715,35716770:0 +h1,5645:15593531,35716770:0,0,0 +k1,5645:32583029,35716770:16989498 +g1,5645:32583029,35716770 +) +(1,5645:6630773,36401625:25952256,424439,86428 +h1,5645:6630773,36401625:0,0,0 +g1,5645:7626635,36401625 +g1,5645:9286405,36401625 +g1,5645:9618359,36401625 +g1,5645:9950313,36401625 +g1,5645:10282267,36401625 +g1,5645:10946175,36401625 +g1,5645:11278129,36401625 +g1,5645:11610083,36401625 +g1,5645:11942037,36401625 +g1,5645:12605945,36401625 +g1,5645:12937899,36401625 +g1,5645:13269853,36401625 +g1,5645:13601807,36401625 +g1,5645:14265715,36401625 +g1,5645:14597669,36401625 +g1,5645:14929623,36401625 +g1,5645:15261577,36401625 +h1,5645:15593531,36401625:0,0,0 +k1,5645:32583029,36401625:16989498 +g1,5645:32583029,36401625 +) +(1,5645:6630773,37086480:25952256,424439,86428 +h1,5645:6630773,37086480:0,0,0 +g1,5645:7626635,37086480 +g1,5645:9286405,37086480 +g1,5645:9618359,37086480 +g1,5645:9950313,37086480 +g1,5645:10282267,37086480 +g1,5645:10946175,37086480 +g1,5645:11278129,37086480 +g1,5645:11610083,37086480 +g1,5645:11942037,37086480 +g1,5645:12605945,37086480 +g1,5645:12937899,37086480 +g1,5645:13269853,37086480 +g1,5645:13601807,37086480 +g1,5645:14265715,37086480 +g1,5645:14597669,37086480 +g1,5645:14929623,37086480 +g1,5645:15261577,37086480 +h1,5645:15593531,37086480:0,0,0 +k1,5645:32583029,37086480:16989498 +g1,5645:32583029,37086480 +) +(1,5645:6630773,37771335:25952256,424439,86428 +h1,5645:6630773,37771335:0,0,0 +g1,5645:7626635,37771335 +g1,5645:9286405,37771335 +g1,5645:9618359,37771335 +g1,5645:9950313,37771335 +g1,5645:10282267,37771335 +g1,5645:10946175,37771335 +g1,5645:11278129,37771335 +g1,5645:11610083,37771335 +g1,5645:11942037,37771335 +g1,5645:12605945,37771335 +g1,5645:12937899,37771335 +g1,5645:13269853,37771335 +g1,5645:13601807,37771335 +g1,5645:14265715,37771335 +g1,5645:14597669,37771335 +g1,5645:14929623,37771335 +g1,5645:15261577,37771335 +h1,5645:15593531,37771335:0,0,0 +k1,5645:32583029,37771335:16989498 +g1,5645:32583029,37771335 +) +(1,5645:6630773,38456190:25952256,424439,86428 +h1,5645:6630773,38456190:0,0,0 +g1,5645:7626635,38456190 +g1,5645:9286405,38456190 +g1,5645:9618359,38456190 +g1,5645:9950313,38456190 +g1,5645:10282267,38456190 +g1,5645:10946175,38456190 +g1,5645:11278129,38456190 +g1,5645:11610083,38456190 +g1,5645:11942037,38456190 +g1,5645:12605945,38456190 +g1,5645:12937899,38456190 +g1,5645:13269853,38456190 +g1,5645:13601807,38456190 +g1,5645:14265715,38456190 +g1,5645:14597669,38456190 +g1,5645:14929623,38456190 +g1,5645:15261577,38456190 +h1,5645:15593531,38456190:0,0,0 +k1,5645:32583029,38456190:16989498 +g1,5645:32583029,38456190 +) +(1,5647:6630773,39272117:25952256,407923,9908 +(1,5646:6630773,39272117:0,0,0 +g1,5646:6630773,39272117 +g1,5646:6630773,39272117 +g1,5646:6303093,39272117 +(1,5646:6303093,39272117:0,0,0 +) +g1,5646:6630773,39272117 +) +g1,5647:8290543,39272117 +g1,5647:9618359,39272117 +h1,5647:10946175,39272117:0,0,0 +k1,5647:32583029,39272117:21636854 +g1,5647:32583029,39272117 +) +(1,5655:6630773,40088044:25952256,424439,86428 +(1,5649:6630773,40088044:0,0,0 +g1,5649:6630773,40088044 +g1,5649:6630773,40088044 +g1,5649:6303093,40088044 +(1,5649:6303093,40088044:0,0,0 +) +g1,5649:6630773,40088044 +) +g1,5655:7626635,40088044 +g1,5655:7958589,40088044 +g1,5655:8290543,40088044 +g1,5655:8622497,40088044 +g1,5655:8954451,40088044 +g1,5655:9286405,40088044 +g1,5655:10946175,40088044 +g1,5655:12605945,40088044 +g1,5655:14265715,40088044 +k1,5655:14265715,40088044:0 +h1,5655:15593531,40088044:0,0,0 +k1,5655:32583029,40088044:16989498 +g1,5655:32583029,40088044 +) +(1,5655:6630773,40772899:25952256,424439,86428 +h1,5655:6630773,40772899:0,0,0 +g1,5655:7626635,40772899 +g1,5655:9286405,40772899 +g1,5655:9618359,40772899 +g1,5655:9950313,40772899 +g1,5655:10282267,40772899 +g1,5655:10946175,40772899 +g1,5655:11278129,40772899 +g1,5655:11610083,40772899 +g1,5655:11942037,40772899 +g1,5655:12605945,40772899 +g1,5655:12937899,40772899 +g1,5655:13269853,40772899 +g1,5655:13601807,40772899 +g1,5655:14265715,40772899 +g1,5655:14597669,40772899 +g1,5655:14929623,40772899 +h1,5655:15593531,40772899:0,0,0 +k1,5655:32583029,40772899:16989498 +g1,5655:32583029,40772899 +) +(1,5655:6630773,41457754:25952256,424439,86428 +h1,5655:6630773,41457754:0,0,0 +g1,5655:7626635,41457754 +g1,5655:9286405,41457754 +g1,5655:9618359,41457754 +g1,5655:9950313,41457754 +g1,5655:10282267,41457754 +g1,5655:10946175,41457754 +g1,5655:11278129,41457754 +g1,5655:11610083,41457754 +g1,5655:11942037,41457754 +g1,5655:12605945,41457754 +g1,5655:12937899,41457754 +g1,5655:13269853,41457754 +g1,5655:14265715,41457754 +g1,5655:14597669,41457754 +g1,5655:14929623,41457754 +h1,5655:15593531,41457754:0,0,0 +k1,5655:32583029,41457754:16989498 +g1,5655:32583029,41457754 +) +(1,5655:6630773,42142609:25952256,424439,86428 +h1,5655:6630773,42142609:0,0,0 +g1,5655:7626635,42142609 +g1,5655:9286405,42142609 +g1,5655:9618359,42142609 +g1,5655:9950313,42142609 +g1,5655:10282267,42142609 +g1,5655:10946175,42142609 +g1,5655:11278129,42142609 +g1,5655:11610083,42142609 +g1,5655:11942037,42142609 +g1,5655:12605945,42142609 +g1,5655:12937899,42142609 +g1,5655:13269853,42142609 +g1,5655:14265715,42142609 +g1,5655:14597669,42142609 +g1,5655:14929623,42142609 +h1,5655:15593531,42142609:0,0,0 +k1,5655:32583029,42142609:16989498 +g1,5655:32583029,42142609 +) +(1,5655:6630773,42827464:25952256,424439,86428 +h1,5655:6630773,42827464:0,0,0 +g1,5655:7626635,42827464 +g1,5655:9286405,42827464 +g1,5655:9618359,42827464 +g1,5655:9950313,42827464 +g1,5655:10282267,42827464 +g1,5655:10946175,42827464 +g1,5655:11278129,42827464 +g1,5655:11610083,42827464 +g1,5655:11942037,42827464 +g1,5655:12605945,42827464 +g1,5655:12937899,42827464 +g1,5655:13269853,42827464 +g1,5655:14265715,42827464 +g1,5655:14597669,42827464 +g1,5655:14929623,42827464 +h1,5655:15593531,42827464:0,0,0 +k1,5655:32583029,42827464:16989498 +g1,5655:32583029,42827464 +) +] +) +g1,5656:32583029,42913892 +g1,5656:6630773,42913892 +g1,5656:6630773,42913892 +g1,5656:32583029,42913892 +g1,5656:32583029,42913892 +) +h1,5656:6630773,43110500:0,0,0 +(1,5660:6630773,43975580:25952256,513147,126483 +h1,5659:6630773,43975580:983040,0,0 +g1,5659:9009729,43975580 +g1,5659:11495509,43975580 +g1,5659:12354030,43975580 +g1,5659:12909119,43975580 +g1,5659:15195670,43975580 +g1,5659:16499181,43975580 +g1,5659:17446176,43975580 +g1,5659:19555124,43975580 +g1,5659:20515881,43975580 +g1,5659:22783426,43975580 +g1,5659:23641947,43975580 +g1,5659:26536672,43975580 +(1,5659:26536672,43975580:0,452978,115847 +r1,5662:29005209,43975580:2468537,568825,115847 +k1,5659:26536672,43975580:-2468537 +) +(1,5659:26536672,43975580:2468537,452978,115847 +k1,5659:26536672,43975580:3277 +h1,5659:29001932,43975580:0,411205,112570 +) +k1,5660:32583029,43975580:3404150 +g1,5660:32583029,43975580 +) +] +(1,5662:32583029,45706769:0,0,0 +g1,5662:32583029,45706769 +) +) +] +(1,5662:6630773,47279633:25952256,0,0 +h1,5662:6630773,47279633:25952256,0,0 +) +] +(1,5662:4262630,4025873:0,0,0 +[1,5662:-473656,4025873:0,0,0 +(1,5662:-473656,-710413:0,0,0 +(1,5662:-473656,-710413:0,0,0 +g1,5662:-473656,-710413 +) +g1,5662:-473656,-710413 +) +] +) +] +!30748 +}91 +Input:812:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:813:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:814:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:815:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:816:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:817:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:818:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:819:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:820:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:821:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:822:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:823:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:824:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1220 +{92 +[1,5723:4262630,47279633:28320399,43253760,0 +(1,5723:4262630,4025873:0,0,0 +[1,5723:-473656,4025873:0,0,0 +(1,5723:-473656,-710413:0,0,0 +(1,5723:-473656,-644877:0,0,0 +k1,5723:-473656,-644877:-65536 ) +(1,5723:-473656,4736287:0,0,0 +k1,5723:-473656,4736287:5209943 ) -] -[1,6688:3078558,4812305:0,0,0 -(1,6688:3078558,49800853:0,16384,2228224 -g1,6688:29030814,49800853 -g1,6688:36135244,49800853 -(1,5950:36135244,49800853:1720320,16384,2228224 -(1,5950:36135244,52029077:16384,1703936,0 -[1,5950:36135244,52029077:25952256,1703936,0 -(1,5950:36135244,51504789:25952256,1179648,0 -(1,5950:36135244,51504789:16384,1179648,0 -r1,6688:36151628,51504789:16384,1179648,0 -) -k1,5950:62087500,51504789:25935872 -g1,5950:62087500,51504789 +g1,5723:-473656,-710413 ) ] ) -g1,5950:36675916,49800853 -(1,5950:36675916,49800853:1179648,16384,0 -r1,6688:37855564,49800853:1179648,16384,0 -) -) -k1,6688:3078556,49800853:-34777008 -) -] -g1,6688:6630773,4812305 -k1,6688:24358919,4812305:16931228 -g1,6688:25981590,4812305 -g1,6688:26804066,4812305 -g1,6688:30302377,4812305 -) -) -] -[1,6688:6630773,45706769:25952256,40108032,0 -(1,6688:6630773,45706769:25952256,40108032,0 -(1,6688:6630773,45706769:0,0,0 -g1,6688:6630773,45706769 -) -[1,6688:6630773,45706769:25952256,40108032,0 -(1,6584:6630773,6254097:25952256,32768,229376 -(1,6584:6630773,6254097:0,32768,229376 -(1,6584:6630773,6254097:5505024,32768,229376 -r1,6688:12135797,6254097:5505024,262144,229376 -) -k1,6584:6630773,6254097:-5505024 -) -(1,6584:6630773,6254097:25952256,32768,0 -r1,6688:32583029,6254097:25952256,32768,0 -) -) -(1,6584:6630773,7858425:25952256,615776,9436 -(1,6584:6630773,7858425:1974731,575668,0 -g1,6584:6630773,7858425 -g1,6584:8605504,7858425 -) -g1,6584:10655733,7858425 -k1,6584:32583030,7858425:19185008 -g1,6584:32583030,7858425 -) -(1,6588:6630773,9093129:25952256,513147,126483 -k1,6587:8245508,9093129:142796 -k1,6587:10594901,9093129:142796 -k1,6587:11729256,9093129:142795 -k1,6587:12227912,9093129:142796 -k1,6587:14564853,9093129:142796 -k1,6587:16093735,9093129:142796 -k1,6587:16895822,9093129:142795 -k1,6587:18205814,9093129:142796 -k1,6587:18964648,9093129:142796 -k1,6587:20992915,9093129:142796 -k1,6587:22587333,9093129:142796 -k1,6587:25268993,9093129:142795 -k1,6587:25943286,9093129:142796 -k1,6587:26441942,9093129:142796 -k1,6587:28562615,9093129:142796 -k1,6587:29388295,9093129:142795 -k1,6587:29886951,9093129:142796 -k1,6587:31923737,9093129:142796 -k1,6587:32583029,9093129:0 -) -(1,6588:6630773,9934617:25952256,513147,134348 -k1,6587:7824533,9934617:174675 -k1,6587:9652681,9934617:174675 -k1,6587:11840623,9934617:174676 -k1,6587:12905277,9934617:174675 -k1,6587:14926101,9934617:174675 -k1,6587:15456636,9934617:174675 -k1,6587:17718633,9934617:174675 -k1,6587:19287260,9934617:174676 -k1,6587:20481020,9934617:174675 -k1,6587:22309168,9934617:174675 -k1,6587:24969624,9934617:174675 -k1,6587:25803591,9934617:174675 -k1,6587:27512465,9934617:174676 -k1,6587:28373302,9934617:174675 -k1,6587:29567062,9934617:174675 -k1,6587:32583029,9934617:0 -) -(1,6588:6630773,10776105:25952256,513147,126483 -k1,6587:8231400,10776105:211264 -k1,6587:10699724,10776105:211264 -k1,6587:12468779,10776105:211264 -k1,6587:13671603,10776105:211264 -k1,6587:16084877,10776105:211264 -k1,6587:16947570,10776105:211265 -k1,6587:18760534,10776105:211264 -k1,6587:20361161,10776105:211264 -k1,6587:24828333,10776105:211264 -k1,6587:26231042,10776105:211264 -k1,6587:28996899,10776105:211264 -k1,6587:32583029,10776105:0 -) -(1,6588:6630773,11617593:25952256,505283,126483 -k1,6587:7517777,11617593:270966 -k1,6587:8377256,11617593:270966 -k1,6587:10206013,11617593:270966 -k1,6587:11468539,11617593:270966 -k1,6587:15083152,11617593:270966 -k1,6587:16867344,11617593:270966 -k1,6587:17789738,11617593:270966 -k1,6587:19678133,11617593:270966 -k1,6587:24194521,11617593:270966 -k1,6587:25190315,11617593:270966 -k1,6587:26745787,11617593:270966 -k1,6587:28708893,11617593:270966 -k1,6587:31693050,11617593:270966 -k1,6587:32583029,11617593:0 -) -(1,6588:6630773,12459081:25952256,513147,134348 -k1,6587:9426975,12459081:172796 -k1,6587:12648507,12459081:172797 -k1,6587:13812863,12459081:172796 -k1,6587:16605789,12459081:172797 -k1,6587:19086763,12459081:172796 -k1,6587:22621557,12459081:172797 -k1,6587:24804998,12459081:172796 -k1,6587:26545416,12459081:172797 -k1,6587:31391584,12459081:172796 -k1,6587:32583029,12459081:0 -) -(1,6588:6630773,13300569:25952256,513147,134348 -k1,6587:8873852,13300569:210808 -k1,6587:10076219,13300569:210807 -k1,6587:12511319,13300569:210808 -k1,6587:16034316,13300569:210807 -k1,6587:20235611,13300569:210808 -k1,6587:21713884,13300569:210807 -k1,6587:22280552,13300569:210808 -k1,6587:25376909,13300569:210807 -k1,6587:27081283,13300569:210808 -k1,6587:27978252,13300569:210807 -k1,6587:28544920,13300569:210808 -k1,6587:31900144,13300569:210807 -k1,6587:32583029,13300569:0 -) -(1,6588:6630773,14142057:25952256,505283,134348 -k1,6587:9976987,14142057:255536 -k1,6587:13067610,14142057:255536 -k1,6587:14427427,14142057:255535 -k1,6587:15968779,14142057:255536 -k1,6587:16972081,14142057:255536 -k1,6587:18995123,14142057:255536 -k1,6587:21062728,14142057:255535 -k1,6587:24679606,14142057:255536 -k1,6587:25618027,14142057:255536 -k1,6587:27943190,14142057:255536 -k1,6587:30680573,14142057:255535 -k1,6587:31563944,14142057:255536 -k1,6587:32583029,14142057:0 -) -(1,6588:6630773,14983545:25952256,513147,134348 -k1,6587:9473723,14983545:226753 -k1,6587:11568907,14983545:226753 -k1,6587:14178549,14983545:226753 -(1,6587:14178549,14983545:0,414482,115847 -r1,6688:17350509,14983545:3171960,530329,115847 -k1,6587:14178549,14983545:-3171960 -) -(1,6587:14178549,14983545:3171960,414482,115847 -k1,6587:14178549,14983545:3277 -h1,6587:17347232,14983545:0,411205,112570 -) -k1,6587:17577262,14983545:226753 -k1,6587:18335512,14983545:226753 -k1,6587:18918126,14983545:226754 -k1,6587:21038869,14983545:226753 -k1,6587:22659573,14983545:226753 -k1,6587:24058765,14983545:226753 -k1,6587:26077928,14983545:226753 -k1,6587:29205960,14983545:226753 -k1,6587:30605152,14983545:226753 -k1,6588:32583029,14983545:0 -) -(1,6588:6630773,15825033:25952256,505283,134348 -k1,6587:8656626,15825033:254415 -(1,6587:8656626,15825033:0,452978,115847 -r1,6688:9718315,15825033:1061689,568825,115847 -k1,6587:8656626,15825033:-1061689 -) -(1,6587:8656626,15825033:1061689,452978,115847 -k1,6587:8656626,15825033:3277 -h1,6587:9715038,15825033:0,411205,112570 -) -k1,6587:9972730,15825033:254415 -k1,6587:11418591,15825033:254416 -(1,6587:11418591,15825033:0,452978,115847 -r1,6688:12831992,15825033:1413401,568825,115847 -k1,6587:11418591,15825033:-1413401 -) -(1,6587:11418591,15825033:1413401,452978,115847 -k1,6587:11418591,15825033:3277 -h1,6587:12828715,15825033:0,411205,112570 -) -k1,6587:13260077,15825033:254415 -k1,6587:16349579,15825033:254415 -(1,6587:16349579,15825033:0,452978,122846 -r1,6688:18466404,15825033:2116825,575824,122846 -k1,6587:16349579,15825033:-2116825 -) -(1,6587:16349579,15825033:2116825,452978,122846 -k1,6587:16349579,15825033:3277 -h1,6587:18463127,15825033:0,411205,112570 -) -k1,6587:18720819,15825033:254415 -k1,6587:20166679,15825033:254415 -(1,6587:20166679,15825033:0,452978,122846 -r1,6688:22283504,15825033:2116825,575824,122846 -k1,6587:20166679,15825033:-2116825 -) -(1,6587:20166679,15825033:2116825,452978,122846 -k1,6587:20166679,15825033:3277 -h1,6587:22280227,15825033:0,411205,112570 -) -k1,6587:22537919,15825033:254415 -k1,6587:23783895,15825033:254416 -k1,6587:26658439,15825033:254415 -k1,6587:29221032,15825033:254415 -k1,6587:32583029,15825033:0 -) -(1,6588:6630773,16666521:25952256,426639,7863 -k1,6588:32583028,16666521:21105212 -g1,6588:32583028,16666521 -) -(1,6622:6630773,26383970:25952256,9033952,0 -k1,6622:9819607,26383970:3188834 -(1,6589:9819607,26383970:0,0,0 -g1,6589:9819607,26383970 -g1,6589:9819607,26383970 -g1,6589:9491927,26383970 -(1,6589:9491927,26383970:0,0,0 -) -g1,6589:9819607,26383970 -) -(1,6620:9819607,26383970:19574589,9033952,0 -g1,6620:15470864,26383970 -(1,6620:15470864,21724071:0,0,0 -(1,6602:15470864,21724071:0,0,0 -g1,6600:15470864,21724071 -g1,6601:15470864,21724071 -g1,6601:15470864,21724071 -g1,6601:15470864,21724071 -g1,6601:15470864,21724071 -g1,6602:15470864,21724071 -) -(1,6620:15470864,21724071:0,0,0 -g1,6594:15470864,21724071 -(1,6598:15470864,21724071:0,0,0 -(1,6598:15470864,21724071:0,0,0 -g1,6598:15470864,21724071 -g1,6598:15470864,21724071 -g1,6598:15470864,21724071 -g1,6598:15470864,21724071 -g1,6598:15470864,21724071 -(1,6598:15470864,21724071:0,0,0 -(1,6598:15470864,21724071:6983284,1035058,187851 -[1,6598:15470864,21724071:6983284,1035058,187851 -(1,6598:15470864,21252253:6983284,563240,184180 -g1,6597:15470864,21252253 -(1,6597:15470864,21252253:1120190,563240,184180 -k1,6597:16250373,21252253:779509 -g1,6597:16591054,21252253 -(1,6597:16591054,21252253:0,563240,174744 -(1,6597:16591054,21252253:0,0,0 -(1,6597:16591054,21252253:0,0,0 -g1,6597:16591054,21252253 -g1,6597:16591054,21252253 -g1,6597:16591054,21252253 -g1,6597:16591054,21252253 -g1,6597:16591054,21252253 -(1,6597:16591054,21252253:0,0,0 -(1,6597:16591054,21252253:331874,388497,0 -(1,6597:16591054,21252253:331874,388497,0 -) -g1,6597:16922928,21252253 -) -) -g1,6597:16591054,21252253 -g1,6597:16591054,21252253 -) -) -g1,6597:16591054,21252253 -) -) -g1,6597:16591054,21252253 -(1,6597:16591054,21252253:1120190,563240,184180 -g1,6597:16931735,21252253 -k1,6597:17711244,21252253:779509 -) -g1,6597:17711244,21252253 -(1,6597:17711244,21252253:1251262,563240,184180 -k1,6597:18490753,21252253:779509 -g1,6597:18962506,21252253 -(1,6597:18962506,21252253:0,563240,174744 -(1,6597:18962506,21252253:0,0,0 -(1,6597:18962506,21252253:0,0,0 -g1,6597:18962506,21252253 -g1,6597:18962506,21252253 -g1,6597:18962506,21252253 -g1,6597:18962506,21252253 -g1,6597:18962506,21252253 -(1,6597:18962506,21252253:0,0,0 -(1,6597:18962506,21252253:331874,388497,0 -(1,6597:18962506,21252253:331874,388497,0 -) -g1,6597:19294380,21252253 -) -) -g1,6597:18962506,21252253 -g1,6597:18962506,21252253 -) -) -g1,6597:18962506,21252253 -) -) -g1,6597:18962506,21252253 -(1,6597:18962506,21252253:1120190,563240,184180 -g1,6597:19303187,21252253 -k1,6597:20082696,21252253:779509 -) -g1,6597:20082696,21252253 -(1,6597:20082696,21252253:1251262,563240,184180 -k1,6597:20862205,21252253:779509 -g1,6597:21333958,21252253 -(1,6597:21333958,21252253:0,563240,184180 -(1,6597:21333958,21252253:0,0,0 -(1,6597:21333958,21252253:0,0,0 -g1,6597:21333958,21252253 -g1,6597:21333958,21252253 -g1,6597:21333958,21252253 -g1,6597:21333958,21252253 -g1,6597:21333958,21252253 -(1,6597:21333958,21252253:0,0,0 -(1,6597:21333958,21252253:331874,388497,9436 -(1,6597:21333958,21252253:331874,388497,9436 -) -g1,6597:21665832,21252253 -) -) -g1,6597:21333958,21252253 -g1,6597:21333958,21252253 -) -) -g1,6597:21333958,21252253 -) -) -g1,6597:21333958,21252253 -(1,6598:21333958,21252253:1120190,563240,184180 -g1,6598:21674639,21252253 -k1,6598:22454148,21252253:779509 +[1,5723:6630773,47279633:25952256,43253760,0 +[1,5723:6630773,4812305:25952256,786432,0 +(1,5723:6630773,4812305:25952256,473825,7863 +(1,5723:6630773,4812305:25952256,473825,7863 +g1,5723:3078558,4812305 +[1,5723:3078558,4812305:0,0,0 +(1,5723:3078558,2439708:0,1703936,0 +k1,5723:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,5723:2537886,2439708:1179648,16384,0 ) -g1,6598:22454148,21252253 +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,5723:3078558,1915420:16384,1179648,0 ) -(1,6598:15470864,21724071:6983284,194405,187851 -g1,6598:15470864,21724071 -(1,6598:15470864,21724071:1120190,194405,187851 -g1,6598:15470864,21724071 -g1,6598:16591054,21724071 -(1,6598:16591054,21724071:0,194405,187851 -(1,6598:16591054,21724071:0,0,0 -(1,6598:16591054,21724071:0,0,0 -g1,6598:16591054,21724071 -g1,6598:16591054,21724071 -g1,6598:16591054,21724071 -g1,6598:16591054,21724071 -g1,6598:16591054,21724071 -(1,6598:16591054,21724071:0,0,0 -(1,6598:16591054,21724071:1864679,6554,0 -(1,6598:16591054,21724071:1864679,6554,0 -(1,6598:16591054,21724071:1864679,6554,0 -r1,6688:18455733,21724071:1864679,6554,0 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) +] ) -g1,6598:18455733,21724071 ) ) -g1,6598:16591054,21724071 -g1,6598:16591054,21724071 +] +[1,5723:3078558,4812305:0,0,0 +(1,5723:3078558,2439708:0,1703936,0 +g1,5723:29030814,2439708 +g1,5723:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,5723:36151628,1915420:16384,1179648,0 ) +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) -g1,6598:16591054,21724071 +] ) +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,5723:37855564,2439708:1179648,16384,0 ) -g1,6598:16591054,21724071 -(1,6598:16591054,21724071:1120190,194405,187851 -g1,6598:17711244,21724071 -g1,6598:17711244,21724071 ) -g1,6598:17711244,21724071 -(1,6598:17711244,21724071:1251262,194405,187851 -g1,6598:17711244,21724071 -g1,6598:18962506,21724071 -(1,6598:18962506,21724071:0,194405,187851 -(1,6598:18962506,21724071:0,0,0 -(1,6598:18962506,21724071:0,0,0 -g1,6598:18962506,21724071 -g1,6598:18962506,21724071 -g1,6598:18962506,21724071 -g1,6598:18962506,21724071 -g1,6598:18962506,21724071 -(1,6598:18962506,21724071:0,0,0 -(1,6598:18962506,21724071:1864679,6554,0 -(1,6598:18962506,21724071:1864679,6554,0 -(1,6598:18962506,21724071:1864679,6554,0 -r1,6688:20827185,21724071:1864679,6554,0 +k1,5723:3078556,2439708:-34777008 ) +] +[1,5723:3078558,4812305:0,0,0 +(1,5723:3078558,49800853:0,16384,2228224 +k1,5723:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,5723:2537886,49800853:1179648,16384,0 ) -g1,6598:20827185,21724071 +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,5723:3078558,51504789:16384,1179648,0 ) +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) -g1,6598:18962506,21724071 -g1,6598:18962506,21724071 +] ) ) -g1,6598:18962506,21724071 ) +] +[1,5723:3078558,4812305:0,0,0 +(1,5723:3078558,49800853:0,16384,2228224 +g1,5723:29030814,49800853 +g1,5723:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,5723:36151628,51504789:16384,1179648,0 +) +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 +) +] +) +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,5723:37855564,49800853:1179648,16384,0 +) +) +k1,5723:3078556,49800853:-34777008 +) +] +g1,5723:6630773,4812305 +g1,5723:6630773,4812305 +g1,5723:9104757,4812305 +k1,5723:31786111,4812305:22681354 +) +) +] +[1,5723:6630773,45706769:25952256,40108032,0 +(1,5723:6630773,45706769:25952256,40108032,0 +(1,5723:6630773,45706769:0,0,0 +g1,5723:6630773,45706769 +) +[1,5723:6630773,45706769:25952256,40108032,0 +v1,5662:6630773,6254097:0,393216,0 +(1,5673:6630773,10123703:25952256,4262822,196608 +g1,5673:6630773,10123703 +g1,5673:6630773,10123703 +g1,5673:6434165,10123703 +(1,5673:6434165,10123703:0,4262822,196608 +r1,5723:32779637,10123703:26345472,4459430,196608 +k1,5673:6434165,10123703:-26345472 +) +(1,5673:6434165,10123703:26345472,4262822,196608 +[1,5673:6630773,10123703:25952256,4066214,0 +(1,5664:6630773,6481928:25952256,424439,86428 +(1,5663:6630773,6481928:0,0,0 +g1,5663:6630773,6481928 +g1,5663:6630773,6481928 +g1,5663:6303093,6481928 +(1,5663:6303093,6481928:0,0,0 +) +g1,5663:6630773,6481928 +) +g1,5664:8290543,6481928 +g1,5664:9286405,6481928 +g1,5664:13269853,6481928 +g1,5664:14265715,6481928 +g1,5664:15261577,6481928 +g1,5664:16257439,6481928 +g1,5664:17253301,6481928 +g1,5664:18249163,6481928 +g1,5664:19245025,6481928 +g1,5664:20240887,6481928 +g1,5664:21568703,6481928 +g1,5664:23228473,6481928 +g1,5664:23892381,6481928 +h1,5664:24556289,6481928:0,0,0 +k1,5664:32583029,6481928:8026740 +g1,5664:32583029,6481928 +) +(1,5665:6630773,7166783:25952256,424439,79822 +h1,5665:6630773,7166783:0,0,0 +k1,5665:6630773,7166783:0 +h1,5665:10282267,7166783:0,0,0 +k1,5665:32583029,7166783:22300762 +g1,5665:32583029,7166783 +) +(1,5672:6630773,7982710:25952256,424439,86428 +(1,5667:6630773,7982710:0,0,0 +g1,5667:6630773,7982710 +g1,5667:6630773,7982710 +g1,5667:6303093,7982710 +(1,5667:6303093,7982710:0,0,0 +) +g1,5667:6630773,7982710 +) +g1,5672:7626635,7982710 +g1,5672:7958589,7982710 +g1,5672:8290543,7982710 +g1,5672:8622497,7982710 +g1,5672:8954451,7982710 +g1,5672:9286405,7982710 +g1,5672:9618359,7982710 +g1,5672:9950313,7982710 +g1,5672:10282267,7982710 +g1,5672:10614221,7982710 +g1,5672:10946175,7982710 +g1,5672:11278129,7982710 +g1,5672:11610083,7982710 +g1,5672:13269853,7982710 +g1,5672:13601807,7982710 +g1,5672:13933761,7982710 +g1,5672:14265715,7982710 +g1,5672:14597669,7982710 +g1,5672:14929623,7982710 +g1,5672:15261577,7982710 +g1,5672:16921347,7982710 +g1,5672:17253301,7982710 +g1,5672:17585255,7982710 +g1,5672:17917209,7982710 +g1,5672:18249163,7982710 +g1,5672:18581117,7982710 +g1,5672:18913071,7982710 +k1,5672:18913071,7982710:0 +h1,5672:20240887,7982710:0,0,0 +k1,5672:32583029,7982710:12342142 +g1,5672:32583029,7982710 +) +(1,5672:6630773,8667565:25952256,424439,86428 +h1,5672:6630773,8667565:0,0,0 +g1,5672:7626635,8667565 +g1,5672:9286405,8667565 +g1,5672:9618359,8667565 +g1,5672:13269852,8667565 +g1,5672:13601806,8667565 +g1,5672:16921345,8667565 +k1,5672:16921345,8667565:0 +h1,5672:20240884,8667565:0,0,0 +k1,5672:32583029,8667565:12342145 +g1,5672:32583029,8667565 +) +(1,5672:6630773,9352420:25952256,424439,86428 +h1,5672:6630773,9352420:0,0,0 +g1,5672:7626635,9352420 +g1,5672:9286405,9352420 +g1,5672:13269852,9352420 +g1,5672:13601806,9352420 +g1,5672:16921345,9352420 +g1,5672:17253299,9352420 +h1,5672:20240884,9352420:0,0,0 +k1,5672:32583029,9352420:12342145 +g1,5672:32583029,9352420 +) +(1,5672:6630773,10037275:25952256,424439,86428 +h1,5672:6630773,10037275:0,0,0 +g1,5672:7626635,10037275 +g1,5672:9286405,10037275 +g1,5672:9618359,10037275 +g1,5672:13269852,10037275 +g1,5672:16921345,10037275 +g1,5672:17253299,10037275 +h1,5672:20240884,10037275:0,0,0 +k1,5672:32583029,10037275:12342145 +g1,5672:32583029,10037275 +) +] +) +g1,5673:32583029,10123703 +g1,5673:6630773,10123703 +g1,5673:6630773,10123703 +g1,5673:32583029,10123703 +g1,5673:32583029,10123703 +) +h1,5673:6630773,10320311:0,0,0 +(1,5677:6630773,11185391:25952256,513147,134348 +h1,5676:6630773,11185391:983040,0,0 +k1,5676:11396059,11185391:423526 +k1,5676:14896501,11185391:423527 +k1,5676:16511472,11185391:423526 +k1,5676:19960795,11185391:423526 +k1,5676:21331972,11185391:423526 +k1,5676:23842821,11185391:423527 +k1,5676:26593530,11185391:423526 +k1,5676:28163281,11185391:423526 +k1,5676:32583029,11185391:0 +) +(1,5677:6630773,12050471:25952256,505283,134348 +(1,5676:6837867,12050471:0,452978,115847 +r1,5723:10713251,12050471:3875384,568825,115847 +k1,5676:6837867,12050471:-3875384 +) +(1,5676:6837867,12050471:3875384,452978,115847 +k1,5676:6837867,12050471:3277 +h1,5676:10709974,12050471:0,411205,112570 +) +k1,5676:11106563,12050471:186218 +k1,5676:12484227,12050471:186219 +k1,5676:15571724,12050471:186218 +k1,5676:17092255,12050471:186218 +(1,5676:17299349,12050471:0,452978,115847 +r1,5723:19416174,12050471:2116825,568825,115847 +k1,5676:17299349,12050471:-2116825 +) +(1,5676:17299349,12050471:2116825,452978,115847 +k1,5676:17299349,12050471:3277 +h1,5676:19412897,12050471:0,411205,112570 +) +k1,5676:19809487,12050471:186219 +k1,5676:20987265,12050471:186218 +k1,5676:23957453,12050471:186219 +k1,5676:24759709,12050471:186218 +k1,5676:26379855,12050471:186218 +k1,5676:27154587,12050471:186219 +k1,5676:30379709,12050471:186218 +k1,5677:32583029,12050471:0 +) +(1,5677:6630773,12915551:25952256,513147,134348 +g1,5676:7820251,12915551 +g1,5676:12157422,12915551 +g1,5676:14786726,12915551 +g1,5676:18212948,12915551 +g1,5676:21437974,12915551 +g1,5676:22828648,12915551 +g1,5676:26104792,12915551 +g1,5676:27251672,12915551 +k1,5677:32583029,12915551:2424180 +g1,5677:32583029,12915551 +) +v1,5679:6630773,13780631:0,393216,0 +(1,5683:6630773,15069856:25952256,1682441,0 +g1,5683:6630773,15069856 +g1,5683:6237557,15069856 +r1,5723:6368629,15069856:131072,1682441,0 +g1,5683:6567858,15069856 +g1,5683:6764466,15069856 +[1,5683:6764466,15069856:25818563,1682441,0 +(1,5680:6764466,14088929:25818563,701514,196608 +(1,5679:6764466,14088929:0,701514,196608 +r1,5723:8010564,14088929:1246098,898122,196608 +k1,5679:6764466,14088929:-1246098 +) +(1,5679:6764466,14088929:1246098,701514,196608 +) +k1,5679:8200246,14088929:189682 +k1,5679:8527926,14088929:327680 +k1,5679:9914294,14088929:189681 +k1,5679:11600163,14088929:189682 +k1,5679:13658275,14088929:189681 +k1,5679:16532967,14088929:189682 +k1,5679:17488765,14088929:189682 +k1,5679:19968274,14088929:189681 +k1,5679:22228894,14088929:189682 +k1,5679:24162489,14088929:189682 +k1,5679:26360193,14088929:189681 +k1,5679:28618191,14088929:189682 +k1,5679:29799432,14088929:189681 +k1,5679:30605152,14088929:189682 +k1,5680:32583029,14088929:0 +) +(1,5680:6764466,14954009:25818563,452978,115847 +(1,5679:6764466,14954009:0,452978,115847 +r1,5723:9233003,14954009:2468537,568825,115847 +k1,5679:6764466,14954009:-2468537 +) +(1,5679:6764466,14954009:2468537,452978,115847 +k1,5679:6764466,14954009:3277 +h1,5679:9229726,14954009:0,411205,112570 +) +k1,5680:32583029,14954009:23176356 +g1,5680:32583029,14954009 +) +] +g1,5683:32583029,15069856 +) +h1,5683:6630773,15069856:0,0,0 +(1,5688:6630773,17901016:25952256,32768,229376 +(1,5688:6630773,17901016:0,32768,229376 +(1,5688:6630773,17901016:5505024,32768,229376 +r1,5723:12135797,17901016:5505024,262144,229376 +) +k1,5688:6630773,17901016:-5505024 +) +(1,5688:6630773,17901016:25952256,32768,0 +r1,5723:32583029,17901016:25952256,32768,0 +) +) +(1,5688:6630773,19532868:25952256,582746,14155 +(1,5688:6630773,19532868:2464678,582746,14155 +g1,5688:6630773,19532868 +g1,5688:9095451,19532868 +) +k1,5688:32583028,19532868:20599012 +g1,5688:32583028,19532868 +) +(1,5693:6630773,20791164:25952256,505283,126483 +k1,5692:7445564,20791164:186956 +k1,5692:9021883,20791164:186956 +k1,5692:11763433,20791164:186957 +k1,5692:13141834,20791164:186956 +k1,5692:16207131,20791164:186956 +k1,5692:17413172,20791164:186956 +k1,5692:21026350,20791164:186956 +k1,5692:23848509,20791164:186956 +k1,5692:26046111,20791164:186957 +k1,5692:29357824,20791164:186956 +k1,5692:30354150,20791164:186956 +k1,5693:32583029,20791164:0 +) +(1,5693:6630773,21656244:25952256,505283,126483 +k1,5692:8414850,21656244:229563 +k1,5692:9505556,21656244:229563 +k1,5692:12260877,21656244:229563 +k1,5692:14336591,21656244:229564 +k1,5692:15097651,21656244:229563 +k1,5692:17633426,21656244:229563 +k1,5692:18490824,21656244:229563 +k1,5692:19076247,21656244:229563 +k1,5692:22876211,21656244:229563 +k1,5692:24851653,21656244:229563 +k1,5692:26213024,21656244:229564 +k1,5692:28453232,21656244:229563 +k1,5692:29674355,21656244:229563 +k1,5692:30519956,21656244:229563 +k1,5692:32583029,21656244:0 +) +(1,5693:6630773,22521324:25952256,513147,134348 +g1,5692:9633632,22521324 +g1,5692:10460696,22521324 +g1,5692:11015785,22521324 +g1,5692:13740772,22521324 +g1,5692:15685880,22521324 +g1,5692:16904194,22521324 +g1,5692:21175175,22521324 +g1,5692:22365964,22521324 +g1,5692:24575838,22521324 +g1,5692:26342688,22521324 +g1,5692:26897777,22521324 +g1,5692:28230124,22521324 +k1,5693:32583029,22521324:949620 +g1,5693:32583029,22521324 +) +(1,5695:6630773,23386404:25952256,513147,7863 +h1,5694:6630773,23386404:983040,0,0 +k1,5694:8427972,23386404:186324 +k1,5694:11245567,23386404:186324 +k1,5694:12083319,23386404:186324 +k1,5694:13971612,23386404:186323 +k1,5694:17242060,23386404:186324 +k1,5694:20187450,23386404:186324 +k1,5694:20989812,23386404:186324 +k1,5694:23061607,23386404:186324 +k1,5694:23603791,23386404:186324 +k1,5694:26301454,23386404:186323 +k1,5694:27019275,23386404:186324 +k1,5694:28140142,23386404:186324 +k1,5694:29012628,23386404:186324 +k1,5694:32583029,23386404:0 +) +(1,5695:6630773,24251484:25952256,513147,134348 +k1,5694:7527383,24251484:213725 +k1,5694:10266867,24251484:213726 +k1,5694:12178630,24251484:213725 +k1,5694:14996100,24251484:213725 +k1,5694:15565685,24251484:213725 +k1,5694:17767118,24251484:213726 +k1,5694:18632271,24251484:213725 +k1,5694:19593762,24251484:213725 +k1,5694:21519943,24251484:213725 +k1,5694:22416554,24251484:213726 +k1,5694:24328317,24251484:213725 +k1,5694:26723736,24251484:213725 +k1,5694:27773045,24251484:213725 +k1,5694:28342631,24251484:213726 +k1,5694:29921471,24251484:213725 +k1,5694:30751234,24251484:213725 +k1,5694:31379788,24251484:213711 +k1,5694:32583029,24251484:0 +) +(1,5695:6630773,25116564:25952256,505283,126483 +k1,5694:10302906,25116564:245911 +k1,5694:11080315,25116564:245912 +k1,5694:13180895,25116564:245911 +k1,5694:14236176,25116564:245911 +k1,5694:17072726,25116564:245912 +k1,5694:18337722,25116564:245911 +k1,5694:22349332,25116564:245911 +k1,5694:25106583,25116564:245911 +k1,5694:25883992,25116564:245912 +(1,5694:25883992,25116564:0,452978,115847 +r1,5723:28352529,25116564:2468537,568825,115847 +k1,5694:25883992,25116564:-2468537 +) +(1,5694:25883992,25116564:2468537,452978,115847 +k1,5694:25883992,25116564:3277 +h1,5694:28349252,25116564:0,411205,112570 +) +k1,5694:28598440,25116564:245911 +k1,5694:32583029,25116564:0 +) +(1,5695:6630773,25981644:25952256,505283,126483 +k1,5694:7489730,25981644:176072 +k1,5694:8021663,25981644:176073 +(1,5694:8021663,25981644:0,459977,115847 +r1,5723:10138488,25981644:2116825,575824,115847 +k1,5694:8021663,25981644:-2116825 +) +(1,5694:8021663,25981644:2116825,459977,115847 +k1,5694:8021663,25981644:3277 +h1,5694:10135211,25981644:0,411205,112570 +) +k1,5694:10314560,25981644:176072 +k1,5694:13604248,25981644:176073 +k1,5694:15161164,25981644:176072 +k1,5694:18321746,25981644:176072 +k1,5694:20543853,25981644:176073 +k1,5694:22490052,25981644:176072 +k1,5694:25195815,25981644:176073 +k1,5694:25987925,25981644:176072 +k1,5694:27765698,25981644:176073 +k1,5694:29639152,25981644:176072 +k1,5695:32583029,25981644:0 +) +(1,5695:6630773,26846724:25952256,505283,134348 +k1,5694:7839694,26846724:218672 +k1,5694:8829068,26846724:218671 +k1,5694:12813439,26846724:218672 +k1,5694:15543451,26846724:218672 +k1,5694:16448284,26846724:218671 +k1,5694:20113494,26846724:218672 +k1,5694:21015051,26846724:218672 +k1,5694:22473663,26846724:218671 +k1,5694:25394384,26846724:218672 +k1,5694:26422426,26846724:218672 +k1,5694:27660182,26846724:218671 +k1,5694:30544859,26846724:218672 +k1,5694:32583029,26846724:0 +) +(1,5695:6630773,27711804:25952256,513147,134348 +k1,5694:9069695,27711804:229048 +k1,5694:10317829,27711804:229049 +k1,5694:12635509,27711804:229048 +k1,5694:13523849,27711804:229048 +k1,5694:14771982,27711804:229048 +k1,5694:18610099,27711804:229049 +k1,5694:19522032,27711804:229048 +k1,5694:22023869,27711804:229048 +k1,5694:22880752,27711804:229048 +k1,5694:24811771,27711804:229049 +k1,5694:27169428,27711804:229048 +k1,5694:29136491,27711804:229048 +k1,5694:32583029,27711804:0 +) +(1,5695:6630773,28576884:25952256,513147,126483 +k1,5694:7364694,28576884:202424 +k1,5694:7922977,28576884:202423 +k1,5694:10903472,28576884:202424 +k1,5694:11765187,28576884:202423 +k1,5694:12986696,28576884:202424 +k1,5694:14752153,28576884:202423 +k1,5694:16151264,28576884:202424 +k1,5694:18093013,28576884:202423 +k1,5694:18954729,28576884:202424 +k1,5694:20176238,28576884:202424 +k1,5694:22171071,28576884:202423 +k1,5694:22989533,28576884:202424 +k1,5694:23962659,28576884:202423 +k1,5694:27502176,28576884:202424 +(1,5694:27502176,28576884:0,459977,115847 +r1,5723:29619001,28576884:2116825,575824,115847 +k1,5694:27502176,28576884:-2116825 +) +(1,5694:27502176,28576884:2116825,459977,115847 +k1,5694:27502176,28576884:3277 +h1,5694:29615724,28576884:0,411205,112570 +) +k1,5694:29821424,28576884:202423 +k1,5694:31516758,28576884:202424 +k1,5694:32583029,28576884:0 +) +(1,5695:6630773,29441964:25952256,513147,126483 +k1,5694:8564740,29441964:154665 +k1,5694:10844082,29441964:154665 +k1,5694:14800490,29441964:154665 +k1,5694:15638040,29441964:154665 +k1,5694:16811790,29441964:154665 +k1,5694:18977100,29441964:154665 +k1,5694:21607715,29441964:154665 +k1,5694:22834548,29441964:154664 +k1,5694:23675375,29441964:154665 +k1,5694:24698392,29441964:154665 +k1,5694:25985519,29441964:154665 +k1,5694:27165167,29441964:154665 +k1,5694:27935870,29441964:154665 +k1,5694:30838460,29441964:154665 +h1,5694:31236919,29441964:0,0,0 +k1,5694:31391584,29441964:154665 +k1,5694:32583029,29441964:0 +) +(1,5695:6630773,30307044:25952256,513147,134348 +h1,5694:7029232,30307044:0,0,0 +k1,5694:7356350,30307044:153448 +k1,5694:7967895,30307044:153448 +k1,5694:9225624,30307044:153447 +k1,5694:11158374,30307044:153448 +k1,5694:12330907,30307044:153448 +k1,5694:15445927,30307044:153448 +k1,5694:17112600,30307044:153447 +k1,5694:18027576,30307044:153448 +k1,5694:19873164,30307044:153448 +k1,5694:21548358,30307044:153448 +k1,5694:22361098,30307044:153448 +k1,5694:26001716,30307044:153447 +k1,5694:27346609,30307044:153448 +k1,5694:28519142,30307044:153448 +k1,5694:32583029,30307044:0 +) +(1,5695:6630773,31172124:25952256,513147,134348 +g1,5694:7512887,31172124 +g1,5694:10656649,31172124 +g1,5694:11515170,31172124 +g1,5694:12733484,31172124 +g1,5694:14725123,31172124 +g1,5694:16668920,31172124 +g1,5694:18266687,31172124 +g1,5694:19657361,31172124 +g1,5694:21287896,31172124 +g1,5694:22103163,31172124 +k1,5695:32583029,31172124:8698597 +g1,5695:32583029,31172124 +) +(1,5697:6630773,32037204:25952256,513147,134348 +h1,5696:6630773,32037204:983040,0,0 +k1,5696:8456672,32037204:215024 +k1,5696:9442399,32037204:215024 +k1,5696:10072250,32037204:215008 +(1,5696:10072250,32037204:0,459977,115847 +r1,5723:12189075,32037204:2116825,575824,115847 +k1,5696:10072250,32037204:-2116825 +) +(1,5696:10072250,32037204:2116825,459977,115847 +k1,5696:10072250,32037204:3277 +h1,5696:12185798,32037204:0,411205,112570 +) +k1,5696:12577768,32037204:215023 +k1,5696:14803437,32037204:215024 +k1,5696:17550117,32037204:215024 +k1,5696:20290899,32037204:215024 +k1,5696:23843015,32037204:215023 +k1,5696:27461324,32037204:215024 +k1,5696:29278048,32037204:215024 +k1,5696:32583029,32037204:0 +) +(1,5697:6630773,32902284:25952256,505283,134348 +k1,5696:7876108,32902284:226250 +k1,5696:11577078,32902284:226251 +k1,5696:12419366,32902284:226250 +k1,5696:13416320,32902284:226251 +k1,5696:17425308,32902284:226250 +k1,5696:18334444,32902284:226251 +k1,5696:21790308,32902284:226250 +k1,5696:22632597,32902284:226251 +k1,5696:23214707,32902284:226250 +k1,5696:25713747,32902284:226251 +k1,5696:27928359,32902284:226250 +k1,5696:29258892,32902284:226251 +k1,5696:30232908,32902284:226250 +k1,5696:32583029,32902284:0 +) +(1,5697:6630773,33767364:25952256,513147,126483 +k1,5696:8645767,33767364:159014 +k1,5696:10372402,33767364:159014 +k1,5696:13712534,33767364:159014 +k1,5696:14554433,33767364:159014 +k1,5696:17688126,33767364:159014 +k1,5696:20328988,33767364:159014 +k1,5696:21684689,33767364:159014 +k1,5696:24606046,33767364:159014 +k1,5696:27395020,33767364:159014 +k1,5696:29564679,33767364:159014 +k1,5696:30715253,33767364:159014 +k1,5696:32583029,33767364:0 +) +(1,5697:6630773,34632444:25952256,505283,134348 +k1,5696:8763714,34632444:247471 +k1,5696:11329849,34632444:247471 +k1,5696:13927440,34632444:247470 +k1,5696:15568862,34632444:247471 +(1,5696:15568862,34632444:0,459977,115847 +r1,5723:18389111,34632444:2820249,575824,115847 +k1,5696:15568862,34632444:-2820249 +) +(1,5696:15568862,34632444:2820249,459977,115847 +k1,5696:15568862,34632444:3277 +h1,5696:18385834,34632444:0,411205,112570 +) +k1,5696:18636582,34632444:247471 +k1,5696:19875613,34632444:247471 +k1,5696:22252348,34632444:247470 +k1,5696:25836912,34632444:247471 +k1,5696:26767268,34632444:247471 +k1,5696:30634948,34632444:247471 +k1,5696:31297213,34632444:247422 +k1,5696:32583029,34632444:0 +) +(1,5697:6630773,35497524:25952256,513147,126483 +k1,5696:9625918,35497524:138431 +(1,5696:9625918,35497524:0,452978,115847 +r1,5723:12094455,35497524:2468537,568825,115847 +k1,5696:9625918,35497524:-2468537 +) +(1,5696:9625918,35497524:2468537,452978,115847 +k1,5696:9625918,35497524:3277 +h1,5696:12091178,35497524:0,411205,112570 +) +k1,5696:12232885,35497524:138430 +k1,5696:14769278,35497524:138431 +k1,5696:17257829,35497524:138430 +k1,5696:18790211,35497524:138431 +k1,5696:21624138,35497524:138431 +(1,5696:21624138,35497524:0,452978,115847 +r1,5723:24796098,35497524:3171960,568825,115847 +k1,5696:21624138,35497524:-3171960 +) +(1,5696:21624138,35497524:3171960,452978,115847 +k1,5696:21624138,35497524:3277 +h1,5696:24792821,35497524:0,411205,112570 +) +k1,5696:24934528,35497524:138430 +k1,5696:26466910,35497524:138431 +k1,5696:29342123,35497524:138430 +k1,5696:30861398,35497524:138431 +k1,5697:32583029,35497524:0 +) +(1,5697:6630773,36362604:25952256,513147,126483 +k1,5696:8320410,36362604:214422 +k1,5696:9731519,36362604:214422 +k1,5696:13545833,36362604:214421 +k1,5696:16604518,36362604:214422 +k1,5696:18194541,36362604:214422 +k1,5696:20518567,36362604:214422 +k1,5696:22063370,36362604:214422 +k1,5696:23657980,36362604:214422 +k1,5696:24863961,36362604:214421 +k1,5696:28668445,36362604:214422 +k1,5696:29498905,36362604:214422 +k1,5696:32583029,36362604:0 +) +(1,5697:6630773,37227684:25952256,505283,126483 +g1,5696:8351748,37227684 +g1,5696:9237139,37227684 +g1,5696:12565712,37227684 +g1,5696:13380979,37227684 +g1,5696:15997831,37227684 +h1,5696:16396290,37227684:0,0,0 +k1,5697:32583029,37227684:16013069 +g1,5697:32583029,37227684 +) +(1,5699:6630773,38092764:25952256,513147,134348 +h1,5698:6630773,38092764:983040,0,0 +k1,5698:9656854,38092764:259806 +k1,5698:11652052,38092764:259805 +(1,5698:11652052,38092764:0,459977,115847 +r1,5723:14472301,38092764:2820249,575824,115847 +k1,5698:11652052,38092764:-2820249 +) +(1,5698:11652052,38092764:2820249,459977,115847 +k1,5698:11652052,38092764:3277 +h1,5698:14469024,38092764:0,411205,112570 +) +k1,5698:14732107,38092764:259806 +k1,5698:15674798,38092764:259806 +(1,5698:15674798,38092764:0,452978,115847 +r1,5723:18846758,38092764:3171960,568825,115847 +k1,5698:15674798,38092764:-3171960 +) +(1,5698:15674798,38092764:3171960,452978,115847 +k1,5698:15674798,38092764:3277 +h1,5698:18843481,38092764:0,411205,112570 +) +k1,5698:19106563,38092764:259805 +k1,5698:20234721,38092764:259806 +k1,5698:22423907,38092764:259806 +k1,5698:23039573,38092764:259806 +k1,5698:25193368,38092764:259805 +k1,5698:27020795,38092764:259806 +k1,5698:27636461,38092764:259806 +k1,5698:30047813,38092764:259805 +k1,5698:31379788,38092764:259806 +k1,5698:32583029,38092764:0 +) +(1,5699:6630773,38957844:25952256,513147,126483 +k1,5698:8827868,38957844:219218 +k1,5698:10151368,38957844:219218 +k1,5698:11118351,38957844:219217 +k1,5698:13687690,38957844:219218 +k1,5698:16956954,38957844:219218 +k1,5698:18367617,38957844:219218 +k1,5698:22287652,38957844:219217 +k1,5698:23193032,38957844:219218 +k1,5698:25487775,38957844:219218 +k1,5698:26323031,38957844:219218 +k1,5698:27745489,38957844:219217 +k1,5698:30799794,38957844:219218 +k1,5698:32583029,38957844:0 +) +(1,5699:6630773,39822924:25952256,505283,134348 +k1,5698:7858732,39822924:208874 +k1,5698:10045483,39822924:208874 +k1,5698:10785853,39822924:208873 +(1,5698:10785853,39822924:0,452978,115847 +r1,5723:13254390,39822924:2468537,568825,115847 +k1,5698:10785853,39822924:-2468537 +) +(1,5698:10785853,39822924:2468537,452978,115847 +k1,5698:10785853,39822924:3277 +h1,5698:13251113,39822924:0,411205,112570 +) +k1,5698:13463264,39822924:208874 +k1,5698:14863583,39822924:208874 +k1,5698:15881827,39822924:208874 +k1,5698:17934883,39822924:208873 +k1,5698:19135317,39822924:208874 +k1,5698:22278893,39822924:208874 +k1,5698:23949875,39822924:208874 +k1,5698:26002931,39822924:208873 +k1,5698:27203365,39822924:208874 +k1,5698:30386918,39822924:208874 +k1,5698:32583029,39822924:0 +) +(1,5699:6630773,40688004:25952256,513147,134348 +g1,5698:9801404,40688004 +g1,5698:11019718,40688004 +g1,5698:14208699,40688004 +g1,5698:15604615,40688004 +g1,5698:18069424,40688004 +g1,5698:20998228,40688004 +g1,5698:21856749,40688004 +g1,5698:23075063,40688004 +g1,5698:25066702,40688004 +g1,5698:25797428,40688004 +k1,5699:32583029,40688004:1678380 +g1,5699:32583029,40688004 +) +v1,5701:6630773,41372859:0,393216,0 +(1,5723:6630773,45431392:25952256,4451749,196608 +g1,5723:6630773,45431392 +g1,5723:6630773,45431392 +g1,5723:6434165,45431392 +(1,5723:6434165,45431392:0,4451749,196608 +r1,5723:32779637,45431392:26345472,4648357,196608 +k1,5723:6434165,45431392:-26345472 +) +(1,5723:6434165,45431392:26345472,4451749,196608 +[1,5723:6630773,45431392:25952256,4255141,0 +(1,5703:6630773,41607296:25952256,431045,86428 +(1,5702:6630773,41607296:0,0,0 +g1,5702:6630773,41607296 +g1,5702:6630773,41607296 +g1,5702:6303093,41607296 +(1,5702:6303093,41607296:0,0,0 +) +g1,5702:6630773,41607296 +) +k1,5703:6630773,41607296:0 +g1,5703:9618359,41607296 +g1,5703:10282267,41607296 +g1,5703:11942037,41607296 +g1,5703:12937899,41607296 +g1,5703:13933761,41607296 +g1,5703:14929623,41607296 +g1,5703:15925485,41607296 +g1,5703:16921347,41607296 +h1,5703:17917209,41607296:0,0,0 +k1,5703:32583029,41607296:14665820 +g1,5703:32583029,41607296 +) +(1,5708:6630773,42423223:25952256,424439,79822 +(1,5705:6630773,42423223:0,0,0 +g1,5705:6630773,42423223 +g1,5705:6630773,42423223 +g1,5705:6303093,42423223 +(1,5705:6303093,42423223:0,0,0 +) +g1,5705:6630773,42423223 +) +g1,5708:7626635,42423223 +g1,5708:8954451,42423223 +g1,5708:9618359,42423223 +g1,5708:10282267,42423223 +g1,5708:10946175,42423223 +g1,5708:11610083,42423223 +g1,5708:12273991,42423223 +g1,5708:12937899,42423223 +h1,5708:13269853,42423223:0,0,0 +k1,5708:32583029,42423223:19313176 +g1,5708:32583029,42423223 +) +(1,5708:6630773,43108078:25952256,424439,6605 +h1,5708:6630773,43108078:0,0,0 +g1,5708:7626635,43108078 +g1,5708:10282267,43108078 +g1,5708:10946175,43108078 +h1,5708:11278129,43108078:0,0,0 +k1,5708:32583029,43108078:21304900 +g1,5708:32583029,43108078 +) +(1,5710:6630773,43924005:25952256,424439,86428 +(1,5709:6630773,43924005:0,0,0 +g1,5709:6630773,43924005 +g1,5709:6630773,43924005 +g1,5709:6303093,43924005 +(1,5709:6303093,43924005:0,0,0 +) +g1,5709:6630773,43924005 +) +k1,5710:6630773,43924005:0 +g1,5710:9950313,43924005 +g1,5710:10614221,43924005 +g1,5710:12273991,43924005 +g1,5710:13269853,43924005 +g1,5710:14265715,43924005 +g1,5710:15261577,43924005 +g1,5710:16257439,43924005 +g1,5710:17253301,43924005 +h1,5710:18249163,43924005:0,0,0 +k1,5710:32583029,43924005:14333866 +g1,5710:32583029,43924005 +) +(1,5715:6630773,44739932:25952256,424439,79822 +(1,5712:6630773,44739932:0,0,0 +g1,5712:6630773,44739932 +g1,5712:6630773,44739932 +g1,5712:6303093,44739932 +(1,5712:6303093,44739932:0,0,0 +) +g1,5712:6630773,44739932 +) +g1,5715:7626635,44739932 +g1,5715:8954451,44739932 +g1,5715:9618359,44739932 +g1,5715:10282267,44739932 +g1,5715:10946175,44739932 +g1,5715:11610083,44739932 +g1,5715:12273991,44739932 +g1,5715:12937899,44739932 +h1,5715:13269853,44739932:0,0,0 +k1,5715:32583029,44739932:19313176 +g1,5715:32583029,44739932 +) +(1,5715:6630773,45424787:25952256,424439,6605 +h1,5715:6630773,45424787:0,0,0 +g1,5715:7626635,45424787 +g1,5715:10282267,45424787 +g1,5715:10946175,45424787 +g1,5715:11610083,45424787 +h1,5715:11942037,45424787:0,0,0 +k1,5715:32583029,45424787:20640992 +g1,5715:32583029,45424787 +) +] +) +g1,5723:32583029,45431392 +g1,5723:6630773,45431392 +g1,5723:6630773,45431392 +g1,5723:32583029,45431392 +g1,5723:32583029,45431392 +) +] +(1,5723:32583029,45706769:0,0,0 +g1,5723:32583029,45706769 +) +) +] +(1,5723:6630773,47279633:25952256,0,0 +h1,5723:6630773,47279633:25952256,0,0 +) +] +(1,5723:4262630,4025873:0,0,0 +[1,5723:-473656,4025873:0,0,0 +(1,5723:-473656,-710413:0,0,0 +(1,5723:-473656,-710413:0,0,0 +g1,5723:-473656,-710413 +) +g1,5723:-473656,-710413 +) +] +) +] +!27262 +}92 +Input:825:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:826:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:827:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:828:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:829:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:830:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:831:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:832:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:833:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:834:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:835:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:836:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:837:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:838:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1313 +{93 +[1,5803:4262630,47279633:28320399,43253760,0 +(1,5803:4262630,4025873:0,0,0 +[1,5803:-473656,4025873:0,0,0 +(1,5803:-473656,-710413:0,0,0 +(1,5803:-473656,-644877:0,0,0 +k1,5803:-473656,-644877:-65536 ) -g1,6598:18962506,21724071 -(1,6598:18962506,21724071:1120190,194405,187851 -g1,6598:20082696,21724071 -g1,6598:20082696,21724071 +(1,5803:-473656,4736287:0,0,0 +k1,5803:-473656,4736287:5209943 ) -g1,6598:20082696,21724071 -(1,6598:20082696,21724071:1251262,194405,187851 -g1,6598:20082696,21724071 -g1,6598:21333958,21724071 -(1,6598:21333958,21724071:0,194405,187851 -(1,6598:21333958,21724071:0,0,0 -(1,6598:21333958,21724071:0,0,0 -g1,6598:21333958,21724071 -g1,6598:21333958,21724071 -g1,6598:21333958,21724071 -g1,6598:21333958,21724071 -g1,6598:21333958,21724071 -(1,6598:21333958,21724071:0,0,0 -(1,6598:21333958,21724071:1864679,6554,0 -(1,6598:21333958,21724071:1864679,6554,0 -(1,6598:21333958,21724071:1864679,6554,0 -r1,6688:23198637,21724071:1864679,6554,0 +g1,5803:-473656,-710413 ) +] ) -g1,6598:23198637,21724071 +[1,5803:6630773,47279633:25952256,43253760,0 +[1,5803:6630773,4812305:25952256,786432,0 +(1,5803:6630773,4812305:25952256,505283,11795 +(1,5803:6630773,4812305:25952256,505283,11795 +g1,5803:3078558,4812305 +[1,5803:3078558,4812305:0,0,0 +(1,5803:3078558,2439708:0,1703936,0 +k1,5803:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,5803:2537886,2439708:1179648,16384,0 ) +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,5803:3078558,1915420:16384,1179648,0 ) -g1,6598:21333958,21724071 -g1,6598:21333958,21724071 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) +] ) -g1,6598:21333958,21724071 ) ) -g1,6598:21333958,21724071 -(1,6598:21333958,21724071:1120190,194405,187851 -g1,6598:22454148,21724071 -g1,6598:22454148,21724071 +] +[1,5803:3078558,4812305:0,0,0 +(1,5803:3078558,2439708:0,1703936,0 +g1,5803:29030814,2439708 +g1,5803:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,5803:36151628,1915420:16384,1179648,0 ) -g1,6598:22454148,21724071 +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) ] ) +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,5803:37855564,2439708:1179648,16384,0 ) -g1,6598:15470864,21724071 -g1,6598:15470864,21724071 ) +k1,5803:3078556,2439708:-34777008 ) -g1,6598:15470864,21724071 -g1,6602:15470864,21724071 -g1,6602:15470864,21724071 -g1,6604:15470864,21724071 -(1,6604:15470864,21724071:0,0,0 -(1,6604:15470864,21724071:0,0,0 -g1,6604:15470864,21724071 -(1,6604:15470864,21724071:0,0,0 -(1,6604:15470864,21724071:1132032,469599,203132 -(1,6604:15470864,21724071:1132032,469599,203132 -(1,6604:15470864,21724071:0,469599,203132 -r1,6688:16602896,21724071:1132032,672731,203132 -k1,6604:15470864,21724071:-1132032 -) -(1,6604:15470864,21724071:1132032,469599,203132 -r1,6688:15474141,21724071:0,666177,199855 -h1,6604:16599619,21724071:0,328964,90056 +] +[1,5803:3078558,4812305:0,0,0 +(1,5803:3078558,49800853:0,16384,2228224 +k1,5803:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,5803:2537886,49800853:1179648,16384,0 ) +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,5803:3078558,51504789:16384,1179648,0 ) -g1,6604:16602896,21724071 +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) +] ) -g1,6604:15470864,21724071 -g1,6604:15470864,21724071 ) ) -(1,6605:15470864,21724071:0,0,0 -(1,6605:15470864,21724071:0,0,0 -g1,6605:15470864,21724071 -(1,6605:15470864,21724071:0,0,0 -(1,6605:15470864,21724071:2490892,199855,466322 -(1,6605:15470864,21724071:2490892,199855,466322 -(1,6605:15470864,21724071:2490892,199855,466322 -(1,6605:17961756,21724071:2490892,466322,199855 -(1,6605:17961756,21724071:2490892,466322,199855 -r1,6688:20452648,21724071:0,666177,199855 +] +[1,5803:3078558,4812305:0,0,0 +(1,5803:3078558,49800853:0,16384,2228224 +g1,5803:29030814,49800853 +g1,5803:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,5803:36151628,51504789:16384,1179648,0 ) +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 ) +] ) +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,5803:37855564,49800853:1179648,16384,0 ) -g1,6605:17961756,21724071 ) +k1,5803:3078556,49800853:-34777008 ) -g1,6605:15470864,21724071 -g1,6605:15470864,21724071 +] +g1,5803:6630773,4812305 +k1,5803:22348274,4812305:14920583 +g1,5803:23970945,4812305 +g1,5803:24793421,4812305 +g1,5803:27528893,4812305 +g1,5803:28938572,4812305 +) +) +] +[1,5803:6630773,45706769:25952256,40108032,0 +(1,5803:6630773,45706769:25952256,40108032,0 +(1,5803:6630773,45706769:0,0,0 +g1,5803:6630773,45706769 +) +[1,5803:6630773,45706769:25952256,40108032,0 +v1,5723:6630773,6254097:0,393216,0 +(1,5723:6630773,7995921:25952256,2135040,196608 +g1,5723:6630773,7995921 +g1,5723:6630773,7995921 +g1,5723:6434165,7995921 +(1,5723:6434165,7995921:0,2135040,196608 +r1,5803:32779637,7995921:26345472,2331648,196608 +k1,5723:6434165,7995921:-26345472 +) +(1,5723:6434165,7995921:26345472,2135040,196608 +[1,5723:6630773,7995921:25952256,1938432,0 +(1,5717:6630773,6488534:25952256,431045,86428 +(1,5716:6630773,6488534:0,0,0 +g1,5716:6630773,6488534 +g1,5716:6630773,6488534 +g1,5716:6303093,6488534 +(1,5716:6303093,6488534:0,0,0 +) +g1,5716:6630773,6488534 +) +k1,5717:6630773,6488534:0 +g1,5717:9618359,6488534 +g1,5717:10282267,6488534 +g1,5717:11942037,6488534 +g1,5717:12937899,6488534 +g1,5717:13933761,6488534 +g1,5717:14929623,6488534 +g1,5717:15925485,6488534 +g1,5717:16921347,6488534 +g1,5717:18249163,6488534 +g1,5717:20904795,6488534 +g1,5717:21568703,6488534 +h1,5717:23228473,6488534:0,0,0 +k1,5717:32583029,6488534:9354556 +g1,5717:32583029,6488534 +) +(1,5722:6630773,7304461:25952256,424439,79822 +(1,5719:6630773,7304461:0,0,0 +g1,5719:6630773,7304461 +g1,5719:6630773,7304461 +g1,5719:6303093,7304461 +(1,5719:6303093,7304461:0,0,0 +) +g1,5719:6630773,7304461 +) +g1,5722:7626635,7304461 +g1,5722:8954451,7304461 +g1,5722:9618359,7304461 +g1,5722:10282267,7304461 +g1,5722:10946175,7304461 +g1,5722:11610083,7304461 +g1,5722:12273991,7304461 +g1,5722:12937899,7304461 +h1,5722:13269853,7304461:0,0,0 +k1,5722:32583029,7304461:19313176 +g1,5722:32583029,7304461 +) +(1,5722:6630773,7989316:25952256,424439,6605 +h1,5722:6630773,7989316:0,0,0 +g1,5722:7626635,7989316 +g1,5722:10282267,7989316 +g1,5722:10946175,7989316 +g1,5722:11610083,7989316 +h1,5722:11942037,7989316:0,0,0 +k1,5722:32583029,7989316:20640992 +g1,5722:32583029,7989316 +) +] +) +g1,5723:32583029,7995921 +g1,5723:6630773,7995921 +g1,5723:6630773,7995921 +g1,5723:32583029,7995921 +g1,5723:32583029,7995921 +) +h1,5723:6630773,8192529:0,0,0 +v1,5727:6630773,9057609:0,393216,0 +(1,5747:6630773,20354857:25952256,11690464,0 +g1,5747:6630773,20354857 +g1,5747:6237557,20354857 +r1,5803:6368629,20354857:131072,11690464,0 +g1,5747:6567858,20354857 +g1,5747:6764466,20354857 +[1,5747:6764466,20354857:25818563,11690464,0 +(1,5728:6764466,9365907:25818563,701514,196608 +(1,5727:6764466,9365907:0,701514,196608 +r1,5803:8010564,9365907:1246098,898122,196608 +k1,5727:6764466,9365907:-1246098 +) +(1,5727:6764466,9365907:1246098,701514,196608 +) +k1,5727:8298029,9365907:287465 +k1,5727:8625709,9365907:327680 +k1,5727:10696410,9365907:287466 +k1,5727:12002960,9365907:287465 +k1,5727:14631372,9365907:287466 +k1,5727:15578129,9365907:287465 +k1,5727:17658005,9365907:287466 +k1,5727:18476967,9365907:287465 +k1,5727:21212202,9365907:287465 +k1,5727:21957765,9365907:287466 +k1,5727:22776727,9365907:287465 +k1,5727:25694153,9365907:287466 +k1,5727:26633046,9365907:287465 +k1,5727:28012997,9365907:287466 +k1,5727:30995958,9365907:287465 +(1,5727:30995958,9365907:0,452978,122846 +r1,5803:32409359,9365907:1413401,575824,122846 +k1,5727:30995958,9365907:-1413401 +) +(1,5727:30995958,9365907:1413401,452978,122846 +k1,5727:30995958,9365907:3277 +h1,5727:32406082,9365907:0,411205,112570 +) +k1,5727:32583029,9365907:0 +) +(1,5728:6764466,10230987:25818563,513147,134348 +k1,5727:9802762,10230987:272677 +k1,5727:11960908,10230987:272676 +k1,5727:12885013,10230987:272677 +k1,5727:16181521,10230987:272677 +k1,5727:16810057,10230987:272676 +k1,5727:19150395,10230987:272677 +k1,5727:22828323,10230987:272677 +k1,5727:23559096,10230987:272676 +k1,5727:24363270,10230987:272677 +k1,5727:26356921,10230987:272676 +k1,5727:27281026,10230987:272677 +k1,5727:28966004,10230987:272677 +k1,5727:30628043,10230987:272676 +k1,5727:32168186,10230987:272677 +k1,5728:32583029,10230987:0 +) +(1,5728:6764466,11096067:25818563,513147,134348 +k1,5727:8538689,11096067:206602 +k1,5727:10058634,11096067:206603 +k1,5727:10881274,11096067:206602 +k1,5727:12973347,11096067:206602 +k1,5727:14199035,11096067:206603 +k1,5727:17550054,11096067:206602 +k1,5727:19583144,11096067:206602 +k1,5727:20781307,11096067:206603 +k1,5727:23322301,11096067:206602 +k1,5727:26312872,11096067:206602 +k1,5727:27205637,11096067:206603 +k1,5727:30386918,11096067:206602 +k1,5727:32583029,11096067:0 +) +(1,5728:6764466,11961147:25818563,513147,122846 +k1,5727:7582194,11961147:134843 +k1,5727:10337167,11961147:134844 +k1,5727:12656325,11961147:134843 +k1,5727:15635432,11961147:134844 +k1,5727:17468313,11961147:134843 +k1,5727:18471508,11961147:134843 +k1,5727:20136618,11961147:134844 +k1,5727:20922889,11961147:134843 +k1,5727:22987113,11961147:134844 +k1,5727:23477816,11961147:134843 +k1,5727:25506649,11961147:134843 +k1,5727:27651482,11961147:134844 +k1,5727:28404985,11961147:134843 +(1,5727:28404985,11961147:0,452978,122846 +r1,5803:29818386,11961147:1413401,575824,122846 +k1,5727:28404985,11961147:-1413401 +) +(1,5727:28404985,11961147:1413401,452978,122846 +k1,5727:28404985,11961147:3277 +h1,5727:29815109,11961147:0,411205,112570 +) +k1,5727:29953230,11961147:134844 +k1,5727:31192355,11961147:134843 +k1,5727:32583029,11961147:0 +) +(1,5728:6764466,12826227:25818563,513147,134348 +k1,5727:8622631,12826227:166025 +k1,5727:10991320,12826227:166024 +k1,5727:11785180,12826227:166025 +k1,5727:13154445,12826227:166024 +k1,5727:14687551,12826227:166025 +k1,5727:17180758,12826227:166024 +k1,5727:18006075,12826227:166025 +k1,5727:20599553,12826227:166024 +k1,5727:21121438,12826227:166025 +k1,5727:23265339,12826227:166024 +k1,5727:24117526,12826227:166025 +k1,5727:27529548,12826227:166024 +k1,5727:28563925,12826227:166025 +k1,5727:30167154,12826227:166024 +k1,5727:30689039,12826227:166025 +k1,5728:32583029,12826227:0 +) +(1,5728:6764466,13691307:25818563,513147,134348 +k1,5727:7682261,13691307:266367 +k1,5727:9878008,13691307:266367 +k1,5727:10776142,13691307:266367 +(1,5727:10776142,13691307:0,414482,115847 +r1,5803:11134408,13691307:358266,530329,115847 +k1,5727:10776142,13691307:-358266 +) +(1,5727:10776142,13691307:358266,414482,115847 +k1,5727:10776142,13691307:3277 +h1,5727:11131131,13691307:0,411205,112570 +) +k1,5727:11400775,13691307:266367 +k1,5727:12198639,13691307:266367 +k1,5727:13484091,13691307:266367 +k1,5727:16236239,13691307:266367 +k1,5727:17161898,13691307:266367 +k1,5727:19394345,13691307:266367 +k1,5727:20852157,13691307:266367 +(1,5727:20852157,13691307:0,452978,115847 +r1,5803:21210423,13691307:358266,568825,115847 +k1,5727:20852157,13691307:-358266 +) +(1,5727:20852157,13691307:358266,452978,115847 +k1,5727:20852157,13691307:3277 +h1,5727:21207146,13691307:0,411205,112570 +) +k1,5727:21476790,13691307:266367 +k1,5727:22762242,13691307:266367 +k1,5727:25514390,13691307:266367 +k1,5727:26440049,13691307:266367 +k1,5727:30236185,13691307:266367 +k1,5727:32583029,13691307:0 +) +(1,5728:6764466,14556387:25818563,513147,134348 +k1,5727:9045522,14556387:206186 +k1,5727:12938763,14556387:206186 +k1,5727:13760987,14556387:206186 +k1,5727:14382009,14556387:206179 +k1,5727:19621360,14556387:206186 +k1,5727:21018991,14556387:206186 +(1,5727:21018991,14556387:0,452978,122846 +r1,5803:23135816,14556387:2116825,575824,122846 +k1,5727:21018991,14556387:-2116825 +) +(1,5727:21018991,14556387:2116825,452978,122846 +k1,5727:21018991,14556387:3277 +h1,5727:23132539,14556387:0,411205,112570 +) +k1,5727:23342001,14556387:206185 +k1,5727:24567272,14556387:206186 +k1,5727:26786724,14556387:206186 +k1,5727:27652202,14556387:206186 +k1,5727:28877473,14556387:206186 +k1,5727:30977649,14556387:206186 +k1,5727:31835263,14556387:206186 +k1,5727:32583029,14556387:0 +) +(1,5728:6764466,15421467:25818563,505283,7863 +k1,5728:32583029,15421467:23294772 +g1,5728:32583029,15421467 +) +v1,5730:6764466,16106322:0,393216,0 +(1,5745:6764466,20158249:25818563,4445143,196608 +g1,5745:6764466,20158249 +g1,5745:6764466,20158249 +g1,5745:6567858,20158249 +(1,5745:6567858,20158249:0,4445143,196608 +r1,5803:32779637,20158249:26211779,4641751,196608 +k1,5745:6567857,20158249:-26211780 +) +(1,5745:6567858,20158249:26211779,4445143,196608 +[1,5745:6764466,20158249:25818563,4248535,0 +(1,5732:6764466,16334153:25818563,424439,112852 +(1,5731:6764466,16334153:0,0,0 +g1,5731:6764466,16334153 +g1,5731:6764466,16334153 +g1,5731:6436786,16334153 +(1,5731:6436786,16334153:0,0,0 +) +g1,5731:6764466,16334153 +) +k1,5732:6764466,16334153:0 +g1,5732:8424236,16334153 +g1,5732:9088144,16334153 +g1,5732:10084006,16334153 +g1,5732:10747914,16334153 +g1,5732:11411822,16334153 +g1,5732:12407684,16334153 +g1,5732:14731362,16334153 +g1,5732:15395270,16334153 +g1,5732:17718948,16334153 +h1,5732:19378718,16334153:0,0,0 +k1,5732:32583029,16334153:13204311 +g1,5732:32583029,16334153 +) +(1,5737:6764466,17150080:25818563,424439,79822 +(1,5734:6764466,17150080:0,0,0 +g1,5734:6764466,17150080 +g1,5734:6764466,17150080 +g1,5734:6436786,17150080 +(1,5734:6436786,17150080:0,0,0 +) +g1,5734:6764466,17150080 +) +g1,5737:7760328,17150080 +g1,5737:8092282,17150080 +g1,5737:9420098,17150080 +g1,5737:10084006,17150080 +g1,5737:10747914,17150080 +g1,5737:11411822,17150080 +g1,5737:12075730,17150080 +g1,5737:12739638,17150080 +g1,5737:13403546,17150080 +g1,5737:14067454,17150080 +g1,5737:14731362,17150080 +g1,5737:15395270,17150080 +h1,5737:15727224,17150080:0,0,0 +k1,5737:32583028,17150080:16855804 +g1,5737:32583028,17150080 +) +(1,5737:6764466,17834935:25818563,424439,6605 +h1,5737:6764466,17834935:0,0,0 +g1,5737:7760328,17834935 +g1,5737:10415960,17834935 +g1,5737:11079868,17834935 +h1,5737:11411822,17834935:0,0,0 +k1,5737:32583030,17834935:21171208 +g1,5737:32583030,17834935 +) +(1,5739:6764466,18650862:25818563,424439,112852 +(1,5738:6764466,18650862:0,0,0 +g1,5738:6764466,18650862 +g1,5738:6764466,18650862 +g1,5738:6436786,18650862 +(1,5738:6436786,18650862:0,0,0 +) +g1,5738:6764466,18650862 +) +k1,5739:6764466,18650862:0 +g1,5739:8424236,18650862 +g1,5739:9088144,18650862 +g1,5739:10084006,18650862 +g1,5739:10747914,18650862 +g1,5739:11411822,18650862 +g1,5739:12407684,18650862 +g1,5739:14731362,18650862 +g1,5739:15395270,18650862 +g1,5739:16723086,18650862 +g1,5739:19046764,18650862 +g1,5739:19710672,18650862 +g1,5739:22034350,18650862 +h1,5739:23694120,18650862:0,0,0 +k1,5739:32583029,18650862:8888909 +g1,5739:32583029,18650862 +) +(1,5744:6764466,19466789:25818563,424439,79822 +(1,5741:6764466,19466789:0,0,0 +g1,5741:6764466,19466789 +g1,5741:6764466,19466789 +g1,5741:6436786,19466789 +(1,5741:6436786,19466789:0,0,0 +) +g1,5741:6764466,19466789 +) +g1,5744:7760328,19466789 +g1,5744:8092282,19466789 +g1,5744:9420098,19466789 +g1,5744:10084006,19466789 +g1,5744:10747914,19466789 +g1,5744:11411822,19466789 +g1,5744:12075730,19466789 +g1,5744:12739638,19466789 +g1,5744:13403546,19466789 +g1,5744:14067454,19466789 +g1,5744:14731362,19466789 +g1,5744:15395270,19466789 +h1,5744:15727224,19466789:0,0,0 +k1,5744:32583028,19466789:16855804 +g1,5744:32583028,19466789 +) +(1,5744:6764466,20151644:25818563,424439,6605 +h1,5744:6764466,20151644:0,0,0 +g1,5744:7760328,20151644 +g1,5744:10415960,20151644 +g1,5744:11079868,20151644 +h1,5744:11411822,20151644:0,0,0 +k1,5744:32583030,20151644:21171208 +g1,5744:32583030,20151644 +) +] +) +g1,5745:32583029,20158249 +g1,5745:6764466,20158249 +g1,5745:6764466,20158249 +g1,5745:32583029,20158249 +g1,5745:32583029,20158249 +) +h1,5745:6764466,20354857:0,0,0 +] +g1,5747:32583029,20354857 +) +h1,5747:6630773,20354857:0,0,0 +(1,5750:6630773,21219937:25952256,513147,134348 +h1,5749:6630773,21219937:983040,0,0 +k1,5749:8336819,21219937:253113 +k1,5749:9121429,21219937:253113 +k1,5749:11503807,21219937:253113 +k1,5749:15022580,21219937:253114 +k1,5749:15927121,21219937:253113 +k1,5749:17272719,21219937:253113 +k1,5749:21138832,21219937:253113 +k1,5749:23236128,21219937:253113 +k1,5749:24436892,21219937:253113 +k1,5749:26656086,21219937:253114 +k1,5749:28375895,21219937:253113 +k1,5749:29102833,21219937:253113 +k1,5749:29770735,21219937:253059 +k1,5749:31516758,21219937:253113 +k1,5749:32583029,21219937:0 +) +(1,5750:6630773,22085017:25952256,505283,126483 +k1,5749:9150325,22085017:227758 +k1,5749:10009851,22085017:227759 +k1,5749:11725932,22085017:227758 +k1,5749:12972775,22085017:227758 +k1,5749:15178410,22085017:227758 +k1,5749:15937666,22085017:227759 +k1,5749:18203594,22085017:227758 +k1,5749:19047390,22085017:227758 +k1,5749:19631008,22085017:227758 +k1,5749:22370107,22085017:227759 +k1,5749:24756621,22085017:227758 +(1,5749:24756621,22085017:0,414482,115847 +r1,5803:27928581,22085017:3171960,530329,115847 +k1,5749:24756621,22085017:-3171960 +) +(1,5749:24756621,22085017:3171960,414482,115847 +k1,5749:24756621,22085017:3277 +h1,5749:27925304,22085017:0,411205,112570 +) +k1,5749:28330009,22085017:227758 +k1,5749:29185602,22085017:227758 +k1,5749:29769221,22085017:227759 +k1,5749:31193666,22085017:227758 +k1,5749:32583029,22085017:0 +) +(1,5750:6630773,22950097:25952256,513147,126483 +k1,5749:9441752,22950097:256386 +k1,5749:12524706,22950097:256386 +k1,5749:13397130,22950097:256386 +k1,5749:15255217,22950097:256387 +k1,5749:17208985,22950097:256386 +k1,5749:18484456,22950097:256386 +k1,5749:20718719,22950097:256386 +k1,5749:22931355,22950097:256386 +k1,5749:24662956,22950097:256386 +k1,5749:26429292,22950097:256386 +k1,5749:28097980,22950097:256387 +k1,5749:29921987,22950097:256386 +k1,5749:30534233,22950097:256386 +k1,5749:31773659,22950097:256386 +k1,5749:32583029,22950097:0 +) +(1,5750:6630773,23815177:25952256,505283,134348 +g1,5749:8174801,23815177 +g1,5749:9565475,23815177 +g1,5749:11720954,23815177 +g1,5749:12667949,23815177 +k1,5750:32583029,23815177:17717002 +g1,5750:32583029,23815177 +) +v1,5752:6630773,24500032:0,393216,0 +(1,5761:6630773,26920105:25952256,2813289,196608 +g1,5761:6630773,26920105 +g1,5761:6630773,26920105 +g1,5761:6434165,26920105 +(1,5761:6434165,26920105:0,2813289,196608 +r1,5803:32779637,26920105:26345472,3009897,196608 +k1,5761:6434165,26920105:-26345472 +) +(1,5761:6434165,26920105:26345472,2813289,196608 +[1,5761:6630773,26920105:25952256,2616681,0 +(1,5754:6630773,24727863:25952256,424439,86428 +(1,5753:6630773,24727863:0,0,0 +g1,5753:6630773,24727863 +g1,5753:6630773,24727863 +g1,5753:6303093,24727863 +(1,5753:6303093,24727863:0,0,0 +) +g1,5753:6630773,24727863 +) +g1,5754:8290543,24727863 +g1,5754:9286405,24727863 +g1,5754:13601806,24727863 +g1,5754:17253299,24727863 +g1,5754:20904792,24727863 +g1,5754:24556285,24727863 +g1,5754:28207778,24727863 +h1,5754:31527317,24727863:0,0,0 +k1,5754:32583029,24727863:1055712 +g1,5754:32583029,24727863 +) +(1,5755:6630773,25412718:25952256,431045,79822 +h1,5755:6630773,25412718:0,0,0 +k1,5755:6630773,25412718:0 +h1,5755:10614221,25412718:0,0,0 +k1,5755:32583029,25412718:21968808 +g1,5755:32583029,25412718 +) +(1,5760:6630773,26228645:25952256,424439,79822 +(1,5757:6630773,26228645:0,0,0 +g1,5757:6630773,26228645 +g1,5757:6630773,26228645 +g1,5757:6303093,26228645 +(1,5757:6303093,26228645:0,0,0 +) +g1,5757:6630773,26228645 +) +g1,5760:7626635,26228645 +g1,5760:8954451,26228645 +g1,5760:11610083,26228645 +g1,5760:14265715,26228645 +g1,5760:16921347,26228645 +g1,5760:19576979,26228645 +g1,5760:22232611,26228645 +h1,5760:24556289,26228645:0,0,0 +k1,5760:32583029,26228645:8026740 +g1,5760:32583029,26228645 +) +(1,5760:6630773,26913500:25952256,424439,6605 +h1,5760:6630773,26913500:0,0,0 +g1,5760:7626635,26913500 +g1,5760:10282267,26913500 +g1,5760:12937899,26913500 +h1,5760:15261577,26913500:0,0,0 +k1,5760:32583029,26913500:17321452 +g1,5760:32583029,26913500 +) +] +) +g1,5761:32583029,26920105 +g1,5761:6630773,26920105 +g1,5761:6630773,26920105 +g1,5761:32583029,26920105 +g1,5761:32583029,26920105 +) +h1,5761:6630773,27116713:0,0,0 +(1,5765:6630773,27981793:25952256,513147,134348 +h1,5764:6630773,27981793:983040,0,0 +k1,5764:9105787,27981793:295287 +k1,5764:12130648,27981793:295286 +k1,5764:13085227,27981793:295287 +k1,5764:15172923,27981793:295286 +k1,5764:15999707,27981793:295287 +k1,5764:19905371,27981793:295286 +k1,5764:20813420,27981793:295287 +k1,5764:22127791,27981793:295286 +k1,5764:23848486,27981793:295287 +k1,5764:24499632,27981793:295286 +k1,5764:26688909,27981793:295287 +k1,5764:27515692,27981793:295286 +k1,5764:30334770,27981793:295287 +k1,5764:31821501,27981793:295286 +k1,5764:32583029,27981793:0 +) +(1,5765:6630773,28846873:25952256,513147,134348 +k1,5764:9164887,28846873:268534 +k1,5764:9964917,28846873:268533 +k1,5764:14259983,28846873:268534 +k1,5764:15909360,28846873:268533 +k1,5764:18443474,28846873:268534 +k1,5764:21441582,28846873:268533 +k1,5764:22369408,28846873:268534 +k1,5764:24430351,28846873:268533 +k1,5764:25230382,28846873:268534 +k1,5764:28803896,28846873:268533 +k1,5764:30138701,28846873:268534 +k1,5764:31426319,28846873:268533 +k1,5764:32583029,28846873:0 +) +(1,5765:6630773,29711953:25952256,513147,134348 +k1,5764:9282189,29711953:179398 +k1,5764:10415137,29711953:179399 +k1,5764:11698817,29711953:179398 +k1,5764:13315420,29711953:179398 +k1,5764:14265522,29711953:179399 +k1,5764:17517248,29711953:179398 +k1,5764:18348074,29711953:179398 +k1,5764:21808204,29711953:179398 +(1,5764:21808204,29711953:0,452978,115847 +r1,5803:23925029,29711953:2116825,568825,115847 +k1,5764:21808204,29711953:-2116825 +) +(1,5764:21808204,29711953:2116825,452978,115847 +k1,5764:21808204,29711953:3277 +h1,5764:23921752,29711953:0,411205,112570 +) +k1,5764:24104428,29711953:179399 +k1,5764:24943118,29711953:179398 +k1,5764:27818012,29711953:179398 +(1,5764:27818012,29711953:0,459977,115847 +r1,5803:30638261,29711953:2820249,575824,115847 +k1,5764:27818012,29711953:-2820249 +) +(1,5764:27818012,29711953:2820249,459977,115847 +k1,5764:27818012,29711953:3277 +h1,5764:30634984,29711953:0,411205,112570 +) +k1,5764:30817660,29711953:179399 +k1,5764:31648486,29711953:179398 +k1,5764:32583029,29711953:0 +) +(1,5765:6630773,30577033:25952256,513147,134348 +g1,5764:7185862,30577033 +g1,5764:10147434,30577033 +g1,5764:13076238,30577033 +g1,5764:13934759,30577033 +g1,5764:15153073,30577033 +k1,5765:32583029,30577033:15463876 +g1,5765:32583029,30577033 +) +v1,5767:6630773,31261888:0,393216,0 +(1,5775:6630773,33003712:25952256,2135040,196608 +g1,5775:6630773,33003712 +g1,5775:6630773,33003712 +g1,5775:6434165,33003712 +(1,5775:6434165,33003712:0,2135040,196608 +r1,5803:32779637,33003712:26345472,2331648,196608 +k1,5775:6434165,33003712:-26345472 +) +(1,5775:6434165,33003712:26345472,2135040,196608 +[1,5775:6630773,33003712:25952256,1938432,0 +(1,5769:6630773,31496325:25952256,431045,86428 +(1,5768:6630773,31496325:0,0,0 +g1,5768:6630773,31496325 +g1,5768:6630773,31496325 +g1,5768:6303093,31496325 +(1,5768:6303093,31496325:0,0,0 +) +g1,5768:6630773,31496325 +) +k1,5769:6630773,31496325:0 +g1,5769:9618359,31496325 +g1,5769:10282267,31496325 +g1,5769:12273991,31496325 +g1,5769:14597669,31496325 +g1,5769:15261577,31496325 +g1,5769:19576978,31496325 +h1,5769:23228471,31496325:0,0,0 +k1,5769:32583029,31496325:9354558 +g1,5769:32583029,31496325 +) +(1,5774:6630773,32312252:25952256,424439,79822 +(1,5771:6630773,32312252:0,0,0 +g1,5771:6630773,32312252 +g1,5771:6630773,32312252 +g1,5771:6303093,32312252 +(1,5771:6303093,32312252:0,0,0 +) +g1,5771:6630773,32312252 +) +g1,5774:7626635,32312252 +g1,5774:8954451,32312252 +g1,5774:11610083,32312252 +g1,5774:14265715,32312252 +g1,5774:16921347,32312252 +g1,5774:19576979,32312252 +g1,5774:22232611,32312252 +h1,5774:24556289,32312252:0,0,0 +k1,5774:32583029,32312252:8026740 +g1,5774:32583029,32312252 +) +(1,5774:6630773,32997107:25952256,424439,6605 +h1,5774:6630773,32997107:0,0,0 +g1,5774:7626635,32997107 +g1,5774:10282267,32997107 +g1,5774:12937899,32997107 +h1,5774:15261577,32997107:0,0,0 +k1,5774:32583029,32997107:17321452 +g1,5774:32583029,32997107 +) +] +) +g1,5775:32583029,33003712 +g1,5775:6630773,33003712 +g1,5775:6630773,33003712 +g1,5775:32583029,33003712 +g1,5775:32583029,33003712 +) +h1,5775:6630773,33200320:0,0,0 +(1,5779:6630773,34065400:25952256,513147,134348 +h1,5778:6630773,34065400:983040,0,0 +k1,5778:8975733,34065400:165233 +k1,5778:10985150,34065400:165234 +k1,5778:14233197,34065400:165233 +k1,5778:15057723,34065400:165234 +k1,5778:16242041,34065400:165233 +k1,5778:18199684,34065400:165233 +k1,5778:19469200,34065400:165234 +k1,5778:20382199,34065400:165233 +k1,5778:21481975,34065400:165233 +k1,5778:23345247,34065400:165234 +k1,5778:25600423,34065400:165233 +(1,5778:25600423,34065400:0,459977,115847 +r1,5803:28420672,34065400:2820249,575824,115847 +k1,5778:25600423,34065400:-2820249 +) +(1,5778:25600423,34065400:2820249,459977,115847 +k1,5778:25600423,34065400:3277 +h1,5778:28417395,34065400:0,411205,112570 +) +k1,5778:28759576,34065400:165234 +k1,5778:30274851,34065400:165233 +k1,5778:32583029,34065400:0 +) +(1,5779:6630773,34930480:25952256,505283,134348 +k1,5778:7758154,34930480:135821 +k1,5778:10099262,34930480:135821 +k1,5778:10921245,34930480:135821 +k1,5778:14459695,34930480:135821 +k1,5778:15246944,34930480:135821 +k1,5778:18993799,34930480:135821 +(1,5778:18993799,34930480:0,452978,115847 +r1,5803:21110624,34930480:2116825,568825,115847 +k1,5778:18993799,34930480:-2116825 +) +(1,5778:18993799,34930480:2116825,452978,115847 +k1,5778:18993799,34930480:3277 +h1,5778:21107347,34930480:0,411205,112570 +) +k1,5778:21246446,34930480:135822 +k1,5778:22573712,34930480:135821 +(1,5778:22573712,34930480:0,452978,115847 +r1,5803:24690537,34930480:2116825,568825,115847 +k1,5778:22573712,34930480:-2116825 +) +(1,5778:22573712,34930480:2116825,452978,115847 +k1,5778:22573712,34930480:3277 +h1,5778:24687260,34930480:0,411205,112570 +) +k1,5778:24826358,34930480:135821 +k1,5778:26356130,34930480:135821 +k1,5778:28284361,34930480:135821 +k1,5778:29611627,34930480:135821 +k1,5778:32583029,34930480:0 +) +(1,5779:6630773,35795560:25952256,505283,134348 +k1,5778:8679646,35795560:204690 +k1,5778:9500373,35795560:204689 +k1,5778:10724148,35795560:204690 +k1,5778:12582310,35795560:204689 +k1,5778:15574902,35795560:204690 +k1,5778:16976278,35795560:204689 +k1,5778:20253296,35795560:204690 +k1,5778:22663273,35795560:204690 +k1,5778:23519390,35795560:204689 +(1,5778:23519390,35795560:0,452978,115847 +r1,5803:25636215,35795560:2116825,568825,115847 +k1,5778:23519390,35795560:-2116825 +) +(1,5778:23519390,35795560:2116825,452978,115847 +k1,5778:23519390,35795560:3277 +h1,5778:25632938,35795560:0,411205,112570 +) +k1,5778:25840905,35795560:204690 +k1,5778:29619928,35795560:204689 +k1,5778:30843703,35795560:204690 +k1,5778:32583029,35795560:0 +) +(1,5779:6630773,36660640:25952256,513147,134348 +k1,5778:7429830,36660640:139765 +k1,5778:8588681,36660640:139766 +k1,5778:10520856,36660640:139765 +k1,5778:12515291,36660640:139766 +k1,5778:13464426,36660640:139765 +k1,5778:15112830,36660640:139765 +k1,5778:16272992,36660640:139766 +k1,5778:18481073,36660640:139765 +k1,5778:19303724,36660640:139766 +k1,5778:21627804,36660640:139765 +k1,5778:22959014,36660640:139765 +k1,5778:24117865,36660640:139766 +k1,5778:27329958,36660640:139765 +k1,5778:29675011,36660640:139766 +k1,5778:30466204,36660640:139765 +(1,5778:30466204,36660640:0,452978,115847 +r1,5803:32583029,36660640:2116825,568825,115847 +k1,5778:30466204,36660640:-2116825 +) +(1,5778:30466204,36660640:2116825,452978,115847 +k1,5778:30466204,36660640:3277 +h1,5778:32579752,36660640:0,411205,112570 +) +k1,5778:32583029,36660640:0 +) +(1,5779:6630773,37525720:25952256,505283,134348 +g1,5778:8440222,37525720 +g1,5778:9922646,37525720 +g1,5778:12190191,37525720 +g1,5778:13040848,37525720 +g1,5778:14259162,37525720 +k1,5779:32583029,37525720:16357787 +g1,5779:32583029,37525720 +) +v1,5781:6630773,38210575:0,393216,0 +(1,5789:6630773,40637254:25952256,2819895,196608 +g1,5789:6630773,40637254 +g1,5789:6630773,40637254 +g1,5789:6434165,40637254 +(1,5789:6434165,40637254:0,2819895,196608 +r1,5803:32779637,40637254:26345472,3016503,196608 +k1,5789:6434165,40637254:-26345472 +) +(1,5789:6434165,40637254:26345472,2819895,196608 +[1,5789:6630773,40637254:25952256,2623287,0 +(1,5783:6630773,38445012:25952256,431045,86428 +(1,5782:6630773,38445012:0,0,0 +g1,5782:6630773,38445012 +g1,5782:6630773,38445012 +g1,5782:6303093,38445012 +(1,5782:6303093,38445012:0,0,0 +) +g1,5782:6630773,38445012 +) +k1,5783:6630773,38445012:0 +k1,5783:9872312,38445012:585907 +k1,5783:10790172,38445012:585906 +k1,5783:13367803,38445012:585907 +k1,5783:15281525,38445012:585906 +k1,5783:17195248,38445012:585907 +k1,5783:19108970,38445012:585906 +k1,5783:21022693,38445012:585907 +k1,5783:23268369,38445012:585906 +k1,5783:25846000,38445012:585907 +k1,5783:26763860,38445012:585906 +k1,5783:29341491,38445012:585907 +k1,5783:31587167,38445012:585906 +k1,5783:32583029,38445012:0 +) +(1,5783:6630773,39129867:25952256,424439,86428 +g1,5783:8290543,39129867 +g1,5783:8954451,39129867 +g1,5783:13269852,39129867 +h1,5783:16921345,39129867:0,0,0 +k1,5783:32583029,39129867:15661684 +g1,5783:32583029,39129867 +) +(1,5788:6630773,39945794:25952256,424439,79822 +(1,5785:6630773,39945794:0,0,0 +g1,5785:6630773,39945794 +g1,5785:6630773,39945794 +g1,5785:6303093,39945794 +(1,5785:6303093,39945794:0,0,0 +) +g1,5785:6630773,39945794 +) +g1,5788:7626635,39945794 +g1,5788:8954451,39945794 +g1,5788:11610083,39945794 +g1,5788:14265715,39945794 +g1,5788:16921347,39945794 +g1,5788:19576979,39945794 +g1,5788:22232611,39945794 +h1,5788:24556289,39945794:0,0,0 +k1,5788:32583029,39945794:8026740 +g1,5788:32583029,39945794 +) +(1,5788:6630773,40630649:25952256,424439,6605 +h1,5788:6630773,40630649:0,0,0 +g1,5788:7626635,40630649 +g1,5788:10282267,40630649 +g1,5788:12937899,40630649 +h1,5788:15261577,40630649:0,0,0 +k1,5788:32583029,40630649:17321452 +g1,5788:32583029,40630649 +) +] +) +g1,5789:32583029,40637254 +g1,5789:6630773,40637254 +g1,5789:6630773,40637254 +g1,5789:32583029,40637254 +g1,5789:32583029,40637254 +) +h1,5789:6630773,40833862:0,0,0 +(1,5793:6630773,41698942:25952256,505283,134348 +h1,5792:6630773,41698942:983040,0,0 +k1,5792:9080962,41698942:270462 +k1,5792:12423752,41698942:270462 +k1,5792:14899501,41698942:270462 +k1,5792:15821390,41698942:270461 +k1,5792:17936035,41698942:270462 +k1,5792:19310779,41698942:270462 +k1,5792:20329007,41698942:270462 +k1,5792:20955329,41698942:270462 +k1,5792:23384547,41698942:270462 +k1,5792:25632886,41698942:270462 +k1,5792:27187853,41698942:270461 +k1,5792:29185189,41698942:270462 +k1,5792:30738846,41698942:270462 +k1,5792:32583029,41698942:0 +) +(1,5793:6630773,42564022:25952256,505283,134348 +k1,5792:8351436,42564022:259865 +k1,5792:9630387,42564022:259866 +k1,5792:11900897,42564022:259865 +k1,5792:12846925,42564022:259866 +k1,5792:15144960,42564022:259865 +k1,5792:16020864,42564022:259866 +k1,5792:17299814,42564022:259865 +k1,5792:19537556,42564022:259865 +k1,5792:22002709,42564022:259866 +k1,5792:22948736,42564022:259865 +k1,5792:26280930,42564022:259866 +k1,5792:27192223,42564022:259865 +k1,5792:30732821,42564022:259866 +(1,5792:30732821,42564022:0,414482,115847 +r1,5803:31091087,42564022:358266,530329,115847 +k1,5792:30732821,42564022:-358266 +) +(1,5792:30732821,42564022:358266,414482,115847 +k1,5792:30732821,42564022:3277 +h1,5792:31087810,42564022:0,411205,112570 +) +k1,5792:31350952,42564022:259865 +k1,5792:32583029,42564022:0 +) +(1,5793:6630773,43429102:25952256,505283,134348 +g1,5792:8988758,43429102 +g1,5792:11496165,43429102 +g1,5792:12886839,43429102 +g1,5792:15893630,43429102 +g1,5792:16902229,43429102 +g1,5792:18599611,43429102 +h1,5792:19396529,43429102:0,0,0 +k1,5793:32583029,43429102:12805736 +g1,5793:32583029,43429102 +) +v1,5795:6630773,44113957:0,393216,0 +(1,5803:6630773,45033249:25952256,1312508,196608 +g1,5803:6630773,45033249 +g1,5803:6630773,45033249 +g1,5803:6434165,45033249 +(1,5803:6434165,45033249:0,1312508,196608 +r1,5803:32779637,45033249:26345472,1509116,196608 +k1,5803:6434165,45033249:-26345472 +) +(1,5803:6434165,45033249:26345472,1312508,196608 +[1,5803:6630773,45033249:25952256,1115900,0 +(1,5797:6630773,44348394:25952256,431045,86428 +(1,5796:6630773,44348394:0,0,0 +g1,5796:6630773,44348394 +g1,5796:6630773,44348394 +g1,5796:6303093,44348394 +(1,5796:6303093,44348394:0,0,0 +) +g1,5796:6630773,44348394 +) +k1,5797:6630773,44348394:0 +k1,5797:9600218,44348394:313813 +k1,5797:10245986,44348394:313814 +k1,5797:12551523,44348394:313813 +k1,5797:14193153,44348394:313814 +k1,5797:15834782,44348394:313813 +k1,5797:17476411,44348394:313813 +k1,5797:19118041,44348394:313814 +k1,5797:21091624,44348394:313813 +k1,5797:23397162,44348394:313814 +k1,5797:24042929,44348394:313813 +k1,5797:25352604,44348394:313813 +k1,5797:25998372,44348394:313814 +k1,5797:29631724,44348394:313813 +k1,5797:30277492,44348394:313814 +k1,5797:30923259,44348394:313813 +k1,5797:32583029,44348394:0 +) +(1,5797:6630773,45033249:25952256,424439,79822 +h1,5797:8954451,45033249:0,0,0 +k1,5797:32583029,45033249:23628578 +g1,5797:32583029,45033249 +) +] +) +g1,5803:32583029,45033249 +g1,5803:6630773,45033249 +g1,5803:6630773,45033249 +g1,5803:32583029,45033249 +g1,5803:32583029,45033249 +) +] +(1,5803:32583029,45706769:0,0,0 +g1,5803:32583029,45706769 +) +) +] +(1,5803:6630773,47279633:25952256,0,0 +h1,5803:6630773,47279633:25952256,0,0 +) +] +(1,5803:4262630,4025873:0,0,0 +[1,5803:-473656,4025873:0,0,0 +(1,5803:-473656,-710413:0,0,0 +(1,5803:-473656,-710413:0,0,0 +g1,5803:-473656,-710413 +) +g1,5803:-473656,-710413 +) +] +) +] +!31373 +}93 +Input:839:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:840:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:841:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:842:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:843:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:844:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:845:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:846:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:847:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:848:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!941 +{94 +[1,5922:4262630,47279633:28320399,43253760,0 +(1,5922:4262630,4025873:0,0,0 +[1,5922:-473656,4025873:0,0,0 +(1,5922:-473656,-710413:0,0,0 +(1,5922:-473656,-644877:0,0,0 +k1,5922:-473656,-644877:-65536 ) +(1,5922:-473656,4736287:0,0,0 +k1,5922:-473656,4736287:5209943 ) -(1,6606:15470864,21724071:0,0,0 -(1,6606:15470864,21724071:0,0,0 -g1,6606:15470864,21724071 -(1,6606:15470864,21724071:0,0,0 -(1,6606:15470864,21724071:1616380,199855,466322 -(1,6606:15470864,21724071:1616380,199855,466322 -(1,6606:15470864,21724071:1616380,199855,466322 -(1,6606:17087244,21724071:1616380,466322,199855 -(1,6606:17087244,21724071:1616380,466322,199855 -r1,6688:18703624,21724071:0,666177,199855 +g1,5922:-473656,-710413 ) +] ) +[1,5922:6630773,47279633:25952256,43253760,0 +[1,5922:6630773,4812305:25952256,786432,0 +(1,5922:6630773,4812305:25952256,485622,11795 +(1,5922:6630773,4812305:25952256,485622,11795 +g1,5922:3078558,4812305 +[1,5922:3078558,4812305:0,0,0 +(1,5922:3078558,2439708:0,1703936,0 +k1,5922:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,5922:2537886,2439708:1179648,16384,0 ) +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,5922:3078558,1915420:16384,1179648,0 ) -g1,6606:17087244,21724071 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) +] ) -g1,6606:15470864,21724071 -g1,6606:15470864,21724071 ) ) -(1,6607:15470864,21724071:0,0,0 -(1,6607:15470864,21724071:0,0,0 -g1,6607:15470864,21724071 -(1,6607:15470864,21724071:0,0,0 -(1,6607:15470864,21724071:1695023,199855,466322 -(1,6607:15470864,21724071:1695023,199855,466322 -(1,6607:15470864,21724071:1695023,199855,466322 -(1,6607:17165887,21724071:1695023,466322,199855 -(1,6607:17165887,21724071:1695023,466322,199855 -r1,6688:18860910,21724071:0,666177,199855 +] +[1,5922:3078558,4812305:0,0,0 +(1,5922:3078558,2439708:0,1703936,0 +g1,5922:29030814,2439708 +g1,5922:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,5922:36151628,1915420:16384,1179648,0 ) +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) +] ) +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,5922:37855564,2439708:1179648,16384,0 ) -g1,6607:17165887,21724071 ) +k1,5922:3078556,2439708:-34777008 ) -g1,6607:15470864,21724071 -g1,6607:15470864,21724071 +] +[1,5922:3078558,4812305:0,0,0 +(1,5922:3078558,49800853:0,16384,2228224 +k1,5922:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,5922:2537886,49800853:1179648,16384,0 ) +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,5922:3078558,51504789:16384,1179648,0 ) -g1,6607:15470864,21724071 -g1,6609:15470864,21724071 -(1,6609:15470864,21724071:0,0,0 -(1,6609:15470864,21724071:0,0,0 -g1,6609:15470864,21724071 -g1,6609:15470864,21724071 -g1,6609:15470864,21724071 -g1,6609:15470864,21724071 -g1,6609:15470864,21724071 -(1,6609:15470864,21724071:0,0,0 -(1,6609:15470864,21724071:6599312,404226,101187 -(1,6609:15470864,21724071:6599312,404226,101187 -(1,6609:15470864,21724071:0,363038,98932 -r1,6688:17447004,21724071:1976140,461970,98932 -k1,6609:15470864,21724071:-1976140 +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) -(1,6609:15470864,21724071:1976140,363038,98932 -k1,6609:15470864,21724071:3277 -h1,6609:17443727,21724071:0,328964,90056 +] ) -g1,6609:17612679,21724071 -g1,6609:20284451,21724071 ) -g1,6609:22070176,21724071 ) +] +[1,5922:3078558,4812305:0,0,0 +(1,5922:3078558,49800853:0,16384,2228224 +g1,5922:29030814,49800853 +g1,5922:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,5922:36151628,51504789:16384,1179648,0 ) -g1,6609:15470864,21724071 -g1,6609:15470864,21724071 +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 ) +] ) -g1,6609:15470864,21724071 -g1,6610:15470864,21724071 -(1,6610:15470864,21724071:0,0,0 -(1,6610:15470864,21724071:0,0,0 -g1,6610:15470864,21724071 -g1,6610:15470864,21724071 -g1,6610:15470864,21724071 -g1,6610:15470864,21724071 -g1,6610:15470864,21724071 -(1,6610:15470864,21724071:0,0,0 -(1,6610:15470864,21724071:8577352,404226,107478 -(1,6610:15470864,21724071:8577352,404226,107478 -g1,6610:19349547,21724071 -g1,6610:20923984,21724071 -g1,6610:22431836,21724071 +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,5922:37855564,49800853:1179648,16384,0 ) -g1,6610:24048216,21724071 ) +k1,5922:3078556,49800853:-34777008 ) -g1,6610:15470864,21724071 -g1,6610:15470864,21724071 +] +g1,5922:6630773,4812305 +g1,5922:6630773,4812305 +g1,5922:9104757,4812305 +k1,5922:31786111,4812305:22681354 +) +) +] +[1,5922:6630773,45706769:25952256,40108032,0 +(1,5922:6630773,45706769:25952256,40108032,0 +(1,5922:6630773,45706769:0,0,0 +g1,5922:6630773,45706769 +) +[1,5922:6630773,45706769:25952256,40108032,0 +v1,5803:6630773,6254097:0,393216,0 +(1,5803:6630773,7173388:25952256,1312507,196608 +g1,5803:6630773,7173388 +g1,5803:6630773,7173388 +g1,5803:6434165,7173388 +(1,5803:6434165,7173388:0,1312507,196608 +r1,5922:32779637,7173388:26345472,1509115,196608 +k1,5803:6434165,7173388:-26345472 ) +(1,5803:6434165,7173388:26345472,1312507,196608 +[1,5803:6630773,7173388:25952256,1115899,0 +(1,5802:6630773,6481928:25952256,424439,79822 +(1,5799:6630773,6481928:0,0,0 +g1,5799:6630773,6481928 +g1,5799:6630773,6481928 +g1,5799:6303093,6481928 +(1,5799:6303093,6481928:0,0,0 +) +g1,5799:6630773,6481928 +) +g1,5802:7626635,6481928 +g1,5802:8954451,6481928 +g1,5802:11610083,6481928 +g1,5802:14265715,6481928 +g1,5802:16921347,6481928 +g1,5802:19576979,6481928 +g1,5802:22232611,6481928 +h1,5802:24556289,6481928:0,0,0 +k1,5802:32583029,6481928:8026740 +g1,5802:32583029,6481928 +) +(1,5802:6630773,7166783:25952256,424439,6605 +h1,5802:6630773,7166783:0,0,0 +g1,5802:7626635,7166783 +g1,5802:10282267,7166783 +g1,5802:12937899,7166783 +h1,5802:15261577,7166783:0,0,0 +k1,5802:32583029,7166783:17321452 +g1,5802:32583029,7166783 +) +] +) +g1,5803:32583029,7173388 +g1,5803:6630773,7173388 +g1,5803:6630773,7173388 +g1,5803:32583029,7173388 +g1,5803:32583029,7173388 +) +h1,5803:6630773,7369996:0,0,0 +(1,5807:6630773,8235076:25952256,505283,126483 +h1,5806:6630773,8235076:983040,0,0 +k1,5806:8455904,8235076:214256 +k1,5806:9689245,8235076:214256 +k1,5806:12895220,8235076:214256 +k1,5806:14964799,8235076:214255 +k1,5806:16047407,8235076:214256 +k1,5806:18466950,8235076:214256 +k1,5806:19037066,8235076:214256 +k1,5806:21871451,8235076:214256 +k1,5806:24063584,8235076:214256 +k1,5806:24960725,8235076:214256 +k1,5806:25530840,8235076:214255 +k1,5806:28719775,8235076:214256 +k1,5806:30911908,8235076:214256 +k1,5806:31812326,8235076:214256 +k1,5806:32583029,8235076:0 +) +(1,5807:6630773,9100156:25952256,513147,134348 +k1,5806:9879250,9100156:176149 +k1,5806:11003050,9100156:176149 +k1,5806:14459931,9100156:176149 +(1,5806:14459931,9100156:0,414482,115847 +r1,5922:14818197,9100156:358266,530329,115847 +k1,5806:14459931,9100156:-358266 +) +(1,5806:14459931,9100156:358266,414482,115847 +k1,5806:14459931,9100156:3277 +h1,5806:14814920,9100156:0,411205,112570 +) +k1,5806:14994347,9100156:176150 +k1,5806:15829788,9100156:176149 +k1,5806:18701433,9100156:176149 +(1,5806:18701433,9100156:0,459977,115847 +r1,5922:21521682,9100156:2820249,575824,115847 +k1,5806:18701433,9100156:-2820249 +) +(1,5806:18701433,9100156:2820249,459977,115847 +k1,5806:18701433,9100156:3277 +h1,5806:21518405,9100156:0,411205,112570 +) +k1,5806:21871501,9100156:176149 +k1,5806:22517543,9100156:176149 +k1,5806:23225189,9100156:176149 +k1,5806:24687154,9100156:176149 +k1,5806:27493264,9100156:176150 +k1,5806:28320841,9100156:176149 +k1,5806:29934195,9100156:176149 +k1,5806:30466204,9100156:176149 +(1,5806:30466204,9100156:0,459977,115847 +r1,5922:32583029,9100156:2116825,575824,115847 +k1,5806:30466204,9100156:-2116825 +) +(1,5806:30466204,9100156:2116825,459977,115847 +k1,5806:30466204,9100156:3277 +h1,5806:32579752,9100156:0,411205,112570 +) +k1,5806:32583029,9100156:0 +) +(1,5807:6630773,9965236:25952256,513147,134348 +k1,5806:7539960,9965236:223025 +k1,5806:8533688,9965236:223025 +k1,5806:11829041,9965236:223025 +k1,5806:12703494,9965236:223025 +k1,5806:16207251,9965236:223025 +(1,5806:16207251,9965236:0,414482,115847 +r1,5922:16565517,9965236:358266,530329,115847 +k1,5806:16207251,9965236:-358266 +) +(1,5806:16207251,9965236:358266,414482,115847 +k1,5806:16207251,9965236:3277 +h1,5806:16562240,9965236:0,411205,112570 +) +k1,5806:16962212,9965236:223025 +k1,5806:18566081,9965236:223025 +k1,5806:20835139,9965236:223024 +k1,5806:21516261,9965236:223025 +k1,5806:24369246,9965236:223025 +k1,5806:25243699,9965236:223025 +k1,5806:27729027,9965236:223025 +k1,5806:28971137,9965236:223025 +k1,5806:31923737,9965236:223025 +k1,5806:32583029,9965236:0 +) +(1,5807:6630773,10830316:25952256,513147,126483 +g1,5806:8622412,10830316 +g1,5806:9504526,10830316 +g1,5806:12002103,10830316 +g1,5806:13220417,10830316 +g1,5806:15263829,10830316 +g1,5806:16079096,10830316 +g1,5806:16634185,10830316 +k1,5807:32583029,10830316:13881183 +g1,5807:32583029,10830316 +) +v1,5809:6630773,11515171:0,393216,0 +(1,5841:6630773,22261687:25952256,11139732,196608 +g1,5841:6630773,22261687 +g1,5841:6630773,22261687 +g1,5841:6434165,22261687 +(1,5841:6434165,22261687:0,11139732,196608 +r1,5922:32779637,22261687:26345472,11336340,196608 +k1,5841:6434165,22261687:-26345472 +) +(1,5841:6434165,22261687:26345472,11139732,196608 +[1,5841:6630773,22261687:25952256,10943124,0 +(1,5811:6630773,11749608:25952256,431045,79822 +(1,5810:6630773,11749608:0,0,0 +g1,5810:6630773,11749608 +g1,5810:6630773,11749608 +g1,5810:6303093,11749608 +(1,5810:6303093,11749608:0,0,0 +) +g1,5810:6630773,11749608 +) +g1,5811:8290543,11749608 +g1,5811:9286405,11749608 +g1,5811:12273991,11749608 +g1,5811:12937899,11749608 +h1,5811:14597669,11749608:0,0,0 +k1,5811:32583029,11749608:17985360 +g1,5811:32583029,11749608 +) +(1,5812:6630773,12434463:25952256,431045,6605 +h1,5812:6630773,12434463:0,0,0 +h1,5812:7958589,12434463:0,0,0 +k1,5812:32583029,12434463:24624440 +g1,5812:32583029,12434463 +) +(1,5817:6630773,13250390:25952256,424439,79822 +(1,5814:6630773,13250390:0,0,0 +g1,5814:6630773,13250390 +g1,5814:6630773,13250390 +g1,5814:6303093,13250390 +(1,5814:6303093,13250390:0,0,0 +) +g1,5814:6630773,13250390 +) +g1,5817:7626635,13250390 +g1,5817:8954451,13250390 +g1,5817:11610083,13250390 +g1,5817:14265715,13250390 +g1,5817:16921347,13250390 +g1,5817:19576979,13250390 +g1,5817:22232611,13250390 +h1,5817:24556289,13250390:0,0,0 +k1,5817:32583029,13250390:8026740 +g1,5817:32583029,13250390 +) +(1,5817:6630773,13935245:25952256,424439,6605 +h1,5817:6630773,13935245:0,0,0 +g1,5817:7626635,13935245 +g1,5817:10282267,13935245 +g1,5817:12937899,13935245 +h1,5817:15261577,13935245:0,0,0 +k1,5817:32583029,13935245:17321452 +g1,5817:32583029,13935245 +) +(1,5819:6630773,14751172:25952256,431045,86428 +(1,5818:6630773,14751172:0,0,0 +g1,5818:6630773,14751172 +g1,5818:6630773,14751172 +g1,5818:6303093,14751172 +(1,5818:6303093,14751172:0,0,0 +) +g1,5818:6630773,14751172 +) +k1,5819:6630773,14751172:0 +g1,5819:9618359,14751172 +g1,5819:10282267,14751172 +g1,5819:12273991,14751172 +g1,5819:14597669,14751172 +g1,5819:15261577,14751172 +g1,5819:19576978,14751172 +h1,5819:23228471,14751172:0,0,0 +k1,5819:32583029,14751172:9354558 +g1,5819:32583029,14751172 +) +(1,5824:6630773,15567099:25952256,424439,79822 +(1,5821:6630773,15567099:0,0,0 +g1,5821:6630773,15567099 +g1,5821:6630773,15567099 +g1,5821:6303093,15567099 +(1,5821:6303093,15567099:0,0,0 +) +g1,5821:6630773,15567099 +) +g1,5824:7626635,15567099 +g1,5824:8954451,15567099 +g1,5824:11610083,15567099 +g1,5824:14265715,15567099 +g1,5824:16921347,15567099 +g1,5824:19576979,15567099 +g1,5824:22232611,15567099 +h1,5824:24556289,15567099:0,0,0 +k1,5824:32583029,15567099:8026740 +g1,5824:32583029,15567099 +) +(1,5824:6630773,16251954:25952256,424439,6605 +h1,5824:6630773,16251954:0,0,0 +g1,5824:7626635,16251954 +g1,5824:10282267,16251954 +g1,5824:12937899,16251954 +h1,5824:15261577,16251954:0,0,0 +k1,5824:32583029,16251954:17321452 +g1,5824:32583029,16251954 +) +(1,5826:6630773,17067881:25952256,431045,86428 +(1,5825:6630773,17067881:0,0,0 +g1,5825:6630773,17067881 +g1,5825:6630773,17067881 +g1,5825:6303093,17067881 +(1,5825:6303093,17067881:0,0,0 +) +g1,5825:6630773,17067881 +) +k1,5826:6630773,17067881:0 +g1,5826:9618359,17067881 +g1,5826:10282267,17067881 +g1,5826:12273991,17067881 +g1,5826:14597669,17067881 +g1,5826:15261577,17067881 +g1,5826:18581117,17067881 +g1,5826:19245025,17067881 +g1,5826:22564564,17067881 +g1,5826:25220196,17067881 +g1,5826:25884104,17067881 +h1,5826:29203643,17067881:0,0,0 +k1,5826:32583029,17067881:3379386 +g1,5826:32583029,17067881 +) +(1,5831:6630773,17883808:25952256,424439,79822 +(1,5828:6630773,17883808:0,0,0 +g1,5828:6630773,17883808 +g1,5828:6630773,17883808 +g1,5828:6303093,17883808 +(1,5828:6303093,17883808:0,0,0 +) +g1,5828:6630773,17883808 +) +g1,5831:7626635,17883808 +g1,5831:8954451,17883808 +g1,5831:11278129,17883808 +g1,5831:13601807,17883808 +g1,5831:15925485,17883808 +g1,5831:18249163,17883808 +g1,5831:20572841,17883808 +h1,5831:22564565,17883808:0,0,0 +k1,5831:32583029,17883808:10018464 +g1,5831:32583029,17883808 +) +(1,5831:6630773,18568663:25952256,424439,6605 +h1,5831:6630773,18568663:0,0,0 +g1,5831:7626635,18568663 +g1,5831:10282267,18568663 +g1,5831:12605945,18568663 +h1,5831:14597669,18568663:0,0,0 +k1,5831:32583029,18568663:17985360 +g1,5831:32583029,18568663 +) +(1,5833:6630773,19384590:25952256,431045,86428 +(1,5832:6630773,19384590:0,0,0 +g1,5832:6630773,19384590 +g1,5832:6630773,19384590 +g1,5832:6303093,19384590 +(1,5832:6303093,19384590:0,0,0 +) +g1,5832:6630773,19384590 +) +k1,5833:6630773,19384590:0 +g1,5833:9618359,19384590 +g1,5833:10282267,19384590 +k1,5833:10282267,19384590:0 +h1,5833:11942037,19384590:0,0,0 +k1,5833:32583029,19384590:20640992 +g1,5833:32583029,19384590 +) +(1,5834:6630773,20069445:25952256,424439,86428 +h1,5834:6630773,20069445:0,0,0 +g1,5834:6962727,20069445 +g1,5834:7294681,20069445 +g1,5834:7626635,20069445 +g1,5834:7958589,20069445 +g1,5834:8290543,20069445 +g1,5834:8622497,20069445 +g1,5834:8954451,20069445 +g1,5834:11278129,20069445 +g1,5834:11942037,20069445 +g1,5834:16257438,20069445 +k1,5834:16257438,20069445:0 +h1,5834:19908931,20069445:0,0,0 +k1,5834:32583029,20069445:12674098 +g1,5834:32583029,20069445 +) +(1,5835:6630773,20754300:25952256,424439,86428 +h1,5835:6630773,20754300:0,0,0 +g1,5835:6962727,20754300 +g1,5835:7294681,20754300 +g1,5835:7626635,20754300 +g1,5835:7958589,20754300 +g1,5835:8290543,20754300 +g1,5835:8622497,20754300 +g1,5835:8954451,20754300 +g1,5835:11278129,20754300 +g1,5835:11942037,20754300 +g1,5835:15925484,20754300 +h1,5835:19245023,20754300:0,0,0 +k1,5835:32583029,20754300:13338006 +g1,5835:32583029,20754300 +) +(1,5840:6630773,21570227:25952256,424439,79822 +(1,5837:6630773,21570227:0,0,0 +g1,5837:6630773,21570227 +g1,5837:6630773,21570227 +g1,5837:6303093,21570227 +(1,5837:6303093,21570227:0,0,0 +) +g1,5837:6630773,21570227 +) +g1,5840:7626635,21570227 +g1,5840:8954451,21570227 +g1,5840:11278129,21570227 +g1,5840:13601807,21570227 +g1,5840:15925485,21570227 +g1,5840:18249163,21570227 +g1,5840:20572841,21570227 +h1,5840:22564565,21570227:0,0,0 +k1,5840:32583029,21570227:10018464 +g1,5840:32583029,21570227 +) +(1,5840:6630773,22255082:25952256,424439,6605 +h1,5840:6630773,22255082:0,0,0 +g1,5840:7626635,22255082 +g1,5840:10282267,22255082 +g1,5840:12605945,22255082 +h1,5840:14597669,22255082:0,0,0 +k1,5840:32583029,22255082:17985360 +g1,5840:32583029,22255082 +) +] +) +g1,5841:32583029,22261687 +g1,5841:6630773,22261687 +g1,5841:6630773,22261687 +g1,5841:32583029,22261687 +g1,5841:32583029,22261687 +) +h1,5841:6630773,22458295:0,0,0 +(1,5845:6630773,23323375:25952256,513147,134348 +h1,5844:6630773,23323375:983040,0,0 +k1,5844:10489433,23323375:185367 +k1,5844:12628427,23323375:185366 +k1,5844:14919300,23323375:180614 +k1,5844:16053463,23323375:180614 +k1,5844:17326561,23323375:180613 +(1,5844:17326561,23323375:0,459977,115847 +r1,5922:20146810,23323375:2820249,575824,115847 +k1,5844:17326561,23323375:-2820249 +) +(1,5844:17326561,23323375:2820249,459977,115847 +k1,5844:17326561,23323375:3277 +h1,5844:20143533,23323375:0,411205,112570 +) +k1,5844:20327424,23323375:180614 +k1,5844:21194200,23323375:180614 +k1,5844:23450338,23323375:180613 +k1,5844:25673054,23323375:180614 +k1,5844:28035362,23323375:180614 +k1,5844:29235060,23323375:180613 +k1,5844:31069147,23323375:180614 +k1,5844:32583029,23323375:0 +) +(1,5845:6630773,24188455:25952256,513147,134348 +g1,5844:7777653,24188455 +g1,5844:8995967,24188455 +g1,5844:10987606,24188455 +g1,5844:12055187,24188455 +g1,5844:13803032,24188455 +g1,5844:14653689,24188455 +k1,5845:32583029,24188455:15778448 +g1,5845:32583029,24188455 +) +v1,5847:6630773,24873310:0,393216,0 +(1,5865:6630773,30988060:25952256,6507966,196608 +g1,5865:6630773,30988060 +g1,5865:6630773,30988060 +g1,5865:6434165,30988060 +(1,5865:6434165,30988060:0,6507966,196608 +r1,5922:32779637,30988060:26345472,6704574,196608 +k1,5865:6434165,30988060:-26345472 +) +(1,5865:6434165,30988060:26345472,6507966,196608 +[1,5865:6630773,30988060:25952256,6311358,0 +(1,5849:6630773,25107747:25952256,431045,112852 +(1,5848:6630773,25107747:0,0,0 +g1,5848:6630773,25107747 +g1,5848:6630773,25107747 +g1,5848:6303093,25107747 +(1,5848:6303093,25107747:0,0,0 +) +g1,5848:6630773,25107747 +) +g1,5849:8290543,25107747 +g1,5849:9286405,25107747 +g1,5849:11278129,25107747 +g1,5849:12273991,25107747 +g1,5849:14597669,25107747 +g1,5849:15261577,25107747 +g1,5849:17585255,25107747 +g1,5849:19245025,25107747 +g1,5849:20904795,25107747 +h1,5849:22564565,25107747:0,0,0 +k1,5849:32583029,25107747:10018464 +g1,5849:32583029,25107747 +) +(1,5850:6630773,25792602:25952256,431045,6605 +h1,5850:6630773,25792602:0,0,0 +h1,5850:7958589,25792602:0,0,0 +k1,5850:32583029,25792602:24624440 +g1,5850:32583029,25792602 +) +(1,5855:6630773,26608529:25952256,424439,79822 +(1,5852:6630773,26608529:0,0,0 +g1,5852:6630773,26608529 +g1,5852:6630773,26608529 +g1,5852:6303093,26608529 +(1,5852:6303093,26608529:0,0,0 +) +g1,5852:6630773,26608529 +) +g1,5855:7626635,26608529 +g1,5855:7958589,26608529 +g1,5855:9286405,26608529 +g1,5855:9950313,26608529 +g1,5855:10614221,26608529 +g1,5855:11278129,26608529 +g1,5855:11942037,26608529 +g1,5855:12605945,26608529 +g1,5855:13269853,26608529 +g1,5855:13933761,26608529 +g1,5855:14597669,26608529 +g1,5855:15261577,26608529 +g1,5855:15925485,26608529 +g1,5855:16589393,26608529 +h1,5855:16921347,26608529:0,0,0 +k1,5855:32583029,26608529:15661682 +g1,5855:32583029,26608529 +) +(1,5855:6630773,27293384:25952256,424439,6605 +h1,5855:6630773,27293384:0,0,0 +g1,5855:7626635,27293384 +g1,5855:10282267,27293384 +g1,5855:10946175,27293384 +g1,5855:11610083,27293384 +g1,5855:12273991,27293384 +h1,5855:12605945,27293384:0,0,0 +k1,5855:32583029,27293384:19977084 +g1,5855:32583029,27293384 +) +(1,5857:6630773,28109311:25952256,431045,86428 +(1,5856:6630773,28109311:0,0,0 +g1,5856:6630773,28109311 +g1,5856:6630773,28109311 +g1,5856:6303093,28109311 +(1,5856:6303093,28109311:0,0,0 +) +g1,5856:6630773,28109311 +) +k1,5857:6630773,28109311:0 +k1,5857:6630773,28109311:0 +h1,5857:10614221,28109311:0,0,0 +k1,5857:32583029,28109311:21968808 +g1,5857:32583029,28109311 +) +(1,5858:6630773,28794166:25952256,424439,86428 +h1,5858:6630773,28794166:0,0,0 +g1,5858:6962727,28794166 +g1,5858:7294681,28794166 +g1,5858:7626635,28794166 +g1,5858:7958589,28794166 +g1,5858:8290543,28794166 +g1,5858:8622497,28794166 +g1,5858:8954451,28794166 +g1,5858:11278129,28794166 +g1,5858:11942037,28794166 +g1,5858:14265715,28794166 +g1,5858:15925485,28794166 +g1,5858:17585255,28794166 +k1,5858:17585255,28794166:0 +h1,5858:19245025,28794166:0,0,0 +k1,5858:32583029,28794166:13338004 +g1,5858:32583029,28794166 +) +(1,5859:6630773,29479021:25952256,424439,86428 +h1,5859:6630773,29479021:0,0,0 +g1,5859:6962727,29479021 +g1,5859:7294681,29479021 +g1,5859:7626635,29479021 +g1,5859:7958589,29479021 +g1,5859:8290543,29479021 +g1,5859:8622497,29479021 +g1,5859:8954451,29479021 +g1,5859:11278129,29479021 +g1,5859:11942037,29479021 +g1,5859:14265715,29479021 +g1,5859:15925485,29479021 +g1,5859:17585255,29479021 +h1,5859:19245025,29479021:0,0,0 +k1,5859:32583029,29479021:13338004 +g1,5859:32583029,29479021 +) +(1,5864:6630773,30294948:25952256,424439,79822 +(1,5861:6630773,30294948:0,0,0 +g1,5861:6630773,30294948 +g1,5861:6630773,30294948 +g1,5861:6303093,30294948 +(1,5861:6303093,30294948:0,0,0 +) +g1,5861:6630773,30294948 +) +g1,5864:7626635,30294948 +g1,5864:7958589,30294948 +g1,5864:9286405,30294948 +g1,5864:9950313,30294948 +g1,5864:10614221,30294948 +g1,5864:11278129,30294948 +g1,5864:11942037,30294948 +g1,5864:12605945,30294948 +g1,5864:13269853,30294948 +g1,5864:13933761,30294948 +g1,5864:14597669,30294948 +g1,5864:15261577,30294948 +g1,5864:15925485,30294948 +g1,5864:16589393,30294948 +h1,5864:16921347,30294948:0,0,0 +k1,5864:32583029,30294948:15661682 +g1,5864:32583029,30294948 +) +(1,5864:6630773,30979803:25952256,424439,8257 +h1,5864:6630773,30979803:0,0,0 +g1,5864:7626635,30979803 +g1,5864:10282267,30979803 +g1,5864:10946175,30979803 +g1,5864:11610083,30979803 +h1,5864:11942037,30979803:0,0,0 +k1,5864:32583029,30979803:20640992 +g1,5864:32583029,30979803 +) +] +) +g1,5865:32583029,30988060 +g1,5865:6630773,30988060 +g1,5865:6630773,30988060 +g1,5865:32583029,30988060 +g1,5865:32583029,30988060 +) +h1,5865:6630773,31184668:0,0,0 +v1,5869:6630773,32049748:0,393216,0 +(1,5870:6630773,33313788:25952256,1657256,0 +g1,5870:6630773,33313788 +g1,5870:6237557,33313788 +r1,5922:6368629,33313788:131072,1657256,0 +g1,5870:6567858,33313788 +g1,5870:6764466,33313788 +[1,5870:6764466,33313788:25818563,1657256,0 +(1,5870:6764466,32322225:25818563,665693,196608 +(1,5869:6764466,32322225:0,665693,196608 +r1,5922:8010564,32322225:1246098,862301,196608 +k1,5869:6764466,32322225:-1246098 +) +(1,5869:6764466,32322225:1246098,665693,196608 +) +k1,5869:8206804,32322225:196240 +k1,5869:9933022,32322225:327680 +k1,5869:11379035,32322225:196241 +k1,5869:12594360,32322225:196240 +k1,5869:14286787,32322225:196240 +k1,5869:15099066,32322225:196241 +k1,5869:16314391,32322225:196240 +k1,5869:18481299,32322225:196240 +k1,5869:20532864,32322225:196241 +k1,5869:21380532,32322225:196240 +k1,5869:22669257,32322225:196240 +k1,5869:24241099,32322225:196241 +k1,5869:24793199,32322225:196240 +k1,5869:27148195,32322225:196240 +k1,5869:29322313,32322225:196241 +k1,5869:30466204,32322225:196240 +(1,5869:30466204,32322225:0,452978,115847 +r1,5922:32583029,32322225:2116825,568825,115847 +k1,5869:30466204,32322225:-2116825 +) +(1,5869:30466204,32322225:2116825,452978,115847 +k1,5869:30466204,32322225:3277 +h1,5869:32579752,32322225:0,411205,112570 +) +k1,5869:32583029,32322225:0 +) +(1,5870:6764466,33187305:25818563,513147,126483 +g1,5869:9290878,33187305 +g1,5869:10149399,33187305 +g1,5869:13051333,33187305 +g1,5869:15558740,33187305 +g1,5869:17963256,33187305 +g1,5869:18813913,33187305 +(1,5869:18813913,33187305:0,452978,115847 +r1,5922:20930738,33187305:2116825,568825,115847 +k1,5869:18813913,33187305:-2116825 +) +(1,5869:18813913,33187305:2116825,452978,115847 +k1,5869:18813913,33187305:3277 +h1,5869:20927461,33187305:0,411205,112570 +) +g1,5869:21129967,33187305 +g1,5869:22520641,33187305 +(1,5869:22520641,33187305:0,452978,115847 +r1,5922:24637466,33187305:2116825,568825,115847 +k1,5869:22520641,33187305:-2116825 +) +(1,5869:22520641,33187305:2116825,452978,115847 +k1,5869:22520641,33187305:3277 +h1,5869:24634189,33187305:0,411205,112570 +) +k1,5870:32583029,33187305:7771893 +g1,5870:32583029,33187305 +) +] +g1,5870:32583029,33313788 +) +h1,5870:6630773,33313788:0,0,0 +(1,5873:6630773,34178868:25952256,513147,134348 +h1,5872:6630773,34178868:983040,0,0 +k1,5872:8829113,34178868:261751 +k1,5872:10195145,34178868:261750 +k1,5872:11549381,34178868:261751 +k1,5872:14550537,34178868:261751 +k1,5872:15621658,34178868:261751 +k1,5872:18107700,34178868:261750 +k1,5872:18985489,34178868:261751 +k1,5872:20266325,34178868:261751 +k1,5872:22181549,34178868:261751 +k1,5872:23681274,34178868:261750 +k1,5872:24629187,34178868:261751 +k1,5872:26284889,34178868:261751 +k1,5872:29028488,34178868:261751 +k1,5872:29918073,34178868:261750 +k1,5872:31198909,34178868:261751 +k1,5872:32583029,34178868:0 +) +(1,5873:6630773,35043948:25952256,505283,134348 +k1,5872:9690508,35043948:224648 +k1,5872:10783508,35043948:224648 +k1,5872:12100641,35043948:224648 +k1,5872:12681149,35043948:224648 +k1,5872:14097242,35043948:224648 +k1,5872:17322784,35043948:224648 +k1,5872:17903292,35043948:224648 +k1,5872:20197567,35043948:224648 +k1,5872:22400092,35043948:224648 +k1,5872:23276168,35043948:224648 +k1,5872:25704792,35043948:224648 +k1,5872:26695556,35043948:224648 +k1,5872:30312347,35043948:224648 +k1,5872:31490544,35043948:224648 +k1,5872:32583029,35043948:0 +) +(1,5873:6630773,35909028:25952256,513147,122846 +k1,5872:9505726,35909028:179457 +(1,5872:9505726,35909028:0,452978,115847 +r1,5922:12325975,35909028:2820249,568825,115847 +k1,5872:9505726,35909028:-2820249 +) +(1,5872:9505726,35909028:2820249,452978,115847 +k1,5872:9505726,35909028:3277 +h1,5872:12322698,35909028:0,411205,112570 +) +k1,5872:12505432,35909028:179457 +k1,5872:13336317,35909028:179457 +k1,5872:14902515,35909028:179456 +k1,5872:15694734,35909028:179457 +k1,5872:16893276,35909028:179457 +k1,5872:18865143,35909028:179457 +k1,5872:19703892,35909028:179457 +k1,5872:20902434,35909028:179457 +k1,5872:23479853,35909028:179457 +k1,5872:24345471,35909028:179456 +k1,5872:25918879,35909028:179457 +k1,5872:28580184,35909028:179457 +(1,5872:28580184,35909028:0,452978,122846 +r1,5922:31752144,35909028:3171960,575824,122846 +k1,5872:28580184,35909028:-3171960 +) +(1,5872:28580184,35909028:3171960,452978,122846 +k1,5872:28580184,35909028:3277 +h1,5872:31748867,35909028:0,411205,112570 +) +k1,5872:31931601,35909028:179457 +k1,5872:32583029,35909028:0 +) +(1,5873:6630773,36774108:25952256,513147,126483 +g1,5872:8646005,36774108 +g1,5872:9864319,36774108 +g1,5872:12549329,36774108 +g1,5872:13407850,36774108 +g1,5872:15617724,36774108 +k1,5873:32583029,36774108:14753465 +g1,5873:32583029,36774108 +) +v1,5875:6630773,37458963:0,393216,0 +(1,5922:6630773,45466059:25952256,8400312,196608 +g1,5922:6630773,45466059 +g1,5922:6630773,45466059 +g1,5922:6434165,45466059 +(1,5922:6434165,45466059:0,8400312,196608 +r1,5922:32779637,45466059:26345472,8596920,196608 +k1,5922:6434165,45466059:-26345472 +) +(1,5922:6434165,45466059:26345472,8400312,196608 +[1,5922:6630773,45466059:25952256,8203704,0 +(1,5877:6630773,37693400:25952256,431045,6605 +(1,5876:6630773,37693400:0,0,0 +g1,5876:6630773,37693400 +g1,5876:6630773,37693400 +g1,5876:6303093,37693400 +(1,5876:6303093,37693400:0,0,0 +) +g1,5876:6630773,37693400 +) +h1,5877:7958589,37693400:0,0,0 +k1,5877:32583029,37693400:24624440 +g1,5877:32583029,37693400 +) +(1,5882:6630773,38509327:25952256,424439,79822 +(1,5879:6630773,38509327:0,0,0 +g1,5879:6630773,38509327 +g1,5879:6630773,38509327 +g1,5879:6303093,38509327 +(1,5879:6303093,38509327:0,0,0 +) +g1,5879:6630773,38509327 +) +g1,5882:7626635,38509327 +g1,5882:8954451,38509327 +g1,5882:11610083,38509327 +g1,5882:14265715,38509327 +g1,5882:16921347,38509327 +g1,5882:19576979,38509327 +g1,5882:22232611,38509327 +h1,5882:24556289,38509327:0,0,0 +k1,5882:32583029,38509327:8026740 +g1,5882:32583029,38509327 +) +(1,5882:6630773,39194182:25952256,424439,6605 +h1,5882:6630773,39194182:0,0,0 +g1,5882:7626635,39194182 +g1,5882:10282267,39194182 +g1,5882:12937899,39194182 +h1,5882:15261577,39194182:0,0,0 +k1,5882:32583029,39194182:17321452 +g1,5882:32583029,39194182 +) +(1,5884:6630773,40010109:25952256,431045,79822 +(1,5883:6630773,40010109:0,0,0 +g1,5883:6630773,40010109 +g1,5883:6630773,40010109 +g1,5883:6303093,40010109 +(1,5883:6303093,40010109:0,0,0 +) +g1,5883:6630773,40010109 +) +k1,5884:6630773,40010109:0 +h1,5884:10614221,40010109:0,0,0 +k1,5884:32583029,40010109:21968808 +g1,5884:32583029,40010109 +) +(1,5888:6630773,40826036:25952256,424439,79822 +(1,5886:6630773,40826036:0,0,0 +g1,5886:6630773,40826036 +g1,5886:6630773,40826036 +g1,5886:6303093,40826036 +(1,5886:6303093,40826036:0,0,0 +) +g1,5886:6630773,40826036 +) +g1,5888:7626635,40826036 +g1,5888:8954451,40826036 +g1,5888:12273990,40826036 +h1,5888:15261575,40826036:0,0,0 +k1,5888:32583029,40826036:17321454 +g1,5888:32583029,40826036 +) +(1,5890:6630773,41641963:25952256,431045,112852 +(1,5889:6630773,41641963:0,0,0 +g1,5889:6630773,41641963 +g1,5889:6630773,41641963 +g1,5889:6303093,41641963 +(1,5889:6303093,41641963:0,0,0 +) +g1,5889:6630773,41641963 +) +k1,5890:6630773,41641963:0 +h1,5890:10614221,41641963:0,0,0 +k1,5890:32583029,41641963:21968808 +g1,5890:32583029,41641963 +) +(1,5894:6630773,42457890:25952256,424439,79822 +(1,5892:6630773,42457890:0,0,0 +g1,5892:6630773,42457890 +g1,5892:6630773,42457890 +g1,5892:6303093,42457890 +(1,5892:6303093,42457890:0,0,0 +) +g1,5892:6630773,42457890 +) +g1,5894:7626635,42457890 +g1,5894:8954451,42457890 +h1,5894:9286405,42457890:0,0,0 +k1,5894:32583029,42457890:23296624 +g1,5894:32583029,42457890 +) +(1,5896:6630773,43273817:25952256,431045,79822 +(1,5895:6630773,43273817:0,0,0 +g1,5895:6630773,43273817 +g1,5895:6630773,43273817 +g1,5895:6303093,43273817 +(1,5895:6303093,43273817:0,0,0 +) +g1,5895:6630773,43273817 +) +g1,5896:10946174,43273817 +g1,5896:11942036,43273817 +g1,5896:15261575,43273817 +g1,5896:16257437,43273817 +h1,5896:19576976,43273817:0,0,0 +k1,5896:32583029,43273817:13006053 +g1,5896:32583029,43273817 +) +(1,5897:6630773,43958672:25952256,431045,6605 +h1,5897:6630773,43958672:0,0,0 +h1,5897:10614220,43958672:0,0,0 +k1,5897:32583028,43958672:21968808 +g1,5897:32583028,43958672 +) +(1,5902:6630773,44774599:25952256,424439,79822 +(1,5899:6630773,44774599:0,0,0 +g1,5899:6630773,44774599 +g1,5899:6630773,44774599 +g1,5899:6303093,44774599 +(1,5899:6303093,44774599:0,0,0 +) +g1,5899:6630773,44774599 +) +g1,5902:7626635,44774599 +g1,5902:8954451,44774599 +g1,5902:11610083,44774599 +g1,5902:14265715,44774599 +h1,5902:16589393,44774599:0,0,0 +k1,5902:32583029,44774599:15993636 +g1,5902:32583029,44774599 ) -g1,6610:15470864,21724071 -g1,6611:15470864,21724071 -(1,6611:15470864,21724071:0,0,0 -(1,6611:15470864,21724071:0,0,0 -g1,6611:15470864,21724071 -g1,6611:15470864,21724071 -g1,6611:15470864,21724071 -g1,6611:15470864,21724071 -g1,6611:15470864,21724071 -(1,6611:15470864,21724071:0,0,0 -(1,6611:15470864,21724071:6414941,404226,93333 -(1,6611:15470864,21724071:6414941,404226,93333 -(1,6611:15470864,21724071:0,363038,93333 -r1,6688:18009743,21724071:2538879,456371,93333 -k1,6611:15470864,21724071:-2538879 +(1,5902:6630773,45459454:25952256,424439,6605 +h1,5902:6630773,45459454:0,0,0 +g1,5902:7626635,45459454 +g1,5902:10282267,45459454 +g1,5902:12937899,45459454 +h1,5902:15261577,45459454:0,0,0 +k1,5902:32583029,45459454:17321452 +g1,5902:32583029,45459454 ) -(1,6611:15470864,21724071:2538879,363038,93333 -k1,6611:15470864,21724071:3277 -h1,6611:18006466,21724071:0,328964,90056 +] ) -g1,6611:18175418,21724071 -g1,6611:20222763,21724071 +g1,5922:32583029,45466059 +g1,5922:6630773,45466059 +g1,5922:6630773,45466059 +g1,5922:32583029,45466059 +g1,5922:32583029,45466059 ) -g1,6611:21885805,21724071 +] +(1,5922:32583029,45706769:0,0,0 +g1,5922:32583029,45706769 ) ) -g1,6611:15470864,21724071 -g1,6611:15470864,21724071 +] +(1,5922:6630773,47279633:25952256,0,0 +h1,5922:6630773,47279633:25952256,0,0 ) +] +(1,5922:4262630,4025873:0,0,0 +[1,5922:-473656,4025873:0,0,0 +(1,5922:-473656,-710413:0,0,0 +(1,5922:-473656,-710413:0,0,0 +g1,5922:-473656,-710413 ) -g1,6611:15470864,21724071 -(1,6614:15470864,21724071:0,0,0 -(1,6614:15470864,21724071:0,0,0 -g1,6614:15470864,21724071 -g1,6614:15470864,21724071 -(1,6614:15470864,21724071:0,0,0 -(1,6614:15470864,21724071:843055,466322,199855 -(1,6614:15470864,21724071:843055,466322,199855 -r1,6688:16313919,21724071:0,666177,199855 +g1,5922:-473656,-710413 ) -g1,6614:16313919,21724071 +] ) +] +!28272 +}94 +Input:849:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:850:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:851:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:852:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:853:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:854:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:855:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:856:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:857:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:858:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:859:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:860:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:861:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:862:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:863:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:864:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:865:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:866:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1685 +{95 +[1,6080:4262630,47279633:28320399,43253760,0 +(1,6080:4262630,4025873:0,0,0 +[1,6080:-473656,4025873:0,0,0 +(1,6080:-473656,-710413:0,0,0 +(1,6080:-473656,-644877:0,0,0 +k1,6080:-473656,-644877:-65536 ) -g1,6614:15470864,21724071 -(1,6614:15470864,21724071:0,0,0 -(1,6614:15470864,21724071:1072169,466322,199855 -r1,6688:16543033,21724071:0,666177,199855 +(1,6080:-473656,4736287:0,0,0 +k1,6080:-473656,4736287:5209943 ) +g1,6080:-473656,-710413 ) -g1,6614:15470864,21724071 -(1,6614:15470864,21724071:0,0,0 -(1,6614:15470864,21724071:843055,466322,199855 -r1,6688:16313919,21724071:0,666177,199855 +] ) +[1,6080:6630773,47279633:25952256,43253760,0 +[1,6080:6630773,4812305:25952256,786432,0 +(1,6080:6630773,4812305:25952256,505283,11795 +(1,6080:6630773,4812305:25952256,505283,11795 +g1,6080:3078558,4812305 +[1,6080:3078558,4812305:0,0,0 +(1,6080:3078558,2439708:0,1703936,0 +k1,6080:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,6080:2537886,2439708:1179648,16384,0 ) -g1,6614:15470864,21724071 -(1,6614:15470864,21724071:0,0,0 -(1,6614:15470864,21724071:524288,466322,199855 -r1,6688:15995152,21724071:0,666177,199855 +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,6080:3078558,1915420:16384,1179648,0 ) +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) -g1,6614:15470864,21724071 -g1,6614:15470864,21724071 +] ) ) -g1,6614:15470864,21724071 -(1,6616:15470864,21724071:0,0,0 -(1,6616:15470864,21724071:0,0,0 -g1,6616:15470864,21724071 -g1,6616:15470864,21724071 -(1,6616:15470864,21724071:0,0,0 -(1,6616:15470864,21724071:1161298,466322,199855 -(1,6616:15470864,21724071:1161298,466322,199855 -r1,6688:16632162,21724071:0,666177,199855 ) -g1,6616:16632162,21724071 +] +[1,6080:3078558,4812305:0,0,0 +(1,6080:3078558,2439708:0,1703936,0 +g1,6080:29030814,2439708 +g1,6080:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,6080:36151628,1915420:16384,1179648,0 ) +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) -g1,6616:15470864,21724071 -(1,6616:15470864,21724071:0,0,0 -(1,6616:15470864,21724071:1161298,466322,199855 -h1,6616:15470864,21724071:331874,388497,0 -r1,6688:16632162,21724071:0,666177,199855 +] ) +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,6080:37855564,2439708:1179648,16384,0 ) -g1,6616:15470864,21724071 -(1,6616:15470864,21724071:0,0,0 -(1,6616:15470864,21724071:1161298,466322,199855 -r1,6688:16632162,21724071:0,666177,199855 ) +k1,6080:3078556,2439708:-34777008 ) -g1,6616:15470864,21724071 -(1,6616:15470864,21724071:0,0,0 -(1,6616:15470864,21724071:524288,466322,199855 -r1,6688:15995152,21724071:0,666177,199855 +] +[1,6080:3078558,4812305:0,0,0 +(1,6080:3078558,49800853:0,16384,2228224 +k1,6080:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,6080:2537886,49800853:1179648,16384,0 ) +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,6080:3078558,51504789:16384,1179648,0 ) -g1,6616:15470864,21724071 -g1,6616:15470864,21724071 +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) +] ) -g1,6616:15470864,21724071 -(1,6618:15470864,21724071:0,0,0 -(1,6618:15470864,21724071:0,0,0 -g1,6618:15470864,21724071 -g1,6618:15470864,21724071 -(1,6618:15470864,21724071:0,0,0 -(1,6618:15470864,21724071:829424,466322,199855 -(1,6618:15470864,21724071:829424,466322,199855 -r1,6688:16300288,21724071:0,666177,199855 ) -g1,6618:16300288,21724071 ) +] +[1,6080:3078558,4812305:0,0,0 +(1,6080:3078558,49800853:0,16384,2228224 +g1,6080:29030814,49800853 +g1,6080:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,6080:36151628,51504789:16384,1179648,0 ) -g1,6618:15470864,21724071 -(1,6618:15470864,21724071:0,0,0 -(1,6618:15470864,21724071:829424,466322,199855 -r1,6688:16300288,21724071:0,666177,199855 +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 ) +] ) -g1,6618:15470864,21724071 -(1,6618:15470864,21724071:0,0,0 -(1,6618:15470864,21724071:829424,466322,199855 -r1,6688:16300288,21724071:0,666177,199855 +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,6080:37855564,49800853:1179648,16384,0 ) ) -g1,6618:15470864,21724071 -(1,6618:15470864,21724071:0,0,0 -(1,6618:15470864,21724071:524288,466322,199855 -r1,6688:15995152,21724071:0,666177,199855 -) -) -g1,6618:15470864,21724071 -g1,6618:15470864,21724071 -) -) -g1,6618:15470864,21724071 -g1,6620:15470864,21724071 -g1,6620:15470864,21724071 -) -g1,6620:15470864,21724071 -) -) -g1,6622:29394196,26383970 -k1,6622:32583029,26383970:3188833 -) -(1,6625:6630773,27835556:25952256,513147,126483 -h1,6624:6630773,27835556:983040,0,0 -k1,6624:9294940,27835556:209188 -k1,6624:11710726,27835556:209189 -k1,6624:12911474,27835556:209188 -k1,6624:15470784,27835556:209189 -k1,6624:17073923,27835556:209188 -k1,6624:20989827,27835556:209188 -k1,6624:23894512,27835556:209189 -(1,6624:23894512,27835556:0,459977,115847 -r1,6688:28121608,27835556:4227096,575824,115847 -k1,6624:23894512,27835556:-4227096 -) -(1,6624:23894512,27835556:4227096,459977,115847 -k1,6624:23894512,27835556:3277 -h1,6624:28118331,27835556:0,411205,112570 -) -k1,6624:28330796,27835556:209188 -k1,6624:29933936,27835556:209189 -k1,6624:30498984,27835556:209188 -k1,6624:32583029,27835556:0 -) -(1,6625:6630773,28677044:25952256,513147,134348 -k1,6624:9103029,28677044:270246 -k1,6624:10024704,28677044:270247 -k1,6624:11579456,28677044:270246 -k1,6624:13362929,28677044:270247 -k1,6624:14580826,28677044:270246 -k1,6624:17446299,28677044:270247 -k1,6624:22560311,28677044:270246 -k1,6624:27182804,28677044:270247 -k1,6624:28321402,28677044:270246 -k1,6624:29638914,28677044:270247 -k1,6624:31193666,28677044:270246 -k1,6624:32583029,28677044:0 -) -(1,6625:6630773,29518532:25952256,513147,115847 -g1,6624:9036599,29518532 -g1,6624:10227388,29518532 -g1,6624:12809506,29518532 -g1,6624:14576356,29518532 -g1,6624:16330754,29518532 -(1,6624:16330754,29518532:0,452978,115847 -r1,6688:17744155,29518532:1413401,568825,115847 -k1,6624:16330754,29518532:-1413401 -) -(1,6624:16330754,29518532:1413401,452978,115847 -k1,6624:16330754,29518532:3277 -h1,6624:17740878,29518532:0,411205,112570 -) -k1,6625:32583029,29518532:14665204 -g1,6625:32583029,29518532 -) -v1,6627:6630773,30672789:0,393216,0 -(1,6688:6630773,45510161:25952256,15230588,196608 -g1,6688:6630773,45510161 -g1,6688:6630773,45510161 -g1,6688:6434165,45510161 -(1,6688:6434165,45510161:0,15230588,196608 -r1,6688:32779637,45510161:26345472,15427196,196608 -k1,6688:6434165,45510161:-26345472 -) -(1,6688:6434165,45510161:26345472,15230588,196608 -[1,6688:6630773,45510161:25952256,15033980,0 -(1,6629:6630773,30886699:25952256,410518,101187 -(1,6628:6630773,30886699:0,0,0 -g1,6628:6630773,30886699 -g1,6628:6630773,30886699 -g1,6628:6303093,30886699 -(1,6628:6303093,30886699:0,0,0 -) -g1,6628:6630773,30886699 -) -g1,6629:8211502,30886699 -g1,6629:9159940,30886699 -g1,6629:15799000,30886699 -g1,6629:16431292,30886699 -g1,6629:22754207,30886699 -g1,6629:25599519,30886699 -k1,6629:25599519,30886699:0 -h1,6629:26864102,30886699:0,0,0 -k1,6629:32583029,30886699:5718927 -g1,6629:32583029,30886699 -) -(1,6630:6630773,31552877:25952256,404226,107478 -h1,6630:6630773,31552877:0,0,0 -g1,6630:6946919,31552877 -g1,6630:7263065,31552877 -g1,6630:7579211,31552877 -g1,6630:7895357,31552877 -g1,6630:8211503,31552877 -g1,6630:8527649,31552877 -g1,6630:8843795,31552877 -g1,6630:9159941,31552877 -g1,6630:9476087,31552877 -g1,6630:9792233,31552877 -g1,6630:10108379,31552877 -g1,6630:10424525,31552877 -g1,6630:10740671,31552877 -g1,6630:11056817,31552877 -g1,6630:11372963,31552877 -g1,6630:11689109,31552877 -g1,6630:12005255,31552877 -g1,6630:12321401,31552877 -g1,6630:12637547,31552877 -g1,6630:14850567,31552877 -g1,6630:15482859,31552877 -g1,6630:18012026,31552877 -g1,6630:19592755,31552877 -g1,6630:21489630,31552877 -g1,6630:23070359,31552877 -g1,6630:24967234,31552877 -k1,6630:24967234,31552877:0 -h1,6630:26547963,31552877:0,0,0 -k1,6630:32583029,31552877:6035066 -g1,6630:32583029,31552877 -) -(1,6631:6630773,32219055:25952256,404226,107478 -h1,6631:6630773,32219055:0,0,0 -g1,6631:6946919,32219055 -g1,6631:7263065,32219055 -g1,6631:7579211,32219055 -g1,6631:7895357,32219055 -g1,6631:8211503,32219055 -g1,6631:8527649,32219055 -g1,6631:8843795,32219055 -g1,6631:9159941,32219055 -g1,6631:9476087,32219055 -g1,6631:9792233,32219055 -g1,6631:10108379,32219055 -g1,6631:10424525,32219055 -g1,6631:10740671,32219055 -g1,6631:11056817,32219055 -g1,6631:11372963,32219055 -g1,6631:11689109,32219055 -g1,6631:12005255,32219055 -g1,6631:12321401,32219055 -g1,6631:12637547,32219055 -g1,6631:14850567,32219055 -g1,6631:15482859,32219055 -g1,6631:17695880,32219055 -g1,6631:19276609,32219055 -g1,6631:20857338,32219055 -g1,6631:22438067,32219055 -g1,6631:24018796,32219055 -h1,6631:25599524,32219055:0,0,0 -k1,6631:32583029,32219055:6983505 -g1,6631:32583029,32219055 -) -(1,6632:6630773,32885233:25952256,410518,6290 -h1,6632:6630773,32885233:0,0,0 -h1,6632:7895356,32885233:0,0,0 -k1,6632:32583028,32885233:24687672 -g1,6632:32583028,32885233 -) -(1,6642:6630773,33551411:25952256,404226,107478 -(1,6634:6630773,33551411:0,0,0 -g1,6634:6630773,33551411 -g1,6634:6630773,33551411 -g1,6634:6303093,33551411 -(1,6634:6303093,33551411:0,0,0 -) -g1,6634:6630773,33551411 -) -g1,6642:7579210,33551411 -g1,6642:7895356,33551411 -g1,6642:8211502,33551411 -g1,6642:11372959,33551411 -g1,6642:13585979,33551411 -h1,6642:15482853,33551411:0,0,0 -k1,6642:32583029,33551411:17100176 -g1,6642:32583029,33551411 -) -(1,6642:6630773,34217589:25952256,404226,9436 -h1,6642:6630773,34217589:0,0,0 -g1,6642:7579210,34217589 -g1,6642:8211502,34217589 -g1,6642:8527648,34217589 -g1,6642:8843794,34217589 -g1,6642:9159940,34217589 -g1,6642:9476086,34217589 -g1,6642:9792232,34217589 -g1,6642:10108378,34217589 -g1,6642:11372961,34217589 -g1,6642:11689107,34217589 -g1,6642:12005253,34217589 -g1,6642:13585982,34217589 -g1,6642:13902128,34217589 -g1,6642:14218274,34217589 -g1,6642:14534420,34217589 -h1,6642:15482857,34217589:0,0,0 -k1,6642:32583029,34217589:17100172 -g1,6642:32583029,34217589 -) -(1,6642:6630773,34883767:25952256,404226,9436 -h1,6642:6630773,34883767:0,0,0 -g1,6642:7579210,34883767 -g1,6642:8211502,34883767 -g1,6642:8527648,34883767 -g1,6642:8843794,34883767 -g1,6642:9159940,34883767 -g1,6642:9476086,34883767 -g1,6642:9792232,34883767 -g1,6642:11372961,34883767 -g1,6642:11689107,34883767 -g1,6642:12005253,34883767 -g1,6642:12321399,34883767 -g1,6642:13585982,34883767 -g1,6642:13902128,34883767 -g1,6642:14218274,34883767 -g1,6642:14534420,34883767 -h1,6642:15482857,34883767:0,0,0 -k1,6642:32583029,34883767:17100172 -g1,6642:32583029,34883767 -) -(1,6642:6630773,35549945:25952256,404226,9436 -h1,6642:6630773,35549945:0,0,0 -g1,6642:7579210,35549945 -g1,6642:8211502,35549945 -g1,6642:8527648,35549945 -g1,6642:8843794,35549945 -g1,6642:9159940,35549945 -g1,6642:9476086,35549945 -g1,6642:9792232,35549945 -g1,6642:10108378,35549945 -g1,6642:11372961,35549945 -g1,6642:11689107,35549945 -g1,6642:12005253,35549945 -g1,6642:13585982,35549945 -g1,6642:13902128,35549945 -g1,6642:14218274,35549945 -g1,6642:14534420,35549945 -h1,6642:15482857,35549945:0,0,0 -k1,6642:32583029,35549945:17100172 -g1,6642:32583029,35549945 -) -(1,6642:6630773,36216123:25952256,404226,9436 -h1,6642:6630773,36216123:0,0,0 -g1,6642:7579210,36216123 -g1,6642:8211502,36216123 -g1,6642:8527648,36216123 -g1,6642:8843794,36216123 -g1,6642:9159940,36216123 -g1,6642:9476086,36216123 -g1,6642:9792232,36216123 -g1,6642:11372961,36216123 -g1,6642:11689107,36216123 -g1,6642:12005253,36216123 -g1,6642:12321399,36216123 -g1,6642:13585982,36216123 -g1,6642:13902128,36216123 -g1,6642:14218274,36216123 -g1,6642:14534420,36216123 -h1,6642:15482857,36216123:0,0,0 -k1,6642:32583029,36216123:17100172 -g1,6642:32583029,36216123 -) -(1,6642:6630773,36882301:25952256,404226,9436 -h1,6642:6630773,36882301:0,0,0 -g1,6642:7579210,36882301 -g1,6642:8211502,36882301 -g1,6642:8527648,36882301 -g1,6642:8843794,36882301 -g1,6642:9159940,36882301 -g1,6642:9476086,36882301 -g1,6642:9792232,36882301 -g1,6642:10108378,36882301 -g1,6642:11372961,36882301 -g1,6642:11689107,36882301 -g1,6642:12005253,36882301 -g1,6642:13585982,36882301 -g1,6642:13902128,36882301 -g1,6642:14218274,36882301 -g1,6642:14534420,36882301 -h1,6642:15482857,36882301:0,0,0 -k1,6642:32583029,36882301:17100172 -g1,6642:32583029,36882301 -) -(1,6642:6630773,37548479:25952256,404226,9436 -h1,6642:6630773,37548479:0,0,0 -g1,6642:7579210,37548479 -g1,6642:8211502,37548479 -g1,6642:8527648,37548479 -g1,6642:8843794,37548479 -g1,6642:9159940,37548479 -g1,6642:9476086,37548479 -g1,6642:9792232,37548479 -g1,6642:11372961,37548479 -g1,6642:11689107,37548479 -g1,6642:12005253,37548479 -g1,6642:12321399,37548479 -g1,6642:13585982,37548479 -g1,6642:13902128,37548479 -g1,6642:14218274,37548479 -g1,6642:14534420,37548479 -h1,6642:15482857,37548479:0,0,0 -k1,6642:32583029,37548479:17100172 -g1,6642:32583029,37548479 -) -(1,6644:6630773,38870017:25952256,410518,76021 -(1,6643:6630773,38870017:0,0,0 -g1,6643:6630773,38870017 -g1,6643:6630773,38870017 -g1,6643:6303093,38870017 -(1,6643:6303093,38870017:0,0,0 -) -g1,6643:6630773,38870017 -) -k1,6644:6630773,38870017:0 -h1,6644:11056812,38870017:0,0,0 -k1,6644:32583028,38870017:21526216 -g1,6644:32583028,38870017 -) -(1,6648:6630773,39536195:25952256,404226,107478 -(1,6646:6630773,39536195:0,0,0 -g1,6646:6630773,39536195 -g1,6646:6630773,39536195 -g1,6646:6303093,39536195 -(1,6646:6303093,39536195:0,0,0 -) -g1,6646:6630773,39536195 -) -g1,6648:7579210,39536195 -g1,6648:8843793,39536195 -g1,6648:12637541,39536195 -g1,6648:15482852,39536195 -g1,6648:15798998,39536195 -g1,6648:16115144,39536195 -g1,6648:16431290,39536195 -h1,6648:18960455,39536195:0,0,0 -k1,6648:32583029,39536195:13622574 -g1,6648:32583029,39536195 -) -(1,6650:6630773,40857733:25952256,410518,76021 -(1,6649:6630773,40857733:0,0,0 -g1,6649:6630773,40857733 -g1,6649:6630773,40857733 -g1,6649:6303093,40857733 -(1,6649:6303093,40857733:0,0,0 -) -g1,6649:6630773,40857733 -) -k1,6650:6630773,40857733:0 -h1,6650:11056812,40857733:0,0,0 -k1,6650:32583028,40857733:21526216 -g1,6650:32583028,40857733 -) -(1,6654:6630773,41523911:25952256,404226,76021 -(1,6652:6630773,41523911:0,0,0 -g1,6652:6630773,41523911 -g1,6652:6630773,41523911 -g1,6652:6303093,41523911 -(1,6652:6303093,41523911:0,0,0 -) -g1,6652:6630773,41523911 -) -g1,6654:7579210,41523911 -g1,6654:8843793,41523911 -g1,6654:10108376,41523911 -g1,6654:11372959,41523911 -g1,6654:12637542,41523911 -g1,6654:13902125,41523911 -g1,6654:15166708,41523911 -h1,6654:16115145,41523911:0,0,0 -k1,6654:32583029,41523911:16467884 -g1,6654:32583029,41523911 -) -(1,6656:6630773,42845449:25952256,410518,76021 -(1,6655:6630773,42845449:0,0,0 -g1,6655:6630773,42845449 -g1,6655:6630773,42845449 -g1,6655:6303093,42845449 -(1,6655:6303093,42845449:0,0,0 -) -g1,6655:6630773,42845449 -) -k1,6656:6630773,42845449:0 -h1,6656:9476084,42845449:0,0,0 -k1,6656:32583028,42845449:23106944 -g1,6656:32583028,42845449 -) -(1,6663:6630773,43511627:25952256,410518,9436 -(1,6658:6630773,43511627:0,0,0 -g1,6658:6630773,43511627 -g1,6658:6630773,43511627 -g1,6658:6303093,43511627 -(1,6658:6303093,43511627:0,0,0 -) -g1,6658:6630773,43511627 -) -g1,6663:7579210,43511627 -g1,6663:12005251,43511627 -g1,6663:12637543,43511627 -g1,6663:14218272,43511627 -g1,6663:15166709,43511627 -g1,6663:15482855,43511627 -g1,6663:16115147,43511627 -h1,6663:19276604,43511627:0,0,0 -k1,6663:32583029,43511627:13306425 -g1,6663:32583029,43511627 -) -(1,6663:6630773,44177805:25952256,410518,82312 -h1,6663:6630773,44177805:0,0,0 -g1,6663:7579210,44177805 -g1,6663:7895356,44177805 -g1,6663:8527648,44177805 -g1,6663:12005251,44177805 -g1,6663:14218271,44177805 -g1,6663:15166708,44177805 -g1,6663:15799000,44177805 -g1,6663:18012020,44177805 -g1,6663:22438060,44177805 -g1,6663:23070352,44177805 -g1,6663:23702644,44177805 -g1,6663:24334936,44177805 -g1,6663:24967228,44177805 -g1,6663:25599520,44177805 -h1,6663:25915666,44177805:0,0,0 -k1,6663:32583029,44177805:6667363 -g1,6663:32583029,44177805 -) -(1,6663:6630773,44843983:25952256,410518,107478 -h1,6663:6630773,44843983:0,0,0 -g1,6663:7579210,44843983 -g1,6663:7895356,44843983 -g1,6663:8527648,44843983 -g1,6663:10740668,44843983 -g1,6663:11056814,44843983 -g1,6663:11372960,44843983 -g1,6663:12005252,44843983 -g1,6663:13269835,44843983 -g1,6663:13585981,44843983 -g1,6663:15166710,44843983 -g1,6663:16431293,44843983 -g1,6663:17379730,44843983 -g1,6663:18012022,44843983 -g1,6663:19592751,44843983 -h1,6663:20541188,44843983:0,0,0 -k1,6663:32583029,44843983:12041841 -g1,6663:32583029,44843983 -) -(1,6663:6630773,45510161:25952256,410518,107478 -h1,6663:6630773,45510161:0,0,0 -g1,6663:7579210,45510161 -g1,6663:7895356,45510161 -g1,6663:8527648,45510161 -g1,6663:10740668,45510161 -g1,6663:11056814,45510161 -g1,6663:11372960,45510161 -g1,6663:12005252,45510161 -g1,6663:13269835,45510161 -g1,6663:13585981,45510161 -g1,6663:14850564,45510161 -g1,6663:16115147,45510161 -g1,6663:17379730,45510161 -g1,6663:18644313,45510161 -g1,6663:19908896,45510161 -h1,6663:20225042,45510161:0,0,0 -k1,6663:32583029,45510161:12357987 -g1,6663:32583029,45510161 -) -] -) -g1,6688:32583029,45510161 -g1,6688:6630773,45510161 -g1,6688:6630773,45510161 -g1,6688:32583029,45510161 -g1,6688:32583029,45510161 -) -] -(1,6688:32583029,45706769:0,0,0 -g1,6688:32583029,45706769 -) -) -] -(1,6688:6630773,47279633:25952256,0,0 -h1,6688:6630773,47279633:25952256,0,0 -) -] -(1,6688:4262630,4025873:0,0,0 -[1,6688:-473656,4025873:0,0,0 -(1,6688:-473656,-710413:0,0,0 -(1,6688:-473656,-710413:0,0,0 -g1,6688:-473656,-710413 -) -g1,6688:-473656,-710413 -) -] -) -] -!34799 -}111 -Input:900:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:901:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:902:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:903:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:904:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:905:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:906:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:907:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:908:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:909:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!942 -{112 -[1,6758:4262630,47279633:28320399,43253760,0 -(1,6758:4262630,4025873:0,0,0 -[1,6758:-473656,4025873:0,0,0 -(1,6758:-473656,-710413:0,0,0 -(1,6758:-473656,-644877:0,0,0 -k1,6758:-473656,-644877:-65536 +k1,6080:3078556,49800853:-34777008 ) -(1,6758:-473656,4736287:0,0,0 -k1,6758:-473656,4736287:5209943 +] +g1,6080:6630773,4812305 +k1,6080:22348274,4812305:14920583 +g1,6080:23970945,4812305 +g1,6080:24793421,4812305 +g1,6080:27528893,4812305 +g1,6080:28938572,4812305 ) -g1,6758:-473656,-710413 ) ] +[1,6080:6630773,45706769:25952256,40108032,0 +(1,6080:6630773,45706769:25952256,40108032,0 +(1,6080:6630773,45706769:0,0,0 +g1,6080:6630773,45706769 ) -[1,6758:6630773,47279633:25952256,43253760,0 -[1,6758:6630773,4812305:25952256,786432,0 -(1,6758:6630773,4812305:25952256,513147,126483 -(1,6758:6630773,4812305:25952256,513147,126483 -g1,6758:3078558,4812305 -[1,6758:3078558,4812305:0,0,0 -(1,6758:3078558,2439708:0,1703936,0 -k1,6758:1358238,2439708:-1720320 -(1,5950:1358238,2439708:1720320,1703936,0 -(1,5950:1358238,2439708:1179648,16384,0 -r1,6758:2537886,2439708:1179648,16384,0 +[1,6080:6630773,45706769:25952256,40108032,0 +v1,5922:6630773,6254097:0,393216,0 +(1,5922:6630773,11332846:25952256,5471965,196608 +g1,5922:6630773,11332846 +g1,5922:6630773,11332846 +g1,5922:6434165,11332846 +(1,5922:6434165,11332846:0,5471965,196608 +r1,6080:32779637,11332846:26345472,5668573,196608 +k1,5922:6434165,11332846:-26345472 ) -g1,5950:3062174,2439708 -(1,5950:3062174,2439708:16384,1703936,0 -[1,5950:3062174,2439708:25952256,1703936,0 -(1,5950:3062174,1915420:25952256,1179648,0 -(1,5950:3062174,1915420:16384,1179648,0 -r1,6758:3078558,1915420:16384,1179648,0 +(1,5922:6434165,11332846:26345472,5471965,196608 +[1,5922:6630773,11332846:25952256,5275357,0 +(1,5904:6630773,6488534:25952256,431045,106246 +(1,5903:6630773,6488534:0,0,0 +g1,5903:6630773,6488534 +g1,5903:6630773,6488534 +g1,5903:6303093,6488534 +(1,5903:6303093,6488534:0,0,0 +) +g1,5903:6630773,6488534 +) +k1,5904:6630773,6488534:0 +g1,5904:13601806,6488534 +g1,5904:14265714,6488534 +g1,5904:15925484,6488534 +g1,5904:16921346,6488534 +g1,5904:17917208,6488534 +k1,5904:17917208,6488534:24773 +h1,5904:20929566,6488534:0,0,0 +k1,5904:32583029,6488534:11653463 +g1,5904:32583029,6488534 +) +(1,5908:6630773,7304461:25952256,424439,79822 +(1,5906:6630773,7304461:0,0,0 +g1,5906:6630773,7304461 +g1,5906:6630773,7304461 +g1,5906:6303093,7304461 +(1,5906:6303093,7304461:0,0,0 +) +g1,5906:6630773,7304461 +) +g1,5908:7626635,7304461 +g1,5908:8954451,7304461 +g1,5908:12273990,7304461 +h1,5908:15261575,7304461:0,0,0 +k1,5908:32583029,7304461:17321454 +g1,5908:32583029,7304461 +) +(1,5910:6630773,8120388:25952256,431045,112852 +(1,5909:6630773,8120388:0,0,0 +g1,5909:6630773,8120388 +g1,5909:6630773,8120388 +g1,5909:6303093,8120388 +(1,5909:6303093,8120388:0,0,0 +) +g1,5909:6630773,8120388 +) +k1,5910:6630773,8120388:0 +g1,5910:13601806,8120388 +g1,5910:14265714,8120388 +g1,5910:16921346,8120388 +g1,5910:18581116,8120388 +k1,5910:18581116,8120388:24773 +h1,5910:21593474,8120388:0,0,0 +k1,5910:32583029,8120388:10989555 +g1,5910:32583029,8120388 +) +(1,5914:6630773,8936315:25952256,424439,79822 +(1,5912:6630773,8936315:0,0,0 +g1,5912:6630773,8936315 +g1,5912:6630773,8936315 +g1,5912:6303093,8936315 +(1,5912:6303093,8936315:0,0,0 +) +g1,5912:6630773,8936315 +) +g1,5914:7626635,8936315 +g1,5914:8954451,8936315 +h1,5914:9286405,8936315:0,0,0 +k1,5914:32583029,8936315:23296624 +g1,5914:32583029,8936315 +) +(1,5916:6630773,9752242:25952256,431045,79822 +(1,5915:6630773,9752242:0,0,0 +g1,5915:6630773,9752242 +g1,5915:6630773,9752242 +g1,5915:6303093,9752242 +(1,5915:6303093,9752242:0,0,0 +) +g1,5915:6630773,9752242 +) +g1,5916:10946174,9752242 +g1,5916:11942036,9752242 +k1,5916:11942036,9752242:0 +h1,5916:18581115,9752242:0,0,0 +k1,5916:32583029,9752242:14001914 +g1,5916:32583029,9752242 +) +(1,5917:6630773,10437097:25952256,431045,106246 +h1,5917:6630773,10437097:0,0,0 +g1,5917:13601806,10437097 +g1,5917:14265714,10437097 +g1,5917:15593530,10437097 +g1,5917:17917208,10437097 +g1,5917:19908932,10437097 +g1,5917:21236748,10437097 +k1,5917:21236748,10437097:41838 +h1,5917:23602264,10437097:0,0,0 +k1,5917:32583029,10437097:8980765 +g1,5917:32583029,10437097 +) +(1,5921:6630773,11253024:25952256,424439,79822 +(1,5919:6630773,11253024:0,0,0 +g1,5919:6630773,11253024 +g1,5919:6630773,11253024 +g1,5919:6303093,11253024 +(1,5919:6303093,11253024:0,0,0 +) +g1,5919:6630773,11253024 +) +g1,5921:7626635,11253024 +g1,5921:8954451,11253024 +h1,5921:11942036,11253024:0,0,0 +k1,5921:32583028,11253024:20640992 +g1,5921:32583028,11253024 +) +] +) +g1,5922:32583029,11332846 +g1,5922:6630773,11332846 +g1,5922:6630773,11332846 +g1,5922:32583029,11332846 +g1,5922:32583029,11332846 +) +h1,5922:6630773,11529454:0,0,0 +(1,5926:6630773,12394534:25952256,513147,134348 +h1,5925:6630773,12394534:983040,0,0 +k1,5925:8334658,12394534:250952 +k1,5925:9689893,12394534:250953 +k1,5925:10688611,12394534:250952 +k1,5925:12379390,12394534:250953 +k1,5925:14485666,12394534:250952 +k1,5925:16021124,12394534:250952 +k1,5925:19599340,12394534:250953 +k1,5925:21343202,12394534:250952 +k1,5925:22660425,12394534:250952 +k1,5925:24435745,12394534:250953 +k1,5925:27029609,12394534:250952 +k1,5925:29174552,12394534:250953 +k1,5925:31391584,12394534:250952 +k1,5925:32583029,12394534:0 +) +(1,5926:6630773,13259614:25952256,513147,126483 +g1,5925:8114508,13259614 +(1,5925:8114508,13259614:0,459977,115847 +r1,6080:10934757,13259614:2820249,575824,115847 +k1,5925:8114508,13259614:-2820249 +) +(1,5925:8114508,13259614:2820249,459977,115847 +k1,5925:8114508,13259614:3277 +h1,5925:10931480,13259614:0,411205,112570 +) +g1,5925:11133986,13259614 +g1,5925:12437497,13259614 +g1,5925:13384492,13259614 +g1,5925:15096947,13259614 +g1,5925:15947604,13259614 +g1,5925:19044180,13259614 +g1,5925:20767776,13259614 +g1,5925:21986090,13259614 +g1,5925:24528231,13259614 +g1,5925:26621450,13259614 +k1,5926:32583029,13259614:3995499 +g1,5926:32583029,13259614 +) +v1,5928:6630773,14124694:0,393216,0 +(1,5961:6630773,24306121:25952256,10574643,0 +g1,5961:6630773,24306121 +g1,5961:6237557,24306121 +r1,6080:6368629,24306121:131072,10574643,0 +g1,5961:6567858,24306121 +g1,5961:6764466,24306121 +[1,5961:6764466,24306121:25818563,10574643,0 +(1,5929:6764466,14485871:25818563,754393,260573 +(1,5928:6764466,14485871:0,754393,260573 +r1,6080:8010564,14485871:1246098,1014966,260573 +k1,5928:6764466,14485871:-1246098 +) +(1,5928:6764466,14485871:1246098,754393,260573 +) +k1,5928:8234526,14485871:223962 +k1,5928:8562206,14485871:327680 +k1,5928:10206989,14485871:223962 +k1,5928:11082379,14485871:223962 +k1,5928:13699060,14485871:223962 +k1,5928:16147314,14485871:223962 +k1,5928:17638742,14485871:223962 +k1,5928:20482832,14485871:223961 +k1,5928:23014972,14485871:223962 +k1,5928:23770431,14485871:223962 +k1,5928:25060664,14485871:223962 +k1,5928:27951286,14485871:223962 +k1,5928:29641944,14485871:223962 +k1,5928:31563944,14485871:223962 +k1,5928:32583029,14485871:0 +) +(1,5929:6764466,15350951:25818563,513147,115847 +g1,5928:8857685,15350951 +g1,5928:10264087,15350951 +g1,5928:12813437,15350951 +g1,5928:14580287,15350951 +g1,5928:15135376,15350951 +(1,5928:15135376,15350951:0,452978,115847 +r1,6080:17603913,15350951:2468537,568825,115847 +k1,5928:15135376,15350951:-2468537 +) +(1,5928:15135376,15350951:2468537,452978,115847 +k1,5928:15135376,15350951:3277 +h1,5928:17600636,15350951:0,411205,112570 +) +g1,5928:17803142,15350951 +k1,5929:32583029,15350951:12628340 +g1,5929:32583029,15350951 +) +v1,5931:6764466,16035806:0,393216,0 +(1,5959:6764466,24109513:25818563,8466923,196608 +g1,5959:6764466,24109513 +g1,5959:6764466,24109513 +g1,5959:6567858,24109513 +(1,5959:6567858,24109513:0,8466923,196608 +r1,6080:32779637,24109513:26211779,8663531,196608 +k1,5959:6567857,24109513:-26211780 +) +(1,5959:6567858,24109513:26211779,8466923,196608 +[1,5959:6764466,24109513:25818563,8270315,0 +(1,5933:6764466,16263637:25818563,424439,106246 +(1,5932:6764466,16263637:0,0,0 +g1,5932:6764466,16263637 +g1,5932:6764466,16263637 +g1,5932:6436786,16263637 +(1,5932:6436786,16263637:0,0,0 +) +g1,5932:6764466,16263637 +) +g1,5933:8424236,16263637 +g1,5933:9420098,16263637 +g1,5933:12407684,16263637 +h1,5933:13071592,16263637:0,0,0 +k1,5933:32583028,16263637:19511436 +g1,5933:32583028,16263637 +) +(1,5934:6764466,16948492:25818563,407923,9908 +h1,5934:6764466,16948492:0,0,0 +h1,5934:8092282,16948492:0,0,0 +k1,5934:32583030,16948492:24490748 +g1,5934:32583030,16948492 +) +(1,5938:6764466,17764419:25818563,424439,79822 +(1,5936:6764466,17764419:0,0,0 +g1,5936:6764466,17764419 +g1,5936:6764466,17764419 +g1,5936:6436786,17764419 +(1,5936:6436786,17764419:0,0,0 +) +g1,5936:6764466,17764419 +) +g1,5938:7760328,17764419 +g1,5938:8092282,17764419 +g1,5938:9420098,17764419 +g1,5938:10084006,17764419 +g1,5938:10747914,17764419 +g1,5938:11411822,17764419 +g1,5938:12075730,17764419 +g1,5938:12739638,17764419 +g1,5938:13403546,17764419 +g1,5938:14067454,17764419 +g1,5938:14731362,17764419 +g1,5938:15395270,17764419 +g1,5938:16059178,17764419 +g1,5938:16723086,17764419 +h1,5938:17055040,17764419:0,0,0 +k1,5938:32583029,17764419:15527989 +g1,5938:32583029,17764419 +) +(1,5940:6764466,18580346:25818563,431045,79822 +(1,5939:6764466,18580346:0,0,0 +g1,5939:6764466,18580346 +g1,5939:6764466,18580346 +g1,5939:6436786,18580346 +(1,5939:6436786,18580346:0,0,0 +) +g1,5939:6764466,18580346 +) +g1,5940:8424236,18580346 +g1,5940:9420098,18580346 +k1,5940:9420098,18580346:0 +h1,5940:13403546,18580346:0,0,0 +k1,5940:32583030,18580346:19179484 +g1,5940:32583030,18580346 +) +(1,5941:6764466,19265201:25818563,431045,9908 +h1,5941:6764466,19265201:0,0,0 +h1,5941:8092282,19265201:0,0,0 +k1,5941:32583030,19265201:24490748 +g1,5941:32583030,19265201 +) +(1,5946:6764466,20081128:25818563,424439,79822 +(1,5943:6764466,20081128:0,0,0 +g1,5943:6764466,20081128 +g1,5943:6764466,20081128 +g1,5943:6436786,20081128 +(1,5943:6436786,20081128:0,0,0 +) +g1,5943:6764466,20081128 +) +g1,5946:7760328,20081128 +g1,5946:8092282,20081128 +g1,5946:9420098,20081128 +g1,5946:10084006,20081128 +g1,5946:10747914,20081128 +g1,5946:11411822,20081128 +g1,5946:12075730,20081128 +g1,5946:12739638,20081128 +g1,5946:13403546,20081128 +g1,5946:14067454,20081128 +g1,5946:14731362,20081128 +g1,5946:15395270,20081128 +g1,5946:16059178,20081128 +g1,5946:16723086,20081128 +h1,5946:17055040,20081128:0,0,0 +k1,5946:32583029,20081128:15527989 +g1,5946:32583029,20081128 +) +(1,5946:6764466,20765983:25818563,424439,9908 +h1,5946:6764466,20765983:0,0,0 +g1,5946:7760328,20765983 +g1,5946:10415960,20765983 +g1,5946:11079868,20765983 +g1,5946:11743776,20765983 +h1,5946:12075730,20765983:0,0,0 +k1,5946:32583030,20765983:20507300 +g1,5946:32583030,20765983 +) +(1,5948:6764466,21581910:25818563,431045,79822 +(1,5947:6764466,21581910:0,0,0 +g1,5947:6764466,21581910 +g1,5947:6764466,21581910 +g1,5947:6436786,21581910 +(1,5947:6436786,21581910:0,0,0 +) +g1,5947:6764466,21581910 +) +k1,5948:6764466,21581910:0 +h1,5948:12075729,21581910:0,0,0 +k1,5948:32583029,21581910:20507300 +g1,5948:32583029,21581910 +) +(1,5952:6764466,22397837:25818563,424439,79822 +(1,5950:6764466,22397837:0,0,0 +g1,5950:6764466,22397837 +g1,5950:6764466,22397837 +g1,5950:6436786,22397837 +(1,5950:6436786,22397837:0,0,0 +) +g1,5950:6764466,22397837 +) +g1,5952:7760328,22397837 +g1,5952:8092282,22397837 +g1,5952:9420098,22397837 +g1,5952:10084006,22397837 +g1,5952:10747914,22397837 +g1,5952:11411822,22397837 +g1,5952:12075730,22397837 +g1,5952:12739638,22397837 +g1,5952:13403546,22397837 +g1,5952:14067454,22397837 +g1,5952:14731362,22397837 +g1,5952:15395270,22397837 +g1,5952:16059178,22397837 +g1,5952:16723086,22397837 +h1,5952:17055040,22397837:0,0,0 +k1,5952:32583029,22397837:15527989 +g1,5952:32583029,22397837 +) +(1,5954:6764466,23213764:25818563,431045,79822 +(1,5953:6764466,23213764:0,0,0 +g1,5953:6764466,23213764 +g1,5953:6764466,23213764 +g1,5953:6436786,23213764 +(1,5953:6436786,23213764:0,0,0 +) +g1,5953:6764466,23213764 +) +k1,5954:6764466,23213764:0 +k1,5954:6764466,23213764:0 +h1,5954:16723084,23213764:0,0,0 +k1,5954:32583029,23213764:15859945 +g1,5954:32583029,23213764 +) +(1,5958:6764466,24029691:25818563,424439,79822 +(1,5956:6764466,24029691:0,0,0 +g1,5956:6764466,24029691 +g1,5956:6764466,24029691 +g1,5956:6436786,24029691 +(1,5956:6436786,24029691:0,0,0 +) +g1,5956:6764466,24029691 +) +g1,5958:7760328,24029691 +g1,5958:8092282,24029691 +g1,5958:9420098,24029691 +g1,5958:10084006,24029691 +g1,5958:10747914,24029691 +g1,5958:11411822,24029691 +g1,5958:12075730,24029691 +g1,5958:12739638,24029691 +g1,5958:13403546,24029691 +g1,5958:14067454,24029691 +g1,5958:14731362,24029691 +g1,5958:15395270,24029691 +g1,5958:16059178,24029691 +g1,5958:16723086,24029691 +h1,5958:17055040,24029691:0,0,0 +k1,5958:32583029,24029691:15527989 +g1,5958:32583029,24029691 +) +] +) +g1,5959:32583029,24109513 +g1,5959:6764466,24109513 +g1,5959:6764466,24109513 +g1,5959:32583029,24109513 +g1,5959:32583029,24109513 +) +h1,5959:6764466,24306121:0,0,0 +] +g1,5961:32583029,24306121 +) +h1,5961:6630773,24306121:0,0,0 +v1,5964:6630773,25171201:0,393216,0 +(1,5989:6630773,38547182:25952256,13769197,0 +g1,5989:6630773,38547182 +g1,5989:6237557,38547182 +r1,6080:6368629,38547182:131072,13769197,0 +g1,5989:6567858,38547182 +g1,5989:6764466,38547182 +[1,5989:6764466,38547182:25818563,13769197,0 +(1,5965:6764466,25479499:25818563,701514,196608 +(1,5964:6764466,25479499:0,701514,196608 +r1,6080:8010564,25479499:1246098,898122,196608 +k1,5964:6764466,25479499:-1246098 +) +(1,5964:6764466,25479499:1246098,701514,196608 +) +k1,5964:8177089,25479499:166525 +k1,5964:8504769,25479499:327680 +k1,5964:10158757,25479499:170908 +k1,5964:10886065,25479499:170907 +k1,5964:11421353,25479499:170908 +k1,5964:13853252,25479499:170907 +k1,5964:17702695,25479499:170907 +k1,5964:20588310,25479499:166526 +k1,5964:23991003,25479499:166525 +k1,5964:26051518,25479499:166525 +k1,5964:28228688,25479499:166525 +k1,5964:29386774,25479499:166526 +k1,5964:30544859,25479499:166525 +k1,5964:32583029,25479499:0 +) +(1,5965:6764466,26344579:25818563,513147,134348 +k1,5964:7677710,26344579:227082 +k1,5964:10427928,26344579:227082 +k1,5964:13215503,26344579:227083 +k1,5964:15921157,26344579:227082 +k1,5964:17715860,26344579:227082 +k1,5964:19273323,26344579:227082 +k1,5964:20952027,26344579:227082 +k1,5964:23594767,26344579:227083 +k1,5964:26052039,26344579:227082 +k1,5964:27959464,26344579:227082 +k1,5964:32583029,26344579:0 +) +(1,5965:6764466,27209659:25818563,505283,134348 +k1,5964:7703237,27209659:287343 +k1,5964:8346441,27209659:287344 +k1,5964:10269563,27209659:287343 +k1,5964:12431236,27209659:287343 +k1,5964:16161185,27209659:287343 +k1,5964:18678719,27209659:287344 +k1,5964:20976707,27209659:287343 +k1,5964:22255610,27209659:287343 +k1,5964:25321680,27209659:287343 +k1,5964:26370552,27209659:287344 +(1,5964:26370552,27209659:0,452978,115847 +r1,6080:30597648,27209659:4227096,568825,115847 +k1,5964:26370552,27209659:-4227096 +) +(1,5964:26370552,27209659:4227096,452978,115847 +k1,5964:26370552,27209659:3277 +h1,5964:30594371,27209659:0,411205,112570 +) +k1,5964:30884991,27209659:287343 +k1,5964:32583029,27209659:0 +) +(1,5965:6764466,28074739:25818563,513147,126483 +k1,5964:9409499,28074739:273285 +k1,5964:10334212,28074739:273285 +k1,5964:10963357,28074739:273285 +k1,5964:13304303,28074739:273285 +k1,5964:14774275,28074739:273285 +k1,5964:16891743,28074739:273285 +k1,5964:17824321,28074739:273286 +k1,5964:19116691,28074739:273285 +k1,5964:21283966,28074739:273285 +k1,5964:23349661,28074739:273285 +k1,5964:24614506,28074739:273285 +k1,5964:27017056,28074739:273285 +k1,5964:29328511,28074739:273285 +k1,5964:30287958,28074739:273285 +k1,5965:32583029,28074739:0 +) +(1,5965:6764466,28939819:25818563,505283,134348 +k1,5964:7941490,28939819:284424 +k1,5964:10595696,28939819:284424 +k1,5964:12346816,28939819:284424 +k1,5964:14329278,28939819:284424 +k1,5964:16310429,28939819:284424 +k1,5964:19899833,28939819:284423 +k1,5964:21175817,28939819:284424 +k1,5964:23418457,28939819:284424 +k1,5964:24330716,28939819:284424 +k1,5964:27246411,28939819:284424 +k1,5964:28182263,28939819:284424 +(1,5964:28182263,28939819:0,452978,115847 +r1,6080:32409359,28939819:4227096,568825,115847 +k1,5964:28182263,28939819:-4227096 +) +(1,5964:28182263,28939819:4227096,452978,115847 +k1,5964:28182263,28939819:3277 +h1,5964:32406082,28939819:0,411205,112570 +) +k1,5965:32583029,28939819:0 +) +(1,5965:6764466,29804899:25818563,513147,115847 +(1,5964:6764466,29804899:0,452978,115847 +r1,6080:11694986,29804899:4930520,568825,115847 +k1,5964:6764466,29804899:-4930520 +) +(1,5964:6764466,29804899:4930520,452978,115847 +k1,5964:6764466,29804899:3277 +h1,5964:11691709,29804899:0,411205,112570 +) +k1,5964:11957492,29804899:262506 +k1,5964:14560943,29804899:262505 +k1,5964:15842534,29804899:262506 +k1,5964:19079719,29804899:262506 +k1,5964:21186407,29804899:262505 +k1,5964:22108205,29804899:262506 +k1,5964:23389796,29804899:262506 +k1,5964:25444711,29804899:262505 +k1,5964:26654868,29804899:262506 +k1,5964:28368996,29804899:262506 +k1,5964:29290793,29804899:262505 +k1,5964:30572384,29804899:262506 +k1,5964:32583029,29804899:0 +) +(1,5965:6764466,30669979:25818563,513147,134348 +k1,5964:9091704,30669979:289068 +k1,5964:9996811,30669979:289069 +k1,5964:11304964,30669979:289068 +k1,5964:13661694,30669979:289069 +k1,5964:14428519,30669979:289068 +k1,5964:16414315,30669979:289069 +k1,5964:19678062,30669979:289068 +k1,5964:22163241,30669979:289068 +k1,5964:25493836,30669979:289069 +k1,5964:28772656,30669979:289068 +k1,5964:30441913,30669979:289069 +k1,5964:31835263,30669979:289068 +k1,5964:32583029,30669979:0 +) +(1,5965:6764466,31535059:25818563,505283,134348 +k1,5964:10303766,31535059:204828 +k1,5964:11124631,31535059:204827 +k1,5964:11685319,31535059:204828 +k1,5964:14131478,31535059:204828 +k1,5964:15865261,31535059:204828 +k1,5964:17805481,31535059:204827 +(1,5964:17805481,31535059:0,452978,115847 +r1,6080:22032577,31535059:4227096,568825,115847 +k1,5964:17805481,31535059:-4227096 +) +(1,5964:17805481,31535059:4227096,452978,115847 +k1,5964:17805481,31535059:3277 +h1,5964:22029300,31535059:0,411205,112570 +) +k1,5964:22237405,31535059:204828 +k1,5964:23709699,31535059:204828 +k1,5964:24933612,31535059:204828 +k1,5964:27573757,31535059:204827 +k1,5964:30398714,31535059:204828 +k1,5964:32583029,31535059:0 +) +(1,5965:6764466,32400139:25818563,513147,134348 +k1,5964:8126452,32400139:213140 +k1,5964:9006749,32400139:213141 +(1,5964:9006749,32400139:0,452978,115847 +r1,6080:10771862,32400139:1765113,568825,115847 +k1,5964:9006749,32400139:-1765113 +) +(1,5964:9006749,32400139:1765113,452978,115847 +k1,5964:9006749,32400139:3277 +h1,5964:10768585,32400139:0,411205,112570 +) +k1,5964:10985002,32400139:213140 +k1,5964:12389587,32400139:213140 +(1,5964:12389587,32400139:0,452978,115847 +r1,6080:13802988,32400139:1413401,568825,115847 +k1,5964:12389587,32400139:-1413401 +) +(1,5964:12389587,32400139:1413401,452978,115847 +k1,5964:12389587,32400139:3277 +h1,5964:13799711,32400139:0,411205,112570 +) +k1,5964:14016129,32400139:213141 +k1,5964:14760766,32400139:213140 +k1,5964:18063929,32400139:213140 +k1,5964:19086440,32400139:213141 +k1,5964:21578267,32400139:213140 +h1,5964:22548855,32400139:0,0,0 +k1,5964:22761995,32400139:213140 +k1,5964:23784505,32400139:213140 +k1,5964:25495799,32400139:213141 +h1,5964:26292717,32400139:0,0,0 +k1,5964:26679527,32400139:213140 +k1,5964:28084112,32400139:213140 +(1,5964:28084112,32400139:0,452978,115847 +r1,6080:29849225,32400139:1765113,568825,115847 +k1,5964:28084112,32400139:-1765113 +) +(1,5964:28084112,32400139:1765113,452978,115847 +k1,5964:28084112,32400139:3277 +h1,5964:29845948,32400139:0,411205,112570 +) +k1,5964:30062366,32400139:213141 +k1,5964:31084876,32400139:213140 +k1,5964:32583029,32400139:0 +) +(1,5965:6764466,33265219:25818563,485622,11795 +h1,5964:7561384,33265219:0,0,0 +k1,5965:32583030,33265219:24847976 +g1,5965:32583030,33265219 +) +v1,5967:6764466,33950074:0,393216,0 +(1,5986:6764466,38350574:25818563,4793716,196608 +g1,5986:6764466,38350574 +g1,5986:6764466,38350574 +g1,5986:6567858,38350574 +(1,5986:6567858,38350574:0,4793716,196608 +r1,6080:32779637,38350574:26211779,4990324,196608 +k1,5986:6567857,38350574:-26211780 +) +(1,5986:6567858,38350574:26211779,4793716,196608 +[1,5986:6764466,38350574:25818563,4597108,0 +(1,5969:6764466,34184511:25818563,431045,79822 +(1,5968:6764466,34184511:0,0,0 +g1,5968:6764466,34184511 +g1,5968:6764466,34184511 +g1,5968:6436786,34184511 +(1,5968:6436786,34184511:0,0,0 +) +g1,5968:6764466,34184511 +) +k1,5969:6764466,34184511:0 +h1,5969:10415960,34184511:0,0,0 +k1,5969:32583028,34184511:22167068 +g1,5969:32583028,34184511 +) +(1,5973:6764466,35000438:25818563,431045,79822 +(1,5971:6764466,35000438:0,0,0 +g1,5971:6764466,35000438 +g1,5971:6764466,35000438 +g1,5971:6436786,35000438 +(1,5971:6436786,35000438:0,0,0 +) +g1,5971:6764466,35000438 +) +g1,5973:7760328,35000438 +g1,5973:9088144,35000438 +h1,5973:11743775,35000438:0,0,0 +k1,5973:32583029,35000438:20839254 +g1,5973:32583029,35000438 +) +(1,5975:6764466,35816365:25818563,431045,79822 +(1,5974:6764466,35816365:0,0,0 +g1,5974:6764466,35816365 +g1,5974:6764466,35816365 +g1,5974:6436786,35816365 +(1,5974:6436786,35816365:0,0,0 +) +g1,5974:6764466,35816365 +) +k1,5975:6764466,35816365:0 +h1,5975:10084006,35816365:0,0,0 +k1,5975:32583030,35816365:22499024 +g1,5975:32583030,35816365 +) +(1,5979:6764466,36632292:25818563,424439,79822 +(1,5977:6764466,36632292:0,0,0 +g1,5977:6764466,36632292 +g1,5977:6764466,36632292 +g1,5977:6436786,36632292 +(1,5977:6436786,36632292:0,0,0 +) +g1,5977:6764466,36632292 +) +g1,5979:7760328,36632292 +g1,5979:9088144,36632292 +h1,5979:12075729,36632292:0,0,0 +k1,5979:32583029,36632292:20507300 +g1,5979:32583029,36632292 +) +(1,5981:6764466,37448219:25818563,431045,79822 +(1,5980:6764466,37448219:0,0,0 +g1,5980:6764466,37448219 +g1,5980:6764466,37448219 +g1,5980:6436786,37448219 +(1,5980:6436786,37448219:0,0,0 +) +g1,5980:6764466,37448219 +) +k1,5981:6764466,37448219:0 +h1,5981:9752052,37448219:0,0,0 +k1,5981:32583028,37448219:22830976 +g1,5981:32583028,37448219 +) +(1,5985:6764466,38264146:25818563,424439,86428 +(1,5983:6764466,38264146:0,0,0 +g1,5983:6764466,38264146 +g1,5983:6764466,38264146 +g1,5983:6436786,38264146 +(1,5983:6436786,38264146:0,0,0 +) +g1,5983:6764466,38264146 +) +g1,5985:7760328,38264146 +g1,5985:8092282,38264146 +g1,5985:10415960,38264146 +g1,5985:11411822,38264146 +g1,5985:12075730,38264146 +g1,5985:14399408,38264146 +g1,5985:18714810,38264146 +g1,5985:19378718,38264146 +g1,5985:20042626,38264146 +g1,5985:20706534,38264146 +g1,5985:21370442,38264146 +g1,5985:22034350,38264146 +g1,5985:22698258,38264146 +g1,5985:23362166,38264146 +g1,5985:24026074,38264146 +g1,5985:24689982,38264146 +g1,5985:25353890,38264146 +h1,5985:26349752,38264146:0,0,0 +k1,5985:32583029,38264146:6233277 +g1,5985:32583029,38264146 +) +] +) +g1,5986:32583029,38350574 +g1,5986:6764466,38350574 +g1,5986:6764466,38350574 +g1,5986:32583029,38350574 +g1,5986:32583029,38350574 +) +h1,5986:6764466,38547182:0,0,0 +] +g1,5989:32583029,38547182 +) +h1,5989:6630773,38547182:0,0,0 +v1,5992:6630773,39412262:0,393216,0 +(1,5993:6630773,42287842:25952256,3268796,0 +g1,5993:6630773,42287842 +g1,5993:6237557,42287842 +r1,6080:6368629,42287842:131072,3268796,0 +g1,5993:6567858,42287842 +g1,5993:6764466,42287842 +[1,5993:6764466,42287842:25818563,3268796,0 +(1,5993:6764466,39684739:25818563,665693,196608 +(1,5992:6764466,39684739:0,665693,196608 +r1,6080:8010564,39684739:1246098,862301,196608 +k1,5992:6764466,39684739:-1246098 +) +(1,5992:6764466,39684739:1246098,665693,196608 +) +k1,5992:8155759,39684739:145195 +k1,5992:9881977,39684739:327680 +k1,5992:12078450,39684739:145196 +k1,5992:12579505,39684739:145195 +k1,5992:14618690,39684739:145195 +k1,5992:16157837,39684739:145196 +k1,5992:18095442,39684739:145195 +k1,5992:20522601,39684739:145195 +k1,5992:22061748,39684739:145196 +k1,5992:24335552,39684739:145195 +k1,5992:26532024,39684739:145195 +k1,5992:29149893,39684739:145196 +k1,5992:31189078,39684739:145195 +k1,5992:32583029,39684739:0 +) +(1,5993:6764466,40549819:25818563,513147,126483 +k1,5992:7967489,40549819:183938 +k1,5992:9943836,40549819:183937 +k1,5992:12409738,40549819:183938 +k1,5992:13987627,40549819:183938 +k1,5992:15190649,40549819:183937 +k1,5992:17028060,40549819:183938 +k1,5992:19340607,40549819:183938 +k1,5992:20596713,40549819:183937 +k1,5992:23288058,40549819:183938 +k1,5992:26974240,40549819:183938 +k1,5992:28803131,40549819:183937 +k1,5992:30190310,40549819:183938 +k1,5992:32583029,40549819:0 +) +(1,5993:6764466,41414899:25818563,513147,134348 +k1,5992:8410192,41414899:179030 +k1,5992:10813515,41414899:179031 +k1,5992:11643973,41414899:179030 +k1,5992:14443132,41414899:179030 +k1,5992:16930340,41414899:179030 +k1,5992:18844764,41414899:179031 +(1,5992:18844764,41414899:0,452978,115847 +r1,6080:23071860,41414899:4227096,568825,115847 +k1,5992:18844764,41414899:-4227096 +) +(1,5992:18844764,41414899:4227096,452978,115847 +k1,5992:18844764,41414899:3277 +h1,5992:23068583,41414899:0,411205,112570 +) +k1,5992:23424560,41414899:179030 +k1,5992:25937327,41414899:179030 +k1,5992:27413315,41414899:179030 +k1,5992:28611431,41414899:179031 +k1,5992:29962900,41414899:179030 +k1,5992:32583029,41414899:0 +) +(1,5993:6764466,42279979:25818563,513147,7863 +g1,5992:9271873,42279979 +g1,5992:11214360,42279979 +g1,5992:12096474,42279979 +g1,5992:13361974,42279979 +g1,5992:15128824,42279979 +g1,5992:16779675,42279979 +k1,5993:32583029,42279979:13927714 +g1,5993:32583029,42279979 +) +] +g1,5993:32583029,42287842 +) +h1,5993:6630773,42287842:0,0,0 +v1,5996:6630773,43152922:0,393216,0 +(1,6080:6630773,45317863:25952256,2558157,0 +g1,6080:6630773,45317863 +g1,6080:6237557,45317863 +r1,6080:6368629,45317863:131072,2558157,0 +g1,6080:6567858,45317863 +g1,6080:6764466,45317863 +[1,6080:6764466,45317863:25818563,2558157,0 +(1,5997:6764466,43461220:25818563,701514,196608 +(1,5996:6764466,43461220:0,701514,196608 +r1,6080:8010564,43461220:1246098,898122,196608 +k1,5996:6764466,43461220:-1246098 +) +(1,5996:6764466,43461220:1246098,701514,196608 +) +k1,5996:8295022,43461220:284458 +k1,5996:8622702,43461220:327680 +k1,5996:10925947,43461220:291945 +k1,5996:14728655,43461220:291944 +k1,5996:16240880,43461220:291945 +k1,5996:19664791,43461220:291945 +k1,5996:21910363,43461220:291944 +k1,5996:24305080,43461220:284458 +k1,5996:25786226,43461220:284459 +k1,5996:28782564,43461220:284458 +k1,5996:32051532,43461220:284458 +k1,5996:32583029,43461220:0 +) +(1,5997:6764466,44326300:25818563,505283,134348 +k1,5996:7691783,44326300:275889 +k1,5996:9060157,44326300:275889 +(1,5996:9060157,44326300:0,459977,115847 +r1,6080:11880406,44326300:2820249,575824,115847 +k1,5996:9060157,44326300:-2820249 +) +(1,5996:9060157,44326300:2820249,459977,115847 +k1,5996:9060157,44326300:3277 +h1,5996:11877129,44326300:0,411205,112570 +) +k1,5996:12156295,44326300:275889 +k1,5996:13623628,44326300:275888 +k1,5996:14687915,44326300:275889 +(1,5996:14687915,44326300:0,452978,115847 +r1,6080:16804740,44326300:2116825,568825,115847 +k1,5996:14687915,44326300:-2116825 +) +(1,5996:14687915,44326300:2116825,452978,115847 +k1,5996:14687915,44326300:3277 +h1,5996:16801463,44326300:0,411205,112570 +) +k1,5996:17080629,44326300:275889 +k1,5996:20637250,44326300:275889 +k1,5996:21599301,44326300:275889 +k1,5996:23950715,44326300:275889 +k1,5996:25035974,44326300:275889 +k1,5996:26810015,44326300:275888 +h1,5996:27606933,44326300:0,0,0 +k1,5996:28056492,44326300:275889 +k1,5996:28960216,44326300:275889 +k1,5996:30932832,44326300:275889 +k1,5996:32583029,44326300:0 +) +(1,5997:6764466,45191380:25818563,513147,126483 +k1,5996:9986701,45191380:216099 +k1,5996:13194520,45191380:216100 +k1,5996:14278971,45191380:216099 +k1,5996:15587556,45191380:216100 +(1,5996:15587556,45191380:0,452978,115847 +r1,6080:18407805,45191380:2820249,568825,115847 +k1,5996:15587556,45191380:-2820249 +) +(1,5996:15587556,45191380:2820249,452978,115847 +k1,5996:15587556,45191380:3277 +h1,5996:18404528,45191380:0,411205,112570 +) +k1,5996:18623904,45191380:216099 +k1,5996:19491432,45191380:216100 +k1,5996:22141538,45191380:216099 +k1,5996:23376723,45191380:216100 +k1,5996:25661138,45191380:216099 +k1,5996:26536530,45191380:216100 +k1,5996:27771714,45191380:216099 +k1,5996:29780224,45191380:216100 +k1,5996:31563944,45191380:216099 +k1,5996:32583029,45191380:0 +) +] +g1,6080:32583029,45317863 +) +] +(1,6080:32583029,45706769:0,0,0 +g1,6080:32583029,45706769 ) -k1,5950:29014430,1915420:25935872 -g1,5950:29014430,1915420 ) ] -) -) +(1,6080:6630773,47279633:25952256,0,0 +h1,6080:6630773,47279633:25952256,0,0 ) ] -[1,6758:3078558,4812305:0,0,0 -(1,6758:3078558,2439708:0,1703936,0 -g1,6758:29030814,2439708 -g1,6758:36135244,2439708 -(1,5950:36135244,2439708:1720320,1703936,0 -(1,5950:36135244,2439708:16384,1703936,0 -[1,5950:36135244,2439708:25952256,1703936,0 -(1,5950:36135244,1915420:25952256,1179648,0 -(1,5950:36135244,1915420:16384,1179648,0 -r1,6758:36151628,1915420:16384,1179648,0 +(1,6080:4262630,4025873:0,0,0 +[1,6080:-473656,4025873:0,0,0 +(1,6080:-473656,-710413:0,0,0 +(1,6080:-473656,-710413:0,0,0 +g1,6080:-473656,-710413 ) -k1,5950:62087500,1915420:25935872 -g1,5950:62087500,1915420 +g1,6080:-473656,-710413 ) ] ) -g1,5950:36675916,2439708 -(1,5950:36675916,2439708:1179648,16384,0 -r1,6758:37855564,2439708:1179648,16384,0 +] +!29704 +}95 +Input:867:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:868:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:869:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!290 +{96 +[1,6121:4262630,47279633:28320399,43253760,0 +(1,6121:4262630,4025873:0,0,0 +[1,6121:-473656,4025873:0,0,0 +(1,6121:-473656,-710413:0,0,0 +(1,6121:-473656,-644877:0,0,0 +k1,6121:-473656,-644877:-65536 ) +(1,6121:-473656,4736287:0,0,0 +k1,6121:-473656,4736287:5209943 ) -k1,6758:3078556,2439708:-34777008 +g1,6121:-473656,-710413 ) ] -[1,6758:3078558,4812305:0,0,0 -(1,6758:3078558,49800853:0,16384,2228224 -k1,6758:1358238,49800853:-1720320 -(1,5950:1358238,49800853:1720320,16384,2228224 -(1,5950:1358238,49800853:1179648,16384,0 -r1,6758:2537886,49800853:1179648,16384,0 ) -g1,5950:3062174,49800853 -(1,5950:3062174,52029077:16384,1703936,0 -[1,5950:3062174,52029077:25952256,1703936,0 -(1,5950:3062174,51504789:25952256,1179648,0 -(1,5950:3062174,51504789:16384,1179648,0 -r1,6758:3078558,51504789:16384,1179648,0 +[1,6121:6630773,47279633:25952256,43253760,0 +[1,6121:6630773,4812305:25952256,786432,0 +(1,6121:6630773,4812305:25952256,485622,11795 +(1,6121:6630773,4812305:25952256,485622,11795 +g1,6121:3078558,4812305 +[1,6121:3078558,4812305:0,0,0 +(1,6121:3078558,2439708:0,1703936,0 +k1,6121:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,6121:2537886,2439708:1179648,16384,0 +) +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,6121:3078558,1915420:16384,1179648,0 ) -k1,5950:29014430,51504789:25935872 -g1,5950:29014430,51504789 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) ] ) ) ) ] -[1,6758:3078558,4812305:0,0,0 -(1,6758:3078558,49800853:0,16384,2228224 -g1,6758:29030814,49800853 -g1,6758:36135244,49800853 -(1,5950:36135244,49800853:1720320,16384,2228224 -(1,5950:36135244,52029077:16384,1703936,0 -[1,5950:36135244,52029077:25952256,1703936,0 -(1,5950:36135244,51504789:25952256,1179648,0 -(1,5950:36135244,51504789:16384,1179648,0 -r1,6758:36151628,51504789:16384,1179648,0 +[1,6121:3078558,4812305:0,0,0 +(1,6121:3078558,2439708:0,1703936,0 +g1,6121:29030814,2439708 +g1,6121:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,6121:36151628,1915420:16384,1179648,0 ) -k1,5950:62087500,51504789:25935872 -g1,5950:62087500,51504789 +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) ] ) -g1,5950:36675916,49800853 -(1,5950:36675916,49800853:1179648,16384,0 -r1,6758:37855564,49800853:1179648,16384,0 +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,6121:37855564,2439708:1179648,16384,0 ) ) -k1,6758:3078556,49800853:-34777008 +k1,6121:3078556,2439708:-34777008 ) ] -g1,6758:6630773,4812305 -g1,6758:6630773,4812305 -g1,6758:8364200,4812305 -g1,6758:10765439,4812305 -k1,6758:31786111,4812305:21020672 +[1,6121:3078558,4812305:0,0,0 +(1,6121:3078558,49800853:0,16384,2228224 +k1,6121:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,6121:2537886,49800853:1179648,16384,0 +) +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,6121:3078558,51504789:16384,1179648,0 ) +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) ] -[1,6758:6630773,45706769:25952256,40108032,0 -(1,6758:6630773,45706769:25952256,40108032,0 -(1,6758:6630773,45706769:0,0,0 -g1,6758:6630773,45706769 ) -[1,6758:6630773,45706769:25952256,40108032,0 -v1,6688:6630773,6254097:0,393216,0 -(1,6688:6630773,13173354:25952256,7312473,196608 -g1,6688:6630773,13173354 -g1,6688:6630773,13173354 -g1,6688:6434165,13173354 -(1,6688:6434165,13173354:0,7312473,196608 -r1,6758:32779637,13173354:26345472,7509081,196608 -k1,6688:6434165,13173354:-26345472 ) -(1,6688:6434165,13173354:26345472,7312473,196608 -[1,6688:6630773,13173354:25952256,7115865,0 -(1,6665:6630773,6468007:25952256,410518,76021 -(1,6664:6630773,6468007:0,0,0 -g1,6664:6630773,6468007 -g1,6664:6630773,6468007 -g1,6664:6303093,6468007 -(1,6664:6303093,6468007:0,0,0 ) -g1,6664:6630773,6468007 +] +[1,6121:3078558,4812305:0,0,0 +(1,6121:3078558,49800853:0,16384,2228224 +g1,6121:29030814,49800853 +g1,6121:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,6121:36151628,51504789:16384,1179648,0 ) -k1,6665:6630773,6468007:0 -h1,6665:10108375,6468007:0,0,0 -k1,6665:32583029,6468007:22474654 -g1,6665:32583029,6468007 +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 ) -(1,6669:6630773,7134185:25952256,410518,76021 -(1,6667:6630773,7134185:0,0,0 -g1,6667:6630773,7134185 -g1,6667:6630773,7134185 -g1,6667:6303093,7134185 -(1,6667:6303093,7134185:0,0,0 +] ) -g1,6667:6630773,7134185 +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,6121:37855564,49800853:1179648,16384,0 ) -g1,6669:7579210,7134185 -g1,6669:8843793,7134185 -h1,6669:12637541,7134185:0,0,0 -k1,6669:32583029,7134185:19945488 -g1,6669:32583029,7134185 -) -(1,6671:6630773,8455723:25952256,410518,76021 -(1,6670:6630773,8455723:0,0,0 -g1,6670:6630773,8455723 -g1,6670:6630773,8455723 -g1,6670:6303093,8455723 -(1,6670:6303093,8455723:0,0,0 -) -g1,6670:6630773,8455723 -) -k1,6671:6630773,8455723:0 -h1,6671:9792230,8455723:0,0,0 -k1,6671:32583030,8455723:22790800 -g1,6671:32583030,8455723 -) -(1,6675:6630773,9121901:25952256,404226,76021 -(1,6673:6630773,9121901:0,0,0 -g1,6673:6630773,9121901 -g1,6673:6630773,9121901 -g1,6673:6303093,9121901 -(1,6673:6303093,9121901:0,0,0 -) -g1,6673:6630773,9121901 -) -g1,6675:7579210,9121901 -g1,6675:8843793,9121901 -h1,6675:10740667,9121901:0,0,0 -k1,6675:32583029,9121901:21842362 -g1,6675:32583029,9121901 -) -(1,6677:6630773,10443439:25952256,410518,76021 -(1,6676:6630773,10443439:0,0,0 -g1,6676:6630773,10443439 -g1,6676:6630773,10443439 -g1,6676:6303093,10443439 -(1,6676:6303093,10443439:0,0,0 -) -g1,6676:6630773,10443439 -) -k1,6677:6630773,10443439:0 -h1,6677:12637541,10443439:0,0,0 -k1,6677:32583029,10443439:19945488 -g1,6677:32583029,10443439 -) -(1,6681:6630773,11109617:25952256,404226,76021 -(1,6679:6630773,11109617:0,0,0 -g1,6679:6630773,11109617 -g1,6679:6630773,11109617 -g1,6679:6303093,11109617 -(1,6679:6303093,11109617:0,0,0 -) -g1,6679:6630773,11109617 -) -g1,6681:7579210,11109617 -g1,6681:8843793,11109617 -h1,6681:10108376,11109617:0,0,0 -k1,6681:32583028,11109617:22474652 -g1,6681:32583028,11109617 -) -(1,6683:6630773,12431155:25952256,410518,76021 -(1,6682:6630773,12431155:0,0,0 -g1,6682:6630773,12431155 -g1,6682:6630773,12431155 -g1,6682:6303093,12431155 -(1,6682:6303093,12431155:0,0,0 -) -g1,6682:6630773,12431155 -) -k1,6683:6630773,12431155:0 -h1,6683:10740667,12431155:0,0,0 -k1,6683:32583029,12431155:21842362 -g1,6683:32583029,12431155 -) -(1,6687:6630773,13097333:25952256,404226,76021 -(1,6685:6630773,13097333:0,0,0 -g1,6685:6630773,13097333 -g1,6685:6630773,13097333 -g1,6685:6303093,13097333 -(1,6685:6303093,13097333:0,0,0 -) -g1,6685:6630773,13097333 -) -g1,6687:7579210,13097333 -g1,6687:8843793,13097333 -h1,6687:10108376,13097333:0,0,0 -k1,6687:32583028,13097333:22474652 -g1,6687:32583028,13097333 -) -] -) -g1,6688:32583029,13173354 -g1,6688:6630773,13173354 -g1,6688:6630773,13173354 -g1,6688:32583029,13173354 -g1,6688:32583029,13173354 -) -h1,6688:6630773,13369962:0,0,0 -v1,6692:6630773,15259153:0,393216,0 -(1,6706:6630773,22749232:25952256,7883295,0 -g1,6706:6630773,22749232 -g1,6706:6303093,22749232 -r1,6758:6401397,22749232:98304,7883295,0 -g1,6706:6600626,22749232 -g1,6706:6797234,22749232 -[1,6706:6797234,22749232:25785795,7883295,0 -(1,6693:6797234,15691691:25785795,825754,196608 -(1,6692:6797234,15691691:0,825754,196608 -r1,6758:7890375,15691691:1093141,1022362,196608 -k1,6692:6797234,15691691:-1093141 -) -(1,6692:6797234,15691691:1093141,825754,196608 -) -k1,6692:8072292,15691691:181917 -k1,6692:9390221,15691691:327680 -k1,6692:10390027,15691691:181917 -k1,6692:11591029,15691691:181917 -k1,6692:15467210,15691691:181917 -k1,6692:16180624,15691691:181917 -k1,6692:17647047,15691691:181917 -k1,6692:18595080,15691691:181917 -k1,6692:21400403,15691691:181917 -k1,6692:24423961,15691691:181917 -k1,6692:25495857,15691691:181917 -k1,6692:29198368,15691691:181917 -k1,6692:30855500,15691691:181917 -k1,6692:32583029,15691691:0 -) -(1,6693:6797234,16533179:25785795,513147,134348 -k1,6692:9320965,16533179:336795 -k1,6692:10123722,16533179:336796 -k1,6692:12768695,16533179:336795 -k1,6692:13764783,16533179:336796 -k1,6692:16863921,16533179:336795 -k1,6692:19544283,16533179:336795 -k1,6692:20872639,16533179:336796 -k1,6692:23970466,16533179:336795 -k1,6692:24993423,16533179:336795 -k1,6692:28906519,16533179:336796 -k1,6692:30262399,16533179:336795 -k1,6692:32583029,16533179:0 -) -(1,6693:6797234,17374667:25785795,513147,134348 -k1,6692:9767803,17374667:248203 -k1,6692:11874606,17374667:248202 -k1,6692:14933648,17374667:248203 -k1,6692:17825573,17374667:248203 -k1,6692:20305276,17374667:248202 -k1,6692:22482859,17374667:248203 -k1,6692:24223971,17374667:248202 -k1,6692:25491259,17374667:248203 -k1,6692:28451997,17374667:248203 -k1,6692:29790063,17374667:248202 -k1,6692:32051532,17374667:248203 -k1,6692:32583029,17374667:0 -) -(1,6693:6797234,18216155:25785795,513147,115847 -g1,6692:9678196,18216155 -g1,6692:10563587,18216155 -g1,6692:12838341,18216155 -g1,6692:14906001,18216155 -g1,6692:16052881,18216155 -(1,6692:16052881,18216155:0,414482,115847 -r1,6758:19224841,18216155:3171960,530329,115847 -k1,6692:16052881,18216155:-3171960 -) -(1,6692:16052881,18216155:3171960,414482,115847 -k1,6692:16052881,18216155:3277 -h1,6692:19221564,18216155:0,411205,112570 -) -k1,6693:32583029,18216155:13184518 -g1,6693:32583029,18216155 -) -v1,6695:6797234,19406621:0,393216,0 -(1,6701:6797234,21060365:25785795,2046960,196608 -g1,6701:6797234,21060365 -g1,6701:6797234,21060365 -g1,6701:6600626,21060365 -(1,6701:6600626,21060365:0,2046960,196608 -r1,6758:32779637,21060365:26179011,2243568,196608 -k1,6701:6600625,21060365:-26179012 -) -(1,6701:6600626,21060365:26179011,2046960,196608 -[1,6701:6797234,21060365:25785795,1850352,0 -(1,6697:6797234,19620531:25785795,410518,82312 -(1,6696:6797234,19620531:0,0,0 -g1,6696:6797234,19620531 -g1,6696:6797234,19620531 -g1,6696:6469554,19620531 -(1,6696:6469554,19620531:0,0,0 -) -g1,6696:6797234,19620531 -) -g1,6697:8377963,19620531 -g1,6697:9326401,19620531 -g1,6697:15965461,19620531 -g1,6697:16597753,19620531 -g1,6697:21656085,19620531 -k1,6697:21656085,19620531:0 -h1,6697:24501396,19620531:0,0,0 -k1,6697:32583029,19620531:8081633 -g1,6697:32583029,19620531 -) -(1,6698:6797234,20286709:25785795,404226,107478 -h1,6698:6797234,20286709:0,0,0 -g1,6698:7113380,20286709 -g1,6698:7429526,20286709 -g1,6698:7745672,20286709 -g1,6698:8061818,20286709 -g1,6698:8377964,20286709 -g1,6698:8694110,20286709 -g1,6698:9010256,20286709 -g1,6698:9326402,20286709 -g1,6698:9642548,20286709 -g1,6698:9958694,20286709 -g1,6698:10274840,20286709 -g1,6698:10590986,20286709 -g1,6698:10907132,20286709 -g1,6698:11223278,20286709 -g1,6698:11539424,20286709 -g1,6698:11855570,20286709 -g1,6698:12171716,20286709 -g1,6698:12487862,20286709 -g1,6698:12804008,20286709 -g1,6698:15017028,20286709 -g1,6698:15649320,20286709 -g1,6698:18178487,20286709 -g1,6698:19759216,20286709 -g1,6698:21656091,20286709 -g1,6698:23236820,20286709 -g1,6698:25133695,20286709 -k1,6698:25133695,20286709:0 -h1,6698:26714424,20286709:0,0,0 -k1,6698:32583029,20286709:5868605 -g1,6698:32583029,20286709 -) -(1,6699:6797234,20952887:25785795,404226,107478 -h1,6699:6797234,20952887:0,0,0 -g1,6699:7113380,20952887 -g1,6699:7429526,20952887 -g1,6699:7745672,20952887 -g1,6699:8061818,20952887 -g1,6699:8377964,20952887 -g1,6699:8694110,20952887 -g1,6699:9010256,20952887 -g1,6699:9326402,20952887 -g1,6699:9642548,20952887 -g1,6699:9958694,20952887 -g1,6699:10274840,20952887 -g1,6699:10590986,20952887 -g1,6699:10907132,20952887 -g1,6699:11223278,20952887 -g1,6699:11539424,20952887 -g1,6699:11855570,20952887 -g1,6699:12171716,20952887 -g1,6699:12487862,20952887 -g1,6699:12804008,20952887 -g1,6699:15017028,20952887 -g1,6699:15649320,20952887 -g1,6699:17862341,20952887 -g1,6699:19443070,20952887 -g1,6699:21023799,20952887 -g1,6699:22604528,20952887 -g1,6699:24185257,20952887 -h1,6699:25765985,20952887:0,0,0 -k1,6699:32583029,20952887:6817044 -g1,6699:32583029,20952887 -) -] -) -g1,6701:32583029,21060365 -g1,6701:6797234,21060365 -g1,6701:6797234,21060365 -g1,6701:32583029,21060365 -g1,6701:32583029,21060365 -) -h1,6701:6797234,21256973:0,0,0 -(1,6705:6797234,22622749:25785795,505283,126483 -h1,6704:6797234,22622749:983040,0,0 -g1,6704:9102790,22622749 -(1,6704:9102790,22622749:0,459977,115847 -r1,6758:10516191,22622749:1413401,575824,115847 -k1,6704:9102790,22622749:-1413401 -) -(1,6704:9102790,22622749:1413401,459977,115847 -k1,6704:9102790,22622749:3277 -h1,6704:10512914,22622749:0,411205,112570 -) -g1,6704:10715420,22622749 -g1,6704:12106094,22622749 -(1,6704:12106094,22622749:0,459977,115847 -r1,6758:13519495,22622749:1413401,575824,115847 -k1,6704:12106094,22622749:-1413401 -) -(1,6704:12106094,22622749:1413401,459977,115847 -k1,6704:12106094,22622749:3277 -h1,6704:13516218,22622749:0,411205,112570 -) -g1,6704:13718724,22622749 -k1,6705:32583030,22622749:16809752 -g1,6705:32583030,22622749 -) -] -g1,6706:32583029,22749232 -) -h1,6706:6630773,22749232:0,0,0 -(1,6709:6630773,24114571:25952256,513147,134348 -h1,6708:6630773,24114571:983040,0,0 -k1,6708:9284165,24114571:191204 -k1,6708:12170866,24114571:191205 -(1,6708:12170866,24114571:0,452978,115847 -r1,6758:14639403,24114571:2468537,568825,115847 -k1,6708:12170866,24114571:-2468537 -) -(1,6708:12170866,24114571:2468537,452978,115847 -k1,6708:12170866,24114571:3277 -h1,6708:14636126,24114571:0,411205,112570 -) -k1,6708:14830607,24114571:191204 -k1,6708:15890164,24114571:191205 -k1,6708:17185650,24114571:191204 -k1,6708:19192857,24114571:191204 -k1,6708:20403147,24114571:191205 -k1,6708:22149520,24114571:191204 -k1,6708:23000017,24114571:191205 -k1,6708:23961924,24114571:191204 -k1,6708:24567963,24114571:191196 -k1,6708:26718694,24114571:191205 -k1,6708:28141975,24114571:191204 -k1,6708:30611867,24114571:191205 -h1,6708:31582455,24114571:0,0,0 -k1,6708:31773659,24114571:191204 -k1,6708:32583029,24114571:0 -) -(1,6709:6630773,24956059:25952256,505283,134348 -k1,6708:8382330,24956059:253404 -h1,6708:9179248,24956059:0,0,0 -k1,6708:9813415,24956059:253403 -k1,6708:10884708,24956059:253404 -k1,6708:12006464,24956059:253404 -k1,6708:13467040,24956059:253403 -k1,6708:14336482,24956059:253404 -k1,6708:15608971,24956059:253404 -k1,6708:18616853,24956059:253404 -k1,6708:21014594,24956059:253403 -(1,6708:21014594,24956059:0,452978,115847 -r1,6758:22427995,24956059:1413401,568825,115847 -k1,6708:21014594,24956059:-1413401 -) -(1,6708:21014594,24956059:1413401,452978,115847 -k1,6708:21014594,24956059:3277 -h1,6708:22424718,24956059:0,411205,112570 -) -k1,6708:22681399,24956059:253404 -k1,6708:24126248,24956059:253404 -(1,6708:24126248,24956059:0,459977,115847 -r1,6758:27649920,24956059:3523672,575824,115847 -k1,6708:24126248,24956059:-3523672 -) -(1,6708:24126248,24956059:3523672,459977,115847 -k1,6708:24126248,24956059:3277 -h1,6708:27646643,24956059:0,411205,112570 -) -k1,6708:27903323,24956059:253403 -k1,6708:30446555,24956059:253404 -k1,6708:32583029,24956059:0 -) -(1,6709:6630773,25797547:25952256,513147,126483 -k1,6708:7571269,25797547:289068 -k1,6708:9032777,25797547:289069 -k1,6708:12084188,25797547:289068 -k1,6708:14779738,25797547:289068 -k1,6708:18003508,25797547:289068 -k1,6708:19801216,25797547:289069 -k1,6708:23921519,25797547:289068 -k1,6708:24742084,25797547:289068 -k1,6708:26885821,25797547:289068 -k1,6708:27984260,25797547:289069 -k1,6708:28629188,25797547:289068 -k1,6708:31923737,25797547:289068 -k1,6708:32583029,25797547:0 -) -(1,6709:6630773,26639035:25952256,513147,126483 -k1,6708:9174532,26639035:137277 -k1,6708:10265359,26639035:137278 -k1,6708:11449901,26639035:137277 -k1,6708:12871685,26639035:137278 -k1,6708:14564131,26639035:137277 -(1,6708:14564131,26639035:0,459977,115847 -r1,6758:18087803,26639035:3523672,575824,115847 -k1,6708:14564131,26639035:-3523672 -) -(1,6708:14564131,26639035:3523672,459977,115847 -k1,6708:14564131,26639035:3277 -h1,6708:18084526,26639035:0,411205,112570 -) -k1,6708:18225080,26639035:137277 -k1,6708:18893855,26639035:137278 -k1,6708:21414021,26639035:137277 -k1,6708:23118920,26639035:137278 -k1,6708:24811366,26639035:137277 -(1,6708:24811366,26639035:0,452978,115847 -r1,6758:26224767,26639035:1413401,568825,115847 -k1,6708:24811366,26639035:-1413401 -) -(1,6708:24811366,26639035:1413401,452978,115847 -k1,6708:24811366,26639035:3277 -h1,6708:26221490,26639035:0,411205,112570 -) -k1,6708:26535715,26639035:137278 -k1,6708:31193666,26639035:137277 -k1,6708:32583029,26639035:0 -) -(1,6709:6630773,27480523:25952256,513147,134348 -k1,6708:9080307,27480523:242937 -k1,6708:11447921,27480523:242937 -k1,6708:12709942,27480523:242936 -k1,6708:15737504,27480523:242937 -k1,6708:17171886,27480523:242937 -k1,6708:22042976,27480523:242937 -k1,6708:22945204,27480523:242936 -k1,6708:24685639,27480523:242937 -k1,6708:25614738,27480523:242937 -k1,6708:27246383,27480523:242937 -k1,6708:28175481,27480523:242936 -k1,6708:29798606,27480523:242937 -k1,6708:31516758,27480523:242937 -k1,6708:32583029,27480523:0 -) -(1,6709:6630773,28322011:25952256,513147,126483 -k1,6708:8342019,28322011:201296 -k1,6708:10763020,28322011:201297 -k1,6708:11725844,28322011:201296 -k1,6708:13210336,28322011:201297 -k1,6708:14898644,28322011:201296 -k1,6708:17481519,28322011:201297 -k1,6708:18630466,28322011:201296 -k1,6708:20221126,28322011:201297 -k1,6708:22629019,28322011:201296 -k1,6708:23985060,28322011:201297 -k1,6708:24957059,28322011:201296 -k1,6708:28890631,28322011:201297 -k1,6708:29751219,28322011:201296 -k1,6708:32583029,28322011:0 -) -(1,6709:6630773,29163499:25952256,505283,134348 -g1,6708:7854985,29163499 -g1,6708:10332901,29163499 -h1,6708:11303489,29163499:0,0,0 -g1,6708:11502718,29163499 -g1,6708:12511317,29163499 -g1,6708:14208699,29163499 -h1,6708:15404076,29163499:0,0,0 -k1,6709:32583028,29163499:16798188 -g1,6709:32583028,29163499 -) -(1,6711:6630773,30004987:25952256,513147,7863 -h1,6710:6630773,30004987:983040,0,0 -k1,6710:11091099,30004987:239152 -k1,6710:11989543,30004987:239152 -k1,6710:15421608,30004987:239151 -k1,6710:18284166,30004987:239152 -k1,6710:21364959,30004987:239152 -k1,6710:22286996,30004987:239152 -k1,6710:25839647,30004987:239151 -k1,6710:27183081,30004987:239152 -k1,6710:28169999,30004987:239152 -k1,6710:29986603,30004987:239152 -k1,6710:31371979,30004987:239151 -k1,6710:32227169,30004987:239152 -k1,6710:32583029,30004987:0 -) -(1,6711:6630773,30846475:25952256,505283,126483 -g1,6710:7823528,30846475 -g1,6710:9416708,30846475 -g1,6710:12692852,30846475 -(1,6710:12692852,30846475:0,452978,115847 -r1,6758:14457966,30846475:1765114,568825,115847 -k1,6710:12692852,30846475:-1765114 -) -(1,6710:12692852,30846475:1765114,452978,115847 -g1,6710:13751265,30846475 -h1,6710:14454689,30846475:0,411205,112570 -) -g1,6710:14657195,30846475 -g1,6710:16047869,30846475 -(1,6710:16047869,30846475:0,459977,115847 -r1,6758:16406135,30846475:358266,575824,115847 -k1,6710:16047869,30846475:-358266 -) -(1,6710:16047869,30846475:358266,459977,115847 -k1,6710:16047869,30846475:3277 -h1,6710:16402858,30846475:0,411205,112570 -) -k1,6711:32583029,30846475:16003224 -g1,6711:32583029,30846475 -) -v1,6713:6630773,32036505:0,393216,0 -(1,6738:6630773,38955762:25952256,7312473,196608 -g1,6738:6630773,38955762 -g1,6738:6630773,38955762 -g1,6738:6434165,38955762 -(1,6738:6434165,38955762:0,7312473,196608 -r1,6758:32779637,38955762:26345472,7509081,196608 -k1,6738:6434165,38955762:-26345472 -) -(1,6738:6434165,38955762:26345472,7312473,196608 -[1,6738:6630773,38955762:25952256,7115865,0 -(1,6715:6630773,32250415:25952256,410518,107478 -(1,6714:6630773,32250415:0,0,0 -g1,6714:6630773,32250415 -g1,6714:6630773,32250415 -g1,6714:6303093,32250415 -(1,6714:6303093,32250415:0,0,0 -) -g1,6714:6630773,32250415 -) -h1,6715:10108376,32250415:0,0,0 -k1,6715:32583028,32250415:22474652 -g1,6715:32583028,32250415 -) -(1,6719:6630773,32916593:25952256,404226,76021 -(1,6717:6630773,32916593:0,0,0 -g1,6717:6630773,32916593 -g1,6717:6630773,32916593 -g1,6717:6303093,32916593 -(1,6717:6303093,32916593:0,0,0 -) -g1,6717:6630773,32916593 -) -g1,6719:7579210,32916593 -g1,6719:8843793,32916593 -g1,6719:10424522,32916593 -g1,6719:10740668,32916593 -g1,6719:12005251,32916593 -g1,6719:13585980,32916593 -g1,6719:13902126,32916593 -g1,6719:15166709,32916593 -g1,6719:16747438,32916593 -g1,6719:17063584,32916593 -h1,6719:18012021,32916593:0,0,0 -k1,6719:32583029,32916593:14571008 -g1,6719:32583029,32916593 -) -(1,6721:6630773,34238131:25952256,410518,107478 -(1,6720:6630773,34238131:0,0,0 -g1,6720:6630773,34238131 -g1,6720:6630773,34238131 -g1,6720:6303093,34238131 -(1,6720:6303093,34238131:0,0,0 -) -g1,6720:6630773,34238131 -) -h1,6721:11689103,34238131:0,0,0 -k1,6721:32583029,34238131:20893926 -g1,6721:32583029,34238131 -) -(1,6725:6630773,34904309:25952256,404226,76021 -(1,6723:6630773,34904309:0,0,0 -g1,6723:6630773,34904309 -g1,6723:6630773,34904309 -g1,6723:6303093,34904309 -(1,6723:6303093,34904309:0,0,0 -) -g1,6723:6630773,34904309 -) -g1,6725:7579210,34904309 -g1,6725:8843793,34904309 -g1,6725:10424522,34904309 -g1,6725:10740668,34904309 -g1,6725:12005251,34904309 -g1,6725:13585980,34904309 -g1,6725:13902126,34904309 -g1,6725:15166709,34904309 -g1,6725:16747438,34904309 -g1,6725:17063584,34904309 -h1,6725:18012021,34904309:0,0,0 -k1,6725:32583029,34904309:14571008 -g1,6725:32583029,34904309 -) -(1,6727:6630773,36225847:25952256,410518,76021 -(1,6726:6630773,36225847:0,0,0 -g1,6726:6630773,36225847 -g1,6726:6630773,36225847 -g1,6726:6303093,36225847 -(1,6726:6303093,36225847:0,0,0 -) -g1,6726:6630773,36225847 -) -h1,6727:9476084,36225847:0,0,0 -k1,6727:32583028,36225847:23106944 -g1,6727:32583028,36225847 -) -(1,6731:6630773,36892025:25952256,404226,76021 -(1,6729:6630773,36892025:0,0,0 -g1,6729:6630773,36892025 -g1,6729:6630773,36892025 -g1,6729:6303093,36892025 -(1,6729:6303093,36892025:0,0,0 -) -g1,6729:6630773,36892025 -) -g1,6731:7579210,36892025 -g1,6731:8843793,36892025 -g1,6731:10424522,36892025 -g1,6731:10740668,36892025 -g1,6731:12005251,36892025 -g1,6731:13585980,36892025 -g1,6731:13902126,36892025 -g1,6731:15166709,36892025 -g1,6731:16747438,36892025 -g1,6731:17063584,36892025 -h1,6731:18012021,36892025:0,0,0 -k1,6731:32583029,36892025:14571008 -g1,6731:32583029,36892025 -) -(1,6733:6630773,38213563:25952256,410518,107478 -(1,6732:6630773,38213563:0,0,0 -g1,6732:6630773,38213563 -g1,6732:6630773,38213563 -g1,6732:6303093,38213563 -(1,6732:6303093,38213563:0,0,0 -) -g1,6732:6630773,38213563 -) -k1,6733:6630773,38213563:0 -h1,6733:13902123,38213563:0,0,0 -k1,6733:32583029,38213563:18680906 -g1,6733:32583029,38213563 -) -(1,6737:6630773,38879741:25952256,404226,76021 -(1,6735:6630773,38879741:0,0,0 -g1,6735:6630773,38879741 -g1,6735:6630773,38879741 -g1,6735:6303093,38879741 -(1,6735:6303093,38879741:0,0,0 -) -g1,6735:6630773,38879741 -) -g1,6737:7579210,38879741 -g1,6737:8843793,38879741 -h1,6737:11689104,38879741:0,0,0 -k1,6737:32583028,38879741:20893924 -g1,6737:32583028,38879741 -) -] -) -g1,6738:32583029,38955762 -g1,6738:6630773,38955762 -g1,6738:6630773,38955762 -g1,6738:32583029,38955762 -g1,6738:32583029,38955762 -) -h1,6738:6630773,39152370:0,0,0 -(1,6742:6630773,40517709:25952256,513147,126483 -h1,6741:6630773,40517709:983040,0,0 -k1,6741:8512873,40517709:271225 -k1,6741:9803184,40517709:271226 -k1,6741:11727882,40517709:271225 -k1,6741:13237082,40517709:271225 -k1,6741:14194469,40517709:271225 -k1,6741:15859646,40517709:271226 -k1,6741:17628369,40517709:271225 -k1,6741:18767946,40517709:271225 -k1,6741:20143454,40517709:271226 -k1,6741:21612022,40517709:271225 -k1,6741:24506653,40517709:271225 -k1,6741:27619519,40517709:271225 -k1,6741:28542173,40517709:271226 -k1,6741:30202761,40517709:271225 -k1,6741:32583029,40517709:0 -) -(1,6742:6630773,41359197:25952256,513147,134348 -g1,6741:9845969,41359197 -g1,6741:11728163,41359197 -g1,6741:13590040,41359197 -g1,6741:14255230,41359197 -k1,6742:32583029,41359197:15855781 -g1,6742:32583029,41359197 -) -v1,6744:6630773,42549227:0,393216,0 -(1,6758:6630773,45510161:25952256,3354150,196608 -g1,6758:6630773,45510161 -g1,6758:6630773,45510161 -g1,6758:6434165,45510161 -(1,6758:6434165,45510161:0,3354150,196608 -r1,6758:32779637,45510161:26345472,3550758,196608 -k1,6758:6434165,45510161:-26345472 -) -(1,6758:6434165,45510161:26345472,3354150,196608 -[1,6758:6630773,45510161:25952256,3157542,0 -(1,6746:6630773,42763137:25952256,410518,31456 -(1,6745:6630773,42763137:0,0,0 -g1,6745:6630773,42763137 -g1,6745:6630773,42763137 -g1,6745:6303093,42763137 -(1,6745:6303093,42763137:0,0,0 -) -g1,6745:6630773,42763137 -) -g1,6746:9159939,42763137 -g1,6746:10108377,42763137 -h1,6746:11056815,42763137:0,0,0 -k1,6746:32583029,42763137:21526214 -g1,6746:32583029,42763137 -) -(1,6747:6630773,43429315:25952256,410518,76021 -h1,6747:6630773,43429315:0,0,0 -g1,6747:10740667,43429315 -g1,6747:11689105,43429315 -h1,6747:12637542,43429315:0,0,0 -k1,6747:32583030,43429315:19945488 -g1,6747:32583030,43429315 -) -(1,6748:6630773,44095493:25952256,410518,76021 -h1,6748:6630773,44095493:0,0,0 -k1,6748:6630773,44095493:0 -h1,6748:9476084,44095493:0,0,0 -k1,6748:32583028,44095493:23106944 -g1,6748:32583028,44095493 -) -(1,6757:6630773,44761671:25952256,410518,9436 -(1,6750:6630773,44761671:0,0,0 -g1,6750:6630773,44761671 -g1,6750:6630773,44761671 -g1,6750:6303093,44761671 -(1,6750:6303093,44761671:0,0,0 -) -g1,6750:6630773,44761671 -) -g1,6757:7579210,44761671 -g1,6757:12005251,44761671 -g1,6757:12637543,44761671 -g1,6757:14218272,44761671 -g1,6757:15166709,44761671 -g1,6757:15482855,44761671 -g1,6757:16115147,44761671 -h1,6757:19276604,44761671:0,0,0 -k1,6757:32583029,44761671:13306425 -g1,6757:32583029,44761671 -) -(1,6757:6630773,45427849:25952256,410518,82312 -h1,6757:6630773,45427849:0,0,0 -g1,6757:7579210,45427849 -g1,6757:7895356,45427849 -g1,6757:8527648,45427849 -g1,6757:12005251,45427849 -g1,6757:14218271,45427849 -g1,6757:15166708,45427849 -g1,6757:15799000,45427849 -g1,6757:18012020,45427849 -g1,6757:22438060,45427849 -g1,6757:23070352,45427849 -g1,6757:23702644,45427849 -g1,6757:24334936,45427849 -g1,6757:24967228,45427849 -g1,6757:25599520,45427849 -h1,6757:25915666,45427849:0,0,0 -k1,6757:32583029,45427849:6667363 -g1,6757:32583029,45427849 -) -] -) -g1,6758:32583029,45510161 -g1,6758:6630773,45510161 -g1,6758:6630773,45510161 -g1,6758:32583029,45510161 -g1,6758:32583029,45510161 -) -] -(1,6758:32583029,45706769:0,0,0 -g1,6758:32583029,45706769 -) -) -] -(1,6758:6630773,47279633:25952256,0,0 -h1,6758:6630773,47279633:25952256,0,0 -) -] -(1,6758:4262630,4025873:0,0,0 -[1,6758:-473656,4025873:0,0,0 -(1,6758:-473656,-710413:0,0,0 -(1,6758:-473656,-710413:0,0,0 -g1,6758:-473656,-710413 -) -g1,6758:-473656,-710413 -) -] -) -] -!25435 -}112 -Input:910:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:911:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:912:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!291 -{113 -[1,6863:4262630,47279633:28320399,43253760,0 -(1,6863:4262630,4025873:0,0,0 -[1,6863:-473656,4025873:0,0,0 -(1,6863:-473656,-710413:0,0,0 -(1,6863:-473656,-644877:0,0,0 -k1,6863:-473656,-644877:-65536 ) -(1,6863:-473656,4736287:0,0,0 -k1,6863:-473656,4736287:5209943 +k1,6121:3078556,49800853:-34777008 ) -g1,6863:-473656,-710413 +] +g1,6121:6630773,4812305 +g1,6121:6630773,4812305 +g1,6121:9104757,4812305 +k1,6121:31786111,4812305:22681354 +) +) +] +[1,6121:6630773,45706769:25952256,40108032,0 +(1,6121:6630773,45706769:25952256,40108032,0 +(1,6121:6630773,45706769:0,0,0 +g1,6121:6630773,45706769 +) +[1,6121:6630773,45706769:25952256,40108032,0 +v1,6080:6630773,6254097:0,393216,0 +(1,6080:6630773,36481318:25952256,30620437,0 +g1,6080:6630773,36481318 +g1,6080:6237557,36481318 +r1,6121:6368629,36481318:131072,30620437,0 +g1,6080:6567858,36481318 +g1,6080:6764466,36481318 +[1,6080:6764466,36481318:25818563,30620437,0 +(1,5997:6764466,6374028:25818563,513147,134348 +k1,5996:8856828,6374028:198372 +k1,5996:10660833,6374028:198373 +k1,5996:11510633,6374028:198372 +k1,5996:14007353,6374028:198372 +k1,5996:15773347,6374028:198373 +k1,5996:18601679,6374028:198372 +k1,5996:20319831,6374028:198372 +k1,5996:21701128,6374028:198372 +k1,5996:22550929,6374028:198373 +k1,5996:24778296,6374028:198372 +k1,5996:27984771,6374028:198372 +k1,5996:28866029,6374028:198373 +k1,5996:30012052,6374028:198372 +k1,5996:32583029,6374028:0 +) +(1,5997:6764466,7239108:25818563,505283,134348 +g1,5996:7579733,7239108 +g1,5996:8798047,7239108 +g1,5996:11378199,7239108 +g1,5996:15437499,7239108 +k1,5997:32583029,7239108:15458633 +g1,5997:32583029,7239108 +) +(1,5999:6764466,8104188:25818563,505283,134348 +h1,5998:6764466,8104188:983040,0,0 +g1,5998:10409578,8104188 +g1,5998:13363285,8104188 +g1,5998:15301840,8104188 +g1,5998:17236462,8104188 +(1,5998:17236462,8104188:0,452978,115847 +r1,6121:19001575,8104188:1765113,568825,115847 +k1,5998:17236462,8104188:-1765113 +) +(1,5998:17236462,8104188:1765113,452978,115847 +k1,5998:17236462,8104188:3277 +h1,5998:18998298,8104188:0,411205,112570 +) +k1,5999:32583029,8104188:13407784 +g1,5999:32583029,8104188 +) +v1,6001:6764466,8789043:0,393216,0 +(1,6016:6764466,13605648:25818563,5209821,196608 +g1,6016:6764466,13605648 +g1,6016:6764466,13605648 +g1,6016:6567858,13605648 +(1,6016:6567858,13605648:0,5209821,196608 +r1,6121:32779637,13605648:26211779,5406429,196608 +k1,6016:6567857,13605648:-26211780 +) +(1,6016:6567858,13605648:26211779,5209821,196608 +[1,6016:6764466,13605648:25818563,5013213,0 +(1,6003:6764466,9023480:25818563,431045,86428 +(1,6002:6764466,9023480:0,0,0 +g1,6002:6764466,9023480 +g1,6002:6764466,9023480 +g1,6002:6436786,9023480 +(1,6002:6436786,9023480:0,0,0 +) +g1,6002:6764466,9023480 +) +k1,6003:9075837,9023480:983555 +k1,6003:10723299,9023480:983554 +k1,6003:18013979,9023480:983555 +k1,6003:22317072,9023480:983554 +k1,6003:26620166,9023480:983555 +k1,6003:30923259,9023480:983554 +k1,6003:32583029,9023480:0 +) +(1,6003:6764466,9708335:25818563,424439,86428 +g1,6003:9088144,9708335 +h1,6003:12739637,9708335:0,0,0 +k1,6003:32583029,9708335:19843392 +g1,6003:32583029,9708335 +) +(1,6004:6764466,10393190:25818563,431045,79822 +h1,6004:6764466,10393190:0,0,0 +k1,6004:6764466,10393190:0 +h1,6004:10747914,10393190:0,0,0 +k1,6004:32583030,10393190:21835116 +g1,6004:32583030,10393190 +) +(1,6008:6764466,11209117:25818563,424439,79822 +(1,6006:6764466,11209117:0,0,0 +g1,6006:6764466,11209117 +g1,6006:6764466,11209117 +g1,6006:6436786,11209117 +(1,6006:6436786,11209117:0,0,0 +) +g1,6006:6764466,11209117 +) +g1,6008:7760328,11209117 +g1,6008:9088144,11209117 +g1,6008:12407683,11209117 +h1,6008:15395268,11209117:0,0,0 +k1,6008:32583028,11209117:17187760 +g1,6008:32583028,11209117 +) +(1,6010:6764466,12025044:25818563,431045,86428 +(1,6009:6764466,12025044:0,0,0 +g1,6009:6764466,12025044 +g1,6009:6764466,12025044 +g1,6009:6436786,12025044 +(1,6009:6436786,12025044:0,0,0 +) +g1,6009:6764466,12025044 +) +g1,6010:8424236,12025044 +g1,6010:9420098,12025044 +g1,6010:13735500,12025044 +g1,6010:16059178,12025044 +g1,6010:16723086,12025044 +k1,6010:16723086,12025044:0 +h1,6010:22698257,12025044:0,0,0 +k1,6010:32583029,12025044:9884772 +g1,6010:32583029,12025044 +) +(1,6011:6764466,12709899:25818563,431045,79822 +h1,6011:6764466,12709899:0,0,0 +k1,6011:6764466,12709899:0 +h1,6011:10747914,12709899:0,0,0 +k1,6011:32583030,12709899:21835116 +g1,6011:32583030,12709899 +) +(1,6015:6764466,13525826:25818563,424439,79822 +(1,6013:6764466,13525826:0,0,0 +g1,6013:6764466,13525826 +g1,6013:6764466,13525826 +g1,6013:6436786,13525826 +(1,6013:6436786,13525826:0,0,0 +) +g1,6013:6764466,13525826 +) +g1,6015:7760328,13525826 +g1,6015:9088144,13525826 +g1,6015:12407683,13525826 +h1,6015:15395268,13525826:0,0,0 +k1,6015:32583028,13525826:17187760 +g1,6015:32583028,13525826 +) +] +) +g1,6016:32583029,13605648 +g1,6016:6764466,13605648 +g1,6016:6764466,13605648 +g1,6016:32583029,13605648 +g1,6016:32583029,13605648 +) +h1,6016:6764466,13802256:0,0,0 +(1,6020:6764466,14667336:25818563,513147,134348 +h1,6019:6764466,14667336:983040,0,0 +g1,6019:9241726,14667336 +g1,6019:10056993,14667336 +g1,6019:13669992,14667336 +g1,6019:15782217,14667336 +g1,6019:17050994,14667336 +g1,6019:20016498,14667336 +g1,6019:20867155,14667336 +k1,6020:32583029,14667336:9276624 +g1,6020:32583029,14667336 +) +v1,6022:6764466,15352191:0,393216,0 +(1,6031:6764466,17852087:25818563,2893112,196608 +g1,6031:6764466,17852087 +g1,6031:6764466,17852087 +g1,6031:6567858,17852087 +(1,6031:6567858,17852087:0,2893112,196608 +r1,6121:32779637,17852087:26211779,3089720,196608 +k1,6031:6567857,17852087:-26211780 +) +(1,6031:6567858,17852087:26211779,2893112,196608 +[1,6031:6764466,17852087:25818563,2696504,0 +(1,6024:6764466,15586628:25818563,431045,86428 +(1,6023:6764466,15586628:0,0,0 +g1,6023:6764466,15586628 +g1,6023:6764466,15586628 +g1,6023:6436786,15586628 +(1,6023:6436786,15586628:0,0,0 +) +g1,6023:6764466,15586628 +) +g1,6024:8424236,15586628 +g1,6024:9420098,15586628 +k1,6024:9420098,15586628:0 +h1,6024:13403546,15586628:0,0,0 +k1,6024:32583030,15586628:19179484 +g1,6024:32583030,15586628 +) +(1,6025:6764466,16271483:25818563,431045,112852 +h1,6025:6764466,16271483:0,0,0 +g1,6025:7096420,16271483 +g1,6025:7428374,16271483 +g1,6025:7760328,16271483 +g1,6025:8092282,16271483 +g1,6025:8424236,16271483 +g1,6025:8756190,16271483 +g1,6025:9088144,16271483 +g1,6025:9420098,16271483 +g1,6025:9752052,16271483 +g1,6025:10084006,16271483 +g1,6025:10415960,16271483 +g1,6025:10747914,16271483 +g1,6025:11079868,16271483 +g1,6025:11411822,16271483 +g1,6025:11743776,16271483 +g1,6025:14067454,16271483 +g1,6025:14731362,16271483 +g1,6025:21038488,16271483 +g1,6025:24689981,16271483 +g1,6025:25353889,16271483 +h1,6025:27345613,16271483:0,0,0 +k1,6025:32583029,16271483:5237416 +g1,6025:32583029,16271483 +) +(1,6026:6764466,16956338:25818563,431045,79822 +h1,6026:6764466,16956338:0,0,0 +k1,6026:6764466,16956338:0 +h1,6026:10747914,16956338:0,0,0 +k1,6026:32583030,16956338:21835116 +g1,6026:32583030,16956338 +) +(1,6030:6764466,17772265:25818563,424439,79822 +(1,6028:6764466,17772265:0,0,0 +g1,6028:6764466,17772265 +g1,6028:6764466,17772265 +g1,6028:6436786,17772265 +(1,6028:6436786,17772265:0,0,0 +) +g1,6028:6764466,17772265 +) +g1,6030:7760328,17772265 +g1,6030:9088144,17772265 +g1,6030:12407683,17772265 +h1,6030:15395268,17772265:0,0,0 +k1,6030:32583028,17772265:17187760 +g1,6030:32583028,17772265 +) +] +) +g1,6031:32583029,17852087 +g1,6031:6764466,17852087 +g1,6031:6764466,17852087 +g1,6031:32583029,17852087 +g1,6031:32583029,17852087 +) +h1,6031:6764466,18048695:0,0,0 +(1,6035:6764466,18913775:25818563,513147,134348 +h1,6034:6764466,18913775:983040,0,0 +g1,6034:9532051,18913775 +g1,6034:12460855,18913775 +g1,6034:14395477,18913775 +g1,6034:18735271,18913775 +g1,6034:22042217,18913775 +g1,6034:24218667,18913775 +g1,6034:25811847,18913775 +g1,6034:27665860,18913775 +g1,6034:28547974,18913775 +g1,6034:30397400,18913775 +k1,6035:32583029,18913775:219549 +g1,6035:32583029,18913775 +) +v1,6037:6764466,19598630:0,393216,0 +(1,6045:6764466,21413671:25818563,2208257,196608 +g1,6045:6764466,21413671 +g1,6045:6764466,21413671 +g1,6045:6567858,21413671 +(1,6045:6567858,21413671:0,2208257,196608 +r1,6121:32779637,21413671:26211779,2404865,196608 +k1,6045:6567857,21413671:-26211780 +) +(1,6045:6567858,21413671:26211779,2208257,196608 +[1,6045:6764466,21413671:25818563,2011649,0 +(1,6039:6764466,19833067:25818563,431045,86428 +(1,6038:6764466,19833067:0,0,0 +g1,6038:6764466,19833067 +g1,6038:6764466,19833067 +g1,6038:6436786,19833067 +(1,6038:6436786,19833067:0,0,0 +) +g1,6038:6764466,19833067 +) +g1,6039:8424236,19833067 +g1,6039:9420098,19833067 +g1,6039:13735500,19833067 +g1,6039:16059178,19833067 +g1,6039:16723086,19833067 +g1,6039:22698258,19833067 +h1,6039:24026074,19833067:0,0,0 +k1,6039:32583029,19833067:8556955 +g1,6039:32583029,19833067 +) +(1,6040:6764466,20517922:25818563,431045,79822 +h1,6040:6764466,20517922:0,0,0 +k1,6040:6764466,20517922:0 +h1,6040:10747914,20517922:0,0,0 +k1,6040:32583030,20517922:21835116 +g1,6040:32583030,20517922 +) +(1,6044:6764466,21333849:25818563,424439,79822 +(1,6042:6764466,21333849:0,0,0 +g1,6042:6764466,21333849 +g1,6042:6764466,21333849 +g1,6042:6436786,21333849 +(1,6042:6436786,21333849:0,0,0 +) +g1,6042:6764466,21333849 +) +g1,6044:7760328,21333849 +g1,6044:9088144,21333849 +g1,6044:12407683,21333849 +h1,6044:15395268,21333849:0,0,0 +k1,6044:32583028,21333849:17187760 +g1,6044:32583028,21333849 +) +] +) +g1,6045:32583029,21413671 +g1,6045:6764466,21413671 +g1,6045:6764466,21413671 +g1,6045:32583029,21413671 +g1,6045:32583029,21413671 +) +h1,6045:6764466,21610279:0,0,0 +(1,6049:6764466,22475359:25818563,513147,134348 +h1,6048:6764466,22475359:983040,0,0 +k1,6048:11416048,22475359:146637 +k1,6048:12581769,22475359:146636 +k1,6048:14520816,22475359:146637 +k1,6048:15326745,22475359:146637 +k1,6048:15829242,22475359:146637 +k1,6048:17869868,22475359:146636 +k1,6048:19871174,22475359:146637 +k1,6048:20827181,22475359:146637 +k1,6048:23964226,22475359:146637 +k1,6048:27294601,22475359:146636 +k1,6048:29008859,22475359:146637 +k1,6048:30544859,22475359:146637 +k1,6048:32583029,22475359:0 +) +(1,6049:6764466,23340439:25818563,513147,134348 +k1,6048:7517363,23340439:136859 +k1,6048:8010083,23340439:136860 +k1,6048:10767071,23340439:136859 +k1,6048:12881808,23340439:136860 +k1,6048:13550164,23340439:136859 +k1,6048:15040998,23340439:136860 +k1,6048:17328749,23340439:136859 +k1,6048:20573326,23340439:136860 +k1,6048:22408223,23340439:136859 +k1,6048:25243200,23340439:136860 +k1,6048:28169927,23340439:136859 +(1,6048:28169927,23340439:0,452978,115847 +r1,6121:31341887,23340439:3171960,568825,115847 +k1,6048:28169927,23340439:-3171960 +) +(1,6048:28169927,23340439:3171960,452978,115847 +k1,6048:28169927,23340439:3277 +h1,6048:31338610,23340439:0,411205,112570 +) +k1,6048:31478747,23340439:136860 +k1,6048:32583029,23340439:0 +) +(1,6049:6764466,24205519:25818563,513147,134348 +k1,6048:7705984,24205519:193752 +k1,6048:9412961,24205519:193751 +k1,6048:10222751,24205519:193752 +k1,6048:11619744,24205519:193752 +k1,6048:13354246,24205519:193751 +k1,6048:14017891,24205519:193752 +k1,6048:16807523,24205519:193751 +k1,6048:17652703,24205519:193752 +k1,6048:19581848,24205519:193752 +(1,6048:19581848,24205519:0,452978,115847 +r1,6121:21698673,24205519:2116825,568825,115847 +k1,6048:19581848,24205519:-2116825 +) +(1,6048:19581848,24205519:2116825,452978,115847 +k1,6048:19581848,24205519:3277 +h1,6048:21695396,24205519:0,411205,112570 +) +k1,6048:21892424,24205519:193751 +k1,6048:23033827,24205519:193752 +k1,6048:26909392,24205519:193752 +k1,6048:28175312,24205519:193751 +k1,6048:30071034,24205519:193752 +k1,6048:32583029,24205519:0 +) +(1,6049:6764466,25070599:25818563,513147,126483 +g1,6048:9954103,25070599 +g1,6048:13352800,25070599 +g1,6048:15045595,25070599 +g1,6048:15930986,25070599 +(1,6048:15930986,25070599:0,452978,115847 +r1,6121:18751235,25070599:2820249,568825,115847 +k1,6048:15930986,25070599:-2820249 +) +(1,6048:15930986,25070599:2820249,452978,115847 +k1,6048:15930986,25070599:3277 +h1,6048:18747958,25070599:0,411205,112570 +) +g1,6048:18950464,25070599 +g1,6048:20253975,25070599 +g1,6048:21200970,25070599 +g1,6048:24161231,25070599 +g1,6048:24976498,25070599 +g1,6048:25964125,25070599 +k1,6049:32583029,25070599:4782585 +g1,6049:32583029,25070599 +) +v1,6051:6764466,25755454:0,393216,0 +(1,6075:6764466,33573623:25818563,8211385,196608 +g1,6075:6764466,33573623 +g1,6075:6764466,33573623 +g1,6075:6567858,33573623 +(1,6075:6567858,33573623:0,8211385,196608 +r1,6121:32779637,33573623:26211779,8407993,196608 +k1,6075:6567857,33573623:-26211780 +) +(1,6075:6567858,33573623:26211779,8211385,196608 +[1,6075:6764466,33573623:25818563,8014777,0 +(1,6053:6764466,25989891:25818563,431045,112852 +(1,6052:6764466,25989891:0,0,0 +g1,6052:6764466,25989891 +g1,6052:6764466,25989891 +g1,6052:6436786,25989891 +(1,6052:6436786,25989891:0,0,0 +) +g1,6052:6764466,25989891 +) +g1,6053:8424236,25989891 +g1,6053:9420098,25989891 +g1,6053:11411822,25989891 +g1,6053:12407684,25989891 +g1,6053:14731362,25989891 +g1,6053:15395270,25989891 +g1,6053:17718948,25989891 +h1,6053:19378718,25989891:0,0,0 +k1,6053:32583029,25989891:13204311 +g1,6053:32583029,25989891 +) +(1,6054:6764466,26674746:25818563,424439,86428 +h1,6054:6764466,26674746:0,0,0 +g1,6054:8424236,26674746 +g1,6054:9420098,26674746 +g1,6054:11743776,26674746 +g1,6054:13403546,26674746 +g1,6054:15063316,26674746 +g1,6054:16723086,26674746 +g1,6054:18382856,26674746 +g1,6054:20042626,26674746 +g1,6054:21702396,26674746 +g1,6054:23362166,26674746 +g1,6054:25021936,26674746 +h1,6054:26349752,26674746:0,0,0 +k1,6054:32583029,26674746:6233277 +g1,6054:32583029,26674746 +) +(1,6055:6764466,27359601:25818563,431045,6605 +h1,6055:6764466,27359601:0,0,0 +h1,6055:8092282,27359601:0,0,0 +k1,6055:32583030,27359601:24490748 +g1,6055:32583030,27359601 +) +(1,6060:6764466,28175528:25818563,424439,79822 +(1,6057:6764466,28175528:0,0,0 +g1,6057:6764466,28175528 +g1,6057:6764466,28175528 +g1,6057:6436786,28175528 +(1,6057:6436786,28175528:0,0,0 +) +g1,6057:6764466,28175528 +) +g1,6060:7760328,28175528 +g1,6060:8092282,28175528 +g1,6060:9420098,28175528 +g1,6060:10084006,28175528 +g1,6060:10747914,28175528 +g1,6060:11411822,28175528 +g1,6060:12075730,28175528 +g1,6060:12739638,28175528 +g1,6060:13403546,28175528 +g1,6060:14067454,28175528 +g1,6060:14731362,28175528 +g1,6060:15395270,28175528 +h1,6060:15727224,28175528:0,0,0 +k1,6060:32583028,28175528:16855804 +g1,6060:32583028,28175528 +) +(1,6060:6764466,28860383:25818563,424439,6605 +h1,6060:6764466,28860383:0,0,0 +g1,6060:7760328,28860383 +g1,6060:10415960,28860383 +g1,6060:11079868,28860383 +h1,6060:11411822,28860383:0,0,0 +k1,6060:32583030,28860383:21171208 +g1,6060:32583030,28860383 +) +(1,6062:6764466,29676310:25818563,431045,86428 +(1,6061:6764466,29676310:0,0,0 +g1,6061:6764466,29676310 +g1,6061:6764466,29676310 +g1,6061:6436786,29676310 +(1,6061:6436786,29676310:0,0,0 +) +g1,6061:6764466,29676310 +) +g1,6062:9420098,29676310 +g1,6062:10415960,29676310 +g1,6062:15063316,29676310 +h1,6062:16723086,29676310:0,0,0 +k1,6062:32583029,29676310:15859943 +g1,6062:32583029,29676310 +) +(1,6063:6764466,30361165:25818563,431045,79822 +h1,6063:6764466,30361165:0,0,0 +k1,6063:6764466,30361165:0 +h1,6063:11743775,30361165:0,0,0 +k1,6063:32583029,30361165:20839254 +g1,6063:32583029,30361165 +) +(1,6067:6764466,31177092:25818563,424439,79822 +(1,6065:6764466,31177092:0,0,0 +g1,6065:6764466,31177092 +g1,6065:6764466,31177092 +g1,6065:6436786,31177092 +(1,6065:6436786,31177092:0,0,0 +) +g1,6065:6764466,31177092 +) +g1,6067:7760328,31177092 +g1,6067:9088144,31177092 +g1,6067:10415960,31177092 +h1,6067:11411822,31177092:0,0,0 +k1,6067:32583030,31177092:21171208 +g1,6067:32583030,31177092 +) +(1,6069:6764466,31993019:25818563,431045,112852 +(1,6068:6764466,31993019:0,0,0 +g1,6068:6764466,31993019 +g1,6068:6764466,31993019 +g1,6068:6436786,31993019 +(1,6068:6436786,31993019:0,0,0 +) +g1,6068:6764466,31993019 +) +g1,6069:9420098,31993019 +g1,6069:10415960,31993019 +g1,6069:15063316,31993019 +g1,6069:17386994,31993019 +g1,6069:18050902,31993019 +g1,6069:18714810,31993019 +g1,6069:21038488,31993019 +g1,6069:23362166,31993019 +g1,6069:25685844,31993019 +k1,6069:25685844,31993019:0 +h1,6069:27013660,31993019:0,0,0 +k1,6069:32583029,31993019:5569369 +g1,6069:32583029,31993019 +) +(1,6070:6764466,32677874:25818563,431045,79822 +h1,6070:6764466,32677874:0,0,0 +k1,6070:6764466,32677874:0 +h1,6070:11743775,32677874:0,0,0 +k1,6070:32583029,32677874:20839254 +g1,6070:32583029,32677874 +) +(1,6074:6764466,33493801:25818563,424439,79822 +(1,6072:6764466,33493801:0,0,0 +g1,6072:6764466,33493801 +g1,6072:6764466,33493801 +g1,6072:6436786,33493801 +(1,6072:6436786,33493801:0,0,0 +) +g1,6072:6764466,33493801 +) +g1,6074:7760328,33493801 +g1,6074:9088144,33493801 +g1,6074:10415960,33493801 +h1,6074:11411822,33493801:0,0,0 +k1,6074:32583030,33493801:21171208 +g1,6074:32583030,33493801 +) +] +) +g1,6075:32583029,33573623 +g1,6075:6764466,33573623 +g1,6075:6764466,33573623 +g1,6075:32583029,33573623 +g1,6075:32583029,33573623 +) +h1,6075:6764466,33770231:0,0,0 +(1,6079:6764466,34635311:25818563,505283,134348 +h1,6078:6764466,34635311:983040,0,0 +k1,6078:8601083,34635311:225742 +k1,6078:9845909,34635311:225741 +k1,6078:11219842,34635311:225742 +k1,6078:14805615,34635311:225742 +k1,6078:16766749,34635311:225741 +k1,6078:18011576,34635311:225742 +k1,6078:20072325,34635311:225741 +k1,6078:23057788,34635311:225742 +k1,6078:26203814,34635311:225742 +k1,6078:28315026,34635311:225741 +k1,6078:29072265,34635311:225742 +k1,6078:32583029,34635311:0 +) +(1,6079:6764466,35500391:25818563,513147,134348 +k1,6078:8990817,35500391:214396 +k1,6078:9950358,35500391:214397 +k1,6078:10816182,35500391:214396 +k1,6078:12831507,35500391:214396 +k1,6078:15352115,35500391:214396 +k1,6078:16585597,35500391:214397 +k1,6078:19529568,35500391:214396 +k1,6078:20403256,35500391:214396 +k1,6078:21636738,35500391:214397 +k1,6078:23817214,35500391:214396 +k1,6078:25721128,35500391:214396 +k1,6078:27134178,35500391:214396 +k1,6078:29083968,35500391:214397 +k1,6078:30317449,35500391:214396 +k1,6078:32583029,35500391:0 +) +(1,6079:6764466,36365471:25818563,513147,115847 +g1,6078:9832861,36365471 +(1,6078:9832861,36365471:0,452978,115847 +r1,6121:11949686,36365471:2116825,568825,115847 +k1,6078:9832861,36365471:-2116825 +) +(1,6078:9832861,36365471:2116825,452978,115847 +k1,6078:9832861,36365471:3277 +h1,6078:11946409,36365471:0,411205,112570 +) +g1,6078:12322585,36365471 +g1,6078:13173242,36365471 +g1,6078:16940251,36365471 +g1,6078:18158565,36365471 +k1,6079:32583029,36365471:12861430 +g1,6079:32583029,36365471 +) +] +g1,6080:32583029,36481318 +) +h1,6080:6630773,36481318:0,0,0 +v1,6082:6630773,37346398:0,393216,0 +(1,6121:6630773,44431099:25952256,7477917,0 +g1,6121:6630773,44431099 +g1,6121:6237557,44431099 +r1,6121:6368629,44431099:131072,7477917,0 +g1,6121:6567858,44431099 +g1,6121:6764466,44431099 +[1,6121:6764466,44431099:25818563,7477917,0 +(1,6084:6764466,37654696:25818563,701514,196608 +(1,6082:6764466,37654696:0,701514,196608 +r1,6121:8863446,37654696:2098980,898122,196608 +k1,6082:6764466,37654696:-2098980 +) +(1,6082:6764466,37654696:2098980,701514,196608 +) +k1,6082:9068143,37654696:204697 +k1,6082:10794361,37654696:327680 +k1,6082:10794361,37654696:0 +k1,6083:14684292,37654696:210084 +k1,6083:16848003,37654696:210083 +k1,6083:19374641,37654696:204697 +k1,6083:20049231,37654696:204697 +k1,6083:20785425,37654696:204697 +k1,6083:23620082,37654696:204697 +k1,6083:24476207,37654696:204697 +k1,6083:27105735,37654696:204696 +k1,6083:28329517,37654696:204697 +k1,6083:30544859,37654696:204697 +k1,6083:32583029,37654696:0 +) +(1,6084:6764466,38519776:25818563,513147,134348 +k1,6083:7594000,38519776:213496 +k1,6083:8163356,38519776:213496 +k1,6083:10270842,38519776:213496 +k1,6083:12340319,38519776:213497 +k1,6083:16972908,38519776:213496 +k1,6083:20303296,38519776:213496 +k1,6083:21168220,38519776:213496 +k1,6083:22400801,38519776:213496 +k1,6083:24458480,38519776:213496 +k1,6083:25331269,38519776:213497 +k1,6083:26563850,38519776:213496 +k1,6083:28569756,38519776:213496 +k1,6083:29466137,38519776:213496 +k1,6083:32583029,38519776:0 +) +(1,6084:6764466,39384856:25818563,513147,134348 +g1,6083:7615123,39384856 +g1,6083:8833437,39384856 +g1,6083:10771992,39384856 +g1,6083:11630513,39384856 +g1,6083:12848827,39384856 +g1,6083:15014136,39384856 +g1,6083:16617146,39384856 +g1,6083:17908860,39384856 +g1,6083:18775245,39384856 +(1,6083:18775245,39384856:0,452978,115847 +r1,6121:20540358,39384856:1765113,568825,115847 +k1,6083:18775245,39384856:-1765113 +) +(1,6083:18775245,39384856:1765113,452978,115847 +k1,6083:18775245,39384856:3277 +h1,6083:20537081,39384856:0,411205,112570 +) +g1,6083:20739587,39384856 +g1,6083:21470313,39384856 +g1,6083:24747768,39384856 +g1,6083:25756367,39384856 +g1,6083:27453749,39384856 +h1,6083:28250667,39384856:0,0,0 +k1,6084:32583029,39384856:3951598 +g1,6084:32583029,39384856 +) +v1,6086:6764466,40069711:0,393216,0 +(1,6093:6764466,42471565:25818563,2795070,196608 +g1,6093:6764466,42471565 +g1,6093:6764466,42471565 +g1,6093:6567858,42471565 +(1,6093:6567858,42471565:0,2795070,196608 +r1,6121:32779637,42471565:26211779,2991678,196608 +k1,6093:6567857,42471565:-26211780 +) +(1,6093:6567858,42471565:26211779,2795070,196608 +[1,6093:6764466,42471565:25818563,2598462,0 +(1,6088:6764466,40304148:25818563,431045,112852 +(1,6087:6764466,40304148:0,0,0 +g1,6087:6764466,40304148 +g1,6087:6764466,40304148 +g1,6087:6436786,40304148 +(1,6087:6436786,40304148:0,0,0 +) +g1,6087:6764466,40304148 +) +g1,6088:7428374,40304148 +g1,6088:9088144,40304148 +g1,6088:11079868,40304148 +g1,6088:13071592,40304148 +g1,6088:14067454,40304148 +k1,6088:14067454,40304148:0 +h1,6088:16059178,40304148:0,0,0 +k1,6088:32583029,40304148:16523851 +g1,6088:32583029,40304148 +) +(1,6089:6764466,40989003:25818563,424439,112852 +h1,6089:6764466,40989003:0,0,0 +g1,6089:8424236,40989003 +g1,6089:9420098,40989003 +g1,6089:11411822,40989003 +g1,6089:12407684,40989003 +g1,6089:14731362,40989003 +g1,6089:15395270,40989003 +g1,6089:17718948,40989003 +g1,6089:19378718,40989003 +g1,6089:21038488,40989003 +h1,6089:22698258,40989003:0,0,0 +k1,6089:32583029,40989003:9884771 +g1,6089:32583029,40989003 +) +(1,6090:6764466,41673858:25818563,407923,8257 +h1,6090:6764466,41673858:0,0,0 +h1,6090:8092282,41673858:0,0,0 +k1,6090:32583030,41673858:24490748 +g1,6090:32583030,41673858 +) +(1,6091:6764466,42358713:25818563,424439,112852 +h1,6091:6764466,42358713:0,0,0 +k1,6091:6764466,42358713:0 +h1,6091:12075729,42358713:0,0,0 +k1,6091:32583029,42358713:20507300 +g1,6091:32583029,42358713 +) +] +) +g1,6093:32583029,42471565 +g1,6093:6764466,42471565 +g1,6093:6764466,42471565 +g1,6093:32583029,42471565 +g1,6093:32583029,42471565 +) +h1,6093:6764466,42668173:0,0,0 +] +g1,6121:32583029,44431099 +) +] +(1,6121:32583029,45706769:0,0,0 +g1,6121:32583029,45706769 +) +) +] +(1,6121:6630773,47279633:25952256,0,0 +h1,6121:6630773,47279633:25952256,0,0 +) +] +(1,6121:4262630,4025873:0,0,0 +[1,6121:-473656,4025873:0,0,0 +(1,6121:-473656,-710413:0,0,0 +(1,6121:-473656,-710413:0,0,0 +g1,6121:-473656,-710413 ) -] +g1,6121:-473656,-710413 +) +] ) -[1,6863:6630773,47279633:25952256,43253760,0 -[1,6863:6630773,4812305:25952256,786432,0 -(1,6863:6630773,4812305:25952256,505283,11795 -(1,6863:6630773,4812305:25952256,505283,11795 -g1,6863:3078558,4812305 -[1,6863:3078558,4812305:0,0,0 -(1,6863:3078558,2439708:0,1703936,0 -k1,6863:1358238,2439708:-1720320 -(1,5950:1358238,2439708:1720320,1703936,0 -(1,5950:1358238,2439708:1179648,16384,0 -r1,6863:2537886,2439708:1179648,16384,0 +] +!24973 +}96 +Input:870:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!104 +{97 +[1,6148:4262630,47279633:28320399,43253760,0 +(1,6148:4262630,4025873:0,0,0 +[1,6148:-473656,4025873:0,0,0 +(1,6148:-473656,-710413:0,0,0 +(1,6148:-473656,-644877:0,0,0 +k1,6148:-473656,-644877:-65536 ) -g1,5950:3062174,2439708 -(1,5950:3062174,2439708:16384,1703936,0 -[1,5950:3062174,2439708:25952256,1703936,0 -(1,5950:3062174,1915420:25952256,1179648,0 -(1,5950:3062174,1915420:16384,1179648,0 -r1,6863:3078558,1915420:16384,1179648,0 +(1,6148:-473656,4736287:0,0,0 +k1,6148:-473656,4736287:5209943 ) -k1,5950:29014430,1915420:25935872 -g1,5950:29014430,1915420 +g1,6148:-473656,-710413 ) ] ) +[1,6148:6630773,47279633:25952256,43253760,0 +[1,6148:6630773,4812305:25952256,786432,0 +(1,6148:6630773,4812305:25952256,505283,11795 +(1,6148:6630773,4812305:25952256,505283,11795 +g1,6148:3078558,4812305 +[1,6148:3078558,4812305:0,0,0 +(1,6148:3078558,2439708:0,1703936,0 +k1,6148:1358238,2439708:-1720320 +(1,646:1358238,2439708:1720320,1703936,0 +(1,646:1358238,2439708:1179648,16384,0 +r1,6148:2537886,2439708:1179648,16384,0 ) +g1,646:3062174,2439708 +(1,646:3062174,2439708:16384,1703936,0 +[1,646:3062174,2439708:25952256,1703936,0 +(1,646:3062174,1915420:25952256,1179648,0 +(1,646:3062174,1915420:16384,1179648,0 +r1,6148:3078558,1915420:16384,1179648,0 ) -] -[1,6863:3078558,4812305:0,0,0 -(1,6863:3078558,2439708:0,1703936,0 -g1,6863:29030814,2439708 -g1,6863:36135244,2439708 -(1,5950:36135244,2439708:1720320,1703936,0 -(1,5950:36135244,2439708:16384,1703936,0 -[1,5950:36135244,2439708:25952256,1703936,0 -(1,5950:36135244,1915420:25952256,1179648,0 -(1,5950:36135244,1915420:16384,1179648,0 -r1,6863:36151628,1915420:16384,1179648,0 -) -k1,5950:62087500,1915420:25935872 -g1,5950:62087500,1915420 +k1,646:29014430,1915420:25935872 +g1,646:29014430,1915420 ) ] ) -g1,5950:36675916,2439708 -(1,5950:36675916,2439708:1179648,16384,0 -r1,6863:37855564,2439708:1179648,16384,0 -) ) -k1,6863:3078556,2439708:-34777008 ) ] -[1,6863:3078558,4812305:0,0,0 -(1,6863:3078558,49800853:0,16384,2228224 -k1,6863:1358238,49800853:-1720320 -(1,5950:1358238,49800853:1720320,16384,2228224 -(1,5950:1358238,49800853:1179648,16384,0 -r1,6863:2537886,49800853:1179648,16384,0 +[1,6148:3078558,4812305:0,0,0 +(1,6148:3078558,2439708:0,1703936,0 +g1,6148:29030814,2439708 +g1,6148:36135244,2439708 +(1,646:36135244,2439708:1720320,1703936,0 +(1,646:36135244,2439708:16384,1703936,0 +[1,646:36135244,2439708:25952256,1703936,0 +(1,646:36135244,1915420:25952256,1179648,0 +(1,646:36135244,1915420:16384,1179648,0 +r1,6148:36151628,1915420:16384,1179648,0 ) -g1,5950:3062174,49800853 -(1,5950:3062174,52029077:16384,1703936,0 -[1,5950:3062174,52029077:25952256,1703936,0 -(1,5950:3062174,51504789:25952256,1179648,0 -(1,5950:3062174,51504789:16384,1179648,0 -r1,6863:3078558,51504789:16384,1179648,0 +k1,646:62087500,1915420:25935872 +g1,646:62087500,1915420 ) -k1,5950:29014430,51504789:25935872 -g1,5950:29014430,51504789 -) -] -) -) -) -] -[1,6863:3078558,4812305:0,0,0 -(1,6863:3078558,49800853:0,16384,2228224 -g1,6863:29030814,49800853 -g1,6863:36135244,49800853 -(1,5950:36135244,49800853:1720320,16384,2228224 -(1,5950:36135244,52029077:16384,1703936,0 -[1,5950:36135244,52029077:25952256,1703936,0 -(1,5950:36135244,51504789:25952256,1179648,0 -(1,5950:36135244,51504789:16384,1179648,0 -r1,6863:36151628,51504789:16384,1179648,0 -) -k1,5950:62087500,51504789:25935872 -g1,5950:62087500,51504789 -) -] -) -g1,5950:36675916,49800853 -(1,5950:36675916,49800853:1179648,16384,0 -r1,6863:37855564,49800853:1179648,16384,0 -) -) -k1,6863:3078556,49800853:-34777008 -) -] -g1,6863:6630773,4812305 -k1,6863:24358919,4812305:16931228 -g1,6863:25981590,4812305 -g1,6863:26804066,4812305 -g1,6863:30302377,4812305 -) -) -] -[1,6863:6630773,45706769:25952256,40108032,0 -(1,6863:6630773,45706769:25952256,40108032,0 -(1,6863:6630773,45706769:0,0,0 -g1,6863:6630773,45706769 -) -[1,6863:6630773,45706769:25952256,40108032,0 -v1,6758:6630773,6254097:0,393216,0 -(1,6758:6630773,8497997:25952256,2637116,196608 -g1,6758:6630773,8497997 -g1,6758:6630773,8497997 -g1,6758:6434165,8497997 -(1,6758:6434165,8497997:0,2637116,196608 -r1,6863:32779637,8497997:26345472,2833724,196608 -k1,6758:6434165,8497997:-26345472 -) -(1,6758:6434165,8497997:26345472,2637116,196608 -[1,6758:6630773,8497997:25952256,2440508,0 -(1,6757:6630773,6468007:25952256,410518,107478 -h1,6757:6630773,6468007:0,0,0 -g1,6757:7579210,6468007 -g1,6757:7895356,6468007 -g1,6757:8527648,6468007 -g1,6757:10740668,6468007 -g1,6757:11056814,6468007 -g1,6757:11372960,6468007 -g1,6757:12005252,6468007 -g1,6757:13269835,6468007 -g1,6757:13585981,6468007 -g1,6757:15166710,6468007 -g1,6757:16431293,6468007 -g1,6757:17379730,6468007 -g1,6757:18012022,6468007 -g1,6757:19592751,6468007 -h1,6757:20541188,6468007:0,0,0 -k1,6757:32583029,6468007:12041841 -g1,6757:32583029,6468007 -) -(1,6757:6630773,7134185:25952256,410518,107478 -h1,6757:6630773,7134185:0,0,0 -g1,6757:7579210,7134185 -g1,6757:7895356,7134185 -g1,6757:8527648,7134185 -g1,6757:10740668,7134185 -g1,6757:11056814,7134185 -g1,6757:11372960,7134185 -g1,6757:12005252,7134185 -g1,6757:13269835,7134185 -g1,6757:13585981,7134185 -g1,6757:14850564,7134185 -g1,6757:16115147,7134185 -g1,6757:17379730,7134185 -g1,6757:18644313,7134185 -g1,6757:19908896,7134185 -h1,6757:20225042,7134185:0,0,0 -k1,6757:32583029,7134185:12357987 -g1,6757:32583029,7134185 -) -(1,6757:6630773,7800363:25952256,410518,31456 -h1,6757:6630773,7800363:0,0,0 -g1,6757:7579210,7800363 -g1,6757:7895356,7800363 -g1,6757:8527648,7800363 -g1,6757:9476085,7800363 -g1,6757:9792231,7800363 -g1,6757:10108377,7800363 -g1,6757:10424523,7800363 -g1,6757:10740669,7800363 -g1,6757:11056815,7800363 -g1,6757:11372961,7800363 -g1,6757:12005253,7800363 -g1,6757:13269836,7800363 -g1,6757:13585982,7800363 -g1,6757:14218274,7800363 -g1,6757:14850566,7800363 -g1,6757:15482858,7800363 -g1,6757:16115150,7800363 -g1,6757:16747442,7800363 -h1,6757:17063588,7800363:0,0,0 -k1,6757:32583029,7800363:15519441 -g1,6757:32583029,7800363 -) -(1,6757:6630773,8466541:25952256,410518,31456 -h1,6757:6630773,8466541:0,0,0 -g1,6757:7579210,8466541 -g1,6757:7895356,8466541 -g1,6757:8527648,8466541 -g1,6757:9476085,8466541 -g1,6757:9792231,8466541 -g1,6757:10108377,8466541 -g1,6757:10424523,8466541 -g1,6757:10740669,8466541 -g1,6757:11056815,8466541 -g1,6757:11372961,8466541 -g1,6757:12005253,8466541 -g1,6757:13269836,8466541 -g1,6757:13585982,8466541 -g1,6757:14850565,8466541 -g1,6757:16115148,8466541 -g1,6757:17379731,8466541 -g1,6757:18644314,8466541 -h1,6757:19592751,8466541:0,0,0 -k1,6757:32583029,8466541:12990278 -g1,6757:32583029,8466541 -) -] -) -g1,6758:32583029,8497997 -g1,6758:6630773,8497997 -g1,6758:6630773,8497997 -g1,6758:32583029,8497997 -g1,6758:32583029,8497997 -) -h1,6758:6630773,8694605:0,0,0 -v1,6762:6630773,10481399:0,393216,0 -(1,6792:6630773,28936641:25952256,18848458,0 -g1,6792:6630773,28936641 -g1,6792:6303093,28936641 -r1,6863:6401397,28936641:98304,18848458,0 -g1,6792:6600626,28936641 -g1,6792:6797234,28936641 -[1,6792:6797234,28936641:25785795,18848458,0 -(1,6763:6797234,10913937:25785795,825754,196608 -(1,6762:6797234,10913937:0,825754,196608 -r1,6863:7890375,10913937:1093141,1022362,196608 -k1,6762:6797234,10913937:-1093141 -) -(1,6762:6797234,10913937:1093141,825754,196608 -) -k1,6762:8073657,10913937:183282 -k1,6762:9391586,10913937:327680 -k1,6762:10528418,10913937:183283 -k1,6762:12186915,10913937:183282 -k1,6762:14335622,10913937:183282 -k1,6762:15691343,10913937:183282 -k1,6762:18587817,10913937:183283 -k1,6762:19422527,10913937:183282 -k1,6762:20624894,10913937:183282 -k1,6762:22197539,10913937:183282 -k1,6762:24430788,10913937:183283 -k1,6762:25805515,10913937:183282 -k1,6762:26604835,10913937:183282 -k1,6762:27807202,10913937:183282 -k1,6762:29357566,10913937:183283 -k1,6762:30200140,10913937:183282 -k1,6763:32583029,10913937:0 -) -(1,6763:6797234,11755425:25785795,513147,134348 -(1,6762:6797234,11755425:0,435480,115847 -r1,6863:7507212,11755425:709978,551327,115847 -k1,6762:6797234,11755425:-709978 -) -(1,6762:6797234,11755425:709978,435480,115847 -k1,6762:6797234,11755425:3277 -h1,6762:7503935,11755425:0,411205,112570 -) -k1,6762:7771140,11755425:263928 -k1,6762:10894403,11755425:263927 -k1,6762:12596846,11755425:263928 -k1,6762:14697092,11755425:263927 -k1,6762:16341864,11755425:263928 -k1,6762:17137289,11755425:263928 -k1,6762:19320110,11755425:263927 -k1,6762:20907865,11755425:263928 -k1,6762:22363237,11755425:263927 -k1,6762:24016528,11755425:263928 -k1,6762:26487052,11755425:263927 -k1,6762:28494238,11755425:263928 -k1,6762:32583029,11755425:0 -) -(1,6763:6797234,12596913:25785795,513147,134348 -k1,6762:7654866,12596913:241594 -k1,6762:9405099,12596913:241594 -k1,6762:12580083,12596913:241593 -k1,6762:13449512,12596913:241594 -k1,6762:14046966,12596913:241594 -k1,6762:15677923,12596913:241594 -k1,6762:17969483,12596913:241594 -k1,6762:21042231,12596913:241593 -k1,6762:22838994,12596913:241594 -k1,6762:24272033,12596913:241594 -k1,6762:26296206,12596913:241594 -k1,6762:27642081,12596913:241593 -k1,6762:28631441,12596913:241594 -k1,6762:31635378,12596913:241594 -k1,6762:32583029,12596913:0 -) -(1,6763:6797234,13438401:25785795,513147,126483 -k1,6762:9792170,13438401:232593 -k1,6762:12648169,13438401:232593 -k1,6762:15722404,13438401:232594 -k1,6762:19256045,13438401:232593 -k1,6762:20868826,13438401:232593 -k1,6762:22092979,13438401:232593 -k1,6762:25038107,13438401:232593 -k1,6762:25922128,13438401:232593 -k1,6762:26902488,13438401:232594 -k1,6762:29443259,13438401:232593 -k1,6762:30358737,13438401:232593 -k1,6762:32583029,13438401:0 -) -(1,6763:6797234,14279889:25785795,513147,134348 -k1,6762:7676688,14279889:220162 -k1,6762:8915936,14279889:220163 -k1,6762:10789571,14279889:220162 -k1,6762:13023000,14279889:220163 -k1,6762:14133141,14279889:220162 -k1,6762:14709163,14279889:220162 -k1,6762:17016648,14279889:220163 -k1,6762:18630761,14279889:220162 -k1,6762:19870009,14279889:220163 -k1,6762:21743644,14279889:220162 -k1,6762:24449588,14279889:220163 -k1,6762:25329042,14279889:220162 -k1,6762:27257072,14279889:220162 -k1,6762:28160120,14279889:220163 -k1,6762:28736142,14279889:220162 -k1,6762:29949831,14279889:220163 -k1,6762:31563944,14279889:220162 -k1,6762:32583029,14279889:0 -) -(1,6763:6797234,15121377:25785795,513147,126483 -k1,6762:8643336,15121377:192629 -k1,6762:11321746,15121377:192629 -k1,6762:12173667,15121377:192629 -k1,6762:15700767,15121377:192628 -k1,6762:16521231,15121377:192629 -k1,6762:17732945,15121377:192629 -k1,6762:19292655,15121377:192629 -k1,6762:20144576,15121377:192629 -k1,6762:21834703,15121377:192629 -k1,6762:23682116,15121377:192629 -k1,6762:24406241,15121377:192628 -k1,6762:25408240,15121377:192629 -k1,6762:27094435,15121377:192629 -k1,6762:31391584,15121377:192629 -k1,6762:32583029,15121377:0 -) -(1,6763:6797234,15962865:25785795,505283,134348 -k1,6762:9847160,15962865:190590 -k1,6762:11792805,15962865:190591 -k1,6762:13666360,15962865:190590 -k1,6762:15519599,15962865:190591 -k1,6762:17408227,15962865:190590 -k1,6762:19786410,15962865:190591 -k1,6762:20332860,15962865:190590 -k1,6762:23320528,15962865:190591 -k1,6762:26393391,15962865:190590 -k1,6762:27603067,15962865:190591 -k1,6762:29804302,15962865:190590 -k1,6762:32583029,15962865:0 -) -(1,6763:6797234,16804353:25785795,513147,126483 -g1,6762:8864894,16804353 -g1,6762:10011774,16804353 -(1,6762:10011774,16804353:0,452978,115847 -r1,6863:11425175,16804353:1413401,568825,115847 -k1,6762:10011774,16804353:-1413401 -) -(1,6762:10011774,16804353:1413401,452978,115847 -k1,6762:10011774,16804353:3277 -h1,6762:11421898,16804353:0,411205,112570 -) -g1,6762:11798074,16804353 -g1,6762:12648731,16804353 -g1,6762:14591873,16804353 -g1,6762:15407140,16804353 -g1,6762:16625454,16804353 -g1,6762:19486100,16804353 -g1,6762:21540653,16804353 -g1,6762:22687533,16804353 -(1,6762:22687533,16804353:0,459977,115847 -r1,6863:24100934,16804353:1413401,575824,115847 -k1,6762:22687533,16804353:-1413401 -) -(1,6762:22687533,16804353:1413401,459977,115847 -k1,6762:22687533,16804353:3277 -h1,6762:24097657,16804353:0,411205,112570 -) -k1,6763:32583029,16804353:8308425 -g1,6763:32583029,16804353 -) -v1,6765:6797234,17994819:0,393216,0 -(1,6789:6797234,28215745:25785795,10614142,196608 -g1,6789:6797234,28215745 -g1,6789:6797234,28215745 -g1,6789:6600626,28215745 -(1,6789:6600626,28215745:0,10614142,196608 -r1,6863:32779637,28215745:26179011,10810750,196608 -k1,6789:6600625,28215745:-26179012 -) -(1,6789:6600626,28215745:26179011,10614142,196608 -[1,6789:6797234,28215745:25785795,10417534,0 -(1,6767:6797234,18202437:25785795,404226,101187 -(1,6766:6797234,18202437:0,0,0 -g1,6766:6797234,18202437 -g1,6766:6797234,18202437 -g1,6766:6469554,18202437 -(1,6766:6469554,18202437:0,0,0 -) -g1,6766:6797234,18202437 -) -g1,6767:8377963,18202437 -g1,6767:9326401,18202437 -g1,6767:11539422,18202437 -g1,6767:12171714,18202437 -g1,6767:13752444,18202437 -g1,6767:14384736,18202437 -g1,6767:15017028,18202437 -g1,6767:16597757,18202437 -g1,6767:17230049,18202437 -g1,6767:17862341,18202437 -g1,6767:20391508,18202437 -h1,6767:22604527,18202437:0,0,0 -k1,6767:32583029,18202437:9978502 -g1,6767:32583029,18202437 -) -(1,6768:6797234,18868615:25785795,404226,76021 -h1,6768:6797234,18868615:0,0,0 -k1,6768:6797234,18868615:0 -h1,6768:9642545,18868615:0,0,0 -k1,6768:32583029,18868615:22940484 -g1,6768:32583029,18868615 -) -(1,6775:6797234,19534793:25785795,410518,9436 -(1,6770:6797234,19534793:0,0,0 -g1,6770:6797234,19534793 -g1,6770:6797234,19534793 -g1,6770:6469554,19534793 -(1,6770:6469554,19534793:0,0,0 -) -g1,6770:6797234,19534793 -) -g1,6775:7745671,19534793 -g1,6775:9326400,19534793 -g1,6775:10274837,19534793 -h1,6775:10590983,19534793:0,0,0 -k1,6775:32583029,19534793:21992046 -g1,6775:32583029,19534793 -) -(1,6775:6797234,20200971:25785795,410518,76021 -h1,6775:6797234,20200971:0,0,0 -g1,6775:7745671,20200971 -g1,6775:8061817,20200971 -g1,6775:8694109,20200971 -g1,6775:9642546,20200971 -g1,6775:10907129,20200971 -g1,6775:12804003,20200971 -g1,6775:13436295,20200971 -g1,6775:14068587,20200971 -g1,6775:14700879,20200971 -g1,6775:15333171,20200971 -g1,6775:15965463,20200971 -h1,6775:16281609,20200971:0,0,0 -k1,6775:32583029,20200971:16301420 -g1,6775:32583029,20200971 -) -(1,6775:6797234,20867149:25785795,410518,101187 -h1,6775:6797234,20867149:0,0,0 -g1,6775:7745671,20867149 -g1,6775:8061817,20867149 -g1,6775:8694109,20867149 -g1,6775:9642546,20867149 -g1,6775:10907129,20867149 -h1,6775:11855566,20867149:0,0,0 -k1,6775:32583030,20867149:20727464 -g1,6775:32583030,20867149 -) -(1,6775:6797234,21533327:25785795,410518,107478 -h1,6775:6797234,21533327:0,0,0 -g1,6775:7745671,21533327 -g1,6775:8061817,21533327 -g1,6775:8694109,21533327 -g1,6775:9642546,21533327 -g1,6775:11223275,21533327 -g1,6775:13120149,21533327 -g1,6775:14700878,21533327 -h1,6775:16281606,21533327:0,0,0 -k1,6775:32583029,21533327:16301423 -g1,6775:32583029,21533327 -) -(1,6777:6797234,22854865:25785795,410518,31456 -(1,6776:6797234,22854865:0,0,0 -g1,6776:6797234,22854865 -g1,6776:6797234,22854865 -g1,6776:6469554,22854865 -(1,6776:6469554,22854865:0,0,0 -) -g1,6776:6797234,22854865 -) -g1,6777:9326400,22854865 -g1,6777:10274838,22854865 -h1,6777:11223276,22854865:0,0,0 -k1,6777:32583028,22854865:21359752 -g1,6777:32583028,22854865 -) -(1,6778:6797234,23521043:25785795,410518,31456 -h1,6778:6797234,23521043:0,0,0 -g1,6778:9326400,23521043 -g1,6778:10274838,23521043 -h1,6778:11223275,23521043:0,0,0 -k1,6778:32583029,23521043:21359754 -g1,6778:32583029,23521043 -) -(1,6779:6797234,24187221:25785795,404226,76021 -h1,6779:6797234,24187221:0,0,0 -k1,6779:6797234,24187221:0 -h1,6779:9642545,24187221:0,0,0 -k1,6779:32583029,24187221:22940484 -g1,6779:32583029,24187221 -) -(1,6788:6797234,24853399:25785795,410518,9436 -(1,6781:6797234,24853399:0,0,0 -g1,6781:6797234,24853399 -g1,6781:6797234,24853399 -g1,6781:6469554,24853399 -(1,6781:6469554,24853399:0,0,0 -) -g1,6781:6797234,24853399 -) -g1,6788:7745671,24853399 -g1,6788:9326400,24853399 -g1,6788:10274837,24853399 -h1,6788:10590983,24853399:0,0,0 -k1,6788:32583029,24853399:21992046 -g1,6788:32583029,24853399 -) -(1,6788:6797234,25519577:25785795,410518,76021 -h1,6788:6797234,25519577:0,0,0 -g1,6788:7745671,25519577 -g1,6788:8061817,25519577 -g1,6788:8694109,25519577 -g1,6788:9326401,25519577 -g1,6788:9958693,25519577 -g1,6788:11223276,25519577 -g1,6788:13120150,25519577 -g1,6788:13752442,25519577 -g1,6788:14384734,25519577 -g1,6788:15017026,25519577 -g1,6788:15649318,25519577 -g1,6788:16281610,25519577 -h1,6788:16597756,25519577:0,0,0 -k1,6788:32583029,25519577:15985273 -g1,6788:32583029,25519577 -) -(1,6788:6797234,26185755:25785795,410518,101187 -h1,6788:6797234,26185755:0,0,0 -g1,6788:7745671,26185755 -g1,6788:8061817,26185755 -g1,6788:8694109,26185755 -g1,6788:9326401,26185755 -g1,6788:9958693,26185755 -g1,6788:11223276,26185755 -h1,6788:12171713,26185755:0,0,0 -k1,6788:32583029,26185755:20411316 -g1,6788:32583029,26185755 -) -(1,6788:6797234,26851933:25785795,410518,107478 -h1,6788:6797234,26851933:0,0,0 -g1,6788:7745671,26851933 -g1,6788:8061817,26851933 -g1,6788:8694109,26851933 -g1,6788:9326401,26851933 -g1,6788:9958693,26851933 -g1,6788:11539422,26851933 -g1,6788:13436296,26851933 -g1,6788:15017025,26851933 -h1,6788:16597753,26851933:0,0,0 -k1,6788:32583029,26851933:15985276 -g1,6788:32583029,26851933 -) -(1,6788:6797234,27518111:25785795,410518,76021 -h1,6788:6797234,27518111:0,0,0 -g1,6788:7745671,27518111 -g1,6788:8061817,27518111 -g1,6788:8694109,27518111 -g1,6788:9958692,27518111 -g1,6788:11223275,27518111 -g1,6788:13120149,27518111 -g1,6788:13752441,27518111 -g1,6788:14384733,27518111 -g1,6788:15017025,27518111 -g1,6788:15649317,27518111 -g1,6788:16281609,27518111 -h1,6788:16597755,27518111:0,0,0 -k1,6788:32583029,27518111:15985274 -g1,6788:32583029,27518111 -) -(1,6788:6797234,28184289:25785795,410518,31456 -h1,6788:6797234,28184289:0,0,0 -g1,6788:7745671,28184289 -g1,6788:8061817,28184289 -g1,6788:8694109,28184289 -g1,6788:9958692,28184289 -g1,6788:11223275,28184289 -h1,6788:12171712,28184289:0,0,0 -k1,6788:32583028,28184289:20411316 -g1,6788:32583028,28184289 -) -] -) -g1,6789:32583029,28215745 -g1,6789:6797234,28215745 -g1,6789:6797234,28215745 -g1,6789:32583029,28215745 -g1,6789:32583029,28215745 -) -h1,6789:6797234,28412353:0,0,0 -] -g1,6792:32583029,28936641 -) -h1,6792:6630773,28936641:0,0,0 -(1,6795:6630773,30250782:25952256,513147,134348 -h1,6794:6630773,30250782:983040,0,0 -k1,6794:9545377,30250782:194860 -k1,6794:10912677,30250782:194861 -k1,6794:15013483,30250782:194860 -k1,6794:16399788,30250782:194860 -k1,6794:20229931,30250782:194861 -k1,6794:21040829,30250782:194860 -k1,6794:23278446,30250782:194860 -k1,6794:24862670,30250782:194861 -k1,6794:27437798,30250782:194860 -k1,6794:28248696,30250782:194860 -k1,6794:30907711,30250782:194861 -k1,6794:31753999,30250782:194860 -k1,6795:32583029,30250782:0 -) -(1,6795:6630773,31092270:25952256,505283,134348 -k1,6794:8937859,31092270:183719 -k1,6794:10313023,31092270:183719 -k1,6794:14172001,31092270:183719 -k1,6794:16578702,31092270:183720 -k1,6794:19530662,31092270:183719 -k1,6794:20365809,31092270:183719 -k1,6794:20905388,31092270:183719 -k1,6794:23350099,31092270:183719 -k1,6794:25091609,31092270:183719 -k1,6794:26750544,31092270:183720 -k1,6794:28106702,31092270:183719 -k1,6794:31048831,31092270:183719 -k1,6794:32583029,31092270:0 -) -(1,6795:6630773,31933758:25952256,513147,126483 -k1,6794:8001434,31933758:179216 -k1,6794:11067510,31933758:179215 -k1,6794:12438171,31933758:179216 -k1,6794:13789825,31933758:179215 -k1,6794:16218237,31933758:179216 -k1,6794:18865539,31933758:179216 -k1,6794:20063839,31933758:179215 -k1,6794:22799614,31933758:179216 -k1,6794:23638122,31933758:179216 -k1,6794:24173197,31933758:179215 -k1,6794:26975819,31933758:179216 -k1,6794:29020189,31933758:179215 -k1,6794:30152954,31933758:179216 -k1,6794:32583029,31933758:0 -) -(1,6795:6630773,32775246:25952256,505283,134348 -k1,6794:8528797,32775246:205884 -k1,6794:11726399,32775246:205883 -k1,6794:13503836,32775246:205884 -k1,6794:14781889,32775246:205884 -k1,6794:16994484,32775246:205883 -k1,6794:19550489,32775246:205884 -k1,6794:22035060,32775246:205884 -h1,6794:23404107,32775246:0,0,0 -k1,6794:23609991,32775246:205884 -k1,6794:24625244,32775246:205883 -k1,6794:26329281,32775246:205884 -h1,6794:27126199,32775246:0,0,0 -k1,6794:27332083,32775246:205884 -k1,6794:28729411,32775246:205883 -k1,6794:31213982,32775246:205884 -h1,6794:32583029,32775246:0,0,0 -k1,6794:32583029,32775246:0 -) -(1,6795:6630773,33616734:25952256,513147,134348 -g1,6794:7639372,33616734 -g1,6794:9336754,33616734 -h1,6794:10133672,33616734:0,0,0 -g1,6794:10332901,33616734 -g1,6794:11479781,33616734 -g1,6794:14906003,33616734 -k1,6795:32583029,33616734:15385887 -g1,6795:32583029,33616734 -) -(1,6797:6630773,34458222:25952256,513147,126483 -h1,6796:6630773,34458222:983040,0,0 -k1,6796:11325584,34458222:321594 -k1,6796:14336777,34458222:321595 -k1,6796:16670326,34458222:321594 -k1,6796:21277976,34458222:321595 -k1,6796:24814111,34458222:321594 -k1,6796:26703327,34458222:321595 -k1,6796:29696168,34458222:321594 -k1,6796:32583029,34458222:0 -) -(1,6797:6630773,35299710:25952256,505283,126483 -k1,6796:8768885,35299710:252641 -k1,6796:9553023,35299710:252641 -k1,6796:10871936,35299710:252642 -k1,6796:13754537,35299710:252641 -k1,6796:15401129,35299710:252641 -k1,6796:17151268,35299710:252641 -k1,6796:18600597,35299710:252642 -k1,6796:20533581,35299710:252641 -k1,6796:23564949,35299710:252641 -k1,6796:24349087,35299710:252641 -k1,6796:25217766,35299710:252641 -k1,6796:27072108,35299710:252642 -k1,6796:29022131,35299710:252641 -k1,6796:29630632,35299710:252641 -k1,6796:32583029,35299710:0 -) -(1,6797:6630773,36141198:25952256,513147,126483 -g1,6796:8219365,36141198 -g1,6796:10294890,36141198 -g1,6796:11180281,36141198 -g1,6796:11995548,36141198 -g1,6796:13398018,36141198 -k1,6797:32583029,36141198:16349924 -g1,6797:32583029,36141198 -) -v1,6799:6630773,37280029:0,393216,0 -(1,6808:6630773,39501909:25952256,2615096,196608 -g1,6808:6630773,39501909 -g1,6808:6630773,39501909 -g1,6808:6434165,39501909 -(1,6808:6434165,39501909:0,2615096,196608 -r1,6863:32779637,39501909:26345472,2811704,196608 -k1,6808:6434165,39501909:-26345472 -) -(1,6808:6434165,39501909:26345472,2615096,196608 -[1,6808:6630773,39501909:25952256,2418488,0 -(1,6801:6630773,37493939:25952256,410518,82312 -(1,6800:6630773,37493939:0,0,0 -g1,6800:6630773,37493939 -g1,6800:6630773,37493939 -g1,6800:6303093,37493939 -(1,6800:6303093,37493939:0,0,0 -) -g1,6800:6630773,37493939 -) -k1,6801:6630773,37493939:0 -g1,6801:9792231,37493939 -h1,6801:11056815,37493939:0,0,0 -k1,6801:32583029,37493939:21526214 -g1,6801:32583029,37493939 -) -(1,6807:6630773,38160117:25952256,404226,107478 -(1,6803:6630773,38160117:0,0,0 -g1,6803:6630773,38160117 -g1,6803:6630773,38160117 -g1,6803:6303093,38160117 -(1,6803:6303093,38160117:0,0,0 -) -g1,6803:6630773,38160117 -) -g1,6807:7579210,38160117 -g1,6807:7895356,38160117 -g1,6807:8211502,38160117 -g1,6807:11372959,38160117 -h1,6807:13269833,38160117:0,0,0 -k1,6807:32583029,38160117:19313196 -g1,6807:32583029,38160117 -) -(1,6807:6630773,38826295:25952256,404226,9436 -h1,6807:6630773,38826295:0,0,0 -g1,6807:7579210,38826295 -g1,6807:8211502,38826295 -g1,6807:8527648,38826295 -g1,6807:8843794,38826295 -g1,6807:9159940,38826295 -g1,6807:9476086,38826295 -g1,6807:9792232,38826295 -g1,6807:11372961,38826295 -g1,6807:11689107,38826295 -g1,6807:12005253,38826295 -g1,6807:12321399,38826295 -h1,6807:13269836,38826295:0,0,0 -k1,6807:32583028,38826295:19313192 -g1,6807:32583028,38826295 -) -(1,6807:6630773,39492473:25952256,404226,9436 -h1,6807:6630773,39492473:0,0,0 -g1,6807:7579210,39492473 -g1,6807:8211502,39492473 -g1,6807:8527648,39492473 -g1,6807:8843794,39492473 -g1,6807:9159940,39492473 -g1,6807:9476086,39492473 -g1,6807:9792232,39492473 -g1,6807:10108378,39492473 -g1,6807:11372961,39492473 -g1,6807:11689107,39492473 -g1,6807:12005253,39492473 -h1,6807:13269836,39492473:0,0,0 -k1,6807:32583028,39492473:19313192 -g1,6807:32583028,39492473 -) -] -) -g1,6808:32583029,39501909 -g1,6808:6630773,39501909 -g1,6808:6630773,39501909 -g1,6808:32583029,39501909 -g1,6808:32583029,39501909 -) -h1,6808:6630773,39698517:0,0,0 -v1,6812:6630773,41310001:0,393216,0 -(1,6863:6630773,45510161:25952256,4593376,196608 -g1,6863:6630773,45510161 -g1,6863:6630773,45510161 -g1,6863:6434165,45510161 -(1,6863:6434165,45510161:0,4593376,196608 -r1,6863:32779637,45510161:26345472,4789984,196608 -k1,6863:6434165,45510161:-26345472 -) -(1,6863:6434165,45510161:26345472,4593376,196608 -[1,6863:6630773,45510161:25952256,4396768,0 -(1,6814:6630773,41523911:25952256,410518,101187 -(1,6813:6630773,41523911:0,0,0 -g1,6813:6630773,41523911 -g1,6813:6630773,41523911 -g1,6813:6303093,41523911 -(1,6813:6303093,41523911:0,0,0 -) -g1,6813:6630773,41523911 -) -g1,6814:7263065,41523911 -g1,6814:9159939,41523911 -g1,6814:11689105,41523911 -g1,6814:14850562,41523911 -k1,6814:14850562,41523911:39846 -h1,6814:17735719,41523911:0,0,0 -k1,6814:32583029,41523911:14847310 -g1,6814:32583029,41523911 -) -(1,6815:6630773,42190089:25952256,410518,82312 -h1,6815:6630773,42190089:0,0,0 -g1,6815:8527647,42190089 -g1,6815:9159939,42190089 -h1,6815:9792231,42190089:0,0,0 -k1,6815:32583029,42190089:22790798 -g1,6815:32583029,42190089 -) -(1,6820:6630773,42856267:25952256,404226,76021 -(1,6817:6630773,42856267:0,0,0 -g1,6817:6630773,42856267 -g1,6817:6630773,42856267 -g1,6817:6303093,42856267 -(1,6817:6303093,42856267:0,0,0 -) -g1,6817:6630773,42856267 -) -g1,6820:7579210,42856267 -g1,6820:8843793,42856267 -g1,6820:10108376,42856267 -g1,6820:10424522,42856267 -g1,6820:12005251,42856267 -g1,6820:13269834,42856267 -g1,6820:13585980,42856267 -g1,6820:15166709,42856267 -g1,6820:16431292,42856267 -g1,6820:16747438,42856267 -h1,6820:18012021,42856267:0,0,0 -k1,6820:32583029,42856267:14571008 -g1,6820:32583029,42856267 -) -(1,6820:6630773,43522445:25952256,404226,6290 -h1,6820:6630773,43522445:0,0,0 -g1,6820:7579210,43522445 -g1,6820:10108376,43522445 -g1,6820:11689105,43522445 -h1,6820:12637542,43522445:0,0,0 -k1,6820:32583030,43522445:19945488 -g1,6820:32583030,43522445 -) -(1,6822:6630773,44843983:25952256,410518,101187 -(1,6821:6630773,44843983:0,0,0 -g1,6821:6630773,44843983 -g1,6821:6630773,44843983 -g1,6821:6303093,44843983 -(1,6821:6303093,44843983:0,0,0 -) -g1,6821:6630773,44843983 -) -g1,6822:7263065,44843983 -g1,6822:9159939,44843983 -g1,6822:11689105,44843983 -g1,6822:15482853,44843983 -g1,6822:16431290,44843983 -g1,6822:18644310,44843983 -k1,6822:18644310,44843983:39846 -h1,6822:21529467,44843983:0,0,0 -k1,6822:32583029,44843983:11053562 -g1,6822:32583029,44843983 -) -(1,6823:6630773,45510161:25952256,410518,82312 -h1,6823:6630773,45510161:0,0,0 -g1,6823:8527647,45510161 -g1,6823:9159939,45510161 -h1,6823:12953687,45510161:0,0,0 -k1,6823:32583029,45510161:19629342 -g1,6823:32583029,45510161 -) -] -) -g1,6863:32583029,45510161 -g1,6863:6630773,45510161 -g1,6863:6630773,45510161 -g1,6863:32583029,45510161 -g1,6863:32583029,45510161 -) -] -(1,6863:32583029,45706769:0,0,0 -g1,6863:32583029,45706769 -) -) -] -(1,6863:6630773,47279633:25952256,0,0 -h1,6863:6630773,47279633:25952256,0,0 -) -] -(1,6863:4262630,4025873:0,0,0 -[1,6863:-473656,4025873:0,0,0 -(1,6863:-473656,-710413:0,0,0 -(1,6863:-473656,-710413:0,0,0 -g1,6863:-473656,-710413 -) -g1,6863:-473656,-710413 -) -] -) -] -!25828 -}113 -Input:913:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!105 -{114 -[1,6937:4262630,47279633:28320399,43253760,0 -(1,6937:4262630,4025873:0,0,0 -[1,6937:-473656,4025873:0,0,0 -(1,6937:-473656,-710413:0,0,0 -(1,6937:-473656,-644877:0,0,0 -k1,6937:-473656,-644877:-65536 +] ) -(1,6937:-473656,4736287:0,0,0 -k1,6937:-473656,4736287:5209943 +g1,646:36675916,2439708 +(1,646:36675916,2439708:1179648,16384,0 +r1,6148:37855564,2439708:1179648,16384,0 ) -g1,6937:-473656,-710413 ) -] +k1,6148:3078556,2439708:-34777008 ) -[1,6937:6630773,47279633:25952256,43253760,0 -[1,6937:6630773,4812305:25952256,786432,0 -(1,6937:6630773,4812305:25952256,513147,126483 -(1,6937:6630773,4812305:25952256,513147,126483 -g1,6937:3078558,4812305 -[1,6937:3078558,4812305:0,0,0 -(1,6937:3078558,2439708:0,1703936,0 -k1,6937:1358238,2439708:-1720320 -(1,5950:1358238,2439708:1720320,1703936,0 -(1,5950:1358238,2439708:1179648,16384,0 -r1,6937:2537886,2439708:1179648,16384,0 +] +[1,6148:3078558,4812305:0,0,0 +(1,6148:3078558,49800853:0,16384,2228224 +k1,6148:1358238,49800853:-1720320 +(1,646:1358238,49800853:1720320,16384,2228224 +(1,646:1358238,49800853:1179648,16384,0 +r1,6148:2537886,49800853:1179648,16384,0 ) -g1,5950:3062174,2439708 -(1,5950:3062174,2439708:16384,1703936,0 -[1,5950:3062174,2439708:25952256,1703936,0 -(1,5950:3062174,1915420:25952256,1179648,0 -(1,5950:3062174,1915420:16384,1179648,0 -r1,6937:3078558,1915420:16384,1179648,0 +g1,646:3062174,49800853 +(1,646:3062174,52029077:16384,1703936,0 +[1,646:3062174,52029077:25952256,1703936,0 +(1,646:3062174,51504789:25952256,1179648,0 +(1,646:3062174,51504789:16384,1179648,0 +r1,6148:3078558,51504789:16384,1179648,0 ) -k1,5950:29014430,1915420:25935872 -g1,5950:29014430,1915420 +k1,646:29014430,51504789:25935872 +g1,646:29014430,51504789 ) ] ) ) ) ] -[1,6937:3078558,4812305:0,0,0 -(1,6937:3078558,2439708:0,1703936,0 -g1,6937:29030814,2439708 -g1,6937:36135244,2439708 -(1,5950:36135244,2439708:1720320,1703936,0 -(1,5950:36135244,2439708:16384,1703936,0 -[1,5950:36135244,2439708:25952256,1703936,0 -(1,5950:36135244,1915420:25952256,1179648,0 -(1,5950:36135244,1915420:16384,1179648,0 -r1,6937:36151628,1915420:16384,1179648,0 +[1,6148:3078558,4812305:0,0,0 +(1,6148:3078558,49800853:0,16384,2228224 +g1,6148:29030814,49800853 +g1,6148:36135244,49800853 +(1,646:36135244,49800853:1720320,16384,2228224 +(1,646:36135244,52029077:16384,1703936,0 +[1,646:36135244,52029077:25952256,1703936,0 +(1,646:36135244,51504789:25952256,1179648,0 +(1,646:36135244,51504789:16384,1179648,0 +r1,6148:36151628,51504789:16384,1179648,0 +) +k1,646:62087500,51504789:25935872 +g1,646:62087500,51504789 +) +] +) +g1,646:36675916,49800853 +(1,646:36675916,49800853:1179648,16384,0 +r1,6148:37855564,49800853:1179648,16384,0 ) -k1,5950:62087500,1915420:25935872 -g1,5950:62087500,1915420 ) -] +k1,6148:3078556,49800853:-34777008 ) -g1,5950:36675916,2439708 -(1,5950:36675916,2439708:1179648,16384,0 -r1,6937:37855564,2439708:1179648,16384,0 +] +g1,6148:6630773,4812305 +k1,6148:22348274,4812305:14920583 +g1,6148:23970945,4812305 +g1,6148:24793421,4812305 +g1,6148:27528893,4812305 +g1,6148:28938572,4812305 +) +) +] +[1,6148:6630773,45706769:25952256,40108032,0 +(1,6148:6630773,45706769:25952256,40108032,0 +(1,6148:6630773,45706769:0,0,0 +g1,6148:6630773,45706769 +) +[1,6148:6630773,45706769:25952256,40108032,0 +v1,6121:6630773,6254097:0,393216,0 +(1,6121:6630773,17446233:25952256,11585352,0 +g1,6121:6630773,17446233 +g1,6121:6237557,17446233 +r1,6148:6368629,17446233:131072,11585352,0 +g1,6121:6567858,17446233 +g1,6121:6764466,17446233 +[1,6121:6764466,17446233:25818563,11585352,0 +v1,6097:6764466,6254097:0,393216,0 +(1,6105:6764466,9340806:25818563,3479925,196608 +g1,6105:6764466,9340806 +g1,6105:6764466,9340806 +g1,6105:6567858,9340806 +(1,6105:6567858,9340806:0,3479925,196608 +r1,6148:32779637,9340806:26211779,3676533,196608 +k1,6105:6567857,9340806:-26211780 +) +(1,6105:6567858,9340806:26211779,3479925,196608 +[1,6105:6764466,9340806:25818563,3283317,0 +(1,6099:6764466,6488534:25818563,431045,106246 +(1,6098:6764466,6488534:0,0,0 +g1,6098:6764466,6488534 +g1,6098:6764466,6488534 +g1,6098:6436786,6488534 +(1,6098:6436786,6488534:0,0,0 +) +g1,6098:6764466,6488534 +) +g1,6099:7428374,6488534 +g1,6099:10415959,6488534 +g1,6099:12739637,6488534 +g1,6099:15063315,6488534 +k1,6099:15063315,6488534:43490 +h1,6099:19754160,6488534:0,0,0 +k1,6099:32583029,6488534:12828869 +g1,6099:32583029,6488534 +) +(1,6100:6764466,7173389:25818563,431045,106246 +h1,6100:6764466,7173389:0,0,0 +k1,6100:8313585,7173389:221303 +k1,6100:9198796,7173389:221303 +k1,6100:15063317,7173389:221303 +k1,6100:16612436,7173389:221303 +k1,6100:18161555,7173389:221303 +k1,6100:20042628,7173389:221303 +k1,6100:21923701,7173389:221303 +k1,6100:22476958,7173389:221303 +k1,6100:24689985,7173389:221303 +k1,6100:26571058,7173389:221303 +k1,6100:27124315,7173389:221303 +k1,6100:28673434,7173389:221303 +k1,6100:29226691,7173389:221303 +k1,6100:31439718,7173389:221303 +k1,6100:31439718,7173389:0 +h1,6100:33099488,7173389:0,0,0 +k1,6100:33099488,7173389:0 +k1,6100:33099488,7173389:0 +) +(1,6101:6764466,7858244:25818563,407923,8257 +h1,6101:6764466,7858244:0,0,0 +h1,6101:8092282,7858244:0,0,0 +k1,6101:32583030,7858244:24490748 +g1,6101:32583030,7858244 +) +(1,6102:6764466,8543099:25818563,424439,112852 +h1,6102:6764466,8543099:0,0,0 +k1,6102:6764466,8543099:0 +h1,6102:12075729,8543099:0,0,0 +k1,6102:32583029,8543099:20507300 +g1,6102:32583029,8543099 +) +(1,6103:6764466,9227954:25818563,424439,112852 +h1,6103:6764466,9227954:0,0,0 +k1,6103:6764466,9227954:0 +h1,6103:16723085,9227954:0,0,0 +k1,6103:32583029,9227954:15859944 +g1,6103:32583029,9227954 +) +] +) +g1,6105:32583029,9340806 +g1,6105:6764466,9340806 +g1,6105:6764466,9340806 +g1,6105:32583029,9340806 +g1,6105:32583029,9340806 +) +h1,6105:6764466,9537414:0,0,0 +(1,6109:6764466,10402494:25818563,513147,134348 +h1,6108:6764466,10402494:983040,0,0 +k1,6108:8983094,10402494:282039 +k1,6108:10290116,10402494:282039 +k1,6108:12427479,10402494:282039 +k1,6108:13994023,10402494:282038 +k1,6108:15295147,10402494:282039 +k1,6108:17807376,10402494:282039 +k1,6108:20100060,10402494:282039 +k1,6108:21143627,10402494:282039 +k1,6108:23311137,10402494:282039 +k1,6108:25385586,10402494:282039 +k1,6108:26283662,10402494:282038 +k1,6108:26921561,10402494:282039 +k1,6108:29097590,10402494:282039 +k1,6108:30371189,10402494:282039 +k1,6108:32583029,10402494:0 +) +(1,6109:6764466,11267574:25818563,513147,134348 +k1,6108:7932854,11267574:176828 +k1,6108:11414663,11267574:176828 +k1,6108:12242918,11267574:176827 +k1,6108:14668942,11267574:176828 +k1,6108:15528655,11267574:176828 +k1,6108:19612739,11267574:176828 +k1,6108:23411742,11267574:176828 +k1,6108:24607655,11267574:176828 +k1,6108:26762359,11267574:176827 +k1,6108:27598479,11267574:176828 +k1,6108:29793161,11267574:176828 +k1,6109:32583029,11267574:0 +) +(1,6109:6764466,12132654:25818563,505283,134348 +(1,6108:6764466,12132654:0,452978,115847 +r1,6148:8881291,12132654:2116825,568825,115847 +k1,6108:6764466,12132654:-2116825 +) +(1,6108:6764466,12132654:2116825,452978,115847 +k1,6108:6764466,12132654:3277 +h1,6108:8878014,12132654:0,411205,112570 +) +k1,6108:9016785,12132654:135494 +k1,6108:11893651,12132654:135495 +k1,6108:12838515,12132654:135494 +k1,6108:13993095,12132654:135495 +k1,6108:16312904,12132654:135494 +k1,6108:19891005,12132654:135495 +k1,6108:22586991,12132654:135494 +k1,6108:23913931,12132654:135495 +k1,6108:25649814,12132654:135494 +k1,6108:28902201,12132654:135495 +k1,6108:29689123,12132654:135494 +k1,6108:30843703,12132654:135495 +k1,6108:32583029,12132654:0 +) +(1,6109:6764466,12997734:25818563,513147,126483 +k1,6108:7642756,12997734:218998 +k1,6108:8880840,12997734:218999 +k1,6108:10892248,12997734:218998 +k1,6108:12800764,12997734:218998 +(1,6108:12800764,12997734:0,452978,115847 +r1,6148:15269301,12997734:2468537,568825,115847 +k1,6108:12800764,12997734:-2468537 +) +(1,6108:12800764,12997734:2468537,452978,115847 +k1,6108:12800764,12997734:3277 +h1,6108:15266024,12997734:0,411205,112570 +) +k1,6108:15488300,12997734:218999 +k1,6108:18448669,12997734:218998 +k1,6108:19477038,12997734:218999 +k1,6108:20715121,12997734:218998 +k1,6108:23118434,12997734:218998 +k1,6108:25181616,12997734:218999 +k1,6108:26592059,12997734:218998 +k1,6108:29152003,12997734:218998 +k1,6108:29726862,12997734:218999 +k1,6108:31923737,12997734:218998 +k1,6108:32583029,12997734:0 +) +(1,6109:6764466,13862814:25818563,505283,134348 +g1,6108:9212891,13862814 +g1,6108:10696626,13862814 +g1,6108:13320687,13862814 +g1,6108:14539001,13862814 +g1,6108:16748875,13862814 +k1,6109:32583029,13862814:11241391 +g1,6109:32583029,13862814 +) +v1,6111:6764466,14547669:0,393216,0 +(1,6117:6764466,16258062:25818563,2103609,196608 +g1,6117:6764466,16258062 +g1,6117:6764466,16258062 +g1,6117:6567858,16258062 +(1,6117:6567858,16258062:0,2103609,196608 +r1,6148:32779637,16258062:26211779,2300217,196608 +k1,6117:6567857,16258062:-26211780 +) +(1,6117:6567858,16258062:26211779,2103609,196608 +[1,6117:6764466,16258062:25818563,1907001,0 +(1,6113:6764466,14775500:25818563,424439,79822 +(1,6112:6764466,14775500:0,0,0 +g1,6112:6764466,14775500 +g1,6112:6764466,14775500 +g1,6112:6436786,14775500 +(1,6112:6436786,14775500:0,0,0 +) +g1,6112:6764466,14775500 +) +k1,6113:6764466,14775500:0 +h1,6113:10084006,14775500:0,0,0 +k1,6113:32583030,14775500:22499024 +g1,6113:32583030,14775500 +) +(1,6114:6764466,15460355:25818563,424439,79822 +h1,6114:6764466,15460355:0,0,0 +k1,6114:6764466,15460355:0 +h1,6114:12407684,15460355:0,0,0 +k1,6114:32583028,15460355:20175344 +g1,6114:32583028,15460355 +) +(1,6115:6764466,16145210:25818563,424439,112852 +h1,6115:6764466,16145210:0,0,0 +k1,6115:6764466,16145210:0 +h1,6115:16391130,16145210:0,0,0 +k1,6115:32583029,16145210:16191899 +g1,6115:32583029,16145210 +) +] +) +g1,6117:32583029,16258062 +g1,6117:6764466,16258062 +g1,6117:6764466,16258062 +g1,6117:32583029,16258062 +g1,6117:32583029,16258062 +) +h1,6117:6764466,16454670:0,0,0 +(1,6121:6764466,17319750:25818563,513147,126483 +h1,6120:6764466,17319750:983040,0,0 +g1,6120:9221410,17319750 +g1,6120:10439724,17319750 +g1,6120:13630672,17319750 +g1,6120:14445939,17319750 +g1,6120:15664253,17319750 +g1,6120:17834150,17319750 +g1,6120:19888703,17319750 +g1,6120:21279377,17319750 +g1,6120:23075063,17319750 +g1,6120:24340563,17319750 +g1,6120:25836750,17319750 +g1,6120:27055064,17319750 +g1,6120:29427467,17319750 +k1,6121:32583029,17319750:1238634 +g1,6121:32583029,17319750 +) +] +g1,6121:32583029,17446233 +) +h1,6121:6630773,17446233:0,0,0 +v1,6124:6630773,18311313:0,393216,0 +(1,6125:6630773,23944439:25952256,6026342,0 +g1,6125:6630773,23944439 +g1,6125:6237557,23944439 +r1,6148:6368629,23944439:131072,6026342,0 +g1,6125:6567858,23944439 +g1,6125:6764466,23944439 +[1,6125:6764466,23944439:25818563,6026342,0 +(1,6125:6764466,18619611:25818563,701514,196608 +(1,6124:6764466,18619611:0,701514,196608 +r1,6148:8010564,18619611:1246098,898122,196608 +k1,6124:6764466,18619611:-1246098 +) +(1,6124:6764466,18619611:1246098,701514,196608 +) +k1,6124:8183776,18619611:173212 +k1,6124:8511456,18619611:327680 +k1,6124:11003333,18619611:173213 +k1,6124:13434916,18619611:173212 +k1,6124:15400539,18619611:173213 +k1,6124:16259913,18619611:173212 +(1,6124:16259913,18619611:0,452978,122846 +r1,6148:18728450,18619611:2468537,575824,122846 +k1,6124:16259913,18619611:-2468537 +) +(1,6124:16259913,18619611:2468537,452978,122846 +k1,6124:16259913,18619611:3277 +h1,6124:18725173,18619611:0,411205,112570 +) +k1,6124:18901663,18619611:173213 +k1,6124:21085520,18619611:173212 +k1,6124:21874771,18619611:173213 +k1,6124:22403843,18619611:173212 +k1,6124:24728603,18619611:173213 +k1,6124:25529650,18619611:173212 +k1,6124:27454640,18619611:173213 +k1,6124:29498905,18619611:173212 +k1,6124:32583029,18619611:0 +) +(1,6125:6764466,19484691:25818563,513147,134348 +k1,6124:11509332,19484691:177007 +k1,6124:13978132,19484691:177006 +k1,6124:15174224,19484691:177007 +k1,6124:17004704,19484691:177007 +k1,6124:20988697,19484691:177007 +k1,6124:21817131,19484691:177006 +k1,6124:22741904,19484691:177007 +k1,6124:25598023,19484691:177007 +k1,6124:26461192,19484691:177007 +k1,6124:28659984,19484691:177006 +k1,6124:30847636,19484691:177007 +k1,6124:32583029,19484691:0 +) +(1,6125:6764466,20349771:25818563,513147,134348 +k1,6124:9706436,20349771:270723 +k1,6124:12391505,20349771:270723 +k1,6124:15703754,20349771:270724 +k1,6124:18293141,20349771:270723 +k1,6124:19555424,20349771:270723 +k1,6124:21609382,20349771:270723 +k1,6124:24859372,20349771:270723 +k1,6124:26077746,20349771:270723 +k1,6124:27367555,20349771:270724 +k1,6124:29019122,20349771:270723 +k1,6124:29941273,20349771:270723 +k1,6124:32583029,20349771:0 +) +(1,6125:6764466,21214851:25818563,513147,126483 +k1,6124:8499095,21214851:176838 +k1,6124:9667493,21214851:176838 +k1,6124:13005132,21214851:176838 +k1,6124:14449436,21214851:176838 +k1,6124:15645359,21214851:176838 +k1,6124:19127177,21214851:176837 +k1,6124:21740644,21214851:176838 +k1,6124:24759123,21214851:176838 +k1,6124:26633999,21214851:176838 +k1,6124:27166697,21214851:176838 +k1,6124:29331242,21214851:176838 +k1,6124:32051532,21214851:176838 +k1,6124:32583029,21214851:0 +) +(1,6125:6764466,22079931:25818563,513147,126483 +k1,6124:10234657,22079931:237955 +k1,6124:11740079,22079931:237956 +k1,6124:12333894,22079931:237955 +k1,6124:14484845,22079931:237955 +k1,6124:16977894,22079931:237956 +k1,6124:18596693,22079931:237955 +k1,6124:19366146,22079931:237956 +k1,6124:22183598,22079931:237955 +k1,6124:26718093,22079931:237955 +k1,6124:27717577,22079931:237956 +k1,6124:29557232,22079931:237955 +k1,6124:32583029,22079931:0 +) +(1,6125:6764466,22945011:25818563,513147,134348 +k1,6124:11452857,22945011:264711 +k1,6124:13652191,22945011:264711 +k1,6124:14576194,22945011:264711 +k1,6124:17925028,22945011:264710 +k1,6124:20507747,22945011:264711 +k1,6124:21423886,22945011:264711 +k1,6124:23077960,22945011:264711 +k1,6124:24574748,22945011:264711 +k1,6124:27448447,22945011:264711 +h1,6124:28419035,22945011:0,0,0 +k1,6124:28683745,22945011:264710 +k1,6124:30139901,22945011:264711 +h1,6124:31508948,22945011:0,0,0 +k1,6124:31773659,22945011:264711 +k1,6124:32583029,22945011:0 +) +(1,6125:6764466,23810091:25818563,505283,134348 +g1,6124:8792149,23810091 +h1,6124:9987526,23810091:0,0,0 +g1,6124:10186755,23810091 +g1,6124:11577429,23810091 +h1,6124:12772806,23810091:0,0,0 +k1,6125:32583030,23810091:19429460 +g1,6125:32583030,23810091 +) +] +g1,6125:32583029,23944439 +) +h1,6125:6630773,23944439:0,0,0 +(1,6134:6630773,26775599:25952256,32768,229376 +(1,6134:6630773,26775599:0,32768,229376 +(1,6134:6630773,26775599:5505024,32768,229376 +r1,6148:12135797,26775599:5505024,262144,229376 +) +k1,6134:6630773,26775599:-5505024 +) +(1,6134:6630773,26775599:25952256,32768,0 +r1,6148:32583029,26775599:25952256,32768,0 +) +) +(1,6134:6630773,28407451:25952256,606339,161218 +(1,6134:6630773,28407451:2464678,582746,14155 +g1,6134:6630773,28407451 +g1,6134:9095451,28407451 +) +g1,6134:12303307,28407451 +k1,6134:32583029,28407451:17283416 +g1,6134:32583029,28407451 +) +(1,6137:6630773,29665747:25952256,513147,134348 +k1,6135:7858919,29665747:186124 +k1,6135:10320453,29665747:186124 +k1,6135:12909127,29665747:186124 +k1,6135:13904621,29665747:186124 +k1,6135:15109830,29665747:186124 +k1,6135:17670979,29665747:186124 +k1,6135:18524259,29665747:186124 +k1,6135:19125213,29665747:186111 +k1,6135:22440681,29665747:186124 +k1,6135:23242843,29665747:186124 +k1,6135:24448052,29665747:186124 +k1,6135:26978399,29665747:186124 +k1,6135:29755817,29665747:186124 +k1,6136:30154920,29665747:186111 +k1,6136:32583029,29665747:0 +) +(1,6137:6630773,30530827:25952256,513147,134348 +k1,6136:7826196,30530827:176338 +k1,6136:9914876,30530827:176339 +k1,6136:10540791,30530827:176338 +k1,6136:15107387,30530827:176339 +k1,6136:16207783,30530827:176338 +k1,6136:17918320,30530827:176339 +k1,6136:20374656,30530827:176338 +k1,6136:22270004,30530827:176338 +k1,6136:24247272,30530827:176339 +k1,6136:25615055,30530827:176338 +k1,6136:26978906,30530827:176339 +k1,6136:28185470,30530827:176338 +k1,6136:28977847,30530827:176339 +k1,6136:29603762,30530827:176338 +k1,6137:32583029,30530827:0 +) +(1,6137:6630773,31395907:25952256,513147,134348 +g1,6136:8619790,31395907 +g1,6136:9308573,31395907 +g1,6136:11030203,31395907 +g1,6136:11845470,31395907 +g1,6136:15075084,31395907 +g1,6136:18056316,31395907 +g1,6136:20386776,31395907 +g1,6136:23054746,31395907 +k1,6137:32583029,31395907:7553683 +g1,6137:32583029,31395907 +) +] +(1,6148:32583029,45706769:0,0,0 +g1,6148:32583029,45706769 +) +) +] +(1,6148:6630773,47279633:25952256,0,0 +h1,6148:6630773,47279633:25952256,0,0 +) +] +(1,6148:4262630,4025873:0,0,0 +[1,6148:-473656,4025873:0,0,0 +(1,6148:-473656,-710413:0,0,0 +(1,6148:-473656,-710413:0,0,0 +g1,6148:-473656,-710413 +) +g1,6148:-473656,-710413 +) +] +) +] +!16232 +}97 +!11 +{98 +[1,6169:4262630,47279633:28320399,43253760,11795 +(1,6169:4262630,4025873:0,0,0 +[1,6169:-473656,4025873:0,0,0 +(1,6169:-473656,-710413:0,0,0 +(1,6169:-473656,-644877:0,0,0 +k1,6169:-473656,-644877:-65536 ) +(1,6169:-473656,4736287:0,0,0 +k1,6169:-473656,4736287:5209943 ) -k1,6937:3078556,2439708:-34777008 +g1,6169:-473656,-710413 ) ] -[1,6937:3078558,4812305:0,0,0 -(1,6937:3078558,49800853:0,16384,2228224 -k1,6937:1358238,49800853:-1720320 -(1,5950:1358238,49800853:1720320,16384,2228224 -(1,5950:1358238,49800853:1179648,16384,0 -r1,6937:2537886,49800853:1179648,16384,0 ) -g1,5950:3062174,49800853 -(1,5950:3062174,52029077:16384,1703936,0 -[1,5950:3062174,52029077:25952256,1703936,0 -(1,5950:3062174,51504789:25952256,1179648,0 -(1,5950:3062174,51504789:16384,1179648,0 -r1,6937:3078558,51504789:16384,1179648,0 +[1,6169:6630773,47279633:25952256,43253760,11795 +[1,6169:6630773,4812305:25952256,786432,0 +(1,6169:6630773,4812305:25952256,0,0 +(1,6169:6630773,4812305:25952256,0,0 +g1,6169:3078558,4812305 +[1,6169:3078558,4812305:0,0,0 +(1,6169:3078558,2439708:0,1703936,0 +k1,6169:1358238,2439708:-1720320 +(1,6148:1358238,2439708:1720320,1703936,0 +(1,6148:1358238,2439708:1179648,16384,0 +r1,6169:2537886,2439708:1179648,16384,0 +) +g1,6148:3062174,2439708 +(1,6148:3062174,2439708:16384,1703936,0 +[1,6148:3062174,2439708:25952256,1703936,0 +(1,6148:3062174,1915420:25952256,1179648,0 +(1,6148:3062174,1915420:16384,1179648,0 +r1,6169:3078558,1915420:16384,1179648,0 ) -k1,5950:29014430,51504789:25935872 -g1,5950:29014430,51504789 +k1,6148:29014430,1915420:25935872 +g1,6148:29014430,1915420 ) ] ) ) ) ] -[1,6937:3078558,4812305:0,0,0 -(1,6937:3078558,49800853:0,16384,2228224 -g1,6937:29030814,49800853 -g1,6937:36135244,49800853 -(1,5950:36135244,49800853:1720320,16384,2228224 -(1,5950:36135244,52029077:16384,1703936,0 -[1,5950:36135244,52029077:25952256,1703936,0 -(1,5950:36135244,51504789:25952256,1179648,0 -(1,5950:36135244,51504789:16384,1179648,0 -r1,6937:36151628,51504789:16384,1179648,0 +[1,6169:3078558,4812305:0,0,0 +(1,6169:3078558,2439708:0,1703936,0 +g1,6169:29030814,2439708 +g1,6169:36135244,2439708 +(1,6148:36135244,2439708:1720320,1703936,0 +(1,6148:36135244,2439708:16384,1703936,0 +[1,6148:36135244,2439708:25952256,1703936,0 +(1,6148:36135244,1915420:25952256,1179648,0 +(1,6148:36135244,1915420:16384,1179648,0 +r1,6169:36151628,1915420:16384,1179648,0 ) -k1,5950:62087500,51504789:25935872 -g1,5950:62087500,51504789 +k1,6148:62087500,1915420:25935872 +g1,6148:62087500,1915420 ) ] ) -g1,5950:36675916,49800853 -(1,5950:36675916,49800853:1179648,16384,0 -r1,6937:37855564,49800853:1179648,16384,0 +g1,6148:36675916,2439708 +(1,6148:36675916,2439708:1179648,16384,0 +r1,6169:37855564,2439708:1179648,16384,0 ) ) -k1,6937:3078556,49800853:-34777008 +k1,6169:3078556,2439708:-34777008 ) ] -g1,6937:6630773,4812305 -g1,6937:6630773,4812305 -g1,6937:8364200,4812305 -g1,6937:10765439,4812305 -k1,6937:31786111,4812305:21020672 -) -) -] -[1,6937:6630773,45706769:25952256,40108032,0 -(1,6937:6630773,45706769:25952256,40108032,0 -(1,6937:6630773,45706769:0,0,0 -g1,6937:6630773,45706769 -) -[1,6937:6630773,45706769:25952256,40108032,0 -v1,6863:6630773,6254097:0,393216,0 -(1,6863:6630773,21816558:25952256,15955677,196608 -g1,6863:6630773,21816558 -g1,6863:6630773,21816558 -g1,6863:6434165,21816558 -(1,6863:6434165,21816558:0,15955677,196608 -r1,6937:32779637,21816558:26345472,16152285,196608 -k1,6863:6434165,21816558:-26345472 -) -(1,6863:6434165,21816558:26345472,15955677,196608 -[1,6863:6630773,21816558:25952256,15759069,0 -(1,6828:6630773,6461715:25952256,404226,76021 -(1,6825:6630773,6461715:0,0,0 -g1,6825:6630773,6461715 -g1,6825:6630773,6461715 -g1,6825:6303093,6461715 -(1,6825:6303093,6461715:0,0,0 -) -g1,6825:6630773,6461715 -) -g1,6828:7579210,6461715 -g1,6828:8843793,6461715 -g1,6828:10108376,6461715 -g1,6828:10424522,6461715 -g1,6828:12005251,6461715 -g1,6828:13269834,6461715 -g1,6828:13585980,6461715 -g1,6828:15166709,6461715 -g1,6828:16431292,6461715 -g1,6828:16747438,6461715 -h1,6828:18012021,6461715:0,0,0 -k1,6828:32583029,6461715:14571008 -g1,6828:32583029,6461715 -) -(1,6828:6630773,7127893:25952256,404226,6290 -h1,6828:6630773,7127893:0,0,0 -g1,6828:7579210,7127893 -g1,6828:10108376,7127893 -g1,6828:11689105,7127893 -h1,6828:12637542,7127893:0,0,0 -k1,6828:32583030,7127893:19945488 -g1,6828:32583030,7127893 -) -(1,6830:6630773,8449431:25952256,410518,101187 -(1,6829:6630773,8449431:0,0,0 -g1,6829:6630773,8449431 -g1,6829:6630773,8449431 -g1,6829:6303093,8449431 -(1,6829:6303093,8449431:0,0,0 -) -g1,6829:6630773,8449431 -) -g1,6830:7263065,8449431 -g1,6830:9159939,8449431 -k1,6830:9159939,8449431:47186 -h1,6830:10155562,8449431:0,0,0 -k1,6830:32583030,8449431:22427468 -g1,6830:32583030,8449431 -) -(1,6831:6630773,9115609:25952256,410518,82312 -h1,6831:6630773,9115609:0,0,0 -g1,6831:9159939,9115609 -h1,6831:9476085,9115609:0,0,0 -k1,6831:32583029,9115609:23106944 -g1,6831:32583029,9115609 -) -(1,6836:6630773,9781787:25952256,404226,107478 -(1,6833:6630773,9781787:0,0,0 -g1,6833:6630773,9781787 -g1,6833:6630773,9781787 -g1,6833:6303093,9781787 -(1,6833:6303093,9781787:0,0,0 -) -g1,6833:6630773,9781787 -) -g1,6836:7579210,9781787 -g1,6836:7895356,9781787 -g1,6836:8211502,9781787 -g1,6836:11372959,9781787 -g1,6836:13585979,9781787 -g1,6836:15798999,9781787 -g1,6836:16747436,9781787 -h1,6836:17379727,9781787:0,0,0 -k1,6836:32583029,9781787:15203302 -g1,6836:32583029,9781787 -) -(1,6836:6630773,10447965:25952256,404226,9436 -h1,6836:6630773,10447965:0,0,0 -g1,6836:7579210,10447965 -g1,6836:8211502,10447965 -g1,6836:8527648,10447965 -g1,6836:8843794,10447965 -g1,6836:9159940,10447965 -g1,6836:9476086,10447965 -g1,6836:9792232,10447965 -g1,6836:10108378,10447965 -g1,6836:11372961,10447965 -g1,6836:11689107,10447965 -g1,6836:12005253,10447965 -g1,6836:13585982,10447965 -g1,6836:13902128,10447965 -g1,6836:14218274,10447965 -g1,6836:14534420,10447965 -g1,6836:15799003,10447965 -g1,6836:16115149,10447965 -g1,6836:16747441,10447965 -g1,6836:17063587,10447965 -h1,6836:17379733,10447965:0,0,0 -k1,6836:32583029,10447965:15203296 -g1,6836:32583029,10447965 -) -(1,6838:6630773,11769503:25952256,410518,101187 -(1,6837:6630773,11769503:0,0,0 -g1,6837:6630773,11769503 -g1,6837:6630773,11769503 -g1,6837:6303093,11769503 -(1,6837:6303093,11769503:0,0,0 -) -g1,6837:6630773,11769503 -) -g1,6838:7263065,11769503 -g1,6838:9159939,11769503 -g1,6838:10424522,11769503 -g1,6838:12005251,11769503 -g1,6838:12953688,11769503 -g1,6838:14218271,11769503 -g1,6838:16115145,11769503 -g1,6838:17379728,11769503 -g1,6838:19592748,11769503 -k1,6838:19592748,11769503:0 -h1,6838:21805768,11769503:0,0,0 -k1,6838:32583029,11769503:10777261 -g1,6838:32583029,11769503 -) -(1,6839:6630773,12435681:25952256,410518,82312 -h1,6839:6630773,12435681:0,0,0 -g1,6839:9792231,12435681 -g1,6839:12637543,12435681 -g1,6839:14850563,12435681 -g1,6839:16747438,12435681 -g1,6839:18644313,12435681 -h1,6839:20857332,12435681:0,0,0 -k1,6839:32583029,12435681:11725697 -g1,6839:32583029,12435681 -) -(1,6845:6630773,13101859:25952256,404226,107478 -(1,6841:6630773,13101859:0,0,0 -g1,6841:6630773,13101859 -g1,6841:6630773,13101859 -g1,6841:6303093,13101859 -(1,6841:6303093,13101859:0,0,0 -) -g1,6841:6630773,13101859 -) -g1,6845:7579210,13101859 -g1,6845:7895356,13101859 -g1,6845:8211502,13101859 -g1,6845:10424522,13101859 -h1,6845:11056813,13101859:0,0,0 -k1,6845:32583029,13101859:21526216 -g1,6845:32583029,13101859 -) -(1,6845:6630773,13768037:25952256,388497,9436 -h1,6845:6630773,13768037:0,0,0 -g1,6845:7579210,13768037 -g1,6845:8211502,13768037 -g1,6845:8527648,13768037 -g1,6845:8843794,13768037 -g1,6845:9159940,13768037 -g1,6845:10424523,13768037 -g1,6845:10740669,13768037 -h1,6845:11056815,13768037:0,0,0 -k1,6845:32583029,13768037:21526214 -g1,6845:32583029,13768037 -) -(1,6845:6630773,14434215:25952256,388497,9436 -h1,6845:6630773,14434215:0,0,0 -g1,6845:7579210,14434215 -g1,6845:8211502,14434215 -g1,6845:8527648,14434215 -g1,6845:8843794,14434215 -g1,6845:9159940,14434215 -g1,6845:10424523,14434215 -g1,6845:10740669,14434215 -h1,6845:11056815,14434215:0,0,0 -k1,6845:32583029,14434215:21526214 -g1,6845:32583029,14434215 -) -(1,6847:6630773,15755753:25952256,410518,101187 -(1,6846:6630773,15755753:0,0,0 -g1,6846:6630773,15755753 -g1,6846:6630773,15755753 -g1,6846:6303093,15755753 -(1,6846:6303093,15755753:0,0,0 -) -g1,6846:6630773,15755753 -) -g1,6847:7263065,15755753 -g1,6847:8527648,15755753 -g1,6847:10108377,15755753 -g1,6847:11372960,15755753 -g1,6847:13269834,15755753 -g1,6847:16747437,15755753 -g1,6847:17695874,15755753 -k1,6847:17695874,15755753:1573 -h1,6847:18962030,15755753:0,0,0 -k1,6847:32583029,15755753:13620999 -g1,6847:32583029,15755753 -) -(1,6848:6630773,16421931:25952256,410518,82312 -h1,6848:6630773,16421931:0,0,0 -g1,6848:12953687,16421931 -g1,6848:13902124,16421931 -g1,6848:15798998,16421931 -g1,6848:16431290,16421931 -h1,6848:16747436,16421931:0,0,0 -k1,6848:32583029,16421931:15835593 -g1,6848:32583029,16421931 -) -(1,6855:6630773,17088109:25952256,404226,107478 -(1,6850:6630773,17088109:0,0,0 -g1,6850:6630773,17088109 -g1,6850:6630773,17088109 -g1,6850:6303093,17088109 -(1,6850:6303093,17088109:0,0,0 -) -g1,6850:6630773,17088109 -) -g1,6855:7579210,17088109 -g1,6855:7895356,17088109 -g1,6855:8211502,17088109 -g1,6855:11372959,17088109 -g1,6855:13585979,17088109 -g1,6855:15798999,17088109 -g1,6855:16747436,17088109 -h1,6855:17379727,17088109:0,0,0 -k1,6855:32583029,17088109:15203302 -g1,6855:32583029,17088109 -) -(1,6855:6630773,17754287:25952256,404226,9436 -h1,6855:6630773,17754287:0,0,0 -g1,6855:7579210,17754287 -g1,6855:8211502,17754287 -g1,6855:8527648,17754287 -g1,6855:8843794,17754287 -g1,6855:9159940,17754287 -g1,6855:9476086,17754287 -g1,6855:9792232,17754287 -g1,6855:10108378,17754287 -g1,6855:11372961,17754287 -g1,6855:11689107,17754287 -g1,6855:12005253,17754287 -g1,6855:13585982,17754287 -g1,6855:13902128,17754287 -g1,6855:14218274,17754287 -g1,6855:14534420,17754287 -g1,6855:15799003,17754287 -g1,6855:16115149,17754287 -g1,6855:16747441,17754287 -g1,6855:17063587,17754287 -h1,6855:17379733,17754287:0,0,0 -k1,6855:32583029,17754287:15203296 -g1,6855:32583029,17754287 -) -(1,6855:6630773,18420465:25952256,404226,9436 -h1,6855:6630773,18420465:0,0,0 -g1,6855:7579210,18420465 -g1,6855:8211502,18420465 -g1,6855:8527648,18420465 -g1,6855:8843794,18420465 -g1,6855:9159940,18420465 -g1,6855:9476086,18420465 -g1,6855:9792232,18420465 -g1,6855:10108378,18420465 -g1,6855:11372961,18420465 -g1,6855:11689107,18420465 -g1,6855:12005253,18420465 -g1,6855:13585982,18420465 -g1,6855:13902128,18420465 -g1,6855:14218274,18420465 -g1,6855:14534420,18420465 -g1,6855:15799003,18420465 -g1,6855:16115149,18420465 -g1,6855:16747441,18420465 -g1,6855:17063587,18420465 -h1,6855:17379733,18420465:0,0,0 -k1,6855:32583029,18420465:15203296 -g1,6855:32583029,18420465 -) -(1,6855:6630773,19086643:25952256,404226,9436 -h1,6855:6630773,19086643:0,0,0 -g1,6855:7579210,19086643 -g1,6855:8211502,19086643 -g1,6855:8527648,19086643 -g1,6855:8843794,19086643 -g1,6855:9159940,19086643 -g1,6855:9476086,19086643 -g1,6855:9792232,19086643 -g1,6855:10108378,19086643 -g1,6855:11372961,19086643 -g1,6855:11689107,19086643 -g1,6855:12005253,19086643 -g1,6855:13585982,19086643 -g1,6855:13902128,19086643 -g1,6855:14218274,19086643 -g1,6855:14534420,19086643 -g1,6855:15799003,19086643 -g1,6855:16115149,19086643 -g1,6855:16747441,19086643 -g1,6855:17063587,19086643 -h1,6855:17379733,19086643:0,0,0 -k1,6855:32583029,19086643:15203296 -g1,6855:32583029,19086643 -) -(1,6857:6630773,20408181:25952256,404226,107478 -(1,6856:6630773,20408181:0,0,0 -g1,6856:6630773,20408181 -g1,6856:6630773,20408181 -g1,6856:6303093,20408181 -(1,6856:6303093,20408181:0,0,0 -) -g1,6856:6630773,20408181 -) -g1,6857:7263065,20408181 -g1,6857:8527648,20408181 -g1,6857:11056814,20408181 -g1,6857:11689106,20408181 -k1,6857:11689106,20408181:24117 -h1,6857:12029369,20408181:0,0,0 -k1,6857:32583029,20408181:20553660 -g1,6857:32583029,20408181 -) -(1,6858:6630773,21074359:25952256,410518,107478 -h1,6858:6630773,21074359:0,0,0 -g1,6858:12005250,21074359 -g1,6858:12637542,21074359 -g1,6858:13585980,21074359 -h1,6858:16431291,21074359:0,0,0 -k1,6858:32583029,21074359:16151738 -g1,6858:32583029,21074359 -) -(1,6862:6630773,21740537:25952256,404226,76021 -(1,6860:6630773,21740537:0,0,0 -g1,6860:6630773,21740537 -g1,6860:6630773,21740537 -g1,6860:6303093,21740537 -(1,6860:6303093,21740537:0,0,0 -) -g1,6860:6630773,21740537 -) -g1,6862:7579210,21740537 -g1,6862:8843793,21740537 -g1,6862:10424522,21740537 -g1,6862:10740668,21740537 -g1,6862:12005251,21740537 -g1,6862:13585980,21740537 -g1,6862:13902126,21740537 -g1,6862:15166709,21740537 -g1,6862:16747438,21740537 -g1,6862:17063584,21740537 -h1,6862:18012021,21740537:0,0,0 -k1,6862:32583029,21740537:14571008 -g1,6862:32583029,21740537 -) -] -) -g1,6863:32583029,21816558 -g1,6863:6630773,21816558 -g1,6863:6630773,21816558 -g1,6863:32583029,21816558 -g1,6863:32583029,21816558 -) -h1,6863:6630773,22013166:0,0,0 -(1,6867:6630773,23229863:25952256,513147,134348 -h1,6866:6630773,23229863:983040,0,0 -k1,6866:8649181,23229863:217479 -k1,6866:11944885,23229863:217478 -k1,6866:14195946,23229863:217479 -k1,6866:15361075,23229863:217478 -k1,6866:17886732,23229863:217479 -k1,6866:19336287,23229863:217478 -k1,6866:21832453,23229863:217479 -h1,6866:23201500,23229863:0,0,0 -k1,6866:23418978,23229863:217478 -k1,6866:24445827,23229863:217479 -k1,6866:26161458,23229863:217478 -h1,6866:26958376,23229863:0,0,0 -k1,6866:27556619,23229863:217479 -k1,6866:30513502,23229863:217478 -k1,6866:31835263,23229863:217479 -k1,6866:32583029,23229863:0 -) -(1,6867:6630773,24071351:25952256,513147,134348 -k1,6866:9227528,24071351:190928 -k1,6866:10885152,24071351:190928 -k1,6866:11885450,24071351:190928 -k1,6866:13095463,24071351:190928 -k1,6866:16641179,24071351:190928 -k1,6866:18131686,24071351:190928 -k1,6866:19514059,24071351:190928 -k1,6866:22598402,24071351:190928 -k1,6866:24088909,24071351:190928 -k1,6866:24939129,24071351:190928 -k1,6866:25900760,24071351:190928 -k1,6866:29911126,24071351:190928 -k1,6866:32583029,24071351:0 -) -(1,6867:6630773,24912839:25952256,505283,134348 -g1,6866:7849087,24912839 -g1,6866:11985719,24912839 -g1,6866:15377862,24912839 -g1,6866:17587736,24912839 -g1,6866:18473127,24912839 -g1,6866:19950963,24912839 -g1,6866:20836354,24912839 -g1,6866:24670865,24912839 -k1,6867:32583029,24912839:5437525 -g1,6867:32583029,24912839 -) -(1,6869:6630773,25754327:25952256,513147,134348 -h1,6868:6630773,25754327:983040,0,0 -k1,6868:9041102,25754327:230602 -k1,6868:10655824,25754327:230602 -k1,6868:12019544,25754327:230602 -k1,6868:15241865,25754327:230602 -k1,6868:16287735,25754327:230602 -k1,6868:20494406,25754327:230602 -k1,6868:21376437,25754327:230603 -k1,6868:23628825,25754327:230602 -k1,6868:24526583,25754327:230602 -(1,6868:24526583,25754327:0,459977,115847 -r1,6937:25939984,25754327:1413401,575824,115847 -k1,6868:24526583,25754327:-1413401 -) -(1,6868:24526583,25754327:1413401,459977,115847 -k1,6868:24526583,25754327:3277 -h1,6868:25936707,25754327:0,411205,112570 -) -k1,6868:26344256,25754327:230602 -k1,6868:28430838,25754327:230602 -k1,6868:29312868,25754327:230602 -k1,6868:30700180,25754327:230602 -k1,6868:32583029,25754327:0 -) -(1,6869:6630773,26595815:25952256,505283,126483 -k1,6868:9363019,26595815:175687 -k1,6868:10221591,26595815:175687 -k1,6868:13590192,26595815:175687 -k1,6868:15950194,26595815:175687 -k1,6868:17322568,26595815:175687 -k1,6868:18646446,26595815:175687 -k1,6868:22008493,26595815:175687 -k1,6868:22800218,26595815:175687 -k1,6868:23994990,26595815:175687 -k1,6868:26141345,26595815:175687 -k1,6868:28185463,26595815:175687 -k1,6868:30388834,26595815:175687 -k1,6868:30920381,26595815:175687 -k1,6869:32583029,26595815:0 -) -(1,6869:6630773,27437303:25952256,513147,134348 -k1,6868:7896226,27437303:229329 -k1,6868:9693177,27437303:229330 -k1,6868:11079216,27437303:229329 -k1,6868:13865104,27437303:229329 -k1,6868:14745861,27437303:229329 -k1,6868:17447864,27437303:229330 -k1,6868:18438721,27437303:229329 -k1,6868:20403443,27437303:229329 -k1,6868:23372178,27437303:229330 -k1,6868:24260799,27437303:229329 -k1,6868:25509213,27437303:229329 -k1,6868:27392015,27437303:229329 -k1,6868:29010708,27437303:229330 -k1,6868:31116333,27437303:229329 -k1,6868:32583029,27437303:0 -) -(1,6869:6630773,28278791:25952256,513147,134348 -g1,6868:7639372,28278791 -g1,6868:8857686,28278791 -g1,6868:10592424,28278791 -g1,6868:12091232,28278791 -g1,6868:13481906,28278791 -g1,6868:14755270,28278791 -g1,6868:16254078,28278791 -g1,6868:17112599,28278791 -g1,6868:18330913,28278791 -g1,6868:22349580,28278791 -g1,6868:22349580,28278791 -k1,6869:32583029,28278791:10233449 -g1,6869:32583029,28278791 -) -v1,6871:6630773,29320179:0,393216,0 -(1,6937:6630773,45510161:25952256,16583198,196608 -g1,6937:6630773,45510161 -g1,6937:6630773,45510161 -g1,6937:6434165,45510161 -(1,6937:6434165,45510161:0,16583198,196608 -r1,6937:32779637,45510161:26345472,16779806,196608 -k1,6937:6434165,45510161:-26345472 -) -(1,6937:6434165,45510161:26345472,16583198,196608 -[1,6937:6630773,45510161:25952256,16386590,0 -(1,6873:6630773,29534089:25952256,410518,82312 -(1,6872:6630773,29534089:0,0,0 -g1,6872:6630773,29534089 -g1,6872:6630773,29534089 -g1,6872:6303093,29534089 -(1,6872:6303093,29534089:0,0,0 -) -g1,6872:6630773,29534089 -) -k1,6873:6630773,29534089:0 -g1,6873:9159939,29534089 -g1,6873:10108377,29534089 -g1,6873:11056815,29534089 -h1,6873:11689106,29534089:0,0,0 -k1,6873:32583030,29534089:20893924 -g1,6873:32583030,29534089 -) -(1,6874:6630773,30200267:25952256,410518,6290 -h1,6874:6630773,30200267:0,0,0 -h1,6874:7895356,30200267:0,0,0 -k1,6874:32583028,30200267:24687672 -g1,6874:32583028,30200267 -) -(1,6884:6630773,30866445:25952256,404226,107478 -(1,6876:6630773,30866445:0,0,0 -g1,6876:6630773,30866445 -g1,6876:6630773,30866445 -g1,6876:6303093,30866445 -(1,6876:6303093,30866445:0,0,0 -) -g1,6876:6630773,30866445 -) -g1,6884:7579210,30866445 -g1,6884:7895356,30866445 -g1,6884:8211502,30866445 -g1,6884:11372959,30866445 -g1,6884:13585979,30866445 -g1,6884:15798999,30866445 -g1,6884:16747436,30866445 -h1,6884:17379727,30866445:0,0,0 -k1,6884:32583029,30866445:15203302 -g1,6884:32583029,30866445 -) -(1,6884:6630773,31532623:25952256,404226,9436 -h1,6884:6630773,31532623:0,0,0 -g1,6884:7579210,31532623 -g1,6884:8211502,31532623 -g1,6884:8527648,31532623 -g1,6884:8843794,31532623 -g1,6884:9159940,31532623 -g1,6884:9476086,31532623 -g1,6884:9792232,31532623 -g1,6884:10108378,31532623 -g1,6884:11372961,31532623 -g1,6884:11689107,31532623 -g1,6884:12005253,31532623 -g1,6884:13585982,31532623 -g1,6884:13902128,31532623 -g1,6884:14218274,31532623 -g1,6884:14534420,31532623 -g1,6884:15799003,31532623 -g1,6884:16115149,31532623 -g1,6884:16747441,31532623 -g1,6884:17063587,31532623 -h1,6884:17379733,31532623:0,0,0 -k1,6884:32583029,31532623:15203296 -g1,6884:32583029,31532623 -) -(1,6884:6630773,32198801:25952256,404226,9436 -h1,6884:6630773,32198801:0,0,0 -g1,6884:7579210,32198801 -g1,6884:8211502,32198801 -g1,6884:8527648,32198801 -g1,6884:8843794,32198801 -g1,6884:9159940,32198801 -g1,6884:9476086,32198801 -g1,6884:9792232,32198801 -g1,6884:11372961,32198801 -g1,6884:11689107,32198801 -g1,6884:12005253,32198801 -g1,6884:12321399,32198801 -g1,6884:13585982,32198801 -g1,6884:13902128,32198801 -g1,6884:14218274,32198801 -g1,6884:14534420,32198801 -g1,6884:15799003,32198801 -g1,6884:16115149,32198801 -g1,6884:16747441,32198801 -g1,6884:17063587,32198801 -h1,6884:17379733,32198801:0,0,0 -k1,6884:32583029,32198801:15203296 -g1,6884:32583029,32198801 -) -(1,6884:6630773,32864979:25952256,404226,9436 -h1,6884:6630773,32864979:0,0,0 -g1,6884:7579210,32864979 -g1,6884:8211502,32864979 -g1,6884:8527648,32864979 -g1,6884:8843794,32864979 -g1,6884:9159940,32864979 -g1,6884:9476086,32864979 -g1,6884:9792232,32864979 -g1,6884:10108378,32864979 -g1,6884:11372961,32864979 -g1,6884:11689107,32864979 -g1,6884:12005253,32864979 -g1,6884:13585982,32864979 -g1,6884:13902128,32864979 -g1,6884:14218274,32864979 -g1,6884:14534420,32864979 -g1,6884:15799003,32864979 -g1,6884:16115149,32864979 -g1,6884:16747441,32864979 -g1,6884:17063587,32864979 -h1,6884:17379733,32864979:0,0,0 -k1,6884:32583029,32864979:15203296 -g1,6884:32583029,32864979 -) -(1,6884:6630773,33531157:25952256,404226,9436 -h1,6884:6630773,33531157:0,0,0 -g1,6884:7579210,33531157 -g1,6884:8211502,33531157 -g1,6884:8527648,33531157 -g1,6884:8843794,33531157 -g1,6884:9159940,33531157 -g1,6884:9476086,33531157 -g1,6884:9792232,33531157 -g1,6884:11372961,33531157 -g1,6884:11689107,33531157 -g1,6884:12005253,33531157 -g1,6884:12321399,33531157 -g1,6884:13585982,33531157 -g1,6884:13902128,33531157 -g1,6884:14218274,33531157 -g1,6884:14534420,33531157 -g1,6884:15799003,33531157 -g1,6884:16115149,33531157 -g1,6884:16747441,33531157 -g1,6884:17063587,33531157 -h1,6884:17379733,33531157:0,0,0 -k1,6884:32583029,33531157:15203296 -g1,6884:32583029,33531157 -) -(1,6884:6630773,34197335:25952256,404226,9436 -h1,6884:6630773,34197335:0,0,0 -g1,6884:7579210,34197335 -g1,6884:8211502,34197335 -g1,6884:8527648,34197335 -g1,6884:8843794,34197335 -g1,6884:9159940,34197335 -g1,6884:9476086,34197335 -g1,6884:9792232,34197335 -g1,6884:10108378,34197335 -g1,6884:11372961,34197335 -g1,6884:11689107,34197335 -g1,6884:12005253,34197335 -g1,6884:13585982,34197335 -g1,6884:13902128,34197335 -g1,6884:14218274,34197335 -g1,6884:14534420,34197335 -g1,6884:15799003,34197335 -g1,6884:16115149,34197335 -g1,6884:16747441,34197335 -g1,6884:17063587,34197335 -h1,6884:17379733,34197335:0,0,0 -k1,6884:32583029,34197335:15203296 -g1,6884:32583029,34197335 -) -(1,6884:6630773,34863513:25952256,404226,9436 -h1,6884:6630773,34863513:0,0,0 -g1,6884:7579210,34863513 -g1,6884:8211502,34863513 -g1,6884:8527648,34863513 -g1,6884:8843794,34863513 -g1,6884:9159940,34863513 -g1,6884:9476086,34863513 -g1,6884:9792232,34863513 -g1,6884:11372961,34863513 -g1,6884:11689107,34863513 -g1,6884:12005253,34863513 -g1,6884:12321399,34863513 -g1,6884:13585982,34863513 -g1,6884:13902128,34863513 -g1,6884:14218274,34863513 -g1,6884:14534420,34863513 -g1,6884:15799003,34863513 -g1,6884:16115149,34863513 -g1,6884:16747441,34863513 -g1,6884:17063587,34863513 -h1,6884:17379733,34863513:0,0,0 -k1,6884:32583029,34863513:15203296 -g1,6884:32583029,34863513 -) -(1,6886:6630773,36185051:25952256,410518,82312 -(1,6885:6630773,36185051:0,0,0 -g1,6885:6630773,36185051 -g1,6885:6630773,36185051 -g1,6885:6303093,36185051 -(1,6885:6303093,36185051:0,0,0 -) -g1,6885:6630773,36185051 -) -g1,6886:8527647,36185051 -g1,6886:9159939,36185051 -g1,6886:10108377,36185051 -g1,6886:11056815,36185051 -k1,6886:11056815,36185051:0 -h1,6886:12005252,36185051:0,0,0 -k1,6886:32583028,36185051:20577776 -g1,6886:32583028,36185051 -) -(1,6887:6630773,36851229:25952256,410518,6290 -h1,6887:6630773,36851229:0,0,0 -h1,6887:7895356,36851229:0,0,0 -k1,6887:32583028,36851229:24687672 -g1,6887:32583028,36851229 -) -(1,6897:6630773,37517407:25952256,404226,107478 -(1,6889:6630773,37517407:0,0,0 -g1,6889:6630773,37517407 -g1,6889:6630773,37517407 -g1,6889:6303093,37517407 -(1,6889:6303093,37517407:0,0,0 -) -g1,6889:6630773,37517407 -) -g1,6897:7579210,37517407 -g1,6897:7895356,37517407 -g1,6897:8211502,37517407 -g1,6897:11372959,37517407 -g1,6897:13585979,37517407 -g1,6897:15798999,37517407 -g1,6897:16747436,37517407 -h1,6897:17379727,37517407:0,0,0 -k1,6897:32583029,37517407:15203302 -g1,6897:32583029,37517407 -) -(1,6897:6630773,38183585:25952256,404226,9436 -h1,6897:6630773,38183585:0,0,0 -g1,6897:7579210,38183585 -g1,6897:8211502,38183585 -g1,6897:8527648,38183585 -g1,6897:8843794,38183585 -g1,6897:9159940,38183585 -g1,6897:9476086,38183585 -g1,6897:9792232,38183585 -g1,6897:10108378,38183585 -g1,6897:11372961,38183585 -g1,6897:11689107,38183585 -g1,6897:12005253,38183585 -g1,6897:12321399,38183585 -g1,6897:13585982,38183585 -g1,6897:13902128,38183585 -g1,6897:14218274,38183585 -g1,6897:14534420,38183585 -g1,6897:15799003,38183585 -g1,6897:16115149,38183585 -g1,6897:16747441,38183585 -g1,6897:17063587,38183585 -h1,6897:17379733,38183585:0,0,0 -k1,6897:32583029,38183585:15203296 -g1,6897:32583029,38183585 -) -(1,6897:6630773,38849763:25952256,404226,9436 -h1,6897:6630773,38849763:0,0,0 -g1,6897:7579210,38849763 -g1,6897:8211502,38849763 -g1,6897:8527648,38849763 -g1,6897:8843794,38849763 -g1,6897:9159940,38849763 -g1,6897:9476086,38849763 -g1,6897:9792232,38849763 -g1,6897:11372961,38849763 -g1,6897:11689107,38849763 -g1,6897:12005253,38849763 -g1,6897:12321399,38849763 -g1,6897:13585982,38849763 -g1,6897:13902128,38849763 -g1,6897:14218274,38849763 -g1,6897:14534420,38849763 -g1,6897:15799003,38849763 -g1,6897:16115149,38849763 -g1,6897:16747441,38849763 -g1,6897:17063587,38849763 -h1,6897:17379733,38849763:0,0,0 -k1,6897:32583029,38849763:15203296 -g1,6897:32583029,38849763 -) -(1,6897:6630773,39515941:25952256,404226,9436 -h1,6897:6630773,39515941:0,0,0 -g1,6897:7579210,39515941 -g1,6897:8211502,39515941 -g1,6897:8527648,39515941 -g1,6897:8843794,39515941 -g1,6897:9159940,39515941 -g1,6897:9476086,39515941 -g1,6897:9792232,39515941 -g1,6897:10108378,39515941 -g1,6897:11372961,39515941 -g1,6897:11689107,39515941 -g1,6897:12005253,39515941 -g1,6897:12321399,39515941 -g1,6897:13585982,39515941 -g1,6897:13902128,39515941 -g1,6897:14218274,39515941 -g1,6897:14534420,39515941 -g1,6897:15799003,39515941 -g1,6897:16115149,39515941 -g1,6897:16747441,39515941 -g1,6897:17063587,39515941 -h1,6897:17379733,39515941:0,0,0 -k1,6897:32583029,39515941:15203296 -g1,6897:32583029,39515941 -) -(1,6897:6630773,40182119:25952256,404226,9436 -h1,6897:6630773,40182119:0,0,0 -g1,6897:7579210,40182119 -g1,6897:8211502,40182119 -g1,6897:8527648,40182119 -g1,6897:8843794,40182119 -g1,6897:9159940,40182119 -g1,6897:9476086,40182119 -g1,6897:9792232,40182119 -g1,6897:11372961,40182119 -g1,6897:11689107,40182119 -g1,6897:12005253,40182119 -g1,6897:12321399,40182119 -g1,6897:13585982,40182119 -g1,6897:13902128,40182119 -g1,6897:14218274,40182119 -g1,6897:14534420,40182119 -g1,6897:15799003,40182119 -g1,6897:16115149,40182119 -g1,6897:16747441,40182119 -g1,6897:17063587,40182119 -h1,6897:17379733,40182119:0,0,0 -k1,6897:32583029,40182119:15203296 -g1,6897:32583029,40182119 -) -(1,6897:6630773,40848297:25952256,404226,9436 -h1,6897:6630773,40848297:0,0,0 -g1,6897:7579210,40848297 -g1,6897:8211502,40848297 -g1,6897:8527648,40848297 -g1,6897:8843794,40848297 -g1,6897:9159940,40848297 -g1,6897:9476086,40848297 -g1,6897:9792232,40848297 -g1,6897:10108378,40848297 -g1,6897:11372961,40848297 -g1,6897:11689107,40848297 -g1,6897:12005253,40848297 -g1,6897:12321399,40848297 -g1,6897:13585982,40848297 -g1,6897:13902128,40848297 -g1,6897:14218274,40848297 -g1,6897:14534420,40848297 -g1,6897:15799003,40848297 -g1,6897:16115149,40848297 -g1,6897:16747441,40848297 -g1,6897:17063587,40848297 -h1,6897:17379733,40848297:0,0,0 -k1,6897:32583029,40848297:15203296 -g1,6897:32583029,40848297 -) -(1,6897:6630773,41514475:25952256,404226,9436 -h1,6897:6630773,41514475:0,0,0 -g1,6897:7579210,41514475 -g1,6897:8211502,41514475 -g1,6897:8527648,41514475 -g1,6897:8843794,41514475 -g1,6897:9159940,41514475 -g1,6897:9476086,41514475 -g1,6897:9792232,41514475 -g1,6897:11372961,41514475 -g1,6897:11689107,41514475 -g1,6897:12005253,41514475 -g1,6897:12321399,41514475 -g1,6897:13585982,41514475 -g1,6897:13902128,41514475 -g1,6897:14218274,41514475 -g1,6897:14534420,41514475 -g1,6897:15799003,41514475 -g1,6897:16115149,41514475 -g1,6897:16747441,41514475 -g1,6897:17063587,41514475 -h1,6897:17379733,41514475:0,0,0 -k1,6897:32583029,41514475:15203296 -g1,6897:32583029,41514475 -) -(1,6899:6630773,42836013:25952256,410518,107478 -(1,6898:6630773,42836013:0,0,0 -g1,6898:6630773,42836013 -g1,6898:6630773,42836013 -g1,6898:6303093,42836013 -(1,6898:6303093,42836013:0,0,0 -) -g1,6898:6630773,42836013 -) -g1,6899:12005249,42836013 -g1,6899:12953687,42836013 -g1,6899:14850562,42836013 -h1,6899:15798999,42836013:0,0,0 -k1,6899:32583029,42836013:16784030 -g1,6899:32583029,42836013 -) -(1,6900:6630773,43502191:25952256,410518,6290 -h1,6900:6630773,43502191:0,0,0 -h1,6900:7895356,43502191:0,0,0 -k1,6900:32583028,43502191:24687672 -g1,6900:32583028,43502191 -) -(1,6910:6630773,44168369:25952256,404226,107478 -(1,6902:6630773,44168369:0,0,0 -g1,6902:6630773,44168369 -g1,6902:6630773,44168369 -g1,6902:6303093,44168369 -(1,6902:6303093,44168369:0,0,0 -) -g1,6902:6630773,44168369 -) -g1,6910:7579210,44168369 -g1,6910:7895356,44168369 -g1,6910:8211502,44168369 -g1,6910:11372959,44168369 -g1,6910:13585979,44168369 -g1,6910:15798999,44168369 -g1,6910:16747436,44168369 -h1,6910:17379727,44168369:0,0,0 -k1,6910:32583029,44168369:15203302 -g1,6910:32583029,44168369 -) -(1,6910:6630773,44834547:25952256,404226,9436 -h1,6910:6630773,44834547:0,0,0 -g1,6910:7579210,44834547 -g1,6910:8211502,44834547 -g1,6910:8527648,44834547 -g1,6910:8843794,44834547 -g1,6910:9159940,44834547 -g1,6910:9476086,44834547 -g1,6910:9792232,44834547 -g1,6910:10108378,44834547 -g1,6910:11372961,44834547 -g1,6910:11689107,44834547 -g1,6910:12005253,44834547 -g1,6910:12321399,44834547 -g1,6910:12637545,44834547 -g1,6910:13585982,44834547 -g1,6910:13902128,44834547 -g1,6910:14218274,44834547 -g1,6910:14534420,44834547 -g1,6910:15799003,44834547 -g1,6910:16115149,44834547 -g1,6910:16747441,44834547 -g1,6910:17063587,44834547 -h1,6910:17379733,44834547:0,0,0 -k1,6910:32583029,44834547:15203296 -g1,6910:32583029,44834547 -) -(1,6910:6630773,45500725:25952256,404226,9436 -h1,6910:6630773,45500725:0,0,0 -g1,6910:7579210,45500725 -g1,6910:8211502,45500725 -g1,6910:8527648,45500725 -g1,6910:8843794,45500725 -g1,6910:9159940,45500725 -g1,6910:9476086,45500725 -g1,6910:9792232,45500725 -g1,6910:11372961,45500725 -g1,6910:11689107,45500725 -g1,6910:12005253,45500725 -g1,6910:12321399,45500725 -g1,6910:12637545,45500725 -g1,6910:13585982,45500725 -g1,6910:13902128,45500725 -g1,6910:14218274,45500725 -g1,6910:14534420,45500725 -g1,6910:15799003,45500725 -g1,6910:16115149,45500725 -g1,6910:16747441,45500725 -g1,6910:17063587,45500725 -h1,6910:17379733,45500725:0,0,0 -k1,6910:32583029,45500725:15203296 -g1,6910:32583029,45500725 -) -] -) -g1,6937:32583029,45510161 -g1,6937:6630773,45510161 -g1,6937:6630773,45510161 -g1,6937:32583029,45510161 -g1,6937:32583029,45510161 -) -] -(1,6937:32583029,45706769:0,0,0 -g1,6937:32583029,45706769 -) -) -] -(1,6937:6630773,47279633:25952256,0,0 -h1,6937:6630773,47279633:25952256,0,0 -) -] -(1,6937:4262630,4025873:0,0,0 -[1,6937:-473656,4025873:0,0,0 -(1,6937:-473656,-710413:0,0,0 -(1,6937:-473656,-710413:0,0,0 -g1,6937:-473656,-710413 -) -g1,6937:-473656,-710413 -) -] -) -] -!29711 -}114 -Input:914:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:915:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:916:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:917:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:918:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:919:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:920:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:921:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:922:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:923:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:924:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:925:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1128 -{115 -[1,6988:4262630,47279633:28320399,43253760,0 -(1,6988:4262630,4025873:0,0,0 -[1,6988:-473656,4025873:0,0,0 -(1,6988:-473656,-710413:0,0,0 -(1,6988:-473656,-644877:0,0,0 -k1,6988:-473656,-644877:-65536 +[1,6169:3078558,4812305:0,0,0 +(1,6169:3078558,49800853:0,16384,2228224 +k1,6169:1358238,49800853:-1720320 +(1,6148:1358238,49800853:1720320,16384,2228224 +(1,6148:1358238,49800853:1179648,16384,0 +r1,6169:2537886,49800853:1179648,16384,0 ) -(1,6988:-473656,4736287:0,0,0 -k1,6988:-473656,4736287:5209943 +g1,6148:3062174,49800853 +(1,6148:3062174,52029077:16384,1703936,0 +[1,6148:3062174,52029077:25952256,1703936,0 +(1,6148:3062174,51504789:25952256,1179648,0 +(1,6148:3062174,51504789:16384,1179648,0 +r1,6169:3078558,51504789:16384,1179648,0 ) -g1,6988:-473656,-710413 +k1,6148:29014430,51504789:25935872 +g1,6148:29014430,51504789 ) ] ) -[1,6988:6630773,47279633:25952256,43253760,0 -[1,6988:6630773,4812305:25952256,786432,0 -(1,6988:6630773,4812305:25952256,505283,11795 -(1,6988:6630773,4812305:25952256,505283,11795 -g1,6988:3078558,4812305 -[1,6988:3078558,4812305:0,0,0 -(1,6988:3078558,2439708:0,1703936,0 -k1,6988:1358238,2439708:-1720320 -(1,5950:1358238,2439708:1720320,1703936,0 -(1,5950:1358238,2439708:1179648,16384,0 -r1,6988:2537886,2439708:1179648,16384,0 -) -g1,5950:3062174,2439708 -(1,5950:3062174,2439708:16384,1703936,0 -[1,5950:3062174,2439708:25952256,1703936,0 -(1,5950:3062174,1915420:25952256,1179648,0 -(1,5950:3062174,1915420:16384,1179648,0 -r1,6988:3078558,1915420:16384,1179648,0 ) -k1,5950:29014430,1915420:25935872 -g1,5950:29014430,1915420 ) ] +[1,6169:3078558,4812305:0,0,0 +(1,6169:3078558,49800853:0,16384,2228224 +g1,6169:29030814,49800853 +g1,6169:36135244,49800853 +(1,6148:36135244,49800853:1720320,16384,2228224 +(1,6148:36135244,52029077:16384,1703936,0 +[1,6148:36135244,52029077:25952256,1703936,0 +(1,6148:36135244,51504789:25952256,1179648,0 +(1,6148:36135244,51504789:16384,1179648,0 +r1,6169:36151628,51504789:16384,1179648,0 ) -) +k1,6148:62087500,51504789:25935872 +g1,6148:62087500,51504789 ) ] -[1,6988:3078558,4812305:0,0,0 -(1,6988:3078558,2439708:0,1703936,0 -g1,6988:29030814,2439708 -g1,6988:36135244,2439708 -(1,5950:36135244,2439708:1720320,1703936,0 -(1,5950:36135244,2439708:16384,1703936,0 -[1,5950:36135244,2439708:25952256,1703936,0 -(1,5950:36135244,1915420:25952256,1179648,0 -(1,5950:36135244,1915420:16384,1179648,0 -r1,6988:36151628,1915420:16384,1179648,0 ) -k1,5950:62087500,1915420:25935872 -g1,5950:62087500,1915420 +g1,6148:36675916,49800853 +(1,6148:36675916,49800853:1179648,16384,0 +r1,6169:37855564,49800853:1179648,16384,0 +) +) +k1,6169:3078556,49800853:-34777008 ) ] +g1,6169:6630773,4812305 ) -g1,5950:36675916,2439708 -(1,5950:36675916,2439708:1179648,16384,0 -r1,6988:37855564,2439708:1179648,16384,0 ) +] +[1,6169:6630773,45706769:25952256,40108032,0 +(1,6169:6630773,45706769:25952256,40108032,0 +(1,6169:6630773,45706769:0,0,0 +g1,6169:6630773,45706769 +) +[1,6169:6630773,45706769:25952256,40108032,0 +[1,6148:6630773,11783266:25952256,6184529,0 +(1,6148:6630773,6619002:25952256,1151337,0 +h1,6148:6630773,6619002:0,0,0 +k1,6148:20096848,6619002:12486181 +k1,6148:32583029,6619002:12486181 ) -k1,6988:3078556,2439708:-34777008 +(1,6148:6630773,7366122:25952256,32768,229376 +(1,6148:6630773,7366122:0,32768,229376 +(1,6148:6630773,7366122:5505024,32768,229376 +r1,6169:12135797,7366122:5505024,262144,229376 ) -] -[1,6988:3078558,4812305:0,0,0 -(1,6988:3078558,49800853:0,16384,2228224 -k1,6988:1358238,49800853:-1720320 -(1,5950:1358238,49800853:1720320,16384,2228224 -(1,5950:1358238,49800853:1179648,16384,0 -r1,6988:2537886,49800853:1179648,16384,0 +k1,6148:6630773,7366122:-5505024 ) -g1,5950:3062174,49800853 -(1,5950:3062174,52029077:16384,1703936,0 -[1,5950:3062174,52029077:25952256,1703936,0 -(1,5950:3062174,51504789:25952256,1179648,0 -(1,5950:3062174,51504789:16384,1179648,0 -r1,6988:3078558,51504789:16384,1179648,0 -) -k1,5950:29014430,51504789:25935872 -g1,5950:29014430,51504789 -) -] -) -) -) -] -[1,6988:3078558,4812305:0,0,0 -(1,6988:3078558,49800853:0,16384,2228224 -g1,6988:29030814,49800853 -g1,6988:36135244,49800853 -(1,5950:36135244,49800853:1720320,16384,2228224 -(1,5950:36135244,52029077:16384,1703936,0 -[1,5950:36135244,52029077:25952256,1703936,0 -(1,5950:36135244,51504789:25952256,1179648,0 -(1,5950:36135244,51504789:16384,1179648,0 -r1,6988:36151628,51504789:16384,1179648,0 -) -k1,5950:62087500,51504789:25935872 -g1,5950:62087500,51504789 -) -] -) -g1,5950:36675916,49800853 -(1,5950:36675916,49800853:1179648,16384,0 -r1,6988:37855564,49800853:1179648,16384,0 -) -) -k1,6988:3078556,49800853:-34777008 -) -] -g1,6988:6630773,4812305 -k1,6988:24358918,4812305:16532768 -g1,6988:25981589,4812305 -g1,6988:26804065,4812305 -g1,6988:30302376,4812305 -) -) -] -[1,6988:6630773,45706769:25952256,40108032,0 -(1,6988:6630773,45706769:25952256,40108032,0 -(1,6988:6630773,45706769:0,0,0 -g1,6988:6630773,45706769 -) -[1,6988:6630773,45706769:25952256,40108032,0 -v1,6937:6630773,6254097:0,393216,0 -(1,6937:6630773,21771609:25952256,15910728,196608 -g1,6937:6630773,21771609 -g1,6937:6630773,21771609 -g1,6937:6434165,21771609 -(1,6937:6434165,21771609:0,15910728,196608 -r1,6988:32779637,21771609:26345472,16107336,196608 -k1,6937:6434165,21771609:-26345472 -) -(1,6937:6434165,21771609:26345472,15910728,196608 -[1,6937:6630773,21771609:25952256,15714120,0 -(1,6910:6630773,6461715:25952256,404226,9436 -h1,6910:6630773,6461715:0,0,0 -g1,6910:7579210,6461715 -g1,6910:8211502,6461715 -g1,6910:8527648,6461715 -g1,6910:8843794,6461715 -g1,6910:9159940,6461715 -g1,6910:9476086,6461715 -g1,6910:9792232,6461715 -g1,6910:10108378,6461715 -g1,6910:11372961,6461715 -g1,6910:11689107,6461715 -g1,6910:12005253,6461715 -g1,6910:12321399,6461715 -g1,6910:12637545,6461715 -g1,6910:13585982,6461715 -g1,6910:13902128,6461715 -g1,6910:14218274,6461715 -g1,6910:14534420,6461715 -g1,6910:15799003,6461715 -g1,6910:16115149,6461715 -g1,6910:16747441,6461715 -g1,6910:17063587,6461715 -h1,6910:17379733,6461715:0,0,0 -k1,6910:32583029,6461715:15203296 -g1,6910:32583029,6461715 -) -(1,6910:6630773,7127893:25952256,404226,9436 -h1,6910:6630773,7127893:0,0,0 -g1,6910:7579210,7127893 -g1,6910:8211502,7127893 -g1,6910:8527648,7127893 -g1,6910:8843794,7127893 -g1,6910:9159940,7127893 -g1,6910:9476086,7127893 -g1,6910:9792232,7127893 -g1,6910:11372961,7127893 -g1,6910:11689107,7127893 -g1,6910:12005253,7127893 -g1,6910:12321399,7127893 -g1,6910:12637545,7127893 -g1,6910:13585982,7127893 -g1,6910:13902128,7127893 -g1,6910:14218274,7127893 -g1,6910:14534420,7127893 -g1,6910:15799003,7127893 -g1,6910:16115149,7127893 -g1,6910:16747441,7127893 -g1,6910:17063587,7127893 -h1,6910:17379733,7127893:0,0,0 -k1,6910:32583029,7127893:15203296 -g1,6910:32583029,7127893 -) -(1,6910:6630773,7794071:25952256,404226,9436 -h1,6910:6630773,7794071:0,0,0 -g1,6910:7579210,7794071 -g1,6910:8211502,7794071 -g1,6910:8527648,7794071 -g1,6910:8843794,7794071 -g1,6910:9159940,7794071 -g1,6910:9476086,7794071 -g1,6910:9792232,7794071 -g1,6910:10108378,7794071 -g1,6910:11372961,7794071 -g1,6910:11689107,7794071 -g1,6910:12005253,7794071 -g1,6910:12321399,7794071 -g1,6910:12637545,7794071 -g1,6910:13585982,7794071 -g1,6910:13902128,7794071 -g1,6910:14218274,7794071 -g1,6910:14534420,7794071 -g1,6910:15799003,7794071 -g1,6910:16115149,7794071 -g1,6910:16747441,7794071 -g1,6910:17063587,7794071 -h1,6910:17379733,7794071:0,0,0 -k1,6910:32583029,7794071:15203296 -g1,6910:32583029,7794071 -) -(1,6910:6630773,8460249:25952256,404226,9436 -h1,6910:6630773,8460249:0,0,0 -g1,6910:7579210,8460249 -g1,6910:8211502,8460249 -g1,6910:8527648,8460249 -g1,6910:8843794,8460249 -g1,6910:9159940,8460249 -g1,6910:9476086,8460249 -g1,6910:9792232,8460249 -g1,6910:11372961,8460249 -g1,6910:11689107,8460249 -g1,6910:12005253,8460249 -g1,6910:12321399,8460249 -g1,6910:12637545,8460249 -g1,6910:13585982,8460249 -g1,6910:13902128,8460249 -g1,6910:14218274,8460249 -g1,6910:14534420,8460249 -g1,6910:15799003,8460249 -g1,6910:16115149,8460249 -g1,6910:16747441,8460249 -g1,6910:17063587,8460249 -h1,6910:17379733,8460249:0,0,0 -k1,6910:32583029,8460249:15203296 -g1,6910:32583029,8460249 -) -(1,6912:6630773,9781787:25952256,410518,82312 -(1,6911:6630773,9781787:0,0,0 -g1,6911:6630773,9781787 -g1,6911:6630773,9781787 -g1,6911:6303093,9781787 -(1,6911:6303093,9781787:0,0,0 -) -g1,6911:6630773,9781787 -) -k1,6912:6630773,9781787:0 -g1,6912:9159939,9781787 -g1,6912:10108377,9781787 -g1,6912:11056815,9781787 -g1,6912:13585981,9781787 -h1,6912:14218273,9781787:0,0,0 -k1,6912:32583029,9781787:18364756 -g1,6912:32583029,9781787 -) -(1,6913:6630773,10447965:25952256,410518,6290 -h1,6913:6630773,10447965:0,0,0 -h1,6913:7895356,10447965:0,0,0 -k1,6913:32583028,10447965:24687672 -g1,6913:32583028,10447965 -) -(1,6923:6630773,11114143:25952256,404226,107478 -(1,6915:6630773,11114143:0,0,0 -g1,6915:6630773,11114143 -g1,6915:6630773,11114143 -g1,6915:6303093,11114143 -(1,6915:6303093,11114143:0,0,0 -) -g1,6915:6630773,11114143 -) -g1,6923:7579210,11114143 -g1,6923:7895356,11114143 -g1,6923:8211502,11114143 -g1,6923:11372959,11114143 -g1,6923:13585979,11114143 -g1,6923:15798999,11114143 -g1,6923:16747436,11114143 -h1,6923:17379727,11114143:0,0,0 -k1,6923:32583029,11114143:15203302 -g1,6923:32583029,11114143 -) -(1,6923:6630773,11780321:25952256,404226,9436 -h1,6923:6630773,11780321:0,0,0 -g1,6923:7579210,11780321 -g1,6923:8211502,11780321 -g1,6923:8527648,11780321 -g1,6923:8843794,11780321 -g1,6923:9159940,11780321 -g1,6923:9476086,11780321 -g1,6923:9792232,11780321 -g1,6923:10108378,11780321 -g1,6923:11372961,11780321 -g1,6923:11689107,11780321 -g1,6923:12005253,11780321 -g1,6923:12321399,11780321 -g1,6923:12637545,11780321 -g1,6923:12953691,11780321 -g1,6923:13585983,11780321 -g1,6923:13902129,11780321 -g1,6923:14218275,11780321 -g1,6923:14534421,11780321 -g1,6923:15799004,11780321 -g1,6923:16115150,11780321 -g1,6923:16747442,11780321 -g1,6923:17063588,11780321 -h1,6923:17379734,11780321:0,0,0 -k1,6923:32583029,11780321:15203295 -g1,6923:32583029,11780321 -) -(1,6923:6630773,12446499:25952256,404226,9436 -h1,6923:6630773,12446499:0,0,0 -g1,6923:7579210,12446499 -g1,6923:8211502,12446499 -g1,6923:8527648,12446499 -g1,6923:8843794,12446499 -g1,6923:9159940,12446499 -g1,6923:9476086,12446499 -g1,6923:9792232,12446499 -g1,6923:11372961,12446499 -g1,6923:11689107,12446499 -g1,6923:12005253,12446499 -g1,6923:12321399,12446499 -g1,6923:12637545,12446499 -g1,6923:13585982,12446499 -g1,6923:13902128,12446499 -g1,6923:14218274,12446499 -g1,6923:14534420,12446499 -g1,6923:15799003,12446499 -g1,6923:16115149,12446499 -g1,6923:16747441,12446499 -g1,6923:17063587,12446499 -h1,6923:17379733,12446499:0,0,0 -k1,6923:32583029,12446499:15203296 -g1,6923:32583029,12446499 -) -(1,6923:6630773,13112677:25952256,404226,9436 -h1,6923:6630773,13112677:0,0,0 -g1,6923:7579210,13112677 -g1,6923:8211502,13112677 -g1,6923:8527648,13112677 -g1,6923:8843794,13112677 -g1,6923:9159940,13112677 -g1,6923:9476086,13112677 -g1,6923:9792232,13112677 -g1,6923:10108378,13112677 -g1,6923:11372961,13112677 -g1,6923:11689107,13112677 -g1,6923:12005253,13112677 -g1,6923:12321399,13112677 -g1,6923:12637545,13112677 -g1,6923:13585982,13112677 -g1,6923:13902128,13112677 -g1,6923:14218274,13112677 -g1,6923:14534420,13112677 -g1,6923:15799003,13112677 -g1,6923:16115149,13112677 -g1,6923:16747441,13112677 -g1,6923:17063587,13112677 -h1,6923:17379733,13112677:0,0,0 -k1,6923:32583029,13112677:15203296 -g1,6923:32583029,13112677 -) -(1,6923:6630773,13778855:25952256,404226,9436 -h1,6923:6630773,13778855:0,0,0 -g1,6923:7579210,13778855 -g1,6923:8211502,13778855 -g1,6923:8527648,13778855 -g1,6923:8843794,13778855 -g1,6923:9159940,13778855 -g1,6923:9476086,13778855 -g1,6923:9792232,13778855 -g1,6923:11372961,13778855 -g1,6923:11689107,13778855 -g1,6923:12005253,13778855 -g1,6923:12321399,13778855 -g1,6923:12637545,13778855 -g1,6923:13585982,13778855 -g1,6923:13902128,13778855 -g1,6923:14218274,13778855 -g1,6923:14534420,13778855 -g1,6923:15799003,13778855 -g1,6923:16115149,13778855 -g1,6923:16747441,13778855 -g1,6923:17063587,13778855 -h1,6923:17379733,13778855:0,0,0 -k1,6923:32583029,13778855:15203296 -g1,6923:32583029,13778855 -) -(1,6923:6630773,14445033:25952256,404226,9436 -h1,6923:6630773,14445033:0,0,0 -g1,6923:7579210,14445033 -g1,6923:8211502,14445033 -g1,6923:8527648,14445033 -g1,6923:8843794,14445033 -g1,6923:9159940,14445033 -g1,6923:9476086,14445033 -g1,6923:9792232,14445033 -g1,6923:10108378,14445033 -g1,6923:11372961,14445033 -g1,6923:11689107,14445033 -g1,6923:12005253,14445033 -g1,6923:12321399,14445033 -g1,6923:12637545,14445033 -g1,6923:13585982,14445033 -g1,6923:13902128,14445033 -g1,6923:14218274,14445033 -g1,6923:14534420,14445033 -g1,6923:15799003,14445033 -g1,6923:16115149,14445033 -g1,6923:16747441,14445033 -g1,6923:17063587,14445033 -h1,6923:17379733,14445033:0,0,0 -k1,6923:32583029,14445033:15203296 -g1,6923:32583029,14445033 -) -(1,6923:6630773,15111211:25952256,404226,9436 -h1,6923:6630773,15111211:0,0,0 -g1,6923:7579210,15111211 -g1,6923:8211502,15111211 -g1,6923:8527648,15111211 -g1,6923:8843794,15111211 -g1,6923:9159940,15111211 -g1,6923:9476086,15111211 -g1,6923:9792232,15111211 -g1,6923:11372961,15111211 -g1,6923:11689107,15111211 -g1,6923:12005253,15111211 -g1,6923:12321399,15111211 -g1,6923:12637545,15111211 -g1,6923:13585982,15111211 -g1,6923:13902128,15111211 -g1,6923:14218274,15111211 -g1,6923:14534420,15111211 -g1,6923:15799003,15111211 -g1,6923:16115149,15111211 -g1,6923:16747441,15111211 -g1,6923:17063587,15111211 -h1,6923:17379733,15111211:0,0,0 -k1,6923:32583029,15111211:15203296 -g1,6923:32583029,15111211 -) -(1,6925:6630773,16432749:25952256,410518,82312 -(1,6924:6630773,16432749:0,0,0 -g1,6924:6630773,16432749 -g1,6924:6630773,16432749 -g1,6924:6303093,16432749 -(1,6924:6303093,16432749:0,0,0 -) -g1,6924:6630773,16432749 -) -k1,6925:6630773,16432749:0 -g1,6925:9792231,16432749 -g1,6925:10740669,16432749 -g1,6925:11689107,16432749 -g1,6925:14218273,16432749 -h1,6925:14850565,16432749:0,0,0 -k1,6925:32583029,16432749:17732464 -g1,6925:32583029,16432749 -) -(1,6926:6630773,17098927:25952256,410518,6290 -h1,6926:6630773,17098927:0,0,0 -h1,6926:7895356,17098927:0,0,0 -k1,6926:32583028,17098927:24687672 -g1,6926:32583028,17098927 -) -(1,6936:6630773,17765105:25952256,404226,107478 -(1,6928:6630773,17765105:0,0,0 -g1,6928:6630773,17765105 -g1,6928:6630773,17765105 -g1,6928:6303093,17765105 -(1,6928:6303093,17765105:0,0,0 -) -g1,6928:6630773,17765105 -) -g1,6936:7579210,17765105 -g1,6936:7895356,17765105 -g1,6936:8211502,17765105 -g1,6936:11372959,17765105 -g1,6936:13585979,17765105 -g1,6936:15798999,17765105 -g1,6936:16747436,17765105 -h1,6936:17379727,17765105:0,0,0 -k1,6936:32583029,17765105:15203302 -g1,6936:32583029,17765105 -) -(1,6936:6630773,18431283:25952256,404226,9436 -h1,6936:6630773,18431283:0,0,0 -g1,6936:7579210,18431283 -g1,6936:8211502,18431283 -g1,6936:8527648,18431283 -g1,6936:8843794,18431283 -g1,6936:9159940,18431283 -g1,6936:9476086,18431283 -g1,6936:9792232,18431283 -g1,6936:10108378,18431283 -g1,6936:11372961,18431283 -g1,6936:11689107,18431283 -g1,6936:12005253,18431283 -g1,6936:12321399,18431283 -g1,6936:12637545,18431283 -g1,6936:12953691,18431283 -g1,6936:13585983,18431283 -g1,6936:13902129,18431283 -g1,6936:14218275,18431283 -g1,6936:14534421,18431283 -g1,6936:15799004,18431283 -g1,6936:16115150,18431283 -g1,6936:16747442,18431283 -g1,6936:17063588,18431283 -h1,6936:17379734,18431283:0,0,0 -k1,6936:32583029,18431283:15203295 -g1,6936:32583029,18431283 -) -(1,6936:6630773,19097461:25952256,404226,9436 -h1,6936:6630773,19097461:0,0,0 -g1,6936:7579210,19097461 -g1,6936:8211502,19097461 -g1,6936:8527648,19097461 -g1,6936:8843794,19097461 -g1,6936:9159940,19097461 -g1,6936:9476086,19097461 -g1,6936:9792232,19097461 -g1,6936:11372961,19097461 -g1,6936:11689107,19097461 -g1,6936:12005253,19097461 -g1,6936:12321399,19097461 -g1,6936:12637545,19097461 -g1,6936:13585982,19097461 -g1,6936:13902128,19097461 -g1,6936:14218274,19097461 -g1,6936:14534420,19097461 -g1,6936:15799003,19097461 -g1,6936:16115149,19097461 -g1,6936:16747441,19097461 -g1,6936:17063587,19097461 -h1,6936:17379733,19097461:0,0,0 -k1,6936:32583029,19097461:15203296 -g1,6936:32583029,19097461 -) -(1,6936:6630773,19763639:25952256,404226,9436 -h1,6936:6630773,19763639:0,0,0 -g1,6936:7579210,19763639 -g1,6936:8211502,19763639 -g1,6936:8527648,19763639 -g1,6936:8843794,19763639 -g1,6936:9159940,19763639 -g1,6936:9476086,19763639 -g1,6936:9792232,19763639 -g1,6936:10108378,19763639 -g1,6936:11372961,19763639 -g1,6936:11689107,19763639 -g1,6936:12005253,19763639 -g1,6936:12321399,19763639 -g1,6936:12637545,19763639 -g1,6936:12953691,19763639 -g1,6936:13585983,19763639 -g1,6936:13902129,19763639 -g1,6936:14218275,19763639 -g1,6936:14534421,19763639 -g1,6936:15799004,19763639 -g1,6936:16115150,19763639 -g1,6936:16747442,19763639 -g1,6936:17063588,19763639 -h1,6936:17379734,19763639:0,0,0 -k1,6936:32583029,19763639:15203295 -g1,6936:32583029,19763639 -) -(1,6936:6630773,20429817:25952256,404226,9436 -h1,6936:6630773,20429817:0,0,0 -g1,6936:7579210,20429817 -g1,6936:8211502,20429817 -g1,6936:8527648,20429817 -g1,6936:8843794,20429817 -g1,6936:9159940,20429817 -g1,6936:9476086,20429817 -g1,6936:9792232,20429817 -g1,6936:11372961,20429817 -g1,6936:11689107,20429817 -g1,6936:12005253,20429817 -g1,6936:12321399,20429817 -g1,6936:12637545,20429817 -g1,6936:12953691,20429817 -g1,6936:13585983,20429817 -g1,6936:13902129,20429817 -g1,6936:14218275,20429817 -g1,6936:14534421,20429817 -g1,6936:15799004,20429817 -g1,6936:16115150,20429817 -g1,6936:16747442,20429817 -g1,6936:17063588,20429817 -h1,6936:17379734,20429817:0,0,0 -k1,6936:32583029,20429817:15203295 -g1,6936:32583029,20429817 -) -(1,6936:6630773,21095995:25952256,404226,9436 -h1,6936:6630773,21095995:0,0,0 -g1,6936:7579210,21095995 -g1,6936:8211502,21095995 -g1,6936:8527648,21095995 -g1,6936:8843794,21095995 -g1,6936:9159940,21095995 -g1,6936:9476086,21095995 -g1,6936:9792232,21095995 -g1,6936:10108378,21095995 -g1,6936:11372961,21095995 -g1,6936:11689107,21095995 -g1,6936:12005253,21095995 -g1,6936:12321399,21095995 -g1,6936:12637545,21095995 -g1,6936:12953691,21095995 -g1,6936:13585983,21095995 -g1,6936:13902129,21095995 -g1,6936:14218275,21095995 -g1,6936:14534421,21095995 -g1,6936:15799004,21095995 -g1,6936:16115150,21095995 -g1,6936:16747442,21095995 -g1,6936:17063588,21095995 -h1,6936:17379734,21095995:0,0,0 -k1,6936:32583029,21095995:15203295 -g1,6936:32583029,21095995 -) -(1,6936:6630773,21762173:25952256,404226,9436 -h1,6936:6630773,21762173:0,0,0 -g1,6936:7579210,21762173 -g1,6936:8211502,21762173 -g1,6936:8527648,21762173 -g1,6936:8843794,21762173 -g1,6936:9159940,21762173 -g1,6936:9476086,21762173 -g1,6936:9792232,21762173 -g1,6936:11372961,21762173 -g1,6936:11689107,21762173 -g1,6936:12005253,21762173 -g1,6936:12321399,21762173 -g1,6936:12637545,21762173 -g1,6936:12953691,21762173 -g1,6936:13585983,21762173 -g1,6936:13902129,21762173 -g1,6936:14218275,21762173 -g1,6936:14534421,21762173 -g1,6936:15799004,21762173 -g1,6936:16115150,21762173 -g1,6936:16747442,21762173 -g1,6936:17063588,21762173 -h1,6936:17379734,21762173:0,0,0 -k1,6936:32583029,21762173:15203295 -g1,6936:32583029,21762173 -) -] -) -g1,6937:32583029,21771609 -g1,6937:6630773,21771609 -g1,6937:6630773,21771609 -g1,6937:32583029,21771609 -g1,6937:32583029,21771609 -) -h1,6937:6630773,21968217:0,0,0 -v1,6941:6630773,23438849:0,393216,0 -(1,6988:6630773,45706769:25952256,22661136,0 -g1,6988:6630773,45706769 -g1,6988:6303093,45706769 -r1,6988:6401397,45706769:98304,22661136,0 -g1,6988:6600626,45706769 -g1,6988:6797234,45706769 -[1,6988:6797234,45706769:25785795,22661136,0 -(1,6942:6797234,23800922:25785795,755289,196608 -(1,6941:6797234,23800922:0,755289,196608 -r1,6988:8134168,23800922:1336934,951897,196608 -k1,6941:6797234,23800922:-1336934 -) -(1,6941:6797234,23800922:1336934,755289,196608 -) -k1,6941:8327146,23800922:192978 -k1,6941:8654826,23800922:327680 -k1,6941:9801353,23800922:192978 -k1,6941:13412034,23800922:192978 -k1,6941:15460337,23800922:192979 -k1,6941:16937821,23800922:192978 -k1,6941:19870204,23800922:192978 -k1,6941:20824710,23800922:192978 -k1,6941:22755703,23800922:192978 -k1,6941:24052963,23800922:192978 -k1,6941:24993708,23800922:192979 -k1,6941:26764138,23800922:192978 -k1,6941:28813096,23800922:192978 -k1,6941:30400025,23800922:192978 -k1,6941:32583029,23800922:0 -) -(1,6942:6797234,24642410:25785795,513147,126483 -k1,6941:9222851,24642410:284556 -k1,6941:12386405,24642410:284557 -(1,6941:12386405,24642410:0,452978,115847 -r1,6988:14151519,24642410:1765114,568825,115847 -k1,6941:12386405,24642410:-1765114 -) -(1,6941:12386405,24642410:1765114,452978,115847 -g1,6941:13444818,24642410 -h1,6941:14148242,24642410:0,411205,112570 -) -k1,6941:14609745,24642410:284556 -k1,6941:15577186,24642410:284556 -k1,6941:17255694,24642410:284557 -(1,6941:17255694,24642410:0,459977,115847 -r1,6988:17613960,24642410:358266,575824,115847 -k1,6941:17255694,24642410:-358266 -) -(1,6941:17255694,24642410:358266,459977,115847 -k1,6941:17255694,24642410:3277 -h1,6941:17610683,24642410:0,411205,112570 -) -k1,6941:18072186,24642410:284556 -k1,6941:18984577,24642410:284556 -k1,6941:20288219,24642410:284557 -k1,6941:21878908,24642410:284556 -k1,6941:23530545,24642410:284556 -k1,6941:24834187,24642410:284557 -k1,6941:26856758,24642410:284556 -k1,6941:27800606,24642410:284556 -k1,6941:29104248,24642410:284557 -k1,6941:31900144,24642410:284556 -k1,6941:32583029,24642410:0 -) -(1,6942:6797234,25483898:25785795,505283,134348 -k1,6941:9338673,25483898:158550 -k1,6941:10028721,25483898:158551 -k1,6941:11882032,25483898:158550 -k1,6941:12726744,25483898:158550 -k1,6941:13241155,25483898:158551 -k1,6941:16374384,25483898:158550 -k1,6941:18572414,25483898:158550 -k1,6941:21524765,25483898:158551 -k1,6941:22299353,25483898:158550 -k1,6941:25551859,25483898:158551 -k1,6941:27871131,25483898:158550 -k1,6941:28712566,25483898:158550 -k1,6941:29557279,25483898:158551 -k1,6941:30071689,25483898:158550 -k1,6941:32583029,25483898:0 -) -(1,6942:6797234,26325386:25785795,505283,134348 -k1,6941:8427180,26325386:235995 -k1,6941:10445755,26325386:235996 -(1,6941:10445755,26325386:0,452978,115847 -r1,6988:13617715,26325386:3171960,568825,115847 -k1,6941:10445755,26325386:-3171960 -) -(1,6941:10445755,26325386:3171960,452978,115847 -k1,6941:10445755,26325386:3277 -h1,6941:13614438,26325386:0,411205,112570 -) -k1,6941:14027380,26325386:235995 -k1,6941:16046610,26325386:235995 -k1,6941:18017999,26325386:235996 -(1,6941:18017999,26325386:0,459977,115847 -r1,6988:18376265,26325386:358266,575824,115847 -k1,6941:18017999,26325386:-358266 -) -(1,6941:18017999,26325386:358266,459977,115847 -k1,6941:18017999,26325386:3277 -h1,6941:18372988,26325386:0,411205,112570 -) -k1,6941:18785930,26325386:235995 -k1,6941:20041010,26325386:235995 -k1,6941:22015020,26325386:235995 -k1,6941:22782513,26325386:235996 -k1,6941:25441374,26325386:235995 -k1,6941:26363531,26325386:235995 -k1,6941:26955387,26325386:235996 -k1,6941:30122807,26325386:235995 -k1,6941:32583029,26325386:0 -) -(1,6942:6797234,27166874:25785795,505283,126483 -g1,6941:10090418,27166874 -g1,6941:12450369,27166874 -g1,6941:13841043,27166874 -g1,6941:16210824,27166874 -g1,6941:17157819,27166874 -g1,6941:17712908,27166874 -k1,6942:32583029,27166874:12185111 -g1,6942:32583029,27166874 -) -v1,6944:6797234,28230084:0,393216,0 -(1,6959:6797234,32499973:25785795,4663105,196608 -g1,6959:6797234,32499973 -g1,6959:6797234,32499973 -g1,6959:6600626,32499973 -(1,6959:6600626,32499973:0,4663105,196608 -r1,6988:32779637,32499973:26179011,4859713,196608 -k1,6959:6600625,32499973:-26179012 -) -(1,6959:6600626,32499973:26179011,4663105,196608 -[1,6959:6797234,32499973:25785795,4466497,0 -(1,6946:6797234,28437702:25785795,404226,101187 -(1,6945:6797234,28437702:0,0,0 -g1,6945:6797234,28437702 -g1,6945:6797234,28437702 -g1,6945:6469554,28437702 -(1,6945:6469554,28437702:0,0,0 -) -g1,6945:6797234,28437702 -) -g1,6946:9010254,28437702 -g1,6946:9958692,28437702 -g1,6946:13120150,28437702 -g1,6946:13752442,28437702 -g1,6946:15333171,28437702 -g1,6946:16913900,28437702 -g1,6946:17546192,28437702 -h1,6946:18810775,28437702:0,0,0 -k1,6946:32583029,28437702:13772254 -g1,6946:32583029,28437702 -) -(1,6947:6797234,29103880:25785795,404226,76021 -h1,6947:6797234,29103880:0,0,0 -h1,6947:11855564,29103880:0,0,0 -k1,6947:32583028,29103880:20727464 -g1,6947:32583028,29103880 -) -(1,6951:6797234,29770058:25785795,404226,76021 -(1,6949:6797234,29770058:0,0,0 -g1,6949:6797234,29770058 -g1,6949:6797234,29770058 -g1,6949:6469554,29770058 -(1,6949:6469554,29770058:0,0,0 -) -g1,6949:6797234,29770058 -) -g1,6951:7745671,29770058 -g1,6951:9010254,29770058 -h1,6951:9958691,29770058:0,0,0 -k1,6951:32583029,29770058:22624338 -g1,6951:32583029,29770058 -) -(1,6953:6797234,31091596:25785795,404226,6290 -(1,6952:6797234,31091596:0,0,0 -g1,6952:6797234,31091596 -g1,6952:6797234,31091596 -g1,6952:6469554,31091596 -(1,6952:6469554,31091596:0,0,0 -) -g1,6952:6797234,31091596 -) -g1,6953:8694108,31091596 -g1,6953:9642546,31091596 -h1,6953:11539420,31091596:0,0,0 -k1,6953:32583028,31091596:21043608 -g1,6953:32583028,31091596 -) -(1,6954:6797234,31757774:25785795,404226,76021 -h1,6954:6797234,31757774:0,0,0 -h1,6954:11539419,31757774:0,0,0 -k1,6954:32583029,31757774:21043610 -g1,6954:32583029,31757774 -) -(1,6958:6797234,32423952:25785795,404226,76021 -(1,6956:6797234,32423952:0,0,0 -g1,6956:6797234,32423952 -g1,6956:6797234,32423952 -g1,6956:6469554,32423952 -(1,6956:6469554,32423952:0,0,0 -) -g1,6956:6797234,32423952 -) -g1,6958:7745671,32423952 -g1,6958:9010254,32423952 -h1,6958:9958691,32423952:0,0,0 -k1,6958:32583029,32423952:22624338 -g1,6958:32583029,32423952 -) -] -) -g1,6959:32583029,32499973 -g1,6959:6797234,32499973 -g1,6959:6797234,32499973 -g1,6959:32583029,32499973 -g1,6959:32583029,32499973 -) -h1,6959:6797234,32696581:0,0,0 -v1,6963:6797234,34156824:0,393216,0 -(1,6982:6797234,39088365:25785795,5324757,196608 -g1,6982:6797234,39088365 -g1,6982:6797234,39088365 -g1,6982:6600626,39088365 -(1,6982:6600626,39088365:0,5324757,196608 -r1,6988:32779637,39088365:26179011,5521365,196608 -k1,6982:6600625,39088365:-26179012 -) -(1,6982:6600626,39088365:26179011,5324757,196608 -[1,6982:6797234,39088365:25785795,5128149,0 -(1,6965:6797234,34370734:25785795,410518,31456 -(1,6964:6797234,34370734:0,0,0 -g1,6964:6797234,34370734 -g1,6964:6797234,34370734 -g1,6964:6469554,34370734 -(1,6964:6469554,34370734:0,0,0 -) -g1,6964:6797234,34370734 -) -h1,6965:10274837,34370734:0,0,0 -k1,6965:32583029,34370734:22308192 -g1,6965:32583029,34370734 -) -(1,6969:6797234,35036912:25785795,404226,76021 -(1,6967:6797234,35036912:0,0,0 -g1,6967:6797234,35036912 -g1,6967:6797234,35036912 -g1,6967:6469554,35036912 -(1,6967:6469554,35036912:0,0,0 -) -g1,6967:6797234,35036912 -) -g1,6969:7745671,35036912 -g1,6969:9010254,35036912 -h1,6969:9958691,35036912:0,0,0 -k1,6969:32583029,35036912:22624338 -g1,6969:32583029,35036912 -) -(1,6971:6797234,36358450:25785795,410518,31456 -(1,6970:6797234,36358450:0,0,0 -g1,6970:6797234,36358450 -g1,6970:6797234,36358450 -g1,6970:6469554,36358450 -(1,6970:6469554,36358450:0,0,0 -) -g1,6970:6797234,36358450 -) -h1,6971:9642545,36358450:0,0,0 -k1,6971:32583029,36358450:22940484 -g1,6971:32583029,36358450 -) -(1,6975:6797234,37024628:25785795,404226,76021 -(1,6973:6797234,37024628:0,0,0 -g1,6973:6797234,37024628 -g1,6973:6797234,37024628 -g1,6973:6469554,37024628 -(1,6973:6469554,37024628:0,0,0 -) -g1,6973:6797234,37024628 -) -g1,6975:7745671,37024628 -g1,6975:9010254,37024628 -h1,6975:9958691,37024628:0,0,0 -k1,6975:32583029,37024628:22624338 -g1,6975:32583029,37024628 -) -(1,6977:6797234,38346166:25785795,410518,31456 -(1,6976:6797234,38346166:0,0,0 -g1,6976:6797234,38346166 -g1,6976:6797234,38346166 -g1,6976:6469554,38346166 -(1,6976:6469554,38346166:0,0,0 -) -g1,6976:6797234,38346166 -) -h1,6977:9326400,38346166:0,0,0 -k1,6977:32583028,38346166:23256628 -g1,6977:32583028,38346166 -) -(1,6981:6797234,39012344:25785795,404226,76021 -(1,6979:6797234,39012344:0,0,0 -g1,6979:6797234,39012344 -g1,6979:6797234,39012344 -g1,6979:6469554,39012344 -(1,6979:6469554,39012344:0,0,0 -) -g1,6979:6797234,39012344 -) -g1,6981:7745671,39012344 -g1,6981:9010254,39012344 -h1,6981:9958691,39012344:0,0,0 -k1,6981:32583029,39012344:22624338 -g1,6981:32583029,39012344 -) -] -) -g1,6982:32583029,39088365 -g1,6982:6797234,39088365 -g1,6982:6797234,39088365 -g1,6982:32583029,39088365 -g1,6982:32583029,39088365 -) -h1,6982:6797234,39284973:0,0,0 -(1,6986:6797234,40523493:25785795,513147,134348 -h1,6985:6797234,40523493:983040,0,0 -k1,6985:9388013,40523493:142354 -k1,6985:10146404,40523493:142353 -k1,6985:11307843,40523493:142354 -k1,6985:12817277,40523493:142353 -k1,6985:13618923,40523493:142354 -k1,6985:15085103,40523493:142353 -k1,6985:16418902,40523493:142354 -k1,6985:17950619,40523493:142354 -k1,6985:20473240,40523493:142353 -k1,6985:22313632,40523493:142354 -k1,6985:24191378,40523493:142353 -k1,6985:26516736,40523493:142354 -k1,6985:28800150,40523493:142353 -k1,6985:31821501,40523493:142354 -k1,6985:32583029,40523493:0 -) -(1,6986:6797234,41364981:25785795,513147,134348 -k1,6985:9272108,41364981:209294 -k1,6985:10252105,41364981:209294 -k1,6985:12120115,41364981:209294 -k1,6985:14310561,41364981:209293 -k1,6985:15051352,41364981:209294 -k1,6985:17973181,41364981:209294 -k1,6985:20817678,41364981:209294 -k1,6985:22046057,41364981:209294 -k1,6985:23993366,41364981:209294 -k1,6985:24818698,41364981:209294 -k1,6985:26047076,41364981:209293 -k1,6985:28215896,41364981:209294 -k1,6985:29616635,41364981:209294 -k1,6985:30845014,41364981:209294 -k1,6985:32583029,41364981:0 -) -(1,6986:6797234,42206469:25785795,513147,134348 -k1,6985:8562792,42206469:252332 -k1,6985:9762774,42206469:252331 -k1,6985:12928181,42206469:252332 -k1,6985:13808347,42206469:252331 -k1,6985:16865620,42206469:252332 -k1,6985:18511903,42206469:252332 -(1,6985:18511903,42206469:0,459977,115847 -r1,6988:18870169,42206469:358266,575824,115847 -k1,6985:18511903,42206469:-358266 -) -(1,6985:18511903,42206469:358266,459977,115847 -k1,6985:18511903,42206469:3277 -h1,6985:18866892,42206469:0,411205,112570 -) -k1,6985:19296170,42206469:252331 -k1,6985:20319205,42206469:252332 -k1,6985:24907398,42206469:252331 -k1,6985:27243775,42206469:252332 -k1,6985:29477259,42206469:252331 -k1,6985:30261088,42206469:252332 -k1,6985:32583029,42206469:0 -) -(1,6986:6797234,43047957:25785795,513147,134348 -k1,6985:9970606,43047957:183620 -k1,6985:11196248,43047957:183620 -k1,6985:14740554,43047957:183620 -k1,6985:16190330,43047957:183620 -k1,6985:18457995,43047957:183620 -k1,6985:21613016,43047957:183619 -k1,6985:22328133,43047957:183620 -k1,6985:24784542,43047957:183620 -k1,6985:25584200,43047957:183620 -k1,6985:28562931,43047957:183620 -k1,6985:30949216,43047957:183620 -k1,6986:32583029,43047957:0 -) -(1,6986:6797234,43889445:25785795,513147,134348 -k1,6985:8520999,43889445:209883 -k1,6985:9346919,43889445:209882 -k1,6985:11891850,43889445:209883 -k1,6985:13293178,43889445:209883 -k1,6985:16610778,43889445:209883 -k1,6985:17235493,43889445:209872 -k1,6985:18941563,43889445:209883 -k1,6985:19767483,43889445:209882 -k1,6985:23061490,43889445:209883 -k1,6985:23729470,43889445:209883 -k1,6985:24470850,43889445:209883 -k1,6985:26015700,43889445:209882 -k1,6985:26877011,43889445:209883 -k1,6985:28816389,43889445:209883 -k1,6985:30045357,43889445:209883 -k1,6985:31347724,43889445:209882 -k1,6985:32224763,43889445:209883 -(1,6985:32224763,43889445:0,459977,115847 -r1,6988:32583029,43889445:358266,575824,115847 -k1,6985:32224763,43889445:-358266 -) -(1,6985:32224763,43889445:358266,459977,115847 -k1,6985:32224763,43889445:3277 -h1,6985:32579752,43889445:0,411205,112570 -) -k1,6985:32583029,43889445:0 -) -(1,6986:6797234,44730933:25785795,505283,134348 -k1,6985:7648827,44730933:165431 -k1,6985:9898304,44730933:165432 -k1,6985:13035138,44730933:165432 -k1,6985:13851997,44730933:165431 -k1,6985:14373288,44730933:165431 -k1,6985:16531670,44730933:165432 -k1,6985:19208442,44730933:165432 -k1,6985:21779700,44730933:165431 -k1,6985:22557893,44730933:165431 -k1,6985:23079185,44730933:165432 -k1,6985:24698206,44730933:165432 -k1,6985:26462715,44730933:165431 -k1,6985:27870710,44730933:165432 -k1,6985:29734179,44730933:165431 -k1,6985:32583029,44730933:0 -) -(1,6986:6797234,45572421:25785795,513147,134348 -g1,6985:8226574,45572421 -g1,6985:10627813,45572421 -g1,6985:11846127,45572421 -g1,6985:14050102,45572421 -g1,6985:15353613,45572421 -g1,6985:16881912,45572421 -g1,6985:17732569,45572421 -g1,6985:19285772,45572421 -g1,6985:25885247,45572421 -k1,6986:32583029,45572421:4586867 -g1,6986:32583029,45572421 -) -] -g1,6988:32583029,45706769 -) -] -(1,6988:32583029,45706769:0,0,0 -g1,6988:32583029,45706769 -) -) -] -(1,6988:6630773,47279633:25952256,0,0 -h1,6988:6630773,47279633:25952256,0,0 -) -] -(1,6988:4262630,4025873:0,0,0 -[1,6988:-473656,4025873:0,0,0 -(1,6988:-473656,-710413:0,0,0 -(1,6988:-473656,-710413:0,0,0 -g1,6988:-473656,-710413 -) -g1,6988:-473656,-710413 -) -] -) -] -!30294 -}115 -Input:926:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:927:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:928:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:929:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:930:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:931:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:932:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:933:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:934:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:935:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!942 -{116 -[1,7216:4262630,47279633:28320399,43253760,0 -(1,7216:4262630,4025873:0,0,0 -[1,7216:-473656,4025873:0,0,0 -(1,7216:-473656,-710413:0,0,0 -(1,7216:-473656,-644877:0,0,0 -k1,7216:-473656,-644877:-65536 +(1,6148:6630773,7366122:25952256,32768,0 +r1,6169:32583029,7366122:25952256,32768,0 +) +) +(1,6148:6630773,9201138:25952256,909509,21233 +h1,6148:6630773,9201138:0,0,0 +g1,6148:9551582,9201138 +g1,6148:11032040,9201138 +g1,6148:17329001,9201138 +k1,6148:27008603,9201138:5574427 +k1,6148:32583029,9201138:5574426 +) +(1,6148:6630773,9948258:25952256,32768,0 +(1,6148:6630773,9948258:5505024,32768,0 +r1,6169:12135797,9948258:5505024,32768,0 +) +k1,6148:22359413,9948258:10223616 +k1,6148:32583029,9948258:10223616 +) +] +(1,6150:6630773,14699623:25952256,131072,0 +r1,6169:32583029,14699623:25952256,131072,0 +g1,6150:32583029,14699623 +g1,6150:32583029,14699623 +) +(1,6152:6630773,16043116:25952256,513147,126483 +k1,6152:8596853,16043116:1966080 +k1,6151:9927531,16043116:133991 +k1,6151:13868509,16043116:133992 +k1,6151:15287006,16043116:133991 +k1,6151:15952494,16043116:133991 +k1,6151:18870455,16043116:133992 +k1,6151:19655874,16043116:133991 +k1,6151:20808951,16043116:133992 +k1,6151:24019202,16043116:133991 +k1,6151:26745142,16043116:133991 +k1,6151:27538426,16043116:133992 +k1,6151:28028277,16043116:133991 +k1,6151:32583029,16043116:1966080 +) +(1,6152:6630773,16908196:25952256,513147,126483 +k1,6152:8596853,16908196:1966080 +k1,6151:9726311,16908196:194915 +k1,6151:10580518,16908196:194915 +k1,6151:12208051,16908196:194915 +k1,6151:14225522,16908196:194915 +k1,6151:15439522,16908196:194915 +k1,6151:16831123,16908196:194914 +k1,6151:19029474,16908196:194915 +k1,6151:21702305,16908196:194915 +k1,6151:23181726,16908196:194915 +k1,6151:24311184,16908196:194915 +k1,6151:26391570,16908196:194915 +k1,6151:27117982,16908196:194915 +k1,6151:32583029,16908196:1966080 +) +(1,6152:6630773,17773276:25952256,513147,126483 +k1,6152:8596853,17773276:1966080 +k1,6151:11333989,17773276:164193 +k1,6151:12149610,17773276:164193 +k1,6151:13332887,17773276:164192 +k1,6151:16173570,17773276:164193 +k1,6151:16950525,17773276:164193 +k1,6151:18894676,17773276:164193 +k1,6151:20343374,17773276:164192 +k1,6151:21442110,17773276:164193 +k1,6151:23173924,17773276:164193 +k1,6151:25223588,17773276:164193 +k1,6151:25845877,17773276:164192 +k1,6151:26541567,17773276:164193 +k1,6151:29332443,17773276:164193 +k1,6151:32583029,17773276:1966080 +) +(1,6152:6630773,18638356:25952256,505283,126483 +k1,6152:8596853,18638356:1966080 +k1,6151:9823556,18638356:207618 +k1,6151:12387193,18638356:207618 +k1,6151:14767985,18638356:207618 +k1,6151:16079885,18638356:207618 +k1,6151:17035270,18638356:207619 +k1,6151:19799447,18638356:207618 +k1,6151:21203752,18638356:207618 +k1,6151:22800733,18638356:207618 +k1,6151:26049877,18638356:207618 +k1,6151:27028198,18638356:207618 +k1,6151:32583029,18638356:1966080 +) +(1,6152:6630773,19503436:25952256,513147,126483 +g1,6152:8596853,19503436 +g1,6151:9455374,19503436 +k1,6152:30616949,19503436:18490328 +g1,6152:32583029,19503436 +) +(1,6153:6630773,21154948:25952256,505283,7863 +k1,6153:26258149,21154948:19627376 +h1,6153:26258149,21154948:0,0,0 +g1,6153:28849442,21154948 +g1,6153:30616948,21154948 +g1,6153:32583028,21154948 +) +(1,6154:6630773,22020028:25952256,505283,134348 +k1,6154:15215991,22020028:8585218 +h1,6153:15215991,22020028:0,0,0 +g1,6153:18906323,22020028 +g1,6153:19673749,22020028 +g1,6153:21407176,22020028 +g1,6153:24820291,22020028 +g1,6153:25587717,22020028 +g1,6153:29023113,22020028 +g1,6154:30616949,22020028 +g1,6154:32583029,22020028 +) +(1,6154:6630773,23278324:25952256,131072,0 +r1,6169:32583029,23278324:25952256,131072,0 +g1,6154:32583029,23278324 +g1,6154:34549109,23278324 +) +(1,6156:6630773,26109484:25952256,32768,229376 +(1,6156:6630773,26109484:0,32768,229376 +(1,6156:6630773,26109484:5505024,32768,229376 +r1,6169:12135797,26109484:5505024,262144,229376 +) +k1,6156:6630773,26109484:-5505024 +) +(1,6156:6630773,26109484:25952256,32768,0 +r1,6169:32583029,26109484:25952256,32768,0 +) +) +(1,6156:6630773,27741336:25952256,615776,151780 +(1,6156:6630773,27741336:1974731,575668,0 +g1,6156:6630773,27741336 +g1,6156:8605504,27741336 +) +g1,6156:10904245,27741336 +g1,6156:11961996,27741336 +g1,6156:13695292,27741336 +k1,6156:32583029,27741336:15886712 +g1,6156:32583029,27741336 +) +(1,6159:6630773,28999632:25952256,513147,134348 +k1,6158:9552914,28999632:302667 +k1,6158:13897842,28999632:302667 +k1,6158:15391954,28999632:302667 +k1,6158:18042121,28999632:302667 +k1,6158:18876285,28999632:302667 +k1,6158:20335662,28999632:302667 +k1,6158:21297621,28999632:302667 +k1,6158:22619373,28999632:302667 +k1,6158:24353346,28999632:302667 +k1,6158:25307441,28999632:302667 +k1,6158:28162735,28999632:302667 +k1,6158:29854765,28999632:302667 +k1,6158:32583029,28999632:0 +) +(1,6159:6630773,29864712:25952256,513147,134348 +k1,6158:8281898,29864712:230304 +k1,6158:9163631,29864712:230305 +k1,6158:10901918,29864712:230304 +k1,6158:13812645,29864712:230304 +k1,6158:14809066,29864712:230305 +k1,6158:16058455,29864712:230304 +k1,6158:20095745,29864712:230304 +k1,6158:21610556,29864712:230305 +k1,6158:24307635,29864712:230304 +k1,6158:27392032,29864712:230304 +k1,6158:28669602,29864712:230305 +k1,6158:29666022,29864712:230304 +k1,6159:32583029,29864712:0 +) +(1,6159:6630773,30729792:25952256,513147,134348 +k1,6158:8860832,30729792:260702 +k1,6158:10689155,30729792:260702 +k1,6158:11720560,30729792:260702 +k1,6158:15590330,30729792:260702 +k1,6158:17042477,30729792:260702 +k1,6158:21926744,30729792:260702 +k1,6158:25156882,30729792:260702 +k1,6158:26911150,30729792:260702 +k1,6158:27858014,30729792:260702 +k1,6158:31593435,30729792:260702 +k1,6159:32583029,30729792:0 +) +(1,6159:6630773,31594872:25952256,505283,126483 +k1,6158:8408764,31594872:182845 +k1,6158:10801484,31594872:182846 +k1,6158:12869144,31594872:182845 +k1,6158:14248677,31594872:182846 +k1,6158:15698988,31594872:182845 +k1,6158:19163877,31594872:182846 +k1,6158:21616234,31594872:182845 +k1,6158:22330577,31594872:182846 +k1,6158:24368091,31594872:182845 +k1,6158:25360307,31594872:182846 +k1,6158:26562237,31594872:182845 +k1,6158:28070221,31594872:182846 +k1,6158:29537572,31594872:182845 +k1,6158:30076278,31594872:182846 +k1,6158:31648486,31594872:182845 +k1,6158:32583029,31594872:0 +) +(1,6159:6630773,32459952:25952256,513147,134348 +g1,6158:7361499,32459952 +g1,6158:7916588,32459952 +g1,6158:11202563,32459952 +g1,6158:12061084,32459952 +g1,6158:13649676,32459952 +k1,6159:32583029,32459952:16469855 +g1,6159:32583029,32459952 +) +(1,6161:6630773,33325032:25952256,513147,126483 +h1,6160:6630773,33325032:983040,0,0 +k1,6160:8444564,33325032:202916 +k1,6160:9850721,33325032:202916 +k1,6160:12471259,33325032:202915 +k1,6160:13844648,33325032:202916 +k1,6160:15180026,33325032:202916 +k1,6160:18813752,33325032:202916 +k1,6160:20410618,33325032:202915 +k1,6160:21943915,33325032:202916 +k1,6160:23350072,33325032:202916 +k1,6160:24657270,33325032:202916 +k1,6160:25607951,33325032:202915 +k1,6160:27388319,33325032:202916 +k1,6160:28207273,33325032:202916 +k1,6160:28998702,33325032:202916 +k1,6160:30155166,33325032:202915 +k1,6160:31490544,33325032:202916 +k1,6160:32583029,33325032:0 +) +(1,6161:6630773,34190112:25952256,513147,134348 +k1,6160:8270534,34190112:173065 +k1,6160:11021785,34190112:173065 +k1,6160:14186570,34190112:173066 +k1,6160:15011063,34190112:173065 +k1,6160:18611661,34190112:173065 +k1,6160:19803811,34190112:173065 +k1,6160:22309959,34190112:173066 +k1,6160:25778830,34190112:173065 +k1,6160:26611187,34190112:173065 +k1,6160:28173615,34190112:173065 +k1,6160:29611526,34190112:173066 +k1,6160:30976036,34190112:173065 +k1,6160:32168186,34190112:173065 +k1,6161:32583029,34190112:0 +) +(1,6161:6630773,35055192:25952256,513147,134348 +k1,6160:9082584,35055192:218999 +k1,6160:12085552,35055192:218999 +k1,6160:13252203,35055192:219000 +k1,6160:14979841,35055192:218999 +k1,6160:17546340,35055192:218999 +k1,6160:18956784,35055192:218999 +k1,6160:19531643,35055192:218999 +k1,6160:20883760,35055192:218999 +k1,6160:22752957,35055192:219000 +k1,6160:25369263,35055192:218999 +k1,6160:28579981,35055192:218999 +k1,6160:29450408,35055192:218999 +k1,6160:32583029,35055192:0 +) +(1,6161:6630773,35920272:25952256,513147,126483 +k1,6160:8413352,35920272:273940 +k1,6160:9779778,35920272:273941 +k1,6160:10669756,35920272:273940 +k1,6160:11299557,35920272:273941 +k1,6160:13223694,35920272:273940 +k1,6160:16214102,35920272:273941 +k1,6160:17899688,35920272:273940 +k1,6160:19948343,35920272:273940 +k1,6160:20838322,35920272:273941 +k1,6160:22131347,35920272:273940 +k1,6160:25159766,35920272:273941 +k1,6160:27851329,35920272:273940 +k1,6160:28993622,35920272:273941 +k1,6160:31773659,35920272:273940 +k1,6160:32583029,35920272:0 +) +(1,6161:6630773,36785352:25952256,513147,134348 +k1,6160:9045611,36785352:252805 +k1,6160:10687779,36785352:252805 +k1,6160:12656972,36785352:252805 +k1,6160:14101222,36785352:252805 +k1,6160:16817525,36785352:252805 +k1,6160:18216555,36785352:252805 +k1,6160:20951208,36785352:252805 +k1,6160:23181234,36785352:252805 +k1,6160:24381690,36785352:252805 +k1,6160:25653580,36785352:252805 +k1,6160:28253885,36785352:252805 +k1,6160:29165982,36785352:252805 +k1,6160:32583029,36785352:0 +) +(1,6161:6630773,37650432:25952256,513147,134348 +k1,6160:7548058,37650432:257993 +k1,6160:9816697,37650432:257994 +k1,6160:10733982,37650432:257993 +k1,6160:11347835,37650432:257993 +k1,6160:13300590,37650432:257994 +k1,6160:15118340,37650432:257993 +k1,6160:16522558,37650432:257993 +k1,6160:19770304,37650432:257994 +k1,6160:20644335,37650432:257993 +k1,6160:21921413,37650432:257993 +k1,6160:24585234,37650432:257994 +k1,6160:27260850,37650432:257993 +k1,6160:28387195,37650432:257993 +k1,6160:29777651,37650432:257994 +k1,6160:31773659,37650432:257993 +k1,6160:32583029,37650432:0 +) +(1,6161:6630773,38515512:25952256,513147,134348 +k1,6160:7827511,38515512:177653 +k1,6160:10352664,38515512:177653 +k1,6160:12540306,38515512:177653 +k1,6160:13073819,38515512:177653 +k1,6160:15124491,38515512:177653 +k1,6160:17261670,38515512:177653 +k1,6160:18098614,38515512:177652 +k1,6160:22948984,38515512:177653 +k1,6160:24689671,38515512:177653 +k1,6160:26360890,38515512:177653 +k1,6160:27224705,38515512:177653 +k1,6160:27758218,38515512:177653 +k1,6160:31923737,38515512:177653 +k1,6160:32583029,38515512:0 +) +(1,6161:6630773,39380592:25952256,513147,134348 +k1,6160:9201896,39380592:173161 +k1,6160:10566501,39380592:173160 +k1,6160:13714341,39380592:173161 +k1,6160:15078946,39380592:173160 +k1,6160:17872236,39380592:173161 +k1,6160:20527244,39380592:173160 +k1,6160:23125237,39380592:173161 +k1,6160:26309121,39380592:173160 +k1,6160:31154999,39380592:173161 +k1,6160:32583029,39380592:0 +) +(1,6161:6630773,40245672:25952256,473825,7863 +k1,6161:32583030,40245672:22508996 +g1,6161:32583030,40245672 +) +(1,6163:6630773,41110752:25952256,513147,134348 +h1,6162:6630773,41110752:983040,0,0 +k1,6162:8677865,41110752:246163 +k1,6162:9540067,41110752:246164 +k1,6162:10805315,41110752:246163 +k1,6162:13805956,41110752:246163 +k1,6162:16643414,41110752:246164 +k1,6162:17757929,41110752:246163 +k1,6162:19136554,41110752:246163 +k1,6162:20475202,41110752:246163 +k1,6162:23667865,41110752:246164 +k1,6162:24565456,41110752:246163 +k1,6162:27480900,41110752:246163 +k1,6162:28746149,41110752:246164 +k1,6162:31923737,41110752:246163 +k1,6162:32583029,41110752:0 +) +(1,6163:6630773,41975832:25952256,505283,134348 +k1,6163:32583029,41975832:23488758 +g1,6163:32583029,41975832 +) +] +(1,6169:32583029,45706769:0,0,0 +g1,6169:32583029,45706769 +) +) +] +(1,6169:6630773,47279633:25952256,485622,11795 +(1,6169:6630773,47279633:25952256,485622,11795 +(1,6169:6630773,47279633:0,0,0 +v1,6169:6630773,47279633:0,0,0 +) +g1,6169:6830002,47279633 +k1,6169:31786110,47279633:24956108 +) +) +] +(1,6169:4262630,4025873:0,0,0 +[1,6169:-473656,4025873:0,0,0 +(1,6169:-473656,-710413:0,0,0 +(1,6169:-473656,-710413:0,0,0 +g1,6169:-473656,-710413 +) +g1,6169:-473656,-710413 +) +] +) +] +!14893 +}98 +Input:871:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:872:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:873:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!290 +{99 +[1,6188:4262630,47279633:28320399,43253760,0 +(1,6188:4262630,4025873:0,0,0 +[1,6188:-473656,4025873:0,0,0 +(1,6188:-473656,-710413:0,0,0 +(1,6188:-473656,-644877:0,0,0 +k1,6188:-473656,-644877:-65536 ) -(1,7216:-473656,4736287:0,0,0 -k1,7216:-473656,4736287:5209943 +(1,6188:-473656,4736287:0,0,0 +k1,6188:-473656,4736287:5209943 ) -g1,7216:-473656,-710413 +g1,6188:-473656,-710413 ) ] ) -[1,7216:6630773,47279633:25952256,43253760,0 -[1,7216:6630773,4812305:25952256,786432,0 -(1,7216:6630773,4812305:25952256,513147,126483 -(1,7216:6630773,4812305:25952256,513147,126483 -g1,7216:3078558,4812305 -[1,7216:3078558,4812305:0,0,0 -(1,7216:3078558,2439708:0,1703936,0 -k1,7216:1358238,2439708:-1720320 -(1,5950:1358238,2439708:1720320,1703936,0 -(1,5950:1358238,2439708:1179648,16384,0 -r1,7216:2537886,2439708:1179648,16384,0 +[1,6188:6630773,47279633:25952256,43253760,0 +[1,6188:6630773,4812305:25952256,786432,0 +(1,6188:6630773,4812305:25952256,505283,11795 +(1,6188:6630773,4812305:25952256,505283,11795 +g1,6188:3078558,4812305 +[1,6188:3078558,4812305:0,0,0 +(1,6188:3078558,2439708:0,1703936,0 +k1,6188:1358238,2439708:-1720320 +(1,6148:1358238,2439708:1720320,1703936,0 +(1,6148:1358238,2439708:1179648,16384,0 +r1,6188:2537886,2439708:1179648,16384,0 ) -g1,5950:3062174,2439708 -(1,5950:3062174,2439708:16384,1703936,0 -[1,5950:3062174,2439708:25952256,1703936,0 -(1,5950:3062174,1915420:25952256,1179648,0 -(1,5950:3062174,1915420:16384,1179648,0 -r1,7216:3078558,1915420:16384,1179648,0 +g1,6148:3062174,2439708 +(1,6148:3062174,2439708:16384,1703936,0 +[1,6148:3062174,2439708:25952256,1703936,0 +(1,6148:3062174,1915420:25952256,1179648,0 +(1,6148:3062174,1915420:16384,1179648,0 +r1,6188:3078558,1915420:16384,1179648,0 ) -k1,5950:29014430,1915420:25935872 -g1,5950:29014430,1915420 +k1,6148:29014430,1915420:25935872 +g1,6148:29014430,1915420 ) ] ) ) ) ] -[1,7216:3078558,4812305:0,0,0 -(1,7216:3078558,2439708:0,1703936,0 -g1,7216:29030814,2439708 -g1,7216:36135244,2439708 -(1,5950:36135244,2439708:1720320,1703936,0 -(1,5950:36135244,2439708:16384,1703936,0 -[1,5950:36135244,2439708:25952256,1703936,0 -(1,5950:36135244,1915420:25952256,1179648,0 -(1,5950:36135244,1915420:16384,1179648,0 -r1,7216:36151628,1915420:16384,1179648,0 +[1,6188:3078558,4812305:0,0,0 +(1,6188:3078558,2439708:0,1703936,0 +g1,6188:29030814,2439708 +g1,6188:36135244,2439708 +(1,6148:36135244,2439708:1720320,1703936,0 +(1,6148:36135244,2439708:16384,1703936,0 +[1,6148:36135244,2439708:25952256,1703936,0 +(1,6148:36135244,1915420:25952256,1179648,0 +(1,6148:36135244,1915420:16384,1179648,0 +r1,6188:36151628,1915420:16384,1179648,0 ) -k1,5950:62087500,1915420:25935872 -g1,5950:62087500,1915420 +k1,6148:62087500,1915420:25935872 +g1,6148:62087500,1915420 ) ] ) -g1,5950:36675916,2439708 -(1,5950:36675916,2439708:1179648,16384,0 -r1,7216:37855564,2439708:1179648,16384,0 +g1,6148:36675916,2439708 +(1,6148:36675916,2439708:1179648,16384,0 +r1,6188:37855564,2439708:1179648,16384,0 ) ) -k1,7216:3078556,2439708:-34777008 +k1,6188:3078556,2439708:-34777008 ) ] -[1,7216:3078558,4812305:0,0,0 -(1,7216:3078558,49800853:0,16384,2228224 -k1,7216:1358238,49800853:-1720320 -(1,5950:1358238,49800853:1720320,16384,2228224 -(1,5950:1358238,49800853:1179648,16384,0 -r1,7216:2537886,49800853:1179648,16384,0 +[1,6188:3078558,4812305:0,0,0 +(1,6188:3078558,49800853:0,16384,2228224 +k1,6188:1358238,49800853:-1720320 +(1,6148:1358238,49800853:1720320,16384,2228224 +(1,6148:1358238,49800853:1179648,16384,0 +r1,6188:2537886,49800853:1179648,16384,0 ) -g1,5950:3062174,49800853 -(1,5950:3062174,52029077:16384,1703936,0 -[1,5950:3062174,52029077:25952256,1703936,0 -(1,5950:3062174,51504789:25952256,1179648,0 -(1,5950:3062174,51504789:16384,1179648,0 -r1,7216:3078558,51504789:16384,1179648,0 +g1,6148:3062174,49800853 +(1,6148:3062174,52029077:16384,1703936,0 +[1,6148:3062174,52029077:25952256,1703936,0 +(1,6148:3062174,51504789:25952256,1179648,0 +(1,6148:3062174,51504789:16384,1179648,0 +r1,6188:3078558,51504789:16384,1179648,0 ) -k1,5950:29014430,51504789:25935872 -g1,5950:29014430,51504789 +k1,6148:29014430,51504789:25935872 +g1,6148:29014430,51504789 ) ] ) ) ) ] -[1,7216:3078558,4812305:0,0,0 -(1,7216:3078558,49800853:0,16384,2228224 -g1,7216:29030814,49800853 -g1,7216:36135244,49800853 -(1,5950:36135244,49800853:1720320,16384,2228224 -(1,5950:36135244,52029077:16384,1703936,0 -[1,5950:36135244,52029077:25952256,1703936,0 -(1,5950:36135244,51504789:25952256,1179648,0 -(1,5950:36135244,51504789:16384,1179648,0 -r1,7216:36151628,51504789:16384,1179648,0 +[1,6188:3078558,4812305:0,0,0 +(1,6188:3078558,49800853:0,16384,2228224 +g1,6188:29030814,49800853 +g1,6188:36135244,49800853 +(1,6148:36135244,49800853:1720320,16384,2228224 +(1,6148:36135244,52029077:16384,1703936,0 +[1,6148:36135244,52029077:25952256,1703936,0 +(1,6148:36135244,51504789:25952256,1179648,0 +(1,6148:36135244,51504789:16384,1179648,0 +r1,6188:36151628,51504789:16384,1179648,0 ) -k1,5950:62087500,51504789:25935872 -g1,5950:62087500,51504789 +k1,6148:62087500,51504789:25935872 +g1,6148:62087500,51504789 ) ] ) -g1,5950:36675916,49800853 -(1,5950:36675916,49800853:1179648,16384,0 -r1,7216:37855564,49800853:1179648,16384,0 -) +g1,6148:36675916,49800853 +(1,6148:36675916,49800853:1179648,16384,0 +r1,6188:37855564,49800853:1179648,16384,0 ) -k1,7216:3078556,49800853:-34777008 ) -] -g1,7216:6630773,4812305 -g1,7216:6630773,4812305 -g1,7216:8364200,4812305 -g1,7216:10765439,4812305 -k1,7216:31387651,4812305:20622212 -) -) -] -[1,7216:6630773,45706769:25952256,40108032,0 -(1,7216:6630773,45706769:25952256,40108032,0 -(1,7216:6630773,45706769:0,0,0 -g1,7216:6630773,45706769 -) -[1,7216:6630773,45706769:25952256,40108032,0 -v1,6988:6630773,6254097:0,393216,0 -(1,6988:6630773,9874328:25952256,4013447,0 -g1,6988:6630773,9874328 -g1,6988:6303093,9874328 -r1,7216:6401397,9874328:98304,4013447,0 -g1,6988:6600626,9874328 -g1,6988:6797234,9874328 -[1,6988:6797234,9874328:25785795,4013447,0 -(1,6988:6797234,6374028:25785795,513147,134348 -h1,6987:6797234,6374028:983040,0,0 -k1,6987:8625844,6374028:217735 -k1,6987:11683255,6374028:217736 -k1,6987:12587152,6374028:217735 -(1,6987:12587152,6374028:0,459977,115847 -r1,7216:12945418,6374028:358266,575824,115847 -k1,6987:12587152,6374028:-358266 -) -(1,6987:12587152,6374028:358266,459977,115847 -k1,6987:12587152,6374028:3277 -h1,6987:12942141,6374028:0,411205,112570 -) -k1,6987:13163153,6374028:217735 -k1,6987:13912386,6374028:217736 -k1,6987:18331634,6374028:217735 -k1,6987:19310898,6374028:217736 -k1,6987:20834766,6374028:217735 -k1,6987:24557366,6374028:217735 -k1,6987:25130962,6374028:217736 -k1,6987:27329850,6374028:217735 -k1,6987:28199013,6374028:217735 -k1,6987:29435834,6374028:217736 -k1,6987:31391584,6374028:217735 -k1,6987:32583029,6374028:0 -) -(1,6988:6797234,7215516:25785795,513147,134348 -k1,6987:8436835,7215516:205673 -k1,6987:10732451,7215516:205673 -(1,6987:10732451,7215516:0,452978,115847 -r1,7216:12497565,7215516:1765114,568825,115847 -k1,6987:10732451,7215516:-1765114 -) -(1,6987:10732451,7215516:1765114,452978,115847 -g1,6987:11790864,7215516 -h1,6987:12494288,7215516:0,411205,112570 -) -k1,6987:12876907,7215516:205672 -k1,6987:14817973,7215516:205673 -(1,6987:14817973,7215516:0,459977,115847 -r1,7216:15176239,7215516:358266,575824,115847 -k1,6987:14817973,7215516:-358266 -) -(1,6987:14817973,7215516:358266,459977,115847 -k1,6987:14817973,7215516:3277 -h1,6987:15172962,7215516:0,411205,112570 -) -k1,6987:15381912,7215516:205673 -k1,6987:16535236,7215516:205673 -k1,6987:19480313,7215516:205672 -k1,6987:20790268,7215516:205673 -k1,6987:22838813,7215516:205673 -k1,6987:23660524,7215516:205673 -k1,6987:26215006,7215516:205672 -k1,6987:28507345,7215516:205673 -k1,6987:32583029,7215516:0 -) -(1,6988:6797234,8057004:25785795,505283,134348 -k1,6987:10152948,8057004:174596 -k1,6987:10978973,8057004:174597 -k1,6987:12888962,8057004:174596 -(1,6987:12888962,8057004:0,452978,115847 -r1,7216:14654076,8057004:1765114,568825,115847 -k1,6987:12888962,8057004:-1765114 -) -(1,6987:12888962,8057004:1765114,452978,115847 -g1,6987:13947375,8057004 -h1,6987:14650799,8057004:0,411205,112570 -) -k1,6987:15002342,8057004:174596 -k1,6987:15646832,8057004:174597 -k1,6987:16352925,8057004:174596 -k1,6987:19157482,8057004:174597 -k1,6987:19983506,8057004:174596 -k1,6987:21092645,8057004:174596 -k1,6987:21682060,8057004:174572 -k1,6987:23939391,8057004:174597 -(1,6987:23939391,8057004:0,452978,115847 -r1,7216:31683605,8057004:7744214,568825,115847 -k1,6987:23939391,8057004:-7744214 -) -(1,6987:23939391,8057004:7744214,452978,115847 -k1,6987:23939391,8057004:3277 -h1,6987:31680328,8057004:0,411205,112570 -) -k1,6987:31858201,8057004:174596 -k1,6987:32583029,8057004:0 -) -(1,6988:6797234,8898492:25785795,505283,134348 -k1,6987:8264300,8898492:182560 -k1,6987:10530904,8898492:182559 -k1,6987:13684866,8898492:182560 -k1,6987:16328302,8898492:182559 -k1,6987:16866722,8898492:182560 -k1,6987:19619603,8898492:182559 -k1,6987:21500201,8898492:182560 -k1,6987:23418153,8898492:182559 -(1,6987:23418153,8898492:0,459977,115847 -r1,7216:23776419,8898492:358266,575824,115847 -k1,6987:23418153,8898492:-358266 -) -(1,6987:23418153,8898492:358266,459977,115847 -k1,6987:23418153,8898492:3277 -h1,6987:23773142,8898492:0,411205,112570 -) -k1,6987:23958979,8898492:182560 -k1,6987:24792966,8898492:182559 -k1,6987:27179502,8898492:182560 -k1,6987:27717921,8898492:182559 -k1,6987:30697558,8898492:182560 -k1,6987:32583029,8898492:0 -) -(1,6988:6797234,9739980:25785795,513147,134348 -g1,6987:8100745,9739980 -g1,6987:9047740,9739980 -g1,6987:10600943,9739980 -g1,6987:12777393,9739980 -g1,6987:14674660,9739980 -k1,6988:32583029,9739980:14412679 -g1,6988:32583029,9739980 -) -] -g1,6988:32583029,9874328 -) -h1,6988:6630773,9874328:0,0,0 -(1,6991:6630773,11201246:25952256,513147,134348 -h1,6990:6630773,11201246:983040,0,0 -k1,6990:10703079,11201246:296122 -k1,6990:11685363,11201246:296122 -k1,6990:13375436,11201246:296122 -k1,6990:16578735,11201246:296122 -k1,6990:17340818,11201246:296122 -k1,6990:18505292,11201246:296122 -k1,6990:21005389,11201246:296121 -k1,6990:21657371,11201246:296122 -k1,6990:23826512,11201246:296122 -k1,6990:26505523,11201246:296122 -k1,6990:28369266,11201246:296122 -k1,6990:29021248,11201246:296122 -k1,6990:30706733,11201246:296122 -k1,6990:32583029,11201246:0 -) -(1,6991:6630773,12042734:25952256,513147,134348 -k1,6990:8615556,12042734:249390 -k1,6990:12311483,12042734:249389 -k1,6990:15473948,12042734:249390 -k1,6990:16181435,12042734:249390 -k1,6990:16962321,12042734:249389 -k1,6990:17973239,12042734:249390 -k1,6990:20488209,12042734:249390 -k1,6990:23914784,12042734:249390 -k1,6990:25431639,12042734:249389 -k1,6990:26036889,12042734:249390 -k1,6990:28264156,12042734:249390 -k1,6990:29196430,12042734:249389 -k1,6990:31513481,12042734:249390 -k1,6990:32583029,12042734:0 -) -(1,6991:6630773,12884222:25952256,505283,134348 -k1,6990:7870188,12884222:220330 -k1,6990:14031356,12884222:220329 -k1,6990:14783183,12884222:220330 -k1,6990:17890373,12884222:220329 -k1,6990:18870921,12884222:220330 -k1,6990:21518704,12884222:220329 -(1,6990:21518704,12884222:0,452978,115847 -r1,7216:25745800,12884222:4227096,568825,115847 -k1,6990:21518704,12884222:-4227096 -) -(1,6990:21518704,12884222:4227096,452978,115847 -g1,6990:23280540,12884222 -g1,6990:23983964,12884222 -h1,6990:25742523,12884222:0,411205,112570 -) -k1,6990:26139800,12884222:220330 -k1,6990:27228481,12884222:220329 -k1,6990:28553093,12884222:220330 -k1,6990:31206118,12884222:220329 -k1,6990:32583029,12884222:0 -) -(1,6991:6630773,13725710:25952256,513147,126483 -g1,6990:9645429,13725710 -g1,6990:10496086,13725710 -g1,6990:13602492,13725710 -g1,6990:15335919,13725710 -g1,6990:16526708,13725710 -g1,6990:17792208,13725710 -g1,6990:21168622,13725710 -g1,6990:21983889,13725710 -g1,6990:23202203,13725710 -g1,6990:24768513,13725710 -g1,6990:25627034,13725710 -g1,6990:27215626,13725710 -k1,6991:32583029,13725710:2987135 -g1,6991:32583029,13725710 -) -v1,6993:6630773,14877318:0,393216,0 -(1,7054:6630773,33722871:25952256,19238769,196608 -g1,7054:6630773,33722871 -g1,7054:6630773,33722871 -g1,7054:6434165,33722871 -(1,7054:6434165,33722871:0,19238769,196608 -r1,7216:32779637,33722871:26345472,19435377,196608 -k1,7054:6434165,33722871:-26345472 -) -(1,7054:6434165,33722871:26345472,19238769,196608 -[1,7054:6630773,33722871:25952256,19042161,0 -(1,6995:6630773,15091228:25952256,410518,82312 -(1,6994:6630773,15091228:0,0,0 -g1,6994:6630773,15091228 -g1,6994:6630773,15091228 -g1,6994:6303093,15091228 -(1,6994:6303093,15091228:0,0,0 -) -g1,6994:6630773,15091228 -) -k1,6995:6630773,15091228:0 -g1,6995:13585979,15091228 -h1,6995:14218270,15091228:0,0,0 -k1,6995:32583030,15091228:18364760 -g1,6995:32583030,15091228 -) -(1,6999:6630773,15757406:25952256,404226,76021 -(1,6997:6630773,15757406:0,0,0 -g1,6997:6630773,15757406 -g1,6997:6630773,15757406 -g1,6997:6303093,15757406 -(1,6997:6303093,15757406:0,0,0 -) -g1,6997:6630773,15757406 -) -g1,6999:7579210,15757406 -g1,6999:8843793,15757406 -h1,6999:10108376,15757406:0,0,0 -k1,6999:32583028,15757406:22474652 -g1,6999:32583028,15757406 -) -(1,7001:6630773,17078944:25952256,410518,82312 -(1,7000:6630773,17078944:0,0,0 -g1,7000:6630773,17078944 -g1,7000:6630773,17078944 -g1,7000:6303093,17078944 -(1,7000:6303093,17078944:0,0,0 -) -g1,7000:6630773,17078944 -) -k1,7001:6630773,17078944:0 -g1,7001:12953687,17078944 -g1,7001:13585979,17078944 -h1,7001:14534416,17078944:0,0,0 -k1,7001:32583028,17078944:18048612 -g1,7001:32583028,17078944 -) -(1,7005:6630773,17745122:25952256,404226,76021 -(1,7003:6630773,17745122:0,0,0 -g1,7003:6630773,17745122 -g1,7003:6630773,17745122 -g1,7003:6303093,17745122 -(1,7003:6303093,17745122:0,0,0 -) -g1,7003:6630773,17745122 -) -g1,7005:7579210,17745122 -g1,7005:8843793,17745122 -h1,7005:10424521,17745122:0,0,0 -k1,7005:32583029,17745122:22158508 -g1,7005:32583029,17745122 -) -(1,7007:6630773,19066660:25952256,410518,82312 -(1,7006:6630773,19066660:0,0,0 -g1,7006:6630773,19066660 -g1,7006:6630773,19066660 -g1,7006:6303093,19066660 -(1,7006:6303093,19066660:0,0,0 -) -g1,7006:6630773,19066660 -) -k1,7007:6630773,19066660:0 -g1,7007:12953687,19066660 -g1,7007:13585979,19066660 -h1,7007:17695872,19066660:0,0,0 -k1,7007:32583029,19066660:14887157 -g1,7007:32583029,19066660 -) -(1,7011:6630773,19732838:25952256,404226,76021 -(1,7009:6630773,19732838:0,0,0 -g1,7009:6630773,19732838 -g1,7009:6630773,19732838 -g1,7009:6303093,19732838 -(1,7009:6303093,19732838:0,0,0 -) -g1,7009:6630773,19732838 -) -g1,7011:7579210,19732838 -g1,7011:8843793,19732838 -h1,7011:10424521,19732838:0,0,0 -k1,7011:32583029,19732838:22158508 -g1,7011:32583029,19732838 -) -(1,7013:6630773,21054376:25952256,410518,82312 -(1,7012:6630773,21054376:0,0,0 -g1,7012:6630773,21054376 -g1,7012:6630773,21054376 -g1,7012:6303093,21054376 -(1,7012:6303093,21054376:0,0,0 -) -g1,7012:6630773,21054376 -) -k1,7013:6630773,21054376:0 -g1,7013:14218271,21054376 -h1,7013:15799000,21054376:0,0,0 -k1,7013:32583028,21054376:16784028 -g1,7013:32583028,21054376 -) -(1,7017:6630773,21720554:25952256,404226,76021 -(1,7015:6630773,21720554:0,0,0 -g1,7015:6630773,21720554 -g1,7015:6630773,21720554 -g1,7015:6303093,21720554 -(1,7015:6303093,21720554:0,0,0 -) -g1,7015:6630773,21720554 -) -g1,7017:7579210,21720554 -g1,7017:8843793,21720554 -h1,7017:10108376,21720554:0,0,0 -k1,7017:32583028,21720554:22474652 -g1,7017:32583028,21720554 -) -(1,7019:6630773,23042092:25952256,410518,82312 -(1,7018:6630773,23042092:0,0,0 -g1,7018:6630773,23042092 -g1,7018:6630773,23042092 -g1,7018:6303093,23042092 -(1,7018:6303093,23042092:0,0,0 -) -g1,7018:6630773,23042092 -) -k1,7019:6630773,23042092:0 -g1,7019:12321396,23042092 -h1,7019:12953687,23042092:0,0,0 -k1,7019:32583029,23042092:19629342 -g1,7019:32583029,23042092 -) -(1,7023:6630773,23708270:25952256,404226,76021 -(1,7021:6630773,23708270:0,0,0 -g1,7021:6630773,23708270 -g1,7021:6630773,23708270 -g1,7021:6303093,23708270 -(1,7021:6303093,23708270:0,0,0 -) -g1,7021:6630773,23708270 -) -g1,7023:7579210,23708270 -g1,7023:8843793,23708270 -h1,7023:10424521,23708270:0,0,0 -k1,7023:32583029,23708270:22158508 -g1,7023:32583029,23708270 -) -(1,7025:6630773,25029808:25952256,410518,82312 -(1,7024:6630773,25029808:0,0,0 -g1,7024:6630773,25029808 -g1,7024:6630773,25029808 -g1,7024:6303093,25029808 -(1,7024:6303093,25029808:0,0,0 -) -g1,7024:6630773,25029808 -) -k1,7025:6630773,25029808:0 -g1,7025:11689104,25029808 -g1,7025:12321396,25029808 -h1,7025:13269833,25029808:0,0,0 -k1,7025:32583029,25029808:19313196 -g1,7025:32583029,25029808 -) -(1,7029:6630773,25695986:25952256,404226,76021 -(1,7027:6630773,25695986:0,0,0 -g1,7027:6630773,25695986 -g1,7027:6630773,25695986 -g1,7027:6303093,25695986 -(1,7027:6303093,25695986:0,0,0 -) -g1,7027:6630773,25695986 -) -g1,7029:7579210,25695986 -g1,7029:8843793,25695986 -h1,7029:10108376,25695986:0,0,0 -k1,7029:32583028,25695986:22474652 -g1,7029:32583028,25695986 -) -(1,7031:6630773,27017524:25952256,410518,82312 -(1,7030:6630773,27017524:0,0,0 -g1,7030:6630773,27017524 -g1,7030:6630773,27017524 -g1,7030:6303093,27017524 -(1,7030:6303093,27017524:0,0,0 -) -g1,7030:6630773,27017524 -) -k1,7031:6630773,27017524:0 -g1,7031:11689104,27017524 -g1,7031:12321396,27017524 -h1,7031:16431289,27017524:0,0,0 -k1,7031:32583029,27017524:16151740 -g1,7031:32583029,27017524 -) -(1,7035:6630773,27683702:25952256,404226,76021 -(1,7033:6630773,27683702:0,0,0 -g1,7033:6630773,27683702 -g1,7033:6630773,27683702 -g1,7033:6303093,27683702 -(1,7033:6303093,27683702:0,0,0 -) -g1,7033:6630773,27683702 -) -g1,7035:7579210,27683702 -g1,7035:8843793,27683702 -h1,7035:10108376,27683702:0,0,0 -k1,7035:32583028,27683702:22474652 -g1,7035:32583028,27683702 -) -(1,7037:6630773,29005240:25952256,410518,82312 -(1,7036:6630773,29005240:0,0,0 -g1,7036:6630773,29005240 -g1,7036:6630773,29005240 -g1,7036:6303093,29005240 -(1,7036:6303093,29005240:0,0,0 -) -g1,7036:6630773,29005240 -) -k1,7037:6630773,29005240:0 -g1,7037:12953688,29005240 -h1,7037:14534417,29005240:0,0,0 -k1,7037:32583029,29005240:18048612 -g1,7037:32583029,29005240 -) -(1,7041:6630773,29671418:25952256,404226,76021 -(1,7039:6630773,29671418:0,0,0 -g1,7039:6630773,29671418 -g1,7039:6630773,29671418 -g1,7039:6303093,29671418 -(1,7039:6303093,29671418:0,0,0 -) -g1,7039:6630773,29671418 -) -g1,7041:7579210,29671418 -g1,7041:8843793,29671418 -h1,7041:10424521,29671418:0,0,0 -k1,7041:32583029,29671418:22158508 -g1,7041:32583029,29671418 -) -(1,7043:6630773,30992956:25952256,410518,101187 -(1,7042:6630773,30992956:0,0,0 -g1,7042:6630773,30992956 -g1,7042:6630773,30992956 -g1,7042:6303093,30992956 -(1,7042:6303093,30992956:0,0,0 -) -g1,7042:6630773,30992956 -) -k1,7043:6630773,30992956:0 -g1,7043:12953687,30992956 -g1,7043:13585979,30992956 -g1,7043:14534417,30992956 -g1,7043:16115146,30992956 -g1,7043:16747438,30992956 -h1,7043:18960457,30992956:0,0,0 -k1,7043:32583029,30992956:13622572 -g1,7043:32583029,30992956 -) -(1,7047:6630773,31659134:25952256,404226,76021 -(1,7045:6630773,31659134:0,0,0 -g1,7045:6630773,31659134 -g1,7045:6630773,31659134 -g1,7045:6303093,31659134 -(1,7045:6303093,31659134:0,0,0 -) -g1,7045:6630773,31659134 -) -g1,7047:7579210,31659134 -g1,7047:8843793,31659134 -h1,7047:10108376,31659134:0,0,0 -k1,7047:32583028,31659134:22474652 -g1,7047:32583028,31659134 -) -(1,7049:6630773,32980672:25952256,410518,101187 -(1,7048:6630773,32980672:0,0,0 -g1,7048:6630773,32980672 -g1,7048:6630773,32980672 -g1,7048:6303093,32980672 -(1,7048:6303093,32980672:0,0,0 -) -g1,7048:6630773,32980672 -) -k1,7049:6630773,32980672:0 -g1,7049:12953687,32980672 -g1,7049:13585979,32980672 -g1,7049:17695873,32980672 -g1,7049:19276602,32980672 -g1,7049:19908894,32980672 -h1,7049:22121913,32980672:0,0,0 -k1,7049:32583029,32980672:10461116 -g1,7049:32583029,32980672 -) -(1,7053:6630773,33646850:25952256,404226,76021 -(1,7051:6630773,33646850:0,0,0 -g1,7051:6630773,33646850 -g1,7051:6630773,33646850 -g1,7051:6303093,33646850 -(1,7051:6303093,33646850:0,0,0 -) -g1,7051:6630773,33646850 -) -g1,7053:7579210,33646850 -g1,7053:8843793,33646850 -h1,7053:10108376,33646850:0,0,0 -k1,7053:32583028,33646850:22474652 -g1,7053:32583028,33646850 -) -] -) -g1,7054:32583029,33722871 -g1,7054:6630773,33722871 -g1,7054:6630773,33722871 -g1,7054:32583029,33722871 -g1,7054:32583029,33722871 -) -h1,7054:6630773,33919479:0,0,0 -v1,7058:6630773,35731828:0,393216,0 -(1,7059:6630773,38771902:25952256,3433290,0 -g1,7059:6630773,38771902 -g1,7059:6303093,38771902 -r1,7216:6401397,38771902:98304,3433290,0 -g1,7059:6600626,38771902 -g1,7059:6797234,38771902 -[1,7059:6797234,38771902:25785795,3433290,0 -(1,7059:6797234,36152412:25785795,813800,267386 -(1,7058:6797234,36152412:0,813800,267386 -r1,7216:8134168,36152412:1336934,1081186,267386 -k1,7058:6797234,36152412:-1336934 -) -(1,7058:6797234,36152412:1336934,813800,267386 -) -k1,7058:8452071,36152412:317903 -k1,7058:8779751,36152412:327680 -k1,7058:9725490,36152412:317904 -k1,7058:12674665,36152412:317904 -k1,7058:13643996,36152412:317903 -k1,7058:16695407,36152412:317904 -k1,7058:18204755,36152412:317903 -k1,7058:19912022,36152412:317904 -k1,7058:22610193,36152412:317903 -k1,7058:23947182,36152412:317904 -k1,7058:27479626,36152412:317903 -k1,7058:30544144,36152412:317904 -(1,7058:30544144,36152412:0,452978,115847 -r1,7216:31605834,36152412:1061690,568825,115847 -k1,7058:30544144,36152412:-1061690 -) -(1,7058:30544144,36152412:1061690,452978,115847 -g1,7058:31250845,36152412 -h1,7058:31602557,36152412:0,411205,112570 -) -k1,7058:31923737,36152412:317903 -k1,7058:32583029,36152412:0 -) -(1,7059:6797234,36993900:25785795,513147,134348 -k1,7058:12110729,36993900:134840 -k1,7058:12861608,36993900:134841 -k1,7058:15576600,36993900:134840 -k1,7058:18528832,36993900:134840 -k1,7058:20418727,36993900:134841 -k1,7058:23640313,36993900:134840 -k1,7058:26553881,36993900:134841 -k1,7058:30441312,36993900:134840 -k1,7058:32583029,36993900:0 -) -(1,7059:6797234,37835388:25785795,513147,134348 -k1,7058:8265341,37835388:200641 -k1,7058:10774160,37835388:200641 -k1,7058:12206877,37835388:200640 -k1,7058:14686205,37835388:200641 -h1,7058:16228923,37835388:0,0,0 -k1,7058:16429564,37835388:200641 -k1,7058:17439575,37835388:200641 -k1,7058:19138368,37835388:200640 -h1,7058:20333745,37835388:0,0,0 -k1,7058:20534386,37835388:200641 -k1,7058:21682678,37835388:200641 -k1,7058:24000787,37835388:200641 -k1,7058:25010797,37835388:200640 -k1,7058:26230523,37835388:200641 -k1,7058:29947826,37835388:200641 -k1,7058:32583029,37835388:0 -) -(1,7059:6797234,38676876:25785795,513147,95026 -g1,7058:8385826,38676876 -g1,7058:10791652,38676876 -g1,7058:12182326,38676876 -k1,7059:32583029,38676876:17878222 -g1,7059:32583029,38676876 -) -] -g1,7059:32583029,38771902 -) -h1,7059:6630773,38771902:0,0,0 -v1,7062:6630773,40098820:0,393216,0 -(1,7216:6630773,45706769:25952256,6001165,0 -g1,7216:6630773,45706769 -g1,7216:6303093,45706769 -r1,7216:6401397,45706769:98304,6001165,0 -g1,7216:6600626,45706769 -g1,7216:6797234,45706769 -[1,7216:6797234,45706769:25785795,6001165,0 -(1,7063:6797234,40531358:25785795,825754,196608 -(1,7062:6797234,40531358:0,825754,196608 -r1,7216:8834093,40531358:2036859,1022362,196608 -k1,7062:6797234,40531358:-2036859 -) -(1,7062:6797234,40531358:2036859,825754,196608 -) -k1,7062:9124418,40531358:290325 -k1,7062:10442347,40531358:327680 -k1,7062:13076238,40531358:290324 -k1,7062:14755926,40531358:290325 -k1,7062:17252847,40531358:290324 -k1,7062:18534732,40531358:290325 -k1,7062:21175177,40531358:290324 -k1,7062:23033123,40531358:290325 -k1,7062:24647274,40531358:290324 -k1,7062:25620484,40531358:290325 -k1,7062:26672337,40531358:290325 -k1,7062:29390115,40531358:290324 -k1,7062:32583029,40531358:0 -) -(1,7063:6797234,41372846:25785795,513147,126483 -k1,7062:9258665,41372846:153253 -k1,7062:10603364,41372846:153254 -k1,7062:12980909,41372846:153253 -k1,7062:13785591,41372846:153254 -k1,7062:14957929,41372846:153253 -k1,7062:19321870,41372846:153253 -k1,7062:19945017,41372846:153254 -k1,7062:20629767,41372846:153253 -k1,7062:22068836,41372846:153253 -k1,7062:24852050,41372846:153254 -k1,7062:25656731,41372846:153253 -k1,7062:28833816,41372846:153254 -k1,7062:30376432,41372846:153253 -k1,7062:32583029,41372846:0 -) -(1,7063:6797234,42214334:25785795,513147,134348 -k1,7062:9512456,42214334:236650 -k1,7062:11316728,42214334:236651 -k1,7062:14460555,42214334:236650 -k1,7062:16399176,42214334:236651 -k1,7062:18025189,42214334:236650 -k1,7062:20468436,42214334:236650 -k1,7062:21896532,42214334:236651 -k1,7062:24291938,42214334:236650 -k1,7062:26836767,42214334:236651 -k1,7062:28264862,42214334:236650 -k1,7062:32583029,42214334:0 -) -(1,7063:6797234,43055822:25785795,513147,134348 -k1,7062:7650349,43055822:193823 -k1,7062:9656897,43055822:193822 -k1,7062:10478555,43055822:193823 -k1,7062:12369105,43055822:193823 -k1,7062:14260309,43055822:193822 -k1,7062:17681125,43055822:193823 -k1,7062:20486558,43055822:193823 -k1,7062:23123562,43055822:193822 -k1,7062:26700353,43055822:193823 -k1,7062:27847725,43055822:193823 -k1,7062:29321465,43055822:193822 -k1,7062:30890889,43055822:193823 -k1,7062:32583029,43055822:0 -) -(1,7063:6797234,43897310:25785795,505283,126483 -g1,7062:9988182,43897310 -g1,7062:11758964,43897310 -g1,7062:12644355,43897310 -g1,7062:13862669,43897310 -g1,7062:16179366,43897310 -g1,7062:17370155,43897310 -g1,7062:18847991,43897310 -g1,7062:22137243,43897310 -g1,7062:22952510,43897310 -(1,7062:22952510,43897310:0,459977,115847 -r1,7216:28586453,43897310:5633943,575824,115847 -k1,7062:22952510,43897310:-5633943 -) -(1,7062:22952510,43897310:5633943,459977,115847 -k1,7062:22952510,43897310:3277 -h1,7062:28583176,43897310:0,411205,112570 -) -k1,7063:32583029,43897310:3822906 -g1,7063:32583029,43897310 -) -(1,7065:6797234,44738798:25785795,513147,102891 -h1,7064:6797234,44738798:983040,0,0 -k1,7064:8938998,44738798:205175 -k1,7064:10236657,44738798:205174 -k1,7064:10797692,44738798:205175 -k1,7064:13161622,44738798:205174 -k1,7064:15986926,44738798:205175 -k1,7064:18343647,44738798:205174 -k1,7064:19740267,44738798:205175 -k1,7064:20301301,44738798:205174 -k1,7064:22574137,44738798:205175 -k1,7064:23975998,44738798:205174 -k1,7064:26249489,44738798:205175 -k1,7064:27446223,44738798:205174 -k1,7064:29791149,44738798:205175 -k1,7064:31563944,44738798:205174 -k1,7064:32583029,44738798:0 -) -(1,7065:6797234,45580286:25785795,513147,126483 -k1,7064:8921381,45580286:146270 -k1,7064:9719079,45580286:146270 -k1,7064:10884434,45580286:146270 -k1,7064:12564902,45580286:146270 -k1,7064:13370464,45580286:146270 -k1,7064:14535819,45580286:146270 -k1,7064:16071452,45580286:146270 -k1,7064:18267688,45580286:146270 -k1,7064:20885976,45580286:146270 -(1,7064:20885976,45580286:0,459977,115847 -r1,7216:26519919,45580286:5633943,575824,115847 -k1,7064:20885976,45580286:-5633943 -) -(1,7064:20885976,45580286:5633943,459977,115847 -k1,7064:20885976,45580286:3277 -h1,7064:26516642,45580286:0,411205,112570 -) -k1,7064:26666189,45580286:146270 -k1,7064:27760110,45580286:146270 -k1,7064:28677083,45580286:146270 -k1,7065:32583029,45580286:0 -k1,7065:32583029,45580286:0 -) -] -g1,7216:32583029,45706769 -) -] -(1,7216:32583029,45706769:0,0,0 -g1,7216:32583029,45706769 -) -) -] -(1,7216:6630773,47279633:25952256,0,0 -h1,7216:6630773,47279633:25952256,0,0 -) -] -(1,7216:4262630,4025873:0,0,0 -[1,7216:-473656,4025873:0,0,0 -(1,7216:-473656,-710413:0,0,0 -(1,7216:-473656,-710413:0,0,0 -g1,7216:-473656,-710413 -) -g1,7216:-473656,-710413 -) -] -) -] -!24186 -}116 -!12 -{117 -[1,7216:4262630,47279633:28320399,43253760,0 -(1,7216:4262630,4025873:0,0,0 -[1,7216:-473656,4025873:0,0,0 -(1,7216:-473656,-710413:0,0,0 -(1,7216:-473656,-644877:0,0,0 -k1,7216:-473656,-644877:-65536 +k1,6188:3078556,49800853:-34777008 +) +] +g1,6188:6630773,4812305 +k1,6188:24358919,4812305:16931228 +g1,6188:25981590,4812305 +g1,6188:26804066,4812305 +g1,6188:30302377,4812305 +) +) +] +[1,6188:6630773,45706769:25952256,40108032,0 +(1,6188:6630773,45706769:25952256,40108032,0 +(1,6188:6630773,45706769:0,0,0 +g1,6188:6630773,45706769 +) +[1,6188:6630773,45706769:25952256,40108032,0 +(1,6166:6630773,6254097:25952256,32768,229376 +(1,6166:6630773,6254097:0,32768,229376 +(1,6166:6630773,6254097:5505024,32768,229376 +r1,6188:12135797,6254097:5505024,262144,229376 +) +k1,6166:6630773,6254097:-5505024 +) +(1,6166:6630773,6254097:25952256,32768,0 +r1,6188:32583029,6254097:25952256,32768,0 +) +) +(1,6166:6630773,7885949:25952256,615776,151780 +(1,6166:6630773,7885949:1974731,582746,0 +g1,6166:6630773,7885949 +g1,6166:8605504,7885949 +) +g1,6166:10655733,7885949 +g1,6166:12837296,7885949 +g1,6166:16257489,7885949 +g1,6166:17967192,7885949 +k1,6166:32583029,7885949:9687267 +g1,6166:32583029,7885949 +) +(1,6169:6630773,9144245:25952256,513147,134348 +k1,6168:8027439,9144245:199979 +k1,6168:9616780,9144245:199978 +k1,6168:10685111,9144245:199979 +k1,6168:12336056,9144245:199978 +k1,6168:16103815,9144245:199979 +k1,6168:17495238,9144245:199978 +k1,6168:20125292,9144245:199979 +k1,6168:20941308,9144245:199978 +k1,6168:21729800,9144245:199979 +k1,6168:22545816,9144245:199978 +k1,6168:24347495,9144245:199979 +k1,6168:26244855,9144245:199978 +k1,6168:29279266,9144245:199979 +k1,6168:31046865,9144245:199978 +k1,6169:32583029,9144245:0 +) +(1,6169:6630773,10009325:25952256,513147,126483 +k1,6168:10247704,10009325:266731 +k1,6168:12091888,10009325:266732 +k1,6168:13044781,10009325:266731 +k1,6168:14633374,10009325:266732 +k1,6168:15559397,10009325:266731 +k1,6168:19765497,10009325:266731 +k1,6168:20715114,10009325:266732 +k1,6168:23584935,10009325:266731 +k1,6168:25323606,10009325:266732 +k1,6168:28434600,10009325:266731 +k1,6168:32583029,10009325:0 +) +(1,6169:6630773,10874405:25952256,513147,134348 +k1,6168:8345304,10874405:146910 +k1,6168:9873057,10874405:146909 +k1,6168:13815812,10874405:146910 +k1,6168:15356673,10874405:146910 +k1,6168:16772360,10874405:146910 +k1,6168:18385309,10874405:146909 +k1,6168:19215104,10874405:146910 +k1,6168:20123542,10874405:146910 +k1,6168:22964637,10874405:146910 +k1,6168:25670072,10874405:146909 +k1,6168:28344706,10874405:146910 +k1,6168:30910550,10874405:146910 +k1,6169:32583029,10874405:0 +) +(1,6169:6630773,11739485:25952256,513147,126483 +k1,6168:8167037,11739485:161319 +k1,6168:9895978,11739485:161320 +k1,6168:10413157,11739485:161319 +k1,6168:13658601,11739485:161320 +k1,6168:17470931,11739485:161319 +k1,6168:19199872,11739485:161320 +k1,6168:21964281,11739485:161319 +k1,6168:23322288,11739485:161320 +k1,6168:25163950,11739485:161319 +k1,6168:25984562,11739485:161320 +k1,6168:27277688,11739485:161319 +k1,6168:28828371,11739485:161320 +k1,6168:31015408,11739485:161319 +k1,6168:32583029,11739485:0 +) +(1,6169:6630773,12604565:25952256,513147,134348 +k1,6168:9517088,12604565:173124 +k1,6168:11198851,12604565:173124 +k1,6168:13419975,12604565:173124 +k1,6168:14640365,12604565:173125 +k1,6168:18288208,12604565:173124 +k1,6168:20833080,12604565:173124 +k1,6168:21657632,12604565:173124 +k1,6168:23988201,12604565:173124 +k1,6168:24844210,12604565:173124 +k1,6168:27481489,12604565:173125 +k1,6168:29222234,12604565:173124 +k1,6168:31314252,12604565:173124 +k1,6168:32583029,12604565:0 +) +(1,6169:6630773,13469645:25952256,513147,126483 +k1,6168:8041704,13469645:275192 +k1,6168:10028040,13469645:275191 +k1,6168:12972513,13469645:275192 +k1,6168:16695553,13469645:275191 +k1,6168:19202246,13469645:275192 +k1,6168:22773243,13469645:275191 +k1,6168:24039995,13469645:275192 +k1,6168:24974478,13469645:275191 +k1,6168:27692852,13469645:275192 +k1,6168:28619471,13469645:275191 +k1,6168:31563944,13469645:275192 +k1,6168:32583029,13469645:0 +) +(1,6169:6630773,14334725:25952256,513147,134348 +k1,6168:8722985,14334725:217882 +k1,6168:9600159,14334725:217882 +k1,6168:10837126,14334725:217882 +k1,6168:12444371,14334725:217882 +k1,6168:13853698,14334725:217882 +k1,6168:14687618,14334725:217882 +k1,6168:16607470,14334725:217882 +k1,6168:18522734,14334725:217882 +k1,6168:22812368,14334725:217882 +k1,6168:25291897,14334725:217882 +k1,6168:26125817,14334725:217882 +k1,6168:27362784,14334725:217882 +k1,6168:31923737,14334725:217882 +k1,6168:32583029,14334725:0 +) +(1,6169:6630773,15199805:25952256,513147,134348 +k1,6168:9556365,15199805:254345 +k1,6168:13106516,15199805:254345 +k1,6168:14170231,15199805:254345 +k1,6168:15876198,15199805:254345 +k1,6168:18440688,15199805:254346 +k1,6168:20581159,15199805:254345 +k1,6168:22793064,15199805:254345 +k1,6168:27568083,15199805:254345 +k1,6168:28588544,15199805:254345 +k1,6168:31601955,15199805:254345 +k1,6169:32583029,15199805:0 +) +(1,6169:6630773,16064885:25952256,513147,134348 +k1,6168:9003125,16064885:283720 +k1,6168:10234497,16064885:283721 +k1,6168:11907580,16064885:283720 +k1,6168:14745894,16064885:283721 +k1,6168:18793347,16064885:283720 +k1,6168:20645345,16064885:283721 +k1,6168:21588357,16064885:283720 +k1,6168:24191397,16064885:283721 +k1,6168:25869068,16064885:283720 +k1,6168:27542152,16064885:283721 +k1,6168:29090717,16064885:283720 +k1,6168:30060600,16064885:283721 +k1,6168:30700180,16064885:283720 +k1,6168:32583029,16064885:0 +) +(1,6169:6630773,16929965:25952256,513147,134348 +k1,6168:8275678,16929965:178209 +k1,6168:10568078,16929965:178209 +k1,6168:13093787,16929965:178209 +k1,6168:14463441,16929965:178209 +k1,6168:16339688,16929965:178209 +k1,6168:18945351,16929965:178209 +k1,6168:20762615,16929965:178209 +k1,6168:21626986,16929965:178209 +k1,6168:25207824,16929965:178209 +k1,6168:26037461,16929965:178209 +k1,6168:29415138,16929965:178209 +k1,6168:30080914,16929965:178188 +k1,6168:31648486,16929965:178209 +k1,6168:32583029,16929965:0 +) +(1,6169:6630773,17795045:25952256,513147,134348 +g1,6168:7361499,17795045 +g1,6168:7916588,17795045 +g1,6168:10403024,17795045 +g1,6168:15274970,17795045 +g1,6168:18560945,17795045 +g1,6168:19419466,17795045 +g1,6168:21008058,17795045 +g1,6168:22601238,17795045 +g1,6168:25022138,17795045 +k1,6169:32583029,17795045:3580234 +g1,6169:32583029,17795045 +) +(1,6171:6630773,18660125:25952256,513147,134348 +h1,6170:6630773,18660125:983040,0,0 +k1,6170:8393954,18660125:152306 +k1,6170:9134772,18660125:152305 +k1,6170:10610905,18660125:152306 +k1,6170:11754771,18660125:152306 +k1,6170:12926161,18660125:152305 +k1,6170:14680167,18660125:152306 +k1,6170:17133442,18660125:152306 +k1,6170:18671833,18660125:152305 +k1,6170:19483431,18660125:152306 +k1,6170:21925565,18660125:152306 +k1,6170:24055091,18660125:152305 +k1,6170:25155048,18660125:152306 +k1,6170:27567691,18660125:152306 +k1,6170:29602845,18660125:152305 +k1,6170:31144514,18660125:152306 +k1,6170:32583029,18660125:0 +) +(1,6171:6630773,19525205:25952256,513147,134348 +k1,6170:7413366,19525205:154758 +k1,6170:9169825,19525205:154759 +k1,6170:11021965,19525205:154758 +k1,6170:12045076,19525205:154759 +k1,6170:13015102,19525205:154758 +k1,6170:14236132,19525205:154759 +k1,6170:15921156,19525205:154758 +k1,6170:17279156,19525205:154759 +k1,6170:19217149,19525205:154758 +k1,6170:22519602,19525205:154759 +k1,6170:23399188,19525205:154758 +k1,6170:27189229,19525205:154759 +k1,6170:30761034,19525205:154758 +k1,6170:31575085,19525205:154759 +k1,6171:32583029,19525205:0 +) +(1,6171:6630773,20390285:25952256,513147,126483 +k1,6170:10102160,20390285:194587 +k1,6170:11288307,20390285:194587 +k1,6170:13084595,20390285:194588 +k1,6170:16584163,20390285:194587 +k1,6170:18816920,20390285:194587 +k1,6170:19627545,20390285:194587 +k1,6170:20177993,20390285:194588 +k1,6170:23198492,20390285:194587 +k1,6170:25038033,20390285:194587 +k1,6170:26556447,20390285:194587 +k1,6170:28618811,20390285:194588 +k1,6170:30202761,20390285:194587 +k1,6170:32583029,20390285:0 +) +(1,6171:6630773,21255365:25952256,513147,134348 +k1,6170:8716078,21255365:210975 +k1,6170:11216882,21255365:210976 +k1,6170:12532139,21255365:210975 +k1,6170:14218329,21255365:210975 +k1,6170:15115467,21255365:210976 +k1,6170:16835081,21255365:210975 +k1,6170:19999764,21255365:210975 +k1,6170:21229824,21255365:210975 +k1,6170:23748978,21255365:210976 +k1,6170:25151398,21255365:210975 +k1,6170:27586665,21255365:210975 +k1,6170:28665993,21255365:210976 +k1,6170:31966991,21255365:210975 +k1,6170:32583029,21255365:0 +) +(1,6171:6630773,22120445:25952256,505283,126483 +g1,6170:7849087,22120445 +g1,6170:10802794,22120445 +k1,6171:32583028,22120445:19188940 +g1,6171:32583028,22120445 +) +(1,6173:6630773,22985525:25952256,505283,134348 +h1,6172:6630773,22985525:983040,0,0 +k1,6172:9049709,22985525:172362 +k1,6172:9636887,22985525:172335 +k1,6172:11768775,22985525:172362 +k1,6172:13045419,22985525:172362 +k1,6172:14692996,22985525:172362 +k1,6172:18148056,22985525:172362 +k1,6172:20992321,22985525:172362 +k1,6172:23454510,22985525:172361 +k1,6172:24278300,22985525:172362 +k1,6172:26077921,22985525:172362 +k1,6172:27994851,22985525:172362 +k1,6172:31394206,22985525:172362 +k1,6172:32583029,22985525:0 +) +(1,6173:6630773,23850605:25952256,513147,134348 +k1,6172:7451427,23850605:161362 +k1,6172:11593445,23850605:161361 +k1,6172:13471850,23850605:161362 +k1,6172:14779436,23850605:161361 +k1,6172:18258230,23850605:161362 +k1,6172:19411151,23850605:161361 +k1,6172:20894374,23850605:161362 +k1,6172:21722891,23850605:161361 +k1,6172:22299058,23850605:161324 +k1,6172:23651865,23850605:161362 +k1,6172:25758335,23850605:161361 +k1,6172:26532459,23850605:161362 +k1,6172:29041320,23850605:161361 +k1,6172:29861974,23850605:161362 +k1,6172:32583029,23850605:0 +) +(1,6173:6630773,24715685:25952256,513147,126483 +k1,6172:10598728,24715685:160969 +k1,6172:11442583,24715685:160970 +k1,6172:14572988,24715685:160969 +k1,6172:15495486,24715685:160970 +k1,6172:17541270,24715685:160969 +k1,6172:19849199,24715685:160970 +k1,6172:21001728,24715685:160969 +k1,6172:22675924,24715685:160970 +k1,6172:25887594,24715685:160969 +k1,6172:26810092,24715685:160970 +k1,6172:27385866,24715685:160931 +k1,6172:28738280,24715685:160969 +k1,6172:30871884,24715685:160970 +k1,6172:32583029,24715685:0 +) +(1,6173:6630773,25580765:25952256,505283,134348 +g1,6172:7934284,25580765 +g1,6172:9750942,25580765 +g1,6172:11339534,25580765 +g1,6172:13274156,25580765 +g1,6172:16582413,25580765 +g1,6172:18940398,25580765 +g1,6172:19936545,25580765 +k1,6173:32583029,25580765:11373120 +g1,6173:32583029,25580765 +) +(1,6174:6630773,28411925:25952256,32768,229376 +(1,6174:6630773,28411925:0,32768,229376 +(1,6174:6630773,28411925:5505024,32768,229376 +r1,6188:12135797,28411925:5505024,262144,229376 +) +k1,6174:6630773,28411925:-5505024 +) +(1,6174:6630773,28411925:25952256,32768,0 +r1,6188:32583029,28411925:25952256,32768,0 +) +) +(1,6174:6630773,30043777:25952256,606339,14155 +(1,6174:6630773,30043777:1974731,582746,14155 +g1,6174:6630773,30043777 +g1,6174:8605504,30043777 +) +k1,6174:32583030,30043777:22132556 +g1,6174:32583030,30043777 +) +(1,6177:6630773,31302073:25952256,513147,134348 +k1,6176:7479245,31302073:220637 +k1,6176:8288396,31302073:220638 +k1,6176:10798861,31302073:220637 +k1,6176:11678790,31302073:220637 +k1,6176:13454596,31302073:220637 +(1,6176:13454596,31302073:0,452978,115847 +r1,6188:14867997,31302073:1413401,568825,115847 +k1,6176:13454596,31302073:-1413401 +) +(1,6176:13454596,31302073:1413401,452978,115847 +k1,6176:13454596,31302073:3277 +h1,6176:14864720,31302073:0,411205,112570 +) +k1,6176:15088635,31302073:220638 +k1,6176:16300832,31302073:220637 +k1,6176:17137507,31302073:220637 +k1,6176:19589646,31302073:220638 +k1,6176:22465146,31302073:220637 +k1,6176:24887793,31302073:220637 +k1,6176:26127515,31302073:220637 +k1,6176:28656331,31302073:220638 +k1,6176:31966991,31302073:220637 +k1,6176:32583029,31302073:0 +) +(1,6177:6630773,32167153:25952256,513147,134348 +k1,6176:9301856,32167153:253460 +h1,6176:9700315,32167153:0,0,0 +k1,6176:9953776,32167153:253461 +k1,6176:11279405,32167153:253460 +k1,6176:14861439,32167153:253460 +k1,6176:15766328,32167153:253461 +k1,6176:18501636,32167153:253460 +k1,6176:19774181,32167153:253460 +k1,6176:22981350,32167153:253461 +k1,6176:24614998,32167153:253460 +k1,6176:27240206,32167153:253460 +k1,6176:28597949,32167153:253461 +k1,6176:29599175,32167153:253460 +k1,6177:32583029,32167153:0 +) +(1,6177:6630773,33032233:25952256,513147,134348 +k1,6176:8942984,33032233:236686 +k1,6176:10249217,33032233:236685 +k1,6176:13248246,33032233:236686 +k1,6176:16438639,33032233:236685 +k1,6176:17334617,33032233:236686 +k1,6176:18590387,33032233:236685 +k1,6176:20480546,33032233:236686 +k1,6176:21710757,33032233:236685 +k1,6176:23051725,33032233:236686 +k1,6176:25424884,33032233:236685 +k1,6176:26312998,33032233:236686 +k1,6176:29312026,33032233:236685 +k1,6176:31955194,33032233:236686 +k1,6176:32583029,33032233:0 +) +(1,6177:6630773,33897313:25952256,513147,102891 +k1,6176:9668115,33897313:197667 +k1,6176:11555299,33897313:197666 +k1,6176:12772051,33897313:197667 +k1,6176:15593123,33897313:197666 +k1,6176:18659956,33897313:197667 +k1,6176:19516914,33897313:197666 +k1,6176:20070441,33897313:197667 +k1,6176:22245984,33897313:197666 +k1,6176:24065667,33897313:197667 +k1,6176:25011099,33897313:197666 +k1,6176:27368178,33897313:197667 +k1,6176:29576489,33897313:197666 +k1,6176:30920381,33897313:197667 +k1,6177:32583029,33897313:0 +) +(1,6177:6630773,34762393:25952256,505283,134348 +g1,6176:8196428,34762393 +g1,6176:9078542,34762393 +g1,6176:12252450,34762393 +g1,6176:14821461,34762393 +g1,6176:16152497,34762393 +g1,6176:16766569,34762393 +g1,6176:18925324,34762393 +g1,6176:20228835,34762393 +g1,6176:21175830,34762393 +g1,6176:21730919,34762393 +g1,6176:22923674,34762393 +g1,6176:25746309,34762393 +g1,6176:28926115,34762393 +g1,6176:30827314,34762393 +k1,6177:32583029,34762393:258217 +g1,6177:32583029,34762393 +) +(1,6179:6630773,35627473:25952256,513147,134348 +h1,6178:6630773,35627473:983040,0,0 +k1,6178:8387269,35627473:145621 +k1,6178:9121403,35627473:145621 +k1,6178:10286109,35627473:145621 +k1,6178:13385438,35627473:145621 +k1,6178:14190351,35627473:145621 +k1,6178:14691832,35627473:145621 +k1,6178:15830979,35627473:145621 +k1,6178:17080881,35627473:145620 +k1,6178:17974268,35627473:145621 +k1,6178:21618856,35627473:145621 +k1,6178:22450639,35627473:145621 +k1,6178:25571595,35627473:145621 +k1,6178:26073076,35627473:145621 +k1,6178:29332312,35627473:145621 +k1,6178:30669378,35627473:145621 +k1,6179:32583029,35627473:0 +) +(1,6179:6630773,36492553:25952256,513147,134348 +k1,6178:8290035,36492553:174872 +k1,6178:11023432,36492553:174871 +k1,6178:14379422,36492553:174872 +k1,6178:17154763,36492553:174872 +k1,6178:18348720,36492553:174872 +k1,6178:20177064,36492553:174871 +k1,6178:21038098,36492553:174872 +k1,6178:22232055,36492553:174872 +k1,6178:25360635,36492553:174872 +k1,6178:26194798,36492553:174871 +k1,6178:28851518,36492553:174872 +k1,6178:31923737,36492553:174872 +k1,6178:32583029,36492553:0 +) +(1,6179:6630773,37357633:25952256,513147,134348 +k1,6178:7138939,37357633:152306 +k1,6178:8284770,37357633:152305 +k1,6178:9123238,37357633:152306 +k1,6178:10554150,37357633:152305 +k1,6178:11392618,37357633:152306 +k1,6178:14498632,37357633:152306 +k1,6178:15310229,37357633:152305 +k1,6178:15818395,37357633:152306 +k1,6178:17948577,37357633:152305 +k1,6178:19205165,37357633:152306 +k1,6178:20105237,37357633:152306 +k1,6178:22589968,37357633:152305 +k1,6178:23933719,37357633:152306 +k1,6178:26940772,37357633:152305 +k1,6178:30024503,37357633:152306 +k1,6178:32583029,37357633:0 +) +(1,6179:6630773,38222713:25952256,513147,126483 +k1,6178:8292493,38222713:153081 +k1,6178:10687561,38222713:153081 +k1,6178:11468477,38222713:153081 +k1,6178:14332782,38222713:153081 +k1,6178:16644619,38222713:153081 +k1,6178:18121527,38222713:153081 +k1,6178:19266169,38222713:153082 +k1,6178:21069447,38222713:153081 +k1,6178:24527509,38222713:153081 +k1,6178:26193816,38222713:153081 +k1,6178:27789344,38222713:153081 +k1,6178:30101181,38222713:153081 +k1,6178:32583029,38222713:0 +) +(1,6179:6630773,39087793:25952256,513147,134348 +g1,6178:8313737,39087793 +g1,6178:9504526,39087793 +g1,6178:12053876,39087793 +g1,6178:13988498,39087793 +g1,6178:16883223,39087793 +(1,6178:16883223,39087793:0,452978,115847 +r1,6188:19000048,39087793:2116825,568825,115847 +k1,6178:16883223,39087793:-2116825 +) +(1,6178:16883223,39087793:2116825,452978,115847 +k1,6178:16883223,39087793:3277 +h1,6178:18996771,39087793:0,411205,112570 +) +g1,6178:19199277,39087793 +g1,6178:22166747,39087793 +g1,6178:23052138,39087793 +(1,6178:23052138,39087793:0,452978,115847 +r1,6188:24113827,39087793:1061689,568825,115847 +k1,6178:23052138,39087793:-1061689 +) +(1,6178:23052138,39087793:1061689,452978,115847 +k1,6178:23052138,39087793:3277 +h1,6178:24110550,39087793:0,411205,112570 +) +g1,6178:24313056,39087793 +g1,6178:25043782,39087793 +g1,6178:26756237,39087793 +g1,6178:27903117,39087793 +k1,6179:32583029,39087793:2198064 +g1,6179:32583029,39087793 +) +v1,6181:6630773,39952873:0,393216,0 +(1,6184:6630773,43855839:25952256,4296182,0 +g1,6184:6630773,43855839 +g1,6184:6237557,43855839 +r1,6188:6368629,43855839:131072,4296182,0 +g1,6184:6567858,43855839 +g1,6184:6764466,43855839 +[1,6184:6764466,43855839:25818563,4296182,0 +(1,6182:6764466,40261171:25818563,701514,196608 +(1,6181:6764466,40261171:0,701514,196608 +r1,6188:8010564,40261171:1246098,898122,196608 +k1,6181:6764466,40261171:-1246098 +) +(1,6181:6764466,40261171:1246098,701514,196608 +) +k1,6181:8280652,40261171:270088 +k1,6181:8608332,40261171:327680 +k1,6181:9506256,40261171:270089 +k1,6181:10191116,40261171:270017 +k1,6181:11785032,40261171:270089 +k1,6181:13159402,40261171:270088 +k1,6181:14904705,40261171:270088 +k1,6181:15860956,40261171:270089 +k1,6181:19084752,40261171:270088 +k1,6181:20421112,40261171:270089 +k1,6181:22066801,40261171:270088 +k1,6181:24626718,40261171:270089 +k1,6181:27157143,40261171:270088 +k1,6181:28816595,40261171:270089 +k1,6181:29896053,40261171:270088 +k1,6182:32583029,40261171:0 +) +(1,6182:6764466,41126251:25818563,513147,134348 +k1,6181:8591173,41126251:228939 +k1,6181:10011557,41126251:228939 +k1,6181:13643781,41126251:228939 +k1,6181:14944889,41126251:228939 +k1,6181:16459644,41126251:228939 +k1,6181:19384079,41126251:228939 +k1,6181:23199148,41126251:228939 +k1,6181:25415794,41126251:228939 +k1,6181:28692157,41126251:228939 +k1,6181:32583029,41126251:0 +) +(1,6182:6764466,41991331:25818563,513147,134348 +g1,6181:10907652,41991331 +g1,6181:14014058,41991331 +g1,6181:16366800,41991331 +g1,6181:17757474,41991331 +g1,6181:20246531,41991331 +g1,6181:21105052,41991331 +g1,6181:22685125,41991331 +g1,6181:25265932,41991331 +k1,6182:32583029,41991331:4910615 +g1,6182:32583029,41991331 +) +(1,6184:6764466,42856411:25818563,513147,134348 +h1,6183:6764466,42856411:983040,0,0 +k1,6183:11341611,42856411:182956 +k1,6183:12175995,42856411:182956 +k1,6183:15531549,42856411:182956 +k1,6183:16860730,42856411:182956 +k1,6183:17670865,42856411:182956 +k1,6183:19137016,42856411:182956 +k1,6183:20511417,42856411:182956 +k1,6183:22812495,42856411:182955 +k1,6183:23410278,42856411:182940 +k1,6183:25086144,42856411:182956 +k1,6183:26335371,42856411:182956 +k1,6183:29951758,42856411:182956 +k1,6183:32583029,42856411:0 +) +(1,6184:6764466,43721491:25818563,505283,134348 +g1,6183:9617903,43721491 +g1,6183:10500017,43721491 +g1,6183:12681055,43721491 +g1,6183:14204111,43721491 +g1,6183:16138733,43721491 +k1,6184:32583029,43721491:13616417 +g1,6184:32583029,43721491 +) +] +g1,6184:32583029,43855839 +) +h1,6184:6630773,43855839:0,0,0 +v1,6187:6630773,44720919:0,393216,0 +] +(1,6188:32583029,45706769:0,0,0 +g1,6188:32583029,45706769 +) +) +] +(1,6188:6630773,47279633:25952256,0,0 +h1,6188:6630773,47279633:25952256,0,0 +) +] +(1,6188:4262630,4025873:0,0,0 +[1,6188:-473656,4025873:0,0,0 +(1,6188:-473656,-710413:0,0,0 +(1,6188:-473656,-710413:0,0,0 +g1,6188:-473656,-710413 +) +g1,6188:-473656,-710413 +) +] +) +] +!22126 +}99 +Input:874:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:875:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:876:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:877:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:878:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:879:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:880:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:881:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:882:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:883:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:884:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:885:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1127 +{100 +[1,6282:4262630,47279633:28320399,43253760,0 +(1,6282:4262630,4025873:0,0,0 +[1,6282:-473656,4025873:0,0,0 +(1,6282:-473656,-710413:0,0,0 +(1,6282:-473656,-644877:0,0,0 +k1,6282:-473656,-644877:-65536 ) -(1,7216:-473656,4736287:0,0,0 -k1,7216:-473656,4736287:5209943 +(1,6282:-473656,4736287:0,0,0 +k1,6282:-473656,4736287:5209943 ) -g1,7216:-473656,-710413 +g1,6282:-473656,-710413 ) ] ) -[1,7216:6630773,47279633:25952256,43253760,0 -[1,7216:6630773,4812305:25952256,786432,0 -(1,7216:6630773,4812305:25952256,505283,11795 -(1,7216:6630773,4812305:25952256,505283,11795 -g1,7216:3078558,4812305 -[1,7216:3078558,4812305:0,0,0 -(1,7216:3078558,2439708:0,1703936,0 -k1,7216:1358238,2439708:-1720320 -(1,5950:1358238,2439708:1720320,1703936,0 -(1,5950:1358238,2439708:1179648,16384,0 -r1,7216:2537886,2439708:1179648,16384,0 +[1,6282:6630773,47279633:25952256,43253760,0 +[1,6282:6630773,4812305:25952256,786432,0 +(1,6282:6630773,4812305:25952256,485622,11795 +(1,6282:6630773,4812305:25952256,485622,11795 +g1,6282:3078558,4812305 +[1,6282:3078558,4812305:0,0,0 +(1,6282:3078558,2439708:0,1703936,0 +k1,6282:1358238,2439708:-1720320 +(1,6148:1358238,2439708:1720320,1703936,0 +(1,6148:1358238,2439708:1179648,16384,0 +r1,6282:2537886,2439708:1179648,16384,0 ) -g1,5950:3062174,2439708 -(1,5950:3062174,2439708:16384,1703936,0 -[1,5950:3062174,2439708:25952256,1703936,0 -(1,5950:3062174,1915420:25952256,1179648,0 -(1,5950:3062174,1915420:16384,1179648,0 -r1,7216:3078558,1915420:16384,1179648,0 +g1,6148:3062174,2439708 +(1,6148:3062174,2439708:16384,1703936,0 +[1,6148:3062174,2439708:25952256,1703936,0 +(1,6148:3062174,1915420:25952256,1179648,0 +(1,6148:3062174,1915420:16384,1179648,0 +r1,6282:3078558,1915420:16384,1179648,0 ) -k1,5950:29014430,1915420:25935872 -g1,5950:29014430,1915420 +k1,6148:29014430,1915420:25935872 +g1,6148:29014430,1915420 ) ] ) ) ) ] -[1,7216:3078558,4812305:0,0,0 -(1,7216:3078558,2439708:0,1703936,0 -g1,7216:29030814,2439708 -g1,7216:36135244,2439708 -(1,5950:36135244,2439708:1720320,1703936,0 -(1,5950:36135244,2439708:16384,1703936,0 -[1,5950:36135244,2439708:25952256,1703936,0 -(1,5950:36135244,1915420:25952256,1179648,0 -(1,5950:36135244,1915420:16384,1179648,0 -r1,7216:36151628,1915420:16384,1179648,0 +[1,6282:3078558,4812305:0,0,0 +(1,6282:3078558,2439708:0,1703936,0 +g1,6282:29030814,2439708 +g1,6282:36135244,2439708 +(1,6148:36135244,2439708:1720320,1703936,0 +(1,6148:36135244,2439708:16384,1703936,0 +[1,6148:36135244,2439708:25952256,1703936,0 +(1,6148:36135244,1915420:25952256,1179648,0 +(1,6148:36135244,1915420:16384,1179648,0 +r1,6282:36151628,1915420:16384,1179648,0 ) -k1,5950:62087500,1915420:25935872 -g1,5950:62087500,1915420 +k1,6148:62087500,1915420:25935872 +g1,6148:62087500,1915420 ) ] ) -g1,5950:36675916,2439708 -(1,5950:36675916,2439708:1179648,16384,0 -r1,7216:37855564,2439708:1179648,16384,0 +g1,6148:36675916,2439708 +(1,6148:36675916,2439708:1179648,16384,0 +r1,6282:37855564,2439708:1179648,16384,0 ) ) -k1,7216:3078556,2439708:-34777008 +k1,6282:3078556,2439708:-34777008 ) ] -[1,7216:3078558,4812305:0,0,0 -(1,7216:3078558,49800853:0,16384,2228224 -k1,7216:1358238,49800853:-1720320 -(1,5950:1358238,49800853:1720320,16384,2228224 -(1,5950:1358238,49800853:1179648,16384,0 -r1,7216:2537886,49800853:1179648,16384,0 +[1,6282:3078558,4812305:0,0,0 +(1,6282:3078558,49800853:0,16384,2228224 +k1,6282:1358238,49800853:-1720320 +(1,6148:1358238,49800853:1720320,16384,2228224 +(1,6148:1358238,49800853:1179648,16384,0 +r1,6282:2537886,49800853:1179648,16384,0 ) -g1,5950:3062174,49800853 -(1,5950:3062174,52029077:16384,1703936,0 -[1,5950:3062174,52029077:25952256,1703936,0 -(1,5950:3062174,51504789:25952256,1179648,0 -(1,5950:3062174,51504789:16384,1179648,0 -r1,7216:3078558,51504789:16384,1179648,0 +g1,6148:3062174,49800853 +(1,6148:3062174,52029077:16384,1703936,0 +[1,6148:3062174,52029077:25952256,1703936,0 +(1,6148:3062174,51504789:25952256,1179648,0 +(1,6148:3062174,51504789:16384,1179648,0 +r1,6282:3078558,51504789:16384,1179648,0 ) -k1,5950:29014430,51504789:25935872 -g1,5950:29014430,51504789 +k1,6148:29014430,51504789:25935872 +g1,6148:29014430,51504789 ) ] ) ) ) -] -[1,7216:3078558,4812305:0,0,0 -(1,7216:3078558,49800853:0,16384,2228224 -g1,7216:29030814,49800853 -g1,7216:36135244,49800853 -(1,5950:36135244,49800853:1720320,16384,2228224 -(1,5950:36135244,52029077:16384,1703936,0 -[1,5950:36135244,52029077:25952256,1703936,0 -(1,5950:36135244,51504789:25952256,1179648,0 -(1,5950:36135244,51504789:16384,1179648,0 -r1,7216:36151628,51504789:16384,1179648,0 -) -k1,5950:62087500,51504789:25935872 -g1,5950:62087500,51504789 -) -] -) -g1,5950:36675916,49800853 -(1,5950:36675916,49800853:1179648,16384,0 -r1,7216:37855564,49800853:1179648,16384,0 +] +[1,6282:3078558,4812305:0,0,0 +(1,6282:3078558,49800853:0,16384,2228224 +g1,6282:29030814,49800853 +g1,6282:36135244,49800853 +(1,6148:36135244,49800853:1720320,16384,2228224 +(1,6148:36135244,52029077:16384,1703936,0 +[1,6148:36135244,52029077:25952256,1703936,0 +(1,6148:36135244,51504789:25952256,1179648,0 +(1,6148:36135244,51504789:16384,1179648,0 +r1,6282:36151628,51504789:16384,1179648,0 +) +k1,6148:62087500,51504789:25935872 +g1,6148:62087500,51504789 +) +] +) +g1,6148:36675916,49800853 +(1,6148:36675916,49800853:1179648,16384,0 +r1,6282:37855564,49800853:1179648,16384,0 +) +) +k1,6282:3078556,49800853:-34777008 +) +] +g1,6282:6630773,4812305 +g1,6282:6630773,4812305 +g1,6282:8203637,4812305 +k1,6282:31786111,4812305:23582474 +) +) +] +[1,6282:6630773,45706769:25952256,40108032,0 +(1,6282:6630773,45706769:25952256,40108032,0 +(1,6282:6630773,45706769:0,0,0 +g1,6282:6630773,45706769 +) +[1,6282:6630773,45706769:25952256,40108032,0 +v1,6188:6630773,6254097:0,393216,0 +(1,6188:6630773,13609518:25952256,7748637,0 +g1,6188:6630773,13609518 +g1,6188:6237557,13609518 +r1,6282:6368629,13609518:131072,7748637,0 +g1,6188:6567858,13609518 +g1,6188:6764466,13609518 +[1,6188:6764466,13609518:25818563,7748637,0 +(1,6188:6764466,6562395:25818563,701514,196608 +(1,6187:6764466,6562395:0,701514,196608 +r1,6282:8010564,6562395:1246098,898122,196608 +k1,6187:6764466,6562395:-1246098 +) +(1,6187:6764466,6562395:1246098,701514,196608 +) +k1,6187:8221385,6562395:210821 +k1,6187:8549065,6562395:327680 +k1,6187:9913320,6562395:210821 +k1,6187:11315585,6562395:210820 +k1,6187:13879149,6562395:210821 +k1,6187:16379798,6562395:210821 +k1,6187:17582179,6562395:210821 +k1,6187:19849520,6562395:210821 +k1,6187:21573567,6562395:210821 +k1,6187:22400425,6562395:210820 +k1,6187:23026078,6562395:210810 +k1,6187:25766589,6562395:210821 +k1,6187:27357597,6562395:210820 +k1,6187:29284151,6562395:210821 +k1,6187:29953069,6562395:210821 +k1,6187:32583029,6562395:0 +) +(1,6188:6764466,7427475:25818563,513147,126483 +k1,6187:7663402,7427475:247508 +k1,6187:9592563,7427475:247507 +k1,6187:10787722,7427475:247508 +k1,6187:13870316,7427475:247507 +k1,6187:15136909,7427475:247508 +k1,6187:16947450,7427475:247507 +k1,6187:21032746,7427475:247508 +k1,6187:22227904,7427475:247507 +k1,6187:25880007,7427475:247508 +k1,6187:27318959,7427475:247507 +k1,6187:29739641,7427475:247508 +k1,6187:31554769,7427475:247507 +k1,6188:32583029,7427475:0 +) +(1,6188:6764466,8292555:25818563,505283,134348 +k1,6187:9598333,8292555:244540 +k1,6187:12523295,8292555:244539 +k1,6187:13383873,8292555:244540 +k1,6187:13984273,8292555:244540 +k1,6187:16101831,8292555:244539 +k1,6187:16761168,8292555:244494 +k1,6187:18965234,8292555:244540 +k1,6187:20494280,8292555:244540 +k1,6187:21843101,8292555:244539 +k1,6187:24072727,8292555:244540 +k1,6187:26609060,8292555:244539 +k1,6187:27965091,8292555:244540 +k1,6187:28895793,8292555:244540 +k1,6187:29496192,8292555:244539 +k1,6187:31202185,8292555:244540 +k1,6187:32583029,8292555:0 +) +(1,6188:6764466,9157635:25818563,513147,134348 +k1,6187:8674119,9157635:180158 +k1,6187:9873363,9157635:180159 +k1,6187:14087262,9157635:180158 +k1,6187:14926713,9157635:180159 +k1,6187:17778118,9157635:180158 +k1,6187:21406125,9157635:180158 +k1,6187:23876112,9157635:180159 +k1,6187:25450221,9157635:180158 +k1,6187:27139019,9157635:180159 +k1,6187:31622271,9157635:180158 +k1,6188:32583029,9157635:0 +) +(1,6188:6764466,10022715:25818563,505283,134348 +k1,6187:8024461,10022715:269746 +k1,6187:10973319,10022715:269746 +k1,6187:12618666,10022715:269746 +k1,6187:13649941,10022715:269747 +k1,6187:15428326,10022715:269746 +k1,6187:17940059,10022715:269746 +k1,6187:18892690,10022715:269746 +k1,6187:20629132,10022715:269746 +k1,6187:22780417,10022715:269746 +k1,6187:23666201,10022715:269746 +k1,6187:26638653,10022715:269747 +k1,6187:28652312,10022715:269746 +k1,6187:29604943,10022715:269746 +k1,6187:31341385,10022715:269746 +k1,6187:32227169,10022715:269746 +k1,6187:32583029,10022715:0 +) +(1,6188:6764466,10887795:25818563,513147,126483 +k1,6187:9850139,10887795:295150 +k1,6187:12950230,10887795:295150 +k1,6187:14011497,10887795:295151 +k1,6187:17968799,10887795:295150 +k1,6187:19548455,10887795:295150 +k1,6187:20835165,10887795:295150 +k1,6187:22737258,10887795:295150 +k1,6187:25071888,10887795:295150 +k1,6187:27298385,10887795:295151 +k1,6187:28281008,10887795:295150 +k1,6187:31601955,10887795:295150 +k1,6188:32583029,10887795:0 +) +(1,6188:6764466,11752875:25818563,513147,134348 +k1,6187:9339477,11752875:253070 +k1,6187:10208584,11752875:253069 +k1,6187:12879277,11752875:253070 +h1,6187:13277736,11752875:0,0,0 +k1,6187:13530806,11752875:253070 +k1,6187:14775435,11752875:253069 +k1,6187:16612510,11752875:253070 +k1,6187:19857299,11752875:253070 +k1,6187:20769661,11752875:253070 +k1,6187:22225971,11752875:253069 +k1,6187:25637221,11752875:253070 +k1,6187:28294807,11752875:253070 +k1,6187:30061102,11752875:253069 +k1,6187:30965600,11752875:253070 +k1,6187:32583029,11752875:0 +) +(1,6188:6764466,12617955:25818563,505283,126483 +k1,6187:7998650,12617955:215099 +k1,6187:12051536,12617955:215098 +k1,6187:12918063,12617955:215099 +k1,6187:14775493,12617955:215098 +k1,6187:16598190,12617955:215099 +k1,6187:18207239,12617955:215098 +k1,6187:21093585,12617955:215099 +k1,6187:23196776,12617955:215099 +k1,6187:24098036,12617955:215098 +k1,6187:27403158,12617955:215099 +k1,6187:28234294,12617955:215098 +k1,6187:30867016,12617955:215099 +h1,6187:31265475,12617955:0,0,0 +k1,6187:31480573,12617955:215098 +k1,6187:32227169,12617955:215099 +k1,6187:32583029,12617955:0 +) +(1,6188:6764466,13483035:25818563,513147,126483 +g1,6187:9239105,13483035 +k1,6188:32583028,13483035:20508836 +g1,6188:32583028,13483035 +) +] +g1,6188:32583029,13609518 +) +h1,6188:6630773,13609518:0,0,0 +(1,6191:6630773,14474598:25952256,513147,134348 +h1,6190:6630773,14474598:983040,0,0 +k1,6190:9029491,14474598:203262 +k1,6190:10538887,14474598:203263 +k1,6190:11735675,14474598:203262 +k1,6190:13039942,14474598:203262 +k1,6190:13929367,14474598:203263 +k1,6190:14921027,14474598:203262 +k1,6190:18077997,14474598:203262 +k1,6190:19936043,14474598:203262 +k1,6190:22901649,14474598:203263 +k1,6190:25586759,14474598:203262 +k1,6190:27241643,14474598:203262 +k1,6190:28601616,14474598:203263 +k1,6190:31931601,14474598:203262 +k1,6190:32583029,14474598:0 +) +(1,6191:6630773,15339678:25952256,513147,122846 +k1,6190:7207686,15339678:221053 +k1,6190:10191082,15339678:221053 +k1,6190:12140974,15339678:221052 +(1,6190:12140974,15339678:0,452978,115847 +r1,6282:14609511,15339678:2468537,568825,115847 +k1,6190:12140974,15339678:-2468537 +) +(1,6190:12140974,15339678:2468537,452978,115847 +k1,6190:12140974,15339678:3277 +h1,6190:14606234,15339678:0,411205,112570 +) +k1,6190:15004234,15339678:221053 +(1,6190:15004234,15339678:0,452978,115847 +r1,6282:18176194,15339678:3171960,568825,115847 +k1,6190:15004234,15339678:-3171960 +) +(1,6190:15004234,15339678:3171960,452978,115847 +k1,6190:15004234,15339678:3277 +h1,6190:18172917,15339678:0,411205,112570 +) +k1,6190:18397247,15339678:221053 +k1,6190:19809745,15339678:221053 +(1,6190:19809745,15339678:0,452978,122846 +r1,6282:22278282,15339678:2468537,575824,122846 +k1,6190:19809745,15339678:-2468537 +) +(1,6190:19809745,15339678:2468537,452978,122846 +k1,6190:19809745,15339678:3277 +h1,6190:22275005,15339678:0,411205,112570 +) +k1,6190:22673004,15339678:221052 +k1,6190:24090744,15339678:221053 +k1,6190:25966581,15339678:221053 +k1,6190:28495812,15339678:221053 +k1,6190:30002680,15339678:221052 +k1,6190:31966991,15339678:221053 +k1,6190:32583029,15339678:0 +) +(1,6191:6630773,16204758:25952256,505283,134348 +g1,6190:8338641,16204758 +g1,6190:10724806,16204758 +g1,6190:11496164,16204758 +g1,6190:12267522,16204758 +g1,6190:13658196,16204758 +g1,6190:14429554,16204758 +k1,6191:32583029,16204758:14183304 +g1,6191:32583029,16204758 +) +v1,6193:6630773,16889613:0,393216,0 +(1,6197:6630773,17223690:25952256,727293,196608 +g1,6197:6630773,17223690 +g1,6197:6630773,17223690 +g1,6197:6434165,17223690 +(1,6197:6434165,17223690:0,727293,196608 +r1,6282:32779637,17223690:26345472,923901,196608 +k1,6197:6434165,17223690:-26345472 +) +(1,6197:6434165,17223690:26345472,727293,196608 +[1,6197:6630773,17223690:25952256,530685,0 +(1,6195:6630773,17117444:25952256,424439,106246 +(1,6194:6630773,17117444:0,0,0 +g1,6194:6630773,17117444 +g1,6194:6630773,17117444 +g1,6194:6303093,17117444 +(1,6194:6303093,17117444:0,0,0 +) +g1,6194:6630773,17117444 +) +g1,6195:8954451,17117444 +g1,6195:9950313,17117444 +g1,6195:12273991,17117444 +g1,6195:12937899,17117444 +g1,6195:14597669,17117444 +g1,6195:15261577,17117444 +g1,6195:15925485,17117444 +g1,6195:17917209,17117444 +g1,6195:18581117,17117444 +g1,6195:19245025,17117444 +g1,6195:21900657,17117444 +h1,6195:24224335,17117444:0,0,0 +k1,6195:32583029,17117444:8358694 +g1,6195:32583029,17117444 +) +] +) +g1,6197:32583029,17223690 +g1,6197:6630773,17223690 +g1,6197:6630773,17223690 +g1,6197:32583029,17223690 +g1,6197:32583029,17223690 +) +h1,6197:6630773,17420298:0,0,0 +v1,6201:6630773,18105153:0,393216,0 +(1,6217:6630773,22941576:25952256,5229639,196608 +g1,6217:6630773,22941576 +g1,6217:6630773,22941576 +g1,6217:6434165,22941576 +(1,6217:6434165,22941576:0,5229639,196608 +r1,6282:32779637,22941576:26345472,5426247,196608 +k1,6217:6434165,22941576:-26345472 +) +(1,6217:6434165,22941576:26345472,5229639,196608 +[1,6217:6630773,22941576:25952256,5033031,0 +(1,6203:6630773,18332984:25952256,424439,79822 +(1,6202:6630773,18332984:0,0,0 +g1,6202:6630773,18332984 +g1,6202:6630773,18332984 +g1,6202:6303093,18332984 +(1,6202:6303093,18332984:0,0,0 +) +g1,6202:6630773,18332984 +) +k1,6203:6630773,18332984:0 +h1,6203:10282266,18332984:0,0,0 +k1,6203:32583030,18332984:22300764 +g1,6203:32583030,18332984 +) +(1,6210:6630773,19148911:25952256,431045,9908 +(1,6205:6630773,19148911:0,0,0 +g1,6205:6630773,19148911 +g1,6205:6630773,19148911 +g1,6205:6303093,19148911 +(1,6205:6303093,19148911:0,0,0 +) +g1,6205:6630773,19148911 +) +g1,6210:7626635,19148911 +g1,6210:9286405,19148911 +g1,6210:10282267,19148911 +h1,6210:10614221,19148911:0,0,0 +k1,6210:32583029,19148911:21968808 +g1,6210:32583029,19148911 +) +(1,6210:6630773,19833766:25952256,431045,79822 +h1,6210:6630773,19833766:0,0,0 +g1,6210:7626635,19833766 +g1,6210:7958589,19833766 +g1,6210:8622497,19833766 +g1,6210:9618359,19833766 +g1,6210:10946175,19833766 +g1,6210:12937899,19833766 +g1,6210:13601807,19833766 +g1,6210:14265715,19833766 +h1,6210:14597669,19833766:0,0,0 +k1,6210:32583029,19833766:17985360 +g1,6210:32583029,19833766 +) +(1,6210:6630773,20518621:25952256,431045,106246 +h1,6210:6630773,20518621:0,0,0 +g1,6210:7626635,20518621 +g1,6210:7958589,20518621 +g1,6210:8622497,20518621 +g1,6210:9618359,20518621 +g1,6210:10946175,20518621 +h1,6210:12273991,20518621:0,0,0 +k1,6210:32583029,20518621:20309038 +g1,6210:32583029,20518621 +) +(1,6210:6630773,21203476:25952256,431045,112852 +h1,6210:6630773,21203476:0,0,0 +g1,6210:7626635,21203476 +g1,6210:7958589,21203476 +g1,6210:8622497,21203476 +g1,6210:9618359,21203476 +g1,6210:11278129,21203476 +g1,6210:13269853,21203476 +g1,6210:14929623,21203476 +h1,6210:16589393,21203476:0,0,0 +k1,6210:32583029,21203476:15993636 +g1,6210:32583029,21203476 +) +(1,6212:6630773,22019403:25952256,424439,79822 +(1,6211:6630773,22019403:0,0,0 +g1,6211:6630773,22019403 +g1,6211:6630773,22019403 +g1,6211:6303093,22019403 +(1,6211:6303093,22019403:0,0,0 +) +g1,6211:6630773,22019403 +) +k1,6212:6630773,22019403:0 +h1,6212:10946174,22019403:0,0,0 +k1,6212:32583030,22019403:21636856 +g1,6212:32583030,22019403 +) +(1,6216:6630773,22835330:25952256,424439,106246 +(1,6214:6630773,22835330:0,0,0 +g1,6214:6630773,22835330 +g1,6214:6630773,22835330 +g1,6214:6303093,22835330 +(1,6214:6303093,22835330:0,0,0 +) +g1,6214:6630773,22835330 +) +g1,6216:7626635,22835330 +g1,6216:8954451,22835330 +g1,6216:10282267,22835330 +g1,6216:11610083,22835330 +h1,6216:12605945,22835330:0,0,0 +k1,6216:32583029,22835330:19977084 +g1,6216:32583029,22835330 +) +] +) +g1,6217:32583029,22941576 +g1,6217:6630773,22941576 +g1,6217:6630773,22941576 +g1,6217:32583029,22941576 +g1,6217:32583029,22941576 +) +h1,6217:6630773,23138184:0,0,0 +(1,6253:6630773,29978591:25952256,6119511,0 +k1,6253:9238345,29978591:2607572 +(1,6220:9238345,29978591:0,0,0 +g1,6220:9238345,29978591 +g1,6220:9238345,29978591 +g1,6220:8910665,29978591 +(1,6220:8910665,29978591:0,0,0 +) +g1,6220:9238345,29978591 +) +(1,6251:9238345,29978591:20737113,6119511,0 +g1,6251:15452340,29978591 +(1,6251:15452340,26304540:0,0,0 +(1,6233:15452340,26304540:0,0,0 +g1,6231:15452340,26304540 +g1,6232:15452340,26304540 +g1,6232:15452340,26304540 +g1,6232:15452340,26304540 +g1,6232:15452340,26304540 +g1,6233:15452340,26304540 +) +(1,6251:15452340,26304540:0,0,0 +g1,6225:15452340,26304540 +(1,6229:15452340,26304540:0,0,0 +(1,6229:15452340,26304540:0,0,0 +g1,6229:15452340,26304540 +g1,6229:15452340,26304540 +g1,6229:15452340,26304540 +g1,6229:15452340,26304540 +g1,6229:15452340,26304540 +(1,6229:15452340,26304540:0,0,0 +(1,6229:15452340,26304540:6983284,1035058,187851 +[1,6229:15452340,26304540:6983284,1035058,187851 +(1,6229:15452340,25832722:6983284,563240,184180 +g1,6228:15452340,25832722 +(1,6228:15452340,25832722:1120190,563240,184180 +k1,6228:16231849,25832722:779509 +g1,6228:16572530,25832722 +(1,6228:16572530,25832722:0,563240,174744 +(1,6228:16572530,25832722:0,0,0 +(1,6228:16572530,25832722:0,0,0 +g1,6228:16572530,25832722 +g1,6228:16572530,25832722 +g1,6228:16572530,25832722 +g1,6228:16572530,25832722 +g1,6228:16572530,25832722 +(1,6228:16572530,25832722:0,0,0 +(1,6228:16572530,25832722:331874,388497,0 +(1,6228:16572530,25832722:331874,388497,0 +) +g1,6228:16904404,25832722 +) +) +g1,6228:16572530,25832722 +g1,6228:16572530,25832722 +) +) +g1,6228:16572530,25832722 +) +) +g1,6228:16572530,25832722 +(1,6228:16572530,25832722:1120190,563240,184180 +g1,6228:16913211,25832722 +k1,6228:17692720,25832722:779509 +) +g1,6228:17692720,25832722 +(1,6228:17692720,25832722:1251262,563240,184180 +k1,6228:18472229,25832722:779509 +g1,6228:18943982,25832722 +(1,6228:18943982,25832722:0,563240,174744 +(1,6228:18943982,25832722:0,0,0 +(1,6228:18943982,25832722:0,0,0 +g1,6228:18943982,25832722 +g1,6228:18943982,25832722 +g1,6228:18943982,25832722 +g1,6228:18943982,25832722 +g1,6228:18943982,25832722 +(1,6228:18943982,25832722:0,0,0 +(1,6228:18943982,25832722:331874,388497,0 +(1,6228:18943982,25832722:331874,388497,0 +) +g1,6228:19275856,25832722 +) +) +g1,6228:18943982,25832722 +g1,6228:18943982,25832722 +) +) +g1,6228:18943982,25832722 +) +) +g1,6228:18943982,25832722 +(1,6228:18943982,25832722:1120190,563240,184180 +g1,6228:19284663,25832722 +k1,6228:20064172,25832722:779509 +) +g1,6228:20064172,25832722 +(1,6228:20064172,25832722:1251262,563240,184180 +k1,6228:20843681,25832722:779509 +g1,6228:21315434,25832722 +(1,6228:21315434,25832722:0,563240,184180 +(1,6228:21315434,25832722:0,0,0 +(1,6228:21315434,25832722:0,0,0 +g1,6228:21315434,25832722 +g1,6228:21315434,25832722 +g1,6228:21315434,25832722 +g1,6228:21315434,25832722 +g1,6228:21315434,25832722 +(1,6228:21315434,25832722:0,0,0 +(1,6228:21315434,25832722:331874,388497,9436 +(1,6228:21315434,25832722:331874,388497,9436 +) +g1,6228:21647308,25832722 +) +) +g1,6228:21315434,25832722 +g1,6228:21315434,25832722 +) +) +g1,6228:21315434,25832722 +) +) +g1,6228:21315434,25832722 +(1,6229:21315434,25832722:1120190,563240,184180 +g1,6229:21656115,25832722 +k1,6229:22435624,25832722:779509 +) +g1,6229:22435624,25832722 +) +(1,6229:15452340,26304540:6983284,194405,187851 +g1,6229:15452340,26304540 +(1,6229:15452340,26304540:1120190,194405,187851 +g1,6229:15452340,26304540 +g1,6229:16572530,26304540 +(1,6229:16572530,26304540:0,194405,187851 +(1,6229:16572530,26304540:0,0,0 +(1,6229:16572530,26304540:0,0,0 +g1,6229:16572530,26304540 +g1,6229:16572530,26304540 +g1,6229:16572530,26304540 +g1,6229:16572530,26304540 +g1,6229:16572530,26304540 +(1,6229:16572530,26304540:0,0,0 +(1,6229:16572530,26304540:1864679,6554,0 +(1,6229:16572530,26304540:1864679,6554,0 +(1,6229:16572530,26304540:1864679,6554,0 +r1,6282:18437209,26304540:1864679,6554,0 +) ) +g1,6229:18437209,26304540 ) -k1,7216:3078556,49800853:-34777008 -) -] -g1,7216:6630773,4812305 -k1,7216:24358918,4812305:16532768 -g1,7216:25981589,4812305 -g1,7216:26804065,4812305 -g1,7216:30302376,4812305 -) -) -] -[1,7216:6630773,45706769:25952256,40108032,0 -(1,7216:6630773,45706769:25952256,40108032,0 -(1,7216:6630773,45706769:0,0,0 -g1,7216:6630773,45706769 -) -[1,7216:6630773,45706769:25952256,40108032,0 -v1,7216:6630773,6254097:0,393216,0 -(1,7216:6630773,45706769:25952256,39845888,0 -g1,7216:6630773,45706769 -g1,7216:6303093,45706769 -r1,7216:6401397,45706769:98304,39845888,0 -g1,7216:6600626,45706769 -g1,7216:6797234,45706769 -[1,7216:6797234,45706769:25785795,39845888,0 -v1,7067:6797234,6254097:0,393216,0 -(1,7087:6797234,13861168:25785795,8000287,196608 -g1,7087:6797234,13861168 -g1,7087:6797234,13861168 -g1,7087:6600626,13861168 -(1,7087:6600626,13861168:0,8000287,196608 -r1,7216:32779637,13861168:26179011,8196895,196608 -k1,7087:6600625,13861168:-26179012 -) -(1,7087:6600626,13861168:26179011,8000287,196608 -[1,7087:6797234,13861168:25785795,7803679,0 -(1,7069:6797234,6468007:25785795,410518,101187 -(1,7068:6797234,6468007:0,0,0 -g1,7068:6797234,6468007 -g1,7068:6797234,6468007 -g1,7068:6469554,6468007 -(1,7068:6469554,6468007:0,0,0 -) -g1,7068:6797234,6468007 -) -g1,7069:9958691,6468007 -g1,7069:10907129,6468007 -g1,7069:12804004,6468007 -g1,7069:13436296,6468007 -g1,7069:14384734,6468007 -g1,7069:15649317,6468007 -g1,7069:16281609,6468007 -g1,7069:17230047,6468007 -g1,7069:19126921,6468007 -g1,7069:19759213,6468007 -g1,7069:20707651,6468007 -g1,7069:22288380,6468007 -g1,7069:22920672,6468007 -h1,7069:23552964,6468007:0,0,0 -k1,7069:32583029,6468007:9030065 -g1,7069:32583029,6468007 -) -(1,7070:6797234,7134185:25785795,410518,101187 -h1,7070:6797234,7134185:0,0,0 -g1,7070:9958691,7134185 -g1,7070:10907129,7134185 -g1,7070:15649316,7134185 -g1,7070:16597754,7134185 -g1,7070:17546192,7134185 -h1,7070:18494629,7134185:0,0,0 -k1,7070:32583029,7134185:14088400 -g1,7070:32583029,7134185 -) -(1,7071:6797234,7800363:25785795,410518,101187 -h1,7071:6797234,7800363:0,0,0 -g1,7071:8061817,7800363 -g1,7071:9010255,7800363 -g1,7071:15965461,7800363 -h1,7071:19126918,7800363:0,0,0 -k1,7071:32583029,7800363:13456111 -g1,7071:32583029,7800363 -) -(1,7072:6797234,8466541:25785795,410518,6290 -h1,7072:6797234,8466541:0,0,0 -h1,7072:7745671,8466541:0,0,0 -k1,7072:32583029,8466541:24837358 -g1,7072:32583029,8466541 -) -(1,7080:6797234,9132719:25785795,410518,101187 -(1,7074:6797234,9132719:0,0,0 -g1,7074:6797234,9132719 -g1,7074:6797234,9132719 -g1,7074:6469554,9132719 -(1,7074:6469554,9132719:0,0,0 -) -g1,7074:6797234,9132719 -) -g1,7080:7745671,9132719 -g1,7080:8061817,9132719 -g1,7080:8377963,9132719 -g1,7080:8694109,9132719 -g1,7080:9010255,9132719 -g1,7080:9326401,9132719 -g1,7080:9642547,9132719 -g1,7080:12804004,9132719 -h1,7080:15649315,9132719:0,0,0 -k1,7080:32583029,9132719:16933714 -g1,7080:32583029,9132719 -) -(1,7080:6797234,9798897:25785795,388497,6290 -h1,7080:6797234,9798897:0,0,0 -g1,7080:7745671,9798897 -g1,7080:9010254,9798897 -g1,7080:9326400,9798897 -g1,7080:9642546,9798897 -g1,7080:9958692,9798897 -g1,7080:10274838,9798897 -g1,7080:10590984,9798897 -g1,7080:10907130,9798897 -g1,7080:11223276,9798897 -g1,7080:11539422,9798897 -g1,7080:11855568,9798897 -g1,7080:12171714,9798897 -g1,7080:12804006,9798897 -g1,7080:13120152,9798897 -g1,7080:13436298,9798897 -g1,7080:13752444,9798897 -g1,7080:14068590,9798897 -g1,7080:14384736,9798897 -g1,7080:14700882,9798897 -g1,7080:15017028,9798897 -g1,7080:15333174,9798897 -h1,7080:15649320,9798897:0,0,0 -k1,7080:32583028,9798897:16933708 -g1,7080:32583028,9798897 -) -(1,7080:6797234,10465075:25785795,388497,6290 -h1,7080:6797234,10465075:0,0,0 -g1,7080:7745671,10465075 -g1,7080:9010254,10465075 -g1,7080:9326400,10465075 -g1,7080:9642546,10465075 -g1,7080:9958692,10465075 -g1,7080:10274838,10465075 -g1,7080:10590984,10465075 -g1,7080:10907130,10465075 -g1,7080:11223276,10465075 -g1,7080:11539422,10465075 -g1,7080:11855568,10465075 -g1,7080:12171714,10465075 -g1,7080:12804006,10465075 -g1,7080:13120152,10465075 -g1,7080:13436298,10465075 -g1,7080:13752444,10465075 -g1,7080:14068590,10465075 -g1,7080:14384736,10465075 -g1,7080:14700882,10465075 -g1,7080:15017028,10465075 -g1,7080:15333174,10465075 -h1,7080:15649320,10465075:0,0,0 -k1,7080:32583028,10465075:16933708 -g1,7080:32583028,10465075 -) -(1,7080:6797234,11131253:25785795,404226,9436 -h1,7080:6797234,11131253:0,0,0 -g1,7080:7745671,11131253 -g1,7080:9642545,11131253 -g1,7080:9958691,11131253 -g1,7080:10274837,11131253 -g1,7080:10590983,11131253 -g1,7080:10907129,11131253 -g1,7080:11223275,11131253 -g1,7080:11539421,11131253 -g1,7080:11855567,11131253 -g1,7080:12171713,11131253 -g1,7080:12804005,11131253 -g1,7080:13120151,11131253 -g1,7080:13436297,11131253 -g1,7080:13752443,11131253 -g1,7080:14068589,11131253 -g1,7080:14384735,11131253 -g1,7080:14700881,11131253 -g1,7080:15017027,11131253 -g1,7080:15333173,11131253 -h1,7080:15649319,11131253:0,0,0 -k1,7080:32583029,11131253:16933710 -g1,7080:32583029,11131253 -) -(1,7080:6797234,11797431:25785795,410518,6290 -h1,7080:6797234,11797431:0,0,0 -g1,7080:7745671,11797431 -g1,7080:9326400,11797431 -g1,7080:9642546,11797431 -g1,7080:9958692,11797431 -g1,7080:10274838,11797431 -g1,7080:10590984,11797431 -g1,7080:10907130,11797431 -g1,7080:11223276,11797431 -g1,7080:11539422,11797431 -g1,7080:11855568,11797431 -g1,7080:12171714,11797431 -g1,7080:12804006,11797431 -g1,7080:13120152,11797431 -g1,7080:13436298,11797431 -g1,7080:13752444,11797431 -g1,7080:14068590,11797431 -g1,7080:14384736,11797431 -g1,7080:14700882,11797431 -g1,7080:15017028,11797431 -g1,7080:15333174,11797431 -h1,7080:15649320,11797431:0,0,0 -k1,7080:32583028,11797431:16933708 -g1,7080:32583028,11797431 -) -(1,7082:6797234,13118969:25785795,410518,101187 -(1,7081:6797234,13118969:0,0,0 -g1,7081:6797234,13118969 -g1,7081:6797234,13118969 -g1,7081:6469554,13118969 -(1,7081:6469554,13118969:0,0,0 -) -g1,7081:6797234,13118969 -) -h1,7082:10907128,13118969:0,0,0 -k1,7082:32583028,13118969:21675900 -g1,7082:32583028,13118969 -) -(1,7086:6797234,13785147:25785795,404226,76021 -(1,7084:6797234,13785147:0,0,0 -g1,7084:6797234,13785147 -g1,7084:6797234,13785147 -g1,7084:6469554,13785147 -(1,7084:6469554,13785147:0,0,0 -) -g1,7084:6797234,13785147 -) -g1,7086:7745671,13785147 -g1,7086:9010254,13785147 -g1,7086:9642546,13785147 -g1,7086:10274838,13785147 -g1,7086:10907130,13785147 -h1,7086:11223276,13785147:0,0,0 -k1,7086:32583028,13785147:21359752 -g1,7086:32583028,13785147 -) -] -) -g1,7087:32583029,13861168 -g1,7087:6797234,13861168 -g1,7087:6797234,13861168 -g1,7087:32583029,13861168 -g1,7087:32583029,13861168 -) -h1,7087:6797234,14057776:0,0,0 -(1,7091:6797234,15170665:25785795,513147,126483 -h1,7090:6797234,15170665:983040,0,0 -k1,7090:8517834,15170665:259803 -k1,7090:9645989,15170665:259803 -k1,7090:12204140,15170665:259803 -k1,7090:13483027,15170665:259802 -k1,7090:15720707,15170665:259803 -k1,7090:17374461,15170665:259803 -k1,7090:18553079,15170665:259803 -k1,7090:21273104,15170665:259803 -k1,7090:24228403,15170665:259803 -(1,7090:24228403,15170665:0,452978,115847 -r1,7216:25290092,15170665:1061689,568825,115847 -k1,7090:24228403,15170665:-1061689 -) -(1,7090:24228403,15170665:1061689,452978,115847 -k1,7090:24228403,15170665:3277 -h1,7090:25286815,15170665:0,411205,112570 -) -k1,7090:25549895,15170665:259803 -k1,7090:26828782,15170665:259802 -k1,7090:29156901,15170665:259803 -k1,7090:30408264,15170665:259803 -k1,7090:31734338,15170665:259803 -k1,7091:32583029,15170665:0 -) -(1,7091:6797234,16012153:25785795,513147,134348 -k1,7090:9206244,16012153:269259 -k1,7090:11043124,16012153:269259 -k1,7090:12331469,16012153:269260 -k1,7090:14578605,16012153:269259 -k1,7090:15534026,16012153:269259 -k1,7090:16907567,16012153:269259 -k1,7090:17924593,16012153:269260 -k1,7090:19633678,16012153:269259 -k1,7090:20664465,16012153:269259 -k1,7090:24127949,16012153:269259 -k1,7090:25416293,16012153:269259 -k1,7090:28068442,16012153:269260 -k1,7090:29905322,16012153:269259 -k1,7090:31193666,16012153:269259 -k1,7090:32583029,16012153:0 -) -(1,7091:6797234,16853641:25785795,513147,7863 -k1,7091:32583028,16853641:23735828 -g1,7091:32583028,16853641 -) -v1,7093:6797234,17791220:0,393216,0 -(1,7112:6797234,24665528:25785795,7267524,196608 -g1,7112:6797234,24665528 -g1,7112:6797234,24665528 -g1,7112:6600626,24665528 -(1,7112:6600626,24665528:0,7267524,196608 -r1,7216:32779637,24665528:26179011,7464132,196608 -k1,7112:6600625,24665528:-26179012 -) -(1,7112:6600626,24665528:26179011,7267524,196608 -[1,7112:6797234,24665528:25785795,7070916,0 -(1,7095:6797234,18005130:25785795,410518,101187 -(1,7094:6797234,18005130:0,0,0 -g1,7094:6797234,18005130 -g1,7094:6797234,18005130 -g1,7094:6469554,18005130 -(1,7094:6469554,18005130:0,0,0 -) -g1,7094:6797234,18005130 -) -g1,7095:8061817,18005130 -g1,7095:9010255,18005130 -g1,7095:15965461,18005130 -k1,7095:15965461,18005130:0 -h1,7095:20075355,18005130:0,0,0 -k1,7095:32583029,18005130:12507674 -g1,7095:32583029,18005130 -) -(1,7096:6797234,18671308:25785795,410518,6290 -h1,7096:6797234,18671308:0,0,0 -h1,7096:7745671,18671308:0,0,0 -k1,7096:32583029,18671308:24837358 -g1,7096:32583029,18671308 -) -(1,7104:6797234,19337486:25785795,410518,101187 -(1,7098:6797234,19337486:0,0,0 -g1,7098:6797234,19337486 -g1,7098:6797234,19337486 -g1,7098:6469554,19337486 -(1,7098:6469554,19337486:0,0,0 -) -g1,7098:6797234,19337486 -) -g1,7104:7745671,19337486 -g1,7104:8061817,19337486 -g1,7104:8377963,19337486 -g1,7104:8694109,19337486 -g1,7104:9010255,19337486 -g1,7104:9326401,19337486 -g1,7104:9642547,19337486 -g1,7104:12804004,19337486 -h1,7104:15649315,19337486:0,0,0 -k1,7104:32583029,19337486:16933714 -g1,7104:32583029,19337486 -) -(1,7104:6797234,20003664:25785795,388497,6290 -h1,7104:6797234,20003664:0,0,0 -g1,7104:7745671,20003664 -g1,7104:9010254,20003664 -g1,7104:9326400,20003664 -g1,7104:9642546,20003664 -g1,7104:9958692,20003664 -g1,7104:10274838,20003664 -g1,7104:10590984,20003664 -g1,7104:10907130,20003664 -g1,7104:11223276,20003664 -g1,7104:11539422,20003664 -g1,7104:11855568,20003664 -g1,7104:12171714,20003664 -g1,7104:12804006,20003664 -g1,7104:13120152,20003664 -g1,7104:13436298,20003664 -g1,7104:13752444,20003664 -g1,7104:14068590,20003664 -g1,7104:14384736,20003664 -g1,7104:14700882,20003664 -g1,7104:15017028,20003664 -g1,7104:15333174,20003664 -h1,7104:15649320,20003664:0,0,0 -k1,7104:32583028,20003664:16933708 -g1,7104:32583028,20003664 -) -(1,7104:6797234,20669842:25785795,388497,6290 -h1,7104:6797234,20669842:0,0,0 -g1,7104:7745671,20669842 -g1,7104:9010254,20669842 -g1,7104:9326400,20669842 -g1,7104:9642546,20669842 -g1,7104:9958692,20669842 -g1,7104:10274838,20669842 -g1,7104:10590984,20669842 -g1,7104:10907130,20669842 -g1,7104:11223276,20669842 -g1,7104:11539422,20669842 -g1,7104:11855568,20669842 -g1,7104:12171714,20669842 -g1,7104:12804006,20669842 -g1,7104:13120152,20669842 -g1,7104:13436298,20669842 -g1,7104:13752444,20669842 -g1,7104:14068590,20669842 -g1,7104:14384736,20669842 -g1,7104:14700882,20669842 -g1,7104:15017028,20669842 -g1,7104:15333174,20669842 -h1,7104:15649320,20669842:0,0,0 -k1,7104:32583028,20669842:16933708 -g1,7104:32583028,20669842 -) -(1,7104:6797234,21336020:25785795,404226,9436 -h1,7104:6797234,21336020:0,0,0 -g1,7104:7745671,21336020 -g1,7104:9642545,21336020 -g1,7104:9958691,21336020 -g1,7104:10274837,21336020 -g1,7104:10590983,21336020 -g1,7104:10907129,21336020 -g1,7104:11223275,21336020 -g1,7104:11539421,21336020 -g1,7104:11855567,21336020 -g1,7104:12171713,21336020 -g1,7104:12804005,21336020 -g1,7104:13120151,21336020 -g1,7104:13436297,21336020 -g1,7104:13752443,21336020 -g1,7104:14068589,21336020 -g1,7104:14384735,21336020 -g1,7104:14700881,21336020 -g1,7104:15017027,21336020 -g1,7104:15333173,21336020 -h1,7104:15649319,21336020:0,0,0 -k1,7104:32583029,21336020:16933710 -g1,7104:32583029,21336020 -) -(1,7104:6797234,22002198:25785795,410518,6290 -h1,7104:6797234,22002198:0,0,0 -g1,7104:7745671,22002198 -g1,7104:9326400,22002198 -g1,7104:9642546,22002198 -g1,7104:9958692,22002198 -g1,7104:10274838,22002198 -g1,7104:10590984,22002198 -g1,7104:10907130,22002198 -g1,7104:11223276,22002198 -g1,7104:11539422,22002198 -g1,7104:11855568,22002198 -g1,7104:12171714,22002198 -g1,7104:12804006,22002198 -g1,7104:13120152,22002198 -g1,7104:13436298,22002198 -g1,7104:13752444,22002198 -g1,7104:14068590,22002198 -g1,7104:14384736,22002198 -g1,7104:14700882,22002198 -g1,7104:15017028,22002198 -g1,7104:15333174,22002198 -h1,7104:15649320,22002198:0,0,0 -k1,7104:32583028,22002198:16933708 -g1,7104:32583028,22002198 -) -(1,7106:6797234,23323736:25785795,410518,101187 -(1,7105:6797234,23323736:0,0,0 -g1,7105:6797234,23323736 -g1,7105:6797234,23323736 -g1,7105:6469554,23323736 -(1,7105:6469554,23323736:0,0,0 -) -g1,7105:6797234,23323736 -) -h1,7106:10907128,23323736:0,0,0 -k1,7106:32583028,23323736:21675900 -g1,7106:32583028,23323736 -) -(1,7111:6797234,23989914:25785795,410518,6290 -(1,7108:6797234,23989914:0,0,0 -g1,7108:6797234,23989914 -g1,7108:6797234,23989914 -g1,7108:6469554,23989914 -(1,7108:6469554,23989914:0,0,0 -) -g1,7108:6797234,23989914 -) -g1,7111:7745671,23989914 -g1,7111:8061817,23989914 -g1,7111:8377963,23989914 -g1,7111:9642546,23989914 -g1,7111:9958692,23989914 -g1,7111:10274838,23989914 -g1,7111:11539421,23989914 -g1,7111:13436295,23989914 -g1,7111:13752441,23989914 -h1,7111:15017024,23989914:0,0,0 -k1,7111:32583028,23989914:17566004 -g1,7111:32583028,23989914 -) -(1,7111:6797234,24656092:25785795,388497,9436 -h1,7111:6797234,24656092:0,0,0 -g1,7111:7745671,24656092 -g1,7111:8061817,24656092 -g1,7111:8377963,24656092 -g1,7111:8694109,24656092 -g1,7111:9010255,24656092 -g1,7111:9642547,24656092 -g1,7111:9958693,24656092 -g1,7111:10274839,24656092 -g1,7111:10590985,24656092 -g1,7111:10907131,24656092 -g1,7111:11539423,24656092 -g1,7111:11855569,24656092 -g1,7111:12171715,24656092 -g1,7111:12487861,24656092 -g1,7111:12804007,24656092 -g1,7111:13436299,24656092 -g1,7111:13752445,24656092 -g1,7111:14068591,24656092 -g1,7111:14384737,24656092 -g1,7111:14700883,24656092 -h1,7111:15017029,24656092:0,0,0 -k1,7111:32583029,24656092:17566000 -g1,7111:32583029,24656092 -) -] -) -g1,7112:32583029,24665528 -g1,7112:6797234,24665528 -g1,7112:6797234,24665528 -g1,7112:32583029,24665528 -g1,7112:32583029,24665528 -) -h1,7112:6797234,24862136:0,0,0 -(1,7116:6797234,25975024:25785795,513147,126483 -h1,7115:6797234,25975024:983040,0,0 -k1,7115:8463691,25975024:205660 -k1,7115:9537703,25975024:205660 -k1,7115:11231687,25975024:205661 -k1,7115:12831298,25975024:205660 -k1,7115:13392818,25975024:205660 -k1,7115:15685800,25975024:205660 -k1,7115:18218643,25975024:205660 -k1,7115:19083596,25975024:205661 -k1,7115:19645116,25975024:205660 -k1,7115:22002323,25975024:205660 -k1,7115:23227068,25975024:205660 -k1,7115:25520050,25975024:205660 -k1,7115:26257207,25975024:205660 -k1,7115:27224396,25975024:205661 -k1,7115:29695636,25975024:205660 -k1,7115:31315563,25975024:205660 -k1,7115:32583029,25975024:0 -) -(1,7116:6797234,26816512:25785795,513147,126483 -k1,7115:9671784,26816512:171845 -k1,7115:12556819,26816512:171844 -k1,7115:13344702,26816512:171845 -k1,7115:14535632,26816512:171845 -k1,7115:16096839,26816512:171844 -k1,7115:18318650,26816512:171845 -k1,7115:18968251,26816512:171844 -k1,7115:20159181,26816512:171845 -k1,7115:22418348,26816512:171845 -k1,7115:23691197,26816512:171844 -k1,7115:24672412,26816512:171845 -k1,7115:27227146,26816512:171845 -k1,7115:29640977,26816512:171844 -k1,7115:31096017,26816512:171845 -k1,7115:32583029,26816512:0 -) -(1,7116:6797234,27658000:25785795,505283,7863 -g1,7115:7988023,27658000 -k1,7116:32583030,27658000:22071216 -g1,7116:32583030,27658000 -) -v1,7118:6797234,28595579:0,393216,0 -(1,7131:6797234,33475879:25785795,5273516,196608 -g1,7131:6797234,33475879 -g1,7131:6797234,33475879 -g1,7131:6600626,33475879 -(1,7131:6600626,33475879:0,5273516,196608 -r1,7216:32779637,33475879:26179011,5470124,196608 -k1,7131:6600625,33475879:-26179012 -) -(1,7131:6600626,33475879:26179011,5273516,196608 -[1,7131:6797234,33475879:25785795,5076908,0 -(1,7120:6797234,28803197:25785795,404226,101187 -(1,7119:6797234,28803197:0,0,0 -g1,7119:6797234,28803197 -g1,7119:6797234,28803197 -g1,7119:6469554,28803197 -(1,7119:6469554,28803197:0,0,0 -) -g1,7119:6797234,28803197 -) -g1,7120:9958691,28803197 -g1,7120:10907129,28803197 -g1,7120:15017024,28803197 -g1,7120:16597753,28803197 -g1,7120:17230045,28803197 -h1,7120:17862337,28803197:0,0,0 -k1,7120:32583029,28803197:14720692 -g1,7120:32583029,28803197 -) -(1,7121:6797234,29469375:25785795,410518,101187 -h1,7121:6797234,29469375:0,0,0 -g1,7121:8061817,29469375 -g1,7121:9010255,29469375 -g1,7121:15965461,29469375 -h1,7121:19126918,29469375:0,0,0 -k1,7121:32583029,29469375:13456111 -g1,7121:32583029,29469375 -) -(1,7122:6797234,30135553:25785795,410518,6290 -h1,7122:6797234,30135553:0,0,0 -h1,7122:7745671,30135553:0,0,0 -k1,7122:32583029,30135553:24837358 -g1,7122:32583029,30135553 -) -(1,7130:6797234,30801731:25785795,410518,101187 -(1,7124:6797234,30801731:0,0,0 -g1,7124:6797234,30801731 -g1,7124:6797234,30801731 -g1,7124:6469554,30801731 -(1,7124:6469554,30801731:0,0,0 -) -g1,7124:6797234,30801731 -) -g1,7130:7745671,30801731 -g1,7130:8061817,30801731 -g1,7130:8377963,30801731 -g1,7130:11539420,30801731 -g1,7130:12487857,30801731 -g1,7130:13436294,30801731 -h1,7130:14068585,30801731:0,0,0 -k1,7130:32583029,30801731:18514444 -g1,7130:32583029,30801731 -) -(1,7130:6797234,31467909:25785795,388497,9436 -h1,7130:6797234,31467909:0,0,0 -g1,7130:7745671,31467909 -g1,7130:8377963,31467909 -g1,7130:8694109,31467909 -g1,7130:9010255,31467909 -g1,7130:9326401,31467909 -g1,7130:9642547,31467909 -g1,7130:9958693,31467909 -g1,7130:10274839,31467909 -g1,7130:10590985,31467909 -g1,7130:10907131,31467909 -g1,7130:11539423,31467909 -g1,7130:11855569,31467909 -g1,7130:12487861,31467909 -g1,7130:12804007,31467909 -g1,7130:13436299,31467909 -g1,7130:13752445,31467909 -h1,7130:14068591,31467909:0,0,0 -k1,7130:32583029,31467909:18514438 -g1,7130:32583029,31467909 -) -(1,7130:6797234,32134087:25785795,388497,9436 -h1,7130:6797234,32134087:0,0,0 -g1,7130:7745671,32134087 -g1,7130:8377963,32134087 -g1,7130:8694109,32134087 -g1,7130:9010255,32134087 -g1,7130:9326401,32134087 -g1,7130:9642547,32134087 -g1,7130:9958693,32134087 -g1,7130:10274839,32134087 -g1,7130:10590985,32134087 -g1,7130:10907131,32134087 -g1,7130:11539423,32134087 -g1,7130:11855569,32134087 -g1,7130:12487861,32134087 -g1,7130:12804007,32134087 -g1,7130:13436299,32134087 -h1,7130:14068590,32134087:0,0,0 -k1,7130:32583030,32134087:18514440 -g1,7130:32583030,32134087 -) -(1,7130:6797234,32800265:25785795,388497,9436 -h1,7130:6797234,32800265:0,0,0 -g1,7130:7745671,32800265 -g1,7130:8377963,32800265 -g1,7130:8694109,32800265 -g1,7130:9010255,32800265 -g1,7130:9326401,32800265 -g1,7130:9642547,32800265 -g1,7130:9958693,32800265 -g1,7130:10274839,32800265 -g1,7130:10590985,32800265 -g1,7130:10907131,32800265 -g1,7130:11539423,32800265 -g1,7130:11855569,32800265 -g1,7130:12487861,32800265 -g1,7130:12804007,32800265 -g1,7130:13436299,32800265 -h1,7130:14068590,32800265:0,0,0 -k1,7130:32583030,32800265:18514440 -g1,7130:32583030,32800265 -) -(1,7130:6797234,33466443:25785795,388497,9436 -h1,7130:6797234,33466443:0,0,0 -g1,7130:7745671,33466443 -g1,7130:8377963,33466443 -g1,7130:8694109,33466443 -g1,7130:9010255,33466443 -g1,7130:9326401,33466443 -g1,7130:9642547,33466443 -g1,7130:9958693,33466443 -g1,7130:10274839,33466443 -g1,7130:10590985,33466443 -g1,7130:10907131,33466443 -g1,7130:11539423,33466443 -g1,7130:11855569,33466443 -g1,7130:12487861,33466443 -g1,7130:12804007,33466443 -g1,7130:13436299,33466443 -h1,7130:14068590,33466443:0,0,0 -k1,7130:32583030,33466443:18514440 -g1,7130:32583030,33466443 -) -] -) -g1,7131:32583029,33475879 -g1,7131:6797234,33475879 -g1,7131:6797234,33475879 -g1,7131:32583029,33475879 -g1,7131:32583029,33475879 -) -h1,7131:6797234,33672487:0,0,0 -(1,7135:6797234,34785376:25785795,513147,126483 -h1,7134:6797234,34785376:983040,0,0 -k1,7134:8451536,34785376:193505 -k1,7134:9513394,34785376:193506 -k1,7134:12005247,34785376:193505 -k1,7134:13217838,34785376:193506 -k1,7134:15498665,34785376:193505 -k1,7134:17086122,34785376:193506 -k1,7134:19975123,34785376:193505 -(1,7134:19975123,34785376:0,452978,115847 -r1,7216:21036812,34785376:1061689,568825,115847 -k1,7134:19975123,34785376:-1061689 -) -(1,7134:19975123,34785376:1061689,452978,115847 -k1,7134:19975123,34785376:3277 -h1,7134:21033535,34785376:0,411205,112570 -) -k1,7134:21403988,34785376:193506 -k1,7134:22055590,34785376:193505 -k1,7134:22780593,34785376:193506 -k1,7134:24040369,34785376:193505 -k1,7134:25821812,34785376:193506 -k1,7134:27206762,34785376:193505 -k1,7134:28419353,34785376:193506 -k1,7134:30495707,34785376:193505 -k1,7134:32583029,34785376:0 -) -(1,7135:6797234,35626864:25785795,513147,7863 -g1,7134:9769947,35626864 -g1,7134:10325036,35626864 -g1,7134:12907154,35626864 -g1,7134:13722421,35626864 -g1,7134:14940735,35626864 -g1,7134:16529327,35626864 -k1,7135:32583029,35626864:14003736 -g1,7135:32583029,35626864 -) -v1,7137:6797234,36564443:0,393216,0 -(1,7159:6797234,45510161:25785795,9338934,196608 -g1,7159:6797234,45510161 -g1,7159:6797234,45510161 -g1,7159:6600626,45510161 -(1,7159:6600626,45510161:0,9338934,196608 -r1,7216:32779637,45510161:26179011,9535542,196608 -k1,7159:6600625,45510161:-26179012 -) -(1,7159:6600626,45510161:26179011,9338934,196608 -[1,7159:6797234,45510161:25785795,9142326,0 -(1,7139:6797234,36778353:25785795,410518,101187 -(1,7138:6797234,36778353:0,0,0 -g1,7138:6797234,36778353 -g1,7138:6797234,36778353 -g1,7138:6469554,36778353 -(1,7138:6469554,36778353:0,0,0 -) -g1,7138:6797234,36778353 -) -g1,7139:8061817,36778353 -g1,7139:9010255,36778353 -g1,7139:15965461,36778353 -k1,7139:15965461,36778353:0 -h1,7139:20075355,36778353:0,0,0 -k1,7139:32583029,36778353:12507674 -g1,7139:32583029,36778353 -) -(1,7140:6797234,37444531:25785795,410518,9436 -h1,7140:6797234,37444531:0,0,0 -h1,7140:7745671,37444531:0,0,0 -k1,7140:32583029,37444531:24837358 -g1,7140:32583029,37444531 -) -(1,7148:6797234,38110709:25785795,410518,101187 -(1,7142:6797234,38110709:0,0,0 -g1,7142:6797234,38110709 -g1,7142:6797234,38110709 -g1,7142:6469554,38110709 -(1,7142:6469554,38110709:0,0,0 -) -g1,7142:6797234,38110709 -) -g1,7148:7745671,38110709 -g1,7148:8061817,38110709 -g1,7148:8377963,38110709 -g1,7148:11539420,38110709 -g1,7148:15333168,38110709 -g1,7148:19126916,38110709 -h1,7148:22604518,38110709:0,0,0 -k1,7148:32583029,38110709:9978511 -g1,7148:32583029,38110709 -) -(1,7148:6797234,38776887:25785795,388497,9436 -h1,7148:6797234,38776887:0,0,0 -g1,7148:7745671,38776887 -g1,7148:8377963,38776887 -g1,7148:8694109,38776887 -g1,7148:9010255,38776887 -g1,7148:9326401,38776887 -g1,7148:9642547,38776887 -g1,7148:9958693,38776887 -g1,7148:10274839,38776887 -g1,7148:10590985,38776887 -g1,7148:10907131,38776887 -g1,7148:11539423,38776887 -g1,7148:11855569,38776887 -g1,7148:12171715,38776887 -g1,7148:12487861,38776887 -g1,7148:12804007,38776887 -g1,7148:13120153,38776887 -g1,7148:13436299,38776887 -g1,7148:13752445,38776887 -g1,7148:14068591,38776887 -g1,7148:14384737,38776887 -g1,7148:14700883,38776887 -g1,7148:15333175,38776887 -g1,7148:15649321,38776887 -g1,7148:15965467,38776887 -g1,7148:16281613,38776887 -g1,7148:16597759,38776887 -g1,7148:16913905,38776887 -g1,7148:17230051,38776887 -g1,7148:17546197,38776887 -g1,7148:17862343,38776887 -g1,7148:18178489,38776887 -g1,7148:18494635,38776887 -g1,7148:19126927,38776887 -g1,7148:19443073,38776887 -g1,7148:19759219,38776887 -g1,7148:20075365,38776887 -g1,7148:20391511,38776887 -g1,7148:20707657,38776887 -g1,7148:21023803,38776887 -g1,7148:21339949,38776887 -g1,7148:21656095,38776887 -g1,7148:21972241,38776887 -g1,7148:22288387,38776887 -h1,7148:22604533,38776887:0,0,0 -k1,7148:32583029,38776887:9978496 -g1,7148:32583029,38776887 -) -(1,7148:6797234,39443065:25785795,388497,9436 -h1,7148:6797234,39443065:0,0,0 -g1,7148:7745671,39443065 -g1,7148:8377963,39443065 -g1,7148:8694109,39443065 -g1,7148:9010255,39443065 -g1,7148:9326401,39443065 -g1,7148:9642547,39443065 -g1,7148:9958693,39443065 -g1,7148:10274839,39443065 -g1,7148:10590985,39443065 -g1,7148:10907131,39443065 -g1,7148:11539423,39443065 -g1,7148:11855569,39443065 -g1,7148:12171715,39443065 -g1,7148:12487861,39443065 -g1,7148:12804007,39443065 -g1,7148:13120153,39443065 -g1,7148:13436299,39443065 -g1,7148:13752445,39443065 -g1,7148:14068591,39443065 -g1,7148:14384737,39443065 -g1,7148:14700883,39443065 -g1,7148:15333175,39443065 -g1,7148:15649321,39443065 -g1,7148:15965467,39443065 -g1,7148:16281613,39443065 -g1,7148:16597759,39443065 -g1,7148:16913905,39443065 -g1,7148:17230051,39443065 -g1,7148:17546197,39443065 -g1,7148:17862343,39443065 -g1,7148:18178489,39443065 -g1,7148:18494635,39443065 -g1,7148:19126927,39443065 -g1,7148:19443073,39443065 -g1,7148:19759219,39443065 -g1,7148:20075365,39443065 -g1,7148:20391511,39443065 -g1,7148:20707657,39443065 -g1,7148:21023803,39443065 -g1,7148:21339949,39443065 -g1,7148:21656095,39443065 -g1,7148:21972241,39443065 -h1,7148:22604532,39443065:0,0,0 -k1,7148:32583029,39443065:9978497 -g1,7148:32583029,39443065 -) -(1,7148:6797234,40109243:25785795,388497,9436 -h1,7148:6797234,40109243:0,0,0 -g1,7148:7745671,40109243 -g1,7148:8377963,40109243 -g1,7148:8694109,40109243 -g1,7148:9010255,40109243 -g1,7148:9326401,40109243 -g1,7148:9642547,40109243 -g1,7148:9958693,40109243 -g1,7148:10274839,40109243 -g1,7148:10590985,40109243 -g1,7148:10907131,40109243 -g1,7148:11539423,40109243 -g1,7148:11855569,40109243 -g1,7148:12171715,40109243 -g1,7148:12487861,40109243 -g1,7148:12804007,40109243 -g1,7148:13120153,40109243 -g1,7148:13436299,40109243 -g1,7148:13752445,40109243 -g1,7148:14068591,40109243 -g1,7148:14384737,40109243 -g1,7148:14700883,40109243 -g1,7148:15333175,40109243 -g1,7148:15649321,40109243 -g1,7148:15965467,40109243 -g1,7148:16281613,40109243 -g1,7148:16597759,40109243 -g1,7148:16913905,40109243 -g1,7148:17230051,40109243 -g1,7148:17546197,40109243 -g1,7148:17862343,40109243 -g1,7148:18178489,40109243 -g1,7148:18494635,40109243 -g1,7148:19126927,40109243 -g1,7148:19443073,40109243 -g1,7148:19759219,40109243 -g1,7148:20075365,40109243 -g1,7148:20391511,40109243 -g1,7148:20707657,40109243 -g1,7148:21023803,40109243 -g1,7148:21339949,40109243 -g1,7148:21656095,40109243 -g1,7148:21972241,40109243 -h1,7148:22604532,40109243:0,0,0 -k1,7148:32583029,40109243:9978497 -g1,7148:32583029,40109243 -) -(1,7148:6797234,40775421:25785795,388497,9436 -h1,7148:6797234,40775421:0,0,0 -g1,7148:7745671,40775421 -g1,7148:8377963,40775421 -g1,7148:8694109,40775421 -g1,7148:9010255,40775421 -g1,7148:9326401,40775421 -g1,7148:9642547,40775421 -g1,7148:9958693,40775421 -g1,7148:10274839,40775421 -g1,7148:10590985,40775421 -g1,7148:10907131,40775421 -g1,7148:11539423,40775421 -g1,7148:11855569,40775421 -g1,7148:12171715,40775421 -g1,7148:12487861,40775421 -g1,7148:12804007,40775421 -g1,7148:13120153,40775421 -g1,7148:13436299,40775421 -g1,7148:13752445,40775421 -g1,7148:14068591,40775421 -g1,7148:14384737,40775421 -g1,7148:14700883,40775421 -g1,7148:15333175,40775421 -g1,7148:15649321,40775421 -g1,7148:15965467,40775421 -g1,7148:16281613,40775421 -g1,7148:16597759,40775421 -g1,7148:16913905,40775421 -g1,7148:17230051,40775421 -g1,7148:17546197,40775421 -g1,7148:17862343,40775421 -g1,7148:18178489,40775421 -g1,7148:18494635,40775421 -g1,7148:19126927,40775421 -g1,7148:19443073,40775421 -g1,7148:19759219,40775421 -g1,7148:20075365,40775421 -g1,7148:20391511,40775421 -g1,7148:20707657,40775421 -g1,7148:21023803,40775421 -g1,7148:21339949,40775421 -g1,7148:21656095,40775421 -g1,7148:21972241,40775421 -h1,7148:22604532,40775421:0,0,0 -k1,7148:32583029,40775421:9978497 -g1,7148:32583029,40775421 -) -(1,7150:6797234,42096959:25785795,410518,101187 -(1,7149:6797234,42096959:0,0,0 -g1,7149:6797234,42096959 -g1,7149:6797234,42096959 -g1,7149:6469554,42096959 -(1,7149:6469554,42096959:0,0,0 -) -g1,7149:6797234,42096959 -) -h1,7150:10907128,42096959:0,0,0 -k1,7150:32583028,42096959:21675900 -g1,7150:32583028,42096959 -) -(1,7158:6797234,42763137:25785795,404226,82312 -(1,7152:6797234,42763137:0,0,0 -g1,7152:6797234,42763137 -g1,7152:6797234,42763137 -g1,7152:6469554,42763137 -(1,7152:6469554,42763137:0,0,0 -) -g1,7152:6797234,42763137 -) -g1,7158:7745671,42763137 -g1,7158:8061817,42763137 -g1,7158:8377963,42763137 -g1,7158:8694109,42763137 -g1,7158:9010255,42763137 -g1,7158:9326401,42763137 -g1,7158:10907130,42763137 -g1,7158:12487859,42763137 -k1,7158:12487859,42763137:0 -h1,7158:13752442,42763137:0,0,0 -k1,7158:32583030,42763137:18830588 -g1,7158:32583030,42763137 -) -(1,7158:6797234,43429315:25785795,404226,82312 -h1,7158:6797234,43429315:0,0,0 -g1,7158:7745671,43429315 -g1,7158:9326399,43429315 -g1,7158:9642545,43429315 -g1,7158:9958691,43429315 -g1,7158:10274837,43429315 -g1,7158:10907129,43429315 -g1,7158:11223275,43429315 -g1,7158:11539421,43429315 -g1,7158:11855567,43429315 -g1,7158:12487859,43429315 -g1,7158:12804005,43429315 -g1,7158:13120151,43429315 -g1,7158:13436297,43429315 -h1,7158:13752443,43429315:0,0,0 -k1,7158:32583029,43429315:18830586 -g1,7158:32583029,43429315 -) -(1,7158:6797234,44095493:25785795,404226,82312 -h1,7158:6797234,44095493:0,0,0 -g1,7158:7745671,44095493 -g1,7158:9326399,44095493 -g1,7158:9642545,44095493 -g1,7158:9958691,44095493 -g1,7158:10274837,44095493 -g1,7158:10907129,44095493 -g1,7158:11223275,44095493 -g1,7158:11539421,44095493 -g1,7158:11855567,44095493 -g1,7158:12487859,44095493 -g1,7158:12804005,44095493 -g1,7158:13120151,44095493 -h1,7158:13752442,44095493:0,0,0 -k1,7158:32583030,44095493:18830588 -g1,7158:32583030,44095493 -) -(1,7158:6797234,44761671:25785795,404226,82312 -h1,7158:6797234,44761671:0,0,0 -g1,7158:7745671,44761671 -g1,7158:9326399,44761671 -g1,7158:9642545,44761671 -g1,7158:9958691,44761671 -g1,7158:10274837,44761671 -g1,7158:10907129,44761671 -g1,7158:11223275,44761671 -g1,7158:11539421,44761671 -g1,7158:11855567,44761671 -g1,7158:12487859,44761671 -g1,7158:12804005,44761671 -g1,7158:13120151,44761671 -h1,7158:13752442,44761671:0,0,0 -k1,7158:32583030,44761671:18830588 -g1,7158:32583030,44761671 -) -(1,7158:6797234,45427849:25785795,404226,82312 -h1,7158:6797234,45427849:0,0,0 -g1,7158:7745671,45427849 -g1,7158:9326399,45427849 -g1,7158:9642545,45427849 -g1,7158:9958691,45427849 -g1,7158:10274837,45427849 -g1,7158:10907129,45427849 -g1,7158:11223275,45427849 -g1,7158:11539421,45427849 -g1,7158:11855567,45427849 -g1,7158:12487859,45427849 -g1,7158:12804005,45427849 -g1,7158:13120151,45427849 -h1,7158:13752442,45427849:0,0,0 -k1,7158:32583030,45427849:18830588 -g1,7158:32583030,45427849 -) -] -) -g1,7159:32583029,45510161 -g1,7159:6797234,45510161 -g1,7159:6797234,45510161 -g1,7159:32583029,45510161 -g1,7159:32583029,45510161 -) -h1,7159:6797234,45706769:0,0,0 -] -g1,7216:32583029,45706769 -) -] -(1,7216:32583029,45706769:0,0,0 -g1,7216:32583029,45706769 -) -) -] -(1,7216:6630773,47279633:25952256,0,0 -h1,7216:6630773,47279633:25952256,0,0 -) -] -(1,7216:4262630,4025873:0,0,0 -[1,7216:-473656,4025873:0,0,0 -(1,7216:-473656,-710413:0,0,0 -(1,7216:-473656,-710413:0,0,0 -g1,7216:-473656,-710413 -) -g1,7216:-473656,-710413 -) -] -) -] -!32988 -}117 -Input:936:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:937:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:938:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:939:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!384 -{118 -[1,7220:4262630,47279633:28320399,43253760,0 -(1,7220:4262630,4025873:0,0,0 -[1,7220:-473656,4025873:0,0,0 -(1,7220:-473656,-710413:0,0,0 -(1,7220:-473656,-644877:0,0,0 -k1,7220:-473656,-644877:-65536 -) -(1,7220:-473656,4736287:0,0,0 -k1,7220:-473656,4736287:5209943 ) -g1,7220:-473656,-710413 +g1,6229:16572530,26304540 +g1,6229:16572530,26304540 ) -] ) -[1,7220:6630773,47279633:25952256,43253760,0 -[1,7220:6630773,4812305:25952256,786432,0 -(1,7220:6630773,4812305:25952256,513147,126483 -(1,7220:6630773,4812305:25952256,513147,126483 -g1,7220:3078558,4812305 -[1,7220:3078558,4812305:0,0,0 -(1,7220:3078558,2439708:0,1703936,0 -k1,7220:1358238,2439708:-1720320 -(1,5950:1358238,2439708:1720320,1703936,0 -(1,5950:1358238,2439708:1179648,16384,0 -r1,7220:2537886,2439708:1179648,16384,0 +g1,6229:16572530,26304540 ) -g1,5950:3062174,2439708 -(1,5950:3062174,2439708:16384,1703936,0 -[1,5950:3062174,2439708:25952256,1703936,0 -(1,5950:3062174,1915420:25952256,1179648,0 -(1,5950:3062174,1915420:16384,1179648,0 -r1,7220:3078558,1915420:16384,1179648,0 ) -k1,5950:29014430,1915420:25935872 -g1,5950:29014430,1915420 +g1,6229:16572530,26304540 +(1,6229:16572530,26304540:1120190,194405,187851 +g1,6229:17692720,26304540 +g1,6229:17692720,26304540 ) -] +g1,6229:17692720,26304540 +(1,6229:17692720,26304540:1251262,194405,187851 +g1,6229:17692720,26304540 +g1,6229:18943982,26304540 +(1,6229:18943982,26304540:0,194405,187851 +(1,6229:18943982,26304540:0,0,0 +(1,6229:18943982,26304540:0,0,0 +g1,6229:18943982,26304540 +g1,6229:18943982,26304540 +g1,6229:18943982,26304540 +g1,6229:18943982,26304540 +g1,6229:18943982,26304540 +(1,6229:18943982,26304540:0,0,0 +(1,6229:18943982,26304540:1864679,6554,0 +(1,6229:18943982,26304540:1864679,6554,0 +(1,6229:18943982,26304540:1864679,6554,0 +r1,6282:20808661,26304540:1864679,6554,0 ) ) +g1,6229:20808661,26304540 ) -] -[1,7220:3078558,4812305:0,0,0 -(1,7220:3078558,2439708:0,1703936,0 -g1,7220:29030814,2439708 -g1,7220:36135244,2439708 -(1,5950:36135244,2439708:1720320,1703936,0 -(1,5950:36135244,2439708:16384,1703936,0 -[1,5950:36135244,2439708:25952256,1703936,0 -(1,5950:36135244,1915420:25952256,1179648,0 -(1,5950:36135244,1915420:16384,1179648,0 -r1,7220:36151628,1915420:16384,1179648,0 ) -k1,5950:62087500,1915420:25935872 -g1,5950:62087500,1915420 +g1,6229:18943982,26304540 +g1,6229:18943982,26304540 ) -] ) -g1,5950:36675916,2439708 -(1,5950:36675916,2439708:1179648,16384,0 -r1,7220:37855564,2439708:1179648,16384,0 +g1,6229:18943982,26304540 ) ) -k1,7220:3078556,2439708:-34777008 +g1,6229:18943982,26304540 +(1,6229:18943982,26304540:1120190,194405,187851 +g1,6229:20064172,26304540 +g1,6229:20064172,26304540 ) -] -[1,7220:3078558,4812305:0,0,0 -(1,7220:3078558,49800853:0,16384,2228224 -k1,7220:1358238,49800853:-1720320 -(1,5950:1358238,49800853:1720320,16384,2228224 -(1,5950:1358238,49800853:1179648,16384,0 -r1,7220:2537886,49800853:1179648,16384,0 +g1,6229:20064172,26304540 +(1,6229:20064172,26304540:1251262,194405,187851 +g1,6229:20064172,26304540 +g1,6229:21315434,26304540 +(1,6229:21315434,26304540:0,194405,187851 +(1,6229:21315434,26304540:0,0,0 +(1,6229:21315434,26304540:0,0,0 +g1,6229:21315434,26304540 +g1,6229:21315434,26304540 +g1,6229:21315434,26304540 +g1,6229:21315434,26304540 +g1,6229:21315434,26304540 +(1,6229:21315434,26304540:0,0,0 +(1,6229:21315434,26304540:1864679,6554,0 +(1,6229:21315434,26304540:1864679,6554,0 +(1,6229:21315434,26304540:1864679,6554,0 +r1,6282:23180113,26304540:1864679,6554,0 ) -g1,5950:3062174,49800853 -(1,5950:3062174,52029077:16384,1703936,0 -[1,5950:3062174,52029077:25952256,1703936,0 -(1,5950:3062174,51504789:25952256,1179648,0 -(1,5950:3062174,51504789:16384,1179648,0 -r1,7220:3078558,51504789:16384,1179648,0 ) -k1,5950:29014430,51504789:25935872 -g1,5950:29014430,51504789 -) -] -) -) -) -] -[1,7220:3078558,4812305:0,0,0 -(1,7220:3078558,49800853:0,16384,2228224 -g1,7220:29030814,49800853 -g1,7220:36135244,49800853 -(1,5950:36135244,49800853:1720320,16384,2228224 -(1,5950:36135244,52029077:16384,1703936,0 -[1,5950:36135244,52029077:25952256,1703936,0 -(1,5950:36135244,51504789:25952256,1179648,0 -(1,5950:36135244,51504789:16384,1179648,0 -r1,7220:36151628,51504789:16384,1179648,0 -) -k1,5950:62087500,51504789:25935872 -g1,5950:62087500,51504789 -) -] -) -g1,5950:36675916,49800853 -(1,5950:36675916,49800853:1179648,16384,0 -r1,7220:37855564,49800853:1179648,16384,0 -) -) -k1,7220:3078556,49800853:-34777008 -) -] -g1,7220:6630773,4812305 -g1,7220:6630773,4812305 -g1,7220:8364200,4812305 -g1,7220:10765439,4812305 -k1,7220:31387651,4812305:20622212 -) -) -] -[1,7220:6630773,45706769:25952256,40108032,0 -(1,7220:6630773,45706769:25952256,40108032,0 -(1,7220:6630773,45706769:0,0,0 -g1,7220:6630773,45706769 -) -[1,7220:6630773,45706769:25952256,40108032,0 -v1,7216:6630773,6254097:0,393216,0 -(1,7216:6630773,39924009:25952256,34063128,0 -g1,7216:6630773,39924009 -g1,7216:6303093,39924009 -r1,7220:6401397,39924009:98304,34063128,0 -g1,7216:6600626,39924009 -g1,7216:6797234,39924009 -[1,7216:6797234,39924009:25785795,34063128,0 -(1,7163:6797234,6374028:25785795,513147,102891 -h1,7162:6797234,6374028:983040,0,0 -k1,7162:8477670,6374028:219639 -k1,7162:9565662,6374028:219640 -k1,7162:11273624,6374028:219639 -k1,7162:12887214,6374028:219639 -k1,7162:13462713,6374028:219639 -k1,7162:14849549,6374028:219640 -k1,7162:16520810,6374028:219639 -k1,7162:19363855,6374028:219639 -k1,7162:20977446,6374028:219640 -k1,7162:21552945,6374028:219639 -k1,7162:24284579,6374028:219639 -k1,7162:26989999,6374028:219639 -k1,7162:27868931,6374028:219640 -k1,7162:31131407,6374028:219639 -k1,7162:32583029,6374028:0 -) -(1,7163:6797234,7215516:25785795,513147,102891 -k1,7162:9719659,7215516:299019 -k1,7162:12792162,7215516:299019 -k1,7162:13447041,7215516:299019 -k1,7162:16128949,7215516:299019 -k1,7162:17044006,7215516:299019 -k1,7162:18362110,7215516:299019 -k1,7162:20050492,7215516:299019 -k1,7162:22399477,7215516:299019 -k1,7162:23326330,7215516:299018 -k1,7162:24644434,7215516:299019 -k1,7162:26310534,7215516:299019 -k1,7162:27268845,7215516:299019 -k1,7162:27923724,7215516:299019 -k1,7162:29268698,7215516:299019 -k1,7162:31252648,7215516:299019 -k1,7162:32583029,7215516:0 -) -(1,7163:6797234,8057004:25785795,505283,134348 -g1,7162:9855799,8057004 -g1,7162:10586525,8057004 -k1,7163:32583029,8057004:19451086 -g1,7163:32583029,8057004 -) -v1,7165:6797234,9247470:0,393216,0 -(1,7178:6797234,14123052:25785795,5268798,196608 -g1,7178:6797234,14123052 -g1,7178:6797234,14123052 -g1,7178:6600626,14123052 -(1,7178:6600626,14123052:0,5268798,196608 -r1,7220:32779637,14123052:26179011,5465406,196608 -k1,7178:6600625,14123052:-26179012 -) -(1,7178:6600626,14123052:26179011,5268798,196608 -[1,7178:6797234,14123052:25785795,5072190,0 -(1,7167:6797234,9455088:25785795,404226,101187 -(1,7166:6797234,9455088:0,0,0 -g1,7166:6797234,9455088 -g1,7166:6797234,9455088 -g1,7166:6469554,9455088 -(1,7166:6469554,9455088:0,0,0 -) -g1,7166:6797234,9455088 -) -g1,7167:9326400,9455088 -g1,7167:10274838,9455088 -g1,7167:12487859,9455088 -g1,7167:13120151,9455088 -g1,7167:14700881,9455088 -g1,7167:15333173,9455088 -g1,7167:15965465,9455088 -g1,7167:20391506,9455088 -g1,7167:21023798,9455088 -g1,7167:21656090,9455088 -g1,7167:23236819,9455088 -g1,7167:23869111,9455088 -g1,7167:24501403,9455088 -h1,7167:25765986,9455088:0,0,0 -k1,7167:32583029,9455088:6817043 -g1,7167:32583029,9455088 -) -(1,7168:6797234,10121266:25785795,410518,101187 -h1,7168:6797234,10121266:0,0,0 -g1,7168:8694109,10121266 -g1,7168:15649315,10121266 -h1,7168:18178480,10121266:0,0,0 -k1,7168:32583029,10121266:14404549 -g1,7168:32583029,10121266 -) -(1,7169:6797234,10787444:25785795,410518,9436 -h1,7169:6797234,10787444:0,0,0 -h1,7169:7745671,10787444:0,0,0 -k1,7169:32583029,10787444:24837358 -g1,7169:32583029,10787444 -) -(1,7177:6797234,11453622:25785795,410518,101187 -(1,7171:6797234,11453622:0,0,0 -g1,7171:6797234,11453622 -g1,7171:6797234,11453622 -g1,7171:6469554,11453622 -(1,7171:6469554,11453622:0,0,0 -) -g1,7171:6797234,11453622 -) -g1,7177:7745671,11453622 -g1,7177:8061817,11453622 -g1,7177:8377963,11453622 -g1,7177:11539420,11453622 -g1,7177:12171712,11453622 -g1,7177:12804004,11453622 -g1,7177:13436296,11453622 -h1,7177:13752442,11453622:0,0,0 -k1,7177:32583030,11453622:18830588 -g1,7177:32583030,11453622 -) -(1,7177:6797234,12119800:25785795,404226,6290 -h1,7177:6797234,12119800:0,0,0 -g1,7177:7745671,12119800 -g1,7177:8377963,12119800 -g1,7177:8694109,12119800 -g1,7177:9010255,12119800 -g1,7177:9326401,12119800 -g1,7177:9642547,12119800 -g1,7177:9958693,12119800 -g1,7177:10274839,12119800 -g1,7177:10590985,12119800 -g1,7177:10907131,12119800 -g1,7177:11539423,12119800 -g1,7177:12171715,12119800 -g1,7177:12804007,12119800 -g1,7177:13436299,12119800 -h1,7177:13752445,12119800:0,0,0 -k1,7177:32583029,12119800:18830584 -g1,7177:32583029,12119800 -) -(1,7177:6797234,12785978:25785795,388497,9436 -h1,7177:6797234,12785978:0,0,0 -g1,7177:7745671,12785978 -g1,7177:8377963,12785978 -g1,7177:8694109,12785978 -g1,7177:9010255,12785978 -g1,7177:9326401,12785978 -g1,7177:9642547,12785978 -g1,7177:9958693,12785978 -g1,7177:10274839,12785978 -g1,7177:10590985,12785978 -g1,7177:10907131,12785978 -g1,7177:11539423,12785978 -g1,7177:12171715,12785978 -g1,7177:12804007,12785978 -g1,7177:13436299,12785978 -h1,7177:13752445,12785978:0,0,0 -k1,7177:32583029,12785978:18830584 -g1,7177:32583029,12785978 -) -(1,7177:6797234,13452156:25785795,404226,9436 -h1,7177:6797234,13452156:0,0,0 -g1,7177:7745671,13452156 -g1,7177:8377963,13452156 -g1,7177:8694109,13452156 -g1,7177:9010255,13452156 -g1,7177:9326401,13452156 -g1,7177:9642547,13452156 -g1,7177:9958693,13452156 -g1,7177:10274839,13452156 -g1,7177:10590985,13452156 -g1,7177:10907131,13452156 -g1,7177:11539423,13452156 -g1,7177:12171715,13452156 -g1,7177:12804007,13452156 -g1,7177:13436299,13452156 -h1,7177:13752445,13452156:0,0,0 -k1,7177:32583029,13452156:18830584 -g1,7177:32583029,13452156 -) -(1,7177:6797234,14118334:25785795,388497,4718 -h1,7177:6797234,14118334:0,0,0 -g1,7177:7745671,14118334 -g1,7177:8377963,14118334 -g1,7177:8694109,14118334 -g1,7177:9010255,14118334 -g1,7177:9326401,14118334 -g1,7177:9642547,14118334 -g1,7177:9958693,14118334 -g1,7177:10274839,14118334 -g1,7177:10590985,14118334 -g1,7177:10907131,14118334 -g1,7177:11539423,14118334 -g1,7177:12171715,14118334 -g1,7177:12804007,14118334 -g1,7177:13436299,14118334 -h1,7177:13752445,14118334:0,0,0 -k1,7177:32583029,14118334:18830584 -g1,7177:32583029,14118334 -) -] -) -g1,7178:32583029,14123052 -g1,7178:6797234,14123052 -g1,7178:6797234,14123052 -g1,7178:32583029,14123052 -g1,7178:32583029,14123052 -) -h1,7178:6797234,14319660:0,0,0 -(1,7182:6797234,15685436:25785795,513147,126483 -h1,7181:6797234,15685436:983040,0,0 -k1,7181:9194322,15685436:217361 -k1,7181:12586246,15685436:217360 -k1,7181:13335104,15685436:217361 -k1,7181:15177102,15685436:217360 -k1,7181:18156806,15685436:217361 -k1,7181:18840127,15685436:217360 -k1,7181:19925840,15685436:217361 -k1,7181:22441548,15685436:217360 -k1,7181:23677994,15685436:217361 -k1,7181:24888880,15685436:217360 -k1,7181:26500192,15685436:217361 -(1,7181:26500192,15685436:0,452978,115847 -r1,7220:27561881,15685436:1061689,568825,115847 -k1,7181:26500192,15685436:-1061689 -) -(1,7181:26500192,15685436:1061689,452978,115847 -k1,7181:26500192,15685436:3277 -h1,7181:27558604,15685436:0,411205,112570 -) -k1,7181:27952911,15685436:217360 -k1,7181:29604200,15685436:217361 -k1,7181:30840645,15685436:217360 -k1,7181:32051532,15685436:217361 -k1,7181:32583029,15685436:0 -) -(1,7182:6797234,16526924:25785795,513147,134348 -k1,7181:8974996,16526924:212337 -k1,7181:9803370,16526924:212336 -k1,7181:11898556,16526924:212337 -k1,7181:12797055,16526924:212337 -k1,7181:13365251,16526924:212336 -k1,7181:16088928,16526924:212337 -k1,7181:16984150,16526924:212337 -k1,7181:19579376,16526924:212337 -k1,7181:20407750,16526924:212336 -k1,7181:21639172,16526924:212337 -k1,7181:23240872,16526924:212337 -k1,7181:25503174,16526924:212336 -k1,7181:26343346,16526924:212337 -k1,7181:27758924,16526924:212337 -k1,7181:29338341,16526924:212336 -k1,7181:30569763,16526924:212337 -k1,7181:32583029,16526924:0 -) -(1,7182:6797234,17368412:25785795,513147,7863 -k1,7181:7735666,17368412:255547 -k1,7181:10476993,17368412:255546 -k1,7181:11391832,17368412:255547 -k1,7181:14601087,17368412:255547 -k1,7181:15472671,17368412:255546 -k1,7181:16747303,17368412:255547 -k1,7181:17996376,17368412:255547 -k1,7181:19857554,17368412:255546 -k1,7181:21735117,17368412:255547 -k1,7181:23971817,17368412:255547 -k1,7181:25246448,17368412:255546 -k1,7181:27987776,17368412:255547 -k1,7181:28902615,17368412:255547 -k1,7181:30692359,17368412:255546 -k1,7181:31563944,17368412:255547 -k1,7181:32583029,17368412:0 -) -(1,7182:6797234,18209900:25785795,513147,134348 -k1,7181:8358258,18209900:171661 -k1,7181:10579884,18209900:171660 -k1,7181:12441063,18209900:171661 -k1,7181:13631808,18209900:171660 -k1,7181:15816735,18209900:171661 -k1,7181:16647687,18209900:171660 -k1,7181:17838433,18209900:171661 -k1,7181:21203007,18209900:171660 -k1,7181:24328376,18209900:171661 -k1,7181:25159328,18209900:171660 -k1,7181:26350074,18209900:171661 -k1,7181:27515260,18209900:171660 -k1,7181:28791203,18209900:171661 -k1,7181:30499027,18209900:171660 -k1,7181:32051532,18209900:171661 -k1,7181:32583029,18209900:0 -) -(1,7182:6797234,19051388:25785795,513147,126483 -k1,7181:9206943,19051388:207699 -k1,7181:10066071,19051388:207700 -k1,7181:11292855,19051388:207699 -k1,7181:13766134,19051388:207699 -k1,7181:17148397,19051388:207699 -k1,7181:18015389,19051388:207700 -k1,7181:20538475,19051388:207699 -k1,7181:21818343,19051388:207699 -k1,7181:22440877,19051388:207691 -k1,7181:24037939,19051388:207699 -k1,7181:26452235,19051388:207699 -k1,7181:28951729,19051388:207700 -k1,7181:31490544,19051388:207699 -k1,7181:32583029,19051388:0 -) -(1,7182:6797234,19892876:25785795,513147,134348 -g1,7181:7663619,19892876 -(1,7181:7663619,19892876:0,452978,115847 -r1,7220:8725308,19892876:1061689,568825,115847 -k1,7181:7663619,19892876:-1061689 -) -(1,7181:7663619,19892876:1061689,452978,115847 -k1,7181:7663619,19892876:3277 -h1,7181:8722031,19892876:0,411205,112570 -) -g1,7181:8924537,19892876 -g1,7181:10355843,19892876 -g1,7181:12972695,19892876 -h1,7181:13371154,19892876:0,0,0 -g1,7181:13570383,19892876 -g1,7181:14578982,19892876 -g1,7181:16276364,19892876 -h1,7181:17471741,19892876:0,0,0 -g1,7181:17670970,19892876 -g1,7181:18817850,19892876 -g1,7181:21134547,19892876 -g1,7181:23156332,19892876 -g1,7181:24374646,19892876 -k1,7182:32583029,19892876:5665587 -g1,7182:32583029,19892876 -) -v1,7184:6797234,21083342:0,393216,0 -(1,7212:6797234,34019837:25785795,13329711,196608 -g1,7212:6797234,34019837 -g1,7212:6797234,34019837 -g1,7212:6600626,34019837 -(1,7212:6600626,34019837:0,13329711,196608 -r1,7220:32779637,34019837:26179011,13526319,196608 -k1,7212:6600625,34019837:-26179012 -) -(1,7212:6600626,34019837:26179011,13329711,196608 -[1,7212:6797234,34019837:25785795,13133103,0 -(1,7186:6797234,21297252:25785795,410518,101187 -(1,7185:6797234,21297252:0,0,0 -g1,7185:6797234,21297252 -g1,7185:6797234,21297252 -g1,7185:6469554,21297252 -(1,7185:6469554,21297252:0,0,0 -) -g1,7185:6797234,21297252 -) -k1,7186:6797234,21297252:0 -g1,7186:8694109,21297252 -g1,7186:15649315,21297252 -k1,7186:15649315,21297252:0 -h1,7186:19126918,21297252:0,0,0 -k1,7186:32583029,21297252:13456111 -g1,7186:32583029,21297252 -) -(1,7187:6797234,21963430:25785795,410518,6290 -h1,7187:6797234,21963430:0,0,0 -h1,7187:7745671,21963430:0,0,0 -k1,7187:32583029,21963430:24837358 -g1,7187:32583029,21963430 -) -(1,7195:6797234,22629608:25785795,410518,101187 -(1,7189:6797234,22629608:0,0,0 -g1,7189:6797234,22629608 -g1,7189:6797234,22629608 -g1,7189:6469554,22629608 -(1,7189:6469554,22629608:0,0,0 -) -g1,7189:6797234,22629608 -) -g1,7195:7745671,22629608 -g1,7195:8061817,22629608 -g1,7195:8377963,22629608 -g1,7195:11539420,22629608 -g1,7195:11855566,22629608 -g1,7195:12171712,22629608 -g1,7195:12487858,22629608 -h1,7195:14700878,22629608:0,0,0 -k1,7195:32583030,22629608:17882152 -g1,7195:32583030,22629608 -) -(1,7195:6797234,23295786:25785795,388497,82312 -h1,7195:6797234,23295786:0,0,0 -g1,7195:7745671,23295786 -g1,7195:8377963,23295786 -g1,7195:8694109,23295786 -g1,7195:9010255,23295786 -g1,7195:9326401,23295786 -g1,7195:9642547,23295786 -g1,7195:9958693,23295786 -g1,7195:10274839,23295786 -g1,7195:10590985,23295786 -g1,7195:10907131,23295786 -g1,7195:11539423,23295786 -g1,7195:12487861,23295786 -g1,7195:13436299,23295786 -g1,7195:14384737,23295786 -h1,7195:14700883,23295786:0,0,0 -k1,7195:32583029,23295786:17882146 -g1,7195:32583029,23295786 -) -(1,7195:6797234,23961964:25785795,404226,82312 -h1,7195:6797234,23961964:0,0,0 -g1,7195:7745671,23961964 -g1,7195:8377963,23961964 -g1,7195:8694109,23961964 -g1,7195:9010255,23961964 -g1,7195:9326401,23961964 -g1,7195:9642547,23961964 -g1,7195:9958693,23961964 -g1,7195:10274839,23961964 -g1,7195:10590985,23961964 -g1,7195:10907131,23961964 -g1,7195:11539423,23961964 -g1,7195:12487861,23961964 -g1,7195:13436299,23961964 -g1,7195:14384737,23961964 -h1,7195:14700883,23961964:0,0,0 -k1,7195:32583029,23961964:17882146 -g1,7195:32583029,23961964 -) -(1,7195:6797234,24628142:25785795,388497,9436 -h1,7195:6797234,24628142:0,0,0 -g1,7195:7745671,24628142 -g1,7195:8377963,24628142 -g1,7195:8694109,24628142 -g1,7195:9010255,24628142 -g1,7195:9326401,24628142 -g1,7195:9642547,24628142 -g1,7195:9958693,24628142 -g1,7195:10274839,24628142 -g1,7195:10590985,24628142 -g1,7195:10907131,24628142 -g1,7195:11539423,24628142 -g1,7195:11855569,24628142 -g1,7195:12171715,24628142 -g1,7195:12487861,24628142 -g1,7195:12804007,24628142 -g1,7195:13120153,24628142 -g1,7195:13436299,24628142 -g1,7195:13752445,24628142 -g1,7195:14068591,24628142 -g1,7195:14384737,24628142 -h1,7195:14700883,24628142:0,0,0 -k1,7195:32583029,24628142:17882146 -g1,7195:32583029,24628142 -) -(1,7195:6797234,25294320:25785795,404226,6290 -h1,7195:6797234,25294320:0,0,0 -g1,7195:7745671,25294320 -g1,7195:8377963,25294320 -g1,7195:8694109,25294320 -g1,7195:9010255,25294320 -g1,7195:9326401,25294320 -g1,7195:9642547,25294320 -g1,7195:9958693,25294320 -g1,7195:10274839,25294320 -g1,7195:10590985,25294320 -g1,7195:10907131,25294320 -g1,7195:11539423,25294320 -g1,7195:11855569,25294320 -g1,7195:12171715,25294320 -g1,7195:12487861,25294320 -g1,7195:12804007,25294320 -g1,7195:13120153,25294320 -g1,7195:13436299,25294320 -g1,7195:13752445,25294320 -g1,7195:14068591,25294320 -g1,7195:14384737,25294320 -h1,7195:14700883,25294320:0,0,0 -k1,7195:32583029,25294320:17882146 -g1,7195:32583029,25294320 -) -(1,7197:6797234,26615858:25785795,410518,101187 -(1,7196:6797234,26615858:0,0,0 -g1,7196:6797234,26615858 -g1,7196:6797234,26615858 -g1,7196:6469554,26615858 -(1,7196:6469554,26615858:0,0,0 -) -g1,7196:6797234,26615858 -) -h1,7197:10274837,26615858:0,0,0 -k1,7197:32583029,26615858:22308192 -g1,7197:32583029,26615858 -) -(1,7211:6797234,27282036:25785795,410518,31456 -(1,7199:6797234,27282036:0,0,0 -g1,7199:6797234,27282036 -g1,7199:6797234,27282036 -g1,7199:6469554,27282036 -(1,7199:6469554,27282036:0,0,0 -) -g1,7199:6797234,27282036 -) -g1,7211:7745671,27282036 -h1,7211:8377962,27282036:0,0,0 -k1,7211:32583030,27282036:24205068 -g1,7211:32583030,27282036 -) -(1,7211:6797234,27948214:25785795,404226,76021 -h1,7211:6797234,27948214:0,0,0 -g1,7211:7745671,27948214 -g1,7211:9010254,27948214 -g1,7211:9642546,27948214 -g1,7211:10274838,27948214 -g1,7211:10907130,27948214 -h1,7211:11223276,27948214:0,0,0 -k1,7211:32583028,27948214:21359752 -g1,7211:32583028,27948214 -) -(1,7211:6797234,28614392:25785795,379060,0 -h1,7211:6797234,28614392:0,0,0 -h1,7211:7429525,28614392:0,0,0 -k1,7211:32583029,28614392:25153504 -g1,7211:32583029,28614392 -) -(1,7211:6797234,29280570:25785795,410518,31456 -h1,7211:6797234,29280570:0,0,0 -g1,7211:7745671,29280570 -h1,7211:8377962,29280570:0,0,0 -k1,7211:32583030,29280570:24205068 -g1,7211:32583030,29280570 -) -(1,7211:6797234,29946748:25785795,404226,76021 -h1,7211:6797234,29946748:0,0,0 -g1,7211:7745671,29946748 -g1,7211:9010254,29946748 -g1,7211:10274837,29946748 -g1,7211:11539420,29946748 -g1,7211:12804003,29946748 -h1,7211:13752440,29946748:0,0,0 -k1,7211:32583028,29946748:18830588 -g1,7211:32583028,29946748 -) -(1,7211:6797234,30612926:25785795,379060,0 -h1,7211:6797234,30612926:0,0,0 -h1,7211:7429525,30612926:0,0,0 -k1,7211:32583029,30612926:25153504 -g1,7211:32583029,30612926 -) -(1,7211:6797234,31279104:25785795,410518,31456 -h1,7211:6797234,31279104:0,0,0 -g1,7211:7745671,31279104 -h1,7211:8377962,31279104:0,0,0 -k1,7211:32583030,31279104:24205068 -g1,7211:32583030,31279104 -) -(1,7211:6797234,31945282:25785795,404226,76021 -h1,7211:6797234,31945282:0,0,0 -g1,7211:7745671,31945282 -g1,7211:9010254,31945282 -h1,7211:9958691,31945282:0,0,0 -k1,7211:32583029,31945282:22624338 -g1,7211:32583029,31945282 -) -(1,7211:6797234,32611460:25785795,379060,0 -h1,7211:6797234,32611460:0,0,0 -h1,7211:7429525,32611460:0,0,0 -k1,7211:32583029,32611460:25153504 -g1,7211:32583029,32611460 -) -(1,7211:6797234,33277638:25785795,410518,31456 -h1,7211:6797234,33277638:0,0,0 -g1,7211:7745671,33277638 -h1,7211:8377962,33277638:0,0,0 -k1,7211:32583030,33277638:24205068 -g1,7211:32583030,33277638 -) -(1,7211:6797234,33943816:25785795,404226,76021 -h1,7211:6797234,33943816:0,0,0 -g1,7211:7745671,33943816 -g1,7211:9010254,33943816 -h1,7211:9958691,33943816:0,0,0 -k1,7211:32583029,33943816:22624338 -g1,7211:32583029,33943816 -) -] -) -g1,7212:32583029,34019837 -g1,7212:6797234,34019837 -g1,7212:6797234,34019837 -g1,7212:32583029,34019837 -g1,7212:32583029,34019837 -) -h1,7212:6797234,34216445:0,0,0 -(1,7216:6797234,35582221:25785795,513147,126483 -h1,7215:6797234,35582221:983040,0,0 -k1,7215:9642390,35582221:228303 -k1,7215:10402191,35582221:228304 -k1,7215:11833735,35582221:228303 -k1,7215:14622531,35582221:228304 -k1,7215:17000415,35582221:228303 -k1,7215:18126562,35582221:228304 -k1,7215:20176766,35582221:228303 -k1,7215:21424155,35582221:228304 -k1,7215:26478529,35582221:228303 -k1,7215:29482938,35582221:228304 -k1,7215:30902686,35582221:228303 -k1,7215:32583029,35582221:0 -) -(1,7216:6797234,36423709:25785795,513147,134348 -k1,7215:7691497,36423709:234971 -k1,7215:9349256,36423709:234972 -k1,7215:11503121,36423709:234971 -k1,7215:12757177,36423709:234971 -k1,7215:15966173,36423709:234972 -k1,7215:18315335,36423709:234971 -k1,7215:19311834,36423709:234971 -k1,7215:20639290,36423709:234971 -k1,7215:21533554,36423709:234972 -k1,7215:24464021,36423709:234971 -(1,7215:24464021,36423709:0,452978,115847 -r1,7220:25525710,36423709:1061689,568825,115847 -k1,7215:24464021,36423709:-1061689 -) -(1,7215:24464021,36423709:1061689,452978,115847 -k1,7215:24464021,36423709:3277 -h1,7215:25522433,36423709:0,411205,112570 -) -k1,7215:25760681,36423709:234971 -k1,7215:26647081,36423709:234972 -k1,7215:29180400,36423709:234971 -k1,7215:32583029,36423709:0 -) -(1,7216:6797234,37265197:25785795,513147,126483 -k1,7215:9231130,37265197:228609 -k1,7215:10111168,37265197:228610 -k1,7215:11358862,37265197:228609 -(1,7215:11358862,37265197:0,459977,115847 -r1,7220:15585958,37265197:4227096,575824,115847 -k1,7215:11358862,37265197:-4227096 -) -(1,7215:11358862,37265197:4227096,459977,115847 -k1,7215:11358862,37265197:3277 -h1,7215:15582681,37265197:0,411205,112570 -) -k1,7215:15814567,37265197:228609 -k1,7215:19749892,37265197:228609 -k1,7215:21082784,37265197:228610 -k1,7215:22059159,37265197:228609 -k1,7215:24438660,37265197:228609 -k1,7215:25295104,37265197:228609 -k1,7215:28363389,37265197:228610 -k1,7215:30206805,37265197:228609 -k1,7215:31931601,37265197:228609 -k1,7215:32583029,37265197:0 -) -(1,7216:6797234,38106685:25785795,513147,134348 -k1,7215:9251736,38106685:250526 -k1,7215:12695177,38106685:250527 -k1,7215:15899411,38106685:250526 -k1,7215:16809229,38106685:250526 -k1,7215:20384396,38106685:250526 -k1,7215:23368430,38106685:250527 -k1,7215:24810401,38106685:250526 -k1,7215:26384754,38106685:250526 -k1,7215:28370673,38106685:250526 -k1,7215:31360605,38106685:250527 -k1,7215:32227169,38106685:250526 -k1,7215:32583029,38106685:0 -) -(1,7216:6797234,38948173:25785795,513147,134348 -k1,7215:8894475,38948173:224222 -k1,7215:9533515,38948173:224197 -k1,7215:12944098,38948173:224223 -k1,7215:13784358,38948173:224222 -k1,7215:15460202,38948173:224222 -k1,7215:17225175,38948173:224222 -k1,7215:19551792,38948173:224222 -k1,7215:20967460,38948173:224223 -k1,7215:21657643,38948173:224222 -k1,7215:22900950,38948173:224222 -k1,7215:25884893,38948173:224222 -k1,7215:26640612,38948173:224222 -k1,7215:27883920,38948173:224223 -k1,7215:29761615,38948173:224222 -k1,7215:31683875,38948173:224222 -k1,7216:32583029,38948173:0 -) -(1,7216:6797234,39789661:25785795,513147,134348 -g1,7215:9307262,39789661 -g1,7215:10789686,39789661 -g1,7215:13612321,39789661 -g1,7215:16653191,39789661 -g1,7215:17742399,39789661 -g1,7215:21462222,39789661 -g1,7215:22312879,39789661 -g1,7215:23282811,39789661 -g1,7215:25973063,39789661 -g1,7215:27561655,39789661 -k1,7216:32583029,39789661:2971408 -g1,7216:32583029,39789661 -) -] -g1,7216:32583029,39924009 -) -h1,7216:6630773,39924009:0,0,0 -(1,7218:6630773,42015269:25952256,564462,147783 -(1,7218:6630773,42015269:2450326,527696,0 -g1,7218:6630773,42015269 -g1,7218:9081099,42015269 -) -g1,7218:13329340,42015269 -g1,7218:15106349,42015269 -k1,7218:32583029,42015269:14962916 -g1,7218:32583029,42015269 -) -(1,7220:6630773,43249973:25952256,513147,134348 -k1,7219:8679905,43249973:265897 -k1,7219:9964888,43249973:265898 -k1,7219:12299101,43249973:265897 -k1,7219:13224290,43249973:265897 -k1,7219:14879551,43249973:265898 -k1,7219:17352045,43249973:265897 -k1,7219:18609503,43249973:265898 -k1,7219:20437778,43249973:265897 -k1,7219:23389996,43249973:265897 -k1,7219:27018546,43249973:265898 -k1,7219:29727625,43249973:265897 -k1,7219:32583029,43249973:0 -) -(1,7220:6630773,44091461:25952256,505283,134348 -k1,7219:7494754,44091461:212553 -k1,7219:9322115,44091461:212554 -k1,7219:11270061,44091461:212553 -k1,7219:15946928,44091461:212554 -k1,7219:19640098,44091461:212553 -k1,7219:20480487,44091461:212554 -k1,7219:22186606,44091461:212553 -k1,7219:24096542,44091461:212554 -(1,7219:24096542,44091461:0,452978,115847 -r1,7220:26916791,44091461:2820249,568825,115847 -k1,7219:24096542,44091461:-2820249 -) -(1,7219:24096542,44091461:2820249,452978,115847 -k1,7219:24096542,44091461:3277 -h1,7219:26913514,44091461:0,411205,112570 -) -k1,7219:27129344,44091461:212553 -k1,7219:27873395,44091461:212554 -k1,7219:30053339,44091461:212553 -k1,7219:32583029,44091461:0 -) -(1,7220:6630773,44932949:25952256,513147,102891 -k1,7219:10169717,44932949:235274 -k1,7219:10936488,44932949:235274 -k1,7219:12749214,44932949:235274 -k1,7219:13600527,44932949:235275 -k1,7219:14854886,44932949:235274 -k1,7219:19747804,44932949:235274 -k1,7219:20642370,44932949:235274 -k1,7219:21896729,44932949:235274 -k1,7219:23521366,44932949:235274 -k1,7219:25806606,44932949:235274 -k1,7219:27111429,44932949:235275 -k1,7219:28365788,44932949:235274 -k1,7219:30669378,44932949:235274 -k1,7219:31563944,44932949:235274 -k1,7219:32583029,44932949:0 -) -] -(1,7220:32583029,45706769:0,0,0 -g1,7220:32583029,45706769 -) -) -] -(1,7220:6630773,47279633:25952256,0,0 -h1,7220:6630773,47279633:25952256,0,0 -) -] -(1,7220:4262630,4025873:0,0,0 -[1,7220:-473656,4025873:0,0,0 -(1,7220:-473656,-710413:0,0,0 -(1,7220:-473656,-710413:0,0,0 -g1,7220:-473656,-710413 -) -g1,7220:-473656,-710413 -) -] -) -] -!25128 -}118 -Input:940:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:941:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:942:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:943:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:944:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:945:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:946:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:947:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:948:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:949:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:950:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:951:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:952:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:953:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:954:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:955:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1500 -{119 -[1,7311:4262630,47279633:28320399,43253760,0 -(1,7311:4262630,4025873:0,0,0 -[1,7311:-473656,4025873:0,0,0 -(1,7311:-473656,-710413:0,0,0 -(1,7311:-473656,-644877:0,0,0 -k1,7311:-473656,-644877:-65536 +g1,6229:23180113,26304540 +) +) +g1,6229:21315434,26304540 +g1,6229:21315434,26304540 +) ) -(1,7311:-473656,4736287:0,0,0 -k1,7311:-473656,4736287:5209943 +g1,6229:21315434,26304540 ) -g1,7311:-473656,-710413 +) +g1,6229:21315434,26304540 +(1,6229:21315434,26304540:1120190,194405,187851 +g1,6229:22435624,26304540 +g1,6229:22435624,26304540 +) +g1,6229:22435624,26304540 ) ] ) -[1,7311:6630773,47279633:25952256,43253760,0 -[1,7311:6630773,4812305:25952256,786432,0 -(1,7311:6630773,4812305:25952256,505283,11795 -(1,7311:6630773,4812305:25952256,505283,11795 -g1,7311:3078558,4812305 -[1,7311:3078558,4812305:0,0,0 -(1,7311:3078558,2439708:0,1703936,0 -k1,7311:1358238,2439708:-1720320 -(1,5950:1358238,2439708:1720320,1703936,0 -(1,5950:1358238,2439708:1179648,16384,0 -r1,7311:2537886,2439708:1179648,16384,0 ) -g1,5950:3062174,2439708 -(1,5950:3062174,2439708:16384,1703936,0 -[1,5950:3062174,2439708:25952256,1703936,0 -(1,5950:3062174,1915420:25952256,1179648,0 -(1,5950:3062174,1915420:16384,1179648,0 -r1,7311:3078558,1915420:16384,1179648,0 +g1,6229:15452340,26304540 +g1,6229:15452340,26304540 ) -k1,5950:29014430,1915420:25935872 -g1,5950:29014430,1915420 ) -] +g1,6229:15452340,26304540 +g1,6233:15452340,26304540 +g1,6233:15452340,26304540 +g1,6235:15452340,26304540 +(1,6235:15452340,26304540:0,0,0 +(1,6235:15452340,26304540:0,0,0 +g1,6235:15452340,26304540 +(1,6235:15452340,26304540:0,0,0 +(1,6235:15452340,26304540:1694771,482673,208735 +(1,6235:15452340,26304540:1694771,482673,208735 +(1,6235:15452340,26304540:0,482673,208735 +r1,6282:17147111,26304540:1694771,691408,208735 +k1,6235:15452340,26304540:-1694771 ) +(1,6235:15452340,26304540:1694771,482673,208735 +r1,6282:15455617,26304540:0,684854,205458 +h1,6235:17143834,26304540:0,328964,90056 ) ) -] -[1,7311:3078558,4812305:0,0,0 -(1,7311:3078558,2439708:0,1703936,0 -g1,7311:29030814,2439708 -g1,7311:36135244,2439708 -(1,5950:36135244,2439708:1720320,1703936,0 -(1,5950:36135244,2439708:16384,1703936,0 -[1,5950:36135244,2439708:25952256,1703936,0 -(1,5950:36135244,1915420:25952256,1179648,0 -(1,5950:36135244,1915420:16384,1179648,0 -r1,7311:36151628,1915420:16384,1179648,0 +g1,6235:17147111,26304540 ) -k1,5950:62087500,1915420:25935872 -g1,5950:62087500,1915420 ) -] +g1,6235:15452340,26304540 +g1,6235:15452340,26304540 ) -g1,5950:36675916,2439708 -(1,5950:36675916,2439708:1179648,16384,0 -r1,7311:37855564,2439708:1179648,16384,0 ) +(1,6236:15452340,26304540:0,0,0 +(1,6236:15452340,26304540:0,0,0 +g1,6236:15452340,26304540 +(1,6236:15452340,26304540:0,0,0 +(1,6236:15452340,26304540:684854,321389,0 +(1,6236:15452340,26304540:684854,321389,0 +(1,6236:15452340,26304540:684854,321389,0 +(1,6236:15931736,26304540:321389,479396,205458 +(1,6236:15931736,26304540:321389,479396,205458 +r1,6282:16253125,26304540:0,684854,205458 ) -k1,7311:3078556,2439708:-34777008 ) -] -[1,7311:3078558,4812305:0,0,0 -(1,7311:3078558,49800853:0,16384,2228224 -k1,7311:1358238,49800853:-1720320 -(1,5950:1358238,49800853:1720320,16384,2228224 -(1,5950:1358238,49800853:1179648,16384,0 -r1,7311:2537886,49800853:1179648,16384,0 ) -g1,5950:3062174,49800853 -(1,5950:3062174,52029077:16384,1703936,0 -[1,5950:3062174,52029077:25952256,1703936,0 -(1,5950:3062174,51504789:25952256,1179648,0 -(1,5950:3062174,51504789:16384,1179648,0 -r1,7311:3078558,51504789:16384,1179648,0 ) -k1,5950:29014430,51504789:25935872 -g1,5950:29014430,51504789 +g1,6236:16137194,26304540 ) -] ) +g1,6236:15452340,26304540 +g1,6236:15452340,26304540 ) ) -] -[1,7311:3078558,4812305:0,0,0 -(1,7311:3078558,49800853:0,16384,2228224 -g1,7311:29030814,49800853 -g1,7311:36135244,49800853 -(1,5950:36135244,49800853:1720320,16384,2228224 -(1,5950:36135244,52029077:16384,1703936,0 -[1,5950:36135244,52029077:25952256,1703936,0 -(1,5950:36135244,51504789:25952256,1179648,0 -(1,5950:36135244,51504789:16384,1179648,0 -r1,7311:36151628,51504789:16384,1179648,0 +(1,6237:15452340,26304540:0,0,0 +(1,6237:15452340,26304540:0,0,0 +g1,6237:15452340,26304540 +(1,6237:15452340,26304540:0,0,0 +(1,6237:15452340,26304540:684854,273678,0 +(1,6237:15452340,26304540:684854,273678,0 +(1,6237:15452340,26304540:684854,273678,0 +(1,6237:15931736,26304540:273678,479396,205458 +(1,6237:15931736,26304540:273678,479396,205458 +r1,6282:16205414,26304540:0,684854,205458 ) -k1,5950:62087500,51504789:25935872 -g1,5950:62087500,51504789 ) -] ) -g1,5950:36675916,49800853 -(1,5950:36675916,49800853:1179648,16384,0 -r1,7311:37855564,49800853:1179648,16384,0 ) +g1,6237:16137194,26304540 ) -k1,7311:3078556,49800853:-34777008 ) -] -g1,7311:6630773,4812305 -k1,7311:24358918,4812305:16532768 -g1,7311:25981589,4812305 -g1,7311:26804065,4812305 -g1,7311:30302376,4812305 -) -) -] -[1,7311:6630773,45706769:25952256,40108032,0 -(1,7311:6630773,45706769:25952256,40108032,0 -(1,7311:6630773,45706769:0,0,0 -g1,7311:6630773,45706769 -) -[1,7311:6630773,45706769:25952256,40108032,0 -(1,7220:6630773,6254097:25952256,513147,134348 -k1,7219:9590117,6254097:246153 -k1,7219:10827830,6254097:246153 -k1,7219:14586057,6254097:246153 -k1,7219:15298171,6254097:246153 -k1,7219:17967191,6254097:246154 -k1,7219:20627690,6254097:246153 -k1,7219:22571881,6254097:246153 -k1,7219:25075749,6254097:246153 -k1,7219:26340987,6254097:246153 -k1,7219:29793161,6254097:246153 -k1,7220:32583029,6254097:0 -) -(1,7220:6630773,7095585:25952256,513147,134348 -(1,7219:6630773,7095585:0,452978,115847 -r1,7311:9451022,7095585:2820249,568825,115847 -k1,7219:6630773,7095585:-2820249 -) -(1,7219:6630773,7095585:2820249,452978,115847 -k1,7219:6630773,7095585:3277 -h1,7219:9447745,7095585:0,411205,112570 -) -k1,7219:9760814,7095585:309792 -k1,7219:12529517,7095585:309792 -k1,7219:14547177,7095585:309792 -k1,7219:17144176,7095585:309792 -k1,7219:22077532,7095585:309791 -k1,7219:23038752,7095585:309792 -k1,7219:27420296,7095585:309792 -k1,7219:28412973,7095585:309792 -k1,7219:32583029,7095585:0 -) -(1,7220:6630773,7937073:25952256,513147,126483 -k1,7219:8663626,7937073:241099 -k1,7219:10101412,7937073:241099 -k1,7219:13374862,7937073:241099 -k1,7219:14147458,7937073:241099 -k1,7219:17597200,7937073:241099 -k1,7219:18785950,7937073:241099 -k1,7219:20478671,7937073:241099 -k1,7219:22097338,7937073:241100 -k1,7219:23529882,7937073:241099 -k1,7219:24236942,7937073:241099 -k1,7219:24936138,7937073:241099 -k1,7219:27518183,7937073:241099 -(1,7219:27518183,7937073:0,414482,115847 -r1,7311:28931584,7937073:1413401,530329,115847 -k1,7219:27518183,7937073:-1413401 -) -(1,7219:27518183,7937073:1413401,414482,115847 -k1,7219:27518183,7937073:3277 -h1,7219:28928307,7937073:0,411205,112570 -) -k1,7219:29346353,7937073:241099 -k1,7219:30606537,7937073:241099 -k1,7219:32051532,7937073:241099 -k1,7219:32583029,7937073:0 -) -(1,7220:6630773,8778561:25952256,513147,115847 -g1,7219:9588412,8778561 -g1,7219:10403679,8778561 -g1,7219:11621993,8778561 -g1,7219:14599949,8778561 -g1,7219:16188541,8778561 -g1,7219:18437736,8778561 -g1,7219:19828410,8778561 -g1,7219:22882387,8778561 -g1,7219:23555441,8778561 -(1,7219:23555441,8778561:0,414482,115847 -r1,7311:25320554,8778561:1765113,530329,115847 -k1,7219:23555441,8778561:-1765113 -) -(1,7219:23555441,8778561:1765113,414482,115847 -k1,7219:23555441,8778561:3277 -h1,7219:25317277,8778561:0,411205,112570 -) -k1,7220:32583029,8778561:7088805 -g1,7220:32583029,8778561 -) -(1,7222:6630773,9620049:25952256,513147,126483 -h1,7221:6630773,9620049:983040,0,0 -k1,7221:8759353,9620049:191991 -k1,7221:10880724,9620049:191991 -k1,7221:11428575,9620049:191991 -k1,7221:13009930,9620049:191992 -k1,7221:15078217,9620049:191991 -k1,7221:16664159,9620049:191991 -k1,7221:17752683,9620049:191991 -k1,7221:19478872,9620049:191991 -k1,7221:20862308,9620049:191991 -k1,7221:22709083,9620049:191991 -k1,7221:25787935,9620049:191991 -k1,7221:27021949,9620049:191992 -k1,7221:29596829,9620049:191991 -(1,7221:29596829,9620049:0,414482,115847 -r1,7311:29955095,9620049:358266,530329,115847 -k1,7221:29596829,9620049:-358266 -) -(1,7221:29596829,9620049:358266,414482,115847 -k1,7221:29596829,9620049:3277 -h1,7221:29951818,9620049:0,411205,112570 -) -k1,7221:30320756,9620049:191991 -k1,7221:31381099,9620049:191991 -k1,7221:32583029,9620049:0 -) -(1,7222:6630773,10461537:25952256,513147,134348 -k1,7221:7635455,10461537:195312 -k1,7221:8245607,10461537:195309 -k1,7221:12757776,10461537:195312 -k1,7221:16095540,10461537:195313 -(1,7221:16095540,10461537:0,452978,115847 -r1,7311:17157229,10461537:1061689,568825,115847 -k1,7221:16095540,10461537:-1061689 -) -(1,7221:16095540,10461537:1061689,452978,115847 -k1,7221:16095540,10461537:3277 -h1,7221:17153952,10461537:0,411205,112570 -) -k1,7221:17352541,10461537:195312 -k1,7221:18309382,10461537:195313 -k1,7221:21511486,10461537:195312 -k1,7221:22164895,10461537:195312 -k1,7221:23256741,10461537:195313 -k1,7221:25381433,10461537:195312 -k1,7221:27266264,10461537:195313 -k1,7221:28409227,10461537:195312 -k1,7221:30987429,10461537:195313 -(1,7221:30987429,10461537:0,414482,115847 -r1,7311:31345695,10461537:358266,530329,115847 -k1,7221:30987429,10461537:-358266 -) -(1,7221:30987429,10461537:358266,414482,115847 -k1,7221:30987429,10461537:3277 -h1,7221:31342418,10461537:0,411205,112570 -) -k1,7221:31714677,10461537:195312 -k1,7221:32583029,10461537:0 -) -(1,7222:6630773,11303025:25952256,505283,134348 -g1,7221:8031932,11303025 -g1,7221:9040531,11303025 -g1,7221:9654603,11303025 -g1,7221:14170689,11303025 -g1,7221:17512369,11303025 -(1,7221:17512369,11303025:0,452978,115847 -r1,7311:22442889,11303025:4930520,568825,115847 -k1,7221:17512369,11303025:-4930520 -) -(1,7221:17512369,11303025:4930520,452978,115847 -g1,7221:20329341,11303025 -h1,7221:22439612,11303025:0,411205,112570 -) -g1,7221:22642118,11303025 -g1,7221:23602875,11303025 -g1,7221:26808896,11303025 -g1,7221:27466222,11303025 -g1,7221:29320235,11303025 -k1,7222:32583029,11303025:1333414 -g1,7222:32583029,11303025 -) -v1,7224:6630773,12493491:0,393216,0 -(1,7235:6630773,16047727:25952256,3947452,196608 -g1,7235:6630773,16047727 -g1,7235:6630773,16047727 -g1,7235:6434165,16047727 -(1,7235:6434165,16047727:0,3947452,196608 -r1,7311:32779637,16047727:26345472,4144060,196608 -k1,7235:6434165,16047727:-26345472 -) -(1,7235:6434165,16047727:26345472,3947452,196608 -[1,7235:6630773,16047727:25952256,3750844,0 -(1,7226:6630773,12707401:25952256,410518,101187 -(1,7225:6630773,12707401:0,0,0 -g1,7225:6630773,12707401 -g1,7225:6630773,12707401 -g1,7225:6303093,12707401 -(1,7225:6303093,12707401:0,0,0 -) -g1,7225:6630773,12707401 -) -g1,7226:8211502,12707401 -g1,7226:9159940,12707401 -g1,7226:13269835,12707401 -g1,7226:13902127,12707401 -g1,7226:15482857,12707401 -g1,7226:16115149,12707401 -g1,7226:16747441,12707401 -g1,7226:18328170,12707401 -g1,7226:18960462,12707401 -g1,7226:19592754,12707401 -g1,7226:22121921,12707401 -h1,7226:24334940,12707401:0,0,0 -k1,7226:32583029,12707401:8248089 -g1,7226:32583029,12707401 -) -(1,7227:6630773,13373579:25952256,410518,82312 -h1,7227:6630773,13373579:0,0,0 -g1,7227:10740667,13373579 -g1,7227:11372959,13373579 -g1,7227:12005251,13373579 -h1,7227:12637543,13373579:0,0,0 -k1,7227:32583029,13373579:19945486 -g1,7227:32583029,13373579 -) -(1,7234:6630773,14039757:25952256,379060,101187 -(1,7229:6630773,14039757:0,0,0 -g1,7229:6630773,14039757 -g1,7229:6630773,14039757 -g1,7229:6303093,14039757 -(1,7229:6303093,14039757:0,0,0 -) -g1,7229:6630773,14039757 -) -g1,7234:7579210,14039757 -g1,7234:7895356,14039757 -g1,7234:8211502,14039757 -g1,7234:8843794,14039757 -g1,7234:9476086,14039757 -g1,7234:9792232,14039757 -g1,7234:10108378,14039757 -g1,7234:10424524,14039757 -g1,7234:10740670,14039757 -h1,7234:11056816,14039757:0,0,0 -k1,7234:32583028,14039757:21526212 -g1,7234:32583028,14039757 -) -(1,7234:6630773,14705935:25952256,379060,7863 -h1,7234:6630773,14705935:0,0,0 -g1,7234:7579210,14705935 -g1,7234:8211502,14705935 -g1,7234:8843794,14705935 -g1,7234:9476086,14705935 -h1,7234:11056814,14705935:0,0,0 -k1,7234:32583030,14705935:21526216 -g1,7234:32583030,14705935 -) -(1,7234:6630773,15372113:25952256,379060,9436 -h1,7234:6630773,15372113:0,0,0 -g1,7234:7579210,15372113 -g1,7234:8211502,15372113 -g1,7234:8843794,15372113 -g1,7234:9476086,15372113 -g1,7234:9792232,15372113 -h1,7234:11056815,15372113:0,0,0 -k1,7234:32583029,15372113:21526214 -g1,7234:32583029,15372113 -) -(1,7234:6630773,16038291:25952256,388497,9436 -h1,7234:6630773,16038291:0,0,0 -g1,7234:7579210,16038291 -g1,7234:8211502,16038291 -g1,7234:8843794,16038291 -g1,7234:9476086,16038291 -h1,7234:11056814,16038291:0,0,0 -k1,7234:32583030,16038291:21526216 -g1,7234:32583030,16038291 -) -] -) -g1,7235:32583029,16047727 -g1,7235:6630773,16047727 -g1,7235:6630773,16047727 -g1,7235:32583029,16047727 -g1,7235:32583029,16047727 -) -h1,7235:6630773,16244335:0,0,0 -v1,7239:6630773,18134399:0,393216,0 -(1,7240:6630773,20365760:25952256,2624577,0 -g1,7240:6630773,20365760 -g1,7240:6303093,20365760 -r1,7311:6401397,20365760:98304,2624577,0 -g1,7240:6600626,20365760 -g1,7240:6797234,20365760 -[1,7240:6797234,20365760:25785795,2624577,0 -(1,7240:6797234,18566937:25785795,825754,196608 -(1,7239:6797234,18566937:0,825754,196608 -r1,7311:7890375,18566937:1093141,1022362,196608 -k1,7239:6797234,18566937:-1093141 -) -(1,7239:6797234,18566937:1093141,825754,196608 -) -k1,7239:8029840,18566937:139465 -k1,7239:9347769,18566937:327680 -k1,7239:11121047,18566937:139465 -k1,7239:11792010,18566937:139466 -k1,7239:12950560,18566937:139465 -k1,7239:15849746,18566937:139465 -k1,7239:16656367,18566937:139465 -(1,7239:16656367,18566937:0,452978,115847 -r1,7311:19476616,18566937:2820249,568825,115847 -k1,7239:16656367,18566937:-2820249 -) -(1,7239:16656367,18566937:2820249,452978,115847 -k1,7239:16656367,18566937:3277 -h1,7239:19473339,18566937:0,411205,112570 -) -k1,7239:19616081,18566937:139465 -k1,7239:21453585,18566937:139466 -k1,7239:22612135,18566937:139465 -k1,7239:25783951,18566937:139465 -k1,7239:26454913,18566937:139465 -(1,7239:26454913,18566937:0,414482,115847 -r1,7311:27164891,18566937:709978,530329,115847 -k1,7239:26454913,18566937:-709978 -) -(1,7239:26454913,18566937:709978,414482,115847 -k1,7239:26454913,18566937:3277 -h1,7239:27161614,18566937:0,411205,112570 -) -k1,7239:27631382,18566937:139466 -k1,7239:29166764,18566937:139465 -k1,7239:30325314,18566937:139465 -k1,7239:32583029,18566937:0 -) -(1,7240:6797234,19408425:25785795,513147,134348 -k1,7239:7707978,19408425:149216 -k1,7239:10114910,19408425:149217 -k1,7239:11760313,19408425:149216 -k1,7239:12560958,19408425:149217 -k1,7239:13901619,19408425:149216 -k1,7239:15427747,19408425:149217 -k1,7239:16524614,19408425:149216 -k1,7239:17029690,19408425:149216 -k1,7239:18545988,19408425:149217 -k1,7239:20614098,19408425:149216 -k1,7239:22285061,19408425:149217 -k1,7239:23381928,19408425:149216 -k1,7239:26293488,19408425:149217 -k1,7239:27976902,19408425:149216 -k1,7239:30136764,19408425:149217 -(1,7239:30136764,19408425:0,414482,115847 -r1,7311:30846742,19408425:709978,530329,115847 -k1,7239:30136764,19408425:-709978 -) -(1,7239:30136764,19408425:709978,414482,115847 -k1,7239:30136764,19408425:3277 -h1,7239:30843465,19408425:0,411205,112570 -) -k1,7239:31169628,19408425:149216 -(1,7239:31169628,19408425:0,414482,115847 -r1,7311:32583029,19408425:1413401,530329,115847 -k1,7239:31169628,19408425:-1413401 -) -(1,7239:31169628,19408425:1413401,414482,115847 -k1,7239:31169628,19408425:3277 -h1,7239:32579752,19408425:0,411205,112570 -) -k1,7239:32583029,19408425:0 -) -(1,7240:6797234,20249913:25785795,505283,115847 -g1,7239:8187908,20249913 -(1,7239:8187908,20249913:0,414482,115847 -r1,7311:9953021,20249913:1765113,530329,115847 -k1,7239:8187908,20249913:-1765113 -) -(1,7239:8187908,20249913:1765113,414482,115847 -k1,7239:8187908,20249913:3277 -h1,7239:9949744,20249913:0,411205,112570 -) -k1,7240:32583029,20249913:22456338 -g1,7240:32583029,20249913 -) -] -g1,7240:32583029,20365760 -) -h1,7240:6630773,20365760:0,0,0 -(1,7243:6630773,21731536:25952256,513147,134348 -h1,7242:6630773,21731536:983040,0,0 -k1,7242:9590324,21731536:193276 -k1,7242:11873544,21731536:193277 -k1,7242:15092617,21731536:193276 -k1,7242:16570400,21731536:193277 -k1,7242:18774321,21731536:193276 -k1,7242:19323458,21731536:193277 -k1,7242:21668281,21731536:193276 -k1,7242:23250921,21731536:193277 -k1,7242:25494163,21731536:193276 -k1,7242:26370325,21731536:193277 -k1,7242:28265571,21731536:193276 -k1,7242:31563944,21731536:193277 -k1,7242:32583029,21731536:0 -) -(1,7243:6630773,22573024:25952256,505283,134348 -k1,7242:10006094,22573024:160780 -k1,7242:13243789,22573024:160780 -(1,7242:13243789,22573024:0,452978,115847 -r1,7311:14305479,22573024:1061690,568825,115847 -k1,7242:13243789,22573024:-1061690 -) -(1,7242:13243789,22573024:1061690,452978,115847 -g1,7242:13950490,22573024 -h1,7242:14302202,22573024:0,411205,112570 -) -k1,7242:14639929,22573024:160780 -(1,7242:14639929,22573024:0,452978,115847 -r1,7311:16405043,22573024:1765114,568825,115847 -k1,7242:14639929,22573024:-1765114 -) -(1,7242:14639929,22573024:1765114,452978,115847 -g1,7242:15698342,22573024 -h1,7242:16401766,22573024:0,411205,112570 -) -k1,7242:16739493,22573024:160780 -k1,7242:17583158,22573024:160780 -(1,7242:17583158,22573024:0,459977,115847 -r1,7311:17941424,22573024:358266,575824,115847 -k1,7242:17583158,22573024:-358266 -) -(1,7242:17583158,22573024:358266,459977,115847 -k1,7242:17583158,22573024:3277 -h1,7242:17938147,22573024:0,411205,112570 -) -k1,7242:18102203,22573024:160779 -k1,7242:19367265,22573024:160780 -k1,7242:20275811,22573024:160780 -k1,7242:23584941,22573024:160780 -k1,7242:24397149,22573024:160780 -k1,7242:25577014,22573024:160780 -k1,7242:28875002,22573024:160780 -k1,7242:32583029,22573024:0 -) -(1,7243:6630773,23414512:25952256,513147,134348 -k1,7242:7470019,23414512:179954 -k1,7242:8669058,23414512:179954 -k1,7242:11544508,23414512:179954 -k1,7242:12997827,23414512:179954 -k1,7242:13793820,23414512:179955 -k1,7242:14992859,23414512:179954 -k1,7242:16826286,23414512:179954 -k1,7242:18244215,23414512:179954 -k1,7242:19110331,23414512:179954 -k1,7242:19941713,23414512:179954 -k1,7242:21140752,23414512:179954 -k1,7242:23058721,23414512:179954 -k1,7242:23897968,23414512:179955 -k1,7242:24433782,23414512:179954 -k1,7242:27125076,23414512:179954 -k1,7242:29730517,23414512:179954 -k1,7242:30929556,23414512:179954 -k1,7242:32583029,23414512:0 -) -(1,7243:6630773,24256000:25952256,505283,7863 -k1,7243:32583029,24256000:24389222 -g1,7243:32583029,24256000 -) -v1,7245:6630773,25446466:0,393216,0 -(1,7270:6630773,34375075:25952256,9321825,196608 -g1,7270:6630773,34375075 -g1,7270:6630773,34375075 -g1,7270:6434165,34375075 -(1,7270:6434165,34375075:0,9321825,196608 -r1,7311:32779637,34375075:26345472,9518433,196608 -k1,7270:6434165,34375075:-26345472 -) -(1,7270:6434165,34375075:26345472,9321825,196608 -[1,7270:6630773,34375075:25952256,9125217,0 -(1,7247:6630773,25660376:25952256,410518,82312 -(1,7246:6630773,25660376:0,0,0 -g1,7246:6630773,25660376 -g1,7246:6630773,25660376 -g1,7246:6303093,25660376 -(1,7246:6303093,25660376:0,0,0 -) -g1,7246:6630773,25660376 -) -k1,7247:6630773,25660376:0 -g1,7247:10740667,25660376 -g1,7247:11372959,25660376 -g1,7247:12005251,25660376 -g1,7247:13269834,25660376 -g1,7247:13902126,25660376 -k1,7247:13902126,25660376:0 -h1,7247:14850564,25660376:0,0,0 -k1,7247:32583028,25660376:17732464 -g1,7247:32583028,25660376 -) -(1,7254:6630773,26326554:25952256,379060,101187 -(1,7249:6630773,26326554:0,0,0 -g1,7249:6630773,26326554 -g1,7249:6630773,26326554 -g1,7249:6303093,26326554 -(1,7249:6303093,26326554:0,0,0 -) -g1,7249:6630773,26326554 -) -g1,7254:7579210,26326554 -g1,7254:7895356,26326554 -g1,7254:8211502,26326554 -g1,7254:8843794,26326554 -h1,7254:9159940,26326554:0,0,0 -k1,7254:32583028,26326554:23423088 -g1,7254:32583028,26326554 -) -(1,7254:6630773,26992732:25952256,379060,4718 -h1,7254:6630773,26992732:0,0,0 -g1,7254:7579210,26992732 -g1,7254:8211502,26992732 -g1,7254:8843794,26992732 -h1,7254:9159940,26992732:0,0,0 -k1,7254:32583028,26992732:23423088 -g1,7254:32583028,26992732 -) -(1,7254:6630773,27658910:25952256,379060,9436 -h1,7254:6630773,27658910:0,0,0 -g1,7254:7579210,27658910 -g1,7254:8211502,27658910 -g1,7254:8843794,27658910 -h1,7254:9159940,27658910:0,0,0 -k1,7254:32583028,27658910:23423088 -g1,7254:32583028,27658910 -) -(1,7254:6630773,28325088:25952256,388497,9436 -h1,7254:6630773,28325088:0,0,0 -g1,7254:7579210,28325088 -g1,7254:8211502,28325088 -g1,7254:8843794,28325088 -h1,7254:9159940,28325088:0,0,0 -k1,7254:32583028,28325088:23423088 -g1,7254:32583028,28325088 -) -(1,7256:6630773,29646626:25952256,410518,101187 -(1,7255:6630773,29646626:0,0,0 -g1,7255:6630773,29646626 -g1,7255:6630773,29646626 -g1,7255:6303093,29646626 -(1,7255:6303093,29646626:0,0,0 -) -g1,7255:6630773,29646626 -) -k1,7256:6630773,29646626:0 -g1,7256:10740667,29646626 -g1,7256:11372959,29646626 -g1,7256:12005251,29646626 -g1,7256:13269834,29646626 -g1,7256:13902126,29646626 -g1,7256:15482855,29646626 -g1,7256:17063584,29646626 -g1,7256:17695876,29646626 -h1,7256:19592750,29646626:0,0,0 -k1,7256:32583029,29646626:12990279 -g1,7256:32583029,29646626 -) -(1,7263:6630773,30312804:25952256,379060,0 -(1,7258:6630773,30312804:0,0,0 -g1,7258:6630773,30312804 -g1,7258:6630773,30312804 -g1,7258:6303093,30312804 -(1,7258:6303093,30312804:0,0,0 -) -g1,7258:6630773,30312804 -) -g1,7263:7579210,30312804 -g1,7263:7895356,30312804 -g1,7263:8211502,30312804 -h1,7263:8527648,30312804:0,0,0 -k1,7263:32583028,30312804:24055380 -g1,7263:32583028,30312804 -) -(1,7263:6630773,30978982:25952256,379060,0 -h1,7263:6630773,30978982:0,0,0 -g1,7263:7579210,30978982 -g1,7263:8211502,30978982 -h1,7263:8527648,30978982:0,0,0 -k1,7263:32583028,30978982:24055380 -g1,7263:32583028,30978982 -) -(1,7263:6630773,31645160:25952256,379060,9436 -h1,7263:6630773,31645160:0,0,0 -g1,7263:7579210,31645160 -g1,7263:8211502,31645160 -h1,7263:8527648,31645160:0,0,0 -k1,7263:32583028,31645160:24055380 -g1,7263:32583028,31645160 -) -(1,7263:6630773,32311338:25952256,388497,9436 -h1,7263:6630773,32311338:0,0,0 -g1,7263:7579210,32311338 -g1,7263:8211502,32311338 -h1,7263:8527648,32311338:0,0,0 -k1,7263:32583028,32311338:24055380 -g1,7263:32583028,32311338 -) -(1,7265:6630773,33632876:25952256,410518,82312 -(1,7264:6630773,33632876:0,0,0 -g1,7264:6630773,33632876 -g1,7264:6630773,33632876 -g1,7264:6303093,33632876 -(1,7264:6303093,33632876:0,0,0 -) -g1,7264:6630773,33632876 -) -k1,7265:6630773,33632876:0 -g1,7265:10740667,33632876 -g1,7265:11372959,33632876 -g1,7265:12005251,33632876 -g1,7265:13269834,33632876 -g1,7265:13902126,33632876 -h1,7265:15166709,33632876:0,0,0 -k1,7265:32583029,33632876:17416320 -g1,7265:32583029,33632876 -) -(1,7269:6630773,34299054:25952256,404226,76021 -(1,7267:6630773,34299054:0,0,0 -g1,7267:6630773,34299054 -g1,7267:6630773,34299054 -g1,7267:6303093,34299054 -(1,7267:6303093,34299054:0,0,0 -) -g1,7267:6630773,34299054 -) -g1,7269:7579210,34299054 -g1,7269:8843793,34299054 -g1,7269:9476085,34299054 -g1,7269:10108377,34299054 -h1,7269:10424523,34299054:0,0,0 -k1,7269:32583029,34299054:22158506 -g1,7269:32583029,34299054 -) -] -) -g1,7270:32583029,34375075 -g1,7270:6630773,34375075 -g1,7270:6630773,34375075 -g1,7270:32583029,34375075 -g1,7270:32583029,34375075 -) -h1,7270:6630773,34571683:0,0,0 -v1,7274:6630773,36461747:0,393216,0 -(1,7275:6630773,37862256:25952256,1793725,0 -g1,7275:6630773,37862256 -g1,7275:6303093,37862256 -r1,7311:6401397,37862256:98304,1793725,0 -g1,7275:6600626,37862256 -g1,7275:6797234,37862256 -[1,7275:6797234,37862256:25785795,1793725,0 -(1,7275:6797234,36894285:25785795,825754,196608 -(1,7274:6797234,36894285:0,825754,196608 -r1,7311:8834093,36894285:2036859,1022362,196608 -k1,7274:6797234,36894285:-2036859 -) -(1,7274:6797234,36894285:2036859,825754,196608 -) -k1,7274:9068414,36894285:234321 -k1,7274:10386343,36894285:327680 -k1,7274:12403899,36894285:234321 -k1,7274:13453488,36894285:234321 -k1,7274:16902350,36894285:234321 -k1,7274:20213586,36894285:234321 -k1,7274:22819654,36894285:234320 -k1,7274:23705403,36894285:234321 -k1,7274:25329087,36894285:234321 -k1,7274:27770005,36894285:234321 -k1,7274:30014971,36894285:234321 -k1,7274:30605152,36894285:234321 -k1,7274:32583029,36894285:0 -) -(1,7275:6797234,37735773:25785795,513147,126483 -g1,7274:7679348,37735773 -g1,7274:9946238,37735773 -g1,7274:11336912,37735773 -g1,7274:13234179,37735773 -g1,7274:14248676,37735773 -g1,7274:15828093,37735773 -g1,7274:18037967,37735773 -g1,7274:18593056,37735773 -g1,7274:20181648,37735773 -k1,7275:32583029,37735773:10198061 -g1,7275:32583029,37735773 -) -] -g1,7275:32583029,37862256 -) -h1,7275:6630773,37862256:0,0,0 -v1,7278:6630773,39228032:0,393216,0 -(1,7311:6630773,40565941:25952256,1731125,0 -g1,7311:6630773,40565941 -g1,7311:6303093,40565941 -r1,7311:6401397,40565941:98304,1731125,0 -g1,7311:6600626,40565941 -g1,7311:6797234,40565941 -[1,7311:6797234,40565941:25785795,1731125,0 -(1,7279:6797234,39590105:25785795,755289,196608 -(1,7278:6797234,39590105:0,755289,196608 -r1,7311:8134168,39590105:1336934,951897,196608 -k1,7278:6797234,39590105:-1336934 -) -(1,7278:6797234,39590105:1336934,755289,196608 -) -k1,7278:8291718,39590105:157550 -k1,7278:8619398,39590105:327680 -k1,7278:9404784,39590105:157551 -k1,7278:10581419,39590105:157550 -k1,7278:12106051,39590105:157551 -k1,7278:12930757,39590105:157550 -(1,7278:12930757,39590105:0,452978,115847 -r1,7311:15751006,39590105:2820249,568825,115847 -k1,7278:12930757,39590105:-2820249 -) -(1,7278:12930757,39590105:2820249,452978,115847 -k1,7278:12930757,39590105:3277 -h1,7278:15747729,39590105:0,411205,112570 -) -k1,7278:15908557,39590105:157551 -k1,7278:16934459,39590105:157550 -k1,7278:18196292,39590105:157551 -k1,7278:20174432,39590105:157550 -k1,7278:23045174,39590105:157551 -k1,7278:25617070,39590105:157550 -k1,7278:26460783,39590105:157551 -k1,7278:28693858,39590105:157550 -k1,7278:30893511,39590105:157551 -k1,7278:32583029,39590105:0 -) -(1,7279:6797234,40431593:25785795,513147,134348 -g1,7278:7944114,40431593 -g1,7278:9745043,40431593 -g1,7278:11646242,40431593 -g1,7278:15044939,40431593 -g1,7278:18458709,40431593 -g1,7278:20393331,40431593 -g1,7278:23669475,40431593 -(1,7278:23669475,40431593:0,452978,115847 -r1,7311:24731165,40431593:1061690,568825,115847 -k1,7278:23669475,40431593:-1061690 -) -(1,7278:23669475,40431593:1061690,452978,115847 -g1,7278:24376176,40431593 -h1,7278:24727888,40431593:0,411205,112570 -) -g1,7278:25104064,40431593 -(1,7278:25104064,40431593:0,452978,115847 -r1,7311:26869178,40431593:1765114,568825,115847 -k1,7278:25104064,40431593:-1765114 -) -(1,7278:25104064,40431593:1765114,452978,115847 -g1,7278:26162477,40431593 -h1,7278:26865901,40431593:0,411205,112570 -) -g1,7278:27068407,40431593 -g1,7278:27950521,40431593 -(1,7278:27950521,40431593:0,459977,115847 -r1,7311:28308787,40431593:358266,575824,115847 -k1,7278:27950521,40431593:-358266 -) -(1,7278:27950521,40431593:358266,459977,115847 -k1,7278:27950521,40431593:3277 -h1,7278:28305510,40431593:0,411205,112570 -) -g1,7278:28508016,40431593 -g1,7278:29238742,40431593 -k1,7279:32583029,40431593:872269 -g1,7279:32583029,40431593 -) -] -g1,7311:32583029,40565941 -) -] -(1,7311:32583029,45706769:0,0,0 -g1,7311:32583029,45706769 -) -) -] -(1,7311:6630773,47279633:25952256,0,0 -h1,7311:6630773,47279633:25952256,0,0 +g1,6237:15452340,26304540 +g1,6237:15452340,26304540 ) -] -(1,7311:4262630,4025873:0,0,0 -[1,7311:-473656,4025873:0,0,0 -(1,7311:-473656,-710413:0,0,0 -(1,7311:-473656,-710413:0,0,0 -g1,7311:-473656,-710413 ) -g1,7311:-473656,-710413 -) -] +(1,6238:15452340,26304540:0,0,0 +(1,6238:15452340,26304540:0,0,0 +g1,6238:15452340,26304540 +(1,6238:15452340,26304540:0,0,0 +(1,6238:15452340,26304540:684854,300941,0 +(1,6238:15452340,26304540:684854,300941,0 +(1,6238:15452340,26304540:684854,300941,0 +(1,6238:15931736,26304540:300941,479396,205458 +(1,6238:15931736,26304540:300941,479396,205458 +r1,6282:16232677,26304540:0,684854,205458 ) -] -!24932 -}119 -Input:956:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:957:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:958:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:959:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:960:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:961:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:962:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:963:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:964:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:965:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:966:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:967:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:968:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:969:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:970:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:971:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:972:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:973:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1686 -{120 -[1,7355:4262630,47279633:28320399,43253760,0 -(1,7355:4262630,4025873:0,0,0 -[1,7355:-473656,4025873:0,0,0 -(1,7355:-473656,-710413:0,0,0 -(1,7355:-473656,-644877:0,0,0 -k1,7355:-473656,-644877:-65536 ) -(1,7355:-473656,4736287:0,0,0 -k1,7355:-473656,4736287:5209943 ) -g1,7355:-473656,-710413 ) -] +g1,6238:16137194,26304540 ) -[1,7355:6630773,47279633:25952256,43253760,0 -[1,7355:6630773,4812305:25952256,786432,0 -(1,7355:6630773,4812305:25952256,513147,126483 -(1,7355:6630773,4812305:25952256,513147,126483 -g1,7355:3078558,4812305 -[1,7355:3078558,4812305:0,0,0 -(1,7355:3078558,2439708:0,1703936,0 -k1,7355:1358238,2439708:-1720320 -(1,5950:1358238,2439708:1720320,1703936,0 -(1,5950:1358238,2439708:1179648,16384,0 -r1,7355:2537886,2439708:1179648,16384,0 ) -g1,5950:3062174,2439708 -(1,5950:3062174,2439708:16384,1703936,0 -[1,5950:3062174,2439708:25952256,1703936,0 -(1,5950:3062174,1915420:25952256,1179648,0 -(1,5950:3062174,1915420:16384,1179648,0 -r1,7355:3078558,1915420:16384,1179648,0 +g1,6238:15452340,26304540 +g1,6238:15452340,26304540 ) -k1,5950:29014430,1915420:25935872 -g1,5950:29014430,1915420 ) -] +g1,6238:15452340,26304540 +g1,6240:15452340,26304540 +(1,6240:15452340,26304540:0,0,0 +(1,6240:15452340,26304540:0,0,0 +g1,6240:15452340,26304540 +g1,6240:15452340,26304540 +g1,6240:15452340,26304540 +g1,6240:15452340,26304540 +g1,6240:15452340,26304540 +(1,6240:15452340,26304540:0,0,0 +(1,6240:15452340,26304540:6599312,404226,101187 +(1,6240:15452340,26304540:6599312,404226,101187 +(1,6240:15452340,26304540:0,363038,98932 +r1,6282:17428480,26304540:1976140,461970,98932 +k1,6240:15452340,26304540:-1976140 ) +(1,6240:15452340,26304540:1976140,363038,98932 +k1,6240:15452340,26304540:3277 +h1,6240:17425203,26304540:0,328964,90056 ) +g1,6240:17594155,26304540 +g1,6240:20265927,26304540 ) -] -[1,7355:3078558,4812305:0,0,0 -(1,7355:3078558,2439708:0,1703936,0 -g1,7355:29030814,2439708 -g1,7355:36135244,2439708 -(1,5950:36135244,2439708:1720320,1703936,0 -(1,5950:36135244,2439708:16384,1703936,0 -[1,5950:36135244,2439708:25952256,1703936,0 -(1,5950:36135244,1915420:25952256,1179648,0 -(1,5950:36135244,1915420:16384,1179648,0 -r1,7355:36151628,1915420:16384,1179648,0 +g1,6240:22051652,26304540 ) -k1,5950:62087500,1915420:25935872 -g1,5950:62087500,1915420 ) -] +g1,6240:15452340,26304540 +g1,6240:15452340,26304540 ) -g1,5950:36675916,2439708 -(1,5950:36675916,2439708:1179648,16384,0 -r1,7355:37855564,2439708:1179648,16384,0 ) +g1,6240:15452340,26304540 +g1,6241:15452340,26304540 +(1,6241:15452340,26304540:0,0,0 +(1,6241:15452340,26304540:0,0,0 +g1,6241:15452340,26304540 +g1,6241:15452340,26304540 +g1,6241:15452340,26304540 +g1,6241:15452340,26304540 +g1,6241:15452340,26304540 +(1,6241:15452340,26304540:0,0,0 +(1,6241:15452340,26304540:9177138,404226,107478 +(1,6241:15452340,26304540:9177138,404226,107478 +g1,6241:19331023,26304540 +g1,6241:20905460,26304540 +g1,6241:23013098,26304540 ) -k1,7355:3078556,2439708:-34777008 +g1,6241:24629478,26304540 ) -] -[1,7355:3078558,4812305:0,0,0 -(1,7355:3078558,49800853:0,16384,2228224 -k1,7355:1358238,49800853:-1720320 -(1,5950:1358238,49800853:1720320,16384,2228224 -(1,5950:1358238,49800853:1179648,16384,0 -r1,7355:2537886,49800853:1179648,16384,0 ) -g1,5950:3062174,49800853 -(1,5950:3062174,52029077:16384,1703936,0 -[1,5950:3062174,52029077:25952256,1703936,0 -(1,5950:3062174,51504789:25952256,1179648,0 -(1,5950:3062174,51504789:16384,1179648,0 -r1,7355:3078558,51504789:16384,1179648,0 +g1,6241:15452340,26304540 +g1,6241:15452340,26304540 ) -k1,5950:29014430,51504789:25935872 -g1,5950:29014430,51504789 ) -] +g1,6241:15452340,26304540 +g1,6242:15452340,26304540 +(1,6242:15452340,26304540:0,0,0 +(1,6242:15452340,26304540:0,0,0 +g1,6242:15452340,26304540 +g1,6242:15452340,26304540 +g1,6242:15452340,26304540 +g1,6242:15452340,26304540 +g1,6242:15452340,26304540 +(1,6242:15452340,26304540:0,0,0 +(1,6242:15452340,26304540:6641433,404226,93333 +(1,6242:15452340,26304540:6641433,404226,93333 +(1,6242:15452340,26304540:0,363038,93333 +r1,6282:17991219,26304540:2538879,456371,93333 +k1,6242:15452340,26304540:-2538879 ) +(1,6242:15452340,26304540:2538879,363038,93333 +k1,6242:15452340,26304540:3277 +h1,6242:17987942,26304540:0,328964,90056 ) +g1,6242:18156894,26304540 +g1,6242:20430731,26304540 ) -] -[1,7355:3078558,4812305:0,0,0 -(1,7355:3078558,49800853:0,16384,2228224 -g1,7355:29030814,49800853 -g1,7355:36135244,49800853 -(1,5950:36135244,49800853:1720320,16384,2228224 -(1,5950:36135244,52029077:16384,1703936,0 -[1,5950:36135244,52029077:25952256,1703936,0 -(1,5950:36135244,51504789:25952256,1179648,0 -(1,5950:36135244,51504789:16384,1179648,0 -r1,7355:36151628,51504789:16384,1179648,0 +g1,6242:22093773,26304540 ) -k1,5950:62087500,51504789:25935872 -g1,5950:62087500,51504789 ) -] +g1,6242:15452340,26304540 +g1,6242:15452340,26304540 ) -g1,5950:36675916,49800853 -(1,5950:36675916,49800853:1179648,16384,0 -r1,7355:37855564,49800853:1179648,16384,0 ) +g1,6242:15452340,26304540 +(1,6245:15452340,26304540:0,0,0 +(1,6245:15452340,26304540:0,0,0 +g1,6245:15452340,26304540 +g1,6245:15452340,26304540 +(1,6245:15452340,26304540:0,0,0 +(1,6245:15452340,26304540:331874,479396,205458 +(1,6245:15452340,26304540:331874,479396,205458 +r1,6282:15784214,26304540:0,684854,205458 ) -k1,7355:3078556,49800853:-34777008 +g1,6245:15784214,26304540 ) -] -g1,7355:6630773,4812305 -g1,7355:6630773,4812305 -g1,7355:8364200,4812305 -g1,7355:10765439,4812305 -k1,7355:31387651,4812305:20622212 -) -) -] -[1,7355:6630773,45706769:25952256,40108032,0 -(1,7355:6630773,45706769:25952256,40108032,0 -(1,7355:6630773,45706769:0,0,0 -g1,7355:6630773,45706769 -) -[1,7355:6630773,45706769:25952256,40108032,0 -v1,7311:6630773,6254097:0,393216,0 -(1,7311:6630773,17835551:25952256,11974670,0 -g1,7311:6630773,17835551 -g1,7311:6303093,17835551 -r1,7355:6401397,17835551:98304,11974670,0 -g1,7311:6600626,17835551 -g1,7311:6797234,17835551 -[1,7311:6797234,17835551:25785795,11974670,0 -v1,7281:6797234,6254097:0,393216,0 -(1,7309:6797234,17114655:25785795,11253774,196608 -g1,7309:6797234,17114655 -g1,7309:6797234,17114655 -g1,7309:6600626,17114655 -(1,7309:6600626,17114655:0,11253774,196608 -r1,7355:32779637,17114655:26179011,11450382,196608 -k1,7309:6600625,17114655:-26179012 -) -(1,7309:6600626,17114655:26179011,11253774,196608 -[1,7309:6797234,17114655:25785795,11057166,0 -(1,7283:6797234,6468007:25785795,410518,82312 -(1,7282:6797234,6468007:0,0,0 -g1,7282:6797234,6468007 -g1,7282:6797234,6468007 -g1,7282:6469554,6468007 -(1,7282:6469554,6468007:0,0,0 -) -g1,7282:6797234,6468007 -) -k1,7283:6797234,6468007:0 -g1,7283:10907128,6468007 -g1,7283:11539420,6468007 -g1,7283:12171712,6468007 -g1,7283:13120150,6468007 -g1,7283:15333170,6468007 -g1,7283:15965462,6468007 -h1,7283:16597754,6468007:0,0,0 -k1,7283:32583029,6468007:15985275 -g1,7283:32583029,6468007 -) -(1,7290:6797234,7134185:25785795,379060,101187 -(1,7285:6797234,7134185:0,0,0 -g1,7285:6797234,7134185 -g1,7285:6797234,7134185 -g1,7285:6469554,7134185 -(1,7285:6469554,7134185:0,0,0 -) -g1,7285:6797234,7134185 -) -g1,7290:7745671,7134185 -g1,7290:8061817,7134185 -g1,7290:8377963,7134185 -h1,7290:8694109,7134185:0,0,0 -k1,7290:32583029,7134185:23888920 -g1,7290:32583029,7134185 -) -(1,7290:6797234,7800363:25785795,379060,4718 -h1,7290:6797234,7800363:0,0,0 -g1,7290:7745671,7800363 -g1,7290:8377963,7800363 -h1,7290:8694109,7800363:0,0,0 -k1,7290:32583029,7800363:23888920 -g1,7290:32583029,7800363 -) -(1,7290:6797234,8466541:25785795,379060,9436 -h1,7290:6797234,8466541:0,0,0 -g1,7290:7745671,8466541 -g1,7290:8377963,8466541 -h1,7290:8694109,8466541:0,0,0 -k1,7290:32583029,8466541:23888920 -g1,7290:32583029,8466541 -) -(1,7290:6797234,9132719:25785795,388497,9436 -h1,7290:6797234,9132719:0,0,0 -g1,7290:7745671,9132719 -g1,7290:8377963,9132719 -h1,7290:8694109,9132719:0,0,0 -k1,7290:32583029,9132719:23888920 -g1,7290:32583029,9132719 -) -(1,7292:6797234,10454257:25785795,410518,82312 -(1,7291:6797234,10454257:0,0,0 -g1,7291:6797234,10454257 -g1,7291:6797234,10454257 -g1,7291:6469554,10454257 -(1,7291:6469554,10454257:0,0,0 -) -g1,7291:6797234,10454257 -) -k1,7292:6797234,10454257:0 -g1,7292:10907128,10454257 -g1,7292:11539420,10454257 -g1,7292:12171712,10454257 -g1,7292:13120150,10454257 -g1,7292:15333170,10454257 -g1,7292:15965462,10454257 -h1,7292:16597753,10454257:0,0,0 -k1,7292:32583029,10454257:15985276 -g1,7292:32583029,10454257 -) -(1,7299:6797234,11120435:25785795,379060,0 -(1,7294:6797234,11120435:0,0,0 -g1,7294:6797234,11120435 -g1,7294:6797234,11120435 -g1,7294:6469554,11120435 -(1,7294:6469554,11120435:0,0,0 -) -g1,7294:6797234,11120435 -) -g1,7299:7745671,11120435 -g1,7299:8061817,11120435 -g1,7299:8377963,11120435 -h1,7299:8694109,11120435:0,0,0 -k1,7299:32583029,11120435:23888920 -g1,7299:32583029,11120435 -) -(1,7299:6797234,11786613:25785795,379060,0 -h1,7299:6797234,11786613:0,0,0 -g1,7299:7745671,11786613 -g1,7299:8377963,11786613 -h1,7299:8694109,11786613:0,0,0 -k1,7299:32583029,11786613:23888920 -g1,7299:32583029,11786613 -) -(1,7299:6797234,12452791:25785795,379060,9436 -h1,7299:6797234,12452791:0,0,0 -g1,7299:7745671,12452791 -g1,7299:8377963,12452791 -h1,7299:8694109,12452791:0,0,0 -k1,7299:32583029,12452791:23888920 -g1,7299:32583029,12452791 -) -(1,7299:6797234,13118969:25785795,388497,9436 -h1,7299:6797234,13118969:0,0,0 -g1,7299:7745671,13118969 -g1,7299:8377963,13118969 -h1,7299:8694109,13118969:0,0,0 -k1,7299:32583029,13118969:23888920 -g1,7299:32583029,13118969 -) -(1,7301:6797234,14440507:25785795,410518,82312 -(1,7300:6797234,14440507:0,0,0 -g1,7300:6797234,14440507 -g1,7300:6797234,14440507 -g1,7300:6469554,14440507 -(1,7300:6469554,14440507:0,0,0 -) -g1,7300:6797234,14440507 -) -k1,7301:6797234,14440507:0 -g1,7301:10907128,14440507 -g1,7301:11539420,14440507 -g1,7301:12171712,14440507 -g1,7301:13120150,14440507 -g1,7301:15333170,14440507 -g1,7301:15965462,14440507 -h1,7301:17230045,14440507:0,0,0 -k1,7301:32583029,14440507:15352984 -g1,7301:32583029,14440507 -) -(1,7308:6797234,15106685:25785795,379060,0 -(1,7303:6797234,15106685:0,0,0 -g1,7303:6797234,15106685 -g1,7303:6797234,15106685 -g1,7303:6469554,15106685 -(1,7303:6469554,15106685:0,0,0 -) -g1,7303:6797234,15106685 -) -g1,7308:7745671,15106685 -g1,7308:8061817,15106685 -g1,7308:8377963,15106685 -h1,7308:8694109,15106685:0,0,0 -k1,7308:32583029,15106685:23888920 -g1,7308:32583029,15106685 -) -(1,7308:6797234,15772863:25785795,379060,0 -h1,7308:6797234,15772863:0,0,0 -g1,7308:7745671,15772863 -g1,7308:8377963,15772863 -h1,7308:8694109,15772863:0,0,0 -k1,7308:32583029,15772863:23888920 -g1,7308:32583029,15772863 -) -(1,7308:6797234,16439041:25785795,379060,9436 -h1,7308:6797234,16439041:0,0,0 -g1,7308:7745671,16439041 -g1,7308:8377963,16439041 -h1,7308:8694109,16439041:0,0,0 -k1,7308:32583029,16439041:23888920 -g1,7308:32583029,16439041 -) -(1,7308:6797234,17105219:25785795,388497,9436 -h1,7308:6797234,17105219:0,0,0 -g1,7308:7745671,17105219 -g1,7308:8377963,17105219 -h1,7308:8694109,17105219:0,0,0 -k1,7308:32583029,17105219:23888920 -g1,7308:32583029,17105219 -) -] -) -g1,7309:32583029,17114655 -g1,7309:6797234,17114655 -g1,7309:6797234,17114655 -g1,7309:32583029,17114655 -g1,7309:32583029,17114655 -) -h1,7309:6797234,17311263:0,0,0 -] -g1,7311:32583029,17835551 -) -h1,7311:6630773,17835551:0,0,0 -(1,7314:6630773,18991611:25952256,513147,134348 -h1,7313:6630773,18991611:983040,0,0 -k1,7313:9420079,18991611:157380 -k1,7313:10236751,18991611:157380 -k1,7313:11413216,18991611:157380 -k1,7313:14562314,18991611:157379 -k1,7313:15335732,18991611:157380 -k1,7313:16512197,18991611:157380 -k1,7313:17817768,18991611:157380 -k1,7313:19337642,18991611:157380 -k1,7313:20991209,18991611:157380 -k1,7313:23449558,18991611:157380 -k1,7313:25390827,18991611:157379 -k1,7313:26567292,18991611:157380 -k1,7313:29159990,18991611:157380 -k1,7313:30706733,18991611:157380 -k1,7314:32583029,18991611:0 -) -(1,7314:6630773,19833099:25952256,513147,134348 -(1,7313:6630773,19833099:0,459977,115847 -r1,7355:8044174,19833099:1413401,575824,115847 -k1,7313:6630773,19833099:-1413401 -) -(1,7313:6630773,19833099:1413401,459977,115847 -k1,7313:6630773,19833099:3277 -h1,7313:8040897,19833099:0,411205,112570 -) -k1,7313:8473710,19833099:255866 -k1,7313:9683126,19833099:255867 -k1,7313:11043274,19833099:255866 -k1,7313:12916570,19833099:255867 -k1,7313:14191521,19833099:255866 -k1,7313:17226115,19833099:255867 -k1,7313:19162324,19833099:255866 -k1,7313:21153584,19833099:255867 -k1,7313:21765310,19833099:255866 -k1,7313:23304372,19833099:255867 -k1,7313:25298253,19833099:255866 -k1,7313:26020081,19833099:255867 -k1,7313:27144299,19833099:255866 -k1,7313:28948782,19833099:255867 -k1,7313:29856076,19833099:255866 -k1,7314:32583029,19833099:0 -) -(1,7314:6630773,20674587:25952256,505283,134348 -(1,7313:6630773,20674587:0,459977,115847 -r1,7355:8044174,20674587:1413401,575824,115847 -k1,7313:6630773,20674587:-1413401 -) -(1,7313:6630773,20674587:1413401,459977,115847 -k1,7313:6630773,20674587:3277 -h1,7313:8040897,20674587:0,411205,112570 -) -k1,7313:8277793,20674587:233619 -k1,7313:12176185,20674587:233619 -k1,7313:13092689,20674587:233619 -k1,7313:14194660,20674587:233619 -k1,7313:15532561,20674587:233619 -k1,7313:17772892,20674587:233619 -k1,7313:19025597,20674587:233620 -k1,7313:21102088,20674587:233619 -k1,7313:21987135,20674587:233619 -(1,7313:21987135,20674587:0,459977,115847 -r1,7355:23400536,20674587:1413401,575824,115847 -k1,7313:21987135,20674587:-1413401 -) -(1,7313:21987135,20674587:1413401,459977,115847 -k1,7313:21987135,20674587:3277 -h1,7313:23397259,20674587:0,411205,112570 -) -k1,7313:23807825,20674587:233619 -k1,7313:26609145,20674587:233619 -k1,7313:27458802,20674587:233619 -k1,7313:28711506,20674587:233619 -k1,7313:31563944,20674587:233619 -k1,7313:32583029,20674587:0 -) -(1,7314:6630773,21516075:25952256,505283,126483 -g1,7313:10150711,21516075 -g1,7313:12388110,21516075 -k1,7314:32583028,21516075:18340904 -g1,7314:32583028,21516075 -) -v1,7316:6630773,22672135:0,393216,0 -(1,7352:6630773,45706769:25952256,23427850,0 -g1,7352:6630773,45706769 -g1,7352:6303093,45706769 -r1,7355:6401397,45706769:98304,23427850,0 -g1,7352:6600626,45706769 -g1,7352:6797234,45706769 -[1,7352:6797234,45706769:25785795,23427850,0 -(1,7317:6797234,23092719:25785795,813800,267386 -(1,7316:6797234,23092719:0,813800,267386 -r1,7355:8134168,23092719:1336934,1081186,267386 -k1,7316:6797234,23092719:-1336934 -) -(1,7316:6797234,23092719:1336934,813800,267386 -) -k1,7316:8297165,23092719:162997 -k1,7316:8624845,23092719:327680 -k1,7316:9415678,23092719:162998 -k1,7316:10597760,23092719:162997 -k1,7316:13752476,23092719:162997 -k1,7316:15944468,23092719:162997 -k1,7316:17126551,23092719:162998 -k1,7316:19357864,23092719:162997 -k1,7316:20136899,23092719:162997 -k1,7316:21318982,23092719:162998 -k1,7316:24921964,23092719:162997 -k1,7316:27290248,23092719:162997 -k1,7316:28139407,23092719:162997 -k1,7316:29321490,23092719:162998 -k1,7316:31725818,23092719:162997 -k1,7317:32583029,23092719:0 -) -(1,7317:6797234,23934207:25785795,513147,134348 -k1,7316:9401760,23934207:176417 -k1,7316:10229605,23934207:176417 -(1,7316:10229605,23934207:0,452978,115847 -r1,7355:13049854,23934207:2820249,568825,115847 -k1,7316:10229605,23934207:-2820249 -) -(1,7316:10229605,23934207:2820249,452978,115847 -k1,7316:10229605,23934207:3277 -h1,7316:13046577,23934207:0,411205,112570 -) -k1,7316:13226271,23934207:176417 -k1,7316:14906739,23934207:176417 -k1,7316:17921520,23934207:176417 -k1,7316:20107926,23934207:176417 -(1,7316:20107926,23934207:0,459977,115847 -r1,7355:21873039,23934207:1765113,575824,115847 -k1,7316:20107926,23934207:-1765113 -) -(1,7316:20107926,23934207:1765113,459977,115847 -k1,7316:20107926,23934207:3277 -h1,7316:21869762,23934207:0,411205,112570 -) -k1,7316:22049456,23934207:176417 -k1,7316:23417318,23934207:176417 -k1,7316:25677125,23934207:176417 -k1,7316:28788244,23934207:176417 -k1,7316:29430622,23934207:176417 -k1,7316:30673310,23934207:176417 -k1,7316:32583029,23934207:0 -) -(1,7317:6797234,24775695:25785795,513147,134348 -k1,7316:7653083,24775695:239811 -k1,7316:8911980,24775695:239812 -k1,7316:10541154,24775695:239811 -k1,7316:12657261,24775695:239811 -k1,7316:15186901,24775695:239812 -k1,7316:16820663,24775695:239811 -k1,7316:20031876,24775695:239811 -k1,7316:22340003,24775695:239811 -k1,7316:23571375,24775695:239812 -k1,7316:26649550,24775695:239811 -k1,7316:27837012,24775695:239811 -k1,7316:28692862,24775695:239812 -k1,7316:29951758,24775695:239811 -k1,7317:32583029,24775695:0 -) -(1,7317:6797234,25617183:25785795,513147,134348 -k1,7316:8788741,25617183:178781 -k1,7316:10799909,25617183:178781 -k1,7316:12716706,25617183:178782 -k1,7316:13704857,25617183:178781 -k1,7316:16394978,25617183:178781 -(1,7316:16394978,25617183:0,414482,115847 -r1,7355:16753244,25617183:358266,530329,115847 -k1,7316:16394978,25617183:-358266 -) -(1,7316:16394978,25617183:358266,414482,115847 -k1,7316:16394978,25617183:3277 -h1,7316:16749967,25617183:0,411205,112570 -) -k1,7316:16932025,25617183:178781 -k1,7316:17726844,25617183:178781 -k1,7316:18924711,25617183:178782 -k1,7316:20492855,25617183:178781 -k1,7316:22547932,25617183:178781 -(1,7316:22547932,25617183:0,459977,115847 -r1,7355:23961333,25617183:1413401,575824,115847 -k1,7316:22547932,25617183:-1413401 -) -(1,7316:22547932,25617183:1413401,459977,115847 -k1,7316:22547932,25617183:3277 -h1,7316:23958056,25617183:0,411205,112570 -) -k1,7316:24313784,25617183:178781 -k1,7316:26470442,25617183:178781 -(1,7316:26470442,25617183:0,414482,115847 -r1,7355:26828708,25617183:358266,530329,115847 -k1,7316:26470442,25617183:-358266 -) -(1,7316:26470442,25617183:358266,414482,115847 -k1,7316:26470442,25617183:3277 -h1,7316:26825431,25617183:0,411205,112570 -) -k1,7316:27007490,25617183:178782 -k1,7316:28753892,25617183:178781 -k1,7316:29951758,25617183:178781 -k1,7317:32583029,25617183:0 -) -(1,7317:6797234,26458671:25785795,513147,134348 -k1,7316:8655039,26458671:218750 -k1,7316:9405286,26458671:218750 -k1,7316:11945977,26458671:218750 -k1,7316:13677952,26458671:218749 -k1,7316:14512740,26458671:218750 -k1,7316:15750575,26458671:218750 -k1,7316:17939993,26458671:218750 -k1,7316:20027174,26458671:218750 -k1,7316:23079045,26458671:218750 -k1,7316:23913833,26458671:218750 -k1,7316:24488442,26458671:218749 -k1,7316:27485919,26458671:218750 -k1,7316:29094032,26458671:218750 -k1,7316:31189078,26458671:218750 -k1,7316:32583029,26458671:0 -) -(1,7317:6797234,27300159:25785795,435480,115847 -g1,7316:7805833,27300159 -g1,7316:9539260,27300159 -g1,7316:10424651,27300159 -(1,7316:10424651,27300159:0,435480,115847 -r1,7355:12189765,27300159:1765114,551327,115847 -k1,7316:10424651,27300159:-1765114 -) -(1,7316:10424651,27300159:1765114,435480,115847 -g1,7316:11131352,27300159 -g1,7316:11834776,27300159 -h1,7316:12186488,27300159:0,411205,112570 -) -g1,7316:12388994,27300159 -g1,7316:14929169,27300159 -(1,7316:14929169,27300159:0,414482,115847 -r1,7355:16694282,27300159:1765113,530329,115847 -k1,7316:14929169,27300159:-1765113 -) -(1,7316:14929169,27300159:1765113,414482,115847 -k1,7316:14929169,27300159:3277 -h1,7316:16691005,27300159:0,411205,112570 -) -k1,7317:32583029,27300159:15715077 -g1,7317:32583029,27300159 -) -v1,7319:6797234,28250533:0,393216,0 -(1,7328:6797234,30548434:25785795,2691117,196608 -g1,7328:6797234,30548434 -g1,7328:6797234,30548434 -g1,7328:6600626,30548434 -(1,7328:6600626,30548434:0,2691117,196608 -r1,7355:32779637,30548434:26179011,2887725,196608 -k1,7328:6600625,30548434:-26179012 -) -(1,7328:6600626,30548434:26179011,2691117,196608 -[1,7328:6797234,30548434:25785795,2494509,0 -(1,7321:6797234,28442422:25785795,388497,0 -(1,7320:6797234,28442422:0,0,0 -g1,7320:6797234,28442422 -g1,7320:6797234,28442422 -g1,7320:6469554,28442422 -(1,7320:6469554,28442422:0,0,0 -) -g1,7320:6797234,28442422 -) -g1,7321:7429526,28442422 -g1,7321:8377964,28442422 -h1,7321:8694110,28442422:0,0,0 -k1,7321:32583030,28442422:23888920 -g1,7321:32583030,28442422 -) -(1,7322:6797234,29108600:25785795,410518,82312 -h1,7322:6797234,29108600:0,0,0 -g1,7322:10907128,29108600 -g1,7322:11539420,29108600 -g1,7322:12171712,29108600 -h1,7322:12804004,29108600:0,0,0 -k1,7322:32583028,29108600:19779024 -g1,7322:32583028,29108600 -) -(1,7327:6797234,29774778:25785795,404226,101187 -(1,7324:6797234,29774778:0,0,0 -g1,7324:6797234,29774778 -g1,7324:6797234,29774778 -g1,7324:6469554,29774778 -(1,7324:6469554,29774778:0,0,0 -) -g1,7324:6797234,29774778 -) -g1,7327:7745671,29774778 -g1,7327:9010254,29774778 -g1,7327:9642546,29774778 -g1,7327:10274838,29774778 -h1,7327:10590984,29774778:0,0,0 -k1,7327:32583028,29774778:21992044 -g1,7327:32583028,29774778 -) -(1,7327:6797234,30440956:25785795,404226,107478 -h1,7327:6797234,30440956:0,0,0 -g1,7327:7745671,30440956 -g1,7327:8694108,30440956 -g1,7327:10590983,30440956 -g1,7327:11855566,30440956 -g1,7327:14700878,30440956 -h1,7327:17862335,30440956:0,0,0 -k1,7327:32583029,30440956:14720694 -g1,7327:32583029,30440956 -) -] -) -g1,7328:32583029,30548434 -g1,7328:6797234,30548434 -g1,7328:6797234,30548434 -g1,7328:32583029,30548434 -g1,7328:32583029,30548434 -) -h1,7328:6797234,30745042:0,0,0 -(1,7332:6797234,31870726:25785795,505283,134348 -h1,7331:6797234,31870726:983040,0,0 -k1,7331:9393650,31870726:232532 -k1,7331:10911999,31870726:232533 -k1,7331:13425839,31870726:232532 -k1,7331:14309800,31870726:232533 -k1,7331:15561417,31870726:232532 -k1,7331:19233935,31870726:232533 -k1,7331:21671754,31870726:232532 -k1,7331:22590449,31870726:232533 -k1,7331:25895309,31870726:232532 -k1,7331:26779270,31870726:232533 -k1,7331:30292534,31870726:232532 -(1,7331:30292534,31870726:0,452978,115847 -r1,7355:32409359,31870726:2116825,568825,115847 -k1,7331:30292534,31870726:-2116825 -) -(1,7331:30292534,31870726:2116825,452978,115847 -k1,7331:30292534,31870726:3277 -h1,7331:32406082,31870726:0,411205,112570 -) -k1,7331:32583029,31870726:0 -) -(1,7332:6797234,32712214:25785795,513147,134348 -k1,7331:8418829,32712214:223712 -k1,7331:10718066,32712214:223712 -k1,7331:11627940,32712214:223712 -k1,7331:12207511,32712214:223711 -k1,7331:13669198,32712214:223712 -k1,7331:14552202,32712214:223712 -k1,7331:17586753,32712214:223712 -k1,7331:20523656,32712214:223712 -k1,7331:22602037,32712214:223712 -k1,7331:23635119,32712214:223712 -k1,7331:25927146,32712214:223711 -k1,7331:28189028,32712214:223712 -k1,7331:29028778,32712214:223712 -k1,7331:29608350,32712214:223712 -k1,7331:32583029,32712214:0 -) -(1,7332:6797234,33553702:25785795,426639,7863 -k1,7332:32583029,33553702:23634248 -g1,7332:32583029,33553702 -) -v1,7334:6797234,34504076:0,393216,0 -(1,7348:6797234,40050554:25785795,5939694,196608 -g1,7348:6797234,40050554 -g1,7348:6797234,40050554 -g1,7348:6600626,40050554 -(1,7348:6600626,40050554:0,5939694,196608 -r1,7355:32779637,40050554:26179011,6136302,196608 -k1,7348:6600625,40050554:-26179012 -) -(1,7348:6600626,40050554:26179011,5939694,196608 -[1,7348:6797234,40050554:25785795,5743086,0 -(1,7336:6797234,34711694:25785795,404226,82312 -(1,7335:6797234,34711694:0,0,0 -g1,7335:6797234,34711694 -g1,7335:6797234,34711694 -g1,7335:6469554,34711694 -(1,7335:6469554,34711694:0,0,0 -) -g1,7335:6797234,34711694 -) -g1,7336:9326400,34711694 -g1,7336:10274838,34711694 -g1,7336:12487859,34711694 -h1,7336:13752442,34711694:0,0,0 -k1,7336:32583030,34711694:18830588 -g1,7336:32583030,34711694 -) -(1,7337:6797234,35377872:25785795,410518,82312 -h1,7337:6797234,35377872:0,0,0 -g1,7337:10907128,35377872 -g1,7337:13120148,35377872 -g1,7337:13752440,35377872 -h1,7337:16281605,35377872:0,0,0 -k1,7337:32583029,35377872:16301424 -g1,7337:32583029,35377872 -) -(1,7347:6797234,36044050:25785795,379060,0 -(1,7339:6797234,36044050:0,0,0 -g1,7339:6797234,36044050 -g1,7339:6797234,36044050 -g1,7339:6469554,36044050 -(1,7339:6469554,36044050:0,0,0 -) -g1,7339:6797234,36044050 -) -g1,7347:7745671,36044050 -g1,7347:8061817,36044050 -g1,7347:8377963,36044050 -g1,7347:9010255,36044050 -g1,7347:9326401,36044050 -g1,7347:9642547,36044050 -g1,7347:9958693,36044050 -g1,7347:10274839,36044050 -h1,7347:10590985,36044050:0,0,0 -k1,7347:32583029,36044050:21992044 -g1,7347:32583029,36044050 -) -(1,7347:6797234,36710228:25785795,388497,7863 -h1,7347:6797234,36710228:0,0,0 -g1,7347:7745671,36710228 -g1,7347:8377963,36710228 -g1,7347:9010255,36710228 -g1,7347:9326401,36710228 -h1,7347:10590984,36710228:0,0,0 -k1,7347:32583028,36710228:21992044 -g1,7347:32583028,36710228 -) -(1,7347:6797234,37376406:25785795,388497,7863 -h1,7347:6797234,37376406:0,0,0 -g1,7347:7745671,37376406 -g1,7347:8377963,37376406 -g1,7347:9010255,37376406 -h1,7347:10590983,37376406:0,0,0 -k1,7347:32583029,37376406:21992046 -g1,7347:32583029,37376406 -) -(1,7347:6797234,38042584:25785795,388497,9436 -h1,7347:6797234,38042584:0,0,0 -g1,7347:7745671,38042584 -g1,7347:8377963,38042584 -g1,7347:9010255,38042584 -g1,7347:9326401,38042584 -h1,7347:10590984,38042584:0,0,0 -k1,7347:32583028,38042584:21992044 -g1,7347:32583028,38042584 -) -(1,7347:6797234,38708762:25785795,379060,7863 -h1,7347:6797234,38708762:0,0,0 -g1,7347:7745671,38708762 -g1,7347:8377963,38708762 -g1,7347:9010255,38708762 -h1,7347:10590983,38708762:0,0,0 -k1,7347:32583029,38708762:21992046 -g1,7347:32583029,38708762 -) -(1,7347:6797234,39374940:25785795,379060,9436 -h1,7347:6797234,39374940:0,0,0 -g1,7347:7745671,39374940 -g1,7347:8377963,39374940 -g1,7347:9010255,39374940 -g1,7347:9326401,39374940 -h1,7347:10590984,39374940:0,0,0 -k1,7347:32583028,39374940:21992044 -g1,7347:32583028,39374940 -) -(1,7347:6797234,40041118:25785795,388497,9436 -h1,7347:6797234,40041118:0,0,0 -g1,7347:7745671,40041118 -g1,7347:8377963,40041118 -g1,7347:9010255,40041118 -h1,7347:10590983,40041118:0,0,0 -k1,7347:32583029,40041118:21992046 -g1,7347:32583029,40041118 -) -] -) -g1,7348:32583029,40050554 -g1,7348:6797234,40050554 -g1,7348:6797234,40050554 -g1,7348:32583029,40050554 -g1,7348:32583029,40050554 -) -h1,7348:6797234,40247162:0,0,0 -(1,7352:6797234,41372846:25785795,513147,134348 -h1,7351:6797234,41372846:983040,0,0 -k1,7351:9117896,41372846:140935 -k1,7351:10351315,41372846:140934 -k1,7351:11159406,41372846:140935 -(1,7351:11159406,41372846:0,452978,115847 -r1,7355:13979655,41372846:2820249,568825,115847 -k1,7351:11159406,41372846:-2820249 -) -(1,7351:11159406,41372846:2820249,452978,115847 -k1,7351:11159406,41372846:3277 -h1,7351:13976378,41372846:0,411205,112570 -) -k1,7351:14120590,41372846:140935 -k1,7351:14793021,41372846:140934 -k1,7351:18590210,41372846:140935 -k1,7351:19803314,41372846:140935 -k1,7351:21594446,41372846:140935 -k1,7351:23601190,41372846:140934 -k1,7351:24393553,41372846:140935 -k1,7351:26054268,41372846:140935 -k1,7351:29376320,41372846:140934 -k1,7351:30168683,41372846:140935 -k1,7351:32583029,41372846:0 -) -(1,7352:6797234,42214334:25785795,505283,134348 -k1,7351:8745082,42214334:212455 -k1,7351:9976622,42214334:212455 -k1,7351:13403619,42214334:212456 -k1,7351:16362688,42214334:212455 -(1,7351:16362688,42214334:0,452978,115847 -r1,7355:17424378,42214334:1061690,568825,115847 -k1,7351:16362688,42214334:-1061690 -) -(1,7351:16362688,42214334:1061690,452978,115847 -g1,7351:17069389,42214334 -h1,7351:17421101,42214334:0,411205,112570 -) -k1,7351:17810503,42214334:212455 -k1,7351:19403802,42214334:212455 -k1,7351:21269730,42214334:212455 -k1,7351:23397802,42214334:212455 -k1,7351:24261686,42214334:212456 -k1,7351:27474379,42214334:212455 -k1,7351:31593435,42214334:212455 -k1,7352:32583029,42214334:0 -) -(1,7352:6797234,43055822:25785795,513147,134348 -k1,7351:8490773,43055822:188832 -k1,7351:9331033,43055822:188832 -k1,7351:12545663,43055822:188833 -k1,7351:13880720,43055822:188832 -(1,7351:13880720,43055822:0,452978,115847 -r1,7355:16700969,43055822:2820249,568825,115847 -k1,7351:13880720,43055822:-2820249 -) -(1,7351:13880720,43055822:2820249,452978,115847 -k1,7351:13880720,43055822:3277 -h1,7351:16697692,43055822:0,411205,112570 -) -k1,7351:16889801,43055822:188832 -k1,7351:18270078,43055822:188832 -(1,7351:18270078,43055822:0,452978,115847 -r1,7355:20386903,43055822:2116825,568825,115847 -k1,7351:18270078,43055822:-2116825 -) -(1,7351:18270078,43055822:2116825,452978,115847 -k1,7351:18270078,43055822:3277 -h1,7351:20383626,43055822:0,411205,112570 -) -k1,7351:20575735,43055822:188832 -k1,7351:23854590,43055822:188832 -k1,7351:26085524,43055822:188832 -k1,7351:27471044,43055822:188833 -k1,7351:29684283,43055822:188832 -k1,7351:31298523,43055822:188832 -k1,7351:32583029,43055822:0 -) -(1,7352:6797234,43897310:25785795,513147,126483 -k1,7351:7376104,43897310:223010 -k1,7351:9430189,43897310:223009 -k1,7351:10184696,43897310:223010 -k1,7351:13246725,43897310:223009 -k1,7351:14121163,43897310:223010 -k1,7351:15091938,43897310:223009 -k1,7351:17001845,43897310:223010 -k1,7351:19803040,43897310:223009 -k1,7351:21217495,43897310:223010 -k1,7351:23763100,43897310:223009 -k1,7351:25005195,43897310:223010 -k1,7351:26878401,43897310:223009 -k1,7351:29311285,43897310:223010 -k1,7351:30402646,43897310:223009 -k1,7351:32583029,43897310:0 -) -(1,7352:6797234,44738798:25785795,513147,134348 -k1,7351:7799280,44738798:254280 -k1,7351:9751597,44738798:254279 -k1,7351:11741270,44738798:254280 -k1,7351:13127356,44738798:254279 -k1,7351:14040928,44738798:254280 -k1,7351:15991935,44738798:254280 -k1,7351:19445682,44738798:254279 -k1,7351:20602393,44738798:254280 -k1,7351:24243573,44738798:254279 -k1,7351:25735828,44738798:254280 -k1,7351:26649399,44738798:254279 -k1,7351:29623423,44738798:254280 -k1,7351:32583029,44738798:0 -) -(1,7352:6797234,45580286:25785795,513147,126483 -g1,7351:9933787,45580286 -g1,7351:10664513,45580286 -g1,7351:11515170,45580286 -g1,7351:13222382,45580286 -g1,7351:14440696,45580286 -g1,7351:16708241,45580286 -g1,7351:17566762,45580286 -g1,7351:19155354,45580286 -g1,7351:21561180,45580286 -k1,7352:32583029,45580286:9163248 -g1,7352:32583029,45580286 -) -] -g1,7352:32583029,45706769 -) -h1,7352:6630773,45706769:0,0,0 -] -(1,7355:32583029,45706769:0,0,0 -g1,7355:32583029,45706769 -) -) -] -(1,7355:6630773,47279633:25952256,0,0 -h1,7355:6630773,47279633:25952256,0,0 -) -] -(1,7355:4262630,4025873:0,0,0 -[1,7355:-473656,4025873:0,0,0 -(1,7355:-473656,-710413:0,0,0 -(1,7355:-473656,-710413:0,0,0 -g1,7355:-473656,-710413 -) -g1,7355:-473656,-710413 -) -] -) -] -!26887 -}120 -Input:974:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:975:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:976:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:977:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:978:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:979:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:980:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:981:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:982:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:983:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:984:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1035 -{121 -[1,7421:4262630,47279633:28320399,43253760,0 -(1,7421:4262630,4025873:0,0,0 -[1,7421:-473656,4025873:0,0,0 -(1,7421:-473656,-710413:0,0,0 -(1,7421:-473656,-644877:0,0,0 -k1,7421:-473656,-644877:-65536 ) -(1,7421:-473656,4736287:0,0,0 -k1,7421:-473656,4736287:5209943 +g1,6245:15452340,26304540 +(1,6245:15452340,26304540:0,0,0 +(1,6245:15452340,26304540:331874,479396,205458 +r1,6282:15784214,26304540:0,684854,205458 +) +) +g1,6245:15452340,26304540 +(1,6245:15452340,26304540:0,0,0 +(1,6245:15452340,26304540:331874,479396,205458 +r1,6282:15784214,26304540:0,684854,205458 +) +) +g1,6245:15452340,26304540 +g1,6245:15452340,26304540 +) +) +g1,6245:15452340,26304540 +(1,6247:15452340,26304540:0,0,0 +(1,6247:15452340,26304540:0,0,0 +g1,6247:15452340,26304540 +g1,6247:15452340,26304540 +(1,6247:15452340,26304540:0,0,0 +(1,6247:15452340,26304540:1010827,479396,205458 +(1,6247:15452340,26304540:1010827,479396,205458 +r1,6282:16463167,26304540:0,684854,205458 +) +g1,6247:16463167,26304540 +) +) +g1,6247:15452340,26304540 +g1,6247:15452340,26304540 +) +) +g1,6247:15452340,26304540 +(1,6249:15452340,26304540:0,0,0 +(1,6249:15452340,26304540:0,0,0 +g1,6249:15452340,26304540 +g1,6249:15452340,26304540 +(1,6249:15452340,26304540:0,0,0 +(1,6249:15452340,26304540:1310720,479396,205458 +(1,6249:15452340,26304540:1310720,479396,205458 +r1,6282:16763060,26304540:0,684854,205458 +) +g1,6249:16763060,26304540 +) +) +g1,6249:15452340,26304540 +(1,6249:15452340,26304540:0,0,0 +(1,6249:15452340,26304540:1488978,479396,205458 +r1,6282:16941318,26304540:0,684854,205458 +) +) +g1,6249:15452340,26304540 +g1,6249:15452340,26304540 +) +) +g1,6249:15452340,26304540 +g1,6251:15452340,26304540 +g1,6251:15452340,26304540 +) +g1,6251:15452340,26304540 +) +) +g1,6253:29975458,29978591 +k1,6253:32583029,29978591:2607571 +) +v1,6256:6630773,31499031:0,393216,0 +(1,6257:6630773,36319956:25952256,5214141,0 +g1,6257:6630773,36319956 +g1,6257:6237557,36319956 +r1,6282:6368629,36319956:131072,5214141,0 +g1,6257:6567858,36319956 +g1,6257:6764466,36319956 +[1,6257:6764466,36319956:25818563,5214141,0 +(1,6257:6764466,31860208:25818563,754393,260573 +(1,6256:6764466,31860208:0,754393,260573 +r1,6282:8010564,31860208:1246098,1014966,260573 +k1,6256:6764466,31860208:-1246098 +) +(1,6256:6764466,31860208:1246098,754393,260573 +) +k1,6256:8195825,31860208:185261 +k1,6256:8523505,31860208:327680 +k1,6256:10187914,31860208:185261 +k1,6256:11697002,31860208:185261 +k1,6256:12340360,31860208:185261 +k1,6256:13057118,31860208:185261 +k1,6256:14577347,31860208:185261 +k1,6256:15414036,31860208:185261 +k1,6256:16691783,31860208:185262 +k1,6256:20579173,31860208:185261 +k1,6256:22832750,31860208:185261 +k1,6256:23965662,31860208:185261 +k1,6256:27063998,31860208:185261 +k1,6256:27935421,31860208:185261 +k1,6256:29629321,31860208:185261 +k1,6256:32583029,31860208:0 +) +(1,6257:6764466,32725288:25818563,505283,134348 +k1,6256:7927156,32725288:171130 +k1,6256:12423663,32725288:171131 +k1,6256:14882000,32725288:171130 +k1,6256:18415128,32725288:171131 +k1,6256:20824313,32725288:171130 +k1,6256:26816352,32725288:171131 +k1,6256:28550516,32725288:171130 +k1,6256:30867296,32725288:171131 +k1,6256:32583029,32725288:0 +) +(1,6257:6764466,33590368:25818563,505283,134348 +k1,6256:8538049,33590368:277396 +k1,6256:10685843,33590368:277396 +k1,6256:11614667,33590368:277396 +k1,6256:15556836,33590368:277396 +k1,6256:17025677,33590368:277396 +k1,6256:20137504,33590368:277395 +k1,6256:22065097,33590368:277396 +k1,6256:24558921,33590368:277396 +k1,6256:26628071,33590368:277396 +k1,6256:28973783,33590368:277396 +k1,6256:30536995,33590368:277396 +k1,6256:32583029,33590368:0 +) +(1,6257:6764466,34455448:25818563,513147,134348 +k1,6256:8420046,34455448:159393 +k1,6256:10229636,34455448:159393 +k1,6256:12474385,34455448:159393 +k1,6256:13285205,34455448:159392 +k1,6256:15431650,34455448:159393 +k1,6256:18162020,34455448:159393 +k1,6256:18937451,34455448:159393 +k1,6256:20115929,34455448:159393 +k1,6256:22889553,34455448:159393 +k1,6256:23708238,34455448:159393 +k1,6256:24861156,34455448:159392 +k1,6256:27974257,34455448:159393 +k1,6256:28749688,34455448:159393 +k1,6256:30232908,34455448:159393 +k1,6256:32583029,34455448:0 +) +(1,6257:6764466,35320528:25818563,513147,126483 +k1,6256:9999370,35320528:200587 +k1,6256:10859249,35320528:200587 +k1,6256:12157564,35320528:200587 +k1,6256:13688532,35320528:200587 +k1,6256:14303961,35320528:200586 +k1,6256:16174405,35320528:200587 +k1,6256:18415783,35320528:200587 +k1,6256:19484722,35320528:200587 +k1,6256:20777794,35320528:200587 +k1,6256:22445077,35320528:200587 +k1,6256:25820883,35320528:200587 +k1,6256:28270666,35320528:200587 +k1,6256:29662698,35320528:200587 +k1,6256:31931601,35320528:200587 +k1,6256:32583029,35320528:0 +) +(1,6257:6764466,36185608:25818563,505283,134348 +g1,6256:9821065,36185608 +g1,6256:11039379,36185608 +g1,6256:14777552,36185608 +g1,6256:17611984,36185608 +g1,6256:19135040,36185608 +g1,6256:20525714,36185608 +k1,6257:32583029,36185608:9575467 +g1,6257:32583029,36185608 +) +] +g1,6257:32583029,36319956 +) +h1,6257:6630773,36319956:0,0,0 +(1,6260:6630773,37185036:25952256,505283,134348 +h1,6259:6630773,37185036:983040,0,0 +k1,6259:9357547,37185036:259999 +k1,6259:10721828,37185036:259999 +k1,6259:13204808,37185036:259999 +k1,6259:14150969,37185036:259999 +k1,6259:16719146,37185036:259999 +k1,6259:18373097,37185036:260000 +k1,6259:23305813,37185036:259999 +k1,6259:26434978,37185036:259999 +k1,6259:27381139,37185036:259999 +k1,6259:30768516,37185036:259999 +k1,6259:31714677,37185036:259999 +k1,6259:32583029,37185036:0 +) +(1,6260:6630773,38050116:25952256,505283,126483 +k1,6259:7931461,38050116:168226 +k1,6259:10768968,38050116:168226 +k1,6259:12494984,38050116:168225 +k1,6259:14146945,38050116:168226 +k1,6259:15419453,38050116:168226 +k1,6259:16873495,38050116:168226 +k1,6259:17789486,38050116:168225 +k1,6259:20248851,38050116:168226 +k1,6259:21141905,38050116:168226 +k1,6259:23909289,38050116:168226 +k1,6259:27339241,38050116:168225 +k1,6259:28499027,38050116:168226 +k1,6259:29953069,38050116:168226 +k1,6259:32583029,38050116:0 +) +(1,6260:6630773,38915196:25952256,505283,134348 +g1,6259:8062079,38915196 +g1,6259:10539995,38915196 +h1,6259:12082713,38915196:0,0,0 +g1,6259:12281942,38915196 +g1,6259:13290541,38915196 +g1,6259:14987923,38915196 +h1,6259:15784841,38915196:0,0,0 +k1,6260:32583029,38915196:16417424 +g1,6260:32583029,38915196 +) +(1,6277:6630773,41032014:25952256,555811,104529 +(1,6277:6630773,41032014:2450326,534184,12975 +g1,6277:6630773,41032014 +g1,6277:9081099,41032014 +) +g1,6277:12259530,41032014 +g1,6277:16354220,41032014 +g1,6277:19524721,41032014 +g1,6277:21091949,41032014 +k1,6277:32583029,41032014:8238397 +g1,6277:32583029,41032014 +) +(1,6280:6630773,42290310:25952256,505283,134348 +k1,6279:7511358,42290310:252750 +k1,6279:10042795,42290310:252750 +h1,6279:11411842,42290310:0,0,0 +k1,6279:11664592,42290310:252750 +k1,6279:12726712,42290310:252750 +k1,6279:14477615,42290310:252750 +h1,6279:15274533,42290310:0,0,0 +k1,6279:15527283,42290310:252750 +k1,6279:16648385,42290310:252750 +k1,6279:18108307,42290310:252749 +k1,6279:19645563,42290310:252750 +k1,6279:20917398,42290310:252750 +k1,6279:24384689,42290310:252750 +k1,6279:27384053,42290310:252750 +(1,6279:27384053,42290310:0,452978,115847 +r1,6282:28445743,42290310:1061690,568825,115847 +k1,6279:27384053,42290310:-1061690 +) +(1,6279:27384053,42290310:1061690,452978,115847 +g1,6279:28090754,42290310 +h1,6279:28442466,42290310:0,411205,112570 +) +k1,6279:28698493,42290310:252750 +k1,6279:31322991,42290310:252750 +k1,6279:32227169,42290310:252750 +k1,6279:32583029,42290310:0 +) +(1,6280:6630773,43155390:25952256,513147,134348 +k1,6279:9008570,43155390:226250 +k1,6279:11575767,43155390:226251 +k1,6279:12157877,43155390:226250 +k1,6279:14535675,43155390:226251 +k1,6279:16786332,43155390:226250 +k1,6279:17695468,43155390:226251 +k1,6279:20416018,43155390:226250 +k1,6279:23285991,43155390:226251 +k1,6279:24171533,43155390:226250 +k1,6279:26411050,43155390:226251 +k1,6279:27967681,43155390:226250 +k1,6279:28876817,43155390:226251 +k1,6279:30569763,43155390:226250 +k1,6279:32583029,43155390:0 +) +(1,6280:6630773,44020470:25952256,513147,134348 +k1,6279:8447632,44020470:223023 +k1,6279:11637471,44020470:223024 +k1,6279:14614317,44020470:223023 +k1,6279:17583955,44020470:223024 +(1,6279:17583955,44020470:0,452978,115847 +r1,6282:18645645,44020470:1061690,568825,115847 +k1,6279:17583955,44020470:-1061690 +) +(1,6279:17583955,44020470:1061690,452978,115847 +g1,6279:18290656,44020470 +h1,6279:18642368,44020470:0,411205,112570 +) +k1,6279:18868668,44020470:223023 +k1,6279:19743120,44020470:223024 +k1,6279:20322003,44020470:223023 +k1,6279:21538553,44020470:223024 +k1,6279:24102522,44020470:223023 +k1,6279:24681406,44020470:223024 +k1,6279:26071625,44020470:223023 +k1,6279:28938371,44020470:223024 +k1,6279:29820686,44020470:223023 +k1,6279:32583029,44020470:0 +) +(1,6280:6630773,44885550:25952256,505283,134348 +k1,6279:9087217,44885550:269508 +(1,6279:9087217,44885550:0,452978,115847 +r1,6282:12962601,44885550:3875384,568825,115847 +k1,6279:9087217,44885550:-3875384 +) +(1,6279:9087217,44885550:3875384,452978,115847 +k1,6279:9087217,44885550:3277 +h1,6279:12959324,44885550:0,411205,112570 +) +k1,6279:13232109,44885550:269508 +k1,6279:14184503,44885550:269509 +(1,6279:14184503,44885550:0,452978,115847 +r1,6282:17356463,44885550:3171960,568825,115847 +k1,6279:14184503,44885550:-3171960 +) +(1,6279:14184503,44885550:3171960,452978,115847 +k1,6279:14184503,44885550:3277 +h1,6279:17353186,44885550:0,411205,112570 +) +k1,6279:17625971,44885550:269508 +k1,6279:19906124,44885550:269508 +k1,6279:20531492,44885550:269508 +k1,6279:21794526,44885550:269508 +k1,6279:25426031,44885550:269508 +k1,6279:27071141,44885550:269509 +k1,6279:28497359,44885550:269508 +k1,6279:31563944,44885550:269508 +k1,6279:32583029,44885550:0 +) +] +(1,6282:32583029,45706769:0,0,0 +g1,6282:32583029,45706769 +) +) +] +(1,6282:6630773,47279633:25952256,0,0 +h1,6282:6630773,47279633:25952256,0,0 +) +] +(1,6282:4262630,4025873:0,0,0 +[1,6282:-473656,4025873:0,0,0 +(1,6282:-473656,-710413:0,0,0 +(1,6282:-473656,-710413:0,0,0 +g1,6282:-473656,-710413 +) +g1,6282:-473656,-710413 +) +] +) +] +!33943 +}100 +Input:886:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:887:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:888:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:889:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:890:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:891:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:892:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:893:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!756 +{101 +[1,6397:4262630,47279633:28320399,43253760,0 +(1,6397:4262630,4025873:0,0,0 +[1,6397:-473656,4025873:0,0,0 +(1,6397:-473656,-710413:0,0,0 +(1,6397:-473656,-644877:0,0,0 +k1,6397:-473656,-644877:-65536 +) +(1,6397:-473656,4736287:0,0,0 +k1,6397:-473656,4736287:5209943 ) -g1,7421:-473656,-710413 +g1,6397:-473656,-710413 ) ] ) -[1,7421:6630773,47279633:25952256,43253760,0 -[1,7421:6630773,4812305:25952256,786432,0 -(1,7421:6630773,4812305:25952256,505283,11795 -(1,7421:6630773,4812305:25952256,505283,11795 -g1,7421:3078558,4812305 -[1,7421:3078558,4812305:0,0,0 -(1,7421:3078558,2439708:0,1703936,0 -k1,7421:1358238,2439708:-1720320 -(1,5950:1358238,2439708:1720320,1703936,0 -(1,5950:1358238,2439708:1179648,16384,0 -r1,7421:2537886,2439708:1179648,16384,0 +[1,6397:6630773,47279633:25952256,43253760,0 +[1,6397:6630773,4812305:25952256,786432,0 +(1,6397:6630773,4812305:25952256,505283,11795 +(1,6397:6630773,4812305:25952256,505283,11795 +g1,6397:3078558,4812305 +[1,6397:3078558,4812305:0,0,0 +(1,6397:3078558,2439708:0,1703936,0 +k1,6397:1358238,2439708:-1720320 +(1,6148:1358238,2439708:1720320,1703936,0 +(1,6148:1358238,2439708:1179648,16384,0 +r1,6397:2537886,2439708:1179648,16384,0 ) -g1,5950:3062174,2439708 -(1,5950:3062174,2439708:16384,1703936,0 -[1,5950:3062174,2439708:25952256,1703936,0 -(1,5950:3062174,1915420:25952256,1179648,0 -(1,5950:3062174,1915420:16384,1179648,0 -r1,7421:3078558,1915420:16384,1179648,0 +g1,6148:3062174,2439708 +(1,6148:3062174,2439708:16384,1703936,0 +[1,6148:3062174,2439708:25952256,1703936,0 +(1,6148:3062174,1915420:25952256,1179648,0 +(1,6148:3062174,1915420:16384,1179648,0 +r1,6397:3078558,1915420:16384,1179648,0 ) -k1,5950:29014430,1915420:25935872 -g1,5950:29014430,1915420 +k1,6148:29014430,1915420:25935872 +g1,6148:29014430,1915420 ) ] ) ) ) ] -[1,7421:3078558,4812305:0,0,0 -(1,7421:3078558,2439708:0,1703936,0 -g1,7421:29030814,2439708 -g1,7421:36135244,2439708 -(1,5950:36135244,2439708:1720320,1703936,0 -(1,5950:36135244,2439708:16384,1703936,0 -[1,5950:36135244,2439708:25952256,1703936,0 -(1,5950:36135244,1915420:25952256,1179648,0 -(1,5950:36135244,1915420:16384,1179648,0 -r1,7421:36151628,1915420:16384,1179648,0 +[1,6397:3078558,4812305:0,0,0 +(1,6397:3078558,2439708:0,1703936,0 +g1,6397:29030814,2439708 +g1,6397:36135244,2439708 +(1,6148:36135244,2439708:1720320,1703936,0 +(1,6148:36135244,2439708:16384,1703936,0 +[1,6148:36135244,2439708:25952256,1703936,0 +(1,6148:36135244,1915420:25952256,1179648,0 +(1,6148:36135244,1915420:16384,1179648,0 +r1,6397:36151628,1915420:16384,1179648,0 ) -k1,5950:62087500,1915420:25935872 -g1,5950:62087500,1915420 +k1,6148:62087500,1915420:25935872 +g1,6148:62087500,1915420 ) ] ) -g1,5950:36675916,2439708 -(1,5950:36675916,2439708:1179648,16384,0 -r1,7421:37855564,2439708:1179648,16384,0 +g1,6148:36675916,2439708 +(1,6148:36675916,2439708:1179648,16384,0 +r1,6397:37855564,2439708:1179648,16384,0 ) ) -k1,7421:3078556,2439708:-34777008 +k1,6397:3078556,2439708:-34777008 ) ] -[1,7421:3078558,4812305:0,0,0 -(1,7421:3078558,49800853:0,16384,2228224 -k1,7421:1358238,49800853:-1720320 -(1,5950:1358238,49800853:1720320,16384,2228224 -(1,5950:1358238,49800853:1179648,16384,0 -r1,7421:2537886,49800853:1179648,16384,0 +[1,6397:3078558,4812305:0,0,0 +(1,6397:3078558,49800853:0,16384,2228224 +k1,6397:1358238,49800853:-1720320 +(1,6148:1358238,49800853:1720320,16384,2228224 +(1,6148:1358238,49800853:1179648,16384,0 +r1,6397:2537886,49800853:1179648,16384,0 ) -g1,5950:3062174,49800853 -(1,5950:3062174,52029077:16384,1703936,0 -[1,5950:3062174,52029077:25952256,1703936,0 -(1,5950:3062174,51504789:25952256,1179648,0 -(1,5950:3062174,51504789:16384,1179648,0 -r1,7421:3078558,51504789:16384,1179648,0 +g1,6148:3062174,49800853 +(1,6148:3062174,52029077:16384,1703936,0 +[1,6148:3062174,52029077:25952256,1703936,0 +(1,6148:3062174,51504789:25952256,1179648,0 +(1,6148:3062174,51504789:16384,1179648,0 +r1,6397:3078558,51504789:16384,1179648,0 ) -k1,5950:29014430,51504789:25935872 -g1,5950:29014430,51504789 +k1,6148:29014430,51504789:25935872 +g1,6148:29014430,51504789 ) ] ) ) ) ] -[1,7421:3078558,4812305:0,0,0 -(1,7421:3078558,49800853:0,16384,2228224 -g1,7421:29030814,49800853 -g1,7421:36135244,49800853 -(1,5950:36135244,49800853:1720320,16384,2228224 -(1,5950:36135244,52029077:16384,1703936,0 -[1,5950:36135244,52029077:25952256,1703936,0 -(1,5950:36135244,51504789:25952256,1179648,0 -(1,5950:36135244,51504789:16384,1179648,0 -r1,7421:36151628,51504789:16384,1179648,0 +[1,6397:3078558,4812305:0,0,0 +(1,6397:3078558,49800853:0,16384,2228224 +g1,6397:29030814,49800853 +g1,6397:36135244,49800853 +(1,6148:36135244,49800853:1720320,16384,2228224 +(1,6148:36135244,52029077:16384,1703936,0 +[1,6148:36135244,52029077:25952256,1703936,0 +(1,6148:36135244,51504789:25952256,1179648,0 +(1,6148:36135244,51504789:16384,1179648,0 +r1,6397:36151628,51504789:16384,1179648,0 ) -k1,5950:62087500,51504789:25935872 -g1,5950:62087500,51504789 +k1,6148:62087500,51504789:25935872 +g1,6148:62087500,51504789 ) ] ) -g1,5950:36675916,49800853 -(1,5950:36675916,49800853:1179648,16384,0 -r1,7421:37855564,49800853:1179648,16384,0 +g1,6148:36675916,49800853 +(1,6148:36675916,49800853:1179648,16384,0 +r1,6397:37855564,49800853:1179648,16384,0 ) ) -k1,7421:3078556,49800853:-34777008 +k1,6397:3078556,49800853:-34777008 ) ] -g1,7421:6630773,4812305 -k1,7421:24358918,4812305:16532768 -g1,7421:25981589,4812305 -g1,7421:26804065,4812305 -g1,7421:30302376,4812305 -) -) -] -[1,7421:6630773,45706769:25952256,40108032,0 -(1,7421:6630773,45706769:25952256,40108032,0 -(1,7421:6630773,45706769:0,0,0 -g1,7421:6630773,45706769 -) -[1,7421:6630773,45706769:25952256,40108032,0 -(1,7355:6630773,6254097:25952256,513147,134348 -h1,7354:6630773,6254097:983040,0,0 -k1,7354:8340570,6254097:239169 -k1,7354:11884760,6254097:239209 -k1,7354:13637195,6254097:239209 -k1,7354:15114379,6254097:239209 -k1,7354:16012880,6254097:239209 -k1,7354:18819790,6254097:239209 -k1,7354:19414859,6254097:239209 -k1,7354:22036957,6254097:239209 -k1,7354:23037695,6254097:239210 -k1,7354:25014919,6254097:239209 -k1,7354:26821749,6254097:239209 -k1,7354:27416818,6254097:239209 -k1,7354:29045390,6254097:239209 -k1,7354:31160895,6254097:239209 -k1,7354:31931601,6254097:239209 -k1,7354:32583029,6254097:0 -) -(1,7355:6630773,7095585:25952256,513147,134348 -k1,7354:8875223,7095585:237738 -(1,7354:8875223,7095585:0,414482,115847 -r1,7421:10288624,7095585:1413401,530329,115847 -k1,7354:8875223,7095585:-1413401 -) -(1,7354:8875223,7095585:1413401,414482,115847 -k1,7354:8875223,7095585:3277 -h1,7354:10285347,7095585:0,411205,112570 -) -k1,7354:10526363,7095585:237739 -k1,7354:11415529,7095585:237738 -k1,7354:13836272,7095585:237739 -k1,7354:14690048,7095585:237738 -k1,7354:15946872,7095585:237739 -k1,7354:17838083,7095585:237738 -k1,7354:19313796,7095585:237738 -k1,7354:20237697,7095585:237739 -k1,7354:23429143,7095585:237738 -k1,7354:24658442,7095585:237739 -k1,7354:27241714,7095585:237738 -k1,7354:29047074,7095585:237739 -(1,7354:29047074,7095585:0,452978,115847 -r1,7421:30460475,7095585:1413401,568825,115847 -k1,7354:29047074,7095585:-1413401 -) -(1,7354:29047074,7095585:1413401,452978,115847 -k1,7354:29047074,7095585:3277 -h1,7354:30457198,7095585:0,411205,112570 -) -k1,7354:31202185,7095585:237738 -k1,7354:32583029,7095585:0 -) -(1,7355:6630773,7937073:25952256,513147,126483 -g1,7354:9814512,7937073 -g1,7354:12758389,7937073 -(1,7354:12758389,7937073:0,459977,115847 -r1,7421:14171790,7937073:1413401,575824,115847 -k1,7354:12758389,7937073:-1413401 -) -(1,7354:12758389,7937073:1413401,459977,115847 -k1,7354:12758389,7937073:3277 -h1,7354:14168513,7937073:0,411205,112570 -) -g1,7354:14371019,7937073 -g1,7354:15186286,7937073 -k1,7355:32583029,7937073:15560424 -g1,7355:32583029,7937073 -) -v1,7357:6630773,8882335:0,393216,0 -(1,7372:6630773,13158516:25952256,4669397,196608 -g1,7372:6630773,13158516 -g1,7372:6630773,13158516 -g1,7372:6434165,13158516 -(1,7372:6434165,13158516:0,4669397,196608 -r1,7421:32779637,13158516:26345472,4866005,196608 -k1,7372:6434165,13158516:-26345472 -) -(1,7372:6434165,13158516:26345472,4669397,196608 -[1,7372:6630773,13158516:25952256,4472789,0 -(1,7359:6630773,9096245:25952256,410518,6290 -(1,7358:6630773,9096245:0,0,0 -g1,7358:6630773,9096245 -g1,7358:6630773,9096245 -g1,7358:6303093,9096245 -(1,7358:6303093,9096245:0,0,0 -) -g1,7358:6630773,9096245 -) -g1,7359:8527647,9096245 -g1,7359:9476085,9096245 -h1,7359:10740668,9096245:0,0,0 -k1,7359:32583028,9096245:21842360 -g1,7359:32583028,9096245 -) -(1,7360:6630773,9762423:25952256,410518,76021 -h1,7360:6630773,9762423:0,0,0 -k1,7360:6630773,9762423:0 -h1,7360:11372958,9762423:0,0,0 -k1,7360:32583030,9762423:21210072 -g1,7360:32583030,9762423 -) -(1,7364:6630773,10428601:25952256,404226,101187 -(1,7362:6630773,10428601:0,0,0 -g1,7362:6630773,10428601 -g1,7362:6630773,10428601 -g1,7362:6303093,10428601 -(1,7362:6303093,10428601:0,0,0 -) -g1,7362:6630773,10428601 -) -g1,7364:7579210,10428601 -g1,7364:8843793,10428601 -g1,7364:10108376,10428601 -g1,7364:11372959,10428601 -h1,7364:12321396,10428601:0,0,0 -k1,7364:32583028,10428601:20261632 -g1,7364:32583028,10428601 -) -(1,7366:6630773,11750139:25952256,410518,101187 -(1,7365:6630773,11750139:0,0,0 -g1,7365:6630773,11750139 -g1,7365:6630773,11750139 -g1,7365:6303093,11750139 -(1,7365:6303093,11750139:0,0,0 -) -g1,7365:6630773,11750139 -) -g1,7366:10740667,11750139 -g1,7366:11689105,11750139 -k1,7366:11689105,11750139:0 -h1,7366:12953688,11750139:0,0,0 -k1,7366:32583028,11750139:19629340 -g1,7366:32583028,11750139 -) -(1,7367:6630773,12416317:25952256,410518,76021 -h1,7367:6630773,12416317:0,0,0 -k1,7367:6630773,12416317:0 -h1,7367:11372958,12416317:0,0,0 -k1,7367:32583030,12416317:21210072 -g1,7367:32583030,12416317 -) -(1,7371:6630773,13082495:25952256,404226,76021 -(1,7369:6630773,13082495:0,0,0 -g1,7369:6630773,13082495 -g1,7369:6630773,13082495 -g1,7369:6303093,13082495 -(1,7369:6303093,13082495:0,0,0 -) -g1,7369:6630773,13082495 -) -g1,7371:7579210,13082495 -g1,7371:8843793,13082495 -g1,7371:10108376,13082495 -h1,7371:11056813,13082495:0,0,0 -k1,7371:32583029,13082495:21526216 -g1,7371:32583029,13082495 -) -] -) -g1,7372:32583029,13158516 -g1,7372:6630773,13158516 -g1,7372:6630773,13158516 -g1,7372:32583029,13158516 -g1,7372:32583029,13158516 -) -h1,7372:6630773,13355124:0,0,0 -v1,7376:6630773,14754780:0,393216,0 -(1,7397:6630773,27939571:25952256,13578007,0 -g1,7397:6630773,27939571 -g1,7397:6303093,27939571 -r1,7421:6401397,27939571:98304,13578007,0 -g1,7397:6600626,27939571 -g1,7397:6797234,27939571 -[1,7397:6797234,27939571:25785795,13578007,0 -(1,7377:6797234,15116853:25785795,755289,196608 -(1,7376:6797234,15116853:0,755289,196608 -r1,7421:8134168,15116853:1336934,951897,196608 -k1,7376:6797234,15116853:-1336934 -) -(1,7376:6797234,15116853:1336934,755289,196608 -) -k1,7376:8321710,15116853:187542 -k1,7376:8649390,15116853:327680 -k1,7376:13095462,15116853:187542 -k1,7376:14151356,15116853:187542 -k1,7376:15443180,15116853:187542 -k1,7376:16723207,15116853:187542 -k1,7376:19565612,15116853:187542 -k1,7376:22492560,15116853:187543 -k1,7376:23331530,15116853:187542 -k1,7376:25873781,15116853:187542 -k1,7376:28774514,15116853:187542 -k1,7376:30529677,15116853:187542 -k1,7376:31073079,15116853:187542 -k1,7376:32583029,15116853:0 -) -(1,7377:6797234,15958341:25785795,513147,134348 -k1,7376:7767917,15958341:311391 -k1,7376:8435168,15958341:311391 -k1,7376:10135922,15958341:311391 -k1,7376:12497279,15958341:311391 -k1,7376:13436505,15958341:311391 -k1,7376:14951137,15958341:311391 -k1,7376:17923945,15958341:311391 -k1,7376:19103688,15958341:311391 -k1,7376:21769788,15958341:311391 -k1,7376:22437039,15958341:311391 -k1,7376:24621449,15958341:311391 -k1,7376:27489399,15958341:311391 -k1,7376:28618679,15958341:311391 -k1,7376:30363998,15958341:311391 -k1,7376:31090119,15958341:311278 -k1,7376:32583029,15958341:0 -) -(1,7377:6797234,16799829:25785795,505283,134348 -k1,7376:8088621,16799829:225116 -k1,7376:10840150,16799829:225116 -k1,7376:13720129,16799829:225116 -k1,7376:16684650,16799829:225116 -k1,7376:17671294,16799829:225116 -k1,7376:19634426,16799829:225117 -k1,7376:21253493,16799829:225116 -k1,7376:22497694,16799829:225116 -k1,7376:25937351,16799829:225116 -k1,7376:29082751,16799829:225116 -k1,7376:30176219,16799829:225116 -k1,7376:31931601,16799829:225116 -k1,7376:32583029,16799829:0 -) -(1,7377:6797234,17641317:25785795,513147,134348 -k1,7376:8286515,17641317:223125 -k1,7376:9528724,17641317:223124 -k1,7376:12932967,17641317:223125 -k1,7376:14905248,17641317:223125 -k1,7376:15787664,17641317:223124 -k1,7376:17029874,17641317:223125 -k1,7376:19635888,17641317:223125 -k1,7376:20510441,17641317:223125 -k1,7376:22832028,17641317:223124 -k1,7376:24312134,17641317:223125 -k1,7376:25554344,17641317:223125 -k1,7376:28769187,17641317:223124 -k1,7376:30847636,17641317:223125 -k1,7377:32583029,17641317:0 -) -(1,7377:6797234,18482805:25785795,505283,115847 -(1,7376:6797234,18482805:0,452978,115847 -r1,7421:9617483,18482805:2820249,568825,115847 -k1,7376:6797234,18482805:-2820249 -) -(1,7376:6797234,18482805:2820249,452978,115847 -k1,7376:6797234,18482805:3277 -h1,7376:9614206,18482805:0,411205,112570 -) -g1,7376:9816712,18482805 -g1,7376:11409892,18482805 -g1,7376:13001106,18482805 -g1,7376:15268651,18482805 -g1,7376:16119308,18482805 -g1,7376:18243329,18482805 -k1,7377:32583029,18482805:11245745 -g1,7377:32583029,18482805 -) -v1,7379:6797234,19673271:0,393216,0 -(1,7392:6797234,24559863:25785795,5279808,196608 -g1,7392:6797234,24559863 -g1,7392:6797234,24559863 -g1,7392:6600626,24559863 -(1,7392:6600626,24559863:0,5279808,196608 -r1,7421:32779637,24559863:26179011,5476416,196608 -k1,7392:6600625,24559863:-26179012 -) -(1,7392:6600626,24559863:26179011,5279808,196608 -[1,7392:6797234,24559863:25785795,5083200,0 -(1,7381:6797234,19887181:25785795,410518,101187 -(1,7380:6797234,19887181:0,0,0 -g1,7380:6797234,19887181 -g1,7380:6797234,19887181 -g1,7380:6469554,19887181 -(1,7380:6469554,19887181:0,0,0 -) -g1,7380:6797234,19887181 -) -g1,7381:8694108,19887181 -g1,7381:9326400,19887181 -g1,7381:16281605,19887181 -g1,7381:17230042,19887181 -h1,7381:18810770,19887181:0,0,0 -k1,7381:32583029,19887181:13772259 -g1,7381:32583029,19887181 -) -(1,7391:6797234,20553359:25785795,379060,0 -(1,7383:6797234,20553359:0,0,0 -g1,7383:6797234,20553359 -g1,7383:6797234,20553359 -g1,7383:6469554,20553359 -(1,7383:6469554,20553359:0,0,0 -) -g1,7383:6797234,20553359 -) -g1,7391:7745671,20553359 -g1,7391:8061817,20553359 -g1,7391:8377963,20553359 -g1,7391:9010255,20553359 -g1,7391:9326401,20553359 -g1,7391:9642547,20553359 -g1,7391:9958693,20553359 -g1,7391:10274839,20553359 -h1,7391:10590985,20553359:0,0,0 -k1,7391:32583029,20553359:21992044 -g1,7391:32583029,20553359 -) -(1,7391:6797234,21219537:25785795,388497,7863 -h1,7391:6797234,21219537:0,0,0 -g1,7391:7745671,21219537 -g1,7391:8377963,21219537 -g1,7391:9010255,21219537 -g1,7391:9326401,21219537 -h1,7391:10590984,21219537:0,0,0 -k1,7391:32583028,21219537:21992044 -g1,7391:32583028,21219537 -) -(1,7391:6797234,21885715:25785795,388497,7863 -h1,7391:6797234,21885715:0,0,0 -g1,7391:7745671,21885715 -g1,7391:8377963,21885715 -g1,7391:9010255,21885715 -h1,7391:10590983,21885715:0,0,0 -k1,7391:32583029,21885715:21992046 -g1,7391:32583029,21885715 -) -(1,7391:6797234,22551893:25785795,388497,9436 -h1,7391:6797234,22551893:0,0,0 -g1,7391:7745671,22551893 -g1,7391:8377963,22551893 -g1,7391:9010255,22551893 -g1,7391:9326401,22551893 -h1,7391:10590984,22551893:0,0,0 -k1,7391:32583028,22551893:21992044 -g1,7391:32583028,22551893 -) -(1,7391:6797234,23218071:25785795,379060,7863 -h1,7391:6797234,23218071:0,0,0 -g1,7391:7745671,23218071 -g1,7391:8377963,23218071 -g1,7391:9010255,23218071 -h1,7391:10590983,23218071:0,0,0 -k1,7391:32583029,23218071:21992046 -g1,7391:32583029,23218071 -) -(1,7391:6797234,23884249:25785795,379060,9436 -h1,7391:6797234,23884249:0,0,0 -g1,7391:7745671,23884249 -g1,7391:8377963,23884249 -g1,7391:9010255,23884249 -g1,7391:9326401,23884249 -h1,7391:10590984,23884249:0,0,0 -k1,7391:32583028,23884249:21992044 -g1,7391:32583028,23884249 -) -(1,7391:6797234,24550427:25785795,388497,9436 -h1,7391:6797234,24550427:0,0,0 -g1,7391:7745671,24550427 -g1,7391:8377963,24550427 -g1,7391:9010255,24550427 -h1,7391:10590983,24550427:0,0,0 -k1,7391:32583029,24550427:21992046 -g1,7391:32583029,24550427 -) -] -) -g1,7392:32583029,24559863 -g1,7392:6797234,24559863 -g1,7392:6797234,24559863 -g1,7392:32583029,24559863 -g1,7392:32583029,24559863 -) -h1,7392:6797234,24756471:0,0,0 -(1,7396:6797234,26122247:25785795,513147,134348 -h1,7395:6797234,26122247:983040,0,0 -k1,7395:10389682,26122247:270428 -k1,7395:11319402,26122247:270428 -k1,7395:13325222,26122247:270427 -k1,7395:14614735,26122247:270428 -k1,7395:17431892,26122247:270428 -k1,7395:19067435,26122247:270428 -k1,7395:20206214,26122247:270427 -k1,7395:21580924,26122247:270428 -k1,7395:22943837,26122247:270428 -k1,7395:24233350,26122247:270428 -k1,7395:27250391,26122247:270427 -(1,7395:27250391,26122247:0,452978,115847 -r1,7421:28663792,26122247:1413401,568825,115847 -k1,7395:27250391,26122247:-1413401 -) -(1,7395:27250391,26122247:1413401,452978,115847 -k1,7395:27250391,26122247:3277 -h1,7395:28660515,26122247:0,411205,112570 -) -k1,7395:28934220,26122247:270428 -k1,7395:29887533,26122247:270428 -k1,7396:32583029,26122247:0 -) -(1,7396:6797234,26963735:25785795,513147,126483 -(1,7395:6797234,26963735:0,452978,122846 -r1,7421:9265771,26963735:2468537,575824,122846 -k1,7395:6797234,26963735:-2468537 -) -(1,7395:6797234,26963735:2468537,452978,122846 -k1,7395:6797234,26963735:3277 -h1,7395:9262494,26963735:0,411205,112570 -) -k1,7395:9487062,26963735:221291 -k1,7395:10359781,26963735:221291 -k1,7395:12510452,26963735:221291 -k1,7395:13087603,26963735:221291 -(1,7395:13087603,26963735:0,452978,122846 -r1,7421:15556140,26963735:2468537,575824,122846 -k1,7395:13087603,26963735:-2468537 -) -(1,7395:13087603,26963735:2468537,452978,122846 -k1,7395:13087603,26963735:3277 -h1,7395:15552863,26963735:0,411205,112570 -) -k1,7395:15777431,26963735:221291 -k1,7395:17976599,26963735:221291 -k1,7395:20175112,26963735:221292 -k1,7395:21047831,26963735:221291 -k1,7395:23193914,26963735:221291 -k1,7395:24098090,26963735:221291 -k1,7395:26139971,26963735:221291 -k1,7395:29032509,26963735:221291 -k1,7395:31966991,26963735:221291 -k1,7395:32583029,26963735:0 -) -(1,7396:6797234,27805223:25785795,505283,134348 -g1,7395:7352323,27805223 -g1,7395:9424571,27805223 -k1,7396:32583030,27805223:19798428 -g1,7396:32583030,27805223 -) -] -g1,7397:32583029,27939571 -) -h1,7397:6630773,27939571:0,0,0 -v1,7400:6630773,29060143:0,393216,0 -(1,7411:6630773,35656373:25952256,6989446,0 -g1,7411:6630773,35656373 -g1,7411:6303093,35656373 -r1,7421:6401397,35656373:98304,6989446,0 -g1,7411:6600626,35656373 -g1,7411:6797234,35656373 -[1,7411:6797234,35656373:25785795,6989446,0 -(1,7402:6797234,29492681:25785795,825754,196608 -(1,7400:6797234,29492681:0,825754,196608 -r1,7421:7890375,29492681:1093141,1022362,196608 -k1,7400:6797234,29492681:-1093141 -) -(1,7400:6797234,29492681:1093141,825754,196608 -) -k1,7400:8090260,29492681:199885 -k1,7400:9408189,29492681:327680 -k1,7400:10235908,29492681:199884 -k1,7400:11454878,29492681:199885 -k1,7400:14409241,29492681:199885 -k1,7400:16105312,29492681:199884 -k1,7400:18275865,29492681:199885 -k1,7400:19344102,29492681:199885 -k1,7400:21889520,29492681:199884 -k1,7400:23108490,29492681:199885 -k1,7400:24456565,29492681:199884 -k1,7400:27039339,29492681:199885 -k1,7400:27898516,29492681:199885 -k1,7400:29117485,29492681:199884 -k1,7400:30706733,29492681:199885 -k1,7402:32583029,29492681:0 -) -(1,7402:6797234,30334169:25785795,513147,134348 -(1,7400:6797234,30334169:0,459977,115847 -r1,7421:8210635,30334169:1413401,575824,115847 -k1,7400:6797234,30334169:-1413401 -) -(1,7400:6797234,30334169:1413401,459977,115847 -k1,7400:6797234,30334169:3277 -h1,7400:8207358,30334169:0,411205,112570 -) -k1,7400:8534527,30334169:150222 -k1,7401:10173073,30334169:150223 -k1,7401:10854792,30334169:150222 -k1,7401:11775718,30334169:150223 -k1,7401:14425483,30334169:150222 -k1,7401:16048300,30334169:150223 -k1,7401:17146173,30334169:150222 -k1,7401:18466869,30334169:150223 -k1,7401:19268519,30334169:150222 -k1,7401:20724875,30334169:150223 -k1,7401:23659066,30334169:150222 -k1,7401:25139670,30334169:150223 -k1,7401:25747989,30334169:150222 -k1,7401:28469188,30334169:150222 -k1,7401:29638496,30334169:150223 -k1,7401:32583029,30334169:0 -) -(1,7402:6797234,31175657:25785795,513147,126483 -k1,7401:7673064,31175657:216538 -k1,7401:10602794,31175657:216539 -k1,7401:12010777,31175657:216538 -k1,7401:13935184,31175657:216539 -k1,7401:15343167,31175657:216538 -k1,7401:16993633,31175657:216538 -k1,7401:18157823,31175657:216539 -k1,7401:19544834,31175657:216538 -k1,7401:20412801,31175657:216539 -k1,7401:22309682,31175657:216538 -k1,7401:23856602,31175657:216539 -k1,7401:25264585,31175657:216538 -k1,7401:26778081,31175657:216538 -k1,7401:27452717,31175657:216539 -k1,7401:28773537,31175657:216538 -k1,7401:29737842,31175657:216539 -k1,7401:31931601,31175657:216538 -k1,7401:32583029,31175657:0 -) -(1,7402:6797234,32017145:25785795,513147,134348 -k1,7401:8163713,32017145:273994 -k1,7401:11177113,32017145:273995 -k1,7401:12845058,32017145:273994 -k1,7401:14138138,32017145:273995 -k1,7401:17626673,32017145:273994 -k1,7401:20647282,32017145:273995 -(1,7401:20647282,32017145:0,452978,115847 -r1,7421:21708972,32017145:1061690,568825,115847 -k1,7401:20647282,32017145:-1061690 -) -(1,7401:20647282,32017145:1061690,452978,115847 -g1,7401:21353983,32017145 -h1,7401:21705695,32017145:0,411205,112570 -) -k1,7401:21982966,32017145:273994 -k1,7401:23066330,32017145:273994 -k1,7401:24807021,32017145:273995 -k1,7401:26710895,32017145:273994 -k1,7401:27644182,32017145:273995 -k1,7401:28937261,32017145:273994 -k1,7401:32583029,32017145:0 -) -(1,7402:6797234,32858633:25785795,426639,126483 -g1,7401:9743077,32858633 -(1,7401:9743077,32858633:0,414482,115847 -r1,7421:10453055,32858633:709978,530329,115847 -k1,7401:9743077,32858633:-709978 -) -(1,7401:9743077,32858633:709978,414482,115847 -k1,7401:9743077,32858633:3277 -h1,7401:10449778,32858633:0,411205,112570 -) -k1,7402:32583029,32858633:21956304 -g1,7402:32583029,32858633 -) -v1,7404:6797234,34049099:0,393216,0 -(1,7409:6797234,34935477:25785795,1279594,196608 -g1,7409:6797234,34935477 -g1,7409:6797234,34935477 -g1,7409:6600626,34935477 -(1,7409:6600626,34935477:0,1279594,196608 -r1,7421:32779637,34935477:26179011,1476202,196608 -k1,7409:6600625,34935477:-26179012 -) -(1,7409:6600626,34935477:26179011,1279594,196608 -[1,7409:6797234,34935477:25785795,1082986,0 -(1,7406:6797234,34263009:25785795,410518,82312 -(1,7405:6797234,34263009:0,0,0 -g1,7405:6797234,34263009 -g1,7405:6797234,34263009 -g1,7405:6469554,34263009 -(1,7405:6469554,34263009:0,0,0 -) -g1,7405:6797234,34263009 -) -k1,7406:6797234,34263009:0 -g1,7406:9958692,34263009 -g1,7406:12487859,34263009 -g1,7406:13436297,34263009 -g1,7406:16597755,34263009 -k1,7406:16597755,34263009:0 -h1,7406:18810776,34263009:0,0,0 -k1,7406:32583029,34263009:13772253 -g1,7406:32583029,34263009 -) -(1,7407:6797234,34929187:25785795,410518,6290 -h1,7407:6797234,34929187:0,0,0 -h1,7407:8061817,34929187:0,0,0 -k1,7407:32583029,34929187:24521212 -g1,7407:32583029,34929187 -) -] -) -g1,7409:32583029,34935477 -g1,7409:6797234,34935477 -g1,7409:6797234,34935477 -g1,7409:32583029,34935477 -g1,7409:32583029,34935477 -) -h1,7409:6797234,35132085:0,0,0 -] -g1,7411:32583029,35656373 -) -h1,7411:6630773,35656373:0,0,0 -v1,7414:6630773,36776945:0,393216,0 -(1,7415:6630773,41539317:25952256,5155588,0 -g1,7415:6630773,41539317 -g1,7415:6303093,41539317 -r1,7421:6401397,41539317:98304,5155588,0 -g1,7415:6600626,41539317 -g1,7415:6797234,41539317 -[1,7415:6797234,41539317:25785795,5155588,0 -(1,7415:6797234,37197529:25785795,813800,267386 -(1,7414:6797234,37197529:0,813800,267386 -r1,7421:8134168,37197529:1336934,1081186,267386 -k1,7414:6797234,37197529:-1336934 -) -(1,7414:6797234,37197529:1336934,813800,267386 -) -k1,7414:8413049,37197529:278881 -k1,7414:8740729,37197529:327680 -k1,7414:11982493,37197529:278881 -k1,7414:12877412,37197529:278881 -k1,7414:14359533,37197529:278880 -k1,7414:15786605,37197529:278881 -k1,7414:18726903,37197529:278881 -k1,7414:19874136,37197529:278881 -k1,7414:21666243,37197529:278881 -k1,7414:24565253,37197529:278881 -k1,7414:27270932,37197529:278881 -k1,7414:28201240,37197529:278880 -k1,7414:30195854,37197529:278881 -k1,7414:30932832,37197529:278881 -k1,7414:32583029,37197529:0 -) -(1,7415:6797234,38039017:25785795,505283,134348 -k1,7414:10618387,38039017:214051 -k1,7414:11448475,38039017:214050 -k1,7414:14373750,38039017:214051 -k1,7414:17695518,38039017:214051 -k1,7414:18525606,38039017:214050 -k1,7414:20901034,38039017:214051 -k1,7414:21797970,38039017:214051 -k1,7414:23713991,38039017:214051 -k1,7414:25424228,38039017:214050 -k1,7414:26922785,38039017:214051 -k1,7414:28269298,38039017:214051 -k1,7414:29231114,38039017:214050 -k1,7414:31767761,38039017:214051 -k1,7414:32583029,38039017:0 -) -(1,7415:6797234,38880505:25785795,513147,126483 -k1,7414:8140263,38880505:250544 -k1,7414:10773697,38880505:250545 -k1,7414:11707126,38880505:250544 -k1,7414:14581076,38880505:250544 -k1,7414:16899936,38880505:250544 -k1,7414:19477664,38880505:250545 -k1,7414:20387500,38880505:250544 -k1,7414:23813263,38880505:250544 -k1,7414:26490606,38880505:250545 -k1,7414:29779399,38880505:250544 -k1,7414:32583029,38880505:0 -) -(1,7415:6797234,39721993:25785795,505283,134348 -k1,7414:8450052,39721993:271974 -k1,7414:10768061,39721993:271975 -k1,7414:12536222,39721993:271974 -k1,7414:14591431,39721993:271974 -k1,7414:16513602,39721993:271974 -k1,7414:19310024,39721993:271975 -k1,7414:20268160,39721993:271974 -k1,7414:23111111,39721993:271974 -k1,7414:26532090,39721993:271974 -k1,7414:27420103,39721993:271975 -k1,7414:28711162,39721993:271974 -k1,7414:30814212,39721993:271974 -k1,7414:32583029,39721993:0 -) -(1,7415:6797234,40563481:25785795,513147,134348 -k1,7414:8515409,40563481:264586 -k1,7414:9799081,40563481:264587 -k1,7414:11802993,40563481:264586 -k1,7414:12726872,40563481:264587 -k1,7414:15704649,40563481:264586 -k1,7414:17160681,40563481:264587 -k1,7414:20540193,40563481:264586 -k1,7414:23985898,40563481:264587 -k1,7414:26850953,40563481:264586 -k1,7414:27743375,40563481:264587 -k1,7414:30847636,40563481:264586 -k1,7414:32583029,40563481:0 -) -(1,7415:6797234,41404969:25785795,513147,134348 -g1,7414:10609463,41404969 -g1,7414:12877008,41404969 -g1,7414:15122271,41404969 -g1,7414:19823168,41404969 -g1,7414:23255288,41404969 -g1,7414:25324915,41404969 -g1,7414:26175572,41404969 -k1,7415:32583029,41404969:2569013 -g1,7415:32583029,41404969 -) -] -g1,7415:32583029,41539317 -) -h1,7415:6630773,41539317:0,0,0 -(1,7417:6630773,43630577:25952256,564462,147783 -(1,7417:6630773,43630577:2450326,534184,0 -g1,7417:6630773,43630577 -g1,7417:9081099,43630577 -) -g1,7417:14099257,43630577 -g1,7417:15666485,43630577 -g1,7417:18906192,43630577 -g1,7417:20683201,43630577 -k1,7417:32583029,43630577:9386064 -g1,7417:32583029,43630577 -) -(1,7419:6630773,44865281:25952256,513147,134348 -k1,7418:9733750,44865281:313109 -(1,7418:9733750,44865281:0,452978,115847 -r1,7421:12905710,44865281:3171960,568825,115847 -k1,7418:9733750,44865281:-3171960 -) -(1,7418:9733750,44865281:3171960,452978,115847 -k1,7418:9733750,44865281:3277 -h1,7418:12902433,44865281:0,411205,112570 -) -k1,7418:13218820,44865281:313110 -k1,7418:14636211,44865281:313109 -k1,7418:15697087,44865281:313110 -k1,7418:17523422,44865281:313109 -k1,7418:18487959,44865281:313109 -k1,7418:20824821,44865281:313110 -k1,7418:21493790,44865281:313109 -k1,7418:24797307,44865281:313109 -k1,7418:26678038,44865281:313110 -k1,7418:29280975,44865281:313109 -k1,7418:30253377,44865281:313110 -k1,7418:32168186,44865281:313109 -k1,7419:32583029,44865281:0 -) -(1,7419:6630773,45706769:25952256,513147,134348 -k1,7418:9313812,45706769:276557 -k1,7418:12570947,45706769:276558 -k1,7418:14236867,45706769:276557 -k1,7418:16893693,45706769:276558 -k1,7418:18123799,45706769:276557 -k1,7418:19504639,45706769:276558 -k1,7418:21067012,45706769:276557 -k1,7418:22436055,45706769:276558 -(1,7418:22436055,45706769:0,452978,115847 -r1,7421:25256304,45706769:2820249,568825,115847 -k1,7418:22436055,45706769:-2820249 -) -(1,7418:22436055,45706769:2820249,452978,115847 -k1,7418:22436055,45706769:3277 -h1,7418:25253027,45706769:0,411205,112570 -) -k1,7418:25706531,45706769:276557 -(1,7418:25706531,45706769:0,452978,115847 -r1,7421:28526780,45706769:2820249,568825,115847 -k1,7418:25706531,45706769:-2820249 -) -(1,7418:25706531,45706769:2820249,452978,115847 -k1,7418:25706531,45706769:3277 -h1,7418:28523503,45706769:0,411205,112570 -) -k1,7418:28803338,45706769:276558 -k1,7418:29762780,45706769:276557 -(1,7418:29762780,45706769:0,452978,115847 -r1,7421:32583029,45706769:2820249,568825,115847 -k1,7418:29762780,45706769:-2820249 -) -(1,7418:29762780,45706769:2820249,452978,115847 -k1,7418:29762780,45706769:3277 -h1,7418:32579752,45706769:0,411205,112570 -) -k1,7418:32583029,45706769:0 -) -] -(1,7421:32583029,45706769:0,0,0 -g1,7421:32583029,45706769 -) -) -] -(1,7421:6630773,47279633:25952256,0,0 -h1,7421:6630773,47279633:25952256,0,0 -) -] -(1,7421:4262630,4025873:0,0,0 -[1,7421:-473656,4025873:0,0,0 -(1,7421:-473656,-710413:0,0,0 -(1,7421:-473656,-710413:0,0,0 -g1,7421:-473656,-710413 +g1,6397:6630773,4812305 +k1,6397:24358919,4812305:16931228 +g1,6397:25981590,4812305 +g1,6397:26804066,4812305 +g1,6397:30302377,4812305 ) -g1,7421:-473656,-710413 ) ] +[1,6397:6630773,45706769:25952256,40108032,0 +(1,6397:6630773,45706769:25952256,40108032,0 +(1,6397:6630773,45706769:0,0,0 +g1,6397:6630773,45706769 ) -] -!26199 -}121 -Input:985:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:986:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:987:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:988:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:989:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:990:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:991:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:992:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!756 -{122 -[1,7503:4262630,47279633:28320399,43253760,0 -(1,7503:4262630,4025873:0,0,0 -[1,7503:-473656,4025873:0,0,0 -(1,7503:-473656,-710413:0,0,0 -(1,7503:-473656,-644877:0,0,0 -k1,7503:-473656,-644877:-65536 +[1,6397:6630773,45706769:25952256,40108032,0 +(1,6280:6630773,6254097:25952256,513147,126483 +k1,6279:9465960,6254097:215058 +k1,6279:11658895,6254097:215058 +k1,6279:13912123,6254097:215058 +k1,6279:14739942,6254097:215057 +k1,6279:15974085,6254097:215058 +k1,6279:17495276,6254097:215058 +k1,6279:20324565,6254097:215058 +k1,6279:21206779,6254097:215058 +(1,6279:21206779,6254097:0,452978,115847 +r1,6397:23323604,6254097:2116825,568825,115847 +k1,6279:21206779,6254097:-2116825 ) -(1,7503:-473656,4736287:0,0,0 -k1,7503:-473656,4736287:5209943 +(1,6279:21206779,6254097:2116825,452978,115847 +k1,6279:21206779,6254097:3277 +h1,6279:23320327,6254097:0,411205,112570 +) +k1,6279:23712332,6254097:215058 +k1,6279:24555224,6254097:215057 +k1,6279:25789367,6254097:215058 +k1,6279:27152616,6254097:215058 +k1,6279:30554034,6254097:215058 +k1,6280:32583029,6254097:0 +) +(1,6280:6630773,7119177:25952256,513147,134348 +(1,6279:6630773,7119177:0,452978,115847 +r1,6397:11913004,7119177:5282231,568825,115847 +k1,6279:6630773,7119177:-5282231 +) +(1,6279:6630773,7119177:5282231,452978,115847 +g1,6279:10854592,7119177 +h1,6279:11909727,7119177:0,411205,112570 +) +g1,6279:12112233,7119177 +g1,6279:14652408,7119177 +g1,6279:15207497,7119177 +g1,6279:16400252,7119177 +g1,6279:17258773,7119177 +g1,6279:19471268,7119177 +g1,6279:20842936,7119177 +g1,6279:21728327,7119177 +k1,6280:32583029,7119177:7842012 +g1,6280:32583029,7119177 +) +v1,6282:6630773,7804032:0,393216,0 +(1,6313:6630773,17932304:25952256,10521488,196608 +g1,6313:6630773,17932304 +g1,6313:6630773,17932304 +g1,6313:6434165,17932304 +(1,6313:6434165,17932304:0,10521488,196608 +r1,6397:32779637,17932304:26345472,10718096,196608 +k1,6313:6434165,17932304:-26345472 +) +(1,6313:6434165,17932304:26345472,10521488,196608 +[1,6313:6630773,17932304:25952256,10324880,0 +(1,6284:6630773,8031863:25952256,424439,79822 +(1,6283:6630773,8031863:0,0,0 +g1,6283:6630773,8031863 +g1,6283:6630773,8031863 +g1,6283:6303093,8031863 +(1,6283:6303093,8031863:0,0,0 +) +g1,6283:6630773,8031863 +) +h1,6284:10282267,8031863:0,0,0 +k1,6284:32583029,8031863:22300762 +g1,6284:32583029,8031863 +) +(1,6289:6630773,8847790:25952256,431045,33029 +(1,6286:6630773,8847790:0,0,0 +g1,6286:6630773,8847790 +g1,6286:6630773,8847790 +g1,6286:6303093,8847790 +(1,6286:6303093,8847790:0,0,0 +) +g1,6286:6630773,8847790 +) +g1,6289:7626635,8847790 +h1,6289:8290543,8847790:0,0,0 +k1,6289:32583029,8847790:24292486 +g1,6289:32583029,8847790 +) +(1,6289:6630773,9532645:25952256,424439,79822 +h1,6289:6630773,9532645:0,0,0 +g1,6289:7626635,9532645 +g1,6289:8954451,9532645 +g1,6289:9618359,9532645 +g1,6289:10282267,9532645 +h1,6289:10614221,9532645:0,0,0 +k1,6289:32583029,9532645:21968808 +g1,6289:32583029,9532645 +) +(1,6291:6630773,10348572:25952256,431045,33029 +(1,6290:6630773,10348572:0,0,0 +g1,6290:6630773,10348572 +g1,6290:6630773,10348572 +g1,6290:6303093,10348572 +(1,6290:6303093,10348572:0,0,0 +) +g1,6290:6630773,10348572 +) +h1,6291:9286405,10348572:0,0,0 +k1,6291:32583029,10348572:23296624 +g1,6291:32583029,10348572 +) +(1,6295:6630773,11164499:25952256,424439,79822 +(1,6293:6630773,11164499:0,0,0 +g1,6293:6630773,11164499 +g1,6293:6630773,11164499 +g1,6293:6303093,11164499 +(1,6293:6303093,11164499:0,0,0 +) +g1,6293:6630773,11164499 +) +g1,6295:7626635,11164499 +g1,6295:8954451,11164499 +g1,6295:9618359,11164499 +g1,6295:10282267,11164499 +h1,6295:10614221,11164499:0,0,0 +k1,6295:32583029,11164499:21968808 +g1,6295:32583029,11164499 +) +(1,6297:6630773,11980426:25952256,424439,79822 +(1,6296:6630773,11980426:0,0,0 +g1,6296:6630773,11980426 +g1,6296:6630773,11980426 +g1,6296:6303093,11980426 +(1,6296:6303093,11980426:0,0,0 +) +g1,6296:6630773,11980426 +) +h1,6297:9618359,11980426:0,0,0 +k1,6297:32583029,11980426:22964670 +g1,6297:32583029,11980426 +) +(1,6302:6630773,12796353:25952256,431045,33029 +(1,6299:6630773,12796353:0,0,0 +g1,6299:6630773,12796353 +g1,6299:6630773,12796353 +g1,6299:6303093,12796353 +(1,6299:6303093,12796353:0,0,0 +) +g1,6299:6630773,12796353 +) +g1,6302:7626635,12796353 +h1,6302:8290543,12796353:0,0,0 +k1,6302:32583029,12796353:24292486 +g1,6302:32583029,12796353 +) +(1,6302:6630773,13481208:25952256,424439,79822 +h1,6302:6630773,13481208:0,0,0 +g1,6302:7626635,13481208 +g1,6302:8954451,13481208 +g1,6302:9618359,13481208 +g1,6302:10282267,13481208 +h1,6302:10614221,13481208:0,0,0 +k1,6302:32583029,13481208:21968808 +g1,6302:32583029,13481208 +) +(1,6304:6630773,14297135:25952256,424439,86428 +(1,6303:6630773,14297135:0,0,0 +g1,6303:6630773,14297135 +g1,6303:6630773,14297135 +g1,6303:6303093,14297135 +(1,6303:6303093,14297135:0,0,0 +) +g1,6303:6630773,14297135 +) +k1,6304:6630773,14297135:0 +g1,6304:10614221,14297135 +h1,6304:11610083,14297135:0,0,0 +k1,6304:32583029,14297135:20972946 +g1,6304:32583029,14297135 +) +(1,6312:6630773,15113062:25952256,431045,33029 +(1,6306:6630773,15113062:0,0,0 +g1,6306:6630773,15113062 +g1,6306:6630773,15113062 +g1,6306:6303093,15113062 +(1,6306:6303093,15113062:0,0,0 +) +g1,6306:6630773,15113062 +) +g1,6312:7626635,15113062 +h1,6312:8290543,15113062:0,0,0 +k1,6312:32583029,15113062:24292486 +g1,6312:32583029,15113062 +) +(1,6312:6630773,15797917:25952256,424439,79822 +h1,6312:6630773,15797917:0,0,0 +g1,6312:7626635,15797917 +g1,6312:8954451,15797917 +g1,6312:9618359,15797917 +g1,6312:10282267,15797917 +h1,6312:10614221,15797917:0,0,0 +k1,6312:32583029,15797917:21968808 +g1,6312:32583029,15797917 +) +(1,6312:6630773,16482772:25952256,398014,0 +h1,6312:6630773,16482772:0,0,0 +h1,6312:7294681,16482772:0,0,0 +k1,6312:32583029,16482772:25288348 +g1,6312:32583029,16482772 +) +(1,6312:6630773,17167627:25952256,431045,33029 +h1,6312:6630773,17167627:0,0,0 +g1,6312:7626635,17167627 +h1,6312:8290543,17167627:0,0,0 +k1,6312:32583029,17167627:24292486 +g1,6312:32583029,17167627 +) +(1,6312:6630773,17852482:25952256,424439,79822 +h1,6312:6630773,17852482:0,0,0 +g1,6312:7626635,17852482 +g1,6312:8954451,17852482 +g1,6312:9286405,17852482 +g1,6312:10946175,17852482 +h1,6312:12605945,17852482:0,0,0 +k1,6312:32583029,17852482:19977084 +g1,6312:32583029,17852482 +) +] +) +g1,6313:32583029,17932304 +g1,6313:6630773,17932304 +g1,6313:6630773,17932304 +g1,6313:32583029,17932304 +g1,6313:32583029,17932304 +) +h1,6313:6630773,18128912:0,0,0 +(1,6317:6630773,18993992:25952256,513147,134348 +h1,6316:6630773,18993992:983040,0,0 +k1,6316:8597508,18993992:165806 +k1,6316:10157265,18993992:165806 +k1,6316:12631249,18993992:165806 +k1,6316:15451918,18993992:165806 +k1,6316:18792943,18993992:165806 +k1,6316:21207945,18993992:165806 +k1,6316:23728460,18993992:165806 +k1,6316:26847974,18993992:165806 +k1,6316:29340963,18993992:165806 +k1,6316:30166061,18993992:165806 +k1,6317:32583029,18993992:0 +) +(1,6317:6630773,19859072:25952256,513147,134348 +g1,6316:7820251,19859072 +g1,6316:9832206,19859072 +g1,6316:11081322,19859072 +g1,6316:12778704,19859072 +h1,6316:13575622,19859072:0,0,0 +g1,6316:13774851,19859072 +g1,6316:14921731,19859072 +g1,6316:15476820,19859072 +g1,6316:17262676,19859072 +g1,6316:20446415,19859072 +g1,6316:21297072,19859072 +g1,6316:24084318,19859072 +g1,6316:24942839,19859072 +g1,6316:26135594,19859072 +k1,6317:32583029,19859072:3320057 +g1,6317:32583029,19859072 +) +v1,6319:6630773,20543927:0,393216,0 +(1,6337:6630773,26723636:25952256,6572925,196608 +g1,6337:6630773,26723636 +g1,6337:6630773,26723636 +g1,6337:6434165,26723636 +(1,6337:6434165,26723636:0,6572925,196608 +r1,6397:32779637,26723636:26345472,6769533,196608 +k1,6337:6434165,26723636:-26345472 +) +(1,6337:6434165,26723636:26345472,6572925,196608 +[1,6337:6630773,26723636:25952256,6376317,0 +(1,6321:6630773,20771758:25952256,424439,79822 +(1,6320:6630773,20771758:0,0,0 +g1,6320:6630773,20771758 +g1,6320:6630773,20771758 +g1,6320:6303093,20771758 +(1,6320:6303093,20771758:0,0,0 +) +g1,6320:6630773,20771758 +) +k1,6321:6630773,20771758:0 +h1,6321:9950313,20771758:0,0,0 +k1,6321:32583029,20771758:22632716 +g1,6321:32583029,20771758 +) +(1,6329:6630773,21587685:25952256,431045,106246 +(1,6323:6630773,21587685:0,0,0 +g1,6323:6630773,21587685 +g1,6323:6630773,21587685 +g1,6323:6303093,21587685 +(1,6323:6303093,21587685:0,0,0 +) +g1,6323:6630773,21587685 +) +g1,6329:7626635,21587685 +h1,6329:8290543,21587685:0,0,0 +k1,6329:32583029,21587685:24292486 +g1,6329:32583029,21587685 +) +(1,6329:6630773,22272540:25952256,424439,79822 +h1,6329:6630773,22272540:0,0,0 +g1,6329:7626635,22272540 +g1,6329:8954451,22272540 +h1,6329:10282267,22272540:0,0,0 +k1,6329:32583029,22272540:22300762 +g1,6329:32583029,22272540 +) +(1,6329:6630773,22957395:25952256,398014,0 +h1,6329:6630773,22957395:0,0,0 +h1,6329:7294681,22957395:0,0,0 +k1,6329:32583029,22957395:25288348 +g1,6329:32583029,22957395 +) +(1,6329:6630773,23642250:25952256,431045,33029 +h1,6329:6630773,23642250:0,0,0 +g1,6329:7626635,23642250 +h1,6329:8290543,23642250:0,0,0 +k1,6329:32583029,23642250:24292486 +g1,6329:32583029,23642250 +) +(1,6329:6630773,24327105:25952256,424439,79822 +h1,6329:6630773,24327105:0,0,0 +g1,6329:7626635,24327105 +g1,6329:8954451,24327105 +g1,6329:9286405,24327105 +g1,6329:10946175,24327105 +h1,6329:12605945,24327105:0,0,0 +k1,6329:32583029,24327105:19977084 +g1,6329:32583029,24327105 +) +(1,6331:6630773,25143032:25952256,424439,86428 +(1,6330:6630773,25143032:0,0,0 +g1,6330:6630773,25143032 +g1,6330:6630773,25143032 +g1,6330:6303093,25143032 +(1,6330:6303093,25143032:0,0,0 +) +g1,6330:6630773,25143032 +) +k1,6331:6630773,25143032:0 +g1,6331:10946175,25143032 +k1,6331:10946175,25143032:0 +h1,6331:12273991,25143032:0,0,0 +k1,6331:32583029,25143032:20309038 +g1,6331:32583029,25143032 +) +(1,6336:6630773,25958959:25952256,431045,106246 +(1,6333:6630773,25958959:0,0,0 +g1,6333:6630773,25958959 +g1,6333:6630773,25958959 +g1,6333:6303093,25958959 +(1,6333:6303093,25958959:0,0,0 +) +g1,6333:6630773,25958959 +) +g1,6336:7626635,25958959 +h1,6336:8290543,25958959:0,0,0 +k1,6336:32583029,25958959:24292486 +g1,6336:32583029,25958959 +) +(1,6336:6630773,26643814:25952256,424439,79822 +h1,6336:6630773,26643814:0,0,0 +g1,6336:7626635,26643814 +g1,6336:8954451,26643814 +h1,6336:10282267,26643814:0,0,0 +k1,6336:32583029,26643814:22300762 +g1,6336:32583029,26643814 +) +] +) +g1,6337:32583029,26723636 +g1,6337:6630773,26723636 +g1,6337:6630773,26723636 +g1,6337:32583029,26723636 +g1,6337:32583029,26723636 +) +h1,6337:6630773,26920244:0,0,0 +(1,6341:6630773,27785324:25952256,513147,134348 +h1,6340:6630773,27785324:983040,0,0 +k1,6340:9644872,27785324:239305 +k1,6340:12630790,27785324:239304 +(1,6340:12630790,27785324:0,452978,115847 +r1,6397:14395904,27785324:1765114,568825,115847 +k1,6340:12630790,27785324:-1765114 +) +(1,6340:12630790,27785324:1765114,452978,115847 +g1,6340:13689203,27785324 +h1,6340:14392627,27785324:0,411205,112570 +) +k1,6340:14635209,27785324:239305 +k1,6340:17264612,27785324:239305 +k1,6340:19644977,27785324:239304 +k1,6340:22796702,27785324:239305 +k1,6340:23983657,27785324:239304 +k1,6340:26962367,27785324:239305 +k1,6340:27557532,27785324:239305 +k1,6340:28790362,27785324:239304 +k1,6340:31563944,27785324:239305 +k1,6340:32583029,27785324:0 +) +(1,6341:6630773,28650404:25952256,505283,134348 +k1,6340:9311765,28650404:142127 +k1,6340:11492062,28650404:142127 +k1,6340:12250227,28650404:142127 +k1,6340:13411439,28650404:142127 +k1,6340:14720762,28650404:142127 +k1,6340:15478927,28650404:142127 +k1,6340:16409452,28650404:142127 +k1,6340:18986897,28650404:142127 +k1,6340:21085274,28650404:142127 +k1,6340:21855236,28650404:142127 +k1,6340:23016448,28650404:142127 +k1,6340:25819992,28650404:142127 +k1,6340:28004221,28650404:142127 +(1,6340:28004221,28650404:0,452978,115847 +r1,6397:32583029,28650404:4578808,568825,115847 +k1,6340:28004221,28650404:-4578808 +) +(1,6340:28004221,28650404:4578808,452978,115847 +k1,6340:28004221,28650404:3277 +h1,6340:32579752,28650404:0,411205,112570 +) +k1,6340:32583029,28650404:0 +) +(1,6341:6630773,29515484:25952256,505283,134348 +k1,6340:8061641,29515484:239423 +(1,6340:8061641,29515484:0,452978,115847 +r1,6397:11937025,29515484:3875384,568825,115847 +k1,6340:8061641,29515484:-3875384 +) +(1,6340:8061641,29515484:3875384,452978,115847 +k1,6340:8061641,29515484:3277 +h1,6340:11933748,29515484:0,411205,112570 +) +k1,6340:12176447,29515484:239422 +k1,6340:14426515,29515484:239423 +k1,6340:15021798,29515484:239423 +k1,6340:17881350,29515484:239423 +k1,6340:20272319,29515484:239422 +k1,6340:21465291,29515484:239423 +k1,6340:23571835,29515484:239423 +k1,6340:24858523,29515484:239423 +k1,6340:26382451,29515484:239422 +k1,6340:29836415,29515484:239423 +k1,6341:32583029,29515484:0 +) +(1,6341:6630773,30380564:25952256,505283,126483 +(1,6340:6630773,30380564:0,452978,115847 +r1,6397:8395887,30380564:1765114,568825,115847 +k1,6340:6630773,30380564:-1765114 +) +(1,6340:6630773,30380564:1765114,452978,115847 +g1,6340:7689186,30380564 +h1,6340:8392610,30380564:0,411205,112570 +) +g1,6340:8595116,30380564 +g1,6340:11211968,30380564 +g1,6340:14183370,30380564 +g1,6340:15650065,30380564 +g1,6340:16868379,30380564 +g1,6340:18061134,30380564 +g1,6340:19702810,30380564 +g1,6340:22648653,30380564 +(1,6340:22648653,30380564:0,452978,115847 +r1,6397:23710343,30380564:1061690,568825,115847 +k1,6340:22648653,30380564:-1061690 +) +(1,6340:22648653,30380564:1061690,452978,115847 +g1,6340:23355354,30380564 +h1,6340:23707066,30380564:0,411205,112570 +) +k1,6341:32583029,30380564:8699016 +g1,6341:32583029,30380564 +) +v1,6343:6630773,31065419:0,393216,0 +(1,6362:6630773,35459313:25952256,4787110,196608 +g1,6362:6630773,35459313 +g1,6362:6630773,35459313 +g1,6362:6434165,35459313 +(1,6362:6434165,35459313:0,4787110,196608 +r1,6397:32779637,35459313:26345472,4983718,196608 +k1,6362:6434165,35459313:-26345472 +) +(1,6362:6434165,35459313:26345472,4787110,196608 +[1,6362:6630773,35459313:25952256,4590502,0 +(1,6345:6630773,31299856:25952256,431045,33029 +(1,6344:6630773,31299856:0,0,0 +g1,6344:6630773,31299856 +g1,6344:6630773,31299856 +g1,6344:6303093,31299856 +(1,6344:6303093,31299856:0,0,0 +) +g1,6344:6630773,31299856 +) +h1,6345:9286405,31299856:0,0,0 +k1,6345:32583029,31299856:23296624 +g1,6345:32583029,31299856 +) +(1,6349:6630773,32115783:25952256,424439,79822 +(1,6347:6630773,32115783:0,0,0 +g1,6347:6630773,32115783 +g1,6347:6630773,32115783 +g1,6347:6303093,32115783 +(1,6347:6303093,32115783:0,0,0 +) +g1,6347:6630773,32115783 +) +g1,6349:7626635,32115783 +g1,6349:8954451,32115783 +g1,6349:9618359,32115783 +g1,6349:10282267,32115783 +h1,6349:10614221,32115783:0,0,0 +k1,6349:32583029,32115783:21968808 +g1,6349:32583029,32115783 +) +(1,6351:6630773,32931710:25952256,424439,79822 +(1,6350:6630773,32931710:0,0,0 +g1,6350:6630773,32931710 +g1,6350:6630773,32931710 +g1,6350:6303093,32931710 +(1,6350:6303093,32931710:0,0,0 +) +g1,6350:6630773,32931710 +) +h1,6351:10946174,32931710:0,0,0 +k1,6351:32583030,32931710:21636856 +g1,6351:32583030,32931710 +) +(1,6355:6630773,33747637:25952256,424439,79822 +(1,6353:6630773,33747637:0,0,0 +g1,6353:6630773,33747637 +g1,6353:6630773,33747637 +g1,6353:6303093,33747637 +(1,6353:6303093,33747637:0,0,0 +) +g1,6353:6630773,33747637 +) +g1,6355:7626635,33747637 +g1,6355:8954451,33747637 +g1,6355:9618359,33747637 +g1,6355:10282267,33747637 +h1,6355:10614221,33747637:0,0,0 +k1,6355:32583029,33747637:21968808 +g1,6355:32583029,33747637 +) +(1,6357:6630773,34563564:25952256,424439,79822 +(1,6356:6630773,34563564:0,0,0 +g1,6356:6630773,34563564 +g1,6356:6630773,34563564 +g1,6356:6303093,34563564 +(1,6356:6303093,34563564:0,0,0 +) +g1,6356:6630773,34563564 +) +h1,6357:10282266,34563564:0,0,0 +k1,6357:32583030,34563564:22300764 +g1,6357:32583030,34563564 +) +(1,6361:6630773,35379491:25952256,424439,79822 +(1,6359:6630773,35379491:0,0,0 +g1,6359:6630773,35379491 +g1,6359:6630773,35379491 +g1,6359:6303093,35379491 +(1,6359:6303093,35379491:0,0,0 +) +g1,6359:6630773,35379491 +) +g1,6361:7626635,35379491 +g1,6361:8954451,35379491 +g1,6361:9618359,35379491 +g1,6361:10282267,35379491 +h1,6361:10614221,35379491:0,0,0 +k1,6361:32583029,35379491:21968808 +g1,6361:32583029,35379491 +) +] +) +g1,6362:32583029,35459313 +g1,6362:6630773,35459313 +g1,6362:6630773,35459313 +g1,6362:32583029,35459313 +g1,6362:32583029,35459313 +) +h1,6362:6630773,35655921:0,0,0 +v1,6366:6630773,36340776:0,393216,0 +(1,6391:6630773,42359918:25952256,6412358,196608 +g1,6391:6630773,42359918 +g1,6391:6630773,42359918 +g1,6391:6434165,42359918 +(1,6391:6434165,42359918:0,6412358,196608 +r1,6397:32779637,42359918:26345472,6608966,196608 +k1,6391:6434165,42359918:-26345472 +) +(1,6391:6434165,42359918:26345472,6412358,196608 +[1,6391:6630773,42359918:25952256,6215750,0 +(1,6368:6630773,36568607:25952256,424439,79822 +(1,6367:6630773,36568607:0,0,0 +g1,6367:6630773,36568607 +g1,6367:6630773,36568607 +g1,6367:6303093,36568607 +(1,6367:6303093,36568607:0,0,0 +) +g1,6367:6630773,36568607 +) +k1,6368:6630773,36568607:0 +h1,6368:13269851,36568607:0,0,0 +k1,6368:32583029,36568607:19313178 +g1,6368:32583029,36568607 +) +(1,6372:6630773,37384534:25952256,424439,79822 +(1,6370:6630773,37384534:0,0,0 +g1,6370:6630773,37384534 +g1,6370:6630773,37384534 +g1,6370:6303093,37384534 +(1,6370:6303093,37384534:0,0,0 +) +g1,6370:6630773,37384534 +) +g1,6372:7626635,37384534 +g1,6372:8954451,37384534 +h1,6372:10282267,37384534:0,0,0 +k1,6372:32583029,37384534:22300762 +g1,6372:32583029,37384534 +) +(1,6374:6630773,38200461:25952256,424439,79822 +(1,6373:6630773,38200461:0,0,0 +g1,6373:6630773,38200461 +g1,6373:6630773,38200461 +g1,6373:6303093,38200461 +(1,6373:6303093,38200461:0,0,0 +) +g1,6373:6630773,38200461 +) +k1,6374:6630773,38200461:0 +h1,6374:12605944,38200461:0,0,0 +k1,6374:32583028,38200461:19977084 +g1,6374:32583028,38200461 +) +(1,6378:6630773,39016388:25952256,424439,79822 +(1,6376:6630773,39016388:0,0,0 +g1,6376:6630773,39016388 +g1,6376:6630773,39016388 +g1,6376:6303093,39016388 +(1,6376:6303093,39016388:0,0,0 +) +g1,6376:6630773,39016388 +) +g1,6378:7626635,39016388 +g1,6378:8954451,39016388 +h1,6378:10282267,39016388:0,0,0 +k1,6378:32583029,39016388:22300762 +g1,6378:32583029,39016388 +) +(1,6380:6630773,39832315:25952256,424439,79822 +(1,6379:6630773,39832315:0,0,0 +g1,6379:6630773,39832315 +g1,6379:6630773,39832315 +g1,6379:6303093,39832315 +(1,6379:6303093,39832315:0,0,0 +) +g1,6379:6630773,39832315 +) +k1,6380:6630773,39832315:0 +h1,6380:13933759,39832315:0,0,0 +k1,6380:32583029,39832315:18649270 +g1,6380:32583029,39832315 +) +(1,6384:6630773,40648242:25952256,424439,79822 +(1,6382:6630773,40648242:0,0,0 +g1,6382:6630773,40648242 +g1,6382:6630773,40648242 +g1,6382:6303093,40648242 +(1,6382:6303093,40648242:0,0,0 +) +g1,6382:6630773,40648242 +) +g1,6384:7626635,40648242 +g1,6384:8954451,40648242 +h1,6384:10282267,40648242:0,0,0 +k1,6384:32583029,40648242:22300762 +g1,6384:32583029,40648242 +) +(1,6386:6630773,41464169:25952256,424439,79822 +(1,6385:6630773,41464169:0,0,0 +g1,6385:6630773,41464169 +g1,6385:6630773,41464169 +g1,6385:6303093,41464169 +(1,6385:6303093,41464169:0,0,0 +) +g1,6385:6630773,41464169 +) +k1,6386:6630773,41464169:0 +h1,6386:13269852,41464169:0,0,0 +k1,6386:32583028,41464169:19313176 +g1,6386:32583028,41464169 +) +(1,6390:6630773,42280096:25952256,424439,79822 +(1,6388:6630773,42280096:0,0,0 +g1,6388:6630773,42280096 +g1,6388:6630773,42280096 +g1,6388:6303093,42280096 +(1,6388:6303093,42280096:0,0,0 +) +g1,6388:6630773,42280096 +) +g1,6390:7626635,42280096 +g1,6390:8954451,42280096 +h1,6390:10614221,42280096:0,0,0 +k1,6390:32583029,42280096:21968808 +g1,6390:32583029,42280096 +) +] +) +g1,6391:32583029,42359918 +g1,6391:6630773,42359918 +g1,6391:6630773,42359918 +g1,6391:32583029,42359918 +g1,6391:32583029,42359918 +) +h1,6391:6630773,42556526:0,0,0 +(1,6395:6630773,43421606:25952256,505283,134348 +h1,6394:6630773,43421606:983040,0,0 +k1,6394:9006848,43421606:196348 +k1,6394:12280110,43421606:196347 +k1,6394:13580740,43421606:196348 +k1,6394:14524854,43421606:196348 +k1,6394:16234428,43421606:196348 +k1,6394:19111198,43421606:196347 +k1,6394:19993708,43421606:196348 +k1,6394:22265581,43421606:196348 +k1,6394:24504031,43421606:196348 +k1,6394:26094329,43421606:196347 +(1,6394:26094329,43421606:0,452978,115847 +r1,6397:29969713,43421606:3875384,568825,115847 +k1,6394:26094329,43421606:-3875384 +) +(1,6394:26094329,43421606:3875384,452978,115847 +k1,6394:26094329,43421606:3277 +h1,6394:29966436,43421606:0,411205,112570 +) +k1,6394:30166061,43421606:196348 +k1,6395:32583029,43421606:0 +) +(1,6395:6630773,44286686:25952256,513147,134348 +k1,6394:7898659,44286686:277637 +k1,6394:9195381,44286686:277637 +k1,6394:11450895,44286686:277637 +k1,6394:13296154,44286686:277638 +(1,6394:13296154,44286686:0,452978,115847 +r1,6397:15412979,44286686:2116825,568825,115847 +k1,6394:13296154,44286686:-2116825 +) +(1,6394:13296154,44286686:2116825,452978,115847 +k1,6394:13296154,44286686:3277 +h1,6394:15409702,44286686:0,411205,112570 +) +k1,6394:15690616,44286686:277637 +k1,6394:17159698,44286686:277637 +(1,6394:17159698,44286686:0,452978,115847 +r1,6397:18221387,44286686:1061689,568825,115847 +k1,6394:17159698,44286686:-1061689 +) +(1,6394:17159698,44286686:1061689,452978,115847 +k1,6394:17159698,44286686:3277 +h1,6394:18218110,44286686:0,411205,112570 +) +k1,6394:18499024,44286686:277637 +k1,6394:21970886,44286686:277637 +k1,6394:23267608,44286686:277637 +k1,6394:26168651,44286686:277637 +k1,6394:27059051,44286686:277638 +k1,6394:29950919,44286686:277637 +k1,6394:30627015,44286686:277637 +k1,6394:31563944,44286686:277637 +k1,6394:32583029,44286686:0 ) -g1,7503:-473656,-710413 +(1,6395:6630773,45151766:25952256,426639,7863 +k1,6395:32583028,45151766:23800708 +g1,6395:32583028,45151766 ) ] +(1,6397:32583029,45706769:0,0,0 +g1,6397:32583029,45706769 ) -[1,7503:6630773,47279633:25952256,43253760,0 -[1,7503:6630773,4812305:25952256,786432,0 -(1,7503:6630773,4812305:25952256,513147,126483 -(1,7503:6630773,4812305:25952256,513147,126483 -g1,7503:3078558,4812305 -[1,7503:3078558,4812305:0,0,0 -(1,7503:3078558,2439708:0,1703936,0 -k1,7503:1358238,2439708:-1720320 -(1,5950:1358238,2439708:1720320,1703936,0 -(1,5950:1358238,2439708:1179648,16384,0 -r1,7503:2537886,2439708:1179648,16384,0 -) -g1,5950:3062174,2439708 -(1,5950:3062174,2439708:16384,1703936,0 -[1,5950:3062174,2439708:25952256,1703936,0 -(1,5950:3062174,1915420:25952256,1179648,0 -(1,5950:3062174,1915420:16384,1179648,0 -r1,7503:3078558,1915420:16384,1179648,0 -) -k1,5950:29014430,1915420:25935872 -g1,5950:29014430,1915420 ) ] -) -) +(1,6397:6630773,47279633:25952256,0,0 +h1,6397:6630773,47279633:25952256,0,0 ) ] -[1,7503:3078558,4812305:0,0,0 -(1,7503:3078558,2439708:0,1703936,0 -g1,7503:29030814,2439708 -g1,7503:36135244,2439708 -(1,5950:36135244,2439708:1720320,1703936,0 -(1,5950:36135244,2439708:16384,1703936,0 -[1,5950:36135244,2439708:25952256,1703936,0 -(1,5950:36135244,1915420:25952256,1179648,0 -(1,5950:36135244,1915420:16384,1179648,0 -r1,7503:36151628,1915420:16384,1179648,0 +(1,6397:4262630,4025873:0,0,0 +[1,6397:-473656,4025873:0,0,0 +(1,6397:-473656,-710413:0,0,0 +(1,6397:-473656,-710413:0,0,0 +g1,6397:-473656,-710413 ) -k1,5950:62087500,1915420:25935872 -g1,5950:62087500,1915420 +g1,6397:-473656,-710413 ) ] ) -g1,5950:36675916,2439708 -(1,5950:36675916,2439708:1179648,16384,0 -r1,7503:37855564,2439708:1179648,16384,0 +] +!24172 +}101 +Input:894:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:895:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:896:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:897:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:898:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:899:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:900:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:901:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!756 +{102 +[1,6493:4262630,47279633:28320399,43253760,0 +(1,6493:4262630,4025873:0,0,0 +[1,6493:-473656,4025873:0,0,0 +(1,6493:-473656,-710413:0,0,0 +(1,6493:-473656,-644877:0,0,0 +k1,6493:-473656,-644877:-65536 ) +(1,6493:-473656,4736287:0,0,0 +k1,6493:-473656,4736287:5209943 ) -k1,7503:3078556,2439708:-34777008 +g1,6493:-473656,-710413 ) ] -[1,7503:3078558,4812305:0,0,0 -(1,7503:3078558,49800853:0,16384,2228224 -k1,7503:1358238,49800853:-1720320 -(1,5950:1358238,49800853:1720320,16384,2228224 -(1,5950:1358238,49800853:1179648,16384,0 -r1,7503:2537886,49800853:1179648,16384,0 ) -g1,5950:3062174,49800853 -(1,5950:3062174,52029077:16384,1703936,0 -[1,5950:3062174,52029077:25952256,1703936,0 -(1,5950:3062174,51504789:25952256,1179648,0 -(1,5950:3062174,51504789:16384,1179648,0 -r1,7503:3078558,51504789:16384,1179648,0 +[1,6493:6630773,47279633:25952256,43253760,0 +[1,6493:6630773,4812305:25952256,786432,0 +(1,6493:6630773,4812305:25952256,485622,11795 +(1,6493:6630773,4812305:25952256,485622,11795 +g1,6493:3078558,4812305 +[1,6493:3078558,4812305:0,0,0 +(1,6493:3078558,2439708:0,1703936,0 +k1,6493:1358238,2439708:-1720320 +(1,6148:1358238,2439708:1720320,1703936,0 +(1,6148:1358238,2439708:1179648,16384,0 +r1,6493:2537886,2439708:1179648,16384,0 +) +g1,6148:3062174,2439708 +(1,6148:3062174,2439708:16384,1703936,0 +[1,6148:3062174,2439708:25952256,1703936,0 +(1,6148:3062174,1915420:25952256,1179648,0 +(1,6148:3062174,1915420:16384,1179648,0 +r1,6493:3078558,1915420:16384,1179648,0 ) -k1,5950:29014430,51504789:25935872 -g1,5950:29014430,51504789 +k1,6148:29014430,1915420:25935872 +g1,6148:29014430,1915420 ) ] ) ) ) ] -[1,7503:3078558,4812305:0,0,0 -(1,7503:3078558,49800853:0,16384,2228224 -g1,7503:29030814,49800853 -g1,7503:36135244,49800853 -(1,5950:36135244,49800853:1720320,16384,2228224 -(1,5950:36135244,52029077:16384,1703936,0 -[1,5950:36135244,52029077:25952256,1703936,0 -(1,5950:36135244,51504789:25952256,1179648,0 -(1,5950:36135244,51504789:16384,1179648,0 -r1,7503:36151628,51504789:16384,1179648,0 +[1,6493:3078558,4812305:0,0,0 +(1,6493:3078558,2439708:0,1703936,0 +g1,6493:29030814,2439708 +g1,6493:36135244,2439708 +(1,6148:36135244,2439708:1720320,1703936,0 +(1,6148:36135244,2439708:16384,1703936,0 +[1,6148:36135244,2439708:25952256,1703936,0 +(1,6148:36135244,1915420:25952256,1179648,0 +(1,6148:36135244,1915420:16384,1179648,0 +r1,6493:36151628,1915420:16384,1179648,0 ) -k1,5950:62087500,51504789:25935872 -g1,5950:62087500,51504789 -) -] -) -g1,5950:36675916,49800853 -(1,5950:36675916,49800853:1179648,16384,0 -r1,7503:37855564,49800853:1179648,16384,0 -) -) -k1,7503:3078556,49800853:-34777008 -) -] -g1,7503:6630773,4812305 -g1,7503:6630773,4812305 -g1,7503:8364200,4812305 -g1,7503:10765439,4812305 -k1,7503:31387651,4812305:20622212 -) -) -] -[1,7503:6630773,45706769:25952256,40108032,0 -(1,7503:6630773,45706769:25952256,40108032,0 -(1,7503:6630773,45706769:0,0,0 -g1,7503:6630773,45706769 -) -[1,7503:6630773,45706769:25952256,40108032,0 -(1,7419:6630773,6254097:25952256,513147,134348 -k1,7418:7486522,6254097:204321 -k1,7418:9454417,6254097:204321 -k1,7418:10790545,6254097:204321 -k1,7418:13506860,6254097:204320 -k1,7418:16406677,6254097:204321 -k1,7418:17262426,6254097:204321 -k1,7418:20659661,6254097:204321 -k1,7418:23577173,6254097:204321 -k1,7418:25013571,6254097:204321 -k1,7418:27496578,6254097:204320 -h1,7418:28467166,6254097:0,0,0 -k1,7418:28671487,6254097:204321 -k1,7418:29685178,6254097:204321 -k1,7418:31387652,6254097:204321 -h1,7418:32583029,6254097:0,0,0 -k1,7418:32583029,6254097:0 -) -(1,7419:6630773,7095585:25952256,513147,126483 -g1,7418:7777653,7095585 -g1,7418:8332742,7095585 -g1,7418:12141694,7095585 -g1,7418:13000215,7095585 -g1,7418:14896171,7095585 -g1,7418:18121197,7095585 -g1,7418:19511871,7095585 -g1,7418:21219739,7095585 -k1,7419:32583029,7095585:9890041 -g1,7419:32583029,7095585 -) -v1,7421:6630773,8286051:0,393216,0 -(1,7434:6630773,13172643:25952256,5279808,196608 -g1,7434:6630773,13172643 -g1,7434:6630773,13172643 -g1,7434:6434165,13172643 -(1,7434:6434165,13172643:0,5279808,196608 -r1,7503:32779637,13172643:26345472,5476416,196608 -k1,7434:6434165,13172643:-26345472 -) -(1,7434:6434165,13172643:26345472,5279808,196608 -[1,7434:6630773,13172643:25952256,5083200,0 -(1,7423:6630773,8499961:25952256,410518,101187 -(1,7422:6630773,8499961:0,0,0 -g1,7422:6630773,8499961 -g1,7422:6630773,8499961 -g1,7422:6303093,8499961 -(1,7422:6303093,8499961:0,0,0 -) -g1,7422:6630773,8499961 -) -k1,7423:6630773,8499961:0 -h1,7423:10740667,8499961:0,0,0 -k1,7423:32583029,8499961:21842362 -g1,7423:32583029,8499961 -) -(1,7433:6630773,9166139:25952256,379060,101187 -(1,7425:6630773,9166139:0,0,0 -g1,7425:6630773,9166139 -g1,7425:6630773,9166139 -g1,7425:6303093,9166139 -(1,7425:6303093,9166139:0,0,0 -) -g1,7425:6630773,9166139 -) -g1,7433:7579210,9166139 -g1,7433:7895356,9166139 -g1,7433:8211502,9166139 -g1,7433:8527648,9166139 -g1,7433:8843794,9166139 -g1,7433:9159940,9166139 -g1,7433:9476086,9166139 -g1,7433:9792232,9166139 -g1,7433:10424524,9166139 -g1,7433:10740670,9166139 -g1,7433:11056816,9166139 -g1,7433:11372962,9166139 -g1,7433:11689108,9166139 -g1,7433:12005254,9166139 -g1,7433:12321400,9166139 -g1,7433:12637546,9166139 -g1,7433:12953692,9166139 -g1,7433:13269838,9166139 -g1,7433:13585984,9166139 -g1,7433:13902130,9166139 -g1,7433:14218276,9166139 -g1,7433:14850568,9166139 -g1,7433:15166714,9166139 -g1,7433:15482860,9166139 -g1,7433:15799006,9166139 -g1,7433:16115152,9166139 -g1,7433:16431298,9166139 -g1,7433:16747444,9166139 -g1,7433:17063590,9166139 -g1,7433:17379736,9166139 -g1,7433:17695882,9166139 -g1,7433:18012028,9166139 -g1,7433:18328174,9166139 -g1,7433:18644320,9166139 -g1,7433:18960466,9166139 -g1,7433:19276612,9166139 -g1,7433:19592758,9166139 -g1,7433:19908904,9166139 -h1,7433:20225050,9166139:0,0,0 -k1,7433:32583029,9166139:12357979 -g1,7433:32583029,9166139 -) -(1,7433:6630773,9832317:25952256,404226,107478 -h1,7433:6630773,9832317:0,0,0 -g1,7433:7579210,9832317 -g1,7433:7895356,9832317 -g1,7433:9476085,9832317 -g1,7433:9792231,9832317 -g1,7433:10108377,9832317 -g1,7433:12005251,9832317 -g1,7433:12321397,9832317 -g1,7433:12637543,9832317 -g1,7433:15482854,9832317 -g1,7433:15799000,9832317 -g1,7433:16115146,9832317 -g1,7433:16431292,9832317 -g1,7433:16747438,9832317 -g1,7433:17063584,9832317 -g1,7433:17379730,9832317 -g1,7433:17695876,9832317 -g1,7433:18012022,9832317 -g1,7433:18328168,9832317 -g1,7433:18644314,9832317 -g1,7433:20225043,9832317 -h1,7433:22754208,9832317:0,0,0 -k1,7433:32583029,9832317:9828821 -g1,7433:32583029,9832317 -) -(1,7433:6630773,10498495:25952256,404226,82312 -h1,7433:6630773,10498495:0,0,0 -g1,7433:7579210,10498495 -g1,7433:7895356,10498495 -g1,7433:9159939,10498495 -g1,7433:12005250,10498495 -g1,7433:12321396,10498495 -g1,7433:12637542,10498495 -g1,7433:14534416,10498495 -g1,7433:18012019,10498495 -g1,7433:18328165,10498495 -g1,7433:18644311,10498495 -h1,7433:20857331,10498495:0,0,0 -k1,7433:32583029,10498495:11725698 -g1,7433:32583029,10498495 -) -(1,7433:6630773,11164673:25952256,404226,9436 -h1,7433:6630773,11164673:0,0,0 -g1,7433:7579210,11164673 -g1,7433:7895356,11164673 -g1,7433:10108376,11164673 -g1,7433:12005250,11164673 -g1,7433:12321396,11164673 -g1,7433:12637542,11164673 -g1,7433:14218271,11164673 -g1,7433:14534417,11164673 -g1,7433:18012020,11164673 -g1,7433:18328166,11164673 -g1,7433:18644312,11164673 -g1,7433:20225041,11164673 -h1,7433:20857332,11164673:0,0,0 -k1,7433:32583029,11164673:11725697 -g1,7433:32583029,11164673 -) -(1,7433:6630773,11830851:25952256,388497,9436 -h1,7433:6630773,11830851:0,0,0 -g1,7433:7579210,11830851 -g1,7433:7895356,11830851 -g1,7433:9476085,11830851 -g1,7433:9792231,11830851 -g1,7433:10108377,11830851 -h1,7433:11689105,11830851:0,0,0 -k1,7433:32583029,11830851:20893924 -g1,7433:32583029,11830851 -) -(1,7433:6630773,12497029:25952256,404226,82312 -h1,7433:6630773,12497029:0,0,0 -g1,7433:7579210,12497029 -g1,7433:7895356,12497029 -g1,7433:9159939,12497029 -h1,7433:11689104,12497029:0,0,0 -k1,7433:32583028,12497029:20893924 -g1,7433:32583028,12497029 -) -(1,7433:6630773,13163207:25952256,388497,9436 -h1,7433:6630773,13163207:0,0,0 -g1,7433:7579210,13163207 -g1,7433:7895356,13163207 -g1,7433:9476085,13163207 -g1,7433:9792231,13163207 -g1,7433:10108377,13163207 -h1,7433:11689105,13163207:0,0,0 -k1,7433:32583029,13163207:20893924 -g1,7433:32583029,13163207 -) -] -) -g1,7434:32583029,13172643 -g1,7434:6630773,13172643 -g1,7434:6630773,13172643 -g1,7434:32583029,13172643 -g1,7434:32583029,13172643 -) -h1,7434:6630773,13369251:0,0,0 -(1,7439:6630773,14735027:25952256,513147,126483 -h1,7438:6630773,14735027:983040,0,0 -k1,7438:8288834,14735027:260178 -k1,7438:11244569,14735027:260239 -(1,7438:11244569,14735027:0,452978,115847 -r1,7503:13713106,14735027:2468537,568825,115847 -k1,7438:11244569,14735027:-2468537 -) -(1,7438:11244569,14735027:2468537,452978,115847 -k1,7438:11244569,14735027:3277 -h1,7438:13709829,14735027:0,411205,112570 -) -k1,7438:13973346,14735027:260240 -k1,7438:16279619,14735027:260239 -k1,7438:16997955,14735027:260239 -k1,7438:19888154,14735027:260239 -k1,7438:20799822,14735027:260240 -k1,7438:22474328,14735027:260239 -k1,7438:23090427,14735027:260239 -k1,7438:24740030,14735027:260240 -k1,7438:26876565,14735027:260239 -k1,7438:28404270,14735027:260239 -k1,7438:29020369,14735027:260239 -k1,7438:30274135,14735027:260240 -k1,7438:31193666,14735027:260239 -k1,7438:32583029,14735027:0 -) -(1,7439:6630773,15576515:25952256,513147,134348 -k1,7438:9200746,15576515:189705 -k1,7438:11245119,15576515:189704 -k1,7438:12244194,15576515:189705 -k1,7438:13452984,15576515:189705 -k1,7438:15435099,15576515:189705 -k1,7438:16284095,15576515:189704 -k1,7438:16829660,15576515:189705 -k1,7438:19087026,15576515:189705 -k1,7438:20743427,15576515:189705 -k1,7438:21399092,15576515:189704 -k1,7438:22607882,15576515:189705 -k1,7438:24331785,15576515:189705 -k1,7438:25513050,15576515:189705 -k1,7438:26769025,15576515:189704 -k1,7438:29466137,15576515:189705 -k1,7438:32583029,15576515:0 -) -(1,7439:6630773,16418003:25952256,513147,7863 -g1,7438:7481430,16418003 -g1,7438:9574649,16418003 -k1,7439:32583029,16418003:21042300 -g1,7439:32583029,16418003 -) -(1,7441:6630773,17259491:25952256,513147,7863 -h1,7440:6630773,17259491:983040,0,0 -k1,7440:8757416,17259491:190054 -k1,7440:10876851,17259491:190055 -k1,7440:11422765,17259491:190054 -k1,7440:13002182,17259491:190054 -k1,7440:15068532,17259491:190054 -k1,7440:16652538,17259491:190055 -k1,7440:17739125,17259491:190054 -k1,7440:19463377,17259491:190054 -k1,7440:20844876,17259491:190054 -k1,7440:22689715,17259491:190055 -k1,7440:25766630,17259491:190054 -k1,7440:26584519,17259491:190054 -k1,7440:27793658,17259491:190054 -k1,7440:29350794,17259491:190055 -k1,7440:30200140,17259491:190054 -k1,7441:32583029,17259491:0 -) -(1,7441:6630773,18100979:25952256,505283,134348 -(1,7440:6630773,18100979:0,414482,115847 -r1,7503:6989039,18100979:358266,530329,115847 -k1,7440:6630773,18100979:-358266 -) -(1,7440:6630773,18100979:358266,414482,115847 -k1,7440:6630773,18100979:3277 -h1,7440:6985762,18100979:0,411205,112570 -) -k1,7440:7360439,18100979:197730 -k1,7440:8426520,18100979:197729 -k1,7440:9826180,18100979:197730 -k1,7440:10833280,18100979:197730 -k1,7440:11445851,18100979:197728 -k1,7440:12295009,18100979:197730 -k1,7440:16809596,18100979:197730 -k1,7440:19159528,18100979:197730 -(1,7440:19159528,18100979:0,452978,115847 -r1,7503:23034912,18100979:3875384,568825,115847 -k1,7440:19159528,18100979:-3875384 -) -(1,7440:19159528,18100979:3875384,452978,115847 -g1,7440:21624788,18100979 -h1,7440:23031635,18100979:0,411205,112570 -) -k1,7440:23232641,18100979:197729 -k1,7440:24191899,18100979:197730 -k1,7440:27396421,18100979:197730 -k1,7440:28052248,18100979:197730 -k1,7440:29904761,18100979:197729 -k1,7440:31858201,18100979:197730 -k1,7440:32583029,18100979:0 -) -(1,7441:6630773,18942467:25952256,513147,7863 -g1,7440:7516164,18942467 -g1,7440:8366821,18942467 -g1,7440:9406877,18942467 -g1,7440:10625191,18942467 -g1,7440:11720953,18942467 -k1,7441:32583029,18942467:19154208 -g1,7441:32583029,18942467 -) -v1,7443:6630773,20132933:0,393216,0 -(1,7447:6630773,20429155:25952256,689438,196608 -g1,7447:6630773,20429155 -g1,7447:6630773,20429155 -g1,7447:6434165,20429155 -(1,7447:6434165,20429155:0,689438,196608 -r1,7503:32779637,20429155:26345472,886046,196608 -k1,7447:6434165,20429155:-26345472 -) -(1,7447:6434165,20429155:26345472,689438,196608 -[1,7447:6630773,20429155:25952256,492830,0 -(1,7445:6630773,20346843:25952256,410518,82312 -(1,7444:6630773,20346843:0,0,0 -g1,7444:6630773,20346843 -g1,7444:6630773,20346843 -g1,7444:6303093,20346843 -(1,7444:6303093,20346843:0,0,0 -) -g1,7444:6630773,20346843 -) -g1,7445:8211502,20346843 -g1,7445:9159940,20346843 -g1,7445:13585980,20346843 -g1,7445:14218272,20346843 -g1,7445:15799002,20346843 -g1,7445:16747439,20346843 -g1,7445:17379731,20346843 -g1,7445:18960461,20346843 -g1,7445:19908899,20346843 -g1,7445:20857337,20346843 -g1,7445:21805775,20346843 -g1,7445:22754213,20346843 -g1,7445:24018797,20346843 -g1,7445:24651089,20346843 -g1,7445:25283381,20346843 -g1,7445:27496402,20346843 -h1,7445:29077130,20346843:0,0,0 -k1,7445:32583029,20346843:3505899 -g1,7445:32583029,20346843 -) -] -) -g1,7447:32583029,20429155 -g1,7447:6630773,20429155 -g1,7447:6630773,20429155 -g1,7447:32583029,20429155 -g1,7447:32583029,20429155 -) -h1,7447:6630773,20625763:0,0,0 -v1,7451:6630773,22340517:0,393216,0 -(1,7468:6630773,29891821:25952256,7944520,196608 -g1,7468:6630773,29891821 -g1,7468:6630773,29891821 -g1,7468:6434165,29891821 -(1,7468:6434165,29891821:0,7944520,196608 -r1,7503:32779637,29891821:26345472,8141128,196608 -k1,7468:6434165,29891821:-26345472 -) -(1,7468:6434165,29891821:26345472,7944520,196608 -[1,7468:6630773,29891821:25952256,7747912,0 -(1,7453:6630773,22554427:25952256,410518,101187 -(1,7452:6630773,22554427:0,0,0 -g1,7452:6630773,22554427 -g1,7452:6630773,22554427 -g1,7452:6303093,22554427 -(1,7452:6303093,22554427:0,0,0 -) -g1,7452:6630773,22554427 -) -k1,7453:6630773,22554427:0 -g1,7453:10424521,22554427 -h1,7453:12637541,22554427:0,0,0 -k1,7453:32583029,22554427:19945488 -g1,7453:32583029,22554427 -) -(1,7467:6630773,23220605:25952256,410518,31456 -(1,7455:6630773,23220605:0,0,0 -g1,7455:6630773,23220605 -g1,7455:6630773,23220605 -g1,7455:6303093,23220605 -(1,7455:6303093,23220605:0,0,0 -) -g1,7455:6630773,23220605 -) -g1,7467:7579210,23220605 -h1,7467:8211501,23220605:0,0,0 -k1,7467:32583029,23220605:24371528 -g1,7467:32583029,23220605 -) -(1,7467:6630773,23886783:25952256,388497,0 -h1,7467:6630773,23886783:0,0,0 -g1,7467:7579210,23886783 -g1,7467:7895356,23886783 -g1,7467:8211502,23886783 -g1,7467:9159939,23886783 -g1,7467:10108376,23886783 -h1,7467:10424522,23886783:0,0,0 -k1,7467:32583030,23886783:22158508 -g1,7467:32583030,23886783 -) -(1,7467:6630773,24552961:25952256,388497,4718 -h1,7467:6630773,24552961:0,0,0 -g1,7467:7579210,24552961 -g1,7467:8211502,24552961 -g1,7467:8527648,24552961 -g1,7467:9159940,24552961 -g1,7467:9476086,24552961 -g1,7467:10108378,24552961 -h1,7467:10424524,24552961:0,0,0 -k1,7467:32583028,24552961:22158504 -g1,7467:32583028,24552961 -) -(1,7467:6630773,25219139:25952256,388497,9436 -h1,7467:6630773,25219139:0,0,0 -g1,7467:7579210,25219139 -g1,7467:8211502,25219139 -g1,7467:8527648,25219139 -g1,7467:9159940,25219139 -g1,7467:9476086,25219139 -g1,7467:10108378,25219139 -h1,7467:10424524,25219139:0,0,0 -k1,7467:32583028,25219139:22158504 -g1,7467:32583028,25219139 -) -(1,7467:6630773,25885317:25952256,388497,9436 -h1,7467:6630773,25885317:0,0,0 -g1,7467:7579210,25885317 -g1,7467:8211502,25885317 -g1,7467:8527648,25885317 -g1,7467:9159940,25885317 -g1,7467:9476086,25885317 -g1,7467:10108378,25885317 -h1,7467:10424524,25885317:0,0,0 -k1,7467:32583028,25885317:22158504 -g1,7467:32583028,25885317 -) -(1,7467:6630773,26551495:25952256,379060,0 -h1,7467:6630773,26551495:0,0,0 -h1,7467:7263064,26551495:0,0,0 -k1,7467:32583028,26551495:25319964 -g1,7467:32583028,26551495 -) -(1,7467:6630773,27217673:25952256,410518,31456 -h1,7467:6630773,27217673:0,0,0 -g1,7467:7579210,27217673 -h1,7467:8211501,27217673:0,0,0 -k1,7467:32583029,27217673:24371528 -g1,7467:32583029,27217673 -) -(1,7467:6630773,27883851:25952256,388497,0 -h1,7467:6630773,27883851:0,0,0 -g1,7467:7579210,27883851 -g1,7467:7895356,27883851 -g1,7467:8211502,27883851 -g1,7467:9159939,27883851 -g1,7467:10108376,27883851 -h1,7467:10424522,27883851:0,0,0 -k1,7467:32583030,27883851:22158508 -g1,7467:32583030,27883851 -) -(1,7467:6630773,28550029:25952256,404226,9436 -h1,7467:6630773,28550029:0,0,0 -g1,7467:7579210,28550029 -g1,7467:8211502,28550029 -g1,7467:8527648,28550029 -g1,7467:9159940,28550029 -g1,7467:9476086,28550029 -g1,7467:10108378,28550029 -h1,7467:10424524,28550029:0,0,0 -k1,7467:32583028,28550029:22158504 -g1,7467:32583028,28550029 -) -(1,7467:6630773,29216207:25952256,404226,6290 -h1,7467:6630773,29216207:0,0,0 -g1,7467:7579210,29216207 -g1,7467:8211502,29216207 -g1,7467:8527648,29216207 -g1,7467:9159940,29216207 -g1,7467:9476086,29216207 -g1,7467:10108378,29216207 -h1,7467:10424524,29216207:0,0,0 -k1,7467:32583028,29216207:22158504 -g1,7467:32583028,29216207 -) -(1,7467:6630773,29882385:25952256,404226,9436 -h1,7467:6630773,29882385:0,0,0 -g1,7467:7579210,29882385 -g1,7467:8211502,29882385 -g1,7467:8527648,29882385 -g1,7467:9159940,29882385 -g1,7467:9476086,29882385 -g1,7467:10108378,29882385 -h1,7467:10424524,29882385:0,0,0 -k1,7467:32583028,29882385:22158504 -g1,7467:32583028,29882385 -) -] -) -g1,7468:32583029,29891821 -g1,7468:6630773,29891821 -g1,7468:6630773,29891821 -g1,7468:32583029,29891821 -g1,7468:32583029,29891821 -) -h1,7468:6630773,30088429:0,0,0 -(1,7472:6630773,31454205:25952256,513147,134348 -h1,7471:6630773,31454205:983040,0,0 -g1,7471:9604796,31454205 -g1,7471:12347477,31454205 -(1,7471:12347477,31454205:0,414482,115847 -r1,7503:13409167,31454205:1061690,530329,115847 -k1,7471:12347477,31454205:-1061690 -) -(1,7471:12347477,31454205:1061690,414482,115847 -g1,7471:12702466,31454205 -g1,7471:13054178,31454205 -h1,7471:13405890,31454205:0,411205,112570 -) -g1,7471:13608396,31454205 -g1,7471:14459053,31454205 -g1,7471:17189938,31454205 -g1,7471:18408252,31454205 -k1,7472:32583029,31454205:11118178 -g1,7472:32583029,31454205 -) -v1,7474:6630773,32644671:0,393216,0 -(1,7491:6630773,40195975:25952256,7944520,196608 -g1,7491:6630773,40195975 -g1,7491:6630773,40195975 -g1,7491:6434165,40195975 -(1,7491:6434165,40195975:0,7944520,196608 -r1,7503:32779637,40195975:26345472,8141128,196608 -k1,7491:6434165,40195975:-26345472 -) -(1,7491:6434165,40195975:26345472,7944520,196608 -[1,7491:6630773,40195975:25952256,7747912,0 -(1,7476:6630773,32858581:25952256,410518,101187 -(1,7475:6630773,32858581:0,0,0 -g1,7475:6630773,32858581 -g1,7475:6630773,32858581 -g1,7475:6303093,32858581 -(1,7475:6303093,32858581:0,0,0 -) -g1,7475:6630773,32858581 -) -k1,7476:6630773,32858581:0 -g1,7476:10424521,32858581 -g1,7476:11056813,32858581 -h1,7476:11689104,32858581:0,0,0 -k1,7476:32583028,32858581:20893924 -g1,7476:32583028,32858581 -) -(1,7490:6630773,33524759:25952256,410518,31456 -(1,7478:6630773,33524759:0,0,0 -g1,7478:6630773,33524759 -g1,7478:6630773,33524759 -g1,7478:6303093,33524759 -(1,7478:6303093,33524759:0,0,0 -) -g1,7478:6630773,33524759 -) -g1,7490:7579210,33524759 -h1,7490:8211501,33524759:0,0,0 -k1,7490:32583029,33524759:24371528 -g1,7490:32583029,33524759 -) -(1,7490:6630773,34190937:25952256,388497,0 -h1,7490:6630773,34190937:0,0,0 -g1,7490:7579210,34190937 -g1,7490:7895356,34190937 -g1,7490:8211502,34190937 -g1,7490:9159939,34190937 -g1,7490:10108376,34190937 -h1,7490:10424522,34190937:0,0,0 -k1,7490:32583030,34190937:22158508 -g1,7490:32583030,34190937 -) -(1,7490:6630773,34857115:25952256,388497,4718 -h1,7490:6630773,34857115:0,0,0 -g1,7490:7579210,34857115 -g1,7490:8211502,34857115 -g1,7490:8527648,34857115 -g1,7490:9159940,34857115 -g1,7490:9476086,34857115 -g1,7490:10108378,34857115 -h1,7490:10424524,34857115:0,0,0 -k1,7490:32583028,34857115:22158504 -g1,7490:32583028,34857115 -) -(1,7490:6630773,35523293:25952256,388497,9436 -h1,7490:6630773,35523293:0,0,0 -g1,7490:7579210,35523293 -g1,7490:8211502,35523293 -g1,7490:8527648,35523293 -g1,7490:9159940,35523293 -g1,7490:9476086,35523293 -g1,7490:10108378,35523293 -h1,7490:10424524,35523293:0,0,0 -k1,7490:32583028,35523293:22158504 -g1,7490:32583028,35523293 -) -(1,7490:6630773,36189471:25952256,388497,9436 -h1,7490:6630773,36189471:0,0,0 -g1,7490:7579210,36189471 -g1,7490:8211502,36189471 -g1,7490:8527648,36189471 -g1,7490:9159940,36189471 -g1,7490:9476086,36189471 -g1,7490:10108378,36189471 -h1,7490:10424524,36189471:0,0,0 -k1,7490:32583028,36189471:22158504 -g1,7490:32583028,36189471 -) -(1,7490:6630773,36855649:25952256,379060,0 -h1,7490:6630773,36855649:0,0,0 -h1,7490:7263064,36855649:0,0,0 -k1,7490:32583028,36855649:25319964 -g1,7490:32583028,36855649 -) -(1,7490:6630773,37521827:25952256,410518,31456 -h1,7490:6630773,37521827:0,0,0 -g1,7490:7579210,37521827 -h1,7490:8211501,37521827:0,0,0 -k1,7490:32583029,37521827:24371528 -g1,7490:32583029,37521827 -) -(1,7490:6630773,38188005:25952256,388497,0 -h1,7490:6630773,38188005:0,0,0 -g1,7490:7579210,38188005 -g1,7490:7895356,38188005 -g1,7490:8211502,38188005 -g1,7490:9159939,38188005 -g1,7490:10108376,38188005 -h1,7490:10424522,38188005:0,0,0 -k1,7490:32583030,38188005:22158508 -g1,7490:32583030,38188005 -) -(1,7490:6630773,38854183:25952256,404226,9436 -h1,7490:6630773,38854183:0,0,0 -g1,7490:7579210,38854183 -g1,7490:8211502,38854183 -g1,7490:8527648,38854183 -g1,7490:9159940,38854183 -g1,7490:9476086,38854183 -g1,7490:10108378,38854183 -h1,7490:10424524,38854183:0,0,0 -k1,7490:32583028,38854183:22158504 -g1,7490:32583028,38854183 -) -(1,7490:6630773,39520361:25952256,404226,6290 -h1,7490:6630773,39520361:0,0,0 -g1,7490:7579210,39520361 -g1,7490:8211502,39520361 -g1,7490:8527648,39520361 -g1,7490:9159940,39520361 -g1,7490:9476086,39520361 -g1,7490:10108378,39520361 -h1,7490:10424524,39520361:0,0,0 -k1,7490:32583028,39520361:22158504 -g1,7490:32583028,39520361 -) -(1,7490:6630773,40186539:25952256,404226,9436 -h1,7490:6630773,40186539:0,0,0 -g1,7490:7579210,40186539 -g1,7490:8211502,40186539 -g1,7490:8527648,40186539 -g1,7490:9159940,40186539 -g1,7490:9476086,40186539 -g1,7490:10108378,40186539 -h1,7490:10424524,40186539:0,0,0 -k1,7490:32583028,40186539:22158504 -g1,7490:32583028,40186539 -) -] -) -g1,7491:32583029,40195975 -g1,7491:6630773,40195975 -g1,7491:6630773,40195975 -g1,7491:32583029,40195975 -g1,7491:32583029,40195975 -) -h1,7491:6630773,40392583:0,0,0 -(1,7495:6630773,41758359:25952256,505283,134348 -h1,7494:6630773,41758359:983040,0,0 -g1,7494:10602910,41758359 -(1,7494:10602910,41758359:0,452978,115847 -r1,7503:13774870,41758359:3171960,568825,115847 -k1,7494:10602910,41758359:-3171960 -) -(1,7494:10602910,41758359:3171960,452978,115847 -k1,7494:10602910,41758359:3277 -h1,7494:13771593,41758359:0,411205,112570 -) -g1,7494:13974099,41758359 -g1,7494:15277610,41758359 -g1,7494:16224605,41758359 -g1,7494:17937060,41758359 -g1,7494:18787717,41758359 -g1,7494:21293158,41758359 -g1,7494:24153804,41758359 -g1,7494:25114561,41758359 -(1,7494:25114561,41758359:0,452978,115847 -r1,7503:27583098,41758359:2468537,568825,115847 -k1,7494:25114561,41758359:-2468537 -) -(1,7494:25114561,41758359:2468537,452978,115847 -k1,7494:25114561,41758359:3277 -h1,7494:27579821,41758359:0,411205,112570 -) -k1,7495:32583029,41758359:4826261 -g1,7495:32583029,41758359 -) -v1,7497:6630773,43124135:0,393216,0 -(1,7498:6630773,45303532:25952256,2572613,0 -g1,7498:6630773,45303532 -g1,7498:6303093,45303532 -r1,7503:6401397,45303532:98304,2572613,0 -g1,7498:6600626,45303532 -g1,7498:6797234,45303532 -[1,7498:6797234,45303532:25785795,2572613,0 -(1,7498:6797234,43486208:25785795,755289,196608 -(1,7497:6797234,43486208:0,755289,196608 -r1,7503:8134168,43486208:1336934,951897,196608 -k1,7497:6797234,43486208:-1336934 -) -(1,7497:6797234,43486208:1336934,755289,196608 -) -k1,7497:8303448,43486208:169280 -k1,7497:8631128,43486208:327680 -(1,7497:8631128,43486208:0,452978,115847 -r1,7503:11099665,43486208:2468537,568825,115847 -k1,7497:8631128,43486208:-2468537 -) -(1,7497:8631128,43486208:2468537,452978,115847 -k1,7497:8631128,43486208:3277 -h1,7497:11096388,43486208:0,411205,112570 -) -k1,7497:11268945,43486208:169280 -k1,7497:11969723,43486208:169281 -k1,7497:15586852,43486208:169280 -k1,7497:17269358,43486208:169280 -k1,7497:18054676,43486208:169280 -k1,7497:22211822,43486208:169280 -k1,7497:23775053,43486208:169280 -k1,7497:25707908,43486208:169281 -k1,7497:28902985,43486208:169280 -k1,7497:30304342,43486208:169280 -k1,7497:32583029,43486208:0 -) -(1,7498:6797234,44327696:25785795,505283,134348 -h1,7497:7767822,44327696:0,0,0 -k1,7497:8027126,44327696:259304 -k1,7497:9095800,44327696:259304 -k1,7497:10853257,44327696:259304 -h1,7497:12048634,44327696:0,0,0 -k1,7497:12515032,44327696:259304 -k1,7497:13425764,44327696:259304 -k1,7497:16472970,44327696:259304 -k1,7497:18624954,44327696:259304 -k1,7497:19567143,44327696:259304 -k1,7497:22970864,44327696:259304 -k1,7497:26911981,44327696:259304 -k1,7497:30105987,44327696:259304 -k1,7497:30981329,44327696:259304 -k1,7497:32583029,44327696:0 -) -(1,7498:6797234,45169184:25785795,513147,134348 -g1,7497:8693845,45169184 -g1,7497:9351171,45169184 -g1,7497:10081897,45169184 -g1,7497:12694162,45169184 -g1,7497:13544819,45169184 -g1,7497:14836533,45169184 -(1,7497:14836533,45169184:0,452978,122846 -r1,7503:18711917,45169184:3875384,575824,122846 -k1,7497:14836533,45169184:-3875384 -) -(1,7497:14836533,45169184:3875384,452978,122846 -k1,7497:14836533,45169184:3277 -h1,7497:18708640,45169184:0,411205,112570 -) -g1,7497:18911146,45169184 -g1,7497:20058026,45169184 -g1,7497:23688065,45169184 -g1,7497:25380860,45169184 -k1,7498:32583029,45169184:3520356 -g1,7498:32583029,45169184 -) -] -g1,7498:32583029,45303532 -) -h1,7498:6630773,45303532:0,0,0 -] -(1,7503:32583029,45706769:0,0,0 -g1,7503:32583029,45706769 -) -) -] -(1,7503:6630773,47279633:25952256,0,0 -h1,7503:6630773,47279633:25952256,0,0 -) -] -(1,7503:4262630,4025873:0,0,0 -[1,7503:-473656,4025873:0,0,0 -(1,7503:-473656,-710413:0,0,0 -(1,7503:-473656,-710413:0,0,0 -g1,7503:-473656,-710413 -) -g1,7503:-473656,-710413 +k1,6148:62087500,1915420:25935872 +g1,6148:62087500,1915420 ) ] ) -] -!25652 -}122 -Input:993:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:994:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:995:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:996:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:997:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:998:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:999:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1000:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1001:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!851 -{123 -[1,7586:4262630,47279633:28320399,43253760,0 -(1,7586:4262630,4025873:0,0,0 -[1,7586:-473656,4025873:0,0,0 -(1,7586:-473656,-710413:0,0,0 -(1,7586:-473656,-644877:0,0,0 -k1,7586:-473656,-644877:-65536 +g1,6148:36675916,2439708 +(1,6148:36675916,2439708:1179648,16384,0 +r1,6493:37855564,2439708:1179648,16384,0 ) -(1,7586:-473656,4736287:0,0,0 -k1,7586:-473656,4736287:5209943 ) -g1,7586:-473656,-710413 +k1,6493:3078556,2439708:-34777008 ) ] +[1,6493:3078558,4812305:0,0,0 +(1,6493:3078558,49800853:0,16384,2228224 +k1,6493:1358238,49800853:-1720320 +(1,6148:1358238,49800853:1720320,16384,2228224 +(1,6148:1358238,49800853:1179648,16384,0 +r1,6493:2537886,49800853:1179648,16384,0 ) -[1,7586:6630773,47279633:25952256,43253760,0 -[1,7586:6630773,4812305:25952256,786432,0 -(1,7586:6630773,4812305:25952256,505283,11795 -(1,7586:6630773,4812305:25952256,505283,11795 -g1,7586:3078558,4812305 -[1,7586:3078558,4812305:0,0,0 -(1,7586:3078558,2439708:0,1703936,0 -k1,7586:1358238,2439708:-1720320 -(1,5950:1358238,2439708:1720320,1703936,0 -(1,5950:1358238,2439708:1179648,16384,0 -r1,7586:2537886,2439708:1179648,16384,0 -) -g1,5950:3062174,2439708 -(1,5950:3062174,2439708:16384,1703936,0 -[1,5950:3062174,2439708:25952256,1703936,0 -(1,5950:3062174,1915420:25952256,1179648,0 -(1,5950:3062174,1915420:16384,1179648,0 -r1,7586:3078558,1915420:16384,1179648,0 +g1,6148:3062174,49800853 +(1,6148:3062174,52029077:16384,1703936,0 +[1,6148:3062174,52029077:25952256,1703936,0 +(1,6148:3062174,51504789:25952256,1179648,0 +(1,6148:3062174,51504789:16384,1179648,0 +r1,6493:3078558,51504789:16384,1179648,0 ) -k1,5950:29014430,1915420:25935872 -g1,5950:29014430,1915420 +k1,6148:29014430,51504789:25935872 +g1,6148:29014430,51504789 ) ] ) ) ) ] -[1,7586:3078558,4812305:0,0,0 -(1,7586:3078558,2439708:0,1703936,0 -g1,7586:29030814,2439708 -g1,7586:36135244,2439708 -(1,5950:36135244,2439708:1720320,1703936,0 -(1,5950:36135244,2439708:16384,1703936,0 -[1,5950:36135244,2439708:25952256,1703936,0 -(1,5950:36135244,1915420:25952256,1179648,0 -(1,5950:36135244,1915420:16384,1179648,0 -r1,7586:36151628,1915420:16384,1179648,0 +[1,6493:3078558,4812305:0,0,0 +(1,6493:3078558,49800853:0,16384,2228224 +g1,6493:29030814,49800853 +g1,6493:36135244,49800853 +(1,6148:36135244,49800853:1720320,16384,2228224 +(1,6148:36135244,52029077:16384,1703936,0 +[1,6148:36135244,52029077:25952256,1703936,0 +(1,6148:36135244,51504789:25952256,1179648,0 +(1,6148:36135244,51504789:16384,1179648,0 +r1,6493:36151628,51504789:16384,1179648,0 ) -k1,5950:62087500,1915420:25935872 -g1,5950:62087500,1915420 +k1,6148:62087500,51504789:25935872 +g1,6148:62087500,51504789 ) ] ) -g1,5950:36675916,2439708 -(1,5950:36675916,2439708:1179648,16384,0 -r1,7586:37855564,2439708:1179648,16384,0 +g1,6148:36675916,49800853 +(1,6148:36675916,49800853:1179648,16384,0 +r1,6493:37855564,49800853:1179648,16384,0 ) ) -k1,7586:3078556,2439708:-34777008 +k1,6493:3078556,49800853:-34777008 ) ] -[1,7586:3078558,4812305:0,0,0 -(1,7586:3078558,49800853:0,16384,2228224 -k1,7586:1358238,49800853:-1720320 -(1,5950:1358238,49800853:1720320,16384,2228224 -(1,5950:1358238,49800853:1179648,16384,0 -r1,7586:2537886,49800853:1179648,16384,0 +g1,6493:6630773,4812305 +g1,6493:6630773,4812305 +g1,6493:8203637,4812305 +k1,6493:31786111,4812305:23582474 +) +) +] +[1,6493:6630773,45706769:25952256,40108032,0 +(1,6493:6630773,45706769:25952256,40108032,0 +(1,6493:6630773,45706769:0,0,0 +g1,6493:6630773,45706769 +) +[1,6493:6630773,45706769:25952256,40108032,0 +v1,6397:6630773,6254097:0,393216,0 +(1,6404:6630773,7377677:25952256,1516796,196608 +g1,6404:6630773,7377677 +g1,6404:6630773,7377677 +g1,6404:6434165,7377677 +(1,6404:6434165,7377677:0,1516796,196608 +r1,6493:32779637,7377677:26345472,1713404,196608 +k1,6404:6434165,7377677:-26345472 +) +(1,6404:6434165,7377677:26345472,1516796,196608 +[1,6404:6630773,7377677:25952256,1320188,0 +(1,6399:6630773,6481928:25952256,424439,79822 +(1,6398:6630773,6481928:0,0,0 +g1,6398:6630773,6481928 +g1,6398:6630773,6481928 +g1,6398:6303093,6481928 +(1,6398:6303093,6481928:0,0,0 +) +g1,6398:6630773,6481928 +) +h1,6399:11278128,6481928:0,0,0 +k1,6399:32583028,6481928:21304900 +g1,6399:32583028,6481928 +) +(1,6403:6630773,7297855:25952256,424439,79822 +(1,6401:6630773,7297855:0,0,0 +g1,6401:6630773,7297855 +g1,6401:6630773,7297855 +g1,6401:6303093,7297855 +(1,6401:6303093,7297855:0,0,0 +) +g1,6401:6630773,7297855 +) +g1,6403:7626635,7297855 +g1,6403:8954451,7297855 +h1,6403:9286405,7297855:0,0,0 +k1,6403:32583029,7297855:23296624 +g1,6403:32583029,7297855 +) +] +) +g1,6404:32583029,7377677 +g1,6404:6630773,7377677 +g1,6404:6630773,7377677 +g1,6404:32583029,7377677 +g1,6404:32583029,7377677 +) +h1,6404:6630773,7574285:0,0,0 +v1,6408:6630773,8439365:0,393216,0 +(1,6433:6630773,17637417:25952256,9591268,0 +g1,6433:6630773,17637417 +g1,6433:6237557,17637417 +r1,6493:6368629,17637417:131072,9591268,0 +g1,6433:6567858,17637417 +g1,6433:6764466,17637417 +[1,6433:6764466,17637417:25818563,9591268,0 +(1,6409:6764466,8711842:25818563,665693,196608 +(1,6408:6764466,8711842:0,665693,196608 +r1,6493:8010564,8711842:1246098,862301,196608 +k1,6408:6764466,8711842:-1246098 +) +(1,6408:6764466,8711842:1246098,665693,196608 +) +k1,6408:8207852,8711842:197288 +k1,6408:9525781,8711842:327680 +k1,6408:12914672,8711842:197288 +k1,6408:14216242,8711842:197288 +k1,6408:15161296,8711842:197288 +k1,6408:16871811,8711842:197289 +k1,6408:17878469,8711842:197288 +k1,6408:19094842,8711842:197288 +k1,6408:20242402,8711842:197288 +k1,6408:21125852,8711842:197288 +k1,6408:22601747,8711842:197288 +k1,6408:23485197,8711842:197288 +k1,6408:24491855,8711842:197288 +k1,6408:25708229,8711842:197289 +k1,6408:26939020,8711842:197288 +k1,6408:27795600,8711842:197288 +k1,6408:28763591,8711842:197288 +k1,6408:32583029,8711842:0 +) +(1,6409:6764466,9576922:25818563,513147,134348 +k1,6408:8120529,9576922:164618 +k1,6408:9608974,9576922:164618 +k1,6408:10877875,9576922:164619 +k1,6408:11790259,9576922:164618 +k1,6408:14134604,9576922:164618 +k1,6408:15195099,9576922:164618 +k1,6408:16107484,9576922:164619 +k1,6408:16931394,9576922:164618 +k1,6408:19109278,9576922:164618 +k1,6408:20867732,9576922:164618 +k1,6408:22229038,9576922:164619 +k1,6408:25055073,9576922:164618 +k1,6408:27088122,9576922:164618 +k1,6408:29298774,9576922:164618 +k1,6408:30555878,9576922:164619 +k1,6408:31379788,9576922:164618 +k1,6408:32583029,9576922:0 +) +(1,6409:6764466,10442002:25818563,505283,126483 +g1,6408:7615123,10442002 +g1,6408:9456684,10442002 +g1,6408:10011773,10442002 +g1,6408:11204528,10442002 +g1,6408:12759042,10442002 +g1,6408:13719799,10442002 +k1,6409:32583030,10442002:17334276 +g1,6409:32583030,10442002 +) +v1,6411:6764466,11126857:0,393216,0 +(1,6418:6764466,13495681:25818563,2762040,196608 +g1,6418:6764466,13495681 +g1,6418:6764466,13495681 +g1,6418:6567858,13495681 +(1,6418:6567858,13495681:0,2762040,196608 +r1,6493:32779637,13495681:26211779,2958648,196608 +k1,6418:6567857,13495681:-26211780 +) +(1,6418:6567858,13495681:26211779,2762040,196608 +[1,6418:6764466,13495681:25818563,2565432,0 +(1,6413:6764466,11354688:25818563,424439,79822 +(1,6412:6764466,11354688:0,0,0 +g1,6412:6764466,11354688 +g1,6412:6764466,11354688 +g1,6412:6436786,11354688 +(1,6412:6436786,11354688:0,0,0 +) +g1,6412:6764466,11354688 +) +g1,6413:9088144,11354688 +g1,6413:10084006,11354688 +k1,6413:10084006,11354688:0 +h1,6413:12075730,11354688:0,0,0 +k1,6413:32583030,11354688:20507300 +g1,6413:32583030,11354688 +) +(1,6414:6764466,12039543:25818563,424439,79822 +h1,6414:6764466,12039543:0,0,0 +g1,6414:11411821,12039543 +g1,6414:12407683,12039543 +h1,6414:13403545,12039543:0,0,0 +k1,6414:32583029,12039543:19179484 +g1,6414:32583029,12039543 +) +(1,6415:6764466,12724398:25818563,424439,106246 +h1,6415:6764466,12724398:0,0,0 +g1,6415:11411821,12724398 +g1,6415:12407683,12724398 +h1,6415:13735499,12724398:0,0,0 +k1,6415:32583029,12724398:18847530 +g1,6415:32583029,12724398 +) +(1,6416:6764466,13409253:25818563,424439,86428 +h1,6416:6764466,13409253:0,0,0 +g1,6416:11411821,13409253 +g1,6416:12407683,13409253 +g1,6416:15063315,13409253 +h1,6416:17055039,13409253:0,0,0 +k1,6416:32583029,13409253:15527990 +g1,6416:32583029,13409253 +) +] +) +g1,6418:32583029,13495681 +g1,6418:6764466,13495681 +g1,6418:6764466,13495681 +g1,6418:32583029,13495681 +g1,6418:32583029,13495681 +) +h1,6418:6764466,13692289:0,0,0 +(1,6422:6764466,14557369:25818563,513147,126483 +h1,6421:6764466,14557369:983040,0,0 +g1,6421:10829008,14557369 +(1,6421:10829008,14557369:0,452978,115847 +r1,6493:12945833,14557369:2116825,568825,115847 +k1,6421:10829008,14557369:-2116825 +) +(1,6421:10829008,14557369:2116825,452978,115847 +k1,6421:10829008,14557369:3277 +h1,6421:12942556,14557369:0,411205,112570 +) +g1,6421:13145062,14557369 +g1,6421:13995719,14557369 +(1,6421:13995719,14557369:0,452978,115847 +r1,6493:16112544,14557369:2116825,568825,115847 +k1,6421:13995719,14557369:-2116825 +) +(1,6421:13995719,14557369:2116825,452978,115847 +k1,6421:13995719,14557369:3277 +h1,6421:16109267,14557369:0,411205,112570 +) +g1,6421:16485443,14557369 +g1,6421:18197898,14557369 +g1,6421:19344778,14557369 +g1,6421:20563092,14557369 +g1,6421:23754040,14557369 +k1,6422:32583029,14557369:6799994 +g1,6422:32583029,14557369 +) +v1,6424:6764466,15242224:0,393216,0 +(1,6428:6764466,15576301:25818563,727293,196608 +g1,6428:6764466,15576301 +g1,6428:6764466,15576301 +g1,6428:6567858,15576301 +(1,6428:6567858,15576301:0,727293,196608 +r1,6493:32779637,15576301:26211779,923901,196608 +k1,6428:6567857,15576301:-26211780 +) +(1,6428:6567858,15576301:26211779,727293,196608 +[1,6428:6764466,15576301:25818563,530685,0 +(1,6426:6764466,15470055:25818563,424439,106246 +(1,6425:6764466,15470055:0,0,0 +g1,6425:6764466,15470055 +g1,6425:6764466,15470055 +g1,6425:6436786,15470055 +(1,6425:6436786,15470055:0,0,0 +) +g1,6425:6764466,15470055 +) +g1,6426:11411821,15470055 +g1,6426:12407683,15470055 +h1,6426:16723084,15470055:0,0,0 +k1,6426:32583029,15470055:15859945 +g1,6426:32583029,15470055 +) +] +) +g1,6428:32583029,15576301 +g1,6428:6764466,15576301 +g1,6428:6764466,15576301 +g1,6428:32583029,15576301 +g1,6428:32583029,15576301 +) +h1,6428:6764466,15772909:0,0,0 +(1,6432:6764466,16637989:25818563,505283,134348 +h1,6431:6764466,16637989:983040,0,0 +k1,6431:10821143,16637989:191364 +k1,6431:12651562,16637989:191364 +k1,6431:14718566,16637989:191364 +k1,6431:16101376,16637989:191365 +k1,6431:17199103,16637989:191364 +k1,6431:18041895,16637989:191364 +k1,6431:21898032,16637989:191364 +k1,6431:23386354,16637989:191364 +(1,6431:23386354,16637989:0,452978,115847 +r1,6493:25503179,16637989:2116825,568825,115847 +k1,6431:23386354,16637989:-2116825 +) +(1,6431:23386354,16637989:2116825,452978,115847 +k1,6431:23386354,16637989:3277 +h1,6431:25499902,16637989:0,411205,112570 +) +k1,6431:25694543,16637989:191364 +k1,6431:26986913,16637989:191365 +k1,6431:29839694,16637989:191364 +k1,6431:30717220,16637989:191364 +k1,6431:31366681,16637989:191364 +k1,6431:32583029,16637989:0 +) +(1,6432:6764466,17503069:25818563,505283,134348 +g1,6431:8056180,17503069 +g1,6431:9541225,17503069 +g1,6431:12639767,17503069 +g1,6431:13490424,17503069 +g1,6431:16319613,17503069 +g1,6431:19089819,17503069 +g1,6431:19940476,17503069 +g1,6431:21158790,17503069 +g1,6431:24485397,17503069 +k1,6432:32583029,17503069:5855645 +g1,6432:32583029,17503069 +) +] +g1,6433:32583029,17637417 +) +h1,6433:6630773,17637417:0,0,0 +v1,6436:6630773,18502497:0,393216,0 +(1,6448:6630773,24329037:25952256,6219756,0 +g1,6448:6630773,24329037 +g1,6448:6237557,24329037 +r1,6493:6368629,24329037:131072,6219756,0 +g1,6448:6567858,24329037 +g1,6448:6764466,24329037 +[1,6448:6764466,24329037:25818563,6219756,0 +(1,6437:6764466,18863674:25818563,754393,260573 +(1,6436:6764466,18863674:0,754393,260573 +r1,6493:8010564,18863674:1246098,1014966,260573 +k1,6436:6764466,18863674:-1246098 +) +(1,6436:6764466,18863674:1246098,754393,260573 +) +k1,6436:8249009,18863674:238445 +k1,6436:8576689,18863674:327680 +k1,6436:12844287,18863674:238445 +(1,6436:12844287,18863674:0,452978,115847 +r1,6493:18829942,18863674:5985655,568825,115847 +k1,6436:12844287,18863674:-5985655 +) +(1,6436:12844287,18863674:5985655,452978,115847 +g1,6436:17419818,18863674 +h1,6436:18826665,18863674:0,411205,112570 +) +k1,6436:19068387,18863674:238445 +k1,6436:21647778,18863674:238445 +k1,6436:22905308,18863674:238445 +k1,6436:24824096,18863674:238445 +k1,6436:25675303,18863674:238445 +k1,6436:28527979,18863674:238445 +k1,6436:29164883,18863674:238445 +k1,6436:30019366,18863674:238445 +k1,6436:31276896,18863674:238445 +k1,6436:32583029,18863674:0 +) +(1,6437:6764466,19728754:25818563,513147,126483 +k1,6436:9535198,19728754:147326 +k1,6436:10341816,19728754:147326 +k1,6436:11508227,19728754:147326 +k1,6436:12822750,19728754:147327 +k1,6436:13740779,19728754:147326 +k1,6436:16962399,19728754:147326 +k1,6436:18394231,19728754:147326 +k1,6436:21386475,19728754:147326 +k1,6436:23490051,19728754:147326 +k1,6436:24385144,19728754:147327 +k1,6436:26819021,19728754:147326 +k1,6436:27652509,19728754:147326 +(1,6436:27652509,19728754:0,452978,115847 +r1,6493:32583029,19728754:4930520,568825,115847 +k1,6436:27652509,19728754:-4930520 +) +(1,6436:27652509,19728754:4930520,452978,115847 +k1,6436:27652509,19728754:3277 +h1,6436:32579752,19728754:0,411205,112570 +) +k1,6436:32583029,19728754:0 +) +(1,6437:6764466,20593834:25818563,513147,134348 +k1,6436:8759054,20593834:259195 +k1,6436:10190688,20593834:259195 +k1,6436:14168396,20593834:259195 +k1,6436:15584301,20593834:259195 +k1,6436:17356722,20593834:259195 +k1,6436:20262261,20593834:259195 +k1,6436:21149290,20593834:259194 +k1,6436:23010185,20593834:259195 +k1,6436:24966762,20593834:259195 +k1,6436:28742619,20593834:259195 +k1,6436:30148039,20593834:259195 +k1,6436:31426319,20593834:259195 +k1,6436:32583029,20593834:0 +) +(1,6437:6764466,21458914:25818563,505283,134348 +k1,6436:8881279,21458914:248382 +k1,6436:10262122,21458914:248381 +k1,6436:11258270,21458914:248382 +k1,6436:13929517,21458914:248381 +k1,6436:14939427,21458914:248382 +k1,6436:17691939,21458914:248381 +k1,6436:19891983,21458914:248382 +k1,6436:21582811,21458914:248381 +k1,6436:26034672,21458914:248382 +k1,6436:27355222,21458914:248381 +k1,6436:29341619,21458914:248382 +k1,6436:31130096,21458914:248381 +k1,6436:31994516,21458914:248382 +k1,6436:32583029,21458914:0 +) +(1,6437:6764466,22323994:25818563,505283,134348 +g1,6436:8343883,22323994 +g1,6436:9675574,22323994 +g1,6436:10941074,22323994 +g1,6436:13270878,22323994 +g1,6436:14240810,22323994 +g1,6436:16046982,22323994 +k1,6437:32583029,22323994:13657050 +g1,6437:32583029,22323994 +) +v1,6439:6764466,23008849:0,393216,0 +(1,6446:6764466,24132429:25818563,1516796,196608 +g1,6446:6764466,24132429 +g1,6446:6764466,24132429 +g1,6446:6567858,24132429 +(1,6446:6567858,24132429:0,1516796,196608 +r1,6493:32779637,24132429:26211779,1713404,196608 +k1,6446:6567857,24132429:-26211780 +) +(1,6446:6567858,24132429:26211779,1516796,196608 +[1,6446:6764466,24132429:25818563,1320188,0 +(1,6441:6764466,23236680:25818563,424439,86428 +(1,6440:6764466,23236680:0,0,0 +g1,6440:6764466,23236680 +g1,6440:6764466,23236680 +g1,6440:6436786,23236680 +(1,6440:6436786,23236680:0,0,0 +) +g1,6440:6764466,23236680 +) +k1,6441:6764466,23236680:0 +g1,6441:11079867,23236680 +h1,6441:12407683,23236680:0,0,0 +k1,6441:32583029,23236680:20175346 +g1,6441:32583029,23236680 +) +(1,6445:6764466,24052607:25818563,424439,79822 +(1,6443:6764466,24052607:0,0,0 +g1,6443:6764466,24052607 +g1,6443:6764466,24052607 +g1,6443:6436786,24052607 +(1,6443:6436786,24052607:0,0,0 +) +g1,6443:6764466,24052607 +) +g1,6445:7760328,24052607 +g1,6445:9088144,24052607 +h1,6445:9420098,24052607:0,0,0 +k1,6445:32583030,24052607:23162932 +g1,6445:32583030,24052607 +) +] +) +g1,6446:32583029,24132429 +g1,6446:6764466,24132429 +g1,6446:6764466,24132429 +g1,6446:32583029,24132429 +g1,6446:32583029,24132429 +) +h1,6446:6764466,24329037:0,0,0 +] +g1,6448:32583029,24329037 +) +h1,6448:6630773,24329037:0,0,0 +v1,6451:6630773,25194117:0,393216,0 +(1,6467:6630773,37167518:25952256,12366617,0 +g1,6467:6630773,37167518 +g1,6467:6237557,37167518 +r1,6493:6368629,37167518:131072,12366617,0 +g1,6467:6567858,37167518 +g1,6467:6764466,37167518 +[1,6467:6764466,37167518:25818563,12366617,0 +(1,6452:6764466,25502415:25818563,701514,196608 +(1,6451:6764466,25502415:0,701514,196608 +r1,6493:8010564,25502415:1246098,898122,196608 +k1,6451:6764466,25502415:-1246098 +) +(1,6451:6764466,25502415:1246098,701514,196608 +) +k1,6451:8226206,25502415:215642 +k1,6451:8553886,25502415:327680 +k1,6451:10316832,25502415:215641 +k1,6451:11218636,25502415:215642 +k1,6451:13721485,25502415:215642 +k1,6451:16318705,25502415:215642 +k1,6451:17150384,25502415:215641 +k1,6451:20538624,25502415:215642 +k1,6451:21900491,25502415:215642 +k1,6451:22743311,25502415:215641 +k1,6451:23950513,25502415:215642 +k1,6451:26020824,25502415:215642 +k1,6451:27045836,25502415:215642 +k1,6451:29915685,25502415:215641 +k1,6451:30782755,25502415:215642 +k1,6452:32583029,25502415:0 +) +(1,6452:6764466,26367495:25818563,505283,126483 +k1,6451:8012121,26367495:203666 +k1,6451:11276317,26367495:203665 +k1,6451:12873934,26367495:203666 +k1,6451:15731807,26367495:203665 +k1,6451:17973643,26367495:203666 +k1,6451:18790071,26367495:203666 +k1,6451:20445358,26367495:203665 +k1,6451:22400146,26367495:203666 +k1,6451:24478142,26367495:203666 +k1,6451:27336015,26367495:203665 +k1,6451:29260001,26367495:203666 +k1,6451:30146551,26367495:203665 +k1,6451:31563944,26367495:203666 +k1,6451:32583029,26367495:0 +) +(1,6452:6764466,27232575:25818563,513147,134348 +k1,6451:9697152,27232575:170343 +k1,6451:12490901,27232575:170343 +k1,6451:14568998,27232575:170344 +k1,6451:16149676,27232575:170343 +k1,6451:18505645,27232575:170343 +k1,6451:19623639,27232575:170343 +k1,6451:22629070,27232575:170344 +k1,6451:25059750,27232575:170343 +k1,6451:25889385,27232575:170343 +k1,6451:27383555,27232575:170343 +k1,6451:28169937,27232575:170344 +k1,6451:30002928,27232575:170343 +k1,6451:30934799,27232575:170343 +k1,6452:32583029,27232575:0 +) +(1,6452:6764466,28097655:25818563,513147,134348 +k1,6451:8740734,28097655:158955 +k1,6451:9918773,28097655:158954 +k1,6451:13112700,28097655:158955 +k1,6451:13899489,28097655:158954 +k1,6451:15552010,28097655:158955 +k1,6451:21271694,28097655:158954 +k1,6451:24170054,28097655:158955 +k1,6451:25090536,28097655:158954 +k1,6451:27863722,28097655:158955 +k1,6451:28554173,28097655:158954 +k1,6451:29779399,28097655:158955 +k1,6451:32583029,28097655:0 +) +(1,6452:6764466,28962735:25818563,505283,134348 +k1,6451:7622346,28962735:174995 +k1,6451:8410103,28962735:174995 +k1,6451:10080630,28962735:174995 +k1,6451:12877720,28962735:174995 +k1,6451:16117834,28962735:174995 +k1,6451:18043951,28962735:174995 +k1,6451:19238031,28962735:174995 +k1,6451:20580223,28962735:174996 +k1,6451:22332670,28962735:174995 +k1,6451:23269193,28962735:174995 +k1,6451:25195310,28962735:174995 +k1,6451:25998140,28962735:174995 +k1,6451:26761648,28962735:174995 +(1,6451:26761648,28962735:0,452978,115847 +r1,6493:28175049,28962735:1413401,568825,115847 +k1,6451:26761648,28962735:-1413401 +) +(1,6451:26761648,28962735:1413401,452978,115847 +k1,6451:26761648,28962735:3277 +h1,6451:28171772,28962735:0,411205,112570 +) +k1,6451:28350044,28962735:174995 +k1,6451:31478747,28962735:174995 +k1,6451:32583029,28962735:0 +) +(1,6452:6764466,29827815:25818563,513147,134348 +k1,6451:7692194,29827815:179962 +k1,6451:10671198,29827815:179961 +k1,6451:13409686,29827815:179962 +k1,6451:16764867,29827815:179962 +k1,6451:19545297,29827815:179961 +k1,6451:22493500,29827815:179962 +k1,6451:23324890,29827815:179962 +k1,6451:25986700,29827815:179962 +k1,6451:26940641,29827815:179961 +k1,6451:29403222,29827815:179962 +k1,6451:32583029,29827815:0 +) +(1,6452:6764466,30692895:25818563,513147,134348 +k1,6451:8208037,30692895:252126 +k1,6451:11378482,30692895:252127 +k1,6451:12246646,30692895:252126 +k1,6451:13517857,30692895:252126 +k1,6451:15985101,30692895:252127 +k1,6451:16896519,30692895:252126 +k1,6451:17504506,30692895:252127 +k1,6451:18923828,30692895:252126 +k1,6451:20643960,30692895:252126 +k1,6451:21915172,30692895:252127 +k1,6451:24781529,30692895:252126 +k1,6451:25692947,30692895:252126 +k1,6451:28898782,30692895:252127 +k1,6451:30342353,30692895:252126 +k1,6451:32583029,30692895:0 +) +(1,6452:6764466,31557975:25818563,513147,126483 +k1,6451:8873306,31557975:223369 +k1,6451:11720080,31557975:223368 +k1,6451:12474946,31557975:223369 +k1,6451:15154603,31557975:223368 +k1,6451:15990734,31557975:223369 +k1,6451:16975630,31557975:223368 +k1,6451:19625797,31557975:223369 +k1,6451:20796816,31557975:223368 +k1,6451:23964718,31557975:223369 +k1,6451:25551890,31557975:223368 +k1,6451:26794344,31557975:223369 +k1,6451:29852799,31557975:223368 +k1,6451:32583029,31557975:0 +) +(1,6452:6764466,32423055:25818563,505283,102891 +g1,6451:8160382,32423055 +g1,6451:10601598,32423055 +g1,6451:11416865,32423055 +g1,6451:14247365,32423055 +g1,6451:16674163,32423055 +k1,6452:32583029,32423055:14195100 +g1,6452:32583029,32423055 +) +v1,6454:6764466,33107910:0,393216,0 +(1,6465:6764466,36970910:25818563,4256216,196608 +g1,6465:6764466,36970910 +g1,6465:6764466,36970910 +g1,6465:6567858,36970910 +(1,6465:6567858,36970910:0,4256216,196608 +r1,6493:32779637,36970910:26211779,4452824,196608 +k1,6465:6567857,36970910:-26211780 +) +(1,6465:6567858,36970910:26211779,4256216,196608 +[1,6465:6764466,36970910:25818563,4059608,0 +(1,6456:6764466,33335741:25818563,424439,86428 +(1,6455:6764466,33335741:0,0,0 +g1,6455:6764466,33335741 +g1,6455:6764466,33335741 +g1,6455:6436786,33335741 +(1,6455:6436786,33335741:0,0,0 +) +g1,6455:6764466,33335741 +) +k1,6456:6764466,33335741:0 +g1,6456:9088144,33335741 +g1,6456:9752052,33335741 +g1,6456:10747914,33335741 +g1,6456:11411822,33335741 +g1,6456:12075730,33335741 +g1,6456:13071592,33335741 +g1,6456:13735500,33335741 +g1,6456:14399408,33335741 +k1,6456:14399408,33335741:0 +h1,6456:16391132,33335741:0,0,0 +k1,6456:32583029,33335741:16191897 +g1,6456:32583029,33335741 +) +(1,6464:6764466,34151668:25818563,431045,33029 +(1,6458:6764466,34151668:0,0,0 +g1,6458:6764466,34151668 +g1,6458:6764466,34151668 +g1,6458:6436786,34151668 +(1,6458:6436786,34151668:0,0,0 +) +g1,6458:6764466,34151668 +) +g1,6464:7760328,34151668 +h1,6464:8424236,34151668:0,0,0 +k1,6464:32583028,34151668:24158792 +g1,6464:32583028,34151668 +) +(1,6464:6764466,34836523:25818563,424439,79822 +h1,6464:6764466,34836523:0,0,0 +g1,6464:7760328,34836523 +g1,6464:9088144,34836523 +h1,6464:9420098,34836523:0,0,0 +k1,6464:32583030,34836523:23162932 +g1,6464:32583030,34836523 +) +(1,6464:6764466,35521378:25818563,398014,0 +h1,6464:6764466,35521378:0,0,0 +h1,6464:7428374,35521378:0,0,0 +k1,6464:32583030,35521378:25154656 +g1,6464:32583030,35521378 +) +(1,6464:6764466,36206233:25818563,431045,33029 +h1,6464:6764466,36206233:0,0,0 +g1,6464:7760328,36206233 +h1,6464:8424236,36206233:0,0,0 +k1,6464:32583028,36206233:24158792 +g1,6464:32583028,36206233 +) +(1,6464:6764466,36891088:25818563,424439,79822 +h1,6464:6764466,36891088:0,0,0 +g1,6464:7760328,36891088 +g1,6464:9088144,36891088 +h1,6464:9420098,36891088:0,0,0 +k1,6464:32583030,36891088:23162932 +g1,6464:32583030,36891088 +) +] +) +g1,6465:32583029,36970910 +g1,6465:6764466,36970910 +g1,6465:6764466,36970910 +g1,6465:32583029,36970910 +g1,6465:32583029,36970910 +) +h1,6465:6764466,37167518:0,0,0 +] +g1,6467:32583029,37167518 +) +h1,6467:6630773,37167518:0,0,0 +(1,6470:6630773,38032598:25952256,513147,126483 +h1,6469:6630773,38032598:983040,0,0 +k1,6469:9641424,38032598:195224 +k1,6469:12575398,38032598:195224 +k1,6469:16175217,38032598:195224 +k1,6469:17179811,38032598:195224 +k1,6469:18698863,38032598:195225 +k1,6469:19885647,38032598:195224 +k1,6469:24729340,38032598:195224 +k1,6469:28104371,38032598:195224 +k1,6469:29491040,38032598:195224 +k1,6469:32583029,38032598:0 +) +(1,6470:6630773,38897678:25952256,513147,115847 +k1,6469:8019808,38897678:192348 +k1,6469:9865628,38897678:192347 +k1,6469:13083773,38897678:192348 +k1,6469:13962282,38897678:192347 +k1,6469:15548581,38897678:192348 +k1,6469:18049106,38897678:192347 +k1,6469:19233014,38897678:192348 +k1,6469:21112259,38897678:192348 +k1,6469:24330403,38897678:192347 +(1,6469:24330403,38897678:0,452978,115847 +r1,6493:25392092,38897678:1061689,568825,115847 +k1,6469:24330403,38897678:-1061689 +) +(1,6469:24330403,38897678:1061689,452978,115847 +k1,6469:24330403,38897678:3277 +h1,6469:25388815,38897678:0,411205,112570 +) +k1,6469:25584440,38897678:192348 +k1,6469:26724438,38897678:192347 +k1,6469:31391584,38897678:192348 +k1,6470:32583029,38897678:0 +) +(1,6470:6630773,39762758:25952256,505283,126483 +(1,6469:6630773,39762758:0,452978,115847 +r1,6493:9451022,39762758:2820249,568825,115847 +k1,6469:6630773,39762758:-2820249 +) +(1,6469:6630773,39762758:2820249,452978,115847 +k1,6469:6630773,39762758:3277 +h1,6469:9447745,39762758:0,411205,112570 +) +k1,6469:9705535,39762758:254513 +k1,6469:10611477,39762758:254514 +k1,6469:13246258,39762758:254513 +k1,6469:14692217,39762758:254514 +k1,6469:16785670,39762758:254513 +k1,6469:18537682,39762758:254514 +k1,6469:20275930,39762758:254513 +k1,6469:21634726,39762758:254514 +k1,6469:22637005,39762758:254513 +k1,6469:26024140,39762758:254514 +k1,6469:27654254,39762758:254513 +k1,6469:29302719,39762758:254514 +k1,6469:31259202,39762758:254513 +k1,6469:32583029,39762758:0 +) +(1,6470:6630773,40627838:25952256,505283,134348 +g1,6469:8062079,40627838 +g1,6469:10089762,40627838 +h1,6469:10886680,40627838:0,0,0 +h1,6469:12011278,40627838:0,0,0 +k1,6470:32583030,40627838:20190988 +g1,6470:32583030,40627838 +) +v1,6472:6630773,41312693:0,393216,0 +(1,6493:6630773,45202117:25952256,4282640,196608 +g1,6493:6630773,45202117 +g1,6493:6630773,45202117 +g1,6493:6434165,45202117 +(1,6493:6434165,45202117:0,4282640,196608 +r1,6493:32779637,45202117:26345472,4479248,196608 +k1,6493:6434165,45202117:-26345472 +) +(1,6493:6434165,45202117:26345472,4282640,196608 +[1,6493:6630773,45202117:25952256,4086032,0 +(1,6474:6630773,41540524:25952256,424439,106246 +(1,6473:6630773,41540524:0,0,0 +g1,6473:6630773,41540524 +g1,6473:6630773,41540524 +g1,6473:6303093,41540524 +(1,6473:6303093,41540524:0,0,0 +) +g1,6473:6630773,41540524 +) +g1,6474:10946174,41540524 +g1,6474:11942036,41540524 +g1,6474:16921346,41540524 +g1,6474:19576978,41540524 +g1,6474:20240886,41540524 +g1,6474:22232610,41540524 +g1,6474:23228472,41540524 +g1,6474:23892380,41540524 +g1,6474:28871689,41540524 +h1,6474:29535597,41540524:0,0,0 +k1,6474:32583029,41540524:3047432 +g1,6474:32583029,41540524 +) +(1,6475:6630773,42225379:25952256,424439,6605 +h1,6475:6630773,42225379:0,0,0 +h1,6475:10614220,42225379:0,0,0 +k1,6475:32583028,42225379:21968808 +g1,6475:32583028,42225379 +) +(1,6492:6630773,43041306:25952256,431045,33029 +(1,6477:6630773,43041306:0,0,0 +g1,6477:6630773,43041306 +g1,6477:6630773,43041306 +g1,6477:6303093,43041306 +(1,6477:6303093,43041306:0,0,0 +) +g1,6477:6630773,43041306 +) +g1,6492:7626635,43041306 +h1,6492:8290543,43041306:0,0,0 +k1,6492:32583029,43041306:24292486 +g1,6492:32583029,43041306 +) +(1,6492:6630773,43726161:25952256,424439,79822 +h1,6492:6630773,43726161:0,0,0 +g1,6492:7626635,43726161 +g1,6492:8954451,43726161 +g1,6492:9618359,43726161 +g1,6492:10282267,43726161 +h1,6492:10614221,43726161:0,0,0 +k1,6492:32583029,43726161:21968808 +g1,6492:32583029,43726161 +) +(1,6492:6630773,44411016:25952256,398014,0 +h1,6492:6630773,44411016:0,0,0 +h1,6492:7294681,44411016:0,0,0 +k1,6492:32583029,44411016:25288348 +g1,6492:32583029,44411016 +) +(1,6492:6630773,45095871:25952256,431045,106246 +h1,6492:6630773,45095871:0,0,0 +g1,6492:7626635,45095871 +h1,6492:8290543,45095871:0,0,0 +k1,6492:32583029,45095871:24292486 +g1,6492:32583029,45095871 +) +] +) +g1,6493:32583029,45202117 +g1,6493:6630773,45202117 +g1,6493:6630773,45202117 +g1,6493:32583029,45202117 +g1,6493:32583029,45202117 +) +] +(1,6493:32583029,45706769:0,0,0 +g1,6493:32583029,45706769 +) +) +] +(1,6493:6630773,47279633:25952256,0,0 +h1,6493:6630773,47279633:25952256,0,0 +) +] +(1,6493:4262630,4025873:0,0,0 +[1,6493:-473656,4025873:0,0,0 +(1,6493:-473656,-710413:0,0,0 +(1,6493:-473656,-710413:0,0,0 +g1,6493:-473656,-710413 ) -g1,5950:3062174,49800853 -(1,5950:3062174,52029077:16384,1703936,0 -[1,5950:3062174,52029077:25952256,1703936,0 -(1,5950:3062174,51504789:25952256,1179648,0 -(1,5950:3062174,51504789:16384,1179648,0 -r1,7586:3078558,51504789:16384,1179648,0 +g1,6493:-473656,-710413 +) +] ) -k1,5950:29014430,51504789:25935872 -g1,5950:29014430,51504789 -) -] -) -) -) -] -[1,7586:3078558,4812305:0,0,0 -(1,7586:3078558,49800853:0,16384,2228224 -g1,7586:29030814,49800853 -g1,7586:36135244,49800853 -(1,5950:36135244,49800853:1720320,16384,2228224 -(1,5950:36135244,52029077:16384,1703936,0 -[1,5950:36135244,52029077:25952256,1703936,0 -(1,5950:36135244,51504789:25952256,1179648,0 -(1,5950:36135244,51504789:16384,1179648,0 -r1,7586:36151628,51504789:16384,1179648,0 -) -k1,5950:62087500,51504789:25935872 -g1,5950:62087500,51504789 -) -] -) -g1,5950:36675916,49800853 -(1,5950:36675916,49800853:1179648,16384,0 -r1,7586:37855564,49800853:1179648,16384,0 -) -) -k1,7586:3078556,49800853:-34777008 -) -] -g1,7586:6630773,4812305 -k1,7586:24358918,4812305:16532768 -g1,7586:25981589,4812305 -g1,7586:26804065,4812305 -g1,7586:30302376,4812305 -) -) -] -[1,7586:6630773,45706769:25952256,40108032,0 -(1,7586:6630773,45706769:25952256,40108032,0 -(1,7586:6630773,45706769:0,0,0 -g1,7586:6630773,45706769 -) -[1,7586:6630773,45706769:25952256,40108032,0 -(1,7501:6630773,6254097:25952256,513147,134348 -h1,7500:6630773,6254097:983040,0,0 -k1,7500:10141303,6254097:149188 -k1,7500:10941919,6254097:149188 -k1,7500:13752524,6254097:149188 -k1,7500:14257572,6254097:149188 -k1,7500:15796123,6254097:149188 -k1,7500:17821607,6254097:149188 -k1,7500:18502292,6254097:149188 -k1,7500:19670565,6254097:149188 -k1,7500:23291195,6254097:149188 -k1,7500:24099675,6254097:149188 -k1,7500:27757005,6254097:149188 -k1,7500:29760862,6254097:149188 -k1,7500:30719420,6254097:149188 -k1,7500:31224468,6254097:149188 -k1,7501:32583029,6254097:0 -) -(1,7501:6630773,7095585:25952256,513147,134348 -k1,7500:7736037,7095585:170721 -k1,7500:8566050,7095585:170721 -k1,7500:10607824,7095585:170721 -k1,7500:11461431,7095585:170722 -k1,7500:13282349,7095585:170721 -k1,7500:16796717,7095585:170721 -k1,7500:20475580,7095585:170721 -k1,7500:21593952,7095585:170721 -k1,7500:22530789,7095585:170721 -k1,7500:26773263,7095585:170722 -k1,7500:28016153,7095585:170721 -k1,7500:29700100,7095585:170721 -k1,7500:32583029,7095585:0 -) -(1,7501:6630773,7937073:25952256,513147,7863 -g1,7500:8469057,7937073 -g1,7500:10522955,7937073 -g1,7500:11531554,7937073 -g1,7500:12749868,7937073 -g1,7500:14959742,7937073 -g1,7500:15775009,7937073 -g1,7500:16330098,7937073 -g1,7500:18912216,7937073 -g1,7500:19794330,7937073 -g1,7500:21012644,7937073 -g1,7500:23004283,7937073 -g1,7500:23862804,7937073 -g1,7500:24417893,7937073 -k1,7501:32583029,7937073:6097475 -g1,7501:32583029,7937073 -) -v1,7503:6630773,9302849:0,393216,0 -(1,7519:6630773,15436902:25952256,6527269,0 -g1,7519:6630773,15436902 -g1,7519:6303093,15436902 -r1,7586:6401397,15436902:98304,6527269,0 -g1,7519:6600626,15436902 -g1,7519:6797234,15436902 -[1,7519:6797234,15436902:25785795,6527269,0 -(1,7504:6797234,9697952:25785795,788319,218313 -(1,7503:6797234,9697952:0,788319,218313 -r1,7586:7917113,9697952:1119879,1006632,218313 -k1,7503:6797234,9697952:-1119879 -) -(1,7503:6797234,9697952:1119879,788319,218313 -) -g1,7503:8116342,9697952 -g1,7503:8444022,9697952 -g1,7503:10152545,9697952 -g1,7503:11016309,9697952 -g1,7503:14891452,9697952 -g1,7503:16297199,9697952 -g1,7503:19177506,9697952 -g1,7503:20995474,9697952 -g1,7503:21564326,9697952 -g1,7503:23179788,9697952 -g1,7503:25326092,9697952 -g1,7503:26378600,9697952 -k1,7503:32583029,9697952:3917878 -g1,7504:32583029,9697952 -) -(1,7504:6797234,10539440:25785795,505283,134348 -g1,7503:7825493,10539440 -g1,7503:11592502,10539440 -g1,7503:12147591,10539440 -g1,7503:14219839,10539440 -g1,7503:16930408,10539440 -g1,7503:17891165,10539440 -g1,7503:19983074,10539440 -g1,7503:21050655,10539440 -g1,7503:22354166,10539440 -g1,7503:23645880,10539440 -(1,7503:23645880,10539440:0,452978,122846 -r1,7586:27521264,10539440:3875384,575824,122846 -k1,7503:23645880,10539440:-3875384 -) -(1,7503:23645880,10539440:3875384,452978,122846 -k1,7503:23645880,10539440:3277 -h1,7503:27517987,10539440:0,411205,112570 -) -k1,7504:32583029,10539440:4888095 -g1,7504:32583029,10539440 -) -v1,7506:6797234,11729906:0,393216,0 -(1,7516:6797234,14716006:25785795,3379316,196608 -g1,7516:6797234,14716006 -g1,7516:6797234,14716006 -g1,7516:6600626,14716006 -(1,7516:6600626,14716006:0,3379316,196608 -r1,7586:32779637,14716006:26179011,3575924,196608 -k1,7516:6600625,14716006:-26179012 -) -(1,7516:6600626,14716006:26179011,3379316,196608 -[1,7516:6797234,14716006:25785795,3182708,0 -(1,7508:6797234,11943816:25785795,410518,107478 -(1,7507:6797234,11943816:0,0,0 -g1,7507:6797234,11943816 -g1,7507:6797234,11943816 -g1,7507:6469554,11943816 -(1,7507:6469554,11943816:0,0,0 -) -g1,7507:6797234,11943816 -) -k1,7508:6797234,11943816:0 -g1,7508:10590983,11943816 -g1,7508:11223275,11943816 -g1,7508:17230044,11943816 -g1,7508:18178481,11943816 -g1,7508:18810773,11943816 -g1,7508:25133687,11943816 -g1,7508:26398270,11943816 -g1,7508:27030562,11943816 -h1,7508:28611290,11943816:0,0,0 -k1,7508:32583029,11943816:3971739 -g1,7508:32583029,11943816 -) -(1,7515:6797234,12609994:25785795,388497,101187 -(1,7510:6797234,12609994:0,0,0 -g1,7510:6797234,12609994 -g1,7510:6797234,12609994 -g1,7510:6469554,12609994 -(1,7510:6469554,12609994:0,0,0 -) -g1,7510:6797234,12609994 -) -g1,7515:7745671,12609994 -g1,7515:8061817,12609994 -g1,7515:8377963,12609994 -g1,7515:8694109,12609994 -g1,7515:9010255,12609994 -g1,7515:9326401,12609994 -g1,7515:11855567,12609994 -g1,7515:12171713,12609994 -g1,7515:12487859,12609994 -g1,7515:12804005,12609994 -g1,7515:13120151,12609994 -h1,7515:13436297,12609994:0,0,0 -k1,7515:32583029,12609994:19146732 -g1,7515:32583029,12609994 -) -(1,7515:6797234,13276172:25785795,388497,9436 -h1,7515:6797234,13276172:0,0,0 -g1,7515:7745671,13276172 -g1,7515:8377963,13276172 -g1,7515:8694109,13276172 -g1,7515:9010255,13276172 -g1,7515:9326401,13276172 -g1,7515:9642547,13276172 -g1,7515:11855567,13276172 -h1,7515:13436295,13276172:0,0,0 -k1,7515:32583029,13276172:19146734 -g1,7515:32583029,13276172 -) -(1,7515:6797234,13942350:25785795,404226,9436 -h1,7515:6797234,13942350:0,0,0 -g1,7515:7745671,13942350 -g1,7515:8377963,13942350 -g1,7515:11855566,13942350 -h1,7515:13436294,13942350:0,0,0 -k1,7515:32583030,13942350:19146736 -g1,7515:32583030,13942350 -) -(1,7515:6797234,14608528:25785795,404226,107478 -h1,7515:6797234,14608528:0,0,0 -g1,7515:7745671,14608528 -g1,7515:8377963,14608528 -g1,7515:8694109,14608528 -g1,7515:11855566,14608528 -h1,7515:13436294,14608528:0,0,0 -k1,7515:32583030,14608528:19146736 -g1,7515:32583030,14608528 -) -] -) -g1,7516:32583029,14716006 -g1,7516:6797234,14716006 -g1,7516:6797234,14716006 -g1,7516:32583029,14716006 -g1,7516:32583029,14716006 -) -h1,7516:6797234,14912614:0,0,0 -] -g1,7519:32583029,15436902 -) -h1,7519:6630773,15436902:0,0,0 -v1,7522:6630773,16802678:0,393216,0 -(1,7539:6630773,25469058:25952256,9059596,0 -g1,7539:6630773,25469058 -g1,7539:6303093,25469058 -r1,7586:6401397,25469058:98304,9059596,0 -g1,7539:6600626,25469058 -g1,7539:6797234,25469058 -[1,7539:6797234,25469058:25785795,9059596,0 -(1,7523:6797234,17197781:25785795,788319,218313 -(1,7522:6797234,17197781:0,788319,218313 -r1,7586:7917113,17197781:1119879,1006632,218313 -k1,7522:6797234,17197781:-1119879 -) -(1,7522:6797234,17197781:1119879,788319,218313 -) -g1,7522:8116342,17197781 -g1,7522:8444022,17197781 -g1,7522:10152545,17197781 -g1,7522:11016309,17197781 -g1,7522:14891452,17197781 -g1,7522:17825499,17197781 -g1,7522:21049215,17197781 -g1,7522:22867183,17197781 -g1,7522:23436035,17197781 -g1,7522:25051497,17197781 -g1,7522:27197801,17197781 -g1,7522:28250309,17197781 -k1,7522:32583029,17197781:2046169 -g1,7523:32583029,17197781 -) -(1,7523:6797234,18039269:25785795,505283,134348 -k1,7522:7880469,18039269:254205 -k1,7522:11702454,18039269:254205 -k1,7522:14798300,18039269:254205 -k1,7522:15920857,18039269:254205 -k1,7522:17279344,18039269:254205 -k1,7522:18626034,18039269:254205 -(1,7522:18626034,18039269:0,452978,122846 -r1,7586:22501418,18039269:3875384,575824,122846 -k1,7522:18626034,18039269:-3875384 -) -(1,7522:18626034,18039269:3875384,452978,122846 -k1,7522:18626034,18039269:3277 -h1,7522:22498141,18039269:0,411205,112570 -) -k1,7522:22755622,18039269:254204 -k1,7522:24241904,18039269:254205 -k1,7522:26774796,18039269:254205 -h1,7522:28317514,18039269:0,0,0 -k1,7522:28571719,18039269:254205 -k1,7522:29635294,18039269:254205 -k1,7522:31387652,18039269:254205 -h1,7522:32583029,18039269:0,0,0 -k1,7522:32583029,18039269:0 -) -(1,7523:6797234,18880757:25785795,513147,134348 -g1,7522:7944114,18880757 -g1,7522:8914046,18880757 -g1,7522:12500176,18880757 -g1,7522:15683915,18880757 -g1,7522:17618537,18880757 -g1,7522:20397918,18880757 -k1,7523:32583029,18880757:9831713 -g1,7523:32583029,18880757 -) -v1,7525:6797234,20071223:0,393216,0 -(1,7535:6797234,23057323:25785795,3379316,196608 -g1,7535:6797234,23057323 -g1,7535:6797234,23057323 -g1,7535:6600626,23057323 -(1,7535:6600626,23057323:0,3379316,196608 -r1,7586:32779637,23057323:26179011,3575924,196608 -k1,7535:6600625,23057323:-26179012 -) -(1,7535:6600626,23057323:26179011,3379316,196608 -[1,7535:6797234,23057323:25785795,3182708,0 -(1,7527:6797234,20285133:25785795,410518,107478 -(1,7526:6797234,20285133:0,0,0 -g1,7526:6797234,20285133 -g1,7526:6797234,20285133 -g1,7526:6469554,20285133 -(1,7526:6469554,20285133:0,0,0 -) -g1,7526:6797234,20285133 -) -k1,7527:6797234,20285133:0 -k1,7527:10492202,20285133:217365 -k1,7527:11025713,20285133:217365 -k1,7527:12823806,20285133:217365 -k1,7527:13357317,20285133:217365 -k1,7527:17368430,20285133:217365 -k1,7527:21695688,20285133:217364 -k1,7527:22545344,20285133:217365 -k1,7527:23078855,20285133:217365 -k1,7527:29302988,20285133:217365 -k1,7527:30468790,20285133:217365 -k1,7527:31002301,20285133:217365 -h1,7527:32583029,20285133:0,0,0 -k1,7527:32583029,20285133:0 -k1,7527:32583029,20285133:0 -) -(1,7534:6797234,20951311:25785795,404226,107478 -(1,7529:6797234,20951311:0,0,0 -g1,7529:6797234,20951311 -g1,7529:6797234,20951311 -g1,7529:6469554,20951311 -(1,7529:6469554,20951311:0,0,0 -) -g1,7529:6797234,20951311 -) -g1,7534:7745671,20951311 -g1,7534:8061817,20951311 -g1,7534:8377963,20951311 -g1,7534:8694109,20951311 -g1,7534:9010255,20951311 -g1,7534:9326401,20951311 -g1,7534:11855567,20951311 -g1,7534:15965461,20951311 -g1,7534:19759209,20951311 -g1,7534:23869103,20951311 -h1,7534:27346705,20951311:0,0,0 -k1,7534:32583029,20951311:5236324 -g1,7534:32583029,20951311 -) -(1,7534:6797234,21617489:25785795,388497,9436 -h1,7534:6797234,21617489:0,0,0 -g1,7534:7745671,21617489 -g1,7534:8377963,21617489 -g1,7534:8694109,21617489 -g1,7534:9010255,21617489 -g1,7534:9326401,21617489 -g1,7534:9642547,21617489 -g1,7534:11855567,21617489 -g1,7534:12171713,21617489 -g1,7534:12487859,21617489 -g1,7534:12804005,21617489 -g1,7534:13120151,21617489 -g1,7534:13436297,21617489 -g1,7534:13752443,21617489 -g1,7534:14068589,21617489 -g1,7534:15965463,21617489 -g1,7534:16281609,21617489 -g1,7534:16597755,21617489 -g1,7534:16913901,21617489 -g1,7534:17230047,21617489 -g1,7534:17546193,21617489 -g1,7534:17862339,21617489 -g1,7534:19759213,21617489 -g1,7534:20075359,21617489 -g1,7534:20391505,21617489 -g1,7534:20707651,21617489 -g1,7534:21023797,21617489 -g1,7534:21339943,21617489 -g1,7534:21656089,21617489 -g1,7534:21972235,21617489 -g1,7534:23869109,21617489 -g1,7534:24185255,21617489 -g1,7534:24501401,21617489 -g1,7534:24817547,21617489 -g1,7534:25133693,21617489 -g1,7534:25449839,21617489 -g1,7534:25765985,21617489 -h1,7534:27346713,21617489:0,0,0 -k1,7534:32583029,21617489:5236316 -g1,7534:32583029,21617489 -) -(1,7534:6797234,22283667:25785795,404226,9436 -h1,7534:6797234,22283667:0,0,0 -g1,7534:7745671,22283667 -g1,7534:8377963,22283667 -g1,7534:11855566,22283667 -g1,7534:12171712,22283667 -g1,7534:12487858,22283667 -g1,7534:12804004,22283667 -g1,7534:13120150,22283667 -g1,7534:13436296,22283667 -g1,7534:13752442,22283667 -g1,7534:14068588,22283667 -g1,7534:15965462,22283667 -g1,7534:16281608,22283667 -g1,7534:16597754,22283667 -g1,7534:16913900,22283667 -g1,7534:17230046,22283667 -g1,7534:17546192,22283667 -g1,7534:17862338,22283667 -g1,7534:19759212,22283667 -g1,7534:20075358,22283667 -g1,7534:20391504,22283667 -g1,7534:20707650,22283667 -g1,7534:21023796,22283667 -g1,7534:21339942,22283667 -g1,7534:21656088,22283667 -g1,7534:21972234,22283667 -g1,7534:23869108,22283667 -g1,7534:24185254,22283667 -g1,7534:24501400,22283667 -g1,7534:24817546,22283667 -g1,7534:25133692,22283667 -g1,7534:25449838,22283667 -g1,7534:25765984,22283667 -h1,7534:27346712,22283667:0,0,0 -k1,7534:32583029,22283667:5236317 -g1,7534:32583029,22283667 -) -(1,7534:6797234,22949845:25785795,404226,107478 -h1,7534:6797234,22949845:0,0,0 -g1,7534:7745671,22949845 -g1,7534:8377963,22949845 -g1,7534:8694109,22949845 -g1,7534:11855566,22949845 -g1,7534:12171712,22949845 -g1,7534:12487858,22949845 -g1,7534:12804004,22949845 -g1,7534:13120150,22949845 -g1,7534:13436296,22949845 -g1,7534:13752442,22949845 -g1,7534:14068588,22949845 -g1,7534:15965462,22949845 -g1,7534:16281608,22949845 -g1,7534:16597754,22949845 -g1,7534:16913900,22949845 -g1,7534:17230046,22949845 -g1,7534:17546192,22949845 -g1,7534:17862338,22949845 -g1,7534:19759212,22949845 -g1,7534:20075358,22949845 -g1,7534:20391504,22949845 -g1,7534:20707650,22949845 -g1,7534:21023796,22949845 -g1,7534:21339942,22949845 -g1,7534:21656088,22949845 -g1,7534:21972234,22949845 -g1,7534:23869108,22949845 -g1,7534:24185254,22949845 -g1,7534:24501400,22949845 -g1,7534:24817546,22949845 -g1,7534:25133692,22949845 -g1,7534:25449838,22949845 -g1,7534:25765984,22949845 -h1,7534:27346712,22949845:0,0,0 -k1,7534:32583029,22949845:5236317 -g1,7534:32583029,22949845 -) -] -) -g1,7535:32583029,23057323 -g1,7535:6797234,23057323 -g1,7535:6797234,23057323 -g1,7535:32583029,23057323 -g1,7535:32583029,23057323 -) -h1,7535:6797234,23253931:0,0,0 -(1,7539:6797234,24619707:25785795,505283,126483 -h1,7538:6797234,24619707:983040,0,0 -k1,7538:9024364,24619707:202068 -k1,7538:10923159,24619707:202068 -k1,7538:12514591,24619707:202069 -k1,7538:13402821,24619707:202068 -k1,7538:14623974,24619707:202068 -k1,7538:16201643,24619707:202068 -k1,7538:20461046,24619707:202069 -k1,7538:23174454,24619707:202068 -k1,7538:23908019,24619707:202068 -(1,7538:23908019,24619707:0,452978,115847 -r1,7586:26376556,24619707:2468537,568825,115847 -k1,7538:23908019,24619707:-2468537 -) -(1,7538:23908019,24619707:2468537,452978,115847 -k1,7538:23908019,24619707:3277 -h1,7538:26373279,24619707:0,411205,112570 -) -k1,7538:26578624,24619707:202068 -k1,7538:27649045,24619707:202069 -k1,7538:29619930,24619707:202068 -k1,7538:31297213,24619707:202068 -k1,7538:32583029,24619707:0 -) -(1,7539:6797234,25461195:25785795,513147,7863 -g1,7538:8509689,25461195 -g1,7538:11252370,25461195 -g1,7538:14141197,25461195 -g1,7538:15026588,25461195 -g1,7538:17301342,25461195 -k1,7539:32583029,25461195:13239585 -g1,7539:32583029,25461195 -) -] -g1,7539:32583029,25469058 -) -h1,7539:6630773,25469058:0,0,0 -(1,7542:6630773,26834834:25952256,513147,122846 -h1,7541:6630773,26834834:983040,0,0 -k1,7541:9715136,26834834:268936 -k1,7541:10515568,26834834:268935 -k1,7541:12070320,26834834:268936 -k1,7541:12695116,26834834:268936 -k1,7541:17575165,26834834:268936 -(1,7541:17575165,26834834:0,452978,122846 -r1,7586:21450549,26834834:3875384,575824,122846 -k1,7541:17575165,26834834:-3875384 -) -(1,7541:17575165,26834834:3875384,452978,122846 -k1,7541:17575165,26834834:3277 -h1,7541:21447272,26834834:0,411205,112570 -) -k1,7541:21719484,26834834:268935 -k1,7541:24442743,26834834:268936 -k1,7541:25601658,26834834:268936 -k1,7541:28908187,26834834:268935 -k1,7541:31961092,26834834:268936 -k1,7542:32583029,26834834:0 -) -(1,7542:6630773,27676322:25952256,513147,134348 -k1,7541:9692900,27676322:207378 -k1,7541:10891837,27676322:207377 -k1,7541:14189238,27676322:207378 -k1,7541:15012653,27676322:207377 -k1,7541:17080598,27676322:207378 -k1,7541:17904014,27676322:207378 -k1,7541:20390078,27676322:207377 -h1,7541:21759125,27676322:0,0,0 -k1,7541:21966503,27676322:207378 -k1,7541:22983251,27676322:207378 -k1,7541:24688781,27676322:207377 -h1,7541:25884158,27676322:0,0,0 -k1,7541:26472300,27676322:207378 -k1,7541:27307512,27676322:207377 -(1,7541:27307512,27676322:0,452978,122846 -r1,7586:31182896,27676322:3875384,575824,122846 -k1,7541:27307512,27676322:-3875384 -) -(1,7541:27307512,27676322:3875384,452978,122846 -k1,7541:27307512,27676322:3277 -h1,7541:31179619,27676322:0,411205,112570 -) -k1,7541:31563944,27676322:207378 -k1,7541:32583029,27676322:0 -) -(1,7542:6630773,28517810:25952256,513147,134348 -k1,7541:7852364,28517810:147456 -k1,7541:9606107,28517810:147456 -k1,7541:11053141,28517810:147455 -k1,7541:12529013,28517810:147456 -k1,7541:13335761,28517810:147456 -k1,7541:14502302,28517810:147456 -k1,7541:17193209,28517810:147455 -k1,7541:20202622,28517810:147456 -k1,7541:21369163,28517810:147456 -k1,7541:24027959,28517810:147456 -k1,7541:24826843,28517810:147456 -k1,7541:28542078,28517810:147455 -k1,7541:29880979,28517810:147456 -k1,7541:31047520,28517810:147456 -k1,7541:32583029,28517810:0 -) -(1,7542:6630773,29359298:25952256,513147,134348 -g1,7541:8436289,29359298 -g1,7541:9935097,29359298 -g1,7541:11581362,29359298 -g1,7541:12799676,29359298 -g1,7541:14892895,29359298 -g1,7541:16605350,29359298 -g1,7541:17456007,29359298 -g1,7541:19069503,29359298 -g1,7541:20287817,29359298 -g1,7541:21876409,29359298 -g1,7541:24118395,29359298 -g1,7541:28528312,29359298 -k1,7542:32583029,29359298:2241991 -g1,7542:32583029,29359298 -) -v1,7544:6630773,30549764:0,393216,0 -(1,7553:6630773,32768498:25952256,2611950,196608 -g1,7553:6630773,32768498 -g1,7553:6630773,32768498 -g1,7553:6434165,32768498 -(1,7553:6434165,32768498:0,2611950,196608 -r1,7586:32779637,32768498:26345472,2808558,196608 -k1,7553:6434165,32768498:-26345472 -) -(1,7553:6434165,32768498:26345472,2611950,196608 -[1,7553:6630773,32768498:25952256,2415342,0 -(1,7546:6630773,30763674:25952256,410518,107478 -(1,7545:6630773,30763674:0,0,0 -g1,7545:6630773,30763674 -g1,7545:6630773,30763674 -g1,7545:6303093,30763674 -(1,7545:6303093,30763674:0,0,0 -) -g1,7545:6630773,30763674 -) -k1,7546:6630773,30763674:0 -g1,7546:10740667,30763674 -g1,7546:11372959,30763674 -g1,7546:12321397,30763674 -g1,7546:13585980,30763674 -g1,7546:14218272,30763674 -g1,7546:16115147,30763674 -g1,7546:17695876,30763674 -g1,7546:18328168,30763674 -h1,7546:19908896,30763674:0,0,0 -k1,7546:32583029,30763674:12674133 -g1,7546:32583029,30763674 -) -(1,7552:6630773,31429852:25952256,388497,0 -(1,7548:6630773,31429852:0,0,0 -g1,7548:6630773,31429852 -g1,7548:6630773,31429852 -g1,7548:6303093,31429852 -(1,7548:6303093,31429852:0,0,0 -) -g1,7548:6630773,31429852 -) -g1,7552:7579210,31429852 -g1,7552:7895356,31429852 -g1,7552:8211502,31429852 -g1,7552:8843794,31429852 -h1,7552:9476085,31429852:0,0,0 -k1,7552:32583029,31429852:23106944 -g1,7552:32583029,31429852 -) -(1,7552:6630773,32096030:25952256,388497,9436 -h1,7552:6630773,32096030:0,0,0 -g1,7552:7579210,32096030 -g1,7552:8211502,32096030 -g1,7552:8843794,32096030 -g1,7552:9159940,32096030 -h1,7552:9476086,32096030:0,0,0 -k1,7552:32583030,32096030:23106944 -g1,7552:32583030,32096030 -) -(1,7552:6630773,32762208:25952256,404226,6290 -h1,7552:6630773,32762208:0,0,0 -g1,7552:7579210,32762208 -g1,7552:8211502,32762208 -g1,7552:8843794,32762208 -g1,7552:9159940,32762208 -h1,7552:9476086,32762208:0,0,0 -k1,7552:32583030,32762208:23106944 -g1,7552:32583030,32762208 -) -] -) -g1,7553:32583029,32768498 -g1,7553:6630773,32768498 -g1,7553:6630773,32768498 -g1,7553:32583029,32768498 -g1,7553:32583029,32768498 -) -h1,7553:6630773,32965106:0,0,0 -(1,7558:6630773,34155572:25952256,505283,7863 -h1,7556:6630773,34155572:983040,0,0 -g1,7556:8766591,34155572 -g1,7556:10070102,34155572 -g1,7556:13837111,34155572 -g1,7556:15686537,34155572 -g1,7556:17328213,34155572 -g1,7556:18684152,34155572 -g1,7556:21266270,34155572 -g1,7556:22078261,34155572 -g1,7556:22633350,34155572 -g1,7556:24431657,34155572 -k1,7558:32583029,34155572:8151372 -g1,7558:32583029,34155572 -) -v1,7558:6630773,35346038:0,393216,0 -(1,7567:6630773,37567918:25952256,2615096,196608 -g1,7567:6630773,37567918 -g1,7567:6630773,37567918 -g1,7567:6434165,37567918 -(1,7567:6434165,37567918:0,2615096,196608 -r1,7586:32779637,37567918:26345472,2811704,196608 -k1,7567:6434165,37567918:-26345472 -) -(1,7567:6434165,37567918:26345472,2615096,196608 -[1,7567:6630773,37567918:25952256,2418488,0 -(1,7560:6630773,35559948:25952256,410518,107478 -(1,7559:6630773,35559948:0,0,0 -g1,7559:6630773,35559948 -g1,7559:6630773,35559948 -g1,7559:6303093,35559948 -(1,7559:6303093,35559948:0,0,0 -) -g1,7559:6630773,35559948 -) -k1,7560:6630773,35559948:0 -g1,7560:12953687,35559948 -g1,7560:14218270,35559948 -g1,7560:14850562,35559948 -g1,7560:15799000,35559948 -g1,7560:17063583,35559948 -g1,7560:17695875,35559948 -g1,7560:19592750,35559948 -g1,7560:21173479,35559948 -g1,7560:21805771,35559948 -h1,7560:23386499,35559948:0,0,0 -k1,7560:32583029,35559948:9196530 -g1,7560:32583029,35559948 -) -(1,7566:6630773,36226126:25952256,388497,0 -(1,7562:6630773,36226126:0,0,0 -g1,7562:6630773,36226126 -g1,7562:6630773,36226126 -g1,7562:6303093,36226126 -(1,7562:6303093,36226126:0,0,0 -) -g1,7562:6630773,36226126 -) -g1,7566:7579210,36226126 -g1,7566:7895356,36226126 -g1,7566:8211502,36226126 -g1,7566:8843794,36226126 -g1,7566:9792231,36226126 -g1,7566:10108377,36226126 -g1,7566:10424523,36226126 -g1,7566:10740669,36226126 -g1,7566:11056815,36226126 -g1,7566:11372961,36226126 -g1,7566:11689107,36226126 -h1,7566:12321398,36226126:0,0,0 -k1,7566:32583030,36226126:20261632 -g1,7566:32583030,36226126 -) -(1,7566:6630773,36892304:25952256,388497,9436 -h1,7566:6630773,36892304:0,0,0 -g1,7566:7579210,36892304 -g1,7566:8211502,36892304 -g1,7566:8843794,36892304 -g1,7566:9159940,36892304 -g1,7566:9792232,36892304 -h1,7566:12321397,36892304:0,0,0 -k1,7566:32583029,36892304:20261632 -g1,7566:32583029,36892304 -) -(1,7566:6630773,37558482:25952256,404226,9436 -h1,7566:6630773,37558482:0,0,0 -g1,7566:7579210,37558482 -g1,7566:8211502,37558482 -g1,7566:8843794,37558482 -g1,7566:9159940,37558482 -g1,7566:9792232,37558482 -h1,7566:12321397,37558482:0,0,0 -k1,7566:32583029,37558482:20261632 -g1,7566:32583029,37558482 -) -] -) -g1,7567:32583029,37567918 -g1,7567:6630773,37567918 -g1,7567:6630773,37567918 -g1,7567:32583029,37567918 -g1,7567:32583029,37567918 -) -h1,7567:6630773,37764526:0,0,0 -(1,7572:6630773,38954992:25952256,513147,134348 -h1,7570:6630773,38954992:983040,0,0 -k1,7570:8230593,38954992:139023 -k1,7570:9135733,38954992:139024 -k1,7570:10293841,38954992:139023 -k1,7570:13146056,38954992:139024 -k1,7570:14351350,38954992:139023 -k1,7570:16003600,38954992:139024 -k1,7570:17090274,38954992:139023 -k1,7570:20112227,38954992:139024 -k1,7570:21242810,38954992:139023 -k1,7570:22921930,38954992:139024 -k1,7570:24769477,38954992:139023 -k1,7570:25559929,38954992:139024 -k1,7570:26718037,38954992:139023 -k1,7570:29552557,38954992:139024 -k1,7570:31896867,38954992:139023 -k1,7570:32583029,38954992:0 -) -(1,7572:6630773,39621170:25952256,513147,134348 -k1,7570:9901540,39621170:198439 -k1,7570:10751407,39621170:198439 -(1,7570:10751407,39621170:0,414482,115847 -r1,7586:11813096,39621170:1061689,530329,115847 -k1,7570:10751407,39621170:-1061689 -) -(1,7570:10751407,39621170:1061689,414482,115847 -k1,7570:10751407,39621170:3277 -h1,7570:11809819,39621170:0,411205,112570 -) -k1,7570:12011535,39621170:198439 -k1,7570:13229058,39621170:198438 -k1,7570:15970949,39621170:198439 -k1,7570:17273670,39621170:198439 -k1,7570:18219875,39621170:198439 -k1,7570:21595499,39621170:198439 -k1,7570:23529331,39621170:198439 -(1,7570:23529331,39621170:0,414482,115847 -r1,7586:23887597,39621170:358266,530329,115847 -k1,7570:23529331,39621170:-358266 -) -(1,7570:23529331,39621170:358266,414482,115847 -k1,7570:23529331,39621170:3277 -h1,7570:23884320,39621170:0,411205,112570 -) -k1,7570:24086035,39621170:198438 -k1,7570:25678425,39621170:198439 -k1,7570:28605128,39621170:198439 -k1,7570:29869838,39621170:198439 -k1,7570:32583029,39621170:0 -) -(1,7572:6630773,40287348:25952256,513147,126483 -g1,7570:8900940,40287348 -g1,7570:10844082,40287348 -g1,7570:11852681,40287348 -g1,7570:13070995,40287348 -g1,7570:14303072,40287348 -g1,7570:15161593,40287348 -g1,7570:16379907,40287348 -g1,7570:19596414,40287348 -k1,7572:32583029,40287348:12986615 -g1,7572:32583029,40287348 -) -v1,7572:6630773,41477814:0,393216,0 -(1,7581:6630773,43699694:25952256,2615096,196608 -g1,7581:6630773,43699694 -g1,7581:6630773,43699694 -g1,7581:6434165,43699694 -(1,7581:6434165,43699694:0,2615096,196608 -r1,7586:32779637,43699694:26345472,2811704,196608 -k1,7581:6434165,43699694:-26345472 -) -(1,7581:6434165,43699694:26345472,2615096,196608 -[1,7581:6630773,43699694:25952256,2418488,0 -(1,7574:6630773,41691724:25952256,410518,107478 -(1,7573:6630773,41691724:0,0,0 -g1,7573:6630773,41691724 -g1,7573:6630773,41691724 -g1,7573:6303093,41691724 -(1,7573:6303093,41691724:0,0,0 -) -g1,7573:6630773,41691724 -) -k1,7574:6630773,41691724:0 -g1,7574:10424521,41691724 -g1,7574:11056813,41691724 -g1,7574:12005251,41691724 -g1,7574:13269834,41691724 -g1,7574:13902126,41691724 -g1,7574:15799001,41691724 -g1,7574:17379730,41691724 -g1,7574:18012022,41691724 -h1,7574:19592750,41691724:0,0,0 -k1,7574:32583029,41691724:12990279 -g1,7574:32583029,41691724 -) -(1,7580:6630773,42357902:25952256,388497,0 -(1,7576:6630773,42357902:0,0,0 -g1,7576:6630773,42357902 -g1,7576:6630773,42357902 -g1,7576:6303093,42357902 -(1,7576:6303093,42357902:0,0,0 -) -g1,7576:6630773,42357902 -) -g1,7580:7579210,42357902 -g1,7580:7895356,42357902 -g1,7580:8211502,42357902 -g1,7580:8843794,42357902 -g1,7580:9792231,42357902 -g1,7580:10108377,42357902 -g1,7580:10424523,42357902 -g1,7580:10740669,42357902 -g1,7580:11056815,42357902 -g1,7580:11372961,42357902 -g1,7580:11689107,42357902 -h1,7580:12321398,42357902:0,0,0 -k1,7580:32583030,42357902:20261632 -g1,7580:32583030,42357902 -) -(1,7580:6630773,43024080:25952256,388497,9436 -h1,7580:6630773,43024080:0,0,0 -g1,7580:7579210,43024080 -g1,7580:8211502,43024080 -g1,7580:8843794,43024080 -g1,7580:9159940,43024080 -g1,7580:9792232,43024080 -h1,7580:12321397,43024080:0,0,0 -k1,7580:32583029,43024080:20261632 -g1,7580:32583029,43024080 -) -(1,7580:6630773,43690258:25952256,404226,9436 -h1,7580:6630773,43690258:0,0,0 -g1,7580:7579210,43690258 -g1,7580:8211502,43690258 -g1,7580:8843794,43690258 -g1,7580:9159940,43690258 -g1,7580:9792232,43690258 -h1,7580:12321397,43690258:0,0,0 -k1,7580:32583029,43690258:20261632 -g1,7580:32583029,43690258 -) -] -) -g1,7581:32583029,43699694 -g1,7581:6630773,43699694 -g1,7581:6630773,43699694 -g1,7581:32583029,43699694 -g1,7581:32583029,43699694 -) -h1,7581:6630773,43896302:0,0,0 -v1,7585:6630773,45786366:0,393216,0 -] -(1,7586:32583029,45706769:0,0,0 -g1,7586:32583029,45706769 -) -) -] -(1,7586:6630773,47279633:25952256,0,0 -h1,7586:6630773,47279633:25952256,0,0 -) -] -(1,7586:4262630,4025873:0,0,0 -[1,7586:-473656,4025873:0,0,0 -(1,7586:-473656,-710413:0,0,0 -(1,7586:-473656,-710413:0,0,0 -g1,7586:-473656,-710413 -) -g1,7586:-473656,-710413 -) -] -) -] -!28317 -}123 -Input:1002:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1003:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!200 -{124 -[1,7653:4262630,47279633:28320399,43253760,0 -(1,7653:4262630,4025873:0,0,0 -[1,7653:-473656,4025873:0,0,0 -(1,7653:-473656,-710413:0,0,0 -(1,7653:-473656,-644877:0,0,0 -k1,7653:-473656,-644877:-65536 +] +!27090 +}102 +Input:902:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:903:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:904:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!291 +{103 +[1,6569:4262630,47279633:28320399,43253760,0 +(1,6569:4262630,4025873:0,0,0 +[1,6569:-473656,4025873:0,0,0 +(1,6569:-473656,-710413:0,0,0 +(1,6569:-473656,-644877:0,0,0 +k1,6569:-473656,-644877:-65536 ) -(1,7653:-473656,4736287:0,0,0 -k1,7653:-473656,4736287:5209943 +(1,6569:-473656,4736287:0,0,0 +k1,6569:-473656,4736287:5209943 ) -g1,7653:-473656,-710413 +g1,6569:-473656,-710413 ) ] ) -[1,7653:6630773,47279633:25952256,43253760,0 -[1,7653:6630773,4812305:25952256,786432,0 -(1,7653:6630773,4812305:25952256,513147,126483 -(1,7653:6630773,4812305:25952256,513147,126483 -g1,7653:3078558,4812305 -[1,7653:3078558,4812305:0,0,0 -(1,7653:3078558,2439708:0,1703936,0 -k1,7653:1358238,2439708:-1720320 -(1,5950:1358238,2439708:1720320,1703936,0 -(1,5950:1358238,2439708:1179648,16384,0 -r1,7653:2537886,2439708:1179648,16384,0 +[1,6569:6630773,47279633:25952256,43253760,0 +[1,6569:6630773,4812305:25952256,786432,0 +(1,6569:6630773,4812305:25952256,505283,11795 +(1,6569:6630773,4812305:25952256,505283,11795 +g1,6569:3078558,4812305 +[1,6569:3078558,4812305:0,0,0 +(1,6569:3078558,2439708:0,1703936,0 +k1,6569:1358238,2439708:-1720320 +(1,6148:1358238,2439708:1720320,1703936,0 +(1,6148:1358238,2439708:1179648,16384,0 +r1,6569:2537886,2439708:1179648,16384,0 ) -g1,5950:3062174,2439708 -(1,5950:3062174,2439708:16384,1703936,0 -[1,5950:3062174,2439708:25952256,1703936,0 -(1,5950:3062174,1915420:25952256,1179648,0 -(1,5950:3062174,1915420:16384,1179648,0 -r1,7653:3078558,1915420:16384,1179648,0 +g1,6148:3062174,2439708 +(1,6148:3062174,2439708:16384,1703936,0 +[1,6148:3062174,2439708:25952256,1703936,0 +(1,6148:3062174,1915420:25952256,1179648,0 +(1,6148:3062174,1915420:16384,1179648,0 +r1,6569:3078558,1915420:16384,1179648,0 ) -k1,5950:29014430,1915420:25935872 -g1,5950:29014430,1915420 +k1,6148:29014430,1915420:25935872 +g1,6148:29014430,1915420 ) ] ) ) ) ] -[1,7653:3078558,4812305:0,0,0 -(1,7653:3078558,2439708:0,1703936,0 -g1,7653:29030814,2439708 -g1,7653:36135244,2439708 -(1,5950:36135244,2439708:1720320,1703936,0 -(1,5950:36135244,2439708:16384,1703936,0 -[1,5950:36135244,2439708:25952256,1703936,0 -(1,5950:36135244,1915420:25952256,1179648,0 -(1,5950:36135244,1915420:16384,1179648,0 -r1,7653:36151628,1915420:16384,1179648,0 +[1,6569:3078558,4812305:0,0,0 +(1,6569:3078558,2439708:0,1703936,0 +g1,6569:29030814,2439708 +g1,6569:36135244,2439708 +(1,6148:36135244,2439708:1720320,1703936,0 +(1,6148:36135244,2439708:16384,1703936,0 +[1,6148:36135244,2439708:25952256,1703936,0 +(1,6148:36135244,1915420:25952256,1179648,0 +(1,6148:36135244,1915420:16384,1179648,0 +r1,6569:36151628,1915420:16384,1179648,0 ) -k1,5950:62087500,1915420:25935872 -g1,5950:62087500,1915420 +k1,6148:62087500,1915420:25935872 +g1,6148:62087500,1915420 ) ] ) -g1,5950:36675916,2439708 -(1,5950:36675916,2439708:1179648,16384,0 -r1,7653:37855564,2439708:1179648,16384,0 +g1,6148:36675916,2439708 +(1,6148:36675916,2439708:1179648,16384,0 +r1,6569:37855564,2439708:1179648,16384,0 ) ) -k1,7653:3078556,2439708:-34777008 +k1,6569:3078556,2439708:-34777008 ) ] -[1,7653:3078558,4812305:0,0,0 -(1,7653:3078558,49800853:0,16384,2228224 -k1,7653:1358238,49800853:-1720320 -(1,5950:1358238,49800853:1720320,16384,2228224 -(1,5950:1358238,49800853:1179648,16384,0 -r1,7653:2537886,49800853:1179648,16384,0 +[1,6569:3078558,4812305:0,0,0 +(1,6569:3078558,49800853:0,16384,2228224 +k1,6569:1358238,49800853:-1720320 +(1,6148:1358238,49800853:1720320,16384,2228224 +(1,6148:1358238,49800853:1179648,16384,0 +r1,6569:2537886,49800853:1179648,16384,0 ) -g1,5950:3062174,49800853 -(1,5950:3062174,52029077:16384,1703936,0 -[1,5950:3062174,52029077:25952256,1703936,0 -(1,5950:3062174,51504789:25952256,1179648,0 -(1,5950:3062174,51504789:16384,1179648,0 -r1,7653:3078558,51504789:16384,1179648,0 +g1,6148:3062174,49800853 +(1,6148:3062174,52029077:16384,1703936,0 +[1,6148:3062174,52029077:25952256,1703936,0 +(1,6148:3062174,51504789:25952256,1179648,0 +(1,6148:3062174,51504789:16384,1179648,0 +r1,6569:3078558,51504789:16384,1179648,0 ) -k1,5950:29014430,51504789:25935872 -g1,5950:29014430,51504789 +k1,6148:29014430,51504789:25935872 +g1,6148:29014430,51504789 ) ] ) ) ) ] -[1,7653:3078558,4812305:0,0,0 -(1,7653:3078558,49800853:0,16384,2228224 -g1,7653:29030814,49800853 -g1,7653:36135244,49800853 -(1,5950:36135244,49800853:1720320,16384,2228224 -(1,5950:36135244,52029077:16384,1703936,0 -[1,5950:36135244,52029077:25952256,1703936,0 -(1,5950:36135244,51504789:25952256,1179648,0 -(1,5950:36135244,51504789:16384,1179648,0 -r1,7653:36151628,51504789:16384,1179648,0 +[1,6569:3078558,4812305:0,0,0 +(1,6569:3078558,49800853:0,16384,2228224 +g1,6569:29030814,49800853 +g1,6569:36135244,49800853 +(1,6148:36135244,49800853:1720320,16384,2228224 +(1,6148:36135244,52029077:16384,1703936,0 +[1,6148:36135244,52029077:25952256,1703936,0 +(1,6148:36135244,51504789:25952256,1179648,0 +(1,6148:36135244,51504789:16384,1179648,0 +r1,6569:36151628,51504789:16384,1179648,0 +) +k1,6148:62087500,51504789:25935872 +g1,6148:62087500,51504789 +) +] +) +g1,6148:36675916,49800853 +(1,6148:36675916,49800853:1179648,16384,0 +r1,6569:37855564,49800853:1179648,16384,0 +) +) +k1,6569:3078556,49800853:-34777008 +) +] +g1,6569:6630773,4812305 +k1,6569:24358919,4812305:16931228 +g1,6569:25981590,4812305 +g1,6569:26804066,4812305 +g1,6569:30302377,4812305 +) +) +] +[1,6569:6630773,45706769:25952256,40108032,0 +(1,6569:6630773,45706769:25952256,40108032,0 +(1,6569:6630773,45706769:0,0,0 +g1,6569:6630773,45706769 +) +[1,6569:6630773,45706769:25952256,40108032,0 +v1,6493:6630773,6254097:0,393216,0 +(1,6493:6630773,12725445:25952256,6864564,196608 +g1,6493:6630773,12725445 +g1,6493:6630773,12725445 +g1,6493:6434165,12725445 +(1,6493:6434165,12725445:0,6864564,196608 +r1,6569:32779637,12725445:26345472,7061172,196608 +k1,6493:6434165,12725445:-26345472 +) +(1,6493:6434165,12725445:26345472,6864564,196608 +[1,6493:6630773,12725445:25952256,6667956,0 +(1,6492:6630773,6481928:25952256,424439,79822 +h1,6492:6630773,6481928:0,0,0 +g1,6492:7626635,6481928 +g1,6492:8954451,6481928 +h1,6492:10282267,6481928:0,0,0 +k1,6492:32583029,6481928:22300762 +g1,6492:32583029,6481928 +) +(1,6492:6630773,7166783:25952256,398014,0 +h1,6492:6630773,7166783:0,0,0 +h1,6492:7294681,7166783:0,0,0 +k1,6492:32583029,7166783:25288348 +g1,6492:32583029,7166783 +) +(1,6492:6630773,7851638:25952256,431045,106246 +h1,6492:6630773,7851638:0,0,0 +g1,6492:7626635,7851638 +h1,6492:8622497,7851638:0,0,0 +k1,6492:32583029,7851638:23960532 +g1,6492:32583029,7851638 +) +(1,6492:6630773,8536493:25952256,424439,79822 +h1,6492:6630773,8536493:0,0,0 +g1,6492:7626635,8536493 +g1,6492:7958589,8536493 +g1,6492:9286405,8536493 +g1,6492:9618359,8536493 +g1,6492:10282267,8536493 +g1,6492:10614221,8536493 +g1,6492:11278129,8536493 +g1,6492:11610083,8536493 +g1,6492:12273991,8536493 +g1,6492:12605945,8536493 +g1,6492:13269853,8536493 +g1,6492:13601807,8536493 +g1,6492:14265715,8536493 +g1,6492:14597669,8536493 +g1,6492:15261577,8536493 +g1,6492:15593531,8536493 +g1,6492:16257439,8536493 +g1,6492:16589393,8536493 +g1,6492:17253301,8536493 +g1,6492:17585255,8536493 +g1,6492:18249163,8536493 +h1,6492:18913071,8536493:0,0,0 +k1,6492:32583029,8536493:13669958 +g1,6492:32583029,8536493 +) +(1,6492:6630773,9221348:25952256,398014,0 +h1,6492:6630773,9221348:0,0,0 +h1,6492:7294681,9221348:0,0,0 +k1,6492:32583029,9221348:25288348 +g1,6492:32583029,9221348 +) +(1,6492:6630773,9906203:25952256,431045,33029 +h1,6492:6630773,9906203:0,0,0 +g1,6492:7626635,9906203 +h1,6492:8622497,9906203:0,0,0 +k1,6492:32583029,9906203:23960532 +g1,6492:32583029,9906203 +) +(1,6492:6630773,10591058:25952256,424439,79822 +h1,6492:6630773,10591058:0,0,0 +g1,6492:7626635,10591058 +g1,6492:8954451,10591058 +g1,6492:10282267,10591058 +g1,6492:11610083,10591058 +g1,6492:12937899,10591058 +g1,6492:14265715,10591058 +h1,6492:15261577,10591058:0,0,0 +k1,6492:32583029,10591058:17321452 +g1,6492:32583029,10591058 +) +(1,6492:6630773,11275913:25952256,398014,0 +h1,6492:6630773,11275913:0,0,0 +h1,6492:7294681,11275913:0,0,0 +k1,6492:32583029,11275913:25288348 +g1,6492:32583029,11275913 +) +(1,6492:6630773,11960768:25952256,431045,33029 +h1,6492:6630773,11960768:0,0,0 +g1,6492:7626635,11960768 +h1,6492:8290543,11960768:0,0,0 +k1,6492:32583029,11960768:24292486 +g1,6492:32583029,11960768 +) +(1,6492:6630773,12645623:25952256,424439,79822 +h1,6492:6630773,12645623:0,0,0 +g1,6492:7626635,12645623 +g1,6492:8954451,12645623 +g1,6492:9286405,12645623 +g1,6492:10946175,12645623 +h1,6492:12605945,12645623:0,0,0 +k1,6492:32583029,12645623:19977084 +g1,6492:32583029,12645623 +) +] +) +g1,6493:32583029,12725445 +g1,6493:6630773,12725445 +g1,6493:6630773,12725445 +g1,6493:32583029,12725445 +g1,6493:32583029,12725445 +) +h1,6493:6630773,12922053:0,0,0 +(1,6497:6630773,13787133:25952256,513147,134348 +h1,6496:6630773,13787133:983040,0,0 +g1,6496:8642072,13787133 +g1,6496:10766093,13787133 +g1,6496:11321182,13787133 +g1,6496:14143817,13787133 +g1,6496:15910667,13787133 +g1,6496:16465756,13787133 +g1,6496:17658511,13787133 +g1,6496:18726092,13787133 +g1,6496:20932033,13787133 +(1,6496:20932033,13787133:0,414482,115847 +r1,6569:22345434,13787133:1413401,530329,115847 +k1,6496:20932033,13787133:-1413401 +) +(1,6496:20932033,13787133:1413401,414482,115847 +k1,6496:20932033,13787133:3277 +h1,6496:22342157,13787133:0,411205,112570 +) +g1,6496:22544663,13787133 +g1,6496:23395320,13787133 +k1,6497:32583029,13787133:8555942 +g1,6497:32583029,13787133 +) +v1,6499:6630773,14471988:0,393216,0 +(1,6511:6630773,19026449:25952256,4947677,196608 +g1,6511:6630773,19026449 +g1,6511:6630773,19026449 +g1,6511:6434165,19026449 +(1,6511:6434165,19026449:0,4947677,196608 +r1,6569:32779637,19026449:26345472,5144285,196608 +k1,6511:6434165,19026449:-26345472 +) +(1,6511:6434165,19026449:26345472,4947677,196608 +[1,6511:6630773,19026449:25952256,4751069,0 +(1,6501:6630773,14706425:25952256,431045,106246 +(1,6500:6630773,14706425:0,0,0 +g1,6500:6630773,14706425 +g1,6500:6630773,14706425 +g1,6500:6303093,14706425 +(1,6500:6303093,14706425:0,0,0 +) +g1,6500:6630773,14706425 +) +g1,6501:9618359,14706425 +g1,6501:10614221,14706425 +k1,6501:10614221,14706425:0 +h1,6501:11942037,14706425:0,0,0 +k1,6501:32583029,14706425:20640992 +g1,6501:32583029,14706425 +) +(1,6502:6630773,15391280:25952256,424439,6605 +h1,6502:6630773,15391280:0,0,0 +h1,6502:8622497,15391280:0,0,0 +k1,6502:32583029,15391280:23960532 +g1,6502:32583029,15391280 +) +(1,6510:6630773,16207207:25952256,431045,33029 +(1,6504:6630773,16207207:0,0,0 +g1,6504:6630773,16207207 +g1,6504:6630773,16207207 +g1,6504:6303093,16207207 +(1,6504:6303093,16207207:0,0,0 +) +g1,6504:6630773,16207207 +) +g1,6510:7626635,16207207 +h1,6510:8290543,16207207:0,0,0 +k1,6510:32583029,16207207:24292486 +g1,6510:32583029,16207207 +) +(1,6510:6630773,16892062:25952256,424439,79822 +h1,6510:6630773,16892062:0,0,0 +g1,6510:7626635,16892062 +g1,6510:8954451,16892062 +g1,6510:9618359,16892062 +g1,6510:10282267,16892062 +h1,6510:10614221,16892062:0,0,0 +k1,6510:32583029,16892062:21968808 +g1,6510:32583029,16892062 +) +(1,6510:6630773,17576917:25952256,398014,0 +h1,6510:6630773,17576917:0,0,0 +h1,6510:7294681,17576917:0,0,0 +k1,6510:32583029,17576917:25288348 +g1,6510:32583029,17576917 +) +(1,6510:6630773,18261772:25952256,431045,33029 +h1,6510:6630773,18261772:0,0,0 +g1,6510:7626635,18261772 +h1,6510:8290543,18261772:0,0,0 +k1,6510:32583029,18261772:24292486 +g1,6510:32583029,18261772 +) +(1,6510:6630773,18946627:25952256,424439,79822 +h1,6510:6630773,18946627:0,0,0 +g1,6510:7626635,18946627 +g1,6510:8954451,18946627 +g1,6510:9286405,18946627 +g1,6510:10946175,18946627 +h1,6510:12605945,18946627:0,0,0 +k1,6510:32583029,18946627:19977084 +g1,6510:32583029,18946627 +) +] +) +g1,6511:32583029,19026449 +g1,6511:6630773,19026449 +g1,6511:6630773,19026449 +g1,6511:32583029,19026449 +g1,6511:32583029,19026449 +) +h1,6511:6630773,19223057:0,0,0 +(1,6515:6630773,20088137:25952256,513147,134348 +h1,6514:6630773,20088137:983040,0,0 +k1,6514:8627336,20088137:184493 +k1,6514:12255091,20088137:184493 +k1,6514:13458668,20088137:184492 +k1,6514:16596869,20088137:184493 +k1,6514:19921192,20088137:184493 +k1,6514:20721723,20088137:184493 +k1,6514:21262076,20088137:184493 +k1,6514:22613765,20088137:184493 +k1,6514:25493753,20088137:184492 +(1,6514:25493753,20088137:0,452978,115847 +r1,6569:27258866,20088137:1765113,568825,115847 +k1,6514:25493753,20088137:-1765113 +) +(1,6514:25493753,20088137:1765113,452978,115847 +k1,6514:25493753,20088137:3277 +h1,6514:27255589,20088137:0,411205,112570 +) +k1,6514:27443359,20088137:184493 +k1,6514:31069803,20088137:184493 +k1,6514:32583029,20088137:0 +) +(1,6515:6630773,20953217:25952256,513147,126483 +k1,6514:8838222,20953217:178454 +k1,6514:9548174,20953217:178455 +k1,6514:13382882,20953217:178454 +k1,6514:16669054,20953217:178455 +k1,6514:18545546,20953217:178454 +k1,6514:20047828,20953217:178455 +k1,6514:21701497,20953217:178454 +k1,6514:23631729,20953217:178455 +k1,6514:26937561,20953217:178454 +k1,6514:30072345,20953217:178455 +k1,6514:32583029,20953217:0 +) +(1,6515:6630773,21818297:25952256,505283,126483 +g1,6514:8153829,21818297 +g1,6514:10003255,21818297 +g1,6514:13483872,21818297 +g1,6514:15125548,21818297 +(1,6514:15125548,21818297:0,452978,115847 +r1,6569:17594085,21818297:2468537,568825,115847 +k1,6514:15125548,21818297:-2468537 +) +(1,6514:15125548,21818297:2468537,452978,115847 +k1,6514:15125548,21818297:3277 +h1,6514:17590808,21818297:0,411205,112570 +) +g1,6514:17793314,21818297 +g1,6514:20364291,21818297 +g1,6514:22977866,21818297 +g1,6514:23828523,21818297 +g1,6514:24383612,21818297 +k1,6515:32583029,21818297:7032221 +g1,6515:32583029,21818297 +) +v1,6517:6630773,22503152:0,393216,0 +(1,6536:6630773,29400746:25952256,7290810,196608 +g1,6536:6630773,29400746 +g1,6536:6630773,29400746 +g1,6536:6434165,29400746 +(1,6536:6434165,29400746:0,7290810,196608 +r1,6569:32779637,29400746:26345472,7487418,196608 +k1,6536:6434165,29400746:-26345472 +) +(1,6536:6434165,29400746:26345472,7290810,196608 +[1,6536:6630773,29400746:25952256,7094202,0 +(1,6519:6630773,22730983:25952256,424439,106246 +(1,6518:6630773,22730983:0,0,0 +g1,6518:6630773,22730983 +g1,6518:6630773,22730983 +g1,6518:6303093,22730983 +(1,6518:6303093,22730983:0,0,0 +) +g1,6518:6630773,22730983 +) +k1,6519:6630773,22730983:0 +h1,6519:10946174,22730983:0,0,0 +k1,6519:32583030,22730983:21636856 +g1,6519:32583030,22730983 +) +(1,6527:6630773,23546910:25952256,431045,33029 +(1,6521:6630773,23546910:0,0,0 +g1,6521:6630773,23546910 +g1,6521:6630773,23546910 +g1,6521:6303093,23546910 +(1,6521:6303093,23546910:0,0,0 +) +g1,6521:6630773,23546910 +) +g1,6527:7626635,23546910 +h1,6527:8290543,23546910:0,0,0 +k1,6527:32583029,23546910:24292486 +g1,6527:32583029,23546910 +) +(1,6527:6630773,24231765:25952256,424439,79822 +h1,6527:6630773,24231765:0,0,0 +g1,6527:7626635,24231765 +g1,6527:8954451,24231765 +g1,6527:9618359,24231765 +g1,6527:10282267,24231765 +h1,6527:10614221,24231765:0,0,0 +k1,6527:32583029,24231765:21968808 +g1,6527:32583029,24231765 +) +(1,6527:6630773,24916620:25952256,398014,0 +h1,6527:6630773,24916620:0,0,0 +h1,6527:7294681,24916620:0,0,0 +k1,6527:32583029,24916620:25288348 +g1,6527:32583029,24916620 +) +(1,6527:6630773,25601475:25952256,431045,33029 +h1,6527:6630773,25601475:0,0,0 +g1,6527:7626635,25601475 +h1,6527:8290543,25601475:0,0,0 +k1,6527:32583029,25601475:24292486 +g1,6527:32583029,25601475 +) +(1,6527:6630773,26286330:25952256,424439,79822 +h1,6527:6630773,26286330:0,0,0 +g1,6527:7626635,26286330 +g1,6527:8954451,26286330 +g1,6527:9286405,26286330 +g1,6527:10946175,26286330 +h1,6527:12605945,26286330:0,0,0 +k1,6527:32583029,26286330:19977084 +g1,6527:32583029,26286330 +) +(1,6529:6630773,27102257:25952256,424439,79822 +(1,6528:6630773,27102257:0,0,0 +g1,6528:6630773,27102257 +g1,6528:6630773,27102257 +g1,6528:6303093,27102257 +(1,6528:6303093,27102257:0,0,0 +) +g1,6528:6630773,27102257 +) +k1,6529:6630773,27102257:0 +h1,6529:10282266,27102257:0,0,0 +k1,6529:32583030,27102257:22300764 +g1,6529:32583030,27102257 +) +(1,6535:6630773,27918184:25952256,431045,6605 +(1,6531:6630773,27918184:0,0,0 +g1,6531:6630773,27918184 +g1,6531:6630773,27918184 +g1,6531:6303093,27918184 +(1,6531:6303093,27918184:0,0,0 +) +g1,6531:6630773,27918184 +) +g1,6535:7626635,27918184 +g1,6535:9286405,27918184 +g1,6535:10282267,27918184 +h1,6535:10614221,27918184:0,0,0 +k1,6535:32583029,27918184:21968808 +g1,6535:32583029,27918184 +) +(1,6535:6630773,28603039:25952256,431045,79822 +h1,6535:6630773,28603039:0,0,0 +g1,6535:7626635,28603039 +g1,6535:7958589,28603039 +g1,6535:8622497,28603039 +g1,6535:9618359,28603039 +g1,6535:10946175,28603039 +g1,6535:12937899,28603039 +g1,6535:13601807,28603039 +g1,6535:14265715,28603039 +h1,6535:14597669,28603039:0,0,0 +k1,6535:32583029,28603039:17985360 +g1,6535:32583029,28603039 +) +(1,6535:6630773,29287894:25952256,431045,112852 +h1,6535:6630773,29287894:0,0,0 +g1,6535:7626635,29287894 +g1,6535:7958589,29287894 +g1,6535:8622497,29287894 +g1,6535:9618359,29287894 +g1,6535:11278129,29287894 +g1,6535:13269853,29287894 +g1,6535:14929623,29287894 +h1,6535:16589393,29287894:0,0,0 +k1,6535:32583029,29287894:15993636 +g1,6535:32583029,29287894 +) +] +) +g1,6536:32583029,29400746 +g1,6536:6630773,29400746 +g1,6536:6630773,29400746 +g1,6536:32583029,29400746 +g1,6536:32583029,29400746 +) +h1,6536:6630773,29597354:0,0,0 +(1,6541:6630773,31714172:25952256,555811,12975 +(1,6541:6630773,31714172:2450326,534184,12975 +g1,6541:6630773,31714172 +g1,6541:9081099,31714172 +) +g1,6541:11812575,31714172 +k1,6541:32583029,31714172:19265944 +g1,6541:32583029,31714172 +) +(1,6544:6630773,32972468:25952256,513147,126483 +g1,6543:8313737,32972468 +g1,6543:9617248,32972468 +g1,6543:10564243,32972468 +g1,6543:13054611,32972468 +g1,6543:14323388,32972468 +g1,6543:15846444,32972468 +g1,6543:16704965,32972468 +g1,6543:18228021,32972468 +g1,6543:19531532,32972468 +g1,6543:20478527,32972468 +g1,6543:24469669,32972468 +g1,6543:25320326,32972468 +g1,6543:26290258,32972468 +g1,6543:29285908,32972468 +k1,6544:32583029,32972468:1262883 +g1,6544:32583029,32972468 +) +v1,6546:6630773,33657323:0,393216,0 +(1,6563:6630773,41662483:25952256,8398376,196608 +g1,6563:6630773,41662483 +g1,6563:6630773,41662483 +g1,6563:6434165,41662483 +(1,6563:6434165,41662483:0,8398376,196608 +r1,6569:32779637,41662483:26345472,8594984,196608 +k1,6563:6434165,41662483:-26345472 +) +(1,6563:6434165,41662483:26345472,8398376,196608 +[1,6563:6630773,41662483:25952256,8201768,0 +(1,6548:6630773,33885154:25952256,424439,86428 +(1,6547:6630773,33885154:0,0,0 +g1,6547:6630773,33885154 +g1,6547:6630773,33885154 +g1,6547:6303093,33885154 +(1,6547:6303093,33885154:0,0,0 +) +g1,6547:6630773,33885154 +) +g1,6548:8954451,33885154 +g1,6548:9950313,33885154 +g1,6548:13269853,33885154 +g1,6548:15261577,33885154 +h1,6548:16257439,33885154:0,0,0 +k1,6548:32583029,33885154:16325590 +g1,6548:32583029,33885154 +) +(1,6549:6630773,34570009:25952256,424439,86428 +h1,6549:6630773,34570009:0,0,0 +g1,6549:8954451,34570009 +g1,6549:9950313,34570009 +g1,6549:13269853,34570009 +h1,6549:14929623,34570009:0,0,0 +k1,6549:32583029,34570009:17653406 +g1,6549:32583029,34570009 +) +(1,6550:6630773,35254864:25952256,424439,86428 +h1,6550:6630773,35254864:0,0,0 +g1,6550:10614220,35254864 +g1,6550:11610082,35254864 +g1,6550:13933760,35254864 +g1,6550:14597668,35254864 +g1,6550:17253300,35254864 +g1,6550:17917208,35254864 +g1,6550:18581116,35254864 +h1,6550:20904794,35254864:0,0,0 +k1,6550:32583029,35254864:11678235 +g1,6550:32583029,35254864 +) +(1,6551:6630773,35939719:25952256,424439,79822 +h1,6551:6630773,35939719:0,0,0 +k1,6551:6630773,35939719:0 +h1,6551:11942036,35939719:0,0,0 +k1,6551:32583028,35939719:20640992 +g1,6551:32583028,35939719 +) +(1,6562:6630773,36755646:25952256,431045,6605 +(1,6553:6630773,36755646:0,0,0 +g1,6553:6630773,36755646 +g1,6553:6630773,36755646 +g1,6553:6303093,36755646 +(1,6553:6303093,36755646:0,0,0 +) +g1,6553:6630773,36755646 +) +g1,6562:7626635,36755646 +g1,6562:9286405,36755646 +g1,6562:10282267,36755646 +h1,6562:10614221,36755646:0,0,0 +k1,6562:32583029,36755646:21968808 +g1,6562:32583029,36755646 +) +(1,6562:6630773,37440501:25952256,431045,33029 +h1,6562:6630773,37440501:0,0,0 +g1,6562:7626635,37440501 +g1,6562:7958589,37440501 +g1,6562:8622497,37440501 +g1,6562:10946175,37440501 +g1,6562:11942037,37440501 +h1,6562:12273991,37440501:0,0,0 +k1,6562:32583029,37440501:20309038 +g1,6562:32583029,37440501 +) +(1,6562:6630773,38125356:25952256,431045,33029 +h1,6562:6630773,38125356:0,0,0 +g1,6562:7626635,38125356 +g1,6562:7958589,38125356 +g1,6562:8290543,38125356 +g1,6562:9618359,38125356 +g1,6562:10282267,38125356 +g1,6562:11610083,38125356 +h1,6562:12605945,38125356:0,0,0 +k1,6562:32583029,38125356:19977084 +g1,6562:32583029,38125356 +) +(1,6562:6630773,38810211:25952256,431045,33029 +h1,6562:6630773,38810211:0,0,0 +g1,6562:7626635,38810211 +g1,6562:7958589,38810211 +g1,6562:8290543,38810211 +g1,6562:9618359,38810211 +g1,6562:10282267,38810211 +g1,6562:11610083,38810211 +h1,6562:12937899,38810211:0,0,0 +k1,6562:32583029,38810211:19645130 +g1,6562:32583029,38810211 +) +(1,6562:6630773,39495066:25952256,431045,33029 +h1,6562:6630773,39495066:0,0,0 +g1,6562:7626635,39495066 +g1,6562:7958589,39495066 +g1,6562:8290543,39495066 +g1,6562:9618359,39495066 +g1,6562:10282267,39495066 +g1,6562:11610083,39495066 +h1,6562:12273991,39495066:0,0,0 +k1,6562:32583029,39495066:20309038 +g1,6562:32583029,39495066 +) +(1,6562:6630773,40179921:25952256,431045,33029 +h1,6562:6630773,40179921:0,0,0 +g1,6562:7626635,40179921 +g1,6562:7958589,40179921 +g1,6562:8622497,40179921 +g1,6562:10946175,40179921 +g1,6562:11942037,40179921 +h1,6562:12273991,40179921:0,0,0 +k1,6562:32583029,40179921:20309038 +g1,6562:32583029,40179921 +) +(1,6562:6630773,40864776:25952256,431045,33029 +h1,6562:6630773,40864776:0,0,0 +g1,6562:7626635,40864776 +g1,6562:7958589,40864776 +g1,6562:8290543,40864776 +g1,6562:9618359,40864776 +g1,6562:10282267,40864776 +g1,6562:11610083,40864776 +h1,6562:12605945,40864776:0,0,0 +k1,6562:32583029,40864776:19977084 +g1,6562:32583029,40864776 +) +(1,6562:6630773,41549631:25952256,431045,112852 +h1,6562:6630773,41549631:0,0,0 +g1,6562:7626635,41549631 +g1,6562:7958589,41549631 +g1,6562:8290543,41549631 +g1,6562:9618359,41549631 +g1,6562:10282267,41549631 +g1,6562:11942037,41549631 +h1,6562:13269853,41549631:0,0,0 +k1,6562:32583029,41549631:19313176 +g1,6562:32583029,41549631 +) +] +) +g1,6563:32583029,41662483 +g1,6563:6630773,41662483 +g1,6563:6630773,41662483 +g1,6563:32583029,41662483 +g1,6563:32583029,41662483 +) +h1,6563:6630773,41859091:0,0,0 +(1,6567:6630773,42724171:25952256,505283,134348 +h1,6566:6630773,42724171:983040,0,0 +k1,6566:8255260,42724171:153859 +k1,6566:10526632,42724171:153904 +k1,6566:11674062,42724171:153904 +k1,6566:12932248,42724171:153904 +k1,6566:17039284,42724171:153904 +k1,6566:17940954,42724171:153904 +k1,6566:21886772,42724171:153905 +k1,6566:24050665,42724171:153904 +k1,6566:24560429,42724171:153904 +k1,6566:26587352,42724171:153904 +k1,6566:29927616,42724171:153904 +k1,6566:30697558,42724171:153904 +k1,6566:32583029,42724171:0 +) +(1,6567:6630773,43589251:25952256,513147,7863 +k1,6566:9020569,43589251:158295 +k1,6566:11802269,43589251:158294 +k1,6566:13284391,43589251:158295 +k1,6566:14434245,43589251:158294 +k1,6566:17116331,43589251:158295 +k1,6566:18762948,43589251:158294 +k1,6566:19789595,43589251:158295 +k1,6566:22659769,43589251:158294 +k1,6566:23837149,43589251:158295 +k1,6566:25301576,43589251:158294 +k1,6566:27114655,43589251:158295 +k1,6566:30789611,43589251:158294 +k1,6566:31563944,43589251:158295 +k1,6566:32583029,43589251:0 +) +(1,6567:6630773,44454331:25952256,505283,134348 +g1,6566:8863584,44454331 +g1,6566:11033481,44454331 +g1,6566:12500176,44454331 +g1,6566:13055265,44454331 +g1,6566:15127513,44454331 +k1,6567:32583029,44454331:16125135 +g1,6567:32583029,44454331 +) +] +(1,6569:32583029,45706769:0,0,0 +g1,6569:32583029,45706769 +) +) +] +(1,6569:6630773,47279633:25952256,0,0 +h1,6569:6630773,47279633:25952256,0,0 +) +] +(1,6569:4262630,4025873:0,0,0 +[1,6569:-473656,4025873:0,0,0 +(1,6569:-473656,-710413:0,0,0 +(1,6569:-473656,-710413:0,0,0 +g1,6569:-473656,-710413 +) +g1,6569:-473656,-710413 +) +] +) +] +!21216 +}103 +Input:905:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:906:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:907:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:908:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:909:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:910:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:911:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:912:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:913:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!849 +{104 +[1,6658:4262630,47279633:28320399,43253760,0 +(1,6658:4262630,4025873:0,0,0 +[1,6658:-473656,4025873:0,0,0 +(1,6658:-473656,-710413:0,0,0 +(1,6658:-473656,-644877:0,0,0 +k1,6658:-473656,-644877:-65536 +) +(1,6658:-473656,4736287:0,0,0 +k1,6658:-473656,4736287:5209943 ) -k1,5950:62087500,51504789:25935872 -g1,5950:62087500,51504789 +g1,6658:-473656,-710413 ) ] ) -g1,5950:36675916,49800853 -(1,5950:36675916,49800853:1179648,16384,0 -r1,7653:37855564,49800853:1179648,16384,0 +[1,6658:6630773,47279633:25952256,43253760,0 +[1,6658:6630773,4812305:25952256,786432,0 +(1,6658:6630773,4812305:25952256,485622,11795 +(1,6658:6630773,4812305:25952256,485622,11795 +g1,6658:3078558,4812305 +[1,6658:3078558,4812305:0,0,0 +(1,6658:3078558,2439708:0,1703936,0 +k1,6658:1358238,2439708:-1720320 +(1,6148:1358238,2439708:1720320,1703936,0 +(1,6148:1358238,2439708:1179648,16384,0 +r1,6658:2537886,2439708:1179648,16384,0 ) +g1,6148:3062174,2439708 +(1,6148:3062174,2439708:16384,1703936,0 +[1,6148:3062174,2439708:25952256,1703936,0 +(1,6148:3062174,1915420:25952256,1179648,0 +(1,6148:3062174,1915420:16384,1179648,0 +r1,6658:3078558,1915420:16384,1179648,0 ) -k1,7653:3078556,49800853:-34777008 +k1,6148:29014430,1915420:25935872 +g1,6148:29014430,1915420 ) ] -g1,7653:6630773,4812305 -g1,7653:6630773,4812305 -g1,7653:8364200,4812305 -g1,7653:10765439,4812305 -k1,7653:31387651,4812305:20622212 -) -) -] -[1,7653:6630773,45706769:25952256,40108032,0 -(1,7653:6630773,45706769:25952256,40108032,0 -(1,7653:6630773,45706769:0,0,0 -g1,7653:6630773,45706769 -) -[1,7653:6630773,45706769:25952256,40108032,0 -v1,7586:6630773,6254097:0,393216,0 -(1,7586:6630773,7613534:25952256,1752653,0 -g1,7586:6630773,7613534 -g1,7586:6303093,7613534 -r1,7653:6401397,7613534:98304,1752653,0 -g1,7586:6600626,7613534 -g1,7586:6797234,7613534 -[1,7586:6797234,7613534:25785795,1752653,0 -(1,7586:6797234,6649200:25785795,788319,218313 -(1,7585:6797234,6649200:0,788319,218313 -r1,7653:7917113,6649200:1119879,1006632,218313 -k1,7585:6797234,6649200:-1119879 -) -(1,7585:6797234,6649200:1119879,788319,218313 -) -k1,7585:8148938,6649200:231825 -k1,7585:8476618,6649200:327680 -k1,7585:11498310,6649200:231824 -(1,7585:11498310,6649200:0,452978,122846 -r1,7653:15373694,6649200:3875384,575824,122846 -k1,7585:11498310,6649200:-3875384 -) -(1,7585:11498310,6649200:3875384,452978,122846 -k1,7585:11498310,6649200:3277 -h1,7585:15370417,6649200:0,411205,112570 -) -k1,7585:15605519,6649200:231825 -k1,7585:16941625,6649200:231824 -k1,7585:17921216,6649200:231825 -k1,7585:19438856,6649200:231824 -k1,7585:21183907,6649200:231825 -k1,7585:22067159,6649200:231824 -k1,7585:25373278,6649200:231825 -k1,7585:27030510,6649200:231824 -k1,7585:29107173,6649200:231825 -k1,7585:30728360,6649200:231824 -k1,7585:32583029,6649200:0 -) -(1,7586:6797234,7490688:25785795,505283,122846 -g1,7585:7805833,7490688 -g1,7585:9430470,7490688 -g1,7585:12386799,7490688 -g1,7585:13818105,7490688 -(1,7585:13818105,7490688:0,452978,122846 -r1,7653:19100336,7490688:5282231,575824,122846 -k1,7585:13818105,7490688:-5282231 -) -(1,7585:13818105,7490688:5282231,452978,122846 -k1,7585:13818105,7490688:3277 -h1,7585:19097059,7490688:0,411205,112570 -) -k1,7586:32583029,7490688:13101929 -g1,7586:32583029,7490688 -) -] -g1,7586:32583029,7613534 -) -h1,7586:6630773,7613534:0,0,0 -(1,7588:6630773,9704794:25952256,555811,147783 -(1,7588:6630773,9704794:2450326,534184,12975 -g1,7588:6630773,9704794 -g1,7588:9081099,9704794 -) -g1,7588:13947148,9704794 -g1,7588:17258945,9704794 -g1,7588:18826173,9704794 -k1,7588:32583029,9704794:11966871 -g1,7588:32583029,9704794 -) -(1,7591:6630773,10939498:25952256,513147,134348 -k1,7590:7630634,10939498:181972 -k1,7590:9206556,10939498:181971 -k1,7590:12342236,10939498:181972 -k1,7590:13183499,10939498:181971 -k1,7590:15673649,10939498:181972 -k1,7590:17047065,10939498:181971 -k1,7590:18726535,10939498:181972 -k1,7590:19559934,10939498:181971 -k1,7590:21982582,10939498:181972 -k1,7590:23183638,10939498:181971 -k1,7590:25979841,10939498:181972 -k1,7590:26821104,10939498:181971 -k1,7590:29716267,10939498:181972 -k1,7590:30581123,10939498:181971 -k1,7590:31966991,10939498:181972 -k1,7590:32583029,10939498:0 -) -(1,7591:6630773,11780986:25952256,513147,134348 -k1,7590:7190965,11780986:204332 -k1,7590:8784660,11780986:204332 -k1,7590:10865287,11780986:204331 -k1,7590:11937971,11780986:204332 -k1,7590:13234788,11780986:204332 -k1,7590:14458205,11780986:204332 -k1,7590:17877078,11780986:204332 -k1,7590:20828023,11780986:204331 -k1,7590:22223800,11780986:204332 -k1,7590:25167537,11780986:204332 -k1,7590:26133397,11780986:204332 -k1,7590:28075743,11780986:204331 -k1,7590:28962960,11780986:204332 -k1,7590:31955194,11780986:204332 -k1,7590:32583029,11780986:0 -) -(1,7591:6630773,12622474:25952256,513147,134348 -k1,7590:7204011,12622474:217378 -k1,7590:10867927,12622474:217378 -k1,7590:13218501,12622474:217377 -k1,7590:14929445,12622474:217378 -k1,7590:15832985,12622474:217378 -k1,7590:17439726,12622474:217378 -k1,7590:19863700,12622474:217377 -k1,7590:21100163,12622474:217378 -k1,7590:22623674,12622474:217378 -k1,7590:24590208,12622474:217378 -k1,7590:28771202,12622474:217377 -k1,7590:29640008,12622474:217378 -k1,7590:31391584,12622474:217378 -k1,7590:32583029,12622474:0 -) -(1,7591:6630773,13463962:25952256,505283,7863 -g1,7590:7849087,13463962 -g1,7590:10289647,13463962 -g1,7590:11140304,13463962 -k1,7591:32583029,13463962:18555864 -g1,7591:32583029,13463962 -) -(1,7593:6630773,14305450:25952256,513147,134348 -h1,7592:6630773,14305450:983040,0,0 -k1,7592:9092154,14305450:281654 -k1,7592:10975507,14305450:281653 -k1,7592:13105276,14305450:281654 -k1,7592:14624904,14305450:281653 -k1,7592:15565850,14305450:281654 -k1,7592:18731087,14305450:281653 -k1,7592:20031826,14305450:281654 -k1,7592:22052805,14305450:281653 -k1,7592:22993751,14305450:281654 -k1,7592:25988595,14305450:281653 -k1,7592:28480123,14305450:281654 -k1,7592:30295975,14305450:281654 -k1,7592:31193666,14305450:281653 -k1,7592:32583029,14305450:0 -) -(1,7593:6630773,15146938:25952256,513147,134348 -k1,7592:9004184,15146938:166814 -k1,7592:10569536,15146938:166814 -k1,7592:13469857,15146938:166814 -k1,7592:14828117,15146938:166815 -k1,7592:17181867,15146938:166814 -k1,7592:17880178,15146938:166814 -k1,7592:18698420,15146938:166814 -k1,7592:19957719,15146938:166814 -k1,7592:24265098,15146938:166814 -k1,7592:26036890,15146938:166815 -k1,7592:27072056,15146938:166814 -k1,7592:28961812,15146938:166814 -k1,7592:30147711,15146938:166814 -k1,7592:32583029,15146938:0 -) -(1,7593:6630773,15988426:25952256,505283,134348 -k1,7592:9443981,15988426:198977 -k1,7592:10834403,15988426:198977 -k1,7592:12912954,15988426:198978 -k1,7592:15726162,15988426:198977 -k1,7592:16793491,15988426:198977 -k1,7592:18096750,15988426:198977 -k1,7592:19388213,15988426:198978 -k1,7592:21970079,15988426:198977 -k1,7592:24237372,15988426:198977 -k1,7592:25119234,15988426:198977 -k1,7592:28262745,15988426:198978 -k1,7592:29147884,15988426:198977 -k1,7592:31773659,15988426:198977 -k1,7592:32583029,15988426:0 -) -(1,7593:6630773,16829914:25952256,505283,134348 -k1,7592:7794995,16829914:145137 -k1,7592:11294920,16829914:145137 -k1,7592:12913305,16829914:145136 -k1,7592:15042217,16829914:145137 -k1,7592:15953470,16829914:145137 -k1,7592:18811798,16829914:145137 -k1,7592:19608362,16829914:145136 -k1,7592:20501265,16829914:145137 -k1,7592:23452654,16829914:145137 -k1,7592:25064487,16829914:145137 -k1,7592:26953536,16829914:145136 -k1,7592:30316491,16829914:145137 -k1,7592:31074390,16829914:145137 -k1,7592:32583029,16829914:0 -) -(1,7593:6630773,17671402:25952256,505283,134348 -g1,7592:9265320,17671402 -k1,7593:32583030,17671402:20529808 -g1,7593:32583030,17671402 -) -v1,7595:6630773,18652152:0,393216,0 -(1,7614:6630773,25526460:25952256,7267524,196608 -g1,7614:6630773,25526460 -g1,7614:6630773,25526460 -g1,7614:6434165,25526460 -(1,7614:6434165,25526460:0,7267524,196608 -r1,7653:32779637,25526460:26345472,7464132,196608 -k1,7614:6434165,25526460:-26345472 -) -(1,7614:6434165,25526460:26345472,7267524,196608 -[1,7614:6630773,25526460:25952256,7070916,0 -(1,7597:6630773,18866062:25952256,410518,101187 -(1,7596:6630773,18866062:0,0,0 -g1,7596:6630773,18866062 -g1,7596:6630773,18866062 -g1,7596:6303093,18866062 -(1,7596:6303093,18866062:0,0,0 -) -g1,7596:6630773,18866062 -) -g1,7597:12005250,18866062 -g1,7597:12953688,18866062 -g1,7597:17063583,18866062 -g1,7597:17695875,18866062 -g1,7597:19592750,18866062 -g1,7597:20225042,18866062 -g1,7597:20857334,18866062 -g1,7597:21805772,18866062 -g1,7597:22438064,18866062 -g1,7597:23070356,18866062 -g1,7597:25283377,18866062 -h1,7597:26864105,18866062:0,0,0 -k1,7597:32583029,18866062:5718924 -g1,7597:32583029,18866062 -) -(1,7598:6630773,19532240:25952256,410518,101187 -h1,7598:6630773,19532240:0,0,0 -g1,7598:13902125,19532240 -h1,7598:14534417,19532240:0,0,0 -k1,7598:32583029,19532240:18048612 -g1,7598:32583029,19532240 -) -(1,7604:6630773,20198418:25952256,379060,7863 -(1,7600:6630773,20198418:0,0,0 -g1,7600:6630773,20198418 -g1,7600:6630773,20198418 -g1,7600:6303093,20198418 -(1,7600:6303093,20198418:0,0,0 -) -g1,7600:6630773,20198418 -) -g1,7604:7579210,20198418 -g1,7604:7895356,20198418 -g1,7604:8211502,20198418 -g1,7604:8843794,20198418 -g1,7604:9476086,20198418 -h1,7604:9792232,20198418:0,0,0 -k1,7604:32583028,20198418:22790796 -g1,7604:32583028,20198418 -) -(1,7604:6630773,20864596:25952256,388497,9436 -h1,7604:6630773,20864596:0,0,0 -g1,7604:7579210,20864596 -g1,7604:8211502,20864596 -g1,7604:8843794,20864596 -g1,7604:9476086,20864596 -h1,7604:9792232,20864596:0,0,0 -k1,7604:32583028,20864596:22790796 -g1,7604:32583028,20864596 -) -(1,7604:6630773,21530774:25952256,388497,9436 -h1,7604:6630773,21530774:0,0,0 -g1,7604:7579210,21530774 -g1,7604:8211502,21530774 -g1,7604:8843794,21530774 -g1,7604:9476086,21530774 -h1,7604:9792232,21530774:0,0,0 -k1,7604:32583028,21530774:22790796 -g1,7604:32583028,21530774 -) -(1,7606:6630773,22852312:25952256,410518,101187 -(1,7605:6630773,22852312:0,0,0 -g1,7605:6630773,22852312 -g1,7605:6630773,22852312 -g1,7605:6303093,22852312 -(1,7605:6303093,22852312:0,0,0 -) -g1,7605:6630773,22852312 -) -g1,7606:12005250,22852312 -g1,7606:12953688,22852312 -g1,7606:18644311,22852312 -g1,7606:19276603,22852312 -g1,7606:21489624,22852312 -g1,7606:23070353,22852312 -h1,7606:24651081,22852312:0,0,0 -k1,7606:32583029,22852312:7931948 -g1,7606:32583029,22852312 -) -(1,7607:6630773,23518490:25952256,410518,101187 -h1,7607:6630773,23518490:0,0,0 -g1,7607:13902125,23518490 -h1,7607:14534417,23518490:0,0,0 -k1,7607:32583029,23518490:18048612 -g1,7607:32583029,23518490 -) -(1,7613:6630773,24184668:25952256,379060,7863 -(1,7609:6630773,24184668:0,0,0 -g1,7609:6630773,24184668 -g1,7609:6630773,24184668 -g1,7609:6303093,24184668 -(1,7609:6303093,24184668:0,0,0 -) -g1,7609:6630773,24184668 -) -g1,7613:7579210,24184668 -g1,7613:7895356,24184668 -g1,7613:8211502,24184668 -g1,7613:8843794,24184668 -g1,7613:9476086,24184668 -h1,7613:9792232,24184668:0,0,0 -k1,7613:32583028,24184668:22790796 -g1,7613:32583028,24184668 -) -(1,7613:6630773,24850846:25952256,388497,9436 -h1,7613:6630773,24850846:0,0,0 -g1,7613:7579210,24850846 -g1,7613:8211502,24850846 -g1,7613:8843794,24850846 -g1,7613:9476086,24850846 -h1,7613:9792232,24850846:0,0,0 -k1,7613:32583028,24850846:22790796 -g1,7613:32583028,24850846 -) -(1,7613:6630773,25517024:25952256,388497,9436 -h1,7613:6630773,25517024:0,0,0 -g1,7613:7579210,25517024 -g1,7613:8211502,25517024 -g1,7613:8843794,25517024 -g1,7613:9476086,25517024 -h1,7613:9792232,25517024:0,0,0 -k1,7613:32583028,25517024:22790796 -g1,7613:32583028,25517024 -) -] -) -g1,7614:32583029,25526460 -g1,7614:6630773,25526460 -g1,7614:6630773,25526460 -g1,7614:32583029,25526460 -g1,7614:32583029,25526460 -) -h1,7614:6630773,25723068:0,0,0 -v1,7618:6630773,27193700:0,393216,0 -(1,7653:6630773,45706769:25952256,18906285,0 -g1,7653:6630773,45706769 -g1,7653:6303093,45706769 -r1,7653:6401397,45706769:98304,18906285,0 -g1,7653:6600626,45706769 -g1,7653:6797234,45706769 -[1,7653:6797234,45706769:25785795,18906285,0 -(1,7620:6797234,27614284:25785795,813800,267386 -(1,7618:6797234,27614284:0,813800,267386 -r1,7653:8134168,27614284:1336934,1081186,267386 -k1,7618:6797234,27614284:-1336934 -) -(1,7618:6797234,27614284:1336934,813800,267386 -) -k1,7618:8294130,27614284:159962 -k1,7618:8621810,27614284:327680 -k1,7618:10565006,27614284:159961 -k1,7618:12460361,27614284:159962 -k1,7618:13639408,27614284:159962 -k1,7618:17013910,27614284:159961 -k1,7618:19920486,27614284:159962 -(1,7618:19920486,27614284:0,452978,115847 -r1,7653:20982176,27614284:1061690,568825,115847 -k1,7618:19920486,27614284:-1061690 -) -(1,7618:19920486,27614284:1061690,452978,115847 -g1,7618:20627187,27614284 -h1,7618:20978899,27614284:0,411205,112570 -) -k1,7618:21142138,27614284:159962 -k1,7618:22111469,27614284:159961 -k1,7618:23738127,27614284:159962 -k1,7618:24917174,27614284:159962 -k1,7618:29483121,27614284:159961 -k1,7618:30834528,27614284:159962 -k1,7620:32583029,27614284:0 -) -(1,7620:6797234,28455772:25785795,505283,134348 -k1,7618:10169952,28455772:253860 -k1,7618:11817763,28455772:253860 -k1,7618:12427482,28455772:253859 -(1,7618:12427482,28455772:0,452978,115847 -r1,7653:14896019,28455772:2468537,568825,115847 -k1,7618:12427482,28455772:-2468537 -) -(1,7618:12427482,28455772:2468537,452978,115847 -k1,7618:12427482,28455772:3277 -h1,7618:14892742,28455772:0,411205,112570 -) -k1,7618:15149879,28455772:253860 -k1,7618:17381616,28455772:253860 -k1,7618:18321638,28455772:253860 -k1,7618:21647825,28455772:253859 -k1,7618:22553113,28455772:253860 -k1,7618:24434887,28455772:253860 -k1,7618:25861186,28455772:253860 -k1,7618:29001906,28455772:253859 -k1,7618:30274851,28455772:253860 -k1,7618:32583029,28455772:0 -) -(1,7620:6797234,29297260:25785795,513147,126483 -k1,7618:7750408,29297260:270289 -k1,7618:10244989,29297260:270289 -k1,7618:11506838,29297260:270289 -k1,7618:14767536,29297260:270290 -k1,7618:16727343,29297260:270289 -k1,7618:18016717,29297260:270289 -k1,7618:20355322,29297260:270289 -k1,7618:21284903,29297260:270289 -k1,7618:22574277,29297260:270289 -k1,7618:25557757,29297260:270289 -k1,7618:26819607,29297260:270290 -k1,7618:28329837,29297260:270289 -k1,7619:29429156,29297260:270289 -k1,7619:31563944,29297260:270289 -k1,7619:32583029,29297260:0 -) -(1,7620:6797234,30138748:25785795,513147,134348 -k1,7619:12068295,30138748:194642 -k1,7619:14898140,30138748:194642 -k1,7619:17475671,30138748:194642 -k1,7619:20051236,30138748:194642 -k1,7619:21437322,30138748:194641 -k1,7619:24014853,30138748:194642 -k1,7619:26958730,30138748:194642 -k1,7619:28666598,30138748:194642 -k1,7619:31900144,30138748:194642 -k1,7619:32583029,30138748:0 -) -(1,7620:6797234,30980236:25785795,505283,134348 -k1,7619:10744467,30980236:243794 -k1,7619:12007346,30980236:243794 -k1,7619:14964331,30980236:243794 -k1,7619:16906818,30980236:243794 -k1,7619:19751736,30980236:243794 -k1,7619:22306983,30980236:243793 -k1,7619:23419129,30980236:243794 -k1,7619:25193189,30980236:243794 -k1,7619:26088411,30980236:243794 -k1,7619:29601141,30980236:243794 -k1,7619:31563944,30980236:243794 -k1,7619:32583029,30980236:0 -) -(1,7620:6797234,31821724:25785795,513147,126483 -k1,7619:9055050,31821724:189500 -k1,7619:9903842,31821724:189500 -k1,7619:11112427,31821724:189500 -k1,7619:14188788,31821724:189500 -k1,7619:15759132,31821724:189500 -k1,7619:17285566,31821724:189500 -k1,7619:19120019,31821724:189499 -k1,7619:21759910,31821724:189500 -k1,7619:24774667,31821724:189500 -k1,7619:27006924,31821724:189500 -k1,7619:28064776,31821724:189500 -k1,7619:29934619,31821724:189500 -k1,7619:30740157,31821724:189500 -k1,7619:32583029,31821724:0 -) -(1,7620:6797234,32663212:25785795,513147,134348 -k1,7619:7638061,32663212:181535 -k1,7619:10764128,32663212:181534 -k1,7619:12683678,32663212:181535 -k1,7619:15023968,32663212:181534 -k1,7619:17157165,32663212:181535 -k1,7619:18781147,32663212:181535 -k1,7619:19981766,32663212:181534 -k1,7619:22912536,32663212:181535 -k1,7619:23753363,32663212:181535 -k1,7619:24953982,32663212:181534 -k1,7619:27848708,32663212:181535 -k1,7619:29768257,32663212:181534 -k1,7619:31931601,32663212:181535 -k1,7619:32583029,32663212:0 -) -(1,7620:6797234,33504700:25785795,505283,7863 -g1,7619:8015548,33504700 -k1,7620:32583029,33504700:22325494 -g1,7620:32583029,33504700 -) -v1,7622:6797234,34649603:0,393216,0 -(1,7650:6797234,45510161:25785795,11253774,196608 -g1,7650:6797234,45510161 -g1,7650:6797234,45510161 -g1,7650:6600626,45510161 -(1,7650:6600626,45510161:0,11253774,196608 -r1,7653:32779637,45510161:26179011,11450382,196608 -k1,7650:6600625,45510161:-26179012 -) -(1,7650:6600626,45510161:26179011,11253774,196608 -[1,7650:6797234,45510161:25785795,11057166,0 -(1,7624:6797234,34863513:25785795,410518,101187 -(1,7623:6797234,34863513:0,0,0 -g1,7623:6797234,34863513 -g1,7623:6797234,34863513 -g1,7623:6469554,34863513 -(1,7623:6469554,34863513:0,0,0 -) -g1,7623:6797234,34863513 -) -g1,7624:12171711,34863513 -g1,7624:13120149,34863513 -g1,7624:17230044,34863513 -g1,7624:17862336,34863513 -g1,7624:19759211,34863513 -g1,7624:20391503,34863513 -g1,7624:21023795,34863513 -g1,7624:21972233,34863513 -g1,7624:22604525,34863513 -g1,7624:23236817,34863513 -g1,7624:25449838,34863513 -h1,7624:27030566,34863513:0,0,0 -k1,7624:32583029,34863513:5552463 -g1,7624:32583029,34863513 -) -(1,7625:6797234,35529691:25785795,410518,101187 -h1,7625:6797234,35529691:0,0,0 -g1,7625:14068586,35529691 -h1,7625:14700878,35529691:0,0,0 -k1,7625:32583030,35529691:17882152 -g1,7625:32583030,35529691 -) -(1,7631:6797234,36195869:25785795,379060,7863 -(1,7627:6797234,36195869:0,0,0 -g1,7627:6797234,36195869 -g1,7627:6797234,36195869 -g1,7627:6469554,36195869 -(1,7627:6469554,36195869:0,0,0 -) -g1,7627:6797234,36195869 -) -g1,7631:7745671,36195869 -g1,7631:8061817,36195869 -g1,7631:8377963,36195869 -g1,7631:9010255,36195869 -g1,7631:9642547,36195869 -h1,7631:9958693,36195869:0,0,0 -k1,7631:32583029,36195869:22624336 -g1,7631:32583029,36195869 -) -(1,7631:6797234,36862047:25785795,388497,9436 -h1,7631:6797234,36862047:0,0,0 -g1,7631:7745671,36862047 -g1,7631:8377963,36862047 -g1,7631:9010255,36862047 -g1,7631:9642547,36862047 -h1,7631:9958693,36862047:0,0,0 -k1,7631:32583029,36862047:22624336 -g1,7631:32583029,36862047 -) -(1,7631:6797234,37528225:25785795,388497,9436 -h1,7631:6797234,37528225:0,0,0 -g1,7631:7745671,37528225 -g1,7631:8377963,37528225 -g1,7631:9010255,37528225 -g1,7631:9642547,37528225 -h1,7631:9958693,37528225:0,0,0 -k1,7631:32583029,37528225:22624336 -g1,7631:32583029,37528225 -) -(1,7633:6797234,38849763:25785795,410518,101187 -(1,7632:6797234,38849763:0,0,0 -g1,7632:6797234,38849763 -g1,7632:6797234,38849763 -g1,7632:6469554,38849763 -(1,7632:6469554,38849763:0,0,0 -) -g1,7632:6797234,38849763 -) -g1,7633:12487857,38849763 -g1,7633:13120149,38849763 -g1,7633:14700879,38849763 -g1,7633:15649317,38849763 -g1,7633:21339940,38849763 -g1,7633:21972232,38849763 -h1,7633:23236816,38849763:0,0,0 -k1,7633:32583029,38849763:9346213 -g1,7633:32583029,38849763 -) -(1,7634:6797234,39515941:25785795,410518,101187 -h1,7634:6797234,39515941:0,0,0 -g1,7634:14068586,39515941 -h1,7634:14700878,39515941:0,0,0 -k1,7634:32583030,39515941:17882152 -g1,7634:32583030,39515941 -) -(1,7640:6797234,40182119:25785795,379060,7863 -(1,7636:6797234,40182119:0,0,0 -g1,7636:6797234,40182119 -g1,7636:6797234,40182119 -g1,7636:6469554,40182119 -(1,7636:6469554,40182119:0,0,0 -) -g1,7636:6797234,40182119 -) -g1,7640:7745671,40182119 -g1,7640:8061817,40182119 -g1,7640:8377963,40182119 -g1,7640:9010255,40182119 -g1,7640:9642547,40182119 -h1,7640:9958693,40182119:0,0,0 -k1,7640:32583029,40182119:22624336 -g1,7640:32583029,40182119 -) -(1,7640:6797234,40848297:25785795,388497,9436 -h1,7640:6797234,40848297:0,0,0 -g1,7640:7745671,40848297 -g1,7640:8377963,40848297 -g1,7640:9010255,40848297 -g1,7640:9642547,40848297 -h1,7640:9958693,40848297:0,0,0 -k1,7640:32583029,40848297:22624336 -g1,7640:32583029,40848297 -) -(1,7640:6797234,41514475:25785795,388497,9436 -h1,7640:6797234,41514475:0,0,0 -g1,7640:7745671,41514475 -g1,7640:8377963,41514475 -g1,7640:9010255,41514475 -g1,7640:9642547,41514475 -h1,7640:9958693,41514475:0,0,0 -k1,7640:32583029,41514475:22624336 -g1,7640:32583029,41514475 -) -(1,7642:6797234,42836013:25785795,410518,101187 -(1,7641:6797234,42836013:0,0,0 -g1,7641:6797234,42836013 -g1,7641:6797234,42836013 -g1,7641:6469554,42836013 -(1,7641:6469554,42836013:0,0,0 -) -g1,7641:6797234,42836013 -) -k1,7642:6797234,42836013:0 -g1,7642:16913897,42836013 -g1,7642:17862335,42836013 -k1,7642:17862335,42836013:0 -h1,7642:27662852,42836013:0,0,0 -k1,7642:32583029,42836013:4920177 -g1,7642:32583029,42836013 -) -(1,7643:6797234,43502191:25785795,410518,101187 -h1,7643:6797234,43502191:0,0,0 -g1,7643:14068586,43502191 -h1,7643:14700878,43502191:0,0,0 -k1,7643:32583030,43502191:17882152 -g1,7643:32583030,43502191 -) -(1,7649:6797234,44168369:25785795,379060,7863 -(1,7645:6797234,44168369:0,0,0 -g1,7645:6797234,44168369 -g1,7645:6797234,44168369 -g1,7645:6469554,44168369 -(1,7645:6469554,44168369:0,0,0 -) -g1,7645:6797234,44168369 -) -g1,7649:7745671,44168369 -g1,7649:8061817,44168369 -g1,7649:8377963,44168369 -g1,7649:9010255,44168369 -g1,7649:9642547,44168369 -h1,7649:9958693,44168369:0,0,0 -k1,7649:32583029,44168369:22624336 -g1,7649:32583029,44168369 -) -(1,7649:6797234,44834547:25785795,388497,9436 -h1,7649:6797234,44834547:0,0,0 -g1,7649:7745671,44834547 -g1,7649:8377963,44834547 -g1,7649:9010255,44834547 -g1,7649:9642547,44834547 -h1,7649:9958693,44834547:0,0,0 -k1,7649:32583029,44834547:22624336 -g1,7649:32583029,44834547 -) -(1,7649:6797234,45500725:25785795,388497,9436 -h1,7649:6797234,45500725:0,0,0 -g1,7649:7745671,45500725 -g1,7649:8377963,45500725 -g1,7649:9010255,45500725 -g1,7649:9642547,45500725 -h1,7649:9958693,45500725:0,0,0 -k1,7649:32583029,45500725:22624336 -g1,7649:32583029,45500725 -) -] -) -g1,7650:32583029,45510161 -g1,7650:6797234,45510161 -g1,7650:6797234,45510161 -g1,7650:32583029,45510161 -g1,7650:32583029,45510161 -) -h1,7650:6797234,45706769:0,0,0 -] -g1,7653:32583029,45706769 -) -] -(1,7653:32583029,45706769:0,0,0 -g1,7653:32583029,45706769 -) -) -] -(1,7653:6630773,47279633:25952256,0,0 -h1,7653:6630773,47279633:25952256,0,0 -) -] -(1,7653:4262630,4025873:0,0,0 -[1,7653:-473656,4025873:0,0,0 -(1,7653:-473656,-710413:0,0,0 -(1,7653:-473656,-710413:0,0,0 -g1,7653:-473656,-710413 ) -g1,7653:-473656,-710413 ) -] ) ] -!23315 -}124 -Input:1004:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1005:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1006:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1007:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1008:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1009:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1010:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1011:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1012:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1013:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1014:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1015:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1016:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1017:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1018:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1019:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1020:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1021:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1022:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1023:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1024:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1025:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1026:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1027:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!2268 -{125 -[1,7701:4262630,47279633:28320399,43253760,0 -(1,7701:4262630,4025873:0,0,0 -[1,7701:-473656,4025873:0,0,0 -(1,7701:-473656,-710413:0,0,0 -(1,7701:-473656,-644877:0,0,0 -k1,7701:-473656,-644877:-65536 +[1,6658:3078558,4812305:0,0,0 +(1,6658:3078558,2439708:0,1703936,0 +g1,6658:29030814,2439708 +g1,6658:36135244,2439708 +(1,6148:36135244,2439708:1720320,1703936,0 +(1,6148:36135244,2439708:16384,1703936,0 +[1,6148:36135244,2439708:25952256,1703936,0 +(1,6148:36135244,1915420:25952256,1179648,0 +(1,6148:36135244,1915420:16384,1179648,0 +r1,6658:36151628,1915420:16384,1179648,0 ) -(1,7701:-473656,4736287:0,0,0 -k1,7701:-473656,4736287:5209943 -) -g1,7701:-473656,-710413 +k1,6148:62087500,1915420:25935872 +g1,6148:62087500,1915420 ) ] ) -[1,7701:6630773,47279633:25952256,43253760,0 -[1,7701:6630773,4812305:25952256,786432,0 -(1,7701:6630773,4812305:25952256,505283,11795 -(1,7701:6630773,4812305:25952256,505283,11795 -g1,7701:3078558,4812305 -[1,7701:3078558,4812305:0,0,0 -(1,7701:3078558,2439708:0,1703936,0 -k1,7701:1358238,2439708:-1720320 -(1,5950:1358238,2439708:1720320,1703936,0 -(1,5950:1358238,2439708:1179648,16384,0 -r1,7701:2537886,2439708:1179648,16384,0 +g1,6148:36675916,2439708 +(1,6148:36675916,2439708:1179648,16384,0 +r1,6658:37855564,2439708:1179648,16384,0 ) -g1,5950:3062174,2439708 -(1,5950:3062174,2439708:16384,1703936,0 -[1,5950:3062174,2439708:25952256,1703936,0 -(1,5950:3062174,1915420:25952256,1179648,0 -(1,5950:3062174,1915420:16384,1179648,0 -r1,7701:3078558,1915420:16384,1179648,0 ) -k1,5950:29014430,1915420:25935872 -g1,5950:29014430,1915420 +k1,6658:3078556,2439708:-34777008 ) ] +[1,6658:3078558,4812305:0,0,0 +(1,6658:3078558,49800853:0,16384,2228224 +k1,6658:1358238,49800853:-1720320 +(1,6148:1358238,49800853:1720320,16384,2228224 +(1,6148:1358238,49800853:1179648,16384,0 +r1,6658:2537886,49800853:1179648,16384,0 ) +g1,6148:3062174,49800853 +(1,6148:3062174,52029077:16384,1703936,0 +[1,6148:3062174,52029077:25952256,1703936,0 +(1,6148:3062174,51504789:25952256,1179648,0 +(1,6148:3062174,51504789:16384,1179648,0 +r1,6658:3078558,51504789:16384,1179648,0 ) +k1,6148:29014430,51504789:25935872 +g1,6148:29014430,51504789 ) ] -[1,7701:3078558,4812305:0,0,0 -(1,7701:3078558,2439708:0,1703936,0 -g1,7701:29030814,2439708 -g1,7701:36135244,2439708 -(1,5950:36135244,2439708:1720320,1703936,0 -(1,5950:36135244,2439708:16384,1703936,0 -[1,5950:36135244,2439708:25952256,1703936,0 -(1,5950:36135244,1915420:25952256,1179648,0 -(1,5950:36135244,1915420:16384,1179648,0 -r1,7701:36151628,1915420:16384,1179648,0 -) -k1,5950:62087500,1915420:25935872 -g1,5950:62087500,1915420 ) -] ) -g1,5950:36675916,2439708 -(1,5950:36675916,2439708:1179648,16384,0 -r1,7701:37855564,2439708:1179648,16384,0 ) +] +[1,6658:3078558,4812305:0,0,0 +(1,6658:3078558,49800853:0,16384,2228224 +g1,6658:29030814,49800853 +g1,6658:36135244,49800853 +(1,6148:36135244,49800853:1720320,16384,2228224 +(1,6148:36135244,52029077:16384,1703936,0 +[1,6148:36135244,52029077:25952256,1703936,0 +(1,6148:36135244,51504789:25952256,1179648,0 +(1,6148:36135244,51504789:16384,1179648,0 +r1,6658:36151628,51504789:16384,1179648,0 ) -k1,7701:3078556,2439708:-34777008 +k1,6148:62087500,51504789:25935872 +g1,6148:62087500,51504789 ) ] -[1,7701:3078558,4812305:0,0,0 -(1,7701:3078558,49800853:0,16384,2228224 -k1,7701:1358238,49800853:-1720320 -(1,5950:1358238,49800853:1720320,16384,2228224 -(1,5950:1358238,49800853:1179648,16384,0 -r1,7701:2537886,49800853:1179648,16384,0 ) -g1,5950:3062174,49800853 -(1,5950:3062174,52029077:16384,1703936,0 -[1,5950:3062174,52029077:25952256,1703936,0 -(1,5950:3062174,51504789:25952256,1179648,0 -(1,5950:3062174,51504789:16384,1179648,0 -r1,7701:3078558,51504789:16384,1179648,0 +g1,6148:36675916,49800853 +(1,6148:36675916,49800853:1179648,16384,0 +r1,6658:37855564,49800853:1179648,16384,0 ) -k1,5950:29014430,51504789:25935872 -g1,5950:29014430,51504789 ) -] +k1,6658:3078556,49800853:-34777008 ) +] +g1,6658:6630773,4812305 +g1,6658:6630773,4812305 +g1,6658:8203637,4812305 +k1,6658:31786111,4812305:23582474 +) +) +] +[1,6658:6630773,45706769:25952256,40108032,0 +(1,6658:6630773,45706769:25952256,40108032,0 +(1,6658:6630773,45706769:0,0,0 +g1,6658:6630773,45706769 +) +[1,6658:6630773,45706769:25952256,40108032,0 +v1,6569:6630773,6254097:0,393216,0 +(1,6584:6630773,12889547:25952256,7028666,196608 +g1,6584:6630773,12889547 +g1,6584:6630773,12889547 +g1,6584:6434165,12889547 +(1,6584:6434165,12889547:0,7028666,196608 +r1,6658:32779637,12889547:26345472,7225274,196608 +k1,6584:6434165,12889547:-26345472 +) +(1,6584:6434165,12889547:26345472,7028666,196608 +[1,6584:6630773,12889547:25952256,6832058,0 +(1,6571:6630773,6481928:25952256,424439,86428 +(1,6570:6630773,6481928:0,0,0 +g1,6570:6630773,6481928 +g1,6570:6630773,6481928 +g1,6570:6303093,6481928 +(1,6570:6303093,6481928:0,0,0 +) +g1,6570:6630773,6481928 +) +g1,6571:10614220,6481928 +g1,6571:11610082,6481928 +g1,6571:13933760,6481928 +g1,6571:14597668,6481928 +g1,6571:17917208,6481928 +g1,6571:19908932,6481928 +g1,6571:21568702,6481928 +g1,6571:22232610,6481928 +g1,6571:22896518,6481928 +g1,6571:26216058,6481928 +h1,6571:28207782,6481928:0,0,0 +k1,6571:32583029,6481928:4375247 +g1,6571:32583029,6481928 +) +(1,6572:6630773,7166783:25952256,424439,79822 +h1,6572:6630773,7166783:0,0,0 +k1,6572:6630773,7166783:0 +h1,6572:11942036,7166783:0,0,0 +k1,6572:32583028,7166783:20640992 +g1,6572:32583028,7166783 +) +(1,6583:6630773,7982710:25952256,431045,6605 +(1,6574:6630773,7982710:0,0,0 +g1,6574:6630773,7982710 +g1,6574:6630773,7982710 +g1,6574:6303093,7982710 +(1,6574:6303093,7982710:0,0,0 +) +g1,6574:6630773,7982710 +) +g1,6583:7626635,7982710 +g1,6583:9286405,7982710 +g1,6583:10282267,7982710 +h1,6583:10614221,7982710:0,0,0 +k1,6583:32583029,7982710:21968808 +g1,6583:32583029,7982710 +) +(1,6583:6630773,8667565:25952256,431045,33029 +h1,6583:6630773,8667565:0,0,0 +g1,6583:7626635,8667565 +g1,6583:7958589,8667565 +g1,6583:8622497,8667565 +g1,6583:10946175,8667565 +g1,6583:11942037,8667565 +h1,6583:12273991,8667565:0,0,0 +k1,6583:32583029,8667565:20309038 +g1,6583:32583029,8667565 +) +(1,6583:6630773,9352420:25952256,431045,33029 +h1,6583:6630773,9352420:0,0,0 +g1,6583:7626635,9352420 +g1,6583:7958589,9352420 +g1,6583:8290543,9352420 +g1,6583:9618359,9352420 +g1,6583:10282267,9352420 +g1,6583:11610083,9352420 +h1,6583:12605945,9352420:0,0,0 +k1,6583:32583029,9352420:19977084 +g1,6583:32583029,9352420 +) +(1,6583:6630773,10037275:25952256,431045,33029 +h1,6583:6630773,10037275:0,0,0 +g1,6583:7626635,10037275 +g1,6583:7958589,10037275 +g1,6583:8290543,10037275 +g1,6583:9618359,10037275 +g1,6583:10282267,10037275 +g1,6583:11610083,10037275 +h1,6583:12937899,10037275:0,0,0 +k1,6583:32583029,10037275:19645130 +g1,6583:32583029,10037275 +) +(1,6583:6630773,10722130:25952256,431045,33029 +h1,6583:6630773,10722130:0,0,0 +g1,6583:7626635,10722130 +g1,6583:7958589,10722130 +g1,6583:8290543,10722130 +g1,6583:9618359,10722130 +g1,6583:10282267,10722130 +g1,6583:11610083,10722130 +h1,6583:12273991,10722130:0,0,0 +k1,6583:32583029,10722130:20309038 +g1,6583:32583029,10722130 +) +(1,6583:6630773,11406985:25952256,431045,33029 +h1,6583:6630773,11406985:0,0,0 +g1,6583:7626635,11406985 +g1,6583:7958589,11406985 +g1,6583:8622497,11406985 +g1,6583:10946175,11406985 +g1,6583:11942037,11406985 +h1,6583:12273991,11406985:0,0,0 +k1,6583:32583029,11406985:20309038 +g1,6583:32583029,11406985 +) +(1,6583:6630773,12091840:25952256,431045,33029 +h1,6583:6630773,12091840:0,0,0 +g1,6583:7626635,12091840 +g1,6583:7958589,12091840 +g1,6583:8290543,12091840 +g1,6583:9618359,12091840 +g1,6583:10282267,12091840 +g1,6583:11610083,12091840 +h1,6583:12605945,12091840:0,0,0 +k1,6583:32583029,12091840:19977084 +g1,6583:32583029,12091840 +) +(1,6583:6630773,12776695:25952256,431045,112852 +h1,6583:6630773,12776695:0,0,0 +g1,6583:7626635,12776695 +g1,6583:7958589,12776695 +g1,6583:8290543,12776695 +g1,6583:9618359,12776695 +g1,6583:10282267,12776695 +g1,6583:11942037,12776695 +h1,6583:13269853,12776695:0,0,0 +k1,6583:32583029,12776695:19313176 +g1,6583:32583029,12776695 +) +] +) +g1,6584:32583029,12889547 +g1,6584:6630773,12889547 +g1,6584:6630773,12889547 +g1,6584:32583029,12889547 +g1,6584:32583029,12889547 +) +h1,6584:6630773,13086155:0,0,0 +(1,6588:6630773,13951235:25952256,513147,7863 +h1,6587:6630773,13951235:983040,0,0 +g1,6587:8300630,13951235 +g1,6587:9493385,13951235 +g1,6587:10796896,13951235 +g1,6587:13367873,13951235 +g1,6587:13922962,13951235 +g1,6587:18110057,13951235 +g1,6587:18968578,13951235 +g1,6587:20161333,13951235 +g1,6587:21552007,13951235 +g1,6587:23729113,13951235 +k1,6588:32583029,13951235:5726538 +g1,6588:32583029,13951235 +) +v1,6590:6630773,14636090:0,393216,0 +(1,6610:6630773,24615992:25952256,10373118,196608 +g1,6610:6630773,24615992 +g1,6610:6630773,24615992 +g1,6610:6434165,24615992 +(1,6610:6434165,24615992:0,10373118,196608 +r1,6658:32779637,24615992:26345472,10569726,196608 +k1,6610:6434165,24615992:-26345472 +) +(1,6610:6434165,24615992:26345472,10373118,196608 +[1,6610:6630773,24615992:25952256,10176510,0 +(1,6592:6630773,14863921:25952256,424439,86428 +(1,6591:6630773,14863921:0,0,0 +g1,6591:6630773,14863921 +g1,6591:6630773,14863921 +g1,6591:6303093,14863921 +(1,6591:6303093,14863921:0,0,0 +) +g1,6591:6630773,14863921 +) +g1,6592:10614220,14863921 +g1,6592:11610082,14863921 +g1,6592:13933760,14863921 +g1,6592:14597668,14863921 +g1,6592:17917208,14863921 +g1,6592:19908932,14863921 +k1,6592:19908932,14863921:0 +h1,6592:21236748,14863921:0,0,0 +k1,6592:32583029,14863921:11346281 +g1,6592:32583029,14863921 +) +(1,6593:6630773,15548776:25952256,424439,86428 +h1,6593:6630773,15548776:0,0,0 +g1,6593:6962727,15548776 +g1,6593:7294681,15548776 +g1,6593:7626635,15548776 +g1,6593:7958589,15548776 +g1,6593:8290543,15548776 +g1,6593:8622497,15548776 +g1,6593:8954451,15548776 +g1,6593:9286405,15548776 +g1,6593:9618359,15548776 +g1,6593:9950313,15548776 +g1,6593:10282267,15548776 +g1,6593:10614221,15548776 +g1,6593:10946175,15548776 +g1,6593:11278129,15548776 +g1,6593:11610083,15548776 +g1,6593:11942037,15548776 +g1,6593:12273991,15548776 +g1,6593:12605945,15548776 +g1,6593:12937899,15548776 +g1,6593:13269853,15548776 +g1,6593:13933761,15548776 +g1,6593:14597669,15548776 +g1,6593:17917209,15548776 +k1,6593:17917209,15548776:0 +h1,6593:19908933,15548776:0,0,0 +k1,6593:32583029,15548776:12674096 +g1,6593:32583029,15548776 +) +(1,6594:6630773,16233631:25952256,424439,86428 +h1,6594:6630773,16233631:0,0,0 +g1,6594:6962727,16233631 +g1,6594:7294681,16233631 +g1,6594:7626635,16233631 +g1,6594:7958589,16233631 +g1,6594:8290543,16233631 +g1,6594:8622497,16233631 +g1,6594:8954451,16233631 +g1,6594:9286405,16233631 +g1,6594:9618359,16233631 +g1,6594:9950313,16233631 +g1,6594:10282267,16233631 +g1,6594:10614221,16233631 +g1,6594:10946175,16233631 +g1,6594:11278129,16233631 +g1,6594:11610083,16233631 +g1,6594:11942037,16233631 +g1,6594:12273991,16233631 +g1,6594:12605945,16233631 +g1,6594:12937899,16233631 +g1,6594:13269853,16233631 +g1,6594:13933761,16233631 +g1,6594:14597669,16233631 +g1,6594:16257439,16233631 +g1,6594:17253301,16233631 +k1,6594:17253301,16233631:0 +h1,6594:18249163,16233631:0,0,0 +k1,6594:32583029,16233631:14333866 +g1,6594:32583029,16233631 +) +(1,6595:6630773,16918486:25952256,424439,79822 +h1,6595:6630773,16918486:0,0,0 +g1,6595:6962727,16918486 +g1,6595:7294681,16918486 +g1,6595:7626635,16918486 +g1,6595:7958589,16918486 +g1,6595:8290543,16918486 +g1,6595:8622497,16918486 +g1,6595:8954451,16918486 +g1,6595:9286405,16918486 +g1,6595:9618359,16918486 +g1,6595:9950313,16918486 +g1,6595:10282267,16918486 +g1,6595:10614221,16918486 +g1,6595:10946175,16918486 +g1,6595:11278129,16918486 +g1,6595:11610083,16918486 +g1,6595:11942037,16918486 +g1,6595:12273991,16918486 +g1,6595:12605945,16918486 +g1,6595:12937899,16918486 +g1,6595:13269853,16918486 +g1,6595:13933761,16918486 +g1,6595:14597669,16918486 +h1,6595:16257439,16918486:0,0,0 +k1,6595:32583029,16918486:16325590 +g1,6595:32583029,16918486 +) +(1,6596:6630773,17603341:25952256,424439,79822 +h1,6596:6630773,17603341:0,0,0 +k1,6596:6630773,17603341:0 +h1,6596:11942036,17603341:0,0,0 +k1,6596:32583028,17603341:20640992 +g1,6596:32583028,17603341 +) +(1,6609:6630773,18419268:25952256,431045,6605 +(1,6598:6630773,18419268:0,0,0 +g1,6598:6630773,18419268 +g1,6598:6630773,18419268 +g1,6598:6303093,18419268 +(1,6598:6303093,18419268:0,0,0 +) +g1,6598:6630773,18419268 +) +g1,6609:7626635,18419268 +g1,6609:9286405,18419268 +g1,6609:10282267,18419268 +h1,6609:10614221,18419268:0,0,0 +k1,6609:32583029,18419268:21968808 +g1,6609:32583029,18419268 +) +(1,6609:6630773,19104123:25952256,431045,33029 +h1,6609:6630773,19104123:0,0,0 +g1,6609:7626635,19104123 +g1,6609:7958589,19104123 +g1,6609:8622497,19104123 +g1,6609:10946175,19104123 +g1,6609:11942037,19104123 +h1,6609:12273991,19104123:0,0,0 +k1,6609:32583029,19104123:20309038 +g1,6609:32583029,19104123 +) +(1,6609:6630773,19788978:25952256,431045,33029 +h1,6609:6630773,19788978:0,0,0 +g1,6609:7626635,19788978 +g1,6609:7958589,19788978 +g1,6609:8290543,19788978 +g1,6609:9618359,19788978 +g1,6609:10282267,19788978 +g1,6609:11610083,19788978 +h1,6609:12605945,19788978:0,0,0 +k1,6609:32583029,19788978:19977084 +g1,6609:32583029,19788978 +) +(1,6609:6630773,20473833:25952256,431045,33029 +h1,6609:6630773,20473833:0,0,0 +g1,6609:7626635,20473833 +g1,6609:7958589,20473833 +g1,6609:8290543,20473833 +g1,6609:9618359,20473833 +g1,6609:10282267,20473833 +g1,6609:11610083,20473833 +h1,6609:12937899,20473833:0,0,0 +k1,6609:32583029,20473833:19645130 +g1,6609:32583029,20473833 +) +(1,6609:6630773,21158688:25952256,431045,33029 +h1,6609:6630773,21158688:0,0,0 +g1,6609:7626635,21158688 +g1,6609:7958589,21158688 +g1,6609:8290543,21158688 +g1,6609:9618359,21158688 +g1,6609:10282267,21158688 +g1,6609:11610083,21158688 +h1,6609:12273991,21158688:0,0,0 +k1,6609:32583029,21158688:20309038 +g1,6609:32583029,21158688 +) +(1,6609:6630773,21843543:25952256,431045,33029 +h1,6609:6630773,21843543:0,0,0 +g1,6609:7626635,21843543 +g1,6609:7958589,21843543 +g1,6609:8622497,21843543 +g1,6609:10946175,21843543 +g1,6609:11942037,21843543 +h1,6609:12273991,21843543:0,0,0 +k1,6609:32583029,21843543:20309038 +g1,6609:32583029,21843543 +) +(1,6609:6630773,22528398:25952256,431045,33029 +h1,6609:6630773,22528398:0,0,0 +g1,6609:7626635,22528398 +g1,6609:7958589,22528398 +g1,6609:8290543,22528398 +g1,6609:9618359,22528398 +g1,6609:10282267,22528398 +g1,6609:11610083,22528398 +h1,6609:12605945,22528398:0,0,0 +k1,6609:32583029,22528398:19977084 +g1,6609:32583029,22528398 +) +(1,6609:6630773,23213253:25952256,431045,112852 +h1,6609:6630773,23213253:0,0,0 +g1,6609:7626635,23213253 +g1,6609:7958589,23213253 +g1,6609:8290543,23213253 +g1,6609:9618359,23213253 +g1,6609:10282267,23213253 +g1,6609:11942037,23213253 +h1,6609:13269853,23213253:0,0,0 +k1,6609:32583029,23213253:19313176 +g1,6609:32583029,23213253 +) +(1,6609:6630773,23898108:25952256,431045,79822 +h1,6609:6630773,23898108:0,0,0 +g1,6609:7626635,23898108 +g1,6609:7958589,23898108 +g1,6609:8622497,23898108 +g1,6609:9618359,23898108 +g1,6609:10946175,23898108 +g1,6609:12937899,23898108 +g1,6609:13601807,23898108 +g1,6609:14265715,23898108 +h1,6609:14597669,23898108:0,0,0 +k1,6609:32583029,23898108:17985360 +g1,6609:32583029,23898108 +) +(1,6609:6630773,24582963:25952256,431045,33029 +h1,6609:6630773,24582963:0,0,0 +g1,6609:7626635,24582963 +g1,6609:7958589,24582963 +g1,6609:8622497,24582963 +g1,6609:9618359,24582963 +g1,6609:10946175,24582963 +h1,6609:12273991,24582963:0,0,0 +k1,6609:32583029,24582963:20309038 +g1,6609:32583029,24582963 +) +] +) +g1,6610:32583029,24615992 +g1,6610:6630773,24615992 +g1,6610:6630773,24615992 +g1,6610:32583029,24615992 +g1,6610:32583029,24615992 +) +h1,6610:6630773,24812600:0,0,0 +v1,6614:6630773,25677680:0,393216,0 +(1,6617:6630773,33033101:25952256,7748637,0 +g1,6617:6630773,33033101 +g1,6617:6237557,33033101 +r1,6658:6368629,33033101:131072,7748637,0 +g1,6617:6567858,33033101 +g1,6617:6764466,33033101 +[1,6617:6764466,33033101:25818563,7748637,0 +(1,6615:6764466,25985978:25818563,701514,196608 +(1,6614:6764466,25985978:0,701514,196608 +r1,6658:8010564,25985978:1246098,898122,196608 +k1,6614:6764466,25985978:-1246098 +) +(1,6614:6764466,25985978:1246098,701514,196608 +) +k1,6614:8368486,25985978:357922 +k1,6614:8696166,25985978:327680 +k1,6614:10250776,25985978:357923 +k1,6614:12117337,25985978:357922 +k1,6614:14674647,25985978:357922 +k1,6614:18247110,25985978:357922 +k1,6614:19264325,25985978:357923 +k1,6614:22575955,25985978:357922 +k1,6614:23593169,25985978:357922 +k1,6614:26068560,25985978:357923 +k1,6614:27750309,25985978:357922 +k1,6614:29843624,25985978:357922 +k1,6614:32583029,25985978:0 +) +(1,6615:6764466,26851058:25818563,513147,134348 +k1,6614:7586765,26851058:290802 +k1,6614:8896652,26851058:290802 +k1,6614:10840926,26851058:290801 +k1,6614:11817890,26851058:290802 +k1,6614:13056343,26851058:290802 +k1,6614:15471822,26851058:290802 +k1,6614:17260122,26851058:290802 +k1,6614:18623092,26851058:290801 +k1,6614:21285642,26851058:290802 +k1,6614:26949086,26851058:290802 +(1,6614:26949086,26851058:0,452978,115847 +r1,6658:32583029,26851058:5633943,568825,115847 +k1,6614:26949086,26851058:-5633943 +) +(1,6614:26949086,26851058:5633943,452978,115847 +k1,6614:26949086,26851058:3277 +h1,6614:32579752,26851058:0,411205,112570 +) +k1,6614:32583029,26851058:0 +) +(1,6615:6764466,27716138:25818563,513147,102891 +k1,6614:9648978,27716138:350235 +k1,6614:11018299,27716138:350236 +k1,6614:13609865,27716138:350235 +k1,6614:16583506,27716138:350235 +k1,6614:17593034,27716138:350236 +k1,6614:18962354,27716138:350235 +k1,6614:22616259,27716138:350235 +k1,6614:24133691,27716138:350236 +k1,6614:26369397,27716138:350235 +k1,6614:27251129,27716138:350235 +k1,6614:30074038,27716138:350236 +k1,6614:31591469,27716138:350235 +k1,6614:32583029,27716138:0 +) +(1,6615:6764466,28581218:25818563,505283,134348 +k1,6614:8229498,28581218:261791 +k1,6614:9022786,28581218:261791 +k1,6614:9640437,28581218:261791 +k1,6614:11069424,28581218:261791 +k1,6614:12119613,28581218:261791 +k1,6614:15335112,28581218:261791 +k1,6614:16701186,28581218:261792 +k1,6614:17710743,28581218:261791 +k1,6614:20944592,28581218:261791 +k1,6614:22941776,28581218:261791 +k1,6614:24905537,28581218:261791 +k1,6614:26186413,28581218:261791 +k1,6614:29662745,28581218:261791 +k1,6615:32583029,28581218:0 +) +(1,6615:6764466,29446298:25818563,505283,126483 +(1,6614:6764466,29446298:0,452978,115847 +r1,6658:14156968,29446298:7392502,568825,115847 +k1,6614:6764466,29446298:-7392502 +) +(1,6614:6764466,29446298:7392502,452978,115847 +k1,6614:6764466,29446298:3277 +h1,6614:14153691,29446298:0,411205,112570 +) +k1,6614:14552000,29446298:221362 +k1,6614:15243254,29446298:221361 +k1,6614:15996113,29446298:221362 +k1,6614:19426772,29446298:221361 +k1,6614:20299562,29446298:221362 +k1,6614:23780028,29446298:221361 +k1,6614:25285896,29446298:221362 +k1,6614:27203984,29446298:221361 +k1,6614:31657661,29446298:221362 +k1,6615:32583029,29446298:0 +) +(1,6615:6764466,30311378:25818563,513147,126483 +k1,6614:9445847,30311378:179216 +k1,6614:13029657,30311378:179215 +k1,6614:14200433,30311378:179216 +k1,6614:16666199,30311378:179215 +k1,6614:17570243,30311378:179216 +k1,6614:19033965,30311378:179216 +k1,6614:20232265,30311378:179215 +k1,6614:23087316,30311378:179216 +k1,6614:26013146,30311378:179216 +k1,6614:26723858,30311378:179215 +k1,6614:29274822,30311378:179216 +k1,6614:30105465,30311378:179215 +k1,6614:31303766,30311378:179216 +k1,6615:32583029,30311378:0 +) +(1,6615:6764466,31176458:25818563,505283,7863 +g1,6614:9201094,31176458 +k1,6615:32583030,31176458:22214740 +g1,6615:32583030,31176458 +) +(1,6617:6764466,32041538:25818563,513147,134348 +h1,6616:6764466,32041538:983040,0,0 +k1,6616:9197634,32041538:253441 +k1,6616:12112493,32041538:253442 +k1,6616:14221258,32041538:253441 +k1,6616:15897486,32041538:253441 +k1,6616:17170013,32041538:253442 +(1,6616:17170013,32041538:0,452978,115847 +r1,6658:18935127,32041538:1765114,568825,115847 +k1,6616:17170013,32041538:-1765114 +) +(1,6616:17170013,32041538:1765114,452978,115847 +g1,6616:18228426,32041538 +h1,6616:18931850,32041538:0,411205,112570 +) +k1,6616:19188568,32041538:253441 +k1,6616:22362293,32041538:253441 +k1,6616:23687904,32041538:253442 +k1,6616:24960430,32041538:253441 +k1,6616:26288006,32041538:253441 +k1,6616:27192876,32041538:253442 +k1,6616:28981826,32041538:253441 +k1,6616:32583029,32041538:0 +) +(1,6617:6764466,32906618:25818563,505283,126483 +g1,6616:8249511,32906618 +g1,6616:10730048,32906618 +g1,6616:11580705,32906618 +g1,6616:16012249,32906618 +g1,6616:17641474,32906618 +g1,6616:18492131,32906618 +(1,6616:18492131,32906618:0,452978,115847 +r1,6658:19553821,32906618:1061690,568825,115847 +k1,6616:18492131,32906618:-1061690 +) +(1,6616:18492131,32906618:1061690,452978,115847 +g1,6616:19198832,32906618 +h1,6616:19550544,32906618:0,411205,112570 +) +k1,6617:32583029,32906618:12855538 +g1,6617:32583029,32906618 +) +] +g1,6617:32583029,33033101 +) +h1,6617:6630773,33033101:0,0,0 +v1,6620:6630773,33898181:0,393216,0 +(1,6638:6630773,42748999:25952256,9244034,0 +g1,6638:6630773,42748999 +g1,6638:6237557,42748999 +r1,6658:6368629,42748999:131072,9244034,0 +g1,6638:6567858,42748999 +g1,6638:6764466,42748999 +[1,6638:6764466,42748999:25818563,9244034,0 +(1,6621:6764466,34170658:25818563,665693,196608 +(1,6620:6764466,34170658:0,665693,196608 +r1,6658:8010564,34170658:1246098,862301,196608 +k1,6620:6764466,34170658:-1246098 +) +(1,6620:6764466,34170658:1246098,665693,196608 +) +k1,6620:8219806,34170658:209242 +k1,6620:9537735,34170658:327680 +k1,6620:11380789,34170658:209241 +k1,6620:12405299,34170658:209242 +k1,6620:13785013,34170658:209241 +k1,6620:16065193,34170658:209242 +k1,6620:17726056,34170658:209241 +k1,6620:18594590,34170658:209242 +k1,6620:19822916,34170658:209241 +k1,6620:23548820,34170658:209242 +k1,6620:25626492,34170658:209241 +k1,6620:26487162,34170658:209242 +k1,6620:29034072,34170658:209241 +k1,6620:31243473,34170658:209242 +k1,6621:32583029,34170658:0 +) +(1,6621:6764466,35035738:25818563,513147,134348 +k1,6620:8394901,35035738:219445 +k1,6620:9600007,35035738:219445 +k1,6620:11417219,35035738:219445 +k1,6620:13905520,35035738:219445 +k1,6620:15673581,35035738:219445 +k1,6620:17573369,35035738:219445 +k1,6620:18984258,35035738:219444 +k1,6620:19862995,35035738:219445 +k1,6620:21967911,35035738:219445 +k1,6620:23969935,35035738:219445 +k1,6620:25641002,35035738:219445 +k1,6620:29046807,35035738:219445 +k1,6620:30398714,35035738:219445 +k1,6620:32583029,35035738:0 +) +(1,6621:6764466,35900818:25818563,505283,126483 +k1,6620:8215170,35900818:197000 +k1,6620:9749103,35900818:196999 +k1,6620:11038588,35900818:197000 +k1,6620:13675492,35900818:196999 +k1,6620:14555377,35900818:197000 +k1,6620:17083492,35900818:196999 +k1,6620:18710488,35900818:197000 +k1,6620:19558915,35900818:196999 +(1,6620:19558915,35900818:0,452978,115847 +r1,6658:22027452,35900818:2468537,568825,115847 +k1,6620:19558915,35900818:-2468537 +) +(1,6620:19558915,35900818:2468537,452978,115847 +k1,6620:19558915,35900818:3277 +h1,6620:22024175,35900818:0,411205,112570 +) +k1,6620:22398122,35900818:197000 +k1,6620:23278006,35900818:196999 +k1,6620:24905002,35900818:197000 +k1,6620:25753429,35900818:196999 +(1,6620:25753429,35900818:0,452978,115847 +r1,6658:27518542,35900818:1765113,568825,115847 +k1,6620:25753429,35900818:-1765113 +) +(1,6620:25753429,35900818:1765113,452978,115847 +k1,6620:25753429,35900818:3277 +h1,6620:27515265,35900818:0,411205,112570 +) +k1,6620:27715542,35900818:197000 +k1,6620:28563969,35900818:196999 +k1,6620:31563944,35900818:197000 +k1,6620:32583029,35900818:0 +) +(1,6621:6764466,36765898:25818563,513147,134348 +g1,6620:9895120,36765898 +g1,6620:10753641,36765898 +g1,6620:11971955,36765898 +g1,6620:14933527,36765898 +k1,6621:32583029,36765898:15186004 +g1,6621:32583029,36765898 +) +v1,6624:6764466,37450753:0,393216,0 +(1,6635:6764466,42552391:25818563,5494854,196608 +g1,6635:6764466,42552391 +g1,6635:6764466,42552391 +g1,6635:6567858,42552391 +(1,6635:6567858,42552391:0,5494854,196608 +r1,6658:32779637,42552391:26211779,5691462,196608 +k1,6635:6567857,42552391:-26211780 +) +(1,6635:6567858,42552391:26211779,5494854,196608 +[1,6635:6764466,42552391:25818563,5298246,0 +(1,6626:6764466,37678584:25818563,424439,86428 +(1,6625:6764466,37678584:0,0,0 +g1,6625:6764466,37678584 +g1,6625:6764466,37678584 +g1,6625:6436786,37678584 +(1,6625:6436786,37678584:0,0,0 +) +g1,6625:6764466,37678584 +) +g1,6626:10747913,37678584 +g1,6626:11743775,37678584 +g1,6626:14067453,37678584 +g1,6626:14731361,37678584 +g1,6626:18050901,37678584 +g1,6626:20042625,37678584 +g1,6626:22698257,37678584 +g1,6626:23362165,37678584 +g1,6626:24026073,37678584 +g1,6626:27345613,37678584 +h1,6626:29337337,37678584:0,0,0 +k1,6626:32583029,37678584:3245692 +g1,6626:32583029,37678584 +) +(1,6627:6764466,38363439:25818563,424439,79822 +h1,6627:6764466,38363439:0,0,0 +k1,6627:6764466,38363439:0 +h1,6627:12075729,38363439:0,0,0 +k1,6627:32583029,38363439:20507300 +g1,6627:32583029,38363439 +) +(1,6628:6764466,39048294:25818563,424439,79822 +h1,6628:6764466,39048294:0,0,0 +h1,6628:12075729,39048294:0,0,0 +k1,6628:32583029,39048294:20507300 +g1,6628:32583029,39048294 +) +(1,6629:6764466,39733149:25818563,424439,79822 +h1,6629:6764466,39733149:0,0,0 +h1,6629:11411821,39733149:0,0,0 +k1,6629:32583029,39733149:21171208 +g1,6629:32583029,39733149 +) +(1,6630:6764466,40418004:25818563,424439,79822 +h1,6630:6764466,40418004:0,0,0 +h1,6630:13071591,40418004:0,0,0 +k1,6630:32583029,40418004:19511438 +g1,6630:32583029,40418004 +) +(1,6631:6764466,41102859:25818563,424439,79822 +h1,6631:6764466,41102859:0,0,0 +h1,6631:13735499,41102859:0,0,0 +k1,6631:32583029,41102859:18847530 +g1,6631:32583029,41102859 +) +(1,6632:6764466,41787714:25818563,424439,79822 +h1,6632:6764466,41787714:0,0,0 +h1,6632:11411821,41787714:0,0,0 +k1,6632:32583029,41787714:21171208 +g1,6632:32583029,41787714 +) +(1,6633:6764466,42472569:25818563,424439,79822 +h1,6633:6764466,42472569:0,0,0 +h1,6633:13071591,42472569:0,0,0 +k1,6633:32583029,42472569:19511438 +g1,6633:32583029,42472569 +) +] +) +g1,6635:32583029,42552391 +g1,6635:6764466,42552391 +g1,6635:6764466,42552391 +g1,6635:32583029,42552391 +g1,6635:32583029,42552391 +) +h1,6635:6764466,42748999:0,0,0 +] +g1,6638:32583029,42748999 +) +h1,6638:6630773,42748999:0,0,0 +v1,6640:6630773,43614079:0,393216,0 +(1,6658:6630773,45706769:25952256,2485906,0 +g1,6658:6630773,45706769 +g1,6658:6237557,45706769 +r1,6658:6368629,45706769:131072,2485906,0 +g1,6658:6567858,45706769 +g1,6658:6764466,45706769 +[1,6658:6764466,45706769:25818563,2485906,0 +(1,6642:6764466,43922377:25818563,701514,196608 +(1,6640:6764466,43922377:0,701514,196608 +r1,6658:8010564,43922377:1246098,898122,196608 +k1,6640:6764466,43922377:-1246098 +) +(1,6640:6764466,43922377:1246098,701514,196608 +) +k1,6640:8224848,43922377:214284 +k1,6640:8552528,43922377:327680 +k1,6640:8552528,43922377:0 +k1,6641:10550047,43922377:214284 +k1,6641:13083650,43922377:214284 +k1,6641:14691886,43922377:214285 +k1,6641:16442334,43922377:214284 +k1,6641:18154116,43922377:214284 +k1,6641:18826497,43922377:214284 +k1,6641:19572278,43922377:214284 +k1,6641:23234411,43922377:214284 +k1,6641:25425916,43922377:214284 +k1,6641:26291629,43922377:214285 +k1,6641:27990303,43922377:214284 +k1,6641:29223672,43922377:214284 +k1,6641:31923737,43922377:214284 +k1,6641:32583029,43922377:0 +) +(1,6642:6764466,44787457:25818563,513147,134348 +k1,6641:8824513,44787457:267637 +k1,6641:9751442,44787457:267637 +k1,6641:12358714,44787457:267637 +k1,6641:15405078,44787457:267637 +k1,6641:16434243,44787457:267637 +(1,6641:16434243,44787457:0,452978,115847 +r1,6658:18199356,44787457:1765113,568825,115847 +k1,6641:16434243,44787457:-1765113 +) +(1,6641:16434243,44787457:1765113,452978,115847 +k1,6641:16434243,44787457:3277 +h1,6641:18196079,44787457:0,411205,112570 +) +k1,6641:18466993,44787457:267637 +k1,6641:19496159,44787457:267638 +k1,6641:21832112,44787457:267637 +k1,6641:22759041,44787457:267637 +k1,6641:23382538,44787457:267637 +(1,6641:23382538,44787457:0,452978,115847 +r1,6658:25851075,44787457:2468537,568825,115847 +k1,6641:23382538,44787457:-2468537 +) +(1,6641:23382538,44787457:2468537,452978,115847 +k1,6641:23382538,44787457:3277 +h1,6641:25847798,44787457:0,411205,112570 +) +k1,6641:26118712,44787457:267637 +k1,6641:29458677,44787457:267637 +k1,6641:31931601,44787457:267637 +k1,6641:32583029,44787457:0 +) +(1,6642:6764466,45652537:25818563,452978,126483 +g1,6641:10244427,45652537 +(1,6641:10244427,45652537:0,452978,115847 +r1,6658:13768099,45652537:3523672,568825,115847 +k1,6641:10244427,45652537:-3523672 +) +(1,6641:10244427,45652537:3523672,452978,115847 +k1,6641:10244427,45652537:3277 +h1,6641:13764822,45652537:0,411205,112570 ) +k1,6642:32583029,45652537:18641260 +g1,6642:32583029,45652537 ) ] -[1,7701:3078558,4812305:0,0,0 -(1,7701:3078558,49800853:0,16384,2228224 -g1,7701:29030814,49800853 -g1,7701:36135244,49800853 -(1,5950:36135244,49800853:1720320,16384,2228224 -(1,5950:36135244,52029077:16384,1703936,0 -[1,5950:36135244,52029077:25952256,1703936,0 -(1,5950:36135244,51504789:25952256,1179648,0 -(1,5950:36135244,51504789:16384,1179648,0 -r1,7701:36151628,51504789:16384,1179648,0 -) -k1,5950:62087500,51504789:25935872 -g1,5950:62087500,51504789 +g1,6658:32583029,45706769 ) ] -) -g1,5950:36675916,49800853 -(1,5950:36675916,49800853:1179648,16384,0 -r1,7701:37855564,49800853:1179648,16384,0 +(1,6658:32583029,45706769:0,0,0 +g1,6658:32583029,45706769 ) ) -k1,7701:3078556,49800853:-34777008 +] +(1,6658:6630773,47279633:25952256,0,0 +h1,6658:6630773,47279633:25952256,0,0 +) +] +(1,6658:4262630,4025873:0,0,0 +[1,6658:-473656,4025873:0,0,0 +(1,6658:-473656,-710413:0,0,0 +(1,6658:-473656,-710413:0,0,0 +g1,6658:-473656,-710413 ) -] -g1,7701:6630773,4812305 -k1,7701:24358918,4812305:16532768 -g1,7701:25981589,4812305 -g1,7701:26804065,4812305 -g1,7701:30302376,4812305 -) -) -] -[1,7701:6630773,45706769:25952256,40108032,0 -(1,7701:6630773,45706769:25952256,40108032,0 -(1,7701:6630773,45706769:0,0,0 -g1,7701:6630773,45706769 -) -[1,7701:6630773,45706769:25952256,40108032,0 -v1,7653:6630773,6254097:0,393216,0 -(1,7653:6630773,5860881:25952256,0,0 -g1,7653:6630773,5860881 -g1,7653:6303093,5860881 -r1,7701:6401397,5860881:98304,0,0 -g1,7653:6600626,5860881 -g1,7653:6797234,5860881 -[1,7653:6797234,5860881:25785795,0,0 -] -g1,7653:32583029,5860881 -) -h1,7653:6630773,5860881:0,0,0 -(1,7656:6630773,7226657:25952256,505283,134348 -h1,7655:6630773,7226657:983040,0,0 -k1,7655:10031235,7226657:244248 -k1,7655:11542948,7226657:244247 -k1,7655:14291327,7226657:244248 -k1,7655:15820081,7226657:244248 -(1,7655:15820081,7226657:0,452978,115847 -r1,7701:18288618,7226657:2468537,568825,115847 -k1,7655:15820081,7226657:-2468537 -) -(1,7655:15820081,7226657:2468537,452978,115847 -k1,7655:15820081,7226657:3277 -h1,7655:18285341,7226657:0,411205,112570 -) -k1,7655:18532865,7226657:244247 -k1,7655:21118059,7226657:244248 -k1,7655:22381392,7226657:244248 -k1,7655:25052437,7226657:244247 -k1,7655:27595033,7226657:244248 -k1,7655:28490709,7226657:244248 -k1,7655:30005044,7226657:244247 -k1,7655:30605152,7226657:244248 -k1,7655:32583029,7226657:0 -) -(1,7656:6630773,8068145:25952256,513147,134348 -k1,7655:8080705,8068145:217855 -k1,7655:9796713,8068145:217855 -h1,7655:10593631,8068145:0,0,0 -k1,7655:11192250,8068145:217855 -k1,7655:12278458,8068145:217856 -k1,7655:13600595,8068145:217855 -k1,7655:14910935,8068145:217855 -(1,7655:14910935,8068145:0,452978,115847 -r1,7701:17379472,8068145:2468537,568825,115847 -k1,7655:14910935,8068145:-2468537 -) -(1,7655:14910935,8068145:2468537,452978,115847 -k1,7655:14910935,8068145:3277 -h1,7655:17376195,8068145:0,411205,112570 -) -k1,7655:17597327,8068145:217855 -k1,7655:18466610,8068145:217855 -k1,7655:21416661,8068145:217855 -k1,7655:22653601,8068145:217855 -k1,7655:25298254,8068145:217855 -k1,7655:27814458,8068145:217856 -k1,7655:28683741,8068145:217855 -k1,7655:30171684,8068145:217855 -k1,7655:31923737,8068145:217855 -k1,7655:32583029,8068145:0 -) -(1,7656:6630773,8909633:25952256,513147,134348 -k1,7655:7170925,8909633:184292 -k1,7655:8744580,8909633:184292 -k1,7655:10978837,8909633:184291 -k1,7655:11790964,8909633:184292 -k1,7655:13178497,8909633:184292 -k1,7655:14903540,8909633:184292 -k1,7655:16106917,8909633:184292 -k1,7655:19363536,8909633:184291 -k1,7655:20199256,8909633:184292 -(1,7655:20199256,8909633:0,452978,115847 -r1,7701:22667793,8909633:2468537,568825,115847 -k1,7655:20199256,8909633:-2468537 -) -(1,7655:20199256,8909633:2468537,452978,115847 -k1,7655:20199256,8909633:3277 -h1,7655:22664516,8909633:0,411205,112570 -) -k1,7655:22852085,8909633:184292 -k1,7655:23567874,8909633:184292 -k1,7655:26039373,8909633:184292 -k1,7655:26579525,8909633:184292 -k1,7655:29146705,8909633:184291 -k1,7655:29990289,8909633:184292 -k1,7655:31193666,8909633:184292 -k1,7655:32583029,8909633:0 -) -(1,7656:6630773,9751121:25952256,513147,134348 -k1,7655:8695574,9751121:188505 -k1,7655:10622095,9751121:188506 -k1,7655:13829844,9751121:188505 -k1,7655:16953051,9751121:188505 -k1,7655:18273363,9751121:188505 -k1,7655:20439746,9751121:188506 -k1,7655:21287543,9751121:188505 -k1,7655:23988043,9751121:188505 -k1,7655:26363484,9751121:188505 -k1,7655:29532567,9751121:188506 -k1,7655:30740157,9751121:188505 -k1,7655:32583029,9751121:0 -) -(1,7656:6630773,10592609:25952256,513147,134348 -k1,7655:7504848,10592609:214783 -k1,7655:10473454,10592609:214783 -k1,7655:11044098,10592609:214784 -k1,7655:13954377,10592609:214783 -k1,7655:14820588,10592609:214783 -k1,7655:16192081,10592609:214783 -k1,7655:17089749,10592609:214783 -k1,7655:18954730,10592609:214784 -k1,7655:22056374,10592609:214783 -k1,7655:23375439,10592609:214783 -k1,7655:24337988,10592609:214783 -k1,7655:26758058,10592609:214783 -k1,7655:27659004,10592609:214784 -k1,7655:28644490,10592609:214783 -k1,7655:31931601,10592609:214783 -k1,7656:32583029,10592609:0 -) -(1,7656:6630773,11434097:25952256,513147,134348 -(1,7655:6630773,11434097:0,452978,115847 -r1,7701:9099310,11434097:2468537,568825,115847 -k1,7655:6630773,11434097:-2468537 -) -(1,7655:6630773,11434097:2468537,452978,115847 -k1,7655:6630773,11434097:3277 -h1,7655:9096033,11434097:0,411205,112570 -) -k1,7655:9480053,11434097:207073 -k1,7655:12476994,11434097:207073 -(1,7655:12476994,11434097:0,452978,115847 -r1,7701:14945531,11434097:2468537,568825,115847 -k1,7655:12476994,11434097:-2468537 -) -(1,7655:12476994,11434097:2468537,452978,115847 -k1,7655:12476994,11434097:3277 -h1,7655:14942254,11434097:0,411205,112570 -) -k1,7655:15152604,11434097:207073 -k1,7655:15891174,11434097:207073 -k1,7655:17164518,11434097:207073 -k1,7655:19348813,11434097:207074 -k1,7655:20503537,11434097:207073 -k1,7655:22970947,11434097:207073 -k1,7655:25891211,11434097:207073 -k1,7655:26757576,11434097:207073 -k1,7655:28354012,11434097:207073 -k1,7655:30767682,11434097:207073 -k1,7655:32583029,11434097:0 -) -(1,7656:6630773,12275585:25952256,505283,126483 -k1,7655:7558238,12275585:146931 -k1,7655:9137788,12275585:146932 -k1,7655:9970881,12275585:146931 -k1,7655:10575910,12275585:146932 -k1,7655:13344936,12275585:146931 -k1,7655:13847728,12275585:146932 -k1,7655:15972536,12275585:146931 -k1,7655:18152395,12275585:146932 -k1,7655:21012517,12275585:146931 -k1,7655:21845611,12275585:146932 -k1,7655:23874736,12275585:146931 -k1,7655:25907139,12275585:146932 -k1,7655:26585567,12275585:146931 -k1,7655:29362459,12275585:146932 -k1,7655:30884991,12275585:146931 -k1,7655:32583029,12275585:0 -) -(1,7656:6630773,13117073:25952256,513147,126483 -k1,7655:7532328,13117073:135439 -k1,7655:10380959,13117073:135440 -k1,7655:11507958,13117073:135439 -k1,7655:12302690,13117073:135440 -k1,7655:13457214,13117073:135439 -k1,7655:15246127,13117073:135440 -k1,7655:17110406,13117073:135439 -k1,7655:18080775,13117073:135440 -k1,7655:19235299,13117073:135439 -k1,7655:20737820,13117073:135440 -k1,7655:21540415,13117073:135439 -(1,7655:21540415,13117073:0,452978,115847 -r1,7701:23657240,13117073:2116825,568825,115847 -k1,7655:21540415,13117073:-2116825 -) -(1,7655:21540415,13117073:2116825,452978,115847 -k1,7655:21540415,13117073:3277 -h1,7655:23653963,13117073:0,411205,112570 -) -k1,7655:23792680,13117073:135440 -k1,7655:25119564,13117073:135439 -(1,7655:25119564,13117073:0,414482,115847 -r1,7701:26884677,13117073:1765113,530329,115847 -k1,7655:25119564,13117073:-1765113 -) -(1,7655:25119564,13117073:1765113,414482,115847 -k1,7655:25119564,13117073:3277 -h1,7655:26881400,13117073:0,411205,112570 -) -k1,7655:27020117,13117073:135440 -k1,7655:28358797,13117073:135439 -k1,7655:31478747,13117073:135440 -k1,7655:32583029,13117073:0 -) -(1,7656:6630773,13958561:25952256,513147,134348 -k1,7655:7593005,13958561:214466 -k1,7655:10179220,13958561:214467 -k1,7655:11045114,13958561:214466 -k1,7655:12391388,13958561:214467 -k1,7655:13265146,13958561:214466 -k1,7655:14988252,13958561:214467 -k1,7655:18877977,13958561:214466 -k1,7655:19778605,13958561:214466 -k1,7655:20759188,13958561:214467 -k1,7655:22482293,13958561:214466 -k1,7655:25565926,13958561:214467 -k1,7655:30446555,13958561:214466 -k1,7655:32583029,13958561:0 -) -(1,7656:6630773,14800049:25952256,505283,95026 -g1,7655:7481430,14800049 -g1,7655:8837369,14800049 -k1,7656:32583029,14800049:21809726 -g1,7656:32583029,14800049 -) -v1,7658:6630773,16165825:0,393216,0 -(1,7690:6630773,30360916:25952256,14588307,0 -g1,7690:6630773,30360916 -g1,7690:6303093,30360916 -r1,7701:6401397,30360916:98304,14588307,0 -g1,7690:6600626,30360916 -g1,7690:6797234,30360916 -[1,7690:6797234,30360916:25785795,14588307,0 -(1,7659:6797234,16560928:25785795,788319,218313 -(1,7658:6797234,16560928:0,788319,218313 -r1,7701:7917113,16560928:1119879,1006632,218313 -k1,7658:6797234,16560928:-1119879 -) -(1,7658:6797234,16560928:1119879,788319,218313 -) -g1,7658:8116342,16560928 -g1,7658:8444022,16560928 -g1,7658:10152545,16560928 -g1,7658:11016309,16560928 -g1,7658:13026298,16560928 -g1,7658:16037022,16560928 -g1,7658:16948627,16560928 -g1,7658:18780358,16560928 -g1,7658:19626427,16560928 -g1,7658:20195279,16560928 -g1,7658:21810741,16560928 -k1,7658:32583029,16560928:8499499 -g1,7659:32583029,16560928 -) -(1,7659:6797234,17402416:25785795,505283,126483 -k1,7658:7899852,17402416:149069 -k1,7658:9141405,17402416:149068 -k1,7658:11673363,17402416:149069 -k1,7658:13890747,17402416:149068 -k1,7658:14722701,17402416:149069 -k1,7658:17491899,17402416:149069 -k1,7658:20067765,17402416:149068 -k1,7658:21610785,17402416:149069 -k1,7658:22778939,17402416:149069 -k1,7658:26142548,17402416:149068 -k1,7658:29038231,17402416:149069 -(1,7658:29038231,17402416:0,452978,115847 -r1,7701:30099921,17402416:1061690,568825,115847 -k1,7658:29038231,17402416:-1061690 -) -(1,7658:29038231,17402416:1061690,452978,115847 -g1,7658:29744932,17402416 -h1,7658:30096644,17402416:0,411205,112570 -) -k1,7658:30248989,17402416:149068 -k1,7658:31773659,17402416:149069 -k1,7658:32583029,17402416:0 -) -(1,7659:6797234,18243904:25785795,513147,134348 -k1,7658:7985503,18243904:169184 -k1,7658:9187536,18243904:169185 -k1,7658:10016012,18243904:169184 -k1,7658:11204281,18243904:169184 -k1,7658:15192904,18243904:169185 -k1,7658:16404110,18243904:169184 -k1,7658:19408381,18243904:169184 -k1,7658:20228994,18243904:169185 -k1,7658:22823010,18243904:169184 -k1,7658:24011279,18243904:169184 -k1,7658:26893655,18243904:169185 -k1,7658:27722131,18243904:169184 -k1,7658:29280678,18243904:169184 -k1,7658:30384406,18243904:169185 -(1,7658:30384406,18243904:0,452978,115847 -r1,7701:31797807,18243904:1413401,568825,115847 -k1,7658:30384406,18243904:-1413401 -) -(1,7658:30384406,18243904:1413401,452978,115847 -k1,7658:30384406,18243904:3277 -h1,7658:31794530,18243904:0,411205,112570 -) -k1,7658:31966991,18243904:169184 -k1,7658:32583029,18243904:0 -) -(1,7659:6797234,19085392:25785795,505283,134348 -g1,7658:10410233,19085392 -g1,7658:14462324,19085392 -g1,7658:16574549,19085392 -g1,7658:17642130,19085392 -g1,7658:18933844,19085392 -(1,7658:18933844,19085392:0,452978,115847 -r1,7701:21050669,19085392:2116825,568825,115847 -k1,7658:18933844,19085392:-2116825 -) -(1,7658:18933844,19085392:2116825,452978,115847 -k1,7658:18933844,19085392:3277 -h1,7658:21047392,19085392:0,411205,112570 -) -g1,7658:21249898,19085392 -g1,7658:22135289,19085392 -g1,7658:24583714,19085392 -g1,7658:25465828,19085392 -(1,7658:25465828,19085392:0,452978,115847 -r1,7701:27934365,19085392:2468537,568825,115847 -k1,7658:25465828,19085392:-2468537 -) -(1,7658:25465828,19085392:2468537,452978,115847 -k1,7658:25465828,19085392:3277 -h1,7658:27931088,19085392:0,411205,112570 -) -g1,7658:28133594,19085392 -g1,7658:29564900,19085392 -g1,7658:31262282,19085392 -h1,7658:32059200,19085392:0,0,0 -k1,7659:32583029,19085392:143065 -g1,7659:32583029,19085392 -) -v1,7661:6797234,20275858:0,393216,0 -(1,7671:6797234,23157624:25785795,3274982,196608 -g1,7671:6797234,23157624 -g1,7671:6797234,23157624 -g1,7671:6600626,23157624 -(1,7671:6600626,23157624:0,3274982,196608 -r1,7701:32779637,23157624:26179011,3471590,196608 -k1,7671:6600625,23157624:-26179012 -) -(1,7671:6600626,23157624:26179011,3274982,196608 -[1,7671:6797234,23157624:25785795,3078374,0 -(1,7663:6797234,20483476:25785795,404226,107478 -(1,7662:6797234,20483476:0,0,0 -g1,7662:6797234,20483476 -g1,7662:6797234,20483476 -g1,7662:6469554,20483476 -(1,7662:6469554,20483476:0,0,0 -) -g1,7662:6797234,20483476 -) -g1,7663:12171711,20483476 -g1,7663:13120149,20483476 -g1,7663:15017023,20483476 -g1,7663:15649315,20483476 -g1,7663:22288375,20483476 -g1,7663:25765978,20483476 -g1,7663:26398270,20483476 -h1,7663:28295144,20483476:0,0,0 -k1,7663:32583029,20483476:4287885 -g1,7663:32583029,20483476 -) -(1,7664:6797234,21149654:25785795,404226,82312 -h1,7664:6797234,21149654:0,0,0 -g1,7664:14068586,21149654 -h1,7664:14700878,21149654:0,0,0 -k1,7664:32583030,21149654:17882152 -g1,7664:32583030,21149654 -) -(1,7670:6797234,21815832:25785795,404226,107478 -(1,7666:6797234,21815832:0,0,0 -g1,7666:6797234,21815832 -g1,7666:6797234,21815832 -g1,7666:6469554,21815832 -(1,7666:6469554,21815832:0,0,0 -) -g1,7666:6797234,21815832 -) -g1,7670:7745671,21815832 -g1,7670:8061817,21815832 -g1,7670:8377963,21815832 -g1,7670:10907129,21815832 -g1,7670:14700877,21815832 -g1,7670:18810771,21815832 -g1,7670:22604519,21815832 -h1,7670:26398267,21815832:0,0,0 -k1,7670:32583029,21815832:6184762 -g1,7670:32583029,21815832 -) -(1,7670:6797234,22482010:25785795,388497,9436 -h1,7670:6797234,22482010:0,0,0 -g1,7670:7745671,22482010 -g1,7670:8377963,22482010 -g1,7670:8694109,22482010 -g1,7670:10907129,22482010 -g1,7670:11223275,22482010 -g1,7670:11539421,22482010 -g1,7670:11855567,22482010 -g1,7670:12171713,22482010 -g1,7670:12487859,22482010 -g1,7670:12804005,22482010 -g1,7670:13120151,22482010 -g1,7670:13436297,22482010 -g1,7670:14700880,22482010 -g1,7670:15017026,22482010 -g1,7670:15333172,22482010 -g1,7670:15649318,22482010 -g1,7670:15965464,22482010 -g1,7670:16281610,22482010 -g1,7670:16597756,22482010 -g1,7670:16913902,22482010 -g1,7670:17230048,22482010 -g1,7670:17546194,22482010 -g1,7670:18810777,22482010 -g1,7670:19126923,22482010 -g1,7670:19443069,22482010 -g1,7670:19759215,22482010 -g1,7670:20075361,22482010 -g1,7670:20391507,22482010 -g1,7670:20707653,22482010 -g1,7670:21023799,22482010 -g1,7670:21339945,22482010 -g1,7670:22604528,22482010 -g1,7670:22920674,22482010 -g1,7670:23236820,22482010 -g1,7670:23552966,22482010 -g1,7670:23869112,22482010 -g1,7670:24185258,22482010 -g1,7670:24501404,22482010 -g1,7670:24817550,22482010 -g1,7670:25133696,22482010 -g1,7670:25449842,22482010 -h1,7670:26398279,22482010:0,0,0 -k1,7670:32583029,22482010:6184750 -g1,7670:32583029,22482010 -) -(1,7670:6797234,23148188:25785795,388497,9436 -h1,7670:6797234,23148188:0,0,0 -g1,7670:7745671,23148188 -g1,7670:8377963,23148188 -g1,7670:8694109,23148188 -g1,7670:10907129,23148188 -g1,7670:11223275,23148188 -g1,7670:11539421,23148188 -g1,7670:11855567,23148188 -g1,7670:12171713,23148188 -g1,7670:12487859,23148188 -g1,7670:12804005,23148188 -g1,7670:13120151,23148188 -g1,7670:13436297,23148188 -g1,7670:14700880,23148188 -g1,7670:15017026,23148188 -g1,7670:15333172,23148188 -g1,7670:15649318,23148188 -g1,7670:15965464,23148188 -g1,7670:16281610,23148188 -g1,7670:16597756,23148188 -g1,7670:16913902,23148188 -g1,7670:17230048,23148188 -g1,7670:17546194,23148188 -g1,7670:18810777,23148188 -g1,7670:19126923,23148188 -g1,7670:19443069,23148188 -g1,7670:19759215,23148188 -g1,7670:20075361,23148188 -g1,7670:20391507,23148188 -g1,7670:20707653,23148188 -g1,7670:21023799,23148188 -g1,7670:21339945,23148188 -g1,7670:22604528,23148188 -g1,7670:22920674,23148188 -g1,7670:23236820,23148188 -g1,7670:23552966,23148188 -g1,7670:23869112,23148188 -g1,7670:24185258,23148188 -g1,7670:24501404,23148188 -g1,7670:24817550,23148188 -g1,7670:25133696,23148188 -g1,7670:25449842,23148188 -h1,7670:26398279,23148188:0,0,0 -k1,7670:32583029,23148188:6184750 -g1,7670:32583029,23148188 -) -] -) -g1,7671:32583029,23157624 -g1,7671:6797234,23157624 -g1,7671:6797234,23157624 -g1,7671:32583029,23157624 -g1,7671:32583029,23157624 -) -h1,7671:6797234,23354232:0,0,0 -(1,7675:6797234,24720008:25785795,505283,134348 -h1,7674:6797234,24720008:983040,0,0 -k1,7674:10889620,24720008:316202 -k1,7674:12074173,24720008:316201 -k1,7674:13482860,24720008:316202 -k1,7674:15809707,24720008:316202 -k1,7674:16741946,24720008:316201 -k1,7674:17414008,24720008:316202 -k1,7674:20113099,24720008:316202 -k1,7674:21115463,24720008:316202 -k1,7674:24503992,24720008:316201 -k1,7674:25471622,24720008:316202 -(1,7674:25471622,24720008:0,452978,115847 -r1,7701:27940159,24720008:2468537,568825,115847 -k1,7674:25471622,24720008:-2468537 -) -(1,7674:25471622,24720008:2468537,452978,115847 -k1,7674:25471622,24720008:3277 -h1,7674:27936882,24720008:0,411205,112570 -) -k1,7674:28256361,24720008:316202 -k1,7674:29223990,24720008:316201 -k1,7674:31563944,24720008:316202 -k1,7675:32583029,24720008:0 -) -(1,7675:6797234,25561496:25785795,505283,115847 -(1,7674:6797234,25561496:0,452978,115847 -r1,7701:9265771,25561496:2468537,568825,115847 -k1,7674:6797234,25561496:-2468537 -) -(1,7674:6797234,25561496:2468537,452978,115847 -k1,7674:6797234,25561496:3277 -h1,7674:9262494,25561496:0,411205,112570 -) -g1,7674:9465000,25561496 -g1,7674:11913425,25561496 -g1,7674:12764082,25561496 -g1,7674:14233399,25561496 -k1,7675:32583029,25561496:16641762 -g1,7675:32583029,25561496 -) -v1,7677:6797234,26751962:0,393216,0 -(1,7687:6797234,29640020:25785795,3281274,196608 -g1,7687:6797234,29640020 -g1,7687:6797234,29640020 -g1,7687:6600626,29640020 -(1,7687:6600626,29640020:0,3281274,196608 -r1,7701:32779637,29640020:26179011,3477882,196608 -k1,7687:6600625,29640020:-26179012 -) -(1,7687:6600626,29640020:26179011,3281274,196608 -[1,7687:6797234,29640020:25785795,3084666,0 -(1,7679:6797234,26965872:25785795,410518,107478 -(1,7678:6797234,26965872:0,0,0 -g1,7678:6797234,26965872 -g1,7678:6797234,26965872 -g1,7678:6469554,26965872 -(1,7678:6469554,26965872:0,0,0 -) -g1,7678:6797234,26965872 -) -g1,7679:12171711,26965872 -g1,7679:13120149,26965872 -g1,7679:22920665,26965872 -h1,7679:23236811,26965872:0,0,0 -k1,7679:32583029,26965872:9346218 -g1,7679:32583029,26965872 -) -(1,7680:6797234,27632050:25785795,404226,82312 -h1,7680:6797234,27632050:0,0,0 -g1,7680:14068586,27632050 -h1,7680:14700878,27632050:0,0,0 -k1,7680:32583030,27632050:17882152 -g1,7680:32583030,27632050 -) -(1,7686:6797234,28298228:25785795,404226,107478 -(1,7682:6797234,28298228:0,0,0 -g1,7682:6797234,28298228 -g1,7682:6797234,28298228 -g1,7682:6469554,28298228 -(1,7682:6469554,28298228:0,0,0 -) -g1,7682:6797234,28298228 -) -g1,7686:7745671,28298228 -g1,7686:8061817,28298228 -g1,7686:8377963,28298228 -g1,7686:8694109,28298228 -g1,7686:12804003,28298228 -g1,7686:16597751,28298228 -g1,7686:20707645,28298228 -g1,7686:24501393,28298228 -h1,7686:26714413,28298228:0,0,0 -k1,7686:32583029,28298228:5868616 -g1,7686:32583029,28298228 -) -(1,7686:6797234,28964406:25785795,388497,9436 -h1,7686:6797234,28964406:0,0,0 -g1,7686:7745671,28964406 -g1,7686:8694108,28964406 -g1,7686:9010254,28964406 -g1,7686:9326400,28964406 -g1,7686:9642546,28964406 -g1,7686:9958692,28964406 -g1,7686:10274838,28964406 -g1,7686:10590984,28964406 -g1,7686:10907130,28964406 -g1,7686:11223276,28964406 -g1,7686:11539422,28964406 -g1,7686:12804005,28964406 -g1,7686:13120151,28964406 -g1,7686:13436297,28964406 -g1,7686:13752443,28964406 -g1,7686:14068589,28964406 -g1,7686:14384735,28964406 -g1,7686:14700881,28964406 -g1,7686:15017027,28964406 -g1,7686:15333173,28964406 -g1,7686:16597756,28964406 -g1,7686:16913902,28964406 -g1,7686:17230048,28964406 -g1,7686:17546194,28964406 -g1,7686:17862340,28964406 -g1,7686:18178486,28964406 -g1,7686:18494632,28964406 -g1,7686:18810778,28964406 -g1,7686:19126924,28964406 -g1,7686:19443070,28964406 -g1,7686:20707653,28964406 -g1,7686:21023799,28964406 -g1,7686:21339945,28964406 -g1,7686:21656091,28964406 -g1,7686:21972237,28964406 -g1,7686:22288383,28964406 -g1,7686:22604529,28964406 -g1,7686:22920675,28964406 -g1,7686:23236821,28964406 -g1,7686:24501404,28964406 -g1,7686:24817550,28964406 -h1,7686:26714424,28964406:0,0,0 -k1,7686:32583029,28964406:5868605 -g1,7686:32583029,28964406 -) -(1,7686:6797234,29630584:25785795,388497,9436 -h1,7686:6797234,29630584:0,0,0 -g1,7686:7745671,29630584 -g1,7686:8694108,29630584 -g1,7686:9010254,29630584 -g1,7686:9326400,29630584 -g1,7686:9642546,29630584 -g1,7686:9958692,29630584 -g1,7686:10274838,29630584 -g1,7686:10590984,29630584 -g1,7686:10907130,29630584 -g1,7686:11223276,29630584 -g1,7686:11539422,29630584 -g1,7686:12804005,29630584 -g1,7686:13120151,29630584 -g1,7686:13436297,29630584 -g1,7686:13752443,29630584 -g1,7686:14068589,29630584 -g1,7686:14384735,29630584 -g1,7686:14700881,29630584 -g1,7686:15017027,29630584 -g1,7686:15333173,29630584 -g1,7686:16597756,29630584 -g1,7686:16913902,29630584 -g1,7686:17230048,29630584 -g1,7686:17546194,29630584 -g1,7686:17862340,29630584 -g1,7686:18178486,29630584 -g1,7686:18494632,29630584 -g1,7686:18810778,29630584 -g1,7686:19126924,29630584 -g1,7686:19443070,29630584 -g1,7686:20707653,29630584 -g1,7686:21023799,29630584 -g1,7686:21339945,29630584 -g1,7686:21656091,29630584 -g1,7686:21972237,29630584 -g1,7686:22288383,29630584 -g1,7686:22604529,29630584 -g1,7686:22920675,29630584 -g1,7686:23236821,29630584 -g1,7686:24501404,29630584 -g1,7686:24817550,29630584 -h1,7686:26714424,29630584:0,0,0 -k1,7686:32583029,29630584:5868605 -g1,7686:32583029,29630584 -) -] -) -g1,7687:32583029,29640020 -g1,7687:6797234,29640020 -g1,7687:6797234,29640020 -g1,7687:32583029,29640020 -g1,7687:32583029,29640020 -) -h1,7687:6797234,29836628:0,0,0 -] -g1,7690:32583029,30360916 -) -h1,7690:6630773,30360916:0,0,0 -v1,7692:6630773,31726692:0,393216,0 -(1,7694:6630773,39006981:25952256,7673505,0 -g1,7694:6630773,39006981 -g1,7694:6303093,39006981 -r1,7701:6401397,39006981:98304,7673505,0 -g1,7694:6600626,39006981 -g1,7694:6797234,39006981 -[1,7694:6797234,39006981:25785795,7673505,0 -(1,7694:6797234,32159230:25785795,825754,196608 -(1,7692:6797234,32159230:0,825754,196608 -r1,7701:8834093,32159230:2036859,1022362,196608 -k1,7692:6797234,32159230:-2036859 -) -(1,7692:6797234,32159230:2036859,825754,196608 -) -k1,7692:9037801,32159230:203708 -k1,7692:10764019,32159230:327680 -k1,7692:10764019,32159230:0 -k1,7693:13019003,32159230:203707 -k1,7693:13578571,32159230:203708 -k1,7693:15065474,32159230:203708 -k1,7693:16658544,32159230:203707 -k1,7693:18738548,32159230:203708 -k1,7693:20133701,32159230:203708 -k1,7693:21731359,32159230:203707 -k1,7693:23589851,32159230:203708 -k1,7693:26413688,32159230:203708 -k1,7693:29330586,32159230:203707 -k1,7693:30928245,32159230:203708 -k1,7693:32583029,32159230:0 -) -(1,7694:6797234,33000718:25785795,513147,126483 -k1,7693:9790755,33000718:231178 -k1,7693:13438980,33000718:231178 -k1,7693:16940406,33000718:231179 -k1,7693:17830876,33000718:231178 -k1,7693:20072699,33000718:231178 -k1,7693:21495322,33000718:231178 -k1,7693:22082360,33000718:231178 -k1,7693:24207528,33000718:231178 -k1,7693:25832658,33000718:231179 -k1,7693:27236275,33000718:231178 -k1,7693:29433533,33000718:231178 -k1,7693:30886302,33000718:231178 -k1,7693:32583029,33000718:0 -) -(1,7694:6797234,33842206:25785795,513147,115847 -k1,7693:9748102,33842206:237677 -(1,7693:9748102,33842206:0,414482,115847 -r1,7701:10106368,33842206:358266,530329,115847 -k1,7693:9748102,33842206:-358266 -) -(1,7693:9748102,33842206:358266,414482,115847 -k1,7693:9748102,33842206:3277 -h1,7693:10103091,33842206:0,411205,112570 -) -k1,7693:10517714,33842206:237676 -(1,7693:10517714,33842206:0,414482,115847 -r1,7701:10875980,33842206:358266,530329,115847 -k1,7693:10517714,33842206:-358266 -) -(1,7693:10517714,33842206:358266,414482,115847 -k1,7693:10517714,33842206:3277 -h1,7693:10872703,33842206:0,411205,112570 -) -k1,7693:11287327,33842206:237677 -(1,7693:11287327,33842206:0,414482,115847 -r1,7701:11645593,33842206:358266,530329,115847 -k1,7693:11287327,33842206:-358266 -) -(1,7693:11287327,33842206:358266,414482,115847 -k1,7693:11287327,33842206:3277 -h1,7693:11642316,33842206:0,411205,112570 -) -k1,7693:11883269,33842206:237676 -k1,7693:13312391,33842206:237677 -(1,7693:13312391,33842206:0,414482,115847 -r1,7701:13670657,33842206:358266,530329,115847 -k1,7693:13312391,33842206:-358266 -) -(1,7693:13312391,33842206:358266,414482,115847 -k1,7693:13312391,33842206:3277 -h1,7693:13667380,33842206:0,411205,112570 -) -k1,7693:14082003,33842206:237676 -k1,7693:14925233,33842206:237677 -k1,7693:16457900,33842206:237676 -k1,7693:17714662,33842206:237677 -k1,7693:19486536,33842206:237676 -k1,7693:20383505,33842206:237677 -k1,7693:21640266,33842206:237676 -k1,7693:23267306,33842206:237677 -k1,7693:25381278,33842206:237676 -k1,7693:26343783,33842206:237677 -k1,7693:27865965,33842206:237676 -k1,7693:29122727,33842206:237677 -k1,7693:31371048,33842206:237676 -k1,7693:32224763,33842206:237677 -(1,7693:32224763,33842206:0,414482,115847 -r1,7701:32583029,33842206:358266,530329,115847 -k1,7693:32224763,33842206:-358266 -) -(1,7693:32224763,33842206:358266,414482,115847 -k1,7693:32224763,33842206:3277 -h1,7693:32579752,33842206:0,411205,112570 -) -k1,7693:32583029,33842206:0 -) -(1,7694:6797234,34683694:25785795,513147,134348 -k1,7693:7961903,34683694:173109 -k1,7693:8751049,34683694:173108 -k1,7693:12337928,34683694:173109 -k1,7693:14424033,34683694:173109 -k1,7693:15202694,34683694:173108 -k1,7693:16670794,34683694:173109 -k1,7693:17862987,34683694:173108 -k1,7693:19570294,34683694:173109 -k1,7693:20402695,34683694:173109 -k1,7693:21594888,34683694:173108 -k1,7693:23157360,34683694:173109 -k1,7693:25206765,34683694:173109 -k1,7693:28496765,34683694:173108 -k1,7693:29321302,34683694:173109 -k1,7693:32583029,34683694:0 -) -(1,7694:6797234,35525182:25785795,513147,134348 -k1,7693:9035391,35525182:227512 -k1,7693:9922196,35525182:227513 -k1,7693:11168793,35525182:227512 -k1,7693:12761420,35525182:227512 -k1,7693:13656089,35525182:227513 -(1,7693:13656089,35525182:0,414482,115847 -r1,7701:14014355,35525182:358266,530329,115847 -k1,7693:13656089,35525182:-358266 -) -(1,7693:13656089,35525182:358266,414482,115847 -k1,7693:13656089,35525182:3277 -h1,7693:14011078,35525182:0,411205,112570 -) -k1,7693:14241867,35525182:227512 -k1,7693:15660824,35525182:227512 -(1,7693:15660824,35525182:0,414482,115847 -r1,7701:16019090,35525182:358266,530329,115847 -k1,7693:15660824,35525182:-358266 -) -(1,7693:15660824,35525182:358266,414482,115847 -k1,7693:15660824,35525182:3277 -h1,7693:16015813,35525182:0,411205,112570 -) -k1,7693:16246603,35525182:227513 -k1,7693:18934337,35525182:227512 -k1,7693:21349442,35525182:227513 -k1,7693:21932814,35525182:227512 -k1,7693:23443521,35525182:227512 -k1,7693:26053923,35525182:227513 -k1,7693:26932863,35525182:227512 -k1,7693:28179460,35525182:227512 -k1,7693:29796336,35525182:227513 -k1,7693:31900144,35525182:227512 -k1,7693:32583029,35525182:0 -) -(1,7694:6797234,36366670:25785795,513147,134348 -k1,7693:9277553,36366670:219982 -k1,7693:10516621,36366670:219983 -k1,7693:12714480,36366670:219982 -k1,7693:13593755,36366670:219983 -k1,7693:15509153,36366670:219982 -k1,7693:16345174,36366670:219983 -k1,7693:16921016,36366670:219982 -k1,7693:19826009,36366670:219983 -k1,7693:20673826,36366670:219982 -k1,7693:22595779,36366670:219983 -k1,7693:24944370,36366670:219982 -k1,7693:25979621,36366670:219983 -k1,7693:27218688,36366670:219982 -k1,7693:29699008,36366670:219983 -k1,7693:31773659,36366670:219982 -k1,7693:32583029,36366670:0 -) -(1,7694:6797234,37208158:25785795,513147,126483 -k1,7693:8696440,37208158:203790 -k1,7693:12129188,37208158:203789 -k1,7693:13142348,37208158:203790 -k1,7693:14365222,37208158:203789 -k1,7693:15538289,37208158:203790 -k1,7693:17037069,37208158:203789 -k1,7693:18259944,37208158:203790 -k1,7693:19997932,37208158:203790 -k1,7693:20963249,37208158:203789 -k1,7693:22629147,37208158:203790 -k1,7693:23492228,37208158:203789 -k1,7693:25590008,37208158:203790 -(1,7693:25590008,37208158:0,414482,115847 -r1,7701:25948274,37208158:358266,530329,115847 -k1,7693:25590008,37208158:-358266 -) -(1,7693:25590008,37208158:358266,414482,115847 -k1,7693:25590008,37208158:3277 -h1,7693:25944997,37208158:0,411205,112570 -) -k1,7693:26152063,37208158:203789 -k1,7693:27547298,37208158:203790 -k1,7693:29723721,37208158:203789 -k1,7693:30689039,37208158:203790 -k1,7693:32583029,37208158:0 -) -(1,7694:6797234,38049646:25785795,513147,134348 -k1,7693:8476149,38049646:216807 -k1,7693:9884402,38049646:216808 -k1,7693:10862737,38049646:216807 -k1,7693:12759888,38049646:216808 -k1,7693:13643851,38049646:216807 -(1,7693:13643851,38049646:0,414482,115847 -r1,7701:14002117,38049646:358266,530329,115847 -k1,7693:13643851,38049646:-358266 -) -(1,7693:13643851,38049646:358266,414482,115847 -k1,7693:13643851,38049646:3277 -h1,7693:13998840,38049646:0,411205,112570 -) -k1,7693:14218925,38049646:216808 -k1,7693:16445721,38049646:216807 -k1,7693:18114151,38049646:216808 -k1,7693:20224948,38049646:216807 -k1,7693:22077535,38049646:216808 -k1,7693:23846235,38049646:216807 -k1,7693:26045507,38049646:216808 -k1,7693:27281399,38049646:216807 -k1,7693:30058699,38049646:216808 -k1,7693:31084876,38049646:216807 -k1,7693:32583029,38049646:0 -) -(1,7694:6797234,38891134:25785795,513147,115847 -h1,7693:7594152,38891134:0,0,0 -g1,7693:7793381,38891134 -g1,7693:9496661,38891134 -g1,7693:10714975,38891134 -g1,7693:12006689,38891134 -g1,7693:12873074,38891134 -(1,7693:12873074,38891134:0,452978,115847 -r1,7701:15341611,38891134:2468537,568825,115847 -k1,7693:12873074,38891134:-2468537 -) -(1,7693:12873074,38891134:2468537,452978,115847 -k1,7693:12873074,38891134:3277 -h1,7693:15338334,38891134:0,411205,112570 -) -g1,7693:15540840,38891134 -g1,7693:16549439,38891134 -g1,7693:18972960,38891134 -g1,7693:19703686,38891134 -k1,7694:32583029,38891134:9615650 -g1,7694:32583029,38891134 -) -] -g1,7694:32583029,39006981 -) -h1,7694:6630773,39006981:0,0,0 -(1,7696:6630773,41098241:25952256,555811,147783 -(1,7696:6630773,41098241:2450326,527696,0 -g1,7696:6630773,41098241 -g1,7696:9081099,41098241 -) -g1,7696:13757552,41098241 -g1,7696:14760319,41098241 -g1,7696:17463680,41098241 -k1,7696:32583029,41098241:11798181 -g1,7696:32583029,41098241 -) -(1,7699:6630773,42332945:25952256,513147,134348 -k1,7698:7262452,42332945:161786 -k1,7698:7955736,42332945:161787 -k1,7698:10894938,42332945:161786 -k1,7698:12341231,42332945:161787 -k1,7698:14195157,42332945:161786 -k1,7698:17198584,42332945:161786 -k1,7698:18890637,42332945:161787 -k1,7698:19703851,42332945:161786 -k1,7698:20613404,42332945:161787 -k1,7698:22740615,42332945:161786 -k1,7698:23553829,42332945:161786 -k1,7698:24486319,42332945:161787 -k1,7698:27139128,42332945:161786 -k1,7698:28690278,42332945:161787 -k1,7698:30728360,42332945:161786 -k1,7698:32583029,42332945:0 -) -(1,7699:6630773,43174433:25952256,513147,134348 -k1,7698:7600605,43174433:160462 -k1,7698:10252091,43174433:160463 -k1,7698:13427864,43174433:160462 -k1,7698:15444306,43174433:160462 -k1,7698:16290931,43174433:160463 -k1,7698:16807253,43174433:160462 -k1,7698:20176358,43174433:160462 -k1,7698:22017163,43174433:160462 -k1,7698:22860511,43174433:160463 -k1,7698:24875642,43174433:160462 -k1,7698:25845474,43174433:160462 -k1,7698:28813499,43174433:160463 -k1,7698:29921612,43174433:160462 -k1,7698:32583029,43174433:0 -) -(1,7699:6630773,44015921:25952256,513147,126483 -k1,7698:10366023,44015921:260531 -k1,7698:11277982,44015921:260531 -k1,7698:13817855,44015921:260531 -k1,7698:15904874,44015921:260531 -k1,7698:18499797,44015921:260531 -k1,7698:19376366,44015921:260531 -k1,7698:19992756,44015921:260530 -k1,7698:21642650,44015921:260531 -k1,7698:23953147,44015921:260531 -k1,7698:24841513,44015921:260531 -k1,7698:26121129,44015921:260531 -k1,7698:28622991,44015921:260531 -k1,7698:30424273,44015921:260531 -k1,7698:32583029,44015921:0 -) -(1,7699:6630773,44857409:25952256,505283,126483 -k1,7698:9176577,44857409:237626 -k1,7698:10518485,44857409:237626 -k1,7698:11503876,44857409:237625 -k1,7698:13254728,44857409:237626 -k1,7698:14143782,44857409:237626 -k1,7698:16679756,44857409:237626 -k1,7698:18928026,44857409:237625 -k1,7698:19781690,44857409:237626 -k1,7698:20375176,44857409:237626 -k1,7698:23124142,44857409:237626 -k1,7698:24044652,44857409:237625 -k1,7698:24933706,44857409:237626 -k1,7698:26368675,44857409:237626 -k1,7698:26962161,44857409:237626 -k1,7698:29711127,44857409:237626 -k1,7698:30600180,44857409:237625 -k1,7698:31193666,44857409:237626 -k1,7698:32583029,44857409:0 -) -(1,7699:6630773,45698897:25952256,513147,7863 -k1,7699:32583029,45698897:23902290 -g1,7699:32583029,45698897 -) -] -(1,7701:32583029,45706769:0,0,0 -g1,7701:32583029,45706769 -) -) -] -(1,7701:6630773,47279633:25952256,0,0 -h1,7701:6630773,47279633:25952256,0,0 -) -] -(1,7701:4262630,4025873:0,0,0 -[1,7701:-473656,4025873:0,0,0 -(1,7701:-473656,-710413:0,0,0 -(1,7701:-473656,-710413:0,0,0 -g1,7701:-473656,-710413 -) -g1,7701:-473656,-710413 -) -] -) -] -!33959 -}125 -Input:1028:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1029:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1030:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1031:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1032:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1033:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1034:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1035:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1036:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1037:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1038:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1039:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1140 -{126 -[1,7766:4262630,47279633:28320399,43253760,0 -(1,7766:4262630,4025873:0,0,0 -[1,7766:-473656,4025873:0,0,0 -(1,7766:-473656,-710413:0,0,0 -(1,7766:-473656,-644877:0,0,0 -k1,7766:-473656,-644877:-65536 +g1,6658:-473656,-710413 +) +] +) +] +!27304 +}104 +Input:914:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:915:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:916:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:917:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:918:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:919:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:920:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:921:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:922:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:923:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!942 +{105 +[1,6749:4262630,47279633:28320399,43253760,0 +(1,6749:4262630,4025873:0,0,0 +[1,6749:-473656,4025873:0,0,0 +(1,6749:-473656,-710413:0,0,0 +(1,6749:-473656,-644877:0,0,0 +k1,6749:-473656,-644877:-65536 ) -(1,7766:-473656,4736287:0,0,0 -k1,7766:-473656,4736287:5209943 +(1,6749:-473656,4736287:0,0,0 +k1,6749:-473656,4736287:5209943 ) -g1,7766:-473656,-710413 +g1,6749:-473656,-710413 ) ] ) -[1,7766:6630773,47279633:25952256,43253760,0 -[1,7766:6630773,4812305:25952256,786432,0 -(1,7766:6630773,4812305:25952256,513147,126483 -(1,7766:6630773,4812305:25952256,513147,126483 -g1,7766:3078558,4812305 -[1,7766:3078558,4812305:0,0,0 -(1,7766:3078558,2439708:0,1703936,0 -k1,7766:1358238,2439708:-1720320 -(1,5950:1358238,2439708:1720320,1703936,0 -(1,5950:1358238,2439708:1179648,16384,0 -r1,7766:2537886,2439708:1179648,16384,0 +[1,6749:6630773,47279633:25952256,43253760,0 +[1,6749:6630773,4812305:25952256,786432,0 +(1,6749:6630773,4812305:25952256,505283,11795 +(1,6749:6630773,4812305:25952256,505283,11795 +g1,6749:3078558,4812305 +[1,6749:3078558,4812305:0,0,0 +(1,6749:3078558,2439708:0,1703936,0 +k1,6749:1358238,2439708:-1720320 +(1,6148:1358238,2439708:1720320,1703936,0 +(1,6148:1358238,2439708:1179648,16384,0 +r1,6749:2537886,2439708:1179648,16384,0 ) -g1,5950:3062174,2439708 -(1,5950:3062174,2439708:16384,1703936,0 -[1,5950:3062174,2439708:25952256,1703936,0 -(1,5950:3062174,1915420:25952256,1179648,0 -(1,5950:3062174,1915420:16384,1179648,0 -r1,7766:3078558,1915420:16384,1179648,0 +g1,6148:3062174,2439708 +(1,6148:3062174,2439708:16384,1703936,0 +[1,6148:3062174,2439708:25952256,1703936,0 +(1,6148:3062174,1915420:25952256,1179648,0 +(1,6148:3062174,1915420:16384,1179648,0 +r1,6749:3078558,1915420:16384,1179648,0 ) -k1,5950:29014430,1915420:25935872 -g1,5950:29014430,1915420 +k1,6148:29014430,1915420:25935872 +g1,6148:29014430,1915420 ) ] ) ) ) ] -[1,7766:3078558,4812305:0,0,0 -(1,7766:3078558,2439708:0,1703936,0 -g1,7766:29030814,2439708 -g1,7766:36135244,2439708 -(1,5950:36135244,2439708:1720320,1703936,0 -(1,5950:36135244,2439708:16384,1703936,0 -[1,5950:36135244,2439708:25952256,1703936,0 -(1,5950:36135244,1915420:25952256,1179648,0 -(1,5950:36135244,1915420:16384,1179648,0 -r1,7766:36151628,1915420:16384,1179648,0 +[1,6749:3078558,4812305:0,0,0 +(1,6749:3078558,2439708:0,1703936,0 +g1,6749:29030814,2439708 +g1,6749:36135244,2439708 +(1,6148:36135244,2439708:1720320,1703936,0 +(1,6148:36135244,2439708:16384,1703936,0 +[1,6148:36135244,2439708:25952256,1703936,0 +(1,6148:36135244,1915420:25952256,1179648,0 +(1,6148:36135244,1915420:16384,1179648,0 +r1,6749:36151628,1915420:16384,1179648,0 ) -k1,5950:62087500,1915420:25935872 -g1,5950:62087500,1915420 +k1,6148:62087500,1915420:25935872 +g1,6148:62087500,1915420 ) ] ) -g1,5950:36675916,2439708 -(1,5950:36675916,2439708:1179648,16384,0 -r1,7766:37855564,2439708:1179648,16384,0 +g1,6148:36675916,2439708 +(1,6148:36675916,2439708:1179648,16384,0 +r1,6749:37855564,2439708:1179648,16384,0 ) ) -k1,7766:3078556,2439708:-34777008 +k1,6749:3078556,2439708:-34777008 ) ] -[1,7766:3078558,4812305:0,0,0 -(1,7766:3078558,49800853:0,16384,2228224 -k1,7766:1358238,49800853:-1720320 -(1,5950:1358238,49800853:1720320,16384,2228224 -(1,5950:1358238,49800853:1179648,16384,0 -r1,7766:2537886,49800853:1179648,16384,0 +[1,6749:3078558,4812305:0,0,0 +(1,6749:3078558,49800853:0,16384,2228224 +k1,6749:1358238,49800853:-1720320 +(1,6148:1358238,49800853:1720320,16384,2228224 +(1,6148:1358238,49800853:1179648,16384,0 +r1,6749:2537886,49800853:1179648,16384,0 ) -g1,5950:3062174,49800853 -(1,5950:3062174,52029077:16384,1703936,0 -[1,5950:3062174,52029077:25952256,1703936,0 -(1,5950:3062174,51504789:25952256,1179648,0 -(1,5950:3062174,51504789:16384,1179648,0 -r1,7766:3078558,51504789:16384,1179648,0 +g1,6148:3062174,49800853 +(1,6148:3062174,52029077:16384,1703936,0 +[1,6148:3062174,52029077:25952256,1703936,0 +(1,6148:3062174,51504789:25952256,1179648,0 +(1,6148:3062174,51504789:16384,1179648,0 +r1,6749:3078558,51504789:16384,1179648,0 ) -k1,5950:29014430,51504789:25935872 -g1,5950:29014430,51504789 +k1,6148:29014430,51504789:25935872 +g1,6148:29014430,51504789 ) ] ) ) ) ] -[1,7766:3078558,4812305:0,0,0 -(1,7766:3078558,49800853:0,16384,2228224 -g1,7766:29030814,49800853 -g1,7766:36135244,49800853 -(1,5950:36135244,49800853:1720320,16384,2228224 -(1,5950:36135244,52029077:16384,1703936,0 -[1,5950:36135244,52029077:25952256,1703936,0 -(1,5950:36135244,51504789:25952256,1179648,0 -(1,5950:36135244,51504789:16384,1179648,0 -r1,7766:36151628,51504789:16384,1179648,0 -) -k1,5950:62087500,51504789:25935872 -g1,5950:62087500,51504789 -) -] -) -g1,5950:36675916,49800853 -(1,5950:36675916,49800853:1179648,16384,0 -r1,7766:37855564,49800853:1179648,16384,0 -) -) -k1,7766:3078556,49800853:-34777008 -) -] -g1,7766:6630773,4812305 -g1,7766:6630773,4812305 -g1,7766:8364200,4812305 -g1,7766:10765439,4812305 -k1,7766:31387651,4812305:20622212 -) -) -] -[1,7766:6630773,45706769:25952256,40108032,0 -(1,7766:6630773,45706769:25952256,40108032,0 -(1,7766:6630773,45706769:0,0,0 -g1,7766:6630773,45706769 -) -[1,7766:6630773,45706769:25952256,40108032,0 -(1,7701:6630773,6254097:25952256,513147,134348 -h1,7700:6630773,6254097:983040,0,0 -k1,7700:10561840,6254097:196826 -k1,7700:11290164,6254097:196827 -k1,7700:14116950,6254097:196826 -k1,7700:16843466,6254097:196826 -k1,7700:18059378,6254097:196827 -k1,7700:20269470,6254097:196826 -k1,7700:21125588,6254097:196826 -k1,7700:22341500,6254097:196827 -k1,7700:24218669,6254097:196826 -k1,7700:27194222,6254097:196826 -k1,7700:28152577,6254097:196827 -k1,7700:29368488,6254097:196826 -k1,7700:32583029,6254097:0 -) -(1,7701:6630773,7095585:25952256,513147,134348 -k1,7700:9546775,7095585:169388 -(1,7700:9546775,7095585:0,452978,115847 -r1,7766:10608465,7095585:1061690,568825,115847 -k1,7700:9546775,7095585:-1061690 -) -(1,7700:9546775,7095585:1061690,452978,115847 -g1,7700:10253476,7095585 -h1,7700:10605188,7095585:0,411205,112570 -) -k1,7700:10777853,7095585:169388 -k1,7700:11478738,7095585:169388 -k1,7700:13342888,7095585:169389 -k1,7700:14273804,7095585:169388 -k1,7700:15462277,7095585:169388 -k1,7700:17644931,7095585:169388 -k1,7700:18473611,7095585:169388 -k1,7700:19662084,7095585:169388 -k1,7700:22570877,7095585:169388 -k1,7700:24718142,7095585:169388 -k1,7700:26119608,7095585:169389 -k1,7700:28567683,7095585:169388 -h1,7700:29936730,7095585:0,0,0 -k1,7700:30106118,7095585:169388 -k1,7700:31084876,7095585:169388 -k1,7700:32583029,7095585:0 -) -(1,7701:6630773,7937073:25952256,513147,134348 -h1,7700:7427691,7937073:0,0,0 -k1,7700:8030458,7937073:222003 -k1,7700:11215344,7937073:222003 -k1,7700:12305699,7937073:222003 -k1,7700:14188384,7937073:222003 -k1,7700:16782135,7937073:222003 -k1,7700:20169528,7937073:222004 -k1,7700:21594772,7937073:222003 -k1,7700:24801285,7937073:222003 -k1,7700:25554785,7937073:222003 -k1,7700:27378488,7937073:222003 -k1,7700:29577712,7937073:222003 -k1,7700:31193666,7937073:222003 -k1,7700:32583029,7937073:0 -) -(1,7701:6630773,8778561:25952256,513147,134348 -g1,7700:9036599,8778561 -g1,7700:12597825,8778561 -g1,7700:14548831,8778561 -k1,7701:32583029,8778561:16326330 -g1,7701:32583029,8778561 -) -(1,7703:6630773,9620049:25952256,513147,134348 -h1,7702:6630773,9620049:983040,0,0 -k1,7702:8250604,9620049:159034 -k1,7702:9428723,9620049:159034 -k1,7702:12078780,9620049:159034 -k1,7702:14749154,9620049:159034 -k1,7702:15439685,9620049:159034 -k1,7702:15954579,9620049:159034 -k1,7702:19088292,9620049:159034 -k1,7702:21225203,9620049:159034 -k1,7702:22067122,9620049:159034 -k1,7702:24293817,9620049:159034 -k1,7702:25321203,9620049:159034 -k1,7702:27010503,9620049:159034 -k1,7702:27820965,9620049:159034 -k1,7702:29909379,9620049:159034 -k1,7702:30424273,9620049:159034 -k1,7702:32583029,9620049:0 -) -(1,7703:6630773,10461537:25952256,505283,134348 -g1,7702:8807879,10461537 -g1,7702:10401059,10461537 -g1,7702:11619373,10461537 -g1,7702:13101797,10461537 -g1,7702:15311671,10461537 -g1,7702:16197062,10461537 -g1,7702:17785654,10461537 -g1,7702:19176328,10461537 -g1,7702:20394642,10461537 -g1,7702:23084894,10461537 -g1,7702:25294768,10461537 -g1,7702:26180159,10461537 -k1,7703:32583029,10461537:4160883 -g1,7703:32583029,10461537 -) -v1,7705:6630773,11548465:0,393216,0 -(1,7723:6630773,19765947:25952256,8610698,196608 -g1,7723:6630773,19765947 -g1,7723:6630773,19765947 -g1,7723:6434165,19765947 -(1,7723:6434165,19765947:0,8610698,196608 -r1,7766:32779637,19765947:26345472,8807306,196608 -k1,7723:6434165,19765947:-26345472 -) -(1,7723:6434165,19765947:26345472,8610698,196608 -[1,7723:6630773,19765947:25952256,8414090,0 -(1,7707:6630773,11762375:25952256,410518,101187 -(1,7706:6630773,11762375:0,0,0 -g1,7706:6630773,11762375 -g1,7706:6630773,11762375 -g1,7706:6303093,11762375 -(1,7706:6303093,11762375:0,0,0 -) -g1,7706:6630773,11762375 -) -g1,7707:8527647,11762375 -k1,7707:8527647,11762375:0 -h1,7707:9159939,11762375:0,0,0 -k1,7707:32583029,11762375:23423090 -g1,7707:32583029,11762375 -) -(1,7708:6630773,12428553:25952256,410518,107478 -h1,7708:6630773,12428553:0,0,0 -g1,7708:6946919,12428553 -g1,7708:7263065,12428553 -g1,7708:13585979,12428553 -g1,7708:14218271,12428553 -g1,7708:18012021,12428553 -g1,7708:21489624,12428553 -g1,7708:25283373,12428553 -k1,7708:25283373,12428553:0 -h1,7708:26231811,12428553:0,0,0 -k1,7708:32583029,12428553:6351218 -g1,7708:32583029,12428553 -) -(1,7709:6630773,13094731:25952256,404226,82312 -h1,7709:6630773,13094731:0,0,0 -g1,7709:6946919,13094731 -g1,7709:7263065,13094731 -g1,7709:7579211,13094731 -g1,7709:7895357,13094731 -g1,7709:8211503,13094731 -g1,7709:8527649,13094731 -g1,7709:8843795,13094731 -g1,7709:9159941,13094731 -g1,7709:9476087,13094731 -g1,7709:9792233,13094731 -g1,7709:10108379,13094731 -g1,7709:10424525,13094731 -g1,7709:10740671,13094731 -g1,7709:12637545,13094731 -g1,7709:13269837,13094731 -g1,7709:15482858,13094731 -g1,7709:17063587,13094731 -g1,7709:18644316,13094731 -g1,7709:20225045,13094731 -g1,7709:21805774,13094731 -h1,7709:23386502,13094731:0,0,0 -k1,7709:32583029,13094731:9196527 -g1,7709:32583029,13094731 -) -(1,7710:6630773,13760909:25952256,404226,82312 -h1,7710:6630773,13760909:0,0,0 -g1,7710:8843793,13760909 -g1,7710:9792231,13760909 -g1,7710:11372960,13760909 -g1,7710:12005252,13760909 -g1,7710:14218272,13760909 -g1,7710:16747438,13760909 -g1,7710:17379730,13760909 -g1,7710:19276605,13760909 -g1,7710:21805771,13760909 -g1,7710:22438063,13760909 -h1,7710:24018792,13760909:0,0,0 -k1,7710:32583029,13760909:8564237 -g1,7710:32583029,13760909 -) -(1,7711:6630773,14427087:25952256,410518,107478 -h1,7711:6630773,14427087:0,0,0 -g1,7711:10740667,14427087 -g1,7711:11689105,14427087 -h1,7711:18644310,14427087:0,0,0 -k1,7711:32583029,14427087:13938719 -g1,7711:32583029,14427087 -) -(1,7712:6630773,15093265:25952256,410518,101187 -h1,7712:6630773,15093265:0,0,0 -h1,7712:8211501,15093265:0,0,0 -k1,7712:32583029,15093265:24371528 -g1,7712:32583029,15093265 -) -(1,7722:6630773,15759443:25952256,404226,107478 -(1,7714:6630773,15759443:0,0,0 -g1,7714:6630773,15759443 -g1,7714:6630773,15759443 -g1,7714:6303093,15759443 -(1,7714:6303093,15759443:0,0,0 -) -g1,7714:6630773,15759443 -) -g1,7722:7579210,15759443 -g1,7722:7895356,15759443 -g1,7722:8211502,15759443 -g1,7722:11056813,15759443 -g1,7722:12953687,15759443 -h1,7722:14850561,15759443:0,0,0 -k1,7722:32583029,15759443:17732468 -g1,7722:32583029,15759443 -) -(1,7722:6630773,16425621:25952256,388497,9436 -h1,7722:6630773,16425621:0,0,0 -g1,7722:7579210,16425621 -g1,7722:8211502,16425621 -g1,7722:8527648,16425621 -g1,7722:8843794,16425621 -g1,7722:9159940,16425621 -g1,7722:9476086,16425621 -g1,7722:9792232,16425621 -g1,7722:10108378,16425621 -g1,7722:11056815,16425621 -g1,7722:11372961,16425621 -g1,7722:11689107,16425621 -g1,7722:12953690,16425621 -g1,7722:13269836,16425621 -h1,7722:14850564,16425621:0,0,0 -k1,7722:32583028,16425621:17732464 -g1,7722:32583028,16425621 -) -(1,7722:6630773,17091799:25952256,388497,9436 -h1,7722:6630773,17091799:0,0,0 -g1,7722:7579210,17091799 -g1,7722:8211502,17091799 -g1,7722:8527648,17091799 -g1,7722:11056814,17091799 -g1,7722:11372960,17091799 -g1,7722:11689106,17091799 -g1,7722:12953689,17091799 -g1,7722:13269835,17091799 -g1,7722:13585981,17091799 -h1,7722:14850564,17091799:0,0,0 -k1,7722:32583028,17091799:17732464 -g1,7722:32583028,17091799 -) -(1,7722:6630773,17757977:25952256,388497,9436 -h1,7722:6630773,17757977:0,0,0 -g1,7722:7579210,17757977 -g1,7722:8211502,17757977 -g1,7722:8527648,17757977 -g1,7722:11056814,17757977 -g1,7722:11372960,17757977 -g1,7722:11689106,17757977 -g1,7722:12953689,17757977 -g1,7722:13269835,17757977 -g1,7722:13585981,17757977 -h1,7722:14850564,17757977:0,0,0 -k1,7722:32583028,17757977:17732464 -g1,7722:32583028,17757977 -) -(1,7722:6630773,18424155:25952256,388497,9436 -h1,7722:6630773,18424155:0,0,0 -g1,7722:7579210,18424155 -g1,7722:8211502,18424155 -g1,7722:8527648,18424155 -g1,7722:8843794,18424155 -g1,7722:9159940,18424155 -g1,7722:9476086,18424155 -g1,7722:9792232,18424155 -g1,7722:10108378,18424155 -g1,7722:11056815,18424155 -g1,7722:11372961,18424155 -g1,7722:11689107,18424155 -g1,7722:12953690,18424155 -g1,7722:13269836,18424155 -h1,7722:14850564,18424155:0,0,0 -k1,7722:32583028,18424155:17732464 -g1,7722:32583028,18424155 -) -(1,7722:6630773,19090333:25952256,388497,9436 -h1,7722:6630773,19090333:0,0,0 -g1,7722:7579210,19090333 -g1,7722:8211502,19090333 -g1,7722:8527648,19090333 -g1,7722:11056814,19090333 -g1,7722:11372960,19090333 -g1,7722:11689106,19090333 -g1,7722:12953689,19090333 -g1,7722:13269835,19090333 -g1,7722:13585981,19090333 -h1,7722:14850564,19090333:0,0,0 -k1,7722:32583028,19090333:17732464 -g1,7722:32583028,19090333 -) -(1,7722:6630773,19756511:25952256,388497,9436 -h1,7722:6630773,19756511:0,0,0 -g1,7722:7579210,19756511 -g1,7722:8211502,19756511 -g1,7722:8527648,19756511 -g1,7722:11056814,19756511 -g1,7722:11372960,19756511 -g1,7722:11689106,19756511 -g1,7722:12953689,19756511 -g1,7722:13269835,19756511 -g1,7722:13585981,19756511 -h1,7722:14850564,19756511:0,0,0 -k1,7722:32583028,19756511:17732464 -g1,7722:32583028,19756511 -) -] -) -g1,7723:32583029,19765947 -g1,7723:6630773,19765947 -g1,7723:6630773,19765947 -g1,7723:32583029,19765947 -g1,7723:32583029,19765947 -) -h1,7723:6630773,19962555:0,0,0 -(1,7727:6630773,21224793:25952256,513147,134348 -h1,7726:6630773,21224793:983040,0,0 -k1,7726:8266332,21224793:174762 -k1,7726:9460178,21224793:174761 -k1,7726:12125963,21224793:174762 -k1,7726:14812064,21224793:174761 -k1,7726:15518323,21224793:174762 -k1,7726:16463787,21224793:174761 -(1,7726:16463787,21224793:0,452978,122846 -r1,7766:18932324,21224793:2468537,575824,122846 -k1,7726:16463787,21224793:-2468537 -) -(1,7726:16463787,21224793:2468537,452978,122846 -k1,7726:16463787,21224793:3277 -h1,7726:18929047,21224793:0,411205,112570 -) -k1,7726:19107086,21224793:174762 -k1,7726:21433395,21224793:174762 -k1,7726:22476508,21224793:174761 -k1,7726:23755552,21224793:174762 -k1,7726:25022798,21224793:174761 -k1,7726:25553420,21224793:174762 -k1,7726:27706058,21224793:174761 -k1,7726:30341042,21224793:174762 -k1,7726:32583029,21224793:0 -) -(1,7727:6630773,22066281:25952256,513147,134348 -k1,7726:8648223,22066281:279435 -k1,7726:11137532,22066281:279435 -k1,7726:12701474,22066281:279436 -k1,7726:13999994,22066281:279435 -k1,7726:17223962,22066281:279435 -k1,7726:18119435,22066281:279435 -k1,7726:19417956,22066281:279436 -k1,7726:22518716,22066281:279435 -k1,7726:24776028,22066281:279435 -k1,7726:27036616,22066281:279435 -k1,7726:28335137,22066281:279436 -k1,7726:30625217,22066281:279435 -k1,7726:31563944,22066281:279435 -k1,7726:32583029,22066281:0 -) -(1,7727:6630773,22907769:25952256,505283,134348 -g1,7726:9321025,22907769 -k1,7727:32583029,22907769:20750664 -g1,7727:32583029,22907769 -) -v1,7729:6630773,23994696:0,393216,0 -(1,7746:6630773,31546000:25952256,7944520,196608 -g1,7746:6630773,31546000 -g1,7746:6630773,31546000 -g1,7746:6434165,31546000 -(1,7746:6434165,31546000:0,7944520,196608 -r1,7766:32779637,31546000:26345472,8141128,196608 -k1,7746:6434165,31546000:-26345472 -) -(1,7746:6434165,31546000:26345472,7944520,196608 -[1,7746:6630773,31546000:25952256,7747912,0 -(1,7731:6630773,24208606:25952256,410518,101187 -(1,7730:6630773,24208606:0,0,0 -g1,7730:6630773,24208606 -g1,7730:6630773,24208606 -g1,7730:6303093,24208606 -(1,7730:6303093,24208606:0,0,0 -) -g1,7730:6630773,24208606 -) -g1,7731:8527647,24208606 -g1,7731:9476085,24208606 -g1,7731:16431291,24208606 -g1,7731:17063583,24208606 -g1,7731:19908896,24208606 -k1,7731:19908896,24208606:0 -h1,7731:20857334,24208606:0,0,0 -k1,7731:32583029,24208606:11725695 -g1,7731:32583029,24208606 -) -(1,7732:6630773,24874784:25952256,404226,82312 -h1,7732:6630773,24874784:0,0,0 -g1,7732:6946919,24874784 -g1,7732:7263065,24874784 -g1,7732:7579211,24874784 -g1,7732:7895357,24874784 -g1,7732:8211503,24874784 -g1,7732:8527649,24874784 -g1,7732:8843795,24874784 -g1,7732:9159941,24874784 -g1,7732:9476087,24874784 -g1,7732:9792233,24874784 -g1,7732:10108379,24874784 -g1,7732:10424525,24874784 -g1,7732:10740671,24874784 -g1,7732:11056817,24874784 -g1,7732:11372963,24874784 -g1,7732:11689109,24874784 -g1,7732:12005255,24874784 -g1,7732:12321401,24874784 -g1,7732:12637547,24874784 -g1,7732:12953693,24874784 -g1,7732:14850567,24874784 -g1,7732:15482859,24874784 -g1,7732:17695880,24874784 -g1,7732:19276609,24874784 -g1,7732:20857338,24874784 -g1,7732:22438067,24874784 -g1,7732:24018796,24874784 -h1,7732:25599524,24874784:0,0,0 -k1,7732:32583029,24874784:6983505 -g1,7732:32583029,24874784 -) -(1,7733:6630773,25540962:25952256,404226,107478 -h1,7733:6630773,25540962:0,0,0 -g1,7733:9476084,25540962 -g1,7733:10424522,25540962 -g1,7733:12953689,25540962 -g1,7733:16431292,25540962 -h1,7733:19592749,25540962:0,0,0 -k1,7733:32583029,25540962:12990280 -g1,7733:32583029,25540962 -) -(1,7734:6630773,26207140:25952256,410518,107478 -h1,7734:6630773,26207140:0,0,0 -g1,7734:11372958,26207140 -g1,7734:12321396,26207140 -h1,7734:20541184,26207140:0,0,0 -k1,7734:32583029,26207140:12041845 -g1,7734:32583029,26207140 -) -(1,7735:6630773,26873318:25952256,410518,101187 -h1,7735:6630773,26873318:0,0,0 -h1,7735:8211501,26873318:0,0,0 -k1,7735:32583029,26873318:24371528 -g1,7735:32583029,26873318 -) -(1,7745:6630773,27539496:25952256,404226,107478 -(1,7737:6630773,27539496:0,0,0 -g1,7737:6630773,27539496 -g1,7737:6630773,27539496 -g1,7737:6303093,27539496 -(1,7737:6303093,27539496:0,0,0 -) -g1,7737:6630773,27539496 -) -g1,7745:7579210,27539496 -g1,7745:7895356,27539496 -g1,7745:8211502,27539496 -g1,7745:11689105,27539496 -g1,7745:13585979,27539496 -h1,7745:16115144,27539496:0,0,0 -k1,7745:32583029,27539496:16467885 -g1,7745:32583029,27539496 -) -(1,7745:6630773,28205674:25952256,388497,9436 -h1,7745:6630773,28205674:0,0,0 -g1,7745:7579210,28205674 -g1,7745:8211502,28205674 -g1,7745:8527648,28205674 -g1,7745:8843794,28205674 -g1,7745:9159940,28205674 -g1,7745:9476086,28205674 -g1,7745:9792232,28205674 -g1,7745:10108378,28205674 -g1,7745:10424524,28205674 -g1,7745:10740670,28205674 -g1,7745:11056816,28205674 -g1,7745:11689108,28205674 -g1,7745:12005254,28205674 -g1,7745:12321400,28205674 -g1,7745:13585983,28205674 -g1,7745:13902129,28205674 -g1,7745:14218275,28205674 -g1,7745:14534421,28205674 -g1,7745:14850567,28205674 -g1,7745:15166713,28205674 -g1,7745:15482859,28205674 -h1,7745:16115150,28205674:0,0,0 -k1,7745:32583029,28205674:16467879 -g1,7745:32583029,28205674 -) -(1,7745:6630773,28871852:25952256,388497,9436 -h1,7745:6630773,28871852:0,0,0 -g1,7745:7579210,28871852 -g1,7745:8211502,28871852 -g1,7745:8527648,28871852 -g1,7745:8843794,28871852 -g1,7745:9159940,28871852 -g1,7745:9476086,28871852 -g1,7745:9792232,28871852 -g1,7745:10108378,28871852 -g1,7745:10424524,28871852 -g1,7745:10740670,28871852 -g1,7745:11056816,28871852 -g1,7745:11689108,28871852 -g1,7745:12005254,28871852 -g1,7745:12321400,28871852 -g1,7745:13585983,28871852 -g1,7745:13902129,28871852 -h1,7745:16115149,28871852:0,0,0 -k1,7745:32583029,28871852:16467880 -g1,7745:32583029,28871852 -) -(1,7745:6630773,29538030:25952256,388497,9436 -h1,7745:6630773,29538030:0,0,0 -g1,7745:7579210,29538030 -g1,7745:8211502,29538030 -g1,7745:8527648,29538030 -g1,7745:8843794,29538030 -g1,7745:9159940,29538030 -g1,7745:9476086,29538030 -g1,7745:9792232,29538030 -g1,7745:10108378,29538030 -g1,7745:10424524,29538030 -g1,7745:10740670,29538030 -g1,7745:11056816,29538030 -g1,7745:11689108,29538030 -g1,7745:12005254,29538030 -g1,7745:12321400,29538030 -g1,7745:13585983,29538030 -g1,7745:13902129,29538030 -h1,7745:16115149,29538030:0,0,0 -k1,7745:32583029,29538030:16467880 -g1,7745:32583029,29538030 -) -(1,7745:6630773,30204208:25952256,388497,9436 -h1,7745:6630773,30204208:0,0,0 -g1,7745:7579210,30204208 -g1,7745:8211502,30204208 -g1,7745:8527648,30204208 -g1,7745:8843794,30204208 -g1,7745:9159940,30204208 -g1,7745:9476086,30204208 -g1,7745:9792232,30204208 -g1,7745:10108378,30204208 -g1,7745:10424524,30204208 -g1,7745:10740670,30204208 -g1,7745:11056816,30204208 -g1,7745:11689108,30204208 -g1,7745:12005254,30204208 -g1,7745:12321400,30204208 -g1,7745:13585983,30204208 -g1,7745:13902129,30204208 -g1,7745:14218275,30204208 -g1,7745:14534421,30204208 -g1,7745:14850567,30204208 -g1,7745:15166713,30204208 -g1,7745:15482859,30204208 -h1,7745:16115150,30204208:0,0,0 -k1,7745:32583029,30204208:16467879 -g1,7745:32583029,30204208 -) -(1,7745:6630773,30870386:25952256,388497,9436 -h1,7745:6630773,30870386:0,0,0 -g1,7745:7579210,30870386 -g1,7745:8211502,30870386 -g1,7745:8527648,30870386 -g1,7745:8843794,30870386 -g1,7745:9159940,30870386 -g1,7745:9476086,30870386 -g1,7745:9792232,30870386 -g1,7745:10108378,30870386 -g1,7745:10424524,30870386 -g1,7745:10740670,30870386 -g1,7745:11056816,30870386 -g1,7745:11689108,30870386 -g1,7745:12005254,30870386 -g1,7745:12321400,30870386 -g1,7745:13585983,30870386 -g1,7745:13902129,30870386 -h1,7745:16115149,30870386:0,0,0 -k1,7745:32583029,30870386:16467880 -g1,7745:32583029,30870386 -) -(1,7745:6630773,31536564:25952256,388497,9436 -h1,7745:6630773,31536564:0,0,0 -g1,7745:7579210,31536564 -g1,7745:8211502,31536564 -g1,7745:8527648,31536564 -g1,7745:8843794,31536564 -g1,7745:9159940,31536564 -g1,7745:9476086,31536564 -g1,7745:9792232,31536564 -g1,7745:10108378,31536564 -g1,7745:10424524,31536564 -g1,7745:10740670,31536564 -g1,7745:11056816,31536564 -g1,7745:11689108,31536564 -g1,7745:12005254,31536564 -g1,7745:12321400,31536564 -g1,7745:13585983,31536564 -g1,7745:13902129,31536564 -h1,7745:16115149,31536564:0,0,0 -k1,7745:32583029,31536564:16467880 -g1,7745:32583029,31536564 -) -] -) -g1,7746:32583029,31546000 -g1,7746:6630773,31546000 -g1,7746:6630773,31546000 -g1,7746:32583029,31546000 -g1,7746:32583029,31546000 -) -h1,7746:6630773,31742608:0,0,0 -v1,7750:6630773,33425596:0,393216,0 -(1,7759:6630773,38173365:25952256,5140985,0 -g1,7759:6630773,38173365 -g1,7759:6303093,38173365 -r1,7766:6401397,38173365:98304,5140985,0 -g1,7759:6600626,38173365 -g1,7759:6797234,38173365 -[1,7759:6797234,38173365:25785795,5140985,0 -(1,7752:6797234,33858134:25785795,825754,196608 -(1,7750:6797234,33858134:0,825754,196608 -r1,7766:8834093,33858134:2036859,1022362,196608 -k1,7750:6797234,33858134:-2036859 -) -(1,7750:6797234,33858134:2036859,825754,196608 -) -k1,7750:9071466,33858134:237373 -k1,7750:10797684,33858134:327680 -k1,7750:12364128,33858134:237374 -k1,7750:12957361,33858134:237373 -k1,7750:15706075,33858134:237374 -k1,7750:18102204,33858134:237373 -(1,7750:18102204,33858134:0,414482,122846 -r1,7766:20922453,33858134:2820249,537328,122846 -k1,7750:18102204,33858134:-2820249 -) -(1,7750:18102204,33858134:2820249,414482,122846 -k1,7750:18102204,33858134:3277 -h1,7750:20919176,33858134:0,411205,112570 -) -k1,7750:21159827,33858134:237374 -k1,7750:22048628,33858134:237373 -k1,7750:23305087,33858134:237374 -k1,7750:24931823,33858134:237373 -k1,7750:27045493,33858134:237374 -k1,7750:29151297,33858134:237373 -k1,7750:30113499,33858134:237374 -k1,7750:31635378,33858134:237373 -k1,7750:32583029,33858134:0 -) -(1,7752:6797234,34633425:25785795,513147,115847 -k1,7750:10204318,34633425:214170 -(1,7750:10204318,34633425:0,424981,115847 -r1,7766:10562584,34633425:358266,540828,115847 -k1,7750:10204318,34633425:-358266 -) -(1,7750:10204318,34633425:358266,424981,115847 -k1,7750:10204318,34633425:3277 -h1,7750:10559307,34633425:0,411205,112570 -) -k1,7750:10776753,34633425:214169 -k1,7750:11779321,34633425:214170 -k1,7750:13673833,34633425:214169 -k1,7750:14419500,34633425:214170 -(1,7750:14419500,34633425:0,452978,115847 -r1,7766:15832901,34633425:1413401,568825,115847 -k1,7750:14419500,34633425:-1413401 -) -(1,7750:14419500,34633425:1413401,452978,115847 -k1,7750:14419500,34633425:3277 -h1,7750:15829624,34633425:0,411205,112570 -) -k1,7750:16220741,34633425:214170 -k1,7750:17382561,34633425:214169 -k1,7750:20789645,34633425:214170 -(1,7750:20789645,34633425:0,435480,115847 -r1,7766:21147911,34633425:358266,551327,115847 -k1,7750:20789645,34633425:-358266 -) -(1,7750:20789645,34633425:358266,435480,115847 -k1,7750:20789645,34633425:3277 -h1,7750:21144634,34633425:0,411205,112570 -) -k1,7750:21362080,34633425:214169 -k1,7750:22364648,34633425:214170 -k1,7750:24259161,34633425:214170 -k1,7750:25004827,34633425:214169 -(1,7750:25004827,34633425:0,452978,115847 -r1,7766:28176787,34633425:3171960,568825,115847 -k1,7750:25004827,34633425:-3171960 -) -(1,7750:25004827,34633425:3171960,452978,115847 -k1,7750:25004827,34633425:3277 -h1,7750:28173510,34633425:0,411205,112570 -) -k1,7750:28564627,34633425:214170 -k1,7750:29970241,34633425:214169 -k1,7750:31132062,34633425:214170 -k1,7752:32583029,34633425:0 -) -(1,7752:6797234,35299603:25785795,505283,115847 -g1,7750:8951402,35299603 -(1,7750:8951402,35299603:0,435480,115847 -r1,7766:9309668,35299603:358266,551327,115847 -k1,7750:8951402,35299603:-358266 -) -(1,7750:8951402,35299603:358266,435480,115847 -k1,7750:8951402,35299603:3277 -h1,7750:9306391,35299603:0,411205,112570 -) -g1,7750:9508897,35299603 -g1,7750:10496524,35299603 -g1,7750:12376096,35299603 -g1,7750:13106822,35299603 -(1,7750:13106822,35299603:0,452978,115847 -r1,7766:16278782,35299603:3171960,568825,115847 -k1,7750:13106822,35299603:-3171960 -) -(1,7750:13106822,35299603:3171960,452978,115847 -k1,7750:13106822,35299603:3277 -h1,7750:16275505,35299603:0,411205,112570 -) -g1,7750:16651681,35299603 -k1,7752:32583029,35299603:15931348 -g1,7752:32583029,35299603 -) -v1,7752:6797234,36490069:0,393216,0 -(1,7757:6797234,37452469:25785795,1355616,196608 -g1,7757:6797234,37452469 -g1,7757:6797234,37452469 -g1,7757:6600626,37452469 -(1,7757:6600626,37452469:0,1355616,196608 -r1,7766:32779637,37452469:26179011,1552224,196608 -k1,7757:6600625,37452469:-26179012 -) -(1,7757:6600626,37452469:26179011,1355616,196608 -[1,7757:6797234,37452469:25785795,1159008,0 -(1,7754:6797234,36703979:25785795,410518,101187 -(1,7753:6797234,36703979:0,0,0 -g1,7753:6797234,36703979 -g1,7753:6797234,36703979 -g1,7753:6469554,36703979 -(1,7753:6469554,36703979:0,0,0 -) -g1,7753:6797234,36703979 -) -g1,7754:8694108,36703979 -g1,7754:9642546,36703979 -g1,7754:16597752,36703979 -g1,7754:17230044,36703979 -g1,7754:20075357,36703979 -g1,7754:21023795,36703979 -g1,7754:22288379,36703979 -k1,7754:22288379,36703979:0 -h1,7754:23236817,36703979:0,0,0 -k1,7754:32583029,36703979:9346212 -g1,7754:32583029,36703979 -) -(1,7755:6797234,37370157:25785795,404226,82312 -h1,7755:6797234,37370157:0,0,0 -g1,7755:7113380,37370157 -g1,7755:7429526,37370157 -g1,7755:7745672,37370157 -g1,7755:8061818,37370157 -g1,7755:8377964,37370157 -g1,7755:8694110,37370157 -g1,7755:9010256,37370157 -g1,7755:9326402,37370157 -g1,7755:9642548,37370157 -g1,7755:9958694,37370157 -g1,7755:10274840,37370157 -g1,7755:10590986,37370157 -g1,7755:10907132,37370157 -g1,7755:11223278,37370157 -g1,7755:11539424,37370157 -g1,7755:11855570,37370157 -g1,7755:12171716,37370157 -g1,7755:12487862,37370157 -g1,7755:12804008,37370157 -g1,7755:13120154,37370157 -g1,7755:15017028,37370157 -g1,7755:15649320,37370157 -g1,7755:17862341,37370157 -g1,7755:19443070,37370157 -g1,7755:21023799,37370157 -g1,7755:22604528,37370157 -g1,7755:24185257,37370157 -h1,7755:25765985,37370157:0,0,0 -k1,7755:32583029,37370157:6817044 -g1,7755:32583029,37370157 -) -] -) -g1,7757:32583029,37452469 -g1,7757:6797234,37452469 -g1,7757:6797234,37452469 -g1,7757:32583029,37452469 -g1,7757:32583029,37452469 -) -h1,7757:6797234,37649077:0,0,0 -] -g1,7759:32583029,38173365 -) -h1,7759:6630773,38173365:0,0,0 -(1,7761:6630773,40264625:25952256,564462,147783 -(1,7761:6630773,40264625:2450326,527696,12975 -g1,7761:6630773,40264625 -g1,7761:9081099,40264625 -) -g1,7761:12916987,40264625 -g1,7761:15468239,40264625 -g1,7761:17245248,40264625 -k1,7761:32583029,40264625:12824017 -g1,7761:32583029,40264625 -) -(1,7764:6630773,41499329:25952256,513147,134348 -k1,7763:7524903,41499329:266295 -k1,7763:8810282,41499329:266294 -k1,7763:10443658,41499329:266295 -k1,7763:11369244,41499329:266294 -k1,7763:15066349,41499329:266295 -k1,7763:16615838,41499329:266294 -k1,7763:18892778,41499329:266295 -k1,7763:20726693,41499329:266294 -k1,7763:23484011,41499329:266295 -k1,7763:26591946,41499329:266294 -k1,7763:29016997,41499329:266295 -k1,7763:31591469,41499329:266294 -k1,7763:32583029,41499329:0 -) -(1,7764:6630773,42340817:25952256,513147,102891 -k1,7763:7536714,42340817:246649 -k1,7763:10035836,42340817:246650 -k1,7763:11548641,42340817:246649 -k1,7763:14307941,42340817:246650 -k1,7763:17396231,42340817:246649 -k1,7763:18258919,42340817:246650 -k1,7763:18861428,42340817:246649 -k1,7763:20497440,42340817:246649 -k1,7763:22620386,42340817:246650 -k1,7763:23971317,42340817:246649 -k1,7763:24965733,42340817:246650 -k1,7763:27177807,42340817:246649 -k1,7763:28107342,42340817:246650 -k1,7763:31189078,42340817:246649 -k1,7764:32583029,42340817:0 -) -(1,7764:6630773,43182305:25952256,513147,134348 -k1,7763:7245158,43182305:199542 -k1,7763:10470498,43182305:199543 -(1,7763:10470498,43182305:0,459977,115847 -r1,7766:14345882,43182305:3875384,575824,115847 -k1,7763:10470498,43182305:-3875384 -) -(1,7763:10470498,43182305:3875384,459977,115847 -k1,7763:10470498,43182305:3277 -h1,7763:14342605,43182305:0,411205,112570 -) -k1,7763:14719094,43182305:199542 -(1,7763:14719094,43182305:0,452978,115847 -r1,7766:16835919,43182305:2116825,568825,115847 -k1,7763:14719094,43182305:-2116825 -) -(1,7763:14719094,43182305:2116825,452978,115847 -k1,7763:14719094,43182305:3277 -h1,7763:16832642,43182305:0,411205,112570 -) -k1,7763:17035462,43182305:199543 -k1,7763:18426450,43182305:199543 -(1,7763:18426450,43182305:0,452978,115847 -r1,7766:21246699,43182305:2820249,568825,115847 -k1,7763:18426450,43182305:-2820249 -) -(1,7763:18426450,43182305:2820249,452978,115847 -k1,7763:18426450,43182305:3277 -h1,7763:21243422,43182305:0,411205,112570 -) -k1,7763:21619911,43182305:199542 -k1,7763:23693784,43182305:199543 -k1,7763:26919123,43182305:199542 -k1,7763:28222948,43182305:199543 -k1,7763:29170256,43182305:199542 -k1,7763:31896867,43182305:199543 -k1,7763:32583029,43182305:0 -) -(1,7764:6630773,44023793:25952256,513147,134348 -k1,7763:10707231,44023793:169857 -k1,7763:13902886,44023793:169858 -k1,7763:14758905,44023793:169857 -k1,7763:15947847,44023793:169857 -k1,7763:17771177,44023793:169857 -k1,7763:22335224,44023793:169858 -k1,7763:23609363,44023793:169857 -k1,7763:24526986,44023793:169857 -k1,7763:26274295,44023793:169857 -k1,7763:28179546,44023793:169858 -k1,7763:29368488,44023793:169857 -k1,7763:32583029,44023793:0 -) -(1,7764:6630773,44865281:25952256,505283,126483 -k1,7763:9922786,44865281:215098 -k1,7763:10789313,44865281:215099 -k1,7763:13035372,44865281:215098 -k1,7763:16443385,44865281:215099 -k1,7763:19673794,44865281:215098 -k1,7763:20504931,44865281:215099 -k1,7763:22576009,44865281:215098 -k1,7763:23810192,44865281:215098 -k1,7763:25149233,44865281:215099 -k1,7763:26397834,44865281:215098 -k1,7763:27295818,44865281:215099 -k1,7763:28977612,44865281:215098 -k1,7763:30142983,44865281:215099 -k1,7763:31549526,44865281:215098 -k1,7763:32583029,44865281:0 -) -(1,7764:6630773,45706769:25952256,505283,134348 -g1,7763:8062079,45706769 -g1,7763:10539995,45706769 -h1,7763:11909042,45706769:0,0,0 -g1,7763:12108271,45706769 -g1,7763:13116870,45706769 -g1,7763:14814252,45706769 -h1,7763:15611170,45706769:0,0,0 -k1,7764:32583029,45706769:16591095 -g1,7764:32583029,45706769 -) -] -(1,7766:32583029,45706769:0,0,0 -g1,7766:32583029,45706769 -) -) -] -(1,7766:6630773,47279633:25952256,0,0 -h1,7766:6630773,47279633:25952256,0,0 -) -] -(1,7766:4262630,4025873:0,0,0 -[1,7766:-473656,4025873:0,0,0 -(1,7766:-473656,-710413:0,0,0 -(1,7766:-473656,-710413:0,0,0 -g1,7766:-473656,-710413 -) -g1,7766:-473656,-710413 -) -] -) -] -!29792 -}126 -Input:1040:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1041:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1042:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1043:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1044:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1045:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1046:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1047:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1048:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1049:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1050:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1051:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1052:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1053:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1054:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1055:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1056:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1057:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1058:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1059:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1060:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1061:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1062:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1063:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1064:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1065:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1066:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!2550 -{127 -[1,7866:4262630,47279633:28320399,43253760,0 -(1,7866:4262630,4025873:0,0,0 -[1,7866:-473656,4025873:0,0,0 -(1,7866:-473656,-710413:0,0,0 -(1,7866:-473656,-644877:0,0,0 -k1,7866:-473656,-644877:-65536 +[1,6749:3078558,4812305:0,0,0 +(1,6749:3078558,49800853:0,16384,2228224 +g1,6749:29030814,49800853 +g1,6749:36135244,49800853 +(1,6148:36135244,49800853:1720320,16384,2228224 +(1,6148:36135244,52029077:16384,1703936,0 +[1,6148:36135244,52029077:25952256,1703936,0 +(1,6148:36135244,51504789:25952256,1179648,0 +(1,6148:36135244,51504789:16384,1179648,0 +r1,6749:36151628,51504789:16384,1179648,0 +) +k1,6148:62087500,51504789:25935872 +g1,6148:62087500,51504789 +) +] +) +g1,6148:36675916,49800853 +(1,6148:36675916,49800853:1179648,16384,0 +r1,6749:37855564,49800853:1179648,16384,0 +) +) +k1,6749:3078556,49800853:-34777008 +) +] +g1,6749:6630773,4812305 +k1,6749:24358919,4812305:16931228 +g1,6749:25981590,4812305 +g1,6749:26804066,4812305 +g1,6749:30302377,4812305 +) +) +] +[1,6749:6630773,45706769:25952256,40108032,0 +(1,6749:6630773,45706769:25952256,40108032,0 +(1,6749:6630773,45706769:0,0,0 +g1,6749:6630773,45706769 +) +[1,6749:6630773,45706769:25952256,40108032,0 +v1,6658:6630773,6254097:0,393216,0 +(1,6658:6630773,10266912:25952256,4406031,0 +g1,6658:6630773,10266912 +g1,6658:6237557,10266912 +r1,6749:6368629,10266912:131072,4406031,0 +g1,6658:6567858,10266912 +g1,6658:6764466,10266912 +[1,6658:6764466,10266912:25818563,4406031,0 +v1,6644:6764466,6254097:0,393216,0 +(1,6655:6764466,10070304:25818563,4209423,196608 +g1,6655:6764466,10070304 +g1,6655:6764466,10070304 +g1,6655:6567858,10070304 +(1,6655:6567858,10070304:0,4209423,196608 +r1,6749:32779637,10070304:26211779,4406031,196608 +k1,6655:6567857,10070304:-26211780 +) +(1,6655:6567858,10070304:26211779,4209423,196608 +[1,6655:6764466,10070304:25818563,4012815,0 +(1,6646:6764466,6481928:25818563,424439,86428 +(1,6645:6764466,6481928:0,0,0 +g1,6645:6764466,6481928 +g1,6645:6764466,6481928 +g1,6645:6436786,6481928 +(1,6645:6436786,6481928:0,0,0 +) +g1,6645:6764466,6481928 +) +k1,6646:6764466,6481928:0 +g1,6646:12407683,6481928 +g1,6646:15727222,6481928 +g1,6646:16391130,6481928 +h1,6646:17055038,6481928:0,0,0 +k1,6646:32583029,6481928:15527991 +g1,6646:32583029,6481928 +) +(1,6654:6764466,7297855:25818563,431045,6605 +(1,6648:6764466,7297855:0,0,0 +g1,6648:6764466,7297855 +g1,6648:6764466,7297855 +g1,6648:6436786,7297855 +(1,6648:6436786,7297855:0,0,0 +) +g1,6648:6764466,7297855 +) +g1,6654:7760328,7297855 +g1,6654:9420098,7297855 +g1,6654:10415960,7297855 +h1,6654:10747914,7297855:0,0,0 +k1,6654:32583030,7297855:21835116 +g1,6654:32583030,7297855 +) +(1,6654:6764466,7982710:25818563,431045,33029 +h1,6654:6764466,7982710:0,0,0 +g1,6654:7760328,7982710 +g1,6654:8092282,7982710 +g1,6654:8756190,7982710 +g1,6654:11079868,7982710 +g1,6654:12075730,7982710 +h1,6654:12407684,7982710:0,0,0 +k1,6654:32583028,7982710:20175344 +g1,6654:32583028,7982710 +) +(1,6654:6764466,8667565:25818563,431045,33029 +h1,6654:6764466,8667565:0,0,0 +g1,6654:7760328,8667565 +g1,6654:8092282,8667565 +g1,6654:8756190,8667565 +g1,6654:11079868,8667565 +g1,6654:12075730,8667565 +h1,6654:12407684,8667565:0,0,0 +k1,6654:32583028,8667565:20175344 +g1,6654:32583028,8667565 +) +(1,6654:6764466,9352420:25818563,431045,79822 +h1,6654:6764466,9352420:0,0,0 +g1,6654:7760328,9352420 +g1,6654:8092282,9352420 +g1,6654:8756190,9352420 +g1,6654:9752052,9352420 +g1,6654:11079868,9352420 +g1,6654:13071592,9352420 +g1,6654:13735500,9352420 +g1,6654:14399408,9352420 +h1,6654:14731362,9352420:0,0,0 +k1,6654:32583030,9352420:17851668 +g1,6654:32583030,9352420 +) +(1,6654:6764466,10037275:25818563,431045,33029 +h1,6654:6764466,10037275:0,0,0 +g1,6654:7760328,10037275 +g1,6654:8092282,10037275 +g1,6654:8756190,10037275 +g1,6654:9752052,10037275 +g1,6654:11079868,10037275 +h1,6654:12407684,10037275:0,0,0 +k1,6654:32583028,10037275:20175344 +g1,6654:32583028,10037275 +) +] +) +g1,6655:32583029,10070304 +g1,6655:6764466,10070304 +g1,6655:6764466,10070304 +g1,6655:32583029,10070304 +g1,6655:32583029,10070304 +) +h1,6655:6764466,10266912:0,0,0 +] +g1,6658:32583029,10266912 +) +h1,6658:6630773,10266912:0,0,0 +(1,6661:6630773,11131992:25952256,513147,102891 +h1,6660:6630773,11131992:983040,0,0 +k1,6660:11320764,11131992:234198 +k1,6660:12423313,11131992:234197 +k1,6660:14187777,11131992:234198 +k1,6660:15073403,11131992:234198 +k1,6660:17373950,11131992:234197 +k1,6660:17964008,11131992:234198 +k1,6660:19365401,11131992:234197 +k1,6660:20282484,11131992:234198 +k1,6660:20872542,11131992:234198 +k1,6660:23224207,11131992:234197 +k1,6660:26389830,11131992:234198 +k1,6660:27283320,11131992:234198 +k1,6660:28841344,11131992:234197 +k1,6660:31085531,11131992:234198 +k1,6660:32583029,11131992:0 +) +(1,6661:6630773,11997072:25952256,505283,126483 +g1,6660:9619870,11997072 +(1,6660:9619870,11997072:0,452978,115847 +r1,6749:12440119,11997072:2820249,568825,115847 +k1,6660:9619870,11997072:-2820249 +) +(1,6660:9619870,11997072:2820249,452978,115847 +k1,6660:9619870,11997072:3277 +h1,6660:12436842,11997072:0,411205,112570 +) +g1,6660:12639348,11997072 +g1,6660:13370074,11997072 +g1,6660:15117919,11997072 +g1,6660:17497531,11997072 +g1,6660:18444526,11997072 +g1,6660:21488673,11997072 +g1,6660:23201128,11997072 +g1,6660:24016395,11997072 +g1,6660:25709190,11997072 +k1,6661:32583029,11997072:5002786 +g1,6661:32583029,11997072 +) +(1,6663:6630773,12862152:25952256,513147,126483 +h1,6662:6630773,12862152:983040,0,0 +k1,6662:8994738,12862152:184238 +k1,6662:10172503,12862152:184239 +(1,6662:10172503,12862152:0,452978,115847 +r1,6749:14047887,12862152:3875384,568825,115847 +k1,6662:10172503,12862152:-3875384 +) +(1,6662:10172503,12862152:3875384,452978,115847 +k1,6662:10172503,12862152:3277 +h1,6662:14044610,12862152:0,411205,112570 +) +k1,6662:14232125,12862152:184238 +k1,6662:14947861,12862152:184239 +k1,6662:15487959,12862152:184238 +k1,6662:17789666,12862152:184239 +k1,6662:20219823,12862152:184238 +k1,6662:21063354,12862152:184239 +k1,6662:22745090,12862152:184238 +k1,6662:24001498,12862152:184239 +k1,6662:24951852,12862152:184238 +k1,6662:26155176,12862152:184239 +k1,6662:29629321,12862152:184238 +k1,6662:32583029,12862152:0 +) +(1,6663:6630773,13727232:25952256,513147,134348 +k1,6662:7892694,13727232:270361 +k1,6662:11137734,13727232:270361 +k1,6662:13777877,13727232:270361 +k1,6662:14676073,13727232:270361 +k1,6662:16648404,13727232:270361 +k1,6662:19047374,13727232:270361 +k1,6662:22007334,13727232:270362 +k1,6662:24185448,13727232:270361 +k1,6662:25447369,13727232:270361 +k1,6662:26483846,13727232:270361 +k1,6662:27413499,13727232:270361 +k1,6662:28702945,13727232:270361 +k1,6662:30626779,13727232:270361 +k1,6662:32583029,13727232:0 +) +(1,6663:6630773,14592312:25952256,513147,134348 +g1,6662:9501905,14592312 +g1,6662:10720219,14592312 +g1,6662:11912974,14592312 +g1,6662:12763631,14592312 +g1,6662:13710626,14592312 +g1,6662:17344597,14592312 +g1,6662:18811292,14592312 +g1,6662:19366381,14592312 +g1,6662:22540289,14592312 +k1,6663:32583029,14592312:7891193 +g1,6663:32583029,14592312 +) +v1,6665:6630773,15277167:0,393216,0 +(1,6711:6630773,28246436:25952256,13362485,196608 +g1,6711:6630773,28246436 +g1,6711:6630773,28246436 +g1,6711:6434165,28246436 +(1,6711:6434165,28246436:0,13362485,196608 +r1,6749:32779637,28246436:26345472,13559093,196608 +k1,6711:6434165,28246436:-26345472 +) +(1,6711:6434165,28246436:26345472,13362485,196608 +[1,6711:6630773,28246436:25952256,13165877,0 +(1,6667:6630773,15504998:25952256,424439,86428 +(1,6666:6630773,15504998:0,0,0 +g1,6666:6630773,15504998 +g1,6666:6630773,15504998 +g1,6666:6303093,15504998 +(1,6666:6303093,15504998:0,0,0 +) +g1,6666:6630773,15504998 +) +g1,6667:10614220,15504998 +g1,6667:11610082,15504998 +g1,6667:13933760,15504998 +g1,6667:14597668,15504998 +g1,6667:17917208,15504998 +g1,6667:19908932,15504998 +g1,6667:22564564,15504998 +g1,6667:23228472,15504998 +g1,6667:23892380,15504998 +g1,6667:27211920,15504998 +h1,6667:29203644,15504998:0,0,0 +k1,6667:32583029,15504998:3379385 +g1,6667:32583029,15504998 +) +(1,6668:6630773,16189853:25952256,424439,79822 +h1,6668:6630773,16189853:0,0,0 +g1,6668:8622497,16189853 +g1,6668:9618359,16189853 +k1,6668:9618359,16189853:0 +h1,6668:15925484,16189853:0,0,0 +k1,6668:32583029,16189853:16657545 +g1,6668:32583029,16189853 +) +(1,6669:6630773,16874708:25952256,298373,6605 +h1,6669:6630773,16874708:0,0,0 +h1,6669:8290543,16874708:0,0,0 +k1,6669:32583029,16874708:24292486 +g1,6669:32583029,16874708 +) +(1,6674:6630773,17690635:25952256,407923,9908 +(1,6671:6630773,17690635:0,0,0 +g1,6671:6630773,17690635 +g1,6671:6630773,17690635 +g1,6671:6303093,17690635 +(1,6671:6303093,17690635:0,0,0 +) +g1,6671:6630773,17690635 +) +g1,6674:7626635,17690635 +g1,6674:7958589,17690635 +g1,6674:8290543,17690635 +g1,6674:8622497,17690635 +g1,6674:9618359,17690635 +g1,6674:9950313,17690635 +g1,6674:10282267,17690635 +g1,6674:10614221,17690635 +g1,6674:11610083,17690635 +g1,6674:11942037,17690635 +g1,6674:12273991,17690635 +g1,6674:12605945,17690635 +g1,6674:13601807,17690635 +g1,6674:13933761,17690635 +g1,6674:14265715,17690635 +g1,6674:14597669,17690635 +g1,6674:15593531,17690635 +g1,6674:15925485,17690635 +g1,6674:16257439,17690635 +g1,6674:16589393,17690635 +h1,6674:17253301,17690635:0,0,0 +k1,6674:32583029,17690635:15329728 +g1,6674:32583029,17690635 +) +(1,6674:6630773,18375490:25952256,424439,6605 +h1,6674:6630773,18375490:0,0,0 +g1,6674:7626635,18375490 +g1,6674:7958589,18375490 +g1,6674:8290543,18375490 +g1,6674:9618359,18375490 +g1,6674:9950313,18375490 +g1,6674:11610083,18375490 +g1,6674:13601807,18375490 +g1,6674:13933761,18375490 +g1,6674:14265715,18375490 +g1,6674:15593531,18375490 +g1,6674:15925485,18375490 +h1,6674:17253301,18375490:0,0,0 +k1,6674:32583029,18375490:15329728 +g1,6674:32583029,18375490 +) +(1,6676:6630773,19191417:25952256,424439,79822 +(1,6675:6630773,19191417:0,0,0 +g1,6675:6630773,19191417 +g1,6675:6630773,19191417 +g1,6675:6303093,19191417 +(1,6675:6303093,19191417:0,0,0 +) +g1,6675:6630773,19191417 +) +k1,6676:6630773,19191417:0 +h1,6676:13269852,19191417:0,0,0 +k1,6676:32583028,19191417:19313176 +g1,6676:32583028,19191417 +) +(1,6680:6630773,20007344:25952256,424439,79822 +(1,6678:6630773,20007344:0,0,0 +g1,6678:6630773,20007344 +g1,6678:6630773,20007344 +g1,6678:6303093,20007344 +(1,6678:6303093,20007344:0,0,0 +) +g1,6678:6630773,20007344 +) +g1,6680:7626635,20007344 +g1,6680:8954451,20007344 +h1,6680:10282267,20007344:0,0,0 +k1,6680:32583029,20007344:22300762 +g1,6680:32583029,20007344 +) +(1,6682:6630773,20823271:25952256,424439,79822 +(1,6681:6630773,20823271:0,0,0 +g1,6681:6630773,20823271 +g1,6681:6630773,20823271 +g1,6681:6303093,20823271 +(1,6681:6303093,20823271:0,0,0 +) +g1,6681:6630773,20823271 +) +k1,6682:6630773,20823271:0 +h1,6682:11278129,20823271:0,0,0 +k1,6682:32583029,20823271:21304900 +g1,6682:32583029,20823271 +) +(1,6686:6630773,21639198:25952256,424439,79822 +(1,6684:6630773,21639198:0,0,0 +g1,6684:6630773,21639198 +g1,6684:6630773,21639198 +g1,6684:6303093,21639198 +(1,6684:6303093,21639198:0,0,0 +) +g1,6684:6630773,21639198 +) +g1,6686:7626635,21639198 +g1,6686:8954451,21639198 +h1,6686:10614221,21639198:0,0,0 +k1,6686:32583029,21639198:21968808 +g1,6686:32583029,21639198 +) +(1,6688:6630773,22455125:25952256,424439,79822 +(1,6687:6630773,22455125:0,0,0 +g1,6687:6630773,22455125 +g1,6687:6630773,22455125 +g1,6687:6303093,22455125 +(1,6687:6303093,22455125:0,0,0 +) +g1,6687:6630773,22455125 +) +k1,6688:6630773,22455125:0 +h1,6688:12273990,22455125:0,0,0 +k1,6688:32583030,22455125:20309040 +g1,6688:32583030,22455125 +) +(1,6692:6630773,23271052:25952256,424439,79822 +(1,6690:6630773,23271052:0,0,0 +g1,6690:6630773,23271052 +g1,6690:6630773,23271052 +g1,6690:6303093,23271052 +(1,6690:6303093,23271052:0,0,0 +) +g1,6690:6630773,23271052 +) +g1,6692:7626635,23271052 +g1,6692:8954451,23271052 +h1,6692:10946175,23271052:0,0,0 +k1,6692:32583029,23271052:21636854 +g1,6692:32583029,23271052 +) +(1,6694:6630773,24086979:25952256,424439,79822 +(1,6693:6630773,24086979:0,0,0 +g1,6693:6630773,24086979 +g1,6693:6630773,24086979 +g1,6693:6303093,24086979 +(1,6693:6303093,24086979:0,0,0 +) +g1,6693:6630773,24086979 +) +k1,6694:6630773,24086979:0 +h1,6694:10282267,24086979:0,0,0 +k1,6694:32583029,24086979:22300762 +g1,6694:32583029,24086979 +) +(1,6698:6630773,24902906:25952256,424439,79822 +(1,6696:6630773,24902906:0,0,0 +g1,6696:6630773,24902906 +g1,6696:6630773,24902906 +g1,6696:6303093,24902906 +(1,6696:6303093,24902906:0,0,0 +) +g1,6696:6630773,24902906 +) +g1,6698:7626635,24902906 +g1,6698:8954451,24902906 +h1,6698:12605944,24902906:0,0,0 +k1,6698:32583028,24902906:19977084 +g1,6698:32583028,24902906 +) +(1,6700:6630773,25718833:25952256,424439,79822 +(1,6699:6630773,25718833:0,0,0 +g1,6699:6630773,25718833 +g1,6699:6630773,25718833 +g1,6699:6303093,25718833 +(1,6699:6303093,25718833:0,0,0 +) +g1,6699:6630773,25718833 +) +k1,6700:6630773,25718833:0 +h1,6700:12605944,25718833:0,0,0 +k1,6700:32583028,25718833:19977084 +g1,6700:32583028,25718833 +) +(1,6704:6630773,26534760:25952256,424439,79822 +(1,6702:6630773,26534760:0,0,0 +g1,6702:6630773,26534760 +g1,6702:6630773,26534760 +g1,6702:6303093,26534760 +(1,6702:6303093,26534760:0,0,0 +) +g1,6702:6630773,26534760 +) +g1,6704:7626635,26534760 +g1,6704:8954451,26534760 +g1,6704:10282267,26534760 +h1,6704:11278129,26534760:0,0,0 +k1,6704:32583029,26534760:21304900 +g1,6704:32583029,26534760 +) +(1,6706:6630773,27350687:25952256,424439,79822 +(1,6705:6630773,27350687:0,0,0 +g1,6705:6630773,27350687 +g1,6705:6630773,27350687 +g1,6705:6303093,27350687 +(1,6705:6303093,27350687:0,0,0 +) +g1,6705:6630773,27350687 +) +k1,6706:6630773,27350687:0 +h1,6706:10614221,27350687:0,0,0 +k1,6706:32583029,27350687:21968808 +g1,6706:32583029,27350687 +) +(1,6710:6630773,28166614:25952256,424439,79822 +(1,6708:6630773,28166614:0,0,0 +g1,6708:6630773,28166614 +g1,6708:6630773,28166614 +g1,6708:6303093,28166614 +(1,6708:6303093,28166614:0,0,0 +) +g1,6708:6630773,28166614 +) +g1,6710:7626635,28166614 +g1,6710:8954451,28166614 +g1,6710:10614221,28166614 +g1,6710:12273991,28166614 +g1,6710:13933761,28166614 +g1,6710:15593531,28166614 +h1,6710:16921347,28166614:0,0,0 +k1,6710:32583029,28166614:15661682 +g1,6710:32583029,28166614 +) +] +) +g1,6711:32583029,28246436 +g1,6711:6630773,28246436 +g1,6711:6630773,28246436 +g1,6711:32583029,28246436 +g1,6711:32583029,28246436 +) +h1,6711:6630773,28443044:0,0,0 +(1,6715:6630773,29308124:25952256,513147,7863 +h1,6714:6630773,29308124:983040,0,0 +k1,6714:9017812,29308124:207312 +k1,6714:12003851,29308124:207312 +k1,6714:13891506,29308124:207312 +k1,6714:14630315,29308124:207312 +k1,6714:15193487,29308124:207312 +k1,6714:17378677,29308124:207313 +k1,6714:18979940,29308124:207312 +k1,6714:21346008,29308124:207312 +k1,6714:24176726,29308124:207312 +k1,6714:27426875,29308124:207312 +k1,6714:28587736,29308124:207312 +k1,6714:29887533,29308124:207312 +k1,6715:32583029,29308124:0 +) +(1,6715:6630773,30173204:25952256,513147,134348 +(1,6714:6630773,30173204:0,452978,115847 +r1,6749:8395886,30173204:1765113,568825,115847 +k1,6714:6630773,30173204:-1765113 +) +(1,6714:6630773,30173204:1765113,452978,115847 +k1,6714:6630773,30173204:3277 +h1,6714:8392609,30173204:0,411205,112570 +) +k1,6714:8619488,30173204:223602 +k1,6714:9494517,30173204:223601 +k1,6714:11573443,30173204:223602 +k1,6714:12863316,30173204:223602 +k1,6714:14417299,30173204:223602 +k1,6714:15844141,30173204:223601 +k1,6714:18045620,30173204:223602 +k1,6714:20400453,30173204:223602 +k1,6714:21275482,30173204:223601 +k1,6714:22518169,30173204:223602 +k1,6714:25177089,30173204:223602 +k1,6714:26567887,30173204:223602 +k1,6714:27988175,30173204:223601 +k1,6714:30453764,30173204:223602 +k1,6714:32583029,30173204:0 +) +(1,6715:6630773,31038284:25952256,513147,102891 +k1,6714:7501746,31038284:211681 +k1,6714:9496006,31038284:211681 +k1,6714:12856037,31038284:211681 +k1,6714:14059279,31038284:211682 +k1,6714:16125629,31038284:211681 +k1,6714:17146680,31038284:211681 +k1,6714:18377446,31038284:211681 +k1,6714:20657443,31038284:211681 +k1,6714:21528416,31038284:211681 +k1,6714:22733624,31038284:211682 +k1,6714:25814471,31038284:211681 +k1,6714:27724190,31038284:211681 +k1,6714:30893511,31038284:211681 +k1,6714:32583029,31038284:0 +) +(1,6715:6630773,31903364:25952256,513147,134348 +k1,6714:10111867,31903364:176113 +k1,6714:13258727,31903364:176113 +k1,6714:16379373,31903364:176113 +k1,6714:17241648,31903364:176113 +k1,6714:20233843,31903364:176113 +k1,6714:21401515,31903364:176112 +k1,6714:23090854,31903364:176113 +k1,6714:24214618,31903364:176113 +k1,6714:28091549,31903364:176113 +k1,6714:30349085,31903364:176113 +k1,6714:31478747,31903364:176113 +k1,6714:32583029,31903364:0 +) +(1,6715:6630773,32768444:25952256,513147,134348 +g1,6714:8860963,32768444 +g1,6714:10079277,32768444 +g1,6714:13232214,32768444 +g1,6714:14090735,32768444 +g1,6714:15309049,32768444 +g1,6714:17486155,32768444 +g1,6714:19541364,32768444 +g1,6714:22299119,32768444 +g1,6714:25118477,32768444 +g1,6714:27744504,32768444 +g1,6714:28626618,32768444 +k1,6715:32583029,32768444:1714424 +g1,6715:32583029,32768444 +) +v1,6717:6630773,33453299:0,393216,0 +(1,6739:6630773,39820284:25952256,6760201,196608 +g1,6739:6630773,39820284 +g1,6739:6630773,39820284 +g1,6739:6434165,39820284 +(1,6739:6434165,39820284:0,6760201,196608 +r1,6749:32779637,39820284:26345472,6956809,196608 +k1,6739:6434165,39820284:-26345472 +) +(1,6739:6434165,39820284:26345472,6760201,196608 +[1,6739:6630773,39820284:25952256,6563593,0 +(1,6719:6630773,33681130:25952256,424439,79822 +(1,6718:6630773,33681130:0,0,0 +g1,6718:6630773,33681130 +g1,6718:6630773,33681130 +g1,6718:6303093,33681130 +(1,6718:6303093,33681130:0,0,0 +) +g1,6718:6630773,33681130 +) +k1,6719:6630773,33681130:0 +h1,6719:9950313,33681130:0,0,0 +k1,6719:32583029,33681130:22632716 +g1,6719:32583029,33681130 +) +(1,6724:6630773,34497057:25952256,424439,79822 +(1,6721:6630773,34497057:0,0,0 +g1,6721:6630773,34497057 +g1,6721:6630773,34497057 +g1,6721:6303093,34497057 +(1,6721:6303093,34497057:0,0,0 +) +g1,6721:6630773,34497057 +) +g1,6724:7626635,34497057 +g1,6724:7958589,34497057 +g1,6724:9950313,34497057 +g1,6724:11278129,34497057 +g1,6724:13269853,34497057 +g1,6724:14597669,34497057 +g1,6724:16257439,34497057 +g1,6724:18249163,34497057 +g1,6724:19576979,34497057 +h1,6724:20904795,34497057:0,0,0 +k1,6724:32583029,34497057:11678234 +g1,6724:32583029,34497057 +) +(1,6724:6630773,35181912:25952256,424439,86428 +h1,6724:6630773,35181912:0,0,0 +g1,6724:7626635,35181912 +g1,6724:7958589,35181912 +g1,6724:8622497,35181912 +g1,6724:11278129,35181912 +g1,6724:14597668,35181912 +g1,6724:15925484,35181912 +g1,6724:17917208,35181912 +g1,6724:19576978,35181912 +g1,6724:21236748,35181912 +g1,6724:22896518,35181912 +g1,6724:24556288,35181912 +h1,6724:25552150,35181912:0,0,0 +k1,6724:32583029,35181912:7030879 +g1,6724:32583029,35181912 +) +(1,6726:6630773,35997839:25952256,424439,79822 +(1,6725:6630773,35997839:0,0,0 +g1,6725:6630773,35997839 +g1,6725:6630773,35997839 +g1,6725:6303093,35997839 +(1,6725:6303093,35997839:0,0,0 +) +g1,6725:6630773,35997839 +) +h1,6726:9286405,35997839:0,0,0 +k1,6726:32583029,35997839:23296624 +g1,6726:32583029,35997839 +) +(1,6731:6630773,36813766:25952256,407923,0 +(1,6728:6630773,36813766:0,0,0 +g1,6728:6630773,36813766 +g1,6728:6630773,36813766 +g1,6728:6303093,36813766 +(1,6728:6303093,36813766:0,0,0 +) +g1,6728:6630773,36813766 +) +g1,6731:7626635,36813766 +g1,6731:7958589,36813766 +g1,6731:8290543,36813766 +h1,6731:8954451,36813766:0,0,0 +k1,6731:32583029,36813766:23628578 +g1,6731:32583029,36813766 +) +(1,6731:6630773,37498621:25952256,424439,4954 +h1,6731:6630773,37498621:0,0,0 +g1,6731:7626635,37498621 +h1,6731:8954451,37498621:0,0,0 +k1,6731:32583029,37498621:23628578 +g1,6731:32583029,37498621 +) +(1,6733:6630773,38314548:25952256,424439,79822 +(1,6732:6630773,38314548:0,0,0 +g1,6732:6630773,38314548 +g1,6732:6630773,38314548 +g1,6732:6303093,38314548 +(1,6732:6303093,38314548:0,0,0 +) +g1,6732:6630773,38314548 +) +h1,6733:10282267,38314548:0,0,0 +k1,6733:32583029,38314548:22300762 +g1,6733:32583029,38314548 +) +(1,6738:6630773,39130475:25952256,407923,0 +(1,6735:6630773,39130475:0,0,0 +g1,6735:6630773,39130475 +g1,6735:6630773,39130475 +g1,6735:6303093,39130475 +(1,6735:6303093,39130475:0,0,0 +) +g1,6735:6630773,39130475 +) +g1,6738:7626635,39130475 +g1,6738:7958589,39130475 +g1,6738:8290543,39130475 +h1,6738:8954451,39130475:0,0,0 +k1,6738:32583029,39130475:23628578 +g1,6738:32583029,39130475 +) +(1,6738:6630773,39815330:25952256,424439,4954 +h1,6738:6630773,39815330:0,0,0 +g1,6738:7626635,39815330 +h1,6738:8954451,39815330:0,0,0 +k1,6738:32583029,39815330:23628578 +g1,6738:32583029,39815330 +) +] +) +g1,6739:32583029,39820284 +g1,6739:6630773,39820284 +g1,6739:6630773,39820284 +g1,6739:32583029,39820284 +g1,6739:32583029,39820284 +) +h1,6739:6630773,40016892:0,0,0 +v1,6743:6630773,40881972:0,393216,0 +(1,6744:6630773,45606332:25952256,5117576,0 +g1,6744:6630773,45606332 +g1,6744:6237557,45606332 +r1,6749:6368629,45606332:131072,5117576,0 +g1,6744:6567858,45606332 +g1,6744:6764466,45606332 +[1,6744:6764466,45606332:25818563,5117576,0 +(1,6744:6764466,41154449:25818563,665693,196608 +(1,6743:6764466,41154449:0,665693,196608 +r1,6749:8010564,41154449:1246098,862301,196608 +k1,6743:6764466,41154449:-1246098 +) +(1,6743:6764466,41154449:1246098,665693,196608 +) +k1,6743:8191388,41154449:180824 +k1,6743:9509317,41154449:327680 +k1,6743:12480010,41154449:180825 +(1,6743:12480010,41154449:0,452978,115847 +r1,6749:15300259,41154449:2820249,568825,115847 +k1,6743:12480010,41154449:-2820249 +) +(1,6743:12480010,41154449:2820249,452978,115847 +k1,6743:12480010,41154449:3277 +h1,6743:15296982,41154449:0,411205,112570 +) +k1,6743:15481083,41154449:180824 +k1,6743:15481083,41154449:0 +k1,6743:16762912,41154449:180824 +k1,6743:18116176,41154449:180825 +k1,6743:21523993,41154449:180824 +k1,6743:25489521,41154449:180824 +k1,6743:27064297,41154449:180825 +k1,6743:29510701,41154449:180824 +k1,6743:32583029,41154449:0 +) +(1,6744:6764466,42019529:25818563,513147,126483 +k1,6743:9257674,42019529:308893 +k1,6743:11452038,42019529:308893 +k1,6743:12629283,42019529:308893 +k1,6743:13980853,42019529:308892 +k1,6743:15356017,42019529:308893 +k1,6743:17927213,42019529:308893 +k1,6743:18852144,42019529:308893 +k1,6743:20180122,42019529:308893 +k1,6743:23150432,42019529:308893 +k1,6743:25488319,42019529:308892 +k1,6743:27671542,42019529:308893 +k1,6743:31591469,42019529:308893 +k1,6744:32583029,42019529:0 +) +(1,6744:6764466,42884609:25818563,513147,134348 +(1,6743:6764466,42884609:0,452978,115847 +r1,6749:9936426,42884609:3171960,568825,115847 +k1,6743:6764466,42884609:-3171960 +) +(1,6743:6764466,42884609:3171960,452978,115847 +k1,6743:6764466,42884609:3277 +h1,6743:9933149,42884609:0,411205,112570 +) +k1,6743:10109401,42884609:172975 +k1,6743:11473820,42884609:172974 +(1,6743:11473820,42884609:0,414482,115847 +r1,6749:14645780,42884609:3171960,530329,115847 +k1,6743:11473820,42884609:-3171960 +) +(1,6743:11473820,42884609:3171960,414482,115847 +k1,6743:11473820,42884609:3277 +h1,6743:14642503,42884609:0,411205,112570 +) +k1,6743:14992425,42884609:172975 +k1,6743:16632095,42884609:172974 +k1,6743:17464362,42884609:172975 +k1,6743:19276391,42884609:172974 +k1,6743:22510553,42884609:172975 +k1,6743:23039388,42884609:172975 +(1,6743:23039388,42884609:0,452978,122846 +r1,6749:25507925,42884609:2468537,575824,122846 +k1,6743:23039388,42884609:-2468537 +) +(1,6743:23039388,42884609:2468537,452978,122846 +k1,6743:23039388,42884609:3277 +h1,6743:25504648,42884609:0,411205,112570 +) +k1,6743:25680899,42884609:172974 +k1,6743:27534217,42884609:172975 +k1,6743:28393353,42884609:172974 +k1,6743:29337031,42884609:172975 +k1,6743:32583029,42884609:0 +) +(1,6744:6764466,43749689:25818563,513147,134348 +k1,6743:9154218,43749689:183810 +k1,6743:10357113,43749689:183810 +k1,6743:13727283,43749689:183810 +(1,6743:13727283,43749689:0,452978,115847 +r1,6749:21823210,43749689:8095927,568825,115847 +k1,6743:13727283,43749689:-8095927 +) +(1,6743:13727283,43749689:8095927,452978,115847 +g1,6743:15840831,43749689 +g1,6743:16895967,43749689 +h1,6743:21819933,43749689:0,411205,112570 +) +k1,6743:22180690,43749689:183810 +k1,6743:23126029,43749689:183811 +k1,6743:25737293,43749689:183810 +(1,6743:25737293,43749689:0,414482,115847 +r1,6749:27502406,43749689:1765113,530329,115847 +k1,6743:25737293,43749689:-1765113 +) +(1,6743:25737293,43749689:1765113,414482,115847 +k1,6743:25737293,43749689:3277 +h1,6743:27499129,43749689:0,411205,112570 +) +k1,6743:27686216,43749689:183810 +k1,6743:28556188,43749689:183810 +k1,6743:29510701,43749689:183810 +k1,6743:32583029,43749689:0 +) +(1,6744:6764466,44614769:25818563,505283,126483 +k1,6743:7636984,44614769:221090 +k1,6743:9554802,44614769:221091 +k1,6743:10948331,44614769:221090 +k1,6743:14954125,44614769:221090 +k1,6743:15791254,44614769:221091 +k1,6743:17560960,44614769:221090 +k1,6743:18973496,44614769:221091 +k1,6743:19810624,44614769:221090 +k1,6743:21483336,44614769:221090 +k1,6743:23245178,44614769:221091 +k1,6743:25250158,44614769:221090 +k1,6743:26490333,44614769:221090 +k1,6743:28391767,44614769:221091 +k1,6743:31391584,44614769:221090 +k1,6743:32583029,44614769:0 +) +(1,6744:6764466,45479849:25818563,513147,126483 +g1,6743:8294076,45479849 +g1,6743:8951402,45479849 +g1,6743:11224190,45479849 +g1,6743:12817370,45479849 +g1,6743:15341161,45479849 +g1,6743:16191818,45479849 +g1,6743:17410132,45479849 +g1,6743:18766071,45479849 +g1,6743:21757134,45479849 +k1,6744:32583029,45479849:8796900 +g1,6744:32583029,45479849 +) +] +g1,6744:32583029,45606332 +) +h1,6744:6630773,45606332:0,0,0 +] +(1,6749:32583029,45706769:0,0,0 +g1,6749:32583029,45706769 +) +) +] +(1,6749:6630773,47279633:25952256,0,0 +h1,6749:6630773,47279633:25952256,0,0 +) +] +(1,6749:4262630,4025873:0,0,0 +[1,6749:-473656,4025873:0,0,0 +(1,6749:-473656,-710413:0,0,0 +(1,6749:-473656,-710413:0,0,0 +g1,6749:-473656,-710413 +) +g1,6749:-473656,-710413 +) +] +) +] +!27165 +}105 +Input:924:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:925:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:926:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:927:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:928:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:929:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:930:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:931:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:932:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:933:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:934:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:935:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:936:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1221 +{106 +[1,6823:4262630,47279633:28320399,43253760,0 +(1,6823:4262630,4025873:0,0,0 +[1,6823:-473656,4025873:0,0,0 +(1,6823:-473656,-710413:0,0,0 +(1,6823:-473656,-644877:0,0,0 +k1,6823:-473656,-644877:-65536 ) -(1,7866:-473656,4736287:0,0,0 -k1,7866:-473656,4736287:5209943 +(1,6823:-473656,4736287:0,0,0 +k1,6823:-473656,4736287:5209943 ) -g1,7866:-473656,-710413 +g1,6823:-473656,-710413 ) ] ) -[1,7866:6630773,47279633:25952256,43253760,0 -[1,7866:6630773,4812305:25952256,786432,0 -(1,7866:6630773,4812305:25952256,505283,11795 -(1,7866:6630773,4812305:25952256,505283,11795 -g1,7866:3078558,4812305 -[1,7866:3078558,4812305:0,0,0 -(1,7866:3078558,2439708:0,1703936,0 -k1,7866:1358238,2439708:-1720320 -(1,5950:1358238,2439708:1720320,1703936,0 -(1,5950:1358238,2439708:1179648,16384,0 -r1,7866:2537886,2439708:1179648,16384,0 +[1,6823:6630773,47279633:25952256,43253760,0 +[1,6823:6630773,4812305:25952256,786432,0 +(1,6823:6630773,4812305:25952256,513147,126483 +(1,6823:6630773,4812305:25952256,513147,126483 +g1,6823:3078558,4812305 +[1,6823:3078558,4812305:0,0,0 +(1,6823:3078558,2439708:0,1703936,0 +k1,6823:1358238,2439708:-1720320 +(1,6148:1358238,2439708:1720320,1703936,0 +(1,6148:1358238,2439708:1179648,16384,0 +r1,6823:2537886,2439708:1179648,16384,0 ) -g1,5950:3062174,2439708 -(1,5950:3062174,2439708:16384,1703936,0 -[1,5950:3062174,2439708:25952256,1703936,0 -(1,5950:3062174,1915420:25952256,1179648,0 -(1,5950:3062174,1915420:16384,1179648,0 -r1,7866:3078558,1915420:16384,1179648,0 +g1,6148:3062174,2439708 +(1,6148:3062174,2439708:16384,1703936,0 +[1,6148:3062174,2439708:25952256,1703936,0 +(1,6148:3062174,1915420:25952256,1179648,0 +(1,6148:3062174,1915420:16384,1179648,0 +r1,6823:3078558,1915420:16384,1179648,0 ) -k1,5950:29014430,1915420:25935872 -g1,5950:29014430,1915420 +k1,6148:29014430,1915420:25935872 +g1,6148:29014430,1915420 ) ] ) ) ) ] -[1,7866:3078558,4812305:0,0,0 -(1,7866:3078558,2439708:0,1703936,0 -g1,7866:29030814,2439708 -g1,7866:36135244,2439708 -(1,5950:36135244,2439708:1720320,1703936,0 -(1,5950:36135244,2439708:16384,1703936,0 -[1,5950:36135244,2439708:25952256,1703936,0 -(1,5950:36135244,1915420:25952256,1179648,0 -(1,5950:36135244,1915420:16384,1179648,0 -r1,7866:36151628,1915420:16384,1179648,0 +[1,6823:3078558,4812305:0,0,0 +(1,6823:3078558,2439708:0,1703936,0 +g1,6823:29030814,2439708 +g1,6823:36135244,2439708 +(1,6148:36135244,2439708:1720320,1703936,0 +(1,6148:36135244,2439708:16384,1703936,0 +[1,6148:36135244,2439708:25952256,1703936,0 +(1,6148:36135244,1915420:25952256,1179648,0 +(1,6148:36135244,1915420:16384,1179648,0 +r1,6823:36151628,1915420:16384,1179648,0 ) -k1,5950:62087500,1915420:25935872 -g1,5950:62087500,1915420 +k1,6148:62087500,1915420:25935872 +g1,6148:62087500,1915420 ) ] ) -g1,5950:36675916,2439708 -(1,5950:36675916,2439708:1179648,16384,0 -r1,7866:37855564,2439708:1179648,16384,0 +g1,6148:36675916,2439708 +(1,6148:36675916,2439708:1179648,16384,0 +r1,6823:37855564,2439708:1179648,16384,0 ) ) -k1,7866:3078556,2439708:-34777008 +k1,6823:3078556,2439708:-34777008 ) ] -[1,7866:3078558,4812305:0,0,0 -(1,7866:3078558,49800853:0,16384,2228224 -k1,7866:1358238,49800853:-1720320 -(1,5950:1358238,49800853:1720320,16384,2228224 -(1,5950:1358238,49800853:1179648,16384,0 -r1,7866:2537886,49800853:1179648,16384,0 +[1,6823:3078558,4812305:0,0,0 +(1,6823:3078558,49800853:0,16384,2228224 +k1,6823:1358238,49800853:-1720320 +(1,6148:1358238,49800853:1720320,16384,2228224 +(1,6148:1358238,49800853:1179648,16384,0 +r1,6823:2537886,49800853:1179648,16384,0 ) -g1,5950:3062174,49800853 -(1,5950:3062174,52029077:16384,1703936,0 -[1,5950:3062174,52029077:25952256,1703936,0 -(1,5950:3062174,51504789:25952256,1179648,0 -(1,5950:3062174,51504789:16384,1179648,0 -r1,7866:3078558,51504789:16384,1179648,0 +g1,6148:3062174,49800853 +(1,6148:3062174,52029077:16384,1703936,0 +[1,6148:3062174,52029077:25952256,1703936,0 +(1,6148:3062174,51504789:25952256,1179648,0 +(1,6148:3062174,51504789:16384,1179648,0 +r1,6823:3078558,51504789:16384,1179648,0 ) -k1,5950:29014430,51504789:25935872 -g1,5950:29014430,51504789 +k1,6148:29014430,51504789:25935872 +g1,6148:29014430,51504789 ) ] ) ) ) ] -[1,7866:3078558,4812305:0,0,0 -(1,7866:3078558,49800853:0,16384,2228224 -g1,7866:29030814,49800853 -g1,7866:36135244,49800853 -(1,5950:36135244,49800853:1720320,16384,2228224 -(1,5950:36135244,52029077:16384,1703936,0 -[1,5950:36135244,52029077:25952256,1703936,0 -(1,5950:36135244,51504789:25952256,1179648,0 -(1,5950:36135244,51504789:16384,1179648,0 -r1,7866:36151628,51504789:16384,1179648,0 -) -k1,5950:62087500,51504789:25935872 -g1,5950:62087500,51504789 -) -] -) -g1,5950:36675916,49800853 -(1,5950:36675916,49800853:1179648,16384,0 -r1,7866:37855564,49800853:1179648,16384,0 -) -) -k1,7866:3078556,49800853:-34777008 -) -] -g1,7866:6630773,4812305 -k1,7866:24358918,4812305:16532768 -g1,7866:25981589,4812305 -g1,7866:26804065,4812305 -g1,7866:30302376,4812305 -) -) -] -[1,7866:6630773,45706769:25952256,40108032,0 -(1,7866:6630773,45706769:25952256,40108032,0 -(1,7866:6630773,45706769:0,0,0 -g1,7866:6630773,45706769 -) -[1,7866:6630773,45706769:25952256,40108032,0 -(1,7766:6630773,6254097:25952256,513147,126483 -h1,7765:6630773,6254097:983040,0,0 -k1,7765:8462176,6254097:220528 -k1,7765:9701788,6254097:220527 -k1,7765:11289397,6254097:220528 -k1,7765:12177081,6254097:220528 -(1,7765:12177081,6254097:0,452978,115847 -r1,7866:14293906,6254097:2116825,568825,115847 -k1,7765:12177081,6254097:-2116825 -) -(1,7765:12177081,6254097:2116825,452978,115847 -k1,7765:12177081,6254097:3277 -h1,7765:14290629,6254097:0,411205,112570 -) -k1,7765:14514433,6254097:220527 -k1,7765:16110562,6254097:220528 -k1,7765:17661471,6254097:220528 -k1,7765:20525720,6254097:220527 -k1,7765:24160018,6254097:220528 -k1,7765:25876733,6254097:220528 -k1,7765:29283620,6254097:220527 -k1,7765:30035645,6254097:220528 -k1,7765:32583029,6254097:0 -) -(1,7766:6630773,7095585:25952256,513147,134348 -k1,7765:8090167,7095585:267949 -k1,7765:9561356,7095585:267948 -k1,7765:13015665,7095585:267949 -k1,7765:13815110,7095585:267948 -k1,7765:16288346,7095585:267949 -k1,7765:17242456,7095585:267948 -k1,7765:18281108,7095585:267949 -k1,7765:21795054,7095585:267948 -k1,7765:22880892,7095585:267949 -k1,7765:25365268,7095585:267948 -k1,7765:26501569,7095585:267949 -k1,7765:28299783,7095585:267948 -k1,7765:29219160,7095585:267949 -k1,7765:30938075,7095585:267948 -k1,7766:32583029,7095585:0 -) -(1,7766:6630773,7937073:25952256,513147,134348 -k1,7765:7709646,7937073:251809 -k1,7765:8980541,7937073:251810 -k1,7765:12125765,7937073:251809 -k1,7765:13677154,7937073:251810 -k1,7765:14588255,7937073:251809 -k1,7765:15859149,7937073:251809 -k1,7765:19930397,7937073:251810 -k1,7765:21378893,7937073:251809 -k1,7765:23311045,7937073:251809 -k1,7765:26341582,7937073:251810 -k1,7765:27124888,7937073:251809 -k1,7765:28395783,7937073:251810 -k1,7765:29804302,7937073:251809 -k1,7765:32583029,7937073:0 -) -(1,7766:6630773,8778561:25952256,513147,134348 -k1,7765:7668262,8778561:275961 -k1,7765:8963309,8778561:275962 -k1,7765:12425630,8778561:275961 -k1,7765:14906878,8778561:275961 -k1,7765:15869001,8778561:275961 -k1,7765:16915666,8778561:275962 -k1,7765:20437625,8778561:275961 -k1,7765:21329624,8778561:275961 -k1,7765:22624670,8778561:275961 -k1,7765:24267713,8778561:275962 -k1,7765:25202966,8778561:275961 -k1,7765:28892697,8778561:275961 -k1,7765:32583029,8778561:0 -) -(1,7766:6630773,9620049:25952256,505283,126483 -k1,7765:7915879,9620049:266021 -k1,7765:9862244,9620049:266022 -k1,7765:12906992,9620049:266021 -k1,7765:13934542,9620049:266022 -k1,7765:15219648,9620049:266021 -k1,7765:16633861,9620049:266022 -k1,7765:20039712,9620049:266021 -k1,7765:22430410,9620049:266021 -k1,7765:24192619,9620049:266022 -k1,7765:27645000,9620049:266021 -k1,7765:28562450,9620049:266022 -k1,7765:29576237,9620049:266021 -k1,7765:32583029,9620049:0 -) -(1,7766:6630773,10461537:25952256,513147,134348 -k1,7765:11330469,10461537:179022 -k1,7765:11975453,10461537:179023 -k1,7765:13173560,10461537:179022 -k1,7765:15244606,10461537:179022 -k1,7765:15955126,10461537:179023 -k1,7765:16785576,10461537:179022 -k1,7765:19226901,10461537:179022 -k1,7765:20425009,10461537:179023 -k1,7765:23785149,10461537:179022 -k1,7765:27609939,10461537:179022 -k1,7765:28440390,10461537:179023 -k1,7765:29390115,10461537:179022 -k1,7765:32583029,10461537:0 -) -(1,7766:6630773,11303025:25952256,505283,126483 -g1,7765:9453408,11303025 -g1,7765:12163977,11303025 -g1,7765:14953189,11303025 -g1,7765:15768456,11303025 -g1,7765:17170926,11303025 -g1,7765:18944330,11303025 -g1,7765:19675056,11303025 -k1,7766:32583029,11303025:10021767 -g1,7766:32583029,11303025 -) -(1,7768:6630773,12144513:25952256,513147,126483 -h1,7767:6630773,12144513:983040,0,0 -k1,7767:8491079,12144513:249431 -k1,7767:9943751,12144513:249431 -k1,7767:13028268,12144513:249430 -k1,7767:15660588,12144513:249431 -(1,7767:15660588,12144513:0,414482,115847 -r1,7866:16018854,12144513:358266,530329,115847 -k1,7767:15660588,12144513:-358266 -) -(1,7767:15660588,12144513:358266,414482,115847 -k1,7767:15660588,12144513:3277 -h1,7767:16015577,12144513:0,411205,112570 -) -k1,7767:16268285,12144513:249431 -k1,7767:17184872,12144513:249431 -(1,7767:17184872,12144513:0,459977,115847 -r1,7866:22818815,12144513:5633943,575824,115847 -k1,7767:17184872,12144513:-5633943 -) -(1,7767:17184872,12144513:5633943,459977,115847 -k1,7767:17184872,12144513:3277 -h1,7767:22815538,12144513:0,411205,112570 -) -k1,7767:23068246,12144513:249431 -k1,7767:25000642,12144513:249431 -k1,7767:29024946,12144513:249430 -k1,7767:30465822,12144513:249431 -k1,7767:31734338,12144513:249431 -k1,7768:32583029,12144513:0 -) -(1,7768:6630773,12986001:25952256,505283,126483 -g1,7767:8973029,12986001 -g1,7767:10852601,12986001 -g1,7767:11583327,12986001 -g1,7767:12801641,12986001 -g1,7767:15839890,12986001 -k1,7768:32583029,12986001:15412758 -g1,7768:32583029,12986001 -) -v1,7770:6630773,14176467:0,393216,0 -(1,7781:6630773,17730703:25952256,3947452,196608 -g1,7781:6630773,17730703 -g1,7781:6630773,17730703 -g1,7781:6434165,17730703 -(1,7781:6434165,17730703:0,3947452,196608 -r1,7866:32779637,17730703:26345472,4144060,196608 -k1,7781:6434165,17730703:-26345472 -) -(1,7781:6434165,17730703:26345472,3947452,196608 -[1,7781:6630773,17730703:25952256,3750844,0 -(1,7772:6630773,14390377:25952256,410518,101187 -(1,7771:6630773,14390377:0,0,0 -g1,7771:6630773,14390377 -g1,7771:6630773,14390377 -g1,7771:6303093,14390377 -(1,7771:6303093,14390377:0,0,0 -) -g1,7771:6630773,14390377 -) -g1,7772:12637542,14390377 -g1,7772:13585980,14390377 -k1,7772:13585980,14390377:0 -h1,7772:14850563,14390377:0,0,0 -k1,7772:32583029,14390377:17732466 -g1,7772:32583029,14390377 -) -(1,7773:6630773,15056555:25952256,410518,101187 -h1,7773:6630773,15056555:0,0,0 -g1,7773:12637542,15056555 -g1,7773:13585980,15056555 -g1,7773:20857332,15056555 -g1,7773:21805769,15056555 -g1,7773:22438061,15056555 -g1,7773:23386498,15056555 -g1,7773:24018790,15056555 -h1,7773:24651081,15056555:0,0,0 -k1,7773:32583029,15056555:7931948 -g1,7773:32583029,15056555 -) -(1,7774:6630773,15722733:25952256,410518,101187 -h1,7774:6630773,15722733:0,0,0 -g1,7774:13902125,15722733 -h1,7774:14534417,15722733:0,0,0 -k1,7774:32583029,15722733:18048612 -g1,7774:32583029,15722733 -) -(1,7780:6630773,16388911:25952256,379060,7863 -(1,7776:6630773,16388911:0,0,0 -g1,7776:6630773,16388911 -g1,7776:6630773,16388911 -g1,7776:6303093,16388911 -(1,7776:6303093,16388911:0,0,0 -) -g1,7776:6630773,16388911 -) -g1,7780:7579210,16388911 -g1,7780:7895356,16388911 -g1,7780:8211502,16388911 -g1,7780:8843794,16388911 -g1,7780:9476086,16388911 -g1,7780:9792232,16388911 -g1,7780:10108378,16388911 -h1,7780:10424524,16388911:0,0,0 -k1,7780:32583028,16388911:22158504 -g1,7780:32583028,16388911 -) -(1,7780:6630773,17055089:25952256,388497,9436 -h1,7780:6630773,17055089:0,0,0 -g1,7780:7579210,17055089 -g1,7780:8211502,17055089 -g1,7780:8843794,17055089 -g1,7780:9476086,17055089 -h1,7780:10424523,17055089:0,0,0 -k1,7780:32583029,17055089:22158506 -g1,7780:32583029,17055089 -) -(1,7780:6630773,17721267:25952256,388497,9436 -h1,7780:6630773,17721267:0,0,0 -g1,7780:7579210,17721267 -g1,7780:8211502,17721267 -g1,7780:8843794,17721267 -g1,7780:9476086,17721267 -h1,7780:10424523,17721267:0,0,0 -k1,7780:32583029,17721267:22158506 -g1,7780:32583029,17721267 -) -] -) -g1,7781:32583029,17730703 -g1,7781:6630773,17730703 -g1,7781:6630773,17730703 -g1,7781:32583029,17730703 -g1,7781:32583029,17730703 -) -h1,7781:6630773,17927311:0,0,0 -(1,7785:6630773,19293087:25952256,513147,134348 -h1,7784:6630773,19293087:983040,0,0 -k1,7784:8462376,19293087:220728 -k1,7784:9702188,19293087:220727 -k1,7784:11289997,19293087:220728 -k1,7784:12177880,19293087:220727 -(1,7784:12177880,19293087:0,452978,115847 -r1,7866:14998129,19293087:2820249,568825,115847 -k1,7784:12177880,19293087:-2820249 -) -(1,7784:12177880,19293087:2820249,452978,115847 -k1,7784:12177880,19293087:3277 -h1,7784:14994852,19293087:0,411205,112570 -) -k1,7784:15392527,19293087:220728 -k1,7784:19589324,19293087:220728 -k1,7784:20426089,19293087:220727 -k1,7784:21665902,19293087:220728 -k1,7784:24958957,19293087:220727 -k1,7784:25831113,19293087:220728 -k1,7784:26840238,19293087:220727 -k1,7784:29302297,19293087:220728 -k1,7784:32583029,19293087:0 -) -(1,7785:6630773,20134575:25952256,513147,134348 -k1,7784:8640456,20134575:230381 -k1,7784:9889922,20134575:230381 -k1,7784:12079829,20134575:230381 -k1,7784:15262607,20134575:230381 -k1,7784:17378459,20134575:230381 -k1,7784:18140337,20134575:230381 -k1,7784:18726578,20134575:230381 -k1,7784:20466908,20134575:230380 -k1,7784:21356581,20134575:230381 -k1,7784:22606047,20134575:230381 -k1,7784:25843875,20134575:230381 -k1,7784:26909185,20134575:230381 -k1,7784:28342807,20134575:230381 -k1,7784:30113939,20134575:230381 -k1,7784:30700180,20134575:230381 -k1,7784:32583029,20134575:0 -) -(1,7785:6630773,20976063:25952256,513147,134348 -k1,7784:8217017,20976063:196881 -k1,7784:10670958,20976063:196881 -k1,7784:12753309,20976063:196880 -k1,7784:14148844,20976063:196881 -k1,7784:16206292,20976063:196881 -k1,7784:17054601,20976063:196881 -k1,7784:17999248,20976063:196881 -k1,7784:20007544,20976063:196881 -k1,7784:22762950,20976063:196880 -k1,7784:26779269,20976063:196881 -k1,7784:28464473,20976063:196881 -k1,7784:29680439,20976063:196881 -k1,7784:32583029,20976063:0 -) -(1,7785:6630773,21817551:25952256,513147,134348 -k1,7784:7445501,21817551:283231 -k1,7784:8380160,21817551:283231 -k1,7784:10925694,21817551:283231 -k1,7784:11840692,21817551:283231 -k1,7784:12848752,21817551:283232 -k1,7784:14000335,21817551:283231 -k1,7784:16290278,21817551:283231 -k1,7784:17031606,21817551:283231 -k1,7784:18797261,21817551:283231 -k1,7784:19731920,21817551:283231 -k1,7784:21034236,21817551:283231 -k1,7784:22970940,21817551:283231 -k1,7784:25165857,21817551:283232 -k1,7784:26521257,21817551:283231 -k1,7784:27262585,21817551:283231 -k1,7784:29314633,21817551:283231 -k1,7784:31073079,21817551:283231 -k1,7784:32583029,21817551:0 -) -(1,7785:6630773,22659039:25952256,513147,134348 -g1,7784:9604796,22659039 -g1,7784:10455453,22659039 -g1,7784:11010542,22659039 -g1,7784:13972114,22659039 -g1,7784:15909358,22659039 -g1,7784:16833415,22659039 -g1,7784:17718806,22659039 -g1,7784:18984306,22659039 -g1,7784:19834963,22659039 -g1,7784:23036396,22659039 -g1,7784:24254710,22659039 -g1,7784:26889257,22659039 -g1,7784:28477849,22659039 -k1,7785:32583029,22659039:2055214 -g1,7785:32583029,22659039 -) -v1,7787:6630773,23849505:0,393216,0 -(1,7798:6630773,27403741:25952256,3947452,196608 -g1,7798:6630773,27403741 -g1,7798:6630773,27403741 -g1,7798:6434165,27403741 -(1,7798:6434165,27403741:0,3947452,196608 -r1,7866:32779637,27403741:26345472,4144060,196608 -k1,7798:6434165,27403741:-26345472 -) -(1,7798:6434165,27403741:26345472,3947452,196608 -[1,7798:6630773,27403741:25952256,3750844,0 -(1,7789:6630773,24063415:25952256,410518,101187 -(1,7788:6630773,24063415:0,0,0 -g1,7788:6630773,24063415 -g1,7788:6630773,24063415 -g1,7788:6303093,24063415 -(1,7788:6303093,24063415:0,0,0 -) -g1,7788:6630773,24063415 -) -g1,7789:12637542,24063415 -g1,7789:13585980,24063415 -k1,7789:13585980,24063415:0 -h1,7789:14850563,24063415:0,0,0 -k1,7789:32583029,24063415:17732466 -g1,7789:32583029,24063415 -) -(1,7790:6630773,24729593:25952256,410518,101187 -h1,7790:6630773,24729593:0,0,0 -g1,7790:12005250,24729593 -g1,7790:12953688,24729593 -g1,7790:20857331,24729593 -g1,7790:21173477,24729593 -g1,7790:21805769,24729593 -g1,7790:22754207,24729593 -g1,7790:23702644,24729593 -g1,7790:24334936,24729593 -g1,7790:25283373,24729593 -g1,7790:25915665,24729593 -h1,7790:26547956,24729593:0,0,0 -k1,7790:32583029,24729593:6035073 -g1,7790:32583029,24729593 -) -(1,7791:6630773,25395771:25952256,410518,101187 -h1,7791:6630773,25395771:0,0,0 -g1,7791:13902125,25395771 -h1,7791:14534417,25395771:0,0,0 -k1,7791:32583029,25395771:18048612 -g1,7791:32583029,25395771 -) -(1,7797:6630773,26061949:25952256,379060,7863 -(1,7793:6630773,26061949:0,0,0 -g1,7793:6630773,26061949 -g1,7793:6630773,26061949 -g1,7793:6303093,26061949 -(1,7793:6303093,26061949:0,0,0 -) -g1,7793:6630773,26061949 -) -g1,7797:7579210,26061949 -g1,7797:7895356,26061949 -g1,7797:8211502,26061949 -g1,7797:8843794,26061949 -g1,7797:9476086,26061949 -g1,7797:9792232,26061949 -g1,7797:10108378,26061949 -h1,7797:10424524,26061949:0,0,0 -k1,7797:32583028,26061949:22158504 -g1,7797:32583028,26061949 -) -(1,7797:6630773,26728127:25952256,388497,9436 -h1,7797:6630773,26728127:0,0,0 -g1,7797:7579210,26728127 -g1,7797:8211502,26728127 -g1,7797:8843794,26728127 -g1,7797:9476086,26728127 -h1,7797:10424523,26728127:0,0,0 -k1,7797:32583029,26728127:22158506 -g1,7797:32583029,26728127 -) -(1,7797:6630773,27394305:25952256,388497,9436 -h1,7797:6630773,27394305:0,0,0 -g1,7797:7579210,27394305 -g1,7797:8211502,27394305 -g1,7797:8843794,27394305 -g1,7797:9476086,27394305 -h1,7797:10424523,27394305:0,0,0 -k1,7797:32583029,27394305:22158506 -g1,7797:32583029,27394305 -) -] -) -g1,7798:32583029,27403741 -g1,7798:6630773,27403741 -g1,7798:6630773,27403741 -g1,7798:32583029,27403741 -g1,7798:32583029,27403741 -) -h1,7798:6630773,27600349:0,0,0 -(1,7802:6630773,28966125:25952256,513147,134348 -h1,7801:6630773,28966125:983040,0,0 -k1,7801:8405586,28966125:163938 -k1,7801:9588608,28966125:163937 -k1,7801:12413963,28966125:163938 -k1,7801:14606896,28966125:163938 -k1,7801:16506227,28966125:163938 -(1,7801:16506227,28966125:0,452978,115847 -r1,7866:19326476,28966125:2820249,568825,115847 -k1,7801:16506227,28966125:-2820249 -) -(1,7801:16506227,28966125:2820249,452978,115847 -k1,7801:16506227,28966125:3277 -h1,7801:19323199,28966125:0,411205,112570 -) -k1,7801:19490413,28966125:163937 -k1,7801:21700385,28966125:163938 -k1,7801:23336917,28966125:163938 -k1,7801:26687215,28966125:163938 -k1,7801:30032270,28966125:163937 -k1,7801:30847636,28966125:163938 -k1,7802:32583029,28966125:0 -) -(1,7802:6630773,29807613:25952256,513147,134348 -(1,7801:6630773,29807613:0,452978,115847 -r1,7866:8747598,29807613:2116825,568825,115847 -k1,7801:6630773,29807613:-2116825 -) -(1,7801:6630773,29807613:2116825,452978,115847 -k1,7801:6630773,29807613:3277 -h1,7801:8744321,29807613:0,411205,112570 -) -k1,7801:8953884,29807613:206286 -k1,7801:10554121,29807613:206286 -k1,7801:13084969,29807613:206286 -k1,7801:13942684,29807613:206287 -k1,7801:15168055,29807613:206286 -k1,7801:17831286,29807613:206286 -k1,7801:18696864,29807613:206286 -k1,7801:20932145,29807613:206286 -k1,7801:21821316,29807613:206286 -k1,7801:24203398,29807613:206287 -k1,7801:25481853,29807613:206286 -k1,7801:27082090,29807613:206286 -k1,7801:29959623,29807613:206286 -k1,7801:32583029,29807613:0 -) -(1,7802:6630773,30649101:25952256,505283,134348 -k1,7801:9648029,30649101:175615 -k1,7801:11561659,30649101:175615 -k1,7801:14569085,30649101:175615 -k1,7801:16563324,30649101:175615 -k1,7801:17425101,30649101:175615 -k1,7801:19676242,30649101:175616 -k1,7801:21893959,30649101:175615 -(1,7801:21893959,30649101:0,452978,115847 -r1,7866:24714208,30649101:2820249,568825,115847 -k1,7801:21893959,30649101:-2820249 -) -(1,7801:21893959,30649101:2820249,452978,115847 -k1,7801:21893959,30649101:3277 -h1,7801:24710931,30649101:0,411205,112570 -) -k1,7801:24889823,30649101:175615 -k1,7801:26166443,30649101:175615 -k1,7801:27112761,30649101:175615 -k1,7801:30527165,30649101:175615 -k1,7802:32583029,30649101:0 -) -(1,7802:6630773,31490589:25952256,505283,134348 -g1,7801:7820251,31490589 -g1,7801:8635518,31490589 -g1,7801:10484944,31490589 -g1,7801:13039537,31490589 -g1,7801:14430211,31490589 -g1,7801:16499838,31490589 -g1,7801:17350495,31490589 -g1,7801:21214497,31490589 -k1,7802:32583029,31490589:9698675 -g1,7802:32583029,31490589 -) -v1,7804:6630773,32681055:0,393216,0 -(1,7819:6630773,38900003:25952256,6612164,196608 -g1,7819:6630773,38900003 -g1,7819:6630773,38900003 -g1,7819:6434165,38900003 -(1,7819:6434165,38900003:0,6612164,196608 -r1,7866:32779637,38900003:26345472,6808772,196608 -k1,7819:6434165,38900003:-26345472 -) -(1,7819:6434165,38900003:26345472,6612164,196608 -[1,7819:6630773,38900003:25952256,6415556,0 -(1,7806:6630773,32894965:25952256,410518,101187 -(1,7805:6630773,32894965:0,0,0 -g1,7805:6630773,32894965 -g1,7805:6630773,32894965 -g1,7805:6303093,32894965 -(1,7805:6303093,32894965:0,0,0 -) -g1,7805:6630773,32894965 -) -g1,7806:12637542,32894965 -g1,7806:13585980,32894965 -k1,7806:13585980,32894965:0 -h1,7806:14850563,32894965:0,0,0 -k1,7806:32583029,32894965:17732466 -g1,7806:32583029,32894965 -) -(1,7807:6630773,33561143:25952256,410518,101187 -h1,7807:6630773,33561143:0,0,0 -g1,7807:12005250,33561143 -g1,7807:12953688,33561143 -k1,7807:12953688,33561143:0 -h1,7807:20541185,33561143:0,0,0 -k1,7807:32583029,33561143:12041844 -g1,7807:32583029,33561143 -) -(1,7808:6630773,34227321:25952256,404226,76021 -h1,7808:6630773,34227321:0,0,0 -g1,7808:6946919,34227321 -g1,7808:7263065,34227321 -g1,7808:7579211,34227321 -g1,7808:7895357,34227321 -g1,7808:8211503,34227321 -g1,7808:8527649,34227321 -g1,7808:8843795,34227321 -g1,7808:9159941,34227321 -g1,7808:9476087,34227321 -g1,7808:9792233,34227321 -g1,7808:10108379,34227321 -g1,7808:10424525,34227321 -g1,7808:10740671,34227321 -g1,7808:11056817,34227321 -g1,7808:11372963,34227321 -g1,7808:11689109,34227321 -g1,7808:12005255,34227321 -g1,7808:12321401,34227321 -g1,7808:12637547,34227321 -g1,7808:12953693,34227321 -g1,7808:13269839,34227321 -g1,7808:13585985,34227321 -g1,7808:13902131,34227321 -g1,7808:14218277,34227321 -g1,7808:14534423,34227321 -g1,7808:14850569,34227321 -g1,7808:15166715,34227321 -g1,7808:16115152,34227321 -g1,7808:17063590,34227321 -g1,7808:18012027,34227321 -g1,7808:18644319,34227321 -g1,7808:19592756,34227321 -g1,7808:20225048,34227321 -h1,7808:20541194,34227321:0,0,0 -k1,7808:32583029,34227321:12041835 -g1,7808:32583029,34227321 -) -(1,7809:6630773,34893499:25952256,328204,0 -h1,7809:6630773,34893499:0,0,0 -g1,7809:6946919,34893499 -g1,7809:7263065,34893499 -g1,7809:7579211,34893499 -g1,7809:7895357,34893499 -g1,7809:8211503,34893499 -g1,7809:8527649,34893499 -g1,7809:8843795,34893499 -g1,7809:9159941,34893499 -g1,7809:9476087,34893499 -g1,7809:9792233,34893499 -g1,7809:10108379,34893499 -g1,7809:10424525,34893499 -g1,7809:10740671,34893499 -g1,7809:11056817,34893499 -g1,7809:11372963,34893499 -g1,7809:11689109,34893499 -g1,7809:12005255,34893499 -g1,7809:12321401,34893499 -g1,7809:12637547,34893499 -g1,7809:12953693,34893499 -g1,7809:13269839,34893499 -g1,7809:13585985,34893499 -g1,7809:13902131,34893499 -g1,7809:14218277,34893499 -g1,7809:14534423,34893499 -g1,7809:14850569,34893499 -g1,7809:15166715,34893499 -g1,7809:15482861,34893499 -g1,7809:16115153,34893499 -g1,7809:17063591,34893499 -g1,7809:17695883,34893499 -g1,7809:18328175,34893499 -h1,7809:18644321,34893499:0,0,0 -k1,7809:32583029,34893499:13938708 -g1,7809:32583029,34893499 -) -(1,7810:6630773,35559677:25952256,404226,76021 -h1,7810:6630773,35559677:0,0,0 -g1,7810:6946919,35559677 -g1,7810:7263065,35559677 -g1,7810:7579211,35559677 -g1,7810:7895357,35559677 -g1,7810:8211503,35559677 -g1,7810:8527649,35559677 -g1,7810:8843795,35559677 -g1,7810:9159941,35559677 -g1,7810:9476087,35559677 -g1,7810:9792233,35559677 -g1,7810:10108379,35559677 -g1,7810:10424525,35559677 -g1,7810:10740671,35559677 -g1,7810:11056817,35559677 -g1,7810:11372963,35559677 -g1,7810:11689109,35559677 -g1,7810:12005255,35559677 -g1,7810:12321401,35559677 -g1,7810:12637547,35559677 -g1,7810:12953693,35559677 -g1,7810:13269839,35559677 -g1,7810:13585985,35559677 -g1,7810:13902131,35559677 -g1,7810:14218277,35559677 -g1,7810:14534423,35559677 -g1,7810:14850569,35559677 -g1,7810:15166715,35559677 -g1,7810:15482861,35559677 -g1,7810:16115153,35559677 -g1,7810:17063591,35559677 -g1,7810:17695883,35559677 -g1,7810:18328175,35559677 -g1,7810:18960467,35559677 -g1,7810:19592759,35559677 -h1,7810:20225051,35559677:0,0,0 -k1,7810:32583029,35559677:12357978 -g1,7810:32583029,35559677 -) -(1,7811:6630773,36225855:25952256,404226,76021 -h1,7811:6630773,36225855:0,0,0 -g1,7811:6946919,36225855 -g1,7811:7263065,36225855 -g1,7811:7579211,36225855 -g1,7811:7895357,36225855 -g1,7811:8211503,36225855 -g1,7811:8527649,36225855 -g1,7811:8843795,36225855 -g1,7811:9159941,36225855 -g1,7811:9476087,36225855 -g1,7811:9792233,36225855 -g1,7811:10108379,36225855 -g1,7811:10424525,36225855 -g1,7811:10740671,36225855 -g1,7811:11056817,36225855 -g1,7811:11372963,36225855 -g1,7811:11689109,36225855 -g1,7811:12005255,36225855 -g1,7811:12321401,36225855 -g1,7811:12637547,36225855 -g1,7811:12953693,36225855 -g1,7811:13269839,36225855 -g1,7811:13585985,36225855 -g1,7811:13902131,36225855 -g1,7811:14218277,36225855 -g1,7811:14534423,36225855 -g1,7811:14850569,36225855 -g1,7811:15166715,36225855 -h1,7811:15482861,36225855:0,0,0 -k1,7811:32583029,36225855:17100168 -g1,7811:32583029,36225855 -) -(1,7812:6630773,36892033:25952256,410518,101187 -h1,7812:6630773,36892033:0,0,0 -g1,7812:13902125,36892033 -h1,7812:14534417,36892033:0,0,0 -k1,7812:32583029,36892033:18048612 -g1,7812:32583029,36892033 -) -(1,7818:6630773,37558211:25952256,379060,7863 -(1,7814:6630773,37558211:0,0,0 -g1,7814:6630773,37558211 -g1,7814:6630773,37558211 -g1,7814:6303093,37558211 -(1,7814:6303093,37558211:0,0,0 -) -g1,7814:6630773,37558211 -) -g1,7818:7579210,37558211 -g1,7818:7895356,37558211 -g1,7818:8211502,37558211 -g1,7818:8843794,37558211 -g1,7818:9476086,37558211 -g1,7818:9792232,37558211 -g1,7818:10108378,37558211 -g1,7818:10424524,37558211 -g1,7818:10740670,37558211 -g1,7818:11056816,37558211 -g1,7818:11372962,37558211 -g1,7818:11689108,37558211 -g1,7818:12321400,37558211 -g1,7818:12953692,37558211 -g1,7818:13269838,37558211 -g1,7818:13585984,37558211 -h1,7818:13902130,37558211:0,0,0 -k1,7818:32583030,37558211:18680900 -g1,7818:32583030,37558211 -) -(1,7818:6630773,38224389:25952256,388497,9436 -h1,7818:6630773,38224389:0,0,0 -g1,7818:7579210,38224389 -g1,7818:8211502,38224389 -g1,7818:8843794,38224389 -g1,7818:9476086,38224389 -g1,7818:12321397,38224389 -g1,7818:12953689,38224389 -h1,7818:13902126,38224389:0,0,0 -k1,7818:32583030,38224389:18680904 -g1,7818:32583030,38224389 -) -(1,7818:6630773,38890567:25952256,388497,9436 -h1,7818:6630773,38890567:0,0,0 -g1,7818:7579210,38890567 -g1,7818:8211502,38890567 -g1,7818:8843794,38890567 -g1,7818:9476086,38890567 -g1,7818:12321397,38890567 -g1,7818:12953689,38890567 -h1,7818:13902126,38890567:0,0,0 -k1,7818:32583030,38890567:18680904 -g1,7818:32583030,38890567 -) -] -) -g1,7819:32583029,38900003 -g1,7819:6630773,38900003 -g1,7819:6630773,38900003 -g1,7819:32583029,38900003 -g1,7819:32583029,38900003 -) -h1,7819:6630773,39096611:0,0,0 -v1,7823:6630773,40986675:0,393216,0 -(1,7866:6630773,45672035:25952256,5078576,0 -g1,7866:6630773,45672035 -g1,7866:6303093,45672035 -r1,7866:6401397,45672035:98304,5078576,0 -g1,7866:6600626,45672035 -g1,7866:6797234,45672035 -[1,7866:6797234,45672035:25785795,5078576,0 -(1,7825:6797234,41348748:25785795,755289,196608 -(1,7823:6797234,41348748:0,755289,196608 -r1,7866:8134168,41348748:1336934,951897,196608 -k1,7823:6797234,41348748:-1336934 -) -(1,7823:6797234,41348748:1336934,755289,196608 -) -k1,7823:8310085,41348748:175917 -k1,7823:8637765,41348748:327680 -k1,7823:12321170,41348748:175918 -k1,7823:16360434,41348748:175917 -k1,7823:17555436,41348748:175917 -k1,7823:19469369,41348748:175918 -k1,7823:20304578,41348748:175917 -k1,7823:20836355,41348748:175917 -k1,7823:24049867,41348748:175918 -k1,7823:25719350,41348748:175917 -k1,7823:26581430,41348748:175918 -k1,7823:27113207,41348748:175917 -k1,7823:28282650,41348748:175917 -k1,7823:29141453,41348748:175918 -k1,7823:30706733,41348748:175917 -k1,7823:32583029,41348748:0 -) -(1,7825:6797234,42190236:25785795,513147,134348 -k1,7823:7606279,42190236:157617 -k1,7823:8782981,42190236:157617 -k1,7823:10678613,42190236:157617 -k1,7823:11495522,42190236:157617 -k1,7823:13104760,42190236:157616 -k1,7823:15885783,42190236:157617 -k1,7823:18554740,42190236:157617 -k1,7823:20450372,42190236:157617 -k1,7823:23407032,42190236:157617 -k1,7823:24668931,42190236:157617 -k1,7823:26542281,42190236:157617 -k1,7823:27114699,42190236:157575 -k1,7823:28768503,42190236:157617 -k1,7823:31391584,42190236:157617 -k1,7823:32583029,42190236:0 -) -(1,7825:6797234,43031724:25785795,513147,134348 -k1,7823:9464864,43031724:183815 -k1,7823:10300108,43031724:183816 -k1,7823:14322367,43031724:183815 -k1,7823:17626352,43031724:183816 -(1,7823:17626352,43031724:0,452978,115847 -r1,7866:20446601,43031724:2820249,568825,115847 -k1,7823:17626352,43031724:-2820249 -) -(1,7823:17626352,43031724:2820249,452978,115847 -k1,7823:17626352,43031724:3277 -h1,7823:20443324,43031724:0,411205,112570 -) -k1,7823:20630416,43031724:183815 -k1,7823:22005677,43031724:183816 -k1,7823:22977890,43031724:183815 -k1,7823:26133108,43031724:183816 -(1,7823:26133108,43031724:0,452978,115847 -r1,7866:28953357,43031724:2820249,568825,115847 -k1,7823:26133108,43031724:-2820249 -) -(1,7823:26133108,43031724:2820249,452978,115847 -k1,7823:26133108,43031724:3277 -h1,7823:28950080,43031724:0,411205,112570 -) -k1,7823:29137172,43031724:183815 -k1,7823:31002642,43031724:183816 -k1,7823:31931601,43031724:183815 -k1,7823:32583029,43031724:0 -) -(1,7825:6797234,43873212:25785795,513147,134348 -k1,7823:9286201,43873212:248291 -k1,7823:11453387,43873212:248292 -k1,7823:12116472,43873212:248242 -k1,7823:14081806,43873212:248291 -k1,7823:15277749,43873212:248292 -k1,7823:16545125,43873212:248291 -k1,7823:18861732,43873212:248291 -k1,7823:19769316,43873212:248292 -k1,7823:22307435,43873212:248291 -k1,7823:23424079,43873212:248292 -k1,7823:26010039,43873212:248291 -k1,7823:26874368,43873212:248291 -k1,7823:27478520,43873212:248292 -k1,7823:29222998,43873212:248291 -k1,7823:32583029,43873212:0 -) -(1,7825:6797234,44714700:25785795,513147,134348 -k1,7824:8761863,44714700:181394 -k1,7824:10678651,44714700:181395 -k1,7824:11215905,44714700:181394 -k1,7824:12786007,44714700:181394 -k1,7824:14705417,44714700:181395 -k1,7824:15834462,44714700:181394 -k1,7824:16371717,44714700:181395 -k1,7824:17942474,44714700:181394 -k1,7824:20173834,44714700:181394 -k1,7824:23000262,44714700:181395 -k1,7824:23537516,44714700:181394 -k1,7824:25843587,44714700:181394 -k1,7824:29496424,44714700:181395 -k1,7824:30782100,44714700:181394 -k1,7824:32583029,44714700:0 -) -(1,7825:6797234,45556188:25785795,513147,115847 -k1,7824:8879546,45556188:239440 -k1,7824:9735023,45556188:239439 -k1,7824:10330323,45556188:239440 -k1,7824:13053578,45556188:239440 -k1,7824:13944445,45556188:239439 -k1,7824:15596186,45556188:239440 -k1,7824:19195657,45556188:239440 -k1,7824:22432057,45556188:239439 -(1,7824:22432057,45556188:0,452978,115847 -r1,7866:24548882,45556188:2116825,568825,115847 -k1,7824:22432057,45556188:-2116825 -) -(1,7824:22432057,45556188:2116825,452978,115847 -k1,7824:22432057,45556188:3277 -h1,7824:24545605,45556188:0,411205,112570 -) -k1,7824:24788322,45556188:239440 -k1,7824:25559258,45556188:239439 -k1,7824:27311924,45556188:239440 -k1,7824:28949247,45556188:239440 -k1,7824:29840114,45556188:239439 -k1,7824:31563944,45556188:239440 -k1,7824:32583029,45556188:0 -) -] -g1,7866:32583029,45672035 -) -] -(1,7866:32583029,45706769:0,0,0 -g1,7866:32583029,45706769 -) -) -] -(1,7866:6630773,47279633:25952256,0,0 -h1,7866:6630773,47279633:25952256,0,0 -) -] -(1,7866:4262630,4025873:0,0,0 -[1,7866:-473656,4025873:0,0,0 -(1,7866:-473656,-710413:0,0,0 -(1,7866:-473656,-710413:0,0,0 -g1,7866:-473656,-710413 -) -g1,7866:-473656,-710413 -) -] -) -] -!29616 -}127 -Input:1067:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!106 -{128 -[1,7872:4262630,47279633:28320399,43253760,0 -(1,7872:4262630,4025873:0,0,0 -[1,7872:-473656,4025873:0,0,0 -(1,7872:-473656,-710413:0,0,0 -(1,7872:-473656,-644877:0,0,0 -k1,7872:-473656,-644877:-65536 -) -(1,7872:-473656,4736287:0,0,0 -k1,7872:-473656,4736287:5209943 +[1,6823:3078558,4812305:0,0,0 +(1,6823:3078558,49800853:0,16384,2228224 +g1,6823:29030814,49800853 +g1,6823:36135244,49800853 +(1,6148:36135244,49800853:1720320,16384,2228224 +(1,6148:36135244,52029077:16384,1703936,0 +[1,6148:36135244,52029077:25952256,1703936,0 +(1,6148:36135244,51504789:25952256,1179648,0 +(1,6148:36135244,51504789:16384,1179648,0 +r1,6823:36151628,51504789:16384,1179648,0 ) -g1,7872:-473656,-710413 +k1,6148:62087500,51504789:25935872 +g1,6148:62087500,51504789 ) ] ) -[1,7872:6630773,47279633:25952256,43253760,0 -[1,7872:6630773,4812305:25952256,786432,0 -(1,7872:6630773,4812305:25952256,513147,134348 -(1,7872:6630773,4812305:25952256,513147,134348 -g1,7872:3078558,4812305 -[1,7872:3078558,4812305:0,0,0 -(1,7872:3078558,2439708:0,1703936,0 -k1,7872:1358238,2439708:-1720320 -(1,5950:1358238,2439708:1720320,1703936,0 -(1,5950:1358238,2439708:1179648,16384,0 -r1,7872:2537886,2439708:1179648,16384,0 +g1,6148:36675916,49800853 +(1,6148:36675916,49800853:1179648,16384,0 +r1,6823:37855564,49800853:1179648,16384,0 ) -g1,5950:3062174,2439708 -(1,5950:3062174,2439708:16384,1703936,0 -[1,5950:3062174,2439708:25952256,1703936,0 -(1,5950:3062174,1915420:25952256,1179648,0 -(1,5950:3062174,1915420:16384,1179648,0 -r1,7872:3078558,1915420:16384,1179648,0 ) -k1,5950:29014430,1915420:25935872 -g1,5950:29014430,1915420 +k1,6823:3078556,49800853:-34777008 ) ] +g1,6823:6630773,4812305 +g1,6823:6630773,4812305 +g1,6823:8364200,4812305 +g1,6823:10765439,4812305 +k1,6823:31786111,4812305:21020672 +) +) +] +[1,6823:6630773,45706769:25952256,40108032,0 +(1,6823:6630773,45706769:25952256,40108032,0 +(1,6823:6630773,45706769:0,0,0 +g1,6823:6630773,45706769 ) +[1,6823:6630773,45706769:25952256,40108032,0 +(1,6747:6630773,6254097:25952256,513147,126483 +h1,6746:6630773,6254097:983040,0,0 +k1,6746:10676230,6254097:272549 +(1,6746:10676230,6254097:0,452978,115847 +r1,6823:13496479,6254097:2820249,568825,115847 +k1,6746:10676230,6254097:-2820249 ) +(1,6746:10676230,6254097:2820249,452978,115847 +k1,6746:10676230,6254097:3277 +h1,6746:13493202,6254097:0,411205,112570 ) -] -[1,7872:3078558,4812305:0,0,0 -(1,7872:3078558,2439708:0,1703936,0 -g1,7872:29030814,2439708 -g1,7872:36135244,2439708 -(1,5950:36135244,2439708:1720320,1703936,0 -(1,5950:36135244,2439708:16384,1703936,0 -[1,5950:36135244,2439708:25952256,1703936,0 -(1,5950:36135244,1915420:25952256,1179648,0 -(1,5950:36135244,1915420:16384,1179648,0 -r1,7872:36151628,1915420:16384,1179648,0 +k1,6746:13769027,6254097:272548 +k1,6746:15145858,6254097:272549 +k1,6746:16166173,6254097:272549 +k1,6746:17951947,6254097:272548 +k1,6746:18875924,6254097:272549 +k1,6746:21503181,6254097:272548 +k1,6746:23844046,6254097:272549 +k1,6746:27706002,6254097:272549 +k1,6746:30438772,6254097:272548 +k1,6746:31923737,6254097:272549 +k1,6746:32583029,6254097:0 +) +(1,6747:6630773,7119177:25952256,513147,134348 +g1,6746:9273840,7119177 +g1,6746:10492154,7119177 +g1,6746:12473962,7119177 +g1,6746:13356076,7119177 +g1,6746:15110474,7119177 +g1,6746:15968995,7119177 +g1,6746:17187309,7119177 +k1,6747:32583029,7119177:13262523 +g1,6747:32583029,7119177 +) +v1,6749:6630773,7804032:0,393216,0 +(1,6778:6630773,21517146:25952256,14106330,196608 +g1,6778:6630773,21517146 +g1,6778:6630773,21517146 +g1,6778:6434165,21517146 +(1,6778:6434165,21517146:0,14106330,196608 +r1,6823:32779637,21517146:26345472,14302938,196608 +k1,6778:6434165,21517146:-26345472 +) +(1,6778:6434165,21517146:26345472,14106330,196608 +[1,6778:6630773,21517146:25952256,13909722,0 +(1,6751:6630773,8031863:25952256,424439,79822 +(1,6750:6630773,8031863:0,0,0 +g1,6750:6630773,8031863 +g1,6750:6630773,8031863 +g1,6750:6303093,8031863 +(1,6750:6303093,8031863:0,0,0 +) +g1,6750:6630773,8031863 +) +k1,6751:6630773,8031863:0 +h1,6751:10946175,8031863:0,0,0 +k1,6751:32583029,8031863:21636854 +g1,6751:32583029,8031863 +) +(1,6755:6630773,8847790:25952256,424439,79822 +(1,6753:6630773,8847790:0,0,0 +g1,6753:6630773,8847790 +g1,6753:6630773,8847790 +g1,6753:6303093,8847790 +(1,6753:6303093,8847790:0,0,0 +) +g1,6753:6630773,8847790 +) +g1,6755:7626635,8847790 +g1,6755:8954451,8847790 +g1,6755:10282267,8847790 +g1,6755:10614221,8847790 +g1,6755:10946175,8847790 +g1,6755:12605945,8847790 +g1,6755:12937899,8847790 +g1,6755:14929623,8847790 +g1,6755:16257439,8847790 +g1,6755:16589393,8847790 +g1,6755:16921347,8847790 +h1,6755:18249163,8847790:0,0,0 +k1,6755:32583029,8847790:14333866 +g1,6755:32583029,8847790 +) +(1,6757:6630773,9663717:25952256,424439,79822 +(1,6756:6630773,9663717:0,0,0 +g1,6756:6630773,9663717 +g1,6756:6630773,9663717 +g1,6756:6303093,9663717 +(1,6756:6303093,9663717:0,0,0 +) +g1,6756:6630773,9663717 +) +k1,6757:6630773,9663717:0 +h1,6757:12937898,9663717:0,0,0 +k1,6757:32583030,9663717:19645132 +g1,6757:32583030,9663717 +) +(1,6777:6630773,10479644:25952256,424439,79822 +(1,6759:6630773,10479644:0,0,0 +g1,6759:6630773,10479644 +g1,6759:6630773,10479644 +g1,6759:6303093,10479644 +(1,6759:6303093,10479644:0,0,0 +) +g1,6759:6630773,10479644 +) +g1,6777:7626635,10479644 +h1,6777:9286405,10479644:0,0,0 +k1,6777:32583029,10479644:23296624 +g1,6777:32583029,10479644 +) +(1,6777:6630773,11164499:25952256,424439,79822 +h1,6777:6630773,11164499:0,0,0 +g1,6777:7626635,11164499 +h1,6777:10946174,11164499:0,0,0 +k1,6777:32583030,11164499:21636856 +g1,6777:32583030,11164499 +) +(1,6777:6630773,11849354:25952256,424439,79822 +h1,6777:6630773,11849354:0,0,0 +g1,6777:7626635,11849354 +g1,6777:8954451,11849354 +h1,6777:9950313,11849354:0,0,0 +k1,6777:32583029,11849354:22632716 +g1,6777:32583029,11849354 +) +(1,6777:6630773,12534209:25952256,398014,0 +h1,6777:6630773,12534209:0,0,0 +h1,6777:7294681,12534209:0,0,0 +k1,6777:32583029,12534209:25288348 +g1,6777:32583029,12534209 +) +(1,6777:6630773,13219064:25952256,424439,79822 +h1,6777:6630773,13219064:0,0,0 +g1,6777:7626635,13219064 +h1,6777:10946174,13219064:0,0,0 +k1,6777:32583030,13219064:21636856 +g1,6777:32583030,13219064 +) +(1,6777:6630773,13903919:25952256,424439,79822 +h1,6777:6630773,13903919:0,0,0 +g1,6777:7626635,13903919 +g1,6777:8954451,13903919 +h1,6777:10282267,13903919:0,0,0 +k1,6777:32583029,13903919:22300762 +g1,6777:32583029,13903919 +) +(1,6777:6630773,14588774:25952256,398014,0 +h1,6777:6630773,14588774:0,0,0 +h1,6777:7294681,14588774:0,0,0 +k1,6777:32583029,14588774:25288348 +g1,6777:32583029,14588774 +) +(1,6777:6630773,15273629:25952256,424439,79822 +h1,6777:6630773,15273629:0,0,0 +g1,6777:7626635,15273629 +h1,6777:10946174,15273629:0,0,0 +k1,6777:32583030,15273629:21636856 +g1,6777:32583030,15273629 +) +(1,6777:6630773,15958484:25952256,424439,79822 +h1,6777:6630773,15958484:0,0,0 +g1,6777:7626635,15958484 +g1,6777:8954451,15958484 +h1,6777:10614221,15958484:0,0,0 +k1,6777:32583029,15958484:21968808 +g1,6777:32583029,15958484 +) +(1,6777:6630773,16643339:25952256,398014,0 +h1,6777:6630773,16643339:0,0,0 +h1,6777:7294681,16643339:0,0,0 +k1,6777:32583029,16643339:25288348 +g1,6777:32583029,16643339 +) +(1,6777:6630773,17328194:25952256,398014,0 +h1,6777:6630773,17328194:0,0,0 +h1,6777:7294681,17328194:0,0,0 +k1,6777:32583029,17328194:25288348 +g1,6777:32583029,17328194 +) +(1,6777:6630773,18013049:25952256,424439,79822 +h1,6777:6630773,18013049:0,0,0 +g1,6777:7626635,18013049 +h1,6777:9286405,18013049:0,0,0 +k1,6777:32583029,18013049:23296624 +g1,6777:32583029,18013049 +) +(1,6777:6630773,18697904:25952256,424439,79822 +h1,6777:6630773,18697904:0,0,0 +g1,6777:7626635,18697904 +h1,6777:10946174,18697904:0,0,0 +k1,6777:32583030,18697904:21636856 +g1,6777:32583030,18697904 +) +(1,6777:6630773,19382759:25952256,424439,79822 +h1,6777:6630773,19382759:0,0,0 +g1,6777:7626635,19382759 +g1,6777:8954451,19382759 +h1,6777:9950313,19382759:0,0,0 +k1,6777:32583029,19382759:22632716 +g1,6777:32583029,19382759 +) +(1,6777:6630773,20067614:25952256,398014,0 +h1,6777:6630773,20067614:0,0,0 +h1,6777:7294681,20067614:0,0,0 +k1,6777:32583029,20067614:25288348 +g1,6777:32583029,20067614 +) +(1,6777:6630773,20752469:25952256,424439,79822 +h1,6777:6630773,20752469:0,0,0 +g1,6777:7626635,20752469 +h1,6777:10946174,20752469:0,0,0 +k1,6777:32583030,20752469:21636856 +g1,6777:32583030,20752469 +) +(1,6777:6630773,21437324:25952256,424439,79822 +h1,6777:6630773,21437324:0,0,0 +g1,6777:7626635,21437324 +g1,6777:8954451,21437324 +h1,6777:10282267,21437324:0,0,0 +k1,6777:32583029,21437324:22300762 +g1,6777:32583029,21437324 +) +] +) +g1,6778:32583029,21517146 +g1,6778:6630773,21517146 +g1,6778:6630773,21517146 +g1,6778:32583029,21517146 +g1,6778:32583029,21517146 +) +h1,6778:6630773,21713754:0,0,0 +(1,6784:6630773,24544914:25952256,32768,229376 +(1,6784:6630773,24544914:0,32768,229376 +(1,6784:6630773,24544914:5505024,32768,229376 +r1,6823:12135797,24544914:5505024,262144,229376 +) +k1,6784:6630773,24544914:-5505024 +) +(1,6784:6630773,24544914:25952256,32768,0 +r1,6823:32583029,24544914:25952256,32768,0 +) +) +(1,6784:6630773,26176766:25952256,615776,9436 +(1,6784:6630773,26176766:1974731,575668,0 +g1,6784:6630773,26176766 +g1,6784:8605504,26176766 +) +g1,6784:10655733,26176766 +k1,6784:32583030,26176766:19185008 +g1,6784:32583030,26176766 +) +(1,6789:6630773,27435062:25952256,513147,134348 +k1,6787:8300281,27435062:197569 +k1,6787:10704448,27435062:197570 +k1,6787:11893577,27435062:197569 +k1,6787:12447006,27435062:197569 +k1,6787:14838720,27435062:197569 +k1,6787:16422376,27435062:197570 +k1,6787:17279237,27435062:197569 +k1,6787:18644002,27435062:197569 +k1,6787:19457609,27435062:197569 +k1,6787:21540650,27435062:197570 +k1,6787:22504335,27435062:197569 +k1,6787:25655612,27435062:197569 +k1,6787:27328396,27435062:197569 +k1,6787:28545051,27435062:197570 +k1,6787:30396093,27435062:197569 +k1,6787:32583029,27435062:0 +) +(1,6789:6630773,28300142:25952256,513147,134348 +k1,6787:8861837,28300142:308238 +k1,6787:11044404,28300142:308237 +k1,6787:12004070,28300142:308238 +k1,6787:12668167,28300142:308237 +k1,6787:16422943,28300142:308238 +k1,6787:18864377,28300142:308237 +k1,6787:19788653,28300142:308238 +k1,6787:21982361,28300142:308237 +k1,6787:25003790,28300142:308238 +k1,6787:26416309,28300142:308237 +k1,6787:28861021,28300142:308238 +k1,6787:29820686,28300142:308237 +k1,6787:32583029,28300142:0 +) +(1,6789:6630773,29165222:25952256,513147,126483 +k1,6787:9297969,29165222:260714 +k1,6787:11104022,29165222:260714 +k1,6787:14708383,29165222:260714 +k1,6787:15988182,29165222:260714 +k1,6787:18872302,29165222:260714 +k1,6787:22446517,29165222:260715 +k1,6787:23698791,29165222:260714 +k1,6787:26267683,29165222:260714 +k1,6787:27211282,29165222:260714 +k1,6787:29869958,29165222:260714 +k1,6787:31202841,29165222:260714 +k1,6787:32583029,29165222:0 +) +(1,6789:6630773,30030302:25952256,513147,134348 +k1,6787:7961809,30030302:226754 +k1,6787:9474380,30030302:226755 +k1,6787:10448900,30030302:226754 +k1,6787:13409162,30030302:226755 +k1,6787:15029867,30030302:226754 +k1,6787:16275707,30030302:226755 +k1,6787:18155934,30030302:226754 +k1,6787:20868469,30030302:226754 +k1,6787:21754516,30030302:226755 +k1,6787:23515468,30030302:226754 +k1,6787:24428385,30030302:226755 +k1,6787:25674224,30030302:226754 +k1,6787:28916946,30030302:226755 +k1,6787:30533063,30030302:226754 +k1,6787:32583029,30030302:0 +) +(1,6789:6630773,30895382:25952256,513147,134348 +k1,6787:7561478,30895382:247820 +k1,6787:9133124,30895382:247819 +k1,6787:10774895,30895382:247820 +k1,6787:12041800,30895382:247820 +k1,6787:13943092,30895382:247819 +k1,6787:16676693,30895382:247820 +k1,6787:17583805,30895382:247820 +k1,6787:20785332,30895382:247819 +k1,6787:21719314,30895382:247820 +k1,6787:23501331,30895382:247819 +k1,6787:24365189,30895382:247820 +k1,6787:25632094,30895382:247820 +k1,6787:28895880,30895382:247819 +k1,6787:30533063,30895382:247820 +k1,6787:32583029,30895382:0 +) +(1,6789:6630773,31760462:25952256,513147,126483 +k1,6788:8396671,31760462:293959 +k1,6788:10897226,31760462:293958 +k1,6788:12182745,31760462:293959 +k1,6788:14678714,31760462:293959 +k1,6788:15624100,31760462:293958 +k1,6788:17519759,31760462:293959 +k1,6788:19203080,31760462:293958 +k1,6788:23752947,31760462:293959 +k1,6788:25238351,31760462:293959 +k1,6788:28086902,31760462:293958 +k1,6788:31966991,31760462:293959 +k1,6789:32583029,31760462:0 +) +(1,6789:6630773,32625542:25952256,505283,126483 +k1,6788:7511952,32625542:292666 +k1,6788:9362410,32625542:292667 +k1,6788:10646636,32625542:292666 +k1,6788:14282950,32625542:292667 +k1,6788:16088842,32625542:292666 +k1,6788:17032937,32625542:292667 +k1,6788:18943032,32625542:292666 +k1,6788:23481121,32625542:292667 +k1,6788:25167738,32625542:292666 +(1,6788:25167738,32625542:0,452978,115847 +r1,6823:27636275,32625542:2468537,568825,115847 +k1,6788:25167738,32625542:-2468537 +) +(1,6788:25167738,32625542:2468537,452978,115847 +k1,6788:25167738,32625542:3277 +h1,6788:27632998,32625542:0,411205,112570 +) +k1,6788:27928942,32625542:292667 +k1,6788:30934799,32625542:292666 +k1,6789:32583029,32625542:0 +) +(1,6789:6630773,33490622:25952256,513147,134348 +k1,6788:7893055,33490622:272033 +k1,6788:9554450,33490622:272032 +k1,6788:10774134,33490622:272033 +k1,6788:14616568,33490622:272033 +k1,6788:17730242,33490622:272033 +k1,6788:19193719,33490622:272032 +(1,6788:19193719,33490622:0,459977,115847 +r1,6823:21310544,33490622:2116825,575824,115847 +k1,6788:19193719,33490622:-2116825 +) +(1,6788:19193719,33490622:2116825,459977,115847 +k1,6788:19193719,33490622:3277 +h1,6788:21307267,33490622:0,411205,112570 +) +k1,6788:21582577,33490622:272033 +k1,6788:24567801,33490622:272033 +k1,6788:26229197,33490622:272033 +k1,6788:27448880,33490622:272032 +k1,6788:31167451,33490622:272033 +k1,6789:32583029,33490622:0 +) +(1,6789:6630773,34355702:25952256,505283,126483 +k1,6788:8653683,34355702:210184 +k1,6788:10884343,34355702:210185 +k1,6788:13936168,34355702:210184 +k1,6788:15250635,34355702:210185 +k1,6788:16208585,34355702:210184 +k1,6788:18456940,34355702:210185 +k1,6788:19283162,34355702:210184 +(1,6788:19283162,34355702:0,452978,122846 +r1,6823:21751699,34355702:2468537,575824,122846 +k1,6788:19283162,34355702:-2468537 +) +(1,6788:19283162,34355702:2468537,452978,122846 +k1,6788:19283162,34355702:3277 +h1,6788:21748422,34355702:0,411205,112570 +) +k1,6788:21961884,34355702:210185 +k1,6788:25058929,34355702:210184 +k1,6788:26672895,34355702:210185 +k1,6788:28272442,34355702:210184 +k1,6788:29586909,34355702:210185 +k1,6788:30544859,34355702:210184 +k1,6788:32583029,34355702:0 +) +(1,6789:6630773,35220782:25952256,513147,126483 +k1,6788:7440242,35220782:193431 +(1,6788:7440242,35220782:0,452978,115847 +r1,6823:10612202,35220782:3171960,568825,115847 +k1,6788:7440242,35220782:-3171960 +) +(1,6788:7440242,35220782:3171960,452978,115847 +k1,6788:7440242,35220782:3277 +h1,6788:10608925,35220782:0,411205,112570 +) +k1,6788:10805632,35220782:193430 +k1,6788:13885924,35220782:193431 +k1,6788:15542773,35220782:193430 +k1,6788:16927649,35220782:193431 +k1,6788:18546487,35220782:193430 +k1,6788:19844200,35220782:193431 +k1,6788:20785396,35220782:193430 +k1,6788:23016997,35220782:193431 +k1,6788:23826465,35220782:193430 +k1,6788:26733087,35220782:193431 +k1,6788:27585809,35220782:193430 +k1,6788:30176547,35220782:193431 +k1,6788:32583029,35220782:0 +) +(1,6789:6630773,36085862:25952256,513147,134348 +k1,6788:8276489,36085862:152150 +k1,6788:9114802,36085862:152151 +(1,6788:9114802,36085862:0,414482,115847 +r1,6823:11583339,36085862:2468537,530329,115847 +k1,6788:9114802,36085862:-2468537 +) +(1,6788:9114802,36085862:2468537,414482,115847 +k1,6788:9114802,36085862:3277 +h1,6788:11580062,36085862:0,411205,112570 +) +k1,6788:11909159,36085862:152150 +k1,6788:12689145,36085862:152151 +k1,6788:13860380,36085862:152150 +k1,6788:16628728,36085862:152151 +k1,6788:18822980,36085862:152150 +k1,6788:21358019,36085862:152150 +(1,6788:21358019,36085862:0,414482,115847 +r1,6823:24529979,36085862:3171960,530329,115847 +k1,6788:21358019,36085862:-3171960 +) +(1,6788:21358019,36085862:3171960,414482,115847 +k1,6788:21358019,36085862:3277 +h1,6788:24526702,36085862:0,411205,112570 +) +k1,6788:24682130,36085862:152151 +k1,6788:25365777,36085862:152150 +k1,6788:25873788,36085862:152151 +k1,6788:27919928,36085862:152150 +k1,6788:29466030,36085862:152151 +k1,6788:30790619,36085862:152150 +k1,6788:32583029,36085862:0 +) +(1,6789:6630773,36950942:25952256,505283,134348 +k1,6788:9771156,36950942:239104 +k1,6788:11182698,36950942:239103 +k1,6788:14958125,36950942:239104 +(1,6788:14958125,36950942:0,452978,115847 +r1,6823:16019814,36950942:1061689,568825,115847 +k1,6788:14958125,36950942:-1061689 +) +(1,6788:14958125,36950942:1061689,452978,115847 +k1,6788:14958125,36950942:3277 +h1,6788:16016537,36950942:0,411205,112570 +) +k1,6788:16258917,36950942:239103 +k1,6788:17689466,36950942:239104 +(1,6788:17689466,36950942:0,452978,115847 +r1,6823:19102867,36950942:1413401,568825,115847 +k1,6788:17689466,36950942:-1413401 +) +(1,6788:17689466,36950942:1413401,452978,115847 +k1,6788:17689466,36950942:3277 +h1,6788:19099590,36950942:0,411205,112570 +) +k1,6788:19515640,36950942:239103 +k1,6788:22589831,36950942:239104 +(1,6788:22589831,36950942:0,452978,122846 +r1,6823:24706656,36950942:2116825,575824,122846 +k1,6788:22589831,36950942:-2116825 +) +(1,6788:22589831,36950942:2116825,452978,122846 +k1,6788:22589831,36950942:3277 +h1,6788:24703379,36950942:0,411205,112570 +) +k1,6788:24945759,36950942:239103 +k1,6788:26376308,36950942:239104 +(1,6788:26376308,36950942:0,452978,122846 +r1,6823:28493133,36950942:2116825,575824,122846 +k1,6788:26376308,36950942:-2116825 +) +(1,6788:26376308,36950942:2116825,452978,122846 +k1,6788:26376308,36950942:3277 +h1,6788:28489856,36950942:0,411205,112570 +) +k1,6788:28732236,36950942:239103 +k1,6788:29962900,36950942:239104 +k1,6788:32583029,36950942:0 +) +(1,6789:6630773,37816022:25952256,473825,134348 +g1,6788:9138180,37816022 +g1,6788:12699406,37816022 +k1,6789:32583029,37816022:15036580 +g1,6789:32583029,37816022 +) +] +(1,6823:32583029,45706769:0,0,0 +g1,6823:32583029,45706769 +) +) +] +(1,6823:6630773,47279633:25952256,0,0 +h1,6823:6630773,47279633:25952256,0,0 +) +] +(1,6823:4262630,4025873:0,0,0 +[1,6823:-473656,4025873:0,0,0 +(1,6823:-473656,-710413:0,0,0 +(1,6823:-473656,-710413:0,0,0 +g1,6823:-473656,-710413 ) -k1,5950:62087500,1915420:25935872 -g1,5950:62087500,1915420 +g1,6823:-473656,-710413 ) ] ) -g1,5950:36675916,2439708 -(1,5950:36675916,2439708:1179648,16384,0 -r1,7872:37855564,2439708:1179648,16384,0 +] +!18721 +}106 +Input:937:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:938:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:939:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:940:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:941:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:942:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:943:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!663 +{107 +[1,6909:4262630,47279633:28320399,43253760,0 +(1,6909:4262630,4025873:0,0,0 +[1,6909:-473656,4025873:0,0,0 +(1,6909:-473656,-710413:0,0,0 +(1,6909:-473656,-644877:0,0,0 +k1,6909:-473656,-644877:-65536 ) +(1,6909:-473656,4736287:0,0,0 +k1,6909:-473656,4736287:5209943 ) -k1,7872:3078556,2439708:-34777008 +g1,6909:-473656,-710413 ) ] -[1,7872:3078558,4812305:0,0,0 -(1,7872:3078558,49800853:0,16384,2228224 -k1,7872:1358238,49800853:-1720320 -(1,5950:1358238,49800853:1720320,16384,2228224 -(1,5950:1358238,49800853:1179648,16384,0 -r1,7872:2537886,49800853:1179648,16384,0 ) -g1,5950:3062174,49800853 -(1,5950:3062174,52029077:16384,1703936,0 -[1,5950:3062174,52029077:25952256,1703936,0 -(1,5950:3062174,51504789:25952256,1179648,0 -(1,5950:3062174,51504789:16384,1179648,0 -r1,7872:3078558,51504789:16384,1179648,0 +[1,6909:6630773,47279633:25952256,43253760,0 +[1,6909:6630773,4812305:25952256,786432,0 +(1,6909:6630773,4812305:25952256,505283,11795 +(1,6909:6630773,4812305:25952256,505283,11795 +g1,6909:3078558,4812305 +[1,6909:3078558,4812305:0,0,0 +(1,6909:3078558,2439708:0,1703936,0 +k1,6909:1358238,2439708:-1720320 +(1,6148:1358238,2439708:1720320,1703936,0 +(1,6148:1358238,2439708:1179648,16384,0 +r1,6909:2537886,2439708:1179648,16384,0 +) +g1,6148:3062174,2439708 +(1,6148:3062174,2439708:16384,1703936,0 +[1,6148:3062174,2439708:25952256,1703936,0 +(1,6148:3062174,1915420:25952256,1179648,0 +(1,6148:3062174,1915420:16384,1179648,0 +r1,6909:3078558,1915420:16384,1179648,0 ) -k1,5950:29014430,51504789:25935872 -g1,5950:29014430,51504789 +k1,6148:29014430,1915420:25935872 +g1,6148:29014430,1915420 ) ] ) ) ) ] -[1,7872:3078558,4812305:0,0,0 -(1,7872:3078558,49800853:0,16384,2228224 -g1,7872:29030814,49800853 -g1,7872:36135244,49800853 -(1,5950:36135244,49800853:1720320,16384,2228224 -(1,5950:36135244,52029077:16384,1703936,0 -[1,5950:36135244,52029077:25952256,1703936,0 -(1,5950:36135244,51504789:25952256,1179648,0 -(1,5950:36135244,51504789:16384,1179648,0 -r1,7872:36151628,51504789:16384,1179648,0 +[1,6909:3078558,4812305:0,0,0 +(1,6909:3078558,2439708:0,1703936,0 +g1,6909:29030814,2439708 +g1,6909:36135244,2439708 +(1,6148:36135244,2439708:1720320,1703936,0 +(1,6148:36135244,2439708:16384,1703936,0 +[1,6148:36135244,2439708:25952256,1703936,0 +(1,6148:36135244,1915420:25952256,1179648,0 +(1,6148:36135244,1915420:16384,1179648,0 +r1,6909:36151628,1915420:16384,1179648,0 ) -k1,5950:62087500,51504789:25935872 -g1,5950:62087500,51504789 +k1,6148:62087500,1915420:25935872 +g1,6148:62087500,1915420 ) ] ) -g1,5950:36675916,49800853 -(1,5950:36675916,49800853:1179648,16384,0 -r1,7872:37855564,49800853:1179648,16384,0 +g1,6148:36675916,2439708 +(1,6148:36675916,2439708:1179648,16384,0 +r1,6909:37855564,2439708:1179648,16384,0 ) ) -k1,7872:3078556,49800853:-34777008 +k1,6909:3078556,2439708:-34777008 ) ] -g1,7872:6630773,4812305 -g1,7872:6630773,4812305 -g1,7872:10115322,4812305 -g1,7872:11525001,4812305 -g1,7872:13881675,4812305 -g1,7872:15508934,4812305 -g1,7872:17910173,4812305 -k1,7872:31387652,4812305:13477479 -) -) -] -[1,7872:6630773,45706769:25952256,40108032,0 -(1,7872:6630773,45706769:25952256,40108032,0 -(1,7872:6630773,45706769:0,0,0 -g1,7872:6630773,45706769 -) -[1,7872:6630773,45706769:25952256,40108032,0 -v1,7866:6630773,6254097:0,393216,0 -(1,7866:6630773,38604560:25952256,32743679,0 -g1,7866:6630773,38604560 -g1,7866:6303093,38604560 -r1,7872:6401397,38604560:98304,32743679,0 -g1,7866:6600626,38604560 -g1,7866:6797234,38604560 -[1,7866:6797234,38604560:25785795,32743679,0 -(1,7825:6797234,6374028:25785795,513147,134348 -k1,7824:10098937,6374028:238550 -k1,7824:12017830,6374028:238550 -k1,7824:12907808,6374028:238550 -k1,7824:14165443,6374028:238550 -k1,7824:15710126,6374028:238550 -k1,7824:17121115,6374028:238550 -(1,7824:19310673,6374028:0,452978,115847 -r1,7872:21427498,6374028:2116825,568825,115847 -k1,7824:19310673,6374028:-2116825 -) -(1,7824:19310673,6374028:2116825,452978,115847 -k1,7824:19310673,6374028:3277 -h1,7824:21424221,6374028:0,411205,112570 -) -k1,7824:21666047,6374028:238549 -k1,7824:22436094,6374028:238550 -k1,7824:25764667,6374028:238550 -k1,7824:26619255,6374028:238550 -k1,7824:29136492,6374028:238550 -(1,7824:29136492,6374028:661914,485622,0 -) -k1,7824:30036956,6374028:238550 -k1,7824:31084876,6374028:238550 -k1,7824:32583029,6374028:0 -) -(1,7825:6797234,7215516:25785795,505283,95026 -(1,7824:6797234,7215516:661914,485622,0 -) -k1,7825:32583028,7215516:24743116 -g1,7825:32583028,7215516 -) -v1,7827:6797234,8405982:0,393216,0 -(1,7839:6797234,12626396:25785795,4613630,196608 -g1,7839:6797234,12626396 -g1,7839:6797234,12626396 -g1,7839:6600626,12626396 -(1,7839:6600626,12626396:0,4613630,196608 -r1,7872:32779637,12626396:26179011,4810238,196608 -k1,7839:6600625,12626396:-26179012 -) -(1,7839:6600626,12626396:26179011,4613630,196608 -[1,7839:6797234,12626396:25785795,4417022,0 -(1,7829:6797234,8619892:25785795,410518,101187 -(1,7828:6797234,8619892:0,0,0 -g1,7828:6797234,8619892 -g1,7828:6797234,8619892 -g1,7828:6469554,8619892 -(1,7828:6469554,8619892:0,0,0 -) -g1,7828:6797234,8619892 -) -g1,7829:12171711,8619892 -g1,7829:13120149,8619892 -g1,7829:17230044,8619892 -g1,7829:17862336,8619892 -g1,7829:19759211,8619892 -g1,7829:20391503,8619892 -g1,7829:21023795,8619892 -h1,7829:21656087,8619892:0,0,0 -k1,7829:32583029,8619892:10926942 -g1,7829:32583029,8619892 -) -(1,7830:6797234,9286070:25785795,410518,101187 -h1,7830:6797234,9286070:0,0,0 -g1,7830:12804003,9286070 -k1,7830:12804003,9286070:0 -h1,7830:13436295,9286070:0,0,0 -k1,7830:32583029,9286070:19146734 -g1,7830:32583029,9286070 -) -(1,7831:6797234,9952248:25785795,410518,101187 -h1,7831:6797234,9952248:0,0,0 -g1,7831:7113380,9952248 -g1,7831:7429526,9952248 -g1,7831:13752441,9952248 -g1,7831:14384733,9952248 -g1,7831:20707647,9952248 -g1,7831:21339939,9952248 -h1,7831:27030562,9952248:0,0,0 -k1,7831:32583029,9952248:5552467 -g1,7831:32583029,9952248 -) -(1,7832:6797234,10618426:25785795,410518,101187 -h1,7832:6797234,10618426:0,0,0 -g1,7832:14068586,10618426 -h1,7832:14700878,10618426:0,0,0 -k1,7832:32583030,10618426:17882152 -g1,7832:32583030,10618426 -) -(1,7838:6797234,11284604:25785795,379060,7863 -(1,7834:6797234,11284604:0,0,0 -g1,7834:6797234,11284604 -g1,7834:6797234,11284604 -g1,7834:6469554,11284604 -(1,7834:6469554,11284604:0,0,0 -) -g1,7834:6797234,11284604 -) -g1,7838:7745671,11284604 -g1,7838:8061817,11284604 -g1,7838:8377963,11284604 -g1,7838:9010255,11284604 -g1,7838:9642547,11284604 -g1,7838:9958693,11284604 -g1,7838:10274839,11284604 -h1,7838:10590985,11284604:0,0,0 -k1,7838:32583029,11284604:21992044 -g1,7838:32583029,11284604 -) -(1,7838:6797234,11950782:25785795,388497,9436 -h1,7838:6797234,11950782:0,0,0 -g1,7838:7745671,11950782 -g1,7838:8377963,11950782 -g1,7838:9010255,11950782 -g1,7838:9642547,11950782 -h1,7838:10590984,11950782:0,0,0 -k1,7838:32583028,11950782:21992044 -g1,7838:32583028,11950782 -) -(1,7838:6797234,12616960:25785795,388497,9436 -h1,7838:6797234,12616960:0,0,0 -g1,7838:7745671,12616960 -g1,7838:8377963,12616960 -g1,7838:9010255,12616960 -g1,7838:9642547,12616960 -h1,7838:10590984,12616960:0,0,0 -k1,7838:32583028,12616960:21992044 -g1,7838:32583028,12616960 -) -] -) -g1,7839:32583029,12626396 -g1,7839:6797234,12626396 -g1,7839:6797234,12626396 -g1,7839:32583029,12626396 -g1,7839:32583029,12626396 -) -h1,7839:6797234,12823004:0,0,0 -(1,7843:6797234,14188780:25785795,513147,134348 -h1,7842:6797234,14188780:983040,0,0 -k1,7842:9770146,14188780:198118 -(1,7842:9770146,14188780:0,452978,115847 -r1,7872:12590395,14188780:2820249,568825,115847 -k1,7842:9770146,14188780:-2820249 -) -(1,7842:9770146,14188780:2820249,452978,115847 -k1,7842:9770146,14188780:3277 -h1,7842:12587118,14188780:0,411205,112570 -) -k1,7842:12788512,14188780:198117 -k1,7842:13854982,14188780:198118 -k1,7842:15157381,14188780:198117 -k1,7842:16809088,14188780:198118 -k1,7842:18337587,14188780:198118 -k1,7842:18950546,14188780:198116 -k1,7842:20865707,14188780:198118 -k1,7842:21899408,14188780:198117 -k1,7842:24165842,14188780:198118 -k1,7842:25555404,14188780:198117 -k1,7842:29978628,14188780:198118 -k1,7842:32583029,14188780:0 -) -(1,7843:6797234,15030268:25785795,505283,134348 -k1,7842:8035090,15030268:218771 -k1,7842:11613892,15030268:218771 -k1,7842:13311812,15030268:218772 -(1,7842:13311812,15030268:0,452978,115847 -r1,7872:16132061,15030268:2820249,568825,115847 -k1,7842:13311812,15030268:-2820249 -) -(1,7842:13311812,15030268:2820249,452978,115847 -k1,7842:13311812,15030268:3277 -h1,7842:16128784,15030268:0,411205,112570 -) -k1,7842:16350832,15030268:218771 -k1,7842:17437955,15030268:218771 -k1,7842:18761008,15030268:218771 -k1,7842:21232908,15030268:218772 -k1,7842:22470764,15030268:218771 -k1,7842:25124853,15030268:218771 -k1,7842:27064599,15030268:218771 -k1,7842:27753264,15030268:218772 -k1,7842:28503532,15030268:218771 -k1,7842:31931601,15030268:218771 -k1,7842:32583029,15030268:0 -) -(1,7843:6797234,15871756:25785795,513147,134348 -k1,7842:10283039,15871756:226700 -k1,7842:11794245,15871756:226700 -k1,7842:13418828,15871756:226700 -k1,7842:14513879,15871756:226699 -k1,7842:15844861,15871756:226700 -k1,7842:17447162,15871756:226700 -k1,7842:20278263,15871756:226700 -k1,7842:21524048,15871756:226700 -k1,7842:25105536,15871756:226700 -k1,7842:26631814,15871756:226699 -k1,7842:27517806,15871756:226700 -k1,7842:28763591,15871756:226700 -k1,7842:32583029,15871756:0 -) -(1,7843:6797234,16713244:25785795,513147,126483 -k1,7842:8634208,16713244:147456 -k1,7842:9800749,16713244:147456 -k1,7842:14143165,16713244:147456 -k1,7842:14949913,16713244:147456 -k1,7842:16116454,16713244:147456 -k1,7842:18106782,16713244:147456 -k1,7842:18913529,16713244:147455 -k1,7842:20080070,16713244:147456 -k1,7842:24291413,16713244:147456 -k1,7842:25637523,16713244:147456 -k1,7842:27645546,16713244:147456 -k1,7842:28444430,16713244:147456 -k1,7842:29339652,16713244:147456 -k1,7842:30938075,16713244:147456 -k1,7843:32583029,16713244:0 -) -(1,7843:6797234,17554732:25785795,513147,134348 -k1,7842:8383861,17554732:186778 -k1,7842:9380008,17554732:186777 -k1,7842:10585871,17554732:186778 -k1,7842:13666063,17554732:186777 -k1,7842:15152420,17554732:186778 -k1,7842:15998489,17554732:186777 -k1,7842:17204352,17554732:186778 -k1,7842:21036897,17554732:186777 -k1,7842:24143959,17554732:186778 -k1,7842:25284285,17554732:186777 -k1,7842:27808732,17554732:186778 -k1,7842:29863940,17554732:186777 -k1,7842:31426319,17554732:186778 -k1,7842:32583029,17554732:0 -) -(1,7843:6797234,18396220:25785795,505283,126483 -k1,7842:10234399,18396220:250805 -k1,7842:13120407,18396220:250805 -(1,7842:13120407,18396220:0,452978,115847 -r1,7872:15940656,18396220:2820249,568825,115847 -k1,7842:13120407,18396220:-2820249 -) -(1,7842:13120407,18396220:2820249,452978,115847 -k1,7842:13120407,18396220:3277 -h1,7842:15937379,18396220:0,411205,112570 -) -k1,7842:16191461,18396220:250805 -k1,7842:17633711,18396220:250805 -(1,7842:17633711,18396220:0,452978,115847 -r1,7872:20453960,18396220:2820249,568825,115847 -k1,7842:17633711,18396220:-2820249 -) -(1,7842:17633711,18396220:2820249,452978,115847 -k1,7842:17633711,18396220:3277 -h1,7842:20450683,18396220:0,411205,112570 -) -k1,7842:20704765,18396220:250805 -k1,7842:22027739,18396220:250805 -k1,7842:24949791,18396220:250805 -k1,7842:28717258,18396220:250805 -k1,7842:29959623,18396220:250805 -k1,7842:32583029,18396220:0 -) -(1,7843:6797234,19237708:25785795,513147,102891 -k1,7842:11210529,19237708:219646 -k1,7842:11896137,19237708:219647 -k1,7842:14957424,19237708:219646 -k1,7842:16571022,19237708:219647 -k1,7842:17809753,19237708:219646 -k1,7842:19682872,19237708:219646 -k1,7842:21640534,19237708:219647 -k1,7842:22546342,19237708:219646 -k1,7842:23785073,19237708:219646 -k1,7842:26717911,19237708:219647 -k1,7842:28438331,19237708:219646 -k1,7842:29274016,19237708:219647 -k1,7842:30512747,19237708:219646 -k1,7842:32583029,19237708:0 -) -(1,7843:6797234,20079196:25785795,505283,134348 -k1,7842:8615051,20079196:195801 -k1,7842:10507580,20079196:195802 -k1,7842:11835843,20079196:195801 -k1,7842:13384308,20079196:195802 -k1,7842:17354983,20079196:195801 -k1,7842:20904917,20079196:195801 -k1,7842:22385225,20079196:195802 -k1,7842:23685308,20079196:195801 -k1,7842:25723981,20079196:195801 -k1,7842:26535821,20079196:195802 -k1,7842:28251402,20079196:195801 -k1,7842:29130089,20079196:195802 -k1,7842:31900144,20079196:195801 -k1,7842:32583029,20079196:0 -) -(1,7843:6797234,20920684:25785795,513147,134348 -k1,7842:7697262,20920684:213866 -k1,7842:9350953,20920684:213865 -k1,7842:11606921,20920684:213866 -k1,7842:12176646,20920684:213865 -k1,7842:15095838,20920684:213866 -k1,7842:17220078,20920684:213866 -k1,7842:18718449,20920684:213865 -k1,7842:21443655,20920684:213866 -(1,7842:21443655,20920684:0,414482,115847 -r1,7872:21801921,20920684:358266,530329,115847 -k1,7842:21443655,20920684:-358266 -) -(1,7842:21443655,20920684:358266,414482,115847 -k1,7842:21443655,20920684:3277 -h1,7842:21798644,20920684:0,411205,112570 -) -k1,7842:22015787,20920684:213866 -k1,7842:23797273,20920684:213865 -k1,7842:25030224,20920684:213866 -k1,7842:27179367,20920684:213865 -k1,7842:31450567,20920684:213866 -k1,7842:32583029,20920684:0 -) -(1,7843:6797234,21762172:25785795,513147,115847 -k1,7842:7704450,21762172:159450 -k1,7842:9377126,21762172:159450 -k1,7842:11863759,21762172:159450 -k1,7842:12682501,21762172:159450 -k1,7842:15224840,21762172:159450 -(1,7842:15224840,21762172:0,414482,115847 -r1,7872:15583106,21762172:358266,530329,115847 -k1,7842:15224840,21762172:-358266 -) -(1,7842:15224840,21762172:358266,414482,115847 -k1,7842:15224840,21762172:3277 -h1,7842:15579829,21762172:0,411205,112570 -) -k1,7842:15742556,21762172:159450 -k1,7842:16561298,21762172:159450 -k1,7842:17739833,21762172:159450 -k1,7842:20641309,21762172:159450 -(1,7842:20641309,21762172:0,459977,115847 -r1,7872:26275252,21762172:5633943,575824,115847 -k1,7842:20641309,21762172:-5633943 -) -(1,7842:20641309,21762172:5633943,459977,115847 -k1,7842:20641309,21762172:3277 -h1,7842:26271975,21762172:0,411205,112570 -) -k1,7842:26608372,21762172:159450 -k1,7842:27964509,21762172:159450 -k1,7842:30902686,21762172:159450 -k1,7842:32583029,21762172:0 -) -(1,7843:6797234,22603660:25785795,513147,102891 -g1,7842:7701630,22603660 -g1,7842:8560151,22603660 -g1,7842:11041999,22603660 -g1,7842:12307499,22603660 -g1,7842:13525813,22603660 -g1,7842:16081061,22603660 -k1,7843:32583029,22603660:15171587 -g1,7843:32583029,22603660 -) -v1,7845:6797234,23794126:0,393216,0 -(1,7862:6797234,31858900:25785795,8457990,196608 -g1,7862:6797234,31858900 -g1,7862:6797234,31858900 -g1,7862:6600626,31858900 -(1,7862:6600626,31858900:0,8457990,196608 -r1,7872:32779637,31858900:26179011,8654598,196608 -k1,7862:6600625,31858900:-26179012 -) -(1,7862:6600626,31858900:26179011,8457990,196608 -[1,7862:6797234,31858900:25785795,8261382,0 -(1,7847:6797234,24008036:25785795,410518,101187 -(1,7846:6797234,24008036:0,0,0 -g1,7846:6797234,24008036 -g1,7846:6797234,24008036 -g1,7846:6469554,24008036 -(1,7846:6469554,24008036:0,0,0 -) -g1,7846:6797234,24008036 -) -g1,7847:12804003,24008036 -g1,7847:13752441,24008036 -k1,7847:13752441,24008036:0 -h1,7847:15017024,24008036:0,0,0 -k1,7847:32583028,24008036:17566004 -g1,7847:32583028,24008036 -) -(1,7848:6797234,24674214:25785795,410518,101187 -h1,7848:6797234,24674214:0,0,0 -k1,7848:6797234,24674214:0 -h1,7848:14384730,24674214:0,0,0 -k1,7848:32583030,24674214:18198300 -g1,7848:32583030,24674214 -) -(1,7852:6797234,25995752:25785795,410518,107478 -g1,7852:7745671,25995752 -g1,7852:9010254,25995752 -g1,7852:12171711,25995752 -g1,7852:14384731,25995752 -g1,7852:15333168,25995752 -g1,7852:17546188,25995752 -g1,7852:19126917,25995752 -k1,7852:32583029,25995752:9978510 -g1,7852:32583029,25995752 -) -(1,7852:6797234,26661930:25785795,379060,0 -k1,7852:32583029,26661930:25153504 -g1,7852:32583029,26661930 -) -(1,7852:6797234,27328108:25785795,379060,0 -g1,7852:7745671,27328108 -g1,7852:8061817,27328108 -g1,7852:8377963,27328108 -g1,7852:8694109,27328108 -g1,7852:9010255,27328108 -k1,7852:32583029,27328108:23256628 -g1,7852:32583029,27328108 -) -(1,7853:6797234,28518574:25785795,410518,101187 -(1,7852:6797234,28518574:0,0,0 -g1,7852:6797234,28518574 -g1,7852:6797234,28518574 -g1,7852:6469554,28518574 -(1,7852:6469554,28518574:0,0,0 -) -g1,7852:6797234,28518574 -) -g1,7853:12804003,28518574 -g1,7853:13752441,28518574 -g1,7853:14700878,28518574 -g1,7853:15333170,28518574 -g1,7853:16281607,28518574 -g1,7853:16913899,28518574 -h1,7853:17230045,28518574:0,0,0 -k1,7853:32583029,28518574:15352984 -g1,7853:32583029,28518574 -) -(1,7854:6797234,29184752:25785795,410518,101187 -h1,7854:6797234,29184752:0,0,0 -k1,7854:6797234,29184752:0 -h1,7854:14384730,29184752:0,0,0 -k1,7854:32583030,29184752:18198300 -g1,7854:32583030,29184752 -) -(1,7855:6797234,29850930:25785795,410518,101187 -h1,7855:6797234,29850930:0,0,0 -g1,7855:14068586,29850930 -h1,7855:14700878,29850930:0,0,0 -k1,7855:32583030,29850930:17882152 -g1,7855:32583030,29850930 -) -(1,7861:6797234,30517108:25785795,379060,7863 -(1,7857:6797234,30517108:0,0,0 -g1,7857:6797234,30517108 -g1,7857:6797234,30517108 -g1,7857:6469554,30517108 -(1,7857:6469554,30517108:0,0,0 -) -g1,7857:6797234,30517108 -) -g1,7861:7745671,30517108 -g1,7861:8061817,30517108 -g1,7861:8377963,30517108 -g1,7861:9010255,30517108 -g1,7861:9642547,30517108 -h1,7861:9958693,30517108:0,0,0 -k1,7861:32583029,30517108:22624336 -g1,7861:32583029,30517108 -) -(1,7861:6797234,31183286:25785795,388497,9436 -h1,7861:6797234,31183286:0,0,0 -g1,7861:7745671,31183286 -g1,7861:8377963,31183286 -g1,7861:9010255,31183286 -g1,7861:9642547,31183286 -h1,7861:9958693,31183286:0,0,0 -k1,7861:32583029,31183286:22624336 -g1,7861:32583029,31183286 -) -(1,7861:6797234,31849464:25785795,388497,9436 -h1,7861:6797234,31849464:0,0,0 -g1,7861:7745671,31849464 -g1,7861:8377963,31849464 -g1,7861:9010255,31849464 -g1,7861:9642547,31849464 -h1,7861:9958693,31849464:0,0,0 -k1,7861:32583029,31849464:22624336 -g1,7861:32583029,31849464 -) -] -) -g1,7862:32583029,31858900 -g1,7862:6797234,31858900 -g1,7862:6797234,31858900 -g1,7862:32583029,31858900 -g1,7862:32583029,31858900 -) -h1,7862:6797234,32055508:0,0,0 -(1,7866:6797234,33421284:25785795,513147,126483 -h1,7865:6797234,33421284:983040,0,0 -k1,7865:9079358,33421284:150238 -k1,7865:9896752,33421284:150238 -(1,7865:9896752,33421284:0,452978,115847 -r1,7872:12717001,33421284:2820249,568825,115847 -k1,7865:9896752,33421284:-2820249 -) -(1,7865:9896752,33421284:2820249,452978,115847 -k1,7865:9896752,33421284:3277 -h1,7865:12713724,33421284:0,411205,112570 -) -k1,7865:12867239,33421284:150238 -k1,7865:14208922,33421284:150238 -(1,7865:14208922,33421284:0,452978,115847 -r1,7872:17029171,33421284:2820249,568825,115847 -k1,7865:14208922,33421284:-2820249 -) -(1,7865:14208922,33421284:2820249,452978,115847 -k1,7865:14208922,33421284:3277 -h1,7865:17025894,33421284:0,411205,112570 -) -k1,7865:17353079,33421284:150238 -k1,7865:19388789,33421284:150239 -k1,7865:22234523,33421284:150238 -k1,7865:23070923,33421284:150238 -k1,7865:23577021,33421284:150238 -k1,7865:24993415,33421284:150238 -k1,7865:25802945,33421284:150238 -k1,7865:26954524,33421284:150189 -k1,7865:28296208,33421284:150239 -k1,7865:29673886,33421284:150189 -k1,7865:32583029,33421284:0 -) -(1,7866:6797234,34262772:25785795,513147,126483 -k1,7865:8036218,34262772:134702 -k1,7865:10013791,34262772:134701 -k1,7865:10764531,34262772:134702 -k1,7865:11669936,34262772:134702 -k1,7865:14990342,34262772:134701 -k1,7865:18622045,34262772:134702 -k1,7865:19566117,34262772:134702 -k1,7865:21438834,34262772:134702 -k1,7865:23795861,34262772:134701 -k1,7865:24396524,34262772:134702 -k1,7865:25550311,34262772:134702 -k1,7865:27516088,34262772:134701 -k1,7865:31069803,34262772:134702 -k1,7866:32583029,34262772:0 -) -(1,7866:6797234,35104260:25785795,513147,126483 -(1,7865:6797234,35104260:0,452978,115847 -r1,7872:9617483,35104260:2820249,568825,115847 -k1,7865:6797234,35104260:-2820249 -) -(1,7865:6797234,35104260:2820249,452978,115847 -k1,7865:6797234,35104260:3277 -h1,7865:9614206,35104260:0,411205,112570 -) -k1,7865:9796360,35104260:178877 -k1,7865:10506734,35104260:178877 -k1,7865:13518732,35104260:178877 -k1,7865:14769779,35104260:178878 -k1,7865:16991413,35104260:178877 -(1,7865:16991413,35104260:0,452978,115847 -r1,7872:19811662,35104260:2820249,568825,115847 -k1,7865:16991413,35104260:-2820249 -) -(1,7865:16991413,35104260:2820249,452978,115847 -k1,7865:16991413,35104260:3277 -h1,7865:19808385,35104260:0,411205,112570 -) -k1,7865:19990539,35104260:178877 -k1,7865:20700913,35104260:178877 -k1,7865:22921236,35104260:178877 -k1,7865:23786275,35104260:178877 -k1,7865:26457487,35104260:178878 -k1,7865:27167861,35104260:178877 -k1,7865:28413009,35104260:178877 -k1,7865:31955194,35104260:178877 -k1,7865:32583029,35104260:0 -) -(1,7866:6797234,35945748:25785795,513147,134348 -k1,7865:9785648,35945748:183473 -(1,7865:9785648,35945748:0,452978,115847 -r1,7872:11902473,35945748:2116825,568825,115847 -k1,7865:9785648,35945748:-2116825 -) -(1,7865:9785648,35945748:2116825,452978,115847 -k1,7865:9785648,35945748:3277 -h1,7865:11899196,35945748:0,411205,112570 -) -k1,7865:12085946,35945748:183473 -k1,7865:13460864,35945748:183473 -(1,7865:13460864,35945748:0,452978,115847 -r1,7872:16281113,35945748:2820249,568825,115847 -k1,7865:13460864,35945748:-2820249 -) -(1,7865:13460864,35945748:2820249,452978,115847 -k1,7865:13460864,35945748:3277 -h1,7865:16277836,35945748:0,411205,112570 -) -k1,7865:16638256,35945748:183473 -k1,7865:18559745,35945748:183474 -k1,7865:23417246,35945748:183473 -k1,7865:26756278,35945748:183473 -k1,7865:28224257,35945748:183473 -k1,7865:30900064,35945748:183473 -k1,7865:32583029,35945748:0 -) -(1,7866:6797234,36787236:25785795,513147,134348 -k1,7865:8799687,36787236:166134 -k1,7865:13486494,36787236:166133 -k1,7865:14671713,36787236:166134 -k1,7865:16558822,36787236:166134 -k1,7865:22134952,36787236:166133 -k1,7865:22832583,36787236:166134 -k1,7865:23650145,36787236:166134 -k1,7865:25096196,36787236:166133 -k1,7865:28662338,36787236:166134 -k1,7865:29479900,36787236:166134 -k1,7865:30665118,36787236:166133 -k1,7865:31923737,36787236:166134 -k1,7866:32583029,36787236:0 -) -(1,7866:6797234,37628724:25785795,513147,126483 -(1,7865:6797234,37628724:0,452978,115847 -r1,7872:8914059,37628724:2116825,568825,115847 -k1,7865:6797234,37628724:-2116825 -) -(1,7865:6797234,37628724:2116825,452978,115847 -k1,7865:6797234,37628724:3277 -h1,7865:8910782,37628724:0,411205,112570 -) -k1,7865:9105037,37628724:190978 -k1,7865:10487459,37628724:190977 -(1,7865:10487459,37628724:0,452978,115847 -r1,7872:13307708,37628724:2820249,568825,115847 -k1,7865:10487459,37628724:-2820249 -) -(1,7865:10487459,37628724:2820249,452978,115847 -k1,7865:10487459,37628724:3277 -h1,7865:13304431,37628724:0,411205,112570 -) -k1,7865:13498686,37628724:190978 -k1,7865:15077061,37628724:190978 -(1,7865:15077061,37628724:0,452978,115847 -r1,7872:17897310,37628724:2820249,568825,115847 -k1,7865:15077061,37628724:-2820249 -) -(1,7865:15077061,37628724:2820249,452978,115847 -k1,7865:15077061,37628724:3277 -h1,7865:17894033,37628724:0,411205,112570 -) -k1,7865:18088287,37628724:190977 -k1,7865:19470710,37628724:190978 -(1,7865:19470710,37628724:0,452978,115847 -r1,7872:22290959,37628724:2820249,568825,115847 -k1,7865:19470710,37628724:-2820249 -) -(1,7865:19470710,37628724:2820249,452978,115847 -k1,7865:19470710,37628724:3277 -h1,7865:22287682,37628724:0,411205,112570 -) -k1,7865:22655607,37628724:190978 -k1,7865:23995430,37628724:190977 -k1,7865:24845700,37628724:190978 -k1,7865:26733405,37628724:190978 -k1,7865:29950179,37628724:190977 -k1,7865:31207428,37628724:190978 -k1,7865:32583029,37628724:0 -) -(1,7866:6797234,38470212:25785795,505283,134348 -g1,7865:8717438,38470212 -g1,7865:10945662,38470212 -g1,7865:12217060,38470212 -g1,7865:13702105,38470212 -g1,7865:15947368,38470212 -g1,7865:17642784,38470212 -g1,7865:19492210,38470212 -k1,7866:32583029,38470212:10196094 -g1,7866:32583029,38470212 -) -] -g1,7866:32583029,38604560 -) -h1,7866:6630773,38604560:0,0,0 -(1,7868:6630773,41412128:25952256,32768,229376 -(1,7868:6630773,41412128:0,32768,229376 -(1,7868:6630773,41412128:5505024,32768,229376 -r1,7872:12135797,41412128:5505024,262144,229376 -) -k1,7868:6630773,41412128:-5505024 -) -(1,7868:6630773,41412128:25952256,32768,0 -r1,7872:32583029,41412128:25952256,32768,0 -) -) -(1,7868:6630773,43016456:25952256,615776,161218 -(1,7868:6630773,43016456:1974731,575668,14155 -g1,7868:6630773,43016456 -g1,7868:8605504,43016456 -) -g1,7868:12976493,43016456 -g1,7868:14686196,43016456 -g1,7868:17688794,43016456 -g1,7868:19627349,43016456 -k1,7868:32583029,43016456:10213391 -g1,7868:32583029,43016456 -) -(1,7872:6630773,44251160:25952256,505283,126483 -k1,7871:7646963,44251160:198301 -k1,7871:11262967,44251160:198301 -k1,7871:13490263,44251160:198301 -k1,7871:14304602,44251160:198301 -k1,7871:16104603,44251160:198301 -k1,7871:18000286,44251160:198301 -k1,7871:18814626,44251160:198302 -k1,7871:19427769,44251160:198300 -k1,7871:21015433,44251160:198301 -k1,7871:22747932,44251160:198301 -k1,7871:25987759,44251160:198301 -k1,7871:30529131,44251160:198301 -k1,7871:32583029,44251160:0 -) -(1,7872:6630773,45092648:25952256,513147,134348 -k1,7871:7605876,45092648:292218 -k1,7871:11969845,45092648:292217 -k1,7871:14905785,45092648:292218 -k1,7871:16007372,45092648:292217 -k1,7871:18970837,45092648:292218 -k1,7871:22136808,45092648:292217 -k1,7871:25270667,45092648:292218 -k1,7871:26754329,45092648:292217 -k1,7871:29270839,45092648:292218 -k1,7871:32583029,45092648:0 -) -] -(1,7872:32583029,45706769:0,0,0 -g1,7872:32583029,45706769 -) -) -] -(1,7872:6630773,47279633:25952256,0,0 -h1,7872:6630773,47279633:25952256,0,0 -) -] -(1,7872:4262630,4025873:0,0,0 -[1,7872:-473656,4025873:0,0,0 -(1,7872:-473656,-710413:0,0,0 -(1,7872:-473656,-710413:0,0,0 -g1,7872:-473656,-710413 +[1,6909:3078558,4812305:0,0,0 +(1,6909:3078558,49800853:0,16384,2228224 +k1,6909:1358238,49800853:-1720320 +(1,6148:1358238,49800853:1720320,16384,2228224 +(1,6148:1358238,49800853:1179648,16384,0 +r1,6909:2537886,49800853:1179648,16384,0 ) -g1,7872:-473656,-710413 -) -] +g1,6148:3062174,49800853 +(1,6148:3062174,52029077:16384,1703936,0 +[1,6148:3062174,52029077:25952256,1703936,0 +(1,6148:3062174,51504789:25952256,1179648,0 +(1,6148:3062174,51504789:16384,1179648,0 +r1,6909:3078558,51504789:16384,1179648,0 +) +k1,6148:29014430,51504789:25935872 +g1,6148:29014430,51504789 ) ] -!25196 -}128 -Input:1068:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1069:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1070:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1071:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1072:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1073:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1074:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!670 -{129 -[1,7925:4262630,47279633:28320399,43253760,0 -(1,7925:4262630,4025873:0,0,0 -[1,7925:-473656,4025873:0,0,0 -(1,7925:-473656,-710413:0,0,0 -(1,7925:-473656,-644877:0,0,0 -k1,7925:-473656,-644877:-65536 ) -(1,7925:-473656,4736287:0,0,0 -k1,7925:-473656,4736287:5209943 ) -g1,7925:-473656,-710413 ) ] +[1,6909:3078558,4812305:0,0,0 +(1,6909:3078558,49800853:0,16384,2228224 +g1,6909:29030814,49800853 +g1,6909:36135244,49800853 +(1,6148:36135244,49800853:1720320,16384,2228224 +(1,6148:36135244,52029077:16384,1703936,0 +[1,6148:36135244,52029077:25952256,1703936,0 +(1,6148:36135244,51504789:25952256,1179648,0 +(1,6148:36135244,51504789:16384,1179648,0 +r1,6909:36151628,51504789:16384,1179648,0 ) -[1,7925:6630773,47279633:25952256,43253760,0 -[1,7925:6630773,4812305:25952256,786432,0 -(1,7925:6630773,4812305:25952256,505283,11795 -(1,7925:6630773,4812305:25952256,505283,11795 -g1,7925:3078558,4812305 -[1,7925:3078558,4812305:0,0,0 -(1,7925:3078558,2439708:0,1703936,0 -k1,7925:1358238,2439708:-1720320 -(1,5950:1358238,2439708:1720320,1703936,0 -(1,5950:1358238,2439708:1179648,16384,0 -r1,7925:2537886,2439708:1179648,16384,0 -) -g1,5950:3062174,2439708 -(1,5950:3062174,2439708:16384,1703936,0 -[1,5950:3062174,2439708:25952256,1703936,0 -(1,5950:3062174,1915420:25952256,1179648,0 -(1,5950:3062174,1915420:16384,1179648,0 -r1,7925:3078558,1915420:16384,1179648,0 -) -k1,5950:29014430,1915420:25935872 -g1,5950:29014430,1915420 +k1,6148:62087500,51504789:25935872 +g1,6148:62087500,51504789 ) ] ) +g1,6148:36675916,49800853 +(1,6148:36675916,49800853:1179648,16384,0 +r1,6909:37855564,49800853:1179648,16384,0 +) ) +k1,6909:3078556,49800853:-34777008 ) ] -[1,7925:3078558,4812305:0,0,0 -(1,7925:3078558,2439708:0,1703936,0 -g1,7925:29030814,2439708 -g1,7925:36135244,2439708 -(1,5950:36135244,2439708:1720320,1703936,0 -(1,5950:36135244,2439708:16384,1703936,0 -[1,5950:36135244,2439708:25952256,1703936,0 -(1,5950:36135244,1915420:25952256,1179648,0 -(1,5950:36135244,1915420:16384,1179648,0 -r1,7925:36151628,1915420:16384,1179648,0 +g1,6909:6630773,4812305 +k1,6909:24358919,4812305:16931228 +g1,6909:25981590,4812305 +g1,6909:26804066,4812305 +g1,6909:30302377,4812305 ) -k1,5950:62087500,1915420:25935872 -g1,5950:62087500,1915420 ) ] +[1,6909:6630773,45706769:25952256,40108032,0 +(1,6909:6630773,45706769:25952256,40108032,0 +(1,6909:6630773,45706769:0,0,0 +g1,6909:6630773,45706769 ) -g1,5950:36675916,2439708 -(1,5950:36675916,2439708:1179648,16384,0 -r1,7925:37855564,2439708:1179648,16384,0 +[1,6909:6630773,45706769:25952256,40108032,0 +(1,6823:6630773,14707397:25952256,9108660,0 +k1,6823:9819607,14707397:3188834 +(1,6790:9819607,14707397:0,0,0 +g1,6790:9819607,14707397 +g1,6790:9819607,14707397 +g1,6790:9491927,14707397 +(1,6790:9491927,14707397:0,0,0 ) +g1,6790:9819607,14707397 ) -k1,7925:3078556,2439708:-34777008 +(1,6821:9819607,14707397:19574589,9108660,0 +g1,6821:15470864,14707397 +(1,6821:15470864,9972790:0,0,0 +(1,6803:15470864,9972790:0,0,0 +g1,6801:15470864,9972790 +g1,6802:15470864,9972790 +g1,6802:15470864,9972790 +g1,6802:15470864,9972790 +g1,6802:15470864,9972790 +g1,6803:15470864,9972790 ) -] -[1,7925:3078558,4812305:0,0,0 -(1,7925:3078558,49800853:0,16384,2228224 -k1,7925:1358238,49800853:-1720320 -(1,5950:1358238,49800853:1720320,16384,2228224 -(1,5950:1358238,49800853:1179648,16384,0 -r1,7925:2537886,49800853:1179648,16384,0 +(1,6821:15470864,9972790:0,0,0 +g1,6795:15470864,9972790 +(1,6799:15470864,9972790:0,0,0 +(1,6799:15470864,9972790:0,0,0 +g1,6799:15470864,9972790 +g1,6799:15470864,9972790 +g1,6799:15470864,9972790 +g1,6799:15470864,9972790 +g1,6799:15470864,9972790 +(1,6799:15470864,9972790:0,0,0 +(1,6799:15470864,9972790:6983284,1035058,187851 +[1,6799:15470864,9972790:6983284,1035058,187851 +(1,6799:15470864,9500972:6983284,563240,184180 +g1,6798:15470864,9500972 +(1,6798:15470864,9500972:1120190,563240,184180 +k1,6798:16250373,9500972:779509 +g1,6798:16591054,9500972 +(1,6798:16591054,9500972:0,563240,174744 +(1,6798:16591054,9500972:0,0,0 +(1,6798:16591054,9500972:0,0,0 +g1,6798:16591054,9500972 +g1,6798:16591054,9500972 +g1,6798:16591054,9500972 +g1,6798:16591054,9500972 +g1,6798:16591054,9500972 +(1,6798:16591054,9500972:0,0,0 +(1,6798:16591054,9500972:331874,388497,0 +(1,6798:16591054,9500972:331874,388497,0 +) +g1,6798:16922928,9500972 ) -g1,5950:3062174,49800853 -(1,5950:3062174,52029077:16384,1703936,0 -[1,5950:3062174,52029077:25952256,1703936,0 -(1,5950:3062174,51504789:25952256,1179648,0 -(1,5950:3062174,51504789:16384,1179648,0 -r1,7925:3078558,51504789:16384,1179648,0 ) -k1,5950:29014430,51504789:25935872 -g1,5950:29014430,51504789 +g1,6798:16591054,9500972 +g1,6798:16591054,9500972 ) -] ) +g1,6798:16591054,9500972 ) ) -] -[1,7925:3078558,4812305:0,0,0 -(1,7925:3078558,49800853:0,16384,2228224 -g1,7925:29030814,49800853 -g1,7925:36135244,49800853 -(1,5950:36135244,49800853:1720320,16384,2228224 -(1,5950:36135244,52029077:16384,1703936,0 -[1,5950:36135244,52029077:25952256,1703936,0 -(1,5950:36135244,51504789:25952256,1179648,0 -(1,5950:36135244,51504789:16384,1179648,0 -r1,7925:36151628,51504789:16384,1179648,0 -) -k1,5950:62087500,51504789:25935872 -g1,5950:62087500,51504789 -) -] -) -g1,5950:36675916,49800853 -(1,5950:36675916,49800853:1179648,16384,0 -r1,7925:37855564,49800853:1179648,16384,0 -) -) -k1,7925:3078556,49800853:-34777008 -) -] -g1,7925:6630773,4812305 -k1,7925:24358918,4812305:16532768 -g1,7925:25981589,4812305 -g1,7925:26804065,4812305 -g1,7925:30302376,4812305 -) -) -] -[1,7925:6630773,45706769:25952256,40108032,0 -(1,7925:6630773,45706769:25952256,40108032,0 -(1,7925:6630773,45706769:0,0,0 -g1,7925:6630773,45706769 -) -[1,7925:6630773,45706769:25952256,40108032,0 -(1,7872:6630773,6254097:25952256,505283,134348 -k1,7871:10294367,6254097:276693 -k1,7871:11640608,6254097:276693 -k1,7871:13306009,6254097:276693 -k1,7871:15625459,6254097:276693 -k1,7871:18836854,6254097:276693 -k1,7871:20811584,6254097:276692 -k1,7871:25761649,6254097:276693 -k1,7871:27029902,6254097:276693 -k1,7871:30091220,6254097:276693 -k1,7871:30983951,6254097:276693 -k1,7871:32583029,6254097:0 -) -(1,7872:6630773,7095585:25952256,513147,126483 -k1,7871:9583097,7095585:239133 -k1,7871:11773893,7095585:239134 -k1,7871:15318007,7095585:239133 -k1,7871:18598666,7095585:239133 -k1,7871:22909552,7095585:239134 -k1,7871:23807977,7095585:239133 -k1,7871:25066195,7095585:239133 -k1,7871:26958802,7095585:239134 -k1,7871:30071689,7095585:239133 -k1,7871:32583029,7095585:0 -) -(1,7872:6630773,7937073:25952256,513147,134348 -k1,7871:7490223,7937073:246688 -k1,7871:10499255,7937073:246689 -k1,7871:12675323,7937073:246688 -k1,7871:13991559,7937073:246688 -k1,7871:15728537,7937073:246689 -k1,7871:18017982,7937073:246688 -k1,7871:20081328,7937073:246688 -k1,7871:22025399,7937073:246689 -k1,7871:23772861,7937073:246688 -k1,7871:25938443,7937073:246688 -k1,7871:29332826,7937073:246689 -k1,7871:30111011,7937073:246688 -k1,7871:32583029,7937073:0 -) -(1,7872:6630773,8778561:25952256,513147,134348 -k1,7871:9647667,8778561:227026 -(1,7871:9647667,8778561:0,452978,115847 -r1,7925:12819627,8778561:3171960,568825,115847 -k1,7871:9647667,8778561:-3171960 -) -(1,7871:9647667,8778561:3171960,452978,115847 -k1,7871:9647667,8778561:3277 -h1,7871:12816350,8778561:0,411205,112570 -) -k1,7871:13046653,8778561:227026 -k1,7871:14377961,8778561:227026 -k1,7871:16997706,8778561:227026 -k1,7871:18715021,8778561:227026 -k1,7871:20331411,8778561:227027 -k1,7871:22765034,8778561:227026 -k1,7871:24259526,8778561:227026 -k1,7871:25875260,8778561:227026 -k1,7871:27491649,8778561:227026 -k1,7871:29925272,8778561:227026 -k1,7871:31343743,8778561:227026 -k1,7871:32583029,8778561:0 -) -(1,7872:6630773,9620049:25952256,355205,7863 -k1,7872:32583028,9620049:24099552 -g1,7872:32583028,9620049 -) -v1,7874:6630773,10725620:0,393216,0 -(1,7878:6630773,11034425:25952256,702021,196608 -g1,7878:6630773,11034425 -g1,7878:6630773,11034425 -g1,7878:6434165,11034425 -(1,7878:6434165,11034425:0,702021,196608 -r1,7925:32779637,11034425:26345472,898629,196608 -k1,7878:6434165,11034425:-26345472 -) -(1,7878:6434165,11034425:26345472,702021,196608 -[1,7878:6630773,11034425:25952256,505413,0 -(1,7876:6630773,10933238:25952256,404226,101187 -(1,7875:6630773,10933238:0,0,0 -g1,7875:6630773,10933238 -g1,7875:6630773,10933238 -g1,7875:6303093,10933238 -(1,7875:6303093,10933238:0,0,0 -) -g1,7875:6630773,10933238 -) -g1,7876:7579210,10933238 -g1,7876:10740667,10933238 -g1,7876:13269833,10933238 -k1,7876:13269833,10933238:39846 -h1,7876:15206553,10933238:0,0,0 -k1,7876:32583029,10933238:17376476 -g1,7876:32583029,10933238 -) -] -) -g1,7878:32583029,11034425 -g1,7878:6630773,11034425 -g1,7878:6630773,11034425 -g1,7878:32583029,11034425 -g1,7878:32583029,11034425 -) -h1,7878:6630773,11231033:0,0,0 -(1,7886:6630773,12511914:25952256,505283,126483 -h1,7885:6630773,12511914:983040,0,0 -k1,7885:10622190,12511914:280113 -(1,7885:10622190,12511914:0,452978,115847 -r1,7925:12739015,12511914:2116825,568825,115847 -k1,7885:10622190,12511914:-2116825 -) -(1,7885:10622190,12511914:2116825,452978,115847 -k1,7885:10622190,12511914:3277 -h1,7885:12735738,12511914:0,411205,112570 -) -k1,7885:13192799,12511914:280114 -(1,7885:13192799,12511914:0,452978,115847 -r1,7925:15309624,12511914:2116825,568825,115847 -k1,7885:13192799,12511914:-2116825 -) -(1,7885:13192799,12511914:2116825,452978,115847 -k1,7885:13192799,12511914:3277 -h1,7885:15306347,12511914:0,411205,112570 -) -k1,7885:15589737,12511914:280113 -k1,7885:17061296,12511914:280114 -(1,7885:17061296,12511914:0,459977,115847 -r1,7925:18826409,12511914:1765113,575824,115847 -k1,7885:17061296,12511914:-1765113 -) -(1,7885:17061296,12511914:1765113,459977,115847 -k1,7885:17061296,12511914:3277 -h1,7885:18823132,12511914:0,411205,112570 -) -k1,7885:19106522,12511914:280113 -k1,7885:20378196,12511914:280114 -k1,7885:22171535,12511914:280113 -k1,7885:26378566,12511914:280114 -k1,7885:27310107,12511914:280113 -k1,7885:29885292,12511914:280114 -k1,7885:31356850,12511914:280113 -k1,7886:32583029,12511914:0 -) -(1,7886:6630773,13353402:25952256,513147,134348 -k1,7885:7279220,13353402:233604 -k1,7885:9976356,13353402:233638 -k1,7885:11627538,13353402:233638 -k1,7885:13007401,13353402:233638 -k1,7885:15665217,13353402:233639 -k1,7885:17090300,13353402:233638 -k1,7885:18343023,13353402:233638 -k1,7885:19669146,13353402:233638 -k1,7885:20562077,13353402:233639 -k1,7885:22957092,13353402:233638 -k1,7885:24665945,13353402:233638 -k1,7885:26643497,13353402:233639 -k1,7885:27896220,13353402:233638 -k1,7885:31490544,13353402:233638 -k1,7885:32583029,13353402:0 -) -(1,7886:6630773,14194890:25952256,513147,126483 -k1,7885:7575508,14194890:277579 -k1,7885:8267852,14194890:277501 -k1,7885:9158193,14194890:277579 -k1,7885:10454857,14194890:277579 -k1,7885:13152682,14194890:277580 -k1,7885:14643332,14194890:277579 -k1,7885:17833331,14194890:277579 -(1,7885:17833331,14194890:0,452978,115847 -r1,7925:19950156,14194890:2116825,568825,115847 -k1,7885:17833331,14194890:-2116825 -) -(1,7885:17833331,14194890:2116825,452978,115847 -k1,7885:17833331,14194890:3277 -h1,7885:19946879,14194890:0,411205,112570 -) -k1,7885:20401405,14194890:277579 -(1,7885:20401405,14194890:0,452978,115847 -r1,7925:22518230,14194890:2116825,568825,115847 -k1,7885:20401405,14194890:-2116825 -) -(1,7885:20401405,14194890:2116825,452978,115847 -k1,7885:20401405,14194890:3277 -h1,7885:22514953,14194890:0,411205,112570 -) -k1,7885:22795810,14194890:277580 -k1,7885:24264834,14194890:277579 -(1,7885:24264834,14194890:0,459977,115847 -r1,7925:26029947,14194890:1765113,575824,115847 -k1,7885:24264834,14194890:-1765113 -) -(1,7885:24264834,14194890:1765113,459977,115847 -k1,7885:24264834,14194890:3277 -h1,7885:26026670,14194890:0,411205,112570 -) -k1,7885:26307526,14194890:277579 -k1,7885:27576666,14194890:277580 -k1,7885:30404906,14194890:277579 -k1,7885:31298523,14194890:277579 -k1,7885:32583029,14194890:0 -) -(1,7886:6630773,15036378:25952256,513147,134348 -k1,7885:8303645,15036378:164233 -k1,7885:11880338,15036378:164233 -k1,7885:14254445,15036378:164233 -k1,7885:16684258,15036378:164233 -k1,7885:20251119,15036378:164232 -k1,7885:21406912,15036378:164233 -k1,7885:24961978,15036378:164233 -k1,7885:25935581,15036378:164233 -k1,7885:27118899,15036378:164233 -k1,7885:30337110,15036378:164233 -k1,7885:32583029,15036378:0 -) -(1,7886:6630773,15877866:25952256,513147,126483 -k1,7885:9047133,15877866:206486 -k1,7885:10340854,15877866:206479 -k1,7885:12114961,15877866:206486 -k1,7885:14331436,15877866:206486 -k1,7885:16423394,15877866:206487 -k1,7885:17044716,15877866:206479 -k1,7885:17782699,15877866:206486 -k1,7885:20419260,15877866:206486 -k1,7885:22899190,15877866:206486 -k1,7885:23637173,15877866:206486 -k1,7885:24909930,15877866:206486 -k1,7885:27874827,15877866:206487 -k1,7885:29028964,15877866:206486 -k1,7885:30438691,15877866:206486 -k1,7885:32583029,15877866:0 -) -(1,7886:6630773,16719354:25952256,513147,126483 -k1,7885:7499343,16719354:182408 -k1,7885:8700837,16719354:182409 -k1,7885:9975730,16719354:182408 -k1,7885:10817431,16719354:182409 -k1,7885:12696566,16719354:182408 -k1,7885:15904772,16719354:182409 -k1,7885:18709275,16719354:182408 -k1,7885:20272528,16719354:182409 -k1,7885:24094150,16719354:182408 -k1,7885:26411722,16719354:182409 -k1,7885:27712174,16719354:182408 -k1,7885:29591310,16719354:182409 -k1,7885:32583029,16719354:0 -) -(1,7886:6630773,17560842:25952256,505283,11795 -g1,7885:7446040,17560842 -g1,7885:8060112,17560842 -g1,7885:9450786,17560842 -g1,7885:10266053,17560842 -g1,7885:11235985,17560842 -g1,7885:12522456,17560842 -g1,7885:13867910,17560842 -k1,7886:32583029,17560842:16117272 -g1,7886:32583029,17560842 -) -v1,7888:6630773,18666413:0,393216,0 -(1,7893:6630773,19616230:25952256,1343033,196608 -g1,7893:6630773,19616230 -g1,7893:6630773,19616230 -g1,7893:6434165,19616230 -(1,7893:6434165,19616230:0,1343033,196608 -r1,7925:32779637,19616230:26345472,1539641,196608 -k1,7893:6434165,19616230:-26345472 -) -(1,7893:6434165,19616230:26345472,1343033,196608 -[1,7893:6630773,19616230:25952256,1146425,0 -(1,7890:6630773,18874031:25952256,404226,76021 -(1,7889:6630773,18874031:0,0,0 -g1,7889:6630773,18874031 -g1,7889:6630773,18874031 -g1,7889:6303093,18874031 -(1,7889:6303093,18874031:0,0,0 -) -g1,7889:6630773,18874031 -) -k1,7890:6630773,18874031:0 -h1,7890:9792230,18874031:0,0,0 -k1,7890:32583030,18874031:22790800 -g1,7890:32583030,18874031 -) -(1,7891:6630773,19540209:25952256,404226,76021 -h1,7891:6630773,19540209:0,0,0 -k1,7891:6630773,19540209:0 -h1,7891:9792230,19540209:0,0,0 -k1,7891:32583030,19540209:22790800 -g1,7891:32583030,19540209 -) -] -) -g1,7893:32583029,19616230 -g1,7893:6630773,19616230 -g1,7893:6630773,19616230 -g1,7893:32583029,19616230 -g1,7893:32583029,19616230 -) -h1,7893:6630773,19812838:0,0,0 -(1,7896:6630773,23059800:25952256,32768,229376 -(1,7896:6630773,23059800:0,32768,229376 -(1,7896:6630773,23059800:5505024,32768,229376 -r1,7925:12135797,23059800:5505024,262144,229376 -) -k1,7896:6630773,23059800:-5505024 -) -(1,7896:6630773,23059800:25952256,32768,0 -r1,7925:32583029,23059800:25952256,32768,0 -) -) -(1,7896:6630773,24664128:25952256,615776,161218 -(1,7896:6630773,24664128:1974731,582746,14155 -g1,7896:6630773,24664128 -g1,7896:8605504,24664128 -) -g1,7896:12884481,24664128 -g1,7896:13957174,24664128 -g1,7896:14745179,24664128 -k1,7896:32583029,24664128:14984675 -g1,7896:32583029,24664128 -) -(1,7900:6630773,25898832:25952256,505283,134348 -k1,7899:7283094,25898832:237478 -k1,7899:9810439,25898832:237517 -k1,7899:11152237,25898832:237516 -k1,7899:12864969,25898832:237517 -k1,7899:16385183,25898832:237516 -k1,7899:19863455,25898832:237517 -k1,7899:21092531,25898832:237516 -k1,7899:23488804,25898832:237517 -k1,7899:25243478,25898832:237516 -k1,7899:28325913,25898832:237517 -k1,7899:30076655,25898832:237516 -k1,7899:30965600,25898832:237517 -k1,7899:32583029,25898832:0 -) -(1,7900:6630773,26740320:25952256,505283,134348 -k1,7899:9649525,26740320:297697 -k1,7899:11336585,26740320:297697 -k1,7899:13127848,26740320:297697 -k1,7899:14111707,26740320:297697 -k1,7899:16368930,26740320:297697 -k1,7899:20136104,26740320:297698 -k1,7899:22266188,26740320:297697 -k1,7899:23555445,26740320:297697 -k1,7899:24662512,26740320:297697 -k1,7899:28604011,26740320:297697 -k1,7899:29711078,26740320:297697 -k1,7899:31027860,26740320:297697 -k1,7899:32583029,26740320:0 -) -(1,7900:6630773,27581808:25952256,513147,134348 -k1,7899:7528291,27581808:238226 -k1,7899:9315133,27581808:238226 -k1,7899:10084855,27581808:238225 -k1,7899:13097875,27581808:238226 -k1,7899:13987529,27581808:238226 -k1,7899:14996458,27581808:238226 -k1,7899:18187080,27581808:238225 -k1,7899:19983097,27581808:238226 -k1,7899:21212883,27581808:238226 -k1,7899:22964335,27581808:238226 -k1,7899:23964088,27581808:238225 -k1,7899:24617118,27581808:238187 -k1,7899:26460976,27581808:238226 -k1,7899:27350629,27581808:238225 -k1,7899:29206284,27581808:238226 -k1,7899:31436804,27581808:238226 -k1,7899:32583029,27581808:0 -) -(1,7900:6630773,28423296:25952256,513147,7863 -k1,7899:9247424,28423296:233762 -k1,7899:11549502,28423296:233762 -k1,7899:12399302,28423296:233762 -k1,7899:14022427,28423296:233762 -k1,7899:16462786,28423296:233762 -k1,7899:17887993,28423296:233762 -k1,7899:19965937,28423296:233761 -k1,7899:20858991,28423296:233762 -k1,7899:22986743,28423296:233762 -k1,7899:25186585,28423296:233762 -k1,7899:26318190,28423296:233762 -k1,7899:28248679,28423296:233762 -k1,7899:31591469,28423296:233762 -k1,7899:32583029,28423296:0 -) -(1,7900:6630773,29264784:25952256,505283,134348 -k1,7899:8837773,29264784:164243 -k1,7899:9653444,29264784:164243 -k1,7899:11198531,29264784:164243 -k1,7899:13032632,29264784:164244 -k1,7899:14388320,29264784:164243 -k1,7899:15933407,29264784:164243 -k1,7899:17593837,29264784:164243 -k1,7899:18862362,29264784:164243 -k1,7899:20438906,29264784:164243 -k1,7899:21794595,29264784:164244 -k1,7899:23573645,29264784:164243 -k1,7899:26201386,29264784:164243 -k1,7899:29648327,29264784:164243 -k1,7899:32583029,29264784:0 -) -(1,7900:6630773,30106272:25952256,505283,134348 -k1,7899:8159634,30106272:148673 -k1,7899:9299867,30106272:148673 -k1,7899:11294689,30106272:148673 -k1,7899:14506515,30106272:148673 -k1,7899:17552535,30106272:148673 -k1,7899:19399246,30106272:148673 -k1,7899:20318622,30106272:148673 -k1,7899:22426822,30106272:148674 -k1,7899:23106992,30106272:148673 -k1,7899:25779456,30106272:148673 -k1,7899:27485920,30106272:148673 -k1,7899:28738875,30106272:148673 -k1,7899:29635314,30106272:148673 -k1,7899:31069803,30106272:148673 -k1,7899:32583029,30106272:0 -) -(1,7900:6630773,30947760:25952256,505283,134348 -k1,7899:7493937,30947760:211736 -k1,7899:9323102,30947760:211736 -k1,7899:12504274,30947760:211736 -k1,7899:17296320,30947760:211735 -k1,7899:18527141,30947760:211736 -k1,7899:20128240,30947760:211736 -k1,7899:22378146,30947760:211736 -k1,7899:23205920,30947760:211736 -k1,7899:24188359,30947760:211736 -k1,7899:26533291,30947760:211735 -k1,7899:28630498,30947760:211736 -k1,7899:29373731,30947760:211736 -k1,7899:32583029,30947760:0 -) -(1,7900:6630773,31789248:25952256,513147,134348 -g1,7899:7777653,31789248 -g1,7899:12039459,31789248 -g1,7899:14944670,31789248 -g1,7899:16335344,31789248 -g1,7899:17923936,31789248 -k1,7900:32583029,31789248:12105810 -g1,7900:32583029,31789248 -) -(1,7902:6630773,32630736:25952256,505283,134348 -h1,7901:6630773,32630736:983040,0,0 -k1,7901:10862433,32630736:285737 -k1,7901:12016522,32630736:285737 -k1,7901:14148408,32630736:285737 -k1,7901:15964410,32630736:285736 -k1,7901:16901575,32630736:285737 -k1,7901:18121855,32630736:285737 -k1,7901:19090477,32630736:285737 -k1,7901:21580190,32630736:285737 -k1,7901:23876572,32630736:285737 -k1,7901:26200478,32630736:285736 -k1,7901:27102253,32630736:285737 -k1,7901:30497018,32630736:285737 -k1,7902:32583029,32630736:0 -) -(1,7902:6630773,33472224:25952256,513147,134348 -k1,7901:8099955,33472224:271184 -k1,7901:10122916,33472224:271184 -k1,7901:11053391,33472224:271183 -k1,7901:12343660,33472224:271184 -k1,7901:15220555,33472224:271184 -k1,7901:16158895,33472224:271184 -k1,7901:16844849,33472224:271111 -k1,7901:18400539,33472224:271184 -k1,7901:19540075,33472224:271184 -k1,7901:21163922,33472224:271184 -k1,7901:22382757,33472224:271184 -k1,7901:25112195,33472224:271183 -k1,7901:26374939,33472224:271184 -k1,7901:30847636,33472224:271184 -k1,7901:32583029,33472224:0 -) -(1,7902:6630773,34313712:25952256,513147,7863 -k1,7901:10133344,34313712:219873 -k1,7901:13066409,34313712:219874 -k1,7901:15354598,34313712:219873 -k1,7901:16190509,34313712:219873 -k1,7901:17799745,34313712:219873 -k1,7901:20226216,34313712:219874 -k1,7901:21437649,34313712:219873 -k1,7901:23695692,34313712:219873 -k1,7901:24531603,34313712:219873 -k1,7901:25522180,34313712:219874 -k1,7901:28694450,34313712:219873 -k1,7901:31591469,34313712:219873 -k1,7901:32583029,34313712:0 -) -(1,7902:6630773,35155200:25952256,505283,7863 -g1,7901:9138180,35155200 -g1,7901:10731360,35155200 -g1,7901:14157582,35155200 -k1,7902:32583029,35155200:15142749 -g1,7902:32583029,35155200 -) -v1,7904:6630773,36260771:0,393216,0 -(1,7919:6630773,42546304:25952256,6678749,196608 -g1,7919:6630773,42546304 -g1,7919:6630773,42546304 -g1,7919:6434165,42546304 -(1,7919:6434165,42546304:0,6678749,196608 -r1,7925:32779637,42546304:26345472,6875357,196608 -k1,7919:6434165,42546304:-26345472 -) -(1,7919:6434165,42546304:26345472,6678749,196608 -[1,7919:6630773,42546304:25952256,6482141,0 -(1,7906:6630773,36474681:25952256,410518,101187 -(1,7905:6630773,36474681:0,0,0 -g1,7905:6630773,36474681 -g1,7905:6630773,36474681 -g1,7905:6303093,36474681 -(1,7905:6303093,36474681:0,0,0 -) -g1,7905:6630773,36474681 -) -g1,7906:8211502,36474681 -g1,7906:9159940,36474681 -g1,7906:13269835,36474681 -g1,7906:13902127,36474681 -g1,7906:15482857,36474681 -g1,7906:16115149,36474681 -g1,7906:16747441,36474681 -g1,7906:18960462,36474681 -g1,7906:20857337,36474681 -g1,7906:21489629,36474681 -g1,7906:22121921,36474681 -g1,7906:24651088,36474681 -g1,7906:26864108,36474681 -h1,7906:28128690,36474681:0,0,0 -k1,7906:32583029,36474681:4454339 -g1,7906:32583029,36474681 -) -(1,7907:6630773,37140859:25952256,410518,76021 -h1,7907:6630773,37140859:0,0,0 -k1,7907:6630773,37140859:0 -h1,7907:11689104,37140859:0,0,0 -k1,7907:32583028,37140859:20893924 -g1,7907:32583028,37140859 -) -(1,7918:6630773,37807037:25952256,410518,31456 -(1,7909:6630773,37807037:0,0,0 -g1,7909:6630773,37807037 -g1,7909:6630773,37807037 -g1,7909:6303093,37807037 -(1,7909:6303093,37807037:0,0,0 -) -g1,7909:6630773,37807037 -) -g1,7918:7579210,37807037 -h1,7918:9476084,37807037:0,0,0 -k1,7918:32583028,37807037:23106944 -g1,7918:32583028,37807037 -) -(1,7918:6630773,38473215:25952256,404226,101187 -h1,7918:6630773,38473215:0,0,0 -g1,7918:7579210,38473215 -g1,7918:8843793,38473215 -g1,7918:10108376,38473215 -g1,7918:11372959,38473215 -h1,7918:12321396,38473215:0,0,0 -k1,7918:32583028,38473215:20261632 -g1,7918:32583028,38473215 -) -(1,7918:6630773,39139393:25952256,379060,0 -h1,7918:6630773,39139393:0,0,0 -h1,7918:7263064,39139393:0,0,0 -k1,7918:32583028,39139393:25319964 -g1,7918:32583028,39139393 -) -(1,7918:6630773,39805571:25952256,410518,31456 -h1,7918:6630773,39805571:0,0,0 -g1,7918:7579210,39805571 -h1,7918:9476084,39805571:0,0,0 -k1,7918:32583028,39805571:23106944 -g1,7918:32583028,39805571 -) -(1,7918:6630773,40471749:25952256,410518,76021 -h1,7918:6630773,40471749:0,0,0 -g1,7918:7579210,40471749 -g1,7918:8843793,40471749 -h1,7918:12637541,40471749:0,0,0 -k1,7918:32583029,40471749:19945488 -g1,7918:32583029,40471749 -) -(1,7918:6630773,41137927:25952256,379060,0 -h1,7918:6630773,41137927:0,0,0 -h1,7918:7263064,41137927:0,0,0 -k1,7918:32583028,41137927:25319964 -g1,7918:32583028,41137927 -) -(1,7918:6630773,41804105:25952256,410518,31456 -h1,7918:6630773,41804105:0,0,0 -g1,7918:7579210,41804105 -h1,7918:10740667,41804105:0,0,0 -k1,7918:32583029,41804105:21842362 -g1,7918:32583029,41804105 -) -(1,7918:6630773,42470283:25952256,404226,76021 -h1,7918:6630773,42470283:0,0,0 -g1,7918:7579210,42470283 -g1,7918:8843793,42470283 -g1,7918:9476085,42470283 -g1,7918:10108377,42470283 -g1,7918:10740669,42470283 -g1,7918:11372961,42470283 -g1,7918:12005253,42470283 -h1,7918:12321399,42470283:0,0,0 -k1,7918:32583029,42470283:20261630 -g1,7918:32583029,42470283 -) -] -) -g1,7919:32583029,42546304 -g1,7919:6630773,42546304 -g1,7919:6630773,42546304 -g1,7919:32583029,42546304 -g1,7919:32583029,42546304 -) -h1,7919:6630773,42742912:0,0,0 -(1,7923:6630773,44023793:25952256,505283,134348 -h1,7922:6630773,44023793:983040,0,0 -k1,7922:10692794,44023793:168527 -(1,7922:10692794,44023793:0,452978,115847 -r1,7925:13864754,44023793:3171960,568825,115847 -k1,7922:10692794,44023793:-3171960 -) -(1,7922:10692794,44023793:3171960,452978,115847 -k1,7922:10692794,44023793:3277 -h1,7922:13861477,44023793:0,411205,112570 -) -k1,7922:14033281,44023793:168527 -k1,7922:14733305,44023793:168527 -k1,7922:16896748,44023793:168527 -k1,7922:17716703,44023793:168527 -k1,7922:18632996,44023793:168527 -k1,7922:19736065,44023793:168526 -k1,7922:20666120,44023793:168527 -k1,7922:22545792,44023793:168527 -k1,7922:23365747,44023793:168527 -k1,7922:25151703,44023793:168527 -k1,7922:25676090,44023793:168527 -k1,7922:28819296,44023793:168527 -k1,7922:32583029,44023793:0 -) -(1,7923:6630773,44865281:25952256,513147,134348 -k1,7922:7484556,44865281:202355 -k1,7922:9304340,44865281:202355 -k1,7922:12476130,44865281:202354 -k1,7922:13364647,44865281:202355 -k1,7922:14793181,44865281:202355 -k1,7922:17675959,44865281:202355 -k1,7922:19272264,44865281:202354 -k1,7922:21037653,44865281:202355 -k1,7922:22057897,44865281:202355 -k1,7922:25577684,44865281:202355 -k1,7922:26771598,44865281:202354 -k1,7922:30278934,44865281:202355 -k1,7922:32168186,44865281:202355 -k1,7923:32583029,44865281:0 -) -(1,7923:6630773,45706769:25952256,513147,134348 -g1,7922:7931007,45706769 -g1,7922:11156033,45706769 -g1,7922:12302913,45706769 -g1,7922:15523352,45706769 -g1,7922:16914026,45706769 -g1,7922:19294949,45706769 -g1,7922:22985281,45706769 -g1,7922:22985281,45706769 -g1,7922:23184510,45706769 -g1,7922:23184510,45706769 -k1,7923:32583029,45706769:9398519 -g1,7923:32583029,45706769 -) -] -(1,7925:32583029,45706769:0,0,0 -g1,7925:32583029,45706769 -) -) -] -(1,7925:6630773,47279633:25952256,0,0 -h1,7925:6630773,47279633:25952256,0,0 -) -] -(1,7925:4262630,4025873:0,0,0 -[1,7925:-473656,4025873:0,0,0 -(1,7925:-473656,-710413:0,0,0 -(1,7925:-473656,-710413:0,0,0 -g1,7925:-473656,-710413 -) -g1,7925:-473656,-710413 -) -] -) -] -!23332 -}129 -Input:1075:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1076:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1077:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1078:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1079:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1080:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1081:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1082:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1083:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1084:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1085:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1086:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1087:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1088:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1089:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1090:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1091:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1092:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1093:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1094:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1892 -{130 -[1,8017:4262630,47279633:28320399,43253760,0 -(1,8017:4262630,4025873:0,0,0 -[1,8017:-473656,4025873:0,0,0 -(1,8017:-473656,-710413:0,0,0 -(1,8017:-473656,-644877:0,0,0 -k1,8017:-473656,-644877:-65536 +g1,6798:16591054,9500972 +(1,6798:16591054,9500972:1120190,563240,184180 +g1,6798:16931735,9500972 +k1,6798:17711244,9500972:779509 +) +g1,6798:17711244,9500972 +(1,6798:17711244,9500972:1251262,563240,184180 +k1,6798:18490753,9500972:779509 +g1,6798:18962506,9500972 +(1,6798:18962506,9500972:0,563240,174744 +(1,6798:18962506,9500972:0,0,0 +(1,6798:18962506,9500972:0,0,0 +g1,6798:18962506,9500972 +g1,6798:18962506,9500972 +g1,6798:18962506,9500972 +g1,6798:18962506,9500972 +g1,6798:18962506,9500972 +(1,6798:18962506,9500972:0,0,0 +(1,6798:18962506,9500972:331874,388497,0 +(1,6798:18962506,9500972:331874,388497,0 +) +g1,6798:19294380,9500972 +) +) +g1,6798:18962506,9500972 +g1,6798:18962506,9500972 +) +) +g1,6798:18962506,9500972 +) +) +g1,6798:18962506,9500972 +(1,6798:18962506,9500972:1120190,563240,184180 +g1,6798:19303187,9500972 +k1,6798:20082696,9500972:779509 +) +g1,6798:20082696,9500972 +(1,6798:20082696,9500972:1251262,563240,184180 +k1,6798:20862205,9500972:779509 +g1,6798:21333958,9500972 +(1,6798:21333958,9500972:0,563240,184180 +(1,6798:21333958,9500972:0,0,0 +(1,6798:21333958,9500972:0,0,0 +g1,6798:21333958,9500972 +g1,6798:21333958,9500972 +g1,6798:21333958,9500972 +g1,6798:21333958,9500972 +g1,6798:21333958,9500972 +(1,6798:21333958,9500972:0,0,0 +(1,6798:21333958,9500972:331874,388497,9436 +(1,6798:21333958,9500972:331874,388497,9436 +) +g1,6798:21665832,9500972 +) +) +g1,6798:21333958,9500972 +g1,6798:21333958,9500972 +) +) +g1,6798:21333958,9500972 +) +) +g1,6798:21333958,9500972 +(1,6799:21333958,9500972:1120190,563240,184180 +g1,6799:21674639,9500972 +k1,6799:22454148,9500972:779509 ) -(1,8017:-473656,4736287:0,0,0 -k1,8017:-473656,4736287:5209943 +g1,6799:22454148,9500972 ) -g1,8017:-473656,-710413 +(1,6799:15470864,9972790:6983284,194405,187851 +g1,6799:15470864,9972790 +(1,6799:15470864,9972790:1120190,194405,187851 +g1,6799:15470864,9972790 +g1,6799:16591054,9972790 +(1,6799:16591054,9972790:0,194405,187851 +(1,6799:16591054,9972790:0,0,0 +(1,6799:16591054,9972790:0,0,0 +g1,6799:16591054,9972790 +g1,6799:16591054,9972790 +g1,6799:16591054,9972790 +g1,6799:16591054,9972790 +g1,6799:16591054,9972790 +(1,6799:16591054,9972790:0,0,0 +(1,6799:16591054,9972790:1864679,6554,0 +(1,6799:16591054,9972790:1864679,6554,0 +(1,6799:16591054,9972790:1864679,6554,0 +r1,6909:18455733,9972790:1864679,6554,0 ) -] ) -[1,8017:6630773,47279633:25952256,43253760,0 -[1,8017:6630773,4812305:25952256,786432,0 -(1,8017:6630773,4812305:25952256,513147,134348 -(1,8017:6630773,4812305:25952256,513147,134348 -g1,8017:3078558,4812305 -[1,8017:3078558,4812305:0,0,0 -(1,8017:3078558,2439708:0,1703936,0 -k1,8017:1358238,2439708:-1720320 -(1,5950:1358238,2439708:1720320,1703936,0 -(1,5950:1358238,2439708:1179648,16384,0 -r1,8017:2537886,2439708:1179648,16384,0 +g1,6799:18455733,9972790 ) -g1,5950:3062174,2439708 -(1,5950:3062174,2439708:16384,1703936,0 -[1,5950:3062174,2439708:25952256,1703936,0 -(1,5950:3062174,1915420:25952256,1179648,0 -(1,5950:3062174,1915420:16384,1179648,0 -r1,8017:3078558,1915420:16384,1179648,0 ) -k1,5950:29014430,1915420:25935872 -g1,5950:29014430,1915420 +g1,6799:16591054,9972790 +g1,6799:16591054,9972790 ) -] ) +g1,6799:16591054,9972790 ) ) -] -[1,8017:3078558,4812305:0,0,0 -(1,8017:3078558,2439708:0,1703936,0 -g1,8017:29030814,2439708 -g1,8017:36135244,2439708 -(1,5950:36135244,2439708:1720320,1703936,0 -(1,5950:36135244,2439708:16384,1703936,0 -[1,5950:36135244,2439708:25952256,1703936,0 -(1,5950:36135244,1915420:25952256,1179648,0 -(1,5950:36135244,1915420:16384,1179648,0 -r1,8017:36151628,1915420:16384,1179648,0 +g1,6799:16591054,9972790 +(1,6799:16591054,9972790:1120190,194405,187851 +g1,6799:17711244,9972790 +g1,6799:17711244,9972790 ) -k1,5950:62087500,1915420:25935872 -g1,5950:62087500,1915420 +g1,6799:17711244,9972790 +(1,6799:17711244,9972790:1251262,194405,187851 +g1,6799:17711244,9972790 +g1,6799:18962506,9972790 +(1,6799:18962506,9972790:0,194405,187851 +(1,6799:18962506,9972790:0,0,0 +(1,6799:18962506,9972790:0,0,0 +g1,6799:18962506,9972790 +g1,6799:18962506,9972790 +g1,6799:18962506,9972790 +g1,6799:18962506,9972790 +g1,6799:18962506,9972790 +(1,6799:18962506,9972790:0,0,0 +(1,6799:18962506,9972790:1864679,6554,0 +(1,6799:18962506,9972790:1864679,6554,0 +(1,6799:18962506,9972790:1864679,6554,0 +r1,6909:20827185,9972790:1864679,6554,0 ) -] ) -g1,5950:36675916,2439708 -(1,5950:36675916,2439708:1179648,16384,0 -r1,8017:37855564,2439708:1179648,16384,0 +g1,6799:20827185,9972790 ) ) -k1,8017:3078556,2439708:-34777008 +g1,6799:18962506,9972790 +g1,6799:18962506,9972790 ) -] -[1,8017:3078558,4812305:0,0,0 -(1,8017:3078558,49800853:0,16384,2228224 -k1,8017:1358238,49800853:-1720320 -(1,5950:1358238,49800853:1720320,16384,2228224 -(1,5950:1358238,49800853:1179648,16384,0 -r1,8017:2537886,49800853:1179648,16384,0 ) -g1,5950:3062174,49800853 -(1,5950:3062174,52029077:16384,1703936,0 -[1,5950:3062174,52029077:25952256,1703936,0 -(1,5950:3062174,51504789:25952256,1179648,0 -(1,5950:3062174,51504789:16384,1179648,0 -r1,8017:3078558,51504789:16384,1179648,0 +g1,6799:18962506,9972790 ) -k1,5950:29014430,51504789:25935872 -g1,5950:29014430,51504789 ) -] +g1,6799:18962506,9972790 +(1,6799:18962506,9972790:1120190,194405,187851 +g1,6799:20082696,9972790 +g1,6799:20082696,9972790 ) +g1,6799:20082696,9972790 +(1,6799:20082696,9972790:1251262,194405,187851 +g1,6799:20082696,9972790 +g1,6799:21333958,9972790 +(1,6799:21333958,9972790:0,194405,187851 +(1,6799:21333958,9972790:0,0,0 +(1,6799:21333958,9972790:0,0,0 +g1,6799:21333958,9972790 +g1,6799:21333958,9972790 +g1,6799:21333958,9972790 +g1,6799:21333958,9972790 +g1,6799:21333958,9972790 +(1,6799:21333958,9972790:0,0,0 +(1,6799:21333958,9972790:1864679,6554,0 +(1,6799:21333958,9972790:1864679,6554,0 +(1,6799:21333958,9972790:1864679,6554,0 +r1,6909:23198637,9972790:1864679,6554,0 ) ) -] -[1,8017:3078558,4812305:0,0,0 -(1,8017:3078558,49800853:0,16384,2228224 -g1,8017:29030814,49800853 -g1,8017:36135244,49800853 -(1,5950:36135244,49800853:1720320,16384,2228224 -(1,5950:36135244,52029077:16384,1703936,0 -[1,5950:36135244,52029077:25952256,1703936,0 -(1,5950:36135244,51504789:25952256,1179648,0 -(1,5950:36135244,51504789:16384,1179648,0 -r1,8017:36151628,51504789:16384,1179648,0 +g1,6799:23198637,9972790 ) -k1,5950:62087500,51504789:25935872 -g1,5950:62087500,51504789 ) -] +g1,6799:21333958,9972790 +g1,6799:21333958,9972790 ) -g1,5950:36675916,49800853 -(1,5950:36675916,49800853:1179648,16384,0 -r1,8017:37855564,49800853:1179648,16384,0 ) +g1,6799:21333958,9972790 ) -k1,8017:3078556,49800853:-34777008 ) -] -g1,8017:6630773,4812305 -g1,8017:6630773,4812305 -g1,8017:9946239,4812305 -g1,8017:10761506,4812305 -g1,8017:11374923,4812305 -g1,8017:13736185,4812305 -k1,8017:31387653,4812305:17651468 +g1,6799:21333958,9972790 +(1,6799:21333958,9972790:1120190,194405,187851 +g1,6799:22454148,9972790 +g1,6799:22454148,9972790 ) +g1,6799:22454148,9972790 ) ] -[1,8017:6630773,45706769:25952256,40108032,0 -(1,8017:6630773,45706769:25952256,40108032,0 -(1,8017:6630773,45706769:0,0,0 -g1,8017:6630773,45706769 -) -[1,8017:6630773,45706769:25952256,40108032,0 -v1,7925:6630773,6254097:0,393216,0 -(1,7939:6630773,9864100:25952256,4003219,196608 -g1,7939:6630773,9864100 -g1,7939:6630773,9864100 -g1,7939:6434165,9864100 -(1,7939:6434165,9864100:0,4003219,196608 -r1,8017:32779637,9864100:26345472,4199827,196608 -k1,7939:6434165,9864100:-26345472 ) -(1,7939:6434165,9864100:26345472,4003219,196608 -[1,7939:6630773,9864100:25952256,3806611,0 -(1,7927:6630773,6468007:25952256,410518,76021 -(1,7926:6630773,6468007:0,0,0 -g1,7926:6630773,6468007 -g1,7926:6630773,6468007 -g1,7926:6303093,6468007 -(1,7926:6303093,6468007:0,0,0 -) -g1,7926:6630773,6468007 -) -k1,7927:6630773,6468007:0 -h1,7927:10740667,6468007:0,0,0 -k1,7927:32583029,6468007:21842362 -g1,7927:32583029,6468007 ) -(1,7931:6630773,7134185:25952256,379060,7863 -(1,7929:6630773,7134185:0,0,0 -g1,7929:6630773,7134185 -g1,7929:6630773,7134185 -g1,7929:6303093,7134185 -(1,7929:6303093,7134185:0,0,0 -) -g1,7929:6630773,7134185 -) -g1,7931:7579210,7134185 -h1,7931:8843793,7134185:0,0,0 -k1,7931:32583029,7134185:23739236 -g1,7931:32583029,7134185 -) -(1,7933:6630773,8455723:25952256,410518,76021 -(1,7932:6630773,8455723:0,0,0 -g1,7932:6630773,8455723 -g1,7932:6630773,8455723 -g1,7932:6303093,8455723 -(1,7932:6303093,8455723:0,0,0 -) -g1,7932:6630773,8455723 -) -k1,7933:6630773,8455723:0 -g1,7933:11056813,8455723 -g1,7933:12005251,8455723 -g1,7933:13902125,8455723 -g1,7933:14850562,8455723 -g1,7933:17063582,8455723 -g1,7933:18012019,8455723 -g1,7933:18644311,8455723 -h1,7933:21173476,8455723:0,0,0 -k1,7933:32583029,8455723:11409553 -g1,7933:32583029,8455723 -) -(1,7934:6630773,9121901:25952256,410518,76021 -h1,7934:6630773,9121901:0,0,0 -k1,7934:6630773,9121901:0 -h1,7934:10740667,9121901:0,0,0 -k1,7934:32583029,9121901:21842362 -g1,7934:32583029,9121901 -) -(1,7938:6630773,9788079:25952256,404226,76021 -(1,7936:6630773,9788079:0,0,0 -g1,7936:6630773,9788079 -g1,7936:6630773,9788079 -g1,7936:6303093,9788079 -(1,7936:6303093,9788079:0,0,0 -) -g1,7936:6630773,9788079 -) -g1,7938:7579210,9788079 -g1,7938:8843793,9788079 -g1,7938:10740667,9788079 -g1,7938:11689104,9788079 -g1,7938:13902124,9788079 -g1,7938:14850561,9788079 -g1,7938:15482853,9788079 -h1,7938:18012018,9788079:0,0,0 -k1,7938:32583029,9788079:14571011 -g1,7938:32583029,9788079 -) -] -) -g1,7939:32583029,9864100 -g1,7939:6630773,9864100 -g1,7939:6630773,9864100 -g1,7939:32583029,9864100 -g1,7939:32583029,9864100 -) -h1,7939:6630773,10060708:0,0,0 -(1,7943:6630773,11426484:25952256,513147,115847 -h1,7942:6630773,11426484:983040,0,0 -k1,7942:11086278,11426484:352296 -k1,7942:12584798,11426484:352295 -(1,7942:12584798,11426484:0,452978,115847 -r1,8017:15053335,11426484:2468537,568825,115847 -k1,7942:12584798,11426484:-2468537 -) -(1,7942:12584798,11426484:2468537,452978,115847 -k1,7942:12584798,11426484:3277 -h1,7942:15050058,11426484:0,411205,112570 -) -k1,7942:15579301,11426484:352296 -(1,7942:15579301,11426484:0,452978,115847 -r1,8017:17344414,11426484:1765113,568825,115847 -k1,7942:15579301,11426484:-1765113 -) -(1,7942:15579301,11426484:1765113,452978,115847 -k1,7942:15579301,11426484:3277 -h1,7942:17341137,11426484:0,411205,112570 -) -k1,7942:17696709,11426484:352295 -k1,7942:18731890,11426484:352296 -(1,7942:18731890,11426484:0,452978,115847 -r1,8017:21552139,11426484:2820249,568825,115847 -k1,7942:18731890,11426484:-2820249 -) -(1,7942:18731890,11426484:2820249,452978,115847 -k1,7942:18731890,11426484:3277 -h1,7942:21548862,11426484:0,411205,112570 -) -k1,7942:21904434,11426484:352295 -k1,7942:24267375,11426484:352296 -k1,7942:26630315,11426484:352295 -k1,7942:29837359,11426484:352296 -k1,7942:31757275,11426484:352295 -k1,7943:32583029,11426484:0 -) -(1,7943:6630773,12267972:25952256,505283,134348 -k1,7942:9269453,12267972:142414 -k1,7942:11450037,12267972:142414 -k1,7942:12208489,12267972:142414 -k1,7942:12765689,12267972:142357 -k1,7942:15371601,12267972:142414 -k1,7942:18119071,12267972:142414 -(1,7942:18119071,12267972:0,452978,115847 -r1,8017:21291031,12267972:3171960,568825,115847 -k1,7942:18119071,12267972:-3171960 -) -(1,7942:18119071,12267972:3171960,452978,115847 -k1,7942:18119071,12267972:3277 -h1,7942:21287754,12267972:0,411205,112570 -) -k1,7942:21607115,12267972:142414 -(1,7942:21607115,12267972:0,452978,115847 -r1,8017:24075652,12267972:2468537,568825,115847 -k1,7942:21607115,12267972:-2468537 -) -(1,7942:21607115,12267972:2468537,452978,115847 -k1,7942:21607115,12267972:3277 -h1,7942:24072375,12267972:0,411205,112570 -) -k1,7942:24218066,12267972:142414 -k1,7942:25043364,12267972:142413 -(1,7942:25043364,12267972:0,452978,115847 -r1,8017:28567036,12267972:3523672,568825,115847 -k1,7942:25043364,12267972:-3523672 -) -(1,7942:25043364,12267972:3523672,452978,115847 -k1,7942:25043364,12267972:3277 -h1,7942:28563759,12267972:0,411205,112570 -) -k1,7942:28709450,12267972:142414 -k1,7942:29786407,12267972:142414 -k1,7942:30818800,12267972:142414 -k1,7942:32583029,12267972:0 -) -(1,7943:6630773,13109460:25952256,513147,126483 -k1,7942:8182410,13109460:157686 -(1,7942:8182410,13109460:0,414482,115847 -r1,8017:9595811,13109460:1413401,530329,115847 -k1,7942:8182410,13109460:-1413401 -) -(1,7942:8182410,13109460:1413401,414482,115847 -k1,7942:8182410,13109460:3277 -h1,7942:9592534,13109460:0,411205,112570 -) -k1,7942:9960591,13109460:157686 -k1,7942:11137362,13109460:157686 -k1,7942:12975391,13109460:157686 -k1,7942:13792369,13109460:157686 -k1,7942:14969140,13109460:157686 -k1,7942:18357097,13109460:157687 -k1,7942:21797481,13109460:157686 -k1,7942:25142183,13109460:157686 -k1,7942:27115872,13109460:157686 -k1,7942:28465003,13109460:157686 -k1,7942:29557232,13109460:157686 -k1,7942:32583029,13109460:0 -) -(1,7943:6630773,13950948:25952256,513147,115847 -k1,7942:7618706,13950948:172665 -k1,7942:8857641,13950948:172664 -k1,7942:10531080,13950948:172665 -k1,7942:11651396,13950948:172665 -k1,7942:12590176,13950948:172664 -k1,7942:16045539,13950948:172665 -k1,7942:19338373,13950948:172665 -(1,7942:19338373,13950948:0,452978,115847 -r1,8017:21455198,13950948:2116825,568825,115847 -k1,7942:19338373,13950948:-2116825 -) -(1,7942:19338373,13950948:2116825,452978,115847 -k1,7942:19338373,13950948:3277 -h1,7942:21451921,13950948:0,411205,112570 -) -k1,7942:21801532,13950948:172664 -(1,7942:21801532,13950948:0,452978,115847 -r1,8017:24621781,13950948:2820249,568825,115847 -k1,7942:21801532,13950948:-2820249 -) -(1,7942:21801532,13950948:2820249,452978,115847 -k1,7942:21801532,13950948:3277 -h1,7942:24618504,13950948:0,411205,112570 -) -k1,7942:24794446,13950948:172665 -k1,7942:26158556,13950948:172665 -(1,7942:26158556,13950948:0,452978,115847 -r1,8017:30385652,13950948:4227096,568825,115847 -k1,7942:26158556,13950948:-4227096 -) -(1,7942:26158556,13950948:4227096,452978,115847 -k1,7942:26158556,13950948:3277 -h1,7942:30382375,13950948:0,411205,112570 -) -k1,7942:30558316,13950948:172664 -k1,7942:31835263,13950948:172665 -k1,7942:32583029,13950948:0 -) -(1,7943:6630773,14792436:25952256,505283,126483 -k1,7942:8305955,14792436:161956 -k1,7942:9861861,14792436:161955 -k1,7942:11155624,14792436:161956 -k1,7942:14269976,14792436:161955 -k1,7942:15911080,14792436:161956 -(1,7942:15911080,14792436:0,452978,115847 -r1,8017:18027905,14792436:2116825,568825,115847 -k1,7942:15911080,14792436:-2116825 -) -(1,7942:15911080,14792436:2116825,452978,115847 -k1,7942:15911080,14792436:3277 -h1,7942:18024628,14792436:0,411205,112570 -) -k1,7942:18189861,14792436:161956 -k1,7942:19220168,14792436:161955 -k1,7942:21371797,14792436:161956 -k1,7942:22725198,14792436:161956 -k1,7942:24281104,14792436:161955 -(1,7942:24281104,14792436:0,452978,115847 -r1,8017:27101353,14792436:2820249,568825,115847 -k1,7942:24281104,14792436:-2820249 -) -(1,7942:24281104,14792436:2820249,452978,115847 -k1,7942:24281104,14792436:3277 -h1,7942:27098076,14792436:0,411205,112570 -) -k1,7942:27263309,14792436:161956 -k1,7942:28293616,14792436:161955 -k1,7942:29390115,14792436:161956 -k1,7942:32583029,14792436:0 -) -(1,7943:6630773,15633924:25952256,513147,134348 -k1,7942:9959395,15633924:219594 -k1,7942:10940517,15633924:219594 -k1,7942:13071797,15633924:219595 -k1,7942:14770539,15633924:219594 -(1,7942:14770539,15633924:0,452978,115847 -r1,8017:18997635,15633924:4227096,568825,115847 -k1,7942:14770539,15633924:-4227096 -) -(1,7942:14770539,15633924:4227096,452978,115847 -k1,7942:14770539,15633924:3277 -h1,7942:18994358,15633924:0,411205,112570 -) -k1,7942:19217229,15633924:219594 -k1,7942:20305175,15633924:219594 -k1,7942:22958777,15633924:219595 -k1,7942:23944487,15633924:219594 -k1,7942:27273109,15633924:219594 -k1,7942:28151995,15633924:219594 -k1,7942:29142293,15633924:219595 -k1,7942:31321413,15633924:219594 -k1,7942:32227169,15633924:219594 -k1,7942:32583029,15633924:0 -) -(1,7943:6630773,16475412:25952256,513147,126483 -k1,7942:9009371,16475412:219842 -(1,7942:9009371,16475412:0,452978,115847 -r1,8017:10422772,16475412:1413401,568825,115847 -k1,7942:9009371,16475412:-1413401 -) -(1,7942:9009371,16475412:1413401,452978,115847 -k1,7942:9009371,16475412:3277 -h1,7942:10419495,16475412:0,411205,112570 -) -k1,7942:10816284,16475412:219842 -k1,7942:11663960,16475412:219841 -k1,7942:14723477,16475412:219842 -k1,7942:17397642,16475412:219842 -(1,7942:17397642,16475412:0,452978,115847 -r1,8017:19162755,16475412:1765113,568825,115847 -k1,7942:17397642,16475412:-1765113 -) -(1,7942:17397642,16475412:1765113,452978,115847 -k1,7942:17397642,16475412:3277 -h1,7942:19159478,16475412:0,411205,112570 -) -k1,7942:19382597,16475412:219842 -k1,7942:22227811,16475412:219842 -k1,7942:23213769,16475412:219842 -k1,7942:27361183,16475412:219841 -k1,7942:28772470,16475412:219842 -k1,7942:31923737,16475412:219842 -k1,7943:32583029,16475412:0 -) -(1,7943:6630773,17316900:25952256,505283,134348 -g1,7942:7244845,17316900 -g1,7942:9733902,17316900 -g1,7942:12913708,17316900 -g1,7942:14621576,17316900 -k1,7943:32583029,17316900:14678755 -g1,7943:32583029,17316900 -) -(1,7945:6630773,18158388:25952256,505283,134348 -h1,7944:6630773,18158388:983040,0,0 -k1,7944:11336148,18158388:179459 -k1,7944:12909559,18158388:179460 -k1,7944:14108103,18158388:179459 -k1,7944:17042040,18158388:179459 -k1,7944:20056587,18158388:179460 -k1,7944:21104398,18158388:179459 -k1,7944:22388139,18158388:179459 -k1,7944:25001606,18158388:179460 -k1,7944:26372510,18158388:179459 -k1,7944:27486512,18158388:179459 -k1,7944:28685057,18158388:179460 -k1,7944:30544859,18158388:179459 -k1,7944:32583029,18158388:0 -) -(1,7945:6630773,18999876:25952256,513147,134348 -k1,7944:7402403,18999876:155592 -k1,7944:8577080,18999876:155592 -(1,7944:8577080,18999876:0,452978,115847 -r1,8017:11749040,18999876:3171960,568825,115847 -k1,7944:8577080,18999876:-3171960 -) -(1,7944:8577080,18999876:3171960,452978,115847 -k1,7944:8577080,18999876:3277 -h1,7944:11745763,18999876:0,411205,112570 -) -k1,7944:11904632,18999876:155592 -k1,7944:14838951,18999876:155592 -k1,7944:16729936,18999876:155592 -k1,7944:18582254,18999876:155591 -k1,7944:21937314,18999876:155592 -k1,7944:22720741,18999876:155592 -k1,7944:23895418,18999876:155592 -k1,7944:26292341,18999876:155592 -k1,7944:29634293,18999876:155592 -k1,7944:30658237,18999876:155592 -k1,7944:32583029,18999876:0 -) -(1,7945:6630773,19841364:25952256,505283,134348 -g1,7944:7849087,19841364 -g1,7944:9728659,19841364 -g1,7944:11966058,19841364 -g1,7944:12781325,19841364 -g1,7944:13999639,19841364 -g1,7944:16977595,19841364 -g1,7944:17938352,19841364 -g1,7944:21134542,19841364 -(1,7944:21134542,19841364:0,414482,115847 -r1,8017:22547943,19841364:1413401,530329,115847 -k1,7944:21134542,19841364:-1413401 -) -(1,7944:21134542,19841364:1413401,414482,115847 -k1,7944:21134542,19841364:3277 -h1,7944:22544666,19841364:0,411205,112570 -) -g1,7944:22747172,19841364 -g1,7944:23597829,19841364 -k1,7945:32583029,19841364:8353433 -g1,7945:32583029,19841364 -) -v1,7947:6630773,21031830:0,393216,0 -(1,7967:6630773,26561391:25952256,5922777,196608 -g1,7967:6630773,26561391 -g1,7967:6630773,26561391 -g1,7967:6434165,26561391 -(1,7967:6434165,26561391:0,5922777,196608 -r1,8017:32779637,26561391:26345472,6119385,196608 -k1,7967:6434165,26561391:-26345472 -) -(1,7967:6434165,26561391:26345472,5922777,196608 -[1,7967:6630773,26561391:25952256,5726169,0 -(1,7949:6630773,21245740:25952256,410518,82312 -(1,7948:6630773,21245740:0,0,0 -g1,7948:6630773,21245740 -g1,7948:6630773,21245740 -g1,7948:6303093,21245740 -(1,7948:6303093,21245740:0,0,0 -) -g1,7948:6630773,21245740 -) -k1,7949:6630773,21245740:0 -g1,7949:10108376,21245740 -h1,7949:13269833,21245740:0,0,0 -k1,7949:32583029,21245740:19313196 -g1,7949:32583029,21245740 -) -(1,7953:6630773,21911918:25952256,404226,76021 -(1,7951:6630773,21911918:0,0,0 -g1,7951:6630773,21911918 -g1,7951:6630773,21911918 -g1,7951:6303093,21911918 -(1,7951:6303093,21911918:0,0,0 -) -g1,7951:6630773,21911918 -) -g1,7953:7579210,21911918 -g1,7953:8843793,21911918 -g1,7953:10740667,21911918 -g1,7953:11689104,21911918 -g1,7953:13902124,21911918 -g1,7953:14850561,21911918 -g1,7953:15482853,21911918 -h1,7953:18012018,21911918:0,0,0 -k1,7953:32583029,21911918:14571011 -g1,7953:32583029,21911918 -) -(1,7955:6630773,23233456:25952256,410518,82312 -(1,7954:6630773,23233456:0,0,0 -g1,7954:6630773,23233456 -g1,7954:6630773,23233456 -g1,7954:6303093,23233456 -(1,7954:6303093,23233456:0,0,0 -) -g1,7954:6630773,23233456 -) -k1,7955:6630773,23233456:0 -g1,7955:10108376,23233456 -g1,7955:13585979,23233456 -g1,7955:14534417,23233456 -k1,7955:14534417,23233456:0 -h1,7955:15799000,23233456:0,0,0 -k1,7955:32583028,23233456:16784028 -g1,7955:32583028,23233456 -) -(1,7956:6630773,23899634:25952256,410518,82312 -h1,7956:6630773,23899634:0,0,0 -g1,7956:10108376,23899634 -h1,7956:13269833,23899634:0,0,0 -k1,7956:32583029,23899634:19313196 -g1,7956:32583029,23899634 -) -(1,7960:6630773,24565812:25952256,379060,7863 -(1,7958:6630773,24565812:0,0,0 -g1,7958:6630773,24565812 -g1,7958:6630773,24565812 -g1,7958:6303093,24565812 -(1,7958:6303093,24565812:0,0,0 -) -g1,7958:6630773,24565812 -) -g1,7960:7579210,24565812 -h1,7960:8843793,24565812:0,0,0 -k1,7960:32583029,24565812:23739236 -g1,7960:32583029,24565812 -) -(1,7962:6630773,25887350:25952256,410518,101187 -(1,7961:6630773,25887350:0,0,0 -g1,7961:6630773,25887350 -g1,7961:6630773,25887350 -g1,7961:6303093,25887350 -(1,7961:6303093,25887350:0,0,0 -) -g1,7961:6630773,25887350 -) -k1,7962:6630773,25887350:0 -g1,7962:11056813,25887350 -g1,7962:11689105,25887350 -g1,7962:13269834,25887350 -g1,7962:14218271,25887350 -g1,7962:17063582,25887350 -k1,7962:17063582,25887350:1573 -h1,7962:18329738,25887350:0,0,0 -k1,7962:32583029,25887350:14253291 -g1,7962:32583029,25887350 -) -(1,7966:6630773,26553528:25952256,379060,7863 -(1,7964:6630773,26553528:0,0,0 -g1,7964:6630773,26553528 -g1,7964:6630773,26553528 -g1,7964:6303093,26553528 -(1,7964:6303093,26553528:0,0,0 -) -g1,7964:6630773,26553528 -) -g1,7966:7579210,26553528 -h1,7966:8843793,26553528:0,0,0 -k1,7966:32583029,26553528:23739236 -g1,7966:32583029,26553528 -) -] -) -g1,7967:32583029,26561391 -g1,7967:6630773,26561391 -g1,7967:6630773,26561391 -g1,7967:32583029,26561391 -g1,7967:32583029,26561391 -) -h1,7967:6630773,26757999:0,0,0 -(1,7971:6630773,28123775:25952256,513147,126483 -h1,7970:6630773,28123775:983040,0,0 -k1,7970:9073275,28123775:262775 -(1,7970:9073275,28123775:0,452978,115847 -r1,8017:11541812,28123775:2468537,568825,115847 -k1,7970:9073275,28123775:-2468537 -) -(1,7970:9073275,28123775:2468537,452978,115847 -k1,7970:9073275,28123775:3277 -h1,7970:11538535,28123775:0,411205,112570 -) -k1,7970:11804588,28123775:262776 -k1,7970:14846090,28123775:262775 -k1,7970:15776021,28123775:262775 -(1,7970:15776021,28123775:0,459977,115847 -r1,8017:17189422,28123775:1413401,575824,115847 -k1,7970:15776021,28123775:-1413401 -) -(1,7970:15776021,28123775:1413401,459977,115847 -k1,7970:15776021,28123775:3277 -h1,7970:17186145,28123775:0,411205,112570 -) -k1,7970:17452198,28123775:262776 -k1,7970:18922146,28123775:262775 -k1,7970:20119465,28123775:262776 -k1,7970:21143768,28123775:262775 -k1,7970:22425628,28123775:262775 -(1,7970:22425628,28123775:0,459977,115847 -r1,8017:26652724,28123775:4227096,575824,115847 -k1,7970:22425628,28123775:-4227096 -) -(1,7970:22425628,28123775:4227096,459977,115847 -k1,7970:22425628,28123775:3277 -h1,7970:26649447,28123775:0,411205,112570 -) -k1,7970:26915500,28123775:262776 -k1,7970:30884991,28123775:262775 -k1,7970:32583029,28123775:0 -) -(1,7971:6630773,28965263:25952256,513147,126483 -k1,7970:7345490,28965263:256620 -k1,7970:8809283,28965263:256620 -k1,7970:11416025,28965263:256621 -k1,7970:13701640,28965263:256620 -k1,7970:14586095,28965263:256620 -k1,7970:15861800,28965263:256620 -k1,7970:17502541,28965263:256621 -k1,7970:20594248,28965263:256620 -k1,7970:21466906,28965263:256620 -k1,7970:22742611,28965263:256620 -k1,7970:24305364,28965263:256620 -k1,7970:27748345,28965263:256621 -k1,7970:28873317,28965263:256620 -k1,7970:31563944,28965263:256620 -k1,7970:32583029,28965263:0 -) -(1,7971:6630773,29806751:25952256,513147,134348 -k1,7970:9061604,29806751:188844 -k1,7970:10441894,29806751:188845 -k1,7970:13636874,29806751:188844 -k1,7970:15407757,29806751:188844 -k1,7970:17409328,29806751:188845 -k1,7970:18226007,29806751:188844 -k1,7970:19433936,29806751:188844 -k1,7970:21864111,29806751:188844 -k1,7970:25412987,29806751:188845 -k1,7970:27014132,29806751:188844 -k1,7970:28770597,29806751:188844 -k1,7970:30494951,29806751:188845 -k1,7970:31335223,29806751:188844 -k1,7970:32583029,29806751:0 -) -(1,7971:6630773,30648239:25952256,505283,126483 -k1,7970:7660387,30648239:161262 -k1,7970:10255657,30648239:161263 -k1,7970:11436004,30648239:161262 -k1,7970:13839253,30648239:161262 -k1,7970:16393234,30648239:161262 -k1,7970:18193552,30648239:161263 -k1,7970:19006242,30648239:161262 -k1,7970:21059528,30648239:161262 -k1,7970:22587871,30648239:161262 -k1,7970:23940579,30648239:161263 -k1,7970:25492515,30648239:161262 -k1,7970:27292832,30648239:161262 -k1,7970:28936518,30648239:161262 -k1,7970:29749209,30648239:161263 -k1,7970:30929556,30648239:161262 -k1,7970:32583029,30648239:0 -) -(1,7971:6630773,31489727:25952256,505283,7863 -k1,7971:32583030,31489727:22999860 -g1,7971:32583030,31489727 -) -v1,7973:6630773,32680193:0,393216,0 -(1,7993:6630773,38277912:25952256,5990935,196608 -g1,7993:6630773,38277912 -g1,7993:6630773,38277912 -g1,7993:6434165,38277912 -(1,7993:6434165,38277912:0,5990935,196608 -r1,8017:32779637,38277912:26345472,6187543,196608 -k1,7993:6434165,38277912:-26345472 -) -(1,7993:6434165,38277912:26345472,5990935,196608 -[1,7993:6630773,38277912:25952256,5794327,0 -(1,7975:6630773,32894103:25952256,410518,76021 -(1,7974:6630773,32894103:0,0,0 -g1,7974:6630773,32894103 -g1,7974:6630773,32894103 -g1,7974:6303093,32894103 -(1,7974:6303093,32894103:0,0,0 -) -g1,7974:6630773,32894103 -) -k1,7975:6630773,32894103:0 -h1,7975:10108375,32894103:0,0,0 -k1,7975:32583029,32894103:22474654 -g1,7975:32583029,32894103 -) -(1,7979:6630773,33560281:25952256,404226,101187 -(1,7977:6630773,33560281:0,0,0 -g1,7977:6630773,33560281 -g1,7977:6630773,33560281 -g1,7977:6303093,33560281 -(1,7977:6303093,33560281:0,0,0 -) -g1,7977:6630773,33560281 -) -g1,7979:7579210,33560281 -g1,7979:8843793,33560281 -g1,7979:10108376,33560281 -g1,7979:11372959,33560281 -h1,7979:12321396,33560281:0,0,0 -k1,7979:32583028,33560281:20261632 -g1,7979:32583028,33560281 -) -(1,7981:6630773,34881819:25952256,410518,101187 -(1,7980:6630773,34881819:0,0,0 -g1,7980:6630773,34881819 -g1,7980:6630773,34881819 -g1,7980:6303093,34881819 -(1,7980:6303093,34881819:0,0,0 -) -g1,7980:6630773,34881819 -) -k1,7981:6630773,34881819:0 -g1,7981:10424521,34881819 -g1,7981:11372959,34881819 -k1,7981:11372959,34881819:0 -h1,7981:17695873,34881819:0,0,0 -k1,7981:32583029,34881819:14887156 -g1,7981:32583029,34881819 -) -(1,7982:6630773,35547997:25952256,410518,76021 -h1,7982:6630773,35547997:0,0,0 -k1,7982:6630773,35547997:0 -h1,7982:10108375,35547997:0,0,0 -k1,7982:32583029,35547997:22474654 -g1,7982:32583029,35547997 -) -(1,7986:6630773,36214175:25952256,404226,76021 -(1,7984:6630773,36214175:0,0,0 -g1,7984:6630773,36214175 -g1,7984:6630773,36214175 -g1,7984:6303093,36214175 -(1,7984:6303093,36214175:0,0,0 -) -g1,7984:6630773,36214175 -) -g1,7986:7579210,36214175 -g1,7986:8843793,36214175 -g1,7986:10108376,36214175 -g1,7986:11372959,36214175 -h1,7986:12321396,36214175:0,0,0 -k1,7986:32583028,36214175:20261632 -g1,7986:32583028,36214175 -) -(1,7988:6630773,37535713:25952256,410518,101187 -(1,7987:6630773,37535713:0,0,0 -g1,7987:6630773,37535713 -g1,7987:6630773,37535713 -g1,7987:6303093,37535713 -(1,7987:6303093,37535713:0,0,0 -) -g1,7987:6630773,37535713 -) -k1,7988:6630773,37535713:0 -g1,7988:10108376,37535713 -g1,7988:12953688,37535713 -g1,7988:13585980,37535713 -g1,7988:15166709,37535713 -g1,7988:16115146,37535713 -g1,7988:18960457,37535713 -k1,7988:18960457,37535713:1573 -h1,7988:20226613,37535713:0,0,0 -k1,7988:32583029,37535713:12356416 -g1,7988:32583029,37535713 -) -(1,7992:6630773,38201891:25952256,404226,76021 -(1,7990:6630773,38201891:0,0,0 -g1,7990:6630773,38201891 -g1,7990:6630773,38201891 -g1,7990:6303093,38201891 -(1,7990:6303093,38201891:0,0,0 -) -g1,7990:6630773,38201891 -) -g1,7992:7579210,38201891 -g1,7992:8843793,38201891 -g1,7992:10108376,38201891 -g1,7992:11372959,38201891 -h1,7992:12321396,38201891:0,0,0 -k1,7992:32583028,38201891:20261632 -g1,7992:32583028,38201891 -) -] -) -g1,7993:32583029,38277912 -g1,7993:6630773,38277912 -g1,7993:6630773,38277912 -g1,7993:32583029,38277912 -g1,7993:32583029,38277912 -) -h1,7993:6630773,38474520:0,0,0 -(1,7997:6630773,39840296:25952256,505283,134348 -h1,7996:6630773,39840296:983040,0,0 -k1,7996:8805127,39840296:237765 -k1,7996:10147173,39840296:237764 -k1,7996:11582281,39840296:237765 -k1,7996:12175905,39840296:237764 -k1,7996:13696865,39840296:237765 -k1,7996:16887026,39840296:237764 -k1,7996:19010917,39840296:237765 -k1,7996:20346409,39840296:237764 -k1,7996:21914555,39840296:237765 -k1,7996:24613851,39840296:237764 -k1,7996:25537778,39840296:237765 -k1,7996:27164250,39840296:237764 -k1,7996:28088177,39840296:237765 -k1,7996:29114339,39840296:237764 -k1,7996:31090119,39840296:237765 -k1,7996:32583029,39840296:0 -) -(1,7997:6630773,40681784:25952256,513147,134348 -g1,7996:7896273,40681784 -g1,7996:9735213,40681784 -g1,7996:11328393,40681784 -g1,7996:12812128,40681784 -g1,7996:13670649,40681784 -g1,7996:16360901,40681784 -k1,7997:32583029,40681784:12939430 -g1,7997:32583029,40681784 -) -v1,7999:6630773,41872250:0,393216,0 -(1,8017:6630773,45448506:25952256,3969472,196608 -g1,8017:6630773,45448506 -g1,8017:6630773,45448506 -g1,8017:6434165,45448506 -(1,8017:6434165,45448506:0,3969472,196608 -r1,8017:32779637,45448506:26345472,4166080,196608 -k1,8017:6434165,45448506:-26345472 -) -(1,8017:6434165,45448506:26345472,3969472,196608 -[1,8017:6630773,45448506:25952256,3772864,0 -(1,8001:6630773,42086160:25952256,410518,101187 -(1,8000:6630773,42086160:0,0,0 -g1,8000:6630773,42086160 -g1,8000:6630773,42086160 -g1,8000:6303093,42086160 -(1,8000:6303093,42086160:0,0,0 -) -g1,8000:6630773,42086160 -) -k1,8001:6630773,42086160:0 -g1,8001:10108376,42086160 -g1,8001:15166708,42086160 -g1,8001:16115146,42086160 -g1,8001:18012020,42086160 -g1,8001:18960457,42086160 -g1,8001:21173477,42086160 -g1,8001:22121914,42086160 -g1,8001:23070351,42086160 -h1,8001:26231808,42086160:0,0,0 -k1,8001:32583029,42086160:6351221 -g1,8001:32583029,42086160 -) -(1,8002:6630773,42752338:25952256,410518,76021 -h1,8002:6630773,42752338:0,0,0 -k1,8002:6630773,42752338:0 -h1,8002:11689104,42752338:0,0,0 -k1,8002:32583028,42752338:20893924 -g1,8002:32583028,42752338 -) -(1,8016:6630773,43418516:25952256,410518,31456 -(1,8004:6630773,43418516:0,0,0 -g1,8004:6630773,43418516 -g1,8004:6630773,43418516 -g1,8004:6303093,43418516 -(1,8004:6303093,43418516:0,0,0 -) -g1,8004:6630773,43418516 -) -g1,8016:7579210,43418516 -h1,8016:9476084,43418516:0,0,0 -k1,8016:32583028,43418516:23106944 -g1,8016:32583028,43418516 -) -(1,8016:6630773,44084694:25952256,404226,76021 -h1,8016:6630773,44084694:0,0,0 -g1,8016:7579210,44084694 -g1,8016:8843793,44084694 -g1,8016:10108376,44084694 -g1,8016:11372959,44084694 -h1,8016:12321396,44084694:0,0,0 -k1,8016:32583028,44084694:20261632 -g1,8016:32583028,44084694 -) -(1,8016:6630773,44750872:25952256,379060,0 -h1,8016:6630773,44750872:0,0,0 -h1,8016:7263064,44750872:0,0,0 -k1,8016:32583028,44750872:25319964 -g1,8016:32583028,44750872 -) -(1,8016:6630773,45417050:25952256,410518,31456 -h1,8016:6630773,45417050:0,0,0 -g1,8016:7579210,45417050 -h1,8016:9476084,45417050:0,0,0 -k1,8016:32583028,45417050:23106944 -g1,8016:32583028,45417050 -) -] -) -g1,8017:32583029,45448506 -g1,8017:6630773,45448506 -g1,8017:6630773,45448506 -g1,8017:32583029,45448506 -g1,8017:32583029,45448506 -) -] -(1,8017:32583029,45706769:0,0,0 -g1,8017:32583029,45706769 -) -) -] -(1,8017:6630773,47279633:25952256,0,0 -h1,8017:6630773,47279633:25952256,0,0 -) -] -(1,8017:4262630,4025873:0,0,0 -[1,8017:-473656,4025873:0,0,0 -(1,8017:-473656,-710413:0,0,0 -(1,8017:-473656,-710413:0,0,0 -g1,8017:-473656,-710413 -) -g1,8017:-473656,-710413 -) -] -) -] -!27429 -}130 -Input:1095:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1096:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1097:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1098:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1099:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1100:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1101:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1102:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1103:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1104:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!952 -{131 -[1,8084:4262630,47279633:28320399,43253760,0 -(1,8084:4262630,4025873:0,0,0 -[1,8084:-473656,4025873:0,0,0 -(1,8084:-473656,-710413:0,0,0 -(1,8084:-473656,-644877:0,0,0 -k1,8084:-473656,-644877:-65536 +g1,6799:15470864,9972790 +g1,6799:15470864,9972790 ) -(1,8084:-473656,4736287:0,0,0 -k1,8084:-473656,4736287:5209943 ) -g1,8084:-473656,-710413 +g1,6799:15470864,9972790 +g1,6803:15470864,9972790 +g1,6803:15470864,9972790 +g1,6805:15470864,9972790 +(1,6805:15470864,9972790:0,0,0 +(1,6805:15470864,9972790:0,0,0 +g1,6805:15470864,9972790 +(1,6805:15470864,9972790:0,0,0 +(1,6805:15470864,9972790:1132032,482673,208735 +(1,6805:15470864,9972790:1132032,482673,208735 +(1,6805:15470864,9972790:0,482673,208735 +r1,6909:16602896,9972790:1132032,691408,208735 +k1,6805:15470864,9972790:-1132032 ) -] +(1,6805:15470864,9972790:1132032,482673,208735 +r1,6909:15474141,9972790:0,684854,205458 +h1,6805:16599619,9972790:0,328964,90056 ) -[1,8084:6630773,47279633:25952256,43253760,0 -[1,8084:6630773,4812305:25952256,786432,0 -(1,8084:6630773,4812305:25952256,505283,11795 -(1,8084:6630773,4812305:25952256,505283,11795 -g1,8084:3078558,4812305 -[1,8084:3078558,4812305:0,0,0 -(1,8084:3078558,2439708:0,1703936,0 -k1,8084:1358238,2439708:-1720320 -(1,5950:1358238,2439708:1720320,1703936,0 -(1,5950:1358238,2439708:1179648,16384,0 -r1,8084:2537886,2439708:1179648,16384,0 ) -g1,5950:3062174,2439708 -(1,5950:3062174,2439708:16384,1703936,0 -[1,5950:3062174,2439708:25952256,1703936,0 -(1,5950:3062174,1915420:25952256,1179648,0 -(1,5950:3062174,1915420:16384,1179648,0 -r1,8084:3078558,1915420:16384,1179648,0 +g1,6805:16602896,9972790 ) -k1,5950:29014430,1915420:25935872 -g1,5950:29014430,1915420 ) -] +g1,6805:15470864,9972790 +g1,6805:15470864,9972790 ) ) +(1,6806:15470864,9972790:0,0,0 +(1,6806:15470864,9972790:0,0,0 +g1,6806:15470864,9972790 +(1,6806:15470864,9972790:0,0,0 +(1,6806:15470864,9972790:2490892,205458,479396 +(1,6806:15470864,9972790:2490892,205458,479396 +(1,6806:15470864,9972790:2490892,205458,479396 +(1,6806:17961756,9972790:2490892,479396,205458 +(1,6806:17961756,9972790:2490892,479396,205458 +r1,6909:20452648,9972790:0,684854,205458 ) -] -[1,8084:3078558,4812305:0,0,0 -(1,8084:3078558,2439708:0,1703936,0 -g1,8084:29030814,2439708 -g1,8084:36135244,2439708 -(1,5950:36135244,2439708:1720320,1703936,0 -(1,5950:36135244,2439708:16384,1703936,0 -[1,5950:36135244,2439708:25952256,1703936,0 -(1,5950:36135244,1915420:25952256,1179648,0 -(1,5950:36135244,1915420:16384,1179648,0 -r1,8084:36151628,1915420:16384,1179648,0 ) -k1,5950:62087500,1915420:25935872 -g1,5950:62087500,1915420 ) -] ) -g1,5950:36675916,2439708 -(1,5950:36675916,2439708:1179648,16384,0 -r1,8084:37855564,2439708:1179648,16384,0 +g1,6806:17961756,9972790 ) ) -k1,8084:3078556,2439708:-34777008 +g1,6806:15470864,9972790 +g1,6806:15470864,9972790 ) -] -[1,8084:3078558,4812305:0,0,0 -(1,8084:3078558,49800853:0,16384,2228224 -k1,8084:1358238,49800853:-1720320 -(1,5950:1358238,49800853:1720320,16384,2228224 -(1,5950:1358238,49800853:1179648,16384,0 -r1,8084:2537886,49800853:1179648,16384,0 ) -g1,5950:3062174,49800853 -(1,5950:3062174,52029077:16384,1703936,0 -[1,5950:3062174,52029077:25952256,1703936,0 -(1,5950:3062174,51504789:25952256,1179648,0 -(1,5950:3062174,51504789:16384,1179648,0 -r1,8084:3078558,51504789:16384,1179648,0 +(1,6807:15470864,9972790:0,0,0 +(1,6807:15470864,9972790:0,0,0 +g1,6807:15470864,9972790 +(1,6807:15470864,9972790:0,0,0 +(1,6807:15470864,9972790:1616380,205458,479396 +(1,6807:15470864,9972790:1616380,205458,479396 +(1,6807:15470864,9972790:1616380,205458,479396 +(1,6807:17087244,9972790:1616380,479396,205458 +(1,6807:17087244,9972790:1616380,479396,205458 +r1,6909:18703624,9972790:0,684854,205458 ) -k1,5950:29014430,51504789:25935872 -g1,5950:29014430,51504789 ) -] ) ) +g1,6807:17087244,9972790 ) -] -[1,8084:3078558,4812305:0,0,0 -(1,8084:3078558,49800853:0,16384,2228224 -g1,8084:29030814,49800853 -g1,8084:36135244,49800853 -(1,5950:36135244,49800853:1720320,16384,2228224 -(1,5950:36135244,52029077:16384,1703936,0 -[1,5950:36135244,52029077:25952256,1703936,0 -(1,5950:36135244,51504789:25952256,1179648,0 -(1,5950:36135244,51504789:16384,1179648,0 -r1,8084:36151628,51504789:16384,1179648,0 ) -k1,5950:62087500,51504789:25935872 -g1,5950:62087500,51504789 +g1,6807:15470864,9972790 +g1,6807:15470864,9972790 ) -] ) -g1,5950:36675916,49800853 -(1,5950:36675916,49800853:1179648,16384,0 -r1,8084:37855564,49800853:1179648,16384,0 +(1,6808:15470864,9972790:0,0,0 +(1,6808:15470864,9972790:0,0,0 +g1,6808:15470864,9972790 +(1,6808:15470864,9972790:0,0,0 +(1,6808:15470864,9972790:1695023,205458,479396 +(1,6808:15470864,9972790:1695023,205458,479396 +(1,6808:15470864,9972790:1695023,205458,479396 +(1,6808:17165887,9972790:1695023,479396,205458 +(1,6808:17165887,9972790:1695023,479396,205458 +r1,6909:18860910,9972790:0,684854,205458 ) ) -k1,8084:3078556,49800853:-34777008 ) -] -g1,8084:6630773,4812305 -k1,8084:24358918,4812305:16532768 -g1,8084:25981589,4812305 -g1,8084:26804065,4812305 -g1,8084:30302376,4812305 -) -) -] -[1,8084:6630773,45706769:25952256,40108032,0 -(1,8084:6630773,45706769:25952256,40108032,0 -(1,8084:6630773,45706769:0,0,0 -g1,8084:6630773,45706769 -) -[1,8084:6630773,45706769:25952256,40108032,0 -v1,8017:6630773,6254097:0,393216,0 -(1,8017:6630773,10566262:25952256,4705381,196608 -g1,8017:6630773,10566262 -g1,8017:6630773,10566262 -g1,8017:6434165,10566262 -(1,8017:6434165,10566262:0,4705381,196608 -r1,8084:32779637,10566262:26345472,4901989,196608 -k1,8017:6434165,10566262:-26345472 -) -(1,8017:6434165,10566262:26345472,4705381,196608 -[1,8017:6630773,10566262:25952256,4508773,0 -(1,8016:6630773,6468007:25952256,410518,76021 -h1,8016:6630773,6468007:0,0,0 -g1,8016:7579210,6468007 -g1,8016:8843793,6468007 -h1,8016:12637541,6468007:0,0,0 -k1,8016:32583029,6468007:19945488 -g1,8016:32583029,6468007 -) -(1,8016:6630773,7134185:25952256,379060,0 -h1,8016:6630773,7134185:0,0,0 -h1,8016:7263064,7134185:0,0,0 -k1,8016:32583028,7134185:25319964 -g1,8016:32583028,7134185 -) -(1,8016:6630773,7800363:25952256,410518,31456 -h1,8016:6630773,7800363:0,0,0 -g1,8016:7579210,7800363 -h1,8016:10740667,7800363:0,0,0 -k1,8016:32583029,7800363:21842362 -g1,8016:32583029,7800363 -) -(1,8016:6630773,8466541:25952256,404226,76021 -h1,8016:6630773,8466541:0,0,0 -g1,8016:7579210,8466541 -g1,8016:8843793,8466541 -g1,8016:9476085,8466541 -g1,8016:10108377,8466541 -g1,8016:10740669,8466541 -g1,8016:11372961,8466541 -g1,8016:12005253,8466541 -h1,8016:12321399,8466541:0,0,0 -k1,8016:32583029,8466541:20261630 -g1,8016:32583029,8466541 -) -(1,8016:6630773,9132719:25952256,379060,0 -h1,8016:6630773,9132719:0,0,0 -h1,8016:7263064,9132719:0,0,0 -k1,8016:32583028,9132719:25319964 -g1,8016:32583028,9132719 -) -(1,8016:6630773,9798897:25952256,410518,101187 -h1,8016:6630773,9798897:0,0,0 -g1,8016:7579210,9798897 -h1,8016:11689104,9798897:0,0,0 -k1,8016:32583028,9798897:20893924 -g1,8016:32583028,9798897 -) -(1,8016:6630773,10465075:25952256,404226,101187 -h1,8016:6630773,10465075:0,0,0 -g1,8016:7579210,10465075 -g1,8016:8843793,10465075 -g1,8016:10740667,10465075 -g1,8016:11689104,10465075 -g1,8016:13902124,10465075 -g1,8016:14850561,10465075 -g1,8016:15798998,10465075 -h1,8016:18960455,10465075:0,0,0 -k1,8016:32583029,10465075:13622574 -g1,8016:32583029,10465075 -) -] -) -g1,8017:32583029,10566262 -g1,8017:6630773,10566262 -g1,8017:6630773,10566262 -g1,8017:32583029,10566262 -g1,8017:32583029,10566262 -) -h1,8017:6630773,10762870:0,0,0 -v1,8021:6630773,12652934:0,393216,0 -(1,8069:6630773,33970629:25952256,21710911,0 -g1,8069:6630773,33970629 -g1,8069:6303093,33970629 -r1,8084:6401397,33970629:98304,21710911,0 -g1,8069:6600626,33970629 -g1,8069:6797234,33970629 -[1,8069:6797234,33970629:25785795,21710911,0 -(1,8022:6797234,13015007:25785795,755289,196608 -(1,8021:6797234,13015007:0,755289,196608 -r1,8084:8134168,13015007:1336934,951897,196608 -k1,8021:6797234,13015007:-1336934 -) -(1,8021:6797234,13015007:1336934,755289,196608 -) -k1,8021:8315142,13015007:180974 -k1,8021:8642822,13015007:327680 -k1,8021:10020484,13015007:180975 -k1,8021:13310486,13015007:180974 -k1,8021:15004686,13015007:180974 -k1,8021:18236362,13015007:180975 -k1,8021:19178864,13015007:180974 -k1,8021:19774663,13015007:180956 -k1,8021:21059920,13015007:180975 -k1,8021:21988660,13015007:180974 -k1,8021:24583981,13015007:180975 -k1,8021:27600042,13015007:180974 -k1,8021:28542544,13015007:180974 -k1,8021:30104363,13015007:180975 -k1,8021:31955194,13015007:180974 -k1,8021:32583029,13015007:0 -) -(1,8022:6797234,13856495:25785795,513147,126483 -k1,8021:8618715,13856495:219781 -k1,8021:10535878,13856495:219781 -k1,8021:11958900,13856495:219781 -k1,8021:12710178,13856495:219781 -k1,8021:16868674,13856495:219782 -k1,8021:17774617,13856495:219781 -k1,8021:18409220,13856495:219760 -k1,8021:21389377,13856495:219781 -k1,8021:23205615,13856495:219781 -k1,8021:24084689,13856495:219782 -k1,8021:27330267,13856495:219781 -k1,8021:28201476,13856495:219781 -k1,8021:30237260,13856495:219781 -k1,8021:31648486,13856495:219781 -k1,8021:32583029,13856495:0 -) -(1,8022:6797234,14697983:25785795,513147,115847 -k1,8021:7993904,14697983:177585 -k1,8021:10744432,14697983:177585 -k1,8021:14204715,14697983:177585 -k1,8021:15763144,14697983:177585 -k1,8021:16472226,14697983:177585 -k1,8021:17957254,14697983:177585 -k1,8021:19082489,14697983:177584 -k1,8021:20279159,14697983:177585 -k1,8021:23565772,14697983:177585 -(1,8021:23565772,14697983:0,452978,115847 -r1,8084:24627461,14697983:1061689,568825,115847 -k1,8021:23565772,14697983:-1061689 -) -(1,8021:23565772,14697983:1061689,452978,115847 -k1,8021:23565772,14697983:3277 -h1,8021:24624184,14697983:0,411205,112570 -) -k1,8021:24978716,14697983:177585 -(1,8021:24978716,14697983:0,414482,115847 -r1,8084:26743829,14697983:1765113,530329,115847 -k1,8021:24978716,14697983:-1765113 -) -(1,8021:24978716,14697983:1765113,414482,115847 -k1,8021:24978716,14697983:3277 -h1,8021:26740552,14697983:0,411205,112570 -) -k1,8021:26921414,14697983:177585 -k1,8021:28290444,14697983:177585 -(1,8021:28290444,14697983:0,452978,115847 -r1,8084:30407269,14697983:2116825,568825,115847 -k1,8021:28290444,14697983:-2116825 -) -(1,8021:28290444,14697983:2116825,452978,115847 -k1,8021:28290444,14697983:3277 -h1,8021:30403992,14697983:0,411205,112570 -) -k1,8021:30758524,14697983:177585 -k1,8021:31563944,14697983:177585 -k1,8021:32583029,14697983:0 -) -(1,8022:6797234,15539471:25785795,513147,126483 -g1,8021:9657880,15539471 -g1,8021:11725540,15539471 -g1,8021:12793121,15539471 -g1,8021:14404651,15539471 -g1,8021:15622965,15539471 -g1,8021:18931222,15539471 -g1,8021:20698072,15539471 -g1,8021:21253161,15539471 -k1,8022:32583029,15539471:9068876 -g1,8022:32583029,15539471 -) -v1,8024:6797234,16729937:0,393216,0 -(1,8065:6797234,32292398:25785795,15955677,196608 -g1,8065:6797234,32292398 -g1,8065:6797234,32292398 -g1,8065:6600626,32292398 -(1,8065:6600626,32292398:0,15955677,196608 -r1,8084:32779637,32292398:26179011,16152285,196608 -k1,8065:6600625,32292398:-26179012 -) -(1,8065:6600626,32292398:26179011,15955677,196608 -[1,8065:6797234,32292398:25785795,15759069,0 -(1,8026:6797234,16937555:25785795,404226,82312 -(1,8025:6797234,16937555:0,0,0 -g1,8025:6797234,16937555 -g1,8025:6797234,16937555 -g1,8025:6469554,16937555 -(1,8025:6469554,16937555:0,0,0 -) -g1,8025:6797234,16937555 -) -g1,8026:7429526,16937555 -g1,8026:8377964,16937555 -g1,8026:12487859,16937555 -g1,8026:14068588,16937555 -g1,8026:14700880,16937555 -h1,8026:15333172,16937555:0,0,0 -k1,8026:32583028,16937555:17249856 -g1,8026:32583028,16937555 -) -(1,8027:6797234,17603733:25785795,328204,0 -h1,8027:6797234,17603733:0,0,0 -h1,8027:7113380,17603733:0,0,0 -k1,8027:32583028,17603733:25469648 -g1,8027:32583028,17603733 -) -(1,8036:6797234,18269911:25785795,404226,82312 -(1,8029:6797234,18269911:0,0,0 -g1,8029:6797234,18269911 -g1,8029:6797234,18269911 -g1,8029:6469554,18269911 -(1,8029:6469554,18269911:0,0,0 -) -g1,8029:6797234,18269911 -) -g1,8036:7745671,18269911 -g1,8036:8061817,18269911 -g1,8036:8377963,18269911 -g1,8036:8694109,18269911 -g1,8036:9010255,18269911 -g1,8036:9326401,18269911 -g1,8036:10907130,18269911 -k1,8036:10907130,18269911:0 -h1,8036:12171713,18269911:0,0,0 -k1,8036:32583029,18269911:20411316 -g1,8036:32583029,18269911 -) -(1,8036:6797234,18936089:25785795,404226,82312 -h1,8036:6797234,18936089:0,0,0 -g1,8036:7745671,18936089 -g1,8036:9326399,18936089 -g1,8036:9642545,18936089 -g1,8036:9958691,18936089 -g1,8036:10274837,18936089 -g1,8036:10907129,18936089 -g1,8036:11223275,18936089 -g1,8036:11539421,18936089 -g1,8036:11855567,18936089 -h1,8036:12171713,18936089:0,0,0 -k1,8036:32583029,18936089:20411316 -g1,8036:32583029,18936089 -) -(1,8036:6797234,19602267:25785795,404226,82312 -h1,8036:6797234,19602267:0,0,0 -g1,8036:7745671,19602267 -g1,8036:9326399,19602267 -g1,8036:9642545,19602267 -g1,8036:9958691,19602267 -g1,8036:10274837,19602267 -g1,8036:10907129,19602267 -g1,8036:11223275,19602267 -g1,8036:11539421,19602267 -g1,8036:11855567,19602267 -h1,8036:12171713,19602267:0,0,0 -k1,8036:32583029,19602267:20411316 -g1,8036:32583029,19602267 -) -(1,8036:6797234,20268445:25785795,404226,82312 -h1,8036:6797234,20268445:0,0,0 -g1,8036:7745671,20268445 -g1,8036:9326399,20268445 -g1,8036:9642545,20268445 -g1,8036:9958691,20268445 -g1,8036:10274837,20268445 -g1,8036:10907129,20268445 -g1,8036:11223275,20268445 -g1,8036:11539421,20268445 -g1,8036:11855567,20268445 -h1,8036:12171713,20268445:0,0,0 -k1,8036:32583029,20268445:20411316 -g1,8036:32583029,20268445 -) -(1,8036:6797234,20934623:25785795,404226,82312 -h1,8036:6797234,20934623:0,0,0 -g1,8036:7745671,20934623 -g1,8036:9326399,20934623 -g1,8036:9642545,20934623 -g1,8036:9958691,20934623 -g1,8036:10274837,20934623 -g1,8036:10907129,20934623 -g1,8036:11223275,20934623 -g1,8036:11539421,20934623 -g1,8036:11855567,20934623 -h1,8036:12171713,20934623:0,0,0 -k1,8036:32583029,20934623:20411316 -g1,8036:32583029,20934623 -) -(1,8036:6797234,21600801:25785795,404226,82312 -h1,8036:6797234,21600801:0,0,0 -g1,8036:7745671,21600801 -g1,8036:9326399,21600801 -g1,8036:9642545,21600801 -g1,8036:9958691,21600801 -g1,8036:10274837,21600801 -g1,8036:10907129,21600801 -g1,8036:11223275,21600801 -g1,8036:11539421,21600801 -h1,8036:12171712,21600801:0,0,0 -k1,8036:32583028,21600801:20411316 -g1,8036:32583028,21600801 -) -(1,8038:6797234,22922339:25785795,404226,82312 -(1,8037:6797234,22922339:0,0,0 -g1,8037:6797234,22922339 -g1,8037:6797234,22922339 -g1,8037:6469554,22922339 -(1,8037:6469554,22922339:0,0,0 -) -g1,8037:6797234,22922339 -) -k1,8038:6797234,22922339:0 -g1,8038:9326400,22922339 -h1,8038:11223274,22922339:0,0,0 -k1,8038:32583030,22922339:21359756 -g1,8038:32583030,22922339 -) -(1,8042:6797234,23588517:25785795,404226,76021 -(1,8040:6797234,23588517:0,0,0 -g1,8040:6797234,23588517 -g1,8040:6797234,23588517 -g1,8040:6469554,23588517 -(1,8040:6469554,23588517:0,0,0 -) -g1,8040:6797234,23588517 -) -g1,8042:7745671,23588517 -g1,8042:9010254,23588517 -g1,8042:9642546,23588517 -h1,8042:9958692,23588517:0,0,0 -k1,8042:32583028,23588517:22624336 -g1,8042:32583028,23588517 -) -(1,8044:6797234,24910055:25785795,404226,82312 -(1,8043:6797234,24910055:0,0,0 -g1,8043:6797234,24910055 -g1,8043:6797234,24910055 -g1,8043:6469554,24910055 -(1,8043:6469554,24910055:0,0,0 -) -g1,8043:6797234,24910055 -) -k1,8044:6797234,24910055:0 -g1,8044:9326400,24910055 -g1,8044:11539420,24910055 -g1,8044:12487858,24910055 -g1,8044:14068588,24910055 -h1,8044:14700880,24910055:0,0,0 -k1,8044:32583028,24910055:17882148 -g1,8044:32583028,24910055 -) -(1,8045:6797234,25576233:25785795,328204,0 -h1,8045:6797234,25576233:0,0,0 -h1,8045:7113380,25576233:0,0,0 -k1,8045:32583028,25576233:25469648 -g1,8045:32583028,25576233 -) -(1,8051:6797234,26242411:25785795,404226,82312 -(1,8047:6797234,26242411:0,0,0 -g1,8047:6797234,26242411 -g1,8047:6797234,26242411 -g1,8047:6469554,26242411 -(1,8047:6469554,26242411:0,0,0 -) -g1,8047:6797234,26242411 -) -g1,8051:7745671,26242411 -g1,8051:8061817,26242411 -g1,8051:8377963,26242411 -g1,8051:8694109,26242411 -g1,8051:9010255,26242411 -g1,8051:9326401,26242411 -g1,8051:10907130,26242411 -g1,8051:12487859,26242411 -g1,8051:14068588,26242411 -g1,8051:15649317,26242411 -k1,8051:15649317,26242411:0 -h1,8051:16913900,26242411:0,0,0 -k1,8051:32583029,26242411:15669129 -g1,8051:32583029,26242411 -) -(1,8051:6797234,26908589:25785795,404226,82312 -h1,8051:6797234,26908589:0,0,0 -g1,8051:7745671,26908589 -g1,8051:9326399,26908589 -g1,8051:9642545,26908589 -g1,8051:9958691,26908589 -g1,8051:10274837,26908589 -g1,8051:10907129,26908589 -g1,8051:11223275,26908589 -g1,8051:11539421,26908589 -g1,8051:11855567,26908589 -g1,8051:12487859,26908589 -g1,8051:12804005,26908589 -g1,8051:13120151,26908589 -g1,8051:13436297,26908589 -g1,8051:14068589,26908589 -g1,8051:14384735,26908589 -g1,8051:14700881,26908589 -g1,8051:15017027,26908589 -g1,8051:15649319,26908589 -g1,8051:15965465,26908589 -g1,8051:16281611,26908589 -g1,8051:16597757,26908589 -h1,8051:16913903,26908589:0,0,0 -k1,8051:32583029,26908589:15669126 -g1,8051:32583029,26908589 -) -(1,8051:6797234,27574767:25785795,404226,82312 -h1,8051:6797234,27574767:0,0,0 -g1,8051:7745671,27574767 -g1,8051:9326399,27574767 -g1,8051:9642545,27574767 -g1,8051:9958691,27574767 -g1,8051:10274837,27574767 -g1,8051:10907129,27574767 -g1,8051:11223275,27574767 -g1,8051:11539421,27574767 -g1,8051:11855567,27574767 -g1,8051:12487859,27574767 -g1,8051:12804005,27574767 -g1,8051:13120151,27574767 -g1,8051:13436297,27574767 -g1,8051:14068589,27574767 -g1,8051:14384735,27574767 -g1,8051:14700881,27574767 -g1,8051:15017027,27574767 -g1,8051:15649319,27574767 -g1,8051:15965465,27574767 -g1,8051:16281611,27574767 -h1,8051:16913902,27574767:0,0,0 -k1,8051:32583029,27574767:15669127 -g1,8051:32583029,27574767 -) -(1,8053:6797234,28896305:25785795,404226,82312 -(1,8052:6797234,28896305:0,0,0 -g1,8052:6797234,28896305 -g1,8052:6797234,28896305 -g1,8052:6469554,28896305 -(1,8052:6469554,28896305:0,0,0 -) -g1,8052:6797234,28896305 -) -k1,8053:6797234,28896305:0 -g1,8053:9326400,28896305 -g1,8053:11539420,28896305 -g1,8053:12487858,28896305 -k1,8053:12487858,28896305:0 -h1,8053:13752441,28896305:0,0,0 -k1,8053:32583029,28896305:18830588 -g1,8053:32583029,28896305 -) -(1,8054:6797234,29562483:25785795,404226,76021 -h1,8054:6797234,29562483:0,0,0 -k1,8054:6797234,29562483:0 -h1,8054:10590982,29562483:0,0,0 -k1,8054:32583030,29562483:21992048 -g1,8054:32583030,29562483 -) -(1,8058:6797234,30228661:25785795,404226,76021 -(1,8056:6797234,30228661:0,0,0 -g1,8056:6797234,30228661 -g1,8056:6797234,30228661 -g1,8056:6469554,30228661 -(1,8056:6469554,30228661:0,0,0 -) -g1,8056:6797234,30228661 -) -g1,8058:7745671,30228661 -g1,8058:9010254,30228661 -h1,8058:10274837,30228661:0,0,0 -k1,8058:32583029,30228661:22308192 -g1,8058:32583029,30228661 -) -(1,8060:6797234,31550199:25785795,328204,0 -(1,8059:6797234,31550199:0,0,0 -g1,8059:6797234,31550199 -g1,8059:6797234,31550199 -g1,8059:6469554,31550199 -(1,8059:6469554,31550199:0,0,0 -) -g1,8059:6797234,31550199 -) -h1,8060:7113380,31550199:0,0,0 -k1,8060:32583028,31550199:25469648 -g1,8060:32583028,31550199 -) -(1,8064:6797234,32216377:25785795,404226,76021 -(1,8062:6797234,32216377:0,0,0 -g1,8062:6797234,32216377 -g1,8062:6797234,32216377 -g1,8062:6469554,32216377 -(1,8062:6469554,32216377:0,0,0 -) -g1,8062:6797234,32216377 -) -g1,8064:7745671,32216377 -g1,8064:8061817,32216377 -g1,8064:9326400,32216377 -g1,8064:9642546,32216377 -g1,8064:10274838,32216377 -g1,8064:10590984,32216377 -g1,8064:11223276,32216377 -g1,8064:11539422,32216377 -g1,8064:12171714,32216377 -g1,8064:12487860,32216377 -g1,8064:13120152,32216377 -g1,8064:13436298,32216377 -g1,8064:14068590,32216377 -g1,8064:14384736,32216377 -g1,8064:15017028,32216377 -g1,8064:15333174,32216377 -g1,8064:15965466,32216377 -g1,8064:16281612,32216377 -g1,8064:16913904,32216377 -g1,8064:17230050,32216377 -g1,8064:17862342,32216377 -h1,8064:18494633,32216377:0,0,0 -k1,8064:32583029,32216377:14088396 -g1,8064:32583029,32216377 -) -] -) -g1,8065:32583029,32292398 -g1,8065:6797234,32292398 -g1,8065:6797234,32292398 -g1,8065:32583029,32292398 -g1,8065:32583029,32292398 -) -h1,8065:6797234,32489006:0,0,0 -(1,8069:6797234,33854782:25785795,513147,115847 -h1,8068:6797234,33854782:983040,0,0 -g1,8068:8607338,33854782 -g1,8068:10009808,33854782 -g1,8068:11576118,33854782 -g1,8068:12643699,33854782 -g1,8068:14611745,33854782 -g1,8068:16286189,33854782 -g1,8068:17998644,33854782 -(1,8068:17998644,33854782:0,452978,115847 -r1,8084:19763757,33854782:1765113,568825,115847 -k1,8068:17998644,33854782:-1765113 -) -(1,8068:17998644,33854782:1765113,452978,115847 -k1,8068:17998644,33854782:3277 -h1,8068:19760480,33854782:0,411205,112570 -) -g1,8068:19962986,33854782 -g1,8068:22489398,33854782 -g1,8068:23355783,33854782 -(1,8068:23355783,33854782:0,452978,115847 -r1,8084:25472608,33854782:2116825,568825,115847 -k1,8068:23355783,33854782:-2116825 -) -(1,8068:23355783,33854782:2116825,452978,115847 -k1,8068:23355783,33854782:3277 -h1,8068:25469331,33854782:0,411205,112570 -) -k1,8069:32583029,33854782:6936751 -g1,8069:32583029,33854782 -) -] -g1,8069:32583029,33970629 -) -h1,8069:6630773,33970629:0,0,0 -v1,8072:6630773,35336405:0,393216,0 -(1,8073:6630773,41781753:25952256,6838564,0 -g1,8073:6630773,41781753 -g1,8073:6303093,41781753 -r1,8084:6401397,41781753:98304,6838564,0 -g1,8073:6600626,41781753 -g1,8073:6797234,41781753 -[1,8073:6797234,41781753:25785795,6838564,0 -(1,8073:6797234,35756989:25785795,813800,267386 -(1,8072:6797234,35756989:0,813800,267386 -r1,8084:8134168,35756989:1336934,1081186,267386 -k1,8072:6797234,35756989:-1336934 -) -(1,8072:6797234,35756989:1336934,813800,267386 -) -k1,8072:8360771,35756989:226603 -k1,8072:8688451,35756989:327680 -k1,8072:10747441,35756989:226603 -k1,8072:11505541,35756989:226603 -k1,8072:12541515,35756989:226604 -k1,8072:16081618,35756989:226603 -k1,8072:16959649,35756989:226603 -k1,8072:18205337,35756989:226603 -k1,8072:21198215,35756989:226603 -k1,8072:23780182,35756989:226603 -k1,8072:26824179,35756989:226604 -k1,8072:28242227,35756989:226603 -k1,8072:30871380,35756989:226603 -k1,8072:31757275,35756989:226603 -k1,8073:32583029,35756989:0 -) -(1,8073:6797234,36598477:25785795,513147,134348 -k1,8072:9702848,36598477:235677 -k1,8072:11010695,36598477:235678 -k1,8072:12312643,36598477:235677 -k1,8072:13314437,36598477:235678 -k1,8072:16575911,36598477:235677 -k1,8072:18003033,36598477:235677 -k1,8072:21315626,36598477:235678 -k1,8072:22835809,36598477:235677 -k1,8072:24175768,36598477:235677 -k1,8072:25159212,36598477:235678 -k1,8072:26908115,36598477:235677 -k1,8072:27795221,36598477:235678 -k1,8072:30293201,36598477:235677 -k1,8072:32583029,36598477:0 -) -(1,8073:6797234,37439965:25785795,505283,134348 -k1,8072:8142797,37439965:213101 -k1,8072:11082851,37439965:213101 -k1,8072:15576765,37439965:213102 -k1,8072:19072564,37439965:213101 -k1,8072:20666509,37439965:213101 -k1,8072:21983892,37439965:213101 -k1,8072:22944759,37439965:213101 -k1,8072:23513720,37439965:213101 -k1,8072:26403312,37439965:213102 -k1,8072:28314451,37439965:213101 -k1,8072:30262945,37439965:213101 -k1,8072:32168186,37439965:213101 -k1,8073:32583029,37439965:0 -) -(1,8073:6797234,38281453:25785795,505283,134348 -k1,8072:10147911,38281453:266553 -k1,8072:11908030,38281453:266553 -k1,8072:12860744,38281453:266552 -k1,8072:14146382,38281453:266553 -k1,8072:17794592,38281453:266553 -k1,8072:18984547,38281453:266553 -k1,8072:20986493,38281453:266553 -k1,8072:23480615,38281453:266553 -k1,8072:26856195,38281453:266552 -k1,8072:27654245,38281453:266553 -k1,8072:28276658,38281453:266553 -k1,8072:32583029,38281453:0 -) -(1,8073:6797234,39122941:25785795,505283,134348 -k1,8072:8938022,39122941:185849 -k1,8072:10408377,39122941:185849 -k1,8072:12881433,39122941:185849 -k1,8072:13598779,39122941:185849 -k1,8072:17349787,39122941:185849 -k1,8072:21256770,39122941:185849 -k1,8072:22818221,39122941:185850 -k1,8072:24702108,39122941:185849 -k1,8072:27966838,39122941:185849 -k1,8072:28508547,39122941:185849 -k1,8072:29977591,39122941:185849 -k1,8072:31718609,39122941:185849 -k1,8073:32583029,39122941:0 -) -(1,8073:6797234,39964429:25785795,513147,134348 -k1,8072:9068224,39964429:241995 -k1,8072:10704170,39964429:241995 -k1,8072:11965250,39964429:241995 -k1,8072:16830811,39964429:241996 -k1,8072:19857431,39964429:241995 -k1,8072:21047077,39964429:241995 -k1,8072:21920839,39964429:241995 -k1,8072:22650379,39964429:241952 -k1,8072:24476380,39964429:241996 -k1,8072:27379792,39964429:241995 -k1,8072:28281079,39964429:241995 -k1,8072:31490544,39964429:241995 -k1,8072:32583029,39964429:0 -) -(1,8073:6797234,40805917:25785795,513147,134348 -k1,8072:7656172,40805917:199646 -k1,8072:12021287,40805917:199647 -k1,8072:15329961,40805917:199646 -k1,8072:16521167,40805917:199646 -k1,8072:17739899,40805917:199647 -k1,8072:19950190,40805917:199646 -k1,8072:22928564,40805917:199647 -k1,8072:23889738,40805917:199646 -k1,8072:26077091,40805917:199646 -k1,8072:28211361,40805917:199647 -k1,8072:31436804,40805917:199646 -k1,8073:32583029,40805917:0 -) -(1,8073:6797234,41647405:25785795,505283,134348 -(1,8072:6797234,41647405:0,452978,115847 -r1,8084:8210635,41647405:1413401,568825,115847 -k1,8072:6797234,41647405:-1413401 -) -(1,8072:6797234,41647405:1413401,452978,115847 -k1,8072:6797234,41647405:3277 -h1,8072:8207358,41647405:0,411205,112570 -) -g1,8072:8409864,41647405 -g1,8072:9841170,41647405 -g1,8072:12319086,41647405 -h1,8072:13289674,41647405:0,0,0 -g1,8072:13488903,41647405 -g1,8072:14497502,41647405 -g1,8072:16194884,41647405 -h1,8072:17390261,41647405:0,0,0 -k1,8073:32583029,41647405:14812004 -g1,8073:32583029,41647405 -) -] -g1,8073:32583029,41781753 -) -h1,8073:6630773,41781753:0,0,0 -] -(1,8084:32583029,45706769:0,0,0 -g1,8084:32583029,45706769 -) -) -] -(1,8084:6630773,47279633:25952256,0,0 -h1,8084:6630773,47279633:25952256,0,0 -) -] -(1,8084:4262630,4025873:0,0,0 -[1,8084:-473656,4025873:0,0,0 -(1,8084:-473656,-710413:0,0,0 -(1,8084:-473656,-710413:0,0,0 -g1,8084:-473656,-710413 -) -g1,8084:-473656,-710413 -) -] -) -] -!23286 -}131 -Input:1105:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1106:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1107:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1108:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1109:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1110:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1111:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1112:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!764 -{132 -[1,8127:4262630,47279633:28320399,43253760,0 -(1,8127:4262630,4025873:0,0,0 -[1,8127:-473656,4025873:0,0,0 -(1,8127:-473656,-710413:0,0,0 -(1,8127:-473656,-644877:0,0,0 -k1,8127:-473656,-644877:-65536 ) -(1,8127:-473656,4736287:0,0,0 -k1,8127:-473656,4736287:5209943 +g1,6808:17165887,9972790 ) -g1,8127:-473656,-710413 ) -] +g1,6808:15470864,9972790 +g1,6808:15470864,9972790 ) -[1,8127:6630773,47279633:25952256,43253760,0 -[1,8127:6630773,4812305:25952256,786432,0 -(1,8127:6630773,4812305:25952256,505283,134348 -(1,8127:6630773,4812305:25952256,505283,134348 -g1,8127:3078558,4812305 -[1,8127:3078558,4812305:0,0,0 -(1,8127:3078558,2439708:0,1703936,0 -k1,8127:1358238,2439708:-1720320 -(1,5950:1358238,2439708:1720320,1703936,0 -(1,5950:1358238,2439708:1179648,16384,0 -r1,8127:2537886,2439708:1179648,16384,0 ) -g1,5950:3062174,2439708 -(1,5950:3062174,2439708:16384,1703936,0 -[1,5950:3062174,2439708:25952256,1703936,0 -(1,5950:3062174,1915420:25952256,1179648,0 -(1,5950:3062174,1915420:16384,1179648,0 -r1,8127:3078558,1915420:16384,1179648,0 +g1,6808:15470864,9972790 +g1,6810:15470864,9972790 +(1,6810:15470864,9972790:0,0,0 +(1,6810:15470864,9972790:0,0,0 +g1,6810:15470864,9972790 +g1,6810:15470864,9972790 +g1,6810:15470864,9972790 +g1,6810:15470864,9972790 +g1,6810:15470864,9972790 +(1,6810:15470864,9972790:0,0,0 +(1,6810:15470864,9972790:6599312,404226,101187 +(1,6810:15470864,9972790:6599312,404226,101187 +(1,6810:15470864,9972790:0,363038,98932 +r1,6909:17447004,9972790:1976140,461970,98932 +k1,6810:15470864,9972790:-1976140 ) -k1,5950:29014430,1915420:25935872 -g1,5950:29014430,1915420 +(1,6810:15470864,9972790:1976140,363038,98932 +k1,6810:15470864,9972790:3277 +h1,6810:17443727,9972790:0,328964,90056 ) -] +g1,6810:17612679,9972790 +g1,6810:20284451,9972790 ) +g1,6810:22070176,9972790 ) ) -] -[1,8127:3078558,4812305:0,0,0 -(1,8127:3078558,2439708:0,1703936,0 -g1,8127:29030814,2439708 -g1,8127:36135244,2439708 -(1,5950:36135244,2439708:1720320,1703936,0 -(1,5950:36135244,2439708:16384,1703936,0 -[1,5950:36135244,2439708:25952256,1703936,0 -(1,5950:36135244,1915420:25952256,1179648,0 -(1,5950:36135244,1915420:16384,1179648,0 -r1,8127:36151628,1915420:16384,1179648,0 +g1,6810:15470864,9972790 +g1,6810:15470864,9972790 ) -k1,5950:62087500,1915420:25935872 -g1,5950:62087500,1915420 ) -] +g1,6810:15470864,9972790 +g1,6811:15470864,9972790 +(1,6811:15470864,9972790:0,0,0 +(1,6811:15470864,9972790:0,0,0 +g1,6811:15470864,9972790 +g1,6811:15470864,9972790 +g1,6811:15470864,9972790 +g1,6811:15470864,9972790 +g1,6811:15470864,9972790 +(1,6811:15470864,9972790:0,0,0 +(1,6811:15470864,9972790:8577352,404226,107478 +(1,6811:15470864,9972790:8577352,404226,107478 +g1,6811:19349547,9972790 +g1,6811:20923984,9972790 +g1,6811:22431836,9972790 ) -g1,5950:36675916,2439708 -(1,5950:36675916,2439708:1179648,16384,0 -r1,8127:37855564,2439708:1179648,16384,0 +g1,6811:24048216,9972790 ) ) -k1,8127:3078556,2439708:-34777008 +g1,6811:15470864,9972790 +g1,6811:15470864,9972790 ) -] -[1,8127:3078558,4812305:0,0,0 -(1,8127:3078558,49800853:0,16384,2228224 -k1,8127:1358238,49800853:-1720320 -(1,5950:1358238,49800853:1720320,16384,2228224 -(1,5950:1358238,49800853:1179648,16384,0 -r1,8127:2537886,49800853:1179648,16384,0 ) -g1,5950:3062174,49800853 -(1,5950:3062174,52029077:16384,1703936,0 -[1,5950:3062174,52029077:25952256,1703936,0 -(1,5950:3062174,51504789:25952256,1179648,0 -(1,5950:3062174,51504789:16384,1179648,0 -r1,8127:3078558,51504789:16384,1179648,0 +g1,6811:15470864,9972790 +g1,6812:15470864,9972790 +(1,6812:15470864,9972790:0,0,0 +(1,6812:15470864,9972790:0,0,0 +g1,6812:15470864,9972790 +g1,6812:15470864,9972790 +g1,6812:15470864,9972790 +g1,6812:15470864,9972790 +g1,6812:15470864,9972790 +(1,6812:15470864,9972790:0,0,0 +(1,6812:15470864,9972790:6414941,404226,93333 +(1,6812:15470864,9972790:6414941,404226,93333 +(1,6812:15470864,9972790:0,363038,93333 +r1,6909:18009743,9972790:2538879,456371,93333 +k1,6812:15470864,9972790:-2538879 ) -k1,5950:29014430,51504789:25935872 -g1,5950:29014430,51504789 +(1,6812:15470864,9972790:2538879,363038,93333 +k1,6812:15470864,9972790:3277 +h1,6812:18006466,9972790:0,328964,90056 ) -] +g1,6812:18175418,9972790 +g1,6812:20222763,9972790 ) +g1,6812:21885805,9972790 ) ) -] -[1,8127:3078558,4812305:0,0,0 -(1,8127:3078558,49800853:0,16384,2228224 -g1,8127:29030814,49800853 -g1,8127:36135244,49800853 -(1,5950:36135244,49800853:1720320,16384,2228224 -(1,5950:36135244,52029077:16384,1703936,0 -[1,5950:36135244,52029077:25952256,1703936,0 -(1,5950:36135244,51504789:25952256,1179648,0 -(1,5950:36135244,51504789:16384,1179648,0 -r1,8127:36151628,51504789:16384,1179648,0 +g1,6812:15470864,9972790 +g1,6812:15470864,9972790 ) -k1,5950:62087500,51504789:25935872 -g1,5950:62087500,51504789 ) -] +g1,6812:15470864,9972790 +(1,6815:15470864,9972790:0,0,0 +(1,6815:15470864,9972790:0,0,0 +g1,6815:15470864,9972790 +g1,6815:15470864,9972790 +(1,6815:15470864,9972790:0,0,0 +(1,6815:15470864,9972790:843055,479396,205458 +(1,6815:15470864,9972790:843055,479396,205458 +r1,6909:16313919,9972790:0,684854,205458 ) -g1,5950:36675916,49800853 -(1,5950:36675916,49800853:1179648,16384,0 -r1,8127:37855564,49800853:1179648,16384,0 +g1,6815:16313919,9972790 ) ) -k1,8127:3078556,49800853:-34777008 +g1,6815:15470864,9972790 +(1,6815:15470864,9972790:0,0,0 +(1,6815:15470864,9972790:1072169,479396,205458 +r1,6909:16543033,9972790:0,684854,205458 ) -] -g1,8127:6630773,4812305 -g1,8127:6630773,4812305 -g1,8127:8951402,4812305 -g1,8127:10361081,4812305 -g1,8127:12911086,4812305 -g1,8127:14538345,4812305 -k1,8127:31387653,4812305:16849308 ) +g1,6815:15470864,9972790 +(1,6815:15470864,9972790:0,0,0 +(1,6815:15470864,9972790:843055,479396,205458 +r1,6909:16313919,9972790:0,684854,205458 ) -] -[1,8127:6630773,45706769:25952256,40108032,0 -(1,8127:6630773,45706769:25952256,40108032,0 -(1,8127:6630773,45706769:0,0,0 -g1,8127:6630773,45706769 ) -[1,8127:6630773,45706769:25952256,40108032,0 -(1,8079:6630773,6254097:25952256,32768,229376 -(1,8079:6630773,6254097:0,32768,229376 -(1,8079:6630773,6254097:5505024,32768,229376 -r1,8127:12135797,6254097:5505024,262144,229376 +g1,6815:15470864,9972790 +(1,6815:15470864,9972790:0,0,0 +(1,6815:15470864,9972790:524288,479396,205458 +r1,6909:15995152,9972790:0,684854,205458 ) -k1,8079:6630773,6254097:-5505024 -) -(1,8079:6630773,6254097:25952256,32768,0 -r1,8127:32583029,6254097:25952256,32768,0 -) -) -(1,8079:6630773,7858425:25952256,606339,161218 -(1,8079:6630773,7858425:1974731,575668,0 -g1,8079:6630773,7858425 -g1,8079:8605504,7858425 -) -g1,8079:11483059,7858425 -g1,8079:13192762,7858425 -g1,8079:16369948,7858425 -k1,8079:32583029,7858425:14519893 -g1,8079:32583029,7858425 -) -(1,8081:6630773,9163253:25952256,555811,147783 -(1,8081:6630773,9163253:2450326,527696,0 -g1,8081:6630773,9163253 -g1,8081:9081099,9163253 -) -g1,8081:10960475,9163253 -g1,8081:12626466,9163253 -g1,8081:13557143,9163253 -g1,8081:14279481,9163253 -g1,8081:15846709,9163253 -k1,8081:32583029,9163253:13388479 -g1,8081:32583029,9163253 -) -(1,8084:6630773,10397957:25952256,513147,134348 -k1,8083:7709192,10397957:249389 -k1,8083:8706348,10397957:249390 -k1,8083:10264491,10397957:249389 -k1,8083:11165309,10397957:249390 -k1,8083:13820525,10397957:249389 -k1,8083:15720112,10397957:249390 -k1,8083:19582501,10397957:249389 -k1,8083:22997280,10397957:249390 -k1,8083:24115021,10397957:249389 -k1,8083:25894677,10397957:249390 -k1,8083:27836206,10397957:249389 -k1,8083:29282283,10397957:249390 -k1,8083:31094706,10397957:249389 -k1,8083:32583029,10397957:0 -) -(1,8084:6630773,11239445:25952256,513147,126483 -k1,8083:7787671,11239445:288546 -k1,8083:9168703,11239445:288547 -(1,8083:9168703,11239445:0,414482,115847 -r1,8127:10582104,11239445:1413401,530329,115847 -k1,8083:9168703,11239445:-1413401 -) -(1,8083:9168703,11239445:1413401,414482,115847 -k1,8083:9168703,11239445:3277 -h1,8083:10578827,11239445:0,411205,112570 -) -k1,8083:11044320,11239445:288546 -k1,8083:12489577,11239445:288547 -k1,8083:13437415,11239445:288546 -k1,8083:14745047,11239445:288547 -k1,8083:16785370,11239445:288546 -k1,8083:18463280,11239445:288547 -k1,8083:20016671,11239445:288546 -k1,8083:23063628,11239445:288547 -k1,8083:23968212,11239445:288546 -k1,8083:25690687,11239445:288547 -k1,8083:26567746,11239445:288546 -k1,8083:29646161,11239445:288547 -(1,8083:29646161,11239445:0,452978,115847 -r1,8127:31762986,11239445:2116825,568825,115847 -k1,8083:29646161,11239445:-2116825 -) -(1,8083:29646161,11239445:2116825,452978,115847 -k1,8083:29646161,11239445:3277 -h1,8083:31759709,11239445:0,411205,112570 -) -k1,8083:32051532,11239445:288546 -k1,8083:32583029,11239445:0 -) -(1,8084:6630773,12080933:25952256,505283,134348 -k1,8083:8420173,12080933:276174 -k1,8083:9347775,12080933:276174 -k1,8083:11000205,12080933:276174 -k1,8083:12665742,12080933:276174 -k1,8083:15231743,12080933:276173 -k1,8083:16792423,12080933:276174 -k1,8083:18060157,12080933:276174 -k1,8083:21094741,12080933:276174 -k1,8083:21986953,12080933:276174 -k1,8083:22677893,12080933:276097 -k1,8083:23636952,12080933:276174 -k1,8083:27052955,12080933:276173 -k1,8083:27945167,12080933:276174 -k1,8083:31305465,12080933:276174 -k1,8083:32051532,12080933:276174 -k1,8083:32583029,12080933:0 -) -(1,8084:6630773,12922421:25952256,513147,134348 -k1,8083:8138706,12922421:222117 -k1,8083:10990782,12922421:222116 -k1,8083:11864327,12922421:222117 -k1,8083:14268137,12922421:222116 -k1,8083:15879617,12922421:222117 -k1,8083:17913148,12922421:222116 -k1,8083:18751303,12922421:222117 -k1,8083:20286761,12922421:222116 -k1,8083:21902829,12922421:222117 -k1,8083:24387248,12922421:222116 -k1,8083:27293720,12922421:222117 -k1,8083:29897414,12922421:222116 -k1,8083:30881059,12922421:222117 -k1,8083:32583029,12922421:0 -) -(1,8084:6630773,13763909:25952256,513147,134348 -k1,8083:9613495,13763909:223656 -k1,8083:10520037,13763909:223657 -k1,8083:14087340,13763909:223656 -k1,8083:15824223,13763909:223657 -k1,8083:16995530,13763909:223656 -k1,8083:18608550,13763909:223657 -k1,8083:21958929,13763909:223656 -k1,8083:24717519,13763909:223657 -k1,8083:27742183,13763909:223656 -k1,8083:30724250,13763909:223657 -k1,8083:31563944,13763909:223656 -k1,8084:32583029,13763909:0 -) -(1,8084:6630773,14605397:25952256,513147,134348 -k1,8083:7280268,14605397:234652 -k1,8083:11470054,14605397:234688 -k1,8083:12390904,14605397:234688 -k1,8083:13904199,14605397:234688 -k1,8083:14825049,14605397:234688 -k1,8083:18789391,14605397:234688 -k1,8083:21934532,14605397:234687 -k1,8083:23884953,14605397:234688 -k1,8083:26903610,14605397:234688 -k1,8083:30164095,14605397:234688 -k1,8083:32583029,14605397:0 -) -(1,8084:6630773,15446885:25952256,513147,134348 -k1,8083:7477170,15446885:187105 -k1,8083:10066825,15446885:187105 -k1,8083:11445375,15446885:187105 -k1,8083:14539657,15446885:187105 -k1,8083:17069019,15446885:187105 -k1,8083:19541364,15446885:187105 -k1,8083:22412825,15446885:187106 -k1,8083:24020751,15446885:187105 -k1,8083:24859284,15446885:187105 -k1,8083:26458690,15446885:187105 -k1,8083:27328680,15446885:187105 -k1,8083:29697479,15446885:187105 -k1,8083:32583029,15446885:0 -) -(1,8084:6630773,16288373:25952256,505283,126483 -k1,8083:8194278,16288373:174142 -k1,8083:8899917,16288373:174142 -k1,8083:12203403,16288373:174142 -k1,8083:12993584,16288373:174143 -k1,8083:13582544,16288373:174117 -k1,8083:18582757,16288373:174142 -k1,8083:19372937,16288373:174142 -k1,8083:19996631,16288373:174117 -k1,8083:21704971,16288373:174142 -k1,8083:26503988,16288373:174142 -k1,8083:27869576,16288373:174143 -k1,8083:28659756,16288373:174142 -k1,8083:30037139,16288373:174142 -k1,8083:31966991,16288373:174142 -k1,8083:32583029,16288373:0 -) -(1,8084:6630773,17129861:25952256,513147,134348 -k1,8083:9271643,17129861:223247 -h1,8083:10068561,17129861:0,0,0 -k1,8083:10291807,17129861:223246 -k1,8083:11324424,17129861:223247 -k1,8083:13045823,17129861:223246 -h1,8083:14241200,17129861:0,0,0 -k1,8083:14638117,17129861:223247 -k1,8083:15331256,17129861:223246 -k1,8083:16086000,17129861:223247 -k1,8083:17595062,17129861:223246 -k1,8083:19402314,17129861:223247 -k1,8083:20276988,17129861:223246 -k1,8083:22008218,17129861:223247 -k1,8083:22847502,17129861:223246 -k1,8083:24727499,17129861:223247 -k1,8083:26235251,17129861:223246 -k1,8083:27074536,17129861:223247 -k1,8083:27886295,17129861:223246 -k1,8083:29721072,17129861:223247 -k1,8083:32583029,17129861:0 -) -(1,8084:6630773,17971349:25952256,513147,134348 -k1,8083:9791063,17971349:259011 -k1,8083:12976258,17971349:259012 -k1,8083:14226829,17971349:259011 -k1,8083:17301923,17971349:259012 -k1,8083:18247096,17971349:259011 -k1,8083:21908737,17971349:259012 -k1,8083:22819176,17971349:259011 -k1,8083:24097272,17971349:259011 -(1,8083:24097272,17971349:0,459977,115847 -r1,8127:25510673,17971349:1413401,575824,115847 -k1,8083:24097272,17971349:-1413401 -) -(1,8083:24097272,17971349:1413401,459977,115847 -k1,8083:24097272,17971349:3277 -h1,8083:25507396,17971349:0,411205,112570 -) -k1,8083:25769685,17971349:259012 -k1,8083:26711581,17971349:259011 -(1,8083:26711581,17971349:0,452978,115847 -r1,8127:28124982,17971349:1413401,568825,115847 -k1,8083:26711581,17971349:-1413401 -) -(1,8083:26711581,17971349:1413401,452978,115847 -k1,8083:26711581,17971349:3277 -h1,8083:28121705,17971349:0,411205,112570 -) -k1,8083:28383994,17971349:259012 -k1,8083:31923737,17971349:259011 -k1,8083:32583029,17971349:0 -) -(1,8084:6630773,18812837:25952256,513147,134348 -g1,8083:8581779,18812837 -g1,8083:11806805,18812837 -g1,8083:13238111,18812837 -g1,8083:15716027,18812837 -h1,8083:17483533,18812837:0,0,0 -g1,8083:17682762,18812837 -g1,8083:18691361,18812837 -g1,8083:20388743,18812837 -h1,8083:21584120,18812837:0,0,0 -k1,8084:32583029,18812837:10618145 -g1,8084:32583029,18812837 -) -(1,8086:6630773,19654325:25952256,513147,134348 -h1,8085:6630773,19654325:983040,0,0 -k1,8085:8436028,19654325:194380 -k1,8085:9649494,19654325:194381 -k1,8085:11227994,19654325:194380 -k1,8085:14083792,19654325:194381 -k1,8085:15146524,19654325:194380 -k1,8085:16717161,19654325:194381 -k1,8085:18300904,19654325:194380 -k1,8085:21253695,19654325:194381 -k1,8085:22064113,19654325:194380 -k1,8085:22673332,19654325:194376 -k1,8085:23553874,19654325:194380 -k1,8085:24163093,19654325:194376 -k1,8085:26647301,19654325:194380 -k1,8085:27603210,19654325:194381 -k1,8085:29887533,19654325:194380 -k1,8086:32583029,19654325:0 -) -(1,8086:6630773,20495813:25952256,513147,134348 -(1,8085:6630773,20495813:0,452978,115847 -r1,8127:8747598,20495813:2116825,568825,115847 -k1,8085:6630773,20495813:-2116825 -) -(1,8085:6630773,20495813:2116825,452978,115847 -k1,8085:6630773,20495813:3277 -h1,8085:8744321,20495813:0,411205,112570 -) -g1,8085:9120497,20495813 -g1,8085:10516413,20495813 -g1,8085:12859980,20495813 -g1,8085:13474052,20495813 -g1,8085:15632807,20495813 -(1,8085:15632807,20495813:0,414482,115847 -r1,8127:17046208,20495813:1413401,530329,115847 -k1,8085:15632807,20495813:-1413401 -) -(1,8085:15632807,20495813:1413401,414482,115847 -k1,8085:15632807,20495813:3277 -h1,8085:17042931,20495813:0,411205,112570 -) -g1,8085:17245437,20495813 -g1,8085:17976163,20495813 -g1,8085:18531252,20495813 -g1,8085:20119844,20495813 -k1,8086:32583029,20495813:10413219 -g1,8086:32583029,20495813 -) -v1,8088:6630773,21686279:0,393216,0 -(1,8092:6630773,21969918:25952256,676855,196608 -g1,8092:6630773,21969918 -g1,8092:6630773,21969918 -g1,8092:6434165,21969918 -(1,8092:6434165,21969918:0,676855,196608 -r1,8127:32779637,21969918:26345472,873463,196608 -k1,8092:6434165,21969918:-26345472 -) -(1,8092:6434165,21969918:26345472,676855,196608 -[1,8092:6630773,21969918:25952256,480247,0 -(1,8090:6630773,21893897:25952256,404226,76021 -(1,8089:6630773,21893897:0,0,0 -g1,8089:6630773,21893897 -g1,8089:6630773,21893897 -g1,8089:6303093,21893897 -(1,8089:6303093,21893897:0,0,0 -) -g1,8089:6630773,21893897 -) -k1,8090:6630773,21893897:0 -h1,8090:9792230,21893897:0,0,0 -k1,8090:32583030,21893897:22790800 -g1,8090:32583030,21893897 -) -] -) -g1,8092:32583029,21969918 -g1,8092:6630773,21969918 -g1,8092:6630773,21969918 -g1,8092:32583029,21969918 -g1,8092:32583029,21969918 -) -h1,8092:6630773,22166526:0,0,0 -(1,8097:6630773,23532302:25952256,513147,126483 -h1,8095:6630773,23532302:983040,0,0 -k1,8095:9417077,23532302:198287 -k1,8095:10483716,23532302:198287 -k1,8095:12157219,23532302:198288 -k1,8095:12711366,23532302:198287 -k1,8095:14299016,23532302:198287 -k1,8095:15431846,23532302:198287 -k1,8095:18587774,23532302:198288 -k1,8095:19805146,23532302:198287 -k1,8095:21309566,23532302:198287 -k1,8095:22863138,23532302:198287 -k1,8095:23592923,23532302:198288 -k1,8095:26078417,23532302:198287 -k1,8095:26928132,23532302:198287 -k1,8095:29494890,23532302:198287 -k1,8095:30324945,23532302:198288 -k1,8095:31714677,23532302:198287 -k1,8095:32583029,23532302:0 -) -(1,8097:6630773,24373790:25952256,505283,134348 -g1,8095:7962464,24373790 -g1,8095:8976961,24373790 -g1,8095:10379431,24373790 -g1,8095:11972611,24373790 -(1,8095:11972611,24373790:0,414482,115847 -r1,8127:13386012,24373790:1413401,530329,115847 -k1,8095:11972611,24373790:-1413401 -) -(1,8095:11972611,24373790:1413401,414482,115847 -k1,8095:11972611,24373790:3277 -h1,8095:13382735,24373790:0,411205,112570 -) -g1,8095:13585241,24373790 -g1,8095:14400508,24373790 -g1,8095:16878424,24373790 -(1,8095:16878424,24373790:661914,485622,0 -) -g1,8095:17739567,24373790 -g1,8095:18748166,24373790 -g1,8095:20445548,24373790 -(1,8095:20445548,24373790:661914,485622,0 -) -g1,8095:21480361,24373790 -k1,8097:32583029,24373790:11102668 -g1,8097:32583029,24373790 -) -(1,8098:6630773,26465050:25952256,564462,8650 -(1,8098:6630773,26465050:2450326,534184,0 -g1,8098:6630773,26465050 -g1,8098:9081099,26465050 -) -g1,8098:10700953,26465050 -k1,8098:32583029,26465050:20380450 -g1,8098:32583029,26465050 -) -(1,8101:6630773,27699754:25952256,513147,134348 -k1,8100:7629340,27699754:238349 -k1,8100:10306939,27699754:238349 -k1,8100:11158051,27699754:238350 -k1,8100:12415485,27699754:238349 -k1,8100:13836759,27699754:238349 -k1,8100:14734400,27699754:238349 -k1,8100:15328610,27699754:238350 -k1,8100:18089440,27699754:238349 -k1,8100:19346874,27699754:238349 -k1,8100:21929446,27699754:238349 -k1,8100:25552075,27699754:238350 -k1,8100:29152421,27699754:238349 -k1,8100:30409855,27699754:238349 -k1,8100:32583029,27699754:0 -) -(1,8101:6630773,28541242:25952256,513147,134348 -k1,8100:7573355,28541242:283290 -k1,8100:9315475,28541242:283289 -k1,8100:11195222,28541242:283290 -k1,8100:12010008,28541242:283289 -k1,8100:14104713,28541242:283290 -k1,8100:15655468,28541242:283289 -k1,8100:16294618,28541242:283290 -k1,8100:17560947,28541242:283289 -k1,8100:19712013,28541242:283290 -(1,8100:19712013,28541242:0,414482,115847 -r1,8127:21828838,28541242:2116825,530329,115847 -k1,8100:19712013,28541242:-2116825 -) -(1,8100:19712013,28541242:2116825,414482,115847 -k1,8100:19712013,28541242:3277 -h1,8100:21825561,28541242:0,411205,112570 -) -k1,8100:22285797,28541242:283289 -k1,8100:23196922,28541242:283290 -k1,8100:26146216,28541242:283289 -k1,8100:27080934,28541242:283290 -k1,8100:29397806,28541242:283290 -k1,8100:30700180,28541242:283289 -k1,8100:32583029,28541242:0 -) -(1,8101:6630773,29382730:25952256,505283,134348 -k1,8100:10411079,29382730:222356 -k1,8100:11091532,29382730:222356 -k1,8100:11845384,29382730:222355 -k1,8100:14697700,29382730:222356 -k1,8100:15571484,29382730:222356 -k1,8100:17184514,29382730:222356 -k1,8100:18563580,29382730:222356 -k1,8100:19468820,29382730:222355 -k1,8100:21341373,29382730:222356 -k1,8100:21978549,29382730:222333 -k1,8100:24490733,29382730:222356 -k1,8100:27118915,29382730:222355 -k1,8100:27957309,29382730:222356 -k1,8100:29198750,29382730:222356 -k1,8100:32583029,29382730:0 -) -(1,8101:6630773,30224218:25952256,513147,134348 -k1,8100:7433537,30224218:151336 -k1,8100:8929672,30224218:151336 -k1,8100:10816400,30224218:151335 -k1,8100:11986821,30224218:151336 -k1,8100:13791630,30224218:151336 -k1,8100:14926006,30224218:151336 -k1,8100:17257724,30224218:151335 -k1,8100:19010105,30224218:151336 -k1,8100:20144481,30224218:151336 -k1,8100:22033832,30224218:151336 -k1,8100:23172139,30224218:151335 -(1,8100:23172139,30224218:0,452978,115847 -r1,8127:24585540,30224218:1413401,568825,115847 -k1,8100:23172139,30224218:-1413401 -) -(1,8100:23172139,30224218:1413401,452978,115847 -k1,8100:23172139,30224218:3277 -h1,8100:24582263,30224218:0,411205,112570 -) -k1,8100:24736876,30224218:151336 -k1,8100:25571097,30224218:151336 -(1,8100:25571097,30224218:0,452978,115847 -r1,8127:26984498,30224218:1413401,568825,115847 -k1,8100:25571097,30224218:-1413401 -) -(1,8100:25571097,30224218:1413401,452978,115847 -k1,8100:25571097,30224218:3277 -h1,8100:26981221,30224218:0,411205,112570 -) -k1,8100:27516598,30224218:151336 -k1,8100:28939331,30224218:151335 -k1,8100:29773552,30224218:151336 -k1,8100:31575085,30224218:151336 -k1,8101:32583029,30224218:0 -) -(1,8101:6630773,31065706:25952256,513147,134348 -k1,8100:8484612,31065706:185292 -k1,8100:11796627,31065706:185292 -k1,8100:12633347,31065706:185292 -k1,8100:13950446,31065706:185292 -k1,8100:15918317,31065706:185292 -k1,8100:16786494,31065706:185292 -k1,8100:18526955,31065706:185292 -k1,8100:19816530,31065706:185293 -k1,8100:20749588,31065706:185292 -k1,8100:22746295,31065706:185292 -k1,8100:24199053,31065706:185292 -k1,8100:24740205,31065706:185292 -k1,8100:26798516,31065706:185292 -k1,8100:27966848,31065706:185292 -k1,8100:29887533,31065706:185292 -k1,8101:32583029,31065706:0 -) -(1,8101:6630773,31907194:25952256,513147,134348 -(1,8100:6630773,31907194:0,452978,115847 -r1,8127:8747598,31907194:2116825,568825,115847 -k1,8100:6630773,31907194:-2116825 -) -(1,8100:6630773,31907194:2116825,452978,115847 -k1,8100:6630773,31907194:3277 -h1,8100:8744321,31907194:0,411205,112570 -) -k1,8100:9139229,31907194:217961 -k1,8100:11916371,31907194:217961 -k1,8100:13153416,31907194:217960 -k1,8100:14354417,31907194:217961 -k1,8100:17155807,31907194:217961 -k1,8100:18139884,31907194:217961 -k1,8100:19376929,31907194:217960 -k1,8100:21406305,31907194:217961 -k1,8100:23914094,31907194:217961 -k1,8100:25399521,31907194:217961 -k1,8100:26636566,31907194:217960 -k1,8100:29198750,31907194:217961 -k1,8100:32583029,31907194:0 -) -(1,8101:6630773,32748682:25952256,513147,134348 -k1,8100:8305225,32748682:280501 -k1,8100:10094365,32748682:280501 -k1,8100:12810185,32748682:280502 -k1,8100:15332673,32748682:280501 -k1,8100:17487504,32748682:280501 -k1,8100:19081347,32748682:280501 -k1,8100:20353409,32748682:280502 -k1,8100:23303191,32748682:280501 -k1,8100:25616619,32748682:280501 -k1,8100:27498820,32748682:280501 -k1,8100:28194083,32748682:280420 -k1,8100:32583029,32748682:0 -) -(1,8101:6630773,33590170:25952256,513147,134348 -k1,8100:7873570,33590170:222401 -k1,8100:10606655,33590170:222401 -k1,8100:11933338,33590170:222401 -k1,8100:12903505,33590170:222401 -k1,8100:14538207,33590170:222401 -k1,8100:15952053,33590170:222401 -k1,8100:18461005,33590170:222401 -k1,8100:19444933,33590170:222400 -k1,8100:21586228,33590170:222401 -k1,8100:24472668,33590170:222401 -k1,8100:25354361,33590170:222401 -k1,8100:26195422,33590170:222401 -k1,8100:29248978,33590170:222401 -k1,8100:30490464,33590170:222401 -k1,8100:32583029,33590170:0 -) -(1,8101:6630773,34431658:25952256,513147,126483 -k1,8100:9096595,34431658:200242 -k1,8100:11477220,34431658:200242 -k1,8100:13014397,34431658:200243 -k1,8100:13962405,34431658:200242 -k1,8100:15228918,34431658:200242 -k1,8100:18150215,34431658:200242 -k1,8100:19744408,34431658:200242 -k1,8100:21978232,34431658:200242 -k1,8100:22593317,34431658:200242 -k1,8100:25631268,34431658:200242 -k1,8100:28507345,34431658:200242 -k1,8100:32583029,34431658:0 -) -(1,8101:6630773,35273146:25952256,505283,134348 -k1,8100:7376301,35273146:214031 -k1,8100:9277229,35273146:214031 -k1,8100:10682704,35273146:214030 -k1,8100:13487373,35273146:214031 -k1,8100:14720489,35273146:214031 -k1,8100:17556615,35273146:214031 -k1,8100:19160009,35273146:214031 -k1,8100:19905537,35273146:214031 -k1,8100:22798679,35273146:214030 -k1,8100:24280176,35273146:214031 -k1,8100:26218444,35273146:214016 -k1,8100:29911126,35273146:214031 -k1,8100:32583029,35273146:0 -) -(1,8101:6630773,36114634:25952256,513147,134348 -k1,8100:9989165,36114634:161546 -k1,8100:13493047,36114634:161546 -k1,8100:14267355,36114634:161546 -k1,8100:15447987,36114634:161547 -k1,8100:18182476,36114634:161546 -k1,8100:19003314,36114634:161546 -k1,8100:22204420,36114634:161546 -k1,8100:23634743,36114634:161546 -k1,8100:24900571,36114634:161546 -k1,8100:25809884,36114634:161547 -k1,8100:29232501,36114634:161546 -k1,8100:30155575,36114634:161546 -k1,8100:32583029,36114634:0 -) -(1,8101:6630773,36956122:25952256,505283,134348 -g1,8100:9341997,36956122 -g1,8100:12943855,36956122 -g1,8100:13794512,36956122 -(1,8100:13794512,36956122:0,452978,115847 -r1,8127:15911337,36956122:2116825,568825,115847 -k1,8100:13794512,36956122:-2116825 -) -(1,8100:13794512,36956122:2116825,452978,115847 -k1,8100:13794512,36956122:3277 -h1,8100:15908060,36956122:0,411205,112570 -) -k1,8101:32583029,36956122:16498022 -g1,8101:32583029,36956122 -) -(1,8103:6630773,37797610:25952256,513147,134348 -h1,8102:6630773,37797610:983040,0,0 -g1,8102:8766591,37797610 -g1,8102:10895200,37797610 -g1,8102:11450289,37797610 -g1,8102:13038881,37797610 -g1,8102:15114406,37797610 -g1,8102:17273161,37797610 -g1,8102:18663835,37797610 -g1,8102:20296992,37797610 -g1,8102:21886895,37797610 -g1,8102:22544221,37797610 -g1,8102:23394878,37797610 -g1,8102:23949967,37797610 -k1,8103:32583029,37797610:7476352 -g1,8103:32583029,37797610 -) -v1,8105:6630773,38988076:0,393216,0 -(1,8121:6630773,45287957:25952256,6693097,196608 -g1,8121:6630773,45287957 -g1,8121:6630773,45287957 -g1,8121:6434165,45287957 -(1,8121:6434165,45287957:0,6693097,196608 -r1,8127:32779637,45287957:26345472,6889705,196608 -k1,8121:6434165,45287957:-26345472 -) -(1,8121:6434165,45287957:26345472,6693097,196608 -[1,8121:6630773,45287957:25952256,6496489,0 -(1,8107:6630773,39201986:25952256,410518,101187 -(1,8106:6630773,39201986:0,0,0 -g1,8106:6630773,39201986 -g1,8106:6630773,39201986 -g1,8106:6303093,39201986 -(1,8106:6303093,39201986:0,0,0 -) -g1,8106:6630773,39201986 -) -g1,8107:8527647,39201986 -g1,8107:9476085,39201986 -g1,8107:13585980,39201986 -g1,8107:14218272,39201986 -g1,8107:15799002,39201986 -g1,8107:16431294,39201986 -g1,8107:17063586,39201986 -h1,8107:18328170,39201986:0,0,0 -k1,8107:32583029,39201986:14254859 -g1,8107:32583029,39201986 -) -(1,8108:6630773,39868164:25952256,410518,101187 -h1,8108:6630773,39868164:0,0,0 -h1,8108:8211501,39868164:0,0,0 -k1,8108:32583029,39868164:24371528 -g1,8108:32583029,39868164 -) -(1,8117:6630773,40534342:25952256,379060,101187 -(1,8110:6630773,40534342:0,0,0 -g1,8110:6630773,40534342 -g1,8110:6630773,40534342 -g1,8110:6303093,40534342 -(1,8110:6303093,40534342:0,0,0 -) -g1,8110:6630773,40534342 -) -g1,8117:7579210,40534342 -g1,8117:7895356,40534342 -g1,8117:8211502,40534342 -g1,8117:8843794,40534342 -h1,8117:9159940,40534342:0,0,0 -k1,8117:32583028,40534342:23423088 -g1,8117:32583028,40534342 -) -(1,8117:6630773,41200520:25952256,388497,9436 -h1,8117:6630773,41200520:0,0,0 -g1,8117:7579210,41200520 -g1,8117:8211502,41200520 -g1,8117:8843794,41200520 -h1,8117:9159940,41200520:0,0,0 -k1,8117:32583028,41200520:23423088 -g1,8117:32583028,41200520 -) -(1,8117:6630773,41866698:25952256,388497,0 -h1,8117:6630773,41866698:0,0,0 -g1,8117:7579210,41866698 -g1,8117:8211502,41866698 -g1,8117:8843794,41866698 -h1,8117:9159940,41866698:0,0,0 -k1,8117:32583028,41866698:23423088 -g1,8117:32583028,41866698 -) -(1,8117:6630773,42532876:25952256,388497,9436 -h1,8117:6630773,42532876:0,0,0 -g1,8117:7579210,42532876 -g1,8117:8211502,42532876 -g1,8117:8843794,42532876 -h1,8117:9159940,42532876:0,0,0 -k1,8117:32583028,42532876:23423088 -g1,8117:32583028,42532876 -) -(1,8117:6630773,43199054:25952256,388497,0 -h1,8117:6630773,43199054:0,0,0 -g1,8117:7579210,43199054 -g1,8117:8211502,43199054 -g1,8117:8843794,43199054 -h1,8117:9159940,43199054:0,0,0 -k1,8117:32583028,43199054:23423088 -g1,8117:32583028,43199054 -) -(1,8117:6630773,43865232:25952256,388497,9436 -h1,8117:6630773,43865232:0,0,0 -g1,8117:7579210,43865232 -g1,8117:8211502,43865232 -g1,8117:8843794,43865232 -h1,8117:9159940,43865232:0,0,0 -k1,8117:32583028,43865232:23423088 -g1,8117:32583028,43865232 -) -(1,8119:6630773,45186770:25952256,410518,101187 -(1,8118:6630773,45186770:0,0,0 -g1,8118:6630773,45186770 -g1,8118:6630773,45186770 -g1,8118:6303093,45186770 -(1,8118:6303093,45186770:0,0,0 -) -g1,8118:6630773,45186770 -) -k1,8119:6630773,45186770:0 -g1,8119:10424522,45186770 -g1,8119:12005251,45186770 -g1,8119:12637543,45186770 -k1,8119:12637543,45186770:0 -h1,8119:16431291,45186770:0,0,0 -k1,8119:32583029,45186770:16151738 -g1,8119:32583029,45186770 -) -] -) -g1,8121:32583029,45287957 -g1,8121:6630773,45287957 -g1,8121:6630773,45287957 -g1,8121:32583029,45287957 -g1,8121:32583029,45287957 -) -h1,8121:6630773,45484565:0,0,0 -] -(1,8127:32583029,45706769:0,0,0 -g1,8127:32583029,45706769 -) -) -] -(1,8127:6630773,47279633:25952256,0,0 -h1,8127:6630773,47279633:25952256,0,0 -) -] -(1,8127:4262630,4025873:0,0,0 -[1,8127:-473656,4025873:0,0,0 -(1,8127:-473656,-710413:0,0,0 -(1,8127:-473656,-710413:0,0,0 -g1,8127:-473656,-710413 -) -g1,8127:-473656,-710413 -) -] -) -] -!25675 -}132 -Input:1113:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1114:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1115:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1116:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1117:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1118:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1119:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!670 -{133 -[1,8201:4262630,47279633:28320399,43253760,0 -(1,8201:4262630,4025873:0,0,0 -[1,8201:-473656,4025873:0,0,0 -(1,8201:-473656,-710413:0,0,0 -(1,8201:-473656,-644877:0,0,0 -k1,8201:-473656,-644877:-65536 ) -(1,8201:-473656,4736287:0,0,0 -k1,8201:-473656,4736287:5209943 +g1,6815:15470864,9972790 +g1,6815:15470864,9972790 ) -g1,8201:-473656,-710413 ) -] +g1,6815:15470864,9972790 +(1,6817:15470864,9972790:0,0,0 +(1,6817:15470864,9972790:0,0,0 +g1,6817:15470864,9972790 +g1,6817:15470864,9972790 +(1,6817:15470864,9972790:0,0,0 +(1,6817:15470864,9972790:1161298,479396,205458 +(1,6817:15470864,9972790:1161298,479396,205458 +r1,6909:16632162,9972790:0,684854,205458 ) -[1,8201:6630773,47279633:25952256,43253760,0 -[1,8201:6630773,4812305:25952256,786432,0 -(1,8201:6630773,4812305:25952256,505283,11795 -(1,8201:6630773,4812305:25952256,505283,11795 -g1,8201:3078558,4812305 -[1,8201:3078558,4812305:0,0,0 -(1,8201:3078558,2439708:0,1703936,0 -k1,8201:1358238,2439708:-1720320 -(1,5950:1358238,2439708:1720320,1703936,0 -(1,5950:1358238,2439708:1179648,16384,0 -r1,8201:2537886,2439708:1179648,16384,0 +g1,6817:16632162,9972790 ) -g1,5950:3062174,2439708 -(1,5950:3062174,2439708:16384,1703936,0 -[1,5950:3062174,2439708:25952256,1703936,0 -(1,5950:3062174,1915420:25952256,1179648,0 -(1,5950:3062174,1915420:16384,1179648,0 -r1,8201:3078558,1915420:16384,1179648,0 ) -k1,5950:29014430,1915420:25935872 -g1,5950:29014430,1915420 +g1,6817:15470864,9972790 +(1,6817:15470864,9972790:0,0,0 +(1,6817:15470864,9972790:1161298,479396,205458 +h1,6817:15470864,9972790:331874,388497,0 +r1,6909:16632162,9972790:0,684854,205458 ) -] ) +g1,6817:15470864,9972790 +(1,6817:15470864,9972790:0,0,0 +(1,6817:15470864,9972790:1161298,479396,205458 +r1,6909:16632162,9972790:0,684854,205458 ) ) -] -[1,8201:3078558,4812305:0,0,0 -(1,8201:3078558,2439708:0,1703936,0 -g1,8201:29030814,2439708 -g1,8201:36135244,2439708 -(1,5950:36135244,2439708:1720320,1703936,0 -(1,5950:36135244,2439708:16384,1703936,0 -[1,5950:36135244,2439708:25952256,1703936,0 -(1,5950:36135244,1915420:25952256,1179648,0 -(1,5950:36135244,1915420:16384,1179648,0 -r1,8201:36151628,1915420:16384,1179648,0 +g1,6817:15470864,9972790 +(1,6817:15470864,9972790:0,0,0 +(1,6817:15470864,9972790:524288,479396,205458 +r1,6909:15995152,9972790:0,684854,205458 ) -k1,5950:62087500,1915420:25935872 -g1,5950:62087500,1915420 ) -] +g1,6817:15470864,9972790 +g1,6817:15470864,9972790 ) -g1,5950:36675916,2439708 -(1,5950:36675916,2439708:1179648,16384,0 -r1,8201:37855564,2439708:1179648,16384,0 ) +g1,6817:15470864,9972790 +(1,6819:15470864,9972790:0,0,0 +(1,6819:15470864,9972790:0,0,0 +g1,6819:15470864,9972790 +g1,6819:15470864,9972790 +(1,6819:15470864,9972790:0,0,0 +(1,6819:15470864,9972790:829424,479396,205458 +(1,6819:15470864,9972790:829424,479396,205458 +r1,6909:16300288,9972790:0,684854,205458 ) -k1,8201:3078556,2439708:-34777008 +g1,6819:16300288,9972790 ) -] -[1,8201:3078558,4812305:0,0,0 -(1,8201:3078558,49800853:0,16384,2228224 -k1,8201:1358238,49800853:-1720320 -(1,5950:1358238,49800853:1720320,16384,2228224 -(1,5950:1358238,49800853:1179648,16384,0 -r1,8201:2537886,49800853:1179648,16384,0 ) -g1,5950:3062174,49800853 -(1,5950:3062174,52029077:16384,1703936,0 -[1,5950:3062174,52029077:25952256,1703936,0 -(1,5950:3062174,51504789:25952256,1179648,0 -(1,5950:3062174,51504789:16384,1179648,0 -r1,8201:3078558,51504789:16384,1179648,0 +g1,6819:15470864,9972790 +(1,6819:15470864,9972790:0,0,0 +(1,6819:15470864,9972790:829424,479396,205458 +r1,6909:16300288,9972790:0,684854,205458 ) -k1,5950:29014430,51504789:25935872 -g1,5950:29014430,51504789 ) -] +g1,6819:15470864,9972790 +(1,6819:15470864,9972790:0,0,0 +(1,6819:15470864,9972790:829424,479396,205458 +r1,6909:16300288,9972790:0,684854,205458 ) ) +g1,6819:15470864,9972790 +(1,6819:15470864,9972790:0,0,0 +(1,6819:15470864,9972790:524288,479396,205458 +r1,6909:15995152,9972790:0,684854,205458 +) +) +g1,6819:15470864,9972790 +g1,6819:15470864,9972790 +) +) +g1,6819:15470864,9972790 +g1,6821:15470864,9972790 +g1,6821:15470864,9972790 +) +g1,6821:15470864,9972790 +) +) +g1,6823:29394196,14707397 +k1,6823:32583029,14707397:3188833 +) +(1,6826:6630773,16227837:25952256,513147,126483 +h1,6825:6630773,16227837:983040,0,0 +k1,6825:9294940,16227837:209188 +k1,6825:11710726,16227837:209189 +k1,6825:12911474,16227837:209188 +k1,6825:15470784,16227837:209189 +k1,6825:17073923,16227837:209188 +k1,6825:20989827,16227837:209188 +k1,6825:23894512,16227837:209189 +(1,6825:23894512,16227837:0,459977,115847 +r1,6909:28121608,16227837:4227096,575824,115847 +k1,6825:23894512,16227837:-4227096 +) +(1,6825:23894512,16227837:4227096,459977,115847 +k1,6825:23894512,16227837:3277 +h1,6825:28118331,16227837:0,411205,112570 +) +k1,6825:28330796,16227837:209188 +k1,6825:29933936,16227837:209189 +k1,6825:30498984,16227837:209188 +k1,6825:32583029,16227837:0 +) +(1,6826:6630773,17092917:25952256,513147,134348 +k1,6825:9103029,17092917:270246 +k1,6825:10024704,17092917:270247 +k1,6825:11579456,17092917:270246 +k1,6825:13362929,17092917:270247 +k1,6825:14580826,17092917:270246 +k1,6825:17446299,17092917:270247 +k1,6825:22560311,17092917:270246 +k1,6825:27182804,17092917:270247 +k1,6825:28321402,17092917:270246 +k1,6825:29638914,17092917:270247 +k1,6825:31193666,17092917:270246 +k1,6825:32583029,17092917:0 +) +(1,6826:6630773,17957997:25952256,513147,115847 +g1,6825:9036599,17957997 +g1,6825:10227388,17957997 +g1,6825:12809506,17957997 +g1,6825:14576356,17957997 +g1,6825:16330754,17957997 +(1,6825:16330754,17957997:0,452978,115847 +r1,6909:17744155,17957997:1413401,568825,115847 +k1,6825:16330754,17957997:-1413401 +) +(1,6825:16330754,17957997:1413401,452978,115847 +k1,6825:16330754,17957997:3277 +h1,6825:17740878,17957997:0,411205,112570 +) +k1,6826:32583029,17957997:14665204 +g1,6826:32583029,17957997 +) +v1,6828:6630773,18642852:0,393216,0 +(1,6889:6630773,39414276:25952256,21164640,196608 +g1,6889:6630773,39414276 +g1,6889:6630773,39414276 +g1,6889:6434165,39414276 +(1,6889:6434165,39414276:0,21164640,196608 +r1,6909:32779637,39414276:26345472,21361248,196608 +k1,6889:6434165,39414276:-26345472 +) +(1,6889:6434165,39414276:26345472,21164640,196608 +[1,6889:6630773,39414276:25952256,20968032,0 +(1,6830:6630773,18877289:25952256,431045,106246 +(1,6829:6630773,18877289:0,0,0 +g1,6829:6630773,18877289 +g1,6829:6630773,18877289 +g1,6829:6303093,18877289 +(1,6829:6303093,18877289:0,0,0 +) +g1,6829:6630773,18877289 +) +g1,6830:8290543,18877289 +g1,6830:9286405,18877289 +g1,6830:16257437,18877289 +g1,6830:16921345,18877289 +g1,6830:23560425,18877289 +g1,6830:26548011,18877289 +k1,6830:26548011,18877289:0 +h1,6830:27875827,18877289:0,0,0 +k1,6830:32583029,18877289:4707202 +g1,6830:32583029,18877289 +) +(1,6831:6630773,19562144:25952256,424439,112852 +h1,6831:6630773,19562144:0,0,0 +g1,6831:6962727,19562144 +g1,6831:7294681,19562144 +g1,6831:7626635,19562144 +g1,6831:7958589,19562144 +g1,6831:8290543,19562144 +g1,6831:8622497,19562144 +g1,6831:8954451,19562144 +g1,6831:9286405,19562144 +g1,6831:9618359,19562144 +g1,6831:9950313,19562144 +g1,6831:10282267,19562144 +g1,6831:10614221,19562144 +g1,6831:10946175,19562144 +g1,6831:11278129,19562144 +g1,6831:11610083,19562144 +g1,6831:11942037,19562144 +g1,6831:12273991,19562144 +g1,6831:12605945,19562144 +g1,6831:12937899,19562144 +g1,6831:15261577,19562144 +g1,6831:15925485,19562144 +g1,6831:18581117,19562144 +g1,6831:20240887,19562144 +g1,6831:22232611,19562144 +g1,6831:23892381,19562144 +g1,6831:25884105,19562144 +k1,6831:25884105,19562144:0 +h1,6831:27543875,19562144:0,0,0 +k1,6831:32583029,19562144:5039154 +g1,6831:32583029,19562144 +) +(1,6832:6630773,20246999:25952256,424439,112852 +h1,6832:6630773,20246999:0,0,0 +g1,6832:6962727,20246999 +g1,6832:7294681,20246999 +g1,6832:7626635,20246999 +g1,6832:7958589,20246999 +g1,6832:8290543,20246999 +g1,6832:8622497,20246999 +g1,6832:8954451,20246999 +g1,6832:9286405,20246999 +g1,6832:9618359,20246999 +g1,6832:9950313,20246999 +g1,6832:10282267,20246999 +g1,6832:10614221,20246999 +g1,6832:10946175,20246999 +g1,6832:11278129,20246999 +g1,6832:11610083,20246999 +g1,6832:11942037,20246999 +g1,6832:12273991,20246999 +g1,6832:12605945,20246999 +g1,6832:12937899,20246999 +g1,6832:15261577,20246999 +g1,6832:15925485,20246999 +g1,6832:18249163,20246999 +g1,6832:19908933,20246999 +g1,6832:21568703,20246999 +g1,6832:23228473,20246999 +g1,6832:24888243,20246999 +h1,6832:26548013,20246999:0,0,0 +k1,6832:32583029,20246999:6035016 +g1,6832:32583029,20246999 +) +(1,6833:6630773,20931854:25952256,431045,6605 +h1,6833:6630773,20931854:0,0,0 +h1,6833:7958589,20931854:0,0,0 +k1,6833:32583029,20931854:24624440 +g1,6833:32583029,20931854 +) +(1,6843:6630773,21747781:25952256,424439,112852 +(1,6835:6630773,21747781:0,0,0 +g1,6835:6630773,21747781 +g1,6835:6630773,21747781 +g1,6835:6303093,21747781 +(1,6835:6303093,21747781:0,0,0 +) +g1,6835:6630773,21747781 +) +g1,6843:7626635,21747781 +g1,6843:7958589,21747781 +g1,6843:8290543,21747781 +g1,6843:11610082,21747781 +g1,6843:13933760,21747781 +h1,6843:15925484,21747781:0,0,0 +k1,6843:32583029,21747781:16657545 +g1,6843:32583029,21747781 +) +(1,6843:6630773,22432636:25952256,424439,9908 +h1,6843:6630773,22432636:0,0,0 +g1,6843:7626635,22432636 +g1,6843:8290543,22432636 +g1,6843:8622497,22432636 +g1,6843:8954451,22432636 +g1,6843:9286405,22432636 +g1,6843:9618359,22432636 +g1,6843:9950313,22432636 +g1,6843:10282267,22432636 +g1,6843:11610083,22432636 +g1,6843:11942037,22432636 +g1,6843:12273991,22432636 +g1,6843:13933761,22432636 +g1,6843:14265715,22432636 +g1,6843:14597669,22432636 +g1,6843:14929623,22432636 +h1,6843:15925485,22432636:0,0,0 +k1,6843:32583029,22432636:16657544 +g1,6843:32583029,22432636 +) +(1,6843:6630773,23117491:25952256,424439,9908 +h1,6843:6630773,23117491:0,0,0 +g1,6843:7626635,23117491 +g1,6843:8290543,23117491 +g1,6843:8622497,23117491 +g1,6843:8954451,23117491 +g1,6843:9286405,23117491 +g1,6843:9618359,23117491 +g1,6843:9950313,23117491 +g1,6843:11610083,23117491 +g1,6843:11942037,23117491 +g1,6843:12273991,23117491 +g1,6843:12605945,23117491 +g1,6843:13933761,23117491 +g1,6843:14265715,23117491 +g1,6843:14597669,23117491 +g1,6843:14929623,23117491 +h1,6843:15925485,23117491:0,0,0 +k1,6843:32583029,23117491:16657544 +g1,6843:32583029,23117491 +) +(1,6843:6630773,23802346:25952256,424439,9908 +h1,6843:6630773,23802346:0,0,0 +g1,6843:7626635,23802346 +g1,6843:8290543,23802346 +g1,6843:8622497,23802346 +g1,6843:8954451,23802346 +g1,6843:9286405,23802346 +g1,6843:9618359,23802346 +g1,6843:9950313,23802346 +g1,6843:10282267,23802346 +g1,6843:11610083,23802346 +g1,6843:11942037,23802346 +g1,6843:12273991,23802346 +g1,6843:13933761,23802346 +g1,6843:14265715,23802346 +g1,6843:14597669,23802346 +g1,6843:14929623,23802346 +h1,6843:15925485,23802346:0,0,0 +k1,6843:32583029,23802346:16657544 +g1,6843:32583029,23802346 +) +(1,6843:6630773,24487201:25952256,424439,9908 +h1,6843:6630773,24487201:0,0,0 +g1,6843:7626635,24487201 +g1,6843:8290543,24487201 +g1,6843:8622497,24487201 +g1,6843:8954451,24487201 +g1,6843:9286405,24487201 +g1,6843:9618359,24487201 +g1,6843:9950313,24487201 +g1,6843:11610083,24487201 +g1,6843:11942037,24487201 +g1,6843:12273991,24487201 +g1,6843:12605945,24487201 +g1,6843:13933761,24487201 +g1,6843:14265715,24487201 +g1,6843:14597669,24487201 +g1,6843:14929623,24487201 +h1,6843:15925485,24487201:0,0,0 +k1,6843:32583029,24487201:16657544 +g1,6843:32583029,24487201 +) +(1,6843:6630773,25172056:25952256,424439,9908 +h1,6843:6630773,25172056:0,0,0 +g1,6843:7626635,25172056 +g1,6843:8290543,25172056 +g1,6843:8622497,25172056 +g1,6843:8954451,25172056 +g1,6843:9286405,25172056 +g1,6843:9618359,25172056 +g1,6843:9950313,25172056 +g1,6843:10282267,25172056 +g1,6843:11610083,25172056 +g1,6843:11942037,25172056 +g1,6843:12273991,25172056 +g1,6843:13933761,25172056 +g1,6843:14265715,25172056 +g1,6843:14597669,25172056 +g1,6843:14929623,25172056 +h1,6843:15925485,25172056:0,0,0 +k1,6843:32583029,25172056:16657544 +g1,6843:32583029,25172056 +) +(1,6843:6630773,25856911:25952256,424439,9908 +h1,6843:6630773,25856911:0,0,0 +g1,6843:7626635,25856911 +g1,6843:8290543,25856911 +g1,6843:8622497,25856911 +g1,6843:8954451,25856911 +g1,6843:9286405,25856911 +g1,6843:9618359,25856911 +g1,6843:9950313,25856911 +g1,6843:11610083,25856911 +g1,6843:11942037,25856911 +g1,6843:12273991,25856911 +g1,6843:12605945,25856911 +g1,6843:13933761,25856911 +g1,6843:14265715,25856911 +g1,6843:14597669,25856911 +g1,6843:14929623,25856911 +h1,6843:15925485,25856911:0,0,0 +k1,6843:32583029,25856911:16657544 +g1,6843:32583029,25856911 +) +(1,6845:6630773,26672838:25952256,431045,79822 +(1,6844:6630773,26672838:0,0,0 +g1,6844:6630773,26672838 +g1,6844:6630773,26672838 +g1,6844:6303093,26672838 +(1,6844:6303093,26672838:0,0,0 +) +g1,6844:6630773,26672838 +) +k1,6845:6630773,26672838:0 +h1,6845:11278128,26672838:0,0,0 +k1,6845:32583028,26672838:21304900 +g1,6845:32583028,26672838 +) +(1,6849:6630773,27488765:25952256,424439,112852 +(1,6847:6630773,27488765:0,0,0 +g1,6847:6630773,27488765 +g1,6847:6630773,27488765 +g1,6847:6303093,27488765 +(1,6847:6303093,27488765:0,0,0 +) +g1,6847:6630773,27488765 +) +g1,6849:7626635,27488765 +g1,6849:8954451,27488765 +g1,6849:12937898,27488765 +g1,6849:15925483,27488765 +g1,6849:16257437,27488765 +g1,6849:16589391,27488765 +g1,6849:16921345,27488765 +h1,6849:19576976,27488765:0,0,0 +k1,6849:32583029,27488765:13006053 +g1,6849:32583029,27488765 +) +(1,6851:6630773,28304692:25952256,431045,79822 +(1,6850:6630773,28304692:0,0,0 +g1,6850:6630773,28304692 +g1,6850:6630773,28304692 +g1,6850:6303093,28304692 +(1,6850:6303093,28304692:0,0,0 +) +g1,6850:6630773,28304692 +) +k1,6851:6630773,28304692:0 +h1,6851:11278128,28304692:0,0,0 +k1,6851:32583028,28304692:21304900 +g1,6851:32583028,28304692 +) +(1,6855:6630773,29120619:25952256,424439,79822 +(1,6853:6630773,29120619:0,0,0 +g1,6853:6630773,29120619 +g1,6853:6630773,29120619 +g1,6853:6303093,29120619 +(1,6853:6303093,29120619:0,0,0 +) +g1,6853:6630773,29120619 +) +g1,6855:7626635,29120619 +g1,6855:8954451,29120619 +g1,6855:10282267,29120619 +g1,6855:11610083,29120619 +g1,6855:12937899,29120619 +g1,6855:14265715,29120619 +g1,6855:15593531,29120619 +h1,6855:16589393,29120619:0,0,0 +k1,6855:32583029,29120619:15993636 +g1,6855:32583029,29120619 +) +(1,6857:6630773,29936546:25952256,431045,79822 +(1,6856:6630773,29936546:0,0,0 +g1,6856:6630773,29936546 +g1,6856:6630773,29936546 +g1,6856:6303093,29936546 +(1,6856:6303093,29936546:0,0,0 +) +g1,6856:6630773,29936546 +) +k1,6857:6630773,29936546:0 +h1,6857:9618359,29936546:0,0,0 +k1,6857:32583029,29936546:22964670 +g1,6857:32583029,29936546 +) +(1,6864:6630773,30752473:25952256,431045,9908 +(1,6859:6630773,30752473:0,0,0 +g1,6859:6630773,30752473 +g1,6859:6630773,30752473 +g1,6859:6303093,30752473 +(1,6859:6303093,30752473:0,0,0 +) +g1,6859:6630773,30752473 +) +g1,6864:7626635,30752473 +g1,6864:12273990,30752473 +g1,6864:12937898,30752473 +g1,6864:14597668,30752473 +g1,6864:15593530,30752473 +g1,6864:15925484,30752473 +g1,6864:16589392,30752473 +h1,6864:19908931,30752473:0,0,0 +k1,6864:32583029,30752473:12674098 +g1,6864:32583029,30752473 +) +(1,6864:6630773,31437328:25952256,431045,86428 +h1,6864:6630773,31437328:0,0,0 +g1,6864:7626635,31437328 +g1,6864:7958589,31437328 +g1,6864:8622497,31437328 +g1,6864:12273990,31437328 +g1,6864:14597668,31437328 +g1,6864:15593530,31437328 +g1,6864:16257438,31437328 +g1,6864:18581116,31437328 +g1,6864:23228472,31437328 +g1,6864:23892380,31437328 +g1,6864:24556288,31437328 +g1,6864:25220196,31437328 +g1,6864:25884104,31437328 +g1,6864:26548012,31437328 +h1,6864:26879966,31437328:0,0,0 +k1,6864:32583029,31437328:5703063 +g1,6864:32583029,31437328 +) +(1,6864:6630773,32122183:25952256,431045,112852 +h1,6864:6630773,32122183:0,0,0 +g1,6864:7626635,32122183 +g1,6864:7958589,32122183 +g1,6864:8622497,32122183 +g1,6864:10946175,32122183 +g1,6864:11278129,32122183 +g1,6864:11610083,32122183 +g1,6864:12273991,32122183 +g1,6864:13601807,32122183 +g1,6864:13933761,32122183 +g1,6864:15593531,32122183 +g1,6864:16921347,32122183 +g1,6864:17917209,32122183 +g1,6864:18581117,32122183 +g1,6864:20240887,32122183 +h1,6864:21236749,32122183:0,0,0 +k1,6864:32583029,32122183:11346280 +g1,6864:32583029,32122183 +) +(1,6864:6630773,32807038:25952256,431045,112852 +h1,6864:6630773,32807038:0,0,0 +g1,6864:7626635,32807038 +g1,6864:7958589,32807038 +g1,6864:8622497,32807038 +g1,6864:10946175,32807038 +g1,6864:11278129,32807038 +g1,6864:11610083,32807038 +g1,6864:12273991,32807038 +g1,6864:13601807,32807038 +g1,6864:13933761,32807038 +g1,6864:15261577,32807038 +g1,6864:16589393,32807038 +g1,6864:17917209,32807038 +g1,6864:19245025,32807038 +g1,6864:20572841,32807038 +h1,6864:20904795,32807038:0,0,0 +k1,6864:32583029,32807038:11678234 +g1,6864:32583029,32807038 +) +(1,6866:6630773,33622965:25952256,431045,79822 +(1,6865:6630773,33622965:0,0,0 +g1,6865:6630773,33622965 +g1,6865:6630773,33622965 +g1,6865:6303093,33622965 +(1,6865:6303093,33622965:0,0,0 +) +g1,6865:6630773,33622965 +) +k1,6866:6630773,33622965:0 +h1,6866:10282267,33622965:0,0,0 +k1,6866:32583029,33622965:22300762 +g1,6866:32583029,33622965 +) +(1,6870:6630773,34438892:25952256,431045,79822 +(1,6868:6630773,34438892:0,0,0 +g1,6868:6630773,34438892 +g1,6868:6630773,34438892 +g1,6868:6303093,34438892 +(1,6868:6303093,34438892:0,0,0 +) +g1,6868:6630773,34438892 +) +g1,6870:7626635,34438892 +g1,6870:8954451,34438892 +h1,6870:12937898,34438892:0,0,0 +k1,6870:32583030,34438892:19645132 +g1,6870:32583030,34438892 +) +(1,6872:6630773,35254819:25952256,431045,79822 +(1,6871:6630773,35254819:0,0,0 +g1,6871:6630773,35254819 +g1,6871:6630773,35254819 +g1,6871:6303093,35254819 +(1,6871:6303093,35254819:0,0,0 +) +g1,6871:6630773,35254819 +) +k1,6872:6630773,35254819:0 +h1,6872:9950313,35254819:0,0,0 +k1,6872:32583029,35254819:22632716 +g1,6872:32583029,35254819 +) +(1,6876:6630773,36070746:25952256,424439,79822 +(1,6874:6630773,36070746:0,0,0 +g1,6874:6630773,36070746 +g1,6874:6630773,36070746 +g1,6874:6303093,36070746 +(1,6874:6303093,36070746:0,0,0 +) +g1,6874:6630773,36070746 +) +g1,6876:7626635,36070746 +g1,6876:8954451,36070746 +h1,6876:10946175,36070746:0,0,0 +k1,6876:32583029,36070746:21636854 +g1,6876:32583029,36070746 +) +(1,6878:6630773,36886673:25952256,431045,79822 +(1,6877:6630773,36886673:0,0,0 +g1,6877:6630773,36886673 +g1,6877:6630773,36886673 +g1,6877:6303093,36886673 +(1,6877:6303093,36886673:0,0,0 +) +g1,6877:6630773,36886673 +) +k1,6878:6630773,36886673:0 +h1,6878:12937898,36886673:0,0,0 +k1,6878:32583030,36886673:19645132 +g1,6878:32583030,36886673 +) +(1,6882:6630773,37702600:25952256,424439,79822 +(1,6880:6630773,37702600:0,0,0 +g1,6880:6630773,37702600 +g1,6880:6630773,37702600 +g1,6880:6303093,37702600 +(1,6880:6303093,37702600:0,0,0 +) +g1,6880:6630773,37702600 +) +g1,6882:7626635,37702600 +g1,6882:8954451,37702600 +h1,6882:10282267,37702600:0,0,0 +k1,6882:32583029,37702600:22300762 +g1,6882:32583029,37702600 +) +(1,6884:6630773,38518527:25952256,431045,79822 +(1,6883:6630773,38518527:0,0,0 +g1,6883:6630773,38518527 +g1,6883:6630773,38518527 +g1,6883:6303093,38518527 +(1,6883:6303093,38518527:0,0,0 +) +g1,6883:6630773,38518527 +) +k1,6884:6630773,38518527:0 +h1,6884:10946175,38518527:0,0,0 +k1,6884:32583029,38518527:21636854 +g1,6884:32583029,38518527 +) +(1,6888:6630773,39334454:25952256,424439,79822 +(1,6886:6630773,39334454:0,0,0 +g1,6886:6630773,39334454 +g1,6886:6630773,39334454 +g1,6886:6303093,39334454 +(1,6886:6303093,39334454:0,0,0 +) +g1,6886:6630773,39334454 +) +g1,6888:7626635,39334454 +g1,6888:8954451,39334454 +h1,6888:10282267,39334454:0,0,0 +k1,6888:32583029,39334454:22300762 +g1,6888:32583029,39334454 +) +] +) +g1,6889:32583029,39414276 +g1,6889:6630773,39414276 +g1,6889:6630773,39414276 +g1,6889:32583029,39414276 +g1,6889:32583029,39414276 +) +h1,6889:6630773,39610884:0,0,0 +(1,6893:6630773,40475964:25952256,513147,126483 +h1,6892:6630773,40475964:983040,0,0 +k1,6892:8878623,40475964:311261 +k1,6892:10294166,40475964:311261 +k1,6892:11630410,40475964:311261 +k1,6892:13796994,40475964:311260 +k1,6892:15392761,40475964:311261 +k1,6892:17402060,40475964:311261 +k1,6892:20063442,40475964:311261 +k1,6892:21826325,40475964:311261 +k1,6892:23341482,40475964:311261 +k1,6892:24312035,40475964:311261 +k1,6892:24979155,40475964:311260 +(1,6892:24979155,40475964:0,459977,115847 +r1,6909:28502827,40475964:3523672,575824,115847 +k1,6892:24979155,40475964:-3523672 +) +(1,6892:24979155,40475964:3523672,459977,115847 +k1,6892:24979155,40475964:3277 +h1,6892:28499550,40475964:0,411205,112570 +) +k1,6892:28814088,40475964:311261 +k1,6892:29656846,40475964:311261 +k1,6892:32583029,40475964:0 +) +(1,6893:6630773,41341044:25952256,505283,134348 +k1,6892:7681365,41341044:289064 +k1,6892:8326289,41341044:289064 +k1,6892:9819250,41341044:289065 +k1,6892:12019999,41341044:289064 +k1,6892:13669590,41341044:289064 +k1,6892:16026970,41341044:289064 +k1,6892:17307595,41341044:289065 +k1,6892:20571338,41341044:289064 +k1,6892:23230184,41341044:289064 +k1,6892:24748048,41341044:289064 +k1,6892:26183338,41341044:289065 +k1,6892:28855291,41341044:289064 +k1,6892:31386342,41341044:289064 +k1,6893:32583029,41341044:0 +) +(1,6893:6630773,42206124:25952256,513147,134348 +(1,6892:6630773,42206124:0,459977,115847 +r1,6909:10857869,42206124:4227096,575824,115847 +k1,6892:6630773,42206124:-4227096 +) +(1,6892:6630773,42206124:4227096,459977,115847 +k1,6892:6630773,42206124:3277 +h1,6892:10854592,42206124:0,411205,112570 +) +k1,6892:11077194,42206124:219325 +k1,6892:15003234,42206124:219324 +k1,6892:16750203,42206124:219325 +k1,6892:17731055,42206124:219324 +k1,6892:20215960,42206124:219325 +k1,6892:21639180,42206124:219324 +k1,6892:23926821,42206124:219325 +k1,6892:28177920,42206124:219324 +k1,6892:30920381,42206124:219325 +k1,6893:32583029,42206124:0 +) +(1,6893:6630773,43071204:25952256,513147,126483 +k1,6892:8441986,43071204:271117 +k1,6892:11061258,43071204:271117 +k1,6892:12536272,43071204:271118 +k1,6892:14875705,43071204:271117 +k1,6892:16138382,43071204:271117 +k1,6892:18255648,43071204:271117 +k1,6892:19186058,43071204:271118 +k1,6892:21240410,43071204:271117 +k1,6892:22777683,43071204:271117 +k1,6892:25119738,43071204:271117 +k1,6892:26042284,43071204:271118 +k1,6892:27940660,43071204:271117 +k1,6892:31391584,43071204:271117 +k1,6892:32583029,43071204:0 +) +(1,6893:6630773,43936284:25952256,513147,134348 +g1,6892:9748320,43936284 +g1,6892:10606841,43936284 +g1,6892:12340268,43936284 +g1,6892:14653688,43936284 +k1,6893:32583029,43936284:14433651 +g1,6893:32583029,43936284 +) +v1,6895:6630773,44801364:0,393216,0 +] +(1,6909:32583029,45706769:0,0,0 +g1,6909:32583029,45706769 +) +) +] +(1,6909:6630773,47279633:25952256,0,0 +h1,6909:6630773,47279633:25952256,0,0 +) +] +(1,6909:4262630,4025873:0,0,0 +[1,6909:-473656,4025873:0,0,0 +(1,6909:-473656,-710413:0,0,0 +(1,6909:-473656,-710413:0,0,0 +g1,6909:-473656,-710413 +) +g1,6909:-473656,-710413 +) +] +) +] +!33647 +}107 +Input:944:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:945:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:946:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:947:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:948:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:949:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:950:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:951:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:952:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:953:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!942 +{108 +[1,6995:4262630,47279633:28320399,43253760,0 +(1,6995:4262630,4025873:0,0,0 +[1,6995:-473656,4025873:0,0,0 +(1,6995:-473656,-710413:0,0,0 +(1,6995:-473656,-644877:0,0,0 +k1,6995:-473656,-644877:-65536 ) -] -[1,8201:3078558,4812305:0,0,0 -(1,8201:3078558,49800853:0,16384,2228224 -g1,8201:29030814,49800853 -g1,8201:36135244,49800853 -(1,5950:36135244,49800853:1720320,16384,2228224 -(1,5950:36135244,52029077:16384,1703936,0 -[1,5950:36135244,52029077:25952256,1703936,0 -(1,5950:36135244,51504789:25952256,1179648,0 -(1,5950:36135244,51504789:16384,1179648,0 -r1,8201:36151628,51504789:16384,1179648,0 +(1,6995:-473656,4736287:0,0,0 +k1,6995:-473656,4736287:5209943 ) -k1,5950:62087500,51504789:25935872 -g1,5950:62087500,51504789 +g1,6995:-473656,-710413 ) ] ) -g1,5950:36675916,49800853 -(1,5950:36675916,49800853:1179648,16384,0 -r1,8201:37855564,49800853:1179648,16384,0 +[1,6995:6630773,47279633:25952256,43253760,0 +[1,6995:6630773,4812305:25952256,786432,0 +(1,6995:6630773,4812305:25952256,513147,126483 +(1,6995:6630773,4812305:25952256,513147,126483 +g1,6995:3078558,4812305 +[1,6995:3078558,4812305:0,0,0 +(1,6995:3078558,2439708:0,1703936,0 +k1,6995:1358238,2439708:-1720320 +(1,6148:1358238,2439708:1720320,1703936,0 +(1,6148:1358238,2439708:1179648,16384,0 +r1,6995:2537886,2439708:1179648,16384,0 ) +g1,6148:3062174,2439708 +(1,6148:3062174,2439708:16384,1703936,0 +[1,6148:3062174,2439708:25952256,1703936,0 +(1,6148:3062174,1915420:25952256,1179648,0 +(1,6148:3062174,1915420:16384,1179648,0 +r1,6995:3078558,1915420:16384,1179648,0 ) -k1,8201:3078556,49800853:-34777008 -) -] -g1,8201:6630773,4812305 -k1,8201:24358918,4812305:16532768 -g1,8201:25981589,4812305 -g1,8201:26804065,4812305 -g1,8201:30302376,4812305 -) +k1,6148:29014430,1915420:25935872 +g1,6148:29014430,1915420 ) ] -[1,8201:6630773,45706769:25952256,40108032,0 -(1,8201:6630773,45706769:25952256,40108032,0 -(1,8201:6630773,45706769:0,0,0 -g1,8201:6630773,45706769 ) -[1,8201:6630773,45706769:25952256,40108032,0 -(1,8125:6630773,6254097:25952256,513147,134348 -h1,8124:6630773,6254097:983040,0,0 -k1,8124:8768994,6254097:201632 -k1,8124:10895419,6254097:201633 -k1,8124:12116136,6254097:201632 -k1,8124:13707131,6254097:201632 -k1,8124:15785060,6254097:201633 -k1,8124:17946218,6254097:201632 -k1,8124:19339295,6254097:201632 -k1,8124:22022776,6254097:201633 -k1,8124:23508914,6254097:201632 -k1,8124:24168643,6254097:201632 -k1,8124:24901773,6254097:201633 -k1,8124:25912775,6254097:201632 -k1,8124:28138814,6254097:201632 -k1,8124:30746274,6254097:201633 -k1,8124:31563944,6254097:201632 -k1,8124:32583029,6254097:0 -) -(1,8125:6630773,7095585:25952256,505283,126483 -k1,8125:32583029,7095585:22394306 -g1,8125:32583029,7095585 -) -v1,8127:6630773,8286051:0,393216,0 -(1,8135:6630773,9908338:25952256,2015503,196608 -g1,8135:6630773,9908338 -g1,8135:6630773,9908338 -g1,8135:6434165,9908338 -(1,8135:6434165,9908338:0,2015503,196608 -r1,8201:32779637,9908338:26345472,2212111,196608 -k1,8135:6434165,9908338:-26345472 -) -(1,8135:6434165,9908338:26345472,2015503,196608 -[1,8135:6630773,9908338:25952256,1818895,0 -(1,8129:6630773,8499961:25952256,410518,101187 -(1,8128:6630773,8499961:0,0,0 -g1,8128:6630773,8499961 -g1,8128:6630773,8499961 -g1,8128:6303093,8499961 -(1,8128:6303093,8499961:0,0,0 -) -g1,8128:6630773,8499961 -) -k1,8129:6630773,8499961:0 -h1,8129:9476084,8499961:0,0,0 -k1,8129:32583028,8499961:23106944 -g1,8129:32583028,8499961 -) -(1,8130:6630773,9166139:25952256,410518,101187 -h1,8130:6630773,9166139:0,0,0 -g1,8130:10108376,9166139 -g1,8130:10740668,9166139 -h1,8130:13269834,9166139:0,0,0 -k1,8130:32583030,9166139:19313196 -g1,8130:32583030,9166139 -) -(1,8134:6630773,9832317:25952256,404226,76021 -(1,8132:6630773,9832317:0,0,0 -g1,8132:6630773,9832317 -g1,8132:6630773,9832317 -g1,8132:6303093,9832317 -(1,8132:6303093,9832317:0,0,0 -) -g1,8132:6630773,9832317 -) -g1,8134:7579210,9832317 -h1,8134:11372958,9832317:0,0,0 -k1,8134:32583030,9832317:21210072 -g1,8134:32583030,9832317 -) -] -) -g1,8135:32583029,9908338 -g1,8135:6630773,9908338 -g1,8135:6630773,9908338 -g1,8135:32583029,9908338 -g1,8135:32583029,9908338 -) -h1,8135:6630773,10104946:0,0,0 -(1,8139:6630773,11470722:25952256,513147,134348 -h1,8138:6630773,11470722:983040,0,0 -g1,8138:8766591,11470722 -g1,8138:10378121,11470722 -g1,8138:11596435,11470722 -g1,8138:12778704,11470722 -g1,8138:13846285,11470722 -g1,8138:16079096,11470722 -g1,8138:18089740,11470722 -g1,8138:18940397,11470722 -g1,8138:21392754,11470722 -g1,8138:22611068,11470722 -k1,8139:32583029,11470722:7838764 -g1,8139:32583029,11470722 -) -v1,8141:6630773,12661188:0,393216,0 -(1,8160:6630773,19535496:25952256,7267524,196608 -g1,8160:6630773,19535496 -g1,8160:6630773,19535496 -g1,8160:6434165,19535496 -(1,8160:6434165,19535496:0,7267524,196608 -r1,8201:32779637,19535496:26345472,7464132,196608 -k1,8160:6434165,19535496:-26345472 -) -(1,8160:6434165,19535496:26345472,7267524,196608 -[1,8160:6630773,19535496:25952256,7070916,0 -(1,8143:6630773,12875098:25952256,410518,101187 -(1,8142:6630773,12875098:0,0,0 -g1,8142:6630773,12875098 -g1,8142:6630773,12875098 -g1,8142:6303093,12875098 -(1,8142:6303093,12875098:0,0,0 -) -g1,8142:6630773,12875098 -) -k1,8143:6630773,12875098:0 -g1,8143:9792231,12875098 -g1,8143:10424523,12875098 -k1,8143:10424523,12875098:0 -h1,8143:14218271,12875098:0,0,0 -k1,8143:32583029,12875098:18364758 -g1,8143:32583029,12875098 -) -(1,8144:6630773,13541276:25952256,410518,101187 -h1,8144:6630773,13541276:0,0,0 -g1,8144:10108376,13541276 -g1,8144:10740668,13541276 -h1,8144:13269834,13541276:0,0,0 -k1,8144:32583030,13541276:19313196 -g1,8144:32583030,13541276 -) -(1,8148:6630773,14207454:25952256,410518,101187 -(1,8146:6630773,14207454:0,0,0 -g1,8146:6630773,14207454 -g1,8146:6630773,14207454 -g1,8146:6303093,14207454 -(1,8146:6303093,14207454:0,0,0 -) -g1,8146:6630773,14207454 -) -g1,8148:7579210,14207454 -g1,8148:8843793,14207454 -h1,8148:11056813,14207454:0,0,0 -k1,8148:32583029,14207454:21526216 -g1,8148:32583029,14207454 -) -(1,8150:6630773,15528992:25952256,410518,101187 -(1,8149:6630773,15528992:0,0,0 -g1,8149:6630773,15528992 -g1,8149:6630773,15528992 -g1,8149:6303093,15528992 -(1,8149:6303093,15528992:0,0,0 -) -g1,8149:6630773,15528992 -) -h1,8150:8211501,15528992:0,0,0 -k1,8150:32583029,15528992:24371528 -g1,8150:32583029,15528992 -) -(1,8159:6630773,16195170:25952256,379060,101187 -(1,8152:6630773,16195170:0,0,0 -g1,8152:6630773,16195170 -g1,8152:6630773,16195170 -g1,8152:6303093,16195170 -(1,8152:6303093,16195170:0,0,0 -) -g1,8152:6630773,16195170 -) -g1,8159:7579210,16195170 -g1,8159:7895356,16195170 -g1,8159:8211502,16195170 -g1,8159:8843794,16195170 -h1,8159:9159940,16195170:0,0,0 -k1,8159:32583028,16195170:23423088 -g1,8159:32583028,16195170 -) -(1,8159:6630773,16861348:25952256,388497,9436 -h1,8159:6630773,16861348:0,0,0 -g1,8159:7579210,16861348 -g1,8159:8211502,16861348 -g1,8159:8843794,16861348 -h1,8159:9159940,16861348:0,0,0 -k1,8159:32583028,16861348:23423088 -g1,8159:32583028,16861348 -) -(1,8159:6630773,17527526:25952256,388497,0 -h1,8159:6630773,17527526:0,0,0 -g1,8159:7579210,17527526 -g1,8159:8211502,17527526 -g1,8159:8843794,17527526 -h1,8159:9159940,17527526:0,0,0 -k1,8159:32583028,17527526:23423088 -g1,8159:32583028,17527526 -) -(1,8159:6630773,18193704:25952256,388497,9436 -h1,8159:6630773,18193704:0,0,0 -g1,8159:7579210,18193704 -g1,8159:8211502,18193704 -g1,8159:8843794,18193704 -h1,8159:9159940,18193704:0,0,0 -k1,8159:32583028,18193704:23423088 -g1,8159:32583028,18193704 -) -(1,8159:6630773,18859882:25952256,388497,0 -h1,8159:6630773,18859882:0,0,0 -g1,8159:7579210,18859882 -g1,8159:8211502,18859882 -g1,8159:8843794,18859882 -h1,8159:9159940,18859882:0,0,0 -k1,8159:32583028,18859882:23423088 -g1,8159:32583028,18859882 -) -(1,8159:6630773,19526060:25952256,388497,9436 -h1,8159:6630773,19526060:0,0,0 -g1,8159:7579210,19526060 -g1,8159:8211502,19526060 -g1,8159:8843794,19526060 -h1,8159:9159940,19526060:0,0,0 -k1,8159:32583028,19526060:23423088 -g1,8159:32583028,19526060 -) -] -) -g1,8160:32583029,19535496 -g1,8160:6630773,19535496 -g1,8160:6630773,19535496 -g1,8160:32583029,19535496 -g1,8160:32583029,19535496 -) -h1,8160:6630773,19732104:0,0,0 -(1,8164:6630773,21097880:25952256,513147,126483 -h1,8163:6630773,21097880:983040,0,0 -k1,8163:9086406,21097880:275906 -k1,8163:11627893,21097880:275907 -k1,8163:14084182,21097880:275906 -k1,8163:15873315,21097880:275907 -k1,8163:16680718,21097880:275906 -k1,8163:18978411,21097880:275907 -k1,8163:20445762,21097880:275906 -k1,8163:24728540,21097880:275907 -k1,8163:26889917,21097880:275906 -k1,8163:29338998,21097880:275907 -k1,8163:30230942,21097880:275906 -k1,8163:32583029,21097880:0 -) -(1,8164:6630773,21939368:25952256,513147,7863 -k1,8164:32583029,21939368:24465244 -g1,8164:32583029,21939368 -) -v1,8166:6630773,23305144:0,393216,0 -(1,8167:6630773,26396494:25952256,3484566,0 -g1,8167:6630773,26396494 -g1,8167:6303093,26396494 -r1,8201:6401397,26396494:98304,3484566,0 -g1,8167:6600626,26396494 -g1,8167:6797234,26396494 -[1,8167:6797234,26396494:25785795,3484566,0 -(1,8167:6797234,23737682:25785795,825754,196608 -(1,8166:6797234,23737682:0,825754,196608 -r1,8201:7890375,23737682:1093141,1022362,196608 -k1,8166:6797234,23737682:-1093141 -) -(1,8166:6797234,23737682:1093141,825754,196608 -) -k1,8166:8047053,23737682:156678 -k1,8166:9773271,23737682:327680 -k1,8166:10557784,23737682:156678 -k1,8166:11733546,23737682:156677 -k1,8166:14551641,23737682:156678 -k1,8166:16737314,23737682:156678 -k1,8166:18269593,23737682:156678 -k1,8166:19582980,23737682:156677 -k1,8166:21699184,23737682:156678 -k1,8166:23063035,23737682:156678 -k1,8166:25204799,23737682:156678 -k1,8166:26433646,23737682:156678 -k1,8166:27747033,23737682:156677 -k1,8166:29007993,23737682:156678 -k1,8166:31303111,23737682:156678 -k1,8166:32583029,23737682:0 -) -(1,8167:6797234,24579170:25785795,513147,134348 -k1,8166:8001131,24579170:184812 -k1,8166:10254258,24579170:184811 -k1,8166:11098362,24579170:184812 -k1,8166:14510166,24579170:184811 -k1,8166:16984806,24579170:184812 -k1,8166:17855779,24579170:184811 -k1,8166:21616891,24579170:184812 -k1,8166:23080309,24579170:184811 -k1,8166:24171484,24579170:184812 -k1,8166:26389877,24579170:184811 -k1,8166:28224886,24579170:184812 -k1,8166:29852144,24579170:184811 -k1,8166:31193666,24579170:184812 -k1,8166:32583029,24579170:0 -) -(1,8167:6797234,25420658:25785795,513147,134348 -k1,8166:8933755,25420658:260225 -k1,8166:9845408,25420658:260225 -k1,8166:11124717,25420658:260224 -k1,8166:13038415,25420658:260225 -k1,8166:14455350,25420658:260225 -k1,8166:16327105,25420658:260225 -k1,8166:17606415,25420658:260225 -k1,8166:19256002,25420658:260224 -k1,8166:21722824,25420658:260225 -k1,8166:23354062,25420658:260225 -k1,8166:23970147,25420658:260225 -k1,8166:25363489,25420658:260224 -k1,8166:28105562,25420658:260225 -k1,8166:30010741,25420658:260225 -k1,8166:32583029,25420658:0 -) -(1,8167:6797234,26262146:25785795,513147,134348 -k1,8166:8415364,26262146:166508 -k1,8166:9738582,26262146:166508 -k1,8166:11435356,26262146:166508 -k1,8166:12620950,26262146:166509 -k1,8166:16171737,26262146:166508 -k1,8166:17529690,26262146:166508 -k1,8166:19130126,26262146:166508 -k1,8166:21549762,26262146:166508 -k1,8166:23283891,26262146:166508 -k1,8166:24469484,26262146:166508 -k1,8166:25619033,26262146:166509 -k1,8166:26804626,26262146:166508 -k1,8166:29260962,26262146:166508 -k1,8166:30597943,26262146:166508 -k1,8167:32583029,26262146:0 -k1,8167:32583029,26262146:0 -) -] -g1,8167:32583029,26396494 -) -h1,8167:6630773,26396494:0,0,0 -(1,8170:6630773,27762270:25952256,513147,134348 -h1,8169:6630773,27762270:983040,0,0 -k1,8169:11245695,27762270:159129 -k1,8169:11862922,27762270:159130 -k1,8169:12553548,27762270:159129 -k1,8169:14583076,27762270:159130 -k1,8169:15393633,27762270:159129 -k1,8169:17705621,27762270:159130 -k1,8169:18883835,27762270:159129 -k1,8169:21111280,27762270:159129 -k1,8169:21929702,27762270:159130 -k1,8169:23107916,27762270:159129 -k1,8169:25556874,27762270:159130 -k1,8169:26367431,27762270:159129 -k1,8169:27274327,27762270:159130 -k1,8169:29244871,27762270:159129 -k1,8169:30090163,27762270:159130 -k1,8169:30605152,27762270:159129 -k1,8169:32583029,27762270:0 -) -(1,8170:6630773,28603758:25952256,513147,134348 -k1,8169:7520869,28603758:230804 -k1,8169:10726352,28603758:230804 -k1,8169:13153266,28603758:230803 -k1,8169:15589357,28603758:230804 -k1,8169:16506323,28603758:230804 -k1,8169:17507830,28603758:230804 -k1,8169:20810961,28603758:230803 -k1,8169:21693193,28603758:230804 -k1,8169:25204729,28603758:230804 -(1,8169:25204729,28603758:0,452978,115847 -r1,8201:26618130,28603758:1413401,568825,115847 -k1,8169:25204729,28603758:-1413401 -) -(1,8169:25204729,28603758:1413401,452978,115847 -k1,8169:25204729,28603758:3277 -h1,8169:26614853,28603758:0,411205,112570 -) -k1,8169:27022604,28603758:230804 -k1,8169:28524805,28603758:230803 -k1,8169:30122690,28603758:230804 -k1,8169:30884991,28603758:230804 -k1,8169:32583029,28603758:0 -) -(1,8170:6630773,29445246:25952256,513147,134348 -k1,8169:9391531,29445246:221893 -k1,8169:10264853,29445246:221894 -k1,8169:11877420,29445246:221893 -k1,8169:12455173,29445246:221893 -k1,8169:14569747,29445246:221894 -k1,8169:15450932,29445246:221893 -k1,8169:17962653,29445246:221893 -k1,8169:20039216,29445246:221894 -k1,8169:21070479,29445246:221893 -k1,8169:22801011,29445246:221893 -k1,8169:25264891,29445246:221893 -k1,8169:26440334,29445246:221894 -k1,8169:27766509,29445246:221893 -k1,8169:29080887,29445246:221893 -(1,8169:29080887,29445246:0,452978,115847 -r1,8201:30494288,29445246:1413401,568825,115847 -k1,8169:29080887,29445246:-1413401 -) -(1,8169:29080887,29445246:1413401,452978,115847 -k1,8169:29080887,29445246:3277 -h1,8169:30491011,29445246:0,411205,112570 -) -k1,8169:30716182,29445246:221894 -k1,8169:31589503,29445246:221893 -k1,8169:32583029,29445246:0 -) -(1,8170:6630773,30286734:25952256,513147,134348 -k1,8169:7848395,30286734:198537 -k1,8169:10115247,30286734:198536 -k1,8169:10973076,30286734:198537 -k1,8169:13461440,30286734:198536 -k1,8169:16631379,30286734:198537 -k1,8169:17185775,30286734:198536 -k1,8169:19508989,30286734:198537 -(1,8169:19508989,30286734:0,414482,115847 -r1,8201:21977526,30286734:2468537,530329,115847 -k1,8169:19508989,30286734:-2468537 -) -(1,8169:19508989,30286734:2468537,414482,115847 -k1,8169:19508989,30286734:3277 -h1,8169:21974249,30286734:0,411205,112570 -) -k1,8169:22176063,30286734:198537 -k1,8169:23057484,30286734:198536 -k1,8169:23611881,30286734:198537 -k1,8169:26496738,30286734:198536 -k1,8169:28969374,30286734:198537 -k1,8169:32583029,30286734:0 -) -(1,8170:6630773,31128222:25952256,513147,134348 -k1,8169:8028936,31128222:201476 -k1,8169:10891830,31128222:201477 -k1,8169:12961737,31128222:201476 -k1,8169:14656124,31128222:201477 -k1,8169:16060841,31128222:201476 -k1,8169:16878356,31128222:201477 -k1,8169:18252271,31128222:201476 -k1,8169:20313003,31128222:201476 -k1,8169:21820613,31128222:201477 -k1,8169:24055671,31128222:201476 -k1,8169:24613008,31128222:201477 -k1,8169:27789163,31128222:201476 -k1,8169:29968517,31128222:201477 -k1,8169:31563944,31128222:201476 -k1,8169:32583029,31128222:0 -) -(1,8170:6630773,31969710:25952256,513147,134348 -k1,8169:8932210,31969710:233121 -k1,8169:9824623,31969710:233121 -k1,8169:11076829,31969710:233121 -k1,8169:13599778,31969710:233121 -k1,8169:16804301,31969710:233121 -k1,8169:17393282,31969710:233121 -k1,8169:20141019,31969710:233121 -k1,8169:21565584,31969710:233120 -k1,8169:23232633,31969710:233121 -k1,8169:25201147,31969710:233121 -k1,8169:26637509,31969710:233121 -k1,8169:28682045,31969710:233121 -k1,8169:30893043,31969710:233121 -k1,8169:31812326,31969710:233121 -k1,8169:32583029,31969710:0 -) -(1,8170:6630773,32811198:25952256,505283,134348 -g1,8169:9902330,32811198 -g1,8169:10752987,32811198 -(1,8169:10752987,32811198:0,414482,115847 -r1,8201:12166388,32811198:1413401,530329,115847 -k1,8169:10752987,32811198:-1413401 -) -(1,8169:10752987,32811198:1413401,414482,115847 -k1,8169:10752987,32811198:3277 -h1,8169:12163111,32811198:0,411205,112570 -) -g1,8169:12869589,32811198 -(1,8169:12869589,32811198:0,452978,115847 -r1,8201:14282990,32811198:1413401,568825,115847 -k1,8169:12869589,32811198:-1413401 -) -(1,8169:12869589,32811198:1413401,452978,115847 -k1,8169:12869589,32811198:3277 -h1,8169:14279713,32811198:0,411205,112570 -) -g1,8169:14482219,32811198 -k1,8170:32583029,32811198:14646407 -g1,8170:32583029,32811198 -) -v1,8172:6630773,34001664:0,393216,0 -(1,8177:6630773,34989230:25952256,1380782,196608 -g1,8177:6630773,34989230 -g1,8177:6630773,34989230 -g1,8177:6434165,34989230 -(1,8177:6434165,34989230:0,1380782,196608 -r1,8201:32779637,34989230:26345472,1577390,196608 -k1,8177:6434165,34989230:-26345472 -) -(1,8177:6434165,34989230:26345472,1380782,196608 -[1,8177:6630773,34989230:25952256,1184174,0 -(1,8174:6630773,34215574:25952256,410518,107478 -(1,8173:6630773,34215574:0,0,0 -g1,8173:6630773,34215574 -g1,8173:6630773,34215574 -g1,8173:6303093,34215574 -(1,8173:6303093,34215574:0,0,0 -) -g1,8173:6630773,34215574 -) -g1,8174:8843793,34215574 -g1,8174:9792231,34215574 -g1,8174:13269834,34215574 -g1,8174:13902126,34215574 -h1,8174:16115146,34215574:0,0,0 -k1,8174:32583029,34215574:16467883 -g1,8174:32583029,34215574 -) -(1,8175:6630773,34881752:25952256,410518,107478 -h1,8175:6630773,34881752:0,0,0 -g1,8175:9792231,34881752 -g1,8175:10424523,34881752 -g1,8175:12953689,34881752 -g1,8175:14534418,34881752 -g1,8175:15166710,34881752 -k1,8175:15166710,34881752:0 -h1,8175:19276604,34881752:0,0,0 -k1,8175:32583029,34881752:13306425 -g1,8175:32583029,34881752 -) -] -) -g1,8177:32583029,34989230 -g1,8177:6630773,34989230 -g1,8177:6630773,34989230 -g1,8177:32583029,34989230 -g1,8177:32583029,34989230 -) -h1,8177:6630773,35185838:0,0,0 -(1,8181:6630773,36551614:25952256,505283,134348 -h1,8180:6630773,36551614:983040,0,0 -k1,8180:9015464,36551614:204964 -k1,8180:10392867,36551614:204964 -k1,8180:14114493,36551614:204964 -k1,8180:16174781,36551614:204964 -k1,8180:17484027,36551614:204964 -k1,8180:18436757,36551614:204964 -k1,8180:21774341,36551614:204963 -k1,8180:23246771,36551614:204964 -k1,8180:23807595,36551614:204964 -k1,8180:25885578,36551614:204964 -k1,8180:29276902,36551614:204964 -k1,8180:30243394,36551614:204964 -k1,8180:32583029,36551614:0 -) -(1,8181:6630773,37393102:25952256,513147,7863 -g1,8180:7849087,37393102 -g1,8180:10743812,37393102 -k1,8181:32583030,37393102:20235552 -g1,8181:32583030,37393102 -) -v1,8183:6630773,38583568:0,393216,0 -(1,8187:6630773,38898665:25952256,708313,196608 -g1,8187:6630773,38898665 -g1,8187:6630773,38898665 -g1,8187:6434165,38898665 -(1,8187:6434165,38898665:0,708313,196608 -r1,8201:32779637,38898665:26345472,904921,196608 -k1,8187:6434165,38898665:-26345472 -) -(1,8187:6434165,38898665:26345472,708313,196608 -[1,8187:6630773,38898665:25952256,511705,0 -(1,8185:6630773,38797478:25952256,410518,101187 -(1,8184:6630773,38797478:0,0,0 -g1,8184:6630773,38797478 -g1,8184:6630773,38797478 -g1,8184:6303093,38797478 -(1,8184:6303093,38797478:0,0,0 -) -g1,8184:6630773,38797478 -) -k1,8185:6630773,38797478:0 -g1,8185:9792231,38797478 -g1,8185:10424523,38797478 -g1,8185:13902126,38797478 -g1,8185:14534418,38797478 -g1,8185:17379730,38797478 -g1,8185:18960459,38797478 -g1,8185:19592751,38797478 -k1,8185:19592751,38797478:0 -h1,8185:23702645,38797478:0,0,0 -k1,8185:32583029,38797478:8880384 -g1,8185:32583029,38797478 -) -] -) -g1,8187:32583029,38898665 -g1,8187:6630773,38898665 -g1,8187:6630773,38898665 -g1,8187:32583029,38898665 -g1,8187:32583029,38898665 -) -h1,8187:6630773,39095273:0,0,0 -v1,8191:6630773,40985337:0,393216,0 -(1,8192:6630773,42393711:25952256,1801590,0 -g1,8192:6630773,42393711 -g1,8192:6303093,42393711 -r1,8201:6401397,42393711:98304,1801590,0 -g1,8192:6600626,42393711 -g1,8192:6797234,42393711 -[1,8192:6797234,42393711:25785795,1801590,0 -(1,8192:6797234,41417875:25785795,825754,196608 -(1,8191:6797234,41417875:0,825754,196608 -r1,8201:7890375,41417875:1093141,1022362,196608 -k1,8191:6797234,41417875:-1093141 -) -(1,8191:6797234,41417875:1093141,825754,196608 -) -k1,8191:8090175,41417875:199800 -k1,8191:9816393,41417875:327680 -k1,8191:12508527,41417875:199800 -k1,8191:14443720,41417875:199800 -k1,8191:17405863,41417875:199800 -k1,8191:20276910,41417875:199800 -k1,8191:21870661,41417875:199800 -(1,8191:21870661,41417875:0,452978,115847 -r1,8201:23284062,41417875:1413401,568825,115847 -k1,8191:21870661,41417875:-1413401 -) -(1,8191:21870661,41417875:1413401,452978,115847 -k1,8191:21870661,41417875:3277 -h1,8191:23280785,41417875:0,411205,112570 -) -k1,8191:23657533,41417875:199801 -k1,8191:25111037,41417875:199800 -k1,8191:26126105,41417875:199800 -k1,8191:27392176,41417875:199800 -k1,8191:29122242,41417875:199800 -k1,8191:29973470,41417875:199800 -k1,8191:31563944,41417875:199800 -k1,8191:32583029,41417875:0 -) -(1,8192:6797234,42259363:25785795,513147,134348 -g1,8191:9286291,42259363 -g1,8191:10136948,42259363 -g1,8191:10692037,42259363 -g1,8191:12047976,42259363 -g1,8191:13525812,42259363 -g1,8191:15200256,42259363 -g1,8191:15755345,42259363 -g1,8191:17341316,42259363 -g1,8191:18153307,42259363 -g1,8191:19371621,42259363 -g1,8191:20564376,42259363 -g1,8191:21422897,42259363 -g1,8191:23581652,42259363 -g1,8191:25849197,42259363 -k1,8192:32583029,42259363:3781435 -g1,8192:32583029,42259363 -) -] -g1,8192:32583029,42393711 -) -h1,8192:6630773,42393711:0,0,0 -(1,8195:6630773,43759487:25952256,513147,134348 -h1,8194:6630773,43759487:983040,0,0 -k1,8194:8628720,43759487:197018 -k1,8194:9181597,43759487:197017 -k1,8194:11056992,43759487:197018 -k1,8194:12122361,43759487:197017 -k1,8194:13980061,43759487:197018 -k1,8194:15507460,43759487:197018 -k1,8194:16355905,43759487:197017 -k1,8194:18209673,43759487:197018 -k1,8194:19242275,43759487:197018 -k1,8194:20200820,43759487:197017 -k1,8194:22965539,43759487:197018 -k1,8194:24181641,43759487:197017 -k1,8194:25551098,43759487:197018 -k1,8194:27061458,43759487:197018 -k1,8194:28126827,43759487:197017 -k1,8194:30847636,43759487:197018 -k1,8195:32583029,43759487:0 -) -(1,8195:6630773,44600975:25952256,513147,134348 -k1,8194:8081156,44600975:182917 -(1,8194:8081156,44600975:0,452978,115847 -r1,8201:10901405,44600975:2820249,568825,115847 -k1,8194:8081156,44600975:-2820249 -) -(1,8194:8081156,44600975:2820249,452978,115847 -k1,8194:8081156,44600975:3277 -h1,8194:10898128,44600975:0,411205,112570 -) -k1,8194:11084322,44600975:182917 -k1,8194:12371521,44600975:182917 -k1,8194:13302204,44600975:182917 -k1,8194:14998347,44600975:182917 -k1,8194:15832692,44600975:182917 -k1,8194:17940401,44600975:182917 -k1,8194:19255125,44600975:182917 -k1,8194:20751384,44600975:182917 -k1,8194:21881952,44600975:182917 -k1,8194:23950340,44600975:182917 -k1,8194:25152342,44600975:182917 -k1,8194:26716103,44600975:182917 -k1,8194:28000025,44600975:182917 -k1,8194:30543549,44600975:182917 -k1,8195:32583029,44600975:0 -k1,8195:32583029,44600975:0 -) -v1,8197:6630773,45791441:0,393216,0 -] -(1,8201:32583029,45706769:0,0,0 -g1,8201:32583029,45706769 -) -) -] -(1,8201:6630773,47279633:25952256,0,0 -h1,8201:6630773,47279633:25952256,0,0 -) -] -(1,8201:4262630,4025873:0,0,0 -[1,8201:-473656,4025873:0,0,0 -(1,8201:-473656,-710413:0,0,0 -(1,8201:-473656,-710413:0,0,0 -g1,8201:-473656,-710413 -) -g1,8201:-473656,-710413 -) -] -) -] -!23776 -}133 -Input:1120:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1121:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1122:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1123:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1124:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1125:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1126:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!670 -{134 -[1,8268:4262630,47279633:28320399,43253760,0 -(1,8268:4262630,4025873:0,0,0 -[1,8268:-473656,4025873:0,0,0 -(1,8268:-473656,-710413:0,0,0 -(1,8268:-473656,-644877:0,0,0 -k1,8268:-473656,-644877:-65536 ) -(1,8268:-473656,4736287:0,0,0 -k1,8268:-473656,4736287:5209943 ) -g1,8268:-473656,-710413 +] +[1,6995:3078558,4812305:0,0,0 +(1,6995:3078558,2439708:0,1703936,0 +g1,6995:29030814,2439708 +g1,6995:36135244,2439708 +(1,6148:36135244,2439708:1720320,1703936,0 +(1,6148:36135244,2439708:16384,1703936,0 +[1,6148:36135244,2439708:25952256,1703936,0 +(1,6148:36135244,1915420:25952256,1179648,0 +(1,6148:36135244,1915420:16384,1179648,0 +r1,6995:36151628,1915420:16384,1179648,0 +) +k1,6148:62087500,1915420:25935872 +g1,6148:62087500,1915420 ) ] ) -[1,8268:6630773,47279633:25952256,43253760,0 -[1,8268:6630773,4812305:25952256,786432,0 -(1,8268:6630773,4812305:25952256,505283,134348 -(1,8268:6630773,4812305:25952256,505283,134348 -g1,8268:3078558,4812305 -[1,8268:3078558,4812305:0,0,0 -(1,8268:3078558,2439708:0,1703936,0 -k1,8268:1358238,2439708:-1720320 -(1,5950:1358238,2439708:1720320,1703936,0 -(1,5950:1358238,2439708:1179648,16384,0 -r1,8268:2537886,2439708:1179648,16384,0 +g1,6148:36675916,2439708 +(1,6148:36675916,2439708:1179648,16384,0 +r1,6995:37855564,2439708:1179648,16384,0 ) -g1,5950:3062174,2439708 -(1,5950:3062174,2439708:16384,1703936,0 -[1,5950:3062174,2439708:25952256,1703936,0 -(1,5950:3062174,1915420:25952256,1179648,0 -(1,5950:3062174,1915420:16384,1179648,0 -r1,8268:3078558,1915420:16384,1179648,0 ) -k1,5950:29014430,1915420:25935872 -g1,5950:29014430,1915420 +k1,6995:3078556,2439708:-34777008 ) ] +[1,6995:3078558,4812305:0,0,0 +(1,6995:3078558,49800853:0,16384,2228224 +k1,6995:1358238,49800853:-1720320 +(1,6148:1358238,49800853:1720320,16384,2228224 +(1,6148:1358238,49800853:1179648,16384,0 +r1,6995:2537886,49800853:1179648,16384,0 ) +g1,6148:3062174,49800853 +(1,6148:3062174,52029077:16384,1703936,0 +[1,6148:3062174,52029077:25952256,1703936,0 +(1,6148:3062174,51504789:25952256,1179648,0 +(1,6148:3062174,51504789:16384,1179648,0 +r1,6995:3078558,51504789:16384,1179648,0 ) +k1,6148:29014430,51504789:25935872 +g1,6148:29014430,51504789 ) ] -[1,8268:3078558,4812305:0,0,0 -(1,8268:3078558,2439708:0,1703936,0 -g1,8268:29030814,2439708 -g1,8268:36135244,2439708 -(1,5950:36135244,2439708:1720320,1703936,0 -(1,5950:36135244,2439708:16384,1703936,0 -[1,5950:36135244,2439708:25952256,1703936,0 -(1,5950:36135244,1915420:25952256,1179648,0 -(1,5950:36135244,1915420:16384,1179648,0 -r1,8268:36151628,1915420:16384,1179648,0 ) -k1,5950:62087500,1915420:25935872 -g1,5950:62087500,1915420 ) -] ) -g1,5950:36675916,2439708 -(1,5950:36675916,2439708:1179648,16384,0 -r1,8268:37855564,2439708:1179648,16384,0 +] +[1,6995:3078558,4812305:0,0,0 +(1,6995:3078558,49800853:0,16384,2228224 +g1,6995:29030814,49800853 +g1,6995:36135244,49800853 +(1,6148:36135244,49800853:1720320,16384,2228224 +(1,6148:36135244,52029077:16384,1703936,0 +[1,6148:36135244,52029077:25952256,1703936,0 +(1,6148:36135244,51504789:25952256,1179648,0 +(1,6148:36135244,51504789:16384,1179648,0 +r1,6995:36151628,51504789:16384,1179648,0 +) +k1,6148:62087500,51504789:25935872 +g1,6148:62087500,51504789 +) +] +) +g1,6148:36675916,49800853 +(1,6148:36675916,49800853:1179648,16384,0 +r1,6995:37855564,49800853:1179648,16384,0 +) +) +k1,6995:3078556,49800853:-34777008 +) +] +g1,6995:6630773,4812305 +g1,6995:6630773,4812305 +g1,6995:8364200,4812305 +g1,6995:10765439,4812305 +k1,6995:31786111,4812305:21020672 +) +) +] +[1,6995:6630773,45706769:25952256,40108032,0 +(1,6995:6630773,45706769:25952256,40108032,0 +(1,6995:6630773,45706769:0,0,0 +g1,6995:6630773,45706769 +) +[1,6995:6630773,45706769:25952256,40108032,0 +v1,6909:6630773,6254097:0,393216,0 +(1,6909:6630773,12711839:25952256,6850958,0 +g1,6909:6630773,12711839 +g1,6909:6237557,12711839 +r1,6995:6368629,12711839:131072,6850958,0 +g1,6909:6567858,12711839 +g1,6909:6764466,12711839 +[1,6909:6764466,12711839:25818563,6850958,0 +(1,6896:6764466,6526574:25818563,665693,196608 +(1,6895:6764466,6526574:0,665693,196608 +r1,6995:8010564,6526574:1246098,862301,196608 +k1,6895:6764466,6526574:-1246098 +) +(1,6895:6764466,6526574:1246098,665693,196608 +) +k1,6895:8182465,6526574:171901 +k1,6895:9500394,6526574:327680 +k1,6895:10490184,6526574:171901 +k1,6895:11681171,6526574:171902 +k1,6895:15547336,6526574:171901 +k1,6895:16250734,6526574:171901 +k1,6895:17707141,6526574:171901 +k1,6895:18645159,6526574:171902 +k1,6895:21440466,6526574:171901 +k1,6895:24454008,6526574:171901 +k1,6895:25515888,6526574:171901 +k1,6895:29208384,6526574:171902 +k1,6895:30855500,6526574:171901 +k1,6895:32583029,6526574:0 +) +(1,6896:6764466,7391654:25818563,513147,134348 +k1,6895:9291176,7391654:339774 +k1,6895:10096912,7391654:339775 +k1,6895:12744864,7391654:339774 +k1,6895:13743930,7391654:339774 +k1,6895:16846047,7391654:339774 +k1,6895:19529389,7391654:339775 +k1,6895:20860723,7391654:339774 +k1,6895:23961529,7391654:339774 +k1,6895:24987466,7391654:339775 +k1,6895:28903540,7391654:339774 +k1,6895:30262399,7391654:339774 +k1,6895:32583029,7391654:0 +) +(1,6896:6764466,8256734:25818563,513147,134348 +k1,6895:9738014,8256734:251182 +k1,6895:11847796,8256734:251181 +k1,6895:14909817,8256734:251182 +k1,6895:17804720,8256734:251181 +k1,6895:20287403,8256734:251182 +k1,6895:22467964,8256734:251181 +k1,6895:24212056,8256734:251182 +k1,6895:25482322,8256734:251181 +k1,6895:28446039,8256734:251182 +k1,6895:29787084,8256734:251181 +k1,6895:32051532,8256734:251182 +k1,6895:32583029,8256734:0 +) +(1,6896:6764466,9121814:25818563,513147,115847 +g1,6895:9645428,9121814 +g1,6895:10530819,9121814 +g1,6895:12805573,9121814 +g1,6895:14873233,9121814 +g1,6895:16020113,9121814 +(1,6895:16020113,9121814:0,414482,115847 +r1,6995:19192073,9121814:3171960,530329,115847 +k1,6895:16020113,9121814:-3171960 +) +(1,6895:16020113,9121814:3171960,414482,115847 +k1,6895:16020113,9121814:3277 +h1,6895:19188796,9121814:0,411205,112570 +) +k1,6896:32583029,9121814:13217286 +g1,6896:32583029,9121814 +) +v1,6898:6764466,9806669:0,393216,0 +(1,6904:6764466,11523668:25818563,2110215,196608 +g1,6904:6764466,11523668 +g1,6904:6764466,11523668 +g1,6904:6567858,11523668 +(1,6904:6567858,11523668:0,2110215,196608 +r1,6995:32779637,11523668:26211779,2306823,196608 +k1,6904:6567857,11523668:-26211780 +) +(1,6904:6567858,11523668:26211779,2110215,196608 +[1,6904:6764466,11523668:25818563,1913607,0 +(1,6900:6764466,10041106:25818563,431045,86428 +(1,6899:6764466,10041106:0,0,0 +g1,6899:6764466,10041106 +g1,6899:6764466,10041106 +g1,6899:6436786,10041106 +(1,6899:6436786,10041106:0,0,0 +) +g1,6899:6764466,10041106 +) +g1,6900:8424236,10041106 +g1,6900:9420098,10041106 +g1,6900:16391130,10041106 +g1,6900:17055038,10041106 +g1,6900:22366302,10041106 +k1,6900:22366302,10041106:0 +h1,6900:25353888,10041106:0,0,0 +k1,6900:32583029,10041106:7229141 +g1,6900:32583029,10041106 +) +(1,6901:6764466,10725961:25818563,424439,112852 +h1,6901:6764466,10725961:0,0,0 +g1,6901:7096420,10725961 +g1,6901:7428374,10725961 +g1,6901:7760328,10725961 +g1,6901:8092282,10725961 +g1,6901:8424236,10725961 +g1,6901:8756190,10725961 +g1,6901:9088144,10725961 +g1,6901:9420098,10725961 +g1,6901:9752052,10725961 +g1,6901:10084006,10725961 +g1,6901:10415960,10725961 +g1,6901:10747914,10725961 +g1,6901:11079868,10725961 +g1,6901:11411822,10725961 +g1,6901:11743776,10725961 +g1,6901:12075730,10725961 +g1,6901:12407684,10725961 +g1,6901:12739638,10725961 +g1,6901:13071592,10725961 +g1,6901:15395270,10725961 +g1,6901:16059178,10725961 +g1,6901:18714810,10725961 +g1,6901:20374580,10725961 +g1,6901:22366304,10725961 +g1,6901:24026074,10725961 +g1,6901:26017798,10725961 +k1,6901:26017798,10725961:0 +h1,6901:27677568,10725961:0,0,0 +k1,6901:32583029,10725961:4905461 +g1,6901:32583029,10725961 +) +(1,6902:6764466,11410816:25818563,424439,112852 +h1,6902:6764466,11410816:0,0,0 +g1,6902:7096420,11410816 +g1,6902:7428374,11410816 +g1,6902:7760328,11410816 +g1,6902:8092282,11410816 +g1,6902:8424236,11410816 +g1,6902:8756190,11410816 +g1,6902:9088144,11410816 +g1,6902:9420098,11410816 +g1,6902:9752052,11410816 +g1,6902:10084006,11410816 +g1,6902:10415960,11410816 +g1,6902:10747914,11410816 +g1,6902:11079868,11410816 +g1,6902:11411822,11410816 +g1,6902:11743776,11410816 +g1,6902:12075730,11410816 +g1,6902:12407684,11410816 +g1,6902:12739638,11410816 +g1,6902:13071592,11410816 +g1,6902:15395270,11410816 +g1,6902:16059178,11410816 +g1,6902:18382856,11410816 +g1,6902:20042626,11410816 +g1,6902:21702396,11410816 +g1,6902:23362166,11410816 +g1,6902:25021936,11410816 +h1,6902:26681706,11410816:0,0,0 +k1,6902:32583029,11410816:5901323 +g1,6902:32583029,11410816 +) +] +) +g1,6904:32583029,11523668 +g1,6904:6764466,11523668 +g1,6904:6764466,11523668 +g1,6904:32583029,11523668 +g1,6904:32583029,11523668 +) +h1,6904:6764466,11720276:0,0,0 +(1,6908:6764466,12585356:25818563,505283,126483 +h1,6907:6764466,12585356:983040,0,0 +g1,6907:9070022,12585356 +(1,6907:9070022,12585356:0,459977,115847 +r1,6995:10483423,12585356:1413401,575824,115847 +k1,6907:9070022,12585356:-1413401 +) +(1,6907:9070022,12585356:1413401,459977,115847 +k1,6907:9070022,12585356:3277 +h1,6907:10480146,12585356:0,411205,112570 +) +g1,6907:10682652,12585356 +g1,6907:12073326,12585356 +(1,6907:12073326,12585356:0,459977,115847 +r1,6995:13486727,12585356:1413401,575824,115847 +k1,6907:12073326,12585356:-1413401 +) +(1,6907:12073326,12585356:1413401,459977,115847 +k1,6907:12073326,12585356:3277 +h1,6907:13483450,12585356:0,411205,112570 +) +g1,6907:13685956,12585356 +k1,6908:32583030,12585356:16842520 +g1,6908:32583030,12585356 +) +] +g1,6909:32583029,12711839 +) +h1,6909:6630773,12711839:0,0,0 +(1,6912:6630773,13576919:25952256,513147,134348 +h1,6911:6630773,13576919:983040,0,0 +k1,6911:9284165,13576919:191204 +k1,6911:12170866,13576919:191205 +(1,6911:12170866,13576919:0,452978,115847 +r1,6995:14639403,13576919:2468537,568825,115847 +k1,6911:12170866,13576919:-2468537 +) +(1,6911:12170866,13576919:2468537,452978,115847 +k1,6911:12170866,13576919:3277 +h1,6911:14636126,13576919:0,411205,112570 +) +k1,6911:14830607,13576919:191204 +k1,6911:15890164,13576919:191205 +k1,6911:17185650,13576919:191204 +k1,6911:19192857,13576919:191204 +k1,6911:20403147,13576919:191205 +k1,6911:22149520,13576919:191204 +k1,6911:23000017,13576919:191205 +k1,6911:23961924,13576919:191204 +k1,6911:24567963,13576919:191196 +k1,6911:26718694,13576919:191205 +k1,6911:28141975,13576919:191204 +k1,6911:30611867,13576919:191205 +h1,6911:31582455,13576919:0,0,0 +k1,6911:31773659,13576919:191204 +k1,6911:32583029,13576919:0 +) +(1,6912:6630773,14441999:25952256,505283,134348 +k1,6911:8382330,14441999:253404 +h1,6911:9179248,14441999:0,0,0 +k1,6911:9813415,14441999:253403 +k1,6911:10884708,14441999:253404 +k1,6911:12006464,14441999:253404 +k1,6911:13467040,14441999:253403 +k1,6911:14336482,14441999:253404 +k1,6911:15608971,14441999:253404 +k1,6911:18616853,14441999:253404 +k1,6911:21014594,14441999:253403 +(1,6911:21014594,14441999:0,452978,115847 +r1,6995:22427995,14441999:1413401,568825,115847 +k1,6911:21014594,14441999:-1413401 +) +(1,6911:21014594,14441999:1413401,452978,115847 +k1,6911:21014594,14441999:3277 +h1,6911:22424718,14441999:0,411205,112570 +) +k1,6911:22681399,14441999:253404 +k1,6911:24126248,14441999:253404 +(1,6911:24126248,14441999:0,459977,115847 +r1,6995:27649920,14441999:3523672,575824,115847 +k1,6911:24126248,14441999:-3523672 +) +(1,6911:24126248,14441999:3523672,459977,115847 +k1,6911:24126248,14441999:3277 +h1,6911:27646643,14441999:0,411205,112570 +) +k1,6911:27903323,14441999:253403 +k1,6911:30446555,14441999:253404 +k1,6911:32583029,14441999:0 +) +(1,6912:6630773,15307079:25952256,513147,126483 +k1,6911:7571269,15307079:289068 +k1,6911:9032777,15307079:289069 +k1,6911:12084188,15307079:289068 +k1,6911:14779738,15307079:289068 +k1,6911:18003508,15307079:289068 +k1,6911:19801216,15307079:289069 +k1,6911:23921519,15307079:289068 +k1,6911:24742084,15307079:289068 +k1,6911:26885821,15307079:289068 +k1,6911:27984260,15307079:289069 +k1,6911:28629188,15307079:289068 +k1,6911:31923737,15307079:289068 +k1,6911:32583029,15307079:0 +) +(1,6912:6630773,16172159:25952256,513147,126483 +k1,6911:9174532,16172159:137277 +k1,6911:10265359,16172159:137278 +k1,6911:11449901,16172159:137277 +k1,6911:12871685,16172159:137278 +k1,6911:14564131,16172159:137277 +(1,6911:14564131,16172159:0,459977,115847 +r1,6995:18087803,16172159:3523672,575824,115847 +k1,6911:14564131,16172159:-3523672 +) +(1,6911:14564131,16172159:3523672,459977,115847 +k1,6911:14564131,16172159:3277 +h1,6911:18084526,16172159:0,411205,112570 +) +k1,6911:18225080,16172159:137277 +k1,6911:18893855,16172159:137278 +k1,6911:21414021,16172159:137277 +k1,6911:23118920,16172159:137278 +k1,6911:24811366,16172159:137277 +(1,6911:24811366,16172159:0,452978,115847 +r1,6995:26224767,16172159:1413401,568825,115847 +k1,6911:24811366,16172159:-1413401 +) +(1,6911:24811366,16172159:1413401,452978,115847 +k1,6911:24811366,16172159:3277 +h1,6911:26221490,16172159:0,411205,112570 +) +k1,6911:26535715,16172159:137278 +k1,6911:31193666,16172159:137277 +k1,6911:32583029,16172159:0 +) +(1,6912:6630773,17037239:25952256,513147,134348 +k1,6911:9080307,17037239:242937 +k1,6911:11447921,17037239:242937 +k1,6911:12709942,17037239:242936 +k1,6911:15737504,17037239:242937 +k1,6911:17171886,17037239:242937 +k1,6911:22042976,17037239:242937 +k1,6911:22945204,17037239:242936 +k1,6911:24685639,17037239:242937 +k1,6911:25614738,17037239:242937 +k1,6911:27246383,17037239:242937 +k1,6911:28175481,17037239:242936 +k1,6911:29798606,17037239:242937 +k1,6911:31516758,17037239:242937 +k1,6911:32583029,17037239:0 +) +(1,6912:6630773,17902319:25952256,513147,126483 +k1,6911:8342019,17902319:201296 +k1,6911:10763020,17902319:201297 +k1,6911:11725844,17902319:201296 +k1,6911:13210336,17902319:201297 +k1,6911:14898644,17902319:201296 +k1,6911:17481519,17902319:201297 +k1,6911:18630466,17902319:201296 +k1,6911:20221126,17902319:201297 +k1,6911:22629019,17902319:201296 +k1,6911:23985060,17902319:201297 +k1,6911:24957059,17902319:201296 +k1,6911:28890631,17902319:201297 +k1,6911:29751219,17902319:201296 +k1,6911:32583029,17902319:0 +) +(1,6912:6630773,18767399:25952256,505283,134348 +g1,6911:7854985,18767399 +g1,6911:10332901,18767399 +h1,6911:11303489,18767399:0,0,0 +g1,6911:11502718,18767399 +g1,6911:12511317,18767399 +g1,6911:14208699,18767399 +h1,6911:15404076,18767399:0,0,0 +k1,6912:32583028,18767399:16798188 +g1,6912:32583028,18767399 +) +(1,6914:6630773,19632479:25952256,513147,7863 +h1,6913:6630773,19632479:983040,0,0 +k1,6913:11091099,19632479:239152 +k1,6913:11989543,19632479:239152 +k1,6913:15421608,19632479:239151 +k1,6913:18284166,19632479:239152 +k1,6913:21364959,19632479:239152 +k1,6913:22286996,19632479:239152 +k1,6913:25839647,19632479:239151 +k1,6913:27183081,19632479:239152 +k1,6913:28169999,19632479:239152 +k1,6913:29986603,19632479:239152 +k1,6913:31371979,19632479:239151 +k1,6913:32227169,19632479:239152 +k1,6913:32583029,19632479:0 +) +(1,6914:6630773,20497559:25952256,505283,126483 +g1,6913:7823528,20497559 +g1,6913:9416708,20497559 +g1,6913:12692852,20497559 +(1,6913:12692852,20497559:0,452978,115847 +r1,6995:14457966,20497559:1765114,568825,115847 +k1,6913:12692852,20497559:-1765114 +) +(1,6913:12692852,20497559:1765114,452978,115847 +g1,6913:13751265,20497559 +h1,6913:14454689,20497559:0,411205,112570 +) +g1,6913:14657195,20497559 +g1,6913:16047869,20497559 +(1,6913:16047869,20497559:0,459977,115847 +r1,6995:16406135,20497559:358266,575824,115847 +k1,6913:16047869,20497559:-358266 +) +(1,6913:16047869,20497559:358266,459977,115847 +k1,6913:16047869,20497559:3277 +h1,6913:16402858,20497559:0,411205,112570 +) +k1,6914:32583029,20497559:16003224 +g1,6914:32583029,20497559 +) +v1,6916:6630773,21182414:0,393216,0 +(1,6941:6630773,27208162:25952256,6418964,196608 +g1,6941:6630773,27208162 +g1,6941:6630773,27208162 +g1,6941:6434165,27208162 +(1,6941:6434165,27208162:0,6418964,196608 +r1,6995:32779637,27208162:26345472,6615572,196608 +k1,6941:6434165,27208162:-26345472 +) +(1,6941:6434165,27208162:26345472,6418964,196608 +[1,6941:6630773,27208162:25952256,6222356,0 +(1,6918:6630773,21416851:25952256,431045,112852 +(1,6917:6630773,21416851:0,0,0 +g1,6917:6630773,21416851 +g1,6917:6630773,21416851 +g1,6917:6303093,21416851 +(1,6917:6303093,21416851:0,0,0 +) +g1,6917:6630773,21416851 +) +h1,6918:10282267,21416851:0,0,0 +k1,6918:32583029,21416851:22300762 +g1,6918:32583029,21416851 +) +(1,6922:6630773,22232778:25952256,424439,79822 +(1,6920:6630773,22232778:0,0,0 +g1,6920:6630773,22232778 +g1,6920:6630773,22232778 +g1,6920:6303093,22232778 +(1,6920:6303093,22232778:0,0,0 +) +g1,6920:6630773,22232778 +) +g1,6922:7626635,22232778 +g1,6922:8954451,22232778 +g1,6922:10614221,22232778 +g1,6922:10946175,22232778 +g1,6922:12273991,22232778 +g1,6922:13933761,22232778 +g1,6922:14265715,22232778 +g1,6922:15593531,22232778 +g1,6922:17253301,22232778 +g1,6922:17585255,22232778 +h1,6922:18581117,22232778:0,0,0 +k1,6922:32583029,22232778:14001912 +g1,6922:32583029,22232778 +) +(1,6924:6630773,23048705:25952256,431045,112852 +(1,6923:6630773,23048705:0,0,0 +g1,6923:6630773,23048705 +g1,6923:6630773,23048705 +g1,6923:6303093,23048705 +(1,6923:6303093,23048705:0,0,0 +) +g1,6923:6630773,23048705 +) +h1,6924:11942036,23048705:0,0,0 +k1,6924:32583028,23048705:20640992 +g1,6924:32583028,23048705 +) +(1,6928:6630773,23864632:25952256,424439,79822 +(1,6926:6630773,23864632:0,0,0 +g1,6926:6630773,23864632 +g1,6926:6630773,23864632 +g1,6926:6303093,23864632 +(1,6926:6303093,23864632:0,0,0 +) +g1,6926:6630773,23864632 +) +g1,6928:7626635,23864632 +g1,6928:8954451,23864632 +g1,6928:10614221,23864632 +g1,6928:10946175,23864632 +g1,6928:12273991,23864632 +g1,6928:13933761,23864632 +g1,6928:14265715,23864632 +g1,6928:15593531,23864632 +g1,6928:17253301,23864632 +g1,6928:17585255,23864632 +h1,6928:18581117,23864632:0,0,0 +k1,6928:32583029,23864632:14001912 +g1,6928:32583029,23864632 +) +(1,6930:6630773,24680559:25952256,431045,79822 +(1,6929:6630773,24680559:0,0,0 +g1,6929:6630773,24680559 +g1,6929:6630773,24680559 +g1,6929:6303093,24680559 +(1,6929:6303093,24680559:0,0,0 +) +g1,6929:6630773,24680559 +) +h1,6930:9618359,24680559:0,0,0 +k1,6930:32583029,24680559:22964670 +g1,6930:32583029,24680559 +) +(1,6934:6630773,25496486:25952256,424439,79822 +(1,6932:6630773,25496486:0,0,0 +g1,6932:6630773,25496486 +g1,6932:6630773,25496486 +g1,6932:6303093,25496486 +(1,6932:6303093,25496486:0,0,0 +) +g1,6932:6630773,25496486 +) +g1,6934:7626635,25496486 +g1,6934:8954451,25496486 +g1,6934:10614221,25496486 +g1,6934:10946175,25496486 +g1,6934:12273991,25496486 +g1,6934:13933761,25496486 +g1,6934:14265715,25496486 +g1,6934:15593531,25496486 +g1,6934:17253301,25496486 +g1,6934:17585255,25496486 +h1,6934:18581117,25496486:0,0,0 +k1,6934:32583029,25496486:14001912 +g1,6934:32583029,25496486 +) +(1,6936:6630773,26312413:25952256,431045,112852 +(1,6935:6630773,26312413:0,0,0 +g1,6935:6630773,26312413 +g1,6935:6630773,26312413 +g1,6935:6303093,26312413 +(1,6935:6303093,26312413:0,0,0 +) +g1,6935:6630773,26312413 +) +k1,6936:6630773,26312413:0 +h1,6936:14265714,26312413:0,0,0 +k1,6936:32583030,26312413:18317316 +g1,6936:32583030,26312413 +) +(1,6940:6630773,27128340:25952256,424439,79822 +(1,6938:6630773,27128340:0,0,0 +g1,6938:6630773,27128340 +g1,6938:6630773,27128340 +g1,6938:6303093,27128340 +(1,6938:6303093,27128340:0,0,0 +) +g1,6938:6630773,27128340 +) +g1,6940:7626635,27128340 +g1,6940:8954451,27128340 +h1,6940:11942036,27128340:0,0,0 +k1,6940:32583028,27128340:20640992 +g1,6940:32583028,27128340 +) +] +) +g1,6941:32583029,27208162 +g1,6941:6630773,27208162 +g1,6941:6630773,27208162 +g1,6941:32583029,27208162 +g1,6941:32583029,27208162 +) +h1,6941:6630773,27404770:0,0,0 +(1,6945:6630773,28269850:25952256,513147,126483 +h1,6944:6630773,28269850:983040,0,0 +k1,6944:8512873,28269850:271225 +k1,6944:9803184,28269850:271226 +k1,6944:11727882,28269850:271225 +k1,6944:13237082,28269850:271225 +k1,6944:14194469,28269850:271225 +k1,6944:15859646,28269850:271226 +k1,6944:17628369,28269850:271225 +k1,6944:18767946,28269850:271225 +k1,6944:20143454,28269850:271226 +k1,6944:21612022,28269850:271225 +k1,6944:24506653,28269850:271225 +k1,6944:27619519,28269850:271225 +k1,6944:28542173,28269850:271226 +k1,6944:30202761,28269850:271225 +k1,6944:32583029,28269850:0 +) +(1,6945:6630773,29134930:25952256,513147,134348 +g1,6944:9845969,29134930 +g1,6944:11728163,29134930 +g1,6944:13590040,29134930 +g1,6944:14255230,29134930 +k1,6945:32583029,29134930:15855781 +g1,6945:32583029,29134930 +) +v1,6947:6630773,29819785:0,393216,0 +(1,6961:6630773,35697163:25952256,6270594,196608 +g1,6961:6630773,35697163 +g1,6961:6630773,35697163 +g1,6961:6434165,35697163 +(1,6961:6434165,35697163:0,6270594,196608 +r1,6995:32779637,35697163:26345472,6467202,196608 +k1,6961:6434165,35697163:-26345472 +) +(1,6961:6434165,35697163:26345472,6270594,196608 +[1,6961:6630773,35697163:25952256,6073986,0 +(1,6949:6630773,30054222:25952256,431045,33029 +(1,6948:6630773,30054222:0,0,0 +g1,6948:6630773,30054222 +g1,6948:6630773,30054222 +g1,6948:6303093,30054222 +(1,6948:6303093,30054222:0,0,0 +) +g1,6948:6630773,30054222 +) +g1,6949:9286405,30054222 +g1,6949:10282267,30054222 +h1,6949:11278129,30054222:0,0,0 +k1,6949:32583029,30054222:21304900 +g1,6949:32583029,30054222 +) +(1,6950:6630773,30739077:25952256,431045,79822 +h1,6950:6630773,30739077:0,0,0 +g1,6950:10946175,30739077 +g1,6950:11942037,30739077 +h1,6950:12937899,30739077:0,0,0 +k1,6950:32583029,30739077:19645130 +g1,6950:32583029,30739077 +) +(1,6951:6630773,31423932:25952256,431045,79822 +h1,6951:6630773,31423932:0,0,0 +k1,6951:6630773,31423932:0 +h1,6951:9618359,31423932:0,0,0 +k1,6951:32583029,31423932:22964670 +g1,6951:32583029,31423932 +) +(1,6960:6630773,32239859:25952256,431045,9908 +(1,6953:6630773,32239859:0,0,0 +g1,6953:6630773,32239859 +g1,6953:6630773,32239859 +g1,6953:6303093,32239859 +(1,6953:6303093,32239859:0,0,0 +) +g1,6953:6630773,32239859 +) +g1,6960:7626635,32239859 +g1,6960:12273990,32239859 +g1,6960:12937898,32239859 +g1,6960:14597668,32239859 +g1,6960:15593530,32239859 +g1,6960:15925484,32239859 +g1,6960:16589392,32239859 +h1,6960:19908931,32239859:0,0,0 +k1,6960:32583029,32239859:12674098 +g1,6960:32583029,32239859 +) +(1,6960:6630773,32924714:25952256,431045,86428 +h1,6960:6630773,32924714:0,0,0 +g1,6960:7626635,32924714 +g1,6960:7958589,32924714 +g1,6960:8622497,32924714 +g1,6960:12273990,32924714 +g1,6960:14597668,32924714 +g1,6960:15593530,32924714 +g1,6960:16257438,32924714 +g1,6960:18581116,32924714 +g1,6960:23228472,32924714 +g1,6960:23892380,32924714 +g1,6960:24556288,32924714 +g1,6960:25220196,32924714 +g1,6960:25884104,32924714 +g1,6960:26548012,32924714 +h1,6960:26879966,32924714:0,0,0 +k1,6960:32583029,32924714:5703063 +g1,6960:32583029,32924714 +) +(1,6960:6630773,33609569:25952256,431045,112852 +h1,6960:6630773,33609569:0,0,0 +g1,6960:7626635,33609569 +g1,6960:7958589,33609569 +g1,6960:8622497,33609569 +g1,6960:10946175,33609569 +g1,6960:11278129,33609569 +g1,6960:11610083,33609569 +g1,6960:12273991,33609569 +g1,6960:13601807,33609569 +g1,6960:13933761,33609569 +g1,6960:15593531,33609569 +g1,6960:16921347,33609569 +g1,6960:17917209,33609569 +g1,6960:18581117,33609569 +g1,6960:20240887,33609569 +h1,6960:21236749,33609569:0,0,0 +k1,6960:32583029,33609569:11346280 +g1,6960:32583029,33609569 +) +(1,6960:6630773,34294424:25952256,431045,112852 +h1,6960:6630773,34294424:0,0,0 +g1,6960:7626635,34294424 +g1,6960:7958589,34294424 +g1,6960:8622497,34294424 +g1,6960:10946175,34294424 +g1,6960:11278129,34294424 +g1,6960:11610083,34294424 +g1,6960:12273991,34294424 +g1,6960:13601807,34294424 +g1,6960:13933761,34294424 +g1,6960:15261577,34294424 +g1,6960:16589393,34294424 +g1,6960:17917209,34294424 +g1,6960:19245025,34294424 +g1,6960:20572841,34294424 +h1,6960:20904795,34294424:0,0,0 +k1,6960:32583029,34294424:11678234 +g1,6960:32583029,34294424 +) +(1,6960:6630773,34979279:25952256,431045,33029 +h1,6960:6630773,34979279:0,0,0 +g1,6960:7626635,34979279 +g1,6960:7958589,34979279 +g1,6960:8622497,34979279 +g1,6960:9618359,34979279 +g1,6960:9950313,34979279 +g1,6960:10282267,34979279 +g1,6960:10614221,34979279 +g1,6960:10946175,34979279 +g1,6960:11278129,34979279 +g1,6960:11610083,34979279 +g1,6960:12273991,34979279 +g1,6960:13601807,34979279 +g1,6960:13933761,34979279 +g1,6960:14597669,34979279 +g1,6960:15261577,34979279 +g1,6960:15925485,34979279 +g1,6960:16589393,34979279 +g1,6960:17253301,34979279 +h1,6960:17585255,34979279:0,0,0 +k1,6960:32583029,34979279:14997774 +g1,6960:32583029,34979279 +) +(1,6960:6630773,35664134:25952256,431045,33029 +h1,6960:6630773,35664134:0,0,0 +g1,6960:7626635,35664134 +g1,6960:7958589,35664134 +g1,6960:8622497,35664134 +g1,6960:9618359,35664134 +g1,6960:9950313,35664134 +g1,6960:10282267,35664134 +g1,6960:10614221,35664134 +g1,6960:10946175,35664134 +g1,6960:11278129,35664134 +g1,6960:11610083,35664134 +g1,6960:12273991,35664134 +g1,6960:13601807,35664134 +g1,6960:13933761,35664134 +g1,6960:15261577,35664134 +g1,6960:16589393,35664134 +g1,6960:17917209,35664134 +g1,6960:19245025,35664134 +h1,6960:20240887,35664134:0,0,0 +k1,6960:32583029,35664134:12342142 +g1,6960:32583029,35664134 +) +] +) +g1,6961:32583029,35697163 +g1,6961:6630773,35697163 +g1,6961:6630773,35697163 +g1,6961:32583029,35697163 +g1,6961:32583029,35697163 +) +h1,6961:6630773,35893771:0,0,0 +v1,6965:6630773,36758851:0,393216,0 +(1,6995:6630773,43213371:25952256,6847736,0 +g1,6995:6630773,43213371 +g1,6995:6237557,43213371 +r1,6995:6368629,43213371:131072,6847736,0 +g1,6995:6567858,43213371 +g1,6995:6764466,43213371 +[1,6995:6764466,43213371:25818563,6847736,0 +(1,6966:6764466,37031328:25818563,665693,196608 +(1,6965:6764466,37031328:0,665693,196608 +r1,6995:8010564,37031328:1246098,862301,196608 +k1,6965:6764466,37031328:-1246098 +) +(1,6965:6764466,37031328:1246098,665693,196608 +) +k1,6965:8185834,37031328:175270 +k1,6965:9503763,37031328:327680 +k1,6965:10632581,37031328:175269 +k1,6965:12283066,37031328:175270 +k1,6965:14423761,37031328:175270 +k1,6965:15771469,37031328:175269 +k1,6965:18659930,37031328:175270 +k1,6965:19486628,37031328:175270 +k1,6965:20680982,37031328:175269 +k1,6965:22245615,37031328:175270 +k1,6965:24470851,37031328:175270 +k1,6965:25837565,37031328:175269 +k1,6965:26628873,37031328:175270 +k1,6965:27823228,37031328:175270 +k1,6965:29365578,37031328:175269 +k1,6965:30200140,37031328:175270 +k1,6966:32583029,37031328:0 +) +(1,6966:6764466,37896408:25818563,513147,134348 +(1,6965:6764466,37896408:0,435480,115847 +r1,6995:7474444,37896408:709978,551327,115847 +k1,6965:6764466,37896408:-709978 +) +(1,6965:6764466,37896408:709978,435480,115847 +k1,6965:6764466,37896408:3277 +h1,6965:7471167,37896408:0,411205,112570 +) +k1,6965:7741102,37896408:266658 +k1,6965:10867097,37896408:266659 +k1,6965:12572270,37896408:266658 +k1,6965:14675247,37896408:266658 +k1,6965:16322749,37896408:266658 +k1,6965:17120905,37896408:266659 +k1,6965:19306457,37896408:266658 +k1,6965:20896942,37896408:266658 +k1,6965:22355045,37896408:266658 +k1,6965:24011067,37896408:266659 +k1,6965:26484322,37896408:266658 +k1,6965:28494238,37896408:266658 +k1,6965:32583029,37896408:0 +) +(1,6966:6764466,38761488:25818563,513147,134348 +k1,6965:7624438,38761488:243934 +k1,6965:9377012,38761488:243935 +k1,6965:12554337,38761488:243934 +k1,6965:13426106,38761488:243934 +k1,6965:14025901,38761488:243935 +k1,6965:15659198,38761488:243934 +k1,6965:17953099,38761488:243935 +k1,6965:21028188,38761488:243934 +k1,6965:22827291,38761488:243934 +k1,6965:24262671,38761488:243935 +k1,6965:26289184,38761488:243934 +k1,6965:27637400,38761488:243934 +k1,6965:28629101,38761488:243935 +k1,6965:31635378,38761488:243934 +k1,6965:32583029,38761488:0 +) +(1,6966:6764466,39626568:25818563,513147,126483 +k1,6965:9762381,39626568:235572 +k1,6965:12621359,39626568:235572 +k1,6965:15698572,39626568:235572 +k1,6965:19235192,39626568:235572 +k1,6965:20850952,39626568:235572 +k1,6965:22078085,39626568:235573 +k1,6965:25026192,39626568:235572 +k1,6965:25913192,39626568:235572 +k1,6965:26896530,39626568:235572 +k1,6965:29440280,39626568:235572 +k1,6965:30358737,39626568:235572 +k1,6965:32583029,39626568:0 +) +(1,6966:6764466,40491648:25818563,513147,134348 +k1,6965:7645848,40491648:222090 +k1,6965:8887023,40491648:222090 +k1,6965:10762586,40491648:222090 +k1,6965:12997942,40491648:222090 +k1,6965:14110011,40491648:222090 +k1,6965:14687961,40491648:222090 +k1,6965:16997373,40491648:222090 +k1,6965:18613414,40491648:222090 +k1,6965:19854588,40491648:222089 +k1,6965:21730151,40491648:222090 +k1,6965:24438022,40491648:222090 +k1,6965:25319404,40491648:222090 +k1,6965:27249362,40491648:222090 +k1,6965:28154337,40491648:222090 +k1,6965:28732287,40491648:222090 +k1,6965:29947903,40491648:222090 +k1,6965:31563944,40491648:222090 +k1,6965:32583029,40491648:0 +) +(1,6966:6764466,41356728:25818563,513147,126483 +k1,6965:8612908,41356728:194969 +k1,6965:11293659,41356728:194970 +k1,6965:12147920,41356728:194969 +k1,6965:15677362,41356728:194970 +k1,6965:16500166,41356728:194969 +k1,6965:17714221,41356728:194970 +k1,6965:19276271,41356728:194969 +k1,6965:20130532,41356728:194969 +k1,6965:21823000,41356728:194970 +k1,6965:23672753,41356728:194969 +k1,6965:24399220,41356728:194970 +k1,6965:25403559,41356728:194969 +k1,6965:27092095,41356728:194970 +k1,6965:31391584,41356728:194969 +k1,6965:32583029,41356728:0 +) +(1,6966:6764466,42221808:25818563,505283,134348 +k1,6965:9817371,42221808:193569 +k1,6965:11765995,42221808:193570 +k1,6965:13642529,42221808:193569 +k1,6965:15498746,42221808:193569 +k1,6965:17390354,42221808:193570 +k1,6965:19771515,42221808:193569 +k1,6965:20320945,42221808:193570 +k1,6965:23311591,42221808:193569 +k1,6965:26387433,42221808:193569 +k1,6965:27600088,42221808:193570 +k1,6965:29804302,42221808:193569 +k1,6965:32583029,42221808:0 +) +(1,6966:6764466,43086888:25818563,513147,126483 +g1,6965:8832126,43086888 +g1,6965:9979006,43086888 +(1,6965:9979006,43086888:0,452978,115847 +r1,6995:11392407,43086888:1413401,568825,115847 +k1,6965:9979006,43086888:-1413401 +) +(1,6965:9979006,43086888:1413401,452978,115847 +k1,6965:9979006,43086888:3277 +h1,6965:11389130,43086888:0,411205,112570 +) +g1,6965:11765306,43086888 +g1,6965:12615963,43086888 +g1,6965:14559105,43086888 +g1,6965:15374372,43086888 +g1,6965:16592686,43086888 +g1,6965:19453332,43086888 +g1,6965:21507885,43086888 +g1,6965:22654765,43086888 +(1,6965:22654765,43086888:0,459977,115847 +r1,6995:24068166,43086888:1413401,575824,115847 +k1,6965:22654765,43086888:-1413401 +) +(1,6965:22654765,43086888:1413401,459977,115847 +k1,6965:22654765,43086888:3277 +h1,6965:24064889,43086888:0,411205,112570 +) +k1,6966:32583029,43086888:8341193 +g1,6966:32583029,43086888 +) +] +g1,6995:32583029,43213371 +) +] +(1,6995:32583029,45706769:0,0,0 +g1,6995:32583029,45706769 +) +) +] +(1,6995:6630773,47279633:25952256,0,0 +h1,6995:6630773,47279633:25952256,0,0 +) +] +(1,6995:4262630,4025873:0,0,0 +[1,6995:-473656,4025873:0,0,0 +(1,6995:-473656,-710413:0,0,0 +(1,6995:-473656,-710413:0,0,0 +g1,6995:-473656,-710413 +) +g1,6995:-473656,-710413 +) +] +) +] +!29697 +}108 +!12 +{109 +[1,7070:4262630,47279633:28320399,43253760,0 +(1,7070:4262630,4025873:0,0,0 +[1,7070:-473656,4025873:0,0,0 +(1,7070:-473656,-710413:0,0,0 +(1,7070:-473656,-644877:0,0,0 +k1,7070:-473656,-644877:-65536 ) +(1,7070:-473656,4736287:0,0,0 +k1,7070:-473656,4736287:5209943 ) -k1,8268:3078556,2439708:-34777008 +g1,7070:-473656,-710413 ) ] -[1,8268:3078558,4812305:0,0,0 -(1,8268:3078558,49800853:0,16384,2228224 -k1,8268:1358238,49800853:-1720320 -(1,5950:1358238,49800853:1720320,16384,2228224 -(1,5950:1358238,49800853:1179648,16384,0 -r1,8268:2537886,49800853:1179648,16384,0 ) -g1,5950:3062174,49800853 -(1,5950:3062174,52029077:16384,1703936,0 -[1,5950:3062174,52029077:25952256,1703936,0 -(1,5950:3062174,51504789:25952256,1179648,0 -(1,5950:3062174,51504789:16384,1179648,0 -r1,8268:3078558,51504789:16384,1179648,0 +[1,7070:6630773,47279633:25952256,43253760,0 +[1,7070:6630773,4812305:25952256,786432,0 +(1,7070:6630773,4812305:25952256,505283,11795 +(1,7070:6630773,4812305:25952256,505283,11795 +g1,7070:3078558,4812305 +[1,7070:3078558,4812305:0,0,0 +(1,7070:3078558,2439708:0,1703936,0 +k1,7070:1358238,2439708:-1720320 +(1,6148:1358238,2439708:1720320,1703936,0 +(1,6148:1358238,2439708:1179648,16384,0 +r1,7070:2537886,2439708:1179648,16384,0 +) +g1,6148:3062174,2439708 +(1,6148:3062174,2439708:16384,1703936,0 +[1,6148:3062174,2439708:25952256,1703936,0 +(1,6148:3062174,1915420:25952256,1179648,0 +(1,6148:3062174,1915420:16384,1179648,0 +r1,7070:3078558,1915420:16384,1179648,0 ) -k1,5950:29014430,51504789:25935872 -g1,5950:29014430,51504789 +k1,6148:29014430,1915420:25935872 +g1,6148:29014430,1915420 ) ] ) ) ) ] -[1,8268:3078558,4812305:0,0,0 -(1,8268:3078558,49800853:0,16384,2228224 -g1,8268:29030814,49800853 -g1,8268:36135244,49800853 -(1,5950:36135244,49800853:1720320,16384,2228224 -(1,5950:36135244,52029077:16384,1703936,0 -[1,5950:36135244,52029077:25952256,1703936,0 -(1,5950:36135244,51504789:25952256,1179648,0 -(1,5950:36135244,51504789:16384,1179648,0 -r1,8268:36151628,51504789:16384,1179648,0 +[1,7070:3078558,4812305:0,0,0 +(1,7070:3078558,2439708:0,1703936,0 +g1,7070:29030814,2439708 +g1,7070:36135244,2439708 +(1,6148:36135244,2439708:1720320,1703936,0 +(1,6148:36135244,2439708:16384,1703936,0 +[1,6148:36135244,2439708:25952256,1703936,0 +(1,6148:36135244,1915420:25952256,1179648,0 +(1,6148:36135244,1915420:16384,1179648,0 +r1,7070:36151628,1915420:16384,1179648,0 ) -k1,5950:62087500,51504789:25935872 -g1,5950:62087500,51504789 +k1,6148:62087500,1915420:25935872 +g1,6148:62087500,1915420 ) ] ) -g1,5950:36675916,49800853 -(1,5950:36675916,49800853:1179648,16384,0 -r1,8268:37855564,49800853:1179648,16384,0 +g1,6148:36675916,2439708 +(1,6148:36675916,2439708:1179648,16384,0 +r1,7070:37855564,2439708:1179648,16384,0 ) ) -k1,8268:3078556,49800853:-34777008 +k1,7070:3078556,2439708:-34777008 ) ] -g1,8268:6630773,4812305 -g1,8268:6630773,4812305 -g1,8268:9228620,4812305 -k1,8268:31387652,4812305:22159032 +[1,7070:3078558,4812305:0,0,0 +(1,7070:3078558,49800853:0,16384,2228224 +k1,7070:1358238,49800853:-1720320 +(1,6148:1358238,49800853:1720320,16384,2228224 +(1,6148:1358238,49800853:1179648,16384,0 +r1,7070:2537886,49800853:1179648,16384,0 ) +g1,6148:3062174,49800853 +(1,6148:3062174,52029077:16384,1703936,0 +[1,6148:3062174,52029077:25952256,1703936,0 +(1,6148:3062174,51504789:25952256,1179648,0 +(1,6148:3062174,51504789:16384,1179648,0 +r1,7070:3078558,51504789:16384,1179648,0 +) +k1,6148:29014430,51504789:25935872 +g1,6148:29014430,51504789 ) ] -[1,8268:6630773,45706769:25952256,40108032,0 -(1,8268:6630773,45706769:25952256,40108032,0 -(1,8268:6630773,45706769:0,0,0 -g1,8268:6630773,45706769 ) -[1,8268:6630773,45706769:25952256,40108032,0 -v1,8201:6630773,6254097:0,393216,0 -(1,8201:6630773,6569194:25952256,708313,196608 -g1,8201:6630773,6569194 -g1,8201:6630773,6569194 -g1,8201:6434165,6569194 -(1,8201:6434165,6569194:0,708313,196608 -r1,8268:32779637,6569194:26345472,904921,196608 -k1,8201:6434165,6569194:-26345472 ) -(1,8201:6434165,6569194:26345472,708313,196608 -[1,8201:6630773,6569194:25952256,511705,0 -(1,8199:6630773,6468007:25952256,410518,101187 -(1,8198:6630773,6468007:0,0,0 -g1,8198:6630773,6468007 -g1,8198:6630773,6468007 -g1,8198:6303093,6468007 -(1,8198:6303093,6468007:0,0,0 -) -g1,8198:6630773,6468007 -) -k1,8199:6630773,6468007:0 -g1,8199:13585979,6468007 -k1,8199:13585979,6468007:0 -h1,8199:18012018,6468007:0,0,0 -k1,8199:32583029,6468007:14571011 -g1,8199:32583029,6468007 -) -] -) -g1,8201:32583029,6569194 -g1,8201:6630773,6569194 -g1,8201:6630773,6569194 -g1,8201:32583029,6569194 -g1,8201:32583029,6569194 -) -h1,8201:6630773,6765802:0,0,0 -(1,8204:6630773,9307739:25952256,564462,12975 -(1,8204:6630773,9307739:2450326,534184,12975 -g1,8204:6630773,9307739 -g1,8204:9081099,9307739 -) -g1,8204:10677884,9307739 -k1,8204:32583030,9307739:20403520 -g1,8204:32583030,9307739 -) -(1,8208:6630773,10542443:25952256,513147,134348 -k1,8206:8113304,10542443:285844 -k1,8206:9702573,10542443:285758 -k1,8206:12168800,10542443:285844 -k1,8206:13558927,10542443:285845 -k1,8206:14592537,10542443:285844 -k1,8206:16391608,10542443:285845 -k1,8206:17328880,10542443:285844 -k1,8206:19005399,10542443:285845 -k1,8206:22484157,10542443:285844 -k1,8206:25059830,10542443:285845 -k1,8206:27672857,10542443:285844 -k1,8206:28617994,10542443:285845 -k1,8206:31575085,10542443:285844 -k1,8208:32583029,10542443:0 -) -(1,8208:6630773,11383931:25952256,513147,134348 -k1,8206:8382667,11383931:257018 -k1,8206:11133985,11383931:257018 -k1,8206:13126396,11383931:257018 -k1,8206:14366454,11383931:257018 -k1,8206:16361487,11383931:257018 -k1,8206:17605477,11383931:257018 -(1,8206:17605477,11383931:0,452978,115847 -r1,8268:19018878,11383931:1413401,568825,115847 -k1,8206:17605477,11383931:-1413401 -) -(1,8206:17605477,11383931:1413401,452978,115847 -k1,8206:17605477,11383931:3277 -h1,8206:19015601,11383931:0,411205,112570 -) -k1,8206:19656661,11383931:257019 -k1,8206:21471470,11383931:257018 -k1,8206:22720048,11383931:257018 -k1,8206:24389367,11383931:257018 -k1,8206:25837830,11383931:257018 -k1,8206:27906263,11383931:257018 -k1,8206:29557232,11383931:257018 -k1,8208:32583029,11383931:0 -) -(1,8208:6630773,12225419:25952256,513147,126483 -(1,8206:6630773,12225419:0,452978,115847 -r1,8268:9802733,12225419:3171960,568825,115847 -k1,8206:6630773,12225419:-3171960 -) -(1,8206:6630773,12225419:3171960,452978,115847 -k1,8206:6630773,12225419:3277 -h1,8206:9799456,12225419:0,411205,112570 -) -k1,8206:10099289,12225419:296556 -k1,8206:11587291,12225419:296557 -(1,8206:11587291,12225419:0,452978,115847 -r1,8268:14759251,12225419:3171960,568825,115847 -k1,8206:11587291,12225419:-3171960 -) -(1,8206:11587291,12225419:3171960,452978,115847 -k1,8206:11587291,12225419:3277 -h1,8206:14755974,12225419:0,411205,112570 -) -k1,8206:15229477,12225419:296556 -k1,8206:19496205,12225419:296557 -k1,8207:21575996,12225419:296556 -k1,8207:23175966,12225419:296459 -k1,8207:24785865,12225419:296557 -k1,8207:26073981,12225419:296556 -k1,8207:27956509,12225419:296557 -k1,8207:31015408,12225419:296556 -k1,8207:32583029,12225419:0 -) -(1,8208:6630773,13066907:25952256,513147,134348 -k1,8207:8538177,13066907:209366 -k1,8207:10183427,13066907:209356 -k1,8207:11706136,13066907:209367 -k1,8207:12907062,13066907:209366 -k1,8207:15434436,13066907:209366 -k1,8207:16512154,13066907:209366 -k1,8207:18251787,13066907:209367 -k1,8207:19112581,13066907:209366 -k1,8207:21328659,13066907:209366 -k1,8207:22557111,13066907:209367 -k1,8207:24726003,13066907:209366 -k1,8207:26347670,13066907:209366 -k1,8207:27208464,13066907:209366 -k1,8207:27773691,13066907:209367 -k1,8207:30626779,13066907:209366 -k1,8208:32583029,13066907:0 -) -(1,8208:6630773,13908395:25952256,513147,126483 -k1,8207:7821853,13908395:171995 -k1,8207:9731864,13908395:171996 -k1,8207:10851510,13908395:171995 -k1,8207:11481603,13908395:171996 -k1,8207:12305026,13908395:171995 -k1,8207:14442447,13908395:171996 -k1,8207:15265870,13908395:171995 -k1,8207:16456951,13908395:171996 -k1,8207:18699228,13908395:171995 -k1,8207:20482098,13908395:171995 -k1,8207:21428074,13908395:171996 -k1,8207:23882688,13908395:171995 -k1,8207:24512781,13908395:171996 -k1,8207:25216273,13908395:171995 -k1,8207:26674085,13908395:171996 -k1,8207:29476040,13908395:171995 -k1,8207:30299464,13908395:171996 -k1,8207:31563944,13908395:171995 -k1,8207:32583029,13908395:0 -) -(1,8208:6630773,14749883:25952256,513147,134348 -k1,8207:9589537,14749883:180037 -k1,8207:11729099,14749883:180036 -k1,8207:12595298,14749883:180037 -k1,8207:13546038,14749883:180037 -k1,8207:16798403,14749883:180037 -k1,8207:17629867,14749883:180036 -k1,8207:18165764,14749883:180037 -k1,8207:21041297,14749883:180037 -k1,8207:21904218,14749883:180036 -k1,8207:22700293,14749883:180037 -k1,8207:23651033,14749883:180037 -k1,8207:27271055,14749883:180037 -k1,8207:29911313,14749883:180036 -k1,8207:32124932,14749883:180037 -k1,8207:32583029,14749883:0 -) -(1,8208:6630773,15591371:25952256,505283,7863 -g1,8207:7481430,15591371 -g1,8207:8036519,15591371 -k1,8208:32583029,15591371:21861500 -g1,8208:32583029,15591371 -) -v1,8210:6630773,16708226:0,393216,0 -(1,8214:6630773,17023323:25952256,708313,196608 -g1,8214:6630773,17023323 -g1,8214:6630773,17023323 -g1,8214:6434165,17023323 -(1,8214:6434165,17023323:0,708313,196608 -r1,8268:32779637,17023323:26345472,904921,196608 -k1,8214:6434165,17023323:-26345472 -) -(1,8214:6434165,17023323:26345472,708313,196608 -[1,8214:6630773,17023323:25952256,511705,0 -(1,8212:6630773,16922136:25952256,410518,101187 -(1,8211:6630773,16922136:0,0,0 -g1,8211:6630773,16922136 -g1,8211:6630773,16922136 -g1,8211:6303093,16922136 -(1,8211:6303093,16922136:0,0,0 -) -g1,8211:6630773,16922136 -) -k1,8212:6630773,16922136:0 -g1,8212:11372959,16922136 -k1,8212:11372959,16922136:0 -h1,8212:15166707,16922136:0,0,0 -k1,8212:32583029,16922136:17416322 -g1,8212:32583029,16922136 -) -] -) -g1,8214:32583029,17023323 -g1,8214:6630773,17023323 -g1,8214:6630773,17023323 -g1,8214:32583029,17023323 -g1,8214:32583029,17023323 -) -h1,8214:6630773,17219931:0,0,0 -(1,8218:6630773,18512096:25952256,513147,134348 -h1,8217:6630773,18512096:983040,0,0 -g1,8217:8290799,18512096 -g1,8217:9358380,18512096 -g1,8217:10969910,18512096 -g1,8217:12188224,18512096 -g1,8217:13544163,18512096 -g1,8217:14504920,18512096 -g1,8217:16969729,18512096 -g1,8217:18188043,18512096 -g1,8217:19799573,18512096 -g1,8217:20413645,18512096 -g1,8217:22572400,18512096 -g1,8217:23904091,18512096 -g1,8217:24851086,18512096 -g1,8217:27400436,18512096 -g1,8217:28212427,18512096 -g1,8217:29430741,18512096 -k1,8218:32583029,18512096:558373 -g1,8218:32583029,18512096 -) -v1,8220:6630773,19628951:0,393216,0 -(1,8232:6630773,23849365:25952256,4613630,196608 -g1,8232:6630773,23849365 -g1,8232:6630773,23849365 -g1,8232:6434165,23849365 -(1,8232:6434165,23849365:0,4613630,196608 -r1,8268:32779637,23849365:26345472,4810238,196608 -k1,8232:6434165,23849365:-26345472 -) -(1,8232:6434165,23849365:26345472,4613630,196608 -[1,8232:6630773,23849365:25952256,4417022,0 -(1,8222:6630773,19842861:25952256,410518,101187 -(1,8221:6630773,19842861:0,0,0 -g1,8221:6630773,19842861 -g1,8221:6630773,19842861 -g1,8221:6303093,19842861 -(1,8221:6303093,19842861:0,0,0 -) -g1,8221:6630773,19842861 -) -k1,8222:6630773,19842861:0 -k1,8222:6630773,19842861:0 -h1,8222:12953687,19842861:0,0,0 -k1,8222:32583029,19842861:19629342 -g1,8222:32583029,19842861 -) -(1,8231:6630773,20509039:25952256,379060,101187 -(1,8224:6630773,20509039:0,0,0 -g1,8224:6630773,20509039 -g1,8224:6630773,20509039 -g1,8224:6303093,20509039 -(1,8224:6303093,20509039:0,0,0 -) -g1,8224:6630773,20509039 -) -g1,8231:7579210,20509039 -g1,8231:7895356,20509039 -g1,8231:8211502,20509039 -g1,8231:8843794,20509039 -h1,8231:9159940,20509039:0,0,0 -k1,8231:32583028,20509039:23423088 -g1,8231:32583028,20509039 -) -(1,8231:6630773,21175217:25952256,388497,9436 -h1,8231:6630773,21175217:0,0,0 -g1,8231:7579210,21175217 -g1,8231:8211502,21175217 -g1,8231:8843794,21175217 -h1,8231:9159940,21175217:0,0,0 -k1,8231:32583028,21175217:23423088 -g1,8231:32583028,21175217 -) -(1,8231:6630773,21841395:25952256,388497,0 -h1,8231:6630773,21841395:0,0,0 -g1,8231:7579210,21841395 -g1,8231:8211502,21841395 -g1,8231:8843794,21841395 -h1,8231:9159940,21841395:0,0,0 -k1,8231:32583028,21841395:23423088 -g1,8231:32583028,21841395 -) -(1,8231:6630773,22507573:25952256,388497,9436 -h1,8231:6630773,22507573:0,0,0 -g1,8231:7579210,22507573 -g1,8231:8211502,22507573 -g1,8231:8843794,22507573 -h1,8231:9159940,22507573:0,0,0 -k1,8231:32583028,22507573:23423088 -g1,8231:32583028,22507573 -) -(1,8231:6630773,23173751:25952256,388497,0 -h1,8231:6630773,23173751:0,0,0 -g1,8231:7579210,23173751 -g1,8231:8211502,23173751 -g1,8231:8843794,23173751 -h1,8231:9159940,23173751:0,0,0 -k1,8231:32583028,23173751:23423088 -g1,8231:32583028,23173751 -) -(1,8231:6630773,23839929:25952256,388497,9436 -h1,8231:6630773,23839929:0,0,0 -g1,8231:7579210,23839929 -g1,8231:8211502,23839929 -g1,8231:8843794,23839929 -h1,8231:9159940,23839929:0,0,0 -k1,8231:32583028,23839929:23423088 -g1,8231:32583028,23839929 -) -] -) -g1,8232:32583029,23849365 -g1,8232:6630773,23849365 -g1,8232:6630773,23849365 -g1,8232:32583029,23849365 -g1,8232:32583029,23849365 -) -h1,8232:6630773,24045973:0,0,0 -(1,8236:6630773,25338137:25952256,513147,134348 -h1,8235:6630773,25338137:983040,0,0 -k1,8235:8478514,25338137:236866 -k1,8235:9734465,25338137:236866 -k1,8235:11355450,25338137:236865 -k1,8235:14253733,25338137:236866 -k1,8235:15358951,25338137:236866 -k1,8235:17602529,25338137:236866 -k1,8235:18858480,25338137:236866 -k1,8235:20507646,25338137:236865 -k1,8235:22704038,25338137:236866 -k1,8235:23592332,25338137:236866 -k1,8235:24185058,25338137:236866 -k1,8235:27184266,25338137:236865 -k1,8235:29332817,25338137:236866 -k1,8235:30761128,25338137:236866 -k1,8235:32583029,25338137:0 -) -(1,8236:6630773,26179625:25952256,505283,134348 -g1,8235:8114508,26179625 -g1,8235:9332822,26179625 -g1,8235:11491577,26179625 -g1,8235:13103107,26179625 -g1,8235:13833833,26179625 -g1,8235:16769845,26179625 -g1,8235:17620502,26179625 -g1,8235:18838816,26179625 -g1,8235:20194755,26179625 -k1,8236:32583029,26179625:10403188 -g1,8236:32583029,26179625 -) -v1,8238:6630773,27296480:0,393216,0 -(1,8246:6630773,28918767:25952256,2015503,196608 -g1,8246:6630773,28918767 -g1,8246:6630773,28918767 -g1,8246:6434165,28918767 -(1,8246:6434165,28918767:0,2015503,196608 -r1,8268:32779637,28918767:26345472,2212111,196608 -k1,8246:6434165,28918767:-26345472 -) -(1,8246:6434165,28918767:26345472,2015503,196608 -[1,8246:6630773,28918767:25952256,1818895,0 -(1,8240:6630773,27510390:25952256,410518,101187 -(1,8239:6630773,27510390:0,0,0 -g1,8239:6630773,27510390 -g1,8239:6630773,27510390 -g1,8239:6303093,27510390 -(1,8239:6303093,27510390:0,0,0 -) -g1,8239:6630773,27510390 -) -g1,8240:10108376,27510390 -g1,8240:11056814,27510390 -k1,8240:11056814,27510390:0 -h1,8240:17379728,27510390:0,0,0 -k1,8240:32583029,27510390:15203301 -g1,8240:32583029,27510390 -) -(1,8241:6630773,28176568:25952256,410518,101187 -h1,8241:6630773,28176568:0,0,0 -g1,8241:12005250,28176568 -h1,8241:15482852,28176568:0,0,0 -k1,8241:32583028,28176568:17100176 -g1,8241:32583028,28176568 -) -(1,8245:6630773,28842746:25952256,404226,76021 -(1,8243:6630773,28842746:0,0,0 -g1,8243:6630773,28842746 -g1,8243:6630773,28842746 -g1,8243:6303093,28842746 -(1,8243:6303093,28842746:0,0,0 -) -g1,8243:6630773,28842746 -) -g1,8245:7579210,28842746 -g1,8245:8843793,28842746 -h1,8245:10108376,28842746:0,0,0 -k1,8245:32583028,28842746:22474652 -g1,8245:32583028,28842746 -) -] -) -g1,8246:32583029,28918767 -g1,8246:6630773,28918767 -g1,8246:6630773,28918767 -g1,8246:32583029,28918767 -g1,8246:32583029,28918767 -) -h1,8246:6630773,29115375:0,0,0 -(1,8250:6630773,30407540:25952256,513147,134348 -h1,8249:6630773,30407540:983040,0,0 -g1,8249:8630931,30407540 -g1,8249:10859155,30407540 -g1,8249:11926736,30407540 -g1,8249:13782715,30407540 -g1,8249:14817528,30407540 -g1,8249:15778285,30407540 -g1,8249:18545215,30407540 -g1,8249:19763529,30407540 -k1,8250:32583029,30407540:11662790 -g1,8250:32583029,30407540 -) -v1,8252:6630773,31524395:0,393216,0 -(1,8256:6630773,31839492:25952256,708313,196608 -g1,8256:6630773,31839492 -g1,8256:6630773,31839492 -g1,8256:6434165,31839492 -(1,8256:6434165,31839492:0,708313,196608 -r1,8268:32779637,31839492:26345472,904921,196608 -k1,8256:6434165,31839492:-26345472 -) -(1,8256:6434165,31839492:26345472,708313,196608 -[1,8256:6630773,31839492:25952256,511705,0 -(1,8254:6630773,31738305:25952256,410518,101187 -(1,8253:6630773,31738305:0,0,0 -g1,8253:6630773,31738305 -g1,8253:6630773,31738305 -g1,8253:6303093,31738305 -(1,8253:6303093,31738305:0,0,0 -) -g1,8253:6630773,31738305 -) -k1,8254:6630773,31738305:0 -k1,8254:6630773,31738305:0 -h1,8254:12637541,31738305:0,0,0 -k1,8254:32583029,31738305:19945488 -g1,8254:32583029,31738305 -) -] -) -g1,8256:32583029,31839492 -g1,8256:6630773,31839492 -g1,8256:6630773,31839492 -g1,8256:32583029,31839492 -g1,8256:32583029,31839492 -) -h1,8256:6630773,32036100:0,0,0 -(1,8259:6630773,35294345:25952256,32768,229376 -(1,8259:6630773,35294345:0,32768,229376 -(1,8259:6630773,35294345:5505024,32768,229376 -r1,8268:12135797,35294345:5505024,262144,229376 -) -k1,8259:6630773,35294345:-5505024 -) -(1,8259:6630773,35294345:25952256,32768,0 -r1,8268:32583029,35294345:25952256,32768,0 -) -) -(1,8259:6630773,36898673:25952256,606339,161218 -(1,8259:6630773,36898673:1974731,582746,14155 -g1,8259:6630773,36898673 -g1,8259:8605504,36898673 -) -k1,8259:32583030,36898673:20901004 -g1,8259:32583030,36898673 -) -(1,8262:6630773,38133377:25952256,513147,134348 -k1,8261:7457305,38133377:198697 -k1,8261:9257702,38133377:198697 -k1,8261:11153781,38133377:198697 -k1,8261:12371563,38133377:198697 -k1,8261:14171960,38133377:198697 -k1,8261:17047147,38133377:198697 -k1,8261:18483819,38133377:198697 -k1,8261:19341808,38133377:198697 -k1,8261:22554506,38133377:198697 -k1,8261:23944648,38133377:198697 -k1,8261:26957461,38133377:198697 -k1,8261:27815450,38133377:198697 -k1,8261:28370007,38133377:198697 -k1,8261:29958067,38133377:198697 -k1,8261:31091307,38133377:198697 -k1,8261:31821501,38133377:198697 -k1,8261:32583029,38133377:0 -) -(1,8262:6630773,38974865:25952256,505283,134348 -k1,8261:9404201,38974865:248981 -k1,8261:10111278,38974865:248980 -k1,8261:12095652,38974865:248981 -k1,8261:15015880,38974865:248981 -k1,8261:19100682,38974865:248980 -k1,8261:20546350,38974865:248981 -k1,8261:22857043,38974865:248930 -k1,8261:25412891,38974865:248981 -k1,8261:28116195,38974865:248981 -(1,8261:28116195,38974865:0,452978,115847 -r1,8268:30233020,38974865:2116825,568825,115847 -k1,8261:28116195,38974865:-2116825 -) -(1,8261:28116195,38974865:2116825,452978,115847 -k1,8261:28116195,38974865:3277 -h1,8261:30229743,38974865:0,411205,112570 -) -k1,8261:30482000,38974865:248980 -k1,8261:31835263,38974865:248981 -k1,8261:32583029,38974865:0 -) -(1,8262:6630773,39816353:25952256,513147,134348 -k1,8261:8330928,39816353:186929 -k1,8261:9169285,39816353:186929 -k1,8261:10633510,39816353:186928 -k1,8261:13582782,39816353:186929 -k1,8261:15332745,39816353:186929 -k1,8261:15989567,39816353:186929 -k1,8261:16707992,39816353:186928 -k1,8261:17250781,39816353:186929 -k1,8261:19744577,39816353:186929 -k1,8261:22385829,39816353:186929 -k1,8261:23857263,39816353:186928 -k1,8261:25145197,39816353:186929 -k1,8261:30071034,39816353:186929 -k1,8261:32583029,39816353:0 -) -(1,8262:6630773,40657841:25952256,513147,134348 -k1,8261:7774938,40657841:196514 -k1,8261:10733795,40657841:196514 -k1,8261:12689952,40657841:196515 -k1,8261:13545758,40657841:196514 -k1,8261:16032100,40657841:196514 -k1,8261:17460691,40657841:196514 -k1,8261:19935892,40657841:196514 -h1,8261:20906480,40657841:0,0,0 -k1,8261:21102995,40657841:196515 -k1,8261:22108879,40657841:196514 -k1,8261:23803546,40657841:196514 -h1,8261:24998923,40657841:0,0,0 -k1,8261:25195437,40657841:196514 -k1,8261:26339603,40657841:196515 -k1,8261:26891977,40657841:196514 -k1,8261:28590576,40657841:196514 -k1,8261:32583029,40657841:0 -) -(1,8262:6630773,41499329:25952256,513147,134348 -k1,8261:7488366,41499329:206165 -k1,8261:10158029,41499329:206165 -k1,8261:12597006,41499329:206165 -k1,8261:13994616,41499329:206165 -k1,8261:17366170,41499329:206165 -k1,8261:18200171,41499329:206166 -k1,8261:19609577,41499329:206165 -k1,8261:22094429,41499329:206165 -k1,8261:23168946,41499329:206165 -k1,8261:24750712,41499329:206165 -k1,8261:26310851,41499329:206165 -k1,8261:28549943,41499329:206165 -k1,8261:32583029,41499329:0 -) -(1,8262:6630773,42340817:25952256,513147,134348 -k1,8261:7824387,42340817:174529 -k1,8261:9091401,42340817:174529 -k1,8261:9925222,42340817:174529 -k1,8261:11118836,42340817:174529 -k1,8261:12895066,42340817:174530 -k1,8261:15847011,42340817:174529 -k1,8261:18083278,42340817:174504 -k1,8261:20976896,42340817:174529 -k1,8261:24350894,42340817:174530 -k1,8261:26083214,42340817:174529 -k1,8261:27249303,42340817:174529 -k1,8261:28702439,42340817:174529 -k1,8261:31966991,42340817:174529 -k1,8261:32583029,42340817:0 -) -(1,8262:6630773,43182305:25952256,505283,126483 -k1,8261:7855966,43182305:206108 -k1,8261:9644112,43182305:206107 -k1,8261:10299797,43182305:206108 -k1,8261:13339681,43182305:206107 -k1,8261:16065649,43182305:206108 -k1,8261:18246398,43182305:206149 -k1,8261:19406054,43182305:206107 -k1,8261:20744624,43182305:206108 -k1,8261:22017002,43182305:206107 -k1,8261:24892391,43182305:206108 -k1,8261:26117583,43182305:206107 -k1,8261:28440504,43182305:206108 -k1,8261:30708374,43182305:206107 -k1,8261:31723852,43182305:206108 -k1,8261:32583029,43182305:0 -) -(1,8262:6630773,44023793:25952256,513147,134348 -k1,8261:9027061,44023793:177239 -k1,8261:12188811,44023793:177240 -k1,8261:13017478,44023793:177239 -k1,8261:15719165,44023793:177240 -k1,8261:18139702,44023793:177239 -k1,8261:20291673,44023793:177371 -k1,8261:22807892,44023793:177239 -k1,8261:23853484,44023793:177240 -k1,8261:26700004,44023793:177239 -k1,8261:27493282,44023793:177240 -k1,8261:29457688,44023793:177239 -k1,8261:30654013,44023793:177240 -k1,8261:31923737,44023793:177239 -k1,8261:32583029,44023793:0 -) -(1,8262:6630773,44865281:25952256,513147,134348 -k1,8261:7837345,44865281:187487 -k1,8261:10363813,44865281:187488 -k1,8261:13596103,44865281:187487 -k1,8261:14399629,44865281:187488 -k1,8261:17319968,44865281:187487 -k1,8261:18698901,44865281:187488 -k1,8261:21410835,44865281:187487 -k1,8261:22992274,44865281:187488 -k1,8261:25759913,44865281:187487 -k1,8261:28775934,44865281:187488 -k1,8261:29579459,44865281:187487 -k1,8261:32184570,44865281:187488 -h1,8261:32583029,44865281:0,0,0 -k1,8261:32583029,44865281:0 -) -(1,8262:6630773,45706769:25952256,485622,134348 -g1,8261:7639372,45706769 -g1,8261:9336754,45706769 -h1,8261:10532131,45706769:0,0,0 -k1,8262:32583029,45706769:21877228 -g1,8262:32583029,45706769 -) -] -(1,8268:32583029,45706769:0,0,0 -g1,8268:32583029,45706769 -) -) -] -(1,8268:6630773,47279633:25952256,0,0 -h1,8268:6630773,47279633:25952256,0,0 -) -] -(1,8268:4262630,4025873:0,0,0 -[1,8268:-473656,4025873:0,0,0 -(1,8268:-473656,-710413:0,0,0 -(1,8268:-473656,-710413:0,0,0 -g1,8268:-473656,-710413 -) -g1,8268:-473656,-710413 -) -] -) -] -!21978 -}134 -Input:1127:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1128:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1129:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1130:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1131:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1132:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1133:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1134:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1135:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1136:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1137:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1046 -{135 -[1,8298:4262630,47279633:28320399,43253760,0 -(1,8298:4262630,4025873:0,0,0 -[1,8298:-473656,4025873:0,0,0 -(1,8298:-473656,-710413:0,0,0 -(1,8298:-473656,-644877:0,0,0 -k1,8298:-473656,-644877:-65536 ) -(1,8298:-473656,4736287:0,0,0 -k1,8298:-473656,4736287:5209943 +] +[1,7070:3078558,4812305:0,0,0 +(1,7070:3078558,49800853:0,16384,2228224 +g1,7070:29030814,49800853 +g1,7070:36135244,49800853 +(1,6148:36135244,49800853:1720320,16384,2228224 +(1,6148:36135244,52029077:16384,1703936,0 +[1,6148:36135244,52029077:25952256,1703936,0 +(1,6148:36135244,51504789:25952256,1179648,0 +(1,6148:36135244,51504789:16384,1179648,0 +r1,7070:36151628,51504789:16384,1179648,0 +) +k1,6148:62087500,51504789:25935872 +g1,6148:62087500,51504789 +) +] +) +g1,6148:36675916,49800853 +(1,6148:36675916,49800853:1179648,16384,0 +r1,7070:37855564,49800853:1179648,16384,0 +) +) +k1,7070:3078556,49800853:-34777008 +) +] +g1,7070:6630773,4812305 +k1,7070:24358919,4812305:16931228 +g1,7070:25981590,4812305 +g1,7070:26804066,4812305 +g1,7070:30302377,4812305 +) +) +] +[1,7070:6630773,45706769:25952256,40108032,0 +(1,7070:6630773,45706769:25952256,40108032,0 +(1,7070:6630773,45706769:0,0,0 +g1,7070:6630773,45706769 +) +[1,7070:6630773,45706769:25952256,40108032,0 +v1,6995:6630773,6254097:0,393216,0 +(1,6995:6630773,16692751:25952256,10831870,0 +g1,6995:6630773,16692751 +g1,6995:6237557,16692751 +r1,7070:6368629,16692751:131072,10831870,0 +g1,6995:6567858,16692751 +g1,6995:6764466,16692751 +[1,6995:6764466,16692751:25818563,10831870,0 +v1,6968:6764466,6254097:0,393216,0 +(1,6992:6764466,16496143:25818563,10635262,196608 +g1,6992:6764466,16496143 +g1,6992:6764466,16496143 +g1,6992:6567858,16496143 +(1,6992:6567858,16496143:0,10635262,196608 +r1,7070:32779637,16496143:26211779,10831870,196608 +k1,6992:6567857,16496143:-26211780 +) +(1,6992:6567858,16496143:26211779,10635262,196608 +[1,6992:6764466,16496143:25818563,10438654,0 +(1,6970:6764466,6481928:25818563,424439,106246 +(1,6969:6764466,6481928:0,0,0 +g1,6969:6764466,6481928 +g1,6969:6764466,6481928 +g1,6969:6436786,6481928 +(1,6969:6436786,6481928:0,0,0 +) +g1,6969:6764466,6481928 +) +g1,6970:8424236,6481928 +g1,6970:9420098,6481928 +g1,6970:11743776,6481928 +g1,6970:12407684,6481928 +g1,6970:14067454,6481928 +g1,6970:14731362,6481928 +g1,6970:15395270,6481928 +g1,6970:17055040,6481928 +g1,6970:17718948,6481928 +g1,6970:18382856,6481928 +g1,6970:21038488,6481928 +h1,6970:23362166,6481928:0,0,0 +k1,6970:32583029,6481928:9220863 +g1,6970:32583029,6481928 +) +(1,6971:6764466,7166783:25818563,424439,79822 +h1,6971:6764466,7166783:0,0,0 +k1,6971:6764466,7166783:0 +h1,6971:9752052,7166783:0,0,0 +k1,6971:32583028,7166783:22830976 +g1,6971:32583028,7166783 +) +(1,6978:6764466,7982710:25818563,431045,9908 +(1,6973:6764466,7982710:0,0,0 +g1,6973:6764466,7982710 +g1,6973:6764466,7982710 +g1,6973:6436786,7982710 +(1,6973:6436786,7982710:0,0,0 +) +g1,6973:6764466,7982710 +) +g1,6978:7760328,7982710 +g1,6978:9420098,7982710 +g1,6978:10415960,7982710 +h1,6978:10747914,7982710:0,0,0 +k1,6978:32583030,7982710:21835116 +g1,6978:32583030,7982710 +) +(1,6978:6764466,8667565:25818563,431045,79822 +h1,6978:6764466,8667565:0,0,0 +g1,6978:7760328,8667565 +g1,6978:8092282,8667565 +g1,6978:8756190,8667565 +g1,6978:9752052,8667565 +g1,6978:11079868,8667565 +g1,6978:13071592,8667565 +g1,6978:13735500,8667565 +g1,6978:14399408,8667565 +g1,6978:15063316,8667565 +g1,6978:15727224,8667565 +g1,6978:16391132,8667565 +h1,6978:16723086,8667565:0,0,0 +k1,6978:32583029,8667565:15859943 +g1,6978:32583029,8667565 +) +(1,6978:6764466,9352420:25818563,431045,106246 +h1,6978:6764466,9352420:0,0,0 +g1,6978:7760328,9352420 +g1,6978:8092282,9352420 +g1,6978:8756190,9352420 +g1,6978:9752052,9352420 +g1,6978:11079868,9352420 +h1,6978:12075730,9352420:0,0,0 +k1,6978:32583030,9352420:20507300 +g1,6978:32583030,9352420 +) +(1,6978:6764466,10037275:25818563,431045,112852 +h1,6978:6764466,10037275:0,0,0 +g1,6978:7760328,10037275 +g1,6978:8092282,10037275 +g1,6978:8756190,10037275 +g1,6978:9752052,10037275 +g1,6978:11411822,10037275 +g1,6978:13403546,10037275 +g1,6978:15063316,10037275 +h1,6978:16723086,10037275:0,0,0 +k1,6978:32583029,10037275:15859943 +g1,6978:32583029,10037275 +) +(1,6980:6764466,10853202:25818563,431045,33029 +(1,6979:6764466,10853202:0,0,0 +g1,6979:6764466,10853202 +g1,6979:6764466,10853202 +g1,6979:6436786,10853202 +(1,6979:6436786,10853202:0,0,0 +) +g1,6979:6764466,10853202 +) +g1,6980:9420098,10853202 +g1,6980:10415960,10853202 +h1,6980:11411822,10853202:0,0,0 +k1,6980:32583030,10853202:21171208 +g1,6980:32583030,10853202 +) +(1,6981:6764466,11538057:25818563,431045,33029 +h1,6981:6764466,11538057:0,0,0 +g1,6981:9420098,11538057 +g1,6981:10415960,11538057 +h1,6981:11411822,11538057:0,0,0 +k1,6981:32583030,11538057:21171208 +g1,6981:32583030,11538057 +) +(1,6982:6764466,12222912:25818563,424439,79822 +h1,6982:6764466,12222912:0,0,0 +k1,6982:6764466,12222912:0 +h1,6982:9752052,12222912:0,0,0 +k1,6982:32583028,12222912:22830976 +g1,6982:32583028,12222912 +) +(1,6991:6764466,13038839:25818563,431045,9908 +(1,6984:6764466,13038839:0,0,0 +g1,6984:6764466,13038839 +g1,6984:6764466,13038839 +g1,6984:6436786,13038839 +(1,6984:6436786,13038839:0,0,0 +) +g1,6984:6764466,13038839 +) +g1,6991:7760328,13038839 +g1,6991:9420098,13038839 +g1,6991:10415960,13038839 +h1,6991:10747914,13038839:0,0,0 +k1,6991:32583030,13038839:21835116 +g1,6991:32583030,13038839 +) +(1,6991:6764466,13723694:25818563,431045,79822 +h1,6991:6764466,13723694:0,0,0 +g1,6991:7760328,13723694 +g1,6991:8092282,13723694 +g1,6991:8756190,13723694 +g1,6991:9420098,13723694 +g1,6991:10084006,13723694 +g1,6991:11411822,13723694 +g1,6991:13403546,13723694 +g1,6991:14067454,13723694 +g1,6991:14731362,13723694 +g1,6991:15395270,13723694 +g1,6991:16059178,13723694 +g1,6991:16723086,13723694 +h1,6991:17055040,13723694:0,0,0 +k1,6991:32583029,13723694:15527989 +g1,6991:32583029,13723694 +) +(1,6991:6764466,14408549:25818563,431045,106246 +h1,6991:6764466,14408549:0,0,0 +g1,6991:7760328,14408549 +g1,6991:8092282,14408549 +g1,6991:8756190,14408549 +g1,6991:9420098,14408549 +g1,6991:10084006,14408549 +g1,6991:11411822,14408549 +h1,6991:12407684,14408549:0,0,0 +k1,6991:32583028,14408549:20175344 +g1,6991:32583028,14408549 +) +(1,6991:6764466,15093404:25818563,431045,112852 +h1,6991:6764466,15093404:0,0,0 +g1,6991:7760328,15093404 +g1,6991:8092282,15093404 +g1,6991:8756190,15093404 +g1,6991:9420098,15093404 +g1,6991:10084006,15093404 +g1,6991:11743776,15093404 +g1,6991:13735500,15093404 +g1,6991:15395270,15093404 +h1,6991:17055040,15093404:0,0,0 +k1,6991:32583029,15093404:15527989 +g1,6991:32583029,15093404 +) +(1,6991:6764466,15778259:25818563,431045,79822 +h1,6991:6764466,15778259:0,0,0 +g1,6991:7760328,15778259 +g1,6991:8092282,15778259 +g1,6991:8756190,15778259 +g1,6991:10084006,15778259 +g1,6991:11411822,15778259 +g1,6991:13403546,15778259 +g1,6991:14067454,15778259 +g1,6991:14731362,15778259 +g1,6991:15395270,15778259 +g1,6991:16059178,15778259 +g1,6991:16723086,15778259 +h1,6991:17055040,15778259:0,0,0 +k1,6991:32583029,15778259:15527989 +g1,6991:32583029,15778259 +) +(1,6991:6764466,16463114:25818563,431045,33029 +h1,6991:6764466,16463114:0,0,0 +g1,6991:7760328,16463114 +g1,6991:8092282,16463114 +g1,6991:8756190,16463114 +g1,6991:10084006,16463114 +g1,6991:11411822,16463114 +h1,6991:12407684,16463114:0,0,0 +k1,6991:32583028,16463114:20175344 +g1,6991:32583028,16463114 +) +] +) +g1,6992:32583029,16496143 +g1,6992:6764466,16496143 +g1,6992:6764466,16496143 +g1,6992:32583029,16496143 +g1,6992:32583029,16496143 +) +h1,6992:6764466,16692751:0,0,0 +] +g1,6995:32583029,16692751 +) +h1,6995:6630773,16692751:0,0,0 +(1,6998:6630773,17557831:25952256,513147,134348 +h1,6997:6630773,17557831:983040,0,0 +k1,6997:9545377,17557831:194860 +k1,6997:10912677,17557831:194861 +k1,6997:15013483,17557831:194860 +k1,6997:16399788,17557831:194860 +k1,6997:20229931,17557831:194861 +k1,6997:21040829,17557831:194860 +k1,6997:23278446,17557831:194860 +k1,6997:24862670,17557831:194861 +k1,6997:27437798,17557831:194860 +k1,6997:28248696,17557831:194860 +k1,6997:30907711,17557831:194861 +k1,6997:31753999,17557831:194860 +k1,6998:32583029,17557831:0 +) +(1,6998:6630773,18422911:25952256,505283,134348 +k1,6997:8937859,18422911:183719 +k1,6997:10313023,18422911:183719 +k1,6997:14172001,18422911:183719 +k1,6997:16578702,18422911:183720 +k1,6997:19530662,18422911:183719 +k1,6997:20365809,18422911:183719 +k1,6997:20905388,18422911:183719 +k1,6997:23350099,18422911:183719 +k1,6997:25091609,18422911:183719 +k1,6997:26750544,18422911:183720 +k1,6997:28106702,18422911:183719 +k1,6997:31048831,18422911:183719 +k1,6997:32583029,18422911:0 +) +(1,6998:6630773,19287991:25952256,513147,126483 +k1,6997:8001434,19287991:179216 +k1,6997:11067510,19287991:179215 +k1,6997:12438171,19287991:179216 +k1,6997:13789825,19287991:179215 +k1,6997:16218237,19287991:179216 +k1,6997:18865539,19287991:179216 +k1,6997:20063839,19287991:179215 +k1,6997:22799614,19287991:179216 +k1,6997:23638122,19287991:179216 +k1,6997:24173197,19287991:179215 +k1,6997:26975819,19287991:179216 +k1,6997:29020189,19287991:179215 +k1,6997:30152954,19287991:179216 +k1,6997:32583029,19287991:0 +) +(1,6998:6630773,20153071:25952256,505283,134348 +k1,6997:8528797,20153071:205884 +k1,6997:11726399,20153071:205883 +k1,6997:13503836,20153071:205884 +k1,6997:14781889,20153071:205884 +k1,6997:16994484,20153071:205883 +k1,6997:19550489,20153071:205884 +k1,6997:22035060,20153071:205884 +h1,6997:23404107,20153071:0,0,0 +k1,6997:23609991,20153071:205884 +k1,6997:24625244,20153071:205883 +k1,6997:26329281,20153071:205884 +h1,6997:27126199,20153071:0,0,0 +k1,6997:27332083,20153071:205884 +k1,6997:28729411,20153071:205883 +k1,6997:31213982,20153071:205884 +h1,6997:32583029,20153071:0,0,0 +k1,6997:32583029,20153071:0 +) +(1,6998:6630773,21018151:25952256,513147,134348 +g1,6997:7639372,21018151 +g1,6997:9336754,21018151 +h1,6997:10133672,21018151:0,0,0 +g1,6997:10332901,21018151 +g1,6997:11479781,21018151 +g1,6997:14906003,21018151 +k1,6998:32583029,21018151:15385887 +g1,6998:32583029,21018151 +) +(1,7000:6630773,21883231:25952256,513147,126483 +h1,6999:6630773,21883231:983040,0,0 +k1,6999:11325584,21883231:321594 +k1,6999:14336777,21883231:321595 +k1,6999:16670326,21883231:321594 +k1,6999:21277976,21883231:321595 +k1,6999:24814111,21883231:321594 +k1,6999:26703327,21883231:321595 +k1,6999:29696168,21883231:321594 +k1,6999:32583029,21883231:0 +) +(1,7000:6630773,22748311:25952256,505283,126483 +k1,6999:8768885,22748311:252641 +k1,6999:9553023,22748311:252641 +k1,6999:10871936,22748311:252642 +k1,6999:13754537,22748311:252641 +k1,6999:15401129,22748311:252641 +k1,6999:17151268,22748311:252641 +k1,6999:18600597,22748311:252642 +k1,6999:20533581,22748311:252641 +k1,6999:23564949,22748311:252641 +k1,6999:24349087,22748311:252641 +k1,6999:25217766,22748311:252641 +k1,6999:27072108,22748311:252642 +k1,6999:29022131,22748311:252641 +k1,6999:29630632,22748311:252641 +k1,6999:32583029,22748311:0 +) +(1,7000:6630773,23613391:25952256,513147,126483 +g1,6999:8219365,23613391 +g1,6999:10294890,23613391 +g1,6999:11180281,23613391 +g1,6999:11995548,23613391 +g1,6999:13398018,23613391 +k1,7000:32583029,23613391:16349924 +g1,7000:32583029,23613391 +) +v1,7002:6630773,24298246:0,393216,0 +(1,7011:6630773,26728228:25952256,2823198,196608 +g1,7011:6630773,26728228 +g1,7011:6630773,26728228 +g1,7011:6434165,26728228 +(1,7011:6434165,26728228:0,2823198,196608 +r1,7070:32779637,26728228:26345472,3019806,196608 +k1,7011:6434165,26728228:-26345472 +) +(1,7011:6434165,26728228:26345472,2823198,196608 +[1,7011:6630773,26728228:25952256,2626590,0 +(1,7004:6630773,24532683:25952256,431045,86428 +(1,7003:6630773,24532683:0,0,0 +g1,7003:6630773,24532683 +g1,7003:6630773,24532683 +g1,7003:6303093,24532683 +(1,7003:6303093,24532683:0,0,0 +) +g1,7003:6630773,24532683 +) +k1,7004:6630773,24532683:0 +g1,7004:9950313,24532683 +h1,7004:11278129,24532683:0,0,0 +k1,7004:32583029,24532683:21304900 +g1,7004:32583029,24532683 +) +(1,7010:6630773,25348610:25952256,424439,112852 +(1,7006:6630773,25348610:0,0,0 +g1,7006:6630773,25348610 +g1,7006:6630773,25348610 +g1,7006:6303093,25348610 +(1,7006:6303093,25348610:0,0,0 +) +g1,7006:6630773,25348610 +) +g1,7010:7626635,25348610 +g1,7010:7958589,25348610 +g1,7010:8290543,25348610 +g1,7010:11610082,25348610 +h1,7010:13601806,25348610:0,0,0 +k1,7010:32583030,25348610:18981224 +g1,7010:32583030,25348610 +) +(1,7010:6630773,26033465:25952256,424439,9908 +h1,7010:6630773,26033465:0,0,0 +g1,7010:7626635,26033465 +g1,7010:8290543,26033465 +g1,7010:8622497,26033465 +g1,7010:8954451,26033465 +g1,7010:9286405,26033465 +g1,7010:9618359,26033465 +g1,7010:9950313,26033465 +g1,7010:11610083,26033465 +g1,7010:11942037,26033465 +g1,7010:12273991,26033465 +g1,7010:12605945,26033465 +h1,7010:13601807,26033465:0,0,0 +k1,7010:32583029,26033465:18981222 +g1,7010:32583029,26033465 +) +(1,7010:6630773,26718320:25952256,424439,9908 +h1,7010:6630773,26718320:0,0,0 +g1,7010:7626635,26718320 +g1,7010:8290543,26718320 +g1,7010:8622497,26718320 +g1,7010:8954451,26718320 +g1,7010:9286405,26718320 +g1,7010:9618359,26718320 +g1,7010:9950313,26718320 +g1,7010:10282267,26718320 +g1,7010:11610083,26718320 +g1,7010:11942037,26718320 +g1,7010:12273991,26718320 +h1,7010:13601807,26718320:0,0,0 +k1,7010:32583029,26718320:18981222 +g1,7010:32583029,26718320 +) +] +) +g1,7011:32583029,26728228 +g1,7011:6630773,26728228 +g1,7011:6630773,26728228 +g1,7011:32583029,26728228 +g1,7011:32583029,26728228 +) +h1,7011:6630773,26924836:0,0,0 +v1,7015:6630773,27609691:0,393216,0 +(1,7066:6630773,45510161:25952256,18293686,196608 +g1,7066:6630773,45510161 +g1,7066:6630773,45510161 +g1,7066:6434165,45510161 +(1,7066:6434165,45510161:0,18293686,196608 +r1,7070:32779637,45510161:26345472,18490294,196608 +k1,7066:6434165,45510161:-26345472 +) +(1,7066:6434165,45510161:26345472,18293686,196608 +[1,7066:6630773,45510161:25952256,18097078,0 +(1,7017:6630773,27844128:25952256,431045,106246 +(1,7016:6630773,27844128:0,0,0 +g1,7016:6630773,27844128 +g1,7016:6630773,27844128 +g1,7016:6303093,27844128 +(1,7016:6303093,27844128:0,0,0 +) +g1,7016:6630773,27844128 +) +g1,7017:7294681,27844128 +g1,7017:9286405,27844128 +g1,7017:11942037,27844128 +g1,7017:15261576,27844128 +k1,7017:15261576,27844128:41838 +h1,7017:18290999,27844128:0,0,0 +k1,7017:32583029,27844128:14292030 +g1,7017:32583029,27844128 +) +(1,7018:6630773,28528983:25952256,431045,86428 +h1,7018:6630773,28528983:0,0,0 +g1,7018:8622497,28528983 +g1,7018:9286405,28528983 +h1,7018:9950313,28528983:0,0,0 +k1,7018:32583029,28528983:22632716 +g1,7018:32583029,28528983 +) +(1,7023:6630773,29256096:25952256,424439,79822 +(1,7020:6630773,29256096:0,0,0 +g1,7020:6630773,29256096 +g1,7020:6630773,29256096 +g1,7020:6303093,29256096 +(1,7020:6303093,29256096:0,0,0 +) +g1,7020:6630773,29256096 +) +g1,7023:7626635,29256096 +g1,7023:8954451,29256096 +g1,7023:10282267,29256096 +g1,7023:10614221,29256096 +g1,7023:12273991,29256096 +g1,7023:13601807,29256096 +g1,7023:13933761,29256096 +g1,7023:15593531,29256096 +g1,7023:16921347,29256096 +g1,7023:17253301,29256096 +h1,7023:18581117,29256096:0,0,0 +k1,7023:32583029,29256096:14001912 +g1,7023:32583029,29256096 +) +(1,7023:6630773,29940951:25952256,424439,6605 +h1,7023:6630773,29940951:0,0,0 +g1,7023:7626635,29940951 +g1,7023:10282267,29940951 +g1,7023:11942037,29940951 +h1,7023:12937899,29940951:0,0,0 +k1,7023:32583029,29940951:19645130 +g1,7023:32583029,29940951 +) +(1,7025:6630773,30668064:25952256,431045,106246 +(1,7024:6630773,30668064:0,0,0 +g1,7024:6630773,30668064 +g1,7024:6630773,30668064 +g1,7024:6303093,30668064 +(1,7024:6303093,30668064:0,0,0 +) +g1,7024:6630773,30668064 +) +g1,7025:7294681,30668064 +g1,7025:9286405,30668064 +g1,7025:11942037,30668064 +g1,7025:15925484,30668064 +g1,7025:16921346,30668064 +g1,7025:19245024,30668064 +k1,7025:19245024,30668064:41838 +h1,7025:22274447,30668064:0,0,0 +k1,7025:32583029,30668064:10308582 +g1,7025:32583029,30668064 +) +(1,7026:6630773,31352919:25952256,431045,86428 +h1,7026:6630773,31352919:0,0,0 +g1,7026:8622497,31352919 +g1,7026:9286405,31352919 +h1,7026:13269852,31352919:0,0,0 +k1,7026:32583028,31352919:19313176 +g1,7026:32583028,31352919 +) +(1,7031:6630773,32080031:25952256,424439,79822 +(1,7028:6630773,32080031:0,0,0 +g1,7028:6630773,32080031 +g1,7028:6630773,32080031 +g1,7028:6303093,32080031 +(1,7028:6303093,32080031:0,0,0 +) +g1,7028:6630773,32080031 +) +g1,7031:7626635,32080031 +g1,7031:8954451,32080031 +g1,7031:10282267,32080031 +g1,7031:10614221,32080031 +g1,7031:12273991,32080031 +g1,7031:13601807,32080031 +g1,7031:13933761,32080031 +g1,7031:15593531,32080031 +g1,7031:16921347,32080031 +g1,7031:17253301,32080031 +h1,7031:18581117,32080031:0,0,0 +k1,7031:32583029,32080031:14001912 +g1,7031:32583029,32080031 +) +(1,7031:6630773,32764886:25952256,424439,6605 +h1,7031:6630773,32764886:0,0,0 +g1,7031:7626635,32764886 +g1,7031:10282267,32764886 +g1,7031:11942037,32764886 +h1,7031:12937899,32764886:0,0,0 +k1,7031:32583029,32764886:19645130 +g1,7031:32583029,32764886 +) +(1,7033:6630773,33491999:25952256,431045,106246 +(1,7032:6630773,33491999:0,0,0 +g1,7032:6630773,33491999 +g1,7032:6630773,33491999 +g1,7032:6303093,33491999 +(1,7032:6303093,33491999:0,0,0 +) +g1,7032:6630773,33491999 +) +g1,7033:7294681,33491999 +g1,7033:9286405,33491999 +k1,7033:9286405,33491999:49545 +h1,7033:10331812,33491999:0,0,0 +k1,7033:32583028,33491999:22251216 +g1,7033:32583028,33491999 +) +(1,7034:6630773,34176854:25952256,431045,86428 +h1,7034:6630773,34176854:0,0,0 +g1,7034:9286405,34176854 +h1,7034:9618359,34176854:0,0,0 +k1,7034:32583029,34176854:22964670 +g1,7034:32583029,34176854 +) +(1,7039:6630773,34903967:25952256,424439,112852 +(1,7036:6630773,34903967:0,0,0 +g1,7036:6630773,34903967 +g1,7036:6630773,34903967 +g1,7036:6303093,34903967 +(1,7036:6303093,34903967:0,0,0 +) +g1,7036:6630773,34903967 +) +g1,7039:7626635,34903967 +g1,7039:7958589,34903967 +g1,7039:8290543,34903967 +g1,7039:11610082,34903967 +g1,7039:13933760,34903967 +g1,7039:16257438,34903967 +g1,7039:17253300,34903967 +h1,7039:17917208,34903967:0,0,0 +k1,7039:32583029,34903967:14665821 +g1,7039:32583029,34903967 +) +(1,7039:6630773,35588822:25952256,424439,9908 +h1,7039:6630773,35588822:0,0,0 +g1,7039:7626635,35588822 +g1,7039:8290543,35588822 +g1,7039:8622497,35588822 +g1,7039:8954451,35588822 +g1,7039:9286405,35588822 +g1,7039:9618359,35588822 +g1,7039:9950313,35588822 +g1,7039:10282267,35588822 +g1,7039:11610083,35588822 +g1,7039:11942037,35588822 +g1,7039:12273991,35588822 +g1,7039:13933761,35588822 +g1,7039:14265715,35588822 +g1,7039:14597669,35588822 +g1,7039:14929623,35588822 +g1,7039:16257439,35588822 +g1,7039:16589393,35588822 +g1,7039:17253301,35588822 +g1,7039:17585255,35588822 +h1,7039:17917209,35588822:0,0,0 +k1,7039:32583029,35588822:14665820 +g1,7039:32583029,35588822 +) +(1,7041:6630773,36315935:25952256,431045,106246 +(1,7040:6630773,36315935:0,0,0 +g1,7040:6630773,36315935 +g1,7040:6630773,36315935 +g1,7040:6303093,36315935 +(1,7040:6303093,36315935:0,0,0 +) +g1,7040:6630773,36315935 +) +g1,7041:7294681,36315935 +g1,7041:9286405,36315935 +g1,7041:10614221,36315935 +g1,7041:12273991,36315935 +g1,7041:13269853,36315935 +g1,7041:14597669,36315935 +g1,7041:16589393,36315935 +g1,7041:17917209,36315935 +g1,7041:20240887,36315935 +k1,7041:20240887,36315935:0 +h1,7041:22564565,36315935:0,0,0 +k1,7041:32583029,36315935:10018464 +g1,7041:32583029,36315935 +) +(1,7042:6630773,37000790:25952256,431045,86428 +h1,7042:6630773,37000790:0,0,0 +g1,7042:9950313,37000790 +g1,7042:12937899,37000790 +g1,7042:15261577,37000790 +g1,7042:17253301,37000790 +g1,7042:19245025,37000790 +h1,7042:21568703,37000790:0,0,0 +k1,7042:32583029,37000790:11014326 +g1,7042:32583029,37000790 +) +(1,7048:6630773,37727903:25952256,424439,112852 +(1,7044:6630773,37727903:0,0,0 +g1,7044:6630773,37727903 +g1,7044:6630773,37727903 +g1,7044:6303093,37727903 +(1,7044:6303093,37727903:0,0,0 +) +g1,7044:6630773,37727903 +) +g1,7048:7626635,37727903 +g1,7048:7958589,37727903 +g1,7048:8290543,37727903 +g1,7048:10614221,37727903 +h1,7048:11278129,37727903:0,0,0 +k1,7048:32583029,37727903:21304900 +g1,7048:32583029,37727903 +) +(1,7048:6630773,38412758:25952256,407923,9908 +h1,7048:6630773,38412758:0,0,0 +g1,7048:7626635,38412758 +g1,7048:8290543,38412758 +g1,7048:8622497,38412758 +g1,7048:8954451,38412758 +g1,7048:9286405,38412758 +g1,7048:10614221,38412758 +g1,7048:10946175,38412758 +h1,7048:11278129,38412758:0,0,0 +k1,7048:32583029,38412758:21304900 +g1,7048:32583029,38412758 +) +(1,7048:6630773,39097613:25952256,407923,9908 +h1,7048:6630773,39097613:0,0,0 +g1,7048:7626635,39097613 +g1,7048:8290543,39097613 +g1,7048:8622497,39097613 +g1,7048:8954451,39097613 +g1,7048:9286405,39097613 +g1,7048:10614221,39097613 +g1,7048:10946175,39097613 +h1,7048:11278129,39097613:0,0,0 +k1,7048:32583029,39097613:21304900 +g1,7048:32583029,39097613 +) +(1,7050:6630773,39824726:25952256,431045,106246 +(1,7049:6630773,39824726:0,0,0 +g1,7049:6630773,39824726 +g1,7049:6630773,39824726 +g1,7049:6303093,39824726 +(1,7049:6303093,39824726:0,0,0 +) +g1,7049:6630773,39824726 +) +g1,7050:7294681,39824726 +g1,7050:8622497,39824726 +g1,7050:10282267,39824726 +g1,7050:11610083,39824726 +g1,7050:13601807,39824726 +g1,7050:17253300,39824726 +g1,7050:18249162,39824726 +k1,7050:18249162,39824726:1652 +h1,7050:19578630,39824726:0,0,0 +k1,7050:32583029,39824726:13004399 +g1,7050:32583029,39824726 +) +(1,7051:6630773,40509581:25952256,431045,86428 +h1,7051:6630773,40509581:0,0,0 +g1,7051:13269851,40509581 +g1,7051:14265713,40509581 +g1,7051:16257437,40509581 +g1,7051:16921345,40509581 +h1,7051:17253299,40509581:0,0,0 +k1,7051:32583029,40509581:15329730 +g1,7051:32583029,40509581 +) +(1,7058:6630773,41236693:25952256,424439,112852 +(1,7053:6630773,41236693:0,0,0 +g1,7053:6630773,41236693 +g1,7053:6630773,41236693 +g1,7053:6303093,41236693 +(1,7053:6303093,41236693:0,0,0 +) +g1,7053:6630773,41236693 +) +g1,7058:7626635,41236693 +g1,7058:7958589,41236693 +g1,7058:8290543,41236693 +g1,7058:11610082,41236693 +g1,7058:13933760,41236693 +g1,7058:16257438,41236693 +g1,7058:17253300,41236693 +h1,7058:17917208,41236693:0,0,0 +k1,7058:32583029,41236693:14665821 +g1,7058:32583029,41236693 +) +(1,7058:6630773,41921548:25952256,424439,9908 +h1,7058:6630773,41921548:0,0,0 +g1,7058:7626635,41921548 +g1,7058:8290543,41921548 +g1,7058:8622497,41921548 +g1,7058:8954451,41921548 +g1,7058:9286405,41921548 +g1,7058:9618359,41921548 +g1,7058:9950313,41921548 +g1,7058:10282267,41921548 +g1,7058:11610083,41921548 +g1,7058:11942037,41921548 +g1,7058:12273991,41921548 +g1,7058:13933761,41921548 +g1,7058:14265715,41921548 +g1,7058:14597669,41921548 +g1,7058:14929623,41921548 +g1,7058:16257439,41921548 +g1,7058:16589393,41921548 +g1,7058:17253301,41921548 +g1,7058:17585255,41921548 +h1,7058:17917209,41921548:0,0,0 +k1,7058:32583029,41921548:14665820 +g1,7058:32583029,41921548 +) +(1,7058:6630773,42606403:25952256,424439,9908 +h1,7058:6630773,42606403:0,0,0 +g1,7058:7626635,42606403 +g1,7058:8290543,42606403 +g1,7058:8622497,42606403 +g1,7058:8954451,42606403 +g1,7058:9286405,42606403 +g1,7058:9618359,42606403 +g1,7058:9950313,42606403 +g1,7058:10282267,42606403 +g1,7058:11610083,42606403 +g1,7058:11942037,42606403 +g1,7058:12273991,42606403 +g1,7058:13933761,42606403 +g1,7058:14265715,42606403 +g1,7058:14597669,42606403 +g1,7058:14929623,42606403 +g1,7058:16257439,42606403 +g1,7058:16589393,42606403 +g1,7058:17253301,42606403 +g1,7058:17585255,42606403 +h1,7058:17917209,42606403:0,0,0 +k1,7058:32583029,42606403:14665820 +g1,7058:32583029,42606403 +) +(1,7058:6630773,43291258:25952256,424439,9908 +h1,7058:6630773,43291258:0,0,0 +g1,7058:7626635,43291258 +g1,7058:8290543,43291258 +g1,7058:8622497,43291258 +g1,7058:8954451,43291258 +g1,7058:9286405,43291258 +g1,7058:9618359,43291258 +g1,7058:9950313,43291258 +g1,7058:10282267,43291258 +g1,7058:11610083,43291258 +g1,7058:11942037,43291258 +g1,7058:12273991,43291258 +g1,7058:13933761,43291258 +g1,7058:14265715,43291258 +g1,7058:14597669,43291258 +g1,7058:14929623,43291258 +g1,7058:16257439,43291258 +g1,7058:16589393,43291258 +g1,7058:17253301,43291258 +g1,7058:17585255,43291258 +h1,7058:17917209,43291258:0,0,0 +k1,7058:32583029,43291258:14665820 +g1,7058:32583029,43291258 +) +(1,7060:6630773,44018371:25952256,424439,112852 +(1,7059:6630773,44018371:0,0,0 +g1,7059:6630773,44018371 +g1,7059:6630773,44018371 +g1,7059:6303093,44018371 +(1,7059:6303093,44018371:0,0,0 +) +g1,7059:6630773,44018371 +) +g1,7060:7294681,44018371 +g1,7060:8622497,44018371 +g1,7060:11278129,44018371 +g1,7060:11942037,44018371 +k1,7060:11942037,44018371:25323 +h1,7060:12299314,44018371:0,0,0 +k1,7060:32583030,44018371:20283716 +g1,7060:32583030,44018371 +) +(1,7061:6630773,44703226:25952256,431045,112852 +h1,7061:6630773,44703226:0,0,0 +g1,7061:12273990,44703226 +g1,7061:12937898,44703226 +g1,7061:13933760,44703226 +h1,7061:16921345,44703226:0,0,0 +k1,7061:32583029,44703226:15661684 +g1,7061:32583029,44703226 +) +(1,7065:6630773,45430339:25952256,424439,79822 +(1,7063:6630773,45430339:0,0,0 +g1,7063:6630773,45430339 +g1,7063:6630773,45430339 +g1,7063:6303093,45430339 +(1,7063:6303093,45430339:0,0,0 +) +g1,7063:6630773,45430339 +) +g1,7065:7626635,45430339 +g1,7065:8954451,45430339 +g1,7065:10614221,45430339 +g1,7065:10946175,45430339 +g1,7065:12273991,45430339 +g1,7065:13933761,45430339 +g1,7065:14265715,45430339 +g1,7065:15593531,45430339 +g1,7065:17253301,45430339 +g1,7065:17585255,45430339 +h1,7065:18581117,45430339:0,0,0 +k1,7065:32583029,45430339:14001912 +g1,7065:32583029,45430339 +) +] +) +g1,7066:32583029,45510161 +g1,7066:6630773,45510161 +g1,7066:6630773,45510161 +g1,7066:32583029,45510161 +g1,7066:32583029,45510161 +) +h1,7066:6630773,45706769:0,0,0 +] +(1,7070:32583029,45706769:0,0,0 +g1,7070:32583029,45706769 +) +) +] +(1,7070:6630773,47279633:25952256,0,0 +h1,7070:6630773,47279633:25952256,0,0 +) +] +(1,7070:4262630,4025873:0,0,0 +[1,7070:-473656,4025873:0,0,0 +(1,7070:-473656,-710413:0,0,0 +(1,7070:-473656,-710413:0,0,0 +g1,7070:-473656,-710413 +) +g1,7070:-473656,-710413 +) +] +) +] +!27133 +}109 +Input:954:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:955:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:956:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:957:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:958:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:959:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:960:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:961:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:962:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:963:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:964:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:965:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:966:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1221 +{110 +[1,7191:4262630,47279633:28320399,43253760,0 +(1,7191:4262630,4025873:0,0,0 +[1,7191:-473656,4025873:0,0,0 +(1,7191:-473656,-710413:0,0,0 +(1,7191:-473656,-644877:0,0,0 +k1,7191:-473656,-644877:-65536 +) +(1,7191:-473656,4736287:0,0,0 +k1,7191:-473656,4736287:5209943 ) -g1,8298:-473656,-710413 +g1,7191:-473656,-710413 ) ] ) -[1,8298:6630773,47279633:25952256,43253760,0 -[1,8298:6630773,4812305:25952256,786432,0 -(1,8298:6630773,4812305:25952256,505283,11795 -(1,8298:6630773,4812305:25952256,505283,11795 -g1,8298:3078558,4812305 -[1,8298:3078558,4812305:0,0,0 -(1,8298:3078558,2439708:0,1703936,0 -k1,8298:1358238,2439708:-1720320 -(1,5950:1358238,2439708:1720320,1703936,0 -(1,5950:1358238,2439708:1179648,16384,0 -r1,8298:2537886,2439708:1179648,16384,0 +[1,7191:6630773,47279633:25952256,43253760,0 +[1,7191:6630773,4812305:25952256,786432,0 +(1,7191:6630773,4812305:25952256,513147,126483 +(1,7191:6630773,4812305:25952256,513147,126483 +g1,7191:3078558,4812305 +[1,7191:3078558,4812305:0,0,0 +(1,7191:3078558,2439708:0,1703936,0 +k1,7191:1358238,2439708:-1720320 +(1,6148:1358238,2439708:1720320,1703936,0 +(1,6148:1358238,2439708:1179648,16384,0 +r1,7191:2537886,2439708:1179648,16384,0 ) -g1,5950:3062174,2439708 -(1,5950:3062174,2439708:16384,1703936,0 -[1,5950:3062174,2439708:25952256,1703936,0 -(1,5950:3062174,1915420:25952256,1179648,0 -(1,5950:3062174,1915420:16384,1179648,0 -r1,8298:3078558,1915420:16384,1179648,0 +g1,6148:3062174,2439708 +(1,6148:3062174,2439708:16384,1703936,0 +[1,6148:3062174,2439708:25952256,1703936,0 +(1,6148:3062174,1915420:25952256,1179648,0 +(1,6148:3062174,1915420:16384,1179648,0 +r1,7191:3078558,1915420:16384,1179648,0 ) -k1,5950:29014430,1915420:25935872 -g1,5950:29014430,1915420 +k1,6148:29014430,1915420:25935872 +g1,6148:29014430,1915420 ) ] ) ) ) ] -[1,8298:3078558,4812305:0,0,0 -(1,8298:3078558,2439708:0,1703936,0 -g1,8298:29030814,2439708 -g1,8298:36135244,2439708 -(1,5950:36135244,2439708:1720320,1703936,0 -(1,5950:36135244,2439708:16384,1703936,0 -[1,5950:36135244,2439708:25952256,1703936,0 -(1,5950:36135244,1915420:25952256,1179648,0 -(1,5950:36135244,1915420:16384,1179648,0 -r1,8298:36151628,1915420:16384,1179648,0 +[1,7191:3078558,4812305:0,0,0 +(1,7191:3078558,2439708:0,1703936,0 +g1,7191:29030814,2439708 +g1,7191:36135244,2439708 +(1,6148:36135244,2439708:1720320,1703936,0 +(1,6148:36135244,2439708:16384,1703936,0 +[1,6148:36135244,2439708:25952256,1703936,0 +(1,6148:36135244,1915420:25952256,1179648,0 +(1,6148:36135244,1915420:16384,1179648,0 +r1,7191:36151628,1915420:16384,1179648,0 ) -k1,5950:62087500,1915420:25935872 -g1,5950:62087500,1915420 +k1,6148:62087500,1915420:25935872 +g1,6148:62087500,1915420 ) ] ) -g1,5950:36675916,2439708 -(1,5950:36675916,2439708:1179648,16384,0 -r1,8298:37855564,2439708:1179648,16384,0 +g1,6148:36675916,2439708 +(1,6148:36675916,2439708:1179648,16384,0 +r1,7191:37855564,2439708:1179648,16384,0 ) ) -k1,8298:3078556,2439708:-34777008 +k1,7191:3078556,2439708:-34777008 ) ] -[1,8298:3078558,4812305:0,0,0 -(1,8298:3078558,49800853:0,16384,2228224 -k1,8298:1358238,49800853:-1720320 -(1,5950:1358238,49800853:1720320,16384,2228224 -(1,5950:1358238,49800853:1179648,16384,0 -r1,8298:2537886,49800853:1179648,16384,0 -) -g1,5950:3062174,49800853 -(1,5950:3062174,52029077:16384,1703936,0 -[1,5950:3062174,52029077:25952256,1703936,0 -(1,5950:3062174,51504789:25952256,1179648,0 -(1,5950:3062174,51504789:16384,1179648,0 -r1,8298:3078558,51504789:16384,1179648,0 +[1,7191:3078558,4812305:0,0,0 +(1,7191:3078558,49800853:0,16384,2228224 +k1,7191:1358238,49800853:-1720320 +(1,6148:1358238,49800853:1720320,16384,2228224 +(1,6148:1358238,49800853:1179648,16384,0 +r1,7191:2537886,49800853:1179648,16384,0 ) -k1,5950:29014430,51504789:25935872 -g1,5950:29014430,51504789 +g1,6148:3062174,49800853 +(1,6148:3062174,52029077:16384,1703936,0 +[1,6148:3062174,52029077:25952256,1703936,0 +(1,6148:3062174,51504789:25952256,1179648,0 +(1,6148:3062174,51504789:16384,1179648,0 +r1,7191:3078558,51504789:16384,1179648,0 ) -] +k1,6148:29014430,51504789:25935872 +g1,6148:29014430,51504789 +) +] +) +) +) +] +[1,7191:3078558,4812305:0,0,0 +(1,7191:3078558,49800853:0,16384,2228224 +g1,7191:29030814,49800853 +g1,7191:36135244,49800853 +(1,6148:36135244,49800853:1720320,16384,2228224 +(1,6148:36135244,52029077:16384,1703936,0 +[1,6148:36135244,52029077:25952256,1703936,0 +(1,6148:36135244,51504789:25952256,1179648,0 +(1,6148:36135244,51504789:16384,1179648,0 +r1,7191:36151628,51504789:16384,1179648,0 +) +k1,6148:62087500,51504789:25935872 +g1,6148:62087500,51504789 +) +] +) +g1,6148:36675916,49800853 +(1,6148:36675916,49800853:1179648,16384,0 +r1,7191:37855564,49800853:1179648,16384,0 +) +) +k1,7191:3078556,49800853:-34777008 +) +] +g1,7191:6630773,4812305 +g1,7191:6630773,4812305 +g1,7191:8364200,4812305 +g1,7191:10765439,4812305 +k1,7191:31786111,4812305:21020672 +) +) +] +[1,7191:6630773,45706769:25952256,40108032,0 +(1,7191:6630773,45706769:25952256,40108032,0 +(1,7191:6630773,45706769:0,0,0 +g1,7191:6630773,45706769 +) +[1,7191:6630773,45706769:25952256,40108032,0 +(1,7070:6630773,6254097:25952256,513147,134348 +h1,7069:6630773,6254097:983040,0,0 +k1,7069:8649181,6254097:217479 +k1,7069:11944885,6254097:217478 +k1,7069:14195946,6254097:217479 +k1,7069:15361075,6254097:217478 +k1,7069:17886732,6254097:217479 +k1,7069:19336287,6254097:217478 +k1,7069:21832453,6254097:217479 +h1,7069:23201500,6254097:0,0,0 +k1,7069:23418978,6254097:217478 +k1,7069:24445827,6254097:217479 +k1,7069:26161458,6254097:217478 +h1,7069:26958376,6254097:0,0,0 +k1,7069:27556619,6254097:217479 +k1,7069:30513502,6254097:217478 +k1,7069:31835263,6254097:217479 +k1,7069:32583029,6254097:0 +) +(1,7070:6630773,7119177:25952256,513147,134348 +k1,7069:9227528,7119177:190928 +k1,7069:10885152,7119177:190928 +k1,7069:11885450,7119177:190928 +k1,7069:13095463,7119177:190928 +k1,7069:16641179,7119177:190928 +k1,7069:18131686,7119177:190928 +k1,7069:19514059,7119177:190928 +k1,7069:22598402,7119177:190928 +k1,7069:24088909,7119177:190928 +k1,7069:24939129,7119177:190928 +k1,7069:25900760,7119177:190928 +k1,7069:29911126,7119177:190928 +k1,7069:32583029,7119177:0 +) +(1,7070:6630773,7984257:25952256,505283,134348 +g1,7069:7849087,7984257 +g1,7069:11985719,7984257 +g1,7069:15377862,7984257 +g1,7069:17587736,7984257 +g1,7069:18473127,7984257 +g1,7069:19950963,7984257 +g1,7069:20836354,7984257 +g1,7069:24670865,7984257 +k1,7070:32583029,7984257:5437525 +g1,7070:32583029,7984257 +) +(1,7072:6630773,8849337:25952256,513147,134348 +h1,7071:6630773,8849337:983040,0,0 +k1,7071:9041102,8849337:230602 +k1,7071:10655824,8849337:230602 +k1,7071:12019544,8849337:230602 +k1,7071:15241865,8849337:230602 +k1,7071:16287735,8849337:230602 +k1,7071:20494406,8849337:230602 +k1,7071:21376437,8849337:230603 +k1,7071:23628825,8849337:230602 +k1,7071:24526583,8849337:230602 +(1,7071:24526583,8849337:0,459977,115847 +r1,7191:25939984,8849337:1413401,575824,115847 +k1,7071:24526583,8849337:-1413401 +) +(1,7071:24526583,8849337:1413401,459977,115847 +k1,7071:24526583,8849337:3277 +h1,7071:25936707,8849337:0,411205,112570 +) +k1,7071:26344256,8849337:230602 +k1,7071:28430838,8849337:230602 +k1,7071:29312868,8849337:230602 +k1,7071:30700180,8849337:230602 +k1,7071:32583029,8849337:0 +) +(1,7072:6630773,9714417:25952256,505283,126483 +k1,7071:9363019,9714417:175687 +k1,7071:10221591,9714417:175687 +k1,7071:13590192,9714417:175687 +k1,7071:15950194,9714417:175687 +k1,7071:17322568,9714417:175687 +k1,7071:18646446,9714417:175687 +k1,7071:22008493,9714417:175687 +k1,7071:22800218,9714417:175687 +k1,7071:23994990,9714417:175687 +k1,7071:26141345,9714417:175687 +k1,7071:28185463,9714417:175687 +k1,7071:30388834,9714417:175687 +k1,7071:30920381,9714417:175687 +k1,7072:32583029,9714417:0 +) +(1,7072:6630773,10579497:25952256,513147,134348 +k1,7071:7896226,10579497:229329 +k1,7071:9693177,10579497:229330 +k1,7071:11079216,10579497:229329 +k1,7071:13865104,10579497:229329 +k1,7071:14745861,10579497:229329 +k1,7071:17447864,10579497:229330 +k1,7071:18438721,10579497:229329 +k1,7071:20403443,10579497:229329 +k1,7071:23372178,10579497:229330 +k1,7071:24260799,10579497:229329 +k1,7071:25509213,10579497:229329 +k1,7071:27392015,10579497:229329 +k1,7071:29010708,10579497:229330 +k1,7071:31116333,10579497:229329 +k1,7071:32583029,10579497:0 +) +(1,7072:6630773,11444577:25952256,513147,134348 +g1,7071:7639372,11444577 +g1,7071:8857686,11444577 +g1,7071:10592424,11444577 +g1,7071:12091232,11444577 +g1,7071:13481906,11444577 +g1,7071:14755270,11444577 +g1,7071:16254078,11444577 +g1,7071:17112599,11444577 +g1,7071:18330913,11444577 +g1,7071:22349580,11444577 +g1,7071:22349580,11444577 +k1,7072:32583029,11444577:10233449 +g1,7072:32583029,11444577 +) +v1,7074:6630773,12129432:0,393216,0 +(1,7140:6630773,43687045:25952256,31950829,196608 +g1,7140:6630773,43687045 +g1,7140:6630773,43687045 +g1,7140:6434165,43687045 +(1,7140:6434165,43687045:0,31950829,196608 +r1,7191:32779637,43687045:26345472,32147437,196608 +k1,7140:6434165,43687045:-26345472 +) +(1,7140:6434165,43687045:26345472,31950829,196608 +[1,7140:6630773,43687045:25952256,31754221,0 +(1,7076:6630773,12363869:25952256,431045,86428 +(1,7075:6630773,12363869:0,0,0 +g1,7075:6630773,12363869 +g1,7075:6630773,12363869 +g1,7075:6303093,12363869 +(1,7075:6303093,12363869:0,0,0 +) +g1,7075:6630773,12363869 +) +k1,7076:6630773,12363869:0 +g1,7076:9286405,12363869 +g1,7076:10282267,12363869 +g1,7076:11278129,12363869 +h1,7076:11942037,12363869:0,0,0 +k1,7076:32583029,12363869:20640992 +g1,7076:32583029,12363869 +) +(1,7077:6630773,13048724:25952256,431045,6605 +h1,7077:6630773,13048724:0,0,0 +h1,7077:7958589,13048724:0,0,0 +k1,7077:32583029,13048724:24624440 +g1,7077:32583029,13048724 +) +(1,7087:6630773,13864651:25952256,424439,112852 +(1,7079:6630773,13864651:0,0,0 +g1,7079:6630773,13864651 +g1,7079:6630773,13864651 +g1,7079:6303093,13864651 +(1,7079:6303093,13864651:0,0,0 +) +g1,7079:6630773,13864651 +) +g1,7087:7626635,13864651 +g1,7087:7958589,13864651 +g1,7087:8290543,13864651 +g1,7087:11610082,13864651 +g1,7087:13933760,13864651 +g1,7087:16257438,13864651 +g1,7087:17253300,13864651 +h1,7087:17917208,13864651:0,0,0 +k1,7087:32583029,13864651:14665821 +g1,7087:32583029,13864651 +) +(1,7087:6630773,14549506:25952256,424439,9908 +h1,7087:6630773,14549506:0,0,0 +g1,7087:7626635,14549506 +g1,7087:8290543,14549506 +g1,7087:8622497,14549506 +g1,7087:8954451,14549506 +g1,7087:9286405,14549506 +g1,7087:9618359,14549506 +g1,7087:9950313,14549506 +g1,7087:10282267,14549506 +g1,7087:11610083,14549506 +g1,7087:11942037,14549506 +g1,7087:12273991,14549506 +g1,7087:13933761,14549506 +g1,7087:14265715,14549506 +g1,7087:14597669,14549506 +g1,7087:14929623,14549506 +g1,7087:16257439,14549506 +g1,7087:16589393,14549506 +g1,7087:17253301,14549506 +g1,7087:17585255,14549506 +h1,7087:17917209,14549506:0,0,0 +k1,7087:32583029,14549506:14665820 +g1,7087:32583029,14549506 +) +(1,7087:6630773,15234361:25952256,424439,9908 +h1,7087:6630773,15234361:0,0,0 +g1,7087:7626635,15234361 +g1,7087:8290543,15234361 +g1,7087:8622497,15234361 +g1,7087:8954451,15234361 +g1,7087:9286405,15234361 +g1,7087:9618359,15234361 +g1,7087:9950313,15234361 +g1,7087:11610083,15234361 +g1,7087:11942037,15234361 +g1,7087:12273991,15234361 +g1,7087:12605945,15234361 +g1,7087:13933761,15234361 +g1,7087:14265715,15234361 +g1,7087:14597669,15234361 +g1,7087:14929623,15234361 +g1,7087:16257439,15234361 +g1,7087:16589393,15234361 +g1,7087:17253301,15234361 +g1,7087:17585255,15234361 +h1,7087:17917209,15234361:0,0,0 +k1,7087:32583029,15234361:14665820 +g1,7087:32583029,15234361 +) +(1,7087:6630773,15919216:25952256,424439,9908 +h1,7087:6630773,15919216:0,0,0 +g1,7087:7626635,15919216 +g1,7087:8290543,15919216 +g1,7087:8622497,15919216 +g1,7087:8954451,15919216 +g1,7087:9286405,15919216 +g1,7087:9618359,15919216 +g1,7087:9950313,15919216 +g1,7087:10282267,15919216 +g1,7087:11610083,15919216 +g1,7087:11942037,15919216 +g1,7087:12273991,15919216 +g1,7087:13933761,15919216 +g1,7087:14265715,15919216 +g1,7087:14597669,15919216 +g1,7087:14929623,15919216 +g1,7087:16257439,15919216 +g1,7087:16589393,15919216 +g1,7087:17253301,15919216 +g1,7087:17585255,15919216 +h1,7087:17917209,15919216:0,0,0 +k1,7087:32583029,15919216:14665820 +g1,7087:32583029,15919216 +) +(1,7087:6630773,16604071:25952256,424439,9908 +h1,7087:6630773,16604071:0,0,0 +g1,7087:7626635,16604071 +g1,7087:8290543,16604071 +g1,7087:8622497,16604071 +g1,7087:8954451,16604071 +g1,7087:9286405,16604071 +g1,7087:9618359,16604071 +g1,7087:9950313,16604071 +g1,7087:11610083,16604071 +g1,7087:11942037,16604071 +g1,7087:12273991,16604071 +g1,7087:12605945,16604071 +g1,7087:13933761,16604071 +g1,7087:14265715,16604071 +g1,7087:14597669,16604071 +g1,7087:14929623,16604071 +g1,7087:16257439,16604071 +g1,7087:16589393,16604071 +g1,7087:17253301,16604071 +g1,7087:17585255,16604071 +h1,7087:17917209,16604071:0,0,0 +k1,7087:32583029,16604071:14665820 +g1,7087:32583029,16604071 +) +(1,7087:6630773,17288926:25952256,424439,9908 +h1,7087:6630773,17288926:0,0,0 +g1,7087:7626635,17288926 +g1,7087:8290543,17288926 +g1,7087:8622497,17288926 +g1,7087:8954451,17288926 +g1,7087:9286405,17288926 +g1,7087:9618359,17288926 +g1,7087:9950313,17288926 +g1,7087:10282267,17288926 +g1,7087:11610083,17288926 +g1,7087:11942037,17288926 +g1,7087:12273991,17288926 +g1,7087:13933761,17288926 +g1,7087:14265715,17288926 +g1,7087:14597669,17288926 +g1,7087:14929623,17288926 +g1,7087:16257439,17288926 +g1,7087:16589393,17288926 +g1,7087:17253301,17288926 +g1,7087:17585255,17288926 +h1,7087:17917209,17288926:0,0,0 +k1,7087:32583029,17288926:14665820 +g1,7087:32583029,17288926 +) +(1,7087:6630773,17973781:25952256,424439,9908 +h1,7087:6630773,17973781:0,0,0 +g1,7087:7626635,17973781 +g1,7087:8290543,17973781 +g1,7087:8622497,17973781 +g1,7087:8954451,17973781 +g1,7087:9286405,17973781 +g1,7087:9618359,17973781 +g1,7087:9950313,17973781 +g1,7087:11610083,17973781 +g1,7087:11942037,17973781 +g1,7087:12273991,17973781 +g1,7087:12605945,17973781 +g1,7087:13933761,17973781 +g1,7087:14265715,17973781 +g1,7087:14597669,17973781 +g1,7087:14929623,17973781 +g1,7087:16257439,17973781 +g1,7087:16589393,17973781 +g1,7087:17253301,17973781 +g1,7087:17585255,17973781 +h1,7087:17917209,17973781:0,0,0 +k1,7087:32583029,17973781:14665820 +g1,7087:32583029,17973781 +) +(1,7089:6630773,18789708:25952256,431045,86428 +(1,7088:6630773,18789708:0,0,0 +g1,7088:6630773,18789708 +g1,7088:6630773,18789708 +g1,7088:6303093,18789708 +(1,7088:6303093,18789708:0,0,0 +) +g1,7088:6630773,18789708 +) +g1,7089:8622497,18789708 +g1,7089:9286405,18789708 +g1,7089:10282267,18789708 +g1,7089:11278129,18789708 +k1,7089:11278129,18789708:0 +h1,7089:12273991,18789708:0,0,0 +k1,7089:32583029,18789708:20309038 +g1,7089:32583029,18789708 +) +(1,7090:6630773,19474563:25952256,431045,6605 +h1,7090:6630773,19474563:0,0,0 +h1,7090:7958589,19474563:0,0,0 +k1,7090:32583029,19474563:24624440 +g1,7090:32583029,19474563 +) +(1,7100:6630773,20290490:25952256,424439,112852 +(1,7092:6630773,20290490:0,0,0 +g1,7092:6630773,20290490 +g1,7092:6630773,20290490 +g1,7092:6303093,20290490 +(1,7092:6303093,20290490:0,0,0 +) +g1,7092:6630773,20290490 +) +g1,7100:7626635,20290490 +g1,7100:7958589,20290490 +g1,7100:8290543,20290490 +g1,7100:11610082,20290490 +g1,7100:13933760,20290490 +g1,7100:16257438,20290490 +g1,7100:17253300,20290490 +h1,7100:17917208,20290490:0,0,0 +k1,7100:32583029,20290490:14665821 +g1,7100:32583029,20290490 +) +(1,7100:6630773,20975345:25952256,424439,9908 +h1,7100:6630773,20975345:0,0,0 +g1,7100:7626635,20975345 +g1,7100:8290543,20975345 +g1,7100:8622497,20975345 +g1,7100:8954451,20975345 +g1,7100:9286405,20975345 +g1,7100:9618359,20975345 +g1,7100:9950313,20975345 +g1,7100:10282267,20975345 +g1,7100:11610083,20975345 +g1,7100:11942037,20975345 +g1,7100:12273991,20975345 +g1,7100:12605945,20975345 +g1,7100:13933761,20975345 +g1,7100:14265715,20975345 +g1,7100:14597669,20975345 +g1,7100:14929623,20975345 +g1,7100:16257439,20975345 +g1,7100:16589393,20975345 +g1,7100:17253301,20975345 +g1,7100:17585255,20975345 +h1,7100:17917209,20975345:0,0,0 +k1,7100:32583029,20975345:14665820 +g1,7100:32583029,20975345 +) +(1,7100:6630773,21660200:25952256,424439,9908 +h1,7100:6630773,21660200:0,0,0 +g1,7100:7626635,21660200 +g1,7100:8290543,21660200 +g1,7100:8622497,21660200 +g1,7100:8954451,21660200 +g1,7100:9286405,21660200 +g1,7100:9618359,21660200 +g1,7100:9950313,21660200 +g1,7100:11610083,21660200 +g1,7100:11942037,21660200 +g1,7100:12273991,21660200 +g1,7100:12605945,21660200 +g1,7100:13933761,21660200 +g1,7100:14265715,21660200 +g1,7100:14597669,21660200 +g1,7100:14929623,21660200 +g1,7100:16257439,21660200 +g1,7100:16589393,21660200 +g1,7100:17253301,21660200 +g1,7100:17585255,21660200 +h1,7100:17917209,21660200:0,0,0 +k1,7100:32583029,21660200:14665820 +g1,7100:32583029,21660200 +) +(1,7100:6630773,22345055:25952256,424439,9908 +h1,7100:6630773,22345055:0,0,0 +g1,7100:7626635,22345055 +g1,7100:8290543,22345055 +g1,7100:8622497,22345055 +g1,7100:8954451,22345055 +g1,7100:9286405,22345055 +g1,7100:9618359,22345055 +g1,7100:9950313,22345055 +g1,7100:10282267,22345055 +g1,7100:11610083,22345055 +g1,7100:11942037,22345055 +g1,7100:12273991,22345055 +g1,7100:12605945,22345055 +g1,7100:13933761,22345055 +g1,7100:14265715,22345055 +g1,7100:14597669,22345055 +g1,7100:14929623,22345055 +g1,7100:16257439,22345055 +g1,7100:16589393,22345055 +g1,7100:17253301,22345055 +g1,7100:17585255,22345055 +h1,7100:17917209,22345055:0,0,0 +k1,7100:32583029,22345055:14665820 +g1,7100:32583029,22345055 +) +(1,7100:6630773,23029910:25952256,424439,9908 +h1,7100:6630773,23029910:0,0,0 +g1,7100:7626635,23029910 +g1,7100:8290543,23029910 +g1,7100:8622497,23029910 +g1,7100:8954451,23029910 +g1,7100:9286405,23029910 +g1,7100:9618359,23029910 +g1,7100:9950313,23029910 +g1,7100:11610083,23029910 +g1,7100:11942037,23029910 +g1,7100:12273991,23029910 +g1,7100:12605945,23029910 +g1,7100:13933761,23029910 +g1,7100:14265715,23029910 +g1,7100:14597669,23029910 +g1,7100:14929623,23029910 +g1,7100:16257439,23029910 +g1,7100:16589393,23029910 +g1,7100:17253301,23029910 +g1,7100:17585255,23029910 +h1,7100:17917209,23029910:0,0,0 +k1,7100:32583029,23029910:14665820 +g1,7100:32583029,23029910 +) +(1,7100:6630773,23714765:25952256,424439,9908 +h1,7100:6630773,23714765:0,0,0 +g1,7100:7626635,23714765 +g1,7100:8290543,23714765 +g1,7100:8622497,23714765 +g1,7100:8954451,23714765 +g1,7100:9286405,23714765 +g1,7100:9618359,23714765 +g1,7100:9950313,23714765 +g1,7100:10282267,23714765 +g1,7100:11610083,23714765 +g1,7100:11942037,23714765 +g1,7100:12273991,23714765 +g1,7100:12605945,23714765 +g1,7100:13933761,23714765 +g1,7100:14265715,23714765 +g1,7100:14597669,23714765 +g1,7100:14929623,23714765 +g1,7100:16257439,23714765 +g1,7100:16589393,23714765 +g1,7100:17253301,23714765 +g1,7100:17585255,23714765 +h1,7100:17917209,23714765:0,0,0 +k1,7100:32583029,23714765:14665820 +g1,7100:32583029,23714765 +) +(1,7100:6630773,24399620:25952256,424439,9908 +h1,7100:6630773,24399620:0,0,0 +g1,7100:7626635,24399620 +g1,7100:8290543,24399620 +g1,7100:8622497,24399620 +g1,7100:8954451,24399620 +g1,7100:9286405,24399620 +g1,7100:9618359,24399620 +g1,7100:9950313,24399620 +g1,7100:11610083,24399620 +g1,7100:11942037,24399620 +g1,7100:12273991,24399620 +g1,7100:12605945,24399620 +g1,7100:13933761,24399620 +g1,7100:14265715,24399620 +g1,7100:14597669,24399620 +g1,7100:14929623,24399620 +g1,7100:16257439,24399620 +g1,7100:16589393,24399620 +g1,7100:17253301,24399620 +g1,7100:17585255,24399620 +h1,7100:17917209,24399620:0,0,0 +k1,7100:32583029,24399620:14665820 +g1,7100:32583029,24399620 +) +(1,7102:6630773,25215547:25952256,431045,112852 +(1,7101:6630773,25215547:0,0,0 +g1,7101:6630773,25215547 +g1,7101:6630773,25215547 +g1,7101:6303093,25215547 +(1,7101:6303093,25215547:0,0,0 +) +g1,7101:6630773,25215547 +) +g1,7102:12273990,25215547 +g1,7102:13269852,25215547 +g1,7102:15261576,25215547 +h1,7102:16257438,25215547:0,0,0 +k1,7102:32583029,25215547:16325591 +g1,7102:32583029,25215547 +) +(1,7103:6630773,25900402:25952256,431045,6605 +h1,7103:6630773,25900402:0,0,0 +h1,7103:7958589,25900402:0,0,0 +k1,7103:32583029,25900402:24624440 +g1,7103:32583029,25900402 +) +(1,7113:6630773,26716329:25952256,424439,112852 +(1,7105:6630773,26716329:0,0,0 +g1,7105:6630773,26716329 +g1,7105:6630773,26716329 +g1,7105:6303093,26716329 +(1,7105:6303093,26716329:0,0,0 +) +g1,7105:6630773,26716329 +) +g1,7113:7626635,26716329 +g1,7113:7958589,26716329 +g1,7113:8290543,26716329 +g1,7113:11610082,26716329 +g1,7113:13933760,26716329 +g1,7113:16257438,26716329 +g1,7113:17253300,26716329 +h1,7113:17917208,26716329:0,0,0 +k1,7113:32583029,26716329:14665821 +g1,7113:32583029,26716329 +) +(1,7113:6630773,27401184:25952256,424439,9908 +h1,7113:6630773,27401184:0,0,0 +g1,7113:7626635,27401184 +g1,7113:8290543,27401184 +g1,7113:8622497,27401184 +g1,7113:8954451,27401184 +g1,7113:9286405,27401184 +g1,7113:9618359,27401184 +g1,7113:9950313,27401184 +g1,7113:10282267,27401184 +g1,7113:11610083,27401184 +g1,7113:11942037,27401184 +g1,7113:12273991,27401184 +g1,7113:12605945,27401184 +g1,7113:12937899,27401184 +g1,7113:13933761,27401184 +g1,7113:14265715,27401184 +g1,7113:14597669,27401184 +g1,7113:14929623,27401184 +g1,7113:16257439,27401184 +g1,7113:16589393,27401184 +g1,7113:17253301,27401184 +g1,7113:17585255,27401184 +h1,7113:17917209,27401184:0,0,0 +k1,7113:32583029,27401184:14665820 +g1,7113:32583029,27401184 +) +(1,7113:6630773,28086039:25952256,424439,9908 +h1,7113:6630773,28086039:0,0,0 +g1,7113:7626635,28086039 +g1,7113:8290543,28086039 +g1,7113:8622497,28086039 +g1,7113:8954451,28086039 +g1,7113:9286405,28086039 +g1,7113:9618359,28086039 +g1,7113:9950313,28086039 +g1,7113:11610083,28086039 +g1,7113:11942037,28086039 +g1,7113:12273991,28086039 +g1,7113:12605945,28086039 +g1,7113:12937899,28086039 +g1,7113:13933761,28086039 +g1,7113:14265715,28086039 +g1,7113:14597669,28086039 +g1,7113:14929623,28086039 +g1,7113:16257439,28086039 +g1,7113:16589393,28086039 +g1,7113:17253301,28086039 +g1,7113:17585255,28086039 +h1,7113:17917209,28086039:0,0,0 +k1,7113:32583029,28086039:14665820 +g1,7113:32583029,28086039 +) +(1,7113:6630773,28770894:25952256,424439,9908 +h1,7113:6630773,28770894:0,0,0 +g1,7113:7626635,28770894 +g1,7113:8290543,28770894 +g1,7113:8622497,28770894 +g1,7113:8954451,28770894 +g1,7113:9286405,28770894 +g1,7113:9618359,28770894 +g1,7113:9950313,28770894 +g1,7113:10282267,28770894 +g1,7113:11610083,28770894 +g1,7113:11942037,28770894 +g1,7113:12273991,28770894 +g1,7113:12605945,28770894 +g1,7113:12937899,28770894 +g1,7113:13933761,28770894 +g1,7113:14265715,28770894 +g1,7113:14597669,28770894 +g1,7113:14929623,28770894 +g1,7113:16257439,28770894 +g1,7113:16589393,28770894 +g1,7113:17253301,28770894 +g1,7113:17585255,28770894 +h1,7113:17917209,28770894:0,0,0 +k1,7113:32583029,28770894:14665820 +g1,7113:32583029,28770894 +) +(1,7113:6630773,29455749:25952256,424439,9908 +h1,7113:6630773,29455749:0,0,0 +g1,7113:7626635,29455749 +g1,7113:8290543,29455749 +g1,7113:8622497,29455749 +g1,7113:8954451,29455749 +g1,7113:9286405,29455749 +g1,7113:9618359,29455749 +g1,7113:9950313,29455749 +g1,7113:11610083,29455749 +g1,7113:11942037,29455749 +g1,7113:12273991,29455749 +g1,7113:12605945,29455749 +g1,7113:12937899,29455749 +g1,7113:13933761,29455749 +g1,7113:14265715,29455749 +g1,7113:14597669,29455749 +g1,7113:14929623,29455749 +g1,7113:16257439,29455749 +g1,7113:16589393,29455749 +g1,7113:17253301,29455749 +g1,7113:17585255,29455749 +h1,7113:17917209,29455749:0,0,0 +k1,7113:32583029,29455749:14665820 +g1,7113:32583029,29455749 +) +(1,7113:6630773,30140604:25952256,424439,9908 +h1,7113:6630773,30140604:0,0,0 +g1,7113:7626635,30140604 +g1,7113:8290543,30140604 +g1,7113:8622497,30140604 +g1,7113:8954451,30140604 +g1,7113:9286405,30140604 +g1,7113:9618359,30140604 +g1,7113:9950313,30140604 +g1,7113:10282267,30140604 +g1,7113:11610083,30140604 +g1,7113:11942037,30140604 +g1,7113:12273991,30140604 +g1,7113:12605945,30140604 +g1,7113:12937899,30140604 +g1,7113:13933761,30140604 +g1,7113:14265715,30140604 +g1,7113:14597669,30140604 +g1,7113:14929623,30140604 +g1,7113:16257439,30140604 +g1,7113:16589393,30140604 +g1,7113:17253301,30140604 +g1,7113:17585255,30140604 +h1,7113:17917209,30140604:0,0,0 +k1,7113:32583029,30140604:14665820 +g1,7113:32583029,30140604 +) +(1,7113:6630773,30825459:25952256,424439,9908 +h1,7113:6630773,30825459:0,0,0 +g1,7113:7626635,30825459 +g1,7113:8290543,30825459 +g1,7113:8622497,30825459 +g1,7113:8954451,30825459 +g1,7113:9286405,30825459 +g1,7113:9618359,30825459 +g1,7113:9950313,30825459 +g1,7113:11610083,30825459 +g1,7113:11942037,30825459 +g1,7113:12273991,30825459 +g1,7113:12605945,30825459 +g1,7113:12937899,30825459 +g1,7113:13933761,30825459 +g1,7113:14265715,30825459 +g1,7113:14597669,30825459 +g1,7113:14929623,30825459 +g1,7113:16257439,30825459 +g1,7113:16589393,30825459 +g1,7113:17253301,30825459 +g1,7113:17585255,30825459 +h1,7113:17917209,30825459:0,0,0 +k1,7113:32583029,30825459:14665820 +g1,7113:32583029,30825459 +) +(1,7115:6630773,31641386:25952256,431045,86428 +(1,7114:6630773,31641386:0,0,0 +g1,7114:6630773,31641386 +g1,7114:6630773,31641386 +g1,7114:6303093,31641386 +(1,7114:6303093,31641386:0,0,0 +) +g1,7114:6630773,31641386 +) +k1,7115:6630773,31641386:0 +g1,7115:9286405,31641386 +g1,7115:10282267,31641386 +g1,7115:11278129,31641386 +g1,7115:13933761,31641386 +h1,7115:14597669,31641386:0,0,0 +k1,7115:32583029,31641386:17985360 +g1,7115:32583029,31641386 +) +(1,7116:6630773,32326241:25952256,431045,6605 +h1,7116:6630773,32326241:0,0,0 +h1,7116:7958589,32326241:0,0,0 +k1,7116:32583029,32326241:24624440 +g1,7116:32583029,32326241 +) +(1,7126:6630773,33142168:25952256,424439,112852 +(1,7118:6630773,33142168:0,0,0 +g1,7118:6630773,33142168 +g1,7118:6630773,33142168 +g1,7118:6303093,33142168 +(1,7118:6303093,33142168:0,0,0 +) +g1,7118:6630773,33142168 +) +g1,7126:7626635,33142168 +g1,7126:7958589,33142168 +g1,7126:8290543,33142168 +g1,7126:11610082,33142168 +g1,7126:13933760,33142168 +g1,7126:16257438,33142168 +g1,7126:17253300,33142168 +h1,7126:17917208,33142168:0,0,0 +k1,7126:32583029,33142168:14665821 +g1,7126:32583029,33142168 +) +(1,7126:6630773,33827023:25952256,424439,9908 +h1,7126:6630773,33827023:0,0,0 +g1,7126:7626635,33827023 +g1,7126:8290543,33827023 +g1,7126:8622497,33827023 +g1,7126:8954451,33827023 +g1,7126:9286405,33827023 +g1,7126:9618359,33827023 +g1,7126:9950313,33827023 +g1,7126:10282267,33827023 +g1,7126:11610083,33827023 +g1,7126:11942037,33827023 +g1,7126:12273991,33827023 +g1,7126:12605945,33827023 +g1,7126:12937899,33827023 +g1,7126:13269853,33827023 +g1,7126:13933761,33827023 +g1,7126:14265715,33827023 +g1,7126:14597669,33827023 +g1,7126:14929623,33827023 +g1,7126:16257439,33827023 +g1,7126:16589393,33827023 +g1,7126:17253301,33827023 +g1,7126:17585255,33827023 +h1,7126:17917209,33827023:0,0,0 +k1,7126:32583029,33827023:14665820 +g1,7126:32583029,33827023 +) +(1,7126:6630773,34511878:25952256,424439,9908 +h1,7126:6630773,34511878:0,0,0 +g1,7126:7626635,34511878 +g1,7126:8290543,34511878 +g1,7126:8622497,34511878 +g1,7126:8954451,34511878 +g1,7126:9286405,34511878 +g1,7126:9618359,34511878 +g1,7126:9950313,34511878 +g1,7126:11610083,34511878 +g1,7126:11942037,34511878 +g1,7126:12273991,34511878 +g1,7126:12605945,34511878 +g1,7126:12937899,34511878 +g1,7126:13933761,34511878 +g1,7126:14265715,34511878 +g1,7126:14597669,34511878 +g1,7126:14929623,34511878 +g1,7126:16257439,34511878 +g1,7126:16589393,34511878 +g1,7126:17253301,34511878 +g1,7126:17585255,34511878 +h1,7126:17917209,34511878:0,0,0 +k1,7126:32583029,34511878:14665820 +g1,7126:32583029,34511878 +) +(1,7126:6630773,35196733:25952256,424439,9908 +h1,7126:6630773,35196733:0,0,0 +g1,7126:7626635,35196733 +g1,7126:8290543,35196733 +g1,7126:8622497,35196733 +g1,7126:8954451,35196733 +g1,7126:9286405,35196733 +g1,7126:9618359,35196733 +g1,7126:9950313,35196733 +g1,7126:10282267,35196733 +g1,7126:11610083,35196733 +g1,7126:11942037,35196733 +g1,7126:12273991,35196733 +g1,7126:12605945,35196733 +g1,7126:12937899,35196733 +g1,7126:13933761,35196733 +g1,7126:14265715,35196733 +g1,7126:14597669,35196733 +g1,7126:14929623,35196733 +g1,7126:16257439,35196733 +g1,7126:16589393,35196733 +g1,7126:17253301,35196733 +g1,7126:17585255,35196733 +h1,7126:17917209,35196733:0,0,0 +k1,7126:32583029,35196733:14665820 +g1,7126:32583029,35196733 +) +(1,7126:6630773,35881588:25952256,424439,9908 +h1,7126:6630773,35881588:0,0,0 +g1,7126:7626635,35881588 +g1,7126:8290543,35881588 +g1,7126:8622497,35881588 +g1,7126:8954451,35881588 +g1,7126:9286405,35881588 +g1,7126:9618359,35881588 +g1,7126:9950313,35881588 +g1,7126:11610083,35881588 +g1,7126:11942037,35881588 +g1,7126:12273991,35881588 +g1,7126:12605945,35881588 +g1,7126:12937899,35881588 +g1,7126:13933761,35881588 +g1,7126:14265715,35881588 +g1,7126:14597669,35881588 +g1,7126:14929623,35881588 +g1,7126:16257439,35881588 +g1,7126:16589393,35881588 +g1,7126:17253301,35881588 +g1,7126:17585255,35881588 +h1,7126:17917209,35881588:0,0,0 +k1,7126:32583029,35881588:14665820 +g1,7126:32583029,35881588 +) +(1,7126:6630773,36566443:25952256,424439,9908 +h1,7126:6630773,36566443:0,0,0 +g1,7126:7626635,36566443 +g1,7126:8290543,36566443 +g1,7126:8622497,36566443 +g1,7126:8954451,36566443 +g1,7126:9286405,36566443 +g1,7126:9618359,36566443 +g1,7126:9950313,36566443 +g1,7126:10282267,36566443 +g1,7126:11610083,36566443 +g1,7126:11942037,36566443 +g1,7126:12273991,36566443 +g1,7126:12605945,36566443 +g1,7126:12937899,36566443 +g1,7126:13933761,36566443 +g1,7126:14265715,36566443 +g1,7126:14597669,36566443 +g1,7126:14929623,36566443 +g1,7126:16257439,36566443 +g1,7126:16589393,36566443 +g1,7126:17253301,36566443 +g1,7126:17585255,36566443 +h1,7126:17917209,36566443:0,0,0 +k1,7126:32583029,36566443:14665820 +g1,7126:32583029,36566443 +) +(1,7126:6630773,37251298:25952256,424439,9908 +h1,7126:6630773,37251298:0,0,0 +g1,7126:7626635,37251298 +g1,7126:8290543,37251298 +g1,7126:8622497,37251298 +g1,7126:8954451,37251298 +g1,7126:9286405,37251298 +g1,7126:9618359,37251298 +g1,7126:9950313,37251298 +g1,7126:11610083,37251298 +g1,7126:11942037,37251298 +g1,7126:12273991,37251298 +g1,7126:12605945,37251298 +g1,7126:12937899,37251298 +g1,7126:13933761,37251298 +g1,7126:14265715,37251298 +g1,7126:14597669,37251298 +g1,7126:14929623,37251298 +g1,7126:16257439,37251298 +g1,7126:16589393,37251298 +g1,7126:17253301,37251298 +g1,7126:17585255,37251298 +h1,7126:17917209,37251298:0,0,0 +k1,7126:32583029,37251298:14665820 +g1,7126:32583029,37251298 +) +(1,7128:6630773,38067225:25952256,431045,86428 +(1,7127:6630773,38067225:0,0,0 +g1,7127:6630773,38067225 +g1,7127:6630773,38067225 +g1,7127:6303093,38067225 +(1,7127:6303093,38067225:0,0,0 +) +g1,7127:6630773,38067225 +) +k1,7128:6630773,38067225:0 +g1,7128:9950313,38067225 +g1,7128:10946175,38067225 +g1,7128:11942037,38067225 +g1,7128:14597669,38067225 +h1,7128:15261577,38067225:0,0,0 +k1,7128:32583029,38067225:17321452 +g1,7128:32583029,38067225 +) +(1,7129:6630773,38752080:25952256,431045,6605 +h1,7129:6630773,38752080:0,0,0 +h1,7129:7958589,38752080:0,0,0 +k1,7129:32583029,38752080:24624440 +g1,7129:32583029,38752080 +) +(1,7139:6630773,39568007:25952256,424439,112852 +(1,7131:6630773,39568007:0,0,0 +g1,7131:6630773,39568007 +g1,7131:6630773,39568007 +g1,7131:6303093,39568007 +(1,7131:6303093,39568007:0,0,0 +) +g1,7131:6630773,39568007 +) +g1,7139:7626635,39568007 +g1,7139:7958589,39568007 +g1,7139:8290543,39568007 +g1,7139:11610082,39568007 +g1,7139:13933760,39568007 +g1,7139:16257438,39568007 +g1,7139:17253300,39568007 +h1,7139:17917208,39568007:0,0,0 +k1,7139:32583029,39568007:14665821 +g1,7139:32583029,39568007 +) +(1,7139:6630773,40252862:25952256,424439,9908 +h1,7139:6630773,40252862:0,0,0 +g1,7139:7626635,40252862 +g1,7139:8290543,40252862 +g1,7139:8622497,40252862 +g1,7139:8954451,40252862 +g1,7139:9286405,40252862 +g1,7139:9618359,40252862 +g1,7139:9950313,40252862 +g1,7139:10282267,40252862 +g1,7139:11610083,40252862 +g1,7139:11942037,40252862 +g1,7139:12273991,40252862 +g1,7139:12605945,40252862 +g1,7139:12937899,40252862 +g1,7139:13269853,40252862 +g1,7139:13933761,40252862 +g1,7139:14265715,40252862 +g1,7139:14597669,40252862 +g1,7139:14929623,40252862 +g1,7139:16257439,40252862 +g1,7139:16589393,40252862 +g1,7139:17253301,40252862 +g1,7139:17585255,40252862 +h1,7139:17917209,40252862:0,0,0 +k1,7139:32583029,40252862:14665820 +g1,7139:32583029,40252862 +) +(1,7139:6630773,40937717:25952256,424439,9908 +h1,7139:6630773,40937717:0,0,0 +g1,7139:7626635,40937717 +g1,7139:8290543,40937717 +g1,7139:8622497,40937717 +g1,7139:8954451,40937717 +g1,7139:9286405,40937717 +g1,7139:9618359,40937717 +g1,7139:9950313,40937717 +g1,7139:11610083,40937717 +g1,7139:11942037,40937717 +g1,7139:12273991,40937717 +g1,7139:12605945,40937717 +g1,7139:12937899,40937717 +g1,7139:13933761,40937717 +g1,7139:14265715,40937717 +g1,7139:14597669,40937717 +g1,7139:14929623,40937717 +g1,7139:16257439,40937717 +g1,7139:16589393,40937717 +g1,7139:17253301,40937717 +g1,7139:17585255,40937717 +h1,7139:17917209,40937717:0,0,0 +k1,7139:32583029,40937717:14665820 +g1,7139:32583029,40937717 +) +(1,7139:6630773,41622572:25952256,424439,9908 +h1,7139:6630773,41622572:0,0,0 +g1,7139:7626635,41622572 +g1,7139:8290543,41622572 +g1,7139:8622497,41622572 +g1,7139:8954451,41622572 +g1,7139:9286405,41622572 +g1,7139:9618359,41622572 +g1,7139:9950313,41622572 +g1,7139:10282267,41622572 +g1,7139:11610083,41622572 +g1,7139:11942037,41622572 +g1,7139:12273991,41622572 +g1,7139:12605945,41622572 +g1,7139:12937899,41622572 +g1,7139:13269853,41622572 +g1,7139:13933761,41622572 +g1,7139:14265715,41622572 +g1,7139:14597669,41622572 +g1,7139:14929623,41622572 +g1,7139:16257439,41622572 +g1,7139:16589393,41622572 +g1,7139:17253301,41622572 +g1,7139:17585255,41622572 +h1,7139:17917209,41622572:0,0,0 +k1,7139:32583029,41622572:14665820 +g1,7139:32583029,41622572 +) +(1,7139:6630773,42307427:25952256,424439,9908 +h1,7139:6630773,42307427:0,0,0 +g1,7139:7626635,42307427 +g1,7139:8290543,42307427 +g1,7139:8622497,42307427 +g1,7139:8954451,42307427 +g1,7139:9286405,42307427 +g1,7139:9618359,42307427 +g1,7139:9950313,42307427 +g1,7139:11610083,42307427 +g1,7139:11942037,42307427 +g1,7139:12273991,42307427 +g1,7139:12605945,42307427 +g1,7139:12937899,42307427 +g1,7139:13269853,42307427 +g1,7139:13933761,42307427 +g1,7139:14265715,42307427 +g1,7139:14597669,42307427 +g1,7139:14929623,42307427 +g1,7139:16257439,42307427 +g1,7139:16589393,42307427 +g1,7139:17253301,42307427 +g1,7139:17585255,42307427 +h1,7139:17917209,42307427:0,0,0 +k1,7139:32583029,42307427:14665820 +g1,7139:32583029,42307427 +) +(1,7139:6630773,42992282:25952256,424439,9908 +h1,7139:6630773,42992282:0,0,0 +g1,7139:7626635,42992282 +g1,7139:8290543,42992282 +g1,7139:8622497,42992282 +g1,7139:8954451,42992282 +g1,7139:9286405,42992282 +g1,7139:9618359,42992282 +g1,7139:9950313,42992282 +g1,7139:10282267,42992282 +g1,7139:11610083,42992282 +g1,7139:11942037,42992282 +g1,7139:12273991,42992282 +g1,7139:12605945,42992282 +g1,7139:12937899,42992282 +g1,7139:13269853,42992282 +g1,7139:13933761,42992282 +g1,7139:14265715,42992282 +g1,7139:14597669,42992282 +g1,7139:14929623,42992282 +g1,7139:16257439,42992282 +g1,7139:16589393,42992282 +g1,7139:17253301,42992282 +g1,7139:17585255,42992282 +h1,7139:17917209,42992282:0,0,0 +k1,7139:32583029,42992282:14665820 +g1,7139:32583029,42992282 +) +(1,7139:6630773,43677137:25952256,424439,9908 +h1,7139:6630773,43677137:0,0,0 +g1,7139:7626635,43677137 +g1,7139:8290543,43677137 +g1,7139:8622497,43677137 +g1,7139:8954451,43677137 +g1,7139:9286405,43677137 +g1,7139:9618359,43677137 +g1,7139:9950313,43677137 +g1,7139:11610083,43677137 +g1,7139:11942037,43677137 +g1,7139:12273991,43677137 +g1,7139:12605945,43677137 +g1,7139:12937899,43677137 +g1,7139:13269853,43677137 +g1,7139:13933761,43677137 +g1,7139:14265715,43677137 +g1,7139:14597669,43677137 +g1,7139:14929623,43677137 +g1,7139:16257439,43677137 +g1,7139:16589393,43677137 +g1,7139:17253301,43677137 +g1,7139:17585255,43677137 +h1,7139:17917209,43677137:0,0,0 +k1,7139:32583029,43677137:14665820 +g1,7139:32583029,43677137 +) +] +) +g1,7140:32583029,43687045 +g1,7140:6630773,43687045 +g1,7140:6630773,43687045 +g1,7140:32583029,43687045 +g1,7140:32583029,43687045 +) +h1,7140:6630773,43883653:0,0,0 +v1,7144:6630773,44748733:0,393216,0 +] +(1,7191:32583029,45706769:0,0,0 +g1,7191:32583029,45706769 +) +) +] +(1,7191:6630773,47279633:25952256,0,0 +h1,7191:6630773,47279633:25952256,0,0 +) +] +(1,7191:4262630,4025873:0,0,0 +[1,7191:-473656,4025873:0,0,0 +(1,7191:-473656,-710413:0,0,0 +(1,7191:-473656,-710413:0,0,0 +g1,7191:-473656,-710413 +) +g1,7191:-473656,-710413 +) +] +) +] +!33679 +}110 +Input:967:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!105 +{111 +[1,7261:4262630,47279633:28320399,43253760,0 +(1,7261:4262630,4025873:0,0,0 +[1,7261:-473656,4025873:0,0,0 +(1,7261:-473656,-710413:0,0,0 +(1,7261:-473656,-644877:0,0,0 +k1,7261:-473656,-644877:-65536 ) +(1,7261:-473656,4736287:0,0,0 +k1,7261:-473656,4736287:5209943 ) +g1,7261:-473656,-710413 ) ] -[1,8298:3078558,4812305:0,0,0 -(1,8298:3078558,49800853:0,16384,2228224 -g1,8298:29030814,49800853 -g1,8298:36135244,49800853 -(1,5950:36135244,49800853:1720320,16384,2228224 -(1,5950:36135244,52029077:16384,1703936,0 -[1,5950:36135244,52029077:25952256,1703936,0 -(1,5950:36135244,51504789:25952256,1179648,0 -(1,5950:36135244,51504789:16384,1179648,0 -r1,8298:36151628,51504789:16384,1179648,0 ) -k1,5950:62087500,51504789:25935872 -g1,5950:62087500,51504789 +[1,7261:6630773,47279633:25952256,43253760,0 +[1,7261:6630773,4812305:25952256,786432,0 +(1,7261:6630773,4812305:25952256,505283,11795 +(1,7261:6630773,4812305:25952256,505283,11795 +g1,7261:3078558,4812305 +[1,7261:3078558,4812305:0,0,0 +(1,7261:3078558,2439708:0,1703936,0 +k1,7261:1358238,2439708:-1720320 +(1,6148:1358238,2439708:1720320,1703936,0 +(1,6148:1358238,2439708:1179648,16384,0 +r1,7261:2537886,2439708:1179648,16384,0 ) -] +g1,6148:3062174,2439708 +(1,6148:3062174,2439708:16384,1703936,0 +[1,6148:3062174,2439708:25952256,1703936,0 +(1,6148:3062174,1915420:25952256,1179648,0 +(1,6148:3062174,1915420:16384,1179648,0 +r1,7261:3078558,1915420:16384,1179648,0 ) -g1,5950:36675916,49800853 -(1,5950:36675916,49800853:1179648,16384,0 -r1,8298:37855564,49800853:1179648,16384,0 +k1,6148:29014430,1915420:25935872 +g1,6148:29014430,1915420 +) +] ) ) -k1,8298:3078556,49800853:-34777008 ) ] -g1,8298:6630773,4812305 -k1,8298:24358918,4812305:16532768 -g1,8298:25981589,4812305 -g1,8298:26804065,4812305 -g1,8298:30302376,4812305 +[1,7261:3078558,4812305:0,0,0 +(1,7261:3078558,2439708:0,1703936,0 +g1,7261:29030814,2439708 +g1,7261:36135244,2439708 +(1,6148:36135244,2439708:1720320,1703936,0 +(1,6148:36135244,2439708:16384,1703936,0 +[1,6148:36135244,2439708:25952256,1703936,0 +(1,6148:36135244,1915420:25952256,1179648,0 +(1,6148:36135244,1915420:16384,1179648,0 +r1,7261:36151628,1915420:16384,1179648,0 ) +k1,6148:62087500,1915420:25935872 +g1,6148:62087500,1915420 ) ] -[1,8298:6630773,45706769:25952256,40108032,0 -(1,8298:6630773,45706769:25952256,40108032,0 -(1,8298:6630773,45706769:0,0,0 -g1,8298:6630773,45706769 ) -[1,8298:6630773,45706769:25952256,40108032,0 -(1,8264:6630773,6254097:25952256,513147,126483 -h1,8263:6630773,6254097:983040,0,0 -k1,8263:8256580,6254097:172874 -k1,8263:8960952,6254097:172875 -k1,8263:11763786,6254097:172874 -k1,8263:12588089,6254097:172875 -k1,8263:14198168,6254097:172874 -k1,8263:15543482,6254097:172875 -k1,8263:18557997,6254097:172874 -k1,8263:20335849,6254097:172875 -k1,8263:23221914,6254097:172874 -k1,8263:24962410,6254097:172875 -k1,8263:25491144,6254097:172874 -k1,8263:27053382,6254097:172875 -k1,8263:29309646,6254097:172874 -k1,8263:31896867,6254097:172875 -k1,8263:32583029,6254097:0 +g1,6148:36675916,2439708 +(1,6148:36675916,2439708:1179648,16384,0 +r1,7261:37855564,2439708:1179648,16384,0 ) -(1,8264:6630773,7095585:25952256,513147,134348 -g1,8263:10232631,7095585 -g1,8263:11083288,7095585 -g1,8263:12301602,7095585 -(1,8263:12301602,7095585:0,414482,115847 -r1,8298:12659868,7095585:358266,530329,115847 -k1,8263:12301602,7095585:-358266 ) -(1,8263:12301602,7095585:358266,414482,115847 -k1,8263:12301602,7095585:3277 -h1,8263:12656591,7095585:0,411205,112570 -) -g1,8263:12859097,7095585 -g1,8263:14249771,7095585 -(1,8263:14249771,7095585:0,414482,115847 -r1,8298:14608037,7095585:358266,530329,115847 -k1,8263:14249771,7095585:-358266 -) -(1,8263:14249771,7095585:358266,414482,115847 -k1,8263:14249771,7095585:3277 -h1,8263:14604760,7095585:0,411205,112570 -) -g1,8263:14807266,7095585 -g1,8263:18617529,7095585 -g1,8263:19483914,7095585 -(1,8263:19483914,7095585:0,452978,115847 -r1,8298:21600739,7095585:2116825,568825,115847 -k1,8263:19483914,7095585:-2116825 -) -(1,8263:19483914,7095585:2116825,452978,115847 -k1,8263:19483914,7095585:3277 -h1,8263:21597462,7095585:0,411205,112570 -) -k1,8264:32583029,7095585:10808620 -g1,8264:32583029,7095585 -) -v1,8268:6630773,8286051:0,393216,0 -(1,8272:6630773,8601148:25952256,708313,196608 -g1,8272:6630773,8601148 -g1,8272:6630773,8601148 -g1,8272:6434165,8601148 -(1,8272:6434165,8601148:0,708313,196608 -r1,8298:32779637,8601148:26345472,904921,196608 -k1,8272:6434165,8601148:-26345472 -) -(1,8272:6434165,8601148:26345472,708313,196608 -[1,8272:6630773,8601148:25952256,511705,0 -(1,8270:6630773,8499961:25952256,410518,101187 -(1,8269:6630773,8499961:0,0,0 -g1,8269:6630773,8499961 -g1,8269:6630773,8499961 -g1,8269:6303093,8499961 -(1,8269:6303093,8499961:0,0,0 -) -g1,8269:6630773,8499961 -) -k1,8270:6630773,8499961:0 -g1,8270:8843794,8499961 -g1,8270:9476086,8499961 -g1,8270:13269835,8499961 -g1,8270:13902127,8499961 -g1,8270:14534419,8499961 -h1,8270:17695876,8499961:0,0,0 -k1,8270:32583029,8499961:14887153 -g1,8270:32583029,8499961 -) -] -) -g1,8272:32583029,8601148 -g1,8272:6630773,8601148 -g1,8272:6630773,8601148 -g1,8272:32583029,8601148 -g1,8272:32583029,8601148 -) -h1,8272:6630773,8797756:0,0,0 -(1,8275:6630773,23401564:25952256,14013984,0 -k1,8275:12599879,23401564:5969106 -h1,8274:12599879,23401564:0,0,0 -(1,8274:12599879,23401564:14014044,14013984,0 -(1,8274:12599879,23401564:14014019,14014019,0 -(1,8274:12599879,23401564:14014019,14014019,0 -(1,8274:12599879,23401564:0,14014019,0 -(1,8274:12599879,23401564:0,18945146,0 -(1,8274:12599879,23401564:18945146,18945146,0 -) -k1,8274:12599879,23401564:-18945146 -) -) -g1,8274:26613898,23401564 -) -) -) -g1,8275:26613923,23401564 -k1,8275:32583029,23401564:5969106 -) -(1,8282:6630773,24243052:25952256,513147,126483 -h1,8281:6630773,24243052:983040,0,0 -k1,8281:8263415,24243052:179709 -k1,8281:8974621,24243052:179709 -k1,8281:10440146,24243052:179709 -k1,8281:13423485,24243052:179709 -k1,8281:14794639,24243052:179709 -k1,8281:17261555,24243052:179709 -k1,8281:19091460,24243052:179708 -k1,8281:22927423,24243052:179709 -k1,8281:23758560,24243052:179709 -k1,8281:25030754,24243052:179709 -k1,8281:25566323,24243052:179709 -k1,8281:28294072,24243052:179709 -k1,8281:29125209,24243052:179709 -k1,8281:31563944,24243052:179709 -k1,8281:32583029,24243052:0 -) -(1,8282:6630773,25084540:25952256,505283,138281 -k1,8281:9629831,25084540:157417 -k1,8281:10438677,25084540:157418 -k1,8281:11343860,25084540:157417 -k1,8281:13803557,25084540:157417 -k1,8281:14770344,25084540:157417 -k1,8281:15946847,25084540:157418 -$1,8281:15946847,25084540 -$1,8281:16449508,25084540 -k1,8281:16606925,25084540:157417 -k1,8281:17955787,25084540:157417 -$1,8281:17955787,25084540 -$1,8281:18507600,25084540 -k1,8281:18665017,25084540:157417 -k1,8281:20394644,25084540:157418 -k1,8281:22979515,25084540:157417 -k1,8281:26930156,25084540:157417 -k1,8281:27773735,25084540:157417 -k1,8281:28701856,25084540:157418 -k1,8281:31931601,25084540:157417 -k1,8281:32583029,25084540:0 -) -(1,8282:6630773,25926028:25952256,513147,134348 -k1,8281:10053671,25926028:142166 -(1,8281:10053671,25926028:0,452978,115847 -r1,8298:11467072,25926028:1413401,568825,115847 -k1,8281:10053671,25926028:-1413401 -) -(1,8281:10053671,25926028:1413401,452978,115847 -k1,8281:10053671,25926028:3277 -h1,8281:11463795,25926028:0,411205,112570 -) -k1,8281:11609239,25926028:142167 -k1,8281:12107265,25926028:142166 -k1,8281:13638795,25926028:142167 -k1,8281:15657257,25926028:142166 -k1,8281:19161420,25926028:142166 -k1,8281:21000314,25926028:142167 -k1,8281:24157791,25926028:142166 -k1,8281:25496645,25926028:142167 -k1,8281:28182263,25926028:142166 -(1,8281:28182263,25926028:0,452978,115847 -r1,8298:32409359,25926028:4227096,568825,115847 -k1,8281:28182263,25926028:-4227096 -) -(1,8281:28182263,25926028:4227096,452978,115847 -g1,8281:29944099,25926028 -g1,8281:30647523,25926028 -h1,8281:32406082,25926028:0,411205,112570 -) -k1,8281:32583029,25926028:0 -) -(1,8282:6630773,26767516:25952256,505283,138281 -k1,8281:7328395,26767516:166125 -k1,8281:8906820,26767516:166124 -k1,8281:9759107,26767516:166125 -(1,8281:9759107,26767516:0,452978,115847 -r1,8298:11172508,26767516:1413401,568825,115847 -k1,8281:9759107,26767516:-1413401 -) -(1,8281:9759107,26767516:1413401,452978,115847 -k1,8281:9759107,26767516:3277 -h1,8281:11169231,26767516:0,411205,112570 -) -k1,8281:11338633,26767516:166125 -k1,8281:14582983,26767516:166124 -k1,8281:15510636,26767516:166125 -(1,8281:15510636,26767516:0,452978,115847 -r1,8298:17275749,26767516:1765113,568825,115847 -k1,8281:15510636,26767516:-1765113 -) -(1,8281:15510636,26767516:1765113,452978,115847 -k1,8281:15510636,26767516:3277 -h1,8281:17272472,26767516:0,411205,112570 -) -k1,8281:19166782,26767516:166125 -(1,8281:19166782,26767516:0,452978,115847 -r1,8298:20580183,26767516:1413401,568825,115847 -k1,8281:19166782,26767516:-1413401 -) -(1,8281:19166782,26767516:1413401,452978,115847 -k1,8281:19166782,26767516:3277 -h1,8281:20576906,26767516:0,411205,112570 -) -k1,8281:20746307,26767516:166124 -k1,8281:21443929,26767516:166125 -k1,8281:24195449,26767516:166125 -k1,8281:25013001,26767516:166124 -k1,8281:26198211,26767516:166125 -$1,8281:26198211,26767516 -$1,8281:26750024,26767516 -k1,8281:28381534,26767516:166125 -k1,8281:29233820,26767516:166124 -k1,8281:30419030,26767516:166125 -k1,8282:32583029,26767516:0 -) -(1,8282:6630773,27609004:25952256,505283,126483 -k1,8281:8261745,27609004:191146 -k1,8281:10964231,27609004:191146 -k1,8281:12346821,27609004:191145 -(1,8281:12346821,27609004:0,452978,115847 -r1,8298:14111934,27609004:1765113,568825,115847 -k1,8281:12346821,27609004:-1765113 -) -(1,8281:12346821,27609004:1765113,452978,115847 -k1,8281:12346821,27609004:3277 -h1,8281:14108657,27609004:0,411205,112570 -) -k1,8281:14303080,27609004:191146 -k1,8281:15145654,27609004:191146 -k1,8281:16355885,27609004:191146 -$1,8281:16355885,27609004 -$1,8281:16858546,27609004 -k1,8281:18515076,27609004:191145 -k1,8281:19392384,27609004:191146 -k1,8281:20602615,27609004:191146 -k1,8281:24800632,27609004:191146 -k1,8281:27676787,27609004:191145 -k1,8281:28685822,27609004:191146 -k1,8281:31966991,27609004:191146 -k1,8281:32583029,27609004:0 -) -(1,8282:6630773,28450492:25952256,513147,134348 -k1,8281:9096770,28450492:187310 -h1,8281:10067358,28450492:0,0,0 -k1,8281:10254668,28450492:187310 -k1,8281:11251348,28450492:187310 -k1,8281:12936811,28450492:187310 -h1,8281:14132188,28450492:0,0,0 -k1,8281:14319498,28450492:187310 -k1,8281:15525893,28450492:187310 -k1,8281:17366676,28450492:187310 -k1,8281:19638031,28450492:187310 -k1,8281:20356838,28450492:187310 -k1,8281:22057374,28450492:187310 -k1,8281:22896112,28450492:187310 -k1,8281:25752703,28450492:187310 -k1,8281:28258021,28450492:187310 -k1,8281:29096759,28450492:187310 -k1,8281:30031835,28450492:187310 -k1,8281:31931601,28450492:187310 -k1,8281:32583029,28450492:0 -) -(1,8282:6630773,29291980:25952256,505283,7863 -k1,8282:32583029,29291980:21706834 -g1,8282:32583029,29291980 -) -v1,8284:6630773,30482446:0,393216,0 -(1,8288:6630773,30791251:25952256,702021,196608 -g1,8288:6630773,30791251 -g1,8288:6630773,30791251 -g1,8288:6434165,30791251 -(1,8288:6434165,30791251:0,702021,196608 -r1,8298:32779637,30791251:26345472,898629,196608 -k1,8288:6434165,30791251:-26345472 -) -(1,8288:6434165,30791251:26345472,702021,196608 -[1,8288:6630773,30791251:25952256,505413,0 -(1,8286:6630773,30690064:25952256,404226,101187 -(1,8285:6630773,30690064:0,0,0 -g1,8285:6630773,30690064 -g1,8285:6630773,30690064 -g1,8285:6303093,30690064 -(1,8285:6303093,30690064:0,0,0 -) -g1,8285:6630773,30690064 -) -k1,8286:6630773,30690064:0 -g1,8286:9792230,30690064 -g1,8286:10424522,30690064 -g1,8286:12637542,30690064 -g1,8286:14218271,30690064 -g1,8286:14850563,30690064 -h1,8286:16431291,30690064:0,0,0 -k1,8286:32583029,30690064:16151738 -g1,8286:32583029,30690064 -) -] -) -g1,8288:32583029,30791251 -g1,8288:6630773,30791251 -g1,8288:6630773,30791251 -g1,8288:32583029,30791251 -g1,8288:32583029,30791251 -) -h1,8288:6630773,30987859:0,0,0 -(1,8291:6630773,45591667:25952256,14013984,0 -k1,8291:12599879,45591667:5969106 -h1,8290:12599879,45591667:0,0,0 -(1,8290:12599879,45591667:14014044,14013984,0 -(1,8290:12599879,45591667:14014019,14014019,0 -(1,8290:12599879,45591667:14014019,14014019,0 -(1,8290:12599879,45591667:0,14014019,0 -(1,8290:12599879,45591667:0,18945146,0 -(1,8290:12599879,45591667:18945146,18945146,0 -) -k1,8290:12599879,45591667:-18945146 -) -) -g1,8290:26613898,45591667 -) -) -) -g1,8291:26613923,45591667 -k1,8291:32583029,45591667:5969106 -) -] -(1,8298:32583029,45706769:0,0,0 -g1,8298:32583029,45706769 -) -) -] -(1,8298:6630773,47279633:25952256,0,0 -h1,8298:6630773,47279633:25952256,0,0 +k1,7261:3078556,2439708:-34777008 ) ] -(1,8298:4262630,4025873:0,0,0 -[1,8298:-473656,4025873:0,0,0 -(1,8298:-473656,-710413:0,0,0 -(1,8298:-473656,-710413:0,0,0 -g1,8298:-473656,-710413 +[1,7261:3078558,4812305:0,0,0 +(1,7261:3078558,49800853:0,16384,2228224 +k1,7261:1358238,49800853:-1720320 +(1,6148:1358238,49800853:1720320,16384,2228224 +(1,6148:1358238,49800853:1179648,16384,0 +r1,7261:2537886,49800853:1179648,16384,0 ) -g1,8298:-473656,-710413 +g1,6148:3062174,49800853 +(1,6148:3062174,52029077:16384,1703936,0 +[1,6148:3062174,52029077:25952256,1703936,0 +(1,6148:3062174,51504789:25952256,1179648,0 +(1,6148:3062174,51504789:16384,1179648,0 +r1,7261:3078558,51504789:16384,1179648,0 ) -] +k1,6148:29014430,51504789:25935872 +g1,6148:29014430,51504789 ) ] -!13153 -}135 -Input:1138:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1139:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1140:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1141:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1142:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!482 -{136 -[1,8324:4262630,47279633:28320399,43253760,0 -(1,8324:4262630,4025873:0,0,0 -[1,8324:-473656,4025873:0,0,0 -(1,8324:-473656,-710413:0,0,0 -(1,8324:-473656,-644877:0,0,0 -k1,8324:-473656,-644877:-65536 ) -(1,8324:-473656,4736287:0,0,0 -k1,8324:-473656,4736287:5209943 ) -g1,8324:-473656,-710413 ) ] +[1,7261:3078558,4812305:0,0,0 +(1,7261:3078558,49800853:0,16384,2228224 +g1,7261:29030814,49800853 +g1,7261:36135244,49800853 +(1,6148:36135244,49800853:1720320,16384,2228224 +(1,6148:36135244,52029077:16384,1703936,0 +[1,6148:36135244,52029077:25952256,1703936,0 +(1,6148:36135244,51504789:25952256,1179648,0 +(1,6148:36135244,51504789:16384,1179648,0 +r1,7261:36151628,51504789:16384,1179648,0 ) -[1,8324:6630773,47279633:25952256,43253760,0 -[1,8324:6630773,4812305:25952256,786432,0 -(1,8324:6630773,4812305:25952256,505283,134348 -(1,8324:6630773,4812305:25952256,505283,134348 -g1,8324:3078558,4812305 -[1,8324:3078558,4812305:0,0,0 -(1,8324:3078558,2439708:0,1703936,0 -k1,8324:1358238,2439708:-1720320 -(1,5950:1358238,2439708:1720320,1703936,0 -(1,5950:1358238,2439708:1179648,16384,0 -r1,8324:2537886,2439708:1179648,16384,0 -) -g1,5950:3062174,2439708 -(1,5950:3062174,2439708:16384,1703936,0 -[1,5950:3062174,2439708:25952256,1703936,0 -(1,5950:3062174,1915420:25952256,1179648,0 -(1,5950:3062174,1915420:16384,1179648,0 -r1,8324:3078558,1915420:16384,1179648,0 +k1,6148:62087500,51504789:25935872 +g1,6148:62087500,51504789 +) +] +) +g1,6148:36675916,49800853 +(1,6148:36675916,49800853:1179648,16384,0 +r1,7261:37855564,49800853:1179648,16384,0 ) -k1,5950:29014430,1915420:25935872 -g1,5950:29014430,1915420 ) -] +k1,7261:3078556,49800853:-34777008 +) +] +g1,7261:6630773,4812305 +k1,7261:24358919,4812305:16931228 +g1,7261:25981590,4812305 +g1,7261:26804066,4812305 +g1,7261:30302377,4812305 +) +) +] +[1,7261:6630773,45706769:25952256,40108032,0 +(1,7261:6630773,45706769:25952256,40108032,0 +(1,7261:6630773,45706769:0,0,0 +g1,7261:6630773,45706769 +) +[1,7261:6630773,45706769:25952256,40108032,0 +v1,7191:6630773,6254097:0,393216,0 +(1,7191:6630773,30819987:25952256,24959106,0 +g1,7191:6630773,30819987 +g1,7191:6237557,30819987 +r1,7261:6368629,30819987:131072,24959106,0 +g1,7191:6567858,30819987 +g1,7191:6764466,30819987 +[1,7191:6764466,30819987:25818563,24959106,0 +(1,7145:6764466,6562395:25818563,701514,196608 +(1,7144:6764466,6562395:0,701514,196608 +r1,7261:8010564,6562395:1246098,898122,196608 +k1,7144:6764466,6562395:-1246098 +) +(1,7144:6764466,6562395:1246098,701514,196608 +) +k1,7144:8213050,6562395:202486 +k1,7144:8540730,6562395:327680 +k1,7144:9696765,6562395:202486 +k1,7144:13316954,6562395:202486 +k1,7144:15374765,6562395:202487 +k1,7144:16861757,6562395:202486 +k1,7144:19803648,6562395:202486 +k1,7144:20767662,6562395:202486 +k1,7144:22708163,6562395:202486 +k1,7144:24014931,6562395:202486 +k1,7144:24965184,6562395:202487 +k1,7144:26745122,6562395:202486 +k1,7144:28803588,6562395:202486 +k1,7144:30400025,6562395:202486 +k1,7144:32583029,6562395:0 +) +(1,7145:6764466,7427475:25818563,513147,126483 +k1,7144:9192268,7427475:286741 +k1,7144:12358006,7427475:286741 +(1,7144:12358006,7427475:0,452978,115847 +r1,7261:14123120,7427475:1765114,568825,115847 +k1,7144:12358006,7427475:-1765114 +) +(1,7144:12358006,7427475:1765114,452978,115847 +g1,7144:13416419,7427475 +h1,7144:14119843,7427475:0,411205,112570 +) +k1,7144:14583531,7427475:286741 +k1,7144:15553156,7427475:286740 +k1,7144:17233848,7427475:286741 +(1,7144:17233848,7427475:0,459977,115847 +r1,7261:17592114,7427475:358266,575824,115847 +k1,7144:17233848,7427475:-358266 +) +(1,7144:17233848,7427475:358266,459977,115847 +k1,7144:17233848,7427475:3277 +h1,7144:17588837,7427475:0,411205,112570 +) +k1,7144:18052525,7427475:286741 +k1,7144:18967101,7427475:286741 +k1,7144:20272927,7427475:286741 +k1,7144:21865801,7427475:286741 +k1,7144:23519623,7427475:286741 +k1,7144:24825449,7427475:286741 +k1,7144:26850204,7427475:286740 +k1,7144:27796237,7427475:286741 +k1,7144:29102063,7427475:286741 +k1,7144:31900144,7427475:286741 +k1,7144:32583029,7427475:0 +) +(1,7145:6764466,8292555:25818563,505283,134348 +k1,7144:9308246,8292555:160891 +k1,7144:10000634,8292555:160891 +k1,7144:11856286,8292555:160891 +k1,7144:12703339,8292555:160891 +k1,7144:13220090,8292555:160891 +k1,7144:16355660,8292555:160891 +k1,7144:18556030,8292555:160890 +k1,7144:21510721,8292555:160891 +k1,7144:22287650,8292555:160891 +k1,7144:25542496,8292555:160891 +k1,7144:27864109,8292555:160891 +k1,7144:28707885,8292555:160891 +k1,7144:29554938,8292555:160891 +k1,7144:30071689,8292555:160891 +k1,7144:32583029,8292555:0 +) +(1,7145:6764466,9157635:25818563,505283,134348 +k1,7144:8396933,9157635:238516 +k1,7144:10418028,9157635:238516 +(1,7144:10418028,9157635:0,452978,115847 +r1,7261:13589988,9157635:3171960,568825,115847 +k1,7144:10418028,9157635:-3171960 +) +(1,7144:10418028,9157635:3171960,452978,115847 +k1,7144:10418028,9157635:3277 +h1,7144:13586711,9157635:0,411205,112570 +) +k1,7144:14002174,9157635:238516 +k1,7144:16023925,9157635:238516 +k1,7144:17997834,9157635:238516 +(1,7144:17997834,9157635:0,459977,115847 +r1,7261:18356100,9157635:358266,575824,115847 +k1,7144:17997834,9157635:-358266 +) +(1,7144:17997834,9157635:358266,459977,115847 +k1,7144:17997834,9157635:3277 +h1,7144:18352823,9157635:0,411205,112570 +) +k1,7144:18768286,9157635:238516 +k1,7144:20025886,9157635:238515 +k1,7144:22002417,9157635:238516 +k1,7144:22772430,9157635:238516 +k1,7144:25433812,9157635:238516 +k1,7144:26358490,9157635:238516 +k1,7144:26952866,9157635:238516 +k1,7144:30122807,9157635:238516 +k1,7144:32583029,9157635:0 +) +(1,7145:6764466,10022715:25818563,505283,126483 +g1,7144:10057650,10022715 +g1,7144:12417601,10022715 +g1,7144:13808275,10022715 +g1,7144:16178056,10022715 +g1,7144:17125051,10022715 +g1,7144:17680140,10022715 +k1,7145:32583029,10022715:12217879 +g1,7145:32583029,10022715 +) +v1,7147:6764466,10707570:0,393216,0 +(1,7162:6764466,14832714:25818563,4518360,196608 +g1,7162:6764466,14832714 +g1,7162:6764466,14832714 +g1,7162:6567858,14832714 +(1,7162:6567858,14832714:0,4518360,196608 +r1,7261:32779637,14832714:26211779,4714968,196608 +k1,7162:6567857,14832714:-26211780 +) +(1,7162:6567858,14832714:26211779,4518360,196608 +[1,7162:6764466,14832714:25818563,4321752,0 +(1,7149:6764466,10935401:25818563,424439,106246 +(1,7148:6764466,10935401:0,0,0 +g1,7148:6764466,10935401 +g1,7148:6764466,10935401 +g1,7148:6436786,10935401 +(1,7148:6436786,10935401:0,0,0 +) +g1,7148:6764466,10935401 +) +g1,7149:9088144,10935401 +g1,7149:10084006,10935401 +g1,7149:13403546,10935401 +g1,7149:14067454,10935401 +g1,7149:15727224,10935401 +g1,7149:17386994,10935401 +g1,7149:18050902,10935401 +h1,7149:19378718,10935401:0,0,0 +k1,7149:32583029,10935401:13204311 +g1,7149:32583029,10935401 +) +(1,7150:6764466,11620256:25818563,424439,79822 +h1,7150:6764466,11620256:0,0,0 +h1,7150:12075729,11620256:0,0,0 +k1,7150:32583029,11620256:20507300 +g1,7150:32583029,11620256 +) +(1,7154:6764466,12436183:25818563,424439,79822 +(1,7152:6764466,12436183:0,0,0 +g1,7152:6764466,12436183 +g1,7152:6764466,12436183 +g1,7152:6436786,12436183 +(1,7152:6436786,12436183:0,0,0 +) +g1,7152:6764466,12436183 +) +g1,7154:7760328,12436183 +g1,7154:9088144,12436183 +h1,7154:10084006,12436183:0,0,0 +k1,7154:32583030,12436183:22499024 +g1,7154:32583030,12436183 +) +(1,7156:6764466,13252110:25818563,424439,6605 +(1,7155:6764466,13252110:0,0,0 +g1,7155:6764466,13252110 +g1,7155:6764466,13252110 +g1,7155:6436786,13252110 +(1,7155:6436786,13252110:0,0,0 +) +g1,7155:6764466,13252110 +) +g1,7156:8756190,13252110 +g1,7156:9752052,13252110 +h1,7156:11743776,13252110:0,0,0 +k1,7156:32583028,13252110:20839252 +g1,7156:32583028,13252110 +) +(1,7157:6764466,13936965:25818563,424439,79822 +h1,7157:6764466,13936965:0,0,0 +h1,7157:11743775,13936965:0,0,0 +k1,7157:32583029,13936965:20839254 +g1,7157:32583029,13936965 +) +(1,7161:6764466,14752892:25818563,424439,79822 +(1,7159:6764466,14752892:0,0,0 +g1,7159:6764466,14752892 +g1,7159:6764466,14752892 +g1,7159:6436786,14752892 +(1,7159:6436786,14752892:0,0,0 +) +g1,7159:6764466,14752892 +) +g1,7161:7760328,14752892 +g1,7161:9088144,14752892 +h1,7161:10084006,14752892:0,0,0 +k1,7161:32583030,14752892:22499024 +g1,7161:32583030,14752892 +) +] +) +g1,7162:32583029,14832714 +g1,7162:6764466,14832714 +g1,7162:6764466,14832714 +g1,7162:32583029,14832714 +g1,7162:32583029,14832714 +) +h1,7162:6764466,15029322:0,0,0 +v1,7166:6764466,15714177:0,393216,0 +(1,7185:6764466,20108071:25818563,4787110,196608 +g1,7185:6764466,20108071 +g1,7185:6764466,20108071 +g1,7185:6567858,20108071 +(1,7185:6567858,20108071:0,4787110,196608 +r1,7261:32779637,20108071:26211779,4983718,196608 +k1,7185:6567857,20108071:-26211780 +) +(1,7185:6567858,20108071:26211779,4787110,196608 +[1,7185:6764466,20108071:25818563,4590502,0 +(1,7168:6764466,15948614:25818563,431045,33029 +(1,7167:6764466,15948614:0,0,0 +g1,7167:6764466,15948614 +g1,7167:6764466,15948614 +g1,7167:6436786,15948614 +(1,7167:6436786,15948614:0,0,0 +) +g1,7167:6764466,15948614 +) +h1,7168:10415960,15948614:0,0,0 +k1,7168:32583028,15948614:22167068 +g1,7168:32583028,15948614 +) +(1,7172:6764466,16764541:25818563,424439,79822 +(1,7170:6764466,16764541:0,0,0 +g1,7170:6764466,16764541 +g1,7170:6764466,16764541 +g1,7170:6436786,16764541 +(1,7170:6436786,16764541:0,0,0 +) +g1,7170:6764466,16764541 +) +g1,7172:7760328,16764541 +g1,7172:9088144,16764541 +h1,7172:10084006,16764541:0,0,0 +k1,7172:32583030,16764541:22499024 +g1,7172:32583030,16764541 +) +(1,7174:6764466,17580468:25818563,431045,33029 +(1,7173:6764466,17580468:0,0,0 +g1,7173:6764466,17580468 +g1,7173:6764466,17580468 +g1,7173:6436786,17580468 +(1,7173:6436786,17580468:0,0,0 +) +g1,7173:6764466,17580468 +) +h1,7174:9752052,17580468:0,0,0 +k1,7174:32583028,17580468:22830976 +g1,7174:32583028,17580468 +) +(1,7178:6764466,18396395:25818563,424439,79822 +(1,7176:6764466,18396395:0,0,0 +g1,7176:6764466,18396395 +g1,7176:6764466,18396395 +g1,7176:6436786,18396395 +(1,7176:6436786,18396395:0,0,0 +) +g1,7176:6764466,18396395 +) +g1,7178:7760328,18396395 +g1,7178:9088144,18396395 +h1,7178:10084006,18396395:0,0,0 +k1,7178:32583030,18396395:22499024 +g1,7178:32583030,18396395 +) +(1,7180:6764466,19212322:25818563,431045,33029 +(1,7179:6764466,19212322:0,0,0 +g1,7179:6764466,19212322 +g1,7179:6764466,19212322 +g1,7179:6436786,19212322 +(1,7179:6436786,19212322:0,0,0 +) +g1,7179:6764466,19212322 +) +h1,7180:9420098,19212322:0,0,0 +k1,7180:32583030,19212322:23162932 +g1,7180:32583030,19212322 +) +(1,7184:6764466,20028249:25818563,424439,79822 +(1,7182:6764466,20028249:0,0,0 +g1,7182:6764466,20028249 +g1,7182:6764466,20028249 +g1,7182:6436786,20028249 +(1,7182:6436786,20028249:0,0,0 +) +g1,7182:6764466,20028249 +) +g1,7184:7760328,20028249 +g1,7184:9088144,20028249 +h1,7184:10084006,20028249:0,0,0 +k1,7184:32583030,20028249:22499024 +g1,7184:32583030,20028249 +) +] +) +g1,7185:32583029,20108071 +g1,7185:6764466,20108071 +g1,7185:6764466,20108071 +g1,7185:32583029,20108071 +g1,7185:32583029,20108071 +) +h1,7185:6764466,20304679:0,0,0 +(1,7189:6764466,21169759:25818563,513147,134348 +h1,7188:6764466,21169759:983040,0,0 +k1,7188:9357585,21169759:144694 +k1,7188:10118317,21169759:144694 +k1,7188:11282096,21169759:144694 +k1,7188:12793872,21169759:144695 +k1,7188:13597858,21169759:144694 +k1,7188:15066379,21169759:144694 +k1,7188:16402518,21169759:144694 +k1,7188:17936575,21169759:144694 +k1,7188:20461537,21169759:144694 +k1,7188:22304269,21169759:144694 +k1,7188:24184357,21169759:144695 +k1,7188:26512055,21169759:144694 +k1,7188:28797810,21169759:144694 +k1,7188:31821501,21169759:144694 +k1,7188:32583029,21169759:0 +) +(1,7189:6764466,22034839:25818563,513147,134348 +k1,7188:9241680,22034839:211634 +k1,7188:10224018,22034839:211635 +k1,7188:12094368,22034839:211634 +k1,7188:14287156,22034839:211635 +k1,7188:15030287,22034839:211634 +k1,7188:17954457,22034839:211635 +k1,7188:20801294,22034839:211634 +k1,7188:22032013,22034839:211634 +k1,7188:23981663,22034839:211635 +k1,7188:24809335,22034839:211634 +k1,7188:26040055,22034839:211635 +k1,7188:28211215,22034839:211634 +k1,7188:29614295,22034839:211635 +k1,7188:30845014,22034839:211634 +k1,7188:32583029,22034839:0 +) +(1,7189:6764466,22899919:25818563,513147,134348 +k1,7188:8532754,22899919:255062 +k1,7188:9735468,22899919:255063 +k1,7188:12903605,22899919:255062 +k1,7188:13786502,22899919:255062 +k1,7188:16846505,22899919:255062 +k1,7188:18495519,22899919:255063 +(1,7188:18495519,22899919:0,459977,115847 +r1,7261:18853785,22899919:358266,575824,115847 +k1,7188:18495519,22899919:-358266 +) +(1,7188:18495519,22899919:358266,459977,115847 +k1,7188:18495519,22899919:3277 +h1,7188:18850508,22899919:0,411205,112570 +) +k1,7188:19282517,22899919:255062 +k1,7188:20308282,22899919:255062 +k1,7188:24899206,22899919:255062 +k1,7188:27238314,22899919:255063 +k1,7188:29474529,22899919:255062 +k1,7188:30261088,22899919:255062 +k1,7188:32583029,22899919:0 +) +(1,7189:6764466,23764999:25818563,513147,134348 +k1,7188:9940817,23764999:186599 +k1,7188:11169438,23764999:186599 +k1,7188:14716722,23764999:186598 +k1,7188:16169477,23764999:186599 +k1,7188:18440121,23764999:186599 +k1,7188:21598122,23764999:186599 +k1,7188:22316218,23764999:186599 +k1,7188:24775606,23764999:186599 +k1,7188:25578242,23764999:186598 +k1,7188:28559952,23764999:186599 +k1,7188:30949216,23764999:186599 +k1,7189:32583029,23764999:0 +) +(1,7189:6764466,24630079:25818563,513147,134348 +k1,7188:8490158,24630079:211810 +k1,7188:9318007,24630079:211811 +k1,7188:11864865,24630079:211810 +k1,7188:13268121,24630079:211811 +k1,7188:16587648,24630079:211810 +k1,7188:17214289,24630079:211798 +k1,7188:18922286,24630079:211810 +k1,7188:19750134,24630079:211810 +k1,7188:23046069,24630079:211811 +k1,7188:23715976,24630079:211810 +k1,7188:24459284,24630079:211811 +k1,7188:26006062,24630079:211810 +k1,7188:26869300,24630079:211810 +k1,7188:28810606,24630079:211811 +k1,7188:30041501,24630079:211810 +k1,7188:31345797,24630079:211811 +k1,7188:32224763,24630079:211810 +(1,7188:32224763,24630079:0,459977,115847 +r1,7261:32583029,24630079:358266,575824,115847 +k1,7188:32224763,24630079:-358266 +) +(1,7188:32224763,24630079:358266,459977,115847 +k1,7188:32224763,24630079:3277 +h1,7188:32579752,24630079:0,411205,112570 +) +k1,7188:32583029,24630079:0 +) +(1,7189:6764466,25495159:25818563,505283,134348 +k1,7188:7618400,25495159:167772 +k1,7188:9870217,25495159:167772 +k1,7188:13009391,25495159:167772 +k1,7188:13828591,25495159:167772 +k1,7188:14352223,25495159:167772 +k1,7188:16512945,25495159:167772 +k1,7188:19192057,25495159:167772 +k1,7188:21765657,25495159:167773 +k1,7188:22546191,25495159:167772 +k1,7188:23069823,25495159:167772 +k1,7188:24691184,25495159:167772 +k1,7188:26458034,25495159:167772 +k1,7188:27868369,25495159:167772 +k1,7188:29734179,25495159:167772 +k1,7188:32583029,25495159:0 +) +(1,7189:6764466,26360239:25818563,513147,134348 +g1,7188:8193806,26360239 +g1,7188:10595045,26360239 +g1,7188:11813359,26360239 +g1,7188:14017334,26360239 +g1,7188:15320845,26360239 +g1,7188:16849144,26360239 +g1,7188:17699801,26360239 +g1,7188:19253004,26360239 +g1,7188:25852479,26360239 +k1,7189:32583029,26360239:4619635 +g1,7189:32583029,26360239 +) +(1,7191:6764466,27225319:25818563,513147,134348 +h1,7190:6764466,27225319:983040,0,0 +k1,7190:8595417,27225319:220076 +k1,7190:11655168,27225319:220076 +k1,7190:12561406,27225319:220076 +(1,7190:12561406,27225319:0,459977,115847 +r1,7261:12919672,27225319:358266,575824,115847 +k1,7190:12561406,27225319:-358266 +) +(1,7190:12561406,27225319:358266,459977,115847 +k1,7190:12561406,27225319:3277 +h1,7190:12916395,27225319:0,411205,112570 +) +k1,7190:13139748,27225319:220076 +k1,7190:13891321,27225319:220076 +k1,7190:18312910,27225319:220076 +k1,7190:19294514,27225319:220076 +k1,7190:20820722,27225319:220075 +k1,7190:24545663,27225319:220076 +k1,7190:25121599,27225319:220076 +k1,7190:27322828,27225319:220076 +k1,7190:28194332,27225319:220076 +k1,7190:29433493,27225319:220076 +k1,7190:31391584,27225319:220076 +k1,7190:32583029,27225319:0 +) +(1,7191:6764466,28090399:25818563,513147,134348 +k1,7190:8406797,28090399:208403 +k1,7190:10705144,28090399:208404 +(1,7190:10705144,28090399:0,452978,115847 +r1,7261:12470258,28090399:1765114,568825,115847 +k1,7190:10705144,28090399:-1765114 +) +(1,7190:10705144,28090399:1765114,452978,115847 +g1,7190:11763557,28090399 +h1,7190:12466981,28090399:0,411205,112570 +) +k1,7190:12852331,28090399:208403 +k1,7190:14796128,28090399:208404 +(1,7190:14796128,28090399:0,459977,115847 +r1,7261:15154394,28090399:358266,575824,115847 +k1,7190:14796128,28090399:-358266 +) +(1,7190:14796128,28090399:358266,459977,115847 +k1,7190:14796128,28090399:3277 +h1,7190:15151117,28090399:0,411205,112570 +) +k1,7190:15362797,28090399:208403 +k1,7190:16518852,28090399:208404 +k1,7190:19466660,28090399:208403 +k1,7190:20779345,28090399:208403 +k1,7190:22830621,28090399:208404 +k1,7190:23655062,28090399:208403 +k1,7190:26212276,28090399:208404 +k1,7190:28507345,28090399:208403 +k1,7190:32583029,28090399:0 +) +(1,7191:6764466,28955479:25818563,505283,134348 +k1,7190:10122911,28955479:177327 +k1,7190:10951666,28955479:177327 +k1,7190:12864385,28955479:177326 +(1,7190:12864385,28955479:0,452978,115847 +r1,7261:14629499,28955479:1765114,568825,115847 +k1,7190:12864385,28955479:-1765114 +) +(1,7190:12864385,28955479:1765114,452978,115847 +g1,7190:13922798,28955479 +h1,7190:14626222,28955479:0,411205,112570 +) +k1,7190:14980496,28955479:177327 +k1,7190:15627716,28955479:177327 +k1,7190:16336540,28955479:177327 +k1,7190:19143827,28955479:177327 +k1,7190:19972582,28955479:177327 +k1,7190:21084451,28955479:177326 +k1,7190:21676599,28955479:177305 +k1,7190:23936660,28955479:177327 +(1,7190:23936660,28955479:0,452978,115847 +r1,7261:31680874,28955479:7744214,568825,115847 +k1,7190:23936660,28955479:-7744214 +) +(1,7190:23936660,28955479:7744214,452978,115847 +k1,7190:23936660,28955479:3277 +h1,7190:31677597,28955479:0,411205,112570 +) +k1,7190:31858201,28955479:177327 +k1,7190:32583029,28955479:0 +) +(1,7191:6764466,29820559:25818563,505283,134348 +k1,7190:8234052,29820559:185080 +k1,7190:10503177,29820559:185080 +k1,7190:13659659,29820559:185080 +k1,7190:16305617,29820559:185081 +k1,7190:16846557,29820559:185080 +k1,7190:19601959,29820559:185080 +k1,7190:21485077,29820559:185080 +k1,7190:23405550,29820559:185080 +(1,7190:23405550,29820559:0,459977,115847 +r1,7261:23763816,29820559:358266,575824,115847 +k1,7190:23405550,29820559:-358266 +) +(1,7190:23405550,29820559:358266,459977,115847 +k1,7190:23405550,29820559:3277 +h1,7190:23760539,29820559:0,411205,112570 +) +k1,7190:23948896,29820559:185080 +k1,7190:24785405,29820559:185081 +k1,7190:27174461,29820559:185080 +k1,7190:27715401,29820559:185080 +k1,7190:30697558,29820559:185080 +k1,7190:32583029,29820559:0 +) +(1,7191:6764466,30685639:25818563,513147,134348 +g1,7190:8067977,30685639 +g1,7190:9014972,30685639 +g1,7190:10568175,30685639 +g1,7190:12744625,30685639 +g1,7190:14641892,30685639 +k1,7191:32583029,30685639:14445447 +g1,7191:32583029,30685639 +) +] +g1,7191:32583029,30819987 +) +h1,7191:6630773,30819987:0,0,0 +(1,7194:6630773,31685067:25952256,513147,134348 +h1,7193:6630773,31685067:983040,0,0 +k1,7193:10703079,31685067:296122 +k1,7193:11685363,31685067:296122 +k1,7193:13375436,31685067:296122 +k1,7193:16578735,31685067:296122 +k1,7193:17340818,31685067:296122 +k1,7193:18505292,31685067:296122 +k1,7193:21005389,31685067:296121 +k1,7193:21657371,31685067:296122 +k1,7193:23826512,31685067:296122 +k1,7193:26505523,31685067:296122 +k1,7193:28369266,31685067:296122 +k1,7193:29021248,31685067:296122 +k1,7193:30706733,31685067:296122 +k1,7193:32583029,31685067:0 +) +(1,7194:6630773,32550147:25952256,513147,134348 +k1,7193:8615556,32550147:249390 +k1,7193:12311483,32550147:249389 +k1,7193:15473948,32550147:249390 +k1,7193:16181435,32550147:249390 +k1,7193:16962321,32550147:249389 +k1,7193:17973239,32550147:249390 +k1,7193:20488209,32550147:249390 +k1,7193:23914784,32550147:249390 +k1,7193:25431639,32550147:249389 +k1,7193:26036889,32550147:249390 +k1,7193:28264156,32550147:249390 +k1,7193:29196430,32550147:249389 +k1,7193:31513481,32550147:249390 +k1,7193:32583029,32550147:0 +) +(1,7194:6630773,33415227:25952256,505283,134348 +k1,7193:7870188,33415227:220330 +k1,7193:14031356,33415227:220329 +k1,7193:14783183,33415227:220330 +k1,7193:17890373,33415227:220329 +k1,7193:18870921,33415227:220330 +k1,7193:21518704,33415227:220329 +(1,7193:21518704,33415227:0,452978,115847 +r1,7261:25745800,33415227:4227096,568825,115847 +k1,7193:21518704,33415227:-4227096 +) +(1,7193:21518704,33415227:4227096,452978,115847 +g1,7193:23280540,33415227 +g1,7193:23983964,33415227 +h1,7193:25742523,33415227:0,411205,112570 +) +k1,7193:26139800,33415227:220330 +k1,7193:27228481,33415227:220329 +k1,7193:28553093,33415227:220330 +k1,7193:31206118,33415227:220329 +k1,7193:32583029,33415227:0 +) +(1,7194:6630773,34280307:25952256,513147,126483 +g1,7193:9645429,34280307 +g1,7193:10496086,34280307 +g1,7193:13602492,34280307 +g1,7193:15335919,34280307 +g1,7193:16526708,34280307 +g1,7193:17792208,34280307 +g1,7193:21168622,34280307 +g1,7193:21983889,34280307 +g1,7193:23202203,34280307 +g1,7193:24768513,34280307 +g1,7193:25627034,34280307 +g1,7193:27215626,34280307 +k1,7194:32583029,34280307:2987135 +g1,7194:32583029,34280307 +) +v1,7196:6630773,34965162:0,393216,0 +(1,7257:6630773,45510161:25952256,10938215,196608 +g1,7257:6630773,45510161 +g1,7257:6630773,45510161 +g1,7257:6434165,45510161 +(1,7257:6434165,45510161:0,10938215,196608 +r1,7261:32779637,45510161:26345472,11134823,196608 +k1,7257:6434165,45510161:-26345472 +) +(1,7257:6434165,45510161:26345472,10938215,196608 +[1,7257:6630773,45510161:25952256,10741607,0 +(1,7198:6630773,35199599:25952256,431045,86428 +(1,7197:6630773,35199599:0,0,0 +g1,7197:6630773,35199599 +g1,7197:6630773,35199599 +g1,7197:6303093,35199599 +(1,7197:6303093,35199599:0,0,0 +) +g1,7197:6630773,35199599 +) +k1,7198:6630773,35199599:0 +g1,7198:13933760,35199599 +h1,7198:14597668,35199599:0,0,0 +k1,7198:32583028,35199599:17985360 +g1,7198:32583028,35199599 +) +(1,7202:6630773,35738059:25952256,424439,79822 +(1,7200:6630773,35738059:0,0,0 +g1,7200:6630773,35738059 +g1,7200:6630773,35738059 +g1,7200:6303093,35738059 +(1,7200:6303093,35738059:0,0,0 +) +g1,7200:6630773,35738059 +) +g1,7202:7626635,35738059 +g1,7202:8954451,35738059 +h1,7202:10282267,35738059:0,0,0 +k1,7202:32583029,35738059:22300762 +g1,7202:32583029,35738059 +) +(1,7204:6630773,36276519:25952256,431045,86428 +(1,7203:6630773,36276519:0,0,0 +g1,7203:6630773,36276519 +g1,7203:6630773,36276519 +g1,7203:6303093,36276519 +(1,7203:6303093,36276519:0,0,0 +) +g1,7203:6630773,36276519 +) +k1,7204:6630773,36276519:0 +g1,7204:13269852,36276519 +g1,7204:13933760,36276519 +h1,7204:14929622,36276519:0,0,0 +k1,7204:32583030,36276519:17653408 +g1,7204:32583030,36276519 +) +(1,7208:6630773,36814979:25952256,424439,79822 +(1,7206:6630773,36814979:0,0,0 +g1,7206:6630773,36814979 +g1,7206:6630773,36814979 +g1,7206:6303093,36814979 +(1,7206:6303093,36814979:0,0,0 +) +g1,7206:6630773,36814979 +) +g1,7208:7626635,36814979 +g1,7208:8954451,36814979 +h1,7208:10614221,36814979:0,0,0 +k1,7208:32583029,36814979:21968808 +g1,7208:32583029,36814979 +) +(1,7210:6630773,37353439:25952256,431045,86428 +(1,7209:6630773,37353439:0,0,0 +g1,7209:6630773,37353439 +g1,7209:6630773,37353439 +g1,7209:6303093,37353439 +(1,7209:6303093,37353439:0,0,0 +) +g1,7209:6630773,37353439 +) +k1,7210:6630773,37353439:0 +g1,7210:13269852,37353439 +g1,7210:13933760,37353439 +h1,7210:18249161,37353439:0,0,0 +k1,7210:32583029,37353439:14333868 +g1,7210:32583029,37353439 +) +(1,7214:6630773,37891899:25952256,424439,79822 +(1,7212:6630773,37891899:0,0,0 +g1,7212:6630773,37891899 +g1,7212:6630773,37891899 +g1,7212:6303093,37891899 +(1,7212:6303093,37891899:0,0,0 +) +g1,7212:6630773,37891899 +) +g1,7214:7626635,37891899 +g1,7214:8954451,37891899 +h1,7214:10614221,37891899:0,0,0 +k1,7214:32583029,37891899:21968808 +g1,7214:32583029,37891899 +) +(1,7216:6630773,38430359:25952256,431045,86428 +(1,7215:6630773,38430359:0,0,0 +g1,7215:6630773,38430359 +g1,7215:6630773,38430359 +g1,7215:6303093,38430359 +(1,7215:6303093,38430359:0,0,0 +) +g1,7215:6630773,38430359 +) +k1,7216:6630773,38430359:0 +g1,7216:14597668,38430359 +h1,7216:16257438,38430359:0,0,0 +k1,7216:32583029,38430359:16325591 +g1,7216:32583029,38430359 +) +(1,7220:6630773,38968819:25952256,424439,79822 +(1,7218:6630773,38968819:0,0,0 +g1,7218:6630773,38968819 +g1,7218:6630773,38968819 +g1,7218:6303093,38968819 +(1,7218:6303093,38968819:0,0,0 +) +g1,7218:6630773,38968819 +) +g1,7220:7626635,38968819 +g1,7220:8954451,38968819 +h1,7220:10282267,38968819:0,0,0 +k1,7220:32583029,38968819:22300762 +g1,7220:32583029,38968819 +) +(1,7222:6630773,39507279:25952256,431045,86428 +(1,7221:6630773,39507279:0,0,0 +g1,7221:6630773,39507279 +g1,7221:6630773,39507279 +g1,7221:6303093,39507279 +(1,7221:6303093,39507279:0,0,0 +) +g1,7221:6630773,39507279 +) +k1,7222:6630773,39507279:0 +g1,7222:12605944,39507279 +h1,7222:13269852,39507279:0,0,0 +k1,7222:32583028,39507279:19313176 +g1,7222:32583028,39507279 +) +(1,7226:6630773,40045739:25952256,424439,79822 +(1,7224:6630773,40045739:0,0,0 +g1,7224:6630773,40045739 +g1,7224:6630773,40045739 +g1,7224:6303093,40045739 +(1,7224:6303093,40045739:0,0,0 +) +g1,7224:6630773,40045739 +) +g1,7226:7626635,40045739 +g1,7226:8954451,40045739 +h1,7226:10614221,40045739:0,0,0 +k1,7226:32583029,40045739:21968808 +g1,7226:32583029,40045739 +) +(1,7228:6630773,40584199:25952256,431045,86428 +(1,7227:6630773,40584199:0,0,0 +g1,7227:6630773,40584199 +g1,7227:6630773,40584199 +g1,7227:6303093,40584199 +(1,7227:6303093,40584199:0,0,0 +) +g1,7227:6630773,40584199 +) +k1,7228:6630773,40584199:0 +g1,7228:11942036,40584199 +g1,7228:12605944,40584199 +h1,7228:13601806,40584199:0,0,0 +k1,7228:32583030,40584199:18981224 +g1,7228:32583030,40584199 +) +(1,7232:6630773,41122659:25952256,424439,79822 +(1,7230:6630773,41122659:0,0,0 +g1,7230:6630773,41122659 +g1,7230:6630773,41122659 +g1,7230:6303093,41122659 +(1,7230:6303093,41122659:0,0,0 +) +g1,7230:6630773,41122659 +) +g1,7232:7626635,41122659 +g1,7232:8954451,41122659 +h1,7232:10282267,41122659:0,0,0 +k1,7232:32583029,41122659:22300762 +g1,7232:32583029,41122659 +) +(1,7234:6630773,41661119:25952256,431045,86428 +(1,7233:6630773,41661119:0,0,0 +g1,7233:6630773,41661119 +g1,7233:6630773,41661119 +g1,7233:6303093,41661119 +(1,7233:6303093,41661119:0,0,0 +) +g1,7233:6630773,41661119 +) +k1,7234:6630773,41661119:0 +g1,7234:11942036,41661119 +g1,7234:12605944,41661119 +h1,7234:16921345,41661119:0,0,0 +k1,7234:32583029,41661119:15661684 +g1,7234:32583029,41661119 +) +(1,7238:6630773,42199579:25952256,424439,79822 +(1,7236:6630773,42199579:0,0,0 +g1,7236:6630773,42199579 +g1,7236:6630773,42199579 +g1,7236:6303093,42199579 +(1,7236:6303093,42199579:0,0,0 +) +g1,7236:6630773,42199579 +) +g1,7238:7626635,42199579 +g1,7238:8954451,42199579 +h1,7238:10282267,42199579:0,0,0 +k1,7238:32583029,42199579:22300762 +g1,7238:32583029,42199579 +) +(1,7240:6630773,42738039:25952256,431045,86428 +(1,7239:6630773,42738039:0,0,0 +g1,7239:6630773,42738039 +g1,7239:6630773,42738039 +g1,7239:6303093,42738039 +(1,7239:6303093,42738039:0,0,0 +) +g1,7239:6630773,42738039 +) +k1,7240:6630773,42738039:0 +g1,7240:13269852,42738039 +h1,7240:14929622,42738039:0,0,0 +k1,7240:32583030,42738039:17653408 +g1,7240:32583030,42738039 +) +(1,7244:6630773,43276499:25952256,424439,79822 +(1,7242:6630773,43276499:0,0,0 +g1,7242:6630773,43276499 +g1,7242:6630773,43276499 +g1,7242:6303093,43276499 +(1,7242:6303093,43276499:0,0,0 +) +g1,7242:6630773,43276499 +) +g1,7244:7626635,43276499 +g1,7244:8954451,43276499 +h1,7244:10614221,43276499:0,0,0 +k1,7244:32583029,43276499:21968808 +g1,7244:32583029,43276499 +) +(1,7246:6630773,43814959:25952256,431045,106246 +(1,7245:6630773,43814959:0,0,0 +g1,7245:6630773,43814959 +g1,7245:6630773,43814959 +g1,7245:6303093,43814959 +(1,7245:6303093,43814959:0,0,0 +) +g1,7245:6630773,43814959 +) +k1,7246:6630773,43814959:0 +g1,7246:13269852,43814959 +g1,7246:13933760,43814959 +g1,7246:14929622,43814959 +g1,7246:16589392,43814959 +g1,7246:17253300,43814959 +h1,7246:19576978,43814959:0,0,0 +k1,7246:32583029,43814959:13006051 +g1,7246:32583029,43814959 +) +(1,7250:6630773,44353419:25952256,424439,79822 +(1,7248:6630773,44353419:0,0,0 +g1,7248:6630773,44353419 +g1,7248:6630773,44353419 +g1,7248:6303093,44353419 +(1,7248:6303093,44353419:0,0,0 +) +g1,7248:6630773,44353419 +) +g1,7250:7626635,44353419 +g1,7250:8954451,44353419 +h1,7250:10282267,44353419:0,0,0 +k1,7250:32583029,44353419:22300762 +g1,7250:32583029,44353419 +) +(1,7252:6630773,44891879:25952256,431045,106246 +(1,7251:6630773,44891879:0,0,0 +g1,7251:6630773,44891879 +g1,7251:6630773,44891879 +g1,7251:6303093,44891879 +(1,7251:6303093,44891879:0,0,0 +) +g1,7251:6630773,44891879 +) +k1,7252:6630773,44891879:0 +g1,7252:13269852,44891879 +g1,7252:13933760,44891879 +g1,7252:18249161,44891879 +g1,7252:19908931,44891879 +g1,7252:20572839,44891879 +h1,7252:22896517,44891879:0,0,0 +k1,7252:32583029,44891879:9686512 +g1,7252:32583029,44891879 +) +(1,7256:6630773,45430339:25952256,424439,79822 +(1,7254:6630773,45430339:0,0,0 +g1,7254:6630773,45430339 +g1,7254:6630773,45430339 +g1,7254:6303093,45430339 +(1,7254:6303093,45430339:0,0,0 ) +g1,7254:6630773,45430339 ) +g1,7256:7626635,45430339 +g1,7256:8954451,45430339 +h1,7256:10282267,45430339:0,0,0 +k1,7256:32583029,45430339:22300762 +g1,7256:32583029,45430339 ) ] -[1,8324:3078558,4812305:0,0,0 -(1,8324:3078558,2439708:0,1703936,0 -g1,8324:29030814,2439708 -g1,8324:36135244,2439708 -(1,5950:36135244,2439708:1720320,1703936,0 -(1,5950:36135244,2439708:16384,1703936,0 -[1,5950:36135244,2439708:25952256,1703936,0 -(1,5950:36135244,1915420:25952256,1179648,0 -(1,5950:36135244,1915420:16384,1179648,0 -r1,8324:36151628,1915420:16384,1179648,0 ) -k1,5950:62087500,1915420:25935872 -g1,5950:62087500,1915420 +g1,7257:32583029,45510161 +g1,7257:6630773,45510161 +g1,7257:6630773,45510161 +g1,7257:32583029,45510161 +g1,7257:32583029,45510161 ) +h1,7257:6630773,45706769:0,0,0 ] -) -g1,5950:36675916,2439708 -(1,5950:36675916,2439708:1179648,16384,0 -r1,8324:37855564,2439708:1179648,16384,0 +(1,7261:32583029,45706769:0,0,0 +g1,7261:32583029,45706769 ) ) -k1,8324:3078556,2439708:-34777008 -) ] -[1,8324:3078558,4812305:0,0,0 -(1,8324:3078558,49800853:0,16384,2228224 -k1,8324:1358238,49800853:-1720320 -(1,5950:1358238,49800853:1720320,16384,2228224 -(1,5950:1358238,49800853:1179648,16384,0 -r1,8324:2537886,49800853:1179648,16384,0 -) -g1,5950:3062174,49800853 -(1,5950:3062174,52029077:16384,1703936,0 -[1,5950:3062174,52029077:25952256,1703936,0 -(1,5950:3062174,51504789:25952256,1179648,0 -(1,5950:3062174,51504789:16384,1179648,0 -r1,8324:3078558,51504789:16384,1179648,0 -) -k1,5950:29014430,51504789:25935872 -g1,5950:29014430,51504789 +(1,7261:6630773,47279633:25952256,0,0 +h1,7261:6630773,47279633:25952256,0,0 ) ] +(1,7261:4262630,4025873:0,0,0 +[1,7261:-473656,4025873:0,0,0 +(1,7261:-473656,-710413:0,0,0 +(1,7261:-473656,-710413:0,0,0 +g1,7261:-473656,-710413 ) +g1,7261:-473656,-710413 ) +] ) ] -[1,8324:3078558,4812305:0,0,0 -(1,8324:3078558,49800853:0,16384,2228224 -g1,8324:29030814,49800853 -g1,8324:36135244,49800853 -(1,5950:36135244,49800853:1720320,16384,2228224 -(1,5950:36135244,52029077:16384,1703936,0 -[1,5950:36135244,52029077:25952256,1703936,0 -(1,5950:36135244,51504789:25952256,1179648,0 -(1,5950:36135244,51504789:16384,1179648,0 -r1,8324:36151628,51504789:16384,1179648,0 -) -k1,5950:62087500,51504789:25935872 -g1,5950:62087500,51504789 -) -] -) -g1,5950:36675916,49800853 -(1,5950:36675916,49800853:1179648,16384,0 -r1,8324:37855564,49800853:1179648,16384,0 -) -) -k1,8324:3078556,49800853:-34777008 -) -] -g1,8324:6630773,4812305 -g1,8324:6630773,4812305 -g1,8324:9228620,4812305 -k1,8324:31387652,4812305:22159032 -) -) -] -[1,8324:6630773,45706769:25952256,40108032,0 -(1,8324:6630773,45706769:25952256,40108032,0 -(1,8324:6630773,45706769:0,0,0 -g1,8324:6630773,45706769 -) -[1,8324:6630773,45706769:25952256,40108032,0 -(1,8298:6630773,6254097:25952256,513147,126483 -h1,8297:6630773,6254097:983040,0,0 -k1,8297:9987075,6254097:278076 -k1,8297:10679915,6254097:277997 -k1,8297:12612775,6254097:278076 -k1,8297:14391625,6254097:278076 -k1,8297:17432043,6254097:278075 -k1,8297:22622698,6254097:278076 -k1,8297:23583659,6254097:278076 -k1,8297:26796437,6254097:278076 -k1,8297:27733805,6254097:278076 -k1,8297:30466204,6254097:278076 -(1,8297:30466204,6254097:0,452978,115847 -r1,8324:32583029,6254097:2116825,568825,115847 -k1,8297:30466204,6254097:-2116825 -) -(1,8297:30466204,6254097:2116825,452978,115847 -k1,8297:30466204,6254097:3277 -h1,8297:32579752,6254097:0,411205,112570 -) -k1,8297:32583029,6254097:0 -) -(1,8298:6630773,7095585:25952256,513147,134348 -k1,8297:8135207,7095585:219928 -k1,8297:10798317,7095585:219928 -k1,8297:12870291,7095585:219927 -k1,8297:16452216,7095585:219928 -k1,8297:17481514,7095585:219928 -k1,8297:18720527,7095585:219928 -k1,8297:20495623,7095585:219927 -k1,8297:21374843,7095585:219928 -k1,8297:22613856,7095585:219928 -k1,8297:25675425,7095585:219928 -k1,8297:28100639,7095585:219927 -k1,8297:29006729,7095585:219928 -k1,8297:32583029,7095585:0 -) -(1,8298:6630773,7937073:25952256,505283,134348 -k1,8297:9335091,7937073:276864 -k1,8297:10784394,7937073:276864 -k1,8297:14242377,7937073:276865 -k1,8297:17360882,7937073:276864 -k1,8297:19810920,7937073:276864 -k1,8297:20703822,7937073:276864 -k1,8297:21336547,7937073:276865 -k1,8297:23782653,7937073:276864 -k1,8297:25336814,7937073:276864 -k1,8297:26299840,7937073:276864 -k1,8297:28016531,7937073:276865 -k1,8297:30322390,7937073:276864 -k1,8297:31227089,7937073:276864 -k1,8298:32583029,7937073:0 -) -(1,8298:6630773,8778561:25952256,513147,134348 -k1,8297:8335666,8778561:216570 -k1,8297:10979691,8778561:216571 -k1,8297:12352971,8778561:216570 -k1,8297:14463531,8778561:216570 -k1,8297:15871547,8778561:216571 -k1,8297:17244827,8778561:216570 -k1,8297:20081526,8778561:216570 -k1,8297:22809436,8778561:216570 -k1,8297:23677435,8778561:216571 -(1,8297:23677435,8778561:0,452978,115847 -r1,8324:25794260,8778561:2116825,568825,115847 -k1,8297:23677435,8778561:-2116825 -) -(1,8297:23677435,8778561:2116825,452978,115847 -k1,8297:23677435,8778561:3277 -h1,8297:25790983,8778561:0,411205,112570 -) -k1,8297:26010830,8778561:216570 -k1,8297:28400574,8778561:216570 -k1,8297:29233183,8778561:216571 -k1,8297:29805613,8778561:216570 -k1,8298:32583029,8778561:0 -) -(1,8298:6630773,9620049:25952256,513147,134348 -k1,8297:9693724,9620049:237039 -k1,8297:11208059,9620049:237038 -k1,8297:13183113,9620049:237039 -k1,8297:16634692,9620049:237038 -k1,8297:17700761,9620049:237039 -k1,8297:21070421,9620049:237039 -k1,8297:22510700,9620049:237038 -k1,8297:23616091,9620049:237039 -k1,8297:25383396,9620049:237039 -k1,8297:26271862,9620049:237038 -k1,8297:27601386,9620049:237039 -k1,8297:28194284,9620049:237038 -k1,8297:31193666,9620049:237039 -k1,8297:32583029,9620049:0 -) -(1,8298:6630773,10461537:25952256,513147,126483 -k1,8297:7958273,10461537:219286 -k1,8297:9575442,10461537:219286 -(1,8297:9575442,10461537:0,452978,115847 -r1,8324:12395691,10461537:2820249,568825,115847 -k1,8297:9575442,10461537:-2820249 -) -(1,8297:9575442,10461537:2820249,452978,115847 -k1,8297:9575442,10461537:3277 -h1,8297:12392414,10461537:0,411205,112570 -) -k1,8297:12614977,10461537:219286 -k1,8297:13520425,10461537:219286 -(1,8297:13520425,10461537:0,414482,115847 -r1,8324:14933826,10461537:1413401,530329,115847 -k1,8297:13520425,10461537:-1413401 -) -(1,8297:13520425,10461537:1413401,414482,115847 -k1,8297:13520425,10461537:3277 -h1,8297:14930549,10461537:0,411205,112570 -) -k1,8297:15153112,10461537:219286 -k1,8297:16865308,10461537:219286 -k1,8297:18150865,10461537:219286 -k1,8297:20741899,10461537:219286 -k1,8297:22092992,10461537:219286 -k1,8297:24710240,10461537:219286 -k1,8297:26078372,10461537:219286 -(1,8297:26078372,10461537:0,452978,115847 -r1,8324:31712315,10461537:5633943,568825,115847 -k1,8297:26078372,10461537:-5633943 -) -(1,8297:26078372,10461537:5633943,452978,115847 -k1,8297:26078372,10461537:3277 -h1,8297:31709038,10461537:0,411205,112570 -) -k1,8297:31931601,10461537:219286 -k1,8297:32583029,10461537:0 -) -(1,8298:6630773,11303025:25952256,505283,102891 -g1,8297:8441532,11303025 -g1,8297:10290958,11303025 -g1,8297:12312743,11303025 -g1,8297:13715213,11303025 -g1,8297:15303805,11303025 -g1,8297:16611248,11303025 -g1,8297:18096293,11303025 -g1,8297:21053932,11303025 -g1,8297:21869199,11303025 -k1,8298:32583029,11303025:10125317 -g1,8298:32583029,11303025 -) -v1,8300:6630773,12493491:0,393216,0 -(1,8304:6630773,12814879:25952256,714604,196608 -g1,8304:6630773,12814879 -g1,8304:6630773,12814879 -g1,8304:6434165,12814879 -(1,8304:6434165,12814879:0,714604,196608 -r1,8324:32779637,12814879:26345472,911212,196608 -k1,8304:6434165,12814879:-26345472 -) -(1,8304:6434165,12814879:26345472,714604,196608 -[1,8304:6630773,12814879:25952256,517996,0 -(1,8302:6630773,12707401:25952256,410518,107478 -(1,8301:6630773,12707401:0,0,0 -g1,8301:6630773,12707401 -g1,8301:6630773,12707401 -g1,8301:6303093,12707401 -(1,8301:6303093,12707401:0,0,0 -) -g1,8301:6630773,12707401 -) -k1,8302:6630773,12707401:0 -g1,8302:10424522,12707401 -g1,8302:11056814,12707401 -g1,8302:12953689,12707401 -g1,8302:14534418,12707401 -g1,8302:15166710,12707401 -h1,8302:18012021,12707401:0,0,0 -k1,8302:32583029,12707401:14571008 -g1,8302:32583029,12707401 -) -] -) -g1,8304:32583029,12814879 -g1,8304:6630773,12814879 -g1,8304:6630773,12814879 -g1,8304:32583029,12814879 -g1,8304:32583029,12814879 -) -h1,8304:6630773,13011487:0,0,0 -(1,8307:6630773,27615295:25952256,14013984,0 -k1,8307:12599879,27615295:5969106 -h1,8306:12599879,27615295:0,0,0 -(1,8306:12599879,27615295:14014044,14013984,0 -(1,8306:12599879,27615295:14014019,14014019,0 -(1,8306:12599879,27615295:14014019,14014019,0 -(1,8306:12599879,27615295:0,14014019,0 -(1,8306:12599879,27615295:0,18945146,0 -(1,8306:12599879,27615295:18945146,18945146,0 -) -k1,8306:12599879,27615295:-18945146 -) -) -g1,8306:26613898,27615295 -) -) -) -g1,8307:26613923,27615295 -k1,8307:32583029,27615295:5969106 -) -(1,8314:6630773,28456783:25952256,513147,134348 -h1,8313:6630773,28456783:983040,0,0 -k1,8313:10254585,28456783:242810 -(1,8313:10254585,28456783:0,452978,115847 -r1,8324:12371410,28456783:2116825,568825,115847 -k1,8313:10254585,28456783:-2116825 -) -(1,8313:10254585,28456783:2116825,452978,115847 -k1,8313:10254585,28456783:3277 -h1,8313:12368133,28456783:0,411205,112570 -) -k1,8313:12614220,28456783:242810 -k1,8313:14048474,28456783:242809 -k1,8313:16851776,28456783:242810 -k1,8313:19476164,28456783:242810 -k1,8313:20335012,28456783:242810 -k1,8313:21166334,28456783:242809 -k1,8313:23107182,28456783:242810 -k1,8313:24863218,28456783:242810 -k1,8313:26053679,28456783:242810 -k1,8313:28820935,28456783:242809 -k1,8313:31074390,28456783:242810 -k1,8313:32583029,28456783:0 -) -(1,8314:6630773,29298271:25952256,505283,134348 -g1,8313:9779777,29298271 -g1,8313:12137762,29298271 -g1,8313:12988419,29298271 -g1,8313:13543508,29298271 -g1,8313:16752150,29298271 -g1,8313:19007899,29298271 -k1,8314:32583029,29298271:11449798 -g1,8314:32583029,29298271 -) -(1,8316:6630773,30139759:25952256,513147,126483 -h1,8315:6630773,30139759:983040,0,0 -k1,8315:9595294,30139759:198246 -k1,8315:10208383,30139759:198246 -k1,8315:10938126,30139759:198246 -k1,8315:12649598,30139759:198246 -k1,8315:16948432,30139759:198246 -k1,8315:17502539,30139759:198247 -k1,8315:20459851,30139759:198246 -k1,8315:22665465,30139759:198246 -k1,8315:23395208,30139759:198246 -k1,8315:25938989,30139759:198247 -k1,8315:30454092,30139759:198246 -k1,8315:31303766,30139759:198246 -k1,8316:32583029,30139759:0 -) -(1,8316:6630773,30981247:25952256,505283,134348 -k1,8315:7982125,30981247:258867 -k1,8315:9260077,30981247:258867 -k1,8315:12468720,30981247:258868 -k1,8315:14886343,30981247:258867 -k1,8315:15796638,30981247:258867 -k1,8315:16411365,30981247:258867 -k1,8315:19292983,30981247:258867 -k1,8315:21732888,30981247:258867 -k1,8315:24278963,30981247:258868 -k1,8315:25556915,30981247:258867 -k1,8315:28892042,30981247:258867 -k1,8315:31386342,30981247:258867 -k1,8315:32583029,30981247:0 -) -(1,8316:6630773,31822735:25952256,513147,134348 -k1,8315:8642230,31822735:273442 -k1,8315:9574964,31822735:273442 -k1,8315:10867491,31822735:273442 -k1,8315:11555701,31822735:273367 -k1,8315:14588209,31822735:273442 -k1,8315:16869019,31822735:273442 -k1,8315:18655687,31822735:273442 -k1,8315:20266063,31822735:273442 -k1,8315:22911253,31822735:273442 -k1,8315:23994065,31822735:273442 -k1,8315:25286592,31822735:273442 -k1,8315:28614012,31822735:273442 -k1,8315:31133373,31822735:273442 -k1,8316:32583029,31822735:0 -) -(1,8316:6630773,32664223:25952256,505283,134348 -g1,8315:10770026,32664223 -g1,8315:11652140,32664223 -g1,8315:13985221,32664223 -g1,8315:14867335,32664223 -g1,8315:15875934,32664223 -g1,8315:17094248,32664223 -g1,8315:18380719,32664223 -g1,8315:20029604,32664223 -k1,8316:32583029,32664223:9748484 -g1,8316:32583029,32664223 -) -(1,8318:6630773,33505711:25952256,513147,134348 -h1,8317:6630773,33505711:983040,0,0 -k1,8317:8463994,33505711:222346 -k1,8317:9274852,33505711:222345 -k1,8317:12256264,33505711:222346 -k1,8317:15428385,33505711:222346 -k1,8317:17988400,33505711:222346 -k1,8317:19277016,33505711:222345 -k1,8317:23014713,33505711:222346 -k1,8317:25969255,33505711:222346 -k1,8317:28350357,33505711:222346 -k1,8317:29382072,33505711:222345 -k1,8317:29960278,33505711:222346 -k1,8317:32583029,33505711:0 -) -(1,8318:6630773,34347199:25952256,513147,134348 -k1,8317:8854410,34347199:216269 -k1,8317:10216903,34347199:216268 -k1,8317:10789032,34347199:216269 -k1,8317:13396710,34347199:216269 -k1,8317:14299140,34347199:216268 -k1,8317:16746910,34347199:216269 -k1,8317:17622471,34347199:216269 -k1,8317:19535466,34347199:216268 -k1,8317:22089404,34347199:216269 -k1,8317:25117168,34347199:216269 -k1,8317:26352521,34347199:216268 -k1,8317:29093237,34347199:216269 -k1,8317:32583029,34347199:0 -) -(1,8318:6630773,35188687:25952256,513147,134348 -k1,8317:8032073,35188687:133834 -k1,8317:8521767,35188687:133834 -k1,8317:9638640,35188687:133833 -k1,8317:11952857,35188687:133834 -k1,8317:13278136,35188687:133834 -k1,8317:14802644,35188687:133834 -k1,8317:15394574,35188687:133833 -k1,8317:16179836,35188687:133834 -k1,8317:17832139,35188687:133834 -k1,8317:20222378,35188687:133834 -k1,8317:23118555,35188687:133834 -k1,8317:26202163,35188687:133833 -k1,8317:28673666,35188687:133834 -k1,8317:29799060,35188687:133834 -k1,8317:32583029,35188687:0 -) -(1,8318:6630773,36030175:25952256,513147,134348 -k1,8317:7538846,36030175:292035 -k1,8317:8245630,36030175:291941 -k1,8317:9729109,36030175:292034 -k1,8317:11401332,36030175:292035 -k1,8317:13436625,36030175:292035 -k1,8317:14344697,36030175:292034 -k1,8317:15655817,36030175:292035 -k1,8317:17377191,36030175:292034 -k1,8317:18328518,36030175:292035 -k1,8317:20779308,36030175:292034 -k1,8317:22451531,36030175:292035 -k1,8317:25537365,36030175:292034 -k1,8317:27696521,36030175:292035 -k1,8317:29301897,36030175:292034 -k1,8317:31043588,36030175:292035 -k1,8317:32583029,36030175:0 -) -(1,8318:6630773,36871663:25952256,513147,134348 -k1,8317:8170161,36871663:191968 -k1,8317:9553581,36871663:191975 -k1,8317:11248290,36871663:191968 -k1,8317:14331713,36871663:191975 -k1,8317:16501565,36871663:191975 -k1,8317:19412629,36871663:191975 -k1,8317:20917946,36871663:191975 -k1,8317:22559577,36871663:191975 -k1,8317:24218248,36871663:191975 -k1,8317:25511876,36871663:191968 -k1,8317:26895296,36871663:191975 -k1,8317:28706010,36871663:191975 -k1,8317:29580870,36871663:191975 -k1,8317:31931601,36871663:191975 -k1,8317:32583029,36871663:0 -) -(1,8318:6630773,37713151:25952256,513147,126483 -k1,8317:7236817,37713151:250184 -k1,8317:10109751,37713151:250183 -k1,8317:12367303,37713151:250184 -k1,8317:13763712,37713151:250184 -k1,8317:15032980,37713151:250183 -k1,8317:17344927,37713151:250184 -k1,8317:18254403,37713151:250184 -k1,8317:18860446,37713151:250183 -k1,8317:22360560,37713151:250184 -k1,8317:25969464,37713151:250184 -k1,8317:28557316,37713151:250183 -k1,8317:29799060,37713151:250184 -k1,8317:32583029,37713151:0 -) -(1,8318:6630773,38554639:25952256,505283,134348 -g1,8317:9388528,38554639 -g1,8317:13317411,38554639 -g1,8317:13931483,38554639 -k1,8318:32583029,38554639:15567422 -g1,8318:32583029,38554639 -) -(1,8320:6630773,39396127:25952256,513147,134348 -h1,8319:6630773,39396127:983040,0,0 -k1,8319:10296595,39396127:262537 -k1,8319:12544218,39396127:262537 -k1,8319:13825839,39396127:262536 -k1,8319:17125314,39396127:262537 -k1,8319:18047143,39396127:262537 -k1,8319:19311006,39396127:262473 -k1,8319:20764988,39396127:262537 -k1,8319:22254950,39396127:262473 -k1,8319:25426630,39396127:262537 -k1,8319:28256867,39396127:262536 -k1,8319:29710849,39396127:262537 -k1,8319:32227169,39396127:262537 -k1,8319:32583029,39396127:0 -) -(1,8320:6630773,40237615:25952256,513147,134348 -k1,8319:10461896,40237615:236473 -k1,8319:11646020,40237615:236473 -(1,8319:11646020,40237615:0,452978,115847 -r1,8324:14114557,40237615:2468537,568825,115847 -k1,8319:11646020,40237615:-2468537 -) -(1,8319:11646020,40237615:2468537,452978,115847 -k1,8319:11646020,40237615:3277 -h1,8319:14111280,40237615:0,411205,112570 -) -k1,8319:14524700,40237615:236473 -(1,8319:14524700,40237615:0,452978,115847 -r1,8324:16641525,40237615:2116825,568825,115847 -k1,8319:14524700,40237615:-2116825 -) -(1,8319:14524700,40237615:2116825,452978,115847 -k1,8319:14524700,40237615:3277 -h1,8319:16638248,40237615:0,411205,112570 -) -k1,8319:16877998,40237615:236473 -k1,8319:18305916,40237615:236473 -k1,8319:20764059,40237615:236472 -k1,8319:24200000,40237615:236473 -k1,8319:26153516,40237615:236473 -k1,8319:28727658,40237615:236473 -k1,8319:32227169,40237615:236473 -k1,8319:32583029,40237615:0 -) -(1,8320:6630773,41079103:25952256,513147,134348 -k1,8319:7815314,41079103:201501 -k1,8319:8702978,41079103:201502 -k1,8319:11236905,41079103:201501 -k1,8319:12542688,41079103:201501 -k1,8319:14134863,41079103:201501 -k1,8319:15845004,41079103:201502 -k1,8319:18205261,41079103:201501 -k1,8319:19563472,41079103:201501 -k1,8319:21042270,41079103:201501 -k1,8319:21856534,41079103:201502 -k1,8319:22413895,41079103:201501 -k1,8319:24040804,41079103:201501 -k1,8319:24893733,41079103:201501 -k1,8319:28679399,41079103:201502 -k1,8319:31269687,41079103:201501 -k1,8319:32583029,41079103:0 -) -(1,8320:6630773,41920591:25952256,513147,134348 -g1,8319:7512887,41920591 -g1,8319:9087717,41920591 -g1,8319:10984984,41920591 -g1,8319:12203298,41920591 -g1,8319:14409895,41920591 -g1,8319:15140621,41920591 -g1,8319:17545137,41920591 -g1,8319:20388088,41920591 -g1,8319:21273479,41920591 -g1,8319:21828568,41920591 -g1,8319:25436980,41920591 -k1,8320:32583029,41920591:5989339 -g1,8320:32583029,41920591 -) -(1,8322:6630773,42762079:25952256,513147,134348 -h1,8321:6630773,42762079:983040,0,0 -k1,8321:9538447,42762079:141399 -k1,8321:12247546,42762079:141398 -k1,8321:12744805,42762079:141399 -k1,8321:14893571,42762079:141398 -k1,8321:16054055,42762079:141399 -k1,8321:17576297,42762079:141398 -k1,8321:20388288,42762079:141399 -k1,8321:23756679,42762079:141398 -k1,8321:27878735,42762079:141399 -k1,8321:29062155,42762079:141398 -k1,8321:30222639,42762079:141399 -k1,8321:31601955,42762079:141341 -k1,8322:32583029,42762079:0 -) -(1,8322:6630773,43603567:25952256,513147,134348 -k1,8321:8032387,43603567:162328 -k1,8321:9479220,43603567:162327 -k1,8321:12591979,43603567:162328 -k1,8321:14913062,43603567:162327 -k1,8321:15691428,43603567:162328 -k1,8321:16209615,43603567:162327 -k1,8321:21281900,43603567:162328 -k1,8321:23798280,43603567:162327 -k1,8321:25775300,43603567:162328 -k1,8321:27129072,43603567:162327 -k1,8321:29300734,43603567:162328 -k1,8321:30122353,43603567:162327 -k1,8321:31303766,43603567:162328 -k1,8322:32583029,43603567:0 -) -(1,8322:6630773,44445055:25952256,513147,126483 -k1,8321:7915802,44445055:192544 -k1,8321:9099906,44445055:192544 -k1,8321:12124261,44445055:192544 -k1,8321:12932843,44445055:192544 -k1,8321:15262516,44445055:192544 -k1,8321:15942641,44445055:192537 -k1,8321:18400765,44445055:192544 -k1,8321:19576349,44445055:192544 -k1,8321:21506908,44445055:192544 -k1,8321:22230949,44445055:192544 -k1,8321:23936719,44445055:192544 -k1,8321:26172020,44445055:192544 -k1,8321:27232916,44445055:192544 -k1,8321:28862665,44445055:192544 -k1,8321:29411069,44445055:192544 -(1,8321:29411069,44445055:0,452978,115847 -r1,8324:32583029,44445055:3171960,568825,115847 -k1,8321:29411069,44445055:-3171960 -) -(1,8321:29411069,44445055:3171960,452978,115847 -k1,8321:29411069,44445055:3277 -h1,8321:32579752,44445055:0,411205,112570 -) -k1,8321:32583029,44445055:0 -) -(1,8322:6630773,45286543:25952256,473825,134348 -g1,8321:8695812,45286543 -g1,8321:9581203,45286543 -g1,8321:10551135,45286543 -g1,8321:13822692,45286543 -g1,8321:14673349,45286543 -g1,8321:18153310,45286543 -(1,8321:18153310,45286543:0,459977,115847 -r1,8324:19566711,45286543:1413401,575824,115847 -k1,8321:18153310,45286543:-1413401 -) -(1,8321:18153310,45286543:1413401,459977,115847 -k1,8321:18153310,45286543:3277 -h1,8321:19563434,45286543:0,411205,112570 -) -k1,8322:32583029,45286543:12842648 -g1,8322:32583029,45286543 -) -] -(1,8324:32583029,45706769:0,0,0 -g1,8324:32583029,45706769 -) -) -] -(1,8324:6630773,47279633:25952256,0,0 -h1,8324:6630773,47279633:25952256,0,0 -) -] -(1,8324:4262630,4025873:0,0,0 -[1,8324:-473656,4025873:0,0,0 -(1,8324:-473656,-710413:0,0,0 -(1,8324:-473656,-710413:0,0,0 -g1,8324:-473656,-710413 -) -g1,8324:-473656,-710413 -) -] -) -] -!20150 -}136 -Input:1143:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1144:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1145:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!294 -{137 -[1,8393:4262630,47279633:28320399,43253760,0 -(1,8393:4262630,4025873:0,0,0 -[1,8393:-473656,4025873:0,0,0 -(1,8393:-473656,-710413:0,0,0 -(1,8393:-473656,-644877:0,0,0 -k1,8393:-473656,-644877:-65536 +!30237 +}111 +Input:968:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:969:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:970:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:971:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:972:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:973:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:974:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:975:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:976:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!849 +{112 +[1,7419:4262630,47279633:28320399,43253760,0 +(1,7419:4262630,4025873:0,0,0 +[1,7419:-473656,4025873:0,0,0 +(1,7419:-473656,-710413:0,0,0 +(1,7419:-473656,-644877:0,0,0 +k1,7419:-473656,-644877:-65536 ) -(1,8393:-473656,4736287:0,0,0 -k1,8393:-473656,4736287:5209943 +(1,7419:-473656,4736287:0,0,0 +k1,7419:-473656,4736287:5209943 ) -g1,8393:-473656,-710413 +g1,7419:-473656,-710413 ) ] ) -[1,8393:6630773,47279633:25952256,43253760,0 -[1,8393:6630773,4812305:25952256,786432,0 -(1,8393:6630773,4812305:25952256,505283,11795 -(1,8393:6630773,4812305:25952256,505283,11795 -g1,8393:3078558,4812305 -[1,8393:3078558,4812305:0,0,0 -(1,8393:3078558,2439708:0,1703936,0 -k1,8393:1358238,2439708:-1720320 -(1,5950:1358238,2439708:1720320,1703936,0 -(1,5950:1358238,2439708:1179648,16384,0 -r1,8393:2537886,2439708:1179648,16384,0 +[1,7419:6630773,47279633:25952256,43253760,0 +[1,7419:6630773,4812305:25952256,786432,0 +(1,7419:6630773,4812305:25952256,513147,126483 +(1,7419:6630773,4812305:25952256,513147,126483 +g1,7419:3078558,4812305 +[1,7419:3078558,4812305:0,0,0 +(1,7419:3078558,2439708:0,1703936,0 +k1,7419:1358238,2439708:-1720320 +(1,6148:1358238,2439708:1720320,1703936,0 +(1,6148:1358238,2439708:1179648,16384,0 +r1,7419:2537886,2439708:1179648,16384,0 ) -g1,5950:3062174,2439708 -(1,5950:3062174,2439708:16384,1703936,0 -[1,5950:3062174,2439708:25952256,1703936,0 -(1,5950:3062174,1915420:25952256,1179648,0 -(1,5950:3062174,1915420:16384,1179648,0 -r1,8393:3078558,1915420:16384,1179648,0 +g1,6148:3062174,2439708 +(1,6148:3062174,2439708:16384,1703936,0 +[1,6148:3062174,2439708:25952256,1703936,0 +(1,6148:3062174,1915420:25952256,1179648,0 +(1,6148:3062174,1915420:16384,1179648,0 +r1,7419:3078558,1915420:16384,1179648,0 ) -k1,5950:29014430,1915420:25935872 -g1,5950:29014430,1915420 +k1,6148:29014430,1915420:25935872 +g1,6148:29014430,1915420 ) ] ) ) ) ] -[1,8393:3078558,4812305:0,0,0 -(1,8393:3078558,2439708:0,1703936,0 -g1,8393:29030814,2439708 -g1,8393:36135244,2439708 -(1,5950:36135244,2439708:1720320,1703936,0 -(1,5950:36135244,2439708:16384,1703936,0 -[1,5950:36135244,2439708:25952256,1703936,0 -(1,5950:36135244,1915420:25952256,1179648,0 -(1,5950:36135244,1915420:16384,1179648,0 -r1,8393:36151628,1915420:16384,1179648,0 +[1,7419:3078558,4812305:0,0,0 +(1,7419:3078558,2439708:0,1703936,0 +g1,7419:29030814,2439708 +g1,7419:36135244,2439708 +(1,6148:36135244,2439708:1720320,1703936,0 +(1,6148:36135244,2439708:16384,1703936,0 +[1,6148:36135244,2439708:25952256,1703936,0 +(1,6148:36135244,1915420:25952256,1179648,0 +(1,6148:36135244,1915420:16384,1179648,0 +r1,7419:36151628,1915420:16384,1179648,0 ) -k1,5950:62087500,1915420:25935872 -g1,5950:62087500,1915420 +k1,6148:62087500,1915420:25935872 +g1,6148:62087500,1915420 ) ] ) -g1,5950:36675916,2439708 -(1,5950:36675916,2439708:1179648,16384,0 -r1,8393:37855564,2439708:1179648,16384,0 +g1,6148:36675916,2439708 +(1,6148:36675916,2439708:1179648,16384,0 +r1,7419:37855564,2439708:1179648,16384,0 ) ) -k1,8393:3078556,2439708:-34777008 +k1,7419:3078556,2439708:-34777008 ) ] -[1,8393:3078558,4812305:0,0,0 -(1,8393:3078558,49800853:0,16384,2228224 -k1,8393:1358238,49800853:-1720320 -(1,5950:1358238,49800853:1720320,16384,2228224 -(1,5950:1358238,49800853:1179648,16384,0 -r1,8393:2537886,49800853:1179648,16384,0 +[1,7419:3078558,4812305:0,0,0 +(1,7419:3078558,49800853:0,16384,2228224 +k1,7419:1358238,49800853:-1720320 +(1,6148:1358238,49800853:1720320,16384,2228224 +(1,6148:1358238,49800853:1179648,16384,0 +r1,7419:2537886,49800853:1179648,16384,0 ) -g1,5950:3062174,49800853 -(1,5950:3062174,52029077:16384,1703936,0 -[1,5950:3062174,52029077:25952256,1703936,0 -(1,5950:3062174,51504789:25952256,1179648,0 -(1,5950:3062174,51504789:16384,1179648,0 -r1,8393:3078558,51504789:16384,1179648,0 +g1,6148:3062174,49800853 +(1,6148:3062174,52029077:16384,1703936,0 +[1,6148:3062174,52029077:25952256,1703936,0 +(1,6148:3062174,51504789:25952256,1179648,0 +(1,6148:3062174,51504789:16384,1179648,0 +r1,7419:3078558,51504789:16384,1179648,0 ) -k1,5950:29014430,51504789:25935872 -g1,5950:29014430,51504789 +k1,6148:29014430,51504789:25935872 +g1,6148:29014430,51504789 ) ] ) ) ) ] -[1,8393:3078558,4812305:0,0,0 -(1,8393:3078558,49800853:0,16384,2228224 -g1,8393:29030814,49800853 -g1,8393:36135244,49800853 -(1,5950:36135244,49800853:1720320,16384,2228224 -(1,5950:36135244,52029077:16384,1703936,0 -[1,5950:36135244,52029077:25952256,1703936,0 -(1,5950:36135244,51504789:25952256,1179648,0 -(1,5950:36135244,51504789:16384,1179648,0 -r1,8393:36151628,51504789:16384,1179648,0 -) -k1,5950:62087500,51504789:25935872 -g1,5950:62087500,51504789 +[1,7419:3078558,4812305:0,0,0 +(1,7419:3078558,49800853:0,16384,2228224 +g1,7419:29030814,49800853 +g1,7419:36135244,49800853 +(1,6148:36135244,49800853:1720320,16384,2228224 +(1,6148:36135244,52029077:16384,1703936,0 +[1,6148:36135244,52029077:25952256,1703936,0 +(1,6148:36135244,51504789:25952256,1179648,0 +(1,6148:36135244,51504789:16384,1179648,0 +r1,7419:36151628,51504789:16384,1179648,0 +) +k1,6148:62087500,51504789:25935872 +g1,6148:62087500,51504789 ) ] ) -g1,5950:36675916,49800853 -(1,5950:36675916,49800853:1179648,16384,0 -r1,8393:37855564,49800853:1179648,16384,0 -) -) -k1,8393:3078556,49800853:-34777008 +g1,6148:36675916,49800853 +(1,6148:36675916,49800853:1179648,16384,0 +r1,7419:37855564,49800853:1179648,16384,0 ) -] -g1,8393:6630773,4812305 -k1,8393:24358918,4812305:16532768 -g1,8393:25981589,4812305 -g1,8393:26804065,4812305 -g1,8393:30302376,4812305 -) -) -] -[1,8393:6630773,45706769:25952256,40108032,0 -(1,8393:6630773,45706769:25952256,40108032,0 -(1,8393:6630773,45706769:0,0,0 -g1,8393:6630773,45706769 -) -[1,8393:6630773,45706769:25952256,40108032,0 -v1,8324:6630773,6254097:0,393216,0 -(1,8335:6630773,9798897:25952256,3938016,196608 -g1,8335:6630773,9798897 -g1,8335:6630773,9798897 -g1,8335:6434165,9798897 -(1,8335:6434165,9798897:0,3938016,196608 -r1,8393:32779637,9798897:26345472,4134624,196608 -k1,8335:6434165,9798897:-26345472 -) -(1,8335:6434165,9798897:26345472,3938016,196608 -[1,8335:6630773,9798897:25952256,3741408,0 -(1,8326:6630773,6468007:25952256,410518,107478 -(1,8325:6630773,6468007:0,0,0 -g1,8325:6630773,6468007 -g1,8325:6630773,6468007 -g1,8325:6303093,6468007 -(1,8325:6303093,6468007:0,0,0 -) -g1,8325:6630773,6468007 -) -k1,8326:6630773,6468007:0 -g1,8326:9476085,6468007 -g1,8326:10108377,6468007 -g1,8326:17063583,6468007 -g1,8326:18960457,6468007 -g1,8326:19592749,6468007 -g1,8326:20541187,6468007 -g1,8326:22754207,6468007 -g1,8326:23386499,6468007 -g1,8326:24334937,6468007 -g1,8326:26864103,6468007 -g1,8326:27496395,6468007 -h1,8326:29077124,6468007:0,0,0 -k1,8326:32583029,6468007:3505905 -g1,8326:32583029,6468007 -) -(1,8327:6630773,7134185:25952256,404226,101187 -h1,8327:6630773,7134185:0,0,0 -g1,8327:9792230,7134185 -g1,8327:10424522,7134185 -g1,8327:12637542,7134185 -g1,8327:14218271,7134185 -g1,8327:14850563,7134185 -h1,8327:16431291,7134185:0,0,0 -k1,8327:32583029,7134185:16151738 -g1,8327:32583029,7134185 -) -(1,8328:6630773,7800363:25952256,410518,107478 -h1,8328:6630773,7800363:0,0,0 -g1,8328:10424522,7800363 -g1,8328:11056814,7800363 -g1,8328:12953689,7800363 -g1,8328:14534418,7800363 -g1,8328:15166710,7800363 -h1,8328:18012021,7800363:0,0,0 -k1,8328:32583029,7800363:14571008 -g1,8328:32583029,7800363 -) -(1,8329:6630773,8466541:25952256,410518,76021 -h1,8329:6630773,8466541:0,0,0 -k1,8329:6630773,8466541:0 -h1,8329:9476084,8466541:0,0,0 -k1,8329:32583028,8466541:23106944 -g1,8329:32583028,8466541 -) -(1,8334:6630773,9132719:25952256,410518,101187 -(1,8331:6630773,9132719:0,0,0 -g1,8331:6630773,9132719 -g1,8331:6630773,9132719 -g1,8331:6303093,9132719 -(1,8331:6303093,9132719:0,0,0 -) -g1,8331:6630773,9132719 -) -g1,8334:7579210,9132719 -h1,8334:10424521,9132719:0,0,0 -k1,8334:32583029,9132719:22158508 -g1,8334:32583029,9132719 -) -(1,8334:6630773,9798897:25952256,388497,0 -h1,8334:6630773,9798897:0,0,0 -g1,8334:7579210,9798897 -g1,8334:7895356,9798897 -g1,8334:8211502,9798897 -g1,8334:8527648,9798897 -g1,8334:8843794,9798897 -g1,8334:9159940,9798897 -g1,8334:9476086,9798897 -g1,8334:9792232,9798897 -g1,8334:10108378,9798897 -h1,8334:10424524,9798897:0,0,0 -k1,8334:32583028,9798897:22158504 -g1,8334:32583028,9798897 -) -] -) -g1,8335:32583029,9798897 -g1,8335:6630773,9798897 -g1,8335:6630773,9798897 -g1,8335:32583029,9798897 -g1,8335:32583029,9798897 -) -h1,8335:6630773,9995505:0,0,0 -(1,8339:6630773,11361281:25952256,513147,126483 -h1,8338:6630773,11361281:983040,0,0 -g1,8338:9836794,11361281 -g1,8338:12373692,11361281 -g1,8338:14583566,11361281 -g1,8338:17368190,11361281 -g1,8338:18758864,11361281 -(1,8338:18758864,11361281:0,452978,115847 -r1,8393:20523977,11361281:1765113,568825,115847 -k1,8338:18758864,11361281:-1765113 -) -(1,8338:18758864,11361281:1765113,452978,115847 -k1,8338:18758864,11361281:3277 -h1,8338:20520700,11361281:0,411205,112570 -) -g1,8338:20723206,11361281 -g1,8338:22113880,11361281 -(1,8338:22113880,11361281:0,452978,122846 -r1,8393:24230705,11361281:2116825,575824,122846 -k1,8338:22113880,11361281:-2116825 -) -(1,8338:22113880,11361281:2116825,452978,122846 -k1,8338:22113880,11361281:3277 -h1,8338:24227428,11361281:0,411205,112570 -) -g1,8338:24429934,11361281 -g1,8338:25620723,11361281 -g1,8338:28651763,11361281 -g1,8338:29467030,11361281 -k1,8339:32583029,11361281:1203003 -g1,8339:32583029,11361281 -) -v1,8341:6630773,12551747:0,393216,0 -(1,8351:6630773,15430369:25952256,3271838,196608 -g1,8351:6630773,15430369 -g1,8351:6630773,15430369 -g1,8351:6434165,15430369 -(1,8351:6434165,15430369:0,3271838,196608 -r1,8393:32779637,15430369:26345472,3468446,196608 -k1,8351:6434165,15430369:-26345472 -) -(1,8351:6434165,15430369:26345472,3271838,196608 -[1,8351:6630773,15430369:25952256,3075230,0 -(1,8343:6630773,12765657:25952256,410518,107478 -(1,8342:6630773,12765657:0,0,0 -g1,8342:6630773,12765657 -g1,8342:6630773,12765657 -g1,8342:6303093,12765657 -(1,8342:6303093,12765657:0,0,0 -) -g1,8342:6630773,12765657 -) -k1,8343:6630773,12765657:0 -g1,8343:9476085,12765657 -g1,8343:10108377,12765657 -g1,8343:17063583,12765657 -g1,8343:18960457,12765657 -g1,8343:19592749,12765657 -g1,8343:21173478,12765657 -g1,8343:23386498,12765657 -g1,8343:24018790,12765657 -h1,8343:25283373,12765657:0,0,0 -k1,8343:32583029,12765657:7299656 -g1,8343:32583029,12765657 -) -(1,8344:6630773,13431835:25952256,410518,107478 -h1,8344:6630773,13431835:0,0,0 -g1,8344:10424522,13431835 -g1,8344:11056814,13431835 -g1,8344:12953689,13431835 -g1,8344:14534418,13431835 -g1,8344:15166710,13431835 -h1,8344:18012021,13431835:0,0,0 -k1,8344:32583029,13431835:14571008 -g1,8344:32583029,13431835 -) -(1,8345:6630773,14098013:25952256,410518,76021 -h1,8345:6630773,14098013:0,0,0 -k1,8345:6630773,14098013:0 -h1,8345:9476084,14098013:0,0,0 -k1,8345:32583028,14098013:23106944 -g1,8345:32583028,14098013 -) -(1,8350:6630773,14764191:25952256,410518,101187 -(1,8347:6630773,14764191:0,0,0 -g1,8347:6630773,14764191 -g1,8347:6630773,14764191 -g1,8347:6303093,14764191 -(1,8347:6303093,14764191:0,0,0 -) -g1,8347:6630773,14764191 -) -g1,8350:7579210,14764191 -h1,8350:10424521,14764191:0,0,0 -k1,8350:32583029,14764191:22158508 -g1,8350:32583029,14764191 -) -(1,8350:6630773,15430369:25952256,388497,0 -h1,8350:6630773,15430369:0,0,0 -g1,8350:7579210,15430369 -g1,8350:7895356,15430369 -g1,8350:8211502,15430369 -g1,8350:8527648,15430369 -g1,8350:8843794,15430369 -g1,8350:9159940,15430369 -g1,8350:9476086,15430369 -g1,8350:9792232,15430369 -g1,8350:10108378,15430369 -h1,8350:10424524,15430369:0,0,0 -k1,8350:32583028,15430369:22158504 -g1,8350:32583028,15430369 -) -] -) -g1,8351:32583029,15430369 -g1,8351:6630773,15430369 -g1,8351:6630773,15430369 -g1,8351:32583029,15430369 -g1,8351:32583029,15430369 -) -h1,8351:6630773,15626977:0,0,0 -(1,8356:6630773,16992753:25952256,513147,126483 -h1,8354:6630773,16992753:983040,0,0 -k1,8354:9040793,16992753:230293 -k1,8354:12255597,16992753:230294 -k1,8354:13145182,16992753:230293 -k1,8354:15223591,16992753:230294 -k1,8354:17612640,16992753:230293 -k1,8354:18494362,16992753:230294 -k1,8354:19080515,16992753:230293 -k1,8354:22069875,16992753:230294 -k1,8354:24307536,16992753:230293 -k1,8354:25069327,16992753:230294 -k1,8354:26812846,16992753:230293 -k1,8354:27659178,16992753:230294 -k1,8354:29323399,16992753:230293 -k1,8354:30142206,16992753:230294 -k1,8355:31563944,16992753:230293 -k1,8355:32583029,16992753:0 -) -(1,8356:6630773,17834241:25952256,513147,126483 -k1,8355:9443780,17834241:147002 -k1,8355:10250074,17834241:147002 -k1,8355:11674373,17834241:147002 -k1,8355:15922619,17834241:147003 -k1,8355:16755783,17834241:147002 -k1,8355:18978310,17834241:147002 -k1,8355:21167414,17834241:147002 -k1,8355:21845913,17834241:147002 -k1,8355:23570367,17834241:147002 -k1,8355:26131716,17834241:147003 -k1,8355:26930146,17834241:147002 -k1,8355:28096233,17834241:147002 -k1,8355:30401991,17834241:147002 -k1,8356:32583029,17834241:0 -k1,8356:32583029,17834241:0 -) -v1,8358:6630773,19024707:0,393216,0 -(1,8369:6630773,22569507:25952256,3938016,196608 -g1,8369:6630773,22569507 -g1,8369:6630773,22569507 -g1,8369:6434165,22569507 -(1,8369:6434165,22569507:0,3938016,196608 -r1,8393:32779637,22569507:26345472,4134624,196608 -k1,8369:6434165,22569507:-26345472 -) -(1,8369:6434165,22569507:26345472,3938016,196608 -[1,8369:6630773,22569507:25952256,3741408,0 -(1,8360:6630773,19238617:25952256,410518,107478 -(1,8359:6630773,19238617:0,0,0 -g1,8359:6630773,19238617 -g1,8359:6630773,19238617 -g1,8359:6303093,19238617 -(1,8359:6303093,19238617:0,0,0 -) -g1,8359:6630773,19238617 -) -k1,8360:6630773,19238617:0 -g1,8360:9476085,19238617 -g1,8360:10108377,19238617 -g1,8360:17063583,19238617 -g1,8360:18960457,19238617 -g1,8360:19592749,19238617 -g1,8360:21173478,19238617 -g1,8360:23386498,19238617 -g1,8360:24018790,19238617 -h1,8360:25283373,19238617:0,0,0 -k1,8360:32583029,19238617:7299656 -g1,8360:32583029,19238617 -) -(1,8361:6630773,19904795:25952256,404226,101187 -h1,8361:6630773,19904795:0,0,0 -g1,8361:9792230,19904795 -g1,8361:10424522,19904795 -g1,8361:12637542,19904795 -g1,8361:14218271,19904795 -g1,8361:14850563,19904795 -h1,8361:16431291,19904795:0,0,0 -k1,8361:32583029,19904795:16151738 -g1,8361:32583029,19904795 -) -(1,8362:6630773,20570973:25952256,404226,101187 -h1,8362:6630773,20570973:0,0,0 -g1,8362:8843794,20570973 -g1,8362:9476086,20570973 -g1,8362:10740669,20570973 -g1,8362:11372961,20570973 -g1,8362:12005253,20570973 -g1,8362:13585982,20570973 -g1,8362:15799002,20570973 -g1,8362:16431294,20570973 -g1,8362:18328168,20570973 -g1,8362:20225042,20570973 -g1,8362:21173479,20570973 -g1,8362:22121916,20570973 -h1,8362:24334936,20570973:0,0,0 -k1,8362:32583029,20570973:8248093 -g1,8362:32583029,20570973 -) -(1,8363:6630773,21237151:25952256,410518,76021 -h1,8363:6630773,21237151:0,0,0 -k1,8363:6630773,21237151:0 -h1,8363:9476084,21237151:0,0,0 -k1,8363:32583028,21237151:23106944 -g1,8363:32583028,21237151 -) -(1,8368:6630773,21903329:25952256,410518,101187 -(1,8365:6630773,21903329:0,0,0 -g1,8365:6630773,21903329 -g1,8365:6630773,21903329 -g1,8365:6303093,21903329 -(1,8365:6303093,21903329:0,0,0 -) -g1,8365:6630773,21903329 -) -g1,8368:7579210,21903329 -h1,8368:10424521,21903329:0,0,0 -k1,8368:32583029,21903329:22158508 -g1,8368:32583029,21903329 -) -(1,8368:6630773,22569507:25952256,388497,0 -h1,8368:6630773,22569507:0,0,0 -g1,8368:7579210,22569507 -g1,8368:7895356,22569507 -g1,8368:8211502,22569507 -g1,8368:8527648,22569507 -g1,8368:8843794,22569507 -g1,8368:9159940,22569507 -g1,8368:9476086,22569507 -g1,8368:9792232,22569507 -g1,8368:10108378,22569507 -h1,8368:10424524,22569507:0,0,0 -k1,8368:32583028,22569507:22158504 -g1,8368:32583028,22569507 -) -] -) -g1,8369:32583029,22569507 -g1,8369:6630773,22569507 -g1,8369:6630773,22569507 -g1,8369:32583029,22569507 -g1,8369:32583029,22569507 -) -h1,8369:6630773,22766115:0,0,0 -v1,8373:6630773,24656179:0,393216,0 -(1,8374:6630773,27583609:25952256,3320646,0 -g1,8374:6630773,27583609 -g1,8374:6303093,27583609 -r1,8393:6401397,27583609:98304,3320646,0 -g1,8374:6600626,27583609 -g1,8374:6797234,27583609 -[1,8374:6797234,27583609:25785795,3320646,0 -(1,8374:6797234,25051282:25785795,788319,218313 -(1,8373:6797234,25051282:0,788319,218313 -r1,8393:7917113,25051282:1119879,1006632,218313 -k1,8373:6797234,25051282:-1119879 -) -(1,8373:6797234,25051282:1119879,788319,218313 -) -k1,8373:8132079,25051282:214966 -k1,8373:8459759,25051282:327680 -k1,8373:10055569,25051282:214966 -k1,8373:10802033,25051282:214967 -k1,8373:12083270,25051282:214966 -k1,8373:13317321,25051282:214966 -k1,8373:14907888,25051282:214966 -k1,8373:18107364,25051282:214966 -k1,8373:21279970,25051282:214966 -k1,8373:22312826,25051282:214967 -k1,8373:23396144,25051282:214966 -k1,8373:24743572,25051282:214966 -k1,8373:25983521,25051282:214966 -k1,8373:26814525,25051282:214966 -k1,8373:29447115,25051282:214967 -h1,8373:29845574,25051282:0,0,0 -k1,8373:30060540,25051282:214966 -k1,8373:31084876,25051282:214966 -k1,8373:32583029,25051282:0 -) -(1,8374:6797234,25892770:25785795,513147,134348 -h1,8373:7992611,25892770:0,0,0 -k1,8373:8385477,25892770:219196 -k1,8373:9375376,25892770:219196 -k1,8373:12981474,25892770:219197 -k1,8373:16185180,25892770:219196 -k1,8373:16935873,25892770:219196 -k1,8373:17806497,25892770:219196 -k1,8373:19668025,25892770:219196 -k1,8373:20243082,25892770:219197 -k1,8373:21649790,25892770:219196 -k1,8373:23792467,25892770:219196 -k1,8373:24697825,25892770:219196 -k1,8373:25272881,25892770:219196 -k1,8373:26485604,25892770:219197 -k1,8373:27364092,25892770:219196 -k1,8373:30206694,25892770:219196 -k1,8374:32583029,25892770:0 -) -(1,8374:6797234,26734258:25785795,505283,134348 -k1,8373:8812153,26734258:250690 -k1,8373:10347349,26734258:250690 -k1,8373:11129536,26734258:250690 -k1,8373:12833814,26734258:250689 -k1,8373:15959568,26734258:250690 -k1,8373:16896420,26734258:250690 -k1,8373:17502970,26734258:250690 -k1,8373:19636509,26734258:250690 -k1,8373:20696569,26734258:250690 -k1,8373:21303119,26734258:250690 -k1,8373:24503583,26734258:250689 -k1,8373:26761641,26734258:250690 -k1,8373:27773859,26734258:250690 -k1,8373:30114492,26734258:250690 -(1,8373:30114492,26734258:0,452978,115847 -r1,8393:32583029,26734258:2468537,568825,115847 -k1,8373:30114492,26734258:-2468537 -) -(1,8373:30114492,26734258:2468537,452978,115847 -k1,8373:30114492,26734258:3277 -h1,8373:32579752,26734258:0,411205,112570 -) -k1,8373:32583029,26734258:0 -) -(1,8374:6797234,27575746:25785795,355205,7863 -k1,8374:32583029,27575746:24121836 -g1,8374:32583029,27575746 -) -] -g1,8374:32583029,27583609 -) -h1,8374:6630773,27583609:0,0,0 -(1,8377:6630773,30915465:25952256,32768,229376 -(1,8377:6630773,30915465:0,32768,229376 -(1,8377:6630773,30915465:5505024,32768,229376 -r1,8393:12135797,30915465:5505024,262144,229376 -) -k1,8377:6630773,30915465:-5505024 -) -(1,8377:6630773,30915465:25952256,32768,0 -r1,8393:32583029,30915465:25952256,32768,0 -) -) -(1,8377:6630773,32519793:25952256,606339,161218 -(1,8377:6630773,32519793:1974731,582746,14155 -g1,8377:6630773,32519793 -g1,8377:8605504,32519793 -) -g1,8377:11813360,32519793 -k1,8377:32583030,32519793:17773364 -g1,8377:32583030,32519793 -) -(1,8380:6630773,33754497:25952256,513147,134348 -k1,8378:7858919,33754497:186124 -k1,8378:10320453,33754497:186124 -k1,8378:12909127,33754497:186124 -k1,8378:13904621,33754497:186124 -k1,8378:15109830,33754497:186124 -k1,8378:17670979,33754497:186124 -k1,8378:18524259,33754497:186124 -k1,8378:19125213,33754497:186111 -k1,8378:22440681,33754497:186124 -k1,8378:23242843,33754497:186124 -k1,8378:24448052,33754497:186124 -k1,8378:26978399,33754497:186124 -k1,8378:29755817,33754497:186124 -k1,8379:30154920,33754497:186111 -k1,8379:32583029,33754497:0 -) -(1,8380:6630773,34595985:25952256,513147,134348 -k1,8379:7826196,34595985:176338 -k1,8379:9914876,34595985:176339 -k1,8379:10540791,34595985:176338 -k1,8379:15107387,34595985:176339 -k1,8379:16207783,34595985:176338 -k1,8379:17918320,34595985:176339 -k1,8379:20374656,34595985:176338 -k1,8379:22270004,34595985:176338 -k1,8379:24247272,34595985:176339 -k1,8379:25615055,34595985:176338 -k1,8379:26978906,34595985:176339 -k1,8379:28185470,34595985:176338 -k1,8379:28977847,34595985:176339 -k1,8379:29603762,34595985:176338 -k1,8380:32583029,34595985:0 -) -(1,8380:6630773,35437473:25952256,513147,134348 -g1,8379:8619790,35437473 -g1,8379:9308573,35437473 -g1,8379:11030203,35437473 -g1,8379:11845470,35437473 -g1,8379:15075084,35437473 -g1,8379:18056316,35437473 -g1,8379:20386776,35437473 -g1,8379:23054746,35437473 -k1,8380:32583029,35437473:7553683 -g1,8380:32583029,35437473 -) -] -(1,8393:32583029,45706769:0,0,0 -g1,8393:32583029,45706769 -) -) -] -(1,8393:6630773,47279633:25952256,0,0 -h1,8393:6630773,47279633:25952256,0,0 -) -] -(1,8393:4262630,4025873:0,0,0 -[1,8393:-473656,4025873:0,0,0 -(1,8393:-473656,-710413:0,0,0 -(1,8393:-473656,-710413:0,0,0 -g1,8393:-473656,-710413 ) -g1,8393:-473656,-710413 +k1,7419:3078556,49800853:-34777008 ) -] -) -] -!17844 -}137 +] +g1,7419:6630773,4812305 +g1,7419:6630773,4812305 +g1,7419:8364200,4812305 +g1,7419:10765439,4812305 +k1,7419:31786111,4812305:21020672 +) +) +] +[1,7419:6630773,45706769:25952256,40108032,0 +(1,7419:6630773,45706769:25952256,40108032,0 +(1,7419:6630773,45706769:0,0,0 +g1,7419:6630773,45706769 +) +[1,7419:6630773,45706769:25952256,40108032,0 +v1,7261:6630773,6254097:0,393216,0 +(1,7262:6630773,9305540:25952256,3444659,0 +g1,7262:6630773,9305540 +g1,7262:6237557,9305540 +r1,7419:6368629,9305540:131072,3444659,0 +g1,7262:6567858,9305540 +g1,7262:6764466,9305540 +[1,7262:6764466,9305540:25818563,3444659,0 +(1,7262:6764466,6615274:25818563,754393,260573 +(1,7261:6764466,6615274:0,754393,260573 +r1,7419:8010564,6615274:1246098,1014966,260573 +k1,7261:6764466,6615274:-1246098 +) +(1,7261:6764466,6615274:1246098,754393,260573 +) +k1,7261:8338768,6615274:328204 +k1,7261:8666448,6615274:327680 +k1,7261:9622487,6615274:328204 +k1,7261:12581962,6615274:328204 +k1,7261:13561593,6615274:328203 +k1,7261:16623304,6615274:328204 +k1,7261:18142953,6615274:328204 +k1,7261:19860520,6615274:328204 +k1,7261:22568992,6615274:328204 +k1,7261:23916281,6615274:328204 +k1,7261:27459025,6615274:328203 +k1,7261:30533843,6615274:328204 +(1,7261:30533843,6615274:0,452978,115847 +r1,7419:31595533,6615274:1061690,568825,115847 +k1,7261:30533843,6615274:-1061690 +) +(1,7261:30533843,6615274:1061690,452978,115847 +g1,7261:31240544,6615274 +h1,7261:31592256,6615274:0,411205,112570 +) +k1,7261:31923737,6615274:328204 +k1,7261:32583029,6615274:0 +) +(1,7262:6764466,7480354:25818563,513147,134348 +k1,7261:12082057,7480354:138936 +k1,7261:12837032,7480354:138937 +k1,7261:15556120,7480354:138936 +k1,7261:18512448,7480354:138936 +k1,7261:20406439,7480354:138937 +k1,7261:23632121,7480354:138936 +k1,7261:26549785,7480354:138937 +k1,7261:30441312,7480354:138936 +k1,7261:32583029,7480354:0 +) +(1,7262:6764466,8345434:25818563,513147,134348 +k1,7261:8235093,8345434:203161 +k1,7261:10746433,8345434:203162 +k1,7261:12181671,8345434:203161 +k1,7261:14663520,8345434:203162 +h1,7261:16206238,8345434:0,0,0 +k1,7261:16409399,8345434:203161 +k1,7261:17421930,8345434:203161 +k1,7261:19123245,8345434:203162 +h1,7261:20318622,8345434:0,0,0 +k1,7261:20521783,8345434:203161 +k1,7261:21672595,8345434:203161 +k1,7261:23993225,8345434:203162 +k1,7261:25005756,8345434:203161 +k1,7261:26228003,8345434:203162 +k1,7261:29947826,8345434:203161 +k1,7261:32583029,8345434:0 +) +(1,7262:6764466,9210514:25818563,513147,95026 +g1,7261:8353058,9210514 +g1,7261:10758884,9210514 +g1,7261:12149558,9210514 +k1,7262:32583029,9210514:17910990 +g1,7262:32583029,9210514 +) +] +g1,7262:32583029,9305540 +) +h1,7262:6630773,9305540:0,0,0 +v1,7265:6630773,10170620:0,393216,0 +(1,7419:6630773,44762367:25952256,34984963,0 +g1,7419:6630773,44762367 +g1,7419:6237557,44762367 +r1,7419:6368629,44762367:131072,34984963,0 +g1,7419:6567858,44762367 +g1,7419:6764466,44762367 +[1,7419:6764466,44762367:25818563,34984963,0 +(1,7266:6764466,10478918:25818563,701514,196608 +(1,7265:6764466,10478918:0,701514,196608 +r1,7419:8863446,10478918:2098980,898122,196608 +k1,7265:6764466,10478918:-2098980 +) +(1,7265:6764466,10478918:2098980,701514,196608 +) +k1,7265:9151102,10478918:287656 +k1,7265:10469031,10478918:327680 +k1,7265:13100254,10478918:287656 +k1,7265:14777273,10478918:287656 +k1,7265:17271526,10478918:287656 +k1,7265:18550742,10478918:287656 +k1,7265:21188520,10478918:287657 +k1,7265:23043797,10478918:287656 +k1,7265:24655280,10478918:287656 +k1,7265:25625821,10478918:287656 +k1,7265:26675005,10478918:287656 +k1,7265:29390115,10478918:287656 +k1,7265:32583029,10478918:0 +) +(1,7266:6764466,11343998:25818563,513147,126483 +k1,7265:9228418,11343998:155774 +k1,7265:10575637,11343998:155774 +k1,7265:12955703,11343998:155774 +k1,7265:13762905,11343998:155774 +k1,7265:14937764,11343998:155774 +k1,7265:19304226,11343998:155774 +k1,7265:19929893,11343998:155774 +k1,7265:20617164,11343998:155774 +k1,7265:22058754,11343998:155774 +k1,7265:24844488,11343998:155774 +k1,7265:25651690,11343998:155774 +k1,7265:28831295,11343998:155774 +k1,7265:30376432,11343998:155774 +k1,7265:32583029,11343998:0 +) +(1,7266:6764466,12209078:25818563,513147,134348 +k1,7265:9482965,12209078:239927 +k1,7265:11290513,12209078:239927 +k1,7265:14437618,12209078:239928 +k1,7265:16379515,12209078:239927 +k1,7265:18008805,12209078:239927 +k1,7265:20455329,12209078:239927 +k1,7265:21886701,12209078:239927 +k1,7265:24285385,12209078:239928 +k1,7265:26833490,12209078:239927 +k1,7265:28264862,12209078:239927 +k1,7265:32583029,12209078:0 +) +(1,7266:6764466,13074158:25818563,513147,134348 +k1,7265:7620311,13074158:196553 +k1,7265:9629591,13074158:196554 +k1,7265:10453979,13074158:196553 +k1,7265:12347259,13074158:196553 +k1,7265:14241195,13074158:196554 +k1,7265:17664741,13074158:196553 +k1,7265:20472904,13074158:196553 +k1,7265:23112640,13074158:196554 +k1,7265:26692161,13074158:196553 +k1,7265:27842263,13074158:196553 +k1,7265:29318735,13074158:196554 +k1,7265:30890889,13074158:196553 +k1,7265:32583029,13074158:0 +) +(1,7266:6764466,13939238:25818563,505283,126483 +g1,7265:9955414,13939238 +g1,7265:11726196,13939238 +g1,7265:12611587,13939238 +g1,7265:13829901,13939238 +g1,7265:16146598,13939238 +g1,7265:17337387,13939238 +g1,7265:18815223,13939238 +g1,7265:22104475,13939238 +g1,7265:22919742,13939238 +(1,7265:22919742,13939238:0,459977,115847 +r1,7419:28553685,13939238:5633943,575824,115847 +k1,7265:22919742,13939238:-5633943 +) +(1,7265:22919742,13939238:5633943,459977,115847 +k1,7265:22919742,13939238:3277 +h1,7265:28550408,13939238:0,411205,112570 +) +k1,7266:32583029,13939238:3855674 +g1,7266:32583029,13939238 +) +(1,7268:6764466,14804318:25818563,513147,102891 +h1,7267:6764466,14804318:983040,0,0 +k1,7267:8908570,14804318:207515 +k1,7267:10208570,14804318:207515 +k1,7267:10771945,14804318:207515 +k1,7267:13138216,14804318:207515 +k1,7267:15965860,14804318:207515 +k1,7267:18324922,14804318:207515 +k1,7267:19723883,14804318:207516 +k1,7267:20287258,14804318:207515 +k1,7267:22562434,14804318:207515 +k1,7267:23966636,14804318:207515 +k1,7267:26242467,14804318:207515 +k1,7267:27441542,14804318:207515 +k1,7267:29788808,14804318:207515 +k1,7267:31563944,14804318:207515 +k1,7267:32583029,14804318:0 +) +(1,7268:6764466,15669398:25818563,513147,126483 +k1,7267:8891344,15669398:149001 +k1,7267:9691772,15669398:149000 +k1,7267:10859858,15669398:149001 +k1,7267:12543057,15669398:149001 +k1,7267:13351349,15669398:149000 +k1,7267:14519435,15669398:149001 +k1,7267:16057799,15669398:149001 +k1,7267:18256765,15669398:149000 +k1,7267:20877784,15669398:149001 +(1,7267:20877784,15669398:0,459977,115847 +r1,7419:26511727,15669398:5633943,575824,115847 +k1,7267:20877784,15669398:-5633943 +) +(1,7267:20877784,15669398:5633943,459977,115847 +k1,7267:20877784,15669398:3277 +h1,7267:26508450,15669398:0,411205,112570 +) +k1,7267:26660728,15669398:149001 +k1,7267:27757379,15669398:149000 +k1,7267:28677083,15669398:149001 +k1,7268:32583029,15669398:0 +k1,7268:32583029,15669398:0 +) +v1,7270:6764466,16354253:0,393216,0 +(1,7290:6764466,23910278:25818563,7949241,196608 +g1,7290:6764466,23910278 +g1,7290:6764466,23910278 +g1,7290:6567858,23910278 +(1,7290:6567858,23910278:0,7949241,196608 +r1,7419:32779637,23910278:26211779,8145849,196608 +k1,7290:6567857,23910278:-26211780 +) +(1,7290:6567858,23910278:26211779,7949241,196608 +[1,7290:6764466,23910278:25818563,7752633,0 +(1,7272:6764466,16588690:25818563,431045,106246 +(1,7271:6764466,16588690:0,0,0 +g1,7271:6764466,16588690 +g1,7271:6764466,16588690 +g1,7271:6436786,16588690 +(1,7271:6436786,16588690:0,0,0 +) +g1,7271:6764466,16588690 +) +g1,7272:10084005,16588690 +g1,7272:11079867,16588690 +g1,7272:13071591,16588690 +g1,7272:13735499,16588690 +g1,7272:14731361,16588690 +g1,7272:16059177,16588690 +g1,7272:16723085,16588690 +g1,7272:17718947,16588690 +g1,7272:19710671,16588690 +g1,7272:20374579,16588690 +g1,7272:21370441,16588690 +g1,7272:23030211,16588690 +g1,7272:23694119,16588690 +h1,7272:24358027,16588690:0,0,0 +k1,7272:32583029,16588690:8225002 +g1,7272:32583029,16588690 +) +(1,7273:6764466,17273545:25818563,431045,106246 +h1,7273:6764466,17273545:0,0,0 +g1,7273:10084005,17273545 +g1,7273:11079867,17273545 +g1,7273:16059176,17273545 +g1,7273:17055038,17273545 +g1,7273:18050900,17273545 +h1,7273:19046762,17273545:0,0,0 +k1,7273:32583029,17273545:13536267 +g1,7273:32583029,17273545 +) +(1,7274:6764466,17958400:25818563,431045,106246 +h1,7274:6764466,17958400:0,0,0 +g1,7274:8092282,17958400 +g1,7274:9088144,17958400 +g1,7274:16391130,17958400 +h1,7274:19710669,17958400:0,0,0 +k1,7274:32583029,17958400:12872360 +g1,7274:32583029,17958400 +) +(1,7275:6764466,18643255:25818563,431045,6605 +h1,7275:6764466,18643255:0,0,0 +h1,7275:7760328,18643255:0,0,0 +k1,7275:32583028,18643255:24822700 +g1,7275:32583028,18643255 +) +(1,7283:6764466,19459182:25818563,431045,106246 +(1,7277:6764466,19459182:0,0,0 +g1,7277:6764466,19459182 +g1,7277:6764466,19459182 +g1,7277:6436786,19459182 +(1,7277:6436786,19459182:0,0,0 +) +g1,7277:6764466,19459182 +) +g1,7283:7760328,19459182 +g1,7283:8092282,19459182 +g1,7283:8424236,19459182 +g1,7283:8756190,19459182 +g1,7283:9088144,19459182 +g1,7283:9420098,19459182 +g1,7283:9752052,19459182 +g1,7283:13071591,19459182 +h1,7283:16059176,19459182:0,0,0 +k1,7283:32583029,19459182:16523853 +g1,7283:32583029,19459182 +) +(1,7283:6764466,20144037:25818563,407923,6605 +h1,7283:6764466,20144037:0,0,0 +g1,7283:7760328,20144037 +g1,7283:9088144,20144037 +g1,7283:9420098,20144037 +g1,7283:9752052,20144037 +g1,7283:10084006,20144037 +g1,7283:10415960,20144037 +g1,7283:10747914,20144037 +g1,7283:11079868,20144037 +g1,7283:11411822,20144037 +g1,7283:11743776,20144037 +g1,7283:12075730,20144037 +g1,7283:12407684,20144037 +g1,7283:13071592,20144037 +g1,7283:13403546,20144037 +g1,7283:13735500,20144037 +g1,7283:14067454,20144037 +g1,7283:14399408,20144037 +g1,7283:14731362,20144037 +g1,7283:15063316,20144037 +g1,7283:15395270,20144037 +g1,7283:15727224,20144037 +h1,7283:16059178,20144037:0,0,0 +k1,7283:32583029,20144037:16523851 +g1,7283:32583029,20144037 +) +(1,7283:6764466,20828892:25818563,407923,6605 +h1,7283:6764466,20828892:0,0,0 +g1,7283:7760328,20828892 +g1,7283:9088144,20828892 +g1,7283:9420098,20828892 +g1,7283:9752052,20828892 +g1,7283:10084006,20828892 +g1,7283:10415960,20828892 +g1,7283:10747914,20828892 +g1,7283:11079868,20828892 +g1,7283:11411822,20828892 +g1,7283:11743776,20828892 +g1,7283:12075730,20828892 +g1,7283:12407684,20828892 +g1,7283:13071592,20828892 +g1,7283:13403546,20828892 +g1,7283:13735500,20828892 +g1,7283:14067454,20828892 +g1,7283:14399408,20828892 +g1,7283:14731362,20828892 +g1,7283:15063316,20828892 +g1,7283:15395270,20828892 +g1,7283:15727224,20828892 +h1,7283:16059178,20828892:0,0,0 +k1,7283:32583029,20828892:16523851 +g1,7283:32583029,20828892 +) +(1,7283:6764466,21513747:25818563,424439,9908 +h1,7283:6764466,21513747:0,0,0 +g1,7283:7760328,21513747 +g1,7283:9752052,21513747 +g1,7283:10084006,21513747 +g1,7283:10415960,21513747 +g1,7283:10747914,21513747 +g1,7283:11079868,21513747 +g1,7283:11411822,21513747 +g1,7283:11743776,21513747 +g1,7283:12075730,21513747 +g1,7283:12407684,21513747 +g1,7283:13071592,21513747 +g1,7283:13403546,21513747 +g1,7283:13735500,21513747 +g1,7283:14067454,21513747 +g1,7283:14399408,21513747 +g1,7283:14731362,21513747 +g1,7283:15063316,21513747 +g1,7283:15395270,21513747 +g1,7283:15727224,21513747 +h1,7283:16059178,21513747:0,0,0 +k1,7283:32583029,21513747:16523851 +g1,7283:32583029,21513747 +) +(1,7283:6764466,22198602:25818563,431045,6605 +h1,7283:6764466,22198602:0,0,0 +g1,7283:7760328,22198602 +g1,7283:9420098,22198602 +g1,7283:9752052,22198602 +g1,7283:10084006,22198602 +g1,7283:10415960,22198602 +g1,7283:10747914,22198602 +g1,7283:11079868,22198602 +g1,7283:11411822,22198602 +g1,7283:11743776,22198602 +g1,7283:12075730,22198602 +g1,7283:12407684,22198602 +g1,7283:13071592,22198602 +g1,7283:13403546,22198602 +g1,7283:13735500,22198602 +g1,7283:14067454,22198602 +g1,7283:14399408,22198602 +g1,7283:14731362,22198602 +g1,7283:15063316,22198602 +g1,7283:15395270,22198602 +g1,7283:15727224,22198602 +h1,7283:16059178,22198602:0,0,0 +k1,7283:32583029,22198602:16523851 +g1,7283:32583029,22198602 +) +(1,7285:6764466,23014529:25818563,431045,106246 +(1,7284:6764466,23014529:0,0,0 +g1,7284:6764466,23014529 +g1,7284:6764466,23014529 +g1,7284:6436786,23014529 +(1,7284:6436786,23014529:0,0,0 +) +g1,7284:6764466,23014529 +) +h1,7285:11079867,23014529:0,0,0 +k1,7285:32583029,23014529:21503162 +g1,7285:32583029,23014529 +) +(1,7289:6764466,23830456:25818563,424439,79822 +(1,7287:6764466,23830456:0,0,0 +g1,7287:6764466,23830456 +g1,7287:6764466,23830456 +g1,7287:6436786,23830456 +(1,7287:6436786,23830456:0,0,0 +) +g1,7287:6764466,23830456 +) +g1,7289:7760328,23830456 +g1,7289:9088144,23830456 +g1,7289:9752052,23830456 +g1,7289:10415960,23830456 +g1,7289:11079868,23830456 +h1,7289:11411822,23830456:0,0,0 +k1,7289:32583030,23830456:21171208 +g1,7289:32583030,23830456 +) +] +) +g1,7290:32583029,23910278 +g1,7290:6764466,23910278 +g1,7290:6764466,23910278 +g1,7290:32583029,23910278 +g1,7290:32583029,23910278 +) +h1,7290:6764466,24106886:0,0,0 +(1,7294:6764466,24971966:25818563,513147,126483 +h1,7293:6764466,24971966:983040,0,0 +k1,7293:8487406,24971966:262143 +k1,7293:9617902,24971966:262144 +k1,7293:12178393,24971966:262143 +k1,7293:13459622,24971966:262144 +k1,7293:15699642,24971966:262143 +k1,7293:17355737,24971966:262144 +k1,7293:18536695,24971966:262143 +k1,7293:21259060,24971966:262143 +k1,7293:24216700,24971966:262144 +(1,7293:24216700,24971966:0,452978,115847 +r1,7419:25278389,24971966:1061689,568825,115847 +k1,7293:24216700,24971966:-1061689 +) +(1,7293:24216700,24971966:1061689,452978,115847 +k1,7293:24216700,24971966:3277 +h1,7293:25275112,24971966:0,411205,112570 +) +k1,7293:25540532,24971966:262143 +k1,7293:26821761,24971966:262144 +k1,7293:29152220,24971966:262143 +k1,7293:30405924,24971966:262144 +k1,7293:31734338,24971966:262143 +k1,7294:32583029,24971966:0 +) +(1,7294:6764466,25837046:25818563,513147,134348 +k1,7293:9175817,25837046:271600 +k1,7293:11015038,25837046:271600 +k1,7293:12305722,25837046:271599 +k1,7293:14555199,25837046:271600 +k1,7293:15512961,25837046:271600 +k1,7293:16888843,25837046:271600 +k1,7293:17908209,25837046:271600 +k1,7293:19619634,25837046:271599 +k1,7293:20652762,25837046:271600 +k1,7293:24118587,25837046:271600 +k1,7293:25409272,25837046:271600 +k1,7293:28063760,25837046:271599 +k1,7293:29902981,25837046:271600 +k1,7293:31193666,25837046:271600 +k1,7293:32583029,25837046:0 +) +(1,7294:6764466,26702126:25818563,513147,7863 +k1,7294:32583028,26702126:23768596 +g1,7294:32583028,26702126 +) +v1,7296:6764466,27386981:0,393216,0 +(1,7315:6764466,34188237:25818563,7194472,196608 +g1,7315:6764466,34188237 +g1,7315:6764466,34188237 +g1,7315:6567858,34188237 +(1,7315:6567858,34188237:0,7194472,196608 +r1,7419:32779637,34188237:26211779,7391080,196608 +k1,7315:6567857,34188237:-26211780 +) +(1,7315:6567858,34188237:26211779,7194472,196608 +[1,7315:6764466,34188237:25818563,6997864,0 +(1,7298:6764466,27621418:25818563,431045,106246 +(1,7297:6764466,27621418:0,0,0 +g1,7297:6764466,27621418 +g1,7297:6764466,27621418 +g1,7297:6436786,27621418 +(1,7297:6436786,27621418:0,0,0 +) +g1,7297:6764466,27621418 +) +g1,7298:8092282,27621418 +g1,7298:9088144,27621418 +g1,7298:16391130,27621418 +k1,7298:16391130,27621418:0 +h1,7298:20706531,27621418:0,0,0 +k1,7298:32583029,27621418:11876498 +g1,7298:32583029,27621418 +) +(1,7299:6764466,28306273:25818563,431045,6605 +h1,7299:6764466,28306273:0,0,0 +h1,7299:7760328,28306273:0,0,0 +k1,7299:32583028,28306273:24822700 +g1,7299:32583028,28306273 +) +(1,7307:6764466,29122200:25818563,431045,106246 +(1,7301:6764466,29122200:0,0,0 +g1,7301:6764466,29122200 +g1,7301:6764466,29122200 +g1,7301:6436786,29122200 +(1,7301:6436786,29122200:0,0,0 +) +g1,7301:6764466,29122200 +) +g1,7307:7760328,29122200 +g1,7307:8092282,29122200 +g1,7307:8424236,29122200 +g1,7307:8756190,29122200 +g1,7307:9088144,29122200 +g1,7307:9420098,29122200 +g1,7307:9752052,29122200 +g1,7307:13071591,29122200 +h1,7307:16059176,29122200:0,0,0 +k1,7307:32583029,29122200:16523853 +g1,7307:32583029,29122200 +) +(1,7307:6764466,29807055:25818563,407923,6605 +h1,7307:6764466,29807055:0,0,0 +g1,7307:7760328,29807055 +g1,7307:9088144,29807055 +g1,7307:9420098,29807055 +g1,7307:9752052,29807055 +g1,7307:10084006,29807055 +g1,7307:10415960,29807055 +g1,7307:10747914,29807055 +g1,7307:11079868,29807055 +g1,7307:11411822,29807055 +g1,7307:11743776,29807055 +g1,7307:12075730,29807055 +g1,7307:12407684,29807055 +g1,7307:13071592,29807055 +g1,7307:13403546,29807055 +g1,7307:13735500,29807055 +g1,7307:14067454,29807055 +g1,7307:14399408,29807055 +g1,7307:14731362,29807055 +g1,7307:15063316,29807055 +g1,7307:15395270,29807055 +g1,7307:15727224,29807055 +h1,7307:16059178,29807055:0,0,0 +k1,7307:32583029,29807055:16523851 +g1,7307:32583029,29807055 +) +(1,7307:6764466,30491910:25818563,407923,6605 +h1,7307:6764466,30491910:0,0,0 +g1,7307:7760328,30491910 +g1,7307:9088144,30491910 +g1,7307:9420098,30491910 +g1,7307:9752052,30491910 +g1,7307:10084006,30491910 +g1,7307:10415960,30491910 +g1,7307:10747914,30491910 +g1,7307:11079868,30491910 +g1,7307:11411822,30491910 +g1,7307:11743776,30491910 +g1,7307:12075730,30491910 +g1,7307:12407684,30491910 +g1,7307:13071592,30491910 +g1,7307:13403546,30491910 +g1,7307:13735500,30491910 +g1,7307:14067454,30491910 +g1,7307:14399408,30491910 +g1,7307:14731362,30491910 +g1,7307:15063316,30491910 +g1,7307:15395270,30491910 +g1,7307:15727224,30491910 +h1,7307:16059178,30491910:0,0,0 +k1,7307:32583029,30491910:16523851 +g1,7307:32583029,30491910 +) +(1,7307:6764466,31176765:25818563,424439,9908 +h1,7307:6764466,31176765:0,0,0 +g1,7307:7760328,31176765 +g1,7307:9752052,31176765 +g1,7307:10084006,31176765 +g1,7307:10415960,31176765 +g1,7307:10747914,31176765 +g1,7307:11079868,31176765 +g1,7307:11411822,31176765 +g1,7307:11743776,31176765 +g1,7307:12075730,31176765 +g1,7307:12407684,31176765 +g1,7307:13071592,31176765 +g1,7307:13403546,31176765 +g1,7307:13735500,31176765 +g1,7307:14067454,31176765 +g1,7307:14399408,31176765 +g1,7307:14731362,31176765 +g1,7307:15063316,31176765 +g1,7307:15395270,31176765 +g1,7307:15727224,31176765 +h1,7307:16059178,31176765:0,0,0 +k1,7307:32583029,31176765:16523851 +g1,7307:32583029,31176765 +) +(1,7307:6764466,31861620:25818563,431045,6605 +h1,7307:6764466,31861620:0,0,0 +g1,7307:7760328,31861620 +g1,7307:9420098,31861620 +g1,7307:9752052,31861620 +g1,7307:10084006,31861620 +g1,7307:10415960,31861620 +g1,7307:10747914,31861620 +g1,7307:11079868,31861620 +g1,7307:11411822,31861620 +g1,7307:11743776,31861620 +g1,7307:12075730,31861620 +g1,7307:12407684,31861620 +g1,7307:13071592,31861620 +g1,7307:13403546,31861620 +g1,7307:13735500,31861620 +g1,7307:14067454,31861620 +g1,7307:14399408,31861620 +g1,7307:14731362,31861620 +g1,7307:15063316,31861620 +g1,7307:15395270,31861620 +g1,7307:15727224,31861620 +h1,7307:16059178,31861620:0,0,0 +k1,7307:32583029,31861620:16523851 +g1,7307:32583029,31861620 +) +(1,7309:6764466,32677547:25818563,431045,106246 +(1,7308:6764466,32677547:0,0,0 +g1,7308:6764466,32677547 +g1,7308:6764466,32677547 +g1,7308:6436786,32677547 +(1,7308:6436786,32677547:0,0,0 +) +g1,7308:6764466,32677547 +) +h1,7309:11079867,32677547:0,0,0 +k1,7309:32583029,32677547:21503162 +g1,7309:32583029,32677547 +) +(1,7314:6764466,33493474:25818563,431045,6605 +(1,7311:6764466,33493474:0,0,0 +g1,7311:6764466,33493474 +g1,7311:6764466,33493474 +g1,7311:6436786,33493474 +(1,7311:6436786,33493474:0,0,0 +) +g1,7311:6764466,33493474 +) +g1,7314:7760328,33493474 +g1,7314:8092282,33493474 +g1,7314:8424236,33493474 +g1,7314:9752052,33493474 +g1,7314:10084006,33493474 +g1,7314:10415960,33493474 +g1,7314:11743776,33493474 +g1,7314:13735500,33493474 +g1,7314:14067454,33493474 +h1,7314:15395270,33493474:0,0,0 +k1,7314:32583030,33493474:17187760 +g1,7314:32583030,33493474 +) +(1,7314:6764466,34178329:25818563,407923,9908 +h1,7314:6764466,34178329:0,0,0 +g1,7314:7760328,34178329 +g1,7314:8092282,34178329 +g1,7314:8424236,34178329 +g1,7314:8756190,34178329 +g1,7314:9088144,34178329 +g1,7314:9752052,34178329 +g1,7314:10084006,34178329 +g1,7314:10415960,34178329 +g1,7314:10747914,34178329 +g1,7314:11079868,34178329 +g1,7314:11743776,34178329 +g1,7314:12075730,34178329 +g1,7314:12407684,34178329 +g1,7314:12739638,34178329 +g1,7314:13071592,34178329 +g1,7314:13735500,34178329 +g1,7314:14067454,34178329 +g1,7314:14399408,34178329 +g1,7314:14731362,34178329 +g1,7314:15063316,34178329 +h1,7314:15395270,34178329:0,0,0 +k1,7314:32583030,34178329:17187760 +g1,7314:32583030,34178329 +) +] +) +g1,7315:32583029,34188237 +g1,7315:6764466,34188237 +g1,7315:6764466,34188237 +g1,7315:32583029,34188237 +g1,7315:32583029,34188237 +) +h1,7315:6764466,34384845:0,0,0 +(1,7319:6764466,35249925:25818563,513147,126483 +h1,7318:6764466,35249925:983040,0,0 +k1,7318:8432971,35249925:207708 +k1,7318:9509031,35249925:207708 +k1,7318:11205063,35249925:207709 +k1,7318:12806722,35249925:207708 +k1,7318:13370290,35249925:207708 +k1,7318:15665320,35249925:207708 +k1,7318:18200211,35249925:207708 +k1,7318:19067212,35249925:207709 +k1,7318:19630780,35249925:207708 +k1,7318:21990035,35249925:207708 +k1,7318:23216828,35249925:207708 +k1,7318:25511858,35249925:207708 +k1,7318:26251063,35249925:207708 +k1,7318:27220300,35249925:207709 +k1,7318:29693588,35249925:207708 +k1,7318:31315563,35249925:207708 +k1,7318:32583029,35249925:0 +) +(1,7319:6764466,36115005:25818563,513147,126483 +k1,7318:9641356,36115005:174185 +k1,7318:12528732,36115005:174185 +k1,7318:13318956,36115005:174186 +k1,7318:14512226,36115005:174185 +k1,7318:16075774,36115005:174185 +k1,7318:18299925,36115005:174185 +k1,7318:18951867,36115005:174185 +k1,7318:20145138,36115005:174186 +k1,7318:22406645,36115005:174185 +k1,7318:23681835,36115005:174185 +k1,7318:24665390,36115005:174185 +k1,7318:27222465,36115005:174186 +k1,7318:29638637,36115005:174185 +k1,7318:31096017,36115005:174185 +k1,7318:32583029,36115005:0 +) +(1,7319:6764466,36980085:25818563,505283,7863 +g1,7318:7955255,36980085 +k1,7319:32583030,36980085:22103984 +g1,7319:32583030,36980085 +) +v1,7321:6764466,37664940:0,393216,0 +(1,7334:6764466,42827736:25818563,5556012,196608 +g1,7334:6764466,42827736 +g1,7334:6764466,42827736 +g1,7334:6567858,42827736 +(1,7334:6567858,42827736:0,5556012,196608 +r1,7419:32779637,42827736:26211779,5752620,196608 +k1,7334:6567857,42827736:-26211780 +) +(1,7334:6567858,42827736:26211779,5556012,196608 +[1,7334:6764466,42827736:25818563,5359404,0 +(1,7323:6764466,37892771:25818563,424439,106246 +(1,7322:6764466,37892771:0,0,0 +g1,7322:6764466,37892771 +g1,7322:6764466,37892771 +g1,7322:6436786,37892771 +(1,7322:6436786,37892771:0,0,0 +) +g1,7322:6764466,37892771 +) +g1,7323:10084005,37892771 +g1,7323:11079867,37892771 +g1,7323:15395269,37892771 +g1,7323:17055039,37892771 +g1,7323:17718947,37892771 +h1,7323:18382855,37892771:0,0,0 +k1,7323:32583029,37892771:14200174 +g1,7323:32583029,37892771 +) +(1,7324:6764466,38577626:25818563,431045,106246 +h1,7324:6764466,38577626:0,0,0 +g1,7324:8092282,38577626 +g1,7324:9088144,38577626 +g1,7324:16391130,38577626 +h1,7324:19710669,38577626:0,0,0 +k1,7324:32583029,38577626:12872360 +g1,7324:32583029,38577626 +) +(1,7325:6764466,39262481:25818563,431045,6605 +h1,7325:6764466,39262481:0,0,0 +h1,7325:7760328,39262481:0,0,0 +k1,7325:32583028,39262481:24822700 +g1,7325:32583028,39262481 +) +(1,7333:6764466,40078408:25818563,431045,106246 +(1,7327:6764466,40078408:0,0,0 +g1,7327:6764466,40078408 +g1,7327:6764466,40078408 +g1,7327:6436786,40078408 +(1,7327:6436786,40078408:0,0,0 +) +g1,7327:6764466,40078408 +) +g1,7333:7760328,40078408 +g1,7333:8092282,40078408 +g1,7333:8424236,40078408 +g1,7333:11743775,40078408 +g1,7333:12739637,40078408 +g1,7333:13735499,40078408 +h1,7333:14399407,40078408:0,0,0 +k1,7333:32583029,40078408:18183622 +g1,7333:32583029,40078408 +) +(1,7333:6764466,40763263:25818563,407923,9908 +h1,7333:6764466,40763263:0,0,0 +g1,7333:7760328,40763263 +g1,7333:8424236,40763263 +g1,7333:8756190,40763263 +g1,7333:9088144,40763263 +g1,7333:9420098,40763263 +g1,7333:9752052,40763263 +g1,7333:10084006,40763263 +g1,7333:10415960,40763263 +g1,7333:10747914,40763263 +g1,7333:11079868,40763263 +g1,7333:11743776,40763263 +g1,7333:12075730,40763263 +g1,7333:12739638,40763263 +g1,7333:13071592,40763263 +g1,7333:13735500,40763263 +g1,7333:14067454,40763263 +h1,7333:14399408,40763263:0,0,0 +k1,7333:32583028,40763263:18183620 +g1,7333:32583028,40763263 +) +(1,7333:6764466,41448118:25818563,407923,9908 +h1,7333:6764466,41448118:0,0,0 +g1,7333:7760328,41448118 +g1,7333:8424236,41448118 +g1,7333:8756190,41448118 +g1,7333:9088144,41448118 +g1,7333:9420098,41448118 +g1,7333:9752052,41448118 +g1,7333:10084006,41448118 +g1,7333:10415960,41448118 +g1,7333:10747914,41448118 +g1,7333:11079868,41448118 +g1,7333:11743776,41448118 +g1,7333:12075730,41448118 +g1,7333:12739638,41448118 +g1,7333:13071592,41448118 +g1,7333:13735500,41448118 +h1,7333:14399408,41448118:0,0,0 +k1,7333:32583028,41448118:18183620 +g1,7333:32583028,41448118 +) +(1,7333:6764466,42132973:25818563,407923,9908 +h1,7333:6764466,42132973:0,0,0 +g1,7333:7760328,42132973 +g1,7333:8424236,42132973 +g1,7333:8756190,42132973 +g1,7333:9088144,42132973 +g1,7333:9420098,42132973 +g1,7333:9752052,42132973 +g1,7333:10084006,42132973 +g1,7333:10415960,42132973 +g1,7333:10747914,42132973 +g1,7333:11079868,42132973 +g1,7333:11743776,42132973 +g1,7333:12075730,42132973 +g1,7333:12739638,42132973 +g1,7333:13071592,42132973 +g1,7333:13735500,42132973 +h1,7333:14399408,42132973:0,0,0 +k1,7333:32583028,42132973:18183620 +g1,7333:32583028,42132973 +) +(1,7333:6764466,42817828:25818563,407923,9908 +h1,7333:6764466,42817828:0,0,0 +g1,7333:7760328,42817828 +g1,7333:8424236,42817828 +g1,7333:8756190,42817828 +g1,7333:9088144,42817828 +g1,7333:9420098,42817828 +g1,7333:9752052,42817828 +g1,7333:10084006,42817828 +g1,7333:10415960,42817828 +g1,7333:10747914,42817828 +g1,7333:11079868,42817828 +g1,7333:11743776,42817828 +g1,7333:12075730,42817828 +g1,7333:12739638,42817828 +g1,7333:13071592,42817828 +g1,7333:13735500,42817828 +h1,7333:14399408,42817828:0,0,0 +k1,7333:32583028,42817828:18183620 +g1,7333:32583028,42817828 +) +] +) +g1,7334:32583029,42827736 +g1,7334:6764466,42827736 +g1,7334:6764466,42827736 +g1,7334:32583029,42827736 +g1,7334:32583029,42827736 +) +h1,7334:6764466,43024344:0,0,0 +(1,7338:6764466,43889424:25818563,513147,126483 +h1,7337:6764466,43889424:983040,0,0 +k1,7337:8420953,43889424:195690 +k1,7337:9484995,43889424:195690 +k1,7337:11979033,43889424:195690 +k1,7337:13193808,43889424:195690 +k1,7337:15476820,43889424:195690 +k1,7337:17066461,43889424:195690 +k1,7337:19957647,43889424:195690 +(1,7337:19957647,43889424:0,452978,115847 +r1,7419:21019336,43889424:1061689,568825,115847 +k1,7337:19957647,43889424:-1061689 +) +(1,7337:19957647,43889424:1061689,452978,115847 +k1,7337:19957647,43889424:3277 +h1,7337:21016059,43889424:0,411205,112570 +) +k1,7337:21388696,43889424:195690 +k1,7337:22042483,43889424:195690 +k1,7337:22769670,43889424:195690 +k1,7337:24031631,43889424:195690 +k1,7337:25815258,43889424:195690 +k1,7337:27202393,43889424:195690 +k1,7337:28417168,43889424:195690 +k1,7337:30495707,43889424:195690 +k1,7337:32583029,43889424:0 +) +(1,7338:6764466,44754504:25818563,513147,7863 +g1,7337:9737179,44754504 +g1,7337:10292268,44754504 +g1,7337:12874386,44754504 +g1,7337:13689653,44754504 +g1,7337:14907967,44754504 +g1,7337:16496559,44754504 +k1,7338:32583029,44754504:14036504 +g1,7338:32583029,44754504 +) +] +g1,7419:32583029,44762367 +) +] +(1,7419:32583029,45706769:0,0,0 +g1,7419:32583029,45706769 +) +) +] +(1,7419:6630773,47279633:25952256,0,0 +h1,7419:6630773,47279633:25952256,0,0 +) +] +(1,7419:4262630,4025873:0,0,0 +[1,7419:-473656,4025873:0,0,0 +(1,7419:-473656,-710413:0,0,0 +(1,7419:-473656,-710413:0,0,0 +g1,7419:-473656,-710413 +) +g1,7419:-473656,-710413 +) +] +) +] +!29890 +}112 !12 -{138 -[1,8418:4262630,47279633:28320399,43253760,11795 -(1,8418:4262630,4025873:0,0,0 -[1,8418:-473656,4025873:0,0,0 -(1,8418:-473656,-710413:0,0,0 -(1,8418:-473656,-644877:0,0,0 -k1,8418:-473656,-644877:-65536 +{113 +[1,7419:4262630,47279633:28320399,43253760,0 +(1,7419:4262630,4025873:0,0,0 +[1,7419:-473656,4025873:0,0,0 +(1,7419:-473656,-710413:0,0,0 +(1,7419:-473656,-644877:0,0,0 +k1,7419:-473656,-644877:-65536 ) -(1,8418:-473656,4736287:0,0,0 -k1,8418:-473656,4736287:5209943 +(1,7419:-473656,4736287:0,0,0 +k1,7419:-473656,4736287:5209943 ) -g1,8418:-473656,-710413 +g1,7419:-473656,-710413 ) ] ) -[1,8418:6630773,47279633:25952256,43253760,11795 -[1,8418:6630773,4812305:25952256,786432,0 -(1,8418:6630773,4812305:25952256,0,0 -(1,8418:6630773,4812305:25952256,0,0 -g1,8418:3078558,4812305 -[1,8418:3078558,4812305:0,0,0 -(1,8418:3078558,2439708:0,1703936,0 -k1,8418:1358238,2439708:-1720320 -(1,8393:1358238,2439708:1720320,1703936,0 -(1,8393:1358238,2439708:1179648,16384,0 -r1,8418:2537886,2439708:1179648,16384,0 +[1,7419:6630773,47279633:25952256,43253760,0 +[1,7419:6630773,4812305:25952256,786432,0 +(1,7419:6630773,4812305:25952256,505283,11795 +(1,7419:6630773,4812305:25952256,505283,11795 +g1,7419:3078558,4812305 +[1,7419:3078558,4812305:0,0,0 +(1,7419:3078558,2439708:0,1703936,0 +k1,7419:1358238,2439708:-1720320 +(1,6148:1358238,2439708:1720320,1703936,0 +(1,6148:1358238,2439708:1179648,16384,0 +r1,7419:2537886,2439708:1179648,16384,0 ) -g1,8393:3062174,2439708 -(1,8393:3062174,2439708:16384,1703936,0 -[1,8393:3062174,2439708:25952256,1703936,0 -(1,8393:3062174,1915420:25952256,1179648,0 -(1,8393:3062174,1915420:16384,1179648,0 -r1,8418:3078558,1915420:16384,1179648,0 +g1,6148:3062174,2439708 +(1,6148:3062174,2439708:16384,1703936,0 +[1,6148:3062174,2439708:25952256,1703936,0 +(1,6148:3062174,1915420:25952256,1179648,0 +(1,6148:3062174,1915420:16384,1179648,0 +r1,7419:3078558,1915420:16384,1179648,0 ) -k1,8393:29014430,1915420:25935872 -g1,8393:29014430,1915420 +k1,6148:29014430,1915420:25935872 +g1,6148:29014430,1915420 ) ] ) ) ) ] -[1,8418:3078558,4812305:0,0,0 -(1,8418:3078558,2439708:0,1703936,0 -g1,8418:29030814,2439708 -g1,8418:36135244,2439708 -(1,8393:36135244,2439708:1720320,1703936,0 -(1,8393:36135244,2439708:16384,1703936,0 -[1,8393:36135244,2439708:25952256,1703936,0 -(1,8393:36135244,1915420:25952256,1179648,0 -(1,8393:36135244,1915420:16384,1179648,0 -r1,8418:36151628,1915420:16384,1179648,0 +[1,7419:3078558,4812305:0,0,0 +(1,7419:3078558,2439708:0,1703936,0 +g1,7419:29030814,2439708 +g1,7419:36135244,2439708 +(1,6148:36135244,2439708:1720320,1703936,0 +(1,6148:36135244,2439708:16384,1703936,0 +[1,6148:36135244,2439708:25952256,1703936,0 +(1,6148:36135244,1915420:25952256,1179648,0 +(1,6148:36135244,1915420:16384,1179648,0 +r1,7419:36151628,1915420:16384,1179648,0 ) -k1,8393:62087500,1915420:25935872 -g1,8393:62087500,1915420 +k1,6148:62087500,1915420:25935872 +g1,6148:62087500,1915420 ) ] ) -g1,8393:36675916,2439708 -(1,8393:36675916,2439708:1179648,16384,0 -r1,8418:37855564,2439708:1179648,16384,0 +g1,6148:36675916,2439708 +(1,6148:36675916,2439708:1179648,16384,0 +r1,7419:37855564,2439708:1179648,16384,0 ) ) -k1,8418:3078556,2439708:-34777008 +k1,7419:3078556,2439708:-34777008 ) ] -[1,8418:3078558,4812305:0,0,0 -(1,8418:3078558,49800853:0,16384,2228224 -k1,8418:1358238,49800853:-1720320 -(1,8393:1358238,49800853:1720320,16384,2228224 -(1,8393:1358238,49800853:1179648,16384,0 -r1,8418:2537886,49800853:1179648,16384,0 +[1,7419:3078558,4812305:0,0,0 +(1,7419:3078558,49800853:0,16384,2228224 +k1,7419:1358238,49800853:-1720320 +(1,6148:1358238,49800853:1720320,16384,2228224 +(1,6148:1358238,49800853:1179648,16384,0 +r1,7419:2537886,49800853:1179648,16384,0 ) -g1,8393:3062174,49800853 -(1,8393:3062174,52029077:16384,1703936,0 -[1,8393:3062174,52029077:25952256,1703936,0 -(1,8393:3062174,51504789:25952256,1179648,0 -(1,8393:3062174,51504789:16384,1179648,0 -r1,8418:3078558,51504789:16384,1179648,0 +g1,6148:3062174,49800853 +(1,6148:3062174,52029077:16384,1703936,0 +[1,6148:3062174,52029077:25952256,1703936,0 +(1,6148:3062174,51504789:25952256,1179648,0 +(1,6148:3062174,51504789:16384,1179648,0 +r1,7419:3078558,51504789:16384,1179648,0 ) -k1,8393:29014430,51504789:25935872 -g1,8393:29014430,51504789 +k1,6148:29014430,51504789:25935872 +g1,6148:29014430,51504789 ) ] ) ) ) ] -[1,8418:3078558,4812305:0,0,0 -(1,8418:3078558,49800853:0,16384,2228224 -g1,8418:29030814,49800853 -g1,8418:36135244,49800853 -(1,8393:36135244,49800853:1720320,16384,2228224 -(1,8393:36135244,52029077:16384,1703936,0 -[1,8393:36135244,52029077:25952256,1703936,0 -(1,8393:36135244,51504789:25952256,1179648,0 -(1,8393:36135244,51504789:16384,1179648,0 -r1,8418:36151628,51504789:16384,1179648,0 -) -k1,8393:62087500,51504789:25935872 -g1,8393:62087500,51504789 -) -] +[1,7419:3078558,4812305:0,0,0 +(1,7419:3078558,49800853:0,16384,2228224 +g1,7419:29030814,49800853 +g1,7419:36135244,49800853 +(1,6148:36135244,49800853:1720320,16384,2228224 +(1,6148:36135244,52029077:16384,1703936,0 +[1,6148:36135244,52029077:25952256,1703936,0 +(1,6148:36135244,51504789:25952256,1179648,0 +(1,6148:36135244,51504789:16384,1179648,0 +r1,7419:36151628,51504789:16384,1179648,0 ) -g1,8393:36675916,49800853 -(1,8393:36675916,49800853:1179648,16384,0 -r1,8418:37855564,49800853:1179648,16384,0 +k1,6148:62087500,51504789:25935872 +g1,6148:62087500,51504789 +) +] +) +g1,6148:36675916,49800853 +(1,6148:36675916,49800853:1179648,16384,0 +r1,7419:37855564,49800853:1179648,16384,0 +) +) +k1,7419:3078556,49800853:-34777008 +) +] +g1,7419:6630773,4812305 +k1,7419:24358919,4812305:16931228 +g1,7419:25981590,4812305 +g1,7419:26804066,4812305 +g1,7419:30302377,4812305 +) +) +] +[1,7419:6630773,45706769:25952256,40108032,0 +(1,7419:6630773,45706769:25952256,40108032,0 +(1,7419:6630773,45706769:0,0,0 +g1,7419:6630773,45706769 +) +[1,7419:6630773,45706769:25952256,40108032,0 +v1,7419:6630773,6254097:0,393216,0 +(1,7419:6630773,45706769:25952256,39845888,0 +g1,7419:6630773,45706769 +g1,7419:6237557,45706769 +r1,7419:6368629,45706769:131072,39845888,0 +g1,7419:6567858,45706769 +g1,7419:6764466,45706769 +[1,7419:6764466,45706769:25818563,39845888,0 +v1,7340:6764466,6254097:0,393216,0 +(1,7362:6764466,15186438:25818563,9325557,196608 +g1,7362:6764466,15186438 +g1,7362:6764466,15186438 +g1,7362:6567858,15186438 +(1,7362:6567858,15186438:0,9325557,196608 +r1,7419:32779637,15186438:26211779,9522165,196608 +k1,7362:6567857,15186438:-26211780 +) +(1,7362:6567858,15186438:26211779,9325557,196608 +[1,7362:6764466,15186438:25818563,9128949,0 +(1,7342:6764466,6488534:25818563,431045,106246 +(1,7341:6764466,6488534:0,0,0 +g1,7341:6764466,6488534 +g1,7341:6764466,6488534 +g1,7341:6436786,6488534 +(1,7341:6436786,6488534:0,0,0 +) +g1,7341:6764466,6488534 +) +g1,7342:8092282,6488534 +g1,7342:9088144,6488534 +g1,7342:16391130,6488534 +k1,7342:16391130,6488534:0 +h1,7342:20706531,6488534:0,0,0 +k1,7342:32583029,6488534:11876498 +g1,7342:32583029,6488534 +) +(1,7343:6764466,7173389:25818563,431045,9908 +h1,7343:6764466,7173389:0,0,0 +h1,7343:7760328,7173389:0,0,0 +k1,7343:32583028,7173389:24822700 +g1,7343:32583028,7173389 +) +(1,7351:6764466,7989316:25818563,431045,106246 +(1,7345:6764466,7989316:0,0,0 +g1,7345:6764466,7989316 +g1,7345:6764466,7989316 +g1,7345:6436786,7989316 +(1,7345:6436786,7989316:0,0,0 +) +g1,7345:6764466,7989316 +) +g1,7351:7760328,7989316 +g1,7351:8092282,7989316 +g1,7351:8424236,7989316 +g1,7351:11743775,7989316 +g1,7351:15727222,7989316 +g1,7351:19710669,7989316 +h1,7351:23362162,7989316:0,0,0 +k1,7351:32583029,7989316:9220867 +g1,7351:32583029,7989316 +) +(1,7351:6764466,8674171:25818563,407923,9908 +h1,7351:6764466,8674171:0,0,0 +g1,7351:7760328,8674171 +g1,7351:8424236,8674171 +g1,7351:8756190,8674171 +g1,7351:9088144,8674171 +g1,7351:9420098,8674171 +g1,7351:9752052,8674171 +g1,7351:10084006,8674171 +g1,7351:10415960,8674171 +g1,7351:10747914,8674171 +g1,7351:11079868,8674171 +g1,7351:11743776,8674171 +g1,7351:12075730,8674171 +g1,7351:12407684,8674171 +g1,7351:12739638,8674171 +g1,7351:13071592,8674171 +g1,7351:13403546,8674171 +g1,7351:13735500,8674171 +g1,7351:14067454,8674171 +g1,7351:14399408,8674171 +g1,7351:14731362,8674171 +g1,7351:15063316,8674171 +g1,7351:15727224,8674171 +g1,7351:16059178,8674171 +g1,7351:16391132,8674171 +g1,7351:16723086,8674171 +g1,7351:17055040,8674171 +g1,7351:17386994,8674171 +g1,7351:17718948,8674171 +g1,7351:18050902,8674171 +g1,7351:18382856,8674171 +g1,7351:18714810,8674171 +g1,7351:19046764,8674171 +g1,7351:19710672,8674171 +g1,7351:20042626,8674171 +g1,7351:20374580,8674171 +g1,7351:20706534,8674171 +g1,7351:21038488,8674171 +g1,7351:21370442,8674171 +g1,7351:21702396,8674171 +g1,7351:22034350,8674171 +g1,7351:22366304,8674171 +g1,7351:22698258,8674171 +g1,7351:23030212,8674171 +h1,7351:23362166,8674171:0,0,0 +k1,7351:32583029,8674171:9220863 +g1,7351:32583029,8674171 +) +(1,7351:6764466,9359026:25818563,407923,9908 +h1,7351:6764466,9359026:0,0,0 +g1,7351:7760328,9359026 +g1,7351:8424236,9359026 +g1,7351:8756190,9359026 +g1,7351:9088144,9359026 +g1,7351:9420098,9359026 +g1,7351:9752052,9359026 +g1,7351:10084006,9359026 +g1,7351:10415960,9359026 +g1,7351:10747914,9359026 +g1,7351:11079868,9359026 +g1,7351:11743776,9359026 +g1,7351:12075730,9359026 +g1,7351:12407684,9359026 +g1,7351:12739638,9359026 +g1,7351:13071592,9359026 +g1,7351:13403546,9359026 +g1,7351:13735500,9359026 +g1,7351:14067454,9359026 +g1,7351:14399408,9359026 +g1,7351:14731362,9359026 +g1,7351:15063316,9359026 +g1,7351:15727224,9359026 +g1,7351:16059178,9359026 +g1,7351:16391132,9359026 +g1,7351:16723086,9359026 +g1,7351:17055040,9359026 +g1,7351:17386994,9359026 +g1,7351:17718948,9359026 +g1,7351:18050902,9359026 +g1,7351:18382856,9359026 +g1,7351:18714810,9359026 +g1,7351:19046764,9359026 +g1,7351:19710672,9359026 +g1,7351:20042626,9359026 +g1,7351:20374580,9359026 +g1,7351:20706534,9359026 +g1,7351:21038488,9359026 +g1,7351:21370442,9359026 +g1,7351:21702396,9359026 +g1,7351:22034350,9359026 +g1,7351:22366304,9359026 +g1,7351:22698258,9359026 +h1,7351:23362166,9359026:0,0,0 +k1,7351:32583029,9359026:9220863 +g1,7351:32583029,9359026 +) +(1,7351:6764466,10043881:25818563,407923,9908 +h1,7351:6764466,10043881:0,0,0 +g1,7351:7760328,10043881 +g1,7351:8424236,10043881 +g1,7351:8756190,10043881 +g1,7351:9088144,10043881 +g1,7351:9420098,10043881 +g1,7351:9752052,10043881 +g1,7351:10084006,10043881 +g1,7351:10415960,10043881 +g1,7351:10747914,10043881 +g1,7351:11079868,10043881 +g1,7351:11743776,10043881 +g1,7351:12075730,10043881 +g1,7351:12407684,10043881 +g1,7351:12739638,10043881 +g1,7351:13071592,10043881 +g1,7351:13403546,10043881 +g1,7351:13735500,10043881 +g1,7351:14067454,10043881 +g1,7351:14399408,10043881 +g1,7351:14731362,10043881 +g1,7351:15063316,10043881 +g1,7351:15727224,10043881 +g1,7351:16059178,10043881 +g1,7351:16391132,10043881 +g1,7351:16723086,10043881 +g1,7351:17055040,10043881 +g1,7351:17386994,10043881 +g1,7351:17718948,10043881 +g1,7351:18050902,10043881 +g1,7351:18382856,10043881 +g1,7351:18714810,10043881 +g1,7351:19046764,10043881 +g1,7351:19710672,10043881 +g1,7351:20042626,10043881 +g1,7351:20374580,10043881 +g1,7351:20706534,10043881 +g1,7351:21038488,10043881 +g1,7351:21370442,10043881 +g1,7351:21702396,10043881 +g1,7351:22034350,10043881 +g1,7351:22366304,10043881 +g1,7351:22698258,10043881 +h1,7351:23362166,10043881:0,0,0 +k1,7351:32583029,10043881:9220863 +g1,7351:32583029,10043881 +) +(1,7351:6764466,10728736:25818563,407923,9908 +h1,7351:6764466,10728736:0,0,0 +g1,7351:7760328,10728736 +g1,7351:8424236,10728736 +g1,7351:8756190,10728736 +g1,7351:9088144,10728736 +g1,7351:9420098,10728736 +g1,7351:9752052,10728736 +g1,7351:10084006,10728736 +g1,7351:10415960,10728736 +g1,7351:10747914,10728736 +g1,7351:11079868,10728736 +g1,7351:11743776,10728736 +g1,7351:12075730,10728736 +g1,7351:12407684,10728736 +g1,7351:12739638,10728736 +g1,7351:13071592,10728736 +g1,7351:13403546,10728736 +g1,7351:13735500,10728736 +g1,7351:14067454,10728736 +g1,7351:14399408,10728736 +g1,7351:14731362,10728736 +g1,7351:15063316,10728736 +g1,7351:15727224,10728736 +g1,7351:16059178,10728736 +g1,7351:16391132,10728736 +g1,7351:16723086,10728736 +g1,7351:17055040,10728736 +g1,7351:17386994,10728736 +g1,7351:17718948,10728736 +g1,7351:18050902,10728736 +g1,7351:18382856,10728736 +g1,7351:18714810,10728736 +g1,7351:19046764,10728736 +g1,7351:19710672,10728736 +g1,7351:20042626,10728736 +g1,7351:20374580,10728736 +g1,7351:20706534,10728736 +g1,7351:21038488,10728736 +g1,7351:21370442,10728736 +g1,7351:21702396,10728736 +g1,7351:22034350,10728736 +g1,7351:22366304,10728736 +g1,7351:22698258,10728736 +h1,7351:23362166,10728736:0,0,0 +k1,7351:32583029,10728736:9220863 +g1,7351:32583029,10728736 +) +(1,7353:6764466,11544663:25818563,431045,106246 +(1,7352:6764466,11544663:0,0,0 +g1,7352:6764466,11544663 +g1,7352:6764466,11544663 +g1,7352:6436786,11544663 +(1,7352:6436786,11544663:0,0,0 +) +g1,7352:6764466,11544663 +) +h1,7353:11079867,11544663:0,0,0 +k1,7353:32583029,11544663:21503162 +g1,7353:32583029,11544663 +) +(1,7361:6764466,12360590:25818563,424439,86428 +(1,7355:6764466,12360590:0,0,0 +g1,7355:6764466,12360590 +g1,7355:6764466,12360590 +g1,7355:6436786,12360590 +(1,7355:6436786,12360590:0,0,0 +) +g1,7355:6764466,12360590 +) +g1,7361:7760328,12360590 +g1,7361:8092282,12360590 +g1,7361:8424236,12360590 +g1,7361:8756190,12360590 +g1,7361:9088144,12360590 +g1,7361:9420098,12360590 +g1,7361:11079868,12360590 +g1,7361:12739638,12360590 +k1,7361:12739638,12360590:0 +h1,7361:14067454,12360590:0,0,0 +k1,7361:32583030,12360590:18515576 +g1,7361:32583030,12360590 +) +(1,7361:6764466,13045445:25818563,424439,86428 +h1,7361:6764466,13045445:0,0,0 +g1,7361:7760328,13045445 +g1,7361:9420098,13045445 +g1,7361:9752052,13045445 +g1,7361:10084006,13045445 +g1,7361:10415960,13045445 +g1,7361:11079868,13045445 +g1,7361:11411822,13045445 +g1,7361:11743776,13045445 +g1,7361:12075730,13045445 +g1,7361:12739638,13045445 +g1,7361:13071592,13045445 +g1,7361:13403546,13045445 +g1,7361:13735500,13045445 +h1,7361:14067454,13045445:0,0,0 +k1,7361:32583030,13045445:18515576 +g1,7361:32583030,13045445 +) +(1,7361:6764466,13730300:25818563,424439,86428 +h1,7361:6764466,13730300:0,0,0 +g1,7361:7760328,13730300 +g1,7361:9420098,13730300 +g1,7361:9752052,13730300 +g1,7361:10084006,13730300 +g1,7361:10415960,13730300 +g1,7361:11079868,13730300 +g1,7361:11411822,13730300 +g1,7361:11743776,13730300 +g1,7361:12075730,13730300 +g1,7361:12739638,13730300 +g1,7361:13071592,13730300 +g1,7361:13403546,13730300 +h1,7361:14067454,13730300:0,0,0 +k1,7361:32583030,13730300:18515576 +g1,7361:32583030,13730300 +) +(1,7361:6764466,14415155:25818563,424439,86428 +h1,7361:6764466,14415155:0,0,0 +g1,7361:7760328,14415155 +g1,7361:9420098,14415155 +g1,7361:9752052,14415155 +g1,7361:10084006,14415155 +g1,7361:10415960,14415155 +g1,7361:11079868,14415155 +g1,7361:11411822,14415155 +g1,7361:11743776,14415155 +g1,7361:12075730,14415155 +g1,7361:12739638,14415155 +g1,7361:13071592,14415155 +g1,7361:13403546,14415155 +h1,7361:14067454,14415155:0,0,0 +k1,7361:32583030,14415155:18515576 +g1,7361:32583030,14415155 +) +(1,7361:6764466,15100010:25818563,424439,86428 +h1,7361:6764466,15100010:0,0,0 +g1,7361:7760328,15100010 +g1,7361:9420098,15100010 +g1,7361:9752052,15100010 +g1,7361:10084006,15100010 +g1,7361:10415960,15100010 +g1,7361:11079868,15100010 +g1,7361:11411822,15100010 +g1,7361:11743776,15100010 +g1,7361:12075730,15100010 +g1,7361:12739638,15100010 +g1,7361:13071592,15100010 +g1,7361:13403546,15100010 +h1,7361:14067454,15100010:0,0,0 +k1,7361:32583030,15100010:18515576 +g1,7361:32583030,15100010 +) +] +) +g1,7362:32583029,15186438 +g1,7362:6764466,15186438 +g1,7362:6764466,15186438 +g1,7362:32583029,15186438 +g1,7362:32583029,15186438 +) +h1,7362:6764466,15383046:0,0,0 +(1,7366:6764466,16427592:25818563,513147,102891 +h1,7365:6764466,16427592:983040,0,0 +k1,7365:8447243,16427592:221980 +k1,7365:9537575,16427592:221980 +k1,7365:11247878,16427592:221980 +k1,7365:12863808,16427592:221979 +k1,7365:13441648,16427592:221980 +k1,7365:14830824,16427592:221980 +k1,7365:16504426,16427592:221980 +k1,7365:19349812,16427592:221980 +k1,7365:20965743,16427592:221980 +k1,7365:21543583,16427592:221980 +k1,7365:24277557,16427592:221979 +k1,7365:26985318,16427592:221980 +k1,7365:27866590,16427592:221980 +k1,7365:31131407,16427592:221980 +k1,7365:32583029,16427592:0 +) +(1,7366:6764466,17292672:25818563,513147,126483 +k1,7365:9573789,17292672:185917 +k1,7365:12533191,17292672:185918 +k1,7365:13074968,17292672:185917 +k1,7365:15643775,17292672:185918 +k1,7365:16445730,17292672:185917 +k1,7365:17650733,17292672:185918 +k1,7365:19226013,17292672:185917 +k1,7365:21461896,17292672:185917 +k1,7365:22275649,17292672:185918 +k1,7365:23480651,17292672:185917 +k1,7365:25033650,17292672:185918 +k1,7365:25878859,17292672:185917 +k1,7365:26420637,17292672:185918 +k1,7365:27652509,17292672:185917 +k1,7365:29523358,17292672:185918 +k1,7365:31039656,17292672:185917 +k1,7366:32583029,17292672:0 +) +(1,7366:6764466,18157752:25818563,505283,134348 +g1,7365:8492650,18157752 +g1,7365:9223376,18157752 +k1,7366:32583030,18157752:20814236 +g1,7366:32583030,18157752 +) +v1,7368:6764466,18932339:0,393216,0 +(1,7381:6764466,24090181:25818563,5551058,196608 +g1,7381:6764466,24090181 +g1,7381:6764466,24090181 +g1,7381:6567858,24090181 +(1,7381:6567858,24090181:0,5551058,196608 +r1,7419:32779637,24090181:26211779,5747666,196608 +k1,7381:6567857,24090181:-26211780 +) +(1,7381:6567858,24090181:26211779,5551058,196608 +[1,7381:6764466,24090181:25818563,5354450,0 +(1,7370:6764466,19160170:25818563,424439,106246 +(1,7369:6764466,19160170:0,0,0 +g1,7369:6764466,19160170 +g1,7369:6764466,19160170 +g1,7369:6436786,19160170 +(1,7369:6436786,19160170:0,0,0 +) +g1,7369:6764466,19160170 +) +g1,7370:9420098,19160170 +g1,7370:10415960,19160170 +g1,7370:12739638,19160170 +g1,7370:13403546,19160170 +g1,7370:15063316,19160170 +g1,7370:15727224,19160170 +g1,7370:16391132,19160170 +g1,7370:21038487,19160170 +g1,7370:21702395,19160170 +g1,7370:22366303,19160170 +g1,7370:24026073,19160170 +g1,7370:24689981,19160170 +g1,7370:25353889,19160170 +h1,7370:26681705,19160170:0,0,0 +k1,7370:32583029,19160170:5901324 +g1,7370:32583029,19160170 +) +(1,7371:6764466,19845025:25818563,431045,106246 +h1,7371:6764466,19845025:0,0,0 +g1,7371:8756190,19845025 +g1,7371:16059176,19845025 +h1,7371:18714807,19845025:0,0,0 +k1,7371:32583029,19845025:13868222 +g1,7371:32583029,19845025 +) +(1,7372:6764466,20529880:25818563,431045,9908 +h1,7372:6764466,20529880:0,0,0 +h1,7372:7760328,20529880:0,0,0 +k1,7372:32583028,20529880:24822700 +g1,7372:32583028,20529880 +) +(1,7380:6764466,21345807:25818563,431045,106246 +(1,7374:6764466,21345807:0,0,0 +g1,7374:6764466,21345807 +g1,7374:6764466,21345807 +g1,7374:6436786,21345807 +(1,7374:6436786,21345807:0,0,0 +) +g1,7374:6764466,21345807 +) +g1,7380:7760328,21345807 +g1,7380:8092282,21345807 +g1,7380:8424236,21345807 +g1,7380:11743775,21345807 +g1,7380:12407683,21345807 +g1,7380:13071591,21345807 +g1,7380:13735499,21345807 +h1,7380:14067453,21345807:0,0,0 +k1,7380:32583029,21345807:18515576 +g1,7380:32583029,21345807 +) +(1,7380:6764466,22030662:25818563,424439,6605 +h1,7380:6764466,22030662:0,0,0 +g1,7380:7760328,22030662 +g1,7380:8424236,22030662 +g1,7380:8756190,22030662 +g1,7380:9088144,22030662 +g1,7380:9420098,22030662 +g1,7380:9752052,22030662 +g1,7380:10084006,22030662 +g1,7380:10415960,22030662 +g1,7380:10747914,22030662 +g1,7380:11079868,22030662 +g1,7380:11743776,22030662 +g1,7380:12407684,22030662 +g1,7380:13071592,22030662 +g1,7380:13735500,22030662 +h1,7380:14067454,22030662:0,0,0 +k1,7380:32583030,22030662:18515576 +g1,7380:32583030,22030662 +) +(1,7380:6764466,22715517:25818563,407923,9908 +h1,7380:6764466,22715517:0,0,0 +g1,7380:7760328,22715517 +g1,7380:8424236,22715517 +g1,7380:8756190,22715517 +g1,7380:9088144,22715517 +g1,7380:9420098,22715517 +g1,7380:9752052,22715517 +g1,7380:10084006,22715517 +g1,7380:10415960,22715517 +g1,7380:10747914,22715517 +g1,7380:11079868,22715517 +g1,7380:11743776,22715517 +g1,7380:12407684,22715517 +g1,7380:13071592,22715517 +g1,7380:13735500,22715517 +h1,7380:14067454,22715517:0,0,0 +k1,7380:32583030,22715517:18515576 +g1,7380:32583030,22715517 +) +(1,7380:6764466,23400372:25818563,424439,9908 +h1,7380:6764466,23400372:0,0,0 +g1,7380:7760328,23400372 +g1,7380:8424236,23400372 +g1,7380:8756190,23400372 +g1,7380:9088144,23400372 +g1,7380:9420098,23400372 +g1,7380:9752052,23400372 +g1,7380:10084006,23400372 +g1,7380:10415960,23400372 +g1,7380:10747914,23400372 +g1,7380:11079868,23400372 +g1,7380:11743776,23400372 +g1,7380:12407684,23400372 +g1,7380:13071592,23400372 +g1,7380:13735500,23400372 +h1,7380:14067454,23400372:0,0,0 +k1,7380:32583030,23400372:18515576 +g1,7380:32583030,23400372 +) +(1,7380:6764466,24085227:25818563,407923,4954 +h1,7380:6764466,24085227:0,0,0 +g1,7380:7760328,24085227 +g1,7380:8424236,24085227 +g1,7380:8756190,24085227 +g1,7380:9088144,24085227 +g1,7380:9420098,24085227 +g1,7380:9752052,24085227 +g1,7380:10084006,24085227 +g1,7380:10415960,24085227 +g1,7380:10747914,24085227 +g1,7380:11079868,24085227 +g1,7380:11743776,24085227 +g1,7380:12407684,24085227 +g1,7380:13071592,24085227 +g1,7380:13735500,24085227 +h1,7380:14067454,24085227:0,0,0 +k1,7380:32583030,24085227:18515576 +g1,7380:32583030,24085227 +) +] +) +g1,7381:32583029,24090181 +g1,7381:6764466,24090181 +g1,7381:6764466,24090181 +g1,7381:32583029,24090181 +g1,7381:32583029,24090181 +) +h1,7381:6764466,24286789:0,0,0 +(1,7385:6764466,25331335:25818563,513147,126483 +h1,7384:6764466,25331335:983040,0,0 +k1,7384:9163738,25331335:219545 +k1,7384:12557847,25331335:219545 +k1,7384:13308889,25331335:219545 +k1,7384:15153072,25331335:219545 +k1,7384:18134960,25331335:219545 +k1,7384:18820466,25331335:219545 +k1,7384:19908363,25331335:219545 +k1,7384:22426257,25331335:219546 +k1,7384:23664887,25331335:219545 +k1,7384:24877958,25331335:219545 +k1,7384:26491454,25331335:219545 +(1,7384:26491454,25331335:0,452978,115847 +r1,7419:27553143,25331335:1061689,568825,115847 +k1,7384:26491454,25331335:-1061689 +) +(1,7384:26491454,25331335:1061689,452978,115847 +k1,7384:26491454,25331335:3277 +h1,7384:27549866,25331335:0,411205,112570 +) +k1,7384:27946358,25331335:219545 +k1,7384:29599831,25331335:219545 +k1,7384:30838461,25331335:219545 +k1,7384:32051532,25331335:219545 +k1,7384:32583029,25331335:0 +) +(1,7385:6764466,26196415:25818563,513147,134348 +k1,7384:8944276,26196415:214385 +k1,7384:9774698,26196415:214384 +k1,7384:11871932,26196415:214385 +k1,7384:12772479,26196415:214385 +k1,7384:13342723,26196415:214384 +k1,7384:16068448,26196415:214385 +k1,7384:16965718,26196415:214385 +k1,7384:19562992,26196415:214385 +k1,7384:20393414,26196415:214384 +k1,7384:21626884,26196415:214385 +k1,7384:23230632,26196415:214385 +k1,7384:25494982,26196415:214384 +k1,7384:26337202,26196415:214385 +k1,7384:27754828,26196415:214385 +k1,7384:29336293,26196415:214384 +k1,7384:30569763,26196415:214385 +k1,7384:32583029,26196415:0 +) +(1,7385:6764466,27061495:25818563,513147,7863 +k1,7384:7705082,27061495:257731 +k1,7384:10448594,27061495:257731 +k1,7384:11365618,27061495:257732 +k1,7384:14577057,27061495:257731 +k1,7384:15450826,27061495:257731 +k1,7384:16727642,27061495:257731 +k1,7384:17978899,27061495:257731 +k1,7384:19842263,27061495:257732 +k1,7384:21722010,27061495:257731 +k1,7384:23960894,27061495:257731 +k1,7384:25237710,27061495:257731 +k1,7384:27981222,27061495:257731 +k1,7384:28898246,27061495:257732 +k1,7384:30690175,27061495:257731 +k1,7384:31563944,27061495:257731 +k1,7384:32583029,27061495:0 +) +(1,7385:6764466,27926575:25818563,513147,134348 +k1,7384:8327674,27926575:173845 +k1,7384:10551485,27926575:173845 +k1,7384:12414848,27926575:173845 +k1,7384:13607778,27926575:173845 +k1,7384:15794889,27926575:173845 +k1,7384:16628026,27926575:173845 +k1,7384:17820956,27926575:173845 +k1,7384:21187716,27926575:173846 +k1,7384:24315269,27926575:173845 +k1,7384:25148406,27926575:173845 +k1,7384:26341336,27926575:173845 +k1,7384:27508707,27926575:173845 +k1,7384:28786834,27926575:173845 +k1,7384:30496843,27926575:173845 +k1,7384:32051532,27926575:173845 +k1,7384:32583029,27926575:0 +) +(1,7385:6764466,28791655:25818563,513147,126483 +k1,7384:9176696,28791655:210220 +k1,7384:10038344,28791655:210220 +k1,7384:11267649,28791655:210220 +k1,7384:13743449,28791655:210220 +k1,7384:17128233,28791655:210220 +k1,7384:17997745,28791655:210220 +k1,7384:20523353,28791655:210221 +k1,7384:21805742,28791655:210220 +k1,7384:22430794,28791655:210209 +k1,7384:24030377,28791655:210220 +k1,7384:26447194,28791655:210220 +k1,7384:28949208,28791655:210220 +k1,7384:31490544,28791655:210220 +k1,7384:32583029,28791655:0 +) +(1,7385:6764466,29656735:25818563,513147,134348 +g1,7384:7630851,29656735 +(1,7384:7630851,29656735:0,452978,115847 +r1,7419:8692540,29656735:1061689,568825,115847 +k1,7384:7630851,29656735:-1061689 +) +(1,7384:7630851,29656735:1061689,452978,115847 +k1,7384:7630851,29656735:3277 +h1,7384:8689263,29656735:0,411205,112570 +) +g1,7384:8891769,29656735 +g1,7384:10323075,29656735 +g1,7384:12939927,29656735 +h1,7384:13338386,29656735:0,0,0 +g1,7384:13537615,29656735 +g1,7384:14546214,29656735 +g1,7384:16243596,29656735 +h1,7384:17438973,29656735:0,0,0 +g1,7384:17638202,29656735 +g1,7384:18785082,29656735 +g1,7384:21101779,29656735 +g1,7384:23123564,29656735 +g1,7384:24341878,29656735 +k1,7385:32583029,29656735:5698355 +g1,7385:32583029,29656735 +) +v1,7387:6764466,30431323:0,393216,0 +(1,7415:6764466,43466188:25818563,13428081,196608 +g1,7415:6764466,43466188 +g1,7415:6764466,43466188 +g1,7415:6567858,43466188 +(1,7415:6567858,43466188:0,13428081,196608 +r1,7419:32779637,43466188:26211779,13624689,196608 +k1,7415:6567857,43466188:-26211780 +) +(1,7415:6567858,43466188:26211779,13428081,196608 +[1,7415:6764466,43466188:25818563,13231473,0 +(1,7389:6764466,30665760:25818563,431045,106246 +(1,7388:6764466,30665760:0,0,0 +g1,7388:6764466,30665760 +g1,7388:6764466,30665760 +g1,7388:6436786,30665760 +(1,7388:6436786,30665760:0,0,0 +) +g1,7388:6764466,30665760 +) +k1,7389:6764466,30665760:0 +g1,7389:8756190,30665760 +g1,7389:16059176,30665760 +k1,7389:16059176,30665760:0 +h1,7389:19710669,30665760:0,0,0 +k1,7389:32583029,30665760:12872360 +g1,7389:32583029,30665760 +) +(1,7390:6764466,31350615:25818563,431045,6605 +h1,7390:6764466,31350615:0,0,0 +h1,7390:7760328,31350615:0,0,0 +k1,7390:32583028,31350615:24822700 +g1,7390:32583028,31350615 +) +(1,7398:6764466,32166542:25818563,431045,106246 +(1,7392:6764466,32166542:0,0,0 +g1,7392:6764466,32166542 +g1,7392:6764466,32166542 +g1,7392:6436786,32166542 +(1,7392:6436786,32166542:0,0,0 +) +g1,7392:6764466,32166542 +) +g1,7398:7760328,32166542 +g1,7398:8092282,32166542 +g1,7398:8424236,32166542 +g1,7398:11743775,32166542 +g1,7398:12075729,32166542 +g1,7398:12407683,32166542 +g1,7398:12739637,32166542 +h1,7398:15063315,32166542:0,0,0 +k1,7398:32583029,32166542:17519714 +g1,7398:32583029,32166542 +) +(1,7398:6764466,32851397:25818563,407923,86428 +h1,7398:6764466,32851397:0,0,0 +g1,7398:7760328,32851397 +g1,7398:8424236,32851397 +g1,7398:8756190,32851397 +g1,7398:9088144,32851397 +g1,7398:9420098,32851397 +g1,7398:9752052,32851397 +g1,7398:10084006,32851397 +g1,7398:10415960,32851397 +g1,7398:10747914,32851397 +g1,7398:11079868,32851397 +g1,7398:11743776,32851397 +g1,7398:12739638,32851397 +g1,7398:13735500,32851397 +g1,7398:14731362,32851397 +h1,7398:15063316,32851397:0,0,0 +k1,7398:32583028,32851397:17519712 +g1,7398:32583028,32851397 +) +(1,7398:6764466,33536252:25818563,424439,86428 +h1,7398:6764466,33536252:0,0,0 +g1,7398:7760328,33536252 +g1,7398:8424236,33536252 +g1,7398:8756190,33536252 +g1,7398:9088144,33536252 +g1,7398:9420098,33536252 +g1,7398:9752052,33536252 +g1,7398:10084006,33536252 +g1,7398:10415960,33536252 +g1,7398:10747914,33536252 +g1,7398:11079868,33536252 +g1,7398:11743776,33536252 +g1,7398:12739638,33536252 +g1,7398:13735500,33536252 +g1,7398:14731362,33536252 +h1,7398:15063316,33536252:0,0,0 +k1,7398:32583028,33536252:17519712 +g1,7398:32583028,33536252 +) +(1,7398:6764466,34221107:25818563,407923,9908 +h1,7398:6764466,34221107:0,0,0 +g1,7398:7760328,34221107 +g1,7398:8424236,34221107 +g1,7398:8756190,34221107 +g1,7398:9088144,34221107 +g1,7398:9420098,34221107 +g1,7398:9752052,34221107 +g1,7398:10084006,34221107 +g1,7398:10415960,34221107 +g1,7398:10747914,34221107 +g1,7398:11079868,34221107 +g1,7398:11743776,34221107 +g1,7398:12075730,34221107 +g1,7398:12407684,34221107 +g1,7398:12739638,34221107 +g1,7398:13071592,34221107 +g1,7398:13403546,34221107 +g1,7398:13735500,34221107 +g1,7398:14067454,34221107 +g1,7398:14399408,34221107 +g1,7398:14731362,34221107 +h1,7398:15063316,34221107:0,0,0 +k1,7398:32583028,34221107:17519712 +g1,7398:32583028,34221107 +) +(1,7398:6764466,34905962:25818563,424439,6605 +h1,7398:6764466,34905962:0,0,0 +g1,7398:7760328,34905962 +g1,7398:8424236,34905962 +g1,7398:8756190,34905962 +g1,7398:9088144,34905962 +g1,7398:9420098,34905962 +g1,7398:9752052,34905962 +g1,7398:10084006,34905962 +g1,7398:10415960,34905962 +g1,7398:10747914,34905962 +g1,7398:11079868,34905962 +g1,7398:11743776,34905962 +g1,7398:12075730,34905962 +g1,7398:12407684,34905962 +g1,7398:12739638,34905962 +g1,7398:13071592,34905962 +g1,7398:13403546,34905962 +g1,7398:13735500,34905962 +g1,7398:14067454,34905962 +g1,7398:14399408,34905962 +g1,7398:14731362,34905962 +h1,7398:15063316,34905962:0,0,0 +k1,7398:32583028,34905962:17519712 +g1,7398:32583028,34905962 +) +(1,7400:6764466,35721889:25818563,431045,106246 +(1,7399:6764466,35721889:0,0,0 +g1,7399:6764466,35721889 +g1,7399:6764466,35721889 +g1,7399:6436786,35721889 +(1,7399:6436786,35721889:0,0,0 +) +g1,7399:6764466,35721889 +) +h1,7400:10415960,35721889:0,0,0 +k1,7400:32583028,35721889:22167068 +g1,7400:32583028,35721889 +) +(1,7414:6764466,36537816:25818563,431045,33029 +(1,7402:6764466,36537816:0,0,0 +g1,7402:6764466,36537816 +g1,7402:6764466,36537816 +g1,7402:6436786,36537816 +(1,7402:6436786,36537816:0,0,0 +) +g1,7402:6764466,36537816 +) +g1,7414:7760328,36537816 +h1,7414:8424236,36537816:0,0,0 +k1,7414:32583028,36537816:24158792 +g1,7414:32583028,36537816 +) +(1,7414:6764466,37222671:25818563,424439,79822 +h1,7414:6764466,37222671:0,0,0 +g1,7414:7760328,37222671 +g1,7414:9088144,37222671 +g1,7414:9752052,37222671 +g1,7414:10415960,37222671 +g1,7414:11079868,37222671 +h1,7414:11411822,37222671:0,0,0 +k1,7414:32583030,37222671:21171208 +g1,7414:32583030,37222671 +) +(1,7414:6764466,37907526:25818563,398014,0 +h1,7414:6764466,37907526:0,0,0 +h1,7414:7428374,37907526:0,0,0 +k1,7414:32583030,37907526:25154656 +g1,7414:32583030,37907526 +) +(1,7414:6764466,38592381:25818563,431045,33029 +h1,7414:6764466,38592381:0,0,0 +g1,7414:7760328,38592381 +h1,7414:8424236,38592381:0,0,0 +k1,7414:32583028,38592381:24158792 +g1,7414:32583028,38592381 +) +(1,7414:6764466,39277236:25818563,424439,79822 +h1,7414:6764466,39277236:0,0,0 +g1,7414:7760328,39277236 +g1,7414:9088144,39277236 +g1,7414:10415960,39277236 +g1,7414:11743776,39277236 +g1,7414:13071592,39277236 +h1,7414:14067454,39277236:0,0,0 +k1,7414:32583030,39277236:18515576 +g1,7414:32583030,39277236 +) +(1,7414:6764466,39962091:25818563,398014,0 +h1,7414:6764466,39962091:0,0,0 +h1,7414:7428374,39962091:0,0,0 +k1,7414:32583030,39962091:25154656 +g1,7414:32583030,39962091 +) +(1,7414:6764466,40646946:25818563,431045,33029 +h1,7414:6764466,40646946:0,0,0 +g1,7414:7760328,40646946 +h1,7414:8424236,40646946:0,0,0 +k1,7414:32583028,40646946:24158792 +g1,7414:32583028,40646946 +) +(1,7414:6764466,41331801:25818563,424439,79822 +h1,7414:6764466,41331801:0,0,0 +g1,7414:7760328,41331801 +g1,7414:9088144,41331801 +h1,7414:10084006,41331801:0,0,0 +k1,7414:32583030,41331801:22499024 +g1,7414:32583030,41331801 +) +(1,7414:6764466,42016656:25818563,398014,0 +h1,7414:6764466,42016656:0,0,0 +h1,7414:7428374,42016656:0,0,0 +k1,7414:32583030,42016656:25154656 +g1,7414:32583030,42016656 +) +(1,7414:6764466,42701511:25818563,431045,33029 +h1,7414:6764466,42701511:0,0,0 +g1,7414:7760328,42701511 +h1,7414:8424236,42701511:0,0,0 +k1,7414:32583028,42701511:24158792 +g1,7414:32583028,42701511 +) +(1,7414:6764466,43386366:25818563,424439,79822 +h1,7414:6764466,43386366:0,0,0 +g1,7414:7760328,43386366 +g1,7414:9088144,43386366 +h1,7414:10084006,43386366:0,0,0 +k1,7414:32583030,43386366:22499024 +g1,7414:32583030,43386366 +) +] +) +g1,7415:32583029,43466188 +g1,7415:6764466,43466188 +g1,7415:6764466,43466188 +g1,7415:32583029,43466188 +g1,7415:32583029,43466188 +) +h1,7415:6764466,43662796:0,0,0 +(1,7419:6764466,44707341:25818563,513147,126483 +h1,7418:6764466,44707341:983040,0,0 +k1,7418:9612601,44707341:231282 +k1,7418:10375381,44707341:231283 +k1,7418:11809904,44707341:231282 +k1,7418:14601678,44707341:231282 +k1,7418:16982542,44707341:231283 +k1,7418:18111667,44707341:231282 +k1,7418:20164851,44707341:231283 +k1,7418:21415218,44707341:231282 +k1,7418:26472571,44707341:231282 +k1,7418:29479959,44707341:231283 +k1,7418:30902686,44707341:231282 +k1,7418:32583029,44707341:0 +) +(1,7419:6764466,45572421:25818563,513147,134348 +k1,7418:7661250,45572421:237492 +k1,7418:9321529,45572421:237492 +k1,7418:11477915,45572421:237492 +k1,7418:12734492,45572421:237492 +k1,7418:15946008,45572421:237492 +k1,7418:18297691,45572421:237492 +k1,7418:19296710,45572421:237491 +k1,7418:20626687,45572421:237492 +k1,7418:21523471,45572421:237492 +k1,7418:24456459,45572421:237492 +(1,7418:24456459,45572421:0,452978,115847 +r1,7419:25518148,45572421:1061689,568825,115847 +k1,7418:24456459,45572421:-1061689 +) +(1,7418:24456459,45572421:1061689,452978,115847 +k1,7418:24456459,45572421:3277 +h1,7418:25514871,45572421:0,411205,112570 +) +k1,7418:25755640,45572421:237492 +k1,7418:26644560,45572421:237492 +k1,7418:29180400,45572421:237492 +k1,7418:32583029,45572421:0 +) +] +g1,7419:32583029,45706769 +) +] +(1,7419:32583029,45706769:0,0,0 +g1,7419:32583029,45706769 +) +) +] +(1,7419:6630773,47279633:25952256,0,0 +h1,7419:6630773,47279633:25952256,0,0 +) +] +(1,7419:4262630,4025873:0,0,0 +[1,7419:-473656,4025873:0,0,0 +(1,7419:-473656,-710413:0,0,0 +(1,7419:-473656,-710413:0,0,0 +g1,7419:-473656,-710413 +) +g1,7419:-473656,-710413 +) +] ) +] +!30490 +}113 +Input:977:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:978:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:979:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:980:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:981:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:982:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:983:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:984:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:985:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:986:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:987:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:988:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:989:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:990:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:991:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:992:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:993:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:994:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:995:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:996:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1872 +{114 +[1,7514:4262630,47279633:28320399,43253760,0 +(1,7514:4262630,4025873:0,0,0 +[1,7514:-473656,4025873:0,0,0 +(1,7514:-473656,-710413:0,0,0 +(1,7514:-473656,-644877:0,0,0 +k1,7514:-473656,-644877:-65536 ) -k1,8418:3078556,49800853:-34777008 -) -] -g1,8418:6630773,4812305 +(1,7514:-473656,4736287:0,0,0 +k1,7514:-473656,4736287:5209943 ) +g1,7514:-473656,-710413 ) ] -[1,8418:6630773,45706769:25952256,40108032,0 -(1,8418:6630773,45706769:25952256,40108032,0 -(1,8418:6630773,45706769:0,0,0 -g1,8418:6630773,45706769 ) -[1,8418:6630773,45706769:25952256,40108032,0 -[1,8393:6630773,11635422:25952256,6036685,0 -(1,8393:6630773,6604846:25952256,1137181,28311 -h1,8393:6630773,6604846:0,0,0 -k1,8393:20096848,6604846:12486181 -k1,8393:32583029,6604846:12486181 +[1,7514:6630773,47279633:25952256,43253760,0 +[1,7514:6630773,4812305:25952256,786432,0 +(1,7514:6630773,4812305:25952256,513147,126483 +(1,7514:6630773,4812305:25952256,513147,126483 +g1,7514:3078558,4812305 +[1,7514:3078558,4812305:0,0,0 +(1,7514:3078558,2439708:0,1703936,0 +k1,7514:1358238,2439708:-1720320 +(1,6148:1358238,2439708:1720320,1703936,0 +(1,6148:1358238,2439708:1179648,16384,0 +r1,7514:2537886,2439708:1179648,16384,0 ) -(1,8393:6630773,7304782:25952256,32768,229376 -(1,8393:6630773,7304782:0,32768,229376 -(1,8393:6630773,7304782:5505024,32768,229376 -r1,8418:12135797,7304782:5505024,262144,229376 +g1,6148:3062174,2439708 +(1,6148:3062174,2439708:16384,1703936,0 +[1,6148:3062174,2439708:25952256,1703936,0 +(1,6148:3062174,1915420:25952256,1179648,0 +(1,6148:3062174,1915420:16384,1179648,0 +r1,7514:3078558,1915420:16384,1179648,0 ) -k1,8393:6630773,7304782:-5505024 +k1,6148:29014430,1915420:25935872 +g1,6148:29014430,1915420 ) -(1,8393:6630773,7304782:25952256,32768,0 -r1,8418:32583029,7304782:25952256,32768,0 +] ) ) -(1,8393:6630773,9100478:25952256,909509,241827 -h1,8393:6630773,9100478:0,0,0 -g1,8393:9551582,9100478 -g1,8393:11032040,9100478 -g1,8393:19103192,9100478 -g1,8393:21640615,9100478 -k1,8393:29452834,9100478:3130196 -k1,8393:32583029,9100478:3130195 ) -(1,8393:6630773,9800414:25952256,32768,0 -(1,8393:6630773,9800414:5505024,32768,0 -r1,8418:12135797,9800414:5505024,32768,0 +] +[1,7514:3078558,4812305:0,0,0 +(1,7514:3078558,2439708:0,1703936,0 +g1,7514:29030814,2439708 +g1,7514:36135244,2439708 +(1,6148:36135244,2439708:1720320,1703936,0 +(1,6148:36135244,2439708:16384,1703936,0 +[1,6148:36135244,2439708:25952256,1703936,0 +(1,6148:36135244,1915420:25952256,1179648,0 +(1,6148:36135244,1915420:16384,1179648,0 +r1,7514:36151628,1915420:16384,1179648,0 ) -k1,8393:22359413,9800414:10223616 -k1,8393:32583029,9800414:10223616 -) -] -(1,8396:6630773,14528187:25952256,131072,0 -r1,8418:32583029,14528187:25952256,131072,0 -g1,8396:32583029,14528187 -g1,8396:32583029,14528187 -) -(1,8398:6630773,15848088:25952256,513147,134348 -k1,8398:8596853,15848088:1966080 -k1,8397:8596853,15848088:0 -k1,8397:9787977,15848088:288693 -k1,8397:10491424,15848088:288604 -k1,8397:12611193,15848088:288693 -k1,8397:13431384,15848088:288694 -k1,8397:15858517,15848088:288693 -k1,8397:16503071,15848088:288694 -k1,8397:18017943,15848088:288693 -k1,8397:19289676,15848088:288693 -k1,8397:22940367,15848088:288694 -k1,8397:25805936,15848088:288693 -k1,8397:27113715,15848088:288694 -k1,8397:29055881,15848088:288693 -k1,8398:32583029,15848088:1966080 -) -(1,8398:6630773,16689576:25952256,513147,126483 -g1,8398:8596853,16689576 -g1,8397:10937799,16689576 -g1,8397:12421534,16689576 -g1,8397:13791236,16689576 -g1,8397:15946715,16689576 -g1,8397:17800728,16689576 -g1,8397:18809327,16689576 -g1,8397:20027641,16689576 -g1,8397:23386361,16689576 -g1,8397:24754097,16689576 -g1,8397:25620482,16689576 -k1,8398:30616949,16689576:4407954 -g1,8398:32583029,16689576 -) -(1,8399:6630773,18317496:25952256,473825,95026 -k1,8399:27178275,18317496:20547502 -h1,8399:27178275,18317496:0,0,0 -g1,8399:28475232,18317496 -g1,8399:30616949,18317496 -g1,8399:32583029,18317496 -) -(1,8400:6630773,19158984:25952256,505283,134348 -k1,8400:26177541,19158984:19546768 -h1,8399:26177541,19158984:0,0,0 -g1,8399:30167372,19158984 -g1,8400:30616949,19158984 -g1,8400:32583029,19158984 -) -(1,8400:6630773,20393688:25952256,131072,0 -r1,8418:32583029,20393688:25952256,131072,0 -g1,8400:32583029,20393688 -g1,8400:34549109,20393688 -) -(1,8404:6630773,23201256:25952256,32768,229376 -(1,8404:6630773,23201256:0,32768,229376 -(1,8404:6630773,23201256:5505024,32768,229376 -r1,8418:12135797,23201256:5505024,262144,229376 -) -k1,8404:6630773,23201256:-5505024 -) -(1,8404:6630773,23201256:25952256,32768,0 -r1,8418:32583029,23201256:25952256,32768,0 -) -) -(1,8404:6630773,24805584:25952256,615776,151780 -(1,8404:6630773,24805584:1974731,573309,14155 -g1,8404:6630773,24805584 -g1,8404:8605504,24805584 -) -g1,8404:10904245,24805584 -g1,8404:11961996,24805584 -g1,8404:13695292,24805584 -k1,8404:32583029,24805584:15886712 -g1,8404:32583029,24805584 -) -(1,8407:6630773,26040288:25952256,513147,134348 -k1,8406:7845631,26040288:172836 -k1,8406:9762380,26040288:172836 -k1,8406:11265598,26040288:172837 -k1,8406:12913649,26040288:172836 -k1,8406:15244586,26040288:172836 -k1,8406:16930648,26040288:172836 -k1,8406:20053259,26040288:172836 -k1,8406:21606939,26040288:172836 -k1,8406:25093932,26040288:172837 -k1,8406:29921790,26040288:172836 -k1,8406:31391584,26040288:172836 -k1,8406:32583029,26040288:0 -) -(1,8407:6630773,26881776:25952256,505283,134348 -k1,8406:8579705,26881776:250894 -k1,8406:10991975,26881776:250893 -k1,8406:12347151,26881776:250894 -k1,8406:13986097,26881776:250893 -k1,8406:14853029,26881776:250894 -k1,8406:20039439,26881776:250894 -k1,8406:20646192,26881776:250893 -k1,8406:23095164,26881776:250894 -k1,8406:24735420,26881776:250893 -k1,8406:27540907,26881776:250894 -k1,8406:30480087,26881776:250893 -k1,8406:31835263,26881776:250894 -k1,8406:32583029,26881776:0 -) -(1,8407:6630773,27723264:25952256,513147,134348 -k1,8406:10209139,27723264:202607 -k1,8406:11229635,27723264:202607 -k1,8406:12966440,27723264:202607 -k1,8406:13855209,27723264:202607 -k1,8406:14413676,27723264:202607 -k1,8406:16005646,27723264:202607 -k1,8406:18762847,27723264:202608 -k1,8406:20698226,27723264:202607 -k1,8406:22638848,27723264:202607 -k1,8406:24880935,27723264:202607 -k1,8406:28395732,27723264:202607 -k1,8406:29617424,27723264:202607 -k1,8406:31505617,27723264:202607 -k1,8407:32583029,27723264:0 -) -(1,8407:6630773,28564752:25952256,513147,134348 -k1,8406:8694264,28564752:174743 -k1,8406:11427532,28564752:174742 -k1,8406:11958135,28564752:174743 -k1,8406:14378796,28564752:174742 -k1,8406:15212831,28564752:174743 -k1,8406:17514872,28564752:174742 -k1,8406:18881060,28564752:174743 -k1,8406:21769648,28564752:174742 -k1,8406:23782021,28564752:174743 -k1,8406:26730247,28564752:174742 -k1,8406:30043509,28564752:174743 -k1,8407:32583029,28564752:0 -k1,8407:32583029,28564752:0 -) -(1,8409:6630773,29406240:25952256,513147,134348 -h1,8408:6630773,29406240:983040,0,0 -k1,8408:11032766,29406240:264050 -k1,8408:14246592,29406240:264051 -k1,8408:15891486,29406240:264050 -k1,8408:19296022,29406240:264051 -k1,8408:20999898,29406240:264050 -k1,8408:21915377,29406240:264051 -k1,8408:22927193,29406240:264050 -k1,8408:25675059,29406240:264051 -k1,8408:26590537,29406240:264050 -k1,8408:29006790,29406240:264051 -k1,8408:29953725,29406240:264050 -k1,8408:32583029,29406240:0 -) -(1,8409:6630773,30247728:25952256,505283,134348 -k1,8408:7493465,30247728:246654 -k1,8408:8095978,30247728:246653 -k1,8408:9580607,30247728:246654 -k1,8408:11111767,30247728:246654 -k1,8408:13196705,30247728:246653 -k1,8408:17341440,30247728:246654 -k1,8408:21425881,30247728:246653 -k1,8408:23212631,30247728:246654 -k1,8408:25492212,30247728:246654 -k1,8408:28480891,30247728:246653 -k1,8408:31391584,30247728:246654 -k1,8408:32583029,30247728:0 -) -(1,8409:6630773,31089216:25952256,473825,134348 -g1,8408:9883980,31089216 -k1,8409:32583029,31089216:19949158 -g1,8409:32583029,31089216 -) -(1,8411:6630773,31930704:25952256,513147,126483 -h1,8410:6630773,31930704:983040,0,0 -k1,8410:9565475,31930704:256246 -k1,8410:11751100,31930704:256245 -k1,8410:14232293,31930704:256246 -k1,8410:15507624,31930704:256246 -k1,8410:17417343,31930704:256246 -k1,8410:20613533,31930704:256245 -k1,8410:21529071,31930704:256246 -k1,8410:25275109,31930704:256246 -k1,8410:27391922,31930704:256246 -k1,8410:28299596,31930704:256246 -k1,8410:29303607,31930704:256245 -k1,8410:31931601,31930704:256246 -k1,8410:32583029,31930704:0 -) -(1,8411:6630773,32772192:25952256,513147,126483 -k1,8410:9598780,32772192:205664 -k1,8410:11193806,32772192:205663 -k1,8410:12837985,32772192:205664 -k1,8410:14235094,32772192:205664 -k1,8410:16602134,32772192:205663 -k1,8410:18523531,32772192:205664 -k1,8410:20195890,32772192:205663 -k1,8410:25458312,32772192:205664 -k1,8410:26855421,32772192:205664 -k1,8410:30224507,32772192:205663 -k1,8410:31089463,32772192:205664 -k1,8410:32583029,32772192:0 -) -(1,8411:6630773,33613680:25952256,473825,126483 -g1,8410:7185862,33613680 -g1,8410:11315940,33613680 -k1,8411:32583029,33613680:19698812 -g1,8411:32583029,33613680 -) -(1,8413:6630773,34455168:25952256,513147,134348 -h1,8412:6630773,34455168:983040,0,0 -k1,8412:8485142,34455168:243494 -k1,8412:9931877,34455168:243494 -k1,8412:12766665,34455168:243494 -k1,8412:13223106,34455168:243449 -k1,8412:14599062,34455168:243494 -k1,8412:16317116,34455168:243494 -k1,8412:17731083,34455168:243494 -k1,8412:20533103,34455168:243494 -k1,8412:21795682,34455168:243494 -k1,8412:23131661,34455168:243494 -k1,8412:24042311,34455168:243494 -k1,8412:24700603,34455168:243449 -k1,8412:27279145,34455168:243494 -k1,8412:30001211,34455168:243494 -k1,8412:31812326,34455168:243494 -k1,8412:32583029,34455168:0 -) -(1,8413:6630773,35296656:25952256,505283,126483 -g1,8412:9968521,35296656 -g1,8412:12292427,35296656 -k1,8413:32583029,35296656:18285856 -g1,8413:32583029,35296656 -) -(1,8414:6630773,38104224:25952256,32768,229376 -(1,8414:6630773,38104224:0,32768,229376 -(1,8414:6630773,38104224:5505024,32768,229376 -r1,8418:12135797,38104224:5505024,262144,229376 -) -k1,8414:6630773,38104224:-5505024 -) -(1,8414:6630773,38104224:25952256,32768,0 -r1,8418:32583029,38104224:25952256,32768,0 -) -) -(1,8414:6630773,39708552:25952256,606339,161218 -(1,8414:6630773,39708552:1974731,582746,14155 -g1,8414:6630773,39708552 -g1,8414:8605504,39708552 -) -g1,8414:11767747,39708552 -k1,8414:32583029,39708552:18128044 -g1,8414:32583029,39708552 -) -(1,8417:6630773,40943256:25952256,505283,134348 -k1,8416:7499830,40943256:241222 -k1,8416:8155852,40943256:241179 -k1,8416:11413041,40943256:241222 -k1,8416:12673348,40943256:241222 -k1,8416:15112648,40943256:241222 -k1,8416:17335022,40943256:241221 -k1,8416:18227672,40943256:241222 -k1,8416:18824754,40943256:241222 -k1,8416:21357770,40943256:241222 -k1,8416:24441287,40943256:241221 -k1,8416:26407417,40943256:241222 -k1,8416:27180136,40943256:241222 -k1,8416:27777218,40943256:241222 -k1,8416:30023185,40943256:241221 -k1,8416:30751953,40943256:241180 -k1,8416:32583029,40943256:0 -) -(1,8417:6630773,41784744:25952256,513147,134348 -k1,8416:7343388,41784744:181118 -k1,8416:9002997,41784744:181117 -k1,8416:10751736,41784744:181118 -k1,8416:13604101,41784744:181118 -k1,8416:18557550,41784744:181117 -k1,8416:20234855,41784744:181118 -k1,8416:23932634,41784744:181117 -k1,8416:26412100,41784744:181118 -k1,8416:27244646,41784744:181118 -k1,8416:30351290,41784744:181117 -k1,8416:30888268,41784744:181118 -k1,8416:32583029,41784744:0 -) -(1,8417:6630773,42626232:25952256,505283,126483 -k1,8416:8394412,42626232:254345 -k1,8416:10798338,42626232:254345 -k1,8416:14569345,42626232:254345 -k1,8416:15927972,42626232:254345 -k1,8416:16930084,42626232:254346 -k1,8416:20317050,42626232:254345 -k1,8416:21838861,42626232:254345 -k1,8416:25506976,42626232:254345 -k1,8416:29451653,42626232:254345 -k1,8416:31591469,42626232:254345 -k1,8416:32583029,42626232:0 -) -(1,8417:6630773,43467720:25952256,513147,134348 -k1,8416:7790701,43467720:140843 -k1,8416:11236524,43467720:140842 -k1,8416:12036659,43467720:140843 -k1,8416:14469296,43467720:140843 -k1,8416:17452435,43467720:140843 -k1,8416:21372083,43467720:140842 -k1,8416:23699207,43467720:140843 -k1,8416:24944332,43467720:140843 -k1,8416:26447669,43467720:140843 -k1,8416:28156132,43467720:140842 -k1,8416:30421652,43467720:140843 -k1,8416:32583029,43467720:0 -) -(1,8417:6630773,44309208:25952256,513147,134348 -k1,8416:10171564,44309208:178794 -k1,8416:11725959,44309208:178794 -k1,8416:12260613,44309208:178794 -k1,8416:13572525,44309208:178794 -k1,8416:15247506,44309208:178794 -k1,8416:19116632,44309208:178794 -k1,8416:19946854,44309208:178794 -k1,8416:22811969,44309208:178794 -k1,8416:25152140,44309208:178794 -k1,8416:28692931,44309208:178794 -k1,8416:31923737,44309208:178794 -k1,8416:32583029,44309208:0 -) -] -(1,8418:32583029,45706769:0,0,0 -g1,8418:32583029,45706769 -) -) -] -(1,8418:6630773,47279633:25952256,485622,11795 -(1,8418:6630773,47279633:25952256,485622,11795 -(1,8418:6630773,47279633:0,0,0 -v1,8418:6630773,47279633:0,0,0 -) -g1,8418:6830002,47279633 -k1,8418:31387652,47279633:24557650 -) -) -] -(1,8418:4262630,4025873:0,0,0 -[1,8418:-473656,4025873:0,0,0 -(1,8418:-473656,-710413:0,0,0 -(1,8418:-473656,-710413:0,0,0 -g1,8418:-473656,-710413 -) -g1,8418:-473656,-710413 +k1,6148:62087500,1915420:25935872 +g1,6148:62087500,1915420 ) ] ) -] -!14244 -}138 -Input:1146:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1147:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1148:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!294 -{139 -[1,8453:4262630,47279633:28320399,43253760,0 -(1,8453:4262630,4025873:0,0,0 -[1,8453:-473656,4025873:0,0,0 -(1,8453:-473656,-710413:0,0,0 -(1,8453:-473656,-644877:0,0,0 -k1,8453:-473656,-644877:-65536 +g1,6148:36675916,2439708 +(1,6148:36675916,2439708:1179648,16384,0 +r1,7514:37855564,2439708:1179648,16384,0 ) -(1,8453:-473656,4736287:0,0,0 -k1,8453:-473656,4736287:5209943 ) -g1,8453:-473656,-710413 +k1,7514:3078556,2439708:-34777008 ) ] +[1,7514:3078558,4812305:0,0,0 +(1,7514:3078558,49800853:0,16384,2228224 +k1,7514:1358238,49800853:-1720320 +(1,6148:1358238,49800853:1720320,16384,2228224 +(1,6148:1358238,49800853:1179648,16384,0 +r1,7514:2537886,49800853:1179648,16384,0 ) -[1,8453:6630773,47279633:25952256,43253760,0 -[1,8453:6630773,4812305:25952256,786432,0 -(1,8453:6630773,4812305:25952256,505283,134348 -(1,8453:6630773,4812305:25952256,505283,134348 -g1,8453:3078558,4812305 -[1,8453:3078558,4812305:0,0,0 -(1,8453:3078558,2439708:0,1703936,0 -k1,8453:1358238,2439708:-1720320 -(1,8393:1358238,2439708:1720320,1703936,0 -(1,8393:1358238,2439708:1179648,16384,0 -r1,8453:2537886,2439708:1179648,16384,0 +g1,6148:3062174,49800853 +(1,6148:3062174,52029077:16384,1703936,0 +[1,6148:3062174,52029077:25952256,1703936,0 +(1,6148:3062174,51504789:25952256,1179648,0 +(1,6148:3062174,51504789:16384,1179648,0 +r1,7514:3078558,51504789:16384,1179648,0 ) -g1,8393:3062174,2439708 -(1,8393:3062174,2439708:16384,1703936,0 -[1,8393:3062174,2439708:25952256,1703936,0 -(1,8393:3062174,1915420:25952256,1179648,0 -(1,8393:3062174,1915420:16384,1179648,0 -r1,8453:3078558,1915420:16384,1179648,0 -) -k1,8393:29014430,1915420:25935872 -g1,8393:29014430,1915420 +k1,6148:29014430,51504789:25935872 +g1,6148:29014430,51504789 ) ] -) -) +) +) +) +] +[1,7514:3078558,4812305:0,0,0 +(1,7514:3078558,49800853:0,16384,2228224 +g1,7514:29030814,49800853 +g1,7514:36135244,49800853 +(1,6148:36135244,49800853:1720320,16384,2228224 +(1,6148:36135244,52029077:16384,1703936,0 +[1,6148:36135244,52029077:25952256,1703936,0 +(1,6148:36135244,51504789:25952256,1179648,0 +(1,6148:36135244,51504789:16384,1179648,0 +r1,7514:36151628,51504789:16384,1179648,0 +) +k1,6148:62087500,51504789:25935872 +g1,6148:62087500,51504789 +) +] +) +g1,6148:36675916,49800853 +(1,6148:36675916,49800853:1179648,16384,0 +r1,7514:37855564,49800853:1179648,16384,0 +) +) +k1,7514:3078556,49800853:-34777008 +) +] +g1,7514:6630773,4812305 +g1,7514:6630773,4812305 +g1,7514:8364200,4812305 +g1,7514:10765439,4812305 +k1,7514:31786111,4812305:21020672 +) +) +] +[1,7514:6630773,45706769:25952256,40108032,0 +(1,7514:6630773,45706769:25952256,40108032,0 +(1,7514:6630773,45706769:0,0,0 +g1,7514:6630773,45706769 +) +[1,7514:6630773,45706769:25952256,40108032,0 +v1,7419:6630773,6254097:0,393216,0 +(1,7419:6630773,9103616:25952256,3242735,0 +g1,7419:6630773,9103616 +g1,7419:6237557,9103616 +r1,7514:6368629,9103616:131072,3242735,0 +g1,7419:6567858,9103616 +g1,7419:6764466,9103616 +[1,7419:6764466,9103616:25818563,3242735,0 +(1,7419:6764466,6374028:25818563,513147,126483 +k1,7418:9201093,6374028:231340 +k1,7418:10083861,6374028:231340 +k1,7418:11334286,6374028:231340 +(1,7418:11334286,6374028:0,459977,115847 +r1,7514:15561382,6374028:4227096,575824,115847 +k1,7418:11334286,6374028:-4227096 +) +(1,7418:11334286,6374028:4227096,459977,115847 +k1,7418:11334286,6374028:3277 +h1,7418:15558105,6374028:0,411205,112570 +) +k1,7418:15792722,6374028:231340 +k1,7418:19730778,6374028:231340 +k1,7418:21066400,6374028:231340 +k1,7418:22045505,6374028:231339 +k1,7418:24427737,6374028:231340 +k1,7418:25286912,6374028:231340 +k1,7418:28357927,6374028:231340 +k1,7418:30204074,6374028:231340 +k1,7418:31931601,6374028:231340 +k1,7418:32583029,6374028:0 +) +(1,7419:6764466,7239108:25818563,513147,134348 +k1,7418:9221947,7239108:253505 +k1,7418:12668366,7239108:253505 +k1,7418:15875580,7239108:253506 +k1,7418:16788377,7239108:253505 +k1,7418:20366523,7239108:253505 +k1,7418:23353535,7239108:253505 +k1,7418:24798485,7239108:253505 +k1,7418:26375817,7239108:253505 +k1,7418:28364716,7239108:253506 +k1,7418:31357626,7239108:253505 +k1,7418:32227169,7239108:253505 +k1,7418:32583029,7239108:0 +) +(1,7419:6764466,8104188:25818563,513147,134348 +k1,7418:8863892,8104188:226407 +k1,7418:9505114,8104188:226379 +k1,7418:12917881,8104188:226407 +k1,7418:13760326,8104188:226407 +k1,7418:15438355,8104188:226407 +k1,7418:17205513,8104188:226407 +k1,7418:19534315,8104188:226407 +k1,7418:20952167,8104188:226407 +k1,7418:21644535,8104188:226407 +k1,7418:22890027,8104188:226407 +k1,7418:25876154,8104188:226406 +k1,7418:26634058,8104188:226407 +k1,7418:27879550,8104188:226407 +k1,7418:29759430,8104188:226407 +k1,7418:31683875,8104188:226407 +k1,7419:32583029,8104188:0 +) +(1,7419:6764466,8969268:25818563,513147,134348 +g1,7418:9274494,8969268 +g1,7418:10756918,8969268 +g1,7418:13579553,8969268 +g1,7418:16620423,8969268 +g1,7418:17709631,8969268 +g1,7418:21429454,8969268 +g1,7418:22280111,8969268 +g1,7418:23250043,8969268 +g1,7418:25940295,8969268 +g1,7418:27528887,8969268 +k1,7419:32583029,8969268:3004176 +g1,7419:32583029,8969268 +) +] +g1,7419:32583029,9103616 +) +h1,7419:6630773,9103616:0,0,0 +(1,7421:6630773,11220434:25952256,564462,147783 +(1,7421:6630773,11220434:2450326,527696,0 +g1,7421:6630773,11220434 +g1,7421:9081099,11220434 +) +g1,7421:13329340,11220434 +g1,7421:15106349,11220434 +k1,7421:32583029,11220434:14962916 +g1,7421:32583029,11220434 +) +(1,7423:6630773,12478730:25952256,513147,134348 +k1,7422:8679905,12478730:265897 +k1,7422:9964888,12478730:265898 +k1,7422:12299101,12478730:265897 +k1,7422:13224290,12478730:265897 +k1,7422:14879551,12478730:265898 +k1,7422:17352045,12478730:265897 +k1,7422:18609503,12478730:265898 +k1,7422:20437778,12478730:265897 +k1,7422:23389996,12478730:265897 +k1,7422:27018546,12478730:265898 +k1,7422:29727625,12478730:265897 +k1,7422:32583029,12478730:0 +) +(1,7423:6630773,13343810:25952256,505283,134348 +k1,7422:7494754,13343810:212553 +k1,7422:9322115,13343810:212554 +k1,7422:11270061,13343810:212553 +k1,7422:15946928,13343810:212554 +k1,7422:19640098,13343810:212553 +k1,7422:20480487,13343810:212554 +k1,7422:22186606,13343810:212553 +k1,7422:24096542,13343810:212554 +(1,7422:24096542,13343810:0,452978,115847 +r1,7514:26916791,13343810:2820249,568825,115847 +k1,7422:24096542,13343810:-2820249 +) +(1,7422:24096542,13343810:2820249,452978,115847 +k1,7422:24096542,13343810:3277 +h1,7422:26913514,13343810:0,411205,112570 +) +k1,7422:27129344,13343810:212553 +k1,7422:27873395,13343810:212554 +k1,7422:30053339,13343810:212553 +k1,7422:32583029,13343810:0 +) +(1,7423:6630773,14208890:25952256,513147,102891 +k1,7422:10169717,14208890:235274 +k1,7422:10936488,14208890:235274 +k1,7422:12749214,14208890:235274 +k1,7422:13600527,14208890:235275 +k1,7422:14854886,14208890:235274 +k1,7422:19747804,14208890:235274 +k1,7422:20642370,14208890:235274 +k1,7422:21896729,14208890:235274 +k1,7422:23521366,14208890:235274 +k1,7422:25806606,14208890:235274 +k1,7422:27111429,14208890:235275 +k1,7422:28365788,14208890:235274 +k1,7422:30669378,14208890:235274 +k1,7422:31563944,14208890:235274 +k1,7422:32583029,14208890:0 +) +(1,7423:6630773,15073970:25952256,513147,134348 +k1,7422:9590117,15073970:246153 +k1,7422:10827830,15073970:246153 +k1,7422:14586057,15073970:246153 +k1,7422:15298171,15073970:246153 +k1,7422:17967191,15073970:246154 +k1,7422:20627690,15073970:246153 +k1,7422:22571881,15073970:246153 +k1,7422:25075749,15073970:246153 +k1,7422:26340987,15073970:246153 +k1,7422:29793161,15073970:246153 +k1,7423:32583029,15073970:0 +) +(1,7423:6630773,15939050:25952256,513147,134348 +(1,7422:6630773,15939050:0,452978,115847 +r1,7514:9451022,15939050:2820249,568825,115847 +k1,7422:6630773,15939050:-2820249 +) +(1,7422:6630773,15939050:2820249,452978,115847 +k1,7422:6630773,15939050:3277 +h1,7422:9447745,15939050:0,411205,112570 +) +k1,7422:9760814,15939050:309792 +k1,7422:12529517,15939050:309792 +k1,7422:14547177,15939050:309792 +k1,7422:17144176,15939050:309792 +k1,7422:22077532,15939050:309791 +k1,7422:23038752,15939050:309792 +k1,7422:27420296,15939050:309792 +k1,7422:28412973,15939050:309792 +k1,7422:32583029,15939050:0 +) +(1,7423:6630773,16804130:25952256,513147,126483 +k1,7422:8663626,16804130:241099 +k1,7422:10101412,16804130:241099 +k1,7422:13374862,16804130:241099 +k1,7422:14147458,16804130:241099 +k1,7422:17597200,16804130:241099 +k1,7422:18785950,16804130:241099 +k1,7422:20478671,16804130:241099 +k1,7422:22097338,16804130:241100 +k1,7422:23529882,16804130:241099 +k1,7422:24236942,16804130:241099 +k1,7422:24936138,16804130:241099 +k1,7422:27518183,16804130:241099 +(1,7422:27518183,16804130:0,414482,115847 +r1,7514:28931584,16804130:1413401,530329,115847 +k1,7422:27518183,16804130:-1413401 +) +(1,7422:27518183,16804130:1413401,414482,115847 +k1,7422:27518183,16804130:3277 +h1,7422:28928307,16804130:0,411205,112570 +) +k1,7422:29346353,16804130:241099 +k1,7422:30606537,16804130:241099 +k1,7422:32051532,16804130:241099 +k1,7422:32583029,16804130:0 +) +(1,7423:6630773,17669210:25952256,513147,115847 +g1,7422:9588412,17669210 +g1,7422:10403679,17669210 +g1,7422:11621993,17669210 +g1,7422:14599949,17669210 +g1,7422:16188541,17669210 +g1,7422:18437736,17669210 +g1,7422:19828410,17669210 +g1,7422:22882387,17669210 +g1,7422:23555441,17669210 +(1,7422:23555441,17669210:0,414482,115847 +r1,7514:25320554,17669210:1765113,530329,115847 +k1,7422:23555441,17669210:-1765113 +) +(1,7422:23555441,17669210:1765113,414482,115847 +k1,7422:23555441,17669210:3277 +h1,7422:25317277,17669210:0,411205,112570 +) +k1,7423:32583029,17669210:7088805 +g1,7423:32583029,17669210 +) +(1,7425:6630773,18534290:25952256,513147,126483 +h1,7424:6630773,18534290:983040,0,0 +k1,7424:8759353,18534290:191991 +k1,7424:10880724,18534290:191991 +k1,7424:11428575,18534290:191991 +k1,7424:13009930,18534290:191992 +k1,7424:15078217,18534290:191991 +k1,7424:16664159,18534290:191991 +k1,7424:17752683,18534290:191991 +k1,7424:19478872,18534290:191991 +k1,7424:20862308,18534290:191991 +k1,7424:22709083,18534290:191991 +k1,7424:25787935,18534290:191991 +k1,7424:27021949,18534290:191992 +k1,7424:29596829,18534290:191991 +(1,7424:29596829,18534290:0,414482,115847 +r1,7514:29955095,18534290:358266,530329,115847 +k1,7424:29596829,18534290:-358266 +) +(1,7424:29596829,18534290:358266,414482,115847 +k1,7424:29596829,18534290:3277 +h1,7424:29951818,18534290:0,411205,112570 +) +k1,7424:30320756,18534290:191991 +k1,7424:31381099,18534290:191991 +k1,7424:32583029,18534290:0 +) +(1,7425:6630773,19399370:25952256,513147,134348 +k1,7424:7635455,19399370:195312 +k1,7424:8245607,19399370:195309 +k1,7424:12757776,19399370:195312 +k1,7424:16095540,19399370:195313 +(1,7424:16095540,19399370:0,452978,115847 +r1,7514:17157229,19399370:1061689,568825,115847 +k1,7424:16095540,19399370:-1061689 +) +(1,7424:16095540,19399370:1061689,452978,115847 +k1,7424:16095540,19399370:3277 +h1,7424:17153952,19399370:0,411205,112570 +) +k1,7424:17352541,19399370:195312 +k1,7424:18309382,19399370:195313 +k1,7424:21511486,19399370:195312 +k1,7424:22164895,19399370:195312 +k1,7424:23256741,19399370:195313 +k1,7424:25381433,19399370:195312 +k1,7424:27266264,19399370:195313 +k1,7424:28409227,19399370:195312 +k1,7424:30987429,19399370:195313 +(1,7424:30987429,19399370:0,414482,115847 +r1,7514:31345695,19399370:358266,530329,115847 +k1,7424:30987429,19399370:-358266 +) +(1,7424:30987429,19399370:358266,414482,115847 +k1,7424:30987429,19399370:3277 +h1,7424:31342418,19399370:0,411205,112570 +) +k1,7424:31714677,19399370:195312 +k1,7424:32583029,19399370:0 +) +(1,7425:6630773,20264450:25952256,505283,134348 +g1,7424:8031932,20264450 +g1,7424:9040531,20264450 +g1,7424:9654603,20264450 +g1,7424:14170689,20264450 +g1,7424:17512369,20264450 +(1,7424:17512369,20264450:0,452978,115847 +r1,7514:22442889,20264450:4930520,568825,115847 +k1,7424:17512369,20264450:-4930520 +) +(1,7424:17512369,20264450:4930520,452978,115847 +g1,7424:20329341,20264450 +h1,7424:22439612,20264450:0,411205,112570 +) +g1,7424:22642118,20264450 +g1,7424:23602875,20264450 +g1,7424:26808896,20264450 +g1,7424:27466222,20264450 +g1,7424:29320235,20264450 +k1,7425:32583029,20264450:1333414 +g1,7425:32583029,20264450 +) +v1,7427:6630773,20949305:0,393216,0 +(1,7438:6630773,24748997:25952256,4192908,196608 +g1,7438:6630773,24748997 +g1,7438:6630773,24748997 +g1,7438:6434165,24748997 +(1,7438:6434165,24748997:0,4192908,196608 +r1,7514:32779637,24748997:26345472,4389516,196608 +k1,7438:6434165,24748997:-26345472 +) +(1,7438:6434165,24748997:26345472,4192908,196608 +[1,7438:6630773,24748997:25952256,3996300,0 +(1,7429:6630773,21183742:25952256,431045,106246 +(1,7428:6630773,21183742:0,0,0 +g1,7428:6630773,21183742 +g1,7428:6630773,21183742 +g1,7428:6303093,21183742 +(1,7428:6303093,21183742:0,0,0 +) +g1,7428:6630773,21183742 +) +g1,7429:8290543,21183742 +g1,7429:9286405,21183742 +g1,7429:13601806,21183742 +g1,7429:14265714,21183742 +g1,7429:15925484,21183742 +g1,7429:16589392,21183742 +g1,7429:17253300,21183742 +g1,7429:18913070,21183742 +g1,7429:19576978,21183742 +g1,7429:20240886,21183742 +g1,7429:22896518,21183742 +h1,7429:25220196,21183742:0,0,0 +k1,7429:32583029,21183742:7362833 +g1,7429:32583029,21183742 +) +(1,7430:6630773,21868597:25952256,431045,86428 +h1,7430:6630773,21868597:0,0,0 +g1,7430:10946175,21868597 +g1,7430:11610083,21868597 +g1,7430:12273991,21868597 +h1,7430:12937899,21868597:0,0,0 +k1,7430:32583029,21868597:19645130 +g1,7430:32583029,21868597 +) +(1,7437:6630773,22684524:25952256,398014,106246 +(1,7432:6630773,22684524:0,0,0 +g1,7432:6630773,22684524 +g1,7432:6630773,22684524 +g1,7432:6303093,22684524 +(1,7432:6303093,22684524:0,0,0 +) +g1,7432:6630773,22684524 +) +g1,7437:7626635,22684524 +g1,7437:7958589,22684524 +g1,7437:8290543,22684524 +g1,7437:8954451,22684524 +g1,7437:9618359,22684524 +g1,7437:9950313,22684524 +g1,7437:10282267,22684524 +g1,7437:10614221,22684524 +g1,7437:10946175,22684524 +h1,7437:11278129,22684524:0,0,0 +k1,7437:32583029,22684524:21304900 +g1,7437:32583029,22684524 +) +(1,7437:6630773,23369379:25952256,398014,8257 +h1,7437:6630773,23369379:0,0,0 +g1,7437:7626635,23369379 +g1,7437:8290543,23369379 +g1,7437:8954451,23369379 +g1,7437:9618359,23369379 +h1,7437:11278129,23369379:0,0,0 +k1,7437:32583029,23369379:21304900 +g1,7437:32583029,23369379 +) +(1,7437:6630773,24054234:25952256,398014,9908 +h1,7437:6630773,24054234:0,0,0 +g1,7437:7626635,24054234 +g1,7437:8290543,24054234 +g1,7437:8954451,24054234 +g1,7437:9618359,24054234 +g1,7437:9950313,24054234 +h1,7437:11278129,24054234:0,0,0 +k1,7437:32583029,24054234:21304900 +g1,7437:32583029,24054234 +) +(1,7437:6630773,24739089:25952256,407923,9908 +h1,7437:6630773,24739089:0,0,0 +g1,7437:7626635,24739089 +g1,7437:8290543,24739089 +g1,7437:8954451,24739089 +g1,7437:9618359,24739089 +h1,7437:11278129,24739089:0,0,0 +k1,7437:32583029,24739089:21304900 +g1,7437:32583029,24739089 +) +] +) +g1,7438:32583029,24748997 +g1,7438:6630773,24748997 +g1,7438:6630773,24748997 +g1,7438:32583029,24748997 +g1,7438:32583029,24748997 +) +h1,7438:6630773,24945605:0,0,0 +v1,7442:6630773,25810685:0,393216,0 +(1,7443:6630773,27929169:25952256,2511700,0 +g1,7443:6630773,27929169 +g1,7443:6237557,27929169 +r1,7514:6368629,27929169:131072,2511700,0 +g1,7443:6567858,27929169 +g1,7443:6764466,27929169 +[1,7443:6764466,27929169:25818563,2511700,0 +(1,7443:6764466,26083162:25818563,665693,196608 +(1,7442:6764466,26083162:0,665693,196608 +r1,7514:8010564,26083162:1246098,862301,196608 +k1,7442:6764466,26083162:-1246098 +) +(1,7442:6764466,26083162:1246098,665693,196608 +) +k1,7442:8232446,26083162:221882 +k1,7442:9550375,26083162:327680 +k1,7442:11406069,26083162:221881 +k1,7442:12159448,26083162:221882 +k1,7442:13400415,26083162:221882 +k1,7442:16382018,26083162:221882 +k1,7442:17271055,26083162:221881 +(1,7442:17271055,26083162:0,452978,115847 +r1,7514:20091304,26083162:2820249,568825,115847 +k1,7442:17271055,26083162:-2820249 +) +(1,7442:17271055,26083162:2820249,452978,115847 +k1,7442:17271055,26083162:3277 +h1,7442:20088027,26083162:0,411205,112570 +) +k1,7442:20313186,26083162:221882 +k1,7442:22233106,26083162:221882 +k1,7442:23474072,26083162:221881 +k1,7442:26728305,26083162:221882 +k1,7442:27481684,26083162:221882 +(1,7442:27481684,26083162:0,414482,115847 +r1,7514:28191662,26083162:709978,530329,115847 +k1,7442:27481684,26083162:-709978 +) +(1,7442:27481684,26083162:709978,414482,115847 +k1,7442:27481684,26083162:3277 +h1,7442:28188385,26083162:0,411205,112570 +) +k1,7442:28740569,26083162:221882 +k1,7442:30358367,26083162:221881 +k1,7442:31599334,26083162:221882 +k1,7443:32583029,26083162:0 +) +(1,7443:6764466,26948242:25818563,513147,134348 +k1,7442:8466829,26948242:215351 +k1,7442:9443708,26948242:215351 +k1,7442:11916775,26948242:215352 +k1,7442:13628313,26948242:215351 +k1,7442:14495092,26948242:215351 +k1,7442:15901888,26948242:215351 +k1,7442:17494150,26948242:215351 +k1,7442:18657153,26948242:215352 +k1,7442:19228364,26948242:215351 +k1,7442:20810796,26948242:215351 +k1,7442:22945041,26948242:215351 +k1,7442:24682138,26948242:215351 +k1,7442:25845141,26948242:215352 +k1,7442:28822835,26948242:215351 +k1,7442:30572384,26948242:215351 +k1,7443:32583029,26948242:0 +) +(1,7443:6764466,27813322:25818563,505283,115847 +(1,7442:6764466,27813322:0,414482,115847 +r1,7514:7474444,27813322:709978,530329,115847 +k1,7442:6764466,27813322:-709978 +) +(1,7442:6764466,27813322:709978,414482,115847 +k1,7442:6764466,27813322:3277 +h1,7442:7471167,27813322:0,411205,112570 +) +g1,7442:7847343,27813322 +(1,7442:7847343,27813322:0,414482,115847 +r1,7514:9260744,27813322:1413401,530329,115847 +k1,7442:7847343,27813322:-1413401 +) +(1,7442:7847343,27813322:1413401,414482,115847 +k1,7442:7847343,27813322:3277 +h1,7442:9257467,27813322:0,411205,112570 +) +g1,7442:9459973,27813322 +g1,7442:10850647,27813322 +(1,7442:10850647,27813322:0,414482,115847 +r1,7514:12615760,27813322:1765113,530329,115847 +k1,7442:10850647,27813322:-1765113 +) +(1,7442:10850647,27813322:1765113,414482,115847 +k1,7442:10850647,27813322:3277 +h1,7442:12612483,27813322:0,411205,112570 +) +k1,7443:32583030,27813322:19793600 +g1,7443:32583030,27813322 +) +] +g1,7443:32583029,27929169 +) +h1,7443:6630773,27929169:0,0,0 +(1,7446:6630773,28794249:25952256,513147,134348 +h1,7445:6630773,28794249:983040,0,0 +k1,7445:9590324,28794249:193276 +k1,7445:11873544,28794249:193277 +k1,7445:15092617,28794249:193276 +k1,7445:16570400,28794249:193277 +k1,7445:18774321,28794249:193276 +k1,7445:19323458,28794249:193277 +k1,7445:21668281,28794249:193276 +k1,7445:23250921,28794249:193277 +k1,7445:25494163,28794249:193276 +k1,7445:26370325,28794249:193277 +k1,7445:28265571,28794249:193276 +k1,7445:31563944,28794249:193277 +k1,7445:32583029,28794249:0 +) +(1,7446:6630773,29659329:25952256,505283,134348 +k1,7445:10006094,29659329:160780 +k1,7445:13243789,29659329:160780 +(1,7445:13243789,29659329:0,452978,115847 +r1,7514:14305479,29659329:1061690,568825,115847 +k1,7445:13243789,29659329:-1061690 +) +(1,7445:13243789,29659329:1061690,452978,115847 +g1,7445:13950490,29659329 +h1,7445:14302202,29659329:0,411205,112570 +) +k1,7445:14639929,29659329:160780 +(1,7445:14639929,29659329:0,452978,115847 +r1,7514:16405043,29659329:1765114,568825,115847 +k1,7445:14639929,29659329:-1765114 +) +(1,7445:14639929,29659329:1765114,452978,115847 +g1,7445:15698342,29659329 +h1,7445:16401766,29659329:0,411205,112570 +) +k1,7445:16739493,29659329:160780 +k1,7445:17583158,29659329:160780 +(1,7445:17583158,29659329:0,459977,115847 +r1,7514:17941424,29659329:358266,575824,115847 +k1,7445:17583158,29659329:-358266 +) +(1,7445:17583158,29659329:358266,459977,115847 +k1,7445:17583158,29659329:3277 +h1,7445:17938147,29659329:0,411205,112570 +) +k1,7445:18102203,29659329:160779 +k1,7445:19367265,29659329:160780 +k1,7445:20275811,29659329:160780 +k1,7445:23584941,29659329:160780 +k1,7445:24397149,29659329:160780 +k1,7445:25577014,29659329:160780 +k1,7445:28875002,29659329:160780 +k1,7445:32583029,29659329:0 +) +(1,7446:6630773,30524409:25952256,513147,134348 +k1,7445:7470019,30524409:179954 +k1,7445:8669058,30524409:179954 +k1,7445:11544508,30524409:179954 +k1,7445:12997827,30524409:179954 +k1,7445:13793820,30524409:179955 +k1,7445:14992859,30524409:179954 +k1,7445:16826286,30524409:179954 +k1,7445:18244215,30524409:179954 +k1,7445:19110331,30524409:179954 +k1,7445:19941713,30524409:179954 +k1,7445:21140752,30524409:179954 +k1,7445:23058721,30524409:179954 +k1,7445:23897968,30524409:179955 +k1,7445:24433782,30524409:179954 +k1,7445:27125076,30524409:179954 +k1,7445:29730517,30524409:179954 +k1,7445:30929556,30524409:179954 +k1,7445:32583029,30524409:0 +) +(1,7446:6630773,31389489:25952256,505283,7863 +k1,7446:32583029,31389489:24389222 +g1,7446:32583029,31389489 +) +v1,7448:6630773,32074344:0,393216,0 +(1,7473:6630773,40577368:25952256,8896240,196608 +g1,7473:6630773,40577368 +g1,7473:6630773,40577368 +g1,7473:6434165,40577368 +(1,7473:6434165,40577368:0,8896240,196608 +r1,7514:32779637,40577368:26345472,9092848,196608 +k1,7473:6434165,40577368:-26345472 +) +(1,7473:6434165,40577368:26345472,8896240,196608 +[1,7473:6630773,40577368:25952256,8699632,0 +(1,7450:6630773,32308781:25952256,431045,86428 +(1,7449:6630773,32308781:0,0,0 +g1,7449:6630773,32308781 +g1,7449:6630773,32308781 +g1,7449:6303093,32308781 +(1,7449:6303093,32308781:0,0,0 +) +g1,7449:6630773,32308781 +) +k1,7450:6630773,32308781:0 +g1,7450:10946175,32308781 +g1,7450:11610083,32308781 +g1,7450:12273991,32308781 +g1,7450:13601807,32308781 +g1,7450:14265715,32308781 +k1,7450:14265715,32308781:0 +h1,7450:15261577,32308781:0,0,0 +k1,7450:32583029,32308781:17321452 +g1,7450:32583029,32308781 +) +(1,7457:6630773,33124708:25952256,398014,106246 +(1,7452:6630773,33124708:0,0,0 +g1,7452:6630773,33124708 +g1,7452:6630773,33124708 +g1,7452:6303093,33124708 +(1,7452:6303093,33124708:0,0,0 +) +g1,7452:6630773,33124708 +) +g1,7457:7626635,33124708 +g1,7457:7958589,33124708 +g1,7457:8290543,33124708 +g1,7457:8954451,33124708 +h1,7457:9286405,33124708:0,0,0 +k1,7457:32583029,33124708:23296624 +g1,7457:32583029,33124708 +) +(1,7457:6630773,33809563:25952256,398014,4954 +h1,7457:6630773,33809563:0,0,0 +g1,7457:7626635,33809563 +g1,7457:8290543,33809563 +g1,7457:8954451,33809563 +h1,7457:9286405,33809563:0,0,0 +k1,7457:32583029,33809563:23296624 +g1,7457:32583029,33809563 +) +(1,7457:6630773,34494418:25952256,398014,9908 +h1,7457:6630773,34494418:0,0,0 +g1,7457:7626635,34494418 +g1,7457:8290543,34494418 +g1,7457:8954451,34494418 +h1,7457:9286405,34494418:0,0,0 +k1,7457:32583029,34494418:23296624 +g1,7457:32583029,34494418 +) +(1,7457:6630773,35179273:25952256,407923,9908 +h1,7457:6630773,35179273:0,0,0 +g1,7457:7626635,35179273 +g1,7457:8290543,35179273 +g1,7457:8954451,35179273 +h1,7457:9286405,35179273:0,0,0 +k1,7457:32583029,35179273:23296624 +g1,7457:32583029,35179273 +) +(1,7459:6630773,35995200:25952256,431045,106246 +(1,7458:6630773,35995200:0,0,0 +g1,7458:6630773,35995200 +g1,7458:6630773,35995200 +g1,7458:6303093,35995200 +(1,7458:6303093,35995200:0,0,0 +) +g1,7458:6630773,35995200 +) +k1,7459:6630773,35995200:0 +g1,7459:10946175,35995200 +g1,7459:11610083,35995200 +g1,7459:12273991,35995200 +g1,7459:13601807,35995200 +g1,7459:14265715,35995200 +g1,7459:15925485,35995200 +g1,7459:17585255,35995200 +g1,7459:18249163,35995200 +h1,7459:20240887,35995200:0,0,0 +k1,7459:32583029,35995200:12342142 +g1,7459:32583029,35995200 +) +(1,7466:6630773,36811127:25952256,398014,0 +(1,7461:6630773,36811127:0,0,0 +g1,7461:6630773,36811127 +g1,7461:6630773,36811127 +g1,7461:6303093,36811127 +(1,7461:6303093,36811127:0,0,0 +) +g1,7461:6630773,36811127 +) +g1,7466:7626635,36811127 +g1,7466:7958589,36811127 +g1,7466:8290543,36811127 +h1,7466:8622497,36811127:0,0,0 +k1,7466:32583029,36811127:23960532 +g1,7466:32583029,36811127 +) +(1,7466:6630773,37495982:25952256,398014,0 +h1,7466:6630773,37495982:0,0,0 +g1,7466:7626635,37495982 +g1,7466:8290543,37495982 +h1,7466:8622497,37495982:0,0,0 +k1,7466:32583029,37495982:23960532 +g1,7466:32583029,37495982 +) +(1,7466:6630773,38180837:25952256,398014,9908 +h1,7466:6630773,38180837:0,0,0 +g1,7466:7626635,38180837 +g1,7466:8290543,38180837 +h1,7466:8622497,38180837:0,0,0 +k1,7466:32583029,38180837:23960532 +g1,7466:32583029,38180837 +) +(1,7466:6630773,38865692:25952256,407923,9908 +h1,7466:6630773,38865692:0,0,0 +g1,7466:7626635,38865692 +g1,7466:8290543,38865692 +h1,7466:8622497,38865692:0,0,0 +k1,7466:32583029,38865692:23960532 +g1,7466:32583029,38865692 +) +(1,7468:6630773,39681619:25952256,431045,86428 +(1,7467:6630773,39681619:0,0,0 +g1,7467:6630773,39681619 +g1,7467:6630773,39681619 +g1,7467:6303093,39681619 +(1,7467:6303093,39681619:0,0,0 +) +g1,7467:6630773,39681619 +) +k1,7468:6630773,39681619:0 +g1,7468:10946175,39681619 +g1,7468:11610083,39681619 +g1,7468:12273991,39681619 +g1,7468:13601807,39681619 +g1,7468:14265715,39681619 +h1,7468:15593531,39681619:0,0,0 +k1,7468:32583029,39681619:16989498 +g1,7468:32583029,39681619 +) +(1,7472:6630773,40497546:25952256,424439,79822 +(1,7470:6630773,40497546:0,0,0 +g1,7470:6630773,40497546 +g1,7470:6630773,40497546 +g1,7470:6303093,40497546 +(1,7470:6303093,40497546:0,0,0 +) +g1,7470:6630773,40497546 +) +g1,7472:7626635,40497546 +g1,7472:8954451,40497546 +g1,7472:9618359,40497546 +g1,7472:10282267,40497546 +h1,7472:10614221,40497546:0,0,0 +k1,7472:32583029,40497546:21968808 +g1,7472:32583029,40497546 +) +] +) +g1,7473:32583029,40577368 +g1,7473:6630773,40577368 +g1,7473:6630773,40577368 +g1,7473:32583029,40577368 +g1,7473:32583029,40577368 +) +h1,7473:6630773,40773976:0,0,0 +v1,7477:6630773,41639056:0,393216,0 +(1,7478:6630773,42938917:25952256,1693077,0 +g1,7478:6630773,42938917 +g1,7478:6237557,42938917 +r1,7514:6368629,42938917:131072,1693077,0 +g1,7478:6567858,42938917 +g1,7478:6764466,42938917 +[1,7478:6764466,42938917:25818563,1693077,0 +(1,7478:6764466,41947354:25818563,701514,196608 +(1,7477:6764466,41947354:0,701514,196608 +r1,7514:8863446,41947354:2098980,898122,196608 +k1,7477:6764466,41947354:-2098980 +) +(1,7477:6764466,41947354:2098980,701514,196608 +) +k1,7477:9095098,41947354:231652 +k1,7477:10413027,41947354:327680 +k1,7477:12427915,41947354:231653 +k1,7477:13474835,41947354:231652 +k1,7477:16921029,41947354:231653 +k1,7477:20229596,41947354:231652 +k1,7477:22832997,41947354:231653 +k1,7477:23716077,41947354:231652 +k1,7477:25337093,41947354:231653 +k1,7477:27775342,41947354:231652 +k1,7477:30017640,41947354:231653 +k1,7477:30605152,41947354:231652 +k1,7477:32583029,41947354:0 +) +(1,7478:6764466,42812434:25818563,513147,126483 +g1,7477:7646580,42812434 +g1,7477:9913470,42812434 +g1,7477:11304144,42812434 +g1,7477:13201411,42812434 +g1,7477:14215908,42812434 +g1,7477:15795325,42812434 +g1,7477:18005199,42812434 +g1,7477:18560288,42812434 +g1,7477:20148880,42812434 +k1,7478:32583029,42812434:10230829 +g1,7478:32583029,42812434 +) +] +g1,7478:32583029,42938917 +) +h1,7478:6630773,42938917:0,0,0 +v1,7481:6630773,43803997:0,393216,0 +(1,7514:6630773,45111723:25952256,1700942,0 +g1,7514:6630773,45111723 +g1,7514:6237557,45111723 +r1,7514:6368629,45111723:131072,1700942,0 +g1,7514:6567858,45111723 +g1,7514:6764466,45111723 +[1,7514:6764466,45111723:25818563,1700942,0 +(1,7482:6764466,44112295:25818563,701514,196608 +(1,7481:6764466,44112295:0,701514,196608 +r1,7514:8010564,44112295:1246098,898122,196608 +k1,7481:6764466,44112295:-1246098 +) +(1,7481:6764466,44112295:1246098,701514,196608 +) +k1,7481:8176943,44112295:166379 +k1,7481:8504623,44112295:327680 +k1,7481:9298838,44112295:166380 +k1,7481:10484302,44112295:166379 +k1,7481:12017762,44112295:166379 +k1,7481:12851298,44112295:166380 +(1,7481:12851298,44112295:0,452978,115847 +r1,7514:15671547,44112295:2820249,568825,115847 +k1,7481:12851298,44112295:-2820249 +) +(1,7481:12851298,44112295:2820249,452978,115847 +k1,7481:12851298,44112295:3277 +h1,7481:15668270,44112295:0,411205,112570 +) +k1,7481:15837926,44112295:166379 +k1,7481:16872657,44112295:166379 +k1,7481:18143319,44112295:166380 +k1,7481:20130288,44112295:166379 +k1,7481:23009859,44112295:166380 +k1,7481:25590584,44112295:166379 +k1,7481:26443125,44112295:166379 +k1,7481:28685030,44112295:166380 +k1,7481:30893511,44112295:166379 +k1,7481:32583029,44112295:0 +) +(1,7482:6764466,44977375:25818563,513147,134348 +g1,7481:7911346,44977375 +g1,7481:9712275,44977375 +g1,7481:11613474,44977375 +g1,7481:15012171,44977375 +g1,7481:18425941,44977375 +g1,7481:20360563,44977375 +g1,7481:23636707,44977375 +(1,7481:23636707,44977375:0,452978,115847 +r1,7514:24698397,44977375:1061690,568825,115847 +k1,7481:23636707,44977375:-1061690 +) +(1,7481:23636707,44977375:1061690,452978,115847 +g1,7481:24343408,44977375 +h1,7481:24695120,44977375:0,411205,112570 +) +g1,7481:25071296,44977375 +(1,7481:25071296,44977375:0,452978,115847 +r1,7514:26836410,44977375:1765114,568825,115847 +k1,7481:25071296,44977375:-1765114 +) +(1,7481:25071296,44977375:1765114,452978,115847 +g1,7481:26129709,44977375 +h1,7481:26833133,44977375:0,411205,112570 +) +g1,7481:27035639,44977375 +g1,7481:27917753,44977375 +(1,7481:27917753,44977375:0,459977,115847 +r1,7514:28276019,44977375:358266,575824,115847 +k1,7481:27917753,44977375:-358266 +) +(1,7481:27917753,44977375:358266,459977,115847 +k1,7481:27917753,44977375:3277 +h1,7481:28272742,44977375:0,411205,112570 +) +g1,7481:28475248,44977375 +g1,7481:29205974,44977375 +k1,7482:32583029,44977375:905037 +g1,7482:32583029,44977375 +) +] +g1,7514:32583029,45111723 +) +] +(1,7514:32583029,45706769:0,0,0 +g1,7514:32583029,45706769 +) +) +] +(1,7514:6630773,47279633:25952256,0,0 +h1,7514:6630773,47279633:25952256,0,0 ) ] -[1,8453:3078558,4812305:0,0,0 -(1,8453:3078558,2439708:0,1703936,0 -g1,8453:29030814,2439708 -g1,8453:36135244,2439708 -(1,8393:36135244,2439708:1720320,1703936,0 -(1,8393:36135244,2439708:16384,1703936,0 -[1,8393:36135244,2439708:25952256,1703936,0 -(1,8393:36135244,1915420:25952256,1179648,0 -(1,8393:36135244,1915420:16384,1179648,0 -r1,8453:36151628,1915420:16384,1179648,0 +(1,7514:4262630,4025873:0,0,0 +[1,7514:-473656,4025873:0,0,0 +(1,7514:-473656,-710413:0,0,0 +(1,7514:-473656,-710413:0,0,0 +g1,7514:-473656,-710413 ) -k1,8393:62087500,1915420:25935872 -g1,8393:62087500,1915420 +g1,7514:-473656,-710413 +) +] ) ] +!29319 +}114 +Input:997:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:998:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:999:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1000:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1001:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1002:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1003:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1004:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1005:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1006:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1007:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1008:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1009:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1010:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1011:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1012:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1013:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1014:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1701 +{115 +[1,7560:4262630,47279633:28320399,43253760,0 +(1,7560:4262630,4025873:0,0,0 +[1,7560:-473656,4025873:0,0,0 +(1,7560:-473656,-710413:0,0,0 +(1,7560:-473656,-644877:0,0,0 +k1,7560:-473656,-644877:-65536 ) -g1,8393:36675916,2439708 -(1,8393:36675916,2439708:1179648,16384,0 -r1,8453:37855564,2439708:1179648,16384,0 -) +(1,7560:-473656,4736287:0,0,0 +k1,7560:-473656,4736287:5209943 ) -k1,8453:3078556,2439708:-34777008 +g1,7560:-473656,-710413 ) ] -[1,8453:3078558,4812305:0,0,0 -(1,8453:3078558,49800853:0,16384,2228224 -k1,8453:1358238,49800853:-1720320 -(1,8393:1358238,49800853:1720320,16384,2228224 -(1,8393:1358238,49800853:1179648,16384,0 -r1,8453:2537886,49800853:1179648,16384,0 ) -g1,8393:3062174,49800853 -(1,8393:3062174,52029077:16384,1703936,0 -[1,8393:3062174,52029077:25952256,1703936,0 -(1,8393:3062174,51504789:25952256,1179648,0 -(1,8393:3062174,51504789:16384,1179648,0 -r1,8453:3078558,51504789:16384,1179648,0 +[1,7560:6630773,47279633:25952256,43253760,0 +[1,7560:6630773,4812305:25952256,786432,0 +(1,7560:6630773,4812305:25952256,505283,11795 +(1,7560:6630773,4812305:25952256,505283,11795 +g1,7560:3078558,4812305 +[1,7560:3078558,4812305:0,0,0 +(1,7560:3078558,2439708:0,1703936,0 +k1,7560:1358238,2439708:-1720320 +(1,6148:1358238,2439708:1720320,1703936,0 +(1,6148:1358238,2439708:1179648,16384,0 +r1,7560:2537886,2439708:1179648,16384,0 ) -k1,8393:29014430,51504789:25935872 -g1,8393:29014430,51504789 +g1,6148:3062174,2439708 +(1,6148:3062174,2439708:16384,1703936,0 +[1,6148:3062174,2439708:25952256,1703936,0 +(1,6148:3062174,1915420:25952256,1179648,0 +(1,6148:3062174,1915420:16384,1179648,0 +r1,7560:3078558,1915420:16384,1179648,0 +) +k1,6148:29014430,1915420:25935872 +g1,6148:29014430,1915420 ) ] ) ) ) ] -[1,8453:3078558,4812305:0,0,0 -(1,8453:3078558,49800853:0,16384,2228224 -g1,8453:29030814,49800853 -g1,8453:36135244,49800853 -(1,8393:36135244,49800853:1720320,16384,2228224 -(1,8393:36135244,52029077:16384,1703936,0 -[1,8393:36135244,52029077:25952256,1703936,0 -(1,8393:36135244,51504789:25952256,1179648,0 -(1,8393:36135244,51504789:16384,1179648,0 -r1,8453:36151628,51504789:16384,1179648,0 -) -k1,8393:62087500,51504789:25935872 -g1,8393:62087500,51504789 -) -] -) -g1,8393:36675916,49800853 -(1,8393:36675916,49800853:1179648,16384,0 -r1,8453:37855564,49800853:1179648,16384,0 -) -) -k1,8453:3078556,49800853:-34777008 -) -] -g1,8453:6630773,4812305 -k1,8453:21643106,4812305:13816956 -g1,8453:23265777,4812305 -g1,8453:24088253,4812305 -g1,8453:28572226,4812305 -g1,8453:29981905,4812305 -) -) -] -[1,8453:6630773,45706769:25952256,40108032,0 -(1,8453:6630773,45706769:25952256,40108032,0 -(1,8453:6630773,45706769:0,0,0 -g1,8453:6630773,45706769 -) -[1,8453:6630773,45706769:25952256,40108032,0 -(1,8417:6630773,6254097:25952256,513147,126483 -k1,8416:8315611,6254097:188651 -k1,8416:12194593,6254097:188650 -k1,8416:13011079,6254097:188651 -k1,8416:14218815,6254097:188651 -k1,8416:15630367,6254097:188650 -k1,8416:16478310,6254097:188651 -k1,8416:17686046,6254097:188651 -k1,8416:20280523,6254097:188650 -k1,8416:22747861,6254097:188651 -k1,8416:23149493,6254097:188640 -k1,8416:25699406,6254097:188651 -k1,8416:27218438,6254097:188651 -k1,8416:28058516,6254097:188650 -k1,8416:29861974,6254097:188651 -k1,8416:32583029,6254097:0 -) -(1,8417:6630773,7095585:25952256,505283,126483 -g1,8416:8021447,7095585 -g1,8416:10571452,7095585 -g1,8416:12932058,7095585 -g1,8416:14322732,7095585 -g1,8416:15852342,7095585 -g1,8416:16702999,7095585 -g1,8416:17994713,7095585 -k1,8417:32583029,7095585:12775590 -g1,8417:32583029,7095585 -) -(1,8418:6630773,9186845:25952256,555811,139132 -(1,8418:6630773,9186845:2450326,534184,12975 -g1,8418:6630773,9186845 -g1,8418:9081099,9186845 -) -g1,8418:11147187,9186845 -g1,8418:11984148,9186845 -g1,8418:12609886,9186845 -k1,8418:32583029,9186845:17523538 -g1,8418:32583029,9186845 -) -(1,8421:6630773,10421549:25952256,513147,126483 -k1,8420:7364405,10421549:246044 -k1,8420:9396352,10421549:246091 -k1,8420:10173940,10421549:246091 -k1,8420:10775891,10421549:246091 -k1,8420:12248161,10421549:246091 -k1,8420:13477292,10421549:246091 -k1,8420:15007888,10421549:246090 -k1,8420:17956028,10421549:246091 -k1,8420:20778995,10421549:246091 -k1,8420:22044171,10421549:246091 -k1,8420:23943735,10421549:246091 -k1,8420:27679618,10421549:246091 -k1,8420:29210215,10421549:246091 -k1,8420:30626779,10421549:246091 -k1,8420:32583029,10421549:0 -) -(1,8421:6630773,11263037:25952256,513147,126483 -k1,8420:8166503,11263037:149644 -k1,8420:8928908,11263037:149643 -k1,8420:10097637,11263037:149644 -k1,8420:12667526,11263037:149644 -k1,8420:15392080,11263037:149644 -k1,8420:16029262,11263037:149594 -k1,8420:17486349,11263037:149644 -k1,8420:19467069,11263037:149644 -k1,8420:20148209,11263037:149643 -k1,8420:21537794,11263037:149644 -k1,8420:22635089,11263037:149644 -k1,8420:25619820,11263037:149644 -k1,8420:26540166,11263037:149643 -k1,8420:29531451,11263037:149644 -k1,8420:30664135,11263037:149644 -k1,8420:32583029,11263037:0 -) -(1,8421:6630773,12104525:25952256,505283,126483 -g1,8420:8000475,12104525 -g1,8420:9674919,12104525 -g1,8420:12006034,12104525 -g1,8420:12888148,12104525 -g1,8420:14894205,12104525 -g1,8420:16785574,12104525 -g1,8420:17399646,12104525 -k1,8421:32583029,12104525:11519920 -g1,8421:32583029,12104525 -) -(1,8423:6630773,12946013:25952256,513147,134348 -h1,8422:6630773,12946013:983040,0,0 -k1,8422:9573287,12946013:176239 -k1,8422:11778521,12946013:176239 -k1,8422:19296758,12946013:176239 -k1,8422:20085759,12946013:176239 -k1,8422:21281083,12946013:176239 -k1,8422:21872142,12946013:176216 -k1,8422:24642296,12946013:176239 -k1,8422:25686887,12946013:176239 -k1,8422:27843624,12946013:176239 -k1,8422:29176573,12946013:176239 -k1,8422:30521319,12946013:176239 -k1,8422:31356850,12946013:176239 -k1,8422:32583029,12946013:0 -) -(1,8423:6630773,13787501:25952256,513147,134348 -k1,8422:7378466,13787501:134931 -k1,8422:7869258,13787501:134932 -k1,8422:9603267,13787501:134931 -k1,8422:11521433,13787501:134931 -k1,8422:12524716,13787501:134931 -k1,8422:13842573,13787501:134932 -k1,8422:14996589,13787501:134931 -k1,8422:16300027,13787501:134931 -k1,8422:17196486,13787501:134931 -k1,8422:19360413,13787501:134932 -k1,8422:20514429,13787501:134931 -k1,8422:22304144,13787501:134931 -k1,8422:23713751,13787501:134932 -k1,8422:24867767,13787501:134931 -k1,8422:26171205,13787501:134931 -k1,8422:26965428,13787501:134931 -k1,8422:28326539,13787501:134932 -k1,8422:28992967,13787501:134931 -k1,8422:32583029,13787501:0 -) -(1,8423:6630773,14628989:25952256,513147,134348 -k1,8422:8061237,14628989:239019 -k1,8422:11535113,14628989:239019 -k1,8422:12727681,14628989:239019 -k1,8422:14400629,14628989:239020 -k1,8422:16025734,14628989:239019 -k1,8422:17283838,14628989:239019 -k1,8422:18906977,14628989:239019 -k1,8422:20314503,14628989:239019 -k1,8422:21212814,14628989:239019 -k1,8422:22851682,14628989:239019 -k1,8422:24976173,14628989:239020 -k1,8422:26523946,14628989:239019 -k1,8422:27379003,14628989:239019 -k1,8422:28992967,14628989:239019 -k1,8422:32583029,14628989:0 -) -(1,8423:6630773,15470477:25952256,505283,126483 -k1,8422:8082314,15470477:260096 -k1,8422:11577267,15470477:260096 -k1,8422:13028808,15470477:260096 -k1,8422:14013732,15470477:260096 -k1,8422:15256868,15470477:260096 -k1,8422:16144799,15470477:260096 -k1,8422:16760755,15470477:260096 -k1,8422:18851927,15470477:260096 -k1,8422:19980374,15470477:260095 -k1,8422:21855277,15470477:260096 -k1,8422:24088007,15470477:260096 -k1,8422:25367188,15470477:260096 -k1,8422:27280757,15470477:260096 -k1,8422:28767032,15470477:260096 -k1,8422:29643166,15470477:260096 -k1,8422:30673965,15470477:260096 -k1,8422:32583029,15470477:0 -) -(1,8423:6630773,16311965:25952256,513147,134348 -k1,8422:8022401,16311965:200183 -k1,8422:9613257,16311965:200182 -k1,8422:12484687,16311965:200183 -k1,8422:14183678,16311965:200183 -k1,8422:17745857,16311965:200182 -k1,8422:21435832,16311965:200183 -k1,8422:22903480,16311965:200182 -k1,8422:23459523,16311965:200183 -k1,8422:24885885,16311965:200183 -k1,8422:26242777,16311965:200182 -k1,8422:30900064,16311965:200183 -k1,8422:32583029,16311965:0 -) -(1,8423:6630773,17153453:25952256,513147,126483 -g1,8422:8492650,17153453 -g1,8422:10067480,17153453 -g1,8422:11893968,17153453 -g1,8422:13791235,17153453 -g1,8422:14858816,17153453 -g1,8422:17092938,17153453 -g1,8422:18311252,17153453 -g1,8422:19493521,17153453 -g1,8422:20378912,17153453 -g1,8422:20934001,17153453 -g1,8422:23016079,17153453 -g1,8422:24482774,17153453 -k1,8423:32583029,17153453:7511742 -g1,8423:32583029,17153453 -) -(1,8425:6630773,17994941:25952256,513147,134348 -h1,8424:6630773,17994941:983040,0,0 -g1,8424:8300630,17994941 -g1,8424:10330935,17994941 -g1,8424:11513204,17994941 -g1,8424:12813438,17994941 -g1,8424:14031752,17994941 -g1,8424:17206316,17994941 -k1,8425:32583029,17994941:10574890 -g1,8425:32583029,17994941 -) -(1,8427:7202902,19360717:25380127,513147,126483 -(1,8426:7202902,19360717:0,355205,0 -g1,8426:7202902,19360717 -g1,8426:5892182,19360717 -g1,8426:5564502,19360717 -(1,8426:5564502,19360717:1310720,355205,0 -k1,8426:6875222,19360717:1310720 -(1,8426:6875222,19360717:0,355205,0 -k1,8426:6476763,19360717:-398459 -) -) -g1,8426:7202902,19360717 -) -g1,8426:8598818,19360717 -g1,8426:10629123,19360717 -g1,8426:11359849,19360717 -g1,8426:11914938,19360717 -g1,8426:13340346,19360717 -k1,8427:32583028,19360717:18085972 -g1,8427:32583028,19360717 -) -(1,8428:7202902,20726493:25380127,513147,134348 -(1,8427:7202902,20726493:0,355205,0 -g1,8427:7202902,20726493 -g1,8427:5892182,20726493 -g1,8427:5564502,20726493 -(1,8427:5564502,20726493:1310720,355205,0 -k1,8427:6875222,20726493:1310720 -(1,8427:6875222,20726493:0,355205,0 -k1,8427:6476763,20726493:-398459 -) -) -g1,8427:7202902,20726493 -) -g1,8427:8598818,20726493 -g1,8427:9781087,20726493 -g1,8427:12682365,20726493 -g1,8427:14421690,20726493 -g1,8427:15035762,20726493 -g1,8427:18751653,20726493 -g1,8427:22138553,20726493 -g1,8427:25862308,20726493 -g1,8427:27252982,20726493 -g1,8427:29923574,20726493 -k1,8428:32583029,20726493:1255674 -g1,8428:32583029,20726493 -) -(1,8429:7202902,22092269:25380127,513147,115847 -(1,8428:7202902,22092269:0,355205,0 -g1,8428:7202902,22092269 -g1,8428:5892182,22092269 -g1,8428:5564502,22092269 -(1,8428:5564502,22092269:1310720,355205,0 -k1,8428:6875222,22092269:1310720 -(1,8428:6875222,22092269:0,355205,0 -k1,8428:6476763,22092269:-398459 -) -) -g1,8428:7202902,22092269 -) -g1,8428:10841460,22092269 -g1,8428:12529012,22092269 -g1,8428:13341003,22092269 -g1,8428:13896092,22092269 -(1,8428:13896092,22092269:0,424981,115847 -r1,8453:14254358,22092269:358266,540828,115847 -k1,8428:13896092,22092269:-358266 -) -(1,8428:13896092,22092269:358266,424981,115847 -k1,8428:13896092,22092269:3277 -h1,8428:14251081,22092269:0,411205,112570 -) -g1,8428:14453587,22092269 -g1,8428:15844261,22092269 -g1,8428:17226415,22092269 -g1,8428:18038406,22092269 -g1,8428:19256720,22092269 -g1,8428:20638874,22092269 -g1,8428:21497395,22092269 -g1,8428:22715709,22092269 -k1,8429:32583029,22092269:8525143 -g1,8429:32583029,22092269 -) -(1,8430:7202902,23458045:25380127,513147,126483 -(1,8429:7202902,23458045:0,355205,0 -g1,8429:7202902,23458045 -g1,8429:5892182,23458045 -g1,8429:5564502,23458045 -(1,8429:5564502,23458045:1310720,355205,0 -k1,8429:6875222,23458045:1310720 -(1,8429:6875222,23458045:0,355205,0 -k1,8429:6476763,23458045:-398459 -) -) -g1,8429:7202902,23458045 -) -g1,8429:8598818,23458045 -g1,8429:9212890,23458045 -g1,8429:12928781,23458045 -g1,8429:14119570,23458045 -g1,8429:14934837,23458045 -g1,8429:16153151,23458045 -g1,8429:17335420,23458045 -g1,8429:18150687,23458045 -g1,8429:19369001,23458045 -g1,8429:21307556,23458045 -g1,8429:22791291,23458045 -g1,8429:24370708,23458045 -g1,8429:26191953,23458045 -g1,8429:27138948,23458045 -k1,8430:32583029,23458045:2437289 -g1,8430:32583029,23458045 -) -(1,8431:7202902,24823821:25380127,513147,134348 -(1,8430:7202902,24823821:0,355205,0 -g1,8430:7202902,24823821 -g1,8430:5892182,24823821 -g1,8430:5564502,24823821 -(1,8430:5564502,24823821:1310720,355205,0 -k1,8430:6875222,24823821:1310720 -(1,8430:6875222,24823821:0,355205,0 -k1,8430:6476763,24823821:-398459 -) -) -g1,8430:7202902,24823821 -) -g1,8430:7816974,24823821 -g1,8430:10177580,24823821 -g1,8430:11852024,24823821 -g1,8430:13034293,24823821 -g1,8430:15301838,24823821 -g1,8430:17674241,24823821 -g1,8430:18489508,24823821 -g1,8430:19479101,24823821 -g1,8430:20361215,24823821 -k1,8431:32583029,24823821:11257780 -g1,8431:32583029,24823821 -) -(1,8434:6630773,26189597:25952256,513147,126483 -h1,8433:6630773,26189597:983040,0,0 -k1,8433:8974102,26189597:163602 -k1,8433:12654365,26189597:163601 -k1,8433:13434005,26189597:163602 -k1,8433:14616692,26189597:163602 -k1,8433:16006472,26189597:163601 -k1,8433:17326784,26189597:163602 -k1,8433:18481945,26189597:163601 -k1,8433:20231518,26189597:163602 -k1,8433:23985182,26189597:163602 -k1,8433:25340228,26189597:163601 -k1,8433:28565017,26189597:163602 -k1,8433:32583029,26189597:0 -) -(1,8434:6630773,27031085:25952256,513147,134348 -k1,8433:8433283,27031085:234889 -k1,8433:9687256,27031085:234888 -k1,8433:11410468,27031085:234889 -k1,8433:12296785,27031085:234889 -k1,8433:13550758,27031085:234888 -k1,8433:14968572,27031085:234889 -k1,8433:15862753,27031085:234889 -k1,8433:17116726,27031085:234888 -k1,8433:18508325,27031085:234889 -k1,8433:19429375,27031085:234888 -k1,8433:23473872,27031085:234889 -k1,8433:24324799,27031085:234889 -k1,8433:25578772,27031085:234888 -k1,8433:28603529,27031085:234889 -k1,8433:29791967,27031085:234889 -k1,8433:31119340,27031085:234888 -$1,8433:31119340,27031085 -$1,8433:31696712,27031085 -k1,8433:31931601,27031085:234889 -k1,8433:32583029,27031085:0 -) -(1,8434:6630773,27872573:25952256,505283,126483 -g1,8433:9871528,27872573 -g1,8433:13297750,27872573 -g1,8433:17013641,27872573 -g1,8433:17828908,27872573 -g1,8433:19047222,27872573 -k1,8434:32583029,27872573:11531061 -g1,8434:32583029,27872573 -) -(1,8449:6630773,41798920:25952256,13078968,0 -k1,8449:16796775,41798920:10166002 -(1,8435:16796775,41798920:0,0,0 -g1,8435:16796775,41798920 -g1,8435:16796775,41798920 -g1,8435:16469095,41798920 -(1,8435:16469095,41798920:0,0,0 -) -g1,8435:16796775,41798920 -) -(1,8447:16796775,41798920:5620252,13078968,0 -g1,8447:19606901,41798920 -(1,8447:19606901,29665398:0,0,0 -(1,8447:19606901,29665398:0,0,0 -g1,8437:19606901,29665398 -(1,8438:19606901,29665398:0,0,0 -(1,8438:19606901,29665398:0,0,0 -g1,8438:19606901,29665398 -g1,8438:19606901,29665398 -g1,8438:19606901,29665398 -g1,8438:19606901,29665398 -g1,8438:19606901,29665398 -(1,8438:19606901,29665398:0,0,0 -(1,8438:19606901,29665398:3308914,426443,113835 -(1,8438:19606901,29665398:3308914,426443,113835 -g1,8438:20866176,29665398 -g1,8438:21556860,29665398 -) -g1,8438:22915815,29665398 -) -) -g1,8438:19606901,29665398 -g1,8438:19606901,29665398 -) -) -g1,8438:19606901,29665398 -g1,8439:19606901,29665398 -(1,8439:19606901,29665398:0,0,0 -(1,8439:19606901,29665398:0,0,0 -g1,8439:19606901,29665398 -g1,8439:19606901,29665398 -g1,8439:19606901,29665398 -g1,8439:19606901,29665398 -g1,8439:19606901,29665398 -(1,8439:19606901,29665398:0,0,0 -(1,8439:19606901,29665398:4121582,373362,104590 -(1,8439:19606901,29665398:4121582,373362,104590 -(1,8439:19606901,29665398:0,373362,104590 -r1,8453:23728483,29665398:4121582,477952,104590 -k1,8439:19606901,29665398:-4121582 -) -(1,8439:19606901,29665398:4121582,373362,104590 -g1,8439:23092125,29665398 -h1,8439:23725206,29665398:0,370085,101313 -) -) -g1,8439:23728483,29665398 -) -) -g1,8439:19606901,29665398 -g1,8439:19606901,29665398 -) -) -g1,8439:19606901,29665398 -g1,8440:19606901,29665398 -(1,8440:19606901,29665398:0,0,0 -(1,8440:19606901,29665398:0,0,0 -g1,8440:19606901,29665398 -g1,8440:19606901,29665398 -g1,8440:19606901,29665398 -g1,8440:19606901,29665398 -g1,8440:19606901,29665398 -(1,8440:19606901,29665398:0,0,0 -(1,8440:19606901,29665398:4121582,373362,104590 -(1,8440:19606901,29665398:4121582,373362,104590 -(1,8440:19606901,29665398:0,373362,104590 -r1,8453:23728483,29665398:4121582,477952,104590 -k1,8440:19606901,29665398:-4121582 -) -(1,8440:19606901,29665398:4121582,373362,104590 -g1,8440:23092125,29665398 -h1,8440:23725206,29665398:0,370085,101313 -) -) -g1,8440:23728483,29665398 -) -) -g1,8440:19606901,29665398 -g1,8440:19606901,29665398 -) -) -g1,8440:19606901,29665398 -g1,8441:19606901,29665398 -(1,8441:19606901,29665398:0,0,0 -(1,8441:19606901,29665398:0,0,0 -g1,8441:19606901,29665398 -g1,8441:19606901,29665398 -g1,8441:19606901,29665398 -g1,8441:19606901,29665398 -g1,8441:19606901,29665398 -(1,8441:19606901,29665398:0,0,0 -(1,8441:19606901,29665398:519635,224133,0 -(1,8441:19606901,29665398:519635,224133,0 -$1,8441:19606901,29665398 -$1,8441:20126536,29665398 -) -g1,8441:20126536,29665398 -) -) -g1,8441:19606901,29665398 -g1,8441:19606901,29665398 -) -) -g1,8441:19606901,29665398 -g1,8442:19606901,29665398 -(1,8442:19606901,29665398:0,0,0 -(1,8442:19606901,29665398:0,0,0 -g1,8442:19606901,29665398 -g1,8442:19606901,29665398 -g1,8442:19606901,29665398 -g1,8442:19606901,29665398 -g1,8442:19606901,29665398 -(1,8442:19606901,29665398:0,0,0 -(1,8442:19606901,29665398:3931768,454754,7077 -(1,8442:19606901,29665398:3931768,454754,7077 -g1,8442:21779813,29665398 -g1,8442:22470497,29665398 -) -g1,8442:23538669,29665398 -) -) -g1,8442:19606901,29665398 -g1,8442:19606901,29665398 -) -) -g1,8442:19606901,29665398 -g1,8443:19606901,29665398 -g1,8443:19606901,29665398 -g1,8443:19606901,29665398 -g1,8443:19606901,29665398 -g1,8443:19606901,29665398 -g1,8443:19606901,29665398 -g1,8443:19606901,29665398 -g1,8443:19606901,29665398 -g1,8443:19606901,29665398 -g1,8443:19606901,29665398 -g1,8443:19606901,29665398 -g1,8444:19606901,29665398 -g1,8444:19606901,29665398 -g1,8444:19606901,29665398 -g1,8444:19606901,29665398 -g1,8444:19606901,29665398 -g1,8444:19606901,29665398 -g1,8445:19606901,29665398 -g1,8445:19606901,29665398 -g1,8445:19606901,29665398 -g1,8445:19606901,29665398 -g1,8445:19606901,29665398 -g1,8445:19606901,29665398 -g1,8446:19606901,29665398 -g1,8446:19606901,29665398 -g1,8446:19606901,29665398 -g1,8446:19606901,29665398 -g1,8446:19606901,29665398 -g1,8446:19606901,29665398 -g1,8447:19606901,29665398 -g1,8447:19606901,29665398 -) -g1,8447:19606901,29665398 -) -) -g1,8449:22417027,41798920 -k1,8449:32583029,41798920:10166002 -) -(1,8452:6630773,43295768:25952256,505283,134348 -h1,8451:6630773,43295768:983040,0,0 -k1,8451:8597508,43295768:165806 -k1,8451:9631666,43295768:165806 -k1,8451:10929934,43295768:165806 -k1,8451:12120723,43295768:165806 -k1,8451:13740118,43295768:165806 -k1,8451:14521962,43295768:165806 -k1,8451:15706853,43295768:165806 -k1,8451:18463953,43295768:165806 -k1,8451:20125946,43295768:165806 -k1,8451:23808414,43295768:165806 -k1,8451:25078502,43295768:165806 -k1,8451:25992074,43295768:165806 -k1,8451:29290501,43295768:165806 -k1,8451:30723773,43295768:165806 -k1,8451:32583029,43295768:0 -) -(1,8452:6630773,44137256:25952256,505283,126483 -k1,8451:10311340,44137256:163905 -k1,8451:11666691,44137256:163906 -k1,8451:14891783,44137256:163905 -k1,8451:19215259,44137256:163906 -k1,8451:21589038,44137256:163905 -k1,8451:25277469,44137256:163905 -k1,8451:27326846,44137256:163906 -k1,8451:29502706,44137256:163905 -k1,8451:30411756,44137256:163906 -k1,8451:31227089,44137256:163905 -k1,8452:32583029,44137256:0 -) -(1,8452:6630773,44978744:25952256,513147,126483 -k1,8451:8010251,44978744:234564 -k1,8451:9263900,44978744:234564 -k1,8451:11994731,44978744:234565 -k1,8451:15169240,44978744:234564 -k1,8451:16063096,44978744:234564 -k1,8451:19358847,44978744:234564 -k1,8451:23283743,44978744:234564 -k1,8451:25704588,44978744:234564 -k1,8451:27469419,44978744:234565 -k1,8451:28355411,44978744:234564 -k1,8451:30914537,44978744:234564 -k1,8451:32168186,44978744:234564 -k1,8452:32583029,44978744:0 -) -] -(1,8453:32583029,45706769:0,0,0 -g1,8453:32583029,45706769 -) -) -] -(1,8453:6630773,47279633:25952256,0,0 -h1,8453:6630773,47279633:25952256,0,0 -) -] -(1,8453:4262630,4025873:0,0,0 -[1,8453:-473656,4025873:0,0,0 -(1,8453:-473656,-710413:0,0,0 -(1,8453:-473656,-710413:0,0,0 -g1,8453:-473656,-710413 -) -g1,8453:-473656,-710413 +[1,7560:3078558,4812305:0,0,0 +(1,7560:3078558,2439708:0,1703936,0 +g1,7560:29030814,2439708 +g1,7560:36135244,2439708 +(1,6148:36135244,2439708:1720320,1703936,0 +(1,6148:36135244,2439708:16384,1703936,0 +[1,6148:36135244,2439708:25952256,1703936,0 +(1,6148:36135244,1915420:25952256,1179648,0 +(1,6148:36135244,1915420:16384,1179648,0 +r1,7560:36151628,1915420:16384,1179648,0 ) -] +k1,6148:62087500,1915420:25935872 +g1,6148:62087500,1915420 ) ] -!20033 -}139 -Input:1149:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1150:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1151:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1152:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!388 -{140 -[1,8503:4262630,47279633:28320399,43253760,0 -(1,8503:4262630,4025873:0,0,0 -[1,8503:-473656,4025873:0,0,0 -(1,8503:-473656,-710413:0,0,0 -(1,8503:-473656,-644877:0,0,0 -k1,8503:-473656,-644877:-65536 ) -(1,8503:-473656,4736287:0,0,0 -k1,8503:-473656,4736287:5209943 +g1,6148:36675916,2439708 +(1,6148:36675916,2439708:1179648,16384,0 +r1,7560:37855564,2439708:1179648,16384,0 ) -g1,8503:-473656,-710413 ) -] +k1,7560:3078556,2439708:-34777008 ) -[1,8503:6630773,47279633:25952256,43253760,0 -[1,8503:6630773,4812305:25952256,786432,0 -(1,8503:6630773,4812305:25952256,485622,134348 -(1,8503:6630773,4812305:25952256,485622,134348 -g1,8503:3078558,4812305 -[1,8503:3078558,4812305:0,0,0 -(1,8503:3078558,2439708:0,1703936,0 -k1,8503:1358238,2439708:-1720320 -(1,8393:1358238,2439708:1720320,1703936,0 -(1,8393:1358238,2439708:1179648,16384,0 -r1,8503:2537886,2439708:1179648,16384,0 +] +[1,7560:3078558,4812305:0,0,0 +(1,7560:3078558,49800853:0,16384,2228224 +k1,7560:1358238,49800853:-1720320 +(1,6148:1358238,49800853:1720320,16384,2228224 +(1,6148:1358238,49800853:1179648,16384,0 +r1,7560:2537886,49800853:1179648,16384,0 ) -g1,8393:3062174,2439708 -(1,8393:3062174,2439708:16384,1703936,0 -[1,8393:3062174,2439708:25952256,1703936,0 -(1,8393:3062174,1915420:25952256,1179648,0 -(1,8393:3062174,1915420:16384,1179648,0 -r1,8503:3078558,1915420:16384,1179648,0 +g1,6148:3062174,49800853 +(1,6148:3062174,52029077:16384,1703936,0 +[1,6148:3062174,52029077:25952256,1703936,0 +(1,6148:3062174,51504789:25952256,1179648,0 +(1,6148:3062174,51504789:16384,1179648,0 +r1,7560:3078558,51504789:16384,1179648,0 ) -k1,8393:29014430,1915420:25935872 -g1,8393:29014430,1915420 +k1,6148:29014430,51504789:25935872 +g1,6148:29014430,51504789 ) ] ) ) ) ] -[1,8503:3078558,4812305:0,0,0 -(1,8503:3078558,2439708:0,1703936,0 -g1,8503:29030814,2439708 -g1,8503:36135244,2439708 -(1,8393:36135244,2439708:1720320,1703936,0 -(1,8393:36135244,2439708:16384,1703936,0 -[1,8393:36135244,2439708:25952256,1703936,0 -(1,8393:36135244,1915420:25952256,1179648,0 -(1,8393:36135244,1915420:16384,1179648,0 -r1,8503:36151628,1915420:16384,1179648,0 +[1,7560:3078558,4812305:0,0,0 +(1,7560:3078558,49800853:0,16384,2228224 +g1,7560:29030814,49800853 +g1,7560:36135244,49800853 +(1,6148:36135244,49800853:1720320,16384,2228224 +(1,6148:36135244,52029077:16384,1703936,0 +[1,6148:36135244,52029077:25952256,1703936,0 +(1,6148:36135244,51504789:25952256,1179648,0 +(1,6148:36135244,51504789:16384,1179648,0 +r1,7560:36151628,51504789:16384,1179648,0 ) -k1,8393:62087500,1915420:25935872 -g1,8393:62087500,1915420 +k1,6148:62087500,51504789:25935872 +g1,6148:62087500,51504789 ) ] ) -g1,8393:36675916,2439708 -(1,8393:36675916,2439708:1179648,16384,0 -r1,8503:37855564,2439708:1179648,16384,0 -) -) -k1,8503:3078556,2439708:-34777008 -) -] -[1,8503:3078558,4812305:0,0,0 -(1,8503:3078558,49800853:0,16384,2228224 -k1,8503:1358238,49800853:-1720320 -(1,8393:1358238,49800853:1720320,16384,2228224 -(1,8393:1358238,49800853:1179648,16384,0 -r1,8503:2537886,49800853:1179648,16384,0 +g1,6148:36675916,49800853 +(1,6148:36675916,49800853:1179648,16384,0 +r1,7560:37855564,49800853:1179648,16384,0 ) -g1,8393:3062174,49800853 -(1,8393:3062174,52029077:16384,1703936,0 -[1,8393:3062174,52029077:25952256,1703936,0 -(1,8393:3062174,51504789:25952256,1179648,0 -(1,8393:3062174,51504789:16384,1179648,0 -r1,8503:3078558,51504789:16384,1179648,0 ) -k1,8393:29014430,51504789:25935872 -g1,8393:29014430,51504789 +k1,7560:3078556,49800853:-34777008 ) ] +g1,7560:6630773,4812305 +k1,7560:24358918,4812305:16532768 +g1,7560:25981589,4812305 +g1,7560:26804065,4812305 +g1,7560:30302376,4812305 +) +) +] +[1,7560:6630773,45706769:25952256,40108032,0 +(1,7560:6630773,45706769:25952256,40108032,0 +(1,7560:6630773,45706769:0,0,0 +g1,7560:6630773,45706769 +) +[1,7560:6630773,45706769:25952256,40108032,0 +v1,7514:6630773,6254097:0,393216,0 +(1,7514:6630773,16938380:25952256,11077499,0 +g1,7514:6630773,16938380 +g1,7514:6237557,16938380 +r1,7560:6368629,16938380:131072,11077499,0 +g1,7514:6567858,16938380 +g1,7514:6764466,16938380 +[1,7514:6764466,16938380:25818563,11077499,0 +v1,7484:6764466,6254097:0,393216,0 +(1,7512:6764466,16741772:25818563,10880891,196608 +g1,7512:6764466,16741772 +g1,7512:6764466,16741772 +g1,7512:6567858,16741772 +(1,7512:6567858,16741772:0,10880891,196608 +r1,7560:32779637,16741772:26211779,11077499,196608 +k1,7512:6567857,16741772:-26211780 +) +(1,7512:6567858,16741772:26211779,10880891,196608 +[1,7512:6764466,16741772:25818563,10684283,0 +(1,7486:6764466,6488534:25818563,431045,86428 +(1,7485:6764466,6488534:0,0,0 +g1,7485:6764466,6488534 +g1,7485:6764466,6488534 +g1,7485:6436786,6488534 +(1,7485:6436786,6488534:0,0,0 +) +g1,7485:6764466,6488534 +) +k1,7486:6764466,6488534:0 +g1,7486:11079868,6488534 +g1,7486:11743776,6488534 +g1,7486:12407684,6488534 +g1,7486:13403546,6488534 +g1,7486:15727224,6488534 +g1,7486:16391132,6488534 +h1,7486:17055040,6488534:0,0,0 +k1,7486:32583029,6488534:15527989 +g1,7486:32583029,6488534 +) +(1,7493:6764466,7304461:25818563,398014,106246 +(1,7488:6764466,7304461:0,0,0 +g1,7488:6764466,7304461 +g1,7488:6764466,7304461 +g1,7488:6436786,7304461 +(1,7488:6436786,7304461:0,0,0 +) +g1,7488:6764466,7304461 +) +g1,7493:7760328,7304461 +g1,7493:8092282,7304461 +g1,7493:8424236,7304461 +h1,7493:8756190,7304461:0,0,0 +k1,7493:32583030,7304461:23826840 +g1,7493:32583030,7304461 +) +(1,7493:6764466,7989316:25818563,398014,4954 +h1,7493:6764466,7989316:0,0,0 +g1,7493:7760328,7989316 +g1,7493:8424236,7989316 +h1,7493:8756190,7989316:0,0,0 +k1,7493:32583030,7989316:23826840 +g1,7493:32583030,7989316 +) +(1,7493:6764466,8674171:25818563,398014,9908 +h1,7493:6764466,8674171:0,0,0 +g1,7493:7760328,8674171 +g1,7493:8424236,8674171 +h1,7493:8756190,8674171:0,0,0 +k1,7493:32583030,8674171:23826840 +g1,7493:32583030,8674171 +) +(1,7493:6764466,9359026:25818563,407923,9908 +h1,7493:6764466,9359026:0,0,0 +g1,7493:7760328,9359026 +g1,7493:8424236,9359026 +h1,7493:8756190,9359026:0,0,0 +k1,7493:32583030,9359026:23826840 +g1,7493:32583030,9359026 +) +(1,7495:6764466,10174953:25818563,431045,86428 +(1,7494:6764466,10174953:0,0,0 +g1,7494:6764466,10174953 +g1,7494:6764466,10174953 +g1,7494:6436786,10174953 +(1,7494:6436786,10174953:0,0,0 +) +g1,7494:6764466,10174953 +) +k1,7495:6764466,10174953:0 +g1,7495:11079868,10174953 +g1,7495:11743776,10174953 +g1,7495:12407684,10174953 +g1,7495:13403546,10174953 +g1,7495:15727224,10174953 +g1,7495:16391132,10174953 +h1,7495:17055040,10174953:0,0,0 +k1,7495:32583029,10174953:15527989 +g1,7495:32583029,10174953 +) +(1,7502:6764466,10990880:25818563,398014,0 +(1,7497:6764466,10990880:0,0,0 +g1,7497:6764466,10990880 +g1,7497:6764466,10990880 +g1,7497:6436786,10990880 +(1,7497:6436786,10990880:0,0,0 +) +g1,7497:6764466,10990880 +) +g1,7502:7760328,10990880 +g1,7502:8092282,10990880 +g1,7502:8424236,10990880 +h1,7502:8756190,10990880:0,0,0 +k1,7502:32583030,10990880:23826840 +g1,7502:32583030,10990880 +) +(1,7502:6764466,11675735:25818563,398014,0 +h1,7502:6764466,11675735:0,0,0 +g1,7502:7760328,11675735 +g1,7502:8424236,11675735 +h1,7502:8756190,11675735:0,0,0 +k1,7502:32583030,11675735:23826840 +g1,7502:32583030,11675735 +) +(1,7502:6764466,12360590:25818563,398014,9908 +h1,7502:6764466,12360590:0,0,0 +g1,7502:7760328,12360590 +g1,7502:8424236,12360590 +h1,7502:8756190,12360590:0,0,0 +k1,7502:32583030,12360590:23826840 +g1,7502:32583030,12360590 +) +(1,7502:6764466,13045445:25818563,407923,9908 +h1,7502:6764466,13045445:0,0,0 +g1,7502:7760328,13045445 +g1,7502:8424236,13045445 +h1,7502:8756190,13045445:0,0,0 +k1,7502:32583030,13045445:23826840 +g1,7502:32583030,13045445 +) +(1,7504:6764466,13861372:25818563,431045,86428 +(1,7503:6764466,13861372:0,0,0 +g1,7503:6764466,13861372 +g1,7503:6764466,13861372 +g1,7503:6436786,13861372 +(1,7503:6436786,13861372:0,0,0 +) +g1,7503:6764466,13861372 +) +k1,7504:6764466,13861372:0 +g1,7504:11079868,13861372 +g1,7504:11743776,13861372 +g1,7504:12407684,13861372 +g1,7504:13403546,13861372 +g1,7504:15727224,13861372 +g1,7504:16391132,13861372 +h1,7504:17718948,13861372:0,0,0 +k1,7504:32583029,13861372:14864081 +g1,7504:32583029,13861372 +) +(1,7511:6764466,14677299:25818563,398014,0 +(1,7506:6764466,14677299:0,0,0 +g1,7506:6764466,14677299 +g1,7506:6764466,14677299 +g1,7506:6436786,14677299 +(1,7506:6436786,14677299:0,0,0 +) +g1,7506:6764466,14677299 +) +g1,7511:7760328,14677299 +g1,7511:8092282,14677299 +g1,7511:8424236,14677299 +h1,7511:8756190,14677299:0,0,0 +k1,7511:32583030,14677299:23826840 +g1,7511:32583030,14677299 +) +(1,7511:6764466,15362154:25818563,398014,0 +h1,7511:6764466,15362154:0,0,0 +g1,7511:7760328,15362154 +g1,7511:8424236,15362154 +h1,7511:8756190,15362154:0,0,0 +k1,7511:32583030,15362154:23826840 +g1,7511:32583030,15362154 +) +(1,7511:6764466,16047009:25818563,398014,9908 +h1,7511:6764466,16047009:0,0,0 +g1,7511:7760328,16047009 +g1,7511:8424236,16047009 +h1,7511:8756190,16047009:0,0,0 +k1,7511:32583030,16047009:23826840 +g1,7511:32583030,16047009 +) +(1,7511:6764466,16731864:25818563,407923,9908 +h1,7511:6764466,16731864:0,0,0 +g1,7511:7760328,16731864 +g1,7511:8424236,16731864 +h1,7511:8756190,16731864:0,0,0 +k1,7511:32583030,16731864:23826840 +g1,7511:32583030,16731864 +) +] +) +g1,7512:32583029,16741772 +g1,7512:6764466,16741772 +g1,7512:6764466,16741772 +g1,7512:32583029,16741772 +g1,7512:32583029,16741772 +) +h1,7512:6764466,16938380:0,0,0 +] +g1,7514:32583029,16938380 +) +h1,7514:6630773,16938380:0,0,0 +(1,7517:6630773,17803460:25952256,513147,134348 +h1,7516:6630773,17803460:983040,0,0 +k1,7516:9420079,17803460:157380 +k1,7516:10236751,17803460:157380 +k1,7516:11413216,17803460:157380 +k1,7516:14562314,17803460:157379 +k1,7516:15335732,17803460:157380 +k1,7516:16512197,17803460:157380 +k1,7516:17817768,17803460:157380 +k1,7516:19337642,17803460:157380 +k1,7516:20991209,17803460:157380 +k1,7516:23449558,17803460:157380 +k1,7516:25390827,17803460:157379 +k1,7516:26567292,17803460:157380 +k1,7516:29159990,17803460:157380 +k1,7516:30706733,17803460:157380 +k1,7517:32583029,17803460:0 +) +(1,7517:6630773,18668540:25952256,513147,134348 +(1,7516:6630773,18668540:0,459977,115847 +r1,7560:8044174,18668540:1413401,575824,115847 +k1,7516:6630773,18668540:-1413401 +) +(1,7516:6630773,18668540:1413401,459977,115847 +k1,7516:6630773,18668540:3277 +h1,7516:8040897,18668540:0,411205,112570 +) +k1,7516:8473710,18668540:255866 +k1,7516:9683126,18668540:255867 +k1,7516:11043274,18668540:255866 +k1,7516:12916570,18668540:255867 +k1,7516:14191521,18668540:255866 +k1,7516:17226115,18668540:255867 +k1,7516:19162324,18668540:255866 +k1,7516:21153584,18668540:255867 +k1,7516:21765310,18668540:255866 +k1,7516:23304372,18668540:255867 +k1,7516:25298253,18668540:255866 +k1,7516:26020081,18668540:255867 +k1,7516:27144299,18668540:255866 +k1,7516:28948782,18668540:255867 +k1,7516:29856076,18668540:255866 +k1,7517:32583029,18668540:0 +) +(1,7517:6630773,19533620:25952256,505283,134348 +(1,7516:6630773,19533620:0,459977,115847 +r1,7560:8044174,19533620:1413401,575824,115847 +k1,7516:6630773,19533620:-1413401 +) +(1,7516:6630773,19533620:1413401,459977,115847 +k1,7516:6630773,19533620:3277 +h1,7516:8040897,19533620:0,411205,112570 +) +k1,7516:8277793,19533620:233619 +k1,7516:12176185,19533620:233619 +k1,7516:13092689,19533620:233619 +k1,7516:14194660,19533620:233619 +k1,7516:15532561,19533620:233619 +k1,7516:17772892,19533620:233619 +k1,7516:19025597,19533620:233620 +k1,7516:21102088,19533620:233619 +k1,7516:21987135,19533620:233619 +(1,7516:21987135,19533620:0,459977,115847 +r1,7560:23400536,19533620:1413401,575824,115847 +k1,7516:21987135,19533620:-1413401 +) +(1,7516:21987135,19533620:1413401,459977,115847 +k1,7516:21987135,19533620:3277 +h1,7516:23397259,19533620:0,411205,112570 +) +k1,7516:23807825,19533620:233619 +k1,7516:26609145,19533620:233619 +k1,7516:27458802,19533620:233619 +k1,7516:28711506,19533620:233619 +k1,7516:31563944,19533620:233619 +k1,7516:32583029,19533620:0 +) +(1,7517:6630773,20398700:25952256,505283,126483 +g1,7516:10150711,20398700 +g1,7516:12388110,20398700 +k1,7517:32583028,20398700:18340904 +g1,7517:32583028,20398700 +) +v1,7519:6630773,21263780:0,393216,0 +(1,7555:6630773,43982941:25952256,23112377,0 +g1,7555:6630773,43982941 +g1,7555:6237557,43982941 +r1,7560:6368629,43982941:131072,23112377,0 +g1,7555:6567858,43982941 +g1,7555:6764466,43982941 +[1,7555:6764466,43982941:25818563,23112377,0 +(1,7520:6764466,21624957:25818563,754393,260573 +(1,7519:6764466,21624957:0,754393,260573 +r1,7560:8010564,21624957:1246098,1014966,260573 +k1,7519:6764466,21624957:-1246098 +) +(1,7519:6764466,21624957:1246098,754393,260573 +) +k1,7519:8182390,21624957:171826 +k1,7519:8510070,21624957:327680 +k1,7519:9309731,21624957:171826 +k1,7519:10500642,21624957:171826 +k1,7519:13664188,21624957:171827 +k1,7519:15865009,21624957:171826 +k1,7519:17055920,21624957:171826 +k1,7519:19296062,21624957:171826 +k1,7519:20083926,21624957:171826 +k1,7519:21274837,21624957:171826 +k1,7519:24886648,21624957:171826 +k1,7519:27263762,21624957:171827 +k1,7519:28121750,21624957:171826 +k1,7519:29312661,21624957:171826 +k1,7519:31725818,21624957:171826 +k1,7520:32583029,21624957:0 +) +(1,7520:6764466,22490037:25818563,513147,134348 +k1,7519:9371723,22490037:179148 +k1,7519:10202298,22490037:179147 +(1,7519:10202298,22490037:0,452978,115847 +r1,7560:13022547,22490037:2820249,568825,115847 +k1,7519:10202298,22490037:-2820249 +) +(1,7519:10202298,22490037:2820249,452978,115847 +k1,7519:10202298,22490037:3277 +h1,7519:13019270,22490037:0,411205,112570 +) +k1,7519:13201695,22490037:179148 +k1,7519:14884894,22490037:179148 +k1,7519:17902405,22490037:179147 +k1,7519:20091542,22490037:179148 +(1,7519:20091542,22490037:0,459977,115847 +r1,7560:21856655,22490037:1765113,575824,115847 +k1,7519:20091542,22490037:-1765113 +) +(1,7519:20091542,22490037:1765113,459977,115847 +k1,7519:20091542,22490037:3277 +h1,7519:21853378,22490037:0,411205,112570 +) +k1,7519:22035803,22490037:179148 +k1,7519:23406395,22490037:179147 +k1,7519:25668933,22490037:179148 +k1,7519:28782783,22490037:179148 +k1,7519:29427891,22490037:179147 +k1,7519:30673310,22490037:179148 +k1,7519:32583029,22490037:0 +) +(1,7520:6764466,23355117:25818563,513147,134348 +k1,7519:7622836,23355117:242332 +k1,7519:8884253,23355117:242332 +k1,7519:10515948,23355117:242332 +k1,7519:12634576,23355117:242332 +k1,7519:15166736,23355117:242332 +k1,7519:16803019,23355117:242332 +k1,7519:20016752,23355117:242331 +k1,7519:22327400,23355117:242332 +k1,7519:23561292,23355117:242332 +k1,7519:26641988,23355117:242332 +k1,7519:27831971,23355117:242332 +k1,7519:28690341,23355117:242332 +k1,7519:29951758,23355117:242332 +k1,7520:32583029,23355117:0 +) +(1,7520:6764466,24220197:25818563,513147,134348 +k1,7519:8758158,24220197:180966 +k1,7519:10771510,24220197:180965 +k1,7519:12690491,24220197:180966 +k1,7519:13680827,24220197:180966 +k1,7519:16373133,24220197:180966 +(1,7519:16373133,24220197:0,414482,115847 +r1,7560:16731399,24220197:358266,530329,115847 +k1,7519:16373133,24220197:-358266 +) +(1,7519:16373133,24220197:358266,414482,115847 +k1,7519:16373133,24220197:3277 +h1,7519:16728122,24220197:0,411205,112570 +) +k1,7519:16912364,24220197:180965 +k1,7519:17709368,24220197:180966 +k1,7519:18909419,24220197:180966 +k1,7519:20479748,24220197:180966 +k1,7519:22537009,24220197:180965 +(1,7519:22537009,24220197:0,459977,115847 +r1,7560:23950410,24220197:1413401,575824,115847 +k1,7519:22537009,24220197:-1413401 +) +(1,7519:22537009,24220197:1413401,459977,115847 +k1,7519:22537009,24220197:3277 +h1,7519:23947133,24220197:0,411205,112570 +) +k1,7519:24305046,24220197:180966 +k1,7519:26463889,24220197:180966 +(1,7519:26463889,24220197:0,414482,115847 +r1,7560:26822155,24220197:358266,530329,115847 +k1,7519:26463889,24220197:-358266 +) +(1,7519:26463889,24220197:358266,414482,115847 +k1,7519:26463889,24220197:3277 +h1,7519:26818878,24220197:0,411205,112570 +) +k1,7519:27003121,24220197:180966 +k1,7519:28751707,24220197:180965 +k1,7519:29951758,24220197:180966 +k1,7520:32583029,24220197:0 +) +(1,7520:6764466,25085277:25818563,513147,134348 +k1,7519:8624611,25085277:221090 +k1,7519:9377199,25085277:221091 +k1,7519:11920230,25085277:221090 +k1,7519:13654547,25085277:221091 +k1,7519:14491675,25085277:221090 +k1,7519:15731851,25085277:221091 +k1,7519:17923609,25085277:221090 +k1,7519:20013130,25085277:221090 +k1,7519:23067342,25085277:221091 +k1,7519:23904470,25085277:221090 +k1,7519:24481421,25085277:221091 +k1,7519:27481238,25085277:221090 +k1,7519:29091692,25085277:221091 +k1,7519:31189078,25085277:221090 +k1,7519:32583029,25085277:0 +) +(1,7520:6764466,25950357:25818563,435480,115847 +g1,7519:7773065,25950357 +g1,7519:9506492,25950357 +g1,7519:10391883,25950357 +(1,7519:10391883,25950357:0,435480,115847 +r1,7560:12156997,25950357:1765114,551327,115847 +k1,7519:10391883,25950357:-1765114 +) +(1,7519:10391883,25950357:1765114,435480,115847 +g1,7519:11098584,25950357 +g1,7519:11802008,25950357 +h1,7519:12153720,25950357:0,411205,112570 +) +g1,7519:12356226,25950357 +g1,7519:14896401,25950357 +(1,7519:14896401,25950357:0,414482,115847 +r1,7560:16661514,25950357:1765113,530329,115847 +k1,7519:14896401,25950357:-1765113 +) +(1,7519:14896401,25950357:1765113,414482,115847 +k1,7519:14896401,25950357:3277 +h1,7519:16658237,25950357:0,411205,112570 +) +k1,7520:32583029,25950357:15747845 +g1,7520:32583029,25950357 +) +v1,7522:6764466,26635212:0,393216,0 +(1,7531:6764466,29145016:25818563,2903020,196608 +g1,7531:6764466,29145016 +g1,7531:6764466,29145016 +g1,7531:6567858,29145016 +(1,7531:6567858,29145016:0,2903020,196608 +r1,7560:32779637,29145016:26211779,3099628,196608 +k1,7531:6567857,29145016:-26211780 +) +(1,7531:6567858,29145016:26211779,2903020,196608 +[1,7531:6764466,29145016:25818563,2706412,0 +(1,7524:6764466,26846527:25818563,407923,0 +(1,7523:6764466,26846527:0,0,0 +g1,7523:6764466,26846527 +g1,7523:6764466,26846527 +g1,7523:6436786,26846527 +(1,7523:6436786,26846527:0,0,0 +) +g1,7523:6764466,26846527 +) +g1,7524:7428374,26846527 +g1,7524:8424236,26846527 +h1,7524:8756190,26846527:0,0,0 +k1,7524:32583030,26846527:23826840 +g1,7524:32583030,26846527 +) +(1,7525:6764466,27531382:25818563,431045,86428 +h1,7525:6764466,27531382:0,0,0 +g1,7525:11079868,27531382 +g1,7525:11743776,27531382 +g1,7525:12407684,27531382 +h1,7525:13071592,27531382:0,0,0 +k1,7525:32583028,27531382:19511436 +g1,7525:32583028,27531382 +) +(1,7530:6764466,28347309:25818563,424439,106246 +(1,7527:6764466,28347309:0,0,0 +g1,7527:6764466,28347309 +g1,7527:6764466,28347309 +g1,7527:6436786,28347309 +(1,7527:6436786,28347309:0,0,0 +) +g1,7527:6764466,28347309 +) +g1,7530:7760328,28347309 +g1,7530:9088144,28347309 +g1,7530:9752052,28347309 +g1,7530:10415960,28347309 +h1,7530:10747914,28347309:0,0,0 +k1,7530:32583030,28347309:21835116 +g1,7530:32583030,28347309 +) +(1,7530:6764466,29032164:25818563,424439,112852 +h1,7530:6764466,29032164:0,0,0 +g1,7530:7760328,29032164 +g1,7530:8756190,29032164 +g1,7530:10747914,29032164 +g1,7530:12075730,29032164 +g1,7530:15063316,29032164 +h1,7530:18382855,29032164:0,0,0 +k1,7530:32583029,29032164:14200174 +g1,7530:32583029,29032164 +) +] +) +g1,7531:32583029,29145016 +g1,7531:6764466,29145016 +g1,7531:6764466,29145016 +g1,7531:32583029,29145016 +g1,7531:32583029,29145016 +) +h1,7531:6764466,29341624:0,0,0 +(1,7535:6764466,30206704:25818563,505283,134348 +h1,7534:6764466,30206704:983040,0,0 +k1,7534:9363861,30206704:235511 +k1,7534:10885189,30206704:235512 +k1,7534:13402008,30206704:235511 +k1,7534:14288947,30206704:235511 +k1,7534:15543544,30206704:235512 +k1,7534:19219040,30206704:235511 +k1,7534:21659839,30206704:235512 +k1,7534:22581512,30206704:235511 +k1,7534:25889351,30206704:235511 +k1,7534:26776291,30206704:235512 +k1,7534:30292534,30206704:235511 +(1,7534:30292534,30206704:0,452978,115847 +r1,7560:32409359,30206704:2116825,568825,115847 +k1,7534:30292534,30206704:-2116825 +) +(1,7534:30292534,30206704:2116825,452978,115847 +k1,7534:30292534,30206704:3277 +h1,7534:32406082,30206704:0,411205,112570 +) +k1,7534:32583029,30206704:0 +) +(1,7535:6764466,31071784:25818563,513147,134348 +k1,7534:8388401,31071784:226052 +k1,7534:10689979,31071784:226053 +k1,7534:11602193,31071784:226052 +k1,7534:12184106,31071784:226053 +k1,7534:13648133,31071784:226052 +k1,7534:14533478,31071784:226053 +k1,7534:17570369,31071784:226052 +k1,7534:20509612,31071784:226052 +k1,7534:22590334,31071784:226053 +k1,7534:23625756,31071784:226052 +k1,7534:25920125,31071784:226053 +k1,7534:28184347,31071784:226052 +k1,7534:29026438,31071784:226053 +k1,7534:29608350,31071784:226052 +k1,7534:32583029,31071784:0 +) +(1,7535:6764466,31936864:25818563,426639,7863 +k1,7535:32583029,31936864:23667016 +g1,7535:32583029,31936864 +) +v1,7537:6764466,32621719:0,393216,0 +(1,7551:6764466,38469370:25818563,6240867,196608 +g1,7551:6764466,38469370 +g1,7551:6764466,38469370 +g1,7551:6567858,38469370 +(1,7551:6567858,38469370:0,6240867,196608 +r1,7560:32779637,38469370:26211779,6437475,196608 +k1,7551:6567857,38469370:-26211780 +) +(1,7551:6567858,38469370:26211779,6240867,196608 +[1,7551:6764466,38469370:25818563,6044259,0 +(1,7539:6764466,32849550:25818563,424439,86428 +(1,7538:6764466,32849550:0,0,0 +g1,7538:6764466,32849550 +g1,7538:6764466,32849550 +g1,7538:6436786,32849550 +(1,7538:6436786,32849550:0,0,0 +) +g1,7538:6764466,32849550 +) +g1,7539:9420098,32849550 +g1,7539:10415960,32849550 +g1,7539:12739638,32849550 +h1,7539:14067454,32849550:0,0,0 +k1,7539:32583030,32849550:18515576 +g1,7539:32583030,32849550 +) +(1,7540:6764466,33534405:25818563,431045,86428 +h1,7540:6764466,33534405:0,0,0 +g1,7540:11079868,33534405 +g1,7540:13403546,33534405 +g1,7540:14067454,33534405 +h1,7540:16723085,33534405:0,0,0 +k1,7540:32583029,33534405:15859944 +g1,7540:32583029,33534405 +) +(1,7550:6764466,34350332:25818563,398014,0 +(1,7542:6764466,34350332:0,0,0 +g1,7542:6764466,34350332 +g1,7542:6764466,34350332 +g1,7542:6436786,34350332 +(1,7542:6436786,34350332:0,0,0 +) +g1,7542:6764466,34350332 +) +g1,7550:7760328,34350332 +g1,7550:8092282,34350332 +g1,7550:8424236,34350332 +g1,7550:9088144,34350332 +g1,7550:9420098,34350332 +g1,7550:9752052,34350332 +g1,7550:10084006,34350332 +g1,7550:10415960,34350332 +h1,7550:10747914,34350332:0,0,0 +k1,7550:32583030,34350332:21835116 +g1,7550:32583030,34350332 +) +(1,7550:6764466,35035187:25818563,407923,8257 +h1,7550:6764466,35035187:0,0,0 +g1,7550:7760328,35035187 +g1,7550:8424236,35035187 +g1,7550:9088144,35035187 +g1,7550:9420098,35035187 +h1,7550:10747914,35035187:0,0,0 +k1,7550:32583030,35035187:21835116 +g1,7550:32583030,35035187 +) +(1,7550:6764466,35720042:25818563,407923,8257 +h1,7550:6764466,35720042:0,0,0 +g1,7550:7760328,35720042 +g1,7550:8424236,35720042 +g1,7550:9088144,35720042 +h1,7550:10747914,35720042:0,0,0 +k1,7550:32583030,35720042:21835116 +g1,7550:32583030,35720042 +) +(1,7550:6764466,36404897:25818563,407923,9908 +h1,7550:6764466,36404897:0,0,0 +g1,7550:7760328,36404897 +g1,7550:8424236,36404897 +g1,7550:9088144,36404897 +g1,7550:9420098,36404897 +h1,7550:10747914,36404897:0,0,0 +k1,7550:32583030,36404897:21835116 +g1,7550:32583030,36404897 +) +(1,7550:6764466,37089752:25818563,398014,8257 +h1,7550:6764466,37089752:0,0,0 +g1,7550:7760328,37089752 +g1,7550:8424236,37089752 +g1,7550:9088144,37089752 +h1,7550:10747914,37089752:0,0,0 +k1,7550:32583030,37089752:21835116 +g1,7550:32583030,37089752 +) +(1,7550:6764466,37774607:25818563,398014,9908 +h1,7550:6764466,37774607:0,0,0 +g1,7550:7760328,37774607 +g1,7550:8424236,37774607 +g1,7550:9088144,37774607 +g1,7550:9420098,37774607 +h1,7550:10747914,37774607:0,0,0 +k1,7550:32583030,37774607:21835116 +g1,7550:32583030,37774607 +) +(1,7550:6764466,38459462:25818563,407923,9908 +h1,7550:6764466,38459462:0,0,0 +g1,7550:7760328,38459462 +g1,7550:8424236,38459462 +g1,7550:9088144,38459462 +h1,7550:10747914,38459462:0,0,0 +k1,7550:32583030,38459462:21835116 +g1,7550:32583030,38459462 +) +] +) +g1,7551:32583029,38469370 +g1,7551:6764466,38469370 +g1,7551:6764466,38469370 +g1,7551:32583029,38469370 +g1,7551:32583029,38469370 +) +h1,7551:6764466,38665978:0,0,0 +(1,7555:6764466,39531058:25818563,513147,134348 +h1,7554:6764466,39531058:983040,0,0 +k1,7554:9087648,39531058:143455 +k1,7554:10323589,39531058:143456 +k1,7554:11134200,39531058:143455 +(1,7554:11134200,39531058:0,452978,115847 +r1,7560:13954449,39531058:2820249,568825,115847 +k1,7554:11134200,39531058:-2820249 +) +(1,7554:11134200,39531058:2820249,452978,115847 +k1,7554:11134200,39531058:3277 +h1,7554:13951172,39531058:0,411205,112570 +) +k1,7554:14097904,39531058:143455 +k1,7554:14772857,39531058:143456 +k1,7554:18572566,39531058:143455 +k1,7554:19788190,39531058:143455 +k1,7554:21581842,39531058:143455 +k1,7554:23591108,39531058:143456 +k1,7554:24385991,39531058:143455 +k1,7554:26049226,39531058:143455 +k1,7554:29373800,39531058:143456 +k1,7554:30168683,39531058:143455 +k1,7554:32583029,39531058:0 +) +(1,7555:6764466,40396138:25818563,505283,134348 +k1,7554:8715293,40396138:215434 +k1,7554:9949812,40396138:215434 +k1,7554:13379787,40396138:215434 +k1,7554:16341835,40396138:215434 +(1,7554:16341835,40396138:0,452978,115847 +r1,7560:17403525,40396138:1061690,568825,115847 +k1,7554:16341835,40396138:-1061690 +) +(1,7554:16341835,40396138:1061690,452978,115847 +g1,7554:17048536,40396138 +h1,7554:17400248,40396138:0,411205,112570 +) +k1,7554:17792629,40396138:215434 +k1,7554:19388908,40396138:215435 +k1,7554:21257815,40396138:215434 +k1,7554:23388866,40396138:215434 +k1,7554:24255728,40396138:215434 +k1,7554:27471400,40396138:215434 +k1,7554:31593435,40396138:215434 +k1,7555:32583029,40396138:0 +) +(1,7555:6764466,41261218:25818563,513147,134348 +k1,7554:8460736,41261218:191563 +k1,7554:9303727,41261218:191563 +k1,7554:12521086,41261218:191562 +k1,7554:13858874,41261218:191563 +(1,7554:13858874,41261218:0,452978,115847 +r1,7560:16679123,41261218:2820249,568825,115847 +k1,7554:13858874,41261218:-2820249 +) +(1,7554:13858874,41261218:2820249,452978,115847 +k1,7554:13858874,41261218:3277 +h1,7554:16675846,41261218:0,411205,112570 +) +k1,7554:16870686,41261218:191563 +k1,7554:18253694,41261218:191563 +(1,7554:18253694,41261218:0,452978,115847 +r1,7560:20370519,41261218:2116825,568825,115847 +k1,7554:18253694,41261218:-2116825 +) +(1,7554:18253694,41261218:2116825,452978,115847 +k1,7554:18253694,41261218:3277 +h1,7554:20367242,41261218:0,411205,112570 +) +k1,7554:20562082,41261218:191563 +k1,7554:23843668,41261218:191563 +k1,7554:26077332,41261218:191562 +k1,7554:27465582,41261218:191563 +k1,7554:29681552,41261218:191563 +k1,7554:31298523,41261218:191563 +k1,7554:32583029,41261218:0 +) +(1,7555:6764466,42126298:25818563,513147,126483 +k1,7554:7345676,42126298:225350 +k1,7554:9402102,42126298:225350 +k1,7554:10158949,42126298:225350 +k1,7554:13223319,42126298:225350 +k1,7554:14100097,42126298:225350 +k1,7554:15073213,42126298:225350 +k1,7554:16985461,42126298:225351 +k1,7554:19788997,42126298:225350 +k1,7554:21205792,42126298:225350 +k1,7554:23753738,42126298:225350 +k1,7554:24998173,42126298:225350 +k1,7554:26873720,42126298:225350 +k1,7554:29308944,42126298:225350 +k1,7554:30402646,42126298:225350 +k1,7554:32583029,42126298:0 +) +(1,7555:6764466,42991378:25818563,513147,134348 +k1,7554:7769242,42991378:257010 +k1,7554:9724291,42991378:257011 +k1,7554:11716694,42991378:257010 +k1,7554:13105511,42991378:257010 +k1,7554:14021813,42991378:257010 +k1,7554:15975551,42991378:257011 +k1,7554:19432029,42991378:257010 +k1,7554:20591470,42991378:257010 +k1,7554:24235381,42991378:257010 +k1,7554:25730367,42991378:257011 +k1,7554:26646669,42991378:257010 +k1,7554:29623423,42991378:257010 +k1,7554:32583029,42991378:0 +) +(1,7555:6764466,43856458:25818563,513147,126483 +g1,7554:9901019,43856458 +g1,7554:10631745,43856458 +g1,7554:11482402,43856458 +g1,7554:13189614,43856458 +g1,7554:14407928,43856458 +g1,7554:16675473,43856458 +g1,7554:17533994,43856458 +g1,7554:19122586,43856458 +g1,7554:21528412,43856458 +k1,7555:32583029,43856458:9196016 +g1,7555:32583029,43856458 +) +] +g1,7555:32583029,43982941 +) +h1,7555:6630773,43982941:0,0,0 +(1,7558:6630773,44848021:25952256,513147,134348 +h1,7557:6630773,44848021:983040,0,0 +k1,7557:8340570,44848021:239169 +k1,7557:11884760,44848021:239209 +k1,7557:13637195,44848021:239209 +k1,7557:15114379,44848021:239209 +k1,7557:16012880,44848021:239209 +k1,7557:18819790,44848021:239209 +k1,7557:19414859,44848021:239209 +k1,7557:22036957,44848021:239209 +k1,7557:23037695,44848021:239210 +k1,7557:25014919,44848021:239209 +k1,7557:26821749,44848021:239209 +k1,7557:27416818,44848021:239209 +k1,7557:29045390,44848021:239209 +k1,7557:31160895,44848021:239209 +k1,7557:31931601,44848021:239209 +k1,7557:32583029,44848021:0 +) +] +(1,7560:32583029,45706769:0,0,0 +g1,7560:32583029,45706769 +) +) +] +(1,7560:6630773,47279633:25952256,0,0 +h1,7560:6630773,47279633:25952256,0,0 +) +] +(1,7560:4262630,4025873:0,0,0 +[1,7560:-473656,4025873:0,0,0 +(1,7560:-473656,-710413:0,0,0 +(1,7560:-473656,-710413:0,0,0 +g1,7560:-473656,-710413 +) +g1,7560:-473656,-710413 +) +] +) +] +!27498 +}115 +Input:1015:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1016:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1017:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1018:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1019:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1020:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1021:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1022:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1023:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1024:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1025:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1046 +{116 +[1,7637:4262630,47279633:28320399,43253760,0 +(1,7637:4262630,4025873:0,0,0 +[1,7637:-473656,4025873:0,0,0 +(1,7637:-473656,-710413:0,0,0 +(1,7637:-473656,-644877:0,0,0 +k1,7637:-473656,-644877:-65536 ) +(1,7637:-473656,4736287:0,0,0 +k1,7637:-473656,4736287:5209943 ) -) -] -[1,8503:3078558,4812305:0,0,0 -(1,8503:3078558,49800853:0,16384,2228224 -g1,8503:29030814,49800853 -g1,8503:36135244,49800853 -(1,8393:36135244,49800853:1720320,16384,2228224 -(1,8393:36135244,52029077:16384,1703936,0 -[1,8393:36135244,52029077:25952256,1703936,0 -(1,8393:36135244,51504789:25952256,1179648,0 -(1,8393:36135244,51504789:16384,1179648,0 -r1,8503:36151628,51504789:16384,1179648,0 -) -k1,8393:62087500,51504789:25935872 -g1,8393:62087500,51504789 -) -] -) -g1,8393:36675916,49800853 -(1,8393:36675916,49800853:1179648,16384,0 -r1,8503:37855564,49800853:1179648,16384,0 -) -) -k1,8503:3078556,49800853:-34777008 -) -] -g1,8503:6630773,4812305 -g1,8503:6630773,4812305 -g1,8503:9132937,4812305 -g1,8503:11356573,4812305 -k1,8503:31387653,4812305:20031080 -) -) -] -[1,8503:6630773,45706769:25952256,40108032,0 -(1,8503:6630773,45706769:25952256,40108032,0 -(1,8503:6630773,45706769:0,0,0 -g1,8503:6630773,45706769 -) -[1,8503:6630773,45706769:25952256,40108032,0 -(1,8452:6630773,6254097:25952256,505283,134348 -k1,8451:9093968,6254097:205480 -k1,8451:9927284,6254097:205481 -k1,8451:12798769,6254097:205480 -k1,8451:13655678,6254097:205481 -k1,8451:15599173,6254097:205480 -k1,8451:17344750,6254097:205481 -k1,8451:18008327,6254097:205480 -k1,8451:18745305,6254097:205481 -k1,8451:22160083,6254097:205480 -k1,8451:23650070,6254097:205481 -k1,8451:26016927,6254097:205480 -k1,8451:27213968,6254097:205481 -k1,8451:28705264,6254097:205480 -k1,8452:32583029,6254097:0 -) -(1,8452:6630773,7095585:25952256,505283,134348 -k1,8451:8151700,7095585:212173 -k1,8451:9015300,7095585:212172 -k1,8451:11951805,7095585:212173 -k1,8451:16389084,7095585:212173 -k1,8451:16957116,7095585:212172 -k1,8451:18699555,7095585:212173 -k1,8451:21169443,7095585:212173 -k1,8451:22882389,7095585:212172 -k1,8451:24286007,7095585:212173 -k1,8451:27778912,7095585:212173 -k1,8451:31261331,7095585:212172 -k1,8451:32124932,7095585:212173 -k1,8451:32583029,7095585:0 -) -(1,8452:6630773,7937073:25952256,473825,126483 -g1,8451:7821562,7937073 -k1,8452:32583030,7937073:21378500 -g1,8452:32583030,7937073 -) -(1,8454:6630773,8778561:25952256,513147,134348 -h1,8453:6630773,8778561:983040,0,0 -k1,8453:8331058,8778561:247352 -k1,8453:9109906,8778561:247351 -k1,8453:10941263,8778561:247352 -k1,8453:13726168,8778561:247351 -k1,8453:14624948,8778561:247352 -k1,8453:16487106,8778561:247351 -k1,8453:18895835,8778561:247352 -k1,8453:19868015,8778561:247352 -k1,8453:21399872,8778561:247351 -k1,8453:23027412,8778561:247352 -k1,8453:24266323,8778561:247351 -k1,8453:29187703,8778561:247352 -k1,8453:30264084,8778561:247351 -k1,8453:32227169,8778561:247352 -k1,8453:32583029,8778561:0 -) -(1,8454:6630773,9620049:25952256,513147,134348 -k1,8453:8652357,9620049:190508 -k1,8453:13516893,9620049:190508 -k1,8453:14864111,9620049:190508 -k1,8453:16676635,9620049:190508 -k1,8453:19204812,9620049:190508 -k1,8453:20891507,9620049:190508 -k1,8453:21733444,9620049:190509 -k1,8453:23300208,9620049:190508 -k1,8453:26574840,9620049:190508 -k1,8453:27231309,9620049:190508 -k1,8453:29108714,9620049:190508 -k1,8453:30675478,9620049:190508 -k1,8453:31548871,9620049:190508 -k1,8454:32583029,9620049:0 -) -(1,8454:6630773,10461537:25952256,513147,126483 -k1,8453:8166785,10461537:175485 -k1,8453:9731633,10461537:175485 -k1,8453:11474739,10461537:175485 -k1,8453:13137237,10461537:175486 -k1,8453:15936784,10461537:175485 -k1,8453:17131354,10461537:175485 -k1,8453:18696202,10461537:175485 -k1,8453:21426280,10461537:175485 -k1,8453:22793210,10461537:175485 -k1,8453:25263767,10461537:175486 -k1,8453:27649126,10461537:175485 -k1,8453:29215285,10461537:175485 -k1,8453:30409855,10461537:175485 -k1,8453:32583029,10461537:0 -) -(1,8454:6630773,11303025:25952256,513147,134348 -k1,8453:7578323,11303025:288258 -k1,8453:8885665,11303025:288257 -k1,8453:11902187,11303025:288258 -k1,8453:13708913,11303025:288257 -k1,8453:16158548,11303025:288258 -k1,8453:17551087,11303025:288257 -k1,8453:18587111,11303025:288258 -k1,8453:20388594,11303025:288257 -k1,8453:21328280,11303025:288258 -k1,8453:23380111,11303025:288257 -k1,8453:24687454,11303025:288258 -k1,8453:26629185,11303025:288258 -k1,8453:29472035,11303025:288257 -k1,8453:32583029,11303025:0 -) -(1,8454:6630773,12144513:25952256,505283,126483 -k1,8453:7508207,12144513:226006 -k1,8453:9436182,12144513:226005 -k1,8453:11051551,12144513:226006 -k1,8453:13487430,12144513:226005 -k1,8453:14364864,12144513:226006 -k1,8453:17846698,12144513:226005 -k1,8453:19091789,12144513:226006 -k1,8453:20971268,12144513:226006 -k1,8453:23751866,12144513:226005 -k1,8453:24590634,12144513:226006 -k1,8453:25172499,12144513:226005 -k1,8453:26852094,12144513:226006 -k1,8453:28677177,12144513:226005 -k1,8453:30421652,12144513:226006 -k1,8453:32583029,12144513:0 -) -(1,8454:6630773,12986001:25952256,513147,126483 -g1,8453:10032746,12986001 -g1,8453:10998091,12986001 -g1,8453:12882906,12986001 -g1,8453:14595361,12986001 -g1,8453:15742241,12986001 -g1,8453:16960555,12986001 -k1,8454:32583029,12986001:12894210 -g1,8454:32583029,12986001 -) -(1,8457:6630773,15077261:25952256,555811,139132 -(1,8457:6630773,15077261:2450326,534184,12975 -g1,8457:6630773,15077261 -g1,8457:9081099,15077261 -) -g1,8457:10960475,15077261 -g1,8457:12100212,15077261 -g1,8457:13364664,15077261 -g1,8457:14843943,15077261 -g1,8457:15469681,15077261 -k1,8457:32583029,15077261:14663743 -g1,8457:32583029,15077261 -) -(1,8461:6630773,16311965:25952256,513147,134348 -k1,8460:7402036,16311965:283675 -k1,8460:9516873,16311965:283761 -k1,8460:10904915,16311965:283760 -k1,8460:11936441,16311965:283760 -k1,8460:15350200,16311965:283760 -k1,8460:17369353,16311965:283760 -k1,8460:20348610,16311965:283761 -(1,8460:20348610,16311965:0,452978,115847 -r1,8503:23168859,16311965:2820249,568825,115847 -k1,8460:20348610,16311965:-2820249 -) -(1,8460:20348610,16311965:2820249,452978,115847 -k1,8460:20348610,16311965:3277 -h1,8460:23165582,16311965:0,411205,112570 -) -k1,8460:23626289,16311965:283760 -k1,8460:24387806,16311965:283760 -k1,8460:25539918,16311965:283760 -k1,8460:27298893,16311965:283760 -k1,8460:27938514,16311965:283761 -k1,8460:29448453,16311965:283760 -k1,8460:30715253,16311965:283760 -k1,8461:32583029,16311965:0 -) -(1,8461:6630773,17153453:25952256,513147,134348 -g1,8460:13548098,17153453 -g1,8460:17109324,17153453 -g1,8460:18327638,17153453 -g1,8460:21502202,17153453 -k1,8461:32583029,17153453:9680978 -g1,8461:32583029,17153453 -) -v1,8461:6630773,18519229:0,393216,0 -(1,8467:6630773,19238360:25952256,1112347,589824 -k1,8467:6040949,19238360:-589824 -(1,8467:6040949,19238360:0,1112347,589824 -r1,8503:33172853,19238360:27131904,1702171,589824 -k1,8467:6040949,19238360:-27131904 -) -(1,8467:6040949,19238360:27131904,1112347,589824 -[1,8467:6630773,19238360:25952256,522523,0 -(1,8466:6630773,19126355:25952256,410518,101187 -(1,8463:6630773,19126355:0,0,0 -g1,8463:6630773,19126355 -g1,8463:6630773,19126355 -g1,8463:6303093,19126355 -(1,8463:6303093,19126355:0,0,0 -) -g1,8463:6630773,19126355 -) -g1,8466:7263065,19126355 -g1,8466:8843794,19126355 -g1,8466:9792231,19126355 -g1,8466:10740668,19126355 -g1,8466:12637542,19126355 -g1,8466:13269834,19126355 -h1,8466:15166708,19126355:0,0,0 -k1,8466:32583028,19126355:17416320 -g1,8466:32583028,19126355 -) -(1,8466:6630773,19792533:25952256,404226,101187 -h1,8466:6630773,19792533:0,0,0 -g1,8466:9159939,19792533 -g1,8466:9792231,19792533 -h1,8466:10424522,19792533:0,0,0 -k1,8466:32583030,19792533:22158508 -g1,8466:32583030,19792533 -) -] -) -k1,8467:32583029,19238360:-589824 -) -h1,8467:6630773,19828184:0,0,0 -(1,8470:6630773,21193960:25952256,513147,7863 -h1,8469:6630773,21193960:983040,0,0 -g1,8469:9004487,21193960 -g1,8469:10637644,21193960 -g1,8469:12945822,21193960 -g1,8469:14348292,21193960 -k1,8470:32583030,21193960:17078028 -g1,8470:32583030,21193960 -) -v1,8472:6630773,22384426:0,393216,0 -(1,8479:6630773,23340535:25952256,1349325,196608 -g1,8479:6630773,23340535 -g1,8479:6630773,23340535 -g1,8479:6434165,23340535 -(1,8479:6434165,23340535:0,1349325,196608 -r1,8503:32779637,23340535:26345472,1545933,196608 -k1,8479:6434165,23340535:-26345472 -) -(1,8479:6434165,23340535:26345472,1349325,196608 -[1,8479:6630773,23340535:25952256,1152717,0 -(1,8474:6630773,22598336:25952256,410518,101187 -(1,8473:6630773,22598336:0,0,0 -g1,8473:6630773,22598336 -g1,8473:6630773,22598336 -g1,8473:6303093,22598336 -(1,8473:6303093,22598336:0,0,0 -) -g1,8473:6630773,22598336 -) -k1,8474:6630773,22598336:0 -h1,8474:15166707,22598336:0,0,0 -k1,8474:32583029,22598336:17416322 -g1,8474:32583029,22598336 -) -(1,8478:6630773,23264514:25952256,404226,76021 -(1,8476:6630773,23264514:0,0,0 -g1,8476:6630773,23264514 -g1,8476:6630773,23264514 -g1,8476:6303093,23264514 -(1,8476:6303093,23264514:0,0,0 -) -g1,8476:6630773,23264514 -) -g1,8478:7579210,23264514 -g1,8478:8843793,23264514 -h1,8478:9159939,23264514:0,0,0 -k1,8478:32583029,23264514:23423090 -g1,8478:32583029,23264514 -) -] -) -g1,8479:32583029,23340535 -g1,8479:6630773,23340535 -g1,8479:6630773,23340535 -g1,8479:32583029,23340535 -g1,8479:32583029,23340535 -) -h1,8479:6630773,23537143:0,0,0 -(1,8483:6630773,24902919:25952256,513147,134348 -h1,8482:6630773,24902919:983040,0,0 -k1,8482:9013157,24902919:202657 -k1,8482:11388989,24902919:202658 -k1,8482:12250938,24902919:202657 -k1,8482:15508884,24902919:202658 -k1,8482:16730626,24902919:202657 -k1,8482:20449946,24902919:202658 -k1,8482:23792433,24902919:202657 -k1,8482:24611129,24902919:202658 -k1,8482:25832871,24902919:202657 -k1,8482:27018569,24902919:202658 -k1,8482:28353688,24902919:202657 -k1,8482:30745249,24902919:202658 -k1,8482:31563944,24902919:202657 -k1,8482:32583029,24902919:0 -) -(1,8483:6630773,25744407:25952256,513147,126483 -k1,8482:9448384,25744407:223696 -k1,8482:10868767,25744407:223696 -k1,8482:14582255,25744407:223696 -k1,8482:18362590,25744407:223696 -k1,8482:19577846,25744407:223696 -k1,8482:20867814,25744407:223697 -k1,8482:23167035,25744407:223696 -k1,8482:24359353,25744407:223696 -k1,8482:26848629,25744407:223696 -k1,8482:28091410,25744407:223696 -k1,8482:30844796,25744407:223696 -k1,8482:32051532,25744407:223696 -k1,8482:32583029,25744407:0 -) -(1,8483:6630773,26585895:25952256,505283,126483 -k1,8482:7921645,26585895:224601 -k1,8482:10358741,26585895:224601 -k1,8482:11234770,26585895:224601 -k1,8482:12478457,26585895:224602 -k1,8482:15330396,26585895:224601 -k1,8482:16746442,26585895:224601 -k1,8482:17990128,26585895:224601 -k1,8482:20387903,26585895:224601 -k1,8482:21744966,26585895:224601 -k1,8482:23035838,26585895:224601 -k1,8482:24008206,26585895:224602 -k1,8482:26582928,26585895:224601 -k1,8482:28850286,26585895:224601 -k1,8482:30245360,26585895:224601 -k1,8482:32583029,26585895:0 -) -(1,8483:6630773,27427383:25952256,505283,126483 -k1,8482:9123073,27427383:161184 -(1,8482:9123073,27427383:0,452978,115847 -r1,8503:11591610,27427383:2468537,568825,115847 -k1,8482:9123073,27427383:-2468537 -) -(1,8482:9123073,27427383:2468537,452978,115847 -k1,8482:9123073,27427383:3277 -h1,8482:11588333,27427383:0,411205,112570 -) -k1,8482:11752794,27427383:161184 -k1,8482:15403770,27427383:161184 -k1,8482:16180992,27427383:161184 -k1,8482:17361261,27427383:161184 -k1,8482:19527191,27427383:161184 -k1,8482:21069218,27427383:161183 -k1,8482:23511710,27427383:161184 -k1,8482:24288932,27427383:161184 -k1,8482:26201893,27427383:161184 -k1,8482:28060459,27427383:161184 -k1,8482:29507459,27427383:161184 -k1,8482:30320071,27427383:161184 -k1,8483:32583029,27427383:0 -) -(1,8483:6630773,28268871:25952256,513147,134348 -k1,8482:8049941,28268871:176605 -k1,8482:8582405,28268871:176604 -k1,8482:10614334,28268871:176605 -k1,8482:13141060,28268871:176605 -k1,8482:14711616,28268871:176605 -(1,8482:14711616,28268871:0,452978,122846 -r1,8503:17531865,28268871:2820249,575824,122846 -k1,8482:14711616,28268871:-2820249 -) -(1,8482:14711616,28268871:2820249,452978,122846 -k1,8482:14711616,28268871:3277 -h1,8482:17528588,28268871:0,411205,112570 -) -k1,8482:17708469,28268871:176604 -k1,8482:19745641,28268871:176605 -k1,8482:20573674,28268871:176605 -k1,8482:21498045,28268871:176605 -k1,8482:24024770,28268871:176604 -k1,8482:24667336,28268871:176605 -k1,8482:25712293,28268871:176605 -k1,8482:27437514,28268871:176605 -k1,8482:28072215,28268871:176604 -k1,8482:28900248,28268871:176605 -k1,8482:29824619,28268871:176605 -k1,8482:32583029,28268871:0 -) -(1,8483:6630773,29110359:25952256,505283,134348 -g1,8482:7446040,29110359 -g1,8482:8664354,29110359 -g1,8482:11022339,29110359 -g1,8482:12919606,29110359 -g1,8482:14137920,29110359 -g1,8482:16168225,29110359 -g1,8482:16898951,29110359 -g1,8482:18389895,29110359 -g1,8482:20908443,29110359 -g1,8482:21463532,29110359 -g1,8482:24997233,29110359 -(1,8482:24997233,29110359:0,452978,115847 -r1,8503:27465770,29110359:2468537,568825,115847 -k1,8482:24997233,29110359:-2468537 -) -(1,8482:24997233,29110359:2468537,452978,115847 -k1,8482:24997233,29110359:3277 -h1,8482:27462493,29110359:0,411205,112570 -) -g1,8482:27664999,29110359 -g1,8482:28395725,29110359 -k1,8483:32583029,29110359:1121530 -g1,8483:32583029,29110359 -) -(1,8485:6630773,29951847:25952256,513147,126483 -h1,8484:6630773,29951847:983040,0,0 -k1,8484:9487365,29951847:211559 -k1,8484:11708913,29951847:211559 -k1,8484:14518320,29951847:211560 -k1,8484:15195840,29951847:211559 -k1,8484:16577872,29951847:211559 -k1,8484:18264646,29951847:211559 -k1,8484:19246908,29951847:211559 -k1,8484:19873298,29951847:211547 -k1,8484:21915934,29951847:211560 -k1,8484:23704945,29951847:211559 -k1,8484:24532542,29951847:211559 -k1,8484:25763186,29951847:211559 -k1,8484:28057479,29951847:211559 -k1,8484:29923823,29951847:211560 -k1,8484:31267844,29951847:211559 -k1,8484:32227169,29951847:211559 -k1,8484:32583029,29951847:0 -) -(1,8485:6630773,30793335:25952256,513147,126483 -k1,8484:9483446,30793335:143415 -k1,8484:10971003,30793335:143414 -k1,8484:13157175,30793335:143415 -k1,8484:14694541,30793335:143415 -k1,8484:15608658,30793335:143414 -k1,8484:18494099,30793335:143415 -k1,8484:22125995,30793335:143415 -k1,8484:24066406,30793335:143414 -k1,8484:25777442,30793335:143415 -k1,8484:27806328,30793335:143415 -k1,8484:29120215,30793335:143414 -k1,8484:30367912,30793335:143415 -k1,8484:32583029,30793335:0 -) -(1,8485:6630773,31634823:25952256,513147,134348 -k1,8484:9532941,31634823:168006 -k1,8484:10387109,31634823:168006 -k1,8484:13645138,31634823:168006 -k1,8484:15842139,31634823:168006 -k1,8484:16693030,31634823:168006 -k1,8484:19295043,31634823:168006 -k1,8484:20857000,31634823:168006 -k1,8484:22989121,31634823:168007 -k1,8484:23840012,31634823:168006 -k1,8484:26442025,31634823:168006 -k1,8484:27296193,31634823:168006 -k1,8484:28958420,31634823:168006 -k1,8484:30448287,31634823:168006 -k1,8484:31563944,31634823:168006 -k1,8484:32583029,31634823:0 -) -(1,8485:6630773,32476311:25952256,505283,126483 -g1,8484:8661078,32476311 -g1,8484:9476345,32476311 -g1,8484:10694659,32476311 -g1,8484:13804342,32476311 -g1,8484:15855618,32476311 -g1,8484:17963911,32476311 -k1,8485:32583029,32476311:13432261 -g1,8485:32583029,32476311 -) -(1,8487:6630773,33317799:25952256,513147,134348 -h1,8486:6630773,33317799:983040,0,0 -k1,8486:9589437,33317799:192389 -k1,8486:10137686,33317799:192389 -k1,8486:12161151,33317799:192389 -k1,8486:12885037,33317799:192389 -k1,8486:15684448,33317799:192389 -k1,8486:16895922,33317799:192389 -k1,8486:19247067,33317799:192389 -k1,8486:20543738,33317799:192389 -k1,8486:21483894,33317799:192390 -k1,8486:23487698,33317799:192389 -k1,8486:24331515,33317799:192389 -k1,8486:24879764,33317799:192389 -k1,8486:26298332,33317799:192389 -k1,8486:27473761,33317799:192389 -k1,8486:29993333,33317799:192389 -k1,8486:30845014,33317799:192389 -k1,8486:32583029,33317799:0 -) -(1,8487:6630773,34159287:25952256,513147,134348 -k1,8486:8907894,34159287:201596 -k1,8486:9725529,34159287:201597 -k1,8486:10946210,34159287:201596 -k1,8486:13741721,34159287:201596 -k1,8486:14413210,34159287:201596 -k1,8486:15146304,34159287:201597 -k1,8486:16633716,34159287:201596 -k1,8486:18229918,34159287:201596 -k1,8486:19082942,34159287:201596 -k1,8486:20384233,34159287:201597 -k1,8486:21000670,34159287:201594 -k1,8486:22596217,34159287:201596 -k1,8486:23816898,34159287:201596 -k1,8486:24433335,34159287:201594 -k1,8486:26466007,34159287:201596 -k1,8486:27650643,34159287:201596 -k1,8486:28538402,34159287:201597 -k1,8486:29510701,34159287:201596 -k1,8486:32583029,34159287:0 -) -(1,8487:6630773,35000775:25952256,505283,134348 -k1,8486:9242455,35000775:197336 -k1,8486:10052553,35000775:197336 -k1,8486:11268974,35000775:197336 -k1,8486:14520288,35000775:197336 -k1,8486:16963543,35000775:197336 -k1,8486:18663620,35000775:197336 -k1,8486:19543841,35000775:197336 -k1,8486:26571339,35000775:197336 -k1,8486:31016719,35000775:197336 -k1,8487:32583029,35000775:0 -) -(1,8487:6630773,35842263:25952256,513147,126483 -k1,8486:8513269,35842263:176594 -k1,8486:9975680,35842263:176595 -k1,8486:11719895,35842263:176594 -k1,8486:13399230,35842263:176594 -k1,8486:15910873,35842263:176595 -k1,8486:17284154,35842263:176594 -k1,8486:18844868,35842263:176594 -k1,8486:20193901,35842263:176594 -k1,8486:22671465,35842263:176595 -k1,8486:24508741,35842263:176594 -k1,8486:28175127,35842263:176594 -k1,8486:30774588,35842263:176595 -k1,8486:31563944,35842263:176594 -k1,8486:32583029,35842263:0 -) -(1,8487:6630773,36683751:25952256,505283,126483 -g1,8486:7694422,36683751 -g1,8486:9396392,36683751 -g1,8486:12755112,36683751 -g1,8486:15355580,36683751 -g1,8486:17506471,36683751 -g1,8486:19148147,36683751 -g1,8486:19960138,36683751 -g1,8486:21178452,36683751 -g1,8486:21792524,36683751 -g1,8486:25151244,36683751 -k1,8487:32583029,36683751:4856875 -g1,8487:32583029,36683751 -) -v1,8487:6630773,38049527:0,393216,0 -(1,8492:6630773,38246135:25952256,589824,589824 -k1,8492:6040949,38246135:-589824 -(1,8492:6040949,38246135:0,589824,589824 -r1,8503:33172853,38246135:27131904,1179648,589824 -k1,8492:6040949,38246135:-27131904 -) -(1,8492:6040949,38246135:27131904,589824,589824 -[1,8492:6630773,38246135:25952256,-143655,0 -(1,8491:6630773,38800308:25952256,410518,101187 -(1,8489:6630773,38800308:0,0,0 -g1,8489:6630773,38800308 -g1,8489:6630773,38800308 -g1,8489:6303093,38800308 -(1,8489:6303093,38800308:0,0,0 -) -g1,8489:6630773,38800308 -) -k1,8491:6630773,38800308:0 -g1,8491:7263065,38800308 -g1,8491:9792231,38800308 -h1,8491:15166708,38800308:0,0,0 -k1,8491:32583028,38800308:17416320 -g1,8491:32583028,38800308 -) -] -) -k1,8492:32583029,38246135:-589824 -) -h1,8492:6630773,38835959:0,0,0 -(1,8495:6630773,40201735:25952256,513147,134348 -h1,8494:6630773,40201735:983040,0,0 -k1,8494:9098103,40201735:230586 -k1,8494:10432971,40201735:230586 -k1,8494:12241009,40201735:230586 -k1,8494:13242297,40201735:230585 -k1,8494:16526861,40201735:230586 -k1,8494:19507338,40201735:230586 -k1,8494:21191512,40201735:230586 -k1,8494:22989719,40201735:230586 -k1,8494:24239390,40201735:230586 -k1,8494:26228961,40201735:230585 -k1,8494:28256544,40201735:230586 -k1,8494:29103168,40201735:230586 -k1,8494:31931601,40201735:230586 -k1,8494:32583029,40201735:0 -) -(1,8495:6630773,41043223:25952256,513147,126483 -k1,8494:7895093,41043223:146276 -k1,8494:9244611,41043223:146277 -k1,8494:12724048,41043223:146276 -k1,8494:14067011,41043223:146276 -k1,8494:16372043,41043223:146276 -k1,8494:17650782,41043223:146277 -k1,8494:18544824,41043223:146276 -k1,8494:21041221,41043223:146276 -k1,8494:21838925,41043223:146276 -k1,8494:23004287,41043223:146277 -k1,8494:24653304,41043223:146276 -k1,8494:27393495,41043223:146276 -k1,8494:28017528,41043223:146276 -k1,8494:29334278,41043223:146277 -k1,8494:31436804,41043223:146276 -k1,8494:32583029,41043223:0 -) -(1,8495:6630773,41884711:25952256,513147,134348 -g1,8494:7481430,41884711 -g1,8494:9071333,41884711 -g1,8494:10289647,41884711 -g1,8494:12647632,41884711 -g1,8494:13498289,41884711 -g1,8494:14053378,41884711 -g1,8494:15409317,41884711 -g1,8494:16701031,41884711 -g1,8494:20394640,41884711 -g1,8494:22329262,41884711 -g1,8494:23547576,41884711 -g1,8494:26800783,41884711 -g1,8494:29749903,41884711 -k1,8495:32583029,41884711:575411 -g1,8495:32583029,41884711 -) -v1,8495:6630773,43250487:0,393216,0 -(1,8500:6630773,43447095:25952256,589824,589824 -k1,8500:6040949,43447095:-589824 -(1,8500:6040949,43447095:0,589824,589824 -r1,8503:33172853,43447095:27131904,1179648,589824 -k1,8500:6040949,43447095:-27131904 -) -(1,8500:6040949,43447095:27131904,589824,589824 -[1,8500:6630773,43447095:25952256,-143655,0 -(1,8499:6630773,44001268:25952256,410518,101187 -(1,8497:6630773,44001268:0,0,0 -g1,8497:6630773,44001268 -g1,8497:6630773,44001268 -g1,8497:6303093,44001268 -(1,8497:6303093,44001268:0,0,0 -) -g1,8497:6630773,44001268 -) -k1,8499:6630773,44001268:0 -g1,8499:7263065,44001268 -g1,8499:9792231,44001268 -g1,8499:15482854,44001268 -g1,8499:16115146,44001268 -h1,8499:20225040,44001268:0,0,0 -k1,8499:32583029,44001268:12357989 -g1,8499:32583029,44001268 -) -] -) -k1,8500:32583029,43447095:-589824 -) -h1,8500:6630773,44036919:0,0,0 -(1,8503:6630773,45402695:25952256,513147,134348 -h1,8502:6630773,45402695:983040,0,0 -k1,8502:10634749,45402695:244176 -k1,8502:11410422,45402695:244176 -k1,8502:13008572,45402695:244176 -k1,8502:15229969,45402695:244176 -k1,8502:17172183,45402695:244176 -k1,8502:18435445,45402695:244177 -k1,8502:20510697,45402695:244176 -k1,8502:21286370,45402695:244176 -k1,8502:23477621,45402695:244176 -k1,8502:26566060,45402695:244176 -k1,8502:28499754,45402695:244176 -k1,8502:32227169,45402695:244176 -k1,8502:32583029,45402695:0 -) -] -(1,8503:32583029,45706769:0,0,0 -g1,8503:32583029,45706769 -) -) -] -(1,8503:6630773,47279633:25952256,0,0 -h1,8503:6630773,47279633:25952256,0,0 -) -] -(1,8503:4262630,4025873:0,0,0 -[1,8503:-473656,4025873:0,0,0 -(1,8503:-473656,-710413:0,0,0 -(1,8503:-473656,-710413:0,0,0 -g1,8503:-473656,-710413 -) -g1,8503:-473656,-710413 -) -] -) -] -!23337 -}140 -!12 -{141 -[1,8530:4262630,47279633:28320399,43253760,0 -(1,8530:4262630,4025873:0,0,0 -[1,8530:-473656,4025873:0,0,0 -(1,8530:-473656,-710413:0,0,0 -(1,8530:-473656,-644877:0,0,0 -k1,8530:-473656,-644877:-65536 -) -(1,8530:-473656,4736287:0,0,0 -k1,8530:-473656,4736287:5209943 -) -g1,8530:-473656,-710413 +g1,7637:-473656,-710413 ) ] ) -[1,8530:6630773,47279633:25952256,43253760,0 -[1,8530:6630773,4812305:25952256,786432,0 -(1,8530:6630773,4812305:25952256,505283,134348 -(1,8530:6630773,4812305:25952256,505283,134348 -g1,8530:3078558,4812305 -[1,8530:3078558,4812305:0,0,0 -(1,8530:3078558,2439708:0,1703936,0 -k1,8530:1358238,2439708:-1720320 -(1,8393:1358238,2439708:1720320,1703936,0 -(1,8393:1358238,2439708:1179648,16384,0 -r1,8530:2537886,2439708:1179648,16384,0 +[1,7637:6630773,47279633:25952256,43253760,0 +[1,7637:6630773,4812305:25952256,786432,0 +(1,7637:6630773,4812305:25952256,513147,126483 +(1,7637:6630773,4812305:25952256,513147,126483 +g1,7637:3078558,4812305 +[1,7637:3078558,4812305:0,0,0 +(1,7637:3078558,2439708:0,1703936,0 +k1,7637:1358238,2439708:-1720320 +(1,6148:1358238,2439708:1720320,1703936,0 +(1,6148:1358238,2439708:1179648,16384,0 +r1,7637:2537886,2439708:1179648,16384,0 ) -g1,8393:3062174,2439708 -(1,8393:3062174,2439708:16384,1703936,0 -[1,8393:3062174,2439708:25952256,1703936,0 -(1,8393:3062174,1915420:25952256,1179648,0 -(1,8393:3062174,1915420:16384,1179648,0 -r1,8530:3078558,1915420:16384,1179648,0 +g1,6148:3062174,2439708 +(1,6148:3062174,2439708:16384,1703936,0 +[1,6148:3062174,2439708:25952256,1703936,0 +(1,6148:3062174,1915420:25952256,1179648,0 +(1,6148:3062174,1915420:16384,1179648,0 +r1,7637:3078558,1915420:16384,1179648,0 ) -k1,8393:29014430,1915420:25935872 -g1,8393:29014430,1915420 +k1,6148:29014430,1915420:25935872 +g1,6148:29014430,1915420 ) ] ) ) ) ] -[1,8530:3078558,4812305:0,0,0 -(1,8530:3078558,2439708:0,1703936,0 -g1,8530:29030814,2439708 -g1,8530:36135244,2439708 -(1,8393:36135244,2439708:1720320,1703936,0 -(1,8393:36135244,2439708:16384,1703936,0 -[1,8393:36135244,2439708:25952256,1703936,0 -(1,8393:36135244,1915420:25952256,1179648,0 -(1,8393:36135244,1915420:16384,1179648,0 -r1,8530:36151628,1915420:16384,1179648,0 +[1,7637:3078558,4812305:0,0,0 +(1,7637:3078558,2439708:0,1703936,0 +g1,7637:29030814,2439708 +g1,7637:36135244,2439708 +(1,6148:36135244,2439708:1720320,1703936,0 +(1,6148:36135244,2439708:16384,1703936,0 +[1,6148:36135244,2439708:25952256,1703936,0 +(1,6148:36135244,1915420:25952256,1179648,0 +(1,6148:36135244,1915420:16384,1179648,0 +r1,7637:36151628,1915420:16384,1179648,0 ) -k1,8393:62087500,1915420:25935872 -g1,8393:62087500,1915420 +k1,6148:62087500,1915420:25935872 +g1,6148:62087500,1915420 ) ] ) -g1,8393:36675916,2439708 -(1,8393:36675916,2439708:1179648,16384,0 -r1,8530:37855564,2439708:1179648,16384,0 +g1,6148:36675916,2439708 +(1,6148:36675916,2439708:1179648,16384,0 +r1,7637:37855564,2439708:1179648,16384,0 ) ) -k1,8530:3078556,2439708:-34777008 +k1,7637:3078556,2439708:-34777008 ) ] -[1,8530:3078558,4812305:0,0,0 -(1,8530:3078558,49800853:0,16384,2228224 -k1,8530:1358238,49800853:-1720320 -(1,8393:1358238,49800853:1720320,16384,2228224 -(1,8393:1358238,49800853:1179648,16384,0 -r1,8530:2537886,49800853:1179648,16384,0 +[1,7637:3078558,4812305:0,0,0 +(1,7637:3078558,49800853:0,16384,2228224 +k1,7637:1358238,49800853:-1720320 +(1,6148:1358238,49800853:1720320,16384,2228224 +(1,6148:1358238,49800853:1179648,16384,0 +r1,7637:2537886,49800853:1179648,16384,0 ) -g1,8393:3062174,49800853 -(1,8393:3062174,52029077:16384,1703936,0 -[1,8393:3062174,52029077:25952256,1703936,0 -(1,8393:3062174,51504789:25952256,1179648,0 -(1,8393:3062174,51504789:16384,1179648,0 -r1,8530:3078558,51504789:16384,1179648,0 +g1,6148:3062174,49800853 +(1,6148:3062174,52029077:16384,1703936,0 +[1,6148:3062174,52029077:25952256,1703936,0 +(1,6148:3062174,51504789:25952256,1179648,0 +(1,6148:3062174,51504789:16384,1179648,0 +r1,7637:3078558,51504789:16384,1179648,0 ) -k1,8393:29014430,51504789:25935872 -g1,8393:29014430,51504789 +k1,6148:29014430,51504789:25935872 +g1,6148:29014430,51504789 ) ] ) ) ) ] -[1,8530:3078558,4812305:0,0,0 -(1,8530:3078558,49800853:0,16384,2228224 -g1,8530:29030814,49800853 -g1,8530:36135244,49800853 -(1,8393:36135244,49800853:1720320,16384,2228224 -(1,8393:36135244,52029077:16384,1703936,0 -[1,8393:36135244,52029077:25952256,1703936,0 -(1,8393:36135244,51504789:25952256,1179648,0 -(1,8393:36135244,51504789:16384,1179648,0 -r1,8530:36151628,51504789:16384,1179648,0 +[1,7637:3078558,4812305:0,0,0 +(1,7637:3078558,49800853:0,16384,2228224 +g1,7637:29030814,49800853 +g1,7637:36135244,49800853 +(1,6148:36135244,49800853:1720320,16384,2228224 +(1,6148:36135244,52029077:16384,1703936,0 +[1,6148:36135244,52029077:25952256,1703936,0 +(1,6148:36135244,51504789:25952256,1179648,0 +(1,6148:36135244,51504789:16384,1179648,0 +r1,7637:36151628,51504789:16384,1179648,0 ) -k1,8393:62087500,51504789:25935872 -g1,8393:62087500,51504789 +k1,6148:62087500,51504789:25935872 +g1,6148:62087500,51504789 ) ] ) -g1,8393:36675916,49800853 -(1,8393:36675916,49800853:1179648,16384,0 -r1,8530:37855564,49800853:1179648,16384,0 +g1,6148:36675916,49800853 +(1,6148:36675916,49800853:1179648,16384,0 +r1,7637:37855564,49800853:1179648,16384,0 ) ) -k1,8530:3078556,49800853:-34777008 +k1,7637:3078556,49800853:-34777008 ) ] -g1,8530:6630773,4812305 -k1,8530:21643106,4812305:13816956 -g1,8530:23265777,4812305 -g1,8530:24088253,4812305 -g1,8530:28572226,4812305 -g1,8530:29981905,4812305 +g1,7637:6630773,4812305 +g1,7637:6630773,4812305 +g1,7637:8364200,4812305 +g1,7637:10765439,4812305 +k1,7637:31387651,4812305:20622212 ) ) ] -[1,8530:6630773,45706769:25952256,40108032,0 -(1,8530:6630773,45706769:25952256,40108032,0 -(1,8530:6630773,45706769:0,0,0 -g1,8530:6630773,45706769 +[1,7637:6630773,45706769:25952256,40108032,0 +(1,7637:6630773,45706769:25952256,40108032,0 +(1,7637:6630773,45706769:0,0,0 +g1,7637:6630773,45706769 ) -[1,8530:6630773,45706769:25952256,40108032,0 -(1,8503:6630773,6254097:25952256,505283,134348 -k1,8502:8907548,6254097:272029 -k1,8502:9862462,6254097:272029 -k1,8502:13582340,6254097:272029 -k1,8502:15552407,6254097:272029 -k1,8502:18006130,6254097:272029 -k1,8502:20444124,6254097:272029 -k1,8502:21872862,6254097:272028 -k1,8502:24432098,6254097:272029 -k1,8502:26583044,6254097:272029 -k1,8502:27506501,6254097:272029 -k1,8502:28896574,6254097:272029 -k1,8502:30058582,6254097:272029 -k1,8502:32583029,6254097:0 -) -(1,8503:6630773,7095585:25952256,609711,134348 -k1,8502:7993282,7095585:205799 -k1,8502:8881967,7095585:205800 -k1,8502:9443626,7095585:205799 -k1,8502:10782544,7095585:205800 -k1,8502:14505005,7095585:205799 -k1,8502:15323566,7095585:205799 -k1,8502:15885226,7095585:205800 -k1,8502:17690103,7095585:205799 -k1,8502:19276746,7095585:205799 -k1,8502:20586828,7095585:205800 -k1,8502:21540393,7095585:205799 -k1,8502:23323645,7095585:205800 -k1,8502:25264837,7095585:205799 -k1,8502:26489721,7095585:205799 -k1,8502:28413875,7095585:205800 -(1,8502:30552315,7095585:311689,609711,0 -$1,8502:30552315,7095585 -(1,8502:30552315,6820304:311689,334430,0 -) -$1,8502:30864004,7095585 -) -k1,8502:31069803,7095585:205799 -k1,8502:32583029,7095585:0 -) -(1,8503:6630773,7937073:25952256,505283,134348 -k1,8502:8714584,7937073:227831 -k1,8502:12546895,7937073:227831 -k1,8502:13793811,7937073:227831 -k1,8502:16071608,7937073:227831 -k1,8502:16915477,7937073:227831 -k1,8502:18162393,7937073:227831 -k1,8502:19558732,7937073:227832 -k1,8502:20437991,7937073:227831 -k1,8502:21413588,7937073:227831 -k1,8502:24648211,7937073:227831 -k1,8502:25558927,7937073:227831 -k1,8502:28597597,7937073:227831 -k1,8502:29844513,7937073:227831 -k1,8502:31298523,7937073:227831 -k1,8502:32583029,7937073:0 -) -(1,8503:6630773,8778561:25952256,513147,126483 -k1,8502:8050355,8778561:262872 -k1,8502:10269477,8778561:262872 -k1,8502:11678575,8778561:262873 -k1,8502:12592875,8778561:262872 -k1,8502:13973791,8778561:262872 -k1,8502:15462842,8778561:262872 -k1,8502:18314387,8778561:262873 -k1,8502:19803438,8778561:262872 -k1,8502:21170592,8778561:262872 -k1,8502:22181230,8778561:262872 -k1,8502:23765963,8778561:262872 -k1,8502:24688128,8778561:262873 -k1,8502:25306860,8778561:262872 -k1,8502:26911909,8778561:262872 -k1,8502:27530641,8778561:262872 -k1,8502:29676363,8778561:262873 -k1,8502:31281412,8778561:262872 -k1,8502:32227169,8778561:262872 -k1,8502:32583029,8778561:0 -) -(1,8503:6630773,9620049:25952256,513147,134348 -k1,8502:8773851,9620049:250398 -k1,8502:9683541,9620049:250398 -k1,8502:11606418,9620049:250398 -k1,8502:12542977,9620049:250397 -k1,8502:14182083,9620049:250398 -k1,8502:15118643,9620049:250398 -k1,8502:15827138,9620049:250398 -k1,8502:16609033,9620049:250398 -k1,8502:20830913,9620049:250398 -k1,8502:23002170,9620049:250397 -k1,8502:24449255,9620049:250398 -k1,8502:28703903,9620049:250398 -k1,8502:32051532,9620049:250398 -k1,8502:32583029,9620049:0 -) -(1,8503:6630773,10461537:25952256,505283,134348 -g1,8502:10134983,10461537 -g1,8502:10985640,10461537 -g1,8502:13892161,10461537 -g1,8502:15110475,10461537 -g1,8502:17028058,10461537 -g1,8502:19365727,10461537 -g1,8502:20180994,10461537 -k1,8503:32583029,10461537:9804188 -g1,8503:32583029,10461537 -) -(1,8504:6630773,12552797:25952256,555811,139132 -(1,8504:6630773,12552797:2450326,534184,12975 -g1,8504:6630773,12552797 -g1,8504:9081099,12552797 -) -g1,8504:10960475,12552797 -g1,8504:11910616,12552797 -g1,8504:14022842,12552797 -g1,8504:14648580,12552797 -k1,8504:32583029,12552797:15848897 -g1,8504:32583029,12552797 -) -(1,8508:6630773,13787501:25952256,513147,134348 -k1,8507:7705781,13787501:257119 -k1,8507:9356852,13787501:257120 -k1,8507:10745779,13787501:257120 -k1,8507:12388984,13787501:257119 -k1,8507:13305396,13787501:257120 -k1,8507:15993901,13787501:257119 -k1,8507:19013363,13787501:257119 -k1,8507:22932635,13787501:257120 -k1,8507:24526688,13787501:257119 -k1,8507:25531574,13787501:257120 -k1,8507:28802039,13787501:257120 -k1,8507:29820686,13787501:257119 -k1,8508:32583029,13787501:0 -) -(1,8508:6630773,14628989:25952256,513147,134348 -k1,8507:7328100,14628989:282484 -k1,8507:9495482,14628989:282567 -k1,8507:10405884,14628989:282567 -k1,8507:13195204,14628989:282568 -k1,8507:14496856,14628989:282567 -k1,8507:17763934,14628989:282568 -k1,8507:19733398,14628989:282567 -k1,8507:20698850,14628989:282567 -k1,8507:22167620,14628989:282568 -k1,8507:23109479,14628989:282567 -k1,8507:27227868,14628989:282567 -k1,8507:28642898,14628989:282568 -k1,8507:30211281,14628989:282567 -k1,8507:32583029,14628989:0 -) -(1,8508:6630773,15470477:25952256,513147,126483 -k1,8507:7640355,15470477:200212 -k1,8507:9170949,15470477:200213 -k1,8507:12384506,15470477:200212 -k1,8507:13755191,15470477:200212 -k1,8507:14946964,15470477:200213 -k1,8507:16431682,15470477:200212 -k1,8507:17650979,15470477:200212 -k1,8507:21367854,15470477:200213 -k1,8507:22700528,15470477:200212 -k1,8507:24497197,15470477:200212 -k1,8507:25383572,15470477:200213 -k1,8507:30248637,15470477:200212 -k1,8507:32583029,15470477:0 -) -(1,8508:6630773,16311965:25952256,513147,134348 -g1,8507:8552944,16311965 -g1,8507:9771258,16311965 -g1,8507:11305455,16311965 -g1,8507:14489194,16311965 -g1,8507:15549566,16311965 -g1,8507:16919268,16311965 -g1,8507:18110057,16311965 -g1,8507:21320665,16311965 -g1,8507:24282237,16311965 -k1,8508:32583029,16311965:4409920 -g1,8508:32583029,16311965 -) -(1,8510:7202902,17677741:25380127,513147,134348 -(1,8509:7202902,17677741:14421851,513147,126483 -g1,8509:6630773,17677741 -g1,8509:6630773,17677741 -g1,8509:6303093,17677741 -(1,8509:6303093,17677741:14993980,513147,126483 -g1,8509:6630773,17677741 -g1,8509:7336595,17677741 -g1,8509:8742342,17677741 -g1,8509:9503215,17677741 -g1,8509:11237953,17677741 -g1,8509:14019301,17677741 -g1,8509:15697022,17677741 -g1,8509:18184768,17677741 -) -g1,8509:21624753,17677741 -) -k1,8509:23180687,17677741:284536 -k1,8509:25421472,17677741:284535 -k1,8509:26934808,17677741:284536 -k1,8509:29148724,17677741:284536 -k1,8509:29789119,17677741:284535 -k1,8509:31356850,17677741:284536 -k1,8509:32583029,17677741:0 -) -(1,8510:7202902,18519229:25380127,513147,134348 -k1,8509:8327950,18519229:142008 -k1,8509:9661403,18519229:142008 -k1,8509:11418219,18519229:142009 -k1,8509:12579312,18519229:142008 -k1,8509:14604169,18519229:142008 -k1,8509:16408170,18519229:142008 -k1,8509:17166216,18519229:142008 -k1,8509:18327309,18519229:142008 -k1,8509:20552052,18519229:142009 -k1,8509:21885505,18519229:142008 -k1,8509:23461441,18519229:142008 -k1,8509:24794894,18519229:142008 -k1,8509:25568669,18519229:142008 -k1,8509:27091522,18519229:142009 -k1,8509:27765027,18519229:142008 -k1,8509:29858697,18519229:142008 -k1,8510:32583029,18519229:0 -k1,8510:32583029,18519229:0 -) -(1,8511:7202902,19885005:25380127,513147,126483 -(1,8510:7202902,19885005:15082454,513147,126483 -g1,8510:6630773,19885005 -g1,8510:6630773,19885005 -g1,8510:6303093,19885005 -(1,8510:6303093,19885005:15654583,513147,126483 -g1,8510:6630773,19885005 -g1,8510:7336595,19885005 -g1,8510:8742342,19885005 -g1,8510:9503215,19885005 -g1,8510:13473386,19885005 -g1,8510:16254734,19885005 -g1,8510:17932455,19885005 -g1,8510:19188780,19885005 -) -g1,8510:22285356,19885005 -) -k1,8510:23940533,19885005:383779 -k1,8510:26280562,19885005:383779 -k1,8510:28279148,19885005:383779 -k1,8510:29682012,19885005:383779 -k1,8510:31896867,19885005:383779 -k1,8510:32583029,19885005:0 -) -(1,8511:7202902,20726493:25380127,505283,134348 -k1,8510:9519067,20726493:287170 -k1,8510:10878407,20726493:287171 -k1,8510:13347271,20726493:287170 -k1,8510:14266209,20726493:287171 -k1,8510:15908664,20726493:287170 -k1,8510:16957363,20726493:287171 -k1,8510:18773488,20726493:287170 -k1,8510:19746821,20726493:287171 -k1,8510:21190701,20726493:287170 -k1,8510:22009368,20726493:287170 -k1,8510:24554254,20726493:287171 -k1,8510:25473191,20726493:287170 -k1,8510:27141206,20726493:287171 -k1,8510:27959873,20726493:287170 -k1,8510:30534251,20726493:287171 -k1,8510:32370037,20726493:287170 -k1,8510:32583029,20726493:0 -) -(1,8511:7202902,21567981:25380127,505283,7863 -k1,8511:32583028,21567981:24391188 -g1,8511:32583028,21567981 -) -(1,8512:7202902,22933757:25380127,513147,134348 -(1,8511:7202902,22933757:10138418,513147,134348 -g1,8511:6630773,22933757 -g1,8511:6630773,22933757 -g1,8511:6303093,22933757 -(1,8511:6303093,22933757:10710547,513147,134348 -g1,8511:6630773,22933757 -g1,8511:7336595,22933757 -g1,8511:8742342,22933757 -g1,8511:9503215,22933757 -g1,8511:11985718,22933757 -g1,8511:14657621,22933757 -) -g1,8511:17341320,22933757 -) -k1,8511:19145672,22933757:192822 -k1,8511:19804455,22933757:192822 -k1,8511:21153986,22933757:192821 -k1,8511:21878305,22933757:192822 -k1,8511:23806520,22933757:192822 -k1,8511:26597189,22933757:192822 -k1,8511:27946720,22933757:192821 -k1,8511:29243824,22933757:192822 -k1,8511:30822732,22933757:192822 -k1,8512:32583029,22933757:0 -) -(1,8512:7202902,23775245:25380127,505283,134348 -k1,8511:9401080,23775245:228821 -k1,8511:10242664,23775245:228822 -k1,8511:11490570,23775245:228821 -k1,8511:14139636,23775245:228821 -k1,8511:16943368,23775245:228822 -k1,8511:17990078,23775245:228821 -k1,8511:19389372,23775245:228821 -k1,8511:21798576,23775245:228821 -k1,8511:23750340,23775245:228822 -k1,8511:24740689,23775245:228821 -k1,8511:26473561,23775245:228821 -k1,8511:30065691,23775245:228822 -k1,8511:31464985,23775245:228821 -k1,8511:32583029,23775245:0 -) -(1,8512:7202902,24616733:25380127,505283,126483 -k1,8511:8059224,24616733:243560 -k1,8511:9321869,24616733:243560 -k1,8511:11985673,24616733:243559 -k1,8511:12760730,24616733:243560 -k1,8511:14815705,24616733:243560 -k1,8511:15710693,24616733:243560 -k1,8511:16973338,24616733:243560 -k1,8511:20328546,24616733:243559 -k1,8511:21199941,24616733:243560 -k1,8511:24041348,24616733:243560 -k1,8511:25303993,24616733:243560 -k1,8511:27885221,24616733:243559 -k1,8511:28660278,24616733:243560 -k1,8511:31966991,24616733:243560 -k1,8511:32583029,24616733:0 -) -(1,8512:7202902,25458221:25380127,505283,126483 -k1,8511:8216135,25458221:224835 -k1,8511:9771352,25458221:224836 -k1,8511:11708643,25458221:224835 -k1,8511:13124923,25458221:224835 -k1,8511:13965796,25458221:224835 -k1,8511:15393873,25458221:224836 -k1,8511:17157493,25458221:224835 -k1,8511:18539038,25458221:224835 -k1,8511:19868156,25458221:224836 -k1,8511:21913581,25458221:224835 -k1,8511:23270223,25458221:224835 -k1,8511:26249536,25458221:224835 -k1,8511:30405221,25458221:224836 -k1,8511:31821501,25458221:224835 -k1,8511:32583029,25458221:0 -) -(1,8512:7202902,26299709:25380127,505283,134348 -k1,8511:9838979,26299709:179788 -k1,8511:10828137,26299709:179788 -k1,8511:11363786,26299709:179789 -k1,8511:13416593,26299709:179788 -k1,8511:15114195,26299709:179788 -k1,8511:16803933,26299709:179788 -k1,8511:18175167,26299709:179789 -k1,8511:20066100,26299709:179788 -k1,8511:21884943,26299709:179788 -k1,8511:22716159,26299709:179788 -k1,8511:24751927,26299709:179788 -k1,8511:25950801,26299709:179789 -k1,8511:26545413,26299709:179769 -k1,8511:29145446,26299709:179788 -k1,8511:31900144,26299709:179788 -k1,8511:32583029,26299709:0 -) -(1,8512:7202902,27141197:25380127,505283,126483 -k1,8511:8396763,27141197:174776 -k1,8511:10621506,27141197:174777 -k1,8511:13410513,27141197:174776 -k1,8511:14201327,27141197:174776 -k1,8511:15395189,27141197:174777 -k1,8511:17479029,27141197:174776 -k1,8511:19366261,27141197:174776 -k1,8511:20168872,27141197:174776 -k1,8511:21546890,27141197:174777 -k1,8511:22959641,27141197:174776 -k1,8511:24291127,27141197:174776 -k1,8511:25570186,27141197:174777 -k1,8511:27387294,27141197:174776 -k1,8511:27917930,27141197:174776 -k1,8511:29923783,27141197:174777 -k1,8511:30860087,27141197:174776 -k1,8512:32583029,27141197:0 -) -(1,8512:7202902,27982685:25380127,513147,134348 -k1,8511:8386089,27982685:192938 -k1,8511:9770472,27982685:192938 -k1,8511:12317463,27982685:192938 -k1,8511:14078022,27982685:192938 -k1,8511:15290045,27982685:192938 -k1,8511:17730213,27982685:192938 -k1,8511:18574579,27982685:192938 -k1,8511:20226347,27982685:192937 -k1,8511:22250361,27982685:192938 -k1,8511:23600009,27982685:192938 -k1,8511:24812032,27982685:192938 -k1,8511:26193793,27982685:192938 -k1,8511:27671237,27982685:192938 -k1,8511:29339390,27982685:192938 -k1,8511:31896867,27982685:192938 -k1,8511:32583029,27982685:0 -) -(1,8512:7202902,28824173:25380127,505283,126483 -g1,8511:8572604,28824173 -k1,8512:32583028,28824173:21520056 -g1,8512:32583028,28824173 -) -v1,8515:6630773,30189949:0,393216,0 -(1,8523:6630773,38490778:25952256,8694045,0 -g1,8523:6630773,38490778 -g1,8523:6303093,38490778 -r1,8530:6401397,38490778:98304,8694045,0 -g1,8523:6600626,38490778 -g1,8523:6797234,38490778 -[1,8523:6797234,38490778:25785795,8694045,0 -(1,8517:6797234,30622487:25785795,825754,196608 -(1,8515:6797234,30622487:0,825754,196608 -r1,8530:7890375,30622487:1093141,1022362,196608 -k1,8515:6797234,30622487:-1093141 -) -(1,8515:6797234,30622487:1093141,825754,196608 -) -k1,8515:8062900,30622487:172525 -k1,8515:9380829,30622487:327680 -k1,8515:10313572,30622487:172525 -k1,8515:11816478,30622487:172525 -k1,8515:13159476,30622487:172525 -k1,8515:15512384,30622487:172525 -k1,8515:16432675,30622487:172525 -k1,8515:19097534,30622487:172525 -k1,8515:21630666,30622487:172525 -k1,8515:23197142,30622487:172525 -k1,8515:23784484,30622487:172499 -k1,8515:24608437,30622487:172525 -k1,8515:25528728,30622487:172525 -k1,8515:27010007,30622487:172525 -k1,8515:27833960,30622487:172525 -k1,8515:29621292,30622487:172525 -k1,8515:31252648,30622487:172525 -k1,8515:32583029,30622487:0 -) -(1,8517:6797234,31463975:25785795,473825,126483 -k1,8517:32583028,31463975:23781048 -g1,8517:32583028,31463975 -) -(1,8518:8940261,32829751:22856336,513147,126483 -(1,8517:8940261,32829751:0,477757,0 -g1,8517:8940261,32829751 -g1,8517:7629541,32829751 -g1,8517:7629541,32829751 -(1,8517:7629541,32829751:1310720,477757,0 -(1,8517:7629541,32829751:1048576,477757,0 -g1,8517:7891685,32829751 -(1,8517:7891685,32829751:572129,477757,0 -g1,8517:7891685,32829751 -) -) -) -g1,8517:8940261,32829751 -) -k1,8517:11255700,32829751:264162 -k1,8517:11875721,32829751:264161 -k1,8517:13423078,32829751:264162 -k1,8517:14102017,32829751:264096 -k1,8517:16197255,32829751:264162 -k1,8517:17284548,32829751:264161 -k1,8517:20146557,32829751:264162 -k1,8517:21978339,32829751:264161 -k1,8517:23261586,32829751:264162 -k1,8517:24638549,32829751:264162 -k1,8517:26873378,32829751:264161 -k1,8517:28306047,32829751:264162 -k1,8517:30088022,32829751:264161 -k1,8517:31035069,32829751:264162 -k1,8517:31796597,32829751:0 -) -(1,8518:8940261,33671239:22856336,513147,134348 -g1,8517:11168485,33671239 -g1,8517:12873731,33671239 -g1,8517:13641157,33671239 -g1,8517:15333296,33671239 -g1,8517:16100722,33671239 -k1,8518:31796597,33671239:14522781 -g1,8518:31796597,33671239 -) -(1,8519:8940261,34774871:22856336,513147,126483 -(1,8518:8940261,34774871:0,485622,0 -g1,8518:8940261,34774871 -g1,8518:7629541,34774871 -g1,8518:7629541,34774871 -(1,8518:7629541,34774871:1310720,485622,0 -(1,8518:7629541,34774871:1048576,485622,0 -g1,8518:7891685,34774871 -(1,8518:7891685,34774871:572129,485622,0 -g1,8518:7891685,34774871 -) -) -) -g1,8518:8940261,34774871 -) -g1,8518:10555068,34774871 -g1,8518:11773382,34774871 -g1,8518:12955651,34774871 -g1,8518:13841042,34774871 -k1,8519:31796597,34774871:10668607 -g1,8519:31796597,34774871 -) -(1,8520:8940261,35878503:22856336,505283,126483 -(1,8519:8940261,35878503:0,485622,11795 -g1,8519:8940261,35878503 -g1,8519:7629541,35878503 -g1,8519:7629541,35878503 -(1,8519:7629541,35878503:1310720,485622,11795 -(1,8519:7629541,35878503:1048576,485622,11795 -g1,8519:7891685,35878503 -(1,8519:7891685,35878503:572129,485622,11795 -g1,8519:7891685,35878503 -) -) -) -g1,8519:8940261,35878503 -) -k1,8519:10246069,35878503:156962 -k1,8519:11422116,35878503:156962 -k1,8519:13488143,35878503:156963 -k1,8519:15183890,35878503:156962 -k1,8519:15956890,35878503:156962 -k1,8519:18538029,35878503:156962 -k1,8519:19346419,35878503:156962 -k1,8519:20889467,35878503:156962 -k1,8519:22738570,35878503:156963 -k1,8519:23310333,35878503:156920 -k1,8519:26957087,35878503:156962 -k1,8519:28305494,35878503:156962 -k1,8520:31796597,35878503:0 -k1,8520:31796597,35878503:0 -) -(1,8521:8940261,36982135:22856336,505283,7863 -(1,8520:8940261,36982135:0,481690,0 -g1,8520:8940261,36982135 -g1,8520:7629541,36982135 -g1,8520:7629541,36982135 -(1,8520:7629541,36982135:1310720,481690,0 -(1,8520:7629541,36982135:1048576,481690,0 -g1,8520:7891685,36982135 -(1,8520:7891685,36982135:572129,481690,0 -g1,8520:7891685,36982135 -) -) -) -g1,8520:8940261,36982135 -) -g1,8520:10416787,36982135 -g1,8520:13808930,36982135 -k1,8521:31796597,36982135:14324204 -g1,8521:31796597,36982135 -) -(1,8522:8940261,38085767:22856336,513147,11795 -(1,8521:8940261,38085767:0,473825,11795 -g1,8521:8940261,38085767 -g1,8521:7629541,38085767 -g1,8521:7629541,38085767 -(1,8521:7629541,38085767:1310720,473825,11795 -(1,8521:7629541,38085767:1048576,473825,11795 -g1,8521:7891685,38085767 -(1,8521:7891685,38085767:572129,473825,11795 -g1,8521:7891685,38085767 -) -) -) -g1,8521:8940261,38085767 -) -g1,8521:11245817,38085767 -g1,8521:12464131,38085767 -g1,8521:14546209,38085767 -k1,8522:31796597,38085767:16093678 -g1,8522:31796597,38085767 -) -] -g1,8523:32583029,38490778 -) -h1,8523:6630773,38490778:0,0,0 -(1,8525:6630773,40582038:25952256,555811,139132 -(1,8525:6630773,40582038:2450326,534184,12975 -g1,8525:6630773,40582038 -g1,8525:9081099,40582038 -) -g1,8525:10697348,40582038 -g1,8525:12674045,40582038 -g1,8525:13624186,40582038 -g1,8525:14715623,40582038 -g1,8525:20593810,40582038 -g1,8525:21543951,40582038 -k1,8525:32583029,40582038:8609658 -g1,8525:32583029,40582038 -) -(1,8529:6630773,41816742:25952256,505283,126483 -k1,8528:8606028,41816742:192020 -k1,8528:9968522,41816742:192021 -k1,8528:11775349,41816742:192020 -k1,8528:12323230,41816742:192021 -k1,8528:14519996,41816742:192020 -k1,8528:15170113,41816742:192020 -k1,8528:15893631,41816742:192021 -k1,8528:17941631,41816742:192020 -k1,8528:20663342,41816742:192021 -k1,8528:22025835,41816742:192020 -k1,8528:23766471,41816742:192020 -k1,8528:24609920,41816742:192021 -k1,8528:28004684,41816742:192020 -k1,8528:29745321,41816742:192021 -k1,8528:31107814,41816742:192020 -k1,8528:32583029,41816742:0 -) -(1,8529:6630773,42658230:25952256,513147,126483 -k1,8528:8438215,42658230:229990 -k1,8528:9351091,42658230:229991 -k1,8528:10751554,42658230:229990 -k1,8528:12530160,42658230:229990 -k1,8528:14701327,42658230:229991 -k1,8528:15950402,42658230:229990 -k1,8528:18011468,42658230:229990 -k1,8528:18854221,42658230:229991 -k1,8528:19440071,42658230:229990 -k1,8528:21123650,42658230:229990 -k1,8528:22952718,42658230:229990 -k1,8528:23810544,42658230:229991 -k1,8528:25896514,42658230:229990 -k1,8528:27667255,42658230:229990 -k1,8528:28916331,42658230:229991 -k1,8528:30977397,42658230:229990 -k1,8528:32583029,42658230:0 -) -(1,8529:6630773,43499718:25952256,513147,134348 -k1,8528:9736643,43499718:274715 -k1,8528:11210012,43499718:274715 -k1,8528:15097726,43499718:274714 -k1,8528:16320092,43499718:274715 -k1,8528:17613892,43499718:274715 -k1,8528:21138537,43499718:274715 -k1,8528:23182069,43499718:274715 -k1,8528:25899966,43499718:274715 -k1,8528:27528654,43499718:274714 -k1,8528:30312743,43499718:274715 -k1,8528:31238886,43499718:274715 -k1,8528:32583029,43499718:0 -) -(1,8502:6630773,44927376:25952256,506878,101187 -(1,8502:6630773,44927376:943720,506878,0 -k1,8502:7302650,44927376:671877 -(1,8502:7302650,44927376:271843,506878,0 -$1,8502:7302650,44927376 -(1,8502:7302650,44707152:271843,286654,0 -) -$1,8502:7574493,44927376 -) -) -(1,8502:7574493,44927376:0,435814,0 -r1,8530:7574493,44927376:0,435814,0 -) -k1,8502:8101304,44927376:144605 -k1,8502:9182287,44927376:144605 -k1,8502:10200880,44927376:144605 -k1,8502:10630173,44927376:144605 -k1,8502:12984651,44927376:144604 -k1,8502:13999036,44927376:144591 -k1,8502:14689948,44927376:144604 -k1,8502:16361804,44927376:144605 -k1,8502:17621570,44927376:144605 -k1,8502:18382738,44927376:144605 -k1,8502:18859202,44927376:144590 -k1,8502:20568807,44927376:144605 -k1,8502:21528680,44927376:144605 -k1,8502:23367260,44927376:144605 -k1,8502:24417835,44927376:144605 -k1,8502:25791371,44927376:144605 -k1,8502:26793710,44927376:144604 -k1,8502:27223003,44927376:144605 -k1,8502:28262043,44927376:144605 -k1,8502:30934241,44927376:144605 -k1,8502:31984816,44927376:144605 -k1,8502:32583029,44927376:0 -) -(1,8502:6630773,45593554:25952256,404226,199855 -g1,8502:8619922,45593554 -r1,8530:10986034,45593554:0,199855,199855 -k1,8502:32583030,45593554:21596996 -g1,8502:32583030,45593554 -) -] -(1,8530:32583029,45706769:0,0,0 -g1,8530:32583029,45706769 +[1,7637:6630773,45706769:25952256,40108032,0 +(1,7558:6630773,6254097:25952256,513147,134348 +k1,7557:8875223,6254097:237738 +(1,7557:8875223,6254097:0,414482,115847 +r1,7637:10288624,6254097:1413401,530329,115847 +k1,7557:8875223,6254097:-1413401 ) +(1,7557:8875223,6254097:1413401,414482,115847 +k1,7557:8875223,6254097:3277 +h1,7557:10285347,6254097:0,411205,112570 ) -] -(1,8530:6630773,47279633:25952256,0,0 -h1,8530:6630773,47279633:25952256,0,0 +k1,7557:10526363,6254097:237739 +k1,7557:11415529,6254097:237738 +k1,7557:13836272,6254097:237739 +k1,7557:14690048,6254097:237738 +k1,7557:15946872,6254097:237739 +k1,7557:17838083,6254097:237738 +k1,7557:19313796,6254097:237738 +k1,7557:20237697,6254097:237739 +k1,7557:23429143,6254097:237738 +k1,7557:24658442,6254097:237739 +k1,7557:27241714,6254097:237738 +k1,7557:29047074,6254097:237739 +(1,7557:29047074,6254097:0,452978,115847 +r1,7637:30460475,6254097:1413401,568825,115847 +k1,7557:29047074,6254097:-1413401 +) +(1,7557:29047074,6254097:1413401,452978,115847 +k1,7557:29047074,6254097:3277 +h1,7557:30457198,6254097:0,411205,112570 +) +k1,7557:31202185,6254097:237738 +k1,7557:32583029,6254097:0 +) +(1,7558:6630773,7119177:25952256,513147,126483 +g1,7557:9814512,7119177 +g1,7557:12758389,7119177 +(1,7557:12758389,7119177:0,459977,115847 +r1,7637:14171790,7119177:1413401,575824,115847 +k1,7557:12758389,7119177:-1413401 +) +(1,7557:12758389,7119177:1413401,459977,115847 +k1,7557:12758389,7119177:3277 +h1,7557:14168513,7119177:0,411205,112570 +) +g1,7557:14371019,7119177 +g1,7557:15186286,7119177 +k1,7558:32583029,7119177:15560424 +g1,7558:32583029,7119177 +) +v1,7560:6630773,7804032:0,393216,0 +(1,7575:6630773,11935782:25952256,4524966,196608 +g1,7575:6630773,11935782 +g1,7575:6630773,11935782 +g1,7575:6434165,11935782 +(1,7575:6434165,11935782:0,4524966,196608 +r1,7637:32779637,11935782:26345472,4721574,196608 +k1,7575:6434165,11935782:-26345472 +) +(1,7575:6434165,11935782:26345472,4524966,196608 +[1,7575:6630773,11935782:25952256,4328358,0 +(1,7562:6630773,8038469:25952256,431045,6605 +(1,7561:6630773,8038469:0,0,0 +g1,7561:6630773,8038469 +g1,7561:6630773,8038469 +g1,7561:6303093,8038469 +(1,7561:6303093,8038469:0,0,0 +) +g1,7561:6630773,8038469 +) +g1,7562:8622497,8038469 +g1,7562:9618359,8038469 +h1,7562:10946175,8038469:0,0,0 +k1,7562:32583029,8038469:21636854 +g1,7562:32583029,8038469 +) +(1,7563:6630773,8723324:25952256,431045,79822 +h1,7563:6630773,8723324:0,0,0 +k1,7563:6630773,8723324:0 +h1,7563:11610082,8723324:0,0,0 +k1,7563:32583030,8723324:20972948 +g1,7563:32583030,8723324 +) +(1,7567:6630773,9539251:25952256,424439,106246 +(1,7565:6630773,9539251:0,0,0 +g1,7565:6630773,9539251 +g1,7565:6630773,9539251 +g1,7565:6303093,9539251 +(1,7565:6303093,9539251:0,0,0 +) +g1,7565:6630773,9539251 +) +g1,7567:7626635,9539251 +g1,7567:8954451,9539251 +g1,7567:10282267,9539251 +g1,7567:11610083,9539251 +h1,7567:12605945,9539251:0,0,0 +k1,7567:32583029,9539251:19977084 +g1,7567:32583029,9539251 +) +(1,7569:6630773,10355178:25952256,431045,106246 +(1,7568:6630773,10355178:0,0,0 +g1,7568:6630773,10355178 +g1,7568:6630773,10355178 +g1,7568:6303093,10355178 +(1,7568:6303093,10355178:0,0,0 +) +g1,7568:6630773,10355178 +) +g1,7569:10946175,10355178 +g1,7569:11942037,10355178 +k1,7569:11942037,10355178:0 +h1,7569:13269853,10355178:0,0,0 +k1,7569:32583029,10355178:19313176 +g1,7569:32583029,10355178 +) +(1,7570:6630773,11040033:25952256,431045,79822 +h1,7570:6630773,11040033:0,0,0 +k1,7570:6630773,11040033:0 +h1,7570:11610082,11040033:0,0,0 +k1,7570:32583030,11040033:20972948 +g1,7570:32583030,11040033 +) +(1,7574:6630773,11855960:25952256,424439,79822 +(1,7572:6630773,11855960:0,0,0 +g1,7572:6630773,11855960 +g1,7572:6630773,11855960 +g1,7572:6303093,11855960 +(1,7572:6303093,11855960:0,0,0 +) +g1,7572:6630773,11855960 +) +g1,7574:7626635,11855960 +g1,7574:8954451,11855960 +g1,7574:10282267,11855960 +h1,7574:11278129,11855960:0,0,0 +k1,7574:32583029,11855960:21304900 +g1,7574:32583029,11855960 +) +] +) +g1,7575:32583029,11935782 +g1,7575:6630773,11935782 +g1,7575:6630773,11935782 +g1,7575:32583029,11935782 +g1,7575:32583029,11935782 +) +h1,7575:6630773,12132390:0,0,0 +v1,7579:6630773,12997470:0,393216,0 +(1,7600:6630773,25546541:25952256,12942287,0 +g1,7600:6630773,25546541 +g1,7600:6237557,25546541 +r1,7637:6368629,25546541:131072,12942287,0 +g1,7600:6567858,25546541 +g1,7600:6764466,25546541 +[1,7600:6764466,25546541:25818563,12942287,0 +(1,7580:6764466,13305768:25818563,701514,196608 +(1,7579:6764466,13305768:0,701514,196608 +r1,7637:8010564,13305768:1246098,898122,196608 +k1,7579:6764466,13305768:-1246098 +) +(1,7579:6764466,13305768:1246098,701514,196608 +) +k1,7579:8208406,13305768:197842 +k1,7579:8536086,13305768:327680 +k1,7579:12992459,13305768:197843 +k1,7579:14058653,13305768:197842 +k1,7579:15360778,13305768:197843 +k1,7579:16651105,13305768:197842 +k1,7579:19503810,13305768:197842 +k1,7579:22441058,13305768:197843 +k1,7579:23290328,13305768:197842 +k1,7579:25842880,13305768:197843 +k1,7579:28753913,13305768:197842 +k1,7579:30519377,13305768:197843 +k1,7579:31073079,13305768:197842 +k1,7579:32583029,13305768:0 +) +(1,7580:6764466,14170848:25818563,513147,134348 +k1,7579:7556607,14170848:132849 +k1,7579:8045316,14170848:132849 +k1,7579:9567529,14170848:132850 +k1,7579:11750344,14170848:132849 +k1,7579:12511028,14170848:132849 +k1,7579:13847118,14170848:132849 +k1,7579:16641385,14170848:132850 +k1,7579:17642586,14170848:132849 +k1,7579:20130144,14170848:132849 +k1,7579:20618853,14170848:132849 +k1,7579:22624722,14170848:132850 +k1,7579:25314130,14170848:132849 +k1,7579:26264868,14170848:132849 +k1,7579:27831645,14170848:132849 +k1,7579:28379271,14170848:132783 +k1,7579:30005031,14170848:132850 +k1,7579:31204151,14170848:132849 +k1,7580:32583029,14170848:0 +) +(1,7580:6764466,15035928:25818563,513147,134348 +k1,7579:8331230,15035928:206237 +k1,7579:11192329,15035928:206236 +k1,7579:14137971,15035928:206237 +k1,7579:15105736,15035928:206237 +k1,7579:17049987,15035928:206236 +k1,7579:18650175,15035928:206237 +k1,7579:19875497,15035928:206237 +k1,7579:23296275,15035928:206237 +k1,7579:26422795,15035928:206236 +k1,7579:27497384,15035928:206237 +k1,7579:29233887,15035928:206237 +k1,7579:30091551,15035928:206236 +k1,7579:31563944,15035928:206237 +k1,7579:32583029,15035928:0 +) +(1,7580:6764466,15901008:25818563,513147,134348 +k1,7579:10145449,15901008:199865 +k1,7579:12094470,15901008:199865 +k1,7579:12953627,15901008:199865 +k1,7579:14172577,15901008:199865 +k1,7579:16755331,15901008:199865 +k1,7579:17606625,15901008:199866 +k1,7579:19904953,15901008:199865 +k1,7579:21361799,15901008:199865 +k1,7579:22580749,15901008:199865 +k1,7579:25772333,15901008:199865 +k1,7579:27827522,15901008:199865 +k1,7579:29762780,15901008:199865 +(1,7579:29762780,15901008:0,452978,115847 +r1,7637:32583029,15901008:2820249,568825,115847 +k1,7579:29762780,15901008:-2820249 +) +(1,7579:29762780,15901008:2820249,452978,115847 +k1,7579:29762780,15901008:3277 +h1,7579:32579752,15901008:0,411205,112570 +) +k1,7579:32583029,15901008:0 +) +(1,7580:6764466,16766088:25818563,505283,95026 +g1,7579:8357646,16766088 +g1,7579:9948860,16766088 +g1,7579:12216405,16766088 +g1,7579:13067062,16766088 +g1,7579:15191083,16766088 +k1,7580:32583029,16766088:14297991 +g1,7580:32583029,16766088 +) +v1,7582:6764466,17450943:0,393216,0 +(1,7595:6764466,22620345:25818563,5562618,196608 +g1,7595:6764466,22620345 +g1,7595:6764466,22620345 +g1,7595:6567858,22620345 +(1,7595:6567858,22620345:0,5562618,196608 +r1,7637:32779637,22620345:26211779,5759226,196608 +k1,7595:6567857,22620345:-26211780 +) +(1,7595:6567858,22620345:26211779,5562618,196608 +[1,7595:6764466,22620345:25818563,5366010,0 +(1,7584:6764466,17685380:25818563,431045,106246 +(1,7583:6764466,17685380:0,0,0 +g1,7583:6764466,17685380 +g1,7583:6764466,17685380 +g1,7583:6436786,17685380 +(1,7583:6436786,17685380:0,0,0 +) +g1,7583:6764466,17685380 +) +g1,7584:8756190,17685380 +g1,7584:9420098,17685380 +g1,7584:16723085,17685380 +g1,7584:17718947,17685380 +h1,7584:19378717,17685380:0,0,0 +k1,7584:32583029,17685380:13204312 +g1,7584:32583029,17685380 +) +(1,7594:6764466,18501307:25818563,398014,0 +(1,7586:6764466,18501307:0,0,0 +g1,7586:6764466,18501307 +g1,7586:6764466,18501307 +g1,7586:6436786,18501307 +(1,7586:6436786,18501307:0,0,0 +) +g1,7586:6764466,18501307 +) +g1,7594:7760328,18501307 +g1,7594:8092282,18501307 +g1,7594:8424236,18501307 +g1,7594:9088144,18501307 +g1,7594:9420098,18501307 +g1,7594:9752052,18501307 +g1,7594:10084006,18501307 +g1,7594:10415960,18501307 +h1,7594:10747914,18501307:0,0,0 +k1,7594:32583030,18501307:21835116 +g1,7594:32583030,18501307 +) +(1,7594:6764466,19186162:25818563,407923,8257 +h1,7594:6764466,19186162:0,0,0 +g1,7594:7760328,19186162 +g1,7594:8424236,19186162 +g1,7594:9088144,19186162 +g1,7594:9420098,19186162 +h1,7594:10747914,19186162:0,0,0 +k1,7594:32583030,19186162:21835116 +g1,7594:32583030,19186162 +) +(1,7594:6764466,19871017:25818563,407923,8257 +h1,7594:6764466,19871017:0,0,0 +g1,7594:7760328,19871017 +g1,7594:8424236,19871017 +g1,7594:9088144,19871017 +h1,7594:10747914,19871017:0,0,0 +k1,7594:32583030,19871017:21835116 +g1,7594:32583030,19871017 +) +(1,7594:6764466,20555872:25818563,407923,9908 +h1,7594:6764466,20555872:0,0,0 +g1,7594:7760328,20555872 +g1,7594:8424236,20555872 +g1,7594:9088144,20555872 +g1,7594:9420098,20555872 +h1,7594:10747914,20555872:0,0,0 +k1,7594:32583030,20555872:21835116 +g1,7594:32583030,20555872 +) +(1,7594:6764466,21240727:25818563,398014,8257 +h1,7594:6764466,21240727:0,0,0 +g1,7594:7760328,21240727 +g1,7594:8424236,21240727 +g1,7594:9088144,21240727 +h1,7594:10747914,21240727:0,0,0 +k1,7594:32583030,21240727:21835116 +g1,7594:32583030,21240727 +) +(1,7594:6764466,21925582:25818563,398014,9908 +h1,7594:6764466,21925582:0,0,0 +g1,7594:7760328,21925582 +g1,7594:8424236,21925582 +g1,7594:9088144,21925582 +g1,7594:9420098,21925582 +h1,7594:10747914,21925582:0,0,0 +k1,7594:32583030,21925582:21835116 +g1,7594:32583030,21925582 +) +(1,7594:6764466,22610437:25818563,407923,9908 +h1,7594:6764466,22610437:0,0,0 +g1,7594:7760328,22610437 +g1,7594:8424236,22610437 +g1,7594:9088144,22610437 +h1,7594:10747914,22610437:0,0,0 +k1,7594:32583030,22610437:21835116 +g1,7594:32583030,22610437 +) +] +) +g1,7595:32583029,22620345 +g1,7595:6764466,22620345 +g1,7595:6764466,22620345 +g1,7595:32583029,22620345 +g1,7595:32583029,22620345 +) +h1,7595:6764466,22816953:0,0,0 +(1,7599:6764466,23682033:25818563,513147,134348 +h1,7598:6764466,23682033:983040,0,0 +k1,7598:10359434,23682033:272948 +k1,7598:11291675,23682033:272949 +k1,7598:13300016,23682033:272948 +k1,7598:14592050,23682033:272949 +k1,7598:17411727,23682033:272948 +k1,7598:19049790,23682033:272948 +k1,7598:20191091,23682033:272949 +k1,7598:21568321,23682033:272948 +k1,7598:22933754,23682033:272948 +k1,7598:24225788,23682033:272949 +k1,7598:27245350,23682033:272948 +(1,7598:27245350,23682033:0,452978,115847 +r1,7637:28658751,23682033:1413401,568825,115847 +k1,7598:27245350,23682033:-1413401 +) +(1,7598:27245350,23682033:1413401,452978,115847 +k1,7598:27245350,23682033:3277 +h1,7598:28655474,23682033:0,411205,112570 +) +k1,7598:28931700,23682033:272949 +k1,7598:29887533,23682033:272948 +k1,7599:32583029,23682033:0 +) +(1,7599:6764466,24547113:25818563,513147,126483 +(1,7598:6764466,24547113:0,452978,122846 +r1,7637:9233003,24547113:2468537,575824,122846 +k1,7598:6764466,24547113:-2468537 +) +(1,7598:6764466,24547113:2468537,452978,122846 +k1,7598:6764466,24547113:3277 +h1,7598:9229726,24547113:0,411205,112570 +) +k1,7598:9456815,24547113:223812 +k1,7598:10332054,24547113:223811 +k1,7598:12485246,24547113:223812 +k1,7598:13064918,24547113:223812 +(1,7598:13064918,24547113:0,452978,122846 +r1,7637:15533455,24547113:2468537,575824,122846 +k1,7598:13064918,24547113:-2468537 +) +(1,7598:13064918,24547113:2468537,452978,122846 +k1,7598:13064918,24547113:3277 +h1,7598:15530178,24547113:0,411205,112570 +) +k1,7598:15757266,24547113:223811 +k1,7598:17958955,24547113:223812 +k1,7598:20159988,24547113:223812 +k1,7598:21035228,24547113:223812 +k1,7598:23183831,24547113:223811 +k1,7598:24090528,24547113:223812 +k1,7598:26134930,24547113:223812 +k1,7598:29029988,24547113:223811 +k1,7598:31966991,24547113:223812 +k1,7598:32583029,24547113:0 +) +(1,7599:6764466,25412193:25818563,505283,134348 +g1,7598:7319555,25412193 +g1,7598:9391803,25412193 +k1,7599:32583030,25412193:19831196 +g1,7599:32583030,25412193 +) +] +g1,7600:32583029,25546541 +) +h1,7600:6630773,25546541:0,0,0 +v1,7603:6630773,26411621:0,393216,0 +(1,7614:6630773,31951778:25952256,5933373,0 +g1,7614:6630773,31951778 +g1,7614:6237557,31951778 +r1,7637:6368629,31951778:131072,5933373,0 +g1,7614:6567858,31951778 +g1,7614:6764466,31951778 +[1,7614:6764466,31951778:25818563,5933373,0 +(1,7605:6764466,26684098:25818563,665693,196608 +(1,7603:6764466,26684098:0,665693,196608 +r1,7637:8010564,26684098:1246098,862301,196608 +k1,7603:6764466,26684098:-1246098 +) +(1,7603:6764466,26684098:1246098,665693,196608 +) +k1,7603:8201864,26684098:191300 +k1,7603:9519793,26684098:327680 +k1,7603:10338927,26684098:191299 +k1,7603:11549312,26684098:191300 +k1,7603:14495090,26684098:191300 +k1,7603:16182577,26684098:191300 +k1,7603:18344544,26684098:191299 +k1,7603:19404196,26684098:191300 +k1,7603:21941030,26684098:191300 +k1,7603:23151414,26684098:191299 +k1,7603:24490905,26684098:191300 +k1,7603:27065094,26684098:191300 +k1,7603:27915686,26684098:191300 +k1,7603:29126070,26684098:191299 +k1,7603:30706733,26684098:191300 +k1,7605:32583029,26684098:0 +) +(1,7605:6764466,27549178:25818563,513147,134348 +(1,7603:6764466,27549178:0,459977,115847 +r1,7637:8177867,27549178:1413401,575824,115847 +k1,7603:6764466,27549178:-1413401 +) +(1,7603:6764466,27549178:1413401,459977,115847 +k1,7603:6764466,27549178:3277 +h1,7603:8174590,27549178:0,411205,112570 +) +k1,7603:8503944,27549178:152407 +k1,7604:10144674,27549178:152407 +k1,7604:10828578,27549178:152407 +k1,7604:11751688,27549178:152407 +k1,7604:14403638,27549178:152407 +k1,7604:16028639,27549178:152407 +k1,7604:17128697,27549178:152407 +k1,7604:18451577,27549178:152407 +k1,7604:19255412,27549178:152407 +k1,7604:20713952,27549178:152407 +k1,7604:23650328,27549178:152407 +k1,7604:25133116,27549178:152407 +k1,7604:25743620,27549178:152407 +k1,7604:28467004,27549178:152407 +k1,7604:29638496,27549178:152407 +k1,7604:32583029,27549178:0 +) +(1,7605:6764466,28414258:25818563,513147,126483 +k1,7604:7642224,28414258:218466 +k1,7604:10573881,28414258:218466 +k1,7604:11983792,28414258:218466 +k1,7604:13910126,28414258:218466 +k1,7604:15320037,28414258:218466 +k1,7604:16972431,28414258:218466 +k1,7604:18138548,28414258:218466 +k1,7604:19527487,28414258:218466 +k1,7604:20397380,28414258:218465 +k1,7604:22296189,28414258:218466 +k1,7604:23845036,28414258:218466 +k1,7604:25254947,28414258:218466 +k1,7604:26770371,28414258:218466 +k1,7604:27446934,28414258:218466 +k1,7604:28769682,28414258:218466 +k1,7604:29735914,28414258:218466 +k1,7604:31931601,28414258:218466 +k1,7604:32583029,28414258:0 +) +(1,7605:6764466,29279338:25818563,513147,134348 +k1,7604:8133676,29279338:276725 +k1,7604:11149806,29279338:276725 +k1,7604:12820482,29279338:276725 +k1,7604:14116292,29279338:276725 +k1,7604:17607558,29279338:276725 +k1,7604:20630898,29279338:276726 +(1,7604:20630898,29279338:0,452978,115847 +r1,7637:21692588,29279338:1061690,568825,115847 +k1,7604:20630898,29279338:-1061690 +) +(1,7604:20630898,29279338:1061690,452978,115847 +g1,7604:21337599,29279338 +h1,7604:21689311,29279338:0,411205,112570 +) +k1,7604:21969313,29279338:276725 +k1,7604:23055408,29279338:276725 +k1,7604:24798829,29279338:276725 +k1,7604:26705434,29279338:276725 +k1,7604:27641451,29279338:276725 +k1,7604:28937261,29279338:276725 +k1,7604:32583029,29279338:0 +) +(1,7605:6764466,30144418:25818563,426639,126483 +g1,7604:9710309,30144418 +(1,7604:9710309,30144418:0,414482,115847 +r1,7637:10420287,30144418:709978,530329,115847 +k1,7604:9710309,30144418:-709978 +) +(1,7604:9710309,30144418:709978,414482,115847 +k1,7604:9710309,30144418:3277 +h1,7604:10417010,30144418:0,411205,112570 +) +k1,7605:32583029,30144418:21989072 +g1,7605:32583029,30144418 +) +v1,7607:6764466,30829273:0,393216,0 +(1,7612:6764466,31755170:25818563,1319113,196608 +g1,7612:6764466,31755170 +g1,7612:6764466,31755170 +g1,7612:6567858,31755170 +(1,7612:6567858,31755170:0,1319113,196608 +r1,7637:32779637,31755170:26211779,1515721,196608 +k1,7612:6567857,31755170:-26211780 +) +(1,7612:6567858,31755170:26211779,1319113,196608 +[1,7612:6764466,31755170:25818563,1122505,0 +(1,7609:6764466,31063710:25818563,431045,86428 +(1,7608:6764466,31063710:0,0,0 +g1,7608:6764466,31063710 +g1,7608:6764466,31063710 +g1,7608:6436786,31063710 +(1,7608:6436786,31063710:0,0,0 +) +g1,7608:6764466,31063710 +) +k1,7609:6764466,31063710:0 +g1,7609:10084006,31063710 +g1,7609:12739638,31063710 +g1,7609:13735500,31063710 +g1,7609:17055040,31063710 +k1,7609:17055040,31063710:0 +h1,7609:19378718,31063710:0,0,0 +k1,7609:32583029,31063710:13204311 +g1,7609:32583029,31063710 +) +(1,7610:6764466,31748565:25818563,431045,6605 +h1,7610:6764466,31748565:0,0,0 +h1,7610:8092282,31748565:0,0,0 +k1,7610:32583030,31748565:24490748 +g1,7610:32583030,31748565 +) +] +) +g1,7612:32583029,31755170 +g1,7612:6764466,31755170 +g1,7612:6764466,31755170 +g1,7612:32583029,31755170 +g1,7612:32583029,31755170 +) +h1,7612:6764466,31951778:0,0,0 +] +g1,7614:32583029,31951778 +) +h1,7614:6630773,31951778:0,0,0 +v1,7617:6630773,32816858:0,393216,0 +(1,7618:6630773,37637783:25952256,5214141,0 +g1,7618:6630773,37637783 +g1,7618:6237557,37637783 +r1,7637:6368629,37637783:131072,5214141,0 +g1,7618:6567858,37637783 +g1,7618:6764466,37637783 +[1,7618:6764466,37637783:25818563,5214141,0 +(1,7618:6764466,33178035:25818563,754393,260573 +(1,7617:6764466,33178035:0,754393,260573 +r1,7637:8010564,33178035:1246098,1014966,260573 +k1,7617:6764466,33178035:-1246098 +) +(1,7617:6764466,33178035:1246098,754393,260573 +) +k1,7617:8298953,33178035:288389 +k1,7617:8626633,33178035:327680 +k1,7617:11877905,33178035:288389 +k1,7617:12782332,33178035:288389 +k1,7617:14273961,33178035:288388 +k1,7617:15710541,33178035:288389 +k1,7617:18660347,33178035:288389 +k1,7617:19817088,33178035:288389 +k1,7617:21618703,33178035:288389 +k1,7617:24527221,33178035:288389 +k1,7617:27242408,33178035:288389 +k1,7617:28182224,33178035:288388 +k1,7617:30186346,33178035:288389 +k1,7617:30932832,33178035:288389 +k1,7617:32583029,33178035:0 +) +(1,7618:6764466,34043115:25818563,505283,134348 +k1,7617:10588139,34043115:216571 +k1,7617:11420749,34043115:216572 +k1,7617:14348544,34043115:216571 +k1,7617:17672832,34043115:216571 +k1,7617:18505442,34043115:216572 +k1,7617:20883390,34043115:216571 +k1,7617:21782846,34043115:216571 +k1,7617:23701387,34043115:216571 +k1,7617:25414146,34043115:216572 +k1,7617:26915223,34043115:216571 +k1,7617:28264256,34043115:216571 +k1,7617:29228594,34043115:216572 +k1,7617:31767761,34043115:216571 +k1,7617:32583029,34043115:0 +) +(1,7618:6764466,34908195:25818563,513147,126483 +k1,7617:8110772,34908195:253821 +k1,7617:10747482,34908195:253821 +k1,7617:11684188,34908195:253821 +k1,7617:14561415,34908195:253821 +k1,7617:16883553,34908195:253822 +k1,7617:19464557,34908195:253821 +k1,7617:20377670,34908195:253821 +k1,7617:23806710,34908195:253821 +k1,7617:26487329,34908195:253821 +k1,7617:29779399,34908195:253821 +k1,7617:32583029,34908195:0 +) +(1,7618:6764466,35773275:25818563,505283,134348 +k1,7617:8420015,35773275:274705 +k1,7617:10740754,35773275:274705 +k1,7617:12511646,35773275:274705 +k1,7617:14569586,35773275:274705 +k1,7617:16494488,35773275:274705 +k1,7617:19293640,35773275:274705 +k1,7617:20254506,35773275:274704 +k1,7617:23100188,35773275:274705 +k1,7617:26523898,35773275:274705 +k1,7617:27414641,35773275:274705 +k1,7617:28708431,35773275:274705 +k1,7617:30814212,35773275:274705 +k1,7617:32583029,35773275:0 +) +(1,7618:6764466,36638355:25818563,513147,134348 +k1,7617:8485620,36638355:267565 +k1,7617:9772271,36638355:267566 +k1,7617:11779162,36638355:267565 +k1,7617:12706019,36638355:267565 +k1,7617:15686776,36638355:267566 +k1,7617:17145786,36638355:267565 +k1,7617:20528278,36638355:267566 +k1,7617:23976961,36638355:267565 +k1,7617:26844995,36638355:267565 +k1,7617:27740396,36638355:267566 +k1,7617:30847636,36638355:267565 +k1,7617:32583029,36638355:0 +) +(1,7618:6764466,37503435:25818563,513147,134348 +g1,7617:10576695,37503435 +g1,7617:12844240,37503435 +g1,7617:15089503,37503435 +g1,7617:19790400,37503435 +g1,7617:23222520,37503435 +g1,7617:25292147,37503435 +g1,7617:26142804,37503435 +k1,7618:32583029,37503435:2601781 +g1,7618:32583029,37503435 +) +] +g1,7618:32583029,37637783 +) +h1,7618:6630773,37637783:0,0,0 +(1,7620:6630773,39754601:25952256,564462,147783 +(1,7620:6630773,39754601:2450326,534184,0 +g1,7620:6630773,39754601 +g1,7620:9081099,39754601 +) +g1,7620:14099257,39754601 +g1,7620:15666485,39754601 +g1,7620:18906192,39754601 +g1,7620:20683201,39754601 +k1,7620:32583029,39754601:9386064 +g1,7620:32583029,39754601 +) +(1,7622:6630773,41012897:25952256,513147,134348 +k1,7621:9733750,41012897:313109 +(1,7621:9733750,41012897:0,452978,115847 +r1,7637:12905710,41012897:3171960,568825,115847 +k1,7621:9733750,41012897:-3171960 +) +(1,7621:9733750,41012897:3171960,452978,115847 +k1,7621:9733750,41012897:3277 +h1,7621:12902433,41012897:0,411205,112570 +) +k1,7621:13218820,41012897:313110 +k1,7621:14636211,41012897:313109 +k1,7621:15697087,41012897:313110 +k1,7621:17523422,41012897:313109 +k1,7621:18487959,41012897:313109 +k1,7621:20824821,41012897:313110 +k1,7621:21493790,41012897:313109 +k1,7621:24797307,41012897:313109 +k1,7621:26678038,41012897:313110 +k1,7621:29280975,41012897:313109 +k1,7621:30253377,41012897:313110 +k1,7621:32168186,41012897:313109 +k1,7622:32583029,41012897:0 +) +(1,7622:6630773,41877977:25952256,513147,134348 +k1,7621:9313812,41877977:276557 +k1,7621:12570947,41877977:276558 +k1,7621:14236867,41877977:276557 +k1,7621:16893693,41877977:276558 +k1,7621:18123799,41877977:276557 +k1,7621:19504639,41877977:276558 +k1,7621:21067012,41877977:276557 +k1,7621:22436055,41877977:276558 +(1,7621:22436055,41877977:0,452978,115847 +r1,7637:25256304,41877977:2820249,568825,115847 +k1,7621:22436055,41877977:-2820249 +) +(1,7621:22436055,41877977:2820249,452978,115847 +k1,7621:22436055,41877977:3277 +h1,7621:25253027,41877977:0,411205,112570 +) +k1,7621:25706531,41877977:276557 +(1,7621:25706531,41877977:0,452978,115847 +r1,7637:28526780,41877977:2820249,568825,115847 +k1,7621:25706531,41877977:-2820249 +) +(1,7621:25706531,41877977:2820249,452978,115847 +k1,7621:25706531,41877977:3277 +h1,7621:28523503,41877977:0,411205,112570 +) +k1,7621:28803338,41877977:276558 +k1,7621:29762780,41877977:276557 +(1,7621:29762780,41877977:0,452978,115847 +r1,7637:32583029,41877977:2820249,568825,115847 +k1,7621:29762780,41877977:-2820249 +) +(1,7621:29762780,41877977:2820249,452978,115847 +k1,7621:29762780,41877977:3277 +h1,7621:32579752,41877977:0,411205,112570 +) +k1,7621:32583029,41877977:0 +) +(1,7622:6630773,42743057:25952256,513147,134348 +k1,7621:7486522,42743057:204321 +k1,7621:9454417,42743057:204321 +k1,7621:10790545,42743057:204321 +k1,7621:13506860,42743057:204320 +k1,7621:16406677,42743057:204321 +k1,7621:17262426,42743057:204321 +k1,7621:20659661,42743057:204321 +k1,7621:23577173,42743057:204321 +k1,7621:25013571,42743057:204321 +k1,7621:27496578,42743057:204320 +h1,7621:28467166,42743057:0,0,0 +k1,7621:28671487,42743057:204321 +k1,7621:29685178,42743057:204321 +k1,7621:31387652,42743057:204321 +h1,7621:32583029,42743057:0,0,0 +k1,7621:32583029,42743057:0 +) +(1,7622:6630773,43608137:25952256,513147,126483 +g1,7621:7777653,43608137 +g1,7621:8332742,43608137 +g1,7621:12141694,43608137 +g1,7621:13000215,43608137 +g1,7621:14896171,43608137 +g1,7621:18121197,43608137 +g1,7621:19511871,43608137 +g1,7621:21219739,43608137 +k1,7622:32583029,43608137:9890041 +g1,7622:32583029,43608137 +) +v1,7624:6630773,44292992:0,393216,0 +(1,7637:6630773,45449602:25952256,1549826,196608 +g1,7637:6630773,45449602 +g1,7637:6630773,45449602 +g1,7637:6434165,45449602 +(1,7637:6434165,45449602:0,1549826,196608 +r1,7637:32779637,45449602:26345472,1746434,196608 +k1,7637:6434165,45449602:-26345472 +) +(1,7637:6434165,45449602:26345472,1549826,196608 +[1,7637:6630773,45449602:25952256,1353218,0 +(1,7626:6630773,44527429:25952256,431045,106246 +(1,7625:6630773,44527429:0,0,0 +g1,7625:6630773,44527429 +g1,7625:6630773,44527429 +g1,7625:6303093,44527429 +(1,7625:6303093,44527429:0,0,0 +) +g1,7625:6630773,44527429 +) +k1,7626:6630773,44527429:0 +h1,7626:10946175,44527429:0,0,0 +k1,7626:32583029,44527429:21636854 +g1,7626:32583029,44527429 +) +(1,7636:6630773,45343356:25952256,398014,106246 +(1,7628:6630773,45343356:0,0,0 +g1,7628:6630773,45343356 +g1,7628:6630773,45343356 +g1,7628:6303093,45343356 +(1,7628:6303093,45343356:0,0,0 +) +g1,7628:6630773,45343356 +) +g1,7636:7626635,45343356 +g1,7636:7958589,45343356 +g1,7636:8290543,45343356 +g1,7636:8622497,45343356 +g1,7636:8954451,45343356 +g1,7636:9286405,45343356 +g1,7636:9618359,45343356 +g1,7636:9950313,45343356 +g1,7636:10614221,45343356 +g1,7636:10946175,45343356 +g1,7636:11278129,45343356 +g1,7636:11610083,45343356 +g1,7636:11942037,45343356 +g1,7636:12273991,45343356 +g1,7636:12605945,45343356 +g1,7636:12937899,45343356 +g1,7636:13269853,45343356 +g1,7636:13601807,45343356 +g1,7636:13933761,45343356 +g1,7636:14265715,45343356 +g1,7636:14597669,45343356 +g1,7636:15261577,45343356 +g1,7636:15593531,45343356 +g1,7636:15925485,45343356 +g1,7636:16257439,45343356 +g1,7636:16589393,45343356 +g1,7636:16921347,45343356 +g1,7636:17253301,45343356 +g1,7636:17585255,45343356 +g1,7636:17917209,45343356 +g1,7636:18249163,45343356 +g1,7636:18581117,45343356 +g1,7636:18913071,45343356 +g1,7636:19245025,45343356 +g1,7636:19576979,45343356 +g1,7636:19908933,45343356 +g1,7636:20240887,45343356 +g1,7636:20572841,45343356 +h1,7636:20904795,45343356:0,0,0 +k1,7636:32583029,45343356:11678234 +g1,7636:32583029,45343356 +) +] +) +g1,7637:32583029,45449602 +g1,7637:6630773,45449602 +g1,7637:6630773,45449602 +g1,7637:32583029,45449602 +g1,7637:32583029,45449602 +) +] +(1,7637:32583029,45706769:0,0,0 +g1,7637:32583029,45706769 +) +) +] +(1,7637:6630773,47279633:25952256,0,0 +h1,7637:6630773,47279633:25952256,0,0 +) +] +(1,7637:4262630,4025873:0,0,0 +[1,7637:-473656,4025873:0,0,0 +(1,7637:-473656,-710413:0,0,0 +(1,7637:-473656,-710413:0,0,0 +g1,7637:-473656,-710413 +) +g1,7637:-473656,-710413 +) +] +) +] +!28670 +}116 +Input:1026:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1027:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1028:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1029:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1030:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1031:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1032:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1033:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1034:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!858 +{117 +[1,7722:4262630,47279633:28320399,43253760,0 +(1,7722:4262630,4025873:0,0,0 +[1,7722:-473656,4025873:0,0,0 +(1,7722:-473656,-710413:0,0,0 +(1,7722:-473656,-644877:0,0,0 +k1,7722:-473656,-644877:-65536 ) -] -(1,8530:4262630,4025873:0,0,0 -[1,8530:-473656,4025873:0,0,0 -(1,8530:-473656,-710413:0,0,0 -(1,8530:-473656,-710413:0,0,0 -g1,8530:-473656,-710413 +(1,7722:-473656,4736287:0,0,0 +k1,7722:-473656,4736287:5209943 ) -g1,8530:-473656,-710413 +g1,7722:-473656,-710413 ) ] ) -] -!23496 -}141 -Input:1153:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1154:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1155:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1156:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1157:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1158:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1159:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!670 -{142 -[1,8564:4262630,47279633:28320399,43253760,0 -(1,8564:4262630,4025873:0,0,0 -[1,8564:-473656,4025873:0,0,0 -(1,8564:-473656,-710413:0,0,0 -(1,8564:-473656,-644877:0,0,0 -k1,8564:-473656,-644877:-65536 +[1,7722:6630773,47279633:25952256,43253760,0 +[1,7722:6630773,4812305:25952256,786432,0 +(1,7722:6630773,4812305:25952256,505283,11795 +(1,7722:6630773,4812305:25952256,505283,11795 +g1,7722:3078558,4812305 +[1,7722:3078558,4812305:0,0,0 +(1,7722:3078558,2439708:0,1703936,0 +k1,7722:1358238,2439708:-1720320 +(1,6148:1358238,2439708:1720320,1703936,0 +(1,6148:1358238,2439708:1179648,16384,0 +r1,7722:2537886,2439708:1179648,16384,0 ) -(1,8564:-473656,4736287:0,0,0 -k1,8564:-473656,4736287:5209943 +g1,6148:3062174,2439708 +(1,6148:3062174,2439708:16384,1703936,0 +[1,6148:3062174,2439708:25952256,1703936,0 +(1,6148:3062174,1915420:25952256,1179648,0 +(1,6148:3062174,1915420:16384,1179648,0 +r1,7722:3078558,1915420:16384,1179648,0 ) -g1,8564:-473656,-710413 +k1,6148:29014430,1915420:25935872 +g1,6148:29014430,1915420 ) ] ) -[1,8564:6630773,47279633:25952256,43253760,0 -[1,8564:6630773,4812305:25952256,786432,0 -(1,8564:6630773,4812305:25952256,485622,134348 -(1,8564:6630773,4812305:25952256,485622,134348 -g1,8564:3078558,4812305 -[1,8564:3078558,4812305:0,0,0 -(1,8564:3078558,2439708:0,1703936,0 -k1,8564:1358238,2439708:-1720320 -(1,8393:1358238,2439708:1720320,1703936,0 -(1,8393:1358238,2439708:1179648,16384,0 -r1,8564:2537886,2439708:1179648,16384,0 ) -g1,8393:3062174,2439708 -(1,8393:3062174,2439708:16384,1703936,0 -[1,8393:3062174,2439708:25952256,1703936,0 -(1,8393:3062174,1915420:25952256,1179648,0 -(1,8393:3062174,1915420:16384,1179648,0 -r1,8564:3078558,1915420:16384,1179648,0 -) -k1,8393:29014430,1915420:25935872 -g1,8393:29014430,1915420 ) ] +[1,7722:3078558,4812305:0,0,0 +(1,7722:3078558,2439708:0,1703936,0 +g1,7722:29030814,2439708 +g1,7722:36135244,2439708 +(1,6148:36135244,2439708:1720320,1703936,0 +(1,6148:36135244,2439708:16384,1703936,0 +[1,6148:36135244,2439708:25952256,1703936,0 +(1,6148:36135244,1915420:25952256,1179648,0 +(1,6148:36135244,1915420:16384,1179648,0 +r1,7722:36151628,1915420:16384,1179648,0 ) -) +k1,6148:62087500,1915420:25935872 +g1,6148:62087500,1915420 ) ] -[1,8564:3078558,4812305:0,0,0 -(1,8564:3078558,2439708:0,1703936,0 -g1,8564:29030814,2439708 -g1,8564:36135244,2439708 -(1,8393:36135244,2439708:1720320,1703936,0 -(1,8393:36135244,2439708:16384,1703936,0 -[1,8393:36135244,2439708:25952256,1703936,0 -(1,8393:36135244,1915420:25952256,1179648,0 -(1,8393:36135244,1915420:16384,1179648,0 -r1,8564:36151628,1915420:16384,1179648,0 ) -k1,8393:62087500,1915420:25935872 -g1,8393:62087500,1915420 +g1,6148:36675916,2439708 +(1,6148:36675916,2439708:1179648,16384,0 +r1,7722:37855564,2439708:1179648,16384,0 ) -] ) -g1,8393:36675916,2439708 -(1,8393:36675916,2439708:1179648,16384,0 -r1,8564:37855564,2439708:1179648,16384,0 +k1,7722:3078556,2439708:-34777008 ) +] +[1,7722:3078558,4812305:0,0,0 +(1,7722:3078558,49800853:0,16384,2228224 +k1,7722:1358238,49800853:-1720320 +(1,6148:1358238,49800853:1720320,16384,2228224 +(1,6148:1358238,49800853:1179648,16384,0 +r1,7722:2537886,49800853:1179648,16384,0 ) -k1,8564:3078556,2439708:-34777008 +g1,6148:3062174,49800853 +(1,6148:3062174,52029077:16384,1703936,0 +[1,6148:3062174,52029077:25952256,1703936,0 +(1,6148:3062174,51504789:25952256,1179648,0 +(1,6148:3062174,51504789:16384,1179648,0 +r1,7722:3078558,51504789:16384,1179648,0 ) -] -[1,8564:3078558,4812305:0,0,0 -(1,8564:3078558,49800853:0,16384,2228224 -k1,8564:1358238,49800853:-1720320 -(1,8393:1358238,49800853:1720320,16384,2228224 -(1,8393:1358238,49800853:1179648,16384,0 -r1,8564:2537886,49800853:1179648,16384,0 +k1,6148:29014430,51504789:25935872 +g1,6148:29014430,51504789 +) +] +) +) +) +] +[1,7722:3078558,4812305:0,0,0 +(1,7722:3078558,49800853:0,16384,2228224 +g1,7722:29030814,49800853 +g1,7722:36135244,49800853 +(1,6148:36135244,49800853:1720320,16384,2228224 +(1,6148:36135244,52029077:16384,1703936,0 +[1,6148:36135244,52029077:25952256,1703936,0 +(1,6148:36135244,51504789:25952256,1179648,0 +(1,6148:36135244,51504789:16384,1179648,0 +r1,7722:36151628,51504789:16384,1179648,0 +) +k1,6148:62087500,51504789:25935872 +g1,6148:62087500,51504789 +) +] +) +g1,6148:36675916,49800853 +(1,6148:36675916,49800853:1179648,16384,0 +r1,7722:37855564,49800853:1179648,16384,0 +) +) +k1,7722:3078556,49800853:-34777008 +) +] +g1,7722:6630773,4812305 +k1,7722:24358918,4812305:16532768 +g1,7722:25981589,4812305 +g1,7722:26804065,4812305 +g1,7722:30302376,4812305 +) +) +] +[1,7722:6630773,45706769:25952256,40108032,0 +(1,7722:6630773,45706769:25952256,40108032,0 +(1,7722:6630773,45706769:0,0,0 +g1,7722:6630773,45706769 +) +[1,7722:6630773,45706769:25952256,40108032,0 +v1,7637:6630773,6254097:0,393216,0 +(1,7637:6630773,9916111:25952256,4055230,196608 +g1,7637:6630773,9916111 +g1,7637:6630773,9916111 +g1,7637:6434165,9916111 +(1,7637:6434165,9916111:0,4055230,196608 +r1,7722:32779637,9916111:26345472,4251838,196608 +k1,7637:6434165,9916111:-26345472 +) +(1,7637:6434165,9916111:26345472,4055230,196608 +[1,7637:6630773,9916111:25952256,3858622,0 +(1,7636:6630773,6481928:25952256,424439,112852 +h1,7636:6630773,6481928:0,0,0 +g1,7636:7626635,6481928 +g1,7636:7958589,6481928 +g1,7636:9618359,6481928 +g1,7636:9950313,6481928 +g1,7636:10282267,6481928 +g1,7636:12273991,6481928 +g1,7636:12605945,6481928 +g1,7636:12937899,6481928 +g1,7636:15925484,6481928 +g1,7636:16257438,6481928 +g1,7636:16589392,6481928 +g1,7636:16921346,6481928 +g1,7636:17253300,6481928 +g1,7636:17585254,6481928 +g1,7636:17917208,6481928 +g1,7636:18249162,6481928 +g1,7636:18581116,6481928 +g1,7636:18913070,6481928 +g1,7636:19245024,6481928 +g1,7636:20904794,6481928 +h1,7636:23560425,6481928:0,0,0 +k1,7636:32583029,6481928:9022604 +g1,7636:32583029,6481928 +) +(1,7636:6630773,7166783:25952256,424439,86428 +h1,7636:6630773,7166783:0,0,0 +g1,7636:7626635,7166783 +g1,7636:7958589,7166783 +g1,7636:9286405,7166783 +g1,7636:12273990,7166783 +g1,7636:12605944,7166783 +g1,7636:12937898,7166783 +g1,7636:14929622,7166783 +g1,7636:18581115,7166783 +g1,7636:18913069,7166783 +g1,7636:19245023,7166783 +h1,7636:21568701,7166783:0,0,0 +k1,7636:32583029,7166783:11014328 +g1,7636:32583029,7166783 +) +(1,7636:6630773,7851638:25952256,424439,9908 +h1,7636:6630773,7851638:0,0,0 +g1,7636:7626635,7851638 +g1,7636:7958589,7851638 +g1,7636:10282267,7851638 +g1,7636:12273991,7851638 +g1,7636:12605945,7851638 +g1,7636:12937899,7851638 +g1,7636:14597669,7851638 +g1,7636:14929623,7851638 +g1,7636:18581116,7851638 +g1,7636:18913070,7851638 +g1,7636:19245024,7851638 +g1,7636:20904794,7851638 +h1,7636:21568702,7851638:0,0,0 +k1,7636:32583029,7851638:11014327 +g1,7636:32583029,7851638 +) +(1,7636:6630773,8536493:25952256,407923,9908 +h1,7636:6630773,8536493:0,0,0 +g1,7636:7626635,8536493 +g1,7636:7958589,8536493 +g1,7636:9618359,8536493 +g1,7636:9950313,8536493 +g1,7636:10282267,8536493 +h1,7636:11942037,8536493:0,0,0 +k1,7636:32583029,8536493:20640992 +g1,7636:32583029,8536493 +) +(1,7636:6630773,9221348:25952256,424439,86428 +h1,7636:6630773,9221348:0,0,0 +g1,7636:7626635,9221348 +g1,7636:7958589,9221348 +g1,7636:9286405,9221348 +h1,7636:11942036,9221348:0,0,0 +k1,7636:32583028,9221348:20640992 +g1,7636:32583028,9221348 +) +(1,7636:6630773,9906203:25952256,407923,9908 +h1,7636:6630773,9906203:0,0,0 +g1,7636:7626635,9906203 +g1,7636:7958589,9906203 +g1,7636:9618359,9906203 +g1,7636:9950313,9906203 +g1,7636:10282267,9906203 +h1,7636:11942037,9906203:0,0,0 +k1,7636:32583029,9906203:20640992 +g1,7636:32583029,9906203 +) +] +) +g1,7637:32583029,9916111 +g1,7637:6630773,9916111 +g1,7637:6630773,9916111 +g1,7637:32583029,9916111 +g1,7637:32583029,9916111 +) +h1,7637:6630773,10112719:0,0,0 +(1,7642:6630773,10977799:25952256,513147,126483 +h1,7641:6630773,10977799:983040,0,0 +k1,7641:8288834,10977799:260178 +k1,7641:11244569,10977799:260239 +(1,7641:11244569,10977799:0,452978,115847 +r1,7722:13713106,10977799:2468537,568825,115847 +k1,7641:11244569,10977799:-2468537 +) +(1,7641:11244569,10977799:2468537,452978,115847 +k1,7641:11244569,10977799:3277 +h1,7641:13709829,10977799:0,411205,112570 +) +k1,7641:13973346,10977799:260240 +k1,7641:16279619,10977799:260239 +k1,7641:16997955,10977799:260239 +k1,7641:19888154,10977799:260239 +k1,7641:20799822,10977799:260240 +k1,7641:22474328,10977799:260239 +k1,7641:23090427,10977799:260239 +k1,7641:24740030,10977799:260240 +k1,7641:26876565,10977799:260239 +k1,7641:28404270,10977799:260239 +k1,7641:29020369,10977799:260239 +k1,7641:30274135,10977799:260240 +k1,7641:31193666,10977799:260239 +k1,7641:32583029,10977799:0 +) +(1,7642:6630773,11842879:25952256,513147,134348 +k1,7641:9200746,11842879:189705 +k1,7641:11245119,11842879:189704 +k1,7641:12244194,11842879:189705 +k1,7641:13452984,11842879:189705 +k1,7641:15435099,11842879:189705 +k1,7641:16284095,11842879:189704 +k1,7641:16829660,11842879:189705 +k1,7641:19087026,11842879:189705 +k1,7641:20743427,11842879:189705 +k1,7641:21399092,11842879:189704 +k1,7641:22607882,11842879:189705 +k1,7641:24331785,11842879:189705 +k1,7641:25513050,11842879:189705 +k1,7641:26769025,11842879:189704 +k1,7641:29466137,11842879:189705 +k1,7641:32583029,11842879:0 +) +(1,7642:6630773,12707959:25952256,513147,7863 +g1,7641:7481430,12707959 +g1,7641:9574649,12707959 +k1,7642:32583029,12707959:21042300 +g1,7642:32583029,12707959 +) +(1,7644:6630773,13573039:25952256,513147,7863 +h1,7643:6630773,13573039:983040,0,0 +k1,7643:8757416,13573039:190054 +k1,7643:10876851,13573039:190055 +k1,7643:11422765,13573039:190054 +k1,7643:13002182,13573039:190054 +k1,7643:15068532,13573039:190054 +k1,7643:16652538,13573039:190055 +k1,7643:17739125,13573039:190054 +k1,7643:19463377,13573039:190054 +k1,7643:20844876,13573039:190054 +k1,7643:22689715,13573039:190055 +k1,7643:25766630,13573039:190054 +k1,7643:26584519,13573039:190054 +k1,7643:27793658,13573039:190054 +k1,7643:29350794,13573039:190055 +k1,7643:30200140,13573039:190054 +k1,7644:32583029,13573039:0 +) +(1,7644:6630773,14438119:25952256,505283,134348 +(1,7643:6630773,14438119:0,414482,115847 +r1,7722:6989039,14438119:358266,530329,115847 +k1,7643:6630773,14438119:-358266 +) +(1,7643:6630773,14438119:358266,414482,115847 +k1,7643:6630773,14438119:3277 +h1,7643:6985762,14438119:0,411205,112570 +) +k1,7643:7360439,14438119:197730 +k1,7643:8426520,14438119:197729 +k1,7643:9826180,14438119:197730 +k1,7643:10833280,14438119:197730 +k1,7643:11445851,14438119:197728 +k1,7643:12295009,14438119:197730 +k1,7643:16809596,14438119:197730 +k1,7643:19159528,14438119:197730 +(1,7643:19159528,14438119:0,452978,115847 +r1,7722:23034912,14438119:3875384,568825,115847 +k1,7643:19159528,14438119:-3875384 +) +(1,7643:19159528,14438119:3875384,452978,115847 +g1,7643:21624788,14438119 +h1,7643:23031635,14438119:0,411205,112570 +) +k1,7643:23232641,14438119:197729 +k1,7643:24191899,14438119:197730 +k1,7643:27396421,14438119:197730 +k1,7643:28052248,14438119:197730 +k1,7643:29904761,14438119:197729 +k1,7643:31858201,14438119:197730 +k1,7643:32583029,14438119:0 +) +(1,7644:6630773,15303199:25952256,513147,7863 +g1,7643:7516164,15303199 +g1,7643:8366821,15303199 +g1,7643:9406877,15303199 +g1,7643:10625191,15303199 +g1,7643:11720953,15303199 +k1,7644:32583029,15303199:19154208 +g1,7644:32583029,15303199 +) +v1,7646:6630773,15988054:0,393216,0 +(1,7650:6630773,16308919:25952256,714081,196608 +g1,7650:6630773,16308919 +g1,7650:6630773,16308919 +g1,7650:6434165,16308919 +(1,7650:6434165,16308919:0,714081,196608 +r1,7722:32779637,16308919:26345472,910689,196608 +k1,7650:6434165,16308919:-26345472 +) +(1,7650:6434165,16308919:26345472,714081,196608 +[1,7650:6630773,16308919:25952256,517473,0 +(1,7648:6630773,16222491:25952256,431045,86428 +(1,7647:6630773,16222491:0,0,0 +g1,7647:6630773,16222491 +g1,7647:6630773,16222491 +g1,7647:6303093,16222491 +(1,7647:6303093,16222491:0,0,0 +) +g1,7647:6630773,16222491 +) +g1,7648:8290543,16222491 +g1,7648:9286405,16222491 +g1,7648:13933760,16222491 +g1,7648:14597668,16222491 +g1,7648:16257438,16222491 +g1,7648:17253300,16222491 +g1,7648:17917208,16222491 +g1,7648:19576978,16222491 +g1,7648:20572840,16222491 +g1,7648:21568702,16222491 +g1,7648:22564564,16222491 +g1,7648:23560426,16222491 +g1,7648:24888242,16222491 +g1,7648:25552150,16222491 +g1,7648:26216058,16222491 +g1,7648:28539736,16222491 +h1,7648:30199506,16222491:0,0,0 +k1,7648:32583029,16222491:2383523 +g1,7648:32583029,16222491 +) +] +) +g1,7650:32583029,16308919 +g1,7650:6630773,16308919 +g1,7650:6630773,16308919 +g1,7650:32583029,16308919 +g1,7650:32583029,16308919 +) +h1,7650:6630773,16505527:0,0,0 +v1,7654:6630773,17190382:0,393216,0 +(1,7671:6630773,25099204:25952256,8302038,196608 +g1,7671:6630773,25099204 +g1,7671:6630773,25099204 +g1,7671:6434165,25099204 +(1,7671:6434165,25099204:0,8302038,196608 +r1,7722:32779637,25099204:26345472,8498646,196608 +k1,7671:6434165,25099204:-26345472 +) +(1,7671:6434165,25099204:26345472,8302038,196608 +[1,7671:6630773,25099204:25952256,8105430,0 +(1,7656:6630773,17424819:25952256,431045,106246 +(1,7655:6630773,17424819:0,0,0 +g1,7655:6630773,17424819 +g1,7655:6630773,17424819 +g1,7655:6303093,17424819 +(1,7655:6303093,17424819:0,0,0 +) +g1,7655:6630773,17424819 +) +k1,7656:6630773,17424819:0 +g1,7656:10614221,17424819 +h1,7656:12937899,17424819:0,0,0 +k1,7656:32583029,17424819:19645130 +g1,7656:32583029,17424819 +) +(1,7670:6630773,18240746:25952256,431045,33029 +(1,7658:6630773,18240746:0,0,0 +g1,7658:6630773,18240746 +g1,7658:6630773,18240746 +g1,7658:6303093,18240746 +(1,7658:6303093,18240746:0,0,0 +) +g1,7658:6630773,18240746 +) +g1,7670:7626635,18240746 +h1,7670:8290543,18240746:0,0,0 +k1,7670:32583029,18240746:24292486 +g1,7670:32583029,18240746 +) +(1,7670:6630773,18925601:25952256,407923,0 +h1,7670:6630773,18925601:0,0,0 +g1,7670:7626635,18925601 +g1,7670:7958589,18925601 +g1,7670:8290543,18925601 +g1,7670:9286405,18925601 +g1,7670:10282267,18925601 +h1,7670:10614221,18925601:0,0,0 +k1,7670:32583029,18925601:21968808 +g1,7670:32583029,18925601 +) +(1,7670:6630773,19610456:25952256,407923,4954 +h1,7670:6630773,19610456:0,0,0 +g1,7670:7626635,19610456 +g1,7670:8290543,19610456 +g1,7670:8622497,19610456 +g1,7670:9286405,19610456 +g1,7670:9618359,19610456 +g1,7670:10282267,19610456 +h1,7670:10614221,19610456:0,0,0 +k1,7670:32583029,19610456:21968808 +g1,7670:32583029,19610456 +) +(1,7670:6630773,20295311:25952256,407923,9908 +h1,7670:6630773,20295311:0,0,0 +g1,7670:7626635,20295311 +g1,7670:8290543,20295311 +g1,7670:8622497,20295311 +g1,7670:9286405,20295311 +g1,7670:9618359,20295311 +g1,7670:10282267,20295311 +h1,7670:10614221,20295311:0,0,0 +k1,7670:32583029,20295311:21968808 +g1,7670:32583029,20295311 +) +(1,7670:6630773,20980166:25952256,407923,9908 +h1,7670:6630773,20980166:0,0,0 +g1,7670:7626635,20980166 +g1,7670:8290543,20980166 +g1,7670:8622497,20980166 +g1,7670:9286405,20980166 +g1,7670:9618359,20980166 +g1,7670:10282267,20980166 +h1,7670:10614221,20980166:0,0,0 +k1,7670:32583029,20980166:21968808 +g1,7670:32583029,20980166 +) +(1,7670:6630773,21665021:25952256,398014,0 +h1,7670:6630773,21665021:0,0,0 +h1,7670:7294681,21665021:0,0,0 +k1,7670:32583029,21665021:25288348 +g1,7670:32583029,21665021 +) +(1,7670:6630773,22349876:25952256,431045,33029 +h1,7670:6630773,22349876:0,0,0 +g1,7670:7626635,22349876 +h1,7670:8290543,22349876:0,0,0 +k1,7670:32583029,22349876:24292486 +g1,7670:32583029,22349876 +) +(1,7670:6630773,23034731:25952256,407923,0 +h1,7670:6630773,23034731:0,0,0 +g1,7670:7626635,23034731 +g1,7670:7958589,23034731 +g1,7670:8290543,23034731 +g1,7670:9286405,23034731 +g1,7670:10282267,23034731 +h1,7670:10614221,23034731:0,0,0 +k1,7670:32583029,23034731:21968808 +g1,7670:32583029,23034731 +) +(1,7670:6630773,23719586:25952256,424439,9908 +h1,7670:6630773,23719586:0,0,0 +g1,7670:7626635,23719586 +g1,7670:8290543,23719586 +g1,7670:8622497,23719586 +g1,7670:9286405,23719586 +g1,7670:9618359,23719586 +g1,7670:10282267,23719586 +h1,7670:10614221,23719586:0,0,0 +k1,7670:32583029,23719586:21968808 +g1,7670:32583029,23719586 +) +(1,7670:6630773,24404441:25952256,424439,6605 +h1,7670:6630773,24404441:0,0,0 +g1,7670:7626635,24404441 +g1,7670:8290543,24404441 +g1,7670:8622497,24404441 +g1,7670:9286405,24404441 +g1,7670:9618359,24404441 +g1,7670:10282267,24404441 +h1,7670:10614221,24404441:0,0,0 +k1,7670:32583029,24404441:21968808 +g1,7670:32583029,24404441 +) +(1,7670:6630773,25089296:25952256,424439,9908 +h1,7670:6630773,25089296:0,0,0 +g1,7670:7626635,25089296 +g1,7670:8290543,25089296 +g1,7670:8622497,25089296 +g1,7670:9286405,25089296 +g1,7670:9618359,25089296 +g1,7670:10282267,25089296 +h1,7670:10614221,25089296:0,0,0 +k1,7670:32583029,25089296:21968808 +g1,7670:32583029,25089296 +) +] +) +g1,7671:32583029,25099204 +g1,7671:6630773,25099204 +g1,7671:6630773,25099204 +g1,7671:32583029,25099204 +g1,7671:32583029,25099204 +) +h1,7671:6630773,25295812:0,0,0 +(1,7675:6630773,26160892:25952256,513147,134348 +h1,7674:6630773,26160892:983040,0,0 +g1,7674:9604796,26160892 +g1,7674:12347477,26160892 +(1,7674:12347477,26160892:0,414482,115847 +r1,7722:13409167,26160892:1061690,530329,115847 +k1,7674:12347477,26160892:-1061690 +) +(1,7674:12347477,26160892:1061690,414482,115847 +g1,7674:12702466,26160892 +g1,7674:13054178,26160892 +h1,7674:13405890,26160892:0,411205,112570 +) +g1,7674:13608396,26160892 +g1,7674:14459053,26160892 +g1,7674:17189938,26160892 +g1,7674:18408252,26160892 +k1,7675:32583029,26160892:11118178 +g1,7675:32583029,26160892 +) +v1,7677:6630773,26845747:0,393216,0 +(1,7694:6630773,34754569:25952256,8302038,196608 +g1,7694:6630773,34754569 +g1,7694:6630773,34754569 +g1,7694:6434165,34754569 +(1,7694:6434165,34754569:0,8302038,196608 +r1,7722:32779637,34754569:26345472,8498646,196608 +k1,7694:6434165,34754569:-26345472 +) +(1,7694:6434165,34754569:26345472,8302038,196608 +[1,7694:6630773,34754569:25952256,8105430,0 +(1,7679:6630773,27080184:25952256,431045,106246 +(1,7678:6630773,27080184:0,0,0 +g1,7678:6630773,27080184 +g1,7678:6630773,27080184 +g1,7678:6303093,27080184 +(1,7678:6303093,27080184:0,0,0 +) +g1,7678:6630773,27080184 +) +k1,7679:6630773,27080184:0 +g1,7679:10614221,27080184 +g1,7679:11278129,27080184 +h1,7679:11942037,27080184:0,0,0 +k1,7679:32583029,27080184:20640992 +g1,7679:32583029,27080184 +) +(1,7693:6630773,27896111:25952256,431045,33029 +(1,7681:6630773,27896111:0,0,0 +g1,7681:6630773,27896111 +g1,7681:6630773,27896111 +g1,7681:6303093,27896111 +(1,7681:6303093,27896111:0,0,0 +) +g1,7681:6630773,27896111 +) +g1,7693:7626635,27896111 +h1,7693:8290543,27896111:0,0,0 +k1,7693:32583029,27896111:24292486 +g1,7693:32583029,27896111 +) +(1,7693:6630773,28580966:25952256,407923,0 +h1,7693:6630773,28580966:0,0,0 +g1,7693:7626635,28580966 +g1,7693:7958589,28580966 +g1,7693:8290543,28580966 +g1,7693:9286405,28580966 +g1,7693:10282267,28580966 +h1,7693:10614221,28580966:0,0,0 +k1,7693:32583029,28580966:21968808 +g1,7693:32583029,28580966 +) +(1,7693:6630773,29265821:25952256,407923,4954 +h1,7693:6630773,29265821:0,0,0 +g1,7693:7626635,29265821 +g1,7693:8290543,29265821 +g1,7693:8622497,29265821 +g1,7693:9286405,29265821 +g1,7693:9618359,29265821 +g1,7693:10282267,29265821 +h1,7693:10614221,29265821:0,0,0 +k1,7693:32583029,29265821:21968808 +g1,7693:32583029,29265821 +) +(1,7693:6630773,29950676:25952256,407923,9908 +h1,7693:6630773,29950676:0,0,0 +g1,7693:7626635,29950676 +g1,7693:8290543,29950676 +g1,7693:8622497,29950676 +g1,7693:9286405,29950676 +g1,7693:9618359,29950676 +g1,7693:10282267,29950676 +h1,7693:10614221,29950676:0,0,0 +k1,7693:32583029,29950676:21968808 +g1,7693:32583029,29950676 +) +(1,7693:6630773,30635531:25952256,407923,9908 +h1,7693:6630773,30635531:0,0,0 +g1,7693:7626635,30635531 +g1,7693:8290543,30635531 +g1,7693:8622497,30635531 +g1,7693:9286405,30635531 +g1,7693:9618359,30635531 +g1,7693:10282267,30635531 +h1,7693:10614221,30635531:0,0,0 +k1,7693:32583029,30635531:21968808 +g1,7693:32583029,30635531 +) +(1,7693:6630773,31320386:25952256,398014,0 +h1,7693:6630773,31320386:0,0,0 +h1,7693:7294681,31320386:0,0,0 +k1,7693:32583029,31320386:25288348 +g1,7693:32583029,31320386 +) +(1,7693:6630773,32005241:25952256,431045,33029 +h1,7693:6630773,32005241:0,0,0 +g1,7693:7626635,32005241 +h1,7693:8290543,32005241:0,0,0 +k1,7693:32583029,32005241:24292486 +g1,7693:32583029,32005241 +) +(1,7693:6630773,32690096:25952256,407923,0 +h1,7693:6630773,32690096:0,0,0 +g1,7693:7626635,32690096 +g1,7693:7958589,32690096 +g1,7693:8290543,32690096 +g1,7693:9286405,32690096 +g1,7693:10282267,32690096 +h1,7693:10614221,32690096:0,0,0 +k1,7693:32583029,32690096:21968808 +g1,7693:32583029,32690096 +) +(1,7693:6630773,33374951:25952256,424439,9908 +h1,7693:6630773,33374951:0,0,0 +g1,7693:7626635,33374951 +g1,7693:8290543,33374951 +g1,7693:8622497,33374951 +g1,7693:9286405,33374951 +g1,7693:9618359,33374951 +g1,7693:10282267,33374951 +h1,7693:10614221,33374951:0,0,0 +k1,7693:32583029,33374951:21968808 +g1,7693:32583029,33374951 +) +(1,7693:6630773,34059806:25952256,424439,6605 +h1,7693:6630773,34059806:0,0,0 +g1,7693:7626635,34059806 +g1,7693:8290543,34059806 +g1,7693:8622497,34059806 +g1,7693:9286405,34059806 +g1,7693:9618359,34059806 +g1,7693:10282267,34059806 +h1,7693:10614221,34059806:0,0,0 +k1,7693:32583029,34059806:21968808 +g1,7693:32583029,34059806 +) +(1,7693:6630773,34744661:25952256,424439,9908 +h1,7693:6630773,34744661:0,0,0 +g1,7693:7626635,34744661 +g1,7693:8290543,34744661 +g1,7693:8622497,34744661 +g1,7693:9286405,34744661 +g1,7693:9618359,34744661 +g1,7693:10282267,34744661 +h1,7693:10614221,34744661:0,0,0 +k1,7693:32583029,34744661:21968808 +g1,7693:32583029,34744661 +) +] +) +g1,7694:32583029,34754569 +g1,7694:6630773,34754569 +g1,7694:6630773,34754569 +g1,7694:32583029,34754569 +g1,7694:32583029,34754569 +) +h1,7694:6630773,34951177:0,0,0 +(1,7698:6630773,35816257:25952256,505283,134348 +h1,7697:6630773,35816257:983040,0,0 +g1,7697:10602910,35816257 +(1,7697:10602910,35816257:0,452978,115847 +r1,7722:13774870,35816257:3171960,568825,115847 +k1,7697:10602910,35816257:-3171960 +) +(1,7697:10602910,35816257:3171960,452978,115847 +k1,7697:10602910,35816257:3277 +h1,7697:13771593,35816257:0,411205,112570 +) +g1,7697:13974099,35816257 +g1,7697:15277610,35816257 +g1,7697:16224605,35816257 +g1,7697:17937060,35816257 +g1,7697:18787717,35816257 +g1,7697:21293158,35816257 +g1,7697:24153804,35816257 +g1,7697:25114561,35816257 +(1,7697:25114561,35816257:0,452978,115847 +r1,7722:27583098,35816257:2468537,568825,115847 +k1,7697:25114561,35816257:-2468537 +) +(1,7697:25114561,35816257:2468537,452978,115847 +k1,7697:25114561,35816257:3277 +h1,7697:27579821,35816257:0,411205,112570 +) +k1,7698:32583029,35816257:4826261 +g1,7698:32583029,35816257 +) +v1,7700:6630773,36681337:0,393216,0 +(1,7701:6630773,38854143:25952256,2566022,0 +g1,7701:6630773,38854143 +g1,7701:6237557,38854143 +r1,7722:6368629,38854143:131072,2566022,0 +g1,7701:6567858,38854143 +g1,7701:6764466,38854143 +[1,7701:6764466,38854143:25818563,2566022,0 +(1,7701:6764466,36989635:25818563,701514,196608 +(1,7700:6764466,36989635:0,701514,196608 +r1,7722:8010564,36989635:1246098,898122,196608 +k1,7700:6764466,36989635:-1246098 +) +(1,7700:6764466,36989635:1246098,701514,196608 +) +k1,7700:8191081,36989635:180517 +k1,7700:8518761,36989635:327680 +(1,7700:8518761,36989635:0,452978,115847 +r1,7722:10987298,36989635:2468537,568825,115847 +k1,7700:8518761,36989635:-2468537 +) +(1,7700:8518761,36989635:2468537,452978,115847 +k1,7700:8518761,36989635:3277 +h1,7700:10984021,36989635:0,411205,112570 +) +k1,7700:11167815,36989635:180517 +k1,7700:11879829,36989635:180517 +k1,7700:15508195,36989635:180517 +k1,7700:17201938,36989635:180517 +k1,7700:17998492,36989635:180516 +k1,7700:22166875,36989635:180517 +k1,7700:23741343,36989635:180517 +k1,7700:25685434,36989635:180517 +k1,7700:28891748,36989635:180517 +k1,7700:30304342,36989635:180517 +k1,7700:32583029,36989635:0 +) +(1,7701:6764466,37854715:25818563,505283,134348 +h1,7700:7735054,37854715:0,0,0 +k1,7700:7997089,37854715:262035 +k1,7700:9068493,37854715:262034 +k1,7700:10828681,37854715:262035 +h1,7700:12024058,37854715:0,0,0 +k1,7700:12493187,37854715:262035 +k1,7700:13406649,37854715:262034 +k1,7700:16456586,37854715:262035 +k1,7700:18611301,37854715:262035 +k1,7700:19556220,37854715:262034 +k1,7700:22962672,37854715:262035 +k1,7700:26906520,37854715:262035 +k1,7700:30103256,37854715:262034 +k1,7700:30981329,37854715:262035 +k1,7700:32583029,37854715:0 +) +(1,7701:6764466,38719795:25818563,513147,134348 +g1,7700:8661077,38719795 +g1,7700:9318403,38719795 +g1,7700:10049129,38719795 +g1,7700:12661394,38719795 +g1,7700:13512051,38719795 +g1,7700:14803765,38719795 +(1,7700:14803765,38719795:0,452978,122846 +r1,7722:18679149,38719795:3875384,575824,122846 +k1,7700:14803765,38719795:-3875384 +) +(1,7700:14803765,38719795:3875384,452978,122846 +k1,7700:14803765,38719795:3277 +h1,7700:18675872,38719795:0,411205,112570 +) +g1,7700:18878378,38719795 +g1,7700:20025258,38719795 +g1,7700:23655297,38719795 +g1,7700:25348092,38719795 +k1,7701:32583029,38719795:3553124 +g1,7701:32583029,38719795 +) +] +g1,7701:32583029,38854143 +) +h1,7701:6630773,38854143:0,0,0 +(1,7704:6630773,39719223:25952256,513147,134348 +h1,7703:6630773,39719223:983040,0,0 +k1,7703:10141303,39719223:149188 +k1,7703:10941919,39719223:149188 +k1,7703:13752524,39719223:149188 +k1,7703:14257572,39719223:149188 +k1,7703:15796123,39719223:149188 +k1,7703:17821607,39719223:149188 +k1,7703:18502292,39719223:149188 +k1,7703:19670565,39719223:149188 +k1,7703:23291195,39719223:149188 +k1,7703:24099675,39719223:149188 +k1,7703:27757005,39719223:149188 +k1,7703:29760862,39719223:149188 +k1,7703:30719420,39719223:149188 +k1,7703:31224468,39719223:149188 +k1,7704:32583029,39719223:0 +) +(1,7704:6630773,40584303:25952256,513147,134348 +k1,7703:7736037,40584303:170721 +k1,7703:8566050,40584303:170721 +k1,7703:10607824,40584303:170721 +k1,7703:11461431,40584303:170722 +k1,7703:13282349,40584303:170721 +k1,7703:16796717,40584303:170721 +k1,7703:20475580,40584303:170721 +k1,7703:21593952,40584303:170721 +k1,7703:22530789,40584303:170721 +k1,7703:26773263,40584303:170722 +k1,7703:28016153,40584303:170721 +k1,7703:29700100,40584303:170721 +k1,7703:32583029,40584303:0 +) +(1,7704:6630773,41449383:25952256,513147,7863 +g1,7703:8469057,41449383 +g1,7703:10522955,41449383 +g1,7703:11531554,41449383 +g1,7703:12749868,41449383 +g1,7703:14959742,41449383 +g1,7703:15775009,41449383 +g1,7703:16330098,41449383 +g1,7703:18912216,41449383 +g1,7703:19794330,41449383 +g1,7703:21012644,41449383 +g1,7703:23004283,41449383 +g1,7703:23862804,41449383 +g1,7703:24417893,41449383 +k1,7704:32583029,41449383:6097475 +g1,7704:32583029,41449383 +) +v1,7706:6630773,42314463:0,393216,0 +(1,7722:6630773,43728433:25952256,1807186,0 +g1,7722:6630773,43728433 +g1,7722:6237557,43728433 +r1,7722:6368629,43728433:131072,1807186,0 +g1,7722:6567858,43728433 +g1,7722:6764466,43728433 +[1,7722:6764466,43728433:25818563,1807186,0 +(1,7707:6764466,42729005:25818563,807758,219026 +(1,7706:6764466,42729005:0,807758,219026 +r1,7722:7908217,42729005:1143751,1026784,219026 +k1,7706:6764466,42729005:-1143751 +) +(1,7706:6764466,42729005:1143751,807758,219026 +) +g1,7706:8107446,42729005 +g1,7706:8435126,42729005 +g1,7706:10143649,42729005 +g1,7706:11007413,42729005 +g1,7706:14882556,42729005 +g1,7706:16288303,42729005 +g1,7706:19168610,42729005 +g1,7706:20986578,42729005 +g1,7706:21555430,42729005 +g1,7706:23170892,42729005 +g1,7706:25317196,42729005 +g1,7706:26369704,42729005 +k1,7706:32583029,42729005:3926774 +g1,7707:32583029,42729005 +) +(1,7707:6764466,43594085:25818563,505283,134348 +g1,7706:7792725,43594085 +g1,7706:11559734,43594085 +g1,7706:12114823,43594085 +g1,7706:14187071,43594085 +g1,7706:16897640,43594085 +g1,7706:17858397,43594085 +g1,7706:19950306,43594085 +g1,7706:21017887,43594085 +g1,7706:22321398,43594085 +g1,7706:23613112,43594085 +(1,7706:23613112,43594085:0,452978,122846 +r1,7722:27488496,43594085:3875384,575824,122846 +k1,7706:23613112,43594085:-3875384 +) +(1,7706:23613112,43594085:3875384,452978,122846 +k1,7706:23613112,43594085:3277 +h1,7706:27485219,43594085:0,411205,112570 +) +k1,7707:32583029,43594085:4920863 +g1,7707:32583029,43594085 +) +] +g1,7722:32583029,43728433 +) +] +(1,7722:32583029,45706769:0,0,0 +g1,7722:32583029,45706769 +) +) +] +(1,7722:6630773,47279633:25952256,0,0 +h1,7722:6630773,47279633:25952256,0,0 +) +] +(1,7722:4262630,4025873:0,0,0 +[1,7722:-473656,4025873:0,0,0 +(1,7722:-473656,-710413:0,0,0 +(1,7722:-473656,-710413:0,0,0 +g1,7722:-473656,-710413 +) +g1,7722:-473656,-710413 +) +] +) +] +!26158 +}117 +Input:1035:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1036:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1037:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1038:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1039:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1040:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1041:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1042:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!764 +{118 +[1,7798:4262630,47279633:28320399,43253760,0 +(1,7798:4262630,4025873:0,0,0 +[1,7798:-473656,4025873:0,0,0 +(1,7798:-473656,-710413:0,0,0 +(1,7798:-473656,-644877:0,0,0 +k1,7798:-473656,-644877:-65536 ) -g1,8393:3062174,49800853 -(1,8393:3062174,52029077:16384,1703936,0 -[1,8393:3062174,52029077:25952256,1703936,0 -(1,8393:3062174,51504789:25952256,1179648,0 -(1,8393:3062174,51504789:16384,1179648,0 -r1,8564:3078558,51504789:16384,1179648,0 +(1,7798:-473656,4736287:0,0,0 +k1,7798:-473656,4736287:5209943 ) -k1,8393:29014430,51504789:25935872 -g1,8393:29014430,51504789 +g1,7798:-473656,-710413 ) ] ) +[1,7798:6630773,47279633:25952256,43253760,0 +[1,7798:6630773,4812305:25952256,786432,0 +(1,7798:6630773,4812305:25952256,513147,126483 +(1,7798:6630773,4812305:25952256,513147,126483 +g1,7798:3078558,4812305 +[1,7798:3078558,4812305:0,0,0 +(1,7798:3078558,2439708:0,1703936,0 +k1,7798:1358238,2439708:-1720320 +(1,6148:1358238,2439708:1720320,1703936,0 +(1,6148:1358238,2439708:1179648,16384,0 +r1,7798:2537886,2439708:1179648,16384,0 ) +g1,6148:3062174,2439708 +(1,6148:3062174,2439708:16384,1703936,0 +[1,6148:3062174,2439708:25952256,1703936,0 +(1,6148:3062174,1915420:25952256,1179648,0 +(1,6148:3062174,1915420:16384,1179648,0 +r1,7798:3078558,1915420:16384,1179648,0 ) -] -[1,8564:3078558,4812305:0,0,0 -(1,8564:3078558,49800853:0,16384,2228224 -g1,8564:29030814,49800853 -g1,8564:36135244,49800853 -(1,8393:36135244,49800853:1720320,16384,2228224 -(1,8393:36135244,52029077:16384,1703936,0 -[1,8393:36135244,52029077:25952256,1703936,0 -(1,8393:36135244,51504789:25952256,1179648,0 -(1,8393:36135244,51504789:16384,1179648,0 -r1,8564:36151628,51504789:16384,1179648,0 -) -k1,8393:62087500,51504789:25935872 -g1,8393:62087500,51504789 +k1,6148:29014430,1915420:25935872 +g1,6148:29014430,1915420 ) ] ) -g1,8393:36675916,49800853 -(1,8393:36675916,49800853:1179648,16384,0 -r1,8564:37855564,49800853:1179648,16384,0 ) ) -k1,8564:3078556,49800853:-34777008 -) ] -g1,8564:6630773,4812305 -g1,8564:6630773,4812305 -g1,8564:9132937,4812305 -g1,8564:11356573,4812305 -k1,8564:31387653,4812305:20031080 +[1,7798:3078558,4812305:0,0,0 +(1,7798:3078558,2439708:0,1703936,0 +g1,7798:29030814,2439708 +g1,7798:36135244,2439708 +(1,6148:36135244,2439708:1720320,1703936,0 +(1,6148:36135244,2439708:16384,1703936,0 +[1,6148:36135244,2439708:25952256,1703936,0 +(1,6148:36135244,1915420:25952256,1179648,0 +(1,6148:36135244,1915420:16384,1179648,0 +r1,7798:36151628,1915420:16384,1179648,0 ) +k1,6148:62087500,1915420:25935872 +g1,6148:62087500,1915420 ) ] -[1,8564:6630773,45706769:25952256,40108032,0 -(1,8564:6630773,45706769:25952256,40108032,0 -(1,8564:6630773,45706769:0,0,0 -g1,8564:6630773,45706769 ) -[1,8564:6630773,45706769:25952256,40108032,0 -(1,8529:6630773,6254097:25952256,513147,134348 -k1,8528:8074794,6254097:252576 -k1,8528:9794065,6254097:252575 -k1,8528:11696838,6254097:252576 -k1,8528:12600841,6254097:252575 -k1,8528:15702267,6254097:252576 -k1,8528:17970074,6254097:252575 -k1,8528:18680747,6254097:252576 -k1,8528:19880973,6254097:252575 -k1,8528:21152634,6254097:252576 -k1,8528:22711342,6254097:252575 -k1,8528:24562996,6254097:252576 -k1,8528:26196415,6254097:252575 -k1,8528:28071007,6254097:252576 -k1,8528:29071348,6254097:252575 -k1,8528:31821501,6254097:252576 -k1,8528:32583029,6254097:0 -) -(1,8529:6630773,7095585:25952256,513147,134348 -g1,8528:9754218,7095585 -g1,8528:11378855,7095585 -g1,8528:12769529,7095585 -g1,8528:14741507,7095585 -g1,8528:15750106,7095585 -g1,8528:16968420,7095585 -g1,8528:19425364,7095585 -k1,8529:32583029,7095585:11483220 -g1,8529:32583029,7095585 -) -(1,8531:6630773,7937073:25952256,505283,134348 -h1,8530:6630773,7937073:983040,0,0 -g1,8530:9233863,7937073 -g1,8530:10926002,7937073 -g1,8530:12281941,7937073 -g1,8530:14838500,7937073 -g1,8530:15808432,7937073 -g1,8530:20981188,7937073 -g1,8530:23011493,7937073 -g1,8530:23893607,7937073 -k1,8531:32583029,7937073:5620371 -g1,8531:32583029,7937073 -) -(1,8533:7202902,9302849:25380127,505283,134348 -(1,8532:7202902,9302849:0,355205,0 -g1,8532:7202902,9302849 -g1,8532:5892182,9302849 -g1,8532:5564502,9302849 -(1,8532:5564502,9302849:1310720,355205,0 -k1,8532:6875222,9302849:1310720 -(1,8532:6875222,9302849:0,355205,0 -k1,8532:6476763,9302849:-398459 -) -) -g1,8532:7202902,9302849 -) -k1,8532:9338422,9302849:274298 -k1,8532:10631805,9302849:274298 -k1,8532:13630435,9302849:274298 -k1,8532:15995331,9302849:274298 -k1,8532:18005022,9302849:274298 -k1,8532:18635180,9302849:274298 -k1,8532:21107556,9302849:274298 -k1,8532:25734100,9302849:274298 -k1,8532:28850694,9302849:274298 -k1,8532:30564818,9302849:274298 -k1,8532:31490544,9302849:274298 -k1,8532:32583029,9302849:0 -) -(1,8533:7202902,10144337:25380127,513147,126483 -k1,8532:9067533,10144337:172491 -k1,8532:11679928,10144337:172490 -k1,8532:12535304,10144337:172491 -k1,8532:15038911,10144337:172491 -k1,8532:16797372,10144337:172490 -k1,8532:17629155,10144337:172491 -k1,8532:21458555,10144337:172491 -k1,8532:24299017,10144337:172491 -k1,8532:28060914,10144337:172490 -k1,8532:28892697,10144337:172491 -k1,8532:32583029,10144337:0 -) -(1,8533:7202902,10985825:25380127,513147,126483 -k1,8532:11635212,10985825:163294 -k1,8532:12457797,10985825:163293 -k1,8532:15132431,10985825:163294 -k1,8532:16487170,10985825:163294 -k1,8532:19345959,10985825:163293 -k1,8532:21751240,10985825:163294 -k1,8532:22732423,10985825:163294 -k1,8532:23251576,10985825:163293 -k1,8532:26506859,10985825:163294 -k1,8532:27576516,10985825:163294 -k1,8532:28391237,10985825:163293 -k1,8532:29302297,10985825:163294 -k1,8532:32583029,10985825:0 -) -(1,8533:7202902,11827313:25380127,513147,126483 -g1,8532:8796082,11827313 -k1,8533:32583029,11827313:21006910 -g1,8533:32583029,11827313 -) -(1,8534:7202902,13193089:25380127,513147,134348 -(1,8533:7202902,13193089:0,355205,0 -g1,8533:7202902,13193089 -g1,8533:5892182,13193089 -g1,8533:5564502,13193089 -(1,8533:5564502,13193089:1310720,355205,0 -k1,8533:6875222,13193089:1310720 -(1,8533:6875222,13193089:0,355205,0 -k1,8533:6476763,13193089:-398459 -) -) -g1,8533:7202902,13193089 -) -k1,8533:8592682,13193089:240934 -k1,8533:12446616,13193089:240934 -k1,8533:14755866,13193089:240934 -k1,8533:15944451,13193089:240934 -k1,8533:19200696,13193089:240934 -k1,8533:20633075,13193089:240934 -k1,8533:22005816,13193089:240934 -k1,8533:23948720,13193089:240934 -k1,8533:26322851,13193089:240934 -k1,8533:28197598,13193089:240934 -k1,8533:28970029,13193089:240934 -k1,8533:32583029,13193089:0 -) -(1,8534:7202902,14034577:25380127,505283,134348 -k1,8533:10085225,14034577:180274 -k1,8533:11074870,14034577:180275 -k1,8533:12274229,14034577:180274 -k1,8533:14997300,14034577:180274 -k1,8533:18622147,14034577:180275 -k1,8533:19611791,14034577:180274 -k1,8533:22569481,14034577:180274 -k1,8533:24015911,14034577:180274 -k1,8533:24552046,14034577:180275 -k1,8533:26605339,14034577:180274 -k1,8533:28487583,14034577:180274 -k1,8533:30004792,14034577:180275 -k1,8533:30932832,14034577:180274 -k1,8533:32583029,14034577:0 -) -(1,8534:7202902,14876065:25380127,513147,134348 -k1,8533:10963554,14876065:147652 -k1,8533:12553654,14876065:147653 -k1,8533:13057166,14876065:147652 -k1,8533:14593527,14876065:147653 -k1,8533:16539487,14876065:147652 -k1,8533:19448172,14876065:147653 -k1,8533:24722050,14876065:147652 -k1,8533:26938019,14876065:147653 -k1,8533:28077231,14876065:147652 -k1,8533:30512091,14876065:147653 -k1,8533:32583029,14876065:0 -) -(1,8534:7202902,15717553:25380127,505283,134348 -k1,8533:8637592,15717553:192127 -k1,8533:10565112,15717553:192127 -(1,8533:10565112,15717553:0,414482,115847 -r1,8564:12681937,15717553:2116825,530329,115847 -k1,8533:10565112,15717553:-2116825 -) -(1,8533:10565112,15717553:2116825,414482,115847 -k1,8533:10565112,15717553:3277 -h1,8533:12678660,15717553:0,411205,112570 -) -k1,8533:12874065,15717553:192128 -k1,8533:14257637,15717553:192127 -(1,8533:14257637,15717553:0,452978,115847 -r1,8564:16374462,15717553:2116825,568825,115847 -k1,8533:14257637,15717553:-2116825 -) -(1,8533:14257637,15717553:2116825,452978,115847 -k1,8533:14257637,15717553:3277 -h1,8533:16371185,15717553:0,411205,112570 -) -k1,8533:16566589,15717553:192127 -k1,8533:17290213,15717553:192127 -k1,8533:19265575,15717553:192127 -k1,8533:21623668,15717553:192128 -k1,8533:23258242,15717553:192127 -k1,8533:25185762,15717553:192127 -(1,8533:25185762,15717553:0,435480,115847 -r1,8564:25895740,15717553:709978,551327,115847 -k1,8533:25185762,15717553:-709978 -) -(1,8533:25185762,15717553:709978,435480,115847 -k1,8533:25185762,15717553:3277 -h1,8533:25892463,15717553:0,411205,112570 -) -k1,8533:26087867,15717553:192127 -k1,8533:27471440,15717553:192128 -(1,8533:27471440,15717553:0,435480,115847 -r1,8564:28181418,15717553:709978,551327,115847 -k1,8533:27471440,15717553:-709978 -) -(1,8533:27471440,15717553:709978,435480,115847 -k1,8533:27471440,15717553:3277 -h1,8533:28178141,15717553:0,411205,112570 -) -k1,8533:28373545,15717553:192127 -k1,8533:30263710,15717553:192127 -k1,8533:32583029,15717553:0 -) -(1,8534:7202902,16559041:25380127,513147,126483 -k1,8533:8871903,16559041:275050 -k1,8533:9502813,16559041:275050 -k1,8533:11865185,16559041:275050 -k1,8533:12799527,16559041:275050 -k1,8533:14637611,16559041:275050 -k1,8533:17694009,16559041:275050 -(1,8533:17694009,16559041:0,459977,115847 -r1,8564:22624529,16559041:4930520,575824,115847 -k1,8533:17694009,16559041:-4930520 -) -(1,8533:17694009,16559041:4930520,459977,115847 -k1,8533:17694009,16559041:3277 -h1,8533:22621252,16559041:0,411205,112570 -) -k1,8533:22899579,16559041:275050 -k1,8533:24366074,16559041:275050 -(1,8533:24366074,16559041:0,459977,115847 -r1,8564:30351729,16559041:5985655,575824,115847 -k1,8533:24366074,16559041:-5985655 -) -(1,8533:24366074,16559041:5985655,459977,115847 -k1,8533:24366074,16559041:3277 -h1,8533:30348452,16559041:0,411205,112570 -) -k1,8533:30626779,16559041:275050 -k1,8533:32583029,16559041:0 -) -(1,8534:7202902,17400529:25380127,505283,134348 -k1,8533:9198856,17400529:280221 -k1,8533:10498162,17400529:280221 -k1,8533:12609459,17400529:280221 -k1,8533:15528814,17400529:280220 -k1,8533:17000480,17400529:280221 -k1,8533:18633364,17400529:280221 -k1,8533:20937992,17400529:280221 -k1,8533:21869641,17400529:280221 -k1,8533:23535948,17400529:280221 -k1,8533:26276390,17400529:280220 -k1,8533:28892970,17400529:280221 -k1,8533:31966991,17400529:280221 -k1,8533:32583029,17400529:0 -) -(1,8534:7202902,18242017:25380127,426639,7863 -k1,8534:32583029,18242017:23195812 -g1,8534:32583029,18242017 -) -(1,8535:7202902,19607793:25380127,505283,126483 -(1,8534:7202902,19607793:0,355205,0 -g1,8534:7202902,19607793 -g1,8534:5892182,19607793 -g1,8534:5564502,19607793 -(1,8534:5564502,19607793:1310720,355205,0 -k1,8534:6875222,19607793:1310720 -(1,8534:6875222,19607793:0,355205,0 -k1,8534:6476763,19607793:-398459 -) -) -g1,8534:7202902,19607793 -) -k1,8534:8849496,19607793:225773 -k1,8534:9726698,19607793:225774 -k1,8534:11668204,19607793:225773 -k1,8534:12913063,19607793:225774 -k1,8534:15093775,19607793:225773 -k1,8534:17362305,19607793:225773 -k1,8534:18204117,19607793:225774 -k1,8534:20671877,19607793:225773 -k1,8534:24815393,19607793:225774 -k1,8534:25657204,19607793:225773 -k1,8534:26297794,19607793:225747 -k1,8534:27680277,19607793:225773 -k1,8534:29862301,19607793:225774 -k1,8534:31180559,19607793:225773 -k1,8534:32583029,19607793:0 -) -(1,8535:7202902,20449281:25380127,505283,134348 -k1,8534:8081178,20449281:226848 -k1,8534:11010731,20449281:226848 -k1,8534:12256664,20449281:226848 -k1,8534:14438451,20449281:226848 -k1,8534:15856744,20449281:226848 -k1,8534:17176077,20449281:226848 -k1,8534:18778526,20449281:226848 -k1,8534:20761740,20449281:226849 -k1,8534:22529339,20449281:226848 -k1,8534:24473230,20449281:226848 -k1,8534:26383043,20449281:226848 -k1,8534:27908159,20449281:226848 -k1,8534:28593104,20449281:226848 -k1,8534:31224468,20449281:226848 -k1,8535:32583029,20449281:0 -) -(1,8535:7202902,21290769:25380127,513147,126483 -k1,8534:8971003,21290769:283711 -k1,8534:9906143,21290769:283712 -k1,8534:11282339,21290769:283711 -k1,8534:15650254,21290769:283711 -k1,8534:17130652,21290769:283711 -k1,8534:18506849,21290769:283712 -k1,8534:19449852,21290769:283711 -k1,8534:23644096,21290769:283711 -k1,8534:24459304,21290769:283711 -k1,8534:26367654,21290769:283712 -k1,8534:29428781,21290769:283711 -k1,8534:32583029,21290769:0 -) -(1,8535:7202902,22132257:25380127,513147,126483 -k1,8534:9982284,22132257:249692 -k1,8534:10848014,22132257:249692 -k1,8534:12789847,22132257:249693 -k1,8534:15738967,22132257:249692 -k1,8534:16446756,22132257:249692 -k1,8534:17227945,22132257:249692 -k1,8534:19838244,22132257:249692 -k1,8534:20774099,22132257:249693 -k1,8534:21639829,22132257:249692 -k1,8534:23581661,22132257:249692 -k1,8534:26988222,22132257:249692 -k1,8534:27593774,22132257:249692 -k1,8534:28915636,22132257:249693 -k1,8534:30502262,22132257:249692 -k1,8534:32227169,22132257:249692 -k1,8534:32583029,22132257:0 -) -(1,8535:7202902,22973745:25380127,513147,134348 -k1,8534:9640441,22973745:243394 -k1,8534:12785769,22973745:243394 -k1,8534:14662976,22973745:243394 -k1,8534:15774722,22973745:243394 -k1,8534:17117810,22973745:243394 -k1,8534:19523237,22973745:243394 -k1,8534:21433867,22973745:243394 -k1,8534:22208758,22973745:243394 -k1,8534:23827753,22973745:243394 -k1,8534:27992166,22973745:243394 -k1,8534:29748786,22973745:243394 -k1,8534:30608218,22973745:243394 -k1,8534:31266411,22973745:243350 -k1,8535:32583029,22973745:0 -) -(1,8535:7202902,23815233:25380127,513147,134348 -k1,8534:10693077,23815233:241555 -k1,8534:12006800,23815233:241554 -k1,8534:12779852,23815233:241555 -k1,8534:15798823,23815233:241555 -k1,8534:16656415,23815233:241554 -k1,8534:18599940,23815233:241555 -k1,8534:22014093,23815233:241555 -k1,8534:23401872,23815233:241554 -k1,8534:25773347,23815233:241555 -k1,8534:26917333,23815233:241555 -k1,8534:29820304,23815233:241554 -k1,8534:30721151,23815233:241555 -k1,8534:32583029,23815233:0 -) -(1,8535:7202902,24656721:25380127,473825,115847 -g1,8534:8769212,24656721 -g1,8534:9499938,24656721 -(1,8534:9499938,24656721:0,452978,115847 -r1,8564:11968475,24656721:2468537,568825,115847 -k1,8534:9499938,24656721:-2468537 -) -(1,8534:9499938,24656721:2468537,452978,115847 -k1,8534:9499938,24656721:3277 -h1,8534:11965198,24656721:0,411205,112570 -) -k1,8535:32583029,24656721:20440884 -g1,8535:32583029,24656721 -) -v1,8538:6630773,26022497:0,393216,0 -(1,8543:6630773,40849379:25952256,15220098,0 -g1,8543:6630773,40849379 -g1,8543:6303093,40849379 -r1,8564:6401397,40849379:98304,15220098,0 -g1,8543:6600626,40849379 -g1,8543:6797234,40849379 -[1,8543:6797234,40849379:25785795,15220098,0 -(1,8539:6797234,26417600:25785795,788319,218313 -(1,8538:6797234,26417600:0,788319,218313 -r1,8564:7917113,26417600:1119879,1006632,218313 -k1,8538:6797234,26417600:-1119879 -) -(1,8538:6797234,26417600:1119879,788319,218313 -) -k1,8538:8093956,26417600:176843 -k1,8538:8421636,26417600:327680 -k1,8538:10232359,26417600:181498 -k1,8538:13805278,26417600:176843 -k1,8538:15178809,26417600:176844 -k1,8538:16448137,26417600:176843 -k1,8538:17284272,26417600:176843 -k1,8538:21074116,26417600:176844 -k1,8538:23319275,26417600:176843 -k1,8538:24182281,26417600:176844 -k1,8538:25637731,26417600:176843 -k1,8538:26500737,26417600:176844 -k1,8538:29958312,26417600:176843 -k1,8539:32583029,26417600:0 -) -(1,8539:6797234,27259088:25785795,513147,134348 -k1,8538:8261526,27259088:196826 -k1,8538:9649798,27259088:196827 -k1,8538:13274157,27259088:196826 -k1,8538:14462543,27259088:196826 -k1,8538:16791912,27259088:196827 -k1,8538:17604776,27259088:196826 -k1,8538:20160243,27259088:196826 -k1,8538:21376155,27259088:196827 -k1,8538:23069168,27259088:196826 -k1,8538:24134346,27259088:196826 -k1,8538:25945980,27259088:196827 -k1,8538:31116333,27259088:196826 -k1,8538:32583029,27259088:0 -) -(1,8539:6797234,28100576:25785795,513147,134348 -k1,8538:7633105,28100576:184443 -k1,8538:9849819,28100576:184443 -k1,8538:11225706,28100576:184442 -k1,8538:12061577,28100576:184443 -k1,8538:15261331,28100576:184443 -k1,8538:16058536,28100576:184443 -k1,8538:16598839,28100576:184443 -k1,8538:18236870,28100576:184442 -k1,8538:20020391,28100576:184443 -k1,8538:20832669,28100576:184443 -k1,8538:23554666,28100576:184443 -k1,8538:24197206,28100576:184443 -k1,8538:24913146,28100576:184443 -k1,8538:26163859,28100576:184442 -k1,8538:28708909,28100576:184443 -k1,8538:29841003,28100576:184443 -k1,8538:32583029,28100576:0 -) -(1,8539:6797234,28942064:25785795,505283,126483 -k1,8538:8477717,28942064:184296 -k1,8538:9313442,28942064:184297 -k1,8538:10245504,28942064:184296 -k1,8538:14112924,28942064:184297 -k1,8538:15058748,28942064:184296 -k1,8538:15598905,28942064:184297 -k1,8538:18859461,28942064:184296 -k1,8538:20235203,28942064:184297 -k1,8538:21704005,28942064:184296 -k1,8538:22346399,28942064:184297 -k1,8538:24871641,28942064:184296 -k1,8538:26075023,28942064:184297 -k1,8538:28501961,28942064:184296 -k1,8538:31117644,28942064:184297 -k1,8538:32583029,28942064:0 -) -(1,8539:6797234,29783552:25785795,505283,134348 -k1,8538:8521133,29783552:153001 -k1,8538:11746462,29783552:153001 -k1,8538:13090908,29783552:153001 -k1,8538:14960298,29783552:153002 -k1,8538:17274676,29783552:153001 -k1,8538:18902892,29783552:153001 -k1,8538:19707321,29783552:153001 -k1,8538:20608088,29783552:153001 -k1,8538:23482144,29783552:153001 -k1,8538:24286574,29783552:153002 -k1,8538:27163907,29783552:153001 -k1,8538:28508353,29783552:153001 -k1,8538:29680439,29783552:153001 -k1,8538:32583029,29783552:0 -) -(1,8539:6797234,30625040:25785795,513147,102891 -k1,8538:7659839,30625040:203313 -k1,8538:8882237,30625040:203313 -k1,8538:10581737,30625040:203313 -k1,8538:15932248,30625040:203313 -k1,8538:16763396,30625040:203313 -k1,8538:18568409,30625040:203313 -k1,8538:20469104,30625040:203313 -k1,8538:21087256,30625040:203309 -k1,8538:22786756,30625040:203313 -k1,8538:24122531,30625040:203313 -k1,8538:25073610,30625040:203313 -k1,8538:29039345,30625040:203313 -k1,8538:31391584,30625040:203313 -k1,8538:32583029,30625040:0 -) -(1,8539:6797234,31466528:25785795,513147,134348 -k1,8538:9806798,31466528:174477 -k1,8538:11368672,31466528:174477 -k1,8538:13142227,31466528:174477 -k1,8538:13944540,31466528:174478 -k1,8538:15870794,31466528:174477 -k1,8538:17742653,31466528:174477 -k1,8538:18375227,31466528:174477 -k1,8538:20550518,31466528:174477 -k1,8538:21376423,31466528:174477 -k1,8538:24753645,31466528:174478 -k1,8538:25283982,31466528:174477 -k1,8538:27153220,31466528:174477 -k1,8538:31391584,31466528:174477 -k1,8538:32583029,31466528:0 -) -(1,8539:6797234,32308016:25785795,505283,126483 -g1,8538:7647891,32308016 -g1,8538:9562853,32308016 -g1,8538:10220179,32308016 -g1,8538:13049368,32308016 -g1,8538:13900025,32308016 -g1,8538:17355083,32308016 -k1,8539:32583029,32308016:14596179 -g1,8539:32583029,32308016 -) -(1,8541:6797234,33149504:25785795,513147,134348 -h1,8540:6797234,33149504:983040,0,0 -k1,8540:9816751,33149504:204090 -k1,8540:11012402,33149504:204091 -k1,8540:12717266,33149504:204090 -k1,8540:16178496,33149504:204091 -k1,8540:17330237,33149504:204090 -k1,8540:19792043,33149504:204091 -k1,8540:20410972,33149504:204086 -k1,8540:22284919,33149504:204090 -k1,8540:23982576,33149504:204091 -k1,8540:24872828,33149504:204090 -k1,8540:26233629,33149504:204091 -k1,8540:27050481,33149504:204090 -$1,8540:27050481,33149504 -k1,8540:29026391,33149504:0 -k1,8540:29421573,33149504:0 -k1,8540:29816755,33149504:0 -k1,8540:30211937,33149504:0 -k1,8540:32187847,33149504:0 -k1,8541:32583029,33149504:0 -) -(1,8541:6797234,33990992:25785795,513147,134349 -k1,8540:10353872,33990992:0 -k1,8540:10749054,33990992:0 -$1,8540:12329782,33990992 -k1,8540:12759894,33990992:256442 -k1,8540:14610173,33990992:256443 -k1,8540:18075913,33990992:256442 -k1,8540:19774803,33990992:256443 -k1,8540:22264712,33990992:256442 -k1,8540:25496489,33990992:256442 -k1,8540:26956173,33990992:256443 -k1,8540:30139453,33990992:256442 -k1,8540:30927393,33990992:256443 -k1,8540:31835263,33990992:256442 -k1,8540:32583029,33990992:0 -) -(1,8541:6797234,34832480:25785795,513147,134348 -k1,8540:10242930,34832480:164964 -k1,8540:11023931,34832480:164963 -k1,8540:12207980,34832480:164964 -k1,8540:13873717,34832480:164963 -k1,8540:15369062,34832480:164964 -k1,8540:15889885,34832480:164963 -k1,8540:17634922,34832480:164964 -k1,8540:18459178,34832480:164964 -k1,8540:22952139,34832480:164963 -k1,8540:23799988,34832480:164964 -k1,8540:25354314,34832480:164963 -k1,8540:28303247,34832480:164964 -k1,8540:29151095,34832480:164963 -k1,8540:30782755,34832480:164964 -k1,8541:32583029,34832480:0 -) -(1,8541:6797234,35673968:25785795,513147,134348 -g1,8540:8362889,35673968 -g1,8540:9221410,35673968 -g1,8540:10191342,35673968 -g1,8540:14432832,35673968 -k1,8541:32583028,35673968:16884040 -g1,8541:32583028,35673968 -) -(1,8543:6797234,36515456:25785795,513147,134348 -h1,8542:6797234,36515456:983040,0,0 -k1,8542:9843479,36515456:279970 -k1,8542:12381164,36515456:279970 -k1,8542:14330990,36515456:279969 -k1,8542:16346353,36515456:279970 -k1,8542:16982183,36515456:279970 -k1,8542:20542885,36515456:279970 -k1,8542:22323629,36515456:279970 -k1,8542:23551249,36515456:279969 -k1,8542:27258752,36515456:279970 -k1,8542:28730167,36515456:279970 -k1,8542:32583029,36515456:0 -) -(1,8543:6797234,37356944:25785795,513147,134348 -k1,8542:9801113,37356944:227774 -k1,8542:12886912,37356944:227774 -k1,8542:15626026,37356944:227774 -k1,8542:17922116,37356944:227774 -k1,8542:19885283,37356944:227774 -k1,8542:23690667,37356944:227774 -k1,8542:25109886,37356944:227774 -k1,8542:28618392,37356944:227774 -k1,8542:31227089,37356944:227774 -k1,8543:32583029,37356944:0 -) -(1,8543:6797234,38198432:25785795,505283,134348 -k1,8542:10069082,38198432:381055 -k1,8542:11641583,38198432:381056 -k1,8542:14210230,38198432:381055 -k1,8542:16793295,38198432:381055 -k1,8542:21236928,38198432:381056 -k1,8542:22234021,38198432:381055 -k1,8542:25932508,38198432:381055 -k1,8542:28011602,38198432:381056 -k1,8542:30864675,38198432:381055 -k1,8542:32583029,38198432:0 -) -(1,8543:6797234,39039920:25785795,513147,126483 -k1,8542:9527697,39039920:373133 -k1,8542:13294939,39039920:373132 -k1,8542:14615723,39039920:373133 -k1,8542:17713188,39039920:373133 -k1,8542:18299138,39039920:372958 -k1,8542:20147486,39039920:373133 -k1,8542:22035155,39039920:373132 -k1,8542:23059716,39039920:373133 -k1,8542:24180615,39039920:373133 -k1,8542:25239910,39039920:373133 -k1,8542:28893774,39039920:373132 -k1,8542:29953069,39039920:373133 -k1,8542:32583029,39039920:0 -) -(1,8543:6797234,39881408:25785795,513147,134348 -k1,8542:10672596,39881408:250566 -k1,8542:11942247,39881408:250566 -k1,8542:14075662,39881408:250566 -k1,8542:15908267,39881408:250566 -k1,8542:16774871,39881408:250566 -k1,8542:18228678,39881408:250566 -k1,8542:20977476,39881408:250566 -k1,8542:22621993,39881408:250566 -k1,8542:24248160,39881408:250566 -k1,8542:26215114,39881408:250566 -k1,8542:29745757,39881408:250566 -k1,8542:31563944,39881408:250566 -k1,8542:32583029,39881408:0 -) -(1,8543:6797234,40722896:25785795,505283,126483 -g1,8542:11551215,40722896 -k1,8543:32583028,40722896:19357368 -g1,8543:32583028,40722896 -) -] -g1,8543:32583029,40849379 -) -h1,8543:6630773,40849379:0,0,0 -v1,8546:6630773,42215155:0,393216,0 -(1,8564:6630773,44338532:25952256,2516593,0 -g1,8564:6630773,44338532 -g1,8564:6303093,44338532 -r1,8564:6401397,44338532:98304,2516593,0 -g1,8564:6600626,44338532 -g1,8564:6797234,44338532 -[1,8564:6797234,44338532:25785795,2516593,0 -(1,8548:6797234,42647693:25785795,825754,196608 -(1,8546:6797234,42647693:0,825754,196608 -r1,8564:7890375,42647693:1093141,1022362,196608 -k1,8546:6797234,42647693:-1093141 -) -(1,8546:6797234,42647693:1093141,825754,196608 -) -k1,8546:8133910,42647693:243535 -k1,8546:9451839,42647693:327680 -k1,8546:11183697,42647693:243535 -k1,8546:11958728,42647693:243534 -k1,8546:12972966,42647693:243535 -k1,8546:15877918,42647693:243535 -k1,8546:16780745,42647693:243535 -k1,8546:18201306,42647693:243534 -k1,8546:19945615,42647693:243535 -k1,8546:20805188,42647693:243535 -k1,8546:21404583,42647693:243535 -k1,8546:23652863,42647693:243534 -k1,8546:25465330,42647693:243535 -k1,8546:28323752,42647693:243535 -k1,8546:29016819,42647693:243490 -k1,8546:30747366,42647693:243535 -k1,8548:32583029,42647693:0 -) -(1,8548:6797234,43489181:25785795,505283,134349 -$1,8546:7004328,43489181 -k1,8546:8980238,43489181:0 -k1,8546:9375420,43489181:0 -k1,8546:9770602,43489181:0 -k1,8546:10165784,43489181:0 -k1,8546:12536876,43489181:0 -k1,8546:12932058,43489181:0 -k1,8546:15303150,43489181:0 -k1,8546:15698332,43489181:0 -k1,8546:16488696,43489181:0 -k1,8546:16883878,43489181:0 -k1,8546:20835698,43489181:0 -k1,8546:21230880,43489181:0 -k1,8546:23601972,43489181:0 -k1,8546:23997154,43489181:0 -$1,8546:25182700,43489181 -k1,8547:25857590,43489181:294126 -k1,8547:27343161,43489181:294126 -k1,8547:28863467,43489181:294127 -k1,8547:30176678,43489181:294126 -k1,8547:31966991,43489181:294126 -k1,8547:32583029,43489181:0 -) -(1,8548:6797234,44330669:25785795,505283,7863 -g1,8547:8015548,44330669 -g1,8547:10185445,44330669 -g1,8547:12253105,44330669 -g1,8547:13177162,44330669 -g1,8547:14660897,44330669 -g1,8547:15318223,44330669 -g1,8547:18290936,44330669 -g1,8547:20360563,44330669 -g1,8547:21211220,44330669 -k1,8548:32583029,44330669:9785838 -g1,8548:32583029,44330669 -) -] -g1,8564:32583029,44338532 -) -] -(1,8564:32583029,45706769:0,0,0 -g1,8564:32583029,45706769 -) -) -] -(1,8564:6630773,47279633:25952256,0,0 -h1,8564:6630773,47279633:25952256,0,0 -) -] -(1,8564:4262630,4025873:0,0,0 -[1,8564:-473656,4025873:0,0,0 -(1,8564:-473656,-710413:0,0,0 -(1,8564:-473656,-710413:0,0,0 -g1,8564:-473656,-710413 -) -g1,8564:-473656,-710413 -) -] -) -] -!25412 -}142 -!12 -{143 -[1,8578:4262630,47279633:28320399,43253760,0 -(1,8578:4262630,4025873:0,0,0 -[1,8578:-473656,4025873:0,0,0 -(1,8578:-473656,-710413:0,0,0 -(1,8578:-473656,-644877:0,0,0 -k1,8578:-473656,-644877:-65536 +g1,6148:36675916,2439708 +(1,6148:36675916,2439708:1179648,16384,0 +r1,7798:37855564,2439708:1179648,16384,0 ) -(1,8578:-473656,4736287:0,0,0 -k1,8578:-473656,4736287:5209943 ) -g1,8578:-473656,-710413 +k1,7798:3078556,2439708:-34777008 ) ] +[1,7798:3078558,4812305:0,0,0 +(1,7798:3078558,49800853:0,16384,2228224 +k1,7798:1358238,49800853:-1720320 +(1,6148:1358238,49800853:1720320,16384,2228224 +(1,6148:1358238,49800853:1179648,16384,0 +r1,7798:2537886,49800853:1179648,16384,0 ) -[1,8578:6630773,47279633:25952256,43253760,0 -[1,8578:6630773,4812305:25952256,786432,0 -(1,8578:6630773,4812305:25952256,505283,134348 -(1,8578:6630773,4812305:25952256,505283,134348 -g1,8578:3078558,4812305 -[1,8578:3078558,4812305:0,0,0 -(1,8578:3078558,2439708:0,1703936,0 -k1,8578:1358238,2439708:-1720320 -(1,8393:1358238,2439708:1720320,1703936,0 -(1,8393:1358238,2439708:1179648,16384,0 -r1,8578:2537886,2439708:1179648,16384,0 -) -g1,8393:3062174,2439708 -(1,8393:3062174,2439708:16384,1703936,0 -[1,8393:3062174,2439708:25952256,1703936,0 -(1,8393:3062174,1915420:25952256,1179648,0 -(1,8393:3062174,1915420:16384,1179648,0 -r1,8578:3078558,1915420:16384,1179648,0 +g1,6148:3062174,49800853 +(1,6148:3062174,52029077:16384,1703936,0 +[1,6148:3062174,52029077:25952256,1703936,0 +(1,6148:3062174,51504789:25952256,1179648,0 +(1,6148:3062174,51504789:16384,1179648,0 +r1,7798:3078558,51504789:16384,1179648,0 ) -k1,8393:29014430,1915420:25935872 -g1,8393:29014430,1915420 +k1,6148:29014430,51504789:25935872 +g1,6148:29014430,51504789 ) ] ) ) ) ] -[1,8578:3078558,4812305:0,0,0 -(1,8578:3078558,2439708:0,1703936,0 -g1,8578:29030814,2439708 -g1,8578:36135244,2439708 -(1,8393:36135244,2439708:1720320,1703936,0 -(1,8393:36135244,2439708:16384,1703936,0 -[1,8393:36135244,2439708:25952256,1703936,0 -(1,8393:36135244,1915420:25952256,1179648,0 -(1,8393:36135244,1915420:16384,1179648,0 -r1,8578:36151628,1915420:16384,1179648,0 +[1,7798:3078558,4812305:0,0,0 +(1,7798:3078558,49800853:0,16384,2228224 +g1,7798:29030814,49800853 +g1,7798:36135244,49800853 +(1,6148:36135244,49800853:1720320,16384,2228224 +(1,6148:36135244,52029077:16384,1703936,0 +[1,6148:36135244,52029077:25952256,1703936,0 +(1,6148:36135244,51504789:25952256,1179648,0 +(1,6148:36135244,51504789:16384,1179648,0 +r1,7798:36151628,51504789:16384,1179648,0 +) +k1,6148:62087500,51504789:25935872 +g1,6148:62087500,51504789 +) +] +) +g1,6148:36675916,49800853 +(1,6148:36675916,49800853:1179648,16384,0 +r1,7798:37855564,49800853:1179648,16384,0 +) +) +k1,7798:3078556,49800853:-34777008 +) +] +g1,7798:6630773,4812305 +g1,7798:6630773,4812305 +g1,7798:8364200,4812305 +g1,7798:10765439,4812305 +k1,7798:31387651,4812305:20622212 +) +) +] +[1,7798:6630773,45706769:25952256,40108032,0 +(1,7798:6630773,45706769:25952256,40108032,0 +(1,7798:6630773,45706769:0,0,0 +g1,7798:6630773,45706769 +) +[1,7798:6630773,45706769:25952256,40108032,0 +v1,7722:6630773,6254097:0,393216,0 +(1,7722:6630773,9668486:25952256,3807605,0 +g1,7722:6630773,9668486 +g1,7722:6237557,9668486 +r1,7798:6368629,9668486:131072,3807605,0 +g1,7722:6567858,9668486 +g1,7722:6764466,9668486 +[1,7722:6764466,9668486:25818563,3807605,0 +v1,7709:6764466,6254097:0,393216,0 +(1,7719:6764466,9471878:25818563,3610997,196608 +g1,7719:6764466,9471878 +g1,7719:6764466,9471878 +g1,7719:6567858,9471878 +(1,7719:6567858,9471878:0,3610997,196608 +r1,7798:32779637,9471878:26211779,3807605,196608 +k1,7719:6567857,9471878:-26211780 +) +(1,7719:6567858,9471878:26211779,3610997,196608 +[1,7719:6764466,9471878:25818563,3414389,0 +(1,7711:6764466,6488534:25818563,431045,112852 +(1,7710:6764466,6488534:0,0,0 +g1,7710:6764466,6488534 +g1,7710:6764466,6488534 +g1,7710:6436786,6488534 +(1,7710:6436786,6488534:0,0,0 +) +g1,7710:6764466,6488534 +) +k1,7711:6764466,6488534:0 +g1,7711:10747913,6488534 +g1,7711:11411821,6488534 +g1,7711:17718946,6488534 +g1,7711:18714808,6488534 +g1,7711:19378716,6488534 +g1,7711:26017795,6488534 +g1,7711:27345611,6488534 +g1,7711:28009519,6488534 +h1,7711:29669289,6488534:0,0,0 +k1,7711:32583029,6488534:2913740 +g1,7711:32583029,6488534 +) +(1,7718:6764466,7304461:25818563,407923,106246 +(1,7713:6764466,7304461:0,0,0 +g1,7713:6764466,7304461 +g1,7713:6764466,7304461 +g1,7713:6436786,7304461 +(1,7713:6436786,7304461:0,0,0 +) +g1,7713:6764466,7304461 +) +g1,7718:7760328,7304461 +g1,7718:8092282,7304461 +g1,7718:8424236,7304461 +g1,7718:8756190,7304461 +g1,7718:9088144,7304461 +g1,7718:9420098,7304461 +g1,7718:12075730,7304461 +g1,7718:12407684,7304461 +g1,7718:12739638,7304461 +g1,7718:13071592,7304461 +g1,7718:13403546,7304461 +h1,7718:13735500,7304461:0,0,0 +k1,7718:32583028,7304461:18847528 +g1,7718:32583028,7304461 +) +(1,7718:6764466,7989316:25818563,407923,9908 +h1,7718:6764466,7989316:0,0,0 +g1,7718:7760328,7989316 +g1,7718:8424236,7989316 +g1,7718:8756190,7989316 +g1,7718:9088144,7989316 +g1,7718:9420098,7989316 +g1,7718:9752052,7989316 +g1,7718:12075730,7989316 +h1,7718:13735500,7989316:0,0,0 +k1,7718:32583028,7989316:18847528 +g1,7718:32583028,7989316 +) +(1,7718:6764466,8674171:25818563,424439,9908 +h1,7718:6764466,8674171:0,0,0 +g1,7718:7760328,8674171 +g1,7718:8424236,8674171 +g1,7718:12075729,8674171 +h1,7718:13735499,8674171:0,0,0 +k1,7718:32583029,8674171:18847530 +g1,7718:32583029,8674171 +) +(1,7718:6764466,9359026:25818563,424439,112852 +h1,7718:6764466,9359026:0,0,0 +g1,7718:7760328,9359026 +g1,7718:8424236,9359026 +g1,7718:8756190,9359026 +g1,7718:12075729,9359026 +h1,7718:13735499,9359026:0,0,0 +k1,7718:32583029,9359026:18847530 +g1,7718:32583029,9359026 +) +] +) +g1,7719:32583029,9471878 +g1,7719:6764466,9471878 +g1,7719:6764466,9471878 +g1,7719:32583029,9471878 +g1,7719:32583029,9471878 +) +h1,7719:6764466,9668486:0,0,0 +] +g1,7722:32583029,9668486 +) +h1,7722:6630773,9668486:0,0,0 +v1,7725:6630773,10533566:0,393216,0 +(1,7742:6630773,18515535:25952256,8375185,0 +g1,7742:6630773,18515535 +g1,7742:6237557,18515535 +r1,7798:6368629,18515535:131072,8375185,0 +g1,7742:6567858,18515535 +g1,7742:6764466,18515535 +[1,7742:6764466,18515535:25818563,8375185,0 +(1,7726:6764466,10948108:25818563,807758,219026 +(1,7725:6764466,10948108:0,807758,219026 +r1,7798:7908217,10948108:1143751,1026784,219026 +k1,7725:6764466,10948108:-1143751 +) +(1,7725:6764466,10948108:1143751,807758,219026 +) +g1,7725:8107446,10948108 +g1,7725:8435126,10948108 +g1,7725:10143649,10948108 +g1,7725:11007413,10948108 +g1,7725:14882556,10948108 +g1,7725:17816603,10948108 +g1,7725:21040319,10948108 +g1,7725:22858287,10948108 +g1,7725:23427139,10948108 +g1,7725:25042601,10948108 +g1,7725:27188905,10948108 +g1,7725:28241413,10948108 +k1,7725:32583029,10948108:2055065 +g1,7726:32583029,10948108 +) +(1,7726:6764466,11813188:25818563,513147,134348 +k1,7725:7757771,11813188:164275 +k1,7725:11489826,11813188:164275 +k1,7725:14495742,11813188:164275 +k1,7725:15528369,11813188:164275 +k1,7725:16796926,11813188:164275 +k1,7725:18053686,11813188:164275 +(1,7725:18053686,11813188:0,452978,122846 +r1,7798:21929070,11813188:3875384,575824,122846 +k1,7725:18053686,11813188:-3875384 +) +(1,7725:18053686,11813188:3875384,452978,122846 +k1,7725:18053686,11813188:3277 +h1,7725:21925793,11813188:0,411205,112570 +) +k1,7725:22093346,11813188:164276 +k1,7725:23489698,11813188:164275 +k1,7725:25932660,11813188:164275 +h1,7725:27475378,11813188:0,0,0 +k1,7725:27639653,11813188:164275 +k1,7725:28613298,11813188:164275 +k1,7725:30275726,11813188:164275 +h1,7725:31471103,11813188:0,0,0 +k1,7725:31635378,11813188:164275 +k1,7725:32583029,11813188:0 +) +(1,7726:6764466,12678268:25818563,505283,134348 +g1,7725:7734398,12678268 +g1,7725:11320528,12678268 +g1,7725:14504267,12678268 +g1,7725:16438889,12678268 +g1,7725:19218270,12678268 +k1,7726:32583029,12678268:11011361 +g1,7726:32583029,12678268 +) +v1,7728:6764466,13363123:0,393216,0 +(1,7738:6764466,16580904:25818563,3610997,196608 +g1,7738:6764466,16580904 +g1,7738:6764466,16580904 +g1,7738:6567858,16580904 +(1,7738:6567858,16580904:0,3610997,196608 +r1,7798:32779637,16580904:26211779,3807605,196608 +k1,7738:6567857,16580904:-26211780 +) +(1,7738:6567858,16580904:26211779,3610997,196608 +[1,7738:6764466,16580904:25818563,3414389,0 +(1,7730:6764466,13597560:25818563,431045,112852 +(1,7729:6764466,13597560:0,0,0 +g1,7729:6764466,13597560 +g1,7729:6764466,13597560 +g1,7729:6436786,13597560 +(1,7729:6436786,13597560:0,0,0 +) +g1,7729:6764466,13597560 +) +k1,7730:6764466,13597560:0 +k1,7730:10637262,13597560:221303 +k1,7730:11190519,13597560:221303 +k1,7730:13071592,13597560:221303 +k1,7730:13624849,13597560:221303 +k1,7730:17829600,13597560:221303 +k1,7730:22366304,13597560:221303 +k1,7730:23251515,13597560:221303 +k1,7730:23804772,13597560:221303 +k1,7730:30333200,13597560:221303 +k1,7730:31550365,13597560:221303 +k1,7730:32103622,13597560:221303 +h1,7730:33763392,13597560:0,0,0 +k1,7730:33763392,13597560:0 +k1,7730:33763392,13597560:0 +) +(1,7737:6764466,14413487:25818563,424439,112852 +(1,7732:6764466,14413487:0,0,0 +g1,7732:6764466,14413487 +g1,7732:6764466,14413487 +g1,7732:6436786,14413487 +(1,7732:6436786,14413487:0,0,0 +) +g1,7732:6764466,14413487 +) +g1,7737:7760328,14413487 +g1,7737:8092282,14413487 +g1,7737:8424236,14413487 +g1,7737:8756190,14413487 +g1,7737:9088144,14413487 +g1,7737:9420098,14413487 +g1,7737:12075730,14413487 +g1,7737:16391131,14413487 +g1,7737:20374578,14413487 +g1,7737:24689979,14413487 +h1,7737:28341472,14413487:0,0,0 +k1,7737:32583029,14413487:4241557 +g1,7737:32583029,14413487 +) +(1,7737:6764466,15098342:25818563,407923,9908 +h1,7737:6764466,15098342:0,0,0 +g1,7737:7760328,15098342 +g1,7737:8424236,15098342 +g1,7737:8756190,15098342 +g1,7737:9088144,15098342 +g1,7737:9420098,15098342 +g1,7737:9752052,15098342 +g1,7737:12075730,15098342 +g1,7737:12407684,15098342 +g1,7737:12739638,15098342 +g1,7737:13071592,15098342 +g1,7737:13403546,15098342 +g1,7737:13735500,15098342 +g1,7737:14067454,15098342 +g1,7737:14399408,15098342 +g1,7737:16391132,15098342 +g1,7737:16723086,15098342 +g1,7737:17055040,15098342 +g1,7737:17386994,15098342 +g1,7737:17718948,15098342 +g1,7737:18050902,15098342 +g1,7737:18382856,15098342 +g1,7737:20374580,15098342 +g1,7737:20706534,15098342 +g1,7737:21038488,15098342 +g1,7737:21370442,15098342 +g1,7737:21702396,15098342 +g1,7737:22034350,15098342 +g1,7737:22366304,15098342 +g1,7737:22698258,15098342 +g1,7737:24689982,15098342 +g1,7737:25021936,15098342 +g1,7737:25353890,15098342 +g1,7737:25685844,15098342 +g1,7737:26017798,15098342 +g1,7737:26349752,15098342 +g1,7737:26681706,15098342 +h1,7737:28341476,15098342:0,0,0 +k1,7737:32583029,15098342:4241553 +g1,7737:32583029,15098342 +) +(1,7737:6764466,15783197:25818563,424439,9908 +h1,7737:6764466,15783197:0,0,0 +g1,7737:7760328,15783197 +g1,7737:8424236,15783197 +g1,7737:12075729,15783197 +g1,7737:12407683,15783197 +g1,7737:12739637,15783197 +g1,7737:13071591,15783197 +g1,7737:13403545,15783197 +g1,7737:13735499,15783197 +g1,7737:14067453,15783197 +g1,7737:14399407,15783197 +g1,7737:16391131,15783197 +g1,7737:16723085,15783197 +g1,7737:17055039,15783197 +g1,7737:17386993,15783197 +g1,7737:17718947,15783197 +g1,7737:18050901,15783197 +g1,7737:18382855,15783197 +g1,7737:20374579,15783197 +g1,7737:20706533,15783197 +g1,7737:21038487,15783197 +g1,7737:21370441,15783197 +g1,7737:21702395,15783197 +g1,7737:22034349,15783197 +g1,7737:22366303,15783197 +g1,7737:22698257,15783197 +g1,7737:24689981,15783197 +g1,7737:25021935,15783197 +g1,7737:25353889,15783197 +g1,7737:25685843,15783197 +g1,7737:26017797,15783197 +g1,7737:26349751,15783197 +g1,7737:26681705,15783197 +h1,7737:28341475,15783197:0,0,0 +k1,7737:32583029,15783197:4241554 +g1,7737:32583029,15783197 +) +(1,7737:6764466,16468052:25818563,424439,112852 +h1,7737:6764466,16468052:0,0,0 +g1,7737:7760328,16468052 +g1,7737:8424236,16468052 +g1,7737:8756190,16468052 +g1,7737:12075729,16468052 +g1,7737:12407683,16468052 +g1,7737:12739637,16468052 +g1,7737:13071591,16468052 +g1,7737:13403545,16468052 +g1,7737:13735499,16468052 +g1,7737:14067453,16468052 +g1,7737:14399407,16468052 +g1,7737:16391131,16468052 +g1,7737:16723085,16468052 +g1,7737:17055039,16468052 +g1,7737:17386993,16468052 +g1,7737:17718947,16468052 +g1,7737:18050901,16468052 +g1,7737:18382855,16468052 +g1,7737:20374579,16468052 +g1,7737:20706533,16468052 +g1,7737:21038487,16468052 +g1,7737:21370441,16468052 +g1,7737:21702395,16468052 +g1,7737:22034349,16468052 +g1,7737:22366303,16468052 +g1,7737:22698257,16468052 +g1,7737:24689981,16468052 +g1,7737:25021935,16468052 +g1,7737:25353889,16468052 +g1,7737:25685843,16468052 +g1,7737:26017797,16468052 +g1,7737:26349751,16468052 +g1,7737:26681705,16468052 +h1,7737:28341475,16468052:0,0,0 +k1,7737:32583029,16468052:4241554 +g1,7737:32583029,16468052 +) +] +) +g1,7738:32583029,16580904 +g1,7738:6764466,16580904 +g1,7738:6764466,16580904 +g1,7738:32583029,16580904 +g1,7738:32583029,16580904 +) +h1,7738:6764466,16777512:0,0,0 +(1,7742:6764466,17642592:25818563,505283,126483 +h1,7741:6764466,17642592:983040,0,0 +k1,7741:8994117,17642592:204589 +k1,7741:10895433,17642592:204589 +k1,7741:12489385,17642592:204589 +k1,7741:13380135,17642592:204588 +k1,7741:14603809,17642592:204589 +k1,7741:16183999,17642592:204589 +k1,7741:20445922,17642592:204589 +k1,7741:23161851,17642592:204589 +k1,7741:23897937,17642592:204589 +(1,7741:23897937,17642592:0,452978,115847 +r1,7798:26366474,17642592:2468537,568825,115847 +k1,7741:23897937,17642592:-2468537 +) +(1,7741:23897937,17642592:2468537,452978,115847 +k1,7741:23897937,17642592:3277 +h1,7741:26363197,17642592:0,411205,112570 +) +k1,7741:26571062,17642592:204588 +k1,7741:27644003,17642592:204589 +k1,7741:29617409,17642592:204589 +k1,7741:31297213,17642592:204589 +k1,7741:32583029,17642592:0 +) +(1,7742:6764466,18507672:25818563,513147,7863 +g1,7741:8476921,18507672 +g1,7741:11219602,18507672 +g1,7741:14108429,18507672 +g1,7741:14993820,18507672 +g1,7741:17268574,18507672 +k1,7742:32583029,18507672:13272353 +g1,7742:32583029,18507672 +) +] +g1,7742:32583029,18515535 +) +h1,7742:6630773,18515535:0,0,0 +(1,7745:6630773,19380615:25952256,513147,122846 +h1,7744:6630773,19380615:983040,0,0 +k1,7744:9715136,19380615:268936 +k1,7744:10515568,19380615:268935 +k1,7744:12070320,19380615:268936 +k1,7744:12695116,19380615:268936 +k1,7744:17575165,19380615:268936 +(1,7744:17575165,19380615:0,452978,122846 +r1,7798:21450549,19380615:3875384,575824,122846 +k1,7744:17575165,19380615:-3875384 +) +(1,7744:17575165,19380615:3875384,452978,122846 +k1,7744:17575165,19380615:3277 +h1,7744:21447272,19380615:0,411205,112570 +) +k1,7744:21719484,19380615:268935 +k1,7744:24442743,19380615:268936 +k1,7744:25601658,19380615:268936 +k1,7744:28908187,19380615:268935 +k1,7744:31961092,19380615:268936 +k1,7745:32583029,19380615:0 +) +(1,7745:6630773,20245695:25952256,513147,134348 +k1,7744:9692900,20245695:207378 +k1,7744:10891837,20245695:207377 +k1,7744:14189238,20245695:207378 +k1,7744:15012653,20245695:207377 +k1,7744:17080598,20245695:207378 +k1,7744:17904014,20245695:207378 +k1,7744:20390078,20245695:207377 +h1,7744:21759125,20245695:0,0,0 +k1,7744:21966503,20245695:207378 +k1,7744:22983251,20245695:207378 +k1,7744:24688781,20245695:207377 +h1,7744:25884158,20245695:0,0,0 +k1,7744:26472300,20245695:207378 +k1,7744:27307512,20245695:207377 +(1,7744:27307512,20245695:0,452978,122846 +r1,7798:31182896,20245695:3875384,575824,122846 +k1,7744:27307512,20245695:-3875384 +) +(1,7744:27307512,20245695:3875384,452978,122846 +k1,7744:27307512,20245695:3277 +h1,7744:31179619,20245695:0,411205,112570 +) +k1,7744:31563944,20245695:207378 +k1,7744:32583029,20245695:0 +) +(1,7745:6630773,21110775:25952256,513147,134348 +k1,7744:7852364,21110775:147456 +k1,7744:9606107,21110775:147456 +k1,7744:11053141,21110775:147455 +k1,7744:12529013,21110775:147456 +k1,7744:13335761,21110775:147456 +k1,7744:14502302,21110775:147456 +k1,7744:17193209,21110775:147455 +k1,7744:20202622,21110775:147456 +k1,7744:21369163,21110775:147456 +k1,7744:24027959,21110775:147456 +k1,7744:24826843,21110775:147456 +k1,7744:28542078,21110775:147455 +k1,7744:29880979,21110775:147456 +k1,7744:31047520,21110775:147456 +k1,7744:32583029,21110775:0 +) +(1,7745:6630773,21975855:25952256,513147,134348 +g1,7744:8436289,21975855 +g1,7744:9935097,21975855 +g1,7744:11581362,21975855 +g1,7744:12799676,21975855 +g1,7744:14892895,21975855 +g1,7744:16605350,21975855 +g1,7744:17456007,21975855 +g1,7744:19069503,21975855 +g1,7744:20287817,21975855 +g1,7744:21876409,21975855 +g1,7744:24118395,21975855 +g1,7744:28528312,21975855 +k1,7745:32583029,21975855:2241991 +g1,7745:32583029,21975855 +) +v1,7747:6630773,22660710:0,393216,0 +(1,7756:6630773,25087389:25952256,2819895,196608 +g1,7756:6630773,25087389 +g1,7756:6630773,25087389 +g1,7756:6434165,25087389 +(1,7756:6434165,25087389:0,2819895,196608 +r1,7798:32779637,25087389:26345472,3016503,196608 +k1,7756:6434165,25087389:-26345472 +) +(1,7756:6434165,25087389:26345472,2819895,196608 +[1,7756:6630773,25087389:25952256,2623287,0 +(1,7749:6630773,22895147:25952256,431045,112852 +(1,7748:6630773,22895147:0,0,0 +g1,7748:6630773,22895147 +g1,7748:6630773,22895147 +g1,7748:6303093,22895147 +(1,7748:6303093,22895147:0,0,0 +) +g1,7748:6630773,22895147 +) +k1,7749:6630773,22895147:0 +g1,7749:10946174,22895147 +g1,7749:11610082,22895147 +g1,7749:12605944,22895147 +g1,7749:13933760,22895147 +g1,7749:14597668,22895147 +g1,7749:16589392,22895147 +g1,7749:18249162,22895147 +g1,7749:18913070,22895147 +h1,7749:20572840,22895147:0,0,0 +k1,7749:32583029,22895147:12010189 +g1,7749:32583029,22895147 +) +(1,7755:6630773,23711074:25952256,407923,0 +(1,7751:6630773,23711074:0,0,0 +g1,7751:6630773,23711074 +g1,7751:6630773,23711074 +g1,7751:6303093,23711074 +(1,7751:6303093,23711074:0,0,0 +) +g1,7751:6630773,23711074 +) +g1,7755:7626635,23711074 +g1,7755:7958589,23711074 +g1,7755:8290543,23711074 +g1,7755:8954451,23711074 +h1,7755:9618359,23711074:0,0,0 +k1,7755:32583029,23711074:22964670 +g1,7755:32583029,23711074 +) +(1,7755:6630773,24395929:25952256,407923,9908 +h1,7755:6630773,24395929:0,0,0 +g1,7755:7626635,24395929 +g1,7755:8290543,24395929 +g1,7755:8954451,24395929 +g1,7755:9286405,24395929 +h1,7755:9618359,24395929:0,0,0 +k1,7755:32583029,24395929:22964670 +g1,7755:32583029,24395929 +) +(1,7755:6630773,25080784:25952256,424439,6605 +h1,7755:6630773,25080784:0,0,0 +g1,7755:7626635,25080784 +g1,7755:8290543,25080784 +g1,7755:8954451,25080784 +g1,7755:9286405,25080784 +h1,7755:9618359,25080784:0,0,0 +k1,7755:32583029,25080784:22964670 +g1,7755:32583029,25080784 +) +] +) +g1,7756:32583029,25087389 +g1,7756:6630773,25087389 +g1,7756:6630773,25087389 +g1,7756:32583029,25087389 +g1,7756:32583029,25087389 +) +h1,7756:6630773,25283997:0,0,0 +(1,7761:6630773,25968852:25952256,505283,7863 +h1,7759:6630773,25968852:983040,0,0 +g1,7759:8766591,25968852 +g1,7759:10070102,25968852 +g1,7759:13837111,25968852 +g1,7759:15686537,25968852 +g1,7759:17328213,25968852 +g1,7759:18684152,25968852 +g1,7759:21266270,25968852 +g1,7759:22078261,25968852 +g1,7759:22633350,25968852 +g1,7759:24431657,25968852 +k1,7761:32583029,25968852:8151372 +g1,7761:32583029,25968852 +) +v1,7761:6630773,26653707:0,393216,0 +(1,7770:6630773,29083689:25952256,2823198,196608 +g1,7770:6630773,29083689 +g1,7770:6630773,29083689 +g1,7770:6434165,29083689 +(1,7770:6434165,29083689:0,2823198,196608 +r1,7798:32779637,29083689:26345472,3019806,196608 +k1,7770:6434165,29083689:-26345472 +) +(1,7770:6434165,29083689:26345472,2823198,196608 +[1,7770:6630773,29083689:25952256,2626590,0 +(1,7763:6630773,26888144:25952256,431045,112852 +(1,7762:6630773,26888144:0,0,0 +g1,7762:6630773,26888144 +g1,7762:6630773,26888144 +g1,7762:6303093,26888144 +(1,7762:6303093,26888144:0,0,0 +) +g1,7762:6630773,26888144 +) +k1,7763:6630773,26888144:0 +g1,7763:13269852,26888144 +g1,7763:14597668,26888144 +g1,7763:15261576,26888144 +g1,7763:16257438,26888144 +g1,7763:17585254,26888144 +g1,7763:18249162,26888144 +g1,7763:20240886,26888144 +g1,7763:21900656,26888144 +g1,7763:22564564,26888144 +h1,7763:24224334,26888144:0,0,0 +k1,7763:32583029,26888144:8358695 +g1,7763:32583029,26888144 +) +(1,7769:6630773,27704071:25952256,407923,0 +(1,7765:6630773,27704071:0,0,0 +g1,7765:6630773,27704071 +g1,7765:6630773,27704071 +g1,7765:6303093,27704071 +(1,7765:6303093,27704071:0,0,0 +) +g1,7765:6630773,27704071 +) +g1,7769:7626635,27704071 +g1,7769:7958589,27704071 +g1,7769:8290543,27704071 +g1,7769:8954451,27704071 +g1,7769:9950313,27704071 +g1,7769:10282267,27704071 +g1,7769:10614221,27704071 +g1,7769:10946175,27704071 +g1,7769:11278129,27704071 +g1,7769:11610083,27704071 +g1,7769:11942037,27704071 +h1,7769:12605945,27704071:0,0,0 +k1,7769:32583029,27704071:19977084 +g1,7769:32583029,27704071 +) +(1,7769:6630773,28388926:25952256,407923,9908 +h1,7769:6630773,28388926:0,0,0 +g1,7769:7626635,28388926 +g1,7769:8290543,28388926 +g1,7769:8954451,28388926 +g1,7769:9286405,28388926 +g1,7769:9950313,28388926 +h1,7769:12605944,28388926:0,0,0 +k1,7769:32583028,28388926:19977084 +g1,7769:32583028,28388926 +) +(1,7769:6630773,29073781:25952256,424439,9908 +h1,7769:6630773,29073781:0,0,0 +g1,7769:7626635,29073781 +g1,7769:8290543,29073781 +g1,7769:8954451,29073781 +g1,7769:9286405,29073781 +g1,7769:9950313,29073781 +h1,7769:12605944,29073781:0,0,0 +k1,7769:32583028,29073781:19977084 +g1,7769:32583028,29073781 +) +] +) +g1,7770:32583029,29083689 +g1,7770:6630773,29083689 +g1,7770:6630773,29083689 +g1,7770:32583029,29083689 +g1,7770:32583029,29083689 +) +h1,7770:6630773,29280297:0,0,0 +(1,7775:6630773,29965152:25952256,513147,134348 +h1,7773:6630773,29965152:983040,0,0 +k1,7773:8230593,29965152:139023 +k1,7773:9135733,29965152:139024 +k1,7773:10293841,29965152:139023 +k1,7773:13146056,29965152:139024 +k1,7773:14351350,29965152:139023 +k1,7773:16003600,29965152:139024 +k1,7773:17090274,29965152:139023 +k1,7773:20112227,29965152:139024 +k1,7773:21242810,29965152:139023 +k1,7773:22921930,29965152:139024 +k1,7773:24769477,29965152:139023 +k1,7773:25559929,29965152:139024 +k1,7773:26718037,29965152:139023 +k1,7773:29552557,29965152:139024 +k1,7773:31896867,29965152:139023 +k1,7773:32583029,29965152:0 +) +(1,7775:6630773,30650007:25952256,513147,134348 +k1,7773:9901540,30650007:198439 +k1,7773:10751407,30650007:198439 +(1,7773:10751407,30650007:0,414482,115847 +r1,7798:11813096,30650007:1061689,530329,115847 +k1,7773:10751407,30650007:-1061689 +) +(1,7773:10751407,30650007:1061689,414482,115847 +k1,7773:10751407,30650007:3277 +h1,7773:11809819,30650007:0,411205,112570 +) +k1,7773:12011535,30650007:198439 +k1,7773:13229058,30650007:198438 +k1,7773:15970949,30650007:198439 +k1,7773:17273670,30650007:198439 +k1,7773:18219875,30650007:198439 +k1,7773:21595499,30650007:198439 +k1,7773:23529331,30650007:198439 +(1,7773:23529331,30650007:0,414482,115847 +r1,7798:23887597,30650007:358266,530329,115847 +k1,7773:23529331,30650007:-358266 +) +(1,7773:23529331,30650007:358266,414482,115847 +k1,7773:23529331,30650007:3277 +h1,7773:23884320,30650007:0,411205,112570 +) +k1,7773:24086035,30650007:198438 +k1,7773:25678425,30650007:198439 +k1,7773:28605128,30650007:198439 +k1,7773:29869838,30650007:198439 +k1,7773:32583029,30650007:0 +) +(1,7775:6630773,31334862:25952256,513147,126483 +g1,7773:8900940,31334862 +g1,7773:10844082,31334862 +g1,7773:11852681,31334862 +g1,7773:13070995,31334862 +g1,7773:14303072,31334862 +g1,7773:15161593,31334862 +g1,7773:16379907,31334862 +g1,7773:19596414,31334862 +k1,7775:32583029,31334862:12986615 +g1,7775:32583029,31334862 +) +v1,7775:6630773,32019717:0,393216,0 +(1,7784:6630773,34449699:25952256,2823198,196608 +g1,7784:6630773,34449699 +g1,7784:6630773,34449699 +g1,7784:6434165,34449699 +(1,7784:6434165,34449699:0,2823198,196608 +r1,7798:32779637,34449699:26345472,3019806,196608 +k1,7784:6434165,34449699:-26345472 +) +(1,7784:6434165,34449699:26345472,2823198,196608 +[1,7784:6630773,34449699:25952256,2626590,0 +(1,7777:6630773,32254154:25952256,431045,112852 +(1,7776:6630773,32254154:0,0,0 +g1,7776:6630773,32254154 +g1,7776:6630773,32254154 +g1,7776:6303093,32254154 +(1,7776:6303093,32254154:0,0,0 +) +g1,7776:6630773,32254154 +) +k1,7777:6630773,32254154:0 +g1,7777:10614220,32254154 +g1,7777:11278128,32254154 +g1,7777:12273990,32254154 +g1,7777:13601806,32254154 +g1,7777:14265714,32254154 +g1,7777:16257438,32254154 +g1,7777:17917208,32254154 +g1,7777:18581116,32254154 +h1,7777:20240886,32254154:0,0,0 +k1,7777:32583029,32254154:12342143 +g1,7777:32583029,32254154 +) +(1,7783:6630773,33070081:25952256,407923,0 +(1,7779:6630773,33070081:0,0,0 +g1,7779:6630773,33070081 +g1,7779:6630773,33070081 +g1,7779:6303093,33070081 +(1,7779:6303093,33070081:0,0,0 +) +g1,7779:6630773,33070081 +) +g1,7783:7626635,33070081 +g1,7783:7958589,33070081 +g1,7783:8290543,33070081 +g1,7783:8954451,33070081 +g1,7783:9950313,33070081 +g1,7783:10282267,33070081 +g1,7783:10614221,33070081 +g1,7783:10946175,33070081 +g1,7783:11278129,33070081 +g1,7783:11610083,33070081 +g1,7783:11942037,33070081 +h1,7783:12605945,33070081:0,0,0 +k1,7783:32583029,33070081:19977084 +g1,7783:32583029,33070081 +) +(1,7783:6630773,33754936:25952256,407923,9908 +h1,7783:6630773,33754936:0,0,0 +g1,7783:7626635,33754936 +g1,7783:8290543,33754936 +g1,7783:8954451,33754936 +g1,7783:9286405,33754936 +g1,7783:9950313,33754936 +h1,7783:12605944,33754936:0,0,0 +k1,7783:32583028,33754936:19977084 +g1,7783:32583028,33754936 +) +(1,7783:6630773,34439791:25952256,424439,9908 +h1,7783:6630773,34439791:0,0,0 +g1,7783:7626635,34439791 +g1,7783:8290543,34439791 +g1,7783:8954451,34439791 +g1,7783:9286405,34439791 +g1,7783:9950313,34439791 +h1,7783:12605944,34439791:0,0,0 +k1,7783:32583028,34439791:19977084 +g1,7783:32583028,34439791 +) +] +) +g1,7784:32583029,34449699 +g1,7784:6630773,34449699 +g1,7784:6630773,34449699 +g1,7784:32583029,34449699 +g1,7784:32583029,34449699 +) +h1,7784:6630773,34646307:0,0,0 +v1,7788:6630773,35511387:0,393216,0 +(1,7789:6630773,36913855:25952256,1795684,0 +g1,7789:6630773,36913855 +g1,7789:6237557,36913855 +r1,7798:6368629,36913855:131072,1795684,0 +g1,7789:6567858,36913855 +g1,7789:6764466,36913855 +[1,7789:6764466,36913855:25818563,1795684,0 +(1,7789:6764466,35925929:25818563,807758,219026 +(1,7788:6764466,35925929:0,807758,219026 +r1,7798:7908217,35925929:1143751,1026784,219026 +k1,7788:6764466,35925929:-1143751 +) +(1,7788:6764466,35925929:1143751,807758,219026 +) +k1,7788:8140783,35925929:232566 +k1,7788:8468463,35925929:327680 +k1,7788:11490897,35925929:232566 +(1,7788:11490897,35925929:0,452978,122846 +r1,7798:15366281,35925929:3875384,575824,122846 +k1,7788:11490897,35925929:-3875384 +) +(1,7788:11490897,35925929:3875384,452978,122846 +k1,7788:11490897,35925929:3277 +h1,7788:15363004,35925929:0,411205,112570 +) +k1,7788:15598847,35925929:232566 +k1,7788:16935694,35925929:232565 +k1,7788:17916026,35925929:232566 +k1,7788:19434408,35925929:232566 +k1,7788:21180200,35925929:232566 +k1,7788:22064194,35925929:232566 +k1,7788:25371054,35925929:232566 +k1,7788:27029027,35925929:232565 +k1,7788:29106431,35925929:232566 +k1,7788:30728360,35925929:232566 +k1,7788:32583029,35925929:0 +) +(1,7789:6764466,36791009:25818563,505283,122846 +g1,7788:7773065,36791009 +g1,7788:9397702,36791009 +g1,7788:12354031,36791009 +g1,7788:13785337,36791009 +(1,7788:13785337,36791009:0,452978,122846 +r1,7798:19067568,36791009:5282231,575824,122846 +k1,7788:13785337,36791009:-5282231 +) +(1,7788:13785337,36791009:5282231,452978,122846 +k1,7788:13785337,36791009:3277 +h1,7788:19064291,36791009:0,411205,112570 +) +k1,7789:32583029,36791009:13134697 +g1,7789:32583029,36791009 +) +] +g1,7789:32583029,36913855 +) +h1,7789:6630773,36913855:0,0,0 +(1,7791:6630773,39030673:25952256,555811,147783 +(1,7791:6630773,39030673:2450326,534184,12975 +g1,7791:6630773,39030673 +g1,7791:9081099,39030673 +) +g1,7791:13947148,39030673 +g1,7791:17258945,39030673 +g1,7791:18826173,39030673 +k1,7791:32583029,39030673:11966871 +g1,7791:32583029,39030673 +) +(1,7794:6630773,40288969:25952256,513147,134348 +k1,7793:7630634,40288969:181972 +k1,7793:9206556,40288969:181971 +k1,7793:12342236,40288969:181972 +k1,7793:13183499,40288969:181971 +k1,7793:15673649,40288969:181972 +k1,7793:17047065,40288969:181971 +k1,7793:18726535,40288969:181972 +k1,7793:19559934,40288969:181971 +k1,7793:21982582,40288969:181972 +k1,7793:23183638,40288969:181971 +k1,7793:25979841,40288969:181972 +k1,7793:26821104,40288969:181971 +k1,7793:29716267,40288969:181972 +k1,7793:30581123,40288969:181971 +k1,7793:31966991,40288969:181972 +k1,7793:32583029,40288969:0 +) +(1,7794:6630773,41154049:25952256,513147,134348 +k1,7793:7190965,41154049:204332 +k1,7793:8784660,41154049:204332 +k1,7793:10865287,41154049:204331 +k1,7793:11937971,41154049:204332 +k1,7793:13234788,41154049:204332 +k1,7793:14458205,41154049:204332 +k1,7793:17877078,41154049:204332 +k1,7793:20828023,41154049:204331 +k1,7793:22223800,41154049:204332 +k1,7793:25167537,41154049:204332 +k1,7793:26133397,41154049:204332 +k1,7793:28075743,41154049:204331 +k1,7793:28962960,41154049:204332 +k1,7793:31955194,41154049:204332 +k1,7793:32583029,41154049:0 +) +(1,7794:6630773,42019129:25952256,513147,134348 +k1,7793:7204011,42019129:217378 +k1,7793:10867927,42019129:217378 +k1,7793:13218501,42019129:217377 +k1,7793:14929445,42019129:217378 +k1,7793:15832985,42019129:217378 +k1,7793:17439726,42019129:217378 +k1,7793:19863700,42019129:217377 +k1,7793:21100163,42019129:217378 +k1,7793:22623674,42019129:217378 +k1,7793:24590208,42019129:217378 +k1,7793:28771202,42019129:217377 +k1,7793:29640008,42019129:217378 +k1,7793:31391584,42019129:217378 +k1,7793:32583029,42019129:0 +) +(1,7794:6630773,42884209:25952256,505283,7863 +g1,7793:7849087,42884209 +g1,7793:10289647,42884209 +g1,7793:11140304,42884209 +k1,7794:32583029,42884209:18555864 +g1,7794:32583029,42884209 +) +(1,7796:6630773,43749289:25952256,513147,134348 +h1,7795:6630773,43749289:983040,0,0 +k1,7795:9092154,43749289:281654 +k1,7795:10975507,43749289:281653 +k1,7795:13105276,43749289:281654 +k1,7795:14624904,43749289:281653 +k1,7795:15565850,43749289:281654 +k1,7795:18731087,43749289:281653 +k1,7795:20031826,43749289:281654 +k1,7795:22052805,43749289:281653 +k1,7795:22993751,43749289:281654 +k1,7795:25988595,43749289:281653 +k1,7795:28480123,43749289:281654 +k1,7795:30295975,43749289:281654 +k1,7795:31193666,43749289:281653 +k1,7795:32583029,43749289:0 +) +(1,7796:6630773,44614369:25952256,513147,134348 +k1,7795:9004184,44614369:166814 +k1,7795:10569536,44614369:166814 +k1,7795:13469857,44614369:166814 +k1,7795:14828117,44614369:166815 +k1,7795:17181867,44614369:166814 +k1,7795:17880178,44614369:166814 +k1,7795:18698420,44614369:166814 +k1,7795:19957719,44614369:166814 +k1,7795:24265098,44614369:166814 +k1,7795:26036890,44614369:166815 +k1,7795:27072056,44614369:166814 +k1,7795:28961812,44614369:166814 +k1,7795:30147711,44614369:166814 +k1,7795:32583029,44614369:0 +) +(1,7796:6630773,45479449:25952256,505283,134348 +k1,7795:9443981,45479449:198977 +k1,7795:10834403,45479449:198977 +k1,7795:12912954,45479449:198978 +k1,7795:15726162,45479449:198977 +k1,7795:16793491,45479449:198977 +k1,7795:18096750,45479449:198977 +k1,7795:19388213,45479449:198978 +k1,7795:21970079,45479449:198977 +k1,7795:24237372,45479449:198977 +k1,7795:25119234,45479449:198977 +k1,7795:28262745,45479449:198978 +k1,7795:29147884,45479449:198977 +k1,7795:31773659,45479449:198977 +k1,7795:32583029,45479449:0 +) +] +(1,7798:32583029,45706769:0,0,0 +g1,7798:32583029,45706769 +) +) +] +(1,7798:6630773,47279633:25952256,0,0 +h1,7798:6630773,47279633:25952256,0,0 +) +] +(1,7798:4262630,4025873:0,0,0 +[1,7798:-473656,4025873:0,0,0 +(1,7798:-473656,-710413:0,0,0 +(1,7798:-473656,-710413:0,0,0 +g1,7798:-473656,-710413 +) +g1,7798:-473656,-710413 +) +] +) +] +!30919 +}118 +Input:1043:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1044:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1045:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1046:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1047:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1048:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1049:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1050:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1051:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1052:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1053:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1054:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1055:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1056:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1057:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1422 +{119 +[1,7893:4262630,47279633:28320399,43253760,0 +(1,7893:4262630,4025873:0,0,0 +[1,7893:-473656,4025873:0,0,0 +(1,7893:-473656,-710413:0,0,0 +(1,7893:-473656,-644877:0,0,0 +k1,7893:-473656,-644877:-65536 ) -k1,8393:62087500,1915420:25935872 -g1,8393:62087500,1915420 +(1,7893:-473656,4736287:0,0,0 +k1,7893:-473656,4736287:5209943 +) +g1,7893:-473656,-710413 ) ] ) -g1,8393:36675916,2439708 -(1,8393:36675916,2439708:1179648,16384,0 -r1,8578:37855564,2439708:1179648,16384,0 +[1,7893:6630773,47279633:25952256,43253760,0 +[1,7893:6630773,4812305:25952256,786432,0 +(1,7893:6630773,4812305:25952256,505283,11795 +(1,7893:6630773,4812305:25952256,505283,11795 +g1,7893:3078558,4812305 +[1,7893:3078558,4812305:0,0,0 +(1,7893:3078558,2439708:0,1703936,0 +k1,7893:1358238,2439708:-1720320 +(1,6148:1358238,2439708:1720320,1703936,0 +(1,6148:1358238,2439708:1179648,16384,0 +r1,7893:2537886,2439708:1179648,16384,0 ) +g1,6148:3062174,2439708 +(1,6148:3062174,2439708:16384,1703936,0 +[1,6148:3062174,2439708:25952256,1703936,0 +(1,6148:3062174,1915420:25952256,1179648,0 +(1,6148:3062174,1915420:16384,1179648,0 +r1,7893:3078558,1915420:16384,1179648,0 ) -k1,8578:3078556,2439708:-34777008 +k1,6148:29014430,1915420:25935872 +g1,6148:29014430,1915420 ) ] -[1,8578:3078558,4812305:0,0,0 -(1,8578:3078558,49800853:0,16384,2228224 -k1,8578:1358238,49800853:-1720320 -(1,8393:1358238,49800853:1720320,16384,2228224 -(1,8393:1358238,49800853:1179648,16384,0 -r1,8578:2537886,49800853:1179648,16384,0 ) -g1,8393:3062174,49800853 -(1,8393:3062174,52029077:16384,1703936,0 -[1,8393:3062174,52029077:25952256,1703936,0 -(1,8393:3062174,51504789:25952256,1179648,0 -(1,8393:3062174,51504789:16384,1179648,0 -r1,8578:3078558,51504789:16384,1179648,0 ) -k1,8393:29014430,51504789:25935872 -g1,8393:29014430,51504789 ) ] +[1,7893:3078558,4812305:0,0,0 +(1,7893:3078558,2439708:0,1703936,0 +g1,7893:29030814,2439708 +g1,7893:36135244,2439708 +(1,6148:36135244,2439708:1720320,1703936,0 +(1,6148:36135244,2439708:16384,1703936,0 +[1,6148:36135244,2439708:25952256,1703936,0 +(1,6148:36135244,1915420:25952256,1179648,0 +(1,6148:36135244,1915420:16384,1179648,0 +r1,7893:36151628,1915420:16384,1179648,0 ) -) +k1,6148:62087500,1915420:25935872 +g1,6148:62087500,1915420 ) ] -[1,8578:3078558,4812305:0,0,0 -(1,8578:3078558,49800853:0,16384,2228224 -g1,8578:29030814,49800853 -g1,8578:36135244,49800853 -(1,8393:36135244,49800853:1720320,16384,2228224 -(1,8393:36135244,52029077:16384,1703936,0 -[1,8393:36135244,52029077:25952256,1703936,0 -(1,8393:36135244,51504789:25952256,1179648,0 -(1,8393:36135244,51504789:16384,1179648,0 -r1,8578:36151628,51504789:16384,1179648,0 -) -k1,8393:62087500,51504789:25935872 -g1,8393:62087500,51504789 -) -] -) -g1,8393:36675916,49800853 -(1,8393:36675916,49800853:1179648,16384,0 -r1,8578:37855564,49800853:1179648,16384,0 ) +g1,6148:36675916,2439708 +(1,6148:36675916,2439708:1179648,16384,0 +r1,7893:37855564,2439708:1179648,16384,0 ) -k1,8578:3078556,49800853:-34777008 -) -] -g1,8578:6630773,4812305 -k1,8578:21643106,4812305:13816956 -g1,8578:23265777,4812305 -g1,8578:24088253,4812305 -g1,8578:28572226,4812305 -g1,8578:29981905,4812305 -) -) -] -[1,8578:6630773,45706769:25952256,40108032,0 -(1,8578:6630773,45706769:25952256,40108032,0 -(1,8578:6630773,45706769:0,0,0 -g1,8578:6630773,45706769 -) -[1,8578:6630773,45706769:25952256,40108032,0 -v1,8564:6630773,6254097:0,393216,0 -(1,8564:6630773,12588056:25952256,6727175,0 -g1,8564:6630773,12588056 -g1,8564:6303093,12588056 -r1,8578:6401397,12588056:98304,6727175,0 -g1,8564:6600626,12588056 -g1,8564:6797234,12588056 -[1,8564:6797234,12588056:25785795,6727175,0 -v1,8550:6797234,6254097:0,393216,0 -(1,8562:6797234,11867160:25785795,6006279,196608 -g1,8562:6797234,11867160 -g1,8562:6797234,11867160 -g1,8562:6600626,11867160 -(1,8562:6600626,11867160:0,6006279,196608 -r1,8578:32779637,11867160:26179011,6202887,196608 -k1,8562:6600625,11867160:-26179012 -) -(1,8562:6600626,11867160:26179011,6006279,196608 -[1,8562:6797234,11867160:25785795,5809671,0 -(1,8552:6797234,6461715:25785795,404226,107478 -(1,8551:6797234,6461715:0,0,0 -g1,8551:6797234,6461715 -g1,8551:6797234,6461715 -g1,8551:6469554,6461715 -(1,8551:6469554,6461715:0,0,0 -) -g1,8551:6797234,6461715 -) -g1,8552:7429526,6461715 -g1,8552:8377964,6461715 -g1,8552:9010256,6461715 -g1,8552:9642548,6461715 -k1,8552:9642548,6461715:14156 -h1,8552:11553578,6461715:0,0,0 -k1,8552:32583030,6461715:21029452 -g1,8552:32583030,6461715 -) -(1,8553:6797234,7127893:25785795,404226,107478 -h1,8553:6797234,7127893:0,0,0 -g1,8553:7429526,7127893 -g1,8553:8377964,7127893 -g1,8553:9010256,7127893 -g1,8553:9642548,7127893 -k1,8553:9642548,7127893:0 -h1,8553:11539422,7127893:0,0,0 -k1,8553:32583030,7127893:21043608 -g1,8553:32583030,7127893 -) -(1,8554:6797234,7794071:25785795,336593,7863 -h1,8554:6797234,7794071:0,0,0 -g1,8554:7429526,7794071 -k1,8554:7429526,7794071:0 -h1,8554:8061818,7794071:0,0,0 -k1,8554:32583030,7794071:24521212 -g1,8554:32583030,7794071 -) -(1,8555:6797234,8460249:25785795,328204,4718 -h1,8555:6797234,8460249:0,0,0 -g1,8555:7113380,8460249 -g1,8555:7429526,8460249 -g1,8555:7745672,8460249 -g1,8555:8061818,8460249 -g1,8555:8694110,8460249 -h1,8555:9010256,8460249:0,0,0 -k1,8555:32583028,8460249:23572772 -g1,8555:32583028,8460249 -) -(1,8556:6797234,9126427:25785795,404226,6290 -h1,8556:6797234,9126427:0,0,0 -h1,8556:7113380,9126427:0,0,0 -k1,8556:32583028,9126427:25469648 -g1,8556:32583028,9126427 -) -(1,8557:6797234,9792605:25785795,404226,7863 -h1,8557:6797234,9792605:0,0,0 -g1,8557:7429526,9792605 -g1,8557:8377964,9792605 -h1,8557:10907129,9792605:0,0,0 -k1,8557:32583029,9792605:21675900 -g1,8557:32583029,9792605 -) -(1,8558:6797234,10458783:25785795,404226,101187 -h1,8558:6797234,10458783:0,0,0 -g1,8558:7113380,10458783 -g1,8558:7429526,10458783 -g1,8558:7745672,10458783 -g1,8558:8061818,10458783 -g1,8558:8377964,10458783 -g1,8558:8694110,10458783 -k1,8558:8694110,10458783:0 -h1,8558:10590984,10458783:0,0,0 -k1,8558:32583028,10458783:21992044 -g1,8558:32583028,10458783 -) -(1,8559:6797234,11124961:25785795,404226,82312 -h1,8559:6797234,11124961:0,0,0 -g1,8559:9010254,11124961 -g1,8559:9958692,11124961 -h1,8559:12487857,11124961:0,0,0 -k1,8559:32583029,11124961:20095172 -g1,8559:32583029,11124961 -) -(1,8560:6797234,11791139:25785795,404226,76021 -h1,8560:6797234,11791139:0,0,0 -h1,8560:7113380,11791139:0,0,0 -k1,8560:32583028,11791139:25469648 -g1,8560:32583028,11791139 -) -] -) -g1,8562:32583029,11867160 -g1,8562:6797234,11867160 -g1,8562:6797234,11867160 -g1,8562:32583029,11867160 -g1,8562:32583029,11867160 -) -h1,8562:6797234,12063768:0,0,0 -] -g1,8564:32583029,12588056 -) -h1,8564:6630773,12588056:0,0,0 -(1,8567:6630773,13770213:25952256,513147,134348 -h1,8566:6630773,13770213:983040,0,0 -k1,8566:9026265,13770213:215765 -k1,8566:11260539,13770213:215765 -k1,8566:14605647,13770213:215764 -k1,8566:16676736,13770213:215765 -k1,8566:19226893,13770213:215765 -k1,8566:20830711,13770213:215765 -k1,8566:21402335,13770213:215764 -k1,8566:22648326,13770213:215765 -k1,8566:25798793,13770213:215765 -k1,8566:27171268,13770213:215765 -k1,8566:28491314,13770213:215764 -k1,8566:29475816,13770213:215765 -k1,8566:31966991,13770213:215765 -k1,8566:32583029,13770213:0 -) -(1,8567:6630773,14611701:25952256,513147,134348 -k1,8566:9891189,14611701:260178 -k1,8566:11170451,14611701:260177 -k1,8566:12760355,14611701:260178 -k1,8566:13679825,14611701:260178 -k1,8566:16160363,14611701:260178 -k1,8566:19814650,14611701:260177 -k1,8566:20836356,14611701:260178 -k1,8566:25312465,14611701:260178 -k1,8566:29635219,14611701:260177 -k1,8566:31086842,14611701:260178 -k1,8566:32583029,14611701:0 -) -(1,8567:6630773,15453189:25952256,513147,134348 -k1,8566:9762957,15453189:230905 -k1,8566:11185307,15453189:230905 -k1,8566:13151605,15453189:230905 -k1,8566:14148626,15453189:230905 -k1,8566:15398616,15453189:230905 -k1,8566:18326983,15453189:230905 -k1,8566:19217180,15453189:230905 -k1,8566:23189535,15453189:230905 -k1,8566:24887136,15453189:230905 -k1,8566:25777333,15453189:230905 -k1,8566:29213604,15453189:230905 -k1,8566:31422386,15453189:230905 -k1,8567:32583029,15453189:0 -) -(1,8567:6630773,16294677:25952256,513147,134348 -k1,8566:8821344,16294677:264468 -k1,8566:10277256,16294677:264467 -k1,8566:13835563,16294677:264468 -k1,8566:16110019,16294677:264467 -k1,8566:17393572,16294677:264468 -k1,8566:19641814,16294677:264467 -k1,8566:20565574,16294677:264468 -k1,8566:21849126,16294677:264467 -k1,8566:24118340,16294677:264468 -k1,8566:28576456,16294677:264467 -k1,8566:29602452,16294677:264468 -k1,8566:32583029,16294677:0 -) -(1,8567:6630773,17136165:25952256,513147,126483 -k1,8566:7904512,17136165:254654 -k1,8566:10332340,17136165:254654 -k1,8566:11246286,17136165:254654 -k1,8566:12520026,17136165:254655 -k1,8566:16576423,17136165:254654 -k1,8566:18022522,17136165:254654 -k1,8566:19296261,17136165:254654 -k1,8566:21047102,17136165:254654 -k1,8566:22907388,17136165:254654 -k1,8566:23778080,17136165:254654 -k1,8566:24388595,17136165:254655 -k1,8566:26963879,17136165:254654 -k1,8566:29214760,17136165:254654 -k1,8566:30947906,17136165:254654 -k1,8567:32583029,17136165:0 -) -(1,8567:6630773,17977653:25952256,513147,134348 -k1,8566:9884027,17977653:184858 -k1,8566:10937237,17977653:184858 -k1,8566:12226378,17977653:184859 -k1,8566:14554263,17977653:184858 -k1,8566:16023627,17977653:184858 -k1,8566:17227570,17977653:184858 -k1,8566:19585602,17977653:184858 -k1,8566:20762021,17977653:184859 -k1,8566:23099081,17977653:184858 -k1,8566:24303024,17977653:184858 -k1,8566:26330754,17977653:184858 -k1,8566:27174905,17977653:184859 -k1,8566:29882899,17977653:184858 -k1,8566:31086842,17977653:184858 -k1,8566:32583029,17977653:0 -) -(1,8567:6630773,18819141:25952256,505283,134348 -k1,8566:9028604,18819141:148635 -k1,8566:10558084,18819141:148636 -k1,8566:12895622,18819141:148635 -k1,8566:16683472,18819141:148636 -k1,8566:17483535,18819141:148635 -k1,8566:19021534,18819141:148636 -k1,8566:21724762,18819141:148635 -k1,8566:26782700,18819141:148636 -k1,8566:28816806,18819141:148635 -k1,8566:29496939,18819141:148636 -k1,8566:32583029,18819141:0 -) -(1,8567:6630773,19660629:25952256,513147,126483 -k1,8566:7173793,19660629:187160 -k1,8566:11014585,19660629:187160 -k1,8566:15132594,19660629:187160 -k1,8566:16267405,19660629:187160 -k1,8566:17586372,19660629:187160 -k1,8566:19162894,19660629:187159 -k1,8566:21904647,19660629:187160 -k1,8566:23558503,19660629:187160 -k1,8566:24361701,19660629:187160 -k1,8566:27539269,19660629:187160 -k1,8566:28917874,19660629:187160 -k1,8566:29721072,19660629:187160 -k1,8566:32583029,19660629:0 -) -(1,8567:6630773,20502117:25952256,505283,126483 -k1,8566:7339916,20502117:239250 -k1,8566:8110663,20502117:239250 -k1,8566:10979873,20502117:239250 -k1,8566:12285394,20502117:239250 -k1,8566:13900245,20502117:239250 -k1,8566:14790923,20502117:239250 -k1,8566:17350803,20502117:239250 -k1,8566:19472902,20502117:239250 -k1,8566:21624493,20502117:239250 -k1,8566:23009968,20502117:239250 -k1,8566:24452459,20502117:239250 -k1,8566:26022090,20502117:239250 -k1,8566:27333509,20502117:239250 -k1,8566:28858575,20502117:239250 -k1,8566:30980674,20502117:239250 -k1,8567:32583029,20502117:0 -) -(1,8567:6630773,21343605:25952256,505283,7863 -g1,8566:8684671,21343605 -g1,8566:10152677,21343605 -g1,8566:11817946,21343605 -g1,8566:13411126,21343605 -g1,8566:15307082,21343605 -k1,8567:32583029,21343605:15520893 -g1,8567:32583029,21343605 -) -(1,8569:6630773,22185093:25952256,513147,134348 -h1,8568:6630773,22185093:983040,0,0 -k1,8568:8417165,22185093:175517 -k1,8568:9611767,22185093:175517 -k1,8568:11603943,22185093:175518 -k1,8568:12438752,22185093:175517 -k1,8568:17140185,22185093:175517 -k1,8568:18518943,22185093:175517 -k1,8568:21678970,22185093:175517 -k1,8568:22385984,22185093:175517 -k1,8568:24429278,22185093:175518 -k1,8568:26863821,22185093:175517 -k1,8568:31391584,22185093:175517 -k1,8568:32583029,22185093:0 -) -(1,8569:6630773,23026581:25952256,513147,134348 -k1,8568:8035109,23026581:197163 -k1,8568:9538404,23026581:197162 -k1,8568:12752845,23026581:197163 -k1,8568:13711535,23026581:197162 -k1,8568:16203113,23026581:197163 -k1,8568:18365700,23026581:197162 -k1,8568:20735382,23026581:197163 -k1,8568:22733473,23026581:197162 -k1,8568:25489162,23026581:197163 -k1,8568:26632664,23026581:197162 -k1,8568:28122195,23026581:197161 -k1,8568:30738946,23026581:197162 -k1,8568:31563944,23026581:197163 -k1,8568:32583029,23026581:0 -) -(1,8569:6630773,23868069:25952256,513147,134348 -k1,8568:8278713,23868069:280859 -k1,8568:9226728,23868069:280859 -k1,8568:9922348,23868069:280777 -k1,8568:14729123,23868069:280859 -k1,8568:16029067,23868069:280859 -k1,8568:17616059,23868069:280859 -k1,8568:20423330,23868069:280858 -k1,8568:21363481,23868069:280859 -k1,8568:23903366,23868069:280859 -k1,8568:28536471,23868069:280859 -k1,8568:30024503,23868069:280859 -k1,8568:32583029,23868069:0 -) -(1,8569:6630773,24709557:25952256,505283,134348 -k1,8568:9721584,24709557:280628 -k1,8568:11887684,24709557:280629 -k1,8568:13269317,24709557:280628 -k1,8568:15059896,24709557:280629 -k1,8568:17508455,24709557:280628 -k1,8568:21457134,24709557:280629 -k1,8568:22499290,24709557:280628 -k1,8568:24618858,24709557:280629 -k1,8568:26085688,24709557:280628 -k1,8568:28341405,24709557:281117 -k1,8568:30002877,24709557:280628 -k1,8568:32583029,24709557:0 -) -(1,8569:6630773,25551045:25952256,513147,173670 -k1,8568:9672238,25551045:184751 -k1,8568:10876074,25551045:184751 -k1,8568:12153310,25551045:184751 -k1,8568:13005217,25551045:184751 -k1,8568:16492983,25551045:184751 -k1,8568:17360619,25551045:184751 -[1,8568:17489725,25551045:341312,473825,0 -(1,8568:17489725,25413026:341312,335806,0 -) -] -(1,8568:18057991,25724715:370934,473825,0 -) -k1,8568:21870817,25551045:184752 -k1,8568:23856497,25551045:184751 -k1,8568:24727410,25551045:184751 -k1,8568:25931246,25551045:184751 -k1,8568:28608331,25551045:184751 -k1,8568:31635378,25551045:184751 -k1,8568:32583029,25551045:0 -) -(1,8569:6630773,26392533:25952256,513147,134348 -k1,8568:7793272,26392533:143414 -k1,8568:10138697,26392533:143415 -k1,8568:13031346,26392533:143414 -k1,8568:14366206,26392533:143415 -k1,8568:15795436,26392533:143414 -k1,8568:18449535,26392533:143415 -k1,8568:19784394,26392533:143414 -k1,8568:21455453,26392533:143415 -k1,8568:23682912,26392533:143414 -k1,8568:27673946,26392533:143415 -k1,8568:28468788,26392533:143414 -k1,8568:30108390,26392533:143415 -k1,8569:32583029,26392533:0 -) -(1,8569:6630773,27234021:25952256,505283,7863 -k1,8568:10588072,27234021:191600 -k1,8568:11311168,27234021:191599 -k1,8568:12273471,27234021:191600 -k1,8568:15537398,27234021:191599 -k1,8568:16380426,27234021:191600 -k1,8568:19875040,27234021:191599 -k1,8568:21351146,27234021:191600 -k1,8568:23588779,27234021:191599 -k1,8568:24238476,27234021:191600 -k1,8568:26300473,27234021:191599 -k1,8568:27143501,27234021:191600 -k1,8568:29672769,27234021:191599 -k1,8568:30279204,27234021:191592 -k1,8568:31966991,27234021:191600 -k1,8568:32583029,27234021:0 -) -(1,8569:6630773,28075509:25952256,513147,134348 -k1,8568:10354384,28075509:190565 -k1,8568:11777027,28075509:190566 -$1,8568:11777027,28075509 -k1,8568:13357755,28075509:0 -k1,8568:13752937,28075509:0 -k1,8568:14148119,28075509:0 -k1,8568:14543301,28075509:0 -k1,8568:18099939,28075509:0 -k1,8568:18495121,28075509:0 -k1,8568:21261395,28075509:0 -k1,8568:21656577,28075509:0 -$1,8568:23237305,28075509 -k1,8568:23808634,28075509:190565 -k1,8568:24469092,28075509:190565 -k1,8568:25191154,28075509:190565 -k1,8568:26400805,28075509:190566 -k1,8568:28209454,28075509:190565 -k1,8568:29067175,28075509:190565 -k1,8568:29672575,28075509:190557 -k1,8568:32583029,28075509:0 -) -(1,8569:6630773,28916997:25952256,505283,134348 -k1,8568:8203637,28916997:288358 -k1,8568:11018409,28916997:288359 -k1,8568:14874547,28916997:288358 -k1,8568:16733803,28916997:288358 -k1,8568:18213607,28916997:288359 -k1,8568:21188286,28916997:288358 -k1,8568:25009690,28916997:288358 -k1,8568:29559854,28916997:288359 -k1,8568:31116989,28916997:288358 -k1,8568:32583029,28916997:0 -) -(1,8569:6630773,29758485:25952256,513147,134348 -k1,8568:10864325,29758485:159179 -k1,8568:13603657,29758485:159180 -k1,8568:16649042,29758485:159179 -k1,8568:20499865,29758485:159180 -k1,8568:21850489,29758485:159179 -k1,8568:23844677,29758485:159180 -k1,8568:24951507,29758485:159179 -k1,8568:29470142,29758485:159180 -k1,8568:30815523,29758485:159179 -k1,8568:32583029,29758485:0 -) -(1,8569:6630773,30599973:25952256,513147,134348 -k1,8568:7774317,30599973:164436 -k1,8568:8542994,30599973:164435 -k1,8568:9442159,30599973:164506 -k1,8568:11581402,30599973:164643 -k1,8568:13938673,30599973:164436 -k1,8568:14634606,30599973:164436 -k1,8568:15154901,30599973:164435 -k1,8568:17238231,30599973:164436 -k1,8568:20452057,30599973:164436 -k1,8568:22950229,30599973:164435 -k1,8568:23781821,30599973:164436 -k1,8568:24367555,30599973:170891 -k1,8568:27882846,30599973:164435 -k1,8568:31563944,30599973:164436 -k1,8568:32583029,30599973:0 -) -(1,8569:6630773,31441461:25952256,513147,126483 -k1,8568:9420086,31441461:196709 -k1,8568:10276087,31441461:196709 -k1,8568:11238912,31441461:196709 -k1,8568:13132348,31441461:196709 -k1,8568:16091400,31441461:196709 -k1,8568:18004497,31441461:196709 -k1,8568:18860497,31441461:196708 -k1,8568:21215962,31441461:196709 -k1,8568:25614184,31441461:196709 -k1,8568:26426931,31441461:196709 -k1,8568:29241147,31441461:196709 -k1,8568:30634543,31441461:196709 -k1,8568:31923737,31441461:196709 -k1,8568:32583029,31441461:0 -) -(1,8569:6630773,32282949:25952256,505283,134348 -g1,8568:8668941,32282949 -g1,8568:10059615,32282949 -g1,8568:12702681,32282949 -g1,8568:13433407,32282949 -g1,8568:14986610,32282949 -g1,8568:16464446,32282949 -g1,8568:19927368,32282949 -g1,8568:21394063,32282949 -g1,8568:22612377,32282949 -g1,8568:25235783,32282949 -k1,8569:32583029,32282949:6086333 -g1,8569:32583029,32282949 -) -(1,8571:6630773,33124437:25952256,505283,134348 -h1,8570:6630773,33124437:983040,0,0 -k1,8570:9225128,33124437:230471 -k1,8570:9987095,33124437:230470 -k1,8570:11283837,33124437:230471 -k1,8570:13747775,33124437:230471 -k1,8570:14748948,33124437:230470 -k1,8570:15394231,33124437:230440 -k1,8570:19976948,33124437:230471 -k1,8570:22691233,33124437:230470 -k1,8570:23607866,33124437:230471 -k1,8570:24296434,33124437:230471 -k1,8570:27384274,33124437:230470 -k1,8570:31966991,33124437:230471 -k1,8570:32583029,33124437:0 -) -(1,8571:6630773,33965925:25952256,505283,134348 -k1,8570:8048720,33965925:286140 -k1,8570:11350827,33965925:286140 -k1,8570:12561025,33965925:286140 -k1,8570:13866250,33965925:286140 -k1,8570:15854360,33965925:286140 -k1,8570:17920458,33965925:286140 -k1,8570:19409840,33965925:286141 -k1,8570:20227477,33965925:286140 -k1,8570:21284320,33965925:286140 -k1,8570:24744369,33965925:286140 -k1,8570:28239807,33965925:286140 -k1,8570:29860260,33965925:286140 -k1,8570:30797828,33965925:286140 -k1,8570:32583029,33965925:0 -) -(1,8571:6630773,34807413:25952256,505283,134348 -k1,8570:7930402,34807413:227460 -k1,8570:9436470,34807413:227461 -k1,8570:12753953,34807413:227460 -k1,8570:13597451,34807413:227460 -k1,8570:15526882,34807413:227461 -k1,8570:17666683,34807413:227460 -k1,8570:19085588,34807413:227460 -k1,8570:20581825,34807413:227460 -k1,8570:22275326,34807413:227461 -k1,8570:24062543,34807413:227460 -k1,8570:24906041,34807413:227460 -k1,8570:26152587,34807413:227461 -k1,8570:29134525,34807413:227460 -k1,8570:32583029,34807413:0 -) -(1,8571:6630773,35648901:25952256,513147,134348 -k1,8570:8172890,35648901:161273 -k1,8570:10217012,35648901:161273 -k1,8570:12133995,35648901:161273 -k1,8570:15275845,35648901:161273 -k1,8570:17796414,35648901:161273 -k1,8570:19058692,35648901:161273 -k1,8570:20729916,35648901:161274 -k1,8570:24044126,35648901:161273 -k1,8570:25940792,35648901:161273 -k1,8570:27941004,35648901:161273 -k1,8570:29293722,35648901:161273 -k1,8570:30474080,35648901:161273 -k1,8570:32583029,35648901:0 -) -(1,8571:6630773,36490389:25952256,513147,134349 -k1,8570:8336675,36490389:209715 -k1,8570:9494041,36490389:209715 -k1,8570:10722842,36490389:209716 -k1,8570:12514596,36490389:209715 -k1,8570:13255808,36490389:209715 -k1,8570:16249492,36490389:209715 -k1,8570:19017734,36490389:209716 -k1,8570:21485820,36490389:209715 -k1,8570:22308297,36490389:209715 -$1,8570:22308297,36490389 -k1,8570:24284207,36490389:0 -k1,8570:24679389,36490389:0 -k1,8570:25074571,36490389:0 -k1,8570:25469753,36490389:0 -k1,8570:27840845,36490389:0 -k1,8570:28236027,36490389:0 -k1,8570:29421573,36490389:0 -k1,8570:29816755,36490389:0 -k1,8570:32187847,36490389:0 -k1,8571:32583029,36490389:0 -) -(1,8571:6630773,37331877:25952256,505283,98314 -(1,8570:9397047,37430191:32768,0,0 -) -(1,8570:11405725,37430191:32768,0,0 -) -$1,8570:12624039,37331877 -k1,8571:32583029,37331877:19785320 -g1,8571:32583029,37331877 -) -(1,8572:6630773,39423137:25952256,555811,147783 -(1,8572:6630773,39423137:2450326,534184,12975 -g1,8572:6630773,39423137 -g1,8572:9081099,39423137 -) -g1,8572:13217601,39423137 -k1,8572:32583029,39423137:16902126 -g1,8572:32583029,39423137 -) -(1,8576:6630773,40657841:25952256,513147,134348 -k1,8575:7982031,40657841:154571 -k1,8575:9229088,40657841:154572 -k1,8575:10042951,40657841:154571 -k1,8575:11216607,40657841:154571 -k1,8575:12995817,40657841:154572 -k1,8575:14358216,40657841:154571 -k1,8575:15164215,40657841:154571 -k1,8575:17988068,40657841:154572 -k1,8575:18498499,40657841:154571 -k1,8575:21329561,40657841:154572 -k1,8575:22100170,40657841:154571 -k1,8575:25331001,40657841:154571 -k1,8575:28477947,40657841:154572 -k1,8575:29823963,40657841:154571 -k1,8575:32583029,40657841:0 -) -(1,8576:6630773,41499329:25952256,505283,134348 -k1,8575:9088233,41499329:201055 -k1,8575:9905326,41499329:201055 -k1,8575:11700217,41499329:201055 -k1,8575:13599310,41499329:201055 -k1,8575:14156225,41499329:201055 -k1,8575:15553967,41499329:201055 -k1,8575:17118172,41499329:201056 -k1,8575:18969424,41499329:201055 -k1,8575:22005566,41499329:201055 -k1,8575:22562481,41499329:201055 -k1,8575:24623448,41499329:201055 -k1,8575:25850141,41499329:201055 -k1,8575:28686399,41499329:201055 -k1,8575:29906539,41499329:201055 -k1,8575:32583029,41499329:0 -) -(1,8576:6630773,42340817:25952256,513147,134348 -k1,8575:7519550,42340817:229485 -k1,8575:8104895,42340817:229485 -k1,8575:9892171,42340817:229485 -k1,8575:10737694,42340817:229485 -k1,8575:11737882,42340817:229485 -k1,8575:17722739,42340817:229485 -k1,8575:21028485,42340817:229486 -k1,8575:23682802,42340817:229485 -k1,8575:24370384,42340817:229485 -k1,8575:25251297,42340817:229485 -k1,8575:29357237,42340817:229485 -k1,8575:30778167,42340817:229485 -k1,8575:32583029,42340817:0 -) -(1,8576:6630773,43182305:25952256,513147,134348 -k1,8575:9251104,43182305:269555 -k1,8575:12610681,43182305:269554 -k1,8575:13899321,43182305:269555 -k1,8575:15475008,43182305:269554 -k1,8575:18820823,43182305:269555 -k1,8575:20462046,43182305:269555 -k1,8575:21928287,43182305:269554 -k1,8575:23290327,43182305:269555 -k1,8575:24219174,43182305:269555 -k1,8575:25507813,43182305:269554 -k1,8575:27289939,43182305:269555 -k1,8575:28748971,43182305:269554 -k1,8575:29634564,43182305:269555 -k1,8576:32583029,43182305:0 -) -(1,8576:6630773,44023793:25952256,513147,134348 -k1,8575:7855792,44023793:234770 -k1,8575:10858147,44023793:234770 -k1,8575:12112002,44023793:234770 -k1,8575:13439257,44023793:234770 -k1,8575:14290065,44023793:234770 -k1,8575:17601095,44023793:234770 -k1,8575:20317714,44023793:234771 -k1,8575:21743929,44023793:234770 -k1,8575:26377476,44023793:234770 -k1,8575:27631331,44023793:234770 -k1,8575:29172234,44023793:234770 -k1,8575:30499489,44023793:234770 -k1,8575:31393551,44023793:234770 -k1,8575:32583029,44023793:0 -) -(1,8576:6630773,44865281:25952256,505283,134348 -k1,8575:7518654,44865281:271843 -k1,8575:11221308,44865281:271844 -k1,8575:13643387,44865281:271843 -k1,8575:14724600,44865281:271843 -k1,8575:16797373,44865281:271844 -k1,8575:19598906,44865281:271843 -k1,8575:20328846,44865281:271843 -k1,8575:24410297,44865281:271843 -k1,8575:25452844,44865281:271844 -k1,8575:29484487,44865281:271843 -k1,8575:32583029,44865281:0 -) -(1,8576:6630773,45706769:25952256,505283,134348 -g1,8575:9916092,45706769 -k1,8576:32583030,45706769:21296580 -g1,8576:32583030,45706769 -) -] -(1,8578:32583029,45706769:0,0,0 -g1,8578:32583029,45706769 -) -) -] -(1,8578:6630773,47279633:25952256,0,0 -h1,8578:6630773,47279633:25952256,0,0 -) -] -(1,8578:4262630,4025873:0,0,0 -[1,8578:-473656,4025873:0,0,0 -(1,8578:-473656,-710413:0,0,0 -(1,8578:-473656,-710413:0,0,0 -g1,8578:-473656,-710413 -) -g1,8578:-473656,-710413 -) -] -) -] -!23777 -}143 -Input:1160:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1161:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!200 -{144 -[1,8594:4262630,47279633:28320399,43253760,0 -(1,8594:4262630,4025873:0,0,0 -[1,8594:-473656,4025873:0,0,0 -(1,8594:-473656,-710413:0,0,0 -(1,8594:-473656,-644877:0,0,0 -k1,8594:-473656,-644877:-65536 -) -(1,8594:-473656,4736287:0,0,0 -k1,8594:-473656,4736287:5209943 ) -g1,8594:-473656,-710413 +k1,7893:3078556,2439708:-34777008 ) ] +[1,7893:3078558,4812305:0,0,0 +(1,7893:3078558,49800853:0,16384,2228224 +k1,7893:1358238,49800853:-1720320 +(1,6148:1358238,49800853:1720320,16384,2228224 +(1,6148:1358238,49800853:1179648,16384,0 +r1,7893:2537886,49800853:1179648,16384,0 ) -[1,8594:6630773,47279633:25952256,43253760,0 -[1,8594:6630773,4812305:25952256,786432,0 -(1,8594:6630773,4812305:25952256,485622,134348 -(1,8594:6630773,4812305:25952256,485622,134348 -g1,8594:3078558,4812305 -[1,8594:3078558,4812305:0,0,0 -(1,8594:3078558,2439708:0,1703936,0 -k1,8594:1358238,2439708:-1720320 -(1,8393:1358238,2439708:1720320,1703936,0 -(1,8393:1358238,2439708:1179648,16384,0 -r1,8594:2537886,2439708:1179648,16384,0 -) -g1,8393:3062174,2439708 -(1,8393:3062174,2439708:16384,1703936,0 -[1,8393:3062174,2439708:25952256,1703936,0 -(1,8393:3062174,1915420:25952256,1179648,0 -(1,8393:3062174,1915420:16384,1179648,0 -r1,8594:3078558,1915420:16384,1179648,0 +g1,6148:3062174,49800853 +(1,6148:3062174,52029077:16384,1703936,0 +[1,6148:3062174,52029077:25952256,1703936,0 +(1,6148:3062174,51504789:25952256,1179648,0 +(1,6148:3062174,51504789:16384,1179648,0 +r1,7893:3078558,51504789:16384,1179648,0 ) -k1,8393:29014430,1915420:25935872 -g1,8393:29014430,1915420 +k1,6148:29014430,51504789:25935872 +g1,6148:29014430,51504789 ) ] ) ) ) ] -[1,8594:3078558,4812305:0,0,0 -(1,8594:3078558,2439708:0,1703936,0 -g1,8594:29030814,2439708 -g1,8594:36135244,2439708 -(1,8393:36135244,2439708:1720320,1703936,0 -(1,8393:36135244,2439708:16384,1703936,0 -[1,8393:36135244,2439708:25952256,1703936,0 -(1,8393:36135244,1915420:25952256,1179648,0 -(1,8393:36135244,1915420:16384,1179648,0 -r1,8594:36151628,1915420:16384,1179648,0 +[1,7893:3078558,4812305:0,0,0 +(1,7893:3078558,49800853:0,16384,2228224 +g1,7893:29030814,49800853 +g1,7893:36135244,49800853 +(1,6148:36135244,49800853:1720320,16384,2228224 +(1,6148:36135244,52029077:16384,1703936,0 +[1,6148:36135244,52029077:25952256,1703936,0 +(1,6148:36135244,51504789:25952256,1179648,0 +(1,6148:36135244,51504789:16384,1179648,0 +r1,7893:36151628,51504789:16384,1179648,0 ) -k1,8393:62087500,1915420:25935872 -g1,8393:62087500,1915420 +k1,6148:62087500,51504789:25935872 +g1,6148:62087500,51504789 ) ] ) -g1,8393:36675916,2439708 -(1,8393:36675916,2439708:1179648,16384,0 -r1,8594:37855564,2439708:1179648,16384,0 +g1,6148:36675916,49800853 +(1,6148:36675916,49800853:1179648,16384,0 +r1,7893:37855564,49800853:1179648,16384,0 ) ) -k1,8594:3078556,2439708:-34777008 +k1,7893:3078556,49800853:-34777008 ) -] -[1,8594:3078558,4812305:0,0,0 -(1,8594:3078558,49800853:0,16384,2228224 -k1,8594:1358238,49800853:-1720320 -(1,8393:1358238,49800853:1720320,16384,2228224 -(1,8393:1358238,49800853:1179648,16384,0 -r1,8594:2537886,49800853:1179648,16384,0 +] +g1,7893:6630773,4812305 +k1,7893:24358918,4812305:16532768 +g1,7893:25981589,4812305 +g1,7893:26804065,4812305 +g1,7893:30302376,4812305 +) +) +] +[1,7893:6630773,45706769:25952256,40108032,0 +(1,7893:6630773,45706769:25952256,40108032,0 +(1,7893:6630773,45706769:0,0,0 +g1,7893:6630773,45706769 +) +[1,7893:6630773,45706769:25952256,40108032,0 +(1,7796:6630773,6254097:25952256,505283,134348 +k1,7795:7794995,6254097:145137 +k1,7795:11294920,6254097:145137 +k1,7795:12913305,6254097:145136 +k1,7795:15042217,6254097:145137 +k1,7795:15953470,6254097:145137 +k1,7795:18811798,6254097:145137 +k1,7795:19608362,6254097:145136 +k1,7795:20501265,6254097:145137 +k1,7795:23452654,6254097:145137 +k1,7795:25064487,6254097:145137 +k1,7795:26953536,6254097:145136 +k1,7795:30316491,6254097:145137 +k1,7795:31074390,6254097:145137 +k1,7795:32583029,6254097:0 +) +(1,7796:6630773,7119177:25952256,505283,134348 +g1,7795:9265320,7119177 +k1,7796:32583030,7119177:20529808 +g1,7796:32583030,7119177 +) +v1,7798:6630773,7804032:0,393216,0 +(1,7817:6630773,14605288:25952256,7194472,196608 +g1,7817:6630773,14605288 +g1,7817:6630773,14605288 +g1,7817:6434165,14605288 +(1,7817:6434165,14605288:0,7194472,196608 +r1,7893:32779637,14605288:26345472,7391080,196608 +k1,7817:6434165,14605288:-26345472 +) +(1,7817:6434165,14605288:26345472,7194472,196608 +[1,7817:6630773,14605288:25952256,6997864,0 +(1,7800:6630773,8038469:25952256,431045,106246 +(1,7799:6630773,8038469:0,0,0 +g1,7799:6630773,8038469 +g1,7799:6630773,8038469 +g1,7799:6303093,8038469 +(1,7799:6303093,8038469:0,0,0 +) +g1,7799:6630773,8038469 +) +g1,7800:12273990,8038469 +g1,7800:13269852,8038469 +g1,7800:17585253,8038469 +g1,7800:18249161,8038469 +g1,7800:20240885,8038469 +g1,7800:20904793,8038469 +g1,7800:21568701,8038469 +g1,7800:22564563,8038469 +g1,7800:23228471,8038469 +g1,7800:23892379,8038469 +g1,7800:26216057,8038469 +h1,7800:27875827,8038469:0,0,0 +k1,7800:32583029,8038469:4707202 +g1,7800:32583029,8038469 +) +(1,7801:6630773,8723324:25952256,431045,106246 +h1,7801:6630773,8723324:0,0,0 +g1,7801:14265714,8723324 +h1,7801:14929622,8723324:0,0,0 +k1,7801:32583030,8723324:17653408 +g1,7801:32583030,8723324 +) +(1,7807:6630773,9539251:25952256,398014,8257 +(1,7803:6630773,9539251:0,0,0 +g1,7803:6630773,9539251 +g1,7803:6630773,9539251 +g1,7803:6303093,9539251 +(1,7803:6303093,9539251:0,0,0 +) +g1,7803:6630773,9539251 +) +g1,7807:7626635,9539251 +g1,7807:7958589,9539251 +g1,7807:8290543,9539251 +g1,7807:8954451,9539251 +g1,7807:9618359,9539251 +h1,7807:9950313,9539251:0,0,0 +k1,7807:32583029,9539251:22632716 +g1,7807:32583029,9539251 +) +(1,7807:6630773,10224106:25952256,407923,9908 +h1,7807:6630773,10224106:0,0,0 +g1,7807:7626635,10224106 +g1,7807:8290543,10224106 +g1,7807:8954451,10224106 +g1,7807:9618359,10224106 +h1,7807:9950313,10224106:0,0,0 +k1,7807:32583029,10224106:22632716 +g1,7807:32583029,10224106 +) +(1,7807:6630773,10908961:25952256,407923,9908 +h1,7807:6630773,10908961:0,0,0 +g1,7807:7626635,10908961 +g1,7807:8290543,10908961 +g1,7807:8954451,10908961 +g1,7807:9618359,10908961 +h1,7807:9950313,10908961:0,0,0 +k1,7807:32583029,10908961:22632716 +g1,7807:32583029,10908961 +) +(1,7809:6630773,11724888:25952256,431045,106246 +(1,7808:6630773,11724888:0,0,0 +g1,7808:6630773,11724888 +g1,7808:6630773,11724888 +g1,7808:6303093,11724888 +(1,7808:6303093,11724888:0,0,0 +) +g1,7808:6630773,11724888 +) +g1,7809:12273990,11724888 +g1,7809:13269852,11724888 +g1,7809:19245023,11724888 +g1,7809:19908931,11724888 +g1,7809:22232609,11724888 +g1,7809:23892379,11724888 +h1,7809:25552149,11724888:0,0,0 +k1,7809:32583029,11724888:7030880 +g1,7809:32583029,11724888 +) +(1,7810:6630773,12409743:25952256,431045,106246 +h1,7810:6630773,12409743:0,0,0 +g1,7810:14265714,12409743 +h1,7810:14929622,12409743:0,0,0 +k1,7810:32583030,12409743:17653408 +g1,7810:32583030,12409743 +) +(1,7816:6630773,13225670:25952256,398014,8257 +(1,7812:6630773,13225670:0,0,0 +g1,7812:6630773,13225670 +g1,7812:6630773,13225670 +g1,7812:6303093,13225670 +(1,7812:6303093,13225670:0,0,0 +) +g1,7812:6630773,13225670 +) +g1,7816:7626635,13225670 +g1,7816:7958589,13225670 +g1,7816:8290543,13225670 +g1,7816:8954451,13225670 +g1,7816:9618359,13225670 +h1,7816:9950313,13225670:0,0,0 +k1,7816:32583029,13225670:22632716 +g1,7816:32583029,13225670 +) +(1,7816:6630773,13910525:25952256,407923,9908 +h1,7816:6630773,13910525:0,0,0 +g1,7816:7626635,13910525 +g1,7816:8290543,13910525 +g1,7816:8954451,13910525 +g1,7816:9618359,13910525 +h1,7816:9950313,13910525:0,0,0 +k1,7816:32583029,13910525:22632716 +g1,7816:32583029,13910525 +) +(1,7816:6630773,14595380:25952256,407923,9908 +h1,7816:6630773,14595380:0,0,0 +g1,7816:7626635,14595380 +g1,7816:8290543,14595380 +g1,7816:8954451,14595380 +g1,7816:9618359,14595380 +h1,7816:9950313,14595380:0,0,0 +k1,7816:32583029,14595380:22632716 +g1,7816:32583029,14595380 +) +] +) +g1,7817:32583029,14605288 +g1,7817:6630773,14605288 +g1,7817:6630773,14605288 +g1,7817:32583029,14605288 +g1,7817:32583029,14605288 +) +h1,7817:6630773,14801896:0,0,0 +v1,7821:6630773,15666976:0,393216,0 +(1,7856:6630773,33452851:25952256,18179091,0 +g1,7856:6630773,33452851 +g1,7856:6237557,33452851 +r1,7893:6368629,33452851:131072,18179091,0 +g1,7856:6567858,33452851 +g1,7856:6764466,33452851 +[1,7856:6764466,33452851:25818563,18179091,0 +(1,7823:6764466,16028153:25818563,754393,260573 +(1,7821:6764466,16028153:0,754393,260573 +r1,7893:8010564,16028153:1246098,1014966,260573 +k1,7821:6764466,16028153:-1246098 +) +(1,7821:6764466,16028153:1246098,754393,260573 +) +k1,7821:8180826,16028153:170262 +k1,7821:8508506,16028153:327680 +k1,7821:10462003,16028153:170262 +k1,7821:12367658,16028153:170262 +k1,7821:13557005,16028153:170262 +k1,7821:16941808,16028153:170262 +k1,7821:19858684,16028153:170262 +(1,7821:19858684,16028153:0,452978,115847 +r1,7893:20920374,16028153:1061690,568825,115847 +k1,7821:19858684,16028153:-1061690 +) +(1,7821:19858684,16028153:1061690,452978,115847 +g1,7821:20565385,16028153 +h1,7821:20917097,16028153:0,411205,112570 +) +k1,7821:21090636,16028153:170262 +k1,7821:22070268,16028153:170262 +k1,7821:23707226,16028153:170262 +k1,7821:24896573,16028153:170262 +k1,7821:29472821,16028153:170262 +k1,7821:30834528,16028153:170262 +k1,7823:32583029,16028153:0 +) +(1,7823:6764466,16893233:25818563,505283,134348 +k1,7821:10139914,16893233:256590 +k1,7821:11790456,16893233:256591 +k1,7821:12402906,16893233:256590 +(1,7821:12402906,16893233:0,452978,115847 +r1,7893:14871443,16893233:2468537,568825,115847 +k1,7821:12402906,16893233:-2468537 +) +(1,7821:12402906,16893233:2468537,452978,115847 +k1,7821:12402906,16893233:3277 +h1,7821:14868166,16893233:0,411205,112570 +) +k1,7821:15128034,16893233:256591 +k1,7821:17362501,16893233:256590 +k1,7821:18305254,16893233:256591 +k1,7821:21634172,16893233:256590 +k1,7821:22542190,16893233:256590 +k1,7821:24426695,16893233:256591 +k1,7821:25855724,16893233:256590 +k1,7821:28999176,16893233:256591 +k1,7821:30274851,16893233:256590 +k1,7821:32583029,16893233:0 +) +(1,7823:6764466,17758313:25818563,513147,126483 +k1,7821:7719981,17758313:272630 +k1,7821:10216902,17758313:272629 +k1,7821:11481092,17758313:272630 +k1,7821:14744130,17758313:272630 +k1,7821:16706278,17758313:272630 +k1,7821:17997992,17758313:272629 +k1,7821:20338938,17758313:272630 +k1,7821:21270860,17758313:272630 +k1,7821:22562574,17758313:272629 +k1,7821:25548395,17758313:272630 +k1,7821:26812585,17758313:272630 +k1,7821:28325156,17758313:272630 +k1,7822:29426815,17758313:272629 +k1,7822:31563944,17758313:272630 +k1,7822:32583029,17758313:0 +) +(1,7823:6764466,18623393:25818563,513147,134348 +k1,7822:12039168,18623393:198283 +k1,7822:14872654,18623393:198283 +k1,7822:17453825,18623393:198282 +k1,7822:20033031,18623393:198283 +k1,7822:21422759,18623393:198283 +k1,7822:24003931,18623393:198283 +k1,7822:26951448,18623393:198282 +k1,7822:28662957,18623393:198283 +k1,7822:31900144,18623393:198283 +k1,7822:32583029,18623393:0 +) +(1,7823:6764466,19488473:25818563,505283,134348 +k1,7822:10714678,19488473:246773 +k1,7822:11980536,19488473:246773 +k1,7822:14940499,19488473:246772 +k1,7822:16885965,19488473:246773 +k1,7822:19733862,19488473:246773 +k1,7822:22292089,19488473:246773 +k1,7822:23407214,19488473:246773 +k1,7822:25184253,19488473:246773 +k1,7822:26082453,19488473:246772 +k1,7822:29598162,19488473:246773 +k1,7822:31563944,19488473:246773 +k1,7822:32583029,19488473:0 +) +(1,7823:6764466,20353553:25818563,513147,126483 +k1,7822:9024803,20353553:192021 +k1,7822:9876115,20353553:192020 +k1,7822:11087221,20353553:192021 +k1,7822:14166102,20353553:192020 +k1,7822:15738967,20353553:192021 +k1,7822:17267921,20353553:192020 +k1,7822:19104896,20353553:192021 +k1,7822:21747307,20353553:192020 +k1,7822:24764585,20353553:192021 +k1,7822:26999362,20353553:192020 +k1,7822:28059735,20353553:192021 +k1,7822:29932098,20353553:192020 +k1,7822:30740157,20353553:192021 +k1,7822:32583029,20353553:0 +) +(1,7823:6764466,21218633:25818563,513147,134348 +k1,7822:7607813,21218633:184055 +k1,7822:10736401,21218633:184055 +k1,7822:12658472,21218633:184056 +k1,7822:15001283,21218633:184055 +k1,7822:17137000,21218633:184055 +k1,7822:18763502,21218633:184055 +k1,7822:19966643,21218633:184056 +k1,7822:22899933,21218633:184055 +k1,7822:23743280,21218633:184055 +k1,7822:24946420,21218633:184055 +k1,7822:27843667,21218633:184056 +k1,7822:29765737,21218633:184055 +k1,7822:31931601,21218633:184055 +k1,7822:32583029,21218633:0 +) +(1,7823:6764466,22083713:25818563,505283,7863 +g1,7822:7982780,22083713 +k1,7823:32583029,22083713:22358262 +g1,7823:32583029,22083713 +) +v1,7825:6764466,22768568:0,393216,0 +(1,7853:6764466,33256243:25818563,10880891,196608 +g1,7853:6764466,33256243 +g1,7853:6764466,33256243 +g1,7853:6567858,33256243 +(1,7853:6567858,33256243:0,10880891,196608 +r1,7893:32779637,33256243:26211779,11077499,196608 +k1,7853:6567857,33256243:-26211780 +) +(1,7853:6567858,33256243:26211779,10880891,196608 +[1,7853:6764466,33256243:25818563,10684283,0 +(1,7827:6764466,23003005:25818563,431045,106246 +(1,7826:6764466,23003005:0,0,0 +g1,7826:6764466,23003005 +g1,7826:6764466,23003005 +g1,7826:6436786,23003005 +(1,7826:6436786,23003005:0,0,0 +) +g1,7826:6764466,23003005 +) +g1,7827:12407683,23003005 +g1,7827:13403545,23003005 +g1,7827:17718946,23003005 +g1,7827:18382854,23003005 +g1,7827:20374578,23003005 +g1,7827:21038486,23003005 +g1,7827:21702394,23003005 +g1,7827:22698256,23003005 +g1,7827:23362164,23003005 +g1,7827:24026072,23003005 +g1,7827:26349750,23003005 +h1,7827:28009520,23003005:0,0,0 +k1,7827:32583029,23003005:4573509 +g1,7827:32583029,23003005 +) +(1,7828:6764466,23687860:25818563,431045,106246 +h1,7828:6764466,23687860:0,0,0 +g1,7828:14399407,23687860 +h1,7828:15063315,23687860:0,0,0 +k1,7828:32583029,23687860:17519714 +g1,7828:32583029,23687860 +) +(1,7834:6764466,24503787:25818563,398014,8257 +(1,7830:6764466,24503787:0,0,0 +g1,7830:6764466,24503787 +g1,7830:6764466,24503787 +g1,7830:6436786,24503787 +(1,7830:6436786,24503787:0,0,0 +) +g1,7830:6764466,24503787 +) +g1,7834:7760328,24503787 +g1,7834:8092282,24503787 +g1,7834:8424236,24503787 +g1,7834:9088144,24503787 +g1,7834:9752052,24503787 +h1,7834:10084006,24503787:0,0,0 +k1,7834:32583030,24503787:22499024 +g1,7834:32583030,24503787 +) +(1,7834:6764466,25188642:25818563,407923,9908 +h1,7834:6764466,25188642:0,0,0 +g1,7834:7760328,25188642 +g1,7834:8424236,25188642 +g1,7834:9088144,25188642 +g1,7834:9752052,25188642 +h1,7834:10084006,25188642:0,0,0 +k1,7834:32583030,25188642:22499024 +g1,7834:32583030,25188642 +) +(1,7834:6764466,25873497:25818563,407923,9908 +h1,7834:6764466,25873497:0,0,0 +g1,7834:7760328,25873497 +g1,7834:8424236,25873497 +g1,7834:9088144,25873497 +g1,7834:9752052,25873497 +h1,7834:10084006,25873497:0,0,0 +k1,7834:32583030,25873497:22499024 +g1,7834:32583030,25873497 +) +(1,7836:6764466,26689424:25818563,431045,106246 +(1,7835:6764466,26689424:0,0,0 +g1,7835:6764466,26689424 +g1,7835:6764466,26689424 +g1,7835:6436786,26689424 +(1,7835:6436786,26689424:0,0,0 +) +g1,7835:6764466,26689424 +) +g1,7836:12739637,26689424 +g1,7836:13403545,26689424 +g1,7836:15063315,26689424 +g1,7836:16059177,26689424 +g1,7836:22034348,26689424 +g1,7836:22698256,26689424 +h1,7836:24026072,26689424:0,0,0 +k1,7836:32583029,26689424:8556957 +g1,7836:32583029,26689424 +) +(1,7837:6764466,27374279:25818563,431045,106246 +h1,7837:6764466,27374279:0,0,0 +g1,7837:14399407,27374279 +h1,7837:15063315,27374279:0,0,0 +k1,7837:32583029,27374279:17519714 +g1,7837:32583029,27374279 +) +(1,7843:6764466,28190206:25818563,398014,8257 +(1,7839:6764466,28190206:0,0,0 +g1,7839:6764466,28190206 +g1,7839:6764466,28190206 +g1,7839:6436786,28190206 +(1,7839:6436786,28190206:0,0,0 +) +g1,7839:6764466,28190206 +) +g1,7843:7760328,28190206 +g1,7843:8092282,28190206 +g1,7843:8424236,28190206 +g1,7843:9088144,28190206 +g1,7843:9752052,28190206 +h1,7843:10084006,28190206:0,0,0 +k1,7843:32583030,28190206:22499024 +g1,7843:32583030,28190206 +) +(1,7843:6764466,28875061:25818563,407923,9908 +h1,7843:6764466,28875061:0,0,0 +g1,7843:7760328,28875061 +g1,7843:8424236,28875061 +g1,7843:9088144,28875061 +g1,7843:9752052,28875061 +h1,7843:10084006,28875061:0,0,0 +k1,7843:32583030,28875061:22499024 +g1,7843:32583030,28875061 +) +(1,7843:6764466,29559916:25818563,407923,9908 +h1,7843:6764466,29559916:0,0,0 +g1,7843:7760328,29559916 +g1,7843:8424236,29559916 +g1,7843:9088144,29559916 +g1,7843:9752052,29559916 +h1,7843:10084006,29559916:0,0,0 +k1,7843:32583030,29559916:22499024 +g1,7843:32583030,29559916 +) +(1,7845:6764466,30375843:25818563,431045,106246 +(1,7844:6764466,30375843:0,0,0 +g1,7844:6764466,30375843 +g1,7844:6764466,30375843 +g1,7844:6436786,30375843 +(1,7844:6436786,30375843:0,0,0 +) +g1,7844:6764466,30375843 +) +k1,7845:6764466,30375843:0 +g1,7845:17386991,30375843 +g1,7845:18382853,30375843 +k1,7845:18382853,30375843:0 +h1,7845:28673424,30375843:0,0,0 +k1,7845:32583029,30375843:3909605 +g1,7845:32583029,30375843 +) +(1,7846:6764466,31060698:25818563,431045,106246 +h1,7846:6764466,31060698:0,0,0 +g1,7846:14399407,31060698 +h1,7846:15063315,31060698:0,0,0 +k1,7846:32583029,31060698:17519714 +g1,7846:32583029,31060698 +) +(1,7852:6764466,31876625:25818563,398014,8257 +(1,7848:6764466,31876625:0,0,0 +g1,7848:6764466,31876625 +g1,7848:6764466,31876625 +g1,7848:6436786,31876625 +(1,7848:6436786,31876625:0,0,0 +) +g1,7848:6764466,31876625 +) +g1,7852:7760328,31876625 +g1,7852:8092282,31876625 +g1,7852:8424236,31876625 +g1,7852:9088144,31876625 +g1,7852:9752052,31876625 +h1,7852:10084006,31876625:0,0,0 +k1,7852:32583030,31876625:22499024 +g1,7852:32583030,31876625 +) +(1,7852:6764466,32561480:25818563,407923,9908 +h1,7852:6764466,32561480:0,0,0 +g1,7852:7760328,32561480 +g1,7852:8424236,32561480 +g1,7852:9088144,32561480 +g1,7852:9752052,32561480 +h1,7852:10084006,32561480:0,0,0 +k1,7852:32583030,32561480:22499024 +g1,7852:32583030,32561480 +) +(1,7852:6764466,33246335:25818563,407923,9908 +h1,7852:6764466,33246335:0,0,0 +g1,7852:7760328,33246335 +g1,7852:8424236,33246335 +g1,7852:9088144,33246335 +g1,7852:9752052,33246335 +h1,7852:10084006,33246335:0,0,0 +k1,7852:32583030,33246335:22499024 +g1,7852:32583030,33246335 +) +] +) +g1,7853:32583029,33256243 +g1,7853:6764466,33256243 +g1,7853:6764466,33256243 +g1,7853:32583029,33256243 +g1,7853:32583029,33256243 +) +h1,7853:6764466,33452851:0,0,0 +] +g1,7856:32583029,33452851 +) +h1,7856:6630773,33452851:0,0,0 +(1,7859:6630773,34317931:25952256,505283,134348 +h1,7858:6630773,34317931:983040,0,0 +k1,7858:10031235,34317931:244248 +k1,7858:11542948,34317931:244247 +k1,7858:14291327,34317931:244248 +k1,7858:15820081,34317931:244248 +(1,7858:15820081,34317931:0,452978,115847 +r1,7893:18288618,34317931:2468537,568825,115847 +k1,7858:15820081,34317931:-2468537 +) +(1,7858:15820081,34317931:2468537,452978,115847 +k1,7858:15820081,34317931:3277 +h1,7858:18285341,34317931:0,411205,112570 +) +k1,7858:18532865,34317931:244247 +k1,7858:21118059,34317931:244248 +k1,7858:22381392,34317931:244248 +k1,7858:25052437,34317931:244247 +k1,7858:27595033,34317931:244248 +k1,7858:28490709,34317931:244248 +k1,7858:30005044,34317931:244247 +k1,7858:30605152,34317931:244248 +k1,7858:32583029,34317931:0 +) +(1,7859:6630773,35183011:25952256,513147,134348 +k1,7858:8080705,35183011:217855 +k1,7858:9796713,35183011:217855 +h1,7858:10593631,35183011:0,0,0 +k1,7858:11192250,35183011:217855 +k1,7858:12278458,35183011:217856 +k1,7858:13600595,35183011:217855 +k1,7858:14910935,35183011:217855 +(1,7858:14910935,35183011:0,452978,115847 +r1,7893:17379472,35183011:2468537,568825,115847 +k1,7858:14910935,35183011:-2468537 +) +(1,7858:14910935,35183011:2468537,452978,115847 +k1,7858:14910935,35183011:3277 +h1,7858:17376195,35183011:0,411205,112570 +) +k1,7858:17597327,35183011:217855 +k1,7858:18466610,35183011:217855 +k1,7858:21416661,35183011:217855 +k1,7858:22653601,35183011:217855 +k1,7858:25298254,35183011:217855 +k1,7858:27814458,35183011:217856 +k1,7858:28683741,35183011:217855 +k1,7858:30171684,35183011:217855 +k1,7858:31923737,35183011:217855 +k1,7858:32583029,35183011:0 +) +(1,7859:6630773,36048091:25952256,513147,134348 +k1,7858:7170925,36048091:184292 +k1,7858:8744580,36048091:184292 +k1,7858:10978837,36048091:184291 +k1,7858:11790964,36048091:184292 +k1,7858:13178497,36048091:184292 +k1,7858:14903540,36048091:184292 +k1,7858:16106917,36048091:184292 +k1,7858:19363536,36048091:184291 +k1,7858:20199256,36048091:184292 +(1,7858:20199256,36048091:0,452978,115847 +r1,7893:22667793,36048091:2468537,568825,115847 +k1,7858:20199256,36048091:-2468537 +) +(1,7858:20199256,36048091:2468537,452978,115847 +k1,7858:20199256,36048091:3277 +h1,7858:22664516,36048091:0,411205,112570 +) +k1,7858:22852085,36048091:184292 +k1,7858:23567874,36048091:184292 +k1,7858:26039373,36048091:184292 +k1,7858:26579525,36048091:184292 +k1,7858:29146705,36048091:184291 +k1,7858:29990289,36048091:184292 +k1,7858:31193666,36048091:184292 +k1,7858:32583029,36048091:0 +) +(1,7859:6630773,36913171:25952256,513147,134348 +k1,7858:8695574,36913171:188505 +k1,7858:10622095,36913171:188506 +k1,7858:13829844,36913171:188505 +k1,7858:16953051,36913171:188505 +k1,7858:18273363,36913171:188505 +k1,7858:20439746,36913171:188506 +k1,7858:21287543,36913171:188505 +k1,7858:23988043,36913171:188505 +k1,7858:26363484,36913171:188505 +k1,7858:29532567,36913171:188506 +k1,7858:30740157,36913171:188505 +k1,7858:32583029,36913171:0 +) +(1,7859:6630773,37778251:25952256,513147,134348 +k1,7858:7504848,37778251:214783 +k1,7858:10473454,37778251:214783 +k1,7858:11044098,37778251:214784 +k1,7858:13954377,37778251:214783 +k1,7858:14820588,37778251:214783 +k1,7858:16192081,37778251:214783 +k1,7858:17089749,37778251:214783 +k1,7858:18954730,37778251:214784 +k1,7858:22056374,37778251:214783 +k1,7858:23375439,37778251:214783 +k1,7858:24337988,37778251:214783 +k1,7858:26758058,37778251:214783 +k1,7858:27659004,37778251:214784 +k1,7858:28644490,37778251:214783 +k1,7858:31931601,37778251:214783 +k1,7859:32583029,37778251:0 +) +(1,7859:6630773,38643331:25952256,513147,134348 +(1,7858:6630773,38643331:0,452978,115847 +r1,7893:9099310,38643331:2468537,568825,115847 +k1,7858:6630773,38643331:-2468537 +) +(1,7858:6630773,38643331:2468537,452978,115847 +k1,7858:6630773,38643331:3277 +h1,7858:9096033,38643331:0,411205,112570 +) +k1,7858:9480053,38643331:207073 +k1,7858:12476994,38643331:207073 +(1,7858:12476994,38643331:0,452978,115847 +r1,7893:14945531,38643331:2468537,568825,115847 +k1,7858:12476994,38643331:-2468537 +) +(1,7858:12476994,38643331:2468537,452978,115847 +k1,7858:12476994,38643331:3277 +h1,7858:14942254,38643331:0,411205,112570 +) +k1,7858:15152604,38643331:207073 +k1,7858:15891174,38643331:207073 +k1,7858:17164518,38643331:207073 +k1,7858:19348813,38643331:207074 +k1,7858:20503537,38643331:207073 +k1,7858:22970947,38643331:207073 +k1,7858:25891211,38643331:207073 +k1,7858:26757576,38643331:207073 +k1,7858:28354012,38643331:207073 +k1,7858:30767682,38643331:207073 +k1,7858:32583029,38643331:0 +) +(1,7859:6630773,39508411:25952256,505283,126483 +k1,7858:7558238,39508411:146931 +k1,7858:9137788,39508411:146932 +k1,7858:9970881,39508411:146931 +k1,7858:10575910,39508411:146932 +k1,7858:13344936,39508411:146931 +k1,7858:13847728,39508411:146932 +k1,7858:15972536,39508411:146931 +k1,7858:18152395,39508411:146932 +k1,7858:21012517,39508411:146931 +k1,7858:21845611,39508411:146932 +k1,7858:23874736,39508411:146931 +k1,7858:25907139,39508411:146932 +k1,7858:26585567,39508411:146931 +k1,7858:29362459,39508411:146932 +k1,7858:30884991,39508411:146931 +k1,7858:32583029,39508411:0 +) +(1,7859:6630773,40373491:25952256,513147,126483 +k1,7858:7532328,40373491:135439 +k1,7858:10380959,40373491:135440 +k1,7858:11507958,40373491:135439 +k1,7858:12302690,40373491:135440 +k1,7858:13457214,40373491:135439 +k1,7858:15246127,40373491:135440 +k1,7858:17110406,40373491:135439 +k1,7858:18080775,40373491:135440 +k1,7858:19235299,40373491:135439 +k1,7858:20737820,40373491:135440 +k1,7858:21540415,40373491:135439 +(1,7858:21540415,40373491:0,452978,115847 +r1,7893:23657240,40373491:2116825,568825,115847 +k1,7858:21540415,40373491:-2116825 +) +(1,7858:21540415,40373491:2116825,452978,115847 +k1,7858:21540415,40373491:3277 +h1,7858:23653963,40373491:0,411205,112570 +) +k1,7858:23792680,40373491:135440 +k1,7858:25119564,40373491:135439 +(1,7858:25119564,40373491:0,414482,115847 +r1,7893:26884677,40373491:1765113,530329,115847 +k1,7858:25119564,40373491:-1765113 +) +(1,7858:25119564,40373491:1765113,414482,115847 +k1,7858:25119564,40373491:3277 +h1,7858:26881400,40373491:0,411205,112570 +) +k1,7858:27020117,40373491:135440 +k1,7858:28358797,40373491:135439 +k1,7858:31478747,40373491:135440 +k1,7858:32583029,40373491:0 +) +(1,7859:6630773,41238571:25952256,513147,134348 +k1,7858:7593005,41238571:214466 +k1,7858:10179220,41238571:214467 +k1,7858:11045114,41238571:214466 +k1,7858:12391388,41238571:214467 +k1,7858:13265146,41238571:214466 +k1,7858:14988252,41238571:214467 +k1,7858:18877977,41238571:214466 +k1,7858:19778605,41238571:214466 +k1,7858:20759188,41238571:214467 +k1,7858:22482293,41238571:214466 +k1,7858:25565926,41238571:214467 +k1,7858:30446555,41238571:214466 +k1,7858:32583029,41238571:0 +) +(1,7859:6630773,42103651:25952256,505283,95026 +g1,7858:7481430,42103651 +g1,7858:8837369,42103651 +k1,7859:32583029,42103651:21809726 +g1,7859:32583029,42103651 +) +v1,7861:6630773,42968731:0,393216,0 +(1,7893:6630773,44374836:25952256,1799321,0 +g1,7893:6630773,44374836 +g1,7893:6237557,44374836 +r1,7893:6368629,44374836:131072,1799321,0 +g1,7893:6567858,44374836 +g1,7893:6764466,44374836 +[1,7893:6764466,44374836:25818563,1799321,0 +(1,7862:6764466,43383273:25818563,807758,219026 +(1,7861:6764466,43383273:0,807758,219026 +r1,7893:7908217,43383273:1143751,1026784,219026 +k1,7861:6764466,43383273:-1143751 +) +(1,7861:6764466,43383273:1143751,807758,219026 +) +g1,7861:8107446,43383273 +g1,7861:8435126,43383273 +g1,7861:10143649,43383273 +g1,7861:11007413,43383273 +g1,7861:13017402,43383273 +g1,7861:16028126,43383273 +g1,7861:16939731,43383273 +g1,7861:18771462,43383273 +g1,7861:19617531,43383273 +g1,7861:20186383,43383273 +g1,7861:21801845,43383273 +k1,7861:32583029,43383273:8508395 +g1,7862:32583029,43383273 +) +(1,7862:6764466,44248353:25818563,505283,126483 +k1,7861:7869604,44248353:151589 +k1,7861:9113678,44248353:151589 +k1,7861:11648157,44248353:151590 +k1,7861:13868062,44248353:151589 +k1,7861:14702536,44248353:151589 +k1,7861:17474254,44248353:151589 +k1,7861:20052642,44248353:151590 +k1,7861:21598182,44248353:151589 +k1,7861:22768856,44248353:151589 +k1,7861:26134986,44248353:151589 +k1,7861:29033190,44248353:151590 +(1,7861:29033190,44248353:0,452978,115847 +r1,7893:30094880,44248353:1061690,568825,115847 +k1,7861:29033190,44248353:-1061690 +) +(1,7861:29033190,44248353:1061690,452978,115847 +g1,7861:29739891,44248353 +h1,7861:30091603,44248353:0,411205,112570 +) +k1,7861:30246469,44248353:151589 +k1,7861:31773659,44248353:151589 +k1,7861:32583029,44248353:0 +) +] +g1,7893:32583029,44374836 +) +] +(1,7893:32583029,45706769:0,0,0 +g1,7893:32583029,45706769 +) +) +] +(1,7893:6630773,47279633:25952256,0,0 +h1,7893:6630773,47279633:25952256,0,0 +) +] +(1,7893:4262630,4025873:0,0,0 +[1,7893:-473656,4025873:0,0,0 +(1,7893:-473656,-710413:0,0,0 +(1,7893:-473656,-710413:0,0,0 +g1,7893:-473656,-710413 +) +g1,7893:-473656,-710413 +) +] +) +] +!26360 +}119 +Input:1058:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1059:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1060:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1061:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1062:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1063:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1064:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1065:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1066:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1067:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1068:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1046 +{120 +[1,7926:4262630,47279633:28320399,43253760,0 +(1,7926:4262630,4025873:0,0,0 +[1,7926:-473656,4025873:0,0,0 +(1,7926:-473656,-710413:0,0,0 +(1,7926:-473656,-644877:0,0,0 +k1,7926:-473656,-644877:-65536 ) -g1,8393:3062174,49800853 -(1,8393:3062174,52029077:16384,1703936,0 -[1,8393:3062174,52029077:25952256,1703936,0 -(1,8393:3062174,51504789:25952256,1179648,0 -(1,8393:3062174,51504789:16384,1179648,0 -r1,8594:3078558,51504789:16384,1179648,0 +(1,7926:-473656,4736287:0,0,0 +k1,7926:-473656,4736287:5209943 ) -k1,8393:29014430,51504789:25935872 -g1,8393:29014430,51504789 +g1,7926:-473656,-710413 ) ] ) +[1,7926:6630773,47279633:25952256,43253760,0 +[1,7926:6630773,4812305:25952256,786432,0 +(1,7926:6630773,4812305:25952256,513147,126483 +(1,7926:6630773,4812305:25952256,513147,126483 +g1,7926:3078558,4812305 +[1,7926:3078558,4812305:0,0,0 +(1,7926:3078558,2439708:0,1703936,0 +k1,7926:1358238,2439708:-1720320 +(1,6148:1358238,2439708:1720320,1703936,0 +(1,6148:1358238,2439708:1179648,16384,0 +r1,7926:2537886,2439708:1179648,16384,0 +) +g1,6148:3062174,2439708 +(1,6148:3062174,2439708:16384,1703936,0 +[1,6148:3062174,2439708:25952256,1703936,0 +(1,6148:3062174,1915420:25952256,1179648,0 +(1,6148:3062174,1915420:16384,1179648,0 +r1,7926:3078558,1915420:16384,1179648,0 ) +k1,6148:29014430,1915420:25935872 +g1,6148:29014430,1915420 ) ] -[1,8594:3078558,4812305:0,0,0 -(1,8594:3078558,49800853:0,16384,2228224 -g1,8594:29030814,49800853 -g1,8594:36135244,49800853 -(1,8393:36135244,49800853:1720320,16384,2228224 -(1,8393:36135244,52029077:16384,1703936,0 -[1,8393:36135244,52029077:25952256,1703936,0 -(1,8393:36135244,51504789:25952256,1179648,0 -(1,8393:36135244,51504789:16384,1179648,0 -r1,8594:36151628,51504789:16384,1179648,0 -) -k1,8393:62087500,51504789:25935872 -g1,8393:62087500,51504789 -) -] -) -g1,8393:36675916,49800853 -(1,8393:36675916,49800853:1179648,16384,0 -r1,8594:37855564,49800853:1179648,16384,0 -) -) -k1,8594:3078556,49800853:-34777008 -) -] -g1,8594:6630773,4812305 -g1,8594:6630773,4812305 -g1,8594:9132937,4812305 -g1,8594:11356573,4812305 -k1,8594:31387653,4812305:20031080 -) -) -] -[1,8594:6630773,45706769:25952256,40108032,0 -(1,8594:6630773,45706769:25952256,40108032,0 -(1,8594:6630773,45706769:0,0,0 -g1,8594:6630773,45706769 -) -[1,8594:6630773,45706769:25952256,40108032,0 -(1,8578:6630773,6254097:25952256,513147,134348 -h1,8577:6630773,6254097:983040,0,0 -k1,8577:8249970,6254097:148569 -k1,8577:10910584,6254097:148619 -k1,8577:14153158,6254097:148619 -k1,8577:15869399,6254097:148620 -k1,8577:16373878,6254097:148619 -k1,8577:18224467,6254097:148619 -k1,8577:20659637,6254097:148619 -k1,8577:21569785,6254097:148620 -k1,8577:24268410,6254097:148619 -k1,8577:25822776,6254097:148619 -k1,8577:28103937,6254097:148619 -k1,8577:29846393,6254097:148620 -k1,8577:30888268,6254097:148619 -k1,8577:32583029,6254097:0 -) -(1,8578:6630773,7095585:25952256,505283,134348 -g1,8577:7591530,7095585 -g1,8577:10177580,7095585 -k1,8578:32583028,7095585:20430848 -g1,8578:32583028,7095585 -) -(1,8580:7202902,8461361:24807998,513147,134348 -(1,8578:7202902,8461361:983040,0,0 -g1,8578:8185942,8461361 -g1,8578:6875222,8461361 -g1,8578:6547542,8461361 -(1,8578:6547542,8461361:1310720,0,0 -k1,8578:7858262,8461361:1310720 -) -g1,8578:8185942,8461361 -) -k1,8579:8842039,8461361:186204 -k1,8579:10129248,8461361:186204 -k1,8579:11825402,8461361:186204 -k1,8579:13240406,8461361:186204 -k1,8579:14151439,8461361:186205 -k1,8579:14953681,8461361:186204 -k1,8579:15906001,8461361:186204 -k1,8579:16751497,8461361:186204 -k1,8579:17918775,8461361:186204 -k1,8579:21611810,8461361:186204 -k1,8579:22994701,8461361:186204 -k1,8579:24487038,8461361:186204 -k1,8579:26028528,8461361:186205 -k1,8579:26746229,8461361:186204 -k1,8579:27703136,8461361:186204 -k1,8579:30819455,8461361:186204 -k1,8579:32010900,8461361:0 -) -(1,8580:7202902,9302849:24807998,513147,134348 -k1,8579:9455526,9302849:226906 -k1,8579:11076382,9302849:226905 -k1,8579:11659148,9302849:226906 -k1,8579:13750553,9302849:226906 -k1,8579:15411386,9302849:226905 -k1,8579:19000944,9302849:226906 -k1,8579:22281828,9302849:226906 -k1,8579:24170727,9302849:226906 -k1,8579:26007852,9302849:226905 -k1,8579:27301029,9302849:226906 -k1,8579:28719380,9302849:226906 -k1,8579:29611475,9302849:226905 -k1,8579:30576972,9302849:226906 -k1,8579:32010900,9302849:0 -) -(1,8580:7202902,10144337:24807998,513147,134348 -k1,8579:8632111,10144337:144703 -k1,8579:11909436,10144337:144704 -k1,8579:13547705,10144337:144703 -k1,8579:15165002,10144337:144703 -k1,8579:17137504,10144337:144703 -k1,8579:18473653,10144337:144704 -k1,8579:21981008,10144337:144703 -k1,8579:23117271,10144337:144703 -k1,8579:27118113,10144337:144704 -k1,8579:30819455,10144337:144703 -k1,8579:32010900,10144337:0 -) -(1,8580:7202902,10985825:24807998,513147,134348 -k1,8579:9855603,10985825:221315 -k1,8579:10736210,10985825:221315 -k1,8579:13270291,10985825:221315 -k1,8579:16537719,10985825:221315 -k1,8579:18542924,10985825:221315 -k1,8579:19955684,10985825:221315 -k1,8579:21821297,10985825:221315 -k1,8579:23034172,10985825:221315 -k1,8579:26047321,10985825:221315 -k1,8579:28311393,10985825:221315 -k1,8579:32010900,10985825:0 -) -(1,8580:7202902,11827313:24807998,513147,126483 -g1,8579:9822376,11827313 -g1,8579:10704490,11827313 -g1,8579:12981210,11827313 -g1,8579:13711936,11827313 -g1,8579:16675474,11827313 -k1,8580:32010900,11827313:12653693 -g1,8580:32010900,11827313 -) -(1,8583:6630773,13193089:25952256,505283,134348 -h1,8582:6630773,13193089:983040,0,0 -k1,8582:8990486,13193089:179986 -k1,8582:11409181,13193089:179985 -k1,8582:14864001,13193089:179986 -k1,8582:16899310,13193089:179985 -k1,8582:19125330,13193089:179986 -k1,8582:20835581,13193089:179985 -k1,8582:22300073,13193089:179986 -k1,8582:23855659,13193089:179985 -k1,8582:25389619,13193089:179986 -k1,8582:29778326,13193089:179985 -k1,8582:31451222,13193089:179986 -k1,8582:32583029,13193089:0 -) -(1,8583:6630773,14034577:25952256,513147,134348 -k1,8582:8123771,14034577:209803 -k1,8582:10422207,14034577:209804 -k1,8582:12082977,14034577:209803 -k1,8582:14994174,14034577:209803 -k1,8582:16400665,14034577:209804 -k1,8582:18263941,14034577:209803 -k1,8582:20755052,14034577:209803 -k1,8582:21616283,14034577:209803 -k1,8582:22240919,14034577:209793 -k1,8582:24612099,14034577:209803 -k1,8582:25508065,14034577:209804 -k1,8582:26996475,14034577:209803 -k1,8582:27892440,14034577:209803 -k1,8582:29234051,14034577:209804 -k1,8582:31145824,14034577:209803 -k1,8583:32583029,14034577:0 -) -(1,8583:6630773,14876065:25952256,513147,134348 -k1,8582:8736394,14876065:239811 -k1,8582:10626402,14876065:239811 -k1,8582:11525505,14876065:239811 -k1,8582:14841577,14876065:239812 -k1,8582:16751245,14876065:239811 -k1,8582:18653049,14876065:239811 -k1,8582:20096101,14876065:239811 -k1,8582:20794009,14876065:239811 -k1,8582:23669678,14876065:239811 -k1,8582:26224877,14876065:239812 -k1,8582:27749194,14876065:239811 -k1,8582:30170699,14876065:239811 -k1,8582:31601955,14876065:239811 -k1,8583:32583029,14876065:0 -) -(1,8583:6630773,15717553:25952256,513147,134348 -k1,8582:9490536,15717553:305825 -k1,8582:10787920,15717553:305824 -k1,8582:15164841,15717553:305825 -k1,8582:17156251,15717553:305824 -k1,8582:18078114,15717553:305825 -k1,8582:19403023,15717553:305824 -k1,8582:23840893,15717553:305825 -k1,8582:24813873,15717553:305824 -k1,8582:25534434,15717553:305718 -k1,8582:28001636,15717553:305825 -k1,8582:29498905,15717553:305824 -k1,8582:32583029,15717553:0 -) -(1,8583:6630773,16559041:25952256,513147,134348 -k1,8582:10461100,16559041:252061 -k1,8582:11399324,16559041:252062 -k1,8582:12422088,16559041:252061 -k1,8582:15171727,16559041:252062 -k1,8582:15955285,16559041:252061 -k1,8582:18573197,16559041:252062 -k1,8582:19844343,16559041:252061 -k1,8582:21922893,16559041:252062 -k1,8582:22834246,16559041:252061 -k1,8582:24289549,16559041:252062 -k1,8582:26297320,16559041:252061 -k1,8582:29484084,16559041:252062 -k1,8582:31266411,16559041:252061 -k1,8583:32583029,16559041:0 -) -(1,8583:6630773,17400529:25952256,513147,134348 -k1,8582:10161343,17400529:281950 -k1,8582:11944067,17400529:281950 -k1,8582:13417463,17400529:281951 -k1,8582:15283418,17400529:281950 -k1,8582:20391439,17400529:281950 -k1,8582:21664949,17400529:281950 -k1,8582:26337157,17400529:281951 -k1,8582:27566758,17400529:281950 -k1,8582:30401335,17400529:281950 -k1,8582:32583029,17400529:0 -) -(1,8583:6630773,18242017:25952256,505283,7863 -g1,8582:8021447,18242017 -k1,8583:32583030,18242017:22659728 -g1,8583:32583030,18242017 -) -(1,8585:6630773,19083505:25952256,513147,134348 -h1,8584:6630773,19083505:983040,0,0 -k1,8584:9339704,19083505:235602 -k1,8584:10522957,19083505:235602 -k1,8584:12919936,19083505:235602 -k1,8584:14668763,19083505:235601 -k1,8584:15852016,19083505:235602 -k1,8584:19160601,19083505:235602 -k1,8584:19752063,19083505:235602 -k1,8584:21860684,19083505:235602 -k1,8584:23485649,19083505:235602 -k1,8584:24829465,19083505:235602 -k1,8584:25933418,19083505:235601 -k1,8584:27699286,19083505:235602 -k1,8584:28586316,19083505:235602 -k1,8584:29569684,19083505:235602 -k1,8584:32583029,19083505:0 -) -(1,8585:6630773,19924993:25952256,505283,134348 -k1,8584:8110303,19924993:195024 -k1,8584:9324412,19924993:195024 -k1,8584:12960731,19924993:195024 -k1,8584:14347200,19924993:195024 -k1,8584:16050863,19924993:195024 -k1,8584:21302645,19924993:195024 -k1,8584:22489229,19924993:195024 -k1,8584:24398019,19924993:195024 -k1,8584:25784488,19924993:195024 -k1,8584:27288266,19924993:195024 -k1,8584:28134718,19924993:195024 -k1,8584:30340387,19924993:195024 -k1,8584:32583029,19924993:0 -) -(1,8585:6630773,20766481:25952256,513147,126483 -k1,8584:9185038,20766481:207421 -k1,8584:10773304,20766481:207422 -k1,8584:11512222,20766481:207421 -k1,8584:13027086,20766481:207421 -k1,8584:14701203,20766481:207421 -k1,8584:15856276,20766481:207422 -k1,8584:18913202,20766481:207421 -k1,8584:21620822,20766481:207421 -k1,8584:23853961,20766481:207421 -k1,8584:27518407,20766481:207422 -k1,8584:30052356,20766481:207421 -k1,8584:31451222,20766481:207421 -k1,8584:32583029,20766481:0 -) -(1,8585:6630773,21607969:25952256,513147,134348 -k1,8584:8226640,21607969:206504 -k1,8584:10987737,21607969:206504 -k1,8584:13415911,21607969:206503 -k1,8584:14273843,21607969:206504 -k1,8584:18143810,21607969:206504 -k1,8584:19009606,21607969:206504 -k1,8584:22842872,21607969:206504 -k1,8584:24443326,21607969:206503 -k1,8584:27936461,21607969:206504 -k1,8584:28825850,21607969:206504 -k1,8584:32583029,21607969:0 -) -(1,8585:6630773,22449457:25952256,513147,126483 -k1,8584:7675064,22449457:270311 -k1,8584:10227993,22449457:270310 -k1,8584:11965000,22449457:270311 -k1,8584:12851349,22449457:270311 -k1,8584:14819041,22449457:270310 -k1,8584:16787390,22449457:270311 -k1,8584:17926053,22449457:270311 -k1,8584:19187924,22449457:270311 -k1,8584:20524505,22449457:270310 -k1,8584:23507351,22449457:270311 -k1,8584:24429090,22449457:270311 -k1,8584:28732486,22449457:270310 -k1,8584:31535764,22449457:270311 -k1,8584:32583029,22449457:0 -) -(1,8585:6630773,23290945:25952256,513147,134348 -k1,8584:7780728,23290945:202304 -k1,8584:10626755,23290945:202305 -k1,8584:13187700,23290945:202304 -k1,8584:15427519,23290945:202305 -k1,8584:18114293,23290945:202304 -k1,8584:18968026,23290945:202305 -k1,8584:19526190,23290945:202304 -k1,8584:21956064,23290945:202305 -k1,8584:26374299,23290945:202304 -k1,8584:27444956,23290945:202305 -k1,8584:28779722,23290945:202304 -k1,8584:30180681,23290945:202305 -k1,8584:31931601,23290945:202304 -k1,8584:32583029,23290945:0 -) -(1,8585:6630773,24132433:25952256,505283,126483 -g1,8584:8559497,24132433 -g1,8584:10640265,24132433 -k1,8585:32583028,24132433:18934660 -g1,8585:32583028,24132433 -) -(1,8587:6630773,24973921:25952256,513147,134348 -h1,8586:6630773,24973921:983040,0,0 -k1,8586:9053991,24973921:243491 -k1,8586:10603616,24973921:243492 -k1,8586:12202392,24973921:243491 -k1,8586:13061921,24973921:243491 -k1,8586:16568451,24973921:243492 -k1,8586:19162718,24973921:243491 -k1,8586:22482469,24973921:243491 -k1,8586:24222147,24973921:243491 -k1,8586:24997136,24973921:243492 -k1,8586:25892055,24973921:243491 -k1,8586:28183546,24973921:243491 -k1,8586:29711544,24973921:243492 -k1,8586:31086842,24973921:243491 -k1,8586:32583029,24973921:0 -) -(1,8587:6630773,25815409:25952256,513147,126483 -k1,8586:8200470,25815409:285191 -k1,8586:9354013,25815409:285191 -k1,8586:11254010,25815409:285190 -k1,8586:13399768,25815409:285191 -k1,8586:14336387,25815409:285191 -k1,8586:15369344,25815409:285191 -k1,8586:17614060,25815409:285190 -k1,8586:19264366,25815409:285191 -k1,8586:20015518,25815409:285191 -k1,8586:23104339,25815409:285191 -k1,8586:26484139,25815409:285190 -k1,8586:29373731,25815409:285191 -k1,8586:32583029,25815409:0 -) -(1,8587:6630773,26656897:25952256,505283,126483 -k1,8586:8209099,26656897:223041 -k1,8586:8963636,26656897:223040 -k1,8586:9838105,26656897:223041 -k1,8586:11776878,26656897:223040 -k1,8586:13380763,26656897:223041 -k1,8586:14888310,26656897:223041 -k1,8586:16819874,26656897:223040 -k1,8586:17574412,26656897:223041 -k1,8586:20718392,26656897:223040 -k1,8586:22951422,26656897:223041 -k1,8586:24193548,26656897:223041 -k1,8586:26247664,26656897:223040 -k1,8586:27662150,26656897:223041 -k1,8586:28241050,26656897:223040 -k1,8586:30976086,26656897:223041 -k1,8586:32583029,26656897:0 -) -(1,8587:6630773,27498385:25952256,513147,134348 -k1,8586:9851649,27498385:180005 -k1,8586:10979305,27498385:180005 -k1,8586:12336338,27498385:180006 -k1,8586:14224867,27498385:180005 -k1,8586:17592543,27498385:180005 -k1,8586:19312644,27498385:180005 -k1,8586:21201174,27498385:180006 -k1,8586:23391824,27498385:180005 -k1,8586:25592959,27498385:180005 -k1,8586:28138814,27498385:180005 -k1,8586:29337905,27498385:180006 -k1,8586:31298523,27498385:180005 -k1,8586:32583029,27498385:0 -) -(1,8587:6630773,28339873:25952256,505283,126483 -g1,8586:7934284,28339873 -g1,8586:8881279,28339873 -g1,8586:11445047,28339873 -g1,8586:14223773,28339873 -g1,8586:15184530,28339873 -g1,8586:16402844,28339873 -k1,8587:32583029,28339873:13968345 -g1,8587:32583029,28339873 -) -(1,8589:6630773,29181361:25952256,513147,134348 -h1,8588:6630773,29181361:983040,0,0 -k1,8588:8385546,29181361:293976 -k1,8588:10793713,29181361:293976 -k1,8588:13443053,29181361:293976 -k1,8588:14419913,29181361:293975 -k1,8588:16828080,29181361:293976 -k1,8588:19400743,29181361:293976 -k1,8588:20960875,29181361:293976 -k1,8588:21610711,29181361:293976 -k1,8588:23897637,29181361:293976 -k1,8588:25871956,29181361:293976 -k1,8588:26697428,29181361:293975 -k1,8588:29770131,29181361:293976 -k1,8588:30825635,29181361:293976 -k1,8588:31475471,29181361:293976 -k1,8589:32583029,29181361:0 -) -(1,8589:6630773,30022849:25952256,513147,134348 -k1,8588:9618307,30022849:236988 -k1,8588:10538180,30022849:236988 -k1,8588:11584539,30022849:236989 -k1,8588:13501870,30022849:236988 -k1,8588:15188514,30022849:236988 -k1,8588:16444587,30022849:236988 -k1,8588:18512652,30022849:236989 -k1,8588:21150224,30022849:236988 -k1,8588:22070097,30022849:236988 -k1,8588:24767962,30022849:236988 -k1,8588:25360811,30022849:236989 -k1,8588:27036314,30022849:236988 -k1,8588:29261009,30022849:236988 -k1,8588:32583029,30022849:0 -) -(1,8589:6630773,30864337:25952256,513147,134348 -k1,8588:9422432,30864337:199710 -k1,8588:10238180,30864337:199710 -k1,8588:12694295,30864337:199710 -k1,8588:13913090,30864337:199710 -k1,8588:15894724,30864337:199710 -k1,8588:16753726,30864337:199710 -k1,8588:17972521,30864337:199710 -k1,8588:21022391,30864337:199709 -k1,8588:22418788,30864337:199710 -k1,8588:24400422,30864337:199710 -k1,8588:25704414,30864337:199710 -k1,8588:26651890,30864337:199710 -k1,8588:28707580,30864337:199710 -k1,8588:29263150,30864337:199710 -k1,8588:31966991,30864337:199710 -k1,8588:32583029,30864337:0 -) -(1,8589:6630773,31705825:25952256,513147,134348 -k1,8588:7904083,31705825:254225 -k1,8588:13215066,31705825:254225 -k1,8588:14128584,31705825:254226 -k1,8588:15153512,31705825:254225 -k1,8588:18692401,31705825:254225 -k1,8588:19632788,31705825:254225 -k1,8588:21165620,31705825:254225 -k1,8588:22106007,31705825:254225 -k1,8588:22976271,31705825:254226 -k1,8588:24249581,31705825:254225 -k1,8588:27614800,31705825:254225 -k1,8588:29648327,31705825:254225 -k1,8588:32583029,31705825:0 -) -(1,8589:6630773,32547313:25952256,513147,134348 -k1,8588:8616715,32547313:234165 -k1,8588:11711527,32547313:234165 -k1,8588:13454987,32547313:234165 -k1,8588:14680712,32547313:234165 -k1,8588:17117542,32547313:234165 -k1,8588:18113235,32547313:234165 -k1,8588:19524428,32547313:234166 -k1,8588:20441478,32547313:234165 -k1,8588:23147661,32547313:234165 -k1,8588:26183490,32547313:234165 -k1,8588:27076947,32547313:234165 -k1,8588:29505257,32547313:234165 -k1,8588:31436804,32547313:234165 -k1,8588:32583029,32547313:0 -) -(1,8589:6630773,33388801:25952256,505283,134348 -k1,8588:9045884,33388801:258976 -k1,8588:11013385,33388801:258977 -k1,8588:13456676,33388801:258976 -k1,8588:16639213,33388801:258976 -k1,8588:19009105,33388801:258977 -k1,8588:21789251,33388801:258976 -k1,8588:22809755,33388801:258976 -k1,8588:24662568,33388801:258977 -k1,8588:26206705,33388801:258976 -k1,8588:27081719,33388801:258976 -k1,8588:29226167,33388801:258977 -k1,8588:29841003,33388801:258976 -k1,8588:32583029,33388801:0 -) -(1,8589:6630773,34230289:25952256,513147,134348 -g1,8588:9230586,34230289 -g1,8588:11756998,34230289 -g1,8588:12615519,34230289 -g1,8588:15682603,34230289 -g1,8588:18148722,34230289 -g1,8588:18703811,34230289 -g1,8588:21175829,34230289 -g1,8588:22982001,34230289 -k1,8589:32583029,34230289:6722031 -g1,8589:32583029,34230289 -) -(1,8591:6630773,35071777:25952256,513147,134348 -h1,8590:6630773,35071777:983040,0,0 -k1,8590:11395593,35071777:217277 -k1,8590:12631955,35071777:217277 -k1,8590:14958181,35071777:217277 -k1,8590:15834750,35071777:217277 -k1,8590:17571807,35071777:217277 -k1,8590:18494251,35071777:217277 -k1,8590:19327566,35071777:217277 -k1,8590:21146543,35071777:217277 -k1,8590:23234873,35071777:217277 -k1,8590:24598375,35071777:217277 -k1,8590:27684163,35071777:217277 -k1,8590:29671567,35071777:217277 -k1,8590:31160242,35071777:217277 -k1,8590:32583029,35071777:0 -) -(1,8591:6630773,35913265:25952256,513147,126483 -k1,8590:9493479,35913265:192114 -k1,8590:11540262,35913265:192114 -k1,8590:12541746,35913265:192114 -k1,8590:15511276,35913265:192114 -k1,8590:17473517,35913265:192114 -k1,8590:18857076,35913265:192114 -k1,8590:22462305,35913265:192114 -k1,8590:23305847,35913265:192114 -k1,8590:24404324,35913265:192114 -k1,8590:25247866,35913265:192114 -k1,8590:27333315,35913265:192114 -k1,8590:28544514,35913265:192114 -k1,8590:30235436,35913265:192114 -k1,8590:31086842,35913265:192114 -k1,8590:32583029,35913265:0 -) -(1,8591:6630773,36754753:25952256,513147,134348 -k1,8590:9271218,36754753:215613 -k1,8590:10505917,36754753:215614 -k1,8590:13571691,36754753:215613 -k1,8590:15058702,36754753:215613 -k1,8590:17589703,36754753:215614 -k1,8590:20567659,36754753:215613 -k1,8590:22420362,36754753:215613 -k1,8590:24128885,36754753:215613 -k1,8590:25363584,36754753:215614 -k1,8590:26946278,36754753:215613 -k1,8590:27693388,36754753:215613 -k1,8590:30137881,36754753:215614 -k1,8590:30981329,36754753:215613 -k1,8590:32583029,36754753:0 -) -(1,8591:6630773,37596241:25952256,513147,134348 -k1,8590:8680336,37596241:178510 -k1,8590:9471608,37596241:178510 -k1,8590:10669203,37596241:178510 -k1,8590:12201686,37596241:178509 -k1,8590:14703447,37596241:178510 -k1,8590:15750309,37596241:178510 -k1,8590:17130749,37596241:178510 -k1,8590:18118629,37596241:178510 -k1,8590:19989279,37596241:178510 -k1,8590:21437876,37596241:178509 -k1,8590:22275678,37596241:178510 -k1,8590:28617849,37596241:178510 -k1,8590:31541007,37596241:178510 -k1,8590:32583029,37596241:0 -) -(1,8591:6630773,38437729:25952256,505283,126483 -k1,8590:9704888,38437729:239028 -k1,8590:10812267,38437729:239027 -k1,8590:12388229,38437729:239028 -k1,8590:14449158,38437729:239028 -k1,8590:15707271,38437729:239028 -k1,8590:17626641,38437729:239027 -k1,8590:20644396,38437729:239028 -k1,8590:21644952,38437729:239028 -k1,8590:25941969,38437729:239028 -k1,8590:29982739,38437729:239027 -k1,8590:31714677,38437729:239028 -k1,8590:32583029,38437729:0 -) -(1,8591:6630773,39279217:25952256,505283,134348 -k1,8590:8688663,39279217:164555 -k1,8590:9872303,39279217:164555 -k1,8590:12369283,39279217:164554 -k1,8590:14030025,39279217:164555 -k1,8590:17380940,39279217:164555 -k1,8590:20808533,39279217:164555 -k1,8590:21328948,39279217:164555 -k1,8590:23486453,39279217:164555 -k1,8590:25505021,39279217:164554 -k1,8590:28273977,39279217:164555 -k1,8590:31215948,39279217:164555 -k1,8590:32583029,39279217:0 -) -(1,8591:6630773,40120705:25952256,513147,134348 -k1,8590:7341879,40120705:179609 -k1,8590:9219527,40120705:179610 -k1,8590:11091276,40120705:179609 -k1,8590:12979410,40120705:179610 -k1,8590:15169664,40120705:179609 -k1,8590:17479849,40120705:179610 -k1,8590:18015318,40120705:179609 -k1,8590:19558076,40120705:179609 -k1,8590:20365521,40120705:179610 -k1,8590:22038696,40120705:179609 -k1,8590:23915688,40120705:179610 -k1,8590:24553394,40120705:179609 -k1,8590:25264501,40120705:179610 -k1,8590:28749091,40120705:179609 -k1,8590:30263669,40120705:179610 -k1,8590:31094706,40120705:179609 -k1,8590:32583029,40120705:0 -) -(1,8591:6630773,40962193:25952256,513147,134348 -k1,8590:7529271,40962193:136970 -k1,8590:9847935,40962193:136970 -k1,8590:10450866,40962193:136970 -k1,8590:13350180,40962193:136971 -k1,8590:15784842,40962193:136970 -k1,8590:16581104,40962193:136970 -k1,8590:18426598,40962193:136970 -k1,8590:19892638,40962193:136970 -k1,8590:20681036,40962193:136970 -k1,8590:25491379,40962193:136971 -k1,8590:26311234,40962193:136970 -k1,8590:27688145,40962193:136970 -k1,8590:30874505,40962193:136970 -k1,8590:32583029,40962193:0 -) -(1,8591:6630773,41803681:25952256,513147,134348 -k1,8590:8864240,41803681:222822 -k1,8590:10078622,41803681:222822 -k1,8590:12588652,41803681:222823 -k1,8590:13830559,41803681:222822 -k1,8590:16233108,41803681:222822 -k1,8590:18116612,41803681:222822 -k1,8590:19581997,41803681:222822 -k1,8590:20752470,41803681:222822 -k1,8590:23965045,41803681:222823 -k1,8590:25781703,41803681:222822 -k1,8590:28659388,41803681:222822 -k1,8590:30073655,41803681:222822 -k1,8590:32583029,41803681:0 -) -(1,8591:6630773,42645169:25952256,513147,134348 -k1,8590:9035325,42645169:220237 -k1,8590:10609536,42645169:220237 -k1,8590:12400671,42645169:220237 -k1,8590:14805222,42645169:220236 -k1,8590:16379433,42645169:220237 -k1,8590:18316058,42645169:220237 -k1,8590:20720610,42645169:220237 -k1,8590:23412865,42645169:220237 -k1,8590:25643747,42645169:220237 -(1,8590:25850841,42645169:0,414482,115847 -r1,8594:26560819,42645169:709978,530329,115847 -k1,8590:25850841,42645169:-709978 -) -(1,8590:25850841,42645169:709978,414482,115847 -k1,8590:25850841,42645169:3277 -h1,8590:26557542,42645169:0,411205,112570 -) -k1,8590:27161819,42645169:220236 -k1,8590:29690234,42645169:220237 -k1,8590:30569763,42645169:220237 -k1,8590:32583029,42645169:0 -) -(1,8591:6630773,43486657:25952256,505283,115847 -g1,8590:8250167,43486657 -(1,8590:8457261,43486657:0,452978,115847 -r1,8594:11629221,43486657:3171960,568825,115847 -k1,8590:8457261,43486657:-3171960 -) -(1,8590:8457261,43486657:3171960,452978,115847 -k1,8590:8457261,43486657:3277 -h1,8590:11625944,43486657:0,411205,112570 -) -g1,8590:12209214,43486657 -k1,8591:32583029,43486657:19262324 -g1,8591:32583029,43486657 -) -v1,8593:6630773,44852433:0,393216,0 -] -(1,8594:32583029,45706769:0,0,0 -g1,8594:32583029,45706769 -) -) -] -(1,8594:6630773,47279633:25952256,0,0 -h1,8594:6630773,47279633:25952256,0,0 -) -] -(1,8594:4262630,4025873:0,0,0 -[1,8594:-473656,4025873:0,0,0 -(1,8594:-473656,-710413:0,0,0 -(1,8594:-473656,-710413:0,0,0 -g1,8594:-473656,-710413 -) -g1,8594:-473656,-710413 -) -] -) -] -!24020 -}144 -Input:1162:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1163:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1164:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!294 -{145 -[1,8622:4262630,47279633:28320399,43253760,0 -(1,8622:4262630,4025873:0,0,0 -[1,8622:-473656,4025873:0,0,0 -(1,8622:-473656,-710413:0,0,0 -(1,8622:-473656,-644877:0,0,0 -k1,8622:-473656,-644877:-65536 ) -(1,8622:-473656,4736287:0,0,0 -k1,8622:-473656,4736287:5209943 ) -g1,8622:-473656,-710413 ) ] +[1,7926:3078558,4812305:0,0,0 +(1,7926:3078558,2439708:0,1703936,0 +g1,7926:29030814,2439708 +g1,7926:36135244,2439708 +(1,6148:36135244,2439708:1720320,1703936,0 +(1,6148:36135244,2439708:16384,1703936,0 +[1,6148:36135244,2439708:25952256,1703936,0 +(1,6148:36135244,1915420:25952256,1179648,0 +(1,6148:36135244,1915420:16384,1179648,0 +r1,7926:36151628,1915420:16384,1179648,0 ) -[1,8622:6630773,47279633:25952256,43253760,0 -[1,8622:6630773,4812305:25952256,786432,0 -(1,8622:6630773,4812305:25952256,505283,134348 -(1,8622:6630773,4812305:25952256,505283,134348 -g1,8622:3078558,4812305 -[1,8622:3078558,4812305:0,0,0 -(1,8622:3078558,2439708:0,1703936,0 -k1,8622:1358238,2439708:-1720320 -(1,8393:1358238,2439708:1720320,1703936,0 -(1,8393:1358238,2439708:1179648,16384,0 -r1,8622:2537886,2439708:1179648,16384,0 -) -g1,8393:3062174,2439708 -(1,8393:3062174,2439708:16384,1703936,0 -[1,8393:3062174,2439708:25952256,1703936,0 -(1,8393:3062174,1915420:25952256,1179648,0 -(1,8393:3062174,1915420:16384,1179648,0 -r1,8622:3078558,1915420:16384,1179648,0 -) -k1,8393:29014430,1915420:25935872 -g1,8393:29014430,1915420 +k1,6148:62087500,1915420:25935872 +g1,6148:62087500,1915420 ) ] ) +g1,6148:36675916,2439708 +(1,6148:36675916,2439708:1179648,16384,0 +r1,7926:37855564,2439708:1179648,16384,0 ) ) +k1,7926:3078556,2439708:-34777008 +) ] -[1,8622:3078558,4812305:0,0,0 -(1,8622:3078558,2439708:0,1703936,0 -g1,8622:29030814,2439708 -g1,8622:36135244,2439708 -(1,8393:36135244,2439708:1720320,1703936,0 -(1,8393:36135244,2439708:16384,1703936,0 -[1,8393:36135244,2439708:25952256,1703936,0 -(1,8393:36135244,1915420:25952256,1179648,0 -(1,8393:36135244,1915420:16384,1179648,0 -r1,8622:36151628,1915420:16384,1179648,0 +[1,7926:3078558,4812305:0,0,0 +(1,7926:3078558,49800853:0,16384,2228224 +k1,7926:1358238,49800853:-1720320 +(1,6148:1358238,49800853:1720320,16384,2228224 +(1,6148:1358238,49800853:1179648,16384,0 +r1,7926:2537886,49800853:1179648,16384,0 +) +g1,6148:3062174,49800853 +(1,6148:3062174,52029077:16384,1703936,0 +[1,6148:3062174,52029077:25952256,1703936,0 +(1,6148:3062174,51504789:25952256,1179648,0 +(1,6148:3062174,51504789:16384,1179648,0 +r1,7926:3078558,51504789:16384,1179648,0 ) -k1,8393:62087500,1915420:25935872 -g1,8393:62087500,1915420 +k1,6148:29014430,51504789:25935872 +g1,6148:29014430,51504789 ) ] ) -g1,8393:36675916,2439708 -(1,8393:36675916,2439708:1179648,16384,0 -r1,8622:37855564,2439708:1179648,16384,0 ) ) -k1,8622:3078556,2439708:-34777008 +] +[1,7926:3078558,4812305:0,0,0 +(1,7926:3078558,49800853:0,16384,2228224 +g1,7926:29030814,49800853 +g1,7926:36135244,49800853 +(1,6148:36135244,49800853:1720320,16384,2228224 +(1,6148:36135244,52029077:16384,1703936,0 +[1,6148:36135244,52029077:25952256,1703936,0 +(1,6148:36135244,51504789:25952256,1179648,0 +(1,6148:36135244,51504789:16384,1179648,0 +r1,7926:36151628,51504789:16384,1179648,0 +) +k1,6148:62087500,51504789:25935872 +g1,6148:62087500,51504789 ) ] -[1,8622:3078558,4812305:0,0,0 -(1,8622:3078558,49800853:0,16384,2228224 -k1,8622:1358238,49800853:-1720320 -(1,8393:1358238,49800853:1720320,16384,2228224 -(1,8393:1358238,49800853:1179648,16384,0 -r1,8622:2537886,49800853:1179648,16384,0 ) -g1,8393:3062174,49800853 -(1,8393:3062174,52029077:16384,1703936,0 -[1,8393:3062174,52029077:25952256,1703936,0 -(1,8393:3062174,51504789:25952256,1179648,0 -(1,8393:3062174,51504789:16384,1179648,0 -r1,8622:3078558,51504789:16384,1179648,0 +g1,6148:36675916,49800853 +(1,6148:36675916,49800853:1179648,16384,0 +r1,7926:37855564,49800853:1179648,16384,0 ) -k1,8393:29014430,51504789:25935872 -g1,8393:29014430,51504789 ) -] -) -) -) -] -[1,8622:3078558,4812305:0,0,0 -(1,8622:3078558,49800853:0,16384,2228224 -g1,8622:29030814,49800853 -g1,8622:36135244,49800853 -(1,8393:36135244,49800853:1720320,16384,2228224 -(1,8393:36135244,52029077:16384,1703936,0 -[1,8393:36135244,52029077:25952256,1703936,0 -(1,8393:36135244,51504789:25952256,1179648,0 -(1,8393:36135244,51504789:16384,1179648,0 -r1,8622:36151628,51504789:16384,1179648,0 -) -k1,8393:62087500,51504789:25935872 -g1,8393:62087500,51504789 -) -] -) -g1,8393:36675916,49800853 -(1,8393:36675916,49800853:1179648,16384,0 -r1,8622:37855564,49800853:1179648,16384,0 -) -) -k1,8622:3078556,49800853:-34777008 -) -] -g1,8622:6630773,4812305 -k1,8622:21643106,4812305:13816956 -g1,8622:23265777,4812305 -g1,8622:24088253,4812305 -g1,8622:28572226,4812305 -g1,8622:29981905,4812305 -) -) -] -[1,8622:6630773,45706769:25952256,40108032,0 -(1,8622:6630773,45706769:25952256,40108032,0 -(1,8622:6630773,45706769:0,0,0 -g1,8622:6630773,45706769 -) -[1,8622:6630773,45706769:25952256,40108032,0 -v1,8594:6630773,6254097:0,393216,0 -(1,8594:6630773,11850092:25952256,5989211,0 -g1,8594:6630773,11850092 -g1,8594:6303093,11850092 -r1,8622:6401397,11850092:98304,5989211,0 -g1,8594:6600626,11850092 -g1,8594:6797234,11850092 -[1,8594:6797234,11850092:25785795,5989211,0 -(1,8594:6797234,6674681:25785795,813800,267386 -(1,8593:6797234,6674681:0,813800,267386 -r1,8622:8134168,6674681:1336934,1081186,267386 -k1,8593:6797234,6674681:-1336934 -) -(1,8593:6797234,6674681:1336934,813800,267386 -) -k1,8593:8339787,6674681:205619 -k1,8593:8667467,6674681:327680 -k1,8593:10585055,6674681:211030 -k1,8593:13948199,6674681:205619 -k1,8593:15937053,6674681:205619 -k1,8593:19638362,6674681:205619 -k1,8593:21351964,6674681:205619 -k1,8593:22173621,6674681:205619 -k1,8593:24035989,6674681:205618 -k1,8593:25526114,6674681:205619 -k1,8593:26347771,6674681:205619 -k1,8593:28245530,6674681:205619 -k1,8593:30148531,6674681:205619 -k1,8593:30710010,6674681:205619 -k1,8593:32583029,6674681:0 -) -(1,8594:6797234,7516169:25785795,513147,134348 -k1,8593:8162922,7516169:176210 -k1,8593:9443414,7516169:176210 -k1,8593:10948694,7516169:176210 -k1,8593:11776332,7516169:176210 -k1,8593:12308402,7516169:176210 -k1,8593:14367461,7516169:176210 -k1,8593:17020932,7516169:176210 -k1,8593:17856434,7516169:176210 -k1,8593:19639587,7516169:176210 -k1,8593:23025095,7516169:176210 -k1,8593:24099148,7516169:176210 -k1,8593:25561174,7516169:176210 -k1,8593:27245367,7516169:176210 -k1,8593:28037615,7516169:176210 -k1,8593:29870575,7516169:176210 -k1,8593:31331291,7516169:176210 -k1,8594:32583029,7516169:0 -) -(1,8594:6797234,8357657:25785795,505283,134348 -k1,8593:8009292,8357657:221809 -k1,8593:11239205,8357657:221810 -k1,8593:14938354,8357657:221809 -k1,8593:16858201,8357657:221809 -k1,8593:18576198,8357657:221810 -k1,8593:19329504,8357657:221809 -k1,8593:21974180,8357657:221810 -k1,8593:24754515,8357657:221809 -k1,8593:25995409,8357657:221809 -k1,8593:29351806,8357657:221810 -k1,8593:30677897,8357657:221809 -k1,8593:32583029,8357657:0 -) -(1,8594:6797234,9199145:25785795,513147,126483 -k1,8593:9274003,9199145:228229 -k1,8593:10118270,9199145:228229 -k1,8593:10702359,9199145:228229 -k1,8593:12935334,9199145:228229 -k1,8593:15450770,9199145:228229 -k1,8593:17333784,9199145:228230 -k1,8593:18093510,9199145:228229 -k1,8593:19794333,9199145:228229 -k1,8593:25098981,9199145:228229 -k1,8593:27962413,9199145:228229 -k1,8593:29209727,9199145:228229 -k1,8593:31923737,9199145:228229 -k1,8593:32583029,9199145:0 -) -(1,8594:6797234,10040633:25785795,513147,134348 -k1,8593:8615694,10040633:211517 -k1,8593:11862840,10040633:211518 -k1,8593:13265802,10040633:211517 -k1,8593:14496404,10040633:211517 -k1,8593:18437576,10040633:211518 -k1,8593:19308385,10040633:211517 -k1,8593:20538987,10040633:211517 -k1,8593:21939983,10040633:211518 -k1,8593:25272324,10040633:211517 -k1,8593:27296567,10040633:211517 -k1,8593:29291320,10040633:211518 -k1,8593:31734338,10040633:211517 -k1,8594:32583029,10040633:0 -) -(1,8594:6797234,10882121:25785795,513147,134348 -k1,8593:8293370,10882121:194591 -k1,8593:9479522,10882121:194592 -k1,8593:12746441,10882121:194591 -k1,8593:14429356,10882121:194592 -k1,8593:15385475,10882121:194591 -k1,8593:17982616,10882121:194591 -k1,8593:19196293,10882121:194592 -k1,8593:20997827,10882121:194591 -k1,8593:23897744,10882121:194591 -k1,8593:26442457,10882121:194592 -k1,8593:28116851,10882121:194591 -k1,8593:28997605,10882121:194592 -k1,8593:30645785,10882121:194591 -k1,8593:32583029,10882121:0 -) -(1,8594:6797234,11723609:25785795,513147,126483 -g1,8593:8100745,11723609 -g1,8593:9047740,11723609 -g1,8593:10017672,11723609 -g1,8593:12681055,11723609 -g1,8593:16963177,11723609 -g1,8593:17821698,11723609 -g1,8593:20054509,11723609 -k1,8594:32583029,11723609:10867838 -g1,8594:32583029,11723609 -) -] -g1,8594:32583029,11850092 -) -h1,8594:6630773,11850092:0,0,0 -(1,8597:6630773,13215868:25952256,505283,134348 -h1,8596:6630773,13215868:983040,0,0 -k1,8596:9645691,13215868:199491 -k1,8596:10836743,13215868:199492 -k1,8596:13230379,13215868:199491 -k1,8596:15184925,13215868:199492 -k1,8596:17252192,13215868:199491 -k1,8596:20923125,13215868:199491 -k1,8596:24080257,13215868:199492 -k1,8596:25471193,13215868:199491 -k1,8596:27050873,13215868:199492 -k1,8596:28638417,13215868:199491 -k1,8596:32583029,13215868:0 -) -(1,8597:6630773,14057356:25952256,505283,134348 -k1,8596:10204451,14057356:193331 -k1,8596:12079436,14057356:193331 -k1,8596:13429478,14057356:193332 -k1,8596:14274237,14057356:193331 -k1,8596:15822853,14057356:193331 -k1,8596:18574710,14057356:193331 -k1,8596:19787127,14057356:193332 -k1,8596:21650315,14057356:193331 -k1,8596:24898934,14057356:193331 -k1,8596:26248975,14057356:193331 -k1,8596:29628667,14057356:193332 -k1,8596:30434760,14057356:193331 -k1,8596:30983951,14057356:193331 -k1,8596:32583029,14057356:0 -) -(1,8597:6630773,14898844:25952256,505283,134348 -k1,8596:8081264,14898844:259046 -k1,8596:8953072,14898844:259046 -k1,8596:10663739,14898844:259045 -k1,8596:12965542,14898844:259046 -k1,8596:15896491,14898844:259046 -k1,8596:17174622,14898844:259046 -k1,8596:18814512,14898844:259046 -k1,8596:19724985,14898844:259045 -k1,8596:22288932,14898844:259046 -k1,8596:23567063,14898844:259046 -k1,8596:26115937,14898844:259046 -k1,8596:28780810,14898844:259046 -k1,8596:29655893,14898844:259045 -k1,8596:30934024,14898844:259046 -k1,8596:31607853,14898844:258986 -k1,8597:32583029,14898844:0 -) -(1,8597:6630773,15740332:25952256,505283,126483 -k1,8596:10170789,15740332:244866 -k1,8596:11607100,15740332:244866 -k1,8596:13360606,15740332:244867 -k1,8596:15789787,15740332:244866 -k1,8596:16504546,15740332:244866 -k1,8596:17280909,15740332:244866 -k1,8596:18992471,15740332:244866 -k1,8596:21867297,15740332:244866 -k1,8596:22763592,15740332:244867 -k1,8596:25420838,15740332:244866 -k1,8596:28892697,15740332:244866 -k1,8596:32583029,15740332:0 -) -(1,8597:6630773,16581820:25952256,513147,134348 -k1,8596:8041152,16581820:189443 -k1,8596:8882024,16581820:189444 -k1,8596:11333770,16581820:189443 -k1,8596:12542298,16581820:189443 -k1,8596:14412085,16581820:189444 -k1,8596:15260820,16581820:189443 -k1,8596:15806123,16581820:189443 -k1,8596:18680577,16581820:189444 -k1,8596:20559538,16581820:189443 -k1,8596:23824586,16581820:189443 -k1,8596:24545526,16581820:189443 -k1,8596:27198468,16581820:189444 -k1,8596:28290342,16581820:189443 -k1,8596:28894619,16581820:189434 -k1,8596:32051532,16581820:189443 -k1,8596:32583029,16581820:0 -) -(1,8597:6630773,17423308:25952256,505283,134348 -g1,8596:9613971,17423308 -g1,8596:11823189,17423308 -g1,8596:14446595,17423308 -g1,8596:15837269,17423308 -g1,8596:17322314,17423308 -g1,8596:20080069,17423308 -g1,8596:21298383,17423308 -g1,8596:21912455,17423308 -k1,8597:32583029,17423308:8076659 -g1,8597:32583029,17423308 -) -(1,8599:6630773,18264796:25952256,513147,134348 -h1,8598:6630773,18264796:983040,0,0 -k1,8598:9590925,18264796:193877 -k1,8598:12042517,18264796:193877 -k1,8598:13695225,18264796:193877 -k1,8598:15195236,18264796:193878 -k1,8598:17724161,18264796:193877 -k1,8598:19088511,18264796:193877 -k1,8598:20414850,18264796:193877 -k1,8598:23076813,18264796:193877 -k1,8598:26095947,18264796:193877 -k1,8598:27742103,18264796:193878 -k1,8598:29127425,18264796:193877 -k1,8598:30932832,18264796:193877 -k1,8598:32583029,18264796:0 -) -(1,8599:6630773,19106284:25952256,505283,134348 -k1,8598:7649353,19106284:257052 -k1,8598:10429542,19106284:257053 -k1,8598:11705679,19106284:257052 -k1,8598:13793807,19106284:257052 -k1,8598:15207570,19106284:257053 -k1,8598:16633129,19106284:257052 -k1,8598:17502943,19106284:257052 -k1,8598:18115855,19106284:257052 -k1,8598:19798316,19106284:257053 -k1,8598:21246813,19106284:257052 -k1,8598:23201903,19106284:257052 -k1,8598:25757304,19106284:257053 -k1,8598:29753840,19106284:257052 -k1,8599:32583029,19106284:0 -) -(1,8599:6630773,19947772:25952256,513147,134348 -(1,8598:6630773,19947772:0,452978,115847 -r1,8622:9099310,19947772:2468537,568825,115847 -k1,8598:6630773,19947772:-2468537 -) -(1,8598:6630773,19947772:2468537,452978,115847 -k1,8598:6630773,19947772:3277 -h1,8598:9096033,19947772:0,411205,112570 -) -k1,8598:9280251,19947772:180941 -k1,8598:12977853,19947772:180940 -k1,8598:13810222,19947772:180941 -k1,8598:15978215,19947772:180941 -k1,8598:16771917,19947772:180940 -k1,8598:18283239,19947772:180941 -k1,8598:19483264,19947772:180940 -k1,8598:21344548,19947772:180941 -k1,8598:22184781,19947772:180941 -k1,8598:25207362,19947772:180940 -k1,8598:27959280,19947772:180941 -k1,8598:28752983,19947772:180941 -k1,8598:30385545,19947772:180940 -k1,8598:32095441,19947772:180941 -k1,8598:32583029,19947772:0 -) -(1,8599:6630773,20789260:25952256,513147,134348 -k1,8598:9769030,20789260:170787 -k1,8598:11951772,20789260:170787 -k1,8598:12478418,20789260:170786 -k1,8598:13505761,20789260:170787 -k1,8598:15326745,20789260:170787 -k1,8598:17959064,20789260:170787 -k1,8598:18816013,20789260:170787 -k1,8598:20143509,20789260:170786 -k1,8598:21418578,20789260:170787 -k1,8598:23244804,20789260:170787 -k1,8598:24331784,20789260:170787 -k1,8598:25694016,20789260:170787 -k1,8598:27520241,20789260:170786 -k1,8598:29057454,20789260:170787 -k1,8598:29887533,20789260:170787 -k1,8598:32583029,20789260:0 -) -(1,8599:6630773,21630748:25952256,513147,126483 -g1,8598:10416132,21630748 -g1,8598:11806806,21630748 -g1,8598:12940578,21630748 -g1,8598:14331252,21630748 -g1,8598:16294710,21630748 -g1,8598:18278484,21630748 -g1,8598:20496222,21630748 -g1,8598:22614345,21630748 -g1,8598:25889179,21630748 -g1,8598:27220870,21630748 -k1,8599:32583029,21630748:3786018 -g1,8599:32583029,21630748 -) -(1,8601:6630773,22472236:25952256,505283,134348 -h1,8600:6630773,22472236:983040,0,0 -k1,8600:9614900,22472236:217852 -k1,8600:13731490,22472236:217853 -k1,8600:14968427,22472236:217852 -k1,8600:18177999,22472236:217853 -k1,8600:19011889,22472236:217852 -k1,8600:20432983,22472236:217853 -k1,8600:23242129,22472236:217852 -k1,8600:24275249,22472236:217852 -k1,8600:26001085,22472236:217853 -k1,8600:27422178,22472236:217852 -k1,8600:29918718,22472236:217853 -k1,8600:30752608,22472236:217852 -k1,8600:32583029,22472236:0 -) -(1,8601:6630773,23313724:25952256,513147,134348 -k1,8600:7414584,23313724:155976 -k1,8600:10410234,23313724:155975 -k1,8600:11032171,23313724:155976 -k1,8600:12358620,23313724:155976 -k1,8600:13493048,23313724:155975 -k1,8600:15377208,23313724:155976 -k1,8600:17429796,23313724:155976 -k1,8600:18237199,23313724:155975 -k1,8600:19659331,23313724:155976 -k1,8600:20834391,23313724:155975 -k1,8600:22772291,23313724:155976 -k1,8600:23587559,23313724:155976 -k1,8600:24099394,23313724:155975 -k1,8600:25618519,23313724:155976 -k1,8600:26589763,23313724:155976 -k1,8600:28897940,23313724:155975 -k1,8600:30512747,23313724:155976 -k1,8600:32583029,23313724:0 -) -(1,8601:6630773,24155212:25952256,513147,126483 -k1,8600:8314516,24155212:217047 -k1,8600:9182991,24155212:217047 -k1,8600:10419123,24155212:217047 -k1,8600:12237870,24155212:217047 -k1,8600:14320726,24155212:217046 -k1,8600:15197065,24155212:217047 -k1,8600:18044072,24155212:217047 -k1,8600:20547015,24155212:217047 -k1,8600:21955507,24155212:217047 -k1,8600:22823982,24155212:217047 -k1,8600:24060114,24155212:217047 -k1,8600:25772693,24155212:217047 -k1,8600:27702195,24155212:217046 -k1,8600:29406254,24155212:217047 -k1,8600:31323960,24155212:217047 -k1,8600:32227169,24155212:217047 -k1,8600:32583029,24155212:0 -) -(1,8601:6630773,24996700:25952256,513147,134348 -k1,8600:7973087,24996700:152836 -k1,8600:8741961,24996700:152836 -k1,8600:9250658,24996700:152837 -k1,8600:11983646,24996700:152836 -k1,8600:14873921,24996700:152836 -k1,8600:16594378,24996700:152836 -k1,8600:18552030,24996700:152790 -k1,8600:19387752,24996700:152837 -k1,8600:19955385,24996700:152790 -k1,8600:22094617,24996700:152836 -k1,8600:23021433,24996700:152836 -k1,8600:25456888,24996700:152836 -k1,8600:27307763,24996700:152837 -k1,8600:30884855,24996700:152836 -k1,8600:31393551,24996700:152836 -k1,8600:32583029,24996700:0 -) -(1,8601:6630773,25838188:25952256,513147,126483 -k1,8600:7465795,25838188:218984 -k1,8600:9180965,25838188:218983 -k1,8600:10570422,25838188:218984 -k1,8600:12264621,25838188:218984 -k1,8600:13549876,25838188:218984 -k1,8600:16229081,25838188:218983 -k1,8600:16906162,25838188:218984 -k1,8600:17656643,25838188:218984 -k1,8600:19275475,25838188:218983 -k1,8600:20145887,25838188:218984 -k1,8600:21718845,25838188:218984 -k1,8600:24713934,25838188:218984 -k1,8600:26345218,25838188:218983 -k1,8600:27583287,25838188:218984 -k1,8600:32583029,25838188:0 -) -(1,8601:6630773,26679676:25952256,513147,134348 -k1,8600:7524111,26679676:207176 -k1,8600:8750371,26679676:207175 -k1,8600:10747335,26679676:207176 -k1,8600:12291445,26679676:207176 -k1,8600:13246386,26679676:207175 -k1,8600:14682362,26679676:207176 -k1,8600:15505576,26679676:207176 -k1,8600:17171583,26679676:207176 -k1,8600:22033780,26679676:207175 -k1,8600:22900248,26679676:207176 -k1,8600:24656040,26679676:207176 -k1,8600:25219075,26679676:207175 -k1,8600:27624329,26679676:207176 -k1,8600:29481702,26679676:207176 -k1,8600:30348169,26679676:207175 -k1,8600:32051532,26679676:207176 -k1,8600:32583029,26679676:0 -) -(1,8601:6630773,27521164:25952256,505283,134348 -k1,8600:9715758,27521164:245965 -k1,8600:10613151,27521164:245965 -k1,8600:11848053,27521164:245964 -k1,8600:13511562,27521164:245965 -k1,8600:15265510,27521164:245965 -k1,8600:16127513,27521164:245965 -k1,8600:18030227,27521164:245964 -k1,8600:19560698,27521164:245965 -k1,8600:20492825,27521164:245965 -k1,8600:23868134,27521164:245965 -k1,8600:24923468,27521164:245964 -k1,8600:26667586,27521164:245965 -h1,8600:27066045,27521164:0,0,0 -k1,8600:27485680,27521164:245965 -k1,8600:28902118,27521164:245965 -k1,8600:30280544,27521164:245964 -k1,8600:31274275,27521164:245965 -k1,8600:32583029,27521164:0 -) -(1,8601:6630773,28362652:25952256,513147,126483 -k1,8600:7551018,28362652:268817 -k1,8600:9085990,28362652:268816 -k1,8600:11332684,28362652:268817 -k1,8600:17174682,28362652:268816 -k1,8600:20538109,28362652:268817 -k1,8600:21458353,28362652:268816 -k1,8600:23478947,28362652:268817 -k1,8600:24407055,28362652:268816 -k1,8600:26134703,28362652:268817 -k1,8600:28115975,28362652:268816 -k1,8600:31391584,28362652:268817 -k1,8600:32583029,28362652:0 -) -(1,8601:6630773,29204140:25952256,513147,134348 -k1,8600:9296576,29204140:274394 -k1,8600:10612992,29204140:274394 -k1,8600:13722473,29204140:274394 -k1,8600:17057399,29204140:274395 -k1,8600:18725744,29204140:274394 -k1,8600:21195594,29204140:274394 -k1,8600:22417639,29204140:274394 -k1,8600:23711118,29204140:274394 -k1,8600:25211691,29204140:274394 -k1,8600:26145378,29204140:274395 -k1,8600:27190475,29204140:274394 -k1,8600:29071812,29204140:274394 -k1,8600:32051532,29204140:274394 -k1,8600:32583029,29204140:0 -) -(1,8601:6630773,30045628:25952256,505283,126483 -g1,8600:9117209,30045628 -g1,8600:10595045,30045628 -k1,8601:32583028,30045628:18824560 -g1,8601:32583028,30045628 -) -(1,8602:6630773,32853196:25952256,32768,229376 -(1,8602:6630773,32853196:0,32768,229376 -(1,8602:6630773,32853196:5505024,32768,229376 -r1,8622:12135797,32853196:5505024,262144,229376 -) -k1,8602:6630773,32853196:-5505024 -) -(1,8602:6630773,32853196:25952256,32768,0 -r1,8622:32583029,32853196:25952256,32768,0 -) -) -(1,8602:6630773,34457524:25952256,606339,151780 -(1,8602:6630773,34457524:1974731,582746,14155 -g1,8602:6630773,34457524 -g1,8602:8605504,34457524 -) -g1,8602:13195122,34457524 -k1,8602:32583029,34457524:15049948 -g1,8602:32583029,34457524 -) -(1,8606:6630773,35692228:25952256,505283,134348 -k1,8605:9968653,35692228:133169 -k1,8605:13618484,35692228:133169 -k1,8605:14855935,35692228:133169 -k1,8605:15736870,35692228:133169 -k1,8605:18530801,35692228:133169 -k1,8605:19931436,35692228:133169 -k1,8605:23359755,35692228:133169 -k1,8605:26900141,35692228:133169 -k1,8605:27794838,35692228:133169 -k1,8605:30943974,35692228:133169 -k1,8605:32583029,35692228:0 -) -(1,8606:6630773,36533716:25952256,505283,134348 -k1,8605:7538883,36533716:292072 -k1,8605:9433966,36533716:292072 -k1,8605:11955573,36533716:292072 -k1,8605:16413113,36533716:292072 -k1,8605:17236682,36533716:292072 -k1,8605:18674980,36533716:292073 -k1,8605:21306687,36533716:292072 -k1,8605:23830260,36533716:292072 -k1,8605:27638994,36533716:292072 -k1,8605:29198532,36533716:292072 -k1,8605:29846464,36533716:292072 -k1,8605:31298523,36533716:292072 -k1,8605:32583029,36533716:0 -) -(1,8606:6630773,37375204:25952256,505283,126483 -g1,8605:8841957,37375204 -g1,8605:9786330,37375204 -g1,8605:10636987,37375204 -g1,8605:13247286,37375204 -g1,8605:14840466,37375204 -g1,8605:16678750,37375204 -g1,8605:17564141,37375204 -g1,8605:18534073,37375204 -g1,8605:22434120,37375204 -k1,8606:32583029,37375204:8092389 -g1,8606:32583029,37375204 -) -] -(1,8622:32583029,45706769:0,0,0 -g1,8622:32583029,45706769 -) -) -] -(1,8622:6630773,47279633:25952256,0,0 -h1,8622:6630773,47279633:25952256,0,0 -) -] -(1,8622:4262630,4025873:0,0,0 -[1,8622:-473656,4025873:0,0,0 -(1,8622:-473656,-710413:0,0,0 -(1,8622:-473656,-710413:0,0,0 -g1,8622:-473656,-710413 -) -g1,8622:-473656,-710413 -) -] -) -] -!19775 -}145 -Input:1165:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!106 -{146 -[1,8679:4262630,47279633:28320399,43253760,0 -(1,8679:4262630,4025873:0,0,0 -[1,8679:-473656,4025873:0,0,0 -(1,8679:-473656,-710413:0,0,0 -(1,8679:-473656,-644877:0,0,0 -k1,8679:-473656,-644877:-65536 +k1,7926:3078556,49800853:-34777008 +) +] +g1,7926:6630773,4812305 +g1,7926:6630773,4812305 +g1,7926:8364200,4812305 +g1,7926:10765439,4812305 +k1,7926:31387651,4812305:20622212 +) +) +] +[1,7926:6630773,45706769:25952256,40108032,0 +(1,7926:6630773,45706769:25952256,40108032,0 +(1,7926:6630773,45706769:0,0,0 +g1,7926:6630773,45706769 +) +[1,7926:6630773,45706769:25952256,40108032,0 +v1,7893:6630773,6254097:0,393216,0 +(1,7893:6630773,16955262:25952256,11094381,0 +g1,7893:6630773,16955262 +g1,7893:6237557,16955262 +r1,7926:6368629,16955262:131072,11094381,0 +g1,7893:6567858,16955262 +g1,7893:6764466,16955262 +[1,7893:6764466,16955262:25818563,11094381,0 +(1,7862:6764466,6374028:25818563,513147,134348 +k1,7861:7954920,6374028:171369 +k1,7861:9159137,6374028:171369 +k1,7861:9989798,6374028:171369 +k1,7861:11180251,6374028:171368 +k1,7861:15171058,6374028:171369 +k1,7861:16384449,6374028:171369 +k1,7861:19390905,6374028:171369 +k1,7861:20213702,6374028:171369 +k1,7861:22809903,6374028:171369 +k1,7861:24000357,6374028:171369 +k1,7861:26884917,6374028:171369 +k1,7861:27715577,6374028:171368 +k1,7861:29276309,6374028:171369 +k1,7861:30382221,6374028:171369 +(1,7861:30382221,6374028:0,452978,115847 +r1,7926:31795622,6374028:1413401,568825,115847 +k1,7861:30382221,6374028:-1413401 +) +(1,7861:30382221,6374028:1413401,452978,115847 +k1,7861:30382221,6374028:3277 +h1,7861:31792345,6374028:0,411205,112570 +) +k1,7861:31966991,6374028:171369 +k1,7861:32583029,6374028:0 +) +(1,7862:6764466,7239108:25818563,505283,134348 +g1,7861:10377465,7239108 +g1,7861:14429556,7239108 +g1,7861:16541781,7239108 +g1,7861:17609362,7239108 +g1,7861:18901076,7239108 +(1,7861:18901076,7239108:0,452978,115847 +r1,7926:21017901,7239108:2116825,568825,115847 +k1,7861:18901076,7239108:-2116825 +) +(1,7861:18901076,7239108:2116825,452978,115847 +k1,7861:18901076,7239108:3277 +h1,7861:21014624,7239108:0,411205,112570 +) +g1,7861:21217130,7239108 +g1,7861:22102521,7239108 +g1,7861:24550946,7239108 +g1,7861:25433060,7239108 +(1,7861:25433060,7239108:0,452978,115847 +r1,7926:27901597,7239108:2468537,568825,115847 +k1,7861:25433060,7239108:-2468537 +) +(1,7861:25433060,7239108:2468537,452978,115847 +k1,7861:25433060,7239108:3277 +h1,7861:27898320,7239108:0,411205,112570 +) +g1,7861:28100826,7239108 +g1,7861:29532132,7239108 +g1,7861:31229514,7239108 +h1,7861:32026432,7239108:0,0,0 +k1,7862:32583029,7239108:175833 +g1,7862:32583029,7239108 +) +v1,7864:6764466,7923963:0,393216,0 +(1,7874:6764466,11032194:25818563,3501447,196608 +g1,7874:6764466,11032194 +g1,7874:6764466,11032194 +g1,7874:6567858,11032194 +(1,7874:6567858,11032194:0,3501447,196608 +r1,7926:32779637,11032194:26211779,3698055,196608 +k1,7874:6567857,11032194:-26211780 +) +(1,7874:6567858,11032194:26211779,3501447,196608 +[1,7874:6764466,11032194:25818563,3304839,0 +(1,7866:6764466,8151794:25818563,424439,112852 +(1,7865:6764466,8151794:0,0,0 +g1,7865:6764466,8151794 +g1,7865:6764466,8151794 +g1,7865:6436786,8151794 +(1,7865:6436786,8151794:0,0,0 +) +g1,7865:6764466,8151794 +) +g1,7866:12407683,8151794 +g1,7866:13403545,8151794 +g1,7866:15395269,8151794 +g1,7866:16059177,8151794 +g1,7866:23030210,8151794 +g1,7866:26681703,8151794 +g1,7866:27345611,8151794 +h1,7866:29337335,8151794:0,0,0 +k1,7866:32583029,8151794:3245694 +g1,7866:32583029,8151794 +) +(1,7867:6764466,8836649:25818563,424439,86428 +h1,7867:6764466,8836649:0,0,0 +g1,7867:14399407,8836649 +h1,7867:15063315,8836649:0,0,0 +k1,7867:32583029,8836649:17519714 +g1,7867:32583029,8836649 +) +(1,7873:6764466,9652576:25818563,424439,112852 +(1,7869:6764466,9652576:0,0,0 +g1,7869:6764466,9652576 +g1,7869:6764466,9652576 +g1,7869:6436786,9652576 +(1,7869:6436786,9652576:0,0,0 +) +g1,7869:6764466,9652576 +) +g1,7873:7760328,9652576 +g1,7873:8092282,9652576 +g1,7873:8424236,9652576 +g1,7873:11079868,9652576 +g1,7873:15063315,9652576 +g1,7873:19378716,9652576 +g1,7873:23362163,9652576 +h1,7873:27345610,9652576:0,0,0 +k1,7873:32583029,9652576:5237419 +g1,7873:32583029,9652576 +) +(1,7873:6764466,10337431:25818563,407923,9908 +h1,7873:6764466,10337431:0,0,0 +g1,7873:7760328,10337431 +g1,7873:8424236,10337431 +g1,7873:8756190,10337431 +g1,7873:11079868,10337431 +g1,7873:11411822,10337431 +g1,7873:11743776,10337431 +g1,7873:12075730,10337431 +g1,7873:12407684,10337431 +g1,7873:12739638,10337431 +g1,7873:13071592,10337431 +g1,7873:13403546,10337431 +g1,7873:13735500,10337431 +g1,7873:15063316,10337431 +g1,7873:15395270,10337431 +g1,7873:15727224,10337431 +g1,7873:16059178,10337431 +g1,7873:16391132,10337431 +g1,7873:16723086,10337431 +g1,7873:17055040,10337431 +g1,7873:17386994,10337431 +g1,7873:17718948,10337431 +g1,7873:18050902,10337431 +g1,7873:19378718,10337431 +g1,7873:19710672,10337431 +g1,7873:20042626,10337431 +g1,7873:20374580,10337431 +g1,7873:20706534,10337431 +g1,7873:21038488,10337431 +g1,7873:21370442,10337431 +g1,7873:21702396,10337431 +g1,7873:22034350,10337431 +g1,7873:23362166,10337431 +g1,7873:23694120,10337431 +g1,7873:24026074,10337431 +g1,7873:24358028,10337431 +g1,7873:24689982,10337431 +g1,7873:25021936,10337431 +g1,7873:25353890,10337431 +g1,7873:25685844,10337431 +g1,7873:26017798,10337431 +g1,7873:26349752,10337431 +h1,7873:27345614,10337431:0,0,0 +k1,7873:32583029,10337431:5237415 +g1,7873:32583029,10337431 +) +(1,7873:6764466,11022286:25818563,407923,9908 +h1,7873:6764466,11022286:0,0,0 +g1,7873:7760328,11022286 +g1,7873:8424236,11022286 +g1,7873:8756190,11022286 +g1,7873:11079868,11022286 +g1,7873:11411822,11022286 +g1,7873:11743776,11022286 +g1,7873:12075730,11022286 +g1,7873:12407684,11022286 +g1,7873:12739638,11022286 +g1,7873:13071592,11022286 +g1,7873:13403546,11022286 +g1,7873:13735500,11022286 +g1,7873:15063316,11022286 +g1,7873:15395270,11022286 +g1,7873:15727224,11022286 +g1,7873:16059178,11022286 +g1,7873:16391132,11022286 +g1,7873:16723086,11022286 +g1,7873:17055040,11022286 +g1,7873:17386994,11022286 +g1,7873:17718948,11022286 +g1,7873:18050902,11022286 +g1,7873:19378718,11022286 +g1,7873:19710672,11022286 +g1,7873:20042626,11022286 +g1,7873:20374580,11022286 +g1,7873:20706534,11022286 +g1,7873:21038488,11022286 +g1,7873:21370442,11022286 +g1,7873:21702396,11022286 +g1,7873:22034350,11022286 +g1,7873:23362166,11022286 +g1,7873:23694120,11022286 +g1,7873:24026074,11022286 +g1,7873:24358028,11022286 +g1,7873:24689982,11022286 +g1,7873:25021936,11022286 +g1,7873:25353890,11022286 +g1,7873:25685844,11022286 +g1,7873:26017798,11022286 +g1,7873:26349752,11022286 +h1,7873:27345614,11022286:0,0,0 +k1,7873:32583029,11022286:5237415 +g1,7873:32583029,11022286 +) +] +) +g1,7874:32583029,11032194 +g1,7874:6764466,11032194 +g1,7874:6764466,11032194 +g1,7874:32583029,11032194 +g1,7874:32583029,11032194 +) +h1,7874:6764466,11228802:0,0,0 +(1,7878:6764466,12093882:25818563,505283,134348 +h1,7877:6764466,12093882:983040,0,0 +k1,7877:10859372,12093882:318722 +k1,7877:12046447,12093882:318723 +k1,7877:13457654,12093882:318722 +k1,7877:15787021,12093882:318722 +k1,7877:16721782,12093882:318723 +k1,7877:17396364,12093882:318722 +k1,7877:20097975,12093882:318722 +k1,7877:21102859,12093882:318722 +k1,7877:24493910,12093882:318723 +k1,7877:25464060,12093882:318722 +(1,7877:25464060,12093882:0,452978,115847 +r1,7926:27932597,12093882:2468537,568825,115847 +k1,7877:25464060,12093882:-2468537 +) +(1,7877:25464060,12093882:2468537,452978,115847 +k1,7877:25464060,12093882:3277 +h1,7877:27929320,12093882:0,411205,112570 +) +k1,7877:28251319,12093882:318722 +k1,7877:29221470,12093882:318723 +k1,7877:31563944,12093882:318722 +k1,7878:32583029,12093882:0 +) +(1,7878:6764466,12958962:25818563,505283,115847 +(1,7877:6764466,12958962:0,452978,115847 +r1,7926:9233003,12958962:2468537,568825,115847 +k1,7877:6764466,12958962:-2468537 +) +(1,7877:6764466,12958962:2468537,452978,115847 +k1,7877:6764466,12958962:3277 +h1,7877:9229726,12958962:0,411205,112570 +) +g1,7877:9432232,12958962 +g1,7877:11880657,12958962 +g1,7877:12731314,12958962 +g1,7877:14200631,12958962 +k1,7878:32583029,12958962:16674530 +g1,7878:32583029,12958962 +) +v1,7880:6764466,13643817:0,393216,0 +(1,7890:6764466,16758654:25818563,3508053,196608 +g1,7890:6764466,16758654 +g1,7890:6764466,16758654 +g1,7890:6567858,16758654 +(1,7890:6567858,16758654:0,3508053,196608 +r1,7926:32779637,16758654:26211779,3704661,196608 +k1,7890:6567857,16758654:-26211780 +) +(1,7890:6567858,16758654:26211779,3508053,196608 +[1,7890:6764466,16758654:25818563,3311445,0 +(1,7882:6764466,13878254:25818563,431045,112852 +(1,7881:6764466,13878254:0,0,0 +g1,7881:6764466,13878254 +g1,7881:6764466,13878254 +g1,7881:6436786,13878254 +(1,7881:6436786,13878254:0,0,0 +) +g1,7881:6764466,13878254 +) +g1,7882:12407683,13878254 +g1,7882:13403545,13878254 +g1,7882:23694118,13878254 +h1,7882:24026072,13878254:0,0,0 +k1,7882:32583029,13878254:8556957 +g1,7882:32583029,13878254 +) +(1,7883:6764466,14563109:25818563,424439,86428 +h1,7883:6764466,14563109:0,0,0 +g1,7883:14399407,14563109 +h1,7883:15063315,14563109:0,0,0 +k1,7883:32583029,14563109:17519714 +g1,7883:32583029,14563109 +) +(1,7889:6764466,15379036:25818563,424439,112852 +(1,7885:6764466,15379036:0,0,0 +g1,7885:6764466,15379036 +g1,7885:6764466,15379036 +g1,7885:6436786,15379036 +(1,7885:6436786,15379036:0,0,0 +) +g1,7885:6764466,15379036 +) +g1,7889:7760328,15379036 +g1,7889:8092282,15379036 +g1,7889:8424236,15379036 +g1,7889:8756190,15379036 +g1,7889:13071591,15379036 +g1,7889:17055038,15379036 +g1,7889:21370439,15379036 +g1,7889:25353886,15379036 +h1,7889:27677564,15379036:0,0,0 +k1,7889:32583029,15379036:4905465 +g1,7889:32583029,15379036 +) +(1,7889:6764466,16063891:25818563,407923,9908 +h1,7889:6764466,16063891:0,0,0 +g1,7889:7760328,16063891 +g1,7889:8756190,16063891 +g1,7889:9088144,16063891 +g1,7889:9420098,16063891 +g1,7889:9752052,16063891 +g1,7889:10084006,16063891 +g1,7889:10415960,16063891 +g1,7889:10747914,16063891 +g1,7889:11079868,16063891 +g1,7889:11411822,16063891 +g1,7889:11743776,16063891 +g1,7889:13071592,16063891 +g1,7889:13403546,16063891 +g1,7889:13735500,16063891 +g1,7889:14067454,16063891 +g1,7889:14399408,16063891 +g1,7889:14731362,16063891 +g1,7889:15063316,16063891 +g1,7889:15395270,16063891 +g1,7889:15727224,16063891 +g1,7889:17055040,16063891 +g1,7889:17386994,16063891 +g1,7889:17718948,16063891 +g1,7889:18050902,16063891 +g1,7889:18382856,16063891 +g1,7889:18714810,16063891 +g1,7889:19046764,16063891 +g1,7889:19378718,16063891 +g1,7889:19710672,16063891 +g1,7889:20042626,16063891 +g1,7889:21370442,16063891 +g1,7889:21702396,16063891 +g1,7889:22034350,16063891 +g1,7889:22366304,16063891 +g1,7889:22698258,16063891 +g1,7889:23030212,16063891 +g1,7889:23362166,16063891 +g1,7889:23694120,16063891 +g1,7889:24026074,16063891 +g1,7889:25353890,16063891 +g1,7889:25685844,16063891 +h1,7889:27677568,16063891:0,0,0 +k1,7889:32583029,16063891:4905461 +g1,7889:32583029,16063891 +) +(1,7889:6764466,16748746:25818563,407923,9908 +h1,7889:6764466,16748746:0,0,0 +g1,7889:7760328,16748746 +g1,7889:8756190,16748746 +g1,7889:9088144,16748746 +g1,7889:9420098,16748746 +g1,7889:9752052,16748746 +g1,7889:10084006,16748746 +g1,7889:10415960,16748746 +g1,7889:10747914,16748746 +g1,7889:11079868,16748746 +g1,7889:11411822,16748746 +g1,7889:11743776,16748746 +g1,7889:13071592,16748746 +g1,7889:13403546,16748746 +g1,7889:13735500,16748746 +g1,7889:14067454,16748746 +g1,7889:14399408,16748746 +g1,7889:14731362,16748746 +g1,7889:15063316,16748746 +g1,7889:15395270,16748746 +g1,7889:15727224,16748746 +g1,7889:17055040,16748746 +g1,7889:17386994,16748746 +g1,7889:17718948,16748746 +g1,7889:18050902,16748746 +g1,7889:18382856,16748746 +g1,7889:18714810,16748746 +g1,7889:19046764,16748746 +g1,7889:19378718,16748746 +g1,7889:19710672,16748746 +g1,7889:20042626,16748746 +g1,7889:21370442,16748746 +g1,7889:21702396,16748746 +g1,7889:22034350,16748746 +g1,7889:22366304,16748746 +g1,7889:22698258,16748746 +g1,7889:23030212,16748746 +g1,7889:23362166,16748746 +g1,7889:23694120,16748746 +g1,7889:24026074,16748746 +g1,7889:25353890,16748746 +g1,7889:25685844,16748746 +h1,7889:27677568,16748746:0,0,0 +k1,7889:32583029,16748746:4905461 +g1,7889:32583029,16748746 +) +] +) +g1,7890:32583029,16758654 +g1,7890:6764466,16758654 +g1,7890:6764466,16758654 +g1,7890:32583029,16758654 +g1,7890:32583029,16758654 +) +h1,7890:6764466,16955262:0,0,0 +] +g1,7893:32583029,16955262 +) +h1,7893:6630773,16955262:0,0,0 +v1,7895:6630773,17820342:0,393216,0 +(1,7897:6630773,25165127:25952256,7738001,0 +g1,7897:6630773,25165127 +g1,7897:6237557,25165127 +r1,7926:6368629,25165127:131072,7738001,0 +g1,7897:6567858,25165127 +g1,7897:6764466,25165127 +[1,7897:6764466,25165127:25818563,7738001,0 +(1,7897:6764466,18128640:25818563,701514,196608 +(1,7895:6764466,18128640:0,701514,196608 +r1,7926:8863446,18128640:2098980,898122,196608 +k1,7895:6764466,18128640:-2098980 +) +(1,7895:6764466,18128640:2098980,701514,196608 +) +k1,7895:9064708,18128640:201262 +k1,7895:10790926,18128640:327680 +k1,7895:10790926,18128640:0 +k1,7896:13043464,18128640:201261 +k1,7896:13600586,18128640:201262 +k1,7896:15085042,18128640:201261 +k1,7896:16675667,18128640:201262 +k1,7896:18753225,18128640:201262 +k1,7896:20145931,18128640:201261 +k1,7896:21741144,18128640:201262 +k1,7896:23597189,18128640:201261 +k1,7896:26418580,18128640:201262 +k1,7896:29333032,18128640:201261 +k1,7896:30928245,18128640:201262 +k1,7896:32583029,18128640:0 +) +(1,7897:6764466,18993720:25818563,513147,126483 +k1,7896:9760718,18993720:233909 +k1,7896:13411674,18993720:233909 +k1,7896:16915830,18993720:233909 +k1,7896:17809030,18993720:233908 +k1,7896:20053584,18993720:233909 +k1,7896:21478938,18993720:233909 +k1,7896:22068707,18993720:233909 +k1,7896:24196606,18993720:233909 +k1,7896:25824466,18993720:233909 +k1,7896:27230813,18993720:233908 +k1,7896:29430802,18993720:233909 +k1,7896:30886302,18993720:233909 +k1,7896:32583029,18993720:0 +) +(1,7897:6764466,19858800:25818563,513147,115847 +k1,7896:9717058,19858800:239401 +(1,7896:9717058,19858800:0,414482,115847 +r1,7926:10075324,19858800:358266,530329,115847 +k1,7896:9717058,19858800:-358266 +) +(1,7896:9717058,19858800:358266,414482,115847 +k1,7896:9717058,19858800:3277 +h1,7896:10072047,19858800:0,411205,112570 +) +k1,7896:10488395,19858800:239401 +(1,7896:10488395,19858800:0,414482,115847 +r1,7926:10846661,19858800:358266,530329,115847 +k1,7896:10488395,19858800:-358266 +) +(1,7896:10488395,19858800:358266,414482,115847 +k1,7896:10488395,19858800:3277 +h1,7896:10843384,19858800:0,411205,112570 +) +k1,7896:11259732,19858800:239401 +(1,7896:11259732,19858800:0,414482,115847 +r1,7926:11617998,19858800:358266,530329,115847 +k1,7896:11259732,19858800:-358266 +) +(1,7896:11259732,19858800:358266,414482,115847 +k1,7896:11259732,19858800:3277 +h1,7896:11614721,19858800:0,411205,112570 +) +k1,7896:11857400,19858800:239402 +k1,7896:13288246,19858800:239401 +(1,7896:13288246,19858800:0,414482,115847 +r1,7926:13646512,19858800:358266,530329,115847 +k1,7896:13288246,19858800:-358266 +) +(1,7896:13288246,19858800:358266,414482,115847 +k1,7896:13288246,19858800:3277 +h1,7896:13643235,19858800:0,411205,112570 +) +k1,7896:14059583,19858800:239401 +k1,7896:14904537,19858800:239401 +k1,7896:16438929,19858800:239401 +k1,7896:17697415,19858800:239401 +k1,7896:19471015,19858800:239402 +k1,7896:20369708,19858800:239401 +k1,7896:21628194,19858800:239401 +k1,7896:23256958,19858800:239401 +k1,7896:25372655,19858800:239401 +k1,7896:26336884,19858800:239401 +k1,7896:27860792,19858800:239402 +k1,7896:29119278,19858800:239401 +k1,7896:31369324,19858800:239401 +k1,7896:32224763,19858800:239401 +(1,7896:32224763,19858800:0,414482,115847 +r1,7926:32583029,19858800:358266,530329,115847 +k1,7896:32224763,19858800:-358266 +) +(1,7896:32224763,19858800:358266,414482,115847 +k1,7896:32224763,19858800:3277 +h1,7896:32579752,19858800:0,411205,112570 +) +k1,7896:32583029,19858800:0 +) +(1,7897:6764466,20723880:25818563,513147,134348 +k1,7896:7931475,20723880:175449 +k1,7896:8722962,20723880:175449 +k1,7896:12312182,20723880:175450 +k1,7896:14400627,20723880:175449 +k1,7896:15181629,20723880:175449 +k1,7896:16652069,20723880:175449 +k1,7896:17846603,20723880:175449 +k1,7896:19556251,20723880:175450 +k1,7896:20390992,20723880:175449 +k1,7896:21585526,20723880:175449 +k1,7896:23150338,20723880:175449 +k1,7896:25202084,20723880:175450 +k1,7896:28494425,20723880:175449 +k1,7896:29321302,20723880:175449 +k1,7896:32583029,20723880:0 +) +(1,7897:6764466,21588960:25818563,513147,134348 +k1,7896:9004551,21588960:229440 +k1,7896:9893283,21588960:229440 +k1,7896:11141808,21588960:229440 +k1,7896:12736363,21588960:229440 +k1,7896:13632958,21588960:229439 +(1,7896:13632958,21588960:0,414482,115847 +r1,7926:13991224,21588960:358266,530329,115847 +k1,7896:13632958,21588960:-358266 +) +(1,7896:13632958,21588960:358266,414482,115847 +k1,7896:13632958,21588960:3277 +h1,7896:13987947,21588960:0,411205,112570 +) +k1,7896:14220664,21588960:229440 +k1,7896:15641549,21588960:229440 +(1,7896:15641549,21588960:0,414482,115847 +r1,7926:15999815,21588960:358266,530329,115847 +k1,7896:15641549,21588960:-358266 +) +(1,7896:15641549,21588960:358266,414482,115847 +k1,7896:15641549,21588960:3277 +h1,7896:15996538,21588960:0,411205,112570 +) +k1,7896:16229255,21588960:229440 +k1,7896:18918917,21588960:229440 +k1,7896:21335949,21588960:229440 +k1,7896:21921249,21588960:229440 +k1,7896:23433884,21588960:229440 +k1,7896:26046212,21588960:229439 +k1,7896:26927080,21588960:229440 +k1,7896:28175605,21588960:229440 +k1,7896:29794408,21588960:229440 +k1,7896:31900144,21588960:229440 +k1,7896:32583029,21588960:0 +) +(1,7897:6764466,22454040:25818563,513147,134348 +k1,7896:9246970,22454040:222167 +k1,7896:10488222,22454040:222167 +k1,7896:12688266,22454040:222167 +k1,7896:13569725,22454040:222167 +k1,7896:15487308,22454040:222167 +k1,7896:16325513,22454040:222167 +k1,7896:16903540,22454040:222167 +k1,7896:19810717,22454040:222167 +k1,7896:20660719,22454040:222167 +k1,7896:22584856,22454040:222167 +k1,7896:24935632,22454040:222167 +k1,7896:25973067,22454040:222167 +k1,7896:27214319,22454040:222167 +k1,7896:29696823,22454040:222167 +k1,7896:31773659,22454040:222167 +k1,7896:32583029,22454040:0 +) +(1,7897:6764466,23319120:25818563,513147,126483 +k1,7896:8665720,23319120:205838 +k1,7896:12100516,23319120:205837 +k1,7896:13115724,23319120:205838 +k1,7896:14340646,23319120:205837 +k1,7896:15515761,23319120:205838 +k1,7896:17016589,23319120:205837 +k1,7896:18241512,23319120:205838 +k1,7896:19981548,23319120:205838 +k1,7896:20948913,23319120:205837 +k1,7896:22616859,23319120:205838 +k1,7896:23481988,23319120:205837 +k1,7896:25581816,23319120:205838 +(1,7896:25581816,23319120:0,414482,115847 +r1,7926:25940082,23319120:358266,530329,115847 +k1,7896:25581816,23319120:-358266 +) +(1,7896:25581816,23319120:358266,414482,115847 +k1,7896:25581816,23319120:3277 +h1,7896:25936805,23319120:0,411205,112570 +) +k1,7896:26145919,23319120:205837 +k1,7896:27543202,23319120:205838 +k1,7896:29721673,23319120:205837 +k1,7896:30689039,23319120:205838 +k1,7896:32583029,23319120:0 +) +(1,7897:6764466,24184200:25818563,513147,134348 +k1,7896:8445566,24184200:218992 +k1,7896:9856003,24184200:218992 +k1,7896:10836523,24184200:218992 +k1,7896:12735858,24184200:218992 +k1,7896:13622006,24184200:218992 +(1,7896:13622006,24184200:0,414482,115847 +r1,7926:13980272,24184200:358266,530329,115847 +k1,7896:13622006,24184200:-358266 +) +(1,7896:13622006,24184200:358266,414482,115847 +k1,7896:13622006,24184200:3277 +h1,7896:13976995,24184200:0,411205,112570 +) +k1,7896:14199264,24184200:218992 +k1,7896:16428245,24184200:218992 +k1,7896:18098859,24184200:218992 +k1,7896:20211841,24184200:218992 +k1,7896:22066612,24184200:218992 +k1,7896:23837497,24184200:218992 +k1,7896:26038953,24184200:218992 +k1,7896:27277030,24184200:218992 +k1,7896:30056514,24184200:218992 +k1,7896:31084876,24184200:218992 +k1,7896:32583029,24184200:0 +) +(1,7897:6764466,25049280:25818563,513147,115847 +h1,7896:7561384,25049280:0,0,0 +g1,7896:7760613,25049280 +g1,7896:9463893,25049280 +g1,7896:10682207,25049280 +g1,7896:11973921,25049280 +g1,7896:12840306,25049280 +(1,7896:12840306,25049280:0,452978,115847 +r1,7926:15308843,25049280:2468537,568825,115847 +k1,7896:12840306,25049280:-2468537 +) +(1,7896:12840306,25049280:2468537,452978,115847 +k1,7896:12840306,25049280:3277 +h1,7896:15305566,25049280:0,411205,112570 +) +g1,7896:15508072,25049280 +g1,7896:16516671,25049280 +g1,7896:18940192,25049280 +g1,7896:19670918,25049280 +k1,7897:32583029,25049280:9648418 +g1,7897:32583029,25049280 +) +] +g1,7897:32583029,25165127 +) +h1,7897:6630773,25165127:0,0,0 +(1,7899:6630773,27281945:25952256,555811,147783 +(1,7899:6630773,27281945:2450326,527696,0 +g1,7899:6630773,27281945 +g1,7899:9081099,27281945 +) +g1,7899:13757552,27281945 +g1,7899:14760319,27281945 +g1,7899:17463680,27281945 +k1,7899:32583029,27281945:11798181 +g1,7899:32583029,27281945 +) +(1,7902:6630773,28540241:25952256,513147,134348 +k1,7901:7262452,28540241:161786 +k1,7901:7955736,28540241:161787 +k1,7901:10894938,28540241:161786 +k1,7901:12341231,28540241:161787 +k1,7901:14195157,28540241:161786 +k1,7901:17198584,28540241:161786 +k1,7901:18890637,28540241:161787 +k1,7901:19703851,28540241:161786 +k1,7901:20613404,28540241:161787 +k1,7901:22740615,28540241:161786 +k1,7901:23553829,28540241:161786 +k1,7901:24486319,28540241:161787 +k1,7901:27139128,28540241:161786 +k1,7901:28690278,28540241:161787 +k1,7901:30728360,28540241:161786 +k1,7901:32583029,28540241:0 +) +(1,7902:6630773,29405321:25952256,513147,134348 +k1,7901:7600605,29405321:160462 +k1,7901:10252091,29405321:160463 +k1,7901:13427864,29405321:160462 +k1,7901:15444306,29405321:160462 +k1,7901:16290931,29405321:160463 +k1,7901:16807253,29405321:160462 +k1,7901:20176358,29405321:160462 +k1,7901:22017163,29405321:160462 +k1,7901:22860511,29405321:160463 +k1,7901:24875642,29405321:160462 +k1,7901:25845474,29405321:160462 +k1,7901:28813499,29405321:160463 +k1,7901:29921612,29405321:160462 +k1,7901:32583029,29405321:0 +) +(1,7902:6630773,30270401:25952256,513147,126483 +k1,7901:10366023,30270401:260531 +k1,7901:11277982,30270401:260531 +k1,7901:13817855,30270401:260531 +k1,7901:15904874,30270401:260531 +k1,7901:18499797,30270401:260531 +k1,7901:19376366,30270401:260531 +k1,7901:19992756,30270401:260530 +k1,7901:21642650,30270401:260531 +k1,7901:23953147,30270401:260531 +k1,7901:24841513,30270401:260531 +k1,7901:26121129,30270401:260531 +k1,7901:28622991,30270401:260531 +k1,7901:30424273,30270401:260531 +k1,7901:32583029,30270401:0 +) +(1,7902:6630773,31135481:25952256,505283,126483 +k1,7901:9176577,31135481:237626 +k1,7901:10518485,31135481:237626 +k1,7901:11503876,31135481:237625 +k1,7901:13254728,31135481:237626 +k1,7901:14143782,31135481:237626 +k1,7901:16679756,31135481:237626 +k1,7901:18928026,31135481:237625 +k1,7901:19781690,31135481:237626 +k1,7901:20375176,31135481:237626 +k1,7901:23124142,31135481:237626 +k1,7901:24044652,31135481:237625 +k1,7901:24933706,31135481:237626 +k1,7901:26368675,31135481:237626 +k1,7901:26962161,31135481:237626 +k1,7901:29711127,31135481:237626 +k1,7901:30600180,31135481:237625 +k1,7901:31193666,31135481:237626 +k1,7901:32583029,31135481:0 +) +(1,7902:6630773,32000561:25952256,513147,7863 +k1,7902:32583029,32000561:23902290 +g1,7902:32583029,32000561 +) +(1,7904:6630773,32865641:25952256,513147,134348 +h1,7903:6630773,32865641:983040,0,0 +k1,7903:10561840,32865641:196826 +k1,7903:11290164,32865641:196827 +k1,7903:14116950,32865641:196826 +k1,7903:16843466,32865641:196826 +k1,7903:18059378,32865641:196827 +k1,7903:20269470,32865641:196826 +k1,7903:21125588,32865641:196826 +k1,7903:22341500,32865641:196827 +k1,7903:24218669,32865641:196826 +k1,7903:27194222,32865641:196826 +k1,7903:28152577,32865641:196827 +k1,7903:29368488,32865641:196826 +k1,7903:32583029,32865641:0 +) +(1,7904:6630773,33730721:25952256,513147,134348 +k1,7903:9546775,33730721:169388 +(1,7903:9546775,33730721:0,452978,115847 +r1,7926:10608465,33730721:1061690,568825,115847 +k1,7903:9546775,33730721:-1061690 +) +(1,7903:9546775,33730721:1061690,452978,115847 +g1,7903:10253476,33730721 +h1,7903:10605188,33730721:0,411205,112570 +) +k1,7903:10777853,33730721:169388 +k1,7903:11478738,33730721:169388 +k1,7903:13342888,33730721:169389 +k1,7903:14273804,33730721:169388 +k1,7903:15462277,33730721:169388 +k1,7903:17644931,33730721:169388 +k1,7903:18473611,33730721:169388 +k1,7903:19662084,33730721:169388 +k1,7903:22570877,33730721:169388 +k1,7903:24718142,33730721:169388 +k1,7903:26119608,33730721:169389 +k1,7903:28567683,33730721:169388 +h1,7903:29936730,33730721:0,0,0 +k1,7903:30106118,33730721:169388 +k1,7903:31084876,33730721:169388 +k1,7903:32583029,33730721:0 +) +(1,7904:6630773,34595801:25952256,513147,134348 +h1,7903:7427691,34595801:0,0,0 +k1,7903:8030458,34595801:222003 +k1,7903:11215344,34595801:222003 +k1,7903:12305699,34595801:222003 +k1,7903:14188384,34595801:222003 +k1,7903:16782135,34595801:222003 +k1,7903:20169528,34595801:222004 +k1,7903:21594772,34595801:222003 +k1,7903:24801285,34595801:222003 +k1,7903:25554785,34595801:222003 +k1,7903:27378488,34595801:222003 +k1,7903:29577712,34595801:222003 +k1,7903:31193666,34595801:222003 +k1,7903:32583029,34595801:0 +) +(1,7904:6630773,35460881:25952256,513147,134348 +g1,7903:9036599,35460881 +g1,7903:12597825,35460881 +g1,7903:14548831,35460881 +k1,7904:32583029,35460881:16326330 +g1,7904:32583029,35460881 +) +(1,7906:6630773,36325961:25952256,513147,134348 +h1,7905:6630773,36325961:983040,0,0 +k1,7905:8250604,36325961:159034 +k1,7905:9428723,36325961:159034 +k1,7905:12078780,36325961:159034 +k1,7905:14749154,36325961:159034 +k1,7905:15439685,36325961:159034 +k1,7905:15954579,36325961:159034 +k1,7905:19088292,36325961:159034 +k1,7905:21225203,36325961:159034 +k1,7905:22067122,36325961:159034 +k1,7905:24293817,36325961:159034 +k1,7905:25321203,36325961:159034 +k1,7905:27010503,36325961:159034 +k1,7905:27820965,36325961:159034 +k1,7905:29909379,36325961:159034 +k1,7905:30424273,36325961:159034 +k1,7905:32583029,36325961:0 +) +(1,7906:6630773,37191041:25952256,505283,134348 +g1,7905:8807879,37191041 +g1,7905:10401059,37191041 +g1,7905:11619373,37191041 +g1,7905:13101797,37191041 +g1,7905:15311671,37191041 +g1,7905:16197062,37191041 +g1,7905:17785654,37191041 +g1,7905:19176328,37191041 +g1,7905:20394642,37191041 +g1,7905:23084894,37191041 +g1,7905:25294768,37191041 +g1,7905:26180159,37191041 +k1,7906:32583029,37191041:4160883 +g1,7906:32583029,37191041 +) +v1,7908:6630773,37875896:0,393216,0 +(1,7926:6630773,45099863:25952256,7617183,196608 +g1,7926:6630773,45099863 +g1,7926:6630773,45099863 +g1,7926:6434165,45099863 +(1,7926:6434165,45099863:0,7617183,196608 +r1,7926:32779637,45099863:26345472,7813791,196608 +k1,7926:6434165,45099863:-26345472 +) +(1,7926:6434165,45099863:26345472,7617183,196608 +[1,7926:6630773,45099863:25952256,7420575,0 +(1,7910:6630773,38110333:25952256,431045,106246 +(1,7909:6630773,38110333:0,0,0 +g1,7909:6630773,38110333 +g1,7909:6630773,38110333 +g1,7909:6303093,38110333 +(1,7909:6303093,38110333:0,0,0 +) +g1,7909:6630773,38110333 +) +g1,7910:8622497,38110333 +k1,7910:8622497,38110333:0 +h1,7910:9286405,38110333:0,0,0 +k1,7910:32583029,38110333:23296624 +g1,7910:32583029,38110333 +) +(1,7911:6630773,38795188:25952256,431045,112852 +h1,7911:6630773,38795188:0,0,0 +g1,7911:6962727,38795188 +g1,7911:7294681,38795188 +g1,7911:13933759,38795188 +g1,7911:14597667,38795188 +g1,7911:18581115,38795188 +g1,7911:22232608,38795188 +g1,7911:26216055,38795188 +k1,7911:26216055,38795188:0 +h1,7911:27211917,38795188:0,0,0 +k1,7911:32583029,38795188:5371112 +g1,7911:32583029,38795188 +) +(1,7912:6630773,39480043:25952256,424439,86428 +h1,7912:6630773,39480043:0,0,0 +g1,7912:6962727,39480043 +g1,7912:7294681,39480043 +g1,7912:7626635,39480043 +g1,7912:7958589,39480043 +g1,7912:8290543,39480043 +g1,7912:8622497,39480043 +g1,7912:8954451,39480043 +g1,7912:9286405,39480043 +g1,7912:9618359,39480043 +g1,7912:9950313,39480043 +g1,7912:10282267,39480043 +g1,7912:10614221,39480043 +g1,7912:10946175,39480043 +g1,7912:12937899,39480043 +g1,7912:13601807,39480043 +g1,7912:15925485,39480043 +g1,7912:17585255,39480043 +g1,7912:19245025,39480043 +g1,7912:20904795,39480043 +g1,7912:22564565,39480043 +h1,7912:24224335,39480043:0,0,0 +k1,7912:32583029,39480043:8358694 +g1,7912:32583029,39480043 +) +(1,7913:6630773,40164898:25952256,424439,86428 +h1,7913:6630773,40164898:0,0,0 +g1,7913:8954451,40164898 +g1,7913:9950313,40164898 +g1,7913:11610083,40164898 +g1,7913:12273991,40164898 +g1,7913:14597669,40164898 +g1,7913:17253301,40164898 +g1,7913:17917209,40164898 +g1,7913:19908933,40164898 +g1,7913:22564565,40164898 +g1,7913:23228473,40164898 +h1,7913:24888243,40164898:0,0,0 +k1,7913:32583029,40164898:7694786 +g1,7913:32583029,40164898 +) +(1,7914:6630773,40849753:25952256,431045,112852 +h1,7914:6630773,40849753:0,0,0 +g1,7914:10946175,40849753 +g1,7914:11942037,40849753 +h1,7914:19245023,40849753:0,0,0 +k1,7914:32583029,40849753:13338006 +g1,7914:32583029,40849753 +) +(1,7915:6630773,41534608:25952256,431045,106246 +h1,7915:6630773,41534608:0,0,0 +h1,7915:8290543,41534608:0,0,0 +k1,7915:32583029,41534608:24292486 +g1,7915:32583029,41534608 +) +(1,7925:6630773,42350535:25952256,424439,112852 +(1,7917:6630773,42350535:0,0,0 +g1,7917:6630773,42350535 +g1,7917:6630773,42350535 +g1,7917:6303093,42350535 +(1,7917:6303093,42350535:0,0,0 +) +g1,7917:6630773,42350535 +) +g1,7925:7626635,42350535 +g1,7925:7958589,42350535 +g1,7925:8290543,42350535 +g1,7925:11278128,42350535 +g1,7925:13269852,42350535 +h1,7925:15261576,42350535:0,0,0 +k1,7925:32583028,42350535:17321452 +g1,7925:32583028,42350535 +) +(1,7925:6630773,43035390:25952256,407923,9908 +h1,7925:6630773,43035390:0,0,0 +g1,7925:7626635,43035390 +g1,7925:8290543,43035390 +g1,7925:8622497,43035390 +g1,7925:8954451,43035390 +g1,7925:9286405,43035390 +g1,7925:9618359,43035390 +g1,7925:9950313,43035390 +g1,7925:10282267,43035390 +g1,7925:11278129,43035390 +g1,7925:11610083,43035390 +g1,7925:11942037,43035390 +g1,7925:13269853,43035390 +g1,7925:13601807,43035390 +h1,7925:15261577,43035390:0,0,0 +k1,7925:32583029,43035390:17321452 +g1,7925:32583029,43035390 +) +(1,7925:6630773,43720245:25952256,407923,9908 +h1,7925:6630773,43720245:0,0,0 +g1,7925:7626635,43720245 +g1,7925:8290543,43720245 +g1,7925:8622497,43720245 +g1,7925:11278129,43720245 +g1,7925:11610083,43720245 +g1,7925:11942037,43720245 +g1,7925:13269853,43720245 +g1,7925:13601807,43720245 +g1,7925:13933761,43720245 +h1,7925:15261577,43720245:0,0,0 +k1,7925:32583029,43720245:17321452 +g1,7925:32583029,43720245 +) +(1,7925:6630773,44405100:25952256,407923,9908 +h1,7925:6630773,44405100:0,0,0 +g1,7925:7626635,44405100 +g1,7925:8290543,44405100 +g1,7925:8622497,44405100 +g1,7925:11278129,44405100 +g1,7925:11610083,44405100 +g1,7925:11942037,44405100 +g1,7925:13269853,44405100 +g1,7925:13601807,44405100 +g1,7925:13933761,44405100 +h1,7925:15261577,44405100:0,0,0 +k1,7925:32583029,44405100:17321452 +g1,7925:32583029,44405100 +) +(1,7925:6630773,45089955:25952256,407923,9908 +h1,7925:6630773,45089955:0,0,0 +g1,7925:7626635,45089955 +g1,7925:8290543,45089955 +g1,7925:8622497,45089955 +g1,7925:8954451,45089955 +g1,7925:9286405,45089955 +g1,7925:9618359,45089955 +g1,7925:9950313,45089955 +g1,7925:10282267,45089955 +g1,7925:11278129,45089955 +g1,7925:11610083,45089955 +g1,7925:11942037,45089955 +g1,7925:13269853,45089955 +g1,7925:13601807,45089955 +h1,7925:15261577,45089955:0,0,0 +k1,7925:32583029,45089955:17321452 +g1,7925:32583029,45089955 +) +] +) +g1,7926:32583029,45099863 +g1,7926:6630773,45099863 +g1,7926:6630773,45099863 +g1,7926:32583029,45099863 +g1,7926:32583029,45099863 +) +] +(1,7926:32583029,45706769:0,0,0 +g1,7926:32583029,45706769 +) +) +] +(1,7926:6630773,47279633:25952256,0,0 +h1,7926:6630773,47279633:25952256,0,0 +) +] +(1,7926:4262630,4025873:0,0,0 +[1,7926:-473656,4025873:0,0,0 +(1,7926:-473656,-710413:0,0,0 +(1,7926:-473656,-710413:0,0,0 +g1,7926:-473656,-710413 +) +g1,7926:-473656,-710413 +) +] +) +] +!33672 +}120 +Input:1069:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1070:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1071:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1072:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1073:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1074:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1075:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1076:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1077:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1078:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1079:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1080:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1081:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1082:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1083:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1422 +{121 +[1,7988:4262630,47279633:28320399,43253760,0 +(1,7988:4262630,4025873:0,0,0 +[1,7988:-473656,4025873:0,0,0 +(1,7988:-473656,-710413:0,0,0 +(1,7988:-473656,-644877:0,0,0 +k1,7988:-473656,-644877:-65536 ) -(1,8679:-473656,4736287:0,0,0 -k1,8679:-473656,4736287:5209943 +(1,7988:-473656,4736287:0,0,0 +k1,7988:-473656,4736287:5209943 ) -g1,8679:-473656,-710413 +g1,7988:-473656,-710413 ) ] ) -[1,8679:6630773,47279633:25952256,43253760,0 -[1,8679:6630773,4812305:25952256,786432,0 -(1,8679:6630773,4812305:25952256,505283,126483 -(1,8679:6630773,4812305:25952256,505283,126483 -g1,8679:3078558,4812305 -[1,8679:3078558,4812305:0,0,0 -(1,8679:3078558,2439708:0,1703936,0 -k1,8679:1358238,2439708:-1720320 -(1,8393:1358238,2439708:1720320,1703936,0 -(1,8393:1358238,2439708:1179648,16384,0 -r1,8679:2537886,2439708:1179648,16384,0 +[1,7988:6630773,47279633:25952256,43253760,0 +[1,7988:6630773,4812305:25952256,786432,0 +(1,7988:6630773,4812305:25952256,505283,11795 +(1,7988:6630773,4812305:25952256,505283,11795 +g1,7988:3078558,4812305 +[1,7988:3078558,4812305:0,0,0 +(1,7988:3078558,2439708:0,1703936,0 +k1,7988:1358238,2439708:-1720320 +(1,6148:1358238,2439708:1720320,1703936,0 +(1,6148:1358238,2439708:1179648,16384,0 +r1,7988:2537886,2439708:1179648,16384,0 ) -g1,8393:3062174,2439708 -(1,8393:3062174,2439708:16384,1703936,0 -[1,8393:3062174,2439708:25952256,1703936,0 -(1,8393:3062174,1915420:25952256,1179648,0 -(1,8393:3062174,1915420:16384,1179648,0 -r1,8679:3078558,1915420:16384,1179648,0 +g1,6148:3062174,2439708 +(1,6148:3062174,2439708:16384,1703936,0 +[1,6148:3062174,2439708:25952256,1703936,0 +(1,6148:3062174,1915420:25952256,1179648,0 +(1,6148:3062174,1915420:16384,1179648,0 +r1,7988:3078558,1915420:16384,1179648,0 ) -k1,8393:29014430,1915420:25935872 -g1,8393:29014430,1915420 +k1,6148:29014430,1915420:25935872 +g1,6148:29014430,1915420 ) ] ) ) ) ] -[1,8679:3078558,4812305:0,0,0 -(1,8679:3078558,2439708:0,1703936,0 -g1,8679:29030814,2439708 -g1,8679:36135244,2439708 -(1,8393:36135244,2439708:1720320,1703936,0 -(1,8393:36135244,2439708:16384,1703936,0 -[1,8393:36135244,2439708:25952256,1703936,0 -(1,8393:36135244,1915420:25952256,1179648,0 -(1,8393:36135244,1915420:16384,1179648,0 -r1,8679:36151628,1915420:16384,1179648,0 +[1,7988:3078558,4812305:0,0,0 +(1,7988:3078558,2439708:0,1703936,0 +g1,7988:29030814,2439708 +g1,7988:36135244,2439708 +(1,6148:36135244,2439708:1720320,1703936,0 +(1,6148:36135244,2439708:16384,1703936,0 +[1,6148:36135244,2439708:25952256,1703936,0 +(1,6148:36135244,1915420:25952256,1179648,0 +(1,6148:36135244,1915420:16384,1179648,0 +r1,7988:36151628,1915420:16384,1179648,0 ) -k1,8393:62087500,1915420:25935872 -g1,8393:62087500,1915420 +k1,6148:62087500,1915420:25935872 +g1,6148:62087500,1915420 ) ] ) -g1,8393:36675916,2439708 -(1,8393:36675916,2439708:1179648,16384,0 -r1,8679:37855564,2439708:1179648,16384,0 +g1,6148:36675916,2439708 +(1,6148:36675916,2439708:1179648,16384,0 +r1,7988:37855564,2439708:1179648,16384,0 ) ) -k1,8679:3078556,2439708:-34777008 +k1,7988:3078556,2439708:-34777008 ) ] -[1,8679:3078558,4812305:0,0,0 -(1,8679:3078558,49800853:0,16384,2228224 -k1,8679:1358238,49800853:-1720320 -(1,8393:1358238,49800853:1720320,16384,2228224 -(1,8393:1358238,49800853:1179648,16384,0 -r1,8679:2537886,49800853:1179648,16384,0 +[1,7988:3078558,4812305:0,0,0 +(1,7988:3078558,49800853:0,16384,2228224 +k1,7988:1358238,49800853:-1720320 +(1,6148:1358238,49800853:1720320,16384,2228224 +(1,6148:1358238,49800853:1179648,16384,0 +r1,7988:2537886,49800853:1179648,16384,0 ) -g1,8393:3062174,49800853 -(1,8393:3062174,52029077:16384,1703936,0 -[1,8393:3062174,52029077:25952256,1703936,0 -(1,8393:3062174,51504789:25952256,1179648,0 -(1,8393:3062174,51504789:16384,1179648,0 -r1,8679:3078558,51504789:16384,1179648,0 +g1,6148:3062174,49800853 +(1,6148:3062174,52029077:16384,1703936,0 +[1,6148:3062174,52029077:25952256,1703936,0 +(1,6148:3062174,51504789:25952256,1179648,0 +(1,6148:3062174,51504789:16384,1179648,0 +r1,7988:3078558,51504789:16384,1179648,0 ) -k1,8393:29014430,51504789:25935872 -g1,8393:29014430,51504789 +k1,6148:29014430,51504789:25935872 +g1,6148:29014430,51504789 ) ] ) ) ) ] -[1,8679:3078558,4812305:0,0,0 -(1,8679:3078558,49800853:0,16384,2228224 -g1,8679:29030814,49800853 -g1,8679:36135244,49800853 -(1,8393:36135244,49800853:1720320,16384,2228224 -(1,8393:36135244,52029077:16384,1703936,0 -[1,8393:36135244,52029077:25952256,1703936,0 -(1,8393:36135244,51504789:25952256,1179648,0 -(1,8393:36135244,51504789:16384,1179648,0 -r1,8679:36151628,51504789:16384,1179648,0 +[1,7988:3078558,4812305:0,0,0 +(1,7988:3078558,49800853:0,16384,2228224 +g1,7988:29030814,49800853 +g1,7988:36135244,49800853 +(1,6148:36135244,49800853:1720320,16384,2228224 +(1,6148:36135244,52029077:16384,1703936,0 +[1,6148:36135244,52029077:25952256,1703936,0 +(1,6148:36135244,51504789:25952256,1179648,0 +(1,6148:36135244,51504789:16384,1179648,0 +r1,7988:36151628,51504789:16384,1179648,0 ) -k1,8393:62087500,51504789:25935872 -g1,8393:62087500,51504789 +k1,6148:62087500,51504789:25935872 +g1,6148:62087500,51504789 ) ] ) -g1,8393:36675916,49800853 -(1,8393:36675916,49800853:1179648,16384,0 -r1,8679:37855564,49800853:1179648,16384,0 +g1,6148:36675916,49800853 +(1,6148:36675916,49800853:1179648,16384,0 +r1,7988:37855564,49800853:1179648,16384,0 +) +) +k1,7988:3078556,49800853:-34777008 +) +] +g1,7988:6630773,4812305 +k1,7988:24358918,4812305:16532768 +g1,7988:25981589,4812305 +g1,7988:26804065,4812305 +g1,7988:30302376,4812305 +) +) +] +[1,7988:6630773,45706769:25952256,40108032,0 +(1,7988:6630773,45706769:25952256,40108032,0 +(1,7988:6630773,45706769:0,0,0 +g1,7988:6630773,45706769 +) +[1,7988:6630773,45706769:25952256,40108032,0 +v1,7926:6630773,6254097:0,393216,0 +(1,7926:6630773,7160175:25952256,1299294,196608 +g1,7926:6630773,7160175 +g1,7926:6630773,7160175 +g1,7926:6434165,7160175 +(1,7926:6434165,7160175:0,1299294,196608 +r1,7988:32779637,7160175:26345472,1495902,196608 +k1,7926:6434165,7160175:-26345472 +) +(1,7926:6434165,7160175:26345472,1299294,196608 +[1,7926:6630773,7160175:25952256,1102686,0 +(1,7925:6630773,6465412:25952256,407923,9908 +h1,7925:6630773,6465412:0,0,0 +g1,7925:7626635,6465412 +g1,7925:8290543,6465412 +g1,7925:8622497,6465412 +g1,7925:11278129,6465412 +g1,7925:11610083,6465412 +g1,7925:11942037,6465412 +g1,7925:13269853,6465412 +g1,7925:13601807,6465412 +g1,7925:13933761,6465412 +h1,7925:15261577,6465412:0,0,0 +k1,7925:32583029,6465412:17321452 +g1,7925:32583029,6465412 +) +(1,7925:6630773,7150267:25952256,407923,9908 +h1,7925:6630773,7150267:0,0,0 +g1,7925:7626635,7150267 +g1,7925:8290543,7150267 +g1,7925:8622497,7150267 +g1,7925:11278129,7150267 +g1,7925:11610083,7150267 +g1,7925:11942037,7150267 +g1,7925:13269853,7150267 +g1,7925:13601807,7150267 +g1,7925:13933761,7150267 +h1,7925:15261577,7150267:0,0,0 +k1,7925:32583029,7150267:17321452 +g1,7925:32583029,7150267 +) +] +) +g1,7926:32583029,7160175 +g1,7926:6630773,7160175 +g1,7926:6630773,7160175 +g1,7926:32583029,7160175 +g1,7926:32583029,7160175 +) +h1,7926:6630773,7356783:0,0,0 +(1,7930:6630773,8221863:25952256,513147,134348 +h1,7929:6630773,8221863:983040,0,0 +k1,7929:8266332,8221863:174762 +k1,7929:9460178,8221863:174761 +k1,7929:12125963,8221863:174762 +k1,7929:14812064,8221863:174761 +k1,7929:15518323,8221863:174762 +k1,7929:16463787,8221863:174761 +(1,7929:16463787,8221863:0,452978,122846 +r1,7988:18932324,8221863:2468537,575824,122846 +k1,7929:16463787,8221863:-2468537 +) +(1,7929:16463787,8221863:2468537,452978,122846 +k1,7929:16463787,8221863:3277 +h1,7929:18929047,8221863:0,411205,112570 +) +k1,7929:19107086,8221863:174762 +k1,7929:21433395,8221863:174762 +k1,7929:22476508,8221863:174761 +k1,7929:23755552,8221863:174762 +k1,7929:25022798,8221863:174761 +k1,7929:25553420,8221863:174762 +k1,7929:27706058,8221863:174761 +k1,7929:30341042,8221863:174762 +k1,7929:32583029,8221863:0 +) +(1,7930:6630773,9086943:25952256,513147,134348 +k1,7929:8648223,9086943:279435 +k1,7929:11137532,9086943:279435 +k1,7929:12701474,9086943:279436 +k1,7929:13999994,9086943:279435 +k1,7929:17223962,9086943:279435 +k1,7929:18119435,9086943:279435 +k1,7929:19417956,9086943:279436 +k1,7929:22518716,9086943:279435 +k1,7929:24776028,9086943:279435 +k1,7929:27036616,9086943:279435 +k1,7929:28335137,9086943:279436 +k1,7929:30625217,9086943:279435 +k1,7929:31563944,9086943:279435 +k1,7929:32583029,9086943:0 +) +(1,7930:6630773,9952023:25952256,505283,134348 +g1,7929:9321025,9952023 +k1,7930:32583029,9952023:20750664 +g1,7930:32583029,9952023 +) +v1,7932:6630773,10636878:0,393216,0 +(1,7949:6630773,18545700:25952256,8302038,196608 +g1,7949:6630773,18545700 +g1,7949:6630773,18545700 +g1,7949:6434165,18545700 +(1,7949:6434165,18545700:0,8302038,196608 +r1,7988:32779637,18545700:26345472,8498646,196608 +k1,7949:6434165,18545700:-26345472 +) +(1,7949:6434165,18545700:26345472,8302038,196608 +[1,7949:6630773,18545700:25952256,8105430,0 +(1,7934:6630773,10871315:25952256,431045,106246 +(1,7933:6630773,10871315:0,0,0 +g1,7933:6630773,10871315 +g1,7933:6630773,10871315 +g1,7933:6303093,10871315 +(1,7933:6303093,10871315:0,0,0 +) +g1,7933:6630773,10871315 +) +g1,7934:8622497,10871315 +g1,7934:9618359,10871315 +g1,7934:16921345,10871315 +g1,7934:17585253,10871315 +g1,7934:20572839,10871315 +k1,7934:20572839,10871315:0 +h1,7934:21568701,10871315:0,0,0 +k1,7934:32583029,10871315:11014328 +g1,7934:32583029,10871315 +) +(1,7935:6630773,11556170:25952256,424439,86428 +h1,7935:6630773,11556170:0,0,0 +g1,7935:6962727,11556170 +g1,7935:7294681,11556170 +g1,7935:7626635,11556170 +g1,7935:7958589,11556170 +g1,7935:8290543,11556170 +g1,7935:8622497,11556170 +g1,7935:8954451,11556170 +g1,7935:9286405,11556170 +g1,7935:9618359,11556170 +g1,7935:9950313,11556170 +g1,7935:10282267,11556170 +g1,7935:10614221,11556170 +g1,7935:10946175,11556170 +g1,7935:11278129,11556170 +g1,7935:11610083,11556170 +g1,7935:11942037,11556170 +g1,7935:12273991,11556170 +g1,7935:12605945,11556170 +g1,7935:12937899,11556170 +g1,7935:13269853,11556170 +g1,7935:15261577,11556170 +g1,7935:15925485,11556170 +g1,7935:18249163,11556170 +g1,7935:19908933,11556170 +g1,7935:21568703,11556170 +g1,7935:23228473,11556170 +g1,7935:24888243,11556170 +h1,7935:26548013,11556170:0,0,0 +k1,7935:32583029,11556170:6035016 +g1,7935:32583029,11556170 +) +(1,7936:6630773,12241025:25952256,424439,112852 +h1,7936:6630773,12241025:0,0,0 +g1,7936:9618358,12241025 +g1,7936:10614220,12241025 +g1,7936:13269852,12241025 +g1,7936:16921345,12241025 +h1,7936:20240884,12241025:0,0,0 +k1,7936:32583029,12241025:12342145 +g1,7936:32583029,12241025 +) +(1,7937:6630773,12925880:25952256,431045,112852 +h1,7937:6630773,12925880:0,0,0 +g1,7937:11610082,12925880 +g1,7937:12605944,12925880 +h1,7937:21236746,12925880:0,0,0 +k1,7937:32583029,12925880:11346283 +g1,7937:32583029,12925880 +) +(1,7938:6630773,13610735:25952256,431045,106246 +h1,7938:6630773,13610735:0,0,0 +h1,7938:8290543,13610735:0,0,0 +k1,7938:32583029,13610735:24292486 +g1,7938:32583029,13610735 +) +(1,7948:6630773,14426662:25952256,424439,112852 +(1,7940:6630773,14426662:0,0,0 +g1,7940:6630773,14426662 +g1,7940:6630773,14426662 +g1,7940:6303093,14426662 +(1,7940:6303093,14426662:0,0,0 +) +g1,7940:6630773,14426662 +) +g1,7948:7626635,14426662 +g1,7948:7958589,14426662 +g1,7948:8290543,14426662 +g1,7948:11942036,14426662 +g1,7948:13933760,14426662 +h1,7948:16589391,14426662:0,0,0 +k1,7948:32583029,14426662:15993638 +g1,7948:32583029,14426662 +) +(1,7948:6630773,15111517:25952256,407923,9908 +h1,7948:6630773,15111517:0,0,0 +g1,7948:7626635,15111517 +g1,7948:8290543,15111517 +g1,7948:8622497,15111517 +g1,7948:8954451,15111517 +g1,7948:9286405,15111517 +g1,7948:9618359,15111517 +g1,7948:9950313,15111517 +g1,7948:10282267,15111517 +g1,7948:10614221,15111517 +g1,7948:10946175,15111517 +g1,7948:11278129,15111517 +g1,7948:11942037,15111517 +g1,7948:12273991,15111517 +g1,7948:12605945,15111517 +g1,7948:13933761,15111517 +g1,7948:14265715,15111517 +g1,7948:14597669,15111517 +g1,7948:14929623,15111517 +g1,7948:15261577,15111517 +g1,7948:15593531,15111517 +g1,7948:15925485,15111517 +h1,7948:16589393,15111517:0,0,0 +k1,7948:32583029,15111517:15993636 +g1,7948:32583029,15111517 +) +(1,7948:6630773,15796372:25952256,407923,9908 +h1,7948:6630773,15796372:0,0,0 +g1,7948:7626635,15796372 +g1,7948:8290543,15796372 +g1,7948:8622497,15796372 +g1,7948:8954451,15796372 +g1,7948:9286405,15796372 +g1,7948:9618359,15796372 +g1,7948:9950313,15796372 +g1,7948:10282267,15796372 +g1,7948:10614221,15796372 +g1,7948:10946175,15796372 +g1,7948:11278129,15796372 +g1,7948:11942037,15796372 +g1,7948:12273991,15796372 +g1,7948:12605945,15796372 +g1,7948:13933761,15796372 +g1,7948:14265715,15796372 +h1,7948:16589393,15796372:0,0,0 +k1,7948:32583029,15796372:15993636 +g1,7948:32583029,15796372 +) +(1,7948:6630773,16481227:25952256,407923,9908 +h1,7948:6630773,16481227:0,0,0 +g1,7948:7626635,16481227 +g1,7948:8290543,16481227 +g1,7948:8622497,16481227 +g1,7948:8954451,16481227 +g1,7948:9286405,16481227 +g1,7948:9618359,16481227 +g1,7948:9950313,16481227 +g1,7948:10282267,16481227 +g1,7948:10614221,16481227 +g1,7948:10946175,16481227 +g1,7948:11278129,16481227 +g1,7948:11942037,16481227 +g1,7948:12273991,16481227 +g1,7948:12605945,16481227 +g1,7948:13933761,16481227 +g1,7948:14265715,16481227 +h1,7948:16589393,16481227:0,0,0 +k1,7948:32583029,16481227:15993636 +g1,7948:32583029,16481227 +) +(1,7948:6630773,17166082:25952256,407923,9908 +h1,7948:6630773,17166082:0,0,0 +g1,7948:7626635,17166082 +g1,7948:8290543,17166082 +g1,7948:8622497,17166082 +g1,7948:8954451,17166082 +g1,7948:9286405,17166082 +g1,7948:9618359,17166082 +g1,7948:9950313,17166082 +g1,7948:10282267,17166082 +g1,7948:10614221,17166082 +g1,7948:10946175,17166082 +g1,7948:11278129,17166082 +g1,7948:11942037,17166082 +g1,7948:12273991,17166082 +g1,7948:12605945,17166082 +g1,7948:13933761,17166082 +g1,7948:14265715,17166082 +g1,7948:14597669,17166082 +g1,7948:14929623,17166082 +g1,7948:15261577,17166082 +g1,7948:15593531,17166082 +g1,7948:15925485,17166082 +h1,7948:16589393,17166082:0,0,0 +k1,7948:32583029,17166082:15993636 +g1,7948:32583029,17166082 +) +(1,7948:6630773,17850937:25952256,407923,9908 +h1,7948:6630773,17850937:0,0,0 +g1,7948:7626635,17850937 +g1,7948:8290543,17850937 +g1,7948:8622497,17850937 +g1,7948:8954451,17850937 +g1,7948:9286405,17850937 +g1,7948:9618359,17850937 +g1,7948:9950313,17850937 +g1,7948:10282267,17850937 +g1,7948:10614221,17850937 +g1,7948:10946175,17850937 +g1,7948:11278129,17850937 +g1,7948:11942037,17850937 +g1,7948:12273991,17850937 +g1,7948:12605945,17850937 +g1,7948:13933761,17850937 +g1,7948:14265715,17850937 +h1,7948:16589393,17850937:0,0,0 +k1,7948:32583029,17850937:15993636 +g1,7948:32583029,17850937 +) +(1,7948:6630773,18535792:25952256,407923,9908 +h1,7948:6630773,18535792:0,0,0 +g1,7948:7626635,18535792 +g1,7948:8290543,18535792 +g1,7948:8622497,18535792 +g1,7948:8954451,18535792 +g1,7948:9286405,18535792 +g1,7948:9618359,18535792 +g1,7948:9950313,18535792 +g1,7948:10282267,18535792 +g1,7948:10614221,18535792 +g1,7948:10946175,18535792 +g1,7948:11278129,18535792 +g1,7948:11942037,18535792 +g1,7948:12273991,18535792 +g1,7948:12605945,18535792 +g1,7948:13933761,18535792 +g1,7948:14265715,18535792 +h1,7948:16589393,18535792:0,0,0 +k1,7948:32583029,18535792:15993636 +g1,7948:32583029,18535792 +) +] +) +g1,7949:32583029,18545700 +g1,7949:6630773,18545700 +g1,7949:6630773,18545700 +g1,7949:32583029,18545700 +g1,7949:32583029,18545700 +) +h1,7949:6630773,18742308:0,0,0 +v1,7953:6630773,19607388:0,393216,0 +(1,7962:6630773,23263015:25952256,4048843,0 +g1,7962:6630773,23263015 +g1,7962:6237557,23263015 +r1,7988:6368629,23263015:131072,4048843,0 +g1,7962:6567858,23263015 +g1,7962:6764466,23263015 +[1,7962:6764466,23263015:25818563,4048843,0 +(1,7955:6764466,19915686:25818563,701514,196608 +(1,7953:6764466,19915686:0,701514,196608 +r1,7988:8863446,19915686:2098980,898122,196608 +k1,7953:6764466,19915686:-2098980 +) +(1,7953:6764466,19915686:2098980,701514,196608 +) +k1,7953:9098562,19915686:235116 +k1,7953:10824780,19915686:327680 +k1,7953:12388965,19915686:235115 +k1,7953:12979941,19915686:235116 +k1,7953:15726396,19915686:235115 +k1,7953:18120268,19915686:235116 +(1,7953:18120268,19915686:0,414482,122846 +r1,7988:20940517,19915686:2820249,537328,122846 +k1,7953:18120268,19915686:-2820249 +) +(1,7953:18120268,19915686:2820249,414482,122846 +k1,7953:18120268,19915686:3277 +h1,7953:20937240,19915686:0,411205,112570 +) +k1,7953:21175632,19915686:235115 +k1,7953:22062176,19915686:235116 +k1,7953:23316376,19915686:235115 +k1,7953:24940855,19915686:235116 +k1,7953:27052266,19915686:235115 +k1,7953:29155813,19915686:235116 +k1,7953:30115756,19915686:235115 +k1,7953:31635378,19915686:235116 +k1,7953:32583029,19915686:0 +) +(1,7955:6764466,20690977:25818563,513147,115847 +k1,7953:10173734,20690977:216354 +(1,7953:10173734,20690977:0,424981,115847 +r1,7988:10532000,20690977:358266,540828,115847 +k1,7953:10173734,20690977:-358266 +) +(1,7953:10173734,20690977:358266,424981,115847 +k1,7953:10173734,20690977:3277 +h1,7953:10528723,20690977:0,411205,112570 +) +k1,7953:10748354,20690977:216354 +k1,7953:11753106,20690977:216354 +k1,7953:13649804,20690977:216355 +k1,7953:14397655,20690977:216354 +(1,7953:14397655,20690977:0,452978,115847 +r1,7988:15811056,20690977:1413401,568825,115847 +k1,7953:14397655,20690977:-1413401 +) +(1,7953:14397655,20690977:1413401,452978,115847 +k1,7953:14397655,20690977:3277 +h1,7953:15807779,20690977:0,411205,112570 +) +k1,7953:16201080,20690977:216354 +k1,7953:17365085,20690977:216354 +k1,7953:20774353,20690977:216354 +(1,7953:20774353,20690977:0,435480,115847 +r1,7988:21132619,20690977:358266,551327,115847 +k1,7953:20774353,20690977:-358266 +) +(1,7953:20774353,20690977:358266,435480,115847 +k1,7953:20774353,20690977:3277 +h1,7953:21129342,20690977:0,411205,112570 +) +k1,7953:21348973,20690977:216354 +k1,7953:22353725,20690977:216354 +k1,7953:24250422,20690977:216354 +k1,7953:24998274,20690977:216355 +(1,7953:24998274,20690977:0,452978,115847 +r1,7988:28170234,20690977:3171960,568825,115847 +k1,7953:24998274,20690977:-3171960 +) +(1,7953:24998274,20690977:3171960,452978,115847 +k1,7953:24998274,20690977:3277 +h1,7953:28166957,20690977:0,411205,112570 +) +k1,7953:28560258,20690977:216354 +k1,7953:29968057,20690977:216354 +k1,7953:31132062,20690977:216354 +k1,7955:32583029,20690977:0 +) +(1,7955:6764466,21375832:25818563,505283,115847 +g1,7953:8918634,21375832 +(1,7953:8918634,21375832:0,435480,115847 +r1,7988:9276900,21375832:358266,551327,115847 +k1,7953:8918634,21375832:-358266 +) +(1,7953:8918634,21375832:358266,435480,115847 +k1,7953:8918634,21375832:3277 +h1,7953:9273623,21375832:0,411205,112570 +) +g1,7953:9476129,21375832 +g1,7953:10463756,21375832 +g1,7953:12343328,21375832 +g1,7953:13074054,21375832 +(1,7953:13074054,21375832:0,452978,115847 +r1,7988:16246014,21375832:3171960,568825,115847 +k1,7953:13074054,21375832:-3171960 +) +(1,7953:13074054,21375832:3171960,452978,115847 +k1,7953:13074054,21375832:3277 +h1,7953:16242737,21375832:0,411205,112570 +) +g1,7953:16618913,21375832 +k1,7955:32583029,21375832:15964116 +g1,7955:32583029,21375832 +) +v1,7955:6764466,22060687:0,393216,0 +(1,7960:6764466,23066407:25818563,1398936,196608 +g1,7960:6764466,23066407 +g1,7960:6764466,23066407 +g1,7960:6567858,23066407 +(1,7960:6567858,23066407:0,1398936,196608 +r1,7988:32779637,23066407:26211779,1595544,196608 +k1,7960:6567857,23066407:-26211780 +) +(1,7960:6567858,23066407:26211779,1398936,196608 +[1,7960:6764466,23066407:25818563,1202328,0 +(1,7957:6764466,22295124:25818563,431045,106246 +(1,7956:6764466,22295124:0,0,0 +g1,7956:6764466,22295124 +g1,7956:6764466,22295124 +g1,7956:6436786,22295124 +(1,7956:6436786,22295124:0,0,0 +) +g1,7956:6764466,22295124 +) +g1,7957:8756190,22295124 +g1,7957:9752052,22295124 +g1,7957:17055038,22295124 +g1,7957:17718946,22295124 +g1,7957:20706532,22295124 +g1,7957:21702394,22295124 +g1,7957:23030210,22295124 +k1,7957:23030210,22295124:0 +h1,7957:24026072,22295124:0,0,0 +k1,7957:32583029,22295124:8556957 +g1,7957:32583029,22295124 +) +(1,7958:6764466,22979979:25818563,424439,86428 +h1,7958:6764466,22979979:0,0,0 +g1,7958:7096420,22979979 +g1,7958:7428374,22979979 +g1,7958:7760328,22979979 +g1,7958:8092282,22979979 +g1,7958:8424236,22979979 +g1,7958:8756190,22979979 +g1,7958:9088144,22979979 +g1,7958:9420098,22979979 +g1,7958:9752052,22979979 +g1,7958:10084006,22979979 +g1,7958:10415960,22979979 +g1,7958:10747914,22979979 +g1,7958:11079868,22979979 +g1,7958:11411822,22979979 +g1,7958:11743776,22979979 +g1,7958:12075730,22979979 +g1,7958:12407684,22979979 +g1,7958:12739638,22979979 +g1,7958:13071592,22979979 +g1,7958:13403546,22979979 +g1,7958:15395270,22979979 +g1,7958:16059178,22979979 +g1,7958:18382856,22979979 +g1,7958:20042626,22979979 +g1,7958:21702396,22979979 +g1,7958:23362166,22979979 +g1,7958:25021936,22979979 +h1,7958:26681706,22979979:0,0,0 +k1,7958:32583029,22979979:5901323 +g1,7958:32583029,22979979 +) +] +) +g1,7960:32583029,23066407 +g1,7960:6764466,23066407 +g1,7960:6764466,23066407 +g1,7960:32583029,23066407 +g1,7960:32583029,23066407 +) +h1,7960:6764466,23263015:0,0,0 +] +g1,7962:32583029,23263015 +) +h1,7962:6630773,23263015:0,0,0 +(1,7964:6630773,25379833:25952256,564462,147783 +(1,7964:6630773,25379833:2450326,527696,12975 +g1,7964:6630773,25379833 +g1,7964:9081099,25379833 +) +g1,7964:12916987,25379833 +g1,7964:15468239,25379833 +g1,7964:17245248,25379833 +k1,7964:32583029,25379833:12824017 +g1,7964:32583029,25379833 +) +(1,7967:6630773,26638129:25952256,513147,134348 +k1,7966:7524903,26638129:266295 +k1,7966:8810282,26638129:266294 +k1,7966:10443658,26638129:266295 +k1,7966:11369244,26638129:266294 +k1,7966:15066349,26638129:266295 +k1,7966:16615838,26638129:266294 +k1,7966:18892778,26638129:266295 +k1,7966:20726693,26638129:266294 +k1,7966:23484011,26638129:266295 +k1,7966:26591946,26638129:266294 +k1,7966:29016997,26638129:266295 +k1,7966:31591469,26638129:266294 +k1,7966:32583029,26638129:0 +) +(1,7967:6630773,27503209:25952256,513147,102891 +k1,7966:7536714,27503209:246649 +k1,7966:10035836,27503209:246650 +k1,7966:11548641,27503209:246649 +k1,7966:14307941,27503209:246650 +k1,7966:17396231,27503209:246649 +k1,7966:18258919,27503209:246650 +k1,7966:18861428,27503209:246649 +k1,7966:20497440,27503209:246649 +k1,7966:22620386,27503209:246650 +k1,7966:23971317,27503209:246649 +k1,7966:24965733,27503209:246650 +k1,7966:27177807,27503209:246649 +k1,7966:28107342,27503209:246650 +k1,7966:31189078,27503209:246649 +k1,7967:32583029,27503209:0 +) +(1,7967:6630773,28368289:25952256,513147,134348 +k1,7966:7245158,28368289:199542 +k1,7966:10470498,28368289:199543 +(1,7966:10470498,28368289:0,459977,115847 +r1,7988:14345882,28368289:3875384,575824,115847 +k1,7966:10470498,28368289:-3875384 +) +(1,7966:10470498,28368289:3875384,459977,115847 +k1,7966:10470498,28368289:3277 +h1,7966:14342605,28368289:0,411205,112570 +) +k1,7966:14719094,28368289:199542 +(1,7966:14719094,28368289:0,452978,115847 +r1,7988:16835919,28368289:2116825,568825,115847 +k1,7966:14719094,28368289:-2116825 +) +(1,7966:14719094,28368289:2116825,452978,115847 +k1,7966:14719094,28368289:3277 +h1,7966:16832642,28368289:0,411205,112570 +) +k1,7966:17035462,28368289:199543 +k1,7966:18426450,28368289:199543 +(1,7966:18426450,28368289:0,452978,115847 +r1,7988:21246699,28368289:2820249,568825,115847 +k1,7966:18426450,28368289:-2820249 +) +(1,7966:18426450,28368289:2820249,452978,115847 +k1,7966:18426450,28368289:3277 +h1,7966:21243422,28368289:0,411205,112570 +) +k1,7966:21619911,28368289:199542 +k1,7966:23693784,28368289:199543 +k1,7966:26919123,28368289:199542 +k1,7966:28222948,28368289:199543 +k1,7966:29170256,28368289:199542 +k1,7966:31896867,28368289:199543 +k1,7966:32583029,28368289:0 +) +(1,7967:6630773,29233369:25952256,513147,134348 +k1,7966:10707231,29233369:169857 +k1,7966:13902886,29233369:169858 +k1,7966:14758905,29233369:169857 +k1,7966:15947847,29233369:169857 +k1,7966:17771177,29233369:169857 +k1,7966:22335224,29233369:169858 +k1,7966:23609363,29233369:169857 +k1,7966:24526986,29233369:169857 +k1,7966:26274295,29233369:169857 +k1,7966:28179546,29233369:169858 +k1,7966:29368488,29233369:169857 +k1,7966:32583029,29233369:0 +) +(1,7967:6630773,30098449:25952256,505283,126483 +k1,7966:9922786,30098449:215098 +k1,7966:10789313,30098449:215099 +k1,7966:13035372,30098449:215098 +k1,7966:16443385,30098449:215099 +k1,7966:19673794,30098449:215098 +k1,7966:20504931,30098449:215099 +k1,7966:22576009,30098449:215098 +k1,7966:23810192,30098449:215098 +k1,7966:25149233,30098449:215099 +k1,7966:26397834,30098449:215098 +k1,7966:27295818,30098449:215099 +k1,7966:28977612,30098449:215098 +k1,7966:30142983,30098449:215099 +k1,7966:31549526,30098449:215098 +k1,7966:32583029,30098449:0 +) +(1,7967:6630773,30963529:25952256,505283,134348 +g1,7966:8062079,30963529 +g1,7966:10539995,30963529 +h1,7966:11909042,30963529:0,0,0 +g1,7966:12108271,30963529 +g1,7966:13116870,30963529 +g1,7966:14814252,30963529 +h1,7966:15611170,30963529:0,0,0 +k1,7967:32583029,30963529:16591095 +g1,7967:32583029,30963529 +) +(1,7969:6630773,31828609:25952256,513147,126483 +h1,7968:6630773,31828609:983040,0,0 +k1,7968:8462176,31828609:220528 +k1,7968:9701788,31828609:220527 +k1,7968:11289397,31828609:220528 +k1,7968:12177081,31828609:220528 +(1,7968:12177081,31828609:0,452978,115847 +r1,7988:14293906,31828609:2116825,568825,115847 +k1,7968:12177081,31828609:-2116825 +) +(1,7968:12177081,31828609:2116825,452978,115847 +k1,7968:12177081,31828609:3277 +h1,7968:14290629,31828609:0,411205,112570 +) +k1,7968:14514433,31828609:220527 +k1,7968:16110562,31828609:220528 +k1,7968:17661471,31828609:220528 +k1,7968:20525720,31828609:220527 +k1,7968:24160018,31828609:220528 +k1,7968:25876733,31828609:220528 +k1,7968:29283620,31828609:220527 +k1,7968:30035645,31828609:220528 +k1,7968:32583029,31828609:0 +) +(1,7969:6630773,32693689:25952256,513147,134348 +k1,7968:8090167,32693689:267949 +k1,7968:9561356,32693689:267948 +k1,7968:13015665,32693689:267949 +k1,7968:13815110,32693689:267948 +k1,7968:16288346,32693689:267949 +k1,7968:17242456,32693689:267948 +k1,7968:18281108,32693689:267949 +k1,7968:21795054,32693689:267948 +k1,7968:22880892,32693689:267949 +k1,7968:25365268,32693689:267948 +k1,7968:26501569,32693689:267949 +k1,7968:28299783,32693689:267948 +k1,7968:29219160,32693689:267949 +k1,7968:30938075,32693689:267948 +k1,7969:32583029,32693689:0 +) +(1,7969:6630773,33558769:25952256,513147,134348 +k1,7968:7709646,33558769:251809 +k1,7968:8980541,33558769:251810 +k1,7968:12125765,33558769:251809 +k1,7968:13677154,33558769:251810 +k1,7968:14588255,33558769:251809 +k1,7968:15859149,33558769:251809 +k1,7968:19930397,33558769:251810 +k1,7968:21378893,33558769:251809 +k1,7968:23311045,33558769:251809 +k1,7968:26341582,33558769:251810 +k1,7968:27124888,33558769:251809 +k1,7968:28395783,33558769:251810 +k1,7968:29804302,33558769:251809 +k1,7968:32583029,33558769:0 +) +(1,7969:6630773,34423849:25952256,513147,134348 +k1,7968:7668262,34423849:275961 +k1,7968:8963309,34423849:275962 +k1,7968:12425630,34423849:275961 +k1,7968:14906878,34423849:275961 +k1,7968:15869001,34423849:275961 +k1,7968:16915666,34423849:275962 +k1,7968:20437625,34423849:275961 +k1,7968:21329624,34423849:275961 +k1,7968:22624670,34423849:275961 +k1,7968:24267713,34423849:275962 +k1,7968:25202966,34423849:275961 +k1,7968:28892697,34423849:275961 +k1,7968:32583029,34423849:0 +) +(1,7969:6630773,35288929:25952256,505283,126483 +k1,7968:7915879,35288929:266021 +k1,7968:9862244,35288929:266022 +k1,7968:12906992,35288929:266021 +k1,7968:13934542,35288929:266022 +k1,7968:15219648,35288929:266021 +k1,7968:16633861,35288929:266022 +k1,7968:20039712,35288929:266021 +k1,7968:22430410,35288929:266021 +k1,7968:24192619,35288929:266022 +k1,7968:27645000,35288929:266021 +k1,7968:28562450,35288929:266022 +k1,7968:29576237,35288929:266021 +k1,7968:32583029,35288929:0 +) +(1,7969:6630773,36154009:25952256,513147,134348 +k1,7968:11330469,36154009:179022 +k1,7968:11975453,36154009:179023 +k1,7968:13173560,36154009:179022 +k1,7968:15244606,36154009:179022 +k1,7968:15955126,36154009:179023 +k1,7968:16785576,36154009:179022 +k1,7968:19226901,36154009:179022 +k1,7968:20425009,36154009:179023 +k1,7968:23785149,36154009:179022 +k1,7968:27609939,36154009:179022 +k1,7968:28440390,36154009:179023 +k1,7968:29390115,36154009:179022 +k1,7968:32583029,36154009:0 +) +(1,7969:6630773,37019089:25952256,505283,126483 +g1,7968:9453408,37019089 +g1,7968:12163977,37019089 +g1,7968:14953189,37019089 +g1,7968:15768456,37019089 +g1,7968:17170926,37019089 +g1,7968:18944330,37019089 +g1,7968:19675056,37019089 +k1,7969:32583029,37019089:10021767 +g1,7969:32583029,37019089 +) +(1,7971:6630773,37884169:25952256,513147,126483 +h1,7970:6630773,37884169:983040,0,0 +k1,7970:8491079,37884169:249431 +k1,7970:9943751,37884169:249431 +k1,7970:13028268,37884169:249430 +k1,7970:15660588,37884169:249431 +(1,7970:15660588,37884169:0,414482,115847 +r1,7988:16018854,37884169:358266,530329,115847 +k1,7970:15660588,37884169:-358266 +) +(1,7970:15660588,37884169:358266,414482,115847 +k1,7970:15660588,37884169:3277 +h1,7970:16015577,37884169:0,411205,112570 +) +k1,7970:16268285,37884169:249431 +k1,7970:17184872,37884169:249431 +(1,7970:17184872,37884169:0,459977,115847 +r1,7988:22818815,37884169:5633943,575824,115847 +k1,7970:17184872,37884169:-5633943 +) +(1,7970:17184872,37884169:5633943,459977,115847 +k1,7970:17184872,37884169:3277 +h1,7970:22815538,37884169:0,411205,112570 +) +k1,7970:23068246,37884169:249431 +k1,7970:25000642,37884169:249431 +k1,7970:29024946,37884169:249430 +k1,7970:30465822,37884169:249431 +k1,7970:31734338,37884169:249431 +k1,7971:32583029,37884169:0 +) +(1,7971:6630773,38749249:25952256,505283,126483 +g1,7970:8973029,38749249 +g1,7970:10852601,38749249 +g1,7970:11583327,38749249 +g1,7970:12801641,38749249 +g1,7970:15839890,38749249 +k1,7971:32583029,38749249:15412758 +g1,7971:32583029,38749249 +) +v1,7973:6630773,39434104:0,393216,0 +(1,7984:6630773,43233796:25952256,4192908,196608 +g1,7984:6630773,43233796 +g1,7984:6630773,43233796 +g1,7984:6434165,43233796 +(1,7984:6434165,43233796:0,4192908,196608 +r1,7988:32779637,43233796:26345472,4389516,196608 +k1,7984:6434165,43233796:-26345472 +) +(1,7984:6434165,43233796:26345472,4192908,196608 +[1,7984:6630773,43233796:25952256,3996300,0 +(1,7975:6630773,39668541:25952256,431045,106246 +(1,7974:6630773,39668541:0,0,0 +g1,7974:6630773,39668541 +g1,7974:6630773,39668541 +g1,7974:6303093,39668541 +(1,7974:6303093,39668541:0,0,0 +) +g1,7974:6630773,39668541 +) +g1,7975:12937898,39668541 +g1,7975:13933760,39668541 +k1,7975:13933760,39668541:0 +h1,7975:15261576,39668541:0,0,0 +k1,7975:32583028,39668541:17321452 +g1,7975:32583028,39668541 +) +(1,7976:6630773,40353396:25952256,431045,106246 +h1,7976:6630773,40353396:0,0,0 +g1,7976:12937898,40353396 +g1,7976:13933760,40353396 +g1,7976:21568701,40353396 +g1,7976:22564563,40353396 +g1,7976:23228471,40353396 +g1,7976:24224333,40353396 +g1,7976:24888241,40353396 +h1,7976:25552149,40353396:0,0,0 +k1,7976:32583029,40353396:7030880 +g1,7976:32583029,40353396 +) +(1,7977:6630773,41038251:25952256,431045,106246 +h1,7977:6630773,41038251:0,0,0 +g1,7977:14265714,41038251 +h1,7977:14929622,41038251:0,0,0 +k1,7977:32583030,41038251:17653408 +g1,7977:32583030,41038251 +) +(1,7983:6630773,41854178:25952256,398014,8257 +(1,7979:6630773,41854178:0,0,0 +g1,7979:6630773,41854178 +g1,7979:6630773,41854178 +g1,7979:6303093,41854178 +(1,7979:6303093,41854178:0,0,0 +) +g1,7979:6630773,41854178 +) +g1,7983:7626635,41854178 +g1,7983:7958589,41854178 +g1,7983:8290543,41854178 +g1,7983:8954451,41854178 +g1,7983:9618359,41854178 +g1,7983:9950313,41854178 +g1,7983:10282267,41854178 +h1,7983:10614221,41854178:0,0,0 +k1,7983:32583029,41854178:21968808 +g1,7983:32583029,41854178 +) +(1,7983:6630773,42539033:25952256,407923,9908 +h1,7983:6630773,42539033:0,0,0 +g1,7983:7626635,42539033 +g1,7983:8290543,42539033 +g1,7983:8954451,42539033 +g1,7983:9618359,42539033 +h1,7983:10614221,42539033:0,0,0 +k1,7983:32583029,42539033:21968808 +g1,7983:32583029,42539033 +) +(1,7983:6630773,43223888:25952256,407923,9908 +h1,7983:6630773,43223888:0,0,0 +g1,7983:7626635,43223888 +g1,7983:8290543,43223888 +g1,7983:8954451,43223888 +g1,7983:9618359,43223888 +h1,7983:10614221,43223888:0,0,0 +k1,7983:32583029,43223888:21968808 +g1,7983:32583029,43223888 +) +] +) +g1,7984:32583029,43233796 +g1,7984:6630773,43233796 +g1,7984:6630773,43233796 +g1,7984:32583029,43233796 +g1,7984:32583029,43233796 +) +h1,7984:6630773,43430404:0,0,0 +(1,7988:6630773,44295484:25952256,513147,134348 +h1,7987:6630773,44295484:983040,0,0 +k1,7987:8462376,44295484:220728 +k1,7987:9702188,44295484:220727 +k1,7987:11289997,44295484:220728 +k1,7987:12177880,44295484:220727 +(1,7987:12177880,44295484:0,452978,115847 +r1,7988:14998129,44295484:2820249,568825,115847 +k1,7987:12177880,44295484:-2820249 +) +(1,7987:12177880,44295484:2820249,452978,115847 +k1,7987:12177880,44295484:3277 +h1,7987:14994852,44295484:0,411205,112570 +) +k1,7987:15392527,44295484:220728 +k1,7987:19589324,44295484:220728 +k1,7987:20426089,44295484:220727 +k1,7987:21665902,44295484:220728 +k1,7987:24958957,44295484:220727 +k1,7987:25831113,44295484:220728 +k1,7987:26840238,44295484:220727 +k1,7987:29302297,44295484:220728 +k1,7987:32583029,44295484:0 +) +(1,7988:6630773,45160564:25952256,513147,134348 +k1,7987:8640456,45160564:230381 +k1,7987:9889922,45160564:230381 +k1,7987:12079829,45160564:230381 +k1,7987:15262607,45160564:230381 +k1,7987:17378459,45160564:230381 +k1,7987:18140337,45160564:230381 +k1,7987:18726578,45160564:230381 +k1,7987:20466908,45160564:230380 +k1,7987:21356581,45160564:230381 +k1,7987:22606047,45160564:230381 +k1,7987:25843875,45160564:230381 +k1,7987:26909185,45160564:230381 +k1,7987:28342807,45160564:230381 +k1,7987:30113939,45160564:230381 +k1,7987:30700180,45160564:230381 +k1,7987:32583029,45160564:0 +) +] +(1,7988:32583029,45706769:0,0,0 +g1,7988:32583029,45706769 +) +) +] +(1,7988:6630773,47279633:25952256,0,0 +h1,7988:6630773,47279633:25952256,0,0 +) +] +(1,7988:4262630,4025873:0,0,0 +[1,7988:-473656,4025873:0,0,0 +(1,7988:-473656,-710413:0,0,0 +(1,7988:-473656,-710413:0,0,0 +g1,7988:-473656,-710413 +) +g1,7988:-473656,-710413 +) +] +) +] +!30779 +}121 +Input:1084:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1085:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1086:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1087:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1088:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1089:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1090:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1091:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1092:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1093:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1094:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1095:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1096:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1097:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1098:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1099:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1100:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1101:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1102:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1103:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1104:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1105:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1106:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1107:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!2268 +{122 +[1,8069:4262630,47279633:28320399,43253760,0 +(1,8069:4262630,4025873:0,0,0 +[1,8069:-473656,4025873:0,0,0 +(1,8069:-473656,-710413:0,0,0 +(1,8069:-473656,-644877:0,0,0 +k1,8069:-473656,-644877:-65536 ) +(1,8069:-473656,4736287:0,0,0 +k1,8069:-473656,4736287:5209943 ) -k1,8679:3078556,49800853:-34777008 +g1,8069:-473656,-710413 ) ] -g1,8679:6630773,4812305 -g1,8679:6630773,4812305 -g1,8679:10273919,4812305 -g1,8679:13857427,4812305 -k1,8679:31387651,4812305:17530224 ) +[1,8069:6630773,47279633:25952256,43253760,0 +[1,8069:6630773,4812305:25952256,786432,0 +(1,8069:6630773,4812305:25952256,513147,126483 +(1,8069:6630773,4812305:25952256,513147,126483 +g1,8069:3078558,4812305 +[1,8069:3078558,4812305:0,0,0 +(1,8069:3078558,2439708:0,1703936,0 +k1,8069:1358238,2439708:-1720320 +(1,6148:1358238,2439708:1720320,1703936,0 +(1,6148:1358238,2439708:1179648,16384,0 +r1,8069:2537886,2439708:1179648,16384,0 ) -] -[1,8679:6630773,45706769:25952256,40108032,0 -(1,8679:6630773,45706769:25952256,40108032,0 -(1,8679:6630773,45706769:0,0,0 -g1,8679:6630773,45706769 +g1,6148:3062174,2439708 +(1,6148:3062174,2439708:16384,1703936,0 +[1,6148:3062174,2439708:25952256,1703936,0 +(1,6148:3062174,1915420:25952256,1179648,0 +(1,6148:3062174,1915420:16384,1179648,0 +r1,8069:3078558,1915420:16384,1179648,0 ) -[1,8679:6630773,45706769:25952256,40108032,0 -(1,8622:6630773,16626546:25952256,11027809,0 -k1,8622:16423845,16626546:9793072 -(1,8607:16423845,16626546:0,0,0 -g1,8607:16423845,16626546 -g1,8607:16423845,16626546 -g1,8607:16096165,16626546 -(1,8607:16096165,16626546:0,0,0 +k1,6148:29014430,1915420:25935872 +g1,6148:29014430,1915420 ) -g1,8607:16423845,16626546 +] ) -(1,8620:16423845,16626546:6366112,11027809,0 -g1,8620:19606901,16626546 -(1,8620:19606901,6544183:0,0,0 -(1,8620:19606901,6544183:0,0,0 -g1,8609:19606901,6544183 -(1,8610:19606901,6544183:0,0,0 -(1,8610:19606901,6544183:0,0,0 -g1,8610:19606901,6544183 -g1,8610:19606901,6544183 -g1,8610:19606901,6544183 -g1,8610:19606901,6544183 -g1,8610:19606901,6544183 -(1,8610:19606901,6544183:0,0,0 -(1,8610:19606901,6544183:589824,56623,0 -(1,8610:19606901,6544183:589824,56623,0 ) -g1,8610:20196725,6544183 ) +] +[1,8069:3078558,4812305:0,0,0 +(1,8069:3078558,2439708:0,1703936,0 +g1,8069:29030814,2439708 +g1,8069:36135244,2439708 +(1,6148:36135244,2439708:1720320,1703936,0 +(1,6148:36135244,2439708:16384,1703936,0 +[1,6148:36135244,2439708:25952256,1703936,0 +(1,6148:36135244,1915420:25952256,1179648,0 +(1,6148:36135244,1915420:16384,1179648,0 +r1,8069:36151628,1915420:16384,1179648,0 ) -g1,8610:19606901,6544183 -g1,8610:19606901,6544183 +k1,6148:62087500,1915420:25935872 +g1,6148:62087500,1915420 ) +] ) -g1,8610:19606901,6544183 -(1,8611:19606901,6544183:0,0,0 -(1,8611:19606901,6544183:0,0,0 -g1,8611:19606901,6544183 -g1,8611:19606901,6544183 -g1,8611:19606901,6544183 -g1,8611:19606901,6544183 -g1,8611:19606901,6544183 -(1,8611:19606901,6544183:0,0,0 -(1,8611:19606901,6544183:0,0,0 -(1,8611:19606901,6544183:0,0,0 +g1,6148:36675916,2439708 +(1,6148:36675916,2439708:1179648,16384,0 +r1,8069:37855564,2439708:1179648,16384,0 ) -g1,8611:19606901,6544183 ) +k1,8069:3078556,2439708:-34777008 ) -g1,8611:19606901,6544183 -g1,8611:19606901,6544183 +] +[1,8069:3078558,4812305:0,0,0 +(1,8069:3078558,49800853:0,16384,2228224 +k1,8069:1358238,49800853:-1720320 +(1,6148:1358238,49800853:1720320,16384,2228224 +(1,6148:1358238,49800853:1179648,16384,0 +r1,8069:2537886,49800853:1179648,16384,0 ) +g1,6148:3062174,49800853 +(1,6148:3062174,52029077:16384,1703936,0 +[1,6148:3062174,52029077:25952256,1703936,0 +(1,6148:3062174,51504789:25952256,1179648,0 +(1,6148:3062174,51504789:16384,1179648,0 +r1,8069:3078558,51504789:16384,1179648,0 ) -g1,8611:19606901,6544183 -g1,8612:19606901,6544183 -(1,8612:19606901,6544183:0,0,0 -(1,8612:19606901,6544183:0,0,0 -g1,8612:19606901,6544183 -g1,8612:19606901,6544183 -g1,8612:19606901,6544183 -g1,8612:19606901,6544183 -g1,8612:19606901,6544183 -(1,8612:19606901,6544183:0,0,0 -(1,8612:19606901,6544183:4121582,373362,104590 -(1,8612:19606901,6544183:4121582,373362,104590 -(1,8612:19606901,6544183:0,373362,104590 -r1,8679:23728483,6544183:4121582,477952,104590 -k1,8612:19606901,6544183:-4121582 -) -(1,8612:19606901,6544183:4121582,373362,104590 -g1,8612:23092125,6544183 -h1,8612:23725206,6544183:0,370085,101313 -) -) -g1,8612:23728483,6544183 -) -) -g1,8612:19606901,6544183 -g1,8612:19606901,6544183 -) -) -(1,8613:19606901,6544183:0,0,0 -(1,8613:19606901,6544183:0,0,0 -g1,8613:19606901,6544183 -g1,8613:19606901,6544183 -g1,8613:19606901,6544183 -g1,8613:19606901,6544183 -g1,8613:19606901,6544183 -(1,8613:19606901,6544183:0,0,0 -(1,8613:19606901,6544183:4121582,373362,104590 -(1,8613:19606901,6544183:4121582,373362,104590 -(1,8613:19606901,6544183:0,373362,104590 -r1,8679:23728483,6544183:4121582,477952,104590 -k1,8613:19606901,6544183:-4121582 -) -(1,8613:19606901,6544183:4121582,373362,104590 -g1,8613:23092125,6544183 -h1,8613:23725206,6544183:0,370085,101313 -) -) -g1,8613:23728483,6544183 -) -) -g1,8613:19606901,6544183 -g1,8613:19606901,6544183 -) -) -g1,8613:19606901,6544183 -g1,8614:19606901,6544183 -(1,8614:19606901,6544183:0,0,0 -(1,8614:19606901,6544183:0,0,0 -g1,8614:19606901,6544183 -g1,8614:19606901,6544183 -g1,8614:19606901,6544183 -g1,8614:19606901,6544183 -g1,8614:19606901,6544183 -(1,8614:19606901,6544183:0,0,0 -(1,8614:19606901,6544183:589824,56623,0 -(1,8614:19606901,6544183:589824,56623,0 -) -g1,8614:20196725,6544183 -) -) -g1,8614:19606901,6544183 -g1,8614:19606901,6544183 -) -) -g1,8614:19606901,6544183 -g1,8615:19606901,6544183 -g1,8615:19606901,6544183 -g1,8615:19606901,6544183 -g1,8615:19606901,6544183 -g1,8615:19606901,6544183 -g1,8615:19606901,6544183 -g1,8616:19606901,6544183 -g1,8616:19606901,6544183 -g1,8616:19606901,6544183 -g1,8616:19606901,6544183 -g1,8616:19606901,6544183 -g1,8616:19606901,6544183 -g1,8617:19606901,6544183 -g1,8617:19606901,6544183 -g1,8617:19606901,6544183 -g1,8617:19606901,6544183 -g1,8617:19606901,6544183 -g1,8617:19606901,6544183 -g1,8618:19606901,6544183 -g1,8618:19606901,6544183 -g1,8618:19606901,6544183 -g1,8618:19606901,6544183 -g1,8618:19606901,6544183 -g1,8618:19606901,6544183 -g1,8619:19606901,6544183 -g1,8619:19606901,6544183 -g1,8619:19606901,6544183 -g1,8619:19606901,6544183 -g1,8619:19606901,6544183 -g1,8619:19606901,6544183 -g1,8620:19606901,6544183 -g1,8620:19606901,6544183 -) -g1,8620:19606901,6544183 -) -) -g1,8622:22789957,16626546 -k1,8622:32583029,16626546:9793072 -) -v1,8625:6630773,18068707:0,393216,0 -(1,8642:6630773,23670952:25952256,5995461,196608 -g1,8642:6630773,23670952 -g1,8642:6630773,23670952 -g1,8642:6434165,23670952 -(1,8642:6434165,23670952:0,5995461,196608 -r1,8679:32779637,23670952:26345472,6192069,196608 -k1,8642:6434165,23670952:-26345472 -) -(1,8642:6434165,23670952:26345472,5995461,196608 -[1,8642:6630773,23670952:25952256,5798853,0 -(1,8627:6630773,18276325:25952256,404226,101187 -(1,8626:6630773,18276325:0,0,0 -g1,8626:6630773,18276325 -g1,8626:6630773,18276325 -g1,8626:6303093,18276325 -(1,8626:6303093,18276325:0,0,0 -) -g1,8626:6630773,18276325 -) -k1,8627:6630773,18276325:0 -h1,8627:9792230,18276325:0,0,0 -k1,8627:32583030,18276325:22790800 -g1,8627:32583030,18276325 -) -(1,8631:6630773,18942503:25952256,404226,76021 -(1,8629:6630773,18942503:0,0,0 -g1,8629:6630773,18942503 -g1,8629:6630773,18942503 -g1,8629:6303093,18942503 -(1,8629:6303093,18942503:0,0,0 -) -g1,8629:6630773,18942503 -) -g1,8631:7579210,18942503 -g1,8631:8843793,18942503 -h1,8631:9792230,18942503:0,0,0 -k1,8631:32583030,18942503:22790800 -g1,8631:32583030,18942503 -) -(1,8633:6630773,20264041:25952256,404226,76021 -(1,8632:6630773,20264041:0,0,0 -g1,8632:6630773,20264041 -g1,8632:6630773,20264041 -g1,8632:6303093,20264041 -(1,8632:6303093,20264041:0,0,0 -) -g1,8632:6630773,20264041 -) -h1,8633:6946919,20264041:0,0,0 -k1,8633:32583029,20264041:25636110 -g1,8633:32583029,20264041 -) -(1,8634:6630773,20930219:25952256,404226,101187 -h1,8634:6630773,20930219:0,0,0 -g1,8634:6946919,20930219 -g1,8634:7263065,20930219 -k1,8634:7263065,20930219:0 -h1,8634:10424522,20930219:0,0,0 -k1,8634:32583030,20930219:22158508 -g1,8634:32583030,20930219 -) -(1,8635:6630773,21596397:25952256,404226,101187 -h1,8635:6630773,21596397:0,0,0 -g1,8635:6946919,21596397 -g1,8635:7263065,21596397 -k1,8635:7263065,21596397:0 -h1,8635:10424522,21596397:0,0,0 -k1,8635:32583030,21596397:22158508 -g1,8635:32583030,21596397 -) -(1,8636:6630773,22262575:25952256,404226,76021 -h1,8636:6630773,22262575:0,0,0 -h1,8636:6946919,22262575:0,0,0 -k1,8636:32583029,22262575:25636110 -g1,8636:32583029,22262575 -) -(1,8641:6630773,22928753:25952256,404226,76021 -(1,8638:6630773,22928753:0,0,0 -g1,8638:6630773,22928753 -g1,8638:6630773,22928753 -g1,8638:6303093,22928753 -(1,8638:6303093,22928753:0,0,0 -) -g1,8638:6630773,22928753 -) -g1,8641:7579210,22928753 -g1,8641:8843793,22928753 -h1,8641:9792230,22928753:0,0,0 -k1,8641:32583030,22928753:22790800 -g1,8641:32583030,22928753 -) -(1,8641:6630773,23594931:25952256,404226,76021 -h1,8641:6630773,23594931:0,0,0 -g1,8641:7579210,23594931 -g1,8641:8843793,23594931 -h1,8641:9792230,23594931:0,0,0 -k1,8641:32583030,23594931:22790800 -g1,8641:32583030,23594931 -) -] -) -g1,8642:32583029,23670952 -g1,8642:6630773,23670952 -g1,8642:6630773,23670952 -g1,8642:32583029,23670952 -g1,8642:32583029,23670952 -) -h1,8642:6630773,23867560:0,0,0 -(1,8646:6630773,25053929:25952256,513147,134348 -h1,8645:6630773,25053929:983040,0,0 -k1,8645:9033171,25053929:222671 -k1,8645:12138771,25053929:222671 -k1,8645:13020734,25053929:222671 -k1,8645:14262491,25053929:222672 -k1,8645:15633353,25053929:222671 -k1,8645:17028463,25053929:222671 -k1,8645:20767796,25053929:222671 -k1,8645:22845791,25053929:222671 -k1,8645:23599959,25053929:222671 -k1,8645:24481923,25053929:222672 -k1,8645:25513964,25053929:222671 -k1,8645:29819528,25053929:222671 -k1,8645:30803727,25053929:222671 -k1,8645:32583029,25053929:0 -) -(1,8646:6630773,25895417:25952256,513147,126483 -k1,8645:7499687,25895417:241079 -k1,8645:8759850,25895417:241078 -k1,8645:11662346,25895417:241079 -k1,8645:13758749,25895417:241079 -k1,8645:15375429,25895417:241079 -k1,8645:16916086,25895417:241078 -k1,8645:19258249,25895417:241079 -k1,8645:20490888,25895417:241079 -k1,8645:21391258,25895417:241078 -k1,8645:24249190,25895417:241079 -k1,8645:25118104,25895417:241079 -k1,8645:26378268,25895417:241079 -k1,8645:29280763,25895417:241078 -k1,8645:31563944,25895417:241079 -k1,8645:32583029,25895417:0 -) -(1,8646:6630773,26736905:25952256,505283,126483 -k1,8645:8566597,26736905:255481 -k1,8645:11600805,26736905:255481 -k1,8645:12617815,26736905:255482 -k1,8645:13229156,26736905:255481 -k1,8645:16898407,26736905:255481 -k1,8645:20340248,26736905:255481 -k1,8645:21127226,26736905:255481 -k1,8645:22667213,26736905:255481 -k1,8645:25701422,26736905:255482 -k1,8645:26718431,26736905:255481 -k1,8645:27992997,26736905:255481 -k1,8645:29396669,26736905:255481 -k1,8645:32583029,26736905:0 -) -(1,8646:6630773,27578393:25952256,513147,126483 -k1,8645:9955355,27578393:263395 -k1,8645:12228739,27578393:263395 -k1,8645:13123901,27578393:263395 -k1,8645:16592007,27578393:263395 -k1,8645:20372064,27578393:263395 -k1,8645:21739741,27578393:263395 -k1,8645:22750902,27578393:263395 -k1,8645:26137743,27578393:263395 -k1,8645:27162666,27578393:263395 -k1,8645:28196764,27578393:263395 -k1,8645:31896867,27578393:263395 -k1,8645:32583029,27578393:0 -) -(1,8646:6630773,28419881:25952256,513147,126483 -k1,8645:8908571,28419881:248803 -k1,8645:9840259,28419881:248803 -k1,8645:10850589,28419881:248802 -k1,8645:11455252,28419881:248803 -k1,8645:14945466,28419881:248803 -k1,8645:15782127,28419881:248803 -k1,8645:16717092,28419881:248803 -k1,8645:19041419,28419881:248802 -k1,8645:21332324,28419881:248803 -k1,8645:22975078,28419881:248803 -k1,8645:24396320,28419881:248803 -k1,8645:28335454,28419881:248802 -k1,8645:30035879,28419881:248803 -k1,8645:30943974,28419881:248803 -k1,8645:32583029,28419881:0 -) -(1,8646:6630773,29261369:25952256,505283,134348 -g1,8645:11253682,29261369 -g1,8645:12223614,29261369 -g1,8645:15698988,29261369 -k1,8646:32583029,29261369:13636077 -g1,8646:32583029,29261369 -) -v1,8648:6630773,30272428:0,393216,0 -(1,8655:6630773,31222245:25952256,1343033,196608 -g1,8655:6630773,31222245 -g1,8655:6630773,31222245 -g1,8655:6434165,31222245 -(1,8655:6434165,31222245:0,1343033,196608 -r1,8679:32779637,31222245:26345472,1539641,196608 -k1,8655:6434165,31222245:-26345472 -) -(1,8655:6434165,31222245:26345472,1343033,196608 -[1,8655:6630773,31222245:25952256,1146425,0 -(1,8650:6630773,30480046:25952256,404226,82312 -(1,8649:6630773,30480046:0,0,0 -g1,8649:6630773,30480046 -g1,8649:6630773,30480046 -g1,8649:6303093,30480046 -(1,8649:6303093,30480046:0,0,0 -) -g1,8649:6630773,30480046 -) -g1,8650:7579211,30480046 -g1,8650:8211503,30480046 -g1,8650:9159941,30480046 -g1,8650:9792233,30480046 -g1,8650:10424525,30480046 -h1,8650:11056817,30480046:0,0,0 -k1,8650:32583029,30480046:21526212 -g1,8650:32583029,30480046 -) -(1,8654:6630773,31146224:25952256,404226,76021 -(1,8652:6630773,31146224:0,0,0 -g1,8652:6630773,31146224 -g1,8652:6630773,31146224 -g1,8652:6303093,31146224 -(1,8652:6303093,31146224:0,0,0 -) -g1,8652:6630773,31146224 -) -g1,8654:7579210,31146224 -g1,8654:8843793,31146224 -h1,8654:9159939,31146224:0,0,0 -k1,8654:32583029,31146224:23423090 -g1,8654:32583029,31146224 -) -] -) -g1,8655:32583029,31222245 -g1,8655:6630773,31222245 -g1,8655:6630773,31222245 -g1,8655:32583029,31222245 -g1,8655:32583029,31222245 -) -h1,8655:6630773,31418853:0,0,0 -(1,8659:6630773,32605222:25952256,505283,126483 -h1,8658:6630773,32605222:983040,0,0 -k1,8658:9073001,32605222:262501 -k1,8658:12521863,32605222:262502 -k1,8658:14639688,32605222:262501 -k1,8658:19265576,32605222:262501 -k1,8658:20812584,32605222:262502 -k1,8658:22450686,32605222:262501 -k1,8658:23732273,32605222:262502 -k1,8658:25675117,32605222:262501 -k1,8658:28716345,32605222:262501 -k1,8658:29740375,32605222:262502 -k1,8658:31021961,32605222:262501 -k1,8659:32583029,32605222:0 -) -(1,8659:6630773,33446710:25952256,505283,126483 -k1,8658:8937593,33446710:241125 -k1,8658:12365078,33446710:241125 -k1,8658:13292365,33446710:241125 -k1,8658:13889351,33446710:241126 -k1,8658:16013325,33446710:241125 -k1,8658:16785947,33446710:241125 -k1,8658:20090225,33446710:241125 -k1,8658:24648207,33446710:241125 -k1,8658:25502094,33446710:241125 -k1,8658:26762305,33446710:241126 -k1,8658:27418231,33446710:241083 -k1,8658:30253271,33446710:241125 -k1,8658:31563944,33446710:241125 -k1,8658:32583029,33446710:0 -) -(1,8659:6630773,34288198:25952256,505283,134348 -k1,8658:9274020,34288198:203342 -k1,8658:10577057,34288198:203343 -k1,8658:11431827,34288198:203342 -(1,8658:11431827,34288198:0,452978,115847 -r1,8679:13900364,34288198:2468537,568825,115847 -k1,8658:11431827,34288198:-2468537 -) -(1,8658:11431827,34288198:2468537,452978,115847 -k1,8658:11431827,34288198:3277 -h1,8658:13897087,34288198:0,411205,112570 -) -k1,8658:14103707,34288198:203343 -k1,8658:14838546,34288198:203342 -k1,8658:17413637,34288198:203343 -k1,8658:18268407,34288198:203342 -k1,8658:19490834,34288198:203342 -k1,8658:23107947,34288198:203343 -k1,8658:26671320,34288198:203342 -k1,8658:28642824,34288198:203343 -k1,8658:30312862,34288198:203342 -k1,8658:32583029,34288198:0 -) -(1,8659:6630773,35129686:25952256,505283,126483 -k1,8658:8248857,35129686:151388 -k1,8658:11916907,35129686:151388 -k1,8658:13572346,35129686:151388 -k1,8658:16958591,35129686:151388 -k1,8658:17978331,35129686:151388 -k1,8658:19505320,35129686:151388 -k1,8658:20681692,35129686:151389 -k1,8658:21852165,35129686:151388 -k1,8658:23846425,35129686:151388 -k1,8658:26776540,35129686:151388 -k1,8658:27689456,35129686:151388 -k1,8658:28859929,35129686:151388 -k1,8658:31252648,35129686:151388 -k1,8659:32583029,35129686:0 -k1,8659:32583029,35129686:0 -) -v1,8661:6630773,36316056:0,393216,0 -(1,8670:6630773,40632862:25952256,4710022,0 -g1,8670:6630773,40632862 -g1,8670:6303093,40632862 -r1,8679:6401397,40632862:98304,4710022,0 -g1,8670:6600626,40632862 -g1,8670:6797234,40632862 -[1,8670:6797234,40632862:25785795,4710022,0 -(1,8662:6797234,36748594:25785795,825754,196608 -(1,8661:6797234,36748594:0,825754,196608 -r1,8679:7890375,36748594:1093141,1022362,196608 -k1,8661:6797234,36748594:-1093141 -) -(1,8661:6797234,36748594:1093141,825754,196608 -) -k1,8661:8118834,36748594:228459 -k1,8661:9436763,36748594:327680 -k1,8661:12082189,36748594:228458 -k1,8661:12842145,36748594:228459 -k1,8661:14356419,36748594:228458 -k1,8661:17388508,36748594:228459 -k1,8661:19658413,36748594:228459 -k1,8661:22410007,36748594:228458 -k1,8661:23657551,36748594:228459 -k1,8661:27299779,36748594:228458 -k1,8661:30714598,36748594:228459 -k1,8661:32583029,36748594:0 -) -(1,8662:6797234,37590082:25785795,505283,126483 -k1,8661:7957964,37590082:254367 -k1,8661:8863759,37590082:254367 -k1,8661:11386982,37590082:254367 -k1,8661:12660434,37590082:254367 -k1,8661:14595144,37590082:254367 -k1,8661:15307608,37590082:254367 -k1,8661:16694437,37590082:254367 -k1,8661:19133119,37590082:254367 -k1,8661:20578931,37590082:254367 -k1,8661:22267226,37590082:254367 -k1,8661:23639637,37590082:254367 -k1,8661:24913089,37590082:254367 -k1,8661:26663643,37590082:254367 -k1,8661:28109455,37590082:254367 -k1,8661:31124198,37590082:254367 -k1,8661:32583029,37590082:0 -) -(1,8662:6797234,38431570:25785795,505283,126483 -g1,8661:10275885,38431570 -g1,8661:11126542,38431570 -g1,8661:12344856,38431570 -g1,8661:14224428,38431570 -k1,8662:32583029,38431570:15406204 -g1,8662:32583029,38431570 -) -v1,8664:6797234,39622036:0,393216,0 -(1,8668:6797234,39911966:25785795,683146,196608 -g1,8668:6797234,39911966 -g1,8668:6797234,39911966 -g1,8668:6600626,39911966 -(1,8668:6600626,39911966:0,683146,196608 -r1,8679:32779637,39911966:26179011,879754,196608 -k1,8668:6600625,39911966:-26179012 -) -(1,8668:6600626,39911966:26179011,683146,196608 -[1,8668:6797234,39911966:25785795,486538,0 -(1,8666:6797234,39829654:25785795,404226,82312 -(1,8665:6797234,39829654:0,0,0 -g1,8665:6797234,39829654 -g1,8665:6797234,39829654 -g1,8665:6469554,39829654 -(1,8665:6469554,39829654:0,0,0 -) -g1,8665:6797234,39829654 -) -g1,8666:7745672,39829654 -g1,8666:8377964,39829654 -g1,8666:9326402,39829654 -g1,8666:10274839,39829654 -g1,8666:11223277,39829654 -g1,8666:11855569,39829654 -g1,8666:12487861,39829654 -g1,8666:13436299,39829654 -g1,8666:14068591,39829654 -g1,8666:14700883,39829654 -h1,8666:15649320,39829654:0,0,0 -k1,8666:32583028,39829654:16933708 -g1,8666:32583028,39829654 -) -] -) -g1,8668:32583029,39911966 -g1,8668:6797234,39911966 -g1,8668:6797234,39911966 -g1,8668:32583029,39911966 -g1,8668:32583029,39911966 -) -h1,8668:6797234,40108574:0,0,0 -] -g1,8670:32583029,40632862 -) -h1,8670:6630773,40632862:0,0,0 -v1,8673:6630773,41819231:0,393216,0 -(1,8674:6630773,45706769:25952256,4280754,0 -g1,8674:6630773,45706769 -g1,8674:6303093,45706769 -r1,8679:6401397,45706769:98304,4280754,0 -g1,8674:6600626,45706769 -g1,8674:6797234,45706769 -[1,8674:6797234,45706769:25785795,4280754,0 -(1,8674:6797234,42214334:25785795,788319,218313 -(1,8673:6797234,42214334:0,788319,218313 -r1,8679:7917113,42214334:1119879,1006632,218313 -k1,8673:6797234,42214334:-1119879 -) -(1,8673:6797234,42214334:1119879,788319,218313 -) -k1,8673:8100573,42214334:183460 -k1,8673:8428253,42214334:327680 -k1,8673:11600156,42214334:183461 -k1,8673:12315113,42214334:183460 -k1,8673:13157866,42214334:183461 -k1,8673:14813920,42214334:183460 -k1,8673:16089866,42214334:183461 -k1,8673:17034854,42214334:183460 -k1,8673:18997617,42214334:183461 -k1,8673:19650970,42214334:183460 -k1,8673:22607915,42214334:183461 -k1,8673:24768596,42214334:183460 -k1,8673:27632480,42214334:183461 -k1,8673:29209891,42214334:183460 -k1,8674:32583029,42214334:0 -) -(1,8674:6797234,43055822:25785795,513147,134348 -k1,8673:10100118,43055822:227279 -k1,8673:13855199,43055822:227278 -k1,8673:15780516,43055822:227279 -k1,8673:18611540,43055822:227279 -k1,8673:22038287,43055822:227279 -k1,8673:23457010,43055822:227278 -k1,8673:25886299,43055822:227279 -k1,8673:27810960,43055822:227279 -k1,8673:29957132,43055822:227278 -k1,8673:31052763,43055822:227279 -k1,8673:32583029,43055822:0 -) -(1,8674:6797234,43897310:25785795,513147,134348 -k1,8673:7715131,43897310:266469 -k1,8673:9486963,43897310:266470 -k1,8673:10109292,43897310:266469 -k1,8673:12268442,43897310:266470 -k1,8673:13194203,43897310:266469 -k1,8673:14956859,43897310:266469 -k1,8673:18739991,43897310:266470 -k1,8673:19692622,43897310:266469 -k1,8673:20425053,43897310:266470 -k1,8673:22071710,43897310:266469 -k1,8673:23842230,43897310:266469 -k1,8673:24464560,43897310:266470 -k1,8673:26604048,43897310:266469 -k1,8673:30230549,43897310:266470 -k1,8673:31450567,43897310:266469 -k1,8673:32583029,43897310:0 -) -(1,8674:6797234,44738798:25785795,513147,126483 -k1,8673:8085180,44738798:262963 -k1,8673:10579644,44738798:262963 -k1,8673:13834327,44738798:262964 -k1,8673:14756582,44738798:262963 -k1,8673:16038630,44738798:262963 -k1,8673:17394078,44738798:262963 -k1,8673:18316333,44738798:262963 -k1,8673:21993066,44738798:262963 -k1,8673:25772692,44738798:262964 -k1,8673:28077757,44738798:262963 -k1,8673:28956758,44738798:262963 -k1,8673:30238806,44738798:262963 -k1,8673:32583029,44738798:0 -) -(1,8674:6797234,45580286:25785795,505283,126483 -g1,8673:9414086,45580286 -g1,8673:10804760,45580286 -g1,8673:11620027,45580286 -g1,8673:14236879,45580286 -h1,8673:14635338,45580286:0,0,0 -k1,8674:32583028,45580286:17774020 -g1,8674:32583028,45580286 -) -] -g1,8674:32583029,45706769 -) -h1,8674:6630773,45706769:0,0,0 -] -(1,8679:32583029,45706769:0,0,0 -g1,8679:32583029,45706769 -) -) -] -(1,8679:6630773,47279633:25952256,0,0 -h1,8679:6630773,47279633:25952256,0,0 -) -] -(1,8679:4262630,4025873:0,0,0 -[1,8679:-473656,4025873:0,0,0 -(1,8679:-473656,-710413:0,0,0 -(1,8679:-473656,-710413:0,0,0 -g1,8679:-473656,-710413 -) -g1,8679:-473656,-710413 -) -] -) -] -!21949 -}146 -Input:1166:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1167:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1168:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1169:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1170:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1171:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1172:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1173:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1174:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1175:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!952 -{147 -[1,8728:4262630,47279633:28320399,43253760,0 -(1,8728:4262630,4025873:0,0,0 -[1,8728:-473656,4025873:0,0,0 -(1,8728:-473656,-710413:0,0,0 -(1,8728:-473656,-644877:0,0,0 -k1,8728:-473656,-644877:-65536 +k1,6148:29014430,51504789:25935872 +g1,6148:29014430,51504789 +) +] +) +) +) +] +[1,8069:3078558,4812305:0,0,0 +(1,8069:3078558,49800853:0,16384,2228224 +g1,8069:29030814,49800853 +g1,8069:36135244,49800853 +(1,6148:36135244,49800853:1720320,16384,2228224 +(1,6148:36135244,52029077:16384,1703936,0 +[1,6148:36135244,52029077:25952256,1703936,0 +(1,6148:36135244,51504789:25952256,1179648,0 +(1,6148:36135244,51504789:16384,1179648,0 +r1,8069:36151628,51504789:16384,1179648,0 +) +k1,6148:62087500,51504789:25935872 +g1,6148:62087500,51504789 +) +] +) +g1,6148:36675916,49800853 +(1,6148:36675916,49800853:1179648,16384,0 +r1,8069:37855564,49800853:1179648,16384,0 +) +) +k1,8069:3078556,49800853:-34777008 +) +] +g1,8069:6630773,4812305 +g1,8069:6630773,4812305 +g1,8069:8364200,4812305 +g1,8069:10765439,4812305 +k1,8069:31387651,4812305:20622212 +) +) +] +[1,8069:6630773,45706769:25952256,40108032,0 +(1,8069:6630773,45706769:25952256,40108032,0 +(1,8069:6630773,45706769:0,0,0 +g1,8069:6630773,45706769 +) +[1,8069:6630773,45706769:25952256,40108032,0 +(1,7988:6630773,6254097:25952256,513147,134348 +k1,7987:8217017,6254097:196881 +k1,7987:10670958,6254097:196881 +k1,7987:12753309,6254097:196880 +k1,7987:14148844,6254097:196881 +k1,7987:16206292,6254097:196881 +k1,7987:17054601,6254097:196881 +k1,7987:17999248,6254097:196881 +k1,7987:20007544,6254097:196881 +k1,7987:22762950,6254097:196880 +k1,7987:26779269,6254097:196881 +k1,7987:28464473,6254097:196881 +k1,7987:29680439,6254097:196881 +k1,7987:32583029,6254097:0 +) +(1,7988:6630773,7119177:25952256,513147,134348 +k1,7987:7445501,7119177:283231 +k1,7987:8380160,7119177:283231 +k1,7987:10925694,7119177:283231 +k1,7987:11840692,7119177:283231 +k1,7987:12848752,7119177:283232 +k1,7987:14000335,7119177:283231 +k1,7987:16290278,7119177:283231 +k1,7987:17031606,7119177:283231 +k1,7987:18797261,7119177:283231 +k1,7987:19731920,7119177:283231 +k1,7987:21034236,7119177:283231 +k1,7987:22970940,7119177:283231 +k1,7987:25165857,7119177:283232 +k1,7987:26521257,7119177:283231 +k1,7987:27262585,7119177:283231 +k1,7987:29314633,7119177:283231 +k1,7987:31073079,7119177:283231 +k1,7987:32583029,7119177:0 +) +(1,7988:6630773,7984257:25952256,513147,134348 +g1,7987:9604796,7984257 +g1,7987:10455453,7984257 +g1,7987:11010542,7984257 +g1,7987:13972114,7984257 +g1,7987:15909358,7984257 +g1,7987:16833415,7984257 +g1,7987:17718806,7984257 +g1,7987:18984306,7984257 +g1,7987:19834963,7984257 +g1,7987:23036396,7984257 +g1,7987:24254710,7984257 +g1,7987:26889257,7984257 +g1,7987:28477849,7984257 +k1,7988:32583029,7984257:2055214 +g1,7988:32583029,7984257 +) +v1,7990:6630773,8669112:0,393216,0 +(1,8001:6630773,12468804:25952256,4192908,196608 +g1,8001:6630773,12468804 +g1,8001:6630773,12468804 +g1,8001:6434165,12468804 +(1,8001:6434165,12468804:0,4192908,196608 +r1,8069:32779637,12468804:26345472,4389516,196608 +k1,8001:6434165,12468804:-26345472 +) +(1,8001:6434165,12468804:26345472,4192908,196608 +[1,8001:6630773,12468804:25952256,3996300,0 +(1,7992:6630773,8903549:25952256,431045,106246 +(1,7991:6630773,8903549:0,0,0 +g1,7991:6630773,8903549 +g1,7991:6630773,8903549 +g1,7991:6303093,8903549 +(1,7991:6303093,8903549:0,0,0 +) +g1,7991:6630773,8903549 +) +g1,7992:12937898,8903549 +g1,7992:13933760,8903549 +k1,7992:13933760,8903549:0 +h1,7992:15261576,8903549:0,0,0 +k1,7992:32583028,8903549:17321452 +g1,7992:32583028,8903549 +) +(1,7993:6630773,9588404:25952256,431045,106246 +h1,7993:6630773,9588404:0,0,0 +g1,7993:12273990,9588404 +g1,7993:13269852,9588404 +g1,7993:21568701,9588404 +g1,7993:21900655,9588404 +g1,7993:22564563,9588404 +g1,7993:23560425,9588404 +g1,7993:24556287,9588404 +g1,7993:25220195,9588404 +g1,7993:26216057,9588404 +g1,7993:26879965,9588404 +h1,7993:27543873,9588404:0,0,0 +k1,7993:32583029,9588404:5039156 +g1,7993:32583029,9588404 +) +(1,7994:6630773,10273259:25952256,431045,106246 +h1,7994:6630773,10273259:0,0,0 +g1,7994:14265714,10273259 +h1,7994:14929622,10273259:0,0,0 +k1,7994:32583030,10273259:17653408 +g1,7994:32583030,10273259 +) +(1,8000:6630773,11089186:25952256,398014,8257 +(1,7996:6630773,11089186:0,0,0 +g1,7996:6630773,11089186 +g1,7996:6630773,11089186 +g1,7996:6303093,11089186 +(1,7996:6303093,11089186:0,0,0 +) +g1,7996:6630773,11089186 +) +g1,8000:7626635,11089186 +g1,8000:7958589,11089186 +g1,8000:8290543,11089186 +g1,8000:8954451,11089186 +g1,8000:9618359,11089186 +g1,8000:9950313,11089186 +g1,8000:10282267,11089186 +h1,8000:10614221,11089186:0,0,0 +k1,8000:32583029,11089186:21968808 +g1,8000:32583029,11089186 +) +(1,8000:6630773,11774041:25952256,407923,9908 +h1,8000:6630773,11774041:0,0,0 +g1,8000:7626635,11774041 +g1,8000:8290543,11774041 +g1,8000:8954451,11774041 +g1,8000:9618359,11774041 +h1,8000:10614221,11774041:0,0,0 +k1,8000:32583029,11774041:21968808 +g1,8000:32583029,11774041 +) +(1,8000:6630773,12458896:25952256,407923,9908 +h1,8000:6630773,12458896:0,0,0 +g1,8000:7626635,12458896 +g1,8000:8290543,12458896 +g1,8000:8954451,12458896 +g1,8000:9618359,12458896 +h1,8000:10614221,12458896:0,0,0 +k1,8000:32583029,12458896:21968808 +g1,8000:32583029,12458896 +) +] +) +g1,8001:32583029,12468804 +g1,8001:6630773,12468804 +g1,8001:6630773,12468804 +g1,8001:32583029,12468804 +g1,8001:32583029,12468804 +) +h1,8001:6630773,12665412:0,0,0 +(1,8005:6630773,13530492:25952256,513147,134348 +h1,8004:6630773,13530492:983040,0,0 +k1,8004:8405586,13530492:163938 +k1,8004:9588608,13530492:163937 +k1,8004:12413963,13530492:163938 +k1,8004:14606896,13530492:163938 +k1,8004:16506227,13530492:163938 +(1,8004:16506227,13530492:0,452978,115847 +r1,8069:19326476,13530492:2820249,568825,115847 +k1,8004:16506227,13530492:-2820249 +) +(1,8004:16506227,13530492:2820249,452978,115847 +k1,8004:16506227,13530492:3277 +h1,8004:19323199,13530492:0,411205,112570 +) +k1,8004:19490413,13530492:163937 +k1,8004:21700385,13530492:163938 +k1,8004:23336917,13530492:163938 +k1,8004:26687215,13530492:163938 +k1,8004:30032270,13530492:163937 +k1,8004:30847636,13530492:163938 +k1,8005:32583029,13530492:0 +) +(1,8005:6630773,14395572:25952256,513147,134348 +(1,8004:6630773,14395572:0,452978,115847 +r1,8069:8747598,14395572:2116825,568825,115847 +k1,8004:6630773,14395572:-2116825 +) +(1,8004:6630773,14395572:2116825,452978,115847 +k1,8004:6630773,14395572:3277 +h1,8004:8744321,14395572:0,411205,112570 +) +k1,8004:8953884,14395572:206286 +k1,8004:10554121,14395572:206286 +k1,8004:13084969,14395572:206286 +k1,8004:13942684,14395572:206287 +k1,8004:15168055,14395572:206286 +k1,8004:17831286,14395572:206286 +k1,8004:18696864,14395572:206286 +k1,8004:20932145,14395572:206286 +k1,8004:21821316,14395572:206286 +k1,8004:24203398,14395572:206287 +k1,8004:25481853,14395572:206286 +k1,8004:27082090,14395572:206286 +k1,8004:29959623,14395572:206286 +k1,8004:32583029,14395572:0 +) +(1,8005:6630773,15260652:25952256,505283,134348 +k1,8004:9648029,15260652:175615 +k1,8004:11561659,15260652:175615 +k1,8004:14569085,15260652:175615 +k1,8004:16563324,15260652:175615 +k1,8004:17425101,15260652:175615 +k1,8004:19676242,15260652:175616 +k1,8004:21893959,15260652:175615 +(1,8004:21893959,15260652:0,452978,115847 +r1,8069:24714208,15260652:2820249,568825,115847 +k1,8004:21893959,15260652:-2820249 +) +(1,8004:21893959,15260652:2820249,452978,115847 +k1,8004:21893959,15260652:3277 +h1,8004:24710931,15260652:0,411205,112570 +) +k1,8004:24889823,15260652:175615 +k1,8004:26166443,15260652:175615 +k1,8004:27112761,15260652:175615 +k1,8004:30527165,15260652:175615 +k1,8005:32583029,15260652:0 +) +(1,8005:6630773,16125732:25952256,505283,134348 +g1,8004:7820251,16125732 +g1,8004:8635518,16125732 +g1,8004:10484944,16125732 +g1,8004:13039537,16125732 +g1,8004:14430211,16125732 +g1,8004:16499838,16125732 +g1,8004:17350495,16125732 +g1,8004:21214497,16125732 +k1,8005:32583029,16125732:9698675 +g1,8005:32583029,16125732 +) +v1,8007:6630773,16810587:0,393216,0 +(1,8022:6630773,23349699:25952256,6932328,196608 +g1,8022:6630773,23349699 +g1,8022:6630773,23349699 +g1,8022:6434165,23349699 +(1,8022:6434165,23349699:0,6932328,196608 +r1,8069:32779637,23349699:26345472,7128936,196608 +k1,8022:6434165,23349699:-26345472 +) +(1,8022:6434165,23349699:26345472,6932328,196608 +[1,8022:6630773,23349699:25952256,6735720,0 +(1,8009:6630773,17045024:25952256,431045,106246 +(1,8008:6630773,17045024:0,0,0 +g1,8008:6630773,17045024 +g1,8008:6630773,17045024 +g1,8008:6303093,17045024 +(1,8008:6303093,17045024:0,0,0 +) +g1,8008:6630773,17045024 +) +g1,8009:12937898,17045024 +g1,8009:13933760,17045024 +k1,8009:13933760,17045024:0 +h1,8009:15261576,17045024:0,0,0 +k1,8009:32583028,17045024:17321452 +g1,8009:32583028,17045024 +) +(1,8010:6630773,17729879:25952256,431045,106246 +h1,8010:6630773,17729879:0,0,0 +g1,8010:12273990,17729879 +g1,8010:13269852,17729879 +k1,8010:13269852,17729879:0 +h1,8010:21236747,17729879:0,0,0 +k1,8010:32583029,17729879:11346282 +g1,8010:32583029,17729879 +) +(1,8011:6630773,18414734:25952256,424439,79822 +h1,8011:6630773,18414734:0,0,0 +g1,8011:6962727,18414734 +g1,8011:7294681,18414734 +g1,8011:7626635,18414734 +g1,8011:7958589,18414734 +g1,8011:8290543,18414734 +g1,8011:8622497,18414734 +g1,8011:8954451,18414734 +g1,8011:9286405,18414734 +g1,8011:9618359,18414734 +g1,8011:9950313,18414734 +g1,8011:10282267,18414734 +g1,8011:10614221,18414734 +g1,8011:10946175,18414734 +g1,8011:11278129,18414734 +g1,8011:11610083,18414734 +g1,8011:11942037,18414734 +g1,8011:12273991,18414734 +g1,8011:12605945,18414734 +g1,8011:12937899,18414734 +g1,8011:13269853,18414734 +g1,8011:13601807,18414734 +g1,8011:13933761,18414734 +g1,8011:14265715,18414734 +g1,8011:14597669,18414734 +g1,8011:14929623,18414734 +g1,8011:15261577,18414734 +g1,8011:15593531,18414734 +g1,8011:16589393,18414734 +g1,8011:17585255,18414734 +g1,8011:18581117,18414734 +g1,8011:19245025,18414734 +g1,8011:20240887,18414734 +g1,8011:20904795,18414734 +h1,8011:21236749,18414734:0,0,0 +k1,8011:32583029,18414734:11346280 +g1,8011:32583029,18414734 +) +(1,8012:6630773,19099589:25952256,344616,0 +h1,8012:6630773,19099589:0,0,0 +g1,8012:6962727,19099589 +g1,8012:7294681,19099589 +g1,8012:7626635,19099589 +g1,8012:7958589,19099589 +g1,8012:8290543,19099589 +g1,8012:8622497,19099589 +g1,8012:8954451,19099589 +g1,8012:9286405,19099589 +g1,8012:9618359,19099589 +g1,8012:9950313,19099589 +g1,8012:10282267,19099589 +g1,8012:10614221,19099589 +g1,8012:10946175,19099589 +g1,8012:11278129,19099589 +g1,8012:11610083,19099589 +g1,8012:11942037,19099589 +g1,8012:12273991,19099589 +g1,8012:12605945,19099589 +g1,8012:12937899,19099589 +g1,8012:13269853,19099589 +g1,8012:13601807,19099589 +g1,8012:13933761,19099589 +g1,8012:14265715,19099589 +g1,8012:14597669,19099589 +g1,8012:14929623,19099589 +g1,8012:15261577,19099589 +g1,8012:15593531,19099589 +g1,8012:15925485,19099589 +g1,8012:16589393,19099589 +g1,8012:17585255,19099589 +g1,8012:18249163,19099589 +g1,8012:18913071,19099589 +h1,8012:19245025,19099589:0,0,0 +k1,8012:32583029,19099589:13338004 +g1,8012:32583029,19099589 +) +(1,8013:6630773,19784444:25952256,424439,79822 +h1,8013:6630773,19784444:0,0,0 +g1,8013:6962727,19784444 +g1,8013:7294681,19784444 +g1,8013:7626635,19784444 +g1,8013:7958589,19784444 +g1,8013:8290543,19784444 +g1,8013:8622497,19784444 +g1,8013:8954451,19784444 +g1,8013:9286405,19784444 +g1,8013:9618359,19784444 +g1,8013:9950313,19784444 +g1,8013:10282267,19784444 +g1,8013:10614221,19784444 +g1,8013:10946175,19784444 +g1,8013:11278129,19784444 +g1,8013:11610083,19784444 +g1,8013:11942037,19784444 +g1,8013:12273991,19784444 +g1,8013:12605945,19784444 +g1,8013:12937899,19784444 +g1,8013:13269853,19784444 +g1,8013:13601807,19784444 +g1,8013:13933761,19784444 +g1,8013:14265715,19784444 +g1,8013:14597669,19784444 +g1,8013:14929623,19784444 +g1,8013:15261577,19784444 +g1,8013:15593531,19784444 +g1,8013:15925485,19784444 +g1,8013:16589393,19784444 +g1,8013:17585255,19784444 +g1,8013:18249163,19784444 +g1,8013:18913071,19784444 +g1,8013:19576979,19784444 +g1,8013:20240887,19784444 +h1,8013:20904795,19784444:0,0,0 +k1,8013:32583029,19784444:11678234 +g1,8013:32583029,19784444 +) +(1,8014:6630773,20469299:25952256,424439,79822 +h1,8014:6630773,20469299:0,0,0 +g1,8014:6962727,20469299 +g1,8014:7294681,20469299 +g1,8014:7626635,20469299 +g1,8014:7958589,20469299 +g1,8014:8290543,20469299 +g1,8014:8622497,20469299 +g1,8014:8954451,20469299 +g1,8014:9286405,20469299 +g1,8014:9618359,20469299 +g1,8014:9950313,20469299 +g1,8014:10282267,20469299 +g1,8014:10614221,20469299 +g1,8014:10946175,20469299 +g1,8014:11278129,20469299 +g1,8014:11610083,20469299 +g1,8014:11942037,20469299 +g1,8014:12273991,20469299 +g1,8014:12605945,20469299 +g1,8014:12937899,20469299 +g1,8014:13269853,20469299 +g1,8014:13601807,20469299 +g1,8014:13933761,20469299 +g1,8014:14265715,20469299 +g1,8014:14597669,20469299 +g1,8014:14929623,20469299 +g1,8014:15261577,20469299 +g1,8014:15593531,20469299 +h1,8014:15925485,20469299:0,0,0 +k1,8014:32583029,20469299:16657544 +g1,8014:32583029,20469299 +) +(1,8015:6630773,21154154:25952256,431045,106246 +h1,8015:6630773,21154154:0,0,0 +g1,8015:14265714,21154154 +h1,8015:14929622,21154154:0,0,0 +k1,8015:32583030,21154154:17653408 +g1,8015:32583030,21154154 +) +(1,8021:6630773,21970081:25952256,398014,8257 +(1,8017:6630773,21970081:0,0,0 +g1,8017:6630773,21970081 +g1,8017:6630773,21970081 +g1,8017:6303093,21970081 +(1,8017:6303093,21970081:0,0,0 +) +g1,8017:6630773,21970081 +) +g1,8021:7626635,21970081 +g1,8021:7958589,21970081 +g1,8021:8290543,21970081 +g1,8021:8954451,21970081 +g1,8021:9618359,21970081 +g1,8021:9950313,21970081 +g1,8021:10282267,21970081 +g1,8021:10614221,21970081 +g1,8021:10946175,21970081 +g1,8021:11278129,21970081 +g1,8021:11610083,21970081 +g1,8021:11942037,21970081 +g1,8021:12605945,21970081 +g1,8021:13269853,21970081 +g1,8021:13601807,21970081 +g1,8021:13933761,21970081 +h1,8021:14265715,21970081:0,0,0 +k1,8021:32583029,21970081:18317314 +g1,8021:32583029,21970081 +) +(1,8021:6630773,22654936:25952256,407923,9908 +h1,8021:6630773,22654936:0,0,0 +g1,8021:7626635,22654936 +g1,8021:8290543,22654936 +g1,8021:8954451,22654936 +g1,8021:9618359,22654936 +g1,8021:12605944,22654936 +g1,8021:13269852,22654936 +h1,8021:14265714,22654936:0,0,0 +k1,8021:32583030,22654936:18317316 +g1,8021:32583030,22654936 +) +(1,8021:6630773,23339791:25952256,407923,9908 +h1,8021:6630773,23339791:0,0,0 +g1,8021:7626635,23339791 +g1,8021:8290543,23339791 +g1,8021:8954451,23339791 +g1,8021:9618359,23339791 +g1,8021:12605944,23339791 +g1,8021:13269852,23339791 +h1,8021:14265714,23339791:0,0,0 +k1,8021:32583030,23339791:18317316 +g1,8021:32583030,23339791 +) +] +) +g1,8022:32583029,23349699 +g1,8022:6630773,23349699 +g1,8022:6630773,23349699 +g1,8022:32583029,23349699 +g1,8022:32583029,23349699 +) +h1,8022:6630773,23546307:0,0,0 +v1,8026:6630773,24411387:0,393216,0 +(1,8069:6630773,45706769:25952256,21688598,0 +g1,8069:6630773,45706769 +g1,8069:6237557,45706769 +r1,8069:6368629,45706769:131072,21688598,0 +g1,8069:6567858,45706769 +g1,8069:6764466,45706769 +[1,8069:6764466,45706769:25818563,21688598,0 +(1,8028:6764466,24719685:25818563,701514,196608 +(1,8026:6764466,24719685:0,701514,196608 +r1,8069:8010564,24719685:1246098,898122,196608 +k1,8026:6764466,24719685:-1246098 +) +(1,8026:6764466,24719685:1246098,701514,196608 +) +k1,8026:8195310,24719685:184746 +k1,8026:8522990,24719685:327680 +k1,8026:12215223,24719685:184746 +k1,8026:16263317,24719685:184747 +k1,8026:17467148,24719685:184746 +k1,8026:19389909,24719685:184746 +k1,8026:20233947,24719685:184746 +k1,8026:20774553,24719685:184746 +k1,8026:23996894,24719685:184747 +k1,8026:25675206,24719685:184746 +k1,8026:26546114,24719685:184746 +k1,8026:27086720,24719685:184746 +k1,8026:28264993,24719685:184747 +k1,8026:29132624,24719685:184746 +k1,8026:30706733,24719685:184746 +k1,8026:32583029,24719685:0 +) +(1,8028:6764466,25584765:25818563,513147,134348 +k1,8026:7575851,25584765:159957 +k1,8026:8754894,25584765:159958 +k1,8026:10652866,25584765:159957 +k1,8026:11472115,25584765:159957 +k1,8026:13083694,25584765:159957 +k1,8026:15867058,25584765:159958 +k1,8026:18538355,25584765:159957 +k1,8026:20436327,25584765:159957 +k1,8026:23395328,25584765:159958 +k1,8026:24659567,25584765:159957 +k1,8026:26535257,25584765:159957 +k1,8026:27110018,25584765:159918 +k1,8026:28766163,25584765:159958 +k1,8026:31391584,25584765:159957 +k1,8026:32583029,25584765:0 +) +(1,8028:6764466,26449845:25818563,513147,134348 +k1,8026:9435075,26449845:186794 +k1,8026:10273298,26449845:186795 +k1,8026:14298536,26449845:186794 +k1,8026:17605499,26449845:186794 +(1,8026:17605499,26449845:0,452978,115847 +r1,8069:20425748,26449845:2820249,568825,115847 +k1,8026:17605499,26449845:-2820249 +) +(1,8026:17605499,26449845:2820249,452978,115847 +k1,8026:17605499,26449845:3277 +h1,8026:20422471,26449845:0,411205,112570 +) +k1,8026:20612543,26449845:186795 +k1,8026:21990782,26449845:186794 +k1,8026:22965975,26449845:186795 +k1,8026:26124171,26449845:186794 +(1,8026:26124171,26449845:0,452978,115847 +r1,8069:28944420,26449845:2820249,568825,115847 +k1,8026:26124171,26449845:-2820249 +) +(1,8026:26124171,26449845:2820249,452978,115847 +k1,8026:26124171,26449845:3277 +h1,8026:28941143,26449845:0,411205,112570 +) +k1,8026:29131214,26449845:186794 +k1,8026:30999663,26449845:186795 +k1,8026:31931601,26449845:186794 +k1,8026:32583029,26449845:0 +) +(1,8028:6764466,27314925:25818563,513147,134348 +k1,8026:9255774,27314925:250632 +k1,8026:11425300,27314925:250632 +k1,8026:12090724,27314925:250581 +k1,8026:14058399,27314925:250632 +k1,8026:15256682,27314925:250632 +k1,8026:16526399,27314925:250632 +k1,8026:18845347,27314925:250632 +k1,8026:19755271,27314925:250632 +k1,8026:22295731,27314925:250632 +k1,8026:23414716,27314925:250633 +k1,8026:26003017,27314925:250632 +k1,8026:26869687,27314925:250632 +k1,8026:27476179,27314925:250632 +k1,8026:29222998,27314925:250632 +k1,8026:32583029,27314925:0 +) +(1,8028:6764466,28180005:25818563,513147,134348 +k1,8027:8731436,28180005:183735 +k1,8027:10650564,28180005:183735 +k1,8027:11190159,28180005:183735 +k1,8027:12762602,28180005:183735 +k1,8027:14684352,28180005:183735 +k1,8027:15815738,28180005:183735 +k1,8027:16355332,28180005:183734 +k1,8027:17928430,28180005:183735 +k1,8027:20162131,28180005:183735 +k1,8027:22990899,28180005:183735 +k1,8027:23530494,28180005:183735 +k1,8027:25838906,28180005:183735 +k1,8027:29494083,28180005:183735 +k1,8027:30782100,28180005:183735 +k1,8027:32583029,28180005:0 +) +(1,8028:6764466,29045085:25818563,513147,115847 +k1,8027:8849118,29045085:241780 +k1,8027:9706936,29045085:241780 +k1,8027:10304577,29045085:241781 +k1,8027:13030172,29045085:241780 +k1,8027:13923380,29045085:241780 +k1,8027:15577461,29045085:241780 +k1,8027:19179273,29045085:241781 +k1,8027:22418014,29045085:241780 +(1,8027:22418014,29045085:0,452978,115847 +r1,8069:24534839,29045085:2116825,568825,115847 +k1,8027:22418014,29045085:-2116825 +) +(1,8027:22418014,29045085:2116825,452978,115847 +k1,8027:22418014,29045085:3277 +h1,8027:24531562,29045085:0,411205,112570 +) +k1,8027:24776619,29045085:241780 +k1,8027:25549896,29045085:241780 +k1,8027:27304902,29045085:241780 +k1,8027:28944566,29045085:241781 +k1,8027:29837774,29045085:241780 +k1,8027:31563944,29045085:241780 +k1,8027:32583029,29045085:0 +) +(1,8028:6764466,29910165:25818563,513147,134348 +k1,8027:10068690,29910165:241071 +k1,8027:11990103,29910165:241070 +k1,8027:12882602,29910165:241071 +k1,8027:14142757,29910165:241070 +k1,8027:15689961,29910165:241071 +k1,8027:17103470,29910165:241070 +(1,8027:19293028,29910165:0,452978,115847 +r1,8069:21409853,29910165:2116825,568825,115847 +k1,8027:19293028,29910165:-2116825 +) +(1,8027:19293028,29910165:2116825,452978,115847 +k1,8027:19293028,29910165:3277 +h1,8027:21406576,29910165:0,411205,112570 +) +k1,8027:21650924,29910165:241071 +k1,8027:22423491,29910165:241070 +k1,8027:25754585,29910165:241071 +k1,8027:26611693,29910165:241070 +k1,8027:29131451,29910165:241071 +(1,8027:29131451,29910165:661914,485622,0 +) +k1,8027:30034435,29910165:241070 +k1,8027:31084876,29910165:241071 +k1,8027:32583029,29910165:0 +) +(1,8028:6764466,30775245:25818563,505283,95026 +(1,8027:6764466,30775245:661914,485622,0 +) +k1,8028:32583028,30775245:24775884 +g1,8028:32583028,30775245 +) +v1,8030:6764466,31460100:0,393216,0 +(1,8042:6764466,35944647:25818563,4877763,196608 +g1,8042:6764466,35944647 +g1,8042:6764466,35944647 +g1,8042:6567858,35944647 +(1,8042:6567858,35944647:0,4877763,196608 +r1,8069:32779637,35944647:26211779,5074371,196608 +k1,8042:6567857,35944647:-26211780 +) +(1,8042:6567858,35944647:26211779,4877763,196608 +[1,8042:6764466,35944647:25818563,4681155,0 +(1,8032:6764466,31694537:25818563,431045,106246 +(1,8031:6764466,31694537:0,0,0 +g1,8031:6764466,31694537 +g1,8031:6764466,31694537 +g1,8031:6436786,31694537 +(1,8031:6436786,31694537:0,0,0 +) +g1,8031:6764466,31694537 +) +g1,8032:12407683,31694537 +g1,8032:13403545,31694537 +g1,8032:17718946,31694537 +g1,8032:18382854,31694537 +g1,8032:20374578,31694537 +g1,8032:21038486,31694537 +g1,8032:21702394,31694537 +h1,8032:22366302,31694537:0,0,0 +k1,8032:32583029,31694537:10216727 +g1,8032:32583029,31694537 +) +(1,8033:6764466,32379392:25818563,431045,106246 +h1,8033:6764466,32379392:0,0,0 +g1,8033:13071591,32379392 +k1,8033:13071591,32379392:0 +h1,8033:13735499,32379392:0,0,0 +k1,8033:32583029,32379392:18847530 +g1,8033:32583029,32379392 +) +(1,8034:6764466,33064247:25818563,431045,106246 +h1,8034:6764466,33064247:0,0,0 +g1,8034:7096420,33064247 +g1,8034:7428374,33064247 +g1,8034:14067453,33064247 +g1,8034:14731361,33064247 +g1,8034:21370440,33064247 +g1,8034:22034348,33064247 +h1,8034:28009519,33064247:0,0,0 +k1,8034:32583029,33064247:4573510 +g1,8034:32583029,33064247 +) +(1,8035:6764466,33749102:25818563,431045,106246 +h1,8035:6764466,33749102:0,0,0 +g1,8035:14399407,33749102 +h1,8035:15063315,33749102:0,0,0 +k1,8035:32583029,33749102:17519714 +g1,8035:32583029,33749102 +) +(1,8041:6764466,34565029:25818563,398014,8257 +(1,8037:6764466,34565029:0,0,0 +g1,8037:6764466,34565029 +g1,8037:6764466,34565029 +g1,8037:6436786,34565029 +(1,8037:6436786,34565029:0,0,0 +) +g1,8037:6764466,34565029 +) +g1,8041:7760328,34565029 +g1,8041:8092282,34565029 +g1,8041:8424236,34565029 +g1,8041:9088144,34565029 +g1,8041:9752052,34565029 +g1,8041:10084006,34565029 +g1,8041:10415960,34565029 +h1,8041:10747914,34565029:0,0,0 +k1,8041:32583030,34565029:21835116 +g1,8041:32583030,34565029 +) +(1,8041:6764466,35249884:25818563,407923,9908 +h1,8041:6764466,35249884:0,0,0 +g1,8041:7760328,35249884 +g1,8041:8424236,35249884 +g1,8041:9088144,35249884 +g1,8041:9752052,35249884 +h1,8041:10747914,35249884:0,0,0 +k1,8041:32583030,35249884:21835116 +g1,8041:32583030,35249884 +) +(1,8041:6764466,35934739:25818563,407923,9908 +h1,8041:6764466,35934739:0,0,0 +g1,8041:7760328,35934739 +g1,8041:8424236,35934739 +g1,8041:9088144,35934739 +g1,8041:9752052,35934739 +h1,8041:10747914,35934739:0,0,0 +k1,8041:32583030,35934739:21835116 +g1,8041:32583030,35934739 +) +] +) +g1,8042:32583029,35944647 +g1,8042:6764466,35944647 +g1,8042:6764466,35944647 +g1,8042:32583029,35944647 +g1,8042:32583029,35944647 +) +h1,8042:6764466,36141255:0,0,0 +(1,8046:6764466,37006335:25818563,513147,134348 +h1,8045:6764466,37006335:983040,0,0 +k1,8045:9740108,37006335:200848 +(1,8045:9740108,37006335:0,452978,115847 +r1,8069:12560357,37006335:2820249,568825,115847 +k1,8045:9740108,37006335:-2820249 +) +(1,8045:9740108,37006335:2820249,452978,115847 +k1,8045:9740108,37006335:3277 +h1,8045:12557080,37006335:0,411205,112570 +) +k1,8045:12761206,37006335:200849 +k1,8045:13830406,37006335:200848 +k1,8045:15135536,37006335:200848 +k1,8045:16789974,37006335:200849 +k1,8045:18321203,37006335:200848 +k1,8045:18936892,37006335:200846 +k1,8045:20854784,37006335:200849 +k1,8045:21891216,37006335:200848 +k1,8045:24160380,37006335:200848 +k1,8045:25552674,37006335:200849 +k1,8045:29978628,37006335:200848 +k1,8045:32583029,37006335:0 +) +(1,8046:6764466,37871415:25818563,505283,134348 +k1,8045:8004843,37871415:221292 +k1,8045:11586166,37871415:221292 +k1,8045:13286606,37871415:221292 +(1,8045:13286606,37871415:0,452978,115847 +r1,8069:16106855,37871415:2820249,568825,115847 +k1,8045:13286606,37871415:-2820249 +) +(1,8045:13286606,37871415:2820249,452978,115847 +k1,8045:13286606,37871415:3277 +h1,8045:16103578,37871415:0,411205,112570 +) +k1,8045:16328146,37871415:221291 +k1,8045:17417790,37871415:221292 +k1,8045:18743364,37871415:221292 +k1,8045:21217784,37871415:221292 +k1,8045:22458161,37871415:221292 +k1,8045:25114771,37871415:221292 +k1,8045:27057037,37871415:221291 +k1,8045:27748222,37871415:221292 +k1,8045:28501011,37871415:221292 +k1,8045:31931601,37871415:221292 +k1,8045:32583029,37871415:0 +) +(1,8046:6764466,38736495:25818563,513147,134348 +k1,8045:10253001,38736495:229430 +k1,8045:11766938,38736495:229431 +k1,8045:13394252,38736495:229431 +k1,8045:14492034,38736495:229430 +k1,8045:15825747,38736495:229431 +k1,8045:17430778,38736495:229430 +k1,8045:20264610,38736495:229431 +k1,8045:21513125,38736495:229430 +k1,8045:25097344,38736495:229431 +k1,8045:26626353,38736495:229430 +k1,8045:27515076,38736495:229431 +k1,8045:28763591,38736495:229430 +k1,8045:32583029,38736495:0 +) +(1,8046:6764466,39601575:25818563,513147,126483 +k1,8045:8603780,39601575:149796 +k1,8045:9772662,39601575:149797 +k1,8045:14117418,39601575:149796 +k1,8045:14926507,39601575:149797 +k1,8045:16095389,39601575:149797 +k1,8045:18088057,39601575:149796 +k1,8045:18897145,39601575:149796 +k1,8045:20066027,39601575:149797 +k1,8045:24279711,39601575:149797 +k1,8045:25628161,39601575:149796 +k1,8045:27638524,39601575:149796 +k1,8045:28439749,39601575:149797 +k1,8045:29337311,39601575:149796 +k1,8045:30938075,39601575:149797 +k1,8046:32583029,39601575:0 +) +(1,8046:6764466,40466655:25818563,513147,134348 +k1,8045:8353613,40466655:189298 +k1,8045:9352281,40466655:189298 +k1,8045:10560664,40466655:189298 +k1,8045:13643378,40466655:189299 +k1,8045:15132255,40466655:189298 +k1,8045:15980845,40466655:189298 +k1,8045:17189228,40466655:189298 +k1,8045:21024294,40466655:189298 +k1,8045:24133876,40466655:189298 +k1,8045:25276724,40466655:189299 +k1,8045:27803691,40466655:189298 +k1,8045:29861420,40466655:189298 +k1,8045:31426319,40466655:189298 +k1,8045:32583029,40466655:0 +) +(1,8046:6764466,41331735:25818563,505283,126483 +k1,8045:10205272,41331735:254446 +k1,8045:13094921,41331735:254446 +(1,8045:13094921,41331735:0,452978,115847 +r1,8069:15915170,41331735:2820249,568825,115847 +k1,8045:13094921,41331735:-2820249 +) +(1,8045:13094921,41331735:2820249,452978,115847 +k1,8045:13094921,41331735:3277 +h1,8045:15911893,41331735:0,411205,112570 +) +k1,8045:16169616,41331735:254446 +k1,8045:17615507,41331735:254446 +(1,8045:17615507,41331735:0,452978,115847 +r1,8069:20435756,41331735:2820249,568825,115847 +k1,8045:17615507,41331735:-2820249 +) +(1,8045:17615507,41331735:2820249,452978,115847 +k1,8045:17615507,41331735:3277 +h1,8045:20432479,41331735:0,411205,112570 +) +k1,8045:20690201,41331735:254445 +k1,8045:22016816,41331735:254446 +k1,8045:24942509,41331735:254446 +k1,8045:28713617,41331735:254446 +k1,8045:29959623,41331735:254446 +k1,8045:32583029,41331735:0 +) +(1,8046:6764466,42196815:25818563,513147,102891 +k1,8045:11180282,42196815:222167 +k1,8045:11868410,42196815:222167 +k1,8045:14932218,42196815:222167 +k1,8045:16548336,42196815:222167 +k1,8045:17789588,42196815:222167 +k1,8045:19665228,42196815:222167 +k1,8045:21625410,42196815:222167 +k1,8045:22533739,42196815:222167 +k1,8045:23774991,42196815:222167 +k1,8045:26710349,42196815:222167 +k1,8045:28433290,42196815:222167 +k1,8045:29271495,42196815:222167 +k1,8045:30512747,42196815:222167 +k1,8045:32583029,42196815:0 +) +(1,8046:6764466,43061895:25818563,505283,134348 +k1,8045:8584804,43061895:198322 +k1,8045:10479853,43061895:198322 +k1,8045:11810637,43061895:198322 +k1,8045:13361622,43061895:198322 +k1,8045:17334818,43061895:198322 +k1,8045:20887273,43061895:198322 +k1,8045:22370101,43061895:198322 +k1,8045:23672705,43061895:198322 +k1,8045:25713899,43061895:198322 +k1,8045:26528259,43061895:198322 +k1,8045:28246361,43061895:198322 +k1,8045:29127568,43061895:198322 +k1,8045:31900144,43061895:198322 +k1,8045:32583029,43061895:0 +) +(1,8046:6764466,43926975:25818563,513147,134348 +k1,8045:7667014,43926975:216386 +k1,8045:9323226,43926975:216386 +k1,8045:11581715,43926975:216387 +k1,8045:12153961,43926975:216386 +k1,8045:15075673,43926975:216386 +k1,8045:17202433,43926975:216386 +k1,8045:18703326,43926975:216387 +k1,8045:21431052,43926975:216386 +(1,8045:21431052,43926975:0,414482,115847 +r1,8069:21789318,43926975:358266,530329,115847 +k1,8045:21431052,43926975:-358266 +) +(1,8045:21431052,43926975:358266,414482,115847 +k1,8045:21431052,43926975:3277 +h1,8045:21786041,43926975:0,411205,112570 +) +k1,8045:22005704,43926975:216386 +k1,8045:23789711,43926975:216386 +k1,8045:25025183,43926975:216387 +k1,8045:27176847,43926975:216386 +k1,8045:31450567,43926975:216386 +k1,8045:32583029,43926975:0 +) +(1,8046:6764466,44792055:25818563,513147,115847 +k1,8045:7674413,44792055:162181 +k1,8045:9349819,44792055:162180 +k1,8045:11839183,44792055:162181 +k1,8045:12660656,44792055:162181 +k1,8045:15205725,44792055:162180 +(1,8045:15205725,44792055:0,414482,115847 +r1,8069:15563991,44792055:358266,530329,115847 +k1,8045:15205725,44792055:-358266 +) +(1,8045:15205725,44792055:358266,414482,115847 +k1,8045:15205725,44792055:3277 +h1,8045:15560714,44792055:0,411205,112570 +) +k1,8045:15726172,44792055:162181 +k1,8045:16547645,44792055:162181 +k1,8045:17728910,44792055:162180 +k1,8045:20633117,44792055:162181 +(1,8045:20633117,44792055:0,459977,115847 +r1,8069:26267060,44792055:5633943,575824,115847 +k1,8045:20633117,44792055:-5633943 +) +(1,8045:20633117,44792055:5633943,459977,115847 +k1,8045:20633117,44792055:3277 +h1,8045:26263783,44792055:0,411205,112570 +) +k1,8045:26602911,44792055:162181 +k1,8045:27961778,44792055:162180 +k1,8045:30902686,44792055:162181 +k1,8045:32583029,44792055:0 +) +(1,8046:6764466,45657135:25818563,513147,102891 +g1,8045:7668862,45657135 +g1,8045:8527383,45657135 +g1,8045:11009231,45657135 +g1,8045:12274731,45657135 +g1,8045:13493045,45657135 +g1,8045:16048293,45657135 +k1,8046:32583029,45657135:15204355 +g1,8046:32583029,45657135 +) +] +g1,8069:32583029,45706769 +) +] +(1,8069:32583029,45706769:0,0,0 +g1,8069:32583029,45706769 +) +) +] +(1,8069:6630773,47279633:25952256,0,0 +h1,8069:6630773,47279633:25952256,0,0 +) +] +(1,8069:4262630,4025873:0,0,0 +[1,8069:-473656,4025873:0,0,0 +(1,8069:-473656,-710413:0,0,0 +(1,8069:-473656,-710413:0,0,0 +g1,8069:-473656,-710413 +) +g1,8069:-473656,-710413 +) +] +) +] +!31729 +}122 +Input:1108:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1109:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1110:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1111:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1112:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1113:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1114:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!670 +{123 +[1,8103:4262630,47279633:28320399,43253760,0 +(1,8103:4262630,4025873:0,0,0 +[1,8103:-473656,4025873:0,0,0 +(1,8103:-473656,-710413:0,0,0 +(1,8103:-473656,-644877:0,0,0 +k1,8103:-473656,-644877:-65536 ) -(1,8728:-473656,4736287:0,0,0 -k1,8728:-473656,4736287:5209943 +(1,8103:-473656,4736287:0,0,0 +k1,8103:-473656,4736287:5209943 ) -g1,8728:-473656,-710413 +g1,8103:-473656,-710413 ) ] ) -[1,8728:6630773,47279633:25952256,43253760,0 -[1,8728:6630773,4812305:25952256,786432,0 -(1,8728:6630773,4812305:25952256,505283,134348 -(1,8728:6630773,4812305:25952256,505283,134348 -g1,8728:3078558,4812305 -[1,8728:3078558,4812305:0,0,0 -(1,8728:3078558,2439708:0,1703936,0 -k1,8728:1358238,2439708:-1720320 -(1,8393:1358238,2439708:1720320,1703936,0 -(1,8393:1358238,2439708:1179648,16384,0 -r1,8728:2537886,2439708:1179648,16384,0 +[1,8103:6630773,47279633:25952256,43253760,0 +[1,8103:6630773,4812305:25952256,786432,0 +(1,8103:6630773,4812305:25952256,505283,11795 +(1,8103:6630773,4812305:25952256,505283,11795 +g1,8103:3078558,4812305 +[1,8103:3078558,4812305:0,0,0 +(1,8103:3078558,2439708:0,1703936,0 +k1,8103:1358238,2439708:-1720320 +(1,6148:1358238,2439708:1720320,1703936,0 +(1,6148:1358238,2439708:1179648,16384,0 +r1,8103:2537886,2439708:1179648,16384,0 ) -g1,8393:3062174,2439708 -(1,8393:3062174,2439708:16384,1703936,0 -[1,8393:3062174,2439708:25952256,1703936,0 -(1,8393:3062174,1915420:25952256,1179648,0 -(1,8393:3062174,1915420:16384,1179648,0 -r1,8728:3078558,1915420:16384,1179648,0 +g1,6148:3062174,2439708 +(1,6148:3062174,2439708:16384,1703936,0 +[1,6148:3062174,2439708:25952256,1703936,0 +(1,6148:3062174,1915420:25952256,1179648,0 +(1,6148:3062174,1915420:16384,1179648,0 +r1,8103:3078558,1915420:16384,1179648,0 ) -k1,8393:29014430,1915420:25935872 -g1,8393:29014430,1915420 +k1,6148:29014430,1915420:25935872 +g1,6148:29014430,1915420 ) ] ) ) ) ] -[1,8728:3078558,4812305:0,0,0 -(1,8728:3078558,2439708:0,1703936,0 -g1,8728:29030814,2439708 -g1,8728:36135244,2439708 -(1,8393:36135244,2439708:1720320,1703936,0 -(1,8393:36135244,2439708:16384,1703936,0 -[1,8393:36135244,2439708:25952256,1703936,0 -(1,8393:36135244,1915420:25952256,1179648,0 -(1,8393:36135244,1915420:16384,1179648,0 -r1,8728:36151628,1915420:16384,1179648,0 +[1,8103:3078558,4812305:0,0,0 +(1,8103:3078558,2439708:0,1703936,0 +g1,8103:29030814,2439708 +g1,8103:36135244,2439708 +(1,6148:36135244,2439708:1720320,1703936,0 +(1,6148:36135244,2439708:16384,1703936,0 +[1,6148:36135244,2439708:25952256,1703936,0 +(1,6148:36135244,1915420:25952256,1179648,0 +(1,6148:36135244,1915420:16384,1179648,0 +r1,8103:36151628,1915420:16384,1179648,0 ) -k1,8393:62087500,1915420:25935872 -g1,8393:62087500,1915420 +k1,6148:62087500,1915420:25935872 +g1,6148:62087500,1915420 ) ] ) -g1,8393:36675916,2439708 -(1,8393:36675916,2439708:1179648,16384,0 -r1,8728:37855564,2439708:1179648,16384,0 +g1,6148:36675916,2439708 +(1,6148:36675916,2439708:1179648,16384,0 +r1,8103:37855564,2439708:1179648,16384,0 ) ) -k1,8728:3078556,2439708:-34777008 +k1,8103:3078556,2439708:-34777008 ) ] -[1,8728:3078558,4812305:0,0,0 -(1,8728:3078558,49800853:0,16384,2228224 -k1,8728:1358238,49800853:-1720320 -(1,8393:1358238,49800853:1720320,16384,2228224 -(1,8393:1358238,49800853:1179648,16384,0 -r1,8728:2537886,49800853:1179648,16384,0 +[1,8103:3078558,4812305:0,0,0 +(1,8103:3078558,49800853:0,16384,2228224 +k1,8103:1358238,49800853:-1720320 +(1,6148:1358238,49800853:1720320,16384,2228224 +(1,6148:1358238,49800853:1179648,16384,0 +r1,8103:2537886,49800853:1179648,16384,0 ) -g1,8393:3062174,49800853 -(1,8393:3062174,52029077:16384,1703936,0 -[1,8393:3062174,52029077:25952256,1703936,0 -(1,8393:3062174,51504789:25952256,1179648,0 -(1,8393:3062174,51504789:16384,1179648,0 -r1,8728:3078558,51504789:16384,1179648,0 +g1,6148:3062174,49800853 +(1,6148:3062174,52029077:16384,1703936,0 +[1,6148:3062174,52029077:25952256,1703936,0 +(1,6148:3062174,51504789:25952256,1179648,0 +(1,6148:3062174,51504789:16384,1179648,0 +r1,8103:3078558,51504789:16384,1179648,0 ) -k1,8393:29014430,51504789:25935872 -g1,8393:29014430,51504789 +k1,6148:29014430,51504789:25935872 +g1,6148:29014430,51504789 ) ] ) ) ) ] -[1,8728:3078558,4812305:0,0,0 -(1,8728:3078558,49800853:0,16384,2228224 -g1,8728:29030814,49800853 -g1,8728:36135244,49800853 -(1,8393:36135244,49800853:1720320,16384,2228224 -(1,8393:36135244,52029077:16384,1703936,0 -[1,8393:36135244,52029077:25952256,1703936,0 -(1,8393:36135244,51504789:25952256,1179648,0 -(1,8393:36135244,51504789:16384,1179648,0 -r1,8728:36151628,51504789:16384,1179648,0 +[1,8103:3078558,4812305:0,0,0 +(1,8103:3078558,49800853:0,16384,2228224 +g1,8103:29030814,49800853 +g1,8103:36135244,49800853 +(1,6148:36135244,49800853:1720320,16384,2228224 +(1,6148:36135244,52029077:16384,1703936,0 +[1,6148:36135244,52029077:25952256,1703936,0 +(1,6148:36135244,51504789:25952256,1179648,0 +(1,6148:36135244,51504789:16384,1179648,0 +r1,8103:36151628,51504789:16384,1179648,0 ) -k1,8393:62087500,51504789:25935872 -g1,8393:62087500,51504789 +k1,6148:62087500,51504789:25935872 +g1,6148:62087500,51504789 ) ] ) -g1,8393:36675916,49800853 -(1,8393:36675916,49800853:1179648,16384,0 -r1,8728:37855564,49800853:1179648,16384,0 +g1,6148:36675916,49800853 +(1,6148:36675916,49800853:1179648,16384,0 +r1,8103:37855564,49800853:1179648,16384,0 ) ) -k1,8728:3078556,49800853:-34777008 +k1,8103:3078556,49800853:-34777008 ) -] -g1,8728:6630773,4812305 -k1,8728:21643106,4812305:13816956 -g1,8728:23265777,4812305 -g1,8728:24088253,4812305 -g1,8728:28572226,4812305 -g1,8728:29981905,4812305 -) -) -] -[1,8728:6630773,45706769:25952256,40108032,0 -(1,8728:6630773,45706769:25952256,40108032,0 -(1,8728:6630773,45706769:0,0,0 -g1,8728:6630773,45706769 -) -[1,8728:6630773,45706769:25952256,40108032,0 -(1,8676:6630773,6254097:25952256,32768,229376 -(1,8676:6630773,6254097:0,32768,229376 -(1,8676:6630773,6254097:5505024,32768,229376 -r1,8728:12135797,6254097:5505024,262144,229376 -) -k1,8676:6630773,6254097:-5505024 -) -(1,8676:6630773,6254097:25952256,32768,0 -r1,8728:32583029,6254097:25952256,32768,0 -) -) -(1,8676:6630773,7858425:25952256,606339,14155 -(1,8676:6630773,7858425:1974731,575668,14155 -g1,8676:6630773,7858425 -g1,8676:8605504,7858425 -) -g1,8676:12325328,7858425 -k1,8676:32583029,7858425:18471714 -g1,8676:32583029,7858425 -) -(1,8679:6630773,9093129:25952256,513147,126483 -k1,8678:7890703,9093129:306381 -k1,8678:9329546,9093129:306381 -k1,8678:12305207,9093129:306380 -k1,8678:15637385,9093129:306381 -k1,8678:16559804,9093129:306381 -k1,8678:18653352,9093129:306381 -k1,8678:20151177,9093129:306380 -k1,8678:21787939,9093129:306381 -k1,8678:22745748,9093129:306381 -k1,8678:24981509,9093129:306381 -k1,8678:26571085,9093129:306381 -k1,8678:28364477,9093129:306380 -k1,8678:29286896,9093129:306381 -k1,8678:32010900,9093129:306381 -h1,8678:32409359,9093129:0,0,0 -k1,8678:32583029,9093129:0 -) -(1,8679:6630773,9934617:25952256,513147,134348 -k1,8678:7809587,9934617:225265 -k1,8678:9510067,9934617:225265 -k1,8678:12069724,9934617:225265 -k1,8678:13804939,9934617:225265 -k1,8678:15765597,9934617:225265 -k1,8678:19016660,9934617:225266 -k1,8678:20869184,9934617:225265 -k1,8678:23512072,9934617:225265 -h1,8678:23910531,9934617:0,0,0 -k1,8678:24309466,9934617:225265 -k1,8678:27654900,9934617:225265 -k1,8678:28871725,9934617:225265 -k1,8679:32583029,9934617:0 -) -(1,8679:6630773,10776105:25952256,513147,134348 -k1,8678:7294870,10776105:249254 -k1,8678:11234506,10776105:249304 -k1,8678:12099848,10776105:249304 -k1,8678:13950852,10776105:249304 -k1,8678:16071209,10776105:249304 -k1,8678:19734283,10776105:249304 -k1,8678:23673919,10776105:249304 -k1,8678:25658616,10776105:249304 -k1,8678:28036529,10776105:249304 -k1,8678:31896867,10776105:249304 -k1,8678:32583029,10776105:0 -) -(1,8679:6630773,11617593:25952256,513147,134348 -k1,8678:11158765,11617593:290434 -k1,8678:13232433,11617593:290433 -k1,8678:14391219,11617593:290434 -k1,8678:15781346,11617593:290433 -k1,8678:16427640,11617593:290434 -k1,8678:19413569,11617593:290433 -k1,8678:20572355,11617593:290434 -k1,8678:22299993,11617593:290433 -k1,8678:25993056,11617593:290434 -k1,8678:27231140,11617593:290433 -k1,8678:28540659,11617593:290434 -k1,8678:31593435,11617593:290433 -k1,8679:32583029,11617593:0 -) -(1,8679:6630773,12459081:25952256,513147,134348 -k1,8678:9717883,12459081:252678 -k1,8678:10860539,12459081:252677 -k1,8678:14846803,12459081:252678 -k1,8678:17374890,12459081:252677 -k1,8678:18819013,12459081:252678 -k1,8678:20090775,12459081:252677 -k1,8678:24171411,12459081:252678 -k1,8678:27610448,12459081:252677 -k1,8678:31563944,12459081:252678 -k1,8678:32583029,12459081:0 -) -(1,8679:6630773,13300569:25952256,513147,134348 -k1,8678:8363872,13300569:169410 -k1,8678:9192575,13300569:169411 -k1,8678:10381070,13300569:169410 -k1,8678:13245977,13300569:169411 -k1,8678:14406947,13300569:169410 -k1,8678:17637544,13300569:169410 -k1,8678:19320181,13300569:169411 -k1,8678:23031157,13300569:169410 -k1,8678:24219653,13300569:169411 -k1,8678:28452950,13300569:169410 -k1,8678:29383889,13300569:169411 -k1,8678:30572384,13300569:169410 -k1,8678:32583029,13300569:0 -) -(1,8679:6630773,14142057:25952256,505283,134348 -g1,8678:9035289,14142057 -g1,8678:9920680,14142057 -k1,8679:32583028,14142057:19086048 -g1,8679:32583028,14142057 -) -(1,8681:6630773,14983545:25952256,513147,126483 -h1,8680:6630773,14983545:983040,0,0 -k1,8680:8482727,14983545:241079 -k1,8680:9742891,14983545:241079 -k1,8680:11290102,14983545:241078 -k1,8680:14192598,14983545:241079 -k1,8680:15302029,14983545:241079 -k1,8680:17018323,14983545:241079 -k1,8680:18431841,14983545:241079 -k1,8680:22363251,14983545:241078 -k1,8680:23220368,14983545:241079 -k1,8680:24480532,14983545:241079 -k1,8680:26027744,14983545:241079 -k1,8680:27425532,14983545:241078 -k1,8680:28534963,14983545:241079 -k1,8680:31563944,14983545:241079 -k1,8680:32583029,14983545:0 -) -(1,8681:6630773,15825033:25952256,513147,134348 -k1,8680:9991476,15825033:249709 -k1,8680:10900476,15825033:249708 -k1,8680:12345562,15825033:249709 -k1,8680:13786715,15825033:249708 -k1,8680:16074594,15825033:249709 -k1,8680:17343388,15825033:249709 -k1,8680:20371823,15825033:249708 -k1,8680:22301875,15825033:249709 -k1,8680:23167622,15825033:249709 -k1,8680:25928670,15825033:249708 -(1,8680:25928670,15825033:0,414482,115847 -r1,8728:26286936,15825033:358266,530329,115847 -k1,8680:25928670,15825033:-358266 -) -(1,8680:25928670,15825033:358266,414482,115847 -k1,8680:25928670,15825033:3277 -h1,8680:26283659,15825033:0,411205,112570 -) -k1,8680:26536645,15825033:249709 -k1,8680:27547881,15825033:249708 -k1,8680:29887533,15825033:249709 -k1,8681:32583029,15825033:0 -) -(1,8681:6630773,16666521:25952256,505283,134348 -(1,8680:6630773,16666521:0,452978,122846 -r1,8728:9099310,16666521:2468537,575824,122846 -k1,8680:6630773,16666521:-2468537 -) -(1,8680:6630773,16666521:2468537,452978,122846 -k1,8680:6630773,16666521:3277 -h1,8680:9096033,16666521:0,411205,112570 -) -k1,8680:9278861,16666521:179551 -k1,8680:10852364,16666521:179552 -(1,8680:10852364,16666521:0,435480,115847 -r1,8728:11914053,16666521:1061689,551327,115847 -k1,8680:10852364,16666521:-1061689 -) -(1,8680:10852364,16666521:1061689,435480,115847 -k1,8680:10852364,16666521:3277 -h1,8680:11910776,16666521:0,411205,112570 -) -k1,8680:12093604,16666521:179551 -k1,8680:12959317,16666521:179551 -k1,8680:16384867,16666521:179552 -k1,8680:17192253,16666521:179551 -k1,8680:18390889,16666521:179551 -k1,8680:20811772,16666521:179552 -k1,8680:24177683,16666521:179551 -k1,8680:25225587,16666521:179552 -k1,8680:26842343,16666521:179551 -k1,8680:29533234,16666521:179551 -(1,8680:29533234,16666521:0,414482,115847 -r1,8728:29891500,16666521:358266,530329,115847 -k1,8680:29533234,16666521:-358266 -) -(1,8680:29533234,16666521:358266,414482,115847 -k1,8680:29533234,16666521:3277 -h1,8680:29888223,16666521:0,411205,112570 -) -k1,8680:30071052,16666521:179552 -k1,8680:30936765,16666521:179551 -k1,8681:32583029,16666521:0 -) -(1,8681:6630773,17508009:25952256,513147,126483 -g1,8680:8469057,17508009 -g1,8680:9319714,17508009 -(1,8680:9319714,17508009:0,452978,115847 -r1,8728:11788251,17508009:2468537,568825,115847 -k1,8680:9319714,17508009:-2468537 -) -(1,8680:9319714,17508009:2468537,452978,115847 -k1,8680:9319714,17508009:3277 -h1,8680:11784974,17508009:0,411205,112570 -) -g1,8680:11987480,17508009 -g1,8680:13378154,17508009 -g1,8680:14263545,17508009 -g1,8680:14818634,17508009 -g1,8680:16317442,17508009 -g1,8680:18287454,17508009 -g1,8680:19505768,17508009 -g1,8680:21385340,17508009 -g1,8680:21983028,17508009 -g1,8680:22713754,17508009 -k1,8681:32583029,17508009:6632452 -g1,8681:32583029,17508009 -) -v1,8683:6630773,18637120:0,393216,0 -(1,8691:6630773,20253115:25952256,2009211,196608 -g1,8691:6630773,20253115 -g1,8691:6630773,20253115 -g1,8691:6434165,20253115 -(1,8691:6434165,20253115:0,2009211,196608 -r1,8728:32779637,20253115:26345472,2205819,196608 -k1,8691:6434165,20253115:-26345472 -) -(1,8691:6434165,20253115:26345472,2009211,196608 -[1,8691:6630773,20253115:25952256,1812603,0 -(1,8685:6630773,18844738:25952256,404226,107478 -(1,8684:6630773,18844738:0,0,0 -g1,8684:6630773,18844738 -g1,8684:6630773,18844738 -g1,8684:6303093,18844738 -(1,8684:6303093,18844738:0,0,0 -) -g1,8684:6630773,18844738 -) -g1,8685:7263065,18844738 -g1,8685:8211503,18844738 -k1,8685:8211503,18844738:0 -h1,8685:11372960,18844738:0,0,0 -k1,8685:32583028,18844738:21210068 -g1,8685:32583028,18844738 -) -(1,8686:6630773,19510916:25952256,404226,101187 -h1,8686:6630773,19510916:0,0,0 -k1,8686:6630773,19510916:0 -h1,8686:9159938,19510916:0,0,0 -k1,8686:32583030,19510916:23423092 -g1,8686:32583030,19510916 -) -(1,8690:6630773,20177094:25952256,404226,76021 -(1,8688:6630773,20177094:0,0,0 -g1,8688:6630773,20177094 -g1,8688:6630773,20177094 -g1,8688:6303093,20177094 -(1,8688:6303093,20177094:0,0,0 -) -g1,8688:6630773,20177094 -) -g1,8690:7579210,20177094 -g1,8690:8843793,20177094 -h1,8690:9159939,20177094:0,0,0 -k1,8690:32583029,20177094:23423090 -g1,8690:32583029,20177094 -) -] -) -g1,8691:32583029,20253115 -g1,8691:6630773,20253115 -g1,8691:6630773,20253115 -g1,8691:32583029,20253115 -g1,8691:32583029,20253115 -) -h1,8691:6630773,20449723:0,0,0 -(1,8695:6630773,21754144:25952256,505283,126483 -h1,8694:6630773,21754144:983040,0,0 -g1,8694:10602910,21754144 -g1,8694:12232135,21754144 -g1,8694:13535646,21754144 -g1,8694:14482641,21754144 -g1,8694:16973009,21754144 -g1,8694:18368925,21754144 -g1,8694:21229571,21754144 -g1,8694:23284124,21754144 -g1,8694:24587635,21754144 -g1,8694:25534630,21754144 -g1,8694:28656109,21754144 -k1,8695:32583029,21754144:3067088 -g1,8695:32583029,21754144 -) -v1,8697:6630773,22883255:0,393216,0 -(1,8704:6630773,23833072:25952256,1343033,196608 -g1,8704:6630773,23833072 -g1,8704:6630773,23833072 -g1,8704:6434165,23833072 -(1,8704:6434165,23833072:0,1343033,196608 -r1,8728:32779637,23833072:26345472,1539641,196608 -k1,8704:6434165,23833072:-26345472 -) -(1,8704:6434165,23833072:26345472,1343033,196608 -[1,8704:6630773,23833072:25952256,1146425,0 -(1,8699:6630773,23090873:25952256,404226,107478 -(1,8698:6630773,23090873:0,0,0 -g1,8698:6630773,23090873 -g1,8698:6630773,23090873 -g1,8698:6303093,23090873 -(1,8698:6303093,23090873:0,0,0 -) -g1,8698:6630773,23090873 -) -k1,8699:6630773,23090873:0 -k1,8699:6630773,23090873:0 -h1,8699:12005249,23090873:0,0,0 -k1,8699:32583029,23090873:20577780 -g1,8699:32583029,23090873 -) -(1,8703:6630773,23757051:25952256,404226,76021 -(1,8701:6630773,23757051:0,0,0 -g1,8701:6630773,23757051 -g1,8701:6630773,23757051 -g1,8701:6303093,23757051 -(1,8701:6303093,23757051:0,0,0 -) -g1,8701:6630773,23757051 -) -g1,8703:7579210,23757051 -g1,8703:8843793,23757051 -h1,8703:9159939,23757051:0,0,0 -k1,8703:32583029,23757051:23423090 -g1,8703:32583029,23757051 -) -] -) -g1,8704:32583029,23833072 -g1,8704:6630773,23833072 -g1,8704:6630773,23833072 -g1,8704:32583029,23833072 -g1,8704:32583029,23833072 -) -h1,8704:6630773,24029680:0,0,0 -(1,8708:6630773,25334101:25952256,513147,7863 -h1,8707:6630773,25334101:983040,0,0 -k1,8707:9073299,25334101:262799 -k1,8707:12522459,25334101:262800 -k1,8707:13316755,25334101:262799 -k1,8707:14864061,25334101:262800 -k1,8707:15995212,25334101:262799 -k1,8707:17987507,25334101:262800 -k1,8707:19269391,25334101:262799 -k1,8707:22124794,25334101:262799 -k1,8707:23046886,25334101:262800 -k1,8707:23665545,25334101:262799 -k1,8707:26613355,25334101:262800 -k1,8707:29551989,25334101:262799 -k1,8707:31018030,25334101:262800 -k1,8707:31812326,25334101:262799 -k1,8707:32583029,25334101:0 -) -(1,8708:6630773,26175589:25952256,505283,134348 -g1,8707:10068791,26175589 -g1,8707:10950905,26175589 -g1,8707:12216405,26175589 -g1,8707:15117683,26175589 -g1,8707:16126282,26175589 -g1,8707:18916149,26175589 -g1,8707:19983730,26175589 -g1,8707:21275444,26175589 -(1,8707:21275444,26175589:0,414482,115847 -r1,8728:21633710,26175589:358266,530329,115847 -k1,8707:21275444,26175589:-358266 -) -(1,8707:21275444,26175589:358266,414482,115847 -k1,8707:21275444,26175589:3277 -h1,8707:21630433,26175589:0,411205,112570 -) -g1,8707:21832939,26175589 -g1,8707:22648206,26175589 -g1,8707:24301024,26175589 -g1,8707:28016915,26175589 -g1,8707:28899029,26175589 -k1,8708:32583029,26175589:2444059 -g1,8708:32583029,26175589 -) -(1,8710:6630773,27017077:25952256,513147,134348 -h1,8709:6630773,27017077:983040,0,0 -k1,8709:11331552,27017077:176173 -k1,8709:12901675,27017077:176172 -k1,8709:14728045,27017077:176173 -k1,8709:16696627,27017077:176172 -k1,8709:17532092,27017077:176173 -k1,8709:20047899,27017077:176172 -k1,8709:21666519,27017077:176173 -k1,8709:23918216,27017077:176172 -k1,8709:25949713,27017077:176173 -k1,8709:28569067,27017077:176172 -k1,8709:30099214,27017077:176173 -k1,8709:32583029,27017077:0 -) -(1,8710:6630773,27858565:25952256,505283,126483 -g1,8709:7481430,27858565 -g1,8709:9266630,27858565 -g1,8709:10190687,27858565 -g1,8709:13776817,27858565 -g1,8709:16995945,27858565 -g1,8709:18299456,27858565 -k1,8710:32583029,27858565:12721850 -g1,8710:32583029,27858565 -) -(1,8711:6630773,30666133:25952256,32768,229376 -(1,8711:6630773,30666133:0,32768,229376 -(1,8711:6630773,30666133:5505024,32768,229376 -r1,8728:12135797,30666133:5505024,262144,229376 -) -k1,8711:6630773,30666133:-5505024 -) -(1,8711:6630773,30666133:25952256,32768,0 -r1,8728:32583029,30666133:25952256,32768,0 -) -) -(1,8711:6630773,32270461:25952256,606339,151780 -(1,8711:6630773,32270461:1974731,568590,14155 -g1,8711:6630773,32270461 -g1,8711:8605504,32270461 -) -g1,8711:10655733,32270461 -k1,8711:32583028,32270461:19792132 -g1,8711:32583028,32270461 -) -(1,8716:6630773,33505165:25952256,513147,134348 -k1,8715:8463938,33505165:158065 -k1,8715:10097217,33505165:158064 -k1,8715:11765232,33505165:158065 -k1,8715:12536058,33505165:158064 -k1,8715:13713208,33505165:158065 -k1,8715:15235077,33505165:158065 -k1,8715:16052433,33505165:158064 -k1,8715:17713239,33505165:158065 -k1,8715:20692629,33505165:158065 -k1,8715:21466731,33505165:158064 -k1,8715:23076418,33505165:158065 -k1,8715:24861742,33505165:158065 -k1,8715:26577597,33505165:158064 -k1,8715:28730578,33505165:158065 -k1,8715:29547934,33505165:158064 -k1,8715:30494397,33505165:158065 -k1,8715:32583029,33505165:0 -) -(1,8716:6630773,34346653:25952256,505283,134348 -k1,8715:10470880,34346653:152396 -k1,8715:11814722,34346653:152397 -k1,8715:14328380,34346653:152396 -k1,8715:16281706,34346653:152397 -k1,8715:17120264,34346653:152396 -k1,8715:18551268,34346653:152397 -k1,8715:19389826,34346653:152396 -k1,8715:20158261,34346653:152397 -k1,8715:22063745,34346653:152396 -k1,8715:26501541,34346653:152397 -k1,8715:28749123,34346653:152396 -k1,8715:29672223,34346653:152397 -k1,8715:30862709,34346653:152396 -k1,8715:32583029,34346653:0 -) -(1,8716:6630773,35188141:25952256,513147,134348 -k1,8715:7867085,35188141:244752 -k1,8715:10162458,35188141:244751 -k1,8715:11066502,35188141:244752 -k1,8715:13027641,35188141:244751 -k1,8715:16344721,35188141:244752 -k1,8715:17272357,35188141:244751 -k1,8715:19698803,35188141:244752 -k1,8715:21228060,35188141:244751 -k1,8715:23100071,35188141:244752 -k1,8715:24411093,35188141:244751 -k1,8715:25011705,35188141:244752 -k1,8715:27129476,35188141:244752 -k1,8715:31247405,35188141:244751 -k1,8715:32583029,35188141:0 -) -(1,8716:6630773,36029629:25952256,513147,134348 -k1,8715:8341508,36029629:261079 -(1,8715:8341508,36029629:0,452978,115847 -r1,8728:9051486,36029629:709978,568825,115847 -k1,8715:8341508,36029629:-709978 -) -(1,8715:8341508,36029629:709978,452978,115847 -k1,8715:8341508,36029629:3277 -h1,8715:9048209,36029629:0,411205,112570 -) -k1,8715:9486235,36029629:261079 -(1,8715:9486235,36029629:0,452978,122846 -r1,8728:10899636,36029629:1413401,575824,122846 -k1,8715:9486235,36029629:-1413401 -) -(1,8715:9486235,36029629:1413401,452978,122846 -k1,8715:9486235,36029629:3277 -h1,8715:10896359,36029629:0,411205,112570 -) -k1,8715:11334385,36029629:261079 -(1,8715:11334385,36029629:0,414482,122846 -r1,8728:12747786,36029629:1413401,537328,122846 -k1,8715:11334385,36029629:-1413401 -) -(1,8715:11334385,36029629:1413401,414482,122846 -k1,8715:11334385,36029629:3277 -h1,8715:12744509,36029629:0,411205,112570 -) -k1,8715:13182535,36029629:261079 -(1,8715:13182535,36029629:0,414482,115847 -r1,8728:14595936,36029629:1413401,530329,115847 -k1,8715:13182535,36029629:-1413401 -) -(1,8715:13182535,36029629:1413401,414482,115847 -k1,8715:13182535,36029629:3277 -h1,8715:14592659,36029629:0,411205,112570 -) -k1,8715:15030685,36029629:261079 -k1,8715:16784019,36029629:261079 -k1,8715:18517037,36029629:261079 -k1,8715:20271681,36029629:261078 -k1,8715:21218922,36029629:261079 -k1,8715:22706180,36029629:261079 -k1,8715:23498756,36029629:261079 -k1,8715:26849858,36029629:261079 -k1,8715:27797099,36029629:261079 -k1,8715:30398469,36029629:261079 -k1,8715:32227169,36029629:261079 -k1,8715:32583029,36029629:0 -) -(1,8716:6630773,36871117:25952256,513147,134348 -k1,8715:8998035,36871117:258313 -k1,8715:10523813,36871117:258312 -k1,8715:11137986,36871117:258313 -k1,8715:12735199,36871117:258312 -k1,8715:15552038,36871117:258313 -k1,8715:16166211,36871117:258313 -k1,8715:18269361,36871117:258312 -k1,8715:19186966,36871117:258313 -k1,8715:21130865,36871117:258313 -k1,8715:22001939,36871117:258312 -k1,8715:24145723,36871117:258313 -k1,8715:24759895,36871117:258312 -k1,8715:27415515,36871117:258313 -k1,8715:32583029,36871117:0 -) -(1,8716:6630773,37712605:25952256,513147,126483 -k1,8715:8213140,37712605:229704 -k1,8715:10279162,37712605:229703 -k1,8715:11136701,37712605:229704 -k1,8715:12818027,37712605:229704 -k1,8715:14880772,37712605:229703 -k1,8715:16256701,37712605:229704 -k1,8715:17226306,37712605:229704 -k1,8715:18138895,37712605:229704 -k1,8715:20056805,37712605:229703 -k1,8715:21955711,37712605:229704 -k1,8715:23376860,37712605:229704 -k1,8715:26045813,37712605:229703 -k1,8715:27267077,37712605:229704 -k1,8715:28983793,37712605:229704 -k1,8715:30285665,37712605:229703 -k1,8715:31131407,37712605:229704 -k1,8715:32583029,37712605:0 -) -(1,8716:6630773,38554093:25952256,513147,126483 -k1,8715:8231818,38554093:287703 -k1,8715:9205683,38554093:287703 -k1,8715:10264089,38554093:287703 -k1,8715:14140543,38554093:287703 -k1,8715:16765915,38554093:287703 -k1,8715:17819734,38554093:287703 -k1,8715:20445105,38554093:287702 -k1,8715:21924253,38554093:287703 -k1,8715:26048434,38554093:287703 -k1,8715:27283788,38554093:287703 -k1,8715:29280015,38554093:287703 -k1,8715:30250603,38554093:287703 -k1,8715:32583029,38554093:0 -) -(1,8716:6630773,39395581:25952256,505283,134348 -g1,8715:9810579,39395581 -g1,8715:12632559,39395581 -g1,8715:14318800,39395581 -g1,8715:16011595,39395581 -g1,8715:16896986,39395581 -g1,8715:20116114,39395581 -g1,8715:21506788,39395581 -k1,8716:32583029,39395581:8354531 -g1,8716:32583029,39395581 -) -v1,8718:6630773,40524692:0,393216,0 -(1,8722:6630773,40839788:25952256,708312,196608 -g1,8722:6630773,40839788 -g1,8722:6630773,40839788 -g1,8722:6434165,40839788 -(1,8722:6434165,40839788:0,708312,196608 -r1,8728:32779637,40839788:26345472,904920,196608 -k1,8722:6434165,40839788:-26345472 -) -(1,8722:6434165,40839788:26345472,708312,196608 -[1,8722:6630773,40839788:25952256,511704,0 -(1,8720:6630773,40732310:25952256,404226,107478 -(1,8719:6630773,40732310:0,0,0 -g1,8719:6630773,40732310 -g1,8719:6630773,40732310 -g1,8719:6303093,40732310 -(1,8719:6303093,40732310:0,0,0 -) -g1,8719:6630773,40732310 -) -g1,8720:8527647,40732310 -g1,8720:9159939,40732310 -g1,8720:12953687,40732310 -g1,8720:13585979,40732310 -h1,8720:14850562,40732310:0,0,0 -k1,8720:32583030,40732310:17732468 -g1,8720:32583030,40732310 -) -] -) -g1,8722:32583029,40839788 -g1,8722:6630773,40839788 -g1,8722:6630773,40839788 -g1,8722:32583029,40839788 -g1,8722:32583029,40839788 -) -h1,8722:6630773,41036396:0,0,0 -(1,8726:6630773,42340817:25952256,513147,134348 -h1,8725:6630773,42340817:983040,0,0 -k1,8725:9292447,42340817:257813 -k1,8725:10654542,42340817:257813 -k1,8725:12549445,42340817:257813 -k1,8725:14308032,42340817:257813 -k1,8725:16575834,42340817:257813 -k1,8725:17189507,42340817:257813 -k1,8725:19320339,42340817:257813 -k1,8725:19992936,42340817:257754 -k1,8725:22408850,42340817:257813 -k1,8725:24449898,42340817:257813 -k1,8725:27418280,42340817:257813 -k1,8725:30701890,42340817:257813 -k1,8725:32227169,42340817:257813 -k1,8725:32583029,42340817:0 -) -(1,8726:6630773,43182305:25952256,505283,134348 -k1,8725:8355520,43182305:161058 -k1,8725:9905940,43182305:161057 -k1,8725:10598495,43182305:161058 -k1,8725:12964840,43182305:161058 -k1,8725:15761101,43182305:161058 -k1,8725:17561213,43182305:161057 -k1,8725:20280797,43182305:161058 -k1,8725:23775016,43182305:161058 -k1,8725:24350879,43182305:161020 -k1,8725:26801764,43182305:161057 -k1,8725:29000992,43182305:161058 -k1,8725:29778088,43182305:161058 -k1,8725:32583029,43182305:0 -) -(1,8726:6630773,44023793:25952256,513147,126483 -k1,8725:8725762,44023793:209518 -k1,8725:9926841,44023793:209519 -k1,8725:12486480,44023793:209518 -k1,8725:13887444,44023793:209519 -k1,8725:17264317,44023793:209518 -k1,8725:21964362,44023793:209518 -k1,8725:26339349,44023793:209519 -k1,8725:28203651,44023793:209518 -k1,8725:28944667,44023793:209519 -k1,8725:30626779,44023793:209518 -k1,8726:32583029,44023793:0 -) -(1,8726:6630773,44865281:25952256,505283,126483 -k1,8725:8262469,44865281:188593 -k1,8725:11086265,44865281:188593 -k1,8725:12726480,44865281:188593 -k1,8725:14417814,44865281:188593 -k1,8725:16326728,44865281:188594 -k1,8725:17706766,44865281:188593 -k1,8725:19615679,44865281:188593 -k1,8725:20420310,44865281:188593 -k1,8725:21023736,44865281:188583 -k1,8725:23547377,44865281:188593 -k1,8725:24808139,44865281:188593 -k1,8725:26015817,44865281:188593 -k1,8725:31591469,44865281:188593 -k1,8725:32583029,44865281:0 -) -(1,8726:6630773,45706769:25952256,513147,7863 -k1,8726:32583030,45706769:23016244 -g1,8726:32583030,45706769 -) -] -(1,8728:32583029,45706769:0,0,0 -g1,8728:32583029,45706769 -) -) -] -(1,8728:6630773,47279633:25952256,0,0 -h1,8728:6630773,47279633:25952256,0,0 -) -] -(1,8728:4262630,4025873:0,0,0 -[1,8728:-473656,4025873:0,0,0 -(1,8728:-473656,-710413:0,0,0 -(1,8728:-473656,-710413:0,0,0 -g1,8728:-473656,-710413 -) -g1,8728:-473656,-710413 -) -] -) -] -!23935 -}147 -Input:1176:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1177:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1178:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1179:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1180:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1181:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1182:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1183:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!764 -{148 -[1,8808:4262630,47279633:28320399,43253760,0 -(1,8808:4262630,4025873:0,0,0 -[1,8808:-473656,4025873:0,0,0 -(1,8808:-473656,-710413:0,0,0 -(1,8808:-473656,-644877:0,0,0 -k1,8808:-473656,-644877:-65536 +] +g1,8103:6630773,4812305 +k1,8103:24358918,4812305:16532768 +g1,8103:25981589,4812305 +g1,8103:26804065,4812305 +g1,8103:30302376,4812305 +) +) +] +[1,8103:6630773,45706769:25952256,40108032,0 +(1,8103:6630773,45706769:25952256,40108032,0 +(1,8103:6630773,45706769:0,0,0 +g1,8103:6630773,45706769 +) +[1,8103:6630773,45706769:25952256,40108032,0 +v1,8069:6630773,6254097:0,393216,0 +(1,8069:6630773,20913156:25952256,15052275,0 +g1,8069:6630773,20913156 +g1,8069:6237557,20913156 +r1,8103:6368629,20913156:131072,15052275,0 +g1,8069:6567858,20913156 +g1,8069:6764466,20913156 +[1,8069:6764466,20913156:25818563,15052275,0 +v1,8048:6764466,6254097:0,393216,0 +(1,8065:6764466,14526640:25818563,8665759,196608 +g1,8065:6764466,14526640 +g1,8065:6764466,14526640 +g1,8065:6567858,14526640 +(1,8065:6567858,14526640:0,8665759,196608 +r1,8103:32779637,14526640:26211779,8862367,196608 +k1,8065:6567857,14526640:-26211780 +) +(1,8065:6567858,14526640:26211779,8665759,196608 +[1,8065:6764466,14526640:25818563,8469151,0 +(1,8050:6764466,6488534:25818563,431045,106246 +(1,8049:6764466,6488534:0,0,0 +g1,8049:6764466,6488534 +g1,8049:6764466,6488534 +g1,8049:6436786,6488534 +(1,8049:6436786,6488534:0,0,0 +) +g1,8049:6764466,6488534 +) +g1,8050:13071591,6488534 +g1,8050:14067453,6488534 +k1,8050:14067453,6488534:0 +h1,8050:15395269,6488534:0,0,0 +k1,8050:32583029,6488534:17187760 +g1,8050:32583029,6488534 +) +(1,8051:6764466,7173389:25818563,431045,106246 +h1,8051:6764466,7173389:0,0,0 +k1,8051:6764466,7173389:0 +h1,8051:14731361,7173389:0,0,0 +k1,8051:32583029,7173389:17851668 +g1,8051:32583029,7173389 +) +(1,8055:6764466,8513604:25818563,431045,112852 +g1,8055:7760328,8513604 +g1,8055:9088144,8513604 +g1,8055:12407683,8513604 +g1,8055:14731361,8513604 +g1,8055:15727223,8513604 +g1,8055:18050901,8513604 +g1,8055:19710671,8513604 +k1,8055:32583029,8513604:9220865 +g1,8055:32583029,8513604 +) +(1,8055:6764466,9198459:25818563,398014,0 +k1,8055:32583030,9198459:25154656 +g1,8055:32583030,9198459 +) +(1,8055:6764466,9883314:25818563,398014,0 +g1,8055:7760328,9883314 +g1,8055:8092282,9883314 +g1,8055:8424236,9883314 +g1,8055:8756190,9883314 +g1,8055:9088144,9883314 +k1,8055:32583030,9883314:23162932 +g1,8055:32583030,9883314 +) +(1,8056:6764466,11092457:25818563,431045,106246 +(1,8055:6764466,11092457:0,0,0 +g1,8055:6764466,11092457 +g1,8055:6764466,11092457 +g1,8055:6436786,11092457 +(1,8055:6436786,11092457:0,0,0 +) +g1,8055:6764466,11092457 +) +g1,8056:13071591,11092457 +g1,8056:14067453,11092457 +g1,8056:15063315,11092457 +g1,8056:15727223,11092457 +g1,8056:16723085,11092457 +g1,8056:17386993,11092457 +h1,8056:17718947,11092457:0,0,0 +k1,8056:32583029,11092457:14864082 +g1,8056:32583029,11092457 +) +(1,8057:6764466,11777312:25818563,431045,106246 +h1,8057:6764466,11777312:0,0,0 +k1,8057:6764466,11777312:0 +h1,8057:14731361,11777312:0,0,0 +k1,8057:32583029,11777312:17851668 +g1,8057:32583029,11777312 +) +(1,8058:6764466,12462167:25818563,431045,106246 +h1,8058:6764466,12462167:0,0,0 +g1,8058:14399407,12462167 +h1,8058:15063315,12462167:0,0,0 +k1,8058:32583029,12462167:17519714 +g1,8058:32583029,12462167 +) +(1,8064:6764466,13147022:25818563,398014,8257 +(1,8060:6764466,13147022:0,0,0 +g1,8060:6764466,13147022 +g1,8060:6764466,13147022 +g1,8060:6436786,13147022 +(1,8060:6436786,13147022:0,0,0 +) +g1,8060:6764466,13147022 +) +g1,8064:7760328,13147022 +g1,8064:8092282,13147022 +g1,8064:8424236,13147022 +g1,8064:9088144,13147022 +g1,8064:9752052,13147022 +h1,8064:10084006,13147022:0,0,0 +k1,8064:32583030,13147022:22499024 +g1,8064:32583030,13147022 +) +(1,8064:6764466,13831877:25818563,407923,9908 +h1,8064:6764466,13831877:0,0,0 +g1,8064:7760328,13831877 +g1,8064:8424236,13831877 +g1,8064:9088144,13831877 +g1,8064:9752052,13831877 +h1,8064:10084006,13831877:0,0,0 +k1,8064:32583030,13831877:22499024 +g1,8064:32583030,13831877 +) +(1,8064:6764466,14516732:25818563,407923,9908 +h1,8064:6764466,14516732:0,0,0 +g1,8064:7760328,14516732 +g1,8064:8424236,14516732 +g1,8064:9088144,14516732 +g1,8064:9752052,14516732 +h1,8064:10084006,14516732:0,0,0 +k1,8064:32583030,14516732:22499024 +g1,8064:32583030,14516732 +) +] +) +g1,8065:32583029,14526640 +g1,8065:6764466,14526640 +g1,8065:6764466,14526640 +g1,8065:32583029,14526640 +g1,8065:32583029,14526640 +) +h1,8065:6764466,14723248:0,0,0 +(1,8069:6764466,15588328:25818563,513147,126483 +h1,8068:6764466,15588328:983040,0,0 +k1,8068:9048930,15588328:152578 +k1,8068:9868665,15588328:152579 +(1,8068:9868665,15588328:0,452978,115847 +r1,8103:12688914,15588328:2820249,568825,115847 +k1,8068:9868665,15588328:-2820249 +) +(1,8068:9868665,15588328:2820249,452978,115847 +k1,8068:9868665,15588328:3277 +h1,8068:12685637,15588328:0,411205,112570 +) +k1,8068:12841492,15588328:152578 +k1,8068:14185515,15588328:152578 +(1,8068:14185515,15588328:0,452978,115847 +r1,8103:17005764,15588328:2820249,568825,115847 +k1,8068:14185515,15588328:-2820249 +) +(1,8068:14185515,15588328:2820249,452978,115847 +k1,8068:14185515,15588328:3277 +h1,8068:17002487,15588328:0,411205,112570 +) +k1,8068:17332013,15588328:152579 +k1,8068:19370062,15588328:152578 +k1,8068:22218136,15588328:152578 +k1,8068:23056877,15588328:152579 +k1,8068:23565315,15588328:152578 +k1,8068:24984049,15588328:152578 +k1,8068:25795920,15588328:152579 +k1,8068:26949842,15588328:152532 +k1,8068:28293865,15588328:152578 +k1,8068:29673886,15588328:152532 +k1,8068:32583029,15588328:0 +) +(1,8069:6764466,16453408:25818563,513147,126483 +k1,8068:8058248,16453408:189500 +k1,8068:10090620,16453408:189500 +k1,8068:10896158,16453408:189500 +k1,8068:11856360,16453408:189499 +k1,8068:15231565,16453408:189500 +k1,8068:18918066,16453408:189500 +k1,8068:19916936,16453408:189500 +k1,8068:21844451,16453408:189500 +k1,8068:24256277,16453408:189500 +k1,8068:24911737,16453408:189499 +k1,8068:26120322,16453408:189500 +k1,8068:28140898,16453408:189500 +k1,8068:31749411,16453408:189500 +k1,8069:32583029,16453408:0 +) +(1,8069:6764466,17318488:25818563,513147,134348 +k1,8068:7816238,17318488:159172 +(1,8068:7816238,17318488:0,452978,115847 +r1,8103:10636487,17318488:2820249,568825,115847 +k1,8068:7816238,17318488:-2820249 +) +(1,8068:7816238,17318488:2820249,452978,115847 +k1,8068:7816238,17318488:3277 +h1,8068:10633210,17318488:0,411205,112570 +) +k1,8068:10795659,17318488:159172 +k1,8068:11486329,17318488:159173 +k1,8068:14478622,17318488:159172 +k1,8068:15709963,17318488:159172 +k1,8068:17911892,17318488:159172 +(1,8068:17911892,17318488:0,452978,115847 +r1,8103:20732141,17318488:2820249,568825,115847 +k1,8068:17911892,17318488:-2820249 +) +(1,8068:17911892,17318488:2820249,452978,115847 +k1,8068:17911892,17318488:3277 +h1,8068:20728864,17318488:0,411205,112570 +) +k1,8068:20891313,17318488:159172 +k1,8068:21581983,17318488:159173 +k1,8068:23782601,17318488:159172 +k1,8068:24627935,17318488:159172 +k1,8068:25806192,17318488:159172 +k1,8068:28707391,17318488:159173 +k1,8068:30826089,17318488:159172 +k1,8068:31516758,17318488:159172 +k1,8068:32583029,17318488:0 +) +(1,8069:6764466,18183568:25818563,513147,134348 +k1,8068:10075536,18183568:240053 +k1,8068:10943423,18183568:240052 +k1,8068:13988417,18183568:240053 +(1,8068:13988417,18183568:0,452978,115847 +r1,8103:16105242,18183568:2116825,568825,115847 +k1,8068:13988417,18183568:-2116825 +) +(1,8068:13988417,18183568:2116825,452978,115847 +k1,8068:13988417,18183568:3277 +h1,8068:16101965,18183568:0,411205,112570 +) +k1,8068:16345294,18183568:240052 +k1,8068:17776792,18183568:240053 +(1,8068:17776792,18183568:0,452978,115847 +r1,8103:20597041,18183568:2820249,568825,115847 +k1,8068:17776792,18183568:-2820249 +) +(1,8068:17776792,18183568:2820249,452978,115847 +k1,8068:17776792,18183568:3277 +h1,8068:20593764,18183568:0,411205,112570 +) +k1,8068:21010763,18183568:240052 +k1,8068:22988831,18183568:240053 +k1,8068:27902911,18183568:240052 +k1,8068:31298523,18183568:240053 +k1,8068:32583029,18183568:0 +) +(1,8069:6764466,19048648:25818563,513147,134348 +k1,8068:9507147,19048648:250347 +k1,8068:11440460,19048648:250348 +k1,8068:13527126,19048648:250347 +k1,8068:18298148,19048648:250348 +k1,8068:19567580,19048648:250347 +k1,8068:21538902,19048648:250347 +k1,8068:27199247,19048648:250348 +k1,8068:27981091,19048648:250347 +k1,8068:28882867,19048648:250348 +k1,8068:30413132,19048648:250347 +k1,8069:32583029,19048648:0 +) +(1,8069:6764466,19913728:25818563,513147,115847 +k1,8068:8416063,19913728:208494 +k1,8068:9275984,19913728:208493 +k1,8068:10503563,19913728:208494 +k1,8068:11804542,19913728:208494 +k1,8068:12680192,19913728:208494 +(1,8068:12680192,19913728:0,452978,115847 +r1,8103:14797017,19913728:2116825,568825,115847 +k1,8068:12680192,19913728:-2116825 +) +(1,8068:12680192,19913728:2116825,452978,115847 +k1,8068:12680192,19913728:3277 +h1,8068:14793740,19913728:0,411205,112570 +) +k1,8068:15005510,19913728:208493 +k1,8068:16405449,19913728:208494 +(1,8068:16405449,19913728:0,452978,115847 +r1,8103:19225698,19913728:2820249,568825,115847 +k1,8068:16405449,19913728:-2820249 +) +(1,8068:16405449,19913728:2820249,452978,115847 +k1,8068:16405449,19913728:3277 +h1,8068:19222421,19913728:0,411205,112570 +) +k1,8068:19434192,19913728:208494 +k1,8068:21030082,19913728:208493 +(1,8068:21030082,19913728:0,452978,115847 +r1,8103:23850331,19913728:2820249,568825,115847 +k1,8068:21030082,19913728:-2820249 +) +(1,8068:21030082,19913728:2820249,452978,115847 +k1,8068:21030082,19913728:3277 +h1,8068:23847054,19913728:0,411205,112570 +) +k1,8068:24058825,19913728:208494 +k1,8068:25458764,19913728:208494 +(1,8068:25458764,19913728:0,452978,115847 +r1,8103:28279013,19913728:2820249,568825,115847 +k1,8068:25458764,19913728:-2820249 +) +(1,8068:25458764,19913728:2820249,452978,115847 +k1,8068:25458764,19913728:3277 +h1,8068:28275736,19913728:0,411205,112570 +) +k1,8068:28661177,19913728:208494 +k1,8068:30018516,19913728:208493 +k1,8068:30886302,19913728:208494 +k1,8068:32583029,19913728:0 +) +(1,8069:6764466,20778808:25818563,513147,134348 +g1,8068:9989492,20778808 +g1,8068:11254992,20778808 +g1,8068:12829822,20778808 +g1,8068:14750026,20778808 +g1,8068:16978250,20778808 +g1,8068:18249648,20778808 +g1,8068:19734693,20778808 +g1,8068:21979956,20778808 +g1,8068:23675372,20778808 +g1,8068:25524798,20778808 +k1,8069:32583029,20778808:4163506 +g1,8069:32583029,20778808 +) +] +g1,8069:32583029,20913156 +) +h1,8069:6630773,20913156:0,0,0 +(1,8071:6630773,23744316:25952256,32768,229376 +(1,8071:6630773,23744316:0,32768,229376 +(1,8071:6630773,23744316:5505024,32768,229376 +r1,8103:12135797,23744316:5505024,262144,229376 +) +k1,8071:6630773,23744316:-5505024 +) +(1,8071:6630773,23744316:25952256,32768,0 +r1,8103:32583029,23744316:25952256,32768,0 +) +) +(1,8071:6630773,25376168:25952256,615776,161218 +(1,8071:6630773,25376168:1974731,575668,14155 +g1,8071:6630773,25376168 +g1,8071:8605504,25376168 +) +g1,8071:12976493,25376168 +g1,8071:14686196,25376168 +g1,8071:17688794,25376168 +g1,8071:19627349,25376168 +k1,8071:32583029,25376168:10213391 +g1,8071:32583029,25376168 +) +(1,8075:6630773,26634464:25952256,505283,126483 +k1,8074:7646963,26634464:198301 +k1,8074:11262967,26634464:198301 +k1,8074:13490263,26634464:198301 +k1,8074:14304602,26634464:198301 +k1,8074:16104603,26634464:198301 +k1,8074:18000286,26634464:198301 +k1,8074:18814626,26634464:198302 +k1,8074:19427769,26634464:198300 +k1,8074:21015433,26634464:198301 +k1,8074:22747932,26634464:198301 +k1,8074:25987759,26634464:198301 +k1,8074:30529131,26634464:198301 +k1,8074:32583029,26634464:0 +) +(1,8075:6630773,27499544:25952256,513147,134348 +k1,8074:7605876,27499544:292218 +k1,8074:11969845,27499544:292217 +k1,8074:14905785,27499544:292218 +k1,8074:16007372,27499544:292217 +k1,8074:18970837,27499544:292218 +k1,8074:22136808,27499544:292217 +k1,8074:25270667,27499544:292218 +k1,8074:26754329,27499544:292217 +k1,8074:29270839,27499544:292218 +k1,8074:32583029,27499544:0 +) +(1,8075:6630773,28364624:25952256,505283,134348 +k1,8074:10294367,28364624:276693 +k1,8074:11640608,28364624:276693 +k1,8074:13306009,28364624:276693 +k1,8074:15625459,28364624:276693 +k1,8074:18836854,28364624:276693 +k1,8074:20811584,28364624:276692 +k1,8074:25761649,28364624:276693 +k1,8074:27029902,28364624:276693 +k1,8074:30091220,28364624:276693 +k1,8074:30983951,28364624:276693 +k1,8074:32583029,28364624:0 +) +(1,8075:6630773,29229704:25952256,513147,126483 +k1,8074:9583097,29229704:239133 +k1,8074:11773893,29229704:239134 +k1,8074:15318007,29229704:239133 +k1,8074:18598666,29229704:239133 +k1,8074:22909552,29229704:239134 +k1,8074:23807977,29229704:239133 +k1,8074:25066195,29229704:239133 +k1,8074:26958802,29229704:239134 +k1,8074:30071689,29229704:239133 +k1,8074:32583029,29229704:0 +) +(1,8075:6630773,30094784:25952256,513147,134348 +k1,8074:7490223,30094784:246688 +k1,8074:10499255,30094784:246689 +k1,8074:12675323,30094784:246688 +k1,8074:13991559,30094784:246688 +k1,8074:15728537,30094784:246689 +k1,8074:18017982,30094784:246688 +k1,8074:20081328,30094784:246688 +k1,8074:22025399,30094784:246689 +k1,8074:23772861,30094784:246688 +k1,8074:25938443,30094784:246688 +k1,8074:29332826,30094784:246689 +k1,8074:30111011,30094784:246688 +k1,8074:32583029,30094784:0 +) +(1,8075:6630773,30959864:25952256,513147,134348 +k1,8074:9647667,30959864:227026 +(1,8074:9647667,30959864:0,452978,115847 +r1,8103:12819627,30959864:3171960,568825,115847 +k1,8074:9647667,30959864:-3171960 +) +(1,8074:9647667,30959864:3171960,452978,115847 +k1,8074:9647667,30959864:3277 +h1,8074:12816350,30959864:0,411205,112570 +) +k1,8074:13046653,30959864:227026 +k1,8074:14377961,30959864:227026 +k1,8074:16997706,30959864:227026 +k1,8074:18715021,30959864:227026 +k1,8074:20331411,30959864:227027 +k1,8074:22765034,30959864:227026 +k1,8074:24259526,30959864:227026 +k1,8074:25875260,30959864:227026 +k1,8074:27491649,30959864:227026 +k1,8074:29925272,30959864:227026 +k1,8074:31343743,30959864:227026 +k1,8074:32583029,30959864:0 +) +(1,8075:6630773,31824944:25952256,355205,7863 +k1,8075:32583028,31824944:24099552 +g1,8075:32583028,31824944 +) +v1,8077:6630773,32509799:0,393216,0 +(1,8081:6630773,32843876:25952256,727293,196608 +g1,8081:6630773,32843876 +g1,8081:6630773,32843876 +g1,8081:6434165,32843876 +(1,8081:6434165,32843876:0,727293,196608 +r1,8103:32779637,32843876:26345472,923901,196608 +k1,8081:6434165,32843876:-26345472 +) +(1,8081:6434165,32843876:26345472,727293,196608 +[1,8081:6630773,32843876:25952256,530685,0 +(1,8079:6630773,32737630:25952256,424439,106246 +(1,8078:6630773,32737630:0,0,0 +g1,8078:6630773,32737630 +g1,8078:6630773,32737630 +g1,8078:6303093,32737630 +(1,8078:6303093,32737630:0,0,0 +) +g1,8078:6630773,32737630 +) +g1,8079:7626635,32737630 +g1,8079:10946174,32737630 +g1,8079:13601806,32737630 +k1,8079:13601806,32737630:41838 +h1,8079:15635368,32737630:0,0,0 +k1,8079:32583028,32737630:16947660 +g1,8079:32583028,32737630 +) +] +) +g1,8081:32583029,32843876 +g1,8081:6630773,32843876 +g1,8081:6630773,32843876 +g1,8081:32583029,32843876 +g1,8081:32583029,32843876 +) +h1,8081:6630773,33040484:0,0,0 +(1,8089:6630773,33905564:25952256,505283,126483 +h1,8088:6630773,33905564:983040,0,0 +k1,8088:10622190,33905564:280113 +(1,8088:10622190,33905564:0,452978,115847 +r1,8103:12739015,33905564:2116825,568825,115847 +k1,8088:10622190,33905564:-2116825 +) +(1,8088:10622190,33905564:2116825,452978,115847 +k1,8088:10622190,33905564:3277 +h1,8088:12735738,33905564:0,411205,112570 +) +k1,8088:13192799,33905564:280114 +(1,8088:13192799,33905564:0,452978,115847 +r1,8103:15309624,33905564:2116825,568825,115847 +k1,8088:13192799,33905564:-2116825 +) +(1,8088:13192799,33905564:2116825,452978,115847 +k1,8088:13192799,33905564:3277 +h1,8088:15306347,33905564:0,411205,112570 +) +k1,8088:15589737,33905564:280113 +k1,8088:17061296,33905564:280114 +(1,8088:17061296,33905564:0,459977,115847 +r1,8103:18826409,33905564:1765113,575824,115847 +k1,8088:17061296,33905564:-1765113 +) +(1,8088:17061296,33905564:1765113,459977,115847 +k1,8088:17061296,33905564:3277 +h1,8088:18823132,33905564:0,411205,112570 +) +k1,8088:19106522,33905564:280113 +k1,8088:20378196,33905564:280114 +k1,8088:22171535,33905564:280113 +k1,8088:26378566,33905564:280114 +k1,8088:27310107,33905564:280113 +k1,8088:29885292,33905564:280114 +k1,8088:31356850,33905564:280113 +k1,8089:32583029,33905564:0 +) +(1,8089:6630773,34770644:25952256,513147,134348 +k1,8088:7279220,34770644:233604 +k1,8088:9976356,34770644:233638 +k1,8088:11627538,34770644:233638 +k1,8088:13007401,34770644:233638 +k1,8088:15665217,34770644:233639 +k1,8088:17090300,34770644:233638 +k1,8088:18343023,34770644:233638 +k1,8088:19669146,34770644:233638 +k1,8088:20562077,34770644:233639 +k1,8088:22957092,34770644:233638 +k1,8088:24665945,34770644:233638 +k1,8088:26643497,34770644:233639 +k1,8088:27896220,34770644:233638 +k1,8088:31490544,34770644:233638 +k1,8088:32583029,34770644:0 +) +(1,8089:6630773,35635724:25952256,513147,126483 +k1,8088:7575508,35635724:277579 +k1,8088:8267852,35635724:277501 +k1,8088:9158193,35635724:277579 +k1,8088:10454857,35635724:277579 +k1,8088:13152682,35635724:277580 +k1,8088:14643332,35635724:277579 +k1,8088:17833331,35635724:277579 +(1,8088:17833331,35635724:0,452978,115847 +r1,8103:19950156,35635724:2116825,568825,115847 +k1,8088:17833331,35635724:-2116825 +) +(1,8088:17833331,35635724:2116825,452978,115847 +k1,8088:17833331,35635724:3277 +h1,8088:19946879,35635724:0,411205,112570 +) +k1,8088:20401405,35635724:277579 +(1,8088:20401405,35635724:0,452978,115847 +r1,8103:22518230,35635724:2116825,568825,115847 +k1,8088:20401405,35635724:-2116825 +) +(1,8088:20401405,35635724:2116825,452978,115847 +k1,8088:20401405,35635724:3277 +h1,8088:22514953,35635724:0,411205,112570 +) +k1,8088:22795810,35635724:277580 +k1,8088:24264834,35635724:277579 +(1,8088:24264834,35635724:0,459977,115847 +r1,8103:26029947,35635724:1765113,575824,115847 +k1,8088:24264834,35635724:-1765113 +) +(1,8088:24264834,35635724:1765113,459977,115847 +k1,8088:24264834,35635724:3277 +h1,8088:26026670,35635724:0,411205,112570 +) +k1,8088:26307526,35635724:277579 +k1,8088:27576666,35635724:277580 +k1,8088:30404906,35635724:277579 +k1,8088:31298523,35635724:277579 +k1,8088:32583029,35635724:0 +) +(1,8089:6630773,36500804:25952256,513147,134348 +k1,8088:8303645,36500804:164233 +k1,8088:11880338,36500804:164233 +k1,8088:14254445,36500804:164233 +k1,8088:16684258,36500804:164233 +k1,8088:20251119,36500804:164232 +k1,8088:21406912,36500804:164233 +k1,8088:24961978,36500804:164233 +k1,8088:25935581,36500804:164233 +k1,8088:27118899,36500804:164233 +k1,8088:30337110,36500804:164233 +k1,8088:32583029,36500804:0 +) +(1,8089:6630773,37365884:25952256,513147,126483 +k1,8088:9047133,37365884:206486 +k1,8088:10340854,37365884:206479 +k1,8088:12114961,37365884:206486 +k1,8088:14331436,37365884:206486 +k1,8088:16423394,37365884:206487 +k1,8088:17044716,37365884:206479 +k1,8088:17782699,37365884:206486 +k1,8088:20419260,37365884:206486 +k1,8088:22899190,37365884:206486 +k1,8088:23637173,37365884:206486 +k1,8088:24909930,37365884:206486 +k1,8088:27874827,37365884:206487 +k1,8088:29028964,37365884:206486 +k1,8088:30438691,37365884:206486 +k1,8088:32583029,37365884:0 +) +(1,8089:6630773,38230964:25952256,513147,126483 +k1,8088:7499343,38230964:182408 +k1,8088:8700837,38230964:182409 +k1,8088:9975730,38230964:182408 +k1,8088:10817431,38230964:182409 +k1,8088:12696566,38230964:182408 +k1,8088:15904772,38230964:182409 +k1,8088:18709275,38230964:182408 +k1,8088:20272528,38230964:182409 +k1,8088:24094150,38230964:182408 +k1,8088:26411722,38230964:182409 +k1,8088:27712174,38230964:182408 +k1,8088:29591310,38230964:182409 +k1,8088:32583029,38230964:0 +) +(1,8089:6630773,39096044:25952256,505283,11795 +g1,8088:7446040,39096044 +g1,8088:8060112,39096044 +g1,8088:9450786,39096044 +g1,8088:10266053,39096044 +g1,8088:11235985,39096044 +g1,8088:12522456,39096044 +g1,8088:13867910,39096044 +k1,8089:32583029,39096044:16117272 +g1,8089:32583029,39096044 +) +v1,8091:6630773,39780899:0,393216,0 +(1,8096:6630773,40773407:25952256,1385724,196608 +g1,8096:6630773,40773407 +g1,8096:6630773,40773407 +g1,8096:6434165,40773407 +(1,8096:6434165,40773407:0,1385724,196608 +r1,8103:32779637,40773407:26345472,1582332,196608 +k1,8096:6434165,40773407:-26345472 +) +(1,8096:6434165,40773407:26345472,1385724,196608 +[1,8096:6630773,40773407:25952256,1189116,0 +(1,8093:6630773,40008730:25952256,424439,79822 +(1,8092:6630773,40008730:0,0,0 +g1,8092:6630773,40008730 +g1,8092:6630773,40008730 +g1,8092:6303093,40008730 +(1,8092:6303093,40008730:0,0,0 +) +g1,8092:6630773,40008730 +) +k1,8093:6630773,40008730:0 +h1,8093:9950313,40008730:0,0,0 +k1,8093:32583029,40008730:22632716 +g1,8093:32583029,40008730 +) +(1,8094:6630773,40693585:25952256,424439,79822 +h1,8094:6630773,40693585:0,0,0 +k1,8094:6630773,40693585:0 +h1,8094:9950313,40693585:0,0,0 +k1,8094:32583029,40693585:22632716 +g1,8094:32583029,40693585 +) +] +) +g1,8096:32583029,40773407 +g1,8096:6630773,40773407 +g1,8096:6630773,40773407 +g1,8096:32583029,40773407 +g1,8096:32583029,40773407 +) +h1,8096:6630773,40970015:0,0,0 +] +(1,8103:32583029,45706769:0,0,0 +g1,8103:32583029,45706769 +) +) +] +(1,8103:6630773,47279633:25952256,0,0 +h1,8103:6630773,47279633:25952256,0,0 +) +] +(1,8103:4262630,4025873:0,0,0 +[1,8103:-473656,4025873:0,0,0 +(1,8103:-473656,-710413:0,0,0 +(1,8103:-473656,-710413:0,0,0 +g1,8103:-473656,-710413 +) +g1,8103:-473656,-710413 +) +] +) +] +!23472 +}123 +Input:1115:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1116:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1117:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1118:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1119:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1120:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1121:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1122:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1123:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1124:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1125:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1126:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1127:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1128:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1129:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1130:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1131:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1132:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1704 +{124 +[1,8170:4262630,47279633:28320399,43253760,0 +(1,8170:4262630,4025873:0,0,0 +[1,8170:-473656,4025873:0,0,0 +(1,8170:-473656,-710413:0,0,0 +(1,8170:-473656,-644877:0,0,0 +k1,8170:-473656,-644877:-65536 ) -(1,8808:-473656,4736287:0,0,0 -k1,8808:-473656,4736287:5209943 +(1,8170:-473656,4736287:0,0,0 +k1,8170:-473656,4736287:5209943 ) -g1,8808:-473656,-710413 +g1,8170:-473656,-710413 ) ] ) -[1,8808:6630773,47279633:25952256,43253760,0 -[1,8808:6630773,4812305:25952256,786432,0 -(1,8808:6630773,4812305:25952256,485622,126483 -(1,8808:6630773,4812305:25952256,485622,126483 -g1,8808:3078558,4812305 -[1,8808:3078558,4812305:0,0,0 -(1,8808:3078558,2439708:0,1703936,0 -k1,8808:1358238,2439708:-1720320 -(1,8393:1358238,2439708:1720320,1703936,0 -(1,8393:1358238,2439708:1179648,16384,0 -r1,8808:2537886,2439708:1179648,16384,0 +[1,8170:6630773,47279633:25952256,43253760,0 +[1,8170:6630773,4812305:25952256,786432,0 +(1,8170:6630773,4812305:25952256,513147,134348 +(1,8170:6630773,4812305:25952256,513147,134348 +g1,8170:3078558,4812305 +[1,8170:3078558,4812305:0,0,0 +(1,8170:3078558,2439708:0,1703936,0 +k1,8170:1358238,2439708:-1720320 +(1,6148:1358238,2439708:1720320,1703936,0 +(1,6148:1358238,2439708:1179648,16384,0 +r1,8170:2537886,2439708:1179648,16384,0 ) -g1,8393:3062174,2439708 -(1,8393:3062174,2439708:16384,1703936,0 -[1,8393:3062174,2439708:25952256,1703936,0 -(1,8393:3062174,1915420:25952256,1179648,0 -(1,8393:3062174,1915420:16384,1179648,0 -r1,8808:3078558,1915420:16384,1179648,0 +g1,6148:3062174,2439708 +(1,6148:3062174,2439708:16384,1703936,0 +[1,6148:3062174,2439708:25952256,1703936,0 +(1,6148:3062174,1915420:25952256,1179648,0 +(1,6148:3062174,1915420:16384,1179648,0 +r1,8170:3078558,1915420:16384,1179648,0 ) -k1,8393:29014430,1915420:25935872 -g1,8393:29014430,1915420 +k1,6148:29014430,1915420:25935872 +g1,6148:29014430,1915420 ) ] ) ) ) ] -[1,8808:3078558,4812305:0,0,0 -(1,8808:3078558,2439708:0,1703936,0 -g1,8808:29030814,2439708 -g1,8808:36135244,2439708 -(1,8393:36135244,2439708:1720320,1703936,0 -(1,8393:36135244,2439708:16384,1703936,0 -[1,8393:36135244,2439708:25952256,1703936,0 -(1,8393:36135244,1915420:25952256,1179648,0 -(1,8393:36135244,1915420:16384,1179648,0 -r1,8808:36151628,1915420:16384,1179648,0 +[1,8170:3078558,4812305:0,0,0 +(1,8170:3078558,2439708:0,1703936,0 +g1,8170:29030814,2439708 +g1,8170:36135244,2439708 +(1,6148:36135244,2439708:1720320,1703936,0 +(1,6148:36135244,2439708:16384,1703936,0 +[1,6148:36135244,2439708:25952256,1703936,0 +(1,6148:36135244,1915420:25952256,1179648,0 +(1,6148:36135244,1915420:16384,1179648,0 +r1,8170:36151628,1915420:16384,1179648,0 ) -k1,8393:62087500,1915420:25935872 -g1,8393:62087500,1915420 +k1,6148:62087500,1915420:25935872 +g1,6148:62087500,1915420 ) ] ) -g1,8393:36675916,2439708 -(1,8393:36675916,2439708:1179648,16384,0 -r1,8808:37855564,2439708:1179648,16384,0 +g1,6148:36675916,2439708 +(1,6148:36675916,2439708:1179648,16384,0 +r1,8170:37855564,2439708:1179648,16384,0 ) ) -k1,8808:3078556,2439708:-34777008 +k1,8170:3078556,2439708:-34777008 ) ] -[1,8808:3078558,4812305:0,0,0 -(1,8808:3078558,49800853:0,16384,2228224 -k1,8808:1358238,49800853:-1720320 -(1,8393:1358238,49800853:1720320,16384,2228224 -(1,8393:1358238,49800853:1179648,16384,0 -r1,8808:2537886,49800853:1179648,16384,0 +[1,8170:3078558,4812305:0,0,0 +(1,8170:3078558,49800853:0,16384,2228224 +k1,8170:1358238,49800853:-1720320 +(1,6148:1358238,49800853:1720320,16384,2228224 +(1,6148:1358238,49800853:1179648,16384,0 +r1,8170:2537886,49800853:1179648,16384,0 ) -g1,8393:3062174,49800853 -(1,8393:3062174,52029077:16384,1703936,0 -[1,8393:3062174,52029077:25952256,1703936,0 -(1,8393:3062174,51504789:25952256,1179648,0 -(1,8393:3062174,51504789:16384,1179648,0 -r1,8808:3078558,51504789:16384,1179648,0 +g1,6148:3062174,49800853 +(1,6148:3062174,52029077:16384,1703936,0 +[1,6148:3062174,52029077:25952256,1703936,0 +(1,6148:3062174,51504789:25952256,1179648,0 +(1,6148:3062174,51504789:16384,1179648,0 +r1,8170:3078558,51504789:16384,1179648,0 ) -k1,8393:29014430,51504789:25935872 -g1,8393:29014430,51504789 +k1,6148:29014430,51504789:25935872 +g1,6148:29014430,51504789 ) ] ) -) -) -] -[1,8808:3078558,4812305:0,0,0 -(1,8808:3078558,49800853:0,16384,2228224 -g1,8808:29030814,49800853 -g1,8808:36135244,49800853 -(1,8393:36135244,49800853:1720320,16384,2228224 -(1,8393:36135244,52029077:16384,1703936,0 -[1,8393:36135244,52029077:25952256,1703936,0 -(1,8393:36135244,51504789:25952256,1179648,0 -(1,8393:36135244,51504789:16384,1179648,0 -r1,8808:36151628,51504789:16384,1179648,0 -) -k1,8393:62087500,51504789:25935872 -g1,8393:62087500,51504789 -) -] -) -g1,8393:36675916,49800853 -(1,8393:36675916,49800853:1179648,16384,0 -r1,8808:37855564,49800853:1179648,16384,0 -) -) -k1,8808:3078556,49800853:-34777008 -) -] -g1,8808:6630773,4812305 -g1,8808:6630773,4812305 -g1,8808:8364200,4812305 -g1,8808:10177581,4812305 -k1,8808:31387653,4812305:21210072 -) -) -] -[1,8808:6630773,45706769:25952256,40108032,0 -(1,8808:6630773,45706769:25952256,40108032,0 -(1,8808:6630773,45706769:0,0,0 -g1,8808:6630773,45706769 -) -[1,8808:6630773,45706769:25952256,40108032,0 -(1,8728:6630773,6254097:25952256,513147,126483 -h1,8727:6630773,6254097:983040,0,0 -k1,8727:9546478,6254097:298852 -k1,8727:10660599,6254097:298853 -k1,8727:12679771,6254097:298852 -k1,8727:15335954,6254097:298853 -k1,8727:16250844,6254097:298852 -k1,8727:16964440,6254097:298753 -k1,8727:19751694,6254097:298852 -k1,8727:21608337,6254097:298852 -k1,8727:24001065,6254097:298853 -k1,8727:25045061,6254097:298852 -k1,8727:26911535,6254097:298853 -k1,8727:28229472,6254097:298852 -k1,8727:32583029,6254097:0 -) -(1,8728:6630773,7095585:25952256,513147,134348 -k1,8727:7575325,7095585:285260 -k1,8727:10432873,7095585:285260 -k1,8727:11909578,7095585:285260 -k1,8727:14762539,7095585:285260 -k1,8727:16066884,7095585:285260 -k1,8727:19685306,7095585:285261 -k1,8727:22260394,7095585:285260 -k1,8727:23737099,7095585:285260 -k1,8727:24681651,7095585:285260 -k1,8727:28000573,7095585:285260 -k1,8727:29304918,7095585:285260 -k1,8727:32583029,7095585:0 -) -(1,8728:6630773,7937073:25952256,513147,126483 -k1,8727:9979901,7937073:273523 -k1,8727:10912717,7937073:273524 -k1,8727:12205325,7937073:273523 -k1,8727:15241191,7937073:273523 -k1,8727:17373971,7937073:273524 -k1,8727:19322594,7937073:273523 -k1,8727:21883325,7937073:273524 -k1,8727:24786152,7937073:273523 -k1,8727:28453785,7937073:273523 -k1,8727:29386601,7937073:273524 -k1,8727:31821501,7937073:273523 -k1,8727:32583029,7937073:0 -) -(1,8728:6630773,8778561:25952256,505283,134348 -g1,8727:9501905,8778561 -g1,8727:11351331,8778561 -g1,8727:13905924,8778561 -k1,8728:32583029,8778561:17007248 -g1,8728:32583029,8778561 -) -(1,8730:6630773,9620049:25952256,513147,134348 -h1,8729:6630773,9620049:983040,0,0 -k1,8729:9481973,9620049:215997 -k1,8729:11050633,9620049:215997 -k1,8729:13034136,9620049:215997 -k1,8729:15728705,9620049:215997 -k1,8729:17512323,9620049:215997 -k1,8729:20062057,9620049:215997 -k1,8729:21994442,9620049:215997 -k1,8729:22625265,9620049:215980 -k1,8729:25509233,9620049:215997 -k1,8729:26081090,9620049:215997 -k1,8729:28230399,9620049:215997 -k1,8729:29836415,9620049:215997 -k1,8729:32583029,9620049:0 -) -(1,8730:6630773,10461537:25952256,513147,134348 -(1,8729:6837867,10461537:0,452978,115847 -r1,8808:7547845,10461537:709978,568825,115847 -k1,8729:6837867,10461537:-709978 -) -(1,8729:6837867,10461537:709978,452978,115847 -k1,8729:6837867,10461537:3277 -h1,8729:7544568,10461537:0,411205,112570 -) -k1,8729:8006358,10461537:251419 -k1,8729:8943939,10461537:251419 -k1,8729:10517219,10461537:251419 -k1,8729:11427930,10461537:251419 -k1,8729:12698434,10461537:251419 -k1,8729:15965821,10461537:251420 -k1,8729:20643542,10461537:251419 -k1,8729:21914046,10461537:251419 -k1,8729:25899051,10461537:251419 -(1,8729:26106145,10461537:0,414482,115847 -r1,8808:26464411,10461537:358266,530329,115847 -k1,8729:26106145,10461537:-358266 -) -(1,8729:26106145,10461537:358266,414482,115847 -k1,8729:26106145,10461537:3277 -h1,8729:26461134,10461537:0,411205,112570 -) -k1,8729:26922924,10461537:251419 -k1,8729:28381516,10461537:251419 -k1,8729:32583029,10461537:0 -) -(1,8730:6630773,11303025:25952256,513147,126483 -k1,8729:7483014,11303025:236203 -k1,8729:10052953,11303025:236202 -k1,8729:11831874,11303025:236203 -k1,8729:13259521,11303025:236202 -k1,8729:14284122,11303025:236203 -k1,8729:18596009,11303025:236203 -k1,8729:21924855,11303025:236202 -k1,8729:22777096,11303025:236203 -k1,8729:25347035,11303025:236202 -k1,8729:27299626,11303025:236203 -k1,8729:30140229,11303025:236202 -k1,8729:31548871,11303025:236203 -k1,8730:32583029,11303025:0 -) -(1,8730:6630773,12144513:25952256,513147,126483 -k1,8729:11376438,12144513:179772 -k1,8729:12215501,12144513:179771 -k1,8729:14289263,12144513:179772 -k1,8729:15753541,12144513:179772 -k1,8729:17408528,12144513:179772 -k1,8729:19098249,12144513:179771 -k1,8729:22061990,12144513:179772 -k1,8729:22927924,12144513:179772 -k1,8729:23522519,12144513:179752 -k1,8729:27104920,12144513:179772 -k1,8729:28232343,12144513:179772 -k1,8729:30104254,12144513:179771 -k1,8729:31966991,12144513:179772 -k1,8729:32583029,12144513:0 -) -(1,8730:6630773,12986001:25952256,505283,134348 -g1,8729:9740456,12986001 -g1,8729:12884872,12986001 -g1,8729:14275546,12986001 -g1,8729:16811133,12986001 -g1,8729:18001922,12986001 -g1,8729:21291174,12986001 -g1,8729:22106441,12986001 -g1,8729:24723293,12986001 -h1,8729:25121752,12986001:0,0,0 -g1,8729:25320981,12986001 -g1,8729:26329580,12986001 -g1,8729:28026962,12986001 -h1,8729:29222339,12986001:0,0,0 -k1,8730:32583029,12986001:3187020 -g1,8730:32583029,12986001 -) -(1,8732:6630773,13827489:25952256,505283,134348 -h1,8731:6630773,13827489:983040,0,0 -k1,8731:8822441,13827489:255079 -k1,8731:11746802,13827489:255080 -k1,8731:12950842,13827489:255079 -k1,8731:14595941,13827489:255080 -k1,8731:16935065,13827489:255079 -k1,8731:19044814,13827489:255080 -k1,8731:20109263,13827489:255079 -k1,8731:20809275,13827489:255023 -k1,8731:22780743,13827489:255080 -k1,8731:23989371,13827489:255079 -k1,8731:25732774,13827489:255080 -k1,8731:26749381,13827489:255079 -k1,8731:29655392,13827489:255080 -k1,8731:30929556,13827489:255079 -k1,8731:32583029,13827489:0 -) -(1,8732:6630773,14668977:25952256,513147,134348 -k1,8731:10201502,14668977:166134 -k1,8731:12284564,14668977:166134 -k1,8731:14186090,14668977:166133 -k1,8731:16469692,14668977:166134 -k1,8731:19331322,14668977:166134 -k1,8731:21101122,14668977:166134 -k1,8731:23002649,14668977:166134 -k1,8731:25499898,14668977:166133 -k1,8731:27699614,14668977:166134 -k1,8731:28525040,14668977:166134 -k1,8731:32583029,14668977:0 -) -(1,8732:6630773,15510465:25952256,505283,134348 -g1,8731:8840647,15510465 -g1,8731:9655914,15510465 -g1,8731:13188304,15510465 -g1,8731:15851031,15510465 -g1,8731:17241705,15510465 -g1,8731:19176327,15510465 -g1,8731:20394641,15510465 -g1,8731:21983889,15510465 -k1,8732:32583029,15510465:7678856 -g1,8732:32583029,15510465 -) -(1,8734:6630773,16351953:25952256,513147,134348 -h1,8733:6630773,16351953:983040,0,0 -k1,8733:9957229,16351953:148615 -k1,8733:12801341,16351953:148616 -k1,8733:14379952,16351953:148615 -k1,8733:15520127,16351953:148615 -k1,8733:18197777,16351953:148616 -k1,8733:19418561,16351953:148615 -k1,8733:22050991,16351953:148615 -k1,8733:22851034,16351953:148615 -k1,8733:24411951,16351953:148616 -k1,8733:26258604,16351953:148615 -k1,8733:27426304,16351953:148615 -k1,8733:29435487,16351953:148616 -k1,8733:30243394,16351953:148615 -k1,8733:32583029,16351953:0 -) -(1,8734:6630773,17193441:25952256,473825,7863 -k1,8734:32583028,17193441:22829464 -g1,8734:32583028,17193441 -) -v1,8736:6630773,18225425:0,393216,0 -(1,8743:6630773,19175242:25952256,1343033,196608 -g1,8743:6630773,19175242 -g1,8743:6630773,19175242 -g1,8743:6434165,19175242 -(1,8743:6434165,19175242:0,1343033,196608 -r1,8808:32779637,19175242:26345472,1539641,196608 -k1,8743:6434165,19175242:-26345472 -) -(1,8743:6434165,19175242:26345472,1343033,196608 -[1,8743:6630773,19175242:25952256,1146425,0 -(1,8738:6630773,18433043:25952256,404226,101187 -(1,8737:6630773,18433043:0,0,0 -g1,8737:6630773,18433043 -g1,8737:6630773,18433043 -g1,8737:6303093,18433043 -(1,8737:6303093,18433043:0,0,0 -) -g1,8737:6630773,18433043 -) -k1,8738:6630773,18433043:0 -k1,8738:6630773,18433043:0 -h1,8738:11372959,18433043:0,0,0 -k1,8738:32583029,18433043:21210070 -g1,8738:32583029,18433043 -) -(1,8742:6630773,19099221:25952256,404226,76021 -(1,8740:6630773,19099221:0,0,0 -g1,8740:6630773,19099221 -g1,8740:6630773,19099221 -g1,8740:6303093,19099221 -(1,8740:6303093,19099221:0,0,0 -) -g1,8740:6630773,19099221 -) -g1,8742:7579210,19099221 -g1,8742:8843793,19099221 -h1,8742:11372958,19099221:0,0,0 -k1,8742:32583030,19099221:21210072 -g1,8742:32583030,19099221 -) -] -) -g1,8743:32583029,19175242 -g1,8743:6630773,19175242 -g1,8743:6630773,19175242 -g1,8743:32583029,19175242 -g1,8743:32583029,19175242 -) -h1,8743:6630773,19371850:0,0,0 -(1,8747:6630773,20579145:25952256,505283,134348 -h1,8746:6630773,20579145:983040,0,0 -g1,8746:9871528,20579145 -g1,8746:14128746,20579145 -g1,8746:16501149,20579145 -g1,8746:19597725,20579145 -g1,8746:21970128,20579145 -g1,8746:22785395,20579145 -g1,8746:24514890,20579145 -g1,8746:25786288,20579145 -g1,8746:28450981,20579145 -k1,8747:32583029,20579145:2462191 -g1,8747:32583029,20579145 -) -v1,8749:6630773,21611129:0,393216,0 -(1,8761:6630773,25240006:25952256,4022093,196608 -g1,8761:6630773,25240006 -g1,8761:6630773,25240006 -g1,8761:6434165,25240006 -(1,8761:6434165,25240006:0,4022093,196608 -r1,8808:32779637,25240006:26345472,4218701,196608 -k1,8761:6434165,25240006:-26345472 -) -(1,8761:6434165,25240006:26345472,4022093,196608 -[1,8761:6630773,25240006:25952256,3825485,0 -(1,8751:6630773,21818747:25952256,404226,9436 -(1,8750:6630773,21818747:0,0,0 -g1,8750:6630773,21818747 -g1,8750:6630773,21818747 -g1,8750:6303093,21818747 -(1,8750:6303093,21818747:0,0,0 -) -g1,8750:6630773,21818747 -) -g1,8751:9159939,21818747 -g1,8751:10108377,21818747 -h1,8751:11372960,21818747:0,0,0 -k1,8751:32583028,21818747:21210068 -g1,8751:32583028,21818747 -) -(1,8752:6630773,22484925:25952256,404226,101187 -h1,8752:6630773,22484925:0,0,0 -g1,8752:9476084,22484925 -g1,8752:10424522,22484925 -k1,8752:10424522,22484925:0 -h1,8752:14534416,22484925:0,0,0 -k1,8752:32583028,22484925:18048612 -g1,8752:32583028,22484925 -) -(1,8753:6630773,23151103:25952256,404226,101187 -h1,8753:6630773,23151103:0,0,0 -k1,8753:6630773,23151103:0 -h1,8753:10740667,23151103:0,0,0 -k1,8753:32583029,23151103:21842362 -g1,8753:32583029,23151103 -) -(1,8757:6630773,23817281:25952256,404226,76021 -(1,8755:6630773,23817281:0,0,0 -g1,8755:6630773,23817281 -g1,8755:6630773,23817281 -g1,8755:6303093,23817281 -(1,8755:6303093,23817281:0,0,0 -) -g1,8755:6630773,23817281 -) -g1,8757:7579210,23817281 -g1,8757:8843793,23817281 -h1,8757:11372958,23817281:0,0,0 -k1,8757:32583030,23817281:21210072 -g1,8757:32583030,23817281 -) -(1,8759:6630773,25138819:25952256,404226,101187 -(1,8758:6630773,25138819:0,0,0 -g1,8758:6630773,25138819 -g1,8758:6630773,25138819 -g1,8758:6303093,25138819 -(1,8758:6303093,25138819:0,0,0 -) -g1,8758:6630773,25138819 -) -k1,8759:6630773,25138819:0 -g1,8759:10740667,25138819 -g1,8759:11372959,25138819 -g1,8759:13269833,25138819 -k1,8759:13269833,25138819:0 -h1,8759:14218270,25138819:0,0,0 -k1,8759:32583030,25138819:18364760 -g1,8759:32583030,25138819 -) -] -) -g1,8761:32583029,25240006 -g1,8761:6630773,25240006 -g1,8761:6630773,25240006 -g1,8761:32583029,25240006 -g1,8761:32583029,25240006 -) -h1,8761:6630773,25436614:0,0,0 -(1,8765:6630773,26643909:25952256,513147,134348 -h1,8764:6630773,26643909:983040,0,0 -k1,8764:8279295,26643909:177894 -k1,8764:9847230,26643909:177916 -k1,8764:11760539,26643909:177916 -k1,8764:14685068,26643909:177915 -(1,8764:14685068,26643909:0,452978,115847 -r1,8808:15395046,26643909:709978,568825,115847 -k1,8764:14685068,26643909:-709978 -) -(1,8764:14685068,26643909:709978,452978,115847 -k1,8764:14685068,26643909:3277 -h1,8764:15391769,26643909:0,411205,112570 -) -k1,8764:15572962,26643909:177916 -k1,8764:17796912,26643909:177916 -k1,8764:18993912,26643909:177915 -k1,8764:20561191,26643909:177916 -k1,8764:22089149,26643909:177916 -k1,8764:23797330,26643909:177915 -k1,8764:25166691,26643909:177916 -k1,8764:27182892,26643909:177916 -k1,8764:28379892,26643909:177915 -k1,8764:30053995,26643909:177916 -k1,8765:32583029,26643909:0 -k1,8765:32583029,26643909:0 -) -v1,8767:6630773,27675893:0,393216,0 -(1,8774:6630773,28625710:25952256,1343033,196608 -g1,8774:6630773,28625710 -g1,8774:6630773,28625710 -g1,8774:6434165,28625710 -(1,8774:6434165,28625710:0,1343033,196608 -r1,8808:32779637,28625710:26345472,1539641,196608 -k1,8774:6434165,28625710:-26345472 -) -(1,8774:6434165,28625710:26345472,1343033,196608 -[1,8774:6630773,28625710:25952256,1146425,0 -(1,8769:6630773,27883511:25952256,404226,101187 -(1,8768:6630773,27883511:0,0,0 -g1,8768:6630773,27883511 -g1,8768:6630773,27883511 -g1,8768:6303093,27883511 -(1,8768:6303093,27883511:0,0,0 -) -g1,8768:6630773,27883511 -) -g1,8769:8211502,27883511 -g1,8769:9159940,27883511 -g1,8769:11372960,27883511 -g1,8769:12321398,27883511 -k1,8769:12321398,27883511:0 -h1,8769:13902126,27883511:0,0,0 -k1,8769:32583030,27883511:18680904 -g1,8769:32583030,27883511 -) -(1,8773:6630773,28549689:25952256,404226,76021 -(1,8771:6630773,28549689:0,0,0 -g1,8771:6630773,28549689 -g1,8771:6630773,28549689 -g1,8771:6303093,28549689 -(1,8771:6303093,28549689:0,0,0 -) -g1,8771:6630773,28549689 -) -g1,8773:7579210,28549689 -g1,8773:8843793,28549689 -h1,8773:11372958,28549689:0,0,0 -k1,8773:32583030,28549689:21210072 -g1,8773:32583030,28549689 -) -] -) -g1,8774:32583029,28625710 -g1,8774:6630773,28625710 -g1,8774:6630773,28625710 -g1,8774:32583029,28625710 -g1,8774:32583029,28625710 -) -h1,8774:6630773,28822318:0,0,0 -(1,8778:6630773,30029613:25952256,513147,134348 -h1,8777:6630773,30029613:983040,0,0 -k1,8777:8752224,30029613:184862 -k1,8777:10041368,30029613:184862 -k1,8777:12232942,30029613:184862 -k1,8777:13436889,30029613:184862 -k1,8777:15464623,30029613:184862 -k1,8777:16308777,30029613:184862 -k1,8777:17512724,30029613:184862 -k1,8777:21761473,30029613:184862 -k1,8777:22597763,30029613:184862 -k1,8777:23138485,30029613:184862 -k1,8777:26008357,30029613:184862 -k1,8777:27794919,30029613:184862 -k1,8777:30847636,30029613:184862 -k1,8777:32583029,30029613:0 -) -(1,8778:6630773,30871101:25952256,513147,126483 -g1,8777:7849087,30871101 -(1,8777:7849087,30871101:0,414482,115847 -r1,8808:8559065,30871101:709978,530329,115847 -k1,8777:7849087,30871101:-709978 -) -(1,8777:7849087,30871101:709978,414482,115847 -k1,8777:7849087,30871101:3277 -h1,8777:8555788,30871101:0,411205,112570 -) -g1,8777:8758294,30871101 -g1,8777:11704137,30871101 -g1,8777:12712736,30871101 -g1,8777:13931050,30871101 -g1,8777:15163127,30871101 -g1,8777:16021648,30871101 -g1,8777:17239962,30871101 -k1,8778:32583029,30871101:13779378 -g1,8778:32583029,30871101 -) -v1,8780:6630773,31903085:0,393216,0 -(1,8788:6630773,33519080:25952256,2009211,196608 -g1,8788:6630773,33519080 -g1,8788:6630773,33519080 -g1,8788:6434165,33519080 -(1,8788:6434165,33519080:0,2009211,196608 -r1,8808:32779637,33519080:26345472,2205819,196608 -k1,8788:6434165,33519080:-26345472 -) -(1,8788:6434165,33519080:26345472,2009211,196608 -[1,8788:6630773,33519080:25952256,1812603,0 -(1,8782:6630773,32110703:25952256,404226,101187 -(1,8781:6630773,32110703:0,0,0 -g1,8781:6630773,32110703 -g1,8781:6630773,32110703 -g1,8781:6303093,32110703 -(1,8781:6303093,32110703:0,0,0 -) -g1,8781:6630773,32110703 -) -g1,8782:8211502,32110703 -g1,8782:9159940,32110703 -g1,8782:11372960,32110703 -g1,8782:12321398,32110703 -g1,8782:14218272,32110703 -g1,8782:15166710,32110703 -h1,8782:18328167,32110703:0,0,0 -k1,8782:32583029,32110703:14254862 -g1,8782:32583029,32110703 -) -(1,8783:6630773,32776881:25952256,404226,101187 -h1,8783:6630773,32776881:0,0,0 -h1,8783:9792230,32776881:0,0,0 -k1,8783:32583030,32776881:22790800 -g1,8783:32583030,32776881 -) -(1,8787:6630773,33443059:25952256,404226,76021 -(1,8785:6630773,33443059:0,0,0 -g1,8785:6630773,33443059 -g1,8785:6630773,33443059 -g1,8785:6303093,33443059 -(1,8785:6303093,33443059:0,0,0 -) -g1,8785:6630773,33443059 -) -g1,8787:7579210,33443059 -g1,8787:8843793,33443059 -h1,8787:11372958,33443059:0,0,0 -k1,8787:32583030,33443059:21210072 -g1,8787:32583030,33443059 -) -] -) -g1,8788:32583029,33519080 -g1,8788:6630773,33519080 -g1,8788:6630773,33519080 -g1,8788:32583029,33519080 -g1,8788:32583029,33519080 -) -h1,8788:6630773,33715688:0,0,0 -(1,8792:6630773,34922983:25952256,513147,134348 -h1,8791:6630773,34922983:983040,0,0 -k1,8791:8800083,34922983:232721 -k1,8791:10137085,34922983:232720 -k1,8791:11655622,34922983:232721 -k1,8791:12980828,34922983:232721 -k1,8791:14232633,34922983:232720 -(1,8791:14232633,34922983:0,414482,115847 -r1,8808:14942611,34922983:709978,530329,115847 -k1,8791:14232633,34922983:-709978 -) -(1,8791:14232633,34922983:709978,414482,115847 -k1,8791:14232633,34922983:3277 -h1,8791:14939334,34922983:0,411205,112570 -) -k1,8791:15175332,34922983:232721 -k1,8791:18154666,34922983:232720 -k1,8791:19196757,34922983:232721 -k1,8791:20448563,34922983:232721 -k1,8791:21595511,34922983:232720 -k1,8791:22487524,34922983:232721 -k1,8791:23739330,34922983:232721 -k1,8791:25535739,34922983:232720 -k1,8791:26838008,34922983:232721 -k1,8791:28018379,34922983:232720 -k1,8791:32227169,34922983:232721 -k1,8791:32583029,34922983:0 -) -(1,8792:6630773,35764471:25952256,505283,126483 -g1,8791:8220021,35764471 -g1,8791:10972533,35764471 -g1,8791:11857924,35764471 -g1,8791:12413013,35764471 -g1,8791:16026012,35764471 -k1,8792:32583029,35764471:13196986 -g1,8792:32583029,35764471 -) -v1,8794:6630773,36796455:0,393216,0 -(1,8802:6630773,38412450:25952256,2009211,196608 -g1,8802:6630773,38412450 -g1,8802:6630773,38412450 -g1,8802:6434165,38412450 -(1,8802:6434165,38412450:0,2009211,196608 -r1,8808:32779637,38412450:26345472,2205819,196608 -k1,8802:6434165,38412450:-26345472 -) -(1,8802:6434165,38412450:26345472,2009211,196608 -[1,8802:6630773,38412450:25952256,1812603,0 -(1,8796:6630773,37004073:25952256,404226,101187 -(1,8795:6630773,37004073:0,0,0 -g1,8795:6630773,37004073 -g1,8795:6630773,37004073 -g1,8795:6303093,37004073 -(1,8795:6303093,37004073:0,0,0 -) -g1,8795:6630773,37004073 -) -g1,8796:10108376,37004073 -g1,8796:11056814,37004073 -g1,8796:12637543,37004073 -g1,8796:13585981,37004073 -g1,8796:15799001,37004073 -g1,8796:16747439,37004073 -k1,8796:16747439,37004073:0 -h1,8796:18328167,37004073:0,0,0 -k1,8796:32583029,37004073:14254862 -g1,8796:32583029,37004073 -) -(1,8797:6630773,37670251:25952256,404226,101187 -h1,8797:6630773,37670251:0,0,0 -h1,8797:9792230,37670251:0,0,0 -k1,8797:32583030,37670251:22790800 -g1,8797:32583030,37670251 -) -(1,8801:6630773,38336429:25952256,404226,76021 -(1,8799:6630773,38336429:0,0,0 -g1,8799:6630773,38336429 -g1,8799:6630773,38336429 -g1,8799:6303093,38336429 -(1,8799:6303093,38336429:0,0,0 -) -g1,8799:6630773,38336429 -) -g1,8801:7579210,38336429 -g1,8801:8843793,38336429 -h1,8801:11372958,38336429:0,0,0 -k1,8801:32583030,38336429:21210072 -g1,8801:32583030,38336429 -) -] -) -g1,8802:32583029,38412450 -g1,8802:6630773,38412450 -g1,8802:6630773,38412450 -g1,8802:32583029,38412450 -g1,8802:32583029,38412450 -) -h1,8802:6630773,38609058:0,0,0 -(1,8806:6630773,39816353:25952256,513147,134348 -h1,8805:6630773,39816353:983040,0,0 -k1,8805:10825937,39816353:249241 -k1,8805:12094262,39816353:249240 -(1,8805:12094262,39816353:0,452978,115847 -r1,8808:12804240,39816353:709978,568825,115847 -k1,8805:12094262,39816353:-709978 -) -(1,8805:12094262,39816353:709978,452978,115847 -k1,8805:12094262,39816353:3277 -h1,8805:12800963,39816353:0,411205,112570 -) -k1,8805:13053481,39816353:249241 -k1,8805:16049336,39816353:249241 -k1,8805:17866197,39816353:249240 -k1,8805:19549366,39816353:249241 -k1,8805:20213400,39816353:249191 -k1,8805:22145605,39816353:249240 -k1,8805:23567285,39816353:249241 -k1,8805:26962909,39816353:249241 -k1,8805:28440949,39816353:249240 -k1,8805:29836415,39816353:249241 -k1,8806:32583029,39816353:0 -) -(1,8806:6630773,40657841:25952256,513147,126483 -(1,8805:6630773,40657841:0,414482,115847 -r1,8808:6989039,40657841:358266,530329,115847 -k1,8805:6630773,40657841:-358266 -) -(1,8805:6630773,40657841:358266,414482,115847 -k1,8805:6630773,40657841:3277 -h1,8805:6985762,40657841:0,411205,112570 -) -k1,8805:7223626,40657841:234587 -k1,8805:9124795,40657841:234588 -k1,8805:10556069,40657841:234587 -k1,8805:12470999,40657841:234587 -k1,8805:15484313,40657841:234587 -k1,8805:16480429,40657841:234588 -k1,8805:17734101,40657841:234587 -k1,8805:18882916,40657841:234587 -k1,8805:22218012,40657841:234588 -k1,8805:23959272,40657841:234587 -k1,8805:27009941,40657841:234587 -k1,8805:29129999,40657841:234587 -k1,8805:30468869,40657841:234588 -k1,8805:31451222,40657841:234587 -k1,8806:32583029,40657841:0 -) -(1,8806:6630773,41499329:25952256,513147,134348 -k1,8805:7321343,41499329:275727 -k1,8805:11210801,41499329:275803 -k1,8805:12018102,41499329:275804 -k1,8805:14499192,41499329:275803 -k1,8805:15461158,41499329:275804 -k1,8805:18809289,41499329:275803 -k1,8805:19736521,41499329:275804 -k1,8805:21031409,41499329:275803 -k1,8805:25315395,41499329:275804 -k1,8805:28233610,41499329:275803 -k1,8805:29318784,41499329:275804 -k1,8805:30627435,41499329:275803 -k1,8806:32583029,41499329:0 -) -(1,8806:6630773,42340817:25952256,513147,134348 -k1,8805:8493579,42340817:256519 -k1,8805:10430441,42340817:256519 -k1,8805:11883646,42340817:256518 -k1,8805:14007941,42340817:256519 -k1,8805:16959956,42340817:256519 -k1,8805:18838491,42340817:256519 -k1,8805:21143009,42340817:256518 -k1,8805:22012290,42340817:256519 -k1,8805:23764341,42340817:256519 -k1,8805:25177570,42340817:256519 -k1,8805:28680086,42340817:256518 -k1,8805:30317449,42340817:256519 -k1,8805:32583029,42340817:0 -) -(1,8806:6630773,43182305:25952256,513147,134348 -k1,8805:8873264,43182305:158446 -k1,8805:10316216,43182305:158446 -k1,8805:13480797,43182305:158445 -k1,8805:15754090,43182305:158446 -k1,8805:16931621,43182305:158446 -k1,8805:20162395,43182305:158446 -k1,8805:21082368,43182305:158445 -k1,8805:23855045,43182305:158446 -k1,8805:24664919,43182305:158446 -k1,8805:25842450,43182305:158446 -k1,8805:27307028,43182305:158445 -k1,8805:30746206,43182305:158446 -k1,8805:31563944,43182305:158446 -k1,8805:32583029,43182305:0 -) -(1,8806:6630773,44023793:25952256,513147,126483 -k1,8805:9524679,44023793:198410 -k1,8805:11679339,44023793:198410 -k1,8805:13362139,44023793:198410 -k1,8805:15446021,44023793:198411 -k1,8805:18670228,44023793:198410 -k1,8805:20637455,44023793:198410 -k1,8805:21583631,44023793:198410 -k1,8805:23295267,44023793:198410 -k1,8805:24109715,44023793:198410 -k1,8805:24663986,44023793:198411 -k1,8805:26252415,44023793:198410 -k1,8805:29648327,44023793:198410 -k1,8805:32583029,44023793:0 -) -(1,8806:6630773,44865281:25952256,505283,134348 -k1,8805:7274243,44865281:185373 -k1,8805:7991113,44865281:185373 -k1,8805:9462302,44865281:185373 -k1,8805:12277635,44865281:185373 -k1,8805:13114436,44865281:185373 -k1,8805:14737014,44865281:185373 -k1,8805:15941472,44865281:185373 -k1,8805:17937606,44865281:185374 -k1,8805:21195307,44865281:185373 -k1,8805:24278027,44865281:185373 -k1,8805:25224928,44865281:185373 -k1,8805:27148316,44865281:185373 -k1,8805:27985117,44865281:185373 -k1,8805:29302297,44865281:185373 -k1,8805:32583029,44865281:0 -) -(1,8806:6630773,45706769:25952256,513147,134348 -g1,8805:7489294,45706769 -g1,8805:8707608,45706769 -g1,8805:11602333,45706769 -g1,8805:12610932,45706769 -g1,8805:13829246,45706769 -g1,8805:15061323,45706769 -g1,8805:16995945,45706769 -g1,8805:17965877,45706769 -g1,8805:21745338,45706769 -(1,8805:21952432,45706769:0,414482,115847 -r1,8808:22310698,45706769:358266,530329,115847 -k1,8805:21952432,45706769:-358266 -) -(1,8805:21952432,45706769:358266,414482,115847 -k1,8805:21952432,45706769:3277 -h1,8805:22307421,45706769:0,411205,112570 -) -g1,8805:22717021,45706769 -g1,8805:23602412,45706769 -k1,8806:32583029,45706769:5073361 -g1,8806:32583029,45706769 -) +) +) ] -(1,8808:32583029,45706769:0,0,0 -g1,8808:32583029,45706769 +[1,8170:3078558,4812305:0,0,0 +(1,8170:3078558,49800853:0,16384,2228224 +g1,8170:29030814,49800853 +g1,8170:36135244,49800853 +(1,6148:36135244,49800853:1720320,16384,2228224 +(1,6148:36135244,52029077:16384,1703936,0 +[1,6148:36135244,52029077:25952256,1703936,0 +(1,6148:36135244,51504789:25952256,1179648,0 +(1,6148:36135244,51504789:16384,1179648,0 +r1,8170:36151628,51504789:16384,1179648,0 ) +k1,6148:62087500,51504789:25935872 +g1,6148:62087500,51504789 ) ] -(1,8808:6630773,47279633:25952256,0,0 -h1,8808:6630773,47279633:25952256,0,0 +) +g1,6148:36675916,49800853 +(1,6148:36675916,49800853:1179648,16384,0 +r1,8170:37855564,49800853:1179648,16384,0 +) +) +k1,8170:3078556,49800853:-34777008 +) +] +g1,8170:6630773,4812305 +g1,8170:6630773,4812305 +g1,8170:9946239,4812305 +g1,8170:10761506,4812305 +g1,8170:11374923,4812305 +g1,8170:13736185,4812305 +k1,8170:31387653,4812305:17651468 +) +) +] +[1,8170:6630773,45706769:25952256,40108032,0 +(1,8170:6630773,45706769:25952256,40108032,0 +(1,8170:6630773,45706769:0,0,0 +g1,8170:6630773,45706769 +) +[1,8170:6630773,45706769:25952256,40108032,0 +(1,8099:6630773,6254097:25952256,32768,229376 +(1,8099:6630773,6254097:0,32768,229376 +(1,8099:6630773,6254097:5505024,32768,229376 +r1,8170:12135797,6254097:5505024,262144,229376 +) +k1,8099:6630773,6254097:-5505024 +) +(1,8099:6630773,6254097:25952256,32768,0 +r1,8170:32583029,6254097:25952256,32768,0 +) +) +(1,8099:6630773,7885949:25952256,615776,161218 +(1,8099:6630773,7885949:1974731,582746,14155 +g1,8099:6630773,7885949 +g1,8099:8605504,7885949 +) +g1,8099:12884481,7885949 +g1,8099:13957174,7885949 +g1,8099:14745179,7885949 +k1,8099:32583029,7885949:14984675 +g1,8099:32583029,7885949 +) +(1,8103:6630773,9144245:25952256,505283,134348 +k1,8102:7283094,9144245:237478 +k1,8102:9810439,9144245:237517 +k1,8102:11152237,9144245:237516 +k1,8102:12864969,9144245:237517 +k1,8102:16385183,9144245:237516 +k1,8102:19863455,9144245:237517 +k1,8102:21092531,9144245:237516 +k1,8102:23488804,9144245:237517 +k1,8102:25243478,9144245:237516 +k1,8102:28325913,9144245:237517 +k1,8102:30076655,9144245:237516 +k1,8102:30965600,9144245:237517 +k1,8102:32583029,9144245:0 +) +(1,8103:6630773,10009325:25952256,505283,134348 +k1,8102:9649525,10009325:297697 +k1,8102:11336585,10009325:297697 +k1,8102:13127848,10009325:297697 +k1,8102:14111707,10009325:297697 +k1,8102:16368930,10009325:297697 +k1,8102:20136104,10009325:297698 +k1,8102:22266188,10009325:297697 +k1,8102:23555445,10009325:297697 +k1,8102:24662512,10009325:297697 +k1,8102:28604011,10009325:297697 +k1,8102:29711078,10009325:297697 +k1,8102:31027860,10009325:297697 +k1,8102:32583029,10009325:0 +) +(1,8103:6630773,10874405:25952256,513147,134348 +k1,8102:7528291,10874405:238226 +k1,8102:9315133,10874405:238226 +k1,8102:10084855,10874405:238225 +k1,8102:13097875,10874405:238226 +k1,8102:13987529,10874405:238226 +k1,8102:14996458,10874405:238226 +k1,8102:18187080,10874405:238225 +k1,8102:19983097,10874405:238226 +k1,8102:21212883,10874405:238226 +k1,8102:22964335,10874405:238226 +k1,8102:23964088,10874405:238225 +k1,8102:24617118,10874405:238187 +k1,8102:26460976,10874405:238226 +k1,8102:27350629,10874405:238225 +k1,8102:29206284,10874405:238226 +k1,8102:31436804,10874405:238226 +k1,8102:32583029,10874405:0 +) +(1,8103:6630773,11739485:25952256,513147,7863 +k1,8102:9247424,11739485:233762 +k1,8102:11549502,11739485:233762 +k1,8102:12399302,11739485:233762 +k1,8102:14022427,11739485:233762 +k1,8102:16462786,11739485:233762 +k1,8102:17887993,11739485:233762 +k1,8102:19965937,11739485:233761 +k1,8102:20858991,11739485:233762 +k1,8102:22986743,11739485:233762 +k1,8102:25186585,11739485:233762 +k1,8102:26318190,11739485:233762 +k1,8102:28248679,11739485:233762 +k1,8102:31591469,11739485:233762 +k1,8102:32583029,11739485:0 +) +(1,8103:6630773,12604565:25952256,505283,134348 +k1,8102:8837773,12604565:164243 +k1,8102:9653444,12604565:164243 +k1,8102:11198531,12604565:164243 +k1,8102:13032632,12604565:164244 +k1,8102:14388320,12604565:164243 +k1,8102:15933407,12604565:164243 +k1,8102:17593837,12604565:164243 +k1,8102:18862362,12604565:164243 +k1,8102:20438906,12604565:164243 +k1,8102:21794595,12604565:164244 +k1,8102:23573645,12604565:164243 +k1,8102:26201386,12604565:164243 +k1,8102:29648327,12604565:164243 +k1,8102:32583029,12604565:0 +) +(1,8103:6630773,13469645:25952256,505283,134348 +k1,8102:8159634,13469645:148673 +k1,8102:9299867,13469645:148673 +k1,8102:11294689,13469645:148673 +k1,8102:14506515,13469645:148673 +k1,8102:17552535,13469645:148673 +k1,8102:19399246,13469645:148673 +k1,8102:20318622,13469645:148673 +k1,8102:22426822,13469645:148674 +k1,8102:23106992,13469645:148673 +k1,8102:25779456,13469645:148673 +k1,8102:27485920,13469645:148673 +k1,8102:28738875,13469645:148673 +k1,8102:29635314,13469645:148673 +k1,8102:31069803,13469645:148673 +k1,8102:32583029,13469645:0 +) +(1,8103:6630773,14334725:25952256,505283,134348 +k1,8102:7493937,14334725:211736 +k1,8102:9323102,14334725:211736 +k1,8102:12504274,14334725:211736 +k1,8102:17296320,14334725:211735 +k1,8102:18527141,14334725:211736 +k1,8102:20128240,14334725:211736 +k1,8102:22378146,14334725:211736 +k1,8102:23205920,14334725:211736 +k1,8102:24188359,14334725:211736 +k1,8102:26533291,14334725:211735 +k1,8102:28630498,14334725:211736 +k1,8102:29373731,14334725:211736 +k1,8102:32583029,14334725:0 +) +(1,8103:6630773,15199805:25952256,513147,134348 +g1,8102:7777653,15199805 +g1,8102:12039459,15199805 +g1,8102:14944670,15199805 +g1,8102:16335344,15199805 +g1,8102:17923936,15199805 +k1,8103:32583029,15199805:12105810 +g1,8103:32583029,15199805 +) +(1,8105:6630773,16064885:25952256,505283,134348 +h1,8104:6630773,16064885:983040,0,0 +k1,8104:10862433,16064885:285737 +k1,8104:12016522,16064885:285737 +k1,8104:14148408,16064885:285737 +k1,8104:15964410,16064885:285736 +k1,8104:16901575,16064885:285737 +k1,8104:18121855,16064885:285737 +k1,8104:19090477,16064885:285737 +k1,8104:21580190,16064885:285737 +k1,8104:23876572,16064885:285737 +k1,8104:26200478,16064885:285736 +k1,8104:27102253,16064885:285737 +k1,8104:30497018,16064885:285737 +k1,8105:32583029,16064885:0 +) +(1,8105:6630773,16929965:25952256,513147,134348 +k1,8104:8099955,16929965:271184 +k1,8104:10122916,16929965:271184 +k1,8104:11053391,16929965:271183 +k1,8104:12343660,16929965:271184 +k1,8104:15220555,16929965:271184 +k1,8104:16158895,16929965:271184 +k1,8104:16844849,16929965:271111 +k1,8104:18400539,16929965:271184 +k1,8104:19540075,16929965:271184 +k1,8104:21163922,16929965:271184 +k1,8104:22382757,16929965:271184 +k1,8104:25112195,16929965:271183 +k1,8104:26374939,16929965:271184 +k1,8104:30847636,16929965:271184 +k1,8104:32583029,16929965:0 +) +(1,8105:6630773,17795045:25952256,513147,7863 +k1,8104:10133344,17795045:219873 +k1,8104:13066409,17795045:219874 +k1,8104:15354598,17795045:219873 +k1,8104:16190509,17795045:219873 +k1,8104:17799745,17795045:219873 +k1,8104:20226216,17795045:219874 +k1,8104:21437649,17795045:219873 +k1,8104:23695692,17795045:219873 +k1,8104:24531603,17795045:219873 +k1,8104:25522180,17795045:219874 +k1,8104:28694450,17795045:219873 +k1,8104:31591469,17795045:219873 +k1,8104:32583029,17795045:0 +) +(1,8105:6630773,18660125:25952256,505283,7863 +g1,8104:9138180,18660125 +g1,8104:10731360,18660125 +g1,8104:14157582,18660125 +k1,8105:32583029,18660125:15142749 +g1,8105:32583029,18660125 +) +v1,8107:6630773,19344980:0,393216,0 +(1,8122:6630773,25954006:25952256,7002242,196608 +g1,8122:6630773,25954006 +g1,8122:6630773,25954006 +g1,8122:6434165,25954006 +(1,8122:6434165,25954006:0,7002242,196608 +r1,8170:32779637,25954006:26345472,7198850,196608 +k1,8122:6434165,25954006:-26345472 +) +(1,8122:6434165,25954006:26345472,7002242,196608 +[1,8122:6630773,25954006:25952256,6805634,0 +(1,8109:6630773,19579417:25952256,431045,106246 +(1,8108:6630773,19579417:0,0,0 +g1,8108:6630773,19579417 +g1,8108:6630773,19579417 +g1,8108:6303093,19579417 +(1,8108:6303093,19579417:0,0,0 +) +g1,8108:6630773,19579417 +) +g1,8109:8290543,19579417 +g1,8109:9286405,19579417 +g1,8109:13601806,19579417 +g1,8109:14265714,19579417 +g1,8109:15925484,19579417 +g1,8109:16589392,19579417 +g1,8109:17253300,19579417 +g1,8109:19576978,19579417 +g1,8109:21568702,19579417 +g1,8109:22232610,19579417 +g1,8109:22896518,19579417 +g1,8109:25552150,19579417 +g1,8109:27875828,19579417 +h1,8109:29203644,19579417:0,0,0 +k1,8109:32583029,19579417:3379385 +g1,8109:32583029,19579417 +) +(1,8110:6630773,20264272:25952256,431045,79822 +h1,8110:6630773,20264272:0,0,0 +k1,8110:6630773,20264272:0 +h1,8110:11942036,20264272:0,0,0 +k1,8110:32583028,20264272:20640992 +g1,8110:32583028,20264272 +) +(1,8121:6630773,21080199:25952256,431045,33029 +(1,8112:6630773,21080199:0,0,0 +g1,8112:6630773,21080199 +g1,8112:6630773,21080199 +g1,8112:6303093,21080199 +(1,8112:6303093,21080199:0,0,0 +) +g1,8112:6630773,21080199 +) +g1,8121:7626635,21080199 +h1,8121:9618359,21080199:0,0,0 +k1,8121:32583029,21080199:22964670 +g1,8121:32583029,21080199 +) +(1,8121:6630773,21765054:25952256,424439,106246 +h1,8121:6630773,21765054:0,0,0 +g1,8121:7626635,21765054 +g1,8121:8954451,21765054 +g1,8121:10282267,21765054 +g1,8121:11610083,21765054 +h1,8121:12605945,21765054:0,0,0 +k1,8121:32583029,21765054:19977084 +g1,8121:32583029,21765054 +) +(1,8121:6630773,22449909:25952256,398014,0 +h1,8121:6630773,22449909:0,0,0 +h1,8121:7294681,22449909:0,0,0 +k1,8121:32583029,22449909:25288348 +g1,8121:32583029,22449909 +) +(1,8121:6630773,23134764:25952256,431045,33029 +h1,8121:6630773,23134764:0,0,0 +g1,8121:7626635,23134764 +h1,8121:9618359,23134764:0,0,0 +k1,8121:32583029,23134764:22964670 +g1,8121:32583029,23134764 +) +(1,8121:6630773,23819619:25952256,431045,79822 +h1,8121:6630773,23819619:0,0,0 +g1,8121:7626635,23819619 +g1,8121:8954451,23819619 +h1,8121:12937898,23819619:0,0,0 +k1,8121:32583030,23819619:19645132 +g1,8121:32583030,23819619 +) +(1,8121:6630773,24504474:25952256,398014,0 +h1,8121:6630773,24504474:0,0,0 +h1,8121:7294681,24504474:0,0,0 +k1,8121:32583029,24504474:25288348 +g1,8121:32583029,24504474 +) +(1,8121:6630773,25189329:25952256,431045,33029 +h1,8121:6630773,25189329:0,0,0 +g1,8121:7626635,25189329 +h1,8121:10946174,25189329:0,0,0 +k1,8121:32583030,25189329:21636856 +g1,8121:32583030,25189329 +) +(1,8121:6630773,25874184:25952256,424439,79822 +h1,8121:6630773,25874184:0,0,0 +g1,8121:7626635,25874184 +g1,8121:8954451,25874184 +g1,8121:9618359,25874184 +g1,8121:10282267,25874184 +g1,8121:10946175,25874184 +g1,8121:11610083,25874184 +g1,8121:12273991,25874184 +h1,8121:12605945,25874184:0,0,0 +k1,8121:32583029,25874184:19977084 +g1,8121:32583029,25874184 +) +] +) +g1,8122:32583029,25954006 +g1,8122:6630773,25954006 +g1,8122:6630773,25954006 +g1,8122:32583029,25954006 +g1,8122:32583029,25954006 +) +h1,8122:6630773,26150614:0,0,0 +(1,8126:6630773,27015694:25952256,505283,134348 +h1,8125:6630773,27015694:983040,0,0 +k1,8125:10692794,27015694:168527 +(1,8125:10692794,27015694:0,452978,115847 +r1,8170:13864754,27015694:3171960,568825,115847 +k1,8125:10692794,27015694:-3171960 +) +(1,8125:10692794,27015694:3171960,452978,115847 +k1,8125:10692794,27015694:3277 +h1,8125:13861477,27015694:0,411205,112570 +) +k1,8125:14033281,27015694:168527 +k1,8125:14733305,27015694:168527 +k1,8125:16896748,27015694:168527 +k1,8125:17716703,27015694:168527 +k1,8125:18632996,27015694:168527 +k1,8125:19736065,27015694:168526 +k1,8125:20666120,27015694:168527 +k1,8125:22545792,27015694:168527 +k1,8125:23365747,27015694:168527 +k1,8125:25151703,27015694:168527 +k1,8125:25676090,27015694:168527 +k1,8125:28819296,27015694:168527 +k1,8125:32583029,27015694:0 +) +(1,8126:6630773,27880774:25952256,513147,134348 +k1,8125:7484556,27880774:202355 +k1,8125:9304340,27880774:202355 +k1,8125:12476130,27880774:202354 +k1,8125:13364647,27880774:202355 +k1,8125:14793181,27880774:202355 +k1,8125:17675959,27880774:202355 +k1,8125:19272264,27880774:202354 +k1,8125:21037653,27880774:202355 +k1,8125:22057897,27880774:202355 +k1,8125:25577684,27880774:202355 +k1,8125:26771598,27880774:202354 +k1,8125:30278934,27880774:202355 +k1,8125:32168186,27880774:202355 +k1,8126:32583029,27880774:0 +) +(1,8126:6630773,28745854:25952256,513147,134348 +g1,8125:7931007,28745854 +g1,8125:11156033,28745854 +g1,8125:12302913,28745854 +g1,8125:15523352,28745854 +g1,8125:16914026,28745854 +g1,8125:19294949,28745854 +g1,8125:22985281,28745854 +g1,8125:22985281,28745854 +g1,8125:23184510,28745854 +g1,8125:23184510,28745854 +k1,8126:32583029,28745854:9398519 +g1,8126:32583029,28745854 +) +v1,8128:6630773,29430709:0,393216,0 +(1,8142:6630773,32877604:25952256,3840111,196608 +g1,8142:6630773,32877604 +g1,8142:6630773,32877604 +g1,8142:6434165,32877604 +(1,8142:6434165,32877604:0,3840111,196608 +r1,8170:32779637,32877604:26345472,4036719,196608 +k1,8142:6434165,32877604:-26345472 +) +(1,8142:6434165,32877604:26345472,3840111,196608 +[1,8142:6630773,32877604:25952256,3643503,0 +(1,8130:6630773,29665146:25952256,431045,79822 +(1,8129:6630773,29665146:0,0,0 +g1,8129:6630773,29665146 +g1,8129:6630773,29665146 +g1,8129:6303093,29665146 +(1,8129:6303093,29665146:0,0,0 +) +g1,8129:6630773,29665146 +) +k1,8130:6630773,29665146:0 +h1,8130:10946175,29665146:0,0,0 +k1,8130:32583029,29665146:21636854 +g1,8130:32583029,29665146 +) +(1,8134:6630773,30481073:25952256,398014,8257 +(1,8132:6630773,30481073:0,0,0 +g1,8132:6630773,30481073 +g1,8132:6630773,30481073 +g1,8132:6303093,30481073 +(1,8132:6303093,30481073:0,0,0 +) +g1,8132:6630773,30481073 +) +g1,8134:7626635,30481073 +h1,8134:8954451,30481073:0,0,0 +k1,8134:32583029,30481073:23628578 +g1,8134:32583029,30481073 +) +(1,8136:6630773,31297000:25952256,431045,79822 +(1,8135:6630773,31297000:0,0,0 +g1,8135:6630773,31297000 +g1,8135:6630773,31297000 +g1,8135:6303093,31297000 +(1,8135:6303093,31297000:0,0,0 +) +g1,8135:6630773,31297000 +) +k1,8136:6630773,31297000:0 +g1,8136:11278129,31297000 +g1,8136:12273991,31297000 +g1,8136:14265715,31297000 +g1,8136:15261577,31297000 +g1,8136:17585255,31297000 +g1,8136:18581117,31297000 +g1,8136:19245025,31297000 +h1,8136:21900656,31297000:0,0,0 +k1,8136:32583029,31297000:10682373 +g1,8136:32583029,31297000 +) +(1,8137:6630773,31981855:25952256,431045,79822 +h1,8137:6630773,31981855:0,0,0 +k1,8137:6630773,31981855:0 +h1,8137:10946175,31981855:0,0,0 +k1,8137:32583029,31981855:21636854 +g1,8137:32583029,31981855 +) +(1,8141:6630773,32797782:25952256,424439,79822 +(1,8139:6630773,32797782:0,0,0 +g1,8139:6630773,32797782 +g1,8139:6630773,32797782 +g1,8139:6303093,32797782 +(1,8139:6303093,32797782:0,0,0 +) +g1,8139:6630773,32797782 +) +g1,8141:7626635,32797782 +g1,8141:8954451,32797782 +g1,8141:10946175,32797782 +g1,8141:11942037,32797782 +g1,8141:14265715,32797782 +g1,8141:15261577,32797782 +g1,8141:15925485,32797782 +h1,8141:18581116,32797782:0,0,0 +k1,8141:32583029,32797782:14001913 +g1,8141:32583029,32797782 +) +] +) +g1,8142:32583029,32877604 +g1,8142:6630773,32877604 +g1,8142:6630773,32877604 +g1,8142:32583029,32877604 +g1,8142:32583029,32877604 +) +h1,8142:6630773,33074212:0,0,0 +(1,8146:6630773,33939292:25952256,513147,115847 +h1,8145:6630773,33939292:983040,0,0 +k1,8145:11086278,33939292:352296 +k1,8145:12584798,33939292:352295 +(1,8145:12584798,33939292:0,452978,115847 +r1,8170:15053335,33939292:2468537,568825,115847 +k1,8145:12584798,33939292:-2468537 +) +(1,8145:12584798,33939292:2468537,452978,115847 +k1,8145:12584798,33939292:3277 +h1,8145:15050058,33939292:0,411205,112570 +) +k1,8145:15579301,33939292:352296 +(1,8145:15579301,33939292:0,452978,115847 +r1,8170:17344414,33939292:1765113,568825,115847 +k1,8145:15579301,33939292:-1765113 +) +(1,8145:15579301,33939292:1765113,452978,115847 +k1,8145:15579301,33939292:3277 +h1,8145:17341137,33939292:0,411205,112570 +) +k1,8145:17696709,33939292:352295 +k1,8145:18731890,33939292:352296 +(1,8145:18731890,33939292:0,452978,115847 +r1,8170:21552139,33939292:2820249,568825,115847 +k1,8145:18731890,33939292:-2820249 +) +(1,8145:18731890,33939292:2820249,452978,115847 +k1,8145:18731890,33939292:3277 +h1,8145:21548862,33939292:0,411205,112570 +) +k1,8145:21904434,33939292:352295 +k1,8145:24267375,33939292:352296 +k1,8145:26630315,33939292:352295 +k1,8145:29837359,33939292:352296 +k1,8145:31757275,33939292:352295 +k1,8146:32583029,33939292:0 +) +(1,8146:6630773,34804372:25952256,505283,134348 +k1,8145:9269453,34804372:142414 +k1,8145:11450037,34804372:142414 +k1,8145:12208489,34804372:142414 +k1,8145:12765689,34804372:142357 +k1,8145:15371601,34804372:142414 +k1,8145:18119071,34804372:142414 +(1,8145:18119071,34804372:0,452978,115847 +r1,8170:21291031,34804372:3171960,568825,115847 +k1,8145:18119071,34804372:-3171960 +) +(1,8145:18119071,34804372:3171960,452978,115847 +k1,8145:18119071,34804372:3277 +h1,8145:21287754,34804372:0,411205,112570 +) +k1,8145:21607115,34804372:142414 +(1,8145:21607115,34804372:0,452978,115847 +r1,8170:24075652,34804372:2468537,568825,115847 +k1,8145:21607115,34804372:-2468537 +) +(1,8145:21607115,34804372:2468537,452978,115847 +k1,8145:21607115,34804372:3277 +h1,8145:24072375,34804372:0,411205,112570 +) +k1,8145:24218066,34804372:142414 +k1,8145:25043364,34804372:142413 +(1,8145:25043364,34804372:0,452978,115847 +r1,8170:28567036,34804372:3523672,568825,115847 +k1,8145:25043364,34804372:-3523672 +) +(1,8145:25043364,34804372:3523672,452978,115847 +k1,8145:25043364,34804372:3277 +h1,8145:28563759,34804372:0,411205,112570 +) +k1,8145:28709450,34804372:142414 +k1,8145:29786407,34804372:142414 +k1,8145:30818800,34804372:142414 +k1,8145:32583029,34804372:0 +) +(1,8146:6630773,35669452:25952256,513147,126483 +k1,8145:8182410,35669452:157686 +(1,8145:8182410,35669452:0,414482,115847 +r1,8170:9595811,35669452:1413401,530329,115847 +k1,8145:8182410,35669452:-1413401 +) +(1,8145:8182410,35669452:1413401,414482,115847 +k1,8145:8182410,35669452:3277 +h1,8145:9592534,35669452:0,411205,112570 +) +k1,8145:9960591,35669452:157686 +k1,8145:11137362,35669452:157686 +k1,8145:12975391,35669452:157686 +k1,8145:13792369,35669452:157686 +k1,8145:14969140,35669452:157686 +k1,8145:18357097,35669452:157687 +k1,8145:21797481,35669452:157686 +k1,8145:25142183,35669452:157686 +k1,8145:27115872,35669452:157686 +k1,8145:28465003,35669452:157686 +k1,8145:29557232,35669452:157686 +k1,8145:32583029,35669452:0 +) +(1,8146:6630773,36534532:25952256,513147,115847 +k1,8145:7618706,36534532:172665 +k1,8145:8857641,36534532:172664 +k1,8145:10531080,36534532:172665 +k1,8145:11651396,36534532:172665 +k1,8145:12590176,36534532:172664 +k1,8145:16045539,36534532:172665 +k1,8145:19338373,36534532:172665 +(1,8145:19338373,36534532:0,452978,115847 +r1,8170:21455198,36534532:2116825,568825,115847 +k1,8145:19338373,36534532:-2116825 +) +(1,8145:19338373,36534532:2116825,452978,115847 +k1,8145:19338373,36534532:3277 +h1,8145:21451921,36534532:0,411205,112570 +) +k1,8145:21801532,36534532:172664 +(1,8145:21801532,36534532:0,452978,115847 +r1,8170:24621781,36534532:2820249,568825,115847 +k1,8145:21801532,36534532:-2820249 +) +(1,8145:21801532,36534532:2820249,452978,115847 +k1,8145:21801532,36534532:3277 +h1,8145:24618504,36534532:0,411205,112570 +) +k1,8145:24794446,36534532:172665 +k1,8145:26158556,36534532:172665 +(1,8145:26158556,36534532:0,452978,115847 +r1,8170:30385652,36534532:4227096,568825,115847 +k1,8145:26158556,36534532:-4227096 +) +(1,8145:26158556,36534532:4227096,452978,115847 +k1,8145:26158556,36534532:3277 +h1,8145:30382375,36534532:0,411205,112570 +) +k1,8145:30558316,36534532:172664 +k1,8145:31835263,36534532:172665 +k1,8145:32583029,36534532:0 +) +(1,8146:6630773,37399612:25952256,505283,126483 +k1,8145:8305955,37399612:161956 +k1,8145:9861861,37399612:161955 +k1,8145:11155624,37399612:161956 +k1,8145:14269976,37399612:161955 +k1,8145:15911080,37399612:161956 +(1,8145:15911080,37399612:0,452978,115847 +r1,8170:18027905,37399612:2116825,568825,115847 +k1,8145:15911080,37399612:-2116825 +) +(1,8145:15911080,37399612:2116825,452978,115847 +k1,8145:15911080,37399612:3277 +h1,8145:18024628,37399612:0,411205,112570 +) +k1,8145:18189861,37399612:161956 +k1,8145:19220168,37399612:161955 +k1,8145:21371797,37399612:161956 +k1,8145:22725198,37399612:161956 +k1,8145:24281104,37399612:161955 +(1,8145:24281104,37399612:0,452978,115847 +r1,8170:27101353,37399612:2820249,568825,115847 +k1,8145:24281104,37399612:-2820249 +) +(1,8145:24281104,37399612:2820249,452978,115847 +k1,8145:24281104,37399612:3277 +h1,8145:27098076,37399612:0,411205,112570 +) +k1,8145:27263309,37399612:161956 +k1,8145:28293616,37399612:161955 +k1,8145:29390115,37399612:161956 +k1,8145:32583029,37399612:0 +) +(1,8146:6630773,38264692:25952256,513147,134348 +k1,8145:9959395,38264692:219594 +k1,8145:10940517,38264692:219594 +k1,8145:13071797,38264692:219595 +k1,8145:14770539,38264692:219594 +(1,8145:14770539,38264692:0,452978,115847 +r1,8170:18997635,38264692:4227096,568825,115847 +k1,8145:14770539,38264692:-4227096 +) +(1,8145:14770539,38264692:4227096,452978,115847 +k1,8145:14770539,38264692:3277 +h1,8145:18994358,38264692:0,411205,112570 +) +k1,8145:19217229,38264692:219594 +k1,8145:20305175,38264692:219594 +k1,8145:22958777,38264692:219595 +k1,8145:23944487,38264692:219594 +k1,8145:27273109,38264692:219594 +k1,8145:28151995,38264692:219594 +k1,8145:29142293,38264692:219595 +k1,8145:31321413,38264692:219594 +k1,8145:32227169,38264692:219594 +k1,8145:32583029,38264692:0 +) +(1,8146:6630773,39129772:25952256,513147,126483 +k1,8145:9009371,39129772:219842 +(1,8145:9009371,39129772:0,452978,115847 +r1,8170:10422772,39129772:1413401,568825,115847 +k1,8145:9009371,39129772:-1413401 +) +(1,8145:9009371,39129772:1413401,452978,115847 +k1,8145:9009371,39129772:3277 +h1,8145:10419495,39129772:0,411205,112570 +) +k1,8145:10816284,39129772:219842 +k1,8145:11663960,39129772:219841 +k1,8145:14723477,39129772:219842 +k1,8145:17397642,39129772:219842 +(1,8145:17397642,39129772:0,452978,115847 +r1,8170:19162755,39129772:1765113,568825,115847 +k1,8145:17397642,39129772:-1765113 +) +(1,8145:17397642,39129772:1765113,452978,115847 +k1,8145:17397642,39129772:3277 +h1,8145:19159478,39129772:0,411205,112570 +) +k1,8145:19382597,39129772:219842 +k1,8145:22227811,39129772:219842 +k1,8145:23213769,39129772:219842 +k1,8145:27361183,39129772:219841 +k1,8145:28772470,39129772:219842 +k1,8145:31923737,39129772:219842 +k1,8146:32583029,39129772:0 +) +(1,8146:6630773,39994852:25952256,505283,134348 +g1,8145:7244845,39994852 +g1,8145:9733902,39994852 +g1,8145:12913708,39994852 +g1,8145:14621576,39994852 +k1,8146:32583029,39994852:14678755 +g1,8146:32583029,39994852 +) +(1,8148:6630773,40859932:25952256,505283,134348 +h1,8147:6630773,40859932:983040,0,0 +k1,8147:11336148,40859932:179459 +k1,8147:12909559,40859932:179460 +k1,8147:14108103,40859932:179459 +k1,8147:17042040,40859932:179459 +k1,8147:20056587,40859932:179460 +k1,8147:21104398,40859932:179459 +k1,8147:22388139,40859932:179459 +k1,8147:25001606,40859932:179460 +k1,8147:26372510,40859932:179459 +k1,8147:27486512,40859932:179459 +k1,8147:28685057,40859932:179460 +k1,8147:30544859,40859932:179459 +k1,8147:32583029,40859932:0 +) +(1,8148:6630773,41725012:25952256,513147,134348 +k1,8147:7402403,41725012:155592 +k1,8147:8577080,41725012:155592 +(1,8147:8577080,41725012:0,452978,115847 +r1,8170:11749040,41725012:3171960,568825,115847 +k1,8147:8577080,41725012:-3171960 +) +(1,8147:8577080,41725012:3171960,452978,115847 +k1,8147:8577080,41725012:3277 +h1,8147:11745763,41725012:0,411205,112570 +) +k1,8147:11904632,41725012:155592 +k1,8147:14838951,41725012:155592 +k1,8147:16729936,41725012:155592 +k1,8147:18582254,41725012:155591 +k1,8147:21937314,41725012:155592 +k1,8147:22720741,41725012:155592 +k1,8147:23895418,41725012:155592 +k1,8147:26292341,41725012:155592 +k1,8147:29634293,41725012:155592 +k1,8147:30658237,41725012:155592 +k1,8147:32583029,41725012:0 +) +(1,8148:6630773,42590092:25952256,505283,134348 +g1,8147:7849087,42590092 +g1,8147:9728659,42590092 +g1,8147:11966058,42590092 +g1,8147:12781325,42590092 +g1,8147:13999639,42590092 +g1,8147:16977595,42590092 +g1,8147:17938352,42590092 +g1,8147:21134542,42590092 +(1,8147:21134542,42590092:0,414482,115847 +r1,8170:22547943,42590092:1413401,530329,115847 +k1,8147:21134542,42590092:-1413401 +) +(1,8147:21134542,42590092:1413401,414482,115847 +k1,8147:21134542,42590092:3277 +h1,8147:22544666,42590092:0,411205,112570 +) +g1,8147:22747172,42590092 +g1,8147:23597829,42590092 +k1,8148:32583029,42590092:8353433 +g1,8148:32583029,42590092 +) +v1,8150:6630773,43274947:0,393216,0 +(1,8170:6630773,45510161:25952256,2628430,196608 +g1,8170:6630773,45510161 +g1,8170:6630773,45510161 +g1,8170:6434165,45510161 +(1,8170:6434165,45510161:0,2628430,196608 +r1,8170:32779637,45510161:26345472,2825038,196608 +k1,8170:6434165,45510161:-26345472 +) +(1,8170:6434165,45510161:26345472,2628430,196608 +[1,8170:6630773,45510161:25952256,2431822,0 +(1,8152:6630773,43509384:25952256,431045,86428 +(1,8151:6630773,43509384:0,0,0 +g1,8151:6630773,43509384 +g1,8151:6630773,43509384 +g1,8151:6303093,43509384 +(1,8151:6303093,43509384:0,0,0 +) +g1,8151:6630773,43509384 +) +k1,8152:6630773,43509384:0 +g1,8152:10282267,43509384 +h1,8152:13601806,43509384:0,0,0 +k1,8152:32583030,43509384:18981224 +g1,8152:32583030,43509384 +) +(1,8156:6630773,44167345:25952256,424439,79822 +(1,8154:6630773,44167345:0,0,0 +g1,8154:6630773,44167345 +g1,8154:6630773,44167345 +g1,8154:6303093,44167345 +(1,8154:6303093,44167345:0,0,0 +) +g1,8154:6630773,44167345 +) +g1,8156:7626635,44167345 +g1,8156:8954451,44167345 +g1,8156:10946175,44167345 +g1,8156:11942037,44167345 +g1,8156:14265715,44167345 +g1,8156:15261577,44167345 +g1,8156:15925485,44167345 +h1,8156:18581116,44167345:0,0,0 +k1,8156:32583029,44167345:14001913 +g1,8156:32583029,44167345 +) +(1,8158:6630773,44825306:25952256,431045,86428 +(1,8157:6630773,44825306:0,0,0 +g1,8157:6630773,44825306 +g1,8157:6630773,44825306 +g1,8157:6303093,44825306 +(1,8157:6303093,44825306:0,0,0 +) +g1,8157:6630773,44825306 +) +k1,8158:6630773,44825306:0 +g1,8158:10282267,44825306 +g1,8158:13933760,44825306 +g1,8158:14929622,44825306 +k1,8158:14929622,44825306:0 +h1,8158:16257438,44825306:0,0,0 +k1,8158:32583029,44825306:16325591 +g1,8158:32583029,44825306 +) +(1,8159:6630773,45510161:25952256,431045,86428 +h1,8159:6630773,45510161:0,0,0 +g1,8159:10282267,45510161 +h1,8159:13601806,45510161:0,0,0 +k1,8159:32583030,45510161:18981224 +g1,8159:32583030,45510161 +) +] +) +g1,8170:32583029,45510161 +g1,8170:6630773,45510161 +g1,8170:6630773,45510161 +g1,8170:32583029,45510161 +g1,8170:32583029,45510161 +) +] +(1,8170:32583029,45706769:0,0,0 +g1,8170:32583029,45706769 +) +) +] +(1,8170:6630773,47279633:25952256,0,0 +h1,8170:6630773,47279633:25952256,0,0 ) ] -(1,8808:4262630,4025873:0,0,0 -[1,8808:-473656,4025873:0,0,0 -(1,8808:-473656,-710413:0,0,0 -(1,8808:-473656,-710413:0,0,0 -g1,8808:-473656,-710413 +(1,8170:4262630,4025873:0,0,0 +[1,8170:-473656,4025873:0,0,0 +(1,8170:-473656,-710413:0,0,0 +(1,8170:-473656,-710413:0,0,0 +g1,8170:-473656,-710413 ) -g1,8808:-473656,-710413 +g1,8170:-473656,-710413 ) ] ) ] -!25747 -}148 -Input:1184:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1185:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1186:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1187:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1188:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1189:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1190:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1191:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!28066 +}124 +Input:1133:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1134:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1135:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1136:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1137:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1138:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1139:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1140:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !764 -{149 -[1,8888:4262630,47279633:28320399,43253760,0 -(1,8888:4262630,4025873:0,0,0 -[1,8888:-473656,4025873:0,0,0 -(1,8888:-473656,-710413:0,0,0 -(1,8888:-473656,-644877:0,0,0 -k1,8888:-473656,-644877:-65536 +{125 +[1,8282:4262630,47279633:28320399,43253760,0 +(1,8282:4262630,4025873:0,0,0 +[1,8282:-473656,4025873:0,0,0 +(1,8282:-473656,-710413:0,0,0 +(1,8282:-473656,-644877:0,0,0 +k1,8282:-473656,-644877:-65536 ) -(1,8888:-473656,4736287:0,0,0 -k1,8888:-473656,4736287:5209943 +(1,8282:-473656,4736287:0,0,0 +k1,8282:-473656,4736287:5209943 ) -g1,8888:-473656,-710413 +g1,8282:-473656,-710413 ) ] ) -[1,8888:6630773,47279633:25952256,43253760,0 -[1,8888:6630773,4812305:25952256,786432,0 -(1,8888:6630773,4812305:25952256,505283,134348 -(1,8888:6630773,4812305:25952256,505283,134348 -g1,8888:3078558,4812305 -[1,8888:3078558,4812305:0,0,0 -(1,8888:3078558,2439708:0,1703936,0 -k1,8888:1358238,2439708:-1720320 -(1,8393:1358238,2439708:1720320,1703936,0 -(1,8393:1358238,2439708:1179648,16384,0 -r1,8888:2537886,2439708:1179648,16384,0 +[1,8282:6630773,47279633:25952256,43253760,0 +[1,8282:6630773,4812305:25952256,786432,0 +(1,8282:6630773,4812305:25952256,505283,11795 +(1,8282:6630773,4812305:25952256,505283,11795 +g1,8282:3078558,4812305 +[1,8282:3078558,4812305:0,0,0 +(1,8282:3078558,2439708:0,1703936,0 +k1,8282:1358238,2439708:-1720320 +(1,6148:1358238,2439708:1720320,1703936,0 +(1,6148:1358238,2439708:1179648,16384,0 +r1,8282:2537886,2439708:1179648,16384,0 ) -g1,8393:3062174,2439708 -(1,8393:3062174,2439708:16384,1703936,0 -[1,8393:3062174,2439708:25952256,1703936,0 -(1,8393:3062174,1915420:25952256,1179648,0 -(1,8393:3062174,1915420:16384,1179648,0 -r1,8888:3078558,1915420:16384,1179648,0 +g1,6148:3062174,2439708 +(1,6148:3062174,2439708:16384,1703936,0 +[1,6148:3062174,2439708:25952256,1703936,0 +(1,6148:3062174,1915420:25952256,1179648,0 +(1,6148:3062174,1915420:16384,1179648,0 +r1,8282:3078558,1915420:16384,1179648,0 ) -k1,8393:29014430,1915420:25935872 -g1,8393:29014430,1915420 +k1,6148:29014430,1915420:25935872 +g1,6148:29014430,1915420 ) ] ) ) ) ] -[1,8888:3078558,4812305:0,0,0 -(1,8888:3078558,2439708:0,1703936,0 -g1,8888:29030814,2439708 -g1,8888:36135244,2439708 -(1,8393:36135244,2439708:1720320,1703936,0 -(1,8393:36135244,2439708:16384,1703936,0 -[1,8393:36135244,2439708:25952256,1703936,0 -(1,8393:36135244,1915420:25952256,1179648,0 -(1,8393:36135244,1915420:16384,1179648,0 -r1,8888:36151628,1915420:16384,1179648,0 +[1,8282:3078558,4812305:0,0,0 +(1,8282:3078558,2439708:0,1703936,0 +g1,8282:29030814,2439708 +g1,8282:36135244,2439708 +(1,6148:36135244,2439708:1720320,1703936,0 +(1,6148:36135244,2439708:16384,1703936,0 +[1,6148:36135244,2439708:25952256,1703936,0 +(1,6148:36135244,1915420:25952256,1179648,0 +(1,6148:36135244,1915420:16384,1179648,0 +r1,8282:36151628,1915420:16384,1179648,0 ) -k1,8393:62087500,1915420:25935872 -g1,8393:62087500,1915420 +k1,6148:62087500,1915420:25935872 +g1,6148:62087500,1915420 ) ] ) -g1,8393:36675916,2439708 -(1,8393:36675916,2439708:1179648,16384,0 -r1,8888:37855564,2439708:1179648,16384,0 +g1,6148:36675916,2439708 +(1,6148:36675916,2439708:1179648,16384,0 +r1,8282:37855564,2439708:1179648,16384,0 ) ) -k1,8888:3078556,2439708:-34777008 +k1,8282:3078556,2439708:-34777008 ) ] -[1,8888:3078558,4812305:0,0,0 -(1,8888:3078558,49800853:0,16384,2228224 -k1,8888:1358238,49800853:-1720320 -(1,8393:1358238,49800853:1720320,16384,2228224 -(1,8393:1358238,49800853:1179648,16384,0 -r1,8888:2537886,49800853:1179648,16384,0 +[1,8282:3078558,4812305:0,0,0 +(1,8282:3078558,49800853:0,16384,2228224 +k1,8282:1358238,49800853:-1720320 +(1,6148:1358238,49800853:1720320,16384,2228224 +(1,6148:1358238,49800853:1179648,16384,0 +r1,8282:2537886,49800853:1179648,16384,0 ) -g1,8393:3062174,49800853 -(1,8393:3062174,52029077:16384,1703936,0 -[1,8393:3062174,52029077:25952256,1703936,0 -(1,8393:3062174,51504789:25952256,1179648,0 -(1,8393:3062174,51504789:16384,1179648,0 -r1,8888:3078558,51504789:16384,1179648,0 +g1,6148:3062174,49800853 +(1,6148:3062174,52029077:16384,1703936,0 +[1,6148:3062174,52029077:25952256,1703936,0 +(1,6148:3062174,51504789:25952256,1179648,0 +(1,6148:3062174,51504789:16384,1179648,0 +r1,8282:3078558,51504789:16384,1179648,0 ) -k1,8393:29014430,51504789:25935872 -g1,8393:29014430,51504789 +k1,6148:29014430,51504789:25935872 +g1,6148:29014430,51504789 ) ] ) ) ) ] -[1,8888:3078558,4812305:0,0,0 -(1,8888:3078558,49800853:0,16384,2228224 -g1,8888:29030814,49800853 -g1,8888:36135244,49800853 -(1,8393:36135244,49800853:1720320,16384,2228224 -(1,8393:36135244,52029077:16384,1703936,0 -[1,8393:36135244,52029077:25952256,1703936,0 -(1,8393:36135244,51504789:25952256,1179648,0 -(1,8393:36135244,51504789:16384,1179648,0 -r1,8888:36151628,51504789:16384,1179648,0 +[1,8282:3078558,4812305:0,0,0 +(1,8282:3078558,49800853:0,16384,2228224 +g1,8282:29030814,49800853 +g1,8282:36135244,49800853 +(1,6148:36135244,49800853:1720320,16384,2228224 +(1,6148:36135244,52029077:16384,1703936,0 +[1,6148:36135244,52029077:25952256,1703936,0 +(1,6148:36135244,51504789:25952256,1179648,0 +(1,6148:36135244,51504789:16384,1179648,0 +r1,8282:36151628,51504789:16384,1179648,0 ) -k1,8393:62087500,51504789:25935872 -g1,8393:62087500,51504789 +k1,6148:62087500,51504789:25935872 +g1,6148:62087500,51504789 ) ] ) -g1,8393:36675916,49800853 -(1,8393:36675916,49800853:1179648,16384,0 -r1,8888:37855564,49800853:1179648,16384,0 +g1,6148:36675916,49800853 +(1,6148:36675916,49800853:1179648,16384,0 +r1,8282:37855564,49800853:1179648,16384,0 ) ) -k1,8888:3078556,49800853:-34777008 +k1,8282:3078556,49800853:-34777008 ) ] -g1,8888:6630773,4812305 -k1,8888:21643106,4812305:13816956 -g1,8888:23265777,4812305 -g1,8888:24088253,4812305 -g1,8888:28572226,4812305 -g1,8888:29981905,4812305 +g1,8282:6630773,4812305 +k1,8282:24358918,4812305:16532768 +g1,8282:25981589,4812305 +g1,8282:26804065,4812305 +g1,8282:30302376,4812305 ) ) ] -[1,8888:6630773,45706769:25952256,40108032,0 -(1,8888:6630773,45706769:25952256,40108032,0 -(1,8888:6630773,45706769:0,0,0 -g1,8888:6630773,45706769 +[1,8282:6630773,45706769:25952256,40108032,0 +(1,8282:6630773,45706769:25952256,40108032,0 +(1,8282:6630773,45706769:0,0,0 +g1,8282:6630773,45706769 ) -[1,8888:6630773,45706769:25952256,40108032,0 -v1,8808:6630773,6254097:0,393216,0 -(1,8815:6630773,7203914:25952256,1343033,196608 -g1,8815:6630773,7203914 -g1,8815:6630773,7203914 -g1,8815:6434165,7203914 -(1,8815:6434165,7203914:0,1343033,196608 -r1,8888:32779637,7203914:26345472,1539641,196608 -k1,8815:6434165,7203914:-26345472 -) -(1,8815:6434165,7203914:26345472,1343033,196608 -[1,8815:6630773,7203914:25952256,1146425,0 -(1,8810:6630773,6461715:25952256,404226,101187 -(1,8809:6630773,6461715:0,0,0 -g1,8809:6630773,6461715 -g1,8809:6630773,6461715 -g1,8809:6303093,6461715 -(1,8809:6303093,6461715:0,0,0 -) -g1,8809:6630773,6461715 -) -g1,8810:8211502,6461715 -g1,8810:9159940,6461715 -g1,8810:11372961,6461715 -g1,8810:12005253,6461715 -g1,8810:12953690,6461715 -g1,8810:13902128,6461715 -g1,8810:15799003,6461715 -g1,8810:16431295,6461715 -h1,8810:17063586,6461715:0,0,0 -k1,8810:32583029,6461715:15519443 -g1,8810:32583029,6461715 -) -(1,8814:6630773,7127893:25952256,404226,76021 -(1,8812:6630773,7127893:0,0,0 -g1,8812:6630773,7127893 -g1,8812:6630773,7127893 -g1,8812:6303093,7127893 -(1,8812:6303093,7127893:0,0,0 -) -g1,8812:6630773,7127893 -) -g1,8814:7579210,7127893 -g1,8814:8843793,7127893 -h1,8814:11372958,7127893:0,0,0 -k1,8814:32583030,7127893:21210072 -g1,8814:32583030,7127893 -) -] -) -g1,8815:32583029,7203914 -g1,8815:6630773,7203914 -g1,8815:6630773,7203914 -g1,8815:32583029,7203914 -g1,8815:32583029,7203914 -) -h1,8815:6630773,7400522:0,0,0 -(1,8819:6630773,8589359:25952256,505283,126483 -h1,8818:6630773,8589359:983040,0,0 -g1,8818:9009729,8589359 -g1,8818:12942544,8589359 -g1,8818:14246055,8589359 -g1,8818:15193050,8589359 -g1,8818:16678095,8589359 -g1,8818:18390550,8589359 -g1,8818:19983730,8589359 -g1,8818:23397500,8589359 -k1,8819:32583029,8589359:5934943 -g1,8819:32583029,8589359 -) -v1,8821:6630773,9602887:0,393216,0 -(1,8828:6630773,10552704:25952256,1343033,196608 -g1,8828:6630773,10552704 -g1,8828:6630773,10552704 -g1,8828:6434165,10552704 -(1,8828:6434165,10552704:0,1343033,196608 -r1,8888:32779637,10552704:26345472,1539641,196608 -k1,8828:6434165,10552704:-26345472 -) -(1,8828:6434165,10552704:26345472,1343033,196608 -[1,8828:6630773,10552704:25952256,1146425,0 -(1,8823:6630773,9810505:25952256,404226,101187 -(1,8822:6630773,9810505:0,0,0 -g1,8822:6630773,9810505 -g1,8822:6630773,9810505 -g1,8822:6303093,9810505 -(1,8822:6303093,9810505:0,0,0 -) -g1,8822:6630773,9810505 -) -g1,8823:8211502,9810505 -g1,8823:9159940,9810505 -g1,8823:11372961,9810505 -g1,8823:12005253,9810505 -g1,8823:12953690,9810505 -g1,8823:13902128,9810505 -g1,8823:16115149,9810505 -g1,8823:17063587,9810505 -g1,8823:18960462,9810505 -g1,8823:19592754,9810505 -h1,8823:20225045,9810505:0,0,0 -k1,8823:32583029,9810505:12357984 -g1,8823:32583029,9810505 -) -(1,8827:6630773,10476683:25952256,404226,76021 -(1,8825:6630773,10476683:0,0,0 -g1,8825:6630773,10476683 -g1,8825:6630773,10476683 -g1,8825:6303093,10476683 -(1,8825:6303093,10476683:0,0,0 -) -g1,8825:6630773,10476683 -) -g1,8827:7579210,10476683 -g1,8827:8843793,10476683 -h1,8827:10740667,10476683:0,0,0 -k1,8827:32583029,10476683:21842362 -g1,8827:32583029,10476683 -) -] -) -g1,8828:32583029,10552704 -g1,8828:6630773,10552704 -g1,8828:6630773,10552704 -g1,8828:32583029,10552704 -g1,8828:32583029,10552704 -) -h1,8828:6630773,10749312:0,0,0 -v1,8832:6630773,12285498:0,393216,0 -(1,8857:6630773,27169573:25952256,15277291,0 -g1,8857:6630773,27169573 -g1,8857:6303093,27169573 -r1,8888:6401397,27169573:98304,15277291,0 -g1,8857:6600626,27169573 -g1,8857:6797234,27169573 -[1,8857:6797234,27169573:25785795,15277291,0 -(1,8833:6797234,12647571:25785795,755289,196608 -(1,8832:6797234,12647571:0,755289,196608 -r1,8888:8134168,12647571:1336934,951897,196608 -k1,8832:6797234,12647571:-1336934 -) -(1,8832:6797234,12647571:1336934,755289,196608 -) -k1,8832:8398641,12647571:264473 -k1,8832:8726321,12647571:327680 -k1,8832:10423410,12647571:264472 -k1,8832:11102660,12647571:264407 -k1,8832:14392930,12647571:264473 -k1,8832:15803627,12647571:264472 -(1,8832:15803627,12647571:0,452978,115847 -r1,8888:18623876,12647571:2820249,568825,115847 -k1,8832:15803627,12647571:-2820249 -) -(1,8832:15803627,12647571:2820249,452978,115847 -k1,8832:15803627,12647571:3277 -h1,8832:18620599,12647571:0,411205,112570 -) -k1,8832:18888349,12647571:264473 -k1,8832:20628036,12647571:264472 -k1,8832:21248369,12647571:264473 -k1,8832:24496695,12647571:264472 -k1,8832:26045674,12647571:264473 -k1,8832:26841643,12647571:264472 -k1,8832:29397910,12647571:264473 -k1,8832:30610033,12647571:264472 -k1,8832:31966991,12647571:264473 -k1,8832:32583029,12647571:0 -) -(1,8833:6797234,13489059:25785795,513147,134348 -k1,8832:8805055,13489059:287501 -k1,8832:9854085,13489059:287502 -k1,8832:13147722,13489059:287501 -k1,8832:15862677,13489059:287501 -k1,8832:17169264,13489059:287502 -k1,8832:19267525,13489059:287501 -k1,8832:21235369,13489059:287501 -k1,8832:22209032,13489059:287501 -k1,8832:25568862,13489059:287502 -k1,8832:26507791,13489059:287501 -k1,8832:27583690,13489059:287501 -k1,8832:29177325,13489059:287502 -k1,8832:31593435,13489059:287501 -k1,8833:32583029,13489059:0 -) -(1,8833:6797234,14330547:25785795,513147,134348 -k1,8832:9748120,14330547:273085 -k1,8832:11710723,14330547:273085 -k1,8832:14016079,14330547:273085 -k1,8832:15435389,14330547:273085 -(1,8832:15435389,14330547:0,452978,122846 -r1,8888:18255638,14330547:2820249,575824,122846 -k1,8832:15435389,14330547:-2820249 -) -(1,8832:15435389,14330547:2820249,452978,122846 -k1,8832:15435389,14330547:3277 -h1,8832:18252361,14330547:0,411205,112570 -) -k1,8832:18528723,14330547:273085 -k1,8832:19617077,14330547:273086 -k1,8832:21130103,14330547:273085 -k1,8832:22445210,14330547:273085 -k1,8832:25553382,14330547:273085 -k1,8832:27524505,14330547:273085 -k1,8832:29887533,14330547:273085 -k1,8833:32583029,14330547:0 -) -(1,8833:6797234,15172035:25785795,505283,134348 -(1,8832:6797234,15172035:0,452978,122846 -r1,8888:9617483,15172035:2820249,575824,122846 -k1,8832:6797234,15172035:-2820249 -) -(1,8832:6797234,15172035:2820249,452978,122846 -k1,8832:6797234,15172035:3277 -h1,8832:9614206,15172035:0,411205,112570 -) -k1,8832:9872261,15172035:254778 -k1,8832:10778467,15172035:254778 -k1,8832:12423919,15172035:254778 -k1,8832:13034557,15172035:254778 -k1,8832:14969678,15172035:254778 -k1,8832:16959849,15172035:254778 -k1,8832:17570487,15172035:254778 -k1,8832:19563279,15172035:254777 -k1,8832:22602026,15172035:254778 -k1,8832:23542966,15172035:254778 -k1,8832:24153604,15172035:254778 -k1,8832:27383061,15172035:254778 -k1,8832:29503649,15172035:254778 -k1,8832:30626779,15172035:254778 -k1,8832:32583029,15172035:0 -) -(1,8833:6797234,16013523:25785795,513147,134348 -k1,8832:8116983,16013523:173524 -k1,8832:8941935,16013523:173524 -k1,8832:10552664,16013523:173524 -k1,8832:11745273,16013523:173524 -k1,8832:13729557,16013523:173524 -k1,8832:15583424,16013523:173524 -k1,8832:16443110,16013523:173524 -k1,8832:19688961,16013523:173523 -k1,8832:20513913,16013523:173524 -k1,8832:23968169,16013523:173524 -(1,8832:23968169,16013523:0,452978,115847 -r1,8888:25733282,16013523:1765113,568825,115847 -k1,8832:23968169,16013523:-1765113 -) -(1,8832:23968169,16013523:1765113,452978,115847 -k1,8832:23968169,16013523:3277 -h1,8832:25730005,16013523:0,411205,112570 -) -k1,8832:25906806,16013523:173524 -k1,8832:27965801,16013523:173524 -k1,8832:28670822,16013523:173524 -k1,8832:29910617,16013523:173524 -k1,8832:31103226,16013523:173524 -k1,8832:32583029,16013523:0 -) -(1,8833:6797234,16855011:25785795,505283,126483 -g1,8832:7624298,16855011 -g1,8832:9317093,16855011 -g1,8832:11213704,16855011 -g1,8832:12281285,16855011 -g1,8832:13584796,16855011 -g1,8832:14876510,16855011 -(1,8832:14876510,16855011:0,414482,115847 -r1,8888:15234776,16855011:358266,530329,115847 -k1,8832:14876510,16855011:-358266 -) -(1,8832:14876510,16855011:358266,414482,115847 -k1,8832:14876510,16855011:3277 -h1,8832:15231499,16855011:0,411205,112570 -) -g1,8832:15434005,16855011 -g1,8832:16319396,16855011 -g1,8832:16874485,16855011 -g1,8832:20807300,16855011 -g1,8832:22197974,16855011 -g1,8832:23834408,16855011 -g1,8832:24491734,16855011 -g1,8832:25452491,16855011 -k1,8833:32583029,16855011:5218853 -g1,8833:32583029,16855011 -) -v1,8835:6797234,18045477:0,393216,0 -(1,8840:6797234,19026751:25785795,1374490,196608 -g1,8840:6797234,19026751 -g1,8840:6797234,19026751 -g1,8840:6600626,19026751 -(1,8840:6600626,19026751:0,1374490,196608 -r1,8888:32779637,19026751:26179011,1571098,196608 -k1,8840:6600625,19026751:-26179012 -) -(1,8840:6600626,19026751:26179011,1374490,196608 -[1,8840:6797234,19026751:25785795,1177882,0 -(1,8837:6797234,18253095:25785795,404226,107478 -(1,8836:6797234,18253095:0,0,0 -g1,8836:6797234,18253095 -g1,8836:6797234,18253095 -g1,8836:6469554,18253095 -(1,8836:6469554,18253095:0,0,0 -) -g1,8836:6797234,18253095 -) -g1,8837:9642545,18253095 -g1,8837:10590983,18253095 -h1,8837:13752440,18253095:0,0,0 -k1,8837:32583028,18253095:18830588 -g1,8837:32583028,18253095 -) -(1,8838:6797234,18919273:25785795,404226,107478 -h1,8838:6797234,18919273:0,0,0 -g1,8838:8377963,18919273 -g1,8838:9326401,18919273 -g1,8838:11539421,18919273 -g1,8838:12487859,18919273 -g1,8838:14384733,18919273 -g1,8838:15333171,18919273 -g1,8838:18178483,18919273 -g1,8838:18810775,18919273 -g1,8838:21972232,18919273 -g1,8838:23869106,18919273 -g1,8838:24501398,18919273 -h1,8838:25133689,18919273:0,0,0 -k1,8838:32583029,18919273:7449340 -g1,8838:32583029,18919273 -) -] -) -g1,8840:32583029,19026751 -g1,8840:6797234,19026751 -g1,8840:6797234,19026751 -g1,8840:32583029,19026751 -g1,8840:32583029,19026751 -) -h1,8840:6797234,19223359:0,0,0 -(1,8844:6797234,20589135:25785795,513147,126483 -h1,8843:6797234,20589135:983040,0,0 -k1,8843:12227821,20589135:189017 -k1,8843:13285189,20589135:189016 -k1,8843:14578488,20589135:189017 -k1,8843:16728341,20589135:189016 -k1,8843:17273218,20589135:189017 -k1,8843:20104646,20589135:189016 -k1,8843:23162829,20589135:189017 -k1,8843:24745797,20589135:189017 -k1,8843:25953898,20589135:189016 -k1,8843:28498934,20589135:189017 -k1,8843:30427276,20589135:189016 -k1,8843:31563944,20589135:189017 -k1,8843:32583029,20589135:0 -) -(1,8844:6797234,21430623:25785795,513147,126483 -k1,8843:9152419,21430623:226576 -k1,8843:13163698,21430623:226575 -k1,8843:14771118,21430623:226576 -k1,8843:17982204,21430623:226576 -k1,8843:19313061,21430623:226575 -k1,8843:20287403,21430623:226576 -k1,8843:24079137,21430623:226575 -k1,8843:26003751,21430623:226576 -k1,8843:27249412,21430623:226576 -k1,8843:29129460,21430623:226575 -k1,8843:32051532,21430623:226576 -k1,8843:32583029,21430623:0 -) -(1,8844:6797234,22272111:25785795,505283,126483 -g1,8843:8864239,22272111 -g1,8843:12414324,22272111 -g1,8843:14623542,22272111 -g1,8843:15178631,22272111 -k1,8844:32583029,22272111:15399652 -g1,8844:32583029,22272111 -) -v1,8846:6797234,23462577:0,393216,0 -(1,8854:6797234,26448677:25785795,3379316,196608 -g1,8854:6797234,26448677 -g1,8854:6797234,26448677 -g1,8854:6600626,26448677 -(1,8854:6600626,26448677:0,3379316,196608 -r1,8888:32779637,26448677:26179011,3575924,196608 -k1,8854:6600625,26448677:-26179012 -) -(1,8854:6600626,26448677:26179011,3379316,196608 -[1,8854:6797234,26448677:25785795,3182708,0 -(1,8848:6797234,23676487:25785795,410518,107478 -(1,8847:6797234,23676487:0,0,0 -g1,8847:6797234,23676487 -g1,8847:6797234,23676487 -g1,8847:6469554,23676487 -(1,8847:6469554,23676487:0,0,0 -) -g1,8847:6797234,23676487 -) -g1,8848:10907128,23676487 -g1,8848:11855566,23676487 -g1,8848:16913897,23676487 -g1,8848:17862335,23676487 -g1,8848:19443064,23676487 -h1,8848:19759210,23676487:0,0,0 -k1,8848:32583029,23676487:12823819 -g1,8848:32583029,23676487 -) -(1,8849:6797234,24342665:25785795,404226,107478 -h1,8849:6797234,24342665:0,0,0 -g1,8849:7113380,24342665 -g1,8849:7429526,24342665 -g1,8849:10274838,24342665 -g1,8849:10907130,24342665 -g1,8849:11855568,24342665 -g1,8849:13752442,24342665 -g1,8849:14384734,24342665 -g1,8849:16597754,24342665 -h1,8849:17862337,24342665:0,0,0 -k1,8849:32583029,24342665:14720692 -g1,8849:32583029,24342665 -) -(1,8850:6797234,25008843:25785795,404226,76021 -h1,8850:6797234,25008843:0,0,0 -h1,8850:7113380,25008843:0,0,0 -k1,8850:32583028,25008843:25469648 -g1,8850:32583028,25008843 -) -(1,8851:6797234,25675021:25785795,404226,107478 -h1,8851:6797234,25675021:0,0,0 -g1,8851:9642545,25675021 -g1,8851:10590983,25675021 -h1,8851:13752440,25675021:0,0,0 -k1,8851:32583028,25675021:18830588 -g1,8851:32583028,25675021 -) -(1,8852:6797234,26341199:25785795,404226,107478 -h1,8852:6797234,26341199:0,0,0 -g1,8852:8377963,26341199 -g1,8852:9326401,26341199 -g1,8852:11539421,26341199 -g1,8852:12487859,26341199 -g1,8852:14384733,26341199 -g1,8852:15333171,26341199 -k1,8852:15333171,26341199:0 -h1,8852:22288376,26341199:0,0,0 -k1,8852:32583029,26341199:10294653 -g1,8852:32583029,26341199 -) -] -) -g1,8854:32583029,26448677 -g1,8854:6797234,26448677 -g1,8854:6797234,26448677 -g1,8854:32583029,26448677 -g1,8854:32583029,26448677 -) -h1,8854:6797234,26645285:0,0,0 -] -g1,8857:32583029,27169573 -) -h1,8857:6630773,27169573:0,0,0 -(1,8860:6630773,28358410:25952256,505283,134348 -h1,8859:6630773,28358410:983040,0,0 -k1,8859:8414444,28358410:172796 -k1,8859:10920323,28358410:172797 -k1,8859:14131368,28358410:172796 -k1,8859:15172516,28358410:172796 -k1,8859:16437798,28358410:172797 -k1,8859:19943755,28358410:172796 -k1,8859:22958192,28358410:172796 -k1,8859:23782417,28358410:172797 -k1,8859:25572642,28358410:172796 -k1,8859:27756083,28358410:172796 -k1,8859:29213386,28358410:172797 -k1,8859:30377742,28358410:172796 -k1,8859:32583029,28358410:0 -) -(1,8860:6630773,29199898:25952256,505283,134348 -k1,8859:7590825,29199898:273890 -k1,8859:11267344,29199898:273890 -k1,8859:12916835,29199898:273890 -k1,8859:14854684,29199898:273890 -k1,8859:15996926,29199898:273890 -k1,8859:17375098,29199898:273890 -k1,8859:19369308,29199898:273890 -k1,8859:20662283,29199898:273890 -k1,8859:24452835,29199898:273890 -k1,8859:27085366,29199898:273890 -k1,8859:28378341,29199898:273890 -k1,8859:30685813,29199898:273890 -k1,8859:32227169,29199898:273890 -k1,8859:32583029,29199898:0 -) -(1,8860:6630773,30041386:25952256,513147,126483 -k1,8859:10230403,30041386:266469 -k1,8859:13008213,30041386:266470 -k1,8859:15714587,30041386:266469 -k1,8859:18308240,30041386:266470 -k1,8859:19234001,30041386:266469 -k1,8859:22005256,30041386:266469 -k1,8859:25287037,30041386:266470 -k1,8859:26212798,30041386:266469 -k1,8859:28171408,30041386:266470 -k1,8859:30415098,30041386:266469 -k1,8859:32583029,30041386:0 -) -(1,8860:6630773,30882874:25952256,513147,7863 -k1,8860:32583029,30882874:23793500 -g1,8860:32583029,30882874 -) -(1,8862:6630773,31724362:25952256,513147,134348 -h1,8861:6630773,31724362:983040,0,0 -k1,8861:10650730,31724362:239185 -k1,8861:11549207,31724362:239185 -k1,8861:14997035,31724362:239185 -k1,8861:18077861,31724362:239185 -k1,8861:18968474,31724362:239185 -k1,8861:19563519,31724362:239185 -k1,8861:21192067,31724362:239185 -k1,8861:23307548,31724362:239185 -k1,8861:25282126,31724362:239185 -(1,8861:25282126,31724362:0,452978,115847 -r1,8888:28102375,31724362:2820249,568825,115847 -k1,8861:25282126,31724362:-2820249 -) -(1,8861:25282126,31724362:2820249,452978,115847 -k1,8861:25282126,31724362:3277 -h1,8861:28099098,31724362:0,411205,112570 -) -k1,8861:28341560,31724362:239185 -k1,8861:29772190,31724362:239185 -k1,8861:32583029,31724362:0 -) -(1,8862:6630773,32565850:25952256,513147,126483 -k1,8861:8389691,32565850:224720 -k1,8861:10008362,32565850:224720 -(1,8861:10008362,32565850:0,452978,115847 -r1,8888:12828611,32565850:2820249,568825,115847 -k1,8861:10008362,32565850:-2820249 -) -(1,8861:10008362,32565850:2820249,452978,115847 -k1,8861:10008362,32565850:3277 -h1,8861:12825334,32565850:0,411205,112570 -) -k1,8861:13053331,32565850:224720 -k1,8861:14269611,32565850:224720 -k1,8861:17626952,32565850:224720 -k1,8861:18467710,32565850:224720 -k1,8861:19790158,32565850:224720 -k1,8861:21321011,32565850:224720 -k1,8861:23670408,32565850:224720 -k1,8861:26730215,32565850:224720 -k1,8861:27996957,32565850:224720 -k1,8861:30397472,32565850:224720 -k1,8861:31490544,32565850:224720 -k1,8861:32583029,32565850:0 -) -(1,8862:6630773,33407338:25952256,513147,134348 -k1,8861:7874512,33407338:224654 -(1,8861:7874512,33407338:0,414482,115847 -r1,8888:8232778,33407338:358266,530329,115847 -k1,8861:7874512,33407338:-358266 -) -(1,8861:7874512,33407338:358266,414482,115847 -k1,8861:7874512,33407338:3277 -h1,8861:8229501,33407338:0,411205,112570 -) -k1,8861:8457431,33407338:224653 -k1,8861:12415671,33407338:224654 -k1,8861:13291753,33407338:224654 -k1,8861:16048062,33407338:224653 -k1,8861:17291801,33407338:224654 -k1,8861:19196798,33407338:224654 -k1,8861:22200179,33407338:224654 -k1,8861:23186360,33407338:224653 -k1,8861:24430099,33407338:224654 -k1,8861:27803103,33407338:224654 -k1,8861:30723252,33407338:224653 -k1,8861:31563944,33407338:224654 -k1,8861:32583029,33407338:0 -) -(1,8862:6630773,34248826:25952256,473825,126483 -k1,8862:32583030,34248826:24388568 -g1,8862:32583030,34248826 -) -v1,8864:6630773,35262354:0,393216,0 -(1,8882:6630773,43479836:25952256,8610698,196608 -g1,8882:6630773,43479836 -g1,8882:6630773,43479836 -g1,8882:6434165,43479836 -(1,8882:6434165,43479836:0,8610698,196608 -r1,8888:32779637,43479836:26345472,8807306,196608 -k1,8882:6434165,43479836:-26345472 -) -(1,8882:6434165,43479836:26345472,8610698,196608 -[1,8882:6630773,43479836:25952256,8414090,0 -(1,8866:6630773,35476264:25952256,410518,101187 -(1,8865:6630773,35476264:0,0,0 -g1,8865:6630773,35476264 -g1,8865:6630773,35476264 -g1,8865:6303093,35476264 -(1,8865:6303093,35476264:0,0,0 -) -g1,8865:6630773,35476264 -) -k1,8866:6630773,35476264:0 -g1,8866:10740668,35476264 -g1,8866:11372960,35476264 -g1,8866:13269835,35476264 -g1,8866:13902127,35476264 -g1,8866:14534419,35476264 -g1,8866:18012021,35476264 -k1,8866:18012021,35476264:0 -h1,8866:18644313,35476264:0,0,0 -k1,8866:32583029,35476264:13938716 -g1,8866:32583029,35476264 -) -(1,8867:6630773,36142442:25952256,404226,82312 -h1,8867:6630773,36142442:0,0,0 -g1,8867:6946919,36142442 -g1,8867:7263065,36142442 -g1,8867:11056814,36142442 -g1,8867:11689106,36142442 -k1,8867:11689106,36142442:0 -h1,8867:12321398,36142442:0,0,0 -k1,8867:32583030,36142442:20261632 -g1,8867:32583030,36142442 -) -(1,8868:6630773,36808620:25952256,404226,76021 -h1,8868:6630773,36808620:0,0,0 -g1,8868:6946919,36808620 -g1,8868:7263065,36808620 -g1,8868:7579211,36808620 -g1,8868:7895357,36808620 -g1,8868:8211503,36808620 -g1,8868:8527649,36808620 -g1,8868:8843795,36808620 -g1,8868:9159941,36808620 -g1,8868:9476087,36808620 -h1,8868:9792233,36808620:0,0,0 -k1,8868:32583029,36808620:22790796 -g1,8868:32583029,36808620 -) -(1,8869:6630773,37474798:25952256,379060,0 -h1,8869:6630773,37474798:0,0,0 -g1,8869:6946919,37474798 -g1,8869:7263065,37474798 -g1,8869:7579211,37474798 -g1,8869:7895357,37474798 -g1,8869:8211503,37474798 -g1,8869:8527649,37474798 -g1,8869:8843795,37474798 -g1,8869:9159941,37474798 -g1,8869:9476087,37474798 -g1,8869:9792233,37474798 -g1,8869:10108379,37474798 -g1,8869:11056816,37474798 -g1,8869:12005254,37474798 -h1,8869:12953692,37474798:0,0,0 -k1,8869:32583028,37474798:19629336 -g1,8869:32583028,37474798 -) -(1,8870:6630773,38140976:25952256,404226,107478 -h1,8870:6630773,38140976:0,0,0 -g1,8870:6946919,38140976 -g1,8870:7263065,38140976 -g1,8870:7579211,38140976 -g1,8870:7895357,38140976 -g1,8870:8211503,38140976 -g1,8870:8527649,38140976 -g1,8870:8843795,38140976 -g1,8870:9159941,38140976 -g1,8870:9476087,38140976 -g1,8870:9792233,38140976 -g1,8870:10108379,38140976 -g1,8870:12953690,38140976 -g1,8870:13902128,38140976 -g1,8870:15166712,38140976 -g1,8870:15799004,38140976 -h1,8870:17063587,38140976:0,0,0 -k1,8870:32583029,38140976:15519442 -g1,8870:32583029,38140976 -) -(1,8871:6630773,38807154:25952256,404226,76021 -h1,8871:6630773,38807154:0,0,0 -g1,8871:6946919,38807154 -g1,8871:7263065,38807154 -g1,8871:7579211,38807154 -g1,8871:7895357,38807154 -g1,8871:8211503,38807154 -g1,8871:8527649,38807154 -g1,8871:8843795,38807154 -g1,8871:9159941,38807154 -g1,8871:9476087,38807154 -g1,8871:10424524,38807154 -k1,8871:10424524,38807154:0 -h1,8871:11056816,38807154:0,0,0 -k1,8871:32583028,38807154:21526212 -g1,8871:32583028,38807154 -) -(1,8872:6630773,39473332:25952256,404226,107478 -h1,8872:6630773,39473332:0,0,0 -g1,8872:6946919,39473332 -g1,8872:7263065,39473332 -g1,8872:10108377,39473332 -g1,8872:10740669,39473332 -g1,8872:11689107,39473332 -h1,8872:14534418,39473332:0,0,0 -k1,8872:32583030,39473332:18048612 -g1,8872:32583030,39473332 -) -(1,8881:6630773,40139510:25952256,404226,107478 -(1,8874:6630773,40139510:0,0,0 -g1,8874:6630773,40139510 -g1,8874:6630773,40139510 -g1,8874:6303093,40139510 -(1,8874:6303093,40139510:0,0,0 -) -g1,8874:6630773,40139510 -) -g1,8881:7579210,40139510 -g1,8881:7895356,40139510 -g1,8881:8211502,40139510 -g1,8881:8527648,40139510 -g1,8881:8843794,40139510 -g1,8881:9476086,40139510 -g1,8881:9792232,40139510 -g1,8881:10108378,40139510 -g1,8881:10424524,40139510 -g1,8881:10740670,40139510 -g1,8881:11056816,40139510 -g1,8881:11372962,40139510 -g1,8881:11689108,40139510 -g1,8881:12005254,40139510 -g1,8881:12321400,40139510 -g1,8881:12953692,40139510 -g1,8881:15799003,40139510 -g1,8881:16115149,40139510 -g1,8881:16431295,40139510 -g1,8881:16747441,40139510 -h1,8881:17379732,40139510:0,0,0 -k1,8881:32583029,40139510:15203297 -g1,8881:32583029,40139510 -) -(1,8881:6630773,40805688:25952256,388497,9436 -h1,8881:6630773,40805688:0,0,0 -g1,8881:7579210,40805688 -g1,8881:8211502,40805688 -g1,8881:8527648,40805688 -g1,8881:8843794,40805688 -g1,8881:9476086,40805688 -g1,8881:9792232,40805688 -g1,8881:12953689,40805688 -g1,8881:13269835,40805688 -g1,8881:13585981,40805688 -g1,8881:13902127,40805688 -g1,8881:14218273,40805688 -g1,8881:15799002,40805688 -g1,8881:16115148,40805688 -h1,8881:17379731,40805688:0,0,0 -k1,8881:32583029,40805688:15203298 -g1,8881:32583029,40805688 -) -(1,8881:6630773,41471866:25952256,388497,9436 -h1,8881:6630773,41471866:0,0,0 -g1,8881:7579210,41471866 -g1,8881:8211502,41471866 -g1,8881:8527648,41471866 -g1,8881:8843794,41471866 -g1,8881:9476086,41471866 -g1,8881:9792232,41471866 -g1,8881:12953689,41471866 -g1,8881:13269835,41471866 -g1,8881:13585981,41471866 -g1,8881:13902127,41471866 -g1,8881:14218273,41471866 -g1,8881:15799002,41471866 -g1,8881:16115148,41471866 -h1,8881:17379731,41471866:0,0,0 -k1,8881:32583029,41471866:15203298 -g1,8881:32583029,41471866 -) -(1,8881:6630773,42138044:25952256,388497,9436 -h1,8881:6630773,42138044:0,0,0 -g1,8881:7579210,42138044 -g1,8881:8211502,42138044 -g1,8881:8527648,42138044 -g1,8881:8843794,42138044 -g1,8881:9476086,42138044 -g1,8881:9792232,42138044 -g1,8881:12953689,42138044 -g1,8881:13269835,42138044 -g1,8881:13585981,42138044 -g1,8881:13902127,42138044 -g1,8881:14218273,42138044 -g1,8881:15799002,42138044 -g1,8881:16115148,42138044 -h1,8881:17379731,42138044:0,0,0 -k1,8881:32583029,42138044:15203298 -g1,8881:32583029,42138044 -) -(1,8881:6630773,42804222:25952256,388497,9436 -h1,8881:6630773,42804222:0,0,0 -g1,8881:7579210,42804222 -g1,8881:8211502,42804222 -g1,8881:8527648,42804222 -g1,8881:8843794,42804222 -g1,8881:9476086,42804222 -g1,8881:12953689,42804222 -g1,8881:13269835,42804222 -g1,8881:13585981,42804222 -g1,8881:13902127,42804222 -g1,8881:14218273,42804222 -g1,8881:15799002,42804222 -g1,8881:16115148,42804222 -h1,8881:17379731,42804222:0,0,0 -k1,8881:32583029,42804222:15203298 -g1,8881:32583029,42804222 -) -(1,8881:6630773,43470400:25952256,388497,9436 -h1,8881:6630773,43470400:0,0,0 -g1,8881:7579210,43470400 -g1,8881:8527647,43470400 -g1,8881:9476084,43470400 -g1,8881:12953687,43470400 -g1,8881:13269833,43470400 -g1,8881:13585979,43470400 -g1,8881:13902125,43470400 -g1,8881:14218271,43470400 -g1,8881:15799000,43470400 -h1,8881:17379728,43470400:0,0,0 -k1,8881:32583029,43470400:15203301 -g1,8881:32583029,43470400 -) -] -) -g1,8882:32583029,43479836 -g1,8882:6630773,43479836 -g1,8882:6630773,43479836 -g1,8882:32583029,43479836 -g1,8882:32583029,43479836 -) -h1,8882:6630773,43676444:0,0,0 -(1,8886:6630773,44865281:25952256,513147,11795 -h1,8885:6630773,44865281:983040,0,0 -k1,8885:9961010,44865281:242181 -k1,8885:11307472,44865281:242180 -k1,8885:12297419,44865281:242181 -k1,8885:13825416,44865281:242181 -k1,8885:15580822,44865281:242180 -k1,8885:16474431,44865281:242181 -k1,8885:18537202,44865281:242181 -k1,8885:21621024,44865281:242181 -k1,8885:22546089,44865281:242180 -k1,8885:25501461,44865281:242181 -k1,8885:27311263,44865281:242181 -k1,8885:28942806,44865281:242180 -k1,8885:31391584,44865281:242181 -k1,8885:32583029,44865281:0 -) -(1,8886:6630773,45706769:25952256,473825,7863 -k1,8886:32583030,45706769:23045080 -g1,8886:32583030,45706769 -) -] -(1,8888:32583029,45706769:0,0,0 -g1,8888:32583029,45706769 -) -) -] -(1,8888:6630773,47279633:25952256,0,0 -h1,8888:6630773,47279633:25952256,0,0 -) -] -(1,8888:4262630,4025873:0,0,0 -[1,8888:-473656,4025873:0,0,0 -(1,8888:-473656,-710413:0,0,0 -(1,8888:-473656,-710413:0,0,0 -g1,8888:-473656,-710413 -) -g1,8888:-473656,-710413 -) -] -) -] -!27420 -}149 -Input:1192:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!106 -{150 -[1,8973:4262630,47279633:28320399,43253760,0 -(1,8973:4262630,4025873:0,0,0 -[1,8973:-473656,4025873:0,0,0 -(1,8973:-473656,-710413:0,0,0 -(1,8973:-473656,-644877:0,0,0 -k1,8973:-473656,-644877:-65536 +[1,8282:6630773,45706769:25952256,40108032,0 +v1,8170:6630773,6254097:0,393216,0 +(1,8170:6630773,8095614:25952256,2234733,196608 +g1,8170:6630773,8095614 +g1,8170:6630773,8095614 +g1,8170:6434165,8095614 +(1,8170:6434165,8095614:0,2234733,196608 +r1,8282:32779637,8095614:26345472,2431341,196608 +k1,8170:6434165,8095614:-26345472 +) +(1,8170:6434165,8095614:26345472,2234733,196608 +[1,8170:6630773,8095614:25952256,2038125,0 +(1,8163:6630773,6455503:25952256,398014,8257 +(1,8161:6630773,6455503:0,0,0 +g1,8161:6630773,6455503 +g1,8161:6630773,6455503 +g1,8161:6303093,6455503 +(1,8161:6303093,6455503:0,0,0 +) +g1,8161:6630773,6455503 +) +g1,8163:7626635,6455503 +h1,8163:8954451,6455503:0,0,0 +k1,8163:32583029,6455503:23628578 +g1,8163:32583029,6455503 +) +(1,8165:6630773,7271430:25952256,431045,106246 +(1,8164:6630773,7271430:0,0,0 +g1,8164:6630773,7271430 +g1,8164:6630773,7271430 +g1,8164:6303093,7271430 +(1,8164:6303093,7271430:0,0,0 +) +g1,8164:6630773,7271430 +) +k1,8165:6630773,7271430:0 +g1,8165:11278129,7271430 +g1,8165:11942037,7271430 +g1,8165:13601807,7271430 +g1,8165:14597669,7271430 +g1,8165:17585254,7271430 +k1,8165:17585254,7271430:1652 +h1,8165:18914722,7271430:0,0,0 +k1,8165:32583029,7271430:13668307 +g1,8165:32583029,7271430 +) +(1,8169:6630773,8087357:25952256,398014,8257 +(1,8167:6630773,8087357:0,0,0 +g1,8167:6630773,8087357 +g1,8167:6630773,8087357 +g1,8167:6303093,8087357 +(1,8167:6303093,8087357:0,0,0 +) +g1,8167:6630773,8087357 +) +g1,8169:7626635,8087357 +h1,8169:8954451,8087357:0,0,0 +k1,8169:32583029,8087357:23628578 +g1,8169:32583029,8087357 +) +] +) +g1,8170:32583029,8095614 +g1,8170:6630773,8095614 +g1,8170:6630773,8095614 +g1,8170:32583029,8095614 +g1,8170:32583029,8095614 +) +h1,8170:6630773,8292222:0,0,0 +(1,8174:6630773,9157302:25952256,513147,126483 +h1,8173:6630773,9157302:983040,0,0 +k1,8173:9073275,9157302:262775 +(1,8173:9073275,9157302:0,452978,115847 +r1,8282:11541812,9157302:2468537,568825,115847 +k1,8173:9073275,9157302:-2468537 +) +(1,8173:9073275,9157302:2468537,452978,115847 +k1,8173:9073275,9157302:3277 +h1,8173:11538535,9157302:0,411205,112570 +) +k1,8173:11804588,9157302:262776 +k1,8173:14846090,9157302:262775 +k1,8173:15776021,9157302:262775 +(1,8173:15776021,9157302:0,459977,115847 +r1,8282:17189422,9157302:1413401,575824,115847 +k1,8173:15776021,9157302:-1413401 +) +(1,8173:15776021,9157302:1413401,459977,115847 +k1,8173:15776021,9157302:3277 +h1,8173:17186145,9157302:0,411205,112570 +) +k1,8173:17452198,9157302:262776 +k1,8173:18922146,9157302:262775 +k1,8173:20119465,9157302:262776 +k1,8173:21143768,9157302:262775 +k1,8173:22425628,9157302:262775 +(1,8173:22425628,9157302:0,459977,115847 +r1,8282:26652724,9157302:4227096,575824,115847 +k1,8173:22425628,9157302:-4227096 +) +(1,8173:22425628,9157302:4227096,459977,115847 +k1,8173:22425628,9157302:3277 +h1,8173:26649447,9157302:0,411205,112570 +) +k1,8173:26915500,9157302:262776 +k1,8173:30884991,9157302:262775 +k1,8173:32583029,9157302:0 +) +(1,8174:6630773,10022382:25952256,513147,126483 +k1,8173:7345490,10022382:256620 +k1,8173:8809283,10022382:256620 +k1,8173:11416025,10022382:256621 +k1,8173:13701640,10022382:256620 +k1,8173:14586095,10022382:256620 +k1,8173:15861800,10022382:256620 +k1,8173:17502541,10022382:256621 +k1,8173:20594248,10022382:256620 +k1,8173:21466906,10022382:256620 +k1,8173:22742611,10022382:256620 +k1,8173:24305364,10022382:256620 +k1,8173:27748345,10022382:256621 +k1,8173:28873317,10022382:256620 +k1,8173:31563944,10022382:256620 +k1,8173:32583029,10022382:0 +) +(1,8174:6630773,10887462:25952256,513147,134348 +k1,8173:9061604,10887462:188844 +k1,8173:10441894,10887462:188845 +k1,8173:13636874,10887462:188844 +k1,8173:15407757,10887462:188844 +k1,8173:17409328,10887462:188845 +k1,8173:18226007,10887462:188844 +k1,8173:19433936,10887462:188844 +k1,8173:21864111,10887462:188844 +k1,8173:25412987,10887462:188845 +k1,8173:27014132,10887462:188844 +k1,8173:28770597,10887462:188844 +k1,8173:30494951,10887462:188845 +k1,8173:31335223,10887462:188844 +k1,8173:32583029,10887462:0 +) +(1,8174:6630773,11752542:25952256,505283,126483 +k1,8173:7660387,11752542:161262 +k1,8173:10255657,11752542:161263 +k1,8173:11436004,11752542:161262 +k1,8173:13839253,11752542:161262 +k1,8173:16393234,11752542:161262 +k1,8173:18193552,11752542:161263 +k1,8173:19006242,11752542:161262 +k1,8173:21059528,11752542:161262 +k1,8173:22587871,11752542:161262 +k1,8173:23940579,11752542:161263 +k1,8173:25492515,11752542:161262 +k1,8173:27292832,11752542:161262 +k1,8173:28936518,11752542:161262 +k1,8173:29749209,11752542:161263 +k1,8173:30929556,11752542:161262 +k1,8173:32583029,11752542:0 +) +(1,8174:6630773,12617622:25952256,505283,7863 +k1,8174:32583030,12617622:22999860 +g1,8174:32583030,12617622 +) +v1,8176:6630773,13302477:0,393216,0 +(1,8196:6630773,18381226:25952256,5471965,196608 +g1,8196:6630773,18381226 +g1,8196:6630773,18381226 +g1,8196:6434165,18381226 +(1,8196:6434165,18381226:0,5471965,196608 +r1,8282:32779637,18381226:26345472,5668573,196608 +k1,8196:6434165,18381226:-26345472 +) +(1,8196:6434165,18381226:26345472,5471965,196608 +[1,8196:6630773,18381226:25952256,5275357,0 +(1,8178:6630773,13536914:25952256,431045,79822 +(1,8177:6630773,13536914:0,0,0 +g1,8177:6630773,13536914 +g1,8177:6630773,13536914 +g1,8177:6303093,13536914 +(1,8177:6303093,13536914:0,0,0 +) +g1,8177:6630773,13536914 +) +k1,8178:6630773,13536914:0 +h1,8178:10282267,13536914:0,0,0 +k1,8178:32583029,13536914:22300762 +g1,8178:32583029,13536914 +) +(1,8182:6630773,14352841:25952256,424439,106246 +(1,8180:6630773,14352841:0,0,0 +g1,8180:6630773,14352841 +g1,8180:6630773,14352841 +g1,8180:6303093,14352841 +(1,8180:6303093,14352841:0,0,0 +) +g1,8180:6630773,14352841 +) +g1,8182:7626635,14352841 +g1,8182:8954451,14352841 +g1,8182:10282267,14352841 +g1,8182:11610083,14352841 +h1,8182:12605945,14352841:0,0,0 +k1,8182:32583029,14352841:19977084 +g1,8182:32583029,14352841 +) +(1,8184:6630773,15168768:25952256,431045,106246 +(1,8183:6630773,15168768:0,0,0 +g1,8183:6630773,15168768 +g1,8183:6630773,15168768 +g1,8183:6303093,15168768 +(1,8183:6303093,15168768:0,0,0 +) +g1,8183:6630773,15168768 +) +k1,8184:6630773,15168768:0 +g1,8184:10614221,15168768 +g1,8184:11610083,15168768 +k1,8184:11610083,15168768:0 +h1,8184:18249163,15168768:0,0,0 +k1,8184:32583029,15168768:14333866 +g1,8184:32583029,15168768 +) +(1,8185:6630773,15853623:25952256,431045,79822 +h1,8185:6630773,15853623:0,0,0 +k1,8185:6630773,15853623:0 +h1,8185:10282267,15853623:0,0,0 +k1,8185:32583029,15853623:22300762 +g1,8185:32583029,15853623 +) +(1,8189:6630773,16669550:25952256,424439,79822 +(1,8187:6630773,16669550:0,0,0 +g1,8187:6630773,16669550 +g1,8187:6630773,16669550 +g1,8187:6303093,16669550 +(1,8187:6303093,16669550:0,0,0 +) +g1,8187:6630773,16669550 +) +g1,8189:7626635,16669550 +g1,8189:8954451,16669550 +g1,8189:10282267,16669550 +g1,8189:11610083,16669550 +h1,8189:12605945,16669550:0,0,0 +k1,8189:32583029,16669550:19977084 +g1,8189:32583029,16669550 +) +(1,8191:6630773,17485477:25952256,431045,106246 +(1,8190:6630773,17485477:0,0,0 +g1,8190:6630773,17485477 +g1,8190:6630773,17485477 +g1,8190:6303093,17485477 +(1,8190:6303093,17485477:0,0,0 +) +g1,8190:6630773,17485477 +) +k1,8191:6630773,17485477:0 +g1,8191:10282267,17485477 +g1,8191:13269853,17485477 +g1,8191:13933761,17485477 +g1,8191:15593531,17485477 +g1,8191:16589393,17485477 +g1,8191:19576978,17485477 +k1,8191:19576978,17485477:1652 +h1,8191:20906446,17485477:0,0,0 +k1,8191:32583029,17485477:11676583 +g1,8191:32583029,17485477 +) +(1,8195:6630773,18301404:25952256,424439,79822 +(1,8193:6630773,18301404:0,0,0 +g1,8193:6630773,18301404 +g1,8193:6630773,18301404 +g1,8193:6303093,18301404 +(1,8193:6303093,18301404:0,0,0 +) +g1,8193:6630773,18301404 +) +g1,8195:7626635,18301404 +g1,8195:8954451,18301404 +g1,8195:10282267,18301404 +g1,8195:11610083,18301404 +h1,8195:12605945,18301404:0,0,0 +k1,8195:32583029,18301404:19977084 +g1,8195:32583029,18301404 +) +] +) +g1,8196:32583029,18381226 +g1,8196:6630773,18381226 +g1,8196:6630773,18381226 +g1,8196:32583029,18381226 +g1,8196:32583029,18381226 +) +h1,8196:6630773,18577834:0,0,0 +(1,8200:6630773,19442914:25952256,505283,134348 +h1,8199:6630773,19442914:983040,0,0 +k1,8199:8805127,19442914:237765 +k1,8199:10147173,19442914:237764 +k1,8199:11582281,19442914:237765 +k1,8199:12175905,19442914:237764 +k1,8199:13696865,19442914:237765 +k1,8199:16887026,19442914:237764 +k1,8199:19010917,19442914:237765 +k1,8199:20346409,19442914:237764 +k1,8199:21914555,19442914:237765 +k1,8199:24613851,19442914:237764 +k1,8199:25537778,19442914:237765 +k1,8199:27164250,19442914:237764 +k1,8199:28088177,19442914:237765 +k1,8199:29114339,19442914:237764 +k1,8199:31090119,19442914:237765 +k1,8199:32583029,19442914:0 +) +(1,8200:6630773,20307994:25952256,513147,134348 +g1,8199:7896273,20307994 +g1,8199:9735213,20307994 +g1,8199:11328393,20307994 +g1,8199:12812128,20307994 +g1,8199:13670649,20307994 +g1,8199:16360901,20307994 +k1,8200:32583029,20307994:12939430 +g1,8200:32583029,20307994 +) +v1,8202:6630773,20992849:0,393216,0 +(1,8220:6630773,29682864:25952256,9083231,196608 +g1,8220:6630773,29682864 +g1,8220:6630773,29682864 +g1,8220:6434165,29682864 +(1,8220:6434165,29682864:0,9083231,196608 +r1,8282:32779637,29682864:26345472,9279839,196608 +k1,8220:6434165,29682864:-26345472 +) +(1,8220:6434165,29682864:26345472,9083231,196608 +[1,8220:6630773,29682864:25952256,8886623,0 +(1,8204:6630773,21227286:25952256,431045,106246 +(1,8203:6630773,21227286:0,0,0 +g1,8203:6630773,21227286 +g1,8203:6630773,21227286 +g1,8203:6303093,21227286 +(1,8203:6303093,21227286:0,0,0 +) +g1,8203:6630773,21227286 +) +k1,8204:6630773,21227286:0 +g1,8204:10282267,21227286 +g1,8204:15593530,21227286 +g1,8204:16589392,21227286 +g1,8204:18581116,21227286 +g1,8204:19576978,21227286 +g1,8204:21900656,21227286 +g1,8204:22896518,21227286 +g1,8204:23892380,21227286 +h1,8204:27211919,21227286:0,0,0 +k1,8204:32583029,21227286:5371110 +g1,8204:32583029,21227286 +) +(1,8205:6630773,21912141:25952256,431045,79822 +h1,8205:6630773,21912141:0,0,0 +k1,8205:6630773,21912141:0 +h1,8205:11942036,21912141:0,0,0 +k1,8205:32583028,21912141:20640992 +g1,8205:32583028,21912141 +) +(1,8219:6630773,22728068:25952256,431045,33029 +(1,8207:6630773,22728068:0,0,0 +g1,8207:6630773,22728068 +g1,8207:6630773,22728068 +g1,8207:6303093,22728068 +(1,8207:6303093,22728068:0,0,0 +) +g1,8207:6630773,22728068 +) +g1,8219:7626635,22728068 +h1,8219:9618359,22728068:0,0,0 +k1,8219:32583029,22728068:22964670 +g1,8219:32583029,22728068 +) +(1,8219:6630773,23412923:25952256,424439,79822 +h1,8219:6630773,23412923:0,0,0 +g1,8219:7626635,23412923 +g1,8219:8954451,23412923 +g1,8219:10282267,23412923 +g1,8219:11610083,23412923 +h1,8219:12605945,23412923:0,0,0 +k1,8219:32583029,23412923:19977084 +g1,8219:32583029,23412923 +) +(1,8219:6630773,24097778:25952256,398014,0 +h1,8219:6630773,24097778:0,0,0 +h1,8219:7294681,24097778:0,0,0 +k1,8219:32583029,24097778:25288348 +g1,8219:32583029,24097778 +) +(1,8219:6630773,24782633:25952256,431045,33029 +h1,8219:6630773,24782633:0,0,0 +g1,8219:7626635,24782633 +h1,8219:9618359,24782633:0,0,0 +k1,8219:32583029,24782633:22964670 +g1,8219:32583029,24782633 +) +(1,8219:6630773,25467488:25952256,431045,79822 +h1,8219:6630773,25467488:0,0,0 +g1,8219:7626635,25467488 +g1,8219:8954451,25467488 +h1,8219:12937898,25467488:0,0,0 +k1,8219:32583030,25467488:19645132 +g1,8219:32583030,25467488 +) +(1,8219:6630773,26152343:25952256,398014,0 +h1,8219:6630773,26152343:0,0,0 +h1,8219:7294681,26152343:0,0,0 +k1,8219:32583029,26152343:25288348 +g1,8219:32583029,26152343 +) +(1,8219:6630773,26837198:25952256,431045,33029 +h1,8219:6630773,26837198:0,0,0 +g1,8219:7626635,26837198 +h1,8219:10946174,26837198:0,0,0 +k1,8219:32583030,26837198:21636856 +g1,8219:32583030,26837198 +) +(1,8219:6630773,27522053:25952256,424439,79822 +h1,8219:6630773,27522053:0,0,0 +g1,8219:7626635,27522053 +g1,8219:8954451,27522053 +g1,8219:9618359,27522053 +g1,8219:10282267,27522053 +g1,8219:10946175,27522053 +g1,8219:11610083,27522053 +g1,8219:12273991,27522053 +h1,8219:12605945,27522053:0,0,0 +k1,8219:32583029,27522053:19977084 +g1,8219:32583029,27522053 +) +(1,8219:6630773,28206908:25952256,398014,0 +h1,8219:6630773,28206908:0,0,0 +h1,8219:7294681,28206908:0,0,0 +k1,8219:32583029,28206908:25288348 +g1,8219:32583029,28206908 +) +(1,8219:6630773,28891763:25952256,431045,106246 +h1,8219:6630773,28891763:0,0,0 +g1,8219:7626635,28891763 +h1,8219:11942036,28891763:0,0,0 +k1,8219:32583028,28891763:20640992 +g1,8219:32583028,28891763 +) +(1,8219:6630773,29576618:25952256,424439,106246 +h1,8219:6630773,29576618:0,0,0 +g1,8219:7626635,29576618 +g1,8219:8954451,29576618 +g1,8219:10946175,29576618 +g1,8219:11942037,29576618 +g1,8219:14265715,29576618 +g1,8219:15261577,29576618 +g1,8219:16257439,29576618 +h1,8219:19576978,29576618:0,0,0 +k1,8219:32583029,29576618:13006051 +g1,8219:32583029,29576618 +) +] +) +g1,8220:32583029,29682864 +g1,8220:6630773,29682864 +g1,8220:6630773,29682864 +g1,8220:32583029,29682864 +g1,8220:32583029,29682864 +) +h1,8220:6630773,29879472:0,0,0 +v1,8224:6630773,30744552:0,393216,0 +(1,8282:6630773,45466937:25952256,15115601,0 +g1,8282:6630773,45466937 +g1,8282:6237557,45466937 +r1,8282:6368629,45466937:131072,15115601,0 +g1,8282:6567858,45466937 +g1,8282:6764466,45466937 +[1,8282:6764466,45466937:25818563,15115601,0 +(1,8225:6764466,31052850:25818563,701514,196608 +(1,8224:6764466,31052850:0,701514,196608 +r1,8282:8010564,31052850:1246098,898122,196608 +k1,8224:6764466,31052850:-1246098 +) +(1,8224:6764466,31052850:1246098,701514,196608 +) +k1,8224:8200367,31052850:189803 +k1,8224:8528047,31052850:327680 +k1,8224:9914536,31052850:189802 +k1,8224:13213367,31052850:189803 +k1,8224:14916395,31052850:189802 +k1,8224:18156899,31052850:189803 +k1,8224:19108230,31052850:189803 +k1,8224:19712866,31052850:189793 +k1,8224:21006950,31052850:189802 +k1,8224:21944519,31052850:189803 +k1,8224:24548668,31052850:189803 +k1,8224:27573557,31052850:189802 +k1,8224:28524888,31052850:189803 +k1,8224:30095534,31052850:189802 +k1,8224:31955194,31052850:189803 +k1,8224:32583029,31052850:0 +) +(1,8225:6764466,31917930:25818563,513147,126483 +k1,8224:8588288,31917930:222122 +k1,8224:10507792,31917930:222122 +k1,8224:11933155,31917930:222122 +k1,8224:12686773,31917930:222121 +k1,8224:16847609,31917930:222122 +k1,8224:17755893,31917930:222122 +k1,8224:18392835,31917930:222099 +k1,8224:21375333,31917930:222122 +k1,8224:23193912,31917930:222122 +k1,8224:24075326,31917930:222122 +k1,8224:27323244,31917930:222121 +k1,8224:28196794,31917930:222122 +k1,8224:30234919,31917930:222122 +k1,8224:31648486,31917930:222122 +k1,8224:32583029,31917930:0 +) +(1,8225:6764466,32783010:25818563,513147,115847 +k1,8224:7963476,32783010:179925 +k1,8224:10716345,32783010:179926 +k1,8224:14178968,32783010:179925 +k1,8224:15739738,32783010:179926 +k1,8224:16451160,32783010:179925 +k1,8224:17938529,32783010:179926 +k1,8224:19066105,32783010:179925 +k1,8224:20265116,32783010:179926 +k1,8224:23554069,32783010:179925 +(1,8224:23554069,32783010:0,452978,115847 +r1,8282:24615758,32783010:1061689,568825,115847 +k1,8224:23554069,32783010:-1061689 +) +(1,8224:23554069,32783010:1061689,452978,115847 +k1,8224:23554069,32783010:3277 +h1,8224:24612481,32783010:0,411205,112570 +) +k1,8224:24969354,32783010:179926 +(1,8224:24969354,32783010:0,414482,115847 +r1,8282:26734467,32783010:1765113,530329,115847 +k1,8224:24969354,32783010:-1765113 +) +(1,8224:24969354,32783010:1765113,414482,115847 +k1,8224:24969354,32783010:3277 +h1,8224:26731190,32783010:0,411205,112570 +) +k1,8224:26914392,32783010:179925 +k1,8224:28285763,32783010:179926 +(1,8224:28285763,32783010:0,452978,115847 +r1,8282:30402588,32783010:2116825,568825,115847 +k1,8224:28285763,32783010:-2116825 +) +(1,8224:28285763,32783010:2116825,452978,115847 +k1,8224:28285763,32783010:3277 +h1,8224:30399311,32783010:0,411205,112570 +) +k1,8224:30756183,32783010:179925 +k1,8224:31563944,32783010:179926 +k1,8224:32583029,32783010:0 +) +(1,8225:6764466,33648090:25818563,513147,126483 +g1,8224:9625112,33648090 +g1,8224:11692772,33648090 +g1,8224:12760353,33648090 +g1,8224:14371883,33648090 +g1,8224:15590197,33648090 +g1,8224:18898454,33648090 +g1,8224:20665304,33648090 +g1,8224:21220393,33648090 +k1,8225:32583029,33648090:9101644 +g1,8225:32583029,33648090 +) +v1,8227:6764466,34332945:0,393216,0 +(1,8240:6764466,39572261:25818563,5632532,196608 +g1,8240:6764466,39572261 +g1,8240:6764466,39572261 +g1,8240:6567858,39572261 +(1,8240:6567858,39572261:0,5632532,196608 +r1,8282:32779637,39572261:26211779,5829140,196608 +k1,8240:6567857,39572261:-26211780 +) +(1,8240:6567858,39572261:26211779,5632532,196608 +[1,8240:6764466,39572261:25818563,5435924,0 +(1,8229:6764466,34560776:25818563,424439,86428 +(1,8228:6764466,34560776:0,0,0 +g1,8228:6764466,34560776 +g1,8228:6764466,34560776 +g1,8228:6436786,34560776 +(1,8228:6436786,34560776:0,0,0 +) +g1,8228:6764466,34560776 +) +g1,8229:7428374,34560776 +g1,8229:8424236,34560776 +g1,8229:12739638,34560776 +g1,8229:14399408,34560776 +g1,8229:15063316,34560776 +h1,8229:15727224,34560776:0,0,0 +k1,8229:32583028,34560776:16855804 +g1,8229:32583028,34560776 +) +(1,8230:6764466,35245631:25818563,344616,0 +h1,8230:6764466,35245631:0,0,0 +h1,8230:7096420,35245631:0,0,0 +k1,8230:32583028,35245631:25486608 +g1,8230:32583028,35245631 +) +(1,8239:6764466,36061558:25818563,424439,86428 +(1,8232:6764466,36061558:0,0,0 +g1,8232:6764466,36061558 +g1,8232:6764466,36061558 +g1,8232:6436786,36061558 +(1,8232:6436786,36061558:0,0,0 +) +g1,8232:6764466,36061558 +) +g1,8239:7760328,36061558 +g1,8239:8092282,36061558 +g1,8239:8424236,36061558 +g1,8239:8756190,36061558 +g1,8239:9088144,36061558 +g1,8239:9420098,36061558 +g1,8239:11079868,36061558 +k1,8239:11079868,36061558:0 +h1,8239:12407684,36061558:0,0,0 +k1,8239:32583028,36061558:20175344 +g1,8239:32583028,36061558 +) +(1,8239:6764466,36746413:25818563,424439,86428 +h1,8239:6764466,36746413:0,0,0 +g1,8239:7760328,36746413 +g1,8239:9420098,36746413 +g1,8239:9752052,36746413 +g1,8239:10084006,36746413 +g1,8239:10415960,36746413 +g1,8239:11079868,36746413 +g1,8239:11411822,36746413 +g1,8239:11743776,36746413 +g1,8239:12075730,36746413 +h1,8239:12407684,36746413:0,0,0 +k1,8239:32583028,36746413:20175344 +g1,8239:32583028,36746413 +) +(1,8239:6764466,37431268:25818563,424439,86428 +h1,8239:6764466,37431268:0,0,0 +g1,8239:7760328,37431268 +g1,8239:9420098,37431268 +g1,8239:9752052,37431268 +g1,8239:10084006,37431268 +g1,8239:10415960,37431268 +g1,8239:11079868,37431268 +g1,8239:11411822,37431268 +g1,8239:11743776,37431268 +g1,8239:12075730,37431268 +h1,8239:12407684,37431268:0,0,0 +k1,8239:32583028,37431268:20175344 +g1,8239:32583028,37431268 +) +(1,8239:6764466,38116123:25818563,424439,86428 +h1,8239:6764466,38116123:0,0,0 +g1,8239:7760328,38116123 +g1,8239:9420098,38116123 +g1,8239:9752052,38116123 +g1,8239:10084006,38116123 +g1,8239:10415960,38116123 +g1,8239:11079868,38116123 +g1,8239:11411822,38116123 +g1,8239:11743776,38116123 +g1,8239:12075730,38116123 +h1,8239:12407684,38116123:0,0,0 +k1,8239:32583028,38116123:20175344 +g1,8239:32583028,38116123 +) +(1,8239:6764466,38800978:25818563,424439,86428 +h1,8239:6764466,38800978:0,0,0 +g1,8239:7760328,38800978 +g1,8239:9420098,38800978 +g1,8239:9752052,38800978 +g1,8239:10084006,38800978 +g1,8239:10415960,38800978 +g1,8239:11079868,38800978 +g1,8239:11411822,38800978 +g1,8239:11743776,38800978 +g1,8239:12075730,38800978 +h1,8239:12407684,38800978:0,0,0 +k1,8239:32583028,38800978:20175344 +g1,8239:32583028,38800978 +) +(1,8239:6764466,39485833:25818563,424439,86428 +h1,8239:6764466,39485833:0,0,0 +g1,8239:7760328,39485833 +g1,8239:9420098,39485833 +g1,8239:9752052,39485833 +g1,8239:10084006,39485833 +g1,8239:10415960,39485833 +g1,8239:11079868,39485833 +g1,8239:11411822,39485833 +g1,8239:11743776,39485833 +h1,8239:12407684,39485833:0,0,0 +k1,8239:32583028,39485833:20175344 +g1,8239:32583028,39485833 +) +] +) +g1,8240:32583029,39572261 +g1,8240:6764466,39572261 +g1,8240:6764466,39572261 +g1,8240:32583029,39572261 +g1,8240:32583029,39572261 +) +h1,8240:6764466,39768869:0,0,0 +v1,8244:6764466,40453724:0,393216,0 +(1,8260:6764466,45270329:25818563,5209821,196608 +g1,8260:6764466,45270329 +g1,8260:6764466,45270329 +g1,8260:6567858,45270329 +(1,8260:6567858,45270329:0,5209821,196608 +r1,8282:32779637,45270329:26211779,5406429,196608 +k1,8260:6567857,45270329:-26211780 +) +(1,8260:6567858,45270329:26211779,5209821,196608 +[1,8260:6764466,45270329:25818563,5013213,0 +(1,8246:6764466,40681555:25818563,424439,86428 +(1,8245:6764466,40681555:0,0,0 +g1,8245:6764466,40681555 +g1,8245:6764466,40681555 +g1,8245:6436786,40681555 +(1,8245:6436786,40681555:0,0,0 +) +g1,8245:6764466,40681555 +) +k1,8246:6764466,40681555:0 +g1,8246:9420098,40681555 +h1,8246:11411822,40681555:0,0,0 +k1,8246:32583030,40681555:21171208 +g1,8246:32583030,40681555 +) +(1,8250:6764466,41497482:25818563,424439,79822 +(1,8248:6764466,41497482:0,0,0 +g1,8248:6764466,41497482 +g1,8248:6764466,41497482 +g1,8248:6436786,41497482 +(1,8248:6436786,41497482:0,0,0 +) +g1,8248:6764466,41497482 +) +g1,8250:7760328,41497482 +g1,8250:9088144,41497482 +g1,8250:9752052,41497482 +h1,8250:10084006,41497482:0,0,0 +k1,8250:32583030,41497482:22499024 +g1,8250:32583030,41497482 +) +(1,8252:6764466,42313409:25818563,424439,86428 +(1,8251:6764466,42313409:0,0,0 +g1,8251:6764466,42313409 +g1,8251:6764466,42313409 +g1,8251:6436786,42313409 +(1,8251:6436786,42313409:0,0,0 +) +g1,8251:6764466,42313409 +) +k1,8252:6764466,42313409:0 +g1,8252:9420098,42313409 +g1,8252:11743776,42313409 +g1,8252:12739638,42313409 +g1,8252:14399408,42313409 +h1,8252:15063316,42313409:0,0,0 +k1,8252:32583028,42313409:17519712 +g1,8252:32583028,42313409 +) +(1,8253:6764466,42998264:25818563,344616,0 +h1,8253:6764466,42998264:0,0,0 +h1,8253:7096420,42998264:0,0,0 +k1,8253:32583028,42998264:25486608 +g1,8253:32583028,42998264 +) +(1,8259:6764466,43814191:25818563,424439,86428 +(1,8255:6764466,43814191:0,0,0 +g1,8255:6764466,43814191 +g1,8255:6764466,43814191 +g1,8255:6436786,43814191 +(1,8255:6436786,43814191:0,0,0 +) +g1,8255:6764466,43814191 +) +g1,8259:7760328,43814191 +g1,8259:8092282,43814191 +g1,8259:8424236,43814191 +g1,8259:8756190,43814191 +g1,8259:9088144,43814191 +g1,8259:9420098,43814191 +g1,8259:11079868,43814191 +g1,8259:12739638,43814191 +g1,8259:14399408,43814191 +g1,8259:16059178,43814191 +k1,8259:16059178,43814191:0 +h1,8259:17386994,43814191:0,0,0 +k1,8259:32583029,43814191:15196035 +g1,8259:32583029,43814191 +) +(1,8259:6764466,44499046:25818563,424439,86428 +h1,8259:6764466,44499046:0,0,0 +g1,8259:7760328,44499046 +g1,8259:9420098,44499046 +g1,8259:9752052,44499046 +g1,8259:10084006,44499046 +g1,8259:10415960,44499046 +g1,8259:11079868,44499046 +g1,8259:11411822,44499046 +g1,8259:11743776,44499046 +g1,8259:12075730,44499046 +g1,8259:12739638,44499046 +g1,8259:13071592,44499046 +g1,8259:13403546,44499046 +g1,8259:13735500,44499046 +g1,8259:14399408,44499046 +g1,8259:14731362,44499046 +g1,8259:15063316,44499046 +g1,8259:15395270,44499046 +g1,8259:16059178,44499046 +g1,8259:16391132,44499046 +g1,8259:16723086,44499046 +g1,8259:17055040,44499046 +h1,8259:17386994,44499046:0,0,0 +k1,8259:32583029,44499046:15196035 +g1,8259:32583029,44499046 +) +(1,8259:6764466,45183901:25818563,424439,86428 +h1,8259:6764466,45183901:0,0,0 +g1,8259:7760328,45183901 +g1,8259:9420098,45183901 +g1,8259:9752052,45183901 +g1,8259:10084006,45183901 +g1,8259:10415960,45183901 +g1,8259:11079868,45183901 +g1,8259:11411822,45183901 +g1,8259:11743776,45183901 +g1,8259:12075730,45183901 +g1,8259:12739638,45183901 +g1,8259:13071592,45183901 +g1,8259:13403546,45183901 +g1,8259:13735500,45183901 +g1,8259:14399408,45183901 +g1,8259:14731362,45183901 +g1,8259:15063316,45183901 +g1,8259:15395270,45183901 +g1,8259:16059178,45183901 +g1,8259:16391132,45183901 +g1,8259:16723086,45183901 +h1,8259:17386994,45183901:0,0,0 +k1,8259:32583029,45183901:15196035 +g1,8259:32583029,45183901 +) +] +) +g1,8260:32583029,45270329 +g1,8260:6764466,45270329 +g1,8260:6764466,45270329 +g1,8260:32583029,45270329 +g1,8260:32583029,45270329 +) +h1,8260:6764466,45466937:0,0,0 +] +g1,8282:32583029,45466937 +) +] +(1,8282:32583029,45706769:0,0,0 +g1,8282:32583029,45706769 +) +) +] +(1,8282:6630773,47279633:25952256,0,0 +h1,8282:6630773,47279633:25952256,0,0 +) +] +(1,8282:4262630,4025873:0,0,0 +[1,8282:-473656,4025873:0,0,0 +(1,8282:-473656,-710413:0,0,0 +(1,8282:-473656,-710413:0,0,0 +g1,8282:-473656,-710413 +) +g1,8282:-473656,-710413 +) +] +) +] +!26780 +}125 +Input:1141:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1142:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1143:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1144:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1145:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1146:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1147:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1148:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1149:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1150:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1151:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1152:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1153:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1234 +{126 +[1,8314:4262630,47279633:28320399,43253760,0 +(1,8314:4262630,4025873:0,0,0 +[1,8314:-473656,4025873:0,0,0 +(1,8314:-473656,-710413:0,0,0 +(1,8314:-473656,-644877:0,0,0 +k1,8314:-473656,-644877:-65536 ) -(1,8973:-473656,4736287:0,0,0 -k1,8973:-473656,4736287:5209943 +(1,8314:-473656,4736287:0,0,0 +k1,8314:-473656,4736287:5209943 ) -g1,8973:-473656,-710413 +g1,8314:-473656,-710413 ) ] ) -[1,8973:6630773,47279633:25952256,43253760,0 -[1,8973:6630773,4812305:25952256,786432,0 -(1,8973:6630773,4812305:25952256,485622,126483 -(1,8973:6630773,4812305:25952256,485622,126483 -g1,8973:3078558,4812305 -[1,8973:3078558,4812305:0,0,0 -(1,8973:3078558,2439708:0,1703936,0 -k1,8973:1358238,2439708:-1720320 -(1,8393:1358238,2439708:1720320,1703936,0 -(1,8393:1358238,2439708:1179648,16384,0 -r1,8973:2537886,2439708:1179648,16384,0 +[1,8314:6630773,47279633:25952256,43253760,0 +[1,8314:6630773,4812305:25952256,786432,0 +(1,8314:6630773,4812305:25952256,505283,134348 +(1,8314:6630773,4812305:25952256,505283,134348 +g1,8314:3078558,4812305 +[1,8314:3078558,4812305:0,0,0 +(1,8314:3078558,2439708:0,1703936,0 +k1,8314:1358238,2439708:-1720320 +(1,6148:1358238,2439708:1720320,1703936,0 +(1,6148:1358238,2439708:1179648,16384,0 +r1,8314:2537886,2439708:1179648,16384,0 ) -g1,8393:3062174,2439708 -(1,8393:3062174,2439708:16384,1703936,0 -[1,8393:3062174,2439708:25952256,1703936,0 -(1,8393:3062174,1915420:25952256,1179648,0 -(1,8393:3062174,1915420:16384,1179648,0 -r1,8973:3078558,1915420:16384,1179648,0 +g1,6148:3062174,2439708 +(1,6148:3062174,2439708:16384,1703936,0 +[1,6148:3062174,2439708:25952256,1703936,0 +(1,6148:3062174,1915420:25952256,1179648,0 +(1,6148:3062174,1915420:16384,1179648,0 +r1,8314:3078558,1915420:16384,1179648,0 ) -k1,8393:29014430,1915420:25935872 -g1,8393:29014430,1915420 +k1,6148:29014430,1915420:25935872 +g1,6148:29014430,1915420 ) ] ) ) ) ] -[1,8973:3078558,4812305:0,0,0 -(1,8973:3078558,2439708:0,1703936,0 -g1,8973:29030814,2439708 -g1,8973:36135244,2439708 -(1,8393:36135244,2439708:1720320,1703936,0 -(1,8393:36135244,2439708:16384,1703936,0 -[1,8393:36135244,2439708:25952256,1703936,0 -(1,8393:36135244,1915420:25952256,1179648,0 -(1,8393:36135244,1915420:16384,1179648,0 -r1,8973:36151628,1915420:16384,1179648,0 +[1,8314:3078558,4812305:0,0,0 +(1,8314:3078558,2439708:0,1703936,0 +g1,8314:29030814,2439708 +g1,8314:36135244,2439708 +(1,6148:36135244,2439708:1720320,1703936,0 +(1,6148:36135244,2439708:16384,1703936,0 +[1,6148:36135244,2439708:25952256,1703936,0 +(1,6148:36135244,1915420:25952256,1179648,0 +(1,6148:36135244,1915420:16384,1179648,0 +r1,8314:36151628,1915420:16384,1179648,0 ) -k1,8393:62087500,1915420:25935872 -g1,8393:62087500,1915420 +k1,6148:62087500,1915420:25935872 +g1,6148:62087500,1915420 ) ] ) -g1,8393:36675916,2439708 -(1,8393:36675916,2439708:1179648,16384,0 -r1,8973:37855564,2439708:1179648,16384,0 +g1,6148:36675916,2439708 +(1,6148:36675916,2439708:1179648,16384,0 +r1,8314:37855564,2439708:1179648,16384,0 ) ) -k1,8973:3078556,2439708:-34777008 +k1,8314:3078556,2439708:-34777008 ) ] -[1,8973:3078558,4812305:0,0,0 -(1,8973:3078558,49800853:0,16384,2228224 -k1,8973:1358238,49800853:-1720320 -(1,8393:1358238,49800853:1720320,16384,2228224 -(1,8393:1358238,49800853:1179648,16384,0 -r1,8973:2537886,49800853:1179648,16384,0 +[1,8314:3078558,4812305:0,0,0 +(1,8314:3078558,49800853:0,16384,2228224 +k1,8314:1358238,49800853:-1720320 +(1,6148:1358238,49800853:1720320,16384,2228224 +(1,6148:1358238,49800853:1179648,16384,0 +r1,8314:2537886,49800853:1179648,16384,0 ) -g1,8393:3062174,49800853 -(1,8393:3062174,52029077:16384,1703936,0 -[1,8393:3062174,52029077:25952256,1703936,0 -(1,8393:3062174,51504789:25952256,1179648,0 -(1,8393:3062174,51504789:16384,1179648,0 -r1,8973:3078558,51504789:16384,1179648,0 +g1,6148:3062174,49800853 +(1,6148:3062174,52029077:16384,1703936,0 +[1,6148:3062174,52029077:25952256,1703936,0 +(1,6148:3062174,51504789:25952256,1179648,0 +(1,6148:3062174,51504789:16384,1179648,0 +r1,8314:3078558,51504789:16384,1179648,0 ) -k1,8393:29014430,51504789:25935872 -g1,8393:29014430,51504789 +k1,6148:29014430,51504789:25935872 +g1,6148:29014430,51504789 ) ] ) ) ) ] -[1,8973:3078558,4812305:0,0,0 -(1,8973:3078558,49800853:0,16384,2228224 -g1,8973:29030814,49800853 -g1,8973:36135244,49800853 -(1,8393:36135244,49800853:1720320,16384,2228224 -(1,8393:36135244,52029077:16384,1703936,0 -[1,8393:36135244,52029077:25952256,1703936,0 -(1,8393:36135244,51504789:25952256,1179648,0 -(1,8393:36135244,51504789:16384,1179648,0 -r1,8973:36151628,51504789:16384,1179648,0 -) -k1,8393:62087500,51504789:25935872 -g1,8393:62087500,51504789 -) -] -) -g1,8393:36675916,49800853 -(1,8393:36675916,49800853:1179648,16384,0 -r1,8973:37855564,49800853:1179648,16384,0 -) -) -k1,8973:3078556,49800853:-34777008 -) -] -g1,8973:6630773,4812305 -g1,8973:6630773,4812305 -g1,8973:8364200,4812305 -g1,8973:10177581,4812305 -k1,8973:31387653,4812305:21210072 -) -) -] -[1,8973:6630773,45706769:25952256,40108032,0 -(1,8973:6630773,45706769:25952256,40108032,0 -(1,8973:6630773,45706769:0,0,0 -g1,8973:6630773,45706769 -) -[1,8973:6630773,45706769:25952256,40108032,0 -v1,8888:6630773,6254097:0,393216,0 -(1,8906:6630773,14471579:25952256,8610698,196608 -g1,8906:6630773,14471579 -g1,8906:6630773,14471579 -g1,8906:6434165,14471579 -(1,8906:6434165,14471579:0,8610698,196608 -r1,8973:32779637,14471579:26345472,8807306,196608 -k1,8906:6434165,14471579:-26345472 -) -(1,8906:6434165,14471579:26345472,8610698,196608 -[1,8906:6630773,14471579:25952256,8414090,0 -(1,8890:6630773,6468007:25952256,410518,101187 -(1,8889:6630773,6468007:0,0,0 -g1,8889:6630773,6468007 -g1,8889:6630773,6468007 -g1,8889:6303093,6468007 -(1,8889:6303093,6468007:0,0,0 -) -g1,8889:6630773,6468007 -) -k1,8890:6630773,6468007:0 -g1,8890:10740668,6468007 -g1,8890:11372960,6468007 -g1,8890:13269835,6468007 -g1,8890:13902127,6468007 -g1,8890:14534419,6468007 -g1,8890:18012021,6468007 -k1,8890:18012021,6468007:0 -h1,8890:18644313,6468007:0,0,0 -k1,8890:32583029,6468007:13938716 -g1,8890:32583029,6468007 -) -(1,8891:6630773,7134185:25952256,404226,82312 -h1,8891:6630773,7134185:0,0,0 -g1,8891:6946919,7134185 -g1,8891:7263065,7134185 -g1,8891:11056814,7134185 -g1,8891:11689106,7134185 -k1,8891:11689106,7134185:0 -h1,8891:12321398,7134185:0,0,0 -k1,8891:32583030,7134185:20261632 -g1,8891:32583030,7134185 -) -(1,8892:6630773,7800363:25952256,404226,76021 -h1,8892:6630773,7800363:0,0,0 -g1,8892:6946919,7800363 -g1,8892:7263065,7800363 -g1,8892:7579211,7800363 -g1,8892:7895357,7800363 -g1,8892:8211503,7800363 -g1,8892:8527649,7800363 -g1,8892:8843795,7800363 -g1,8892:9159941,7800363 -g1,8892:9476087,7800363 -h1,8892:9792233,7800363:0,0,0 -k1,8892:32583029,7800363:22790796 -g1,8892:32583029,7800363 -) -(1,8893:6630773,8466541:25952256,379060,0 -h1,8893:6630773,8466541:0,0,0 -g1,8893:6946919,8466541 -g1,8893:7263065,8466541 -g1,8893:7579211,8466541 -g1,8893:7895357,8466541 -g1,8893:8211503,8466541 -g1,8893:8527649,8466541 -g1,8893:8843795,8466541 -g1,8893:9159941,8466541 -g1,8893:9476087,8466541 -g1,8893:9792233,8466541 -g1,8893:10108379,8466541 -g1,8893:11056816,8466541 -g1,8893:12005254,8466541 -h1,8893:12953692,8466541:0,0,0 -k1,8893:32583028,8466541:19629336 -g1,8893:32583028,8466541 -) -(1,8894:6630773,9132719:25952256,404226,107478 -h1,8894:6630773,9132719:0,0,0 -g1,8894:6946919,9132719 -g1,8894:7263065,9132719 -g1,8894:7579211,9132719 -g1,8894:7895357,9132719 -g1,8894:8211503,9132719 -g1,8894:8527649,9132719 -g1,8894:8843795,9132719 -g1,8894:9159941,9132719 -g1,8894:9476087,9132719 -g1,8894:9792233,9132719 -g1,8894:10108379,9132719 -g1,8894:12953690,9132719 -g1,8894:13902128,9132719 -g1,8894:15166712,9132719 -g1,8894:15799004,9132719 -h1,8894:17063587,9132719:0,0,0 -k1,8894:32583029,9132719:15519442 -g1,8894:32583029,9132719 -) -(1,8895:6630773,9798897:25952256,404226,76021 -h1,8895:6630773,9798897:0,0,0 -g1,8895:6946919,9798897 -g1,8895:7263065,9798897 -g1,8895:7579211,9798897 -g1,8895:7895357,9798897 -g1,8895:8211503,9798897 -g1,8895:8527649,9798897 -g1,8895:8843795,9798897 -g1,8895:9159941,9798897 -g1,8895:9476087,9798897 -g1,8895:10424524,9798897 -k1,8895:10424524,9798897:0 -h1,8895:11056816,9798897:0,0,0 -k1,8895:32583028,9798897:21526212 -g1,8895:32583028,9798897 -) -(1,8896:6630773,10465075:25952256,404226,107478 -h1,8896:6630773,10465075:0,0,0 -g1,8896:6946919,10465075 -g1,8896:7263065,10465075 -g1,8896:10108377,10465075 -g1,8896:10740669,10465075 -g1,8896:11689107,10465075 -g1,8896:14850564,10465075 -g1,8896:17063584,10465075 -g1,8896:17695876,10465075 -k1,8896:17695876,10465075:0 -h1,8896:18644313,10465075:0,0,0 -k1,8896:32583029,10465075:13938716 -g1,8896:32583029,10465075 -) -(1,8905:6630773,11131253:25952256,404226,107478 -(1,8898:6630773,11131253:0,0,0 -g1,8898:6630773,11131253 -g1,8898:6630773,11131253 -g1,8898:6303093,11131253 -(1,8898:6303093,11131253:0,0,0 -) -g1,8898:6630773,11131253 -) -g1,8905:7579210,11131253 -g1,8905:7895356,11131253 -g1,8905:8211502,11131253 -g1,8905:8527648,11131253 -g1,8905:8843794,11131253 -g1,8905:9159940,11131253 -g1,8905:9476086,11131253 -g1,8905:9792232,11131253 -g1,8905:10108378,11131253 -g1,8905:10424524,11131253 -g1,8905:10740670,11131253 -g1,8905:11056816,11131253 -g1,8905:11372962,11131253 -g1,8905:11689108,11131253 -g1,8905:12321400,11131253 -g1,8905:15166711,11131253 -g1,8905:15482857,11131253 -g1,8905:15799003,11131253 -g1,8905:16115149,11131253 -h1,8905:16747440,11131253:0,0,0 -k1,8905:32583029,11131253:15835589 -g1,8905:32583029,11131253 -) -(1,8905:6630773,11797431:25952256,388497,9436 -h1,8905:6630773,11797431:0,0,0 -g1,8905:7579210,11797431 -g1,8905:8211502,11797431 -g1,8905:8527648,11797431 -g1,8905:12321396,11797431 -g1,8905:12637542,11797431 -g1,8905:12953688,11797431 -g1,8905:13269834,11797431 -g1,8905:13585980,11797431 -g1,8905:15166709,11797431 -g1,8905:15482855,11797431 -h1,8905:16747438,11797431:0,0,0 -k1,8905:32583029,11797431:15835591 -g1,8905:32583029,11797431 -) -(1,8905:6630773,12463609:25952256,388497,9436 -h1,8905:6630773,12463609:0,0,0 -g1,8905:7579210,12463609 -g1,8905:8211502,12463609 -g1,8905:8527648,12463609 -g1,8905:8843794,12463609 -g1,8905:12321397,12463609 -g1,8905:12637543,12463609 -g1,8905:12953689,12463609 -g1,8905:13269835,12463609 -g1,8905:13585981,12463609 -g1,8905:15166710,12463609 -g1,8905:15482856,12463609 -h1,8905:16747439,12463609:0,0,0 -k1,8905:32583029,12463609:15835590 -g1,8905:32583029,12463609 -) -(1,8905:6630773,13129787:25952256,388497,9436 -h1,8905:6630773,13129787:0,0,0 -g1,8905:7579210,13129787 -g1,8905:8211502,13129787 -g1,8905:8527648,13129787 -g1,8905:12321396,13129787 -g1,8905:12637542,13129787 -g1,8905:12953688,13129787 -g1,8905:13269834,13129787 -g1,8905:13585980,13129787 -g1,8905:15166709,13129787 -g1,8905:15482855,13129787 -h1,8905:16747438,13129787:0,0,0 -k1,8905:32583029,13129787:15835591 -g1,8905:32583029,13129787 -) -(1,8905:6630773,13795965:25952256,388497,9436 -h1,8905:6630773,13795965:0,0,0 -g1,8905:7579210,13795965 -g1,8905:8211502,13795965 -g1,8905:8527648,13795965 -g1,8905:8843794,13795965 -g1,8905:12321397,13795965 -g1,8905:12637543,13795965 -g1,8905:12953689,13795965 -g1,8905:13269835,13795965 -g1,8905:13585981,13795965 -g1,8905:15166710,13795965 -g1,8905:15482856,13795965 -h1,8905:16747439,13795965:0,0,0 -k1,8905:32583029,13795965:15835590 -g1,8905:32583029,13795965 -) -(1,8905:6630773,14462143:25952256,388497,9436 -h1,8905:6630773,14462143:0,0,0 -g1,8905:7579210,14462143 -g1,8905:8527647,14462143 -g1,8905:8843793,14462143 -g1,8905:12321396,14462143 -g1,8905:12637542,14462143 -g1,8905:12953688,14462143 -g1,8905:13269834,14462143 -g1,8905:13585980,14462143 -g1,8905:15166709,14462143 -h1,8905:16747437,14462143:0,0,0 -k1,8905:32583029,14462143:15835592 -g1,8905:32583029,14462143 -) -] -) -g1,8906:32583029,14471579 -g1,8906:6630773,14471579 -g1,8906:6630773,14471579 -g1,8906:32583029,14471579 -g1,8906:32583029,14471579 -) -h1,8906:6630773,14668187:0,0,0 -v1,8910:6630773,16382941:0,393216,0 -(1,8933:6630773,27931313:25952256,11941588,196608 -g1,8933:6630773,27931313 -g1,8933:6630773,27931313 -g1,8933:6434165,27931313 -(1,8933:6434165,27931313:0,11941588,196608 -r1,8973:32779637,27931313:26345472,12138196,196608 -k1,8933:6434165,27931313:-26345472 -) -(1,8933:6434165,27931313:26345472,11941588,196608 -[1,8933:6630773,27931313:25952256,11744980,0 -(1,8912:6630773,16596851:25952256,410518,101187 -(1,8911:6630773,16596851:0,0,0 -g1,8911:6630773,16596851 -g1,8911:6630773,16596851 -g1,8911:6303093,16596851 -(1,8911:6303093,16596851:0,0,0 -) -g1,8911:6630773,16596851 -) -k1,8912:6630773,16596851:0 -g1,8912:10740668,16596851 -g1,8912:11372960,16596851 -g1,8912:13269835,16596851 -g1,8912:13902127,16596851 -g1,8912:14534419,16596851 -g1,8912:18012021,16596851 -k1,8912:18012021,16596851:0 -h1,8912:18644313,16596851:0,0,0 -k1,8912:32583029,16596851:13938716 -g1,8912:32583029,16596851 -) -(1,8913:6630773,17263029:25952256,404226,82312 -h1,8913:6630773,17263029:0,0,0 -g1,8913:6946919,17263029 -g1,8913:7263065,17263029 -g1,8913:11056814,17263029 -g1,8913:11689106,17263029 -k1,8913:11689106,17263029:0 -h1,8913:12321398,17263029:0,0,0 -k1,8913:32583030,17263029:20261632 -g1,8913:32583030,17263029 -) -(1,8914:6630773,17929207:25952256,404226,76021 -h1,8914:6630773,17929207:0,0,0 -g1,8914:6946919,17929207 -g1,8914:7263065,17929207 -g1,8914:7579211,17929207 -g1,8914:7895357,17929207 -g1,8914:8211503,17929207 -g1,8914:8527649,17929207 -g1,8914:8843795,17929207 -g1,8914:9159941,17929207 -g1,8914:9476087,17929207 -h1,8914:9792233,17929207:0,0,0 -k1,8914:32583029,17929207:22790796 -g1,8914:32583029,17929207 -) -(1,8915:6630773,18595385:25952256,379060,0 -h1,8915:6630773,18595385:0,0,0 -g1,8915:6946919,18595385 -g1,8915:7263065,18595385 -g1,8915:7579211,18595385 -g1,8915:7895357,18595385 -g1,8915:8211503,18595385 -g1,8915:8527649,18595385 -g1,8915:8843795,18595385 -g1,8915:9159941,18595385 -g1,8915:9476087,18595385 -g1,8915:9792233,18595385 -g1,8915:10108379,18595385 -g1,8915:11056816,18595385 -g1,8915:12005254,18595385 -h1,8915:12953692,18595385:0,0,0 -k1,8915:32583028,18595385:19629336 -g1,8915:32583028,18595385 -) -(1,8916:6630773,19261563:25952256,404226,107478 -h1,8916:6630773,19261563:0,0,0 -g1,8916:6946919,19261563 -g1,8916:7263065,19261563 -g1,8916:7579211,19261563 -g1,8916:7895357,19261563 -g1,8916:8211503,19261563 -g1,8916:8527649,19261563 -g1,8916:8843795,19261563 -g1,8916:9159941,19261563 -g1,8916:9476087,19261563 -g1,8916:9792233,19261563 -g1,8916:10108379,19261563 -g1,8916:12953690,19261563 -g1,8916:13902128,19261563 -g1,8916:15166712,19261563 -g1,8916:15799004,19261563 -h1,8916:17063587,19261563:0,0,0 -k1,8916:32583029,19261563:15519442 -g1,8916:32583029,19261563 -) -(1,8917:6630773,19927741:25952256,404226,76021 -h1,8917:6630773,19927741:0,0,0 -g1,8917:6946919,19927741 -g1,8917:7263065,19927741 -g1,8917:7579211,19927741 -g1,8917:7895357,19927741 -g1,8917:8211503,19927741 -g1,8917:8527649,19927741 -g1,8917:8843795,19927741 -g1,8917:9159941,19927741 -g1,8917:9476087,19927741 -g1,8917:10424524,19927741 -k1,8917:10424524,19927741:0 -h1,8917:11056816,19927741:0,0,0 -k1,8917:32583028,19927741:21526212 -g1,8917:32583028,19927741 -) -(1,8918:6630773,20593919:25952256,404226,101187 -h1,8918:6630773,20593919:0,0,0 -g1,8918:6946919,20593919 -g1,8918:7263065,20593919 -g1,8918:10108377,20593919 -g1,8918:10740669,20593919 -g1,8918:11689107,20593919 -g1,8918:13902127,20593919 -g1,8918:14534419,20593919 -g1,8918:16115148,20593919 -h1,8918:17379731,20593919:0,0,0 -k1,8918:32583029,20593919:15203298 -g1,8918:32583029,20593919 -) -(1,8932:6630773,21260097:25952256,379060,101187 -(1,8920:6630773,21260097:0,0,0 -g1,8920:6630773,21260097 -g1,8920:6630773,21260097 -g1,8920:6303093,21260097 -(1,8920:6303093,21260097:0,0,0 -) -g1,8920:6630773,21260097 -) -g1,8932:7579210,21260097 -g1,8932:7895356,21260097 -g1,8932:8211502,21260097 -g1,8932:8527648,21260097 -g1,8932:8843794,21260097 -g1,8932:9159940,21260097 -g1,8932:9476086,21260097 -g1,8932:9792232,21260097 -g1,8932:10108378,21260097 -g1,8932:10424524,21260097 -g1,8932:10740670,21260097 -g1,8932:11056816,21260097 -g1,8932:11372962,21260097 -g1,8932:12005254,21260097 -g1,8932:12321400,21260097 -g1,8932:12637546,21260097 -g1,8932:12953692,21260097 -h1,8932:13585983,21260097:0,0,0 -k1,8932:32583029,21260097:18997046 -g1,8932:32583029,21260097 -) -(1,8932:6630773,21926275:25952256,388497,9436 -h1,8932:6630773,21926275:0,0,0 -g1,8932:7579210,21926275 -g1,8932:8211502,21926275 -g1,8932:8527648,21926275 -g1,8932:8843794,21926275 -g1,8932:12005251,21926275 -g1,8932:12321397,21926275 -g1,8932:12637543,21926275 -g1,8932:12953689,21926275 -g1,8932:13269835,21926275 -h1,8932:13585981,21926275:0,0,0 -k1,8932:32583029,21926275:18997048 -g1,8932:32583029,21926275 -) -(1,8932:6630773,22592453:25952256,388497,9436 -h1,8932:6630773,22592453:0,0,0 -g1,8932:7579210,22592453 -g1,8932:8211502,22592453 -g1,8932:8527648,22592453 -g1,8932:8843794,22592453 -g1,8932:12005251,22592453 -g1,8932:12321397,22592453 -g1,8932:12637543,22592453 -g1,8932:12953689,22592453 -h1,8932:13585980,22592453:0,0,0 -k1,8932:32583028,22592453:18997048 -g1,8932:32583028,22592453 -) -(1,8932:6630773,23258631:25952256,388497,9436 -h1,8932:6630773,23258631:0,0,0 -g1,8932:7579210,23258631 -g1,8932:8211502,23258631 -g1,8932:8527648,23258631 -g1,8932:12005251,23258631 -g1,8932:12321397,23258631 -g1,8932:12637543,23258631 -g1,8932:12953689,23258631 -h1,8932:13585980,23258631:0,0,0 -k1,8932:32583028,23258631:18997048 -g1,8932:32583028,23258631 -) -(1,8932:6630773,23924809:25952256,388497,9436 -h1,8932:6630773,23924809:0,0,0 -g1,8932:7579210,23924809 -g1,8932:8211502,23924809 -g1,8932:8527648,23924809 -g1,8932:12005251,23924809 -g1,8932:12321397,23924809 -g1,8932:12637543,23924809 -h1,8932:13585980,23924809:0,0,0 -k1,8932:32583028,23924809:18997048 -g1,8932:32583028,23924809 -) -(1,8932:6630773,24590987:25952256,388497,9436 -h1,8932:6630773,24590987:0,0,0 -g1,8932:7579210,24590987 -g1,8932:8211502,24590987 -g1,8932:8527648,24590987 -g1,8932:8843794,24590987 -g1,8932:12005251,24590987 -g1,8932:12321397,24590987 -g1,8932:12637543,24590987 -h1,8932:13585980,24590987:0,0,0 -k1,8932:32583028,24590987:18997048 -g1,8932:32583028,24590987 -) -(1,8932:6630773,25257165:25952256,388497,9436 -h1,8932:6630773,25257165:0,0,0 -g1,8932:7579210,25257165 -g1,8932:8211502,25257165 -g1,8932:8527648,25257165 -g1,8932:8843794,25257165 -g1,8932:12005251,25257165 -g1,8932:12321397,25257165 -h1,8932:13585980,25257165:0,0,0 -k1,8932:32583028,25257165:18997048 -g1,8932:32583028,25257165 -) -(1,8932:6630773,25923343:25952256,388497,9436 -h1,8932:6630773,25923343:0,0,0 -g1,8932:7579210,25923343 -g1,8932:8211502,25923343 -g1,8932:8527648,25923343 -g1,8932:12005251,25923343 -g1,8932:12321397,25923343 -h1,8932:13585980,25923343:0,0,0 -k1,8932:32583028,25923343:18997048 -g1,8932:32583028,25923343 -) -(1,8932:6630773,26589521:25952256,388497,9436 -h1,8932:6630773,26589521:0,0,0 -g1,8932:7579210,26589521 -g1,8932:8211502,26589521 -g1,8932:8527648,26589521 -g1,8932:8843794,26589521 -g1,8932:12005251,26589521 -g1,8932:12321397,26589521 -h1,8932:13585980,26589521:0,0,0 -k1,8932:32583028,26589521:18997048 -g1,8932:32583028,26589521 -) -(1,8932:6630773,27255699:25952256,388497,9436 -h1,8932:6630773,27255699:0,0,0 -g1,8932:7579210,27255699 -g1,8932:8211502,27255699 -g1,8932:8527648,27255699 -g1,8932:8843794,27255699 -g1,8932:12005251,27255699 -g1,8932:12321397,27255699 -h1,8932:13585980,27255699:0,0,0 -k1,8932:32583028,27255699:18997048 -g1,8932:32583028,27255699 -) -(1,8932:6630773,27921877:25952256,388497,9436 -h1,8932:6630773,27921877:0,0,0 -g1,8932:7579210,27921877 -g1,8932:8527647,27921877 -g1,8932:12005250,27921877 -h1,8932:13585978,27921877:0,0,0 -k1,8932:32583030,27921877:18997052 -g1,8932:32583030,27921877 -) -] -) -g1,8933:32583029,27931313 -g1,8933:6630773,27931313 -g1,8933:6630773,27931313 -g1,8933:32583029,27931313 -g1,8933:32583029,27931313 -) -h1,8933:6630773,28127921:0,0,0 -v1,8937:6630773,29842675:0,393216,0 -(1,8949:6630773,34063089:25952256,4613630,196608 -g1,8949:6630773,34063089 -g1,8949:6630773,34063089 -g1,8949:6434165,34063089 -(1,8949:6434165,34063089:0,4613630,196608 -r1,8973:32779637,34063089:26345472,4810238,196608 -k1,8949:6434165,34063089:-26345472 -) -(1,8949:6434165,34063089:26345472,4613630,196608 -[1,8949:6630773,34063089:25952256,4417022,0 -(1,8939:6630773,30056585:25952256,410518,107478 -(1,8938:6630773,30056585:0,0,0 -g1,8938:6630773,30056585 -g1,8938:6630773,30056585 -g1,8938:6303093,30056585 -(1,8938:6303093,30056585:0,0,0 -) -g1,8938:6630773,30056585 -) -k1,8939:6630773,30056585:0 -g1,8939:12005250,30056585 -g1,8939:12637542,30056585 -g1,8939:18644312,30056585 -g1,8939:20541187,30056585 -g1,8939:23070353,30056585 -g1,8939:24651082,30056585 -g1,8939:25283374,30056585 -k1,8939:25283374,30056585:0 -h1,8939:26547957,30056585:0,0,0 -k1,8939:32583029,30056585:6035072 -g1,8939:32583029,30056585 -) -(1,8940:6630773,30722763:25952256,404226,101187 -h1,8940:6630773,30722763:0,0,0 -g1,8940:6946919,30722763 -g1,8940:7263065,30722763 -g1,8940:7579211,30722763 -g1,8940:7895357,30722763 -g1,8940:8211503,30722763 -g1,8940:8527649,30722763 -g1,8940:8843795,30722763 -g1,8940:9159941,30722763 -g1,8940:9476087,30722763 -g1,8940:9792233,30722763 -g1,8940:10108379,30722763 -g1,8940:10740671,30722763 -g1,8940:11372963,30722763 -g1,8940:14850565,30722763 -k1,8940:14850565,30722763:0 -h1,8940:15482857,30722763:0,0,0 -k1,8940:32583029,30722763:17100172 -g1,8940:32583029,30722763 -) -(1,8941:6630773,31388941:25952256,404226,107478 -h1,8941:6630773,31388941:0,0,0 -g1,8941:6946919,31388941 -g1,8941:7263065,31388941 -g1,8941:10108377,31388941 -g1,8941:10740669,31388941 -g1,8941:11689107,31388941 -g1,8941:13585981,31388941 -g1,8941:15166710,31388941 -g1,8941:17695877,31388941 -g1,8941:19908897,31388941 -k1,8941:19908897,31388941:0 -h1,8941:20541189,31388941:0,0,0 -k1,8941:32583029,31388941:12041840 -g1,8941:32583029,31388941 -) -(1,8942:6630773,32055119:25952256,404226,107478 -h1,8942:6630773,32055119:0,0,0 -g1,8942:6946919,32055119 -g1,8942:7263065,32055119 -g1,8942:12005251,32055119 -g1,8942:12637543,32055119 -g1,8942:13585981,32055119 -g1,8942:14218273,32055119 -g1,8942:14850565,32055119 -g1,8942:17063585,32055119 -h1,8942:18644313,32055119:0,0,0 -k1,8942:32583029,32055119:13938716 -g1,8942:32583029,32055119 -) -(1,8948:6630773,32721297:25952256,379060,107478 -(1,8944:6630773,32721297:0,0,0 -g1,8944:6630773,32721297 -g1,8944:6630773,32721297 -g1,8944:6303093,32721297 -(1,8944:6303093,32721297:0,0,0 -) -g1,8944:6630773,32721297 -) -g1,8948:7579210,32721297 -g1,8948:7895356,32721297 -g1,8948:8211502,32721297 -g1,8948:10108376,32721297 -g1,8948:10424522,32721297 -g1,8948:10740668,32721297 -g1,8948:11056814,32721297 -g1,8948:11372960,32721297 -g1,8948:11689106,32721297 -g1,8948:12005252,32721297 -g1,8948:12321398,32721297 -g1,8948:12637544,32721297 -g1,8948:12953690,32721297 -h1,8948:13269836,32721297:0,0,0 -k1,8948:32583028,32721297:19313192 -g1,8948:32583028,32721297 -) -(1,8948:6630773,33387475:25952256,388497,9436 -h1,8948:6630773,33387475:0,0,0 -g1,8948:7579210,33387475 -g1,8948:8211502,33387475 -g1,8948:8527648,33387475 -g1,8948:8843794,33387475 -g1,8948:9159940,33387475 -g1,8948:10108377,33387475 -k1,8948:10108377,33387475:0 -h1,8948:13269834,33387475:0,0,0 -k1,8948:32583030,33387475:19313196 -g1,8948:32583030,33387475 -) -(1,8948:6630773,34053653:25952256,388497,9436 -h1,8948:6630773,34053653:0,0,0 -g1,8948:7579210,34053653 -g1,8948:8211502,34053653 -g1,8948:8527648,34053653 -g1,8948:8843794,34053653 -g1,8948:9159940,34053653 -g1,8948:10108377,34053653 -k1,8948:10108377,34053653:0 -h1,8948:13269834,34053653:0,0,0 -k1,8948:32583030,34053653:19313196 -g1,8948:32583030,34053653 -) -] -) -g1,8949:32583029,34063089 -g1,8949:6630773,34063089 -g1,8949:6630773,34063089 -g1,8949:32583029,34063089 -g1,8949:32583029,34063089 -) -h1,8949:6630773,34259697:0,0,0 -(1,8953:6630773,35625473:25952256,513147,134348 -h1,8952:6630773,35625473:983040,0,0 -k1,8952:10787470,35625473:210774 -k1,8952:12017328,35625473:210773 -k1,8952:15442643,35625473:210774 -k1,8952:18730332,35625473:210774 -k1,8952:19932665,35625473:210773 -k1,8952:21209710,35625473:210774 -k1,8952:24236566,35625473:210774 -k1,8952:25256710,35625473:210774 -k1,8952:26486568,35625473:210773 -k1,8952:27730845,35625473:210774 -k1,8952:28600911,35625473:210774 -k1,8952:29167544,35625473:210773 -k1,8952:30942007,35625473:210774 -k1,8953:32583029,35625473:0 -) -(1,8953:6630773,36466961:25952256,505283,134348 -k1,8952:8109526,36466961:211287 -(1,8952:8109526,36466961:0,452978,122846 -r1,8973:12336622,36466961:4227096,575824,122846 -k1,8952:8109526,36466961:-4227096 -) -(1,8952:8109526,36466961:4227096,452978,122846 -k1,8952:8109526,36466961:3277 -h1,8952:12333345,36466961:0,411205,112570 -) -k1,8952:12547908,36466961:211286 -k1,8952:13863477,36466961:211287 -k1,8952:14822529,36466961:211286 -k1,8952:16547042,36466961:211287 -k1,8952:17409756,36466961:211286 -k1,8952:19825019,36466961:211287 -k1,8952:20392165,36466961:211286 -k1,8952:22476471,36466961:211287 -k1,8952:25311163,36466961:211286 -k1,8952:26283978,36466961:211287 -k1,8952:28406949,36466961:211286 -k1,8952:29234274,36466961:211287 -k1,8952:30648801,36466961:211286 -k1,8952:32227169,36466961:211287 -k1,8952:32583029,36466961:0 -) -(1,8953:6630773,37308449:25952256,505283,7863 -k1,8953:32583028,37308449:23395696 -g1,8953:32583028,37308449 -) -v1,8955:6630773,38498915:0,393216,0 -(1,8966:6630773,42119736:25952256,4014037,196608 -g1,8966:6630773,42119736 -g1,8966:6630773,42119736 -g1,8966:6434165,42119736 -(1,8966:6434165,42119736:0,4014037,196608 -r1,8973:32779637,42119736:26345472,4210645,196608 -k1,8966:6434165,42119736:-26345472 -) -(1,8966:6434165,42119736:26345472,4014037,196608 -[1,8966:6630773,42119736:25952256,3817429,0 -(1,8957:6630773,38712825:25952256,410518,107478 -(1,8956:6630773,38712825:0,0,0 -g1,8956:6630773,38712825 -g1,8956:6630773,38712825 -g1,8956:6303093,38712825 -(1,8956:6303093,38712825:0,0,0 -) -g1,8956:6630773,38712825 -) -k1,8957:6630773,38712825:0 -g1,8957:12005250,38712825 -g1,8957:12637542,38712825 -g1,8957:18644312,38712825 -g1,8957:20541187,38712825 -g1,8957:23070353,38712825 -g1,8957:24651082,38712825 -g1,8957:25283374,38712825 -k1,8957:25283374,38712825:0 -h1,8957:26547957,38712825:0,0,0 -k1,8957:32583029,38712825:6035072 -g1,8957:32583029,38712825 -) -(1,8958:6630773,39379003:25952256,404226,101187 -h1,8958:6630773,39379003:0,0,0 -g1,8958:6946919,39379003 -g1,8958:7263065,39379003 -g1,8958:7579211,39379003 -g1,8958:7895357,39379003 -g1,8958:8211503,39379003 -g1,8958:8527649,39379003 -g1,8958:8843795,39379003 -g1,8958:9159941,39379003 -g1,8958:9476087,39379003 -g1,8958:9792233,39379003 -g1,8958:10108379,39379003 -g1,8958:10740671,39379003 -g1,8958:11372963,39379003 -g1,8958:14850565,39379003 -k1,8958:14850565,39379003:0 -h1,8958:15482857,39379003:0,0,0 -k1,8958:32583029,39379003:17100172 -g1,8958:32583029,39379003 -) -(1,8959:6630773,40045181:25952256,404226,107478 -h1,8959:6630773,40045181:0,0,0 -g1,8959:6946919,40045181 -g1,8959:7263065,40045181 -g1,8959:10108377,40045181 -g1,8959:10740669,40045181 -g1,8959:11689107,40045181 -g1,8959:13585981,40045181 -g1,8959:15166710,40045181 -g1,8959:17695877,40045181 -g1,8959:19908897,40045181 -k1,8959:19908897,40045181:0 -h1,8959:20541189,40045181:0,0,0 -k1,8959:32583029,40045181:12041840 -g1,8959:32583029,40045181 -) -(1,8960:6630773,40711359:25952256,404226,107478 -h1,8960:6630773,40711359:0,0,0 -g1,8960:6946919,40711359 -g1,8960:7263065,40711359 -g1,8960:12005251,40711359 -g1,8960:12637543,40711359 -g1,8960:13585981,40711359 -g1,8960:14218273,40711359 -g1,8960:14850565,40711359 -g1,8960:17063585,40711359 -g1,8960:18960459,40711359 -k1,8960:18960459,40711359:0 -h1,8960:19592751,40711359:0,0,0 -k1,8960:32583029,40711359:12990278 -g1,8960:32583029,40711359 -) -(1,8961:6630773,41377537:25952256,404226,107478 -h1,8961:6630773,41377537:0,0,0 -g1,8961:6946919,41377537 -g1,8961:7263065,41377537 -k1,8961:7263065,41377537:0 -h1,8961:12005251,41377537:0,0,0 -k1,8961:32583029,41377537:20577778 -g1,8961:32583029,41377537 -) -(1,8965:6630773,42043715:25952256,404226,76021 -(1,8963:6630773,42043715:0,0,0 -g1,8963:6630773,42043715 -g1,8963:6630773,42043715 -g1,8963:6303093,42043715 -(1,8963:6303093,42043715:0,0,0 -) -g1,8963:6630773,42043715 -) -g1,8965:7579210,42043715 -g1,8965:8843793,42043715 -g1,8965:9159939,42043715 -g1,8965:12321396,42043715 -k1,8965:12321396,42043715:0 -h1,8965:15482853,42043715:0,0,0 -k1,8965:32583029,42043715:17100176 -g1,8965:32583029,42043715 -) -] -) -g1,8966:32583029,42119736 -g1,8966:6630773,42119736 -g1,8966:6630773,42119736 -g1,8966:32583029,42119736 -g1,8966:32583029,42119736 -) -h1,8966:6630773,42316344:0,0,0 -(1,8970:6630773,43682120:25952256,513147,134348 -h1,8969:6630773,43682120:983040,0,0 -k1,8969:11193389,43682120:220856 -k1,8969:14440043,43682120:220857 -k1,8969:17517613,43682120:220856 -k1,8969:18389897,43682120:220856 -k1,8969:19358519,43682120:220856 -k1,8969:21092602,43682120:220857 -k1,8969:21929496,43682120:220856 -k1,8969:23870672,43682120:220856 -k1,8969:25083088,43682120:220856 -k1,8969:28087914,43682120:220857 -k1,8969:30867296,43682120:220856 -k1,8970:32583029,43682120:0 -) -(1,8970:6630773,44523608:25952256,505283,134348 -g1,8969:8237715,44523608 -g1,8969:9123106,44523608 -g1,8969:12412358,44523608 -g1,8969:13227625,44523608 -g1,8969:15844477,44523608 -h1,8969:16242936,44523608:0,0,0 -k1,8970:32583029,44523608:16166423 -g1,8970:32583029,44523608 -) -v1,8972:6630773,45889384:0,393216,0 -] -(1,8973:32583029,45706769:0,0,0 -g1,8973:32583029,45706769 -) -) -] -(1,8973:6630773,47279633:25952256,0,0 -h1,8973:6630773,47279633:25952256,0,0 -) -] -(1,8973:4262630,4025873:0,0,0 -[1,8973:-473656,4025873:0,0,0 -(1,8973:-473656,-710413:0,0,0 -(1,8973:-473656,-710413:0,0,0 -g1,8973:-473656,-710413 -) -g1,8973:-473656,-710413 -) -] -) -] -!26961 -}150 -Input:1193:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1194:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1195:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1196:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1197:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1198:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1199:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1200:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1201:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1202:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1203:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1204:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1205:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1206:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1207:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1208:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1516 -{151 -[1,9004:4262630,47279633:28320399,43253760,0 -(1,9004:4262630,4025873:0,0,0 -[1,9004:-473656,4025873:0,0,0 -(1,9004:-473656,-710413:0,0,0 -(1,9004:-473656,-644877:0,0,0 -k1,9004:-473656,-644877:-65536 -) -(1,9004:-473656,4736287:0,0,0 -k1,9004:-473656,4736287:5209943 +[1,8314:3078558,4812305:0,0,0 +(1,8314:3078558,49800853:0,16384,2228224 +g1,8314:29030814,49800853 +g1,8314:36135244,49800853 +(1,6148:36135244,49800853:1720320,16384,2228224 +(1,6148:36135244,52029077:16384,1703936,0 +[1,6148:36135244,52029077:25952256,1703936,0 +(1,6148:36135244,51504789:25952256,1179648,0 +(1,6148:36135244,51504789:16384,1179648,0 +r1,8314:36151628,51504789:16384,1179648,0 ) -g1,9004:-473656,-710413 +k1,6148:62087500,51504789:25935872 +g1,6148:62087500,51504789 ) ] ) -[1,9004:6630773,47279633:25952256,43253760,0 -[1,9004:6630773,4812305:25952256,786432,0 -(1,9004:6630773,4812305:25952256,505283,134348 -(1,9004:6630773,4812305:25952256,505283,134348 -g1,9004:3078558,4812305 -[1,9004:3078558,4812305:0,0,0 -(1,9004:3078558,2439708:0,1703936,0 -k1,9004:1358238,2439708:-1720320 -(1,8393:1358238,2439708:1720320,1703936,0 -(1,8393:1358238,2439708:1179648,16384,0 -r1,9004:2537886,2439708:1179648,16384,0 +g1,6148:36675916,49800853 +(1,6148:36675916,49800853:1179648,16384,0 +r1,8314:37855564,49800853:1179648,16384,0 ) -g1,8393:3062174,2439708 -(1,8393:3062174,2439708:16384,1703936,0 -[1,8393:3062174,2439708:25952256,1703936,0 -(1,8393:3062174,1915420:25952256,1179648,0 -(1,8393:3062174,1915420:16384,1179648,0 -r1,9004:3078558,1915420:16384,1179648,0 ) -k1,8393:29014430,1915420:25935872 -g1,8393:29014430,1915420 +k1,8314:3078556,49800853:-34777008 ) ] +g1,8314:6630773,4812305 +g1,8314:6630773,4812305 +g1,8314:8951402,4812305 +g1,8314:10361081,4812305 +g1,8314:12911086,4812305 +g1,8314:14538345,4812305 +k1,8314:31387653,4812305:16849308 +) +) +] +[1,8314:6630773,45706769:25952256,40108032,0 +(1,8314:6630773,45706769:25952256,40108032,0 +(1,8314:6630773,45706769:0,0,0 +g1,8314:6630773,45706769 +) +[1,8314:6630773,45706769:25952256,40108032,0 +v1,8282:6630773,6254097:0,393216,0 +(1,8282:6630773,10871921:25952256,5011040,0 +g1,8282:6630773,10871921 +g1,8282:6237557,10871921 +r1,8314:6368629,10871921:131072,5011040,0 +g1,8282:6567858,10871921 +g1,8282:6764466,10871921 +[1,8282:6764466,10871921:25818563,5011040,0 +v1,8264:6764466,6254097:0,393216,0 +(1,8278:6764466,9694386:25818563,3833505,196608 +g1,8278:6764466,9694386 +g1,8278:6764466,9694386 +g1,8278:6567858,9694386 +(1,8278:6567858,9694386:0,3833505,196608 +r1,8314:32779637,9694386:26211779,4030113,196608 +k1,8278:6567857,9694386:-26211780 +) +(1,8278:6567858,9694386:26211779,3833505,196608 +[1,8278:6764466,9694386:25818563,3636897,0 +(1,8266:6764466,6481928:25818563,424439,86428 +(1,8265:6764466,6481928:0,0,0 +g1,8265:6764466,6481928 +g1,8265:6764466,6481928 +g1,8265:6436786,6481928 +(1,8265:6436786,6481928:0,0,0 +) +g1,8265:6764466,6481928 +) +k1,8266:6764466,6481928:0 +g1,8266:9420098,6481928 +g1,8266:11743776,6481928 +g1,8266:12739638,6481928 +k1,8266:12739638,6481928:0 +h1,8266:14067454,6481928:0,0,0 +k1,8266:32583030,6481928:18515576 +g1,8266:32583030,6481928 +) +(1,8267:6764466,7166783:25818563,424439,79822 +h1,8267:6764466,7166783:0,0,0 +k1,8267:6764466,7166783:0 +h1,8267:10747913,7166783:0,0,0 +k1,8267:32583029,7166783:21835116 +g1,8267:32583029,7166783 +) +(1,8271:6764466,7982710:25818563,424439,79822 +(1,8269:6764466,7982710:0,0,0 +g1,8269:6764466,7982710 +g1,8269:6764466,7982710 +g1,8269:6436786,7982710 +(1,8269:6436786,7982710:0,0,0 +) +g1,8269:6764466,7982710 +) +g1,8271:7760328,7982710 +g1,8271:9088144,7982710 +h1,8271:10415960,7982710:0,0,0 +k1,8271:32583028,7982710:22167068 +g1,8271:32583028,7982710 +) +(1,8273:6764466,8798637:25818563,344616,0 +(1,8272:6764466,8798637:0,0,0 +g1,8272:6764466,8798637 +g1,8272:6764466,8798637 +g1,8272:6436786,8798637 +(1,8272:6436786,8798637:0,0,0 +) +g1,8272:6764466,8798637 +) +h1,8273:7096420,8798637:0,0,0 +k1,8273:32583028,8798637:25486608 +g1,8273:32583028,8798637 +) +(1,8277:6764466,9614564:25818563,424439,79822 +(1,8275:6764466,9614564:0,0,0 +g1,8275:6764466,9614564 +g1,8275:6764466,9614564 +g1,8275:6436786,9614564 +(1,8275:6436786,9614564:0,0,0 +) +g1,8275:6764466,9614564 +) +g1,8277:7760328,9614564 +g1,8277:8092282,9614564 +g1,8277:9420098,9614564 +g1,8277:9752052,9614564 +g1,8277:10415960,9614564 +g1,8277:10747914,9614564 +g1,8277:11411822,9614564 +g1,8277:11743776,9614564 +g1,8277:12407684,9614564 +g1,8277:12739638,9614564 +g1,8277:13403546,9614564 +g1,8277:13735500,9614564 +g1,8277:14399408,9614564 +g1,8277:14731362,9614564 +g1,8277:15395270,9614564 +g1,8277:15727224,9614564 +g1,8277:16391132,9614564 +g1,8277:16723086,9614564 +g1,8277:17386994,9614564 +g1,8277:17718948,9614564 +g1,8277:18382856,9614564 +h1,8277:19046764,9614564:0,0,0 +k1,8277:32583029,9614564:13536265 +g1,8277:32583029,9614564 +) +] +) +g1,8278:32583029,9694386 +g1,8278:6764466,9694386 +g1,8278:6764466,9694386 +g1,8278:32583029,9694386 +g1,8278:32583029,9694386 +) +h1,8278:6764466,9890994:0,0,0 +(1,8282:6764466,10756074:25818563,513147,115847 +h1,8281:6764466,10756074:983040,0,0 +g1,8281:8574570,10756074 +g1,8281:9977040,10756074 +g1,8281:11543350,10756074 +g1,8281:12610931,10756074 +g1,8281:14578977,10756074 +g1,8281:16253421,10756074 +g1,8281:17965876,10756074 +(1,8281:17965876,10756074:0,452978,115847 +r1,8314:19730989,10756074:1765113,568825,115847 +k1,8281:17965876,10756074:-1765113 +) +(1,8281:17965876,10756074:1765113,452978,115847 +k1,8281:17965876,10756074:3277 +h1,8281:19727712,10756074:0,411205,112570 +) +g1,8281:19930218,10756074 +g1,8281:22456630,10756074 +g1,8281:23323015,10756074 +(1,8281:23323015,10756074:0,452978,115847 +r1,8314:25439840,10756074:2116825,568825,115847 +k1,8281:23323015,10756074:-2116825 +) +(1,8281:23323015,10756074:2116825,452978,115847 +k1,8281:23323015,10756074:3277 +h1,8281:25436563,10756074:0,411205,112570 +) +k1,8282:32583029,10756074:6969519 +g1,8282:32583029,10756074 +) +] +g1,8282:32583029,10871921 +) +h1,8282:6630773,10871921:0,0,0 +v1,8285:6630773,11737001:0,393216,0 +(1,8286:6630773,18288086:25952256,6944301,0 +g1,8286:6630773,18288086 +g1,8286:6237557,18288086 +r1,8314:6368629,18288086:131072,6944301,0 +g1,8286:6567858,18288086 +g1,8286:6764466,18288086 +[1,8286:6764466,18288086:25818563,6944301,0 +(1,8286:6764466,12098178:25818563,754393,260573 +(1,8285:6764466,12098178:0,754393,260573 +r1,8314:8010564,12098178:1246098,1014966,260573 +k1,8285:6764466,12098178:-1246098 +) +(1,8285:6764466,12098178:1246098,754393,260573 +) +k1,8285:8246675,12098178:236111 +k1,8285:8574355,12098178:327680 +k1,8285:10642853,12098178:236111 +k1,8285:11410461,12098178:236111 +k1,8285:12455943,12098178:236112 +k1,8285:16005554,12098178:236111 +k1,8285:16893093,12098178:236111 +k1,8285:18148289,12098178:236111 +k1,8285:21150675,12098178:236111 +k1,8285:23742150,12098178:236111 +k1,8285:26795655,12098178:236112 +k1,8285:28223211,12098178:236111 +k1,8285:30861872,12098178:236111 +k1,8285:31757275,12098178:236111 +k1,8286:32583029,12098178:0 +) +(1,8286:6764466,12963258:25818563,513147,134348 +k1,8285:9672601,12963258:238198 +k1,8285:10982968,12963258:238198 +k1,8285:12287437,12963258:238198 +k1,8285:13291751,12963258:238198 +k1,8285:16555746,12963258:238198 +k1,8285:17985389,12963258:238198 +k1,8285:21300502,12963258:238198 +k1,8285:22823206,12963258:238198 +k1,8285:24165686,12963258:238198 +k1,8285:25151650,12963258:238198 +k1,8285:26903074,12963258:238198 +k1,8285:27792700,12963258:238198 +k1,8285:30293201,12963258:238198 +k1,8285:32583029,12963258:0 +) +(1,8286:6764466,13828338:25818563,505283,134348 +k1,8285:8112760,13828338:215832 +k1,8285:11055545,13828338:215832 +k1,8285:15552189,13828338:215832 +k1,8285:19050718,13828338:215831 +k1,8285:20647394,13828338:215832 +k1,8285:21967508,13828338:215832 +k1,8285:22931106,13828338:215832 +k1,8285:23502798,13828338:215832 +k1,8285:26395120,13828338:215832 +k1,8285:28308989,13828338:215831 +k1,8285:30260214,13828338:215832 +k1,8285:32168186,13828338:215832 +k1,8286:32583029,13828338:0 +) +(1,8286:6764466,14693418:25818563,505283,134348 +k1,8285:10118122,14693418:269532 +k1,8285:11881219,14693418:269531 +k1,8285:12836913,14693418:269532 +k1,8285:14125530,14693418:269532 +k1,8285:17776719,14693418:269532 +k1,8285:18969652,14693418:269531 +k1,8285:20974577,14693418:269532 +k1,8285:23471678,14693418:269532 +k1,8285:26850238,14693418:269532 +k1,8285:27651266,14693418:269531 +k1,8285:28276658,14693418:269532 +k1,8285:32583029,14693418:0 +) +(1,8286:6764466,15558498:25818563,505283,134348 +k1,8285:8907985,15558498:188580 +k1,8285:10381070,15558498:188579 +k1,8285:12856857,15558498:188580 +k1,8285:13576934,15558498:188580 +k1,8285:17330673,15558498:188580 +k1,8285:21240386,15558498:188579 +k1,8285:22804567,15558498:188580 +k1,8285:24691185,15558498:188580 +k1,8285:27958646,15558498:188580 +k1,8285:28503085,15558498:188579 +k1,8285:29974860,15558498:188580 +k1,8285:31718609,15558498:188580 +k1,8286:32583029,15558498:0 +) +(1,8286:6764466,16423578:25818563,513147,134348 +k1,8285:9038187,16423578:244726 +k1,8285:10676864,16423578:244726 +k1,8285:11940675,16423578:244726 +k1,8285:16808966,16423578:244726 +k1,8285:19838317,16423578:244726 +k1,8285:21030694,16423578:244726 +k1,8285:21907187,16423578:244726 +k1,8285:22639456,16423578:244681 +k1,8285:24468187,16423578:244726 +k1,8285:27374330,16423578:244726 +k1,8285:28278348,16423578:244726 +k1,8285:31490544,16423578:244726 +k1,8285:32583029,16423578:0 +) +(1,8286:6764466,17288658:25818563,513147,134348 +k1,8285:7626383,17288658:202625 +k1,8285:11994477,17288658:202626 +k1,8285:15306130,17288658:202625 +k1,8285:16500315,17288658:202625 +k1,8285:17722025,17288658:202625 +k1,8285:19935296,17288658:202626 +k1,8285:22916648,17288658:202625 +k1,8285:23880801,17288658:202625 +k1,8285:26071133,17288658:202625 +k1,8285:28208382,17288658:202626 +k1,8285:31436804,17288658:202625 +k1,8286:32583029,17288658:0 +) +(1,8286:6764466,18153738:25818563,505283,134348 +(1,8285:6764466,18153738:0,452978,115847 +r1,8314:8177867,18153738:1413401,568825,115847 +k1,8285:6764466,18153738:-1413401 +) +(1,8285:6764466,18153738:1413401,452978,115847 +k1,8285:6764466,18153738:3277 +h1,8285:8174590,18153738:0,411205,112570 +) +g1,8285:8377096,18153738 +g1,8285:9808402,18153738 +g1,8285:12286318,18153738 +h1,8285:13256906,18153738:0,0,0 +g1,8285:13456135,18153738 +g1,8285:14464734,18153738 +g1,8285:16162116,18153738 +h1,8285:17357493,18153738:0,0,0 +k1,8286:32583029,18153738:14844772 +g1,8286:32583029,18153738 +) +] +g1,8286:32583029,18288086 +) +h1,8286:6630773,18288086:0,0,0 +(1,8292:6630773,21119246:25952256,32768,229376 +(1,8292:6630773,21119246:0,32768,229376 +(1,8292:6630773,21119246:5505024,32768,229376 +r1,8314:12135797,21119246:5505024,262144,229376 +) +k1,8292:6630773,21119246:-5505024 +) +(1,8292:6630773,21119246:25952256,32768,0 +r1,8314:32583029,21119246:25952256,32768,0 +) +) +(1,8292:6630773,22751098:25952256,606339,161218 +(1,8292:6630773,22751098:1974731,575668,0 +g1,8292:6630773,22751098 +g1,8292:8605504,22751098 +) +g1,8292:11483059,22751098 +g1,8292:13192762,22751098 +g1,8292:16369948,22751098 +k1,8292:32583029,22751098:14519893 +g1,8292:32583029,22751098 +) +(1,8294:6630773,24081484:25952256,555811,147783 +(1,8294:6630773,24081484:2450326,527696,0 +g1,8294:6630773,24081484 +g1,8294:9081099,24081484 +) +g1,8294:10960475,24081484 +g1,8294:12626466,24081484 +g1,8294:13557143,24081484 +g1,8294:14279481,24081484 +g1,8294:15846709,24081484 +k1,8294:32583029,24081484:13388479 +g1,8294:32583029,24081484 +) +(1,8297:6630773,25339780:25952256,513147,134348 +k1,8296:7709192,25339780:249389 +k1,8296:8706348,25339780:249390 +k1,8296:10264491,25339780:249389 +k1,8296:11165309,25339780:249390 +k1,8296:13820525,25339780:249389 +k1,8296:15720112,25339780:249390 +k1,8296:19582501,25339780:249389 +k1,8296:22997280,25339780:249390 +k1,8296:24115021,25339780:249389 +k1,8296:25894677,25339780:249390 +k1,8296:27836206,25339780:249389 +k1,8296:29282283,25339780:249390 +k1,8296:31094706,25339780:249389 +k1,8296:32583029,25339780:0 +) +(1,8297:6630773,26204860:25952256,513147,126483 +k1,8296:7787671,26204860:288546 +k1,8296:9168703,26204860:288547 +(1,8296:9168703,26204860:0,414482,115847 +r1,8314:10582104,26204860:1413401,530329,115847 +k1,8296:9168703,26204860:-1413401 +) +(1,8296:9168703,26204860:1413401,414482,115847 +k1,8296:9168703,26204860:3277 +h1,8296:10578827,26204860:0,411205,112570 +) +k1,8296:11044320,26204860:288546 +k1,8296:12489577,26204860:288547 +k1,8296:13437415,26204860:288546 +k1,8296:14745047,26204860:288547 +k1,8296:16785370,26204860:288546 +k1,8296:18463280,26204860:288547 +k1,8296:20016671,26204860:288546 +k1,8296:23063628,26204860:288547 +k1,8296:23968212,26204860:288546 +k1,8296:25690687,26204860:288547 +k1,8296:26567746,26204860:288546 +k1,8296:29646161,26204860:288547 +(1,8296:29646161,26204860:0,452978,115847 +r1,8314:31762986,26204860:2116825,568825,115847 +k1,8296:29646161,26204860:-2116825 +) +(1,8296:29646161,26204860:2116825,452978,115847 +k1,8296:29646161,26204860:3277 +h1,8296:31759709,26204860:0,411205,112570 +) +k1,8296:32051532,26204860:288546 +k1,8296:32583029,26204860:0 +) +(1,8297:6630773,27069940:25952256,505283,134348 +k1,8296:8420173,27069940:276174 +k1,8296:9347775,27069940:276174 +k1,8296:11000205,27069940:276174 +k1,8296:12665742,27069940:276174 +k1,8296:15231743,27069940:276173 +k1,8296:16792423,27069940:276174 +k1,8296:18060157,27069940:276174 +k1,8296:21094741,27069940:276174 +k1,8296:21986953,27069940:276174 +k1,8296:22677893,27069940:276097 +k1,8296:23636952,27069940:276174 +k1,8296:27052955,27069940:276173 +k1,8296:27945167,27069940:276174 +k1,8296:31305465,27069940:276174 +k1,8296:32051532,27069940:276174 +k1,8296:32583029,27069940:0 +) +(1,8297:6630773,27935020:25952256,513147,134348 +k1,8296:8138706,27935020:222117 +k1,8296:10990782,27935020:222116 +k1,8296:11864327,27935020:222117 +k1,8296:14268137,27935020:222116 +k1,8296:15879617,27935020:222117 +k1,8296:17913148,27935020:222116 +k1,8296:18751303,27935020:222117 +k1,8296:20286761,27935020:222116 +k1,8296:21902829,27935020:222117 +k1,8296:24387248,27935020:222116 +k1,8296:27293720,27935020:222117 +k1,8296:29897414,27935020:222116 +k1,8296:30881059,27935020:222117 +k1,8296:32583029,27935020:0 +) +(1,8297:6630773,28800100:25952256,513147,134348 +k1,8296:9613495,28800100:223656 +k1,8296:10520037,28800100:223657 +k1,8296:14087340,28800100:223656 +k1,8296:15824223,28800100:223657 +k1,8296:16995530,28800100:223656 +k1,8296:18608550,28800100:223657 +k1,8296:21958929,28800100:223656 +k1,8296:24717519,28800100:223657 +k1,8296:27742183,28800100:223656 +k1,8296:30724250,28800100:223657 +k1,8296:31563944,28800100:223656 +k1,8297:32583029,28800100:0 +) +(1,8297:6630773,29665180:25952256,513147,134348 +k1,8296:7280268,29665180:234652 +k1,8296:11470054,29665180:234688 +k1,8296:12390904,29665180:234688 +k1,8296:13904199,29665180:234688 +k1,8296:14825049,29665180:234688 +k1,8296:18789391,29665180:234688 +k1,8296:21934532,29665180:234687 +k1,8296:23884953,29665180:234688 +k1,8296:26903610,29665180:234688 +k1,8296:30164095,29665180:234688 +k1,8296:32583029,29665180:0 +) +(1,8297:6630773,30530260:25952256,513147,134348 +k1,8296:7477170,30530260:187105 +k1,8296:10066825,30530260:187105 +k1,8296:11445375,30530260:187105 +k1,8296:14539657,30530260:187105 +k1,8296:17069019,30530260:187105 +k1,8296:19541364,30530260:187105 +k1,8296:22412825,30530260:187106 +k1,8296:24020751,30530260:187105 +k1,8296:24859284,30530260:187105 +k1,8296:26458690,30530260:187105 +k1,8296:27328680,30530260:187105 +k1,8296:29697479,30530260:187105 +k1,8296:32583029,30530260:0 +) +(1,8297:6630773,31395340:25952256,505283,126483 +k1,8296:8194278,31395340:174142 +k1,8296:8899917,31395340:174142 +k1,8296:12203403,31395340:174142 +k1,8296:12993584,31395340:174143 +k1,8296:13582544,31395340:174117 +k1,8296:18582757,31395340:174142 +k1,8296:19372937,31395340:174142 +k1,8296:19996631,31395340:174117 +k1,8296:21704971,31395340:174142 +k1,8296:26503988,31395340:174142 +k1,8296:27869576,31395340:174143 +k1,8296:28659756,31395340:174142 +k1,8296:30037139,31395340:174142 +k1,8296:31966991,31395340:174142 +k1,8296:32583029,31395340:0 +) +(1,8297:6630773,32260420:25952256,513147,134348 +k1,8296:9271643,32260420:223247 +h1,8296:10068561,32260420:0,0,0 +k1,8296:10291807,32260420:223246 +k1,8296:11324424,32260420:223247 +k1,8296:13045823,32260420:223246 +h1,8296:14241200,32260420:0,0,0 +k1,8296:14638117,32260420:223247 +k1,8296:15331256,32260420:223246 +k1,8296:16086000,32260420:223247 +k1,8296:17595062,32260420:223246 +k1,8296:19402314,32260420:223247 +k1,8296:20276988,32260420:223246 +k1,8296:22008218,32260420:223247 +k1,8296:22847502,32260420:223246 +k1,8296:24727499,32260420:223247 +k1,8296:26235251,32260420:223246 +k1,8296:27074536,32260420:223247 +k1,8296:27886295,32260420:223246 +k1,8296:29721072,32260420:223247 +k1,8296:32583029,32260420:0 +) +(1,8297:6630773,33125500:25952256,513147,134348 +k1,8296:9791063,33125500:259011 +k1,8296:12976258,33125500:259012 +k1,8296:14226829,33125500:259011 +k1,8296:17301923,33125500:259012 +k1,8296:18247096,33125500:259011 +k1,8296:21908737,33125500:259012 +k1,8296:22819176,33125500:259011 +k1,8296:24097272,33125500:259011 +(1,8296:24097272,33125500:0,459977,115847 +r1,8314:25510673,33125500:1413401,575824,115847 +k1,8296:24097272,33125500:-1413401 +) +(1,8296:24097272,33125500:1413401,459977,115847 +k1,8296:24097272,33125500:3277 +h1,8296:25507396,33125500:0,411205,112570 +) +k1,8296:25769685,33125500:259012 +k1,8296:26711581,33125500:259011 +(1,8296:26711581,33125500:0,452978,115847 +r1,8314:28124982,33125500:1413401,568825,115847 +k1,8296:26711581,33125500:-1413401 +) +(1,8296:26711581,33125500:1413401,452978,115847 +k1,8296:26711581,33125500:3277 +h1,8296:28121705,33125500:0,411205,112570 +) +k1,8296:28383994,33125500:259012 +k1,8296:31923737,33125500:259011 +k1,8296:32583029,33125500:0 +) +(1,8297:6630773,33990580:25952256,513147,134348 +g1,8296:8581779,33990580 +g1,8296:11806805,33990580 +g1,8296:13238111,33990580 +g1,8296:15716027,33990580 +h1,8296:17483533,33990580:0,0,0 +g1,8296:17682762,33990580 +g1,8296:18691361,33990580 +g1,8296:20388743,33990580 +h1,8296:21584120,33990580:0,0,0 +k1,8297:32583029,33990580:10618145 +g1,8297:32583029,33990580 +) +(1,8299:6630773,34855660:25952256,513147,134348 +h1,8298:6630773,34855660:983040,0,0 +k1,8298:8436028,34855660:194380 +k1,8298:9649494,34855660:194381 +k1,8298:11227994,34855660:194380 +k1,8298:14083792,34855660:194381 +k1,8298:15146524,34855660:194380 +k1,8298:16717161,34855660:194381 +k1,8298:18300904,34855660:194380 +k1,8298:21253695,34855660:194381 +k1,8298:22064113,34855660:194380 +k1,8298:22673332,34855660:194376 +k1,8298:23553874,34855660:194380 +k1,8298:24163093,34855660:194376 +k1,8298:26647301,34855660:194380 +k1,8298:27603210,34855660:194381 +k1,8298:29887533,34855660:194380 +k1,8299:32583029,34855660:0 +) +(1,8299:6630773,35720740:25952256,513147,134348 +(1,8298:6630773,35720740:0,452978,115847 +r1,8314:8747598,35720740:2116825,568825,115847 +k1,8298:6630773,35720740:-2116825 +) +(1,8298:6630773,35720740:2116825,452978,115847 +k1,8298:6630773,35720740:3277 +h1,8298:8744321,35720740:0,411205,112570 +) +g1,8298:9120497,35720740 +g1,8298:10516413,35720740 +g1,8298:12859980,35720740 +g1,8298:13474052,35720740 +g1,8298:15632807,35720740 +(1,8298:15632807,35720740:0,414482,115847 +r1,8314:17046208,35720740:1413401,530329,115847 +k1,8298:15632807,35720740:-1413401 +) +(1,8298:15632807,35720740:1413401,414482,115847 +k1,8298:15632807,35720740:3277 +h1,8298:17042931,35720740:0,411205,112570 +) +g1,8298:17245437,35720740 +g1,8298:17976163,35720740 +g1,8298:18531252,35720740 +g1,8298:20119844,35720740 +k1,8299:32583029,35720740:10413219 +g1,8299:32583029,35720740 +) +v1,8301:6630773,36405595:0,393216,0 +(1,8305:6630773,36713248:25952256,700869,196608 +g1,8305:6630773,36713248 +g1,8305:6630773,36713248 +g1,8305:6434165,36713248 +(1,8305:6434165,36713248:0,700869,196608 +r1,8314:32779637,36713248:26345472,897477,196608 +k1,8305:6434165,36713248:-26345472 +) +(1,8305:6434165,36713248:26345472,700869,196608 +[1,8305:6630773,36713248:25952256,504261,0 +(1,8303:6630773,36633426:25952256,424439,79822 +(1,8302:6630773,36633426:0,0,0 +g1,8302:6630773,36633426 +g1,8302:6630773,36633426 +g1,8302:6303093,36633426 +(1,8302:6303093,36633426:0,0,0 +) +g1,8302:6630773,36633426 +) +k1,8303:6630773,36633426:0 +h1,8303:9950313,36633426:0,0,0 +k1,8303:32583029,36633426:22632716 +g1,8303:32583029,36633426 +) +] +) +g1,8305:32583029,36713248 +g1,8305:6630773,36713248 +g1,8305:6630773,36713248 +g1,8305:32583029,36713248 +g1,8305:32583029,36713248 +) +h1,8305:6630773,36909856:0,0,0 +(1,8310:6630773,37774936:25952256,513147,126483 +h1,8308:6630773,37774936:983040,0,0 +k1,8308:9417077,37774936:198287 +k1,8308:10483716,37774936:198287 +k1,8308:12157219,37774936:198288 +k1,8308:12711366,37774936:198287 +k1,8308:14299016,37774936:198287 +k1,8308:15431846,37774936:198287 +k1,8308:18587774,37774936:198288 +k1,8308:19805146,37774936:198287 +k1,8308:21309566,37774936:198287 +k1,8308:22863138,37774936:198287 +k1,8308:23592923,37774936:198288 +k1,8308:26078417,37774936:198287 +k1,8308:26928132,37774936:198287 +k1,8308:29494890,37774936:198287 +k1,8308:30324945,37774936:198288 +k1,8308:31714677,37774936:198287 +k1,8308:32583029,37774936:0 +) +(1,8310:6630773,38640016:25952256,505283,134348 +g1,8308:7962464,38640016 +g1,8308:8976961,38640016 +g1,8308:10379431,38640016 +g1,8308:11972611,38640016 +(1,8308:11972611,38640016:0,414482,115847 +r1,8314:13386012,38640016:1413401,530329,115847 +k1,8308:11972611,38640016:-1413401 +) +(1,8308:11972611,38640016:1413401,414482,115847 +k1,8308:11972611,38640016:3277 +h1,8308:13382735,38640016:0,411205,112570 +) +g1,8308:13585241,38640016 +g1,8308:14400508,38640016 +g1,8308:16878424,38640016 +(1,8308:16878424,38640016:661914,485622,0 +) +g1,8308:17739567,38640016 +g1,8308:18748166,38640016 +g1,8308:20445548,38640016 +(1,8308:20445548,38640016:661914,485622,0 +) +g1,8308:21480361,38640016 +k1,8310:32583029,38640016:11102668 +g1,8310:32583029,38640016 +) +(1,8311:6630773,40756834:25952256,564462,8650 +(1,8311:6630773,40756834:2450326,534184,0 +g1,8311:6630773,40756834 +g1,8311:9081099,40756834 +) +g1,8311:10700953,40756834 +k1,8311:32583029,40756834:20380450 +g1,8311:32583029,40756834 +) +(1,8314:6630773,42015130:25952256,513147,134348 +k1,8313:7629340,42015130:238349 +k1,8313:10306939,42015130:238349 +k1,8313:11158051,42015130:238350 +k1,8313:12415485,42015130:238349 +k1,8313:13836759,42015130:238349 +k1,8313:14734400,42015130:238349 +k1,8313:15328610,42015130:238350 +k1,8313:18089440,42015130:238349 +k1,8313:19346874,42015130:238349 +k1,8313:21929446,42015130:238349 +k1,8313:25552075,42015130:238350 +k1,8313:29152421,42015130:238349 +k1,8313:30409855,42015130:238349 +k1,8313:32583029,42015130:0 +) +(1,8314:6630773,42880210:25952256,513147,134348 +k1,8313:7573355,42880210:283290 +k1,8313:9315475,42880210:283289 +k1,8313:11195222,42880210:283290 +k1,8313:12010008,42880210:283289 +k1,8313:14104713,42880210:283290 +k1,8313:15655468,42880210:283289 +k1,8313:16294618,42880210:283290 +k1,8313:17560947,42880210:283289 +k1,8313:19712013,42880210:283290 +(1,8313:19712013,42880210:0,414482,115847 +r1,8314:21828838,42880210:2116825,530329,115847 +k1,8313:19712013,42880210:-2116825 +) +(1,8313:19712013,42880210:2116825,414482,115847 +k1,8313:19712013,42880210:3277 +h1,8313:21825561,42880210:0,411205,112570 +) +k1,8313:22285797,42880210:283289 +k1,8313:23196922,42880210:283290 +k1,8313:26146216,42880210:283289 +k1,8313:27080934,42880210:283290 +k1,8313:29397806,42880210:283290 +k1,8313:30700180,42880210:283289 +k1,8313:32583029,42880210:0 +) +(1,8314:6630773,43745290:25952256,505283,134348 +k1,8313:10411079,43745290:222356 +k1,8313:11091532,43745290:222356 +k1,8313:11845384,43745290:222355 +k1,8313:14697700,43745290:222356 +k1,8313:15571484,43745290:222356 +k1,8313:17184514,43745290:222356 +k1,8313:18563580,43745290:222356 +k1,8313:19468820,43745290:222355 +k1,8313:21341373,43745290:222356 +k1,8313:21978549,43745290:222333 +k1,8313:24490733,43745290:222356 +k1,8313:27118915,43745290:222355 +k1,8313:27957309,43745290:222356 +k1,8313:29198750,43745290:222356 +k1,8313:32583029,43745290:0 +) +(1,8314:6630773,44610370:25952256,513147,134348 +k1,8313:7433537,44610370:151336 +k1,8313:8929672,44610370:151336 +k1,8313:10816400,44610370:151335 +k1,8313:11986821,44610370:151336 +k1,8313:13791630,44610370:151336 +k1,8313:14926006,44610370:151336 +k1,8313:17257724,44610370:151335 +k1,8313:19010105,44610370:151336 +k1,8313:20144481,44610370:151336 +k1,8313:22033832,44610370:151336 +k1,8313:23172139,44610370:151335 +(1,8313:23172139,44610370:0,452978,115847 +r1,8314:24585540,44610370:1413401,568825,115847 +k1,8313:23172139,44610370:-1413401 +) +(1,8313:23172139,44610370:1413401,452978,115847 +k1,8313:23172139,44610370:3277 +h1,8313:24582263,44610370:0,411205,112570 +) +k1,8313:24736876,44610370:151336 +k1,8313:25571097,44610370:151336 +(1,8313:25571097,44610370:0,452978,115847 +r1,8314:26984498,44610370:1413401,568825,115847 +k1,8313:25571097,44610370:-1413401 +) +(1,8313:25571097,44610370:1413401,452978,115847 +k1,8313:25571097,44610370:3277 +h1,8313:26981221,44610370:0,411205,112570 +) +k1,8313:27516598,44610370:151336 +k1,8313:28939331,44610370:151335 +k1,8313:29773552,44610370:151336 +k1,8313:31575085,44610370:151336 +k1,8314:32583029,44610370:0 +) +(1,8314:6630773,45475450:25952256,513147,134348 +k1,8313:8484612,45475450:185292 +k1,8313:11796627,45475450:185292 +k1,8313:12633347,45475450:185292 +k1,8313:13950446,45475450:185292 +k1,8313:15918317,45475450:185292 +k1,8313:16786494,45475450:185292 +k1,8313:18526955,45475450:185292 +k1,8313:19816530,45475450:185293 +k1,8313:20749588,45475450:185292 +k1,8313:22746295,45475450:185292 +k1,8313:24199053,45475450:185292 +k1,8313:24740205,45475450:185292 +k1,8313:26798516,45475450:185292 +k1,8313:27966848,45475450:185292 +k1,8313:29887533,45475450:185292 +k1,8314:32583029,45475450:0 +) +] +(1,8314:32583029,45706769:0,0,0 +g1,8314:32583029,45706769 +) +) +] +(1,8314:6630773,47279633:25952256,0,0 +h1,8314:6630773,47279633:25952256,0,0 +) +] +(1,8314:4262630,4025873:0,0,0 +[1,8314:-473656,4025873:0,0,0 +(1,8314:-473656,-710413:0,0,0 +(1,8314:-473656,-710413:0,0,0 +g1,8314:-473656,-710413 +) +g1,8314:-473656,-710413 +) +] +) +] +!26700 +}126 +Input:1154:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1155:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1156:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1157:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1158:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!482 +{127 +[1,8385:4262630,47279633:28320399,43253760,0 +(1,8385:4262630,4025873:0,0,0 +[1,8385:-473656,4025873:0,0,0 +(1,8385:-473656,-710413:0,0,0 +(1,8385:-473656,-644877:0,0,0 +k1,8385:-473656,-644877:-65536 ) +(1,8385:-473656,4736287:0,0,0 +k1,8385:-473656,4736287:5209943 ) -) -] -[1,9004:3078558,4812305:0,0,0 -(1,9004:3078558,2439708:0,1703936,0 -g1,9004:29030814,2439708 -g1,9004:36135244,2439708 -(1,8393:36135244,2439708:1720320,1703936,0 -(1,8393:36135244,2439708:16384,1703936,0 -[1,8393:36135244,2439708:25952256,1703936,0 -(1,8393:36135244,1915420:25952256,1179648,0 -(1,8393:36135244,1915420:16384,1179648,0 -r1,9004:36151628,1915420:16384,1179648,0 -) -k1,8393:62087500,1915420:25935872 -g1,8393:62087500,1915420 +g1,8385:-473656,-710413 ) ] ) -g1,8393:36675916,2439708 -(1,8393:36675916,2439708:1179648,16384,0 -r1,9004:37855564,2439708:1179648,16384,0 +[1,8385:6630773,47279633:25952256,43253760,0 +[1,8385:6630773,4812305:25952256,786432,0 +(1,8385:6630773,4812305:25952256,505283,11795 +(1,8385:6630773,4812305:25952256,505283,11795 +g1,8385:3078558,4812305 +[1,8385:3078558,4812305:0,0,0 +(1,8385:3078558,2439708:0,1703936,0 +k1,8385:1358238,2439708:-1720320 +(1,6148:1358238,2439708:1720320,1703936,0 +(1,6148:1358238,2439708:1179648,16384,0 +r1,8385:2537886,2439708:1179648,16384,0 ) +g1,6148:3062174,2439708 +(1,6148:3062174,2439708:16384,1703936,0 +[1,6148:3062174,2439708:25952256,1703936,0 +(1,6148:3062174,1915420:25952256,1179648,0 +(1,6148:3062174,1915420:16384,1179648,0 +r1,8385:3078558,1915420:16384,1179648,0 ) -k1,9004:3078556,2439708:-34777008 +k1,6148:29014430,1915420:25935872 +g1,6148:29014430,1915420 ) ] -[1,9004:3078558,4812305:0,0,0 -(1,9004:3078558,49800853:0,16384,2228224 -k1,9004:1358238,49800853:-1720320 -(1,8393:1358238,49800853:1720320,16384,2228224 -(1,8393:1358238,49800853:1179648,16384,0 -r1,9004:2537886,49800853:1179648,16384,0 ) -g1,8393:3062174,49800853 -(1,8393:3062174,52029077:16384,1703936,0 -[1,8393:3062174,52029077:25952256,1703936,0 -(1,8393:3062174,51504789:25952256,1179648,0 -(1,8393:3062174,51504789:16384,1179648,0 -r1,9004:3078558,51504789:16384,1179648,0 ) -k1,8393:29014430,51504789:25935872 -g1,8393:29014430,51504789 ) ] +[1,8385:3078558,4812305:0,0,0 +(1,8385:3078558,2439708:0,1703936,0 +g1,8385:29030814,2439708 +g1,8385:36135244,2439708 +(1,6148:36135244,2439708:1720320,1703936,0 +(1,6148:36135244,2439708:16384,1703936,0 +[1,6148:36135244,2439708:25952256,1703936,0 +(1,6148:36135244,1915420:25952256,1179648,0 +(1,6148:36135244,1915420:16384,1179648,0 +r1,8385:36151628,1915420:16384,1179648,0 ) -) -) -] -[1,9004:3078558,4812305:0,0,0 -(1,9004:3078558,49800853:0,16384,2228224 -g1,9004:29030814,49800853 -g1,9004:36135244,49800853 -(1,8393:36135244,49800853:1720320,16384,2228224 -(1,8393:36135244,52029077:16384,1703936,0 -[1,8393:36135244,52029077:25952256,1703936,0 -(1,8393:36135244,51504789:25952256,1179648,0 -(1,8393:36135244,51504789:16384,1179648,0 -r1,9004:36151628,51504789:16384,1179648,0 -) -k1,8393:62087500,51504789:25935872 -g1,8393:62087500,51504789 +k1,6148:62087500,1915420:25935872 +g1,6148:62087500,1915420 ) ] ) -g1,8393:36675916,49800853 -(1,8393:36675916,49800853:1179648,16384,0 -r1,9004:37855564,49800853:1179648,16384,0 +g1,6148:36675916,2439708 +(1,6148:36675916,2439708:1179648,16384,0 +r1,8385:37855564,2439708:1179648,16384,0 ) ) -k1,9004:3078556,49800853:-34777008 +k1,8385:3078556,2439708:-34777008 ) ] -g1,9004:6630773,4812305 -k1,9004:21643106,4812305:13816956 -g1,9004:23265777,4812305 -g1,9004:24088253,4812305 -g1,9004:28572226,4812305 -g1,9004:29981905,4812305 -) -) -] -[1,9004:6630773,45706769:25952256,40108032,0 -(1,9004:6630773,45706769:25952256,40108032,0 -(1,9004:6630773,45706769:0,0,0 -g1,9004:6630773,45706769 -) -[1,9004:6630773,45706769:25952256,40108032,0 -v1,8973:6630773,6254097:0,393216,0 -(1,8973:6630773,8503959:25952256,2643078,0 -g1,8973:6630773,8503959 -g1,8973:6303093,8503959 -r1,9004:6401397,8503959:98304,2643078,0 -g1,8973:6600626,8503959 -g1,8973:6797234,8503959 -[1,8973:6797234,8503959:25785795,2643078,0 -(1,8973:6797234,6686635:25785795,825754,196608 -(1,8972:6797234,6686635:0,825754,196608 -r1,9004:7890375,6686635:1093141,1022362,196608 -k1,8972:6797234,6686635:-1093141 -) -(1,8972:6797234,6686635:1093141,825754,196608 -) -k1,8972:8055700,6686635:165325 -k1,8972:9373629,6686635:327680 -k1,8972:10166790,6686635:165326 -k1,8972:11351200,6686635:165325 -k1,8972:12664716,6686635:165325 -k1,8972:14484826,6686635:165326 -k1,8972:17815540,6686635:165325 -k1,8972:18596903,6686635:165325 -k1,8972:20647700,6686635:165326 -k1,8972:23508521,6686635:165325 -k1,8972:25103842,6686635:165325 -k1,8972:25800665,6686635:165326 -k1,8972:26985075,6686635:165325 -k1,8972:29481516,6686635:165325 -k1,8972:30739327,6686635:165326 -k1,8972:31563944,6686635:165325 -k1,8972:32583029,6686635:0 -) -(1,8973:6797234,7528123:25785795,505283,126483 -k1,8972:10728224,7528123:197404 -k1,8972:13397645,7528123:197403 -k1,8972:14786494,7528123:197404 -k1,8972:15599935,7528123:197403 -k1,8972:17682810,7528123:197404 -k1,8972:19367225,7528123:197403 -k1,8972:20096126,7528123:197404 -k1,8972:20751627,7528123:197404 -k1,8972:23919777,7528123:197403 -k1,8972:25669074,7528123:197404 -k1,8972:27092656,7528123:197403 -k1,8972:28309145,7528123:197404 -k1,8972:30002735,7528123:197403 -k1,8972:31391584,7528123:197404 -k1,8972:32583029,7528123:0 -) -(1,8973:6797234,8369611:25785795,513147,134348 -g1,8972:9587101,8369611 -g1,8972:10244427,8369611 -g1,8972:12370414,8369611 -g1,8972:13761088,8369611 -g1,8972:14426278,8369611 -g1,8972:15644592,8369611 -g1,8972:18622548,8369611 -g1,8972:20502120,8369611 -g1,8972:23259219,8369611 -k1,8973:32583029,8369611:5659037 -g1,8973:32583029,8369611 -) -] -g1,8973:32583029,8503959 -) -h1,8973:6630773,8503959:0,0,0 -(1,8976:6630773,11835815:25952256,32768,229376 -(1,8976:6630773,11835815:0,32768,229376 -(1,8976:6630773,11835815:5505024,32768,229376 -r1,9004:12135797,11835815:5505024,262144,229376 -) -k1,8976:6630773,11835815:-5505024 -) -(1,8976:6630773,11835815:25952256,32768,0 -r1,9004:32583029,11835815:25952256,32768,0 -) -) -(1,8976:6630773,13440143:25952256,606339,14155 -(1,8976:6630773,13440143:1974731,582746,14155 -g1,8976:6630773,13440143 -g1,8976:8605504,13440143 -) -g1,8976:13431838,13440143 -k1,8976:32583029,13440143:14987033 -g1,8976:32583029,13440143 -) -(1,8979:6630773,14674847:25952256,513147,126483 -k1,8978:7551978,14674847:160987 -k1,8978:9978545,14674847:160987 -k1,8978:10554337,14674847:160949 -k1,8978:14231987,14674847:160988 -k1,8978:15009012,14674847:160987 -k1,8978:15525859,14674847:160987 -k1,8978:17517922,14674847:160987 -k1,8978:18670469,14674847:160987 -k1,8978:21892643,14674847:160987 -k1,8978:22943609,14674847:160987 -k1,8978:26144812,14674847:160988 -k1,8978:26921837,14674847:160987 -k1,8978:28101909,14674847:160987 -k1,8978:31202841,14674847:160987 -k1,8978:32583029,14674847:0 -) -(1,8979:6630773,15516335:25952256,513147,134348 -k1,8978:8989274,15516335:169598 -k1,8978:9774910,15516335:169598 -k1,8978:10963592,15516335:169597 -k1,8978:12964266,15516335:169598 -k1,8978:15040961,15516335:169598 -k1,8978:15893444,15516335:169598 -k1,8978:17462890,15516335:169597 -k1,8978:18586037,15516335:169598 -k1,8978:20035553,15516335:169598 -k1,8978:21224236,15516335:169598 -k1,8978:23131849,15516335:169598 -k1,8978:25498213,15516335:169597 -k1,8978:26283849,15516335:169598 -k1,8978:29401256,15516335:169598 -k1,8979:32583029,15516335:0 -) -(1,8979:6630773,16357823:25952256,513147,126483 -k1,8978:7499881,16357823:217680 -k1,8978:9461474,16357823:217680 -k1,8978:11873300,16357823:217681 -k1,8978:15607642,16357823:217680 -k1,8978:17109828,16357823:217680 -k1,8978:19009162,16357823:217680 -k1,8978:19971987,16357823:217681 -k1,8978:20841095,16357823:217680 -k1,8978:22512364,16357823:217680 -k1,8978:23933285,16357823:217680 -k1,8978:26416546,16357823:217681 -k1,8978:29747841,16357823:217680 -k1,8978:30727049,16357823:217680 -k1,8978:32583029,16357823:0 -) -(1,8979:6630773,17199311:25952256,505283,134348 -k1,8978:9670906,17199311:284344 -k1,8978:10638136,17199311:284345 -k1,8978:14273336,17199311:284344 -k1,8978:17841034,17199311:284344 -k1,8978:21318292,17199311:284344 -k1,8978:25292969,17199311:284345 -k1,8978:26774000,17199311:284344 -k1,8978:30575006,17199311:284344 -k1,8978:32583029,17199311:0 -) -(1,8979:6630773,18040799:25952256,513147,126483 -k1,8978:10119859,18040799:185416 -k1,8978:10836773,18040799:185417 -k1,8978:14283260,18040799:185416 -k1,8978:15572959,18040799:185417 -k1,8978:16506141,18040799:185416 -k1,8978:18547537,18040799:185416 -k1,8978:20857631,18040799:185417 -k1,8978:21725932,18040799:185416 -k1,8978:25498789,18040799:185416 -k1,8978:27401249,18040799:185417 -k1,8978:28245957,18040799:185416 -k1,8978:29450459,18040799:185417 -k1,8978:31923737,18040799:185416 -k1,8978:32583029,18040799:0 -) -(1,8979:6630773,18882287:25952256,513147,134348 -k1,8978:9877503,18882287:171125 -k1,8978:11398669,18882287:171124 -k1,8978:15260126,18882287:171125 -k1,8978:18126746,18882287:171124 -k1,8978:19444096,18882287:171125 -k1,8978:22068205,18882287:171096 -k1,8978:24860771,18882287:171125 -k1,8978:25979546,18882287:171124 -k1,8978:28892697,18882287:171125 -k1,8978:32583029,18882287:0 -) -(1,8979:6630773,19723775:25952256,505283,126483 -k1,8978:9047631,19723775:269899 -k1,8978:10999184,19723775:269899 -k1,8978:14785745,19723775:269899 -k1,8978:15707072,19723775:269899 -k1,8978:16724737,19723775:269899 -k1,8978:19827758,19723775:269900 -k1,8978:23448513,19723775:269899 -k1,8978:25407930,19723775:269899 -k1,8978:26360714,19723775:269899 -k1,8978:28123523,19723775:269899 -k1,8978:28749282,19723775:269899 -k1,8978:32051532,19723775:269899 -k1,8978:32583029,19723775:0 -) -(1,8979:6630773,20565263:25952256,513147,126483 -g1,8978:8227885,20565263 -g1,8978:9109999,20565263 -g1,8978:10802138,20565263 -g1,8978:11767483,20565263 -g1,8978:14920420,20565263 -g1,8978:15778941,20565263 -g1,8978:16334030,20565263 -g1,8978:17526785,20565263 -g1,8978:18408899,20565263 -g1,8978:18963988,20565263 -g1,8978:21141094,20565263 -g1,8978:22331883,20565263 -k1,8979:32583029,20565263:6864245 -g1,8979:32583029,20565263 -) -(1,8981:6630773,21406751:25952256,513147,126483 -h1,8980:6630773,21406751:983040,0,0 -k1,8980:9777819,21406751:289676 -k1,8980:12264262,21406751:289676 -k1,8980:13169976,21406751:289676 -k1,8980:16407461,21406751:289676 -k1,8980:19901848,21406751:289676 -k1,8980:21295806,21406751:289676 -k1,8980:22333248,21406751:289676 -k1,8980:23908740,21406751:289676 -k1,8980:25711642,21406751:289676 -k1,8980:26614080,21406751:289676 -k1,8980:27922841,21406751:289676 -k1,8980:28627269,21406751:289585 -k1,8980:31510860,21406751:289676 -k1,8980:32583029,21406751:0 -) -(1,8981:6630773,22248239:25952256,513147,126483 -k1,8980:7370183,22248239:281313 -k1,8980:8182993,22248239:281313 -k1,8980:10751514,22248239:281314 -k1,8980:13888231,22248239:281313 -k1,8980:14820972,22248239:281313 -k1,8980:15917553,22248239:281313 -k1,8980:16923694,22248239:281313 -k1,8980:17891170,22248239:281314 -k1,8980:19552671,22248239:281313 -k1,8980:20938266,22248239:281313 -k1,8980:23371781,22248239:281313 -k1,8980:25040491,22248239:281313 -k1,8980:27553305,22248239:281313 -k1,8980:29333427,22248239:281314 -k1,8980:30274032,22248239:281313 -k1,8980:31955194,22248239:281313 -k1,8980:32583029,22248239:0 -) -(1,8981:6630773,23089727:25952256,513147,126483 -k1,8980:8995967,23089727:240517 -k1,8980:11571532,23089727:240517 -k1,8980:12831134,23089727:240517 -k1,8980:14388925,23089727:240517 -k1,8980:15245480,23089727:240517 -k1,8980:18435117,23089727:240517 -k1,8980:19779916,23089727:240517 -k1,8980:20768198,23089727:240516 -k1,8980:22572404,23089727:240517 -k1,8980:24004366,23089727:240517 -k1,8980:26057609,23089727:240517 -k1,8980:27865747,23089727:240517 -k1,8980:29125349,23089727:240517 -k1,8980:30671999,23089727:240517 -k1,8980:31563944,23089727:240517 -k1,8980:32583029,23089727:0 -) -(1,8981:6630773,23931215:25952256,513147,126483 -k1,8980:7995451,23931215:216487 -k1,8980:11398299,23931215:216488 -k1,8980:12230824,23931215:216487 -k1,8980:13466396,23931215:216487 -k1,8980:15687629,23931215:216487 -k1,8980:18838819,23931215:216488 -k1,8980:21252073,23931215:216487 -k1,8980:22084598,23931215:216487 -k1,8980:25248894,23931215:216487 -k1,8980:28670093,23931215:216488 -k1,8980:29878140,23931215:216487 -k1,8980:30450487,23931215:216487 -k1,8980:32583029,23931215:0 -) -(1,8981:6630773,24772703:25952256,513147,126483 -k1,8980:8113899,24772703:161265 -k1,8980:8934457,24772703:161266 -k1,8980:10697422,24772703:161265 -k1,8980:12835909,24772703:161266 -k1,8980:15332222,24772703:161265 -k1,8980:16311377,24772703:161266 -k1,8980:17340994,24772703:161265 -k1,8980:18634721,24772703:161265 -k1,8980:19820970,24772703:161266 -k1,8980:21540026,24772703:161265 -k1,8980:22057152,24772703:161266 -k1,8980:25632187,24772703:161265 -k1,8980:28979813,24772703:161266 -k1,8980:30245360,24772703:161265 -k1,8980:32583029,24772703:0 -) -(1,8981:6630773,25614191:25952256,505283,126483 -g1,8980:9501249,25614191 -g1,8980:11825155,25614191 -g1,8980:12707269,25614191 -g1,8980:15023966,25614191 -g1,8980:18636965,25614191 -k1,8981:32583029,25614191:10255732 -g1,8981:32583029,25614191 -) -(1,8983:6630773,26455679:25952256,513147,126483 -h1,8982:6630773,26455679:983040,0,0 -k1,8982:8245782,26455679:217126 -k1,8982:9563931,26455679:217144 -k1,8982:10953514,26455679:217144 -k1,8982:12887046,26455679:217144 -k1,8982:13763482,26455679:217144 -k1,8982:14538993,26455679:217144 -k1,8982:18446468,26455679:217143 -k1,8982:23437910,26455679:217144 -k1,8982:24846499,26455679:217144 -k1,8982:28574407,26455679:217144 -k1,8982:29745100,26455679:217144 -k1,8982:31094706,26455679:217144 -k1,8982:32583029,26455679:0 -) -(1,8983:6630773,27297167:25952256,505283,102891 -k1,8982:8284751,27297167:260027 -k1,8982:9563862,27297167:260026 -k1,8982:14598187,27297167:260027 -k1,8982:16188594,27297167:260026 -k1,8982:18334092,27297167:260027 -k1,8982:19125615,27297167:260026 -k1,8982:21587652,27297167:260027 -k1,8982:22499106,27297167:260026 -k1,8982:24307749,27297167:260027 -k1,8982:25099272,27297167:260026 -k1,8982:28143268,27297167:260027 -k1,8982:29019332,27297167:260026 -k1,8982:30881059,27297167:260027 -k1,8982:32583029,27297167:0 -) -(1,8983:6630773,28138655:25952256,513147,134348 -k1,8982:9841775,28138655:134742 -k1,8982:14328763,28138655:134742 -k1,8982:17636103,28138655:134742 -k1,8982:18962290,28138655:134742 -k1,8982:21715194,28138655:134741 -k1,8982:22869021,28138655:134742 -k1,8982:26307433,28138655:134742 -k1,8982:27101467,28138655:134742 -k1,8982:27592069,28138655:134742 -k1,8982:29222998,28138655:134742 -k1,8982:32583029,28138655:0 -) -(1,8983:6630773,28980143:25952256,505283,126483 -g1,8982:8715473,28980143 -g1,8982:10018984,28980143 -g1,8982:10965979,28980143 -g1,8982:13021188,28980143 -g1,8982:15345094,28980143 -g1,8982:16227208,28980143 -k1,8983:32583029,28980143:12768380 -g1,8983:32583029,28980143 -) -(1,8984:6630773,31071403:25952256,555811,127104 -(1,8984:6630773,31071403:2450326,534184,12975 -g1,8984:6630773,31071403 -g1,8984:9081099,31071403 -) -g1,8984:14856198,31071403 -(1,8984:14856198,31071403:0,505647,127104 -r1,9004:15636518,31071403:780320,632751,127104 -k1,8984:14856198,31071403:-780320 -) -(1,8984:14856198,31071403:780320,505647,127104 -k1,8984:14856198,31071403:3277 -h1,8984:15633241,31071403:0,452326,123827 -) -g1,8984:16052475,31071403 -(1,8984:16052475,31071403:0,497948,127104 -r1,9004:17606561,31071403:1554086,625052,127104 -k1,8984:16052475,31071403:-1554086 -) -(1,8984:16052475,31071403:1554086,497948,127104 -k1,8984:16052475,31071403:3277 -h1,8984:17603284,31071403:0,452326,123827 -) -g1,8984:17831481,31071403 -g1,8984:19398709,31071403 -(1,8984:19398709,31071403:0,497948,127104 -r1,9004:21726561,31071403:2327852,625052,127104 -k1,8984:19398709,31071403:-2327852 -) -(1,8984:19398709,31071403:2327852,497948,127104 -k1,8984:19398709,31071403:3277 -h1,8984:21723284,31071403:0,452326,123827 -) -k1,8984:32583029,31071403:10856468 -g1,8984:32583029,31071403 -) -(1,8988:6630773,32306107:25952256,505283,134348 -k1,8987:8036354,32306107:208894 -(1,8987:8036354,32306107:0,459977,115847 -r1,9004:8746332,32306107:709978,575824,115847 -k1,8987:8036354,32306107:-709978 -) -(1,8987:8036354,32306107:709978,459977,115847 -k1,8987:8036354,32306107:3277 -h1,8987:8743055,32306107:0,411205,112570 -) -k1,8987:8955227,32306107:208895 -k1,8987:12187952,32306107:208894 -k1,8987:15572066,32306107:208895 -k1,8987:19142957,32306107:208894 -k1,8987:20161222,32306107:208895 -k1,8987:20725976,32306107:208894 -(1,8987:20725976,32306107:0,452978,122846 -r1,9004:23194513,32306107:2468537,575824,122846 -k1,8987:20725976,32306107:-2468537 -) -(1,8987:20725976,32306107:2468537,452978,122846 -k1,8987:20725976,32306107:3277 -h1,8987:23191236,32306107:0,411205,112570 -) -k1,8987:23403407,32306107:208894 -k1,8987:25466316,32306107:208895 -k1,8987:28265848,32306107:208894 -k1,8987:29493828,32306107:208895 -k1,8987:31086842,32306107:208894 -k1,8987:32583029,32306107:0 -) -(1,8988:6630773,33147595:25952256,513147,126483 -k1,8987:10089358,33147595:272225 -k1,8987:10893080,33147595:272225 -k1,8987:13998426,33147595:272225 -k1,8987:14951570,33147595:272225 -(1,8987:14951570,33147595:0,414482,115847 -r1,9004:16364971,33147595:1413401,530329,115847 -k1,8987:14951570,33147595:-1413401 -) -(1,8987:14951570,33147595:1413401,414482,115847 -k1,8987:14951570,33147595:3277 -h1,8987:16361694,33147595:0,411205,112570 -) -k1,8987:16844290,33147595:272225 -k1,8987:17799400,33147595:272225 -k1,8987:20605248,33147595:272226 -k1,8987:21558392,33147595:272225 -(1,8987:21558392,33147595:0,414482,115847 -r1,9004:23323505,33147595:1765113,530329,115847 -k1,8987:21558392,33147595:-1765113 -) -(1,8987:21558392,33147595:1765113,414482,115847 -k1,8987:21558392,33147595:3277 -h1,8987:23320228,33147595:0,411205,112570 -) -k1,8987:23976494,33147595:272225 -k1,8987:25445406,33147595:272225 -k1,8987:27067673,33147595:272225 -k1,8987:28989439,33147595:272225 -k1,8987:31252648,33147595:272225 -k1,8988:32583029,33147595:0 -) -(1,8988:6630773,33989083:25952256,513147,134348 -(1,8987:6630773,33989083:0,459977,115847 -r1,9004:7340751,33989083:709978,575824,115847 -k1,8987:6630773,33989083:-709978 -) -(1,8987:6630773,33989083:709978,459977,115847 -k1,8987:6630773,33989083:3277 -h1,8987:7337474,33989083:0,411205,112570 -) -k1,8987:7538066,33989083:197315 -k1,8987:9835810,33989083:197315 -(1,8987:9835810,33989083:0,414482,115847 -r1,9004:14414618,33989083:4578808,530329,115847 -k1,8987:9835810,33989083:-4578808 -) -(1,8987:9835810,33989083:4578808,414482,115847 -g1,8987:13707917,33989083 -h1,8987:14411341,33989083:0,411205,112570 -) -k1,8987:14611934,33989083:197316 -k1,8987:15340746,33989083:197315 -k1,8987:17394041,33989083:197315 -k1,8987:20652543,33989083:197315 -k1,8987:21532744,33989083:197316 -k1,8987:24263681,33989083:197315 -k1,8987:27822993,33989083:197315 -k1,8987:28829678,33989083:197315 -k1,8987:30046079,33989083:197316 -k1,8987:31923737,33989083:197315 -k1,8988:32583029,33989083:0 -) -(1,8988:6630773,34830571:25952256,505283,126483 -(1,8987:6630773,34830571:0,452978,115847 -r1,9004:10506157,34830571:3875384,568825,115847 -k1,8987:6630773,34830571:-3875384 -) -(1,8987:6630773,34830571:3875384,452978,115847 -k1,8987:6630773,34830571:3277 -h1,8987:10502880,34830571:0,411205,112570 -) -g1,8987:10879056,34830571 -g1,8987:12767803,34830571 -(1,8987:12767803,34830571:0,414482,115847 -r1,9004:17346611,34830571:4578808,530329,115847 -k1,8987:12767803,34830571:-4578808 -) -(1,8987:12767803,34830571:4578808,414482,115847 -g1,8987:16639910,34830571 -h1,8987:17343334,34830571:0,411205,112570 -) -g1,8987:17545840,34830571 -g1,8987:18276566,34830571 -g1,8987:20605060,34830571 -k1,8988:32583029,34830571:8743112 -g1,8988:32583029,34830571 -) -] -(1,9004:32583029,45706769:0,0,0 -g1,9004:32583029,45706769 -) -) -] -(1,9004:6630773,47279633:25952256,0,0 -h1,9004:6630773,47279633:25952256,0,0 -) -] -(1,9004:4262630,4025873:0,0,0 -[1,9004:-473656,4025873:0,0,0 -(1,9004:-473656,-710413:0,0,0 -(1,9004:-473656,-710413:0,0,0 -g1,9004:-473656,-710413 +[1,8385:3078558,4812305:0,0,0 +(1,8385:3078558,49800853:0,16384,2228224 +k1,8385:1358238,49800853:-1720320 +(1,6148:1358238,49800853:1720320,16384,2228224 +(1,6148:1358238,49800853:1179648,16384,0 +r1,8385:2537886,49800853:1179648,16384,0 ) -g1,9004:-473656,-710413 +g1,6148:3062174,49800853 +(1,6148:3062174,52029077:16384,1703936,0 +[1,6148:3062174,52029077:25952256,1703936,0 +(1,6148:3062174,51504789:25952256,1179648,0 +(1,6148:3062174,51504789:16384,1179648,0 +r1,8385:3078558,51504789:16384,1179648,0 ) -] +k1,6148:29014430,51504789:25935872 +g1,6148:29014430,51504789 ) ] -!18993 -}151 -Input:1209:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1210:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1211:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1212:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1213:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1214:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1215:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1216:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1217:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1218:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1219:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1220:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1221:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1222:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1328 -{152 -[1,9048:4262630,47279633:28320399,43253760,0 -(1,9048:4262630,4025873:0,0,0 -[1,9048:-473656,4025873:0,0,0 -(1,9048:-473656,-710413:0,0,0 -(1,9048:-473656,-644877:0,0,0 -k1,9048:-473656,-644877:-65536 ) -(1,9048:-473656,4736287:0,0,0 -k1,9048:-473656,4736287:5209943 ) -g1,9048:-473656,-710413 ) ] +[1,8385:3078558,4812305:0,0,0 +(1,8385:3078558,49800853:0,16384,2228224 +g1,8385:29030814,49800853 +g1,8385:36135244,49800853 +(1,6148:36135244,49800853:1720320,16384,2228224 +(1,6148:36135244,52029077:16384,1703936,0 +[1,6148:36135244,52029077:25952256,1703936,0 +(1,6148:36135244,51504789:25952256,1179648,0 +(1,6148:36135244,51504789:16384,1179648,0 +r1,8385:36151628,51504789:16384,1179648,0 +) +k1,6148:62087500,51504789:25935872 +g1,6148:62087500,51504789 +) +] +) +g1,6148:36675916,49800853 +(1,6148:36675916,49800853:1179648,16384,0 +r1,8385:37855564,49800853:1179648,16384,0 +) +) +k1,8385:3078556,49800853:-34777008 +) +] +g1,8385:6630773,4812305 +k1,8385:24358918,4812305:16532768 +g1,8385:25981589,4812305 +g1,8385:26804065,4812305 +g1,8385:30302376,4812305 +) +) +] +[1,8385:6630773,45706769:25952256,40108032,0 +(1,8385:6630773,45706769:25952256,40108032,0 +(1,8385:6630773,45706769:0,0,0 +g1,8385:6630773,45706769 +) +[1,8385:6630773,45706769:25952256,40108032,0 +(1,8314:6630773,6254097:25952256,513147,134348 +(1,8313:6630773,6254097:0,452978,115847 +r1,8385:8747598,6254097:2116825,568825,115847 +k1,8313:6630773,6254097:-2116825 +) +(1,8313:6630773,6254097:2116825,452978,115847 +k1,8313:6630773,6254097:3277 +h1,8313:8744321,6254097:0,411205,112570 +) +k1,8313:9139229,6254097:217961 +k1,8313:11916371,6254097:217961 +k1,8313:13153416,6254097:217960 +k1,8313:14354417,6254097:217961 +k1,8313:17155807,6254097:217961 +k1,8313:18139884,6254097:217961 +k1,8313:19376929,6254097:217960 +k1,8313:21406305,6254097:217961 +k1,8313:23914094,6254097:217961 +k1,8313:25399521,6254097:217961 +k1,8313:26636566,6254097:217960 +k1,8313:29198750,6254097:217961 +k1,8313:32583029,6254097:0 +) +(1,8314:6630773,7119177:25952256,513147,134348 +k1,8313:8305225,7119177:280501 +k1,8313:10094365,7119177:280501 +k1,8313:12810185,7119177:280502 +k1,8313:15332673,7119177:280501 +k1,8313:17487504,7119177:280501 +k1,8313:19081347,7119177:280501 +k1,8313:20353409,7119177:280502 +k1,8313:23303191,7119177:280501 +k1,8313:25616619,7119177:280501 +k1,8313:27498820,7119177:280501 +k1,8313:28194083,7119177:280420 +k1,8313:32583029,7119177:0 +) +(1,8314:6630773,7984257:25952256,513147,134348 +k1,8313:7873570,7984257:222401 +k1,8313:10606655,7984257:222401 +k1,8313:11933338,7984257:222401 +k1,8313:12903505,7984257:222401 +k1,8313:14538207,7984257:222401 +k1,8313:15952053,7984257:222401 +k1,8313:18461005,7984257:222401 +k1,8313:19444933,7984257:222400 +k1,8313:21586228,7984257:222401 +k1,8313:24472668,7984257:222401 +k1,8313:25354361,7984257:222401 +k1,8313:26195422,7984257:222401 +k1,8313:29248978,7984257:222401 +k1,8313:30490464,7984257:222401 +k1,8313:32583029,7984257:0 +) +(1,8314:6630773,8849337:25952256,513147,126483 +k1,8313:9096595,8849337:200242 +k1,8313:11477220,8849337:200242 +k1,8313:13014397,8849337:200243 +k1,8313:13962405,8849337:200242 +k1,8313:15228918,8849337:200242 +k1,8313:18150215,8849337:200242 +k1,8313:19744408,8849337:200242 +k1,8313:21978232,8849337:200242 +k1,8313:22593317,8849337:200242 +k1,8313:25631268,8849337:200242 +k1,8313:28507345,8849337:200242 +k1,8313:32583029,8849337:0 +) +(1,8314:6630773,9714417:25952256,505283,134348 +k1,8313:7376301,9714417:214031 +k1,8313:9277229,9714417:214031 +k1,8313:10682704,9714417:214030 +k1,8313:13487373,9714417:214031 +k1,8313:14720489,9714417:214031 +k1,8313:17556615,9714417:214031 +k1,8313:19160009,9714417:214031 +k1,8313:19905537,9714417:214031 +k1,8313:22798679,9714417:214030 +k1,8313:24280176,9714417:214031 +k1,8313:26218444,9714417:214016 +k1,8313:29911126,9714417:214031 +k1,8313:32583029,9714417:0 +) +(1,8314:6630773,10579497:25952256,513147,134348 +k1,8313:9989165,10579497:161546 +k1,8313:13493047,10579497:161546 +k1,8313:14267355,10579497:161546 +k1,8313:15447987,10579497:161547 +k1,8313:18182476,10579497:161546 +k1,8313:19003314,10579497:161546 +k1,8313:22204420,10579497:161546 +k1,8313:23634743,10579497:161546 +k1,8313:24900571,10579497:161546 +k1,8313:25809884,10579497:161547 +k1,8313:29232501,10579497:161546 +k1,8313:30155575,10579497:161546 +k1,8313:32583029,10579497:0 +) +(1,8314:6630773,11444577:25952256,505283,134348 +g1,8313:9341997,11444577 +g1,8313:12943855,11444577 +g1,8313:13794512,11444577 +(1,8313:13794512,11444577:0,452978,115847 +r1,8385:15911337,11444577:2116825,568825,115847 +k1,8313:13794512,11444577:-2116825 +) +(1,8313:13794512,11444577:2116825,452978,115847 +k1,8313:13794512,11444577:3277 +h1,8313:15908060,11444577:0,411205,112570 +) +k1,8314:32583029,11444577:16498022 +g1,8314:32583029,11444577 +) +(1,8316:6630773,12309657:25952256,513147,134348 +h1,8315:6630773,12309657:983040,0,0 +g1,8315:8766591,12309657 +g1,8315:10895200,12309657 +g1,8315:11450289,12309657 +g1,8315:13038881,12309657 +g1,8315:15114406,12309657 +g1,8315:17273161,12309657 +g1,8315:18663835,12309657 +g1,8315:20296992,12309657 +g1,8315:21886895,12309657 +g1,8315:22544221,12309657 +g1,8315:23394878,12309657 +g1,8315:23949967,12309657 +k1,8316:32583029,12309657:7476352 +g1,8316:32583029,12309657 +) +v1,8318:6630773,12994512:0,393216,0 +(1,8334:6630773,19076179:25952256,6474883,196608 +g1,8334:6630773,19076179 +g1,8334:6630773,19076179 +g1,8334:6434165,19076179 +(1,8334:6434165,19076179:0,6474883,196608 +r1,8385:32779637,19076179:26345472,6671491,196608 +k1,8334:6434165,19076179:-26345472 +) +(1,8334:6434165,19076179:26345472,6474883,196608 +[1,8334:6630773,19076179:25952256,6278275,0 +(1,8320:6630773,13228949:25952256,431045,106246 +(1,8319:6630773,13228949:0,0,0 +g1,8319:6630773,13228949 +g1,8319:6630773,13228949 +g1,8319:6303093,13228949 +(1,8319:6303093,13228949:0,0,0 +) +g1,8319:6630773,13228949 +) +g1,8320:8622497,13228949 +g1,8320:9618359,13228949 +g1,8320:13933760,13228949 +g1,8320:14597668,13228949 +g1,8320:16257438,13228949 +g1,8320:16921346,13228949 +g1,8320:17585254,13228949 +h1,8320:18913070,13228949:0,0,0 +k1,8320:32583029,13228949:13669959 +g1,8320:32583029,13228949 +) +(1,8321:6630773,13913804:25952256,431045,106246 +h1,8321:6630773,13913804:0,0,0 +h1,8321:8290543,13913804:0,0,0 +k1,8321:32583029,13913804:24292486 +g1,8321:32583029,13913804 +) +(1,8330:6630773,14729731:25952256,398014,106246 +(1,8323:6630773,14729731:0,0,0 +g1,8323:6630773,14729731 +g1,8323:6630773,14729731 +g1,8323:6303093,14729731 +(1,8323:6303093,14729731:0,0,0 +) +g1,8323:6630773,14729731 +) +g1,8330:7626635,14729731 +g1,8330:7958589,14729731 +g1,8330:8290543,14729731 +g1,8330:8954451,14729731 +h1,8330:9286405,14729731:0,0,0 +k1,8330:32583029,14729731:23296624 +g1,8330:32583029,14729731 +) +(1,8330:6630773,15414586:25952256,407923,9908 +h1,8330:6630773,15414586:0,0,0 +g1,8330:7626635,15414586 +g1,8330:8290543,15414586 +g1,8330:8954451,15414586 +h1,8330:9286405,15414586:0,0,0 +k1,8330:32583029,15414586:23296624 +g1,8330:32583029,15414586 +) +(1,8330:6630773,16099441:25952256,407923,0 +h1,8330:6630773,16099441:0,0,0 +g1,8330:7626635,16099441 +g1,8330:8290543,16099441 +g1,8330:8954451,16099441 +h1,8330:9286405,16099441:0,0,0 +k1,8330:32583029,16099441:23296624 +g1,8330:32583029,16099441 +) +(1,8330:6630773,16784296:25952256,407923,9908 +h1,8330:6630773,16784296:0,0,0 +g1,8330:7626635,16784296 +g1,8330:8290543,16784296 +g1,8330:8954451,16784296 +h1,8330:9286405,16784296:0,0,0 +k1,8330:32583029,16784296:23296624 +g1,8330:32583029,16784296 +) +(1,8330:6630773,17469151:25952256,407923,0 +h1,8330:6630773,17469151:0,0,0 +g1,8330:7626635,17469151 +g1,8330:8290543,17469151 +g1,8330:8954451,17469151 +h1,8330:9286405,17469151:0,0,0 +k1,8330:32583029,17469151:23296624 +g1,8330:32583029,17469151 +) +(1,8330:6630773,18154006:25952256,407923,9908 +h1,8330:6630773,18154006:0,0,0 +g1,8330:7626635,18154006 +g1,8330:8290543,18154006 +g1,8330:8954451,18154006 +h1,8330:9286405,18154006:0,0,0 +k1,8330:32583029,18154006:23296624 +g1,8330:32583029,18154006 +) +(1,8332:6630773,18969933:25952256,431045,106246 +(1,8331:6630773,18969933:0,0,0 +g1,8331:6630773,18969933 +g1,8331:6630773,18969933 +g1,8331:6303093,18969933 +(1,8331:6303093,18969933:0,0,0 +) +g1,8331:6630773,18969933 +) +k1,8332:6630773,18969933:0 +g1,8332:10614221,18969933 +g1,8332:12273991,18969933 +g1,8332:12937899,18969933 +k1,8332:12937899,18969933:0 +h1,8332:16921346,18969933:0,0,0 +k1,8332:32583029,18969933:15661683 +g1,8332:32583029,18969933 +) +] +) +g1,8334:32583029,19076179 +g1,8334:6630773,19076179 +g1,8334:6630773,19076179 +g1,8334:32583029,19076179 +g1,8334:32583029,19076179 +) +h1,8334:6630773,19272787:0,0,0 +(1,8338:6630773,20137867:25952256,513147,134348 +h1,8337:6630773,20137867:983040,0,0 +k1,8337:8768994,20137867:201632 +k1,8337:10895419,20137867:201633 +k1,8337:12116136,20137867:201632 +k1,8337:13707131,20137867:201632 +k1,8337:15785060,20137867:201633 +k1,8337:17946218,20137867:201632 +k1,8337:19339295,20137867:201632 +k1,8337:22022776,20137867:201633 +k1,8337:23508914,20137867:201632 +k1,8337:24168643,20137867:201632 +k1,8337:24901773,20137867:201633 +k1,8337:25912775,20137867:201632 +k1,8337:28138814,20137867:201632 +k1,8337:30746274,20137867:201633 +k1,8337:31563944,20137867:201632 +k1,8337:32583029,20137867:0 +) +(1,8338:6630773,21002947:25952256,505283,126483 +k1,8338:32583029,21002947:22394306 +g1,8338:32583029,21002947 +) +v1,8340:6630773,21687802:0,393216,0 +(1,8348:6630773,23502843:25952256,2208257,196608 +g1,8348:6630773,23502843 +g1,8348:6630773,23502843 +g1,8348:6434165,23502843 +(1,8348:6434165,23502843:0,2208257,196608 +r1,8385:32779637,23502843:26345472,2404865,196608 +k1,8348:6434165,23502843:-26345472 +) +(1,8348:6434165,23502843:26345472,2208257,196608 +[1,8348:6630773,23502843:25952256,2011649,0 +(1,8342:6630773,21922239:25952256,431045,106246 +(1,8341:6630773,21922239:0,0,0 +g1,8341:6630773,21922239 +g1,8341:6630773,21922239 +g1,8341:6303093,21922239 +(1,8341:6303093,21922239:0,0,0 +) +g1,8341:6630773,21922239 +) +k1,8342:6630773,21922239:0 +h1,8342:9618359,21922239:0,0,0 +k1,8342:32583029,21922239:22964670 +g1,8342:32583029,21922239 +) +(1,8343:6630773,22607094:25952256,431045,106246 +h1,8343:6630773,22607094:0,0,0 +g1,8343:10282267,22607094 +g1,8343:10946175,22607094 +h1,8343:13601807,22607094:0,0,0 +k1,8343:32583029,22607094:18981222 +g1,8343:32583029,22607094 +) +(1,8347:6630773,23423021:25952256,424439,79822 +(1,8345:6630773,23423021:0,0,0 +g1,8345:6630773,23423021 +g1,8345:6630773,23423021 +g1,8345:6303093,23423021 +(1,8345:6303093,23423021:0,0,0 +) +g1,8345:6630773,23423021 +) +g1,8347:7626635,23423021 +h1,8347:11610082,23423021:0,0,0 +k1,8347:32583030,23423021:20972948 +g1,8347:32583030,23423021 +) +] +) +g1,8348:32583029,23502843 +g1,8348:6630773,23502843 +g1,8348:6630773,23502843 +g1,8348:32583029,23502843 +g1,8348:32583029,23502843 +) +h1,8348:6630773,23699451:0,0,0 +(1,8352:6630773,24564531:25952256,513147,134348 +h1,8351:6630773,24564531:983040,0,0 +g1,8351:8766591,24564531 +g1,8351:10378121,24564531 +g1,8351:11596435,24564531 +g1,8351:12778704,24564531 +g1,8351:13846285,24564531 +g1,8351:16079096,24564531 +g1,8351:18089740,24564531 +g1,8351:18940397,24564531 +g1,8351:21392754,24564531 +g1,8351:22611068,24564531 +k1,8352:32583029,24564531:7838764 +g1,8352:32583029,24564531 +) +v1,8354:6630773,25249386:0,393216,0 +(1,8373:6630773,32050642:25952256,7194472,196608 +g1,8373:6630773,32050642 +g1,8373:6630773,32050642 +g1,8373:6434165,32050642 +(1,8373:6434165,32050642:0,7194472,196608 +r1,8385:32779637,32050642:26345472,7391080,196608 +k1,8373:6434165,32050642:-26345472 +) +(1,8373:6434165,32050642:26345472,7194472,196608 +[1,8373:6630773,32050642:25952256,6997864,0 +(1,8356:6630773,25483823:25952256,431045,106246 +(1,8355:6630773,25483823:0,0,0 +g1,8355:6630773,25483823 +g1,8355:6630773,25483823 +g1,8355:6303093,25483823 +(1,8355:6303093,25483823:0,0,0 +) +g1,8355:6630773,25483823 +) +k1,8356:6630773,25483823:0 +g1,8356:9950313,25483823 +g1,8356:10614221,25483823 +k1,8356:10614221,25483823:0 +h1,8356:14597668,25483823:0,0,0 +k1,8356:32583028,25483823:17985360 +g1,8356:32583028,25483823 +) +(1,8357:6630773,26168678:25952256,431045,106246 +h1,8357:6630773,26168678:0,0,0 +g1,8357:10282267,26168678 +g1,8357:10946175,26168678 +h1,8357:13601807,26168678:0,0,0 +k1,8357:32583029,26168678:18981222 +g1,8357:32583029,26168678 +) +(1,8361:6630773,26984605:25952256,431045,106246 +(1,8359:6630773,26984605:0,0,0 +g1,8359:6630773,26984605 +g1,8359:6630773,26984605 +g1,8359:6303093,26984605 +(1,8359:6303093,26984605:0,0,0 +) +g1,8359:6630773,26984605 +) +g1,8361:7626635,26984605 +g1,8361:8954451,26984605 +h1,8361:11278129,26984605:0,0,0 +k1,8361:32583029,26984605:21304900 +g1,8361:32583029,26984605 +) +(1,8363:6630773,27800532:25952256,431045,106246 +(1,8362:6630773,27800532:0,0,0 +g1,8362:6630773,27800532 +g1,8362:6630773,27800532 +g1,8362:6303093,27800532 +(1,8362:6303093,27800532:0,0,0 +) +g1,8362:6630773,27800532 +) +h1,8363:8290543,27800532:0,0,0 +k1,8363:32583029,27800532:24292486 +g1,8363:32583029,27800532 +) +(1,8372:6630773,28616459:25952256,398014,106246 +(1,8365:6630773,28616459:0,0,0 +g1,8365:6630773,28616459 +g1,8365:6630773,28616459 +g1,8365:6303093,28616459 +(1,8365:6303093,28616459:0,0,0 +) +g1,8365:6630773,28616459 +) +g1,8372:7626635,28616459 +g1,8372:7958589,28616459 +g1,8372:8290543,28616459 +g1,8372:8954451,28616459 +h1,8372:9286405,28616459:0,0,0 +k1,8372:32583029,28616459:23296624 +g1,8372:32583029,28616459 +) +(1,8372:6630773,29301314:25952256,407923,9908 +h1,8372:6630773,29301314:0,0,0 +g1,8372:7626635,29301314 +g1,8372:8290543,29301314 +g1,8372:8954451,29301314 +h1,8372:9286405,29301314:0,0,0 +k1,8372:32583029,29301314:23296624 +g1,8372:32583029,29301314 +) +(1,8372:6630773,29986169:25952256,407923,0 +h1,8372:6630773,29986169:0,0,0 +g1,8372:7626635,29986169 +g1,8372:8290543,29986169 +g1,8372:8954451,29986169 +h1,8372:9286405,29986169:0,0,0 +k1,8372:32583029,29986169:23296624 +g1,8372:32583029,29986169 +) +(1,8372:6630773,30671024:25952256,407923,9908 +h1,8372:6630773,30671024:0,0,0 +g1,8372:7626635,30671024 +g1,8372:8290543,30671024 +g1,8372:8954451,30671024 +h1,8372:9286405,30671024:0,0,0 +k1,8372:32583029,30671024:23296624 +g1,8372:32583029,30671024 +) +(1,8372:6630773,31355879:25952256,407923,0 +h1,8372:6630773,31355879:0,0,0 +g1,8372:7626635,31355879 +g1,8372:8290543,31355879 +g1,8372:8954451,31355879 +h1,8372:9286405,31355879:0,0,0 +k1,8372:32583029,31355879:23296624 +g1,8372:32583029,31355879 +) +(1,8372:6630773,32040734:25952256,407923,9908 +h1,8372:6630773,32040734:0,0,0 +g1,8372:7626635,32040734 +g1,8372:8290543,32040734 +g1,8372:8954451,32040734 +h1,8372:9286405,32040734:0,0,0 +k1,8372:32583029,32040734:23296624 +g1,8372:32583029,32040734 +) +] +) +g1,8373:32583029,32050642 +g1,8373:6630773,32050642 +g1,8373:6630773,32050642 +g1,8373:32583029,32050642 +g1,8373:32583029,32050642 +) +h1,8373:6630773,32247250:0,0,0 +(1,8377:6630773,33112330:25952256,513147,126483 +h1,8376:6630773,33112330:983040,0,0 +k1,8376:9086406,33112330:275906 +k1,8376:11627893,33112330:275907 +k1,8376:14084182,33112330:275906 +k1,8376:15873315,33112330:275907 +k1,8376:16680718,33112330:275906 +k1,8376:18978411,33112330:275907 +k1,8376:20445762,33112330:275906 +k1,8376:24728540,33112330:275907 +k1,8376:26889917,33112330:275906 +k1,8376:29338998,33112330:275907 +k1,8376:30230942,33112330:275906 +k1,8376:32583029,33112330:0 +) +(1,8377:6630773,33977410:25952256,513147,7863 +k1,8377:32583029,33977410:24465244 +g1,8377:32583029,33977410 +) +v1,8379:6630773,34842490:0,393216,0 +(1,8380:6630773,37844555:25952256,3395281,0 +g1,8380:6630773,37844555 +g1,8380:6237557,37844555 +r1,8385:6368629,37844555:131072,3395281,0 +g1,8380:6567858,37844555 +g1,8380:6764466,37844555 +[1,8380:6764466,37844555:25818563,3395281,0 +(1,8380:6764466,35114967:25818563,665693,196608 +(1,8379:6764466,35114967:0,665693,196608 +r1,8385:8010564,35114967:1246098,862301,196608 +k1,8379:6764466,35114967:-1246098 +) +(1,8379:6764466,35114967:1246098,665693,196608 +) +k1,8379:8268504,35114967:257940 +k1,8379:9994722,35114967:327680 +k1,8379:10880497,35114967:257940 +k1,8379:12157522,35114967:257940 +k1,8379:15076878,35114967:257939 +k1,8379:17363813,35114967:257940 +k1,8379:18997354,35114967:257940 +k1,8379:20412004,35114967:257940 +k1,8379:22629470,35114967:257940 +k1,8379:24094583,35114967:257940 +k1,8379:26337608,35114967:257939 +k1,8379:27667717,35114967:257940 +k1,8379:29082367,35114967:257940 +k1,8379:30444589,35114967:257940 +k1,8379:32583029,35114967:0 +) +(1,8380:6764466,35980047:25818563,513147,134348 +k1,8379:8240135,35980047:195751 +k1,8379:9454971,35980047:195751 +k1,8379:11719038,35980047:195751 +k1,8379:12574081,35980047:195751 +k1,8379:15996825,35980047:195751 +k1,8379:18482404,35980047:195751 +k1,8379:19364317,35980047:195751 +k1,8379:23136368,35980047:195751 +k1,8379:24610726,35980047:195751 +k1,8379:25712840,35980047:195751 +k1,8379:27942173,35980047:195751 +k1,8379:29788121,35980047:195751 +k1,8379:31426319,35980047:195751 +k1,8379:32583029,35980047:0 +) +(1,8380:6764466,36845127:25818563,513147,134348 +k1,8379:8306266,36845127:152437 +k1,8379:10334999,36845127:152437 +k1,8379:11138863,36845127:152436 +k1,8379:12310385,36845127:152437 +k1,8379:14116295,36845127:152437 +k1,8379:15425442,36845127:152437 +k1,8379:17189409,36845127:152437 +k1,8379:18360930,36845127:152436 +k1,8379:19902730,36845127:152437 +k1,8379:22261764,36845127:152437 +k1,8379:23785214,36845127:152437 +k1,8379:24293511,36845127:152437 +k1,8379:25579065,36845127:152436 +k1,8379:28213350,36845127:152437 +k1,8379:30010741,36845127:152437 +k1,8379:32583029,36845127:0 +) +(1,8380:6764466,37710207:25818563,513147,134348 +k1,8379:8384937,37710207:168849 +k1,8379:9710495,37710207:168848 +k1,8379:11409610,37710207:168849 +k1,8379:12597544,37710207:168849 +k1,8379:16150672,37710207:168849 +k1,8379:17510965,37710207:168848 +k1,8379:19113742,37710207:168849 +k1,8379:21535719,37710207:168849 +k1,8379:23272188,37710207:168848 +k1,8379:24460122,37710207:168849 +k1,8379:25612011,37710207:168849 +k1,8379:26799945,37710207:168849 +k1,8379:29258621,37710207:168848 +k1,8379:30597943,37710207:168849 +k1,8380:32583029,37710207:0 +k1,8380:32583029,37710207:0 +) +] +g1,8380:32583029,37844555 +) +h1,8380:6630773,37844555:0,0,0 +(1,8383:6630773,38709635:25952256,513147,134348 +h1,8382:6630773,38709635:983040,0,0 +k1,8382:11245695,38709635:159129 +k1,8382:11862922,38709635:159130 +k1,8382:12553548,38709635:159129 +k1,8382:14583076,38709635:159130 +k1,8382:15393633,38709635:159129 +k1,8382:17705621,38709635:159130 +k1,8382:18883835,38709635:159129 +k1,8382:21111280,38709635:159129 +k1,8382:21929702,38709635:159130 +k1,8382:23107916,38709635:159129 +k1,8382:25556874,38709635:159130 +k1,8382:26367431,38709635:159129 +k1,8382:27274327,38709635:159130 +k1,8382:29244871,38709635:159129 +k1,8382:30090163,38709635:159130 +k1,8382:30605152,38709635:159129 +k1,8382:32583029,38709635:0 +) +(1,8383:6630773,39574715:25952256,513147,134348 +k1,8382:7520869,39574715:230804 +k1,8382:10726352,39574715:230804 +k1,8382:13153266,39574715:230803 +k1,8382:15589357,39574715:230804 +k1,8382:16506323,39574715:230804 +k1,8382:17507830,39574715:230804 +k1,8382:20810961,39574715:230803 +k1,8382:21693193,39574715:230804 +k1,8382:25204729,39574715:230804 +(1,8382:25204729,39574715:0,452978,115847 +r1,8385:26618130,39574715:1413401,568825,115847 +k1,8382:25204729,39574715:-1413401 +) +(1,8382:25204729,39574715:1413401,452978,115847 +k1,8382:25204729,39574715:3277 +h1,8382:26614853,39574715:0,411205,112570 +) +k1,8382:27022604,39574715:230804 +k1,8382:28524805,39574715:230803 +k1,8382:30122690,39574715:230804 +k1,8382:30884991,39574715:230804 +k1,8382:32583029,39574715:0 +) +(1,8383:6630773,40439795:25952256,513147,134348 +k1,8382:9391531,40439795:221893 +k1,8382:10264853,40439795:221894 +k1,8382:11877420,40439795:221893 +k1,8382:12455173,40439795:221893 +k1,8382:14569747,40439795:221894 +k1,8382:15450932,40439795:221893 +k1,8382:17962653,40439795:221893 +k1,8382:20039216,40439795:221894 +k1,8382:21070479,40439795:221893 +k1,8382:22801011,40439795:221893 +k1,8382:25264891,40439795:221893 +k1,8382:26440334,40439795:221894 +k1,8382:27766509,40439795:221893 +k1,8382:29080887,40439795:221893 +(1,8382:29080887,40439795:0,452978,115847 +r1,8385:30494288,40439795:1413401,568825,115847 +k1,8382:29080887,40439795:-1413401 +) +(1,8382:29080887,40439795:1413401,452978,115847 +k1,8382:29080887,40439795:3277 +h1,8382:30491011,40439795:0,411205,112570 +) +k1,8382:30716182,40439795:221894 +k1,8382:31589503,40439795:221893 +k1,8382:32583029,40439795:0 +) +(1,8383:6630773,41304875:25952256,513147,134348 +k1,8382:7848395,41304875:198537 +k1,8382:10115247,41304875:198536 +k1,8382:10973076,41304875:198537 +k1,8382:13461440,41304875:198536 +k1,8382:16631379,41304875:198537 +k1,8382:17185775,41304875:198536 +k1,8382:19508989,41304875:198537 +(1,8382:19508989,41304875:0,414482,115847 +r1,8385:21977526,41304875:2468537,530329,115847 +k1,8382:19508989,41304875:-2468537 +) +(1,8382:19508989,41304875:2468537,414482,115847 +k1,8382:19508989,41304875:3277 +h1,8382:21974249,41304875:0,411205,112570 +) +k1,8382:22176063,41304875:198537 +k1,8382:23057484,41304875:198536 +k1,8382:23611881,41304875:198537 +k1,8382:26496738,41304875:198536 +k1,8382:28969374,41304875:198537 +k1,8382:32583029,41304875:0 +) +(1,8383:6630773,42169955:25952256,513147,134348 +k1,8382:8028936,42169955:201476 +k1,8382:10891830,42169955:201477 +k1,8382:12961737,42169955:201476 +k1,8382:14656124,42169955:201477 +k1,8382:16060841,42169955:201476 +k1,8382:16878356,42169955:201477 +k1,8382:18252271,42169955:201476 +k1,8382:20313003,42169955:201476 +k1,8382:21820613,42169955:201477 +k1,8382:24055671,42169955:201476 +k1,8382:24613008,42169955:201477 +k1,8382:27789163,42169955:201476 +k1,8382:29968517,42169955:201477 +k1,8382:31563944,42169955:201476 +k1,8382:32583029,42169955:0 +) +(1,8383:6630773,43035035:25952256,513147,134348 +k1,8382:8932210,43035035:233121 +k1,8382:9824623,43035035:233121 +k1,8382:11076829,43035035:233121 +k1,8382:13599778,43035035:233121 +k1,8382:16804301,43035035:233121 +k1,8382:17393282,43035035:233121 +k1,8382:20141019,43035035:233121 +k1,8382:21565584,43035035:233120 +k1,8382:23232633,43035035:233121 +k1,8382:25201147,43035035:233121 +k1,8382:26637509,43035035:233121 +k1,8382:28682045,43035035:233121 +k1,8382:30893043,43035035:233121 +k1,8382:31812326,43035035:233121 +k1,8382:32583029,43035035:0 +) +(1,8383:6630773,43900115:25952256,505283,134348 +g1,8382:9902330,43900115 +g1,8382:10752987,43900115 +(1,8382:10752987,43900115:0,414482,115847 +r1,8385:12166388,43900115:1413401,530329,115847 +k1,8382:10752987,43900115:-1413401 +) +(1,8382:10752987,43900115:1413401,414482,115847 +k1,8382:10752987,43900115:3277 +h1,8382:12163111,43900115:0,411205,112570 +) +g1,8382:12869589,43900115 +(1,8382:12869589,43900115:0,452978,115847 +r1,8385:14282990,43900115:1413401,568825,115847 +k1,8382:12869589,43900115:-1413401 +) +(1,8382:12869589,43900115:1413401,452978,115847 +k1,8382:12869589,43900115:3277 +h1,8382:14279713,43900115:0,411205,112570 +) +g1,8382:14482219,43900115 +k1,8383:32583029,43900115:14646407 +g1,8383:32583029,43900115 +) +] +(1,8385:32583029,45706769:0,0,0 +g1,8385:32583029,45706769 +) +) +] +(1,8385:6630773,47279633:25952256,0,0 +h1,8385:6630773,47279633:25952256,0,0 +) +] +(1,8385:4262630,4025873:0,0,0 +[1,8385:-473656,4025873:0,0,0 +(1,8385:-473656,-710413:0,0,0 +(1,8385:-473656,-710413:0,0,0 +g1,8385:-473656,-710413 +) +g1,8385:-473656,-710413 +) +] +) +] +!24697 +}127 +Input:1159:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1160:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1161:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1162:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1163:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1164:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!576 +{128 +[1,8475:4262630,47279633:28320399,43253760,0 +(1,8475:4262630,4025873:0,0,0 +[1,8475:-473656,4025873:0,0,0 +(1,8475:-473656,-710413:0,0,0 +(1,8475:-473656,-644877:0,0,0 +k1,8475:-473656,-644877:-65536 ) -[1,9048:6630773,47279633:25952256,43253760,0 -[1,9048:6630773,4812305:25952256,786432,0 -(1,9048:6630773,4812305:25952256,505283,11795 -(1,9048:6630773,4812305:25952256,505283,11795 -g1,9048:3078558,4812305 -[1,9048:3078558,4812305:0,0,0 -(1,9048:3078558,2439708:0,1703936,0 -k1,9048:1358238,2439708:-1720320 -(1,8393:1358238,2439708:1720320,1703936,0 -(1,8393:1358238,2439708:1179648,16384,0 -r1,9048:2537886,2439708:1179648,16384,0 -) -g1,8393:3062174,2439708 -(1,8393:3062174,2439708:16384,1703936,0 -[1,8393:3062174,2439708:25952256,1703936,0 -(1,8393:3062174,1915420:25952256,1179648,0 -(1,8393:3062174,1915420:16384,1179648,0 -r1,9048:3078558,1915420:16384,1179648,0 +(1,8475:-473656,4736287:0,0,0 +k1,8475:-473656,4736287:5209943 ) -k1,8393:29014430,1915420:25935872 -g1,8393:29014430,1915420 +g1,8475:-473656,-710413 ) ] ) +[1,8475:6630773,47279633:25952256,43253760,0 +[1,8475:6630773,4812305:25952256,786432,0 +(1,8475:6630773,4812305:25952256,505283,134348 +(1,8475:6630773,4812305:25952256,505283,134348 +g1,8475:3078558,4812305 +[1,8475:3078558,4812305:0,0,0 +(1,8475:3078558,2439708:0,1703936,0 +k1,8475:1358238,2439708:-1720320 +(1,6148:1358238,2439708:1720320,1703936,0 +(1,6148:1358238,2439708:1179648,16384,0 +r1,8475:2537886,2439708:1179648,16384,0 ) +g1,6148:3062174,2439708 +(1,6148:3062174,2439708:16384,1703936,0 +[1,6148:3062174,2439708:25952256,1703936,0 +(1,6148:3062174,1915420:25952256,1179648,0 +(1,6148:3062174,1915420:16384,1179648,0 +r1,8475:3078558,1915420:16384,1179648,0 ) -] -[1,9048:3078558,4812305:0,0,0 -(1,9048:3078558,2439708:0,1703936,0 -g1,9048:29030814,2439708 -g1,9048:36135244,2439708 -(1,8393:36135244,2439708:1720320,1703936,0 -(1,8393:36135244,2439708:16384,1703936,0 -[1,8393:36135244,2439708:25952256,1703936,0 -(1,8393:36135244,1915420:25952256,1179648,0 -(1,8393:36135244,1915420:16384,1179648,0 -r1,9048:36151628,1915420:16384,1179648,0 -) -k1,8393:62087500,1915420:25935872 -g1,8393:62087500,1915420 +k1,6148:29014430,1915420:25935872 +g1,6148:29014430,1915420 ) ] ) -g1,8393:36675916,2439708 -(1,8393:36675916,2439708:1179648,16384,0 -r1,9048:37855564,2439708:1179648,16384,0 -) ) -k1,9048:3078556,2439708:-34777008 ) ] -[1,9048:3078558,4812305:0,0,0 -(1,9048:3078558,49800853:0,16384,2228224 -k1,9048:1358238,49800853:-1720320 -(1,8393:1358238,49800853:1720320,16384,2228224 -(1,8393:1358238,49800853:1179648,16384,0 -r1,9048:2537886,49800853:1179648,16384,0 +[1,8475:3078558,4812305:0,0,0 +(1,8475:3078558,2439708:0,1703936,0 +g1,8475:29030814,2439708 +g1,8475:36135244,2439708 +(1,6148:36135244,2439708:1720320,1703936,0 +(1,6148:36135244,2439708:16384,1703936,0 +[1,6148:36135244,2439708:25952256,1703936,0 +(1,6148:36135244,1915420:25952256,1179648,0 +(1,6148:36135244,1915420:16384,1179648,0 +r1,8475:36151628,1915420:16384,1179648,0 ) -g1,8393:3062174,49800853 -(1,8393:3062174,52029077:16384,1703936,0 -[1,8393:3062174,52029077:25952256,1703936,0 -(1,8393:3062174,51504789:25952256,1179648,0 -(1,8393:3062174,51504789:16384,1179648,0 -r1,9048:3078558,51504789:16384,1179648,0 -) -k1,8393:29014430,51504789:25935872 -g1,8393:29014430,51504789 +k1,6148:62087500,1915420:25935872 +g1,6148:62087500,1915420 ) ] ) +g1,6148:36675916,2439708 +(1,6148:36675916,2439708:1179648,16384,0 +r1,8475:37855564,2439708:1179648,16384,0 ) ) -] -[1,9048:3078558,4812305:0,0,0 -(1,9048:3078558,49800853:0,16384,2228224 -g1,9048:29030814,49800853 -g1,9048:36135244,49800853 -(1,8393:36135244,49800853:1720320,16384,2228224 -(1,8393:36135244,52029077:16384,1703936,0 -[1,8393:36135244,52029077:25952256,1703936,0 -(1,8393:36135244,51504789:25952256,1179648,0 -(1,8393:36135244,51504789:16384,1179648,0 -r1,9048:36151628,51504789:16384,1179648,0 -) -k1,8393:62087500,51504789:25935872 -g1,8393:62087500,51504789 +k1,8475:3078556,2439708:-34777008 ) ] +[1,8475:3078558,4812305:0,0,0 +(1,8475:3078558,49800853:0,16384,2228224 +k1,8475:1358238,49800853:-1720320 +(1,6148:1358238,49800853:1720320,16384,2228224 +(1,6148:1358238,49800853:1179648,16384,0 +r1,8475:2537886,49800853:1179648,16384,0 ) -g1,8393:36675916,49800853 -(1,8393:36675916,49800853:1179648,16384,0 -r1,9048:37855564,49800853:1179648,16384,0 -) +g1,6148:3062174,49800853 +(1,6148:3062174,52029077:16384,1703936,0 +[1,6148:3062174,52029077:25952256,1703936,0 +(1,6148:3062174,51504789:25952256,1179648,0 +(1,6148:3062174,51504789:16384,1179648,0 +r1,8475:3078558,51504789:16384,1179648,0 ) -k1,9048:3078556,49800853:-34777008 +k1,6148:29014430,51504789:25935872 +g1,6148:29014430,51504789 ) ] -g1,9048:6630773,4812305 -g1,9048:6630773,4812305 -g1,9048:10456764,4812305 -g1,9048:13962940,4812305 -k1,9048:31387652,4812305:17424712 -) -) -] -[1,9048:6630773,45706769:25952256,40108032,0 -(1,9048:6630773,45706769:25952256,40108032,0 -(1,9048:6630773,45706769:0,0,0 -g1,9048:6630773,45706769 -) -[1,9048:6630773,45706769:25952256,40108032,0 -(1,9004:6630773,17372434:25952256,11773697,0 -k1,9004:12310416,17372434:5679643 -(1,8989:12310416,17372434:0,0,0 -g1,8989:12310416,17372434 -g1,8989:12310416,17372434 -g1,8989:11982736,17372434 -(1,8989:11982736,17372434:0,0,0 -) -g1,8989:12310416,17372434 -) -(1,9002:12310416,17372434:14592970,11773697,0 -g1,9002:15329272,17372434 -(1,9002:15329272,6544183:0,0,0 -(1,9002:15329272,6544183:0,0,0 -g1,8991:15329272,6544183 -(1,8992:15329272,6544183:0,0,0 -(1,8992:15329272,6544183:0,0,0 -g1,8992:15329272,6544183 -g1,8992:15329272,6544183 -g1,8992:15329272,6544183 -g1,8992:15329272,6544183 -g1,8992:15329272,6544183 -(1,8992:15329272,6544183:0,0,0 -(1,8992:15329272,6544183:589824,56623,0 -(1,8992:15329272,6544183:589824,56623,0 -) -g1,8992:15919096,6544183 -) ) -g1,8992:15329272,6544183 -g1,8992:15329272,6544183 ) ) -g1,8992:15329272,6544183 -(1,8993:15329272,6544183:0,0,0 -(1,8993:15329272,6544183:0,0,0 -g1,8993:15329272,6544183 -g1,8993:15329272,6544183 -(1,8993:15329272,6544183:0,0,0 -(1,8993:15329272,6544183:3805042,414307,104590 -(1,8993:15329272,6544183:3805042,414307,104590 -(1,8993:15329272,6544183:0,414307,104590 -r1,9048:19134314,6544183:3805042,518897,104590 -k1,8993:15329272,6544183:-3805042 -) -(1,8993:15329272,6544183:3805042,414307,104590 -g1,8993:16282171,6544183 -h1,8993:19131037,6544183:0,370085,101313 -) -) -g1,8993:19134314,6544183 +] +[1,8475:3078558,4812305:0,0,0 +(1,8475:3078558,49800853:0,16384,2228224 +g1,8475:29030814,49800853 +g1,8475:36135244,49800853 +(1,6148:36135244,49800853:1720320,16384,2228224 +(1,6148:36135244,52029077:16384,1703936,0 +[1,6148:36135244,52029077:25952256,1703936,0 +(1,6148:36135244,51504789:25952256,1179648,0 +(1,6148:36135244,51504789:16384,1179648,0 +r1,8475:36151628,51504789:16384,1179648,0 ) +k1,6148:62087500,51504789:25935872 +g1,6148:62087500,51504789 ) -g1,8993:15329272,6544183 -g1,8993:15329272,6544183 +] ) +g1,6148:36675916,49800853 +(1,6148:36675916,49800853:1179648,16384,0 +r1,8475:37855564,49800853:1179648,16384,0 ) -(1,8994:15329272,6544183:0,0,0 -(1,8994:15329272,6544183:0,0,0 -g1,8994:15329272,6544183 -g1,8994:15329272,6544183 -g1,8994:15329272,6544183 -g1,8994:15329272,6544183 -g1,8994:15329272,6544183 -(1,8994:15329272,6544183:0,0,0 -(1,8994:15329272,6544183:4121582,373362,104590 -(1,8994:15329272,6544183:4121582,373362,104590 -(1,8994:15329272,6544183:0,373362,104590 -r1,9048:19450854,6544183:4121582,477952,104590 -k1,8994:15329272,6544183:-4121582 ) -(1,8994:15329272,6544183:4121582,373362,104590 -g1,8994:18814496,6544183 -h1,8994:19447577,6544183:0,370085,101313 +k1,8475:3078556,49800853:-34777008 ) +] +g1,8475:6630773,4812305 +g1,8475:6630773,4812305 +g1,8475:9228620,4812305 +k1,8475:31387652,4812305:22159032 +) +) +] +[1,8475:6630773,45706769:25952256,40108032,0 +(1,8475:6630773,45706769:25952256,40108032,0 +(1,8475:6630773,45706769:0,0,0 +g1,8475:6630773,45706769 +) +[1,8475:6630773,45706769:25952256,40108032,0 +v1,8385:6630773,6254097:0,393216,0 +(1,8390:6630773,7286241:25952256,1425360,196608 +g1,8390:6630773,7286241 +g1,8390:6630773,7286241 +g1,8390:6434165,7286241 +(1,8390:6434165,7286241:0,1425360,196608 +r1,8475:32779637,7286241:26345472,1621968,196608 +k1,8390:6434165,7286241:-26345472 ) -g1,8994:19450854,6544183 -) -) -g1,8994:15329272,6544183 -g1,8994:15329272,6544183 -) -) -(1,8995:15329272,6544183:0,0,0 -(1,8995:15329272,6544183:0,0,0 -g1,8995:15329272,6544183 -g1,8995:15329272,6544183 -g1,8995:15329272,6544183 -g1,8995:15329272,6544183 -g1,8995:15329272,6544183 -(1,8995:15329272,6544183:0,0,0 -(1,8995:15329272,6544183:4121582,373362,104590 -(1,8995:15329272,6544183:4121582,373362,104590 -(1,8995:15329272,6544183:0,373362,104590 -r1,9048:19450854,6544183:4121582,477952,104590 -k1,8995:15329272,6544183:-4121582 -) -(1,8995:15329272,6544183:4121582,373362,104590 -g1,8995:18814496,6544183 -h1,8995:19447577,6544183:0,370085,101313 -) -) -g1,8995:19450854,6544183 -) -) -g1,8995:15329272,6544183 -g1,8995:15329272,6544183 -) -) -g1,8995:15329272,6544183 -g1,8996:15329272,6544183 -(1,8996:15329272,6544183:0,0,0 -(1,8996:15329272,6544183:0,0,0 -g1,8996:15329272,6544183 -g1,8996:15329272,6544183 -g1,8996:15329272,6544183 -g1,8996:15329272,6544183 -g1,8996:15329272,6544183 -(1,8996:15329272,6544183:0,0,0 -(1,8996:15329272,6544183:589824,56623,0 -(1,8996:15329272,6544183:589824,56623,0 -) -g1,8996:15919096,6544183 -) -) -g1,8996:15329272,6544183 -g1,8996:15329272,6544183 -) -) -g1,8996:15329272,6544183 -g1,8997:15329272,6544183 -g1,8997:15329272,6544183 -g1,8997:15329272,6544183 -g1,8997:15329272,6544183 -g1,8998:15329272,6544183 -g1,8998:15329272,6544183 -g1,8998:15329272,6544183 -(1,8998:15329272,6544183:0,0,0 -(1,8998:15329272,6544183:0,0,0 -g1,8998:15329272,6544183 -g1,8998:15329272,6544183 -g1,8998:15329272,6544183 -g1,8998:15329272,6544183 -g1,8998:15329272,6544183 -(1,8998:15329272,6544183:0,0,0 -(1,8998:15329272,6544183:1272717,373362,104590 -(1,8998:15329272,6544183:1272717,373362,104590 -(1,8998:15329272,6544183:0,373362,104590 -r1,9048:16601989,6544183:1272717,477952,104590 -k1,8998:15329272,6544183:-1272717 -) -(1,8998:15329272,6544183:1272717,373362,104590 -k1,8998:15329272,6544183:3277 -h1,8998:16598712,6544183:0,370085,101313 -) -) -g1,8998:16601989,6544183 -) -) -g1,8998:15329272,6544183 -g1,8998:15329272,6544183 -) -) -g1,8998:15329272,6544183 -g1,8999:15329272,6544183 -g1,8999:15329272,6544183 -g1,8999:15329272,6544183 -(1,8999:15329272,6544183:0,0,0 -(1,8999:15329272,6544183:0,0,0 -g1,8999:15329272,6544183 -g1,8999:15329272,6544183 -g1,8999:15329272,6544183 -g1,8999:15329272,6544183 -g1,8999:15329272,6544183 -(1,8999:15329272,6544183:0,0,0 -(1,8999:15329272,6544183:1589257,373362,104590 -(1,8999:15329272,6544183:1589257,373362,104590 -(1,8999:15329272,6544183:0,373362,104590 -r1,9048:16918529,6544183:1589257,477952,104590 -k1,8999:15329272,6544183:-1589257 -) -(1,8999:15329272,6544183:1589257,373362,104590 -k1,8999:15329272,6544183:3277 -h1,8999:16915252,6544183:0,370085,101313 -) -) -g1,8999:16918529,6544183 -) -) -g1,8999:15329272,6544183 -g1,8999:15329272,6544183 -) -) -g1,8999:15329272,6544183 -g1,9000:15329272,6544183 -g1,9000:15329272,6544183 -g1,9000:15329272,6544183 -g1,9000:15329272,6544183 -g1,9000:15329272,6544183 -g1,9001:15329272,6544183 -g1,9001:15329272,6544183 -g1,9001:15329272,6544183 -g1,9001:15329272,6544183 -g1,9001:15329272,6544183 -g1,9001:15329272,6544183 -g1,9002:15329272,6544183 -g1,9002:15329272,6544183 -) -g1,9002:15329272,6544183 -) -) -g1,9004:26903386,17372434 -k1,9004:32583029,17372434:5679643 -) -(1,9007:6630773,18824283:25952256,513147,134348 -h1,9006:6630773,18824283:983040,0,0 -k1,9006:9060907,18824283:250407 -k1,9006:12711322,18824283:250407 -k1,9006:13621021,18824283:250407 -k1,9006:14429795,18824283:250407 -k1,9006:18196864,18824283:250407 -k1,9006:20332086,18824283:250407 -k1,9006:22150114,18824283:250407 -k1,9006:23419606,18824283:250407 -k1,9006:26973028,18824283:250407 -k1,9006:27882727,18824283:250407 -k1,9006:31563944,18824283:250407 -k1,9007:32583029,18824283:0 -) -(1,9007:6630773,19665771:25952256,505283,126483 -(1,9006:6630773,19665771:0,452978,122846 -r1,9048:9099310,19665771:2468537,575824,122846 -k1,9006:6630773,19665771:-2468537 -) -(1,9006:6630773,19665771:2468537,452978,122846 -k1,9006:6630773,19665771:3277 -h1,9006:9096033,19665771:0,411205,112570 -) -k1,9006:9300502,19665771:201192 -k1,9006:11182037,19665771:201192 -k1,9006:12896456,19665771:201193 -k1,9006:13783810,19665771:201192 -(1,9006:13783810,19665771:0,452978,115847 -r1,9048:17659194,19665771:3875384,568825,115847 -k1,9006:13783810,19665771:-3875384 -) -(1,9006:13783810,19665771:3875384,452978,115847 -k1,9006:13783810,19665771:3277 -h1,9006:17655917,19665771:0,411205,112570 -) -k1,9006:17860386,19665771:201192 -k1,9006:19455529,19665771:201192 -k1,9006:23410623,19665771:201192 -k1,9006:26688730,19665771:201192 -k1,9006:28122000,19665771:201193 -k1,9006:30601879,19665771:201192 -h1,9006:31572467,19665771:0,0,0 -k1,9006:31773659,19665771:201192 -k1,9006:32583029,19665771:0 -) -(1,9007:6630773,20507259:25952256,505283,134348 -g1,9006:8328155,20507259 -h1,9006:9125073,20507259:0,0,0 -g1,9006:9531396,20507259 -g1,9006:10922070,20507259 -g1,9006:13190926,20507259 -g1,9006:16467070,20507259 -g1,9006:17898376,20507259 -g1,9006:20376292,20507259 -h1,9006:21346880,20507259:0,0,0 -g1,9006:21546109,20507259 -g1,9006:22554708,20507259 -g1,9006:24252090,20507259 -h1,9006:25049008,20507259:0,0,0 -k1,9007:32583029,20507259:7153257 -g1,9007:32583029,20507259 -) -(1,9009:6630773,21348747:25952256,513147,134348 -h1,9008:6630773,21348747:983040,0,0 -k1,9008:8821522,21348747:254160 -k1,9008:10564006,21348747:254161 -k1,9008:12212117,21348747:254160 -k1,9008:13478808,21348747:254160 -k1,9008:16724688,21348747:254161 -k1,9008:21654842,21348747:254160 -k1,9008:23239384,21348747:254161 -k1,9008:24051911,21348747:254160 -k1,9008:27822733,21348747:254160 -k1,9008:29847021,21348747:254161 -k1,9008:31714677,21348747:254160 -k1,9008:32583029,21348747:0 -) -(1,9009:6630773,22190235:25952256,505283,126483 -k1,9008:7941836,22190235:178601 -k1,9008:9145419,22190235:178600 -k1,9008:12315739,22190235:178601 -k1,9008:14393572,22190235:178600 -k1,9008:15223601,22190235:178601 -k1,9008:16598888,22190235:178600 -k1,9008:17869974,22190235:178601 -k1,9008:19919628,22190235:178601 -k1,9008:21586551,22190235:178600 -(1,9008:21586551,22190235:0,459977,115847 -r1,9048:22999952,22190235:1413401,575824,115847 -k1,9008:21586551,22190235:-1413401 -) -(1,9008:21586551,22190235:1413401,459977,115847 -k1,9008:21586551,22190235:3277 -h1,9008:22996675,22190235:0,411205,112570 -) -k1,9008:23178553,22190235:178601 -k1,9008:25975316,22190235:178600 -k1,9008:27173002,22190235:178601 -k1,9008:30655272,22190235:178600 -k1,9008:31516758,22190235:178601 -k1,9008:32583029,22190235:0 -) -(1,9009:6630773,23031723:25952256,513147,126483 -g1,9008:7489294,23031723 -g1,9008:8707608,23031723 -g1,9008:11031514,23031723 -g1,9008:14417103,23031723 -(1,9008:14417103,23031723:0,452978,115847 -r1,9048:19699334,23031723:5282231,568825,115847 -k1,9008:14417103,23031723:-5282231 -) -(1,9008:14417103,23031723:5282231,452978,115847 -k1,9008:14417103,23031723:3277 -h1,9008:19696057,23031723:0,411205,112570 -) -k1,9009:32583029,23031723:12710025 -g1,9009:32583029,23031723 -) -v1,9011:6630773,24361500:0,393216,0 -(1,9012:6630773,29906849:25952256,5938565,0 -g1,9012:6630773,29906849 -g1,9012:6303093,29906849 -r1,9048:6401397,29906849:98304,5938565,0 -g1,9012:6600626,29906849 -g1,9012:6797234,29906849 -[1,9012:6797234,29906849:25785795,5938565,0 -(1,9012:6797234,24723573:25785795,755289,196608 -(1,9011:6797234,24723573:0,755289,196608 -r1,9048:8134168,24723573:1336934,951897,196608 -k1,9011:6797234,24723573:-1336934 -) -(1,9011:6797234,24723573:1336934,755289,196608 -) -k1,9011:8371273,24723573:237105 -k1,9011:8698953,24723573:327680 -k1,9011:9889606,24723573:237104 -k1,9011:11219196,24723573:237105 -k1,9011:12475386,24723573:237105 -k1,9011:14450505,24723573:237104 -k1,9011:15913133,24723573:237105 -k1,9011:17097889,24723573:237105 -k1,9011:17690854,24723573:237105 -(1,9011:17690854,24723573:0,452978,122846 -r1,9048:20159391,24723573:2468537,575824,122846 -k1,9011:17690854,24723573:-2468537 -) -(1,9011:17690854,24723573:2468537,452978,122846 -k1,9011:17690854,24723573:3277 -h1,9011:20156114,24723573:0,411205,112570 -) -k1,9011:20396495,24723573:237104 -k1,9011:23144940,24723573:237105 -k1,9011:24316588,24723573:237105 -k1,9011:27660099,24723573:237104 -k1,9011:31176626,24723573:237105 -k1,9011:32583029,24723573:0 -) -(1,9012:6797234,25565061:25785795,513147,134348 -k1,9011:7992218,25565061:175899 -k1,9011:9240285,25565061:175898 -k1,9011:10075476,25565061:175899 -k1,9011:11270460,25565061:175899 -k1,9011:13451104,25565061:175898 -k1,9011:14980321,25565061:175899 -k1,9011:16651096,25565061:175899 -k1,9011:18331045,25565061:175898 -k1,9011:20020170,25565061:175899 -k1,9011:20812107,25565061:175899 -k1,9011:23606824,25565061:175898 -k1,9011:24434151,25565061:175899 -k1,9011:27141706,25565061:175899 -k1,9011:27969032,25565061:175898 -k1,9011:29992391,25565061:175899 -k1,9011:32583029,25565061:0 -) -(1,9012:6797234,26406549:25785795,513147,134348 -k1,9011:7742919,26406549:294257 -k1,9011:9439645,26406549:294256 -k1,9011:10416787,26406549:294257 -k1,9011:13489114,26406549:294256 -k1,9011:14396133,26406549:294257 -k1,9011:17231220,26406549:294256 -k1,9011:18716922,26406549:294257 -k1,9011:20896649,26406549:294256 -k1,9011:22892876,26406549:294257 -k1,9011:23838560,26406549:294256 -k1,9011:26117903,26406549:294257 -k1,9011:27024921,26406549:294256 -k1,9011:30480635,26406549:294257 -k1,9011:31923737,26406549:294256 -k1,9012:32583029,26406549:0 -) -(1,9012:6797234,27248037:25785795,513147,134348 -(1,9011:6797234,27248037:0,452978,122846 -r1,9048:9265771,27248037:2468537,575824,122846 -k1,9011:6797234,27248037:-2468537 -) -(1,9011:6797234,27248037:2468537,452978,122846 -k1,9011:6797234,27248037:3277 -h1,9011:9262494,27248037:0,411205,112570 -) -k1,9011:9432959,27248037:167188 -k1,9011:11095024,27248037:167189 -k1,9011:11878250,27248037:167188 -k1,9011:14206816,27248037:167189 -k1,9011:14905501,27248037:167188 -k1,9011:16674389,27248037:167188 -k1,9011:18818799,27248037:167189 -k1,9011:20684025,27248037:167188 -k1,9011:23899293,27248037:167189 -k1,9011:26701684,27248037:167188 -k1,9011:28041312,27248037:167189 -k1,9011:31298523,27248037:167188 -k1,9011:32583029,27248037:0 -) -(1,9012:6797234,28089525:25785795,513147,134348 -k1,9011:9403986,28089525:235004 -k1,9011:10448360,28089525:235004 -k1,9011:13354611,28089525:235004 -k1,9011:16292320,28089525:235004 -k1,9011:20217656,28089525:235004 -k1,9011:20940213,28089525:234969 -k1,9011:23913967,28089525:235004 -k1,9011:25241456,28089525:235004 -k1,9011:26843541,28089525:235004 -k1,9011:28026196,28089525:235004 -k1,9011:29756076,28089525:235004 -k1,9011:30522577,28089525:235004 -k1,9011:32583029,28089525:0 -) -(1,9012:6797234,28931013:25785795,513147,134348 -k1,9011:9738818,28931013:227738 -k1,9011:11158000,28931013:227737 -k1,9011:14289638,28931013:227738 -k1,9011:17089663,28931013:227737 -k1,9011:17976693,28931013:227738 -k1,9011:20363187,28931013:227738 -k1,9011:22158545,28931013:227737 -k1,9011:25057530,28931013:227738 -k1,9011:28801929,28931013:227737 -k1,9011:31966991,28931013:227738 -k1,9011:32583029,28931013:0 -) -(1,9012:6797234,29772501:25785795,505283,134348 -g1,9011:7352323,29772501 -g1,9011:8940260,29772501 -k1,9012:32583030,29772501:21638024 -g1,9012:32583030,29772501 -) -] -g1,9012:32583029,29906849 -) -h1,9012:6630773,29906849:0,0,0 -v1,9015:6630773,31549606:0,393216,0 -(1,9023:6630773,33171893:25952256,2015503,196608 -g1,9023:6630773,33171893 -g1,9023:6630773,33171893 -g1,9023:6434165,33171893 -(1,9023:6434165,33171893:0,2015503,196608 -r1,9048:32779637,33171893:26345472,2212111,196608 -k1,9023:6434165,33171893:-26345472 -) -(1,9023:6434165,33171893:26345472,2015503,196608 -[1,9023:6630773,33171893:25952256,1818895,0 -(1,9017:6630773,31763516:25952256,410518,107478 -(1,9016:6630773,31763516:0,0,0 -g1,9016:6630773,31763516 -g1,9016:6630773,31763516 -g1,9016:6303093,31763516 -(1,9016:6303093,31763516:0,0,0 -) -g1,9016:6630773,31763516 -) -g1,9017:8211502,31763516 -g1,9017:9159940,31763516 -h1,9017:10424523,31763516:0,0,0 -k1,9017:32583029,31763516:22158506 -g1,9017:32583029,31763516 -) -(1,9018:6630773,32429694:25952256,410518,107478 -h1,9018:6630773,32429694:0,0,0 -g1,9018:7579210,32429694 -g1,9018:9792230,32429694 -k1,9018:9792230,32429694:0 -h1,9018:14534415,32429694:0,0,0 -k1,9018:32583029,32429694:18048614 -g1,9018:32583029,32429694 -) -(1,9022:6630773,33095872:25952256,404226,76021 -(1,9020:6630773,33095872:0,0,0 -g1,9020:6630773,33095872 -g1,9020:6630773,33095872 -g1,9020:6303093,33095872 -(1,9020:6303093,33095872:0,0,0 -) -g1,9020:6630773,33095872 -) -g1,9022:7579210,33095872 -g1,9022:8843793,33095872 -h1,9022:11372958,33095872:0,0,0 -k1,9022:32583030,33095872:21210072 -g1,9022:32583030,33095872 -) -] -) -g1,9023:32583029,33171893 -g1,9023:6630773,33171893 -g1,9023:6630773,33171893 -g1,9023:32583029,33171893 -g1,9023:32583029,33171893 -) -h1,9023:6630773,33368501:0,0,0 -v1,9027:6630773,35186567:0,393216,0 -(1,9043:6630773,42694016:25952256,7900665,0 -g1,9043:6630773,42694016 -g1,9043:6303093,42694016 -r1,9048:6401397,42694016:98304,7900665,0 -g1,9043:6600626,42694016 -g1,9043:6797234,42694016 -[1,9043:6797234,42694016:25785795,7900665,0 -(1,9028:6797234,35619105:25785795,825754,196608 -(1,9027:6797234,35619105:0,825754,196608 -r1,9048:7890375,35619105:1093141,1022362,196608 -k1,9027:6797234,35619105:-1093141 -) -(1,9027:6797234,35619105:1093141,825754,196608 -) -k1,9027:8078328,35619105:187953 -k1,9027:9396257,35619105:327680 -k1,9027:10881823,35619105:187953 -k1,9027:12463728,35619105:187954 -k1,9027:13670766,35619105:187953 -k1,9027:15354906,35619105:187953 -k1,9027:17398183,35619105:187953 -k1,9027:18347665,35619105:187954 -k1,9027:21419202,35619105:187953 -k1,9027:22626240,35619105:187953 -k1,9027:24494536,35619105:187953 -k1,9027:27457284,35619105:187954 -k1,9027:28296665,35619105:187953 -k1,9027:30995958,35619105:187953 -(1,9027:30995958,35619105:0,459977,122846 -r1,9048:32409359,35619105:1413401,582823,122846 -k1,9027:30995958,35619105:-1413401 -) -(1,9027:30995958,35619105:1413401,459977,122846 -k1,9027:30995958,35619105:3277 -h1,9027:32406082,35619105:0,411205,112570 -) -k1,9028:32583029,35619105:0 -) -(1,9028:6797234,36460593:25785795,505283,122846 -(1,9027:6797234,36460593:0,414482,115847 -r1,9048:8562347,36460593:1765113,530329,115847 -k1,9027:6797234,36460593:-1765113 -) -(1,9027:6797234,36460593:1765113,414482,115847 -k1,9027:6797234,36460593:3277 -h1,9027:8559070,36460593:0,411205,112570 -) -g1,9027:8935246,36460593 -(1,9027:8935246,36460593:0,414482,115847 -r1,9048:9645224,36460593:709978,530329,115847 -k1,9027:8935246,36460593:-709978 -) -(1,9027:8935246,36460593:709978,414482,115847 -k1,9027:8935246,36460593:3277 -h1,9027:9641947,36460593:0,411205,112570 -) -g1,9027:10018123,36460593 -g1,9027:11408797,36460593 -(1,9027:11408797,36460593:0,452978,122846 -r1,9048:14932469,36460593:3523672,575824,122846 -k1,9027:11408797,36460593:-3523672 -) -(1,9027:11408797,36460593:3523672,452978,122846 -k1,9027:11408797,36460593:3277 -h1,9027:14929192,36460593:0,411205,112570 -) -k1,9028:32583029,36460593:17476890 -g1,9028:32583029,36460593 -) -(1,9030:6797234,37302081:25785795,505283,126483 -h1,9029:6797234,37302081:983040,0,0 -g1,9029:8607338,37302081 -g1,9029:9825652,37302081 -g1,9029:12686298,37302081 -g1,9029:14740851,37302081 -g1,9029:15808432,37302081 -g1,9029:17100146,37302081 -g1,9029:19810715,37302081 -(1,9029:19810715,37302081:0,459977,122846 -r1,9048:21224116,37302081:1413401,582823,122846 -k1,9029:19810715,37302081:-1413401 -) -(1,9029:19810715,37302081:1413401,459977,122846 -k1,9029:19810715,37302081:3277 -h1,9029:21220839,37302081:0,411205,112570 -) -g1,9029:21423345,37302081 -g1,9029:22308736,37302081 -g1,9029:23527050,37302081 -k1,9030:32583029,37302081:5992171 -g1,9030:32583029,37302081 -) -(1,9032:6797234,38143569:25785795,513147,134348 -h1,9031:6797234,38143569:983040,0,0 -k1,9031:10568742,38143569:239773 -k1,9031:11424553,38143569:239773 -k1,9031:12683411,38143569:239773 -k1,9031:13337986,38143569:239732 -k1,9031:16420055,38143569:239773 -k1,9031:19422826,38143569:239773 -k1,9031:20865840,38143569:239773 -k1,9031:24137964,38143569:239773 -k1,9031:25945358,38143569:239773 -k1,9031:27923146,38143569:239773 -k1,9031:28518779,38143569:239773 -(1,9031:28518779,38143569:0,452978,122846 -r1,9048:30987316,38143569:2468537,575824,122846 -k1,9031:28518779,38143569:-2468537 -) -(1,9031:28518779,38143569:2468537,452978,122846 -k1,9031:28518779,38143569:3277 -h1,9031:30984039,38143569:0,411205,112570 -) -k1,9031:31227089,38143569:239773 -k1,9032:32583029,38143569:0 -) -(1,9032:6797234,38985057:25785795,513147,126483 -k1,9031:8774573,38985057:188861 -k1,9031:11297171,38985057:188861 -k1,9031:12782990,38985057:188861 -(1,9031:12782990,38985057:0,459977,115847 -r1,9048:15954951,38985057:3171961,575824,115847 -k1,9031:12782990,38985057:-3171961 -) -(1,9031:12782990,38985057:3171961,459977,115847 -g1,9031:13841403,38985057 -h1,9031:15951674,38985057:0,411205,112570 -) -k1,9031:16143812,38985057:188861 -k1,9031:16948711,38985057:188861 -k1,9031:18156658,38985057:188862 -k1,9031:24772635,38985057:188861 -k1,9031:28147856,38985057:188861 -k1,9031:30205148,38985057:188861 -k1,9031:30925506,38985057:188861 -k1,9031:31773659,38985057:188861 -k1,9031:32583029,38985057:0 -) -(1,9032:6797234,39826545:25785795,505283,126483 -g1,9031:9747664,39826545 -k1,9032:32583028,39826545:21569208 -g1,9032:32583028,39826545 -) -v1,9034:6797234,41017011:0,393216,0 -(1,9041:6797234,41973120:25785795,1349325,196608 -g1,9041:6797234,41973120 -g1,9041:6797234,41973120 -g1,9041:6600626,41973120 -(1,9041:6600626,41973120:0,1349325,196608 -r1,9048:32779637,41973120:26179011,1545933,196608 -k1,9041:6600625,41973120:-26179012 -) -(1,9041:6600626,41973120:26179011,1349325,196608 -[1,9041:6797234,41973120:25785795,1152717,0 -(1,9036:6797234,41230921:25785795,410518,101187 -(1,9035:6797234,41230921:0,0,0 -g1,9035:6797234,41230921 -g1,9035:6797234,41230921 -g1,9035:6469554,41230921 -(1,9035:6469554,41230921:0,0,0 -) -g1,9035:6797234,41230921 -) -k1,9036:6797234,41230921:0 -g1,9036:7745671,41230921 -g1,9036:9958692,41230921 -k1,9036:9958692,41230921:0 -h1,9036:14700877,41230921:0,0,0 -k1,9036:32583029,41230921:17882152 -g1,9036:32583029,41230921 -) -(1,9040:6797234,41897099:25785795,404226,76021 -(1,9038:6797234,41897099:0,0,0 -g1,9038:6797234,41897099 -g1,9038:6797234,41897099 -g1,9038:6469554,41897099 -(1,9038:6469554,41897099:0,0,0 -) -g1,9038:6797234,41897099 -) -g1,9040:7745671,41897099 -g1,9040:9010254,41897099 -h1,9040:11539419,41897099:0,0,0 -k1,9040:32583029,41897099:21043610 -g1,9040:32583029,41897099 -) -] -) -g1,9041:32583029,41973120 -g1,9041:6797234,41973120 -g1,9041:6797234,41973120 -g1,9041:32583029,41973120 -g1,9041:32583029,41973120 -) -h1,9041:6797234,42169728:0,0,0 -] -g1,9043:32583029,42694016 -) -h1,9043:6630773,42694016:0,0,0 -(1,9046:6630773,44023793:25952256,513147,126483 -h1,9045:6630773,44023793:983040,0,0 -k1,9045:11540134,44023793:211085 -k1,9045:14826825,44023793:211086 -k1,9045:15569407,44023793:211085 -k1,9045:17563727,44023793:211085 -k1,9045:19425009,44023793:211085 -k1,9045:21613316,44023793:211086 -k1,9045:23266848,44023793:211085 -k1,9045:25026549,44023793:211085 -k1,9045:27006451,44023793:211085 -k1,9045:27965303,44023793:211086 -k1,9045:31015408,44023793:211085 -k1,9045:32583029,44023793:0 -) -(1,9046:6630773,44865281:25952256,505283,134348 -k1,9045:7816254,44865281:166396 -k1,9045:10737128,44865281:166396 -k1,9045:14068912,44865281:166395 -k1,9045:16764998,44865281:166396 -k1,9045:17950479,44865281:166396 -k1,9045:21303235,44865281:166396 -k1,9045:23477654,44865281:166396 -k1,9045:26719654,44865281:166395 -k1,9045:27417547,44865281:166396 -k1,9045:29321958,44865281:166396 -k1,9045:32583029,44865281:0 -) -(1,9046:6630773,45706769:25952256,513147,134348 -k1,9045:7954199,45706769:219144 -k1,9045:8921109,45706769:219144 -k1,9045:9496113,45706769:219144 -k1,9045:13129026,45706769:219143 -k1,9045:16534530,45706769:219144 -k1,9045:17412966,45706769:219144 -k1,9045:19794798,45706769:219144 -k1,9045:21145749,45706769:219144 -k1,9045:23378159,45706769:219144 -k1,9045:24280187,45706769:219143 -k1,9045:28178522,45706769:219144 -k1,9045:28885234,45706769:219124 -k1,9045:30458352,45706769:219144 -k1,9045:32583029,45706769:0 -) -] -(1,9048:32583029,45706769:0,0,0 -g1,9048:32583029,45706769 -) -) -] -(1,9048:6630773,47279633:25952256,0,0 -h1,9048:6630773,47279633:25952256,0,0 -) -] -(1,9048:4262630,4025873:0,0,0 -[1,9048:-473656,4025873:0,0,0 -(1,9048:-473656,-710413:0,0,0 -(1,9048:-473656,-710413:0,0,0 -g1,9048:-473656,-710413 -) -g1,9048:-473656,-710413 -) -] -) -] -!24990 -}152 -Input:1223:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1224:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1225:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1226:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1227:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1228:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1229:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1230:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1231:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1232:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1233:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1234:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1235:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1236:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1237:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1238:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1239:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1240:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1241:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1242:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1243:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1244:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!2080 -{153 -[1,9110:4262630,47279633:28320399,43253760,0 -(1,9110:4262630,4025873:0,0,0 -[1,9110:-473656,4025873:0,0,0 -(1,9110:-473656,-710413:0,0,0 -(1,9110:-473656,-644877:0,0,0 -k1,9110:-473656,-644877:-65536 +(1,8390:6434165,7286241:26345472,1425360,196608 +[1,8390:6630773,7286241:25952256,1228752,0 +(1,8387:6630773,6488534:25952256,431045,112852 +(1,8386:6630773,6488534:0,0,0 +g1,8386:6630773,6488534 +g1,8386:6630773,6488534 +g1,8386:6303093,6488534 +(1,8386:6303093,6488534:0,0,0 +) +g1,8386:6630773,6488534 +) +g1,8387:8954451,6488534 +g1,8387:9950313,6488534 +g1,8387:13601807,6488534 +g1,8387:14265715,6488534 +h1,8387:16589393,6488534:0,0,0 +k1,8387:32583029,6488534:15993636 +g1,8387:32583029,6488534 +) +(1,8388:6630773,7173389:25952256,431045,112852 +h1,8388:6630773,7173389:0,0,0 +g1,8388:9950313,7173389 +g1,8388:10614221,7173389 +g1,8388:13269853,7173389 +g1,8388:14929623,7173389 +g1,8388:15593531,7173389 +k1,8388:15593531,7173389:0 +h1,8388:19908932,7173389:0,0,0 +k1,8388:32583029,7173389:12674097 +g1,8388:32583029,7173389 +) +] +) +g1,8390:32583029,7286241 +g1,8390:6630773,7286241 +g1,8390:6630773,7286241 +g1,8390:32583029,7286241 +g1,8390:32583029,7286241 +) +h1,8390:6630773,7482849:0,0,0 +(1,8394:6630773,8347929:25952256,505283,134348 +h1,8393:6630773,8347929:983040,0,0 +k1,8393:9015464,8347929:204964 +k1,8393:10392867,8347929:204964 +k1,8393:14114493,8347929:204964 +k1,8393:16174781,8347929:204964 +k1,8393:17484027,8347929:204964 +k1,8393:18436757,8347929:204964 +k1,8393:21774341,8347929:204963 +k1,8393:23246771,8347929:204964 +k1,8393:23807595,8347929:204964 +k1,8393:25885578,8347929:204964 +k1,8393:29276902,8347929:204964 +k1,8393:30243394,8347929:204964 +k1,8393:32583029,8347929:0 +) +(1,8394:6630773,9213009:25952256,513147,7863 +g1,8393:7849087,9213009 +g1,8393:10743812,9213009 +k1,8394:32583030,9213009:20235552 +g1,8394:32583030,9213009 +) +v1,8396:6630773,9897864:0,393216,0 +(1,8400:6630773,10238547:25952256,733899,196608 +g1,8400:6630773,10238547 +g1,8400:6630773,10238547 +g1,8400:6434165,10238547 +(1,8400:6434165,10238547:0,733899,196608 +r1,8475:32779637,10238547:26345472,930507,196608 +k1,8400:6434165,10238547:-26345472 +) +(1,8400:6434165,10238547:26345472,733899,196608 +[1,8400:6630773,10238547:25952256,537291,0 +(1,8398:6630773,10132301:25952256,431045,106246 +(1,8397:6630773,10132301:0,0,0 +g1,8397:6630773,10132301 +g1,8397:6630773,10132301 +g1,8397:6303093,10132301 +(1,8397:6303093,10132301:0,0,0 +) +g1,8397:6630773,10132301 +) +k1,8398:6630773,10132301:0 +g1,8398:9950313,10132301 +g1,8398:10614221,10132301 +g1,8398:14265715,10132301 +g1,8398:14929623,10132301 +g1,8398:17917209,10132301 +g1,8398:19576979,10132301 +g1,8398:20240887,10132301 +k1,8398:20240887,10132301:0 +h1,8398:24556288,10132301:0,0,0 +k1,8398:32583029,10132301:8026741 +g1,8398:32583029,10132301 +) +] +) +g1,8400:32583029,10238547 +g1,8400:6630773,10238547 +g1,8400:6630773,10238547 +g1,8400:32583029,10238547 +g1,8400:32583029,10238547 +) +h1,8400:6630773,10435155:0,0,0 +v1,8404:6630773,11300235:0,393216,0 +(1,8405:6630773,12572140:25952256,1665121,0 +g1,8405:6630773,12572140 +g1,8405:6237557,12572140 +r1,8475:6368629,12572140:131072,1665121,0 +g1,8405:6567858,12572140 +g1,8405:6764466,12572140 +[1,8405:6764466,12572140:25818563,1665121,0 +(1,8405:6764466,11572712:25818563,665693,196608 +(1,8404:6764466,11572712:0,665693,196608 +r1,8475:8010564,11572712:1246098,862301,196608 +k1,8404:6764466,11572712:-1246098 +) +(1,8404:6764466,11572712:1246098,665693,196608 +) +k1,8404:8201119,11572712:190555 +k1,8404:9927337,11572712:327680 +k1,8404:12610226,11572712:190555 +k1,8404:14536173,11572712:190554 +k1,8404:17489071,11572712:190555 +k1,8404:20350873,11572712:190555 +k1,8404:21935379,11572712:190555 +(1,8404:21935379,11572712:0,452978,115847 +r1,8475:23348780,11572712:1413401,568825,115847 +k1,8404:21935379,11572712:-1413401 +) +(1,8404:21935379,11572712:1413401,452978,115847 +k1,8404:21935379,11572712:3277 +h1,8404:23345503,11572712:0,411205,112570 +) +k1,8404:23713004,11572712:190554 +k1,8404:25157263,11572712:190555 +k1,8404:26163086,11572712:190555 +k1,8404:27419912,11572712:190555 +k1,8404:29140732,11572712:190554 +k1,8404:29982715,11572712:190555 +k1,8404:31563944,11572712:190555 +k1,8404:32583029,11572712:0 +) +(1,8405:6764466,12437792:25818563,513147,134348 +g1,8404:9253523,12437792 +g1,8404:10104180,12437792 +g1,8404:10659269,12437792 +g1,8404:12015208,12437792 +g1,8404:13493044,12437792 +g1,8404:15167488,12437792 +g1,8404:15722577,12437792 +g1,8404:17308548,12437792 +g1,8404:18120539,12437792 +g1,8404:19338853,12437792 +g1,8404:20531608,12437792 +g1,8404:21390129,12437792 +g1,8404:23548884,12437792 +g1,8404:25816429,12437792 +k1,8405:32583029,12437792:3814203 +g1,8405:32583029,12437792 +) +] +g1,8405:32583029,12572140 +) +h1,8405:6630773,12572140:0,0,0 +(1,8408:6630773,13437220:25952256,513147,134348 +h1,8407:6630773,13437220:983040,0,0 +k1,8407:8628720,13437220:197018 +k1,8407:9181597,13437220:197017 +k1,8407:11056992,13437220:197018 +k1,8407:12122361,13437220:197017 +k1,8407:13980061,13437220:197018 +k1,8407:15507460,13437220:197018 +k1,8407:16355905,13437220:197017 +k1,8407:18209673,13437220:197018 +k1,8407:19242275,13437220:197018 +k1,8407:20200820,13437220:197017 +k1,8407:22965539,13437220:197018 +k1,8407:24181641,13437220:197017 +k1,8407:25551098,13437220:197018 +k1,8407:27061458,13437220:197018 +k1,8407:28126827,13437220:197017 +k1,8407:30847636,13437220:197018 +k1,8408:32583029,13437220:0 +) +(1,8408:6630773,14302300:25952256,513147,134348 +k1,8407:8081156,14302300:182917 +(1,8407:8081156,14302300:0,452978,115847 +r1,8475:10901405,14302300:2820249,568825,115847 +k1,8407:8081156,14302300:-2820249 +) +(1,8407:8081156,14302300:2820249,452978,115847 +k1,8407:8081156,14302300:3277 +h1,8407:10898128,14302300:0,411205,112570 +) +k1,8407:11084322,14302300:182917 +k1,8407:12371521,14302300:182917 +k1,8407:13302204,14302300:182917 +k1,8407:14998347,14302300:182917 +k1,8407:15832692,14302300:182917 +k1,8407:17940401,14302300:182917 +k1,8407:19255125,14302300:182917 +k1,8407:20751384,14302300:182917 +k1,8407:21881952,14302300:182917 +k1,8407:23950340,14302300:182917 +k1,8407:25152342,14302300:182917 +k1,8407:26716103,14302300:182917 +k1,8407:28000025,14302300:182917 +k1,8407:30543549,14302300:182917 +k1,8408:32583029,14302300:0 +k1,8408:32583029,14302300:0 +) +v1,8410:6630773,14987155:0,393216,0 +(1,8414:6630773,15327838:25952256,733899,196608 +g1,8414:6630773,15327838 +g1,8414:6630773,15327838 +g1,8414:6434165,15327838 +(1,8414:6434165,15327838:0,733899,196608 +r1,8475:32779637,15327838:26345472,930507,196608 +k1,8414:6434165,15327838:-26345472 +) +(1,8414:6434165,15327838:26345472,733899,196608 +[1,8414:6630773,15327838:25952256,537291,0 +(1,8412:6630773,15221592:25952256,431045,106246 +(1,8411:6630773,15221592:0,0,0 +g1,8411:6630773,15221592 +g1,8411:6630773,15221592 +g1,8411:6303093,15221592 +(1,8411:6303093,15221592:0,0,0 +) +g1,8411:6630773,15221592 +) +k1,8412:6630773,15221592:0 +g1,8412:13933760,15221592 +k1,8412:13933760,15221592:0 +h1,8412:18581115,15221592:0,0,0 +k1,8412:32583029,15221592:14001914 +g1,8412:32583029,15221592 +) +] +) +g1,8414:32583029,15327838 +g1,8414:6630773,15327838 +g1,8414:6630773,15327838 +g1,8414:32583029,15327838 +g1,8414:32583029,15327838 +) +h1,8414:6630773,15524446:0,0,0 +(1,8417:6630773,17641264:25952256,564462,12975 +(1,8417:6630773,17641264:2450326,534184,12975 +g1,8417:6630773,17641264 +g1,8417:9081099,17641264 +) +g1,8417:10677884,17641264 +k1,8417:32583030,17641264:20403520 +g1,8417:32583030,17641264 +) +(1,8421:6630773,18899560:25952256,513147,134348 +k1,8419:8113304,18899560:285844 +k1,8419:9702573,18899560:285758 +k1,8419:12168800,18899560:285844 +k1,8419:13558927,18899560:285845 +k1,8419:14592537,18899560:285844 +k1,8419:16391608,18899560:285845 +k1,8419:17328880,18899560:285844 +k1,8419:19005399,18899560:285845 +k1,8419:22484157,18899560:285844 +k1,8419:25059830,18899560:285845 +k1,8419:27672857,18899560:285844 +k1,8419:28617994,18899560:285845 +k1,8419:31575085,18899560:285844 +k1,8421:32583029,18899560:0 +) +(1,8421:6630773,19764640:25952256,513147,134348 +k1,8419:8382667,19764640:257018 +k1,8419:11133985,19764640:257018 +k1,8419:13126396,19764640:257018 +k1,8419:14366454,19764640:257018 +k1,8419:16361487,19764640:257018 +k1,8419:17605477,19764640:257018 +(1,8419:17605477,19764640:0,452978,115847 +r1,8475:19018878,19764640:1413401,568825,115847 +k1,8419:17605477,19764640:-1413401 +) +(1,8419:17605477,19764640:1413401,452978,115847 +k1,8419:17605477,19764640:3277 +h1,8419:19015601,19764640:0,411205,112570 +) +k1,8419:19656661,19764640:257019 +k1,8419:21471470,19764640:257018 +k1,8419:22720048,19764640:257018 +k1,8419:24389367,19764640:257018 +k1,8419:25837830,19764640:257018 +k1,8419:27906263,19764640:257018 +k1,8419:29557232,19764640:257018 +k1,8421:32583029,19764640:0 +) +(1,8421:6630773,20629720:25952256,513147,126483 +(1,8419:6630773,20629720:0,452978,115847 +r1,8475:9802733,20629720:3171960,568825,115847 +k1,8419:6630773,20629720:-3171960 +) +(1,8419:6630773,20629720:3171960,452978,115847 +k1,8419:6630773,20629720:3277 +h1,8419:9799456,20629720:0,411205,112570 +) +k1,8419:10099289,20629720:296556 +k1,8419:11587291,20629720:296557 +(1,8419:11587291,20629720:0,452978,115847 +r1,8475:14759251,20629720:3171960,568825,115847 +k1,8419:11587291,20629720:-3171960 +) +(1,8419:11587291,20629720:3171960,452978,115847 +k1,8419:11587291,20629720:3277 +h1,8419:14755974,20629720:0,411205,112570 +) +k1,8419:15229477,20629720:296556 +k1,8419:19496205,20629720:296557 +k1,8420:21575996,20629720:296556 +k1,8420:23175966,20629720:296459 +k1,8420:24785865,20629720:296557 +k1,8420:26073981,20629720:296556 +k1,8420:27956509,20629720:296557 +k1,8420:31015408,20629720:296556 +k1,8420:32583029,20629720:0 +) +(1,8421:6630773,21494800:25952256,513147,134348 +k1,8420:8538177,21494800:209366 +k1,8420:10183427,21494800:209356 +k1,8420:11706136,21494800:209367 +k1,8420:12907062,21494800:209366 +k1,8420:15434436,21494800:209366 +k1,8420:16512154,21494800:209366 +k1,8420:18251787,21494800:209367 +k1,8420:19112581,21494800:209366 +k1,8420:21328659,21494800:209366 +k1,8420:22557111,21494800:209367 +k1,8420:24726003,21494800:209366 +k1,8420:26347670,21494800:209366 +k1,8420:27208464,21494800:209366 +k1,8420:27773691,21494800:209367 +k1,8420:30626779,21494800:209366 +k1,8421:32583029,21494800:0 +) +(1,8421:6630773,22359880:25952256,513147,126483 +k1,8420:7821853,22359880:171995 +k1,8420:9731864,22359880:171996 +k1,8420:10851510,22359880:171995 +k1,8420:11481603,22359880:171996 +k1,8420:12305026,22359880:171995 +k1,8420:14442447,22359880:171996 +k1,8420:15265870,22359880:171995 +k1,8420:16456951,22359880:171996 +k1,8420:18699228,22359880:171995 +k1,8420:20482098,22359880:171995 +k1,8420:21428074,22359880:171996 +k1,8420:23882688,22359880:171995 +k1,8420:24512781,22359880:171996 +k1,8420:25216273,22359880:171995 +k1,8420:26674085,22359880:171996 +k1,8420:29476040,22359880:171995 +k1,8420:30299464,22359880:171996 +k1,8420:31563944,22359880:171995 +k1,8420:32583029,22359880:0 +) +(1,8421:6630773,23224960:25952256,513147,134348 +k1,8420:9589537,23224960:180037 +k1,8420:11729099,23224960:180036 +k1,8420:12595298,23224960:180037 +k1,8420:13546038,23224960:180037 +k1,8420:16798403,23224960:180037 +k1,8420:17629867,23224960:180036 +k1,8420:18165764,23224960:180037 +k1,8420:21041297,23224960:180037 +k1,8420:21904218,23224960:180036 +k1,8420:22700293,23224960:180037 +k1,8420:23651033,23224960:180037 +k1,8420:27271055,23224960:180037 +k1,8420:29911313,23224960:180036 +k1,8420:32124932,23224960:180037 +k1,8420:32583029,23224960:0 +) +(1,8421:6630773,24090040:25952256,505283,7863 +g1,8420:7481430,24090040 +g1,8420:8036519,24090040 +k1,8421:32583029,24090040:21861500 +g1,8421:32583029,24090040 +) +v1,8423:6630773,24774895:0,393216,0 +(1,8427:6630773,25115578:25952256,733899,196608 +g1,8427:6630773,25115578 +g1,8427:6630773,25115578 +g1,8427:6434165,25115578 +(1,8427:6434165,25115578:0,733899,196608 +r1,8475:32779637,25115578:26345472,930507,196608 +k1,8427:6434165,25115578:-26345472 +) +(1,8427:6434165,25115578:26345472,733899,196608 +[1,8427:6630773,25115578:25952256,537291,0 +(1,8425:6630773,25009332:25952256,431045,106246 +(1,8424:6630773,25009332:0,0,0 +g1,8424:6630773,25009332 +g1,8424:6630773,25009332 +g1,8424:6303093,25009332 +(1,8424:6303093,25009332:0,0,0 +) +g1,8424:6630773,25009332 +) +k1,8425:6630773,25009332:0 +g1,8425:11610083,25009332 +k1,8425:11610083,25009332:0 +h1,8425:15593530,25009332:0,0,0 +k1,8425:32583030,25009332:16989500 +g1,8425:32583030,25009332 +) +] +) +g1,8427:32583029,25115578 +g1,8427:6630773,25115578 +g1,8427:6630773,25115578 +g1,8427:32583029,25115578 +g1,8427:32583029,25115578 +) +h1,8427:6630773,25312186:0,0,0 +(1,8431:6630773,26177266:25952256,513147,134348 +h1,8430:6630773,26177266:983040,0,0 +g1,8430:8290799,26177266 +g1,8430:9358380,26177266 +g1,8430:10969910,26177266 +g1,8430:12188224,26177266 +g1,8430:13544163,26177266 +g1,8430:14504920,26177266 +g1,8430:16969729,26177266 +g1,8430:18188043,26177266 +g1,8430:19799573,26177266 +g1,8430:20413645,26177266 +g1,8430:22572400,26177266 +g1,8430:23904091,26177266 +g1,8430:24851086,26177266 +g1,8430:27400436,26177266 +g1,8430:28212427,26177266 +g1,8430:29430741,26177266 +k1,8431:32583029,26177266:558373 +g1,8431:32583029,26177266 +) +v1,8433:6630773,26862121:0,393216,0 +(1,8445:6630773,31346668:25952256,4877763,196608 +g1,8445:6630773,31346668 +g1,8445:6630773,31346668 +g1,8445:6434165,31346668 +(1,8445:6434165,31346668:0,4877763,196608 +r1,8475:32779637,31346668:26345472,5074371,196608 +k1,8445:6434165,31346668:-26345472 +) +(1,8445:6434165,31346668:26345472,4877763,196608 +[1,8445:6630773,31346668:25952256,4681155,0 +(1,8435:6630773,27096558:25952256,431045,106246 +(1,8434:6630773,27096558:0,0,0 +g1,8434:6630773,27096558 +g1,8434:6630773,27096558 +g1,8434:6303093,27096558 +(1,8434:6303093,27096558:0,0,0 +) +g1,8434:6630773,27096558 +) +k1,8435:6630773,27096558:0 +k1,8435:6630773,27096558:0 +h1,8435:13269852,27096558:0,0,0 +k1,8435:32583028,27096558:19313176 +g1,8435:32583028,27096558 +) +(1,8444:6630773,27912485:25952256,398014,106246 +(1,8437:6630773,27912485:0,0,0 +g1,8437:6630773,27912485 +g1,8437:6630773,27912485 +g1,8437:6303093,27912485 +(1,8437:6303093,27912485:0,0,0 +) +g1,8437:6630773,27912485 +) +g1,8444:7626635,27912485 +g1,8444:7958589,27912485 +g1,8444:8290543,27912485 +g1,8444:8954451,27912485 +h1,8444:9286405,27912485:0,0,0 +k1,8444:32583029,27912485:23296624 +g1,8444:32583029,27912485 +) +(1,8444:6630773,28597340:25952256,407923,9908 +h1,8444:6630773,28597340:0,0,0 +g1,8444:7626635,28597340 +g1,8444:8290543,28597340 +g1,8444:8954451,28597340 +h1,8444:9286405,28597340:0,0,0 +k1,8444:32583029,28597340:23296624 +g1,8444:32583029,28597340 +) +(1,8444:6630773,29282195:25952256,407923,0 +h1,8444:6630773,29282195:0,0,0 +g1,8444:7626635,29282195 +g1,8444:8290543,29282195 +g1,8444:8954451,29282195 +h1,8444:9286405,29282195:0,0,0 +k1,8444:32583029,29282195:23296624 +g1,8444:32583029,29282195 +) +(1,8444:6630773,29967050:25952256,407923,9908 +h1,8444:6630773,29967050:0,0,0 +g1,8444:7626635,29967050 +g1,8444:8290543,29967050 +g1,8444:8954451,29967050 +h1,8444:9286405,29967050:0,0,0 +k1,8444:32583029,29967050:23296624 +g1,8444:32583029,29967050 +) +(1,8444:6630773,30651905:25952256,407923,0 +h1,8444:6630773,30651905:0,0,0 +g1,8444:7626635,30651905 +g1,8444:8290543,30651905 +g1,8444:8954451,30651905 +h1,8444:9286405,30651905:0,0,0 +k1,8444:32583029,30651905:23296624 +g1,8444:32583029,30651905 +) +(1,8444:6630773,31336760:25952256,407923,9908 +h1,8444:6630773,31336760:0,0,0 +g1,8444:7626635,31336760 +g1,8444:8290543,31336760 +g1,8444:8954451,31336760 +h1,8444:9286405,31336760:0,0,0 +k1,8444:32583029,31336760:23296624 +g1,8444:32583029,31336760 +) +] +) +g1,8445:32583029,31346668 +g1,8445:6630773,31346668 +g1,8445:6630773,31346668 +g1,8445:32583029,31346668 +g1,8445:32583029,31346668 +) +h1,8445:6630773,31543276:0,0,0 +(1,8449:6630773,32408356:25952256,513147,134348 +h1,8448:6630773,32408356:983040,0,0 +k1,8448:8478514,32408356:236866 +k1,8448:9734465,32408356:236866 +k1,8448:11355450,32408356:236865 +k1,8448:14253733,32408356:236866 +k1,8448:15358951,32408356:236866 +k1,8448:17602529,32408356:236866 +k1,8448:18858480,32408356:236866 +k1,8448:20507646,32408356:236865 +k1,8448:22704038,32408356:236866 +k1,8448:23592332,32408356:236866 +k1,8448:24185058,32408356:236866 +k1,8448:27184266,32408356:236865 +k1,8448:29332817,32408356:236866 +k1,8448:30761128,32408356:236866 +k1,8448:32583029,32408356:0 +) +(1,8449:6630773,33273436:25952256,505283,134348 +g1,8448:8114508,33273436 +g1,8448:9332822,33273436 +g1,8448:11491577,33273436 +g1,8448:13103107,33273436 +g1,8448:13833833,33273436 +g1,8448:16769845,33273436 +g1,8448:17620502,33273436 +g1,8448:18838816,33273436 +g1,8448:20194755,33273436 +k1,8449:32583029,33273436:10403188 +g1,8449:32583029,33273436 +) +v1,8451:6630773,33958291:0,393216,0 +(1,8459:6630773,35773332:25952256,2208257,196608 +g1,8459:6630773,35773332 +g1,8459:6630773,35773332 +g1,8459:6434165,35773332 +(1,8459:6434165,35773332:0,2208257,196608 +r1,8475:32779637,35773332:26345472,2404865,196608 +k1,8459:6434165,35773332:-26345472 +) +(1,8459:6434165,35773332:26345472,2208257,196608 +[1,8459:6630773,35773332:25952256,2011649,0 +(1,8453:6630773,34192728:25952256,431045,106246 +(1,8452:6630773,34192728:0,0,0 +g1,8452:6630773,34192728 +g1,8452:6630773,34192728 +g1,8452:6303093,34192728 +(1,8452:6303093,34192728:0,0,0 +) +g1,8452:6630773,34192728 +) +g1,8453:10282266,34192728 +g1,8453:11278128,34192728 +k1,8453:11278128,34192728:0 +h1,8453:17917207,34192728:0,0,0 +k1,8453:32583029,34192728:14665822 +g1,8453:32583029,34192728 +) +(1,8454:6630773,34877583:25952256,431045,106246 +h1,8454:6630773,34877583:0,0,0 +g1,8454:12273990,34877583 +h1,8454:15925483,34877583:0,0,0 +k1,8454:32583029,34877583:16657546 +g1,8454:32583029,34877583 +) +(1,8458:6630773,35693510:25952256,424439,79822 +(1,8456:6630773,35693510:0,0,0 +g1,8456:6630773,35693510 +g1,8456:6630773,35693510 +g1,8456:6303093,35693510 +(1,8456:6303093,35693510:0,0,0 +) +g1,8456:6630773,35693510 +) +g1,8458:7626635,35693510 +g1,8458:8954451,35693510 +h1,8458:10282267,35693510:0,0,0 +k1,8458:32583029,35693510:22300762 +g1,8458:32583029,35693510 +) +] +) +g1,8459:32583029,35773332 +g1,8459:6630773,35773332 +g1,8459:6630773,35773332 +g1,8459:32583029,35773332 +g1,8459:32583029,35773332 +) +h1,8459:6630773,35969940:0,0,0 +(1,8463:6630773,36835020:25952256,513147,134348 +h1,8462:6630773,36835020:983040,0,0 +g1,8462:8630931,36835020 +g1,8462:10859155,36835020 +g1,8462:11926736,36835020 +g1,8462:13782715,36835020 +g1,8462:14817528,36835020 +g1,8462:15778285,36835020 +g1,8462:18545215,36835020 +g1,8462:19763529,36835020 +k1,8463:32583029,36835020:11662790 +g1,8463:32583029,36835020 +) +v1,8465:6630773,37519875:0,393216,0 +(1,8469:6630773,37860558:25952256,733899,196608 +g1,8469:6630773,37860558 +g1,8469:6630773,37860558 +g1,8469:6434165,37860558 +(1,8469:6434165,37860558:0,733899,196608 +r1,8475:32779637,37860558:26345472,930507,196608 +k1,8469:6434165,37860558:-26345472 +) +(1,8469:6434165,37860558:26345472,733899,196608 +[1,8469:6630773,37860558:25952256,537291,0 +(1,8467:6630773,37754312:25952256,431045,106246 +(1,8466:6630773,37754312:0,0,0 +g1,8466:6630773,37754312 +g1,8466:6630773,37754312 +g1,8466:6303093,37754312 +(1,8466:6303093,37754312:0,0,0 +) +g1,8466:6630773,37754312 +) +k1,8467:6630773,37754312:0 +k1,8467:6630773,37754312:0 +h1,8467:12937898,37754312:0,0,0 +k1,8467:32583030,37754312:19645132 +g1,8467:32583030,37754312 +) +] +) +g1,8469:32583029,37860558 +g1,8469:6630773,37860558 +g1,8469:6630773,37860558 +g1,8469:32583029,37860558 +g1,8469:32583029,37860558 +) +h1,8469:6630773,38057166:0,0,0 +(1,8472:6630773,40888326:25952256,32768,229376 +(1,8472:6630773,40888326:0,32768,229376 +(1,8472:6630773,40888326:5505024,32768,229376 +r1,8475:12135797,40888326:5505024,262144,229376 +) +k1,8472:6630773,40888326:-5505024 +) +(1,8472:6630773,40888326:25952256,32768,0 +r1,8475:32583029,40888326:25952256,32768,0 +) +) +(1,8472:6630773,42520178:25952256,606339,161218 +(1,8472:6630773,42520178:1974731,582746,14155 +g1,8472:6630773,42520178 +g1,8472:8605504,42520178 +) +k1,8472:32583030,42520178:20901004 +g1,8472:32583030,42520178 +) +(1,8475:6630773,43778474:25952256,513147,134348 +k1,8474:7457305,43778474:198697 +k1,8474:9257702,43778474:198697 +k1,8474:11153781,43778474:198697 +k1,8474:12371563,43778474:198697 +k1,8474:14171960,43778474:198697 +k1,8474:17047147,43778474:198697 +k1,8474:18483819,43778474:198697 +k1,8474:19341808,43778474:198697 +k1,8474:22554506,43778474:198697 +k1,8474:23944648,43778474:198697 +k1,8474:26957461,43778474:198697 +k1,8474:27815450,43778474:198697 +k1,8474:28370007,43778474:198697 +k1,8474:29958067,43778474:198697 +k1,8474:31091307,43778474:198697 +k1,8474:31821501,43778474:198697 +k1,8474:32583029,43778474:0 +) +(1,8475:6630773,44643554:25952256,505283,134348 +k1,8474:9404201,44643554:248981 +k1,8474:10111278,44643554:248980 +k1,8474:12095652,44643554:248981 +k1,8474:15015880,44643554:248981 +k1,8474:19100682,44643554:248980 +k1,8474:20546350,44643554:248981 +k1,8474:22857043,44643554:248930 +k1,8474:25412891,44643554:248981 +k1,8474:28116195,44643554:248981 +(1,8474:28116195,44643554:0,452978,115847 +r1,8475:30233020,44643554:2116825,568825,115847 +k1,8474:28116195,44643554:-2116825 +) +(1,8474:28116195,44643554:2116825,452978,115847 +k1,8474:28116195,44643554:3277 +h1,8474:30229743,44643554:0,411205,112570 +) +k1,8474:30482000,44643554:248980 +k1,8474:31835263,44643554:248981 +k1,8474:32583029,44643554:0 +) +(1,8475:6630773,45508634:25952256,513147,134348 +k1,8474:8330928,45508634:186929 +k1,8474:9169285,45508634:186929 +k1,8474:10633510,45508634:186928 +k1,8474:13582782,45508634:186929 +k1,8474:15332745,45508634:186929 +k1,8474:15989567,45508634:186929 +k1,8474:16707992,45508634:186928 +k1,8474:17250781,45508634:186929 +k1,8474:19744577,45508634:186929 +k1,8474:22385829,45508634:186929 +k1,8474:23857263,45508634:186928 +k1,8474:25145197,45508634:186929 +k1,8474:30071034,45508634:186929 +k1,8474:32583029,45508634:0 +) +] +(1,8475:32583029,45706769:0,0,0 +g1,8475:32583029,45706769 +) +) +] +(1,8475:6630773,47279633:25952256,0,0 +h1,8475:6630773,47279633:25952256,0,0 +) +] +(1,8475:4262630,4025873:0,0,0 +[1,8475:-473656,4025873:0,0,0 +(1,8475:-473656,-710413:0,0,0 +(1,8475:-473656,-710413:0,0,0 +g1,8475:-473656,-710413 +) +g1,8475:-473656,-710413 +) +] +) +] +!24921 +}128 +Input:1165:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1166:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1167:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1168:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1169:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1170:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1171:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1172:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1173:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!858 +{129 +[1,8510:4262630,47279633:28320399,43253760,0 +(1,8510:4262630,4025873:0,0,0 +[1,8510:-473656,4025873:0,0,0 +(1,8510:-473656,-710413:0,0,0 +(1,8510:-473656,-644877:0,0,0 +k1,8510:-473656,-644877:-65536 ) -(1,9110:-473656,4736287:0,0,0 -k1,9110:-473656,4736287:5209943 +(1,8510:-473656,4736287:0,0,0 +k1,8510:-473656,4736287:5209943 ) -g1,9110:-473656,-710413 +g1,8510:-473656,-710413 ) ] ) -[1,9110:6630773,47279633:25952256,43253760,0 -[1,9110:6630773,4812305:25952256,786432,0 -(1,9110:6630773,4812305:25952256,505283,134348 -(1,9110:6630773,4812305:25952256,505283,134348 -g1,9110:3078558,4812305 -[1,9110:3078558,4812305:0,0,0 -(1,9110:3078558,2439708:0,1703936,0 -k1,9110:1358238,2439708:-1720320 -(1,8393:1358238,2439708:1720320,1703936,0 -(1,8393:1358238,2439708:1179648,16384,0 -r1,9110:2537886,2439708:1179648,16384,0 +[1,8510:6630773,47279633:25952256,43253760,0 +[1,8510:6630773,4812305:25952256,786432,0 +(1,8510:6630773,4812305:25952256,505283,11795 +(1,8510:6630773,4812305:25952256,505283,11795 +g1,8510:3078558,4812305 +[1,8510:3078558,4812305:0,0,0 +(1,8510:3078558,2439708:0,1703936,0 +k1,8510:1358238,2439708:-1720320 +(1,6148:1358238,2439708:1720320,1703936,0 +(1,6148:1358238,2439708:1179648,16384,0 +r1,8510:2537886,2439708:1179648,16384,0 ) -g1,8393:3062174,2439708 -(1,8393:3062174,2439708:16384,1703936,0 -[1,8393:3062174,2439708:25952256,1703936,0 -(1,8393:3062174,1915420:25952256,1179648,0 -(1,8393:3062174,1915420:16384,1179648,0 -r1,9110:3078558,1915420:16384,1179648,0 +g1,6148:3062174,2439708 +(1,6148:3062174,2439708:16384,1703936,0 +[1,6148:3062174,2439708:25952256,1703936,0 +(1,6148:3062174,1915420:25952256,1179648,0 +(1,6148:3062174,1915420:16384,1179648,0 +r1,8510:3078558,1915420:16384,1179648,0 ) -k1,8393:29014430,1915420:25935872 -g1,8393:29014430,1915420 +k1,6148:29014430,1915420:25935872 +g1,6148:29014430,1915420 ) ] ) ) ) ] -[1,9110:3078558,4812305:0,0,0 -(1,9110:3078558,2439708:0,1703936,0 -g1,9110:29030814,2439708 -g1,9110:36135244,2439708 -(1,8393:36135244,2439708:1720320,1703936,0 -(1,8393:36135244,2439708:16384,1703936,0 -[1,8393:36135244,2439708:25952256,1703936,0 -(1,8393:36135244,1915420:25952256,1179648,0 -(1,8393:36135244,1915420:16384,1179648,0 -r1,9110:36151628,1915420:16384,1179648,0 -) -k1,8393:62087500,1915420:25935872 -g1,8393:62087500,1915420 -) -] -) -g1,8393:36675916,2439708 -(1,8393:36675916,2439708:1179648,16384,0 -r1,9110:37855564,2439708:1179648,16384,0 -) +[1,8510:3078558,4812305:0,0,0 +(1,8510:3078558,2439708:0,1703936,0 +g1,8510:29030814,2439708 +g1,8510:36135244,2439708 +(1,6148:36135244,2439708:1720320,1703936,0 +(1,6148:36135244,2439708:16384,1703936,0 +[1,6148:36135244,2439708:25952256,1703936,0 +(1,6148:36135244,1915420:25952256,1179648,0 +(1,6148:36135244,1915420:16384,1179648,0 +r1,8510:36151628,1915420:16384,1179648,0 ) -k1,9110:3078556,2439708:-34777008 +k1,6148:62087500,1915420:25935872 +g1,6148:62087500,1915420 ) ] -[1,9110:3078558,4812305:0,0,0 -(1,9110:3078558,49800853:0,16384,2228224 -k1,9110:1358238,49800853:-1720320 -(1,8393:1358238,49800853:1720320,16384,2228224 -(1,8393:1358238,49800853:1179648,16384,0 -r1,9110:2537886,49800853:1179648,16384,0 ) -g1,8393:3062174,49800853 -(1,8393:3062174,52029077:16384,1703936,0 -[1,8393:3062174,52029077:25952256,1703936,0 -(1,8393:3062174,51504789:25952256,1179648,0 -(1,8393:3062174,51504789:16384,1179648,0 -r1,9110:3078558,51504789:16384,1179648,0 +g1,6148:36675916,2439708 +(1,6148:36675916,2439708:1179648,16384,0 +r1,8510:37855564,2439708:1179648,16384,0 ) -k1,8393:29014430,51504789:25935872 -g1,8393:29014430,51504789 +) +k1,8510:3078556,2439708:-34777008 ) ] +[1,8510:3078558,4812305:0,0,0 +(1,8510:3078558,49800853:0,16384,2228224 +k1,8510:1358238,49800853:-1720320 +(1,6148:1358238,49800853:1720320,16384,2228224 +(1,6148:1358238,49800853:1179648,16384,0 +r1,8510:2537886,49800853:1179648,16384,0 ) +g1,6148:3062174,49800853 +(1,6148:3062174,52029077:16384,1703936,0 +[1,6148:3062174,52029077:25952256,1703936,0 +(1,6148:3062174,51504789:25952256,1179648,0 +(1,6148:3062174,51504789:16384,1179648,0 +r1,8510:3078558,51504789:16384,1179648,0 ) +k1,6148:29014430,51504789:25935872 +g1,6148:29014430,51504789 +) +] +) +) +) +] +[1,8510:3078558,4812305:0,0,0 +(1,8510:3078558,49800853:0,16384,2228224 +g1,8510:29030814,49800853 +g1,8510:36135244,49800853 +(1,6148:36135244,49800853:1720320,16384,2228224 +(1,6148:36135244,52029077:16384,1703936,0 +[1,6148:36135244,52029077:25952256,1703936,0 +(1,6148:36135244,51504789:25952256,1179648,0 +(1,6148:36135244,51504789:16384,1179648,0 +r1,8510:36151628,51504789:16384,1179648,0 +) +k1,6148:62087500,51504789:25935872 +g1,6148:62087500,51504789 +) +] +) +g1,6148:36675916,49800853 +(1,6148:36675916,49800853:1179648,16384,0 +r1,8510:37855564,49800853:1179648,16384,0 +) +) +k1,8510:3078556,49800853:-34777008 +) +] +g1,8510:6630773,4812305 +k1,8510:24358918,4812305:16532768 +g1,8510:25981589,4812305 +g1,8510:26804065,4812305 +g1,8510:30302376,4812305 +) +) +] +[1,8510:6630773,45706769:25952256,40108032,0 +(1,8510:6630773,45706769:25952256,40108032,0 +(1,8510:6630773,45706769:0,0,0 +g1,8510:6630773,45706769 +) +[1,8510:6630773,45706769:25952256,40108032,0 +(1,8475:6630773,6254097:25952256,513147,134348 +k1,8474:7774938,6254097:196514 +k1,8474:10733795,6254097:196514 +k1,8474:12689952,6254097:196515 +k1,8474:13545758,6254097:196514 +k1,8474:16032100,6254097:196514 +k1,8474:17460691,6254097:196514 +k1,8474:19935892,6254097:196514 +h1,8474:20906480,6254097:0,0,0 +k1,8474:21102995,6254097:196515 +k1,8474:22108879,6254097:196514 +k1,8474:23803546,6254097:196514 +h1,8474:24998923,6254097:0,0,0 +k1,8474:25195437,6254097:196514 +k1,8474:26339603,6254097:196515 +k1,8474:26891977,6254097:196514 +k1,8474:28590576,6254097:196514 +k1,8474:32583029,6254097:0 +) +(1,8475:6630773,7119177:25952256,513147,134348 +k1,8474:7488366,7119177:206165 +k1,8474:10158029,7119177:206165 +k1,8474:12597006,7119177:206165 +k1,8474:13994616,7119177:206165 +k1,8474:17366170,7119177:206165 +k1,8474:18200171,7119177:206166 +k1,8474:19609577,7119177:206165 +k1,8474:22094429,7119177:206165 +k1,8474:23168946,7119177:206165 +k1,8474:24750712,7119177:206165 +k1,8474:26310851,7119177:206165 +k1,8474:28549943,7119177:206165 +k1,8474:32583029,7119177:0 +) +(1,8475:6630773,7984257:25952256,513147,134348 +k1,8474:7824387,7984257:174529 +k1,8474:9091401,7984257:174529 +k1,8474:9925222,7984257:174529 +k1,8474:11118836,7984257:174529 +k1,8474:12895066,7984257:174530 +k1,8474:15847011,7984257:174529 +k1,8474:18083278,7984257:174504 +k1,8474:20976896,7984257:174529 +k1,8474:24350894,7984257:174530 +k1,8474:26083214,7984257:174529 +k1,8474:27249303,7984257:174529 +k1,8474:28702439,7984257:174529 +k1,8474:31966991,7984257:174529 +k1,8474:32583029,7984257:0 +) +(1,8475:6630773,8849337:25952256,505283,126483 +k1,8474:7855966,8849337:206108 +k1,8474:9644112,8849337:206107 +k1,8474:10299797,8849337:206108 +k1,8474:13339681,8849337:206107 +k1,8474:16065649,8849337:206108 +k1,8474:18246398,8849337:206149 +k1,8474:19406054,8849337:206107 +k1,8474:20744624,8849337:206108 +k1,8474:22017002,8849337:206107 +k1,8474:24892391,8849337:206108 +k1,8474:26117583,8849337:206107 +k1,8474:28440504,8849337:206108 +k1,8474:30708374,8849337:206107 +k1,8474:31723852,8849337:206108 +k1,8474:32583029,8849337:0 +) +(1,8475:6630773,9714417:25952256,513147,134348 +k1,8474:9027061,9714417:177239 +k1,8474:12188811,9714417:177240 +k1,8474:13017478,9714417:177239 +k1,8474:15719165,9714417:177240 +k1,8474:18139702,9714417:177239 +k1,8474:20291673,9714417:177371 +k1,8474:22807892,9714417:177239 +k1,8474:23853484,9714417:177240 +k1,8474:26700004,9714417:177239 +k1,8474:27493282,9714417:177240 +k1,8474:29457688,9714417:177239 +k1,8474:30654013,9714417:177240 +k1,8474:31923737,9714417:177239 +k1,8474:32583029,9714417:0 +) +(1,8475:6630773,10579497:25952256,513147,134348 +k1,8474:7837345,10579497:187487 +k1,8474:10363813,10579497:187488 +k1,8474:13596103,10579497:187487 +k1,8474:14399629,10579497:187488 +k1,8474:17319968,10579497:187487 +k1,8474:18698901,10579497:187488 +k1,8474:21410835,10579497:187487 +k1,8474:22992274,10579497:187488 +k1,8474:25759913,10579497:187487 +k1,8474:28775934,10579497:187488 +k1,8474:29579459,10579497:187487 +k1,8474:32184570,10579497:187488 +h1,8474:32583029,10579497:0,0,0 +k1,8474:32583029,10579497:0 +) +(1,8475:6630773,11444577:25952256,485622,134348 +g1,8474:7639372,11444577 +g1,8474:9336754,11444577 +h1,8474:10532131,11444577:0,0,0 +k1,8475:32583029,11444577:21877228 +g1,8475:32583029,11444577 +) +(1,8477:6630773,12309657:25952256,513147,126483 +h1,8476:6630773,12309657:983040,0,0 +k1,8476:8256580,12309657:172874 +k1,8476:8960952,12309657:172875 +k1,8476:11763786,12309657:172874 +k1,8476:12588089,12309657:172875 +k1,8476:14198168,12309657:172874 +k1,8476:15543482,12309657:172875 +k1,8476:18557997,12309657:172874 +k1,8476:20335849,12309657:172875 +k1,8476:23221914,12309657:172874 +k1,8476:24962410,12309657:172875 +k1,8476:25491144,12309657:172874 +k1,8476:27053382,12309657:172875 +k1,8476:29309646,12309657:172874 +k1,8476:31896867,12309657:172875 +k1,8476:32583029,12309657:0 +) +(1,8477:6630773,13174737:25952256,513147,134348 +g1,8476:10232631,13174737 +g1,8476:11083288,13174737 +g1,8476:12301602,13174737 +(1,8476:12301602,13174737:0,414482,115847 +r1,8510:12659868,13174737:358266,530329,115847 +k1,8476:12301602,13174737:-358266 +) +(1,8476:12301602,13174737:358266,414482,115847 +k1,8476:12301602,13174737:3277 +h1,8476:12656591,13174737:0,411205,112570 +) +g1,8476:12859097,13174737 +g1,8476:14249771,13174737 +(1,8476:14249771,13174737:0,414482,115847 +r1,8510:14608037,13174737:358266,530329,115847 +k1,8476:14249771,13174737:-358266 +) +(1,8476:14249771,13174737:358266,414482,115847 +k1,8476:14249771,13174737:3277 +h1,8476:14604760,13174737:0,411205,112570 +) +g1,8476:14807266,13174737 +g1,8476:18617529,13174737 +g1,8476:19483914,13174737 +(1,8476:19483914,13174737:0,452978,115847 +r1,8510:21600739,13174737:2116825,568825,115847 +k1,8476:19483914,13174737:-2116825 +) +(1,8476:19483914,13174737:2116825,452978,115847 +k1,8476:19483914,13174737:3277 +h1,8476:21597462,13174737:0,411205,112570 +) +k1,8477:32583029,13174737:10808620 +g1,8477:32583029,13174737 +) +v1,8481:6630773,13859592:0,393216,0 +(1,8485:6630773,14200275:25952256,733899,196608 +g1,8485:6630773,14200275 +g1,8485:6630773,14200275 +g1,8485:6434165,14200275 +(1,8485:6434165,14200275:0,733899,196608 +r1,8510:32779637,14200275:26345472,930507,196608 +k1,8485:6434165,14200275:-26345472 +) +(1,8485:6434165,14200275:26345472,733899,196608 +[1,8485:6630773,14200275:25952256,537291,0 +(1,8483:6630773,14094029:25952256,431045,106246 +(1,8482:6630773,14094029:0,0,0 +g1,8482:6630773,14094029 +g1,8482:6630773,14094029 +g1,8482:6303093,14094029 +(1,8482:6303093,14094029:0,0,0 +) +g1,8482:6630773,14094029 +) +k1,8483:6630773,14094029:0 +g1,8483:8954451,14094029 +g1,8483:9618359,14094029 +g1,8483:13601807,14094029 +g1,8483:14265715,14094029 +g1,8483:14929623,14094029 +h1,8483:18249163,14094029:0,0,0 +k1,8483:32583029,14094029:14333866 +g1,8483:32583029,14094029 +) +] +) +g1,8485:32583029,14200275 +g1,8485:6630773,14200275 +g1,8485:6630773,14200275 +g1,8485:32583029,14200275 +g1,8485:32583029,14200275 +) +h1,8485:6630773,14396883:0,0,0 +(1,8488:6630773,28476403:25952256,14013984,0 +k1,8488:12599879,28476403:5969106 +h1,8487:12599879,28476403:0,0,0 +(1,8487:12599879,28476403:14014044,14013984,0 +(1,8487:12599879,28476403:14014019,14014019,0 +(1,8487:12599879,28476403:14014019,14014019,0 +(1,8487:12599879,28476403:0,14014019,0 +(1,8487:12599879,28476403:0,18945146,0 +(1,8487:12599879,28476403:18945146,18945146,0 +) +k1,8487:12599879,28476403:-18945146 +) +) +g1,8487:26613898,28476403 +) +) +) +g1,8488:26613923,28476403 +k1,8488:32583029,28476403:5969106 +) +(1,8495:6630773,29341483:25952256,513147,126483 +h1,8494:6630773,29341483:983040,0,0 +k1,8494:8263415,29341483:179709 +k1,8494:8974621,29341483:179709 +k1,8494:10440146,29341483:179709 +k1,8494:13423485,29341483:179709 +k1,8494:14794639,29341483:179709 +k1,8494:17261555,29341483:179709 +k1,8494:19091460,29341483:179708 +k1,8494:22927423,29341483:179709 +k1,8494:23758560,29341483:179709 +k1,8494:25030754,29341483:179709 +k1,8494:25566323,29341483:179709 +k1,8494:28294072,29341483:179709 +k1,8494:29125209,29341483:179709 +k1,8494:31563944,29341483:179709 +k1,8494:32583029,29341483:0 +) +(1,8495:6630773,30206563:25952256,505283,138281 +k1,8494:9629831,30206563:157417 +k1,8494:10438677,30206563:157418 +k1,8494:11343860,30206563:157417 +k1,8494:13803557,30206563:157417 +k1,8494:14770344,30206563:157417 +k1,8494:15946847,30206563:157418 +$1,8494:15946847,30206563 +$1,8494:16449508,30206563 +k1,8494:16606925,30206563:157417 +k1,8494:17955787,30206563:157417 +$1,8494:17955787,30206563 +$1,8494:18507600,30206563 +k1,8494:18665017,30206563:157417 +k1,8494:20394644,30206563:157418 +k1,8494:22979515,30206563:157417 +k1,8494:26930156,30206563:157417 +k1,8494:27773735,30206563:157417 +k1,8494:28701856,30206563:157418 +k1,8494:31931601,30206563:157417 +k1,8494:32583029,30206563:0 +) +(1,8495:6630773,31071643:25952256,513147,134348 +k1,8494:10053671,31071643:142166 +(1,8494:10053671,31071643:0,452978,115847 +r1,8510:11467072,31071643:1413401,568825,115847 +k1,8494:10053671,31071643:-1413401 +) +(1,8494:10053671,31071643:1413401,452978,115847 +k1,8494:10053671,31071643:3277 +h1,8494:11463795,31071643:0,411205,112570 +) +k1,8494:11609239,31071643:142167 +k1,8494:12107265,31071643:142166 +k1,8494:13638795,31071643:142167 +k1,8494:15657257,31071643:142166 +k1,8494:19161420,31071643:142166 +k1,8494:21000314,31071643:142167 +k1,8494:24157791,31071643:142166 +k1,8494:25496645,31071643:142167 +k1,8494:28182263,31071643:142166 +(1,8494:28182263,31071643:0,452978,115847 +r1,8510:32409359,31071643:4227096,568825,115847 +k1,8494:28182263,31071643:-4227096 +) +(1,8494:28182263,31071643:4227096,452978,115847 +g1,8494:29944099,31071643 +g1,8494:30647523,31071643 +h1,8494:32406082,31071643:0,411205,112570 +) +k1,8494:32583029,31071643:0 +) +(1,8495:6630773,31936723:25952256,505283,138281 +k1,8494:7328395,31936723:166125 +k1,8494:8906820,31936723:166124 +k1,8494:9759107,31936723:166125 +(1,8494:9759107,31936723:0,452978,115847 +r1,8510:11172508,31936723:1413401,568825,115847 +k1,8494:9759107,31936723:-1413401 +) +(1,8494:9759107,31936723:1413401,452978,115847 +k1,8494:9759107,31936723:3277 +h1,8494:11169231,31936723:0,411205,112570 +) +k1,8494:11338633,31936723:166125 +k1,8494:14582983,31936723:166124 +k1,8494:15510636,31936723:166125 +(1,8494:15510636,31936723:0,452978,115847 +r1,8510:17275749,31936723:1765113,568825,115847 +k1,8494:15510636,31936723:-1765113 +) +(1,8494:15510636,31936723:1765113,452978,115847 +k1,8494:15510636,31936723:3277 +h1,8494:17272472,31936723:0,411205,112570 +) +k1,8494:19166782,31936723:166125 +(1,8494:19166782,31936723:0,452978,115847 +r1,8510:20580183,31936723:1413401,568825,115847 +k1,8494:19166782,31936723:-1413401 +) +(1,8494:19166782,31936723:1413401,452978,115847 +k1,8494:19166782,31936723:3277 +h1,8494:20576906,31936723:0,411205,112570 +) +k1,8494:20746307,31936723:166124 +k1,8494:21443929,31936723:166125 +k1,8494:24195449,31936723:166125 +k1,8494:25013001,31936723:166124 +k1,8494:26198211,31936723:166125 +$1,8494:26198211,31936723 +$1,8494:26750024,31936723 +k1,8494:28381534,31936723:166125 +k1,8494:29233820,31936723:166124 +k1,8494:30419030,31936723:166125 +k1,8495:32583029,31936723:0 +) +(1,8495:6630773,32801803:25952256,505283,126483 +k1,8494:8261745,32801803:191146 +k1,8494:10964231,32801803:191146 +k1,8494:12346821,32801803:191145 +(1,8494:12346821,32801803:0,452978,115847 +r1,8510:14111934,32801803:1765113,568825,115847 +k1,8494:12346821,32801803:-1765113 +) +(1,8494:12346821,32801803:1765113,452978,115847 +k1,8494:12346821,32801803:3277 +h1,8494:14108657,32801803:0,411205,112570 +) +k1,8494:14303080,32801803:191146 +k1,8494:15145654,32801803:191146 +k1,8494:16355885,32801803:191146 +$1,8494:16355885,32801803 +$1,8494:16858546,32801803 +k1,8494:18515076,32801803:191145 +k1,8494:19392384,32801803:191146 +k1,8494:20602615,32801803:191146 +k1,8494:24800632,32801803:191146 +k1,8494:27676787,32801803:191145 +k1,8494:28685822,32801803:191146 +k1,8494:31966991,32801803:191146 +k1,8494:32583029,32801803:0 +) +(1,8495:6630773,33666883:25952256,513147,134348 +k1,8494:9096770,33666883:187310 +h1,8494:10067358,33666883:0,0,0 +k1,8494:10254668,33666883:187310 +k1,8494:11251348,33666883:187310 +k1,8494:12936811,33666883:187310 +h1,8494:14132188,33666883:0,0,0 +k1,8494:14319498,33666883:187310 +k1,8494:15525893,33666883:187310 +k1,8494:17366676,33666883:187310 +k1,8494:19638031,33666883:187310 +k1,8494:20356838,33666883:187310 +k1,8494:22057374,33666883:187310 +k1,8494:22896112,33666883:187310 +k1,8494:25752703,33666883:187310 +k1,8494:28258021,33666883:187310 +k1,8494:29096759,33666883:187310 +k1,8494:30031835,33666883:187310 +k1,8494:31931601,33666883:187310 +k1,8494:32583029,33666883:0 +) +(1,8495:6630773,34531963:25952256,505283,7863 +k1,8495:32583029,34531963:21706834 +g1,8495:32583029,34531963 +) +v1,8497:6630773,35216818:0,393216,0 +(1,8501:6630773,35550895:25952256,727293,196608 +g1,8501:6630773,35550895 +g1,8501:6630773,35550895 +g1,8501:6434165,35550895 +(1,8501:6434165,35550895:0,727293,196608 +r1,8510:32779637,35550895:26345472,923901,196608 +k1,8501:6434165,35550895:-26345472 +) +(1,8501:6434165,35550895:26345472,727293,196608 +[1,8501:6630773,35550895:25952256,530685,0 +(1,8499:6630773,35444649:25952256,424439,106246 +(1,8498:6630773,35444649:0,0,0 +g1,8498:6630773,35444649 +g1,8498:6630773,35444649 +g1,8498:6303093,35444649 +(1,8498:6303093,35444649:0,0,0 +) +g1,8498:6630773,35444649 +) +k1,8499:6630773,35444649:0 +g1,8499:9950313,35444649 +g1,8499:10614221,35444649 +g1,8499:12937899,35444649 +g1,8499:14597669,35444649 +g1,8499:15261577,35444649 +h1,8499:16921347,35444649:0,0,0 +k1,8499:32583029,35444649:15661682 +g1,8499:32583029,35444649 +) +] +) +g1,8501:32583029,35550895 +g1,8501:6630773,35550895 +g1,8501:6630773,35550895 +g1,8501:32583029,35550895 +g1,8501:32583029,35550895 +) +h1,8501:6630773,35747503:0,0,0 +] +(1,8510:32583029,45706769:0,0,0 +g1,8510:32583029,45706769 +) +) +] +(1,8510:6630773,47279633:25952256,0,0 +h1,8510:6630773,47279633:25952256,0,0 +) +] +(1,8510:4262630,4025873:0,0,0 +[1,8510:-473656,4025873:0,0,0 +(1,8510:-473656,-710413:0,0,0 +(1,8510:-473656,-710413:0,0,0 +g1,8510:-473656,-710413 +) +g1,8510:-473656,-710413 +) +] +) +] +!15965 +}129 +Input:1174:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1175:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1176:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1177:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1178:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1179:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!576 +{130 +[1,8530:4262630,47279633:28320399,43253760,0 +(1,8530:4262630,4025873:0,0,0 +[1,8530:-473656,4025873:0,0,0 +(1,8530:-473656,-710413:0,0,0 +(1,8530:-473656,-644877:0,0,0 +k1,8530:-473656,-644877:-65536 ) -] -[1,9110:3078558,4812305:0,0,0 -(1,9110:3078558,49800853:0,16384,2228224 -g1,9110:29030814,49800853 -g1,9110:36135244,49800853 -(1,8393:36135244,49800853:1720320,16384,2228224 -(1,8393:36135244,52029077:16384,1703936,0 -[1,8393:36135244,52029077:25952256,1703936,0 -(1,8393:36135244,51504789:25952256,1179648,0 -(1,8393:36135244,51504789:16384,1179648,0 -r1,9110:36151628,51504789:16384,1179648,0 +(1,8530:-473656,4736287:0,0,0 +k1,8530:-473656,4736287:5209943 ) -k1,8393:62087500,51504789:25935872 -g1,8393:62087500,51504789 +g1,8530:-473656,-710413 ) ] ) -g1,8393:36675916,49800853 -(1,8393:36675916,49800853:1179648,16384,0 -r1,9110:37855564,49800853:1179648,16384,0 +[1,8530:6630773,47279633:25952256,43253760,0 +[1,8530:6630773,4812305:25952256,786432,0 +(1,8530:6630773,4812305:25952256,505283,134348 +(1,8530:6630773,4812305:25952256,505283,134348 +g1,8530:3078558,4812305 +[1,8530:3078558,4812305:0,0,0 +(1,8530:3078558,2439708:0,1703936,0 +k1,8530:1358238,2439708:-1720320 +(1,6148:1358238,2439708:1720320,1703936,0 +(1,6148:1358238,2439708:1179648,16384,0 +r1,8530:2537886,2439708:1179648,16384,0 ) +g1,6148:3062174,2439708 +(1,6148:3062174,2439708:16384,1703936,0 +[1,6148:3062174,2439708:25952256,1703936,0 +(1,6148:3062174,1915420:25952256,1179648,0 +(1,6148:3062174,1915420:16384,1179648,0 +r1,8530:3078558,1915420:16384,1179648,0 ) -k1,9110:3078556,49800853:-34777008 +k1,6148:29014430,1915420:25935872 +g1,6148:29014430,1915420 ) ] -g1,9110:6630773,4812305 -k1,9110:21643106,4812305:13816956 -g1,9110:23265777,4812305 -g1,9110:24088253,4812305 -g1,9110:28572226,4812305 -g1,9110:29981905,4812305 -) -) -] -[1,9110:6630773,45706769:25952256,40108032,0 -(1,9110:6630773,45706769:25952256,40108032,0 -(1,9110:6630773,45706769:0,0,0 -g1,9110:6630773,45706769 -) -[1,9110:6630773,45706769:25952256,40108032,0 -(1,9046:6630773,6254097:25952256,513147,134348 -k1,9045:9436697,6254097:144507 -k1,9045:12070261,6254097:144507 -k1,9045:13608719,6254097:144507 -k1,9045:14109086,6254097:144507 -k1,9045:17667363,6254097:144507 -k1,9045:20998230,6254097:144507 -k1,9045:24504734,6254097:144507 -k1,9045:25821680,6254097:144507 -k1,9045:29656519,6254097:144507 -k1,9045:31252648,6254097:144507 -k1,9045:32583029,6254097:0 -) -(1,9046:6630773,7095585:25952256,513147,134348 -g1,9045:7185862,7095585 -g1,9045:8484785,7095585 -g1,9045:9335442,7095585 -g1,9045:12230167,7095585 -(1,9045:12230167,7095585:0,452978,115847 -r1,9110:14698704,7095585:2468537,568825,115847 -k1,9045:12230167,7095585:-2468537 -) -(1,9045:12230167,7095585:2468537,452978,115847 -k1,9045:12230167,7095585:3277 -h1,9045:14695427,7095585:0,411205,112570 -) -g1,9045:14897933,7095585 -g1,9045:16491113,7095585 -g1,9045:17046202,7095585 -g1,9045:20007774,7095585 -k1,9046:32583029,7095585:9329257 -g1,9046:32583029,7095585 -) -v1,9048:6630773,8286051:0,393216,0 -(1,9060:6630773,12566758:25952256,4673923,196608 -g1,9060:6630773,12566758 -g1,9060:6630773,12566758 -g1,9060:6434165,12566758 -(1,9060:6434165,12566758:0,4673923,196608 -r1,9110:32779637,12566758:26345472,4870531,196608 -k1,9060:6434165,12566758:-26345472 -) -(1,9060:6434165,12566758:26345472,4673923,196608 -[1,9060:6630773,12566758:25952256,4477315,0 -(1,9050:6630773,8493669:25952256,404226,107478 -(1,9049:6630773,8493669:0,0,0 -g1,9049:6630773,8493669 -g1,9049:6630773,8493669 -g1,9049:6303093,8493669 -(1,9049:6303093,8493669:0,0,0 -) -g1,9049:6630773,8493669 -) -g1,9050:9476084,8493669 -g1,9050:10424522,8493669 -h1,9050:11689105,8493669:0,0,0 -k1,9050:32583029,8493669:20893924 -g1,9050:32583029,8493669 -) -(1,9051:6630773,9159847:25952256,410518,107478 -h1,9051:6630773,9159847:0,0,0 -g1,9051:7579210,9159847 -g1,9051:11056813,9159847 -h1,9051:11372959,9159847:0,0,0 -k1,9051:32583029,9159847:21210070 -g1,9051:32583029,9159847 -) -(1,9052:6630773,9826025:25952256,404226,101187 -h1,9052:6630773,9826025:0,0,0 -g1,9052:6946919,9826025 -g1,9052:7263065,9826025 -k1,9052:7263065,9826025:0 -h1,9052:10424522,9826025:0,0,0 -k1,9052:32583030,9826025:22158508 -g1,9052:32583030,9826025 -) -(1,9053:6630773,10492203:25952256,404226,101187 -h1,9053:6630773,10492203:0,0,0 -g1,9053:6946919,10492203 -g1,9053:7263065,10492203 -k1,9053:7263065,10492203:0 -h1,9053:10424522,10492203:0,0,0 -k1,9053:32583030,10492203:22158508 -g1,9053:32583030,10492203 -) -(1,9054:6630773,11158381:25952256,404226,76021 -h1,9054:6630773,11158381:0,0,0 -h1,9054:6946919,11158381:0,0,0 -k1,9054:32583029,11158381:25636110 -g1,9054:32583029,11158381 -) -(1,9059:6630773,11824559:25952256,404226,76021 -(1,9056:6630773,11824559:0,0,0 -g1,9056:6630773,11824559 -g1,9056:6630773,11824559 -g1,9056:6303093,11824559 -(1,9056:6303093,11824559:0,0,0 -) -g1,9056:6630773,11824559 -) -g1,9059:7579210,11824559 -g1,9059:8843793,11824559 -h1,9059:9792230,11824559:0,0,0 -k1,9059:32583030,11824559:22790800 -g1,9059:32583030,11824559 -) -(1,9059:6630773,12490737:25952256,404226,76021 -h1,9059:6630773,12490737:0,0,0 -g1,9059:7579210,12490737 -g1,9059:8843793,12490737 -h1,9059:9792230,12490737:0,0,0 -k1,9059:32583030,12490737:22790800 -g1,9059:32583030,12490737 -) -] -) -g1,9060:32583029,12566758 -g1,9060:6630773,12566758 -g1,9060:6630773,12566758 -g1,9060:32583029,12566758 -g1,9060:32583029,12566758 -) -h1,9060:6630773,12763366:0,0,0 -v1,9064:6630773,14653430:0,393216,0 -(1,9065:6630773,16891338:25952256,2631124,0 -g1,9065:6630773,16891338 -g1,9065:6303093,16891338 -r1,9110:6401397,16891338:98304,2631124,0 -g1,9065:6600626,16891338 -g1,9065:6797234,16891338 -[1,9065:6797234,16891338:25785795,2631124,0 -(1,9065:6797234,15074014:25785795,813800,267386 -(1,9064:6797234,15074014:0,813800,267386 -r1,9110:8134168,15074014:1336934,1081186,267386 -k1,9064:6797234,15074014:-1336934 -) -(1,9064:6797234,15074014:1336934,813800,267386 -) -k1,9064:8313619,15074014:179451 -k1,9064:8641299,15074014:327680 -k1,9064:10017436,15074014:179450 -k1,9064:13229238,15074014:179451 -k1,9064:15613975,15074014:179450 -k1,9064:16479588,15074014:179451 -k1,9064:17429742,15074014:179451 -k1,9064:20681520,15074014:179450 -k1,9064:21512399,15074014:179451 -(1,9064:21512399,15074014:0,459977,115847 -r1,9110:22222377,15074014:709978,575824,115847 -k1,9064:21512399,15074014:-709978 -) -(1,9064:21512399,15074014:709978,459977,115847 -k1,9064:21512399,15074014:3277 -h1,9064:22219100,15074014:0,411205,112570 -) -k1,9064:22575498,15074014:179451 -k1,9064:25548748,15074014:179450 -k1,9064:26344237,15074014:179451 -k1,9064:30551530,15074014:179450 -k1,9064:31835263,15074014:179451 -k1,9064:32583029,15074014:0 -) -(1,9065:6797234,15915502:25785795,513147,134348 -k1,9064:9808125,15915502:217091 -k1,9064:12550974,15915502:217091 -k1,9064:13123925,15915502:217091 -(1,9064:13123925,15915502:0,452978,122846 -r1,9110:15592462,15915502:2468537,575824,122846 -k1,9064:13123925,15915502:-2468537 -) -(1,9064:13123925,15915502:2468537,452978,122846 -k1,9064:13123925,15915502:3277 -h1,9064:15589185,15915502:0,411205,112570 -) -k1,9064:15809553,15915502:217091 -k1,9064:18004521,15915502:217091 -k1,9064:18880904,15915502:217091 -k1,9064:21111261,15915502:217091 -k1,9064:22658733,15915502:217091 -k1,9064:23693713,15915502:217091 -k1,9064:25114045,15915502:217091 -k1,9064:28363487,15915502:217091 -k1,9064:29112075,15915502:217091 -k1,9064:30392160,15915502:217091 -k1,9065:32583029,15915502:0 -) -(1,9065:6797234,16756990:25785795,505283,134348 -g1,9064:8529350,16756990 -g1,9064:9084439,16756990 -g1,9064:11308075,16756990 -g1,9064:13485181,16756990 -g1,9064:14816872,16756990 -g1,9064:17146676,16756990 -g1,9064:18116608,16756990 -g1,9064:18730680,16756990 -g1,9064:21500231,16756990 -g1,9064:22382345,16756990 -g1,9064:24188517,16756990 -g1,9064:27749743,16756990 -g1,9064:28758342,16756990 -g1,9064:29876386,16756990 -k1,9065:32583029,16756990:199236 -g1,9065:32583029,16756990 -) -] -g1,9065:32583029,16891338 -) -h1,9065:6630773,16891338:0,0,0 -(1,9068:6630773,18257114:25952256,513147,134348 -h1,9067:6630773,18257114:983040,0,0 -k1,9067:9111198,18257114:300698 -(1,9067:9111198,18257114:0,459977,115847 -r1,9110:12283159,18257114:3171961,575824,115847 -k1,9067:9111198,18257114:-3171961 -) -(1,9067:9111198,18257114:3171961,459977,115847 -g1,9067:10169611,18257114 -g1,9067:10873035,18257114 -h1,9067:12279882,18257114:0,411205,112570 -) -k1,9067:12583856,18257114:300697 -k1,9067:15908385,18257114:300698 -k1,9067:19384302,18257114:300698 -k1,9067:23046996,18257114:300697 -k1,9067:24157064,18257114:300698 -k1,9067:24813622,18257114:300698 -(1,9067:24813622,18257114:0,452978,122846 -r1,9110:27282159,18257114:2468537,575824,122846 -k1,9067:24813622,18257114:-2468537 -) -(1,9067:24813622,18257114:2468537,452978,122846 -k1,9067:24813622,18257114:3277 -h1,9067:27278882,18257114:0,411205,112570 -) -k1,9067:27582857,18257114:300698 -k1,9067:29737568,18257114:300697 -k1,9067:31923737,18257114:300698 -k1,9067:32583029,18257114:0 -) -(1,9068:6630773,19098602:25952256,513147,115847 -k1,9067:8140267,19098602:337055 -k1,9067:9973509,19098602:337055 -k1,9067:13827225,19098602:337054 -k1,9067:14695777,19098602:337055 -k1,9067:18039624,19098602:337055 -k1,9067:19573366,19098602:337055 -k1,9067:21260462,19098602:337054 -k1,9067:23247058,19098602:337055 -k1,9067:25575097,19098602:337055 -k1,9067:27242533,19098602:337055 -(1,9067:27242533,19098602:0,459977,115847 -r1,9110:27952511,19098602:709978,575824,115847 -k1,9067:27242533,19098602:-709978 -) -(1,9067:27242533,19098602:709978,459977,115847 -k1,9067:27242533,19098602:3277 -h1,9067:27949234,19098602:0,411205,112570 -) -k1,9067:28289565,19098602:337054 -k1,9067:30727049,19098602:337055 -k1,9068:32583029,19098602:0 -) -(1,9068:6630773,19940090:25952256,505283,134348 -(1,9067:6630773,19940090:0,414482,115847 -r1,9110:11209581,19940090:4578808,530329,115847 -k1,9067:6630773,19940090:-4578808 -) -(1,9067:6630773,19940090:4578808,414482,115847 -g1,9067:10502880,19940090 -h1,9067:11206304,19940090:0,411205,112570 -) -k1,9067:11399739,19940090:190158 -k1,9067:12272782,19940090:190158 -(1,9067:12272782,19940090:0,414482,115847 -r1,9110:16851590,19940090:4578808,530329,115847 -k1,9067:12272782,19940090:-4578808 -) -(1,9067:12272782,19940090:4578808,414482,115847 -g1,9067:16144889,19940090 -h1,9067:16848313,19940090:0,411205,112570 -) -k1,9067:17041749,19940090:190159 -k1,9067:17763404,19940090:190158 -k1,9067:21014749,19940090:190158 -k1,9067:22396352,19940090:190158 -k1,9067:23605595,19940090:190158 -k1,9067:25497724,19940090:190159 -k1,9067:28221504,19940090:190158 -k1,9067:31773659,19940090:190158 -k1,9067:32583029,19940090:0 -) -(1,9068:6630773,20781578:25952256,513147,126483 -g1,9067:7849087,20781578 -g1,9067:9728659,20781578 -g1,9067:10595044,20781578 -(1,9067:10595044,20781578:0,452978,115847 -r1,9110:14470428,20781578:3875384,568825,115847 -k1,9067:10595044,20781578:-3875384 -) -(1,9067:10595044,20781578:3875384,452978,115847 -k1,9067:10595044,20781578:3277 -h1,9067:14467151,20781578:0,411205,112570 -) -g1,9067:14843327,20781578 -g1,9067:16732074,20781578 -(1,9067:16732074,20781578:0,414482,115847 -r1,9110:21310882,20781578:4578808,530329,115847 -k1,9067:16732074,20781578:-4578808 -) -(1,9067:16732074,20781578:4578808,414482,115847 -g1,9067:20604181,20781578 -h1,9067:21307605,20781578:0,411205,112570 -) -g1,9067:21510111,20781578 -g1,9067:22240837,20781578 -g1,9067:24569331,20781578 -k1,9068:32583029,20781578:4778841 -g1,9068:32583029,20781578 -) -(1,9086:6630773,33775584:25952256,12146627,0 -k1,9086:8032787,33775584:1402014 -(1,9069:8032787,33775584:0,0,0 -g1,9069:8032787,33775584 -g1,9069:8032787,33775584 -g1,9069:7705107,33775584 -(1,9069:7705107,33775584:0,0,0 -) -g1,9069:8032787,33775584 -) -(1,9084:8032787,33775584:23148228,12146627,0 -g1,9084:19606901,33775584 -(1,9084:19606901,22574403:0,0,0 -(1,9084:19606901,22574403:0,0,0 -g1,9071:19606901,22574403 -(1,9072:19606901,22574403:0,0,0 -(1,9072:19606901,22574403:0,0,0 -g1,9072:19606901,22574403 -g1,9072:19606901,22574403 -g1,9072:19606901,22574403 -g1,9072:19606901,22574403 -g1,9072:19606901,22574403 -(1,9072:19606901,22574403:0,0,0 -(1,9072:19606901,22574403:589824,56623,0 -(1,9072:19606901,22574403:589824,56623,0 -) -g1,9072:20196725,22574403 -) -) -g1,9072:19606901,22574403 -g1,9072:19606901,22574403 -) -) -g1,9072:19606901,22574403 -(1,9073:19606901,22574403:0,0,0 -(1,9073:19606901,22574403:0,0,0 -g1,9073:19606901,22574403 -g1,9073:19606901,22574403 -(1,9073:19606901,22574403:0,0,0 -(1,9073:19606901,22574403:5387746,414307,104590 -(1,9073:19606901,22574403:5387746,414307,104590 -(1,9073:19606901,22574403:0,414307,104590 -r1,9110:24994647,22574403:5387746,518897,104590 -k1,9073:19606901,22574403:-5387746 -) -(1,9073:19606901,22574403:5387746,414307,104590 -g1,9073:20559800,22574403 -g1,9073:23725207,22574403 -h1,9073:24991370,22574403:0,370085,101313 -) -) -g1,9073:24994647,22574403 -) -) -g1,9073:19606901,22574403 -g1,9073:19606901,22574403 -) -) -(1,9074:19606901,22574403:0,0,0 -(1,9074:19606901,22574403:0,0,0 -g1,9074:19606901,22574403 -g1,9074:19606901,22574403 -g1,9074:19606901,22574403 -g1,9074:19606901,22574403 -g1,9074:19606901,22574403 -(1,9074:19606901,22574403:0,0,0 -(1,9074:19606901,22574403:4121582,373362,104590 -(1,9074:19606901,22574403:4121582,373362,104590 -(1,9074:19606901,22574403:0,373362,104590 -r1,9110:23728483,22574403:4121582,477952,104590 -k1,9074:19606901,22574403:-4121582 -) -(1,9074:19606901,22574403:4121582,373362,104590 -g1,9074:23092125,22574403 -h1,9074:23725206,22574403:0,370085,101313 -) -) -g1,9074:23728483,22574403 -) -) -g1,9074:19606901,22574403 -g1,9074:19606901,22574403 -) -) -(1,9075:19606901,22574403:0,0,0 -(1,9075:19606901,22574403:0,0,0 -g1,9075:19606901,22574403 -g1,9075:19606901,22574403 -g1,9075:19606901,22574403 -g1,9075:19606901,22574403 -g1,9075:19606901,22574403 -(1,9075:19606901,22574403:0,0,0 -(1,9075:19606901,22574403:4121582,373362,104590 -(1,9075:19606901,22574403:4121582,373362,104590 -(1,9075:19606901,22574403:0,373362,104590 -r1,9110:23728483,22574403:4121582,477952,104590 -k1,9075:19606901,22574403:-4121582 -) -(1,9075:19606901,22574403:4121582,373362,104590 -g1,9075:23092125,22574403 -h1,9075:23725206,22574403:0,370085,101313 -) -) -g1,9075:23728483,22574403 -) -) -g1,9075:19606901,22574403 -g1,9075:19606901,22574403 -) -) -(1,9076:19606901,22574403:0,0,0 -(1,9076:19606901,22574403:0,0,0 -g1,9076:19606901,22574403 -g1,9076:19606901,22574403 -g1,9076:19606901,22574403 -g1,9076:19606901,22574403 -g1,9076:19606901,22574403 -(1,9076:19606901,22574403:0,0,0 -(1,9076:19606901,22574403:4121582,373362,104590 -(1,9076:19606901,22574403:4121582,373362,104590 -(1,9076:19606901,22574403:0,373362,104590 -r1,9110:23728483,22574403:4121582,477952,104590 -k1,9076:19606901,22574403:-4121582 ) -(1,9076:19606901,22574403:4121582,373362,104590 -g1,9076:23092125,22574403 -h1,9076:23725206,22574403:0,370085,101313 ) ) -g1,9076:23728483,22574403 -) -) -g1,9076:19606901,22574403 -g1,9076:19606901,22574403 -) -) -g1,9076:19606901,22574403 -g1,9077:19606901,22574403 -(1,9077:19606901,22574403:0,0,0 -(1,9077:19606901,22574403:0,0,0 -g1,9077:19606901,22574403 -g1,9077:19606901,22574403 -g1,9077:19606901,22574403 -g1,9077:19606901,22574403 -g1,9077:19606901,22574403 -(1,9077:19606901,22574403:0,0,0 -(1,9077:19606901,22574403:589824,56623,0 -(1,9077:19606901,22574403:589824,56623,0 +] +[1,8530:3078558,4812305:0,0,0 +(1,8530:3078558,2439708:0,1703936,0 +g1,8530:29030814,2439708 +g1,8530:36135244,2439708 +(1,6148:36135244,2439708:1720320,1703936,0 +(1,6148:36135244,2439708:16384,1703936,0 +[1,6148:36135244,2439708:25952256,1703936,0 +(1,6148:36135244,1915420:25952256,1179648,0 +(1,6148:36135244,1915420:16384,1179648,0 +r1,8530:36151628,1915420:16384,1179648,0 +) +k1,6148:62087500,1915420:25935872 +g1,6148:62087500,1915420 +) +] ) -g1,9077:20196725,22574403 -) -) -g1,9077:19606901,22574403 -g1,9077:19606901,22574403 -) -) -g1,9077:19606901,22574403 -g1,9078:19606901,22574403 -g1,9078:19606901,22574403 -g1,9078:19606901,22574403 -g1,9078:19606901,22574403 -g1,9079:19606901,22574403 -g1,9079:19606901,22574403 -g1,9079:19606901,22574403 -(1,9079:19606901,22574403:0,0,0 -(1,9079:19606901,22574403:0,0,0 -g1,9079:19606901,22574403 -g1,9079:19606901,22574403 -g1,9079:19606901,22574403 -g1,9079:19606901,22574403 -g1,9079:19606901,22574403 -(1,9079:19606901,22574403:0,0,0 -(1,9079:19606901,22574403:1272717,373362,104590 -(1,9079:19606901,22574403:1272717,373362,104590 -(1,9079:19606901,22574403:0,373362,104590 -r1,9110:20879618,22574403:1272717,477952,104590 -k1,9079:19606901,22574403:-1272717 -) -(1,9079:19606901,22574403:1272717,373362,104590 -k1,9079:19606901,22574403:3277 -h1,9079:20876341,22574403:0,370085,101313 -) -) -g1,9079:20879618,22574403 -) -) -g1,9079:19606901,22574403 -g1,9079:19606901,22574403 -) -) -g1,9079:19606901,22574403 -g1,9080:19606901,22574403 -g1,9080:19606901,22574403 -g1,9080:19606901,22574403 -(1,9080:19606901,22574403:0,0,0 -(1,9080:19606901,22574403:0,0,0 -g1,9080:19606901,22574403 -g1,9080:19606901,22574403 -g1,9080:19606901,22574403 -g1,9080:19606901,22574403 -g1,9080:19606901,22574403 -(1,9080:19606901,22574403:0,0,0 -(1,9080:19606901,22574403:1589257,373362,104590 -(1,9080:19606901,22574403:1589257,373362,104590 -(1,9080:19606901,22574403:0,373362,104590 -r1,9110:21196158,22574403:1589257,477952,104590 -k1,9080:19606901,22574403:-1589257 -) -(1,9080:19606901,22574403:1589257,373362,104590 -k1,9080:19606901,22574403:3277 -h1,9080:21192881,22574403:0,370085,101313 -) -) -g1,9080:21196158,22574403 -) -) -g1,9080:19606901,22574403 -g1,9080:19606901,22574403 -) -) -g1,9080:19606901,22574403 -g1,9081:19606901,22574403 -g1,9081:19606901,22574403 -g1,9081:19606901,22574403 -g1,9081:19606901,22574403 -g1,9081:19606901,22574403 -g1,9082:19606901,22574403 -g1,9082:19606901,22574403 -g1,9082:19606901,22574403 -g1,9082:19606901,22574403 -g1,9082:19606901,22574403 -g1,9083:19606901,22574403 -g1,9083:19606901,22574403 -g1,9083:19606901,22574403 -g1,9083:19606901,22574403 -g1,9083:19606901,22574403 -g1,9083:19606901,22574403 -g1,9084:19606901,22574403 -g1,9084:19606901,22574403 -) -g1,9084:19606901,22574403 -) -) -g1,9086:31181015,33775584 -k1,9086:32583029,33775584:1402014 -) -v1,9089:6630773,35621410:0,393216,0 -(1,9103:6630773,39234558:25952256,4006364,196608 -g1,9103:6630773,39234558 -g1,9103:6630773,39234558 -g1,9103:6434165,39234558 -(1,9103:6434165,39234558:0,4006364,196608 -r1,9110:32779637,39234558:26345472,4202972,196608 -k1,9103:6434165,39234558:-26345472 -) -(1,9103:6434165,39234558:26345472,4006364,196608 -[1,9103:6630773,39234558:25952256,3809756,0 -(1,9091:6630773,35813299:25952256,388497,9436 -(1,9090:6630773,35813299:0,0,0 -g1,9090:6630773,35813299 -g1,9090:6630773,35813299 -g1,9090:6303093,35813299 -(1,9090:6303093,35813299:0,0,0 -) -g1,9090:6630773,35813299 -) -g1,9091:7263065,35813299 -g1,9091:8211503,35813299 -h1,9091:8843794,35813299:0,0,0 -k1,9091:32583030,35813299:23739236 -g1,9091:32583030,35813299 -) -(1,9092:6630773,36479477:25952256,410518,107478 -h1,9092:6630773,36479477:0,0,0 -g1,9092:7579210,36479477 -g1,9092:8527647,36479477 -g1,9092:9159939,36479477 -g1,9092:10108377,36479477 -g1,9092:13585981,36479477 -g1,9092:14534418,36479477 -g1,9092:18012021,36479477 -g1,9092:19592750,36479477 -g1,9092:23070354,36479477 -g1,9092:24018791,36479477 -g1,9092:25283374,36479477 -h1,9092:28444831,36479477:0,0,0 -k1,9092:32583029,36479477:4138198 -g1,9092:32583029,36479477 -) -(1,9096:6630773,37145655:25952256,404226,107478 -(1,9094:6630773,37145655:0,0,0 -g1,9094:6630773,37145655 -g1,9094:6630773,37145655 -g1,9094:6303093,37145655 -(1,9094:6303093,37145655:0,0,0 -) -g1,9094:6630773,37145655 -) -g1,9096:7579210,37145655 -g1,9096:8843793,37145655 -g1,9096:10424523,37145655 -g1,9096:11372960,37145655 -g1,9096:12637543,37145655 -h1,9096:15482854,37145655:0,0,0 -k1,9096:32583030,37145655:17100176 -g1,9096:32583030,37145655 -) -(1,9098:6630773,38467193:25952256,404226,101187 -(1,9097:6630773,38467193:0,0,0 -g1,9097:6630773,38467193 -g1,9097:6630773,38467193 -g1,9097:6303093,38467193 -(1,9097:6303093,38467193:0,0,0 -) -g1,9097:6630773,38467193 -) -k1,9098:6630773,38467193:0 -g1,9098:10424521,38467193 -g1,9098:11372958,38467193 -g1,9098:13585978,38467193 -h1,9098:16431289,38467193:0,0,0 -k1,9098:32583029,38467193:16151740 -g1,9098:32583029,38467193 -) -(1,9102:6630773,39133371:25952256,404226,101187 -(1,9100:6630773,39133371:0,0,0 -g1,9100:6630773,39133371 -g1,9100:6630773,39133371 -g1,9100:6303093,39133371 -(1,9100:6303093,39133371:0,0,0 -) -g1,9100:6630773,39133371 -) -g1,9102:7579210,39133371 -g1,9102:8843793,39133371 -g1,9102:10740667,39133371 -g1,9102:11689104,39133371 -g1,9102:13902124,39133371 -h1,9102:16431289,39133371:0,0,0 -k1,9102:32583029,39133371:16151740 -g1,9102:32583029,39133371 -) -] -) -g1,9103:32583029,39234558 -g1,9103:6630773,39234558 -g1,9103:6630773,39234558 -g1,9103:32583029,39234558 -g1,9103:32583029,39234558 -) -h1,9103:6630773,39431166:0,0,0 -(1,9107:6630773,40796942:25952256,513147,134348 -h1,9106:6630773,40796942:983040,0,0 -k1,9106:8696066,40796942:264364 -k1,9106:10064713,40796942:264365 -k1,9106:11076843,40796942:264364 -k1,9106:12781034,40796942:264365 -k1,9106:15074393,40796942:264364 -k1,9106:16357843,40796942:264365 -k1,9106:19808567,40796942:264364 -k1,9106:24009679,40796942:264364 -k1,9106:27249379,40796942:264365 -(1,9106:27249379,40796942:0,459977,115847 -r1,9110:27959357,40796942:709978,575824,115847 -k1,9106:27249379,40796942:-709978 -) -(1,9106:27249379,40796942:709978,459977,115847 -k1,9106:27249379,40796942:3277 -h1,9106:27956080,40796942:0,411205,112570 -) -k1,9106:28223721,40796942:264364 -k1,9106:29019583,40796942:264365 -k1,9106:32117068,40796942:264364 -k1,9106:32583029,40796942:0 -) -(1,9107:6630773,41638430:25952256,513147,134348 -k1,9106:7933172,41638430:283314 -k1,9106:11248838,41638430:283315 -k1,9106:13873098,41638430:283314 -(1,9106:13873098,41638430:0,414482,115847 -r1,9110:15286499,41638430:1413401,530329,115847 -k1,9106:13873098,41638430:-1413401 -) -(1,9106:13873098,41638430:1413401,414482,115847 -k1,9106:13873098,41638430:3277 -h1,9106:15283222,41638430:0,411205,112570 -) -k1,9106:15569813,41638430:283314 -k1,9106:17044572,41638430:283314 -k1,9106:18612393,41638430:283315 -k1,9106:21871042,41638430:283314 -(1,9106:21871042,41638430:0,452978,115847 -r1,9110:23284443,41638430:1413401,568825,115847 -k1,9106:21871042,41638430:-1413401 -) -(1,9106:21871042,41638430:1413401,452978,115847 -k1,9106:21871042,41638430:3277 -h1,9106:23281166,41638430:0,411205,112570 -) -k1,9106:23567757,41638430:283314 -k1,9106:24382568,41638430:283314 -k1,9106:27499004,41638430:283315 -k1,9106:28248279,41638430:283314 -k1,9106:29550678,41638430:283314 -k1,9106:32583029,41638430:0 -) -(1,9107:6630773,42479918:25952256,513147,126483 -k1,9106:9149166,42479918:177447 -(1,9106:9149166,42479918:0,414482,115847 -r1,9110:10914279,42479918:1765113,530329,115847 -k1,9106:9149166,42479918:-1765113 -) -(1,9106:9149166,42479918:1765113,414482,115847 -k1,9106:9149166,42479918:3277 -h1,9106:10911002,42479918:0,411205,112570 -) -k1,9106:11265397,42479918:177448 -k1,9106:14984410,42479918:177447 -k1,9106:16675083,42479918:177447 -k1,9106:17871615,42479918:177447 -k1,9106:22208633,42479918:177448 -k1,9106:25219201,42479918:177447 -(1,9106:25219201,42479918:0,459977,115847 -r1,9110:25929179,42479918:709978,575824,115847 -k1,9106:25219201,42479918:-709978 -) -(1,9106:25219201,42479918:709978,459977,115847 -k1,9106:25219201,42479918:3277 -h1,9106:25925902,42479918:0,411205,112570 -) -k1,9106:26106626,42479918:177447 -k1,9106:27475519,42479918:177448 -(1,9106:27475519,42479918:0,452978,115847 -r1,9110:28888920,42479918:1413401,568825,115847 -k1,9106:27475519,42479918:-1413401 -) -(1,9106:27475519,42479918:1413401,452978,115847 -k1,9106:27475519,42479918:3277 -h1,9106:28885643,42479918:0,411205,112570 -) -k1,9106:29066367,42479918:177447 -k1,9106:32583029,42479918:0 -) -(1,9107:6630773,43321406:25952256,513147,126483 -g1,9106:7821562,43321406 -g1,9106:10150056,43321406 -g1,9106:13356077,43321406 -g1,9106:18128408,43321406 -g1,9106:18986929,43321406 -g1,9106:20205243,43321406 -g1,9106:22084815,43321406 -g1,9106:25062771,43321406 -g1,9106:26023528,43321406 -g1,9106:27241842,43321406 -k1,9107:32583029,43321406:2135166 -g1,9107:32583029,43321406 -) -v1,9109:6630773,44687182:0,393216,0 -] -(1,9110:32583029,45706769:0,0,0 -g1,9110:32583029,45706769 -) -) -] -(1,9110:6630773,47279633:25952256,0,0 -h1,9110:6630773,47279633:25952256,0,0 -) -] -(1,9110:4262630,4025873:0,0,0 -[1,9110:-473656,4025873:0,0,0 -(1,9110:-473656,-710413:0,0,0 -(1,9110:-473656,-710413:0,0,0 -g1,9110:-473656,-710413 -) -g1,9110:-473656,-710413 -) -] -) -] -!24649 -}153 -Input:1245:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1246:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1247:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1248:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1249:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1250:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1251:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!670 -{154 -[1,9197:4262630,47279633:28320399,43253760,0 -(1,9197:4262630,4025873:0,0,0 -[1,9197:-473656,4025873:0,0,0 -(1,9197:-473656,-710413:0,0,0 -(1,9197:-473656,-644877:0,0,0 -k1,9197:-473656,-644877:-65536 +g1,6148:36675916,2439708 +(1,6148:36675916,2439708:1179648,16384,0 +r1,8530:37855564,2439708:1179648,16384,0 ) -(1,9197:-473656,4736287:0,0,0 -k1,9197:-473656,4736287:5209943 ) -g1,9197:-473656,-710413 +k1,8530:3078556,2439708:-34777008 ) ] +[1,8530:3078558,4812305:0,0,0 +(1,8530:3078558,49800853:0,16384,2228224 +k1,8530:1358238,49800853:-1720320 +(1,6148:1358238,49800853:1720320,16384,2228224 +(1,6148:1358238,49800853:1179648,16384,0 +r1,8530:2537886,49800853:1179648,16384,0 ) -[1,9197:6630773,47279633:25952256,43253760,0 -[1,9197:6630773,4812305:25952256,786432,0 -(1,9197:6630773,4812305:25952256,505283,11795 -(1,9197:6630773,4812305:25952256,505283,11795 -g1,9197:3078558,4812305 -[1,9197:3078558,4812305:0,0,0 -(1,9197:3078558,2439708:0,1703936,0 -k1,9197:1358238,2439708:-1720320 -(1,8393:1358238,2439708:1720320,1703936,0 -(1,8393:1358238,2439708:1179648,16384,0 -r1,9197:2537886,2439708:1179648,16384,0 -) -g1,8393:3062174,2439708 -(1,8393:3062174,2439708:16384,1703936,0 -[1,8393:3062174,2439708:25952256,1703936,0 -(1,8393:3062174,1915420:25952256,1179648,0 -(1,8393:3062174,1915420:16384,1179648,0 -r1,9197:3078558,1915420:16384,1179648,0 +g1,6148:3062174,49800853 +(1,6148:3062174,52029077:16384,1703936,0 +[1,6148:3062174,52029077:25952256,1703936,0 +(1,6148:3062174,51504789:25952256,1179648,0 +(1,6148:3062174,51504789:16384,1179648,0 +r1,8530:3078558,51504789:16384,1179648,0 ) -k1,8393:29014430,1915420:25935872 -g1,8393:29014430,1915420 +k1,6148:29014430,51504789:25935872 +g1,6148:29014430,51504789 ) ] ) ) ) ] -[1,9197:3078558,4812305:0,0,0 -(1,9197:3078558,2439708:0,1703936,0 -g1,9197:29030814,2439708 -g1,9197:36135244,2439708 -(1,8393:36135244,2439708:1720320,1703936,0 -(1,8393:36135244,2439708:16384,1703936,0 -[1,8393:36135244,2439708:25952256,1703936,0 -(1,8393:36135244,1915420:25952256,1179648,0 -(1,8393:36135244,1915420:16384,1179648,0 -r1,9197:36151628,1915420:16384,1179648,0 +[1,8530:3078558,4812305:0,0,0 +(1,8530:3078558,49800853:0,16384,2228224 +g1,8530:29030814,49800853 +g1,8530:36135244,49800853 +(1,6148:36135244,49800853:1720320,16384,2228224 +(1,6148:36135244,52029077:16384,1703936,0 +[1,6148:36135244,52029077:25952256,1703936,0 +(1,6148:36135244,51504789:25952256,1179648,0 +(1,6148:36135244,51504789:16384,1179648,0 +r1,8530:36151628,51504789:16384,1179648,0 ) -k1,8393:62087500,1915420:25935872 -g1,8393:62087500,1915420 +k1,6148:62087500,51504789:25935872 +g1,6148:62087500,51504789 ) ] ) -g1,8393:36675916,2439708 -(1,8393:36675916,2439708:1179648,16384,0 -r1,9197:37855564,2439708:1179648,16384,0 +g1,6148:36675916,49800853 +(1,6148:36675916,49800853:1179648,16384,0 +r1,8530:37855564,49800853:1179648,16384,0 ) ) -k1,9197:3078556,2439708:-34777008 +k1,8530:3078556,49800853:-34777008 ) ] -[1,9197:3078558,4812305:0,0,0 -(1,9197:3078558,49800853:0,16384,2228224 -k1,9197:1358238,49800853:-1720320 -(1,8393:1358238,49800853:1720320,16384,2228224 -(1,8393:1358238,49800853:1179648,16384,0 -r1,9197:2537886,49800853:1179648,16384,0 -) -g1,8393:3062174,49800853 -(1,8393:3062174,52029077:16384,1703936,0 -[1,8393:3062174,52029077:25952256,1703936,0 -(1,8393:3062174,51504789:25952256,1179648,0 -(1,8393:3062174,51504789:16384,1179648,0 -r1,9197:3078558,51504789:16384,1179648,0 +g1,8530:6630773,4812305 +g1,8530:6630773,4812305 +g1,8530:9228620,4812305 +k1,8530:31387652,4812305:22159032 ) -k1,8393:29014430,51504789:25935872 -g1,8393:29014430,51504789 ) ] +[1,8530:6630773,45706769:25952256,40108032,0 +(1,8530:6630773,45706769:25952256,40108032,0 +(1,8530:6630773,45706769:0,0,0 +g1,8530:6630773,45706769 ) -) +[1,8530:6630773,45706769:25952256,40108032,0 +(1,8504:6630773,19612721:25952256,14013984,0 +k1,8504:12599879,19612721:5969106 +h1,8503:12599879,19612721:0,0,0 +(1,8503:12599879,19612721:14014044,14013984,0 +(1,8503:12599879,19612721:14014019,14014019,0 +(1,8503:12599879,19612721:14014019,14014019,0 +(1,8503:12599879,19612721:0,14014019,0 +(1,8503:12599879,19612721:0,18945146,0 +(1,8503:12599879,19612721:18945146,18945146,0 +) +k1,8503:12599879,19612721:-18945146 +) +) +g1,8503:26613898,19612721 +) +) +) +g1,8504:26613923,19612721 +k1,8504:32583029,19612721:5969106 +) +(1,8511:6630773,20477801:25952256,513147,126483 +h1,8510:6630773,20477801:983040,0,0 +k1,8510:9987075,20477801:278076 +k1,8510:10679915,20477801:277997 +k1,8510:12612775,20477801:278076 +k1,8510:14391625,20477801:278076 +k1,8510:17432043,20477801:278075 +k1,8510:22622698,20477801:278076 +k1,8510:23583659,20477801:278076 +k1,8510:26796437,20477801:278076 +k1,8510:27733805,20477801:278076 +k1,8510:30466204,20477801:278076 +(1,8510:30466204,20477801:0,452978,115847 +r1,8530:32583029,20477801:2116825,568825,115847 +k1,8510:30466204,20477801:-2116825 +) +(1,8510:30466204,20477801:2116825,452978,115847 +k1,8510:30466204,20477801:3277 +h1,8510:32579752,20477801:0,411205,112570 +) +k1,8510:32583029,20477801:0 +) +(1,8511:6630773,21342881:25952256,513147,134348 +k1,8510:8135207,21342881:219928 +k1,8510:10798317,21342881:219928 +k1,8510:12870291,21342881:219927 +k1,8510:16452216,21342881:219928 +k1,8510:17481514,21342881:219928 +k1,8510:18720527,21342881:219928 +k1,8510:20495623,21342881:219927 +k1,8510:21374843,21342881:219928 +k1,8510:22613856,21342881:219928 +k1,8510:25675425,21342881:219928 +k1,8510:28100639,21342881:219927 +k1,8510:29006729,21342881:219928 +k1,8510:32583029,21342881:0 +) +(1,8511:6630773,22207961:25952256,505283,134348 +k1,8510:9335091,22207961:276864 +k1,8510:10784394,22207961:276864 +k1,8510:14242377,22207961:276865 +k1,8510:17360882,22207961:276864 +k1,8510:19810920,22207961:276864 +k1,8510:20703822,22207961:276864 +k1,8510:21336547,22207961:276865 +k1,8510:23782653,22207961:276864 +k1,8510:25336814,22207961:276864 +k1,8510:26299840,22207961:276864 +k1,8510:28016531,22207961:276865 +k1,8510:30322390,22207961:276864 +k1,8510:31227089,22207961:276864 +k1,8511:32583029,22207961:0 +) +(1,8511:6630773,23073041:25952256,513147,134348 +k1,8510:8335666,23073041:216570 +k1,8510:10979691,23073041:216571 +k1,8510:12352971,23073041:216570 +k1,8510:14463531,23073041:216570 +k1,8510:15871547,23073041:216571 +k1,8510:17244827,23073041:216570 +k1,8510:20081526,23073041:216570 +k1,8510:22809436,23073041:216570 +k1,8510:23677435,23073041:216571 +(1,8510:23677435,23073041:0,452978,115847 +r1,8530:25794260,23073041:2116825,568825,115847 +k1,8510:23677435,23073041:-2116825 +) +(1,8510:23677435,23073041:2116825,452978,115847 +k1,8510:23677435,23073041:3277 +h1,8510:25790983,23073041:0,411205,112570 +) +k1,8510:26010830,23073041:216570 +k1,8510:28400574,23073041:216570 +k1,8510:29233183,23073041:216571 +k1,8510:29805613,23073041:216570 +k1,8511:32583029,23073041:0 +) +(1,8511:6630773,23938121:25952256,513147,134348 +k1,8510:9693724,23938121:237039 +k1,8510:11208059,23938121:237038 +k1,8510:13183113,23938121:237039 +k1,8510:16634692,23938121:237038 +k1,8510:17700761,23938121:237039 +k1,8510:21070421,23938121:237039 +k1,8510:22510700,23938121:237038 +k1,8510:23616091,23938121:237039 +k1,8510:25383396,23938121:237039 +k1,8510:26271862,23938121:237038 +k1,8510:27601386,23938121:237039 +k1,8510:28194284,23938121:237038 +k1,8510:31193666,23938121:237039 +k1,8510:32583029,23938121:0 +) +(1,8511:6630773,24803201:25952256,513147,126483 +k1,8510:7958273,24803201:219286 +k1,8510:9575442,24803201:219286 +(1,8510:9575442,24803201:0,452978,115847 +r1,8530:12395691,24803201:2820249,568825,115847 +k1,8510:9575442,24803201:-2820249 +) +(1,8510:9575442,24803201:2820249,452978,115847 +k1,8510:9575442,24803201:3277 +h1,8510:12392414,24803201:0,411205,112570 +) +k1,8510:12614977,24803201:219286 +k1,8510:13520425,24803201:219286 +(1,8510:13520425,24803201:0,414482,115847 +r1,8530:14933826,24803201:1413401,530329,115847 +k1,8510:13520425,24803201:-1413401 +) +(1,8510:13520425,24803201:1413401,414482,115847 +k1,8510:13520425,24803201:3277 +h1,8510:14930549,24803201:0,411205,112570 +) +k1,8510:15153112,24803201:219286 +k1,8510:16865308,24803201:219286 +k1,8510:18150865,24803201:219286 +k1,8510:20741899,24803201:219286 +k1,8510:22092992,24803201:219286 +k1,8510:24710240,24803201:219286 +k1,8510:26078372,24803201:219286 +(1,8510:26078372,24803201:0,452978,115847 +r1,8530:31712315,24803201:5633943,568825,115847 +k1,8510:26078372,24803201:-5633943 +) +(1,8510:26078372,24803201:5633943,452978,115847 +k1,8510:26078372,24803201:3277 +h1,8510:31709038,24803201:0,411205,112570 +) +k1,8510:31931601,24803201:219286 +k1,8510:32583029,24803201:0 +) +(1,8511:6630773,25668281:25952256,505283,102891 +g1,8510:8441532,25668281 +g1,8510:10290958,25668281 +g1,8510:12312743,25668281 +g1,8510:13715213,25668281 +g1,8510:15303805,25668281 +g1,8510:16611248,25668281 +g1,8510:18096293,25668281 +g1,8510:21053932,25668281 +g1,8510:21869199,25668281 +k1,8511:32583029,25668281:10125317 +g1,8511:32583029,25668281 +) +v1,8513:6630773,26353136:0,393216,0 +(1,8517:6630773,26700425:25952256,740505,196608 +g1,8517:6630773,26700425 +g1,8517:6630773,26700425 +g1,8517:6434165,26700425 +(1,8517:6434165,26700425:0,740505,196608 +r1,8530:32779637,26700425:26345472,937113,196608 +k1,8517:6434165,26700425:-26345472 +) +(1,8517:6434165,26700425:26345472,740505,196608 +[1,8517:6630773,26700425:25952256,543897,0 +(1,8515:6630773,26587573:25952256,431045,112852 +(1,8514:6630773,26587573:0,0,0 +g1,8514:6630773,26587573 +g1,8514:6630773,26587573 +g1,8514:6303093,26587573 +(1,8514:6303093,26587573:0,0,0 +) +g1,8514:6630773,26587573 +) +k1,8515:6630773,26587573:0 +g1,8515:10614221,26587573 +g1,8515:11278129,26587573 +g1,8515:13269853,26587573 +g1,8515:14929623,26587573 +g1,8515:15593531,26587573 +h1,8515:18581116,26587573:0,0,0 +k1,8515:32583029,26587573:14001913 +g1,8515:32583029,26587573 +) +] +) +g1,8517:32583029,26700425 +g1,8517:6630773,26700425 +g1,8517:6630773,26700425 +g1,8517:32583029,26700425 +g1,8517:32583029,26700425 +) +h1,8517:6630773,26897033:0,0,0 +(1,8520:6630773,40976553:25952256,14013984,0 +k1,8520:12599879,40976553:5969106 +h1,8519:12599879,40976553:0,0,0 +(1,8519:12599879,40976553:14014044,14013984,0 +(1,8519:12599879,40976553:14014019,14014019,0 +(1,8519:12599879,40976553:14014019,14014019,0 +(1,8519:12599879,40976553:0,14014019,0 +(1,8519:12599879,40976553:0,18945146,0 +(1,8519:12599879,40976553:18945146,18945146,0 +) +k1,8519:12599879,40976553:-18945146 +) +) +g1,8519:26613898,40976553 +) +) +) +g1,8520:26613923,40976553 +k1,8520:32583029,40976553:5969106 +) +(1,8527:6630773,41841633:25952256,513147,134348 +h1,8526:6630773,41841633:983040,0,0 +k1,8526:10254585,41841633:242810 +(1,8526:10254585,41841633:0,452978,115847 +r1,8530:12371410,41841633:2116825,568825,115847 +k1,8526:10254585,41841633:-2116825 +) +(1,8526:10254585,41841633:2116825,452978,115847 +k1,8526:10254585,41841633:3277 +h1,8526:12368133,41841633:0,411205,112570 +) +k1,8526:12614220,41841633:242810 +k1,8526:14048474,41841633:242809 +k1,8526:16851776,41841633:242810 +k1,8526:19476164,41841633:242810 +k1,8526:20335012,41841633:242810 +k1,8526:21166334,41841633:242809 +k1,8526:23107182,41841633:242810 +k1,8526:24863218,41841633:242810 +k1,8526:26053679,41841633:242810 +k1,8526:28820935,41841633:242809 +k1,8526:31074390,41841633:242810 +k1,8526:32583029,41841633:0 +) +(1,8527:6630773,42706713:25952256,505283,134348 +g1,8526:9779777,42706713 +g1,8526:12137762,42706713 +g1,8526:12988419,42706713 +g1,8526:13543508,42706713 +g1,8526:16752150,42706713 +g1,8526:19007899,42706713 +k1,8527:32583029,42706713:11449798 +g1,8527:32583029,42706713 +) +(1,8529:6630773,43571793:25952256,513147,126483 +h1,8528:6630773,43571793:983040,0,0 +k1,8528:9595294,43571793:198246 +k1,8528:10208383,43571793:198246 +k1,8528:10938126,43571793:198246 +k1,8528:12649598,43571793:198246 +k1,8528:16948432,43571793:198246 +k1,8528:17502539,43571793:198247 +k1,8528:20459851,43571793:198246 +k1,8528:22665465,43571793:198246 +k1,8528:23395208,43571793:198246 +k1,8528:25938989,43571793:198247 +k1,8528:30454092,43571793:198246 +k1,8528:31303766,43571793:198246 +k1,8529:32583029,43571793:0 +) +(1,8529:6630773,44436873:25952256,505283,134348 +k1,8528:7982125,44436873:258867 +k1,8528:9260077,44436873:258867 +k1,8528:12468720,44436873:258868 +k1,8528:14886343,44436873:258867 +k1,8528:15796638,44436873:258867 +k1,8528:16411365,44436873:258867 +k1,8528:19292983,44436873:258867 +k1,8528:21732888,44436873:258867 +k1,8528:24278963,44436873:258868 +k1,8528:25556915,44436873:258867 +k1,8528:28892042,44436873:258867 +k1,8528:31386342,44436873:258867 +k1,8528:32583029,44436873:0 ) ] -[1,9197:3078558,4812305:0,0,0 -(1,9197:3078558,49800853:0,16384,2228224 -g1,9197:29030814,49800853 -g1,9197:36135244,49800853 -(1,8393:36135244,49800853:1720320,16384,2228224 -(1,8393:36135244,52029077:16384,1703936,0 -[1,8393:36135244,52029077:25952256,1703936,0 -(1,8393:36135244,51504789:25952256,1179648,0 -(1,8393:36135244,51504789:16384,1179648,0 -r1,9197:36151628,51504789:16384,1179648,0 +(1,8530:32583029,45706769:0,0,0 +g1,8530:32583029,45706769 ) -k1,8393:62087500,51504789:25935872 -g1,8393:62087500,51504789 ) ] +(1,8530:6630773,47279633:25952256,0,0 +h1,8530:6630773,47279633:25952256,0,0 ) -g1,8393:36675916,49800853 -(1,8393:36675916,49800853:1179648,16384,0 -r1,9197:37855564,49800853:1179648,16384,0 -) +] +(1,8530:4262630,4025873:0,0,0 +[1,8530:-473656,4025873:0,0,0 +(1,8530:-473656,-710413:0,0,0 +(1,8530:-473656,-710413:0,0,0 +g1,8530:-473656,-710413 ) -k1,9197:3078556,49800853:-34777008 +g1,8530:-473656,-710413 ) ] -g1,9197:6630773,4812305 -g1,9197:6630773,4812305 -g1,9197:10456764,4812305 -g1,9197:13962940,4812305 -k1,9197:31387652,4812305:17424712 -) -) -] -[1,9197:6630773,45706769:25952256,40108032,0 -(1,9197:6630773,45706769:25952256,40108032,0 -(1,9197:6630773,45706769:0,0,0 -g1,9197:6630773,45706769 ) -[1,9197:6630773,45706769:25952256,40108032,0 -v1,9110:6630773,6254097:0,393216,0 -(1,9110:6630773,7643970:25952256,1783089,0 -g1,9110:6630773,7643970 -g1,9110:6303093,7643970 -r1,9197:6401397,7643970:98304,1783089,0 -g1,9110:6600626,7643970 -g1,9110:6797234,7643970 -[1,9110:6797234,7643970:25785795,1783089,0 -(1,9110:6797234,6686635:25785795,825754,196608 -(1,9109:6797234,6686635:0,825754,196608 -r1,9197:7890375,6686635:1093141,1022362,196608 -k1,9109:6797234,6686635:-1093141 -) -(1,9109:6797234,6686635:1093141,825754,196608 -) -k1,9109:8187526,6686635:297151 -k1,9109:9505455,6686635:327680 -k1,9109:11100219,6686635:297151 -k1,9109:12791321,6686635:297151 -k1,9109:14107557,6686635:297151 -k1,9109:15900895,6686635:297151 -k1,9109:16814085,6686635:297152 -k1,9109:18130321,6686635:297151 -k1,9109:20398140,6686635:297151 -k1,9109:22550615,6686635:297151 -k1,9109:23609294,6686635:297151 -k1,9109:26903406,6686635:297151 -k1,9109:29962900,6686635:297151 -k1,9109:32583029,6686635:0 -) -(1,9110:6797234,7528123:25785795,426639,115847 -g1,9109:9304641,7528123 -g1,9109:10155298,7528123 -(1,9109:10155298,7528123:0,414482,115847 -r1,9197:10513564,7528123:358266,530329,115847 -k1,9109:10155298,7528123:-358266 -) -(1,9109:10155298,7528123:358266,414482,115847 -k1,9109:10155298,7528123:3277 -h1,9109:10510287,7528123:0,411205,112570 -) -k1,9110:32583030,7528123:21895796 -g1,9110:32583030,7528123 -) -] -g1,9110:32583029,7643970 -) -h1,9110:6630773,7643970:0,0,0 -v1,9115:6630773,9009559:0,393216,0 -(1,9162:6630773,30030583:25952256,21414240,0 -g1,9162:6630773,30030583 -g1,9162:6303093,30030583 -r1,9197:6401397,30030583:98304,21414240,0 -g1,9162:6600626,30030583 -g1,9162:6797234,30030583 -[1,9162:6797234,30030583:25785795,21414240,0 -(1,9116:6797234,9371632:25785795,755289,196608 -(1,9115:6797234,9371632:0,755289,196608 -r1,9197:8134168,9371632:1336934,951897,196608 -k1,9115:6797234,9371632:-1336934 -) -(1,9115:6797234,9371632:1336934,755289,196608 -) -g1,9115:8333397,9371632 -g1,9115:8661077,9371632 -g1,9115:9758149,9371632 -g1,9115:11127851,9371632 -g1,9115:12525734,9371632 -g1,9115:15984068,9371632 -g1,9115:17202382,9371632 -g1,9115:18987582,9371632 -g1,9115:21009367,9371632 -g1,9115:25262653,9371632 -k1,9116:32583029,9371632:5494543 -g1,9116:32583029,9371632 -) -v1,9118:6797234,10562098:0,393216,0 -(1,9127:6797234,12859999:25785795,2691117,196608 -g1,9127:6797234,12859999 -g1,9127:6797234,12859999 -g1,9127:6600626,12859999 -(1,9127:6600626,12859999:0,2691117,196608 -r1,9197:32779637,12859999:26179011,2887725,196608 -k1,9127:6600625,12859999:-26179012 -) -(1,9127:6600626,12859999:26179011,2691117,196608 -[1,9127:6797234,12859999:25785795,2494509,0 -(1,9120:6797234,10753987:25785795,388497,0 -(1,9119:6797234,10753987:0,0,0 -g1,9119:6797234,10753987 -g1,9119:6797234,10753987 -g1,9119:6469554,10753987 -(1,9119:6469554,10753987:0,0,0 -) -g1,9119:6797234,10753987 -) -g1,9120:7429526,10753987 -k1,9120:7429526,10753987:0 -h1,9120:7745672,10753987:0,0,0 -k1,9120:32583028,10753987:24837356 -g1,9120:32583028,10753987 -) -(1,9121:6797234,11420165:25785795,388497,4718 -h1,9121:6797234,11420165:0,0,0 -g1,9121:7429526,11420165 -g1,9121:8377964,11420165 -h1,9121:8694110,11420165:0,0,0 -k1,9121:32583030,11420165:23888920 -g1,9121:32583030,11420165 -) -(1,9122:6797234,12086343:25785795,410518,107478 -h1,9122:6797234,12086343:0,0,0 -g1,9122:7745671,12086343 -g1,9122:8694108,12086343 -g1,9122:9326400,12086343 -g1,9122:10274838,12086343 -g1,9122:13752442,12086343 -g1,9122:14700879,12086343 -g1,9122:18178482,12086343 -g1,9122:19759211,12086343 -g1,9122:23236815,12086343 -g1,9122:24185252,12086343 -g1,9122:25449835,12086343 -h1,9122:28611292,12086343:0,0,0 -k1,9122:32583029,12086343:3971737 -g1,9122:32583029,12086343 -) -(1,9126:6797234,12752521:25785795,404226,107478 -(1,9124:6797234,12752521:0,0,0 -g1,9124:6797234,12752521 -g1,9124:6797234,12752521 -g1,9124:6469554,12752521 -(1,9124:6469554,12752521:0,0,0 -) -g1,9124:6797234,12752521 -) -g1,9126:7745671,12752521 -g1,9126:9010254,12752521 -g1,9126:10590984,12752521 -g1,9126:11539421,12752521 -g1,9126:12804004,12752521 -h1,9126:15649315,12752521:0,0,0 -k1,9126:32583029,12752521:16933714 -g1,9126:32583029,12752521 -) -] -) -g1,9127:32583029,12859999 -g1,9127:6797234,12859999 -g1,9127:6797234,12859999 -g1,9127:32583029,12859999 -g1,9127:32583029,12859999 -) -h1,9127:6797234,13056607:0,0,0 -(1,9131:6797234,14422383:25785795,505283,134348 -h1,9130:6797234,14422383:983040,0,0 -k1,9130:9387217,14422383:224789 -k1,9130:11104915,14422383:224788 -k1,9130:12348789,14422383:224789 -k1,9130:15759937,14422383:224788 -k1,9130:17853157,14422383:224789 -k1,9130:19351310,14422383:224788 -k1,9130:22637286,14422383:224789 -k1,9130:24467051,14422383:224788 -k1,9130:26822415,14422383:224789 -k1,9130:27817906,14422383:224788 -k1,9130:29649638,14422383:224789 -k1,9130:31563944,14422383:224788 -k1,9130:32583029,14422383:0 -) -(1,9131:6797234,15263871:25785795,505283,7863 -g1,9130:8153173,15263871 -g1,9130:10207726,15263871 -g1,9130:11899865,15263871 -k1,9131:32583028,15263871:19289868 -g1,9131:32583028,15263871 -) -v1,9133:6797234,16454337:0,393216,0 -(1,9139:6797234,18101789:25785795,2040668,196608 -g1,9139:6797234,18101789 -g1,9139:6797234,18101789 -g1,9139:6600626,18101789 -(1,9139:6600626,18101789:0,2040668,196608 -r1,9197:32779637,18101789:26179011,2237276,196608 -k1,9139:6600625,18101789:-26179012 -) -(1,9139:6600626,18101789:26179011,2040668,196608 -[1,9139:6797234,18101789:25785795,1844060,0 -(1,9135:6797234,16661955:25785795,404226,76021 -(1,9134:6797234,16661955:0,0,0 -g1,9134:6797234,16661955 -g1,9134:6797234,16661955 -g1,9134:6469554,16661955 -(1,9134:6469554,16661955:0,0,0 -) -g1,9134:6797234,16661955 -) -g1,9135:7429526,16661955 -g1,9135:8061818,16661955 -g1,9135:9642547,16661955 -g1,9135:12804004,16661955 -k1,9135:12804004,16661955:0 -h1,9135:14384732,16661955:0,0,0 -k1,9135:32583028,16661955:18198296 -g1,9135:32583028,16661955 -) -(1,9136:6797234,17328133:25785795,410518,107478 -h1,9136:6797234,17328133:0,0,0 -g1,9136:7745671,17328133 -g1,9136:8694108,17328133 -g1,9136:9326400,17328133 -g1,9136:10274837,17328133 -g1,9136:13752441,17328133 -g1,9136:14700878,17328133 -h1,9136:17862335,17328133:0,0,0 -k1,9136:32583029,17328133:14720694 -g1,9136:32583029,17328133 -) -(1,9137:6797234,17994311:25785795,404226,107478 -h1,9137:6797234,17994311:0,0,0 -g1,9137:8377963,17994311 -g1,9137:11855567,17994311 -g1,9137:12804004,17994311 -g1,9137:14068587,17994311 -h1,9137:17230044,17994311:0,0,0 -k1,9137:32583029,17994311:15352985 -g1,9137:32583029,17994311 -) -] -) -g1,9139:32583029,18101789 -g1,9139:6797234,18101789 -g1,9139:6797234,18101789 -g1,9139:32583029,18101789 -g1,9139:32583029,18101789 -) -h1,9139:6797234,18298397:0,0,0 -(1,9143:6797234,19664173:25785795,505283,126483 -h1,9142:6797234,19664173:983040,0,0 -k1,9142:9415801,19664173:214706 -k1,9142:10445775,19664173:214706 -k1,9142:11679566,19664173:214706 -k1,9142:15948329,19664173:214706 -k1,9142:17331542,19664173:214706 -k1,9142:19132219,19664173:214706 -k1,9142:21110498,19664173:214705 -k1,9142:23023242,19664173:214706 -k1,9142:24106300,19664173:214706 -k1,9142:25518349,19664173:214706 -k1,9142:27336066,19664173:214706 -k1,9142:29606636,19664173:214706 -k1,9142:30507504,19664173:214706 -k1,9142:32583029,19664173:0 -) -(1,9143:6797234,20505661:25785795,505283,7863 -k1,9143:32583028,20505661:23743692 -g1,9143:32583028,20505661 -) -v1,9145:6797234,21696127:0,393216,0 -(1,9158:6797234,26658740:25785795,5355829,196608 -g1,9158:6797234,26658740 -g1,9158:6797234,26658740 -g1,9158:6600626,26658740 -(1,9158:6600626,26658740:0,5355829,196608 -r1,9197:32779637,26658740:26179011,5552437,196608 -k1,9158:6600625,26658740:-26179012 -) -(1,9158:6600626,26658740:26179011,5355829,196608 -[1,9158:6797234,26658740:25785795,5159221,0 -(1,9147:6797234,21888016:25785795,388497,0 -(1,9146:6797234,21888016:0,0,0 -g1,9146:6797234,21888016 -g1,9146:6797234,21888016 -g1,9146:6469554,21888016 -(1,9146:6469554,21888016:0,0,0 -) -g1,9146:6797234,21888016 -) -g1,9147:7429526,21888016 -k1,9147:7429526,21888016:0 -h1,9147:7745672,21888016:0,0,0 -k1,9147:32583028,21888016:24837356 -g1,9147:32583028,21888016 -) -(1,9148:6797234,22554194:25785795,388497,4718 -h1,9148:6797234,22554194:0,0,0 -g1,9148:7429526,22554194 -g1,9148:8377964,22554194 -h1,9148:8694110,22554194:0,0,0 -k1,9148:32583030,22554194:23888920 -g1,9148:32583030,22554194 -) -(1,9149:6797234,23220372:25785795,410518,76021 -h1,9149:6797234,23220372:0,0,0 -g1,9149:7745671,23220372 -g1,9149:8694108,23220372 -g1,9149:9326400,23220372 -g1,9149:10274838,23220372 -h1,9149:10590984,23220372:0,0,0 -k1,9149:32583028,23220372:21992044 -g1,9149:32583028,23220372 -) -(1,9150:6797234,23886550:25785795,404226,107478 -h1,9150:6797234,23886550:0,0,0 -g1,9150:7113380,23886550 -g1,9150:7429526,23886550 -g1,9150:7745672,23886550 -g1,9150:8061818,23886550 -g1,9150:11539422,23886550 -g1,9150:12487859,23886550 -h1,9150:15649316,23886550:0,0,0 -k1,9150:32583028,23886550:16933712 -g1,9150:32583028,23886550 -) -(1,9151:6797234,24552728:25785795,404226,76021 -h1,9151:6797234,24552728:0,0,0 -g1,9151:7113380,24552728 -g1,9151:7429526,24552728 -g1,9151:8061818,24552728 -g1,9151:9642547,24552728 -h1,9151:9958693,24552728:0,0,0 -k1,9151:32583029,24552728:22624336 -g1,9151:32583029,24552728 -) -(1,9152:6797234,25218906:25785795,404226,107478 -h1,9152:6797234,25218906:0,0,0 -g1,9152:7113380,25218906 -g1,9152:7429526,25218906 -g1,9152:7745672,25218906 -g1,9152:8061818,25218906 -g1,9152:11539422,25218906 -g1,9152:12487859,25218906 -g1,9152:13752442,25218906 -h1,9152:16913899,25218906:0,0,0 -k1,9152:32583029,25218906:15669130 -g1,9152:32583029,25218906 -) -(1,9153:6797234,25885084:25785795,404226,76021 -h1,9153:6797234,25885084:0,0,0 -g1,9153:7113380,25885084 -g1,9153:7429526,25885084 -h1,9153:7745672,25885084:0,0,0 -k1,9153:32583028,25885084:24837356 -g1,9153:32583028,25885084 -) -(1,9157:6797234,26551262:25785795,404226,107478 -(1,9155:6797234,26551262:0,0,0 -g1,9155:6797234,26551262 -g1,9155:6797234,26551262 -g1,9155:6469554,26551262 -(1,9155:6469554,26551262:0,0,0 -) -g1,9155:6797234,26551262 -) -g1,9157:7745671,26551262 -g1,9157:9010254,26551262 -g1,9157:10590984,26551262 -g1,9157:11539421,26551262 -g1,9157:12804004,26551262 -h1,9157:15649315,26551262:0,0,0 -k1,9157:32583029,26551262:16933714 -g1,9157:32583029,26551262 -) -] -) -g1,9158:32583029,26658740 -g1,9158:6797234,26658740 -g1,9158:6797234,26658740 -g1,9158:32583029,26658740 -g1,9158:32583029,26658740 -) -h1,9158:6797234,26855348:0,0,0 -(1,9162:6797234,28221124:25785795,513147,134348 -h1,9161:6797234,28221124:983040,0,0 -k1,9161:8689422,28221124:281313 -k1,9161:9989821,28221124:281314 -k1,9161:12932551,28221124:281313 -k1,9161:15242859,28221124:281313 -k1,9161:16392524,28221124:281313 -k1,9161:19467638,28221124:281314 -k1,9161:20104811,28221124:281313 -k1,9161:22259143,28221124:281313 -k1,9161:25726816,28221124:281313 -k1,9161:28643333,28221124:281314 -k1,9161:30376268,28221124:281313 -k1,9161:31923737,28221124:281313 -k1,9161:32583029,28221124:0 -) -(1,9162:6797234,29062612:25785795,505283,126483 -k1,9161:8697975,29062612:297730 -k1,9161:11225240,29062612:297730 -k1,9161:12595139,29062612:297730 -k1,9161:13579031,29062612:297730 -k1,9161:15573489,29062612:297731 -k1,9161:17927083,29062612:297730 -k1,9161:20154193,29062612:297730 -k1,9161:23865693,29062612:297730 -k1,9161:27853755,29062612:297730 -k1,9161:30822732,29062612:297730 -k1,9162:32583029,29062612:0 -) -(1,9162:6797234,29904100:25785795,505283,126483 -g1,9161:8965820,29904100 -g1,9161:10933866,29904100 -g1,9161:12608310,29904100 -g1,9161:14317489,29904100 -g1,9161:17310518,29904100 -g1,9161:20144950,29904100 -g1,9161:21795801,29904100 -k1,9162:32583029,29904100:9347402 -g1,9162:32583029,29904100 -) -] -g1,9162:32583029,30030583 -) -h1,9162:6630773,30030583:0,0,0 -v1,9165:6630773,31396172:0,393216,0 -(1,9166:6630773,33638169:25952256,2635213,0 -g1,9166:6630773,33638169 -g1,9166:6303093,33638169 -r1,9197:6401397,33638169:98304,2635213,0 -g1,9166:6600626,33638169 -g1,9166:6797234,33638169 -[1,9166:6797234,33638169:25785795,2635213,0 -(1,9166:6797234,31828710:25785795,825754,196608 -(1,9165:6797234,31828710:0,825754,196608 -r1,9197:7890375,31828710:1093141,1022362,196608 -k1,9165:6797234,31828710:-1093141 -) -(1,9165:6797234,31828710:1093141,825754,196608 -) -k1,9165:8168029,31828710:277654 -k1,9165:9485958,31828710:327680 -k1,9165:11061225,31828710:277654 -k1,9165:12732830,31828710:277654 -k1,9165:14029569,31828710:277654 -k1,9165:15399708,31828710:277654 -k1,9165:16336654,31828710:277654 -k1,9165:20207647,31828710:277654 -k1,9165:23734576,31828710:277654 -k1,9165:25406181,31828710:277654 -k1,9165:27150531,31828710:277654 -k1,9165:29552862,31828710:277654 -k1,9165:31021961,31828710:277654 -k1,9166:32583029,31828710:0 -) -(1,9166:6797234,32670198:25785795,505283,134348 -k1,9165:9111561,32670198:248632 -k1,9165:13050526,32670198:248633 -k1,9165:14490603,32670198:248632 -k1,9165:16025052,32670198:248633 -k1,9165:17954027,32670198:248632 -k1,9165:19533041,32670198:248633 -k1,9165:20433101,32670198:248632 -k1,9165:23393614,32670198:248633 -(1,9165:23393614,32670198:0,459977,115847 -r1,9197:24103592,32670198:709978,575824,115847 -k1,9165:23393614,32670198:-709978 -) -(1,9165:23393614,32670198:709978,459977,115847 -k1,9165:23393614,32670198:3277 -h1,9165:24100315,32670198:0,411205,112570 -) -k1,9165:24352224,32670198:248632 -k1,9165:25792302,32670198:248633 -(1,9165:25792302,32670198:0,452978,115847 -r1,9197:27205703,32670198:1413401,568825,115847 -k1,9165:25792302,32670198:-1413401 -) -(1,9165:25792302,32670198:1413401,452978,115847 -k1,9165:25792302,32670198:3277 -h1,9165:27202426,32670198:0,411205,112570 -) -k1,9165:27454335,32670198:248632 -k1,9165:28354396,32670198:248633 -k1,9165:30423618,32670198:248632 -k1,9165:32583029,32670198:0 -) -(1,9166:6797234,33511686:25785795,505283,126483 -g1,9165:8646660,33511686 -g1,9165:10288336,33511686 -g1,9165:11660004,33511686 -k1,9166:32583030,33511686:18336320 -g1,9166:32583030,33511686 -) -] -g1,9166:32583029,33638169 -) -h1,9166:6630773,33638169:0,0,0 -(1,9169:6630773,35003758:25952256,505283,126483 -h1,9168:6630773,35003758:983040,0,0 -k1,9168:8473192,35003758:231544 -k1,9168:9293248,35003758:231543 -k1,9168:10543877,35003758:231544 -k1,9168:12455764,35003758:231544 -k1,9168:15466034,35003758:231543 -k1,9168:16459106,35003758:231544 -k1,9168:17822457,35003758:231544 -k1,9168:21467771,35003758:231544 -k1,9168:24885674,35003758:231543 -k1,9168:25648715,35003758:231544 -k1,9168:26899344,35003758:231544 -k1,9168:28811230,35003758:231543 -k1,9168:31821501,35003758:231544 -k1,9168:32583029,35003758:0 -) -(1,9169:6630773,35845246:25952256,505283,126483 -k1,9168:7838656,35845246:188798 -k1,9168:9175645,35845246:188798 -k1,9168:11489121,35845246:188799 -k1,9168:14864279,35845246:188798 -k1,9168:17886198,35845246:188798 -k1,9168:20084986,35845246:188799 -k1,9168:21292869,35845246:188798 -k1,9168:24895437,35845246:188798 -k1,9168:26414616,35845246:188798 -k1,9168:27984259,35845246:188799 -k1,9168:30241373,35845246:188798 -k1,9168:31714677,35845246:188798 -k1,9168:32583029,35845246:0 -) -(1,9169:6630773,36686734:25952256,505283,134348 -k1,9168:7918773,36686734:183718 -k1,9168:10109204,36686734:183719 -k1,9168:11312007,36686734:183718 -k1,9168:13176069,36686734:183719 -k1,9168:16138514,36686734:183718 -k1,9168:17083760,36686734:183718 -k1,9168:18038182,36686734:183719 -(1,9168:18038182,36686734:0,459977,115847 -r1,9197:18748160,36686734:709978,575824,115847 -k1,9168:18038182,36686734:-709978 -) -(1,9168:18038182,36686734:709978,459977,115847 -k1,9168:18038182,36686734:3277 -h1,9168:18744883,36686734:0,411205,112570 -) -k1,9168:18931878,36686734:183718 -k1,9168:20307042,36686734:183719 -(1,9168:20307042,36686734:0,452978,115847 -r1,9197:21720443,36686734:1413401,568825,115847 -k1,9168:20307042,36686734:-1413401 -) -(1,9168:20307042,36686734:1413401,452978,115847 -k1,9168:20307042,36686734:3277 -h1,9168:21717166,36686734:0,411205,112570 -) -k1,9168:21904161,36686734:183718 -k1,9168:25274239,36686734:183718 -k1,9168:26109386,36686734:183719 -k1,9168:26648964,36686734:183718 -k1,9168:29517693,36686734:183719 -k1,9168:31082255,36686734:183718 -k1,9168:32583029,36686734:0 -) -(1,9169:6630773,37528222:25952256,513147,126483 -k1,9168:7336989,37528222:174719 -k1,9168:8724779,37528222:174719 -k1,9168:12204478,37528222:174718 -k1,9168:14066094,37528222:174719 -k1,9168:15312982,37528222:174719 -k1,9168:19373331,37528222:174719 -k1,9168:20652332,37528222:174719 -k1,9168:22669922,37528222:174718 -k1,9168:23460679,37528222:174719 -k1,9168:30247981,37528222:174719 -k1,9169:32583029,37528222:0 -k1,9169:32583029,37528222:0 -) -v1,9171:6630773,38718502:0,393216,0 -(1,9181:6630773,41682581:25952256,3357295,196608 -g1,9181:6630773,41682581 -g1,9181:6630773,41682581 -g1,9181:6434165,41682581 -(1,9181:6434165,41682581:0,3357295,196608 -r1,9197:32779637,41682581:26345472,3553903,196608 -k1,9181:6434165,41682581:-26345472 -) -(1,9181:6434165,41682581:26345472,3357295,196608 -[1,9181:6630773,41682581:25952256,3160687,0 -(1,9173:6630773,38910391:25952256,388497,4718 -(1,9172:6630773,38910391:0,0,0 -g1,9172:6630773,38910391 -g1,9172:6630773,38910391 -g1,9172:6303093,38910391 -(1,9172:6303093,38910391:0,0,0 -) -g1,9172:6630773,38910391 -) -g1,9173:7263065,38910391 -g1,9173:8211503,38910391 -h1,9173:8527649,38910391:0,0,0 -k1,9173:32583029,38910391:24055380 -g1,9173:32583029,38910391 -) -(1,9174:6630773,39576569:25952256,293601,107478 -h1,9174:6630773,39576569:0,0,0 -g1,9174:10108376,39576569 -k1,9174:10108376,39576569:0 -h1,9174:10740668,39576569:0,0,0 -k1,9174:32583028,39576569:21842360 -g1,9174:32583028,39576569 -) -(1,9175:6630773,40242747:25952256,410518,107478 -h1,9175:6630773,40242747:0,0,0 -g1,9175:6946919,40242747 -g1,9175:7263065,40242747 -g1,9175:8211502,40242747 -g1,9175:9159939,40242747 -g1,9175:9792231,40242747 -g1,9175:10740669,40242747 -g1,9175:12321399,40242747 -g1,9175:13269836,40242747 -g1,9175:16431293,40242747 -g1,9175:18012022,40242747 -g1,9175:19592752,40242747 -g1,9175:20541189,40242747 -g1,9175:21805772,40242747 -h1,9175:24651083,40242747:0,0,0 -k1,9175:32583029,40242747:7931946 -g1,9175:32583029,40242747 -) -(1,9176:6630773,40908925:25952256,404226,107478 -h1,9176:6630773,40908925:0,0,0 -k1,9176:6630773,40908925:0 -h1,9176:12005249,40908925:0,0,0 -k1,9176:32583029,40908925:20577780 -g1,9176:32583029,40908925 -) -(1,9180:6630773,41575103:25952256,404226,107478 -(1,9178:6630773,41575103:0,0,0 -g1,9178:6630773,41575103 -g1,9178:6630773,41575103 -g1,9178:6303093,41575103 -(1,9178:6303093,41575103:0,0,0 -) -g1,9178:6630773,41575103 -) -g1,9180:7579210,41575103 -g1,9180:8843793,41575103 -g1,9180:10424523,41575103 -g1,9180:11372960,41575103 -g1,9180:12637543,41575103 -h1,9180:15482854,41575103:0,0,0 -k1,9180:32583030,41575103:17100176 -g1,9180:32583030,41575103 -) -] -) -g1,9181:32583029,41682581 -g1,9181:6630773,41682581 -g1,9181:6630773,41682581 -g1,9181:32583029,41682581 -g1,9181:32583029,41682581 -) -h1,9181:6630773,41879189:0,0,0 -v1,9185:6630773,43768879:0,393216,0 -(1,9197:6630773,45706769:25952256,2331106,0 -g1,9197:6630773,45706769 -g1,9197:6303093,45706769 -r1,9197:6401397,45706769:98304,2331106,0 -g1,9197:6600626,45706769 -g1,9197:6797234,45706769 -[1,9197:6797234,45706769:25785795,2331106,0 -(1,9187:6797234,44130952:25785795,755289,196608 -(1,9185:6797234,44130952:0,755289,196608 -r1,9197:8134168,44130952:1336934,951897,196608 -k1,9185:6797234,44130952:-1336934 -) -(1,9185:6797234,44130952:1336934,755289,196608 -) -k1,9185:8275787,44130952:141619 -k1,9185:8603467,44130952:327680 -k1,9185:9222843,44130952:141619 -k1,9185:10383547,44130952:141619 -k1,9185:13557517,44130952:141619 -k1,9185:16885496,44130952:141619 -k1,9185:19368061,44130952:141619 -k1,9185:19865541,44130952:141620 -k1,9185:21687503,44130952:141619 -k1,9185:22488414,44130952:141619 -k1,9185:22985893,44130952:141619 -k1,9185:24682681,44130952:141619 -k1,9185:26526270,44130952:141619 -k1,9185:28110336,44130952:141619 -(1,9185:28110336,44130952:0,452978,122846 -r1,9197:30578873,44130952:2468537,575824,122846 -k1,9185:28110336,44130952:-2468537 -) -(1,9185:28110336,44130952:2468537,452978,122846 -k1,9185:28110336,44130952:3277 -h1,9185:30575596,44130952:0,411205,112570 -) -k1,9185:30894162,44130952:141619 -k1,9185:31450567,44130952:141562 -k1,9185:32583029,44130952:0 -) -(1,9187:6797234,44906243:25785795,513147,134348 -k1,9185:9449897,44906243:138047 -k1,9185:10239372,44906243:138047 -k1,9185:12770138,44906243:138047 -k1,9185:13366282,44906243:138047 -k1,9185:14771795,44906243:138047 -k1,9185:15265702,44906243:138047 -k1,9185:17647046,44906243:138047 -k1,9185:19165938,44906243:138048 -k1,9185:19835482,44906243:138047 -k1,9185:23421378,44906243:138047 -k1,9185:25072651,44906243:138047 -k1,9185:27537881,44906243:138047 -k1,9185:28335220,44906243:138047 -k1,9185:28829127,44906243:138047 -k1,9185:32583029,44906243:0 -) -(1,9187:6797234,45572421:25785795,513147,134348 -k1,9185:7687446,45572421:238784 -k1,9185:9520067,45572421:238785 -k1,9185:10445013,45572421:238784 -k1,9185:11702883,45572421:238785 -k1,9185:15418352,45572421:238784 -k1,9185:17224757,45572421:238784 -(1,9185:17224757,45572421:0,452978,122846 -r1,9197:19693294,45572421:2468537,575824,122846 -k1,9185:17224757,45572421:-2468537 -) -(1,9185:17224757,45572421:2468537,452978,122846 -k1,9185:17224757,45572421:3277 -h1,9185:19690017,45572421:0,411205,112570 -) -k1,9185:19932079,45572421:238785 -k1,9185:22036673,45572421:238784 -(1,9185:22036673,45572421:0,414482,115847 -r1,9197:23450074,45572421:1413401,530329,115847 -k1,9185:22036673,45572421:-1413401 -) -(1,9185:22036673,45572421:1413401,414482,115847 -k1,9185:22036673,45572421:3277 -h1,9185:23446797,45572421:0,411205,112570 -) -k1,9185:23688858,45572421:238784 -k1,9185:24875294,45572421:238785 -k1,9185:25880194,45572421:238784 -k1,9185:28679471,45572421:238785 -k1,9185:30989193,45572421:238784 -k1,9185:32583029,45572421:0 -) -] -g1,9197:32583029,45706769 -) -] -(1,9197:32583029,45706769:0,0,0 -g1,9197:32583029,45706769 -) -) -] -(1,9197:6630773,47279633:25952256,0,0 -h1,9197:6630773,47279633:25952256,0,0 -) -] -(1,9197:4262630,4025873:0,0,0 -[1,9197:-473656,4025873:0,0,0 -(1,9197:-473656,-710413:0,0,0 -(1,9197:-473656,-710413:0,0,0 -g1,9197:-473656,-710413 -) -g1,9197:-473656,-710413 -) -] -) -] -!24667 -}154 -Input:1252:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1253:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1254:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1255:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1256:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1257:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1258:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1259:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1260:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1261:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1262:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1263:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1264:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1265:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1266:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1267:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1268:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1269:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1270:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1271:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1272:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1273:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1274:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1275:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1276:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!2362 -{155 -[1,9255:4262630,47279633:28320399,43253760,0 -(1,9255:4262630,4025873:0,0,0 -[1,9255:-473656,4025873:0,0,0 -(1,9255:-473656,-710413:0,0,0 -(1,9255:-473656,-644877:0,0,0 -k1,9255:-473656,-644877:-65536 +] +!11933 +}130 +Input:1180:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1181:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1182:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1183:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1184:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1185:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1186:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!670 +{131 +[1,8606:4262630,47279633:28320399,43253760,0 +(1,8606:4262630,4025873:0,0,0 +[1,8606:-473656,4025873:0,0,0 +(1,8606:-473656,-710413:0,0,0 +(1,8606:-473656,-644877:0,0,0 +k1,8606:-473656,-644877:-65536 ) -(1,9255:-473656,4736287:0,0,0 -k1,9255:-473656,4736287:5209943 +(1,8606:-473656,4736287:0,0,0 +k1,8606:-473656,4736287:5209943 ) -g1,9255:-473656,-710413 +g1,8606:-473656,-710413 ) ] ) -[1,9255:6630773,47279633:25952256,43253760,0 -[1,9255:6630773,4812305:25952256,786432,0 -(1,9255:6630773,4812305:25952256,505283,134348 -(1,9255:6630773,4812305:25952256,505283,134348 -g1,9255:3078558,4812305 -[1,9255:3078558,4812305:0,0,0 -(1,9255:3078558,2439708:0,1703936,0 -k1,9255:1358238,2439708:-1720320 -(1,8393:1358238,2439708:1720320,1703936,0 -(1,8393:1358238,2439708:1179648,16384,0 -r1,9255:2537886,2439708:1179648,16384,0 +[1,8606:6630773,47279633:25952256,43253760,0 +[1,8606:6630773,4812305:25952256,786432,0 +(1,8606:6630773,4812305:25952256,505283,11795 +(1,8606:6630773,4812305:25952256,505283,11795 +g1,8606:3078558,4812305 +[1,8606:3078558,4812305:0,0,0 +(1,8606:3078558,2439708:0,1703936,0 +k1,8606:1358238,2439708:-1720320 +(1,6148:1358238,2439708:1720320,1703936,0 +(1,6148:1358238,2439708:1179648,16384,0 +r1,8606:2537886,2439708:1179648,16384,0 ) -g1,8393:3062174,2439708 -(1,8393:3062174,2439708:16384,1703936,0 -[1,8393:3062174,2439708:25952256,1703936,0 -(1,8393:3062174,1915420:25952256,1179648,0 -(1,8393:3062174,1915420:16384,1179648,0 -r1,9255:3078558,1915420:16384,1179648,0 +g1,6148:3062174,2439708 +(1,6148:3062174,2439708:16384,1703936,0 +[1,6148:3062174,2439708:25952256,1703936,0 +(1,6148:3062174,1915420:25952256,1179648,0 +(1,6148:3062174,1915420:16384,1179648,0 +r1,8606:3078558,1915420:16384,1179648,0 ) -k1,8393:29014430,1915420:25935872 -g1,8393:29014430,1915420 +k1,6148:29014430,1915420:25935872 +g1,6148:29014430,1915420 ) ] ) ) ) ] -[1,9255:3078558,4812305:0,0,0 -(1,9255:3078558,2439708:0,1703936,0 -g1,9255:29030814,2439708 -g1,9255:36135244,2439708 -(1,8393:36135244,2439708:1720320,1703936,0 -(1,8393:36135244,2439708:16384,1703936,0 -[1,8393:36135244,2439708:25952256,1703936,0 -(1,8393:36135244,1915420:25952256,1179648,0 -(1,8393:36135244,1915420:16384,1179648,0 -r1,9255:36151628,1915420:16384,1179648,0 +[1,8606:3078558,4812305:0,0,0 +(1,8606:3078558,2439708:0,1703936,0 +g1,8606:29030814,2439708 +g1,8606:36135244,2439708 +(1,6148:36135244,2439708:1720320,1703936,0 +(1,6148:36135244,2439708:16384,1703936,0 +[1,6148:36135244,2439708:25952256,1703936,0 +(1,6148:36135244,1915420:25952256,1179648,0 +(1,6148:36135244,1915420:16384,1179648,0 +r1,8606:36151628,1915420:16384,1179648,0 ) -k1,8393:62087500,1915420:25935872 -g1,8393:62087500,1915420 +k1,6148:62087500,1915420:25935872 +g1,6148:62087500,1915420 ) ] ) -g1,8393:36675916,2439708 -(1,8393:36675916,2439708:1179648,16384,0 -r1,9255:37855564,2439708:1179648,16384,0 +g1,6148:36675916,2439708 +(1,6148:36675916,2439708:1179648,16384,0 +r1,8606:37855564,2439708:1179648,16384,0 ) ) -k1,9255:3078556,2439708:-34777008 +k1,8606:3078556,2439708:-34777008 ) ] -[1,9255:3078558,4812305:0,0,0 -(1,9255:3078558,49800853:0,16384,2228224 -k1,9255:1358238,49800853:-1720320 -(1,8393:1358238,49800853:1720320,16384,2228224 -(1,8393:1358238,49800853:1179648,16384,0 -r1,9255:2537886,49800853:1179648,16384,0 +[1,8606:3078558,4812305:0,0,0 +(1,8606:3078558,49800853:0,16384,2228224 +k1,8606:1358238,49800853:-1720320 +(1,6148:1358238,49800853:1720320,16384,2228224 +(1,6148:1358238,49800853:1179648,16384,0 +r1,8606:2537886,49800853:1179648,16384,0 ) -g1,8393:3062174,49800853 -(1,8393:3062174,52029077:16384,1703936,0 -[1,8393:3062174,52029077:25952256,1703936,0 -(1,8393:3062174,51504789:25952256,1179648,0 -(1,8393:3062174,51504789:16384,1179648,0 -r1,9255:3078558,51504789:16384,1179648,0 +g1,6148:3062174,49800853 +(1,6148:3062174,52029077:16384,1703936,0 +[1,6148:3062174,52029077:25952256,1703936,0 +(1,6148:3062174,51504789:25952256,1179648,0 +(1,6148:3062174,51504789:16384,1179648,0 +r1,8606:3078558,51504789:16384,1179648,0 ) -k1,8393:29014430,51504789:25935872 -g1,8393:29014430,51504789 +k1,6148:29014430,51504789:25935872 +g1,6148:29014430,51504789 ) ] ) ) ) ] -[1,9255:3078558,4812305:0,0,0 -(1,9255:3078558,49800853:0,16384,2228224 -g1,9255:29030814,49800853 -g1,9255:36135244,49800853 -(1,8393:36135244,49800853:1720320,16384,2228224 -(1,8393:36135244,52029077:16384,1703936,0 -[1,8393:36135244,52029077:25952256,1703936,0 -(1,8393:36135244,51504789:25952256,1179648,0 -(1,8393:36135244,51504789:16384,1179648,0 -r1,9255:36151628,51504789:16384,1179648,0 -) -k1,8393:62087500,51504789:25935872 -g1,8393:62087500,51504789 -) +[1,8606:3078558,4812305:0,0,0 +(1,8606:3078558,49800853:0,16384,2228224 +g1,8606:29030814,49800853 +g1,8606:36135244,49800853 +(1,6148:36135244,49800853:1720320,16384,2228224 +(1,6148:36135244,52029077:16384,1703936,0 +[1,6148:36135244,52029077:25952256,1703936,0 +(1,6148:36135244,51504789:25952256,1179648,0 +(1,6148:36135244,51504789:16384,1179648,0 +r1,8606:36151628,51504789:16384,1179648,0 +) +k1,6148:62087500,51504789:25935872 +g1,6148:62087500,51504789 +) ] ) -g1,8393:36675916,49800853 -(1,8393:36675916,49800853:1179648,16384,0 -r1,9255:37855564,49800853:1179648,16384,0 +g1,6148:36675916,49800853 +(1,6148:36675916,49800853:1179648,16384,0 +r1,8606:37855564,49800853:1179648,16384,0 ) ) -k1,9255:3078556,49800853:-34777008 +k1,8606:3078556,49800853:-34777008 ) ] -g1,9255:6630773,4812305 -k1,9255:21643106,4812305:13816956 -g1,9255:23265777,4812305 -g1,9255:24088253,4812305 -g1,9255:28572226,4812305 -g1,9255:29981905,4812305 +g1,8606:6630773,4812305 +k1,8606:24358918,4812305:16532768 +g1,8606:25981589,4812305 +g1,8606:26804065,4812305 +g1,8606:30302376,4812305 ) ) ] -[1,9255:6630773,45706769:25952256,40108032,0 -(1,9255:6630773,45706769:25952256,40108032,0 -(1,9255:6630773,45706769:0,0,0 -g1,9255:6630773,45706769 +[1,8606:6630773,45706769:25952256,40108032,0 +(1,8606:6630773,45706769:25952256,40108032,0 +(1,8606:6630773,45706769:0,0,0 +g1,8606:6630773,45706769 ) -[1,9255:6630773,45706769:25952256,40108032,0 -v1,9197:6630773,6254097:0,393216,0 -(1,9197:6630773,10567563:25952256,4706682,0 -g1,9197:6630773,10567563 -g1,9197:6303093,10567563 -r1,9255:6401397,10567563:98304,4706682,0 -g1,9197:6600626,10567563 -g1,9197:6797234,10567563 -[1,9197:6797234,10567563:25785795,4706682,0 -(1,9187:6797234,6374028:25785795,513147,134348 -k1,9185:8198292,6374028:204371 -k1,9185:9898851,6374028:204372 -k1,9185:11971653,6374028:204371 -k1,9185:15368284,6374028:204372 -k1,9185:15928515,6374028:204371 -k1,9185:18084549,6374028:204372 -k1,9185:21593901,6374028:204371 -k1,9185:23311499,6374028:204372 -k1,9185:25353500,6374028:204371 -k1,9185:26505523,6374028:204372 -k1,9185:29522044,6374028:204371 -k1,9185:30192377,6374028:204372 -k1,9185:32051532,6374028:204371 -k1,9185:32583029,6374028:0 -) -(1,9187:6797234,7040206:25785795,505283,134348 -g1,9185:10350596,7040206 -g1,9185:13333794,7040206 -g1,9185:14184451,7040206 -g1,9185:16852421,7040206 -k1,9187:32583029,7040206:15730608 -g1,9187:32583029,7040206 -) -v1,9187:6797234,8230672:0,393216,0 -(1,9195:6797234,9846667:25785795,2009211,196608 -g1,9195:6797234,9846667 -g1,9195:6797234,9846667 -g1,9195:6600626,9846667 -(1,9195:6600626,9846667:0,2009211,196608 -r1,9255:32779637,9846667:26179011,2205819,196608 -k1,9195:6600625,9846667:-26179012 -) -(1,9195:6600626,9846667:26179011,2009211,196608 -[1,9195:6797234,9846667:25785795,1812603,0 -(1,9189:6797234,8438290:25785795,404226,107478 -(1,9188:6797234,8438290:0,0,0 -g1,9188:6797234,8438290 -g1,9188:6797234,8438290 -g1,9188:6469554,8438290 -(1,9188:6469554,8438290:0,0,0 -) -g1,9188:6797234,8438290 -) -g1,9189:9326400,8438290 -g1,9189:10274838,8438290 -h1,9189:11855566,8438290:0,0,0 -k1,9189:32583030,8438290:20727464 -g1,9189:32583030,8438290 -) -(1,9190:6797234,9104468:25785795,410518,107478 -h1,9190:6797234,9104468:0,0,0 -g1,9190:7745671,9104468 -g1,9190:13436294,9104468 -k1,9190:13436294,9104468:0 -h1,9190:17862333,9104468:0,0,0 -k1,9190:32583029,9104468:14720696 -g1,9190:32583029,9104468 -) -(1,9194:6797234,9770646:25785795,404226,76021 -(1,9192:6797234,9770646:0,0,0 -g1,9192:6797234,9770646 -g1,9192:6797234,9770646 -g1,9192:6469554,9770646 -(1,9192:6469554,9770646:0,0,0 -) -g1,9192:6797234,9770646 -) -g1,9194:7745671,9770646 -g1,9194:9010254,9770646 -h1,9194:10590982,9770646:0,0,0 -k1,9194:32583030,9770646:21992048 -g1,9194:32583030,9770646 -) -] -) -g1,9195:32583029,9846667 -g1,9195:6797234,9846667 -g1,9195:6797234,9846667 -g1,9195:32583029,9846667 -g1,9195:32583029,9846667 -) -h1,9195:6797234,10043275:0,0,0 -] -g1,9197:32583029,10567563 -) -h1,9197:6630773,10567563:0,0,0 -v1,9200:6630773,11933339:0,393216,0 -(1,9222:6630773,25595904:25952256,14055781,0 -g1,9222:6630773,25595904 -g1,9222:6303093,25595904 -r1,9255:6401397,25595904:98304,14055781,0 -g1,9222:6600626,25595904 -g1,9222:6797234,25595904 -[1,9222:6797234,25595904:25785795,14055781,0 -(1,9201:6797234,12365877:25785795,825754,196608 -(1,9200:6797234,12365877:0,825754,196608 -r1,9255:8834093,12365877:2036859,1022362,196608 -k1,9200:6797234,12365877:-2036859 -) -(1,9200:6797234,12365877:2036859,825754,196608 -) -k1,9200:9081532,12365877:247439 -k1,9200:10399461,12365877:327680 -k1,9200:12455694,12365877:247439 -k1,9200:13722218,12365877:247439 -k1,9200:17446342,12365877:247439 -k1,9200:19279753,12365877:247440 -k1,9200:22162395,12365877:247439 -(1,9200:22162395,12365877:0,452978,115847 -r1,9255:24630932,12365877:2468537,568825,115847 -k1,9200:22162395,12365877:-2468537 -) -(1,9200:22162395,12365877:2468537,452978,115847 -k1,9200:22162395,12365877:3277 -h1,9200:24627655,12365877:0,411205,112570 -) -k1,9200:24878371,12365877:247439 -k1,9200:26317255,12365877:247439 -(1,9200:26317255,12365877:0,452978,122846 -r1,9255:28785792,12365877:2468537,575824,122846 -k1,9200:26317255,12365877:-2468537 -) -(1,9200:26317255,12365877:2468537,452978,122846 -k1,9200:26317255,12365877:3277 -h1,9200:28782515,12365877:0,411205,112570 -) -k1,9200:29033231,12365877:247439 -k1,9200:31464985,12365877:247439 -k1,9200:32583029,12365877:0 -) -(1,9201:6797234,13207365:25785795,513147,126483 -k1,9200:8455647,13207365:206791 -k1,9200:9321730,13207365:206791 -k1,9200:10547607,13207365:206792 -k1,9200:14271060,13207365:206791 -k1,9200:16519953,13207365:206791 -k1,9200:17918189,13207365:206791 -k1,9200:20435125,13207365:206792 -k1,9200:21661001,13207365:206791 -k1,9200:24026548,13207365:206791 -k1,9200:26088008,13207365:206791 -k1,9200:27104170,13207365:206792 -k1,9200:28641342,13207365:206791 -k1,9200:30234219,13207365:206791 -k1,9201:32583029,13207365:0 -) -(1,9201:6797234,14048853:25785795,513147,134348 -k1,9200:8627572,14048853:159170 -k1,9200:9778303,14048853:159171 -k1,9200:13701206,14048853:159170 -k1,9200:18109730,14048853:159170 -k1,9200:19287986,14048853:159171 -k1,9200:22633516,14048853:159170 -k1,9200:25427890,14048853:159171 -k1,9200:29811511,14048853:159170 -k1,9201:32583029,14048853:0 -) -(1,9201:6797234,14890341:25785795,513147,126483 -g1,9200:7682625,14890341 -g1,9200:12083367,14890341 -g1,9200:12898634,14890341 -g1,9200:16504424,14890341 -g1,9200:17895098,14890341 -g1,9200:19329681,14890341 -g1,9200:22323366,14890341 -$1,9200:22530460,14890341 -$1,9200:23042952,14890341 -g1,9200:23449275,14890341 -g1,9200:24334666,14890341 -g1,9200:26915473,14890341 -g1,9200:27730740,14890341 -k1,9201:32583029,14890341:585895 -g1,9201:32583029,14890341 -) -v1,9204:6797234,16080807:0,393216,0 -(1,9218:6797234,23057684:25785795,7370093,196608 -g1,9218:6797234,23057684 -g1,9218:6797234,23057684 -g1,9218:6600626,23057684 -(1,9218:6600626,23057684:0,7370093,196608 -r1,9255:32779637,23057684:26179011,7566701,196608 -k1,9218:6600625,23057684:-26179012 -) -(1,9218:6600626,23057684:26179011,7370093,196608 -[1,9218:6797234,23057684:25785795,7173485,0 -(1,9206:6797234,16294717:25785795,410518,101187 -(1,9205:6797234,16294717:0,0,0 -g1,9205:6797234,16294717 -g1,9205:6797234,16294717 -g1,9205:6469554,16294717 -(1,9205:6469554,16294717:0,0,0 -) -g1,9205:6797234,16294717 -) -k1,9206:6797234,16294717:0 -g1,9206:7745671,16294717 -g1,9206:9010255,16294717 -k1,9206:9010255,16294717:0 -h1,9206:13436295,16294717:0,0,0 -k1,9206:32583029,16294717:19146734 -g1,9206:32583029,16294717 -) -(1,9207:6797234,16960895:25785795,410518,101187 -h1,9207:6797234,16960895:0,0,0 -g1,9207:7745671,16960895 -g1,9207:9326401,16960895 -k1,9207:9326401,16960895:0 -h1,9207:13752441,16960895:0,0,0 -k1,9207:32583029,16960895:18830588 -g1,9207:32583029,16960895 -) -(1,9208:6797234,17627073:25785795,410518,101187 -h1,9208:6797234,17627073:0,0,0 -g1,9208:7745671,17627073 -g1,9208:9958692,17627073 -k1,9208:9958692,17627073:0 -h1,9208:14384732,17627073:0,0,0 -k1,9208:32583028,17627073:18198296 -g1,9208:32583028,17627073 -) -(1,9209:6797234,18293251:25785795,410518,101187 -h1,9209:6797234,18293251:0,0,0 -g1,9209:7745671,18293251 -g1,9209:10590983,18293251 -k1,9209:10590983,18293251:0 -h1,9209:15017023,18293251:0,0,0 -k1,9209:32583029,18293251:17566006 -g1,9209:32583029,18293251 -) -(1,9210:6797234,18959429:25785795,410518,101187 -h1,9210:6797234,18959429:0,0,0 -g1,9210:7745671,18959429 -g1,9210:10590983,18959429 -k1,9210:10590983,18959429:0 -h1,9210:15017023,18959429:0,0,0 -k1,9210:32583029,18959429:17566006 -g1,9210:32583029,18959429 -) -(1,9211:6797234,19625607:25785795,410518,101187 -h1,9211:6797234,19625607:0,0,0 -g1,9211:7745671,19625607 -g1,9211:10590983,19625607 -k1,9211:10590983,19625607:0 -h1,9211:15017023,19625607:0,0,0 -k1,9211:32583029,19625607:17566006 -g1,9211:32583029,19625607 -) -(1,9212:6797234,20291785:25785795,410518,101187 -h1,9212:6797234,20291785:0,0,0 -g1,9212:7745671,20291785 -g1,9212:10590983,20291785 -k1,9212:10590983,20291785:0 -h1,9212:15017023,20291785:0,0,0 -k1,9212:32583029,20291785:17566006 -g1,9212:32583029,20291785 -) -(1,9213:6797234,20957963:25785795,410518,107478 -h1,9213:6797234,20957963:0,0,0 -g1,9213:7745671,20957963 -g1,9213:14384731,20957963 -k1,9213:14384731,20957963:0 -h1,9213:18810771,20957963:0,0,0 -k1,9213:32583029,20957963:13772258 -g1,9213:32583029,20957963 -) -(1,9214:6797234,21624141:25785795,410518,107478 -h1,9214:6797234,21624141:0,0,0 -g1,9214:7745671,21624141 -g1,9214:17230043,21624141 -k1,9214:17230043,21624141:0 -h1,9214:21656083,21624141:0,0,0 -k1,9214:32583029,21624141:10926946 -g1,9214:32583029,21624141 -) -(1,9215:6797234,22290319:25785795,410518,107478 -h1,9215:6797234,22290319:0,0,0 -g1,9215:7745671,22290319 -g1,9215:13436294,22290319 -k1,9215:13436294,22290319:0 -h1,9215:17862334,22290319:0,0,0 -k1,9215:32583029,22290319:14720695 -g1,9215:32583029,22290319 -) -(1,9216:6797234,22956497:25785795,410518,101187 -h1,9216:6797234,22956497:0,0,0 -g1,9216:7745671,22956497 -g1,9216:9642546,22956497 -k1,9216:9642546,22956497:0 -h1,9216:14068586,22956497:0,0,0 -k1,9216:32583030,22956497:18514444 -g1,9216:32583030,22956497 -) -] -) -g1,9218:32583029,23057684 -g1,9218:6797234,23057684 -g1,9218:6797234,23057684 -g1,9218:32583029,23057684 -g1,9218:32583029,23057684 -) -h1,9218:6797234,23254292:0,0,0 -(1,9222:6797234,24620068:25785795,513147,134348 -h1,9221:6797234,24620068:983040,0,0 -k1,9221:9560232,24620068:228065 -k1,9221:10254258,24620068:228065 -k1,9221:11652797,24620068:228066 -k1,9221:13411128,24620068:228065 -k1,9221:14290621,24620068:228065 -k1,9221:16799995,24620068:228066 -k1,9221:18486891,24620068:228065 -k1,9221:23369978,24620068:228065 -k1,9221:24257335,24620068:228065 -k1,9221:25504486,24620068:228066 -k1,9221:27118637,24620068:228065 -k1,9221:30823387,24620068:228065 -k1,9221:32583029,24620068:0 -) -(1,9222:6797234,25461556:25785795,485622,134348 -g1,9221:8021446,25461556 -g1,9221:10499362,25461556 -h1,9221:11469950,25461556:0,0,0 -g1,9221:11669179,25461556 -g1,9221:12677778,25461556 -g1,9221:14375160,25461556 -h1,9221:15172078,25461556:0,0,0 -k1,9222:32583028,25461556:17237280 -g1,9222:32583028,25461556 -) -] -g1,9222:32583029,25595904 -) -h1,9222:6630773,25595904:0,0,0 -(1,9225:6630773,26961680:25952256,505283,115847 -h1,9224:6630773,26961680:983040,0,0 -k1,9224:8397640,26961680:155992 -k1,9224:11219636,26961680:155991 -k1,9224:12027056,26961680:155992 -(1,9224:12027056,26961680:0,459977,115847 -r1,9255:13792170,26961680:1765114,575824,115847 -k1,9224:12027056,26961680:-1765114 -) -(1,9224:12027056,26961680:1765114,459977,115847 -g1,9224:13085469,26961680 -h1,9224:13788893,26961680:0,411205,112570 -) -k1,9224:13948162,26961680:155992 -k1,9224:15295598,26961680:155991 -(1,9224:15295598,26961680:0,459977,115847 -r1,9255:19522695,26961680:4227097,575824,115847 -k1,9224:15295598,26961680:-4227097 -) -(1,9224:15295598,26961680:4227097,459977,115847 -g1,9224:16354011,26961680 -g1,9224:17409147,26961680 -g1,9224:18112571,26961680 -h1,9224:19519418,26961680:0,411205,112570 -) -k1,9224:19852357,26961680:155992 -k1,9224:21663133,26961680:155992 -k1,9224:22350621,26961680:155991 -k1,9224:23122651,26961680:155992 -k1,9224:23693443,26961680:155949 -k1,9224:24205295,26961680:155992 -(1,9224:24205295,26961680:0,452978,115847 -r1,9255:27025544,26961680:2820249,568825,115847 -k1,9224:24205295,26961680:-2820249 -) -(1,9224:24205295,26961680:2820249,452978,115847 -k1,9224:24205295,26961680:3277 -h1,9224:27022267,26961680:0,411205,112570 -) -k1,9224:27181535,26961680:155991 -k1,9224:30697558,26961680:155992 -k1,9224:32583029,26961680:0 -) -(1,9225:6630773,27803168:25952256,505283,134348 -k1,9224:7679208,27803168:180083 -k1,9224:10528573,27803168:180084 -k1,9224:12266447,27803168:180083 -k1,9224:12916424,27803168:180084 -k1,9224:14200789,27803168:180083 -k1,9224:15128639,27803168:180084 -k1,9224:16821948,27803168:180083 -k1,9224:17653460,27803168:180084 -k1,9224:19654133,27803168:180083 -k1,9224:21993628,27803168:180084 -k1,9224:23981194,27803168:180083 -k1,9224:24844163,27803168:180084 -k1,9224:27255747,27803168:180083 -k1,9224:30822732,27803168:180084 -k1,9225:32583029,27803168:0 -) -(1,9225:6630773,28644656:25952256,513147,134348 -k1,9224:9052645,28644656:278845 -k1,9224:11186159,28644656:278845 -k1,9224:12274374,28644656:278845 -k1,9224:13323921,28644656:278844 -k1,9224:17042751,28644656:278845 -k1,9224:20604950,28644656:278845 -k1,9224:21535223,28644656:278845 -k1,9224:22169928,28644656:278845 -(1,9224:22169928,28644656:0,452978,115847 -r1,9255:24638465,28644656:2468537,568825,115847 -k1,9224:22169928,28644656:-2468537 -) -(1,9224:22169928,28644656:2468537,452978,115847 -k1,9224:22169928,28644656:3277 -h1,9224:24635188,28644656:0,411205,112570 -) -k1,9224:24917310,28644656:278845 -k1,9224:25879040,28644656:278845 -k1,9224:26513744,28644656:278844 -(1,9224:26513744,28644656:0,452978,115847 -r1,9255:29685704,28644656:3171960,568825,115847 -k1,9224:26513744,28644656:-3171960 -) -(1,9224:26513744,28644656:3171960,452978,115847 -k1,9224:26513744,28644656:3277 -h1,9224:29682427,28644656:0,411205,112570 -) -k1,9224:29964549,28644656:278845 -k1,9224:31923737,28644656:278845 -k1,9224:32583029,28644656:0 -) -(1,9225:6630773,29486144:25952256,513147,134348 -k1,9224:8813153,29486144:169114 -k1,9224:10709795,29486144:169113 -k1,9224:11530337,29486144:169114 -k1,9224:13029831,29486144:169113 -k1,9224:14973660,29486144:169114 -(1,9224:14973660,29486144:0,459977,115847 -r1,9255:16738774,29486144:1765114,575824,115847 -k1,9224:14973660,29486144:-1765114 -) -(1,9224:14973660,29486144:1765114,459977,115847 -g1,9224:16032073,29486144 -h1,9224:16735497,29486144:0,411205,112570 -) -k1,9224:16907887,29486144:169113 -k1,9224:18268446,29486144:169114 -(1,9224:18268446,29486144:0,459977,115847 -r1,9255:22495543,29486144:4227097,575824,115847 -k1,9224:18268446,29486144:-4227097 -) -(1,9224:18268446,29486144:4227097,459977,115847 -g1,9224:19326859,29486144 -g1,9224:20381995,29486144 -g1,9224:21085419,29486144 -h1,9224:22492266,29486144:0,411205,112570 -) -k1,9224:22664656,29486144:169113 -k1,9224:24515424,29486144:169114 -k1,9224:25632188,29486144:169113 -k1,9224:27823088,29486144:169114 -k1,9224:30347565,29486144:169113 -k1,9224:31202841,29486144:169114 -k1,9224:32583029,29486144:0 -) -(1,9225:6630773,30327632:25952256,513147,134348 -k1,9224:7883400,30327632:261067 -k1,9224:11405539,30327632:261068 -k1,9224:12428134,30327632:261067 -k1,9224:13045061,30327632:261067 -k1,9224:15375756,30327632:261068 -k1,9224:17490837,30327632:261067 -(1,9224:17490837,30327632:0,452978,115847 -r1,9255:20311086,30327632:2820249,568825,115847 -k1,9224:17490837,30327632:-2820249 -) -(1,9224:17490837,30327632:2820249,452978,115847 -k1,9224:17490837,30327632:3277 -h1,9224:20307809,30327632:0,411205,112570 -) -k1,9224:20572153,30327632:261067 -k1,9224:21937502,30327632:261067 -k1,9224:24019160,30327632:261068 -k1,9224:26439638,30327632:261067 -k1,9224:27056565,30327632:261067 -k1,9224:29176889,30327632:261068 -k1,9224:31923737,30327632:261067 -k1,9224:32583029,30327632:0 -) -(1,9225:6630773,31169120:25952256,505283,7863 -g1,9224:10216903,31169120 -k1,9225:32583029,31169120:18675794 -g1,9225:32583029,31169120 -) -(1,9227:6630773,32010608:25952256,505283,126483 -h1,9226:6630773,32010608:983040,0,0 -k1,9226:8988684,32010608:178184 -k1,9226:11224697,32010608:178183 -k1,9226:14589241,32010608:178184 -k1,9226:17108371,32010608:178184 -k1,9226:17642415,32010608:178184 -k1,9226:19674612,32010608:178183 -k1,9226:20871881,32010608:178184 -k1,9226:22730408,32010608:178184 -k1,9226:25687319,32010608:178184 -k1,9226:26627030,32010608:178183 -k1,9226:27824299,32010608:178184 -(1,9226:27824299,32010608:0,452978,115847 -r1,9255:30644548,32010608:2820249,568825,115847 -k1,9226:27824299,32010608:-2820249 -) -(1,9226:27824299,32010608:2820249,452978,115847 -k1,9226:27824299,32010608:3277 -h1,9226:30641271,32010608:0,411205,112570 -) -k1,9226:30822732,32010608:178184 -k1,9227:32583029,32010608:0 -) -(1,9227:6630773,32852096:25952256,505283,134348 -k1,9226:8437600,32852096:167772 -k1,9226:9136869,32852096:167772 -k1,9226:10323726,32852096:167772 -k1,9226:12171842,32852096:167773 -k1,9226:15118341,32852096:167772 -k1,9226:16047641,32852096:167772 -k1,9226:17234498,32852096:167772 -k1,9226:20588630,32852096:167772 -k1,9226:25379967,32852096:167772 -k1,9226:26199168,32852096:167773 -k1,9226:27386025,32852096:167772 -k1,9226:30525199,32852096:167772 -k1,9226:32583029,32852096:0 -) -(1,9227:6630773,33693584:25952256,513147,115847 -k1,9226:8641226,33693584:156439 -k1,9226:9480551,33693584:156440 -k1,9226:10656075,33693584:156439 -k1,9226:13078094,33693584:156439 -k1,9226:15643636,33693584:156439 -k1,9226:16451504,33693584:156440 -(1,9226:16451504,33693584:0,452978,115847 -r1,9255:17864905,33693584:1413401,568825,115847 -k1,9226:16451504,33693584:-1413401 -) -(1,9226:16451504,33693584:1413401,452978,115847 -k1,9226:16451504,33693584:3277 -h1,9226:17861628,33693584:0,411205,112570 -) -k1,9226:18228438,33693584:156439 -k1,9226:18850838,33693584:156439 -k1,9226:20662061,33693584:156439 -k1,9226:21349998,33693584:156440 -k1,9226:22315807,33693584:156439 -k1,9226:24453399,33693584:156439 -k1,9226:25801283,33693584:156439 -k1,9226:26313582,33693584:156439 -k1,9226:28735602,33693584:156440 -k1,9226:30902686,33693584:156439 -k1,9226:32583029,33693584:0 -) -(1,9227:6630773,34535072:25952256,513147,134348 -k1,9226:7944901,34535072:213123 -k1,9226:9667974,34535072:213123 -k1,9226:12436346,34535072:213123 -k1,9226:14124685,34535072:213124 -k1,9226:16981530,34535072:213123 -k1,9226:20381013,34535072:213123 -k1,9226:21698418,34535072:213123 -k1,9226:22659307,34535072:213123 -k1,9226:25399498,34535072:213123 -k1,9226:26298783,34535072:213123 -k1,9226:26867766,34535072:213123 -k1,9226:28426344,34535072:213124 -k1,9226:30207088,34535072:213123 -k1,9226:30776071,34535072:213123 -k1,9226:31923737,34535072:213123 -k1,9226:32583029,34535072:0 -) -(1,9227:6630773,35376560:25952256,505283,134348 -k1,9226:9447915,35376560:187182 -k1,9226:11332479,35376560:187182 -k1,9226:12711106,35376560:187182 -k1,9226:13917373,35376560:187182 -k1,9226:15784898,35376560:187182 -k1,9226:18177367,35376560:187182 -k1,9226:19050711,35376560:187182 -k1,9226:22310221,35376560:187182 -k1,9226:23148831,35376560:187182 -(1,9226:23148831,35376560:0,452978,115847 -r1,9255:25969080,35376560:2820249,568825,115847 -k1,9226:23148831,35376560:-2820249 -) -(1,9226:23148831,35376560:2820249,452978,115847 -k1,9226:23148831,35376560:3277 -h1,9226:25965803,35376560:0,411205,112570 -) -k1,9226:26156262,35376560:187182 -k1,9226:27029606,35376560:187182 -k1,9226:27987491,35376560:187182 -k1,9226:29923829,35376560:187182 -k1,9226:30762439,35376560:187182 -k1,9226:32583029,35376560:0 -) -(1,9227:6630773,36218048:25952256,513147,7863 -g1,9226:7986712,36218048 -g1,9226:8845233,36218048 -k1,9227:32583029,36218048:21925070 -g1,9227:32583029,36218048 -) -v1,9229:6630773,37583824:0,393216,0 -(1,9230:6630773,39796251:25952256,2605643,0 -g1,9230:6630773,39796251 -g1,9230:6303093,39796251 -r1,9255:6401397,39796251:98304,2605643,0 -g1,9230:6600626,39796251 -g1,9230:6797234,39796251 -[1,9230:6797234,39796251:25785795,2605643,0 -(1,9230:6797234,37978927:25785795,788319,218313 -(1,9229:6797234,37978927:0,788319,218313 -r1,9255:7917113,37978927:1119879,1006632,218313 -k1,9229:6797234,37978927:-1119879 -) -(1,9229:6797234,37978927:1119879,788319,218313 -) -k1,9229:8050013,37978927:132900 -k1,9229:8377693,37978927:327680 -k1,9229:9707280,37978927:132900 -k1,9229:11561156,37978927:132901 -k1,9229:12932031,37978927:132900 -k1,9229:13680969,37978927:132900 -k1,9229:15699340,37978927:132900 -k1,9229:16851325,37978927:132900 -(1,9229:16851325,37978927:0,452978,115847 -r1,9255:19671574,37978927:2820249,568825,115847 -k1,9229:16851325,37978927:-2820249 -) -(1,9229:16851325,37978927:2820249,452978,115847 -k1,9229:16851325,37978927:3277 -h1,9229:19668297,37978927:0,411205,112570 -) -k1,9229:19804475,37978927:132901 -k1,9229:23123735,37978927:132900 -k1,9229:23788132,37978927:132900 -k1,9229:25434258,37978927:132900 -k1,9229:26098655,37978927:132900 -k1,9229:26993084,37978927:132901 -k1,9229:30771752,37978927:132900 -k1,9229:31563944,37978927:132900 -k1,9229:32583029,37978927:0 -) -(1,9230:6797234,38820415:25785795,513147,134348 -k1,9229:9791274,38820415:215313 -k1,9229:11860601,38820415:215313 -k1,9229:12762076,38820415:215313 -k1,9229:16067412,38820415:215313 -k1,9229:16968887,38820415:215313 -k1,9229:18922215,38820415:215313 -k1,9229:21089190,38820415:215313 -k1,9229:24028835,38820415:215313 -k1,9229:25316317,38820415:215313 -k1,9229:27192968,38820415:215313 -k1,9229:28355932,38820415:215313 -(1,9229:28355932,38820415:0,459977,115847 -r1,9255:32583029,38820415:4227097,575824,115847 -k1,9229:28355932,38820415:-4227097 -) -(1,9229:28355932,38820415:4227097,459977,115847 -g1,9229:29414345,38820415 -g1,9229:30469481,38820415 -g1,9229:31172905,38820415 -h1,9229:32579752,38820415:0,411205,112570 -) -k1,9229:32583029,38820415:0 -) -(1,9230:6797234,39661903:25785795,485622,134348 -g1,9229:7805833,39661903 -g1,9229:9503215,39661903 -h1,9229:10698592,39661903:0,0,0 -k1,9230:32583030,39661903:21710768 -g1,9230:32583030,39661903 -) -] -g1,9230:32583029,39796251 -) -h1,9230:6630773,39796251:0,0,0 -] -(1,9255:32583029,45706769:0,0,0 -g1,9255:32583029,45706769 -) -) -] -(1,9255:6630773,47279633:25952256,0,0 -h1,9255:6630773,47279633:25952256,0,0 -) -] -(1,9255:4262630,4025873:0,0,0 -[1,9255:-473656,4025873:0,0,0 -(1,9255:-473656,-710413:0,0,0 -(1,9255:-473656,-710413:0,0,0 -g1,9255:-473656,-710413 -) -g1,9255:-473656,-710413 -) -] -) -] -!23687 -}155 -Input:1277:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1278:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1279:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1280:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1281:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1282:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1283:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1284:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1285:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1286:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1287:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1288:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1289:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1234 -{156 -[1,9279:4262630,47279633:28320399,43253760,0 -(1,9279:4262630,4025873:0,0,0 -[1,9279:-473656,4025873:0,0,0 -(1,9279:-473656,-710413:0,0,0 -(1,9279:-473656,-644877:0,0,0 -k1,9279:-473656,-644877:-65536 +[1,8606:6630773,45706769:25952256,40108032,0 +(1,8529:6630773,6254097:25952256,513147,134348 +k1,8528:8642230,6254097:273442 +k1,8528:9574964,6254097:273442 +k1,8528:10867491,6254097:273442 +k1,8528:11555701,6254097:273367 +k1,8528:14588209,6254097:273442 +k1,8528:16869019,6254097:273442 +k1,8528:18655687,6254097:273442 +k1,8528:20266063,6254097:273442 +k1,8528:22911253,6254097:273442 +k1,8528:23994065,6254097:273442 +k1,8528:25286592,6254097:273442 +k1,8528:28614012,6254097:273442 +k1,8528:31133373,6254097:273442 +k1,8529:32583029,6254097:0 +) +(1,8529:6630773,7119177:25952256,505283,134348 +g1,8528:10770026,7119177 +g1,8528:11652140,7119177 +g1,8528:13985221,7119177 +g1,8528:14867335,7119177 +g1,8528:15875934,7119177 +g1,8528:17094248,7119177 +g1,8528:18380719,7119177 +g1,8528:20029604,7119177 +k1,8529:32583029,7119177:9748484 +g1,8529:32583029,7119177 +) +(1,8531:6630773,7984257:25952256,513147,134348 +h1,8530:6630773,7984257:983040,0,0 +k1,8530:8463994,7984257:222346 +k1,8530:9274852,7984257:222345 +k1,8530:12256264,7984257:222346 +k1,8530:15428385,7984257:222346 +k1,8530:17988400,7984257:222346 +k1,8530:19277016,7984257:222345 +k1,8530:23014713,7984257:222346 +k1,8530:25969255,7984257:222346 +k1,8530:28350357,7984257:222346 +k1,8530:29382072,7984257:222345 +k1,8530:29960278,7984257:222346 +k1,8530:32583029,7984257:0 +) +(1,8531:6630773,8849337:25952256,513147,134348 +k1,8530:8854410,8849337:216269 +k1,8530:10216903,8849337:216268 +k1,8530:10789032,8849337:216269 +k1,8530:13396710,8849337:216269 +k1,8530:14299140,8849337:216268 +k1,8530:16746910,8849337:216269 +k1,8530:17622471,8849337:216269 +k1,8530:19535466,8849337:216268 +k1,8530:22089404,8849337:216269 +k1,8530:25117168,8849337:216269 +k1,8530:26352521,8849337:216268 +k1,8530:29093237,8849337:216269 +k1,8530:32583029,8849337:0 +) +(1,8531:6630773,9714417:25952256,513147,134348 +k1,8530:8032073,9714417:133834 +k1,8530:8521767,9714417:133834 +k1,8530:9638640,9714417:133833 +k1,8530:11952857,9714417:133834 +k1,8530:13278136,9714417:133834 +k1,8530:14802644,9714417:133834 +k1,8530:15394574,9714417:133833 +k1,8530:16179836,9714417:133834 +k1,8530:17832139,9714417:133834 +k1,8530:20222378,9714417:133834 +k1,8530:23118555,9714417:133834 +k1,8530:26202163,9714417:133833 +k1,8530:28673666,9714417:133834 +k1,8530:29799060,9714417:133834 +k1,8530:32583029,9714417:0 +) +(1,8531:6630773,10579497:25952256,513147,134348 +k1,8530:7538846,10579497:292035 +k1,8530:8245630,10579497:291941 +k1,8530:9729109,10579497:292034 +k1,8530:11401332,10579497:292035 +k1,8530:13436625,10579497:292035 +k1,8530:14344697,10579497:292034 +k1,8530:15655817,10579497:292035 +k1,8530:17377191,10579497:292034 +k1,8530:18328518,10579497:292035 +k1,8530:20779308,10579497:292034 +k1,8530:22451531,10579497:292035 +k1,8530:25537365,10579497:292034 +k1,8530:27696521,10579497:292035 +k1,8530:29301897,10579497:292034 +k1,8530:31043588,10579497:292035 +k1,8530:32583029,10579497:0 +) +(1,8531:6630773,11444577:25952256,513147,134348 +k1,8530:8170161,11444577:191968 +k1,8530:9553581,11444577:191975 +k1,8530:11248290,11444577:191968 +k1,8530:14331713,11444577:191975 +k1,8530:16501565,11444577:191975 +k1,8530:19412629,11444577:191975 +k1,8530:20917946,11444577:191975 +k1,8530:22559577,11444577:191975 +k1,8530:24218248,11444577:191975 +k1,8530:25511876,11444577:191968 +k1,8530:26895296,11444577:191975 +k1,8530:28706010,11444577:191975 +k1,8530:29580870,11444577:191975 +k1,8530:31931601,11444577:191975 +k1,8530:32583029,11444577:0 +) +(1,8531:6630773,12309657:25952256,513147,126483 +k1,8530:7236817,12309657:250184 +k1,8530:10109751,12309657:250183 +k1,8530:12367303,12309657:250184 +k1,8530:13763712,12309657:250184 +k1,8530:15032980,12309657:250183 +k1,8530:17344927,12309657:250184 +k1,8530:18254403,12309657:250184 +k1,8530:18860446,12309657:250183 +k1,8530:22360560,12309657:250184 +k1,8530:25969464,12309657:250184 +k1,8530:28557316,12309657:250183 +k1,8530:29799060,12309657:250184 +k1,8530:32583029,12309657:0 +) +(1,8531:6630773,13174737:25952256,505283,134348 +g1,8530:9388528,13174737 +g1,8530:13317411,13174737 +g1,8530:13931483,13174737 +k1,8531:32583029,13174737:15567422 +g1,8531:32583029,13174737 +) +(1,8533:6630773,14039817:25952256,513147,134348 +h1,8532:6630773,14039817:983040,0,0 +k1,8532:10296595,14039817:262537 +k1,8532:12544218,14039817:262537 +k1,8532:13825839,14039817:262536 +k1,8532:17125314,14039817:262537 +k1,8532:18047143,14039817:262537 +k1,8532:19311006,14039817:262473 +k1,8532:20764988,14039817:262537 +k1,8532:22254950,14039817:262473 +k1,8532:25426630,14039817:262537 +k1,8532:28256867,14039817:262536 +k1,8532:29710849,14039817:262537 +k1,8532:32227169,14039817:262537 +k1,8532:32583029,14039817:0 +) +(1,8533:6630773,14904897:25952256,513147,134348 +k1,8532:10461896,14904897:236473 +k1,8532:11646020,14904897:236473 +(1,8532:11646020,14904897:0,452978,115847 +r1,8606:14114557,14904897:2468537,568825,115847 +k1,8532:11646020,14904897:-2468537 +) +(1,8532:11646020,14904897:2468537,452978,115847 +k1,8532:11646020,14904897:3277 +h1,8532:14111280,14904897:0,411205,112570 +) +k1,8532:14524700,14904897:236473 +(1,8532:14524700,14904897:0,452978,115847 +r1,8606:16641525,14904897:2116825,568825,115847 +k1,8532:14524700,14904897:-2116825 +) +(1,8532:14524700,14904897:2116825,452978,115847 +k1,8532:14524700,14904897:3277 +h1,8532:16638248,14904897:0,411205,112570 +) +k1,8532:16877998,14904897:236473 +k1,8532:18305916,14904897:236473 +k1,8532:20764059,14904897:236472 +k1,8532:24200000,14904897:236473 +k1,8532:26153516,14904897:236473 +k1,8532:28727658,14904897:236473 +k1,8532:32227169,14904897:236473 +k1,8532:32583029,14904897:0 +) +(1,8533:6630773,15769977:25952256,513147,134348 +k1,8532:7815314,15769977:201501 +k1,8532:8702978,15769977:201502 +k1,8532:11236905,15769977:201501 +k1,8532:12542688,15769977:201501 +k1,8532:14134863,15769977:201501 +k1,8532:15845004,15769977:201502 +k1,8532:18205261,15769977:201501 +k1,8532:19563472,15769977:201501 +k1,8532:21042270,15769977:201501 +k1,8532:21856534,15769977:201502 +k1,8532:22413895,15769977:201501 +k1,8532:24040804,15769977:201501 +k1,8532:24893733,15769977:201501 +k1,8532:28679399,15769977:201502 +k1,8532:31269687,15769977:201501 +k1,8532:32583029,15769977:0 +) +(1,8533:6630773,16635057:25952256,513147,134348 +g1,8532:7512887,16635057 +g1,8532:9087717,16635057 +g1,8532:10984984,16635057 +g1,8532:12203298,16635057 +g1,8532:14409895,16635057 +g1,8532:15140621,16635057 +g1,8532:17545137,16635057 +g1,8532:20388088,16635057 +g1,8532:21273479,16635057 +g1,8532:21828568,16635057 +g1,8532:25436980,16635057 +k1,8533:32583029,16635057:5989339 +g1,8533:32583029,16635057 +) +(1,8535:6630773,17500137:25952256,513147,134348 +h1,8534:6630773,17500137:983040,0,0 +k1,8534:9538447,17500137:141399 +k1,8534:12247546,17500137:141398 +k1,8534:12744805,17500137:141399 +k1,8534:14893571,17500137:141398 +k1,8534:16054055,17500137:141399 +k1,8534:17576297,17500137:141398 +k1,8534:20388288,17500137:141399 +k1,8534:23756679,17500137:141398 +k1,8534:27878735,17500137:141399 +k1,8534:29062155,17500137:141398 +k1,8534:30222639,17500137:141399 +k1,8534:31601955,17500137:141341 +k1,8535:32583029,17500137:0 +) +(1,8535:6630773,18365217:25952256,513147,134348 +k1,8534:8032387,18365217:162328 +k1,8534:9479220,18365217:162327 +k1,8534:12591979,18365217:162328 +k1,8534:14913062,18365217:162327 +k1,8534:15691428,18365217:162328 +k1,8534:16209615,18365217:162327 +k1,8534:21281900,18365217:162328 +k1,8534:23798280,18365217:162327 +k1,8534:25775300,18365217:162328 +k1,8534:27129072,18365217:162327 +k1,8534:29300734,18365217:162328 +k1,8534:30122353,18365217:162327 +k1,8534:31303766,18365217:162328 +k1,8535:32583029,18365217:0 +) +(1,8535:6630773,19230297:25952256,513147,126483 +k1,8534:7915802,19230297:192544 +k1,8534:9099906,19230297:192544 +k1,8534:12124261,19230297:192544 +k1,8534:12932843,19230297:192544 +k1,8534:15262516,19230297:192544 +k1,8534:15942641,19230297:192537 +k1,8534:18400765,19230297:192544 +k1,8534:19576349,19230297:192544 +k1,8534:21506908,19230297:192544 +k1,8534:22230949,19230297:192544 +k1,8534:23936719,19230297:192544 +k1,8534:26172020,19230297:192544 +k1,8534:27232916,19230297:192544 +k1,8534:28862665,19230297:192544 +k1,8534:29411069,19230297:192544 +(1,8534:29411069,19230297:0,452978,115847 +r1,8606:32583029,19230297:3171960,568825,115847 +k1,8534:29411069,19230297:-3171960 +) +(1,8534:29411069,19230297:3171960,452978,115847 +k1,8534:29411069,19230297:3277 +h1,8534:32579752,19230297:0,411205,112570 +) +k1,8534:32583029,19230297:0 +) +(1,8535:6630773,20095377:25952256,473825,134348 +g1,8534:8695812,20095377 +g1,8534:9581203,20095377 +g1,8534:10551135,20095377 +g1,8534:13822692,20095377 +g1,8534:14673349,20095377 +g1,8534:18153310,20095377 +(1,8534:18153310,20095377:0,459977,115847 +r1,8606:19566711,20095377:1413401,575824,115847 +k1,8534:18153310,20095377:-1413401 +) +(1,8534:18153310,20095377:1413401,459977,115847 +k1,8534:18153310,20095377:3277 +h1,8534:19563434,20095377:0,411205,112570 +) +k1,8535:32583029,20095377:12842648 +g1,8535:32583029,20095377 +) +v1,8537:6630773,20780232:0,393216,0 +(1,8548:6630773,24570016:25952256,4183000,196608 +g1,8548:6630773,24570016 +g1,8548:6630773,24570016 +g1,8548:6434165,24570016 +(1,8548:6434165,24570016:0,4183000,196608 +r1,8606:32779637,24570016:26345472,4379608,196608 +k1,8548:6434165,24570016:-26345472 +) +(1,8548:6434165,24570016:26345472,4183000,196608 +[1,8548:6630773,24570016:25952256,3986392,0 +(1,8539:6630773,21014669:25952256,431045,112852 +(1,8538:6630773,21014669:0,0,0 +g1,8538:6630773,21014669 +g1,8538:6630773,21014669 +g1,8538:6303093,21014669 +(1,8538:6303093,21014669:0,0,0 +) +g1,8538:6630773,21014669 +) +k1,8539:6630773,21014669:0 +g1,8539:9618359,21014669 +g1,8539:10282267,21014669 +g1,8539:17585253,21014669 +g1,8539:19576977,21014669 +g1,8539:20240885,21014669 +g1,8539:21236747,21014669 +g1,8539:23560425,21014669 +g1,8539:24224333,21014669 +g1,8539:25220195,21014669 +g1,8539:27875827,21014669 +g1,8539:28539735,21014669 +h1,8539:30199505,21014669:0,0,0 +k1,8539:32583029,21014669:2383524 +g1,8539:32583029,21014669 +) +(1,8540:6630773,21699524:25952256,424439,106246 +h1,8540:6630773,21699524:0,0,0 +g1,8540:9950313,21699524 +g1,8540:10614221,21699524 +g1,8540:12937899,21699524 +g1,8540:14597669,21699524 +g1,8540:15261577,21699524 +h1,8540:16921347,21699524:0,0,0 +k1,8540:32583029,21699524:15661682 +g1,8540:32583029,21699524 +) +(1,8541:6630773,22384379:25952256,431045,112852 +h1,8541:6630773,22384379:0,0,0 +g1,8541:10614221,22384379 +g1,8541:11278129,22384379 +g1,8541:13269853,22384379 +g1,8541:14929623,22384379 +g1,8541:15593531,22384379 +h1,8541:18581116,22384379:0,0,0 +k1,8541:32583029,22384379:14001913 +g1,8541:32583029,22384379 +) +(1,8542:6630773,23069234:25952256,431045,79822 +h1,8542:6630773,23069234:0,0,0 +k1,8542:6630773,23069234:0 +h1,8542:9618359,23069234:0,0,0 +k1,8542:32583029,23069234:22964670 +g1,8542:32583029,23069234 +) +(1,8547:6630773,23885161:25952256,431045,106246 +(1,8544:6630773,23885161:0,0,0 +g1,8544:6630773,23885161 +g1,8544:6630773,23885161 +g1,8544:6303093,23885161 +(1,8544:6303093,23885161:0,0,0 +) +g1,8544:6630773,23885161 +) +g1,8547:7626635,23885161 +h1,8547:10614220,23885161:0,0,0 +k1,8547:32583028,23885161:21968808 +g1,8547:32583028,23885161 +) +(1,8547:6630773,24570016:25952256,407923,0 +h1,8547:6630773,24570016:0,0,0 +g1,8547:7626635,24570016 +g1,8547:7958589,24570016 +g1,8547:8290543,24570016 +g1,8547:8622497,24570016 +g1,8547:8954451,24570016 +g1,8547:9286405,24570016 +g1,8547:9618359,24570016 +g1,8547:9950313,24570016 +g1,8547:10282267,24570016 +h1,8547:10614221,24570016:0,0,0 +k1,8547:32583029,24570016:21968808 +g1,8547:32583029,24570016 +) +] +) +g1,8548:32583029,24570016 +g1,8548:6630773,24570016 +g1,8548:6630773,24570016 +g1,8548:32583029,24570016 +g1,8548:32583029,24570016 +) +h1,8548:6630773,24766624:0,0,0 +(1,8552:6630773,25631704:25952256,513147,126483 +h1,8551:6630773,25631704:983040,0,0 +g1,8551:9836794,25631704 +g1,8551:12373692,25631704 +g1,8551:14583566,25631704 +g1,8551:17368190,25631704 +g1,8551:18758864,25631704 +(1,8551:18758864,25631704:0,452978,115847 +r1,8606:20523977,25631704:1765113,568825,115847 +k1,8551:18758864,25631704:-1765113 +) +(1,8551:18758864,25631704:1765113,452978,115847 +k1,8551:18758864,25631704:3277 +h1,8551:20520700,25631704:0,411205,112570 +) +g1,8551:20723206,25631704 +g1,8551:22113880,25631704 +(1,8551:22113880,25631704:0,452978,122846 +r1,8606:24230705,25631704:2116825,575824,122846 +k1,8551:22113880,25631704:-2116825 +) +(1,8551:22113880,25631704:2116825,452978,122846 +k1,8551:22113880,25631704:3277 +h1,8551:24227428,25631704:0,411205,112570 +) +g1,8551:24429934,25631704 +g1,8551:25620723,25631704 +g1,8551:28651763,25631704 +g1,8551:29467030,25631704 +k1,8552:32583029,25631704:1203003 +g1,8552:32583029,25631704 +) +v1,8554:6630773,26316559:0,393216,0 +(1,8564:6630773,29421488:25952256,3498145,196608 +g1,8564:6630773,29421488 +g1,8564:6630773,29421488 +g1,8564:6434165,29421488 +(1,8564:6434165,29421488:0,3498145,196608 +r1,8606:32779637,29421488:26345472,3694753,196608 +k1,8564:6434165,29421488:-26345472 +) +(1,8564:6434165,29421488:26345472,3498145,196608 +[1,8564:6630773,29421488:25952256,3301537,0 +(1,8556:6630773,26550996:25952256,431045,112852 +(1,8555:6630773,26550996:0,0,0 +g1,8555:6630773,26550996 +g1,8555:6630773,26550996 +g1,8555:6303093,26550996 +(1,8555:6303093,26550996:0,0,0 +) +g1,8555:6630773,26550996 +) +k1,8556:6630773,26550996:0 +g1,8556:9618359,26550996 +g1,8556:10282267,26550996 +g1,8556:17585253,26550996 +g1,8556:19576977,26550996 +g1,8556:20240885,26550996 +g1,8556:21900655,26550996 +g1,8556:24224333,26550996 +g1,8556:24888241,26550996 +h1,8556:26216057,26550996:0,0,0 +k1,8556:32583029,26550996:6366972 +g1,8556:32583029,26550996 +) +(1,8557:6630773,27235851:25952256,431045,112852 +h1,8557:6630773,27235851:0,0,0 +g1,8557:10614221,27235851 +g1,8557:11278129,27235851 +g1,8557:13269853,27235851 +g1,8557:14929623,27235851 +g1,8557:15593531,27235851 +h1,8557:18581116,27235851:0,0,0 +k1,8557:32583029,27235851:14001913 +g1,8557:32583029,27235851 +) +(1,8558:6630773,27920706:25952256,431045,79822 +h1,8558:6630773,27920706:0,0,0 +k1,8558:6630773,27920706:0 +h1,8558:9618359,27920706:0,0,0 +k1,8558:32583029,27920706:22964670 +g1,8558:32583029,27920706 +) +(1,8563:6630773,28736633:25952256,431045,106246 +(1,8560:6630773,28736633:0,0,0 +g1,8560:6630773,28736633 +g1,8560:6630773,28736633 +g1,8560:6303093,28736633 +(1,8560:6303093,28736633:0,0,0 +) +g1,8560:6630773,28736633 +) +g1,8563:7626635,28736633 +h1,8563:10614220,28736633:0,0,0 +k1,8563:32583028,28736633:21968808 +g1,8563:32583028,28736633 +) +(1,8563:6630773,29421488:25952256,407923,0 +h1,8563:6630773,29421488:0,0,0 +g1,8563:7626635,29421488 +g1,8563:7958589,29421488 +g1,8563:8290543,29421488 +g1,8563:8622497,29421488 +g1,8563:8954451,29421488 +g1,8563:9286405,29421488 +g1,8563:9618359,29421488 +g1,8563:9950313,29421488 +g1,8563:10282267,29421488 +h1,8563:10614221,29421488:0,0,0 +k1,8563:32583029,29421488:21968808 +g1,8563:32583029,29421488 +) +] +) +g1,8564:32583029,29421488 +g1,8564:6630773,29421488 +g1,8564:6630773,29421488 +g1,8564:32583029,29421488 +g1,8564:32583029,29421488 +) +h1,8564:6630773,29618096:0,0,0 +(1,8569:6630773,30483176:25952256,513147,126483 +h1,8567:6630773,30483176:983040,0,0 +k1,8567:9040793,30483176:230293 +k1,8567:12255597,30483176:230294 +k1,8567:13145182,30483176:230293 +k1,8567:15223591,30483176:230294 +k1,8567:17612640,30483176:230293 +k1,8567:18494362,30483176:230294 +k1,8567:19080515,30483176:230293 +k1,8567:22069875,30483176:230294 +k1,8567:24307536,30483176:230293 +k1,8567:25069327,30483176:230294 +k1,8567:26812846,30483176:230293 +k1,8567:27659178,30483176:230294 +k1,8567:29323399,30483176:230293 +k1,8567:30142206,30483176:230294 +k1,8568:31563944,30483176:230293 +k1,8568:32583029,30483176:0 +) +(1,8569:6630773,31348256:25952256,513147,126483 +k1,8568:9443780,31348256:147002 +k1,8568:10250074,31348256:147002 +k1,8568:11674373,31348256:147002 +k1,8568:15922619,31348256:147003 +k1,8568:16755783,31348256:147002 +k1,8568:18978310,31348256:147002 +k1,8568:21167414,31348256:147002 +k1,8568:21845913,31348256:147002 +k1,8568:23570367,31348256:147002 +k1,8568:26131716,31348256:147003 +k1,8568:26930146,31348256:147002 +k1,8568:28096233,31348256:147002 +k1,8568:30401991,31348256:147002 +k1,8569:32583029,31348256:0 +k1,8569:32583029,31348256:0 +) +v1,8571:6630773,32033111:0,393216,0 +(1,8582:6630773,35822895:25952256,4183000,196608 +g1,8582:6630773,35822895 +g1,8582:6630773,35822895 +g1,8582:6434165,35822895 +(1,8582:6434165,35822895:0,4183000,196608 +r1,8606:32779637,35822895:26345472,4379608,196608 +k1,8582:6434165,35822895:-26345472 +) +(1,8582:6434165,35822895:26345472,4183000,196608 +[1,8582:6630773,35822895:25952256,3986392,0 +(1,8573:6630773,32267548:25952256,431045,112852 +(1,8572:6630773,32267548:0,0,0 +g1,8572:6630773,32267548 +g1,8572:6630773,32267548 +g1,8572:6303093,32267548 +(1,8572:6303093,32267548:0,0,0 +) +g1,8572:6630773,32267548 +) +k1,8573:6630773,32267548:0 +g1,8573:9618359,32267548 +g1,8573:10282267,32267548 +g1,8573:17585253,32267548 +g1,8573:19576977,32267548 +g1,8573:20240885,32267548 +g1,8573:21900655,32267548 +g1,8573:24224333,32267548 +g1,8573:24888241,32267548 +h1,8573:26216057,32267548:0,0,0 +k1,8573:32583029,32267548:6366972 +g1,8573:32583029,32267548 +) +(1,8574:6630773,32952403:25952256,424439,106246 +h1,8574:6630773,32952403:0,0,0 +g1,8574:9950313,32952403 +g1,8574:10614221,32952403 +g1,8574:12937899,32952403 +g1,8574:14597669,32952403 +g1,8574:15261577,32952403 +h1,8574:16921347,32952403:0,0,0 +k1,8574:32583029,32952403:15661682 +g1,8574:32583029,32952403 +) +(1,8575:6630773,33637258:25952256,424439,106246 +h1,8575:6630773,33637258:0,0,0 +g1,8575:8954451,33637258 +g1,8575:9618359,33637258 +g1,8575:10946175,33637258 +g1,8575:11610083,33637258 +g1,8575:12273991,33637258 +g1,8575:13933761,33637258 +g1,8575:16257439,33637258 +g1,8575:16921347,33637258 +g1,8575:18913071,33637258 +g1,8575:20904795,33637258 +g1,8575:21900657,33637258 +g1,8575:22896519,33637258 +h1,8575:25220197,33637258:0,0,0 +k1,8575:32583029,33637258:7362832 +g1,8575:32583029,33637258 +) +(1,8576:6630773,34322113:25952256,431045,79822 +h1,8576:6630773,34322113:0,0,0 +k1,8576:6630773,34322113:0 +h1,8576:9618359,34322113:0,0,0 +k1,8576:32583029,34322113:22964670 +g1,8576:32583029,34322113 +) +(1,8581:6630773,35138040:25952256,431045,106246 +(1,8578:6630773,35138040:0,0,0 +g1,8578:6630773,35138040 +g1,8578:6630773,35138040 +g1,8578:6303093,35138040 +(1,8578:6303093,35138040:0,0,0 +) +g1,8578:6630773,35138040 +) +g1,8581:7626635,35138040 +h1,8581:10614220,35138040:0,0,0 +k1,8581:32583028,35138040:21968808 +g1,8581:32583028,35138040 +) +(1,8581:6630773,35822895:25952256,407923,0 +h1,8581:6630773,35822895:0,0,0 +g1,8581:7626635,35822895 +g1,8581:7958589,35822895 +g1,8581:8290543,35822895 +g1,8581:8622497,35822895 +g1,8581:8954451,35822895 +g1,8581:9286405,35822895 +g1,8581:9618359,35822895 +g1,8581:9950313,35822895 +g1,8581:10282267,35822895 +h1,8581:10614221,35822895:0,0,0 +k1,8581:32583029,35822895:21968808 +g1,8581:32583029,35822895 +) +] +) +g1,8582:32583029,35822895 +g1,8582:6630773,35822895 +g1,8582:6630773,35822895 +g1,8582:32583029,35822895 +g1,8582:32583029,35822895 +) +h1,8582:6630773,36019503:0,0,0 +v1,8586:6630773,36884583:0,393216,0 +(1,8587:6630773,39902228:25952256,3410861,0 +g1,8587:6630773,39902228 +g1,8587:6237557,39902228 +r1,8606:6368629,39902228:131072,3410861,0 +g1,8587:6567858,39902228 +g1,8587:6764466,39902228 +[1,8587:6764466,39902228:25818563,3410861,0 +(1,8587:6764466,37299125:25818563,807758,219026 +(1,8586:6764466,37299125:0,807758,219026 +r1,8606:7908217,37299125:1143751,1026784,219026 +k1,8586:6764466,37299125:-1143751 +) +(1,8586:6764466,37299125:1143751,807758,219026 +) +k1,8586:8123739,37299125:215522 +k1,8586:8451419,37299125:327680 +k1,8586:10047785,37299125:215522 +k1,8586:10794805,37299125:215523 +k1,8586:12076598,37299125:215522 +k1,8586:13311205,37299125:215522 +k1,8586:14902328,37299125:215522 +k1,8586:18102360,37299125:215522 +k1,8586:21275522,37299125:215522 +k1,8586:22308934,37299125:215523 +k1,8586:23392808,37299125:215522 +k1,8586:24740792,37299125:215522 +k1,8586:25981297,37299125:215522 +k1,8586:26812857,37299125:215522 +k1,8586:29446003,37299125:215523 +h1,8586:29844462,37299125:0,0,0 +k1,8586:30059984,37299125:215522 +k1,8586:31084876,37299125:215522 +k1,8586:32583029,37299125:0 +) +(1,8587:6764466,38164205:25818563,513147,134348 +h1,8586:7959843,38164205:0,0,0 +k1,8586:8354894,38164205:221381 +k1,8586:9346977,38164205:221380 +k1,8586:12955259,38164205:221381 +k1,8586:16161150,38164205:221381 +k1,8586:16914028,38164205:221381 +k1,8586:17786836,38164205:221380 +k1,8586:19650549,38164205:221381 +k1,8586:20227790,38164205:221381 +k1,8586:21636683,38164205:221381 +k1,8586:23781544,38164205:221380 +k1,8586:24689087,38164205:221381 +k1,8586:25266328,38164205:221381 +k1,8586:26481235,38164205:221381 +k1,8586:27361907,38164205:221380 +k1,8586:30206694,38164205:221381 +k1,8587:32583029,38164205:0 +) +(1,8587:6764466,39029285:25818563,505283,134348 +k1,8586:8781725,39029285:253030 +k1,8586:10319262,39029285:253031 +k1,8586:11103789,39029285:253030 +k1,8586:12810409,39029285:253031 +k1,8586:15938503,39029285:253030 +k1,8586:16877696,39029285:253031 +k1,8586:17486586,39029285:253030 +k1,8586:19622465,39029285:253030 +k1,8586:20684866,39029285:253031 +k1,8586:21293756,39029285:253030 +k1,8586:24496562,39029285:253031 +k1,8586:26756960,39029285:253030 +k1,8586:27771519,39029285:253031 +k1,8586:30114492,39029285:253030 +(1,8586:30114492,39029285:0,452978,115847 +r1,8606:32583029,39029285:2468537,568825,115847 +k1,8586:30114492,39029285:-2468537 +) +(1,8586:30114492,39029285:2468537,452978,115847 +k1,8586:30114492,39029285:3277 +h1,8586:32579752,39029285:0,411205,112570 +) +k1,8586:32583029,39029285:0 +) +(1,8587:6764466,39894365:25818563,355205,7863 +k1,8587:32583029,39894365:24154604 +g1,8587:32583029,39894365 +) +] +g1,8587:32583029,39902228 +) +h1,8587:6630773,39902228:0,0,0 +] +(1,8606:32583029,45706769:0,0,0 +g1,8606:32583029,45706769 +) +) +] +(1,8606:6630773,47279633:25952256,0,0 +h1,8606:6630773,47279633:25952256,0,0 +) +] +(1,8606:4262630,4025873:0,0,0 +[1,8606:-473656,4025873:0,0,0 +(1,8606:-473656,-710413:0,0,0 +(1,8606:-473656,-710413:0,0,0 +g1,8606:-473656,-710413 +) +g1,8606:-473656,-710413 +) +] +) +] +!24738 +}131 +!12 +{132 +[1,8606:4262630,47279633:28320399,43253760,0 +(1,8606:4262630,4025873:0,0,0 +[1,8606:-473656,4025873:0,0,0 +(1,8606:-473656,-710413:0,0,0 +(1,8606:-473656,-644877:0,0,0 +k1,8606:-473656,-644877:-65536 ) -(1,9279:-473656,4736287:0,0,0 -k1,9279:-473656,4736287:5209943 +(1,8606:-473656,4736287:0,0,0 +k1,8606:-473656,4736287:5209943 ) -g1,9279:-473656,-710413 +g1,8606:-473656,-710413 ) ] ) -[1,9279:6630773,47279633:25952256,43253760,0 -[1,9279:6630773,4812305:25952256,786432,0 -(1,9279:6630773,4812305:25952256,505283,11795 -(1,9279:6630773,4812305:25952256,505283,11795 -g1,9279:3078558,4812305 -[1,9279:3078558,4812305:0,0,0 -(1,9279:3078558,2439708:0,1703936,0 -k1,9279:1358238,2439708:-1720320 -(1,8393:1358238,2439708:1720320,1703936,0 -(1,8393:1358238,2439708:1179648,16384,0 -r1,9279:2537886,2439708:1179648,16384,0 +[1,8606:6630773,47279633:25952256,43253760,0 +[1,8606:6630773,4812305:25952256,786432,0 +(1,8606:6630773,4812305:25952256,505283,134348 +(1,8606:6630773,4812305:25952256,505283,134348 +g1,8606:3078558,4812305 +[1,8606:3078558,4812305:0,0,0 +(1,8606:3078558,2439708:0,1703936,0 +k1,8606:1358238,2439708:-1720320 +(1,6148:1358238,2439708:1720320,1703936,0 +(1,6148:1358238,2439708:1179648,16384,0 +r1,8606:2537886,2439708:1179648,16384,0 ) -g1,8393:3062174,2439708 -(1,8393:3062174,2439708:16384,1703936,0 -[1,8393:3062174,2439708:25952256,1703936,0 -(1,8393:3062174,1915420:25952256,1179648,0 -(1,8393:3062174,1915420:16384,1179648,0 -r1,9279:3078558,1915420:16384,1179648,0 +g1,6148:3062174,2439708 +(1,6148:3062174,2439708:16384,1703936,0 +[1,6148:3062174,2439708:25952256,1703936,0 +(1,6148:3062174,1915420:25952256,1179648,0 +(1,6148:3062174,1915420:16384,1179648,0 +r1,8606:3078558,1915420:16384,1179648,0 ) -k1,8393:29014430,1915420:25935872 -g1,8393:29014430,1915420 +k1,6148:29014430,1915420:25935872 +g1,6148:29014430,1915420 ) ] ) ) ) ] -[1,9279:3078558,4812305:0,0,0 -(1,9279:3078558,2439708:0,1703936,0 -g1,9279:29030814,2439708 -g1,9279:36135244,2439708 -(1,8393:36135244,2439708:1720320,1703936,0 -(1,8393:36135244,2439708:16384,1703936,0 -[1,8393:36135244,2439708:25952256,1703936,0 -(1,8393:36135244,1915420:25952256,1179648,0 -(1,8393:36135244,1915420:16384,1179648,0 -r1,9279:36151628,1915420:16384,1179648,0 +[1,8606:3078558,4812305:0,0,0 +(1,8606:3078558,2439708:0,1703936,0 +g1,8606:29030814,2439708 +g1,8606:36135244,2439708 +(1,6148:36135244,2439708:1720320,1703936,0 +(1,6148:36135244,2439708:16384,1703936,0 +[1,6148:36135244,2439708:25952256,1703936,0 +(1,6148:36135244,1915420:25952256,1179648,0 +(1,6148:36135244,1915420:16384,1179648,0 +r1,8606:36151628,1915420:16384,1179648,0 ) -k1,8393:62087500,1915420:25935872 -g1,8393:62087500,1915420 +k1,6148:62087500,1915420:25935872 +g1,6148:62087500,1915420 ) ] ) -g1,8393:36675916,2439708 -(1,8393:36675916,2439708:1179648,16384,0 -r1,9279:37855564,2439708:1179648,16384,0 +g1,6148:36675916,2439708 +(1,6148:36675916,2439708:1179648,16384,0 +r1,8606:37855564,2439708:1179648,16384,0 ) ) -k1,9279:3078556,2439708:-34777008 +k1,8606:3078556,2439708:-34777008 ) ] -[1,9279:3078558,4812305:0,0,0 -(1,9279:3078558,49800853:0,16384,2228224 -k1,9279:1358238,49800853:-1720320 -(1,8393:1358238,49800853:1720320,16384,2228224 -(1,8393:1358238,49800853:1179648,16384,0 -r1,9279:2537886,49800853:1179648,16384,0 +[1,8606:3078558,4812305:0,0,0 +(1,8606:3078558,49800853:0,16384,2228224 +k1,8606:1358238,49800853:-1720320 +(1,6148:1358238,49800853:1720320,16384,2228224 +(1,6148:1358238,49800853:1179648,16384,0 +r1,8606:2537886,49800853:1179648,16384,0 ) -g1,8393:3062174,49800853 -(1,8393:3062174,52029077:16384,1703936,0 -[1,8393:3062174,52029077:25952256,1703936,0 -(1,8393:3062174,51504789:25952256,1179648,0 -(1,8393:3062174,51504789:16384,1179648,0 -r1,9279:3078558,51504789:16384,1179648,0 +g1,6148:3062174,49800853 +(1,6148:3062174,52029077:16384,1703936,0 +[1,6148:3062174,52029077:25952256,1703936,0 +(1,6148:3062174,51504789:25952256,1179648,0 +(1,6148:3062174,51504789:16384,1179648,0 +r1,8606:3078558,51504789:16384,1179648,0 ) -k1,8393:29014430,51504789:25935872 -g1,8393:29014430,51504789 +k1,6148:29014430,51504789:25935872 +g1,6148:29014430,51504789 ) ] ) ) ) ] -[1,9279:3078558,4812305:0,0,0 -(1,9279:3078558,49800853:0,16384,2228224 -g1,9279:29030814,49800853 -g1,9279:36135244,49800853 -(1,8393:36135244,49800853:1720320,16384,2228224 -(1,8393:36135244,52029077:16384,1703936,0 -[1,8393:36135244,52029077:25952256,1703936,0 -(1,8393:36135244,51504789:25952256,1179648,0 -(1,8393:36135244,51504789:16384,1179648,0 -r1,9279:36151628,51504789:16384,1179648,0 +[1,8606:3078558,4812305:0,0,0 +(1,8606:3078558,49800853:0,16384,2228224 +g1,8606:29030814,49800853 +g1,8606:36135244,49800853 +(1,6148:36135244,49800853:1720320,16384,2228224 +(1,6148:36135244,52029077:16384,1703936,0 +[1,6148:36135244,52029077:25952256,1703936,0 +(1,6148:36135244,51504789:25952256,1179648,0 +(1,6148:36135244,51504789:16384,1179648,0 +r1,8606:36151628,51504789:16384,1179648,0 ) -k1,8393:62087500,51504789:25935872 -g1,8393:62087500,51504789 +k1,6148:62087500,51504789:25935872 +g1,6148:62087500,51504789 ) ] ) -g1,8393:36675916,49800853 -(1,8393:36675916,49800853:1179648,16384,0 -r1,9279:37855564,49800853:1179648,16384,0 +g1,6148:36675916,49800853 +(1,6148:36675916,49800853:1179648,16384,0 +r1,8606:37855564,49800853:1179648,16384,0 ) ) -k1,9279:3078556,49800853:-34777008 +k1,8606:3078556,49800853:-34777008 ) ] -g1,9279:6630773,4812305 -g1,9279:6630773,4812305 -g1,9279:10456764,4812305 -g1,9279:13962940,4812305 -k1,9279:31387652,4812305:17424712 +g1,8606:6630773,4812305 +g1,8606:6630773,4812305 +g1,8606:9205682,4812305 +g1,8606:11846782,4812305 +k1,8606:31387652,4812305:19540870 ) ) ] -[1,9279:6630773,45706769:25952256,40108032,0 -(1,9279:6630773,45706769:25952256,40108032,0 -(1,9279:6630773,45706769:0,0,0 -g1,9279:6630773,45706769 +[1,8606:6630773,45706769:25952256,40108032,0 +(1,8606:6630773,45706769:25952256,40108032,0 +(1,8606:6630773,45706769:0,0,0 +g1,8606:6630773,45706769 ) -[1,9279:6630773,45706769:25952256,40108032,0 -(1,9255:6630773,27814622:25952256,22215885,0 -k1,9255:10211480,27814622:3580707 -(1,9232:10211480,27814622:0,0,0 -g1,9232:10211480,27814622 -g1,9232:10211480,27814622 -g1,9232:9883800,27814622 -(1,9232:9883800,27814622:0,0,0 +[1,8606:6630773,45706769:25952256,40108032,0 +(1,8590:6630773,6254097:25952256,32768,229376 +(1,8590:6630773,6254097:0,32768,229376 +(1,8590:6630773,6254097:5505024,32768,229376 +r1,8606:12135797,6254097:5505024,262144,229376 ) -g1,9232:10211480,27814622 +k1,8590:6630773,6254097:-5505024 ) -(1,9253:10211480,27814622:18790843,22215885,0 -g1,9253:13698849,27814622 -(1,9253:13698849,6544183:0,0,0 -(1,9253:13698849,6544183:0,0,0 -g1,9234:13698849,6544183 -(1,9235:13698849,6544183:0,0,0 -(1,9235:13698849,6544183:0,0,0 -g1,9235:13698849,6544183 -g1,9235:13698849,6544183 -g1,9235:13698849,6544183 -g1,9235:13698849,6544183 -g1,9235:13698849,6544183 -(1,9235:13698849,6544183:0,0,0 -(1,9235:13698849,6544183:589824,56623,0 -(1,9235:13698849,6544183:589824,56623,0 +(1,8590:6630773,6254097:25952256,32768,0 +r1,8606:32583029,6254097:25952256,32768,0 ) -g1,9235:14288673,6544183 ) +(1,8590:6630773,7885949:25952256,606339,161218 +(1,8590:6630773,7885949:1974731,582746,14155 +g1,8590:6630773,7885949 +g1,8590:8605504,7885949 ) -g1,9235:13698849,6544183 -g1,9235:13698849,6544183 +g1,8590:11813360,7885949 +k1,8590:32583030,7885949:17773364 +g1,8590:32583030,7885949 ) +(1,8593:6630773,9144245:25952256,513147,134348 +k1,8591:7858919,9144245:186124 +k1,8591:10320453,9144245:186124 +k1,8591:12909127,9144245:186124 +k1,8591:13904621,9144245:186124 +k1,8591:15109830,9144245:186124 +k1,8591:17670979,9144245:186124 +k1,8591:18524259,9144245:186124 +k1,8591:19125213,9144245:186111 +k1,8591:22440681,9144245:186124 +k1,8591:23242843,9144245:186124 +k1,8591:24448052,9144245:186124 +k1,8591:26978399,9144245:186124 +k1,8591:29755817,9144245:186124 +k1,8592:30154920,9144245:186111 +k1,8592:32583029,9144245:0 ) -g1,9235:13698849,6544183 -(1,9236:13698849,6544183:0,0,0 -(1,9236:13698849,6544183:0,0,0 -g1,9236:13698849,6544183 -g1,9236:13698849,6544183 -(1,9236:13698849,6544183:0,0,0 -(1,9236:13698849,6544183:4754664,408008,104590 -(1,9236:13698849,6544183:4754664,408008,104590 -(1,9236:13698849,6544183:0,408008,104590 -r1,9279:18453513,6544183:4754664,512598,104590 -k1,9236:13698849,6544183:-4754664 +(1,8593:6630773,10009325:25952256,513147,134348 +k1,8592:7826196,10009325:176338 +k1,8592:9914876,10009325:176339 +k1,8592:10540791,10009325:176338 +k1,8592:15107387,10009325:176339 +k1,8592:16207783,10009325:176338 +k1,8592:17918320,10009325:176339 +k1,8592:20374656,10009325:176338 +k1,8592:22270004,10009325:176338 +k1,8592:24247272,10009325:176339 +k1,8592:25615055,10009325:176338 +k1,8592:26978906,10009325:176339 +k1,8592:28185470,10009325:176338 +k1,8592:28977847,10009325:176339 +k1,8592:29603762,10009325:176338 +k1,8593:32583029,10009325:0 ) -(1,9236:13698849,6544183:4754664,408008,104590 -k1,9236:13698849,6544183:3277 -h1,9236:18450236,6544183:0,370085,101313 +(1,8593:6630773,10874405:25952256,513147,134348 +g1,8592:8619790,10874405 +g1,8592:9308573,10874405 +g1,8592:11030203,10874405 +g1,8592:11845470,10874405 +g1,8592:15075084,10874405 +g1,8592:18056316,10874405 +g1,8592:20386776,10874405 +g1,8592:23054746,10874405 +k1,8593:32583029,10874405:7553683 +g1,8593:32583029,10874405 ) +] +(1,8606:32583029,45706769:0,0,0 +g1,8606:32583029,45706769 ) -g1,9236:18453513,6544183 ) +] +(1,8606:6630773,47279633:25952256,0,0 +h1,8606:6630773,47279633:25952256,0,0 ) -g1,9236:13698849,6544183 -g1,9236:13698849,6544183 +] +(1,8606:4262630,4025873:0,0,0 +[1,8606:-473656,4025873:0,0,0 +(1,8606:-473656,-710413:0,0,0 +(1,8606:-473656,-710413:0,0,0 +g1,8606:-473656,-710413 ) +g1,8606:-473656,-710413 ) -(1,9237:13698849,6544183:0,0,0 -(1,9237:13698849,6544183:0,0,0 -g1,9237:13698849,6544183 -g1,9237:13698849,6544183 -g1,9237:13698849,6544183 -g1,9237:13698849,6544183 -g1,9237:13698849,6544183 -(1,9237:13698849,6544183:0,0,0 -(1,9237:13698849,6544183:4121582,373362,104590 -(1,9237:13698849,6544183:4121582,373362,104590 -(1,9237:13698849,6544183:0,373362,104590 -r1,9279:17820431,6544183:4121582,477952,104590 -k1,9237:13698849,6544183:-4121582 +] ) -(1,9237:13698849,6544183:4121582,373362,104590 -g1,9237:17184073,6544183 -h1,9237:17817154,6544183:0,370085,101313 +] +!5334 +}132 +!11 +{133 +[1,8606:4262630,47279633:28320399,43253760,0 +(1,8606:4262630,4025873:0,0,0 +[1,8606:-473656,4025873:0,0,0 +(1,8606:-473656,-710413:0,0,0 +(1,8606:-473656,-644877:0,0,0 +k1,8606:-473656,-644877:-65536 ) +(1,8606:-473656,4736287:0,0,0 +k1,8606:-473656,4736287:5209943 ) -g1,9237:17820431,6544183 +g1,8606:-473656,-710413 ) +] ) -g1,9237:13698849,6544183 -g1,9237:13698849,6544183 +[1,8606:6630773,47279633:25952256,43253760,0 +[1,8606:6630773,4812305:25952256,786432,0 +(1,8606:6630773,4812305:25952256,0,0 +(1,8606:6630773,4812305:25952256,0,0 +g1,8606:3078558,4812305 +[1,8606:3078558,4812305:0,0,0 +(1,8606:3078558,2439708:0,1703936,0 +k1,8606:1358238,2439708:-1720320 +(1,8606:1358238,2439708:1720320,1703936,0 +(1,8606:1358238,2439708:1179648,16384,0 +r1,8606:2537886,2439708:1179648,16384,0 ) +g1,8606:3062174,2439708 +(1,8606:3062174,2439708:16384,1703936,0 +[1,8606:3062174,2439708:25952256,1703936,0 +(1,8606:3062174,1915420:25952256,1179648,0 +(1,8606:3062174,1915420:16384,1179648,0 +r1,8606:3078558,1915420:16384,1179648,0 ) -g1,9237:13698849,6544183 -g1,9238:13698849,6544183 -(1,9238:13698849,6544183:0,0,0 -(1,9238:13698849,6544183:0,0,0 -g1,9238:13698849,6544183 -g1,9238:13698849,6544183 -g1,9238:13698849,6544183 -g1,9238:13698849,6544183 -g1,9238:13698849,6544183 -(1,9238:13698849,6544183:0,0,0 -(1,9238:13698849,6544183:4121582,373362,104590 -(1,9238:13698849,6544183:4121582,373362,104590 -(1,9238:13698849,6544183:0,373362,104590 -r1,9279:17820431,6544183:4121582,477952,104590 -k1,9238:13698849,6544183:-4121582 -) -(1,9238:13698849,6544183:4121582,373362,104590 -g1,9238:17184073,6544183 -h1,9238:17817154,6544183:0,370085,101313 -) -) -g1,9238:17820431,6544183 +k1,8606:29014430,1915420:25935872 +g1,8606:29014430,1915420 ) +] ) -g1,9238:13698849,6544183 -g1,9238:13698849,6544183 ) ) -g1,9238:13698849,6544183 -g1,9239:13698849,6544183 -(1,9239:13698849,6544183:0,0,0 -(1,9239:13698849,6544183:0,0,0 -g1,9239:13698849,6544183 -g1,9239:13698849,6544183 -g1,9239:13698849,6544183 -g1,9239:13698849,6544183 -g1,9239:13698849,6544183 -(1,9239:13698849,6544183:0,0,0 -(1,9239:13698849,6544183:4121582,373362,104590 -(1,9239:13698849,6544183:4121582,373362,104590 -(1,9239:13698849,6544183:0,373362,104590 -r1,9279:17820431,6544183:4121582,477952,104590 -k1,9239:13698849,6544183:-4121582 +] +[1,8606:3078558,4812305:0,0,0 +(1,8606:3078558,2439708:0,1703936,0 +g1,8606:29030814,2439708 +g1,8606:36135244,2439708 +(1,8606:36135244,2439708:1720320,1703936,0 +(1,8606:36135244,2439708:16384,1703936,0 +[1,8606:36135244,2439708:25952256,1703936,0 +(1,8606:36135244,1915420:25952256,1179648,0 +(1,8606:36135244,1915420:16384,1179648,0 +r1,8606:36151628,1915420:16384,1179648,0 ) -(1,9239:13698849,6544183:4121582,373362,104590 -g1,9239:17184073,6544183 -h1,9239:17817154,6544183:0,370085,101313 -) -) -g1,9239:17820431,6544183 -) -) -g1,9239:13698849,6544183 -g1,9239:13698849,6544183 -) -) -g1,9239:13698849,6544183 -g1,9240:13698849,6544183 -(1,9240:13698849,6544183:0,0,0 -(1,9240:13698849,6544183:0,0,0 -g1,9240:13698849,6544183 -g1,9240:13698849,6544183 -g1,9240:13698849,6544183 -g1,9240:13698849,6544183 -g1,9240:13698849,6544183 -(1,9240:13698849,6544183:0,0,0 -(1,9240:13698849,6544183:4121582,373362,104590 -(1,9240:13698849,6544183:4121582,373362,104590 -(1,9240:13698849,6544183:0,373362,104590 -r1,9279:17820431,6544183:4121582,477952,104590 -k1,9240:13698849,6544183:-4121582 -) -(1,9240:13698849,6544183:4121582,373362,104590 -g1,9240:17184073,6544183 -h1,9240:17817154,6544183:0,370085,101313 -) -) -g1,9240:17820431,6544183 -) -) -g1,9240:13698849,6544183 -g1,9240:13698849,6544183 -) -) -g1,9240:13698849,6544183 -(1,9241:13698849,6544183:0,0,0 -(1,9241:13698849,6544183:0,0,0 -g1,9241:13698849,6544183 -g1,9241:13698849,6544183 -g1,9241:13698849,6544183 -g1,9241:13698849,6544183 -g1,9241:13698849,6544183 -(1,9241:13698849,6544183:0,0,0 -(1,9241:13698849,6544183:4121582,373362,104590 -(1,9241:13698849,6544183:4121582,373362,104590 -(1,9241:13698849,6544183:0,373362,104590 -r1,9279:17820431,6544183:4121582,477952,104590 -k1,9241:13698849,6544183:-4121582 -) -(1,9241:13698849,6544183:4121582,373362,104590 -g1,9241:17184073,6544183 -h1,9241:17817154,6544183:0,370085,101313 -) -) -g1,9241:17820431,6544183 -) -) -g1,9241:13698849,6544183 -g1,9241:13698849,6544183 -) -) -g1,9241:13698849,6544183 -g1,9242:13698849,6544183 -(1,9242:13698849,6544183:0,0,0 -(1,9242:13698849,6544183:0,0,0 -g1,9242:13698849,6544183 -g1,9242:13698849,6544183 -g1,9242:13698849,6544183 -g1,9242:13698849,6544183 -g1,9242:13698849,6544183 -(1,9242:13698849,6544183:0,0,0 -(1,9242:13698849,6544183:589824,56623,0 -(1,9242:13698849,6544183:589824,56623,0 +k1,8606:62087500,1915420:25935872 +g1,8606:62087500,1915420 ) -g1,9242:14288673,6544183 -) -) -g1,9242:13698849,6544183 -g1,9242:13698849,6544183 -) -) -g1,9242:13698849,6544183 -g1,9243:13698849,6544183 -g1,9243:13698849,6544183 -g1,9243:13698849,6544183 -g1,9243:13698849,6544183 -g1,9244:13698849,6544183 -g1,9244:13698849,6544183 -(1,9244:13698849,6544183:0,0,0 -(1,9244:13698849,6544183:0,0,0 -g1,9244:13698849,6544183 -g1,9244:13698849,6544183 -g1,9244:13698849,6544183 -g1,9244:13698849,6544183 -g1,9244:13698849,6544183 -(1,9244:13698849,6544183:0,0,0 -(1,9244:13698849,6544183:2855420,408008,104590 -(1,9244:13698849,6544183:2855420,408008,104590 -(1,9244:13698849,6544183:0,408008,104590 -r1,9279:16554269,6544183:2855420,512598,104590 -k1,9244:13698849,6544183:-2855420 +] ) -(1,9244:13698849,6544183:2855420,408008,104590 -g1,9244:15917911,6544183 -h1,9244:16550992,6544183:0,370085,101313 -) -) -g1,9244:16554269,6544183 -) -) -g1,9244:13698849,6544183 -g1,9244:13698849,6544183 -) -) -g1,9244:13698849,6544183 -g1,9245:13698849,6544183 -g1,9245:13698849,6544183 -(1,9245:13698849,6544183:0,0,0 -(1,9245:13698849,6544183:0,0,0 -g1,9245:13698849,6544183 -g1,9245:13698849,6544183 -g1,9245:13698849,6544183 -g1,9245:13698849,6544183 -g1,9245:13698849,6544183 -(1,9245:13698849,6544183:0,0,0 -(1,9245:13698849,6544183:2855420,408008,104590 -(1,9245:13698849,6544183:2855420,408008,104590 -(1,9245:13698849,6544183:0,408008,104590 -r1,9279:16554269,6544183:2855420,512598,104590 -k1,9245:13698849,6544183:-2855420 -) -(1,9245:13698849,6544183:2855420,408008,104590 -g1,9245:15917911,6544183 -h1,9245:16550992,6544183:0,370085,101313 -) -) -g1,9245:16554269,6544183 -) -) -g1,9245:13698849,6544183 -g1,9245:13698849,6544183 -) -) -g1,9245:13698849,6544183 -g1,9246:13698849,6544183 -g1,9246:13698849,6544183 -(1,9246:13698849,6544183:0,0,0 -(1,9246:13698849,6544183:0,0,0 -g1,9246:13698849,6544183 -g1,9246:13698849,6544183 -g1,9246:13698849,6544183 -g1,9246:13698849,6544183 -g1,9246:13698849,6544183 -(1,9246:13698849,6544183:0,0,0 -(1,9246:13698849,6544183:2855420,408008,104590 -(1,9246:13698849,6544183:2855420,408008,104590 -(1,9246:13698849,6544183:0,408008,104590 -r1,9279:16554269,6544183:2855420,512598,104590 -k1,9246:13698849,6544183:-2855420 -) -(1,9246:13698849,6544183:2855420,408008,104590 -g1,9246:15917911,6544183 -h1,9246:16550992,6544183:0,370085,101313 -) -) -g1,9246:16554269,6544183 -) -) -g1,9246:13698849,6544183 -g1,9246:13698849,6544183 -) -) -g1,9246:13698849,6544183 -g1,9247:13698849,6544183 -g1,9247:13698849,6544183 -(1,9247:13698849,6544183:0,0,0 -(1,9247:13698849,6544183:0,0,0 -g1,9247:13698849,6544183 -g1,9247:13698849,6544183 -g1,9247:13698849,6544183 -g1,9247:13698849,6544183 -g1,9247:13698849,6544183 -(1,9247:13698849,6544183:0,0,0 -(1,9247:13698849,6544183:2855420,414307,104590 -(1,9247:13698849,6544183:2855420,414307,104590 -(1,9247:13698849,6544183:0,414307,104590 -r1,9279:16554269,6544183:2855420,518897,104590 -k1,9247:13698849,6544183:-2855420 -) -(1,9247:13698849,6544183:2855420,414307,104590 -k1,9247:13698849,6544183:3277 -h1,9247:16550992,6544183:0,370085,101313 -) -) -g1,9247:16554269,6544183 -) -) -g1,9247:13698849,6544183 -g1,9247:13698849,6544183 -) -) -g1,9247:13698849,6544183 -g1,9248:13698849,6544183 -g1,9248:13698849,6544183 -g1,9248:13698849,6544183 -g1,9248:13698849,6544183 -g1,9248:13698849,6544183 -g1,9249:13698849,6544183 -g1,9249:13698849,6544183 -g1,9249:13698849,6544183 -g1,9249:13698849,6544183 -g1,9249:13698849,6544183 -g1,9250:13698849,6544183 -g1,9250:13698849,6544183 -g1,9250:13698849,6544183 -g1,9250:13698849,6544183 -g1,9250:13698849,6544183 -g1,9251:13698849,6544183 -g1,9251:13698849,6544183 -g1,9251:13698849,6544183 -g1,9251:13698849,6544183 -g1,9251:13698849,6544183 -g1,9252:13698849,6544183 -g1,9252:13698849,6544183 -g1,9252:13698849,6544183 -g1,9252:13698849,6544183 -g1,9252:13698849,6544183 -g1,9252:13698849,6544183 -g1,9253:13698849,6544183 -g1,9253:13698849,6544183 -) -g1,9253:13698849,6544183 -) -) -g1,9255:29002323,27814622 -k1,9255:32583029,27814622:3580706 -) -(1,9258:6630773,29049325:25952256,505283,126483 -h1,9257:6630773,29049325:983040,0,0 -k1,9257:9018803,29049325:208303 -(1,9257:9018803,29049325:0,459977,115847 -r1,9279:12190764,29049325:3171961,575824,115847 -k1,9257:9018803,29049325:-3171961 -) -(1,9257:9018803,29049325:3171961,459977,115847 -g1,9257:10077216,29049325 -g1,9257:10780640,29049325 -h1,9257:12187487,29049325:0,411205,112570 -) -k1,9257:12399067,29049325:208303 -k1,9257:15631201,29049325:208303 -k1,9257:18696218,29049325:208303 -k1,9257:20076959,29049325:208302 -k1,9257:24002464,29049325:208303 -k1,9257:26740457,29049325:208303 -k1,9257:27967845,29049325:208303 -(1,9257:27967845,29049325:0,452978,115847 -r1,9279:31843229,29049325:3875384,568825,115847 -k1,9257:27967845,29049325:-3875384 -) -(1,9257:27967845,29049325:3875384,452978,115847 -k1,9257:27967845,29049325:3277 -h1,9257:31839952,29049325:0,411205,112570 -) -k1,9257:32051532,29049325:208303 -k1,9258:32583029,29049325:0 -) -(1,9258:6630773,29890813:25952256,505283,126483 -(1,9257:6630773,29890813:0,452978,122846 -r1,9279:9099310,29890813:2468537,575824,122846 -k1,9257:6630773,29890813:-2468537 -) -(1,9257:6630773,29890813:2468537,452978,122846 -k1,9257:6630773,29890813:3277 -h1,9257:9096033,29890813:0,411205,112570 -) -k1,9257:9467798,29890813:194818 -k1,9257:11056567,29890813:194818 -k1,9257:12626985,29890813:194817 -k1,9257:13994242,29890813:194818 -k1,9257:16819020,29890813:194818 -k1,9257:19198153,29890813:194818 -k1,9257:20020806,29890813:194818 -k1,9257:22278697,29890813:194818 -k1,9257:23492599,29890813:194817 -(1,9257:23492599,29890813:0,452978,115847 -r1,9279:26312848,29890813:2820249,568825,115847 -k1,9257:23492599,29890813:-2820249 -) -(1,9257:23492599,29890813:2820249,452978,115847 -k1,9257:23492599,29890813:3277 -h1,9257:26309571,29890813:0,411205,112570 -) -k1,9257:26507666,29890813:194818 -k1,9257:29726315,29890813:194818 -k1,9257:32583029,29890813:0 -) -(1,9258:6630773,30732301:25952256,505283,126483 -k1,9257:8752120,30732301:148713 -k1,9257:11982992,30732301:148714 -k1,9257:15848907,30732301:148713 -k1,9257:16683783,30732301:148714 -k1,9257:17851581,30732301:148713 -(1,9257:17851581,30732301:0,452978,115847 -r1,9279:21726965,30732301:3875384,568825,115847 -k1,9257:17851581,30732301:-3875384 -) -(1,9257:17851581,30732301:3875384,452978,115847 -k1,9257:17851581,30732301:3277 -h1,9257:21723688,30732301:0,411205,112570 -) -k1,9257:21875679,30732301:148714 -k1,9257:23128674,30732301:148713 -k1,9257:24025154,30732301:148714 -k1,9257:26029847,30732301:148713 -k1,9257:26949264,30732301:148714 -(1,9257:26949264,30732301:0,452978,122846 -r1,9279:29417801,30732301:2468537,575824,122846 -k1,9257:26949264,30732301:-2468537 -) -(1,9257:26949264,30732301:2468537,452978,122846 -k1,9257:26949264,30732301:3277 -h1,9257:29414524,30732301:0,411205,112570 -) -k1,9257:29566514,30732301:148713 -k1,9257:31395570,30732301:148713 -k1,9257:32227169,30732301:148714 -k1,9258:32583029,30732301:0 -) -(1,9258:6630773,31573789:25952256,513147,134348 -(1,9257:6630773,31573789:0,452978,115847 -r1,9279:9802733,31573789:3171960,568825,115847 -k1,9257:6630773,31573789:-3171960 -) -(1,9257:6630773,31573789:3171960,452978,115847 -k1,9257:6630773,31573789:3277 -h1,9257:9799456,31573789:0,411205,112570 -) -k1,9257:9956443,31573789:153710 -k1,9257:11964167,31573789:153710 -k1,9257:12745712,31573789:153710 -k1,9257:15436976,31573789:153710 -k1,9257:18571263,31573789:153710 -k1,9257:20375171,31573789:153711 -k1,9257:21971328,31573789:153710 -k1,9257:22480898,31573789:153710 -k1,9257:25125631,31573789:153710 -k1,9257:25938633,31573789:153710 -k1,9257:29809545,31573789:153710 -k1,9257:32583029,31573789:0 -) -(1,9258:6630773,32415277:25952256,505283,134348 -k1,9257:11116392,32415277:215293 -k1,9257:11801578,32415277:215293 -k1,9257:12548368,32415277:215293 -k1,9257:14347665,32415277:215292 -k1,9257:16063732,32415277:215293 -k1,9257:17345296,32415277:215293 -k1,9257:18212017,32415277:215293 -k1,9257:19519795,32415277:215293 -(1,9257:19519795,32415277:0,452978,115847 -r1,9279:22340044,32415277:2820249,568825,115847 -k1,9257:19519795,32415277:-2820249 -) -(1,9257:19519795,32415277:2820249,452978,115847 -k1,9257:19519795,32415277:3277 -h1,9257:22336767,32415277:0,411205,112570 -) -k1,9257:22555337,32415277:215293 -k1,9257:24468667,32415277:215292 -k1,9257:25703045,32415277:215293 -k1,9257:29111252,32415277:215293 -k1,9257:30822732,32415277:215293 -k1,9258:32583029,32415277:0 -) -(1,9258:6630773,33256765:25952256,505283,126483 -k1,9257:8791946,33256765:191816 -k1,9257:9975323,33256765:191817 -k1,9257:13027130,33256765:191816 -(1,9257:13027130,33256765:0,452978,115847 -r1,9279:15847379,33256765:2820249,568825,115847 -k1,9257:13027130,33256765:-2820249 -) -(1,9257:13027130,33256765:2820249,452978,115847 -k1,9257:13027130,33256765:3277 -h1,9257:15844102,33256765:0,411205,112570 -) -k1,9257:16039196,33256765:191817 -k1,9257:16762509,33256765:191816 -k1,9257:19122257,33256765:191817 -k1,9257:19669933,33256765:191816 -k1,9257:23768350,33256765:191816 -k1,9257:24646329,33256765:191817 -k1,9257:25296242,33256765:191816 -k1,9257:27500014,33256765:191817 -k1,9257:28436974,33256765:191816 -k1,9257:29280219,33256765:191817 -k1,9257:31086842,33256765:191816 -k1,9257:32583029,33256765:0 -) -(1,9258:6630773,34098253:25952256,505283,134348 -k1,9257:8123970,34098253:208691 -k1,9257:8864158,34098253:208691 -k1,9257:10723046,34098253:208691 -k1,9257:13287101,34098253:208691 -k1,9257:14938238,34098253:208690 -k1,9257:16844967,34098253:208691 -k1,9257:18789051,34098253:208691 -k1,9257:20749519,34098253:208691 -k1,9257:25190525,34098253:208691 -(1,9257:25190525,34098253:0,459977,115847 -r1,9279:32583029,34098253:7392504,575824,115847 -k1,9257:25190525,34098253:-7392504 -) -(1,9257:25190525,34098253:7392504,459977,115847 -g1,9257:26248938,34098253 -g1,9257:26952362,34098253 -g1,9257:28710921,34098253 -g1,9257:29766057,34098253 -g1,9257:30469481,34098253 -g1,9257:32228040,34098253 -h1,9257:32579752,34098253:0,411205,112570 -) -k1,9257:32583029,34098253:0 -) -(1,9258:6630773,34939741:25952256,426639,7863 -k1,9258:32583028,34939741:22424452 -g1,9258:32583028,34939741 -) -(1,9260:6630773,35781229:25952256,513147,126483 -h1,9259:6630773,35781229:983040,0,0 -k1,9259:8454172,35781229:212524 -k1,9259:9685781,35781229:212524 -k1,9259:11204438,35781229:212524 -k1,9259:14078378,35781229:212523 -k1,9259:15159254,35781229:212524 -k1,9259:16464263,35781229:212524 -k1,9259:19651466,35781229:212524 -k1,9259:22952046,35781229:212524 -k1,9259:24975985,35781229:212524 -k1,9259:25804547,35781229:212524 -k1,9259:26372930,35781229:212523 -k1,9259:29096794,35781229:212524 -k1,9259:29995480,35781229:212524 -k1,9259:31227089,35781229:212524 -k1,9260:32583029,35781229:0 -) -(1,9260:6630773,36622717:25952256,513147,134348 -k1,9259:8953415,36622717:259569 -k1,9259:10606935,36622717:259569 -k1,9259:11885590,36622717:259570 -k1,9259:13293350,36622717:259569 -k1,9259:16739279,36622717:259569 -k1,9259:18392799,36622717:259569 -k1,9259:19461739,36622717:259570 -k1,9259:20708280,36622717:259569 -k1,9259:22705864,36622717:259569 -k1,9259:23984518,36622717:259569 -k1,9259:26509667,36622717:259569 -k1,9259:28282463,36622717:259570 -k1,9259:29489683,36622717:259569 -k1,9259:30881059,36622717:259569 -k1,9259:32583029,36622717:0 -) -(1,9260:6630773,37464205:25952256,513147,134348 -k1,9259:9801739,37464205:196287 -k1,9259:11678370,37464205:196288 -k1,9259:14079944,37464205:196287 -k1,9259:14962393,37464205:196287 -k1,9259:16464814,37464205:196288 -k1,9259:19733429,37464205:196287 -k1,9259:20581144,37464205:196287 -(1,9259:20581144,37464205:0,452978,115847 -r1,9279:23401393,37464205:2820249,568825,115847 -k1,9259:20581144,37464205:-2820249 -) -(1,9259:20581144,37464205:2820249,452978,115847 -k1,9259:20581144,37464205:3277 -h1,9259:23398116,37464205:0,411205,112570 -) -k1,9259:23771350,37464205:196287 -k1,9259:26306618,37464205:196288 -k1,9259:27162197,37464205:196287 -k1,9259:28377569,37464205:196287 -k1,9259:30311872,37464205:196288 -k1,9259:31167451,37464205:196287 -k1,9260:32583029,37464205:0 -) -(1,9260:6630773,38305693:25952256,505283,134348 -k1,9259:8241468,38305693:301941 -(1,9259:8241468,38305693:0,452978,122846 -r1,9279:11413428,38305693:3171960,575824,122846 -k1,9259:8241468,38305693:-3171960 -) -(1,9259:8241468,38305693:3171960,452978,122846 -k1,9259:8241468,38305693:3277 -h1,9259:11410151,38305693:0,411205,112570 -) -k1,9259:11889038,38305693:301940 -k1,9259:13059331,38305693:301941 -k1,9259:15130089,38305693:301941 -k1,9259:16907244,38305693:301940 -k1,9259:18722411,38305693:301941 -k1,9259:19380211,38305693:301940 -k1,9259:22368473,38305693:301941 -k1,9259:26110399,38305693:301941 -k1,9259:29413233,38305693:301940 -k1,9259:30071034,38305693:301941 -k1,9260:32583029,38305693:0 -) -(1,9260:6630773,39147181:25952256,513147,134348 -(1,9259:6630773,39147181:0,452978,115847 -r1,9279:9802733,39147181:3171960,568825,115847 -k1,9259:6630773,39147181:-3171960 -) -(1,9259:6630773,39147181:3171960,452978,115847 -k1,9259:6630773,39147181:3277 -h1,9259:9799456,39147181:0,411205,112570 -) -g1,9259:10001962,39147181 -g1,9259:11881534,39147181 -g1,9259:12740055,39147181 -g1,9259:14952550,39147181 -k1,9260:32583029,39147181:16300098 -g1,9260:32583029,39147181 -) -v1,9262:6630773,40127931:0,393216,0 -(1,9276:6630773,45510161:25952256,5775446,196608 -g1,9276:6630773,45510161 -g1,9276:6630773,45510161 -g1,9276:6434165,45510161 -(1,9276:6434165,45510161:0,5775446,196608 -r1,9279:32779637,45510161:26345472,5972054,196608 -k1,9276:6434165,45510161:-26345472 -) -(1,9276:6434165,45510161:26345472,5775446,196608 -[1,9276:6630773,45510161:25952256,5578838,0 -(1,9264:6630773,40335549:25952256,404226,107478 -(1,9263:6630773,40335549:0,0,0 -g1,9263:6630773,40335549 -g1,9263:6630773,40335549 -g1,9263:6303093,40335549 -(1,9263:6303093,40335549:0,0,0 -) -g1,9263:6630773,40335549 -) -g1,9264:9792230,40335549 -g1,9264:10740668,40335549 -h1,9264:12321396,40335549:0,0,0 -k1,9264:32583028,40335549:20261632 -g1,9264:32583028,40335549 -) -(1,9265:6630773,41001727:25952256,404226,107478 -h1,9265:6630773,41001727:0,0,0 -g1,9265:7263065,41001727 -g1,9265:8211503,41001727 -k1,9265:8211503,41001727:0 -h1,9265:13585980,41001727:0,0,0 -k1,9265:32583028,41001727:18997048 -g1,9265:32583028,41001727 -) -(1,9266:6630773,41667905:25952256,388497,82312 -h1,9266:6630773,41667905:0,0,0 -g1,9266:6946919,41667905 -g1,9266:7263065,41667905 -g1,9266:7579211,41667905 -g1,9266:7895357,41667905 -g1,9266:8211503,41667905 -g1,9266:8527649,41667905 -g1,9266:8843795,41667905 -g1,9266:9159941,41667905 -g1,9266:9476087,41667905 -g1,9266:9792233,41667905 -g1,9266:10108379,41667905 -g1,9266:10424525,41667905 -g1,9266:11689108,41667905 -g1,9266:12321400,41667905 -k1,9266:12321400,41667905:0 -h1,9266:12953692,41667905:0,0,0 -k1,9266:32583028,41667905:19629336 -g1,9266:32583028,41667905 -) -(1,9267:6630773,42334083:25952256,404226,82312 -h1,9267:6630773,42334083:0,0,0 -g1,9267:6946919,42334083 -g1,9267:7263065,42334083 -g1,9267:7579211,42334083 -g1,9267:7895357,42334083 -g1,9267:8211503,42334083 -g1,9267:8527649,42334083 -g1,9267:8843795,42334083 -g1,9267:9159941,42334083 -g1,9267:9476087,42334083 -g1,9267:9792233,42334083 -g1,9267:10108379,42334083 -g1,9267:10424525,42334083 -g1,9267:11689108,42334083 -g1,9267:12321400,42334083 -g1,9267:12953692,42334083 -g1,9267:13585984,42334083 -k1,9267:13585984,42334083:0 -h1,9267:14218276,42334083:0,0,0 -k1,9267:32583028,42334083:18364752 -g1,9267:32583028,42334083 -) -(1,9268:6630773,43000261:25952256,410518,82312 -h1,9268:6630773,43000261:0,0,0 -g1,9268:6946919,43000261 -g1,9268:7263065,43000261 -g1,9268:7579211,43000261 -g1,9268:7895357,43000261 -g1,9268:8211503,43000261 -g1,9268:8527649,43000261 -g1,9268:8843795,43000261 -g1,9268:9159941,43000261 -g1,9268:9476087,43000261 -g1,9268:9792233,43000261 -g1,9268:10108379,43000261 -g1,9268:10424525,43000261 -g1,9268:12005254,43000261 -g1,9268:12637546,43000261 -g1,9268:13269838,43000261 -g1,9268:13902130,43000261 -k1,9268:13902130,43000261:0 -h1,9268:14534422,43000261:0,0,0 -k1,9268:32583030,43000261:18048608 -g1,9268:32583030,43000261 -) -(1,9269:6630773,43666439:25952256,388497,9436 -h1,9269:6630773,43666439:0,0,0 -g1,9269:6946919,43666439 -g1,9269:7263065,43666439 -g1,9269:7579211,43666439 -g1,9269:7895357,43666439 -g1,9269:8211503,43666439 -g1,9269:8527649,43666439 -g1,9269:8843795,43666439 -g1,9269:9159941,43666439 -g1,9269:9476087,43666439 -g1,9269:9792233,43666439 -g1,9269:10108379,43666439 -g1,9269:10424525,43666439 -h1,9269:10740671,43666439:0,0,0 -k1,9269:32583029,43666439:21842358 -g1,9269:32583029,43666439 -) -(1,9270:6630773,44332617:25952256,404226,76021 -h1,9270:6630773,44332617:0,0,0 -h1,9270:6946919,44332617:0,0,0 -k1,9270:32583029,44332617:25636110 -g1,9270:32583029,44332617 -) -(1,9271:6630773,44998795:25952256,404226,6290 -h1,9271:6630773,44998795:0,0,0 -h1,9271:6946919,44998795:0,0,0 -k1,9271:32583029,44998795:25636110 -g1,9271:32583029,44998795 -) -(1,9275:6630773,45434140:25952256,404226,76021 -(1,9273:6630773,45434140:0,0,0 -g1,9273:6630773,45434140 -g1,9273:6630773,45434140 -g1,9273:6303093,45434140 -(1,9273:6303093,45434140:0,0,0 -) -g1,9273:6630773,45434140 -) -g1,9275:7579210,45434140 -g1,9275:8843793,45434140 -h1,9275:9792230,45434140:0,0,0 -k1,9275:32583030,45434140:22790800 -g1,9275:32583030,45434140 -) -] -) -g1,9276:32583029,45510161 -g1,9276:6630773,45510161 -g1,9276:6630773,45510161 -g1,9276:32583029,45510161 -g1,9276:32583029,45510161 -) -h1,9276:6630773,45706769:0,0,0 -] -(1,9279:32583029,45706769:0,0,0 -g1,9279:32583029,45706769 -) -) -] -(1,9279:6630773,47279633:25952256,0,0 -h1,9279:6630773,47279633:25952256,0,0 -) -] -(1,9279:4262630,4025873:0,0,0 -[1,9279:-473656,4025873:0,0,0 -(1,9279:-473656,-710413:0,0,0 -(1,9279:-473656,-710413:0,0,0 -g1,9279:-473656,-710413 -) -g1,9279:-473656,-710413 -) -] -) -] -!25435 -}156 -Input:1290:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1291:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1292:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1293:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1294:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1295:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1296:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1297:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1298:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1299:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1300:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1301:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1302:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1303:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1304:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1305:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1516 -{157 -[1,9355:4262630,47279633:28320399,43253760,0 -(1,9355:4262630,4025873:0,0,0 -[1,9355:-473656,4025873:0,0,0 -(1,9355:-473656,-710413:0,0,0 -(1,9355:-473656,-644877:0,0,0 -k1,9355:-473656,-644877:-65536 +g1,8606:36675916,2439708 +(1,8606:36675916,2439708:1179648,16384,0 +r1,8606:37855564,2439708:1179648,16384,0 ) -(1,9355:-473656,4736287:0,0,0 -k1,9355:-473656,4736287:5209943 ) -g1,9355:-473656,-710413 +k1,8606:3078556,2439708:-34777008 ) ] +[1,8606:3078558,4812305:0,0,0 +(1,8606:3078558,49800853:0,16384,2228224 +k1,8606:1358238,49800853:-1720320 +(1,8606:1358238,49800853:1720320,16384,2228224 +(1,8606:1358238,49800853:1179648,16384,0 +r1,8606:2537886,49800853:1179648,16384,0 ) -[1,9355:6630773,47279633:25952256,43253760,0 -[1,9355:6630773,4812305:25952256,786432,0 -(1,9355:6630773,4812305:25952256,505283,134348 -(1,9355:6630773,4812305:25952256,505283,134348 -g1,9355:3078558,4812305 -[1,9355:3078558,4812305:0,0,0 -(1,9355:3078558,2439708:0,1703936,0 -k1,9355:1358238,2439708:-1720320 -(1,8393:1358238,2439708:1720320,1703936,0 -(1,8393:1358238,2439708:1179648,16384,0 -r1,9355:2537886,2439708:1179648,16384,0 +g1,8606:3062174,49800853 +(1,8606:3062174,52029077:16384,1703936,0 +[1,8606:3062174,52029077:25952256,1703936,0 +(1,8606:3062174,51504789:25952256,1179648,0 +(1,8606:3062174,51504789:16384,1179648,0 +r1,8606:3078558,51504789:16384,1179648,0 ) -g1,8393:3062174,2439708 -(1,8393:3062174,2439708:16384,1703936,0 -[1,8393:3062174,2439708:25952256,1703936,0 -(1,8393:3062174,1915420:25952256,1179648,0 -(1,8393:3062174,1915420:16384,1179648,0 -r1,9355:3078558,1915420:16384,1179648,0 -) -k1,8393:29014430,1915420:25935872 -g1,8393:29014430,1915420 +k1,8606:29014430,51504789:25935872 +g1,8606:29014430,51504789 ) ] ) ) ) ] -[1,9355:3078558,4812305:0,0,0 -(1,9355:3078558,2439708:0,1703936,0 -g1,9355:29030814,2439708 -g1,9355:36135244,2439708 -(1,8393:36135244,2439708:1720320,1703936,0 -(1,8393:36135244,2439708:16384,1703936,0 -[1,8393:36135244,2439708:25952256,1703936,0 -(1,8393:36135244,1915420:25952256,1179648,0 -(1,8393:36135244,1915420:16384,1179648,0 -r1,9355:36151628,1915420:16384,1179648,0 +[1,8606:3078558,4812305:0,0,0 +(1,8606:3078558,49800853:0,16384,2228224 +g1,8606:29030814,49800853 +g1,8606:36135244,49800853 +(1,8606:36135244,49800853:1720320,16384,2228224 +(1,8606:36135244,52029077:16384,1703936,0 +[1,8606:36135244,52029077:25952256,1703936,0 +(1,8606:36135244,51504789:25952256,1179648,0 +(1,8606:36135244,51504789:16384,1179648,0 +r1,8606:36151628,51504789:16384,1179648,0 ) -k1,8393:62087500,1915420:25935872 -g1,8393:62087500,1915420 +k1,8606:62087500,51504789:25935872 +g1,8606:62087500,51504789 ) ] ) -g1,8393:36675916,2439708 -(1,8393:36675916,2439708:1179648,16384,0 -r1,9355:37855564,2439708:1179648,16384,0 +g1,8606:36675916,49800853 +(1,8606:36675916,49800853:1179648,16384,0 +r1,8606:37855564,49800853:1179648,16384,0 ) ) -k1,9355:3078556,2439708:-34777008 +k1,8606:3078556,49800853:-34777008 ) ] -[1,9355:3078558,4812305:0,0,0 -(1,9355:3078558,49800853:0,16384,2228224 -k1,9355:1358238,49800853:-1720320 -(1,8393:1358238,49800853:1720320,16384,2228224 -(1,8393:1358238,49800853:1179648,16384,0 -r1,9355:2537886,49800853:1179648,16384,0 -) -g1,8393:3062174,49800853 -(1,8393:3062174,52029077:16384,1703936,0 -[1,8393:3062174,52029077:25952256,1703936,0 -(1,8393:3062174,51504789:25952256,1179648,0 -(1,8393:3062174,51504789:16384,1179648,0 -r1,9355:3078558,51504789:16384,1179648,0 +g1,8606:6630773,4812305 ) -k1,8393:29014430,51504789:25935872 -g1,8393:29014430,51504789 ) ] +[1,8606:6630773,45706769:0,40108032,0 +(1,8606:6630773,45706769:0,40108032,0 +(1,8606:6630773,45706769:0,0,0 +g1,8606:6630773,45706769 ) +[1,8606:6630773,45706769:0,40108032,0 +h1,8606:6630773,6254097:0,0,0 +] +(1,8606:6630773,45706769:0,0,0 +g1,8606:6630773,45706769 ) ) ] -[1,9355:3078558,4812305:0,0,0 -(1,9355:3078558,49800853:0,16384,2228224 -g1,9355:29030814,49800853 -g1,9355:36135244,49800853 -(1,8393:36135244,49800853:1720320,16384,2228224 -(1,8393:36135244,52029077:16384,1703936,0 -[1,8393:36135244,52029077:25952256,1703936,0 -(1,8393:36135244,51504789:25952256,1179648,0 -(1,8393:36135244,51504789:16384,1179648,0 -r1,9355:36151628,51504789:16384,1179648,0 -) -k1,8393:62087500,51504789:25935872 -g1,8393:62087500,51504789 -) -] -) -g1,8393:36675916,49800853 -(1,8393:36675916,49800853:1179648,16384,0 -r1,9355:37855564,49800853:1179648,16384,0 -) -) -k1,9355:3078556,49800853:-34777008 -) -] -g1,9355:6630773,4812305 -k1,9355:21643106,4812305:13816956 -g1,9355:23265777,4812305 -g1,9355:24088253,4812305 -g1,9355:28572226,4812305 -g1,9355:29981905,4812305 -) -) -] -[1,9355:6630773,45706769:25952256,40108032,0 -(1,9355:6630773,45706769:25952256,40108032,0 -(1,9355:6630773,45706769:0,0,0 -g1,9355:6630773,45706769 -) -[1,9355:6630773,45706769:25952256,40108032,0 -(1,9280:6630773,6254097:25952256,505283,126483 -h1,9279:6630773,6254097:983040,0,0 -g1,9279:10427929,6254097 -g1,9279:13659509,6254097 -g1,9279:15869383,6254097 -g1,9279:17172894,6254097 -g1,9279:19108827,6254097 -g1,9279:20327141,6254097 -g1,9279:22179843,6254097 -k1,9280:32583029,6254097:7043155 -g1,9280:32583029,6254097 -) -v1,9282:6630773,7364347:0,393216,0 -(1,9296:6630773,12977410:25952256,6006279,196608 -g1,9296:6630773,12977410 -g1,9296:6630773,12977410 -g1,9296:6434165,12977410 -(1,9296:6434165,12977410:0,6006279,196608 -r1,9355:32779637,12977410:26345472,6202887,196608 -k1,9296:6434165,12977410:-26345472 -) -(1,9296:6434165,12977410:26345472,6006279,196608 -[1,9296:6630773,12977410:25952256,5809671,0 -(1,9284:6630773,7571965:25952256,404226,107478 -(1,9283:6630773,7571965:0,0,0 -g1,9283:6630773,7571965 -g1,9283:6630773,7571965 -g1,9283:6303093,7571965 -(1,9283:6303093,7571965:0,0,0 -) -g1,9283:6630773,7571965 -) -g1,9284:9792230,7571965 -g1,9284:10740668,7571965 -h1,9284:12321396,7571965:0,0,0 -k1,9284:32583028,7571965:20261632 -g1,9284:32583028,7571965 -) -(1,9285:6630773,8238143:25952256,404226,107478 -h1,9285:6630773,8238143:0,0,0 -g1,9285:7263065,8238143 -g1,9285:8211503,8238143 -k1,9285:8211503,8238143:0 -h1,9285:13585980,8238143:0,0,0 -k1,9285:32583028,8238143:18997048 -g1,9285:32583028,8238143 -) -(1,9286:6630773,8904321:25952256,388497,82312 -h1,9286:6630773,8904321:0,0,0 -g1,9286:6946919,8904321 -g1,9286:7263065,8904321 -g1,9286:7579211,8904321 -g1,9286:7895357,8904321 -g1,9286:8211503,8904321 -g1,9286:8527649,8904321 -g1,9286:8843795,8904321 -g1,9286:9159941,8904321 -g1,9286:9476087,8904321 -g1,9286:9792233,8904321 -g1,9286:10108379,8904321 -g1,9286:10424525,8904321 -g1,9286:11689108,8904321 -g1,9286:12637546,8904321 -g1,9286:13902129,8904321 -g1,9286:14534421,8904321 -k1,9286:14534421,8904321:0 -h1,9286:15166713,8904321:0,0,0 -k1,9286:32583029,8904321:17416316 -g1,9286:32583029,8904321 -) -(1,9287:6630773,9570499:25952256,404226,82312 -h1,9287:6630773,9570499:0,0,0 -g1,9287:6946919,9570499 -g1,9287:7263065,9570499 -g1,9287:7579211,9570499 -g1,9287:7895357,9570499 -g1,9287:8211503,9570499 -g1,9287:8527649,9570499 -g1,9287:8843795,9570499 -g1,9287:9159941,9570499 -g1,9287:9476087,9570499 -g1,9287:9792233,9570499 -g1,9287:10108379,9570499 -g1,9287:10424525,9570499 -g1,9287:11689108,9570499 -g1,9287:12637546,9570499 -g1,9287:13902129,9570499 -g1,9287:14534421,9570499 -g1,9287:15166713,9570499 -g1,9287:15799005,9570499 -k1,9287:15799005,9570499:0 -h1,9287:16431297,9570499:0,0,0 -k1,9287:32583029,9570499:16151732 -g1,9287:32583029,9570499 -) -(1,9288:6630773,10236677:25952256,410518,82312 -h1,9288:6630773,10236677:0,0,0 -g1,9288:6946919,10236677 -g1,9288:7263065,10236677 -g1,9288:7579211,10236677 -g1,9288:7895357,10236677 -g1,9288:8211503,10236677 -g1,9288:8527649,10236677 -g1,9288:8843795,10236677 -g1,9288:9159941,10236677 -g1,9288:9476087,10236677 -g1,9288:9792233,10236677 -g1,9288:10108379,10236677 -g1,9288:10424525,10236677 -g1,9288:12005254,10236677 -g1,9288:12953692,10236677 -g1,9288:15166712,10236677 -g1,9288:15799004,10236677 -g1,9288:16431296,10236677 -g1,9288:17063588,10236677 -k1,9288:17063588,10236677:0 -h1,9288:17695880,10236677:0,0,0 -k1,9288:32583029,10236677:14887149 -g1,9288:32583029,10236677 -) -(1,9289:6630773,10902855:25952256,388497,9436 -h1,9289:6630773,10902855:0,0,0 -g1,9289:6946919,10902855 -g1,9289:7263065,10902855 -g1,9289:7579211,10902855 -g1,9289:7895357,10902855 -g1,9289:8211503,10902855 -g1,9289:8527649,10902855 -g1,9289:8843795,10902855 -g1,9289:9159941,10902855 -g1,9289:9476087,10902855 -g1,9289:9792233,10902855 -g1,9289:10108379,10902855 -g1,9289:10424525,10902855 -h1,9289:10740671,10902855:0,0,0 -k1,9289:32583029,10902855:21842358 -g1,9289:32583029,10902855 -) -(1,9290:6630773,11569033:25952256,404226,76021 -h1,9290:6630773,11569033:0,0,0 -h1,9290:6946919,11569033:0,0,0 -k1,9290:32583029,11569033:25636110 -g1,9290:32583029,11569033 -) -(1,9291:6630773,12235211:25952256,404226,6290 -h1,9291:6630773,12235211:0,0,0 -h1,9291:6946919,12235211:0,0,0 -k1,9291:32583029,12235211:25636110 -g1,9291:32583029,12235211 -) -(1,9295:6630773,12901389:25952256,404226,76021 -(1,9293:6630773,12901389:0,0,0 -g1,9293:6630773,12901389 -g1,9293:6630773,12901389 -g1,9293:6303093,12901389 -(1,9293:6303093,12901389:0,0,0 -) -g1,9293:6630773,12901389 -) -g1,9295:7579210,12901389 -g1,9295:8843793,12901389 -h1,9295:9792230,12901389:0,0,0 -k1,9295:32583030,12901389:22790800 -g1,9295:32583030,12901389 -) -] -) -g1,9296:32583029,12977410 -g1,9296:6630773,12977410 -g1,9296:6630773,12977410 -g1,9296:32583029,12977410 -g1,9296:32583029,12977410 -) -h1,9296:6630773,13174018:0,0,0 -v1,9300:6630773,14903650:0,393216,0 -(1,9301:6630773,18828623:25952256,4318189,0 -g1,9301:6630773,18828623 -g1,9301:6303093,18828623 -r1,9355:6401397,18828623:98304,4318189,0 -g1,9301:6600626,18828623 -g1,9301:6797234,18828623 -[1,9301:6797234,18828623:25785795,4318189,0 -(1,9301:6797234,15336188:25785795,825754,196608 -(1,9300:6797234,15336188:0,825754,196608 -r1,9355:7890375,15336188:1093141,1022362,196608 -k1,9300:6797234,15336188:-1093141 -) -(1,9300:6797234,15336188:1093141,825754,196608 -) -k1,9300:8084815,15336188:194440 -k1,9300:9402744,15336188:327680 -k1,9300:10495027,15336188:194440 -k1,9300:12032300,15336188:194440 -k1,9300:13620692,15336188:194441 -k1,9300:14834217,15336188:194440 -k1,9300:16121142,15336188:194440 -k1,9300:16974874,15336188:194440 -k1,9300:18188399,15336188:194440 -k1,9300:20440669,15336188:194440 -k1,9300:23995141,15336188:194441 -k1,9300:25736231,15336188:194440 -k1,9300:26543433,15336188:194440 -k1,9300:27756958,15336188:194440 -k1,9300:32583029,15336188:0 -) -(1,9301:6797234,16177676:25785795,513147,134348 -k1,9300:7990121,16177676:245236 -(1,9300:7990121,16177676:0,452978,115847 -r1,9355:10810370,16177676:2820249,568825,115847 -k1,9300:7990121,16177676:-2820249 -) -(1,9300:7990121,16177676:2820249,452978,115847 -k1,9300:7990121,16177676:3277 -h1,9300:10807093,16177676:0,411205,112570 -) -k1,9300:11055606,16177676:245236 -k1,9300:13036234,16177676:245235 -(1,9300:13036234,16177676:0,452978,115847 -r1,9355:17263330,16177676:4227096,568825,115847 -k1,9300:13036234,16177676:-4227096 -) -(1,9300:13036234,16177676:4227096,452978,115847 -k1,9300:13036234,16177676:3277 -h1,9300:17260053,16177676:0,411205,112570 -) -k1,9300:17508566,16177676:245236 -k1,9300:18945247,16177676:245236 -k1,9300:20974373,16177676:245236 -k1,9300:22238693,16177676:245235 -k1,9300:25475648,16177676:245236 -k1,9300:26333646,16177676:245236 -k1,9300:27597967,16177676:245236 -k1,9300:29026127,16177676:245235 -k1,9300:29930655,16177676:245236 -k1,9300:31194976,16177676:245236 -k1,9300:32583029,16177676:0 -) -(1,9301:6797234,17019164:25785795,513147,134348 -k1,9300:8615575,17019164:146518 -k1,9300:11154157,17019164:146518 -k1,9300:12849292,17019164:146519 -k1,9300:15700481,17019164:146518 -k1,9300:16312960,17019164:146518 -k1,9300:17629951,17019164:146518 -k1,9300:18711013,17019164:146519 -(1,9300:18711013,17019164:0,452978,122846 -r1,9355:25048380,17019164:6337367,575824,122846 -k1,9300:18711013,17019164:-6337367 -) -(1,9300:18711013,17019164:6337367,452978,122846 -g1,9300:22231408,17019164 -g1,9300:23286544,17019164 -h1,9300:25045103,17019164:0,411205,112570 -) -k1,9300:25368568,17019164:146518 -(1,9300:25368568,17019164:0,452978,122846 -r1,9355:32409359,17019164:7040791,575824,122846 -k1,9300:25368568,17019164:-7040791 -) -(1,9300:25368568,17019164:7040791,452978,122846 -g1,9300:28888963,17019164 -g1,9300:29944099,17019164 -h1,9300:32406082,17019164:0,411205,112570 -) -k1,9301:32583029,17019164:0 -) -(1,9301:6797234,17860652:25785795,505283,122846 -(1,9300:6797234,17860652:0,452978,122846 -r1,9355:15948296,17860652:9151062,575824,122846 -k1,9300:6797234,17860652:-9151062 -) -(1,9300:6797234,17860652:9151062,452978,122846 -g1,9300:10317629,17860652 -g1,9300:11372765,17860652 -h1,9300:15945019,17860652:0,411205,112570 -) -k1,9300:16162217,17860652:213921 -k1,9300:17059023,17860652:213921 -(1,9300:17059023,17860652:0,452978,122846 -r1,9355:25506661,17860652:8447638,575824,122846 -k1,9300:17059023,17860652:-8447638 -) -(1,9300:17059023,17860652:8447638,452978,122846 -g1,9300:20579418,17860652 -g1,9300:21634554,17860652 -h1,9300:25503384,17860652:0,411205,112570 -) -k1,9300:25894252,17860652:213921 -k1,9300:27719703,17860652:213921 -k1,9300:30288333,17860652:213921 -k1,9300:31521339,17860652:213921 -(1,9300:31521339,17860652:0,435480,115847 -r1,9355:32583029,17860652:1061690,551327,115847 -k1,9300:31521339,17860652:-1061690 -) -(1,9300:31521339,17860652:1061690,435480,115847 -g1,9300:32228040,17860652 -h1,9300:32579752,17860652:0,411205,112570 -) -k1,9300:32583029,17860652:0 -) -(1,9301:6797234,18702140:25785795,513147,126483 -g1,9300:7682625,18702140 -g1,9300:10147434,18702140 -g1,9300:12200677,18702140 -g1,9300:13591351,18702140 -k1,9301:32583028,18702140:16801464 -g1,9301:32583028,18702140 -) -] -g1,9301:32583029,18828623 -) -h1,9301:6630773,18828623:0,0,0 -(1,9304:6630773,20114183:25952256,505283,126483 -h1,9303:6630773,20114183:983040,0,0 -k1,9303:9552648,20114183:155600 -k1,9303:10727333,20114183:155600 -k1,9303:14322918,20114183:155600 -k1,9303:15991744,20114183:155600 -k1,9303:16833506,20114183:155600 -k1,9303:17344966,20114183:155600 -k1,9303:20532916,20114183:155599 -k1,9303:23029462,20114183:155600 -k1,9303:23540922,20114183:155600 -k1,9303:25376865,20114183:155600 -k1,9303:26816971,20114183:155600 -k1,9303:27504068,20114183:155600 -k1,9303:28725939,20114183:155600 -k1,9303:29237399,20114183:155600 -(1,9303:29237399,20114183:0,452978,115847 -r1,9355:32409359,20114183:3171960,568825,115847 -k1,9303:29237399,20114183:-3171960 -) -(1,9303:29237399,20114183:3171960,452978,115847 -k1,9303:29237399,20114183:3277 -h1,9303:32406082,20114183:0,411205,112570 -) -k1,9303:32583029,20114183:0 -) -(1,9304:6630773,20955671:25952256,513147,126483 -k1,9303:7315637,20955671:226767 -k1,9303:8674867,20955671:226768 -k1,9303:9649400,20955671:226767 -k1,9303:13466229,20955671:226767 -k1,9303:14379158,20955671:226767 -k1,9303:15376629,20955671:226768 -(1,9303:15376629,20955671:0,452978,122846 -r1,9355:17845166,20955671:2468537,575824,122846 -k1,9303:15376629,20955671:-2468537 -) -(1,9303:15376629,20955671:2468537,452978,122846 -k1,9303:15376629,20955671:3277 -h1,9303:17841889,20955671:0,411205,112570 -) -k1,9303:18071933,20955671:226767 -k1,9303:20221526,20955671:226767 -k1,9303:21076128,20955671:226767 -k1,9303:22506137,20955671:226768 -k1,9303:24099985,20955671:226767 -k1,9303:25136122,20955671:226767 -k1,9303:27431205,20955671:226767 -k1,9303:28649533,20955671:226768 -k1,9303:30389526,20955671:226767 -k1,9303:31563944,20955671:226767 -k1,9303:32583029,20955671:0 -) -(1,9304:6630773,21797159:25952256,513147,126483 -g1,9303:8701055,21797159 -g1,9303:10091729,21797159 -g1,9303:11310043,21797159 -g1,9303:12657463,21797159 -g1,9303:14013402,21797159 -g1,9303:14744128,21797159 -g1,9303:17072622,21797159 -g1,9303:20861913,21797159 -g1,9303:21747304,21797159 -g1,9303:22965618,21797159 -k1,9304:32583029,21797159:7178161 -g1,9304:32583029,21797159 -) -v1,9306:6630773,22907409:0,393216,0 -(1,9320:6630773,28520472:25952256,6006279,196608 -g1,9320:6630773,28520472 -g1,9320:6630773,28520472 -g1,9320:6434165,28520472 -(1,9320:6434165,28520472:0,6006279,196608 -r1,9355:32779637,28520472:26345472,6202887,196608 -k1,9320:6434165,28520472:-26345472 -) -(1,9320:6434165,28520472:26345472,6006279,196608 -[1,9320:6630773,28520472:25952256,5809671,0 -(1,9308:6630773,23115027:25952256,404226,101187 -(1,9307:6630773,23115027:0,0,0 -g1,9307:6630773,23115027 -g1,9307:6630773,23115027 -g1,9307:6303093,23115027 -(1,9307:6303093,23115027:0,0,0 -) -g1,9307:6630773,23115027 -) -g1,9308:9792230,23115027 -g1,9308:10740668,23115027 -h1,9308:11056814,23115027:0,0,0 -k1,9308:32583030,23115027:21526216 -g1,9308:32583030,23115027 -) -(1,9309:6630773,23781205:25952256,404226,101187 -h1,9309:6630773,23781205:0,0,0 -g1,9309:7263065,23781205 -g1,9309:8211503,23781205 -k1,9309:8211503,23781205:0 -h1,9309:13585980,23781205:0,0,0 -k1,9309:32583028,23781205:18997048 -g1,9309:32583028,23781205 -) -(1,9310:6630773,24447383:25952256,388497,82312 -h1,9310:6630773,24447383:0,0,0 -g1,9310:6946919,24447383 -g1,9310:7263065,24447383 -g1,9310:7579211,24447383 -g1,9310:7895357,24447383 -g1,9310:8211503,24447383 -g1,9310:8527649,24447383 -g1,9310:8843795,24447383 -g1,9310:9159941,24447383 -g1,9310:9476087,24447383 -g1,9310:9792233,24447383 -g1,9310:10108379,24447383 -g1,9310:10424525,24447383 -k1,9310:10424525,24447383:0 -h1,9310:11056817,24447383:0,0,0 -k1,9310:32583029,24447383:21526212 -g1,9310:32583029,24447383 -) -(1,9311:6630773,25113561:25952256,404226,82312 -h1,9311:6630773,25113561:0,0,0 -g1,9311:6946919,25113561 -g1,9311:7263065,25113561 -g1,9311:7579211,25113561 -g1,9311:7895357,25113561 -g1,9311:8211503,25113561 -g1,9311:8527649,25113561 -g1,9311:8843795,25113561 -g1,9311:9159941,25113561 -g1,9311:9476087,25113561 -g1,9311:9792233,25113561 -g1,9311:10108379,25113561 -g1,9311:10424525,25113561 -g1,9311:11056817,25113561 -g1,9311:11689109,25113561 -k1,9311:11689109,25113561:0 -h1,9311:12321401,25113561:0,0,0 -k1,9311:32583029,25113561:20261628 -g1,9311:32583029,25113561 -) -(1,9312:6630773,25779739:25952256,404226,82312 -h1,9312:6630773,25779739:0,0,0 -g1,9312:6946919,25779739 -g1,9312:7263065,25779739 -g1,9312:7579211,25779739 -g1,9312:7895357,25779739 -g1,9312:8211503,25779739 -g1,9312:8527649,25779739 -g1,9312:8843795,25779739 -g1,9312:9159941,25779739 -g1,9312:9476087,25779739 -g1,9312:9792233,25779739 -g1,9312:10108379,25779739 -g1,9312:10424525,25779739 -g1,9312:11056817,25779739 -g1,9312:11689109,25779739 -k1,9312:11689109,25779739:0 -h1,9312:12321401,25779739:0,0,0 -k1,9312:32583029,25779739:20261628 -g1,9312:32583029,25779739 -) -(1,9313:6630773,26445917:25952256,388497,9436 -h1,9313:6630773,26445917:0,0,0 -g1,9313:6946919,26445917 -g1,9313:7263065,26445917 -g1,9313:7579211,26445917 -g1,9313:7895357,26445917 -g1,9313:8211503,26445917 -g1,9313:8527649,26445917 -g1,9313:8843795,26445917 -g1,9313:9159941,26445917 -g1,9313:9476087,26445917 -g1,9313:9792233,26445917 -g1,9313:10108379,26445917 -g1,9313:10424525,26445917 -h1,9313:10740671,26445917:0,0,0 -k1,9313:32583029,26445917:21842358 -g1,9313:32583029,26445917 -) -(1,9314:6630773,27112095:25952256,404226,76021 -h1,9314:6630773,27112095:0,0,0 -h1,9314:6946919,27112095:0,0,0 -k1,9314:32583029,27112095:25636110 -g1,9314:32583029,27112095 -) -(1,9315:6630773,27778273:25952256,404226,6290 -h1,9315:6630773,27778273:0,0,0 -h1,9315:6946919,27778273:0,0,0 -k1,9315:32583029,27778273:25636110 -g1,9315:32583029,27778273 -) -(1,9319:6630773,28444451:25952256,404226,76021 -(1,9317:6630773,28444451:0,0,0 -g1,9317:6630773,28444451 -g1,9317:6630773,28444451 -g1,9317:6303093,28444451 -(1,9317:6303093,28444451:0,0,0 -) -g1,9317:6630773,28444451 -) -g1,9319:7579210,28444451 -g1,9319:8843793,28444451 -h1,9319:9792230,28444451:0,0,0 -k1,9319:32583030,28444451:22790800 -g1,9319:32583030,28444451 -) -] -) -g1,9320:32583029,28520472 -g1,9320:6630773,28520472 -g1,9320:6630773,28520472 -g1,9320:32583029,28520472 -g1,9320:32583029,28520472 -) -h1,9320:6630773,28717080:0,0,0 -v1,9324:6630773,30446712:0,393216,0 -(1,9325:6630773,32688709:25952256,2635213,0 -g1,9325:6630773,32688709 -g1,9325:6303093,32688709 -r1,9355:6401397,32688709:98304,2635213,0 -g1,9325:6600626,32688709 -g1,9325:6797234,32688709 -[1,9325:6797234,32688709:25785795,2635213,0 -(1,9325:6797234,30879250:25785795,825754,196608 -(1,9324:6797234,30879250:0,825754,196608 -r1,9355:7890375,30879250:1093141,1022362,196608 -k1,9324:6797234,30879250:-1093141 -) -(1,9324:6797234,30879250:1093141,825754,196608 -) -k1,9324:8364331,30879250:473956 -k1,9324:10090549,30879250:327680 -k1,9324:13464474,30879250:473957 -k1,9324:16271512,30879250:473956 -k1,9324:18139419,30879250:473956 -k1,9324:19632461,30879250:473957 -k1,9324:21198902,30879250:473956 -k1,9324:22332150,30879250:473956 -k1,9324:23825192,30879250:473957 -k1,9324:26356978,30879250:473956 -k1,9324:30190965,30879250:473956 -k1,9324:32583029,30879250:0 -) -(1,9325:6797234,31720738:25785795,513147,126483 -k1,9324:8650390,31720738:304540 -k1,9324:11659602,31720738:304541 -k1,9324:12430103,31720738:304540 -k1,9324:13905116,31720738:304540 -k1,9324:15144199,31720738:304540 -(1,9324:15144199,31720738:0,452978,115847 -r1,9355:20426431,31720738:5282232,568825,115847 -k1,9324:15144199,31720738:-5282232 -) -(1,9324:15144199,31720738:5282232,452978,115847 -g1,9324:18664594,31720738 -g1,9324:19719730,31720738 -h1,9324:20423154,31720738:0,411205,112570 -) -k1,9324:20904642,31720738:304541 -(1,9324:20904642,31720738:0,452978,115847 -r1,9355:25835162,31720738:4930520,568825,115847 -k1,9324:20904642,31720738:-4930520 -) -(1,9324:20904642,31720738:4930520,452978,115847 -g1,9324:24425037,31720738 -g1,9324:25480173,31720738 -h1,9324:25831885,31720738:0,411205,112570 -) -k1,9324:26313372,31720738:304540 -(1,9324:26313372,31720738:0,452978,115847 -r1,9355:31595604,31720738:5282232,568825,115847 -k1,9324:26313372,31720738:-5282232 -) -(1,9324:26313372,31720738:5282232,452978,115847 -g1,9324:29833767,31720738 -g1,9324:30888903,31720738 -h1,9324:31592327,31720738:0,411205,112570 -) -k1,9324:31900144,31720738:304540 -k1,9325:32583029,31720738:0 -) -(1,9325:6797234,32562226:25785795,513147,126483 -(1,9324:6797234,32562226:0,452978,122846 -r1,9355:14541448,32562226:7744214,575824,122846 -k1,9324:6797234,32562226:-7744214 -) -(1,9324:6797234,32562226:7744214,452978,122846 -g1,9324:10317629,32562226 -g1,9324:11372765,32562226 -h1,9324:14538171,32562226:0,411205,112570 -) -g1,9324:14914347,32562226 -g1,9324:16725106,32562226 -g1,9324:19279044,32562226 -g1,9324:20497358,32562226 -(1,9324:20497358,32562226:0,435480,115847 -r1,9355:21559048,32562226:1061690,551327,115847 -k1,9324:20497358,32562226:-1061690 -) -(1,9324:20497358,32562226:1061690,435480,115847 -g1,9324:21204059,32562226 -h1,9324:21555771,32562226:0,411205,112570 -) -g1,9324:21758277,32562226 -g1,9324:22643668,32562226 -g1,9324:25108477,32562226 -g1,9324:27161720,32562226 -g1,9324:28552394,32562226 -k1,9325:32583029,32562226:1840422 -g1,9325:32583029,32562226 -) -] -g1,9325:32583029,32688709 -) -h1,9325:6630773,32688709:0,0,0 -v1,9328:6630773,33974269:0,393216,0 -(1,9352:6630773,45706769:25952256,12125716,0 -g1,9352:6630773,45706769 -g1,9352:6303093,45706769 -r1,9355:6401397,45706769:98304,12125716,0 -g1,9352:6600626,45706769 -g1,9352:6797234,45706769 -[1,9352:6797234,45706769:25785795,12125716,0 -(1,9329:6797234,34336342:25785795,755289,196608 -(1,9328:6797234,34336342:0,755289,196608 -r1,9355:8134168,34336342:1336934,951897,196608 -k1,9328:6797234,34336342:-1336934 -) -(1,9328:6797234,34336342:1336934,755289,196608 -) -k1,9328:8319163,34336342:184995 -k1,9328:8646843,34336342:327680 -k1,9328:10028525,34336342:184995 -k1,9328:13730182,34336342:184995 -k1,9328:14862828,34336342:184995 -k1,9328:16066908,34336342:184995 -k1,9328:19014246,34336342:184995 -k1,9328:21209887,34336342:184996 -k1,9328:22054174,34336342:184995 -k1,9328:23258254,34336342:184995 -k1,9328:26475600,34336342:184995 -k1,9328:27276633,34336342:184995 -k1,9328:27817488,34336342:184995 -(1,9328:27817488,34336342:0,452978,115847 -r1,9355:30637737,34336342:2820249,568825,115847 -k1,9328:27817488,34336342:-2820249 -) -(1,9328:27817488,34336342:2820249,452978,115847 -k1,9328:27817488,34336342:3277 -h1,9328:30634460,34336342:0,411205,112570 -) -k1,9328:30822732,34336342:184995 -k1,9329:32583029,34336342:0 -) -(1,9329:6797234,35177830:25785795,513147,126483 -k1,9328:8606382,35177830:170093 -k1,9328:9880757,35177830:170093 -k1,9328:10798616,35177830:170093 -k1,9328:14382479,35177830:170093 -k1,9328:18069234,35177830:170093 -k1,9328:18925489,35177830:170093 -k1,9328:19711620,35177830:170093 -k1,9328:20900797,35177830:170092 -k1,9328:22437971,35177830:170093 -k1,9328:23275220,35177830:170093 -(1,9328:23275220,35177830:0,459977,115847 -r1,9355:23985198,35177830:709978,575824,115847 -k1,9328:23275220,35177830:-709978 -) -(1,9328:23275220,35177830:709978,459977,115847 -k1,9328:23275220,35177830:3277 -h1,9328:23981921,35177830:0,411205,112570 -) -k1,9328:24328961,35177830:170093 -k1,9328:25690499,35177830:170093 -k1,9328:27240780,35177830:170093 -k1,9328:28515155,35177830:170093 -k1,9328:30151944,35177830:170093 -k1,9328:31069803,35177830:170093 -k1,9328:32583029,35177830:0 -) -(1,9329:6797234,36019318:25785795,513147,134348 -k1,9328:7910123,36019318:165238 -k1,9328:8431221,36019318:165238 -k1,9328:9896038,36019318:165238 -k1,9328:12005729,36019318:165238 -k1,9328:13124516,36019318:165238 -k1,9328:14394036,36019318:165238 -k1,9328:15506925,36019318:165238 -k1,9328:18333581,36019318:165239 -k1,9328:20761122,36019318:165238 -k1,9328:21945445,36019318:165238 -k1,9328:24772100,36019318:165238 -k1,9328:26792662,36019318:165238 -k1,9328:27609328,36019318:165238 -k1,9328:29356605,36019318:165238 -k1,9328:29877703,36019318:165238 -k1,9328:32583029,36019318:0 -) -(1,9329:6797234,36860806:25785795,513147,7863 -g1,9328:8694501,36860806 -g1,9328:9912815,36860806 -g1,9328:12377624,36860806 -g1,9328:14257196,36860806 -g1,9328:14987922,36860806 -k1,9329:32583029,36860806:14642710 -g1,9329:32583029,36860806 -) -v1,9331:6797234,38051272:0,393216,0 -(1,9350:6797234,44985873:25785795,7327817,196608 -g1,9350:6797234,44985873 -g1,9350:6797234,44985873 -g1,9350:6600626,44985873 -(1,9350:6600626,44985873:0,7327817,196608 -r1,9355:32779637,44985873:26179011,7524425,196608 -k1,9350:6600625,44985873:-26179012 -) -(1,9350:6600626,44985873:26179011,7327817,196608 -[1,9350:6797234,44985873:25785795,7131209,0 -(1,9333:6797234,38258890:25785795,404226,107478 -(1,9332:6797234,38258890:0,0,0 -g1,9332:6797234,38258890 -g1,9332:6797234,38258890 -g1,9332:6469554,38258890 -(1,9332:6469554,38258890:0,0,0 -) -g1,9332:6797234,38258890 -) -g1,9333:9958691,38258890 -g1,9333:10907129,38258890 -h1,9333:12487857,38258890:0,0,0 -k1,9333:32583029,38258890:20095172 -g1,9333:32583029,38258890 -) -(1,9334:6797234,38925068:25785795,404226,107478 -h1,9334:6797234,38925068:0,0,0 -g1,9334:7429526,38925068 -g1,9334:8377964,38925068 -k1,9334:8377964,38925068:0 -h1,9334:13752441,38925068:0,0,0 -k1,9334:32583029,38925068:18830588 -g1,9334:32583029,38925068 -) -(1,9335:6797234,39591246:25785795,388497,82312 -h1,9335:6797234,39591246:0,0,0 -g1,9335:7113380,39591246 -g1,9335:7429526,39591246 -g1,9335:7745672,39591246 -g1,9335:8061818,39591246 -g1,9335:8377964,39591246 -g1,9335:8694110,39591246 -g1,9335:9010256,39591246 -g1,9335:9326402,39591246 -g1,9335:9642548,39591246 -g1,9335:9958694,39591246 -g1,9335:10274840,39591246 -g1,9335:10590986,39591246 -g1,9335:11855569,39591246 -g1,9335:12487861,39591246 -k1,9335:12487861,39591246:0 -h1,9335:13120153,39591246:0,0,0 -k1,9335:32583029,39591246:19462876 -g1,9335:32583029,39591246 -) -(1,9336:6797234,40257424:25785795,404226,82312 -h1,9336:6797234,40257424:0,0,0 -g1,9336:7113380,40257424 -g1,9336:7429526,40257424 -g1,9336:7745672,40257424 -g1,9336:8061818,40257424 -g1,9336:8377964,40257424 -g1,9336:8694110,40257424 -g1,9336:9010256,40257424 -g1,9336:9326402,40257424 -g1,9336:9642548,40257424 -g1,9336:9958694,40257424 -g1,9336:10274840,40257424 -g1,9336:10590986,40257424 -g1,9336:11855569,40257424 -g1,9336:12487861,40257424 -g1,9336:13120153,40257424 -g1,9336:13752445,40257424 -k1,9336:13752445,40257424:0 -h1,9336:14384737,40257424:0,0,0 -k1,9336:32583029,40257424:18198292 -g1,9336:32583029,40257424 -) -(1,9337:6797234,40923602:25785795,404226,82312 -h1,9337:6797234,40923602:0,0,0 -g1,9337:7113380,40923602 -g1,9337:7429526,40923602 -g1,9337:7745672,40923602 -g1,9337:8061818,40923602 -g1,9337:8377964,40923602 -g1,9337:8694110,40923602 -g1,9337:9010256,40923602 -g1,9337:9326402,40923602 -g1,9337:9642548,40923602 -g1,9337:9958694,40923602 -g1,9337:10274840,40923602 -g1,9337:10590986,40923602 -g1,9337:12487860,40923602 -g1,9337:13120152,40923602 -g1,9337:13752444,40923602 -g1,9337:14384736,40923602 -k1,9337:14384736,40923602:0 -h1,9337:15017028,40923602:0,0,0 -k1,9337:32583028,40923602:17566000 -g1,9337:32583028,40923602 -) -(1,9338:6797234,41589780:25785795,410518,107478 -h1,9338:6797234,41589780:0,0,0 -g1,9338:7113380,41589780 -g1,9338:7429526,41589780 -g1,9338:7745672,41589780 -g1,9338:8061818,41589780 -g1,9338:8377964,41589780 -g1,9338:8694110,41589780 -g1,9338:9010256,41589780 -g1,9338:9326402,41589780 -g1,9338:9642548,41589780 -g1,9338:9958694,41589780 -g1,9338:10274840,41589780 -g1,9338:10590986,41589780 -g1,9338:14068589,41589780 -g1,9338:16281609,41589780 -g1,9338:18178483,41589780 -g1,9338:21656085,41589780 -h1,9338:22288377,41589780:0,0,0 -k1,9338:32583029,41589780:10294652 -g1,9338:32583029,41589780 -) -(1,9339:6797234,42255958:25785795,404226,76021 -h1,9339:6797234,42255958:0,0,0 -h1,9339:7113380,42255958:0,0,0 -k1,9339:32583028,42255958:25469648 -g1,9339:32583028,42255958 -) -(1,9343:6797234,42922136:25785795,410518,107478 -(1,9341:6797234,42922136:0,0,0 -g1,9341:6797234,42922136 -g1,9341:6797234,42922136 -g1,9341:6469554,42922136 -(1,9341:6469554,42922136:0,0,0 -) -g1,9341:6797234,42922136 -) -g1,9343:7745671,42922136 -g1,9343:9010254,42922136 -g1,9343:10274837,42922136 -g1,9343:12487857,42922136 -g1,9343:14384731,42922136 -h1,9343:16913896,42922136:0,0,0 -k1,9343:32583029,42922136:15669133 -g1,9343:32583029,42922136 -) -(1,9345:6797234,44243674:25785795,404226,6290 -(1,9344:6797234,44243674:0,0,0 -g1,9344:6797234,44243674 -g1,9344:6797234,44243674 -g1,9344:6469554,44243674 -(1,9344:6469554,44243674:0,0,0 -) -g1,9344:6797234,44243674 -) -h1,9345:7113380,44243674:0,0,0 -k1,9345:32583028,44243674:25469648 -g1,9345:32583028,44243674 -) -(1,9349:6797234,44909852:25785795,404226,76021 -(1,9347:6797234,44909852:0,0,0 -g1,9347:6797234,44909852 -g1,9347:6797234,44909852 -g1,9347:6469554,44909852 -(1,9347:6469554,44909852:0,0,0 -) -g1,9347:6797234,44909852 -) -g1,9349:7745671,44909852 -g1,9349:9010254,44909852 -h1,9349:9326400,44909852:0,0,0 -k1,9349:32583028,44909852:23256628 -g1,9349:32583028,44909852 -) -] -) -g1,9350:32583029,44985873 -g1,9350:6797234,44985873 -g1,9350:6797234,44985873 -g1,9350:32583029,44985873 -g1,9350:32583029,44985873 -) -h1,9350:6797234,45182481:0,0,0 -] -g1,9352:32583029,45706769 -) -h1,9352:6630773,45706769:0,0,0 -] -(1,9355:32583029,45706769:0,0,0 -g1,9355:32583029,45706769 -) -) -] -(1,9355:6630773,47279633:25952256,0,0 -h1,9355:6630773,47279633:25952256,0,0 +(1,8606:6630773,47279633:25952256,0,0 +h1,8606:6630773,47279633:25952256,0,0 ) ] -(1,9355:4262630,4025873:0,0,0 -[1,9355:-473656,4025873:0,0,0 -(1,9355:-473656,-710413:0,0,0 -(1,9355:-473656,-710413:0,0,0 -g1,9355:-473656,-710413 +(1,8606:4262630,4025873:0,0,0 +[1,8606:-473656,4025873:0,0,0 +(1,8606:-473656,-710413:0,0,0 +(1,8606:-473656,-710413:0,0,0 +g1,8606:-473656,-710413 ) -g1,9355:-473656,-710413 +g1,8606:-473656,-710413 ) ] ) ] -!28831 -}157 -Input:1306:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1307:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1308:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1309:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1310:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1311:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1312:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1313:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1314:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1315:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1316:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1317:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1318:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1319:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1320:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1321:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1322:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1323:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1324:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1325:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1326:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1327:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1328:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1329:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1330:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1331:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1332:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1333:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1334:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1335:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1336:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1337:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1338:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1339:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!3208 -{158 -[1,9404:4262630,47279633:28320399,43253760,0 -(1,9404:4262630,4025873:0,0,0 -[1,9404:-473656,4025873:0,0,0 -(1,9404:-473656,-710413:0,0,0 -(1,9404:-473656,-644877:0,0,0 -k1,9404:-473656,-644877:-65536 +!3308 +}133 +!11 +{134 +[1,8631:4262630,47279633:28320399,43253760,11795 +(1,8631:4262630,4025873:0,0,0 +[1,8631:-473656,4025873:0,0,0 +(1,8631:-473656,-710413:0,0,0 +(1,8631:-473656,-644877:0,0,0 +k1,8631:-473656,-644877:-65536 ) -(1,9404:-473656,4736287:0,0,0 -k1,9404:-473656,4736287:5209943 +(1,8631:-473656,4736287:0,0,0 +k1,8631:-473656,4736287:5209943 ) -g1,9404:-473656,-710413 +g1,8631:-473656,-710413 ) ] ) -[1,9404:6630773,47279633:25952256,43253760,0 -[1,9404:6630773,4812305:25952256,786432,0 -(1,9404:6630773,4812305:25952256,505283,11795 -(1,9404:6630773,4812305:25952256,505283,11795 -g1,9404:3078558,4812305 -[1,9404:3078558,4812305:0,0,0 -(1,9404:3078558,2439708:0,1703936,0 -k1,9404:1358238,2439708:-1720320 -(1,8393:1358238,2439708:1720320,1703936,0 -(1,8393:1358238,2439708:1179648,16384,0 -r1,9404:2537886,2439708:1179648,16384,0 +[1,8631:6630773,47279633:25952256,43253760,11795 +[1,8631:6630773,4812305:25952256,786432,0 +(1,8631:6630773,4812305:25952256,0,0 +(1,8631:6630773,4812305:25952256,0,0 +g1,8631:3078558,4812305 +[1,8631:3078558,4812305:0,0,0 +(1,8631:3078558,2439708:0,1703936,0 +k1,8631:1358238,2439708:-1720320 +(1,8606:1358238,2439708:1720320,1703936,0 +(1,8606:1358238,2439708:1179648,16384,0 +r1,8631:2537886,2439708:1179648,16384,0 ) -g1,8393:3062174,2439708 -(1,8393:3062174,2439708:16384,1703936,0 -[1,8393:3062174,2439708:25952256,1703936,0 -(1,8393:3062174,1915420:25952256,1179648,0 -(1,8393:3062174,1915420:16384,1179648,0 -r1,9404:3078558,1915420:16384,1179648,0 +g1,8606:3062174,2439708 +(1,8606:3062174,2439708:16384,1703936,0 +[1,8606:3062174,2439708:25952256,1703936,0 +(1,8606:3062174,1915420:25952256,1179648,0 +(1,8606:3062174,1915420:16384,1179648,0 +r1,8631:3078558,1915420:16384,1179648,0 ) -k1,8393:29014430,1915420:25935872 -g1,8393:29014430,1915420 +k1,8606:29014430,1915420:25935872 +g1,8606:29014430,1915420 ) ] ) ) ) ] -[1,9404:3078558,4812305:0,0,0 -(1,9404:3078558,2439708:0,1703936,0 -g1,9404:29030814,2439708 -g1,9404:36135244,2439708 -(1,8393:36135244,2439708:1720320,1703936,0 -(1,8393:36135244,2439708:16384,1703936,0 -[1,8393:36135244,2439708:25952256,1703936,0 -(1,8393:36135244,1915420:25952256,1179648,0 -(1,8393:36135244,1915420:16384,1179648,0 -r1,9404:36151628,1915420:16384,1179648,0 +[1,8631:3078558,4812305:0,0,0 +(1,8631:3078558,2439708:0,1703936,0 +g1,8631:29030814,2439708 +g1,8631:36135244,2439708 +(1,8606:36135244,2439708:1720320,1703936,0 +(1,8606:36135244,2439708:16384,1703936,0 +[1,8606:36135244,2439708:25952256,1703936,0 +(1,8606:36135244,1915420:25952256,1179648,0 +(1,8606:36135244,1915420:16384,1179648,0 +r1,8631:36151628,1915420:16384,1179648,0 ) -k1,8393:62087500,1915420:25935872 -g1,8393:62087500,1915420 +k1,8606:62087500,1915420:25935872 +g1,8606:62087500,1915420 ) ] ) -g1,8393:36675916,2439708 -(1,8393:36675916,2439708:1179648,16384,0 -r1,9404:37855564,2439708:1179648,16384,0 +g1,8606:36675916,2439708 +(1,8606:36675916,2439708:1179648,16384,0 +r1,8631:37855564,2439708:1179648,16384,0 ) ) -k1,9404:3078556,2439708:-34777008 +k1,8631:3078556,2439708:-34777008 ) ] -[1,9404:3078558,4812305:0,0,0 -(1,9404:3078558,49800853:0,16384,2228224 -k1,9404:1358238,49800853:-1720320 -(1,8393:1358238,49800853:1720320,16384,2228224 -(1,8393:1358238,49800853:1179648,16384,0 -r1,9404:2537886,49800853:1179648,16384,0 +[1,8631:3078558,4812305:0,0,0 +(1,8631:3078558,49800853:0,16384,2228224 +k1,8631:1358238,49800853:-1720320 +(1,8606:1358238,49800853:1720320,16384,2228224 +(1,8606:1358238,49800853:1179648,16384,0 +r1,8631:2537886,49800853:1179648,16384,0 ) -g1,8393:3062174,49800853 -(1,8393:3062174,52029077:16384,1703936,0 -[1,8393:3062174,52029077:25952256,1703936,0 -(1,8393:3062174,51504789:25952256,1179648,0 -(1,8393:3062174,51504789:16384,1179648,0 -r1,9404:3078558,51504789:16384,1179648,0 +g1,8606:3062174,49800853 +(1,8606:3062174,52029077:16384,1703936,0 +[1,8606:3062174,52029077:25952256,1703936,0 +(1,8606:3062174,51504789:25952256,1179648,0 +(1,8606:3062174,51504789:16384,1179648,0 +r1,8631:3078558,51504789:16384,1179648,0 ) -k1,8393:29014430,51504789:25935872 -g1,8393:29014430,51504789 +k1,8606:29014430,51504789:25935872 +g1,8606:29014430,51504789 ) ] ) ) ) ] -[1,9404:3078558,4812305:0,0,0 -(1,9404:3078558,49800853:0,16384,2228224 -g1,9404:29030814,49800853 -g1,9404:36135244,49800853 -(1,8393:36135244,49800853:1720320,16384,2228224 -(1,8393:36135244,52029077:16384,1703936,0 -[1,8393:36135244,52029077:25952256,1703936,0 -(1,8393:36135244,51504789:25952256,1179648,0 -(1,8393:36135244,51504789:16384,1179648,0 -r1,9404:36151628,51504789:16384,1179648,0 +[1,8631:3078558,4812305:0,0,0 +(1,8631:3078558,49800853:0,16384,2228224 +g1,8631:29030814,49800853 +g1,8631:36135244,49800853 +(1,8606:36135244,49800853:1720320,16384,2228224 +(1,8606:36135244,52029077:16384,1703936,0 +[1,8606:36135244,52029077:25952256,1703936,0 +(1,8606:36135244,51504789:25952256,1179648,0 +(1,8606:36135244,51504789:16384,1179648,0 +r1,8631:36151628,51504789:16384,1179648,0 ) -k1,8393:62087500,51504789:25935872 -g1,8393:62087500,51504789 +k1,8606:62087500,51504789:25935872 +g1,8606:62087500,51504789 ) ] ) -g1,8393:36675916,49800853 -(1,8393:36675916,49800853:1179648,16384,0 -r1,9404:37855564,49800853:1179648,16384,0 +g1,8606:36675916,49800853 +(1,8606:36675916,49800853:1179648,16384,0 +r1,8631:37855564,49800853:1179648,16384,0 ) ) -k1,9404:3078556,49800853:-34777008 -) -] -g1,9404:6630773,4812305 -g1,9404:6630773,4812305 -g1,9404:10456764,4812305 -g1,9404:13962940,4812305 -k1,9404:31387652,4812305:17424712 -) -) -] -[1,9404:6630773,45706769:25952256,40108032,0 -(1,9404:6630773,45706769:25952256,40108032,0 -(1,9404:6630773,45706769:0,0,0 -g1,9404:6630773,45706769 -) -[1,9404:6630773,45706769:25952256,40108032,0 -v1,9355:6630773,6254097:0,393216,0 -(1,9378:6630773,21188057:25952256,15327176,0 -g1,9378:6630773,21188057 -g1,9378:6303093,21188057 -r1,9404:6401397,21188057:98304,15327176,0 -g1,9378:6600626,21188057 -g1,9378:6797234,21188057 -[1,9378:6797234,21188057:25785795,15327176,0 -(1,9356:6797234,6616170:25785795,755289,196608 -(1,9355:6797234,6616170:0,755289,196608 -r1,9404:8134168,6616170:1336934,951897,196608 -k1,9355:6797234,6616170:-1336934 -) -(1,9355:6797234,6616170:1336934,755289,196608 -) -k1,9355:8409610,6616170:275442 -k1,9355:8737290,6616170:327680 -k1,9355:10209418,6616170:275441 -(1,9355:10209418,6616170:0,452978,115847 -r1,9404:13029667,6616170:2820249,568825,115847 -k1,9355:10209418,6616170:-2820249 -) -(1,9355:10209418,6616170:2820249,452978,115847 -k1,9355:10209418,6616170:3277 -h1,9355:13026390,6616170:0,411205,112570 -) -k1,9355:13305109,6616170:275442 -k1,9355:16766910,6616170:275441 -k1,9355:18146634,6616170:275442 -k1,9355:21632028,6616170:275441 -k1,9355:22855121,6616170:275442 -k1,9355:25618964,6616170:275441 -(1,9355:25618964,6616170:0,459977,115847 -r1,9404:28790925,6616170:3171961,575824,115847 -k1,9355:25618964,6616170:-3171961 -) -(1,9355:25618964,6616170:3171961,459977,115847 -g1,9355:26677377,6616170 -g1,9355:27380801,6616170 -h1,9355:28787648,6616170:0,411205,112570 -) -k1,9355:29066367,6616170:275442 -k1,9355:32583029,6616170:0 -) -(1,9356:6797234,7457658:25785795,505283,126483 -k1,9355:8688351,7457658:193079 -k1,9355:9647546,7457658:193079 -k1,9355:10859710,7457658:193079 -k1,9355:14415441,7457658:193079 -k1,9355:15712802,7457658:193079 -k1,9355:16653647,7457658:193079 -k1,9355:19936749,7457658:193079 -k1,9355:20891356,7457658:193079 -k1,9355:23842190,7457658:193079 -k1,9355:26045914,7457658:193079 -k1,9355:26921878,7457658:193079 -k1,9355:29530614,7457658:193079 -k1,9355:31734338,7457658:193079 -k1,9356:32583029,7457658:0 -) -(1,9356:6797234,8299146:25785795,505283,134348 -k1,9355:9178106,8299146:237845 -k1,9355:10177480,8299146:237846 -k1,9355:11434410,8299146:237845 -k1,9355:13325728,8299146:237845 -k1,9355:14928689,8299146:237846 -k1,9355:16363221,8299146:237845 -k1,9355:19839855,8299146:237845 -k1,9355:20609197,8299146:237845 -k1,9355:22497240,8299146:237846 -k1,9355:25090449,8299146:237845 -k1,9355:26519739,8299146:237845 -k1,9355:29478640,8299146:237846 -k1,9355:31386342,8299146:237845 -k1,9355:32583029,8299146:0 -) -(1,9356:6797234,9140634:25785795,513147,134348 -k1,9355:10311907,9140634:209692 -k1,9355:11180891,9140634:209692 -k1,9355:12409668,9140634:209692 -k1,9355:13925493,9140634:209692 -(1,9355:13925493,9140634:0,452978,115847 -r1,9404:16745742,9140634:2820249,568825,115847 -k1,9355:13925493,9140634:-2820249 -) -(1,9355:13925493,9140634:2820249,452978,115847 -k1,9355:13925493,9140634:3277 -h1,9355:16742465,9140634:0,411205,112570 -) -k1,9355:16955434,9140634:209692 -k1,9355:19826544,9140634:209693 -k1,9355:21891560,9140634:209692 -k1,9355:23799290,9140634:209692 -k1,9355:26295533,9140634:209692 -k1,9355:28240618,9140634:209692 -(1,9355:28240618,9140634:0,459977,115847 -r1,9404:31412579,9140634:3171961,575824,115847 -k1,9355:28240618,9140634:-3171961 -) -(1,9355:28240618,9140634:3171961,459977,115847 -g1,9355:29299031,9140634 -g1,9355:30002455,9140634 -h1,9355:31409302,9140634:0,411205,112570 -) -k1,9355:31622271,9140634:209692 -k1,9356:32583029,9140634:0 -) -(1,9356:6797234,9982122:25785795,513147,134348 -k1,9355:9010821,9982122:187869 -k1,9355:11396767,9982122:187868 -k1,9355:13384910,9982122:187869 -k1,9355:14903159,9982122:187868 -k1,9355:16661271,9982122:187869 -k1,9355:18345326,9982122:187868 -k1,9355:20268588,9982122:187869 -(1,9355:20268588,9982122:0,452978,115847 -r1,9404:23088837,9982122:2820249,568825,115847 -k1,9355:20268588,9982122:-2820249 -) -(1,9355:20268588,9982122:2820249,452978,115847 -k1,9355:20268588,9982122:3277 -h1,9355:23085560,9982122:0,411205,112570 -) -k1,9355:23276705,9982122:187868 -k1,9355:24169741,9982122:187869 -k1,9355:26101522,9982122:187868 -k1,9355:27355662,9982122:187869 -k1,9355:28508875,9982122:187868 -k1,9355:31189078,9982122:187869 -k1,9355:32583029,9982122:0 -) -(1,9356:6797234,10823610:25785795,513147,126483 -k1,9355:7798577,10823610:212945 -k1,9355:9104007,10823610:212945 -k1,9355:10653886,10823610:212945 -k1,9355:12132988,10823610:212946 -k1,9355:13365018,10823610:212945 -k1,9355:15228160,10823610:212945 -k1,9355:17906569,10823610:212945 -k1,9355:19620288,10823610:212945 -k1,9355:21346459,10823610:212945 -k1,9355:23427835,10823610:212945 -k1,9355:25511179,10823610:212946 -k1,9355:26375552,10823610:212945 -k1,9355:30426941,10823610:212945 -k1,9355:31563944,10823610:212945 -k1,9355:32583029,10823610:0 -) -(1,9356:6797234,11665098:25785795,505283,115847 -g1,9355:8698433,11665098 -g1,9355:10677620,11665098 -g1,9355:12270800,11665098 -g1,9355:15695056,11665098 -g1,9355:17591667,11665098 -(1,9355:17591667,11665098:0,452978,115847 -r1,9404:20411916,11665098:2820249,568825,115847 -k1,9355:17591667,11665098:-2820249 -) -(1,9355:17591667,11665098:2820249,452978,115847 -k1,9355:17591667,11665098:3277 -h1,9355:20408639,11665098:0,411205,112570 -) -g1,9355:20611145,11665098 -g1,9355:21341871,11665098 -g1,9355:23411498,11665098 -g1,9355:24262155,11665098 -g1,9355:25873685,11665098 -g1,9355:27264359,11665098 -k1,9356:32583029,11665098:1480226 -g1,9356:32583029,11665098 -) -v1,9358:6797234,12855564:0,393216,0 -(1,9375:6797234,20467161:25785795,8004813,196608 -g1,9375:6797234,20467161 -g1,9375:6797234,20467161 -g1,9375:6600626,20467161 -(1,9375:6600626,20467161:0,8004813,196608 -r1,9404:32779637,20467161:26179011,8201421,196608 -k1,9375:6600625,20467161:-26179012 -) -(1,9375:6600626,20467161:26179011,8004813,196608 -[1,9375:6797234,20467161:25785795,7808205,0 -(1,9360:6797234,13063182:25785795,404226,107478 -(1,9359:6797234,13063182:0,0,0 -g1,9359:6797234,13063182 -g1,9359:6797234,13063182 -g1,9359:6469554,13063182 -(1,9359:6469554,13063182:0,0,0 -) -g1,9359:6797234,13063182 -) -g1,9360:9958691,13063182 -g1,9360:10907129,13063182 -h1,9360:12487857,13063182:0,0,0 -k1,9360:32583029,13063182:20095172 -g1,9360:32583029,13063182 -) -(1,9361:6797234,13729360:25785795,410518,107478 -h1,9361:6797234,13729360:0,0,0 -g1,9361:7745671,13729360 -g1,9361:11223274,13729360 -g1,9361:12171711,13729360 -g1,9361:14384731,13729360 -h1,9361:14700877,13729360:0,0,0 -k1,9361:32583029,13729360:17882152 -g1,9361:32583029,13729360 -) -(1,9362:6797234,14395538:25785795,404226,6290 -h1,9362:6797234,14395538:0,0,0 -g1,9362:7113380,14395538 -g1,9362:7429526,14395538 -g1,9362:8061818,14395538 -g1,9362:9010256,14395538 -h1,9362:9326402,14395538:0,0,0 -k1,9362:32583030,14395538:23256628 -g1,9362:32583030,14395538 -) -(1,9363:6797234,15061716:25785795,410518,107478 -h1,9363:6797234,15061716:0,0,0 -g1,9363:7429526,15061716 -g1,9363:9010255,15061716 -g1,9363:9958692,15061716 -g1,9363:13436295,15061716 -g1,9363:14384732,15061716 -g1,9363:16597752,15061716 -h1,9363:16913898,15061716:0,0,0 -k1,9363:32583029,15061716:15669131 -g1,9363:32583029,15061716 -) -(1,9364:6797234,15727894:25785795,404226,76021 -h1,9364:6797234,15727894:0,0,0 -g1,9364:7113380,15727894 -g1,9364:7429526,15727894 -g1,9364:8061818,15727894 -g1,9364:9010256,15727894 -g1,9364:9642548,15727894 -g1,9364:10274840,15727894 -h1,9364:10590986,15727894:0,0,0 -k1,9364:32583030,15727894:21992044 -g1,9364:32583030,15727894 -) -(1,9365:6797234,16394072:25785795,410518,107478 -h1,9365:6797234,16394072:0,0,0 -g1,9365:7429526,16394072 -g1,9365:9010255,16394072 -g1,9365:9958692,16394072 -g1,9365:13436295,16394072 -g1,9365:14384732,16394072 -g1,9365:16913898,16394072 -h1,9365:17230044,16394072:0,0,0 -k1,9365:32583029,16394072:15352985 -g1,9365:32583029,16394072 -) -(1,9366:6797234,17060250:25785795,404226,76021 -h1,9366:6797234,17060250:0,0,0 -g1,9366:7113380,17060250 -g1,9366:7429526,17060250 -g1,9366:8061818,17060250 -g1,9366:9010256,17060250 -g1,9366:9642548,17060250 -g1,9366:10274840,17060250 -h1,9366:10590986,17060250:0,0,0 -k1,9366:32583030,17060250:21992044 -g1,9366:32583030,17060250 -) -(1,9367:6797234,17726428:25785795,404226,76021 -h1,9367:6797234,17726428:0,0,0 -g1,9367:7429526,17726428 -g1,9367:9010255,17726428 -h1,9367:9326401,17726428:0,0,0 -k1,9367:32583029,17726428:23256628 -g1,9367:32583029,17726428 -) -(1,9368:6797234,18392606:25785795,404226,9436 -h1,9368:6797234,18392606:0,0,0 -g1,9368:7113380,18392606 -g1,9368:7429526,18392606 -g1,9368:8061818,18392606 -g1,9368:9010256,18392606 -h1,9368:9326402,18392606:0,0,0 -k1,9368:32583030,18392606:23256628 -g1,9368:32583030,18392606 -) -(1,9369:6797234,19058784:25785795,404226,76021 -h1,9369:6797234,19058784:0,0,0 -h1,9369:7113380,19058784:0,0,0 -k1,9369:32583028,19058784:25469648 -g1,9369:32583028,19058784 -) -(1,9370:6797234,19724962:25785795,404226,6290 -h1,9370:6797234,19724962:0,0,0 -h1,9370:7113380,19724962:0,0,0 -k1,9370:32583028,19724962:25469648 -g1,9370:32583028,19724962 -) -(1,9374:6797234,20391140:25785795,404226,76021 -(1,9372:6797234,20391140:0,0,0 -g1,9372:6797234,20391140 -g1,9372:6797234,20391140 -g1,9372:6469554,20391140 -(1,9372:6469554,20391140:0,0,0 -) -g1,9372:6797234,20391140 -) -g1,9374:7745671,20391140 -g1,9374:9010254,20391140 -h1,9374:9958691,20391140:0,0,0 -k1,9374:32583029,20391140:22624338 -g1,9374:32583029,20391140 -) -] -) -g1,9375:32583029,20467161 -g1,9375:6797234,20467161 -g1,9375:6797234,20467161 -g1,9375:32583029,20467161 -g1,9375:32583029,20467161 -) -h1,9375:6797234,20663769:0,0,0 -] -g1,9378:32583029,21188057 -) -h1,9378:6630773,21188057:0,0,0 -(1,9380:6630773,23279317:25952256,555811,127104 -(1,9380:6630773,23279317:2450326,534184,12975 -g1,9380:6630773,23279317 -g1,9380:9081099,23279317 -) -g1,9380:13232740,23279317 -(1,9380:13232740,23279317:0,505647,127104 -r1,9404:16334358,23279317:3101618,632751,127104 -k1,9380:13232740,23279317:-3101618 -) -(1,9380:13232740,23279317:3101618,505647,127104 -k1,9380:13232740,23279317:3277 -h1,9380:16331081,23279317:0,452326,123827 -) -k1,9380:32583029,23279317:16248671 -g1,9380:32583029,23279317 -) -(1,9384:6630773,24514021:25952256,513147,134348 -k1,9382:10252481,24514021:183689 -k1,9382:12031316,24514021:183689 -k1,9382:12746502,24514021:183689 -k1,9382:13286051,24514021:183689 -k1,9382:16855986,24514021:183690 -k1,9382:17698967,24514021:183689 -k1,9382:18901741,24514021:183689 -k1,9382:19500257,24514021:183673 -k1,9382:22699913,24514021:183689 -k1,9382:23955772,24514021:183690 -k1,9382:25493435,24514021:183689 -k1,9382:27654345,24514021:183689 -k1,9382:28785685,24514021:183689 -k1,9382:31227089,24514021:183689 -k1,9384:32583029,24514021:0 -) -(1,9384:6630773,25355509:25952256,513147,134348 -k1,9382:7996325,25355509:153136 -k1,9382:9645647,25355509:153135 -k1,9382:11083289,25355509:153136 -k1,9382:12573359,25355509:153136 -k1,9382:15138875,25355509:153136 -k1,9382:17135538,25355509:153135 -k1,9382:18731121,25355509:153136 -k1,9382:21520115,25355509:153136 -k1,9382:24978232,25355509:153136 -k1,9382:26203536,25355509:153135 -k1,9382:27422943,25355509:153136 -k1,9382:30913172,25355509:153136 -k1,9382:32583029,25355509:0 -) -(1,9384:6630773,26196997:25952256,513147,126483 -k1,9383:10268326,26196997:199534 -k1,9383:14061198,26196997:199533 -k1,9383:17336337,26196997:199534 -k1,9383:18067367,26196997:199533 -k1,9383:20183829,26196997:199534 -k1,9383:21144890,26196997:199533 -k1,9383:23412740,26196997:199534 -k1,9383:24271565,26196997:199533 -k1,9383:27069602,26196997:199534 -(1,9383:27069602,26196997:0,459977,115847 -r1,9404:29889851,26196997:2820249,575824,115847 -k1,9383:27069602,26196997:-2820249 -) -(1,9383:27069602,26196997:2820249,459977,115847 -k1,9383:27069602,26196997:3277 -h1,9383:29886574,26196997:0,411205,112570 -) -k1,9383:30089384,26196997:199533 -k1,9383:32583029,26196997:0 -) -(1,9384:6630773,27038485:25952256,513147,134348 -k1,9383:7562930,27038485:245995 -k1,9383:8164786,27038485:245996 -k1,9383:10283800,27038485:245995 -k1,9383:12535197,27038485:245995 -k1,9383:14162036,27038485:245995 -k1,9383:17103528,27038485:245996 -k1,9383:19032488,27038485:245995 -k1,9383:20933267,27038485:245995 -k1,9383:24755562,27038485:245995 -k1,9383:25357418,27038485:245996 -(1,9383:25357418,27038485:0,452978,122846 -r1,9404:27825955,27038485:2468537,575824,122846 -k1,9383:25357418,27038485:-2468537 -) -(1,9383:25357418,27038485:2468537,452978,122846 -k1,9383:25357418,27038485:3277 -h1,9383:27822678,27038485:0,411205,112570 -) -k1,9383:28071950,27038485:245995 -k1,9383:30295822,27038485:245995 -k1,9383:32583029,27038485:0 -) -(1,9384:6630773,27879973:25952256,513147,126483 -k1,9383:7799919,27879973:150061 -k1,9383:9792851,27879973:150060 -k1,9383:10602204,27879973:150061 -k1,9383:11108125,27879973:150061 -k1,9383:12449631,27879973:150061 -k1,9383:16087517,27879973:150060 -(1,9383:16087517,27879973:0,414482,115847 -r1,9404:17500918,27879973:1413401,530329,115847 -k1,9383:16087517,27879973:-1413401 -) -(1,9383:16087517,27879973:1413401,414482,115847 -k1,9383:16087517,27879973:3277 -h1,9383:17497641,27879973:0,411205,112570 -) -k1,9383:18031743,27879973:150061 -k1,9383:18952507,27879973:150061 -k1,9383:22542552,27879973:150060 -k1,9383:23344041,27879973:150061 -k1,9383:24586587,27879973:150061 -k1,9383:25684299,27879973:150061 -(1,9383:25684299,27879973:0,414482,115847 -r1,9404:27097700,27879973:1413401,530329,115847 -k1,9383:25684299,27879973:-1413401 -) -(1,9383:25684299,27879973:1413401,414482,115847 -k1,9383:25684299,27879973:3277 -h1,9383:27094423,27879973:0,411205,112570 -) -k1,9383:27247760,27879973:150060 -k1,9383:29095203,27879973:150061 -k1,9384:32583029,27879973:0 -) -(1,9384:6630773,28721461:25952256,513147,126483 -(1,9383:6630773,28721461:0,414482,115847 -r1,9404:7692462,28721461:1061689,530329,115847 -k1,9383:6630773,28721461:-1061689 -) -(1,9383:6630773,28721461:1061689,414482,115847 -k1,9383:6630773,28721461:3277 -h1,9383:7689185,28721461:0,411205,112570 -) -k1,9383:8278227,28721461:205001 -k1,9383:9674674,28721461:205002 -k1,9383:10650378,28721461:205001 -k1,9383:14295364,28721461:205001 -k1,9383:15151794,28721461:205002 -k1,9383:16449280,28721461:205001 -k1,9383:17601933,28721461:205002 -(1,9383:17601933,28721461:0,414482,115847 -r1,9404:19367046,28721461:1765113,530329,115847 -k1,9383:17601933,28721461:-1765113 -) -(1,9383:17601933,28721461:1765113,414482,115847 -k1,9383:17601933,28721461:3277 -h1,9383:19363769,28721461:0,411205,112570 -) -k1,9383:19572047,28721461:205001 -k1,9383:21474430,28721461:205001 -k1,9383:25167258,28721461:205002 -(1,9383:25167258,28721461:0,414482,115847 -r1,9404:25877236,28721461:709978,530329,115847 -k1,9383:25167258,28721461:-709978 -) -(1,9383:25167258,28721461:709978,414482,115847 -k1,9383:25167258,28721461:3277 -h1,9383:25873959,28721461:0,411205,112570 -) -k1,9383:26463001,28721461:205001 -k1,9383:27412491,28721461:205001 -k1,9383:29069115,28721461:205002 -k1,9383:31023272,28721461:205001 -k1,9384:32583029,28721461:0 -) -(1,9384:6630773,29562949:25952256,513147,134348 -k1,9383:8088340,29562949:190101 -k1,9383:10023009,29562949:190101 -k1,9383:11232194,29562949:190100 -k1,9383:13904143,29562949:190101 -k1,9383:15113329,29562949:190101 -k1,9383:16983773,29562949:190101 -k1,9383:19932283,29562949:190100 -k1,9383:20738422,29562949:190101 -k1,9383:21947608,29562949:190101 -k1,9383:24916436,29562949:190101 -k1,9383:27084414,29562949:190101 -k1,9383:27806011,29562949:190100 -k1,9383:29763618,29562949:190101 -k1,9383:31521340,29562949:190101 -(1,9383:31521340,29562949:0,414482,115847 -r1,9404:32583029,29562949:1061689,530329,115847 -k1,9383:31521340,29562949:-1061689 -) -(1,9383:31521340,29562949:1061689,414482,115847 -k1,9383:31521340,29562949:3277 -h1,9383:32579752,29562949:0,411205,112570 -) -k1,9383:32583029,29562949:0 -) -(1,9384:6630773,30404437:25952256,513147,134348 -k1,9383:7308865,30404437:212131 -k1,9383:8540082,30404437:212132 -k1,9383:13375778,30404437:212131 -k1,9383:16211315,30404437:212131 -k1,9383:17082738,30404437:212131 -k1,9383:18313955,30404437:212132 -(1,9383:18313955,30404437:0,414482,115847 -r1,9404:19727356,30404437:1413401,530329,115847 -k1,9383:18313955,30404437:-1413401 -) -(1,9383:18313955,30404437:1413401,414482,115847 -k1,9383:18313955,30404437:3277 -h1,9383:19724079,30404437:0,411205,112570 -) -k1,9383:19939487,30404437:212131 -k1,9383:22221245,30404437:212131 -k1,9383:24411253,30404437:212131 -k1,9383:25154882,30404437:212132 -(1,9383:25154882,30404437:0,414482,115847 -r1,9404:26568283,30404437:1413401,530329,115847 -k1,9383:25154882,30404437:-1413401 -) -(1,9383:25154882,30404437:1413401,414482,115847 -k1,9383:25154882,30404437:3277 -h1,9383:26565006,30404437:0,411205,112570 -) -k1,9383:26780414,30404437:212131 -k1,9383:28183990,30404437:212131 -k1,9383:29963742,30404437:212131 -(1,9383:29963742,30404437:0,414482,115847 -r1,9404:30673720,30404437:709978,530329,115847 -k1,9383:29963742,30404437:-709978 -) -(1,9383:29963742,30404437:709978,414482,115847 -k1,9383:29963742,30404437:3277 -h1,9383:30670443,30404437:0,411205,112570 -) -k1,9383:30885852,30404437:212132 -k1,9383:31563944,30404437:212131 -k1,9383:32583029,30404437:0 -) -(1,9384:6630773,31245925:25952256,513147,134348 -k1,9383:11488202,31245925:233864 -k1,9383:14345472,31245925:233864 -k1,9383:15246492,31245925:233864 -(1,9383:15246492,31245925:0,414482,115847 -r1,9404:16659893,31245925:1413401,530329,115847 -k1,9383:15246492,31245925:-1413401 -) -(1,9383:15246492,31245925:1413401,414482,115847 -k1,9383:15246492,31245925:3277 -h1,9383:16656616,31245925:0,411205,112570 -) -k1,9383:16893757,31245925:233864 -k1,9383:17659118,31245925:233864 -(1,9383:17659118,31245925:0,414482,115847 -r1,9404:19424231,31245925:1765113,530329,115847 -k1,9383:17659118,31245925:-1765113 -) -(1,9383:17659118,31245925:1765113,414482,115847 -k1,9383:17659118,31245925:3277 -h1,9383:19420954,31245925:0,411205,112570 -) -k1,9383:19831765,31245925:233864 -k1,9383:20963472,31245925:233864 -k1,9383:22852120,31245925:233864 -k1,9383:26488613,31245925:233864 -k1,9383:27826759,31245925:233864 -k1,9383:28808389,31245925:233864 -k1,9383:30174060,31245925:233864 -k1,9383:30822732,31245925:233829 -k1,9384:32583029,31245925:0 -) -(1,9384:6630773,32087413:25952256,513147,134348 -k1,9383:8436894,32087413:167066 -k1,9383:11604855,32087413:167067 -k1,9383:12791006,32087413:167066 -k1,9383:15670607,32087413:167066 -k1,9383:18319522,32087413:167067 -k1,9383:19114423,32087413:167066 -k1,9383:20300574,32087413:167066 -k1,9383:21834721,32087413:167066 -k1,9383:22661080,32087413:167067 -k1,9383:25136324,32087413:167066 -k1,9383:27508677,32087413:167066 -k1,9383:28361906,32087413:167067 -k1,9383:31931601,32087413:167066 -k1,9383:32583029,32087413:0 -) -(1,9384:6630773,32928901:25952256,513147,134348 -k1,9383:10420938,32928901:179131 -(1,9383:10420938,32928901:0,414482,115847 -r1,9404:11482627,32928901:1061689,530329,115847 -k1,9383:10420938,32928901:-1061689 -) -(1,9383:10420938,32928901:1061689,414482,115847 -k1,9383:10420938,32928901:3277 -h1,9383:11479350,32928901:0,411205,112570 -) -k1,9383:11661758,32928901:179131 -k1,9383:13032334,32928901:179131 -(1,9383:13032334,32928901:0,414482,115847 -r1,9404:13742312,32928901:709978,530329,115847 -k1,9383:13032334,32928901:-709978 -) -(1,9383:13032334,32928901:709978,414482,115847 -k1,9383:13032334,32928901:3277 -h1,9383:13739035,32928901:0,411205,112570 -) -k1,9383:14095113,32928901:179131 -k1,9383:17133580,32928901:179131 -k1,9383:18445173,32928901:179131 -k1,9383:19976966,32928901:179130 -k1,9383:21818745,32928901:179131 -k1,9383:22463837,32928901:179131 -k1,9383:24023156,32928901:179131 -k1,9383:25193847,32928901:179131 -k1,9383:27693608,32928901:179131 -k1,9383:29315186,32928901:179131 -k1,9383:30513402,32928901:179131 -k1,9383:32583029,32928901:0 -) -(1,9384:6630773,33770389:25952256,505283,134348 -k1,9383:8832527,33770389:223877 -k1,9383:11835132,33770389:223878 -k1,9383:12820537,33770389:223877 -k1,9383:14063500,33770389:223878 -k1,9383:17727362,33770389:223877 -k1,9383:20156527,33770389:223878 -k1,9383:21066566,33770389:223877 -k1,9383:24362771,33770389:223877 -k1,9383:25238077,33770389:223878 -(1,9383:25238077,33770389:0,414482,115847 -r1,9404:26651478,33770389:1413401,530329,115847 -k1,9383:25238077,33770389:-1413401 -) -(1,9383:25238077,33770389:1413401,414482,115847 -k1,9383:25238077,33770389:3277 -h1,9383:26648201,33770389:0,411205,112570 -) -k1,9383:27049025,33770389:223877 -k1,9383:28159605,33770389:223878 -k1,9383:31242818,33770389:223877 -k1,9383:32583029,33770389:0 -) -(1,9384:6630773,34611877:25952256,513147,134348 -g1,9383:9111310,34611877 -g1,9383:9961967,34611877 -(1,9383:9961967,34611877:0,414482,115847 -r1,9404:11375368,34611877:1413401,530329,115847 -k1,9383:9961967,34611877:-1413401 -) -(1,9383:9961967,34611877:1413401,414482,115847 -k1,9383:9961967,34611877:3277 -h1,9383:11372091,34611877:0,411205,112570 -) -g1,9383:11748267,34611877 -g1,9383:13414192,34611877 -g1,9383:14087246,34611877 -(1,9383:14087246,34611877:0,414482,115847 -r1,9404:15148935,34611877:1061689,530329,115847 -k1,9383:14087246,34611877:-1061689 -) -(1,9383:14087246,34611877:1061689,414482,115847 -k1,9383:14087246,34611877:3277 -h1,9383:15145658,34611877:0,411205,112570 -) -g1,9383:15348164,34611877 -g1,9383:17757267,34611877 -(1,9383:17757267,34611877:0,414482,115847 -r1,9404:18467245,34611877:709978,530329,115847 -k1,9383:17757267,34611877:-709978 -) -(1,9383:17757267,34611877:709978,414482,115847 -k1,9383:17757267,34611877:3277 -h1,9383:18463968,34611877:0,411205,112570 -) -g1,9383:18666474,34611877 -g1,9383:19857263,34611877 -g1,9383:22080899,34611877 -g1,9383:23722575,34611877 -(1,9383:23722575,34611877:0,414482,115847 -r1,9404:25135976,34611877:1413401,530329,115847 -k1,9383:23722575,34611877:-1413401 -) -(1,9383:23722575,34611877:1413401,414482,115847 -k1,9383:23722575,34611877:3277 -h1,9383:25132699,34611877:0,411205,112570 -) -k1,9384:32583029,34611877:7273383 -g1,9384:32583029,34611877 -) -(1,9386:6630773,35453365:25952256,513147,134348 -h1,9385:6630773,35453365:983040,0,0 -k1,9385:8998898,35453365:188398 -k1,9385:10537337,35453365:188397 -k1,9385:12375276,35453365:188398 -k1,9385:13511325,35453365:188398 -(1,9385:13511325,35453365:0,459977,115847 -r1,9404:16331574,35453365:2820249,575824,115847 -k1,9385:13511325,35453365:-2820249 -) -(1,9385:13511325,35453365:2820249,459977,115847 -k1,9385:13511325,35453365:3277 -h1,9385:16328297,35453365:0,411205,112570 -) -k1,9385:16519972,35453365:188398 -k1,9385:17239866,35453365:188397 -k1,9385:19630274,35453365:188398 -k1,9385:20470100,35453365:188398 -k1,9385:21943003,35453365:188397 -k1,9385:23079052,35453365:188398 -(1,9385:23079052,35453365:0,459977,115847 -r1,9404:26251013,35453365:3171961,575824,115847 -k1,9385:23079052,35453365:-3171961 -) -(1,9385:23079052,35453365:3171961,459977,115847 -g1,9385:24137465,35453365 -g1,9385:24840889,35453365 -h1,9385:26247736,35453365:0,411205,112570 -) -k1,9385:26439411,35453365:188398 -k1,9385:28703334,35453365:188398 -k1,9385:29701101,35453365:188397 -k1,9385:31387652,35453365:188398 -h1,9385:32583029,35453365:0,0,0 -k1,9385:32583029,35453365:0 -) -(1,9386:6630773,36294853:25952256,513147,134348 -k1,9385:7988788,36294853:285846 -k1,9385:10646382,36294853:285846 -k1,9385:11548267,36294853:285847 -k1,9385:14217657,36294853:285846 -k1,9385:15154931,36294853:285846 -k1,9385:16459862,36294853:285846 -k1,9385:19938622,36294853:285846 -k1,9385:23178176,36294853:285846 -k1,9385:24123315,36294853:285847 -k1,9385:26891009,36294853:285846 -k1,9385:28245747,36294853:285846 -k1,9385:29550678,36294853:285846 -k1,9385:32583029,36294853:0 -) -(1,9386:6630773,37136341:25952256,505283,126483 -k1,9385:10262997,37136341:192239 -k1,9385:10986732,37136341:192238 -k1,9385:14240158,37136341:192239 -k1,9385:15045158,37136341:192238 -k1,9385:16986553,37136341:192239 -k1,9385:19793023,37136341:192239 -(1,9385:19793023,37136341:0,435480,115847 -r1,9404:20151289,37136341:358266,551327,115847 -k1,9385:19793023,37136341:-358266 -) -(1,9385:19793023,37136341:358266,435480,115847 -k1,9385:19793023,37136341:3277 -h1,9385:20148012,37136341:0,411205,112570 -) -k1,9385:20343527,37136341:192238 -k1,9385:23153929,37136341:192239 -k1,9385:25231639,37136341:192239 -k1,9385:27104220,37136341:192238 -k1,9385:28428921,37136341:192239 -k1,9385:29368925,37136341:192238 -k1,9385:31966991,37136341:192239 -k1,9385:32583029,37136341:0 -) -(1,9386:6630773,37977829:25952256,505283,126483 -g1,9385:7849087,37977829 -g1,9385:10827043,37977829 -g1,9385:13004149,37977829 -g1,9385:13816140,37977829 -g1,9385:15764525,37977829 -g1,9385:18577985,37977829 -(1,9385:18577985,37977829:0,435480,115847 -r1,9404:18936251,37977829:358266,551327,115847 -k1,9385:18577985,37977829:-358266 -) -(1,9385:18577985,37977829:358266,435480,115847 -k1,9385:18577985,37977829:3277 -h1,9385:18932974,37977829:0,411205,112570 -) -g1,9385:19309150,37977829 -g1,9385:20699824,37977829 -g1,9385:21623881,37977829 -k1,9386:32583029,37977829:9976108 -g1,9386:32583029,37977829 -) -(1,9388:6630773,38819317:25952256,513147,134348 -h1,9387:6630773,38819317:983040,0,0 -k1,9387:8244175,38819317:160469 -k1,9387:8936140,38819317:160468 -k1,9387:12452052,38819317:160469 -k1,9387:13263949,38819317:160469 -k1,9387:14861622,38819317:160468 -k1,9387:18424720,38819317:160469 -k1,9387:19236616,38819317:160468 -(1,9387:19236616,38819317:0,459977,115847 -r1,9404:21353441,38819317:2116825,575824,115847 -k1,9387:19236616,38819317:-2116825 -) -(1,9387:19236616,38819317:2116825,459977,115847 -k1,9387:19236616,38819317:3277 -h1,9387:21350164,38819317:0,411205,112570 -) -k1,9387:21513910,38819317:160469 -k1,9387:22435907,38819317:160469 -k1,9387:25384277,38819317:160468 -k1,9387:26498295,38819317:160469 -k1,9387:27938682,38819317:160469 -k1,9387:28455010,38819317:160468 -k1,9387:29921612,38819317:160469 -k1,9387:32583029,38819317:0 -) -(1,9388:6630773,39660805:25952256,513147,134348 -g1,9387:8223953,39660805 -g1,9387:10581938,39660805 -g1,9387:14183796,39660805 -g1,9387:15034453,39660805 -g1,9387:17243671,39660805 -g1,9387:18461985,39660805 -g1,9387:19753699,39660805 -g1,9387:20612220,39660805 -g1,9387:21830534,39660805 -k1,9388:32583029,39660805:7883329 -g1,9388:32583029,39660805 -) -v1,9390:6630773,40848342:0,393216,0 -(1,9398:6630773,42464337:25952256,2009211,196608 -g1,9398:6630773,42464337 -g1,9398:6630773,42464337 -g1,9398:6434165,42464337 -(1,9398:6434165,42464337:0,2009211,196608 -r1,9404:32779637,42464337:26345472,2205819,196608 -k1,9398:6434165,42464337:-26345472 -) -(1,9398:6434165,42464337:26345472,2009211,196608 -[1,9398:6630773,42464337:25952256,1812603,0 -(1,9392:6630773,41055960:25952256,404226,101187 -(1,9391:6630773,41055960:0,0,0 -g1,9391:6630773,41055960 -g1,9391:6630773,41055960 -g1,9391:6303093,41055960 -(1,9391:6303093,41055960:0,0,0 -) -g1,9391:6630773,41055960 -) -g1,9392:9159939,41055960 -g1,9392:10108377,41055960 -g1,9392:12637544,41055960 -g1,9392:14850564,41055960 -g1,9392:16747439,41055960 -h1,9392:18328168,41055960:0,0,0 -k1,9392:32583029,41055960:14254861 -g1,9392:32583029,41055960 -) -(1,9393:6630773,41722138:25952256,410518,101187 -h1,9393:6630773,41722138:0,0,0 -g1,9393:10424522,41722138 -g1,9393:11056814,41722138 -g1,9393:13902126,41722138 -g1,9393:15166709,41722138 -g1,9393:15799001,41722138 -g1,9393:16747439,41722138 -g1,9393:17695876,41722138 -g1,9393:18328168,41722138 -k1,9393:18328168,41722138:0 -h1,9393:19276606,41722138:0,0,0 -k1,9393:32583029,41722138:13306423 -g1,9393:32583029,41722138 -) -(1,9397:6630773,42388316:25952256,404226,76021 -(1,9395:6630773,42388316:0,0,0 -g1,9395:6630773,42388316 -g1,9395:6630773,42388316 -g1,9395:6303093,42388316 -(1,9395:6303093,42388316:0,0,0 -) -g1,9395:6630773,42388316 -) -g1,9397:7579210,42388316 -g1,9397:8843793,42388316 -g1,9397:9159939,42388316 -g1,9397:9792231,42388316 -g1,9397:10740668,42388316 -g1,9397:11056814,42388316 -g1,9397:11689106,42388316 -g1,9397:12005252,42388316 -h1,9397:12321398,42388316:0,0,0 -k1,9397:32583030,42388316:20261632 -g1,9397:32583030,42388316 -) -] -) -g1,9398:32583029,42464337 -g1,9398:6630773,42464337 -g1,9398:6630773,42464337 -g1,9398:32583029,42464337 -g1,9398:32583029,42464337 -) -h1,9398:6630773,42660945:0,0,0 -(1,9402:6630773,44023793:25952256,505283,134348 -h1,9401:6630773,44023793:983040,0,0 -k1,9401:8439020,44023793:197372 -k1,9401:11347616,44023793:197372 -k1,9401:12564073,44023793:197372 -k1,9401:14363145,44023793:197372 -k1,9401:17337933,44023793:197372 -k1,9401:19372935,44023793:197372 -k1,9401:20101803,44023793:197371 -k1,9401:20950603,44023793:197372 -k1,9401:22623190,44023793:197372 -k1,9401:23506724,44023793:197372 -k1,9401:24474799,44023793:197372 -k1,9401:27744499,44023793:197372 -k1,9401:30147158,44023793:197372 -k1,9401:30995958,44023793:197372 -(1,9401:30995958,44023793:0,414482,115847 -r1,9404:32409359,44023793:1413401,530329,115847 -k1,9401:30995958,44023793:-1413401 -) -(1,9401:30995958,44023793:1413401,414482,115847 -k1,9401:30995958,44023793:3277 -h1,9401:32406082,44023793:0,411205,112570 -) -k1,9401:32583029,44023793:0 -) -(1,9402:6630773,44865281:25952256,513147,126483 -k1,9401:7865846,44865281:215988 -k1,9401:9924706,44865281:215988 -k1,9401:10799986,44865281:215988 -k1,9401:11371833,44865281:215987 -k1,9401:15341723,44865281:215988 -k1,9401:18786670,44865281:215988 -k1,9401:19812028,44865281:215988 -k1,9401:21047101,44865281:215988 -k1,9401:22232366,44865281:215988 -k1,9401:23076189,44865281:215988 -k1,9401:24311261,44865281:215987 -k1,9401:25833382,44865281:215988 -k1,9401:28710787,44865281:215988 -k1,9401:29795127,44865281:215988 -k1,9401:32583029,44865281:0 -) -(1,9402:6630773,45706769:25952256,513147,126483 -g1,9401:7849087,45706769 -g1,9401:10753642,45706769 -g1,9401:12963516,45706769 -g1,9401:14110396,45706769 -g1,9401:14665485,45706769 -g1,9401:17016261,45706769 -g1,9401:20520471,45706769 -g1,9401:21371128,45706769 -g1,9401:22854863,45706769 -g1,9401:25832819,45706769 -g1,9401:26793576,45706769 -g1,9401:27407648,45706769 -g1,9401:30302373,45706769 -(1,9401:30302373,45706769:0,452978,115847 -r1,9404:32067486,45706769:1765113,568825,115847 -k1,9401:30302373,45706769:-1765113 -) -(1,9401:30302373,45706769:1765113,452978,115847 -k1,9401:30302373,45706769:3277 -h1,9401:32064209,45706769:0,411205,112570 -) -k1,9402:32583029,45706769:341873 -g1,9402:32583029,45706769 -) -] -(1,9404:32583029,45706769:0,0,0 -g1,9404:32583029,45706769 -) -) -] -(1,9404:6630773,47279633:25952256,0,0 -h1,9404:6630773,47279633:25952256,0,0 -) -] -(1,9404:4262630,4025873:0,0,0 -[1,9404:-473656,4025873:0,0,0 -(1,9404:-473656,-710413:0,0,0 -(1,9404:-473656,-710413:0,0,0 -g1,9404:-473656,-710413 -) -g1,9404:-473656,-710413 -) -] -) -] -!32652 -}158 -Input:1340:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1341:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1342:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1343:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1344:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1345:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1346:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1347:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1348:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1349:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1350:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1351:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1352:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1353:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1354:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1355:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1356:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1357:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1358:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1798 -{159 -[1,9487:4262630,47279633:28320399,43253760,0 -(1,9487:4262630,4025873:0,0,0 -[1,9487:-473656,4025873:0,0,0 -(1,9487:-473656,-710413:0,0,0 -(1,9487:-473656,-644877:0,0,0 -k1,9487:-473656,-644877:-65536 +k1,8631:3078556,49800853:-34777008 ) -(1,9487:-473656,4736287:0,0,0 -k1,9487:-473656,4736287:5209943 +] +g1,8631:6630773,4812305 ) -g1,9487:-473656,-710413 ) ] +[1,8631:6630773,45706769:25952256,40108032,0 +(1,8631:6630773,45706769:25952256,40108032,0 +(1,8631:6630773,45706769:0,0,0 +g1,8631:6630773,45706769 ) -[1,9487:6630773,47279633:25952256,43253760,0 -[1,9487:6630773,4812305:25952256,786432,0 -(1,9487:6630773,4812305:25952256,505283,134348 -(1,9487:6630773,4812305:25952256,505283,134348 -g1,9487:3078558,4812305 -[1,9487:3078558,4812305:0,0,0 -(1,9487:3078558,2439708:0,1703936,0 -k1,9487:1358238,2439708:-1720320 -(1,8393:1358238,2439708:1720320,1703936,0 -(1,8393:1358238,2439708:1179648,16384,0 -r1,9487:2537886,2439708:1179648,16384,0 +[1,8631:6630773,45706769:25952256,40108032,0 +[1,8606:6630773,11769110:25952256,6170373,0 +(1,8606:6630773,6604846:25952256,1137181,28311 +h1,8606:6630773,6604846:0,0,0 +k1,8606:20096848,6604846:12486181 +k1,8606:32583029,6604846:12486181 ) -g1,8393:3062174,2439708 -(1,8393:3062174,2439708:16384,1703936,0 -[1,8393:3062174,2439708:25952256,1703936,0 -(1,8393:3062174,1915420:25952256,1179648,0 -(1,8393:3062174,1915420:16384,1179648,0 -r1,9487:3078558,1915420:16384,1179648,0 +(1,8606:6630773,7351966:25952256,32768,229376 +(1,8606:6630773,7351966:0,32768,229376 +(1,8606:6630773,7351966:5505024,32768,229376 +r1,8631:12135797,7351966:5505024,262144,229376 ) -k1,8393:29014430,1915420:25935872 -g1,8393:29014430,1915420 +k1,8606:6630773,7351966:-5505024 ) -] +(1,8606:6630773,7351966:25952256,32768,0 +r1,8631:32583029,7351966:25952256,32768,0 ) ) +(1,8606:6630773,9186982:25952256,909509,241827 +h1,8606:6630773,9186982:0,0,0 +g1,8606:9551582,9186982 +g1,8606:11032040,9186982 +g1,8606:19103192,9186982 +g1,8606:21640615,9186982 +k1,8606:29452834,9186982:3130196 +k1,8606:32583029,9186982:3130195 ) -] -[1,9487:3078558,4812305:0,0,0 -(1,9487:3078558,2439708:0,1703936,0 -g1,9487:29030814,2439708 -g1,9487:36135244,2439708 -(1,8393:36135244,2439708:1720320,1703936,0 -(1,8393:36135244,2439708:16384,1703936,0 -[1,8393:36135244,2439708:25952256,1703936,0 -(1,8393:36135244,1915420:25952256,1179648,0 -(1,8393:36135244,1915420:16384,1179648,0 -r1,9487:36151628,1915420:16384,1179648,0 +(1,8606:6630773,9934102:25952256,32768,0 +(1,8606:6630773,9934102:5505024,32768,0 +r1,8631:12135797,9934102:5505024,32768,0 ) -k1,8393:62087500,1915420:25935872 -g1,8393:62087500,1915420 +k1,8606:22359413,9934102:10223616 +k1,8606:32583029,9934102:10223616 +) +] +(1,8609:6630773,14685467:25952256,131072,0 +r1,8631:32583029,14685467:25952256,131072,0 +g1,8609:32583029,14685467 +g1,8609:32583029,14685467 +) +(1,8611:6630773,16028960:25952256,513147,134348 +k1,8611:8596853,16028960:1966080 +k1,8610:8596853,16028960:0 +k1,8610:9787977,16028960:288693 +k1,8610:10491424,16028960:288604 +k1,8610:12611193,16028960:288693 +k1,8610:13431384,16028960:288694 +k1,8610:15858517,16028960:288693 +k1,8610:16503071,16028960:288694 +k1,8610:18017943,16028960:288693 +k1,8610:19289676,16028960:288693 +k1,8610:22940367,16028960:288694 +k1,8610:25805936,16028960:288693 +k1,8610:27113715,16028960:288694 +k1,8610:29055881,16028960:288693 +k1,8611:32583029,16028960:1966080 +) +(1,8611:6630773,16894040:25952256,513147,126483 +g1,8611:8596853,16894040 +g1,8610:10937799,16894040 +g1,8610:12421534,16894040 +g1,8610:13791236,16894040 +g1,8610:15946715,16894040 +g1,8610:17800728,16894040 +g1,8610:18809327,16894040 +g1,8610:20027641,16894040 +g1,8610:23386361,16894040 +g1,8610:24754097,16894040 +g1,8610:25620482,16894040 +k1,8611:30616949,16894040:4407954 +g1,8611:32583029,16894040 +) +(1,8612:6630773,18545552:25952256,473825,95026 +k1,8612:27178275,18545552:20547502 +h1,8612:27178275,18545552:0,0,0 +g1,8612:28475232,18545552 +g1,8612:30616949,18545552 +g1,8612:32583029,18545552 +) +(1,8613:6630773,19410632:25952256,505283,134348 +k1,8613:26177541,19410632:19546768 +h1,8612:26177541,19410632:0,0,0 +g1,8612:30167372,19410632 +g1,8613:30616949,19410632 +g1,8613:32583029,19410632 +) +(1,8613:6630773,20668928:25952256,131072,0 +r1,8631:32583029,20668928:25952256,131072,0 +g1,8613:32583029,20668928 +g1,8613:34549109,20668928 +) +(1,8617:6630773,23500088:25952256,32768,229376 +(1,8617:6630773,23500088:0,32768,229376 +(1,8617:6630773,23500088:5505024,32768,229376 +r1,8631:12135797,23500088:5505024,262144,229376 +) +k1,8617:6630773,23500088:-5505024 +) +(1,8617:6630773,23500088:25952256,32768,0 +r1,8631:32583029,23500088:25952256,32768,0 +) +) +(1,8617:6630773,25131940:25952256,615776,151780 +(1,8617:6630773,25131940:1974731,573309,14155 +g1,8617:6630773,25131940 +g1,8617:8605504,25131940 +) +g1,8617:10904245,25131940 +g1,8617:11961996,25131940 +g1,8617:13695292,25131940 +k1,8617:32583029,25131940:15886712 +g1,8617:32583029,25131940 +) +(1,8620:6630773,26390236:25952256,513147,134348 +k1,8619:7845631,26390236:172836 +k1,8619:9762380,26390236:172836 +k1,8619:11265598,26390236:172837 +k1,8619:12913649,26390236:172836 +k1,8619:15244586,26390236:172836 +k1,8619:16930648,26390236:172836 +k1,8619:20053259,26390236:172836 +k1,8619:21606939,26390236:172836 +k1,8619:25093932,26390236:172837 +k1,8619:29921790,26390236:172836 +k1,8619:31391584,26390236:172836 +k1,8619:32583029,26390236:0 +) +(1,8620:6630773,27255316:25952256,505283,134348 +k1,8619:8579705,27255316:250894 +k1,8619:10991975,27255316:250893 +k1,8619:12347151,27255316:250894 +k1,8619:13986097,27255316:250893 +k1,8619:14853029,27255316:250894 +k1,8619:20039439,27255316:250894 +k1,8619:20646192,27255316:250893 +k1,8619:23095164,27255316:250894 +k1,8619:24735420,27255316:250893 +k1,8619:27540907,27255316:250894 +k1,8619:30480087,27255316:250893 +k1,8619:31835263,27255316:250894 +k1,8619:32583029,27255316:0 +) +(1,8620:6630773,28120396:25952256,513147,134348 +k1,8619:10209139,28120396:202607 +k1,8619:11229635,28120396:202607 +k1,8619:12966440,28120396:202607 +k1,8619:13855209,28120396:202607 +k1,8619:14413676,28120396:202607 +k1,8619:16005646,28120396:202607 +k1,8619:18762847,28120396:202608 +k1,8619:20698226,28120396:202607 +k1,8619:22638848,28120396:202607 +k1,8619:24880935,28120396:202607 +k1,8619:28395732,28120396:202607 +k1,8619:29617424,28120396:202607 +k1,8619:31505617,28120396:202607 +k1,8620:32583029,28120396:0 +) +(1,8620:6630773,28985476:25952256,513147,134348 +k1,8619:8694264,28985476:174743 +k1,8619:11427532,28985476:174742 +k1,8619:11958135,28985476:174743 +k1,8619:14378796,28985476:174742 +k1,8619:15212831,28985476:174743 +k1,8619:17514872,28985476:174742 +k1,8619:18881060,28985476:174743 +k1,8619:21769648,28985476:174742 +k1,8619:23782021,28985476:174743 +k1,8619:26730247,28985476:174742 +k1,8619:30043509,28985476:174743 +k1,8620:32583029,28985476:0 +k1,8620:32583029,28985476:0 +) +(1,8622:6630773,29850556:25952256,513147,134348 +h1,8621:6630773,29850556:983040,0,0 +k1,8621:11032766,29850556:264050 +k1,8621:14246592,29850556:264051 +k1,8621:15891486,29850556:264050 +k1,8621:19296022,29850556:264051 +k1,8621:20999898,29850556:264050 +k1,8621:21915377,29850556:264051 +k1,8621:22927193,29850556:264050 +k1,8621:25675059,29850556:264051 +k1,8621:26590537,29850556:264050 +k1,8621:29006790,29850556:264051 +k1,8621:29953725,29850556:264050 +k1,8621:32583029,29850556:0 +) +(1,8622:6630773,30715636:25952256,505283,134348 +k1,8621:7493465,30715636:246654 +k1,8621:8095978,30715636:246653 +k1,8621:9580607,30715636:246654 +k1,8621:11111767,30715636:246654 +k1,8621:13196705,30715636:246653 +k1,8621:17341440,30715636:246654 +k1,8621:21425881,30715636:246653 +k1,8621:23212631,30715636:246654 +k1,8621:25492212,30715636:246654 +k1,8621:28480891,30715636:246653 +k1,8621:31391584,30715636:246654 +k1,8621:32583029,30715636:0 +) +(1,8622:6630773,31580716:25952256,473825,134348 +g1,8621:9883980,31580716 +k1,8622:32583029,31580716:19949158 +g1,8622:32583029,31580716 +) +(1,8624:6630773,32445796:25952256,513147,126483 +h1,8623:6630773,32445796:983040,0,0 +k1,8623:9565475,32445796:256246 +k1,8623:11751100,32445796:256245 +k1,8623:14232293,32445796:256246 +k1,8623:15507624,32445796:256246 +k1,8623:17417343,32445796:256246 +k1,8623:20613533,32445796:256245 +k1,8623:21529071,32445796:256246 +k1,8623:25275109,32445796:256246 +k1,8623:27391922,32445796:256246 +k1,8623:28299596,32445796:256246 +k1,8623:29303607,32445796:256245 +k1,8623:31931601,32445796:256246 +k1,8623:32583029,32445796:0 +) +(1,8624:6630773,33310876:25952256,513147,126483 +k1,8623:9598780,33310876:205664 +k1,8623:11193806,33310876:205663 +k1,8623:12837985,33310876:205664 +k1,8623:14235094,33310876:205664 +k1,8623:16602134,33310876:205663 +k1,8623:18523531,33310876:205664 +k1,8623:20195890,33310876:205663 +k1,8623:25458312,33310876:205664 +k1,8623:26855421,33310876:205664 +k1,8623:30224507,33310876:205663 +k1,8623:31089463,33310876:205664 +k1,8623:32583029,33310876:0 +) +(1,8624:6630773,34175956:25952256,473825,126483 +g1,8623:7185862,34175956 +g1,8623:11315940,34175956 +k1,8624:32583029,34175956:19698812 +g1,8624:32583029,34175956 +) +(1,8626:6630773,35041036:25952256,513147,134348 +h1,8625:6630773,35041036:983040,0,0 +k1,8625:8485142,35041036:243494 +k1,8625:9931877,35041036:243494 +k1,8625:12766665,35041036:243494 +k1,8625:13223106,35041036:243449 +k1,8625:14599062,35041036:243494 +k1,8625:16317116,35041036:243494 +k1,8625:17731083,35041036:243494 +k1,8625:20533103,35041036:243494 +k1,8625:21795682,35041036:243494 +k1,8625:23131661,35041036:243494 +k1,8625:24042311,35041036:243494 +k1,8625:24700603,35041036:243449 +k1,8625:27279145,35041036:243494 +k1,8625:30001211,35041036:243494 +k1,8625:31812326,35041036:243494 +k1,8625:32583029,35041036:0 +) +(1,8626:6630773,35906116:25952256,505283,126483 +g1,8625:9968521,35906116 +g1,8625:12292427,35906116 +k1,8626:32583029,35906116:18285856 +g1,8626:32583029,35906116 +) +(1,8627:6630773,38737276:25952256,32768,229376 +(1,8627:6630773,38737276:0,32768,229376 +(1,8627:6630773,38737276:5505024,32768,229376 +r1,8631:12135797,38737276:5505024,262144,229376 +) +k1,8627:6630773,38737276:-5505024 +) +(1,8627:6630773,38737276:25952256,32768,0 +r1,8631:32583029,38737276:25952256,32768,0 +) +) +(1,8627:6630773,40369128:25952256,606339,161218 +(1,8627:6630773,40369128:1974731,582746,14155 +g1,8627:6630773,40369128 +g1,8627:8605504,40369128 +) +g1,8627:11767747,40369128 +k1,8627:32583029,40369128:18128044 +g1,8627:32583029,40369128 +) +(1,8630:6630773,41627424:25952256,505283,134348 +k1,8629:7499830,41627424:241222 +k1,8629:8155852,41627424:241179 +k1,8629:11413041,41627424:241222 +k1,8629:12673348,41627424:241222 +k1,8629:15112648,41627424:241222 +k1,8629:17335022,41627424:241221 +k1,8629:18227672,41627424:241222 +k1,8629:18824754,41627424:241222 +k1,8629:21357770,41627424:241222 +k1,8629:24441287,41627424:241221 +k1,8629:26407417,41627424:241222 +k1,8629:27180136,41627424:241222 +k1,8629:27777218,41627424:241222 +k1,8629:30023185,41627424:241221 +k1,8629:30751953,41627424:241180 +k1,8629:32583029,41627424:0 +) +(1,8630:6630773,42492504:25952256,513147,134348 +k1,8629:7343388,42492504:181118 +k1,8629:9002997,42492504:181117 +k1,8629:10751736,42492504:181118 +k1,8629:13604101,42492504:181118 +k1,8629:18557550,42492504:181117 +k1,8629:20234855,42492504:181118 +k1,8629:23932634,42492504:181117 +k1,8629:26412100,42492504:181118 +k1,8629:27244646,42492504:181118 +k1,8629:30351290,42492504:181117 +k1,8629:30888268,42492504:181118 +k1,8629:32583029,42492504:0 +) +(1,8630:6630773,43357584:25952256,505283,126483 +k1,8629:8394412,43357584:254345 +k1,8629:10798338,43357584:254345 +k1,8629:14569345,43357584:254345 +k1,8629:15927972,43357584:254345 +k1,8629:16930084,43357584:254346 +k1,8629:20317050,43357584:254345 +k1,8629:21838861,43357584:254345 +k1,8629:25506976,43357584:254345 +k1,8629:29451653,43357584:254345 +k1,8629:31591469,43357584:254345 +k1,8629:32583029,43357584:0 +) +(1,8630:6630773,44222664:25952256,513147,134348 +k1,8629:7790701,44222664:140843 +k1,8629:11236524,44222664:140842 +k1,8629:12036659,44222664:140843 +k1,8629:14469296,44222664:140843 +k1,8629:17452435,44222664:140843 +k1,8629:21372083,44222664:140842 +k1,8629:23699207,44222664:140843 +k1,8629:24944332,44222664:140843 +k1,8629:26447669,44222664:140843 +k1,8629:28156132,44222664:140842 +k1,8629:30421652,44222664:140843 +k1,8629:32583029,44222664:0 +) +(1,8630:6630773,45087744:25952256,513147,134348 +k1,8629:10171564,45087744:178794 +k1,8629:11725959,45087744:178794 +k1,8629:12260613,45087744:178794 +k1,8629:13572525,45087744:178794 +k1,8629:15247506,45087744:178794 +k1,8629:19116632,45087744:178794 +k1,8629:19946854,45087744:178794 +k1,8629:22811969,45087744:178794 +k1,8629:25152140,45087744:178794 +k1,8629:28692931,45087744:178794 +k1,8629:31923737,45087744:178794 +k1,8629:32583029,45087744:0 +) +] +(1,8631:32583029,45706769:0,0,0 +g1,8631:32583029,45706769 +) +) +] +(1,8631:6630773,47279633:25952256,485622,11795 +(1,8631:6630773,47279633:25952256,485622,11795 +(1,8631:6630773,47279633:0,0,0 +v1,8631:6630773,47279633:0,0,0 +) +g1,8631:6830002,47279633 +k1,8631:31387652,47279633:24557650 +) +) +] +(1,8631:4262630,4025873:0,0,0 +[1,8631:-473656,4025873:0,0,0 +(1,8631:-473656,-710413:0,0,0 +(1,8631:-473656,-710413:0,0,0 +g1,8631:-473656,-710413 +) +g1,8631:-473656,-710413 ) ] ) -g1,8393:36675916,2439708 -(1,8393:36675916,2439708:1179648,16384,0 -r1,9487:37855564,2439708:1179648,16384,0 +] +!14244 +}134 +Input:1187:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1188:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1189:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!294 +{135 +[1,8666:4262630,47279633:28320399,43253760,0 +(1,8666:4262630,4025873:0,0,0 +[1,8666:-473656,4025873:0,0,0 +(1,8666:-473656,-710413:0,0,0 +(1,8666:-473656,-644877:0,0,0 +k1,8666:-473656,-644877:-65536 ) +(1,8666:-473656,4736287:0,0,0 +k1,8666:-473656,4736287:5209943 ) -k1,9487:3078556,2439708:-34777008 +g1,8666:-473656,-710413 ) ] -[1,9487:3078558,4812305:0,0,0 -(1,9487:3078558,49800853:0,16384,2228224 -k1,9487:1358238,49800853:-1720320 -(1,8393:1358238,49800853:1720320,16384,2228224 -(1,8393:1358238,49800853:1179648,16384,0 -r1,9487:2537886,49800853:1179648,16384,0 ) -g1,8393:3062174,49800853 -(1,8393:3062174,52029077:16384,1703936,0 -[1,8393:3062174,52029077:25952256,1703936,0 -(1,8393:3062174,51504789:25952256,1179648,0 -(1,8393:3062174,51504789:16384,1179648,0 -r1,9487:3078558,51504789:16384,1179648,0 +[1,8666:6630773,47279633:25952256,43253760,0 +[1,8666:6630773,4812305:25952256,786432,0 +(1,8666:6630773,4812305:25952256,505283,134348 +(1,8666:6630773,4812305:25952256,505283,134348 +g1,8666:3078558,4812305 +[1,8666:3078558,4812305:0,0,0 +(1,8666:3078558,2439708:0,1703936,0 +k1,8666:1358238,2439708:-1720320 +(1,8606:1358238,2439708:1720320,1703936,0 +(1,8606:1358238,2439708:1179648,16384,0 +r1,8666:2537886,2439708:1179648,16384,0 +) +g1,8606:3062174,2439708 +(1,8606:3062174,2439708:16384,1703936,0 +[1,8606:3062174,2439708:25952256,1703936,0 +(1,8606:3062174,1915420:25952256,1179648,0 +(1,8606:3062174,1915420:16384,1179648,0 +r1,8666:3078558,1915420:16384,1179648,0 ) -k1,8393:29014430,51504789:25935872 -g1,8393:29014430,51504789 +k1,8606:29014430,1915420:25935872 +g1,8606:29014430,1915420 ) ] ) ) ) ] -[1,9487:3078558,4812305:0,0,0 -(1,9487:3078558,49800853:0,16384,2228224 -g1,9487:29030814,49800853 -g1,9487:36135244,49800853 -(1,8393:36135244,49800853:1720320,16384,2228224 -(1,8393:36135244,52029077:16384,1703936,0 -[1,8393:36135244,52029077:25952256,1703936,0 -(1,8393:36135244,51504789:25952256,1179648,0 -(1,8393:36135244,51504789:16384,1179648,0 -r1,9487:36151628,51504789:16384,1179648,0 +[1,8666:3078558,4812305:0,0,0 +(1,8666:3078558,2439708:0,1703936,0 +g1,8666:29030814,2439708 +g1,8666:36135244,2439708 +(1,8606:36135244,2439708:1720320,1703936,0 +(1,8606:36135244,2439708:16384,1703936,0 +[1,8606:36135244,2439708:25952256,1703936,0 +(1,8606:36135244,1915420:25952256,1179648,0 +(1,8606:36135244,1915420:16384,1179648,0 +r1,8666:36151628,1915420:16384,1179648,0 ) -k1,8393:62087500,51504789:25935872 -g1,8393:62087500,51504789 +k1,8606:62087500,1915420:25935872 +g1,8606:62087500,1915420 ) ] ) -g1,8393:36675916,49800853 -(1,8393:36675916,49800853:1179648,16384,0 -r1,9487:37855564,49800853:1179648,16384,0 +g1,8606:36675916,2439708 +(1,8606:36675916,2439708:1179648,16384,0 +r1,8666:37855564,2439708:1179648,16384,0 ) ) -k1,9487:3078556,49800853:-34777008 +k1,8666:3078556,2439708:-34777008 ) ] -g1,9487:6630773,4812305 -k1,9487:21643106,4812305:13816956 -g1,9487:23265777,4812305 -g1,9487:24088253,4812305 -g1,9487:28572226,4812305 -g1,9487:29981905,4812305 -) -) -] -[1,9487:6630773,45706769:25952256,40108032,0 -(1,9487:6630773,45706769:25952256,40108032,0 -(1,9487:6630773,45706769:0,0,0 -g1,9487:6630773,45706769 +[1,8666:3078558,4812305:0,0,0 +(1,8666:3078558,49800853:0,16384,2228224 +k1,8666:1358238,49800853:-1720320 +(1,8606:1358238,49800853:1720320,16384,2228224 +(1,8606:1358238,49800853:1179648,16384,0 +r1,8666:2537886,49800853:1179648,16384,0 ) -[1,9487:6630773,45706769:25952256,40108032,0 -v1,9404:6630773,6254097:0,393216,0 -(1,9412:6630773,7854363:25952256,1993482,196608 -g1,9412:6630773,7854363 -g1,9412:6630773,7854363 -g1,9412:6434165,7854363 -(1,9412:6434165,7854363:0,1993482,196608 -r1,9487:32779637,7854363:26345472,2190090,196608 -k1,9412:6434165,7854363:-26345472 -) -(1,9412:6434165,7854363:26345472,1993482,196608 -[1,9412:6630773,7854363:25952256,1796874,0 -(1,9406:6630773,6445986:25952256,388497,9436 -(1,9405:6630773,6445986:0,0,0 -g1,9405:6630773,6445986 -g1,9405:6630773,6445986 -g1,9405:6303093,6445986 -(1,9405:6303093,6445986:0,0,0 -) -g1,9405:6630773,6445986 -) -g1,9406:8211502,6445986 -g1,9406:9159940,6445986 -k1,9406:9159940,6445986:0 -h1,9406:10740669,6445986:0,0,0 -k1,9406:32583029,6445986:21842360 -g1,9406:32583029,6445986 -) -(1,9407:6630773,7112164:25952256,410518,82312 -h1,9407:6630773,7112164:0,0,0 -g1,9407:10424521,7112164 -g1,9407:11056813,7112164 -g1,9407:12005251,7112164 -g1,9407:14218272,7112164 -h1,9407:15799000,7112164:0,0,0 -k1,9407:32583028,7112164:16784028 -g1,9407:32583028,7112164 -) -(1,9411:6630773,7778342:25952256,404226,76021 -(1,9409:6630773,7778342:0,0,0 -g1,9409:6630773,7778342 -g1,9409:6630773,7778342 -g1,9409:6303093,7778342 -(1,9409:6303093,7778342:0,0,0 -) -g1,9409:6630773,7778342 -) -g1,9411:7579210,7778342 -g1,9411:8843793,7778342 -g1,9411:9476085,7778342 -g1,9411:10108377,7778342 -g1,9411:10740669,7778342 -g1,9411:11372961,7778342 -g1,9411:12005253,7778342 -g1,9411:12637545,7778342 -h1,9411:12953691,7778342:0,0,0 -k1,9411:32583029,7778342:19629338 -g1,9411:32583029,7778342 -) -] -) -g1,9412:32583029,7854363 -g1,9412:6630773,7854363 -g1,9412:6630773,7854363 -g1,9412:32583029,7854363 -g1,9412:32583029,7854363 -) -h1,9412:6630773,8050971:0,0,0 -v1,9416:6630773,9941035:0,393216,0 -(1,9431:6630773,20250689:25952256,10702870,0 -g1,9431:6630773,20250689 -g1,9431:6303093,20250689 -r1,9487:6401397,20250689:98304,10702870,0 -g1,9431:6600626,20250689 -g1,9431:6797234,20250689 -[1,9431:6797234,20250689:25785795,10702870,0 -(1,9417:6797234,10373573:25785795,825754,196608 -(1,9416:6797234,10373573:0,825754,196608 -r1,9487:7890375,10373573:1093141,1022362,196608 -k1,9416:6797234,10373573:-1093141 -) -(1,9416:6797234,10373573:1093141,825754,196608 -) -k1,9416:8109757,10373573:219382 -k1,9416:9835975,10373573:327680 -k1,9416:11772399,10373573:219381 -k1,9416:15218774,10373573:219382 -k1,9416:18429874,10373573:219381 -k1,9416:19300684,10373573:219382 -k1,9416:20862899,10373573:219382 -k1,9416:22649901,10373573:219381 -k1,9416:24263234,10373573:219382 -k1,9416:24838475,10373573:219381 -k1,9416:26190975,10373573:219382 -k1,9416:29535768,10373573:219381 -k1,9416:31563944,10373573:219382 -k1,9416:32583029,10373573:0 -) -(1,9417:6797234,11215061:25785795,505283,126483 -k1,9416:10022097,11215061:233144 -k1,9416:12123672,11215061:233144 -k1,9416:13849727,11215061:233145 -k1,9416:15253344,11215061:233144 -k1,9416:19151261,11215061:233144 -k1,9416:20681363,11215061:233144 -k1,9416:23693234,11215061:233144 -k1,9416:25937023,11215061:233144 -k1,9416:27161728,11215061:233145 -k1,9416:28943488,11215061:233144 -k1,9416:30556820,11215061:233144 -k1,9416:31955194,11215061:233144 -k1,9416:32583029,11215061:0 -) -(1,9417:6797234,12056549:25785795,505283,126483 -k1,9416:9864537,12056549:227628 -k1,9416:12021546,12056549:227629 -k1,9416:13708005,12056549:227628 -k1,9416:15266014,12056549:227628 -k1,9416:18485361,12056549:227628 -k1,9416:19364418,12056549:227629 -k1,9416:20783491,12056549:227628 -k1,9416:22713089,12056549:227628 -k1,9416:25570677,12056549:227628 -k1,9416:27669359,12056549:227629 -k1,9416:28524822,12056549:227628 -k1,9416:30454420,12056549:227628 -k1,9416:32583029,12056549:0 -) -(1,9417:6797234,12898037:25785795,513147,126483 -g1,9416:8339296,12898037 -g1,9416:9932476,12898037 -g1,9416:11150790,12898037 -g1,9416:12846206,12898037 -g1,9416:14538345,12898037 -g1,9416:15908047,12898037 -g1,9416:17558243,12898037 -g1,9416:21422245,12898037 -g1,9416:22951855,12898037 -(1,9416:22951855,12898037:0,459977,115847 -r1,9487:25068680,12898037:2116825,575824,115847 -k1,9416:22951855,12898037:-2116825 -) -(1,9416:22951855,12898037:2116825,459977,115847 -k1,9416:22951855,12898037:3277 -h1,9416:25065403,12898037:0,411205,112570 -) -g1,9416:25267909,12898037 -k1,9417:32583029,12898037:5214691 -g1,9417:32583029,12898037 -) -v1,9419:6797234,14088503:0,393216,0 -(1,9428:6797234,17712469:25785795,4017182,196608 -g1,9428:6797234,17712469 -g1,9428:6797234,17712469 -g1,9428:6600626,17712469 -(1,9428:6600626,17712469:0,4017182,196608 -r1,9487:32779637,17712469:26179011,4213790,196608 -k1,9428:6600625,17712469:-26179012 -) -(1,9428:6600626,17712469:26179011,4017182,196608 -[1,9428:6797234,17712469:25785795,3820574,0 -(1,9421:6797234,14280392:25785795,388497,9436 -(1,9420:6797234,14280392:0,0,0 -g1,9420:6797234,14280392 -g1,9420:6797234,14280392 -g1,9420:6469554,14280392 -(1,9420:6469554,14280392:0,0,0 -) -g1,9420:6797234,14280392 -) -g1,9421:7429526,14280392 -g1,9421:8377964,14280392 -h1,9421:9642547,14280392:0,0,0 -k1,9421:32583029,14280392:22940482 -g1,9421:32583029,14280392 -) -(1,9422:6797234,14946570:25785795,410518,82312 -h1,9422:6797234,14946570:0,0,0 -g1,9422:9642545,14946570 -g1,9422:10274837,14946570 -g1,9422:11223275,14946570 -g1,9422:12171713,14946570 -k1,9422:12171713,14946570:0 -h1,9422:13120151,14946570:0,0,0 -k1,9422:32583029,14946570:19462878 -g1,9422:32583029,14946570 -) -(1,9423:6797234,15612748:25785795,410518,82312 -h1,9423:6797234,15612748:0,0,0 -g1,9423:9642545,15612748 -g1,9423:10274837,15612748 -g1,9423:11223275,15612748 -g1,9423:11855567,15612748 -g1,9423:12487859,15612748 -g1,9423:13436297,15612748 -g1,9423:14068589,15612748 -g1,9423:14700881,15612748 -h1,9423:15333173,15612748:0,0,0 -k1,9423:32583029,15612748:17249856 -g1,9423:32583029,15612748 -) -(1,9424:6797234,16278926:25785795,410518,101187 -h1,9424:6797234,16278926:0,0,0 -g1,9424:10907128,16278926 -g1,9424:11539420,16278926 -g1,9424:12804004,16278926 -g1,9424:13436296,16278926 -g1,9424:14068588,16278926 -g1,9424:15017026,16278926 -g1,9424:15649318,16278926 -g1,9424:16281610,16278926 -g1,9424:17230048,16278926 -g1,9424:17862340,16278926 -k1,9424:17862340,16278926:41419 -h1,9424:19800633,16278926:0,0,0 -k1,9424:32583029,16278926:12782396 -g1,9424:32583029,16278926 -) -(1,9425:6797234,16945104:25785795,410518,107478 -h1,9425:6797234,16945104:0,0,0 -g1,9425:12804004,16945104 -g1,9425:13436296,16945104 -g1,9425:14068588,16945104 -g1,9425:15017026,16945104 -g1,9425:15649318,16945104 -g1,9425:16281610,16945104 -g1,9425:17230048,16945104 -g1,9425:17862340,16945104 -g1,9425:19443069,16945104 -g1,9425:21023798,16945104 -k1,9425:21023798,16945104:41419 -h1,9425:22962091,16945104:0,0,0 -k1,9425:32583029,16945104:9620938 -g1,9425:32583029,16945104 -) -(1,9426:6797234,17611282:25785795,410518,101187 -h1,9426:6797234,17611282:0,0,0 -g1,9426:10274837,17611282 -g1,9426:10907129,17611282 -g1,9426:11539421,17611282 -g1,9426:12487859,17611282 -g1,9426:13120151,17611282 -g1,9426:13752443,17611282 -g1,9426:14700881,17611282 -g1,9426:15333173,17611282 -g1,9426:16281610,17611282 -k1,9426:16281610,17611282:39846 -h1,9426:18850621,17611282:0,0,0 -k1,9426:32583029,17611282:13732408 -g1,9426:32583029,17611282 -) -] -) -g1,9428:32583029,17712469 -g1,9428:6797234,17712469 -g1,9428:6797234,17712469 -g1,9428:32583029,17712469 -g1,9428:32583029,17712469 -) -h1,9428:6797234,17909077:0,0,0 -(1,9431:6797234,19274853:25785795,513147,134348 -h1,9430:6797234,19274853:983040,0,0 -k1,9430:9514538,19274853:182371 -k1,9430:10162870,19274853:182371 -k1,9430:11515713,19274853:182370 -k1,9430:13228350,19274853:182371 -k1,9430:14062149,19274853:182371 -k1,9430:16525828,19274853:182371 -k1,9430:18167030,19274853:182371 -k1,9430:23004423,19274853:182371 -k1,9430:23853949,19274853:182370 -(1,9430:23853949,19274853:0,452978,122846 -r1,9487:26322486,19274853:2468537,575824,122846 -k1,9430:23853949,19274853:-2468537 -) -(1,9430:23853949,19274853:2468537,452978,122846 -k1,9430:23853949,19274853:3277 -h1,9430:26319209,19274853:0,411205,112570 -) -k1,9430:26504857,19274853:182371 -k1,9430:28697873,19274853:182371 -k1,9430:30071689,19274853:182371 -k1,9430:32583029,19274853:0 -) -(1,9431:6797234,20116341:25785795,505283,134348 -g1,9430:9323646,20116341 -g1,9430:10547858,20116341 -g1,9430:13025774,20116341 -h1,9430:13996362,20116341:0,0,0 -g1,9430:14195591,20116341 -g1,9430:15204190,20116341 -g1,9430:16901572,20116341 -h1,9430:17698490,20116341:0,0,0 -k1,9431:32583029,20116341:14710869 -g1,9431:32583029,20116341 -) -] -g1,9431:32583029,20250689 -) -h1,9431:6630773,20250689:0,0,0 -v1,9434:6630773,21616465:0,393216,0 -(1,9470:6630773,39587288:25952256,18364039,0 -g1,9470:6630773,39587288 -g1,9470:6303093,39587288 -r1,9487:6401397,39587288:98304,18364039,0 -g1,9470:6600626,39587288 -g1,9470:6797234,39587288 -[1,9470:6797234,39587288:25785795,18364039,0 -(1,9435:6797234,22037049:25785795,813800,267386 -(1,9434:6797234,22037049:0,813800,267386 -r1,9487:8134168,22037049:1336934,1081186,267386 -k1,9434:6797234,22037049:-1336934 -) -(1,9434:6797234,22037049:1336934,813800,267386 -) -k1,9434:8371204,22037049:237036 -k1,9434:8698884,22037049:327680 -k1,9434:9563756,22037049:237037 -k1,9434:10819877,22037049:237036 -k1,9434:12423994,22037049:237036 -k1,9434:13328187,22037049:237037 -(1,9434:13328187,22037049:0,459977,115847 -r1,9487:16148436,22037049:2820249,575824,115847 -k1,9434:13328187,22037049:-2820249 -) -(1,9434:13328187,22037049:2820249,459977,115847 -k1,9434:13328187,22037049:3277 -h1,9434:16145159,22037049:0,411205,112570 -) -k1,9434:16559142,22037049:237036 -k1,9434:17815264,22037049:237037 -k1,9434:20065566,22037049:237036 -k1,9434:20961894,22037049:237036 -k1,9434:22218016,22037049:237037 -k1,9434:25233779,22037049:237036 -k1,9434:27151158,22037049:237036 -k1,9434:27919692,22037049:237037 -k1,9434:31821501,22037049:237036 -k1,9434:32583029,22037049:0 -) -(1,9435:6797234,22878537:25785795,513147,134348 -k1,9434:7969018,22878537:152699 -k1,9434:10134983,22878537:152699 -k1,9434:10946973,22878537:152698 -k1,9434:12118757,22878537:152699 -k1,9434:14341083,22878537:152699 -k1,9434:16471659,22878537:152699 -k1,9434:18829644,22878537:152698 -k1,9434:19668505,22878537:152699 -k1,9434:20591907,22878537:152699 -k1,9434:23816934,22878537:152699 -k1,9434:24621061,22878537:152699 -k1,9434:25562157,22878537:152698 -k1,9434:27020989,22878537:152699 -k1,9434:29302297,22878537:152699 -k1,9434:32583029,22878537:0 -) -(1,9435:6797234,23720025:25785795,513147,126483 -k1,9434:9343854,23720025:180770 -(1,9434:9343854,23720025:0,414482,115847 -r1,9487:10757255,23720025:1413401,530329,115847 -k1,9434:9343854,23720025:-1413401 -) -(1,9434:9343854,23720025:1413401,414482,115847 -k1,9434:9343854,23720025:3277 -h1,9434:10753978,23720025:0,411205,112570 -) -k1,9434:11318789,23720025:180770 -k1,9434:11987128,23720025:180751 -k1,9434:14906648,23720025:180770 -k1,9434:17591549,23720025:180770 -k1,9434:18303816,23720025:180770 -k1,9434:19136013,23720025:180769 -k1,9434:20409268,23720025:180770 -k1,9434:20945898,23720025:180770 -k1,9434:24159019,23720025:180770 -k1,9434:25624295,23720025:180770 -k1,9434:28146010,23720025:180769 -k1,9434:28682640,23720025:180770 -(1,9434:28682640,23720025:0,452978,122846 -r1,9487:31151177,23720025:2468537,575824,122846 -k1,9434:28682640,23720025:-2468537 -) -(1,9434:28682640,23720025:2468537,452978,122846 -k1,9434:28682640,23720025:3277 -h1,9434:31147900,23720025:0,411205,112570 -) -k1,9434:31331947,23720025:180770 -k1,9435:32583029,23720025:0 -) -(1,9435:6797234,24561513:25785795,513147,134348 -k1,9434:7947239,24561513:210219 -k1,9434:8816750,24561513:210219 -k1,9434:11040235,24561513:210219 -k1,9434:12580836,24561513:210220 -k1,9434:15852242,24561513:210219 -k1,9434:17346967,24561513:210219 -k1,9434:18015283,24561513:210219 -k1,9434:19357964,24561513:210219 -k1,9434:20315949,24561513:210219 -k1,9434:23163338,24561513:210220 -k1,9434:25903247,24561513:210219 -k1,9434:29516095,24561513:210219 -k1,9434:31931601,24561513:210219 -k1,9434:32583029,24561513:0 -) -(1,9435:6797234,25403001:25785795,513147,134348 -k1,9434:7982652,25403001:166333 -k1,9434:9850955,25403001:166333 -k1,9434:12145897,25403001:166333 -k1,9434:15923264,25403001:166333 -k1,9434:18455447,25403001:166333 -(1,9434:18455447,25403001:0,414482,115847 -r1,9487:19517136,25403001:1061689,530329,115847 -k1,9434:18455447,25403001:-1061689 -) -(1,9434:18455447,25403001:1061689,414482,115847 -k1,9434:18455447,25403001:3277 -h1,9434:19513859,25403001:0,411205,112570 -) -k1,9434:19683468,25403001:166332 -k1,9434:21041246,25403001:166333 -(1,9434:21041246,25403001:0,414482,115847 -r1,9487:21751224,25403001:709978,530329,115847 -k1,9434:21041246,25403001:-709978 -) -(1,9434:21041246,25403001:709978,414482,115847 -k1,9434:21041246,25403001:3277 -h1,9434:21747947,25403001:0,411205,112570 -) -k1,9434:22124651,25403001:166333 -k1,9434:23282544,25403001:166333 -k1,9434:25646955,25403001:166333 -k1,9434:28747990,25403001:166333 -k1,9434:29723693,25403001:166333 -k1,9434:32583029,25403001:0 -) -(1,9435:6797234,26244489:25785795,513147,134348 -k1,9434:8104958,26244489:175262 -k1,9434:9632883,26244489:175262 -k1,9434:11644464,26244489:175262 -k1,9434:14652847,26244489:175262 -k1,9434:15444147,26244489:175262 -k1,9434:15975269,26244489:175262 -k1,9434:18929258,26244489:175262 -k1,9434:20784863,26244489:175262 -k1,9434:21619417,26244489:175262 -k1,9434:23807945,26244489:175262 -k1,9434:25313588,26244489:175262 -k1,9434:26882801,26244489:175262 -k1,9434:28077148,26244489:175262 -k1,9434:31470228,26244489:175262 -k1,9435:32583029,26244489:0 -) -(1,9435:6797234,27085977:25785795,513147,134348 -k1,9434:8928624,27085977:162033 -k1,9434:9749950,27085977:162034 -k1,9434:10931068,27085977:162033 -k1,9434:13401279,27085977:162033 -k1,9434:15768600,27085977:162034 -k1,9434:16582061,27085977:162033 -(1,9434:16582061,27085977:0,414482,115847 -r1,9487:17643750,27085977:1061689,530329,115847 -k1,9434:16582061,27085977:-1061689 -) -(1,9434:16582061,27085977:1061689,414482,115847 -k1,9434:16582061,27085977:3277 -h1,9434:17640473,27085977:0,411205,112570 -) -k1,9434:17805783,27085977:162033 -k1,9434:19159262,27085977:162034 -(1,9434:19159262,27085977:0,414482,115847 -r1,9487:19869240,27085977:709978,530329,115847 -k1,9434:19159262,27085977:-709978 -) -(1,9434:19159262,27085977:709978,414482,115847 -k1,9434:19159262,27085977:3277 -h1,9434:19865963,27085977:0,411205,112570 -) -k1,9434:20031273,27085977:162033 -k1,9434:21931321,27085977:162033 -k1,9434:25385884,27085977:162034 -k1,9434:26445760,27085977:162033 -k1,9434:27514156,27085977:162033 -k1,9434:28879431,27085977:162034 -k1,9434:29802992,27085977:162033 -k1,9434:32583029,27085977:0 -) -(1,9435:6797234,27927465:25785795,513147,134348 -k1,9434:8736007,27927465:203380 -k1,9434:11009014,27927465:203380 -k1,9434:13520572,27927465:203380 -k1,9434:14383243,27927465:203379 -k1,9434:17348966,27927465:203380 -k1,9434:20069584,27927465:203380 -k1,9434:21526668,27927465:203380 -k1,9434:22834330,27927465:203380 -k1,9434:24526033,27927465:203380 -k1,9434:26123363,27927465:203379 -k1,9434:27345828,27927465:203380 -k1,9434:30540927,27927465:203380 -k1,9434:32583029,27927465:0 -) -(1,9435:6797234,28768953:25785795,505283,134348 -g1,9434:9355104,28768953 -g1,9434:10935177,28768953 -g1,9434:12304879,28768953 -g1,9434:16168881,28768953 -g1,9434:17665068,28768953 -g1,9434:18883382,28768953 -g1,9434:21861338,28768953 -g1,9434:24071212,28768953 -g1,9434:25262001,28768953 -g1,9434:27009846,28768953 -g1,9434:28589263,28768953 -k1,9435:32583029,28768953:2828536 -g1,9435:32583029,28768953 -) -v1,9437:6797234,29959419:0,393216,0 -(1,9468:6797234,38866392:25785795,9300189,196608 -g1,9468:6797234,38866392 -g1,9468:6797234,38866392 -g1,9468:6600626,38866392 -(1,9468:6600626,38866392:0,9300189,196608 -r1,9487:32779637,38866392:26179011,9496797,196608 -k1,9468:6600625,38866392:-26179012 -) -(1,9468:6600626,38866392:26179011,9300189,196608 -[1,9468:6797234,38866392:25785795,9103581,0 -(1,9439:6797234,30173329:25785795,410518,82312 -(1,9438:6797234,30173329:0,0,0 -g1,9438:6797234,30173329 -g1,9438:6797234,30173329 -g1,9438:6469554,30173329 -(1,9438:6469554,30173329:0,0,0 -) -g1,9438:6797234,30173329 -) -k1,9439:6797234,30173329:0 -g1,9439:10907129,30173329 -g1,9439:12487859,30173329 -k1,9439:12487859,30173329:0 -h1,9439:14384735,30173329:0,0,0 -k1,9439:32583029,30173329:18198294 -g1,9439:32583029,30173329 -) -(1,9443:6797234,30839507:25785795,404226,76021 -(1,9441:6797234,30839507:0,0,0 -g1,9441:6797234,30839507 -g1,9441:6797234,30839507 -g1,9441:6469554,30839507 -(1,9441:6469554,30839507:0,0,0 -) -g1,9441:6797234,30839507 -) -g1,9443:7745671,30839507 -g1,9443:9010254,30839507 -h1,9443:9326400,30839507:0,0,0 -k1,9443:32583028,30839507:23256628 -g1,9443:32583028,30839507 -) -(1,9445:6797234,32161045:25785795,410518,82312 -(1,9444:6797234,32161045:0,0,0 -g1,9444:6797234,32161045 -g1,9444:6797234,32161045 -g1,9444:6469554,32161045 -(1,9444:6469554,32161045:0,0,0 -) -g1,9444:6797234,32161045 -) -k1,9445:6797234,32161045:0 -g1,9445:11223274,32161045 -g1,9445:12804004,32161045 -k1,9445:12804004,32161045:0 -h1,9445:14700880,32161045:0,0,0 -k1,9445:32583028,32161045:17882148 -g1,9445:32583028,32161045 -) -(1,9449:6797234,32827223:25785795,404226,76021 -(1,9447:6797234,32827223:0,0,0 -g1,9447:6797234,32827223 -g1,9447:6797234,32827223 -g1,9447:6469554,32827223 -(1,9447:6469554,32827223:0,0,0 -) -g1,9447:6797234,32827223 -) -g1,9449:7745671,32827223 -g1,9449:9010254,32827223 -k1,9449:9010254,32827223:0 -h1,9449:9642545,32827223:0,0,0 -k1,9449:32583029,32827223:22940484 -g1,9449:32583029,32827223 -) -(1,9451:6797234,34148761:25785795,410518,82312 -(1,9450:6797234,34148761:0,0,0 -g1,9450:6797234,34148761 -g1,9450:6797234,34148761 -g1,9450:6469554,34148761 -(1,9450:6469554,34148761:0,0,0 -) -g1,9450:6797234,34148761 -) -k1,9451:6797234,34148761:0 -g1,9451:11539421,34148761 -g1,9451:14068587,34148761 -g1,9451:15649317,34148761 -k1,9451:15649317,34148761:0 -h1,9451:17546193,34148761:0,0,0 -k1,9451:32583029,34148761:15036836 -g1,9451:32583029,34148761 -) -(1,9455:6797234,34814939:25785795,404226,76021 -(1,9453:6797234,34814939:0,0,0 -g1,9453:6797234,34814939 -g1,9453:6797234,34814939 -g1,9453:6469554,34814939 -(1,9453:6469554,34814939:0,0,0 -) -g1,9453:6797234,34814939 -) -g1,9455:7745671,34814939 -g1,9455:9010254,34814939 -g1,9455:9326400,34814939 -g1,9455:9958692,34814939 -k1,9455:9958692,34814939:0 -h1,9455:10590983,34814939:0,0,0 -k1,9455:32583029,34814939:21992046 -g1,9455:32583029,34814939 -) -(1,9457:6797234,36136477:25785795,410518,82312 -(1,9456:6797234,36136477:0,0,0 -g1,9456:6797234,36136477 -g1,9456:6797234,36136477 -g1,9456:6469554,36136477 -(1,9456:6469554,36136477:0,0,0 -) -g1,9456:6797234,36136477 -) -k1,9457:6797234,36136477:0 -g1,9457:11855566,36136477 -g1,9457:14068587,36136477 -g1,9457:15649317,36136477 -k1,9457:15649317,36136477:0 -h1,9457:17546193,36136477:0,0,0 -k1,9457:32583029,36136477:15036836 -g1,9457:32583029,36136477 -) -(1,9461:6797234,36802655:25785795,404226,76021 -(1,9459:6797234,36802655:0,0,0 -g1,9459:6797234,36802655 -g1,9459:6797234,36802655 -g1,9459:6469554,36802655 -(1,9459:6469554,36802655:0,0,0 -) -g1,9459:6797234,36802655 -) -g1,9461:7745671,36802655 -g1,9461:9010254,36802655 -g1,9461:9958691,36802655 -g1,9461:10274837,36802655 -h1,9461:10590983,36802655:0,0,0 -k1,9461:32583029,36802655:21992046 -g1,9461:32583029,36802655 -) -(1,9463:6797234,38124193:25785795,410518,82312 -(1,9462:6797234,38124193:0,0,0 -g1,9462:6797234,38124193 -g1,9462:6797234,38124193 -g1,9462:6469554,38124193 -(1,9462:6469554,38124193:0,0,0 -) -g1,9462:6797234,38124193 -) -k1,9463:6797234,38124193:0 -g1,9463:11855566,38124193 -g1,9463:14068587,38124193 -g1,9463:15649317,38124193 -h1,9463:16281609,38124193:0,0,0 -k1,9463:32583029,38124193:16301420 -g1,9463:32583029,38124193 -) -(1,9467:6797234,38790371:25785795,404226,76021 -(1,9465:6797234,38790371:0,0,0 -g1,9465:6797234,38790371 -g1,9465:6797234,38790371 -g1,9465:6469554,38790371 -(1,9465:6469554,38790371:0,0,0 -) -g1,9465:6797234,38790371 -) -g1,9467:7745671,38790371 -g1,9467:9010254,38790371 -g1,9467:9642546,38790371 -h1,9467:9958692,38790371:0,0,0 -k1,9467:32583028,38790371:22624336 -g1,9467:32583028,38790371 -) -] -) -g1,9468:32583029,38866392 -g1,9468:6797234,38866392 -g1,9468:6797234,38866392 -g1,9468:32583029,38866392 -g1,9468:32583029,38866392 -) -h1,9468:6797234,39063000:0,0,0 -] -g1,9470:32583029,39587288 -) -h1,9470:6630773,39587288:0,0,0 -v1,9473:6630773,40953064:0,393216,0 -(1,9487:6630773,43917929:25952256,3358081,0 -g1,9487:6630773,43917929 -g1,9487:6303093,43917929 -r1,9487:6401397,43917929:98304,3358081,0 -g1,9487:6600626,43917929 -g1,9487:6797234,43917929 -[1,9487:6797234,43917929:25785795,3358081,0 -(1,9474:6797234,41385602:25785795,825754,196608 -(1,9473:6797234,41385602:0,825754,196608 -r1,9487:7890375,41385602:1093141,1022362,196608 -k1,9473:6797234,41385602:-1093141 -) -(1,9473:6797234,41385602:1093141,825754,196608 -) -k1,9473:8088749,41385602:198374 -k1,9473:9814967,41385602:327680 -k1,9473:11887015,41385602:198374 -k1,9473:13820782,41385602:198374 -(1,9473:13820782,41385602:0,459977,115847 -r1,9487:16641031,41385602:2820249,575824,115847 -k1,9473:13820782,41385602:-2820249 -) -(1,9473:13820782,41385602:2820249,459977,115847 -k1,9473:13820782,41385602:3277 -h1,9473:16637754,41385602:0,411205,112570 -) -k1,9473:17013075,41385602:198374 -k1,9473:17567309,41385602:198374 -k1,9473:19638703,41385602:198375 -k1,9473:23023437,41385602:198374 -k1,9473:23873239,41385602:198374 -k1,9473:26783493,41385602:198374 -k1,9473:29797949,41385602:198374 -k1,9473:31563944,41385602:198374 -k1,9473:32583029,41385602:0 -) -(1,9474:6797234,42227090:25785795,505283,134348 -k1,9473:8221378,42227090:251705 -k1,9473:10781260,42227090:251704 -(1,9473:10781260,42227090:0,414482,115847 -r1,9487:11139526,42227090:358266,530329,115847 -k1,9473:10781260,42227090:-358266 -) -(1,9473:10781260,42227090:358266,414482,115847 -k1,9473:10781260,42227090:3277 -h1,9473:11136249,42227090:0,411205,112570 -) -k1,9473:11391231,42227090:251705 -k1,9473:12834380,42227090:251704 -(1,9473:12834380,42227090:0,452978,115847 -r1,9487:13192646,42227090:358266,568825,115847 -k1,9473:12834380,42227090:-358266 -) -(1,9473:12834380,42227090:358266,452978,115847 -k1,9473:12834380,42227090:3277 -h1,9473:13189369,42227090:0,411205,112570 -) -k1,9473:13444351,42227090:251705 -k1,9473:14963521,42227090:251704 -k1,9473:15571086,42227090:251705 -k1,9473:17665662,42227090:251704 -k1,9473:19895244,42227090:251705 -(1,9473:19895244,42227090:0,452978,115847 -r1,9487:20253510,42227090:358266,568825,115847 -k1,9473:19895244,42227090:-358266 -) -(1,9473:19895244,42227090:358266,452978,115847 -k1,9473:19895244,42227090:3277 -h1,9473:20250233,42227090:0,411205,112570 -) -k1,9473:20678884,42227090:251704 -k1,9473:22785258,42227090:251705 -k1,9473:23846332,42227090:251704 -k1,9473:26688675,42227090:251705 -k1,9473:27959464,42227090:251704 -k1,9473:32583029,42227090:0 -) -(1,9474:6797234,43068578:25785795,505283,126483 -k1,9473:8647533,43068578:169956 -k1,9473:9433526,43068578:169955 -k1,9473:11581359,43068578:169956 -(1,9473:11581359,43068578:0,414482,115847 -r1,9487:11939625,43068578:358266,530329,115847 -k1,9473:11581359,43068578:-358266 -) -(1,9473:11581359,43068578:358266,414482,115847 -k1,9473:11581359,43068578:3277 -h1,9473:11936348,43068578:0,411205,112570 -) -k1,9473:12109581,43068578:169956 -k1,9473:12811034,43068578:169956 -k1,9473:14000074,43068578:169955 -k1,9473:17144709,43068578:169956 -(1,9473:17144709,43068578:0,452978,115847 -r1,9487:18206398,43068578:1061689,568825,115847 -k1,9473:17144709,43068578:-1061689 -) -(1,9473:17144709,43068578:1061689,452978,115847 -k1,9473:17144709,43068578:3277 -h1,9473:18203121,43068578:0,411205,112570 -) -k1,9473:18376354,43068578:169956 -k1,9473:19229194,43068578:169955 -(1,9473:19229194,43068578:0,452978,115847 -r1,9487:20290883,43068578:1061689,568825,115847 -k1,9473:19229194,43068578:-1061689 -) -(1,9473:19229194,43068578:1061689,452978,115847 -k1,9473:19229194,43068578:3277 -h1,9473:20287606,43068578:0,411205,112570 -) -k1,9473:20634509,43068578:169956 -k1,9473:22415995,43068578:169956 -k1,9473:24167989,43068578:169955 -k1,9473:26315822,43068578:169956 -(1,9473:26315822,43068578:0,452978,115847 -r1,9487:26674088,43068578:358266,568825,115847 -k1,9473:26315822,43068578:-358266 -) -(1,9473:26315822,43068578:358266,452978,115847 -k1,9473:26315822,43068578:3277 -h1,9473:26670811,43068578:0,411205,112570 -) -k1,9473:26844044,43068578:169956 -k1,9473:27665428,43068578:169956 -k1,9473:29551116,43068578:169955 -k1,9473:30740157,43068578:169956 -k1,9473:32583029,43068578:0 -) -(1,9474:6797234,43910066:25785795,505283,7863 -k1,9474:32583030,43910066:23569368 -g1,9474:32583030,43910066 +g1,8606:3062174,49800853 +(1,8606:3062174,52029077:16384,1703936,0 +[1,8606:3062174,52029077:25952256,1703936,0 +(1,8606:3062174,51504789:25952256,1179648,0 +(1,8606:3062174,51504789:16384,1179648,0 +r1,8666:3078558,51504789:16384,1179648,0 ) -] -g1,9487:32583029,43917929 +k1,8606:29014430,51504789:25935872 +g1,8606:29014430,51504789 ) ] -(1,9487:32583029,45706769:0,0,0 -g1,9487:32583029,45706769 ) ) -] -(1,9487:6630773,47279633:25952256,0,0 -h1,9487:6630773,47279633:25952256,0,0 ) ] -(1,9487:4262630,4025873:0,0,0 -[1,9487:-473656,4025873:0,0,0 -(1,9487:-473656,-710413:0,0,0 -(1,9487:-473656,-710413:0,0,0 -g1,9487:-473656,-710413 -) -g1,9487:-473656,-710413 +[1,8666:3078558,4812305:0,0,0 +(1,8666:3078558,49800853:0,16384,2228224 +g1,8666:29030814,49800853 +g1,8666:36135244,49800853 +(1,8606:36135244,49800853:1720320,16384,2228224 +(1,8606:36135244,52029077:16384,1703936,0 +[1,8606:36135244,52029077:25952256,1703936,0 +(1,8606:36135244,51504789:25952256,1179648,0 +(1,8606:36135244,51504789:16384,1179648,0 +r1,8666:36151628,51504789:16384,1179648,0 +) +k1,8606:62087500,51504789:25935872 +g1,8606:62087500,51504789 +) +] +) +g1,8606:36675916,49800853 +(1,8606:36675916,49800853:1179648,16384,0 +r1,8666:37855564,49800853:1179648,16384,0 +) +) +k1,8666:3078556,49800853:-34777008 +) +] +g1,8666:6630773,4812305 +k1,8666:21643106,4812305:13816956 +g1,8666:23265777,4812305 +g1,8666:24088253,4812305 +g1,8666:28572226,4812305 +g1,8666:29981905,4812305 +) +) +] +[1,8666:6630773,45706769:25952256,40108032,0 +(1,8666:6630773,45706769:25952256,40108032,0 +(1,8666:6630773,45706769:0,0,0 +g1,8666:6630773,45706769 +) +[1,8666:6630773,45706769:25952256,40108032,0 +(1,8630:6630773,6254097:25952256,513147,126483 +k1,8629:8315611,6254097:188651 +k1,8629:12194593,6254097:188650 +k1,8629:13011079,6254097:188651 +k1,8629:14218815,6254097:188651 +k1,8629:15630367,6254097:188650 +k1,8629:16478310,6254097:188651 +k1,8629:17686046,6254097:188651 +k1,8629:20280523,6254097:188650 +k1,8629:22747861,6254097:188651 +k1,8629:23149493,6254097:188640 +k1,8629:25699406,6254097:188651 +k1,8629:27218438,6254097:188651 +k1,8629:28058516,6254097:188650 +k1,8629:29861974,6254097:188651 +k1,8629:32583029,6254097:0 +) +(1,8630:6630773,7119177:25952256,505283,126483 +g1,8629:8021447,7119177 +g1,8629:10571452,7119177 +g1,8629:12932058,7119177 +g1,8629:14322732,7119177 +g1,8629:15852342,7119177 +g1,8629:16702999,7119177 +g1,8629:17994713,7119177 +k1,8630:32583029,7119177:12775590 +g1,8630:32583029,7119177 +) +(1,8631:6630773,9235995:25952256,555811,139132 +(1,8631:6630773,9235995:2450326,534184,12975 +g1,8631:6630773,9235995 +g1,8631:9081099,9235995 +) +g1,8631:11147187,9235995 +g1,8631:11984148,9235995 +g1,8631:12609886,9235995 +k1,8631:32583029,9235995:17523538 +g1,8631:32583029,9235995 +) +(1,8634:6630773,10494291:25952256,513147,126483 +k1,8633:7364405,10494291:246044 +k1,8633:9396352,10494291:246091 +k1,8633:10173940,10494291:246091 +k1,8633:10775891,10494291:246091 +k1,8633:12248161,10494291:246091 +k1,8633:13477292,10494291:246091 +k1,8633:15007888,10494291:246090 +k1,8633:17956028,10494291:246091 +k1,8633:20778995,10494291:246091 +k1,8633:22044171,10494291:246091 +k1,8633:23943735,10494291:246091 +k1,8633:27679618,10494291:246091 +k1,8633:29210215,10494291:246091 +k1,8633:30626779,10494291:246091 +k1,8633:32583029,10494291:0 +) +(1,8634:6630773,11359371:25952256,513147,126483 +k1,8633:8166503,11359371:149644 +k1,8633:8928908,11359371:149643 +k1,8633:10097637,11359371:149644 +k1,8633:12667526,11359371:149644 +k1,8633:15392080,11359371:149644 +k1,8633:16029262,11359371:149594 +k1,8633:17486349,11359371:149644 +k1,8633:19467069,11359371:149644 +k1,8633:20148209,11359371:149643 +k1,8633:21537794,11359371:149644 +k1,8633:22635089,11359371:149644 +k1,8633:25619820,11359371:149644 +k1,8633:26540166,11359371:149643 +k1,8633:29531451,11359371:149644 +k1,8633:30664135,11359371:149644 +k1,8633:32583029,11359371:0 +) +(1,8634:6630773,12224451:25952256,505283,126483 +g1,8633:8000475,12224451 +g1,8633:9674919,12224451 +g1,8633:12006034,12224451 +g1,8633:12888148,12224451 +g1,8633:14894205,12224451 +g1,8633:16785574,12224451 +g1,8633:17399646,12224451 +k1,8634:32583029,12224451:11519920 +g1,8634:32583029,12224451 +) +(1,8636:6630773,13089531:25952256,513147,134348 +h1,8635:6630773,13089531:983040,0,0 +k1,8635:9573287,13089531:176239 +k1,8635:11778521,13089531:176239 +k1,8635:19296758,13089531:176239 +k1,8635:20085759,13089531:176239 +k1,8635:21281083,13089531:176239 +k1,8635:21872142,13089531:176216 +k1,8635:24642296,13089531:176239 +k1,8635:25686887,13089531:176239 +k1,8635:27843624,13089531:176239 +k1,8635:29176573,13089531:176239 +k1,8635:30521319,13089531:176239 +k1,8635:31356850,13089531:176239 +k1,8635:32583029,13089531:0 +) +(1,8636:6630773,13954611:25952256,513147,134348 +k1,8635:7378466,13954611:134931 +k1,8635:7869258,13954611:134932 +k1,8635:9603267,13954611:134931 +k1,8635:11521433,13954611:134931 +k1,8635:12524716,13954611:134931 +k1,8635:13842573,13954611:134932 +k1,8635:14996589,13954611:134931 +k1,8635:16300027,13954611:134931 +k1,8635:17196486,13954611:134931 +k1,8635:19360413,13954611:134932 +k1,8635:20514429,13954611:134931 +k1,8635:22304144,13954611:134931 +k1,8635:23713751,13954611:134932 +k1,8635:24867767,13954611:134931 +k1,8635:26171205,13954611:134931 +k1,8635:26965428,13954611:134931 +k1,8635:28326539,13954611:134932 +k1,8635:28992967,13954611:134931 +k1,8635:32583029,13954611:0 +) +(1,8636:6630773,14819691:25952256,513147,134348 +k1,8635:8061237,14819691:239019 +k1,8635:11535113,14819691:239019 +k1,8635:12727681,14819691:239019 +k1,8635:14400629,14819691:239020 +k1,8635:16025734,14819691:239019 +k1,8635:17283838,14819691:239019 +k1,8635:18906977,14819691:239019 +k1,8635:20314503,14819691:239019 +k1,8635:21212814,14819691:239019 +k1,8635:22851682,14819691:239019 +k1,8635:24976173,14819691:239020 +k1,8635:26523946,14819691:239019 +k1,8635:27379003,14819691:239019 +k1,8635:28992967,14819691:239019 +k1,8635:32583029,14819691:0 +) +(1,8636:6630773,15684771:25952256,505283,126483 +k1,8635:8082314,15684771:260096 +k1,8635:11577267,15684771:260096 +k1,8635:13028808,15684771:260096 +k1,8635:14013732,15684771:260096 +k1,8635:15256868,15684771:260096 +k1,8635:16144799,15684771:260096 +k1,8635:16760755,15684771:260096 +k1,8635:18851927,15684771:260096 +k1,8635:19980374,15684771:260095 +k1,8635:21855277,15684771:260096 +k1,8635:24088007,15684771:260096 +k1,8635:25367188,15684771:260096 +k1,8635:27280757,15684771:260096 +k1,8635:28767032,15684771:260096 +k1,8635:29643166,15684771:260096 +k1,8635:30673965,15684771:260096 +k1,8635:32583029,15684771:0 +) +(1,8636:6630773,16549851:25952256,513147,134348 +k1,8635:8022401,16549851:200183 +k1,8635:9613257,16549851:200182 +k1,8635:12484687,16549851:200183 +k1,8635:14183678,16549851:200183 +k1,8635:17745857,16549851:200182 +k1,8635:21435832,16549851:200183 +k1,8635:22903480,16549851:200182 +k1,8635:23459523,16549851:200183 +k1,8635:24885885,16549851:200183 +k1,8635:26242777,16549851:200182 +k1,8635:30900064,16549851:200183 +k1,8635:32583029,16549851:0 +) +(1,8636:6630773,17414931:25952256,513147,126483 +g1,8635:8492650,17414931 +g1,8635:10067480,17414931 +g1,8635:11893968,17414931 +g1,8635:13791235,17414931 +g1,8635:14858816,17414931 +g1,8635:17092938,17414931 +g1,8635:18311252,17414931 +g1,8635:19493521,17414931 +g1,8635:20378912,17414931 +g1,8635:20934001,17414931 +g1,8635:23016079,17414931 +g1,8635:24482774,17414931 +k1,8636:32583029,17414931:7511742 +g1,8636:32583029,17414931 +) +(1,8638:6630773,18280011:25952256,513147,134348 +h1,8637:6630773,18280011:983040,0,0 +g1,8637:8300630,18280011 +g1,8637:10330935,18280011 +g1,8637:11513204,18280011 +g1,8637:12813438,18280011 +g1,8637:14031752,18280011 +g1,8637:17206316,18280011 +k1,8638:32583029,18280011:10574890 +g1,8638:32583029,18280011 +) +(1,8640:7202902,19669379:25380127,513147,126483 +(1,8639:7202902,19669379:0,355205,0 +g1,8639:7202902,19669379 +g1,8639:5892182,19669379 +g1,8639:5564502,19669379 +(1,8639:5564502,19669379:1310720,355205,0 +k1,8639:6875222,19669379:1310720 +(1,8639:6875222,19669379:0,355205,0 +k1,8639:6476763,19669379:-398459 +) +) +g1,8639:7202902,19669379 +) +g1,8639:8598818,19669379 +g1,8639:10629123,19669379 +g1,8639:11359849,19669379 +g1,8639:11914938,19669379 +g1,8639:13340346,19669379 +k1,8640:32583028,19669379:18085972 +g1,8640:32583028,19669379 +) +(1,8641:7202902,21058747:25380127,513147,134348 +(1,8640:7202902,21058747:0,355205,0 +g1,8640:7202902,21058747 +g1,8640:5892182,21058747 +g1,8640:5564502,21058747 +(1,8640:5564502,21058747:1310720,355205,0 +k1,8640:6875222,21058747:1310720 +(1,8640:6875222,21058747:0,355205,0 +k1,8640:6476763,21058747:-398459 +) +) +g1,8640:7202902,21058747 +) +g1,8640:8598818,21058747 +g1,8640:9781087,21058747 +g1,8640:12682365,21058747 +g1,8640:14421690,21058747 +g1,8640:15035762,21058747 +g1,8640:18751653,21058747 +g1,8640:22138553,21058747 +g1,8640:25862308,21058747 +g1,8640:27252982,21058747 +g1,8640:29923574,21058747 +k1,8641:32583029,21058747:1255674 +g1,8641:32583029,21058747 +) +(1,8642:7202902,22448115:25380127,513147,115847 +(1,8641:7202902,22448115:0,355205,0 +g1,8641:7202902,22448115 +g1,8641:5892182,22448115 +g1,8641:5564502,22448115 +(1,8641:5564502,22448115:1310720,355205,0 +k1,8641:6875222,22448115:1310720 +(1,8641:6875222,22448115:0,355205,0 +k1,8641:6476763,22448115:-398459 +) +) +g1,8641:7202902,22448115 +) +g1,8641:10841460,22448115 +g1,8641:12529012,22448115 +g1,8641:13341003,22448115 +g1,8641:13896092,22448115 +(1,8641:13896092,22448115:0,424981,115847 +r1,8666:14254358,22448115:358266,540828,115847 +k1,8641:13896092,22448115:-358266 +) +(1,8641:13896092,22448115:358266,424981,115847 +k1,8641:13896092,22448115:3277 +h1,8641:14251081,22448115:0,411205,112570 +) +g1,8641:14453587,22448115 +g1,8641:15844261,22448115 +g1,8641:17226415,22448115 +g1,8641:18038406,22448115 +g1,8641:19256720,22448115 +g1,8641:20638874,22448115 +g1,8641:21497395,22448115 +g1,8641:22715709,22448115 +k1,8642:32583029,22448115:8525143 +g1,8642:32583029,22448115 +) +(1,8643:7202902,23837483:25380127,513147,126483 +(1,8642:7202902,23837483:0,355205,0 +g1,8642:7202902,23837483 +g1,8642:5892182,23837483 +g1,8642:5564502,23837483 +(1,8642:5564502,23837483:1310720,355205,0 +k1,8642:6875222,23837483:1310720 +(1,8642:6875222,23837483:0,355205,0 +k1,8642:6476763,23837483:-398459 +) +) +g1,8642:7202902,23837483 +) +g1,8642:8598818,23837483 +g1,8642:9212890,23837483 +g1,8642:12928781,23837483 +g1,8642:14119570,23837483 +g1,8642:14934837,23837483 +g1,8642:16153151,23837483 +g1,8642:17335420,23837483 +g1,8642:18150687,23837483 +g1,8642:19369001,23837483 +g1,8642:21307556,23837483 +g1,8642:22791291,23837483 +g1,8642:24370708,23837483 +g1,8642:26191953,23837483 +g1,8642:27138948,23837483 +k1,8643:32583029,23837483:2437289 +g1,8643:32583029,23837483 +) +(1,8644:7202902,25226851:25380127,513147,134348 +(1,8643:7202902,25226851:0,355205,0 +g1,8643:7202902,25226851 +g1,8643:5892182,25226851 +g1,8643:5564502,25226851 +(1,8643:5564502,25226851:1310720,355205,0 +k1,8643:6875222,25226851:1310720 +(1,8643:6875222,25226851:0,355205,0 +k1,8643:6476763,25226851:-398459 +) +) +g1,8643:7202902,25226851 +) +g1,8643:7816974,25226851 +g1,8643:10177580,25226851 +g1,8643:11852024,25226851 +g1,8643:13034293,25226851 +g1,8643:15301838,25226851 +g1,8643:17674241,25226851 +g1,8643:18489508,25226851 +g1,8643:19518622,25226851 +g1,8643:20400736,25226851 +k1,8644:32583029,25226851:11178738 +g1,8644:32583029,25226851 +) +(1,8647:6630773,26616219:25952256,513147,126483 +h1,8646:6630773,26616219:983040,0,0 +k1,8646:8974102,26616219:163602 +k1,8646:12654365,26616219:163601 +k1,8646:13434005,26616219:163602 +k1,8646:14616692,26616219:163602 +k1,8646:16006472,26616219:163601 +k1,8646:17326784,26616219:163602 +k1,8646:18481945,26616219:163601 +k1,8646:20231518,26616219:163602 +k1,8646:23985182,26616219:163602 +k1,8646:25340228,26616219:163601 +k1,8646:28565017,26616219:163602 +k1,8646:32583029,26616219:0 +) +(1,8647:6630773,27481299:25952256,513147,134348 +k1,8646:8433283,27481299:234889 +k1,8646:9687256,27481299:234888 +k1,8646:11410468,27481299:234889 +k1,8646:12296785,27481299:234889 +k1,8646:13550758,27481299:234888 +k1,8646:14968572,27481299:234889 +k1,8646:15862753,27481299:234889 +k1,8646:17116726,27481299:234888 +k1,8646:18508325,27481299:234889 +k1,8646:19429375,27481299:234888 +k1,8646:23473872,27481299:234889 +k1,8646:24324799,27481299:234889 +k1,8646:25578772,27481299:234888 +k1,8646:28603529,27481299:234889 +k1,8646:29791967,27481299:234889 +k1,8646:31119340,27481299:234888 +$1,8646:31119340,27481299 +$1,8646:31696712,27481299 +k1,8646:31931601,27481299:234889 +k1,8646:32583029,27481299:0 +) +(1,8647:6630773,28346379:25952256,505283,126483 +g1,8646:9871528,28346379 +g1,8646:13297750,28346379 +g1,8646:17013641,28346379 +g1,8646:17828908,28346379 +g1,8646:19047222,28346379 +k1,8647:32583029,28346379:11531061 +g1,8647:32583029,28346379 +) +(1,8662:6630773,42272726:25952256,13078968,0 +k1,8662:16796775,42272726:10166002 +(1,8648:16796775,42272726:0,0,0 +g1,8648:16796775,42272726 +g1,8648:16796775,42272726 +g1,8648:16469095,42272726 +(1,8648:16469095,42272726:0,0,0 +) +g1,8648:16796775,42272726 +) +(1,8660:16796775,42272726:5620252,13078968,0 +g1,8660:19606901,42272726 +(1,8660:19606901,30139204:0,0,0 +(1,8660:19606901,30139204:0,0,0 +g1,8650:19606901,30139204 +(1,8651:19606901,30139204:0,0,0 +(1,8651:19606901,30139204:0,0,0 +g1,8651:19606901,30139204 +g1,8651:19606901,30139204 +g1,8651:19606901,30139204 +g1,8651:19606901,30139204 +g1,8651:19606901,30139204 +(1,8651:19606901,30139204:0,0,0 +(1,8651:19606901,30139204:3308914,426443,113835 +(1,8651:19606901,30139204:3308914,426443,113835 +g1,8651:20866176,30139204 +g1,8651:21556860,30139204 +) +g1,8651:22915815,30139204 +) +) +g1,8651:19606901,30139204 +g1,8651:19606901,30139204 +) +) +g1,8651:19606901,30139204 +g1,8652:19606901,30139204 +(1,8652:19606901,30139204:0,0,0 +(1,8652:19606901,30139204:0,0,0 +g1,8652:19606901,30139204 +g1,8652:19606901,30139204 +g1,8652:19606901,30139204 +g1,8652:19606901,30139204 +g1,8652:19606901,30139204 +(1,8652:19606901,30139204:0,0,0 +(1,8652:19606901,30139204:4121582,373362,104590 +(1,8652:19606901,30139204:4121582,373362,104590 +(1,8652:19606901,30139204:0,373362,104590 +r1,8666:23728483,30139204:4121582,477952,104590 +k1,8652:19606901,30139204:-4121582 +) +(1,8652:19606901,30139204:4121582,373362,104590 +g1,8652:23092125,30139204 +h1,8652:23725206,30139204:0,370085,101313 +) +) +g1,8652:23728483,30139204 +) +) +g1,8652:19606901,30139204 +g1,8652:19606901,30139204 +) +) +g1,8652:19606901,30139204 +g1,8653:19606901,30139204 +(1,8653:19606901,30139204:0,0,0 +(1,8653:19606901,30139204:0,0,0 +g1,8653:19606901,30139204 +g1,8653:19606901,30139204 +g1,8653:19606901,30139204 +g1,8653:19606901,30139204 +g1,8653:19606901,30139204 +(1,8653:19606901,30139204:0,0,0 +(1,8653:19606901,30139204:4121582,373362,104590 +(1,8653:19606901,30139204:4121582,373362,104590 +(1,8653:19606901,30139204:0,373362,104590 +r1,8666:23728483,30139204:4121582,477952,104590 +k1,8653:19606901,30139204:-4121582 +) +(1,8653:19606901,30139204:4121582,373362,104590 +g1,8653:23092125,30139204 +h1,8653:23725206,30139204:0,370085,101313 +) +) +g1,8653:23728483,30139204 +) +) +g1,8653:19606901,30139204 +g1,8653:19606901,30139204 +) +) +g1,8653:19606901,30139204 +g1,8654:19606901,30139204 +(1,8654:19606901,30139204:0,0,0 +(1,8654:19606901,30139204:0,0,0 +g1,8654:19606901,30139204 +g1,8654:19606901,30139204 +g1,8654:19606901,30139204 +g1,8654:19606901,30139204 +g1,8654:19606901,30139204 +(1,8654:19606901,30139204:0,0,0 +(1,8654:19606901,30139204:519635,224133,0 +(1,8654:19606901,30139204:519635,224133,0 +$1,8654:19606901,30139204 +$1,8654:20126536,30139204 +) +g1,8654:20126536,30139204 +) +) +g1,8654:19606901,30139204 +g1,8654:19606901,30139204 +) +) +g1,8654:19606901,30139204 +g1,8655:19606901,30139204 +(1,8655:19606901,30139204:0,0,0 +(1,8655:19606901,30139204:0,0,0 +g1,8655:19606901,30139204 +g1,8655:19606901,30139204 +g1,8655:19606901,30139204 +g1,8655:19606901,30139204 +g1,8655:19606901,30139204 +(1,8655:19606901,30139204:0,0,0 +(1,8655:19606901,30139204:3931768,454754,7077 +(1,8655:19606901,30139204:3931768,454754,7077 +g1,8655:21779813,30139204 +g1,8655:22470497,30139204 +) +g1,8655:23538669,30139204 +) +) +g1,8655:19606901,30139204 +g1,8655:19606901,30139204 +) +) +g1,8655:19606901,30139204 +g1,8656:19606901,30139204 +g1,8656:19606901,30139204 +g1,8656:19606901,30139204 +g1,8656:19606901,30139204 +g1,8656:19606901,30139204 +g1,8656:19606901,30139204 +g1,8656:19606901,30139204 +g1,8656:19606901,30139204 +g1,8656:19606901,30139204 +g1,8656:19606901,30139204 +g1,8656:19606901,30139204 +g1,8657:19606901,30139204 +g1,8657:19606901,30139204 +g1,8657:19606901,30139204 +g1,8657:19606901,30139204 +g1,8657:19606901,30139204 +g1,8657:19606901,30139204 +g1,8658:19606901,30139204 +g1,8658:19606901,30139204 +g1,8658:19606901,30139204 +g1,8658:19606901,30139204 +g1,8658:19606901,30139204 +g1,8658:19606901,30139204 +g1,8659:19606901,30139204 +g1,8659:19606901,30139204 +g1,8659:19606901,30139204 +g1,8659:19606901,30139204 +g1,8659:19606901,30139204 +g1,8659:19606901,30139204 +g1,8660:19606901,30139204 +g1,8660:19606901,30139204 +) +g1,8660:19606901,30139204 +) +) +g1,8662:22417027,42272726 +k1,8662:32583029,42272726:10166002 +) +(1,8665:6630773,43793166:25952256,505283,134348 +h1,8664:6630773,43793166:983040,0,0 +k1,8664:8597508,43793166:165806 +k1,8664:9631666,43793166:165806 +k1,8664:10929934,43793166:165806 +k1,8664:12120723,43793166:165806 +k1,8664:13740118,43793166:165806 +k1,8664:14521962,43793166:165806 +k1,8664:15706853,43793166:165806 +k1,8664:18463953,43793166:165806 +k1,8664:20125946,43793166:165806 +k1,8664:23808414,43793166:165806 +k1,8664:25078502,43793166:165806 +k1,8664:25992074,43793166:165806 +k1,8664:29290501,43793166:165806 +k1,8664:30723773,43793166:165806 +k1,8664:32583029,43793166:0 +) +(1,8665:6630773,44658246:25952256,505283,126483 +k1,8664:10311340,44658246:163905 +k1,8664:11666691,44658246:163906 +k1,8664:14891783,44658246:163905 +k1,8664:19215259,44658246:163906 +k1,8664:21589038,44658246:163905 +k1,8664:25277469,44658246:163905 +k1,8664:27326846,44658246:163906 +k1,8664:29502706,44658246:163905 +k1,8664:30411756,44658246:163906 +k1,8664:31227089,44658246:163905 +k1,8665:32583029,44658246:0 +) +(1,8665:6630773,45523326:25952256,513147,126483 +k1,8664:8010251,45523326:234564 +k1,8664:9263900,45523326:234564 +k1,8664:11994731,45523326:234565 +k1,8664:15169240,45523326:234564 +k1,8664:16063096,45523326:234564 +k1,8664:19358847,45523326:234564 +k1,8664:23283743,45523326:234564 +k1,8664:25704588,45523326:234564 +k1,8664:27469419,45523326:234565 +k1,8664:28355411,45523326:234564 +k1,8664:30914537,45523326:234564 +k1,8664:32168186,45523326:234564 +k1,8665:32583029,45523326:0 +) +] +(1,8666:32583029,45706769:0,0,0 +g1,8666:32583029,45706769 +) +) +] +(1,8666:6630773,47279633:25952256,0,0 +h1,8666:6630773,47279633:25952256,0,0 +) +] +(1,8666:4262630,4025873:0,0,0 +[1,8666:-473656,4025873:0,0,0 +(1,8666:-473656,-710413:0,0,0 +(1,8666:-473656,-710413:0,0,0 +g1,8666:-473656,-710413 +) +g1,8666:-473656,-710413 ) ] ) ] -!27436 -}159 -Input:1359:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1360:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1361:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1362:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1363:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1364:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1365:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1366:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1367:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1368:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1369:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1046 -{160 -[1,9505:4262630,47279633:28320399,43253760,0 -(1,9505:4262630,4025873:0,0,0 -[1,9505:-473656,4025873:0,0,0 -(1,9505:-473656,-710413:0,0,0 -(1,9505:-473656,-644877:0,0,0 -k1,9505:-473656,-644877:-65536 +!20033 +}135 +Input:1190:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1191:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1192:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1193:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!388 +{136 +[1,8716:4262630,47279633:28320399,43253760,0 +(1,8716:4262630,4025873:0,0,0 +[1,8716:-473656,4025873:0,0,0 +(1,8716:-473656,-710413:0,0,0 +(1,8716:-473656,-644877:0,0,0 +k1,8716:-473656,-644877:-65536 ) -(1,9505:-473656,4736287:0,0,0 -k1,9505:-473656,4736287:5209943 +(1,8716:-473656,4736287:0,0,0 +k1,8716:-473656,4736287:5209943 ) -g1,9505:-473656,-710413 +g1,8716:-473656,-710413 ) ] ) -[1,9505:6630773,47279633:25952256,43253760,0 -[1,9505:6630773,4812305:25952256,786432,0 -(1,9505:6630773,4812305:25952256,481690,11795 -(1,9505:6630773,4812305:25952256,481690,11795 -g1,9505:3078558,4812305 -[1,9505:3078558,4812305:0,0,0 -(1,9505:3078558,2439708:0,1703936,0 -k1,9505:1358238,2439708:-1720320 -(1,8393:1358238,2439708:1720320,1703936,0 -(1,8393:1358238,2439708:1179648,16384,0 -r1,9505:2537886,2439708:1179648,16384,0 +[1,8716:6630773,47279633:25952256,43253760,0 +[1,8716:6630773,4812305:25952256,786432,0 +(1,8716:6630773,4812305:25952256,485622,134348 +(1,8716:6630773,4812305:25952256,485622,134348 +g1,8716:3078558,4812305 +[1,8716:3078558,4812305:0,0,0 +(1,8716:3078558,2439708:0,1703936,0 +k1,8716:1358238,2439708:-1720320 +(1,8606:1358238,2439708:1720320,1703936,0 +(1,8606:1358238,2439708:1179648,16384,0 +r1,8716:2537886,2439708:1179648,16384,0 ) -g1,8393:3062174,2439708 -(1,8393:3062174,2439708:16384,1703936,0 -[1,8393:3062174,2439708:25952256,1703936,0 -(1,8393:3062174,1915420:25952256,1179648,0 -(1,8393:3062174,1915420:16384,1179648,0 -r1,9505:3078558,1915420:16384,1179648,0 +g1,8606:3062174,2439708 +(1,8606:3062174,2439708:16384,1703936,0 +[1,8606:3062174,2439708:25952256,1703936,0 +(1,8606:3062174,1915420:25952256,1179648,0 +(1,8606:3062174,1915420:16384,1179648,0 +r1,8716:3078558,1915420:16384,1179648,0 ) -k1,8393:29014430,1915420:25935872 -g1,8393:29014430,1915420 +k1,8606:29014430,1915420:25935872 +g1,8606:29014430,1915420 ) ] ) ) ) ] -[1,9505:3078558,4812305:0,0,0 -(1,9505:3078558,2439708:0,1703936,0 -g1,9505:29030814,2439708 -g1,9505:36135244,2439708 -(1,8393:36135244,2439708:1720320,1703936,0 -(1,8393:36135244,2439708:16384,1703936,0 -[1,8393:36135244,2439708:25952256,1703936,0 -(1,8393:36135244,1915420:25952256,1179648,0 -(1,8393:36135244,1915420:16384,1179648,0 -r1,9505:36151628,1915420:16384,1179648,0 +[1,8716:3078558,4812305:0,0,0 +(1,8716:3078558,2439708:0,1703936,0 +g1,8716:29030814,2439708 +g1,8716:36135244,2439708 +(1,8606:36135244,2439708:1720320,1703936,0 +(1,8606:36135244,2439708:16384,1703936,0 +[1,8606:36135244,2439708:25952256,1703936,0 +(1,8606:36135244,1915420:25952256,1179648,0 +(1,8606:36135244,1915420:16384,1179648,0 +r1,8716:36151628,1915420:16384,1179648,0 ) -k1,8393:62087500,1915420:25935872 -g1,8393:62087500,1915420 +k1,8606:62087500,1915420:25935872 +g1,8606:62087500,1915420 ) ] ) -g1,8393:36675916,2439708 -(1,8393:36675916,2439708:1179648,16384,0 -r1,9505:37855564,2439708:1179648,16384,0 +g1,8606:36675916,2439708 +(1,8606:36675916,2439708:1179648,16384,0 +r1,8716:37855564,2439708:1179648,16384,0 ) ) -k1,9505:3078556,2439708:-34777008 +k1,8716:3078556,2439708:-34777008 ) ] -[1,9505:3078558,4812305:0,0,0 -(1,9505:3078558,49800853:0,16384,2228224 -k1,9505:1358238,49800853:-1720320 -(1,8393:1358238,49800853:1720320,16384,2228224 -(1,8393:1358238,49800853:1179648,16384,0 -r1,9505:2537886,49800853:1179648,16384,0 +[1,8716:3078558,4812305:0,0,0 +(1,8716:3078558,49800853:0,16384,2228224 +k1,8716:1358238,49800853:-1720320 +(1,8606:1358238,49800853:1720320,16384,2228224 +(1,8606:1358238,49800853:1179648,16384,0 +r1,8716:2537886,49800853:1179648,16384,0 ) -g1,8393:3062174,49800853 -(1,8393:3062174,52029077:16384,1703936,0 -[1,8393:3062174,52029077:25952256,1703936,0 -(1,8393:3062174,51504789:25952256,1179648,0 -(1,8393:3062174,51504789:16384,1179648,0 -r1,9505:3078558,51504789:16384,1179648,0 +g1,8606:3062174,49800853 +(1,8606:3062174,52029077:16384,1703936,0 +[1,8606:3062174,52029077:25952256,1703936,0 +(1,8606:3062174,51504789:25952256,1179648,0 +(1,8606:3062174,51504789:16384,1179648,0 +r1,8716:3078558,51504789:16384,1179648,0 ) -k1,8393:29014430,51504789:25935872 -g1,8393:29014430,51504789 +k1,8606:29014430,51504789:25935872 +g1,8606:29014430,51504789 ) ] ) ) ) ] -[1,9505:3078558,4812305:0,0,0 -(1,9505:3078558,49800853:0,16384,2228224 -g1,9505:29030814,49800853 -g1,9505:36135244,49800853 -(1,8393:36135244,49800853:1720320,16384,2228224 -(1,8393:36135244,52029077:16384,1703936,0 -[1,8393:36135244,52029077:25952256,1703936,0 -(1,8393:36135244,51504789:25952256,1179648,0 -(1,8393:36135244,51504789:16384,1179648,0 -r1,9505:36151628,51504789:16384,1179648,0 +[1,8716:3078558,4812305:0,0,0 +(1,8716:3078558,49800853:0,16384,2228224 +g1,8716:29030814,49800853 +g1,8716:36135244,49800853 +(1,8606:36135244,49800853:1720320,16384,2228224 +(1,8606:36135244,52029077:16384,1703936,0 +[1,8606:36135244,52029077:25952256,1703936,0 +(1,8606:36135244,51504789:25952256,1179648,0 +(1,8606:36135244,51504789:16384,1179648,0 +r1,8716:36151628,51504789:16384,1179648,0 +) +k1,8606:62087500,51504789:25935872 +g1,8606:62087500,51504789 +) +] +) +g1,8606:36675916,49800853 +(1,8606:36675916,49800853:1179648,16384,0 +r1,8716:37855564,49800853:1179648,16384,0 +) +) +k1,8716:3078556,49800853:-34777008 +) +] +g1,8716:6630773,4812305 +g1,8716:6630773,4812305 +g1,8716:9132937,4812305 +g1,8716:11356573,4812305 +k1,8716:31387653,4812305:20031080 +) +) +] +[1,8716:6630773,45706769:25952256,40108032,0 +(1,8716:6630773,45706769:25952256,40108032,0 +(1,8716:6630773,45706769:0,0,0 +g1,8716:6630773,45706769 +) +[1,8716:6630773,45706769:25952256,40108032,0 +(1,8665:6630773,6254097:25952256,505283,134348 +k1,8664:9093968,6254097:205480 +k1,8664:9927284,6254097:205481 +k1,8664:12798769,6254097:205480 +k1,8664:13655678,6254097:205481 +k1,8664:15599173,6254097:205480 +k1,8664:17344750,6254097:205481 +k1,8664:18008327,6254097:205480 +k1,8664:18745305,6254097:205481 +k1,8664:22160083,6254097:205480 +k1,8664:23650070,6254097:205481 +k1,8664:26016927,6254097:205480 +k1,8664:27213968,6254097:205481 +k1,8664:28705264,6254097:205480 +k1,8665:32583029,6254097:0 +) +(1,8665:6630773,7119177:25952256,505283,134348 +k1,8664:8151700,7119177:212173 +k1,8664:9015300,7119177:212172 +k1,8664:11951805,7119177:212173 +k1,8664:16389084,7119177:212173 +k1,8664:16957116,7119177:212172 +k1,8664:18699555,7119177:212173 +k1,8664:21169443,7119177:212173 +k1,8664:22882389,7119177:212172 +k1,8664:24286007,7119177:212173 +k1,8664:27778912,7119177:212173 +k1,8664:31261331,7119177:212172 +k1,8664:32124932,7119177:212173 +k1,8664:32583029,7119177:0 +) +(1,8665:6630773,7984257:25952256,473825,126483 +g1,8664:7821562,7984257 +k1,8665:32583030,7984257:21378500 +g1,8665:32583030,7984257 +) +(1,8667:6630773,8849337:25952256,513147,134348 +h1,8666:6630773,8849337:983040,0,0 +k1,8666:8331058,8849337:247352 +k1,8666:9109906,8849337:247351 +k1,8666:10941263,8849337:247352 +k1,8666:13726168,8849337:247351 +k1,8666:14624948,8849337:247352 +k1,8666:16487106,8849337:247351 +k1,8666:18895835,8849337:247352 +k1,8666:19868015,8849337:247352 +k1,8666:21399872,8849337:247351 +k1,8666:23027412,8849337:247352 +k1,8666:24266323,8849337:247351 +k1,8666:29187703,8849337:247352 +k1,8666:30264084,8849337:247351 +k1,8666:32227169,8849337:247352 +k1,8666:32583029,8849337:0 +) +(1,8667:6630773,9714417:25952256,513147,134348 +k1,8666:8652357,9714417:190508 +k1,8666:13516893,9714417:190508 +k1,8666:14864111,9714417:190508 +k1,8666:16676635,9714417:190508 +k1,8666:19204812,9714417:190508 +k1,8666:20891507,9714417:190508 +k1,8666:21733444,9714417:190509 +k1,8666:23300208,9714417:190508 +k1,8666:26574840,9714417:190508 +k1,8666:27231309,9714417:190508 +k1,8666:29108714,9714417:190508 +k1,8666:30675478,9714417:190508 +k1,8666:31548871,9714417:190508 +k1,8667:32583029,9714417:0 +) +(1,8667:6630773,10579497:25952256,513147,126483 +k1,8666:8166785,10579497:175485 +k1,8666:9731633,10579497:175485 +k1,8666:11474739,10579497:175485 +k1,8666:13137237,10579497:175486 +k1,8666:15936784,10579497:175485 +k1,8666:17131354,10579497:175485 +k1,8666:18696202,10579497:175485 +k1,8666:21426280,10579497:175485 +k1,8666:22793210,10579497:175485 +k1,8666:25263767,10579497:175486 +k1,8666:27649126,10579497:175485 +k1,8666:29215285,10579497:175485 +k1,8666:30409855,10579497:175485 +k1,8666:32583029,10579497:0 +) +(1,8667:6630773,11444577:25952256,513147,134348 +k1,8666:7578323,11444577:288258 +k1,8666:8885665,11444577:288257 +k1,8666:11902187,11444577:288258 +k1,8666:13708913,11444577:288257 +k1,8666:16158548,11444577:288258 +k1,8666:17551087,11444577:288257 +k1,8666:18587111,11444577:288258 +k1,8666:20388594,11444577:288257 +k1,8666:21328280,11444577:288258 +k1,8666:23380111,11444577:288257 +k1,8666:24687454,11444577:288258 +k1,8666:26629185,11444577:288258 +k1,8666:29472035,11444577:288257 +k1,8666:32583029,11444577:0 +) +(1,8667:6630773,12309657:25952256,505283,126483 +k1,8666:7508207,12309657:226006 +k1,8666:9436182,12309657:226005 +k1,8666:11051551,12309657:226006 +k1,8666:13487430,12309657:226005 +k1,8666:14364864,12309657:226006 +k1,8666:17846698,12309657:226005 +k1,8666:19091789,12309657:226006 +k1,8666:20971268,12309657:226006 +k1,8666:23751866,12309657:226005 +k1,8666:24590634,12309657:226006 +k1,8666:25172499,12309657:226005 +k1,8666:26852094,12309657:226006 +k1,8666:28677177,12309657:226005 +k1,8666:30421652,12309657:226006 +k1,8666:32583029,12309657:0 +) +(1,8667:6630773,13174737:25952256,513147,126483 +g1,8666:10032746,13174737 +g1,8666:10998091,13174737 +g1,8666:12882906,13174737 +g1,8666:14595361,13174737 +g1,8666:15742241,13174737 +g1,8666:16960555,13174737 +k1,8667:32583029,13174737:12894210 +g1,8667:32583029,13174737 +) +(1,8670:6630773,15291555:25952256,555811,139132 +(1,8670:6630773,15291555:2450326,534184,12975 +g1,8670:6630773,15291555 +g1,8670:9081099,15291555 +) +g1,8670:10960475,15291555 +g1,8670:12100212,15291555 +g1,8670:13364664,15291555 +g1,8670:14843943,15291555 +g1,8670:15469681,15291555 +k1,8670:32583029,15291555:14663743 +g1,8670:32583029,15291555 +) +(1,8674:6630773,16549851:25952256,513147,134348 +k1,8673:7402036,16549851:283675 +k1,8673:9516873,16549851:283761 +k1,8673:10904915,16549851:283760 +k1,8673:11936441,16549851:283760 +k1,8673:15350200,16549851:283760 +k1,8673:17369353,16549851:283760 +k1,8673:20348610,16549851:283761 +(1,8673:20348610,16549851:0,452978,115847 +r1,8716:23168859,16549851:2820249,568825,115847 +k1,8673:20348610,16549851:-2820249 +) +(1,8673:20348610,16549851:2820249,452978,115847 +k1,8673:20348610,16549851:3277 +h1,8673:23165582,16549851:0,411205,112570 +) +k1,8673:23626289,16549851:283760 +k1,8673:24387806,16549851:283760 +k1,8673:25539918,16549851:283760 +k1,8673:27298893,16549851:283760 +k1,8673:27938514,16549851:283761 +k1,8673:29448453,16549851:283760 +k1,8673:30715253,16549851:283760 +k1,8674:32583029,16549851:0 +) +(1,8674:6630773,17414931:25952256,538806,134348 +g1,8673:13884023,17414931 +g1,8673:17445249,17414931 +g1,8673:18663563,17414931 +g1,8673:21838127,17414931 +k1,8674:32583029,17414931:9345053 +g1,8674:32583029,17414931 +) +v1,8674:6630773,18280011:0,393216,0 +(1,8680:6630773,19174477:25952256,1287682,589824 +k1,8680:6040949,19174477:-589824 +(1,8680:6040949,19174477:0,1287682,589824 +r1,8716:33172853,19174477:27131904,1877506,589824 +k1,8680:6040949,19174477:-27131904 +) +(1,8680:6040949,19174477:27131904,1287682,589824 +[1,8680:6630773,19174477:25952256,697858,0 +(1,8679:6630773,18907664:25952256,431045,106246 +(1,8676:6630773,18907664:0,0,0 +g1,8676:6630773,18907664 +g1,8676:6630773,18907664 +g1,8676:6303093,18907664 +(1,8676:6303093,18907664:0,0,0 +) +g1,8676:6630773,18907664 +) +g1,8679:7294681,18907664 +g1,8679:8954451,18907664 +g1,8679:9950313,18907664 +g1,8679:10946175,18907664 +g1,8679:12937899,18907664 +g1,8679:13601807,18907664 +h1,8679:15593531,18907664:0,0,0 +k1,8679:32583029,18907664:16989498 +g1,8679:32583029,18907664 +) +(1,8679:6630773,19592519:25952256,424439,106246 +h1,8679:6630773,19592519:0,0,0 +g1,8679:9286405,19592519 +g1,8679:9950313,19592519 +h1,8679:10614221,19592519:0,0,0 +k1,8679:32583029,19592519:21968808 +g1,8679:32583029,19592519 +) +] +) +k1,8680:32583029,19174477:-589824 +) +h1,8680:6630773,19764301:0,0,0 +(1,8683:6630773,20629381:25952256,513147,7863 +h1,8682:6630773,20629381:983040,0,0 +g1,8682:9004487,20629381 +g1,8682:10637644,20629381 +g1,8682:12945822,20629381 +g1,8682:14348292,20629381 +k1,8683:32583030,20629381:17078028 +g1,8683:32583030,20629381 +) +v1,8685:6630773,21314236:0,393216,0 +(1,8692:6630773,22444422:25952256,1523402,196608 +g1,8692:6630773,22444422 +g1,8692:6630773,22444422 +g1,8692:6434165,22444422 +(1,8692:6434165,22444422:0,1523402,196608 +r1,8716:32779637,22444422:26345472,1720010,196608 +k1,8692:6434165,22444422:-26345472 +) +(1,8692:6434165,22444422:26345472,1523402,196608 +[1,8692:6630773,22444422:25952256,1326794,0 +(1,8687:6630773,21548673:25952256,431045,106246 +(1,8686:6630773,21548673:0,0,0 +g1,8686:6630773,21548673 +g1,8686:6630773,21548673 +g1,8686:6303093,21548673 +(1,8686:6303093,21548673:0,0,0 +) +g1,8686:6630773,21548673 +) +k1,8687:6630773,21548673:0 +h1,8687:15593529,21548673:0,0,0 +k1,8687:32583029,21548673:16989500 +g1,8687:32583029,21548673 +) +(1,8691:6630773,22364600:25952256,424439,79822 +(1,8689:6630773,22364600:0,0,0 +g1,8689:6630773,22364600 +g1,8689:6630773,22364600 +g1,8689:6303093,22364600 +(1,8689:6303093,22364600:0,0,0 +) +g1,8689:6630773,22364600 +) +g1,8691:7626635,22364600 +g1,8691:8954451,22364600 +h1,8691:9286405,22364600:0,0,0 +k1,8691:32583029,22364600:23296624 +g1,8691:32583029,22364600 +) +] +) +g1,8692:32583029,22444422 +g1,8692:6630773,22444422 +g1,8692:6630773,22444422 +g1,8692:32583029,22444422 +g1,8692:32583029,22444422 +) +h1,8692:6630773,22641030:0,0,0 +(1,8696:6630773,23506110:25952256,513147,134348 +h1,8695:6630773,23506110:983040,0,0 +k1,8695:9013157,23506110:202657 +k1,8695:11388989,23506110:202658 +k1,8695:12250938,23506110:202657 +k1,8695:15508884,23506110:202658 +k1,8695:16730626,23506110:202657 +k1,8695:20449946,23506110:202658 +k1,8695:23792433,23506110:202657 +k1,8695:24611129,23506110:202658 +k1,8695:25832871,23506110:202657 +k1,8695:27018569,23506110:202658 +k1,8695:28353688,23506110:202657 +k1,8695:30745249,23506110:202658 +k1,8695:31563944,23506110:202657 +k1,8695:32583029,23506110:0 +) +(1,8696:6630773,24371190:25952256,513147,126483 +k1,8695:9448384,24371190:223696 +k1,8695:10868767,24371190:223696 +k1,8695:14582255,24371190:223696 +k1,8695:18362590,24371190:223696 +k1,8695:19577846,24371190:223696 +k1,8695:20867814,24371190:223697 +k1,8695:23167035,24371190:223696 +k1,8695:24359353,24371190:223696 +k1,8695:26848629,24371190:223696 +k1,8695:28091410,24371190:223696 +k1,8695:30844796,24371190:223696 +k1,8695:32051532,24371190:223696 +k1,8695:32583029,24371190:0 +) +(1,8696:6630773,25236270:25952256,505283,126483 +k1,8695:7921645,25236270:224601 +k1,8695:10358741,25236270:224601 +k1,8695:11234770,25236270:224601 +k1,8695:12478457,25236270:224602 +k1,8695:15330396,25236270:224601 +k1,8695:16746442,25236270:224601 +k1,8695:17990128,25236270:224601 +k1,8695:20387903,25236270:224601 +k1,8695:21744966,25236270:224601 +k1,8695:23035838,25236270:224601 +k1,8695:24008206,25236270:224602 +k1,8695:26582928,25236270:224601 +k1,8695:28850286,25236270:224601 +k1,8695:30245360,25236270:224601 +k1,8695:32583029,25236270:0 +) +(1,8696:6630773,26101350:25952256,505283,126483 +k1,8695:9123073,26101350:161184 +(1,8695:9123073,26101350:0,452978,115847 +r1,8716:11591610,26101350:2468537,568825,115847 +k1,8695:9123073,26101350:-2468537 +) +(1,8695:9123073,26101350:2468537,452978,115847 +k1,8695:9123073,26101350:3277 +h1,8695:11588333,26101350:0,411205,112570 +) +k1,8695:11752794,26101350:161184 +k1,8695:15403770,26101350:161184 +k1,8695:16180992,26101350:161184 +k1,8695:17361261,26101350:161184 +k1,8695:19527191,26101350:161184 +k1,8695:21069218,26101350:161183 +k1,8695:23511710,26101350:161184 +k1,8695:24288932,26101350:161184 +k1,8695:26201893,26101350:161184 +k1,8695:28060459,26101350:161184 +k1,8695:29507459,26101350:161184 +k1,8695:30320071,26101350:161184 +k1,8696:32583029,26101350:0 +) +(1,8696:6630773,26966430:25952256,513147,134348 +k1,8695:8049941,26966430:176605 +k1,8695:8582405,26966430:176604 +k1,8695:10614334,26966430:176605 +k1,8695:13141060,26966430:176605 +k1,8695:14711616,26966430:176605 +(1,8695:14711616,26966430:0,452978,122846 +r1,8716:17531865,26966430:2820249,575824,122846 +k1,8695:14711616,26966430:-2820249 +) +(1,8695:14711616,26966430:2820249,452978,122846 +k1,8695:14711616,26966430:3277 +h1,8695:17528588,26966430:0,411205,112570 +) +k1,8695:17708469,26966430:176604 +k1,8695:19745641,26966430:176605 +k1,8695:20573674,26966430:176605 +k1,8695:21498045,26966430:176605 +k1,8695:24024770,26966430:176604 +k1,8695:24667336,26966430:176605 +k1,8695:25712293,26966430:176605 +k1,8695:27437514,26966430:176605 +k1,8695:28072215,26966430:176604 +k1,8695:28900248,26966430:176605 +k1,8695:29824619,26966430:176605 +k1,8695:32583029,26966430:0 +) +(1,8696:6630773,27831510:25952256,505283,134348 +g1,8695:7446040,27831510 +g1,8695:8664354,27831510 +g1,8695:11022339,27831510 +g1,8695:12919606,27831510 +g1,8695:14137920,27831510 +g1,8695:16168225,27831510 +g1,8695:16898951,27831510 +g1,8695:18389895,27831510 +g1,8695:20908443,27831510 +g1,8695:21463532,27831510 +g1,8695:24997233,27831510 +(1,8695:24997233,27831510:0,452978,115847 +r1,8716:27465770,27831510:2468537,568825,115847 +k1,8695:24997233,27831510:-2468537 +) +(1,8695:24997233,27831510:2468537,452978,115847 +k1,8695:24997233,27831510:3277 +h1,8695:27462493,27831510:0,411205,112570 +) +g1,8695:27664999,27831510 +g1,8695:28395725,27831510 +k1,8696:32583029,27831510:1121530 +g1,8696:32583029,27831510 +) +(1,8698:6630773,28696590:25952256,513147,126483 +h1,8697:6630773,28696590:983040,0,0 +k1,8697:9487365,28696590:211559 +k1,8697:11708913,28696590:211559 +k1,8697:14518320,28696590:211560 +k1,8697:15195840,28696590:211559 +k1,8697:16577872,28696590:211559 +k1,8697:18264646,28696590:211559 +k1,8697:19246908,28696590:211559 +k1,8697:19873298,28696590:211547 +k1,8697:21915934,28696590:211560 +k1,8697:23704945,28696590:211559 +k1,8697:24532542,28696590:211559 +k1,8697:25763186,28696590:211559 +k1,8697:28057479,28696590:211559 +k1,8697:29923823,28696590:211560 +k1,8697:31267844,28696590:211559 +k1,8697:32227169,28696590:211559 +k1,8697:32583029,28696590:0 +) +(1,8698:6630773,29561670:25952256,513147,126483 +k1,8697:9483446,29561670:143415 +k1,8697:10971003,29561670:143414 +k1,8697:13157175,29561670:143415 +k1,8697:14694541,29561670:143415 +k1,8697:15608658,29561670:143414 +k1,8697:18494099,29561670:143415 +k1,8697:22125995,29561670:143415 +k1,8697:24066406,29561670:143414 +k1,8697:25777442,29561670:143415 +k1,8697:27806328,29561670:143415 +k1,8697:29120215,29561670:143414 +k1,8697:30367912,29561670:143415 +k1,8697:32583029,29561670:0 +) +(1,8698:6630773,30426750:25952256,513147,134348 +k1,8697:9532941,30426750:168006 +k1,8697:10387109,30426750:168006 +k1,8697:13645138,30426750:168006 +k1,8697:15842139,30426750:168006 +k1,8697:16693030,30426750:168006 +k1,8697:19295043,30426750:168006 +k1,8697:20857000,30426750:168006 +k1,8697:22989121,30426750:168007 +k1,8697:23840012,30426750:168006 +k1,8697:26442025,30426750:168006 +k1,8697:27296193,30426750:168006 +k1,8697:28958420,30426750:168006 +k1,8697:30448287,30426750:168006 +k1,8697:31563944,30426750:168006 +k1,8697:32583029,30426750:0 +) +(1,8698:6630773,31291830:25952256,505283,126483 +g1,8697:8661078,31291830 +g1,8697:9476345,31291830 +g1,8697:10694659,31291830 +g1,8697:13804342,31291830 +g1,8697:15855618,31291830 +g1,8697:17963911,31291830 +k1,8698:32583029,31291830:13432261 +g1,8698:32583029,31291830 +) +(1,8700:6630773,32156910:25952256,513147,134348 +h1,8699:6630773,32156910:983040,0,0 +k1,8699:9589437,32156910:192389 +k1,8699:10137686,32156910:192389 +k1,8699:12161151,32156910:192389 +k1,8699:12885037,32156910:192389 +k1,8699:15684448,32156910:192389 +k1,8699:16895922,32156910:192389 +k1,8699:19247067,32156910:192389 +k1,8699:20543738,32156910:192389 +k1,8699:21483894,32156910:192390 +k1,8699:23487698,32156910:192389 +k1,8699:24331515,32156910:192389 +k1,8699:24879764,32156910:192389 +k1,8699:26298332,32156910:192389 +k1,8699:27473761,32156910:192389 +k1,8699:29993333,32156910:192389 +k1,8699:30845014,32156910:192389 +k1,8699:32583029,32156910:0 +) +(1,8700:6630773,33021990:25952256,513147,134348 +k1,8699:8907894,33021990:201596 +k1,8699:9725529,33021990:201597 +k1,8699:10946210,33021990:201596 +k1,8699:13741721,33021990:201596 +k1,8699:14413210,33021990:201596 +k1,8699:15146304,33021990:201597 +k1,8699:16633716,33021990:201596 +k1,8699:18229918,33021990:201596 +k1,8699:19082942,33021990:201596 +k1,8699:20384233,33021990:201597 +k1,8699:21000670,33021990:201594 +k1,8699:22596217,33021990:201596 +k1,8699:23816898,33021990:201596 +k1,8699:24433335,33021990:201594 +k1,8699:26466007,33021990:201596 +k1,8699:27650643,33021990:201596 +k1,8699:28538402,33021990:201597 +k1,8699:29510701,33021990:201596 +k1,8699:32583029,33021990:0 +) +(1,8700:6630773,33887070:25952256,505283,134348 +k1,8699:9242455,33887070:197336 +k1,8699:10052553,33887070:197336 +k1,8699:11268974,33887070:197336 +k1,8699:14520288,33887070:197336 +k1,8699:16963543,33887070:197336 +k1,8699:18663620,33887070:197336 +k1,8699:19543841,33887070:197336 +k1,8699:26571339,33887070:197336 +k1,8699:31016719,33887070:197336 +k1,8700:32583029,33887070:0 +) +(1,8700:6630773,34752150:25952256,513147,126483 +k1,8699:8513269,34752150:176594 +k1,8699:9975680,34752150:176595 +k1,8699:11719895,34752150:176594 +k1,8699:13399230,34752150:176594 +k1,8699:15910873,34752150:176595 +k1,8699:17284154,34752150:176594 +k1,8699:18844868,34752150:176594 +k1,8699:20193901,34752150:176594 +k1,8699:22671465,34752150:176595 +k1,8699:24508741,34752150:176594 +k1,8699:28175127,34752150:176594 +k1,8699:30774588,34752150:176595 +k1,8699:31563944,34752150:176594 +k1,8699:32583029,34752150:0 +) +(1,8700:6630773,35617230:25952256,505283,126483 +g1,8699:7694422,35617230 +g1,8699:9396392,35617230 +g1,8699:12755112,35617230 +g1,8699:15355580,35617230 +g1,8699:17506471,35617230 +g1,8699:19148147,35617230 +g1,8699:19960138,35617230 +g1,8699:21178452,35617230 +g1,8699:21792524,35617230 +g1,8699:25151244,35617230 +k1,8700:32583029,35617230:4856875 +g1,8700:32583029,35617230 +) +v1,8700:6630773,36482310:0,393216,0 +(1,8705:6630773,36691921:25952256,602827,589824 +k1,8705:6040949,36691921:-589824 +(1,8705:6040949,36691921:0,602827,589824 +r1,8716:33172853,36691921:27131904,1192651,589824 +k1,8705:6040949,36691921:-27131904 +) +(1,8705:6040949,36691921:27131904,602827,589824 +[1,8705:6630773,36691921:25952256,13003,0 +(1,8704:6630773,37109963:25952256,431045,106246 +(1,8702:6630773,37109963:0,0,0 +g1,8702:6630773,37109963 +g1,8702:6630773,37109963 +g1,8702:6303093,37109963 +(1,8702:6303093,37109963:0,0,0 +) +g1,8702:6630773,37109963 +) +k1,8704:6630773,37109963:0 +g1,8704:7294681,37109963 +g1,8704:9950313,37109963 +h1,8704:15593530,37109963:0,0,0 +k1,8704:32583030,37109963:16989500 +g1,8704:32583030,37109963 +) +] +) +k1,8705:32583029,36691921:-589824 +) +h1,8705:6630773,37281745:0,0,0 +(1,8708:6630773,38146825:25952256,513147,134348 +h1,8707:6630773,38146825:983040,0,0 +k1,8707:9098103,38146825:230586 +k1,8707:10432971,38146825:230586 +k1,8707:12241009,38146825:230586 +k1,8707:13242297,38146825:230585 +k1,8707:16526861,38146825:230586 +k1,8707:19507338,38146825:230586 +k1,8707:21191512,38146825:230586 +k1,8707:22989719,38146825:230586 +k1,8707:24239390,38146825:230586 +k1,8707:26228961,38146825:230585 +k1,8707:28256544,38146825:230586 +k1,8707:29103168,38146825:230586 +k1,8707:31931601,38146825:230586 +k1,8707:32583029,38146825:0 +) +(1,8708:6630773,39011905:25952256,513147,126483 +k1,8707:7895093,39011905:146276 +k1,8707:9244611,39011905:146277 +k1,8707:12724048,39011905:146276 +k1,8707:14067011,39011905:146276 +k1,8707:16372043,39011905:146276 +k1,8707:17650782,39011905:146277 +k1,8707:18544824,39011905:146276 +k1,8707:21041221,39011905:146276 +k1,8707:21838925,39011905:146276 +k1,8707:23004287,39011905:146277 +k1,8707:24653304,39011905:146276 +k1,8707:27393495,39011905:146276 +k1,8707:28017528,39011905:146276 +k1,8707:29334278,39011905:146277 +k1,8707:31436804,39011905:146276 +k1,8707:32583029,39011905:0 +) +(1,8708:6630773,39876985:25952256,513147,134348 +g1,8707:7481430,39876985 +g1,8707:9071333,39876985 +g1,8707:10289647,39876985 +g1,8707:12647632,39876985 +g1,8707:13498289,39876985 +g1,8707:14053378,39876985 +g1,8707:15409317,39876985 +g1,8707:16701031,39876985 +g1,8707:20394640,39876985 +g1,8707:22329262,39876985 +g1,8707:23547576,39876985 +g1,8707:26800783,39876985 +g1,8707:29749903,39876985 +k1,8708:32583029,39876985:575411 +g1,8708:32583029,39876985 +) +v1,8708:6630773,40742065:0,393216,0 +(1,8713:6630773,40951676:25952256,602827,589824 +k1,8713:6040949,40951676:-589824 +(1,8713:6040949,40951676:0,602827,589824 +r1,8716:33172853,40951676:27131904,1192651,589824 +k1,8713:6040949,40951676:-27131904 +) +(1,8713:6040949,40951676:27131904,602827,589824 +[1,8713:6630773,40951676:25952256,13003,0 +(1,8712:6630773,41369718:25952256,431045,106246 +(1,8710:6630773,41369718:0,0,0 +g1,8710:6630773,41369718 +g1,8710:6630773,41369718 +g1,8710:6303093,41369718 +(1,8710:6303093,41369718:0,0,0 +) +g1,8710:6630773,41369718 +) +k1,8712:6630773,41369718:0 +g1,8712:7294681,41369718 +g1,8712:9950313,41369718 +g1,8712:15925484,41369718 +g1,8712:16589392,41369718 +h1,8712:20904793,41369718:0,0,0 +k1,8712:32583029,41369718:11678236 +g1,8712:32583029,41369718 +) +] +) +k1,8713:32583029,40951676:-589824 +) +h1,8713:6630773,41541500:0,0,0 +(1,8716:6630773,42406580:25952256,513147,134348 +h1,8715:6630773,42406580:983040,0,0 +k1,8715:10634749,42406580:244176 +k1,8715:11410422,42406580:244176 +k1,8715:13008572,42406580:244176 +k1,8715:15229969,42406580:244176 +k1,8715:17172183,42406580:244176 +k1,8715:18435445,42406580:244177 +k1,8715:20510697,42406580:244176 +k1,8715:21286370,42406580:244176 +k1,8715:23477621,42406580:244176 +k1,8715:26566060,42406580:244176 +k1,8715:28499754,42406580:244176 +k1,8715:32227169,42406580:244176 +k1,8715:32583029,42406580:0 +) +(1,8716:6630773,43271660:25952256,505283,134348 +k1,8715:8907548,43271660:272029 +k1,8715:9862462,43271660:272029 +k1,8715:13582340,43271660:272029 +k1,8715:15552407,43271660:272029 +k1,8715:18006130,43271660:272029 +k1,8715:20444124,43271660:272029 +k1,8715:21872862,43271660:272028 +k1,8715:24432098,43271660:272029 +k1,8715:26583044,43271660:272029 +k1,8715:27506501,43271660:272029 +k1,8715:28896574,43271660:272029 +k1,8715:30058582,43271660:272029 +k1,8715:32583029,43271660:0 +) +] +(1,8716:32583029,45706769:0,0,0 +g1,8716:32583029,45706769 +) +) +] +(1,8716:6630773,47279633:25952256,0,0 +h1,8716:6630773,47279633:25952256,0,0 +) +] +(1,8716:4262630,4025873:0,0,0 +[1,8716:-473656,4025873:0,0,0 +(1,8716:-473656,-710413:0,0,0 +(1,8716:-473656,-710413:0,0,0 +g1,8716:-473656,-710413 +) +g1,8716:-473656,-710413 +) +] +) +] +!23805 +}136 +!12 +{137 +[1,8743:4262630,47279633:28320399,43253760,0 +(1,8743:4262630,4025873:0,0,0 +[1,8743:-473656,4025873:0,0,0 +(1,8743:-473656,-710413:0,0,0 +(1,8743:-473656,-644877:0,0,0 +k1,8743:-473656,-644877:-65536 +) +(1,8743:-473656,4736287:0,0,0 +k1,8743:-473656,4736287:5209943 +) +g1,8743:-473656,-710413 +) +] ) -k1,8393:62087500,51504789:25935872 -g1,8393:62087500,51504789 +[1,8743:6630773,47279633:25952256,43253760,0 +[1,8743:6630773,4812305:25952256,786432,0 +(1,8743:6630773,4812305:25952256,505283,134348 +(1,8743:6630773,4812305:25952256,505283,134348 +g1,8743:3078558,4812305 +[1,8743:3078558,4812305:0,0,0 +(1,8743:3078558,2439708:0,1703936,0 +k1,8743:1358238,2439708:-1720320 +(1,8606:1358238,2439708:1720320,1703936,0 +(1,8606:1358238,2439708:1179648,16384,0 +r1,8743:2537886,2439708:1179648,16384,0 ) -] +g1,8606:3062174,2439708 +(1,8606:3062174,2439708:16384,1703936,0 +[1,8606:3062174,2439708:25952256,1703936,0 +(1,8606:3062174,1915420:25952256,1179648,0 +(1,8606:3062174,1915420:16384,1179648,0 +r1,8743:3078558,1915420:16384,1179648,0 ) -g1,8393:36675916,49800853 -(1,8393:36675916,49800853:1179648,16384,0 -r1,9505:37855564,49800853:1179648,16384,0 +k1,8606:29014430,1915420:25935872 +g1,8606:29014430,1915420 ) +] ) -k1,9505:3078556,49800853:-34777008 ) -] -g1,9505:6630773,4812305 -g1,9505:6630773,4812305 -g1,9505:9524187,4812305 -k1,9505:31387651,4812305:21863464 -) -) -] -[1,9505:6630773,45706769:25952256,40108032,0 -(1,9505:6630773,45706769:25952256,40108032,0 -(1,9505:6630773,45706769:0,0,0 -g1,9505:6630773,45706769 -) -[1,9505:6630773,45706769:25952256,40108032,0 -v1,9487:6630773,6254097:0,393216,0 -(1,9487:6630773,12748402:25952256,6887521,0 -g1,9487:6630773,12748402 -g1,9487:6303093,12748402 -r1,9505:6401397,12748402:98304,6887521,0 -g1,9487:6600626,12748402 -g1,9487:6797234,12748402 -[1,9487:6797234,12748402:25785795,6887521,0 -v1,9476:6797234,6254097:0,393216,0 -(1,9483:6797234,8545707:25785795,2684826,196608 -g1,9483:6797234,8545707 -g1,9483:6797234,8545707 -g1,9483:6600626,8545707 -(1,9483:6600626,8545707:0,2684826,196608 -r1,9505:32779637,8545707:26179011,2881434,196608 -k1,9483:6600625,8545707:-26179012 -) -(1,9483:6600626,8545707:26179011,2684826,196608 -[1,9483:6797234,8545707:25785795,2488218,0 -(1,9478:6797234,6445986:25785795,388497,9436 -(1,9477:6797234,6445986:0,0,0 -g1,9477:6797234,6445986 -g1,9477:6797234,6445986 -g1,9477:6469554,6445986 -(1,9477:6469554,6445986:0,0,0 -) -g1,9477:6797234,6445986 -) -g1,9478:7429526,6445986 -g1,9478:8377964,6445986 -k1,9478:8377964,6445986:0 -h1,9478:10274839,6445986:0,0,0 -k1,9478:32583029,6445986:22308190 -g1,9478:32583029,6445986 -) -(1,9479:6797234,7112164:25785795,404226,9436 -h1,9479:6797234,7112164:0,0,0 -g1,9479:7429526,7112164 -g1,9479:8377964,7112164 -h1,9479:9958693,7112164:0,0,0 -k1,9479:32583029,7112164:22624336 -g1,9479:32583029,7112164 -) -(1,9480:6797234,7778342:25785795,404226,101187 -h1,9480:6797234,7778342:0,0,0 -g1,9480:7429526,7778342 -g1,9480:8377964,7778342 -g1,9480:11855568,7778342 -g1,9480:13120152,7778342 -g1,9480:15965464,7778342 -h1,9480:16913901,7778342:0,0,0 -k1,9480:32583029,7778342:15669128 -g1,9480:32583029,7778342 -) -(1,9481:6797234,8444520:25785795,404226,101187 -h1,9481:6797234,8444520:0,0,0 -g1,9481:7429526,8444520 -g1,9481:9010255,8444520 -k1,9481:9010255,8444520:1573 -h1,9481:10276411,8444520:0,0,0 -k1,9481:32583029,8444520:22306618 -g1,9481:32583029,8444520 -) -] -) -g1,9483:32583029,8545707 -g1,9483:6797234,8545707 -g1,9483:6797234,8545707 -g1,9483:32583029,8545707 -g1,9483:32583029,8545707 -) -h1,9483:6797234,8742315:0,0,0 -(1,9487:6797234,10108091:25785795,513147,134348 -h1,9486:6797234,10108091:983040,0,0 -k1,9486:8460256,10108091:202225 -k1,9486:9832955,10108091:202226 -k1,9486:10850448,10108091:202225 -k1,9486:12118944,10108091:202225 -k1,9486:15985943,10108091:202226 -k1,9486:17518549,10108091:202225 -k1,9486:18739860,10108091:202226 -k1,9486:20596869,10108091:202225 -k1,9486:23107272,10108091:202225 -k1,9486:24301058,10108091:202226 -k1,9486:26155446,10108091:202225 -k1,9486:27040556,10108091:202225 -k1,9486:28413255,10108091:202226 -k1,9486:30786032,10108091:202225 -k1,9486:32583029,10108091:0 -) -(1,9487:6797234,10949579:25785795,505283,134348 -k1,9486:8042231,10949579:225912 -k1,9486:10278788,10949579:225912 -k1,9486:11884888,10949579:225912 -k1,9486:14482547,10949579:225911 -k1,9486:15469987,10949579:225912 -k1,9486:18098449,10949579:225912 -k1,9486:19343446,10949579:225912 -k1,9486:21239215,10949579:225912 -k1,9486:23047166,10949579:225912 -k1,9486:25085804,10949579:225912 -k1,9486:26503160,10949579:225911 -k1,9486:28071905,10949579:225912 -k1,9486:29691768,10949579:225912 -k1,9486:30936765,10949579:225912 -k1,9487:32583029,10949579:0 -) -(1,9487:6797234,11791067:25785795,505283,126483 -k1,9486:9074370,11791067:134109 -k1,9486:10701389,11791067:134109 -k1,9486:12005971,11791067:134109 -k1,9486:15804853,11791067:134109 -k1,9486:17487578,11791067:134109 -k1,9486:19073308,11791067:134108 -k1,9486:22488149,11791067:134109 -k1,9486:24288839,11791067:134109 -k1,9486:25840492,11791067:134109 -k1,9486:27067086,11791067:134109 -(1,9486:27067086,11791067:0,452978,115847 -r1,9505:30239046,11791067:3171960,568825,115847 -k1,9486:27067086,11791067:-3171960 -) -(1,9486:27067086,11791067:3171960,452978,115847 -k1,9486:27067086,11791067:3277 -h1,9486:30235769,11791067:0,411205,112570 -) -k1,9486:30373155,11791067:134109 -k1,9487:32583029,11791067:0 -) -(1,9487:6797234,12632555:25785795,505283,115847 -(1,9486:6797234,12632555:0,459977,115847 -r1,9505:11024330,12632555:4227096,575824,115847 -k1,9486:6797234,12632555:-4227096 -) -(1,9486:6797234,12632555:4227096,459977,115847 -k1,9486:6797234,12632555:3277 -h1,9486:11021053,12632555:0,411205,112570 -) -g1,9486:11223559,12632555 -g1,9486:12074216,12632555 -g1,9486:14304406,12632555 -g1,9486:15522720,12632555 -k1,9487:32583029,12632555:12060567 -g1,9487:32583029,12632555 -) -] -g1,9487:32583029,12748402 -) -h1,9487:6630773,12748402:0,0,0 -v1,9490:6630773,14099211:0,393216,0 -(1,9491:6630773,16349073:25952256,2643078,0 -g1,9491:6630773,16349073 -g1,9491:6303093,16349073 -r1,9505:6401397,16349073:98304,2643078,0 -g1,9491:6600626,16349073 -g1,9491:6797234,16349073 -[1,9491:6797234,16349073:25785795,2643078,0 -(1,9491:6797234,14531749:25785795,825754,196608 -(1,9490:6797234,14531749:0,825754,196608 -r1,9505:8834093,14531749:2036859,1022362,196608 -k1,9490:6797234,14531749:-2036859 -) -(1,9490:6797234,14531749:2036859,825754,196608 -) -k1,9490:8968222,14531749:134129 -k1,9490:10694440,14531749:327680 -k1,9490:14371444,14531749:134128 -k1,9490:16073194,14531749:134129 -k1,9490:17226408,14531749:134129 -k1,9490:21010891,14531749:134128 -k1,9490:23174015,14531749:134129 -k1,9490:24499589,14531749:134129 -k1,9490:25652803,14531749:134129 -k1,9490:28961495,14531749:134128 -k1,9490:29762780,14531749:134129 -(1,9490:29762780,14531749:0,459977,115847 -r1,9505:32583029,14531749:2820249,575824,115847 -k1,9490:29762780,14531749:-2820249 -) -(1,9490:29762780,14531749:2820249,459977,115847 -k1,9490:29762780,14531749:3277 -h1,9490:32579752,14531749:0,411205,112570 -) -k1,9490:32583029,14531749:0 -) -(1,9491:6797234,15373237:25785795,505283,134348 -k1,9490:8375506,15373237:184321 -(1,9490:8375506,15373237:0,414482,115847 -r1,9505:9085484,15373237:709978,530329,115847 -k1,9490:8375506,15373237:-709978 -) -(1,9490:8375506,15373237:709978,414482,115847 -k1,9490:8375506,15373237:3277 -h1,9490:9082207,15373237:0,411205,112570 -) -k1,9490:9443475,15373237:184321 -(1,9490:9443475,15373237:0,414482,115847 -r1,9505:10856876,15373237:1413401,530329,115847 -k1,9490:9443475,15373237:-1413401 -) -(1,9490:9443475,15373237:1413401,414482,115847 -k1,9490:9443475,15373237:3277 -h1,9490:10853599,15373237:0,411205,112570 -) -k1,9490:11041197,15373237:184321 -k1,9490:12416964,15373237:184322 -(1,9490:12416964,15373237:0,452978,122846 -r1,9505:15588924,15373237:3171960,575824,122846 -k1,9490:12416964,15373237:-3171960 -) -(1,9490:12416964,15373237:3171960,452978,122846 -k1,9490:12416964,15373237:3277 -h1,9490:15585647,15373237:0,411205,112570 -) -k1,9490:15773245,15373237:184321 -k1,9490:18162853,15373237:184321 -k1,9490:19033336,15373237:184321 -k1,9490:22620286,15373237:184321 -k1,9490:23456035,15373237:184321 -(1,9490:23456035,15373237:0,414482,115847 -r1,9505:24869436,15373237:1413401,530329,115847 -k1,9490:23456035,15373237:-1413401 -) -(1,9490:23456035,15373237:1413401,414482,115847 -k1,9490:23456035,15373237:3277 -h1,9490:24866159,15373237:0,411205,112570 -) -k1,9490:25227428,15373237:184322 -k1,9490:26829293,15373237:184321 -k1,9490:28205059,15373237:184321 -k1,9490:29408465,15373237:184321 -k1,9490:32583029,15373237:0 -) -(1,9491:6797234,16214725:25785795,513147,134348 -g1,9490:8694501,16214725 -g1,9490:10269331,16214725 -g1,9490:12160700,16214725 -g1,9490:15313637,16214725 -g1,9490:16172158,16214725 -g1,9490:16727247,16214725 -g1,9490:18996103,16214725 -g1,9490:21173209,16214725 -g1,9490:22363998,16214725 -g1,9490:23629498,16214725 -g1,9490:26612696,16214725 -(1,9490:26819790,16214725:0,414482,115847 -r1,9505:27529768,16214725:709978,530329,115847 -k1,9490:26819790,16214725:-709978 -) -(1,9490:26819790,16214725:709978,414482,115847 -k1,9490:26819790,16214725:3277 -h1,9490:27526491,16214725:0,411205,112570 -) -k1,9491:32583029,16214725:4672497 -g1,9491:32583029,16214725 -) -] -g1,9491:32583029,16349073 -) -h1,9491:6630773,16349073:0,0,0 -(1,9493:6630773,19156641:25952256,32768,229376 -(1,9493:6630773,19156641:0,32768,229376 -(1,9493:6630773,19156641:5505024,32768,229376 -r1,9505:12135797,19156641:5505024,262144,229376 -) -k1,9493:6630773,19156641:-5505024 -) -(1,9493:6630773,19156641:25952256,32768,0 -r1,9505:32583029,19156641:25952256,32768,0 -) -) -(1,9493:6630773,20760969:25952256,606339,14155 -(1,9493:6630773,20760969:1974731,568590,14155 -g1,9493:6630773,20760969 -g1,9493:8605504,20760969 -) -k1,9493:32583029,20760969:20593508 -g1,9493:32583029,20760969 -) -(1,9496:6630773,21995673:25952256,513147,134348 -k1,9495:7719841,21995673:135519 -k1,9495:9135278,21995673:135519 -k1,9495:10289882,21995673:135519 -k1,9495:12163416,21995673:135519 -k1,9495:14970838,21995673:135519 -k1,9495:15757785,21995673:135519 -k1,9495:16912389,21995673:135519 -k1,9495:19493056,21995673:135519 -k1,9495:20287867,21995673:135519 -k1,9495:23447873,21995673:135519 -k1,9495:26658997,21995673:135519 -k1,9495:27453808,21995673:135519 -k1,9495:27945187,21995673:135519 -k1,9495:30822732,21995673:135519 -k1,9496:32583029,21995673:0 -) -(1,9496:6630773,22837161:25952256,505283,134348 -k1,9495:8503970,22837161:234142 -k1,9495:11069884,22837161:234143 -k1,9495:11986911,22837161:234142 -k1,9495:17739840,22837161:234142 -k1,9495:21060728,22837161:234142 -k1,9495:22051156,22837161:234143 -k1,9495:25129560,22837161:234142 -k1,9495:26317251,22837161:234142 -k1,9495:27643878,22837161:234142 -k1,9495:28897106,22837161:234143 -k1,9495:30784721,22837161:234142 -k1,9495:32583029,22837161:0 -) -(1,9496:6630773,23678649:25952256,513147,126483 -k1,9495:9681473,23678649:206438 -k1,9495:10539340,23678649:206439 -k1,9495:12483793,23678649:206438 -k1,9495:14141854,23678649:206439 -k1,9495:15505002,23678649:206438 -k1,9495:16370733,23678649:206439 -k1,9495:18273898,23678649:206438 -k1,9495:21939983,23678649:206439 -k1,9495:22805713,23678649:206438 -k1,9495:24031237,23678649:206439 -k1,9495:27313280,23678649:206438 -k1,9495:28179011,23678649:206439 -k1,9495:28741309,23678649:206438 -k1,9496:32583029,23678649:0 -) -(1,9496:6630773,24520137:25952256,505283,134348 -g1,9495:8072565,24520137 -g1,9495:9290879,24520137 -g1,9495:11731439,24520137 -k1,9496:32583028,24520137:17960796 -g1,9496:32583028,24520137 -) -(1,9498:6630773,25361625:25952256,513147,134348 -h1,9497:6630773,25361625:983040,0,0 -k1,9497:9048723,25361625:238223 -k1,9497:11565634,25361625:238224 -k1,9497:12463149,25361625:238223 -k1,9497:15777633,25361625:238224 -k1,9497:17512043,25361625:238223 -k1,9497:19488282,25361625:238224 -k1,9497:22559626,25361625:238223 -k1,9497:25469096,25361625:238223 -k1,9497:27636700,25361625:238224 -k1,9497:29772846,25361625:238223 -k1,9497:30366930,25361625:238224 -k1,9497:32020075,25361625:238223 -k1,9497:32583029,25361625:0 -) -(1,9498:6630773,26203113:25952256,513147,126483 -k1,9497:8857031,26203113:194642 -k1,9497:10880783,26203113:194642 -k1,9497:12620763,26203113:194641 -k1,9497:14560629,26203113:194642 -k1,9497:17127019,26203113:194642 -k1,9497:17677521,26203113:194642 -k1,9497:20904513,26203113:194641 -k1,9497:22383661,26203113:194642 -k1,9497:26152637,26203113:194642 -k1,9497:28045317,26203113:194642 -k1,9497:29259043,26203113:194641 -k1,9497:30803727,26203113:194642 -k1,9497:31657661,26203113:194642 -k1,9498:32583029,26203113:0 -) -(1,9498:6630773,27044601:25952256,513147,134348 -k1,9497:9232249,27044601:238248 -k1,9497:10602960,27044601:238249 -k1,9497:12011681,27044601:238248 -k1,9497:13269015,27044601:238249 -k1,9497:14922185,27044601:238248 -k1,9497:16351879,27044601:238249 -k1,9497:19368198,27044601:238248 -k1,9497:20219209,27044601:238249 -k1,9497:21476542,27044601:238248 -k1,9497:23098911,27044601:238249 -k1,9497:26523519,27044601:238248 -k1,9497:29737103,27044601:238249 -k1,9497:30994436,27044601:238248 -k1,9497:32583029,27044601:0 -) -(1,9498:6630773,27886089:25952256,513147,134348 -k1,9497:7450003,27886089:191395 -k1,9497:8056233,27886089:191387 -k1,9497:9902412,27886089:191395 -k1,9497:11810194,27886089:191394 -k1,9497:12660881,27886089:191395 -k1,9497:15569399,27886089:191395 -k1,9497:17506018,27886089:191395 -k1,9497:18688972,27886089:191394 -k1,9497:21838007,27886089:191395 -k1,9497:23773315,27886089:191395 -k1,9497:25700103,27886089:191395 -(1,9497:25700103,27886089:0,459977,115847 -r1,9505:26761792,27886089:1061689,575824,115847 -k1,9497:25700103,27886089:-1061689 -) -(1,9497:25700103,27886089:1061689,459977,115847 -k1,9497:25700103,27886089:3277 -h1,9497:26758515,27886089:0,411205,112570 -) -k1,9497:27126856,27886089:191394 -(1,9497:27126856,27886089:0,452978,115847 -r1,9505:28891969,27886089:1765113,568825,115847 -k1,9497:27126856,27886089:-1765113 -) -(1,9497:27126856,27886089:1765113,452978,115847 -k1,9497:27126856,27886089:3277 -h1,9497:28888692,27886089:0,411205,112570 -) -k1,9497:29083364,27886089:191395 -k1,9497:30466204,27886089:191395 -(1,9497:30466204,27886089:0,414482,115847 -r1,9505:32583029,27886089:2116825,530329,115847 -k1,9497:30466204,27886089:-2116825 -) -(1,9497:30466204,27886089:2116825,414482,115847 -k1,9497:30466204,27886089:3277 -h1,9497:32579752,27886089:0,411205,112570 -) -k1,9497:32583029,27886089:0 -) -(1,9498:6630773,28727577:25952256,513147,126483 -k1,9497:10319290,28727577:160714 -k1,9497:12037796,28727577:160715 -k1,9497:13941768,28727577:160714 -k1,9497:14718520,28727577:160714 -k1,9497:16209616,28727577:160715 -k1,9497:18153565,28727577:160714 -k1,9497:21288303,28727577:160714 -k1,9497:22829205,28727577:160714 -k1,9497:25419995,28727577:160715 -k1,9497:26974660,28727577:160714 -k1,9497:29459936,28727577:160714 -k1,9497:30272079,28727577:160715 -k1,9497:31451878,28727577:160714 -k1,9498:32583029,28727577:0 -) -(1,9498:6630773,29569065:25952256,505283,126483 -k1,9497:7891484,29569065:168226 -k1,9497:9439897,29569065:168225 -k1,9497:11662021,29569065:168226 -k1,9497:13391315,29569065:168226 -k1,9497:14750985,29569065:168225 -k1,9497:16249592,29569065:168226 -k1,9497:17436903,29569065:168226 -k1,9497:20637480,29569065:168226 -k1,9497:22090211,29569065:168225 -k1,9497:25677450,29569065:168226 -k1,9497:26864761,29569065:168226 -k1,9497:29750109,29569065:168225 -k1,9497:30449832,29569065:168226 -k1,9497:32583029,29569065:0 -) -(1,9498:6630773,30410553:25952256,513147,134348 -k1,9497:8642981,30410553:228973 -k1,9497:9891038,30410553:228972 -k1,9497:11773484,30410553:228973 -k1,9497:15113450,30410553:228972 -k1,9497:16446705,30410553:228973 -k1,9497:17423444,30410553:228973 -k1,9497:21853929,30410553:228972 -k1,9497:23476853,30410553:228973 -k1,9497:25356023,30410553:228973 -k1,9497:27027442,30410553:228972 -k1,9497:28413125,30410553:228973 -k1,9497:29301389,30410553:228972 -k1,9497:31227089,30410553:228973 -k1,9498:32583029,30410553:0 -) -(1,9498:6630773,31252041:25952256,513147,134348 -k1,9497:9180022,31252041:164394 -k1,9497:11079810,31252041:164395 -k1,9497:12263289,31252041:164394 -k1,9497:13923216,31252041:164395 -k1,9497:16388579,31252041:164394 -k1,9497:17212266,31252041:164395 -k1,9497:19015715,31252041:164394 -k1,9497:21467317,31252041:164395 -k1,9497:23804885,31252041:164394 -k1,9497:24585318,31252041:164395 -k1,9497:25768797,31252041:164394 -k1,9497:28102434,31252041:164395 -k1,9497:28918256,31252041:164394 -k1,9498:32583029,31252041:0 -) -(1,9498:6630773,32093529:25952256,513147,126483 -k1,9497:7242268,32093529:196652 -k1,9497:9773971,32093529:196655 -k1,9497:10598461,32093529:196655 -k1,9497:11383629,32093529:196655 -k1,9497:13531946,32093529:196655 -k1,9497:17207251,32093529:196654 -k1,9497:19735022,32093529:196655 -k1,9497:21676901,32093529:196655 -k1,9497:22559718,32093529:196655 -k1,9497:25846396,32093529:196655 -k1,9497:26659089,32093529:196655 -k1,9497:28058984,32093529:196654 -k1,9497:30534326,32093529:196655 -k1,9497:31835263,32093529:196655 -k1,9497:32583029,32093529:0 -) -(1,9498:6630773,32935017:25952256,513147,134348 -k1,9497:9503489,32935017:153627 -k1,9497:14601807,32935017:153627 -k1,9497:15516962,32935017:153627 -k1,9497:17100586,32935017:153628 -k1,9497:17905641,32935017:153627 -k1,9497:19078353,32935017:153627 -k1,9497:21024390,32935017:153627 -k1,9497:24203814,32935017:153627 -k1,9497:27447464,32935017:153627 -k1,9497:28217130,32935017:153628 -k1,9497:30649444,32935017:153627 -h1,9497:31620032,32935017:0,0,0 -k1,9497:31773659,32935017:153627 -k1,9497:32583029,32935017:0 -) -(1,9498:6630773,33776505:25952256,513147,134348 -k1,9497:8307337,33776505:178411 -h1,9497:9502714,33776505:0,0,0 -k1,9497:9854794,33776505:178410 -k1,9497:10661040,33776505:178411 -k1,9497:12541421,33776505:178411 -k1,9497:14417214,33776505:178411 -k1,9497:15010447,33776505:178390 -k1,9497:18525951,33776505:178411 -k1,9497:21730158,33776505:178410 -k1,9497:23100014,33776505:178411 -k1,9497:26355340,33776505:178411 -k1,9497:27638032,33776505:178410 -k1,9497:28564209,33776505:178411 -k1,9497:30255846,33776505:178411 -k1,9497:32583029,33776505:0 -) -(1,9498:6630773,34617993:25952256,513147,126483 -k1,9497:7524159,34617993:234094 -k1,9497:10089370,34617993:234095 -k1,9497:13040587,34617993:234094 -k1,9497:15019906,34617993:234095 -k1,9497:19653432,34617993:234094 -k1,9497:20546818,34617993:234094 -k1,9497:24057058,34617993:234095 -k1,9497:27695747,34617993:234094 -k1,9497:28461339,34617993:234095 -k1,9497:31773659,34617993:234094 -k1,9497:32583029,34617993:0 -) -(1,9498:6630773,35459481:25952256,505283,134348 -g1,9497:8328155,35459481 -h1,9497:9125073,35459481:0,0,0 -k1,9498:32583029,35459481:23077192 -g1,9498:32583029,35459481 -) -v1,9500:6630773,36810291:0,393216,0 -(1,9501:6630773,41539317:25952256,5122242,0 -g1,9501:6630773,41539317 -g1,9501:6303093,41539317 -r1,9505:6401397,41539317:98304,5122242,0 -g1,9501:6600626,41539317 -g1,9501:6797234,41539317 -[1,9501:6797234,41539317:25785795,5122242,0 -(1,9501:6797234,37205394:25785795,788319,218313 -(1,9500:6797234,37205394:0,788319,218313 -r1,9505:7917113,37205394:1119879,1006632,218313 -k1,9500:6797234,37205394:-1119879 -) -(1,9500:6797234,37205394:1119879,788319,218313 -) -k1,9500:8098563,37205394:181450 -k1,9500:8426243,37205394:327680 -k1,9500:9561243,37205394:181451 -k1,9500:10835178,37205394:181450 -k1,9500:13347744,37205394:181450 -k1,9500:14212080,37205394:181451 -k1,9500:16833435,37205394:181450 -k1,9500:19732008,37205394:181450 -k1,9500:21611497,37205394:181451 -k1,9500:22661299,37205394:181450 -k1,9500:24373016,37205394:181451 -k1,9500:25205894,37205394:181450 -k1,9500:27150918,37205394:181450 -k1,9500:28351454,37205394:181451 -k1,9500:30186377,37205394:181450 -k1,9501:32583029,37205394:0 -) -(1,9501:6797234,38046882:25785795,505283,126483 -k1,9500:9196070,38046882:188307 -k1,9500:12908902,38046882:188306 -k1,9500:14050758,38046882:188307 -k1,9500:15343347,38046882:188307 -k1,9500:16597924,38046882:188306 -k1,9500:18161832,38046882:188307 -k1,9500:19442624,38046882:188307 -k1,9500:22348053,38046882:188306 -k1,9500:23187788,38046882:188307 -k1,9500:25139669,38046882:188307 -k1,9500:26347060,38046882:188306 -k1,9500:28188840,38046882:188307 -k1,9500:32583029,38046882:0 -) -(1,9501:6797234,38888370:25785795,513147,126483 -k1,9500:7712974,38888370:264312 -k1,9500:8996370,38888370:264311 -k1,9500:12023025,38888370:264312 -k1,9500:15241044,38888370:264311 -k1,9500:16164648,38888370:264312 -k1,9500:16784820,38888370:264312 -k1,9500:19669260,38888370:264311 -k1,9500:22085119,38888370:264312 -k1,9500:23421600,38888370:264312 -k1,9500:24971727,38888370:264311 -k1,9500:25887467,38888370:264312 -k1,9500:27915352,38888370:264311 -k1,9500:30942007,38888370:264312 -k1,9501:32583029,38888370:0 -) -(1,9501:6797234,39729858:25785795,513147,134348 -k1,9500:8597989,39729858:202987 -k1,9500:9452403,39729858:202986 -k1,9500:10011250,39729858:202987 -k1,9500:12087256,39729858:202987 -k1,9500:14268120,39729858:202987 -k1,9500:15130398,39729858:202986 -k1,9500:17953514,39729858:202987 -k1,9500:20340816,39729858:202987 -k1,9500:21171638,39729858:202987 -k1,9500:22759400,39729858:202986 -k1,9500:25679510,39729858:202987 -k1,9500:26986779,39729858:202987 -k1,9500:27937532,39729858:202987 -k1,9500:29653744,39729858:202986 -k1,9500:30508159,39729858:202987 -k1,9500:32583029,39729858:0 -) -(1,9501:6797234,40571346:25785795,505283,134348 -k1,9500:9535732,40571346:179972 -k1,9500:10847511,40571346:179972 -k1,9500:13005360,40571346:179972 -k1,9500:13868217,40571346:179972 -k1,9500:15215385,40571346:179972 -k1,9500:18589582,40571346:179972 -k1,9500:19926263,40571346:179971 -k1,9500:22729641,40571346:179972 -k1,9500:23522375,40571346:179972 -k1,9500:24058207,40571346:179972 -k1,9500:25837257,40571346:179972 -k1,9500:27752622,40571346:179972 -k1,9500:29629321,40571346:179972 -k1,9500:32583029,40571346:0 -) -(1,9501:6797234,41412834:25785795,505283,126483 -g1,9500:10840805,41412834 -g1,9500:11656072,41412834 -g1,9500:12987108,41412834 -g1,9500:14726433,41412834 -g1,9500:15340505,41412834 -g1,9500:17664411,41412834 -g1,9500:18546525,41412834 -g1,9500:22159524,41412834 -k1,9501:32583029,41412834:7063474 -g1,9501:32583029,41412834 -) -] -g1,9501:32583029,41539317 -) -h1,9501:6630773,41539317:0,0,0 -(1,9503:6630773,43630577:25952256,555811,139132 -(1,9503:6630773,43630577:2450326,525533,12975 -g1,9503:6630773,43630577 -g1,9503:9081099,43630577 -) -(1,9503:9081099,43630577:0,505647,127104 -r1,9505:10248302,43630577:1167203,632751,127104 -k1,9503:9081099,43630577:-1167203 -) -(1,9503:9081099,43630577:1167203,505647,127104 -k1,9503:9081099,43630577:3277 -h1,9503:10245025,43630577:0,452326,123827 -) -g1,9503:10473222,43630577 -k1,9503:32583029,43630577:20138156 -g1,9503:32583029,43630577 -) -(1,9505:6630773,44865281:25952256,513147,126483 -k1,9504:8098046,44865281:270586 -k1,9504:9970332,44865281:270586 -k1,9504:13545899,44865281:270586 -k1,9504:15329711,44865281:270586 -k1,9504:16986383,44865281:270586 -k1,9504:17916261,44865281:270586 -k1,9504:19601768,44865281:270585 -k1,9504:20403851,44865281:270586 -k1,9504:21030297,44865281:270586 -(1,9504:21030297,44865281:0,459977,115847 -r1,9505:22091986,44865281:1061689,575824,115847 -k1,9504:21030297,44865281:-1061689 -) -(1,9504:21030297,44865281:1061689,459977,115847 -k1,9504:21030297,44865281:3277 -h1,9504:22088709,44865281:0,411205,112570 -) -k1,9504:22362572,44865281:270586 -k1,9504:24221751,44865281:270586 -k1,9504:26366667,44865281:270586 -k1,9504:28382477,44865281:270586 -k1,9504:30249520,44865281:270586 -k1,9504:31136144,44865281:270586 -k1,9504:31821501,44865281:270514 -k1,9504:32583029,44865281:0 -) -(1,9505:6630773,45706769:25952256,513147,134348 -k1,9504:9561912,45706769:166175 -k1,9504:12586766,45706769:166174 -k1,9504:13108801,45706769:166175 -k1,9504:14268502,45706769:166175 -k1,9504:15117561,45706769:166174 -k1,9504:17261613,45706769:166175 -k1,9504:18087080,45706769:166175 -k1,9504:20263899,45706769:166174 -k1,9504:21081502,45706769:166175 -k1,9504:22194017,45706769:166175 -k1,9504:24178816,45706769:166175 -k1,9504:26440176,45706769:166174 -k1,9504:26962211,45706769:166175 -k1,9504:26962211,45706769:0 -k1,9504:27128386,45706769:166175 -k1,9504:28709482,45706769:166174 -k1,9504:30572384,45706769:166175 -k1,9504:32583029,45706769:0 -) -] -(1,9505:32583029,45706769:0,0,0 -g1,9505:32583029,45706769 -) -) -] -(1,9505:6630773,47279633:25952256,0,0 -h1,9505:6630773,47279633:25952256,0,0 -) -] -(1,9505:4262630,4025873:0,0,0 -[1,9505:-473656,4025873:0,0,0 -(1,9505:-473656,-710413:0,0,0 -(1,9505:-473656,-710413:0,0,0 -g1,9505:-473656,-710413 -) -g1,9505:-473656,-710413 -) -] -) -] -!25552 -}160 -Input:1370:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1371:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1372:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1373:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1374:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1375:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1376:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1377:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1378:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1379:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1380:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1381:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1382:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1383:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1328 -{161 -[1,9574:4262630,47279633:28320399,43253760,0 -(1,9574:4262630,4025873:0,0,0 -[1,9574:-473656,4025873:0,0,0 -(1,9574:-473656,-710413:0,0,0 -(1,9574:-473656,-644877:0,0,0 -k1,9574:-473656,-644877:-65536 ) -(1,9574:-473656,4736287:0,0,0 -k1,9574:-473656,4736287:5209943 +] +[1,8743:3078558,4812305:0,0,0 +(1,8743:3078558,2439708:0,1703936,0 +g1,8743:29030814,2439708 +g1,8743:36135244,2439708 +(1,8606:36135244,2439708:1720320,1703936,0 +(1,8606:36135244,2439708:16384,1703936,0 +[1,8606:36135244,2439708:25952256,1703936,0 +(1,8606:36135244,1915420:25952256,1179648,0 +(1,8606:36135244,1915420:16384,1179648,0 +r1,8743:36151628,1915420:16384,1179648,0 ) -g1,9574:-473656,-710413 +k1,8606:62087500,1915420:25935872 +g1,8606:62087500,1915420 ) ] ) -[1,9574:6630773,47279633:25952256,43253760,0 -[1,9574:6630773,4812305:25952256,786432,0 -(1,9574:6630773,4812305:25952256,505283,134348 -(1,9574:6630773,4812305:25952256,505283,134348 -g1,9574:3078558,4812305 -[1,9574:3078558,4812305:0,0,0 -(1,9574:3078558,2439708:0,1703936,0 -k1,9574:1358238,2439708:-1720320 -(1,8393:1358238,2439708:1720320,1703936,0 -(1,8393:1358238,2439708:1179648,16384,0 -r1,9574:2537886,2439708:1179648,16384,0 +g1,8606:36675916,2439708 +(1,8606:36675916,2439708:1179648,16384,0 +r1,8743:37855564,2439708:1179648,16384,0 ) -g1,8393:3062174,2439708 -(1,8393:3062174,2439708:16384,1703936,0 -[1,8393:3062174,2439708:25952256,1703936,0 -(1,8393:3062174,1915420:25952256,1179648,0 -(1,8393:3062174,1915420:16384,1179648,0 -r1,9574:3078558,1915420:16384,1179648,0 ) -k1,8393:29014430,1915420:25935872 -g1,8393:29014430,1915420 +k1,8743:3078556,2439708:-34777008 ) ] +[1,8743:3078558,4812305:0,0,0 +(1,8743:3078558,49800853:0,16384,2228224 +k1,8743:1358238,49800853:-1720320 +(1,8606:1358238,49800853:1720320,16384,2228224 +(1,8606:1358238,49800853:1179648,16384,0 +r1,8743:2537886,49800853:1179648,16384,0 ) +g1,8606:3062174,49800853 +(1,8606:3062174,52029077:16384,1703936,0 +[1,8606:3062174,52029077:25952256,1703936,0 +(1,8606:3062174,51504789:25952256,1179648,0 +(1,8606:3062174,51504789:16384,1179648,0 +r1,8743:3078558,51504789:16384,1179648,0 ) +k1,8606:29014430,51504789:25935872 +g1,8606:29014430,51504789 ) ] -[1,9574:3078558,4812305:0,0,0 -(1,9574:3078558,2439708:0,1703936,0 -g1,9574:29030814,2439708 -g1,9574:36135244,2439708 -(1,8393:36135244,2439708:1720320,1703936,0 -(1,8393:36135244,2439708:16384,1703936,0 -[1,8393:36135244,2439708:25952256,1703936,0 -(1,8393:36135244,1915420:25952256,1179648,0 -(1,8393:36135244,1915420:16384,1179648,0 -r1,9574:36151628,1915420:16384,1179648,0 ) -k1,8393:62087500,1915420:25935872 -g1,8393:62087500,1915420 +) +) +] +[1,8743:3078558,4812305:0,0,0 +(1,8743:3078558,49800853:0,16384,2228224 +g1,8743:29030814,49800853 +g1,8743:36135244,49800853 +(1,8606:36135244,49800853:1720320,16384,2228224 +(1,8606:36135244,52029077:16384,1703936,0 +[1,8606:36135244,52029077:25952256,1703936,0 +(1,8606:36135244,51504789:25952256,1179648,0 +(1,8606:36135244,51504789:16384,1179648,0 +r1,8743:36151628,51504789:16384,1179648,0 +) +k1,8606:62087500,51504789:25935872 +g1,8606:62087500,51504789 +) +] +) +g1,8606:36675916,49800853 +(1,8606:36675916,49800853:1179648,16384,0 +r1,8743:37855564,49800853:1179648,16384,0 +) +) +k1,8743:3078556,49800853:-34777008 +) +] +g1,8743:6630773,4812305 +k1,8743:21643106,4812305:13816956 +g1,8743:23265777,4812305 +g1,8743:24088253,4812305 +g1,8743:28572226,4812305 +g1,8743:29981905,4812305 +) +) +] +[1,8743:6630773,45706769:25952256,40108032,0 +(1,8743:6630773,45706769:25952256,40108032,0 +(1,8743:6630773,45706769:0,0,0 +g1,8743:6630773,45706769 +) +[1,8743:6630773,45706769:25952256,40108032,0 +(1,8716:6630773,6254097:25952256,609711,134348 +k1,8715:7993282,6254097:205799 +k1,8715:8881967,6254097:205800 +k1,8715:9443626,6254097:205799 +k1,8715:10782544,6254097:205800 +k1,8715:14505005,6254097:205799 +k1,8715:15323566,6254097:205799 +k1,8715:15885226,6254097:205800 +k1,8715:17690103,6254097:205799 +k1,8715:19276746,6254097:205799 +k1,8715:20586828,6254097:205800 +k1,8715:21540393,6254097:205799 +k1,8715:23323645,6254097:205800 +k1,8715:25264837,6254097:205799 +k1,8715:26489721,6254097:205799 +k1,8715:28413875,6254097:205800 +(1,8715:30552315,6254097:311689,609711,0 +$1,8715:30552315,6254097 +(1,8715:30552315,5978816:311689,334430,0 +) +$1,8715:30864004,6254097 +) +k1,8715:31069803,6254097:205799 +k1,8715:32583029,6254097:0 +) +(1,8716:6630773,7119177:25952256,505283,134348 +k1,8715:8714584,7119177:227831 +k1,8715:12546895,7119177:227831 +k1,8715:13793811,7119177:227831 +k1,8715:16071608,7119177:227831 +k1,8715:16915477,7119177:227831 +k1,8715:18162393,7119177:227831 +k1,8715:19558732,7119177:227832 +k1,8715:20437991,7119177:227831 +k1,8715:21413588,7119177:227831 +k1,8715:24648211,7119177:227831 +k1,8715:25558927,7119177:227831 +k1,8715:28597597,7119177:227831 +k1,8715:29844513,7119177:227831 +k1,8715:31298523,7119177:227831 +k1,8715:32583029,7119177:0 +) +(1,8716:6630773,7984257:25952256,513147,126483 +k1,8715:8050355,7984257:262872 +k1,8715:10269477,7984257:262872 +k1,8715:11678575,7984257:262873 +k1,8715:12592875,7984257:262872 +k1,8715:13973791,7984257:262872 +k1,8715:15462842,7984257:262872 +k1,8715:18314387,7984257:262873 +k1,8715:19803438,7984257:262872 +k1,8715:21170592,7984257:262872 +k1,8715:22181230,7984257:262872 +k1,8715:23765963,7984257:262872 +k1,8715:24688128,7984257:262873 +k1,8715:25306860,7984257:262872 +k1,8715:26911909,7984257:262872 +k1,8715:27530641,7984257:262872 +k1,8715:29676363,7984257:262873 +k1,8715:31281412,7984257:262872 +k1,8715:32227169,7984257:262872 +k1,8715:32583029,7984257:0 +) +(1,8716:6630773,8849337:25952256,513147,134348 +k1,8715:8773851,8849337:250398 +k1,8715:9683541,8849337:250398 +k1,8715:11606418,8849337:250398 +k1,8715:12542977,8849337:250397 +k1,8715:14182083,8849337:250398 +k1,8715:15118643,8849337:250398 +k1,8715:15827138,8849337:250398 +k1,8715:16609033,8849337:250398 +k1,8715:20830913,8849337:250398 +k1,8715:23002170,8849337:250397 +k1,8715:24449255,8849337:250398 +k1,8715:28703903,8849337:250398 +k1,8715:32051532,8849337:250398 +k1,8715:32583029,8849337:0 +) +(1,8716:6630773,9714417:25952256,505283,134348 +g1,8715:10134983,9714417 +g1,8715:10985640,9714417 +g1,8715:13892161,9714417 +g1,8715:15110475,9714417 +g1,8715:17028058,9714417 +g1,8715:19365727,9714417 +g1,8715:20180994,9714417 +k1,8716:32583029,9714417:9804188 +g1,8716:32583029,9714417 +) +(1,8717:6630773,11831235:25952256,555811,139132 +(1,8717:6630773,11831235:2450326,534184,12975 +g1,8717:6630773,11831235 +g1,8717:9081099,11831235 +) +g1,8717:10960475,11831235 +g1,8717:11910616,11831235 +g1,8717:14022842,11831235 +g1,8717:14648580,11831235 +k1,8717:32583029,11831235:15848897 +g1,8717:32583029,11831235 +) +(1,8721:6630773,13089531:25952256,513147,134348 +k1,8720:7705781,13089531:257119 +k1,8720:9356852,13089531:257120 +k1,8720:10745779,13089531:257120 +k1,8720:12388984,13089531:257119 +k1,8720:13305396,13089531:257120 +k1,8720:15993901,13089531:257119 +k1,8720:19013363,13089531:257119 +k1,8720:22932635,13089531:257120 +k1,8720:24526688,13089531:257119 +k1,8720:25531574,13089531:257120 +k1,8720:28802039,13089531:257120 +k1,8720:29820686,13089531:257119 +k1,8721:32583029,13089531:0 +) +(1,8721:6630773,13954611:25952256,513147,134348 +k1,8720:7328100,13954611:282484 +k1,8720:9495482,13954611:282567 +k1,8720:10405884,13954611:282567 +k1,8720:13195204,13954611:282568 +k1,8720:14496856,13954611:282567 +k1,8720:17763934,13954611:282568 +k1,8720:19733398,13954611:282567 +k1,8720:20698850,13954611:282567 +k1,8720:22167620,13954611:282568 +k1,8720:23109479,13954611:282567 +k1,8720:27227868,13954611:282567 +k1,8720:28642898,13954611:282568 +k1,8720:30211281,13954611:282567 +k1,8720:32583029,13954611:0 +) +(1,8721:6630773,14819691:25952256,513147,126483 +k1,8720:7640355,14819691:200212 +k1,8720:9170949,14819691:200213 +k1,8720:12384506,14819691:200212 +k1,8720:13755191,14819691:200212 +k1,8720:14946964,14819691:200213 +k1,8720:16431682,14819691:200212 +k1,8720:17650979,14819691:200212 +k1,8720:21367854,14819691:200213 +k1,8720:22700528,14819691:200212 +k1,8720:24497197,14819691:200212 +k1,8720:25383572,14819691:200213 +k1,8720:30248637,14819691:200212 +k1,8720:32583029,14819691:0 +) +(1,8721:6630773,15684771:25952256,513147,134348 +g1,8720:8552944,15684771 +g1,8720:9771258,15684771 +g1,8720:11305455,15684771 +g1,8720:14489194,15684771 +g1,8720:15549566,15684771 +g1,8720:16919268,15684771 +g1,8720:18110057,15684771 +g1,8720:21320665,15684771 +g1,8720:24282237,15684771 +k1,8721:32583029,15684771:4409920 +g1,8721:32583029,15684771 +) +(1,8723:7202902,17074139:25380127,513147,134348 +(1,8722:7202902,17074139:14421851,513147,126483 +g1,8722:6630773,17074139 +g1,8722:6630773,17074139 +g1,8722:6303093,17074139 +(1,8722:6303093,17074139:14993980,513147,126483 +g1,8722:6630773,17074139 +g1,8722:7336595,17074139 +g1,8722:8742342,17074139 +g1,8722:9503215,17074139 +g1,8722:11237953,17074139 +g1,8722:14019301,17074139 +g1,8722:15697022,17074139 +g1,8722:18184768,17074139 +) +g1,8722:21624753,17074139 +) +k1,8722:23180687,17074139:284536 +k1,8722:25421472,17074139:284535 +k1,8722:26934808,17074139:284536 +k1,8722:29148724,17074139:284536 +k1,8722:29789119,17074139:284535 +k1,8722:31356850,17074139:284536 +k1,8722:32583029,17074139:0 +) +(1,8723:7202902,17939219:25380127,513147,134348 +k1,8722:8327950,17939219:142008 +k1,8722:9661403,17939219:142008 +k1,8722:11418219,17939219:142009 +k1,8722:12579312,17939219:142008 +k1,8722:14604169,17939219:142008 +k1,8722:16408170,17939219:142008 +k1,8722:17166216,17939219:142008 +k1,8722:18327309,17939219:142008 +k1,8722:20552052,17939219:142009 +k1,8722:21885505,17939219:142008 +k1,8722:23461441,17939219:142008 +k1,8722:24794894,17939219:142008 +k1,8722:25568669,17939219:142008 +k1,8722:27091522,17939219:142009 +k1,8722:27765027,17939219:142008 +k1,8722:29858697,17939219:142008 +k1,8723:32583029,17939219:0 +k1,8723:32583029,17939219:0 +) +(1,8724:7202902,19328587:25380127,513147,126483 +(1,8723:7202902,19328587:15082454,513147,126483 +g1,8723:6630773,19328587 +g1,8723:6630773,19328587 +g1,8723:6303093,19328587 +(1,8723:6303093,19328587:15654583,513147,126483 +g1,8723:6630773,19328587 +g1,8723:7336595,19328587 +g1,8723:8742342,19328587 +g1,8723:9503215,19328587 +g1,8723:13473386,19328587 +g1,8723:16254734,19328587 +g1,8723:17932455,19328587 +g1,8723:19188780,19328587 +) +g1,8723:22285356,19328587 +) +k1,8723:23940533,19328587:383779 +k1,8723:26280562,19328587:383779 +k1,8723:28279148,19328587:383779 +k1,8723:29682012,19328587:383779 +k1,8723:31896867,19328587:383779 +k1,8723:32583029,19328587:0 +) +(1,8724:7202902,20193667:25380127,505283,134348 +k1,8723:9519067,20193667:287170 +k1,8723:10878407,20193667:287171 +k1,8723:13347271,20193667:287170 +k1,8723:14266209,20193667:287171 +k1,8723:15908664,20193667:287170 +k1,8723:16957363,20193667:287171 +k1,8723:18773488,20193667:287170 +k1,8723:19746821,20193667:287171 +k1,8723:21190701,20193667:287170 +k1,8723:22009368,20193667:287170 +k1,8723:24554254,20193667:287171 +k1,8723:25473191,20193667:287170 +k1,8723:27141206,20193667:287171 +k1,8723:27959873,20193667:287170 +k1,8723:30534251,20193667:287171 +k1,8723:32370037,20193667:287170 +k1,8723:32583029,20193667:0 +) +(1,8724:7202902,21058747:25380127,505283,7863 +k1,8724:32583028,21058747:24391188 +g1,8724:32583028,21058747 +) +(1,8725:7202902,22448115:25380127,513147,134348 +(1,8724:7202902,22448115:10138418,513147,134348 +g1,8724:6630773,22448115 +g1,8724:6630773,22448115 +g1,8724:6303093,22448115 +(1,8724:6303093,22448115:10710547,513147,134348 +g1,8724:6630773,22448115 +g1,8724:7336595,22448115 +g1,8724:8742342,22448115 +g1,8724:9503215,22448115 +g1,8724:11985718,22448115 +g1,8724:14657621,22448115 +) +g1,8724:17341320,22448115 +) +k1,8724:19145672,22448115:192822 +k1,8724:19804455,22448115:192822 +k1,8724:21153986,22448115:192821 +k1,8724:21878305,22448115:192822 +k1,8724:23806520,22448115:192822 +k1,8724:26597189,22448115:192822 +k1,8724:27946720,22448115:192821 +k1,8724:29243824,22448115:192822 +k1,8724:30822732,22448115:192822 +k1,8725:32583029,22448115:0 +) +(1,8725:7202902,23313195:25380127,505283,134348 +k1,8724:9401080,23313195:228821 +k1,8724:10242664,23313195:228822 +k1,8724:11490570,23313195:228821 +k1,8724:14139636,23313195:228821 +k1,8724:16943368,23313195:228822 +k1,8724:17990078,23313195:228821 +k1,8724:19389372,23313195:228821 +k1,8724:21798576,23313195:228821 +k1,8724:23750340,23313195:228822 +k1,8724:24740689,23313195:228821 +k1,8724:26473561,23313195:228821 +k1,8724:30065691,23313195:228822 +k1,8724:31464985,23313195:228821 +k1,8724:32583029,23313195:0 +) +(1,8725:7202902,24178275:25380127,505283,126483 +k1,8724:8059224,24178275:243560 +k1,8724:9321869,24178275:243560 +k1,8724:11985673,24178275:243559 +k1,8724:12760730,24178275:243560 +k1,8724:14815705,24178275:243560 +k1,8724:15710693,24178275:243560 +k1,8724:16973338,24178275:243560 +k1,8724:20328546,24178275:243559 +k1,8724:21199941,24178275:243560 +k1,8724:24041348,24178275:243560 +k1,8724:25303993,24178275:243560 +k1,8724:27885221,24178275:243559 +k1,8724:28660278,24178275:243560 +k1,8724:31966991,24178275:243560 +k1,8724:32583029,24178275:0 +) +(1,8725:7202902,25043355:25380127,505283,126483 +k1,8724:8216135,25043355:224835 +k1,8724:9771352,25043355:224836 +k1,8724:11708643,25043355:224835 +k1,8724:13124923,25043355:224835 +k1,8724:13965796,25043355:224835 +k1,8724:15393873,25043355:224836 +k1,8724:17157493,25043355:224835 +k1,8724:18539038,25043355:224835 +k1,8724:19868156,25043355:224836 +k1,8724:21913581,25043355:224835 +k1,8724:23270223,25043355:224835 +k1,8724:26249536,25043355:224835 +k1,8724:30405221,25043355:224836 +k1,8724:31821501,25043355:224835 +k1,8724:32583029,25043355:0 +) +(1,8725:7202902,25908435:25380127,505283,134348 +k1,8724:9838979,25908435:179788 +k1,8724:10828137,25908435:179788 +k1,8724:11363786,25908435:179789 +k1,8724:13416593,25908435:179788 +k1,8724:15114195,25908435:179788 +k1,8724:16803933,25908435:179788 +k1,8724:18175167,25908435:179789 +k1,8724:20066100,25908435:179788 +k1,8724:21884943,25908435:179788 +k1,8724:22716159,25908435:179788 +k1,8724:24751927,25908435:179788 +k1,8724:25950801,25908435:179789 +k1,8724:26545413,25908435:179769 +k1,8724:29145446,25908435:179788 +k1,8724:31900144,25908435:179788 +k1,8724:32583029,25908435:0 +) +(1,8725:7202902,26773515:25380127,505283,126483 +k1,8724:8396763,26773515:174776 +k1,8724:10621506,26773515:174777 +k1,8724:13410513,26773515:174776 +k1,8724:14201327,26773515:174776 +k1,8724:15395189,26773515:174777 +k1,8724:17479029,26773515:174776 +k1,8724:19366261,26773515:174776 +k1,8724:20168872,26773515:174776 +k1,8724:21546890,26773515:174777 +k1,8724:22959641,26773515:174776 +k1,8724:24291127,26773515:174776 +k1,8724:25570186,26773515:174777 +k1,8724:27387294,26773515:174776 +k1,8724:27917930,26773515:174776 +k1,8724:29923783,26773515:174777 +k1,8724:30860087,26773515:174776 +k1,8725:32583029,26773515:0 +) +(1,8725:7202902,27638595:25380127,513147,134348 +k1,8724:8386089,27638595:192938 +k1,8724:9770472,27638595:192938 +k1,8724:12317463,27638595:192938 +k1,8724:14078022,27638595:192938 +k1,8724:15290045,27638595:192938 +k1,8724:17730213,27638595:192938 +k1,8724:18574579,27638595:192938 +k1,8724:20226347,27638595:192937 +k1,8724:22250361,27638595:192938 +k1,8724:23600009,27638595:192938 +k1,8724:24812032,27638595:192938 +k1,8724:26193793,27638595:192938 +k1,8724:27671237,27638595:192938 +k1,8724:29339390,27638595:192938 +k1,8724:31896867,27638595:192938 +k1,8724:32583029,27638595:0 +) +(1,8725:7202902,28503675:25380127,505283,126483 +g1,8724:8572604,28503675 +k1,8725:32583028,28503675:21520056 +g1,8725:32583028,28503675 +) +v1,8728:6630773,29893043:0,393216,0 +(1,8736:6630773,37805739:25952256,8305912,0 +g1,8736:6630773,37805739 +g1,8736:6237557,37805739 +r1,8743:6368629,37805739:131072,8305912,0 +g1,8736:6567858,37805739 +g1,8736:6764466,37805739 +[1,8736:6764466,37805739:25818563,8305912,0 +(1,8730:6764466,30165520:25818563,665693,196608 +(1,8728:6764466,30165520:0,665693,196608 +r1,8743:8010564,30165520:1246098,862301,196608 +k1,8728:6764466,30165520:-1246098 +) +(1,8728:6764466,30165520:1246098,665693,196608 +) +k1,8728:8175578,30165520:165014 +k1,8728:9493507,30165520:327680 +k1,8728:10418738,30165520:165013 +k1,8728:11914133,30165520:165014 +k1,8728:13249620,30165520:165014 +k1,8728:15595016,30165520:165013 +k1,8728:16507796,30165520:165014 +k1,8728:19165144,30165520:165014 +k1,8728:21690764,30165520:165013 +k1,8728:23249729,30165520:165014 +k1,8728:23829552,30165520:164980 +k1,8728:24645994,30165520:165014 +k1,8728:25558773,30165520:165013 +k1,8728:27032541,30165520:165014 +k1,8728:27848983,30165520:165014 +k1,8728:29628803,30165520:165013 +k1,8728:31252648,30165520:165014 +k1,8728:32583029,30165520:0 +) +(1,8730:6764466,31030600:25818563,473825,126483 +k1,8730:32583028,31030600:23813816 +g1,8730:32583028,31030600 +) +(1,8731:8907493,32419968:22889104,513147,126483 +(1,8730:8907493,32419968:0,477757,0 +g1,8730:8907493,32419968 +g1,8730:7596773,32419968 +g1,8730:7596773,32419968 +(1,8730:7596773,32419968:1310720,477757,0 +(1,8730:7596773,32419968:1048576,477757,0 +g1,8730:7858917,32419968 +(1,8730:7858917,32419968:572129,477757,0 +g1,8730:7858917,32419968 +) +) +) +g1,8730:8907493,32419968 +) +k1,8730:11225272,32419968:266502 +k1,8730:11847635,32419968:266503 +k1,8730:13397332,32419968:266502 +k1,8730:14078610,32419968:266435 +k1,8730:16176188,32419968:266502 +k1,8730:17265822,32419968:266502 +k1,8730:20130172,32419968:266503 +k1,8730:21964295,32419968:266502 +k1,8730:23249882,32419968:266502 +k1,8730:24629186,32419968:266503 +k1,8730:26866356,32419968:266502 +k1,8730:28301365,32419968:266502 +k1,8730:30085682,32419968:266503 +k1,8730:31035069,32419968:266502 +k1,8730:31796597,32419968:0 +) +(1,8731:8907493,33285048:22889104,513147,134348 +g1,8730:11135717,33285048 +g1,8730:12840963,33285048 +g1,8730:13608389,33285048 +g1,8730:15300528,33285048 +g1,8730:16067954,33285048 +k1,8731:31796597,33285048:14555549 +g1,8731:31796597,33285048 +) +(1,8732:8907493,34412272:22889104,530548,132808 +(1,8731:8907493,34412272:0,485622,0 +g1,8731:8907493,34412272 +g1,8731:7596773,34412272 +g1,8731:7596773,34412272 +(1,8731:7596773,34412272:1310720,485622,0 +(1,8731:7596773,34412272:1048576,485622,0 +g1,8731:7858917,34412272 +(1,8731:7858917,34412272:572129,485622,0 +g1,8731:7858917,34412272 +) +) +) +g1,8731:8907493,34412272 +) +g1,8731:10522300,34412272 +g1,8731:11740614,34412272 +g1,8731:12922883,34412272 +g1,8731:13808274,34412272 +k1,8732:31796597,34412272:10345690 +g1,8732:31796597,34412272 +) +(1,8733:8907493,35539496:22889104,505283,126483 +(1,8732:8907493,35539496:0,485622,11795 +g1,8732:8907493,35539496 +g1,8732:7596773,35539496 +g1,8732:7596773,35539496 +(1,8732:7596773,35539496:1310720,485622,11795 +(1,8732:7596773,35539496:1048576,485622,11795 +g1,8732:7858917,35539496 +(1,8732:7858917,35539496:572129,485622,11795 +g1,8732:7858917,35539496 +) +) +) +g1,8732:8907493,35539496 +) +k1,8732:10216032,35539496:159693 +k1,8732:11394809,35539496:159692 +k1,8732:13463566,35539496:159693 +k1,8732:15162043,35539496:159692 +k1,8732:15937774,35539496:159693 +k1,8732:18521644,35539496:159693 +k1,8732:19332764,35539496:159692 +k1,8732:20878543,35539496:159693 +k1,8732:22730375,35539496:159692 +k1,8732:23304872,35539496:159654 +k1,8732:26954356,35539496:159692 +k1,8732:28305494,35539496:159693 +k1,8733:31796597,35539496:0 +k1,8733:31796597,35539496:0 +) +(1,8734:8907493,36666720:22889104,505283,7863 +(1,8733:8907493,36666720:0,481690,0 +g1,8733:8907493,36666720 +g1,8733:7596773,36666720 +g1,8733:7596773,36666720 +(1,8733:7596773,36666720:1310720,481690,0 +(1,8733:7596773,36666720:1048576,481690,0 +g1,8733:7858917,36666720 +(1,8733:7858917,36666720:572129,481690,0 +g1,8733:7858917,36666720 +) +) +) +g1,8733:8907493,36666720 +) +g1,8733:10384019,36666720 +g1,8733:13776162,36666720 +k1,8734:31796597,36666720:14356972 +g1,8734:31796597,36666720 +) +(1,8735:8907493,37793944:22889104,513147,11795 +(1,8734:8907493,37793944:0,473825,11795 +g1,8734:8907493,37793944 +g1,8734:7596773,37793944 +g1,8734:7596773,37793944 +(1,8734:7596773,37793944:1310720,473825,11795 +(1,8734:7596773,37793944:1048576,473825,11795 +g1,8734:7858917,37793944 +(1,8734:7858917,37793944:572129,473825,11795 +g1,8734:7858917,37793944 +) +) +) +g1,8734:8907493,37793944 +) +g1,8734:11213049,37793944 +g1,8734:12431363,37793944 +g1,8734:14513441,37793944 +k1,8735:31796597,37793944:16126446 +g1,8735:31796597,37793944 +) +] +g1,8736:32583029,37805739 +) +h1,8736:6630773,37805739:0,0,0 +(1,8738:6630773,39922557:25952256,555811,139132 +(1,8738:6630773,39922557:2450326,534184,12975 +g1,8738:6630773,39922557 +g1,8738:9081099,39922557 +) +g1,8738:10697348,39922557 +g1,8738:12674045,39922557 +g1,8738:13624186,39922557 +g1,8738:14715623,39922557 +g1,8738:20593810,39922557 +g1,8738:21543951,39922557 +k1,8738:32583029,39922557:8609658 +g1,8738:32583029,39922557 +) +(1,8742:6630773,41180853:25952256,505283,126483 +k1,8741:8606028,41180853:192020 +k1,8741:9968522,41180853:192021 +k1,8741:11775349,41180853:192020 +k1,8741:12323230,41180853:192021 +k1,8741:14519996,41180853:192020 +k1,8741:15170113,41180853:192020 +k1,8741:15893631,41180853:192021 +k1,8741:17941631,41180853:192020 +k1,8741:20663342,41180853:192021 +k1,8741:22025835,41180853:192020 +k1,8741:23766471,41180853:192020 +k1,8741:24609920,41180853:192021 +k1,8741:28004684,41180853:192020 +k1,8741:29745321,41180853:192021 +k1,8741:31107814,41180853:192020 +k1,8741:32583029,41180853:0 +) +(1,8742:6630773,42045933:25952256,513147,126483 +k1,8741:8438215,42045933:229990 +k1,8741:9351091,42045933:229991 +k1,8741:10751554,42045933:229990 +k1,8741:12530160,42045933:229990 +k1,8741:14701327,42045933:229991 +k1,8741:15950402,42045933:229990 +k1,8741:18011468,42045933:229990 +k1,8741:18854221,42045933:229991 +k1,8741:19440071,42045933:229990 +k1,8741:21123650,42045933:229990 +k1,8741:22952718,42045933:229990 +k1,8741:23810544,42045933:229991 +k1,8741:25896514,42045933:229990 +k1,8741:27667255,42045933:229990 +k1,8741:28916331,42045933:229991 +k1,8741:30977397,42045933:229990 +k1,8741:32583029,42045933:0 +) +(1,8742:6630773,42911013:25952256,513147,134348 +k1,8741:9736643,42911013:274715 +k1,8741:11210012,42911013:274715 +k1,8741:15097726,42911013:274714 +k1,8741:16320092,42911013:274715 +k1,8741:17613892,42911013:274715 +k1,8741:21138537,42911013:274715 +k1,8741:23182069,42911013:274715 +k1,8741:25899966,42911013:274715 +k1,8741:27528654,42911013:274714 +k1,8741:30312743,42911013:274715 +k1,8741:31238886,42911013:274715 +k1,8741:32583029,42911013:0 +) +(1,8715:6630773,44338671:25952256,506878,101187 +(1,8715:6630773,44338671:943720,506878,0 +k1,8715:7302650,44338671:671877 +(1,8715:7302650,44338671:271843,506878,0 +$1,8715:7302650,44338671 +(1,8715:7302650,44118447:271843,286654,0 +) +$1,8715:7574493,44338671 +) +) +(1,8715:7574493,44338671:0,435814,0 +r1,8743:7574493,44338671:0,435814,0 +) +k1,8715:8101304,44338671:144605 +k1,8715:9182287,44338671:144605 +k1,8715:10200880,44338671:144605 +k1,8715:10630173,44338671:144605 +k1,8715:12984651,44338671:144604 +k1,8715:13999036,44338671:144591 +k1,8715:14689948,44338671:144604 +k1,8715:16361804,44338671:144605 +k1,8715:17621570,44338671:144605 +k1,8715:18382738,44338671:144605 +k1,8715:18859202,44338671:144590 +k1,8715:20568807,44338671:144605 +k1,8715:21528680,44338671:144605 +k1,8715:23367260,44338671:144605 +k1,8715:24417835,44338671:144605 +k1,8715:25791371,44338671:144605 +k1,8715:26793710,44338671:144604 +k1,8715:27223003,44338671:144605 +k1,8715:28262043,44338671:144605 +k1,8715:30934241,44338671:144605 +k1,8715:31984816,44338671:144605 +k1,8715:32583029,44338671:0 +) +(1,8715:6630773,45023526:25952256,404226,205458 +g1,8715:8619922,45023526 +r1,8743:10986034,45023526:0,205458,205458 +k1,8715:32583030,45023526:21596996 +g1,8715:32583030,45023526 +) +] +(1,8743:32583029,45706769:0,0,0 +g1,8743:32583029,45706769 +) +) +] +(1,8743:6630773,47279633:25952256,0,0 +h1,8743:6630773,47279633:25952256,0,0 +) +] +(1,8743:4262630,4025873:0,0,0 +[1,8743:-473656,4025873:0,0,0 +(1,8743:-473656,-710413:0,0,0 +(1,8743:-473656,-710413:0,0,0 +g1,8743:-473656,-710413 +) +g1,8743:-473656,-710413 +) +] +) +] +!23028 +}137 +Input:1194:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1195:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1196:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1197:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1198:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1199:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1200:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!670 +{138 +[1,8777:4262630,47279633:28320399,43253760,0 +(1,8777:4262630,4025873:0,0,0 +[1,8777:-473656,4025873:0,0,0 +(1,8777:-473656,-710413:0,0,0 +(1,8777:-473656,-644877:0,0,0 +k1,8777:-473656,-644877:-65536 +) +(1,8777:-473656,4736287:0,0,0 +k1,8777:-473656,4736287:5209943 +) +g1,8777:-473656,-710413 ) ] ) -g1,8393:36675916,2439708 -(1,8393:36675916,2439708:1179648,16384,0 -r1,9574:37855564,2439708:1179648,16384,0 +[1,8777:6630773,47279633:25952256,43253760,0 +[1,8777:6630773,4812305:25952256,786432,0 +(1,8777:6630773,4812305:25952256,485622,134348 +(1,8777:6630773,4812305:25952256,485622,134348 +g1,8777:3078558,4812305 +[1,8777:3078558,4812305:0,0,0 +(1,8777:3078558,2439708:0,1703936,0 +k1,8777:1358238,2439708:-1720320 +(1,8606:1358238,2439708:1720320,1703936,0 +(1,8606:1358238,2439708:1179648,16384,0 +r1,8777:2537886,2439708:1179648,16384,0 ) +g1,8606:3062174,2439708 +(1,8606:3062174,2439708:16384,1703936,0 +[1,8606:3062174,2439708:25952256,1703936,0 +(1,8606:3062174,1915420:25952256,1179648,0 +(1,8606:3062174,1915420:16384,1179648,0 +r1,8777:3078558,1915420:16384,1179648,0 ) -k1,9574:3078556,2439708:-34777008 +k1,8606:29014430,1915420:25935872 +g1,8606:29014430,1915420 ) ] -[1,9574:3078558,4812305:0,0,0 -(1,9574:3078558,49800853:0,16384,2228224 -k1,9574:1358238,49800853:-1720320 -(1,8393:1358238,49800853:1720320,16384,2228224 -(1,8393:1358238,49800853:1179648,16384,0 -r1,9574:2537886,49800853:1179648,16384,0 ) -g1,8393:3062174,49800853 -(1,8393:3062174,52029077:16384,1703936,0 -[1,8393:3062174,52029077:25952256,1703936,0 -(1,8393:3062174,51504789:25952256,1179648,0 -(1,8393:3062174,51504789:16384,1179648,0 -r1,9574:3078558,51504789:16384,1179648,0 -) -k1,8393:29014430,51504789:25935872 -g1,8393:29014430,51504789 -) -] -) -) -) -] -[1,9574:3078558,4812305:0,0,0 -(1,9574:3078558,49800853:0,16384,2228224 -g1,9574:29030814,49800853 -g1,9574:36135244,49800853 -(1,8393:36135244,49800853:1720320,16384,2228224 -(1,8393:36135244,52029077:16384,1703936,0 -[1,8393:36135244,52029077:25952256,1703936,0 -(1,8393:36135244,51504789:25952256,1179648,0 -(1,8393:36135244,51504789:16384,1179648,0 -r1,9574:36151628,51504789:16384,1179648,0 -) -k1,8393:62087500,51504789:25935872 -g1,8393:62087500,51504789 -) -] -) -g1,8393:36675916,49800853 -(1,8393:36675916,49800853:1179648,16384,0 -r1,9574:37855564,49800853:1179648,16384,0 -) -) -k1,9574:3078556,49800853:-34777008 -) -] -g1,9574:6630773,4812305 -k1,9574:21643106,4812305:13816956 -g1,9574:23265777,4812305 -g1,9574:24088253,4812305 -g1,9574:28572226,4812305 -g1,9574:29981905,4812305 -) -) -] -[1,9574:6630773,45706769:25952256,40108032,0 -(1,9574:6630773,45706769:25952256,40108032,0 -(1,9574:6630773,45706769:0,0,0 -g1,9574:6630773,45706769 -) -[1,9574:6630773,45706769:25952256,40108032,0 -(1,9505:6630773,6254097:25952256,513147,134348 -k1,9504:7903583,6254097:281250 -k1,9504:11142473,6254097:281250 -k1,9504:15441736,6254097:281251 -k1,9504:16879696,6254097:281250 -k1,9504:17773708,6254097:281250 -k1,9504:18410818,6254097:281250 -k1,9504:20117477,6254097:281251 -k1,9504:22957253,6254097:281250 -k1,9504:23594363,6254097:281250 -k1,9504:26386953,6254097:281250 -k1,9504:27952710,6254097:281251 -k1,9504:31259757,6254097:281250 -k1,9504:32227169,6254097:281250 -k1,9504:32583029,6254097:0 -) -(1,9505:6630773,7095585:25952256,513147,126483 -k1,9504:10788507,7095585:250478 -k1,9504:12235673,7095585:250479 -k1,9504:14926056,7095585:250478 -k1,9504:16367980,7095585:250479 -k1,9504:17566109,7095585:250478 -k1,9504:18835673,7095585:250479 -k1,9504:20269076,7095585:250478 -k1,9504:21178847,7095585:250479 -k1,9504:22448410,7095585:250478 -k1,9504:24676766,7095585:250479 -k1,9504:25610129,7095585:250478 -k1,9504:26854134,7095585:250479 -k1,9504:28787577,7095585:250478 -k1,9504:30700704,7095585:250479 -k1,9504:31563944,7095585:250478 -k1,9504:32583029,7095585:0 -) -(1,9505:6630773,7937073:25952256,513147,126483 -k1,9504:7968413,7937073:265471 -k1,9504:8893176,7937073:265471 -k1,9504:10177733,7937073:265472 -k1,9504:13467035,7937073:265471 -k1,9504:15775263,7937073:265471 -k1,9504:17059819,7937073:265471 -k1,9504:18740213,7937073:265472 -k1,9504:22192044,7937073:265471 -k1,9504:22989012,7937073:265471 -k1,9504:26489340,7937073:265471 -k1,9504:27951499,7937073:265472 -k1,9504:29567012,7937073:265471 -k1,9504:31482024,7937073:265471 -k1,9504:32583029,7937073:0 -) -(1,9505:6630773,8778561:25952256,513147,126483 -k1,9504:7884395,8778561:234537 -k1,9504:9988019,8778561:234537 -k1,9504:10881848,8778561:234537 -k1,9504:11472245,8778561:234537 -k1,9504:13048959,8778561:234537 -k1,9504:13969658,8778561:234537 -k1,9504:15223280,8778561:234537 -k1,9504:18533422,8778561:234537 -k1,9504:19872240,8778561:234536 -k1,9504:20854543,8778561:234537 -k1,9504:23705277,8778561:234537 -k1,9504:24591242,8778561:234537 -k1,9504:25596482,8778561:234537 -k1,9504:27864601,8778561:234537 -k1,9504:30713369,8778561:234537 -k1,9504:31563944,8778561:234537 -k1,9504:32583029,8778561:0 -) -(1,9505:6630773,9620049:25952256,513147,134348 -k1,9504:9716754,9620049:146036 -k1,9504:10522082,9620049:146036 -k1,9504:14358450,9620049:146036 -k1,9504:17176389,9620049:146036 -k1,9504:18341510,9620049:146036 -k1,9504:20141019,9620049:146036 -k1,9504:22565742,9620049:146036 -k1,9504:23371070,9620049:146036 -k1,9504:25013293,9620049:146036 -k1,9504:25810757,9620049:146036 -k1,9504:26704559,9620049:146036 -k1,9504:29911782,9620049:146036 -k1,9504:32583029,9620049:0 -) -(1,9505:6630773,10461537:25952256,505283,134348 -g1,9504:8759382,10461537 -g1,9504:10410233,10461537 -g1,9504:12034870,10461537 -g1,9504:13628050,10461537 -g1,9504:14183139,10461537 -g1,9504:15665563,10461537 -g1,9504:17545135,10461537 -g1,9504:20519158,10461537 -g1,9504:21369815,10461537 -g1,9504:22588129,10461537 -g1,9504:26520944,10461537 -k1,9505:32583029,10461537:3377075 -g1,9505:32583029,10461537 -) -(1,9523:6630773,23836340:25952256,12519559,0 -k1,9523:11984091,23836340:5353318 -(1,9506:11984091,23836340:0,0,0 -g1,9506:11984091,23836340 -g1,9506:11984091,23836340 -g1,9506:11656411,23836340 -(1,9506:11656411,23836340:0,0,0 -) -g1,9506:11984091,23836340 -) -(1,9521:11984091,23836340:15245620,12519559,0 -g1,9521:15002947,23836340 -(1,9521:15002947,12262227:0,0,0 -(1,9521:15002947,12262227:0,0,0 -g1,9508:15002947,12262227 -(1,9509:15002947,12262227:0,0,0 -(1,9509:15002947,12262227:0,0,0 -g1,9509:15002947,12262227 -g1,9509:15002947,12262227 -g1,9509:15002947,12262227 -g1,9509:15002947,12262227 -g1,9509:15002947,12262227 -(1,9509:15002947,12262227:0,0,0 -(1,9509:15002947,12262227:589824,56623,0 -(1,9509:15002947,12262227:589824,56623,0 -) -g1,9509:15592771,12262227 -) -) -g1,9509:15002947,12262227 -g1,9509:15002947,12262227 -) -) -g1,9509:15002947,12262227 -(1,9510:15002947,12262227:0,0,0 -(1,9510:15002947,12262227:0,0,0 -g1,9510:15002947,12262227 -g1,9510:15002947,12262227 -g1,9510:15002947,12262227 -g1,9510:15002947,12262227 -g1,9510:15002947,12262227 -(1,9510:15002947,12262227:0,0,0 -(1,9510:15002947,12262227:358613,319685,0 -(1,9510:15002947,12262227:358613,319685,0 -$1,9510:15002947,12262227 -$1,9510:15361560,12262227 -) -g1,9510:15361560,12262227 -) -) -g1,9510:15002947,12262227 -g1,9510:15002947,12262227 -) -) -g1,9510:15002947,12262227 -(1,9511:15002947,12262227:0,0,0 -(1,9511:15002947,12262227:0,0,0 -g1,9511:15002947,12262227 -g1,9511:15002947,12262227 -(1,9511:15002947,12262227:0,0,0 -(1,9511:15002947,12262227:3805042,414307,104590 -(1,9511:15002947,12262227:3805042,414307,104590 -(1,9511:15002947,12262227:0,414307,104590 -r1,9574:18807989,12262227:3805042,518897,104590 -k1,9511:15002947,12262227:-3805042 -) -(1,9511:15002947,12262227:3805042,414307,104590 -g1,9511:16272387,12262227 -h1,9511:18804712,12262227:0,370085,101313 -) -) -g1,9511:18807989,12262227 -) -) -g1,9511:15002947,12262227 -g1,9511:15002947,12262227 -) -) -(1,9512:15002947,12262227:0,0,0 -(1,9512:15002947,12262227:0,0,0 -g1,9512:15002947,12262227 -g1,9512:15002947,12262227 -g1,9512:15002947,12262227 -g1,9512:15002947,12262227 -g1,9512:15002947,12262227 -(1,9512:15002947,12262227:0,0,0 -(1,9512:15002947,12262227:4121582,373362,104590 -(1,9512:15002947,12262227:4121582,373362,104590 -(1,9512:15002947,12262227:0,373362,104590 -r1,9574:19124529,12262227:4121582,477952,104590 -k1,9512:15002947,12262227:-4121582 -) -(1,9512:15002947,12262227:4121582,373362,104590 -g1,9512:18488171,12262227 -h1,9512:19121252,12262227:0,370085,101313 -) -) -g1,9512:19124529,12262227 -) -) -g1,9512:15002947,12262227 -g1,9512:15002947,12262227 -) -) -(1,9513:15002947,12262227:0,0,0 -(1,9513:15002947,12262227:0,0,0 -g1,9513:15002947,12262227 -g1,9513:15002947,12262227 -g1,9513:15002947,12262227 -g1,9513:15002947,12262227 -g1,9513:15002947,12262227 -(1,9513:15002947,12262227:0,0,0 -(1,9513:15002947,12262227:4121582,373362,104590 -(1,9513:15002947,12262227:4121582,373362,104590 -(1,9513:15002947,12262227:0,373362,104590 -r1,9574:19124529,12262227:4121582,477952,104590 -k1,9513:15002947,12262227:-4121582 -) -(1,9513:15002947,12262227:4121582,373362,104590 -g1,9513:18488171,12262227 -h1,9513:19121252,12262227:0,370085,101313 ) ) -g1,9513:19124529,12262227 +] +[1,8777:3078558,4812305:0,0,0 +(1,8777:3078558,2439708:0,1703936,0 +g1,8777:29030814,2439708 +g1,8777:36135244,2439708 +(1,8606:36135244,2439708:1720320,1703936,0 +(1,8606:36135244,2439708:16384,1703936,0 +[1,8606:36135244,2439708:25952256,1703936,0 +(1,8606:36135244,1915420:25952256,1179648,0 +(1,8606:36135244,1915420:16384,1179648,0 +r1,8777:36151628,1915420:16384,1179648,0 ) +k1,8606:62087500,1915420:25935872 +g1,8606:62087500,1915420 ) -g1,9513:15002947,12262227 -g1,9513:15002947,12262227 -) -) -g1,9513:15002947,12262227 -g1,9514:15002947,12262227 -(1,9514:15002947,12262227:0,0,0 -(1,9514:15002947,12262227:0,0,0 -g1,9514:15002947,12262227 -g1,9514:15002947,12262227 -g1,9514:15002947,12262227 -g1,9514:15002947,12262227 -g1,9514:15002947,12262227 -(1,9514:15002947,12262227:0,0,0 -(1,9514:15002947,12262227:589824,56623,0 -(1,9514:15002947,12262227:589824,56623,0 -) -g1,9514:15592771,12262227 -) -) -g1,9514:15002947,12262227 -g1,9514:15002947,12262227 -) -) -g1,9514:15002947,12262227 -g1,9515:15002947,12262227 -g1,9515:15002947,12262227 -g1,9515:15002947,12262227 -g1,9515:15002947,12262227 -g1,9516:15002947,12262227 -g1,9516:15002947,12262227 -g1,9516:15002947,12262227 -(1,9516:15002947,12262227:0,0,0 -(1,9516:15002947,12262227:0,0,0 -g1,9516:15002947,12262227 -g1,9516:15002947,12262227 -g1,9516:15002947,12262227 -g1,9516:15002947,12262227 -g1,9516:15002947,12262227 -(1,9516:15002947,12262227:0,0,0 -(1,9516:15002947,12262227:2418868,426443,7077 -(1,9516:15002947,12262227:2418868,426443,7077 -) -g1,9516:17421815,12262227 -) -) -g1,9516:15002947,12262227 -g1,9516:15002947,12262227 -) -) -g1,9516:15002947,12262227 -g1,9517:15002947,12262227 -g1,9517:15002947,12262227 -g1,9517:15002947,12262227 -(1,9517:15002947,12262227:0,0,0 -(1,9517:15002947,12262227:0,0,0 -g1,9517:15002947,12262227 -g1,9517:15002947,12262227 -g1,9517:15002947,12262227 -g1,9517:15002947,12262227 -g1,9517:15002947,12262227 -(1,9517:15002947,12262227:0,0,0 -(1,9517:15002947,12262227:1643250,454754,7077 -(1,9517:15002947,12262227:1643250,454754,7077 -) -g1,9517:16646197,12262227 -) -) -g1,9517:15002947,12262227 -g1,9517:15002947,12262227 -) -) -g1,9517:15002947,12262227 -g1,9518:15002947,12262227 -g1,9518:15002947,12262227 -g1,9518:15002947,12262227 -g1,9518:15002947,12262227 -g1,9518:15002947,12262227 -g1,9519:15002947,12262227 -g1,9519:15002947,12262227 -g1,9519:15002947,12262227 -g1,9519:15002947,12262227 -g1,9520:15002947,12262227 -g1,9520:15002947,12262227 -g1,9520:15002947,12262227 -g1,9520:15002947,12262227 -g1,9520:15002947,12262227 -g1,9520:15002947,12262227 -g1,9521:15002947,12262227 -g1,9521:15002947,12262227 -) -g1,9521:15002947,12262227 -) -) -g1,9523:27229711,23836340 -k1,9523:32583029,23836340:5353318 -) -(1,9526:6630773,25333188:25952256,505283,134348 -h1,9525:6630773,25333188:983040,0,0 -k1,9525:8442478,25333188:200830 -k1,9525:9662393,25333188:200830 -k1,9525:12479420,25333188:200830 -k1,9525:14535573,25333188:200829 -k1,9525:15755488,25333188:200830 -k1,9525:19028646,25333188:200830 -k1,9525:19880904,25333188:200830 -(1,9525:19880904,25333188:0,459977,115847 -r1,9574:21646017,25333188:1765113,575824,115847 -k1,9525:19880904,25333188:-1765113 -) -(1,9525:19880904,25333188:1765113,459977,115847 -k1,9525:19880904,25333188:3277 -h1,9525:21642740,25333188:0,411205,112570 -) -k1,9525:21846847,25333188:200830 -k1,9525:22579174,25333188:200830 -k1,9525:24855529,25333188:200830 -k1,9525:25742521,25333188:200830 -(1,9525:25742521,25333188:0,452978,115847 -r1,9574:27859346,25333188:2116825,568825,115847 -k1,9525:25742521,25333188:-2116825 -) -(1,9525:25742521,25333188:2116825,452978,115847 -k1,9525:25742521,25333188:3277 -h1,9525:27856069,25333188:0,411205,112570 -) -k1,9525:28060175,25333188:200829 -k1,9525:29333174,25333188:200830 -k1,9525:29992101,25333188:200830 -k1,9525:31297213,25333188:200830 -k1,9525:32583029,25333188:0 -) -(1,9526:6630773,26174676:25952256,513147,134348 -k1,9525:7625273,26174676:246734 -k1,9525:8227868,26174676:246735 -(1,9525:8227868,26174676:0,414482,115847 -r1,9574:10344693,26174676:2116825,530329,115847 -k1,9525:8227868,26174676:-2116825 -) -(1,9525:8227868,26174676:2116825,414482,115847 -k1,9525:8227868,26174676:3277 -h1,9525:10341416,26174676:0,411205,112570 -) -k1,9525:10591427,26174676:246734 -k1,9525:11497454,26174676:246735 -k1,9525:12875995,26174676:246734 -k1,9525:15078979,26174676:246734 -k1,9525:17730230,26174676:246735 -k1,9525:18636256,26174676:246734 -k1,9525:20484691,26174676:246735 -k1,9525:22964237,26174676:246734 -k1,9525:25593860,26174676:246734 -k1,9525:27408216,26174676:246735 -(1,9525:27408216,26174676:0,452978,115847 -r1,9574:28821617,26174676:1413401,568825,115847 -k1,9525:27408216,26174676:-1413401 -) -(1,9525:27408216,26174676:1413401,452978,115847 -k1,9525:27408216,26174676:3277 -h1,9525:28818340,26174676:0,411205,112570 -) -k1,9525:29068351,26174676:246734 -k1,9525:29997971,26174676:246735 -k1,9525:31812326,26174676:246734 -k1,9525:32583029,26174676:0 -) -(1,9526:6630773,27016164:25952256,513147,126483 -k1,9525:8943942,27016164:151136 -k1,9525:11072955,27016164:151136 -k1,9525:12328373,27016164:151136 -k1,9525:13765325,27016164:151136 -k1,9525:15436896,27016164:151136 -k1,9525:16607117,27016164:151136 -k1,9525:18411727,27016164:151137 -k1,9525:19971887,27016164:151136 -k1,9525:21319710,27016164:151136 -k1,9525:24685387,27016164:151136 -k1,9525:27910817,27016164:151136 -k1,9525:29455904,27016164:151136 -k1,9525:29962900,27016164:151136 -k1,9525:32583029,27016164:0 -) -(1,9526:6630773,27857652:25952256,513147,134348 -g1,9525:8579158,27857652 -g1,9525:10400403,27857652 -g1,9525:11347398,27857652 -g1,9525:14841122,27857652 -g1,9525:15801879,27857652 -g1,9525:18290936,27857652 -g1,9525:19149457,27857652 -g1,9525:20367771,27857652 -g1,9525:22122169,27857652 -g1,9525:24526685,27857652 -g1,9525:25412076,27857652 -k1,9526:32583029,27857652:3924955 -g1,9526:32583029,27857652 -) -v1,9528:6630773,29048118:0,393216,0 -(1,9537:6630773,31330291:25952256,2675389,196608 -g1,9537:6630773,31330291 -g1,9537:6630773,31330291 -g1,9537:6434165,31330291 -(1,9537:6434165,31330291:0,2675389,196608 -r1,9574:32779637,31330291:26345472,2871997,196608 -k1,9537:6434165,31330291:-26345472 -) -(1,9537:6434165,31330291:26345472,2675389,196608 -[1,9537:6630773,31330291:25952256,2478781,0 -(1,9530:6630773,29255736:25952256,404226,9436 -(1,9529:6630773,29255736:0,0,0 -g1,9529:6630773,29255736 -g1,9529:6630773,29255736 -g1,9529:6303093,29255736 -(1,9529:6303093,29255736:0,0,0 -) -g1,9529:6630773,29255736 -) -g1,9530:7263065,29255736 -g1,9530:8211503,29255736 -g1,9530:8843795,29255736 -g1,9530:9476087,29255736 -g1,9530:12321398,29255736 -g1,9530:14218272,29255736 -g1,9530:15166709,29255736 -g1,9530:16431292,29255736 -g1,9530:17379729,29255736 -g1,9530:18012021,29255736 -g1,9530:19908895,29255736 -g1,9530:22438061,29255736 -k1,9530:22438061,29255736:0 -h1,9530:24334935,29255736:0,0,0 -k1,9530:32583029,29255736:8248094 -g1,9530:32583029,29255736 -) -(1,9531:6630773,29921914:25952256,410518,76021 -h1,9531:6630773,29921914:0,0,0 -g1,9531:7895356,29921914 -g1,9531:8843793,29921914 -g1,9531:9792230,29921914 -g1,9531:11372960,29921914 -g1,9531:12005252,29921914 -g1,9531:12953690,29921914 -g1,9531:13585982,29921914 -g1,9531:14218274,29921914 -h1,9531:14534420,29921914:0,0,0 -k1,9531:32583028,29921914:18048608 -g1,9531:32583028,29921914 -) -(1,9532:6630773,30588092:25952256,404226,6290 -h1,9532:6630773,30588092:0,0,0 -h1,9532:6946919,30588092:0,0,0 -k1,9532:32583029,30588092:25636110 -g1,9532:32583029,30588092 -) -(1,9536:6630773,31254270:25952256,404226,76021 -(1,9534:6630773,31254270:0,0,0 -g1,9534:6630773,31254270 -g1,9534:6630773,31254270 -g1,9534:6303093,31254270 -(1,9534:6303093,31254270:0,0,0 -) -g1,9534:6630773,31254270 -) -g1,9536:7579210,31254270 -g1,9536:8843793,31254270 -h1,9536:9476084,31254270:0,0,0 -k1,9536:32583028,31254270:23106944 -g1,9536:32583028,31254270 -) -] -) -g1,9537:32583029,31330291 -g1,9537:6630773,31330291 -g1,9537:6630773,31330291 -g1,9537:32583029,31330291 -g1,9537:32583029,31330291 -) -h1,9537:6630773,31526899:0,0,0 -(1,9541:6630773,32892675:25952256,513147,126483 -h1,9540:6630773,32892675:983040,0,0 -k1,9540:9270517,32892675:168381 -k1,9540:10457984,32892675:168382 -k1,9540:13812725,32892675:168381 -(1,9540:13812725,32892675:0,452978,115847 -r1,9574:17336399,32892675:3523674,568825,115847 -k1,9540:13812725,32892675:-3523674 -) -(1,9540:13812725,32892675:3523674,452978,115847 -g1,9540:14519426,32892675 -g1,9540:15574562,32892675 -g1,9540:16277986,32892675 -g1,9540:16981410,32892675 -h1,9540:17333122,32892675:0,411205,112570 -) -k1,9540:17504781,32892675:168382 -k1,9540:18204659,32892675:168381 -k1,9540:21206162,32892675:168382 -k1,9540:22509627,32892675:168381 -k1,9540:24607389,32892675:168382 -k1,9540:26169721,32892675:168381 -k1,9540:30071689,32892675:168382 -k1,9541:32583029,32892675:0 -) -(1,9541:6630773,33734163:25952256,513147,134348 -(1,9540:6630773,33734163:0,414482,115847 -r1,9574:6989039,33734163:358266,530329,115847 -k1,9540:6630773,33734163:-358266 -) -(1,9540:6630773,33734163:358266,414482,115847 -k1,9540:6630773,33734163:3277 -h1,9540:6985762,33734163:0,411205,112570 -) -k1,9540:7202198,33734163:213159 -k1,9540:11259698,33734163:213158 -k1,9540:13468428,33734163:213159 -k1,9540:15133209,33734163:213159 -k1,9540:16005659,33734163:213158 -k1,9540:17237903,33734163:213159 -k1,9540:19635377,33734163:213159 -k1,9540:20420664,33734163:213158 -k1,9540:21205952,33734163:213159 -k1,9540:21991239,33734163:213158 -k1,9540:22776527,33734163:213159 -k1,9540:24181131,33734163:213159 -k1,9540:24966418,33734163:213158 -k1,9540:25795615,33734163:213159 -k1,9540:27986651,33734163:213159 -(1,9540:27986651,33734163:0,435480,115847 -r1,9574:29048340,33734163:1061689,551327,115847 -k1,9540:27986651,33734163:-1061689 -) -(1,9540:27986651,33734163:1061689,435480,115847 -k1,9540:27986651,33734163:3277 -h1,9540:29045063,33734163:0,411205,112570 -) -k1,9540:29435168,33734163:213158 -k1,9540:30845014,33734163:213159 -k1,9540:32583029,33734163:0 -) -(1,9541:6630773,34575651:25952256,513147,126483 -k1,9540:8352051,34575651:208052 -k1,9540:9246265,34575651:208052 -k1,9540:13187904,34575651:208053 -k1,9540:14496961,34575651:208052 -k1,9540:15356441,34575651:208052 -k1,9540:17084928,34575651:208052 -k1,9540:18312066,34575651:208053 -k1,9540:20173591,34575651:208052 -k1,9540:24642794,34575651:208052 -k1,9540:25537008,34575651:208052 -k1,9540:26515763,34575651:208052 -k1,9540:29448803,34575651:208053 -k1,9540:30071689,34575651:208043 -k1,9540:32583029,34575651:0 -) -(1,9541:6630773,35417139:25952256,513147,134348 -k1,9540:8711078,35417139:168620 -k1,9540:10076385,35417139:168620 -k1,9540:11238531,35417139:168620 -k1,9540:12090037,35417139:168621 -k1,9540:14236534,35417139:168620 -k1,9540:17380489,35417139:168620 -(1,9540:17380489,35417139:0,452978,115847 -r1,9574:18090467,35417139:709978,568825,115847 -k1,9540:17380489,35417139:-709978 -) -(1,9540:17380489,35417139:709978,452978,115847 -k1,9540:17380489,35417139:3277 -h1,9540:18087190,35417139:0,411205,112570 -) -k1,9540:18259087,35417139:168620 -k1,9540:19531989,35417139:168620 -k1,9540:22072357,35417139:168620 -k1,9540:23372784,35417139:168620 -k1,9540:25081501,35417139:168621 -k1,9540:25664933,35417139:168589 -k1,9540:28297052,35417139:168621 -k1,9540:29151834,35417139:168620 -k1,9540:30709162,35417139:168620 -k1,9540:31563944,35417139:168620 -k1,9540:32583029,35417139:0 -) -(1,9541:6630773,36258627:25952256,505283,126483 -g1,9540:8326189,36258627 -g1,9540:12042080,36258627 -g1,9540:12857347,36258627 -g1,9540:14075661,36258627 -g1,9540:15689812,36258627 -g1,9540:17465837,36258627 -g1,9540:18769348,36258627 -g1,9540:21127333,36258627 -k1,9541:32583029,36258627:9642970 -g1,9541:32583029,36258627 -) -v1,9543:6630773,37624403:0,393216,0 -(1,9544:6630773,39012958:25952256,1781771,0 -g1,9544:6630773,39012958 -g1,9544:6303093,39012958 -r1,9574:6401397,39012958:98304,1781771,0 -g1,9544:6600626,39012958 -g1,9544:6797234,39012958 -[1,9544:6797234,39012958:25785795,1781771,0 -(1,9544:6797234,38044987:25785795,813800,267386 -(1,9543:6797234,38044987:0,813800,267386 -r1,9574:8134168,38044987:1336934,1081186,267386 -k1,9543:6797234,38044987:-1336934 -) -(1,9543:6797234,38044987:1336934,813800,267386 -) -k1,9543:8363060,38044987:228892 -k1,9543:8690740,38044987:327680 -k1,9543:9547466,38044987:228891 -k1,9543:10132218,38044987:228892 -(1,9543:10132218,38044987:0,459977,115847 -r1,9574:11897331,38044987:1765113,575824,115847 -k1,9543:10132218,38044987:-1765113 -) -(1,9543:10132218,38044987:1765113,459977,115847 -k1,9543:10132218,38044987:3277 -h1,9543:11894054,38044987:0,411205,112570 -) -k1,9543:12126222,38044987:228891 -k1,9543:13770036,38044987:228892 -k1,9543:17196429,38044987:228891 -k1,9543:18444406,38044987:228892 -k1,9543:20651174,38044987:228891 -k1,9543:21562951,38044987:228892 -k1,9543:22785368,38044987:228891 -k1,9543:25219547,38044987:228892 -k1,9543:26134600,38044987:228891 -k1,9543:29435820,38044987:228892 -k1,9543:31835263,38044987:228891 -k1,9543:32583029,38044987:0 -) -(1,9544:6797234,38886475:25785795,513147,126483 -g1,9543:9831550,38886475 -g1,9543:10792307,38886475 -g1,9543:12010621,38886475 -g1,9543:13706037,38886475 -g1,9543:17091626,38886475 -g1,9543:19300844,38886475 -g1,9543:20519158,38886475 -(1,9543:20519158,38886475:0,459977,115847 -r1,9574:21580847,38886475:1061689,575824,115847 -k1,9543:20519158,38886475:-1061689 -) -(1,9543:20519158,38886475:1061689,459977,115847 -k1,9543:20519158,38886475:3277 -h1,9543:21577570,38886475:0,411205,112570 -) -g1,9543:21780076,38886475 -k1,9544:32583029,38886475:9214360 -g1,9544:32583029,38886475 -) -] -g1,9544:32583029,39012958 -) -h1,9544:6630773,39012958:0,0,0 -(1,9547:6630773,40378734:25952256,513147,126483 -h1,9546:6630773,40378734:983040,0,0 -k1,9546:8445277,40378734:343876 -k1,9546:10204221,40378734:344022 -k1,9546:11652524,40378734:344021 -k1,9546:12744312,40378734:344022 -k1,9546:16379551,40378734:344021 -k1,9546:17991039,40378734:344022 -k1,9546:18690920,40378734:344021 -k1,9546:20847668,40378734:344022 -k1,9546:24131634,40378734:344021 -k1,9546:25134948,40378734:344022 -k1,9546:29169302,40378734:344022 -k1,9546:30986572,40378734:344021 -k1,9546:32583029,40378734:0 -) -(1,9547:6630773,41220222:25952256,505283,134348 -g1,9546:9388528,41220222 -g1,9546:10606842,41220222 -(1,9546:10606842,41220222:0,459977,115847 -r1,9574:11668531,41220222:1061689,575824,115847 -k1,9546:10606842,41220222:-1061689 -) -(1,9546:10606842,41220222:1061689,459977,115847 -k1,9546:10606842,41220222:3277 -h1,9546:11665254,41220222:0,411205,112570 -) -g1,9546:11867760,41220222 -g1,9546:13481911,41220222 -k1,9547:32583030,41220222:17072124 -g1,9547:32583030,41220222 -) -v1,9549:6630773,42410688:0,393216,0 -(1,9574:6630773,45289308:25952256,3271836,196608 -g1,9574:6630773,45289308 -g1,9574:6630773,45289308 -g1,9574:6434165,45289308 -(1,9574:6434165,45289308:0,3271836,196608 -r1,9574:32779637,45289308:26345472,3468444,196608 -k1,9574:6434165,45289308:-26345472 -) -(1,9574:6434165,45289308:26345472,3271836,196608 -[1,9574:6630773,45289308:25952256,3075228,0 -(1,9551:6630773,42618306:25952256,404226,9436 -(1,9550:6630773,42618306:0,0,0 -g1,9550:6630773,42618306 -g1,9550:6630773,42618306 -g1,9550:6303093,42618306 -(1,9550:6303093,42618306:0,0,0 -) -g1,9550:6630773,42618306 -) -g1,9551:7263065,42618306 -g1,9551:8211503,42618306 -h1,9551:8527649,42618306:0,0,0 -k1,9551:32583029,42618306:24055380 -g1,9551:32583029,42618306 -) -(1,9552:6630773,43284484:25952256,410518,101187 -h1,9552:6630773,43284484:0,0,0 -g1,9552:7263065,43284484 -g1,9552:9159939,43284484 -g1,9552:10108376,43284484 -k1,9552:10108376,43284484:9437 -h1,9552:11382396,43284484:0,0,0 -k1,9552:32583028,43284484:21200632 -g1,9552:32583028,43284484 -) -(1,9553:6630773,43950662:25952256,410518,101187 -h1,9553:6630773,43950662:0,0,0 -g1,9553:7263065,43950662 -g1,9553:9159939,43950662 -k1,9553:9159939,43950662:0 -h1,9553:12005250,43950662:0,0,0 -k1,9553:32583030,43950662:20577780 -g1,9553:32583030,43950662 -) -(1,9554:6630773,44616840:25952256,388497,4718 -h1,9554:6630773,44616840:0,0,0 -g1,9554:7263065,44616840 -g1,9554:8211503,44616840 -h1,9554:8527649,44616840:0,0,0 -k1,9554:32583029,44616840:24055380 -g1,9554:32583029,44616840 -) -(1,9555:6630773,45283018:25952256,404226,6290 -h1,9555:6630773,45283018:0,0,0 -g1,9555:7263065,45283018 -g1,9555:8211503,45283018 -g1,9555:8843795,45283018 -g1,9555:9476087,45283018 -h1,9555:9792233,45283018:0,0,0 -k1,9555:32583029,45283018:22790796 -g1,9555:32583029,45283018 -) -] -) -g1,9574:32583029,45289308 -g1,9574:6630773,45289308 -g1,9574:6630773,45289308 -g1,9574:32583029,45289308 -g1,9574:32583029,45289308 -) -] -(1,9574:32583029,45706769:0,0,0 -g1,9574:32583029,45706769 -) -) -] -(1,9574:6630773,47279633:25952256,0,0 -h1,9574:6630773,47279633:25952256,0,0 -) -] -(1,9574:4262630,4025873:0,0,0 -[1,9574:-473656,4025873:0,0,0 -(1,9574:-473656,-710413:0,0,0 -(1,9574:-473656,-710413:0,0,0 -g1,9574:-473656,-710413 -) -g1,9574:-473656,-710413 -) -] +] ) -] -!25261 -}161 -Input:1384:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1385:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1386:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1387:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1388:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1389:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1390:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!670 -{162 -[1,9642:4262630,47279633:28320399,43253760,0 -(1,9642:4262630,4025873:0,0,0 -[1,9642:-473656,4025873:0,0,0 -(1,9642:-473656,-710413:0,0,0 -(1,9642:-473656,-644877:0,0,0 -k1,9642:-473656,-644877:-65536 +g1,8606:36675916,2439708 +(1,8606:36675916,2439708:1179648,16384,0 +r1,8777:37855564,2439708:1179648,16384,0 ) -(1,9642:-473656,4736287:0,0,0 -k1,9642:-473656,4736287:5209943 ) -g1,9642:-473656,-710413 +k1,8777:3078556,2439708:-34777008 ) ] +[1,8777:3078558,4812305:0,0,0 +(1,8777:3078558,49800853:0,16384,2228224 +k1,8777:1358238,49800853:-1720320 +(1,8606:1358238,49800853:1720320,16384,2228224 +(1,8606:1358238,49800853:1179648,16384,0 +r1,8777:2537886,49800853:1179648,16384,0 +) +g1,8606:3062174,49800853 +(1,8606:3062174,52029077:16384,1703936,0 +[1,8606:3062174,52029077:25952256,1703936,0 +(1,8606:3062174,51504789:25952256,1179648,0 +(1,8606:3062174,51504789:16384,1179648,0 +r1,8777:3078558,51504789:16384,1179648,0 ) -[1,9642:6630773,47279633:25952256,43253760,0 -[1,9642:6630773,4812305:25952256,786432,0 -(1,9642:6630773,4812305:25952256,481690,7863 -(1,9642:6630773,4812305:25952256,481690,7863 -g1,9642:3078558,4812305 -[1,9642:3078558,4812305:0,0,0 -(1,9642:3078558,2439708:0,1703936,0 -k1,9642:1358238,2439708:-1720320 -(1,8393:1358238,2439708:1720320,1703936,0 -(1,8393:1358238,2439708:1179648,16384,0 -r1,9642:2537886,2439708:1179648,16384,0 +k1,8606:29014430,51504789:25935872 +g1,8606:29014430,51504789 +) +] ) -g1,8393:3062174,2439708 -(1,8393:3062174,2439708:16384,1703936,0 -[1,8393:3062174,2439708:25952256,1703936,0 -(1,8393:3062174,1915420:25952256,1179648,0 -(1,8393:3062174,1915420:16384,1179648,0 -r1,9642:3078558,1915420:16384,1179648,0 ) -k1,8393:29014430,1915420:25935872 -g1,8393:29014430,1915420 ) ] +[1,8777:3078558,4812305:0,0,0 +(1,8777:3078558,49800853:0,16384,2228224 +g1,8777:29030814,49800853 +g1,8777:36135244,49800853 +(1,8606:36135244,49800853:1720320,16384,2228224 +(1,8606:36135244,52029077:16384,1703936,0 +[1,8606:36135244,52029077:25952256,1703936,0 +(1,8606:36135244,51504789:25952256,1179648,0 +(1,8606:36135244,51504789:16384,1179648,0 +r1,8777:36151628,51504789:16384,1179648,0 +) +k1,8606:62087500,51504789:25935872 +g1,8606:62087500,51504789 +) +] +) +g1,8606:36675916,49800853 +(1,8606:36675916,49800853:1179648,16384,0 +r1,8777:37855564,49800853:1179648,16384,0 +) +) +k1,8777:3078556,49800853:-34777008 +) +] +g1,8777:6630773,4812305 +g1,8777:6630773,4812305 +g1,8777:9132937,4812305 +g1,8777:11356573,4812305 +k1,8777:31387653,4812305:20031080 +) +) +] +[1,8777:6630773,45706769:25952256,40108032,0 +(1,8777:6630773,45706769:25952256,40108032,0 +(1,8777:6630773,45706769:0,0,0 +g1,8777:6630773,45706769 +) +[1,8777:6630773,45706769:25952256,40108032,0 +(1,8742:6630773,6254097:25952256,513147,134348 +k1,8741:8074794,6254097:252576 +k1,8741:9794065,6254097:252575 +k1,8741:11696838,6254097:252576 +k1,8741:12600841,6254097:252575 +k1,8741:15702267,6254097:252576 +k1,8741:17970074,6254097:252575 +k1,8741:18680747,6254097:252576 +k1,8741:19880973,6254097:252575 +k1,8741:21152634,6254097:252576 +k1,8741:22711342,6254097:252575 +k1,8741:24562996,6254097:252576 +k1,8741:26196415,6254097:252575 +k1,8741:28071007,6254097:252576 +k1,8741:29071348,6254097:252575 +k1,8741:31821501,6254097:252576 +k1,8741:32583029,6254097:0 +) +(1,8742:6630773,7119177:25952256,513147,134348 +g1,8741:9754218,7119177 +g1,8741:11378855,7119177 +g1,8741:12769529,7119177 +g1,8741:14741507,7119177 +g1,8741:15750106,7119177 +g1,8741:16968420,7119177 +g1,8741:19425364,7119177 +k1,8742:32583029,7119177:11483220 +g1,8742:32583029,7119177 +) +(1,8744:6630773,7984257:25952256,505283,134348 +h1,8743:6630773,7984257:983040,0,0 +g1,8743:9233863,7984257 +g1,8743:10926002,7984257 +g1,8743:12281941,7984257 +g1,8743:14838500,7984257 +g1,8743:15808432,7984257 +g1,8743:20981188,7984257 +g1,8743:23011493,7984257 +g1,8743:23893607,7984257 +k1,8744:32583029,7984257:5620371 +g1,8744:32583029,7984257 +) +(1,8746:7202902,9373625:25380127,505283,134348 +(1,8745:7202902,9373625:0,355205,0 +g1,8745:7202902,9373625 +g1,8745:5892182,9373625 +g1,8745:5564502,9373625 +(1,8745:5564502,9373625:1310720,355205,0 +k1,8745:6875222,9373625:1310720 +(1,8745:6875222,9373625:0,355205,0 +k1,8745:6476763,9373625:-398459 +) +) +g1,8745:7202902,9373625 +) +k1,8745:9338422,9373625:274298 +k1,8745:10631805,9373625:274298 +k1,8745:13630435,9373625:274298 +k1,8745:15995331,9373625:274298 +k1,8745:18005022,9373625:274298 +k1,8745:18635180,9373625:274298 +k1,8745:21107556,9373625:274298 +k1,8745:25734100,9373625:274298 +k1,8745:28850694,9373625:274298 +k1,8745:30564818,9373625:274298 +k1,8745:31490544,9373625:274298 +k1,8745:32583029,9373625:0 +) +(1,8746:7202902,10238705:25380127,513147,126483 +k1,8745:9067533,10238705:172491 +k1,8745:11679928,10238705:172490 +k1,8745:12535304,10238705:172491 +k1,8745:15038911,10238705:172491 +k1,8745:16797372,10238705:172490 +k1,8745:17629155,10238705:172491 +k1,8745:21458555,10238705:172491 +k1,8745:24299017,10238705:172491 +k1,8745:28060914,10238705:172490 +k1,8745:28892697,10238705:172491 +k1,8745:32583029,10238705:0 +) +(1,8746:7202902,11103785:25380127,513147,126483 +k1,8745:11635212,11103785:163294 +k1,8745:12457797,11103785:163293 +k1,8745:15132431,11103785:163294 +k1,8745:16487170,11103785:163294 +k1,8745:19345959,11103785:163293 +k1,8745:21751240,11103785:163294 +k1,8745:22732423,11103785:163294 +k1,8745:23251576,11103785:163293 +k1,8745:26506859,11103785:163294 +k1,8745:27576516,11103785:163294 +k1,8745:28391237,11103785:163293 +k1,8745:29302297,11103785:163294 +k1,8745:32583029,11103785:0 +) +(1,8746:7202902,11968865:25380127,513147,126483 +g1,8745:8796082,11968865 +k1,8746:32583029,11968865:21006910 +g1,8746:32583029,11968865 +) +(1,8747:7202902,13358233:25380127,513147,134348 +(1,8746:7202902,13358233:0,355205,0 +g1,8746:7202902,13358233 +g1,8746:5892182,13358233 +g1,8746:5564502,13358233 +(1,8746:5564502,13358233:1310720,355205,0 +k1,8746:6875222,13358233:1310720 +(1,8746:6875222,13358233:0,355205,0 +k1,8746:6476763,13358233:-398459 +) +) +g1,8746:7202902,13358233 +) +k1,8746:8592682,13358233:240934 +k1,8746:12446616,13358233:240934 +k1,8746:14755866,13358233:240934 +k1,8746:15944451,13358233:240934 +k1,8746:19200696,13358233:240934 +k1,8746:20633075,13358233:240934 +k1,8746:22005816,13358233:240934 +k1,8746:23948720,13358233:240934 +k1,8746:26322851,13358233:240934 +k1,8746:28197598,13358233:240934 +k1,8746:28970029,13358233:240934 +k1,8746:32583029,13358233:0 +) +(1,8747:7202902,14223313:25380127,505283,134348 +k1,8746:10085225,14223313:180274 +k1,8746:11074870,14223313:180275 +k1,8746:12274229,14223313:180274 +k1,8746:14997300,14223313:180274 +k1,8746:18622147,14223313:180275 +k1,8746:19611791,14223313:180274 +k1,8746:22569481,14223313:180274 +k1,8746:24015911,14223313:180274 +k1,8746:24552046,14223313:180275 +k1,8746:26605339,14223313:180274 +k1,8746:28487583,14223313:180274 +k1,8746:30004792,14223313:180275 +k1,8746:30932832,14223313:180274 +k1,8746:32583029,14223313:0 +) +(1,8747:7202902,15088393:25380127,513147,134348 +k1,8746:10963554,15088393:147652 +k1,8746:12553654,15088393:147653 +k1,8746:13057166,15088393:147652 +k1,8746:14593527,15088393:147653 +k1,8746:16539487,15088393:147652 +k1,8746:19448172,15088393:147653 +k1,8746:24722050,15088393:147652 +k1,8746:26938019,15088393:147653 +k1,8746:28077231,15088393:147652 +k1,8746:30512091,15088393:147653 +k1,8746:32583029,15088393:0 +) +(1,8747:7202902,15953473:25380127,505283,134348 +k1,8746:8637592,15953473:192127 +k1,8746:10565112,15953473:192127 +(1,8746:10565112,15953473:0,414482,115847 +r1,8777:12681937,15953473:2116825,530329,115847 +k1,8746:10565112,15953473:-2116825 +) +(1,8746:10565112,15953473:2116825,414482,115847 +k1,8746:10565112,15953473:3277 +h1,8746:12678660,15953473:0,411205,112570 +) +k1,8746:12874065,15953473:192128 +k1,8746:14257637,15953473:192127 +(1,8746:14257637,15953473:0,452978,115847 +r1,8777:16374462,15953473:2116825,568825,115847 +k1,8746:14257637,15953473:-2116825 +) +(1,8746:14257637,15953473:2116825,452978,115847 +k1,8746:14257637,15953473:3277 +h1,8746:16371185,15953473:0,411205,112570 +) +k1,8746:16566589,15953473:192127 +k1,8746:17290213,15953473:192127 +k1,8746:19265575,15953473:192127 +k1,8746:21623668,15953473:192128 +k1,8746:23258242,15953473:192127 +k1,8746:25185762,15953473:192127 +(1,8746:25185762,15953473:0,435480,115847 +r1,8777:25895740,15953473:709978,551327,115847 +k1,8746:25185762,15953473:-709978 +) +(1,8746:25185762,15953473:709978,435480,115847 +k1,8746:25185762,15953473:3277 +h1,8746:25892463,15953473:0,411205,112570 +) +k1,8746:26087867,15953473:192127 +k1,8746:27471440,15953473:192128 +(1,8746:27471440,15953473:0,435480,115847 +r1,8777:28181418,15953473:709978,551327,115847 +k1,8746:27471440,15953473:-709978 +) +(1,8746:27471440,15953473:709978,435480,115847 +k1,8746:27471440,15953473:3277 +h1,8746:28178141,15953473:0,411205,112570 +) +k1,8746:28373545,15953473:192127 +k1,8746:30263710,15953473:192127 +k1,8746:32583029,15953473:0 +) +(1,8747:7202902,16818553:25380127,513147,126483 +k1,8746:8871903,16818553:275050 +k1,8746:9502813,16818553:275050 +k1,8746:11865185,16818553:275050 +k1,8746:12799527,16818553:275050 +k1,8746:14637611,16818553:275050 +k1,8746:17694009,16818553:275050 +(1,8746:17694009,16818553:0,459977,115847 +r1,8777:22624529,16818553:4930520,575824,115847 +k1,8746:17694009,16818553:-4930520 +) +(1,8746:17694009,16818553:4930520,459977,115847 +k1,8746:17694009,16818553:3277 +h1,8746:22621252,16818553:0,411205,112570 +) +k1,8746:22899579,16818553:275050 +k1,8746:24366074,16818553:275050 +(1,8746:24366074,16818553:0,459977,115847 +r1,8777:30351729,16818553:5985655,575824,115847 +k1,8746:24366074,16818553:-5985655 +) +(1,8746:24366074,16818553:5985655,459977,115847 +k1,8746:24366074,16818553:3277 +h1,8746:30348452,16818553:0,411205,112570 +) +k1,8746:30626779,16818553:275050 +k1,8746:32583029,16818553:0 +) +(1,8747:7202902,17683633:25380127,505283,134348 +k1,8746:9198856,17683633:280221 +k1,8746:10498162,17683633:280221 +k1,8746:12609459,17683633:280221 +k1,8746:15528814,17683633:280220 +k1,8746:17000480,17683633:280221 +k1,8746:18633364,17683633:280221 +k1,8746:20937992,17683633:280221 +k1,8746:21869641,17683633:280221 +k1,8746:23535948,17683633:280221 +k1,8746:26276390,17683633:280220 +k1,8746:28892970,17683633:280221 +k1,8746:31966991,17683633:280221 +k1,8746:32583029,17683633:0 +) +(1,8747:7202902,18548713:25380127,426639,7863 +k1,8747:32583029,18548713:23195812 +g1,8747:32583029,18548713 +) +(1,8748:7202902,19938081:25380127,505283,126483 +(1,8747:7202902,19938081:0,355205,0 +g1,8747:7202902,19938081 +g1,8747:5892182,19938081 +g1,8747:5564502,19938081 +(1,8747:5564502,19938081:1310720,355205,0 +k1,8747:6875222,19938081:1310720 +(1,8747:6875222,19938081:0,355205,0 +k1,8747:6476763,19938081:-398459 +) +) +g1,8747:7202902,19938081 +) +k1,8747:8849496,19938081:225773 +k1,8747:9726698,19938081:225774 +k1,8747:11668204,19938081:225773 +k1,8747:12913063,19938081:225774 +k1,8747:15093775,19938081:225773 +k1,8747:17362305,19938081:225773 +k1,8747:18204117,19938081:225774 +k1,8747:20671877,19938081:225773 +k1,8747:24815393,19938081:225774 +k1,8747:25657204,19938081:225773 +k1,8747:26297794,19938081:225747 +k1,8747:27680277,19938081:225773 +k1,8747:29862301,19938081:225774 +k1,8747:31180559,19938081:225773 +k1,8747:32583029,19938081:0 +) +(1,8748:7202902,20803161:25380127,505283,134348 +k1,8747:8081178,20803161:226848 +k1,8747:11010731,20803161:226848 +k1,8747:12256664,20803161:226848 +k1,8747:14438451,20803161:226848 +k1,8747:15856744,20803161:226848 +k1,8747:17176077,20803161:226848 +k1,8747:18778526,20803161:226848 +k1,8747:20761740,20803161:226849 +k1,8747:22529339,20803161:226848 +k1,8747:24473230,20803161:226848 +k1,8747:26383043,20803161:226848 +k1,8747:27908159,20803161:226848 +k1,8747:28593104,20803161:226848 +k1,8747:31224468,20803161:226848 +k1,8748:32583029,20803161:0 +) +(1,8748:7202902,21668241:25380127,513147,126483 +k1,8747:8971003,21668241:283711 +k1,8747:9906143,21668241:283712 +k1,8747:11282339,21668241:283711 +k1,8747:15650254,21668241:283711 +k1,8747:17130652,21668241:283711 +k1,8747:18506849,21668241:283712 +k1,8747:19449852,21668241:283711 +k1,8747:23644096,21668241:283711 +k1,8747:24459304,21668241:283711 +k1,8747:26367654,21668241:283712 +k1,8747:29428781,21668241:283711 +k1,8747:32583029,21668241:0 +) +(1,8748:7202902,22533321:25380127,513147,126483 +k1,8747:9982284,22533321:249692 +k1,8747:10848014,22533321:249692 +k1,8747:12789847,22533321:249693 +k1,8747:15738967,22533321:249692 +k1,8747:16446756,22533321:249692 +k1,8747:17227945,22533321:249692 +k1,8747:19838244,22533321:249692 +k1,8747:20774099,22533321:249693 +k1,8747:21639829,22533321:249692 +k1,8747:23581661,22533321:249692 +k1,8747:26988222,22533321:249692 +k1,8747:27593774,22533321:249692 +k1,8747:28915636,22533321:249693 +k1,8747:30502262,22533321:249692 +k1,8747:32227169,22533321:249692 +k1,8747:32583029,22533321:0 +) +(1,8748:7202902,23398401:25380127,513147,134348 +k1,8747:9640441,23398401:243394 +k1,8747:12785769,23398401:243394 +k1,8747:14662976,23398401:243394 +k1,8747:15774722,23398401:243394 +k1,8747:17117810,23398401:243394 +k1,8747:19523237,23398401:243394 +k1,8747:21433867,23398401:243394 +k1,8747:22208758,23398401:243394 +k1,8747:23827753,23398401:243394 +k1,8747:27992166,23398401:243394 +k1,8747:29748786,23398401:243394 +k1,8747:30608218,23398401:243394 +k1,8747:31266411,23398401:243350 +k1,8748:32583029,23398401:0 +) +(1,8748:7202902,24263481:25380127,513147,134348 +k1,8747:10693077,24263481:241555 +k1,8747:12006800,24263481:241554 +k1,8747:12779852,24263481:241555 +k1,8747:15798823,24263481:241555 +k1,8747:16656415,24263481:241554 +k1,8747:18599940,24263481:241555 +k1,8747:22014093,24263481:241555 +k1,8747:23401872,24263481:241554 +k1,8747:25773347,24263481:241555 +k1,8747:26917333,24263481:241555 +k1,8747:29820304,24263481:241554 +k1,8747:30721151,24263481:241555 +k1,8747:32583029,24263481:0 +) +(1,8748:7202902,25128561:25380127,473825,115847 +g1,8747:8769212,25128561 +g1,8747:9499938,25128561 +(1,8747:9499938,25128561:0,452978,115847 +r1,8777:11968475,25128561:2468537,568825,115847 +k1,8747:9499938,25128561:-2468537 +) +(1,8747:9499938,25128561:2468537,452978,115847 +k1,8747:9499938,25128561:3277 +h1,8747:11965198,25128561:0,411205,112570 +) +k1,8748:32583029,25128561:20440884 +g1,8748:32583029,25128561 +) +v1,8751:6630773,26517929:0,393216,0 +(1,8756:6630773,41765314:25952256,15640601,0 +g1,8756:6630773,41765314 +g1,8756:6237557,41765314 +r1,8777:6368629,41765314:131072,15640601,0 +g1,8756:6567858,41765314 +g1,8756:6764466,41765314 +[1,8756:6764466,41765314:25818563,15640601,0 +(1,8752:6764466,26932471:25818563,807758,219026 +(1,8751:6764466,26932471:0,807758,219026 +r1,8777:7908217,26932471:1143751,1026784,219026 +k1,8751:6764466,26932471:-1143751 +) +(1,8751:6764466,26932471:1143751,807758,219026 +) +k1,8751:8085800,26932471:177583 +k1,8751:8413480,26932471:327680 +k1,8751:10224962,26932471:182257 +k1,8751:13798621,26932471:177583 +k1,8751:15172891,26932471:177583 +k1,8751:16442959,26932471:177583 +k1,8751:17279834,26932471:177583 +k1,8751:21070417,26932471:177583 +k1,8751:23316316,26932471:177583 +k1,8751:24180062,26932471:177584 +k1,8751:25636252,26932471:177583 +k1,8751:26499997,26932471:177583 +k1,8751:29958312,26932471:177583 +k1,8752:32583029,26932471:0 +) +(1,8752:6764466,27797551:25818563,513147,134348 +k1,8751:8231489,27797551:199557 +k1,8751:9622491,27797551:199557 +k1,8751:13249581,27797551:199557 +k1,8751:14440698,27797551:199557 +k1,8751:16772797,27797551:199557 +k1,8751:17588392,27797551:199557 +k1,8751:20146590,27797551:199557 +k1,8751:21365232,27797551:199557 +k1,8751:23060976,27797551:199557 +k1,8751:24128885,27797551:199557 +k1,8751:25943249,27797551:199557 +k1,8751:31116333,27797551:199557 +k1,8751:32583029,27797551:0 +) +(1,8752:6764466,28662631:25818563,513147,134348 +k1,8751:7602385,28662631:186491 +k1,8751:9821147,28662631:186491 +k1,8751:11199082,28662631:186490 +k1,8751:12037001,28662631:186491 +k1,8751:15238803,28662631:186491 +k1,8751:16038056,28662631:186491 +k1,8751:16580407,28662631:186491 +k1,8751:18220486,28662631:186490 +k1,8751:20006055,28662631:186491 +k1,8751:20820381,28662631:186491 +k1,8751:23544426,28662631:186491 +k1,8751:24189014,28662631:186491 +k1,8751:24907002,28662631:186491 +k1,8751:26159763,28662631:186490 +k1,8751:28706861,28662631:186491 +k1,8751:29841003,28662631:186491 +k1,8751:32583029,28662631:0 +) +(1,8752:6764466,29527711:25818563,505283,126483 +k1,8751:8447290,29527711:186637 +k1,8751:9285355,29527711:186637 +k1,8751:10219758,29527711:186637 +k1,8751:14089518,29527711:186637 +k1,8751:15037683,29527711:186637 +k1,8751:15580180,29527711:186637 +k1,8751:18843077,29527711:186637 +k1,8751:20221160,29527711:186638 +k1,8751:21692303,29527711:186637 +k1,8751:22337037,29527711:186637 +k1,8751:24864620,29527711:186637 +k1,8751:26070342,29527711:186637 +k1,8751:28499621,29527711:186637 +k1,8751:31117644,29527711:186637 +k1,8751:32583029,29527711:0 +) +(1,8752:6764466,30392791:25818563,505283,134348 +k1,8751:8490886,30392791:155522 +k1,8751:11718736,30392791:155522 +k1,8751:13065702,30392791:155521 +k1,8751:14937612,30392791:155522 +k1,8751:17254511,30392791:155522 +k1,8751:18885248,30392791:155522 +k1,8751:19692197,30392791:155521 +k1,8751:20595485,30392791:155522 +k1,8751:23472062,30392791:155522 +k1,8751:24279012,30392791:155522 +k1,8751:27158865,30392791:155521 +k1,8751:28505832,30392791:155522 +k1,8751:29680439,30392791:155522 +k1,8751:32583029,30392791:0 +) +(1,8752:6764466,31257871:25818563,513147,102891 +k1,8751:7629592,31257871:205834 +k1,8751:8854511,31257871:205834 +k1,8751:10556531,31257871:205833 +k1,8751:15909563,31257871:205834 +k1,8751:16743232,31257871:205834 +k1,8751:18550766,31257871:205834 +k1,8751:20453982,31257871:205834 +k1,8751:21074652,31257871:205827 +k1,8751:22776673,31257871:205834 +k1,8751:24114969,31257871:205834 +k1,8751:25068568,31257871:205833 +k1,8751:29036824,31257871:205834 +k1,8751:31391584,31257871:205834 +k1,8751:32583029,31257871:0 +) +(1,8752:6764466,32122951:25818563,513147,134348 +k1,8751:9776551,32122951:176998 +k1,8751:11340946,32122951:176998 +k1,8751:13117021,32122951:176997 +k1,8751:13921854,32122951:176998 +k1,8751:15850629,32122951:176998 +k1,8751:17725009,32122951:176998 +k1,8751:18360103,32122951:176997 +k1,8751:20537915,32122951:176998 +k1,8751:21366341,32122951:176998 +k1,8751:24746083,32122951:176998 +k1,8751:25278940,32122951:176997 +k1,8751:27150699,32122951:176998 +k1,8751:31391584,32122951:176998 +k1,8751:32583029,32122951:0 +) +(1,8752:6764466,32988031:25818563,505283,126483 +g1,8751:7615123,32988031 +g1,8751:9530085,32988031 +g1,8751:10187411,32988031 +g1,8751:13016600,32988031 +g1,8751:13867257,32988031 +g1,8751:17322315,32988031 +k1,8752:32583029,32988031:14628947 +g1,8752:32583029,32988031 +) +(1,8754:6764466,33853111:25818563,530548,134348 +h1,8753:6764466,33853111:983040,0,0 +k1,8753:9763662,33853111:183769 +k1,8753:10938990,33853111:183768 +k1,8753:12623533,33853111:183769 +k1,8753:16064441,33853111:183769 +k1,8753:17195860,33853111:183768 +k1,8753:19637344,33853111:183769 +k1,8753:20235941,33853111:183754 +k1,8753:22089566,33853111:183768 +k1,8753:23766901,33853111:183769 +k1,8753:24636832,33853111:183769 +k1,8753:25977310,33853111:183768 +k1,8753:26773841,33853111:183769 +$1,8753:26773841,33853111 +k1,8753:28848551,33853111:0 +k1,8753:29263493,33853111:0 +k1,8753:29678435,33853111:0 +k1,8753:30093377,33853111:0 +k1,8753:32168087,33853111:0 +k1,8754:32583029,33853111:0 +) +(1,8754:6764466,34718191:25818563,530548,141067 +k1,8753:10498944,34718191:0 +k1,8753:10913886,34718191:0 +$1,8753:12573654,34718191 +k1,8753:12979379,34718191:232055 +k1,8753:14805270,34718191:232055 +k1,8753:18246624,34718191:232056 +k1,8753:19921126,34718191:232055 +k1,8753:22386648,34718191:232055 +k1,8753:25594038,34718191:232055 +k1,8753:27029334,34718191:232055 +k1,8753:30188228,34718191:232056 +k1,8753:30951780,34718191:232055 +k1,8753:31835263,34718191:232055 +k1,8753:32583029,34718191:0 +) +(1,8754:6764466,35583271:25818563,513147,134348 +k1,8753:10212502,35583271:167304 +k1,8753:10995844,35583271:167304 +k1,8753:12182233,35583271:167304 +k1,8753:13850312,35583271:167305 +k1,8753:15347997,35583271:167304 +k1,8753:15871161,35583271:167304 +k1,8753:17618538,35583271:167304 +k1,8753:18445134,35583271:167304 +k1,8753:22940436,35583271:167304 +k1,8753:23790625,35583271:167304 +k1,8753:25347293,35583271:167305 +k1,8753:28298566,35583271:167304 +k1,8753:29148755,35583271:167304 +k1,8753:30782755,35583271:167304 +k1,8754:32583029,35583271:0 +) +(1,8754:6764466,36448351:25818563,513147,134348 +g1,8753:8330121,36448351 +g1,8753:9188642,36448351 +g1,8753:10158574,36448351 +g1,8753:14400064,36448351 +k1,8754:32583028,36448351:16916808 +g1,8754:32583028,36448351 +) +(1,8756:6764466,37313431:25818563,513147,134348 +h1,8755:6764466,37313431:983040,0,0 +k1,8755:9813988,37313431:283247 +k1,8755:12354949,37313431:283246 +k1,8755:14308053,37313431:283247 +k1,8755:16326692,37313431:283246 +k1,8755:16965799,37313431:283247 +k1,8755:20529778,37313431:283247 +k1,8755:22313798,37313431:283246 +k1,8755:23544696,37313431:283247 +k1,8755:27255475,37313431:283246 +k1,8755:28730167,37313431:283247 +k1,8755:32583029,37313431:0 +) +(1,8756:6764466,38178511:25818563,513147,134348 +k1,8755:9771986,38178511:231415 +k1,8755:12861426,38178511:231415 +k1,8755:15604181,38178511:231415 +k1,8755:17903912,38178511:231415 +k1,8755:19870719,38178511:231414 +k1,8755:23679744,38178511:231415 +k1,8755:25102604,38178511:231415 +k1,8755:28614751,38178511:231415 +k1,8755:31227089,38178511:231415 +k1,8756:32583029,38178511:0 +) +(1,8756:6764466,39043591:25818563,505283,134348 +k1,8755:10039955,39043591:384696 +k1,8755:11616096,39043591:384696 +k1,8755:14188385,39043591:384697 +k1,8755:16775091,39043591:384696 +k1,8755:21222364,39043591:384696 +k1,8755:22223098,39043591:384696 +k1,8755:25925227,39043591:384697 +k1,8755:28007961,39043591:384696 +k1,8755:30864675,39043591:384696 +k1,8755:32583029,39043591:0 +) +(1,8756:6764466,39908671:25818563,513147,134348 +k1,8755:9255545,39908671:133749 +k1,8755:12783403,39908671:133748 +k1,8755:13864803,39908671:133749 +k1,8755:16722884,39908671:133749 +k1,8755:17069559,39908671:133683 +k1,8755:18678523,39908671:133749 +k1,8755:20326809,39908671:133749 +k1,8755:21111985,39908671:133748 +k1,8755:21993500,39908671:133749 +k1,8755:22813411,39908671:133749 +k1,8755:26227892,39908671:133749 +k1,8755:27047802,39908671:133748 +k1,8755:29811511,39908671:133749 +k1,8756:32583029,39908671:0 +) +(1,8756:6764466,40773751:25818563,513147,126483 +k1,8755:8092377,40773751:261640 +k1,8755:9373102,40773751:261640 +k1,8755:11517591,40773751:261640 +k1,8755:13361269,40773751:261639 +k1,8755:14238947,40773751:261640 +k1,8755:15703828,40773751:261640 +k1,8755:18463700,40773751:261640 +k1,8755:20119291,40773751:261640 +k1,8755:21756532,40773751:261640 +k1,8755:23734559,40773751:261639 +k1,8755:27276276,40773751:261640 +k1,8755:29105537,40773751:261640 +k1,8755:30386262,40773751:261640 +k1,8756:32583029,40773751:0 +) +(1,8756:6764466,41638831:25818563,505283,126483 +g1,8755:9534672,41638831 +k1,8756:32583029,41638831:21373912 +g1,8756:32583029,41638831 +) +] +g1,8756:32583029,41765314 +) +h1,8756:6630773,41765314:0,0,0 +v1,8759:6630773,42630394:0,393216,0 +(1,8777:6630773,44640894:25952256,2403716,0 +g1,8777:6630773,44640894 +g1,8777:6237557,44640894 +r1,8777:6368629,44640894:131072,2403716,0 +g1,8777:6567858,44640894 +g1,8777:6764466,44640894 +[1,8777:6764466,44640894:25818563,2403716,0 +(1,8761:6764466,42902871:25818563,665693,196608 +(1,8759:6764466,42902871:0,665693,196608 +r1,8777:8010564,42902871:1246098,862301,196608 +k1,8759:6764466,42902871:-1246098 +) +(1,8759:6764466,42902871:1246098,665693,196608 +) +k1,8759:8246086,42902871:235522 +k1,8759:9564015,42902871:327680 +k1,8759:11287859,42902871:235521 +k1,8759:12054878,42902871:235522 +k1,8759:13061103,42902871:235522 +k1,8759:15958041,42902871:235521 +k1,8759:16852855,42902871:235522 +k1,8759:18265403,42902871:235521 +k1,8759:20001699,42902871:235522 +k1,8759:20853259,42902871:235522 +k1,8759:21444640,42902871:235521 +k1,8759:23684908,42902871:235522 +k1,8759:25489362,42902871:235522 +k1,8759:28339770,42902871:235521 +k1,8759:29024832,42902871:235485 +k1,8759:30747366,42902871:235522 +k1,8761:32583029,42902871:0 +) +(1,8761:6764466,43767951:25818563,530548,141067 +$1,8759:6971560,43767951 +k1,8759:9046270,43767951:0 +k1,8759:9461212,43767951:0 +k1,8759:9876154,43767951:0 +k1,8759:10291096,43767951:0 +k1,8759:12780748,43767951:0 +k1,8759:13195690,43767951:0 +k1,8759:15685342,43767951:0 +k1,8759:16100284,43767951:0 +k1,8759:16930168,43767951:0 +k1,8759:17345110,43767951:0 +k1,8759:21494530,43767951:0 +k1,8759:21909472,43767951:0 +k1,8759:24399124,43767951:0 +k1,8759:24814066,43767951:0 +$1,8759:26058892,43767951 +k1,8760:26742275,43767951:302619 +k1,8760:28236340,43767951:302620 +k1,8760:29765138,43767951:302619 +k1,8760:31086842,43767951:302619 +k1,8760:32583029,43767951:0 +) +(1,8761:6764466,44633031:25818563,505283,7863 +g1,8760:7579733,44633031 +g1,8760:8798047,44633031 +g1,8760:10967944,44633031 +g1,8760:13035604,44633031 +g1,8760:13959661,44633031 +g1,8760:15443396,44633031 +g1,8760:16100722,44633031 +g1,8760:19073435,44633031 +g1,8760:21143062,44633031 +g1,8760:21993719,44633031 +k1,8761:32583029,44633031:9003339 +g1,8761:32583029,44633031 +) +] +g1,8777:32583029,44640894 +) +] +(1,8777:32583029,45706769:0,0,0 +g1,8777:32583029,45706769 +) +) +] +(1,8777:6630773,47279633:25952256,0,0 +h1,8777:6630773,47279633:25952256,0,0 +) +] +(1,8777:4262630,4025873:0,0,0 +[1,8777:-473656,4025873:0,0,0 +(1,8777:-473656,-710413:0,0,0 +(1,8777:-473656,-710413:0,0,0 +g1,8777:-473656,-710413 +) +g1,8777:-473656,-710413 +) +] +) +] +!25468 +}138 +!12 +{139 +[1,8790:4262630,47279633:28320399,43253760,0 +(1,8790:4262630,4025873:0,0,0 +[1,8790:-473656,4025873:0,0,0 +(1,8790:-473656,-710413:0,0,0 +(1,8790:-473656,-644877:0,0,0 +k1,8790:-473656,-644877:-65536 ) +(1,8790:-473656,4736287:0,0,0 +k1,8790:-473656,4736287:5209943 ) +g1,8790:-473656,-710413 ) ] -[1,9642:3078558,4812305:0,0,0 -(1,9642:3078558,2439708:0,1703936,0 -g1,9642:29030814,2439708 -g1,9642:36135244,2439708 -(1,8393:36135244,2439708:1720320,1703936,0 -(1,8393:36135244,2439708:16384,1703936,0 -[1,8393:36135244,2439708:25952256,1703936,0 -(1,8393:36135244,1915420:25952256,1179648,0 -(1,8393:36135244,1915420:16384,1179648,0 -r1,9642:36151628,1915420:16384,1179648,0 ) -k1,8393:62087500,1915420:25935872 -g1,8393:62087500,1915420 +[1,8790:6630773,47279633:25952256,43253760,0 +[1,8790:6630773,4812305:25952256,786432,0 +(1,8790:6630773,4812305:25952256,505283,134348 +(1,8790:6630773,4812305:25952256,505283,134348 +g1,8790:3078558,4812305 +[1,8790:3078558,4812305:0,0,0 +(1,8790:3078558,2439708:0,1703936,0 +k1,8790:1358238,2439708:-1720320 +(1,8606:1358238,2439708:1720320,1703936,0 +(1,8606:1358238,2439708:1179648,16384,0 +r1,8790:2537886,2439708:1179648,16384,0 +) +g1,8606:3062174,2439708 +(1,8606:3062174,2439708:16384,1703936,0 +[1,8606:3062174,2439708:25952256,1703936,0 +(1,8606:3062174,1915420:25952256,1179648,0 +(1,8606:3062174,1915420:16384,1179648,0 +r1,8790:3078558,1915420:16384,1179648,0 +) +k1,8606:29014430,1915420:25935872 +g1,8606:29014430,1915420 ) ] ) -g1,8393:36675916,2439708 -(1,8393:36675916,2439708:1179648,16384,0 -r1,9642:37855564,2439708:1179648,16384,0 ) ) -k1,9642:3078556,2439708:-34777008 +] +[1,8790:3078558,4812305:0,0,0 +(1,8790:3078558,2439708:0,1703936,0 +g1,8790:29030814,2439708 +g1,8790:36135244,2439708 +(1,8606:36135244,2439708:1720320,1703936,0 +(1,8606:36135244,2439708:16384,1703936,0 +[1,8606:36135244,2439708:25952256,1703936,0 +(1,8606:36135244,1915420:25952256,1179648,0 +(1,8606:36135244,1915420:16384,1179648,0 +r1,8790:36151628,1915420:16384,1179648,0 +) +k1,8606:62087500,1915420:25935872 +g1,8606:62087500,1915420 ) ] -[1,9642:3078558,4812305:0,0,0 -(1,9642:3078558,49800853:0,16384,2228224 -k1,9642:1358238,49800853:-1720320 -(1,8393:1358238,49800853:1720320,16384,2228224 -(1,8393:1358238,49800853:1179648,16384,0 -r1,9642:2537886,49800853:1179648,16384,0 ) -g1,8393:3062174,49800853 -(1,8393:3062174,52029077:16384,1703936,0 -[1,8393:3062174,52029077:25952256,1703936,0 -(1,8393:3062174,51504789:25952256,1179648,0 -(1,8393:3062174,51504789:16384,1179648,0 -r1,9642:3078558,51504789:16384,1179648,0 +g1,8606:36675916,2439708 +(1,8606:36675916,2439708:1179648,16384,0 +r1,8790:37855564,2439708:1179648,16384,0 +) ) -k1,8393:29014430,51504789:25935872 -g1,8393:29014430,51504789 +k1,8790:3078556,2439708:-34777008 ) ] +[1,8790:3078558,4812305:0,0,0 +(1,8790:3078558,49800853:0,16384,2228224 +k1,8790:1358238,49800853:-1720320 +(1,8606:1358238,49800853:1720320,16384,2228224 +(1,8606:1358238,49800853:1179648,16384,0 +r1,8790:2537886,49800853:1179648,16384,0 ) +g1,8606:3062174,49800853 +(1,8606:3062174,52029077:16384,1703936,0 +[1,8606:3062174,52029077:25952256,1703936,0 +(1,8606:3062174,51504789:25952256,1179648,0 +(1,8606:3062174,51504789:16384,1179648,0 +r1,8790:3078558,51504789:16384,1179648,0 ) +k1,8606:29014430,51504789:25935872 +g1,8606:29014430,51504789 ) ] -[1,9642:3078558,4812305:0,0,0 -(1,9642:3078558,49800853:0,16384,2228224 -g1,9642:29030814,49800853 -g1,9642:36135244,49800853 -(1,8393:36135244,49800853:1720320,16384,2228224 -(1,8393:36135244,52029077:16384,1703936,0 -[1,8393:36135244,52029077:25952256,1703936,0 -(1,8393:36135244,51504789:25952256,1179648,0 -(1,8393:36135244,51504789:16384,1179648,0 -r1,9642:36151628,51504789:16384,1179648,0 ) -k1,8393:62087500,51504789:25935872 -g1,8393:62087500,51504789 -) -] -) -g1,8393:36675916,49800853 -(1,8393:36675916,49800853:1179648,16384,0 -r1,9642:37855564,49800853:1179648,16384,0 ) ) -k1,9642:3078556,49800853:-34777008 -) -] -g1,9642:6630773,4812305 -g1,9642:6630773,4812305 -g1,9642:9524187,4812305 -k1,9642:31387651,4812305:21863464 -) -) -] -[1,9642:6630773,45706769:25952256,40108032,0 -(1,9642:6630773,45706769:25952256,40108032,0 -(1,9642:6630773,45706769:0,0,0 -g1,9642:6630773,45706769 -) -[1,9642:6630773,45706769:25952256,40108032,0 -v1,9574:6630773,6254097:0,393216,0 -(1,9574:6630773,15864228:25952256,10003347,196608 -g1,9574:6630773,15864228 -g1,9574:6630773,15864228 -g1,9574:6434165,15864228 -(1,9574:6434165,15864228:0,10003347,196608 -r1,9642:32779637,15864228:26345472,10199955,196608 -k1,9574:6434165,15864228:-26345472 -) -(1,9574:6434165,15864228:26345472,10003347,196608 -[1,9574:6630773,15864228:25952256,9806739,0 -(1,9556:6630773,6461715:25952256,404226,6290 -h1,9556:6630773,6461715:0,0,0 -g1,9556:7263065,6461715 -g1,9556:9476085,6461715 -k1,9556:9476085,6461715:0 -h1,9556:12321396,6461715:0,0,0 -k1,9556:32583028,6461715:20261632 -g1,9556:32583028,6461715 -) -(1,9557:6630773,7127893:25952256,388497,4718 -h1,9557:6630773,7127893:0,0,0 -g1,9557:7263065,7127893 -g1,9557:8211503,7127893 -h1,9557:8527649,7127893:0,0,0 -k1,9557:32583029,7127893:24055380 -g1,9557:32583029,7127893 -) -(1,9558:6630773,7794071:25952256,404226,6290 -h1,9558:6630773,7794071:0,0,0 -g1,9558:7263065,7794071 -g1,9558:8211503,7794071 -g1,9558:8843795,7794071 -g1,9558:9476087,7794071 -h1,9558:9792233,7794071:0,0,0 -k1,9558:32583029,7794071:22790796 -g1,9558:32583029,7794071 -) -(1,9559:6630773,8460249:25952256,404226,6290 -h1,9559:6630773,8460249:0,0,0 -g1,9559:7263065,8460249 -g1,9559:9159939,8460249 -k1,9559:9159939,8460249:0 -h1,9559:12005250,8460249:0,0,0 -k1,9559:32583030,8460249:20577780 -g1,9559:32583030,8460249 -) -(1,9560:6630773,9126427:25952256,388497,9436 -h1,9560:6630773,9126427:0,0,0 -g1,9560:7263065,9126427 -g1,9560:8211503,9126427 -h1,9560:8527649,9126427:0,0,0 -k1,9560:32583029,9126427:24055380 -g1,9560:32583029,9126427 -) -(1,9561:6630773,9792605:25952256,404226,6290 -h1,9561:6630773,9792605:0,0,0 -g1,9561:7263065,9792605 -g1,9561:8211503,9792605 -g1,9561:8843795,9792605 -g1,9561:9476087,9792605 -h1,9561:9792233,9792605:0,0,0 -k1,9561:32583029,9792605:22790796 -g1,9561:32583029,9792605 -) -(1,9562:6630773,10458783:25952256,410518,101187 -h1,9562:6630773,10458783:0,0,0 -g1,9562:7263065,10458783 -g1,9562:9476085,10458783 -k1,9562:9476085,10458783:0 -h1,9562:12321396,10458783:0,0,0 -k1,9562:32583028,10458783:20261632 -g1,9562:32583028,10458783 -) -(1,9563:6630773,11124961:25952256,379060,4718 -h1,9563:6630773,11124961:0,0,0 -g1,9563:7263065,11124961 -g1,9563:8211503,11124961 -h1,9563:8527649,11124961:0,0,0 -k1,9563:32583029,11124961:24055380 -g1,9563:32583029,11124961 -) -(1,9564:6630773,11791139:25952256,404226,6290 -h1,9564:6630773,11791139:0,0,0 -g1,9564:7263065,11791139 -g1,9564:8211503,11791139 -g1,9564:8843795,11791139 -g1,9564:9476087,11791139 -h1,9564:9792233,11791139:0,0,0 -k1,9564:32583029,11791139:22790796 -g1,9564:32583029,11791139 -) -(1,9565:6630773,12457317:25952256,410518,101187 -h1,9565:6630773,12457317:0,0,0 -g1,9565:7263065,12457317 -g1,9565:9159939,12457317 -k1,9565:9159939,12457317:0 -h1,9565:12005250,12457317:0,0,0 -k1,9565:32583030,12457317:20577780 -g1,9565:32583030,12457317 -) -(1,9566:6630773,13123495:25952256,379060,9436 -h1,9566:6630773,13123495:0,0,0 -g1,9566:7263065,13123495 -g1,9566:8211503,13123495 -h1,9566:8527649,13123495:0,0,0 -k1,9566:32583029,13123495:24055380 -g1,9566:32583029,13123495 -) -(1,9567:6630773,13789673:25952256,404226,6290 -h1,9567:6630773,13789673:0,0,0 -g1,9567:7263065,13789673 -g1,9567:8211503,13789673 -g1,9567:8843795,13789673 -g1,9567:9476087,13789673 -h1,9567:9792233,13789673:0,0,0 -k1,9567:32583029,13789673:22790796 -g1,9567:32583029,13789673 -) -(1,9568:6630773,14455851:25952256,410518,101187 -h1,9568:6630773,14455851:0,0,0 -g1,9568:7263065,14455851 -g1,9568:8527648,14455851 -g1,9568:9476085,14455851 -k1,9568:9476085,14455851:9437 -h1,9568:10750105,14455851:0,0,0 -k1,9568:32583029,14455851:21832924 -g1,9568:32583029,14455851 -) -(1,9569:6630773,15122029:25952256,404226,6290 -h1,9569:6630773,15122029:0,0,0 -h1,9569:6946919,15122029:0,0,0 -k1,9569:32583029,15122029:25636110 -g1,9569:32583029,15122029 -) -(1,9573:6630773,15788207:25952256,404226,76021 -(1,9571:6630773,15788207:0,0,0 -g1,9571:6630773,15788207 -g1,9571:6630773,15788207 -g1,9571:6303093,15788207 -(1,9571:6303093,15788207:0,0,0 -) -g1,9571:6630773,15788207 -) -g1,9573:7579210,15788207 -g1,9573:8843793,15788207 -h1,9573:9476084,15788207:0,0,0 -k1,9573:32583028,15788207:23106944 -g1,9573:32583028,15788207 -) -] -) -g1,9574:32583029,15864228 -g1,9574:6630773,15864228 -g1,9574:6630773,15864228 -g1,9574:32583029,15864228 -g1,9574:32583029,15864228 -) -h1,9574:6630773,16060836:0,0,0 -(1,9578:6630773,17333210:25952256,513147,126483 -h1,9577:6630773,17333210:983040,0,0 -k1,9577:9015275,17333210:204775 -k1,9577:12294344,17333210:204775 -k1,9577:16700631,17333210:204774 -k1,9577:17521444,17333210:204775 -k1,9577:18929460,17333210:204775 -k1,9577:21795652,17333210:204775 -k1,9577:22531923,17333210:204774 -k1,9577:23092558,17333210:204775 -k1,9577:24651307,17333210:204775 -k1,9577:27594832,17333210:204775 -k1,9577:29129987,17333210:204774 -k1,9577:30353847,17333210:204775 -k1,9577:31923737,17333210:204775 -k1,9577:32583029,17333210:0 -) -(1,9578:6630773,18174698:25952256,513147,134348 -g1,9577:7185862,18174698 -g1,9577:9536638,18174698 -g1,9577:10460695,18174698 -g1,9577:12093852,18174698 -g1,9577:12707924,18174698 -g1,9577:15667529,18174698 -g1,9577:16222618,18174698 -g1,9577:19117343,18174698 -g1,9577:22569124,18174698 -g1,9577:23716004,18174698 -g1,9577:27034091,18174698 -g1,9577:30664130,18174698 -k1,9578:32583029,18174698:1287132 -g1,9578:32583029,18174698 -) -v1,9580:6630773,19271761:0,393216,0 -(1,9587:6630773,20221578:25952256,1343033,196608 -g1,9587:6630773,20221578 -g1,9587:6630773,20221578 -g1,9587:6434165,20221578 -(1,9587:6434165,20221578:0,1343033,196608 -r1,9642:32779637,20221578:26345472,1539641,196608 -k1,9587:6434165,20221578:-26345472 -) -(1,9587:6434165,20221578:26345472,1343033,196608 -[1,9587:6630773,20221578:25952256,1146425,0 -(1,9582:6630773,19479379:25952256,404226,76021 -(1,9581:6630773,19479379:0,0,0 -g1,9581:6630773,19479379 -g1,9581:6630773,19479379 -g1,9581:6303093,19479379 -(1,9581:6303093,19479379:0,0,0 -) -g1,9581:6630773,19479379 -) -k1,9582:6630773,19479379:0 -h1,9582:9159940,19479379:0,0,0 -k1,9582:32583028,19479379:23423088 -g1,9582:32583028,19479379 -) -(1,9586:6630773,20145557:25952256,404226,76021 -(1,9584:6630773,20145557:0,0,0 -g1,9584:6630773,20145557 -g1,9584:6630773,20145557 -g1,9584:6303093,20145557 -(1,9584:6303093,20145557:0,0,0 -) -g1,9584:6630773,20145557 -) -g1,9586:7579210,20145557 -g1,9586:8843793,20145557 -h1,9586:9476084,20145557:0,0,0 -k1,9586:32583028,20145557:23106944 -g1,9586:32583028,20145557 -) -] -) -g1,9587:32583029,20221578 -g1,9587:6630773,20221578 -g1,9587:6630773,20221578 -g1,9587:32583029,20221578 -g1,9587:32583029,20221578 -) -h1,9587:6630773,20418186:0,0,0 -v1,9591:6630773,22121446:0,393216,0 -(1,9605:6630773,27577053:25952256,5848823,0 -g1,9605:6630773,27577053 -g1,9605:6303093,27577053 -r1,9642:6401397,27577053:98304,5848823,0 -g1,9605:6600626,27577053 -g1,9605:6797234,27577053 -[1,9605:6797234,27577053:25785795,5848823,0 -(1,9592:6797234,22542030:25785795,813800,267386 -(1,9591:6797234,22542030:0,813800,267386 -r1,9642:8134168,22542030:1336934,1081186,267386 -k1,9591:6797234,22542030:-1336934 -) -(1,9591:6797234,22542030:1336934,813800,267386 -) -k1,9591:8308185,22542030:174017 -k1,9591:8635865,22542030:327680 -k1,9591:9279776,22542030:174018 -k1,9591:9985290,22542030:174017 -k1,9591:13368605,22542030:174017 -k1,9591:14194051,22542030:174018 -k1,9591:15781680,22542030:174017 -k1,9591:17240203,22542030:174017 -k1,9591:17770081,22542030:174018 -k1,9591:18937624,22542030:174017 -k1,9591:19794527,22542030:174018 -k1,9591:21946421,22542030:174017 -k1,9591:22779730,22542030:174017 -k1,9591:24967014,22542030:174018 -k1,9591:26561196,22542030:174017 -k1,9591:27266710,22542030:174017 -k1,9591:27796588,22542030:174018 -k1,9591:29510701,22542030:174017 -k1,9591:32583029,22542030:0 -) -(1,9592:6797234,23383518:25785795,505283,134348 -g1,9591:7647891,23383518 -(1,9591:7647891,23383518:0,459977,115847 -r1,9642:9413004,23383518:1765113,575824,115847 -k1,9591:7647891,23383518:-1765113 -) -(1,9591:7647891,23383518:1765113,459977,115847 -k1,9591:7647891,23383518:3277 -h1,9591:9409727,23383518:0,411205,112570 -) -g1,9591:9785903,23383518 -g1,9591:11269638,23383518 -g1,9591:13929744,23383518 -g1,9591:14938343,23383518 -g1,9591:16918185,23383518 -g1,9591:18189583,23383518 -g1,9591:20063912,23383518 -g1,9591:21282226,23383518 -g1,9591:24998117,23383518 -g1,9591:25813384,23383518 -g1,9591:27031698,23383518 -g1,9591:28645849,23383518 -k1,9592:32583029,23383518:2186713 -g1,9592:32583029,23383518 -) -v1,9594:6797234,24573984:0,393216,0 -(1,9603:6797234,26856157:25785795,2675389,196608 -g1,9603:6797234,26856157 -g1,9603:6797234,26856157 -g1,9603:6600626,26856157 -(1,9603:6600626,26856157:0,2675389,196608 -r1,9642:32779637,26856157:26179011,2871997,196608 -k1,9603:6600625,26856157:-26179012 -) -(1,9603:6600626,26856157:26179011,2675389,196608 -[1,9603:6797234,26856157:25785795,2478781,0 -(1,9596:6797234,24781602:25785795,404226,9436 -(1,9595:6797234,24781602:0,0,0 -g1,9595:6797234,24781602 -g1,9595:6797234,24781602 -g1,9595:6469554,24781602 -(1,9595:6469554,24781602:0,0,0 -) -g1,9595:6797234,24781602 -) -g1,9596:7429526,24781602 -g1,9596:8377964,24781602 -h1,9596:8694110,24781602:0,0,0 -k1,9596:32583030,24781602:23888920 -g1,9596:32583030,24781602 -) -(1,9597:6797234,25447780:25785795,410518,76021 -h1,9597:6797234,25447780:0,0,0 -g1,9597:8061817,25447780 -g1,9597:9010254,25447780 -g1,9597:9958691,25447780 -g1,9597:13436294,25447780 -g1,9597:14068586,25447780 -g1,9597:15017024,25447780 -g1,9597:15649316,25447780 -g1,9597:16281608,25447780 -h1,9597:16597754,25447780:0,0,0 -k1,9597:32583029,25447780:15985275 -g1,9597:32583029,25447780 -) -(1,9598:6797234,26113958:25785795,404226,6290 -h1,9598:6797234,26113958:0,0,0 -h1,9598:7113380,26113958:0,0,0 -k1,9598:32583028,26113958:25469648 -g1,9598:32583028,26113958 -) -(1,9602:6797234,26780136:25785795,404226,76021 -(1,9600:6797234,26780136:0,0,0 -g1,9600:6797234,26780136 -g1,9600:6797234,26780136 -g1,9600:6469554,26780136 -(1,9600:6469554,26780136:0,0,0 -) -g1,9600:6797234,26780136 -) -g1,9602:7745671,26780136 -g1,9602:9010254,26780136 -h1,9602:9326400,26780136:0,0,0 -k1,9602:32583028,26780136:23256628 -g1,9602:32583028,26780136 -) -] -) -g1,9603:32583029,26856157 -g1,9603:6797234,26856157 -g1,9603:6797234,26856157 -g1,9603:32583029,26856157 -g1,9603:32583029,26856157 -) -h1,9603:6797234,27052765:0,0,0 -] -g1,9605:32583029,27577053 -) -h1,9605:6630773,27577053:0,0,0 -v1,9608:6630773,29105002:0,393216,0 -(1,9620:6630773,33385709:25952256,4673923,196608 -g1,9620:6630773,33385709 -g1,9620:6630773,33385709 -g1,9620:6434165,33385709 -(1,9620:6434165,33385709:0,4673923,196608 -r1,9642:32779637,33385709:26345472,4870531,196608 -k1,9620:6434165,33385709:-26345472 -) -(1,9620:6434165,33385709:26345472,4673923,196608 -[1,9620:6630773,33385709:25952256,4477315,0 -(1,9610:6630773,29312620:25952256,404226,82312 -(1,9609:6630773,29312620:0,0,0 -g1,9609:6630773,29312620 -g1,9609:6630773,29312620 -g1,9609:6303093,29312620 -(1,9609:6303093,29312620:0,0,0 -) -g1,9609:6630773,29312620 -) -g1,9610:7263065,29312620 -g1,9610:8211503,29312620 -g1,9610:9792233,29312620 -g1,9610:10740671,29312620 -g1,9610:11689109,29312620 -g1,9610:12637547,29312620 -h1,9610:13269839,29312620:0,0,0 -k1,9610:32583029,29312620:19313190 -g1,9610:32583029,29312620 -) -(1,9611:6630773,29978798:25952256,410518,101187 -h1,9611:6630773,29978798:0,0,0 -g1,9611:8527647,29978798 -g1,9611:9476084,29978798 -g1,9611:10424521,29978798 -g1,9611:14534415,29978798 -g1,9611:15166707,29978798 -g1,9611:17063581,29978798 -g1,9611:18012018,29978798 -k1,9611:18012018,29978798:0 -h1,9611:20225038,29978798:0,0,0 -k1,9611:32583029,29978798:12357991 -g1,9611:32583029,29978798 -) -(1,9619:6630773,30644976:25952256,404226,76021 -(1,9613:6630773,30644976:0,0,0 -g1,9613:6630773,30644976 -g1,9613:6630773,30644976 -g1,9613:6303093,30644976 -(1,9613:6303093,30644976:0,0,0 -) -g1,9613:6630773,30644976 -) -g1,9619:7579210,30644976 -g1,9619:8843793,30644976 -h1,9619:9159939,30644976:0,0,0 -k1,9619:32583029,30644976:23423090 -g1,9619:32583029,30644976 -) -(1,9619:6630773,31311154:25952256,404226,76021 -h1,9619:6630773,31311154:0,0,0 -g1,9619:7579210,31311154 -g1,9619:8843793,31311154 -h1,9619:9159939,31311154:0,0,0 -k1,9619:32583029,31311154:23423090 -g1,9619:32583029,31311154 -) -(1,9619:6630773,31977332:25952256,404226,76021 -h1,9619:6630773,31977332:0,0,0 -g1,9619:7579210,31977332 -g1,9619:8843793,31977332 -h1,9619:9159939,31977332:0,0,0 -k1,9619:32583029,31977332:23423090 -g1,9619:32583029,31977332 -) -(1,9619:6630773,32643510:25952256,404226,76021 -h1,9619:6630773,32643510:0,0,0 -g1,9619:7579210,32643510 -g1,9619:8843793,32643510 -h1,9619:9476084,32643510:0,0,0 -k1,9619:32583028,32643510:23106944 -g1,9619:32583028,32643510 -) -(1,9619:6630773,33309688:25952256,404226,76021 -h1,9619:6630773,33309688:0,0,0 -g1,9619:7579210,33309688 -g1,9619:8843793,33309688 -h1,9619:9476084,33309688:0,0,0 -k1,9619:32583028,33309688:23106944 -g1,9619:32583028,33309688 -) -] -) -g1,9620:32583029,33385709 -g1,9620:6630773,33385709 -g1,9620:6630773,33385709 -g1,9620:32583029,33385709 -g1,9620:32583029,33385709 -) -h1,9620:6630773,33582317:0,0,0 -(1,9624:6630773,34854691:25952256,505283,115847 -h1,9623:6630773,34854691:983040,0,0 -g1,9623:8300630,34854691 -g1,9623:9599553,34854691 -g1,9623:10450210,34854691 -(1,9623:10450210,34854691:0,459977,115847 -r1,9642:11511899,34854691:1061689,575824,115847 -k1,9623:10450210,34854691:-1061689 -) -(1,9623:10450210,34854691:1061689,459977,115847 -k1,9623:10450210,34854691:3277 -h1,9623:11508622,34854691:0,411205,112570 -) -g1,9623:11711128,34854691 -g1,9623:13403267,34854691 -g1,9623:14668767,34854691 -g1,9623:16878641,34854691 -g1,9623:17433730,34854691 -k1,9624:32583029,34854691:13295285 -g1,9624:32583029,34854691 -) -v1,9626:6630773,35951754:0,393216,0 -(1,9634:6630773,37505883:25952256,1947345,196608 -g1,9634:6630773,37505883 -g1,9634:6630773,37505883 -g1,9634:6434165,37505883 -(1,9634:6434165,37505883:0,1947345,196608 -r1,9642:32779637,37505883:26345472,2143953,196608 -k1,9634:6434165,37505883:-26345472 -) -(1,9634:6434165,37505883:26345472,1947345,196608 -[1,9634:6630773,37505883:25952256,1750737,0 -(1,9628:6630773,36165664:25952256,410518,76021 -(1,9627:6630773,36165664:0,0,0 -g1,9627:6630773,36165664 -g1,9627:6630773,36165664 -g1,9627:6303093,36165664 -(1,9627:6303093,36165664:0,0,0 -) -g1,9627:6630773,36165664 -) -g1,9628:7263065,36165664 -g1,9628:8211503,36165664 -g1,9628:10108377,36165664 -g1,9628:11056814,36165664 -g1,9628:12005251,36165664 -h1,9628:13585980,36165664:0,0,0 -k1,9628:32583028,36165664:18997048 -g1,9628:32583028,36165664 -) -(1,9629:6630773,36831842:25952256,404226,6290 -h1,9629:6630773,36831842:0,0,0 -h1,9629:6946919,36831842:0,0,0 -k1,9629:32583029,36831842:25636110 -g1,9629:32583029,36831842 -) -(1,9633:6630773,37498020:25952256,379060,7863 -(1,9631:6630773,37498020:0,0,0 -g1,9631:6630773,37498020 -g1,9631:6630773,37498020 -g1,9631:6303093,37498020 -(1,9631:6303093,37498020:0,0,0 -) -g1,9631:6630773,37498020 -) -g1,9633:7579210,37498020 -h1,9633:8843793,37498020:0,0,0 -k1,9633:32583029,37498020:23739236 -g1,9633:32583029,37498020 -) -] -) -g1,9634:32583029,37505883 -g1,9634:6630773,37505883 -g1,9634:6630773,37505883 -g1,9634:32583029,37505883 -g1,9634:32583029,37505883 -) -h1,9634:6630773,37702491:0,0,0 -(1,9638:6630773,38974865:25952256,505283,134348 -h1,9637:6630773,38974865:983040,0,0 -k1,9637:8757744,38974865:190382 -k1,9637:10478392,38974865:190382 -k1,9637:11320202,38974865:190382 -k1,9637:13517296,38974865:190382 -k1,9637:15718323,38974865:190382 -k1,9637:16560133,38974865:190382 -k1,9637:17106375,38974865:190382 -k1,9637:19808097,38974865:190382 -k1,9637:22008468,38974865:190382 -k1,9637:23217935,38974865:190382 -k1,9637:24823239,38974865:190382 -k1,9637:25738449,38974865:190382 -k1,9637:27213337,38974865:190382 -k1,9637:28783907,38974865:190382 -k1,9637:29965849,38974865:190382 -k1,9637:31222502,38974865:190382 -k1,9637:32583029,38974865:0 -) -(1,9638:6630773,39816353:25952256,513147,134348 -k1,9637:7308660,39816353:200130 -k1,9637:8377143,39816353:200131 -k1,9637:10159312,39816353:200130 -k1,9637:10972205,39816353:200131 -k1,9637:12623957,39816353:200130 -k1,9637:15541211,39816353:200131 -k1,9637:16760426,39816353:200130 -k1,9637:18640900,39816353:200131 -k1,9637:19500322,39816353:200130 -k1,9637:20903693,39816353:200130 -k1,9637:23237021,39816353:200131 -k1,9637:24305503,39816353:200130 -k1,9637:25609916,39816353:200131 -k1,9637:27795132,39816353:200130 -k1,9637:29325644,39816353:200131 -k1,9637:30544859,39816353:200130 -k1,9637:32583029,39816353:0 -) -(1,9638:6630773,40657841:25952256,505283,134348 -g1,9637:8510345,40657841 -g1,9637:11454222,40657841 -g1,9637:14180519,40657841 -g1,9637:16391703,40657841 -g1,9637:17336076,40657841 -g1,9637:18186733,40657841 -g1,9637:19584616,40657841 -g1,9637:21114226,40657841 -g1,9637:22332540,40657841 -g1,9637:24509646,40657841 -g1,9637:26617283,40657841 -g1,9637:27432550,40657841 -k1,9638:32583029,40657841:2963543 -g1,9638:32583029,40657841 -) -(1,9640:6630773,41499329:25952256,505283,134348 -h1,9639:6630773,41499329:983040,0,0 -k1,9639:9566735,41499329:178207 -k1,9639:10360981,41499329:178208 -k1,9639:11558273,41499329:178207 -k1,9639:14728200,41499329:178208 -k1,9639:16761731,41499329:178207 -k1,9639:17959023,41499329:178207 -k1,9639:19633418,41499329:178208 -k1,9639:22225971,41499329:178207 -k1,9639:24646820,41499329:178207 -k1,9639:27383554,41499329:178208 -k1,9639:28580846,41499329:178207 -k1,9639:30769699,41499329:178208 -k1,9639:31563944,41499329:178207 -k1,9639:32583029,41499329:0 -) -(1,9640:6630773,42340817:25952256,513147,134348 -k1,9639:8916762,42340817:134442 -k1,9639:10242649,42340817:134442 -k1,9639:13763993,42340817:134443 -k1,9639:16882945,42340817:134442 -k1,9639:17548884,42340817:134442 -k1,9639:18334754,42340817:134442 -k1,9639:19943756,42340817:134442 -k1,9639:22636725,42340817:134443 -k1,9639:23127027,42340817:134442 -k1,9639:26201414,42340817:134442 -k1,9639:26995148,42340817:134442 -k1,9639:29378787,42340817:134443 -k1,9639:30704674,42340817:134442 -k1,9639:31490544,42340817:134442 -k1,9639:32583029,42340817:0 -) -(1,9640:6630773,43182305:25952256,505283,126483 -k1,9639:7866501,43182305:216643 -k1,9639:11297684,43182305:216642 -k1,9639:14260941,43182305:216643 -(1,9639:14260941,43182305:0,452978,115847 -r1,9642:15322631,43182305:1061690,568825,115847 -k1,9639:14260941,43182305:-1061690 -) -(1,9639:14260941,43182305:1061690,452978,115847 -g1,9639:14967642,43182305 -h1,9639:15319354,43182305:0,411205,112570 -) -k1,9639:15539274,43182305:216643 -k1,9639:16407344,43182305:216642 -k1,9639:18654948,43182305:216643 -k1,9639:19890676,43182305:216643 -k1,9639:22117963,43182305:216642 -k1,9639:22950644,43182305:216643 -k1,9639:23523146,43182305:216642 -k1,9639:25717666,43182305:216643 -k1,9639:26617194,43182305:216643 -k1,9639:28001032,43182305:216642 -k1,9639:29598519,43182305:216643 -k1,9639:32583029,43182305:0 -) -(1,9640:6630773,44023793:25952256,505283,134348 -k1,9639:8943811,44023793:267004 -k1,9639:9668913,44023793:267005 -k1,9639:12565877,44023793:267004 -k1,9639:13484310,44023793:267005 -k1,9639:18603600,44023793:267004 -k1,9639:20345165,44023793:267005 -k1,9639:23170695,44023793:267004 -k1,9639:25087896,44023793:267004 -k1,9639:26797348,44023793:267005 -k1,9639:28221062,44023793:267004 -k1,9639:29481593,44023793:267005 -k1,9639:30431482,44023793:267004 -k1,9639:32583029,44023793:0 -) -(1,9640:6630773,44865281:25952256,513147,126483 -k1,9639:7526397,44865281:267789 -k1,9639:8813272,44865281:267790 -k1,9639:11742478,44865281:267789 -k1,9639:14052370,44865281:267790 -k1,9639:17189325,44865281:267789 -k1,9639:18116407,44865281:267790 -k1,9639:20692374,44865281:267789 -(1,9639:20692374,44865281:0,414482,115847 -r1,9642:21050640,44865281:358266,530329,115847 -k1,9639:20692374,44865281:-358266 -) -(1,9639:20692374,44865281:358266,414482,115847 -k1,9639:20692374,44865281:3277 -h1,9639:21047363,44865281:0,411205,112570 -) -k1,9639:21318430,44865281:267790 -k1,9639:22777664,44865281:267789 -(1,9639:22777664,44865281:0,452978,115847 -r1,9642:23135930,44865281:358266,568825,115847 -k1,9639:22777664,44865281:-358266 -) -(1,9639:22777664,44865281:358266,452978,115847 -k1,9639:22777664,44865281:3277 -h1,9639:23132653,44865281:0,411205,112570 -) -k1,9639:23403720,44865281:267790 -k1,9639:24663069,44865281:267789 -k1,9639:27729902,44865281:267790 -k1,9639:32224763,44865281:267789 -(1,9639:32224763,44865281:0,414482,115847 -r1,9642:32583029,44865281:358266,530329,115847 -k1,9639:32224763,44865281:-358266 -) -(1,9639:32224763,44865281:358266,414482,115847 -k1,9639:32224763,44865281:3277 -h1,9639:32579752,44865281:0,411205,112570 -) -k1,9639:32583029,44865281:0 -) -(1,9640:6630773,45706769:25952256,505283,134348 -g1,9639:9902985,45706769 -g1,9639:11121299,45706769 -g1,9639:13029052,45706769 -g1,9639:14419726,45706769 -(1,9639:14419726,45706769:0,452978,115847 -r1,9642:14777992,45706769:358266,568825,115847 -k1,9639:14419726,45706769:-358266 -) -(1,9639:14419726,45706769:358266,452978,115847 -k1,9639:14419726,45706769:3277 -h1,9639:14774715,45706769:0,411205,112570 -) -g1,9639:14977221,45706769 -g1,9639:16689676,45706769 -g1,9639:17540333,45706769 -g1,9639:19356991,45706769 -g1,9639:20575305,45706769 -g1,9639:25398099,45706769 -g1,9639:28805971,45706769 -k1,9640:32583029,45706769:1923044 -g1,9640:32583029,45706769 -) -] -(1,9642:32583029,45706769:0,0,0 -g1,9642:32583029,45706769 -) -) -] -(1,9642:6630773,47279633:25952256,0,0 -h1,9642:6630773,47279633:25952256,0,0 -) -] -(1,9642:4262630,4025873:0,0,0 -[1,9642:-473656,4025873:0,0,0 -(1,9642:-473656,-710413:0,0,0 -(1,9642:-473656,-710413:0,0,0 -g1,9642:-473656,-710413 -) -g1,9642:-473656,-710413 -) -] -) -] -!24158 -}162 -Input:1391:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1392:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1393:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1394:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1395:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1396:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1397:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1398:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1399:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1400:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1401:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1402:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1403:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1404:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1405:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1406:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1407:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1408:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1409:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1410:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1892 -{163 -[1,9728:4262630,47279633:28320399,43253760,0 -(1,9728:4262630,4025873:0,0,0 -[1,9728:-473656,4025873:0,0,0 -(1,9728:-473656,-710413:0,0,0 -(1,9728:-473656,-644877:0,0,0 -k1,9728:-473656,-644877:-65536 -) -(1,9728:-473656,4736287:0,0,0 -k1,9728:-473656,4736287:5209943 +] +[1,8790:3078558,4812305:0,0,0 +(1,8790:3078558,49800853:0,16384,2228224 +g1,8790:29030814,49800853 +g1,8790:36135244,49800853 +(1,8606:36135244,49800853:1720320,16384,2228224 +(1,8606:36135244,52029077:16384,1703936,0 +[1,8606:36135244,52029077:25952256,1703936,0 +(1,8606:36135244,51504789:25952256,1179648,0 +(1,8606:36135244,51504789:16384,1179648,0 +r1,8790:36151628,51504789:16384,1179648,0 +) +k1,8606:62087500,51504789:25935872 +g1,8606:62087500,51504789 +) +] +) +g1,8606:36675916,49800853 +(1,8606:36675916,49800853:1179648,16384,0 +r1,8790:37855564,49800853:1179648,16384,0 +) +) +k1,8790:3078556,49800853:-34777008 +) +] +g1,8790:6630773,4812305 +k1,8790:21643106,4812305:13816956 +g1,8790:23265777,4812305 +g1,8790:24088253,4812305 +g1,8790:28572226,4812305 +g1,8790:29981905,4812305 +) +) +] +[1,8790:6630773,45706769:25952256,40108032,0 +(1,8790:6630773,45706769:25952256,40108032,0 +(1,8790:6630773,45706769:0,0,0 +g1,8790:6630773,45706769 +) +[1,8790:6630773,45706769:25952256,40108032,0 +v1,8777:6630773,6254097:0,393216,0 +(1,8777:6630773,12237198:25952256,6376317,0 +g1,8777:6630773,12237198 +g1,8777:6237557,12237198 +r1,8790:6368629,12237198:131072,6376317,0 +g1,8777:6567858,12237198 +g1,8777:6764466,12237198 +[1,8777:6764466,12237198:25818563,6376317,0 +v1,8763:6764466,6254097:0,393216,0 +(1,8775:6764466,12040590:25818563,6179709,196608 +g1,8775:6764466,12040590 +g1,8775:6764466,12040590 +g1,8775:6567858,12040590 +(1,8775:6567858,12040590:0,6179709,196608 +r1,8790:32779637,12040590:26211779,6376317,196608 +k1,8775:6567857,12040590:-26211780 +) +(1,8775:6567858,12040590:26211779,6179709,196608 +[1,8775:6764466,12040590:25818563,5983101,0 +(1,8765:6764466,6481928:25818563,424439,112852 +(1,8764:6764466,6481928:0,0,0 +g1,8764:6764466,6481928 +g1,8764:6764466,6481928 +g1,8764:6436786,6481928 +(1,8764:6436786,6481928:0,0,0 +) +g1,8764:6764466,6481928 +) +g1,8765:7428374,6481928 +g1,8765:8424236,6481928 +g1,8765:9088144,6481928 +g1,8765:9752052,6481928 +k1,8765:9752052,6481928:14864 +h1,8765:11758640,6481928:0,0,0 +k1,8765:32583028,6481928:20824388 +g1,8765:32583028,6481928 +) +(1,8766:6764466,7166783:25818563,424439,112852 +h1,8766:6764466,7166783:0,0,0 +g1,8766:7428374,7166783 +g1,8766:8424236,7166783 +g1,8766:9088144,7166783 +g1,8766:9752052,7166783 +k1,8766:9752052,7166783:0 +h1,8766:11743776,7166783:0,0,0 +k1,8766:32583028,7166783:20839252 +g1,8766:32583028,7166783 +) +(1,8767:6764466,7851638:25818563,353424,8257 +h1,8767:6764466,7851638:0,0,0 +g1,8767:7428374,7851638 +k1,8767:7428374,7851638:0 +h1,8767:8092282,7851638:0,0,0 +k1,8767:32583030,7851638:24490748 +g1,8767:32583030,7851638 +) +(1,8768:6764466,8536493:25818563,344616,4954 +h1,8768:6764466,8536493:0,0,0 +g1,8768:7096420,8536493 +g1,8768:7428374,8536493 +g1,8768:7760328,8536493 +g1,8768:8092282,8536493 +g1,8768:8756190,8536493 +h1,8768:9088144,8536493:0,0,0 +k1,8768:32583028,8536493:23494884 +g1,8768:32583028,8536493 +) +(1,8769:6764466,9221348:25818563,424439,6605 +h1,8769:6764466,9221348:0,0,0 +h1,8769:7096420,9221348:0,0,0 +k1,8769:32583028,9221348:25486608 +g1,8769:32583028,9221348 +) +(1,8770:6764466,9906203:25818563,424439,8257 +h1,8770:6764466,9906203:0,0,0 +g1,8770:7428374,9906203 +g1,8770:8424236,9906203 +h1,8770:11079867,9906203:0,0,0 +k1,8770:32583029,9906203:21503162 +g1,8770:32583029,9906203 +) +(1,8771:6764466,10591058:25818563,424439,106246 +h1,8771:6764466,10591058:0,0,0 +g1,8771:7096420,10591058 +g1,8771:7428374,10591058 +g1,8771:7760328,10591058 +g1,8771:8092282,10591058 +g1,8771:8424236,10591058 +g1,8771:8756190,10591058 +k1,8771:8756190,10591058:0 +h1,8771:10747914,10591058:0,0,0 +k1,8771:32583030,10591058:21835116 +g1,8771:32583030,10591058 +) +(1,8772:6764466,11275913:25818563,424439,86428 +h1,8772:6764466,11275913:0,0,0 +g1,8772:9088144,11275913 +g1,8772:10084006,11275913 +h1,8772:12739637,11275913:0,0,0 +k1,8772:32583029,11275913:19843392 +g1,8772:32583029,11275913 +) +(1,8773:6764466,11960768:25818563,424439,79822 +h1,8773:6764466,11960768:0,0,0 +h1,8773:7096420,11960768:0,0,0 +k1,8773:32583028,11960768:25486608 +g1,8773:32583028,11960768 +) +] +) +g1,8775:32583029,12040590 +g1,8775:6764466,12040590 +g1,8775:6764466,12040590 +g1,8775:32583029,12040590 +g1,8775:32583029,12040590 +) +h1,8775:6764466,12237198:0,0,0 +] +g1,8777:32583029,12237198 +) +h1,8777:6630773,12237198:0,0,0 +(1,8780:6630773,13102278:25952256,513147,134348 +h1,8779:6630773,13102278:983040,0,0 +k1,8779:9026265,13102278:215765 +k1,8779:11260539,13102278:215765 +k1,8779:14605647,13102278:215764 +k1,8779:16676736,13102278:215765 +k1,8779:19226893,13102278:215765 +k1,8779:20830711,13102278:215765 +k1,8779:21402335,13102278:215764 +k1,8779:22648326,13102278:215765 +k1,8779:25798793,13102278:215765 +k1,8779:27171268,13102278:215765 +k1,8779:28491314,13102278:215764 +k1,8779:29475816,13102278:215765 +k1,8779:31966991,13102278:215765 +k1,8779:32583029,13102278:0 +) +(1,8780:6630773,13967358:25952256,513147,134348 +k1,8779:9891189,13967358:260178 +k1,8779:11170451,13967358:260177 +k1,8779:12760355,13967358:260178 +k1,8779:13679825,13967358:260178 +k1,8779:16160363,13967358:260178 +k1,8779:19814650,13967358:260177 +k1,8779:20836356,13967358:260178 +k1,8779:25312465,13967358:260178 +k1,8779:29635219,13967358:260177 +k1,8779:31086842,13967358:260178 +k1,8779:32583029,13967358:0 +) +(1,8780:6630773,14832438:25952256,513147,134348 +k1,8779:9762957,14832438:230905 +k1,8779:11185307,14832438:230905 +k1,8779:13151605,14832438:230905 +k1,8779:14148626,14832438:230905 +k1,8779:15398616,14832438:230905 +k1,8779:18326983,14832438:230905 +k1,8779:19217180,14832438:230905 +k1,8779:23189535,14832438:230905 +k1,8779:24887136,14832438:230905 +k1,8779:25777333,14832438:230905 +k1,8779:29213604,14832438:230905 +k1,8779:31422386,14832438:230905 +k1,8780:32583029,14832438:0 +) +(1,8780:6630773,15697518:25952256,513147,134348 +k1,8779:8821344,15697518:264468 +k1,8779:10277256,15697518:264467 +k1,8779:13835563,15697518:264468 +k1,8779:16110019,15697518:264467 +k1,8779:17393572,15697518:264468 +k1,8779:19641814,15697518:264467 +k1,8779:20565574,15697518:264468 +k1,8779:21849126,15697518:264467 +k1,8779:24118340,15697518:264468 +k1,8779:28576456,15697518:264467 +k1,8779:29602452,15697518:264468 +k1,8779:32583029,15697518:0 +) +(1,8780:6630773,16562598:25952256,513147,126483 +k1,8779:7904512,16562598:254654 +k1,8779:10332340,16562598:254654 +k1,8779:11246286,16562598:254654 +k1,8779:12520026,16562598:254655 +k1,8779:16576423,16562598:254654 +k1,8779:18022522,16562598:254654 +k1,8779:19296261,16562598:254654 +k1,8779:21047102,16562598:254654 +k1,8779:22907388,16562598:254654 +k1,8779:23778080,16562598:254654 +k1,8779:24388595,16562598:254655 +k1,8779:26963879,16562598:254654 +k1,8779:29214760,16562598:254654 +k1,8779:30947906,16562598:254654 +k1,8780:32583029,16562598:0 +) +(1,8780:6630773,17427678:25952256,513147,134348 +k1,8779:9884027,17427678:184858 +k1,8779:10937237,17427678:184858 +k1,8779:12226378,17427678:184859 +k1,8779:14554263,17427678:184858 +k1,8779:16023627,17427678:184858 +k1,8779:17227570,17427678:184858 +k1,8779:19585602,17427678:184858 +k1,8779:20762021,17427678:184859 +k1,8779:23099081,17427678:184858 +k1,8779:24303024,17427678:184858 +k1,8779:26330754,17427678:184858 +k1,8779:27174905,17427678:184859 +k1,8779:29882899,17427678:184858 +k1,8779:31086842,17427678:184858 +k1,8779:32583029,17427678:0 +) +(1,8780:6630773,18292758:25952256,505283,134348 +k1,8779:9028604,18292758:148635 +k1,8779:10558084,18292758:148636 +k1,8779:12895622,18292758:148635 +k1,8779:16683472,18292758:148636 +k1,8779:17483535,18292758:148635 +k1,8779:19021534,18292758:148636 +k1,8779:21724762,18292758:148635 +k1,8779:26782700,18292758:148636 +k1,8779:28816806,18292758:148635 +k1,8779:29496939,18292758:148636 +k1,8779:32583029,18292758:0 +) +(1,8780:6630773,19157838:25952256,513147,126483 +k1,8779:7173793,19157838:187160 +k1,8779:11014585,19157838:187160 +k1,8779:15132594,19157838:187160 +k1,8779:16267405,19157838:187160 +k1,8779:17586372,19157838:187160 +k1,8779:19162894,19157838:187159 +k1,8779:21904647,19157838:187160 +k1,8779:23558503,19157838:187160 +k1,8779:24361701,19157838:187160 +k1,8779:27539269,19157838:187160 +k1,8779:28917874,19157838:187160 +k1,8779:29721072,19157838:187160 +k1,8779:32583029,19157838:0 +) +(1,8780:6630773,20022918:25952256,505283,126483 +k1,8779:7339916,20022918:239250 +k1,8779:8110663,20022918:239250 +k1,8779:10979873,20022918:239250 +k1,8779:12285394,20022918:239250 +k1,8779:13900245,20022918:239250 +k1,8779:14790923,20022918:239250 +k1,8779:17350803,20022918:239250 +k1,8779:19472902,20022918:239250 +k1,8779:21624493,20022918:239250 +k1,8779:23009968,20022918:239250 +k1,8779:24452459,20022918:239250 +k1,8779:26022090,20022918:239250 +k1,8779:27333509,20022918:239250 +k1,8779:28858575,20022918:239250 +k1,8779:30980674,20022918:239250 +k1,8780:32583029,20022918:0 +) +(1,8780:6630773,20887998:25952256,505283,7863 +g1,8779:8684671,20887998 +g1,8779:10152677,20887998 +g1,8779:11817946,20887998 +g1,8779:13411126,20887998 +g1,8779:15307082,20887998 +k1,8780:32583029,20887998:15520893 +g1,8780:32583029,20887998 +) +(1,8782:6630773,21753078:25952256,513147,134348 +h1,8781:6630773,21753078:983040,0,0 +k1,8781:8417165,21753078:175517 +k1,8781:9611767,21753078:175517 +k1,8781:11603943,21753078:175518 +k1,8781:12438752,21753078:175517 +k1,8781:17140185,21753078:175517 +k1,8781:18518943,21753078:175517 +k1,8781:21678970,21753078:175517 +k1,8781:22385984,21753078:175517 +k1,8781:24429278,21753078:175518 +k1,8781:26863821,21753078:175517 +k1,8781:31391584,21753078:175517 +k1,8781:32583029,21753078:0 +) +(1,8782:6630773,22618158:25952256,513147,134348 +k1,8781:8035109,22618158:197163 +k1,8781:9538404,22618158:197162 +k1,8781:12752845,22618158:197163 +k1,8781:13711535,22618158:197162 +k1,8781:16203113,22618158:197163 +k1,8781:18365700,22618158:197162 +k1,8781:20735382,22618158:197163 +k1,8781:22733473,22618158:197162 +k1,8781:25489162,22618158:197163 +k1,8781:26632664,22618158:197162 +k1,8781:28122195,22618158:197161 +k1,8781:30738946,22618158:197162 +k1,8781:31563944,22618158:197163 +k1,8781:32583029,22618158:0 +) +(1,8782:6630773,23483238:25952256,513147,134348 +k1,8781:8278713,23483238:280859 +k1,8781:9226728,23483238:280859 +k1,8781:9922348,23483238:280777 +k1,8781:14729123,23483238:280859 +k1,8781:16029067,23483238:280859 +k1,8781:17616059,23483238:280859 +k1,8781:20423330,23483238:280858 +k1,8781:21363481,23483238:280859 +k1,8781:23903366,23483238:280859 +k1,8781:28536471,23483238:280859 +k1,8781:30024503,23483238:280859 +k1,8781:32583029,23483238:0 +) +(1,8782:6630773,24348318:25952256,505283,134348 +k1,8781:9721584,24348318:280628 +k1,8781:11887684,24348318:280629 +k1,8781:13269317,24348318:280628 +k1,8781:15059896,24348318:280629 +k1,8781:17508455,24348318:280628 +k1,8781:21457134,24348318:280629 +k1,8781:22499290,24348318:280628 +k1,8781:24618858,24348318:280629 +k1,8781:26085688,24348318:280628 +k1,8781:28341405,24348318:281117 +k1,8781:30002877,24348318:280628 +k1,8781:32583029,24348318:0 +) +(1,8782:6630773,25213398:25952256,513147,173670 +k1,8781:9775184,25213398:287697 +k1,8781:11081965,25213398:287696 +k1,8781:12462147,25213398:287697 +k1,8781:13417000,25213398:287697 +k1,8781:17007712,25213398:287697 +k1,8781:17978293,25213398:287696 +[1,8781:18107399,25213398:341312,473825,0 +(1,8781:18107399,25075379:341312,335806,0 +) +] +(1,8781:18675665,25387068:370934,473825,0 +) +k1,8781:22591436,25213398:287697 +k1,8781:24680062,25213398:287697 +k1,8781:25653921,25213398:287697 +k1,8781:26960702,25213398:287696 +k1,8781:29740733,25213398:287697 +k1,8781:32583029,25213398:0 +) +(1,8782:6630773,26078478:25952256,513147,134348 +k1,8781:7849088,26078478:270664 +k1,8781:9138836,26078478:270663 +k1,8781:11611510,26078478:270664 +k1,8781:14631408,26078478:270663 +k1,8781:16093517,26078478:270664 +k1,8781:17649996,26078478:270663 +k1,8781:20431344,26078478:270664 +k1,8781:21893452,26078478:270663 +k1,8781:23691760,26078478:270664 +k1,8781:26046468,26078478:270663 +k1,8781:30164751,26078478:270664 +k1,8781:31086842,26078478:270663 +k1,8781:32583029,26078478:0 +) +(1,8782:6630773,26943558:25952256,505283,7863 +k1,8781:9333313,26943558:227901 +k1,8781:13326914,26943558:227902 +k1,8781:14086312,26943558:227901 +k1,8781:15084916,26943558:227901 +k1,8781:18385145,26943558:227901 +k1,8781:19264475,26943558:227902 +k1,8781:22795391,26943558:227901 +k1,8781:24307798,26943558:227901 +k1,8781:26581733,26943558:227901 +k1,8781:27267732,26943558:227902 +k1,8781:29366031,26943558:227901 +k1,8781:30245360,26943558:227901 +k1,8782:32583029,26943558:0 +) +(1,8782:6630773,27808638:25952256,530548,132809 +k1,8781:7240425,27808638:194809 +k1,8781:8931426,27808638:194814 +k1,8781:9742278,27808638:194814 +k1,8781:13470137,27808638:194813 +k1,8781:14897028,27808638:194814 +$1,8781:14897028,27808638 +k1,8781:16556796,27808638:0 +k1,8781:16971738,27808638:0 +k1,8781:17386680,27808638:0 +k1,8781:17801622,27808638:0 +k1,8781:21536100,27808638:0 +k1,8781:21951042,27808638:0 +k1,8781:24855636,27808638:0 +k1,8781:25270578,27808638:0 +$1,8781:26930346,27808638 +k1,8781:27505923,27808638:194813 +k1,8781:28170630,27808638:194814 +k1,8781:28896941,27808638:194814 +k1,8781:30110839,27808638:194813 +k1,8781:31923737,27808638:194814 +k1,8782:32583029,27808638:0 +) +(1,8782:6630773,28673718:25952256,505283,134348 +k1,8781:7268344,28673718:222728 +k1,8781:10401551,28673718:222753 +k1,8781:11908809,28673718:222752 +k1,8781:14657974,28673718:222752 +k1,8781:18448506,28673718:222752 +k1,8781:20242156,28673718:222752 +k1,8781:21656353,28673718:222752 +k1,8781:24565426,28673718:222752 +k1,8781:28321224,28673718:222752 +k1,8781:32583029,28673718:0 +) +(1,8782:6630773,29538798:25952256,513147,134348 +k1,8781:8083051,29538798:183501 +k1,8781:9732591,29538798:183500 +k1,8781:13990465,29538798:183501 +k1,8781:16754118,29538798:183501 +k1,8781:19823824,29538798:183500 +k1,8781:23698968,29538798:183501 +k1,8781:25073914,29538798:183501 +k1,8781:27092422,29538798:183500 +k1,8781:28223574,29538798:183501 +k1,8781:32583029,29538798:0 +) +(1,8782:6630773,30403878:25952256,513147,126483 +k1,8781:7983978,30403878:167003 +k1,8781:9918616,30403878:167132 +k1,8781:11064727,30403878:167003 +k1,8781:11835972,30403878:167003 +k1,8781:12737699,30403878:167068 +k1,8781:14879495,30403878:167196 +k1,8781:17239333,30403878:167003 +k1,8781:17937833,30403878:167003 +k1,8781:18460697,30403878:167004 +k1,8781:20546594,30403878:167003 +k1,8781:23762987,30403878:167003 +k1,8781:26263727,30403878:167003 +k1,8781:27097886,30403878:167003 +k1,8781:27686292,30403878:173563 +k1,8781:31204151,30403878:167003 +k1,8782:32583029,30403878:0 +) +(1,8782:6630773,31268958:25952256,513147,134348 +k1,8781:9159534,31268958:177985 +k1,8781:10356604,31268958:177985 +k1,8781:13127193,31268958:177985 +k1,8781:13964470,31268958:177985 +k1,8781:14908571,31268958:177985 +k1,8781:16783282,31268958:177984 +k1,8781:19723610,31268958:177985 +k1,8781:21617983,31268958:177985 +k1,8781:22455260,31268958:177985 +k1,8781:24792001,31268958:177985 +k1,8781:29171499,31268958:177985 +k1,8781:29965522,31268958:177985 +k1,8781:32583029,31268958:0 +) +(1,8782:6630773,32134038:25952256,513147,134348 +g1,8781:8026689,32134038 +g1,8781:9318403,32134038 +g1,8781:10176924,32134038 +g1,8781:12215092,32134038 +g1,8781:13605766,32134038 +g1,8781:16248832,32134038 +g1,8781:16979558,32134038 +g1,8781:18532761,32134038 +g1,8781:20010597,32134038 +g1,8781:23473519,32134038 +g1,8781:24940214,32134038 +g1,8781:26158528,32134038 +g1,8781:28781934,32134038 +k1,8782:32583029,32134038:2540182 +g1,8782:32583029,32134038 +) +(1,8784:6630773,32999118:25952256,505283,134348 +h1,8783:6630773,32999118:983040,0,0 +k1,8783:9225128,32999118:230471 +k1,8783:9987095,32999118:230470 +k1,8783:11283837,32999118:230471 +k1,8783:13747775,32999118:230471 +k1,8783:14748948,32999118:230470 +k1,8783:15394231,32999118:230440 +k1,8783:19976948,32999118:230471 +k1,8783:22691233,32999118:230470 +k1,8783:23607866,32999118:230471 +k1,8783:24296434,32999118:230471 +k1,8783:27384274,32999118:230470 +k1,8783:31966991,32999118:230471 +k1,8783:32583029,32999118:0 +) +(1,8784:6630773,33864198:25952256,505283,134348 +k1,8783:8048720,33864198:286140 +k1,8783:11350827,33864198:286140 +k1,8783:12561025,33864198:286140 +k1,8783:13866250,33864198:286140 +k1,8783:15854360,33864198:286140 +k1,8783:17920458,33864198:286140 +k1,8783:19409840,33864198:286141 +k1,8783:20227477,33864198:286140 +k1,8783:21284320,33864198:286140 +k1,8783:24744369,33864198:286140 +k1,8783:28239807,33864198:286140 +k1,8783:29860260,33864198:286140 +k1,8783:30797828,33864198:286140 +k1,8783:32583029,33864198:0 +) +(1,8784:6630773,34729278:25952256,505283,134348 +k1,8783:7930402,34729278:227460 +k1,8783:9436470,34729278:227461 +k1,8783:12753953,34729278:227460 +k1,8783:13597451,34729278:227460 +k1,8783:15526882,34729278:227461 +k1,8783:17666683,34729278:227460 +k1,8783:19085588,34729278:227460 +k1,8783:20581825,34729278:227460 +k1,8783:22275326,34729278:227461 +k1,8783:24062543,34729278:227460 +k1,8783:24906041,34729278:227460 +k1,8783:26152587,34729278:227461 +k1,8783:29134525,34729278:227460 +k1,8783:32583029,34729278:0 +) +(1,8784:6630773,35594358:25952256,513147,134348 +k1,8783:8172890,35594358:161273 +k1,8783:10217012,35594358:161273 +k1,8783:12133995,35594358:161273 +k1,8783:15275845,35594358:161273 +k1,8783:17796414,35594358:161273 +k1,8783:19058692,35594358:161273 +k1,8783:20729916,35594358:161274 +k1,8783:24044126,35594358:161273 +k1,8783:25940792,35594358:161273 +k1,8783:27941004,35594358:161273 +k1,8783:29293722,35594358:161273 +k1,8783:30474080,35594358:161273 +k1,8783:32583029,35594358:0 +) +(1,8784:6630773,36459438:25952256,530548,141067 +k1,8783:8279591,36459438:152631 +k1,8783:9379873,36459438:152631 +k1,8783:10551588,36459438:152630 +k1,8783:12286258,36459438:152631 +k1,8783:12970386,36459438:152631 +k1,8783:15906986,36459438:152631 +k1,8783:18618142,36459438:152630 +k1,8783:21029144,36459438:152631 +k1,8783:21794537,36459438:152631 +$1,8783:21794537,36459438 +k1,8783:23869247,36459438:0 +k1,8783:24284189,36459438:0 +k1,8783:24699131,36459438:0 +k1,8783:25114073,36459438:0 +k1,8783:27603725,36459438:0 +k1,8783:28018667,36459438:0 +k1,8783:29263493,36459438:0 +k1,8783:29678435,36459438:0 +k1,8783:32168087,36459438:0 +k1,8784:32583029,36459438:0 +) +(1,8784:6630773,37324518:25952256,530548,98314 +(1,8783:9535367,37422832:32768,0,0 +) +(1,8783:11642845,37422832:32768,0,0 +) +$1,8783:12920439,37324518 +k1,8784:32583029,37324518:19488920 +g1,8784:32583029,37324518 +) +(1,8785:6630773,39441336:25952256,555811,147783 +(1,8785:6630773,39441336:2450326,534184,12975 +g1,8785:6630773,39441336 +g1,8785:9081099,39441336 +) +g1,8785:13217601,39441336 +k1,8785:32583029,39441336:16902126 +g1,8785:32583029,39441336 +) +(1,8789:6630773,40699632:25952256,513147,134348 +k1,8788:7982031,40699632:154571 +k1,8788:9229088,40699632:154572 +k1,8788:10042951,40699632:154571 +k1,8788:11216607,40699632:154571 +k1,8788:12995817,40699632:154572 +k1,8788:14358216,40699632:154571 +k1,8788:15164215,40699632:154571 +k1,8788:17988068,40699632:154572 +k1,8788:18498499,40699632:154571 +k1,8788:21329561,40699632:154572 +k1,8788:22100170,40699632:154571 +k1,8788:25331001,40699632:154571 +k1,8788:28477947,40699632:154572 +k1,8788:29823963,40699632:154571 +k1,8788:32583029,40699632:0 +) +(1,8789:6630773,41564712:25952256,505283,134348 +k1,8788:9088233,41564712:201055 +k1,8788:9905326,41564712:201055 +k1,8788:11700217,41564712:201055 +k1,8788:13599310,41564712:201055 +k1,8788:14156225,41564712:201055 +k1,8788:15553967,41564712:201055 +k1,8788:17118172,41564712:201056 +k1,8788:18969424,41564712:201055 +k1,8788:22005566,41564712:201055 +k1,8788:22562481,41564712:201055 +k1,8788:24623448,41564712:201055 +k1,8788:25850141,41564712:201055 +k1,8788:28686399,41564712:201055 +k1,8788:29906539,41564712:201055 +k1,8788:32583029,41564712:0 +) +(1,8789:6630773,42429792:25952256,513147,134348 +k1,8788:7519550,42429792:229485 +k1,8788:8104895,42429792:229485 +k1,8788:9892171,42429792:229485 +k1,8788:10737694,42429792:229485 +k1,8788:11737882,42429792:229485 +k1,8788:17722739,42429792:229485 +k1,8788:21028485,42429792:229486 +k1,8788:23682802,42429792:229485 +k1,8788:24370384,42429792:229485 +k1,8788:25251297,42429792:229485 +k1,8788:29357237,42429792:229485 +k1,8788:30778167,42429792:229485 +k1,8788:32583029,42429792:0 +) +(1,8789:6630773,43294872:25952256,513147,134348 +k1,8788:9251104,43294872:269555 +k1,8788:12610681,43294872:269554 +k1,8788:13899321,43294872:269555 +k1,8788:15475008,43294872:269554 +k1,8788:18820823,43294872:269555 +k1,8788:20462046,43294872:269555 +k1,8788:21928287,43294872:269554 +k1,8788:23290327,43294872:269555 +k1,8788:24219174,43294872:269555 +k1,8788:25507813,43294872:269554 +k1,8788:27289939,43294872:269555 +k1,8788:28748971,43294872:269554 +k1,8788:29634564,43294872:269555 +k1,8789:32583029,43294872:0 +) +(1,8789:6630773,44159952:25952256,513147,134348 +k1,8788:7855792,44159952:234770 +k1,8788:10858147,44159952:234770 +k1,8788:12112002,44159952:234770 +k1,8788:13439257,44159952:234770 +k1,8788:14290065,44159952:234770 +k1,8788:17601095,44159952:234770 +k1,8788:20317714,44159952:234771 +k1,8788:21743929,44159952:234770 +k1,8788:26377476,44159952:234770 +k1,8788:27631331,44159952:234770 +k1,8788:29172234,44159952:234770 +k1,8788:30499489,44159952:234770 +k1,8788:31393551,44159952:234770 +k1,8788:32583029,44159952:0 +) +] +(1,8790:32583029,45706769:0,0,0 +g1,8790:32583029,45706769 +) +) +] +(1,8790:6630773,47279633:25952256,0,0 +h1,8790:6630773,47279633:25952256,0,0 +) +] +(1,8790:4262630,4025873:0,0,0 +[1,8790:-473656,4025873:0,0,0 +(1,8790:-473656,-710413:0,0,0 +(1,8790:-473656,-710413:0,0,0 +g1,8790:-473656,-710413 +) +g1,8790:-473656,-710413 +) +] +) +] +!23241 +}139 +Input:1201:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1202:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!200 +{140 +[1,8806:4262630,47279633:28320399,43253760,0 +(1,8806:4262630,4025873:0,0,0 +[1,8806:-473656,4025873:0,0,0 +(1,8806:-473656,-710413:0,0,0 +(1,8806:-473656,-644877:0,0,0 +k1,8806:-473656,-644877:-65536 +) +(1,8806:-473656,4736287:0,0,0 +k1,8806:-473656,4736287:5209943 ) -g1,9728:-473656,-710413 +g1,8806:-473656,-710413 ) ] ) -[1,9728:6630773,47279633:25952256,43253760,0 -[1,9728:6630773,4812305:25952256,786432,0 -(1,9728:6630773,4812305:25952256,505283,134348 -(1,9728:6630773,4812305:25952256,505283,134348 -g1,9728:3078558,4812305 -[1,9728:3078558,4812305:0,0,0 -(1,9728:3078558,2439708:0,1703936,0 -k1,9728:1358238,2439708:-1720320 -(1,8393:1358238,2439708:1720320,1703936,0 -(1,8393:1358238,2439708:1179648,16384,0 -r1,9728:2537886,2439708:1179648,16384,0 +[1,8806:6630773,47279633:25952256,43253760,0 +[1,8806:6630773,4812305:25952256,786432,0 +(1,8806:6630773,4812305:25952256,485622,134348 +(1,8806:6630773,4812305:25952256,485622,134348 +g1,8806:3078558,4812305 +[1,8806:3078558,4812305:0,0,0 +(1,8806:3078558,2439708:0,1703936,0 +k1,8806:1358238,2439708:-1720320 +(1,8606:1358238,2439708:1720320,1703936,0 +(1,8606:1358238,2439708:1179648,16384,0 +r1,8806:2537886,2439708:1179648,16384,0 ) -g1,8393:3062174,2439708 -(1,8393:3062174,2439708:16384,1703936,0 -[1,8393:3062174,2439708:25952256,1703936,0 -(1,8393:3062174,1915420:25952256,1179648,0 -(1,8393:3062174,1915420:16384,1179648,0 -r1,9728:3078558,1915420:16384,1179648,0 +g1,8606:3062174,2439708 +(1,8606:3062174,2439708:16384,1703936,0 +[1,8606:3062174,2439708:25952256,1703936,0 +(1,8606:3062174,1915420:25952256,1179648,0 +(1,8606:3062174,1915420:16384,1179648,0 +r1,8806:3078558,1915420:16384,1179648,0 ) -k1,8393:29014430,1915420:25935872 -g1,8393:29014430,1915420 +k1,8606:29014430,1915420:25935872 +g1,8606:29014430,1915420 ) ] ) ) ) ] -[1,9728:3078558,4812305:0,0,0 -(1,9728:3078558,2439708:0,1703936,0 -g1,9728:29030814,2439708 -g1,9728:36135244,2439708 -(1,8393:36135244,2439708:1720320,1703936,0 -(1,8393:36135244,2439708:16384,1703936,0 -[1,8393:36135244,2439708:25952256,1703936,0 -(1,8393:36135244,1915420:25952256,1179648,0 -(1,8393:36135244,1915420:16384,1179648,0 -r1,9728:36151628,1915420:16384,1179648,0 +[1,8806:3078558,4812305:0,0,0 +(1,8806:3078558,2439708:0,1703936,0 +g1,8806:29030814,2439708 +g1,8806:36135244,2439708 +(1,8606:36135244,2439708:1720320,1703936,0 +(1,8606:36135244,2439708:16384,1703936,0 +[1,8606:36135244,2439708:25952256,1703936,0 +(1,8606:36135244,1915420:25952256,1179648,0 +(1,8606:36135244,1915420:16384,1179648,0 +r1,8806:36151628,1915420:16384,1179648,0 ) -k1,8393:62087500,1915420:25935872 -g1,8393:62087500,1915420 +k1,8606:62087500,1915420:25935872 +g1,8606:62087500,1915420 ) ] ) -g1,8393:36675916,2439708 -(1,8393:36675916,2439708:1179648,16384,0 -r1,9728:37855564,2439708:1179648,16384,0 +g1,8606:36675916,2439708 +(1,8606:36675916,2439708:1179648,16384,0 +r1,8806:37855564,2439708:1179648,16384,0 ) ) -k1,9728:3078556,2439708:-34777008 +k1,8806:3078556,2439708:-34777008 ) ] -[1,9728:3078558,4812305:0,0,0 -(1,9728:3078558,49800853:0,16384,2228224 -k1,9728:1358238,49800853:-1720320 -(1,8393:1358238,49800853:1720320,16384,2228224 -(1,8393:1358238,49800853:1179648,16384,0 -r1,9728:2537886,49800853:1179648,16384,0 +[1,8806:3078558,4812305:0,0,0 +(1,8806:3078558,49800853:0,16384,2228224 +k1,8806:1358238,49800853:-1720320 +(1,8606:1358238,49800853:1720320,16384,2228224 +(1,8606:1358238,49800853:1179648,16384,0 +r1,8806:2537886,49800853:1179648,16384,0 ) -g1,8393:3062174,49800853 -(1,8393:3062174,52029077:16384,1703936,0 -[1,8393:3062174,52029077:25952256,1703936,0 -(1,8393:3062174,51504789:25952256,1179648,0 -(1,8393:3062174,51504789:16384,1179648,0 -r1,9728:3078558,51504789:16384,1179648,0 +g1,8606:3062174,49800853 +(1,8606:3062174,52029077:16384,1703936,0 +[1,8606:3062174,52029077:25952256,1703936,0 +(1,8606:3062174,51504789:25952256,1179648,0 +(1,8606:3062174,51504789:16384,1179648,0 +r1,8806:3078558,51504789:16384,1179648,0 ) -k1,8393:29014430,51504789:25935872 -g1,8393:29014430,51504789 +k1,8606:29014430,51504789:25935872 +g1,8606:29014430,51504789 ) ] ) ) ) ] -[1,9728:3078558,4812305:0,0,0 -(1,9728:3078558,49800853:0,16384,2228224 -g1,9728:29030814,49800853 -g1,9728:36135244,49800853 -(1,8393:36135244,49800853:1720320,16384,2228224 -(1,8393:36135244,52029077:16384,1703936,0 -[1,8393:36135244,52029077:25952256,1703936,0 -(1,8393:36135244,51504789:25952256,1179648,0 -(1,8393:36135244,51504789:16384,1179648,0 -r1,9728:36151628,51504789:16384,1179648,0 +[1,8806:3078558,4812305:0,0,0 +(1,8806:3078558,49800853:0,16384,2228224 +g1,8806:29030814,49800853 +g1,8806:36135244,49800853 +(1,8606:36135244,49800853:1720320,16384,2228224 +(1,8606:36135244,52029077:16384,1703936,0 +[1,8606:36135244,52029077:25952256,1703936,0 +(1,8606:36135244,51504789:25952256,1179648,0 +(1,8606:36135244,51504789:16384,1179648,0 +r1,8806:36151628,51504789:16384,1179648,0 +) +k1,8606:62087500,51504789:25935872 +g1,8606:62087500,51504789 +) +] +) +g1,8606:36675916,49800853 +(1,8606:36675916,49800853:1179648,16384,0 +r1,8806:37855564,49800853:1179648,16384,0 +) +) +k1,8806:3078556,49800853:-34777008 +) +] +g1,8806:6630773,4812305 +g1,8806:6630773,4812305 +g1,8806:9132937,4812305 +g1,8806:11356573,4812305 +k1,8806:31387653,4812305:20031080 +) +) +] +[1,8806:6630773,45706769:25952256,40108032,0 +(1,8806:6630773,45706769:25952256,40108032,0 +(1,8806:6630773,45706769:0,0,0 +g1,8806:6630773,45706769 +) +[1,8806:6630773,45706769:25952256,40108032,0 +(1,8789:6630773,6254097:25952256,505283,134348 +k1,8788:7518654,6254097:271843 +k1,8788:11221308,6254097:271844 +k1,8788:13643387,6254097:271843 +k1,8788:14724600,6254097:271843 +k1,8788:16797373,6254097:271844 +k1,8788:19598906,6254097:271843 +k1,8788:20328846,6254097:271843 +k1,8788:24410297,6254097:271843 +k1,8788:25452844,6254097:271844 +k1,8788:29484487,6254097:271843 +k1,8788:32583029,6254097:0 +) +(1,8789:6630773,7119177:25952256,505283,134348 +g1,8788:9916092,7119177 +k1,8789:32583030,7119177:21296580 +g1,8789:32583030,7119177 +) +(1,8791:6630773,7984257:25952256,513147,134348 +h1,8790:6630773,7984257:983040,0,0 +k1,8790:8249970,7984257:148569 +k1,8790:10910584,7984257:148619 +k1,8790:14153158,7984257:148619 +k1,8790:15869399,7984257:148620 +k1,8790:16373878,7984257:148619 +k1,8790:18224467,7984257:148619 +k1,8790:20659637,7984257:148619 +k1,8790:21569785,7984257:148620 +k1,8790:24268410,7984257:148619 +k1,8790:25822776,7984257:148619 +k1,8790:28103937,7984257:148619 +k1,8790:29846393,7984257:148620 +k1,8790:30888268,7984257:148619 +k1,8790:32583029,7984257:0 +) +(1,8791:6630773,8849337:25952256,505283,134348 +g1,8790:7591530,8849337 +g1,8790:10177580,8849337 +k1,8791:32583028,8849337:20430848 +g1,8791:32583028,8849337 +) +(1,8793:7202902,10238705:24807998,513147,134348 +(1,8791:7202902,10238705:983040,0,0 +g1,8791:8185942,10238705 +g1,8791:6875222,10238705 +g1,8791:6547542,10238705 +(1,8791:6547542,10238705:1310720,0,0 +k1,8791:7858262,10238705:1310720 +) +g1,8791:8185942,10238705 +) +k1,8792:8842039,10238705:186204 +k1,8792:10129248,10238705:186204 +k1,8792:11825402,10238705:186204 +k1,8792:13240406,10238705:186204 +k1,8792:14151439,10238705:186205 +k1,8792:14953681,10238705:186204 +k1,8792:15906001,10238705:186204 +k1,8792:16751497,10238705:186204 +k1,8792:17918775,10238705:186204 +k1,8792:21611810,10238705:186204 +k1,8792:22994701,10238705:186204 +k1,8792:24487038,10238705:186204 +k1,8792:26028528,10238705:186205 +k1,8792:26746229,10238705:186204 +k1,8792:27703136,10238705:186204 +k1,8792:30819455,10238705:186204 +k1,8792:32010900,10238705:0 +) +(1,8793:7202902,11103785:24807998,513147,134348 +k1,8792:9455526,11103785:226906 +k1,8792:11076382,11103785:226905 +k1,8792:11659148,11103785:226906 +k1,8792:13750553,11103785:226906 +k1,8792:15411386,11103785:226905 +k1,8792:19000944,11103785:226906 +k1,8792:22281828,11103785:226906 +k1,8792:24170727,11103785:226906 +k1,8792:26007852,11103785:226905 +k1,8792:27301029,11103785:226906 +k1,8792:28719380,11103785:226906 +k1,8792:29611475,11103785:226905 +k1,8792:30576972,11103785:226906 +k1,8792:32010900,11103785:0 +) +(1,8793:7202902,11968865:24807998,513147,134348 +k1,8792:8632111,11968865:144703 +k1,8792:11909436,11968865:144704 +k1,8792:13547705,11968865:144703 +k1,8792:15165002,11968865:144703 +k1,8792:17137504,11968865:144703 +k1,8792:18473653,11968865:144704 +k1,8792:21981008,11968865:144703 +k1,8792:23117271,11968865:144703 +k1,8792:27118113,11968865:144704 +k1,8792:30819455,11968865:144703 +k1,8792:32010900,11968865:0 +) +(1,8793:7202902,12833945:24807998,513147,134348 +k1,8792:9855603,12833945:221315 +k1,8792:10736210,12833945:221315 +k1,8792:13270291,12833945:221315 +k1,8792:16537719,12833945:221315 +k1,8792:18542924,12833945:221315 +k1,8792:19955684,12833945:221315 +k1,8792:21821297,12833945:221315 +k1,8792:23034172,12833945:221315 +k1,8792:26047321,12833945:221315 +k1,8792:28311393,12833945:221315 +k1,8792:32010900,12833945:0 +) +(1,8793:7202902,13699025:24807998,513147,126483 +g1,8792:9822376,13699025 +g1,8792:10704490,13699025 +g1,8792:12981210,13699025 +g1,8792:13711936,13699025 +g1,8792:16675474,13699025 +k1,8793:32010900,13699025:12653693 +g1,8793:32010900,13699025 +) +(1,8796:6630773,15088393:25952256,505283,134348 +h1,8795:6630773,15088393:983040,0,0 +k1,8795:8990486,15088393:179986 +k1,8795:11409181,15088393:179985 +k1,8795:14864001,15088393:179986 +k1,8795:16899310,15088393:179985 +k1,8795:19125330,15088393:179986 +k1,8795:20835581,15088393:179985 +k1,8795:22300073,15088393:179986 +k1,8795:23855659,15088393:179985 +k1,8795:25389619,15088393:179986 +k1,8795:29778326,15088393:179985 +k1,8795:31451222,15088393:179986 +k1,8795:32583029,15088393:0 +) +(1,8796:6630773,15953473:25952256,513147,134348 +k1,8795:8123771,15953473:209803 +k1,8795:10422207,15953473:209804 +k1,8795:12082977,15953473:209803 +k1,8795:14994174,15953473:209803 +k1,8795:16400665,15953473:209804 +k1,8795:18263941,15953473:209803 +k1,8795:20755052,15953473:209803 +k1,8795:21616283,15953473:209803 +k1,8795:22240919,15953473:209793 +k1,8795:24612099,15953473:209803 +k1,8795:25508065,15953473:209804 +k1,8795:26996475,15953473:209803 +k1,8795:27892440,15953473:209803 +k1,8795:29234051,15953473:209804 +k1,8795:31145824,15953473:209803 +k1,8796:32583029,15953473:0 +) +(1,8796:6630773,16818553:25952256,513147,134348 +k1,8795:8736394,16818553:239811 +k1,8795:10626402,16818553:239811 +k1,8795:11525505,16818553:239811 +k1,8795:14841577,16818553:239812 +k1,8795:16751245,16818553:239811 +k1,8795:18653049,16818553:239811 +k1,8795:20096101,16818553:239811 +k1,8795:20794009,16818553:239811 +k1,8795:23669678,16818553:239811 +k1,8795:26224877,16818553:239812 +k1,8795:27749194,16818553:239811 +k1,8795:30170699,16818553:239811 +k1,8795:31601955,16818553:239811 +k1,8796:32583029,16818553:0 +) +(1,8796:6630773,17683633:25952256,513147,134348 +k1,8795:9490536,17683633:305825 +k1,8795:10787920,17683633:305824 +k1,8795:15164841,17683633:305825 +k1,8795:17156251,17683633:305824 +k1,8795:18078114,17683633:305825 +k1,8795:19403023,17683633:305824 +k1,8795:23840893,17683633:305825 +k1,8795:24813873,17683633:305824 +k1,8795:25534434,17683633:305718 +k1,8795:28001636,17683633:305825 +k1,8795:29498905,17683633:305824 +k1,8795:32583029,17683633:0 +) +(1,8796:6630773,18548713:25952256,513147,134348 +k1,8795:10461100,18548713:252061 +k1,8795:11399324,18548713:252062 +k1,8795:12422088,18548713:252061 +k1,8795:15171727,18548713:252062 +k1,8795:15955285,18548713:252061 +k1,8795:18573197,18548713:252062 +k1,8795:19844343,18548713:252061 +k1,8795:21922893,18548713:252062 +k1,8795:22834246,18548713:252061 +k1,8795:24289549,18548713:252062 +k1,8795:26297320,18548713:252061 +k1,8795:29484084,18548713:252062 +k1,8795:31266411,18548713:252061 +k1,8796:32583029,18548713:0 +) +(1,8796:6630773,19413793:25952256,513147,134348 +k1,8795:10161343,19413793:281950 +k1,8795:11944067,19413793:281950 +k1,8795:13417463,19413793:281951 +k1,8795:15283418,19413793:281950 +k1,8795:20391439,19413793:281950 +k1,8795:21664949,19413793:281950 +k1,8795:26337157,19413793:281951 +k1,8795:27566758,19413793:281950 +k1,8795:30401335,19413793:281950 +k1,8795:32583029,19413793:0 +) +(1,8796:6630773,20278873:25952256,505283,7863 +g1,8795:8021447,20278873 +k1,8796:32583030,20278873:22659728 +g1,8796:32583030,20278873 +) +(1,8798:6630773,21143953:25952256,513147,134348 +h1,8797:6630773,21143953:983040,0,0 +k1,8797:9339704,21143953:235602 +k1,8797:10522957,21143953:235602 +k1,8797:12919936,21143953:235602 +k1,8797:14668763,21143953:235601 +k1,8797:15852016,21143953:235602 +k1,8797:19160601,21143953:235602 +k1,8797:19752063,21143953:235602 +k1,8797:21860684,21143953:235602 +k1,8797:23485649,21143953:235602 +k1,8797:24829465,21143953:235602 +k1,8797:25933418,21143953:235601 +k1,8797:27699286,21143953:235602 +k1,8797:28586316,21143953:235602 +k1,8797:29569684,21143953:235602 +k1,8797:32583029,21143953:0 +) +(1,8798:6630773,22009033:25952256,505283,134348 +k1,8797:8110303,22009033:195024 +k1,8797:9324412,22009033:195024 +k1,8797:12960731,22009033:195024 +k1,8797:14347200,22009033:195024 +k1,8797:16050863,22009033:195024 +k1,8797:21302645,22009033:195024 +k1,8797:22489229,22009033:195024 +k1,8797:24398019,22009033:195024 +k1,8797:25784488,22009033:195024 +k1,8797:27288266,22009033:195024 +k1,8797:28134718,22009033:195024 +k1,8797:30340387,22009033:195024 +k1,8797:32583029,22009033:0 +) +(1,8798:6630773,22874113:25952256,513147,126483 +k1,8797:9185038,22874113:207421 +k1,8797:10773304,22874113:207422 +k1,8797:11512222,22874113:207421 +k1,8797:13027086,22874113:207421 +k1,8797:14701203,22874113:207421 +k1,8797:15856276,22874113:207422 +k1,8797:18913202,22874113:207421 +k1,8797:21620822,22874113:207421 +k1,8797:23853961,22874113:207421 +k1,8797:27518407,22874113:207422 +k1,8797:30052356,22874113:207421 +k1,8797:31451222,22874113:207421 +k1,8797:32583029,22874113:0 +) +(1,8798:6630773,23739193:25952256,513147,134348 +k1,8797:8226640,23739193:206504 +k1,8797:10987737,23739193:206504 +k1,8797:13415911,23739193:206503 +k1,8797:14273843,23739193:206504 +k1,8797:18143810,23739193:206504 +k1,8797:19009606,23739193:206504 +k1,8797:22842872,23739193:206504 +k1,8797:24443326,23739193:206503 +k1,8797:27936461,23739193:206504 +k1,8797:28825850,23739193:206504 +k1,8797:32583029,23739193:0 +) +(1,8798:6630773,24604273:25952256,513147,126483 +k1,8797:7675064,24604273:270311 +k1,8797:10227993,24604273:270310 +k1,8797:11965000,24604273:270311 +k1,8797:12851349,24604273:270311 +k1,8797:14819041,24604273:270310 +k1,8797:16787390,24604273:270311 +k1,8797:17926053,24604273:270311 +k1,8797:19187924,24604273:270311 +k1,8797:20524505,24604273:270310 +k1,8797:23507351,24604273:270311 +k1,8797:24429090,24604273:270311 +k1,8797:28732486,24604273:270310 +k1,8797:31535764,24604273:270311 +k1,8797:32583029,24604273:0 +) +(1,8798:6630773,25469353:25952256,513147,134348 +k1,8797:7780728,25469353:202304 +k1,8797:10626755,25469353:202305 +k1,8797:13187700,25469353:202304 +k1,8797:15427519,25469353:202305 +k1,8797:18114293,25469353:202304 +k1,8797:18968026,25469353:202305 +k1,8797:19526190,25469353:202304 +k1,8797:21956064,25469353:202305 +k1,8797:26374299,25469353:202304 +k1,8797:27444956,25469353:202305 +k1,8797:28779722,25469353:202304 +k1,8797:30180681,25469353:202305 +k1,8797:31931601,25469353:202304 +k1,8797:32583029,25469353:0 +) +(1,8798:6630773,26334433:25952256,505283,126483 +g1,8797:8559497,26334433 +g1,8797:10640265,26334433 +k1,8798:32583028,26334433:18934660 +g1,8798:32583028,26334433 +) +(1,8800:6630773,27199513:25952256,513147,134348 +h1,8799:6630773,27199513:983040,0,0 +k1,8799:9053991,27199513:243491 +k1,8799:10603616,27199513:243492 +k1,8799:12202392,27199513:243491 +k1,8799:13061921,27199513:243491 +k1,8799:16568451,27199513:243492 +k1,8799:19162718,27199513:243491 +k1,8799:22482469,27199513:243491 +k1,8799:24222147,27199513:243491 +k1,8799:24997136,27199513:243492 +k1,8799:25892055,27199513:243491 +k1,8799:28183546,27199513:243491 +k1,8799:29711544,27199513:243492 +k1,8799:31086842,27199513:243491 +k1,8799:32583029,27199513:0 +) +(1,8800:6630773,28064593:25952256,513147,126483 +k1,8799:8200470,28064593:285191 +k1,8799:9354013,28064593:285191 +k1,8799:11254010,28064593:285190 +k1,8799:13399768,28064593:285191 +k1,8799:14336387,28064593:285191 +k1,8799:15369344,28064593:285191 +k1,8799:17614060,28064593:285190 +k1,8799:19264366,28064593:285191 +k1,8799:20015518,28064593:285191 +k1,8799:23104339,28064593:285191 +k1,8799:26484139,28064593:285190 +k1,8799:29373731,28064593:285191 +k1,8799:32583029,28064593:0 +) +(1,8800:6630773,28929673:25952256,505283,126483 +k1,8799:8209099,28929673:223041 +k1,8799:8963636,28929673:223040 +k1,8799:9838105,28929673:223041 +k1,8799:11776878,28929673:223040 +k1,8799:13380763,28929673:223041 +k1,8799:14888310,28929673:223041 +k1,8799:16819874,28929673:223040 +k1,8799:17574412,28929673:223041 +k1,8799:20718392,28929673:223040 +k1,8799:22951422,28929673:223041 +k1,8799:24193548,28929673:223041 +k1,8799:26247664,28929673:223040 +k1,8799:27662150,28929673:223041 +k1,8799:28241050,28929673:223040 +k1,8799:30976086,28929673:223041 +k1,8799:32583029,28929673:0 +) +(1,8800:6630773,29794753:25952256,513147,134348 +k1,8799:9851649,29794753:180005 +k1,8799:10979305,29794753:180005 +k1,8799:12336338,29794753:180006 +k1,8799:14224867,29794753:180005 +k1,8799:17592543,29794753:180005 +k1,8799:19312644,29794753:180005 +k1,8799:21201174,29794753:180006 +k1,8799:23391824,29794753:180005 +k1,8799:25592959,29794753:180005 +k1,8799:28138814,29794753:180005 +k1,8799:29337905,29794753:180006 +k1,8799:31298523,29794753:180005 +k1,8799:32583029,29794753:0 +) +(1,8800:6630773,30659833:25952256,505283,126483 +g1,8799:7934284,30659833 +g1,8799:8881279,30659833 +g1,8799:11445047,30659833 +g1,8799:14223773,30659833 +g1,8799:15184530,30659833 +g1,8799:16402844,30659833 +k1,8800:32583029,30659833:13968345 +g1,8800:32583029,30659833 +) +(1,8802:6630773,31524913:25952256,513147,134348 +h1,8801:6630773,31524913:983040,0,0 +k1,8801:8385546,31524913:293976 +k1,8801:10793713,31524913:293976 +k1,8801:13443053,31524913:293976 +k1,8801:14419913,31524913:293975 +k1,8801:16828080,31524913:293976 +k1,8801:19400743,31524913:293976 +k1,8801:20960875,31524913:293976 +k1,8801:21610711,31524913:293976 +k1,8801:23897637,31524913:293976 +k1,8801:25871956,31524913:293976 +k1,8801:26697428,31524913:293975 +k1,8801:29770131,31524913:293976 +k1,8801:30825635,31524913:293976 +k1,8801:31475471,31524913:293976 +k1,8802:32583029,31524913:0 +) +(1,8802:6630773,32389993:25952256,513147,134348 +k1,8801:9618307,32389993:236988 +k1,8801:10538180,32389993:236988 +k1,8801:11584539,32389993:236989 +k1,8801:13501870,32389993:236988 +k1,8801:15188514,32389993:236988 +k1,8801:16444587,32389993:236988 +k1,8801:18512652,32389993:236989 +k1,8801:21150224,32389993:236988 +k1,8801:22070097,32389993:236988 +k1,8801:24767962,32389993:236988 +k1,8801:25360811,32389993:236989 +k1,8801:27036314,32389993:236988 +k1,8801:29261009,32389993:236988 +k1,8801:32583029,32389993:0 +) +(1,8802:6630773,33255073:25952256,513147,134348 +k1,8801:9422432,33255073:199710 +k1,8801:10238180,33255073:199710 +k1,8801:12694295,33255073:199710 +k1,8801:13913090,33255073:199710 +k1,8801:15894724,33255073:199710 +k1,8801:16753726,33255073:199710 +k1,8801:17972521,33255073:199710 +k1,8801:21022391,33255073:199709 +k1,8801:22418788,33255073:199710 +k1,8801:24400422,33255073:199710 +k1,8801:25704414,33255073:199710 +k1,8801:26651890,33255073:199710 +k1,8801:28707580,33255073:199710 +k1,8801:29263150,33255073:199710 +k1,8801:31966991,33255073:199710 +k1,8801:32583029,33255073:0 +) +(1,8802:6630773,34120153:25952256,513147,134348 +k1,8801:7904083,34120153:254225 +k1,8801:13215066,34120153:254225 +k1,8801:14128584,34120153:254226 +k1,8801:15153512,34120153:254225 +k1,8801:18692401,34120153:254225 +k1,8801:19632788,34120153:254225 +k1,8801:21165620,34120153:254225 +k1,8801:22106007,34120153:254225 +k1,8801:22976271,34120153:254226 +k1,8801:24249581,34120153:254225 +k1,8801:27614800,34120153:254225 +k1,8801:29648327,34120153:254225 +k1,8801:32583029,34120153:0 +) +(1,8802:6630773,34985233:25952256,513147,134348 +k1,8801:8616715,34985233:234165 +k1,8801:11711527,34985233:234165 +k1,8801:13454987,34985233:234165 +k1,8801:14680712,34985233:234165 +k1,8801:17117542,34985233:234165 +k1,8801:18113235,34985233:234165 +k1,8801:19524428,34985233:234166 +k1,8801:20441478,34985233:234165 +k1,8801:23147661,34985233:234165 +k1,8801:26183490,34985233:234165 +k1,8801:27076947,34985233:234165 +k1,8801:29505257,34985233:234165 +k1,8801:31436804,34985233:234165 +k1,8801:32583029,34985233:0 +) +(1,8802:6630773,35850313:25952256,505283,134348 +k1,8801:9045884,35850313:258976 +k1,8801:11013385,35850313:258977 +k1,8801:13456676,35850313:258976 +k1,8801:16639213,35850313:258976 +k1,8801:19009105,35850313:258977 +k1,8801:21789251,35850313:258976 +k1,8801:22809755,35850313:258976 +k1,8801:24662568,35850313:258977 +k1,8801:26206705,35850313:258976 +k1,8801:27081719,35850313:258976 +k1,8801:29226167,35850313:258977 +k1,8801:29841003,35850313:258976 +k1,8801:32583029,35850313:0 +) +(1,8802:6630773,36715393:25952256,513147,134348 +g1,8801:9230586,36715393 +g1,8801:11756998,36715393 +g1,8801:12615519,36715393 +g1,8801:15682603,36715393 +g1,8801:18148722,36715393 +g1,8801:18703811,36715393 +g1,8801:21175829,36715393 +g1,8801:22982001,36715393 +k1,8802:32583029,36715393:6722031 +g1,8802:32583029,36715393 +) +(1,8804:6630773,37580473:25952256,513147,134348 +h1,8803:6630773,37580473:983040,0,0 +k1,8803:11395593,37580473:217277 +k1,8803:12631955,37580473:217277 +k1,8803:14958181,37580473:217277 +k1,8803:15834750,37580473:217277 +k1,8803:17571807,37580473:217277 +k1,8803:18494251,37580473:217277 +k1,8803:19327566,37580473:217277 +k1,8803:21146543,37580473:217277 +k1,8803:23234873,37580473:217277 +k1,8803:24598375,37580473:217277 +k1,8803:27684163,37580473:217277 +k1,8803:29671567,37580473:217277 +k1,8803:31160242,37580473:217277 +k1,8803:32583029,37580473:0 +) +(1,8804:6630773,38445553:25952256,513147,126483 +k1,8803:9493479,38445553:192114 +k1,8803:11540262,38445553:192114 +k1,8803:12541746,38445553:192114 +k1,8803:15511276,38445553:192114 +k1,8803:17473517,38445553:192114 +k1,8803:18857076,38445553:192114 +k1,8803:22462305,38445553:192114 +k1,8803:23305847,38445553:192114 +k1,8803:24404324,38445553:192114 +k1,8803:25247866,38445553:192114 +k1,8803:27333315,38445553:192114 +k1,8803:28544514,38445553:192114 +k1,8803:30235436,38445553:192114 +k1,8803:31086842,38445553:192114 +k1,8803:32583029,38445553:0 +) +(1,8804:6630773,39310633:25952256,513147,134348 +k1,8803:9271218,39310633:215613 +k1,8803:10505917,39310633:215614 +k1,8803:13571691,39310633:215613 +k1,8803:15058702,39310633:215613 +k1,8803:17589703,39310633:215614 +k1,8803:20567659,39310633:215613 +k1,8803:22420362,39310633:215613 +k1,8803:24128885,39310633:215613 +k1,8803:25363584,39310633:215614 +k1,8803:26946278,39310633:215613 +k1,8803:27693388,39310633:215613 +k1,8803:30137881,39310633:215614 +k1,8803:30981329,39310633:215613 +k1,8803:32583029,39310633:0 +) +(1,8804:6630773,40175713:25952256,513147,134348 +k1,8803:8680336,40175713:178510 +k1,8803:9471608,40175713:178510 +k1,8803:10669203,40175713:178510 +k1,8803:12201686,40175713:178509 +k1,8803:14703447,40175713:178510 +k1,8803:15750309,40175713:178510 +k1,8803:17130749,40175713:178510 +k1,8803:18118629,40175713:178510 +k1,8803:19989279,40175713:178510 +k1,8803:21437876,40175713:178509 +k1,8803:22275678,40175713:178510 +k1,8803:28617849,40175713:178510 +k1,8803:31541007,40175713:178510 +k1,8803:32583029,40175713:0 +) +(1,8804:6630773,41040793:25952256,505283,126483 +k1,8803:9704888,41040793:239028 +k1,8803:10812267,41040793:239027 +k1,8803:12388229,41040793:239028 +k1,8803:14449158,41040793:239028 +k1,8803:15707271,41040793:239028 +k1,8803:17626641,41040793:239027 +k1,8803:20644396,41040793:239028 +k1,8803:21644952,41040793:239028 +k1,8803:25941969,41040793:239028 +k1,8803:29982739,41040793:239027 +k1,8803:31714677,41040793:239028 +k1,8803:32583029,41040793:0 +) +(1,8804:6630773,41905873:25952256,505283,134348 +k1,8803:8688663,41905873:164555 +k1,8803:9872303,41905873:164555 +k1,8803:12369283,41905873:164554 +k1,8803:14030025,41905873:164555 +k1,8803:17380940,41905873:164555 +k1,8803:20808533,41905873:164555 +k1,8803:21328948,41905873:164555 +k1,8803:23486453,41905873:164555 +k1,8803:25505021,41905873:164554 +k1,8803:28273977,41905873:164555 +k1,8803:31215948,41905873:164555 +k1,8803:32583029,41905873:0 +) +(1,8804:6630773,42770953:25952256,513147,134348 +k1,8803:7341879,42770953:179609 +k1,8803:9219527,42770953:179610 +k1,8803:11091276,42770953:179609 +k1,8803:12979410,42770953:179610 +k1,8803:15169664,42770953:179609 +k1,8803:17479849,42770953:179610 +k1,8803:18015318,42770953:179609 +k1,8803:19558076,42770953:179609 +k1,8803:20365521,42770953:179610 +k1,8803:22038696,42770953:179609 +k1,8803:23915688,42770953:179610 +k1,8803:24553394,42770953:179609 +k1,8803:25264501,42770953:179610 +k1,8803:28749091,42770953:179609 +k1,8803:30263669,42770953:179610 +k1,8803:31094706,42770953:179609 +k1,8803:32583029,42770953:0 +) +(1,8804:6630773,43636033:25952256,513147,134348 +k1,8803:7529271,43636033:136970 +k1,8803:9847935,43636033:136970 +k1,8803:10450866,43636033:136970 +k1,8803:13350180,43636033:136971 +k1,8803:15784842,43636033:136970 +k1,8803:16581104,43636033:136970 +k1,8803:18426598,43636033:136970 +k1,8803:19892638,43636033:136970 +k1,8803:20681036,43636033:136970 +k1,8803:25491379,43636033:136971 +k1,8803:26311234,43636033:136970 +k1,8803:27688145,43636033:136970 +k1,8803:30874505,43636033:136970 +k1,8803:32583029,43636033:0 +) +(1,8804:6630773,44501113:25952256,513147,134348 +k1,8803:8864240,44501113:222822 +k1,8803:10078622,44501113:222822 +k1,8803:12588652,44501113:222823 +k1,8803:13830559,44501113:222822 +k1,8803:16233108,44501113:222822 +k1,8803:18116612,44501113:222822 +k1,8803:19581997,44501113:222822 +k1,8803:20752470,44501113:222822 +k1,8803:23965045,44501113:222823 +k1,8803:25781703,44501113:222822 +k1,8803:28659388,44501113:222822 +k1,8803:30073655,44501113:222822 +k1,8803:32583029,44501113:0 +) +] +(1,8806:32583029,45706769:0,0,0 +g1,8806:32583029,45706769 ) -k1,8393:62087500,51504789:25935872 -g1,8393:62087500,51504789 ) ] +(1,8806:6630773,47279633:25952256,0,0 +h1,8806:6630773,47279633:25952256,0,0 ) -g1,8393:36675916,49800853 -(1,8393:36675916,49800853:1179648,16384,0 -r1,9728:37855564,49800853:1179648,16384,0 +] +(1,8806:4262630,4025873:0,0,0 +[1,8806:-473656,4025873:0,0,0 +(1,8806:-473656,-710413:0,0,0 +(1,8806:-473656,-710413:0,0,0 +g1,8806:-473656,-710413 ) +g1,8806:-473656,-710413 ) -k1,9728:3078556,49800853:-34777008 +] ) ] -g1,9728:6630773,4812305 -k1,9728:21643106,4812305:13816956 -g1,9728:23265777,4812305 -g1,9728:24088253,4812305 -g1,9728:28572226,4812305 -g1,9728:29981905,4812305 -) -) -] -[1,9728:6630773,45706769:25952256,40108032,0 -(1,9728:6630773,45706769:25952256,40108032,0 -(1,9728:6630773,45706769:0,0,0 -g1,9728:6630773,45706769 -) -[1,9728:6630773,45706769:25952256,40108032,0 -v1,9642:6630773,6254097:0,393216,0 -(1,9692:6630773,27812160:25952256,21951279,196608 -g1,9692:6630773,27812160 -g1,9692:6630773,27812160 -g1,9692:6434165,27812160 -(1,9692:6434165,27812160:0,21951279,196608 -r1,9728:32779637,27812160:26345472,22147887,196608 -k1,9692:6434165,27812160:-26345472 -) -(1,9692:6434165,27812160:26345472,21951279,196608 -[1,9692:6630773,27812160:25952256,21754671,0 -(1,9644:6630773,6461715:25952256,404226,101187 -(1,9643:6630773,6461715:0,0,0 -g1,9643:6630773,6461715 -g1,9643:6630773,6461715 -g1,9643:6303093,6461715 -(1,9643:6303093,6461715:0,0,0 -) -g1,9643:6630773,6461715 -) -g1,9644:7263065,6461715 -g1,9644:8211503,6461715 -g1,9644:11372960,6461715 -g1,9644:12005252,6461715 -g1,9644:12953689,6461715 -g1,9644:14850563,6461715 -k1,9644:14850563,6461715:23593 -h1,9644:16771030,6461715:0,0,0 -k1,9644:32583029,6461715:15811999 -g1,9644:32583029,6461715 -) -(1,9645:6630773,7127893:25952256,410518,107478 -h1,9645:6630773,7127893:0,0,0 -g1,9645:8527647,7127893 -g1,9645:9476084,7127893 -g1,9645:14218270,7127893 -g1,9645:14850562,7127893 -g1,9645:16115145,7127893 -h1,9645:16431291,7127893:0,0,0 -k1,9645:32583029,7127893:16151738 -g1,9645:32583029,7127893 -) -(1,9646:6630773,7794071:25952256,404226,76021 -h1,9646:6630773,7794071:0,0,0 -g1,9646:6946919,7794071 -g1,9646:7263065,7794071 -g1,9646:8843794,7794071 -g1,9646:9792232,7794071 -h1,9646:11689107,7794071:0,0,0 -k1,9646:32583029,7794071:20893922 -g1,9646:32583029,7794071 -) -(1,9647:6630773,8460249:25952256,404226,101187 -h1,9647:6630773,8460249:0,0,0 -g1,9647:6946919,8460249 -g1,9647:7263065,8460249 -k1,9647:7263065,8460249:0 -h1,9647:9792230,8460249:0,0,0 -k1,9647:32583030,8460249:22790800 -g1,9647:32583030,8460249 -) -(1,9648:6630773,9126427:25952256,404226,76021 -h1,9648:6630773,9126427:0,0,0 -h1,9648:6946919,9126427:0,0,0 -k1,9648:32583029,9126427:25636110 -g1,9648:32583029,9126427 -) -(1,9656:6630773,9792605:25952256,404226,76021 -(1,9650:6630773,9792605:0,0,0 -g1,9650:6630773,9792605 -g1,9650:6630773,9792605 -g1,9650:6303093,9792605 -(1,9650:6303093,9792605:0,0,0 -) -g1,9650:6630773,9792605 -) -g1,9656:7579210,9792605 -g1,9656:8843793,9792605 -h1,9656:9159939,9792605:0,0,0 -k1,9656:32583029,9792605:23423090 -g1,9656:32583029,9792605 -) -(1,9656:6630773,10458783:25952256,404226,76021 -h1,9656:6630773,10458783:0,0,0 -g1,9656:7579210,10458783 -g1,9656:8843793,10458783 -g1,9656:9159939,10458783 -g1,9656:9792231,10458783 -h1,9656:10424522,10458783:0,0,0 -k1,9656:32583030,10458783:22158508 -g1,9656:32583030,10458783 -) -(1,9656:6630773,11124961:25952256,404226,76021 -h1,9656:6630773,11124961:0,0,0 -g1,9656:7579210,11124961 -g1,9656:8843793,11124961 -g1,9656:9159939,11124961 -g1,9656:9792231,11124961 -g1,9656:10740668,11124961 -g1,9656:11056814,11124961 -h1,9656:11372960,11124961:0,0,0 -k1,9656:32583028,11124961:21210068 -g1,9656:32583028,11124961 -) -(1,9656:6630773,11791139:25952256,404226,76021 -h1,9656:6630773,11791139:0,0,0 -g1,9656:7579210,11791139 -g1,9656:8843793,11791139 -g1,9656:9159939,11791139 -g1,9656:9792231,11791139 -g1,9656:10740668,11791139 -g1,9656:11056814,11791139 -g1,9656:11689106,11791139 -h1,9656:12321397,11791139:0,0,0 -k1,9656:32583029,11791139:20261632 -g1,9656:32583029,11791139 -) -(1,9656:6630773,12457317:25952256,404226,76021 -h1,9656:6630773,12457317:0,0,0 -g1,9656:7579210,12457317 -g1,9656:8843793,12457317 -g1,9656:9159939,12457317 -g1,9656:9792231,12457317 -g1,9656:10740668,12457317 -g1,9656:11056814,12457317 -g1,9656:11689106,12457317 -g1,9656:12637543,12457317 -h1,9656:13269834,12457317:0,0,0 -k1,9656:32583030,12457317:19313196 -g1,9656:32583030,12457317 -) -(1,9658:6630773,13778855:25952256,404226,6290 -(1,9657:6630773,13778855:0,0,0 -g1,9657:6630773,13778855 -g1,9657:6630773,13778855 -g1,9657:6303093,13778855 -(1,9657:6303093,13778855:0,0,0 -) -g1,9657:6630773,13778855 -) -h1,9658:6946919,13778855:0,0,0 -k1,9658:32583029,13778855:25636110 -g1,9658:32583029,13778855 -) -(1,9662:6630773,14445033:25952256,404226,76021 -(1,9660:6630773,14445033:0,0,0 -g1,9660:6630773,14445033 -g1,9660:6630773,14445033 -g1,9660:6303093,14445033 -(1,9660:6303093,14445033:0,0,0 -) -g1,9660:6630773,14445033 -) -g1,9662:7579210,14445033 -g1,9662:8843793,14445033 -g1,9662:9159939,14445033 -g1,9662:9792231,14445033 -g1,9662:10740668,14445033 -g1,9662:11056814,14445033 -g1,9662:11689106,14445033 -g1,9662:12637543,14445033 -h1,9662:13269834,14445033:0,0,0 -k1,9662:32583030,14445033:19313196 -g1,9662:32583030,14445033 -) -(1,9664:6630773,15766571:25952256,410518,107478 -(1,9663:6630773,15766571:0,0,0 -g1,9663:6630773,15766571 -g1,9663:6630773,15766571 -g1,9663:6303093,15766571 -(1,9663:6303093,15766571:0,0,0 -) -g1,9663:6630773,15766571 -) -g1,9664:7263065,15766571 -g1,9664:8843794,15766571 -g1,9664:11056814,15766571 -g1,9664:12005251,15766571 -g1,9664:12953688,15766571 -g1,9664:14850562,15766571 -g1,9664:17695873,15766571 -g1,9664:18328165,15766571 -g1,9664:19908894,15766571 -g1,9664:22121914,15766571 -k1,9664:22121914,15766571:23593 -h1,9664:24042381,15766571:0,0,0 -k1,9664:32583029,15766571:8540648 -g1,9664:32583029,15766571 -) -(1,9665:6630773,16432749:25952256,404226,107478 -h1,9665:6630773,16432749:0,0,0 -g1,9665:7263065,16432749 -g1,9665:8211503,16432749 -k1,9665:8211503,16432749:0 -h1,9665:13902126,16432749:0,0,0 -k1,9665:32583030,16432749:18680904 -g1,9665:32583030,16432749 -) -(1,9666:6630773,17098927:25952256,410518,107478 -h1,9666:6630773,17098927:0,0,0 -g1,9666:8527647,17098927 -g1,9666:9476084,17098927 -g1,9666:14218270,17098927 -g1,9666:14850562,17098927 -g1,9666:16115145,17098927 -h1,9666:16431291,17098927:0,0,0 -k1,9666:32583029,17098927:16151738 -g1,9666:32583029,17098927 -) -(1,9667:6630773,17765105:25952256,404226,76021 -h1,9667:6630773,17765105:0,0,0 -g1,9667:6946919,17765105 -g1,9667:7263065,17765105 -g1,9667:8843794,17765105 -g1,9667:9792232,17765105 -h1,9667:11689107,17765105:0,0,0 -k1,9667:32583029,17765105:20893922 -g1,9667:32583029,17765105 -) -(1,9668:6630773,18431283:25952256,404226,101187 -h1,9668:6630773,18431283:0,0,0 -g1,9668:6946919,18431283 -g1,9668:7263065,18431283 -k1,9668:7263065,18431283:0 -h1,9668:9792230,18431283:0,0,0 -k1,9668:32583030,18431283:22790800 -g1,9668:32583030,18431283 -) -(1,9669:6630773,19097461:25952256,404226,76021 -h1,9669:6630773,19097461:0,0,0 -h1,9669:6946919,19097461:0,0,0 -k1,9669:32583029,19097461:25636110 -g1,9669:32583029,19097461 -) -(1,9677:6630773,19763639:25952256,404226,76021 -(1,9671:6630773,19763639:0,0,0 -g1,9671:6630773,19763639 -g1,9671:6630773,19763639 -g1,9671:6303093,19763639 -(1,9671:6303093,19763639:0,0,0 -) -g1,9671:6630773,19763639 -) -g1,9677:7579210,19763639 -g1,9677:8843793,19763639 -g1,9677:9476085,19763639 -g1,9677:10108377,19763639 -g1,9677:10740669,19763639 -g1,9677:11372961,19763639 -h1,9677:11689107,19763639:0,0,0 -k1,9677:32583029,19763639:20893922 -g1,9677:32583029,19763639 -) -(1,9677:6630773,20429817:25952256,404226,76021 -h1,9677:6630773,20429817:0,0,0 -g1,9677:7579210,20429817 -g1,9677:8843793,20429817 -g1,9677:9159939,20429817 -g1,9677:9792231,20429817 -g1,9677:10740668,20429817 -g1,9677:11056814,20429817 -g1,9677:11689106,20429817 -g1,9677:12005252,20429817 -g1,9677:12637544,20429817 -g1,9677:12953690,20429817 -h1,9677:13269836,20429817:0,0,0 -k1,9677:32583028,20429817:19313192 -g1,9677:32583028,20429817 -) -(1,9677:6630773,21095995:25952256,404226,76021 -h1,9677:6630773,21095995:0,0,0 -g1,9677:7579210,21095995 -g1,9677:8843793,21095995 -g1,9677:9159939,21095995 -g1,9677:9792231,21095995 -g1,9677:10740668,21095995 -g1,9677:11056814,21095995 -g1,9677:11689106,21095995 -g1,9677:12005252,21095995 -g1,9677:12637544,21095995 -g1,9677:12953690,21095995 -h1,9677:13269836,21095995:0,0,0 -k1,9677:32583028,21095995:19313192 -g1,9677:32583028,21095995 -) -(1,9677:6630773,21762173:25952256,404226,76021 -h1,9677:6630773,21762173:0,0,0 -g1,9677:7579210,21762173 -g1,9677:8843793,21762173 -g1,9677:9159939,21762173 -g1,9677:9792231,21762173 -g1,9677:10740668,21762173 -g1,9677:11056814,21762173 -g1,9677:11689106,21762173 -g1,9677:12637543,21762173 -g1,9677:12953689,21762173 -h1,9677:13269835,21762173:0,0,0 -k1,9677:32583029,21762173:19313194 -g1,9677:32583029,21762173 -) -(1,9677:6630773,22428351:25952256,404226,76021 -h1,9677:6630773,22428351:0,0,0 -g1,9677:7579210,22428351 -g1,9677:8843793,22428351 -g1,9677:9159939,22428351 -g1,9677:9792231,22428351 -g1,9677:10740668,22428351 -g1,9677:11056814,22428351 -g1,9677:11689106,22428351 -g1,9677:12637543,22428351 -h1,9677:13269834,22428351:0,0,0 -k1,9677:32583030,22428351:19313196 -g1,9677:32583030,22428351 -) -(1,9679:6630773,23749889:25952256,404226,6290 -(1,9678:6630773,23749889:0,0,0 -g1,9678:6630773,23749889 -g1,9678:6630773,23749889 -g1,9678:6303093,23749889 -(1,9678:6303093,23749889:0,0,0 -) -g1,9678:6630773,23749889 -) -h1,9679:6946919,23749889:0,0,0 -k1,9679:32583029,23749889:25636110 -g1,9679:32583029,23749889 -) -(1,9683:6630773,24416067:25952256,404226,76021 -(1,9681:6630773,24416067:0,0,0 -g1,9681:6630773,24416067 -g1,9681:6630773,24416067 -g1,9681:6303093,24416067 -(1,9681:6303093,24416067:0,0,0 -) -g1,9681:6630773,24416067 -) -g1,9683:7579210,24416067 -g1,9683:8843793,24416067 -g1,9683:9159939,24416067 -g1,9683:9792231,24416067 -g1,9683:10740668,24416067 -g1,9683:11056814,24416067 -g1,9683:11689106,24416067 -g1,9683:12637543,24416067 -h1,9683:13269834,24416067:0,0,0 -k1,9683:32583030,24416067:19313196 -g1,9683:32583030,24416067 -) -(1,9685:6630773,25737605:25952256,410518,101187 -(1,9684:6630773,25737605:0,0,0 -g1,9684:6630773,25737605 -g1,9684:6630773,25737605 -g1,9684:6303093,25737605 -(1,9684:6303093,25737605:0,0,0 -) -g1,9684:6630773,25737605 -) -g1,9685:7263065,25737605 -g1,9685:7895357,25737605 -g1,9685:11372960,25737605 -g1,9685:14850563,25737605 -g1,9685:15799000,25737605 -g1,9685:18644311,25737605 -g1,9685:19908894,25737605 -k1,9685:19908894,25737605:14156 -h1,9685:22136070,25737605:0,0,0 -k1,9685:32583029,25737605:10446959 -g1,9685:32583029,25737605 -) -(1,9686:6630773,26403783:25952256,404226,6290 -h1,9686:6630773,26403783:0,0,0 -g1,9686:7263065,26403783 -g1,9686:8211503,26403783 -h1,9686:9159941,26403783:0,0,0 -k1,9686:32583029,26403783:23423088 -g1,9686:32583029,26403783 -) -(1,9687:6630773,27069961:25952256,404226,6290 -h1,9687:6630773,27069961:0,0,0 -h1,9687:6946919,27069961:0,0,0 -k1,9687:32583029,27069961:25636110 -g1,9687:32583029,27069961 -) -(1,9691:6630773,27736139:25952256,404226,76021 -(1,9689:6630773,27736139:0,0,0 -g1,9689:6630773,27736139 -g1,9689:6630773,27736139 -g1,9689:6303093,27736139 -(1,9689:6303093,27736139:0,0,0 -) -g1,9689:6630773,27736139 -) -g1,9691:7579210,27736139 -g1,9691:8843793,27736139 -g1,9691:9159939,27736139 -g1,9691:9792231,27736139 -g1,9691:10740668,27736139 -g1,9691:11056814,27736139 -g1,9691:11689106,27736139 -g1,9691:12637543,27736139 -h1,9691:13269834,27736139:0,0,0 -k1,9691:32583030,27736139:19313196 -g1,9691:32583030,27736139 -) -] -) -g1,9692:32583029,27812160 -g1,9692:6630773,27812160 -g1,9692:6630773,27812160 -g1,9692:32583029,27812160 -g1,9692:32583029,27812160 -) -h1,9692:6630773,28008768:0,0,0 -v1,9696:6630773,29898832:0,393216,0 -(1,9697:6630773,32952747:25952256,3447131,0 -g1,9697:6630773,32952747 -g1,9697:6303093,32952747 -r1,9728:6401397,32952747:98304,3447131,0 -g1,9697:6600626,32952747 -g1,9697:6797234,32952747 -[1,9697:6797234,32952747:25785795,3447131,0 -(1,9697:6797234,30293935:25785795,788319,218313 -(1,9696:6797234,30293935:0,788319,218313 -r1,9728:7917113,30293935:1119879,1006632,218313 -k1,9696:6797234,30293935:-1119879 -) -(1,9696:6797234,30293935:1119879,788319,218313 -) -k1,9696:8116234,30293935:199121 -k1,9696:8443914,30293935:327680 -k1,9696:9270871,30293935:199122 -k1,9696:10489077,30293935:199121 -k1,9696:13349616,30293935:199122 -k1,9696:15404061,30293935:199121 -k1,9696:15816175,30293935:199122 -k1,9696:18174052,30293935:199121 -k1,9696:19392259,30293935:199122 -k1,9696:23324966,30293935:199121 -k1,9696:26035428,30293935:199122 -k1,9696:26920711,30293935:199121 -(1,9696:26920711,30293935:0,452978,115847 -r1,9728:27278977,30293935:358266,568825,115847 -k1,9696:26920711,30293935:-358266 -) -(1,9696:26920711,30293935:358266,452978,115847 -k1,9696:26920711,30293935:3277 -h1,9696:27275700,30293935:0,411205,112570 -) -k1,9696:27651769,30293935:199122 -k1,9696:29736361,30293935:199121 -k1,9696:30466980,30293935:199122 -k1,9696:31021961,30293935:199121 -k1,9697:32583029,30293935:0 -) -(1,9697:6797234,31135423:25785795,513147,138281 -k1,9696:8479560,31135423:252986 -k1,9696:9825030,31135423:252985 -k1,9696:12460905,31135423:252986 -k1,9696:14281511,31135423:252985 -k1,9696:15553582,31135423:252986 -k1,9696:20129977,31135423:252985 -k1,9696:23173486,31135423:252986 -k1,9696:24085763,31135423:252985 -k1,9696:26074142,31135423:252986 -$1,9696:26074142,31135423 -k1,9696:26659169,31135423:109236 -k1,9696:27320873,31135423:109236 -k1,9696:28032385,31135423:109236 -k1,9696:28588576,31135423:109236 -$1,9696:29243936,31135423 -k1,9696:29496921,31135423:252985 -k1,9696:30401335,31135423:252986 -k1,9696:32583029,31135423:0 -) -(1,9697:6797234,31976911:25785795,505283,134348 -k1,9696:9303747,31976911:199646 -k1,9696:11252550,31976911:199647 -k1,9696:13636511,31976911:199646 -k1,9696:16905863,31976911:199646 -k1,9696:18308751,31976911:199647 -k1,9696:21298920,31976911:199646 -k1,9696:22602849,31976911:199647 -k1,9696:26250344,31976911:199646 -k1,9696:28165723,31976911:199646 -k1,9696:29861557,31976911:199647 -k1,9696:31931601,31976911:199646 -k1,9696:32583029,31976911:0 -) -(1,9697:6797234,32818399:25785795,513147,134348 -g1,9696:8408764,32818399 -g1,9696:9680162,32818399 -g1,9696:10294234,32818399 -g1,9696:12505418,32818399 -g1,9696:14406617,32818399 -g1,9696:16674162,32818399 -g1,9696:17524819,32818399 -g1,9696:18471814,32818399 -g1,9696:20357940,32818399 -g1,9696:23537746,32818399 -g1,9696:27439104,32818399 -k1,9697:32583029,32818399:3483243 -g1,9697:32583029,32818399 -) -] -g1,9697:32583029,32952747 -) -h1,9697:6630773,32952747:0,0,0 -v1,9699:6630773,34318523:0,393216,0 -(1,9703:6630773,40767960:25952256,6842653,0 -g1,9703:6630773,40767960 -g1,9703:6303093,40767960 -r1,9728:6401397,40767960:98304,6842653,0 -g1,9703:6600626,40767960 -g1,9703:6797234,40767960 -[1,9703:6797234,40767960:25785795,6842653,0 -(1,9701:6797234,34751061:25785795,825754,196608 -(1,9699:6797234,34751061:0,825754,196608 -r1,9728:7890375,34751061:1093141,1022362,196608 -k1,9699:6797234,34751061:-1093141 -) -(1,9699:6797234,34751061:1093141,825754,196608 -) -k1,9699:8189820,34751061:299445 -k1,9699:9916038,34751061:327680 -k1,9699:9916038,34751061:0 -k1,9700:11762133,34751061:299445 -k1,9700:12674339,34751061:299444 -k1,9700:13992869,34751061:299445 -k1,9700:16465488,34751061:299445 -k1,9700:18332554,34751061:299445 -k1,9700:19651083,34751061:299444 -k1,9700:21805852,34751061:299445 -k1,9700:25270686,34751061:299445 -k1,9700:26761576,34751061:299445 -k1,9700:27967383,34751061:299444 -k1,9700:28918256,34751061:299445 -k1,9700:32583029,34751061:0 -) -(1,9701:6797234,35592549:25785795,513147,102891 -k1,9700:9027222,35592549:311094 -k1,9700:10357402,35592549:311095 -k1,9700:13447223,35592549:311094 -k1,9700:15438660,35592549:311094 -k1,9700:17775473,35592549:311095 -k1,9700:19654188,35592549:311094 -k1,9700:20581320,35592549:311094 -k1,9700:22344037,35592549:311095 -k1,9700:24195882,35592549:311094 -k1,9700:25134811,35592549:311094 -k1,9700:26464991,35592549:311095 -k1,9700:28272272,35592549:311094 -k1,9700:30554034,35592549:311094 -k1,9701:32583029,35592549:0 -) -(1,9701:6797234,36434037:25785795,505283,126483 -(1,9700:6797234,36434037:0,452978,115847 -r1,9728:9265771,36434037:2468537,568825,115847 -k1,9700:6797234,36434037:-2468537 -) -(1,9700:6797234,36434037:2468537,452978,115847 -k1,9700:6797234,36434037:3277 -h1,9700:9262494,36434037:0,411205,112570 -) -k1,9700:9472981,36434037:207210 -k1,9700:10211688,36434037:207210 -k1,9700:11932124,36434037:207210 -k1,9700:14149324,36434037:207211 -k1,9700:15375619,36434037:207210 -k1,9700:16925006,36434037:207210 -k1,9700:17783644,36434037:207210 -k1,9700:19706587,36434037:207210 -k1,9700:23971786,36434037:207210 -k1,9700:26189642,36434037:207211 -k1,9700:28613280,36434037:207210 -k1,9700:30074194,36434037:207210 -k1,9700:31385686,36434037:207210 -k1,9700:32583029,36434037:0 -) -(1,9701:6797234,37275525:25785795,505283,126483 -k1,9700:10210657,37275525:186430 -(1,9700:10210657,37275525:0,452978,115847 -r1,9728:12679194,37275525:2468537,568825,115847 -k1,9700:10210657,37275525:-2468537 -) -(1,9700:10210657,37275525:2468537,452978,115847 -k1,9700:10210657,37275525:3277 -h1,9700:12675917,37275525:0,411205,112570 -) -k1,9700:12865624,37275525:186430 -k1,9700:16568717,37275525:186431 -k1,9700:17406575,37275525:186430 -k1,9700:20395980,37275525:186430 -k1,9700:22284380,37275525:186430 -k1,9700:25486122,37275525:186431 -k1,9700:27166118,37275525:186430 -k1,9700:28038710,37275525:186430 -(1,9700:28038710,37275525:0,452978,115847 -r1,9728:28396976,37275525:358266,568825,115847 -k1,9700:28038710,37275525:-358266 -) -(1,9700:28038710,37275525:358266,452978,115847 -k1,9700:28038710,37275525:3277 -h1,9700:28393699,37275525:0,411205,112570 -) -k1,9700:28757076,37275525:186430 -k1,9700:29626392,37275525:186431 -k1,9700:30930866,37275525:186430 -k1,9700:32583029,37275525:0 -) -(1,9701:6797234,38117013:25785795,513147,126483 -g1,9700:7655755,38117013 -g1,9700:8874069,38117013 -g1,9700:10743155,38117013 -g1,9700:12435950,38117013 -g1,9700:13321341,38117013 -(1,9700:13321341,38117013:0,452978,122846 -r1,9728:20010421,38117013:6689080,575824,122846 -k1,9700:13321341,38117013:-6689080 -) -(1,9700:13321341,38117013:6689080,452978,122846 -g1,9700:18600296,38117013 -g1,9700:19303720,38117013 -h1,9700:20007144,38117013:0,411205,112570 -) -g1,9700:20383320,38117013 -g1,9700:21344077,38117013 -k1,9701:32583029,38117013:7508643 -g1,9701:32583029,38117013 -) -(1,9703:6797234,38958501:25785795,505283,134348 -h1,9702:6797234,38958501:983040,0,0 -k1,9702:8680789,38958501:272680 -k1,9702:10156710,38958501:272680 -k1,9702:11970141,38958501:272680 -k1,9702:13261907,38958501:272681 -k1,9702:15030774,38958501:272680 -k1,9702:18295173,38958501:272680 -k1,9702:20698428,38958501:272680 -k1,9702:21780478,38958501:272680 -k1,9702:23990402,38958501:272680 -k1,9702:24945968,38958501:272681 -k1,9702:28292942,38958501:272680 -k1,9702:29637791,38958501:272680 -k1,9702:30929556,38958501:272680 -k1,9702:32583029,38958501:0 -) -(1,9703:6797234,39799989:25785795,513147,134348 -k1,9702:9915219,39799989:133475 -k1,9702:11152975,39799989:133474 -k1,9702:12034216,39799989:133475 -k1,9702:13680917,39799989:133475 -k1,9702:14762043,39799989:133475 -k1,9702:18217537,39799989:133474 -k1,9702:22322494,39799989:133475 -k1,9702:24698611,39799989:133475 -k1,9702:26328273,39799989:133475 -k1,9702:27746253,39799989:133474 -k1,9702:29372638,39799989:133475 -k1,9702:30572384,39799989:133475 -k1,9702:32583029,39799989:0 -) -(1,9703:6797234,40641477:25785795,505283,126483 -g1,9702:8015548,40641477 -g1,9702:11053797,40641477 -k1,9703:32583029,40641477:19182388 -g1,9703:32583029,40641477 -) -] -g1,9703:32583029,40767960 -) -h1,9703:6630773,40767960:0,0,0 -(1,9706:6630773,42133736:25952256,505283,126483 -h1,9705:6630773,42133736:983040,0,0 -k1,9705:8511971,42133736:270323 -k1,9705:9801378,42133736:270322 -k1,9705:12826179,42133736:270323 -k1,9705:15067169,42133736:270322 -k1,9705:16205844,42133736:270323 -k1,9705:17989392,42133736:270322 -(1,9705:17989392,42133736:0,452978,122846 -r1,9728:24678472,42133736:6689080,575824,122846 -k1,9705:17989392,42133736:-6689080 -) -(1,9705:17989392,42133736:6689080,452978,122846 -g1,9705:23268347,42133736 -g1,9705:23971771,42133736 -h1,9705:24675195,42133736:0,411205,112570 -) -k1,9705:24948795,42133736:270323 -k1,9705:25870545,42133736:270322 -k1,9705:27783200,42133736:270323 -k1,9705:28409382,42133736:270322 -k1,9705:29962900,42133736:270323 -k1,9705:32583029,42133736:0 -) -(1,9706:6630773,42975224:25952256,513147,134348 -k1,9705:8783567,42975224:174917 -k1,9705:10352434,42975224:174916 -k1,9705:10883211,42975224:174917 -k1,9705:13998073,42975224:174917 -k1,9705:14832282,42975224:174917 -k1,9705:16026283,42975224:174916 -k1,9705:17854673,42975224:174917 -k1,9705:20042856,42975224:174917 -k1,9705:20903934,42975224:174916 -k1,9705:23056728,42975224:174917 -(1,9705:23056728,42975224:0,414482,115847 -r1,9728:23414994,42975224:358266,530329,115847 -k1,9705:23056728,42975224:-358266 -) -(1,9705:23056728,42975224:358266,414482,115847 -k1,9705:23056728,42975224:3277 -h1,9705:23411717,42975224:0,411205,112570 -) -k1,9705:23763581,42975224:174917 -k1,9705:25730251,42975224:174916 -k1,9705:27108409,42975224:174917 -k1,9705:29047555,42975224:174917 -k1,9705:29753969,42975224:174917 -k1,9705:31263853,42975224:174916 -k1,9705:32124932,42975224:174917 -k1,9705:32583029,42975224:0 -) -(1,9706:6630773,43816712:25952256,513147,134348 -k1,9705:9257592,43816712:153490 -k1,9705:10695589,43816712:153491 -k1,9705:12315775,43816712:153490 -k1,9705:13488351,43816712:153491 -k1,9705:15008922,43816712:153490 -k1,9705:16860451,43816712:153491 -(1,9705:16860451,43816712:0,414482,115847 -r1,9728:17218717,43816712:358266,530329,115847 -k1,9705:16860451,43816712:-358266 -) -(1,9705:16860451,43816712:358266,414482,115847 -k1,9705:16860451,43816712:3277 -h1,9705:17215440,43816712:0,411205,112570 -) -k1,9705:17372207,43816712:153490 -k1,9705:18057195,43816712:153491 -k1,9705:18981388,43816712:153490 -k1,9705:21131761,43816712:153491 -k1,9705:23263128,43816712:153490 -k1,9705:24075911,43816712:153491 -k1,9705:26242667,43816712:153490 -k1,9705:27816323,43816712:153491 -k1,9705:29102275,43816712:153490 -k1,9705:30003532,43816712:153491 -k1,9705:32583029,43816712:0 -) -(1,9706:6630773,44658200:25952256,505283,134348 -g1,9705:9812545,44658200 -g1,9705:11405725,44658200 -(1,9705:11405725,44658200:0,452978,115847 -r1,9728:14929397,44658200:3523672,568825,115847 -k1,9705:11405725,44658200:-3523672 -) -(1,9705:11405725,44658200:3523672,452978,115847 -k1,9705:11405725,44658200:3277 -h1,9705:14926120,44658200:0,411205,112570 -) -g1,9705:15128626,44658200 -g1,9705:18102649,44658200 -g1,9705:18953306,44658200 -(1,9705:18953306,44658200:0,452978,115847 -r1,9728:19311572,44658200:358266,568825,115847 -k1,9705:18953306,44658200:-358266 -) -(1,9705:18953306,44658200:358266,452978,115847 -k1,9705:18953306,44658200:3277 -h1,9705:19308295,44658200:0,411205,112570 -) -k1,9706:32583029,44658200:13097787 -g1,9706:32583029,44658200 -) -v1,9708:6630773,46023976:0,393216,0 -] -(1,9728:32583029,45706769:0,0,0 -g1,9728:32583029,45706769 -) -) -] -(1,9728:6630773,47279633:25952256,0,0 -h1,9728:6630773,47279633:25952256,0,0 -) -] -(1,9728:4262630,4025873:0,0,0 -[1,9728:-473656,4025873:0,0,0 -(1,9728:-473656,-710413:0,0,0 -(1,9728:-473656,-710413:0,0,0 -g1,9728:-473656,-710413 -) -g1,9728:-473656,-710413 -) -] -) -] -!25188 -}163 -Input:1411:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1412:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1413:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1414:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1415:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1416:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1417:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1418:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1419:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1420:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1421:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1422:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1423:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1424:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1425:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1426:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1427:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1428:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1429:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1798 -{164 -[1,9773:4262630,47279633:28320399,43253760,0 -(1,9773:4262630,4025873:0,0,0 -[1,9773:-473656,4025873:0,0,0 -(1,9773:-473656,-710413:0,0,0 -(1,9773:-473656,-644877:0,0,0 -k1,9773:-473656,-644877:-65536 +!23423 +}140 +Input:1203:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1204:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1205:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!294 +{141 +[1,8835:4262630,47279633:28320399,43253760,0 +(1,8835:4262630,4025873:0,0,0 +[1,8835:-473656,4025873:0,0,0 +(1,8835:-473656,-710413:0,0,0 +(1,8835:-473656,-644877:0,0,0 +k1,8835:-473656,-644877:-65536 ) -(1,9773:-473656,4736287:0,0,0 -k1,9773:-473656,4736287:5209943 +(1,8835:-473656,4736287:0,0,0 +k1,8835:-473656,4736287:5209943 ) -g1,9773:-473656,-710413 +g1,8835:-473656,-710413 ) ] ) -[1,9773:6630773,47279633:25952256,43253760,0 -[1,9773:6630773,4812305:25952256,786432,0 -(1,9773:6630773,4812305:25952256,485622,11795 -(1,9773:6630773,4812305:25952256,485622,11795 -g1,9773:3078558,4812305 -[1,9773:3078558,4812305:0,0,0 -(1,9773:3078558,2439708:0,1703936,0 -k1,9773:1358238,2439708:-1720320 -(1,8393:1358238,2439708:1720320,1703936,0 -(1,8393:1358238,2439708:1179648,16384,0 -r1,9773:2537886,2439708:1179648,16384,0 +[1,8835:6630773,47279633:25952256,43253760,0 +[1,8835:6630773,4812305:25952256,786432,0 +(1,8835:6630773,4812305:25952256,505283,134348 +(1,8835:6630773,4812305:25952256,505283,134348 +g1,8835:3078558,4812305 +[1,8835:3078558,4812305:0,0,0 +(1,8835:3078558,2439708:0,1703936,0 +k1,8835:1358238,2439708:-1720320 +(1,8606:1358238,2439708:1720320,1703936,0 +(1,8606:1358238,2439708:1179648,16384,0 +r1,8835:2537886,2439708:1179648,16384,0 ) -g1,8393:3062174,2439708 -(1,8393:3062174,2439708:16384,1703936,0 -[1,8393:3062174,2439708:25952256,1703936,0 -(1,8393:3062174,1915420:25952256,1179648,0 -(1,8393:3062174,1915420:16384,1179648,0 -r1,9773:3078558,1915420:16384,1179648,0 +g1,8606:3062174,2439708 +(1,8606:3062174,2439708:16384,1703936,0 +[1,8606:3062174,2439708:25952256,1703936,0 +(1,8606:3062174,1915420:25952256,1179648,0 +(1,8606:3062174,1915420:16384,1179648,0 +r1,8835:3078558,1915420:16384,1179648,0 ) -k1,8393:29014430,1915420:25935872 -g1,8393:29014430,1915420 +k1,8606:29014430,1915420:25935872 +g1,8606:29014430,1915420 ) ] ) ) ) ] -[1,9773:3078558,4812305:0,0,0 -(1,9773:3078558,2439708:0,1703936,0 -g1,9773:29030814,2439708 -g1,9773:36135244,2439708 -(1,8393:36135244,2439708:1720320,1703936,0 -(1,8393:36135244,2439708:16384,1703936,0 -[1,8393:36135244,2439708:25952256,1703936,0 -(1,8393:36135244,1915420:25952256,1179648,0 -(1,8393:36135244,1915420:16384,1179648,0 -r1,9773:36151628,1915420:16384,1179648,0 +[1,8835:3078558,4812305:0,0,0 +(1,8835:3078558,2439708:0,1703936,0 +g1,8835:29030814,2439708 +g1,8835:36135244,2439708 +(1,8606:36135244,2439708:1720320,1703936,0 +(1,8606:36135244,2439708:16384,1703936,0 +[1,8606:36135244,2439708:25952256,1703936,0 +(1,8606:36135244,1915420:25952256,1179648,0 +(1,8606:36135244,1915420:16384,1179648,0 +r1,8835:36151628,1915420:16384,1179648,0 ) -k1,8393:62087500,1915420:25935872 -g1,8393:62087500,1915420 +k1,8606:62087500,1915420:25935872 +g1,8606:62087500,1915420 ) ] ) -g1,8393:36675916,2439708 -(1,8393:36675916,2439708:1179648,16384,0 -r1,9773:37855564,2439708:1179648,16384,0 +g1,8606:36675916,2439708 +(1,8606:36675916,2439708:1179648,16384,0 +r1,8835:37855564,2439708:1179648,16384,0 ) ) -k1,9773:3078556,2439708:-34777008 +k1,8835:3078556,2439708:-34777008 ) ] -[1,9773:3078558,4812305:0,0,0 -(1,9773:3078558,49800853:0,16384,2228224 -k1,9773:1358238,49800853:-1720320 -(1,8393:1358238,49800853:1720320,16384,2228224 -(1,8393:1358238,49800853:1179648,16384,0 -r1,9773:2537886,49800853:1179648,16384,0 +[1,8835:3078558,4812305:0,0,0 +(1,8835:3078558,49800853:0,16384,2228224 +k1,8835:1358238,49800853:-1720320 +(1,8606:1358238,49800853:1720320,16384,2228224 +(1,8606:1358238,49800853:1179648,16384,0 +r1,8835:2537886,49800853:1179648,16384,0 ) -g1,8393:3062174,49800853 -(1,8393:3062174,52029077:16384,1703936,0 -[1,8393:3062174,52029077:25952256,1703936,0 -(1,8393:3062174,51504789:25952256,1179648,0 -(1,8393:3062174,51504789:16384,1179648,0 -r1,9773:3078558,51504789:16384,1179648,0 +g1,8606:3062174,49800853 +(1,8606:3062174,52029077:16384,1703936,0 +[1,8606:3062174,52029077:25952256,1703936,0 +(1,8606:3062174,51504789:25952256,1179648,0 +(1,8606:3062174,51504789:16384,1179648,0 +r1,8835:3078558,51504789:16384,1179648,0 ) -k1,8393:29014430,51504789:25935872 -g1,8393:29014430,51504789 +k1,8606:29014430,51504789:25935872 +g1,8606:29014430,51504789 ) ] ) ) ) ] -[1,9773:3078558,4812305:0,0,0 -(1,9773:3078558,49800853:0,16384,2228224 -g1,9773:29030814,49800853 -g1,9773:36135244,49800853 -(1,8393:36135244,49800853:1720320,16384,2228224 -(1,8393:36135244,52029077:16384,1703936,0 -[1,8393:36135244,52029077:25952256,1703936,0 -(1,8393:36135244,51504789:25952256,1179648,0 -(1,8393:36135244,51504789:16384,1179648,0 -r1,9773:36151628,51504789:16384,1179648,0 +[1,8835:3078558,4812305:0,0,0 +(1,8835:3078558,49800853:0,16384,2228224 +g1,8835:29030814,49800853 +g1,8835:36135244,49800853 +(1,8606:36135244,49800853:1720320,16384,2228224 +(1,8606:36135244,52029077:16384,1703936,0 +[1,8606:36135244,52029077:25952256,1703936,0 +(1,8606:36135244,51504789:25952256,1179648,0 +(1,8606:36135244,51504789:16384,1179648,0 +r1,8835:36151628,51504789:16384,1179648,0 ) -k1,8393:62087500,51504789:25935872 -g1,8393:62087500,51504789 +k1,8606:62087500,51504789:25935872 +g1,8606:62087500,51504789 ) ] ) -g1,8393:36675916,49800853 -(1,8393:36675916,49800853:1179648,16384,0 -r1,9773:37855564,49800853:1179648,16384,0 +g1,8606:36675916,49800853 +(1,8606:36675916,49800853:1179648,16384,0 +r1,8835:37855564,49800853:1179648,16384,0 +) +) +k1,8835:3078556,49800853:-34777008 +) +] +g1,8835:6630773,4812305 +k1,8835:21643106,4812305:13816956 +g1,8835:23265777,4812305 +g1,8835:24088253,4812305 +g1,8835:28572226,4812305 +g1,8835:29981905,4812305 +) +) +] +[1,8835:6630773,45706769:25952256,40108032,0 +(1,8835:6630773,45706769:25952256,40108032,0 +(1,8835:6630773,45706769:0,0,0 +g1,8835:6630773,45706769 +) +[1,8835:6630773,45706769:25952256,40108032,0 +(1,8804:6630773,6254097:25952256,513147,134348 +k1,8803:9035325,6254097:220237 +k1,8803:10609536,6254097:220237 +k1,8803:12400671,6254097:220237 +k1,8803:14805222,6254097:220236 +k1,8803:16379433,6254097:220237 +k1,8803:18316058,6254097:220237 +k1,8803:20720610,6254097:220237 +k1,8803:23412865,6254097:220237 +k1,8803:25643747,6254097:220237 +(1,8803:25850841,6254097:0,414482,115847 +r1,8835:26560819,6254097:709978,530329,115847 +k1,8803:25850841,6254097:-709978 +) +(1,8803:25850841,6254097:709978,414482,115847 +k1,8803:25850841,6254097:3277 +h1,8803:26557542,6254097:0,411205,112570 +) +k1,8803:27161819,6254097:220236 +k1,8803:29690234,6254097:220237 +k1,8803:30569763,6254097:220237 +k1,8803:32583029,6254097:0 +) +(1,8804:6630773,7119177:25952256,505283,115847 +g1,8803:8250167,7119177 +(1,8803:8457261,7119177:0,452978,115847 +r1,8835:11629221,7119177:3171960,568825,115847 +k1,8803:8457261,7119177:-3171960 +) +(1,8803:8457261,7119177:3171960,452978,115847 +k1,8803:8457261,7119177:3277 +h1,8803:11625944,7119177:0,411205,112570 +) +g1,8803:12209214,7119177 +k1,8804:32583029,7119177:19262324 +g1,8804:32583029,7119177 +) +v1,8806:6630773,7984257:0,393216,0 +(1,8807:6630773,13662397:25952256,6071356,0 +g1,8807:6630773,13662397 +g1,8807:6237557,13662397 +r1,8835:6368629,13662397:131072,6071356,0 +g1,8807:6567858,13662397 +g1,8807:6764466,13662397 +[1,8807:6764466,13662397:25818563,6071356,0 +(1,8807:6764466,8345434:25818563,754393,260573 +(1,8806:6764466,8345434:0,754393,260573 +r1,8835:8010564,8345434:1246098,1014966,260573 +k1,8806:6764466,8345434:-1246098 +) +(1,8806:6764466,8345434:1246098,754393,260573 +) +k1,8806:8225672,8345434:215108 +k1,8806:8553352,8345434:327680 +k1,8806:10480678,8345434:220768 +k1,8806:13853311,8345434:215108 +k1,8806:15851654,8345434:215108 +k1,8806:19562451,8345434:215107 +k1,8806:21285542,8345434:215108 +k1,8806:22116688,8345434:215108 +k1,8806:23988546,8345434:215108 +k1,8806:25488159,8345434:215107 +k1,8806:26319305,8345434:215108 +k1,8806:28226553,8345434:215108 +k1,8806:30139042,8345434:215107 +k1,8806:30710010,8345434:215108 +k1,8806:32583029,8345434:0 +) +(1,8807:6764466,9210514:25818563,513147,134348 +k1,8806:8132202,9210514:178258 +k1,8806:9414742,9210514:178258 +k1,8806:10922070,9210514:178258 +k1,8806:11751756,9210514:178258 +k1,8806:12285874,9210514:178258 +k1,8806:14346981,9210514:178258 +k1,8806:17002500,9210514:178258 +k1,8806:17840050,9210514:178258 +k1,8806:19625251,9210514:178258 +k1,8806:23012807,9210514:178258 +k1,8806:24088908,9210514:178258 +k1,8806:25552982,9210514:178258 +k1,8806:27239223,9210514:178258 +k1,8806:28033519,9210514:178258 +k1,8806:29868527,9210514:178258 +k1,8806:31331291,9210514:178258 +k1,8807:32583029,9210514:0 +) +(1,8807:6764466,10075594:25818563,505283,134348 +k1,8806:7979503,10075594:224788 +k1,8806:11212395,10075594:224789 +k1,8806:14914523,10075594:224788 +k1,8806:16837349,10075594:224788 +k1,8806:18558324,10075594:224788 +k1,8806:19314610,10075594:224789 +k1,8806:21962264,10075594:224788 +k1,8806:24745578,10075594:224788 +k1,8806:25989451,10075594:224788 +k1,8806:29348827,10075594:224789 +k1,8806:30677897,10075594:224788 +k1,8806:32583029,10075594:0 +) +(1,8807:6764466,10940674:25818563,513147,126483 +k1,8806:9243966,10940674:230960 +k1,8806:10090964,10940674:230960 +k1,8806:10677783,10940674:230959 +k1,8806:12913489,10940674:230960 +k1,8806:15431656,10940674:230960 +k1,8806:17317400,10940674:230960 +k1,8806:18079856,10940674:230959 +k1,8806:19783410,10940674:230960 +k1,8806:25090789,10940674:230960 +k1,8806:27956952,10940674:230960 +k1,8806:29206996,10940674:230959 +k1,8806:31923737,10940674:230960 +k1,8806:32583029,10940674:0 +) +(1,8807:6764466,11805754:25818563,513147,134348 +k1,8806:8585657,11805754:214248 +k1,8806:11835533,11805754:214248 +k1,8806:13241226,11805754:214248 +k1,8806:14474559,11805754:214248 +k1,8806:18418461,11805754:214248 +k1,8806:19292001,11805754:214248 +k1,8806:20525334,11805754:214248 +k1,8806:21929060,11805754:214248 +k1,8806:25264132,11805754:214248 +k1,8806:27291106,11805754:214248 +k1,8806:29288589,11805754:214248 +k1,8806:31734338,11805754:214248 +k1,8807:32583029,11805754:0 +) +(1,8807:6764466,12670834:25818563,513147,134348 +k1,8806:8263123,12670834:197112 +k1,8806:9451795,12670834:197112 +k1,8806:12721235,12670834:197112 +k1,8806:14406670,12670834:197112 +k1,8806:15365310,12670834:197112 +k1,8806:17964972,12670834:197112 +k1,8806:19181169,12670834:197112 +k1,8806:20985224,12670834:197112 +k1,8806:23887662,12670834:197112 +k1,8806:26434895,12670834:197112 +k1,8806:28111810,12670834:197112 +k1,8806:28995084,12670834:197112 +k1,8806:30645785,12670834:197112 +k1,8806:32583029,12670834:0 +) +(1,8807:6764466,13535914:25818563,513147,126483 +g1,8806:8067977,13535914 +g1,8806:9014972,13535914 +g1,8806:9984904,13535914 +g1,8806:12648287,13535914 +g1,8806:16930409,13535914 +g1,8806:17788930,13535914 +g1,8806:20021741,13535914 +k1,8807:32583029,13535914:10900606 +g1,8807:32583029,13535914 +) +] +g1,8807:32583029,13662397 +) +h1,8807:6630773,13662397:0,0,0 +(1,8810:6630773,14527477:25952256,505283,134348 +h1,8809:6630773,14527477:983040,0,0 +k1,8809:9645691,14527477:199491 +k1,8809:10836743,14527477:199492 +k1,8809:13230379,14527477:199491 +k1,8809:15184925,14527477:199492 +k1,8809:17252192,14527477:199491 +k1,8809:20923125,14527477:199491 +k1,8809:24080257,14527477:199492 +k1,8809:25471193,14527477:199491 +k1,8809:27050873,14527477:199492 +k1,8809:28638417,14527477:199491 +k1,8809:32583029,14527477:0 +) +(1,8810:6630773,15392557:25952256,505283,134348 +k1,8809:10204451,15392557:193331 +k1,8809:12079436,15392557:193331 +k1,8809:13429478,15392557:193332 +k1,8809:14274237,15392557:193331 +k1,8809:15822853,15392557:193331 +k1,8809:18574710,15392557:193331 +k1,8809:19787127,15392557:193332 +k1,8809:21650315,15392557:193331 +k1,8809:24898934,15392557:193331 +k1,8809:26248975,15392557:193331 +k1,8809:29628667,15392557:193332 +k1,8809:30434760,15392557:193331 +k1,8809:30983951,15392557:193331 +k1,8809:32583029,15392557:0 +) +(1,8810:6630773,16257637:25952256,505283,134348 +k1,8809:8081264,16257637:259046 +k1,8809:8953072,16257637:259046 +k1,8809:10663739,16257637:259045 +k1,8809:12965542,16257637:259046 +k1,8809:15896491,16257637:259046 +k1,8809:17174622,16257637:259046 +k1,8809:18814512,16257637:259046 +k1,8809:19724985,16257637:259045 +k1,8809:22288932,16257637:259046 +k1,8809:23567063,16257637:259046 +k1,8809:26115937,16257637:259046 +k1,8809:28780810,16257637:259046 +k1,8809:29655893,16257637:259045 +k1,8809:30934024,16257637:259046 +k1,8809:31607853,16257637:258986 +k1,8810:32583029,16257637:0 +) +(1,8810:6630773,17122717:25952256,505283,126483 +k1,8809:10170789,17122717:244866 +k1,8809:11607100,17122717:244866 +k1,8809:13360606,17122717:244867 +k1,8809:15789787,17122717:244866 +k1,8809:16504546,17122717:244866 +k1,8809:17280909,17122717:244866 +k1,8809:18992471,17122717:244866 +k1,8809:21867297,17122717:244866 +k1,8809:22763592,17122717:244867 +k1,8809:25420838,17122717:244866 +k1,8809:28892697,17122717:244866 +k1,8809:32583029,17122717:0 +) +(1,8810:6630773,17987797:25952256,513147,134348 +k1,8809:8041152,17987797:189443 +k1,8809:8882024,17987797:189444 +k1,8809:11333770,17987797:189443 +k1,8809:12542298,17987797:189443 +k1,8809:14412085,17987797:189444 +k1,8809:15260820,17987797:189443 +k1,8809:15806123,17987797:189443 +k1,8809:18680577,17987797:189444 +k1,8809:20559538,17987797:189443 +k1,8809:23824586,17987797:189443 +k1,8809:24545526,17987797:189443 +k1,8809:27198468,17987797:189444 +k1,8809:28290342,17987797:189443 +k1,8809:28894619,17987797:189434 +k1,8809:32051532,17987797:189443 +k1,8809:32583029,17987797:0 +) +(1,8810:6630773,18852877:25952256,505283,134348 +g1,8809:9613971,18852877 +g1,8809:11823189,18852877 +g1,8809:14446595,18852877 +g1,8809:15837269,18852877 +g1,8809:17322314,18852877 +g1,8809:20080069,18852877 +g1,8809:21298383,18852877 +g1,8809:21912455,18852877 +k1,8810:32583029,18852877:8076659 +g1,8810:32583029,18852877 +) +(1,8812:6630773,19717957:25952256,513147,134348 +h1,8811:6630773,19717957:983040,0,0 +k1,8811:9590925,19717957:193877 +k1,8811:12042517,19717957:193877 +k1,8811:13695225,19717957:193877 +k1,8811:15195236,19717957:193878 +k1,8811:17724161,19717957:193877 +k1,8811:19088511,19717957:193877 +k1,8811:20414850,19717957:193877 +k1,8811:23076813,19717957:193877 +k1,8811:26095947,19717957:193877 +k1,8811:27742103,19717957:193878 +k1,8811:29127425,19717957:193877 +k1,8811:30932832,19717957:193877 +k1,8811:32583029,19717957:0 +) +(1,8812:6630773,20583037:25952256,505283,134348 +k1,8811:7649353,20583037:257052 +k1,8811:10429542,20583037:257053 +k1,8811:11705679,20583037:257052 +k1,8811:13793807,20583037:257052 +k1,8811:15207570,20583037:257053 +k1,8811:16633129,20583037:257052 +k1,8811:17502943,20583037:257052 +k1,8811:18115855,20583037:257052 +k1,8811:19798316,20583037:257053 +k1,8811:21246813,20583037:257052 +k1,8811:23201903,20583037:257052 +k1,8811:25757304,20583037:257053 +k1,8811:29753840,20583037:257052 +k1,8812:32583029,20583037:0 +) +(1,8812:6630773,21448117:25952256,513147,134348 +(1,8811:6630773,21448117:0,452978,115847 +r1,8835:9099310,21448117:2468537,568825,115847 +k1,8811:6630773,21448117:-2468537 +) +(1,8811:6630773,21448117:2468537,452978,115847 +k1,8811:6630773,21448117:3277 +h1,8811:9096033,21448117:0,411205,112570 +) +k1,8811:9280251,21448117:180941 +k1,8811:12977853,21448117:180940 +k1,8811:13810222,21448117:180941 +k1,8811:15978215,21448117:180941 +k1,8811:16771917,21448117:180940 +k1,8811:18283239,21448117:180941 +k1,8811:19483264,21448117:180940 +k1,8811:21344548,21448117:180941 +k1,8811:22184781,21448117:180941 +k1,8811:25207362,21448117:180940 +k1,8811:27959280,21448117:180941 +k1,8811:28752983,21448117:180941 +k1,8811:30385545,21448117:180940 +k1,8811:32095441,21448117:180941 +k1,8811:32583029,21448117:0 +) +(1,8812:6630773,22313197:25952256,513147,134348 +k1,8811:9769030,22313197:170787 +k1,8811:11951772,22313197:170787 +k1,8811:12478418,22313197:170786 +k1,8811:13505761,22313197:170787 +k1,8811:15326745,22313197:170787 +k1,8811:17959064,22313197:170787 +k1,8811:18816013,22313197:170787 +k1,8811:20143509,22313197:170786 +k1,8811:21418578,22313197:170787 +k1,8811:23244804,22313197:170787 +k1,8811:24331784,22313197:170787 +k1,8811:25694016,22313197:170787 +k1,8811:27520241,22313197:170786 +k1,8811:29057454,22313197:170787 +k1,8811:29887533,22313197:170787 +k1,8811:32583029,22313197:0 +) +(1,8812:6630773,23178277:25952256,513147,126483 +g1,8811:10416132,23178277 +g1,8811:11806806,23178277 +g1,8811:12940578,23178277 +g1,8811:14331252,23178277 +g1,8811:16294710,23178277 +g1,8811:18278484,23178277 +g1,8811:20496222,23178277 +g1,8811:22614345,23178277 +g1,8811:25889179,23178277 +g1,8811:27220870,23178277 +k1,8812:32583029,23178277:3786018 +g1,8812:32583029,23178277 +) +(1,8814:6630773,24043357:25952256,505283,134348 +h1,8813:6630773,24043357:983040,0,0 +k1,8813:9614900,24043357:217852 +k1,8813:13731490,24043357:217853 +k1,8813:14968427,24043357:217852 +k1,8813:18177999,24043357:217853 +k1,8813:19011889,24043357:217852 +k1,8813:20432983,24043357:217853 +k1,8813:23242129,24043357:217852 +k1,8813:24275249,24043357:217852 +k1,8813:26001085,24043357:217853 +k1,8813:27422178,24043357:217852 +k1,8813:29918718,24043357:217853 +k1,8813:30752608,24043357:217852 +k1,8813:32583029,24043357:0 +) +(1,8814:6630773,24908437:25952256,513147,134348 +k1,8813:7414584,24908437:155976 +k1,8813:10410234,24908437:155975 +k1,8813:11032171,24908437:155976 +k1,8813:12358620,24908437:155976 +k1,8813:13493048,24908437:155975 +k1,8813:15377208,24908437:155976 +k1,8813:17429796,24908437:155976 +k1,8813:18237199,24908437:155975 +k1,8813:19659331,24908437:155976 +k1,8813:20834391,24908437:155975 +k1,8813:22772291,24908437:155976 +k1,8813:23587559,24908437:155976 +k1,8813:24099394,24908437:155975 +k1,8813:25618519,24908437:155976 +k1,8813:26589763,24908437:155976 +k1,8813:28897940,24908437:155975 +k1,8813:30512747,24908437:155976 +k1,8813:32583029,24908437:0 +) +(1,8814:6630773,25773517:25952256,513147,126483 +k1,8813:8314516,25773517:217047 +k1,8813:9182991,25773517:217047 +k1,8813:10419123,25773517:217047 +k1,8813:12237870,25773517:217047 +k1,8813:14320726,25773517:217046 +k1,8813:15197065,25773517:217047 +k1,8813:18044072,25773517:217047 +k1,8813:20547015,25773517:217047 +k1,8813:21955507,25773517:217047 +k1,8813:22823982,25773517:217047 +k1,8813:24060114,25773517:217047 +k1,8813:25772693,25773517:217047 +k1,8813:27702195,25773517:217046 +k1,8813:29406254,25773517:217047 +k1,8813:31323960,25773517:217047 +k1,8813:32227169,25773517:217047 +k1,8813:32583029,25773517:0 +) +(1,8814:6630773,26638597:25952256,513147,134348 +k1,8813:7973087,26638597:152836 +k1,8813:8741961,26638597:152836 +k1,8813:9250658,26638597:152837 +k1,8813:11983646,26638597:152836 +k1,8813:14873921,26638597:152836 +k1,8813:16594378,26638597:152836 +k1,8813:18552030,26638597:152790 +k1,8813:19387752,26638597:152837 +k1,8813:19955385,26638597:152790 +k1,8813:22094617,26638597:152836 +k1,8813:23021433,26638597:152836 +k1,8813:25456888,26638597:152836 +k1,8813:27307763,26638597:152837 +k1,8813:30884855,26638597:152836 +k1,8813:31393551,26638597:152836 +k1,8813:32583029,26638597:0 +) +(1,8814:6630773,27503677:25952256,513147,126483 +k1,8813:7465795,27503677:218984 +k1,8813:9180965,27503677:218983 +k1,8813:10570422,27503677:218984 +k1,8813:12264621,27503677:218984 +k1,8813:13549876,27503677:218984 +k1,8813:16229081,27503677:218983 +k1,8813:16906162,27503677:218984 +k1,8813:17656643,27503677:218984 +k1,8813:19275475,27503677:218983 +k1,8813:20145887,27503677:218984 +k1,8813:21718845,27503677:218984 +k1,8813:24713934,27503677:218984 +k1,8813:26345218,27503677:218983 +k1,8813:27583287,27503677:218984 +k1,8813:32583029,27503677:0 +) +(1,8814:6630773,28368757:25952256,513147,134348 +k1,8813:7524111,28368757:207176 +k1,8813:8750371,28368757:207175 +k1,8813:10747335,28368757:207176 +k1,8813:12291445,28368757:207176 +k1,8813:13246386,28368757:207175 +k1,8813:14682362,28368757:207176 +k1,8813:15505576,28368757:207176 +k1,8813:17171583,28368757:207176 +k1,8813:22033780,28368757:207175 +k1,8813:22900248,28368757:207176 +k1,8813:24656040,28368757:207176 +k1,8813:25219075,28368757:207175 +k1,8813:27624329,28368757:207176 +k1,8813:29481702,28368757:207176 +k1,8813:30348169,28368757:207175 +k1,8813:32051532,28368757:207176 +k1,8813:32583029,28368757:0 +) +(1,8814:6630773,29233837:25952256,505283,134348 +k1,8813:9715758,29233837:245965 +k1,8813:10613151,29233837:245965 +k1,8813:11848053,29233837:245964 +k1,8813:13511562,29233837:245965 +k1,8813:15265510,29233837:245965 +k1,8813:16127513,29233837:245965 +k1,8813:18030227,29233837:245964 +k1,8813:19560698,29233837:245965 +k1,8813:20492825,29233837:245965 +k1,8813:23868134,29233837:245965 +k1,8813:24923468,29233837:245964 +k1,8813:26667586,29233837:245965 +h1,8813:27066045,29233837:0,0,0 +k1,8813:27485680,29233837:245965 +k1,8813:28902118,29233837:245965 +k1,8813:30280544,29233837:245964 +k1,8813:31274275,29233837:245965 +k1,8813:32583029,29233837:0 +) +(1,8814:6630773,30098917:25952256,513147,126483 +k1,8813:7551018,30098917:268817 +k1,8813:9085990,30098917:268816 +k1,8813:11332684,30098917:268817 +k1,8813:17174682,30098917:268816 +k1,8813:20538109,30098917:268817 +k1,8813:21458353,30098917:268816 +k1,8813:23478947,30098917:268817 +k1,8813:24407055,30098917:268816 +k1,8813:26134703,30098917:268817 +k1,8813:28115975,30098917:268816 +k1,8813:31391584,30098917:268817 +k1,8813:32583029,30098917:0 +) +(1,8814:6630773,30963997:25952256,513147,134348 +k1,8813:9296576,30963997:274394 +k1,8813:10612992,30963997:274394 +k1,8813:13722473,30963997:274394 +k1,8813:17057399,30963997:274395 +k1,8813:18725744,30963997:274394 +k1,8813:21195594,30963997:274394 +k1,8813:22417639,30963997:274394 +k1,8813:23711118,30963997:274394 +k1,8813:25211691,30963997:274394 +k1,8813:26145378,30963997:274395 +k1,8813:27190475,30963997:274394 +k1,8813:29071812,30963997:274394 +k1,8813:32051532,30963997:274394 +k1,8813:32583029,30963997:0 +) +(1,8814:6630773,31829077:25952256,505283,126483 +g1,8813:9117209,31829077 +g1,8813:10595045,31829077 +k1,8814:32583028,31829077:18824560 +g1,8814:32583028,31829077 +) +(1,8815:6630773,34660237:25952256,32768,229376 +(1,8815:6630773,34660237:0,32768,229376 +(1,8815:6630773,34660237:5505024,32768,229376 +r1,8835:12135797,34660237:5505024,262144,229376 +) +k1,8815:6630773,34660237:-5505024 +) +(1,8815:6630773,34660237:25952256,32768,0 +r1,8835:32583029,34660237:25952256,32768,0 +) +) +(1,8815:6630773,36292089:25952256,606339,151780 +(1,8815:6630773,36292089:1974731,582746,14155 +g1,8815:6630773,36292089 +g1,8815:8605504,36292089 +) +g1,8815:13195122,36292089 +k1,8815:32583029,36292089:15049948 +g1,8815:32583029,36292089 +) +(1,8819:6630773,37550385:25952256,505283,134348 +k1,8818:9968653,37550385:133169 +k1,8818:13618484,37550385:133169 +k1,8818:14855935,37550385:133169 +k1,8818:15736870,37550385:133169 +k1,8818:18530801,37550385:133169 +k1,8818:19931436,37550385:133169 +k1,8818:23359755,37550385:133169 +k1,8818:26900141,37550385:133169 +k1,8818:27794838,37550385:133169 +k1,8818:30943974,37550385:133169 +k1,8818:32583029,37550385:0 +) +(1,8819:6630773,38415465:25952256,505283,134348 +k1,8818:7538883,38415465:292072 +k1,8818:9433966,38415465:292072 +k1,8818:11955573,38415465:292072 +k1,8818:16413113,38415465:292072 +k1,8818:17236682,38415465:292072 +k1,8818:18674980,38415465:292073 +k1,8818:21306687,38415465:292072 +k1,8818:23830260,38415465:292072 +k1,8818:27638994,38415465:292072 +k1,8818:29198532,38415465:292072 +k1,8818:29846464,38415465:292072 +k1,8818:31298523,38415465:292072 +k1,8818:32583029,38415465:0 +) +(1,8819:6630773,39280545:25952256,505283,126483 +g1,8818:8841957,39280545 +g1,8818:9786330,39280545 +g1,8818:10636987,39280545 +g1,8818:13247286,39280545 +g1,8818:14840466,39280545 +g1,8818:16678750,39280545 +g1,8818:17564141,39280545 +g1,8818:18534073,39280545 +g1,8818:22434120,39280545 +k1,8819:32583029,39280545:8092389 +g1,8819:32583029,39280545 +) +] +(1,8835:32583029,45706769:0,0,0 +g1,8835:32583029,45706769 +) +) +] +(1,8835:6630773,47279633:25952256,0,0 +h1,8835:6630773,47279633:25952256,0,0 +) +] +(1,8835:4262630,4025873:0,0,0 +[1,8835:-473656,4025873:0,0,0 +(1,8835:-473656,-710413:0,0,0 +(1,8835:-473656,-710413:0,0,0 +g1,8835:-473656,-710413 +) +g1,8835:-473656,-710413 +) +] +) +] +!20899 +}141 +Input:1206:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!106 +{142 +[1,8892:4262630,47279633:28320399,43253760,0 +(1,8892:4262630,4025873:0,0,0 +[1,8892:-473656,4025873:0,0,0 +(1,8892:-473656,-710413:0,0,0 +(1,8892:-473656,-644877:0,0,0 +k1,8892:-473656,-644877:-65536 ) +(1,8892:-473656,4736287:0,0,0 +k1,8892:-473656,4736287:5209943 ) -k1,9773:3078556,49800853:-34777008 +g1,8892:-473656,-710413 ) ] -g1,9773:6630773,4812305 -g1,9773:6630773,4812305 -g1,9773:9524187,4812305 -k1,9773:31387651,4812305:21863464 -) -) -] -[1,9773:6630773,45706769:25952256,40108032,0 -(1,9773:6630773,45706769:25952256,40108032,0 -(1,9773:6630773,45706769:0,0,0 -g1,9773:6630773,45706769 -) -[1,9773:6630773,45706769:25952256,40108032,0 -v1,9728:6630773,6254097:0,393216,0 -(1,9728:6630773,20617510:25952256,14756629,0 -g1,9728:6630773,20617510 -g1,9728:6303093,20617510 -r1,9773:6401397,20617510:98304,14756629,0 -g1,9728:6600626,20617510 -g1,9728:6797234,20617510 -[1,9728:6797234,20617510:25785795,14756629,0 -(1,9709:6797234,6686635:25785795,825754,196608 -(1,9708:6797234,6686635:0,825754,196608 -r1,9773:8834093,6686635:2036859,1022362,196608 -k1,9708:6797234,6686635:-2036859 -) -(1,9708:6797234,6686635:2036859,825754,196608 -) -k1,9708:9127277,6686635:293184 -k1,9708:10853495,6686635:327680 -k1,9708:12421354,6686635:293184 -k1,9708:13733623,6686635:293184 -k1,9708:17018526,6686635:293184 -k1,9708:19180141,6686635:293184 -k1,9708:20664771,6686635:293185 -k1,9708:23268099,6686635:293184 -k1,9708:24858241,6686635:293184 -k1,9708:26170510,6686635:293184 -k1,9708:27636133,6686635:293184 -k1,9708:31591469,6686635:293184 -k1,9708:32583029,6686635:0 -) -(1,9709:6797234,7528123:25785795,513147,134348 -k1,9708:10283764,7528123:181549 -k1,9708:11840914,7528123:181549 -k1,9708:13720501,7528123:181549 -k1,9708:14921136,7528123:181550 -k1,9708:17115951,7528123:181549 -k1,9708:17964656,7528123:181549 -(1,9708:17964656,7528123:0,414482,115847 -r1,9773:18322922,7528123:358266,530329,115847 -k1,9708:17964656,7528123:-358266 -) -(1,9708:17964656,7528123:358266,414482,115847 -k1,9708:17964656,7528123:3277 -h1,9708:18319645,7528123:0,411205,112570 -) -k1,9708:18504471,7528123:181549 -k1,9708:19217517,7528123:181549 -k1,9708:20555776,7528123:181549 -k1,9708:21420210,7528123:181549 -k1,9708:23425626,7528123:181549 -k1,9708:25003093,7528123:181550 -k1,9708:26203727,7528123:181549 -k1,9708:28642991,7528123:181549 -k1,9708:29586068,7528123:181549 -k1,9708:32583029,7528123:0 -) -(1,9709:6797234,8369611:25785795,513147,134348 -k1,9708:7629797,8369611:181135 -(1,9708:7629797,8369611:0,414482,115847 -r1,9773:7988063,8369611:358266,530329,115847 -k1,9708:7629797,8369611:-358266 -) -(1,9708:7629797,8369611:358266,414482,115847 -k1,9708:7629797,8369611:3277 -h1,9708:7984786,8369611:0,411205,112570 -) -k1,9708:8342867,8369611:181134 -k1,9708:10832180,8369611:181135 -k1,9708:11672606,8369611:181134 -k1,9708:14616084,8369611:181135 -k1,9708:17314456,8369611:181134 -k1,9708:20476168,8369611:181135 -k1,9708:22077467,8369611:181134 -k1,9708:24201089,8369611:181135 -(1,9708:24201089,8369611:0,452978,115847 -r1,9773:29483321,8369611:5282232,568825,115847 -k1,9708:24201089,8369611:-5282232 -) -(1,9708:24201089,8369611:5282232,452978,115847 -g1,9708:24907790,8369611 -g1,9708:25962926,8369611 -h1,9708:29480044,8369611:0,411205,112570 -) -k1,9708:30045219,8369611:181134 -k1,9708:31714677,8369611:181135 -k1,9708:32583029,8369611:0 -) -(1,9709:6797234,9211099:25785795,513147,126483 -k1,9708:8088644,9211099:198925 -k1,9708:10983065,9211099:198925 -(1,9708:10983065,9211099:0,452978,115847 -r1,9773:12748178,9211099:1765113,568825,115847 -k1,9708:10983065,9211099:-1765113 -) -(1,9708:10983065,9211099:1765113,452978,115847 -k1,9708:10983065,9211099:3277 -h1,9708:12744901,9211099:0,411205,112570 -) -k1,9708:12947103,9211099:198925 -k1,9708:13797456,9211099:198925 -k1,9708:15925761,9211099:198925 -k1,9708:16480546,9211099:198925 -k1,9708:18657349,9211099:198926 -k1,9708:20140780,9211099:198925 -k1,9708:23041754,9211099:198925 -k1,9708:26180624,9211099:198925 -k1,9708:27046705,9211099:198925 -(1,9708:27046705,9211099:0,452978,122846 -r1,9773:29515242,9211099:2468537,575824,122846 -k1,9708:27046705,9211099:-2468537 -) -(1,9708:27046705,9211099:2468537,452978,122846 -k1,9708:27046705,9211099:3277 -h1,9708:29511965,9211099:0,411205,112570 -) -k1,9708:29714167,9211099:198925 -k1,9708:31923737,9211099:198925 -k1,9708:32583029,9211099:0 -) -(1,9709:6797234,10052587:25785795,513147,134348 -k1,9708:8044885,10052587:228566 -k1,9708:9926924,10052587:228566 -k1,9708:12168756,10052587:228566 -k1,9708:13083484,10052587:228566 -(1,9708:13083484,10052587:0,414482,115847 -r1,9773:13441750,10052587:358266,530329,115847 -k1,9708:13083484,10052587:-358266 -) -(1,9708:13083484,10052587:358266,414482,115847 -k1,9708:13083484,10052587:3277 -h1,9708:13438473,10052587:0,411205,112570 -) -k1,9708:13670315,10052587:228565 -k1,9708:15183387,10052587:228566 -k1,9708:16280305,10052587:228566 -k1,9708:17601356,10052587:228566 -k1,9708:18481350,10052587:228566 -k1,9708:20740877,10052587:228566 -k1,9708:23923151,10052587:228566 -k1,9708:24811009,10052587:228566 -k1,9708:27347753,10052587:228566 -(1,9708:27347753,10052587:0,414482,115847 -r1,9773:27706019,10052587:358266,530329,115847 -k1,9708:27347753,10052587:-358266 -) -(1,9708:27347753,10052587:358266,414482,115847 -k1,9708:27347753,10052587:3277 -h1,9708:27702742,10052587:0,411205,112570 -) -k1,9708:27934584,10052587:228565 -k1,9708:29354595,10052587:228566 -(1,9708:29354595,10052587:0,452978,115847 -r1,9773:29712861,10052587:358266,568825,115847 -k1,9708:29354595,10052587:-358266 -) -(1,9708:29354595,10052587:358266,452978,115847 -k1,9708:29354595,10052587:3277 -h1,9708:29709584,10052587:0,411205,112570 -) -k1,9708:29941427,10052587:228566 -k1,9708:31563944,10052587:228566 -k1,9708:32583029,10052587:0 -) -(1,9709:6797234,10894075:25785795,513147,126483 -k1,9708:10243472,10894075:231697 -k1,9708:13221783,10894075:231697 -(1,9708:13221783,10894075:0,452978,115847 -r1,9773:14283473,10894075:1061690,568825,115847 -k1,9708:13221783,10894075:-1061690 -) -(1,9708:13221783,10894075:1061690,452978,115847 -g1,9708:13928484,10894075 -h1,9708:14280196,10894075:0,411205,112570 -) -k1,9708:14515171,10894075:231698 -k1,9708:16046447,10894075:231697 -(1,9708:16046447,10894075:0,452978,115847 -r1,9773:19218407,10894075:3171960,568825,115847 -k1,9708:16046447,10894075:-3171960 -) -(1,9708:16046447,10894075:3171960,452978,115847 -k1,9708:16046447,10894075:3277 -h1,9708:19215130,10894075:0,411205,112570 -) -k1,9708:19450104,10894075:231697 -k1,9708:20333229,10894075:231697 -k1,9708:21831082,10894075:231697 -k1,9708:25289772,10894075:231697 -k1,9708:29328456,10894075:231698 -k1,9708:30369523,10894075:231697 -k1,9708:31931601,10894075:231697 -k1,9708:32583029,10894075:0 -) -(1,9709:6797234,11735563:25785795,513147,134348 -g1,9708:8925843,11735563 -g1,9708:11887415,11735563 -g1,9708:15356891,11735563 -g1,9708:16215412,11735563 -k1,9709:32583029,11735563:13426361 -g1,9709:32583029,11735563 -) -v1,9711:6797234,12926029:0,393216,0 -(1,9725:6797234,19896614:25785795,7363801,196608 -g1,9725:6797234,19896614 -g1,9725:6797234,19896614 -g1,9725:6600626,19896614 -(1,9725:6600626,19896614:0,7363801,196608 -r1,9773:32779637,19896614:26179011,7560409,196608 -k1,9725:6600625,19896614:-26179012 -) -(1,9725:6600626,19896614:26179011,7363801,196608 -[1,9725:6797234,19896614:25785795,7167193,0 -(1,9713:6797234,13133647:25785795,404226,107478 -(1,9712:6797234,13133647:0,0,0 -g1,9712:6797234,13133647 -g1,9712:6797234,13133647 -g1,9712:6469554,13133647 -(1,9712:6469554,13133647:0,0,0 -) -g1,9712:6797234,13133647 -) -g1,9713:7429526,13133647 -g1,9713:8377964,13133647 -k1,9713:8377964,13133647:0 -h1,9713:14068587,13133647:0,0,0 -k1,9713:32583029,13133647:18514442 -g1,9713:32583029,13133647 -) -(1,9714:6797234,13799825:25785795,410518,107478 -h1,9714:6797234,13799825:0,0,0 -g1,9714:8694108,13799825 -g1,9714:9642545,13799825 -g1,9714:14384731,13799825 -g1,9714:15017023,13799825 -g1,9714:16281606,13799825 -h1,9714:16597752,13799825:0,0,0 -k1,9714:32583029,13799825:15985277 -g1,9714:32583029,13799825 -) -(1,9715:6797234,14466003:25785795,404226,76021 -h1,9715:6797234,14466003:0,0,0 -g1,9715:7113380,14466003 -g1,9715:7429526,14466003 -g1,9715:9010255,14466003 -g1,9715:9958693,14466003 -h1,9715:11855568,14466003:0,0,0 -k1,9715:32583028,14466003:20727460 -g1,9715:32583028,14466003 -) -(1,9716:6797234,15132181:25785795,404226,76021 -h1,9716:6797234,15132181:0,0,0 -h1,9716:7113380,15132181:0,0,0 -k1,9716:32583028,15132181:25469648 -g1,9716:32583028,15132181 -) -(1,9717:6797234,15798359:25785795,404226,101187 -h1,9717:6797234,15798359:0,0,0 -k1,9717:6797234,15798359:0 -h1,9717:9326399,15798359:0,0,0 -k1,9717:32583029,15798359:23256630 -g1,9717:32583029,15798359 -) -(1,9718:6797234,16464537:25785795,0,0 -h1,9718:6797234,16464537:0,0,0 -h1,9718:6797234,16464537:0,0,0 -k1,9718:32583030,16464537:25785796 -g1,9718:32583030,16464537 -) -(1,9719:6797234,17130715:25785795,404226,107478 -h1,9719:6797234,17130715:0,0,0 -g1,9719:7429526,17130715 -g1,9719:8377964,17130715 -k1,9719:8377964,17130715:0 -h1,9719:14068587,17130715:0,0,0 -k1,9719:32583029,17130715:18514442 -g1,9719:32583029,17130715 -) -(1,9720:6797234,17796893:25785795,410518,107478 -h1,9720:6797234,17796893:0,0,0 -g1,9720:8694108,17796893 -g1,9720:9642545,17796893 -g1,9720:13752440,17796893 -h1,9720:14068586,17796893:0,0,0 -k1,9720:32583030,17796893:18514444 -g1,9720:32583030,17796893 -) -(1,9721:6797234,18463071:25785795,404226,76021 -h1,9721:6797234,18463071:0,0,0 -g1,9721:7113380,18463071 -g1,9721:7429526,18463071 -g1,9721:9010255,18463071 -g1,9721:9958693,18463071 -h1,9721:11855568,18463071:0,0,0 -k1,9721:32583028,18463071:20727460 -g1,9721:32583028,18463071 -) -(1,9722:6797234,19129249:25785795,404226,76021 -h1,9722:6797234,19129249:0,0,0 -h1,9722:7113380,19129249:0,0,0 -k1,9722:32583028,19129249:25469648 -g1,9722:32583028,19129249 -) -(1,9723:6797234,19795427:25785795,404226,101187 -h1,9723:6797234,19795427:0,0,0 -k1,9723:6797234,19795427:0 -h1,9723:9326399,19795427:0,0,0 -k1,9723:32583029,19795427:23256630 -g1,9723:32583029,19795427 -) -] -) -g1,9725:32583029,19896614 -g1,9725:6797234,19896614 -g1,9725:6797234,19896614 -g1,9725:32583029,19896614 -g1,9725:32583029,19896614 -) -h1,9725:6797234,20093222:0,0,0 -] -g1,9728:32583029,20617510 -) -h1,9728:6630773,20617510:0,0,0 -v1,9731:6630773,21773570:0,393216,0 -(1,9768:6630773,45706769:25952256,24326415,0 -g1,9768:6630773,45706769 -g1,9768:6303093,45706769 -r1,9773:6401397,45706769:98304,24326415,0 -g1,9768:6600626,45706769 -g1,9768:6797234,45706769 -[1,9768:6797234,45706769:25785795,24326415,0 -(1,9732:6797234,22135643:25785795,755289,196608 -(1,9731:6797234,22135643:0,755289,196608 -r1,9773:8134168,22135643:1336934,951897,196608 -k1,9731:6797234,22135643:-1336934 -) -(1,9731:6797234,22135643:1336934,755289,196608 -) -k1,9731:8362434,22135643:228266 -k1,9731:8690114,22135643:327680 -(1,9731:8690114,22135643:0,459977,115847 -r1,9773:9751803,22135643:1061689,575824,115847 -k1,9731:8690114,22135643:-1061689 -) -(1,9731:8690114,22135643:1061689,459977,115847 -k1,9731:8690114,22135643:3277 -h1,9731:9748526,22135643:0,411205,112570 -) -k1,9731:9980070,22135643:228267 -k1,9731:11953560,22135643:228266 -k1,9731:12867989,22135643:228267 -k1,9731:16186278,22135643:228266 -k1,9731:18443540,22135643:228267 -k1,9731:19287844,22135643:228266 -k1,9731:20535196,22135643:228267 -k1,9731:23293152,22135643:228266 -k1,9731:24180711,22135643:228267 -k1,9731:26519892,22135643:228266 -k1,9731:28223374,22135643:228267 -k1,9731:31313597,22135643:228266 -k1,9732:32583029,22135643:0 -) -(1,9732:6797234,22977131:25785795,513147,126483 -k1,9731:9512828,22977131:194424 -k1,9731:12640642,22977131:194423 -k1,9731:14031753,22977131:194424 -k1,9731:17639946,22977131:194423 -k1,9731:21020730,22977131:194424 -k1,9731:21831191,22977131:194423 -k1,9731:23044700,22977131:194424 -k1,9731:24654046,22977131:194424 -k1,9731:25980931,22977131:194423 -k1,9731:26923121,22977131:194424 -k1,9731:29950665,22977131:194423 -k1,9731:31635378,22977131:194424 -k1,9731:32583029,22977131:0 -) -(1,9732:6797234,23818619:25785795,513147,126483 -k1,9731:8454920,23818619:206064 -k1,9731:11284390,23818619:206064 -k1,9731:12149746,23818619:206064 -k1,9731:13374895,23818619:206064 -k1,9731:15558836,23818619:206064 -k1,9731:16447785,23818619:206064 -k1,9731:17821045,23818619:206064 -k1,9731:20246158,23818619:206064 -k1,9731:22149604,23818619:206064 -k1,9731:23692602,23818619:206064 -k1,9731:26190460,23818619:206064 -k1,9731:27415609,23818619:206064 -k1,9731:30698588,23818619:206064 -k1,9731:31563944,23818619:206064 -k1,9731:32583029,23818619:0 -) -(1,9732:6797234,24660107:25785795,513147,126483 -k1,9731:9257988,24660107:182067 -k1,9731:10790097,24660107:182067 -k1,9731:11631457,24660107:182068 -k1,9731:14889129,24660107:182067 -k1,9731:15687234,24660107:182067 -k1,9731:16888386,24660107:182067 -k1,9731:18659046,24660107:182067 -k1,9731:20191155,24660107:182067 -k1,9731:22070605,24660107:182068 -k1,9731:23244232,24660107:182067 -k1,9731:24820905,24660107:182067 -k1,9731:25654400,24660107:182067 -k1,9731:27165537,24660107:182067 -k1,9731:28915226,24660107:182068 -k1,9731:30254003,24660107:182067 -k1,9731:30967567,24660107:182067 -k1,9732:32583029,24660107:0 -) -(1,9732:6797234,25501595:25785795,505283,134348 -k1,9731:8357660,25501595:149436 -k1,9731:11224218,25501595:149435 -k1,9731:13105115,25501595:149436 -k1,9731:15140022,25501595:149436 -k1,9731:16157809,25501595:149435 -k1,9731:17411527,25501595:149436 -k1,9731:18376231,25501595:149436 -k1,9731:19919617,25501595:149435 -k1,9731:20424913,25501595:149436 -k1,9731:21674043,25501595:149436 -k1,9731:22474906,25501595:149435 -(1,9731:22474906,25501595:0,452978,115847 -r1,9773:24943443,25501595:2468537,568825,115847 -k1,9731:22474906,25501595:-2468537 -) -(1,9731:22474906,25501595:2468537,452978,115847 -k1,9731:22474906,25501595:3277 -h1,9731:24940166,25501595:0,411205,112570 -) -k1,9731:25266549,25501595:149436 -k1,9731:26607430,25501595:149436 -k1,9731:29229538,25501595:149435 -k1,9731:29910471,25501595:149436 -k1,9731:32583029,25501595:0 -) -(1,9732:6797234,26343083:25785795,513147,115847 -k1,9731:8875264,26343083:183384 -k1,9731:9710077,26343083:183385 -k1,9731:10912546,26343083:183384 -k1,9731:12584254,26343083:183385 -k1,9731:13426930,26343083:183384 -k1,9731:14629399,26343083:183384 -k1,9731:16196904,26343083:183385 -k1,9731:19271081,26343083:183384 -k1,9731:21339937,26343083:183385 -k1,9731:22391673,26343083:183384 -k1,9731:23679340,26343083:183385 -k1,9731:24677992,26343083:183384 -k1,9731:26255327,26343083:183384 -k1,9731:26794572,26343083:183385 -k1,9731:28077650,26343083:183384 -k1,9731:28912463,26343083:183385 -(1,9731:28912463,26343083:0,452978,115847 -r1,9773:31029288,26343083:2116825,568825,115847 -k1,9731:28912463,26343083:-2116825 -) -(1,9731:28912463,26343083:2116825,452978,115847 -k1,9731:28912463,26343083:3277 -h1,9731:31026011,26343083:0,411205,112570 -) -k1,9731:31386342,26343083:183384 -k1,9731:32583029,26343083:0 -) -(1,9732:6797234,27184571:25785795,513147,134348 -k1,9731:9697912,27184571:239261 -k1,9731:11805604,27184571:239261 -k1,9731:14035849,27184571:239261 -k1,9731:15294195,27184571:239261 -k1,9731:16625941,27184571:239261 -k1,9731:17524494,27184571:239261 -k1,9731:19460482,27184571:239261 -k1,9731:20872182,27184571:239261 -k1,9731:24310911,27184571:239261 -k1,9731:25418524,27184571:239261 -k1,9731:27678260,27184571:239261 -k1,9731:30572384,27184571:239261 -k1,9731:32583029,27184571:0 -) -(1,9732:6797234,28026059:25785795,513147,126483 -k1,9731:10204392,28026059:267328 -k1,9731:11087759,28026059:267329 -(1,9731:11087759,28026059:0,414482,115847 -r1,9773:11446025,28026059:358266,530329,115847 -k1,9731:11087759,28026059:-358266 -) -(1,9731:11087759,28026059:358266,414482,115847 -k1,9731:11087759,28026059:3277 -h1,9731:11442748,28026059:0,411205,112570 -) -k1,9731:11887023,28026059:267328 -k1,9731:13345796,28026059:267328 -k1,9731:14783597,28026059:267328 -k1,9731:15733811,28026059:267329 -k1,9731:17785684,28026059:267328 -k1,9731:19119283,28026059:267328 -k1,9731:20045903,28026059:267328 -k1,9731:21332317,28026059:267329 -k1,9731:23014567,28026059:267328 -k1,9731:24979933,28026059:267328 -k1,9731:26266346,28026059:267328 -k1,9731:30592320,28026059:267329 -k1,9731:32224763,28026059:267328 -(1,9731:32224763,28026059:0,452978,115847 -r1,9773:32583029,28026059:358266,568825,115847 -k1,9731:32224763,28026059:-358266 -) -(1,9731:32224763,28026059:358266,452978,115847 -k1,9731:32224763,28026059:3277 -h1,9731:32579752,28026059:0,411205,112570 -) -k1,9731:32583029,28026059:0 -) -(1,9732:6797234,28867547:25785795,505283,11795 -g1,9731:9488142,28867547 -k1,9732:32583029,28867547:21725840 -g1,9732:32583029,28867547 -) -v1,9734:6797234,29806901:0,393216,0 -(1,9761:6797234,40061574:25785795,10647889,196608 -g1,9761:6797234,40061574 -g1,9761:6797234,40061574 -g1,9761:6600626,40061574 -(1,9761:6600626,40061574:0,10647889,196608 -r1,9773:32779637,40061574:26179011,10844497,196608 -k1,9761:6600625,40061574:-26179012 -) -(1,9761:6600626,40061574:26179011,10647889,196608 -[1,9761:6797234,40061574:25785795,10451281,0 -(1,9736:6797234,30014519:25785795,404226,9436 -(1,9735:6797234,30014519:0,0,0 -g1,9735:6797234,30014519 -g1,9735:6797234,30014519 -g1,9735:6469554,30014519 -(1,9735:6469554,30014519:0,0,0 -) -g1,9735:6797234,30014519 -) -g1,9736:7429526,30014519 -g1,9736:8377964,30014519 -h1,9736:8694110,30014519:0,0,0 -k1,9736:32583030,30014519:23888920 -g1,9736:32583030,30014519 -) -(1,9737:6797234,30680697:25785795,388497,9436 -h1,9737:6797234,30680697:0,0,0 -g1,9737:7429526,30680697 -g1,9737:8377964,30680697 -k1,9737:8377964,30680697:0 -h1,9737:10590984,30680697:0,0,0 -k1,9737:32583028,30680697:21992044 -g1,9737:32583028,30680697 -) -(1,9738:6797234,31346875:25785795,404226,107478 -h1,9738:6797234,31346875:0,0,0 -g1,9738:8377963,31346875 -g1,9738:9326401,31346875 -k1,9738:9326401,31346875:0 -h1,9738:13120149,31346875:0,0,0 -k1,9738:32583029,31346875:19462880 -g1,9738:32583029,31346875 -) -(1,9739:6797234,32013053:25785795,410518,76021 -h1,9739:6797234,32013053:0,0,0 -g1,9739:8694108,32013053 -g1,9739:9642545,32013053 -g1,9739:11539419,32013053 -h1,9739:11855565,32013053:0,0,0 -k1,9739:32583029,32013053:20727464 -g1,9739:32583029,32013053 -) -(1,9740:6797234,32679231:25785795,410518,76021 -h1,9740:6797234,32679231:0,0,0 -g1,9740:7113380,32679231 -g1,9740:7429526,32679231 -g1,9740:8377963,32679231 -g1,9740:10274837,32679231 -g1,9740:10907129,32679231 -g1,9740:11855567,32679231 -k1,9740:11855567,32679231:0 -h1,9740:13752441,32679231:0,0,0 -k1,9740:32583029,32679231:18830588 -g1,9740:32583029,32679231 -) -(1,9741:6797234,33345409:25785795,404226,76021 -h1,9741:6797234,33345409:0,0,0 -g1,9741:7113380,33345409 -g1,9741:7429526,33345409 -g1,9741:8061818,33345409 -g1,9741:9010256,33345409 -g1,9741:9642548,33345409 -g1,9741:10274840,33345409 -h1,9741:11539423,33345409:0,0,0 -k1,9741:32583029,33345409:21043606 -g1,9741:32583029,33345409 -) -(1,9742:6797234,34011587:25785795,410518,76021 -h1,9742:6797234,34011587:0,0,0 -g1,9742:7113380,34011587 -g1,9742:7429526,34011587 -g1,9742:8377963,34011587 -g1,9742:9326400,34011587 -g1,9742:9958692,34011587 -g1,9742:11539421,34011587 -k1,9742:11539421,34011587:0 -h1,9742:13752440,34011587:0,0,0 -k1,9742:32583028,34011587:18830588 -g1,9742:32583028,34011587 -) -(1,9743:6797234,34677765:25785795,404226,76021 -h1,9743:6797234,34677765:0,0,0 -h1,9743:7113380,34677765:0,0,0 -k1,9743:32583028,34677765:25469648 -g1,9743:32583028,34677765 -) -(1,9744:6797234,35343943:25785795,404226,6290 -h1,9744:6797234,35343943:0,0,0 -h1,9744:7113380,35343943:0,0,0 -k1,9744:32583028,35343943:25469648 -g1,9744:32583028,35343943 -) -(1,9748:6797234,36010121:25785795,404226,76021 -(1,9746:6797234,36010121:0,0,0 -g1,9746:6797234,36010121 -g1,9746:6797234,36010121 -g1,9746:6469554,36010121 -(1,9746:6469554,36010121:0,0,0 -) -g1,9746:6797234,36010121 -) -g1,9748:7745671,36010121 -g1,9748:9010254,36010121 -h1,9748:9958691,36010121:0,0,0 -k1,9748:32583029,36010121:22624338 -g1,9748:32583029,36010121 -) -(1,9750:6797234,37331659:25785795,404226,0 -(1,9749:6797234,37331659:0,0,0 -g1,9749:6797234,37331659 -g1,9749:6797234,37331659 -g1,9749:6469554,37331659 -(1,9749:6469554,37331659:0,0,0 -) -g1,9749:6797234,37331659 -) -h1,9750:7113380,37331659:0,0,0 -k1,9750:32583028,37331659:25469648 -g1,9750:32583028,37331659 -) -(1,9754:6797234,37997837:25785795,404226,76021 -(1,9752:6797234,37997837:0,0,0 -g1,9752:6797234,37997837 -g1,9752:6797234,37997837 -g1,9752:6469554,37997837 -(1,9752:6469554,37997837:0,0,0 -) -g1,9752:6797234,37997837 -) -g1,9754:7745671,37997837 -g1,9754:9010254,37997837 -h1,9754:9642545,37997837:0,0,0 -k1,9754:32583029,37997837:22940484 -g1,9754:32583029,37997837 -) -(1,9756:6797234,39319375:25785795,404226,76021 -(1,9755:6797234,39319375:0,0,0 -g1,9755:6797234,39319375 -g1,9755:6797234,39319375 -g1,9755:6469554,39319375 -(1,9755:6469554,39319375:0,0,0 -) -g1,9755:6797234,39319375 -) -h1,9756:8061817,39319375:0,0,0 -k1,9756:32583029,39319375:24521212 -g1,9756:32583029,39319375 -) -(1,9760:6797234,39985553:25785795,404226,76021 -(1,9758:6797234,39985553:0,0,0 -g1,9758:6797234,39985553 -g1,9758:6797234,39985553 -g1,9758:6469554,39985553 -(1,9758:6469554,39985553:0,0,0 -) -g1,9758:6797234,39985553 -) -g1,9760:7745671,39985553 -g1,9760:9010254,39985553 -h1,9760:9642545,39985553:0,0,0 -k1,9760:32583029,39985553:22940484 -g1,9760:32583029,39985553 -) -] -) -g1,9761:32583029,40061574 -g1,9761:6797234,40061574 -g1,9761:6797234,40061574 -g1,9761:32583029,40061574 -g1,9761:32583029,40061574 -) -h1,9761:6797234,40258182:0,0,0 -(1,9765:6797234,41372846:25785795,513147,126483 -h1,9764:6797234,41372846:983040,0,0 -k1,9764:9552822,41372846:220655 -k1,9764:10239437,41372846:220654 -k1,9764:11630565,41372846:220655 -k1,9764:13117375,41372846:220654 -k1,9764:14357115,41372846:220655 -k1,9764:16073956,41372846:220654 -k1,9764:16910649,41372846:220655 -k1,9764:18150388,41372846:220654 -k1,9764:21032460,41372846:220655 -k1,9764:23108438,41372846:220654 -k1,9764:25812908,41372846:220655 -k1,9764:26684990,41372846:220654 -k1,9764:30744089,41372846:220655 -k1,9765:32583029,41372846:0 -) -(1,9765:6797234,42214334:25785795,513147,134348 -(1,9764:6797234,42214334:0,452978,115847 -r1,9773:9265771,42214334:2468537,568825,115847 -k1,9764:6797234,42214334:-2468537 -) -(1,9764:6797234,42214334:2468537,452978,115847 -k1,9764:6797234,42214334:3277 -h1,9764:9262494,42214334:0,411205,112570 -) -k1,9764:9464547,42214334:198776 -k1,9764:13179985,42214334:198776 -k1,9764:14570206,42214334:198776 -k1,9764:15887026,42214334:198776 -k1,9764:16543899,42214334:198776 -k1,9764:18444645,42214334:198776 -k1,9764:21938571,42214334:198776 -k1,9764:23467727,42214334:198775 -k1,9764:24685588,42214334:198776 -k1,9764:26895009,42214334:198776 -k1,9764:27760941,42214334:198776 -(1,9764:27760941,42214334:0,414482,115847 -r1,9773:28119207,42214334:358266,530329,115847 -k1,9764:27760941,42214334:-358266 -) -(1,9764:27760941,42214334:358266,414482,115847 -k1,9764:27760941,42214334:3277 -h1,9764:28115930,42214334:0,411205,112570 -) -k1,9764:28491653,42214334:198776 -(1,9764:28491653,42214334:0,452978,115847 -r1,9773:28849919,42214334:358266,568825,115847 -k1,9764:28491653,42214334:-358266 -) -(1,9764:28491653,42214334:358266,452978,115847 -k1,9764:28491653,42214334:3277 -h1,9764:28846642,42214334:0,411205,112570 -) -k1,9764:29222365,42214334:198776 -(1,9764:29222365,42214334:0,452978,115847 -r1,9773:30635766,42214334:1413401,568825,115847 -k1,9764:29222365,42214334:-1413401 -) -(1,9764:29222365,42214334:1413401,452978,115847 -k1,9764:29222365,42214334:3277 -h1,9764:30632489,42214334:0,411205,112570 -) -k1,9764:30834542,42214334:198776 -k1,9764:32224763,42214334:198776 -(1,9764:32224763,42214334:0,452978,115847 -r1,9773:32583029,42214334:358266,568825,115847 -k1,9764:32224763,42214334:-358266 -) -(1,9764:32224763,42214334:358266,452978,115847 -k1,9764:32224763,42214334:3277 -h1,9764:32579752,42214334:0,411205,112570 -) -k1,9764:32583029,42214334:0 -) -(1,9765:6797234,43055822:25785795,505283,126483 -g1,9764:9219444,43055822 -g1,9764:11428662,43055822 -g1,9764:12646976,43055822 -k1,9765:32583029,43055822:18347460 -g1,9765:32583029,43055822 -) -(1,9767:6797234,43897310:25785795,513147,126483 -h1,9766:6797234,43897310:983040,0,0 -k1,9766:8605588,43897310:197479 -(1,9766:8605588,43897310:0,459977,115847 -r1,9773:9667277,43897310:1061689,575824,115847 -k1,9766:8605588,43897310:-1061689 -) -(1,9766:8605588,43897310:1061689,459977,115847 -k1,9766:8605588,43897310:3277 -h1,9766:9664000,43897310:0,411205,112570 -) -k1,9766:9864756,43897310:197479 -k1,9766:11807460,43897310:197480 -k1,9766:13024024,43897310:197479 -k1,9766:14313988,43897310:197479 -k1,9766:15178623,43897310:197479 -(1,9766:15178623,43897310:0,452978,115847 -r1,9773:17647160,43897310:2468537,568825,115847 -k1,9766:15178623,43897310:-2468537 -) -(1,9766:15178623,43897310:2468537,452978,115847 -k1,9766:15178623,43897310:3277 -h1,9766:17643883,43897310:0,411205,112570 -) -k1,9766:17844640,43897310:197480 -k1,9766:19233564,43897310:197479 -(1,9766:19233564,43897310:0,452978,115847 -r1,9773:21350389,43897310:2116825,568825,115847 -k1,9766:19233564,43897310:-2116825 -) -(1,9766:19233564,43897310:2116825,452978,115847 -k1,9766:19233564,43897310:3277 -h1,9766:21347112,43897310:0,411205,112570 -) -k1,9766:21547868,43897310:197479 -k1,9766:23925730,43897310:197479 -k1,9766:24870976,43897310:197480 -k1,9766:27795408,43897310:197479 -k1,9766:28940538,43897310:197479 -k1,9766:32583029,43897310:0 -) -(1,9767:6797234,44738798:25785795,513147,134348 -k1,9766:10525959,44738798:192402 -k1,9766:11196118,44738798:192402 -k1,9766:12407605,44738798:192402 -(1,9766:12407605,44738798:0,459977,115847 -r1,9773:13469294,44738798:1061689,575824,115847 -k1,9766:12407605,44738798:-1061689 -) -(1,9766:12407605,44738798:1061689,459977,115847 -k1,9766:12407605,44738798:3277 -h1,9766:13466017,44738798:0,411205,112570 -) -k1,9766:13661697,44738798:192403 -k1,9766:16877930,44738798:192402 -k1,9766:17601829,44738798:192402 -k1,9766:18860502,44738798:192402 -k1,9766:21353873,44738798:192402 -k1,9766:23906883,44738798:192403 -k1,9766:25046936,44738798:192402 -k1,9766:26258423,44738798:192402 -k1,9766:30845014,44738798:192402 -k1,9766:32583029,44738798:0 -) -(1,9767:6797234,45580286:25785795,513147,126483 -g1,9766:11371647,45580286 -g1,9766:12589961,45580286 -g1,9766:13881675,45580286 -g1,9766:14740196,45580286 -g1,9766:15295285,45580286 -(1,9766:15295285,45580286:0,452978,115847 -r1,9773:17060398,45580286:1765113,568825,115847 -k1,9766:15295285,45580286:-1765113 -) -(1,9766:15295285,45580286:1765113,452978,115847 -k1,9766:15295285,45580286:3277 -h1,9766:17057121,45580286:0,411205,112570 -) -g1,9766:17259627,45580286 -g1,9766:18141741,45580286 -g1,9766:18696830,45580286 -(1,9766:18696830,45580286:0,414482,115847 -r1,9773:20813655,45580286:2116825,530329,115847 -k1,9766:18696830,45580286:-2116825 -) -(1,9766:18696830,45580286:2116825,414482,115847 -k1,9766:18696830,45580286:3277 -h1,9766:20810378,45580286:0,411205,112570 -) -g1,9766:21012884,45580286 -g1,9766:22627035,45580286 -g1,9766:24163198,45580286 -g1,9766:25110193,45580286 -g1,9766:26959619,45580286 -k1,9767:32583029,45580286:1699114 -g1,9767:32583029,45580286 -) -] -g1,9768:32583029,45706769 -) -h1,9768:6630773,45706769:0,0,0 -] -(1,9773:32583029,45706769:0,0,0 -g1,9773:32583029,45706769 -) -) -] -(1,9773:6630773,47279633:25952256,0,0 -h1,9773:6630773,47279633:25952256,0,0 -) -] -(1,9773:4262630,4025873:0,0,0 -[1,9773:-473656,4025873:0,0,0 -(1,9773:-473656,-710413:0,0,0 -(1,9773:-473656,-710413:0,0,0 -g1,9773:-473656,-710413 ) -g1,9773:-473656,-710413 +[1,8892:6630773,47279633:25952256,43253760,0 +[1,8892:6630773,4812305:25952256,786432,0 +(1,8892:6630773,4812305:25952256,505283,126483 +(1,8892:6630773,4812305:25952256,505283,126483 +g1,8892:3078558,4812305 +[1,8892:3078558,4812305:0,0,0 +(1,8892:3078558,2439708:0,1703936,0 +k1,8892:1358238,2439708:-1720320 +(1,8606:1358238,2439708:1720320,1703936,0 +(1,8606:1358238,2439708:1179648,16384,0 +r1,8892:2537886,2439708:1179648,16384,0 ) -] +g1,8606:3062174,2439708 +(1,8606:3062174,2439708:16384,1703936,0 +[1,8606:3062174,2439708:25952256,1703936,0 +(1,8606:3062174,1915420:25952256,1179648,0 +(1,8606:3062174,1915420:16384,1179648,0 +r1,8892:3078558,1915420:16384,1179648,0 +) +k1,8606:29014430,1915420:25935872 +g1,8606:29014430,1915420 ) ] -!29267 -}164 -Input:1430:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1431:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1432:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1433:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1434:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1435:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1436:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1437:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1438:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1439:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1440:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1441:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1140 -{165 -[1,9851:4262630,47279633:28320399,43253760,0 -(1,9851:4262630,4025873:0,0,0 -[1,9851:-473656,4025873:0,0,0 -(1,9851:-473656,-710413:0,0,0 -(1,9851:-473656,-644877:0,0,0 -k1,9851:-473656,-644877:-65536 ) -(1,9851:-473656,4736287:0,0,0 -k1,9851:-473656,4736287:5209943 ) -g1,9851:-473656,-710413 ) ] +[1,8892:3078558,4812305:0,0,0 +(1,8892:3078558,2439708:0,1703936,0 +g1,8892:29030814,2439708 +g1,8892:36135244,2439708 +(1,8606:36135244,2439708:1720320,1703936,0 +(1,8606:36135244,2439708:16384,1703936,0 +[1,8606:36135244,2439708:25952256,1703936,0 +(1,8606:36135244,1915420:25952256,1179648,0 +(1,8606:36135244,1915420:16384,1179648,0 +r1,8892:36151628,1915420:16384,1179648,0 +) +k1,8606:62087500,1915420:25935872 +g1,8606:62087500,1915420 +) +] +) +g1,8606:36675916,2439708 +(1,8606:36675916,2439708:1179648,16384,0 +r1,8892:37855564,2439708:1179648,16384,0 +) ) -[1,9851:6630773,47279633:25952256,43253760,0 -[1,9851:6630773,4812305:25952256,786432,0 -(1,9851:6630773,4812305:25952256,505283,134348 -(1,9851:6630773,4812305:25952256,505283,134348 -g1,9851:3078558,4812305 -[1,9851:3078558,4812305:0,0,0 -(1,9851:3078558,2439708:0,1703936,0 -k1,9851:1358238,2439708:-1720320 -(1,8393:1358238,2439708:1720320,1703936,0 -(1,8393:1358238,2439708:1179648,16384,0 -r1,9851:2537886,2439708:1179648,16384,0 +k1,8892:3078556,2439708:-34777008 ) -g1,8393:3062174,2439708 -(1,8393:3062174,2439708:16384,1703936,0 -[1,8393:3062174,2439708:25952256,1703936,0 -(1,8393:3062174,1915420:25952256,1179648,0 -(1,8393:3062174,1915420:16384,1179648,0 -r1,9851:3078558,1915420:16384,1179648,0 +] +[1,8892:3078558,4812305:0,0,0 +(1,8892:3078558,49800853:0,16384,2228224 +k1,8892:1358238,49800853:-1720320 +(1,8606:1358238,49800853:1720320,16384,2228224 +(1,8606:1358238,49800853:1179648,16384,0 +r1,8892:2537886,49800853:1179648,16384,0 +) +g1,8606:3062174,49800853 +(1,8606:3062174,52029077:16384,1703936,0 +[1,8606:3062174,52029077:25952256,1703936,0 +(1,8606:3062174,51504789:25952256,1179648,0 +(1,8606:3062174,51504789:16384,1179648,0 +r1,8892:3078558,51504789:16384,1179648,0 ) -k1,8393:29014430,1915420:25935872 -g1,8393:29014430,1915420 +k1,8606:29014430,51504789:25935872 +g1,8606:29014430,51504789 ) ] ) ) ) ] -[1,9851:3078558,4812305:0,0,0 -(1,9851:3078558,2439708:0,1703936,0 -g1,9851:29030814,2439708 -g1,9851:36135244,2439708 -(1,8393:36135244,2439708:1720320,1703936,0 -(1,8393:36135244,2439708:16384,1703936,0 -[1,8393:36135244,2439708:25952256,1703936,0 -(1,8393:36135244,1915420:25952256,1179648,0 -(1,8393:36135244,1915420:16384,1179648,0 -r1,9851:36151628,1915420:16384,1179648,0 +[1,8892:3078558,4812305:0,0,0 +(1,8892:3078558,49800853:0,16384,2228224 +g1,8892:29030814,49800853 +g1,8892:36135244,49800853 +(1,8606:36135244,49800853:1720320,16384,2228224 +(1,8606:36135244,52029077:16384,1703936,0 +[1,8606:36135244,52029077:25952256,1703936,0 +(1,8606:36135244,51504789:25952256,1179648,0 +(1,8606:36135244,51504789:16384,1179648,0 +r1,8892:36151628,51504789:16384,1179648,0 ) -k1,8393:62087500,1915420:25935872 -g1,8393:62087500,1915420 +k1,8606:62087500,51504789:25935872 +g1,8606:62087500,51504789 ) ] ) -g1,8393:36675916,2439708 -(1,8393:36675916,2439708:1179648,16384,0 -r1,9851:37855564,2439708:1179648,16384,0 +g1,8606:36675916,49800853 +(1,8606:36675916,49800853:1179648,16384,0 +r1,8892:37855564,49800853:1179648,16384,0 ) ) -k1,9851:3078556,2439708:-34777008 +k1,8892:3078556,49800853:-34777008 ) ] -[1,9851:3078558,4812305:0,0,0 -(1,9851:3078558,49800853:0,16384,2228224 -k1,9851:1358238,49800853:-1720320 -(1,8393:1358238,49800853:1720320,16384,2228224 -(1,8393:1358238,49800853:1179648,16384,0 -r1,9851:2537886,49800853:1179648,16384,0 +g1,8892:6630773,4812305 +g1,8892:6630773,4812305 +g1,8892:10273919,4812305 +g1,8892:13857427,4812305 +k1,8892:31387651,4812305:17530224 ) -g1,8393:3062174,49800853 -(1,8393:3062174,52029077:16384,1703936,0 -[1,8393:3062174,52029077:25952256,1703936,0 -(1,8393:3062174,51504789:25952256,1179648,0 -(1,8393:3062174,51504789:16384,1179648,0 -r1,9851:3078558,51504789:16384,1179648,0 -) -k1,8393:29014430,51504789:25935872 -g1,8393:29014430,51504789 ) ] +[1,8892:6630773,45706769:25952256,40108032,0 +(1,8892:6630773,45706769:25952256,40108032,0 +(1,8892:6630773,45706769:0,0,0 +g1,8892:6630773,45706769 ) +[1,8892:6630773,45706769:25952256,40108032,0 +(1,8835:6630773,16626546:25952256,11027809,0 +k1,8835:16423845,16626546:9793072 +(1,8820:16423845,16626546:0,0,0 +g1,8820:16423845,16626546 +g1,8820:16423845,16626546 +g1,8820:16096165,16626546 +(1,8820:16096165,16626546:0,0,0 ) +g1,8820:16423845,16626546 ) -] -[1,9851:3078558,4812305:0,0,0 -(1,9851:3078558,49800853:0,16384,2228224 -g1,9851:29030814,49800853 -g1,9851:36135244,49800853 -(1,8393:36135244,49800853:1720320,16384,2228224 -(1,8393:36135244,52029077:16384,1703936,0 -[1,8393:36135244,52029077:25952256,1703936,0 -(1,8393:36135244,51504789:25952256,1179648,0 -(1,8393:36135244,51504789:16384,1179648,0 -r1,9851:36151628,51504789:16384,1179648,0 +(1,8833:16423845,16626546:6366112,11027809,0 +g1,8833:19606901,16626546 +(1,8833:19606901,6544183:0,0,0 +(1,8833:19606901,6544183:0,0,0 +g1,8822:19606901,6544183 +(1,8823:19606901,6544183:0,0,0 +(1,8823:19606901,6544183:0,0,0 +g1,8823:19606901,6544183 +g1,8823:19606901,6544183 +g1,8823:19606901,6544183 +g1,8823:19606901,6544183 +g1,8823:19606901,6544183 +(1,8823:19606901,6544183:0,0,0 +(1,8823:19606901,6544183:589824,56623,0 +(1,8823:19606901,6544183:589824,56623,0 ) -k1,8393:62087500,51504789:25935872 -g1,8393:62087500,51504789 +g1,8823:20196725,6544183 ) -] ) -g1,8393:36675916,49800853 -(1,8393:36675916,49800853:1179648,16384,0 -r1,9851:37855564,49800853:1179648,16384,0 +g1,8823:19606901,6544183 +g1,8823:19606901,6544183 ) ) -k1,9851:3078556,49800853:-34777008 +g1,8823:19606901,6544183 +(1,8824:19606901,6544183:0,0,0 +(1,8824:19606901,6544183:0,0,0 +g1,8824:19606901,6544183 +g1,8824:19606901,6544183 +g1,8824:19606901,6544183 +g1,8824:19606901,6544183 +g1,8824:19606901,6544183 +(1,8824:19606901,6544183:0,0,0 +(1,8824:19606901,6544183:0,0,0 +(1,8824:19606901,6544183:0,0,0 ) -] -g1,9851:6630773,4812305 -k1,9851:21643106,4812305:13816956 -g1,9851:23265777,4812305 -g1,9851:24088253,4812305 -g1,9851:28572226,4812305 -g1,9851:29981905,4812305 -) -) -] -[1,9851:6630773,45706769:25952256,40108032,0 -(1,9851:6630773,45706769:25952256,40108032,0 -(1,9851:6630773,45706769:0,0,0 -g1,9851:6630773,45706769 -) -[1,9851:6630773,45706769:25952256,40108032,0 -(1,9770:6630773,6254097:25952256,555811,139132 -(1,9770:6630773,6254097:2450326,534184,12975 -g1,9770:6630773,6254097 -g1,9770:9081099,6254097 -) -(1,9770:9081099,6254097:0,497948,127104 -r1,9851:11022068,6254097:1940969,625052,127104 -k1,9770:9081099,6254097:-1940969 +g1,8824:19606901,6544183 ) -(1,9770:9081099,6254097:1940969,497948,127104 -k1,9770:9081099,6254097:3277 -h1,9770:11018791,6254097:0,452326,123827 -) -g1,9770:11246988,6254097 -k1,9770:32583029,6254097:19364390 -g1,9770:32583029,6254097 -) -(1,9772:6630773,7488801:25952256,513147,126483 -(1,9771:6630773,7488801:0,452978,115847 -r1,9851:8395886,7488801:1765113,568825,115847 -k1,9771:6630773,7488801:-1765113 -) -(1,9771:6630773,7488801:1765113,452978,115847 -k1,9771:6630773,7488801:3277 -h1,9771:8392609,7488801:0,411205,112570 -) -k1,9771:8690074,7488801:294188 -k1,9771:10729486,7488801:294188 -k1,9771:12015234,7488801:294188 -k1,9771:15614403,7488801:294188 -k1,9771:18059483,7488801:294188 -k1,9771:19820367,7488801:294188 -k1,9771:20580516,7488801:294188 -k1,9771:21940975,7488801:294188 -k1,9771:22921325,7488801:294188 -k1,9771:26520494,7488801:294188 -k1,9771:28327908,7488801:294188 -k1,9771:29308258,7488801:294188 -(1,9771:29308258,7488801:0,459977,115847 -r1,9851:30369947,7488801:1061689,575824,115847 -k1,9771:29308258,7488801:-1061689 -) -(1,9771:29308258,7488801:1061689,459977,115847 -k1,9771:29308258,7488801:3277 -h1,9771:30366670,7488801:0,411205,112570 -) -k1,9771:30664135,7488801:294188 -k1,9771:32583029,7488801:0 -) -(1,9772:6630773,8330289:25952256,513147,134348 -k1,9771:9141676,8330289:171923 -k1,9771:9972891,8330289:171923 -k1,9771:10500673,8330289:171922 -k1,9771:11666122,8330289:171923 -k1,9771:12520930,8330289:171923 -k1,9771:14844400,8330289:171923 -k1,9771:16396511,8330289:171923 -k1,9771:17921096,8330289:171922 -k1,9771:18448879,8330289:171923 -k1,9771:20690429,8330289:171923 -k1,9771:24108350,8330289:171923 -k1,9771:26165744,8330289:171923 -k1,9771:26869163,8330289:171922 -k1,9771:29328293,8330289:171923 -k1,9771:30270919,8330289:171923 -k1,9772:32583029,8330289:0 -) -(1,9772:6630773,9171777:25952256,505283,102891 -g1,9771:8344539,9171777 -g1,9771:9615937,9171777 -g1,9771:11700637,9171777 -g1,9771:13004148,9171777 -g1,9771:14489193,9171777 -g1,9771:15436188,9171777 -g1,9771:15991277,9171777 -k1,9772:32583029,9171777:13906742 -g1,9772:32583029,9171777 -) -(1,9790:6630773,22281762:25952256,12519559,0 -k1,9790:11982920,22281762:5352147 -(1,9773:11982920,22281762:0,0,0 -g1,9773:11982920,22281762 -g1,9773:11982920,22281762 -g1,9773:11655240,22281762 -(1,9773:11655240,22281762:0,0,0 -) -g1,9773:11982920,22281762 -) -(1,9788:11982920,22281762:15247963,12519559,0 -g1,9788:15470289,22281762 -(1,9788:15470289,10707649:0,0,0 -(1,9788:15470289,10707649:0,0,0 -g1,9775:15470289,10707649 -(1,9776:15470289,10707649:0,0,0 -(1,9776:15470289,10707649:0,0,0 -g1,9776:15470289,10707649 -g1,9776:15470289,10707649 -g1,9776:15470289,10707649 -g1,9776:15470289,10707649 -g1,9776:15470289,10707649 -(1,9776:15470289,10707649:0,0,0 -(1,9776:15470289,10707649:589824,56623,0 -(1,9776:15470289,10707649:589824,56623,0 -) -g1,9776:16060113,10707649 -) -) -g1,9776:15470289,10707649 -g1,9776:15470289,10707649 -) -) -g1,9776:15470289,10707649 -(1,9777:15470289,10707649:0,0,0 -(1,9777:15470289,10707649:0,0,0 -g1,9777:15470289,10707649 -g1,9777:15470289,10707649 -g1,9777:15470289,10707649 -g1,9777:15470289,10707649 -g1,9777:15470289,10707649 -(1,9777:15470289,10707649:0,0,0 -(1,9777:15470289,10707649:358613,319685,0 -(1,9777:15470289,10707649:358613,319685,0 -$1,9777:15470289,10707649 -$1,9777:15828902,10707649 -) -g1,9777:15828902,10707649 -) -) -g1,9777:15470289,10707649 -g1,9777:15470289,10707649 -) -) -g1,9777:15470289,10707649 -(1,9778:15470289,10707649:0,0,0 -(1,9778:15470289,10707649:0,0,0 -g1,9778:15470289,10707649 -g1,9778:15470289,10707649 -(1,9778:15470289,10707649:0,0,0 -(1,9778:15470289,10707649:4754664,408008,104590 -(1,9778:15470289,10707649:4754664,408008,104590 -(1,9778:15470289,10707649:0,408008,104590 -r1,9851:20224953,10707649:4754664,512598,104590 -k1,9778:15470289,10707649:-4754664 -) -(1,9778:15470289,10707649:4754664,408008,104590 -g1,9778:17372810,10707649 -h1,9778:20221676,10707649:0,370085,101313 -) -) -g1,9778:20224953,10707649 -) -) -g1,9778:15470289,10707649 -g1,9778:15470289,10707649 -) -) -(1,9779:15470289,10707649:0,0,0 -(1,9779:15470289,10707649:0,0,0 -g1,9779:15470289,10707649 -g1,9779:15470289,10707649 -g1,9779:15470289,10707649 -g1,9779:15470289,10707649 -g1,9779:15470289,10707649 -(1,9779:15470289,10707649:0,0,0 -(1,9779:15470289,10707649:4121582,373362,104590 -(1,9779:15470289,10707649:4121582,373362,104590 -(1,9779:15470289,10707649:0,373362,104590 -r1,9851:19591871,10707649:4121582,477952,104590 -k1,9779:15470289,10707649:-4121582 -) -(1,9779:15470289,10707649:4121582,373362,104590 -g1,9779:18955513,10707649 -h1,9779:19588594,10707649:0,370085,101313 -) -) -g1,9779:19591871,10707649 -) -) -g1,9779:15470289,10707649 -g1,9779:15470289,10707649 -) -) -(1,9780:15470289,10707649:0,0,0 -(1,9780:15470289,10707649:0,0,0 -g1,9780:15470289,10707649 -g1,9780:15470289,10707649 -g1,9780:15470289,10707649 -g1,9780:15470289,10707649 -g1,9780:15470289,10707649 -(1,9780:15470289,10707649:0,0,0 -(1,9780:15470289,10707649:4121582,373362,104590 -(1,9780:15470289,10707649:4121582,373362,104590 -(1,9780:15470289,10707649:0,373362,104590 -r1,9851:19591871,10707649:4121582,477952,104590 -k1,9780:15470289,10707649:-4121582 ) -(1,9780:15470289,10707649:4121582,373362,104590 -g1,9780:18955513,10707649 -h1,9780:19588594,10707649:0,370085,101313 +g1,8824:19606901,6544183 +g1,8824:19606901,6544183 ) ) -g1,9780:19591871,10707649 +g1,8824:19606901,6544183 +g1,8825:19606901,6544183 +(1,8825:19606901,6544183:0,0,0 +(1,8825:19606901,6544183:0,0,0 +g1,8825:19606901,6544183 +g1,8825:19606901,6544183 +g1,8825:19606901,6544183 +g1,8825:19606901,6544183 +g1,8825:19606901,6544183 +(1,8825:19606901,6544183:0,0,0 +(1,8825:19606901,6544183:4121582,373362,104590 +(1,8825:19606901,6544183:4121582,373362,104590 +(1,8825:19606901,6544183:0,373362,104590 +r1,8892:23728483,6544183:4121582,477952,104590 +k1,8825:19606901,6544183:-4121582 +) +(1,8825:19606901,6544183:4121582,373362,104590 +g1,8825:23092125,6544183 +h1,8825:23725206,6544183:0,370085,101313 +) +) +g1,8825:23728483,6544183 +) +) +g1,8825:19606901,6544183 +g1,8825:19606901,6544183 +) +) +(1,8826:19606901,6544183:0,0,0 +(1,8826:19606901,6544183:0,0,0 +g1,8826:19606901,6544183 +g1,8826:19606901,6544183 +g1,8826:19606901,6544183 +g1,8826:19606901,6544183 +g1,8826:19606901,6544183 +(1,8826:19606901,6544183:0,0,0 +(1,8826:19606901,6544183:4121582,373362,104590 +(1,8826:19606901,6544183:4121582,373362,104590 +(1,8826:19606901,6544183:0,373362,104590 +r1,8892:23728483,6544183:4121582,477952,104590 +k1,8826:19606901,6544183:-4121582 +) +(1,8826:19606901,6544183:4121582,373362,104590 +g1,8826:23092125,6544183 +h1,8826:23725206,6544183:0,370085,101313 +) +) +g1,8826:23728483,6544183 +) +) +g1,8826:19606901,6544183 +g1,8826:19606901,6544183 +) +) +g1,8826:19606901,6544183 +g1,8827:19606901,6544183 +(1,8827:19606901,6544183:0,0,0 +(1,8827:19606901,6544183:0,0,0 +g1,8827:19606901,6544183 +g1,8827:19606901,6544183 +g1,8827:19606901,6544183 +g1,8827:19606901,6544183 +g1,8827:19606901,6544183 +(1,8827:19606901,6544183:0,0,0 +(1,8827:19606901,6544183:589824,56623,0 +(1,8827:19606901,6544183:589824,56623,0 +) +g1,8827:20196725,6544183 +) +) +g1,8827:19606901,6544183 +g1,8827:19606901,6544183 +) +) +g1,8827:19606901,6544183 +g1,8828:19606901,6544183 +g1,8828:19606901,6544183 +g1,8828:19606901,6544183 +g1,8828:19606901,6544183 +g1,8828:19606901,6544183 +g1,8828:19606901,6544183 +g1,8829:19606901,6544183 +g1,8829:19606901,6544183 +g1,8829:19606901,6544183 +g1,8829:19606901,6544183 +g1,8829:19606901,6544183 +g1,8829:19606901,6544183 +g1,8830:19606901,6544183 +g1,8830:19606901,6544183 +g1,8830:19606901,6544183 +g1,8830:19606901,6544183 +g1,8830:19606901,6544183 +g1,8830:19606901,6544183 +g1,8831:19606901,6544183 +g1,8831:19606901,6544183 +g1,8831:19606901,6544183 +g1,8831:19606901,6544183 +g1,8831:19606901,6544183 +g1,8831:19606901,6544183 +g1,8832:19606901,6544183 +g1,8832:19606901,6544183 +g1,8832:19606901,6544183 +g1,8832:19606901,6544183 +g1,8832:19606901,6544183 +g1,8832:19606901,6544183 +g1,8833:19606901,6544183 +g1,8833:19606901,6544183 +) +g1,8833:19606901,6544183 +) +) +g1,8835:22789957,16626546 +k1,8835:32583029,16626546:9793072 +) +v1,8838:6630773,17966761:0,393216,0 +(1,8855:6630773,23461615:25952256,5888070,196608 +g1,8855:6630773,23461615 +g1,8855:6630773,23461615 +g1,8855:6434165,23461615 +(1,8855:6434165,23461615:0,5888070,196608 +r1,8892:32779637,23461615:26345472,6084678,196608 +k1,8855:6434165,23461615:-26345472 +) +(1,8855:6434165,23461615:26345472,5888070,196608 +[1,8855:6630773,23461615:25952256,5691462,0 +(1,8840:6630773,18194592:25952256,424439,106246 +(1,8839:6630773,18194592:0,0,0 +g1,8839:6630773,18194592 +g1,8839:6630773,18194592 +g1,8839:6303093,18194592 +(1,8839:6303093,18194592:0,0,0 +) +g1,8839:6630773,18194592 +) +k1,8840:6630773,18194592:0 +h1,8840:9950313,18194592:0,0,0 +k1,8840:32583029,18194592:22632716 +g1,8840:32583029,18194592 +) +(1,8844:6630773,19010519:25952256,424439,79822 +(1,8842:6630773,19010519:0,0,0 +g1,8842:6630773,19010519 +g1,8842:6630773,19010519 +g1,8842:6303093,19010519 +(1,8842:6303093,19010519:0,0,0 +) +g1,8842:6630773,19010519 +) +g1,8844:7626635,19010519 +g1,8844:8954451,19010519 +h1,8844:9950313,19010519:0,0,0 +k1,8844:32583029,19010519:22632716 +g1,8844:32583029,19010519 +) +(1,8846:6630773,19826446:25952256,424439,79822 +(1,8845:6630773,19826446:0,0,0 +g1,8845:6630773,19826446 +g1,8845:6630773,19826446 +g1,8845:6303093,19826446 +(1,8845:6303093,19826446:0,0,0 +) +g1,8845:6630773,19826446 +) +h1,8846:6962727,19826446:0,0,0 +k1,8846:32583029,19826446:25620302 +g1,8846:32583029,19826446 +) +(1,8847:6630773,20511301:25952256,424439,106246 +h1,8847:6630773,20511301:0,0,0 +g1,8847:6962727,20511301 +g1,8847:7294681,20511301 +k1,8847:7294681,20511301:0 +h1,8847:10614221,20511301:0,0,0 +k1,8847:32583029,20511301:21968808 +g1,8847:32583029,20511301 +) +(1,8848:6630773,21196156:25952256,424439,106246 +h1,8848:6630773,21196156:0,0,0 +g1,8848:6962727,21196156 +g1,8848:7294681,21196156 +k1,8848:7294681,21196156:0 +h1,8848:10614221,21196156:0,0,0 +k1,8848:32583029,21196156:21968808 +g1,8848:32583029,21196156 +) +(1,8849:6630773,21881011:25952256,424439,79822 +h1,8849:6630773,21881011:0,0,0 +h1,8849:6962727,21881011:0,0,0 +k1,8849:32583029,21881011:25620302 +g1,8849:32583029,21881011 +) +(1,8854:6630773,22696938:25952256,424439,79822 +(1,8851:6630773,22696938:0,0,0 +g1,8851:6630773,22696938 +g1,8851:6630773,22696938 +g1,8851:6303093,22696938 +(1,8851:6303093,22696938:0,0,0 +) +g1,8851:6630773,22696938 +) +g1,8854:7626635,22696938 +g1,8854:8954451,22696938 +h1,8854:9950313,22696938:0,0,0 +k1,8854:32583029,22696938:22632716 +g1,8854:32583029,22696938 +) +(1,8854:6630773,23381793:25952256,424439,79822 +h1,8854:6630773,23381793:0,0,0 +g1,8854:7626635,23381793 +g1,8854:8954451,23381793 +h1,8854:9950313,23381793:0,0,0 +k1,8854:32583029,23381793:22632716 +g1,8854:32583029,23381793 +) +] +) +g1,8855:32583029,23461615 +g1,8855:6630773,23461615 +g1,8855:6630773,23461615 +g1,8855:32583029,23461615 +g1,8855:32583029,23461615 +) +h1,8855:6630773,23658223:0,0,0 +(1,8859:6630773,24523303:25952256,513147,134348 +h1,8858:6630773,24523303:983040,0,0 +k1,8858:9033171,24523303:222671 +k1,8858:12138771,24523303:222671 +k1,8858:13020734,24523303:222671 +k1,8858:14262491,24523303:222672 +k1,8858:15633353,24523303:222671 +k1,8858:17028463,24523303:222671 +k1,8858:20767796,24523303:222671 +k1,8858:22845791,24523303:222671 +k1,8858:23599959,24523303:222671 +k1,8858:24481923,24523303:222672 +k1,8858:25513964,24523303:222671 +k1,8858:29819528,24523303:222671 +k1,8858:30803727,24523303:222671 +k1,8858:32583029,24523303:0 +) +(1,8859:6630773,25388383:25952256,513147,126483 +k1,8858:7499687,25388383:241079 +k1,8858:8759850,25388383:241078 +k1,8858:11662346,25388383:241079 +k1,8858:13758749,25388383:241079 +k1,8858:15375429,25388383:241079 +k1,8858:16916086,25388383:241078 +k1,8858:19258249,25388383:241079 +k1,8858:20490888,25388383:241079 +k1,8858:21391258,25388383:241078 +k1,8858:24249190,25388383:241079 +k1,8858:25118104,25388383:241079 +k1,8858:26378268,25388383:241079 +k1,8858:29280763,25388383:241078 +k1,8858:31563944,25388383:241079 +k1,8858:32583029,25388383:0 +) +(1,8859:6630773,26253463:25952256,505283,126483 +k1,8858:8566597,26253463:255481 +k1,8858:11600805,26253463:255481 +k1,8858:12617815,26253463:255482 +k1,8858:13229156,26253463:255481 +k1,8858:16898407,26253463:255481 +k1,8858:20340248,26253463:255481 +k1,8858:21127226,26253463:255481 +k1,8858:22667213,26253463:255481 +k1,8858:25701422,26253463:255482 +k1,8858:26718431,26253463:255481 +k1,8858:27992997,26253463:255481 +k1,8858:29396669,26253463:255481 +k1,8858:32583029,26253463:0 +) +(1,8859:6630773,27118543:25952256,513147,126483 +k1,8858:9955355,27118543:263395 +k1,8858:12228739,27118543:263395 +k1,8858:13123901,27118543:263395 +k1,8858:16592007,27118543:263395 +k1,8858:20372064,27118543:263395 +k1,8858:21739741,27118543:263395 +k1,8858:22750902,27118543:263395 +k1,8858:26137743,27118543:263395 +k1,8858:27162666,27118543:263395 +k1,8858:28196764,27118543:263395 +k1,8858:31896867,27118543:263395 +k1,8858:32583029,27118543:0 +) +(1,8859:6630773,27983623:25952256,513147,126483 +k1,8858:8908571,27983623:248803 +k1,8858:9840259,27983623:248803 +k1,8858:10850589,27983623:248802 +k1,8858:11455252,27983623:248803 +k1,8858:14945466,27983623:248803 +k1,8858:15782127,27983623:248803 +k1,8858:16717092,27983623:248803 +k1,8858:19041419,27983623:248802 +k1,8858:21332324,27983623:248803 +k1,8858:22975078,27983623:248803 +k1,8858:24396320,27983623:248803 +k1,8858:28335454,27983623:248802 +k1,8858:30035879,27983623:248803 +k1,8858:30943974,27983623:248803 +k1,8858:32583029,27983623:0 +) +(1,8859:6630773,28848703:25952256,505283,134348 +g1,8858:11253682,28848703 +g1,8858:12223614,28848703 +g1,8858:15698988,28848703 +k1,8859:32583029,28848703:13636077 +g1,8859:32583029,28848703 +) +v1,8861:6630773,29533558:0,393216,0 +(1,8868:6630773,30657138:25952256,1516796,196608 +g1,8868:6630773,30657138 +g1,8868:6630773,30657138 +g1,8868:6434165,30657138 +(1,8868:6434165,30657138:0,1516796,196608 +r1,8892:32779637,30657138:26345472,1713404,196608 +k1,8868:6434165,30657138:-26345472 +) +(1,8868:6434165,30657138:26345472,1516796,196608 +[1,8868:6630773,30657138:25952256,1320188,0 +(1,8863:6630773,29761389:25952256,424439,86428 +(1,8862:6630773,29761389:0,0,0 +g1,8862:6630773,29761389 +g1,8862:6630773,29761389 +g1,8862:6303093,29761389 +(1,8862:6303093,29761389:0,0,0 +) +g1,8862:6630773,29761389 +) +g1,8863:7626635,29761389 +g1,8863:8290543,29761389 +g1,8863:9286405,29761389 +g1,8863:9950313,29761389 +g1,8863:10614221,29761389 +h1,8863:11278129,29761389:0,0,0 +k1,8863:32583029,29761389:21304900 +g1,8863:32583029,29761389 +) +(1,8867:6630773,30577316:25952256,424439,79822 +(1,8865:6630773,30577316:0,0,0 +g1,8865:6630773,30577316 +g1,8865:6630773,30577316 +g1,8865:6303093,30577316 +(1,8865:6303093,30577316:0,0,0 +) +g1,8865:6630773,30577316 +) +g1,8867:7626635,30577316 +g1,8867:8954451,30577316 +h1,8867:9286405,30577316:0,0,0 +k1,8867:32583029,30577316:23296624 +g1,8867:32583029,30577316 +) +] +) +g1,8868:32583029,30657138 +g1,8868:6630773,30657138 +g1,8868:6630773,30657138 +g1,8868:32583029,30657138 +g1,8868:32583029,30657138 +) +h1,8868:6630773,30853746:0,0,0 +(1,8872:6630773,31718826:25952256,505283,126483 +h1,8871:6630773,31718826:983040,0,0 +k1,8871:9073001,31718826:262501 +k1,8871:12521863,31718826:262502 +k1,8871:14639688,31718826:262501 +k1,8871:19265576,31718826:262501 +k1,8871:20812584,31718826:262502 +k1,8871:22450686,31718826:262501 +k1,8871:23732273,31718826:262502 +k1,8871:25675117,31718826:262501 +k1,8871:28716345,31718826:262501 +k1,8871:29740375,31718826:262502 +k1,8871:31021961,31718826:262501 +k1,8872:32583029,31718826:0 +) +(1,8872:6630773,32583906:25952256,505283,126483 +k1,8871:8937593,32583906:241125 +k1,8871:12365078,32583906:241125 +k1,8871:13292365,32583906:241125 +k1,8871:13889351,32583906:241126 +k1,8871:16013325,32583906:241125 +k1,8871:16785947,32583906:241125 +k1,8871:20090225,32583906:241125 +k1,8871:24648207,32583906:241125 +k1,8871:25502094,32583906:241125 +k1,8871:26762305,32583906:241126 +k1,8871:27418231,32583906:241083 +k1,8871:30253271,32583906:241125 +k1,8871:31563944,32583906:241125 +k1,8871:32583029,32583906:0 +) +(1,8872:6630773,33448986:25952256,505283,134348 +k1,8871:9274020,33448986:203342 +k1,8871:10577057,33448986:203343 +k1,8871:11431827,33448986:203342 +(1,8871:11431827,33448986:0,452978,115847 +r1,8892:13900364,33448986:2468537,568825,115847 +k1,8871:11431827,33448986:-2468537 +) +(1,8871:11431827,33448986:2468537,452978,115847 +k1,8871:11431827,33448986:3277 +h1,8871:13897087,33448986:0,411205,112570 +) +k1,8871:14103707,33448986:203343 +k1,8871:14838546,33448986:203342 +k1,8871:17413637,33448986:203343 +k1,8871:18268407,33448986:203342 +k1,8871:19490834,33448986:203342 +k1,8871:23107947,33448986:203343 +k1,8871:26671320,33448986:203342 +k1,8871:28642824,33448986:203343 +k1,8871:30312862,33448986:203342 +k1,8871:32583029,33448986:0 +) +(1,8872:6630773,34314066:25952256,505283,126483 +k1,8871:8248857,34314066:151388 +k1,8871:11916907,34314066:151388 +k1,8871:13572346,34314066:151388 +k1,8871:16958591,34314066:151388 +k1,8871:17978331,34314066:151388 +k1,8871:19505320,34314066:151388 +k1,8871:20681692,34314066:151389 +k1,8871:21852165,34314066:151388 +k1,8871:23846425,34314066:151388 +k1,8871:26776540,34314066:151388 +k1,8871:27689456,34314066:151388 +k1,8871:28859929,34314066:151388 +k1,8871:31252648,34314066:151388 +k1,8872:32583029,34314066:0 +k1,8872:32583029,34314066:0 +) +v1,8874:6630773,35179146:0,393216,0 +(1,8883:6630773,38377505:25952256,3591575,0 +g1,8883:6630773,38377505 +g1,8883:6237557,38377505 +r1,8892:6368629,38377505:131072,3591575,0 +g1,8883:6567858,38377505 +g1,8883:6764466,38377505 +[1,8883:6764466,38377505:25818563,3591575,0 +(1,8875:6764466,35451623:25818563,665693,196608 +(1,8874:6764466,35451623:0,665693,196608 +r1,8892:8010564,35451623:1246098,862301,196608 +k1,8874:6764466,35451623:-1246098 +) +(1,8874:6764466,35451623:1246098,665693,196608 +) +k1,8874:8227004,35451623:216440 +k1,8874:9544933,35451623:327680 +k1,8874:12178340,35451623:216439 +k1,8874:12926277,35451623:216440 +k1,8874:14428533,35451623:216440 +k1,8874:17448603,35451623:216440 +k1,8874:19706488,35451623:216439 +k1,8874:22446064,35451623:216440 +k1,8874:23681589,35451623:216440 +k1,8874:27311798,35451623:216439 +k1,8874:30714598,35451623:216440 +k1,8874:32583029,35451623:0 +) +(1,8875:6764466,36316703:25818563,505283,126483 +k1,8874:7927381,36316703:256552 +k1,8874:8835360,36316703:256551 +k1,8874:11360768,36316703:256552 +k1,8874:12636404,36316703:256551 +k1,8874:14573299,36316703:256552 +k1,8874:15287947,36316703:256551 +k1,8874:16676961,36316703:256552 +k1,8874:19117827,36316703:256551 +k1,8874:20565824,36316703:256552 +k1,8874:22256303,36316703:256551 +k1,8874:23630899,36316703:256552 +k1,8874:24906535,36316703:256551 +k1,8874:26659274,36316703:256552 +k1,8874:28107270,36316703:256551 +k1,8874:31124198,36316703:256552 +k1,8874:32583029,36316703:0 +) +(1,8875:6764466,37181783:25818563,505283,126483 +g1,8874:10243117,37181783 +g1,8874:11093774,37181783 +g1,8874:12312088,37181783 +g1,8874:14191660,37181783 +k1,8875:32583029,37181783:15438972 +g1,8875:32583029,37181783 +) +v1,8877:6764466,37866638:0,393216,0 +(1,8881:6764466,38180897:25818563,707475,196608 +g1,8881:6764466,38180897 +g1,8881:6764466,38180897 +g1,8881:6567858,38180897 +(1,8881:6567858,38180897:0,707475,196608 +r1,8892:32779637,38180897:26211779,904083,196608 +k1,8881:6567857,38180897:-26211780 +) +(1,8881:6567858,38180897:26211779,707475,196608 +[1,8881:6764466,38180897:25818563,510867,0 +(1,8879:6764466,38094469:25818563,424439,86428 +(1,8878:6764466,38094469:0,0,0 +g1,8878:6764466,38094469 +g1,8878:6764466,38094469 +g1,8878:6436786,38094469 +(1,8878:6436786,38094469:0,0,0 +) +g1,8878:6764466,38094469 +) +g1,8879:7760328,38094469 +g1,8879:8424236,38094469 +g1,8879:9420098,38094469 +g1,8879:10415960,38094469 +g1,8879:11411822,38094469 +g1,8879:12075730,38094469 +g1,8879:12739638,38094469 +g1,8879:13735500,38094469 +g1,8879:14399408,38094469 +g1,8879:15063316,38094469 +h1,8879:16059178,38094469:0,0,0 +k1,8879:32583029,38094469:16523851 +g1,8879:32583029,38094469 +) +] +) +g1,8881:32583029,38180897 +g1,8881:6764466,38180897 +g1,8881:6764466,38180897 +g1,8881:32583029,38180897 +g1,8881:32583029,38180897 +) +h1,8881:6764466,38377505:0,0,0 +] +g1,8883:32583029,38377505 +) +h1,8883:6630773,38377505:0,0,0 +v1,8886:6630773,39242585:0,393216,0 +(1,8887:6630773,43243930:25952256,4394561,0 +g1,8887:6630773,43243930 +g1,8887:6237557,43243930 +r1,8892:6368629,43243930:131072,4394561,0 +g1,8887:6567858,43243930 +g1,8887:6764466,43243930 +[1,8887:6764466,43243930:25818563,4394561,0 +(1,8887:6764466,39657127:25818563,807758,219026 +(1,8886:6764466,39657127:0,807758,219026 +r1,8892:7908217,39657127:1143751,1026784,219026 +k1,8886:6764466,39657127:-1143751 +) +(1,8886:6764466,39657127:1143751,807758,219026 +) +k1,8886:8092362,39657127:184145 +k1,8886:8420042,39657127:327680 +k1,8886:11592629,39657127:184145 +k1,8886:12308270,39657127:184144 +k1,8886:13151707,39657127:184145 +k1,8886:14808446,39657127:184145 +k1,8886:16085076,39657127:184145 +k1,8886:17030748,39657127:184144 +k1,8886:18994195,39657127:184145 +k1,8886:19648233,39657127:184145 +k1,8886:22605862,39657127:184145 +k1,8886:24767227,39657127:184144 +k1,8886:27631795,39657127:184145 +k1,8886:29209891,39657127:184145 +k1,8887:32583029,39657127:0 +) +(1,8887:6764466,40522207:25818563,513147,134348 +k1,8886:10070626,40522207:230555 +k1,8886:13828985,40522207:230556 +k1,8886:15757578,40522207:230555 +k1,8886:18591879,40522207:230556 +k1,8886:22021903,40522207:230556 +k1,8886:23443903,40522207:230555 +k1,8886:25876468,40522207:230555 +k1,8886:27804406,40522207:230556 +k1,8886:29953856,40522207:230556 +k1,8886:31052763,40522207:230555 +k1,8886:32583029,40522207:0 +) +(1,8887:6764466,41387287:25818563,513147,134348 +k1,8886:7603696,41387287:187802 +k1,8886:9296859,41387287:187801 +k1,8886:9840521,41387287:187802 +k1,8886:11921002,41387287:187801 +k1,8886:12768096,41387287:187802 +k1,8886:14452085,41387287:187802 +k1,8886:18156548,41387287:187801 +k1,8886:19030512,41387287:187802 +k1,8886:19684275,41387287:187802 +k1,8886:21252264,41387287:187801 +k1,8886:22944117,41387287:187802 +k1,8886:23487778,41387287:187801 +k1,8886:25548599,41387287:187802 +k1,8886:29096432,41387287:187802 +k1,8886:30237782,41387287:187801 +k1,8886:31558046,41387287:187802 +k1,8886:32583029,41387287:0 +) +(1,8887:6764466,42252367:25818563,513147,126483 +k1,8886:9145607,42252367:149640 +k1,8886:12286967,42252367:149641 +k1,8886:13095899,42252367:149640 +k1,8886:14264625,42252367:149641 +k1,8886:15506751,42252367:149641 +k1,8886:16315683,42252367:149640 +k1,8886:19879093,42252367:149640 +k1,8886:23545396,42252367:149641 +k1,8886:25737139,42252367:149641 +k1,8886:26502817,42252367:149640 +k1,8886:27671542,42252367:149640 +k1,8886:30165406,42252367:149641 +k1,8886:32583029,42252367:0 +) +(1,8887:6764466,43117447:25818563,505283,126483 +g1,8886:8155140,43117447 +g1,8886:8970407,43117447 +g1,8886:11587259,43117447 +h1,8886:11985718,43117447:0,0,0 +k1,8887:32583028,43117447:20423640 +g1,8887:32583028,43117447 +) +] +g1,8887:32583029,43243930 +) +h1,8887:6630773,43243930:0,0,0 +] +(1,8892:32583029,45706769:0,0,0 +g1,8892:32583029,45706769 +) +) +] +(1,8892:6630773,47279633:25952256,0,0 +h1,8892:6630773,47279633:25952256,0,0 +) +] +(1,8892:4262630,4025873:0,0,0 +[1,8892:-473656,4025873:0,0,0 +(1,8892:-473656,-710413:0,0,0 +(1,8892:-473656,-710413:0,0,0 +g1,8892:-473656,-710413 +) +g1,8892:-473656,-710413 +) +] +) +] +!21955 +}142 +Input:1207:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1208:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1209:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1210:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1211:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1212:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1213:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1214:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1215:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1216:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!952 +{143 +[1,8941:4262630,47279633:28320399,43253760,0 +(1,8941:4262630,4025873:0,0,0 +[1,8941:-473656,4025873:0,0,0 +(1,8941:-473656,-710413:0,0,0 +(1,8941:-473656,-644877:0,0,0 +k1,8941:-473656,-644877:-65536 ) +(1,8941:-473656,4736287:0,0,0 +k1,8941:-473656,4736287:5209943 ) -g1,9780:15470289,10707649 -g1,9780:15470289,10707649 -) -) -g1,9780:15470289,10707649 -g1,9781:15470289,10707649 -(1,9781:15470289,10707649:0,0,0 -(1,9781:15470289,10707649:0,0,0 -g1,9781:15470289,10707649 -g1,9781:15470289,10707649 -g1,9781:15470289,10707649 -g1,9781:15470289,10707649 -g1,9781:15470289,10707649 -(1,9781:15470289,10707649:0,0,0 -(1,9781:15470289,10707649:589824,56623,0 -(1,9781:15470289,10707649:589824,56623,0 -) -g1,9781:16060113,10707649 -) -) -g1,9781:15470289,10707649 -g1,9781:15470289,10707649 -) -) -g1,9781:15470289,10707649 -g1,9782:15470289,10707649 -g1,9782:15470289,10707649 -g1,9782:15470289,10707649 -g1,9782:15470289,10707649 -g1,9783:15470289,10707649 -g1,9783:15470289,10707649 -g1,9783:15470289,10707649 -(1,9783:15470289,10707649:0,0,0 -(1,9783:15470289,10707649:0,0,0 -g1,9783:15470289,10707649 -g1,9783:15470289,10707649 -g1,9783:15470289,10707649 -g1,9783:15470289,10707649 -g1,9783:15470289,10707649 -(1,9783:15470289,10707649:0,0,0 -(1,9783:15470289,10707649:1272717,373362,104590 -(1,9783:15470289,10707649:1272717,373362,104590 -(1,9783:15470289,10707649:0,373362,104590 -r1,9851:16743006,10707649:1272717,477952,104590 -k1,9783:15470289,10707649:-1272717 -) -(1,9783:15470289,10707649:1272717,373362,104590 -k1,9783:15470289,10707649:3277 -h1,9783:16739729,10707649:0,370085,101313 -) -) -g1,9783:16743006,10707649 -) -) -g1,9783:15470289,10707649 -g1,9783:15470289,10707649 -) -) -g1,9783:15470289,10707649 -g1,9784:15470289,10707649 -g1,9784:15470289,10707649 -g1,9784:15470289,10707649 -(1,9784:15470289,10707649:0,0,0 -(1,9784:15470289,10707649:0,0,0 -g1,9784:15470289,10707649 -g1,9784:15470289,10707649 -g1,9784:15470289,10707649 -g1,9784:15470289,10707649 -g1,9784:15470289,10707649 -(1,9784:15470289,10707649:0,0,0 -(1,9784:15470289,10707649:1589257,373362,104590 -(1,9784:15470289,10707649:1589257,373362,104590 -(1,9784:15470289,10707649:0,373362,104590 -r1,9851:17059546,10707649:1589257,477952,104590 -k1,9784:15470289,10707649:-1589257 -) -(1,9784:15470289,10707649:1589257,373362,104590 -k1,9784:15470289,10707649:3277 -h1,9784:17056269,10707649:0,370085,101313 -) -) -g1,9784:17059546,10707649 -) -) -g1,9784:15470289,10707649 -g1,9784:15470289,10707649 -) -) -g1,9784:15470289,10707649 -g1,9785:15470289,10707649 -g1,9785:15470289,10707649 -g1,9785:15470289,10707649 -g1,9785:15470289,10707649 -g1,9785:15470289,10707649 -g1,9786:15470289,10707649 -g1,9786:15470289,10707649 -g1,9786:15470289,10707649 -g1,9786:15470289,10707649 -g1,9787:15470289,10707649 -g1,9787:15470289,10707649 -g1,9787:15470289,10707649 -g1,9787:15470289,10707649 -g1,9787:15470289,10707649 -g1,9787:15470289,10707649 -g1,9788:15470289,10707649 -g1,9788:15470289,10707649 -) -g1,9788:15470289,10707649 -) -) -g1,9790:27230883,22281762 -k1,9790:32583029,22281762:5352146 -) -v1,9794:6630773,23707537:0,393216,0 -(1,9813:6630773,30626409:25952256,7312088,196608 -g1,9813:6630773,30626409 -g1,9813:6630773,30626409 -g1,9813:6434165,30626409 -(1,9813:6434165,30626409:0,7312088,196608 -r1,9851:32779637,30626409:26345472,7508696,196608 -k1,9813:6434165,30626409:-26345472 -) -(1,9813:6434165,30626409:26345472,7312088,196608 -[1,9813:6630773,30626409:25952256,7115480,0 -(1,9796:6630773,23899426:25952256,388497,4718 -(1,9795:6630773,23899426:0,0,0 -g1,9795:6630773,23899426 -g1,9795:6630773,23899426 -g1,9795:6303093,23899426 -(1,9795:6303093,23899426:0,0,0 -) -g1,9795:6630773,23899426 -) -g1,9796:7263065,23899426 -g1,9796:8211503,23899426 -h1,9796:8527649,23899426:0,0,0 -k1,9796:32583029,23899426:24055380 -g1,9796:32583029,23899426 -) -(1,9797:6630773,24565604:25952256,404226,76021 -h1,9797:6630773,24565604:0,0,0 -g1,9797:8527647,24565604 -g1,9797:9476084,24565604 -g1,9797:10108376,24565604 -g1,9797:11372959,24565604 -h1,9797:11689105,24565604:0,0,0 -k1,9797:32583029,24565604:20893924 -g1,9797:32583029,24565604 -) -(1,9798:6630773,25231782:25952256,404226,101187 -h1,9798:6630773,25231782:0,0,0 -g1,9798:6946919,25231782 -g1,9798:7263065,25231782 -k1,9798:7263065,25231782:0 -h1,9798:9792230,25231782:0,0,0 -k1,9798:32583030,25231782:22790800 -g1,9798:32583030,25231782 -) -(1,9799:6630773,25897960:25952256,388497,4718 -h1,9799:6630773,25897960:0,0,0 -g1,9799:6946919,25897960 -g1,9799:7263065,25897960 -g1,9799:7895357,25897960 -g1,9799:8843795,25897960 -h1,9799:9792233,25897960:0,0,0 -k1,9799:32583029,25897960:22790796 -g1,9799:32583029,25897960 -) -(1,9800:6630773,26564138:25952256,404226,76021 -h1,9800:6630773,26564138:0,0,0 -h1,9800:6946919,26564138:0,0,0 -k1,9800:32583029,26564138:25636110 -g1,9800:32583029,26564138 -) -(1,9806:6630773,27230316:25952256,404226,76021 -(1,9802:6630773,27230316:0,0,0 -g1,9802:6630773,27230316 -g1,9802:6630773,27230316 -g1,9802:6303093,27230316 -(1,9802:6303093,27230316:0,0,0 -) -g1,9802:6630773,27230316 -) -g1,9806:7579210,27230316 -g1,9806:8843793,27230316 -h1,9806:9159939,27230316:0,0,0 -k1,9806:32583029,27230316:23423090 -g1,9806:32583029,27230316 -) -(1,9806:6630773,27896494:25952256,404226,76021 -h1,9806:6630773,27896494:0,0,0 -g1,9806:7579210,27896494 -g1,9806:8843793,27896494 -h1,9806:9159939,27896494:0,0,0 -k1,9806:32583029,27896494:23423090 -g1,9806:32583029,27896494 -) -(1,9806:6630773,28562672:25952256,404226,76021 -h1,9806:6630773,28562672:0,0,0 -g1,9806:7579210,28562672 -g1,9806:8843793,28562672 -h1,9806:9476084,28562672:0,0,0 -k1,9806:32583028,28562672:23106944 -g1,9806:32583028,28562672 -) -(1,9808:6630773,29884210:25952256,404226,101187 -(1,9807:6630773,29884210:0,0,0 -g1,9807:6630773,29884210 -g1,9807:6630773,29884210 -g1,9807:6303093,29884210 -(1,9807:6303093,29884210:0,0,0 -) -g1,9807:6630773,29884210 -) -k1,9808:6630773,29884210:0 -h1,9808:9159938,29884210:0,0,0 -k1,9808:32583030,29884210:23423092 -g1,9808:32583030,29884210 -) -(1,9812:6630773,30550388:25952256,404226,76021 -(1,9810:6630773,30550388:0,0,0 -g1,9810:6630773,30550388 -g1,9810:6630773,30550388 -g1,9810:6303093,30550388 -(1,9810:6303093,30550388:0,0,0 -) -g1,9810:6630773,30550388 -) -g1,9812:7579210,30550388 -g1,9812:8843793,30550388 -h1,9812:9792230,30550388:0,0,0 -k1,9812:32583030,30550388:22790800 -g1,9812:32583030,30550388 -) -] -) -g1,9813:32583029,30626409 -g1,9813:6630773,30626409 -g1,9813:6630773,30626409 -g1,9813:32583029,30626409 -g1,9813:32583029,30626409 -) -h1,9813:6630773,30823017:0,0,0 -v1,9817:6630773,32339703:0,393216,0 -(1,9818:6630773,32968849:25952256,1022362,0 -g1,9818:6630773,32968849 -g1,9818:6303093,32968849 -r1,9851:6401397,32968849:98304,1022362,0 -g1,9818:6600626,32968849 -g1,9818:6797234,32968849 -[1,9818:6797234,32968849:25785795,1022362,0 -(1,9818:6797234,32772241:25785795,825754,196608 -(1,9817:6797234,32772241:0,825754,196608 -r1,9851:7890375,32772241:1093141,1022362,196608 -k1,9817:6797234,32772241:-1093141 -) -(1,9817:6797234,32772241:1093141,825754,196608 -) -k1,9817:8062006,32772241:171631 -k1,9817:9788224,32772241:327680 -k1,9817:11619228,32772241:171632 -k1,9817:13171703,32772241:171631 -k1,9817:14627840,32772241:171631 -k1,9817:15969944,32772241:171631 -k1,9817:19806349,32772241:171632 -k1,9817:21274938,32772241:171631 -k1,9817:22465654,32772241:171631 -k1,9817:24043688,32772241:171631 -k1,9817:25895663,32772241:171632 -k1,9817:26734450,32772241:171631 -(1,9817:26734450,32772241:0,414482,115847 -r1,9851:27092716,32772241:358266,530329,115847 -k1,9817:26734450,32772241:-358266 -) -(1,9817:26734450,32772241:358266,414482,115847 -k1,9817:26734450,32772241:3277 -h1,9817:27089439,32772241:0,411205,112570 -) -k1,9817:27264347,32772241:171631 -k1,9817:27967475,32772241:171631 -k1,9817:29998363,32772241:171632 -k1,9817:31612441,32772241:171631 -k1,9818:32583029,32772241:0 -k1,9818:32583029,32772241:0 -) -] -g1,9818:32583029,32968849 -) -h1,9818:6630773,32968849:0,0,0 -v1,9822:6630773,34147936:0,393216,0 -(1,9848:6630773,45706769:25952256,11952049,0 -g1,9848:6630773,45706769 -g1,9848:6303093,45706769 -r1,9851:6401397,45706769:98304,11952049,0 -g1,9848:6600626,45706769 -g1,9848:6797234,45706769 -[1,9848:6797234,45706769:25785795,11952049,0 -(1,9823:6797234,34580474:25785795,825754,196608 -(1,9822:6797234,34580474:0,825754,196608 -r1,9851:8834093,34580474:2036859,1022362,196608 -k1,9822:6797234,34580474:-2036859 -) -(1,9822:6797234,34580474:2036859,825754,196608 -) -g1,9822:9033322,34580474 -g1,9822:10759540,34580474 -g1,9822:12155456,34580474 -g1,9822:15871347,34580474 -g1,9822:17925900,34580474 -g1,9822:19229411,34580474 -g1,9822:20176406,34580474 -g1,9822:23552820,34580474 -k1,9823:32583029,34580474:8205111 -g1,9823:32583029,34580474 -) -v1,9825:6797234,35770940:0,393216,0 -(1,9833:6797234,38703562:25785795,3325838,196608 -g1,9833:6797234,38703562 -g1,9833:6797234,38703562 -g1,9833:6600626,38703562 -(1,9833:6600626,38703562:0,3325838,196608 -r1,9851:32779637,38703562:26179011,3522446,196608 -k1,9833:6600625,38703562:-26179012 -) -(1,9833:6600626,38703562:26179011,3325838,196608 -[1,9833:6797234,38703562:25785795,3129230,0 -(1,9827:6797234,35962829:25785795,388497,4718 -(1,9826:6797234,35962829:0,0,0 -g1,9826:6797234,35962829 -g1,9826:6797234,35962829 -g1,9826:6469554,35962829 -(1,9826:6469554,35962829:0,0,0 -) -g1,9826:6797234,35962829 -) -g1,9827:7429526,35962829 -g1,9827:8377964,35962829 -h1,9827:8694110,35962829:0,0,0 -k1,9827:32583030,35962829:23888920 -g1,9827:32583030,35962829 -) -(1,9828:6797234,36629007:25785795,404226,101187 -h1,9828:6797234,36629007:0,0,0 -k1,9828:6797234,36629007:0 -h1,9828:9326399,36629007:0,0,0 -k1,9828:32583029,36629007:23256630 -g1,9828:32583029,36629007 -) -(1,9829:6797234,37295185:25785795,404226,76021 -h1,9829:6797234,37295185:0,0,0 -g1,9829:8694108,37295185 -g1,9829:9642545,37295185 -g1,9829:10274837,37295185 -g1,9829:11539420,37295185 -h1,9829:11855566,37295185:0,0,0 -k1,9829:32583030,37295185:20727464 -g1,9829:32583030,37295185 -) -(1,9830:6797234,37961363:25785795,404226,101187 -h1,9830:6797234,37961363:0,0,0 -g1,9830:7113380,37961363 -g1,9830:7429526,37961363 -g1,9830:9958691,37961363 -g1,9830:10907129,37961363 -h1,9830:12171713,37961363:0,0,0 -k1,9830:32583029,37961363:20411316 -g1,9830:32583029,37961363 -) -(1,9831:6797234,38627541:25785795,404226,76021 -h1,9831:6797234,38627541:0,0,0 -h1,9831:7113380,38627541:0,0,0 -k1,9831:32583028,38627541:25469648 -g1,9831:32583028,38627541 -) -] -) -g1,9833:32583029,38703562 -g1,9833:6797234,38703562 -g1,9833:6797234,38703562 -g1,9833:32583029,38703562 -g1,9833:32583029,38703562 -) -h1,9833:6797234,38900170:0,0,0 -(1,9837:6797234,40265946:25785795,513147,126483 -h1,9836:6797234,40265946:983040,0,0 -k1,9836:10344918,40265946:230907 -k1,9836:11872783,40265946:230907 -k1,9836:13306932,40265946:230908 -k1,9836:15638268,40265946:230907 -k1,9836:17060620,40265946:230907 -k1,9836:18621908,40265946:230907 -k1,9836:19310912,40265946:230907 -k1,9836:21673050,40265946:230907 -k1,9836:22555386,40265946:230908 -k1,9836:23805378,40265946:230907 -k1,9836:26562698,40265946:230907 -k1,9836:27409643,40265946:230907 -k1,9836:28055362,40265946:230876 -k1,9836:28945561,40265946:230907 -k1,9836:31683875,40265946:230907 -k1,9837:32583029,40265946:0 -) -(1,9837:6797234,41107434:25785795,505283,134348 -g1,9836:10286370,41107434 -g1,9836:11137027,41107434 -g1,9836:13567757,41107434 -g1,9836:16608627,41107434 -g1,9836:18817845,41107434 -g1,9836:19372934,41107434 -g1,9836:21445182,41107434 -g1,9836:24830771,41107434 -g1,9836:26176225,41107434 -g1,9836:27394539,41107434 -g1,9836:28750478,41107434 -k1,9837:32583029,41107434:1790449 -g1,9837:32583029,41107434 -) -v1,9839:6797234,42297900:0,393216,0 -(1,9844:6797234,43176414:25785795,1271730,196608 -g1,9844:6797234,43176414 -g1,9844:6797234,43176414 -g1,9844:6600626,43176414 -(1,9844:6600626,43176414:0,1271730,196608 -r1,9851:32779637,43176414:26179011,1468338,196608 -k1,9844:6600625,43176414:-26179012 -) -(1,9844:6600626,43176414:26179011,1271730,196608 -[1,9844:6797234,43176414:25785795,1075122,0 -(1,9841:6797234,42505518:25785795,404226,9436 -(1,9840:6797234,42505518:0,0,0 -g1,9840:6797234,42505518 -g1,9840:6797234,42505518 -g1,9840:6469554,42505518 -(1,9840:6469554,42505518:0,0,0 -) -g1,9840:6797234,42505518 -) -g1,9841:7429526,42505518 -g1,9841:8377964,42505518 -g1,9841:9010256,42505518 -g1,9841:9958694,42505518 -g1,9841:10590986,42505518 -g1,9841:11539424,42505518 -h1,9841:12487862,42505518:0,0,0 -k1,9841:32583030,42505518:20095168 -g1,9841:32583030,42505518 -) -(1,9842:6797234,43171696:25785795,284164,4718 -h1,9842:6797234,43171696:0,0,0 -h1,9842:7113380,43171696:0,0,0 -k1,9842:32583028,43171696:25469648 -g1,9842:32583028,43171696 -) -] -) -g1,9844:32583029,43176414 -g1,9844:6797234,43176414 -g1,9844:6797234,43176414 -g1,9844:32583029,43176414 -g1,9844:32583029,43176414 -) -h1,9844:6797234,43373022:0,0,0 -(1,9848:6797234,44738798:25785795,513147,126483 -h1,9847:6797234,44738798:983040,0,0 -k1,9847:10364773,44738798:250762 -k1,9847:11912492,44738798:250761 -k1,9847:12519114,44738798:250762 -k1,9847:15011207,44738798:250762 -(1,9847:15011207,44738798:0,452978,115847 -r1,9851:17831456,44738798:2820249,568825,115847 -k1,9847:15011207,44738798:-2820249 -) -(1,9847:15011207,44738798:2820249,452978,115847 -k1,9847:15011207,44738798:3277 -h1,9847:17828179,44738798:0,411205,112570 -) -k1,9847:18082218,44738798:250762 -k1,9847:19433984,44738798:250761 -k1,9847:21194696,44738798:250762 -k1,9847:23410883,44738798:250762 -k1,9847:25704402,44738798:250762 -(1,9847:25704402,44738798:0,452978,115847 -r1,9851:28172939,44738798:2468537,568825,115847 -k1,9847:25704402,44738798:-2468537 -) -(1,9847:25704402,44738798:2468537,452978,115847 -k1,9847:25704402,44738798:3277 -h1,9847:28169662,44738798:0,411205,112570 -) -k1,9847:28597370,44738798:250761 -k1,9847:30400025,44738798:250762 -k1,9848:32583029,44738798:0 -) -(1,9848:6797234,45580286:25785795,513147,126483 -g1,9847:8635518,45580286 -g1,9847:9300708,45580286 -k1,9848:32583030,45580286:19999624 -g1,9848:32583030,45580286 -) -] -g1,9848:32583029,45706769 -) -h1,9848:6630773,45706769:0,0,0 -] -(1,9851:32583029,45706769:0,0,0 -g1,9851:32583029,45706769 -) -) -] -(1,9851:6630773,47279633:25952256,0,0 -h1,9851:6630773,47279633:25952256,0,0 +g1,8941:-473656,-710413 ) ] -(1,9851:4262630,4025873:0,0,0 -[1,9851:-473656,4025873:0,0,0 -(1,9851:-473656,-710413:0,0,0 -(1,9851:-473656,-710413:0,0,0 -g1,9851:-473656,-710413 ) -g1,9851:-473656,-710413 +[1,8941:6630773,47279633:25952256,43253760,0 +[1,8941:6630773,4812305:25952256,786432,0 +(1,8941:6630773,4812305:25952256,505283,134348 +(1,8941:6630773,4812305:25952256,505283,134348 +g1,8941:3078558,4812305 +[1,8941:3078558,4812305:0,0,0 +(1,8941:3078558,2439708:0,1703936,0 +k1,8941:1358238,2439708:-1720320 +(1,8606:1358238,2439708:1720320,1703936,0 +(1,8606:1358238,2439708:1179648,16384,0 +r1,8941:2537886,2439708:1179648,16384,0 ) -] +g1,8606:3062174,2439708 +(1,8606:3062174,2439708:16384,1703936,0 +[1,8606:3062174,2439708:25952256,1703936,0 +(1,8606:3062174,1915420:25952256,1179648,0 +(1,8606:3062174,1915420:16384,1179648,0 +r1,8941:3078558,1915420:16384,1179648,0 +) +k1,8606:29014430,1915420:25935872 +g1,8606:29014430,1915420 ) ] -!22281 -}165 -Input:1442:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1443:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1444:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1445:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1446:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1447:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1448:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1449:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1450:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1451:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1452:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1453:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1454:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1455:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1456:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1422 -{166 -[1,9917:4262630,47279633:28320399,43253760,0 -(1,9917:4262630,4025873:0,0,0 -[1,9917:-473656,4025873:0,0,0 -(1,9917:-473656,-710413:0,0,0 -(1,9917:-473656,-644877:0,0,0 -k1,9917:-473656,-644877:-65536 ) -(1,9917:-473656,4736287:0,0,0 -k1,9917:-473656,4736287:5209943 ) -g1,9917:-473656,-710413 +) +] +[1,8941:3078558,4812305:0,0,0 +(1,8941:3078558,2439708:0,1703936,0 +g1,8941:29030814,2439708 +g1,8941:36135244,2439708 +(1,8606:36135244,2439708:1720320,1703936,0 +(1,8606:36135244,2439708:16384,1703936,0 +[1,8606:36135244,2439708:25952256,1703936,0 +(1,8606:36135244,1915420:25952256,1179648,0 +(1,8606:36135244,1915420:16384,1179648,0 +r1,8941:36151628,1915420:16384,1179648,0 +) +k1,8606:62087500,1915420:25935872 +g1,8606:62087500,1915420 ) ] ) -[1,9917:6630773,47279633:25952256,43253760,0 -[1,9917:6630773,4812305:25952256,786432,0 -(1,9917:6630773,4812305:25952256,477757,11795 -(1,9917:6630773,4812305:25952256,477757,11795 -g1,9917:3078558,4812305 -[1,9917:3078558,4812305:0,0,0 -(1,9917:3078558,2439708:0,1703936,0 -k1,9917:1358238,2439708:-1720320 -(1,8393:1358238,2439708:1720320,1703936,0 -(1,8393:1358238,2439708:1179648,16384,0 -r1,9917:2537886,2439708:1179648,16384,0 +g1,8606:36675916,2439708 +(1,8606:36675916,2439708:1179648,16384,0 +r1,8941:37855564,2439708:1179648,16384,0 ) -g1,8393:3062174,2439708 -(1,8393:3062174,2439708:16384,1703936,0 -[1,8393:3062174,2439708:25952256,1703936,0 -(1,8393:3062174,1915420:25952256,1179648,0 -(1,8393:3062174,1915420:16384,1179648,0 -r1,9917:3078558,1915420:16384,1179648,0 ) -k1,8393:29014430,1915420:25935872 -g1,8393:29014430,1915420 +k1,8941:3078556,2439708:-34777008 ) ] +[1,8941:3078558,4812305:0,0,0 +(1,8941:3078558,49800853:0,16384,2228224 +k1,8941:1358238,49800853:-1720320 +(1,8606:1358238,49800853:1720320,16384,2228224 +(1,8606:1358238,49800853:1179648,16384,0 +r1,8941:2537886,49800853:1179648,16384,0 ) +g1,8606:3062174,49800853 +(1,8606:3062174,52029077:16384,1703936,0 +[1,8606:3062174,52029077:25952256,1703936,0 +(1,8606:3062174,51504789:25952256,1179648,0 +(1,8606:3062174,51504789:16384,1179648,0 +r1,8941:3078558,51504789:16384,1179648,0 ) +k1,8606:29014430,51504789:25935872 +g1,8606:29014430,51504789 ) ] -[1,9917:3078558,4812305:0,0,0 -(1,9917:3078558,2439708:0,1703936,0 -g1,9917:29030814,2439708 -g1,9917:36135244,2439708 -(1,8393:36135244,2439708:1720320,1703936,0 -(1,8393:36135244,2439708:16384,1703936,0 -[1,8393:36135244,2439708:25952256,1703936,0 -(1,8393:36135244,1915420:25952256,1179648,0 -(1,8393:36135244,1915420:16384,1179648,0 -r1,9917:36151628,1915420:16384,1179648,0 ) -k1,8393:62087500,1915420:25935872 -g1,8393:62087500,1915420 +) ) ] +[1,8941:3078558,4812305:0,0,0 +(1,8941:3078558,49800853:0,16384,2228224 +g1,8941:29030814,49800853 +g1,8941:36135244,49800853 +(1,8606:36135244,49800853:1720320,16384,2228224 +(1,8606:36135244,52029077:16384,1703936,0 +[1,8606:36135244,52029077:25952256,1703936,0 +(1,8606:36135244,51504789:25952256,1179648,0 +(1,8606:36135244,51504789:16384,1179648,0 +r1,8941:36151628,51504789:16384,1179648,0 +) +k1,8606:62087500,51504789:25935872 +g1,8606:62087500,51504789 ) -g1,8393:36675916,2439708 -(1,8393:36675916,2439708:1179648,16384,0 -r1,9917:37855564,2439708:1179648,16384,0 +] ) +g1,8606:36675916,49800853 +(1,8606:36675916,49800853:1179648,16384,0 +r1,8941:37855564,49800853:1179648,16384,0 ) -k1,9917:3078556,2439708:-34777008 ) -] -[1,9917:3078558,4812305:0,0,0 -(1,9917:3078558,49800853:0,16384,2228224 -k1,9917:1358238,49800853:-1720320 -(1,8393:1358238,49800853:1720320,16384,2228224 -(1,8393:1358238,49800853:1179648,16384,0 -r1,9917:2537886,49800853:1179648,16384,0 +k1,8941:3078556,49800853:-34777008 ) -g1,8393:3062174,49800853 -(1,8393:3062174,52029077:16384,1703936,0 -[1,8393:3062174,52029077:25952256,1703936,0 -(1,8393:3062174,51504789:25952256,1179648,0 -(1,8393:3062174,51504789:16384,1179648,0 -r1,9917:3078558,51504789:16384,1179648,0 +] +g1,8941:6630773,4812305 +k1,8941:21643106,4812305:13816956 +g1,8941:23265777,4812305 +g1,8941:24088253,4812305 +g1,8941:28572226,4812305 +g1,8941:29981905,4812305 +) +) +] +[1,8941:6630773,45706769:25952256,40108032,0 +(1,8941:6630773,45706769:25952256,40108032,0 +(1,8941:6630773,45706769:0,0,0 +g1,8941:6630773,45706769 +) +[1,8941:6630773,45706769:25952256,40108032,0 +(1,8889:6630773,6254097:25952256,32768,229376 +(1,8889:6630773,6254097:0,32768,229376 +(1,8889:6630773,6254097:5505024,32768,229376 +r1,8941:12135797,6254097:5505024,262144,229376 +) +k1,8889:6630773,6254097:-5505024 +) +(1,8889:6630773,6254097:25952256,32768,0 +r1,8941:32583029,6254097:25952256,32768,0 +) +) +(1,8889:6630773,7885949:25952256,606339,14155 +(1,8889:6630773,7885949:1974731,575668,14155 +g1,8889:6630773,7885949 +g1,8889:8605504,7885949 +) +g1,8889:12325328,7885949 +k1,8889:32583029,7885949:18471714 +g1,8889:32583029,7885949 +) +(1,8892:6630773,9144245:25952256,513147,126483 +k1,8891:7890703,9144245:306381 +k1,8891:9329546,9144245:306381 +k1,8891:12305207,9144245:306380 +k1,8891:15637385,9144245:306381 +k1,8891:16559804,9144245:306381 +k1,8891:18653352,9144245:306381 +k1,8891:20151177,9144245:306380 +k1,8891:21787939,9144245:306381 +k1,8891:22745748,9144245:306381 +k1,8891:24981509,9144245:306381 +k1,8891:26571085,9144245:306381 +k1,8891:28364477,9144245:306380 +k1,8891:29286896,9144245:306381 +k1,8891:32010900,9144245:306381 +h1,8891:32409359,9144245:0,0,0 +k1,8891:32583029,9144245:0 +) +(1,8892:6630773,10009325:25952256,513147,134348 +k1,8891:7809587,10009325:225265 +k1,8891:9510067,10009325:225265 +k1,8891:12069724,10009325:225265 +k1,8891:13804939,10009325:225265 +k1,8891:15765597,10009325:225265 +k1,8891:19016660,10009325:225266 +k1,8891:20869184,10009325:225265 +k1,8891:23512072,10009325:225265 +h1,8891:23910531,10009325:0,0,0 +k1,8891:24309466,10009325:225265 +k1,8891:27654900,10009325:225265 +k1,8891:28871725,10009325:225265 +k1,8892:32583029,10009325:0 +) +(1,8892:6630773,10874405:25952256,513147,134348 +k1,8891:7294870,10874405:249254 +k1,8891:11234506,10874405:249304 +k1,8891:12099848,10874405:249304 +k1,8891:13950852,10874405:249304 +k1,8891:16071209,10874405:249304 +k1,8891:19734283,10874405:249304 +k1,8891:23673919,10874405:249304 +k1,8891:25658616,10874405:249304 +k1,8891:28036529,10874405:249304 +k1,8891:31896867,10874405:249304 +k1,8891:32583029,10874405:0 +) +(1,8892:6630773,11739485:25952256,513147,134348 +k1,8891:11158765,11739485:290434 +k1,8891:13232433,11739485:290433 +k1,8891:14391219,11739485:290434 +k1,8891:15781346,11739485:290433 +k1,8891:16427640,11739485:290434 +k1,8891:19413569,11739485:290433 +k1,8891:20572355,11739485:290434 +k1,8891:22299993,11739485:290433 +k1,8891:25993056,11739485:290434 +k1,8891:27231140,11739485:290433 +k1,8891:28540659,11739485:290434 +k1,8891:31593435,11739485:290433 +k1,8892:32583029,11739485:0 +) +(1,8892:6630773,12604565:25952256,513147,134348 +k1,8891:9717883,12604565:252678 +k1,8891:10860539,12604565:252677 +k1,8891:14846803,12604565:252678 +k1,8891:17374890,12604565:252677 +k1,8891:18819013,12604565:252678 +k1,8891:20090775,12604565:252677 +k1,8891:24171411,12604565:252678 +k1,8891:27610448,12604565:252677 +k1,8891:31563944,12604565:252678 +k1,8891:32583029,12604565:0 +) +(1,8892:6630773,13469645:25952256,513147,134348 +k1,8891:8363872,13469645:169410 +k1,8891:9192575,13469645:169411 +k1,8891:10381070,13469645:169410 +k1,8891:13245977,13469645:169411 +k1,8891:14406947,13469645:169410 +k1,8891:17637544,13469645:169410 +k1,8891:19320181,13469645:169411 +k1,8891:23031157,13469645:169410 +k1,8891:24219653,13469645:169411 +k1,8891:28452950,13469645:169410 +k1,8891:29383889,13469645:169411 +k1,8891:30572384,13469645:169410 +k1,8891:32583029,13469645:0 +) +(1,8892:6630773,14334725:25952256,505283,134348 +g1,8891:9035289,14334725 +g1,8891:9920680,14334725 +k1,8892:32583028,14334725:19086048 +g1,8892:32583028,14334725 +) +(1,8894:6630773,15199805:25952256,513147,126483 +h1,8893:6630773,15199805:983040,0,0 +k1,8893:8482727,15199805:241079 +k1,8893:9742891,15199805:241079 +k1,8893:11290102,15199805:241078 +k1,8893:14192598,15199805:241079 +k1,8893:15302029,15199805:241079 +k1,8893:17018323,15199805:241079 +k1,8893:18431841,15199805:241079 +k1,8893:22363251,15199805:241078 +k1,8893:23220368,15199805:241079 +k1,8893:24480532,15199805:241079 +k1,8893:26027744,15199805:241079 +k1,8893:27425532,15199805:241078 +k1,8893:28534963,15199805:241079 +k1,8893:31563944,15199805:241079 +k1,8893:32583029,15199805:0 +) +(1,8894:6630773,16064885:25952256,513147,134348 +k1,8893:9991476,16064885:249709 +k1,8893:10900476,16064885:249708 +k1,8893:12345562,16064885:249709 +k1,8893:13786715,16064885:249708 +k1,8893:16074594,16064885:249709 +k1,8893:17343388,16064885:249709 +k1,8893:20371823,16064885:249708 +k1,8893:22301875,16064885:249709 +k1,8893:23167622,16064885:249709 +k1,8893:25928670,16064885:249708 +(1,8893:25928670,16064885:0,414482,115847 +r1,8941:26286936,16064885:358266,530329,115847 +k1,8893:25928670,16064885:-358266 +) +(1,8893:25928670,16064885:358266,414482,115847 +k1,8893:25928670,16064885:3277 +h1,8893:26283659,16064885:0,411205,112570 +) +k1,8893:26536645,16064885:249709 +k1,8893:27547881,16064885:249708 +k1,8893:29887533,16064885:249709 +k1,8894:32583029,16064885:0 +) +(1,8894:6630773,16929965:25952256,505283,134348 +(1,8893:6630773,16929965:0,452978,122846 +r1,8941:9099310,16929965:2468537,575824,122846 +k1,8893:6630773,16929965:-2468537 +) +(1,8893:6630773,16929965:2468537,452978,122846 +k1,8893:6630773,16929965:3277 +h1,8893:9096033,16929965:0,411205,112570 +) +k1,8893:9278861,16929965:179551 +k1,8893:10852364,16929965:179552 +(1,8893:10852364,16929965:0,435480,115847 +r1,8941:11914053,16929965:1061689,551327,115847 +k1,8893:10852364,16929965:-1061689 +) +(1,8893:10852364,16929965:1061689,435480,115847 +k1,8893:10852364,16929965:3277 +h1,8893:11910776,16929965:0,411205,112570 +) +k1,8893:12093604,16929965:179551 +k1,8893:12959317,16929965:179551 +k1,8893:16384867,16929965:179552 +k1,8893:17192253,16929965:179551 +k1,8893:18390889,16929965:179551 +k1,8893:20811772,16929965:179552 +k1,8893:24177683,16929965:179551 +k1,8893:25225587,16929965:179552 +k1,8893:26842343,16929965:179551 +k1,8893:29533234,16929965:179551 +(1,8893:29533234,16929965:0,414482,115847 +r1,8941:29891500,16929965:358266,530329,115847 +k1,8893:29533234,16929965:-358266 +) +(1,8893:29533234,16929965:358266,414482,115847 +k1,8893:29533234,16929965:3277 +h1,8893:29888223,16929965:0,411205,112570 +) +k1,8893:30071052,16929965:179552 +k1,8893:30936765,16929965:179551 +k1,8894:32583029,16929965:0 +) +(1,8894:6630773,17795045:25952256,513147,126483 +g1,8893:8469057,17795045 +g1,8893:9319714,17795045 +(1,8893:9319714,17795045:0,452978,115847 +r1,8941:11788251,17795045:2468537,568825,115847 +k1,8893:9319714,17795045:-2468537 +) +(1,8893:9319714,17795045:2468537,452978,115847 +k1,8893:9319714,17795045:3277 +h1,8893:11784974,17795045:0,411205,112570 +) +g1,8893:11987480,17795045 +g1,8893:13378154,17795045 +g1,8893:14263545,17795045 +g1,8893:14818634,17795045 +g1,8893:16317442,17795045 +g1,8893:18287454,17795045 +g1,8893:19505768,17795045 +g1,8893:21385340,17795045 +g1,8893:21983028,17795045 +g1,8893:22713754,17795045 +k1,8894:32583029,17795045:6632452 +g1,8894:32583029,17795045 +) +v1,8896:6630773,18479900:0,393216,0 +(1,8904:6630773,20288335:25952256,2201651,196608 +g1,8904:6630773,20288335 +g1,8904:6630773,20288335 +g1,8904:6434165,20288335 +(1,8904:6434165,20288335:0,2201651,196608 +r1,8941:32779637,20288335:26345472,2398259,196608 +k1,8904:6434165,20288335:-26345472 +) +(1,8904:6434165,20288335:26345472,2201651,196608 +[1,8904:6630773,20288335:25952256,2005043,0 +(1,8898:6630773,18707731:25952256,424439,112852 +(1,8897:6630773,18707731:0,0,0 +g1,8897:6630773,18707731 +g1,8897:6630773,18707731 +g1,8897:6303093,18707731 +(1,8897:6303093,18707731:0,0,0 +) +g1,8897:6630773,18707731 +) +g1,8898:7294681,18707731 +g1,8898:8290543,18707731 +k1,8898:8290543,18707731:0 +h1,8898:11610083,18707731:0,0,0 +k1,8898:32583029,18707731:20972946 +g1,8898:32583029,18707731 +) +(1,8899:6630773,19392586:25952256,424439,106246 +h1,8899:6630773,19392586:0,0,0 +k1,8899:6630773,19392586:0 +h1,8899:9286405,19392586:0,0,0 +k1,8899:32583029,19392586:23296624 +g1,8899:32583029,19392586 +) +(1,8903:6630773,20208513:25952256,424439,79822 +(1,8901:6630773,20208513:0,0,0 +g1,8901:6630773,20208513 +g1,8901:6630773,20208513 +g1,8901:6303093,20208513 +(1,8901:6303093,20208513:0,0,0 +) +g1,8901:6630773,20208513 +) +g1,8903:7626635,20208513 +g1,8903:8954451,20208513 +h1,8903:9286405,20208513:0,0,0 +k1,8903:32583029,20208513:23296624 +g1,8903:32583029,20208513 +) +] +) +g1,8904:32583029,20288335 +g1,8904:6630773,20288335 +g1,8904:6630773,20288335 +g1,8904:32583029,20288335 +g1,8904:32583029,20288335 +) +h1,8904:6630773,20484943:0,0,0 +(1,8908:6630773,21350023:25952256,505283,126483 +h1,8907:6630773,21350023:983040,0,0 +g1,8907:10602910,21350023 +g1,8907:12232135,21350023 +g1,8907:13535646,21350023 +g1,8907:14482641,21350023 +g1,8907:16973009,21350023 +g1,8907:18368925,21350023 +g1,8907:21229571,21350023 +g1,8907:23284124,21350023 +g1,8907:24587635,21350023 +g1,8907:25534630,21350023 +g1,8907:28656109,21350023 +k1,8908:32583029,21350023:3067088 +g1,8908:32583029,21350023 +) +v1,8910:6630773,22034878:0,393216,0 +(1,8917:6630773,23158458:25952256,1516796,196608 +g1,8917:6630773,23158458 +g1,8917:6630773,23158458 +g1,8917:6434165,23158458 +(1,8917:6434165,23158458:0,1516796,196608 +r1,8941:32779637,23158458:26345472,1713404,196608 +k1,8917:6434165,23158458:-26345472 +) +(1,8917:6434165,23158458:26345472,1516796,196608 +[1,8917:6630773,23158458:25952256,1320188,0 +(1,8912:6630773,22262709:25952256,424439,112852 +(1,8911:6630773,22262709:0,0,0 +g1,8911:6630773,22262709 +g1,8911:6630773,22262709 +g1,8911:6303093,22262709 +(1,8911:6303093,22262709:0,0,0 +) +g1,8911:6630773,22262709 +) +k1,8912:6630773,22262709:0 +k1,8912:6630773,22262709:0 +h1,8912:12273991,22262709:0,0,0 +k1,8912:32583029,22262709:20309038 +g1,8912:32583029,22262709 +) +(1,8916:6630773,23078636:25952256,424439,79822 +(1,8914:6630773,23078636:0,0,0 +g1,8914:6630773,23078636 +g1,8914:6630773,23078636 +g1,8914:6303093,23078636 +(1,8914:6303093,23078636:0,0,0 +) +g1,8914:6630773,23078636 +) +g1,8916:7626635,23078636 +g1,8916:8954451,23078636 +h1,8916:9286405,23078636:0,0,0 +k1,8916:32583029,23078636:23296624 +g1,8916:32583029,23078636 +) +] +) +g1,8917:32583029,23158458 +g1,8917:6630773,23158458 +g1,8917:6630773,23158458 +g1,8917:32583029,23158458 +g1,8917:32583029,23158458 +) +h1,8917:6630773,23355066:0,0,0 +(1,8921:6630773,24220146:25952256,513147,7863 +h1,8920:6630773,24220146:983040,0,0 +k1,8920:9073299,24220146:262799 +k1,8920:12522459,24220146:262800 +k1,8920:13316755,24220146:262799 +k1,8920:14864061,24220146:262800 +k1,8920:15995212,24220146:262799 +k1,8920:17987507,24220146:262800 +k1,8920:19269391,24220146:262799 +k1,8920:22124794,24220146:262799 +k1,8920:23046886,24220146:262800 +k1,8920:23665545,24220146:262799 +k1,8920:26613355,24220146:262800 +k1,8920:29551989,24220146:262799 +k1,8920:31018030,24220146:262800 +k1,8920:31812326,24220146:262799 +k1,8920:32583029,24220146:0 +) +(1,8921:6630773,25085226:25952256,505283,134348 +g1,8920:10068791,25085226 +g1,8920:10950905,25085226 +g1,8920:12216405,25085226 +g1,8920:15117683,25085226 +g1,8920:16126282,25085226 +g1,8920:18916149,25085226 +g1,8920:19983730,25085226 +g1,8920:21275444,25085226 +(1,8920:21275444,25085226:0,414482,115847 +r1,8941:21633710,25085226:358266,530329,115847 +k1,8920:21275444,25085226:-358266 +) +(1,8920:21275444,25085226:358266,414482,115847 +k1,8920:21275444,25085226:3277 +h1,8920:21630433,25085226:0,411205,112570 +) +g1,8920:21832939,25085226 +g1,8920:22648206,25085226 +g1,8920:24301024,25085226 +g1,8920:28016915,25085226 +g1,8920:28899029,25085226 +k1,8921:32583029,25085226:2444059 +g1,8921:32583029,25085226 +) +(1,8923:6630773,25950306:25952256,513147,134348 +h1,8922:6630773,25950306:983040,0,0 +k1,8922:11331552,25950306:176173 +k1,8922:12901675,25950306:176172 +k1,8922:14728045,25950306:176173 +k1,8922:16696627,25950306:176172 +k1,8922:17532092,25950306:176173 +k1,8922:20047899,25950306:176172 +k1,8922:21666519,25950306:176173 +k1,8922:23918216,25950306:176172 +k1,8922:25949713,25950306:176173 +k1,8922:28569067,25950306:176172 +k1,8922:30099214,25950306:176173 +k1,8922:32583029,25950306:0 +) +(1,8923:6630773,26815386:25952256,505283,126483 +g1,8922:7481430,26815386 +g1,8922:9266630,26815386 +g1,8922:10190687,26815386 +g1,8922:13776817,26815386 +g1,8922:16995945,26815386 +g1,8922:18299456,26815386 +k1,8923:32583029,26815386:12721850 +g1,8923:32583029,26815386 +) +(1,8924:6630773,29646546:25952256,32768,229376 +(1,8924:6630773,29646546:0,32768,229376 +(1,8924:6630773,29646546:5505024,32768,229376 +r1,8941:12135797,29646546:5505024,262144,229376 +) +k1,8924:6630773,29646546:-5505024 +) +(1,8924:6630773,29646546:25952256,32768,0 +r1,8941:32583029,29646546:25952256,32768,0 +) +) +(1,8924:6630773,31278398:25952256,606339,151780 +(1,8924:6630773,31278398:1974731,568590,14155 +g1,8924:6630773,31278398 +g1,8924:8605504,31278398 +) +g1,8924:10655733,31278398 +k1,8924:32583028,31278398:19792132 +g1,8924:32583028,31278398 +) +(1,8929:6630773,32536694:25952256,513147,134348 +k1,8928:8463938,32536694:158065 +k1,8928:10097217,32536694:158064 +k1,8928:11765232,32536694:158065 +k1,8928:12536058,32536694:158064 +k1,8928:13713208,32536694:158065 +k1,8928:15235077,32536694:158065 +k1,8928:16052433,32536694:158064 +k1,8928:17713239,32536694:158065 +k1,8928:20692629,32536694:158065 +k1,8928:21466731,32536694:158064 +k1,8928:23076418,32536694:158065 +k1,8928:24861742,32536694:158065 +k1,8928:26577597,32536694:158064 +k1,8928:28730578,32536694:158065 +k1,8928:29547934,32536694:158064 +k1,8928:30494397,32536694:158065 +k1,8928:32583029,32536694:0 +) +(1,8929:6630773,33401774:25952256,505283,134348 +k1,8928:10470880,33401774:152396 +k1,8928:11814722,33401774:152397 +k1,8928:14328380,33401774:152396 +k1,8928:16281706,33401774:152397 +k1,8928:17120264,33401774:152396 +k1,8928:18551268,33401774:152397 +k1,8928:19389826,33401774:152396 +k1,8928:20158261,33401774:152397 +k1,8928:22063745,33401774:152396 +k1,8928:26501541,33401774:152397 +k1,8928:28749123,33401774:152396 +k1,8928:29672223,33401774:152397 +k1,8928:30862709,33401774:152396 +k1,8928:32583029,33401774:0 +) +(1,8929:6630773,34266854:25952256,513147,134348 +k1,8928:7867085,34266854:244752 +k1,8928:10162458,34266854:244751 +k1,8928:11066502,34266854:244752 +k1,8928:13027641,34266854:244751 +k1,8928:16344721,34266854:244752 +k1,8928:17272357,34266854:244751 +k1,8928:19698803,34266854:244752 +k1,8928:21228060,34266854:244751 +k1,8928:23100071,34266854:244752 +k1,8928:24411093,34266854:244751 +k1,8928:25011705,34266854:244752 +k1,8928:27129476,34266854:244752 +k1,8928:31247405,34266854:244751 +k1,8928:32583029,34266854:0 +) +(1,8929:6630773,35131934:25952256,513147,134348 +k1,8928:8341508,35131934:261079 +(1,8928:8341508,35131934:0,452978,115847 +r1,8941:9051486,35131934:709978,568825,115847 +k1,8928:8341508,35131934:-709978 +) +(1,8928:8341508,35131934:709978,452978,115847 +k1,8928:8341508,35131934:3277 +h1,8928:9048209,35131934:0,411205,112570 +) +k1,8928:9486235,35131934:261079 +(1,8928:9486235,35131934:0,452978,122846 +r1,8941:10899636,35131934:1413401,575824,122846 +k1,8928:9486235,35131934:-1413401 +) +(1,8928:9486235,35131934:1413401,452978,122846 +k1,8928:9486235,35131934:3277 +h1,8928:10896359,35131934:0,411205,112570 +) +k1,8928:11334385,35131934:261079 +(1,8928:11334385,35131934:0,414482,122846 +r1,8941:12747786,35131934:1413401,537328,122846 +k1,8928:11334385,35131934:-1413401 +) +(1,8928:11334385,35131934:1413401,414482,122846 +k1,8928:11334385,35131934:3277 +h1,8928:12744509,35131934:0,411205,112570 +) +k1,8928:13182535,35131934:261079 +(1,8928:13182535,35131934:0,414482,115847 +r1,8941:14595936,35131934:1413401,530329,115847 +k1,8928:13182535,35131934:-1413401 +) +(1,8928:13182535,35131934:1413401,414482,115847 +k1,8928:13182535,35131934:3277 +h1,8928:14592659,35131934:0,411205,112570 +) +k1,8928:15030685,35131934:261079 +k1,8928:16784019,35131934:261079 +k1,8928:18517037,35131934:261079 +k1,8928:20271681,35131934:261078 +k1,8928:21218922,35131934:261079 +k1,8928:22706180,35131934:261079 +k1,8928:23498756,35131934:261079 +k1,8928:26849858,35131934:261079 +k1,8928:27797099,35131934:261079 +k1,8928:30398469,35131934:261079 +k1,8928:32227169,35131934:261079 +k1,8928:32583029,35131934:0 +) +(1,8929:6630773,35997014:25952256,513147,134348 +k1,8928:8998035,35997014:258313 +k1,8928:10523813,35997014:258312 +k1,8928:11137986,35997014:258313 +k1,8928:12735199,35997014:258312 +k1,8928:15552038,35997014:258313 +k1,8928:16166211,35997014:258313 +k1,8928:18269361,35997014:258312 +k1,8928:19186966,35997014:258313 +k1,8928:21130865,35997014:258313 +k1,8928:22001939,35997014:258312 +k1,8928:24145723,35997014:258313 +k1,8928:24759895,35997014:258312 +k1,8928:27415515,35997014:258313 +k1,8928:32583029,35997014:0 +) +(1,8929:6630773,36862094:25952256,513147,126483 +k1,8928:8213140,36862094:229704 +k1,8928:10279162,36862094:229703 +k1,8928:11136701,36862094:229704 +k1,8928:12818027,36862094:229704 +k1,8928:14880772,36862094:229703 +k1,8928:16256701,36862094:229704 +k1,8928:17226306,36862094:229704 +k1,8928:18138895,36862094:229704 +k1,8928:20056805,36862094:229703 +k1,8928:21955711,36862094:229704 +k1,8928:23376860,36862094:229704 +k1,8928:26045813,36862094:229703 +k1,8928:27267077,36862094:229704 +k1,8928:28983793,36862094:229704 +k1,8928:30285665,36862094:229703 +k1,8928:31131407,36862094:229704 +k1,8928:32583029,36862094:0 +) +(1,8929:6630773,37727174:25952256,513147,126483 +k1,8928:8231818,37727174:287703 +k1,8928:9205683,37727174:287703 +k1,8928:10264089,37727174:287703 +k1,8928:14140543,37727174:287703 +k1,8928:16765915,37727174:287703 +k1,8928:17819734,37727174:287703 +k1,8928:20445105,37727174:287702 +k1,8928:21924253,37727174:287703 +k1,8928:26048434,37727174:287703 +k1,8928:27283788,37727174:287703 +k1,8928:29280015,37727174:287703 +k1,8928:30250603,37727174:287703 +k1,8928:32583029,37727174:0 +) +(1,8929:6630773,38592254:25952256,505283,134348 +g1,8928:9810579,38592254 +g1,8928:12632559,38592254 +g1,8928:14318800,38592254 +g1,8928:16011595,38592254 +g1,8928:16896986,38592254 +g1,8928:20116114,38592254 +g1,8928:21506788,38592254 +k1,8929:32583029,38592254:8354531 +g1,8929:32583029,38592254 +) +v1,8931:6630773,39277109:0,393216,0 +(1,8935:6630773,39617792:25952256,733899,196608 +g1,8935:6630773,39617792 +g1,8935:6630773,39617792 +g1,8935:6434165,39617792 +(1,8935:6434165,39617792:0,733899,196608 +r1,8941:32779637,39617792:26345472,930507,196608 +k1,8935:6434165,39617792:-26345472 +) +(1,8935:6434165,39617792:26345472,733899,196608 +[1,8935:6630773,39617792:25952256,537291,0 +(1,8933:6630773,39504940:25952256,424439,112852 +(1,8932:6630773,39504940:0,0,0 +g1,8932:6630773,39504940 +g1,8932:6630773,39504940 +g1,8932:6303093,39504940 +(1,8932:6303093,39504940:0,0,0 +) +g1,8932:6630773,39504940 +) +g1,8933:8622497,39504940 +g1,8933:9286405,39504940 +g1,8933:13269852,39504940 +g1,8933:13933760,39504940 +h1,8933:15261576,39504940:0,0,0 +k1,8933:32583028,39504940:17321452 +g1,8933:32583028,39504940 +) +] +) +g1,8935:32583029,39617792 +g1,8935:6630773,39617792 +g1,8935:6630773,39617792 +g1,8935:32583029,39617792 +g1,8935:32583029,39617792 +) +h1,8935:6630773,39814400:0,0,0 +(1,8939:6630773,40679480:25952256,513147,134348 +h1,8938:6630773,40679480:983040,0,0 +k1,8938:9292447,40679480:257813 +k1,8938:10654542,40679480:257813 +k1,8938:12549445,40679480:257813 +k1,8938:14308032,40679480:257813 +k1,8938:16575834,40679480:257813 +k1,8938:17189507,40679480:257813 +k1,8938:19320339,40679480:257813 +k1,8938:19992936,40679480:257754 +k1,8938:22408850,40679480:257813 +k1,8938:24449898,40679480:257813 +k1,8938:27418280,40679480:257813 +k1,8938:30701890,40679480:257813 +k1,8938:32227169,40679480:257813 +k1,8938:32583029,40679480:0 +) +(1,8939:6630773,41544560:25952256,505283,134348 +k1,8938:8355520,41544560:161058 +k1,8938:9905940,41544560:161057 +k1,8938:10598495,41544560:161058 +k1,8938:12964840,41544560:161058 +k1,8938:15761101,41544560:161058 +k1,8938:17561213,41544560:161057 +k1,8938:20280797,41544560:161058 +k1,8938:23775016,41544560:161058 +k1,8938:24350879,41544560:161020 +k1,8938:26801764,41544560:161057 +k1,8938:29000992,41544560:161058 +k1,8938:29778088,41544560:161058 +k1,8938:32583029,41544560:0 +) +(1,8939:6630773,42409640:25952256,513147,126483 +k1,8938:8725762,42409640:209518 +k1,8938:9926841,42409640:209519 +k1,8938:12486480,42409640:209518 +k1,8938:13887444,42409640:209519 +k1,8938:17264317,42409640:209518 +k1,8938:21964362,42409640:209518 +k1,8938:26339349,42409640:209519 +k1,8938:28203651,42409640:209518 +k1,8938:28944667,42409640:209519 +k1,8938:30626779,42409640:209518 +k1,8939:32583029,42409640:0 +) +(1,8939:6630773,43274720:25952256,505283,126483 +k1,8938:8262469,43274720:188593 +k1,8938:11086265,43274720:188593 +k1,8938:12726480,43274720:188593 +k1,8938:14417814,43274720:188593 +k1,8938:16326728,43274720:188594 +k1,8938:17706766,43274720:188593 +k1,8938:19615679,43274720:188593 +k1,8938:20420310,43274720:188593 +k1,8938:21023736,43274720:188583 +k1,8938:23547377,43274720:188593 +k1,8938:24808139,43274720:188593 +k1,8938:26015817,43274720:188593 +k1,8938:31591469,43274720:188593 +k1,8938:32583029,43274720:0 +) +(1,8939:6630773,44139800:25952256,513147,7863 +k1,8939:32583030,44139800:23016244 +g1,8939:32583030,44139800 +) +(1,8941:6630773,45004880:25952256,513147,126483 +h1,8940:6630773,45004880:983040,0,0 +k1,8940:9546478,45004880:298852 +k1,8940:10660599,45004880:298853 +k1,8940:12679771,45004880:298852 +k1,8940:15335954,45004880:298853 +k1,8940:16250844,45004880:298852 +k1,8940:16964440,45004880:298753 +k1,8940:19751694,45004880:298852 +k1,8940:21608337,45004880:298852 +k1,8940:24001065,45004880:298853 +k1,8940:25045061,45004880:298852 +k1,8940:26911535,45004880:298853 +k1,8940:28229472,45004880:298852 +k1,8940:32583029,45004880:0 +) +] +(1,8941:32583029,45706769:0,0,0 +g1,8941:32583029,45706769 +) +) +] +(1,8941:6630773,47279633:25952256,0,0 +h1,8941:6630773,47279633:25952256,0,0 +) +] +(1,8941:4262630,4025873:0,0,0 +[1,8941:-473656,4025873:0,0,0 +(1,8941:-473656,-710413:0,0,0 +(1,8941:-473656,-710413:0,0,0 +g1,8941:-473656,-710413 +) +g1,8941:-473656,-710413 ) -k1,8393:29014430,51504789:25935872 -g1,8393:29014430,51504789 +] ) ] +!24458 +}143 +Input:1217:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1218:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1219:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1220:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1221:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1222:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1223:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1224:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!764 +{144 +[1,9034:4262630,47279633:28320399,43253760,0 +(1,9034:4262630,4025873:0,0,0 +[1,9034:-473656,4025873:0,0,0 +(1,9034:-473656,-710413:0,0,0 +(1,9034:-473656,-644877:0,0,0 +k1,9034:-473656,-644877:-65536 ) +(1,9034:-473656,4736287:0,0,0 +k1,9034:-473656,4736287:5209943 ) +g1,9034:-473656,-710413 ) ] -[1,9917:3078558,4812305:0,0,0 -(1,9917:3078558,49800853:0,16384,2228224 -g1,9917:29030814,49800853 -g1,9917:36135244,49800853 -(1,8393:36135244,49800853:1720320,16384,2228224 -(1,8393:36135244,52029077:16384,1703936,0 -[1,8393:36135244,52029077:25952256,1703936,0 -(1,8393:36135244,51504789:25952256,1179648,0 -(1,8393:36135244,51504789:16384,1179648,0 -r1,9917:36151628,51504789:16384,1179648,0 ) -k1,8393:62087500,51504789:25935872 -g1,8393:62087500,51504789 -) -] -) -g1,8393:36675916,49800853 -(1,8393:36675916,49800853:1179648,16384,0 -r1,9917:37855564,49800853:1179648,16384,0 +[1,9034:6630773,47279633:25952256,43253760,0 +[1,9034:6630773,4812305:25952256,786432,0 +(1,9034:6630773,4812305:25952256,485622,126483 +(1,9034:6630773,4812305:25952256,485622,126483 +g1,9034:3078558,4812305 +[1,9034:3078558,4812305:0,0,0 +(1,9034:3078558,2439708:0,1703936,0 +k1,9034:1358238,2439708:-1720320 +(1,8606:1358238,2439708:1720320,1703936,0 +(1,8606:1358238,2439708:1179648,16384,0 +r1,9034:2537886,2439708:1179648,16384,0 ) +g1,8606:3062174,2439708 +(1,8606:3062174,2439708:16384,1703936,0 +[1,8606:3062174,2439708:25952256,1703936,0 +(1,8606:3062174,1915420:25952256,1179648,0 +(1,8606:3062174,1915420:16384,1179648,0 +r1,9034:3078558,1915420:16384,1179648,0 ) -k1,9917:3078556,49800853:-34777008 -) -] -g1,9917:6630773,4812305 -g1,9917:6630773,4812305 -g1,9917:9524187,4812305 -k1,9917:31387651,4812305:21863464 -) -) -] -[1,9917:6630773,45706769:25952256,40108032,0 -(1,9917:6630773,45706769:25952256,40108032,0 -(1,9917:6630773,45706769:0,0,0 -g1,9917:6630773,45706769 -) -[1,9917:6630773,45706769:25952256,40108032,0 -(1,9851:6630773,6254097:25952256,505283,134348 -h1,9850:6630773,6254097:983040,0,0 -k1,9850:8620308,6254097:188606 -k1,9850:10202865,6254097:188606 -(1,9850:10202865,6254097:0,459977,115847 -r1,9917:11264554,6254097:1061689,575824,115847 -k1,9850:10202865,6254097:-1061689 -) -(1,9850:10202865,6254097:1061689,459977,115847 -k1,9850:10202865,6254097:3277 -h1,9850:11261277,6254097:0,411205,112570 -) -k1,9850:11453160,6254097:188606 -k1,9850:13386990,6254097:188606 -k1,9850:14443949,6254097:188607 -k1,9850:15736837,6254097:188606 -k1,9850:17017928,6254097:188606 -k1,9850:17977237,6254097:188606 -k1,9850:19914999,6254097:188606 -k1,9850:22614945,6254097:188606 -k1,9850:23419589,6254097:188606 -k1,9850:23964055,6254097:188606 -(1,9850:23964055,6254097:0,452978,115847 -r1,9917:25729168,6254097:1765113,568825,115847 -k1,9850:23964055,6254097:-1765113 -) -(1,9850:23964055,6254097:1765113,452978,115847 -k1,9850:23964055,6254097:3277 -h1,9850:25725891,6254097:0,411205,112570 -) -k1,9850:25917775,6254097:188607 -k1,9850:27521303,6254097:188606 -k1,9850:28361337,6254097:188606 -k1,9850:30024503,6254097:188606 -k1,9850:32583029,6254097:0 -) -(1,9851:6630773,7095585:25952256,513147,126483 -k1,9850:9072410,7095585:133459 -k1,9850:10397314,7095585:133459 -k1,9850:12028272,7095585:133460 -k1,9850:13358418,7095585:133459 -k1,9850:16678237,7095585:133459 -k1,9850:17343193,7095585:133459 -k1,9850:18761158,7095585:133459 -k1,9850:19762970,7095585:133460 -k1,9850:21371644,7095585:133459 -k1,9850:22156531,7095585:133459 -k1,9850:24506418,7095585:133459 -k1,9850:25658963,7095585:133460 -k1,9850:27541578,7095585:133459 -k1,9850:29685682,7095585:133459 -k1,9850:32583029,7095585:0 -) -(1,9851:6630773,7937073:25952256,513147,134348 -k1,9850:7412529,7937073:165718 -k1,9850:8675976,7937073:165719 -k1,9850:10172075,7937073:165718 -k1,9850:12007650,7937073:165718 -k1,9850:12991258,7937073:165719 -k1,9850:15818393,7937073:165718 -k1,9850:17852542,7937073:165718 -k1,9850:18549758,7937073:165719 -k1,9850:19734561,7937073:165718 -k1,9850:22561696,7937073:165718 -k1,9850:23675066,7937073:165719 -(1,9850:23675066,7937073:0,459977,115847 -r1,9917:24736755,7937073:1061689,575824,115847 -k1,9850:23675066,7937073:-1061689 -) -(1,9850:23675066,7937073:1061689,459977,115847 -k1,9850:23675066,7937073:3277 -h1,9850:24733478,7937073:0,411205,112570 -) -k1,9850:24902473,7937073:165718 -k1,9850:26635812,7937073:165718 -k1,9850:28299684,7937073:165719 -h1,9850:29495061,7937073:0,0,0 -k1,9850:29660779,7937073:165718 -k1,9850:32583029,7937073:0 -) -(1,9851:6630773,8778561:25952256,473825,134348 -g1,9850:8565395,8778561 -(1,9850:8565395,8778561:0,452978,115847 -r1,9917:10330508,8778561:1765113,568825,115847 -k1,9850:8565395,8778561:-1765113 -) -(1,9850:8565395,8778561:1765113,452978,115847 -k1,9850:8565395,8778561:3277 -h1,9850:10327231,8778561:0,411205,112570 -) -k1,9851:32583030,8778561:22078852 -g1,9851:32583030,8778561 -) -v1,9853:6630773,9904679:0,393216,0 -(1,9872:6630773,16839280:25952256,7327817,196608 -g1,9872:6630773,16839280 -g1,9872:6630773,16839280 -g1,9872:6434165,16839280 -(1,9872:6434165,16839280:0,7327817,196608 -r1,9917:32779637,16839280:26345472,7524425,196608 -k1,9872:6434165,16839280:-26345472 -) -(1,9872:6434165,16839280:26345472,7327817,196608 -[1,9872:6630773,16839280:25952256,7131209,0 -(1,9855:6630773,10112297:25952256,404226,101187 -(1,9854:6630773,10112297:0,0,0 -g1,9854:6630773,10112297 -g1,9854:6630773,10112297 -g1,9854:6303093,10112297 -(1,9854:6303093,10112297:0,0,0 -) -g1,9854:6630773,10112297 -) -g1,9855:7263065,10112297 -g1,9855:8211503,10112297 -g1,9855:11372960,10112297 -g1,9855:12005252,10112297 -g1,9855:12953689,10112297 -g1,9855:14850563,10112297 -k1,9855:14850563,10112297:23593 -h1,9855:16771030,10112297:0,0,0 -k1,9855:32583029,10112297:15811999 -g1,9855:32583029,10112297 -) -(1,9856:6630773,10778475:25952256,404226,0 -h1,9856:6630773,10778475:0,0,0 -g1,9856:7263065,10778475 -g1,9856:8211503,10778475 -h1,9856:8527649,10778475:0,0,0 -k1,9856:32583029,10778475:24055380 -g1,9856:32583029,10778475 -) -(1,9857:6630773,11444653:25952256,404226,107478 -h1,9857:6630773,11444653:0,0,0 -g1,9857:9159938,11444653 -g1,9857:10108375,11444653 -g1,9857:13585978,11444653 -h1,9857:13902124,11444653:0,0,0 -k1,9857:32583028,11444653:18680904 -g1,9857:32583028,11444653 -) -(1,9858:6630773,12110831:25952256,404226,76021 -h1,9858:6630773,12110831:0,0,0 -g1,9858:6946919,12110831 -g1,9858:7263065,12110831 -g1,9858:8843794,12110831 -g1,9858:9792232,12110831 -h1,9858:11689107,12110831:0,0,0 -k1,9858:32583029,12110831:20893922 -g1,9858:32583029,12110831 -) -(1,9859:6630773,12777009:25952256,404226,101187 -h1,9859:6630773,12777009:0,0,0 -g1,9859:6946919,12777009 -g1,9859:7263065,12777009 -k1,9859:7263065,12777009:0 -h1,9859:9792230,12777009:0,0,0 -k1,9859:32583030,12777009:22790800 -g1,9859:32583030,12777009 -) -(1,9860:6630773,13443187:25952256,404226,0 -h1,9860:6630773,13443187:0,0,0 -g1,9860:6946919,13443187 -g1,9860:7263065,13443187 -g1,9860:7895357,13443187 -g1,9860:8843795,13443187 -g1,9860:9476087,13443187 -g1,9860:10108379,13443187 -h1,9860:10424525,13443187:0,0,0 -k1,9860:32583029,13443187:22158504 -g1,9860:32583029,13443187 -) -(1,9861:6630773,14109365:25952256,404226,76021 -h1,9861:6630773,14109365:0,0,0 -h1,9861:6946919,14109365:0,0,0 -k1,9861:32583029,14109365:25636110 -g1,9861:32583029,14109365 -) -(1,9865:6630773,14775543:25952256,404226,76021 -(1,9863:6630773,14775543:0,0,0 -g1,9863:6630773,14775543 -g1,9863:6630773,14775543 -g1,9863:6303093,14775543 -(1,9863:6303093,14775543:0,0,0 -) -g1,9863:6630773,14775543 -) -g1,9865:7579210,14775543 -g1,9865:8843793,14775543 -h1,9865:10424521,14775543:0,0,0 -k1,9865:32583029,14775543:22158508 -g1,9865:32583029,14775543 -) -(1,9867:6630773,16097081:25952256,404226,6290 -(1,9866:6630773,16097081:0,0,0 -g1,9866:6630773,16097081 -g1,9866:6630773,16097081 -g1,9866:6303093,16097081 -(1,9866:6303093,16097081:0,0,0 -) -g1,9866:6630773,16097081 -) -h1,9867:6946919,16097081:0,0,0 -k1,9867:32583029,16097081:25636110 -g1,9867:32583029,16097081 -) -(1,9871:6630773,16763259:25952256,404226,76021 -(1,9869:6630773,16763259:0,0,0 -g1,9869:6630773,16763259 -g1,9869:6630773,16763259 -g1,9869:6303093,16763259 -(1,9869:6303093,16763259:0,0,0 -) -g1,9869:6630773,16763259 -) -g1,9871:7579210,16763259 -g1,9871:8843793,16763259 -h1,9871:10424521,16763259:0,0,0 -k1,9871:32583029,16763259:22158508 -g1,9871:32583029,16763259 -) -] -) -g1,9872:32583029,16839280 -g1,9872:6630773,16839280 -g1,9872:6630773,16839280 -g1,9872:32583029,16839280 -g1,9872:32583029,16839280 -) -h1,9872:6630773,17035888:0,0,0 -v1,9876:6630773,18797257:0,393216,0 -(1,9877:6630773,21799641:25952256,3395600,0 -g1,9877:6630773,21799641 -g1,9877:6303093,21799641 -r1,9917:6401397,21799641:98304,3395600,0 -g1,9877:6600626,21799641 -g1,9877:6797234,21799641 -[1,9877:6797234,21799641:25785795,3395600,0 -(1,9877:6797234,19159330:25785795,755289,196608 -(1,9876:6797234,19159330:0,755289,196608 -r1,9917:8134168,19159330:1336934,951897,196608 -k1,9876:6797234,19159330:-1336934 -) -(1,9876:6797234,19159330:1336934,755289,196608 -) -k1,9876:8343973,19159330:209805 -k1,9876:8671653,19159330:327680 -(1,9876:8671653,19159330:0,452978,115847 -r1,9917:10436766,19159330:1765113,568825,115847 -k1,9876:8671653,19159330:-1765113 -) -(1,9876:8671653,19159330:1765113,452978,115847 -k1,9876:8671653,19159330:3277 -h1,9876:10433489,19159330:0,411205,112570 -) -k1,9876:10646572,19159330:209806 -k1,9876:12601601,19159330:209805 -k1,9876:13497568,19159330:209805 -k1,9876:16797397,19159330:209806 -k1,9876:18862526,19159330:209805 -k1,9876:20204793,19159330:209805 -k1,9876:23503311,19159330:209806 -k1,9876:25411154,19159330:209805 -k1,9876:26640044,19159330:209805 -k1,9876:29882201,19159330:209806 -k1,9876:32051532,19159330:209805 -k1,9877:32583029,19159330:0 -) -(1,9877:6797234,20000818:25785795,505283,134348 -(1,9876:6797234,20000818:0,414482,115847 -r1,9917:8562347,20000818:1765113,530329,115847 -k1,9876:6797234,20000818:-1765113 -) -(1,9876:6797234,20000818:1765113,414482,115847 -k1,9876:6797234,20000818:3277 -h1,9876:8559070,20000818:0,411205,112570 -) -k1,9876:8970835,20000818:234818 -k1,9876:9833488,20000818:234818 -k1,9876:11812219,20000818:234818 -k1,9876:13744420,20000818:234819 -k1,9876:15263744,20000818:234818 -k1,9876:17790356,20000818:234818 -k1,9876:20838635,20000818:234818 -k1,9876:23790576,20000818:234818 -k1,9876:25880064,20000818:234819 -k1,9876:26924252,20000818:234818 -k1,9876:27929773,20000818:234818 -k1,9876:31391584,20000818:234818 -k1,9876:32583029,20000818:0 -) -(1,9877:6797234,20842306:25785795,513147,126483 -k1,9876:10042492,20842306:212907 -k1,9876:12265388,20842306:212907 -k1,9876:13497380,20842306:212907 -k1,9876:17124057,20842306:212907 -k1,9876:20696995,20842306:212907 -k1,9876:21778254,20842306:212907 -k1,9876:23095442,20842306:212906 -k1,9876:24408043,20842306:212907 -(1,9876:24408043,20842306:0,452978,115847 -r1,9917:26876580,20842306:2468537,568825,115847 -k1,9876:24408043,20842306:-2468537 -) -(1,9876:24408043,20842306:2468537,452978,115847 -k1,9876:24408043,20842306:3277 -h1,9876:26873303,20842306:0,411205,112570 -) -k1,9876:27089487,20842306:212907 -k1,9876:27918432,20842306:212907 -k1,9876:29150424,20842306:212907 -k1,9876:30940127,20842306:212907 -k1,9876:31812326,20842306:212907 -k1,9877:32583029,20842306:0 -) -(1,9877:6797234,21683794:25785795,505283,115847 -(1,9876:6797234,21683794:0,459977,115847 -r1,9917:7507212,21683794:709978,575824,115847 -k1,9876:6797234,21683794:-709978 -) -(1,9876:6797234,21683794:709978,459977,115847 -k1,9876:6797234,21683794:3277 -h1,9876:7503935,21683794:0,411205,112570 -) -g1,9876:7706441,21683794 -g1,9876:8588555,21683794 -(1,9876:8588555,21683794:0,452978,115847 -r1,9917:10001956,21683794:1413401,568825,115847 -k1,9876:8588555,21683794:-1413401 -) -(1,9876:8588555,21683794:1413401,452978,115847 -k1,9876:8588555,21683794:3277 -h1,9876:9998679,21683794:0,411205,112570 -) -g1,9876:10201185,21683794 -g1,9876:13586774,21683794 -g1,9876:15795992,21683794 -g1,9876:17014306,21683794 -(1,9876:17014306,21683794:0,452978,115847 -r1,9917:18779419,21683794:1765113,568825,115847 -k1,9876:17014306,21683794:-1765113 -) -(1,9876:17014306,21683794:1765113,452978,115847 -k1,9876:17014306,21683794:3277 -h1,9876:18776142,21683794:0,411205,112570 -) -g1,9876:18978648,21683794 -k1,9877:32583029,21683794:10244350 -g1,9877:32583029,21683794 -) -] -g1,9877:32583029,21799641 -) -h1,9877:6630773,21799641:0,0,0 -(1,9879:6630773,23890901:25952256,555811,139132 -(1,9879:6630773,23890901:2450326,534184,12975 -g1,9879:6630773,23890901 -g1,9879:9081099,23890901 -) -(1,9879:9081099,23890901:0,455603,127104 -r1,9917:11408951,23890901:2327852,582707,127104 -k1,9879:9081099,23890901:-2327852 -) -(1,9879:9081099,23890901:2327852,455603,127104 -k1,9879:9081099,23890901:3277 -h1,9879:11405674,23890901:0,452326,123827 -) -g1,9879:11633871,23890901 -k1,9879:32583030,23890901:18977508 -g1,9879:32583030,23890901 -) -(1,9881:6630773,25125605:25952256,513147,126483 -k1,9880:8088054,25125605:260594 -(1,9880:8088054,25125605:0,414482,115847 -r1,9917:10204879,25125605:2116825,530329,115847 -k1,9880:8088054,25125605:-2116825 -) -(1,9880:8088054,25125605:2116825,414482,115847 -k1,9880:8088054,25125605:3277 -h1,9880:10201602,25125605:0,411205,112570 -) -k1,9880:10465473,25125605:260594 -k1,9880:10465473,25125605:0 -k1,9880:13749897,25125605:260593 -k1,9880:14541988,25125605:260594 -k1,9880:16015653,25125605:260594 -k1,9880:19581228,25125605:260594 -k1,9880:21528719,25125605:260594 -k1,9880:22861482,25125605:260594 -k1,9880:24649719,25125605:260593 -k1,9880:27884337,25125605:260594 -k1,9880:28831093,25125605:260594 -k1,9880:32583029,25125605:0 -) -(1,9881:6630773,25967093:25952256,505283,126483 -k1,9880:7951010,25967093:187775 -k1,9880:10268050,25967093:187775 -k1,9880:12827573,25967093:187775 -k1,9880:13824719,25967093:187776 -k1,9880:14368354,25967093:187775 -k1,9880:15655823,25967093:187775 -k1,9880:16495026,25967093:187775 -(1,9880:16495026,25967093:0,452978,115847 -r1,9917:18963563,25967093:2468537,568825,115847 -k1,9880:16495026,25967093:-2468537 -) -(1,9880:16495026,25967093:2468537,452978,115847 -k1,9880:16495026,25967093:3277 -h1,9880:18960286,25967093:0,411205,112570 -) -k1,9880:19325008,25967093:187775 -k1,9880:21398254,25967093:187775 -k1,9880:22690311,25967093:187775 -k1,9880:23625853,25967093:187776 -k1,9880:26127704,25967093:187775 -k1,9880:29366180,25967093:187775 -k1,9880:31563944,25967093:187775 -k1,9880:32583029,25967093:0 -) -(1,9881:6630773,26808581:25952256,513147,126483 -k1,9880:10239895,26808581:195352 -k1,9880:13621607,26808581:195352 -k1,9880:15101464,26808581:195351 -k1,9880:17194739,26808581:195352 -k1,9880:18409176,26808581:195352 -k1,9880:20181324,26808581:195352 -k1,9880:21035968,26808581:195352 -k1,9880:22250405,26808581:195352 -k1,9880:24034349,26808581:195351 -k1,9880:25058731,26808581:195352 -k1,9880:27611413,26808581:195352 -k1,9880:31400104,26808581:195352 -k1,9880:32583029,26808581:0 -) -(1,9881:6630773,27650069:25952256,513147,115847 -k1,9880:7545016,27650069:254951 -k1,9880:10690760,27650069:254951 -k1,9880:13641207,27650069:254951 -(1,9880:13641207,27650069:0,452978,115847 -r1,9917:16109744,27650069:2468537,568825,115847 -k1,9880:13641207,27650069:-2468537 -) -(1,9880:13641207,27650069:2468537,452978,115847 -k1,9880:13641207,27650069:3277 -h1,9880:16106467,27650069:0,411205,112570 -) -k1,9880:16364695,27650069:254951 -k1,9880:18241662,27650069:254951 -k1,9880:19244380,27650069:254952 -k1,9880:21540777,27650069:254951 -k1,9880:22481890,27650069:254951 -k1,9880:26012330,27650069:254951 -k1,9880:28984404,27650069:254951 -k1,9880:29855393,27650069:254951 -k1,9880:30466204,27650069:254951 -(1,9880:30466204,27650069:0,414482,115847 -r1,9917:32583029,27650069:2116825,530329,115847 -k1,9880:30466204,27650069:-2116825 -) -(1,9880:30466204,27650069:2116825,414482,115847 -k1,9880:30466204,27650069:3277 -h1,9880:32579752,27650069:0,411205,112570 -) -k1,9880:32583029,27650069:0 -) -(1,9881:6630773,28491557:25952256,505283,126483 -g1,9880:8244924,28491557 -g1,9880:9576615,28491557 -g1,9880:10842115,28491557 -k1,9881:32583028,28491557:20164772 -g1,9881:32583028,28491557 -) -(1,9899:6630773,40286338:25952256,11027837,0 -k1,9899:12321541,40286338:5690768 -(1,9882:12321541,40286338:0,0,0 -g1,9882:12321541,40286338 -g1,9882:12321541,40286338 -g1,9882:11993861,40286338 -(1,9882:11993861,40286338:0,0,0 -) -g1,9882:12321541,40286338 -) -(1,9897:12321541,40286338:14570720,11027837,0 -g1,9897:15131667,40286338 -(1,9897:15131667,30203947:0,0,0 -(1,9897:15131667,30203947:0,0,0 -g1,9884:15131667,30203947 -(1,9885:15131667,30203947:0,0,0 -(1,9885:15131667,30203947:0,0,0 -g1,9885:15131667,30203947 -g1,9885:15131667,30203947 -g1,9885:15131667,30203947 -g1,9885:15131667,30203947 -g1,9885:15131667,30203947 -(1,9885:15131667,30203947:0,0,0 -(1,9885:15131667,30203947:589824,56623,0 -(1,9885:15131667,30203947:589824,56623,0 -) -g1,9885:15721491,30203947 -) -) -g1,9885:15131667,30203947 -g1,9885:15131667,30203947 -) -) -g1,9885:15131667,30203947 -(1,9886:15131667,30203947:0,0,0 -(1,9886:15131667,30203947:0,0,0 -g1,9886:15131667,30203947 -g1,9886:15131667,30203947 -g1,9886:15131667,30203947 -g1,9886:15131667,30203947 -g1,9886:15131667,30203947 -(1,9886:15131667,30203947:0,0,0 -(1,9886:15131667,30203947:358613,319685,0 -(1,9886:15131667,30203947:358613,319685,0 -$1,9886:15131667,30203947 -$1,9886:15490280,30203947 -) -g1,9886:15490280,30203947 -) -) -g1,9886:15131667,30203947 -g1,9886:15131667,30203947 -) -) -g1,9886:15131667,30203947 -(1,9887:15131667,30203947:0,0,0 -(1,9887:15131667,30203947:0,0,0 -g1,9887:15131667,30203947 -g1,9887:15131667,30203947 -g1,9887:15131667,30203947 -g1,9887:15131667,30203947 -g1,9887:15131667,30203947 -(1,9887:15131667,30203947:0,0,0 -(1,9887:15131667,30203947:1905798,373362,104590 -(1,9887:15131667,30203947:1905798,373362,104590 -(1,9887:15131667,30203947:0,373362,104590 -r1,9917:17037465,30203947:1905798,477952,104590 -k1,9887:15131667,30203947:-1905798 -) -(1,9887:15131667,30203947:1905798,373362,104590 -k1,9887:15131667,30203947:3277 -h1,9887:17034188,30203947:0,370085,101313 -) -) -g1,9887:17037465,30203947 -) -) -g1,9887:15131667,30203947 -g1,9887:15131667,30203947 -) -) -g1,9887:15131667,30203947 -(1,9888:15131667,30203947:0,0,0 -(1,9888:15131667,30203947:0,0,0 -g1,9888:15131667,30203947 -g1,9888:15131667,30203947 -g1,9888:15131667,30203947 -g1,9888:15131667,30203947 -g1,9888:15131667,30203947 -(1,9888:15131667,30203947:0,0,0 -(1,9888:15131667,30203947:4121582,373362,104590 -(1,9888:15131667,30203947:4121582,373362,104590 -(1,9888:15131667,30203947:0,373362,104590 -r1,9917:19253249,30203947:4121582,477952,104590 -k1,9888:15131667,30203947:-4121582 -) -(1,9888:15131667,30203947:4121582,373362,104590 -g1,9888:18616891,30203947 -h1,9888:19249972,30203947:0,370085,101313 -) -) -g1,9888:19253249,30203947 -) -) -g1,9888:15131667,30203947 -g1,9888:15131667,30203947 -) -) -g1,9888:15131667,30203947 -(1,9889:15131667,30203947:0,0,0 -(1,9889:15131667,30203947:0,0,0 -g1,9889:15131667,30203947 -g1,9889:15131667,30203947 -g1,9889:15131667,30203947 -g1,9889:15131667,30203947 -g1,9889:15131667,30203947 -(1,9889:15131667,30203947:0,0,0 -(1,9889:15131667,30203947:4121582,373362,104590 -(1,9889:15131667,30203947:4121582,373362,104590 -(1,9889:15131667,30203947:0,373362,104590 -r1,9917:19253249,30203947:4121582,477952,104590 -k1,9889:15131667,30203947:-4121582 -) -(1,9889:15131667,30203947:4121582,373362,104590 -g1,9889:18616891,30203947 -h1,9889:19249972,30203947:0,370085,101313 -) -) -g1,9889:19253249,30203947 -) -) -g1,9889:15131667,30203947 -g1,9889:15131667,30203947 -) -) -g1,9889:15131667,30203947 -g1,9890:15131667,30203947 -(1,9890:15131667,30203947:0,0,0 -(1,9890:15131667,30203947:0,0,0 -g1,9890:15131667,30203947 -g1,9890:15131667,30203947 -g1,9890:15131667,30203947 -g1,9890:15131667,30203947 -g1,9890:15131667,30203947 -(1,9890:15131667,30203947:0,0,0 -(1,9890:15131667,30203947:589824,56623,0 -(1,9890:15131667,30203947:589824,56623,0 -) -g1,9890:15721491,30203947 -) -) -g1,9890:15131667,30203947 -g1,9890:15131667,30203947 -) -) -g1,9890:15131667,30203947 -g1,9891:15131667,30203947 -g1,9891:15131667,30203947 -g1,9891:15131667,30203947 -g1,9891:15131667,30203947 -g1,9891:15131667,30203947 -g1,9891:15131667,30203947 -g1,9892:15131667,30203947 -g1,9892:15131667,30203947 -g1,9892:15131667,30203947 -g1,9892:15131667,30203947 -g1,9892:15131667,30203947 -(1,9892:15131667,30203947:0,0,0 -(1,9892:15131667,30203947:0,0,0 -g1,9892:15131667,30203947 -g1,9892:15131667,30203947 -g1,9892:15131667,30203947 -g1,9892:15131667,30203947 -g1,9892:15131667,30203947 -(1,9892:15131667,30203947:0,0,0 -(1,9892:15131667,30203947:0,0,0 -(1,9892:15131667,30203947:0,0,0 -) -g1,9892:15131667,30203947 -) -) -g1,9892:15131667,30203947 -g1,9892:15131667,30203947 -) -) -g1,9892:15131667,30203947 -g1,9893:15131667,30203947 -g1,9893:15131667,30203947 -g1,9893:15131667,30203947 -g1,9893:15131667,30203947 -(1,9893:15131667,30203947:0,0,0 -(1,9893:15131667,30203947:0,0,0 -g1,9893:15131667,30203947 -g1,9893:15131667,30203947 -g1,9893:15131667,30203947 -g1,9893:15131667,30203947 -g1,9893:15131667,30203947 -(1,9893:15131667,30203947:0,0,0 -(1,9893:15131667,30203947:2418868,426443,7077 -(1,9893:15131667,30203947:2418868,426443,7077 -) -g1,9893:17550535,30203947 -) -) -g1,9893:15131667,30203947 -g1,9893:15131667,30203947 -) -) -g1,9893:15131667,30203947 -g1,9894:15131667,30203947 -g1,9894:15131667,30203947 -g1,9894:15131667,30203947 -g1,9894:15131667,30203947 -g1,9894:15131667,30203947 -(1,9894:15131667,30203947:0,0,0 -(1,9894:15131667,30203947:0,0,0 -g1,9894:15131667,30203947 -g1,9894:15131667,30203947 -g1,9894:15131667,30203947 -g1,9894:15131667,30203947 -g1,9894:15131667,30203947 -(1,9894:15131667,30203947:0,0,0 -(1,9894:15131667,30203947:2222339,408008,104590 -(1,9894:15131667,30203947:2222339,408008,104590 -(1,9894:15131667,30203947:0,408008,104590 -r1,9917:17354006,30203947:2222339,512598,104590 -k1,9894:15131667,30203947:-2222339 -) -(1,9894:15131667,30203947:2222339,408008,104590 -k1,9894:15131667,30203947:3277 -h1,9894:17350729,30203947:0,370085,101313 -) -) -g1,9894:17354006,30203947 -) -) -g1,9894:15131667,30203947 -g1,9894:15131667,30203947 -) -) -g1,9894:15131667,30203947 -g1,9895:15131667,30203947 -g1,9895:15131667,30203947 -g1,9895:15131667,30203947 -g1,9895:15131667,30203947 -g1,9895:15131667,30203947 -g1,9895:15131667,30203947 -g1,9896:15131667,30203947 -g1,9896:15131667,30203947 -g1,9896:15131667,30203947 -g1,9896:15131667,30203947 -g1,9896:15131667,30203947 -g1,9896:15131667,30203947 -g1,9897:15131667,30203947 -g1,9897:15131667,30203947 -) -g1,9897:15131667,30203947 -) -) -g1,9899:26892261,40286338 -k1,9899:32583029,40286338:5690768 -) -v1,9902:6630773,41987382:0,393216,0 -(1,9917:6630773,45510161:25952256,3915995,196608 -g1,9917:6630773,45510161 -g1,9917:6630773,45510161 -g1,9917:6434165,45510161 -(1,9917:6434165,45510161:0,3915995,196608 -r1,9917:32779637,45510161:26345472,4112603,196608 -k1,9917:6434165,45510161:-26345472 -) -(1,9917:6434165,45510161:26345472,3915995,196608 -[1,9917:6630773,45510161:25952256,3719387,0 -(1,9904:6630773,42179271:25952256,388497,4718 -(1,9903:6630773,42179271:0,0,0 -g1,9903:6630773,42179271 -g1,9903:6630773,42179271 -g1,9903:6303093,42179271 -(1,9903:6303093,42179271:0,0,0 -) -g1,9903:6630773,42179271 -) -g1,9904:7263065,42179271 -g1,9904:8211503,42179271 -h1,9904:8527649,42179271:0,0,0 -k1,9904:32583029,42179271:24055380 -g1,9904:32583029,42179271 -) -(1,9905:6630773,42845449:25952256,404226,101187 -h1,9905:6630773,42845449:0,0,0 -k1,9905:6630773,42845449:0 -h1,9905:8843793,42845449:0,0,0 -k1,9905:32583029,42845449:23739236 -g1,9905:32583029,42845449 -) -(1,9906:6630773,43511627:25952256,404226,101187 -h1,9906:6630773,43511627:0,0,0 -g1,9906:6946919,43511627 -g1,9906:7263065,43511627 -k1,9906:7263065,43511627:0 -h1,9906:9792230,43511627:0,0,0 -k1,9906:32583030,43511627:22790800 -g1,9906:32583030,43511627 -) -(1,9907:6630773,44177805:25952256,410518,76021 -h1,9907:6630773,44177805:0,0,0 -g1,9907:6946919,44177805 -g1,9907:7263065,44177805 -g1,9907:8211502,44177805 -g1,9907:9159939,44177805 -g1,9907:9792231,44177805 -g1,9907:11056814,44177805 -k1,9907:11056814,44177805:0 -h1,9907:13269833,44177805:0,0,0 -k1,9907:32583029,44177805:19313196 -g1,9907:32583029,44177805 -) -(1,9908:6630773,44843983:25952256,388497,4718 -h1,9908:6630773,44843983:0,0,0 -g1,9908:6946919,44843983 -g1,9908:7263065,44843983 -g1,9908:7895357,44843983 -g1,9908:8843795,44843983 -h1,9908:9792233,44843983:0,0,0 -k1,9908:32583029,44843983:22790796 -g1,9908:32583029,44843983 +k1,8606:29014430,1915420:25935872 +g1,8606:29014430,1915420 ) -(1,9909:6630773,45510161:25952256,404226,76021 -h1,9909:6630773,45510161:0,0,0 -h1,9909:6946919,45510161:0,0,0 -k1,9909:32583029,45510161:25636110 -g1,9909:32583029,45510161 +] ) -] -) -g1,9917:32583029,45510161 -g1,9917:6630773,45510161 -g1,9917:6630773,45510161 -g1,9917:32583029,45510161 -g1,9917:32583029,45510161 -) -] -(1,9917:32583029,45706769:0,0,0 -g1,9917:32583029,45706769 -) -) -] -(1,9917:6630773,47279633:25952256,0,0 -h1,9917:6630773,47279633:25952256,0,0 -) -] -(1,9917:4262630,4025873:0,0,0 -[1,9917:-473656,4025873:0,0,0 -(1,9917:-473656,-710413:0,0,0 -(1,9917:-473656,-710413:0,0,0 -g1,9917:-473656,-710413 ) -g1,9917:-473656,-710413 -) -] -) -] -!25576 -}166 -Input:1457:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1458:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1459:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1460:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1461:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1462:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1463:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1464:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1465:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1466:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!952 -{167 -[1,10038:4262630,47279633:28320399,43253760,0 -(1,10038:4262630,4025873:0,0,0 -[1,10038:-473656,4025873:0,0,0 -(1,10038:-473656,-710413:0,0,0 -(1,10038:-473656,-644877:0,0,0 -k1,10038:-473656,-644877:-65536 ) -(1,10038:-473656,4736287:0,0,0 -k1,10038:-473656,4736287:5209943 +] +[1,9034:3078558,4812305:0,0,0 +(1,9034:3078558,2439708:0,1703936,0 +g1,9034:29030814,2439708 +g1,9034:36135244,2439708 +(1,8606:36135244,2439708:1720320,1703936,0 +(1,8606:36135244,2439708:16384,1703936,0 +[1,8606:36135244,2439708:25952256,1703936,0 +(1,8606:36135244,1915420:25952256,1179648,0 +(1,8606:36135244,1915420:16384,1179648,0 +r1,9034:36151628,1915420:16384,1179648,0 ) -g1,10038:-473656,-710413 +k1,8606:62087500,1915420:25935872 +g1,8606:62087500,1915420 ) ] ) -[1,10038:6630773,47279633:25952256,43253760,0 -[1,10038:6630773,4812305:25952256,786432,0 -(1,10038:6630773,4812305:25952256,505283,134348 -(1,10038:6630773,4812305:25952256,505283,134348 -g1,10038:3078558,4812305 -[1,10038:3078558,4812305:0,0,0 -(1,10038:3078558,2439708:0,1703936,0 -k1,10038:1358238,2439708:-1720320 -(1,8393:1358238,2439708:1720320,1703936,0 -(1,8393:1358238,2439708:1179648,16384,0 -r1,10038:2537886,2439708:1179648,16384,0 +g1,8606:36675916,2439708 +(1,8606:36675916,2439708:1179648,16384,0 +r1,9034:37855564,2439708:1179648,16384,0 ) -g1,8393:3062174,2439708 -(1,8393:3062174,2439708:16384,1703936,0 -[1,8393:3062174,2439708:25952256,1703936,0 -(1,8393:3062174,1915420:25952256,1179648,0 -(1,8393:3062174,1915420:16384,1179648,0 -r1,10038:3078558,1915420:16384,1179648,0 ) -k1,8393:29014430,1915420:25935872 -g1,8393:29014430,1915420 +k1,9034:3078556,2439708:-34777008 ) ] +[1,9034:3078558,4812305:0,0,0 +(1,9034:3078558,49800853:0,16384,2228224 +k1,9034:1358238,49800853:-1720320 +(1,8606:1358238,49800853:1720320,16384,2228224 +(1,8606:1358238,49800853:1179648,16384,0 +r1,9034:2537886,49800853:1179648,16384,0 ) +g1,8606:3062174,49800853 +(1,8606:3062174,52029077:16384,1703936,0 +[1,8606:3062174,52029077:25952256,1703936,0 +(1,8606:3062174,51504789:25952256,1179648,0 +(1,8606:3062174,51504789:16384,1179648,0 +r1,9034:3078558,51504789:16384,1179648,0 ) +k1,8606:29014430,51504789:25935872 +g1,8606:29014430,51504789 ) ] -[1,10038:3078558,4812305:0,0,0 -(1,10038:3078558,2439708:0,1703936,0 -g1,10038:29030814,2439708 -g1,10038:36135244,2439708 -(1,8393:36135244,2439708:1720320,1703936,0 -(1,8393:36135244,2439708:16384,1703936,0 -[1,8393:36135244,2439708:25952256,1703936,0 -(1,8393:36135244,1915420:25952256,1179648,0 -(1,8393:36135244,1915420:16384,1179648,0 -r1,10038:36151628,1915420:16384,1179648,0 ) -k1,8393:62087500,1915420:25935872 -g1,8393:62087500,1915420 +) +) +] +[1,9034:3078558,4812305:0,0,0 +(1,9034:3078558,49800853:0,16384,2228224 +g1,9034:29030814,49800853 +g1,9034:36135244,49800853 +(1,8606:36135244,49800853:1720320,16384,2228224 +(1,8606:36135244,52029077:16384,1703936,0 +[1,8606:36135244,52029077:25952256,1703936,0 +(1,8606:36135244,51504789:25952256,1179648,0 +(1,8606:36135244,51504789:16384,1179648,0 +r1,9034:36151628,51504789:16384,1179648,0 +) +k1,8606:62087500,51504789:25935872 +g1,8606:62087500,51504789 +) +] +) +g1,8606:36675916,49800853 +(1,8606:36675916,49800853:1179648,16384,0 +r1,9034:37855564,49800853:1179648,16384,0 +) +) +k1,9034:3078556,49800853:-34777008 +) +] +g1,9034:6630773,4812305 +g1,9034:6630773,4812305 +g1,9034:8364200,4812305 +g1,9034:10177581,4812305 +k1,9034:31387653,4812305:21210072 +) +) +] +[1,9034:6630773,45706769:25952256,40108032,0 +(1,9034:6630773,45706769:25952256,40108032,0 +(1,9034:6630773,45706769:0,0,0 +g1,9034:6630773,45706769 +) +[1,9034:6630773,45706769:25952256,40108032,0 +(1,8941:6630773,6254097:25952256,513147,134348 +k1,8940:7575325,6254097:285260 +k1,8940:10432873,6254097:285260 +k1,8940:11909578,6254097:285260 +k1,8940:14762539,6254097:285260 +k1,8940:16066884,6254097:285260 +k1,8940:19685306,6254097:285261 +k1,8940:22260394,6254097:285260 +k1,8940:23737099,6254097:285260 +k1,8940:24681651,6254097:285260 +k1,8940:28000573,6254097:285260 +k1,8940:29304918,6254097:285260 +k1,8940:32583029,6254097:0 +) +(1,8941:6630773,7119177:25952256,513147,126483 +k1,8940:9979901,7119177:273523 +k1,8940:10912717,7119177:273524 +k1,8940:12205325,7119177:273523 +k1,8940:15241191,7119177:273523 +k1,8940:17373971,7119177:273524 +k1,8940:19322594,7119177:273523 +k1,8940:21883325,7119177:273524 +k1,8940:24786152,7119177:273523 +k1,8940:28453785,7119177:273523 +k1,8940:29386601,7119177:273524 +k1,8940:31821501,7119177:273523 +k1,8940:32583029,7119177:0 +) +(1,8941:6630773,7984257:25952256,505283,134348 +g1,8940:9501905,7984257 +g1,8940:11351331,7984257 +g1,8940:13905924,7984257 +k1,8941:32583029,7984257:17007248 +g1,8941:32583029,7984257 +) +(1,8943:6630773,8849337:25952256,513147,134348 +h1,8942:6630773,8849337:983040,0,0 +k1,8942:9481973,8849337:215997 +k1,8942:11050633,8849337:215997 +k1,8942:13034136,8849337:215997 +k1,8942:15728705,8849337:215997 +k1,8942:17512323,8849337:215997 +k1,8942:20062057,8849337:215997 +k1,8942:21994442,8849337:215997 +k1,8942:22625265,8849337:215980 +k1,8942:25509233,8849337:215997 +k1,8942:26081090,8849337:215997 +k1,8942:28230399,8849337:215997 +k1,8942:29836415,8849337:215997 +k1,8942:32583029,8849337:0 +) +(1,8943:6630773,9714417:25952256,513147,134348 +(1,8942:6837867,9714417:0,452978,115847 +r1,9034:7547845,9714417:709978,568825,115847 +k1,8942:6837867,9714417:-709978 +) +(1,8942:6837867,9714417:709978,452978,115847 +k1,8942:6837867,9714417:3277 +h1,8942:7544568,9714417:0,411205,112570 +) +k1,8942:8006358,9714417:251419 +k1,8942:8943939,9714417:251419 +k1,8942:10517219,9714417:251419 +k1,8942:11427930,9714417:251419 +k1,8942:12698434,9714417:251419 +k1,8942:15965821,9714417:251420 +k1,8942:20643542,9714417:251419 +k1,8942:21914046,9714417:251419 +k1,8942:25899051,9714417:251419 +(1,8942:26106145,9714417:0,414482,115847 +r1,9034:26464411,9714417:358266,530329,115847 +k1,8942:26106145,9714417:-358266 +) +(1,8942:26106145,9714417:358266,414482,115847 +k1,8942:26106145,9714417:3277 +h1,8942:26461134,9714417:0,411205,112570 +) +k1,8942:26922924,9714417:251419 +k1,8942:28381516,9714417:251419 +k1,8942:32583029,9714417:0 +) +(1,8943:6630773,10579497:25952256,513147,126483 +k1,8942:7483014,10579497:236203 +k1,8942:10052953,10579497:236202 +k1,8942:11831874,10579497:236203 +k1,8942:13259521,10579497:236202 +k1,8942:14284122,10579497:236203 +k1,8942:18596009,10579497:236203 +k1,8942:21924855,10579497:236202 +k1,8942:22777096,10579497:236203 +k1,8942:25347035,10579497:236202 +k1,8942:27299626,10579497:236203 +k1,8942:30140229,10579497:236202 +k1,8942:31548871,10579497:236203 +k1,8943:32583029,10579497:0 +) +(1,8943:6630773,11444577:25952256,513147,126483 +k1,8942:11376438,11444577:179772 +k1,8942:12215501,11444577:179771 +k1,8942:14289263,11444577:179772 +k1,8942:15753541,11444577:179772 +k1,8942:17408528,11444577:179772 +k1,8942:19098249,11444577:179771 +k1,8942:22061990,11444577:179772 +k1,8942:22927924,11444577:179772 +k1,8942:23522519,11444577:179752 +k1,8942:27104920,11444577:179772 +k1,8942:28232343,11444577:179772 +k1,8942:30104254,11444577:179771 +k1,8942:31966991,11444577:179772 +k1,8942:32583029,11444577:0 +) +(1,8943:6630773,12309657:25952256,505283,134348 +g1,8942:9740456,12309657 +g1,8942:12884872,12309657 +g1,8942:14275546,12309657 +g1,8942:16811133,12309657 +g1,8942:18001922,12309657 +g1,8942:21291174,12309657 +g1,8942:22106441,12309657 +g1,8942:24723293,12309657 +h1,8942:25121752,12309657:0,0,0 +g1,8942:25320981,12309657 +g1,8942:26329580,12309657 +g1,8942:28026962,12309657 +h1,8942:29222339,12309657:0,0,0 +k1,8943:32583029,12309657:3187020 +g1,8943:32583029,12309657 +) +(1,8945:6630773,13174737:25952256,505283,134348 +h1,8944:6630773,13174737:983040,0,0 +k1,8944:8822441,13174737:255079 +k1,8944:11746802,13174737:255080 +k1,8944:12950842,13174737:255079 +k1,8944:14595941,13174737:255080 +k1,8944:16935065,13174737:255079 +k1,8944:19044814,13174737:255080 +k1,8944:20109263,13174737:255079 +k1,8944:20809275,13174737:255023 +k1,8944:22780743,13174737:255080 +k1,8944:23989371,13174737:255079 +k1,8944:25732774,13174737:255080 +k1,8944:26749381,13174737:255079 +k1,8944:29655392,13174737:255080 +k1,8944:30929556,13174737:255079 +k1,8944:32583029,13174737:0 +) +(1,8945:6630773,14039817:25952256,513147,134348 +k1,8944:10201502,14039817:166134 +k1,8944:12284564,14039817:166134 +k1,8944:14186090,14039817:166133 +k1,8944:16469692,14039817:166134 +k1,8944:19331322,14039817:166134 +k1,8944:21101122,14039817:166134 +k1,8944:23002649,14039817:166134 +k1,8944:25499898,14039817:166133 +k1,8944:27699614,14039817:166134 +k1,8944:28525040,14039817:166134 +k1,8944:32583029,14039817:0 +) +(1,8945:6630773,14904897:25952256,505283,134348 +g1,8944:8840647,14904897 +g1,8944:9655914,14904897 +g1,8944:13188304,14904897 +g1,8944:15851031,14904897 +g1,8944:17241705,14904897 +g1,8944:19176327,14904897 +g1,8944:20394641,14904897 +g1,8944:21983889,14904897 +k1,8945:32583029,14904897:7678856 +g1,8945:32583029,14904897 +) +(1,8947:6630773,15769977:25952256,513147,134348 +h1,8946:6630773,15769977:983040,0,0 +k1,8946:9957229,15769977:148615 +k1,8946:12801341,15769977:148616 +k1,8946:14379952,15769977:148615 +k1,8946:15520127,15769977:148615 +k1,8946:18197777,15769977:148616 +k1,8946:19418561,15769977:148615 +k1,8946:22050991,15769977:148615 +k1,8946:22851034,15769977:148615 +k1,8946:24411951,15769977:148616 +k1,8946:26258604,15769977:148615 +k1,8946:27426304,15769977:148615 +k1,8946:29435487,15769977:148616 +k1,8946:30243394,15769977:148615 +k1,8946:32583029,15769977:0 +) +(1,8947:6630773,16635057:25952256,473825,7863 +k1,8947:32583028,16635057:22829464 +g1,8947:32583028,16635057 +) +v1,8949:6630773,17319912:0,393216,0 +(1,8956:6630773,18443492:25952256,1516796,196608 +g1,8956:6630773,18443492 +g1,8956:6630773,18443492 +g1,8956:6434165,18443492 +(1,8956:6434165,18443492:0,1516796,196608 +r1,9034:32779637,18443492:26345472,1713404,196608 +k1,8956:6434165,18443492:-26345472 +) +(1,8956:6434165,18443492:26345472,1516796,196608 +[1,8956:6630773,18443492:25952256,1320188,0 +(1,8951:6630773,17547743:25952256,424439,106246 +(1,8950:6630773,17547743:0,0,0 +g1,8950:6630773,17547743 +g1,8950:6630773,17547743 +g1,8950:6303093,17547743 +(1,8950:6303093,17547743:0,0,0 +) +g1,8950:6630773,17547743 +) +k1,8951:6630773,17547743:0 +k1,8951:6630773,17547743:0 +h1,8951:11610083,17547743:0,0,0 +k1,8951:32583029,17547743:20972946 +g1,8951:32583029,17547743 +) +(1,8955:6630773,18363670:25952256,424439,79822 +(1,8953:6630773,18363670:0,0,0 +g1,8953:6630773,18363670 +g1,8953:6630773,18363670 +g1,8953:6303093,18363670 +(1,8953:6303093,18363670:0,0,0 +) +g1,8953:6630773,18363670 +) +g1,8955:7626635,18363670 +g1,8955:8954451,18363670 +h1,8955:11610082,18363670:0,0,0 +k1,8955:32583030,18363670:20972948 +g1,8955:32583030,18363670 +) +] +) +g1,8956:32583029,18443492 +g1,8956:6630773,18443492 +g1,8956:6630773,18443492 +g1,8956:32583029,18443492 +g1,8956:32583029,18443492 +) +h1,8956:6630773,18640100:0,0,0 +(1,8960:6630773,19505180:25952256,505283,134348 +h1,8959:6630773,19505180:983040,0,0 +g1,8959:9871528,19505180 +g1,8959:14128746,19505180 +g1,8959:16501149,19505180 +g1,8959:19597725,19505180 +g1,8959:21970128,19505180 +g1,8959:22785395,19505180 +g1,8959:24514890,19505180 +g1,8959:25786288,19505180 +g1,8959:28450981,19505180 +k1,8960:32583029,19505180:2462191 +g1,8960:32583029,19505180 +) +v1,8962:6630773,20190035:0,393216,0 +(1,8974:6630773,23525676:25952256,3728857,196608 +g1,8974:6630773,23525676 +g1,8974:6630773,23525676 +g1,8974:6434165,23525676 +(1,8974:6434165,23525676:0,3728857,196608 +r1,9034:32779637,23525676:26345472,3925465,196608 +k1,8974:6434165,23525676:-26345472 +) +(1,8974:6434165,23525676:26345472,3728857,196608 +[1,8974:6630773,23525676:25952256,3532249,0 +(1,8964:6630773,20417866:25952256,424439,9908 +(1,8963:6630773,20417866:0,0,0 +g1,8963:6630773,20417866 +g1,8963:6630773,20417866 +g1,8963:6303093,20417866 +(1,8963:6303093,20417866:0,0,0 +) +g1,8963:6630773,20417866 +) +g1,8964:9286405,20417866 +g1,8964:10282267,20417866 +h1,8964:11610083,20417866:0,0,0 +k1,8964:32583029,20417866:20972946 +g1,8964:32583029,20417866 +) +(1,8965:6630773,21102721:25952256,424439,106246 +h1,8965:6630773,21102721:0,0,0 +g1,8965:9618358,21102721 +g1,8965:10614220,21102721 +k1,8965:10614220,21102721:0 +h1,8965:14929621,21102721:0,0,0 +k1,8965:32583029,21102721:17653408 +g1,8965:32583029,21102721 +) +(1,8966:6630773,21787576:25952256,424439,106246 +h1,8966:6630773,21787576:0,0,0 +k1,8966:6630773,21787576:0 +h1,8966:10946174,21787576:0,0,0 +k1,8966:32583030,21787576:21636856 +g1,8966:32583030,21787576 +) +(1,8970:6630773,22603503:25952256,424439,79822 +(1,8968:6630773,22603503:0,0,0 +g1,8968:6630773,22603503 +g1,8968:6630773,22603503 +g1,8968:6303093,22603503 +(1,8968:6303093,22603503:0,0,0 +) +g1,8968:6630773,22603503 +) +g1,8970:7626635,22603503 +g1,8970:8954451,22603503 +h1,8970:11610082,22603503:0,0,0 +k1,8970:32583030,22603503:20972948 +g1,8970:32583030,22603503 +) +(1,8972:6630773,23419430:25952256,424439,106246 +(1,8971:6630773,23419430:0,0,0 +g1,8971:6630773,23419430 +g1,8971:6630773,23419430 +g1,8971:6303093,23419430 +(1,8971:6303093,23419430:0,0,0 +) +g1,8971:6630773,23419430 +) +k1,8972:6630773,23419430:0 +g1,8972:10946174,23419430 +g1,8972:11610082,23419430 +g1,8972:13601806,23419430 +k1,8972:13601806,23419430:0 +h1,8972:14597668,23419430:0,0,0 +k1,8972:32583028,23419430:17985360 +g1,8972:32583028,23419430 +) +] +) +g1,8974:32583029,23525676 +g1,8974:6630773,23525676 +g1,8974:6630773,23525676 +g1,8974:32583029,23525676 +g1,8974:32583029,23525676 +) +h1,8974:6630773,23722284:0,0,0 +(1,8978:6630773,24587364:25952256,513147,134348 +h1,8977:6630773,24587364:983040,0,0 +k1,8977:8279295,24587364:177894 +k1,8977:9847230,24587364:177916 +k1,8977:11760539,24587364:177916 +k1,8977:14685068,24587364:177915 +(1,8977:14685068,24587364:0,452978,115847 +r1,9034:15395046,24587364:709978,568825,115847 +k1,8977:14685068,24587364:-709978 +) +(1,8977:14685068,24587364:709978,452978,115847 +k1,8977:14685068,24587364:3277 +h1,8977:15391769,24587364:0,411205,112570 +) +k1,8977:15572962,24587364:177916 +k1,8977:17796912,24587364:177916 +k1,8977:18993912,24587364:177915 +k1,8977:20561191,24587364:177916 +k1,8977:22089149,24587364:177916 +k1,8977:23797330,24587364:177915 +k1,8977:25166691,24587364:177916 +k1,8977:27182892,24587364:177916 +k1,8977:28379892,24587364:177915 +k1,8977:30053995,24587364:177916 +k1,8978:32583029,24587364:0 +k1,8978:32583029,24587364:0 +) +v1,8980:6630773,25272219:0,393216,0 +(1,8987:6630773,26395799:25952256,1516796,196608 +g1,8987:6630773,26395799 +g1,8987:6630773,26395799 +g1,8987:6434165,26395799 +(1,8987:6434165,26395799:0,1516796,196608 +r1,9034:32779637,26395799:26345472,1713404,196608 +k1,8987:6434165,26395799:-26345472 +) +(1,8987:6434165,26395799:26345472,1516796,196608 +[1,8987:6630773,26395799:25952256,1320188,0 +(1,8982:6630773,25500050:25952256,424439,106246 +(1,8981:6630773,25500050:0,0,0 +g1,8981:6630773,25500050 +g1,8981:6630773,25500050 +g1,8981:6303093,25500050 +(1,8981:6303093,25500050:0,0,0 +) +g1,8981:6630773,25500050 +) +g1,8982:8290543,25500050 +g1,8982:9286405,25500050 +g1,8982:11610083,25500050 +g1,8982:12605945,25500050 +k1,8982:12605945,25500050:0 +h1,8982:14265715,25500050:0,0,0 +k1,8982:32583029,25500050:18317314 +g1,8982:32583029,25500050 +) +(1,8986:6630773,26315977:25952256,424439,79822 +(1,8984:6630773,26315977:0,0,0 +g1,8984:6630773,26315977 +g1,8984:6630773,26315977 +g1,8984:6303093,26315977 +(1,8984:6303093,26315977:0,0,0 +) +g1,8984:6630773,26315977 +) +g1,8986:7626635,26315977 +g1,8986:8954451,26315977 +h1,8986:11610082,26315977:0,0,0 +k1,8986:32583030,26315977:20972948 +g1,8986:32583030,26315977 +) +] +) +g1,8987:32583029,26395799 +g1,8987:6630773,26395799 +g1,8987:6630773,26395799 +g1,8987:32583029,26395799 +g1,8987:32583029,26395799 +) +h1,8987:6630773,26592407:0,0,0 +(1,8991:6630773,27457487:25952256,513147,134348 +h1,8990:6630773,27457487:983040,0,0 +k1,8990:8752224,27457487:184862 +k1,8990:10041368,27457487:184862 +k1,8990:12232942,27457487:184862 +k1,8990:13436889,27457487:184862 +k1,8990:15464623,27457487:184862 +k1,8990:16308777,27457487:184862 +k1,8990:17512724,27457487:184862 +k1,8990:21761473,27457487:184862 +k1,8990:22597763,27457487:184862 +k1,8990:23138485,27457487:184862 +k1,8990:26008357,27457487:184862 +k1,8990:27794919,27457487:184862 +k1,8990:30847636,27457487:184862 +k1,8990:32583029,27457487:0 +) +(1,8991:6630773,28322567:25952256,513147,126483 +g1,8990:7849087,28322567 +(1,8990:7849087,28322567:0,414482,115847 +r1,9034:8559065,28322567:709978,530329,115847 +k1,8990:7849087,28322567:-709978 +) +(1,8990:7849087,28322567:709978,414482,115847 +k1,8990:7849087,28322567:3277 +h1,8990:8555788,28322567:0,411205,112570 +) +g1,8990:8758294,28322567 +g1,8990:11704137,28322567 +g1,8990:12712736,28322567 +g1,8990:13931050,28322567 +g1,8990:15163127,28322567 +g1,8990:16021648,28322567 +g1,8990:17239962,28322567 +k1,8991:32583029,28322567:13779378 +g1,8991:32583029,28322567 +) +v1,8993:6630773,29007422:0,393216,0 +(1,9001:6630773,30815857:25952256,2201651,196608 +g1,9001:6630773,30815857 +g1,9001:6630773,30815857 +g1,9001:6434165,30815857 +(1,9001:6434165,30815857:0,2201651,196608 +r1,9034:32779637,30815857:26345472,2398259,196608 +k1,9001:6434165,30815857:-26345472 +) +(1,9001:6434165,30815857:26345472,2201651,196608 +[1,9001:6630773,30815857:25952256,2005043,0 +(1,8995:6630773,29235253:25952256,424439,106246 +(1,8994:6630773,29235253:0,0,0 +g1,8994:6630773,29235253 +g1,8994:6630773,29235253 +g1,8994:6303093,29235253 +(1,8994:6303093,29235253:0,0,0 +) +g1,8994:6630773,29235253 +) +g1,8995:8290543,29235253 +g1,8995:9286405,29235253 +g1,8995:11610083,29235253 +g1,8995:12605945,29235253 +g1,8995:14597669,29235253 +g1,8995:15593531,29235253 +h1,8995:18913070,29235253:0,0,0 +k1,8995:32583029,29235253:13669959 +g1,8995:32583029,29235253 +) +(1,8996:6630773,29920108:25952256,424439,106246 +h1,8996:6630773,29920108:0,0,0 +h1,8996:9950312,29920108:0,0,0 +k1,8996:32583028,29920108:22632716 +g1,8996:32583028,29920108 +) +(1,9000:6630773,30736035:25952256,424439,79822 +(1,8998:6630773,30736035:0,0,0 +g1,8998:6630773,30736035 +g1,8998:6630773,30736035 +g1,8998:6303093,30736035 +(1,8998:6303093,30736035:0,0,0 +) +g1,8998:6630773,30736035 +) +g1,9000:7626635,30736035 +g1,9000:8954451,30736035 +h1,9000:11610082,30736035:0,0,0 +k1,9000:32583030,30736035:20972948 +g1,9000:32583030,30736035 +) +] +) +g1,9001:32583029,30815857 +g1,9001:6630773,30815857 +g1,9001:6630773,30815857 +g1,9001:32583029,30815857 +g1,9001:32583029,30815857 +) +h1,9001:6630773,31012465:0,0,0 +(1,9005:6630773,31877545:25952256,513147,134348 +h1,9004:6630773,31877545:983040,0,0 +k1,9004:8800083,31877545:232721 +k1,9004:10137085,31877545:232720 +k1,9004:11655622,31877545:232721 +k1,9004:12980828,31877545:232721 +k1,9004:14232633,31877545:232720 +(1,9004:14232633,31877545:0,414482,115847 +r1,9034:14942611,31877545:709978,530329,115847 +k1,9004:14232633,31877545:-709978 +) +(1,9004:14232633,31877545:709978,414482,115847 +k1,9004:14232633,31877545:3277 +h1,9004:14939334,31877545:0,411205,112570 +) +k1,9004:15175332,31877545:232721 +k1,9004:18154666,31877545:232720 +k1,9004:19196757,31877545:232721 +k1,9004:20448563,31877545:232721 +k1,9004:21595511,31877545:232720 +k1,9004:22487524,31877545:232721 +k1,9004:23739330,31877545:232721 +k1,9004:25535739,31877545:232720 +k1,9004:26838008,31877545:232721 +k1,9004:28018379,31877545:232720 +k1,9004:32227169,31877545:232721 +k1,9004:32583029,31877545:0 +) +(1,9005:6630773,32742625:25952256,505283,126483 +g1,9004:8220021,32742625 +g1,9004:10972533,32742625 +g1,9004:11857924,32742625 +g1,9004:12413013,32742625 +g1,9004:16026012,32742625 +k1,9005:32583029,32742625:13196986 +g1,9005:32583029,32742625 +) +v1,9007:6630773,33427480:0,393216,0 +(1,9015:6630773,35235915:25952256,2201651,196608 +g1,9015:6630773,35235915 +g1,9015:6630773,35235915 +g1,9015:6434165,35235915 +(1,9015:6434165,35235915:0,2201651,196608 +r1,9034:32779637,35235915:26345472,2398259,196608 +k1,9015:6434165,35235915:-26345472 +) +(1,9015:6434165,35235915:26345472,2201651,196608 +[1,9015:6630773,35235915:25952256,2005043,0 +(1,9009:6630773,33655311:25952256,424439,106246 +(1,9008:6630773,33655311:0,0,0 +g1,9008:6630773,33655311 +g1,9008:6630773,33655311 +g1,9008:6303093,33655311 +(1,9008:6303093,33655311:0,0,0 +) +g1,9008:6630773,33655311 +) +g1,9009:10282266,33655311 +g1,9009:11278128,33655311 +g1,9009:12937898,33655311 +g1,9009:13933760,33655311 +g1,9009:16257438,33655311 +g1,9009:17253300,33655311 +k1,9009:17253300,33655311:0 +h1,9009:18913070,33655311:0,0,0 +k1,9009:32583029,33655311:13669959 +g1,9009:32583029,33655311 +) +(1,9010:6630773,34340166:25952256,424439,106246 +h1,9010:6630773,34340166:0,0,0 +h1,9010:9950312,34340166:0,0,0 +k1,9010:32583028,34340166:22632716 +g1,9010:32583028,34340166 +) +(1,9014:6630773,35156093:25952256,424439,79822 +(1,9012:6630773,35156093:0,0,0 +g1,9012:6630773,35156093 +g1,9012:6630773,35156093 +g1,9012:6303093,35156093 +(1,9012:6303093,35156093:0,0,0 +) +g1,9012:6630773,35156093 +) +g1,9014:7626635,35156093 +g1,9014:8954451,35156093 +h1,9014:11610082,35156093:0,0,0 +k1,9014:32583030,35156093:20972948 +g1,9014:32583030,35156093 +) +] +) +g1,9015:32583029,35235915 +g1,9015:6630773,35235915 +g1,9015:6630773,35235915 +g1,9015:32583029,35235915 +g1,9015:32583029,35235915 +) +h1,9015:6630773,35432523:0,0,0 +(1,9019:6630773,36297603:25952256,513147,134348 +h1,9018:6630773,36297603:983040,0,0 +k1,9018:10825937,36297603:249241 +k1,9018:12094262,36297603:249240 +(1,9018:12094262,36297603:0,452978,115847 +r1,9034:12804240,36297603:709978,568825,115847 +k1,9018:12094262,36297603:-709978 +) +(1,9018:12094262,36297603:709978,452978,115847 +k1,9018:12094262,36297603:3277 +h1,9018:12800963,36297603:0,411205,112570 +) +k1,9018:13053481,36297603:249241 +k1,9018:16049336,36297603:249241 +k1,9018:17866197,36297603:249240 +k1,9018:19549366,36297603:249241 +k1,9018:20213400,36297603:249191 +k1,9018:22145605,36297603:249240 +k1,9018:23567285,36297603:249241 +k1,9018:26962909,36297603:249241 +k1,9018:28440949,36297603:249240 +k1,9018:29836415,36297603:249241 +k1,9019:32583029,36297603:0 +) +(1,9019:6630773,37162683:25952256,513147,126483 +(1,9018:6630773,37162683:0,414482,115847 +r1,9034:6989039,37162683:358266,530329,115847 +k1,9018:6630773,37162683:-358266 +) +(1,9018:6630773,37162683:358266,414482,115847 +k1,9018:6630773,37162683:3277 +h1,9018:6985762,37162683:0,411205,112570 +) +k1,9018:7223626,37162683:234587 +k1,9018:9124795,37162683:234588 +k1,9018:10556069,37162683:234587 +k1,9018:12470999,37162683:234587 +k1,9018:15484313,37162683:234587 +k1,9018:16480429,37162683:234588 +k1,9018:17734101,37162683:234587 +k1,9018:18882916,37162683:234587 +k1,9018:22218012,37162683:234588 +k1,9018:23959272,37162683:234587 +k1,9018:27009941,37162683:234587 +k1,9018:29129999,37162683:234587 +k1,9018:30468869,37162683:234588 +k1,9018:31451222,37162683:234587 +k1,9019:32583029,37162683:0 +) +(1,9019:6630773,38027763:25952256,513147,134348 +k1,9018:7321343,38027763:275727 +k1,9018:11210801,38027763:275803 +k1,9018:12018102,38027763:275804 +k1,9018:14499192,38027763:275803 +k1,9018:15461158,38027763:275804 +k1,9018:18809289,38027763:275803 +k1,9018:19736521,38027763:275804 +k1,9018:21031409,38027763:275803 +k1,9018:25315395,38027763:275804 +k1,9018:28233610,38027763:275803 +k1,9018:29318784,38027763:275804 +k1,9018:30627435,38027763:275803 +k1,9019:32583029,38027763:0 +) +(1,9019:6630773,38892843:25952256,513147,134348 +k1,9018:8493579,38892843:256519 +k1,9018:10430441,38892843:256519 +k1,9018:11883646,38892843:256518 +k1,9018:14007941,38892843:256519 +k1,9018:16959956,38892843:256519 +k1,9018:18838491,38892843:256519 +k1,9018:21143009,38892843:256518 +k1,9018:22012290,38892843:256519 +k1,9018:23764341,38892843:256519 +k1,9018:25177570,38892843:256519 +k1,9018:28680086,38892843:256518 +k1,9018:30317449,38892843:256519 +k1,9018:32583029,38892843:0 +) +(1,9019:6630773,39757923:25952256,513147,134348 +k1,9018:8873264,39757923:158446 +k1,9018:10316216,39757923:158446 +k1,9018:13480797,39757923:158445 +k1,9018:15754090,39757923:158446 +k1,9018:16931621,39757923:158446 +k1,9018:20162395,39757923:158446 +k1,9018:21082368,39757923:158445 +k1,9018:23855045,39757923:158446 +k1,9018:24664919,39757923:158446 +k1,9018:25842450,39757923:158446 +k1,9018:27307028,39757923:158445 +k1,9018:30746206,39757923:158446 +k1,9018:31563944,39757923:158446 +k1,9018:32583029,39757923:0 +) +(1,9019:6630773,40623003:25952256,513147,126483 +k1,9018:9524679,40623003:198410 +k1,9018:11679339,40623003:198410 +k1,9018:13362139,40623003:198410 +k1,9018:15446021,40623003:198411 +k1,9018:18670228,40623003:198410 +k1,9018:20637455,40623003:198410 +k1,9018:21583631,40623003:198410 +k1,9018:23295267,40623003:198410 +k1,9018:24109715,40623003:198410 +k1,9018:24663986,40623003:198411 +k1,9018:26252415,40623003:198410 +k1,9018:29648327,40623003:198410 +k1,9018:32583029,40623003:0 +) +(1,9019:6630773,41488083:25952256,505283,134348 +k1,9018:7274243,41488083:185373 +k1,9018:7991113,41488083:185373 +k1,9018:9462302,41488083:185373 +k1,9018:12277635,41488083:185373 +k1,9018:13114436,41488083:185373 +k1,9018:14737014,41488083:185373 +k1,9018:15941472,41488083:185373 +k1,9018:17937606,41488083:185374 +k1,9018:21195307,41488083:185373 +k1,9018:24278027,41488083:185373 +k1,9018:25224928,41488083:185373 +k1,9018:27148316,41488083:185373 +k1,9018:27985117,41488083:185373 +k1,9018:29302297,41488083:185373 +k1,9018:32583029,41488083:0 +) +(1,9019:6630773,42353163:25952256,513147,134348 +g1,9018:7489294,42353163 +g1,9018:8707608,42353163 +g1,9018:11602333,42353163 +g1,9018:12610932,42353163 +g1,9018:13829246,42353163 +g1,9018:15061323,42353163 +g1,9018:16995945,42353163 +g1,9018:17965877,42353163 +g1,9018:21745338,42353163 +(1,9018:21952432,42353163:0,414482,115847 +r1,9034:22310698,42353163:358266,530329,115847 +k1,9018:21952432,42353163:-358266 +) +(1,9018:21952432,42353163:358266,414482,115847 +k1,9018:21952432,42353163:3277 +h1,9018:22307421,42353163:0,411205,112570 +) +g1,9018:22717021,42353163 +g1,9018:23602412,42353163 +k1,9019:32583029,42353163:5073361 +g1,9019:32583029,42353163 +) +v1,9021:6630773,43038018:0,393216,0 +(1,9028:6630773,44161598:25952256,1516796,196608 +g1,9028:6630773,44161598 +g1,9028:6630773,44161598 +g1,9028:6434165,44161598 +(1,9028:6434165,44161598:0,1516796,196608 +r1,9034:32779637,44161598:26345472,1713404,196608 +k1,9028:6434165,44161598:-26345472 +) +(1,9028:6434165,44161598:26345472,1516796,196608 +[1,9028:6630773,44161598:25952256,1320188,0 +(1,9023:6630773,43265849:25952256,424439,106246 +(1,9022:6630773,43265849:0,0,0 +g1,9022:6630773,43265849 +g1,9022:6630773,43265849 +g1,9022:6303093,43265849 +(1,9022:6303093,43265849:0,0,0 +) +g1,9022:6630773,43265849 +) +g1,9023:8290543,43265849 +g1,9023:9286405,43265849 +g1,9023:11610083,43265849 +g1,9023:12273991,43265849 +g1,9023:13269853,43265849 +g1,9023:14265715,43265849 +g1,9023:16257439,43265849 +g1,9023:16921347,43265849 +h1,9023:17585255,43265849:0,0,0 +k1,9023:32583029,43265849:14997774 +g1,9023:32583029,43265849 +) +(1,9027:6630773,44081776:25952256,424439,79822 +(1,9025:6630773,44081776:0,0,0 +g1,9025:6630773,44081776 +g1,9025:6630773,44081776 +g1,9025:6303093,44081776 +(1,9025:6303093,44081776:0,0,0 +) +g1,9025:6630773,44081776 +) +g1,9027:7626635,44081776 +g1,9027:8954451,44081776 +h1,9027:11610082,44081776:0,0,0 +k1,9027:32583030,44081776:20972948 +g1,9027:32583030,44081776 +) +] +) +g1,9028:32583029,44161598 +g1,9028:6630773,44161598 +g1,9028:6630773,44161598 +g1,9028:32583029,44161598 +g1,9028:32583029,44161598 +) +h1,9028:6630773,44358206:0,0,0 +(1,9032:6630773,45223286:25952256,505283,126483 +h1,9031:6630773,45223286:983040,0,0 +g1,9031:9009729,45223286 +g1,9031:12942544,45223286 +g1,9031:14246055,45223286 +g1,9031:15193050,45223286 +g1,9031:16678095,45223286 +g1,9031:18390550,45223286 +g1,9031:19983730,45223286 +g1,9031:23397500,45223286 +k1,9032:32583029,45223286:5934943 +g1,9032:32583029,45223286 +) +] +(1,9034:32583029,45706769:0,0,0 +g1,9034:32583029,45706769 +) +) +] +(1,9034:6630773,47279633:25952256,0,0 +h1,9034:6630773,47279633:25952256,0,0 +) +] +(1,9034:4262630,4025873:0,0,0 +[1,9034:-473656,4025873:0,0,0 +(1,9034:-473656,-710413:0,0,0 +(1,9034:-473656,-710413:0,0,0 +g1,9034:-473656,-710413 +) +g1,9034:-473656,-710413 ) ] ) -g1,8393:36675916,2439708 -(1,8393:36675916,2439708:1179648,16384,0 -r1,10038:37855564,2439708:1179648,16384,0 +] +!27001 +}144 +Input:1225:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1226:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1227:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1228:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1229:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1230:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1231:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1232:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!764 +{145 +[1,9119:4262630,47279633:28320399,43253760,0 +(1,9119:4262630,4025873:0,0,0 +[1,9119:-473656,4025873:0,0,0 +(1,9119:-473656,-710413:0,0,0 +(1,9119:-473656,-644877:0,0,0 +k1,9119:-473656,-644877:-65536 ) +(1,9119:-473656,4736287:0,0,0 +k1,9119:-473656,4736287:5209943 ) -k1,10038:3078556,2439708:-34777008 +g1,9119:-473656,-710413 ) ] -[1,10038:3078558,4812305:0,0,0 -(1,10038:3078558,49800853:0,16384,2228224 -k1,10038:1358238,49800853:-1720320 -(1,8393:1358238,49800853:1720320,16384,2228224 -(1,8393:1358238,49800853:1179648,16384,0 -r1,10038:2537886,49800853:1179648,16384,0 ) -g1,8393:3062174,49800853 -(1,8393:3062174,52029077:16384,1703936,0 -[1,8393:3062174,52029077:25952256,1703936,0 -(1,8393:3062174,51504789:25952256,1179648,0 -(1,8393:3062174,51504789:16384,1179648,0 -r1,10038:3078558,51504789:16384,1179648,0 +[1,9119:6630773,47279633:25952256,43253760,0 +[1,9119:6630773,4812305:25952256,786432,0 +(1,9119:6630773,4812305:25952256,505283,134348 +(1,9119:6630773,4812305:25952256,505283,134348 +g1,9119:3078558,4812305 +[1,9119:3078558,4812305:0,0,0 +(1,9119:3078558,2439708:0,1703936,0 +k1,9119:1358238,2439708:-1720320 +(1,8606:1358238,2439708:1720320,1703936,0 +(1,8606:1358238,2439708:1179648,16384,0 +r1,9119:2537886,2439708:1179648,16384,0 ) -k1,8393:29014430,51504789:25935872 -g1,8393:29014430,51504789 +g1,8606:3062174,2439708 +(1,8606:3062174,2439708:16384,1703936,0 +[1,8606:3062174,2439708:25952256,1703936,0 +(1,8606:3062174,1915420:25952256,1179648,0 +(1,8606:3062174,1915420:16384,1179648,0 +r1,9119:3078558,1915420:16384,1179648,0 +) +k1,8606:29014430,1915420:25935872 +g1,8606:29014430,1915420 ) ] ) ) ) ] -[1,10038:3078558,4812305:0,0,0 -(1,10038:3078558,49800853:0,16384,2228224 -g1,10038:29030814,49800853 -g1,10038:36135244,49800853 -(1,8393:36135244,49800853:1720320,16384,2228224 -(1,8393:36135244,52029077:16384,1703936,0 -[1,8393:36135244,52029077:25952256,1703936,0 -(1,8393:36135244,51504789:25952256,1179648,0 -(1,8393:36135244,51504789:16384,1179648,0 -r1,10038:36151628,51504789:16384,1179648,0 +[1,9119:3078558,4812305:0,0,0 +(1,9119:3078558,2439708:0,1703936,0 +g1,9119:29030814,2439708 +g1,9119:36135244,2439708 +(1,8606:36135244,2439708:1720320,1703936,0 +(1,8606:36135244,2439708:16384,1703936,0 +[1,8606:36135244,2439708:25952256,1703936,0 +(1,8606:36135244,1915420:25952256,1179648,0 +(1,8606:36135244,1915420:16384,1179648,0 +r1,9119:36151628,1915420:16384,1179648,0 ) -k1,8393:62087500,51504789:25935872 -g1,8393:62087500,51504789 +k1,8606:62087500,1915420:25935872 +g1,8606:62087500,1915420 ) ] ) -g1,8393:36675916,49800853 -(1,8393:36675916,49800853:1179648,16384,0 -r1,10038:37855564,49800853:1179648,16384,0 +g1,8606:36675916,2439708 +(1,8606:36675916,2439708:1179648,16384,0 +r1,9119:37855564,2439708:1179648,16384,0 ) ) -k1,10038:3078556,49800853:-34777008 +k1,9119:3078556,2439708:-34777008 ) ] -g1,10038:6630773,4812305 -k1,10038:21643106,4812305:13816956 -g1,10038:23265777,4812305 -g1,10038:24088253,4812305 -g1,10038:28572226,4812305 -g1,10038:29981905,4812305 -) -) -] -[1,10038:6630773,45706769:25952256,40108032,0 -(1,10038:6630773,45706769:25952256,40108032,0 -(1,10038:6630773,45706769:0,0,0 -g1,10038:6630773,45706769 -) -[1,10038:6630773,45706769:25952256,40108032,0 -v1,9917:6630773,6254097:0,393216,0 -(1,9917:6630773,8536270:25952256,2675389,196608 -g1,9917:6630773,8536270 -g1,9917:6630773,8536270 -g1,9917:6434165,8536270 -(1,9917:6434165,8536270:0,2675389,196608 -r1,10038:32779637,8536270:26345472,2871997,196608 -k1,9917:6434165,8536270:-26345472 -) -(1,9917:6434165,8536270:26345472,2675389,196608 -[1,9917:6630773,8536270:25952256,2478781,0 -(1,9916:6630773,6461715:25952256,404226,76021 -(1,9911:6630773,6461715:0,0,0 -g1,9911:6630773,6461715 -g1,9911:6630773,6461715 -g1,9911:6303093,6461715 -(1,9911:6303093,6461715:0,0,0 -) -g1,9911:6630773,6461715 -) -g1,9916:7579210,6461715 -g1,9916:8843793,6461715 -h1,9916:9159939,6461715:0,0,0 -k1,9916:32583029,6461715:23423090 -g1,9916:32583029,6461715 -) -(1,9916:6630773,7127893:25952256,404226,76021 -h1,9916:6630773,7127893:0,0,0 -g1,9916:7579210,7127893 -g1,9916:8843793,7127893 -h1,9916:9159939,7127893:0,0,0 -k1,9916:32583029,7127893:23423090 -g1,9916:32583029,7127893 -) -(1,9916:6630773,7794071:25952256,404226,76021 -h1,9916:6630773,7794071:0,0,0 -g1,9916:7579210,7794071 -g1,9916:8843793,7794071 -h1,9916:9476084,7794071:0,0,0 -k1,9916:32583028,7794071:23106944 -g1,9916:32583028,7794071 -) -(1,9916:6630773,8460249:25952256,404226,76021 -h1,9916:6630773,8460249:0,0,0 -g1,9916:7579210,8460249 -g1,9916:8843793,8460249 -h1,9916:9792230,8460249:0,0,0 -k1,9916:32583030,8460249:22790800 -g1,9916:32583030,8460249 -) -] -) -g1,9917:32583029,8536270 -g1,9917:6630773,8536270 -g1,9917:6630773,8536270 -g1,9917:32583029,8536270 -g1,9917:32583029,8536270 -) -h1,9917:6630773,8732878:0,0,0 -v1,9921:6630773,10622942:0,393216,0 -(1,9922:6630773,12031316:25952256,1801590,0 -g1,9922:6630773,12031316 -g1,9922:6303093,12031316 -r1,10038:6401397,12031316:98304,1801590,0 -g1,9922:6600626,12031316 -g1,9922:6797234,12031316 -[1,9922:6797234,12031316:25785795,1801590,0 -(1,9922:6797234,11055480:25785795,825754,196608 -(1,9921:6797234,11055480:0,825754,196608 -r1,10038:7890375,11055480:1093141,1022362,196608 -k1,9921:6797234,11055480:-1093141 -) -(1,9921:6797234,11055480:1093141,825754,196608 -) -k1,9921:8059508,11055480:169133 -k1,9921:9785726,11055480:327680 -k1,9921:11916352,11055480:169133 -k1,9921:14395629,11055480:169133 -k1,9921:15861720,11055480:169133 -k1,9921:17049938,11055480:169133 -k1,9921:19880488,11055480:169133 -k1,9921:21904946,11055480:169134 -k1,9921:24415025,11055480:169133 -k1,9921:25603243,11055480:169133 -k1,9921:27783021,11055480:169133 -k1,9921:28410251,11055480:169133 -k1,9921:30245965,11055480:169133 -k1,9921:31563944,11055480:169133 -k1,9921:32583029,11055480:0 -) -(1,9922:6797234,11896968:25785795,513147,134348 -g1,9921:9980973,11896968 -g1,9921:10839494,11896968 -g1,9921:13226315,11896968 -(1,9921:13226315,11896968:0,452978,115847 -r1,10038:15694852,11896968:2468537,568825,115847 -k1,9921:13226315,11896968:-2468537 -) -(1,9921:13226315,11896968:2468537,452978,115847 -k1,9921:13226315,11896968:3277 -h1,9921:15691575,11896968:0,411205,112570 -) -g1,9921:15894081,11896968 -g1,9921:19783642,11896968 -g1,9921:20669033,11896968 -g1,9921:23958285,11896968 -g1,9921:24966884,11896968 -g1,9921:26664266,11896968 -h1,9921:27859643,11896968:0,0,0 -k1,9922:32583029,11896968:4549716 -g1,9922:32583029,11896968 -) -] -g1,9922:32583029,12031316 -) -h1,9922:6630773,12031316:0,0,0 -v1,9925:6630773,13397092:0,393216,0 -(1,9926:6630773,16399476:25952256,3395600,0 -g1,9926:6630773,16399476 -g1,9926:6303093,16399476 -r1,10038:6401397,16399476:98304,3395600,0 -g1,9926:6600626,16399476 -g1,9926:6797234,16399476 -[1,9926:6797234,16399476:25785795,3395600,0 -(1,9926:6797234,13759165:25785795,755289,196608 -(1,9925:6797234,13759165:0,755289,196608 -r1,10038:8134168,13759165:1336934,951897,196608 -k1,9925:6797234,13759165:-1336934 -) -(1,9925:6797234,13759165:1336934,755289,196608 -) -k1,9925:8426206,13759165:292038 -k1,9925:8753886,13759165:327680 -k1,9925:12008806,13759165:292037 -(1,9925:12008806,13759165:0,414482,115847 -r1,10038:14125631,13759165:2116825,530329,115847 -k1,9925:12008806,13759165:-2116825 -) -(1,9925:12008806,13759165:2116825,414482,115847 -k1,9925:12008806,13759165:3277 -h1,9925:14122354,13759165:0,411205,112570 -) -k1,9925:14417669,13759165:292038 -k1,9925:16124628,13759165:292037 -k1,9925:19770799,13759165:292038 -k1,9925:21054396,13759165:292037 -k1,9925:23216832,13759165:292038 -k1,9925:24160297,13759165:292037 -k1,9925:25864636,13759165:292038 -k1,9925:26622634,13759165:292037 -k1,9925:28294860,13759165:292038 -k1,9925:30062113,13759165:292038 -k1,9925:30710010,13759165:292037 -k1,9925:32583029,13759165:0 -) -(1,9926:6797234,14600653:25785795,513147,134348 -k1,9925:10027857,14600653:198272 -k1,9925:13059249,14600653:198271 -k1,9925:13873559,14600653:198272 -k1,9925:17823767,14600653:198272 -k1,9925:18681330,14600653:198271 -k1,9925:21770395,14600653:198272 -k1,9925:22426764,14600653:198272 -k1,9925:23156533,14600653:198272 -k1,9925:25804540,14600653:198271 -k1,9925:26764340,14600653:198272 -k1,9925:27981697,14600653:198272 -k1,9925:28594810,14600653:198270 -k1,9925:31635378,14600653:198272 -k1,9925:32583029,14600653:0 -) -(1,9926:6797234,15442141:25785795,513147,126483 -k1,9925:8049715,15442141:233396 -k1,9925:11696880,15442141:233395 -k1,9925:15116636,15442141:233396 -k1,9925:15966070,15442141:233396 -k1,9925:17218550,15442141:233395 -k1,9925:19028742,15442141:233396 -k1,9925:19921430,15442141:233396 -k1,9925:20510685,15442141:233395 -k1,9925:22159003,15442141:233396 -k1,9925:23043827,15442141:233396 -k1,9925:25648970,15442141:233395 -k1,9925:27532563,15442141:233396 -k1,9925:29208406,15442141:233396 -k1,9925:30598511,15442141:233395 -k1,9925:31931601,15442141:233396 -k1,9926:32583029,15442141:0 -) -(1,9926:6797234,16283629:25785795,513147,115847 -(1,9925:6797234,16283629:0,452978,115847 -r1,10038:9265771,16283629:2468537,568825,115847 -k1,9925:6797234,16283629:-2468537 -) -(1,9925:6797234,16283629:2468537,452978,115847 -k1,9925:6797234,16283629:3277 -h1,9925:9262494,16283629:0,411205,112570 -) -g1,9925:9638670,16283629 -g1,9925:11289521,16283629 -g1,9925:13498739,16283629 -g1,9925:14053828,16283629 -g1,9925:17015400,16283629 -(1,9925:17015400,16283629:0,459977,115847 -r1,10038:17725378,16283629:709978,575824,115847 -k1,9925:17015400,16283629:-709978 -) -(1,9925:17015400,16283629:709978,459977,115847 -k1,9925:17015400,16283629:3277 -h1,9925:17722101,16283629:0,411205,112570 -) -g1,9925:17924607,16283629 -g1,9925:18806721,16283629 -(1,9925:18806721,16283629:0,452978,115847 -r1,10038:20220122,16283629:1413401,568825,115847 -k1,9925:18806721,16283629:-1413401 -) -(1,9925:18806721,16283629:1413401,452978,115847 -k1,9925:18806721,16283629:3277 -h1,9925:20216845,16283629:0,411205,112570 -) -g1,9925:20419351,16283629 -k1,9926:32583029,16283629:8803647 -g1,9926:32583029,16283629 -) -] -g1,9926:32583029,16399476 -) -h1,9926:6630773,16399476:0,0,0 -(1,9928:6630773,18490736:25952256,555811,139132 -(1,9928:6630773,18490736:2450326,527696,12975 -g1,9928:6630773,18490736 -g1,9928:9081099,18490736 -) -g1,9928:12020913,18490736 -g1,9928:14217484,18490736 -g1,9928:15704693,18490736 -g1,9928:16796130,18490736 -g1,9928:18712272,18490736 -g1,9928:19642949,18490736 -k1,9928:32583029,18490736:12442662 -g1,9928:32583029,18490736 -) -(1,9931:6630773,19725440:25952256,513147,134348 -k1,9930:7321391,19725440:212861 -k1,9930:8704725,19725440:212861 -k1,9930:10392801,19725440:212861 -k1,9930:12892213,19725440:212861 -k1,9930:16177402,19725440:212861 -k1,9930:17006301,19725440:212861 -k1,9930:18921132,19725440:212861 -k1,9930:22480260,19725440:212860 -k1,9930:23151218,19725440:212861 -k1,9930:24496541,19725440:212861 -k1,9930:25873977,19725440:212861 -k1,9930:28378632,19725440:212861 -k1,9930:29242921,19725440:212861 -k1,9930:30626255,19725440:212861 -k1,9930:31490544,19725440:212861 -k1,9930:32583029,19725440:0 -) -(1,9931:6630773,20566928:25952256,513147,134348 -k1,9930:8541790,20566928:165793 -(1,9930:8748884,20566928:0,459977,115847 -r1,10038:9810573,20566928:1061689,575824,115847 -k1,9930:8748884,20566928:-1061689 -) -(1,9930:8748884,20566928:1061689,459977,115847 -k1,9930:8748884,20566928:3277 -h1,9930:9807296,20566928:0,411205,112570 -) -k1,9930:10150035,20566928:165792 -(1,9930:10150035,20566928:0,452978,115847 -r1,10038:11915148,20566928:1765113,568825,115847 -k1,9930:10150035,20566928:-1765113 -) -(1,9930:10150035,20566928:1765113,452978,115847 -k1,9930:10150035,20566928:3277 -h1,9930:11911871,20566928:0,411205,112570 -) -k1,9930:12254611,20566928:165793 -k1,9930:13611849,20566928:165793 -(1,9930:13611849,20566928:0,414482,115847 -r1,10038:15728674,20566928:2116825,530329,115847 -k1,9930:13611849,20566928:-2116825 -) -(1,9930:13611849,20566928:2116825,414482,115847 -k1,9930:13611849,20566928:3277 -h1,9930:15725397,20566928:0,411205,112570 -) -k1,9930:16101561,20566928:165793 -k1,9930:17215004,20566928:165792 -k1,9930:19132574,20566928:165793 -k1,9930:19957659,20566928:165793 -k1,9930:21142536,20566928:165792 -k1,9930:23300623,20566928:165793 -k1,9930:24414067,20566928:165793 -k1,9930:26465330,20566928:165792 -k1,9930:27247161,20566928:165793 -k1,9930:27827764,20566928:165760 -k1,9930:29150266,20566928:165792 -k1,9930:31272309,20566928:165793 -k1,9931:32583029,20566928:0 -) -(1,9931:6630773,21408416:25952256,505283,134348 -k1,9930:8571425,21408416:193462 -k1,9930:9857372,21408416:193462 -k1,9930:14416844,21408416:193463 -k1,9930:15238141,21408416:193462 -k1,9930:16020116,21408416:193462 -k1,9930:17948971,21408416:193462 -k1,9930:22334771,21408416:193462 -k1,9930:25566483,21408416:193463 -k1,9930:28389905,21408416:193462 -k1,9930:30421652,21408416:193462 -k1,9930:32583029,21408416:0 -) -(1,9931:6630773,22249904:25952256,513147,126483 -k1,9930:9122826,22249904:171423 -k1,9930:10485695,22249904:171424 -k1,9930:12527516,22249904:171423 -k1,9930:13350367,22249904:171423 -k1,9930:17186563,22249904:171423 -k1,9930:18177842,22249904:171424 -k1,9930:19844797,22249904:171423 -k1,9930:20963871,22249904:171423 -k1,9930:22879208,22249904:171424 -k1,9930:24444582,22249904:171423 -k1,9930:28029120,22249904:171423 -k1,9930:28816581,22249904:171423 -k1,9930:29783612,22249904:171424 -k1,9930:31548871,22249904:171423 -k1,9931:32583029,22249904:0 -) -(1,9931:6630773,23091392:25952256,513147,134348 -k1,9930:9941216,23091392:182410 -k1,9930:10809788,23091392:182410 -k1,9930:11407024,23091392:182393 -k1,9930:12120931,23091392:182410 -k1,9930:13074044,23091392:182410 -k1,9930:16846516,23091392:182410 -k1,9930:20044893,23091392:182410 -k1,9930:23564395,23091392:182409 -k1,9930:27022950,23091392:182410 -k1,9930:28975487,23091392:182410 -k1,9930:29809325,23091392:182410 -k1,9930:30739501,23091392:182410 -k1,9930:32583029,23091392:0 -) -(1,9931:6630773,23932880:25952256,513147,126483 -k1,9930:8270080,23932880:196860 -k1,9930:9486025,23932880:196860 -k1,9930:10775370,23932880:196860 -k1,9930:11631522,23932880:196860 -k1,9930:14159498,23932880:196860 -k1,9930:17247151,23932880:196860 -k1,9930:18071847,23932880:196861 -k1,9930:20257069,23932880:196860 -k1,9930:23117968,23932880:196860 -k1,9930:23981984,23932880:196860 -k1,9930:24767357,23932880:196860 -k1,9930:30341446,23932880:196860 -k1,9930:31069803,23932880:196860 -k1,9930:32583029,23932880:0 -) -(1,9931:6630773,24774368:25952256,513147,126483 -k1,9930:7563394,24774368:171093 -k1,9930:10000066,24774368:171092 -k1,9930:11362604,24774368:171093 -k1,9930:13278920,24774368:171092 -k1,9930:14786947,24774368:171093 -k1,9930:15705805,24774368:171092 -k1,9930:18820120,24774368:171093 -k1,9930:19800582,24774368:171092 -k1,9930:20990760,24774368:171093 -k1,9930:22131129,24774368:171092 -k1,9930:24187693,24774368:171093 -k1,9930:26782962,24774368:171092 -k1,9930:28275916,24774368:171093 -k1,9930:29106300,24774368:171092 -k1,9930:30296478,24774368:171093 -k1,9930:32583029,24774368:0 -) -(1,9931:6630773,25615856:25952256,513147,126483 -k1,9930:7496212,25615856:206147 -k1,9930:10486984,25615856:206147 -k1,9930:15312109,25615856:206147 -k1,9930:18452958,25615856:206147 -k1,9930:20125800,25615856:206146 -k1,9930:24853931,25615856:206147 -k1,9930:26805302,25615856:206147 -k1,9930:28003009,25615856:206147 -k1,9930:30496363,25615856:206147 -k1,9930:32583029,25615856:0 -) -(1,9931:6630773,26457344:25952256,513147,126483 -g1,9930:7481430,26457344 -g1,9930:10093039,26457344 -g1,9930:11734715,26457344 -g1,9930:15052802,26457344 -g1,9930:17168959,26457344 -g1,9930:20705281,26457344 -g1,9930:23930307,26457344 -g1,9930:25320981,26457344 -k1,9931:32583029,26457344:4011462 -g1,9931:32583029,26457344 -) -(1,9933:6630773,27298832:25952256,513147,134348 -h1,9932:6630773,27298832:983040,0,0 -k1,9932:11011140,27298832:298129 -k1,9932:13175734,27298832:298129 -k1,9932:15334430,27298832:298129 -k1,9932:16283987,27298832:298129 -k1,9932:17329882,27298832:298129 -k1,9932:20461789,27298832:298130 -k1,9932:23049091,27298832:298129 -k1,9932:24366305,27298832:298129 -k1,9932:26437183,27298832:298129 -k1,9932:29411147,27298832:298129 -k1,9932:30325314,27298832:298129 -k1,9932:32583029,27298832:0 -) -(1,9933:6630773,28140320:25952256,513147,134348 -k1,9932:8719541,28140320:245240 -k1,9932:10634639,28140320:245241 -k1,9932:13814581,28140320:245240 -k1,9932:15795214,28140320:245240 -k1,9932:20232793,28140320:245241 -k1,9932:21669478,28140320:245240 -k1,9932:24312025,28140320:245240 -k1,9932:24972062,28140320:245194 -k1,9932:28243100,28140320:245241 -k1,9932:31110435,28140320:245240 -k1,9932:32583029,28140320:0 -) -(1,9933:6630773,28981808:25952256,513147,134348 -k1,9932:8548356,28981808:144834 -k1,9932:10183480,28981808:144835 -k1,9932:11196666,28981808:144834 -k1,9932:12333061,28981808:144835 -k1,9932:14970229,28981808:144834 -k1,9932:16509014,28981808:144834 -k1,9932:18466575,28981808:144835 -k1,9932:19808096,28981808:144834 -k1,9932:22664810,28981808:144834 -k1,9932:24047620,28981808:144835 -k1,9932:24851746,28981808:144834 -k1,9932:28343505,28981808:144835 -k1,9932:29507424,28981808:144834 -k1,9932:32583029,28981808:0 -) -(1,9933:6630773,29823296:25952256,513147,126483 -k1,9932:8288361,29823296:232180 -k1,9932:9179833,29823296:232180 -k1,9932:10182716,29823296:232180 -k1,9932:10829706,29823296:232147 -k1,9932:14501871,29823296:232180 -k1,9932:15265548,29823296:232180 -k1,9932:16149156,29823296:232180 -k1,9932:17473821,29823296:232180 -k1,9932:20401497,29823296:232180 -(1,9932:20401497,29823296:0,452978,115847 -r1,10038:24980305,29823296:4578808,568825,115847 -k1,9932:20401497,29823296:-4578808 -) -(1,9932:20401497,29823296:4578808,452978,115847 -k1,9932:20401497,29823296:3277 -h1,9932:24977028,29823296:0,411205,112570 -) -k1,9932:25386155,29823296:232180 -k1,9932:28553037,29823296:232180 -k1,9932:29804302,29823296:232180 -k1,9932:32583029,29823296:0 -) -(1,9933:6630773,30664784:25952256,505283,134348 -k1,9932:8231868,30664784:175687 -k1,9932:8939052,30664784:175687 -k1,9932:9730776,30664784:175686 -k1,9932:12478096,30664784:175687 -k1,9932:13845228,30664784:175687 -k1,9932:18246021,30664784:175687 -k1,9932:19440792,30664784:175686 -k1,9932:23056464,30664784:175687 -k1,9932:24854167,30664784:175687 -k1,9932:26382517,30664784:175687 -k1,9932:27946911,30664784:175686 -k1,9932:30483205,30664784:175687 -k1,9932:31310320,30664784:175687 -k1,9933:32583029,30664784:0 -) -(1,9933:6630773,31506272:25952256,513147,134348 -k1,9932:8125947,31506272:142511 -k1,9932:9216109,31506272:142511 -k1,9932:10377705,31506272:142511 -k1,9932:13298943,31506272:142511 -k1,9932:14866862,31506272:142511 -k1,9932:15660800,31506272:142510 -k1,9932:17278526,31506272:142511 -k1,9932:19398258,31506272:142511 -k1,9932:22962404,31506272:142511 -k1,9932:24154802,31506272:142511 -k1,9932:26877465,31506272:142511 -k1,9932:32583029,31506272:0 -) -(1,9933:6630773,32347760:25952256,513147,134348 -g1,9932:7777653,32347760 -g1,9932:9558266,32347760 -g1,9932:10705146,32347760 -g1,9932:15462404,32347760 -g1,9932:17157820,32347760 -g1,9932:18751000,32347760 -g1,9932:20847496,32347760 -g1,9932:22472133,32347760 -k1,9933:32583029,32347760:6689261 -g1,9933:32583029,32347760 -) -v1,9935:6630773,33538226:0,393216,0 -(1,9947:6630773,37752348:25952256,4607338,196608 -g1,9947:6630773,37752348 -g1,9947:6630773,37752348 -g1,9947:6434165,37752348 -(1,9947:6434165,37752348:0,4607338,196608 -r1,10038:32779637,37752348:26345472,4803946,196608 -k1,9947:6434165,37752348:-26345472 -) -(1,9947:6434165,37752348:26345472,4607338,196608 -[1,9947:6630773,37752348:25952256,4410730,0 -(1,9937:6630773,33745844:25952256,404226,101187 -(1,9936:6630773,33745844:0,0,0 -g1,9936:6630773,33745844 -g1,9936:6630773,33745844 -g1,9936:6303093,33745844 -(1,9936:6303093,33745844:0,0,0 -) -g1,9936:6630773,33745844 -) -k1,9937:6630773,33745844:0 -g1,9937:11372958,33745844 -g1,9937:12321396,33745844 -k1,9937:12321396,33745844:0 -h1,9937:15166707,33745844:0,0,0 -k1,9937:32583029,33745844:17416322 -g1,9937:32583029,33745844 -) -(1,9938:6630773,34412022:25952256,410518,76021 -h1,9938:6630773,34412022:0,0,0 -g1,9938:6946919,34412022 -g1,9938:7263065,34412022 -g1,9938:7579211,34412022 -g1,9938:7895357,34412022 -g1,9938:8211503,34412022 -g1,9938:8527649,34412022 -g1,9938:8843795,34412022 -g1,9938:9159941,34412022 -g1,9938:9476087,34412022 -g1,9938:9792233,34412022 -g1,9938:10108379,34412022 -g1,9938:10424525,34412022 -g1,9938:11689108,34412022 -g1,9938:12637545,34412022 -g1,9938:13585982,34412022 -g1,9938:17063586,34412022 -h1,9938:17379732,34412022:0,0,0 -k1,9938:32583029,34412022:15203297 -g1,9938:32583029,34412022 -) -(1,9939:6630773,35078200:25952256,404226,76021 -h1,9939:6630773,35078200:0,0,0 -g1,9939:6946919,35078200 -g1,9939:7263065,35078200 -g1,9939:7579211,35078200 -g1,9939:7895357,35078200 -g1,9939:8211503,35078200 -g1,9939:8527649,35078200 -g1,9939:8843795,35078200 -g1,9939:9159941,35078200 -g1,9939:9476087,35078200 -g1,9939:9792233,35078200 -g1,9939:10108379,35078200 -g1,9939:10424525,35078200 -g1,9939:10740671,35078200 -g1,9939:11056817,35078200 -g1,9939:12637546,35078200 -g1,9939:13585984,35078200 -g1,9939:14218276,35078200 -g1,9939:14850568,35078200 -h1,9939:16115151,35078200:0,0,0 -k1,9939:32583029,35078200:16467878 -g1,9939:32583029,35078200 -) -(1,9940:6630773,35744378:25952256,404226,76021 -h1,9940:6630773,35744378:0,0,0 -g1,9940:6946919,35744378 -g1,9940:7263065,35744378 -g1,9940:7579211,35744378 -g1,9940:7895357,35744378 -g1,9940:8211503,35744378 -g1,9940:8527649,35744378 -g1,9940:8843795,35744378 -g1,9940:9159941,35744378 -g1,9940:9476087,35744378 -g1,9940:9792233,35744378 -g1,9940:10108379,35744378 -g1,9940:10424525,35744378 -g1,9940:10740671,35744378 -g1,9940:11056817,35744378 -h1,9940:11372963,35744378:0,0,0 -k1,9940:32583029,35744378:21210066 -g1,9940:32583029,35744378 -) -(1,9941:6630773,36410556:25952256,404226,76021 -h1,9941:6630773,36410556:0,0,0 -g1,9941:6946919,36410556 -g1,9941:7263065,36410556 -g1,9941:7579211,36410556 -g1,9941:7895357,36410556 -g1,9941:8211503,36410556 -g1,9941:8527649,36410556 -g1,9941:8843795,36410556 -g1,9941:9159941,36410556 -g1,9941:9476087,36410556 -g1,9941:9792233,36410556 -g1,9941:10108379,36410556 -g1,9941:10424525,36410556 -h1,9941:11056816,36410556:0,0,0 -k1,9941:32583028,36410556:21526212 -g1,9941:32583028,36410556 -) -(1,9946:6630773,37076734:25952256,404226,101187 -(1,9943:6630773,37076734:0,0,0 -g1,9943:6630773,37076734 -g1,9943:6630773,37076734 -g1,9943:6303093,37076734 -(1,9943:6303093,37076734:0,0,0 -) -g1,9943:6630773,37076734 -) -g1,9946:7579210,37076734 -g1,9946:7895356,37076734 -g1,9946:8211502,37076734 -g1,9946:8527648,37076734 -g1,9946:10108377,37076734 -g1,9946:10424523,37076734 -g1,9946:12637543,37076734 -h1,9946:14850563,37076734:0,0,0 -k1,9946:32583029,37076734:17732466 -g1,9946:32583029,37076734 -) -(1,9946:6630773,37742912:25952256,388497,9436 -h1,9946:6630773,37742912:0,0,0 -g1,9946:7579210,37742912 -g1,9946:7895356,37742912 -g1,9946:8211502,37742912 -g1,9946:8527648,37742912 -g1,9946:10108377,37742912 -g1,9946:10424523,37742912 -g1,9946:10740669,37742912 -g1,9946:11056815,37742912 -g1,9946:12637544,37742912 -g1,9946:12953690,37742912 -g1,9946:13269836,37742912 -g1,9946:13585982,37742912 -h1,9946:14850565,37742912:0,0,0 -k1,9946:32583029,37742912:17732464 -g1,9946:32583029,37742912 -) -] -) -g1,9947:32583029,37752348 -g1,9947:6630773,37752348 -g1,9947:6630773,37752348 -g1,9947:32583029,37752348 -g1,9947:32583029,37752348 -) -h1,9947:6630773,37948956:0,0,0 -v1,9951:6630773,39839020:0,393216,0 -(1,10038:6630773,45376504:25952256,5930700,0 -g1,10038:6630773,45376504 -g1,10038:6303093,45376504 -r1,10038:6401397,45376504:98304,5930700,0 -g1,10038:6600626,45376504 -g1,10038:6797234,45376504 -[1,10038:6797234,45376504:25785795,5930700,0 -(1,9952:6797234,40201093:25785795,755289,196608 -(1,9951:6797234,40201093:0,755289,196608 -r1,10038:8134168,40201093:1336934,951897,196608 -k1,9951:6797234,40201093:-1336934 -) -(1,9951:6797234,40201093:1336934,755289,196608 -) -k1,9951:8376702,40201093:242534 -k1,9951:8704382,40201093:327680 -k1,9951:12070361,40201093:242533 -k1,9951:14899601,40201093:242534 -k1,9951:16536086,40201093:242534 -k1,9951:18349517,40201093:242533 -k1,9951:19981414,40201093:242534 -k1,9951:21662463,40201093:242534 -k1,9951:22587882,40201093:242534 -k1,9951:24582192,40201093:242533 -k1,9951:27026736,40201093:242534 -k1,9951:28658633,40201093:242534 -k1,9951:30339681,40201093:242533 -k1,9951:31450567,40201093:242534 -k1,9951:32583029,40201093:0 -) -(1,9952:6797234,41042581:25785795,513147,126483 -k1,9951:8518865,41042581:191365 -k1,9951:9361658,41042581:191365 -k1,9951:10905686,41042581:191365 -k1,9951:15172735,41042581:191365 -k1,9951:16631566,41042581:191365 -k1,9951:19500733,41042581:191366 -k1,9951:20509987,41042581:191365 -k1,9951:24893690,41042581:191365 -k1,9951:27372262,41042581:191365 -k1,9951:28849443,41042581:191365 -k1,9951:31086842,41042581:191365 -k1,9951:32583029,41042581:0 -) -(1,9952:6797234,41884069:25785795,505283,134348 -k1,9951:9647574,41884069:263634 -k1,9951:10369304,41884069:263633 -k1,9951:11164435,41884069:263634 -k1,9951:13012073,41884069:263633 -k1,9951:14776481,41884069:263634 -k1,9951:15691542,41884069:263633 -k1,9951:17047661,41884069:263634 -k1,9951:21503632,41884069:263633 -k1,9951:24805515,41884069:263634 -k1,9951:27872779,41884069:263634 -k1,9951:29178434,41884069:263633 -k1,9951:32583029,41884069:0 -) -(1,9952:6797234,42725557:25785795,513147,126483 -k1,9951:8378353,42725557:296613 -k1,9951:9666526,42725557:296613 -k1,9951:13268120,42725557:296613 -k1,9951:15251630,42725557:296613 -k1,9951:15962988,42725557:296515 -k1,9951:18927572,42725557:296613 -k1,9951:21621492,42725557:296613 -k1,9951:25117573,42725557:296613 -k1,9951:25884079,42725557:296613 -k1,9951:26712189,42725557:296613 -k1,9951:28425690,42725557:296613 -k1,9951:31931601,42725557:296613 -k1,9951:32583029,42725557:0 -) -(1,9952:6797234,43567045:25785795,513147,126483 -k1,9951:9790084,43567045:261965 -k1,9951:11118320,43567045:261965 -k1,9951:12755887,43567045:261966 -k1,9951:17210190,43567045:261965 -k1,9951:18131447,43567045:261965 -k1,9951:21669557,43567045:261965 -k1,9951:23003691,43567045:261965 -k1,9951:24551472,43567045:261965 -k1,9951:26635339,43567045:261966 -k1,9951:27844955,43567045:261965 -k1,9951:29126005,43567045:261965 -k1,9951:32583029,43567045:0 -) -(1,9952:6797234,44408533:25785795,513147,134348 -k1,9951:7665731,44408533:209205 -k1,9951:15416165,44408533:209206 -k1,9951:18651167,44408533:209205 -k1,9951:19808024,44408533:209206 -k1,9951:22414536,44408533:209205 -k1,9951:24494795,44408533:209206 -k1,9951:25900687,44408533:209205 -k1,9951:28283067,44408533:209206 -k1,9951:30059893,44408533:209205 -k1,9951:32583029,44408533:0 -) -(1,9952:6797234,45250021:25785795,513147,126483 -k1,9951:8086889,45250021:270570 -k1,9951:9853646,45250021:270570 -k1,9951:13115935,45250021:270570 -k1,9951:14002543,45250021:270570 -k1,9951:15476354,45250021:270570 -k1,9951:16906911,45250021:270570 -k1,9951:18169041,45250021:270570 -k1,9951:19505881,45250021:270569 -k1,9951:22708532,45250021:270570 -k1,9951:25508792,45250021:270570 -k1,9951:27159550,45250021:270570 -k1,9951:28421680,45250021:270570 -k1,9951:29711335,45250021:270570 -k1,9951:31635378,45250021:270570 -k1,9951:32583029,45250021:0 -) -] -g1,10038:32583029,45376504 -) -] -(1,10038:32583029,45706769:0,0,0 -g1,10038:32583029,45706769 -) -) -] -(1,10038:6630773,47279633:25952256,0,0 -h1,10038:6630773,47279633:25952256,0,0 -) -] -(1,10038:4262630,4025873:0,0,0 -[1,10038:-473656,4025873:0,0,0 -(1,10038:-473656,-710413:0,0,0 -(1,10038:-473656,-710413:0,0,0 -g1,10038:-473656,-710413 -) -g1,10038:-473656,-710413 -) -] -) -] -!26840 -}167 -Input:1467:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!106 -{168 -[1,10047:4262630,47279633:28320399,43253760,0 -(1,10047:4262630,4025873:0,0,0 -[1,10047:-473656,4025873:0,0,0 -(1,10047:-473656,-710413:0,0,0 -(1,10047:-473656,-644877:0,0,0 -k1,10047:-473656,-644877:-65536 +[1,9119:3078558,4812305:0,0,0 +(1,9119:3078558,49800853:0,16384,2228224 +k1,9119:1358238,49800853:-1720320 +(1,8606:1358238,49800853:1720320,16384,2228224 +(1,8606:1358238,49800853:1179648,16384,0 +r1,9119:2537886,49800853:1179648,16384,0 ) -(1,10047:-473656,4736287:0,0,0 -k1,10047:-473656,4736287:5209943 +g1,8606:3062174,49800853 +(1,8606:3062174,52029077:16384,1703936,0 +[1,8606:3062174,52029077:25952256,1703936,0 +(1,8606:3062174,51504789:25952256,1179648,0 +(1,8606:3062174,51504789:16384,1179648,0 +r1,9119:3078558,51504789:16384,1179648,0 ) -g1,10047:-473656,-710413 +k1,8606:29014430,51504789:25935872 +g1,8606:29014430,51504789 ) ] ) -[1,10047:6630773,47279633:25952256,43253760,0 -[1,10047:6630773,4812305:25952256,786432,0 -(1,10047:6630773,4812305:25952256,485622,11795 -(1,10047:6630773,4812305:25952256,485622,11795 -g1,10047:3078558,4812305 -[1,10047:3078558,4812305:0,0,0 -(1,10047:3078558,2439708:0,1703936,0 -k1,10047:1358238,2439708:-1720320 -(1,8393:1358238,2439708:1720320,1703936,0 -(1,8393:1358238,2439708:1179648,16384,0 -r1,10047:2537886,2439708:1179648,16384,0 ) -g1,8393:3062174,2439708 -(1,8393:3062174,2439708:16384,1703936,0 -[1,8393:3062174,2439708:25952256,1703936,0 -(1,8393:3062174,1915420:25952256,1179648,0 -(1,8393:3062174,1915420:16384,1179648,0 -r1,10047:3078558,1915420:16384,1179648,0 ) -k1,8393:29014430,1915420:25935872 -g1,8393:29014430,1915420 +] +[1,9119:3078558,4812305:0,0,0 +(1,9119:3078558,49800853:0,16384,2228224 +g1,9119:29030814,49800853 +g1,9119:36135244,49800853 +(1,8606:36135244,49800853:1720320,16384,2228224 +(1,8606:36135244,52029077:16384,1703936,0 +[1,8606:36135244,52029077:25952256,1703936,0 +(1,8606:36135244,51504789:25952256,1179648,0 +(1,8606:36135244,51504789:16384,1179648,0 +r1,9119:36151628,51504789:16384,1179648,0 +) +k1,8606:62087500,51504789:25935872 +g1,8606:62087500,51504789 ) ] ) +g1,8606:36675916,49800853 +(1,8606:36675916,49800853:1179648,16384,0 +r1,9119:37855564,49800853:1179648,16384,0 ) ) +k1,9119:3078556,49800853:-34777008 +) ] -[1,10047:3078558,4812305:0,0,0 -(1,10047:3078558,2439708:0,1703936,0 -g1,10047:29030814,2439708 -g1,10047:36135244,2439708 -(1,8393:36135244,2439708:1720320,1703936,0 -(1,8393:36135244,2439708:16384,1703936,0 -[1,8393:36135244,2439708:25952256,1703936,0 -(1,8393:36135244,1915420:25952256,1179648,0 -(1,8393:36135244,1915420:16384,1179648,0 -r1,10047:36151628,1915420:16384,1179648,0 +g1,9119:6630773,4812305 +k1,9119:21643106,4812305:13816956 +g1,9119:23265777,4812305 +g1,9119:24088253,4812305 +g1,9119:28572226,4812305 +g1,9119:29981905,4812305 ) -k1,8393:62087500,1915420:25935872 -g1,8393:62087500,1915420 ) ] +[1,9119:6630773,45706769:25952256,40108032,0 +(1,9119:6630773,45706769:25952256,40108032,0 +(1,9119:6630773,45706769:0,0,0 +g1,9119:6630773,45706769 ) -g1,8393:36675916,2439708 -(1,8393:36675916,2439708:1179648,16384,0 -r1,10047:37855564,2439708:1179648,16384,0 +[1,9119:6630773,45706769:25952256,40108032,0 +v1,9034:6630773,6254097:0,393216,0 +(1,9041:6630773,7377677:25952256,1516796,196608 +g1,9041:6630773,7377677 +g1,9041:6630773,7377677 +g1,9041:6434165,7377677 +(1,9041:6434165,7377677:0,1516796,196608 +r1,9119:32779637,7377677:26345472,1713404,196608 +k1,9041:6434165,7377677:-26345472 +) +(1,9041:6434165,7377677:26345472,1516796,196608 +[1,9041:6630773,7377677:25952256,1320188,0 +(1,9036:6630773,6481928:25952256,424439,106246 +(1,9035:6630773,6481928:0,0,0 +g1,9035:6630773,6481928 +g1,9035:6630773,6481928 +g1,9035:6303093,6481928 +(1,9035:6303093,6481928:0,0,0 +) +g1,9035:6630773,6481928 +) +g1,9036:8290543,6481928 +g1,9036:9286405,6481928 +g1,9036:11610083,6481928 +g1,9036:12273991,6481928 +g1,9036:13269853,6481928 +g1,9036:14265715,6481928 +g1,9036:16589393,6481928 +g1,9036:17585255,6481928 +g1,9036:19576979,6481928 +g1,9036:20240887,6481928 +h1,9036:20904795,6481928:0,0,0 +k1,9036:32583029,6481928:11678234 +g1,9036:32583029,6481928 +) +(1,9040:6630773,7297855:25952256,424439,79822 +(1,9038:6630773,7297855:0,0,0 +g1,9038:6630773,7297855 +g1,9038:6630773,7297855 +g1,9038:6303093,7297855 +(1,9038:6303093,7297855:0,0,0 +) +g1,9038:6630773,7297855 +) +g1,9040:7626635,7297855 +g1,9040:8954451,7297855 +h1,9040:10946175,7297855:0,0,0 +k1,9040:32583029,7297855:21636854 +g1,9040:32583029,7297855 +) +] +) +g1,9041:32583029,7377677 +g1,9041:6630773,7377677 +g1,9041:6630773,7377677 +g1,9041:32583029,7377677 +g1,9041:32583029,7377677 +) +h1,9041:6630773,7574285:0,0,0 +v1,9045:6630773,8439365:0,393216,0 +(1,9070:6630773,21543476:25952256,13497327,0 +g1,9070:6630773,21543476 +g1,9070:6237557,21543476 +r1,9119:6368629,21543476:131072,13497327,0 +g1,9070:6567858,21543476 +g1,9070:6764466,21543476 +[1,9070:6764466,21543476:25818563,13497327,0 +(1,9046:6764466,8747663:25818563,701514,196608 +(1,9045:6764466,8747663:0,701514,196608 +r1,9119:8010564,8747663:1246098,898122,196608 +k1,9045:6764466,8747663:-1246098 +) +(1,9045:6764466,8747663:1246098,701514,196608 +) +k1,9045:8150957,8747663:140393 +k1,9045:8478637,8747663:327680 +k1,9045:10051647,8747663:140393 +k1,9045:10606824,8747663:140334 +k1,9045:13773014,8747663:140393 +k1,9045:15059632,8747663:140393 +(1,9045:15059632,8747663:0,452978,115847 +r1,9119:17879881,8747663:2820249,568825,115847 +k1,9045:15059632,8747663:-2820249 +) +(1,9045:15059632,8747663:2820249,452978,115847 +k1,9045:15059632,8747663:3277 +h1,9045:17876604,8747663:0,411205,112570 +) +k1,9045:18020274,8747663:140393 +k1,9045:19635881,8747663:140392 +k1,9045:20132134,8747663:140393 +k1,9045:23256381,8747663:140393 +k1,9045:24681280,8747663:140393 +k1,9045:25353170,8747663:140393 +k1,9045:27785356,8747663:140392 +k1,9045:28873400,8747663:140393 +k1,9045:30106278,8747663:140393 +k1,9045:30862709,8747663:140393 +k1,9045:32583029,8747663:0 +) +(1,9046:6764466,9612743:25818563,513147,134348 +k1,9045:7778144,9612743:252150 +k1,9045:11036429,9612743:252149 +k1,9045:13716033,9612743:252150 +k1,9045:14987268,9612743:252150 +k1,9045:17050177,9612743:252149 +k1,9045:18982670,9612743:252150 +k1,9045:19920982,9612743:252150 +k1,9045:23245459,9612743:252149 +k1,9045:24149037,9612743:252150 +k1,9045:25189585,9612743:252150 +k1,9045:26747867,9612743:252149 +k1,9045:29128626,9612743:252150 +k1,9045:32583029,9612743:0 +) +(1,9046:6764466,10477823:25818563,513147,134348 +k1,9045:8640886,10477823:186902 +k1,9045:10860060,10477823:186903 +k1,9045:12193187,10477823:186902 +(1,9045:12193187,10477823:0,452978,122846 +r1,9119:15013436,10477823:2820249,575824,122846 +k1,9045:12193187,10477823:-2820249 +) +(1,9045:12193187,10477823:2820249,452978,122846 +k1,9045:12193187,10477823:3277 +h1,9045:15010159,10477823:0,411205,112570 +) +k1,9045:15200338,10477823:186902 +k1,9045:16202509,10477823:186903 +k1,9045:17629352,10477823:186902 +k1,9045:18858276,10477823:186902 +k1,9045:21880266,10477823:186903 +k1,9045:23765206,10477823:186902 +k1,9045:26042051,10477823:186902 +k1,9045:28924450,10477823:186903 +(1,9045:28924450,10477823:0,452978,122846 +r1,9119:31744699,10477823:2820249,575824,122846 +k1,9045:28924450,10477823:-2820249 +) +(1,9045:28924450,10477823:2820249,452978,122846 +k1,9045:28924450,10477823:3277 +h1,9045:31741422,10477823:0,411205,112570 +) +k1,9045:31931601,10477823:186902 +k1,9045:32583029,10477823:0 +) +(1,9046:6764466,11342903:25818563,505283,134348 +k1,9045:8331227,11342903:176087 +k1,9045:8863174,11342903:176087 +k1,9045:10719604,11342903:176087 +k1,9045:12631084,11342903:176087 +k1,9045:13163031,11342903:176087 +k1,9045:15077133,11342903:176087 +k1,9045:18037189,11342903:176087 +k1,9045:18899438,11342903:176087 +k1,9045:19431386,11342903:176088 +k1,9045:22582152,11342903:176087 +k1,9045:24624049,11342903:176087 +k1,9045:25668488,11342903:176087 +k1,9045:27800825,11342903:176087 +k1,9045:29123137,11342903:176087 +k1,9045:29950652,11342903:176087 +k1,9045:31563944,11342903:176087 +k1,9045:32583029,11342903:0 +) +(1,9046:6764466,12207983:25818563,513147,134348 +k1,9045:8794568,12207983:219342 +k1,9045:10694253,12207983:219342 +k1,9045:11599757,12207983:219342 +k1,9045:14891427,12207983:219342 +k1,9045:15762197,12207983:219342 +k1,9045:19262271,12207983:219342 +(1,9045:19262271,12207983:0,452978,115847 +r1,9119:21027384,12207983:1765113,568825,115847 +k1,9045:19262271,12207983:-1765113 +) +(1,9045:19262271,12207983:1765113,452978,115847 +k1,9045:19262271,12207983:3277 +h1,9045:21024107,12207983:0,411205,112570 +) +k1,9045:21246726,12207983:219342 +k1,9045:23351538,12207983:219341 +k1,9045:24102377,12207983:219342 +k1,9045:25387990,12207983:219342 +k1,9045:26626417,12207983:219342 +k1,9045:28325562,12207983:219342 +k1,9045:29172739,12207983:219342 +k1,9045:30885647,12207983:219342 +k1,9045:32583029,12207983:0 +) +(1,9046:6764466,13073063:25818563,505283,126483 +g1,9045:7832047,13073063 +g1,9045:9135558,13073063 +g1,9045:10427272,13073063 +(1,9045:10427272,13073063:0,414482,115847 +r1,9119:10785538,13073063:358266,530329,115847 +k1,9045:10427272,13073063:-358266 +) +(1,9045:10427272,13073063:358266,414482,115847 +k1,9045:10427272,13073063:3277 +h1,9045:10782261,13073063:0,411205,112570 +) +g1,9045:10984767,13073063 +g1,9045:11870158,13073063 +g1,9045:12425247,13073063 +g1,9045:16358062,13073063 +g1,9045:17748736,13073063 +g1,9045:19385170,13073063 +g1,9045:20042496,13073063 +g1,9045:21003253,13073063 +k1,9046:32583029,13073063:9668091 +g1,9046:32583029,13073063 +) +v1,9048:6764466,13757918:0,393216,0 +(1,9053:6764466,14783456:25818563,1418754,196608 +g1,9053:6764466,14783456 +g1,9053:6764466,14783456 +g1,9053:6567858,14783456 +(1,9053:6567858,14783456:0,1418754,196608 +r1,9119:32779637,14783456:26211779,1615362,196608 +k1,9053:6567857,14783456:-26211780 +) +(1,9053:6567858,14783456:26211779,1418754,196608 +[1,9053:6764466,14783456:25818563,1222146,0 +(1,9050:6764466,13985749:25818563,424439,112852 +(1,9049:6764466,13985749:0,0,0 +g1,9049:6764466,13985749 +g1,9049:6764466,13985749 +g1,9049:6436786,13985749 +(1,9049:6436786,13985749:0,0,0 +) +g1,9049:6764466,13985749 +) +g1,9050:9752051,13985749 +g1,9050:10747913,13985749 +h1,9050:14067452,13985749:0,0,0 +k1,9050:32583028,13985749:18515576 +g1,9050:32583028,13985749 +) +(1,9051:6764466,14670604:25818563,424439,112852 +h1,9051:6764466,14670604:0,0,0 +g1,9051:8424236,14670604 +g1,9051:9420098,14670604 +g1,9051:11743776,14670604 +g1,9051:12739638,14670604 +g1,9051:14731362,14670604 +g1,9051:15727224,14670604 +g1,9051:18714810,14670604 +g1,9051:19378718,14670604 +g1,9051:22698257,14670604 +g1,9051:24689981,14670604 +g1,9051:25353889,14670604 +h1,9051:26017797,14670604:0,0,0 +k1,9051:32583029,14670604:6565232 +g1,9051:32583029,14670604 +) +] +) +g1,9053:32583029,14783456 +g1,9053:6764466,14783456 +g1,9053:6764466,14783456 +g1,9053:32583029,14783456 +g1,9053:32583029,14783456 +) +h1,9053:6764466,14980064:0,0,0 +(1,9057:6764466,15845144:25818563,513147,126483 +h1,9056:6764466,15845144:983040,0,0 +k1,9056:12197783,15845144:191747 +k1,9056:13257882,15845144:191747 +k1,9056:14553912,15845144:191748 +k1,9056:16706496,15845144:191747 +k1,9056:17254103,15845144:191747 +k1,9056:20088262,15845144:191747 +k1,9056:23149176,15845144:191748 +k1,9056:24734874,15845144:191747 +k1,9056:25945706,15845144:191747 +k1,9056:28493472,15845144:191747 +k1,9056:30424546,15845144:191748 +k1,9056:31563944,15845144:191747 +k1,9056:32583029,15845144:0 +) +(1,9057:6764466,16710224:25818563,513147,126483 +k1,9056:9122630,16710224:229555 +k1,9056:13136888,16710224:229554 +k1,9056:14747287,16710224:229555 +k1,9056:17961351,16710224:229554 +k1,9056:19295188,16710224:229555 +k1,9056:20272508,16710224:229554 +k1,9056:24067222,16710224:229555 +k1,9056:25994814,16710224:229554 +k1,9056:27243454,16710224:229555 +k1,9056:29126481,16710224:229554 +k1,9056:32051532,16710224:229555 +k1,9056:32583029,16710224:0 +) +(1,9057:6764466,17575304:25818563,505283,126483 +g1,9056:8831471,17575304 +g1,9056:12381556,17575304 +g1,9056:14590774,17575304 +g1,9056:15145863,17575304 +k1,9057:32583029,17575304:15432420 +g1,9057:32583029,17575304 +) +v1,9059:6764466,18260159:0,393216,0 +(1,9067:6764466,21346868:25818563,3479925,196608 +g1,9067:6764466,21346868 +g1,9067:6764466,21346868 +g1,9067:6567858,21346868 +(1,9067:6567858,21346868:0,3479925,196608 +r1,9119:32779637,21346868:26211779,3676533,196608 +k1,9067:6567857,21346868:-26211780 +) +(1,9067:6567858,21346868:26211779,3479925,196608 +[1,9067:6764466,21346868:25818563,3283317,0 +(1,9061:6764466,18494596:25818563,431045,112852 +(1,9060:6764466,18494596:0,0,0 +g1,9060:6764466,18494596 +g1,9060:6764466,18494596 +g1,9060:6436786,18494596 +(1,9060:6436786,18494596:0,0,0 +) +g1,9060:6764466,18494596 +) +g1,9061:11079867,18494596 +g1,9061:12075729,18494596 +g1,9061:17386992,18494596 +g1,9061:18382854,18494596 +g1,9061:20042624,18494596 +h1,9061:20374578,18494596:0,0,0 +k1,9061:32583029,18494596:12208451 +g1,9061:32583029,18494596 +) +(1,9062:6764466,19179451:25818563,424439,112852 +h1,9062:6764466,19179451:0,0,0 +g1,9062:7096420,19179451 +g1,9062:7428374,19179451 +g1,9062:10415960,19179451 +g1,9062:11079868,19179451 +g1,9062:12075730,19179451 +g1,9062:14067454,19179451 +g1,9062:14731362,19179451 +g1,9062:17055040,19179451 +h1,9062:18382856,19179451:0,0,0 +k1,9062:32583029,19179451:14200173 +g1,9062:32583029,19179451 +) +(1,9063:6764466,19864306:25818563,424439,79822 +h1,9063:6764466,19864306:0,0,0 +h1,9063:7096420,19864306:0,0,0 +k1,9063:32583028,19864306:25486608 +g1,9063:32583028,19864306 +) +(1,9064:6764466,20549161:25818563,424439,112852 +h1,9064:6764466,20549161:0,0,0 +g1,9064:9752051,20549161 +g1,9064:10747913,20549161 +h1,9064:14067452,20549161:0,0,0 +k1,9064:32583028,20549161:18515576 +g1,9064:32583028,20549161 +) +(1,9065:6764466,21234016:25818563,424439,112852 +h1,9065:6764466,21234016:0,0,0 +g1,9065:8424236,21234016 +g1,9065:9420098,21234016 +g1,9065:11743776,21234016 +g1,9065:12739638,21234016 +g1,9065:14731362,21234016 +g1,9065:15727224,21234016 +k1,9065:15727224,21234016:0 +h1,9065:23030210,21234016:0,0,0 +k1,9065:32583029,21234016:9552819 +g1,9065:32583029,21234016 +) +] +) +g1,9067:32583029,21346868 +g1,9067:6764466,21346868 +g1,9067:6764466,21346868 +g1,9067:32583029,21346868 +g1,9067:32583029,21346868 +) +h1,9067:6764466,21543476:0,0,0 +] +g1,9070:32583029,21543476 +) +h1,9070:6630773,21543476:0,0,0 +(1,9073:6630773,22408556:25952256,505283,134348 +h1,9072:6630773,22408556:983040,0,0 +k1,9072:8414444,22408556:172796 +k1,9072:10920323,22408556:172797 +k1,9072:14131368,22408556:172796 +k1,9072:15172516,22408556:172796 +k1,9072:16437798,22408556:172797 +k1,9072:19943755,22408556:172796 +k1,9072:22958192,22408556:172796 +k1,9072:23782417,22408556:172797 +k1,9072:25572642,22408556:172796 +k1,9072:27756083,22408556:172796 +k1,9072:29213386,22408556:172797 +k1,9072:30377742,22408556:172796 +k1,9072:32583029,22408556:0 +) +(1,9073:6630773,23273636:25952256,505283,134348 +k1,9072:7590825,23273636:273890 +k1,9072:11267344,23273636:273890 +k1,9072:12916835,23273636:273890 +k1,9072:14854684,23273636:273890 +k1,9072:15996926,23273636:273890 +k1,9072:17375098,23273636:273890 +k1,9072:19369308,23273636:273890 +k1,9072:20662283,23273636:273890 +k1,9072:24452835,23273636:273890 +k1,9072:27085366,23273636:273890 +k1,9072:28378341,23273636:273890 +k1,9072:30685813,23273636:273890 +k1,9072:32227169,23273636:273890 +k1,9072:32583029,23273636:0 +) +(1,9073:6630773,24138716:25952256,513147,126483 +k1,9072:10230403,24138716:266469 +k1,9072:13008213,24138716:266470 +k1,9072:15714587,24138716:266469 +k1,9072:18308240,24138716:266470 +k1,9072:19234001,24138716:266469 +k1,9072:22005256,24138716:266469 +k1,9072:25287037,24138716:266470 +k1,9072:26212798,24138716:266469 +k1,9072:28171408,24138716:266470 +k1,9072:30415098,24138716:266469 +k1,9072:32583029,24138716:0 +) +(1,9073:6630773,25003796:25952256,513147,7863 +k1,9073:32583029,25003796:23793500 +g1,9073:32583029,25003796 +) +(1,9075:6630773,25868876:25952256,513147,134348 +h1,9074:6630773,25868876:983040,0,0 +k1,9074:10650730,25868876:239185 +k1,9074:11549207,25868876:239185 +k1,9074:14997035,25868876:239185 +k1,9074:18077861,25868876:239185 +k1,9074:18968474,25868876:239185 +k1,9074:19563519,25868876:239185 +k1,9074:21192067,25868876:239185 +k1,9074:23307548,25868876:239185 +k1,9074:25282126,25868876:239185 +(1,9074:25282126,25868876:0,452978,115847 +r1,9119:28102375,25868876:2820249,568825,115847 +k1,9074:25282126,25868876:-2820249 +) +(1,9074:25282126,25868876:2820249,452978,115847 +k1,9074:25282126,25868876:3277 +h1,9074:28099098,25868876:0,411205,112570 +) +k1,9074:28341560,25868876:239185 +k1,9074:29772190,25868876:239185 +k1,9074:32583029,25868876:0 +) +(1,9075:6630773,26733956:25952256,513147,126483 +k1,9074:8389691,26733956:224720 +k1,9074:10008362,26733956:224720 +(1,9074:10008362,26733956:0,452978,115847 +r1,9119:12828611,26733956:2820249,568825,115847 +k1,9074:10008362,26733956:-2820249 +) +(1,9074:10008362,26733956:2820249,452978,115847 +k1,9074:10008362,26733956:3277 +h1,9074:12825334,26733956:0,411205,112570 +) +k1,9074:13053331,26733956:224720 +k1,9074:14269611,26733956:224720 +k1,9074:17626952,26733956:224720 +k1,9074:18467710,26733956:224720 +k1,9074:19790158,26733956:224720 +k1,9074:21321011,26733956:224720 +k1,9074:23670408,26733956:224720 +k1,9074:26730215,26733956:224720 +k1,9074:27996957,26733956:224720 +k1,9074:30397472,26733956:224720 +k1,9074:31490544,26733956:224720 +k1,9074:32583029,26733956:0 +) +(1,9075:6630773,27599036:25952256,513147,134348 +k1,9074:7874512,27599036:224654 +(1,9074:7874512,27599036:0,414482,115847 +r1,9119:8232778,27599036:358266,530329,115847 +k1,9074:7874512,27599036:-358266 +) +(1,9074:7874512,27599036:358266,414482,115847 +k1,9074:7874512,27599036:3277 +h1,9074:8229501,27599036:0,411205,112570 +) +k1,9074:8457431,27599036:224653 +k1,9074:12415671,27599036:224654 +k1,9074:13291753,27599036:224654 +k1,9074:16048062,27599036:224653 +k1,9074:17291801,27599036:224654 +k1,9074:19196798,27599036:224654 +k1,9074:22200179,27599036:224654 +k1,9074:23186360,27599036:224653 +k1,9074:24430099,27599036:224654 +k1,9074:27803103,27599036:224654 +k1,9074:30723252,27599036:224653 +k1,9074:31563944,27599036:224654 +k1,9074:32583029,27599036:0 +) +(1,9075:6630773,28464116:25952256,473825,126483 +k1,9075:32583030,28464116:24388568 +g1,9075:32583030,28464116 +) +v1,9077:6630773,29148971:0,393216,0 +(1,9095:6630773,37742648:25952256,8986893,196608 +g1,9095:6630773,37742648 +g1,9095:6630773,37742648 +g1,9095:6434165,37742648 +(1,9095:6434165,37742648:0,8986893,196608 +r1,9119:32779637,37742648:26345472,9183501,196608 +k1,9095:6434165,37742648:-26345472 +) +(1,9095:6434165,37742648:26345472,8986893,196608 +[1,9095:6630773,37742648:25952256,8790285,0 +(1,9079:6630773,29383408:25952256,431045,106246 +(1,9078:6630773,29383408:0,0,0 +g1,9078:6630773,29383408 +g1,9078:6630773,29383408 +g1,9078:6303093,29383408 +(1,9078:6303093,29383408:0,0,0 +) +g1,9078:6630773,29383408 +) +k1,9079:6630773,29383408:0 +g1,9079:10946174,29383408 +g1,9079:11610082,29383408 +g1,9079:13601806,29383408 +g1,9079:14265714,29383408 +g1,9079:14929622,29383408 +g1,9079:18581116,29383408 +k1,9079:18581116,29383408:0 +h1,9079:19245024,29383408:0,0,0 +k1,9079:32583029,29383408:13338005 +g1,9079:32583029,29383408 +) +(1,9080:6630773,30068263:25952256,424439,86428 +h1,9080:6630773,30068263:0,0,0 +g1,9080:6962727,30068263 +g1,9080:7294681,30068263 +g1,9080:11278129,30068263 +g1,9080:11942037,30068263 +k1,9080:11942037,30068263:0 +h1,9080:12605945,30068263:0,0,0 +k1,9080:32583029,30068263:19977084 +g1,9080:32583029,30068263 +) +(1,9081:6630773,30753118:25952256,424439,79822 +h1,9081:6630773,30753118:0,0,0 +g1,9081:6962727,30753118 +g1,9081:7294681,30753118 +g1,9081:7626635,30753118 +g1,9081:7958589,30753118 +g1,9081:8290543,30753118 +g1,9081:8622497,30753118 +g1,9081:8954451,30753118 +g1,9081:9286405,30753118 +g1,9081:9618359,30753118 +h1,9081:9950313,30753118:0,0,0 +k1,9081:32583029,30753118:22632716 +g1,9081:32583029,30753118 +) +(1,9082:6630773,31437973:25952256,398014,0 +h1,9082:6630773,31437973:0,0,0 +g1,9082:6962727,31437973 +g1,9082:7294681,31437973 +g1,9082:7626635,31437973 +g1,9082:7958589,31437973 +g1,9082:8290543,31437973 +g1,9082:8622497,31437973 +g1,9082:8954451,31437973 +g1,9082:9286405,31437973 +g1,9082:9618359,31437973 +g1,9082:9950313,31437973 +g1,9082:10282267,31437973 +g1,9082:11278129,31437973 +g1,9082:12273991,31437973 +h1,9082:13269853,31437973:0,0,0 +k1,9082:32583029,31437973:19313176 +g1,9082:32583029,31437973 +) +(1,9083:6630773,32122828:25952256,424439,112852 +h1,9083:6630773,32122828:0,0,0 +g1,9083:6962727,32122828 +g1,9083:7294681,32122828 +g1,9083:7626635,32122828 +g1,9083:7958589,32122828 +g1,9083:8290543,32122828 +g1,9083:8622497,32122828 +g1,9083:8954451,32122828 +g1,9083:9286405,32122828 +g1,9083:9618359,32122828 +g1,9083:9950313,32122828 +g1,9083:10282267,32122828 +g1,9083:13269852,32122828 +g1,9083:14265714,32122828 +g1,9083:15593530,32122828 +g1,9083:16257438,32122828 +h1,9083:17585254,32122828:0,0,0 +k1,9083:32583029,32122828:14997775 +g1,9083:32583029,32122828 +) +(1,9084:6630773,32807683:25952256,424439,79822 +h1,9084:6630773,32807683:0,0,0 +g1,9084:6962727,32807683 +g1,9084:7294681,32807683 +g1,9084:7626635,32807683 +g1,9084:7958589,32807683 +g1,9084:8290543,32807683 +g1,9084:8622497,32807683 +g1,9084:8954451,32807683 +g1,9084:9286405,32807683 +g1,9084:9618359,32807683 +g1,9084:10614221,32807683 +k1,9084:10614221,32807683:0 +h1,9084:11278129,32807683:0,0,0 +k1,9084:32583029,32807683:21304900 +g1,9084:32583029,32807683 +) +(1,9085:6630773,33492538:25952256,424439,112852 +h1,9085:6630773,33492538:0,0,0 +g1,9085:6962727,33492538 +g1,9085:7294681,33492538 +g1,9085:10282267,33492538 +g1,9085:10946175,33492538 +g1,9085:11942037,33492538 +h1,9085:14929622,33492538:0,0,0 +k1,9085:32583030,33492538:17653408 +g1,9085:32583030,33492538 +) +(1,9094:6630773,34308465:25952256,424439,112852 +(1,9087:6630773,34308465:0,0,0 +g1,9087:6630773,34308465 +g1,9087:6630773,34308465 +g1,9087:6303093,34308465 +(1,9087:6303093,34308465:0,0,0 +) +g1,9087:6630773,34308465 +) +g1,9094:7626635,34308465 +g1,9094:7958589,34308465 +g1,9094:8290543,34308465 +g1,9094:8622497,34308465 +g1,9094:8954451,34308465 +g1,9094:9618359,34308465 +g1,9094:9950313,34308465 +g1,9094:10282267,34308465 +g1,9094:10614221,34308465 +g1,9094:10946175,34308465 +g1,9094:11278129,34308465 +g1,9094:11610083,34308465 +g1,9094:11942037,34308465 +g1,9094:12273991,34308465 +g1,9094:12605945,34308465 +g1,9094:13269853,34308465 +g1,9094:16257438,34308465 +g1,9094:16589392,34308465 +g1,9094:16921346,34308465 +g1,9094:17253300,34308465 +h1,9094:17917208,34308465:0,0,0 +k1,9094:32583029,34308465:14665821 +g1,9094:32583029,34308465 +) +(1,9094:6630773,34993320:25952256,407923,9908 +h1,9094:6630773,34993320:0,0,0 +g1,9094:7626635,34993320 +g1,9094:8290543,34993320 +g1,9094:8622497,34993320 +g1,9094:8954451,34993320 +g1,9094:9618359,34993320 +g1,9094:13269852,34993320 +g1,9094:13601806,34993320 +g1,9094:13933760,34993320 +g1,9094:14265714,34993320 +g1,9094:14597668,34993320 +g1,9094:16257438,34993320 +g1,9094:16589392,34993320 +h1,9094:17917208,34993320:0,0,0 +k1,9094:32583029,34993320:14665821 +g1,9094:32583029,34993320 +) +(1,9094:6630773,35678175:25952256,407923,9908 +h1,9094:6630773,35678175:0,0,0 +g1,9094:7626635,35678175 +g1,9094:8290543,35678175 +g1,9094:8622497,35678175 +g1,9094:8954451,35678175 +g1,9094:9618359,35678175 +g1,9094:13269852,35678175 +g1,9094:13601806,35678175 +g1,9094:13933760,35678175 +g1,9094:14265714,35678175 +g1,9094:14597668,35678175 +g1,9094:16257438,35678175 +g1,9094:16589392,35678175 +h1,9094:17917208,35678175:0,0,0 +k1,9094:32583029,35678175:14665821 +g1,9094:32583029,35678175 +) +(1,9094:6630773,36363030:25952256,407923,9908 +h1,9094:6630773,36363030:0,0,0 +g1,9094:7626635,36363030 +g1,9094:8290543,36363030 +g1,9094:8622497,36363030 +g1,9094:8954451,36363030 +g1,9094:9618359,36363030 +g1,9094:13269852,36363030 +g1,9094:13601806,36363030 +g1,9094:13933760,36363030 +g1,9094:14265714,36363030 +g1,9094:14597668,36363030 +g1,9094:16257438,36363030 +g1,9094:16589392,36363030 +h1,9094:17917208,36363030:0,0,0 +k1,9094:32583029,36363030:14665821 +g1,9094:32583029,36363030 +) +(1,9094:6630773,37047885:25952256,407923,9908 +h1,9094:6630773,37047885:0,0,0 +g1,9094:7626635,37047885 +g1,9094:8290543,37047885 +g1,9094:8622497,37047885 +g1,9094:8954451,37047885 +g1,9094:9618359,37047885 +g1,9094:9950313,37047885 +g1,9094:13269852,37047885 +g1,9094:13601806,37047885 +g1,9094:13933760,37047885 +g1,9094:14265714,37047885 +g1,9094:14597668,37047885 +g1,9094:16257438,37047885 +g1,9094:16589392,37047885 +h1,9094:17917208,37047885:0,0,0 +k1,9094:32583029,37047885:14665821 +g1,9094:32583029,37047885 +) +(1,9094:6630773,37732740:25952256,407923,9908 +h1,9094:6630773,37732740:0,0,0 +g1,9094:7626635,37732740 +g1,9094:8622497,37732740 +g1,9094:9618359,37732740 +g1,9094:9950313,37732740 +g1,9094:13269852,37732740 +g1,9094:13601806,37732740 +g1,9094:13933760,37732740 +g1,9094:14265714,37732740 +g1,9094:14597668,37732740 +g1,9094:16257438,37732740 +h1,9094:17917208,37732740:0,0,0 +k1,9094:32583029,37732740:14665821 +g1,9094:32583029,37732740 +) +] +) +g1,9095:32583029,37742648 +g1,9095:6630773,37742648 +g1,9095:6630773,37742648 +g1,9095:32583029,37742648 +g1,9095:32583029,37742648 +) +h1,9095:6630773,37939256:0,0,0 +(1,9099:6630773,38804336:25952256,513147,11795 +h1,9098:6630773,38804336:983040,0,0 +k1,9098:9961010,38804336:242181 +k1,9098:11307472,38804336:242180 +k1,9098:12297419,38804336:242181 +k1,9098:13825416,38804336:242181 +k1,9098:15580822,38804336:242180 +k1,9098:16474431,38804336:242181 +k1,9098:18537202,38804336:242181 +k1,9098:21621024,38804336:242181 +k1,9098:22546089,38804336:242180 +k1,9098:25501461,38804336:242181 +k1,9098:27311263,38804336:242181 +k1,9098:28942806,38804336:242180 +k1,9098:31391584,38804336:242181 +k1,9098:32583029,38804336:0 +) +(1,9099:6630773,39669416:25952256,473825,7863 +k1,9099:32583030,39669416:23045080 +g1,9099:32583030,39669416 +) +v1,9101:6630773,40354271:0,393216,0 +(1,9119:6630773,45510161:25952256,5549106,196608 +g1,9119:6630773,45510161 +g1,9119:6630773,45510161 +g1,9119:6434165,45510161 +(1,9119:6434165,45510161:0,5549106,196608 +r1,9119:32779637,45510161:26345472,5745714,196608 +k1,9119:6434165,45510161:-26345472 +) +(1,9119:6434165,45510161:26345472,5549106,196608 +[1,9119:6630773,45510161:25952256,5352498,0 +(1,9103:6630773,40588708:25952256,431045,106246 +(1,9102:6630773,40588708:0,0,0 +g1,9102:6630773,40588708 +g1,9102:6630773,40588708 +g1,9102:6303093,40588708 +(1,9102:6303093,40588708:0,0,0 +) +g1,9102:6630773,40588708 +) +k1,9103:6630773,40588708:0 +g1,9103:10946174,40588708 +g1,9103:11610082,40588708 +g1,9103:13601806,40588708 +g1,9103:14265714,40588708 +g1,9103:14929622,40588708 +g1,9103:18581116,40588708 +k1,9103:18581116,40588708:0 +h1,9103:19245024,40588708:0,0,0 +k1,9103:32583029,40588708:13338005 +g1,9103:32583029,40588708 +) +(1,9104:6630773,41273563:25952256,424439,86428 +h1,9104:6630773,41273563:0,0,0 +g1,9104:6962727,41273563 +g1,9104:7294681,41273563 +g1,9104:11278129,41273563 +g1,9104:11942037,41273563 +k1,9104:11942037,41273563:0 +h1,9104:12605945,41273563:0,0,0 +k1,9104:32583029,41273563:19977084 +g1,9104:32583029,41273563 +) +(1,9105:6630773,41958418:25952256,424439,79822 +h1,9105:6630773,41958418:0,0,0 +g1,9105:6962727,41958418 +g1,9105:7294681,41958418 +g1,9105:7626635,41958418 +g1,9105:7958589,41958418 +g1,9105:8290543,41958418 +g1,9105:8622497,41958418 +g1,9105:8954451,41958418 +g1,9105:9286405,41958418 +g1,9105:9618359,41958418 +h1,9105:9950313,41958418:0,0,0 +k1,9105:32583029,41958418:22632716 +g1,9105:32583029,41958418 +) +(1,9106:6630773,42643273:25952256,398014,0 +h1,9106:6630773,42643273:0,0,0 +g1,9106:6962727,42643273 +g1,9106:7294681,42643273 +g1,9106:7626635,42643273 +g1,9106:7958589,42643273 +g1,9106:8290543,42643273 +g1,9106:8622497,42643273 +g1,9106:8954451,42643273 +g1,9106:9286405,42643273 +g1,9106:9618359,42643273 +g1,9106:9950313,42643273 +g1,9106:10282267,42643273 +g1,9106:11278129,42643273 +g1,9106:12273991,42643273 +h1,9106:13269853,42643273:0,0,0 +k1,9106:32583029,42643273:19313176 +g1,9106:32583029,42643273 +) +(1,9107:6630773,43328128:25952256,424439,112852 +h1,9107:6630773,43328128:0,0,0 +g1,9107:6962727,43328128 +g1,9107:7294681,43328128 +g1,9107:7626635,43328128 +g1,9107:7958589,43328128 +g1,9107:8290543,43328128 +g1,9107:8622497,43328128 +g1,9107:8954451,43328128 +g1,9107:9286405,43328128 +g1,9107:9618359,43328128 +g1,9107:9950313,43328128 +g1,9107:10282267,43328128 +g1,9107:13269852,43328128 +g1,9107:14265714,43328128 +g1,9107:15593530,43328128 +g1,9107:16257438,43328128 +h1,9107:17585254,43328128:0,0,0 +k1,9107:32583029,43328128:14997775 +g1,9107:32583029,43328128 +) +(1,9108:6630773,44012983:25952256,424439,79822 +h1,9108:6630773,44012983:0,0,0 +g1,9108:6962727,44012983 +g1,9108:7294681,44012983 +g1,9108:7626635,44012983 +g1,9108:7958589,44012983 +g1,9108:8290543,44012983 +g1,9108:8622497,44012983 +g1,9108:8954451,44012983 +g1,9108:9286405,44012983 +g1,9108:9618359,44012983 +g1,9108:10614221,44012983 +k1,9108:10614221,44012983:0 +h1,9108:11278129,44012983:0,0,0 +k1,9108:32583029,44012983:21304900 +g1,9108:32583029,44012983 +) +(1,9109:6630773,44697838:25952256,424439,112852 +h1,9109:6630773,44697838:0,0,0 +g1,9109:6962727,44697838 +g1,9109:7294681,44697838 +g1,9109:10282267,44697838 +g1,9109:10946175,44697838 +g1,9109:11942037,44697838 +g1,9109:15261576,44697838 +g1,9109:17585254,44697838 +g1,9109:18249162,44697838 +k1,9109:18249162,44697838:0 +h1,9109:19245024,44697838:0,0,0 +k1,9109:32583029,44697838:13338005 +g1,9109:32583029,44697838 +) +(1,9118:6630773,45397309:25952256,424439,112852 +(1,9111:6630773,45397309:0,0,0 +g1,9111:6630773,45397309 +g1,9111:6630773,45397309 +g1,9111:6303093,45397309 +(1,9111:6303093,45397309:0,0,0 +) +g1,9111:6630773,45397309 +) +g1,9118:7626635,45397309 +g1,9118:7958589,45397309 +g1,9118:8290543,45397309 +g1,9118:8622497,45397309 +g1,9118:8954451,45397309 +g1,9118:9286405,45397309 +g1,9118:9618359,45397309 +g1,9118:9950313,45397309 +g1,9118:10282267,45397309 +g1,9118:10614221,45397309 +g1,9118:10946175,45397309 +g1,9118:11278129,45397309 +g1,9118:11610083,45397309 +g1,9118:11942037,45397309 +g1,9118:12605945,45397309 +g1,9118:15593530,45397309 +g1,9118:15925484,45397309 +g1,9118:16257438,45397309 +g1,9118:16589392,45397309 +h1,9118:17253300,45397309:0,0,0 +k1,9118:32583029,45397309:15329729 +g1,9118:32583029,45397309 +) +] +) +g1,9119:32583029,45510161 +g1,9119:6630773,45510161 +g1,9119:6630773,45510161 +g1,9119:32583029,45510161 +g1,9119:32583029,45510161 +) +] +(1,9119:32583029,45706769:0,0,0 +g1,9119:32583029,45706769 +) +) +] +(1,9119:6630773,47279633:25952256,0,0 +h1,9119:6630773,47279633:25952256,0,0 +) +] +(1,9119:4262630,4025873:0,0,0 +[1,9119:-473656,4025873:0,0,0 +(1,9119:-473656,-710413:0,0,0 +(1,9119:-473656,-710413:0,0,0 +g1,9119:-473656,-710413 +) +g1,9119:-473656,-710413 +) +] +) +] +!30047 +}145 +Input:1233:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!106 +{146 +[1,9192:4262630,47279633:28320399,43253760,0 +(1,9192:4262630,4025873:0,0,0 +[1,9192:-473656,4025873:0,0,0 +(1,9192:-473656,-710413:0,0,0 +(1,9192:-473656,-644877:0,0,0 +k1,9192:-473656,-644877:-65536 ) +(1,9192:-473656,4736287:0,0,0 +k1,9192:-473656,4736287:5209943 ) -k1,10047:3078556,2439708:-34777008 +g1,9192:-473656,-710413 ) ] -[1,10047:3078558,4812305:0,0,0 -(1,10047:3078558,49800853:0,16384,2228224 -k1,10047:1358238,49800853:-1720320 -(1,8393:1358238,49800853:1720320,16384,2228224 -(1,8393:1358238,49800853:1179648,16384,0 -r1,10047:2537886,49800853:1179648,16384,0 ) -g1,8393:3062174,49800853 -(1,8393:3062174,52029077:16384,1703936,0 -[1,8393:3062174,52029077:25952256,1703936,0 -(1,8393:3062174,51504789:25952256,1179648,0 -(1,8393:3062174,51504789:16384,1179648,0 -r1,10047:3078558,51504789:16384,1179648,0 +[1,9192:6630773,47279633:25952256,43253760,0 +[1,9192:6630773,4812305:25952256,786432,0 +(1,9192:6630773,4812305:25952256,485622,126483 +(1,9192:6630773,4812305:25952256,485622,126483 +g1,9192:3078558,4812305 +[1,9192:3078558,4812305:0,0,0 +(1,9192:3078558,2439708:0,1703936,0 +k1,9192:1358238,2439708:-1720320 +(1,8606:1358238,2439708:1720320,1703936,0 +(1,8606:1358238,2439708:1179648,16384,0 +r1,9192:2537886,2439708:1179648,16384,0 +) +g1,8606:3062174,2439708 +(1,8606:3062174,2439708:16384,1703936,0 +[1,8606:3062174,2439708:25952256,1703936,0 +(1,8606:3062174,1915420:25952256,1179648,0 +(1,8606:3062174,1915420:16384,1179648,0 +r1,9192:3078558,1915420:16384,1179648,0 ) -k1,8393:29014430,51504789:25935872 -g1,8393:29014430,51504789 +k1,8606:29014430,1915420:25935872 +g1,8606:29014430,1915420 ) ] ) ) ) ] -[1,10047:3078558,4812305:0,0,0 -(1,10047:3078558,49800853:0,16384,2228224 -g1,10047:29030814,49800853 -g1,10047:36135244,49800853 -(1,8393:36135244,49800853:1720320,16384,2228224 -(1,8393:36135244,52029077:16384,1703936,0 -[1,8393:36135244,52029077:25952256,1703936,0 -(1,8393:36135244,51504789:25952256,1179648,0 -(1,8393:36135244,51504789:16384,1179648,0 -r1,10047:36151628,51504789:16384,1179648,0 +[1,9192:3078558,4812305:0,0,0 +(1,9192:3078558,2439708:0,1703936,0 +g1,9192:29030814,2439708 +g1,9192:36135244,2439708 +(1,8606:36135244,2439708:1720320,1703936,0 +(1,8606:36135244,2439708:16384,1703936,0 +[1,8606:36135244,2439708:25952256,1703936,0 +(1,8606:36135244,1915420:25952256,1179648,0 +(1,8606:36135244,1915420:16384,1179648,0 +r1,9192:36151628,1915420:16384,1179648,0 ) -k1,8393:62087500,51504789:25935872 -g1,8393:62087500,51504789 +k1,8606:62087500,1915420:25935872 +g1,8606:62087500,1915420 ) ] ) -g1,8393:36675916,49800853 -(1,8393:36675916,49800853:1179648,16384,0 -r1,10047:37855564,49800853:1179648,16384,0 +g1,8606:36675916,2439708 +(1,8606:36675916,2439708:1179648,16384,0 +r1,9192:37855564,2439708:1179648,16384,0 ) ) -k1,10047:3078556,49800853:-34777008 +k1,9192:3078556,2439708:-34777008 ) -] -g1,10047:6630773,4812305 -g1,10047:6630773,4812305 -g1,10047:9524187,4812305 -k1,10047:31387651,4812305:21863464 -) -) -] -[1,10047:6630773,45706769:25952256,40108032,0 -(1,10047:6630773,45706769:25952256,40108032,0 -(1,10047:6630773,45706769:0,0,0 -g1,10047:6630773,45706769 -) -[1,10047:6630773,45706769:25952256,40108032,0 -v1,10038:6630773,6254097:0,393216,0 -(1,10038:6630773,44212529:25952256,38351648,0 -g1,10038:6630773,44212529 -g1,10038:6303093,44212529 -r1,10047:6401397,44212529:98304,38351648,0 -g1,10038:6600626,44212529 -g1,10038:6797234,44212529 -[1,10038:6797234,44212529:25785795,38351648,0 -(1,9952:6797234,6366164:25785795,505283,102891 -k1,9951:7786216,6366164:222866 -k1,9951:10483721,6366164:222866 -k1,9951:12194910,6366164:222866 -k1,9951:13286128,6366164:222866 -k1,9951:14500554,6366164:222866 -k1,9951:17934684,6366164:222866 -k1,9951:18773588,6366164:222866 -k1,9951:20015540,6366164:222867 -k1,9951:23314011,6366164:222866 -k1,9951:25135955,6366164:222866 -k1,9951:26550266,6366164:222866 -k1,9951:27641484,6366164:222866 -k1,9951:29477191,6366164:222866 -k1,9951:30903298,6366164:222866 -k1,9951:31812326,6366164:222866 -k1,9951:32583029,6366164:0 -) -(1,9952:6797234,7207652:25785795,473825,7863 -k1,9952:32583028,7207652:23051632 -g1,9952:32583028,7207652 -) -v1,9954:6797234,8398118:0,393216,0 -(1,9958:6797234,8713214:25785795,708312,196608 -g1,9958:6797234,8713214 -g1,9958:6797234,8713214 -g1,9958:6600626,8713214 -(1,9958:6600626,8713214:0,708312,196608 -r1,10047:32779637,8713214:26179011,904920,196608 -k1,9958:6600625,8713214:-26179012 -) -(1,9958:6600626,8713214:26179011,708312,196608 -[1,9958:6797234,8713214:25785795,511704,0 -(1,9956:6797234,8605736:25785795,404226,107478 -(1,9955:6797234,8605736:0,0,0 -g1,9955:6797234,8605736 -g1,9955:6797234,8605736 -g1,9955:6469554,8605736 -(1,9955:6469554,8605736:0,0,0 -) -g1,9955:6797234,8605736 -) -g1,9956:7429526,8605736 -g1,9956:8377964,8605736 -g1,9956:12171713,8605736 -g1,9956:12804005,8605736 -g1,9956:13436297,8605736 -g1,9956:14700880,8605736 -k1,9956:14700880,8605736:23593 -h1,9956:16621347,8605736:0,0,0 -k1,9956:32583029,8605736:15961682 -g1,9956:32583029,8605736 -) -] -) -g1,9958:32583029,8713214 -g1,9958:6797234,8713214 -g1,9958:6797234,8713214 -g1,9958:32583029,8713214 -g1,9958:32583029,8713214 -) -h1,9958:6797234,8909822:0,0,0 -v1,9962:6797234,10624576:0,393216,0 -(1,9976:6797234,17500264:25785795,7268904,196608 -g1,9976:6797234,17500264 -g1,9976:6797234,17500264 -g1,9976:6600626,17500264 -(1,9976:6600626,17500264:0,7268904,196608 -r1,10047:32779637,17500264:26179011,7465512,196608 -k1,9976:6600625,17500264:-26179012 -) -(1,9976:6600626,17500264:26179011,7268904,196608 -[1,9976:6797234,17500264:25785795,7072296,0 -(1,9964:6797234,10832194:25785795,404226,101187 -(1,9963:6797234,10832194:0,0,0 -g1,9963:6797234,10832194 -g1,9963:6797234,10832194 -g1,9963:6469554,10832194 -(1,9963:6469554,10832194:0,0,0 -) -g1,9963:6797234,10832194 -) -k1,9964:6797234,10832194:0 -h1,9964:10590982,10832194:0,0,0 -k1,9964:32583030,10832194:21992048 -g1,9964:32583030,10832194 -) -(1,9965:6797234,11498372:25785795,404226,76021 -h1,9965:6797234,11498372:0,0,0 -h1,9965:7113380,11498372:0,0,0 -k1,9965:32583028,11498372:25469648 -g1,9965:32583028,11498372 -) -(1,9966:6797234,12164550:25785795,404226,101187 -h1,9966:6797234,12164550:0,0,0 -g1,9966:7429526,12164550 -g1,9966:8377964,12164550 -g1,9966:11539421,12164550 -g1,9966:12171713,12164550 -g1,9966:13120150,12164550 -g1,9966:14384733,12164550 -g1,9966:18494627,12164550 -k1,9966:18494627,12164550:41419 -h1,9966:20432920,12164550:0,0,0 -k1,9966:32583029,12164550:12150109 -g1,9966:32583029,12164550 -) -(1,9967:6797234,12830728:25785795,404226,0 -h1,9967:6797234,12830728:0,0,0 -g1,9967:7429526,12830728 -g1,9967:8377964,12830728 -h1,9967:8694110,12830728:0,0,0 -k1,9967:32583030,12830728:23888920 -g1,9967:32583030,12830728 -) -(1,9968:6797234,13496906:25785795,404226,107478 -h1,9968:6797234,13496906:0,0,0 -g1,9968:8694108,13496906 -g1,9968:9642545,13496906 -g1,9968:10274837,13496906 -g1,9968:13752440,13496906 -h1,9968:14068586,13496906:0,0,0 -k1,9968:32583030,13496906:18514444 -g1,9968:32583030,13496906 -) -(1,9969:6797234,14163084:25785795,404226,76021 -h1,9969:6797234,14163084:0,0,0 -g1,9969:7113380,14163084 -g1,9969:7429526,14163084 -g1,9969:9010255,14163084 -g1,9969:9958693,14163084 -g1,9969:12171714,14163084 -g1,9969:12804006,14163084 -h1,9969:14068589,14163084:0,0,0 -k1,9969:32583029,14163084:18514440 -g1,9969:32583029,14163084 -) -(1,9970:6797234,14829262:25785795,404226,0 -h1,9970:6797234,14829262:0,0,0 -g1,9970:7113380,14829262 -g1,9970:7429526,14829262 -g1,9970:8061818,14829262 -g1,9970:9010256,14829262 -g1,9970:9642548,14829262 -g1,9970:10274840,14829262 -h1,9970:10590986,14829262:0,0,0 -k1,9970:32583030,14829262:21992044 -g1,9970:32583030,14829262 -) -(1,9971:6797234,15495440:25785795,404226,76021 -h1,9971:6797234,15495440:0,0,0 -h1,9971:7113380,15495440:0,0,0 -k1,9971:32583028,15495440:25469648 -g1,9971:32583028,15495440 -) -(1,9972:6797234,16161618:25785795,404226,76021 -h1,9972:6797234,16161618:0,0,0 -h1,9972:7113380,16161618:0,0,0 -k1,9972:32583028,16161618:25469648 -g1,9972:32583028,16161618 -) -(1,9973:6797234,16827796:25785795,404226,76021 -h1,9973:6797234,16827796:0,0,0 -h1,9973:7113380,16827796:0,0,0 -k1,9973:32583028,16827796:25469648 -g1,9973:32583028,16827796 -) -(1,9974:6797234,17493974:25785795,404226,6290 -h1,9974:6797234,17493974:0,0,0 -h1,9974:7113380,17493974:0,0,0 -k1,9974:32583028,17493974:25469648 -g1,9974:32583028,17493974 -) -] -) -g1,9976:32583029,17500264 -g1,9976:6797234,17500264 -g1,9976:6797234,17500264 -g1,9976:32583029,17500264 -g1,9976:32583029,17500264 -) -h1,9976:6797234,17696872:0,0,0 -v1,9980:6797234,19411626:0,393216,0 -(1,9990:6797234,23622602:25785795,4604192,196608 -g1,9990:6797234,23622602 -g1,9990:6797234,23622602 -g1,9990:6600626,23622602 -(1,9990:6600626,23622602:0,4604192,196608 -r1,10047:32779637,23622602:26179011,4800800,196608 -k1,9990:6600625,23622602:-26179012 -) -(1,9990:6600626,23622602:26179011,4604192,196608 -[1,9990:6797234,23622602:25785795,4407584,0 -(1,9982:6797234,19619244:25785795,404226,107478 -(1,9981:6797234,19619244:0,0,0 -g1,9981:6797234,19619244 -g1,9981:6797234,19619244 -g1,9981:6469554,19619244 -(1,9981:6469554,19619244:0,0,0 -) -g1,9981:6797234,19619244 -) -g1,9982:7429526,19619244 -g1,9982:8377964,19619244 -g1,9982:15017025,19619244 -g1,9982:15649317,19619244 -g1,9982:19759211,19619244 -k1,9982:19759211,19619244:41419 -h1,9982:21697504,19619244:0,0,0 -k1,9982:32583029,19619244:10885525 -g1,9982:32583029,19619244 -) -(1,9983:6797234,20285422:25785795,404226,0 -h1,9983:6797234,20285422:0,0,0 -g1,9983:7429526,20285422 -g1,9983:8377964,20285422 -h1,9983:8694110,20285422:0,0,0 -k1,9983:32583030,20285422:23888920 -g1,9983:32583030,20285422 -) -(1,9984:6797234,20951600:25785795,404226,107478 -h1,9984:6797234,20951600:0,0,0 -g1,9984:8694108,20951600 -g1,9984:9642545,20951600 -g1,9984:10274837,20951600 -g1,9984:13752440,20951600 -h1,9984:14068586,20951600:0,0,0 -k1,9984:32583030,20951600:18514444 -g1,9984:32583030,20951600 -) -(1,9985:6797234,21617778:25785795,404226,76021 -h1,9985:6797234,21617778:0,0,0 -g1,9985:7113380,21617778 -g1,9985:7429526,21617778 -g1,9985:9010255,21617778 -g1,9985:9958693,21617778 -g1,9985:12171714,21617778 -g1,9985:12804006,21617778 -h1,9985:14068589,21617778:0,0,0 -k1,9985:32583029,21617778:18514440 -g1,9985:32583029,21617778 -) -(1,9986:6797234,22283956:25785795,404226,0 -h1,9986:6797234,22283956:0,0,0 -g1,9986:7113380,22283956 -g1,9986:7429526,22283956 -g1,9986:8061818,22283956 -g1,9986:9010256,22283956 -g1,9986:9642548,22283956 -g1,9986:10274840,22283956 -h1,9986:10590986,22283956:0,0,0 -k1,9986:32583030,22283956:21992044 -g1,9986:32583030,22283956 -) -(1,9987:6797234,22950134:25785795,404226,76021 -h1,9987:6797234,22950134:0,0,0 -h1,9987:7113380,22950134:0,0,0 -k1,9987:32583028,22950134:25469648 -g1,9987:32583028,22950134 -) -(1,9988:6797234,23616312:25785795,404226,6290 -h1,9988:6797234,23616312:0,0,0 -h1,9988:7113380,23616312:0,0,0 -k1,9988:32583028,23616312:25469648 -g1,9988:32583028,23616312 -) -] -) -g1,9990:32583029,23622602 -g1,9990:6797234,23622602 -g1,9990:6797234,23622602 -g1,9990:32583029,23622602 -g1,9990:32583029,23622602 -) -h1,9990:6797234,23819210:0,0,0 -v1,9994:6797234,25533964:0,393216,0 -(1,10002:6797234,28412584:25785795,3271836,196608 -g1,10002:6797234,28412584 -g1,10002:6797234,28412584 -g1,10002:6600626,28412584 -(1,10002:6600626,28412584:0,3271836,196608 -r1,10047:32779637,28412584:26179011,3468444,196608 -k1,10002:6600625,28412584:-26179012 -) -(1,10002:6600626,28412584:26179011,3271836,196608 -[1,10002:6797234,28412584:25785795,3075228,0 -(1,9996:6797234,25741582:25785795,404226,101187 -(1,9995:6797234,25741582:0,0,0 -g1,9995:6797234,25741582 -g1,9995:6797234,25741582 -g1,9995:6469554,25741582 -(1,9995:6469554,25741582:0,0,0 -) -g1,9995:6797234,25741582 -) -g1,9996:7429526,25741582 -g1,9996:8377964,25741582 -g1,9996:11539421,25741582 -g1,9996:12171713,25741582 -g1,9996:13120150,25741582 -g1,9996:14384733,25741582 -g1,9996:18494627,25741582 -k1,9996:18494627,25741582:41419 -h1,9996:20432920,25741582:0,0,0 -k1,9996:32583029,25741582:12150109 -g1,9996:32583029,25741582 -) -(1,9997:6797234,26407760:25785795,410518,107478 -h1,9997:6797234,26407760:0,0,0 -g1,9997:8694108,26407760 -g1,9997:9642545,26407760 -g1,9997:14384731,26407760 -g1,9997:15017023,26407760 -g1,9997:16281606,26407760 -h1,9997:16597752,26407760:0,0,0 -k1,9997:32583029,26407760:15985277 -g1,9997:32583029,26407760 -) -(1,9998:6797234,27073938:25785795,404226,76021 -h1,9998:6797234,27073938:0,0,0 -g1,9998:7113380,27073938 -g1,9998:7429526,27073938 -g1,9998:9010255,27073938 -g1,9998:9958693,27073938 -g1,9998:12171714,27073938 -g1,9998:12804006,27073938 -h1,9998:14068589,27073938:0,0,0 -k1,9998:32583029,27073938:18514440 -g1,9998:32583029,27073938 -) -(1,9999:6797234,27740116:25785795,404226,76021 -h1,9999:6797234,27740116:0,0,0 -h1,9999:7113380,27740116:0,0,0 -k1,9999:32583028,27740116:25469648 -g1,9999:32583028,27740116 -) -(1,10000:6797234,28406294:25785795,404226,6290 -h1,10000:6797234,28406294:0,0,0 -h1,10000:7113380,28406294:0,0,0 -k1,10000:32583028,28406294:25469648 -g1,10000:32583028,28406294 -) -] -) -g1,10002:32583029,28412584 -g1,10002:6797234,28412584 -g1,10002:6797234,28412584 -g1,10002:32583029,28412584 -g1,10002:32583029,28412584 -) -h1,10002:6797234,28609192:0,0,0 -v1,10006:6797234,30323946:0,393216,0 -(1,10014:6797234,33202566:25785795,3271836,196608 -g1,10014:6797234,33202566 -g1,10014:6797234,33202566 -g1,10014:6600626,33202566 -(1,10014:6600626,33202566:0,3271836,196608 -r1,10047:32779637,33202566:26179011,3468444,196608 -k1,10014:6600625,33202566:-26179012 -) -(1,10014:6600626,33202566:26179011,3271836,196608 -[1,10014:6797234,33202566:25785795,3075228,0 -(1,10008:6797234,30531564:25785795,404226,107478 -(1,10007:6797234,30531564:0,0,0 -g1,10007:6797234,30531564 -g1,10007:6797234,30531564 -g1,10007:6469554,30531564 -(1,10007:6469554,30531564:0,0,0 -) -g1,10007:6797234,30531564 -) -g1,10008:7429526,30531564 -g1,10008:8377964,30531564 -g1,10008:15017025,30531564 -g1,10008:15649317,30531564 -g1,10008:19759211,30531564 -k1,10008:19759211,30531564:41419 -h1,10008:21697504,30531564:0,0,0 -k1,10008:32583029,30531564:10885525 -g1,10008:32583029,30531564 -) -(1,10009:6797234,31197742:25785795,410518,107478 -h1,10009:6797234,31197742:0,0,0 -g1,10009:8694108,31197742 -g1,10009:9642545,31197742 -g1,10009:14384731,31197742 -g1,10009:15017023,31197742 -g1,10009:16281606,31197742 -h1,10009:16597752,31197742:0,0,0 -k1,10009:32583029,31197742:15985277 -g1,10009:32583029,31197742 -) -(1,10010:6797234,31863920:25785795,404226,76021 -h1,10010:6797234,31863920:0,0,0 -g1,10010:7113380,31863920 -g1,10010:7429526,31863920 -g1,10010:9010255,31863920 -g1,10010:9958693,31863920 -g1,10010:12171714,31863920 -g1,10010:12804006,31863920 -h1,10010:14068589,31863920:0,0,0 -k1,10010:32583029,31863920:18514440 -g1,10010:32583029,31863920 -) -(1,10011:6797234,32530098:25785795,404226,76021 -h1,10011:6797234,32530098:0,0,0 -h1,10011:7113380,32530098:0,0,0 -k1,10011:32583028,32530098:25469648 -g1,10011:32583028,32530098 -) -(1,10012:6797234,33196276:25785795,404226,6290 -h1,10012:6797234,33196276:0,0,0 -h1,10012:7113380,33196276:0,0,0 -k1,10012:32583028,33196276:25469648 -g1,10012:32583028,33196276 -) -] -) -g1,10014:32583029,33202566 -g1,10014:6797234,33202566 -g1,10014:6797234,33202566 -g1,10014:32583029,33202566 -g1,10014:32583029,33202566 -) -h1,10014:6797234,33399174:0,0,0 -v1,10018:6797234,35113928:0,393216,0 -(1,10024:6797234,36660192:25785795,1939480,196608 -g1,10024:6797234,36660192 -g1,10024:6797234,36660192 -g1,10024:6600626,36660192 -(1,10024:6600626,36660192:0,1939480,196608 -r1,10047:32779637,36660192:26179011,2136088,196608 -k1,10024:6600625,36660192:-26179012 -) -(1,10024:6600626,36660192:26179011,1939480,196608 -[1,10024:6797234,36660192:25785795,1742872,0 -(1,10020:6797234,35321546:25785795,404226,107478 -(1,10019:6797234,35321546:0,0,0 -g1,10019:6797234,35321546 -g1,10019:6797234,35321546 -g1,10019:6469554,35321546 -(1,10019:6469554,35321546:0,0,0 -) -g1,10019:6797234,35321546 -) -g1,10020:7429526,35321546 -g1,10020:10907129,35321546 -g1,10020:12804003,35321546 -g1,10020:16281606,35321546 -k1,10020:16281606,35321546:0 -h1,10020:19126917,35321546:0,0,0 -k1,10020:32583029,35321546:13456112 -g1,10020:32583029,35321546 -) -(1,10021:6797234,35987724:25785795,404226,107478 -h1,10021:6797234,35987724:0,0,0 -g1,10021:7429526,35987724 -g1,10021:8377964,35987724 -g1,10021:13120150,35987724 -g1,10021:13752442,35987724 -k1,10021:13752442,35987724:0 -h1,10021:18810774,35987724:0,0,0 -k1,10021:32583029,35987724:13772255 -g1,10021:32583029,35987724 -) -(1,10022:6797234,36653902:25785795,404226,6290 -h1,10022:6797234,36653902:0,0,0 -h1,10022:7113380,36653902:0,0,0 -k1,10022:32583028,36653902:25469648 -g1,10022:32583028,36653902 -) -] -) -g1,10024:32583029,36660192 -g1,10024:6797234,36660192 -g1,10024:6797234,36660192 -g1,10024:32583029,36660192 -g1,10024:32583029,36660192 -) -h1,10024:6797234,36856800:0,0,0 -v1,10028:6797234,38571554:0,393216,0 -(1,10034:6797234,40117818:25785795,1939480,196608 -g1,10034:6797234,40117818 -g1,10034:6797234,40117818 -g1,10034:6600626,40117818 -(1,10034:6600626,40117818:0,1939480,196608 -r1,10047:32779637,40117818:26179011,2136088,196608 -k1,10034:6600625,40117818:-26179012 -) -(1,10034:6600626,40117818:26179011,1939480,196608 -[1,10034:6797234,40117818:25785795,1742872,0 -(1,10030:6797234,38779172:25785795,404226,6290 -(1,10029:6797234,38779172:0,0,0 -g1,10029:6797234,38779172 -g1,10029:6797234,38779172 -g1,10029:6469554,38779172 -(1,10029:6469554,38779172:0,0,0 -) -g1,10029:6797234,38779172 -) -g1,10030:7429526,38779172 -g1,10030:8377963,38779172 -g1,10030:9958692,38779172 -k1,10030:9958692,38779172:23593 -h1,10030:11879159,38779172:0,0,0 -k1,10030:32583029,38779172:20703870 -g1,10030:32583029,38779172 -) -(1,10031:6797234,39445350:25785795,410518,76021 -h1,10031:6797234,39445350:0,0,0 -g1,10031:7429526,39445350 -g1,10031:8377964,39445350 -k1,10031:8377964,39445350:0 -h1,10031:10590984,39445350:0,0,0 -k1,10031:32583028,39445350:21992044 -g1,10031:32583028,39445350 -) -(1,10032:6797234,40111528:25785795,404226,6290 -h1,10032:6797234,40111528:0,0,0 -h1,10032:7113380,40111528:0,0,0 -k1,10032:32583028,40111528:25469648 -g1,10032:32583028,40111528 -) -] -) -g1,10034:32583029,40117818 -g1,10034:6797234,40117818 -g1,10034:6797234,40117818 -g1,10034:32583029,40117818 -g1,10034:32583029,40117818 -) -h1,10034:6797234,40314426:0,0,0 -(1,10038:6797234,41680202:25785795,513147,115847 -h1,10037:6797234,41680202:983040,0,0 -k1,10037:11116018,41680202:236546 -k1,10037:12777973,41680202:236547 -k1,10037:14118801,41680202:236546 -k1,10037:15103113,41680202:236546 -k1,10037:18131494,41680202:236547 -k1,10037:19761991,41680202:236546 -(1,10037:19761991,41680202:0,452978,115847 -r1,10047:24340799,41680202:4578808,568825,115847 -k1,10037:19761991,41680202:-4578808 -) -(1,10037:19761991,41680202:4578808,452978,115847 -k1,10037:19761991,41680202:3277 -h1,10037:24337522,41680202:0,411205,112570 -) -k1,10037:24751015,41680202:236546 -k1,10037:26029584,41680202:236547 -k1,10037:26621990,41680202:236546 -k1,10037:28836413,41680202:236546 -k1,10037:29732252,41680202:236547 -k1,10037:31125508,41680202:236546 -k1,10038:32583029,41680202:0 -) -(1,10038:6797234,42521690:25785795,513147,134348 -k1,10037:8506086,42521690:231670 -k1,10037:10979742,42521690:231669 -k1,10037:14201164,42521690:231670 -k1,10037:18153968,42521690:231670 -k1,10037:19404722,42521690:231669 -k1,10037:22398735,42521690:231670 -k1,10037:25622124,42521690:231670 -k1,10037:26469831,42521690:231669 -k1,10037:27904742,42521690:231670 -k1,10037:29362591,42521690:231670 -k1,10037:30754247,42521690:231669 -k1,10037:31601955,42521690:231670 -k1,10037:32583029,42521690:0 -) -(1,10038:6797234,43363178:25785795,513147,126483 -k1,10037:9555808,43363178:195461 -k1,10037:12827529,43363178:195461 -k1,10037:14042075,43363178:195461 -k1,10037:16379908,43363178:195461 -k1,10037:19650974,43363178:195461 -k1,10037:21271843,43363178:195461 -k1,10037:22674477,43363178:195461 -k1,10037:24520135,43363178:195461 -k1,10037:26158043,43363178:195461 -k1,10037:27150422,43363178:195461 -k1,10037:29101593,43363178:195461 -k1,10037:31140582,43363178:195461 -k1,10037:32583029,43363178:0 -) -(1,10038:6797234,44204666:25785795,505283,7863 -g1,10037:8015548,44204666 -g1,10037:10600288,44204666 -k1,10038:32583029,44204666:20652360 -g1,10038:32583029,44204666 -) -] -g1,10038:32583029,44212529 -) -h1,10038:6630773,44212529:0,0,0 -] -(1,10047:32583029,45706769:0,0,0 -g1,10047:32583029,45706769 -) -) -] -(1,10047:6630773,47279633:25952256,0,0 -h1,10047:6630773,47279633:25952256,0,0 -) -] -(1,10047:4262630,4025873:0,0,0 -[1,10047:-473656,4025873:0,0,0 -(1,10047:-473656,-710413:0,0,0 -(1,10047:-473656,-710413:0,0,0 -g1,10047:-473656,-710413 -) -g1,10047:-473656,-710413 -) -] -) -] -!20189 -}168 -Input:1468:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1469:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1470:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1471:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1472:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1473:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1474:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1475:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1476:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1477:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1478:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1479:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1480:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1481:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1482:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1483:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1484:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1485:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1486:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1487:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1488:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1489:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!2080 -{169 -[1,10141:4262630,47279633:28320399,43253760,0 -(1,10141:4262630,4025873:0,0,0 -[1,10141:-473656,4025873:0,0,0 -(1,10141:-473656,-710413:0,0,0 -(1,10141:-473656,-644877:0,0,0 -k1,10141:-473656,-644877:-65536 +] +[1,9192:3078558,4812305:0,0,0 +(1,9192:3078558,49800853:0,16384,2228224 +k1,9192:1358238,49800853:-1720320 +(1,8606:1358238,49800853:1720320,16384,2228224 +(1,8606:1358238,49800853:1179648,16384,0 +r1,9192:2537886,49800853:1179648,16384,0 +) +g1,8606:3062174,49800853 +(1,8606:3062174,52029077:16384,1703936,0 +[1,8606:3062174,52029077:25952256,1703936,0 +(1,8606:3062174,51504789:25952256,1179648,0 +(1,8606:3062174,51504789:16384,1179648,0 +r1,9192:3078558,51504789:16384,1179648,0 +) +k1,8606:29014430,51504789:25935872 +g1,8606:29014430,51504789 +) +] +) +) +) +] +[1,9192:3078558,4812305:0,0,0 +(1,9192:3078558,49800853:0,16384,2228224 +g1,9192:29030814,49800853 +g1,9192:36135244,49800853 +(1,8606:36135244,49800853:1720320,16384,2228224 +(1,8606:36135244,52029077:16384,1703936,0 +[1,8606:36135244,52029077:25952256,1703936,0 +(1,8606:36135244,51504789:25952256,1179648,0 +(1,8606:36135244,51504789:16384,1179648,0 +r1,9192:36151628,51504789:16384,1179648,0 +) +k1,8606:62087500,51504789:25935872 +g1,8606:62087500,51504789 +) +] +) +g1,8606:36675916,49800853 +(1,8606:36675916,49800853:1179648,16384,0 +r1,9192:37855564,49800853:1179648,16384,0 +) +) +k1,9192:3078556,49800853:-34777008 +) +] +g1,9192:6630773,4812305 +g1,9192:6630773,4812305 +g1,9192:8364200,4812305 +g1,9192:10177581,4812305 +k1,9192:31387653,4812305:21210072 +) +) +] +[1,9192:6630773,45706769:25952256,40108032,0 +(1,9192:6630773,45706769:25952256,40108032,0 +(1,9192:6630773,45706769:0,0,0 +g1,9192:6630773,45706769 +) +[1,9192:6630773,45706769:25952256,40108032,0 +v1,9119:6630773,6254097:0,393216,0 +(1,9119:6630773,9214740:25952256,3353859,196608 +g1,9119:6630773,9214740 +g1,9119:6630773,9214740 +g1,9119:6434165,9214740 +(1,9119:6434165,9214740:0,3353859,196608 +r1,9192:32779637,9214740:26345472,3550467,196608 +k1,9119:6434165,9214740:-26345472 +) +(1,9119:6434165,9214740:26345472,3353859,196608 +[1,9119:6630773,9214740:25952256,3157251,0 +(1,9118:6630773,6465412:25952256,407923,9908 +h1,9118:6630773,6465412:0,0,0 +g1,9118:7626635,6465412 +g1,9118:8290543,6465412 +g1,9118:8622497,6465412 +g1,9118:8954451,6465412 +g1,9118:12605944,6465412 +g1,9118:12937898,6465412 +g1,9118:13269852,6465412 +g1,9118:13601806,6465412 +g1,9118:13933760,6465412 +g1,9118:15593530,6465412 +g1,9118:15925484,6465412 +h1,9118:17253300,6465412:0,0,0 +k1,9118:32583029,6465412:15329729 +g1,9118:32583029,6465412 +) +(1,9118:6630773,7150267:25952256,407923,9908 +h1,9118:6630773,7150267:0,0,0 +g1,9118:7626635,7150267 +g1,9118:8290543,7150267 +g1,9118:8622497,7150267 +g1,9118:8954451,7150267 +g1,9118:12605944,7150267 +g1,9118:12937898,7150267 +g1,9118:13269852,7150267 +g1,9118:13601806,7150267 +g1,9118:13933760,7150267 +g1,9118:15593530,7150267 +g1,9118:15925484,7150267 +h1,9118:17253300,7150267:0,0,0 +k1,9118:32583029,7150267:15329729 +g1,9118:32583029,7150267 +) +(1,9118:6630773,7835122:25952256,407923,9908 +h1,9118:6630773,7835122:0,0,0 +g1,9118:7626635,7835122 +g1,9118:8290543,7835122 +g1,9118:8622497,7835122 +g1,9118:12605944,7835122 +g1,9118:12937898,7835122 +g1,9118:13269852,7835122 +g1,9118:13601806,7835122 +g1,9118:13933760,7835122 +g1,9118:15593530,7835122 +g1,9118:15925484,7835122 +h1,9118:17253300,7835122:0,0,0 +k1,9118:32583029,7835122:15329729 +g1,9118:32583029,7835122 +) +(1,9118:6630773,8519977:25952256,407923,9908 +h1,9118:6630773,8519977:0,0,0 +g1,9118:7626635,8519977 +g1,9118:8290543,8519977 +g1,9118:8622497,8519977 +g1,9118:12605944,8519977 +g1,9118:12937898,8519977 +g1,9118:13269852,8519977 +g1,9118:13601806,8519977 +g1,9118:13933760,8519977 +g1,9118:15593530,8519977 +g1,9118:15925484,8519977 +h1,9118:17253300,8519977:0,0,0 +k1,9118:32583029,8519977:15329729 +g1,9118:32583029,8519977 +) +(1,9118:6630773,9204832:25952256,407923,9908 +h1,9118:6630773,9204832:0,0,0 +g1,9118:7626635,9204832 +g1,9118:8622497,9204832 +g1,9118:12605944,9204832 +g1,9118:12937898,9204832 +g1,9118:13269852,9204832 +g1,9118:13601806,9204832 +g1,9118:13933760,9204832 +g1,9118:15593530,9204832 +h1,9118:17253300,9204832:0,0,0 +k1,9118:32583029,9204832:15329729 +g1,9118:32583029,9204832 +) +] +) +g1,9119:32583029,9214740 +g1,9119:6630773,9214740 +g1,9119:6630773,9214740 +g1,9119:32583029,9214740 +g1,9119:32583029,9214740 +) +h1,9119:6630773,9411348:0,0,0 +v1,9123:6630773,10096203:0,393216,0 +(1,9146:6630773,22114155:25952256,12411168,196608 +g1,9146:6630773,22114155 +g1,9146:6630773,22114155 +g1,9146:6434165,22114155 +(1,9146:6434165,22114155:0,12411168,196608 +r1,9192:32779637,22114155:26345472,12607776,196608 +k1,9146:6434165,22114155:-26345472 +) +(1,9146:6434165,22114155:26345472,12411168,196608 +[1,9146:6630773,22114155:25952256,12214560,0 +(1,9125:6630773,10330640:25952256,431045,106246 +(1,9124:6630773,10330640:0,0,0 +g1,9124:6630773,10330640 +g1,9124:6630773,10330640 +g1,9124:6303093,10330640 +(1,9124:6303093,10330640:0,0,0 +) +g1,9124:6630773,10330640 +) +k1,9125:6630773,10330640:0 +g1,9125:10946174,10330640 +g1,9125:11610082,10330640 +g1,9125:13601806,10330640 +g1,9125:14265714,10330640 +g1,9125:14929622,10330640 +g1,9125:18581116,10330640 +k1,9125:18581116,10330640:0 +h1,9125:19245024,10330640:0,0,0 +k1,9125:32583029,10330640:13338005 +g1,9125:32583029,10330640 +) +(1,9126:6630773,11015495:25952256,424439,86428 +h1,9126:6630773,11015495:0,0,0 +g1,9126:6962727,11015495 +g1,9126:7294681,11015495 +g1,9126:11278129,11015495 +g1,9126:11942037,11015495 +k1,9126:11942037,11015495:0 +h1,9126:12605945,11015495:0,0,0 +k1,9126:32583029,11015495:19977084 +g1,9126:32583029,11015495 +) +(1,9127:6630773,11700350:25952256,424439,79822 +h1,9127:6630773,11700350:0,0,0 +g1,9127:6962727,11700350 +g1,9127:7294681,11700350 +g1,9127:7626635,11700350 +g1,9127:7958589,11700350 +g1,9127:8290543,11700350 +g1,9127:8622497,11700350 +g1,9127:8954451,11700350 +g1,9127:9286405,11700350 +g1,9127:9618359,11700350 +h1,9127:9950313,11700350:0,0,0 +k1,9127:32583029,11700350:22632716 +g1,9127:32583029,11700350 +) +(1,9128:6630773,12385205:25952256,398014,0 +h1,9128:6630773,12385205:0,0,0 +g1,9128:6962727,12385205 +g1,9128:7294681,12385205 +g1,9128:7626635,12385205 +g1,9128:7958589,12385205 +g1,9128:8290543,12385205 +g1,9128:8622497,12385205 +g1,9128:8954451,12385205 +g1,9128:9286405,12385205 +g1,9128:9618359,12385205 +g1,9128:9950313,12385205 +g1,9128:10282267,12385205 +g1,9128:11278129,12385205 +g1,9128:12273991,12385205 +h1,9128:13269853,12385205:0,0,0 +k1,9128:32583029,12385205:19313176 +g1,9128:32583029,12385205 +) +(1,9129:6630773,13070060:25952256,424439,112852 +h1,9129:6630773,13070060:0,0,0 +g1,9129:6962727,13070060 +g1,9129:7294681,13070060 +g1,9129:7626635,13070060 +g1,9129:7958589,13070060 +g1,9129:8290543,13070060 +g1,9129:8622497,13070060 +g1,9129:8954451,13070060 +g1,9129:9286405,13070060 +g1,9129:9618359,13070060 +g1,9129:9950313,13070060 +g1,9129:10282267,13070060 +g1,9129:13269852,13070060 +g1,9129:14265714,13070060 +g1,9129:15593530,13070060 +g1,9129:16257438,13070060 +h1,9129:17585254,13070060:0,0,0 +k1,9129:32583029,13070060:14997775 +g1,9129:32583029,13070060 +) +(1,9130:6630773,13754915:25952256,424439,79822 +h1,9130:6630773,13754915:0,0,0 +g1,9130:6962727,13754915 +g1,9130:7294681,13754915 +g1,9130:7626635,13754915 +g1,9130:7958589,13754915 +g1,9130:8290543,13754915 +g1,9130:8622497,13754915 +g1,9130:8954451,13754915 +g1,9130:9286405,13754915 +g1,9130:9618359,13754915 +g1,9130:10614221,13754915 +k1,9130:10614221,13754915:0 +h1,9130:11278129,13754915:0,0,0 +k1,9130:32583029,13754915:21304900 +g1,9130:32583029,13754915 +) +(1,9131:6630773,14439770:25952256,424439,106246 +h1,9131:6630773,14439770:0,0,0 +g1,9131:6962727,14439770 +g1,9131:7294681,14439770 +g1,9131:10282267,14439770 +g1,9131:10946175,14439770 +g1,9131:11942037,14439770 +g1,9131:14265715,14439770 +g1,9131:14929623,14439770 +g1,9131:16589393,14439770 +h1,9131:17917209,14439770:0,0,0 +k1,9131:32583029,14439770:14665820 +g1,9131:32583029,14439770 +) +(1,9145:6630773,15255697:25952256,398014,106246 +(1,9133:6630773,15255697:0,0,0 +g1,9133:6630773,15255697 +g1,9133:6630773,15255697 +g1,9133:6303093,15255697 +(1,9133:6303093,15255697:0,0,0 +) +g1,9133:6630773,15255697 +) +g1,9145:7626635,15255697 +g1,9145:7958589,15255697 +g1,9145:8290543,15255697 +g1,9145:8622497,15255697 +g1,9145:8954451,15255697 +g1,9145:9286405,15255697 +g1,9145:9618359,15255697 +g1,9145:9950313,15255697 +g1,9145:10282267,15255697 +g1,9145:10614221,15255697 +g1,9145:10946175,15255697 +g1,9145:11278129,15255697 +g1,9145:11610083,15255697 +g1,9145:11942037,15255697 +g1,9145:12273991,15255697 +g1,9145:12605945,15255697 +g1,9145:13269853,15255697 +g1,9145:13601807,15255697 +g1,9145:13933761,15255697 +g1,9145:14265715,15255697 +h1,9145:14929623,15255697:0,0,0 +k1,9145:32583029,15255697:17653406 +g1,9145:32583029,15255697 +) +(1,9145:6630773,15940552:25952256,407923,9908 +h1,9145:6630773,15940552:0,0,0 +g1,9145:7626635,15940552 +g1,9145:8290543,15940552 +g1,9145:8622497,15940552 +g1,9145:13269852,15940552 +g1,9145:13601806,15940552 +g1,9145:13933760,15940552 +g1,9145:14265714,15940552 +g1,9145:14597668,15940552 +h1,9145:14929622,15940552:0,0,0 +k1,9145:32583030,15940552:17653408 +g1,9145:32583030,15940552 +) +(1,9145:6630773,16625407:25952256,407923,9908 +h1,9145:6630773,16625407:0,0,0 +g1,9145:7626635,16625407 +g1,9145:8290543,16625407 +g1,9145:8622497,16625407 +g1,9145:13269852,16625407 +g1,9145:13601806,16625407 +g1,9145:13933760,16625407 +g1,9145:14265714,16625407 +h1,9145:14929622,16625407:0,0,0 +k1,9145:32583030,16625407:17653408 +g1,9145:32583030,16625407 +) +(1,9145:6630773,17310262:25952256,407923,9908 +h1,9145:6630773,17310262:0,0,0 +g1,9145:7626635,17310262 +g1,9145:8290543,17310262 +g1,9145:8622497,17310262 +g1,9145:13269852,17310262 +g1,9145:13601806,17310262 +g1,9145:13933760,17310262 +g1,9145:14265714,17310262 +h1,9145:14929622,17310262:0,0,0 +k1,9145:32583030,17310262:17653408 +g1,9145:32583030,17310262 +) +(1,9145:6630773,17995117:25952256,407923,9908 +h1,9145:6630773,17995117:0,0,0 +g1,9145:7626635,17995117 +g1,9145:8290543,17995117 +g1,9145:8622497,17995117 +g1,9145:8954451,17995117 +g1,9145:13269852,17995117 +g1,9145:13601806,17995117 +g1,9145:13933760,17995117 +h1,9145:14929622,17995117:0,0,0 +k1,9145:32583030,17995117:17653408 +g1,9145:32583030,17995117 +) +(1,9145:6630773,18679972:25952256,407923,9908 +h1,9145:6630773,18679972:0,0,0 +g1,9145:7626635,18679972 +g1,9145:8290543,18679972 +g1,9145:8622497,18679972 +g1,9145:8954451,18679972 +g1,9145:13269852,18679972 +g1,9145:13601806,18679972 +g1,9145:13933760,18679972 +h1,9145:14929622,18679972:0,0,0 +k1,9145:32583030,18679972:17653408 +g1,9145:32583030,18679972 +) +(1,9145:6630773,19364827:25952256,407923,9908 +h1,9145:6630773,19364827:0,0,0 +g1,9145:7626635,19364827 +g1,9145:8290543,19364827 +g1,9145:8622497,19364827 +g1,9145:13269852,19364827 +g1,9145:13601806,19364827 +h1,9145:14929622,19364827:0,0,0 +k1,9145:32583030,19364827:17653408 +g1,9145:32583030,19364827 +) +(1,9145:6630773,20049682:25952256,407923,9908 +h1,9145:6630773,20049682:0,0,0 +g1,9145:7626635,20049682 +g1,9145:8290543,20049682 +g1,9145:8622497,20049682 +g1,9145:13269852,20049682 +g1,9145:13601806,20049682 +h1,9145:14929622,20049682:0,0,0 +k1,9145:32583030,20049682:17653408 +g1,9145:32583030,20049682 +) +(1,9145:6630773,20734537:25952256,407923,9908 +h1,9145:6630773,20734537:0,0,0 +g1,9145:7626635,20734537 +g1,9145:8290543,20734537 +g1,9145:8622497,20734537 +g1,9145:8954451,20734537 +g1,9145:13269852,20734537 +g1,9145:13601806,20734537 +h1,9145:14929622,20734537:0,0,0 +k1,9145:32583030,20734537:17653408 +g1,9145:32583030,20734537 +) +(1,9145:6630773,21419392:25952256,407923,9908 +h1,9145:6630773,21419392:0,0,0 +g1,9145:7626635,21419392 +g1,9145:8290543,21419392 +g1,9145:8622497,21419392 +g1,9145:8954451,21419392 +g1,9145:13269852,21419392 +g1,9145:13601806,21419392 +h1,9145:14929622,21419392:0,0,0 +k1,9145:32583030,21419392:17653408 +g1,9145:32583030,21419392 +) +(1,9145:6630773,22104247:25952256,407923,9908 +h1,9145:6630773,22104247:0,0,0 +g1,9145:7626635,22104247 +g1,9145:8622497,22104247 +g1,9145:8954451,22104247 +g1,9145:13269852,22104247 +h1,9145:14929622,22104247:0,0,0 +k1,9145:32583030,22104247:17653408 +g1,9145:32583030,22104247 +) +] +) +g1,9146:32583029,22114155 +g1,9146:6630773,22114155 +g1,9146:6630773,22114155 +g1,9146:32583029,22114155 +g1,9146:32583029,22114155 +) +h1,9146:6630773,22310763:0,0,0 +v1,9150:6630773,22995618:0,393216,0 +(1,9162:6630773,27480165:25952256,4877763,196608 +g1,9162:6630773,27480165 +g1,9162:6630773,27480165 +g1,9162:6434165,27480165 +(1,9162:6434165,27480165:0,4877763,196608 +r1,9192:32779637,27480165:26345472,5074371,196608 +k1,9162:6434165,27480165:-26345472 +) +(1,9162:6434165,27480165:26345472,4877763,196608 +[1,9162:6630773,27480165:25952256,4681155,0 +(1,9152:6630773,23230055:25952256,431045,112852 +(1,9151:6630773,23230055:0,0,0 +g1,9151:6630773,23230055 +g1,9151:6630773,23230055 +g1,9151:6303093,23230055 +(1,9151:6303093,23230055:0,0,0 +) +g1,9151:6630773,23230055 +) +k1,9152:6630773,23230055:0 +g1,9152:12273990,23230055 +g1,9152:12937898,23230055 +g1,9152:19245024,23230055 +g1,9152:21236748,23230055 +g1,9152:23892380,23230055 +g1,9152:25552150,23230055 +g1,9152:26216058,23230055 +k1,9152:26216058,23230055:0 +h1,9152:27543874,23230055:0,0,0 +k1,9152:32583029,23230055:5039155 +g1,9152:32583029,23230055 +) +(1,9153:6630773,23914910:25952256,424439,106246 +h1,9153:6630773,23914910:0,0,0 +g1,9153:6962727,23914910 +g1,9153:7294681,23914910 +g1,9153:7626635,23914910 +g1,9153:7958589,23914910 +g1,9153:8290543,23914910 +g1,9153:8622497,23914910 +g1,9153:8954451,23914910 +g1,9153:9286405,23914910 +g1,9153:9618359,23914910 +g1,9153:9950313,23914910 +g1,9153:10282267,23914910 +g1,9153:10946175,23914910 +g1,9153:11610083,23914910 +g1,9153:15261577,23914910 +k1,9153:15261577,23914910:0 +h1,9153:15925485,23914910:0,0,0 +k1,9153:32583029,23914910:16657544 +g1,9153:32583029,23914910 +) +(1,9154:6630773,24599765:25952256,424439,112852 +h1,9154:6630773,24599765:0,0,0 +g1,9154:6962727,24599765 +g1,9154:7294681,24599765 +g1,9154:10282267,24599765 +g1,9154:10946175,24599765 +g1,9154:11942037,24599765 +g1,9154:13933761,24599765 +g1,9154:15593531,24599765 +g1,9154:18249163,24599765 +g1,9154:20572841,24599765 +k1,9154:20572841,24599765:0 +h1,9154:21236749,24599765:0,0,0 +k1,9154:32583029,24599765:11346280 +g1,9154:32583029,24599765 +) +(1,9155:6630773,25284620:25952256,424439,112852 +h1,9155:6630773,25284620:0,0,0 +g1,9155:6962727,25284620 +g1,9155:7294681,25284620 +g1,9155:12273990,25284620 +g1,9155:12937898,25284620 +g1,9155:13933760,25284620 +g1,9155:14597668,25284620 +g1,9155:15261576,25284620 +g1,9155:17585254,25284620 +h1,9155:19245024,25284620:0,0,0 +k1,9155:32583029,25284620:13338005 +g1,9155:32583029,25284620 +) +(1,9161:6630773,26100547:25952256,398014,112852 +(1,9157:6630773,26100547:0,0,0 +g1,9157:6630773,26100547 +g1,9157:6630773,26100547 +g1,9157:6303093,26100547 +(1,9157:6303093,26100547:0,0,0 +) +g1,9157:6630773,26100547 +) +g1,9161:7626635,26100547 +g1,9161:7958589,26100547 +g1,9161:8290543,26100547 +g1,9161:10282267,26100547 +g1,9161:10614221,26100547 +g1,9161:10946175,26100547 +g1,9161:11278129,26100547 +g1,9161:11610083,26100547 +g1,9161:11942037,26100547 +g1,9161:12273991,26100547 +g1,9161:12605945,26100547 +g1,9161:12937899,26100547 +g1,9161:13269853,26100547 +h1,9161:13601807,26100547:0,0,0 +k1,9161:32583029,26100547:18981222 +g1,9161:32583029,26100547 +) +(1,9161:6630773,26785402:25952256,407923,9908 +h1,9161:6630773,26785402:0,0,0 +g1,9161:7626635,26785402 +g1,9161:8290543,26785402 +g1,9161:8622497,26785402 +g1,9161:8954451,26785402 +g1,9161:9286405,26785402 +g1,9161:10282267,26785402 +h1,9161:13601806,26785402:0,0,0 +k1,9161:32583030,26785402:18981224 +g1,9161:32583030,26785402 +) +(1,9161:6630773,27470257:25952256,407923,9908 +h1,9161:6630773,27470257:0,0,0 +g1,9161:7626635,27470257 +g1,9161:8290543,27470257 +g1,9161:8622497,27470257 +g1,9161:8954451,27470257 +g1,9161:9286405,27470257 +g1,9161:10282267,27470257 +h1,9161:13601806,27470257:0,0,0 +k1,9161:32583030,27470257:18981224 +g1,9161:32583030,27470257 +) +] +) +g1,9162:32583029,27480165 +g1,9162:6630773,27480165 +g1,9162:6630773,27480165 +g1,9162:32583029,27480165 +g1,9162:32583029,27480165 +) +h1,9162:6630773,27676773:0,0,0 +(1,9166:6630773,28541853:25952256,513147,134348 +h1,9165:6630773,28541853:983040,0,0 +k1,9165:10787470,28541853:210774 +k1,9165:12017328,28541853:210773 +k1,9165:15442643,28541853:210774 +k1,9165:18730332,28541853:210774 +k1,9165:19932665,28541853:210773 +k1,9165:21209710,28541853:210774 +k1,9165:24236566,28541853:210774 +k1,9165:25256710,28541853:210774 +k1,9165:26486568,28541853:210773 +k1,9165:27730845,28541853:210774 +k1,9165:28600911,28541853:210774 +k1,9165:29167544,28541853:210773 +k1,9165:30942007,28541853:210774 +k1,9166:32583029,28541853:0 +) +(1,9166:6630773,29406933:25952256,505283,134348 +k1,9165:8109526,29406933:211287 +(1,9165:8109526,29406933:0,452978,122846 +r1,9192:12336622,29406933:4227096,575824,122846 +k1,9165:8109526,29406933:-4227096 +) +(1,9165:8109526,29406933:4227096,452978,122846 +k1,9165:8109526,29406933:3277 +h1,9165:12333345,29406933:0,411205,112570 +) +k1,9165:12547908,29406933:211286 +k1,9165:13863477,29406933:211287 +k1,9165:14822529,29406933:211286 +k1,9165:16547042,29406933:211287 +k1,9165:17409756,29406933:211286 +k1,9165:19825019,29406933:211287 +k1,9165:20392165,29406933:211286 +k1,9165:22476471,29406933:211287 +k1,9165:25311163,29406933:211286 +k1,9165:26283978,29406933:211287 +k1,9165:28406949,29406933:211286 +k1,9165:29234274,29406933:211287 +k1,9165:30648801,29406933:211286 +k1,9165:32227169,29406933:211287 +k1,9165:32583029,29406933:0 +) +(1,9166:6630773,30272013:25952256,505283,7863 +k1,9166:32583028,30272013:23395696 +g1,9166:32583028,30272013 +) +v1,9168:6630773,30956868:0,393216,0 +(1,9179:6630773,34826474:25952256,4262822,196608 +g1,9179:6630773,34826474 +g1,9179:6630773,34826474 +g1,9179:6434165,34826474 +(1,9179:6434165,34826474:0,4262822,196608 +r1,9192:32779637,34826474:26345472,4459430,196608 +k1,9179:6434165,34826474:-26345472 +) +(1,9179:6434165,34826474:26345472,4262822,196608 +[1,9179:6630773,34826474:25952256,4066214,0 +(1,9170:6630773,31191305:25952256,431045,112852 +(1,9169:6630773,31191305:0,0,0 +g1,9169:6630773,31191305 +g1,9169:6630773,31191305 +g1,9169:6303093,31191305 +(1,9169:6303093,31191305:0,0,0 +) +g1,9169:6630773,31191305 +) +k1,9170:6630773,31191305:0 +g1,9170:12273990,31191305 +g1,9170:12937898,31191305 +g1,9170:19245024,31191305 +g1,9170:21236748,31191305 +g1,9170:23892380,31191305 +g1,9170:25552150,31191305 +g1,9170:26216058,31191305 +k1,9170:26216058,31191305:0 +h1,9170:27543874,31191305:0,0,0 +k1,9170:32583029,31191305:5039155 +g1,9170:32583029,31191305 +) +(1,9171:6630773,31876160:25952256,424439,106246 +h1,9171:6630773,31876160:0,0,0 +g1,9171:6962727,31876160 +g1,9171:7294681,31876160 +g1,9171:7626635,31876160 +g1,9171:7958589,31876160 +g1,9171:8290543,31876160 +g1,9171:8622497,31876160 +g1,9171:8954451,31876160 +g1,9171:9286405,31876160 +g1,9171:9618359,31876160 +g1,9171:9950313,31876160 +g1,9171:10282267,31876160 +g1,9171:10946175,31876160 +g1,9171:11610083,31876160 +g1,9171:15261577,31876160 +k1,9171:15261577,31876160:0 +h1,9171:15925485,31876160:0,0,0 +k1,9171:32583029,31876160:16657544 +g1,9171:32583029,31876160 +) +(1,9172:6630773,32561015:25952256,424439,112852 +h1,9172:6630773,32561015:0,0,0 +g1,9172:6962727,32561015 +g1,9172:7294681,32561015 +g1,9172:10282267,32561015 +g1,9172:10946175,32561015 +g1,9172:11942037,32561015 +g1,9172:13933761,32561015 +g1,9172:15593531,32561015 +g1,9172:18249163,32561015 +g1,9172:20572841,32561015 +k1,9172:20572841,32561015:0 +h1,9172:21236749,32561015:0,0,0 +k1,9172:32583029,32561015:11346280 +g1,9172:32583029,32561015 +) +(1,9173:6630773,33245870:25952256,424439,112852 +h1,9173:6630773,33245870:0,0,0 +g1,9173:6962727,33245870 +g1,9173:7294681,33245870 +g1,9173:12273990,33245870 +g1,9173:12937898,33245870 +g1,9173:13933760,33245870 +g1,9173:14597668,33245870 +g1,9173:15261576,33245870 +g1,9173:17585254,33245870 +g1,9173:19576978,33245870 +k1,9173:19576978,33245870:0 +h1,9173:20240886,33245870:0,0,0 +k1,9173:32583029,33245870:12342143 +g1,9173:32583029,33245870 +) +(1,9174:6630773,33930725:25952256,424439,112852 +h1,9174:6630773,33930725:0,0,0 +g1,9174:6962727,33930725 +g1,9174:7294681,33930725 +k1,9174:7294681,33930725:0 +h1,9174:12273990,33930725:0,0,0 +k1,9174:32583030,33930725:20309040 +g1,9174:32583030,33930725 +) +(1,9178:6630773,34746652:25952256,424439,79822 +(1,9176:6630773,34746652:0,0,0 +g1,9176:6630773,34746652 +g1,9176:6630773,34746652 +g1,9176:6303093,34746652 +(1,9176:6303093,34746652:0,0,0 +) +g1,9176:6630773,34746652 +) +g1,9178:7626635,34746652 +g1,9178:8954451,34746652 +g1,9178:12273990,34746652 +h1,9178:15261575,34746652:0,0,0 +k1,9178:32583029,34746652:17321454 +g1,9178:32583029,34746652 +) +] +) +g1,9179:32583029,34826474 +g1,9179:6630773,34826474 +g1,9179:6630773,34826474 +g1,9179:32583029,34826474 +g1,9179:32583029,34826474 +) +h1,9179:6630773,35023082:0,0,0 +(1,9183:6630773,35888162:25952256,513147,134348 +h1,9182:6630773,35888162:983040,0,0 +k1,9182:11193389,35888162:220856 +k1,9182:14440043,35888162:220857 +k1,9182:17517613,35888162:220856 +k1,9182:18389897,35888162:220856 +k1,9182:19358519,35888162:220856 +k1,9182:21092602,35888162:220857 +k1,9182:21929496,35888162:220856 +k1,9182:23870672,35888162:220856 +k1,9182:25083088,35888162:220856 +k1,9182:28087914,35888162:220857 +k1,9182:30867296,35888162:220856 +k1,9183:32583029,35888162:0 +) +(1,9183:6630773,36753242:25952256,505283,134348 +g1,9182:8237715,36753242 +g1,9182:9123106,36753242 +g1,9182:12412358,36753242 +g1,9182:13227625,36753242 +g1,9182:15844477,36753242 +h1,9182:16242936,36753242:0,0,0 +k1,9183:32583029,36753242:16166423 +g1,9183:32583029,36753242 +) +v1,9185:6630773,37618322:0,393216,0 +(1,9186:6630773,39755307:25952256,2530201,0 +g1,9186:6630773,39755307 +g1,9186:6237557,39755307 +r1,9192:6368629,39755307:131072,2530201,0 +g1,9186:6567858,39755307 +g1,9186:6764466,39755307 +[1,9186:6764466,39755307:25818563,2530201,0 +(1,9186:6764466,37890799:25818563,665693,196608 +(1,9185:6764466,37890799:0,665693,196608 +r1,9192:8010564,37890799:1246098,862301,196608 +k1,9185:6764466,37890799:-1246098 +) +(1,9185:6764466,37890799:1246098,665693,196608 +) +k1,9185:8251905,37890799:241341 +k1,9185:9569834,37890799:327680 +k1,9185:10439010,37890799:241341 +k1,9185:11699436,37890799:241341 +k1,9185:13088969,37890799:241342 +k1,9185:14985094,37890799:241341 +k1,9185:18391824,37890799:241341 +k1,9185:19249203,37890799:241341 +k1,9185:21376015,37890799:241341 +k1,9185:24312852,37890799:241341 +k1,9185:25984189,37890799:241341 +k1,9185:26757028,37890799:241342 +k1,9185:28017454,37890799:241341 +k1,9185:30589911,37890799:241341 +k1,9185:31923737,37890799:241341 +k1,9185:32583029,37890799:0 +) +(1,9186:6764466,38755879:25818563,505283,126483 +k1,9185:7995607,38755879:212056 +k1,9185:11941248,38755879:212055 +k1,9185:14625322,38755879:212056 +k1,9185:16028822,38755879:212055 +k1,9185:16856916,38755879:212056 +k1,9185:18954442,38755879:212055 +k1,9185:20653510,38755879:212056 +k1,9185:21397063,38755879:212056 +k1,9185:22067215,38755879:212055 +k1,9185:25250018,38755879:212056 +k1,9185:27013966,38755879:212055 +k1,9185:28452201,38755879:212056 +k1,9185:29683341,38755879:212055 +k1,9185:31391584,38755879:212056 +k1,9185:32583029,38755879:0 +) +(1,9186:6764466,39620959:25818563,513147,134348 +g1,9185:8155140,39620959 +g1,9185:10945007,39620959 +g1,9185:11602333,39620959 +g1,9185:13728320,39620959 +g1,9185:15118994,39620959 +g1,9185:15784184,39620959 +g1,9185:17002498,39620959 +g1,9185:19980454,39620959 +g1,9185:21860026,39620959 +g1,9185:24617125,39620959 +k1,9186:32583029,39620959:4301131 +g1,9186:32583029,39620959 +) +] +g1,9186:32583029,39755307 +) +h1,9186:6630773,39755307:0,0,0 +] +(1,9192:32583029,45706769:0,0,0 +g1,9192:32583029,45706769 +) +) +] +(1,9192:6630773,47279633:25952256,0,0 +h1,9192:6630773,47279633:25952256,0,0 +) +] +(1,9192:4262630,4025873:0,0,0 +[1,9192:-473656,4025873:0,0,0 +(1,9192:-473656,-710413:0,0,0 +(1,9192:-473656,-710413:0,0,0 +g1,9192:-473656,-710413 +) +g1,9192:-473656,-710413 +) +] +) +] +!24903 +}146 +Input:1234:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1235:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1236:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1237:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1238:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1239:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1240:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1241:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1242:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1243:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1244:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1245:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1246:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1247:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1248:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1249:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1250:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1251:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1252:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1253:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1892 +{147 +[1,9222:4262630,47279633:28320399,43253760,0 +(1,9222:4262630,4025873:0,0,0 +[1,9222:-473656,4025873:0,0,0 +(1,9222:-473656,-710413:0,0,0 +(1,9222:-473656,-644877:0,0,0 +k1,9222:-473656,-644877:-65536 ) -(1,10141:-473656,4736287:0,0,0 -k1,10141:-473656,4736287:5209943 +(1,9222:-473656,4736287:0,0,0 +k1,9222:-473656,4736287:5209943 ) -g1,10141:-473656,-710413 +g1,9222:-473656,-710413 ) ] ) -[1,10141:6630773,47279633:25952256,43253760,0 -[1,10141:6630773,4812305:25952256,786432,0 -(1,10141:6630773,4812305:25952256,505283,134348 -(1,10141:6630773,4812305:25952256,505283,134348 -g1,10141:3078558,4812305 -[1,10141:3078558,4812305:0,0,0 -(1,10141:3078558,2439708:0,1703936,0 -k1,10141:1358238,2439708:-1720320 -(1,8393:1358238,2439708:1720320,1703936,0 -(1,8393:1358238,2439708:1179648,16384,0 -r1,10141:2537886,2439708:1179648,16384,0 +[1,9222:6630773,47279633:25952256,43253760,0 +[1,9222:6630773,4812305:25952256,786432,0 +(1,9222:6630773,4812305:25952256,505283,134348 +(1,9222:6630773,4812305:25952256,505283,134348 +g1,9222:3078558,4812305 +[1,9222:3078558,4812305:0,0,0 +(1,9222:3078558,2439708:0,1703936,0 +k1,9222:1358238,2439708:-1720320 +(1,8606:1358238,2439708:1720320,1703936,0 +(1,8606:1358238,2439708:1179648,16384,0 +r1,9222:2537886,2439708:1179648,16384,0 ) -g1,8393:3062174,2439708 -(1,8393:3062174,2439708:16384,1703936,0 -[1,8393:3062174,2439708:25952256,1703936,0 -(1,8393:3062174,1915420:25952256,1179648,0 -(1,8393:3062174,1915420:16384,1179648,0 -r1,10141:3078558,1915420:16384,1179648,0 +g1,8606:3062174,2439708 +(1,8606:3062174,2439708:16384,1703936,0 +[1,8606:3062174,2439708:25952256,1703936,0 +(1,8606:3062174,1915420:25952256,1179648,0 +(1,8606:3062174,1915420:16384,1179648,0 +r1,9222:3078558,1915420:16384,1179648,0 ) -k1,8393:29014430,1915420:25935872 -g1,8393:29014430,1915420 +k1,8606:29014430,1915420:25935872 +g1,8606:29014430,1915420 ) ] ) ) ) ] -[1,10141:3078558,4812305:0,0,0 -(1,10141:3078558,2439708:0,1703936,0 -g1,10141:29030814,2439708 -g1,10141:36135244,2439708 -(1,8393:36135244,2439708:1720320,1703936,0 -(1,8393:36135244,2439708:16384,1703936,0 -[1,8393:36135244,2439708:25952256,1703936,0 -(1,8393:36135244,1915420:25952256,1179648,0 -(1,8393:36135244,1915420:16384,1179648,0 -r1,10141:36151628,1915420:16384,1179648,0 +[1,9222:3078558,4812305:0,0,0 +(1,9222:3078558,2439708:0,1703936,0 +g1,9222:29030814,2439708 +g1,9222:36135244,2439708 +(1,8606:36135244,2439708:1720320,1703936,0 +(1,8606:36135244,2439708:16384,1703936,0 +[1,8606:36135244,2439708:25952256,1703936,0 +(1,8606:36135244,1915420:25952256,1179648,0 +(1,8606:36135244,1915420:16384,1179648,0 +r1,9222:36151628,1915420:16384,1179648,0 ) -k1,8393:62087500,1915420:25935872 -g1,8393:62087500,1915420 +k1,8606:62087500,1915420:25935872 +g1,8606:62087500,1915420 ) ] ) -g1,8393:36675916,2439708 -(1,8393:36675916,2439708:1179648,16384,0 -r1,10141:37855564,2439708:1179648,16384,0 +g1,8606:36675916,2439708 +(1,8606:36675916,2439708:1179648,16384,0 +r1,9222:37855564,2439708:1179648,16384,0 ) ) -k1,10141:3078556,2439708:-34777008 +k1,9222:3078556,2439708:-34777008 ) ] -[1,10141:3078558,4812305:0,0,0 -(1,10141:3078558,49800853:0,16384,2228224 -k1,10141:1358238,49800853:-1720320 -(1,8393:1358238,49800853:1720320,16384,2228224 -(1,8393:1358238,49800853:1179648,16384,0 -r1,10141:2537886,49800853:1179648,16384,0 +[1,9222:3078558,4812305:0,0,0 +(1,9222:3078558,49800853:0,16384,2228224 +k1,9222:1358238,49800853:-1720320 +(1,8606:1358238,49800853:1720320,16384,2228224 +(1,8606:1358238,49800853:1179648,16384,0 +r1,9222:2537886,49800853:1179648,16384,0 ) -g1,8393:3062174,49800853 -(1,8393:3062174,52029077:16384,1703936,0 -[1,8393:3062174,52029077:25952256,1703936,0 -(1,8393:3062174,51504789:25952256,1179648,0 -(1,8393:3062174,51504789:16384,1179648,0 -r1,10141:3078558,51504789:16384,1179648,0 +g1,8606:3062174,49800853 +(1,8606:3062174,52029077:16384,1703936,0 +[1,8606:3062174,52029077:25952256,1703936,0 +(1,8606:3062174,51504789:25952256,1179648,0 +(1,8606:3062174,51504789:16384,1179648,0 +r1,9222:3078558,51504789:16384,1179648,0 ) -k1,8393:29014430,51504789:25935872 -g1,8393:29014430,51504789 +k1,8606:29014430,51504789:25935872 +g1,8606:29014430,51504789 ) ] ) ) ) ] -[1,10141:3078558,4812305:0,0,0 -(1,10141:3078558,49800853:0,16384,2228224 -g1,10141:29030814,49800853 -g1,10141:36135244,49800853 -(1,8393:36135244,49800853:1720320,16384,2228224 -(1,8393:36135244,52029077:16384,1703936,0 -[1,8393:36135244,52029077:25952256,1703936,0 -(1,8393:36135244,51504789:25952256,1179648,0 -(1,8393:36135244,51504789:16384,1179648,0 -r1,10141:36151628,51504789:16384,1179648,0 +[1,9222:3078558,4812305:0,0,0 +(1,9222:3078558,49800853:0,16384,2228224 +g1,9222:29030814,49800853 +g1,9222:36135244,49800853 +(1,8606:36135244,49800853:1720320,16384,2228224 +(1,8606:36135244,52029077:16384,1703936,0 +[1,8606:36135244,52029077:25952256,1703936,0 +(1,8606:36135244,51504789:25952256,1179648,0 +(1,8606:36135244,51504789:16384,1179648,0 +r1,9222:36151628,51504789:16384,1179648,0 ) -k1,8393:62087500,51504789:25935872 -g1,8393:62087500,51504789 +k1,8606:62087500,51504789:25935872 +g1,8606:62087500,51504789 ) ] ) -g1,8393:36675916,49800853 -(1,8393:36675916,49800853:1179648,16384,0 -r1,10141:37855564,49800853:1179648,16384,0 +g1,8606:36675916,49800853 +(1,8606:36675916,49800853:1179648,16384,0 +r1,9222:37855564,49800853:1179648,16384,0 ) ) -k1,10141:3078556,49800853:-34777008 +k1,9222:3078556,49800853:-34777008 ) -] -g1,10141:6630773,4812305 -k1,10141:21643106,4812305:13816956 -g1,10141:23265777,4812305 -g1,10141:24088253,4812305 -g1,10141:28572226,4812305 -g1,10141:29981905,4812305 -) -) -] -[1,10141:6630773,45706769:25952256,40108032,0 -(1,10141:6630773,45706769:25952256,40108032,0 -(1,10141:6630773,45706769:0,0,0 -g1,10141:6630773,45706769 -) -[1,10141:6630773,45706769:25952256,40108032,0 -(1,10041:6630773,6254097:25952256,564462,147783 -(1,10041:6630773,6254097:2450326,521208,12975 -g1,10041:6630773,6254097 -g1,10041:9081099,6254097 -) -g1,10041:12074981,6254097 -g1,10041:13044587,6254097 -k1,10041:32583030,6254097:17566792 -g1,10041:32583030,6254097 -) -(1,10045:6630773,7488801:25952256,513147,7863 -k1,10044:7729211,7488801:200595 -k1,10044:8948890,7488801:200594 -k1,10044:13788123,7488801:200595 -k1,10044:16276580,7488801:200595 -k1,10044:19993836,7488801:200594 -k1,10044:21634257,7488801:200595 -k1,10044:23690176,7488801:200595 -k1,10044:24995052,7488801:200594 -k1,10044:25943413,7488801:200595 -k1,10044:28435147,7488801:200595 -k1,10044:29589290,7488801:200594 -k1,10044:30922347,7488801:200595 -k1,10044:32583029,7488801:0 -) -(1,10045:6630773,8330289:25952256,513147,126483 -g1,10044:7600705,8330289 -g1,10044:10461351,8330289 -g1,10044:12054531,8330289 -g1,10044:13426199,8330289 -(1,10044:13426199,8330289:0,459977,115847 -r1,10141:14487888,8330289:1061689,575824,115847 -k1,10044:13426199,8330289:-1061689 -) -(1,10044:13426199,8330289:1061689,459977,115847 -k1,10044:13426199,8330289:3277 -h1,10044:14484611,8330289:0,411205,112570 -) -g1,10044:14687117,8330289 -g1,10044:16805240,8330289 -g1,10044:17958018,8330289 -g1,10044:19463380,8330289 -g1,10044:21591989,8330289 -g1,10044:22147078,8330289 -g1,10044:24433629,8330289 -g1,10044:25292150,8330289 -g1,10044:26880742,8330289 -g1,10044:27731399,8330289 -g1,10044:29527085,8330289 -k1,10045:32583029,8330289:1488323 -g1,10045:32583029,8330289 -) -v1,10047:6630773,9470453:0,393216,0 -(1,10065:6630773,17754519:25952256,8677282,196608 -g1,10065:6630773,17754519 -g1,10065:6630773,17754519 -g1,10065:6434165,17754519 -(1,10065:6434165,17754519:0,8677282,196608 -r1,10141:32779637,17754519:26345472,8873890,196608 -k1,10065:6434165,17754519:-26345472 -) -(1,10065:6434165,17754519:26345472,8677282,196608 -[1,10065:6630773,17754519:25952256,8480674,0 -(1,10049:6630773,9678071:25952256,404226,82312 -(1,10048:6630773,9678071:0,0,0 -g1,10048:6630773,9678071 -g1,10048:6630773,9678071 -g1,10048:6303093,9678071 -(1,10048:6303093,9678071:0,0,0 -) -g1,10048:6630773,9678071 -) -g1,10049:7263065,9678071 -g1,10049:8211503,9678071 -g1,10049:12321398,9678071 -h1,10049:13269835,9678071:0,0,0 -k1,10049:32583029,9678071:19313194 -g1,10049:32583029,9678071 -) -(1,10050:6630773,10344249:25952256,328204,0 -h1,10050:6630773,10344249:0,0,0 -h1,10050:6946919,10344249:0,0,0 -k1,10050:32583029,10344249:25636110 -g1,10050:32583029,10344249 -) -(1,10064:6630773,11010427:25952256,404226,82312 -(1,10052:6630773,11010427:0,0,0 -g1,10052:6630773,11010427 -g1,10052:6630773,11010427 -g1,10052:6303093,11010427 -(1,10052:6303093,11010427:0,0,0 -) -g1,10052:6630773,11010427 -) -g1,10064:7579210,11010427 -g1,10064:7895356,11010427 -g1,10064:8211502,11010427 -g1,10064:8527648,11010427 -g1,10064:8843794,11010427 -g1,10064:9159940,11010427 -g1,10064:9476086,11010427 -g1,10064:11056815,11010427 -g1,10064:12637544,11010427 -g1,10064:14218273,11010427 -g1,10064:15799002,11010427 -k1,10064:15799002,11010427:0 -h1,10064:17063585,11010427:0,0,0 -k1,10064:32583029,11010427:15519444 -g1,10064:32583029,11010427 -) -(1,10064:6630773,11676605:25952256,404226,82312 -h1,10064:6630773,11676605:0,0,0 -g1,10064:7579210,11676605 -g1,10064:7895356,11676605 -g1,10064:9476084,11676605 -g1,10064:9792230,11676605 -g1,10064:10108376,11676605 -g1,10064:10424522,11676605 -g1,10064:11056814,11676605 -g1,10064:11372960,11676605 -g1,10064:11689106,11676605 -g1,10064:12637543,11676605 -g1,10064:12953689,11676605 -g1,10064:13269835,11676605 -g1,10064:14218272,11676605 -g1,10064:14534418,11676605 -g1,10064:14850564,11676605 -g1,10064:15799001,11676605 -g1,10064:16115147,11676605 -g1,10064:16431293,11676605 -h1,10064:17063584,11676605:0,0,0 -k1,10064:32583029,11676605:15519445 -g1,10064:32583029,11676605 -) -(1,10064:6630773,12342783:25952256,404226,82312 -h1,10064:6630773,12342783:0,0,0 -g1,10064:7579210,12342783 -g1,10064:7895356,12342783 -g1,10064:9476084,12342783 -g1,10064:9792230,12342783 -g1,10064:10108376,12342783 -g1,10064:10424522,12342783 -g1,10064:11056814,12342783 -g1,10064:11372960,12342783 -g1,10064:11689106,12342783 -g1,10064:12637543,12342783 -g1,10064:12953689,12342783 -g1,10064:13269835,12342783 -g1,10064:14218272,12342783 -g1,10064:14534418,12342783 -g1,10064:14850564,12342783 -g1,10064:15799001,12342783 -g1,10064:16115147,12342783 -g1,10064:16431293,12342783 -h1,10064:17063584,12342783:0,0,0 -k1,10064:32583029,12342783:15519445 -g1,10064:32583029,12342783 -) -(1,10064:6630773,13008961:25952256,404226,82312 -h1,10064:6630773,13008961:0,0,0 -g1,10064:7579210,13008961 -g1,10064:7895356,13008961 -g1,10064:9476084,13008961 -g1,10064:9792230,13008961 -g1,10064:10108376,13008961 -g1,10064:10424522,13008961 -g1,10064:11056814,13008961 -g1,10064:11372960,13008961 -g1,10064:11689106,13008961 -g1,10064:12637543,13008961 -g1,10064:12953689,13008961 -g1,10064:13269835,13008961 -g1,10064:14218272,13008961 -g1,10064:14534418,13008961 -g1,10064:14850564,13008961 -g1,10064:15799001,13008961 -g1,10064:16115147,13008961 -g1,10064:16431293,13008961 -h1,10064:17063584,13008961:0,0,0 -k1,10064:32583029,13008961:15519445 -g1,10064:32583029,13008961 -) -(1,10064:6630773,13675139:25952256,404226,82312 -h1,10064:6630773,13675139:0,0,0 -g1,10064:7579210,13675139 -g1,10064:7895356,13675139 -g1,10064:9476084,13675139 -g1,10064:9792230,13675139 -g1,10064:10108376,13675139 -g1,10064:10424522,13675139 -g1,10064:11056814,13675139 -g1,10064:11372960,13675139 -g1,10064:11689106,13675139 -g1,10064:12637543,13675139 -g1,10064:12953689,13675139 -g1,10064:13269835,13675139 -g1,10064:14218272,13675139 -g1,10064:14534418,13675139 -g1,10064:14850564,13675139 -g1,10064:15799001,13675139 -g1,10064:16115147,13675139 -g1,10064:16431293,13675139 -h1,10064:17063584,13675139:0,0,0 -k1,10064:32583029,13675139:15519445 -g1,10064:32583029,13675139 -) -(1,10064:6630773,14341317:25952256,404226,82312 -h1,10064:6630773,14341317:0,0,0 -g1,10064:7579210,14341317 -g1,10064:7895356,14341317 -g1,10064:9476084,14341317 -g1,10064:9792230,14341317 -g1,10064:10108376,14341317 -g1,10064:10424522,14341317 -g1,10064:11056814,14341317 -g1,10064:11372960,14341317 -g1,10064:11689106,14341317 -g1,10064:12637543,14341317 -g1,10064:12953689,14341317 -g1,10064:13269835,14341317 -g1,10064:14218272,14341317 -g1,10064:14534418,14341317 -g1,10064:14850564,14341317 -g1,10064:15799001,14341317 -g1,10064:16115147,14341317 -g1,10064:16431293,14341317 -h1,10064:17063584,14341317:0,0,0 -k1,10064:32583029,14341317:15519445 -g1,10064:32583029,14341317 -) -(1,10064:6630773,15007495:25952256,404226,82312 -h1,10064:6630773,15007495:0,0,0 -g1,10064:7579210,15007495 -g1,10064:7895356,15007495 -g1,10064:9476084,15007495 -g1,10064:9792230,15007495 -g1,10064:10108376,15007495 -g1,10064:10424522,15007495 -g1,10064:11056814,15007495 -g1,10064:11372960,15007495 -g1,10064:11689106,15007495 -g1,10064:12637543,15007495 -g1,10064:12953689,15007495 -g1,10064:13269835,15007495 -g1,10064:14218272,15007495 -g1,10064:14534418,15007495 -g1,10064:14850564,15007495 -g1,10064:15799001,15007495 -g1,10064:16115147,15007495 -g1,10064:16431293,15007495 -h1,10064:17063584,15007495:0,0,0 -k1,10064:32583029,15007495:15519445 -g1,10064:32583029,15007495 -) -(1,10064:6630773,15673673:25952256,404226,82312 -h1,10064:6630773,15673673:0,0,0 -g1,10064:7579210,15673673 -g1,10064:7895356,15673673 -g1,10064:9476084,15673673 -g1,10064:9792230,15673673 -g1,10064:10108376,15673673 -g1,10064:10424522,15673673 -g1,10064:11056814,15673673 -g1,10064:11372960,15673673 -g1,10064:11689106,15673673 -g1,10064:12637543,15673673 -g1,10064:12953689,15673673 -g1,10064:13269835,15673673 -g1,10064:14218272,15673673 -g1,10064:14534418,15673673 -g1,10064:14850564,15673673 -g1,10064:15799001,15673673 -g1,10064:16115147,15673673 -g1,10064:16431293,15673673 -h1,10064:17063584,15673673:0,0,0 -k1,10064:32583029,15673673:15519445 -g1,10064:32583029,15673673 -) -(1,10064:6630773,16339851:25952256,404226,82312 -h1,10064:6630773,16339851:0,0,0 -g1,10064:7579210,16339851 -g1,10064:7895356,16339851 -g1,10064:9476084,16339851 -g1,10064:9792230,16339851 -g1,10064:10108376,16339851 -g1,10064:10424522,16339851 -g1,10064:11056814,16339851 -g1,10064:11372960,16339851 -g1,10064:11689106,16339851 -g1,10064:12637543,16339851 -g1,10064:12953689,16339851 -g1,10064:13269835,16339851 -g1,10064:14218272,16339851 -g1,10064:14534418,16339851 -g1,10064:14850564,16339851 -g1,10064:15799001,16339851 -g1,10064:16115147,16339851 -g1,10064:16431293,16339851 -h1,10064:17063584,16339851:0,0,0 -k1,10064:32583029,16339851:15519445 -g1,10064:32583029,16339851 -) -(1,10064:6630773,17006029:25952256,404226,82312 -h1,10064:6630773,17006029:0,0,0 -g1,10064:7579210,17006029 -g1,10064:7895356,17006029 -g1,10064:9476084,17006029 -g1,10064:9792230,17006029 -g1,10064:10108376,17006029 -g1,10064:10424522,17006029 -g1,10064:11056814,17006029 -g1,10064:11372960,17006029 -g1,10064:11689106,17006029 -g1,10064:12637543,17006029 -g1,10064:12953689,17006029 -g1,10064:13269835,17006029 -g1,10064:14218272,17006029 -g1,10064:14534418,17006029 -g1,10064:14850564,17006029 -g1,10064:15799001,17006029 -g1,10064:16115147,17006029 -g1,10064:16431293,17006029 -h1,10064:17063584,17006029:0,0,0 -k1,10064:32583029,17006029:15519445 -g1,10064:32583029,17006029 -) -(1,10064:6630773,17672207:25952256,404226,82312 -h1,10064:6630773,17672207:0,0,0 -g1,10064:7579210,17672207 -g1,10064:9476084,17672207 -g1,10064:9792230,17672207 -g1,10064:10108376,17672207 -g1,10064:11056813,17672207 -g1,10064:11372959,17672207 -g1,10064:11689105,17672207 -g1,10064:12637542,17672207 -g1,10064:12953688,17672207 -g1,10064:13269834,17672207 -g1,10064:14218271,17672207 -g1,10064:14534417,17672207 -g1,10064:14850563,17672207 -g1,10064:15799000,17672207 -g1,10064:16115146,17672207 -g1,10064:16431292,17672207 -h1,10064:17063583,17672207:0,0,0 -k1,10064:32583029,17672207:15519446 -g1,10064:32583029,17672207 -) -] -) -g1,10065:32583029,17754519 -g1,10065:6630773,17754519 -g1,10065:6630773,17754519 -g1,10065:32583029,17754519 -g1,10065:32583029,17754519 -) -h1,10065:6630773,17951127:0,0,0 -v1,10069:6630773,19565276:0,393216,0 -(1,10082:6630773,24512161:25952256,5340101,196608 -g1,10082:6630773,24512161 -g1,10082:6630773,24512161 -g1,10082:6434165,24512161 -(1,10082:6434165,24512161:0,5340101,196608 -r1,10141:32779637,24512161:26345472,5536709,196608 -k1,10082:6434165,24512161:-26345472 -) -(1,10082:6434165,24512161:26345472,5340101,196608 -[1,10082:6630773,24512161:25952256,5143493,0 -(1,10071:6630773,19772894:25952256,404226,76021 -(1,10070:6630773,19772894:0,0,0 -g1,10070:6630773,19772894 -g1,10070:6630773,19772894 -g1,10070:6303093,19772894 -(1,10070:6303093,19772894:0,0,0 -) -g1,10070:6630773,19772894 -) -g1,10071:9159939,19772894 -g1,10071:10108377,19772894 -k1,10071:10108377,19772894:0 -h1,10071:12953688,19772894:0,0,0 -k1,10071:32583028,19772894:19629340 -g1,10071:32583028,19772894 -) -(1,10072:6630773,20439072:25952256,410518,76021 -h1,10072:6630773,20439072:0,0,0 -g1,10072:7895356,20439072 -g1,10072:8843793,20439072 -g1,10072:9792230,20439072 -g1,10072:13269834,20439072 -h1,10072:13585980,20439072:0,0,0 -k1,10072:32583028,20439072:18997048 -g1,10072:32583028,20439072 -) -(1,10073:6630773,21105250:25952256,404226,76021 -h1,10073:6630773,21105250:0,0,0 -g1,10073:6946919,21105250 -g1,10073:7263065,21105250 -g1,10073:10740668,21105250 -g1,10073:11689106,21105250 -h1,10073:12005252,21105250:0,0,0 -k1,10073:32583028,21105250:20577776 -g1,10073:32583028,21105250 -) -(1,10074:6630773,21771428:25952256,410518,107478 -h1,10074:6630773,21771428:0,0,0 -g1,10074:6946919,21771428 -g1,10074:7263065,21771428 -g1,10074:8527648,21771428 -g1,10074:9476085,21771428 -g1,10074:10424522,21771428 -k1,10074:10424522,21771428:0 -h1,10074:13585980,21771428:0,0,0 -k1,10074:32583028,21771428:18997048 -g1,10074:32583028,21771428 -) -(1,10075:6630773,22437606:25952256,404226,107478 -h1,10075:6630773,22437606:0,0,0 -g1,10075:6946919,22437606 -g1,10075:7263065,22437606 -g1,10075:7579211,22437606 -g1,10075:7895357,22437606 -g1,10075:11372960,22437606 -g1,10075:12321398,22437606 -g1,10075:15799001,22437606 -g1,10075:16431293,22437606 -g1,10075:18012022,22437606 -h1,10075:18644313,22437606:0,0,0 -k1,10075:32583029,22437606:13938716 -g1,10075:32583029,22437606 -) -(1,10076:6630773,23103784:25952256,404226,76021 -h1,10076:6630773,23103784:0,0,0 -h1,10076:6946919,23103784:0,0,0 -k1,10076:32583029,23103784:25636110 -g1,10076:32583029,23103784 -) -(1,10077:6630773,23769962:25952256,404226,101187 -h1,10077:6630773,23769962:0,0,0 -k1,10077:6630773,23769962:0 -h1,10077:11056812,23769962:0,0,0 -k1,10077:32583028,23769962:21526216 -g1,10077:32583028,23769962 -) -(1,10081:6630773,24436140:25952256,404226,76021 -(1,10079:6630773,24436140:0,0,0 -g1,10079:6630773,24436140 -g1,10079:6630773,24436140 -g1,10079:6303093,24436140 -(1,10079:6303093,24436140:0,0,0 -) -g1,10079:6630773,24436140 -) -g1,10081:7579210,24436140 -g1,10081:7895356,24436140 -g1,10081:9159939,24436140 -g1,10081:10424522,24436140 -g1,10081:11689105,24436140 -g1,10081:12953688,24436140 -g1,10081:14218271,24436140 -g1,10081:15482854,24436140 -g1,10081:16747437,24436140 -g1,10081:18012020,24436140 -g1,10081:19276603,24436140 -g1,10081:20541186,24436140 -h1,10081:21489623,24436140:0,0,0 -k1,10081:32583029,24436140:11093406 -g1,10081:32583029,24436140 -) -] -) -g1,10082:32583029,24512161 -g1,10082:6630773,24512161 -g1,10082:6630773,24512161 -g1,10082:32583029,24512161 -g1,10082:32583029,24512161 -) -h1,10082:6630773,24708769:0,0,0 -(1,10086:6630773,26024243:25952256,505283,134348 -h1,10085:6630773,26024243:983040,0,0 -k1,10085:9055277,26024243:244777 -k1,10085:10796241,26024243:244777 -k1,10085:12896342,26024243:244777 -k1,10085:13672615,26024243:244776 -k1,10085:15271366,26024243:244777 -k1,10085:18022895,26024243:244777 -k1,10085:18725769,26024243:244777 -k1,10085:20103008,26024243:244777 -k1,10085:21944242,26024243:244777 -k1,10085:23582969,26024243:244776 -k1,10085:24959553,26024243:244777 -k1,10085:30495707,26024243:244777 -k1,10085:32583029,26024243:0 -) -(1,10086:6630773,26865731:25952256,513147,126483 -k1,10085:8205956,26865731:181232 -k1,10085:8999950,26865731:181232 -k1,10085:10676714,26865731:181232 -k1,10085:12014656,26865731:181232 -k1,10085:14578777,26865731:181232 -k1,10085:15951454,26865731:181232 -k1,10085:17289397,26865731:181233 -k1,10085:18848196,26865731:181232 -k1,10085:21964130,26865731:181232 -k1,10085:25593211,26865731:181232 -k1,10085:26642795,26865731:181232 -k1,10085:28354293,26865731:181232 -k1,10085:30185722,26865731:181232 -k1,10085:32583029,26865731:0 -) -(1,10086:6630773,27707219:25952256,513147,115847 -k1,10085:10807571,27707219:201384 -(1,10085:10807571,27707219:0,452978,115847 -r1,10141:13276108,27707219:2468537,568825,115847 -k1,10085:10807571,27707219:-2468537 -) -(1,10085:10807571,27707219:2468537,452978,115847 -g1,10085:12569407,27707219 -h1,10085:13272831,27707219:0,411205,112570 -) -k1,10085:13477492,27707219:201384 -k1,10085:15829768,27707219:201384 -k1,10085:17187861,27707219:201383 -k1,10085:18480419,27707219:201384 -k1,10085:19297841,27707219:201384 -k1,10085:20518310,27707219:201384 -k1,10085:22980686,27707219:201384 -k1,10085:24201155,27707219:201384 -k1,10085:25559249,27707219:201384 -k1,10085:26570003,27707219:201384 -k1,10085:27790471,27707219:201383 -k1,10085:29297988,27707219:201384 -k1,10085:30703268,27707219:201384 -k1,10085:31563944,27707219:201384 -k1,10085:32583029,27707219:0 -) -(1,10086:6630773,28548707:25952256,505283,115847 -k1,10085:9135902,28548707:263798 -k1,10085:11956259,28548707:263798 -(1,10085:11956259,28548707:0,452978,115847 -r1,10141:14073084,28548707:2116825,568825,115847 -k1,10085:11956259,28548707:-2116825 -) -(1,10085:11956259,28548707:2116825,452978,115847 -g1,10085:13718095,28548707 -h1,10085:14069807,28548707:0,411205,112570 -) -k1,10085:14336883,28548707:263799 -k1,10085:16751573,28548707:263798 -k1,10085:18219267,28548707:263798 -k1,10085:19813446,28548707:263798 -k1,10085:21268689,28548707:263798 -(1,10085:21268689,28548707:0,452978,115847 -r1,10141:23737227,28548707:2468538,568825,115847 -k1,10085:21268689,28548707:-2468538 -) -(1,10085:21268689,28548707:2468538,452978,115847 -g1,10085:22327102,28548707 -g1,10085:23030526,28548707 -h1,10085:23733950,28548707:0,411205,112570 -) -k1,10085:24001025,28548707:263798 -k1,10085:26415716,28548707:263799 -k1,10085:29062403,28548707:263798 -k1,10085:30672311,28548707:263798 -k1,10085:31563944,28548707:263798 -k1,10085:32583029,28548707:0 -) -(1,10086:6630773,29390195:25952256,513147,134348 -k1,10085:9555332,29390195:263142 -k1,10085:11847470,29390195:263143 -k1,10085:13129697,29390195:263142 -k1,10085:15073183,29390195:263143 -k1,10085:16003481,29390195:263142 -(1,10085:16003481,29390195:0,452978,115847 -r1,10141:16361747,29390195:358266,568825,115847 -k1,10085:16003481,29390195:-358266 -) -(1,10085:16003481,29390195:358266,452978,115847 -k1,10085:16003481,29390195:3277 -h1,10085:16358470,29390195:0,411205,112570 -) -k1,10085:16624890,29390195:263143 -k1,10085:19459009,29390195:263142 -k1,10085:20669802,29390195:263142 -k1,10085:22384567,29390195:263143 -k1,10085:25364832,29390195:263142 -k1,10085:26287267,29390195:263143 -k1,10085:27569494,29390195:263142 -k1,10085:29534607,29390195:263143 -k1,10085:31386342,29390195:263142 -k1,10085:32583029,29390195:0 -) -(1,10086:6630773,30231683:25952256,513147,134348 -k1,10085:8491584,30231683:180468 -k1,10085:9339208,30231683:180468 -(1,10085:9339208,30231683:0,452978,122846 -r1,10141:9697474,30231683:358266,575824,122846 -k1,10085:9339208,30231683:-358266 -) -(1,10085:9339208,30231683:358266,452978,122846 -k1,10085:9339208,30231683:3277 -h1,10085:9694197,30231683:0,411205,112570 -) -k1,10085:9877942,30231683:180468 -k1,10085:12629387,30231683:180468 -k1,10085:13757506,30231683:180468 -k1,10085:15389596,30231683:180468 -k1,10085:18287187,30231683:180468 -k1,10085:19126947,30231683:180468 -k1,10085:20326499,30231683:180467 -k1,10085:22173548,30231683:180468 -k1,10085:23942609,30231683:180468 -k1,10085:25314522,30231683:180468 -k1,10085:26514075,30231683:180468 -k1,10085:28361124,30231683:180468 -k1,10085:29956514,30231683:180468 -k1,10085:30668479,30231683:180468 -k1,10085:31966991,30231683:180468 -k1,10085:32583029,30231683:0 -) -(1,10086:6630773,31073171:25952256,513147,134348 -g1,10085:7919866,31073171 -g1,10085:9066746,31073171 -g1,10085:10717597,31073171 -g1,10085:13633949,31073171 -g1,10085:14492470,31073171 -g1,10085:15710784,31073171 -g1,10085:17611983,31073171 -g1,10085:19399805,31073171 -g1,10085:20795721,31073171 -g1,10085:22661531,31073171 -g1,10085:24275682,31073171 -g1,10085:26224722,31073171 -(1,10085:26224722,31073171:0,452978,122846 -r1,10141:26582988,31073171:358266,575824,122846 -k1,10085:26224722,31073171:-358266 -) -(1,10085:26224722,31073171:358266,452978,122846 -k1,10085:26224722,31073171:3277 -h1,10085:26579711,31073171:0,411205,112570 -) -g1,10085:26782217,31073171 -g1,10085:29552423,31073171 -k1,10086:32583029,31073171:714564 -g1,10086:32583029,31073171 -) -v1,10088:6630773,32388644:0,393216,0 -(1,10091:6630773,40528922:25952256,8533494,0 -g1,10091:6630773,40528922 -g1,10091:6303093,40528922 -r1,10141:6401397,40528922:98304,8533494,0 -g1,10091:6600626,40528922 -g1,10091:6797234,40528922 -[1,10091:6797234,40528922:25785795,8533494,0 -(1,10089:6797234,32821182:25785795,825754,196608 -(1,10088:6797234,32821182:0,825754,196608 -r1,10141:8834093,32821182:2036859,1022362,196608 -k1,10088:6797234,32821182:-2036859 -) -(1,10088:6797234,32821182:2036859,825754,196608 -) -k1,10088:9055605,32821182:221512 -k1,10088:10781823,32821182:327680 -k1,10088:11608887,32821182:221511 -k1,10088:14036341,32821182:221512 -k1,10088:15276937,32821182:221511 -k1,10088:16994636,32821182:221512 -k1,10088:17832186,32821182:221512 -k1,10088:19072782,32821182:221511 -k1,10088:21955711,32821182:221512 -k1,10088:22793260,32821182:221511 -k1,10088:24033857,32821182:221512 -k1,10088:25403560,32821182:221512 -k1,10088:27595739,32821182:221511 -k1,10088:29672575,32821182:221512 -k1,10088:30618914,32821182:221511 -k1,10088:32124932,32821182:221512 -k1,10088:32583029,32821182:0 -) -(1,10089:6797234,33662670:25785795,513147,126483 -k1,10088:8690976,33662670:198326 -k1,10088:9908388,33662670:198327 -k1,10088:12117359,33662670:198326 -k1,10088:13691286,33662670:198326 -k1,10088:14505650,33662670:198326 -k1,10088:15723062,33662670:198327 -k1,10088:17227521,33662670:198326 -k1,10088:19080631,33662670:198326 -k1,10088:21992148,33662670:198326 -k1,10088:22857631,33662670:198327 -(1,10088:22857631,33662670:0,414482,115847 -r1,10141:23215897,33662670:358266,530329,115847 -k1,10088:22857631,33662670:-358266 -) -(1,10088:22857631,33662670:358266,414482,115847 -k1,10088:22857631,33662670:3277 -h1,10088:23212620,33662670:0,411205,112570 -) -k1,10088:23587893,33662670:198326 -k1,10088:24391772,33662670:198326 -k1,10088:26852401,33662670:198326 -k1,10088:28069813,33662670:198327 -k1,10088:29921612,33662670:198326 -k1,10088:32583029,33662670:0 -) -(1,10089:6797234,34504158:25785795,513147,126483 -k1,10088:7740855,34504158:218793 -k1,10088:9244154,34504158:218793 -k1,10088:9921044,34504158:218793 -k1,10088:11835253,34504158:218793 -k1,10088:13073131,34504158:218793 -k1,10088:15302569,34504158:218793 -k1,10088:16896963,34504158:218793 -k1,10088:17731794,34504158:218793 -k1,10088:18969672,34504158:218793 -k1,10088:20336655,34504158:218792 -k1,10088:22210232,34504158:218793 -k1,10088:23963223,34504158:218793 -k1,10088:24849172,34504158:218793 -(1,10088:24849172,34504158:0,414482,115847 -r1,10141:25207438,34504158:358266,530329,115847 -k1,10088:24849172,34504158:-358266 -) -(1,10088:24849172,34504158:358266,414482,115847 -k1,10088:24849172,34504158:3277 -h1,10088:25204161,34504158:0,411205,112570 -) -k1,10088:25599901,34504158:218793 -k1,10088:26424247,34504158:218793 -k1,10088:28905343,34504158:218793 -k1,10088:30143221,34504158:218793 -k1,10088:31858201,34504158:218793 -k1,10088:32583029,34504158:0 -) -(1,10089:6797234,35345646:25785795,505283,126483 -g1,10088:8280969,35345646 -g1,10088:11213705,35345646 -g1,10088:12806885,35345646 -g1,10088:16681373,35345646 -g1,10088:18608131,35345646 -g1,10088:19458788,35345646 -g1,10088:21078182,35345646 -g1,10088:22170667,35345646 -g1,10088:25134205,35345646 -g1,10088:26094962,35345646 -(1,10088:26094962,35345646:0,452978,115847 -r1,10141:28211787,35345646:2116825,568825,115847 -k1,10088:26094962,35345646:-2116825 -) -(1,10088:26094962,35345646:2116825,452978,115847 -k1,10088:26094962,35345646:3277 -h1,10088:28208510,35345646:0,411205,112570 -) -g1,10088:28411016,35345646 -g1,10088:29801690,35345646 -(1,10088:29801690,35345646:0,452978,115847 -r1,10141:31918515,35345646:2116825,568825,115847 -k1,10088:29801690,35345646:-2116825 -) -(1,10088:29801690,35345646:2116825,452978,115847 -k1,10088:29801690,35345646:3277 -h1,10088:31915238,35345646:0,411205,112570 -) -k1,10089:32583029,35345646:283750 -g1,10089:32583029,35345646 -) -(1,10091:6797234,36187134:25785795,513147,134348 -h1,10090:6797234,36187134:983040,0,0 -k1,10090:9170854,36187134:172921 -k1,10090:10362861,36187134:172922 -k1,10090:12031969,36187134:172921 -k1,10090:13375363,36187134:172921 -k1,10090:15356423,36187134:172922 -k1,10090:18307415,36187134:172921 -k1,10090:21067042,36187134:172921 -k1,10090:21926126,36187134:172922 -k1,10090:24938067,36187134:172921 -k1,10090:25576950,36187134:172922 -k1,10090:26768956,36187134:172921 -k1,10090:29427658,36187134:172921 -k1,10090:30259872,36187134:172922 -k1,10090:31966991,36187134:172921 -k1,10091:32583029,36187134:0 -) -(1,10091:6797234,37028622:25785795,513147,134348 -(1,10090:6797234,37028622:0,414482,115847 -r1,10141:7155500,37028622:358266,530329,115847 -k1,10090:6797234,37028622:-358266 -) -(1,10090:6797234,37028622:358266,414482,115847 -k1,10090:6797234,37028622:3277 -h1,10090:7152223,37028622:0,411205,112570 -) -k1,10090:7338095,37028622:182595 -k1,10090:10509133,37028622:182596 -k1,10090:12325541,37028622:182595 -k1,10090:12974097,37028622:182595 -k1,10090:14175777,37028622:182595 -k1,10090:16844154,37028622:182596 -k1,10090:17686041,37028622:182595 -k1,10090:20581827,37028622:182595 -k1,10090:21380461,37028622:182596 -(1,10090:21380461,37028622:0,414482,115847 -r1,10141:21738727,37028622:358266,530329,115847 -k1,10090:21380461,37028622:-358266 -) -(1,10090:21380461,37028622:358266,414482,115847 -k1,10090:21380461,37028622:3277 -h1,10090:21735450,37028622:0,411205,112570 -) -k1,10090:21921322,37028622:182595 -k1,10090:24939004,37028622:182595 -k1,10090:26313044,37028622:182595 -k1,10090:27514725,37028622:182596 -k1,10090:30409855,37028622:182595 -k1,10090:32583029,37028622:0 -) -(1,10091:6797234,37870110:25785795,513147,126483 -k1,10090:8233901,37870110:238013 -k1,10090:10770262,37870110:238013 -k1,10090:11659703,37870110:238013 -k1,10090:12645482,37870110:238013 -k1,10090:16112454,37870110:238013 -k1,10090:17298118,37870110:238013 -k1,10090:19895426,37870110:238012 -k1,10090:23404996,37870110:238013 -k1,10090:25276822,37870110:238013 -k1,10090:27471085,37870110:238013 -k1,10090:30083467,37870110:238013 -k1,10090:30795305,37870110:238013 -(1,10090:30795305,37870110:0,414482,115847 -r1,10141:31153571,37870110:358266,530329,115847 -k1,10090:30795305,37870110:-358266 -) -(1,10090:30795305,37870110:358266,414482,115847 -k1,10090:30795305,37870110:3277 -h1,10090:31150294,37870110:0,411205,112570 -) -k1,10090:31391584,37870110:238013 -k1,10090:32583029,37870110:0 -) -(1,10091:6797234,38711598:25785795,513147,126483 -k1,10090:8735177,38711598:169126 -k1,10090:10346751,38711598:169127 -k1,10090:12170661,38711598:169126 -k1,10090:15380003,38711598:169127 -k1,10090:16633095,38711598:169126 -k1,10090:17453649,38711598:169126 -k1,10090:19303119,38711598:169127 -k1,10090:20778378,38711598:169126 -k1,10090:22496121,38711598:169127 -k1,10090:23316675,38711598:169126 -k1,10090:25556739,38711598:169126 -k1,10090:27580535,38711598:169127 -k1,10090:28559031,38711598:169126 -k1,10090:29747243,38711598:169127 -k1,10090:31412556,38711598:169126 -k1,10090:32583029,38711598:0 -) -(1,10091:6797234,39553086:25785795,513147,126483 -k1,10090:8949336,39553086:170293 -k1,10090:10731158,39553086:170292 -k1,10090:12830831,39553086:170293 -k1,10090:15734631,39553086:170293 -k1,10090:16564215,39553086:170292 -k1,10090:19496851,39553086:170293 -k1,10090:21266222,39553086:170293 -k1,10090:22627960,39553086:170293 -k1,10090:23989697,39553086:170292 -k1,10090:25618821,39553086:170293 -k1,10090:27458971,39553086:170293 -k1,10090:29274217,39553086:170292 -k1,10090:30902686,39553086:170293 -k1,10090:32583029,39553086:0 -) -(1,10091:6797234,40394574:25785795,505283,134348 -g1,10090:8326844,40394574 -g1,10090:9177501,40394574 -g1,10090:12006034,40394574 -g1,10090:13224348,40394574 -g1,10090:15093434,40394574 -g1,10090:16017491,40394574 -g1,10090:17501226,40394574 -g1,10090:19693405,40394574 -g1,10090:22065808,40394574 -g1,10090:23256597,40394574 -g1,10090:24522097,40394574 -k1,10091:32583029,40394574:4846391 -g1,10091:32583029,40394574 -) -] -g1,10091:32583029,40528922 -) -h1,10091:6630773,40528922:0,0,0 -v1,10094:6630773,41844396:0,393216,0 -(1,10141:6630773,45706769:25952256,4255589,0 -g1,10141:6630773,45706769 -g1,10141:6303093,45706769 -r1,10141:6401397,45706769:98304,4255589,0 -g1,10141:6600626,45706769 -g1,10141:6797234,45706769 -[1,10141:6797234,45706769:25785795,4255589,0 -(1,10096:6797234,42206469:25785795,755289,196608 -(1,10094:6797234,42206469:0,755289,196608 -r1,10141:8134168,42206469:1336934,951897,196608 -k1,10094:6797234,42206469:-1336934 -) -(1,10094:6797234,42206469:1336934,755289,196608 -) -k1,10094:8330776,42206469:196608 -k1,10094:8658456,42206469:327680 -k1,10094:9332821,42206469:196608 -k1,10094:10548514,42206469:196608 -k1,10094:12214439,42206469:196608 -k1,10094:14896828,42206469:196608 -k1,10094:15752728,42206469:196608 -k1,10094:18996760,42206469:196608 -k1,10094:19724865,42206469:196608 -k1,10094:21492371,42206469:196608 -k1,10094:22880424,42206469:196608 -k1,10094:24096117,42206469:196608 -k1,10094:25788912,42206469:196608 -k1,10094:28818641,42206469:196608 -k1,10094:29628011,42206469:196608 -k1,10094:31276241,42206469:196608 -k1,10096:32583029,42206469:0 -) -(1,10096:6797234,43047957:25785795,513147,134348 -k1,10094:8606730,43047957:186169 -k1,10094:10241245,43047957:186169 -k1,10094:11808913,43047957:186169 -k1,10094:13014167,43047957:186169 -k1,10094:16126519,43047957:186169 -k1,10094:18278113,43047957:186169 -k1,10094:19225809,43047957:186168 -k1,10094:20431063,43047957:186169 -k1,10094:22032154,43047957:186169 -k1,10094:23714510,43047957:186169 -k1,10094:25004961,43047957:186169 -k1,10094:26906863,43047957:186169 -k1,10094:27448892,43047957:186169 -k1,10094:28610892,43047957:186169 -k1,10094:32583029,43047957:0 -) -(1,10096:6797234,43889445:25785795,513147,134348 -k1,10094:7633517,43889445:184855 -k1,10094:8837457,43889445:184855 -k1,10094:10491630,43889445:184856 -k1,10094:13199621,43889445:184855 -k1,10094:14809884,43889445:184855 -k1,10094:15654031,43889445:184855 -k1,10094:16194746,43889445:184855 -k1,10094:18384348,43889445:184856 -k1,10095:20352438,43889445:184855 -k1,10095:22856612,43889445:184855 -k1,10095:24435418,43889445:184855 -k1,10095:26737741,43889445:184855 -k1,10095:28841491,43889445:184856 -k1,10095:29712508,43889445:184855 -k1,10095:30916448,43889445:184855 -k1,10095:32583029,43889445:0 -) -(1,10096:6797234,44730933:25785795,513147,126483 -k1,10095:8408371,44730933:196215 -k1,10095:9136082,44730933:196214 -k1,10095:12165418,44730933:196215 -k1,10095:13963333,44730933:196215 -k1,10095:17638199,44730933:196215 -k1,10095:19037654,44730933:196214 -k1,10095:19765366,44730933:196215 -k1,10095:20980666,44730933:196215 -k1,10095:22511849,44730933:196215 -k1,10095:24370711,44730933:196214 -k1,10095:25218354,44730933:196215 -k1,10095:26801311,44730933:196215 -k1,10095:27945177,44730933:196215 -k1,10095:29709668,44730933:196214 -k1,10095:30565175,44730933:196215 -k1,10096:32583029,44730933:0 -) -(1,10096:6797234,45572421:25785795,513147,134348 -k1,10095:8026198,45572421:238715 -k1,10095:11340518,45572421:238715 -k1,10095:13178311,45572421:238715 -k1,10095:14044860,45572421:238714 -k1,10095:15486816,45572421:238715 -k1,10095:18560618,45572421:238715 -k1,10095:22991671,45572421:238715 -k1,10095:24334668,45572421:238715 -k1,10095:25321149,45572421:238715 -k1,10095:28337934,45572421:238714 -k1,10095:30377578,45572421:238715 -k1,10095:31563944,45572421:238715 -k1,10095:32583029,45572421:0 -) -] -g1,10141:32583029,45706769 -) -] -(1,10141:32583029,45706769:0,0,0 -g1,10141:32583029,45706769 -) -) -] -(1,10141:6630773,47279633:25952256,0,0 -h1,10141:6630773,47279633:25952256,0,0 -) -] -(1,10141:4262630,4025873:0,0,0 -[1,10141:-473656,4025873:0,0,0 -(1,10141:-473656,-710413:0,0,0 -(1,10141:-473656,-710413:0,0,0 -g1,10141:-473656,-710413 -) -g1,10141:-473656,-710413 -) -] -) -] -!33087 -}169 -Input:1490:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1491:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1492:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1493:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!388 -{170 -[1,10153:4262630,47279633:28320399,43253760,0 -(1,10153:4262630,4025873:0,0,0 -[1,10153:-473656,4025873:0,0,0 -(1,10153:-473656,-710413:0,0,0 -(1,10153:-473656,-644877:0,0,0 -k1,10153:-473656,-644877:-65536 +] +g1,9222:6630773,4812305 +k1,9222:21643106,4812305:13816956 +g1,9222:23265777,4812305 +g1,9222:24088253,4812305 +g1,9222:28572226,4812305 +g1,9222:29981905,4812305 +) +) +] +[1,9222:6630773,45706769:25952256,40108032,0 +(1,9222:6630773,45706769:25952256,40108032,0 +(1,9222:6630773,45706769:0,0,0 +g1,9222:6630773,45706769 +) +[1,9222:6630773,45706769:25952256,40108032,0 +(1,9189:6630773,6254097:25952256,32768,229376 +(1,9189:6630773,6254097:0,32768,229376 +(1,9189:6630773,6254097:5505024,32768,229376 +r1,9222:12135797,6254097:5505024,262144,229376 +) +k1,9189:6630773,6254097:-5505024 +) +(1,9189:6630773,6254097:25952256,32768,0 +r1,9222:32583029,6254097:25952256,32768,0 +) +) +(1,9189:6630773,7885949:25952256,606339,14155 +(1,9189:6630773,7885949:1974731,582746,14155 +g1,9189:6630773,7885949 +g1,9189:8605504,7885949 +) +g1,9189:13431838,7885949 +k1,9189:32583029,7885949:14987033 +g1,9189:32583029,7885949 +) +(1,9192:6630773,9144245:25952256,513147,126483 +k1,9191:7551978,9144245:160987 +k1,9191:9978545,9144245:160987 +k1,9191:10554337,9144245:160949 +k1,9191:14231987,9144245:160988 +k1,9191:15009012,9144245:160987 +k1,9191:15525859,9144245:160987 +k1,9191:17517922,9144245:160987 +k1,9191:18670469,9144245:160987 +k1,9191:21892643,9144245:160987 +k1,9191:22943609,9144245:160987 +k1,9191:26144812,9144245:160988 +k1,9191:26921837,9144245:160987 +k1,9191:28101909,9144245:160987 +k1,9191:31202841,9144245:160987 +k1,9191:32583029,9144245:0 +) +(1,9192:6630773,10009325:25952256,513147,134348 +k1,9191:8989274,10009325:169598 +k1,9191:9774910,10009325:169598 +k1,9191:10963592,10009325:169597 +k1,9191:12964266,10009325:169598 +k1,9191:15040961,10009325:169598 +k1,9191:15893444,10009325:169598 +k1,9191:17462890,10009325:169597 +k1,9191:18586037,10009325:169598 +k1,9191:20035553,10009325:169598 +k1,9191:21224236,10009325:169598 +k1,9191:23131849,10009325:169598 +k1,9191:25498213,10009325:169597 +k1,9191:26283849,10009325:169598 +k1,9191:29401256,10009325:169598 +k1,9192:32583029,10009325:0 +) +(1,9192:6630773,10874405:25952256,513147,126483 +k1,9191:7499881,10874405:217680 +k1,9191:9461474,10874405:217680 +k1,9191:11873300,10874405:217681 +k1,9191:15607642,10874405:217680 +k1,9191:17109828,10874405:217680 +k1,9191:19009162,10874405:217680 +k1,9191:19971987,10874405:217681 +k1,9191:20841095,10874405:217680 +k1,9191:22512364,10874405:217680 +k1,9191:23933285,10874405:217680 +k1,9191:26416546,10874405:217681 +k1,9191:29747841,10874405:217680 +k1,9191:30727049,10874405:217680 +k1,9191:32583029,10874405:0 +) +(1,9192:6630773,11739485:25952256,505283,134348 +k1,9191:9670906,11739485:284344 +k1,9191:10638136,11739485:284345 +k1,9191:14273336,11739485:284344 +k1,9191:17841034,11739485:284344 +k1,9191:21318292,11739485:284344 +k1,9191:25292969,11739485:284345 +k1,9191:26774000,11739485:284344 +k1,9191:30575006,11739485:284344 +k1,9191:32583029,11739485:0 +) +(1,9192:6630773,12604565:25952256,513147,126483 +k1,9191:10119859,12604565:185416 +k1,9191:10836773,12604565:185417 +k1,9191:14283260,12604565:185416 +k1,9191:15572959,12604565:185417 +k1,9191:16506141,12604565:185416 +k1,9191:18547537,12604565:185416 +k1,9191:20857631,12604565:185417 +k1,9191:21725932,12604565:185416 +k1,9191:25498789,12604565:185416 +k1,9191:27401249,12604565:185417 +k1,9191:28245957,12604565:185416 +k1,9191:29450459,12604565:185417 +k1,9191:31923737,12604565:185416 +k1,9191:32583029,12604565:0 +) +(1,9192:6630773,13469645:25952256,513147,134348 +k1,9191:9877503,13469645:171125 +k1,9191:11398669,13469645:171124 +k1,9191:15260126,13469645:171125 +k1,9191:18126746,13469645:171124 +k1,9191:19444096,13469645:171125 +k1,9191:22068205,13469645:171096 +k1,9191:24860771,13469645:171125 +k1,9191:25979546,13469645:171124 +k1,9191:28892697,13469645:171125 +k1,9191:32583029,13469645:0 +) +(1,9192:6630773,14334725:25952256,505283,126483 +k1,9191:9047631,14334725:269899 +k1,9191:10999184,14334725:269899 +k1,9191:14785745,14334725:269899 +k1,9191:15707072,14334725:269899 +k1,9191:16724737,14334725:269899 +k1,9191:19827758,14334725:269900 +k1,9191:23448513,14334725:269899 +k1,9191:25407930,14334725:269899 +k1,9191:26360714,14334725:269899 +k1,9191:28123523,14334725:269899 +k1,9191:28749282,14334725:269899 +k1,9191:32051532,14334725:269899 +k1,9191:32583029,14334725:0 +) +(1,9192:6630773,15199805:25952256,513147,126483 +g1,9191:8227885,15199805 +g1,9191:9109999,15199805 +g1,9191:10802138,15199805 +g1,9191:11767483,15199805 +g1,9191:14920420,15199805 +g1,9191:15778941,15199805 +g1,9191:16334030,15199805 +g1,9191:17526785,15199805 +g1,9191:18408899,15199805 +g1,9191:18963988,15199805 +g1,9191:21141094,15199805 +g1,9191:22331883,15199805 +k1,9192:32583029,15199805:6864245 +g1,9192:32583029,15199805 +) +(1,9194:6630773,16064885:25952256,513147,126483 +h1,9193:6630773,16064885:983040,0,0 +k1,9193:9777819,16064885:289676 +k1,9193:12264262,16064885:289676 +k1,9193:13169976,16064885:289676 +k1,9193:16407461,16064885:289676 +k1,9193:19901848,16064885:289676 +k1,9193:21295806,16064885:289676 +k1,9193:22333248,16064885:289676 +k1,9193:23908740,16064885:289676 +k1,9193:25711642,16064885:289676 +k1,9193:26614080,16064885:289676 +k1,9193:27922841,16064885:289676 +k1,9193:28627269,16064885:289585 +k1,9193:31510860,16064885:289676 +k1,9193:32583029,16064885:0 +) +(1,9194:6630773,16929965:25952256,513147,126483 +k1,9193:7370183,16929965:281313 +k1,9193:8182993,16929965:281313 +k1,9193:10751514,16929965:281314 +k1,9193:13888231,16929965:281313 +k1,9193:14820972,16929965:281313 +k1,9193:15917553,16929965:281313 +k1,9193:16923694,16929965:281313 +k1,9193:17891170,16929965:281314 +k1,9193:19552671,16929965:281313 +k1,9193:20938266,16929965:281313 +k1,9193:23371781,16929965:281313 +k1,9193:25040491,16929965:281313 +k1,9193:27553305,16929965:281313 +k1,9193:29333427,16929965:281314 +k1,9193:30274032,16929965:281313 +k1,9193:31955194,16929965:281313 +k1,9193:32583029,16929965:0 +) +(1,9194:6630773,17795045:25952256,513147,126483 +k1,9193:8995967,17795045:240517 +k1,9193:11571532,17795045:240517 +k1,9193:12831134,17795045:240517 +k1,9193:14388925,17795045:240517 +k1,9193:15245480,17795045:240517 +k1,9193:18435117,17795045:240517 +k1,9193:19779916,17795045:240517 +k1,9193:20768198,17795045:240516 +k1,9193:22572404,17795045:240517 +k1,9193:24004366,17795045:240517 +k1,9193:26057609,17795045:240517 +k1,9193:27865747,17795045:240517 +k1,9193:29125349,17795045:240517 +k1,9193:30671999,17795045:240517 +k1,9193:31563944,17795045:240517 +k1,9193:32583029,17795045:0 +) +(1,9194:6630773,18660125:25952256,513147,126483 +k1,9193:7995451,18660125:216487 +k1,9193:11398299,18660125:216488 +k1,9193:12230824,18660125:216487 +k1,9193:13466396,18660125:216487 +k1,9193:15687629,18660125:216487 +k1,9193:18838819,18660125:216488 +k1,9193:21252073,18660125:216487 +k1,9193:22084598,18660125:216487 +k1,9193:25248894,18660125:216487 +k1,9193:28670093,18660125:216488 +k1,9193:29878140,18660125:216487 +k1,9193:30450487,18660125:216487 +k1,9193:32583029,18660125:0 +) +(1,9194:6630773,19525205:25952256,513147,126483 +k1,9193:8113899,19525205:161265 +k1,9193:8934457,19525205:161266 +k1,9193:10697422,19525205:161265 +k1,9193:12835909,19525205:161266 +k1,9193:15332222,19525205:161265 +k1,9193:16311377,19525205:161266 +k1,9193:17340994,19525205:161265 +k1,9193:18634721,19525205:161265 +k1,9193:19820970,19525205:161266 +k1,9193:21540026,19525205:161265 +k1,9193:22057152,19525205:161266 +k1,9193:25632187,19525205:161265 +k1,9193:28979813,19525205:161266 +k1,9193:30245360,19525205:161265 +k1,9193:32583029,19525205:0 +) +(1,9194:6630773,20390285:25952256,505283,126483 +g1,9193:9501249,20390285 +g1,9193:11825155,20390285 +g1,9193:12707269,20390285 +g1,9193:15023966,20390285 +g1,9193:18636965,20390285 +k1,9194:32583029,20390285:10255732 +g1,9194:32583029,20390285 +) +(1,9196:6630773,21255365:25952256,513147,126483 +h1,9195:6630773,21255365:983040,0,0 +k1,9195:8245782,21255365:217126 +k1,9195:9563931,21255365:217144 +k1,9195:10953514,21255365:217144 +k1,9195:12887046,21255365:217144 +k1,9195:13763482,21255365:217144 +k1,9195:14538993,21255365:217144 +k1,9195:18446468,21255365:217143 +k1,9195:23437910,21255365:217144 +k1,9195:24846499,21255365:217144 +k1,9195:28574407,21255365:217144 +k1,9195:29745100,21255365:217144 +k1,9195:31094706,21255365:217144 +k1,9195:32583029,21255365:0 +) +(1,9196:6630773,22120445:25952256,505283,102891 +k1,9195:8284751,22120445:260027 +k1,9195:9563862,22120445:260026 +k1,9195:14598187,22120445:260027 +k1,9195:16188594,22120445:260026 +k1,9195:18334092,22120445:260027 +k1,9195:19125615,22120445:260026 +k1,9195:21587652,22120445:260027 +k1,9195:22499106,22120445:260026 +k1,9195:24307749,22120445:260027 +k1,9195:25099272,22120445:260026 +k1,9195:28143268,22120445:260027 +k1,9195:29019332,22120445:260026 +k1,9195:30881059,22120445:260027 +k1,9195:32583029,22120445:0 +) +(1,9196:6630773,22985525:25952256,513147,134348 +k1,9195:9841775,22985525:134742 +k1,9195:14328763,22985525:134742 +k1,9195:17636103,22985525:134742 +k1,9195:18962290,22985525:134742 +k1,9195:21715194,22985525:134741 +k1,9195:22869021,22985525:134742 +k1,9195:26307433,22985525:134742 +k1,9195:27101467,22985525:134742 +k1,9195:27592069,22985525:134742 +k1,9195:29222998,22985525:134742 +k1,9195:32583029,22985525:0 +) +(1,9196:6630773,23850605:25952256,505283,126483 +g1,9195:8715473,23850605 +g1,9195:10018984,23850605 +g1,9195:10965979,23850605 +g1,9195:13021188,23850605 +g1,9195:15345094,23850605 +g1,9195:16227208,23850605 +k1,9196:32583029,23850605:12768380 +g1,9196:32583029,23850605 +) +(1,9197:6630773,25967423:25952256,555811,127104 +(1,9197:6630773,25967423:2450326,534184,12975 +g1,9197:6630773,25967423 +g1,9197:9081099,25967423 +) +g1,9197:14856198,25967423 +(1,9197:14856198,25967423:0,505647,127104 +r1,9222:15636518,25967423:780320,632751,127104 +k1,9197:14856198,25967423:-780320 +) +(1,9197:14856198,25967423:780320,505647,127104 +k1,9197:14856198,25967423:3277 +h1,9197:15633241,25967423:0,452326,123827 +) +g1,9197:16052475,25967423 +(1,9197:16052475,25967423:0,497948,127104 +r1,9222:17606561,25967423:1554086,625052,127104 +k1,9197:16052475,25967423:-1554086 +) +(1,9197:16052475,25967423:1554086,497948,127104 +k1,9197:16052475,25967423:3277 +h1,9197:17603284,25967423:0,452326,123827 +) +g1,9197:17831481,25967423 +g1,9197:19398709,25967423 +(1,9197:19398709,25967423:0,497948,127104 +r1,9222:21726561,25967423:2327852,625052,127104 +k1,9197:19398709,25967423:-2327852 +) +(1,9197:19398709,25967423:2327852,497948,127104 +k1,9197:19398709,25967423:3277 +h1,9197:21723284,25967423:0,452326,123827 +) +k1,9197:32583029,25967423:10856468 +g1,9197:32583029,25967423 +) +(1,9201:6630773,27225719:25952256,505283,134348 +k1,9200:8036354,27225719:208894 +(1,9200:8036354,27225719:0,459977,115847 +r1,9222:8746332,27225719:709978,575824,115847 +k1,9200:8036354,27225719:-709978 +) +(1,9200:8036354,27225719:709978,459977,115847 +k1,9200:8036354,27225719:3277 +h1,9200:8743055,27225719:0,411205,112570 +) +k1,9200:8955227,27225719:208895 +k1,9200:12187952,27225719:208894 +k1,9200:15572066,27225719:208895 +k1,9200:19142957,27225719:208894 +k1,9200:20161222,27225719:208895 +k1,9200:20725976,27225719:208894 +(1,9200:20725976,27225719:0,452978,122846 +r1,9222:23194513,27225719:2468537,575824,122846 +k1,9200:20725976,27225719:-2468537 +) +(1,9200:20725976,27225719:2468537,452978,122846 +k1,9200:20725976,27225719:3277 +h1,9200:23191236,27225719:0,411205,112570 +) +k1,9200:23403407,27225719:208894 +k1,9200:25466316,27225719:208895 +k1,9200:28265848,27225719:208894 +k1,9200:29493828,27225719:208895 +k1,9200:31086842,27225719:208894 +k1,9200:32583029,27225719:0 +) +(1,9201:6630773,28090799:25952256,513147,126483 +k1,9200:10089358,28090799:272225 +k1,9200:10893080,28090799:272225 +k1,9200:13998426,28090799:272225 +k1,9200:14951570,28090799:272225 +(1,9200:14951570,28090799:0,414482,115847 +r1,9222:16364971,28090799:1413401,530329,115847 +k1,9200:14951570,28090799:-1413401 +) +(1,9200:14951570,28090799:1413401,414482,115847 +k1,9200:14951570,28090799:3277 +h1,9200:16361694,28090799:0,411205,112570 +) +k1,9200:16844290,28090799:272225 +k1,9200:17799400,28090799:272225 +k1,9200:20605248,28090799:272226 +k1,9200:21558392,28090799:272225 +(1,9200:21558392,28090799:0,414482,115847 +r1,9222:23323505,28090799:1765113,530329,115847 +k1,9200:21558392,28090799:-1765113 +) +(1,9200:21558392,28090799:1765113,414482,115847 +k1,9200:21558392,28090799:3277 +h1,9200:23320228,28090799:0,411205,112570 +) +k1,9200:23976494,28090799:272225 +k1,9200:25445406,28090799:272225 +k1,9200:27067673,28090799:272225 +k1,9200:28989439,28090799:272225 +k1,9200:31252648,28090799:272225 +k1,9201:32583029,28090799:0 +) +(1,9201:6630773,28955879:25952256,513147,134348 +(1,9200:6630773,28955879:0,459977,115847 +r1,9222:7340751,28955879:709978,575824,115847 +k1,9200:6630773,28955879:-709978 +) +(1,9200:6630773,28955879:709978,459977,115847 +k1,9200:6630773,28955879:3277 +h1,9200:7337474,28955879:0,411205,112570 +) +k1,9200:7538066,28955879:197315 +k1,9200:9835810,28955879:197315 +(1,9200:9835810,28955879:0,414482,115847 +r1,9222:14414618,28955879:4578808,530329,115847 +k1,9200:9835810,28955879:-4578808 +) +(1,9200:9835810,28955879:4578808,414482,115847 +g1,9200:13707917,28955879 +h1,9200:14411341,28955879:0,411205,112570 +) +k1,9200:14611934,28955879:197316 +k1,9200:15340746,28955879:197315 +k1,9200:17394041,28955879:197315 +k1,9200:20652543,28955879:197315 +k1,9200:21532744,28955879:197316 +k1,9200:24263681,28955879:197315 +k1,9200:27822993,28955879:197315 +k1,9200:28829678,28955879:197315 +k1,9200:30046079,28955879:197316 +k1,9200:31923737,28955879:197315 +k1,9201:32583029,28955879:0 +) +(1,9201:6630773,29820959:25952256,505283,126483 +(1,9200:6630773,29820959:0,452978,115847 +r1,9222:10506157,29820959:3875384,568825,115847 +k1,9200:6630773,29820959:-3875384 +) +(1,9200:6630773,29820959:3875384,452978,115847 +k1,9200:6630773,29820959:3277 +h1,9200:10502880,29820959:0,411205,112570 +) +g1,9200:10879056,29820959 +g1,9200:12767803,29820959 +(1,9200:12767803,29820959:0,414482,115847 +r1,9222:17346611,29820959:4578808,530329,115847 +k1,9200:12767803,29820959:-4578808 +) +(1,9200:12767803,29820959:4578808,414482,115847 +g1,9200:16639910,29820959 +h1,9200:17343334,29820959:0,411205,112570 +) +g1,9200:17545840,29820959 +g1,9200:18276566,29820959 +g1,9200:20605060,29820959 +k1,9201:32583029,29820959:8743112 +g1,9201:32583029,29820959 +) +(1,9217:6630773,42442035:25952256,11773697,0 +k1,9217:12310416,42442035:5679643 +(1,9202:12310416,42442035:0,0,0 +g1,9202:12310416,42442035 +g1,9202:12310416,42442035 +g1,9202:11982736,42442035 +(1,9202:11982736,42442035:0,0,0 +) +g1,9202:12310416,42442035 +) +(1,9215:12310416,42442035:14592970,11773697,0 +g1,9215:15329272,42442035 +(1,9215:15329272,31613784:0,0,0 +(1,9215:15329272,31613784:0,0,0 +g1,9204:15329272,31613784 +(1,9205:15329272,31613784:0,0,0 +(1,9205:15329272,31613784:0,0,0 +g1,9205:15329272,31613784 +g1,9205:15329272,31613784 +g1,9205:15329272,31613784 +g1,9205:15329272,31613784 +g1,9205:15329272,31613784 +(1,9205:15329272,31613784:0,0,0 +(1,9205:15329272,31613784:589824,56623,0 +(1,9205:15329272,31613784:589824,56623,0 +) +g1,9205:15919096,31613784 +) +) +g1,9205:15329272,31613784 +g1,9205:15329272,31613784 +) +) +g1,9205:15329272,31613784 +(1,9206:15329272,31613784:0,0,0 +(1,9206:15329272,31613784:0,0,0 +g1,9206:15329272,31613784 +g1,9206:15329272,31613784 +(1,9206:15329272,31613784:0,0,0 +(1,9206:15329272,31613784:3805042,414307,104590 +(1,9206:15329272,31613784:3805042,414307,104590 +(1,9206:15329272,31613784:0,414307,104590 +r1,9222:19134314,31613784:3805042,518897,104590 +k1,9206:15329272,31613784:-3805042 +) +(1,9206:15329272,31613784:3805042,414307,104590 +g1,9206:16282171,31613784 +h1,9206:19131037,31613784:0,370085,101313 +) +) +g1,9206:19134314,31613784 +) +) +g1,9206:15329272,31613784 +g1,9206:15329272,31613784 +) +) +(1,9207:15329272,31613784:0,0,0 +(1,9207:15329272,31613784:0,0,0 +g1,9207:15329272,31613784 +g1,9207:15329272,31613784 +g1,9207:15329272,31613784 +g1,9207:15329272,31613784 +g1,9207:15329272,31613784 +(1,9207:15329272,31613784:0,0,0 +(1,9207:15329272,31613784:4121582,373362,104590 +(1,9207:15329272,31613784:4121582,373362,104590 +(1,9207:15329272,31613784:0,373362,104590 +r1,9222:19450854,31613784:4121582,477952,104590 +k1,9207:15329272,31613784:-4121582 +) +(1,9207:15329272,31613784:4121582,373362,104590 +g1,9207:18814496,31613784 +h1,9207:19447577,31613784:0,370085,101313 +) +) +g1,9207:19450854,31613784 +) +) +g1,9207:15329272,31613784 +g1,9207:15329272,31613784 +) +) +(1,9208:15329272,31613784:0,0,0 +(1,9208:15329272,31613784:0,0,0 +g1,9208:15329272,31613784 +g1,9208:15329272,31613784 +g1,9208:15329272,31613784 +g1,9208:15329272,31613784 +g1,9208:15329272,31613784 +(1,9208:15329272,31613784:0,0,0 +(1,9208:15329272,31613784:4121582,373362,104590 +(1,9208:15329272,31613784:4121582,373362,104590 +(1,9208:15329272,31613784:0,373362,104590 +r1,9222:19450854,31613784:4121582,477952,104590 +k1,9208:15329272,31613784:-4121582 +) +(1,9208:15329272,31613784:4121582,373362,104590 +g1,9208:18814496,31613784 +h1,9208:19447577,31613784:0,370085,101313 +) +) +g1,9208:19450854,31613784 +) +) +g1,9208:15329272,31613784 +g1,9208:15329272,31613784 +) +) +g1,9208:15329272,31613784 +g1,9209:15329272,31613784 +(1,9209:15329272,31613784:0,0,0 +(1,9209:15329272,31613784:0,0,0 +g1,9209:15329272,31613784 +g1,9209:15329272,31613784 +g1,9209:15329272,31613784 +g1,9209:15329272,31613784 +g1,9209:15329272,31613784 +(1,9209:15329272,31613784:0,0,0 +(1,9209:15329272,31613784:589824,56623,0 +(1,9209:15329272,31613784:589824,56623,0 +) +g1,9209:15919096,31613784 +) +) +g1,9209:15329272,31613784 +g1,9209:15329272,31613784 +) +) +g1,9209:15329272,31613784 +g1,9210:15329272,31613784 +g1,9210:15329272,31613784 +g1,9210:15329272,31613784 +g1,9210:15329272,31613784 +g1,9211:15329272,31613784 +g1,9211:15329272,31613784 +g1,9211:15329272,31613784 +(1,9211:15329272,31613784:0,0,0 +(1,9211:15329272,31613784:0,0,0 +g1,9211:15329272,31613784 +g1,9211:15329272,31613784 +g1,9211:15329272,31613784 +g1,9211:15329272,31613784 +g1,9211:15329272,31613784 +(1,9211:15329272,31613784:0,0,0 +(1,9211:15329272,31613784:1272717,373362,104590 +(1,9211:15329272,31613784:1272717,373362,104590 +(1,9211:15329272,31613784:0,373362,104590 +r1,9222:16601989,31613784:1272717,477952,104590 +k1,9211:15329272,31613784:-1272717 +) +(1,9211:15329272,31613784:1272717,373362,104590 +k1,9211:15329272,31613784:3277 +h1,9211:16598712,31613784:0,370085,101313 +) +) +g1,9211:16601989,31613784 +) +) +g1,9211:15329272,31613784 +g1,9211:15329272,31613784 +) +) +g1,9211:15329272,31613784 +g1,9212:15329272,31613784 +g1,9212:15329272,31613784 +g1,9212:15329272,31613784 +(1,9212:15329272,31613784:0,0,0 +(1,9212:15329272,31613784:0,0,0 +g1,9212:15329272,31613784 +g1,9212:15329272,31613784 +g1,9212:15329272,31613784 +g1,9212:15329272,31613784 +g1,9212:15329272,31613784 +(1,9212:15329272,31613784:0,0,0 +(1,9212:15329272,31613784:1589257,373362,104590 +(1,9212:15329272,31613784:1589257,373362,104590 +(1,9212:15329272,31613784:0,373362,104590 +r1,9222:16918529,31613784:1589257,477952,104590 +k1,9212:15329272,31613784:-1589257 +) +(1,9212:15329272,31613784:1589257,373362,104590 +k1,9212:15329272,31613784:3277 +h1,9212:16915252,31613784:0,370085,101313 +) +) +g1,9212:16918529,31613784 +) +) +g1,9212:15329272,31613784 +g1,9212:15329272,31613784 +) +) +g1,9212:15329272,31613784 +g1,9213:15329272,31613784 +g1,9213:15329272,31613784 +g1,9213:15329272,31613784 +g1,9213:15329272,31613784 +g1,9213:15329272,31613784 +g1,9214:15329272,31613784 +g1,9214:15329272,31613784 +g1,9214:15329272,31613784 +g1,9214:15329272,31613784 +g1,9214:15329272,31613784 +g1,9214:15329272,31613784 +g1,9215:15329272,31613784 +g1,9215:15329272,31613784 +) +g1,9215:15329272,31613784 +) +) +g1,9217:26903386,42442035 +k1,9217:32583029,42442035:5679643 +) +(1,9220:6630773,43962475:25952256,513147,134348 +h1,9219:6630773,43962475:983040,0,0 +k1,9219:9060907,43962475:250407 +k1,9219:12711322,43962475:250407 +k1,9219:13621021,43962475:250407 +k1,9219:14429795,43962475:250407 +k1,9219:18196864,43962475:250407 +k1,9219:20332086,43962475:250407 +k1,9219:22150114,43962475:250407 +k1,9219:23419606,43962475:250407 +k1,9219:26973028,43962475:250407 +k1,9219:27882727,43962475:250407 +k1,9219:31563944,43962475:250407 +k1,9220:32583029,43962475:0 +) +(1,9220:6630773,44827555:25952256,505283,126483 +(1,9219:6630773,44827555:0,452978,122846 +r1,9222:9099310,44827555:2468537,575824,122846 +k1,9219:6630773,44827555:-2468537 +) +(1,9219:6630773,44827555:2468537,452978,122846 +k1,9219:6630773,44827555:3277 +h1,9219:9096033,44827555:0,411205,112570 +) +k1,9219:9300502,44827555:201192 +k1,9219:11182037,44827555:201192 +k1,9219:12896456,44827555:201193 +k1,9219:13783810,44827555:201192 +(1,9219:13783810,44827555:0,452978,115847 +r1,9222:17659194,44827555:3875384,568825,115847 +k1,9219:13783810,44827555:-3875384 +) +(1,9219:13783810,44827555:3875384,452978,115847 +k1,9219:13783810,44827555:3277 +h1,9219:17655917,44827555:0,411205,112570 +) +k1,9219:17860386,44827555:201192 +k1,9219:19455529,44827555:201192 +k1,9219:23410623,44827555:201192 +k1,9219:26688730,44827555:201192 +k1,9219:28122000,44827555:201193 +k1,9219:30601879,44827555:201192 +h1,9219:31572467,44827555:0,0,0 +k1,9219:31773659,44827555:201192 +k1,9219:32583029,44827555:0 +) +(1,9220:6630773,45692635:25952256,505283,134348 +g1,9219:8328155,45692635 +h1,9219:9125073,45692635:0,0,0 +g1,9219:9531396,45692635 +g1,9219:10922070,45692635 +g1,9219:13190926,45692635 +g1,9219:16467070,45692635 +g1,9219:17898376,45692635 +g1,9219:20376292,45692635 +h1,9219:21346880,45692635:0,0,0 +g1,9219:21546109,45692635 +g1,9219:22554708,45692635 +g1,9219:24252090,45692635 +h1,9219:25049008,45692635:0,0,0 +k1,9220:32583029,45692635:7153257 +g1,9220:32583029,45692635 +) +] +(1,9222:32583029,45706769:0,0,0 +g1,9222:32583029,45706769 +) +) +] +(1,9222:6630773,47279633:25952256,0,0 +h1,9222:6630773,47279633:25952256,0,0 +) +] +(1,9222:4262630,4025873:0,0,0 +[1,9222:-473656,4025873:0,0,0 +(1,9222:-473656,-710413:0,0,0 +(1,9222:-473656,-710413:0,0,0 +g1,9222:-473656,-710413 +) +g1,9222:-473656,-710413 +) +] +) +] +!24201 +}147 +Input:1254:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1255:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1256:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1257:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1258:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1259:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1260:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1261:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1262:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1263:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1264:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1265:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1266:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1267:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1268:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1269:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1270:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1271:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1272:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1273:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1274:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1275:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1276:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1277:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1278:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!2362 +{148 +[1,9299:4262630,47279633:28320399,43253760,0 +(1,9299:4262630,4025873:0,0,0 +[1,9299:-473656,4025873:0,0,0 +(1,9299:-473656,-710413:0,0,0 +(1,9299:-473656,-644877:0,0,0 +k1,9299:-473656,-644877:-65536 ) -(1,10153:-473656,4736287:0,0,0 -k1,10153:-473656,4736287:5209943 +(1,9299:-473656,4736287:0,0,0 +k1,9299:-473656,4736287:5209943 ) -g1,10153:-473656,-710413 +g1,9299:-473656,-710413 ) ] ) -[1,10153:6630773,47279633:25952256,43253760,0 -[1,10153:6630773,4812305:25952256,786432,0 -(1,10153:6630773,4812305:25952256,477757,11795 -(1,10153:6630773,4812305:25952256,477757,11795 -g1,10153:3078558,4812305 -[1,10153:3078558,4812305:0,0,0 -(1,10153:3078558,2439708:0,1703936,0 -k1,10153:1358238,2439708:-1720320 -(1,8393:1358238,2439708:1720320,1703936,0 -(1,8393:1358238,2439708:1179648,16384,0 -r1,10153:2537886,2439708:1179648,16384,0 +[1,9299:6630773,47279633:25952256,43253760,0 +[1,9299:6630773,4812305:25952256,786432,0 +(1,9299:6630773,4812305:25952256,505283,11795 +(1,9299:6630773,4812305:25952256,505283,11795 +g1,9299:3078558,4812305 +[1,9299:3078558,4812305:0,0,0 +(1,9299:3078558,2439708:0,1703936,0 +k1,9299:1358238,2439708:-1720320 +(1,8606:1358238,2439708:1720320,1703936,0 +(1,8606:1358238,2439708:1179648,16384,0 +r1,9299:2537886,2439708:1179648,16384,0 ) -g1,8393:3062174,2439708 -(1,8393:3062174,2439708:16384,1703936,0 -[1,8393:3062174,2439708:25952256,1703936,0 -(1,8393:3062174,1915420:25952256,1179648,0 -(1,8393:3062174,1915420:16384,1179648,0 -r1,10153:3078558,1915420:16384,1179648,0 +g1,8606:3062174,2439708 +(1,8606:3062174,2439708:16384,1703936,0 +[1,8606:3062174,2439708:25952256,1703936,0 +(1,8606:3062174,1915420:25952256,1179648,0 +(1,8606:3062174,1915420:16384,1179648,0 +r1,9299:3078558,1915420:16384,1179648,0 ) -k1,8393:29014430,1915420:25935872 -g1,8393:29014430,1915420 +k1,8606:29014430,1915420:25935872 +g1,8606:29014430,1915420 ) ] ) ) ) ] -[1,10153:3078558,4812305:0,0,0 -(1,10153:3078558,2439708:0,1703936,0 -g1,10153:29030814,2439708 -g1,10153:36135244,2439708 -(1,8393:36135244,2439708:1720320,1703936,0 -(1,8393:36135244,2439708:16384,1703936,0 -[1,8393:36135244,2439708:25952256,1703936,0 -(1,8393:36135244,1915420:25952256,1179648,0 -(1,8393:36135244,1915420:16384,1179648,0 -r1,10153:36151628,1915420:16384,1179648,0 +[1,9299:3078558,4812305:0,0,0 +(1,9299:3078558,2439708:0,1703936,0 +g1,9299:29030814,2439708 +g1,9299:36135244,2439708 +(1,8606:36135244,2439708:1720320,1703936,0 +(1,8606:36135244,2439708:16384,1703936,0 +[1,8606:36135244,2439708:25952256,1703936,0 +(1,8606:36135244,1915420:25952256,1179648,0 +(1,8606:36135244,1915420:16384,1179648,0 +r1,9299:36151628,1915420:16384,1179648,0 ) -k1,8393:62087500,1915420:25935872 -g1,8393:62087500,1915420 +k1,8606:62087500,1915420:25935872 +g1,8606:62087500,1915420 ) ] ) -g1,8393:36675916,2439708 -(1,8393:36675916,2439708:1179648,16384,0 -r1,10153:37855564,2439708:1179648,16384,0 +g1,8606:36675916,2439708 +(1,8606:36675916,2439708:1179648,16384,0 +r1,9299:37855564,2439708:1179648,16384,0 ) ) -k1,10153:3078556,2439708:-34777008 +k1,9299:3078556,2439708:-34777008 ) ] -[1,10153:3078558,4812305:0,0,0 -(1,10153:3078558,49800853:0,16384,2228224 -k1,10153:1358238,49800853:-1720320 -(1,8393:1358238,49800853:1720320,16384,2228224 -(1,8393:1358238,49800853:1179648,16384,0 -r1,10153:2537886,49800853:1179648,16384,0 +[1,9299:3078558,4812305:0,0,0 +(1,9299:3078558,49800853:0,16384,2228224 +k1,9299:1358238,49800853:-1720320 +(1,8606:1358238,49800853:1720320,16384,2228224 +(1,8606:1358238,49800853:1179648,16384,0 +r1,9299:2537886,49800853:1179648,16384,0 ) -g1,8393:3062174,49800853 -(1,8393:3062174,52029077:16384,1703936,0 -[1,8393:3062174,52029077:25952256,1703936,0 -(1,8393:3062174,51504789:25952256,1179648,0 -(1,8393:3062174,51504789:16384,1179648,0 -r1,10153:3078558,51504789:16384,1179648,0 +g1,8606:3062174,49800853 +(1,8606:3062174,52029077:16384,1703936,0 +[1,8606:3062174,52029077:25952256,1703936,0 +(1,8606:3062174,51504789:25952256,1179648,0 +(1,8606:3062174,51504789:16384,1179648,0 +r1,9299:3078558,51504789:16384,1179648,0 ) -k1,8393:29014430,51504789:25935872 -g1,8393:29014430,51504789 +k1,8606:29014430,51504789:25935872 +g1,8606:29014430,51504789 ) ] ) ) ) ] -[1,10153:3078558,4812305:0,0,0 -(1,10153:3078558,49800853:0,16384,2228224 -g1,10153:29030814,49800853 -g1,10153:36135244,49800853 -(1,8393:36135244,49800853:1720320,16384,2228224 -(1,8393:36135244,52029077:16384,1703936,0 -[1,8393:36135244,52029077:25952256,1703936,0 -(1,8393:36135244,51504789:25952256,1179648,0 -(1,8393:36135244,51504789:16384,1179648,0 -r1,10153:36151628,51504789:16384,1179648,0 -) -k1,8393:62087500,51504789:25935872 -g1,8393:62087500,51504789 -) -] -) -g1,8393:36675916,49800853 -(1,8393:36675916,49800853:1179648,16384,0 -r1,10153:37855564,49800853:1179648,16384,0 -) -) -k1,10153:3078556,49800853:-34777008 -) -] -g1,10153:6630773,4812305 -g1,10153:6630773,4812305 -g1,10153:9524187,4812305 -k1,10153:31387651,4812305:21863464 -) -) -] -[1,10153:6630773,45706769:25952256,40108032,0 -(1,10153:6630773,45706769:25952256,40108032,0 -(1,10153:6630773,45706769:0,0,0 -g1,10153:6630773,45706769 -) -[1,10153:6630773,45706769:25952256,40108032,0 -v1,10141:6630773,6254097:0,393216,0 -(1,10141:6630773,27551115:25952256,21690234,0 -g1,10141:6630773,27551115 -g1,10141:6303093,27551115 -r1,10153:6401397,27551115:98304,21690234,0 -g1,10141:6600626,27551115 -g1,10141:6797234,27551115 -[1,10141:6797234,27551115:25785795,21690234,0 -(1,10096:6797234,6374028:25785795,513147,126483 -k1,10095:8652381,6374028:188566 -k1,10095:10429540,6374028:188566 -k1,10095:11304268,6374028:188566 -k1,10095:11907667,6374028:188556 -k1,10095:13197238,6374028:188566 -k1,10095:13741664,6374028:188566 -k1,10095:16625726,6374028:188566 -(1,10095:16625726,6374028:0,452978,115847 -r1,10153:18390839,6374028:1765113,568825,115847 -k1,10095:16625726,6374028:-1765113 -) -(1,10095:16625726,6374028:1765113,452978,115847 -k1,10095:16625726,6374028:3277 -h1,10095:18387562,6374028:0,411205,112570 -) -k1,10095:18579405,6374028:188566 -k1,10095:20653442,6374028:188566 -k1,10095:23182954,6374028:188566 -k1,10095:24390605,6374028:188566 -k1,10095:25944287,6374028:188567 -k1,10095:26792145,6374028:188566 -k1,10095:27336571,6374028:188566 -k1,10095:29503014,6374028:188566 -k1,10095:31896867,6374028:188566 -k1,10095:32583029,6374028:0 -) -(1,10096:6797234,7215516:25785795,513147,134348 -k1,10095:7772561,7215516:186929 -k1,10095:11205488,7215516:186929 -k1,10095:14490303,7215516:186928 -k1,10095:15696317,7215516:186929 -k1,10095:17549827,7215516:186929 -k1,10095:19151678,7215516:186929 -k1,10095:20100134,7215516:186928 -k1,10095:21057766,7215516:186929 -k1,10095:23797322,7215516:186929 -k1,10095:26679747,7215516:186929 -k1,10095:27970957,7215516:186928 -k1,10095:28905652,7215516:186929 -k1,10095:31931601,7215516:186929 -k1,10095:32583029,7215516:0 -) -(1,10096:6797234,8057004:25785795,513147,134348 -g1,10095:9625767,8057004 -g1,10095:13900680,8057004 -k1,10096:32583029,8057004:14628947 -g1,10096:32583029,8057004 -) -v1,10098:6797234,9247470:0,393216,0 -(1,10109:6797234,12868291:25785795,4014037,196608 -g1,10109:6797234,12868291 -g1,10109:6797234,12868291 -g1,10109:6600626,12868291 -(1,10109:6600626,12868291:0,4014037,196608 -r1,10153:32779637,12868291:26179011,4210645,196608 -k1,10109:6600625,12868291:-26179012 -) -(1,10109:6600626,12868291:26179011,4014037,196608 -[1,10109:6797234,12868291:25785795,3817429,0 -(1,10100:6797234,9461380:25785795,410518,101187 -(1,10099:6797234,9461380:0,0,0 -g1,10099:6797234,9461380 -g1,10099:6797234,9461380 -g1,10099:6469554,9461380 -(1,10099:6469554,9461380:0,0,0 -) -g1,10099:6797234,9461380 -) -g1,10100:9326400,9461380 -g1,10100:10274838,9461380 -g1,10100:15649316,9461380 -g1,10100:16281608,9461380 -k1,10100:16281608,9461380:23593 -h1,10100:18202075,9461380:0,0,0 -k1,10100:32583029,9461380:14380954 -g1,10100:32583029,9461380 -) -(1,10101:6797234,10127558:25785795,410518,76021 -h1,10101:6797234,10127558:0,0,0 -g1,10101:8061817,10127558 -g1,10101:9010254,10127558 -g1,10101:9958691,10127558 -g1,10101:13436295,10127558 -h1,10101:13752441,10127558:0,0,0 -k1,10101:32583029,10127558:18830588 -g1,10101:32583029,10127558 -) -(1,10102:6797234,10793736:25785795,404226,82312 -h1,10102:6797234,10793736:0,0,0 -g1,10102:7113380,10793736 -g1,10102:7429526,10793736 -g1,10102:10907129,10793736 -g1,10102:11855567,10793736 -g1,10102:14700879,10793736 -h1,10102:15333170,10793736:0,0,0 -k1,10102:32583030,10793736:17249860 -g1,10102:32583030,10793736 -) -(1,10103:6797234,11459914:25785795,404226,76021 -h1,10103:6797234,11459914:0,0,0 -h1,10103:7113380,11459914:0,0,0 -k1,10103:32583028,11459914:25469648 -g1,10103:32583028,11459914 -) -(1,10104:6797234,12126092:25785795,404226,101187 -h1,10104:6797234,12126092:0,0,0 -k1,10104:6797234,12126092:0 -h1,10104:11223273,12126092:0,0,0 -k1,10104:32583029,12126092:21359756 -g1,10104:32583029,12126092 -) -(1,10108:6797234,12792270:25785795,404226,76021 -(1,10106:6797234,12792270:0,0,0 -g1,10106:6797234,12792270 -g1,10106:6797234,12792270 -g1,10106:6469554,12792270 -(1,10106:6469554,12792270:0,0,0 -) -g1,10106:6797234,12792270 -) -g1,10108:7745671,12792270 -g1,10108:8061817,12792270 -g1,10108:9326400,12792270 -g1,10108:10590983,12792270 -g1,10108:11855566,12792270 -g1,10108:13120149,12792270 -g1,10108:14384732,12792270 -g1,10108:15649315,12792270 -g1,10108:16913898,12792270 -g1,10108:18178481,12792270 -g1,10108:19443064,12792270 -g1,10108:20707647,12792270 -h1,10108:21656084,12792270:0,0,0 -k1,10108:32583029,12792270:10926945 -g1,10108:32583029,12792270 -) -] -) -g1,10109:32583029,12868291 -g1,10109:6797234,12868291 -g1,10109:6797234,12868291 -g1,10109:32583029,12868291 -g1,10109:32583029,12868291 -) -h1,10109:6797234,13064899:0,0,0 -(1,10113:6797234,14430675:25785795,513147,115847 -h1,10112:6797234,14430675:983040,0,0 -(1,10112:7780274,14430675:0,452978,115847 -r1,10153:9897099,14430675:2116825,568825,115847 -k1,10112:7780274,14430675:-2116825 -) -(1,10112:7780274,14430675:2116825,452978,115847 -g1,10112:9542110,14430675 -h1,10112:9893822,14430675:0,411205,112570 -) -k1,10112:10065777,14430675:168678 -k1,10112:12385347,14430675:168678 -k1,10112:13757922,14430675:168679 -(1,10112:13757922,14430675:0,452978,115847 -r1,10153:14116188,14430675:358266,568825,115847 -k1,10112:13757922,14430675:-358266 -) -(1,10112:13757922,14430675:358266,452978,115847 -k1,10112:13757922,14430675:3277 -h1,10112:14112911,14430675:0,411205,112570 -) -k1,10112:14284866,14430675:168678 -k1,10112:15644989,14430675:168678 -k1,10112:16579783,14430675:168678 -k1,10112:19635323,14430675:168679 -k1,10112:23062451,14430675:168678 -k1,10112:23847167,14430675:168678 -k1,10112:24430658,14430675:168648 -k1,10112:25618421,14430675:168678 -k1,10112:26990996,14430675:168679 -k1,10112:28908830,14430675:168678 -k1,10112:31103226,14430675:168678 -k1,10113:32583029,14430675:0 -k1,10113:32583029,14430675:0 -) -(1,10116:6797234,15272163:25785795,513147,126483 -h1,10114:6797234,15272163:983040,0,0 -k1,10114:9553325,15272163:307666 -k1,10114:12192107,15272163:307666 -k1,10114:14244997,15272163:307666 -k1,10114:15656946,15272163:307667 -k1,10114:16712378,15272163:307666 -k1,10114:20390561,15272163:307666 -k1,10114:21164188,15272163:307666 -k1,10114:22340206,15272163:307666 -k1,10114:23740357,15272163:307666 -k1,10114:24818727,15272163:307667 -k1,10114:26918803,15272163:307666 -k1,10114:30095635,15272163:307666 -k1,10114:31896867,15272163:307666 -k1,10116:32583029,15272163:0 -) -(1,10116:6797234,16113651:25785795,513147,126483 -(1,10114:6797234,16113651:0,452978,115847 -r1,10153:9265771,16113651:2468537,568825,115847 -k1,10114:6797234,16113651:-2468537 -) -(1,10114:6797234,16113651:2468537,452978,115847 -k1,10114:6797234,16113651:3277 -h1,10114:9262494,16113651:0,411205,112570 -) -k1,10114:9594414,16113651:154973 -(1,10114:9594414,16113651:0,452978,115847 -r1,10153:12414663,16113651:2820249,568825,115847 -k1,10114:9594414,16113651:-2820249 -) -(1,10114:9594414,16113651:2820249,452978,115847 -k1,10114:9594414,16113651:3277 -h1,10114:12411386,16113651:0,411205,112570 -) -k1,10114:12569637,16113651:154974 -k1,10114:13407495,16113651:154973 -(1,10114:13407495,16113651:0,452978,115847 -r1,10153:16227744,16113651:2820249,568825,115847 -k1,10114:13407495,16113651:-2820249 -) -(1,10114:13407495,16113651:2820249,452978,115847 -k1,10114:13407495,16113651:3277 -h1,10114:16224467,16113651:0,411205,112570 -) -k1,10114:16556387,16113651:154973 -k1,10114:17327399,16113651:154974 -k1,10114:19145020,16113651:154973 -k1,10114:19959285,16113651:154973 -k1,10114:21133344,16113651:154974 -k1,10114:22990287,16113651:154973 -(1,10114:22990287,16113651:0,459977,115847 -r1,10153:24051976,16113651:1061689,575824,115847 -k1,10114:22990287,16113651:-1061689 -) -(1,10114:22990287,16113651:1061689,459977,115847 -k1,10114:22990287,16113651:3277 -h1,10114:24048699,16113651:0,411205,112570 -) -k1,10114:24206950,16113651:154974 -k1,10114:25950516,16113651:154973 -k1,10114:27155376,16113651:154973 -k1,10114:29589037,16113651:154974 -h1,10114:30559625,16113651:0,0,0 -k1,10114:30714598,16113651:154973 -k1,10114:32583029,16113651:0 -) -(1,10116:6797234,16955139:25785795,513147,126483 -g1,10115:7944114,16955139 -g1,10115:10260811,16955139 -g1,10115:11269410,16955139 -g1,10115:12487724,16955139 -g1,10115:13779438,16955139 -g1,10115:14637959,16955139 -g1,10115:15856273,16955139 -g1,10115:18817845,16955139 -g1,10115:20809484,16955139 -k1,10116:32583029,16955139:8574077 -g1,10116:32583029,16955139 -) -v1,10118:6797234,18145605:0,393216,0 -(1,10126:6797234,19761600:25785795,2009211,196608 -g1,10126:6797234,19761600 -g1,10126:6797234,19761600 -g1,10126:6600626,19761600 -(1,10126:6600626,19761600:0,2009211,196608 -r1,10153:32779637,19761600:26179011,2205819,196608 -k1,10126:6600625,19761600:-26179012 -) -(1,10126:6600626,19761600:26179011,2009211,196608 -[1,10126:6797234,19761600:25785795,1812603,0 -(1,10120:6797234,18353223:25785795,404226,101187 -(1,10119:6797234,18353223:0,0,0 -g1,10119:6797234,18353223 -g1,10119:6797234,18353223 -g1,10119:6469554,18353223 -(1,10119:6469554,18353223:0,0,0 -) -g1,10119:6797234,18353223 -) -g1,10120:9326400,18353223 -g1,10120:10274838,18353223 -g1,10120:13120149,18353223 -g1,10120:15333169,18353223 -g1,10120:15965461,18353223 -g1,10120:16913899,18353223 -g1,10120:18494628,18353223 -g1,10120:19126920,18353223 -g1,10120:21972231,18353223 -g1,10120:25133688,18353223 -k1,10120:25133688,18353223:0 -h1,10120:26398271,18353223:0,0,0 -k1,10120:32583029,18353223:6184758 -g1,10120:32583029,18353223 -) -(1,10121:6797234,19019401:25785795,404226,101187 -h1,10121:6797234,19019401:0,0,0 -k1,10121:6797234,19019401:0 -h1,10121:11223273,19019401:0,0,0 -k1,10121:32583029,19019401:21359756 -g1,10121:32583029,19019401 -) -(1,10125:6797234,19685579:25785795,404226,76021 -(1,10123:6797234,19685579:0,0,0 -g1,10123:6797234,19685579 -g1,10123:6797234,19685579 -g1,10123:6469554,19685579 -(1,10123:6469554,19685579:0,0,0 -) -g1,10123:6797234,19685579 -) -g1,10125:7745671,19685579 -g1,10125:8061817,19685579 -g1,10125:9326400,19685579 -g1,10125:10590983,19685579 -g1,10125:11855566,19685579 -g1,10125:13120149,19685579 -g1,10125:14384732,19685579 -g1,10125:15649315,19685579 -g1,10125:16913898,19685579 -g1,10125:18178481,19685579 -g1,10125:19443064,19685579 -g1,10125:20707647,19685579 -h1,10125:21656084,19685579:0,0,0 -k1,10125:32583029,19685579:10926945 -g1,10125:32583029,19685579 -) -] -) -g1,10126:32583029,19761600 -g1,10126:6797234,19761600 -g1,10126:6797234,19761600 -g1,10126:32583029,19761600 -g1,10126:32583029,19761600 -) -h1,10126:6797234,19958208:0,0,0 -(1,10129:6797234,21323984:25785795,513147,134348 -h1,10128:6797234,21323984:983040,0,0 -k1,10128:11577079,21323984:223782 -k1,10128:13004757,21323984:223782 -k1,10128:14923955,21323984:223782 -k1,10128:15679235,21323984:223783 -k1,10128:16258877,21323984:223782 -k1,10128:19221409,21323984:223782 -k1,10128:22693155,21323984:223782 -k1,10128:23641765,21323984:223782 -k1,10128:24280365,21323984:223757 -k1,10128:25605153,21323984:223783 -k1,10128:26184795,21323984:223782 -k1,10128:28716100,21323984:223782 -k1,10128:31635378,21323984:223782 -k1,10128:32583029,21323984:0 -) -(1,10129:6797234,22165472:25785795,513147,134348 -k1,10128:8323321,22165472:149176 -k1,10128:9290385,22165472:149175 -k1,10128:11473143,22165472:149176 -k1,10128:13016269,22165472:149175 -(1,10128:13016269,22165472:0,459977,115847 -r1,10153:15133094,22165472:2116825,575824,115847 -k1,10128:13016269,22165472:-2116825 -) -(1,10128:13016269,22165472:2116825,459977,115847 -k1,10128:13016269,22165472:3277 -h1,10128:15129817,22165472:0,411205,112570 -) -k1,10128:15455940,22165472:149176 -k1,10128:16063212,22165472:149175 -k1,10128:16743885,22165472:149176 -k1,10128:19022325,22165472:149175 -k1,10128:22736660,22165472:149176 -k1,10128:23537264,22165472:149176 -k1,10128:25508340,22165472:149175 -k1,10128:26123477,22165472:149176 -k1,10128:27927436,22165472:149175 -k1,10128:28608109,22165472:149176 -k1,10128:29527987,22165472:149175 -k1,10128:32168186,22165472:149176 -k1,10129:32583029,22165472:0 -) -(1,10129:6797234,23006960:25785795,513147,134348 -k1,10128:9826177,23006960:159777 -k1,10128:13238505,23006960:159776 -k1,10128:14345933,23006960:159777 -k1,10128:18755064,23006960:159777 -k1,10128:21333774,23006960:159776 -k1,10128:22152843,23006960:159777 -k1,10128:24118137,23006960:159777 -k1,10128:25296999,23006960:159777 -k1,10128:29850964,23006960:159776 -k1,10128:30879093,23006960:159777 -k1,10128:32583029,23006960:0 -) -(1,10129:6797234,23848448:25785795,513147,134348 -k1,10128:7584522,23848448:159453 -k1,10128:8947216,23848448:159453 -k1,10128:10647419,23848448:159452 -k1,10128:12542265,23848448:159453 -(1,10128:12542265,23848448:0,452978,115847 -r1,10153:15714225,23848448:3171960,568825,115847 -k1,10128:12542265,23848448:-3171960 -) -(1,10128:12542265,23848448:3171960,452978,115847 -k1,10128:12542265,23848448:3277 -h1,10128:15710948,23848448:0,411205,112570 -) -k1,10128:15873678,23848448:159453 -k1,10128:19119877,23848448:159453 -k1,10128:20298414,23848448:159452 -k1,10128:22575335,23848448:159453 -k1,10128:24480012,23848448:159453 -k1,10128:25906931,23848448:159453 -k1,10128:26422243,23848448:159452 -k1,10128:28454715,23848448:159453 -k1,10128:31309664,23848448:159453 -k1,10128:32583029,23848448:0 -) -(1,10129:6797234,24689936:25785795,513147,134348 -g1,10128:8463159,24689936 -g1,10128:11934601,24689936 -g1,10128:16209514,24689936 -g1,10128:17600188,24689936 -k1,10129:32583029,24689936:11415061 -g1,10129:32583029,24689936 -) -v1,10131:6797234,25880402:0,393216,0 -(1,10138:6797234,26830219:25785795,1343033,196608 -g1,10138:6797234,26830219 -g1,10138:6797234,26830219 -g1,10138:6600626,26830219 -(1,10138:6600626,26830219:0,1343033,196608 -r1,10153:32779637,26830219:26179011,1539641,196608 -k1,10138:6600625,26830219:-26179012 -) -(1,10138:6600626,26830219:26179011,1343033,196608 -[1,10138:6797234,26830219:25785795,1146425,0 -(1,10133:6797234,26088020:25785795,404226,76021 -(1,10132:6797234,26088020:0,0,0 -g1,10132:6797234,26088020 -g1,10132:6797234,26088020 -g1,10132:6469554,26088020 -(1,10132:6469554,26088020:0,0,0 -) -g1,10132:6797234,26088020 -) -k1,10133:6797234,26088020:0 -h1,10133:9958691,26088020:0,0,0 -k1,10133:32583029,26088020:22624338 -g1,10133:32583029,26088020 -) -(1,10137:6797234,26754198:25785795,404226,76021 -(1,10135:6797234,26754198:0,0,0 -g1,10135:6797234,26754198 -g1,10135:6797234,26754198 -g1,10135:6469554,26754198 -(1,10135:6469554,26754198:0,0,0 -) -g1,10135:6797234,26754198 -) -g1,10137:7745671,26754198 -g1,10137:8061817,26754198 -g1,10137:9326400,26754198 -g1,10137:10590983,26754198 -g1,10137:11855566,26754198 -g1,10137:13120149,26754198 -g1,10137:14384732,26754198 -g1,10137:15649315,26754198 -g1,10137:16913898,26754198 -g1,10137:18178481,26754198 -g1,10137:19443064,26754198 -g1,10137:20707647,26754198 -h1,10137:21656084,26754198:0,0,0 -k1,10137:32583029,26754198:10926945 -g1,10137:32583029,26754198 -) -] -) -g1,10138:32583029,26830219 -g1,10138:6797234,26830219 -g1,10138:6797234,26830219 -g1,10138:32583029,26830219 -g1,10138:32583029,26830219 -) -h1,10138:6797234,27026827:0,0,0 -] -g1,10141:32583029,27551115 -) -h1,10141:6630773,27551115:0,0,0 -v1,10144:6630773,28916891:0,393216,0 -(1,10146:6630773,35366328:25952256,6842653,0 -g1,10146:6630773,35366328 -g1,10146:6303093,35366328 -r1,10153:6401397,35366328:98304,6842653,0 -g1,10146:6600626,35366328 -g1,10146:6797234,35366328 -[1,10146:6797234,35366328:25785795,6842653,0 -(1,10146:6797234,29349429:25785795,825754,196608 -(1,10144:6797234,29349429:0,825754,196608 -r1,10153:7890375,29349429:1093141,1022362,196608 -k1,10144:6797234,29349429:-1093141 -) -(1,10144:6797234,29349429:1093141,825754,196608 -) -k1,10144:8117457,29349429:227082 -k1,10144:9843675,29349429:327680 -k1,10144:10676310,29349429:227082 -k1,10144:12324213,29349429:227082 -k1,10144:14507545,29349429:227082 -k1,10144:15905100,29349429:227082 -k1,10144:18372858,29349429:227082 -k1,10144:19803182,29349429:227083 -k1,10144:21178455,29349429:227082 -k1,10144:24240624,29349429:227082 -k1,10144:25192534,29349429:227082 -k1,10144:26704122,29349429:227082 -k1,10144:28306805,29349429:227082 -k1,10144:29552972,29349429:227082 -k1,10144:30928245,29349429:227082 -k1,10144:32583029,29349429:0 -) -(1,10146:6797234,30190917:25785795,513147,126483 -k1,10144:9808895,30190917:298470 -k1,10144:11098924,30190917:298469 -k1,10144:13362819,30190917:298470 -k1,10144:14823898,30190917:298470 -k1,10144:17187406,30190917:298469 -k1,10144:19308432,30190917:298470 -k1,10144:20699387,30190917:298470 -k1,10144:21657148,30190917:298469 -k1,10144:25262565,30190917:298470 -k1,10144:26212462,30190917:298469 -k1,10144:28331522,30190917:298470 -k1,10144:28985852,30190917:298470 -k1,10144:30606182,30190917:298469 -k1,10144:31563944,30190917:298470 -k1,10144:32583029,30190917:0 -) -(1,10146:6797234,31032405:25785795,513147,126483 -k1,10144:9414490,31032405:149170 -k1,10145:10169213,31032405:149170 -k1,10145:11147413,31032405:149170 -k1,10145:13320335,31032405:149170 -k1,10145:15852394,31032405:149170 -k1,10145:17870651,31032405:149170 -k1,10145:19176530,31032405:149169 -k1,10145:21094517,31032405:149170 -k1,10145:23505990,31032405:149170 -k1,10145:24674245,31032405:149170 -k1,10145:26940883,31032405:149170 -k1,10145:28835277,31032405:149170 -k1,10145:30871884,31032405:149170 -k1,10145:32583029,31032405:0 -) -(1,10146:6797234,31873893:25785795,513147,126483 -k1,10145:10157757,31873893:221348 -k1,10145:11398190,31873893:221348 -k1,10145:13706860,31873893:221348 -k1,10145:15119653,31873893:221348 -k1,10145:16433486,31873893:221348 -(1,10145:16433486,31873893:0,452978,115847 -r1,10153:19605446,31873893:3171960,568825,115847 -k1,10145:16433486,31873893:-3171960 -) -(1,10145:16433486,31873893:3171960,452978,115847 -k1,10145:16433486,31873893:3277 -h1,10145:19602169,31873893:0,411205,112570 -) -k1,10145:19826794,31873893:221348 -k1,10145:21935580,31873893:221349 -k1,10145:23868073,31873893:221348 -k1,10145:24772306,31873893:221348 -k1,10145:26380396,31873893:221348 -k1,10145:27437328,31873893:221348 -k1,10145:28124637,31873893:221348 -k1,10145:30000769,31873893:221348 -k1,10145:30753614,31873893:221348 -k1,10145:31591000,31873893:221348 -k1,10145:32227169,31873893:221326 -k1,10145:32583029,31873893:0 -) -(1,10146:6797234,32715381:25785795,513147,134348 -k1,10145:9679271,32715381:186541 -k1,10145:10813463,32715381:186541 -k1,10145:12203246,32715381:186542 -k1,10145:15637751,32715381:186541 -k1,10145:16311867,32715381:186528 -k1,10145:18082414,32715381:186542 -k1,10145:19931603,32715381:186541 -k1,10145:20769572,32715381:186541 -k1,10145:22444436,32715381:186541 -k1,10145:23162474,32715381:186541 -k1,10145:24742967,32715381:186542 -(1,10145:24742967,32715381:0,452978,115847 -r1,10153:29321775,32715381:4578808,568825,115847 -k1,10145:24742967,32715381:-4578808 -) -(1,10145:24742967,32715381:4578808,452978,115847 -k1,10145:24742967,32715381:3277 -h1,10145:29318498,32715381:0,411205,112570 -) -k1,10145:29508316,32715381:186541 -k1,10145:30381019,32715381:186541 -k1,10145:32583029,32715381:0 -) -(1,10146:6797234,33556869:25785795,513147,134348 -k1,10145:10095180,33556869:272149 -k1,10145:11704263,33556869:272149 -k1,10145:13713116,33556869:272149 -k1,10145:15004351,33556869:272150 -k1,10145:16929973,33556869:272149 -k1,10145:18590175,33556869:272149 -k1,10145:20534147,33556869:272149 -k1,10145:21489181,33556869:272149 -k1,10145:22374092,33556869:272149 -k1,10145:24141773,33556869:272149 -k1,10145:25161688,33556869:272149 -k1,10145:27195446,33556869:272150 -k1,10145:28083633,33556869:272149 -k1,10145:29374867,33556869:272149 -k1,10145:30997058,33556869:272149 -k1,10145:32583029,33556869:0 -) -(1,10146:6797234,34398357:25785795,513147,134348 -k1,10145:9426866,34398357:177275 -k1,10145:10501984,34398357:177275 -k1,10145:11585622,34398357:177275 -k1,10145:13139807,34398357:177274 -k1,10145:14508527,34398357:177275 -k1,10145:17054273,34398357:177275 -k1,10145:18933518,34398357:177275 -k1,10145:20498846,34398357:177275 -k1,10145:22504575,34398357:177275 -k1,10145:23297888,34398357:177275 -k1,10145:25545444,34398357:177274 -k1,10145:26670370,34398357:177275 -k1,10145:28539785,34398357:177275 -k1,10145:31412556,34398357:177275 -k1,10145:32583029,34398357:0 -) -(1,10146:6797234,35239845:25785795,513147,126483 -g1,10145:8333397,35239845 -g1,10145:9798782,35239845 -g1,10145:11975232,35239845 -g1,10145:12790499,35239845 -g1,10145:14008813,35239845 -g1,10145:16762635,35239845 -g1,10145:17621156,35239845 -g1,10145:19279216,35239845 -g1,10145:20808826,35239845 -k1,10146:32583029,35239845:10211169 -g1,10146:32583029,35239845 -) -] -g1,10146:32583029,35366328 -) -h1,10146:6630773,35366328:0,0,0 -(1,10148:6630773,36994248:25952256,505283,126483 -(1,10148:6630773,36994248:0,0,0 -g1,10148:6630773,36994248 -) -k1,10148:32583029,36994248:23066706 -g1,10148:32583029,36994248 -) -(1,10151:6630773,38228952:25952256,513147,126483 -k1,10150:10361036,38228952:257510 -k1,10150:11486897,38228952:257509 -k1,10150:13274673,38228952:257510 -k1,10150:14183610,38228952:257509 -k1,10150:16156853,38228952:257510 -k1,10150:17795206,38228952:257509 -k1,10150:19337222,38228952:257510 -k1,10150:22300057,38228952:257509 -k1,10150:24053754,38228952:257510 -k1,10150:24842760,38228952:257509 -k1,10150:27933391,38228952:257510 -k1,10150:29657596,38228952:257509 -k1,10150:30381067,38228952:257510 -k1,10150:31657661,38228952:257509 -k1,10151:32583029,38228952:0 -) -(1,10151:6630773,39070440:25952256,513147,126483 -k1,10150:9264742,39070440:270741 -k1,10150:10194775,39070440:270741 -k1,10150:10821375,39070440:270740 -k1,10150:12923192,39070440:270741 -k1,10150:13876818,39070440:270741 -k1,10150:16843055,39070440:270741 -k1,10150:17645293,39070440:270741 -k1,10150:20380188,39070440:270741 -k1,10150:21412456,39070440:270740 -k1,10150:22702282,39070440:270741 -k1,10150:24353867,39070440:270741 -k1,10150:25307493,39070440:270741 -k1,10150:26264396,39070440:270741 -k1,10150:26890997,39070440:270741 -k1,10150:29004609,39070440:270740 -k1,10150:29934642,39070440:270741 -k1,10150:30976086,39070440:270741 -k1,10150:32583029,39070440:0 -) -(1,10151:6630773,39911928:25952256,513147,126483 -k1,10150:10060273,39911928:223479 -k1,10150:10771317,39911928:223456 -k1,10150:13129304,39911928:223479 -k1,10150:16014200,39911928:223479 -k1,10150:16769177,39911928:223480 -k1,10150:17348516,39911928:223479 -k1,10150:19403072,39911928:223480 -k1,10150:20911057,39911928:223479 -k1,10150:24874021,39911928:223480 -k1,10150:26362345,39911928:223479 -k1,10150:26941685,39911928:223480 -k1,10150:28509963,39911928:223479 -k1,10150:30654303,39911928:223480 -k1,10150:31563944,39911928:223479 -k1,10150:32583029,39911928:0 -) -(1,10151:6630773,40753416:25952256,513147,134348 -k1,10150:9440354,40753416:222875 -k1,10150:12555334,40753416:222876 -k1,10150:13461094,40753416:222875 -k1,10150:15106757,40753416:222876 -k1,10150:15685492,40753416:222875 -k1,10150:16891408,40753416:222876 -k1,10150:17800445,40753416:222875 -k1,10150:21356481,40753416:222875 -k1,10150:24100527,40753416:222876 -k1,10150:27113270,40753416:222875 -(1,10150:27113270,40753416:0,452978,115847 -r1,10153:30285230,40753416:3171960,568825,115847 -k1,10150:27113270,40753416:-3171960 -) -(1,10150:27113270,40753416:3171960,452978,115847 -k1,10150:27113270,40753416:3277 -h1,10150:30281953,40753416:0,411205,112570 -) -k1,10150:30508106,40753416:222876 -k1,10150:31835263,40753416:222875 -k1,10150:32583029,40753416:0 -) -(1,10151:6630773,41594904:25952256,505283,126483 -k1,10150:8317763,41594904:173764 -k1,10150:9142955,41594904:173764 -k1,10150:11389623,41594904:173764 -k1,10150:12847892,41594904:173763 -k1,10150:13377516,41594904:173764 -k1,10150:14932124,41594904:173764 -k1,10150:17866920,41594904:173764 -k1,10150:21480669,41594904:173764 -k1,10150:23515000,41594904:173764 -k1,10150:24340192,41594904:173764 -k1,10150:25261721,41594904:173763 -k1,10150:28268606,41594904:173764 -k1,10150:30140408,41594904:173764 -k1,10150:31333257,41594904:173764 -k1,10151:32583029,41594904:0 -) -(1,10151:6630773,42436392:25952256,513147,126483 -k1,10150:8166834,42436392:228618 -k1,10150:11264619,42436392:228619 -k1,10150:12176122,42436392:228618 -k1,10150:12760601,42436392:228619 -k1,10150:14993965,42436392:228618 -k1,10150:16897028,42436392:228618 -k1,10150:19915515,42436392:228619 -(1,10150:19915515,42436392:0,452978,115847 -r1,10153:23087475,42436392:3171960,568825,115847 -k1,10150:19915515,42436392:-3171960 -) -(1,10150:19915515,42436392:3171960,452978,115847 -k1,10150:19915515,42436392:3277 -h1,10150:23084198,42436392:0,411205,112570 -) -k1,10150:23316093,42436392:228618 -k1,10150:24648993,42436392:228618 -k1,10150:26163428,42436392:228619 -k1,10150:28107779,42436392:228618 -k1,10150:29832585,42436392:228619 -k1,10150:31931601,42436392:228618 -k1,10150:32583029,42436392:0 -) -(1,10151:6630773,43277880:25952256,513147,126483 -k1,10150:8227845,43277880:184771 -k1,10150:9098777,43277880:184770 -k1,10150:9741645,43277880:184771 -k1,10150:11764700,43277880:184770 -k1,10150:14542075,43277880:184771 -k1,10150:15918290,43277880:184770 -k1,10150:18808387,43277880:184771 -k1,10150:20377277,43277880:184770 -k1,10150:21213476,43277880:184771 -k1,10150:22849869,43277880:184771 -k1,10150:24736609,43277880:184770 -k1,10150:25537418,43277880:184771 -k1,10150:26741273,43277880:184770 -k1,10150:28502840,43277880:184771 -k1,10150:29346902,43277880:184770 -k1,10150:29887533,43277880:184771 -k1,10150:32583029,43277880:0 -) -(1,10151:6630773,44119368:25952256,513147,134348 -g1,10150:7512887,44119368 -g1,10150:8328154,44119368 -g1,10150:9546468,44119368 -g1,10150:11729472,44119368 -g1,10150:12587993,44119368 -g1,10150:13143082,44119368 -k1,10151:32583028,44119368:17435200 -g1,10151:32583028,44119368 -) -] -(1,10153:32583029,45706769:0,0,0 -g1,10153:32583029,45706769 -) -) -] -(1,10153:6630773,47279633:25952256,0,0 -h1,10153:6630773,47279633:25952256,0,0 -) -] -(1,10153:4262630,4025873:0,0,0 -[1,10153:-473656,4025873:0,0,0 -(1,10153:-473656,-710413:0,0,0 -(1,10153:-473656,-710413:0,0,0 -g1,10153:-473656,-710413 -) -g1,10153:-473656,-710413 -) -] -) -] -!28249 -}170 -Input:1494:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1495:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1496:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1497:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1498:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1499:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1500:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1501:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1502:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1503:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1504:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1505:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1506:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1507:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1508:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1509:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1510:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1511:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1512:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1513:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1514:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1515:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1516:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1517:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1518:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1519:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1520:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1521:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1522:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1523:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1524:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!2926 -{171 -[1,10184:4262630,47279633:28320399,43253760,0 -(1,10184:4262630,4025873:0,0,0 -[1,10184:-473656,4025873:0,0,0 -(1,10184:-473656,-710413:0,0,0 -(1,10184:-473656,-644877:0,0,0 -k1,10184:-473656,-644877:-65536 +[1,9299:3078558,4812305:0,0,0 +(1,9299:3078558,49800853:0,16384,2228224 +g1,9299:29030814,49800853 +g1,9299:36135244,49800853 +(1,8606:36135244,49800853:1720320,16384,2228224 +(1,8606:36135244,52029077:16384,1703936,0 +[1,8606:36135244,52029077:25952256,1703936,0 +(1,8606:36135244,51504789:25952256,1179648,0 +(1,8606:36135244,51504789:16384,1179648,0 +r1,9299:36151628,51504789:16384,1179648,0 ) -(1,10184:-473656,4736287:0,0,0 -k1,10184:-473656,4736287:5209943 -) -g1,10184:-473656,-710413 +k1,8606:62087500,51504789:25935872 +g1,8606:62087500,51504789 ) ] ) -[1,10184:6630773,47279633:25952256,43253760,0 -[1,10184:6630773,4812305:25952256,786432,0 -(1,10184:6630773,4812305:25952256,505283,134348 -(1,10184:6630773,4812305:25952256,505283,134348 -g1,10184:3078558,4812305 -[1,10184:3078558,4812305:0,0,0 -(1,10184:3078558,2439708:0,1703936,0 -k1,10184:1358238,2439708:-1720320 -(1,8393:1358238,2439708:1720320,1703936,0 -(1,8393:1358238,2439708:1179648,16384,0 -r1,10184:2537886,2439708:1179648,16384,0 -) -g1,8393:3062174,2439708 -(1,8393:3062174,2439708:16384,1703936,0 -[1,8393:3062174,2439708:25952256,1703936,0 -(1,8393:3062174,1915420:25952256,1179648,0 -(1,8393:3062174,1915420:16384,1179648,0 -r1,10184:3078558,1915420:16384,1179648,0 +g1,8606:36675916,49800853 +(1,8606:36675916,49800853:1179648,16384,0 +r1,9299:37855564,49800853:1179648,16384,0 ) -k1,8393:29014430,1915420:25935872 -g1,8393:29014430,1915420 -) -] ) +k1,9299:3078556,49800853:-34777008 +) +] +g1,9299:6630773,4812305 +g1,9299:6630773,4812305 +g1,9299:10456764,4812305 +g1,9299:13962940,4812305 +k1,9299:31387652,4812305:17424712 +) +) +] +[1,9299:6630773,45706769:25952256,40108032,0 +(1,9299:6630773,45706769:25952256,40108032,0 +(1,9299:6630773,45706769:0,0,0 +g1,9299:6630773,45706769 +) +[1,9299:6630773,45706769:25952256,40108032,0 +(1,9222:6630773,6254097:25952256,513147,134348 +h1,9221:6630773,6254097:983040,0,0 +k1,9221:8821522,6254097:254160 +k1,9221:10564006,6254097:254161 +k1,9221:12212117,6254097:254160 +k1,9221:13478808,6254097:254160 +k1,9221:16724688,6254097:254161 +k1,9221:21654842,6254097:254160 +k1,9221:23239384,6254097:254161 +k1,9221:24051911,6254097:254160 +k1,9221:27822733,6254097:254160 +k1,9221:29847021,6254097:254161 +k1,9221:31714677,6254097:254160 +k1,9221:32583029,6254097:0 +) +(1,9222:6630773,7119177:25952256,505283,126483 +k1,9221:7941836,7119177:178601 +k1,9221:9145419,7119177:178600 +k1,9221:12315739,7119177:178601 +k1,9221:14393572,7119177:178600 +k1,9221:15223601,7119177:178601 +k1,9221:16598888,7119177:178600 +k1,9221:17869974,7119177:178601 +k1,9221:19919628,7119177:178601 +k1,9221:21586551,7119177:178600 +(1,9221:21586551,7119177:0,459977,115847 +r1,9299:22999952,7119177:1413401,575824,115847 +k1,9221:21586551,7119177:-1413401 +) +(1,9221:21586551,7119177:1413401,459977,115847 +k1,9221:21586551,7119177:3277 +h1,9221:22996675,7119177:0,411205,112570 +) +k1,9221:23178553,7119177:178601 +k1,9221:25975316,7119177:178600 +k1,9221:27173002,7119177:178601 +k1,9221:30655272,7119177:178600 +k1,9221:31516758,7119177:178601 +k1,9221:32583029,7119177:0 +) +(1,9222:6630773,7984257:25952256,513147,126483 +g1,9221:7489294,7984257 +g1,9221:8707608,7984257 +g1,9221:11031514,7984257 +g1,9221:14417103,7984257 +(1,9221:14417103,7984257:0,452978,115847 +r1,9299:19699334,7984257:5282231,568825,115847 +k1,9221:14417103,7984257:-5282231 +) +(1,9221:14417103,7984257:5282231,452978,115847 +k1,9221:14417103,7984257:3277 +h1,9221:19696057,7984257:0,411205,112570 +) +k1,9222:32583029,7984257:12710025 +g1,9222:32583029,7984257 +) +v1,9224:6630773,8849337:0,393216,0 +(1,9225:6630773,14482463:25952256,6026342,0 +g1,9225:6630773,14482463 +g1,9225:6237557,14482463 +r1,9299:6368629,14482463:131072,6026342,0 +g1,9225:6567858,14482463 +g1,9225:6764466,14482463 +[1,9225:6764466,14482463:25818563,6026342,0 +(1,9225:6764466,9157635:25818563,701514,196608 +(1,9224:6764466,9157635:0,701514,196608 +r1,9299:8010564,9157635:1246098,898122,196608 +k1,9224:6764466,9157635:-1246098 +) +(1,9224:6764466,9157635:1246098,701514,196608 +) +k1,9224:8257177,9157635:246613 +k1,9224:8584857,9157635:327680 +k1,9224:9785018,9157635:246612 +k1,9224:11124116,9157635:246613 +k1,9224:12389814,9157635:246613 +k1,9224:14374441,9157635:246612 +k1,9224:15846577,9157635:246613 +k1,9224:17040841,9157635:246613 +k1,9224:17643314,9157635:246613 +(1,9224:17643314,9157635:0,452978,122846 +r1,9299:20111851,9157635:2468537,575824,122846 +k1,9224:17643314,9157635:-2468537 +) +(1,9224:17643314,9157635:2468537,452978,122846 +k1,9224:17643314,9157635:3277 +h1,9224:20108574,9157635:0,411205,112570 +) +k1,9224:20358463,9157635:246612 +k1,9224:23116416,9157635:246613 +k1,9224:24297572,9157635:246613 +k1,9224:27650591,9157635:246612 +k1,9224:31176626,9157635:246613 +k1,9224:32583029,9157635:0 +) +(1,9225:6764466,10022715:25818563,513147,134348 +k1,9224:7961634,10022715:178083 +k1,9224:9211886,10022715:178083 +k1,9224:10049262,10022715:178084 +k1,9224:11246430,10022715:178083 +k1,9224:13429259,10022715:178083 +k1,9224:14960660,10022715:178083 +k1,9224:16633619,10022715:178083 +k1,9224:18315754,10022715:178084 +k1,9224:20007063,10022715:178083 +k1,9224:20801184,10022715:178083 +k1,9224:23598086,10022715:178083 +k1,9224:24427597,10022715:178083 +k1,9224:27137337,10022715:178084 +k1,9224:27966848,10022715:178083 +k1,9224:29992391,10022715:178083 +k1,9224:32583029,10022715:0 +) +(1,9225:6764466,10887795:25818563,513147,134348 +k1,9224:7712491,10887795:296597 +k1,9224:9411558,10887795:296597 +k1,9224:10391040,10887795:296597 +k1,9224:13465708,10887795:296597 +k1,9224:14375067,10887795:296597 +k1,9224:17212495,10887795:296597 +k1,9224:18700538,10887795:296598 +k1,9224:20882606,10887795:296597 +k1,9224:22881173,10887795:296597 +k1,9224:23829198,10887795:296597 +k1,9224:26110881,10887795:296597 +k1,9224:27020240,10887795:296597 +k1,9224:30478294,10887795:296597 +k1,9224:31923737,10887795:296597 +k1,9225:32583029,10887795:0 +) +(1,9225:6764466,11752875:25818563,513147,134348 +(1,9224:6764466,11752875:0,452978,122846 +r1,9299:9233003,11752875:2468537,575824,122846 +k1,9224:6764466,11752875:-2468537 +) +(1,9224:6764466,11752875:2468537,452978,122846 +k1,9224:6764466,11752875:3277 +h1,9224:9229726,11752875:0,411205,112570 +) +k1,9224:9402922,11752875:169919 +k1,9224:11067717,11752875:169919 +k1,9224:11853674,11752875:169919 +k1,9224:14184970,11752875:169919 +k1,9224:14886386,11752875:169919 +k1,9224:16658005,11752875:169919 +k1,9224:18805146,11752875:169920 +k1,9224:20673103,11752875:169919 +k1,9224:23891101,11752875:169919 +k1,9224:26696223,11752875:169919 +k1,9224:28038581,11752875:169919 +k1,9224:31298523,11752875:169919 +k1,9224:32583029,11752875:0 +) +(1,9225:6764466,12617955:25818563,513147,134348 +k1,9224:9373949,12617955:237735 +k1,9224:10421054,12617955:237735 +k1,9224:13330036,12617955:237735 +k1,9224:16270476,12617955:237735 +k1,9224:20198543,12617955:237735 +k1,9224:20923827,12617955:237696 +k1,9224:23900312,12617955:237735 +k1,9224:25230532,12617955:237735 +k1,9224:26835348,12617955:237735 +k1,9224:28020734,12617955:237735 +k1,9224:29753345,12617955:237735 +k1,9224:30522577,12617955:237735 +k1,9224:32583029,12617955:0 +) +(1,9225:6764466,13483035:25818563,513147,134348 +k1,9224:9655974,13483035:177662 +k1,9224:11025081,13483035:177662 +k1,9224:14106644,13483035:177663 +k1,9224:16856594,13483035:177662 +k1,9224:17693548,13483035:177662 +k1,9224:20029966,13483035:177662 +k1,9224:21775249,13483035:177662 +k1,9224:24624158,13483035:177662 +k1,9224:28318483,13483035:177663 +k1,9224:31433469,13483035:177662 +k1,9224:32227169,13483035:177662 +k1,9224:32583029,13483035:0 +) +(1,9225:6764466,14348115:25818563,505283,134348 +g1,9224:8352403,14348115 +k1,9225:32583029,14348115:22225880 +g1,9225:32583029,14348115 +) +] +g1,9225:32583029,14482463 +) +h1,9225:6630773,14482463:0,0,0 +v1,9228:6630773,15167318:0,393216,0 +(1,9236:6630773,16982359:25952256,2208257,196608 +g1,9236:6630773,16982359 +g1,9236:6630773,16982359 +g1,9236:6434165,16982359 +(1,9236:6434165,16982359:0,2208257,196608 +r1,9299:32779637,16982359:26345472,2404865,196608 +k1,9236:6434165,16982359:-26345472 +) +(1,9236:6434165,16982359:26345472,2208257,196608 +[1,9236:6630773,16982359:25952256,2011649,0 +(1,9230:6630773,15401755:25952256,431045,112852 +(1,9229:6630773,15401755:0,0,0 +g1,9229:6630773,15401755 +g1,9229:6630773,15401755 +g1,9229:6303093,15401755 +(1,9229:6303093,15401755:0,0,0 +) +g1,9229:6630773,15401755 +) +g1,9230:8290543,15401755 +g1,9230:9286405,15401755 +h1,9230:10614221,15401755:0,0,0 +k1,9230:32583029,15401755:21968808 +g1,9230:32583029,15401755 +) +(1,9231:6630773,16086610:25952256,431045,112852 +h1,9231:6630773,16086610:0,0,0 +g1,9231:7626635,16086610 +g1,9231:9950313,16086610 +k1,9231:9950313,16086610:0 +h1,9231:14929622,16086610:0,0,0 +k1,9231:32583030,16086610:17653408 +g1,9231:32583030,16086610 +) +(1,9235:6630773,16902537:25952256,424439,79822 +(1,9233:6630773,16902537:0,0,0 +g1,9233:6630773,16902537 +g1,9233:6630773,16902537 +g1,9233:6303093,16902537 +(1,9233:6303093,16902537:0,0,0 +) +g1,9233:6630773,16902537 +) +g1,9235:7626635,16902537 +g1,9235:8954451,16902537 +h1,9235:11610082,16902537:0,0,0 +k1,9235:32583030,16902537:20972948 +g1,9235:32583030,16902537 +) +] +) +g1,9236:32583029,16982359 +g1,9236:6630773,16982359 +g1,9236:6630773,16982359 +g1,9236:32583029,16982359 +g1,9236:32583029,16982359 +) +h1,9236:6630773,17178967:0,0,0 +v1,9240:6630773,18044047:0,393216,0 +(1,9256:6630773,24653573:25952256,7002742,0 +g1,9256:6630773,24653573 +g1,9256:6237557,24653573 +r1,9299:6368629,24653573:131072,7002742,0 +g1,9256:6567858,24653573 +g1,9256:6764466,24653573 +[1,9256:6764466,24653573:25818563,7002742,0 +(1,9241:6764466,18316524:25818563,665693,196608 +(1,9240:6764466,18316524:0,665693,196608 +r1,9299:8010564,18316524:1246098,862301,196608 +k1,9240:6764466,18316524:-1246098 +) +(1,9240:6764466,18316524:1246098,665693,196608 +) +k1,9240:8189272,18316524:178708 +k1,9240:9507201,18316524:327680 +k1,9240:10983522,18316524:178708 +k1,9240:12556181,18316524:178708 +k1,9240:13753974,18316524:178708 +k1,9240:15428869,18316524:178708 +k1,9240:17462901,18316524:178708 +k1,9240:18403136,18316524:178707 +k1,9240:21465428,18316524:178708 +k1,9240:22663221,18316524:178708 +k1,9240:24522272,18316524:178708 +k1,9240:27475774,18316524:178708 +k1,9240:28305910,18316524:178708 +k1,9240:30995958,18316524:178708 +(1,9240:30995958,18316524:0,459977,122846 +r1,9299:32409359,18316524:1413401,582823,122846 +k1,9240:30995958,18316524:-1413401 +) +(1,9240:30995958,18316524:1413401,459977,122846 +k1,9240:30995958,18316524:3277 +h1,9240:32406082,18316524:0,411205,112570 +) +k1,9241:32583029,18316524:0 +) +(1,9241:6764466,19181604:25818563,505283,122846 +(1,9240:6764466,19181604:0,414482,115847 +r1,9299:8529579,19181604:1765113,530329,115847 +k1,9240:6764466,19181604:-1765113 +) +(1,9240:6764466,19181604:1765113,414482,115847 +k1,9240:6764466,19181604:3277 +h1,9240:8526302,19181604:0,411205,112570 +) +g1,9240:8902478,19181604 +(1,9240:8902478,19181604:0,414482,115847 +r1,9299:9612456,19181604:709978,530329,115847 +k1,9240:8902478,19181604:-709978 +) +(1,9240:8902478,19181604:709978,414482,115847 +k1,9240:8902478,19181604:3277 +h1,9240:9609179,19181604:0,411205,112570 +) +g1,9240:9985355,19181604 +g1,9240:11376029,19181604 +(1,9240:11376029,19181604:0,452978,122846 +r1,9299:14899701,19181604:3523672,575824,122846 +k1,9240:11376029,19181604:-3523672 +) +(1,9240:11376029,19181604:3523672,452978,122846 +k1,9240:11376029,19181604:3277 +h1,9240:14896424,19181604:0,411205,112570 +) +k1,9241:32583029,19181604:17509658 +g1,9241:32583029,19181604 +) +(1,9243:6764466,20046684:25818563,505283,126483 +h1,9242:6764466,20046684:983040,0,0 +g1,9242:8574570,20046684 +g1,9242:9792884,20046684 +g1,9242:12653530,20046684 +g1,9242:14708083,20046684 +g1,9242:15775664,20046684 +g1,9242:17067378,20046684 +g1,9242:19777947,20046684 +(1,9242:19777947,20046684:0,459977,122846 +r1,9299:21191348,20046684:1413401,582823,122846 +k1,9242:19777947,20046684:-1413401 +) +(1,9242:19777947,20046684:1413401,459977,122846 +k1,9242:19777947,20046684:3277 +h1,9242:21188071,20046684:0,411205,112570 +) +g1,9242:21390577,20046684 +g1,9242:22275968,20046684 +g1,9242:23494282,20046684 +k1,9243:32583029,20046684:6024939 +g1,9243:32583029,20046684 +) +(1,9245:6764466,20911764:25818563,513147,134348 +h1,9244:6764466,20911764:983040,0,0 +k1,9244:10538705,20911764:242504 +k1,9244:11397247,20911764:242504 +k1,9244:12658836,20911764:242504 +k1,9244:13316139,20911764:242460 +k1,9244:16400939,20911764:242504 +k1,9244:19406441,20911764:242504 +k1,9244:20852186,20911764:242504 +k1,9244:24127041,20911764:242504 +k1,9244:25937165,20911764:242503 +k1,9244:27917684,20911764:242504 +k1,9244:28516048,20911764:242504 +(1,9244:28516048,20911764:0,452978,122846 +r1,9299:30984585,20911764:2468537,575824,122846 +k1,9244:28516048,20911764:-2468537 +) +(1,9244:28516048,20911764:2468537,452978,122846 +k1,9244:28516048,20911764:3277 +h1,9244:30981308,20911764:0,411205,112570 +) +k1,9244:31227089,20911764:242504 +k1,9245:32583029,20911764:0 +) +(1,9245:6764466,21776844:25818563,513147,126483 +k1,9244:8744784,21776844:191840 +k1,9244:11270361,21776844:191840 +k1,9244:12759159,21776844:191840 +(1,9244:12759159,21776844:0,459977,115847 +r1,9299:15931120,21776844:3171961,575824,115847 +k1,9244:12759159,21776844:-3171961 +) +(1,9244:12759159,21776844:3171961,459977,115847 +g1,9244:13817572,21776844 +h1,9244:15927843,21776844:0,411205,112570 +) +k1,9244:16122960,21776844:191840 +k1,9244:16930838,21776844:191840 +k1,9244:18141763,21776844:191840 +k1,9244:24760719,21776844:191840 +k1,9244:28138919,21776844:191840 +k1,9244:30199190,21776844:191840 +k1,9244:30922527,21776844:191840 +k1,9244:31773659,21776844:191840 +k1,9244:32583029,21776844:0 +) +(1,9245:6764466,22641924:25818563,505283,126483 +g1,9244:9714896,22641924 +k1,9245:32583028,22641924:21601976 +g1,9245:32583028,22641924 +) +v1,9247:6764466,23326779:0,393216,0 +(1,9254:6764466,24456965:25818563,1523402,196608 +g1,9254:6764466,24456965 +g1,9254:6764466,24456965 +g1,9254:6567858,24456965 +(1,9254:6567858,24456965:0,1523402,196608 +r1,9299:32779637,24456965:26211779,1720010,196608 +k1,9254:6567857,24456965:-26211780 +) +(1,9254:6567858,24456965:26211779,1523402,196608 +[1,9254:6764466,24456965:25818563,1326794,0 +(1,9249:6764466,23561216:25818563,431045,106246 +(1,9248:6764466,23561216:0,0,0 +g1,9248:6764466,23561216 +g1,9248:6764466,23561216 +g1,9248:6436786,23561216 +(1,9248:6436786,23561216:0,0,0 +) +g1,9248:6764466,23561216 +) +k1,9249:6764466,23561216:0 +g1,9249:7760328,23561216 +g1,9249:10084006,23561216 +k1,9249:10084006,23561216:0 +h1,9249:15063315,23561216:0,0,0 +k1,9249:32583029,23561216:17519714 +g1,9249:32583029,23561216 +) +(1,9253:6764466,24377143:25818563,424439,79822 +(1,9251:6764466,24377143:0,0,0 +g1,9251:6764466,24377143 +g1,9251:6764466,24377143 +g1,9251:6436786,24377143 +(1,9251:6436786,24377143:0,0,0 +) +g1,9251:6764466,24377143 +) +g1,9253:7760328,24377143 +g1,9253:9088144,24377143 +h1,9253:11743775,24377143:0,0,0 +k1,9253:32583029,24377143:20839254 +g1,9253:32583029,24377143 +) +] +) +g1,9254:32583029,24456965 +g1,9254:6764466,24456965 +g1,9254:6764466,24456965 +g1,9254:32583029,24456965 +g1,9254:32583029,24456965 +) +h1,9254:6764466,24653573:0,0,0 +] +g1,9256:32583029,24653573 +) +h1,9256:6630773,24653573:0,0,0 +(1,9259:6630773,25518653:25952256,513147,126483 +h1,9258:6630773,25518653:983040,0,0 +k1,9258:11540134,25518653:211085 +k1,9258:14826825,25518653:211086 +k1,9258:15569407,25518653:211085 +k1,9258:17563727,25518653:211085 +k1,9258:19425009,25518653:211085 +k1,9258:21613316,25518653:211086 +k1,9258:23266848,25518653:211085 +k1,9258:25026549,25518653:211085 +k1,9258:27006451,25518653:211085 +k1,9258:27965303,25518653:211086 +k1,9258:31015408,25518653:211085 +k1,9258:32583029,25518653:0 +) +(1,9259:6630773,26383733:25952256,505283,134348 +k1,9258:7816254,26383733:166396 +k1,9258:10737128,26383733:166396 +k1,9258:14068912,26383733:166395 +k1,9258:16764998,26383733:166396 +k1,9258:17950479,26383733:166396 +k1,9258:21303235,26383733:166396 +k1,9258:23477654,26383733:166396 +k1,9258:26719654,26383733:166395 +k1,9258:27417547,26383733:166396 +k1,9258:29321958,26383733:166396 +k1,9258:32583029,26383733:0 +) +(1,9259:6630773,27248813:25952256,513147,134348 +k1,9258:7954199,27248813:219144 +k1,9258:8921109,27248813:219144 +k1,9258:9496113,27248813:219144 +k1,9258:13129026,27248813:219143 +k1,9258:16534530,27248813:219144 +k1,9258:17412966,27248813:219144 +k1,9258:19794798,27248813:219144 +k1,9258:21145749,27248813:219144 +k1,9258:23378159,27248813:219144 +k1,9258:24280187,27248813:219143 +k1,9258:28178522,27248813:219144 +k1,9258:28885234,27248813:219124 +k1,9258:30458352,27248813:219144 +k1,9258:32583029,27248813:0 +) +(1,9259:6630773,28113893:25952256,513147,134348 +k1,9258:9436697,28113893:144507 +k1,9258:12070261,28113893:144507 +k1,9258:13608719,28113893:144507 +k1,9258:14109086,28113893:144507 +k1,9258:17667363,28113893:144507 +k1,9258:20998230,28113893:144507 +k1,9258:24504734,28113893:144507 +k1,9258:25821680,28113893:144507 +k1,9258:29656519,28113893:144507 +k1,9258:31252648,28113893:144507 +k1,9258:32583029,28113893:0 +) +(1,9259:6630773,28978973:25952256,513147,134348 +g1,9258:7185862,28978973 +g1,9258:8484785,28978973 +g1,9258:9335442,28978973 +g1,9258:12230167,28978973 +(1,9258:12230167,28978973:0,452978,115847 +r1,9299:14698704,28978973:2468537,568825,115847 +k1,9258:12230167,28978973:-2468537 +) +(1,9258:12230167,28978973:2468537,452978,115847 +k1,9258:12230167,28978973:3277 +h1,9258:14695427,28978973:0,411205,112570 +) +g1,9258:14897933,28978973 +g1,9258:16491113,28978973 +g1,9258:17046202,28978973 +g1,9258:20007774,28978973 +k1,9259:32583029,28978973:9329257 +g1,9259:32583029,28978973 +) +v1,9261:6630773,29663828:0,393216,0 +(1,9273:6630773,34211683:25952256,4941071,196608 +g1,9273:6630773,34211683 +g1,9273:6630773,34211683 +g1,9273:6434165,34211683 +(1,9273:6434165,34211683:0,4941071,196608 +r1,9299:32779637,34211683:26345472,5137679,196608 +k1,9273:6434165,34211683:-26345472 +) +(1,9273:6434165,34211683:26345472,4941071,196608 +[1,9273:6630773,34211683:25952256,4744463,0 +(1,9263:6630773,29891659:25952256,424439,112852 +(1,9262:6630773,29891659:0,0,0 +g1,9262:6630773,29891659 +g1,9262:6630773,29891659 +g1,9262:6303093,29891659 +(1,9262:6303093,29891659:0,0,0 +) +g1,9262:6630773,29891659 +) +g1,9263:9618358,29891659 +g1,9263:10614220,29891659 +h1,9263:11942036,29891659:0,0,0 +k1,9263:32583028,29891659:20640992 +g1,9263:32583028,29891659 +) +(1,9264:6630773,30576514:25952256,431045,112852 +h1,9264:6630773,30576514:0,0,0 +g1,9264:7626635,30576514 +g1,9264:11278128,30576514 +h1,9264:11610082,30576514:0,0,0 +k1,9264:32583030,30576514:20972948 +g1,9264:32583030,30576514 +) +(1,9265:6630773,31261369:25952256,424439,106246 +h1,9265:6630773,31261369:0,0,0 +g1,9265:6962727,31261369 +g1,9265:7294681,31261369 +k1,9265:7294681,31261369:0 +h1,9265:10614221,31261369:0,0,0 +k1,9265:32583029,31261369:21968808 +g1,9265:32583029,31261369 +) +(1,9266:6630773,31946224:25952256,424439,106246 +h1,9266:6630773,31946224:0,0,0 +g1,9266:6962727,31946224 +g1,9266:7294681,31946224 +k1,9266:7294681,31946224:0 +h1,9266:10614221,31946224:0,0,0 +k1,9266:32583029,31946224:21968808 +g1,9266:32583029,31946224 +) +(1,9267:6630773,32631079:25952256,424439,79822 +h1,9267:6630773,32631079:0,0,0 +h1,9267:6962727,32631079:0,0,0 +k1,9267:32583029,32631079:25620302 +g1,9267:32583029,32631079 +) +(1,9272:6630773,33447006:25952256,424439,79822 +(1,9269:6630773,33447006:0,0,0 +g1,9269:6630773,33447006 +g1,9269:6630773,33447006 +g1,9269:6303093,33447006 +(1,9269:6303093,33447006:0,0,0 +) +g1,9269:6630773,33447006 +) +g1,9272:7626635,33447006 +g1,9272:8954451,33447006 +h1,9272:9950313,33447006:0,0,0 +k1,9272:32583029,33447006:22632716 +g1,9272:32583029,33447006 +) +(1,9272:6630773,34131861:25952256,424439,79822 +h1,9272:6630773,34131861:0,0,0 +g1,9272:7626635,34131861 +g1,9272:8954451,34131861 +h1,9272:9950313,34131861:0,0,0 +k1,9272:32583029,34131861:22632716 +g1,9272:32583029,34131861 +) +] +) +g1,9273:32583029,34211683 +g1,9273:6630773,34211683 +g1,9273:6630773,34211683 +g1,9273:32583029,34211683 +g1,9273:32583029,34211683 +) +h1,9273:6630773,34408291:0,0,0 +v1,9277:6630773,35273371:0,393216,0 +(1,9278:6630773,37499056:25952256,2618901,0 +g1,9278:6630773,37499056 +g1,9278:6237557,37499056 +r1,9299:6368629,37499056:131072,2618901,0 +g1,9278:6567858,37499056 +g1,9278:6764466,37499056 +[1,9278:6764466,37499056:25818563,2618901,0 +(1,9278:6764466,35634548:25818563,754393,260573 +(1,9277:6764466,35634548:0,754393,260573 +r1,9299:8010564,35634548:1246098,1014966,260573 +k1,9277:6764466,35634548:-1246098 +) +(1,9277:6764466,35634548:1246098,754393,260573 +) +k1,9277:8199523,35634548:188959 +k1,9277:8527203,35634548:327680 +k1,9277:9912848,35634548:188958 +k1,9277:13134158,35634548:188959 +k1,9277:15528403,35634548:188958 +k1,9277:16403524,35634548:188959 +k1,9277:17363186,35634548:188959 +k1,9277:20624472,35634548:188958 +k1,9277:21464859,35634548:188959 +(1,9277:21464859,35634548:0,459977,115847 +r1,9299:22174837,35634548:709978,575824,115847 +k1,9277:21464859,35634548:-709978 +) +(1,9277:21464859,35634548:709978,459977,115847 +k1,9277:21464859,35634548:3277 +h1,9277:22171560,35634548:0,411205,112570 +) +k1,9277:22537466,35634548:188959 +k1,9277:25520224,35634548:188958 +k1,9277:26325221,35634548:188959 +k1,9277:30542022,35634548:188958 +k1,9277:31835263,35634548:188959 +k1,9277:32583029,35634548:0 +) +(1,9278:6764466,36499628:25818563,513147,134348 +k1,9277:9777878,36499628:219612 +k1,9277:12523247,36499628:219611 +k1,9277:13098719,36499628:219612 +(1,9277:13098719,36499628:0,452978,122846 +r1,9299:15567256,36499628:2468537,575824,122846 +k1,9277:13098719,36499628:-2468537 +) +(1,9277:13098719,36499628:2468537,452978,122846 +k1,9277:13098719,36499628:3277 +h1,9277:15563979,36499628:0,411205,112570 +) +k1,9277:15786867,36499628:219611 +k1,9277:17984356,36499628:219612 +k1,9277:18863260,36499628:219612 +k1,9277:21096137,36499628:219611 +k1,9277:22646130,36499628:219612 +k1,9277:23683631,36499628:219612 +k1,9277:25106483,36499628:219611 +k1,9277:28358446,36499628:219612 +k1,9277:29109554,36499628:219611 +k1,9277:30392160,36499628:219612 +k1,9278:32583029,36499628:0 +) +(1,9278:6764466,37364708:25818563,505283,134348 +g1,9277:8496582,37364708 +g1,9277:9051671,37364708 +g1,9277:11275307,37364708 +g1,9277:13452413,37364708 +g1,9277:14784104,37364708 +g1,9277:17113908,37364708 +g1,9277:18083840,37364708 +g1,9277:18697912,37364708 +g1,9277:21467463,37364708 +g1,9277:22349577,37364708 +g1,9277:24155749,37364708 +g1,9277:27716975,37364708 +g1,9277:28725574,37364708 +g1,9277:29843618,37364708 +k1,9278:32583029,37364708:232004 +g1,9278:32583029,37364708 +) +] +g1,9278:32583029,37499056 +) +h1,9278:6630773,37499056:0,0,0 +(1,9281:6630773,38364136:25952256,513147,134348 +h1,9280:6630773,38364136:983040,0,0 +k1,9280:9111198,38364136:300698 +(1,9280:9111198,38364136:0,459977,115847 +r1,9299:12283159,38364136:3171961,575824,115847 +k1,9280:9111198,38364136:-3171961 +) +(1,9280:9111198,38364136:3171961,459977,115847 +g1,9280:10169611,38364136 +g1,9280:10873035,38364136 +h1,9280:12279882,38364136:0,411205,112570 +) +k1,9280:12583856,38364136:300697 +k1,9280:15908385,38364136:300698 +k1,9280:19384302,38364136:300698 +k1,9280:23046996,38364136:300697 +k1,9280:24157064,38364136:300698 +k1,9280:24813622,38364136:300698 +(1,9280:24813622,38364136:0,452978,122846 +r1,9299:27282159,38364136:2468537,575824,122846 +k1,9280:24813622,38364136:-2468537 +) +(1,9280:24813622,38364136:2468537,452978,122846 +k1,9280:24813622,38364136:3277 +h1,9280:27278882,38364136:0,411205,112570 +) +k1,9280:27582857,38364136:300698 +k1,9280:29737568,38364136:300697 +k1,9280:31923737,38364136:300698 +k1,9280:32583029,38364136:0 +) +(1,9281:6630773,39229216:25952256,513147,115847 +k1,9280:8140267,39229216:337055 +k1,9280:9973509,39229216:337055 +k1,9280:13827225,39229216:337054 +k1,9280:14695777,39229216:337055 +k1,9280:18039624,39229216:337055 +k1,9280:19573366,39229216:337055 +k1,9280:21260462,39229216:337054 +k1,9280:23247058,39229216:337055 +k1,9280:25575097,39229216:337055 +k1,9280:27242533,39229216:337055 +(1,9280:27242533,39229216:0,459977,115847 +r1,9299:27952511,39229216:709978,575824,115847 +k1,9280:27242533,39229216:-709978 +) +(1,9280:27242533,39229216:709978,459977,115847 +k1,9280:27242533,39229216:3277 +h1,9280:27949234,39229216:0,411205,112570 +) +k1,9280:28289565,39229216:337054 +k1,9280:30727049,39229216:337055 +k1,9281:32583029,39229216:0 +) +(1,9281:6630773,40094296:25952256,505283,134348 +(1,9280:6630773,40094296:0,414482,115847 +r1,9299:11209581,40094296:4578808,530329,115847 +k1,9280:6630773,40094296:-4578808 +) +(1,9280:6630773,40094296:4578808,414482,115847 +g1,9280:10502880,40094296 +h1,9280:11206304,40094296:0,411205,112570 +) +k1,9280:11399739,40094296:190158 +k1,9280:12272782,40094296:190158 +(1,9280:12272782,40094296:0,414482,115847 +r1,9299:16851590,40094296:4578808,530329,115847 +k1,9280:12272782,40094296:-4578808 +) +(1,9280:12272782,40094296:4578808,414482,115847 +g1,9280:16144889,40094296 +h1,9280:16848313,40094296:0,411205,112570 +) +k1,9280:17041749,40094296:190159 +k1,9280:17763404,40094296:190158 +k1,9280:21014749,40094296:190158 +k1,9280:22396352,40094296:190158 +k1,9280:23605595,40094296:190158 +k1,9280:25497724,40094296:190159 +k1,9280:28221504,40094296:190158 +k1,9280:31773659,40094296:190158 +k1,9280:32583029,40094296:0 +) +(1,9281:6630773,40959376:25952256,513147,126483 +g1,9280:7849087,40959376 +g1,9280:9728659,40959376 +g1,9280:10595044,40959376 +(1,9280:10595044,40959376:0,452978,115847 +r1,9299:14470428,40959376:3875384,568825,115847 +k1,9280:10595044,40959376:-3875384 +) +(1,9280:10595044,40959376:3875384,452978,115847 +k1,9280:10595044,40959376:3277 +h1,9280:14467151,40959376:0,411205,112570 +) +g1,9280:14843327,40959376 +g1,9280:16732074,40959376 +(1,9280:16732074,40959376:0,414482,115847 +r1,9299:21310882,40959376:4578808,530329,115847 +k1,9280:16732074,40959376:-4578808 +) +(1,9280:16732074,40959376:4578808,414482,115847 +g1,9280:20604181,40959376 +h1,9280:21307605,40959376:0,411205,112570 +) +g1,9280:21510111,40959376 +g1,9280:22240837,40959376 +g1,9280:24569331,40959376 +k1,9281:32583029,40959376:4778841 +g1,9281:32583029,40959376 +) +] +(1,9299:32583029,45706769:0,0,0 +g1,9299:32583029,45706769 +) +) +] +(1,9299:6630773,47279633:25952256,0,0 +h1,9299:6630773,47279633:25952256,0,0 +) +] +(1,9299:4262630,4025873:0,0,0 +[1,9299:-473656,4025873:0,0,0 +(1,9299:-473656,-710413:0,0,0 +(1,9299:-473656,-710413:0,0,0 +g1,9299:-473656,-710413 +) +g1,9299:-473656,-710413 +) +] ) +] +!27165 +}148 +Input:1279:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1280:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1281:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1282:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1283:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1284:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1285:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!670 +{149 +[1,9375:4262630,47279633:28320399,43253760,0 +(1,9375:4262630,4025873:0,0,0 +[1,9375:-473656,4025873:0,0,0 +(1,9375:-473656,-710413:0,0,0 +(1,9375:-473656,-644877:0,0,0 +k1,9375:-473656,-644877:-65536 ) -] -[1,10184:3078558,4812305:0,0,0 -(1,10184:3078558,2439708:0,1703936,0 -g1,10184:29030814,2439708 -g1,10184:36135244,2439708 -(1,8393:36135244,2439708:1720320,1703936,0 -(1,8393:36135244,2439708:16384,1703936,0 -[1,8393:36135244,2439708:25952256,1703936,0 -(1,8393:36135244,1915420:25952256,1179648,0 -(1,8393:36135244,1915420:16384,1179648,0 -r1,10184:36151628,1915420:16384,1179648,0 +(1,9375:-473656,4736287:0,0,0 +k1,9375:-473656,4736287:5209943 ) -k1,8393:62087500,1915420:25935872 -g1,8393:62087500,1915420 +g1,9375:-473656,-710413 ) ] ) -g1,8393:36675916,2439708 -(1,8393:36675916,2439708:1179648,16384,0 -r1,10184:37855564,2439708:1179648,16384,0 -) +[1,9375:6630773,47279633:25952256,43253760,0 +[1,9375:6630773,4812305:25952256,786432,0 +(1,9375:6630773,4812305:25952256,505283,134348 +(1,9375:6630773,4812305:25952256,505283,134348 +g1,9375:3078558,4812305 +[1,9375:3078558,4812305:0,0,0 +(1,9375:3078558,2439708:0,1703936,0 +k1,9375:1358238,2439708:-1720320 +(1,8606:1358238,2439708:1720320,1703936,0 +(1,8606:1358238,2439708:1179648,16384,0 +r1,9375:2537886,2439708:1179648,16384,0 ) -k1,10184:3078556,2439708:-34777008 +g1,8606:3062174,2439708 +(1,8606:3062174,2439708:16384,1703936,0 +[1,8606:3062174,2439708:25952256,1703936,0 +(1,8606:3062174,1915420:25952256,1179648,0 +(1,8606:3062174,1915420:16384,1179648,0 +r1,9375:3078558,1915420:16384,1179648,0 ) -] -[1,10184:3078558,4812305:0,0,0 -(1,10184:3078558,49800853:0,16384,2228224 -k1,10184:1358238,49800853:-1720320 -(1,8393:1358238,49800853:1720320,16384,2228224 -(1,8393:1358238,49800853:1179648,16384,0 -r1,10184:2537886,49800853:1179648,16384,0 -) -g1,8393:3062174,49800853 -(1,8393:3062174,52029077:16384,1703936,0 -[1,8393:3062174,52029077:25952256,1703936,0 -(1,8393:3062174,51504789:25952256,1179648,0 -(1,8393:3062174,51504789:16384,1179648,0 -r1,10184:3078558,51504789:16384,1179648,0 -) -k1,8393:29014430,51504789:25935872 -g1,8393:29014430,51504789 +k1,8606:29014430,1915420:25935872 +g1,8606:29014430,1915420 ) ] ) ) ) ] -[1,10184:3078558,4812305:0,0,0 -(1,10184:3078558,49800853:0,16384,2228224 -g1,10184:29030814,49800853 -g1,10184:36135244,49800853 -(1,8393:36135244,49800853:1720320,16384,2228224 -(1,8393:36135244,52029077:16384,1703936,0 -[1,8393:36135244,52029077:25952256,1703936,0 -(1,8393:36135244,51504789:25952256,1179648,0 -(1,8393:36135244,51504789:16384,1179648,0 -r1,10184:36151628,51504789:16384,1179648,0 +[1,9375:3078558,4812305:0,0,0 +(1,9375:3078558,2439708:0,1703936,0 +g1,9375:29030814,2439708 +g1,9375:36135244,2439708 +(1,8606:36135244,2439708:1720320,1703936,0 +(1,8606:36135244,2439708:16384,1703936,0 +[1,8606:36135244,2439708:25952256,1703936,0 +(1,8606:36135244,1915420:25952256,1179648,0 +(1,8606:36135244,1915420:16384,1179648,0 +r1,9375:36151628,1915420:16384,1179648,0 ) -k1,8393:62087500,51504789:25935872 -g1,8393:62087500,51504789 +k1,8606:62087500,1915420:25935872 +g1,8606:62087500,1915420 ) ] ) -g1,8393:36675916,49800853 -(1,8393:36675916,49800853:1179648,16384,0 -r1,10184:37855564,49800853:1179648,16384,0 +g1,8606:36675916,2439708 +(1,8606:36675916,2439708:1179648,16384,0 +r1,9375:37855564,2439708:1179648,16384,0 ) ) -k1,10184:3078556,49800853:-34777008 +k1,9375:3078556,2439708:-34777008 ) ] -g1,10184:6630773,4812305 -k1,10184:21643106,4812305:13816956 -g1,10184:23265777,4812305 -g1,10184:24088253,4812305 -g1,10184:28572226,4812305 -g1,10184:29981905,4812305 +[1,9375:3078558,4812305:0,0,0 +(1,9375:3078558,49800853:0,16384,2228224 +k1,9375:1358238,49800853:-1720320 +(1,8606:1358238,49800853:1720320,16384,2228224 +(1,8606:1358238,49800853:1179648,16384,0 +r1,9375:2537886,49800853:1179648,16384,0 +) +g1,8606:3062174,49800853 +(1,8606:3062174,52029077:16384,1703936,0 +[1,8606:3062174,52029077:25952256,1703936,0 +(1,8606:3062174,51504789:25952256,1179648,0 +(1,8606:3062174,51504789:16384,1179648,0 +r1,9375:3078558,51504789:16384,1179648,0 ) +k1,8606:29014430,51504789:25935872 +g1,8606:29014430,51504789 ) ] -[1,10184:6630773,45706769:25952256,40108032,0 -(1,10184:6630773,45706769:25952256,40108032,0 -(1,10184:6630773,45706769:0,0,0 -g1,10184:6630773,45706769 ) -[1,10184:6630773,45706769:25952256,40108032,0 -v1,10153:6630773,6254097:0,393216,0 -(1,10164:6630773,9229379:25952256,3368498,196608 -g1,10164:6630773,9229379 -g1,10164:6630773,9229379 -g1,10164:6434165,9229379 -(1,10164:6434165,9229379:0,3368498,196608 -r1,10184:32779637,9229379:26345472,3565106,196608 -k1,10164:6434165,9229379:-26345472 ) -(1,10164:6434165,9229379:26345472,3368498,196608 -[1,10164:6630773,9229379:25952256,3171890,0 -(1,10155:6630773,6468007:25952256,410518,101187 -(1,10154:6630773,6468007:0,0,0 -g1,10154:6630773,6468007 -g1,10154:6630773,6468007 -g1,10154:6303093,6468007 -(1,10154:6303093,6468007:0,0,0 -) -g1,10154:6630773,6468007 ) -k1,10155:6630773,6468007:0 -h1,10155:14218269,6468007:0,0,0 -k1,10155:32583029,6468007:18364760 -g1,10155:32583029,6468007 +] +[1,9375:3078558,4812305:0,0,0 +(1,9375:3078558,49800853:0,16384,2228224 +g1,9375:29030814,49800853 +g1,9375:36135244,49800853 +(1,8606:36135244,49800853:1720320,16384,2228224 +(1,8606:36135244,52029077:16384,1703936,0 +[1,8606:36135244,52029077:25952256,1703936,0 +(1,8606:36135244,51504789:25952256,1179648,0 +(1,8606:36135244,51504789:16384,1179648,0 +r1,9375:36151628,51504789:16384,1179648,0 ) -(1,10159:6630773,7134185:25952256,404226,76021 -(1,10157:6630773,7134185:0,0,0 -g1,10157:6630773,7134185 -g1,10157:6630773,7134185 -g1,10157:6303093,7134185 -(1,10157:6303093,7134185:0,0,0 -) -g1,10157:6630773,7134185 -) -g1,10159:7579210,7134185 -g1,10159:8843793,7134185 -h1,10159:10108376,7134185:0,0,0 -k1,10159:32583028,7134185:22474652 -g1,10159:32583028,7134185 -) -(1,10161:6630773,8455723:25952256,410518,101187 -(1,10160:6630773,8455723:0,0,0 -g1,10160:6630773,8455723 -g1,10160:6630773,8455723 -g1,10160:6303093,8455723 -(1,10160:6303093,8455723:0,0,0 -) -g1,10160:6630773,8455723 -) -k1,10161:6630773,8455723:0 -k1,10161:6630773,8455723:0 -h1,10161:17063580,8455723:0,0,0 -k1,10161:32583029,8455723:15519449 -g1,10161:32583029,8455723 -) -(1,10162:6630773,9121901:25952256,410518,107478 -h1,10162:6630773,9121901:0,0,0 -g1,10162:7263065,9121901 -g1,10162:8843794,9121901 -g1,10162:10424523,9121901 -g1,10162:12321397,9121901 -g1,10162:13585980,9121901 -g1,10162:14534417,9121901 -g1,10162:15799000,9121901 -g1,10162:17379729,9121901 -g1,10162:18960458,9121901 -k1,10162:18960458,9121901:1573 -h1,10162:20226614,9121901:0,0,0 -k1,10162:32583029,9121901:12356415 -g1,10162:32583029,9121901 -) -] -) -g1,10164:32583029,9229379 -g1,10164:6630773,9229379 -g1,10164:6630773,9229379 -g1,10164:32583029,9229379 -g1,10164:32583029,9229379 -) -h1,10164:6630773,9425987:0,0,0 -(1,10167:6630773,12757843:25952256,32768,229376 -(1,10167:6630773,12757843:0,32768,229376 -(1,10167:6630773,12757843:5505024,32768,229376 -r1,10184:12135797,12757843:5505024,262144,229376 -) -k1,10167:6630773,12757843:-5505024 -) -(1,10167:6630773,12757843:25952256,32768,0 -r1,10184:32583029,12757843:25952256,32768,0 -) -) -(1,10167:6630773,14362171:25952256,615776,151780 -(1,10167:6630773,14362171:1974731,582746,14155 -g1,10167:6630773,14362171 -g1,10167:8605504,14362171 -) -g1,10167:11225896,14362171 -k1,10167:32583030,14362171:17602708 -g1,10167:32583030,14362171 -) -(1,10170:6630773,15596875:25952256,513147,134348 -k1,10169:8832346,15596875:318068 -k1,10169:12176210,15596875:318067 -k1,10169:14257852,15596875:318068 -k1,10169:14931779,15596875:318067 -k1,10169:17945343,15596875:318068 -k1,10169:20468697,15596875:318067 -k1,10169:21472927,15596875:318068 -k1,10169:22561697,15596875:318067 -k1,10169:25952093,15596875:318068 -k1,10169:26921588,15596875:318067 -k1,10169:30520388,15596875:318068 -(1,10169:30520388,15596875:0,414482,115847 -r1,10184:31582077,15596875:1061689,530329,115847 -k1,10169:30520388,15596875:-1061689 -) -(1,10169:30520388,15596875:1061689,414482,115847 -k1,10169:30520388,15596875:3277 -h1,10169:31578800,15596875:0,411205,112570 -) -k1,10169:31900144,15596875:318067 -k1,10169:32583029,15596875:0 -) -(1,10170:6630773,16438363:25952256,513147,134348 -k1,10169:10334214,16438363:224790 -k1,10169:11210433,16438363:224791 -k1,10169:14304389,16438363:224790 -k1,10169:15145217,16438363:224790 -k1,10169:15725867,16438363:224790 -k1,10169:19037404,16438363:224791 -k1,10169:19929350,16438363:224790 -k1,10169:20568957,16438363:224764 -k1,10169:23083576,16438363:224791 -k1,10169:25513653,16438363:224790 -k1,10169:26424605,16438363:224790 -k1,10169:27420098,16438363:224790 -k1,10169:30717217,16438363:224791 -k1,10169:31593435,16438363:224790 -k1,10170:32583029,16438363:0 -) -(1,10170:6630773,17279851:25952256,505283,126483 -k1,10169:9360222,17279851:225318 -(1,10169:9360222,17279851:0,414482,115847 -r1,10184:9718488,17279851:358266,530329,115847 -k1,10169:9360222,17279851:-358266 -) -(1,10169:9360222,17279851:358266,414482,115847 -k1,10169:9360222,17279851:3277 -h1,10169:9715211,17279851:0,411205,112570 -) -k1,10169:9943807,17279851:225319 -k1,10169:10852010,17279851:225318 -k1,10169:14555979,17279851:225318 -k1,10169:18320241,17279851:225318 -k1,10169:19196988,17279851:225319 -k1,10169:21307777,17279851:225318 -(1,10169:21307777,17279851:0,414482,115847 -r1,10184:22369466,17279851:1061689,530329,115847 -k1,10169:21307777,17279851:-1061689 -) -(1,10169:21307777,17279851:1061689,414482,115847 -k1,10169:21307777,17279851:3277 -h1,10169:22366189,17279851:0,411205,112570 -) -k1,10169:22594784,17279851:225318 -k1,10169:23351600,17279851:225319 -k1,10169:24228346,17279851:225318 -k1,10169:25201430,17279851:225318 -k1,10169:27798496,17279851:225318 -k1,10169:29128097,17279851:225319 -k1,10169:30101181,17279851:225318 -k1,10169:32583029,17279851:0 -) -(1,10170:6630773,18121339:25952256,513147,134348 -k1,10169:8345148,18121339:216877 -k1,10169:9951388,18121339:216877 -k1,10169:12548534,18121339:216878 -k1,10169:15498918,18121339:216877 -k1,10169:16398680,18121339:216877 -k1,10169:18769070,18121339:216877 -k1,10169:19803837,18121339:216878 -k1,10169:21409422,18121339:216877 -k1,10169:22312461,18121339:216877 -k1,10169:23548423,18121339:216877 -k1,10169:27169895,18121339:216877 -k1,10169:28038201,18121339:216878 -k1,10169:29002844,18121339:216877 -k1,10169:31591469,18121339:216877 -k1,10169:32583029,18121339:0 -) -(1,10170:6630773,18962827:25952256,513147,126483 -k1,10169:12402707,18962827:190233 -k1,10169:13578601,18962827:190233 -k1,10169:15827975,18962827:190233 -k1,10169:17560926,18962827:190233 -k1,10169:18871169,18962827:190233 -k1,10169:21731995,18962827:190234 -k1,10169:22968183,18962827:190233 -k1,10169:24171603,18962827:190233 -k1,10169:25801007,18962827:190233 -k1,10169:26594171,18962827:190233 -k1,10169:29257077,18962827:190233 -k1,10169:32583029,18962827:0 -) -(1,10170:6630773,19804315:25952256,513147,126483 -g1,10169:8593576,19804315 -g1,10169:11818602,19804315 -g1,10169:13122113,19804315 -g1,10169:15619690,19804315 -(1,10169:15619690,19804315:0,459977,115847 -r1,10184:16681379,19804315:1061689,575824,115847 -k1,10169:15619690,19804315:-1061689 -) -(1,10169:15619690,19804315:1061689,459977,115847 -k1,10169:15619690,19804315:3277 -h1,10169:16678102,19804315:0,411205,112570 -) -g1,10169:17054278,19804315 -(1,10169:17054278,19804315:0,452978,115847 -r1,10184:18819391,19804315:1765113,568825,115847 -k1,10169:17054278,19804315:-1765113 -) -(1,10169:17054278,19804315:1765113,452978,115847 -k1,10169:17054278,19804315:3277 -h1,10169:18816114,19804315:0,411205,112570 -) -g1,10169:19018620,19804315 -g1,10169:19900734,19804315 -(1,10169:19900734,19804315:0,414482,115847 -r1,10184:22017559,19804315:2116825,530329,115847 -k1,10169:19900734,19804315:-2116825 -) -(1,10169:19900734,19804315:2116825,414482,115847 -k1,10169:19900734,19804315:3277 -h1,10169:22014282,19804315:0,411205,112570 -) -g1,10169:22216788,19804315 -k1,10170:32583029,19804315:8447347 -g1,10170:32583029,19804315 -) -v1,10172:6630773,21170091:0,393216,0 -(1,10175:6630773,29232039:25952256,8455164,0 -g1,10175:6630773,29232039 -g1,10175:6303093,29232039 -r1,10184:6401397,29232039:98304,8455164,0 -g1,10175:6600626,29232039 -g1,10175:6797234,29232039 -[1,10175:6797234,29232039:25785795,8455164,0 -(1,10173:6797234,21532164:25785795,755289,196608 -(1,10172:6797234,21532164:0,755289,196608 -r1,10184:8134168,21532164:1336934,951897,196608 -k1,10172:6797234,21532164:-1336934 -) -(1,10172:6797234,21532164:1336934,755289,196608 -) -k1,10172:8431873,21532164:297705 -k1,10172:8759553,21532164:327680 -k1,10172:13396398,21532164:297706 -(1,10172:13396398,21532164:0,459977,115847 -r1,10184:14458087,21532164:1061689,575824,115847 -k1,10172:13396398,21532164:-1061689 -) -(1,10172:13396398,21532164:1061689,459977,115847 -k1,10172:13396398,21532164:3277 -h1,10172:14454810,21532164:0,411205,112570 -) -k1,10172:14929462,21532164:297705 -(1,10172:14929462,21532164:0,452978,115847 -r1,10184:16694575,21532164:1765113,568825,115847 -k1,10172:14929462,21532164:-1765113 -) -(1,10172:14929462,21532164:1765113,452978,115847 -k1,10172:14929462,21532164:3277 -h1,10172:16691298,21532164:0,411205,112570 -) -k1,10172:16992280,21532164:297705 -k1,10172:18481431,21532164:297706 -(1,10172:18481431,21532164:0,414482,115847 -r1,10184:20598256,21532164:2116825,530329,115847 -k1,10172:18481431,21532164:-2116825 -) -(1,10172:18481431,21532164:2116825,414482,115847 -k1,10172:18481431,21532164:3277 -h1,10172:20594979,21532164:0,411205,112570 -) -k1,10172:20895961,21532164:297705 -k1,10172:22938890,21532164:297705 -k1,10172:24228155,21532164:297705 -k1,10172:28115923,21532164:297706 -k1,10172:29099790,21532164:297705 -k1,10172:32583029,21532164:0 -) -(1,10173:6797234,22373652:25785795,513147,134348 -k1,10172:10253079,22373652:177734 -k1,10172:13734482,22373652:177733 -k1,10172:14571508,22373652:177734 -k1,10172:17491267,22373652:177733 -k1,10172:21359333,22373652:177734 -k1,10172:22164902,22373652:177734 -k1,10172:25147576,22373652:177733 -k1,10172:26244125,22373652:177734 -k1,10172:28214268,22373652:177733 -k1,10172:31417799,22373652:177734 -k1,10172:32583029,22373652:0 -) -(1,10173:6797234,23215140:25785795,513147,134348 -k1,10172:11196229,23215140:181753 -k1,10172:13905050,23215140:181753 -k1,10172:14772965,23215140:181753 -k1,10172:18238073,23215140:181754 -k1,10172:18775686,23215140:181753 -k1,10172:21652935,23215140:181753 -k1,10172:22450726,23215140:181753 -k1,10172:25016023,23215140:181753 -k1,10172:26145427,23215140:181753 -k1,10172:27778803,23215140:181754 -k1,10172:28619848,23215140:181753 -k1,10172:29820686,23215140:181753 -k1,10172:32583029,23215140:0 -) -(1,10173:6797234,24056628:25785795,513147,134348 -k1,10172:9929149,24056628:178207 -k1,10172:10766649,24056628:178208 -k1,10172:12453495,24056628:178207 -k1,10172:14513897,24056628:178208 -k1,10172:15615506,24056628:178207 -k1,10172:17483232,24056628:178208 -k1,10172:18277477,24056628:178207 -k1,10172:20200909,24056628:178208 -k1,10172:21398201,24056628:178207 -k1,10172:23749583,24056628:178208 -k1,10172:24587082,24056628:178207 -k1,10172:26798872,24056628:178208 -k1,10172:30024503,24056628:178207 -k1,10172:32583029,24056628:0 -) -(1,10173:6797234,24898116:25785795,505283,126483 -k1,10172:7414723,24898116:261629 -k1,10172:9091274,24898116:261629 -k1,10172:10457185,24898116:261629 -k1,10172:11466580,24898116:261629 -k1,10172:13766379,24898116:261629 -k1,10172:14644046,24898116:261629 -k1,10172:17747317,24898116:261630 -k1,10172:19200391,24898116:261629 -k1,10172:20975246,24898116:261629 -k1,10172:21852913,24898116:261629 -k1,10172:25776038,24898116:261629 -k1,10172:29258762,24898116:261629 -k1,10172:30723632,24898116:261629 -k1,10172:31516758,24898116:261629 -k1,10172:32583029,24898116:0 -) -(1,10173:6797234,25739604:25785795,513147,126483 -g1,10172:9626423,25739604 -g1,10172:10441690,25739604 -g1,10172:11660004,25739604 -g1,10172:13226314,25739604 -g1,10172:14084835,25739604 -g1,10172:16076474,25739604 -k1,10173:32583029,25739604:13307087 -g1,10173:32583029,25739604 -) -(1,10175:6797234,26581092:25785795,513147,134348 -h1,10174:6797234,26581092:983040,0,0 -k1,10174:9848136,26581092:172561 -k1,10174:13046495,26581092:172562 -k1,10174:14323338,26581092:172561 -k1,10174:15243665,26581092:172561 -k1,10174:17943295,26581092:172562 -k1,10174:18802018,26581092:172561 -k1,10174:19330439,26581092:172561 -k1,10174:23409601,26581092:172561 -k1,10174:24268325,26581092:172562 -k1,10174:25821074,26581092:172561 -k1,10174:27097917,26581092:172561 -k1,10174:28018245,26581092:172562 -k1,10174:31821501,26581092:172561 -k1,10174:32583029,26581092:0 -) -(1,10175:6797234,27422580:25785795,513147,134348 -k1,10174:8655562,27422580:208131 -k1,10174:11329157,27422580:208131 -k1,10174:13033475,27422580:208131 -k1,10174:15096274,27422580:208130 -k1,10174:16113775,27422580:208131 -(1,10174:16113775,27422580:0,459977,115847 -r1,10184:17175464,27422580:1061689,575824,115847 -k1,10174:16113775,27422580:-1061689 -) -(1,10174:16113775,27422580:1061689,459977,115847 -k1,10174:16113775,27422580:3277 -h1,10174:17172187,27422580:0,411205,112570 -) -k1,10174:17383595,27422580:208131 -k1,10174:19510620,27422580:208131 -k1,10174:22653453,27422580:208131 -k1,10174:24599599,27422580:208131 -k1,10174:26457926,27422580:208130 -k1,10174:29063364,27422580:208131 -k1,10174:29887533,27422580:208131 -k1,10174:32583029,27422580:0 -) -(1,10175:6797234,28264068:25785795,513147,126483 -k1,10174:8139415,28264068:150736 -k1,10174:11726860,28264068:150737 -k1,10174:13386235,28264068:150736 -k1,10174:14629457,28264068:150737 -k1,10174:16550320,28264068:150736 -k1,10174:17352484,28264068:150736 -k1,10174:20123350,28264068:150737 -k1,10174:20688881,28264068:150688 -k1,10174:22335804,28264068:150736 -k1,10174:23771047,28264068:150737 -k1,10174:26664465,28264068:150736 -k1,10174:28658730,28264068:150737 -k1,10174:30251913,28264068:150736 -k1,10174:32583029,28264068:0 -) -(1,10175:6797234,29105556:25785795,505283,126483 -g1,10174:9713586,29105556 -k1,10175:32583028,29105556:20950548 -g1,10175:32583028,29105556 -) -] -g1,10175:32583029,29232039 -) -h1,10175:6630773,29232039:0,0,0 -(1,10178:6630773,30597815:25952256,513147,126483 -h1,10177:6630773,30597815:983040,0,0 -k1,10177:9076534,30597815:266034 -k1,10177:12104911,30597815:266034 -k1,10177:14163355,30597815:266034 -k1,10177:17455186,30597815:266034 -k1,10177:18337258,30597815:266034 -k1,10177:20037220,30597815:266034 -k1,10177:20718031,30597815:265968 -k1,10177:22727323,30597815:266034 -k1,10177:23609395,30597815:266034 -k1,10177:24894514,30597815:266034 -k1,10177:26715717,30597815:266034 -k1,10177:27641043,30597815:266034 -k1,10177:28926162,30597815:266034 -k1,10177:31202841,30597815:266034 -k1,10177:32583029,30597815:0 -) -(1,10178:6630773,31439303:25952256,513147,134348 -k1,10177:8851365,31439303:172592 -k1,10177:9971609,31439303:172593 -k1,10177:11652840,31439303:172592 -(1,10177:11652840,31439303:0,414482,115847 -r1,10184:12011106,31439303:358266,530329,115847 -k1,10177:11652840,31439303:-358266 -) -(1,10177:11652840,31439303:358266,414482,115847 -k1,10177:11652840,31439303:3277 -h1,10177:12007829,31439303:0,411205,112570 -) -k1,10177:12183699,31439303:172593 -k1,10177:15810694,31439303:172592 -k1,10177:17002372,31439303:172593 -k1,10177:18730133,31439303:172592 -k1,10177:19562018,31439303:172593 -k1,10177:20753695,31439303:172592 -k1,10177:22885814,31439303:172593 -k1,10177:24438594,31439303:172592 -k1,10177:26621832,31439303:172593 -k1,10177:29004298,31439303:172592 -k1,10177:30195976,31439303:172593 -k1,10177:31923737,31439303:172592 -k1,10177:32583029,31439303:0 -) -(1,10178:6630773,32280791:25952256,513147,126483 -k1,10177:7822942,32280791:173084 -k1,10177:9676369,32280791:173084 -k1,10177:12628180,32280791:173084 -k1,10177:13562792,32280791:173084 -k1,10177:14754961,32280791:173084 -k1,10177:17299793,32280791:173084 -k1,10177:20342043,32280791:173084 -(1,10177:20342043,32280791:0,452978,115847 -r1,10184:23162292,32280791:2820249,568825,115847 -k1,10177:20342043,32280791:-2820249 -) -(1,10177:20342043,32280791:2820249,452978,115847 -k1,10177:20342043,32280791:3277 -h1,10177:23159015,32280791:0,411205,112570 -) -k1,10177:23335376,32280791:173084 -k1,10177:24699905,32280791:173084 -(1,10177:24699905,32280791:0,452978,115847 -r1,10184:27520154,32280791:2820249,568825,115847 -k1,10177:24699905,32280791:-2820249 -) -(1,10177:24699905,32280791:2820249,452978,115847 -k1,10177:24699905,32280791:3277 -h1,10177:27516877,32280791:0,411205,112570 -) -k1,10177:27693238,32280791:173084 -k1,10177:29937260,32280791:173084 -k1,10177:30466204,32280791:173084 -(1,10177:30466204,32280791:0,414482,115847 -r1,10184:32583029,32280791:2116825,530329,115847 -k1,10177:30466204,32280791:-2116825 -) -(1,10177:30466204,32280791:2116825,414482,115847 -k1,10177:30466204,32280791:3277 -h1,10177:32579752,32280791:0,411205,112570 -) -k1,10177:32583029,32280791:0 -) -(1,10178:6630773,33122279:25952256,505283,134348 -k1,10177:7481442,33122279:167784 -(1,10177:7481442,33122279:0,452978,115847 -r1,10184:8894843,33122279:1413401,568825,115847 -k1,10177:7481442,33122279:-1413401 -) -(1,10177:7481442,33122279:1413401,452978,115847 -k1,10177:7481442,33122279:3277 -h1,10177:8891566,33122279:0,411205,112570 -) -k1,10177:9062626,33122279:167783 -k1,10177:9916572,33122279:167784 -k1,10177:10855059,33122279:167784 -k1,10177:14095171,33122279:167784 -k1,10177:16468241,33122279:167783 -k1,10177:19194551,33122279:167784 -(1,10177:19194551,33122279:0,414482,115847 -r1,10184:19552817,33122279:358266,530329,115847 -k1,10177:19194551,33122279:-358266 -) -(1,10177:19194551,33122279:358266,414482,115847 -k1,10177:19194551,33122279:3277 -h1,10177:19549540,33122279:0,411205,112570 -) -k1,10177:19894271,33122279:167784 -(1,10177:19894271,33122279:0,452978,115847 -r1,10184:22714520,33122279:2820249,568825,115847 -k1,10177:19894271,33122279:-2820249 -) -(1,10177:19894271,33122279:2820249,452978,115847 -k1,10177:19894271,33122279:3277 -h1,10177:22711243,33122279:0,411205,112570 -) -k1,10177:22882304,33122279:167784 -k1,10177:25391033,33122279:167783 -k1,10177:25914677,33122279:167784 -(1,10177:25914677,33122279:0,452978,115847 -r1,10184:27328078,33122279:1413401,568825,115847 -k1,10177:25914677,33122279:-1413401 -) -(1,10177:25914677,33122279:1413401,452978,115847 -k1,10177:25914677,33122279:3277 -h1,10177:27324801,33122279:0,411205,112570 -) -k1,10177:27495862,33122279:167784 -k1,10177:28346531,33122279:167784 -k1,10177:29285017,33122279:167783 -(1,10177:29285017,33122279:0,414482,115847 -r1,10184:31050130,33122279:1765113,530329,115847 -k1,10177:29285017,33122279:-1765113 -) -(1,10177:29285017,33122279:1765113,414482,115847 -k1,10177:29285017,33122279:3277 -h1,10177:31046853,33122279:0,411205,112570 -) -k1,10177:31391584,33122279:167784 -k1,10178:32583029,33122279:0 -) -(1,10178:6630773,33963767:25952256,513147,126483 -(1,10177:6630773,33963767:0,452978,115847 -r1,10184:9451022,33963767:2820249,568825,115847 -k1,10177:6630773,33963767:-2820249 -) -(1,10177:6630773,33963767:2820249,452978,115847 -k1,10177:6630773,33963767:3277 -h1,10177:9447745,33963767:0,411205,112570 -) -k1,10177:9727243,33963767:276221 -k1,10177:12132730,33963767:276222 -k1,10177:15348241,33963767:276221 -k1,10177:16412860,33963767:276221 -k1,10177:19467808,33963767:276221 -k1,10177:21424373,33963767:276222 -k1,10177:22968060,33963767:276221 -k1,10177:23600141,33963767:276221 -k1,10177:26027909,33963767:276221 -k1,10177:27993649,33963767:276222 -(1,10177:27993649,33963767:0,452978,115847 -r1,10184:30813898,33963767:2820249,568825,115847 -k1,10177:27993649,33963767:-2820249 -) -(1,10177:27993649,33963767:2820249,452978,115847 -k1,10177:27993649,33963767:3277 -h1,10177:30810621,33963767:0,411205,112570 -) -k1,10177:31090119,33963767:276221 -k1,10177:32583029,33963767:0 -) -(1,10178:6630773,34805255:25952256,513147,134348 -k1,10177:7821660,34805255:171802 -k1,10177:12359471,34805255:171802 -k1,10177:15648165,34805255:171802 -k1,10177:16471395,34805255:171802 -k1,10177:17662282,34805255:171802 -k1,10177:20906411,34805255:171801 -k1,10177:23283500,34805255:171802 -k1,10177:24106730,34805255:171802 -k1,10177:25066930,34805255:171802 -(1,10177:25066930,34805255:0,459977,115847 -r1,10184:27887179,34805255:2820249,575824,115847 -k1,10177:25066930,34805255:-2820249 -) -(1,10177:25066930,34805255:2820249,459977,115847 -k1,10177:25066930,34805255:3277 -h1,10177:27883902,34805255:0,411205,112570 -) -k1,10177:28058981,34805255:171802 -k1,10177:31685186,34805255:171802 -k1,10177:32583029,34805255:0 -) -(1,10178:6630773,35646743:25952256,513147,126483 -k1,10177:8479751,35646743:152251 -k1,10177:10424412,35646743:152251 -k1,10177:13602460,35646743:152251 -k1,10177:14858994,35646743:152252 -k1,10177:15759011,35646743:152251 -k1,10177:17424488,35646743:152251 -k1,10177:18228167,35646743:152251 -k1,10177:20143992,35646743:152251 -k1,10177:21066947,35646743:152252 -k1,10177:21633994,35646743:152204 -k1,10177:24481741,35646743:152251 -k1,10177:25918498,35646743:152251 -k1,10177:28411695,35646743:152251 -k1,10177:28919807,35646743:152252 -k1,10177:30752401,35646743:152251 -k1,10177:31563944,35646743:152251 -k1,10177:32583029,35646743:0 -) -(1,10178:6630773,36488231:25952256,513147,134348 -k1,10177:8483867,36488231:199621 -k1,10177:9366372,36488231:199620 -k1,10177:9921853,36488231:199621 -k1,10177:12883816,36488231:199620 -k1,10177:14638606,36488231:199621 -k1,10177:15524389,36488231:199621 -k1,10177:16512407,36488231:199620 -k1,10177:19958026,36488231:199621 -k1,10177:20785481,36488231:199620 -k1,10177:22004187,36488231:199621 -k1,10177:23570889,36488231:199621 -k1,10177:24437665,36488231:199620 -(1,10177:24437665,36488231:0,452978,115847 -r1,10184:26906202,36488231:2468537,568825,115847 -k1,10177:24437665,36488231:-2468537 -) -(1,10177:24437665,36488231:2468537,452978,115847 -k1,10177:24437665,36488231:3277 -h1,10177:26902925,36488231:0,411205,112570 -) -k1,10177:27105823,36488231:199621 -k1,10177:28496888,36488231:199620 -(1,10177:28496888,36488231:0,452978,115847 -r1,10184:31317137,36488231:2820249,568825,115847 -k1,10177:28496888,36488231:-2820249 -) -(1,10177:28496888,36488231:2820249,452978,115847 -k1,10177:28496888,36488231:3277 -h1,10177:31313860,36488231:0,411205,112570 -) -k1,10177:31516758,36488231:199621 -k1,10177:32583029,36488231:0 -) -(1,10178:6630773,37329719:25952256,513147,134348 -k1,10177:8327651,37329719:230182 -k1,10177:9576919,37329719:230183 -k1,10177:11820367,37329719:230182 -k1,10177:12709842,37329719:230183 -k1,10177:13959109,37329719:230182 -k1,10177:16199936,37329719:230182 -k1,10177:19208846,37329719:230183 -k1,10177:20386679,37329719:230182 -k1,10177:22068483,37329719:230182 -k1,10177:24922072,37329719:230183 -k1,10177:25811546,37329719:230182 -k1,10177:27060814,37329719:230183 -k1,10177:30377742,37329719:230182 -k1,10177:32583029,37329719:0 -) -(1,10178:6630773,38171207:25952256,505283,134348 -k1,10177:7564020,38171207:247085 -k1,10177:8581809,38171207:247086 -k1,10177:12074892,38171207:247085 -k1,10177:14182544,38171207:247085 -k1,10177:15081057,38171207:247085 -k1,10177:16075909,38171207:247086 -k1,10177:19777397,38171207:247085 -k1,10177:20652317,38171207:247085 -k1,10177:24063481,38171207:247086 -(1,10177:24063481,38171207:0,452978,115847 -r1,10184:26532018,38171207:2468537,568825,115847 -k1,10177:24063481,38171207:-2468537 -) -(1,10177:24063481,38171207:2468537,452978,115847 -k1,10177:24063481,38171207:3277 -h1,10177:26528741,38171207:0,411205,112570 -) -k1,10177:26779103,38171207:247085 -k1,10177:27557685,38171207:247085 -k1,10177:29317996,38171207:247085 -k1,10177:30216510,38171207:247086 -k1,10177:32227169,38171207:247085 -k1,10177:32583029,38171207:0 -) -(1,10178:6630773,39012695:25952256,513147,134348 -k1,10177:9539479,39012695:213210 -k1,10177:10404118,39012695:213211 -k1,10177:11636413,39012695:213210 -k1,10177:14718790,39012695:213211 -k1,10177:16676568,39012695:213210 -k1,10177:17245638,39012695:213210 -k1,10177:20803807,39012695:213211 -k1,10177:21676309,39012695:213210 -k1,10177:22660223,39012695:213211 -k1,10177:24832959,39012695:213210 -k1,10177:26330675,39012695:213210 -k1,10177:27644891,39012695:213211 -k1,10177:29030540,39012695:213210 -k1,10177:29926636,39012695:213211 -k1,10177:31790043,39012695:213210 -k1,10178:32583029,39012695:0 -) -(1,10178:6630773,39854183:25952256,513147,126483 -k1,10177:9895185,39854183:172424 -k1,10177:11259054,39854183:172424 -(1,10177:11259054,39854183:0,452978,115847 -r1,10184:14079303,39854183:2820249,568825,115847 -k1,10177:11259054,39854183:-2820249 -) -(1,10177:11259054,39854183:2820249,452978,115847 -k1,10177:11259054,39854183:3277 -h1,10177:14076026,39854183:0,411205,112570 -) -k1,10177:14251728,39854183:172425 -k1,10177:15615597,39854183:172424 -(1,10177:15615597,39854183:0,452978,115847 -r1,10184:18435846,39854183:2820249,568825,115847 -k1,10177:15615597,39854183:-2820249 -) -(1,10177:15615597,39854183:2820249,452978,115847 -k1,10177:15615597,39854183:3277 -h1,10177:18432569,39854183:0,411205,112570 -) -k1,10177:18608270,39854183:172424 -k1,10177:19772254,39854183:172424 -k1,10177:21457905,39854183:172425 -k1,10177:22281757,39854183:172424 -k1,10177:24217755,39854183:172424 -k1,10177:24746039,39854183:172424 -k1,10177:27613960,39854183:172425 -k1,10177:28437812,39854183:172424 -k1,10177:29629321,39854183:172424 -k1,10177:32583029,39854183:0 -) -(1,10178:6630773,40695671:25952256,513147,134348 -k1,10177:7504187,40695671:214122 -k1,10177:8074169,40695671:214122 -k1,10177:10266168,40695671:214122 -k1,10177:11163175,40695671:214122 -k1,10177:12544493,40695671:214122 -(1,10177:12544493,40695671:0,452978,115847 -r1,10184:15013030,40695671:2468537,568825,115847 -k1,10177:12544493,40695671:-2468537 -) -(1,10177:12544493,40695671:2468537,452978,115847 -k1,10177:12544493,40695671:3277 -h1,10177:15009753,40695671:0,411205,112570 -) -k1,10177:15227152,40695671:214122 -k1,10177:17782220,40695671:214122 -k1,10177:18767045,40695671:214122 -k1,10177:20630708,40695671:214122 -k1,10177:21527715,40695671:214122 -k1,10177:22097697,40695671:214122 -k1,10177:23305345,40695671:214122 -k1,10177:24202352,40695671:214122 -k1,10177:24772334,40695671:214122 -k1,10177:26964333,40695671:214122 -k1,10177:30540452,40695671:214122 -k1,10177:31563944,40695671:214122 -k1,10177:32583029,40695671:0 -) -(1,10178:6630773,41537159:25952256,505283,134348 -k1,10177:8235043,41537159:161823 -k1,10177:9588312,41537159:161824 -k1,10177:13468648,41537159:161823 -k1,10177:14246510,41537159:161824 -k1,10177:16421599,41537159:161823 -k1,10177:17774867,41537159:161823 -k1,10177:19491860,41537159:161824 -k1,10177:21813094,41537159:161823 -k1,10177:22994002,41537159:161823 -k1,10177:25166471,41537159:161824 -k1,10177:28107021,41537159:161823 -k1,10177:29030373,41537159:161824 -k1,10177:30211281,41537159:161823 -k1,10177:32583029,41537159:0 -) -(1,10178:6630773,42378647:25952256,513147,7863 -k1,10178:32583029,42378647:23083090 -g1,10178:32583029,42378647 -) -] -(1,10184:32583029,45706769:0,0,0 -g1,10184:32583029,45706769 -) -) -] -(1,10184:6630773,47279633:25952256,0,0 -h1,10184:6630773,47279633:25952256,0,0 -) -] -(1,10184:4262630,4025873:0,0,0 -[1,10184:-473656,4025873:0,0,0 -(1,10184:-473656,-710413:0,0,0 -(1,10184:-473656,-710413:0,0,0 -g1,10184:-473656,-710413 -) -g1,10184:-473656,-710413 -) -] -) -] -!28958 -}171 -Input:1525:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1526:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1527:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1528:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1529:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1530:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1531:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1532:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1533:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!858 -{172 -[1,10273:4262630,47279633:28320399,43253760,0 -(1,10273:4262630,4025873:0,0,0 -[1,10273:-473656,4025873:0,0,0 -(1,10273:-473656,-710413:0,0,0 -(1,10273:-473656,-644877:0,0,0 -k1,10273:-473656,-644877:-65536 +k1,8606:62087500,51504789:25935872 +g1,8606:62087500,51504789 ) -(1,10273:-473656,4736287:0,0,0 -k1,10273:-473656,4736287:5209943 +] ) -g1,10273:-473656,-710413 +g1,8606:36675916,49800853 +(1,8606:36675916,49800853:1179648,16384,0 +r1,9375:37855564,49800853:1179648,16384,0 ) -] ) -[1,10273:6630773,47279633:25952256,43253760,0 -[1,10273:6630773,4812305:25952256,786432,0 -(1,10273:6630773,4812305:25952256,513147,126483 -(1,10273:6630773,4812305:25952256,513147,126483 -g1,10273:3078558,4812305 -[1,10273:3078558,4812305:0,0,0 -(1,10273:3078558,2439708:0,1703936,0 -k1,10273:1358238,2439708:-1720320 -(1,8393:1358238,2439708:1720320,1703936,0 -(1,8393:1358238,2439708:1179648,16384,0 -r1,10273:2537886,2439708:1179648,16384,0 +k1,9375:3078556,49800853:-34777008 ) -g1,8393:3062174,2439708 -(1,8393:3062174,2439708:16384,1703936,0 -[1,8393:3062174,2439708:25952256,1703936,0 -(1,8393:3062174,1915420:25952256,1179648,0 -(1,8393:3062174,1915420:16384,1179648,0 -r1,10273:3078558,1915420:16384,1179648,0 +] +g1,9375:6630773,4812305 +k1,9375:21643106,4812305:13816956 +g1,9375:23265777,4812305 +g1,9375:24088253,4812305 +g1,9375:28572226,4812305 +g1,9375:29981905,4812305 ) -k1,8393:29014430,1915420:25935872 -g1,8393:29014430,1915420 ) ] +[1,9375:6630773,45706769:25952256,40108032,0 +(1,9375:6630773,45706769:25952256,40108032,0 +(1,9375:6630773,45706769:0,0,0 +g1,9375:6630773,45706769 ) +[1,9375:6630773,45706769:25952256,40108032,0 +(1,9299:6630773,17745364:25952256,12146627,0 +k1,9299:8032787,17745364:1402014 +(1,9282:8032787,17745364:0,0,0 +g1,9282:8032787,17745364 +g1,9282:8032787,17745364 +g1,9282:7705107,17745364 +(1,9282:7705107,17745364:0,0,0 ) +g1,9282:8032787,17745364 ) -] -[1,10273:3078558,4812305:0,0,0 -(1,10273:3078558,2439708:0,1703936,0 -g1,10273:29030814,2439708 -g1,10273:36135244,2439708 -(1,8393:36135244,2439708:1720320,1703936,0 -(1,8393:36135244,2439708:16384,1703936,0 -[1,8393:36135244,2439708:25952256,1703936,0 -(1,8393:36135244,1915420:25952256,1179648,0 -(1,8393:36135244,1915420:16384,1179648,0 -r1,10273:36151628,1915420:16384,1179648,0 +(1,9297:8032787,17745364:23148228,12146627,0 +g1,9297:19606901,17745364 +(1,9297:19606901,6544183:0,0,0 +(1,9297:19606901,6544183:0,0,0 +g1,9284:19606901,6544183 +(1,9285:19606901,6544183:0,0,0 +(1,9285:19606901,6544183:0,0,0 +g1,9285:19606901,6544183 +g1,9285:19606901,6544183 +g1,9285:19606901,6544183 +g1,9285:19606901,6544183 +g1,9285:19606901,6544183 +(1,9285:19606901,6544183:0,0,0 +(1,9285:19606901,6544183:589824,56623,0 +(1,9285:19606901,6544183:589824,56623,0 ) -k1,8393:62087500,1915420:25935872 -g1,8393:62087500,1915420 +g1,9285:20196725,6544183 ) -] ) -g1,8393:36675916,2439708 -(1,8393:36675916,2439708:1179648,16384,0 -r1,10273:37855564,2439708:1179648,16384,0 +g1,9285:19606901,6544183 +g1,9285:19606901,6544183 ) ) -k1,10273:3078556,2439708:-34777008 +g1,9285:19606901,6544183 +(1,9286:19606901,6544183:0,0,0 +(1,9286:19606901,6544183:0,0,0 +g1,9286:19606901,6544183 +g1,9286:19606901,6544183 +(1,9286:19606901,6544183:0,0,0 +(1,9286:19606901,6544183:5387746,414307,104590 +(1,9286:19606901,6544183:5387746,414307,104590 +(1,9286:19606901,6544183:0,414307,104590 +r1,9375:24994647,6544183:5387746,518897,104590 +k1,9286:19606901,6544183:-5387746 ) -] -[1,10273:3078558,4812305:0,0,0 -(1,10273:3078558,49800853:0,16384,2228224 -k1,10273:1358238,49800853:-1720320 -(1,8393:1358238,49800853:1720320,16384,2228224 -(1,8393:1358238,49800853:1179648,16384,0 -r1,10273:2537886,49800853:1179648,16384,0 +(1,9286:19606901,6544183:5387746,414307,104590 +g1,9286:20559800,6544183 +g1,9286:23725207,6544183 +h1,9286:24991370,6544183:0,370085,101313 ) -g1,8393:3062174,49800853 -(1,8393:3062174,52029077:16384,1703936,0 -[1,8393:3062174,52029077:25952256,1703936,0 -(1,8393:3062174,51504789:25952256,1179648,0 -(1,8393:3062174,51504789:16384,1179648,0 -r1,10273:3078558,51504789:16384,1179648,0 ) -k1,8393:29014430,51504789:25935872 -g1,8393:29014430,51504789 +g1,9286:24994647,6544183 ) -] ) +g1,9286:19606901,6544183 +g1,9286:19606901,6544183 ) ) -] -[1,10273:3078558,4812305:0,0,0 -(1,10273:3078558,49800853:0,16384,2228224 -g1,10273:29030814,49800853 -g1,10273:36135244,49800853 -(1,8393:36135244,49800853:1720320,16384,2228224 -(1,8393:36135244,52029077:16384,1703936,0 -[1,8393:36135244,52029077:25952256,1703936,0 -(1,8393:36135244,51504789:25952256,1179648,0 -(1,8393:36135244,51504789:16384,1179648,0 -r1,10273:36151628,51504789:16384,1179648,0 +(1,9287:19606901,6544183:0,0,0 +(1,9287:19606901,6544183:0,0,0 +g1,9287:19606901,6544183 +g1,9287:19606901,6544183 +g1,9287:19606901,6544183 +g1,9287:19606901,6544183 +g1,9287:19606901,6544183 +(1,9287:19606901,6544183:0,0,0 +(1,9287:19606901,6544183:4121582,373362,104590 +(1,9287:19606901,6544183:4121582,373362,104590 +(1,9287:19606901,6544183:0,373362,104590 +r1,9375:23728483,6544183:4121582,477952,104590 +k1,9287:19606901,6544183:-4121582 ) -k1,8393:62087500,51504789:25935872 -g1,8393:62087500,51504789 +(1,9287:19606901,6544183:4121582,373362,104590 +g1,9287:23092125,6544183 +h1,9287:23725206,6544183:0,370085,101313 ) -] ) -g1,8393:36675916,49800853 -(1,8393:36675916,49800853:1179648,16384,0 -r1,10273:37855564,49800853:1179648,16384,0 +g1,9287:23728483,6544183 +) +) +g1,9287:19606901,6544183 +g1,9287:19606901,6544183 +) +) +(1,9288:19606901,6544183:0,0,0 +(1,9288:19606901,6544183:0,0,0 +g1,9288:19606901,6544183 +g1,9288:19606901,6544183 +g1,9288:19606901,6544183 +g1,9288:19606901,6544183 +g1,9288:19606901,6544183 +(1,9288:19606901,6544183:0,0,0 +(1,9288:19606901,6544183:4121582,373362,104590 +(1,9288:19606901,6544183:4121582,373362,104590 +(1,9288:19606901,6544183:0,373362,104590 +r1,9375:23728483,6544183:4121582,477952,104590 +k1,9288:19606901,6544183:-4121582 +) +(1,9288:19606901,6544183:4121582,373362,104590 +g1,9288:23092125,6544183 +h1,9288:23725206,6544183:0,370085,101313 +) +) +g1,9288:23728483,6544183 +) +) +g1,9288:19606901,6544183 +g1,9288:19606901,6544183 +) +) +(1,9289:19606901,6544183:0,0,0 +(1,9289:19606901,6544183:0,0,0 +g1,9289:19606901,6544183 +g1,9289:19606901,6544183 +g1,9289:19606901,6544183 +g1,9289:19606901,6544183 +g1,9289:19606901,6544183 +(1,9289:19606901,6544183:0,0,0 +(1,9289:19606901,6544183:4121582,373362,104590 +(1,9289:19606901,6544183:4121582,373362,104590 +(1,9289:19606901,6544183:0,373362,104590 +r1,9375:23728483,6544183:4121582,477952,104590 +k1,9289:19606901,6544183:-4121582 +) +(1,9289:19606901,6544183:4121582,373362,104590 +g1,9289:23092125,6544183 +h1,9289:23725206,6544183:0,370085,101313 ) ) -k1,10273:3078556,49800853:-34777008 +g1,9289:23728483,6544183 +) +) +g1,9289:19606901,6544183 +g1,9289:19606901,6544183 +) +) +g1,9289:19606901,6544183 +g1,9290:19606901,6544183 +(1,9290:19606901,6544183:0,0,0 +(1,9290:19606901,6544183:0,0,0 +g1,9290:19606901,6544183 +g1,9290:19606901,6544183 +g1,9290:19606901,6544183 +g1,9290:19606901,6544183 +g1,9290:19606901,6544183 +(1,9290:19606901,6544183:0,0,0 +(1,9290:19606901,6544183:589824,56623,0 +(1,9290:19606901,6544183:589824,56623,0 ) -] -g1,10273:6630773,4812305 -g1,10273:6630773,4812305 -g1,10273:8671564,4812305 -g1,10273:11756343,4812305 -k1,10273:31387651,4812305:19631308 -) -) -] -[1,10273:6630773,45706769:25952256,40108032,0 -(1,10273:6630773,45706769:25952256,40108032,0 -(1,10273:6630773,45706769:0,0,0 -g1,10273:6630773,45706769 -) -[1,10273:6630773,45706769:25952256,40108032,0 -(1,10179:6630773,6254097:25952256,564462,147783 -(1,10179:6630773,6254097:2450326,534184,12975 -g1,10179:6630773,6254097 -g1,10179:9081099,6254097 -) -g1,10179:12662511,6254097 -g1,10179:16328989,6254097 -g1,10179:17279130,6254097 -g1,10179:20399889,6254097 -g1,10179:22129319,6254097 -g1,10179:23696547,6254097 -g1,10179:25473556,6254097 -k1,10179:32583029,6254097:4595709 -g1,10179:32583029,6254097 -) -(1,10182:6630773,7488801:25952256,513147,126483 -k1,10181:7735505,7488801:151183 -k1,10181:9192820,7488801:151182 -k1,10181:12476624,7488801:151183 -k1,10181:13646892,7488801:151183 -k1,10181:14890559,7488801:151182 -k1,10181:15708898,7488801:151183 -(1,10181:15708898,7488801:0,452978,115847 -r1,10273:18529147,7488801:2820249,568825,115847 -k1,10181:15708898,7488801:-2820249 -) -(1,10181:15708898,7488801:2820249,452978,115847 -k1,10181:15708898,7488801:3277 -h1,10181:18525870,7488801:0,411205,112570 -) -k1,10181:18854000,7488801:151183 -(1,10181:18854000,7488801:0,452978,115847 -r1,10273:21674249,7488801:2820249,568825,115847 -k1,10181:18854000,7488801:-2820249 -) -(1,10181:18854000,7488801:2820249,452978,115847 -k1,10181:18854000,7488801:3277 -h1,10181:21670972,7488801:0,411205,112570 -) -k1,10181:21825432,7488801:151183 -k1,10181:23168059,7488801:151182 -(1,10181:23168059,7488801:0,452978,115847 -r1,10273:25988308,7488801:2820249,568825,115847 -k1,10181:23168059,7488801:-2820249 -) -(1,10181:23168059,7488801:2820249,452978,115847 -k1,10181:23168059,7488801:3277 -h1,10181:25985031,7488801:0,411205,112570 -) -k1,10181:26313161,7488801:151183 -k1,10181:27092179,7488801:151183 -k1,10181:28262446,7488801:151182 -k1,10181:30714598,7488801:151183 -k1,10181:32583029,7488801:0 -) -(1,10182:6630773,8330289:25952256,513147,126483 -g1,10181:7698354,8330289 -g1,10181:9661157,8330289 -g1,10181:10216246,8330289 -g1,10181:14390889,8330289 -g1,10181:17285614,8330289 -g1,10181:18136271,8330289 -g1,10181:18691360,8330289 -k1,10182:32583029,8330289:11740122 -g1,10182:32583029,8330289 -) -v1,10184:6630773,9627153:0,393216,0 -(1,10185:6630773,12706549:25952256,3472612,0 -g1,10185:6630773,12706549 -g1,10185:6303093,12706549 -r1,10273:6401397,12706549:98304,3472612,0 -g1,10185:6600626,12706549 -g1,10185:6797234,12706549 -[1,10185:6797234,12706549:25785795,3472612,0 -(1,10185:6797234,10047737:25785795,813800,267386 -(1,10184:6797234,10047737:0,813800,267386 -r1,10273:8134168,10047737:1336934,1081186,267386 -k1,10184:6797234,10047737:-1336934 -) -(1,10184:6797234,10047737:1336934,813800,267386 -) -k1,10184:8273483,10047737:139315 -k1,10184:8601163,10047737:327680 -k1,10184:9228006,10047737:139255 -k1,10184:12614630,10047737:139315 -k1,10184:13285442,10047737:139315 -k1,10184:14709263,10047737:139315 -k1,10184:15867663,10047737:139315 -k1,10184:19199892,10047737:139315 -k1,10184:21962613,10047737:139315 -k1,10184:24391756,10047737:139315 -k1,10184:25147109,10047737:139315 -k1,10184:26305509,10047737:139315 -k1,10184:27438350,10047737:139315 -k1,10184:28260550,10047737:139315 -k1,10184:30377742,10047737:139315 -k1,10184:32583029,10047737:0 -) -(1,10185:6797234,10889225:25785795,513147,134348 -k1,10184:7767931,10889225:284535 -k1,10184:11124794,10889225:284535 -k1,10184:12060758,10889225:284536 -k1,10184:13364378,10889225:284535 -(1,10184:13364378,10889225:0,414482,115847 -r1,10273:13722644,10889225:358266,530329,115847 -k1,10184:13364378,10889225:-358266 -) -(1,10184:13364378,10889225:358266,414482,115847 -k1,10184:13364378,10889225:3277 -h1,10184:13719367,10889225:0,411205,112570 -) -k1,10184:14007179,10889225:284535 -k1,10184:17572446,10889225:284535 -k1,10184:18516274,10889225:284536 -k1,10184:20593219,10889225:284535 -k1,10184:23903551,10889225:284535 -k1,10184:25320548,10889225:284535 -k1,10184:26352849,10889225:284535 -k1,10184:28766650,10889225:284536 -k1,10184:31256472,10889225:284535 -k1,10184:32227169,10889225:284535 -k1,10184:32583029,10889225:0 -) -(1,10185:6797234,11730713:25785795,513147,134348 -k1,10184:10151148,11730713:178695 -k1,10184:13402170,11730713:178694 -k1,10184:14232293,11730713:178695 -k1,10184:15430073,11730713:178695 -k1,10184:16914901,11730713:178695 -k1,10184:19222204,11730713:178694 -k1,10184:22681631,11730713:178695 -k1,10184:23519618,11730713:178695 -k1,10184:24717398,11730713:178695 -k1,10184:27267840,11730713:178694 -k1,10184:30315701,11730713:178695 -k1,10184:31563944,11730713:178695 -k1,10184:32583029,11730713:0 -) -(1,10185:6797234,12572201:25785795,513147,134348 -g1,10184:9691959,12572201 -g1,10184:12096475,12572201 -g1,10184:12981866,12572201 -g1,10184:16253423,12572201 -g1,10184:17104080,12572201 -(1,10184:17104080,12572201:0,414482,115847 -r1,10273:18165769,12572201:1061689,530329,115847 -k1,10184:17104080,12572201:-1061689 -) -(1,10184:17104080,12572201:1061689,414482,115847 -k1,10184:17104080,12572201:3277 -h1,10184:18162492,12572201:0,411205,112570 -) -g1,10184:18364998,12572201 -g1,10184:20186243,12572201 -g1,10184:21133238,12572201 -g1,10184:24868134,12572201 -g1,10184:26461314,12572201 -g1,10184:27863784,12572201 -k1,10185:32583029,12572201:1561065 -g1,10185:32583029,12572201 -) -] -g1,10185:32583029,12706549 -) -h1,10185:6630773,12706549:0,0,0 -v1,10188:6630773,14283478:0,393216,0 -(1,10197:6630773,16565651:25952256,2675389,196608 -g1,10197:6630773,16565651 -g1,10197:6630773,16565651 -g1,10197:6434165,16565651 -(1,10197:6434165,16565651:0,2675389,196608 -r1,10273:32779637,16565651:26345472,2871997,196608 -k1,10197:6434165,16565651:-26345472 -) -(1,10197:6434165,16565651:26345472,2675389,196608 -[1,10197:6630773,16565651:25952256,2478781,0 -(1,10190:6630773,14491096:25952256,404226,107478 -(1,10189:6630773,14491096:0,0,0 -g1,10189:6630773,14491096 -g1,10189:6630773,14491096 -g1,10189:6303093,14491096 -(1,10189:6303093,14491096:0,0,0 -) -g1,10189:6630773,14491096 -) -k1,10190:6630773,14491096:0 -g1,10190:12005250,14491096 -g1,10190:12637542,14491096 -g1,10190:13585979,14491096 -g1,10190:15166708,14491096 -g1,10190:18012019,14491096 -g1,10190:19592748,14491096 -g1,10190:20857331,14491096 -k1,10190:20857331,14491096:1573 -h1,10190:22755778,14491096:0,0,0 -k1,10190:32583029,14491096:9827251 -g1,10190:32583029,14491096 -) -(1,10191:6630773,15157274:25952256,410518,101187 -h1,10191:6630773,15157274:0,0,0 -g1,10191:9476084,15157274 -g1,10191:10424522,15157274 -g1,10191:13269834,15157274 -g1,10191:13902126,15157274 -g1,10191:14534418,15157274 -g1,10191:16431292,15157274 -g1,10191:18644312,15157274 -g1,10191:19592749,15157274 -g1,10191:21489623,15157274 -g1,10191:22438060,15157274 -g1,10191:24018789,15157274 -g1,10191:26231809,15157274 -k1,10191:26231809,15157274:14156 -h1,10191:27826693,15157274:0,0,0 -k1,10191:32583029,15157274:4756336 -g1,10191:32583029,15157274 -) -(1,10192:6630773,15823452:25952256,404226,76021 -h1,10192:6630773,15823452:0,0,0 -k1,10192:6630773,15823452:0 -h1,10192:10740667,15823452:0,0,0 -k1,10192:32583029,15823452:21842362 -g1,10192:32583029,15823452 -) -(1,10196:6630773,16489630:25952256,404226,76021 -(1,10194:6630773,16489630:0,0,0 -g1,10194:6630773,16489630 -g1,10194:6630773,16489630 -g1,10194:6303093,16489630 -(1,10194:6303093,16489630:0,0,0 -) -g1,10194:6630773,16489630 -) -g1,10196:7579210,16489630 -g1,10196:7895356,16489630 -g1,10196:9159939,16489630 -g1,10196:11056813,16489630 -g1,10196:12953687,16489630 -g1,10196:14850561,16489630 -g1,10196:16747435,16489630 -g1,10196:18644309,16489630 -g1,10196:20541183,16489630 -h1,10196:21489620,16489630:0,0,0 -k1,10196:32583029,16489630:11093409 -g1,10196:32583029,16489630 -) -] -) -g1,10197:32583029,16565651 -g1,10197:6630773,16565651 -g1,10197:6630773,16565651 -g1,10197:32583029,16565651 -g1,10197:32583029,16565651 -) -h1,10197:6630773,16762259:0,0,0 -v1,10201:6630773,18339188:0,393216,0 -(1,10205:6630773,18660576:25952256,714604,196608 -g1,10205:6630773,18660576 -g1,10205:6630773,18660576 -g1,10205:6434165,18660576 -(1,10205:6434165,18660576:0,714604,196608 -r1,10273:32779637,18660576:26345472,911212,196608 -k1,10205:6434165,18660576:-26345472 -) -(1,10205:6434165,18660576:26345472,714604,196608 -[1,10205:6630773,18660576:25952256,517996,0 -(1,10203:6630773,18553098:25952256,410518,107478 -(1,10202:6630773,18553098:0,0,0 -g1,10202:6630773,18553098 -g1,10202:6630773,18553098 -g1,10202:6303093,18553098 -(1,10202:6303093,18553098:0,0,0 -) -g1,10202:6630773,18553098 -) -g1,10203:8843793,18553098 -g1,10203:9792231,18553098 -g1,10203:13585980,18553098 -g1,10203:14534418,18553098 -g1,10203:17063584,18553098 -g1,10203:17695876,18553098 -h1,10203:18328167,18553098:0,0,0 -k1,10203:32583029,18553098:14254862 -g1,10203:32583029,18553098 -) -] -) -g1,10205:32583029,18660576 -g1,10205:6630773,18660576 -g1,10205:6630773,18660576 -g1,10205:32583029,18660576 -g1,10205:32583029,18660576 -) -h1,10205:6630773,18857184:0,0,0 -v1,10209:6630773,20434114:0,393216,0 -(1,10223:6630773,26008904:25952256,5968006,196608 -g1,10223:6630773,26008904 -g1,10223:6630773,26008904 -g1,10223:6434165,26008904 -(1,10223:6434165,26008904:0,5968006,196608 -r1,10273:32779637,26008904:26345472,6164614,196608 -k1,10223:6434165,26008904:-26345472 -) -(1,10223:6434165,26008904:26345472,5968006,196608 -[1,10223:6630773,26008904:25952256,5771398,0 -(1,10211:6630773,20648024:25952256,410518,101187 -(1,10210:6630773,20648024:0,0,0 -g1,10210:6630773,20648024 -g1,10210:6630773,20648024 -g1,10210:6303093,20648024 -(1,10210:6303093,20648024:0,0,0 -) -g1,10210:6630773,20648024 -) -g1,10211:7263065,20648024 -g1,10211:8211503,20648024 -g1,10211:11056815,20648024 -g1,10211:11689107,20648024 -g1,10211:14850564,20648024 -g1,10211:16115147,20648024 -g1,10211:16747439,20648024 -g1,10211:19276605,20648024 -g1,10211:19908897,20648024 -g1,10211:20541189,20648024 -h1,10211:21173481,20648024:0,0,0 -k1,10211:32583029,20648024:11409548 -g1,10211:32583029,20648024 -) -(1,10212:6630773,21314202:25952256,404226,76021 -h1,10212:6630773,21314202:0,0,0 -k1,10212:6630773,21314202:0 -h1,10212:8527647,21314202:0,0,0 -k1,10212:32583029,21314202:24055382 -g1,10212:32583029,21314202 -) -(1,10222:6630773,21980380:25952256,410518,9436 -(1,10214:6630773,21980380:0,0,0 -g1,10214:6630773,21980380 -g1,10214:6630773,21980380 -g1,10214:6303093,21980380 -(1,10214:6303093,21980380:0,0,0 -) -g1,10214:6630773,21980380 -) -g1,10222:7579210,21980380 -g1,10222:9159939,21980380 -g1,10222:10108376,21980380 -h1,10222:10424522,21980380:0,0,0 -k1,10222:32583030,21980380:22158508 -g1,10222:32583030,21980380 -) -(1,10222:6630773,22646558:25952256,410518,31456 -h1,10222:6630773,22646558:0,0,0 -g1,10222:7579210,22646558 -g1,10222:7895356,22646558 -g1,10222:8527648,22646558 -g1,10222:9159940,22646558 -g1,10222:10424523,22646558 -h1,10222:11689106,22646558:0,0,0 -k1,10222:32583030,22646558:20893924 -g1,10222:32583030,22646558 -) -(1,10222:6630773,23312736:25952256,410518,31456 -h1,10222:6630773,23312736:0,0,0 -g1,10222:7579210,23312736 -g1,10222:7895356,23312736 -g1,10222:8527648,23312736 -g1,10222:9159940,23312736 -g1,10222:10424523,23312736 -h1,10222:11689106,23312736:0,0,0 -k1,10222:32583030,23312736:20893924 -g1,10222:32583030,23312736 -) -(1,10222:6630773,23978914:25952256,410518,31456 -h1,10222:6630773,23978914:0,0,0 -g1,10222:7579210,23978914 -g1,10222:7895356,23978914 -g1,10222:8527648,23978914 -g1,10222:9159940,23978914 -g1,10222:10424523,23978914 -h1,10222:11689106,23978914:0,0,0 -k1,10222:32583030,23978914:20893924 -g1,10222:32583030,23978914 -) -(1,10222:6630773,24645092:25952256,410518,31456 -h1,10222:6630773,24645092:0,0,0 -g1,10222:7579210,24645092 -g1,10222:7895356,24645092 -g1,10222:8527648,24645092 -g1,10222:9159940,24645092 -g1,10222:10424523,24645092 -h1,10222:11689106,24645092:0,0,0 -k1,10222:32583030,24645092:20893924 -g1,10222:32583030,24645092 -) -(1,10222:6630773,25311270:25952256,410518,31456 -h1,10222:6630773,25311270:0,0,0 -g1,10222:7579210,25311270 -g1,10222:7895356,25311270 -g1,10222:8527648,25311270 -g1,10222:9159940,25311270 -g1,10222:10424523,25311270 -h1,10222:11689106,25311270:0,0,0 -k1,10222:32583030,25311270:20893924 -g1,10222:32583030,25311270 -) -(1,10222:6630773,25977448:25952256,410518,31456 -h1,10222:6630773,25977448:0,0,0 -g1,10222:7579210,25977448 -g1,10222:7895356,25977448 -g1,10222:8527648,25977448 -g1,10222:9159940,25977448 -g1,10222:10424523,25977448 -h1,10222:11689106,25977448:0,0,0 -k1,10222:32583030,25977448:20893924 -g1,10222:32583030,25977448 -) -] -) -g1,10223:32583029,26008904 -g1,10223:6630773,26008904 -g1,10223:6630773,26008904 -g1,10223:32583029,26008904 -g1,10223:32583029,26008904 -) -h1,10223:6630773,26205512:0,0,0 -(1,10227:6630773,27502376:25952256,513147,115847 -h1,10226:6630773,27502376:983040,0,0 -k1,10226:9027338,27502376:216838 -k1,10226:10740362,27502376:216837 -k1,10226:12812524,27502376:216838 -k1,10226:14459357,27502376:216837 -(1,10226:14459357,27502376:0,459977,115847 -r1,10273:17279606,27502376:2820249,575824,115847 -k1,10226:14459357,27502376:-2820249 -) -(1,10226:14459357,27502376:2820249,459977,115847 -k1,10226:14459357,27502376:3277 -h1,10226:17276329,27502376:0,411205,112570 -) -k1,10226:17496444,27502376:216838 -k1,10226:19203570,27502376:216837 -k1,10226:20814359,27502376:216838 -k1,10226:22482818,27502376:216837 -k1,10226:23358948,27502376:216838 -k1,10226:24594870,27502376:216837 -k1,10226:25708241,27502376:216838 -k1,10226:28878786,27502376:216837 -k1,10226:29762780,27502376:216838 -(1,10226:29762780,27502376:0,414482,115847 -r1,10273:32583029,27502376:2820249,530329,115847 -k1,10226:29762780,27502376:-2820249 -) -(1,10226:29762780,27502376:2820249,414482,115847 -k1,10226:29762780,27502376:3277 -h1,10226:32579752,27502376:0,411205,112570 -) -k1,10226:32583029,27502376:0 -) -(1,10227:6630773,28343864:25952256,505283,134348 -g1,10226:7516164,28343864 -g1,10226:10787721,28343864 -g1,10226:12178395,28343864 -g1,10226:14784106,28343864 -g1,10226:16002420,28343864 -g1,10226:18980376,28343864 -g1,10226:21190250,28343864 -g1,10226:22656945,28343864 -g1,10226:23212034,28343864 -g1,10226:24578459,28343864 -g1,10226:26635634,28343864 -g1,10226:27853948,28343864 -g1,10226:28275999,28343864 -g1,10226:29091266,28343864 -(1,10226:29091266,28343864:0,452978,115847 -r1,10273:31911515,28343864:2820249,568825,115847 -k1,10226:29091266,28343864:-2820249 -) -(1,10226:29091266,28343864:2820249,452978,115847 -k1,10226:29091266,28343864:3277 -h1,10226:31908238,28343864:0,411205,112570 -) -k1,10227:32583029,28343864:497844 -g1,10227:32583029,28343864 -) -v1,10229:6630773,29465417:0,393216,0 -(1,10237:6630773,31087704:25952256,2015503,196608 -g1,10237:6630773,31087704 -g1,10237:6630773,31087704 -g1,10237:6434165,31087704 -(1,10237:6434165,31087704:0,2015503,196608 -r1,10273:32779637,31087704:26345472,2212111,196608 -k1,10237:6434165,31087704:-26345472 -) -(1,10237:6434165,31087704:26345472,2015503,196608 -[1,10237:6630773,31087704:25952256,1818895,0 -(1,10231:6630773,29679327:25952256,410518,101187 -(1,10230:6630773,29679327:0,0,0 -g1,10230:6630773,29679327 -g1,10230:6630773,29679327 -g1,10230:6303093,29679327 -(1,10230:6303093,29679327:0,0,0 -) -g1,10230:6630773,29679327 -) -g1,10231:7263065,29679327 -g1,10231:8211503,29679327 -g1,10231:11056815,29679327 -g1,10231:11689107,29679327 -g1,10231:14850564,29679327 -g1,10231:16115147,29679327 -g1,10231:16747439,29679327 -g1,10231:19276605,29679327 -g1,10231:19908897,29679327 -g1,10231:20541189,29679327 -h1,10231:21173481,29679327:0,0,0 -k1,10231:32583029,29679327:11409548 -g1,10231:32583029,29679327 -) -(1,10232:6630773,30345505:25952256,404226,76021 -h1,10232:6630773,30345505:0,0,0 -k1,10232:6630773,30345505:0 -h1,10232:8527647,30345505:0,0,0 -k1,10232:32583029,30345505:24055382 -g1,10232:32583029,30345505 -) -(1,10236:6630773,31011683:25952256,404226,76021 -(1,10234:6630773,31011683:0,0,0 -g1,10234:6630773,31011683 -g1,10234:6630773,31011683 -g1,10234:6303093,31011683 -(1,10234:6303093,31011683:0,0,0 -) -g1,10234:6630773,31011683 -) -g1,10236:7579210,31011683 -g1,10236:7895356,31011683 -g1,10236:9159939,31011683 -g1,10236:11056813,31011683 -g1,10236:12637542,31011683 -g1,10236:14218271,31011683 -g1,10236:15799000,31011683 -g1,10236:17379729,31011683 -g1,10236:18960458,31011683 -h1,10236:19908895,31011683:0,0,0 -k1,10236:32583029,31011683:12674134 -g1,10236:32583029,31011683 -) -] -) -g1,10237:32583029,31087704 -g1,10237:6630773,31087704 -g1,10237:6630773,31087704 -g1,10237:32583029,31087704 -g1,10237:32583029,31087704 -) -h1,10237:6630773,31284312:0,0,0 -(1,10241:6630773,32581176:25952256,513147,115847 -h1,10240:6630773,32581176:983040,0,0 -k1,10240:8976875,32581176:166375 -k1,10240:10639437,32581176:166375 -k1,10240:12661135,32581176:166374 -k1,10240:14257506,32581176:166375 -(1,10240:14257506,32581176:0,459977,115847 -r1,10273:17077755,32581176:2820249,575824,115847 -k1,10240:14257506,32581176:-2820249 -) -(1,10240:14257506,32581176:2820249,459977,115847 -k1,10240:14257506,32581176:3277 -h1,10240:17074478,32581176:0,411205,112570 -) -k1,10240:17244130,32581176:166375 -k1,10240:18804456,32581176:166375 -k1,10240:19630122,32581176:166374 -k1,10240:20815582,32581176:166375 -k1,10240:21878490,32581176:166375 -k1,10240:24998573,32581176:166375 -k1,10240:25832103,32581176:166374 -(1,10240:25832103,32581176:0,414482,115847 -r1,10273:28652352,32581176:2820249,530329,115847 -k1,10240:25832103,32581176:-2820249 -) -(1,10240:25832103,32581176:2820249,414482,115847 -k1,10240:25832103,32581176:3277 -h1,10240:28649075,32581176:0,411205,112570 -) -k1,10240:28818727,32581176:166375 -k1,10240:30176547,32581176:166375 -k1,10240:32583029,32581176:0 -) -(1,10241:6630773,33422664:25952256,513147,126483 -k1,10240:7855859,33422664:206001 -k1,10240:10840588,33422664:206002 -k1,10240:13057234,33422664:206001 -k1,10240:14530701,33422664:206001 -k1,10240:15092563,33422664:206002 -k1,10240:17450111,33422664:206001 -k1,10240:18725660,33422664:206001 -k1,10240:19389759,33422664:206002 -k1,10240:22682506,33422664:206001 -k1,10240:23907592,33422664:206001 -k1,10240:25107120,33422664:206002 -k1,10240:26580587,33422664:206001 -k1,10240:27142448,33422664:206001 -k1,10240:29499997,33422664:206002 -k1,10240:31563944,33422664:206001 -k1,10240:32583029,33422664:0 -) -(1,10241:6630773,34264152:25952256,473825,115847 -g1,10240:7141298,34264152 -g1,10240:7956565,34264152 -(1,10240:7956565,34264152:0,452978,115847 -r1,10273:10776814,34264152:2820249,568825,115847 -k1,10240:7956565,34264152:-2820249 -) -(1,10240:7956565,34264152:2820249,452978,115847 -k1,10240:7956565,34264152:3277 -h1,10240:10773537,34264152:0,411205,112570 -) -k1,10241:32583028,34264152:21632544 -g1,10241:32583028,34264152 -) -v1,10243:6630773,35385706:0,393216,0 -(1,10257:6630773,40960496:25952256,5968006,196608 -g1,10257:6630773,40960496 -g1,10257:6630773,40960496 -g1,10257:6434165,40960496 -(1,10257:6434165,40960496:0,5968006,196608 -r1,10273:32779637,40960496:26345472,6164614,196608 -k1,10257:6434165,40960496:-26345472 -) -(1,10257:6434165,40960496:26345472,5968006,196608 -[1,10257:6630773,40960496:25952256,5771398,0 -(1,10245:6630773,35599616:25952256,410518,101187 -(1,10244:6630773,35599616:0,0,0 -g1,10244:6630773,35599616 -g1,10244:6630773,35599616 -g1,10244:6303093,35599616 -(1,10244:6303093,35599616:0,0,0 -) -g1,10244:6630773,35599616 -) -g1,10245:7263065,35599616 -g1,10245:8211503,35599616 -g1,10245:11056815,35599616 -g1,10245:11689107,35599616 -g1,10245:14850564,35599616 -g1,10245:16115147,35599616 -g1,10245:16747439,35599616 -g1,10245:19276605,35599616 -g1,10245:19908897,35599616 -g1,10245:20541189,35599616 -g1,10245:21489627,35599616 -g1,10245:24334938,35599616 -g1,10245:24967230,35599616 -h1,10245:26864104,35599616:0,0,0 -k1,10245:32583029,35599616:5718925 -g1,10245:32583029,35599616 -) -(1,10246:6630773,36265794:25952256,404226,76021 -h1,10246:6630773,36265794:0,0,0 -k1,10246:6630773,36265794:0 -h1,10246:8527647,36265794:0,0,0 -k1,10246:32583029,36265794:24055382 -g1,10246:32583029,36265794 -) -(1,10256:6630773,36931972:25952256,410518,9436 -(1,10248:6630773,36931972:0,0,0 -g1,10248:6630773,36931972 -g1,10248:6630773,36931972 -g1,10248:6303093,36931972 -(1,10248:6303093,36931972:0,0,0 -) -g1,10248:6630773,36931972 -) -g1,10256:7579210,36931972 -g1,10256:9159939,36931972 -g1,10256:10108376,36931972 -h1,10256:10424522,36931972:0,0,0 -k1,10256:32583030,36931972:22158508 -g1,10256:32583030,36931972 -) -(1,10256:6630773,37598150:25952256,410518,31456 -h1,10256:6630773,37598150:0,0,0 -g1,10256:7579210,37598150 -g1,10256:7895356,37598150 -g1,10256:8527648,37598150 -g1,10256:9159940,37598150 -g1,10256:10424523,37598150 -h1,10256:11689106,37598150:0,0,0 -k1,10256:32583030,37598150:20893924 -g1,10256:32583030,37598150 -) -(1,10256:6630773,38264328:25952256,410518,31456 -h1,10256:6630773,38264328:0,0,0 -g1,10256:7579210,38264328 -g1,10256:7895356,38264328 -g1,10256:8527648,38264328 -g1,10256:9159940,38264328 -g1,10256:10424523,38264328 -h1,10256:11689106,38264328:0,0,0 -k1,10256:32583030,38264328:20893924 -g1,10256:32583030,38264328 -) -(1,10256:6630773,38930506:25952256,410518,31456 -h1,10256:6630773,38930506:0,0,0 -g1,10256:7579210,38930506 -g1,10256:7895356,38930506 -g1,10256:8527648,38930506 -g1,10256:9159940,38930506 -g1,10256:10424523,38930506 -h1,10256:11689106,38930506:0,0,0 -k1,10256:32583030,38930506:20893924 -g1,10256:32583030,38930506 -) -(1,10256:6630773,39596684:25952256,410518,31456 -h1,10256:6630773,39596684:0,0,0 -g1,10256:7579210,39596684 -g1,10256:7895356,39596684 -g1,10256:8527648,39596684 -g1,10256:9159940,39596684 -g1,10256:10424523,39596684 -h1,10256:11689106,39596684:0,0,0 -k1,10256:32583030,39596684:20893924 -g1,10256:32583030,39596684 -) -(1,10256:6630773,40262862:25952256,410518,31456 -h1,10256:6630773,40262862:0,0,0 -g1,10256:7579210,40262862 -g1,10256:7895356,40262862 -g1,10256:8527648,40262862 -g1,10256:9159940,40262862 -g1,10256:10424523,40262862 -h1,10256:11689106,40262862:0,0,0 -k1,10256:32583030,40262862:20893924 -g1,10256:32583030,40262862 -) -(1,10256:6630773,40929040:25952256,410518,31456 -h1,10256:6630773,40929040:0,0,0 -g1,10256:7579210,40929040 -g1,10256:7895356,40929040 -g1,10256:8527648,40929040 -g1,10256:9159940,40929040 -g1,10256:10424523,40929040 -h1,10256:11689106,40929040:0,0,0 -k1,10256:32583030,40929040:20893924 -g1,10256:32583030,40929040 -) -] -) -g1,10257:32583029,40960496 -g1,10257:6630773,40960496 -g1,10257:6630773,40960496 -g1,10257:32583029,40960496 -g1,10257:32583029,40960496 -) -h1,10257:6630773,41157104:0,0,0 -(1,10261:6630773,42453967:25952256,505283,126483 -h1,10260:6630773,42453967:983040,0,0 -k1,10260:8818833,42453967:251471 -k1,10260:10174586,42453967:251471 -k1,10260:11451040,42453967:251471 -k1,10260:13557834,42453967:251470 -k1,10260:15093811,42453967:251471 -k1,10260:16364367,42453967:251471 -k1,10260:19824481,42453967:251471 -k1,10260:22249126,42453967:251471 -k1,10260:23492157,42453967:251471 -k1,10260:24762713,42453967:251471 -k1,10260:26667656,42453967:251470 -k1,10260:27535165,42453967:251471 -k1,10260:28805721,42453967:251471 -k1,10260:30711976,42453967:251471 -k1,10260:32583029,42453967:0 -) -(1,10261:6630773,43295455:25952256,513147,134348 -g1,10260:7902171,43295455 -g1,10260:9120485,43295455 -g1,10260:10874883,43295455 -g1,10260:12265557,43295455 -g1,10260:15396211,43295455 -g1,10260:16254732,43295455 -g1,10260:17473046,43295455 -g1,10260:19962103,43295455 -g1,10260:22940059,43295455 -k1,10261:32583029,43295455:7726042 -g1,10261:32583029,43295455 -) -(1,10263:6630773,44136943:25952256,513147,134348 -h1,10262:6630773,44136943:983040,0,0 -k1,10262:11642713,44136943:196355 -k1,10262:14864866,44136943:196356 -k1,10262:16165503,44136943:196355 -k1,10262:17109625,44136943:196356 -k1,10262:19687558,44136943:196355 -k1,10262:20693283,44136943:196355 -k1,10262:21908724,44136943:196356 -k1,10262:22900686,44136943:196355 -k1,10262:24288486,44136943:196355 -k1,10262:26690129,44136943:196356 -k1,10262:27537912,44136943:196355 -(1,10262:27537912,44136943:0,414482,115847 -r1,10273:28599601,44136943:1061689,530329,115847 -k1,10262:27537912,44136943:-1061689 -) -(1,10262:27537912,44136943:1061689,414482,115847 -k1,10262:27537912,44136943:3277 -h1,10262:28596324,44136943:0,411205,112570 -) -k1,10262:28969627,44136943:196356 -k1,10262:31837885,44136943:196355 -k1,10262:32583029,44136943:0 -) -(1,10263:6630773,44978431:25952256,505283,126483 -g1,10262:7481430,44978431 -g1,10262:10144157,44978431 -g1,10262:11362471,44978431 -g1,10262:14553419,44978431 -g1,10262:16607972,44978431 -g1,10262:18457398,44978431 -g1,10262:21578222,44978431 -g1,10262:23360145,44978431 -g1,10262:24578459,44978431 -g1,10262:27019019,44978431 -g1,10262:28374958,44978431 -k1,10263:32583029,44978431:1751782 -g1,10263:32583029,44978431 -) -v1,10265:6630773,46099985:0,393216,0 -] -(1,10273:32583029,45706769:0,0,0 -g1,10273:32583029,45706769 -) -) -] -(1,10273:6630773,47279633:25952256,0,0 -h1,10273:6630773,47279633:25952256,0,0 -) -] -(1,10273:4262630,4025873:0,0,0 -[1,10273:-473656,4025873:0,0,0 -(1,10273:-473656,-710413:0,0,0 -(1,10273:-473656,-710413:0,0,0 -g1,10273:-473656,-710413 -) -g1,10273:-473656,-710413 -) -] -) -] -!27251 -}172 -Input:1534:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1535:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1536:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1537:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1538:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1539:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1540:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1541:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1542:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1543:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1544:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1545:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1546:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1234 -{173 -[1,10381:4262630,47279633:28320399,43253760,0 -(1,10381:4262630,4025873:0,0,0 -[1,10381:-473656,4025873:0,0,0 -(1,10381:-473656,-710413:0,0,0 -(1,10381:-473656,-644877:0,0,0 -k1,10381:-473656,-644877:-65536 +g1,9290:20196725,6544183 +) +) +g1,9290:19606901,6544183 +g1,9290:19606901,6544183 +) +) +g1,9290:19606901,6544183 +g1,9291:19606901,6544183 +g1,9291:19606901,6544183 +g1,9291:19606901,6544183 +g1,9291:19606901,6544183 +g1,9292:19606901,6544183 +g1,9292:19606901,6544183 +g1,9292:19606901,6544183 +(1,9292:19606901,6544183:0,0,0 +(1,9292:19606901,6544183:0,0,0 +g1,9292:19606901,6544183 +g1,9292:19606901,6544183 +g1,9292:19606901,6544183 +g1,9292:19606901,6544183 +g1,9292:19606901,6544183 +(1,9292:19606901,6544183:0,0,0 +(1,9292:19606901,6544183:1272717,373362,104590 +(1,9292:19606901,6544183:1272717,373362,104590 +(1,9292:19606901,6544183:0,373362,104590 +r1,9375:20879618,6544183:1272717,477952,104590 +k1,9292:19606901,6544183:-1272717 +) +(1,9292:19606901,6544183:1272717,373362,104590 +k1,9292:19606901,6544183:3277 +h1,9292:20876341,6544183:0,370085,101313 +) +) +g1,9292:20879618,6544183 +) +) +g1,9292:19606901,6544183 +g1,9292:19606901,6544183 +) +) +g1,9292:19606901,6544183 +g1,9293:19606901,6544183 +g1,9293:19606901,6544183 +g1,9293:19606901,6544183 +(1,9293:19606901,6544183:0,0,0 +(1,9293:19606901,6544183:0,0,0 +g1,9293:19606901,6544183 +g1,9293:19606901,6544183 +g1,9293:19606901,6544183 +g1,9293:19606901,6544183 +g1,9293:19606901,6544183 +(1,9293:19606901,6544183:0,0,0 +(1,9293:19606901,6544183:1589257,373362,104590 +(1,9293:19606901,6544183:1589257,373362,104590 +(1,9293:19606901,6544183:0,373362,104590 +r1,9375:21196158,6544183:1589257,477952,104590 +k1,9293:19606901,6544183:-1589257 +) +(1,9293:19606901,6544183:1589257,373362,104590 +k1,9293:19606901,6544183:3277 +h1,9293:21192881,6544183:0,370085,101313 +) +) +g1,9293:21196158,6544183 +) +) +g1,9293:19606901,6544183 +g1,9293:19606901,6544183 +) +) +g1,9293:19606901,6544183 +g1,9294:19606901,6544183 +g1,9294:19606901,6544183 +g1,9294:19606901,6544183 +g1,9294:19606901,6544183 +g1,9294:19606901,6544183 +g1,9295:19606901,6544183 +g1,9295:19606901,6544183 +g1,9295:19606901,6544183 +g1,9295:19606901,6544183 +g1,9295:19606901,6544183 +g1,9296:19606901,6544183 +g1,9296:19606901,6544183 +g1,9296:19606901,6544183 +g1,9296:19606901,6544183 +g1,9296:19606901,6544183 +g1,9296:19606901,6544183 +g1,9297:19606901,6544183 +g1,9297:19606901,6544183 +) +g1,9297:19606901,6544183 +) +) +g1,9299:31181015,17745364 +k1,9299:32583029,17745364:1402014 +) +v1,9302:6630773,19085579:0,393216,0 +(1,9316:6630773,22535776:25952256,3843413,196608 +g1,9316:6630773,22535776 +g1,9316:6630773,22535776 +g1,9316:6434165,22535776 +(1,9316:6434165,22535776:0,3843413,196608 +r1,9375:32779637,22535776:26345472,4040021,196608 +k1,9316:6434165,22535776:-26345472 +) +(1,9316:6434165,22535776:26345472,3843413,196608 +[1,9316:6630773,22535776:25952256,3646805,0 +(1,9304:6630773,19296894:25952256,407923,9908 +(1,9303:6630773,19296894:0,0,0 +g1,9303:6630773,19296894 +g1,9303:6630773,19296894 +g1,9303:6303093,19296894 +(1,9303:6303093,19296894:0,0,0 +) +g1,9303:6630773,19296894 +) +g1,9304:7294681,19296894 +g1,9304:8290543,19296894 +h1,9304:8954451,19296894:0,0,0 +k1,9304:32583029,19296894:23628578 +g1,9304:32583029,19296894 +) +(1,9305:6630773,19981749:25952256,431045,112852 +h1,9305:6630773,19981749:0,0,0 +g1,9305:7626635,19981749 +g1,9305:8622497,19981749 +g1,9305:9286405,19981749 +g1,9305:10282267,19981749 +g1,9305:13933761,19981749 +g1,9305:14929623,19981749 +g1,9305:18581116,19981749 +g1,9305:20240886,19981749 +g1,9305:23892380,19981749 +g1,9305:24888242,19981749 +g1,9305:26216058,19981749 +h1,9305:29535597,19981749:0,0,0 +k1,9305:32583029,19981749:3047432 +g1,9305:32583029,19981749 +) +(1,9309:6630773,20797676:25952256,424439,112852 +(1,9307:6630773,20797676:0,0,0 +g1,9307:6630773,20797676 +g1,9307:6630773,20797676 +g1,9307:6303093,20797676 +(1,9307:6303093,20797676:0,0,0 +) +g1,9307:6630773,20797676 +) +g1,9309:7626635,20797676 +g1,9309:8954451,20797676 +g1,9309:10614221,20797676 +g1,9309:11610083,20797676 +g1,9309:12937899,20797676 +h1,9309:15925484,20797676:0,0,0 +k1,9309:32583029,20797676:16657545 +g1,9309:32583029,20797676 +) +(1,9311:6630773,21613603:25952256,424439,106246 +(1,9310:6630773,21613603:0,0,0 +g1,9310:6630773,21613603 +g1,9310:6630773,21613603 +g1,9310:6303093,21613603 +(1,9310:6303093,21613603:0,0,0 +) +g1,9310:6630773,21613603 +) +k1,9311:6630773,21613603:0 +g1,9311:10614221,21613603 +g1,9311:11610083,21613603 +g1,9311:13933761,21613603 +h1,9311:16921346,21613603:0,0,0 +k1,9311:32583029,21613603:15661683 +g1,9311:32583029,21613603 +) +(1,9315:6630773,22429530:25952256,424439,106246 +(1,9313:6630773,22429530:0,0,0 +g1,9313:6630773,22429530 +g1,9313:6630773,22429530 +g1,9313:6303093,22429530 +(1,9313:6303093,22429530:0,0,0 +) +g1,9313:6630773,22429530 +) +g1,9315:7626635,22429530 +g1,9315:8954451,22429530 +g1,9315:10946175,22429530 +g1,9315:11942037,22429530 +g1,9315:14265715,22429530 +h1,9315:16921346,22429530:0,0,0 +k1,9315:32583029,22429530:15661683 +g1,9315:32583029,22429530 +) +] +) +g1,9316:32583029,22535776 +g1,9316:6630773,22535776 +g1,9316:6630773,22535776 +g1,9316:32583029,22535776 +g1,9316:32583029,22535776 +) +h1,9316:6630773,22732384:0,0,0 +(1,9320:6630773,23597464:25952256,513147,134348 +h1,9319:6630773,23597464:983040,0,0 +k1,9319:8696066,23597464:264364 +k1,9319:10064713,23597464:264365 +k1,9319:11076843,23597464:264364 +k1,9319:12781034,23597464:264365 +k1,9319:15074393,23597464:264364 +k1,9319:16357843,23597464:264365 +k1,9319:19808567,23597464:264364 +k1,9319:24009679,23597464:264364 +k1,9319:27249379,23597464:264365 +(1,9319:27249379,23597464:0,459977,115847 +r1,9375:27959357,23597464:709978,575824,115847 +k1,9319:27249379,23597464:-709978 +) +(1,9319:27249379,23597464:709978,459977,115847 +k1,9319:27249379,23597464:3277 +h1,9319:27956080,23597464:0,411205,112570 +) +k1,9319:28223721,23597464:264364 +k1,9319:29019583,23597464:264365 +k1,9319:32117068,23597464:264364 +k1,9319:32583029,23597464:0 +) +(1,9320:6630773,24462544:25952256,513147,134348 +k1,9319:7933172,24462544:283314 +k1,9319:11248838,24462544:283315 +k1,9319:13873098,24462544:283314 +(1,9319:13873098,24462544:0,414482,115847 +r1,9375:15286499,24462544:1413401,530329,115847 +k1,9319:13873098,24462544:-1413401 +) +(1,9319:13873098,24462544:1413401,414482,115847 +k1,9319:13873098,24462544:3277 +h1,9319:15283222,24462544:0,411205,112570 +) +k1,9319:15569813,24462544:283314 +k1,9319:17044572,24462544:283314 +k1,9319:18612393,24462544:283315 +k1,9319:21871042,24462544:283314 +(1,9319:21871042,24462544:0,452978,115847 +r1,9375:23284443,24462544:1413401,568825,115847 +k1,9319:21871042,24462544:-1413401 +) +(1,9319:21871042,24462544:1413401,452978,115847 +k1,9319:21871042,24462544:3277 +h1,9319:23281166,24462544:0,411205,112570 +) +k1,9319:23567757,24462544:283314 +k1,9319:24382568,24462544:283314 +k1,9319:27499004,24462544:283315 +k1,9319:28248279,24462544:283314 +k1,9319:29550678,24462544:283314 +k1,9319:32583029,24462544:0 +) +(1,9320:6630773,25327624:25952256,513147,126483 +k1,9319:9149166,25327624:177447 +(1,9319:9149166,25327624:0,414482,115847 +r1,9375:10914279,25327624:1765113,530329,115847 +k1,9319:9149166,25327624:-1765113 +) +(1,9319:9149166,25327624:1765113,414482,115847 +k1,9319:9149166,25327624:3277 +h1,9319:10911002,25327624:0,411205,112570 +) +k1,9319:11265397,25327624:177448 +k1,9319:14984410,25327624:177447 +k1,9319:16675083,25327624:177447 +k1,9319:17871615,25327624:177447 +k1,9319:22208633,25327624:177448 +k1,9319:25219201,25327624:177447 +(1,9319:25219201,25327624:0,459977,115847 +r1,9375:25929179,25327624:709978,575824,115847 +k1,9319:25219201,25327624:-709978 +) +(1,9319:25219201,25327624:709978,459977,115847 +k1,9319:25219201,25327624:3277 +h1,9319:25925902,25327624:0,411205,112570 +) +k1,9319:26106626,25327624:177447 +k1,9319:27475519,25327624:177448 +(1,9319:27475519,25327624:0,452978,115847 +r1,9375:28888920,25327624:1413401,568825,115847 +k1,9319:27475519,25327624:-1413401 +) +(1,9319:27475519,25327624:1413401,452978,115847 +k1,9319:27475519,25327624:3277 +h1,9319:28885643,25327624:0,411205,112570 +) +k1,9319:29066367,25327624:177447 +k1,9319:32583029,25327624:0 +) +(1,9320:6630773,26192704:25952256,513147,126483 +g1,9319:7821562,26192704 +g1,9319:10150056,26192704 +g1,9319:13356077,26192704 +g1,9319:18128408,26192704 +g1,9319:18986929,26192704 +g1,9319:20205243,26192704 +g1,9319:22084815,26192704 +g1,9319:25062771,26192704 +g1,9319:26023528,26192704 +g1,9319:27241842,26192704 +k1,9320:32583029,26192704:2135166 +g1,9320:32583029,26192704 +) +v1,9322:6630773,27057784:0,393216,0 +(1,9323:6630773,28311188:25952256,1646620,0 +g1,9323:6630773,28311188 +g1,9323:6237557,28311188 +r1,9375:6368629,28311188:131072,1646620,0 +g1,9323:6567858,28311188 +g1,9323:6764466,28311188 +[1,9323:6764466,28311188:25818563,1646620,0 +(1,9323:6764466,27330261:25818563,665693,196608 +(1,9322:6764466,27330261:0,665693,196608 +r1,9375:8010564,27330261:1246098,862301,196608 +k1,9322:6764466,27330261:-1246098 +) +(1,9322:6764466,27330261:1246098,665693,196608 +) +k1,9322:8297699,27330261:287135 +k1,9322:9615628,27330261:327680 +k1,9322:11200377,27330261:287136 +k1,9322:12881463,27330261:287135 +k1,9322:14187683,27330261:287135 +k1,9322:15971006,27330261:287136 +k1,9322:16874179,27330261:287135 +k1,9322:18180399,27330261:287135 +k1,9322:20438203,27330261:287136 +k1,9322:22580662,27330261:287135 +k1,9322:23629325,27330261:287135 +k1,9322:26913422,27330261:287136 +k1,9322:29962900,27330261:287135 +k1,9322:32583029,27330261:0 +) +(1,9323:6764466,28195341:25818563,426639,115847 +g1,9322:9271873,28195341 +g1,9322:10122530,28195341 +(1,9322:10122530,28195341:0,414482,115847 +r1,9375:10480796,28195341:358266,530329,115847 +k1,9322:10122530,28195341:-358266 +) +(1,9322:10122530,28195341:358266,414482,115847 +k1,9322:10122530,28195341:3277 +h1,9322:10477519,28195341:0,411205,112570 +) +k1,9323:32583030,28195341:21928564 +g1,9323:32583030,28195341 +) +] +g1,9323:32583029,28311188 +) +h1,9323:6630773,28311188:0,0,0 +v1,9328:6630773,29176268:0,393216,0 +(1,9375:6630773,45058696:25952256,16275644,0 +g1,9375:6630773,45058696 +g1,9375:6237557,45058696 +r1,9375:6368629,45058696:131072,16275644,0 +g1,9375:6567858,45058696 +g1,9375:6764466,45058696 +[1,9375:6764466,45058696:25818563,16275644,0 +(1,9329:6764466,29484566:25818563,701514,196608 +(1,9328:6764466,29484566:0,701514,196608 +r1,9375:8010564,29484566:1246098,898122,196608 +k1,9328:6764466,29484566:-1246098 +) +(1,9328:6764466,29484566:1246098,701514,196608 +) +g1,9328:8209793,29484566 +g1,9328:8537473,29484566 +g1,9328:9634545,29484566 +g1,9328:11004247,29484566 +g1,9328:12402130,29484566 +g1,9328:15860464,29484566 +g1,9328:17078778,29484566 +g1,9328:18863978,29484566 +g1,9328:20885763,29484566 +g1,9328:25139049,29484566 +k1,9329:32583029,29484566:5618147 +g1,9329:32583029,29484566 +) +v1,9331:6764466,30169421:0,393216,0 +(1,9340:6764466,32679225:25818563,2903020,196608 +g1,9340:6764466,32679225 +g1,9340:6764466,32679225 +g1,9340:6567858,32679225 +(1,9340:6567858,32679225:0,2903020,196608 +r1,9375:32779637,32679225:26211779,3099628,196608 +k1,9340:6567857,32679225:-26211780 +) +(1,9340:6567858,32679225:26211779,2903020,196608 +[1,9340:6764466,32679225:25818563,2706412,0 +(1,9333:6764466,30380736:25818563,407923,0 +(1,9332:6764466,30380736:0,0,0 +g1,9332:6764466,30380736 +g1,9332:6764466,30380736 +g1,9332:6436786,30380736 +(1,9332:6436786,30380736:0,0,0 +) +g1,9332:6764466,30380736 +) +g1,9333:7428374,30380736 +k1,9333:7428374,30380736:0 +h1,9333:7760328,30380736:0,0,0 +k1,9333:32583028,30380736:24822700 +g1,9333:32583028,30380736 +) +(1,9334:6764466,31065591:25818563,407923,4954 +h1,9334:6764466,31065591:0,0,0 +g1,9334:7428374,31065591 +g1,9334:8424236,31065591 +h1,9334:8756190,31065591:0,0,0 +k1,9334:32583030,31065591:23826840 +g1,9334:32583030,31065591 +) +(1,9335:6764466,31750446:25818563,431045,112852 +h1,9335:6764466,31750446:0,0,0 +g1,9335:7760328,31750446 +g1,9335:8756190,31750446 +g1,9335:9420098,31750446 +g1,9335:10415960,31750446 +g1,9335:14067454,31750446 +g1,9335:15063316,31750446 +g1,9335:18714809,31750446 +g1,9335:20374579,31750446 +g1,9335:24026073,31750446 +g1,9335:25021935,31750446 +g1,9335:26349751,31750446 +h1,9335:29669290,31750446:0,0,0 +k1,9335:32583029,31750446:2913739 +g1,9335:32583029,31750446 +) +(1,9339:6764466,32566373:25818563,424439,112852 +(1,9337:6764466,32566373:0,0,0 +g1,9337:6764466,32566373 +g1,9337:6764466,32566373 +g1,9337:6436786,32566373 +(1,9337:6436786,32566373:0,0,0 +) +g1,9337:6764466,32566373 +) +g1,9339:7760328,32566373 +g1,9339:9088144,32566373 +g1,9339:10747914,32566373 +g1,9339:11743776,32566373 +g1,9339:13071592,32566373 +h1,9339:16059177,32566373:0,0,0 +k1,9339:32583029,32566373:16523852 +g1,9339:32583029,32566373 +) +] +) +g1,9340:32583029,32679225 +g1,9340:6764466,32679225 +g1,9340:6764466,32679225 +g1,9340:32583029,32679225 +g1,9340:32583029,32679225 +) +h1,9340:6764466,32875833:0,0,0 +(1,9344:6764466,33740913:25818563,505283,134348 +h1,9343:6764466,33740913:983040,0,0 +k1,9343:9357179,33740913:227519 +k1,9343:11077608,33740913:227519 +k1,9343:12324213,33740913:227520 +k1,9343:15738092,33740913:227519 +k1,9343:17834042,33740913:227519 +k1,9343:19334926,33740913:227519 +k1,9343:22623632,33740913:227519 +k1,9343:24456128,33740913:227519 +k1,9343:26814223,33740913:227520 +k1,9343:27812445,33740913:227519 +k1,9343:29646907,33740913:227519 +k1,9343:31563944,33740913:227519 +k1,9343:32583029,33740913:0 +) +(1,9344:6764466,34605993:25818563,505283,7863 +g1,9343:8120405,34605993 +g1,9343:10174958,34605993 +g1,9343:11867097,34605993 +k1,9344:32583028,34605993:19322636 +g1,9344:32583028,34605993 +) +v1,9346:6764466,35290848:0,393216,0 +(1,9352:6764466,37001241:25818563,2103609,196608 +g1,9352:6764466,37001241 +g1,9352:6764466,37001241 +g1,9352:6567858,37001241 +(1,9352:6567858,37001241:0,2103609,196608 +r1,9375:32779637,37001241:26211779,2300217,196608 +k1,9352:6567857,37001241:-26211780 +) +(1,9352:6567858,37001241:26211779,2103609,196608 +[1,9352:6764466,37001241:25818563,1907001,0 +(1,9348:6764466,35518679:25818563,424439,79822 +(1,9347:6764466,35518679:0,0,0 +g1,9347:6764466,35518679 +g1,9347:6764466,35518679 +g1,9347:6436786,35518679 +(1,9347:6436786,35518679:0,0,0 +) +g1,9347:6764466,35518679 +) +g1,9348:7428374,35518679 +g1,9348:8092282,35518679 +g1,9348:9752052,35518679 +g1,9348:13071591,35518679 +k1,9348:13071591,35518679:0 +h1,9348:14731361,35518679:0,0,0 +k1,9348:32583029,35518679:17851668 +g1,9348:32583029,35518679 +) +(1,9349:6764466,36203534:25818563,431045,112852 +h1,9349:6764466,36203534:0,0,0 +g1,9349:7760328,36203534 +g1,9349:8756190,36203534 +g1,9349:9420098,36203534 +g1,9349:10415960,36203534 +g1,9349:14067454,36203534 +g1,9349:15063316,36203534 +h1,9349:18382855,36203534:0,0,0 +k1,9349:32583029,36203534:14200174 +g1,9349:32583029,36203534 +) +(1,9350:6764466,36888389:25818563,424439,112852 +h1,9350:6764466,36888389:0,0,0 +g1,9350:8424236,36888389 +g1,9350:12075730,36888389 +g1,9350:13071592,36888389 +g1,9350:14399408,36888389 +h1,9350:17718947,36888389:0,0,0 +k1,9350:32583029,36888389:14864082 +g1,9350:32583029,36888389 +) +] +) +g1,9352:32583029,37001241 +g1,9352:6764466,37001241 +g1,9352:6764466,37001241 +g1,9352:32583029,37001241 +g1,9352:32583029,37001241 +) +h1,9352:6764466,37197849:0,0,0 +(1,9356:6764466,38062929:25818563,505283,126483 +h1,9355:6764466,38062929:983040,0,0 +k1,9355:9385554,38062929:217227 +k1,9355:10418048,38062929:217226 +k1,9355:11654360,38062929:217227 +k1,9355:15925643,38062929:217226 +k1,9355:17311377,38062929:217227 +k1,9355:19114574,38062929:217226 +k1,9355:21095375,38062929:217227 +k1,9355:23010639,38062929:217226 +k1,9355:24096218,38062929:217227 +k1,9355:25510787,38062929:217226 +k1,9355:27331025,38062929:217227 +k1,9355:29604115,38062929:217226 +k1,9355:30507504,38062929:217227 +k1,9355:32583029,38062929:0 +) +(1,9356:6764466,38928009:25818563,505283,7863 +k1,9356:32583028,38928009:23776460 +g1,9356:32583028,38928009 +) +v1,9358:6764466,39612864:0,393216,0 +(1,9371:6764466,44862088:25818563,5642440,196608 +g1,9371:6764466,44862088 +g1,9371:6764466,44862088 +g1,9371:6567858,44862088 +(1,9371:6567858,44862088:0,5642440,196608 +r1,9375:32779637,44862088:26211779,5839048,196608 +k1,9371:6567857,44862088:-26211780 +) +(1,9371:6567858,44862088:26211779,5642440,196608 +[1,9371:6764466,44862088:25818563,5445832,0 +(1,9360:6764466,39824179:25818563,407923,0 +(1,9359:6764466,39824179:0,0,0 +g1,9359:6764466,39824179 +g1,9359:6764466,39824179 +g1,9359:6436786,39824179 +(1,9359:6436786,39824179:0,0,0 +) +g1,9359:6764466,39824179 +) +g1,9360:7428374,39824179 +k1,9360:7428374,39824179:0 +h1,9360:7760328,39824179:0,0,0 +k1,9360:32583028,39824179:24822700 +g1,9360:32583028,39824179 +) +(1,9361:6764466,40509034:25818563,407923,4954 +h1,9361:6764466,40509034:0,0,0 +g1,9361:7428374,40509034 +g1,9361:8424236,40509034 +h1,9361:8756190,40509034:0,0,0 +k1,9361:32583030,40509034:23826840 +g1,9361:32583030,40509034 +) +(1,9362:6764466,41193889:25818563,431045,79822 +h1,9362:6764466,41193889:0,0,0 +g1,9362:7760328,41193889 +g1,9362:8756190,41193889 +g1,9362:9420098,41193889 +g1,9362:10415960,41193889 +h1,9362:10747914,41193889:0,0,0 +k1,9362:32583030,41193889:21835116 +g1,9362:32583030,41193889 +) +(1,9363:6764466,41878744:25818563,424439,112852 +h1,9363:6764466,41878744:0,0,0 +g1,9363:7096420,41878744 +g1,9363:7428374,41878744 +g1,9363:7760328,41878744 +g1,9363:8092282,41878744 +g1,9363:11743776,41878744 +g1,9363:12739638,41878744 +h1,9363:16059177,41878744:0,0,0 +k1,9363:32583029,41878744:16523852 +g1,9363:32583029,41878744 +) +(1,9364:6764466,42563599:25818563,424439,79822 +h1,9364:6764466,42563599:0,0,0 +g1,9364:7096420,42563599 +g1,9364:7428374,42563599 +g1,9364:8092282,42563599 +g1,9364:9752052,42563599 +h1,9364:10084006,42563599:0,0,0 +k1,9364:32583030,42563599:22499024 +g1,9364:32583030,42563599 +) +(1,9365:6764466,43248454:25818563,424439,112852 +h1,9365:6764466,43248454:0,0,0 +g1,9365:7096420,43248454 +g1,9365:7428374,43248454 +g1,9365:7760328,43248454 +g1,9365:8092282,43248454 +g1,9365:11743776,43248454 +g1,9365:12739638,43248454 +g1,9365:14067454,43248454 +h1,9365:17386993,43248454:0,0,0 +k1,9365:32583029,43248454:15196036 +g1,9365:32583029,43248454 +) +(1,9366:6764466,43933309:25818563,424439,79822 +h1,9366:6764466,43933309:0,0,0 +g1,9366:7096420,43933309 +g1,9366:7428374,43933309 +h1,9366:7760328,43933309:0,0,0 +k1,9366:32583028,43933309:24822700 +g1,9366:32583028,43933309 +) +(1,9370:6764466,44749236:25818563,424439,112852 +(1,9368:6764466,44749236:0,0,0 +g1,9368:6764466,44749236 +g1,9368:6764466,44749236 +g1,9368:6436786,44749236 +(1,9368:6436786,44749236:0,0,0 +) +g1,9368:6764466,44749236 +) +g1,9370:7760328,44749236 +g1,9370:9088144,44749236 +g1,9370:10747914,44749236 +g1,9370:11743776,44749236 +g1,9370:13071592,44749236 +h1,9370:16059177,44749236:0,0,0 +k1,9370:32583029,44749236:16523852 +g1,9370:32583029,44749236 +) +] +) +g1,9371:32583029,44862088 +g1,9371:6764466,44862088 +g1,9371:6764466,44862088 +g1,9371:32583029,44862088 +g1,9371:32583029,44862088 +) +h1,9371:6764466,45058696:0,0,0 +] +g1,9375:32583029,45058696 +) +] +(1,9375:32583029,45706769:0,0,0 +g1,9375:32583029,45706769 +) +) +] +(1,9375:6630773,47279633:25952256,0,0 +h1,9375:6630773,47279633:25952256,0,0 +) +] +(1,9375:4262630,4025873:0,0,0 +[1,9375:-473656,4025873:0,0,0 +(1,9375:-473656,-710413:0,0,0 +(1,9375:-473656,-710413:0,0,0 +g1,9375:-473656,-710413 +) +g1,9375:-473656,-710413 +) +] +) +] +!25448 +}149 +Input:1286:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1287:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1288:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1289:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1290:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1291:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1292:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1293:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1294:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1295:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1296:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1297:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1298:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1299:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1300:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1301:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1302:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1303:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1304:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1305:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1892 +{150 +[1,9440:4262630,47279633:28320399,43253760,0 +(1,9440:4262630,4025873:0,0,0 +[1,9440:-473656,4025873:0,0,0 +(1,9440:-473656,-710413:0,0,0 +(1,9440:-473656,-644877:0,0,0 +k1,9440:-473656,-644877:-65536 ) -(1,10381:-473656,4736287:0,0,0 -k1,10381:-473656,4736287:5209943 +(1,9440:-473656,4736287:0,0,0 +k1,9440:-473656,4736287:5209943 ) -g1,10381:-473656,-710413 +g1,9440:-473656,-710413 ) ] ) -[1,10381:6630773,47279633:25952256,43253760,0 -[1,10381:6630773,4812305:25952256,786432,0 -(1,10381:6630773,4812305:25952256,505283,134348 -(1,10381:6630773,4812305:25952256,505283,134348 -g1,10381:3078558,4812305 -[1,10381:3078558,4812305:0,0,0 -(1,10381:3078558,2439708:0,1703936,0 -k1,10381:1358238,2439708:-1720320 -(1,8393:1358238,2439708:1720320,1703936,0 -(1,8393:1358238,2439708:1179648,16384,0 -r1,10381:2537886,2439708:1179648,16384,0 +[1,9440:6630773,47279633:25952256,43253760,0 +[1,9440:6630773,4812305:25952256,786432,0 +(1,9440:6630773,4812305:25952256,505283,11795 +(1,9440:6630773,4812305:25952256,505283,11795 +g1,9440:3078558,4812305 +[1,9440:3078558,4812305:0,0,0 +(1,9440:3078558,2439708:0,1703936,0 +k1,9440:1358238,2439708:-1720320 +(1,8606:1358238,2439708:1720320,1703936,0 +(1,8606:1358238,2439708:1179648,16384,0 +r1,9440:2537886,2439708:1179648,16384,0 ) -g1,8393:3062174,2439708 -(1,8393:3062174,2439708:16384,1703936,0 -[1,8393:3062174,2439708:25952256,1703936,0 -(1,8393:3062174,1915420:25952256,1179648,0 -(1,8393:3062174,1915420:16384,1179648,0 -r1,10381:3078558,1915420:16384,1179648,0 +g1,8606:3062174,2439708 +(1,8606:3062174,2439708:16384,1703936,0 +[1,8606:3062174,2439708:25952256,1703936,0 +(1,8606:3062174,1915420:25952256,1179648,0 +(1,8606:3062174,1915420:16384,1179648,0 +r1,9440:3078558,1915420:16384,1179648,0 ) -k1,8393:29014430,1915420:25935872 -g1,8393:29014430,1915420 +k1,8606:29014430,1915420:25935872 +g1,8606:29014430,1915420 ) ] ) ) ) ] -[1,10381:3078558,4812305:0,0,0 -(1,10381:3078558,2439708:0,1703936,0 -g1,10381:29030814,2439708 -g1,10381:36135244,2439708 -(1,8393:36135244,2439708:1720320,1703936,0 -(1,8393:36135244,2439708:16384,1703936,0 -[1,8393:36135244,2439708:25952256,1703936,0 -(1,8393:36135244,1915420:25952256,1179648,0 -(1,8393:36135244,1915420:16384,1179648,0 -r1,10381:36151628,1915420:16384,1179648,0 +[1,9440:3078558,4812305:0,0,0 +(1,9440:3078558,2439708:0,1703936,0 +g1,9440:29030814,2439708 +g1,9440:36135244,2439708 +(1,8606:36135244,2439708:1720320,1703936,0 +(1,8606:36135244,2439708:16384,1703936,0 +[1,8606:36135244,2439708:25952256,1703936,0 +(1,8606:36135244,1915420:25952256,1179648,0 +(1,8606:36135244,1915420:16384,1179648,0 +r1,9440:36151628,1915420:16384,1179648,0 ) -k1,8393:62087500,1915420:25935872 -g1,8393:62087500,1915420 +k1,8606:62087500,1915420:25935872 +g1,8606:62087500,1915420 ) ] ) -g1,8393:36675916,2439708 -(1,8393:36675916,2439708:1179648,16384,0 -r1,10381:37855564,2439708:1179648,16384,0 +g1,8606:36675916,2439708 +(1,8606:36675916,2439708:1179648,16384,0 +r1,9440:37855564,2439708:1179648,16384,0 ) ) -k1,10381:3078556,2439708:-34777008 +k1,9440:3078556,2439708:-34777008 ) ] -[1,10381:3078558,4812305:0,0,0 -(1,10381:3078558,49800853:0,16384,2228224 -k1,10381:1358238,49800853:-1720320 -(1,8393:1358238,49800853:1720320,16384,2228224 -(1,8393:1358238,49800853:1179648,16384,0 -r1,10381:2537886,49800853:1179648,16384,0 +[1,9440:3078558,4812305:0,0,0 +(1,9440:3078558,49800853:0,16384,2228224 +k1,9440:1358238,49800853:-1720320 +(1,8606:1358238,49800853:1720320,16384,2228224 +(1,8606:1358238,49800853:1179648,16384,0 +r1,9440:2537886,49800853:1179648,16384,0 ) -g1,8393:3062174,49800853 -(1,8393:3062174,52029077:16384,1703936,0 -[1,8393:3062174,52029077:25952256,1703936,0 -(1,8393:3062174,51504789:25952256,1179648,0 -(1,8393:3062174,51504789:16384,1179648,0 -r1,10381:3078558,51504789:16384,1179648,0 +g1,8606:3062174,49800853 +(1,8606:3062174,52029077:16384,1703936,0 +[1,8606:3062174,52029077:25952256,1703936,0 +(1,8606:3062174,51504789:25952256,1179648,0 +(1,8606:3062174,51504789:16384,1179648,0 +r1,9440:3078558,51504789:16384,1179648,0 ) -k1,8393:29014430,51504789:25935872 -g1,8393:29014430,51504789 +k1,8606:29014430,51504789:25935872 +g1,8606:29014430,51504789 ) ] ) ) ) ] -[1,10381:3078558,4812305:0,0,0 -(1,10381:3078558,49800853:0,16384,2228224 -g1,10381:29030814,49800853 -g1,10381:36135244,49800853 -(1,8393:36135244,49800853:1720320,16384,2228224 -(1,8393:36135244,52029077:16384,1703936,0 -[1,8393:36135244,52029077:25952256,1703936,0 -(1,8393:36135244,51504789:25952256,1179648,0 -(1,8393:36135244,51504789:16384,1179648,0 -r1,10381:36151628,51504789:16384,1179648,0 +[1,9440:3078558,4812305:0,0,0 +(1,9440:3078558,49800853:0,16384,2228224 +g1,9440:29030814,49800853 +g1,9440:36135244,49800853 +(1,8606:36135244,49800853:1720320,16384,2228224 +(1,8606:36135244,52029077:16384,1703936,0 +[1,8606:36135244,52029077:25952256,1703936,0 +(1,8606:36135244,51504789:25952256,1179648,0 +(1,8606:36135244,51504789:16384,1179648,0 +r1,9440:36151628,51504789:16384,1179648,0 +) +k1,8606:62087500,51504789:25935872 +g1,8606:62087500,51504789 +) +] +) +g1,8606:36675916,49800853 +(1,8606:36675916,49800853:1179648,16384,0 +r1,9440:37855564,49800853:1179648,16384,0 +) +) +k1,9440:3078556,49800853:-34777008 +) +] +g1,9440:6630773,4812305 +g1,9440:6630773,4812305 +g1,9440:10456764,4812305 +g1,9440:13962940,4812305 +k1,9440:31387652,4812305:17424712 +) +) +] +[1,9440:6630773,45706769:25952256,40108032,0 +(1,9440:6630773,45706769:25952256,40108032,0 +(1,9440:6630773,45706769:0,0,0 +g1,9440:6630773,45706769 +) +[1,9440:6630773,45706769:25952256,40108032,0 +v1,9375:6630773,6254097:0,393216,0 +(1,9375:6630773,8230671:25952256,2369790,0 +g1,9375:6630773,8230671 +g1,9375:6237557,8230671 +r1,9440:6368629,8230671:131072,2369790,0 +g1,9375:6567858,8230671 +g1,9375:6764466,8230671 +[1,9375:6764466,8230671:25818563,2369790,0 +(1,9375:6764466,6374028:25818563,513147,134348 +h1,9374:6764466,6374028:983040,0,0 +k1,9374:8659385,6374028:284044 +k1,9374:9962514,6374028:284044 +k1,9374:12907975,6374028:284044 +k1,9374:15221014,6374028:284044 +k1,9374:16373410,6374028:284044 +k1,9374:19451254,6374028:284044 +k1,9374:20091157,6374028:284043 +k1,9374:22248220,6374028:284044 +k1,9374:25718624,6374028:284044 +k1,9374:28637871,6374028:284044 +k1,9374:30373537,6374028:284044 +k1,9374:31923737,6374028:284044 +k1,9374:32583029,6374028:0 +) +(1,9375:6764466,7239108:25818563,505283,126483 +k1,9374:8668484,7239108:301007 +k1,9374:11199026,7239108:301007 +k1,9374:12572202,7239108:301007 +k1,9374:13559371,7239108:301007 +k1,9374:15557104,7239108:301006 +k1,9374:17913975,7239108:301007 +k1,9374:20144362,7239108:301007 +k1,9374:23859139,7239108:301007 +k1,9374:27850478,7239108:301007 +k1,9374:30822732,7239108:301007 +k1,9375:32583029,7239108:0 +) +(1,9375:6764466,8104188:25818563,505283,126483 +g1,9374:8933052,8104188 +g1,9374:10901098,8104188 +g1,9374:12575542,8104188 +g1,9374:14284721,8104188 +g1,9374:17277750,8104188 +g1,9374:20112182,8104188 +g1,9374:21763033,8104188 +k1,9375:32583029,8104188:9380170 +g1,9375:32583029,8104188 +) +] +g1,9375:32583029,8230671 +) +h1,9375:6630773,8230671:0,0,0 +v1,9378:6630773,9095751:0,393216,0 +(1,9379:6630773,11224871:25952256,2522336,0 +g1,9379:6630773,11224871 +g1,9379:6237557,11224871 +r1,9440:6368629,11224871:131072,2522336,0 +g1,9379:6567858,11224871 +g1,9379:6764466,11224871 +[1,9379:6764466,11224871:25818563,2522336,0 +(1,9379:6764466,9368228:25818563,665693,196608 +(1,9378:6764466,9368228:0,665693,196608 +r1,9440:8010564,9368228:1246098,862301,196608 +k1,9378:6764466,9368228:-1246098 +) +(1,9378:6764466,9368228:1246098,665693,196608 +) +k1,9378:8278202,9368228:267638 +k1,9378:9596131,9368228:327680 +k1,9378:11161383,9368228:267639 +k1,9378:12822972,9368228:267638 +k1,9378:14109695,9368228:267638 +k1,9378:15469818,9368228:267638 +k1,9378:16396749,9368228:267639 +k1,9378:20257726,9368228:267638 +k1,9378:23774639,9368228:267638 +k1,9378:25436228,9368228:267638 +k1,9378:27170563,9368228:267639 +k1,9378:29562878,9368228:267638 +k1,9378:31021961,9368228:267638 +k1,9379:32583029,9368228:0 +) +(1,9379:6764466,10233308:25818563,505283,134348 +k1,9378:9081314,10233308:251153 +k1,9378:13022799,10233308:251153 +k1,9378:14465397,10233308:251153 +k1,9378:16002366,10233308:251153 +k1,9378:17933862,10233308:251153 +k1,9378:19515396,10233308:251153 +k1,9378:20417978,10233308:251154 +k1,9378:23381011,10233308:251153 +(1,9378:23381011,10233308:0,459977,115847 +r1,9440:24090989,10233308:709978,575824,115847 +k1,9378:23381011,10233308:-709978 +) +(1,9378:23381011,10233308:709978,459977,115847 +k1,9378:23381011,10233308:3277 +h1,9378:24087712,10233308:0,411205,112570 +) +k1,9378:24342142,10233308:251153 +k1,9378:25784740,10233308:251153 +(1,9378:25784740,10233308:0,452978,115847 +r1,9440:27198141,10233308:1413401,568825,115847 +k1,9378:25784740,10233308:-1413401 +) +(1,9378:25784740,10233308:1413401,452978,115847 +k1,9378:25784740,10233308:3277 +h1,9378:27194864,10233308:0,411205,112570 +) +k1,9378:27449294,10233308:251153 +k1,9378:28351875,10233308:251153 +k1,9378:30423618,10233308:251153 +k1,9378:32583029,10233308:0 +) +(1,9379:6764466,11098388:25818563,505283,126483 +g1,9378:8613892,11098388 +g1,9378:10255568,11098388 +g1,9378:11627236,11098388 +k1,9379:32583030,11098388:18369088 +g1,9379:32583030,11098388 +) +] +g1,9379:32583029,11224871 +) +h1,9379:6630773,11224871:0,0,0 +(1,9382:6630773,12089951:25952256,505283,126483 +h1,9381:6630773,12089951:983040,0,0 +k1,9381:8473192,12089951:231544 +k1,9381:9293248,12089951:231543 +k1,9381:10543877,12089951:231544 +k1,9381:12455764,12089951:231544 +k1,9381:15466034,12089951:231543 +k1,9381:16459106,12089951:231544 +k1,9381:17822457,12089951:231544 +k1,9381:21467771,12089951:231544 +k1,9381:24885674,12089951:231543 +k1,9381:25648715,12089951:231544 +k1,9381:26899344,12089951:231544 +k1,9381:28811230,12089951:231543 +k1,9381:31821501,12089951:231544 +k1,9381:32583029,12089951:0 +) +(1,9382:6630773,12955031:25952256,505283,126483 +k1,9381:7838656,12955031:188798 +k1,9381:9175645,12955031:188798 +k1,9381:11489121,12955031:188799 +k1,9381:14864279,12955031:188798 +k1,9381:17886198,12955031:188798 +k1,9381:20084986,12955031:188799 +k1,9381:21292869,12955031:188798 +k1,9381:24895437,12955031:188798 +k1,9381:26414616,12955031:188798 +k1,9381:27984259,12955031:188799 +k1,9381:30241373,12955031:188798 +k1,9381:31714677,12955031:188798 +k1,9381:32583029,12955031:0 +) +(1,9382:6630773,13820111:25952256,505283,134348 +k1,9381:7918773,13820111:183718 +k1,9381:10109204,13820111:183719 +k1,9381:11312007,13820111:183718 +k1,9381:13176069,13820111:183719 +k1,9381:16138514,13820111:183718 +k1,9381:17083760,13820111:183718 +k1,9381:18038182,13820111:183719 +(1,9381:18038182,13820111:0,459977,115847 +r1,9440:18748160,13820111:709978,575824,115847 +k1,9381:18038182,13820111:-709978 +) +(1,9381:18038182,13820111:709978,459977,115847 +k1,9381:18038182,13820111:3277 +h1,9381:18744883,13820111:0,411205,112570 +) +k1,9381:18931878,13820111:183718 +k1,9381:20307042,13820111:183719 +(1,9381:20307042,13820111:0,452978,115847 +r1,9440:21720443,13820111:1413401,568825,115847 +k1,9381:20307042,13820111:-1413401 +) +(1,9381:20307042,13820111:1413401,452978,115847 +k1,9381:20307042,13820111:3277 +h1,9381:21717166,13820111:0,411205,112570 +) +k1,9381:21904161,13820111:183718 +k1,9381:25274239,13820111:183718 +k1,9381:26109386,13820111:183719 +k1,9381:26648964,13820111:183718 +k1,9381:29517693,13820111:183719 +k1,9381:31082255,13820111:183718 +k1,9381:32583029,13820111:0 +) +(1,9382:6630773,14685191:25952256,513147,126483 +k1,9381:7336989,14685191:174719 +k1,9381:8724779,14685191:174719 +k1,9381:12204478,14685191:174718 +k1,9381:14066094,14685191:174719 +k1,9381:15312982,14685191:174719 +k1,9381:19373331,14685191:174719 +k1,9381:20652332,14685191:174719 +k1,9381:22669922,14685191:174718 +k1,9381:23460679,14685191:174719 +k1,9381:30247981,14685191:174719 +k1,9382:32583029,14685191:0 +k1,9382:32583029,14685191:0 +) +v1,9384:6630773,15370046:0,393216,0 +(1,9394:6630773,18564705:25952256,3587875,196608 +g1,9394:6630773,18564705 +g1,9394:6630773,18564705 +g1,9394:6434165,18564705 +(1,9394:6434165,18564705:0,3587875,196608 +r1,9440:32779637,18564705:26345472,3784483,196608 +k1,9394:6434165,18564705:-26345472 +) +(1,9394:6434165,18564705:26345472,3587875,196608 +[1,9394:6630773,18564705:25952256,3391267,0 +(1,9386:6630773,15581361:25952256,407923,4954 +(1,9385:6630773,15581361:0,0,0 +g1,9385:6630773,15581361 +g1,9385:6630773,15581361 +g1,9385:6303093,15581361 +(1,9385:6303093,15581361:0,0,0 +) +g1,9385:6630773,15581361 +) +g1,9386:7294681,15581361 +g1,9386:8290543,15581361 +h1,9386:8622497,15581361:0,0,0 +k1,9386:32583029,15581361:23960532 +g1,9386:32583029,15581361 +) +(1,9387:6630773,16266216:25952256,308282,112852 +h1,9387:6630773,16266216:0,0,0 +g1,9387:10282266,16266216 +k1,9387:10282266,16266216:0 +h1,9387:10946174,16266216:0,0,0 +k1,9387:32583030,16266216:21636856 +g1,9387:32583030,16266216 +) +(1,9388:6630773,16951071:25952256,431045,112852 +h1,9388:6630773,16951071:0,0,0 +g1,9388:6962727,16951071 +g1,9388:7294681,16951071 +g1,9388:8290543,16951071 +g1,9388:9286405,16951071 +g1,9388:9950313,16951071 +g1,9388:10946175,16951071 +g1,9388:12605945,16951071 +g1,9388:13601807,16951071 +g1,9388:16921346,16951071 +g1,9388:18581116,16951071 +g1,9388:20240886,16951071 +g1,9388:21236748,16951071 +g1,9388:22564564,16951071 +h1,9388:25552149,16951071:0,0,0 +k1,9388:32583029,16951071:7030880 +g1,9388:32583029,16951071 +) +(1,9389:6630773,17635926:25952256,424439,112852 +h1,9389:6630773,17635926:0,0,0 +k1,9389:6630773,17635926:0 +h1,9389:12273990,17635926:0,0,0 +k1,9389:32583030,17635926:20309040 +g1,9389:32583030,17635926 +) +(1,9393:6630773,18451853:25952256,424439,112852 +(1,9391:6630773,18451853:0,0,0 +g1,9391:6630773,18451853 +g1,9391:6630773,18451853 +g1,9391:6303093,18451853 +(1,9391:6303093,18451853:0,0,0 +) +g1,9391:6630773,18451853 +) +g1,9393:7626635,18451853 +g1,9393:8954451,18451853 +g1,9393:10614221,18451853 +g1,9393:11610083,18451853 +g1,9393:12937899,18451853 +h1,9393:15925484,18451853:0,0,0 +k1,9393:32583029,18451853:16657545 +g1,9393:32583029,18451853 +) +] +) +g1,9394:32583029,18564705 +g1,9394:6630773,18564705 +g1,9394:6630773,18564705 +g1,9394:32583029,18564705 +g1,9394:32583029,18564705 +) +h1,9394:6630773,18761313:0,0,0 +v1,9398:6630773,19626393:0,393216,0 +(1,9410:6630773,25454445:25952256,6221268,0 +g1,9410:6630773,25454445 +g1,9410:6237557,25454445 +r1,9440:6368629,25454445:131072,6221268,0 +g1,9410:6567858,25454445 +g1,9410:6764466,25454445 +[1,9410:6764466,25454445:25818563,6221268,0 +(1,9400:6764466,19934691:25818563,701514,196608 +(1,9398:6764466,19934691:0,701514,196608 +r1,9440:8010564,19934691:1246098,898122,196608 +k1,9398:6764466,19934691:-1246098 +) +(1,9398:6764466,19934691:1246098,701514,196608 +) +k1,9398:8160423,19934691:149859 +k1,9398:8488103,19934691:327680 +k1,9398:9115719,19934691:149859 +k1,9398:10284662,19934691:149858 +k1,9398:13466872,19934691:149859 +k1,9398:16803091,19934691:149859 +k1,9398:19293896,19934691:149859 +k1,9398:19799615,19934691:149859 +k1,9398:21629816,19934691:149858 +k1,9398:22438967,19934691:149859 +k1,9398:22944686,19934691:149859 +k1,9398:24649714,19934691:149859 +k1,9398:26501543,19934691:149859 +k1,9398:28093848,19934691:149858 +(1,9398:28093848,19934691:0,452978,122846 +r1,9440:30562385,19934691:2468537,575824,122846 +k1,9398:28093848,19934691:-2468537 +) +(1,9398:28093848,19934691:2468537,452978,122846 +k1,9398:28093848,19934691:3277 +h1,9398:30559108,19934691:0,411205,112570 +) +k1,9398:30885914,19934691:149859 +k1,9398:31450567,19934691:149810 +k1,9398:32583029,19934691:0 +) +(1,9400:6764466,20709982:25818563,513147,134348 +k1,9398:9419470,20709982:140388 +k1,9398:10211285,20709982:140387 +k1,9398:12744392,20709982:140388 +k1,9398:13342877,20709982:140388 +k1,9398:14750730,20709982:140387 +k1,9398:15246978,20709982:140388 +k1,9398:17630662,20709982:140387 +k1,9398:19151894,20709982:140388 +k1,9398:19823779,20709982:140388 +k1,9398:23412015,20709982:140387 +k1,9398:25065629,20709982:140388 +k1,9398:27533200,20709982:140388 +k1,9398:28332879,20709982:140387 +k1,9398:28829127,20709982:140388 +k1,9398:32583029,20709982:0 +) +(1,9400:6764466,21394837:25818563,513147,134348 +k1,9398:7657199,21394837:241305 +k1,9398:9492340,21394837:241305 +k1,9398:10419807,21394837:241305 +k1,9398:11680197,21394837:241305 +k1,9398:15398187,21394837:241305 +k1,9398:17207113,21394837:241305 +(1,9398:17207113,21394837:0,452978,122846 +r1,9440:19675650,21394837:2468537,575824,122846 +k1,9398:17207113,21394837:-2468537 +) +(1,9398:17207113,21394837:2468537,452978,122846 +k1,9398:17207113,21394837:3277 +h1,9398:19672373,21394837:0,411205,112570 +) +k1,9398:19916955,21394837:241305 +k1,9398:22024070,21394837:241305 +(1,9398:22024070,21394837:0,414482,115847 +r1,9440:23437471,21394837:1413401,530329,115847 +k1,9398:22024070,21394837:-1413401 +) +(1,9398:22024070,21394837:1413401,414482,115847 +k1,9398:22024070,21394837:3277 +h1,9398:23434194,21394837:0,411205,112570 +) +k1,9398:23678776,21394837:241305 +k1,9398:24867732,21394837:241305 +k1,9398:25875153,21394837:241305 +k1,9398:28676950,21394837:241305 +k1,9398:30989193,21394837:241305 +k1,9398:32583029,21394837:0 +) +(1,9400:6764466,22079692:25818563,513147,134348 +k1,9398:8168045,22079692:206892 +k1,9398:9871124,22079692:206892 +k1,9398:11946447,22079692:206892 +k1,9398:15345598,22079692:206892 +k1,9398:15908350,22079692:206892 +k1,9398:18066904,22079692:206892 +k1,9398:21578778,22079692:206893 +k1,9398:23298896,22079692:206892 +k1,9398:25343418,22079692:206892 +k1,9398:26497961,22079692:206892 +k1,9398:29517003,22079692:206892 +k1,9398:30189856,22079692:206892 +k1,9398:32051532,22079692:206892 +k1,9398:32583029,22079692:0 +) +(1,9400:6764466,22764547:25818563,505283,134348 +g1,9398:10317828,22764547 +g1,9398:13301026,22764547 +g1,9398:14151683,22764547 +g1,9398:16819653,22764547 +k1,9400:32583029,22764547:15763376 +g1,9400:32583029,22764547 +) +v1,9400:6764466,23449402:0,393216,0 +(1,9408:6764466,25257837:25818563,2201651,196608 +g1,9408:6764466,25257837 +g1,9408:6764466,25257837 +g1,9408:6567858,25257837 +(1,9408:6567858,25257837:0,2201651,196608 +r1,9440:32779637,25257837:26211779,2398259,196608 +k1,9408:6567857,25257837:-26211780 +) +(1,9408:6567858,25257837:26211779,2201651,196608 +[1,9408:6764466,25257837:25818563,2005043,0 +(1,9402:6764466,23677233:25818563,424439,112852 +(1,9401:6764466,23677233:0,0,0 +g1,9401:6764466,23677233 +g1,9401:6764466,23677233 +g1,9401:6436786,23677233 +(1,9401:6436786,23677233:0,0,0 +) +g1,9401:6764466,23677233 +) +g1,9402:9420098,23677233 +g1,9402:10415960,23677233 +h1,9402:12075730,23677233:0,0,0 +k1,9402:32583030,23677233:20507300 +g1,9402:32583030,23677233 +) +(1,9403:6764466,24362088:25818563,431045,112852 +h1,9403:6764466,24362088:0,0,0 +g1,9403:7760328,24362088 +g1,9403:13735499,24362088 +k1,9403:13735499,24362088:0 +h1,9403:18382854,24362088:0,0,0 +k1,9403:32583029,24362088:14200175 +g1,9403:32583029,24362088 +) +(1,9407:6764466,25178015:25818563,424439,79822 +(1,9405:6764466,25178015:0,0,0 +g1,9405:6764466,25178015 +g1,9405:6764466,25178015 +g1,9405:6436786,25178015 +(1,9405:6436786,25178015:0,0,0 +) +g1,9405:6764466,25178015 +) +g1,9407:7760328,25178015 +g1,9407:9088144,25178015 +h1,9407:10747914,25178015:0,0,0 +k1,9407:32583030,25178015:21835116 +g1,9407:32583030,25178015 +) +] +) +g1,9408:32583029,25257837 +g1,9408:6764466,25257837 +g1,9408:6764466,25257837 +g1,9408:32583029,25257837 +g1,9408:32583029,25257837 +) +h1,9408:6764466,25454445:0,0,0 +] +g1,9410:32583029,25454445 +) +h1,9410:6630773,25454445:0,0,0 +v1,9413:6630773,26319525:0,393216,0 +(1,9435:6630773,39158267:25952256,13231958,0 +g1,9435:6630773,39158267 +g1,9435:6237557,39158267 +r1,9440:6368629,39158267:131072,13231958,0 +g1,9435:6567858,39158267 +g1,9435:6764466,39158267 +[1,9435:6764466,39158267:25818563,13231958,0 +(1,9414:6764466,26627823:25818563,701514,196608 +(1,9413:6764466,26627823:0,701514,196608 +r1,9440:8863446,26627823:2098980,898122,196608 +k1,9413:6764466,26627823:-2098980 +) +(1,9413:6764466,26627823:2098980,701514,196608 +) +k1,9413:9107950,26627823:244504 +k1,9413:10425879,26627823:327680 +k1,9413:12479177,26627823:244504 +k1,9413:13742765,26627823:244503 +k1,9413:17463954,26627823:244504 +k1,9413:19294429,26627823:244504 +k1,9413:22174136,26627823:244504 +(1,9413:22174136,26627823:0,452978,115847 +r1,9440:24642673,26627823:2468537,568825,115847 +k1,9413:22174136,26627823:-2468537 +) +(1,9413:22174136,26627823:2468537,452978,115847 +k1,9413:22174136,26627823:3277 +h1,9413:24639396,26627823:0,411205,112570 +) +k1,9413:24887177,26627823:244504 +k1,9413:26323125,26627823:244503 +(1,9413:26323125,26627823:0,452978,122846 +r1,9440:28791662,26627823:2468537,575824,122846 +k1,9413:26323125,26627823:-2468537 +) +(1,9413:26323125,26627823:2468537,452978,122846 +k1,9413:26323125,26627823:3277 +h1,9413:28788385,26627823:0,411205,112570 +) +k1,9413:29036166,26627823:244504 +k1,9413:31464985,26627823:244504 +k1,9413:32583029,26627823:0 +) +(1,9414:6764466,27492903:25818563,513147,126483 +k1,9413:8425400,27492903:209312 +k1,9413:9294004,27492903:209312 +k1,9413:10522401,27492903:209312 +k1,9413:14248374,27492903:209311 +k1,9413:16499788,27492903:209312 +k1,9413:17900545,27492903:209312 +k1,9413:20420001,27492903:209312 +k1,9413:21648398,27492903:209312 +k1,9413:24016466,27492903:209312 +k1,9413:26080446,27492903:209311 +k1,9413:27099128,27492903:209312 +k1,9413:28638821,27492903:209312 +k1,9413:30234219,27492903:209312 +k1,9414:32583029,27492903:0 +) +(1,9414:6764466,28357983:25818563,513147,134348 +k1,9413:8598900,28357983:163266 +k1,9413:9753727,28357983:163267 +k1,9413:13680726,28357983:163266 +k1,9413:18093346,28357983:163266 +k1,9413:19275698,28357983:163267 +k1,9413:22625324,28357983:163266 +k1,9413:25423794,28357983:163267 +k1,9413:29811511,28357983:163266 +k1,9414:32583029,28357983:0 +) +(1,9414:6764466,29223063:25818563,513147,126483 +g1,9413:7649857,29223063 +g1,9413:12050599,29223063 +g1,9413:12865866,29223063 +g1,9413:16471656,29223063 +g1,9413:17862330,29223063 +g1,9413:19296913,29223063 +g1,9413:22290598,29223063 +$1,9413:22497692,29223063 +$1,9413:23010184,29223063 +g1,9413:23416507,29223063 +g1,9413:24301898,29223063 +g1,9413:26882705,29223063 +g1,9413:27697972,29223063 +k1,9414:32583029,29223063:618663 +g1,9414:32583029,29223063 +) +v1,9417:6764466,29907918:0,393216,0 +(1,9431:6764466,37097151:25818563,7582449,196608 +g1,9431:6764466,37097151 +g1,9431:6764466,37097151 +g1,9431:6567858,37097151 +(1,9431:6567858,37097151:0,7582449,196608 +r1,9440:32779637,37097151:26211779,7779057,196608 +k1,9431:6567857,37097151:-26211780 +) +(1,9431:6567858,37097151:26211779,7582449,196608 +[1,9431:6764466,37097151:25818563,7385841,0 +(1,9419:6764466,30142355:25818563,431045,106246 +(1,9418:6764466,30142355:0,0,0 +g1,9418:6764466,30142355 +g1,9418:6764466,30142355 +g1,9418:6436786,30142355 +(1,9418:6436786,30142355:0,0,0 +) +g1,9418:6764466,30142355 +) +k1,9419:6764466,30142355:0 +g1,9419:7760328,30142355 +g1,9419:9088144,30142355 +k1,9419:9088144,30142355:0 +h1,9419:13735500,30142355:0,0,0 +k1,9419:32583028,30142355:18847528 +g1,9419:32583028,30142355 +) +(1,9420:6764466,30827210:25818563,431045,106246 +h1,9420:6764466,30827210:0,0,0 +g1,9420:7760328,30827210 +g1,9420:9420098,30827210 +k1,9420:9420098,30827210:0 +h1,9420:14067454,30827210:0,0,0 +k1,9420:32583030,30827210:18515576 +g1,9420:32583030,30827210 +) +(1,9421:6764466,31512065:25818563,431045,106246 +h1,9421:6764466,31512065:0,0,0 +g1,9421:7760328,31512065 +g1,9421:10084006,31512065 +k1,9421:10084006,31512065:0 +h1,9421:14731362,31512065:0,0,0 +k1,9421:32583030,31512065:17851668 +g1,9421:32583030,31512065 +) +(1,9422:6764466,32196920:25818563,431045,106246 +h1,9422:6764466,32196920:0,0,0 +g1,9422:7760328,32196920 +g1,9422:10747914,32196920 +k1,9422:10747914,32196920:0 +h1,9422:15395270,32196920:0,0,0 +k1,9422:32583030,32196920:17187760 +g1,9422:32583030,32196920 +) +(1,9423:6764466,32881775:25818563,431045,106246 +h1,9423:6764466,32881775:0,0,0 +g1,9423:7760328,32881775 +g1,9423:10747914,32881775 +k1,9423:10747914,32881775:0 +h1,9423:15395270,32881775:0,0,0 +k1,9423:32583030,32881775:17187760 +g1,9423:32583030,32881775 +) +(1,9424:6764466,33566630:25818563,431045,106246 +h1,9424:6764466,33566630:0,0,0 +g1,9424:7760328,33566630 +g1,9424:10747914,33566630 +k1,9424:10747914,33566630:0 +h1,9424:15395270,33566630:0,0,0 +k1,9424:32583030,33566630:17187760 +g1,9424:32583030,33566630 +) +(1,9425:6764466,34251485:25818563,431045,106246 +h1,9425:6764466,34251485:0,0,0 +g1,9425:7760328,34251485 +g1,9425:10747914,34251485 +k1,9425:10747914,34251485:0 +h1,9425:15395270,34251485:0,0,0 +k1,9425:32583030,34251485:17187760 +g1,9425:32583030,34251485 +) +(1,9426:6764466,34936340:25818563,431045,112852 +h1,9426:6764466,34936340:0,0,0 +g1,9426:7760328,34936340 +g1,9426:14731361,34936340 +k1,9426:14731361,34936340:0 +h1,9426:19378717,34936340:0,0,0 +k1,9426:32583029,34936340:13204312 +g1,9426:32583029,34936340 +) +(1,9427:6764466,35621195:25818563,431045,112852 +h1,9427:6764466,35621195:0,0,0 +g1,9427:7760328,35621195 +g1,9427:17718946,35621195 +k1,9427:17718946,35621195:0 +h1,9427:22366302,35621195:0,0,0 +k1,9427:32583029,35621195:10216727 +g1,9427:32583029,35621195 +) +(1,9428:6764466,36306050:25818563,431045,112852 +h1,9428:6764466,36306050:0,0,0 +g1,9428:7760328,36306050 +g1,9428:13735499,36306050 +k1,9428:13735499,36306050:0 +h1,9428:18382855,36306050:0,0,0 +k1,9428:32583029,36306050:14200174 +g1,9428:32583029,36306050 +) +(1,9429:6764466,36990905:25818563,431045,106246 +h1,9429:6764466,36990905:0,0,0 +g1,9429:7760328,36990905 +g1,9429:9752052,36990905 +k1,9429:9752052,36990905:0 +h1,9429:14399408,36990905:0,0,0 +k1,9429:32583028,36990905:18183620 +g1,9429:32583028,36990905 +) +] +) +g1,9431:32583029,37097151 +g1,9431:6764466,37097151 +g1,9431:6764466,37097151 +g1,9431:32583029,37097151 +g1,9431:32583029,37097151 +) +h1,9431:6764466,37293759:0,0,0 +(1,9435:6764466,38158839:25818563,513147,134348 +h1,9434:6764466,38158839:983040,0,0 +k1,9434:9530195,38158839:230796 +k1,9434:10226952,38158839:230796 +k1,9434:11628221,38158839:230796 +k1,9434:13389283,38158839:230796 +k1,9434:14271507,38158839:230796 +k1,9434:16783611,38158839:230796 +k1,9434:18473237,38158839:230795 +k1,9434:23359055,38158839:230796 +k1,9434:24249143,38158839:230796 +k1,9434:25499024,38158839:230796 +k1,9434:27115906,38158839:230796 +k1,9434:30823387,38158839:230796 +k1,9434:32583029,38158839:0 +) +(1,9435:6764466,39023919:25818563,485622,134348 +g1,9434:7988678,39023919 +g1,9434:10466594,39023919 +h1,9434:11437182,39023919:0,0,0 +g1,9434:11636411,39023919 +g1,9434:12645010,39023919 +g1,9434:14342392,39023919 +h1,9434:15139310,39023919:0,0,0 +k1,9435:32583028,39023919:17270048 +g1,9435:32583028,39023919 +) +] +g1,9435:32583029,39158267 +) +h1,9435:6630773,39158267:0,0,0 +(1,9438:6630773,40023347:25952256,505283,115847 +h1,9437:6630773,40023347:983040,0,0 +k1,9437:8397640,40023347:155992 +k1,9437:11219636,40023347:155991 +k1,9437:12027056,40023347:155992 +(1,9437:12027056,40023347:0,459977,115847 +r1,9440:13792170,40023347:1765114,575824,115847 +k1,9437:12027056,40023347:-1765114 +) +(1,9437:12027056,40023347:1765114,459977,115847 +g1,9437:13085469,40023347 +h1,9437:13788893,40023347:0,411205,112570 +) +k1,9437:13948162,40023347:155992 +k1,9437:15295598,40023347:155991 +(1,9437:15295598,40023347:0,459977,115847 +r1,9440:19522695,40023347:4227097,575824,115847 +k1,9437:15295598,40023347:-4227097 +) +(1,9437:15295598,40023347:4227097,459977,115847 +g1,9437:16354011,40023347 +g1,9437:17409147,40023347 +g1,9437:18112571,40023347 +h1,9437:19519418,40023347:0,411205,112570 +) +k1,9437:19852357,40023347:155992 +k1,9437:21663133,40023347:155992 +k1,9437:22350621,40023347:155991 +k1,9437:23122651,40023347:155992 +k1,9437:23693443,40023347:155949 +k1,9437:24205295,40023347:155992 +(1,9437:24205295,40023347:0,452978,115847 +r1,9440:27025544,40023347:2820249,568825,115847 +k1,9437:24205295,40023347:-2820249 +) +(1,9437:24205295,40023347:2820249,452978,115847 +k1,9437:24205295,40023347:3277 +h1,9437:27022267,40023347:0,411205,112570 +) +k1,9437:27181535,40023347:155991 +k1,9437:30697558,40023347:155992 +k1,9437:32583029,40023347:0 +) +(1,9438:6630773,40888427:25952256,505283,134348 +k1,9437:7679208,40888427:180083 +k1,9437:10528573,40888427:180084 +k1,9437:12266447,40888427:180083 +k1,9437:12916424,40888427:180084 +k1,9437:14200789,40888427:180083 +k1,9437:15128639,40888427:180084 +k1,9437:16821948,40888427:180083 +k1,9437:17653460,40888427:180084 +k1,9437:19654133,40888427:180083 +k1,9437:21993628,40888427:180084 +k1,9437:23981194,40888427:180083 +k1,9437:24844163,40888427:180084 +k1,9437:27255747,40888427:180083 +k1,9437:30822732,40888427:180084 +k1,9438:32583029,40888427:0 +) +(1,9438:6630773,41753507:25952256,513147,134348 +k1,9437:9052645,41753507:278845 +k1,9437:11186159,41753507:278845 +k1,9437:12274374,41753507:278845 +k1,9437:13323921,41753507:278844 +k1,9437:17042751,41753507:278845 +k1,9437:20604950,41753507:278845 +k1,9437:21535223,41753507:278845 +k1,9437:22169928,41753507:278845 +(1,9437:22169928,41753507:0,452978,115847 +r1,9440:24638465,41753507:2468537,568825,115847 +k1,9437:22169928,41753507:-2468537 +) +(1,9437:22169928,41753507:2468537,452978,115847 +k1,9437:22169928,41753507:3277 +h1,9437:24635188,41753507:0,411205,112570 +) +k1,9437:24917310,41753507:278845 +k1,9437:25879040,41753507:278845 +k1,9437:26513744,41753507:278844 +(1,9437:26513744,41753507:0,452978,115847 +r1,9440:29685704,41753507:3171960,568825,115847 +k1,9437:26513744,41753507:-3171960 +) +(1,9437:26513744,41753507:3171960,452978,115847 +k1,9437:26513744,41753507:3277 +h1,9437:29682427,41753507:0,411205,112570 +) +k1,9437:29964549,41753507:278845 +k1,9437:31923737,41753507:278845 +k1,9437:32583029,41753507:0 +) +(1,9438:6630773,42618587:25952256,513147,134348 +k1,9437:8813153,42618587:169114 +k1,9437:10709795,42618587:169113 +k1,9437:11530337,42618587:169114 +k1,9437:13029831,42618587:169113 +k1,9437:14973660,42618587:169114 +(1,9437:14973660,42618587:0,459977,115847 +r1,9440:16738774,42618587:1765114,575824,115847 +k1,9437:14973660,42618587:-1765114 +) +(1,9437:14973660,42618587:1765114,459977,115847 +g1,9437:16032073,42618587 +h1,9437:16735497,42618587:0,411205,112570 +) +k1,9437:16907887,42618587:169113 +k1,9437:18268446,42618587:169114 +(1,9437:18268446,42618587:0,459977,115847 +r1,9440:22495543,42618587:4227097,575824,115847 +k1,9437:18268446,42618587:-4227097 +) +(1,9437:18268446,42618587:4227097,459977,115847 +g1,9437:19326859,42618587 +g1,9437:20381995,42618587 +g1,9437:21085419,42618587 +h1,9437:22492266,42618587:0,411205,112570 +) +k1,9437:22664656,42618587:169113 +k1,9437:24515424,42618587:169114 +k1,9437:25632188,42618587:169113 +k1,9437:27823088,42618587:169114 +k1,9437:30347565,42618587:169113 +k1,9437:31202841,42618587:169114 +k1,9437:32583029,42618587:0 +) +(1,9438:6630773,43483667:25952256,513147,134348 +k1,9437:7883400,43483667:261067 +k1,9437:11405539,43483667:261068 +k1,9437:12428134,43483667:261067 +k1,9437:13045061,43483667:261067 +k1,9437:15375756,43483667:261068 +k1,9437:17490837,43483667:261067 +(1,9437:17490837,43483667:0,452978,115847 +r1,9440:20311086,43483667:2820249,568825,115847 +k1,9437:17490837,43483667:-2820249 +) +(1,9437:17490837,43483667:2820249,452978,115847 +k1,9437:17490837,43483667:3277 +h1,9437:20307809,43483667:0,411205,112570 +) +k1,9437:20572153,43483667:261067 +k1,9437:21937502,43483667:261067 +k1,9437:24019160,43483667:261068 +k1,9437:26439638,43483667:261067 +k1,9437:27056565,43483667:261067 +k1,9437:29176889,43483667:261068 +k1,9437:31923737,43483667:261067 +k1,9437:32583029,43483667:0 +) +(1,9438:6630773,44348747:25952256,505283,7863 +g1,9437:10216903,44348747 +k1,9438:32583029,44348747:18675794 +g1,9438:32583029,44348747 +) +(1,9440:6630773,45213827:25952256,505283,126483 +h1,9439:6630773,45213827:983040,0,0 +k1,9439:8988684,45213827:178184 +k1,9439:11224697,45213827:178183 +k1,9439:14589241,45213827:178184 +k1,9439:17108371,45213827:178184 +k1,9439:17642415,45213827:178184 +k1,9439:19674612,45213827:178183 +k1,9439:20871881,45213827:178184 +k1,9439:22730408,45213827:178184 +k1,9439:25687319,45213827:178184 +k1,9439:26627030,45213827:178183 +k1,9439:27824299,45213827:178184 +(1,9439:27824299,45213827:0,452978,115847 +r1,9440:30644548,45213827:2820249,568825,115847 +k1,9439:27824299,45213827:-2820249 +) +(1,9439:27824299,45213827:2820249,452978,115847 +k1,9439:27824299,45213827:3277 +h1,9439:30641271,45213827:0,411205,112570 +) +k1,9439:30822732,45213827:178184 +k1,9440:32583029,45213827:0 +) +] +(1,9440:32583029,45706769:0,0,0 +g1,9440:32583029,45706769 +) +) +] +(1,9440:6630773,47279633:25952256,0,0 +h1,9440:6630773,47279633:25952256,0,0 +) +] +(1,9440:4262630,4025873:0,0,0 +[1,9440:-473656,4025873:0,0,0 +(1,9440:-473656,-710413:0,0,0 +(1,9440:-473656,-710413:0,0,0 +g1,9440:-473656,-710413 +) +g1,9440:-473656,-710413 +) +] +) +] +!29627 +}150 +Input:1306:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1307:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1308:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1309:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1310:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1311:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1312:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1313:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1314:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1315:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1316:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1317:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1318:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1319:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1320:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1321:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1322:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1323:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1324:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1325:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1326:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1327:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1328:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1329:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1330:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!2362 +{151 +[1,9475:4262630,47279633:28320399,43253760,0 +(1,9475:4262630,4025873:0,0,0 +[1,9475:-473656,4025873:0,0,0 +(1,9475:-473656,-710413:0,0,0 +(1,9475:-473656,-644877:0,0,0 +k1,9475:-473656,-644877:-65536 ) -k1,8393:62087500,51504789:25935872 -g1,8393:62087500,51504789 +(1,9475:-473656,4736287:0,0,0 +k1,9475:-473656,4736287:5209943 +) +g1,9475:-473656,-710413 ) ] ) -g1,8393:36675916,49800853 -(1,8393:36675916,49800853:1179648,16384,0 -r1,10381:37855564,49800853:1179648,16384,0 +[1,9475:6630773,47279633:25952256,43253760,0 +[1,9475:6630773,4812305:25952256,786432,0 +(1,9475:6630773,4812305:25952256,505283,134348 +(1,9475:6630773,4812305:25952256,505283,134348 +g1,9475:3078558,4812305 +[1,9475:3078558,4812305:0,0,0 +(1,9475:3078558,2439708:0,1703936,0 +k1,9475:1358238,2439708:-1720320 +(1,8606:1358238,2439708:1720320,1703936,0 +(1,8606:1358238,2439708:1179648,16384,0 +r1,9475:2537886,2439708:1179648,16384,0 ) +g1,8606:3062174,2439708 +(1,8606:3062174,2439708:16384,1703936,0 +[1,8606:3062174,2439708:25952256,1703936,0 +(1,8606:3062174,1915420:25952256,1179648,0 +(1,8606:3062174,1915420:16384,1179648,0 +r1,9475:3078558,1915420:16384,1179648,0 ) -k1,10381:3078556,49800853:-34777008 +k1,8606:29014430,1915420:25935872 +g1,8606:29014430,1915420 ) ] -g1,10381:6630773,4812305 -k1,10381:21643106,4812305:13816956 -g1,10381:23265777,4812305 -g1,10381:24088253,4812305 -g1,10381:28572226,4812305 -g1,10381:29981905,4812305 -) -) -] -[1,10381:6630773,45706769:25952256,40108032,0 -(1,10381:6630773,45706769:25952256,40108032,0 -(1,10381:6630773,45706769:0,0,0 -g1,10381:6630773,45706769 -) -[1,10381:6630773,45706769:25952256,40108032,0 -v1,10273:6630773,6254097:0,393216,0 -(1,10273:6630773,7876384:25952256,2015503,196608 -g1,10273:6630773,7876384 -g1,10273:6630773,7876384 -g1,10273:6434165,7876384 -(1,10273:6434165,7876384:0,2015503,196608 -r1,10381:32779637,7876384:26345472,2212111,196608 -k1,10273:6434165,7876384:-26345472 -) -(1,10273:6434165,7876384:26345472,2015503,196608 -[1,10273:6630773,7876384:25952256,1818895,0 -(1,10267:6630773,6468007:25952256,410518,107478 -(1,10266:6630773,6468007:0,0,0 -g1,10266:6630773,6468007 -g1,10266:6630773,6468007 -g1,10266:6303093,6468007 -(1,10266:6303093,6468007:0,0,0 -) -g1,10266:6630773,6468007 -) -g1,10267:7263065,6468007 -g1,10267:8211503,6468007 -g1,10267:11056815,6468007 -g1,10267:11689107,6468007 -g1,10267:14850564,6468007 -g1,10267:16115147,6468007 -g1,10267:16747439,6468007 -g1,10267:20541188,6468007 -g1,10267:21489626,6468007 -g1,10267:24018792,6468007 -g1,10267:24651084,6468007 -g1,10267:25915667,6468007 -g1,10267:26547959,6468007 -g1,10267:27180251,6468007 -h1,10267:27812543,6468007:0,0,0 -k1,10267:32583029,6468007:4770486 -g1,10267:32583029,6468007 -) -(1,10268:6630773,7134185:25952256,404226,76021 -h1,10268:6630773,7134185:0,0,0 -k1,10268:6630773,7134185:0 -h1,10268:8527647,7134185:0,0,0 -k1,10268:32583029,7134185:24055382 -g1,10268:32583029,7134185 -) -(1,10272:6630773,7800363:25952256,404226,76021 -(1,10270:6630773,7800363:0,0,0 -g1,10270:6630773,7800363 -g1,10270:6630773,7800363 -g1,10270:6303093,7800363 -(1,10270:6303093,7800363:0,0,0 -) -g1,10270:6630773,7800363 -) -g1,10272:7579210,7800363 -g1,10272:7895356,7800363 -g1,10272:9159939,7800363 -g1,10272:11056813,7800363 -g1,10272:12637542,7800363 -g1,10272:14218271,7800363 -g1,10272:15799000,7800363 -g1,10272:17379729,7800363 -g1,10272:18960458,7800363 -h1,10272:19908895,7800363:0,0,0 -k1,10272:32583029,7800363:12674134 -g1,10272:32583029,7800363 -) -] -) -g1,10273:32583029,7876384 -g1,10273:6630773,7876384 -g1,10273:6630773,7876384 -g1,10273:32583029,7876384 -g1,10273:32583029,7876384 -) -h1,10273:6630773,8072992:0,0,0 -v1,10277:6630773,9808644:0,393216,0 -(1,10278:6630773,13696182:25952256,4280754,0 -g1,10278:6630773,13696182 -g1,10278:6303093,13696182 -r1,10381:6401397,13696182:98304,4280754,0 -g1,10278:6600626,13696182 -g1,10278:6797234,13696182 -[1,10278:6797234,13696182:25785795,4280754,0 -(1,10278:6797234,10203747:25785795,788319,218313 -(1,10277:6797234,10203747:0,788319,218313 -r1,10381:7917113,10203747:1119879,1006632,218313 -k1,10277:6797234,10203747:-1119879 -) -(1,10277:6797234,10203747:1119879,788319,218313 -) -k1,10277:8059119,10203747:142006 -k1,10277:8386799,10203747:327680 -k1,10277:9346693,10203747:142005 -k1,10277:12618043,10203747:142006 -k1,10277:13376086,10203747:142005 -k1,10277:15796779,10203747:142006 -h1,10277:17339497,10203747:0,0,0 -k1,10277:17481502,10203747:142005 -k1,10277:18432878,10203747:142006 -k1,10277:20073037,10203747:142006 -h1,10277:21268414,10203747:0,0,0 -k1,10277:21584089,10203747:142005 -k1,10277:23424133,10203747:142006 -k1,10277:26078133,10203747:142005 -k1,10277:29557232,10203747:142006 -k1,10277:32583029,10203747:0 -) -(1,10278:6797234,11045235:25785795,513147,126483 -k1,10277:8045796,11045235:257002 -k1,10277:11260438,11045235:257002 -k1,10277:13026078,11045235:257001 -k1,10277:14375565,11045235:257002 -k1,10277:15164064,11045235:257002 -k1,10277:18608082,11045235:257002 -k1,10277:19789141,11045235:257001 -k1,10277:21065228,11045235:257002 -k1,10277:23024200,11045235:257002 -k1,10277:25061160,11045235:257002 -k1,10277:26784857,11045235:257001 -k1,10277:27507820,11045235:257002 -k1,10277:29557232,11045235:257002 -k1,10277:32583029,11045235:0 -) -(1,10278:6797234,11886723:25785795,513147,126483 -k1,10277:8047258,11886723:258464 -k1,10277:10592928,11886723:258463 -k1,10277:11917663,11886723:258464 -k1,10277:12862289,11886723:258464 -k1,10277:14328581,11886723:258463 -k1,10277:15273207,11886723:258464 -k1,10277:18868764,11886723:258464 -k1,10277:22326696,11886723:258464 -k1,10277:23965347,11886723:258463 -k1,10277:25215371,11886723:258464 -k1,10277:27761042,11886723:258464 -k1,10277:29863033,11886723:258463 -k1,10277:31563944,11886723:258464 -k1,10277:32583029,11886723:0 -) -(1,10278:6797234,12728211:25785795,513147,126483 -k1,10277:10303610,12728211:201395 -(1,10277:10303610,12728211:0,459977,115847 -r1,10381:12068723,12728211:1765113,575824,115847 -k1,10277:10303610,12728211:-1765113 -) -(1,10277:10303610,12728211:1765113,459977,115847 -k1,10277:10303610,12728211:3277 -h1,10277:12065446,12728211:0,411205,112570 -) -k1,10277:12270118,12728211:201395 -k1,10277:14390407,12728211:201395 -k1,10277:16209885,12728211:201394 -k1,10277:17695786,12728211:201395 -k1,10277:19319968,12728211:201395 -k1,10277:21284937,12728211:201395 -k1,10277:24512129,12728211:201395 -k1,10277:25245021,12728211:201395 -k1,10277:26732231,12728211:201394 -k1,10277:28583823,12728211:201395 -k1,10277:31140582,12728211:201395 -k1,10277:32583029,12728211:0 -) -(1,10278:6797234,13569699:25785795,505283,126483 -g1,10277:8492650,13569699 -g1,10277:10546548,13569699 -(1,10277:10546548,13569699:0,459977,115847 -r1,10381:12311661,13569699:1765113,575824,115847 -k1,10277:10546548,13569699:-1765113 -) -(1,10277:10546548,13569699:1765113,459977,115847 -k1,10277:10546548,13569699:3277 -h1,10277:12308384,13569699:0,411205,112570 -) -g1,10277:12510890,13569699 -k1,10278:32583028,13569699:18153244 -g1,10278:32583028,13569699 -) -] -g1,10278:32583029,13696182 -) -h1,10278:6630773,13696182:0,0,0 -v1,10281:6630773,15256524:0,393216,0 -(1,10289:6630773,16872519:25952256,2009211,196608 -g1,10289:6630773,16872519 -g1,10289:6630773,16872519 -g1,10289:6434165,16872519 -(1,10289:6434165,16872519:0,2009211,196608 -r1,10381:32779637,16872519:26345472,2205819,196608 -k1,10289:6434165,16872519:-26345472 -) -(1,10289:6434165,16872519:26345472,2009211,196608 -[1,10289:6630773,16872519:25952256,1812603,0 -(1,10283:6630773,15464142:25952256,404226,107478 -(1,10282:6630773,15464142:0,0,0 -g1,10282:6630773,15464142 -g1,10282:6630773,15464142 -g1,10282:6303093,15464142 -(1,10282:6303093,15464142:0,0,0 -) -g1,10282:6630773,15464142 -) -g1,10283:7263065,15464142 -g1,10283:8211503,15464142 -g1,10283:12637543,15464142 -g1,10283:13269835,15464142 -h1,10283:13585981,15464142:0,0,0 -k1,10283:32583029,15464142:18997048 -g1,10283:32583029,15464142 -) -(1,10284:6630773,16130320:25952256,404226,76021 -h1,10284:6630773,16130320:0,0,0 -k1,10284:6630773,16130320:0 -h1,10284:8527647,16130320:0,0,0 -k1,10284:32583029,16130320:24055382 -g1,10284:32583029,16130320 -) -(1,10288:6630773,16796498:25952256,404226,76021 -(1,10286:6630773,16796498:0,0,0 -g1,10286:6630773,16796498 -g1,10286:6630773,16796498 -g1,10286:6303093,16796498 -(1,10286:6303093,16796498:0,0,0 -) -g1,10286:6630773,16796498 -) -g1,10288:7579210,16796498 -g1,10288:7895356,16796498 -g1,10288:9159939,16796498 -g1,10288:11056813,16796498 -g1,10288:12637542,16796498 -g1,10288:14218271,16796498 -g1,10288:15799000,16796498 -g1,10288:17379729,16796498 -g1,10288:18960458,16796498 -h1,10288:19908895,16796498:0,0,0 -k1,10288:32583029,16796498:12674134 -g1,10288:32583029,16796498 -) -] -) -g1,10289:32583029,16872519 -g1,10289:6630773,16872519 -g1,10289:6630773,16872519 -g1,10289:32583029,16872519 -g1,10289:32583029,16872519 -) -h1,10289:6630773,17069127:0,0,0 -(1,10293:6630773,18357697:25952256,513147,134348 -h1,10292:6630773,18357697:983040,0,0 -k1,10292:8648137,18357697:216435 -k1,10292:11942799,18357697:216436 -k1,10292:12775272,18357697:216435 -k1,10292:15270395,18357697:216436 -h1,10292:16240983,18357697:0,0,0 -k1,10292:16457418,18357697:216435 -k1,10292:17483223,18357697:216435 -k1,10292:19197812,18357697:216436 -h1,10292:19994730,18357697:0,0,0 -k1,10292:20384835,18357697:216435 -k1,10292:22156439,18357697:216435 -(1,10292:22156439,18357697:0,459977,115847 -r1,10381:25680111,18357697:3523672,575824,115847 -k1,10292:22156439,18357697:-3523672 -) -(1,10292:22156439,18357697:3523672,459977,115847 -k1,10292:22156439,18357697:3277 -h1,10292:25676834,18357697:0,411205,112570 -) -k1,10292:25896547,18357697:216436 -k1,10292:26644479,18357697:216435 -k1,10292:29243804,18357697:216436 -k1,10292:31027860,18357697:216435 -k1,10293:32583029,18357697:0 -) -(1,10293:6630773,19199185:25952256,513147,126483 -(1,10292:6630773,19199185:0,452978,115847 -r1,10381:8044174,19199185:1413401,568825,115847 -k1,10292:6630773,19199185:-1413401 -) -(1,10292:6630773,19199185:1413401,452978,115847 -k1,10292:6630773,19199185:3277 -h1,10292:8040897,19199185:0,411205,112570 -) -k1,10292:8437928,19199185:220084 -k1,10292:9854699,19199185:220084 -k1,10292:12787974,19199185:220084 -k1,10292:13624095,19199185:220083 -k1,10292:14200039,19199185:220084 -k1,10292:15809486,19199185:220084 -k1,10292:17905866,19199185:220084 -k1,10292:19117510,19199185:220084 -k1,10292:22642575,19199185:220084 -k1,10292:23514087,19199185:220084 -k1,10292:26687879,19199185:220084 -k1,10292:27567254,19199185:220083 -k1,10292:28143198,19199185:220084 -k1,10292:29530478,19199185:220084 -k1,10292:30942007,19199185:220084 -k1,10293:32583029,19199185:0 -) -(1,10293:6630773,20040673:25952256,513147,134348 -k1,10292:8403724,20040673:175183 -k1,10292:9683189,20040673:175183 -k1,10292:11275259,20040673:175182 -k1,10292:12198208,20040673:175183 -k1,10292:14745139,20040673:175183 -k1,10292:15571750,20040673:175183 -k1,10292:18633793,20040673:175182 -k1,10292:20600730,20040673:175183 -k1,10292:22165276,20040673:175183 -k1,10292:23908080,20040673:175183 -k1,10292:26663414,20040673:175182 -k1,10292:29844733,20040673:175183 -k1,10292:30967567,20040673:175183 -k1,10293:32583029,20040673:0 -) -(1,10293:6630773,20882161:25952256,513147,134348 -g1,10292:8240992,20882161 -g1,10292:11100983,20882161 -g1,10292:12247863,20882161 -k1,10293:32583028,20882161:18853396 -g1,10293:32583028,20882161 -) -v1,10295:6630773,21995421:0,393216,0 -(1,10303:6630773,23544831:25952256,1942626,196608 -g1,10303:6630773,23544831 -g1,10303:6630773,23544831 -g1,10303:6434165,23544831 -(1,10303:6434165,23544831:0,1942626,196608 -r1,10381:32779637,23544831:26345472,2139234,196608 -k1,10303:6434165,23544831:-26345472 -) -(1,10303:6434165,23544831:26345472,1942626,196608 -[1,10303:6630773,23544831:25952256,1746018,0 -(1,10297:6630773,22203039:25952256,404226,101187 -(1,10296:6630773,22203039:0,0,0 -g1,10296:6630773,22203039 -g1,10296:6630773,22203039 -g1,10296:6303093,22203039 -(1,10296:6303093,22203039:0,0,0 -) -g1,10296:6630773,22203039 -) -k1,10297:6630773,22203039:0 -g1,10297:9476085,22203039 -g1,10297:10108377,22203039 -g1,10297:12005252,22203039 -g1,10297:13269835,22203039 -g1,10297:13902127,22203039 -h1,10297:15482855,22203039:0,0,0 -k1,10297:32583029,22203039:17100174 -g1,10297:32583029,22203039 -) -(1,10302:6630773,22869217:25952256,404226,101187 -(1,10299:6630773,22869217:0,0,0 -g1,10299:6630773,22869217 -g1,10299:6630773,22869217 -g1,10299:6303093,22869217 -(1,10299:6303093,22869217:0,0,0 -) -g1,10299:6630773,22869217 -) -g1,10302:7579210,22869217 -g1,10302:9476084,22869217 -g1,10302:9792230,22869217 -h1,10302:11056813,22869217:0,0,0 -k1,10302:32583029,22869217:21526216 -g1,10302:32583029,22869217 -) -(1,10302:6630773,23535395:25952256,388497,9436 -h1,10302:6630773,23535395:0,0,0 -g1,10302:7579210,23535395 -g1,10302:9476084,23535395 -h1,10302:11056812,23535395:0,0,0 -k1,10302:32583028,23535395:21526216 -g1,10302:32583028,23535395 -) -] -) -g1,10303:32583029,23544831 -g1,10303:6630773,23544831 -g1,10303:6630773,23544831 -g1,10303:32583029,23544831 -g1,10303:32583029,23544831 -) -h1,10303:6630773,23741439:0,0,0 -(1,10307:6630773,25030009:25952256,513147,126483 -h1,10306:6630773,25030009:983040,0,0 -g1,10306:8440877,25030009 -g1,10306:9659191,25030009 -g1,10306:11242540,25030009 -g1,10306:14276856,25030009 -g1,10306:17171581,25030009 -(1,10306:17171581,25030009:0,452978,115847 -r1,10381:19288406,25030009:2116825,568825,115847 -k1,10306:17171581,25030009:-2116825 -) -(1,10306:17171581,25030009:2116825,452978,115847 -k1,10306:17171581,25030009:3277 -h1,10306:19285129,25030009:0,411205,112570 -) -g1,10306:19487635,25030009 -g1,10306:22027810,25030009 -(1,10306:22027810,25030009:0,414482,115847 -r1,10381:22737788,25030009:709978,530329,115847 -k1,10306:22027810,25030009:-709978 -) -(1,10306:22027810,25030009:709978,414482,115847 -k1,10306:22027810,25030009:3277 -h1,10306:22734511,25030009:0,411205,112570 -) -g1,10306:22937017,25030009 -g1,10306:24083897,25030009 -g1,10306:25302211,25030009 -g1,10306:27395430,25030009 -(1,10306:27395430,25030009:0,452978,115847 -r1,10381:29863967,25030009:2468537,568825,115847 -k1,10306:27395430,25030009:-2468537 -) -(1,10306:27395430,25030009:2468537,452978,115847 -k1,10306:27395430,25030009:3277 -h1,10306:29860690,25030009:0,411205,112570 -) -k1,10307:32583029,25030009:2545392 -g1,10307:32583029,25030009 -) -v1,10309:6630773,26143269:0,393216,0 -(1,10319:6630773,29680395:25952256,3930342,196608 -g1,10319:6630773,29680395 -g1,10319:6630773,29680395 -g1,10319:6434165,29680395 -(1,10319:6434165,29680395:0,3930342,196608 -r1,10381:32779637,29680395:26345472,4126950,196608 -k1,10319:6434165,29680395:-26345472 -) -(1,10319:6434165,29680395:26345472,3930342,196608 -[1,10319:6630773,29680395:25952256,3733734,0 -(1,10311:6630773,26350887:25952256,404226,101187 -(1,10310:6630773,26350887:0,0,0 -g1,10310:6630773,26350887 -g1,10310:6630773,26350887 -g1,10310:6303093,26350887 -(1,10310:6303093,26350887:0,0,0 -) -g1,10310:6630773,26350887 -) -k1,10311:6630773,26350887:0 -g1,10311:9476085,26350887 -g1,10311:10108377,26350887 -g1,10311:12005252,26350887 -g1,10311:13269835,26350887 -g1,10311:13902127,26350887 -h1,10311:15482855,26350887:0,0,0 -k1,10311:32583029,26350887:17100174 -g1,10311:32583029,26350887 -) -(1,10315:6630773,27672425:25952256,410518,107478 -k1,10315:7639265,27672425:376201 -k1,10315:10228485,27672425:376200 -k1,10315:11236977,27672425:376201 -k1,10315:17936091,27672425:376200 -k1,10315:19893020,27672425:376201 -k1,10315:22798385,27672425:376200 -k1,10315:23806877,27672425:376201 -k1,10315:25131514,27672425:376200 -k1,10315:27720735,27672425:376201 -k1,10315:28729226,27672425:376200 -k1,10315:31634592,27672425:376201 -k1,10315:32583029,27672425:0 -) -(1,10315:6630773,28338603:25952256,404226,107478 -g1,10315:9159939,28338603 -k1,10315:32583030,28338603:22790800 -g1,10315:32583030,28338603 -) -(1,10318:6630773,29004781:25952256,404226,107478 -(1,10315:6630773,29004781:0,0,0 -g1,10315:6630773,29004781 -g1,10315:6630773,29004781 -g1,10315:6303093,29004781 -(1,10315:6303093,29004781:0,0,0 -) -g1,10315:6630773,29004781 -) -g1,10318:7579210,29004781 -g1,10318:11689104,29004781 -g1,10318:12005250,29004781 -g1,10318:15798998,29004781 -g1,10318:19908892,29004781 -g1,10318:20225038,29004781 -g1,10318:24018786,29004781 -g1,10318:24334932,29004781 -g1,10318:24651078,29004781 -g1,10318:24967224,29004781 -g1,10318:25283370,29004781 -g1,10318:25599516,29004781 -h1,10318:27812536,29004781:0,0,0 -k1,10318:32583029,29004781:4770493 -g1,10318:32583029,29004781 -) -(1,10318:6630773,29670959:25952256,388497,9436 -h1,10318:6630773,29670959:0,0,0 -g1,10318:7579210,29670959 -g1,10318:7895356,29670959 -g1,10318:8211502,29670959 -g1,10318:8527648,29670959 -g1,10318:8843794,29670959 -g1,10318:11689105,29670959 -g1,10318:12005251,29670959 -g1,10318:12321397,29670959 -g1,10318:12637543,29670959 -g1,10318:12953689,29670959 -g1,10318:15799000,29670959 -g1,10318:16115146,29670959 -g1,10318:16431292,29670959 -g1,10318:16747438,29670959 -g1,10318:17063584,29670959 -g1,10318:19908895,29670959 -g1,10318:20225041,29670959 -g1,10318:20541187,29670959 -g1,10318:20857333,29670959 -g1,10318:21173479,29670959 -g1,10318:24018790,29670959 -g1,10318:24334936,29670959 -g1,10318:24651082,29670959 -g1,10318:24967228,29670959 -g1,10318:25283374,29670959 -g1,10318:25599520,29670959 -g1,10318:25915666,29670959 -g1,10318:26231812,29670959 -g1,10318:26547958,29670959 -g1,10318:26864104,29670959 -g1,10318:27180250,29670959 -h1,10318:27812541,29670959:0,0,0 -k1,10318:32583029,29670959:4770488 -g1,10318:32583029,29670959 -) -] -) -g1,10319:32583029,29680395 -g1,10319:6630773,29680395 -g1,10319:6630773,29680395 -g1,10319:32583029,29680395 -g1,10319:32583029,29680395 -) -h1,10319:6630773,29877003:0,0,0 -v1,10323:6630773,31612655:0,393216,0 -(1,10381:6630773,45706769:25952256,14487330,0 -g1,10381:6630773,45706769 -g1,10381:6303093,45706769 -r1,10381:6401397,45706769:98304,14487330,0 -g1,10381:6600626,45706769 -g1,10381:6797234,45706769 -[1,10381:6797234,45706769:25785795,14487330,0 -(1,10324:6797234,31974728:25785795,755289,196608 -(1,10323:6797234,31974728:0,755289,196608 -r1,10381:8134168,31974728:1336934,951897,196608 -k1,10323:6797234,31974728:-1336934 -) -(1,10323:6797234,31974728:1336934,755289,196608 -) -k1,10323:8326522,31974728:192354 -k1,10323:8654202,31974728:327680 -k1,10323:11636424,31974728:192354 -(1,10323:11636424,31974728:0,452978,115847 -r1,10381:14456673,31974728:2820249,568825,115847 -k1,10323:11636424,31974728:-2820249 -) -(1,10323:11636424,31974728:2820249,452978,115847 -k1,10323:11636424,31974728:3277 -h1,10323:14453396,31974728:0,411205,112570 -) -k1,10323:14649028,31974728:192355 -k1,10323:15945664,31974728:192354 -k1,10323:16885784,31974728:192354 -k1,10323:18664765,31974728:192354 -k1,10323:19508547,31974728:192354 -k1,10323:20793387,31974728:192355 -k1,10323:21671903,31974728:192354 -k1,10323:22883342,31974728:192354 -k1,10323:24858275,31974728:192354 -k1,10323:25709921,31974728:192354 -k1,10323:28681003,31974728:192355 -k1,10323:30884002,31974728:192354 -k1,10323:31607853,31974728:192354 -k1,10324:32583029,31974728:0 -) -(1,10324:6797234,32816216:25785795,513147,134348 -k1,10323:9248990,32816216:228775 -k1,10323:10966088,32816216:228775 -k1,10323:11726361,32816216:228776 -k1,10323:12310996,32816216:228775 -k1,10323:15169731,32816216:228775 -k1,10323:16636481,32816216:228775 -k1,10323:17524548,32816216:228775 -k1,10323:20767324,32816216:228775 -k1,10323:23064416,32816216:228776 -k1,10323:24484636,32816216:228775 -k1,10323:27697921,32816216:228775 -k1,10323:29959623,32816216:228775 -k1,10323:32583029,32816216:0 -) -(1,10324:6797234,33657704:25785795,513147,126483 -k1,10323:9302207,33657704:196795 -k1,10323:10111764,33657704:196795 -k1,10323:11760182,33657704:196796 -k1,10323:13934854,33657704:196795 -k1,10323:15880805,33657704:196795 -k1,10323:18691831,33657704:196795 -k1,10323:20456247,33657704:196795 -k1,10323:21008903,33657704:196796 -k1,10323:22199224,33657704:196795 -k1,10323:23055311,33657704:196795 -k1,10323:25733954,33657704:196795 -k1,10323:27805080,33657704:196796 -k1,10323:29770692,33657704:196795 -k1,10323:30715253,33657704:196795 -k1,10323:32583029,33657704:0 -) -(1,10324:6797234,34499192:25785795,505283,134348 -k1,10323:9430112,34499192:188385 -k1,10323:11686812,34499192:188384 -k1,10323:13066642,34499192:188385 -k1,10323:16413206,34499192:188384 -k1,10323:17798278,34499192:188385 -k1,10323:21058990,34499192:188384 -k1,10323:23452662,34499192:188385 -k1,10323:24292474,34499192:188384 -(1,10323:24292474,34499192:0,414482,115847 -r1,10381:27464434,34499192:3171960,530329,115847 -k1,10323:24292474,34499192:-3171960 -) -(1,10323:24292474,34499192:3171960,414482,115847 -k1,10323:24292474,34499192:3277 -h1,10323:27461157,34499192:0,411205,112570 -) -k1,10323:27652819,34499192:188385 -k1,10323:30601579,34499192:188384 -k1,10323:31145824,34499192:188385 -k1,10324:32583029,34499192:0 -) -(1,10324:6797234,35340680:25785795,513147,134348 -k1,10323:8567174,35340680:183969 -k1,10323:9698794,35340680:183969 -k1,10323:10901847,35340680:183968 -k1,10323:12471902,35340680:183969 -k1,10323:13315163,35340680:183969 -k1,10323:14518217,35340680:183969 -k1,10323:16712830,35340680:183968 -k1,10323:18577142,35340680:183969 -k1,10323:19952556,35340680:183969 -k1,10323:20924923,35340680:183969 -k1,10323:25151153,35340680:183969 -k1,10323:26602587,35340680:183968 -k1,10323:28320754,35340680:183969 -k1,10323:29696168,35340680:183969 -k1,10323:32583029,35340680:0 -) -(1,10324:6797234,36182168:25785795,505283,134348 -k1,10323:9121234,36182168:298282 -k1,10323:10704023,36182168:298283 -k1,10323:12021390,36182168:298282 -k1,10323:13853870,36182168:298282 -k1,10323:14768191,36182168:298283 -k1,10323:16085558,36182168:298282 -k1,10323:18542597,36182168:298283 -k1,10323:19832439,36182168:298282 -k1,10323:21461102,36182168:298282 -k1,10323:23918141,36182168:298283 -k1,10323:27333315,36182168:298282 -k1,10323:28283025,36182168:298282 -k1,10323:29600393,36182168:298283 -k1,10323:31966991,36182168:298282 -k1,10324:32583029,36182168:0 -) -(1,10324:6797234,37023656:25785795,414482,115847 -(1,10323:6797234,37023656:0,414482,115847 -r1,10381:9969194,37023656:3171960,530329,115847 -k1,10323:6797234,37023656:-3171960 -) -(1,10323:6797234,37023656:3171960,414482,115847 -k1,10323:6797234,37023656:3277 -h1,10323:9965917,37023656:0,411205,112570 -) -k1,10324:32583028,37023656:22440164 -g1,10324:32583028,37023656 -) -(1,10326:6797234,37865144:25785795,513147,134348 -h1,10325:6797234,37865144:983040,0,0 -k1,10325:8911241,37865144:177418 -k1,10325:10394792,37865144:177418 -k1,10325:11664695,37865144:177418 -(1,10325:11664695,37865144:0,452978,115847 -r1,10381:14484944,37865144:2820249,568825,115847 -k1,10325:11664695,37865144:-2820249 -) -(1,10325:11664695,37865144:2820249,452978,115847 -k1,10325:11664695,37865144:3277 -h1,10325:14481667,37865144:0,411205,112570 -) -k1,10325:14662362,37865144:177418 -k1,10325:15491208,37865144:177418 -k1,10325:17598006,37865144:177418 -k1,10325:18794510,37865144:177419 -k1,10325:20931454,37865144:177418 -(1,10325:20931454,37865144:0,452978,115847 -r1,10381:23048279,37865144:2116825,568825,115847 -k1,10325:20931454,37865144:-2116825 -) -(1,10325:20931454,37865144:2116825,452978,115847 -k1,10325:20931454,37865144:3277 -h1,10325:23045002,37865144:0,411205,112570 -) -k1,10325:23225697,37865144:177418 -k1,10325:26765112,37865144:177418 -k1,10325:29571179,37865144:177418 -k1,10325:31311631,37865144:177418 -k1,10325:32583029,37865144:0 -) -(1,10326:6797234,38706632:25785795,513147,134348 -k1,10325:7653285,38706632:173166 -k1,10325:9476648,38706632:173166 -k1,10325:12876807,38706632:173166 -k1,10325:15253949,38706632:173167 -k1,10325:18829744,38706632:173166 -k1,10325:20107192,38706632:173166 -k1,10325:21028124,38706632:173166 -k1,10325:23406577,38706632:173166 -k1,10325:24231171,38706632:173166 -k1,10325:25423423,38706632:173167 -k1,10325:28292085,38706632:173166 -k1,10325:29116679,38706632:173166 -k1,10325:30037611,38706632:173166 -k1,10326:32583029,38706632:0 -k1,10326:32583029,38706632:0 -) -v1,10328:6797234,39897098:0,393216,0 -(1,10342:6797234,45510161:25785795,6006279,196608 -g1,10342:6797234,45510161 -g1,10342:6797234,45510161 -g1,10342:6600626,45510161 -(1,10342:6600626,45510161:0,6006279,196608 -r1,10381:32779637,45510161:26179011,6202887,196608 -k1,10342:6600625,45510161:-26179012 -) -(1,10342:6600626,45510161:26179011,6006279,196608 -[1,10342:6797234,45510161:25785795,5809671,0 -(1,10330:6797234,40104716:25785795,404226,76021 -(1,10329:6797234,40104716:0,0,0 -g1,10329:6797234,40104716 -g1,10329:6797234,40104716 -g1,10329:6469554,40104716 -(1,10329:6469554,40104716:0,0,0 -) -g1,10329:6797234,40104716 -) -k1,10330:6797234,40104716:0 -h1,10330:11855565,40104716:0,0,0 -k1,10330:32583029,40104716:20727464 -g1,10330:32583029,40104716 -) -(1,10331:6797234,40770894:25785795,404226,101187 -h1,10331:6797234,40770894:0,0,0 -g1,10331:9010254,40770894 -g1,10331:9958692,40770894 -g1,10331:14384733,40770894 -g1,10331:15649317,40770894 -g1,10331:17862337,40770894 -g1,10331:19443066,40770894 -g1,10331:20075358,40770894 -g1,10331:21339941,40770894 -g1,10331:22288378,40770894 -g1,10331:22920670,40770894 -h1,10331:23552962,40770894:0,0,0 -k1,10331:32583029,40770894:9030067 -g1,10331:32583029,40770894 -) -(1,10332:6797234,41437072:25785795,404226,76021 -h1,10332:6797234,41437072:0,0,0 -k1,10332:6797234,41437072:0 -h1,10332:10274836,41437072:0,0,0 -k1,10332:32583028,41437072:22308192 -g1,10332:32583028,41437072 -) -(1,10341:6797234,42103250:25785795,410518,9436 -(1,10334:6797234,42103250:0,0,0 -g1,10334:6797234,42103250 -g1,10334:6797234,42103250 -g1,10334:6469554,42103250 -(1,10334:6469554,42103250:0,0,0 -) -g1,10334:6797234,42103250 -) -g1,10341:7745671,42103250 -g1,10341:9326400,42103250 -g1,10341:10274837,42103250 -h1,10341:10590983,42103250:0,0,0 -k1,10341:32583029,42103250:21992046 -g1,10341:32583029,42103250 -) -(1,10341:6797234,42769428:25785795,410518,76021 -h1,10341:6797234,42769428:0,0,0 -g1,10341:7745671,42769428 -g1,10341:8061817,42769428 -g1,10341:8694109,42769428 -g1,10341:9326401,42769428 -g1,10341:10590984,42769428 -g1,10341:12487858,42769428 -g1,10341:14384732,42769428 -g1,10341:15965461,42769428 -g1,10341:17546190,42769428 -h1,10341:19126918,42769428:0,0,0 -k1,10341:32583029,42769428:13456111 -g1,10341:32583029,42769428 -) -(1,10341:6797234,43435606:25785795,410518,76021 -h1,10341:6797234,43435606:0,0,0 -g1,10341:7745671,43435606 -g1,10341:8061817,43435606 -g1,10341:8694109,43435606 -g1,10341:9326401,43435606 -g1,10341:10590984,43435606 -g1,10341:12487858,43435606 -g1,10341:14068587,43435606 -g1,10341:15649316,43435606 -g1,10341:17230045,43435606 -h1,10341:18494628,43435606:0,0,0 -k1,10341:32583029,43435606:14088401 -g1,10341:32583029,43435606 -) -(1,10341:6797234,44101784:25785795,410518,76021 -h1,10341:6797234,44101784:0,0,0 -g1,10341:7745671,44101784 -g1,10341:8061817,44101784 -g1,10341:8694109,44101784 -g1,10341:9326401,44101784 -g1,10341:10590984,44101784 -g1,10341:12487858,44101784 -g1,10341:14384732,44101784 -g1,10341:15965461,44101784 -g1,10341:16597753,44101784 -h1,10341:17862336,44101784:0,0,0 -k1,10341:32583029,44101784:14720693 -g1,10341:32583029,44101784 -) -(1,10341:6797234,44767962:25785795,410518,76021 -h1,10341:6797234,44767962:0,0,0 -g1,10341:7745671,44767962 -g1,10341:8061817,44767962 -g1,10341:8694109,44767962 -g1,10341:9326401,44767962 -g1,10341:10590984,44767962 -g1,10341:12487858,44767962 -g1,10341:14068587,44767962 -g1,10341:15965461,44767962 -g1,10341:17862335,44767962 -h1,10341:19443063,44767962:0,0,0 -k1,10341:32583029,44767962:13139966 -g1,10341:32583029,44767962 -) -(1,10341:6797234,45434140:25785795,410518,76021 -h1,10341:6797234,45434140:0,0,0 -g1,10341:7745671,45434140 -g1,10341:8061817,45434140 -g1,10341:8694109,45434140 -g1,10341:9326401,45434140 -g1,10341:10590984,45434140 -g1,10341:12487858,45434140 -g1,10341:14068587,45434140 -g1,10341:15965461,45434140 -g1,10341:17862335,45434140 -h1,10341:19443063,45434140:0,0,0 -k1,10341:32583029,45434140:13139966 -g1,10341:32583029,45434140 -) -] -) -g1,10342:32583029,45510161 -g1,10342:6797234,45510161 -g1,10342:6797234,45510161 -g1,10342:32583029,45510161 -g1,10342:32583029,45510161 -) -h1,10342:6797234,45706769:0,0,0 -] -g1,10381:32583029,45706769 -) -] -(1,10381:32583029,45706769:0,0,0 -g1,10381:32583029,45706769 -) -) -] -(1,10381:6630773,47279633:25952256,0,0 -h1,10381:6630773,47279633:25952256,0,0 -) -] -(1,10381:4262630,4025873:0,0,0 -[1,10381:-473656,4025873:0,0,0 -(1,10381:-473656,-710413:0,0,0 -(1,10381:-473656,-710413:0,0,0 -g1,10381:-473656,-710413 -) -g1,10381:-473656,-710413 -) -] -) -] -!29367 -}173 -Input:1547:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1548:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1549:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1550:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1551:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1552:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1553:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1554:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1555:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1556:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1557:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1558:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1559:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1560:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1561:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1562:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1516 -{174 -[1,10412:4262630,47279633:28320399,43253760,0 -(1,10412:4262630,4025873:0,0,0 -[1,10412:-473656,4025873:0,0,0 -(1,10412:-473656,-710413:0,0,0 -(1,10412:-473656,-644877:0,0,0 -k1,10412:-473656,-644877:-65536 ) -(1,10412:-473656,4736287:0,0,0 -k1,10412:-473656,4736287:5209943 ) -g1,10412:-473656,-710413 ) ] +[1,9475:3078558,4812305:0,0,0 +(1,9475:3078558,2439708:0,1703936,0 +g1,9475:29030814,2439708 +g1,9475:36135244,2439708 +(1,8606:36135244,2439708:1720320,1703936,0 +(1,8606:36135244,2439708:16384,1703936,0 +[1,8606:36135244,2439708:25952256,1703936,0 +(1,8606:36135244,1915420:25952256,1179648,0 +(1,8606:36135244,1915420:16384,1179648,0 +r1,9475:36151628,1915420:16384,1179648,0 ) -[1,10412:6630773,47279633:25952256,43253760,0 -[1,10412:6630773,4812305:25952256,786432,0 -(1,10412:6630773,4812305:25952256,513147,126483 -(1,10412:6630773,4812305:25952256,513147,126483 -g1,10412:3078558,4812305 -[1,10412:3078558,4812305:0,0,0 -(1,10412:3078558,2439708:0,1703936,0 -k1,10412:1358238,2439708:-1720320 -(1,8393:1358238,2439708:1720320,1703936,0 -(1,8393:1358238,2439708:1179648,16384,0 -r1,10412:2537886,2439708:1179648,16384,0 -) -g1,8393:3062174,2439708 -(1,8393:3062174,2439708:16384,1703936,0 -[1,8393:3062174,2439708:25952256,1703936,0 -(1,8393:3062174,1915420:25952256,1179648,0 -(1,8393:3062174,1915420:16384,1179648,0 -r1,10412:3078558,1915420:16384,1179648,0 -) -k1,8393:29014430,1915420:25935872 -g1,8393:29014430,1915420 +k1,8606:62087500,1915420:25935872 +g1,8606:62087500,1915420 ) ] ) +g1,8606:36675916,2439708 +(1,8606:36675916,2439708:1179648,16384,0 +r1,9475:37855564,2439708:1179648,16384,0 ) ) -] -[1,10412:3078558,4812305:0,0,0 -(1,10412:3078558,2439708:0,1703936,0 -g1,10412:29030814,2439708 -g1,10412:36135244,2439708 -(1,8393:36135244,2439708:1720320,1703936,0 -(1,8393:36135244,2439708:16384,1703936,0 -[1,8393:36135244,2439708:25952256,1703936,0 -(1,8393:36135244,1915420:25952256,1179648,0 -(1,8393:36135244,1915420:16384,1179648,0 -r1,10412:36151628,1915420:16384,1179648,0 -) -k1,8393:62087500,1915420:25935872 -g1,8393:62087500,1915420 +k1,9475:3078556,2439708:-34777008 ) ] +[1,9475:3078558,4812305:0,0,0 +(1,9475:3078558,49800853:0,16384,2228224 +k1,9475:1358238,49800853:-1720320 +(1,8606:1358238,49800853:1720320,16384,2228224 +(1,8606:1358238,49800853:1179648,16384,0 +r1,9475:2537886,49800853:1179648,16384,0 ) -g1,8393:36675916,2439708 -(1,8393:36675916,2439708:1179648,16384,0 -r1,10412:37855564,2439708:1179648,16384,0 +g1,8606:3062174,49800853 +(1,8606:3062174,52029077:16384,1703936,0 +[1,8606:3062174,52029077:25952256,1703936,0 +(1,8606:3062174,51504789:25952256,1179648,0 +(1,8606:3062174,51504789:16384,1179648,0 +r1,9475:3078558,51504789:16384,1179648,0 +) +k1,8606:29014430,51504789:25935872 +g1,8606:29014430,51504789 +) +] ) ) -k1,10412:3078556,2439708:-34777008 ) ] -[1,10412:3078558,4812305:0,0,0 -(1,10412:3078558,49800853:0,16384,2228224 -k1,10412:1358238,49800853:-1720320 -(1,8393:1358238,49800853:1720320,16384,2228224 -(1,8393:1358238,49800853:1179648,16384,0 -r1,10412:2537886,49800853:1179648,16384,0 +[1,9475:3078558,4812305:0,0,0 +(1,9475:3078558,49800853:0,16384,2228224 +g1,9475:29030814,49800853 +g1,9475:36135244,49800853 +(1,8606:36135244,49800853:1720320,16384,2228224 +(1,8606:36135244,52029077:16384,1703936,0 +[1,8606:36135244,52029077:25952256,1703936,0 +(1,8606:36135244,51504789:25952256,1179648,0 +(1,8606:36135244,51504789:16384,1179648,0 +r1,9475:36151628,51504789:16384,1179648,0 +) +k1,8606:62087500,51504789:25935872 +g1,8606:62087500,51504789 +) +] +) +g1,8606:36675916,49800853 +(1,8606:36675916,49800853:1179648,16384,0 +r1,9475:37855564,49800853:1179648,16384,0 +) +) +k1,9475:3078556,49800853:-34777008 +) +] +g1,9475:6630773,4812305 +k1,9475:21643106,4812305:13816956 +g1,9475:23265777,4812305 +g1,9475:24088253,4812305 +g1,9475:28572226,4812305 +g1,9475:29981905,4812305 +) +) +] +[1,9475:6630773,45706769:25952256,40108032,0 +(1,9475:6630773,45706769:25952256,40108032,0 +(1,9475:6630773,45706769:0,0,0 +g1,9475:6630773,45706769 +) +[1,9475:6630773,45706769:25952256,40108032,0 +(1,9440:6630773,6254097:25952256,505283,134348 +k1,9439:8437600,6254097:167772 +k1,9439:9136869,6254097:167772 +k1,9439:10323726,6254097:167772 +k1,9439:12171842,6254097:167773 +k1,9439:15118341,6254097:167772 +k1,9439:16047641,6254097:167772 +k1,9439:17234498,6254097:167772 +k1,9439:20588630,6254097:167772 +k1,9439:25379967,6254097:167772 +k1,9439:26199168,6254097:167773 +k1,9439:27386025,6254097:167772 +k1,9439:30525199,6254097:167772 +k1,9439:32583029,6254097:0 +) +(1,9440:6630773,7119177:25952256,513147,115847 +k1,9439:8641226,7119177:156439 +k1,9439:9480551,7119177:156440 +k1,9439:10656075,7119177:156439 +k1,9439:13078094,7119177:156439 +k1,9439:15643636,7119177:156439 +k1,9439:16451504,7119177:156440 +(1,9439:16451504,7119177:0,452978,115847 +r1,9475:17864905,7119177:1413401,568825,115847 +k1,9439:16451504,7119177:-1413401 +) +(1,9439:16451504,7119177:1413401,452978,115847 +k1,9439:16451504,7119177:3277 +h1,9439:17861628,7119177:0,411205,112570 +) +k1,9439:18228438,7119177:156439 +k1,9439:18850838,7119177:156439 +k1,9439:20662061,7119177:156439 +k1,9439:21349998,7119177:156440 +k1,9439:22315807,7119177:156439 +k1,9439:24453399,7119177:156439 +k1,9439:25801283,7119177:156439 +k1,9439:26313582,7119177:156439 +k1,9439:28735602,7119177:156440 +k1,9439:30902686,7119177:156439 +k1,9439:32583029,7119177:0 +) +(1,9440:6630773,7984257:25952256,513147,134348 +k1,9439:7944901,7984257:213123 +k1,9439:9667974,7984257:213123 +k1,9439:12436346,7984257:213123 +k1,9439:14124685,7984257:213124 +k1,9439:16981530,7984257:213123 +k1,9439:20381013,7984257:213123 +k1,9439:21698418,7984257:213123 +k1,9439:22659307,7984257:213123 +k1,9439:25399498,7984257:213123 +k1,9439:26298783,7984257:213123 +k1,9439:26867766,7984257:213123 +k1,9439:28426344,7984257:213124 +k1,9439:30207088,7984257:213123 +k1,9439:30776071,7984257:213123 +k1,9439:31923737,7984257:213123 +k1,9439:32583029,7984257:0 +) +(1,9440:6630773,8849337:25952256,505283,134348 +k1,9439:9447915,8849337:187182 +k1,9439:11332479,8849337:187182 +k1,9439:12711106,8849337:187182 +k1,9439:13917373,8849337:187182 +k1,9439:15784898,8849337:187182 +k1,9439:18177367,8849337:187182 +k1,9439:19050711,8849337:187182 +k1,9439:22310221,8849337:187182 +k1,9439:23148831,8849337:187182 +(1,9439:23148831,8849337:0,452978,115847 +r1,9475:25969080,8849337:2820249,568825,115847 +k1,9439:23148831,8849337:-2820249 +) +(1,9439:23148831,8849337:2820249,452978,115847 +k1,9439:23148831,8849337:3277 +h1,9439:25965803,8849337:0,411205,112570 +) +k1,9439:26156262,8849337:187182 +k1,9439:27029606,8849337:187182 +k1,9439:27987491,8849337:187182 +k1,9439:29923829,8849337:187182 +k1,9439:30762439,8849337:187182 +k1,9439:32583029,8849337:0 +) +(1,9440:6630773,9714417:25952256,513147,7863 +g1,9439:7986712,9714417 +g1,9439:8845233,9714417 +k1,9440:32583029,9714417:21925070 +g1,9440:32583029,9714417 +) +v1,9442:6630773,10579497:0,393216,0 +(1,9443:6630773,12858547:25952256,2672266,0 +g1,9443:6630773,12858547 +g1,9443:6237557,12858547 +r1,9475:6368629,12858547:131072,2672266,0 +g1,9443:6567858,12858547 +g1,9443:6764466,12858547 +[1,9443:6764466,12858547:25818563,2672266,0 +(1,9443:6764466,10994039:25818563,807758,219026 +(1,9442:6764466,10994039:0,807758,219026 +r1,9475:7908217,10994039:1143751,1026784,219026 +k1,9442:6764466,10994039:-1143751 +) +(1,9442:6764466,10994039:1143751,807758,219026 +) +k1,9442:8041710,10994039:133493 +k1,9442:8369390,10994039:327680 +k1,9442:9699571,10994039:133494 +k1,9442:11554039,10994039:133493 +k1,9442:12925507,10994039:133493 +k1,9442:13675038,10994039:133493 +k1,9442:15694003,10994039:133494 +k1,9442:16846581,10994039:133493 +(1,9442:16846581,10994039:0,452978,115847 +r1,9475:19666830,10994039:2820249,568825,115847 +k1,9442:16846581,10994039:-2820249 +) +(1,9442:16846581,10994039:2820249,452978,115847 +k1,9442:16846581,10994039:3277 +h1,9442:19663553,10994039:0,411205,112570 +) +k1,9442:19800323,10994039:133493 +k1,9442:23120176,10994039:133493 +k1,9442:23785167,10994039:133494 +k1,9442:25431886,10994039:133493 +k1,9442:26096876,10994039:133493 +k1,9442:26991897,10994039:133493 +k1,9442:30771159,10994039:133494 +k1,9442:31563944,10994039:133493 +k1,9442:32583029,10994039:0 +) +(1,9443:6764466,11859119:25818563,513147,134348 +k1,9442:9761485,11859119:218292 +k1,9442:11833791,11859119:218292 +k1,9442:12738245,11859119:218292 +k1,9442:16046560,11859119:218292 +k1,9442:16951014,11859119:218292 +k1,9442:18907320,11859119:218291 +k1,9442:21077274,11859119:218292 +k1,9442:24019898,11859119:218292 +k1,9442:25310359,11859119:218292 +k1,9442:27189989,11859119:218292 +k1,9442:28355932,11859119:218292 +(1,9442:28355932,11859119:0,459977,115847 +r1,9475:32583029,11859119:4227097,575824,115847 +k1,9442:28355932,11859119:-4227097 +) +(1,9442:28355932,11859119:4227097,459977,115847 +g1,9442:29414345,11859119 +g1,9442:30469481,11859119 +g1,9442:31172905,11859119 +h1,9442:32579752,11859119:0,411205,112570 +) +k1,9442:32583029,11859119:0 +) +(1,9443:6764466,12724199:25818563,485622,134348 +g1,9442:7773065,12724199 +g1,9442:9470447,12724199 +h1,9442:10665824,12724199:0,0,0 +k1,9443:32583030,12724199:21743536 +g1,9443:32583030,12724199 +) +] +g1,9443:32583029,12858547 +) +h1,9443:6630773,12858547:0,0,0 +(1,9468:6630773,35795328:25952256,22215885,0 +k1,9468:10211480,35795328:3580707 +(1,9445:10211480,35795328:0,0,0 +g1,9445:10211480,35795328 +g1,9445:10211480,35795328 +g1,9445:9883800,35795328 +(1,9445:9883800,35795328:0,0,0 +) +g1,9445:10211480,35795328 +) +(1,9466:10211480,35795328:18790843,22215885,0 +g1,9466:13698849,35795328 +(1,9466:13698849,14524889:0,0,0 +(1,9466:13698849,14524889:0,0,0 +g1,9447:13698849,14524889 +(1,9448:13698849,14524889:0,0,0 +(1,9448:13698849,14524889:0,0,0 +g1,9448:13698849,14524889 +g1,9448:13698849,14524889 +g1,9448:13698849,14524889 +g1,9448:13698849,14524889 +g1,9448:13698849,14524889 +(1,9448:13698849,14524889:0,0,0 +(1,9448:13698849,14524889:589824,56623,0 +(1,9448:13698849,14524889:589824,56623,0 +) +g1,9448:14288673,14524889 +) +) +g1,9448:13698849,14524889 +g1,9448:13698849,14524889 +) +) +g1,9448:13698849,14524889 +(1,9449:13698849,14524889:0,0,0 +(1,9449:13698849,14524889:0,0,0 +g1,9449:13698849,14524889 +g1,9449:13698849,14524889 +(1,9449:13698849,14524889:0,0,0 +(1,9449:13698849,14524889:4754664,408008,104590 +(1,9449:13698849,14524889:4754664,408008,104590 +(1,9449:13698849,14524889:0,408008,104590 +r1,9475:18453513,14524889:4754664,512598,104590 +k1,9449:13698849,14524889:-4754664 +) +(1,9449:13698849,14524889:4754664,408008,104590 +k1,9449:13698849,14524889:3277 +h1,9449:18450236,14524889:0,370085,101313 +) +) +g1,9449:18453513,14524889 +) +) +g1,9449:13698849,14524889 +g1,9449:13698849,14524889 +) +) +(1,9450:13698849,14524889:0,0,0 +(1,9450:13698849,14524889:0,0,0 +g1,9450:13698849,14524889 +g1,9450:13698849,14524889 +g1,9450:13698849,14524889 +g1,9450:13698849,14524889 +g1,9450:13698849,14524889 +(1,9450:13698849,14524889:0,0,0 +(1,9450:13698849,14524889:4121582,373362,104590 +(1,9450:13698849,14524889:4121582,373362,104590 +(1,9450:13698849,14524889:0,373362,104590 +r1,9475:17820431,14524889:4121582,477952,104590 +k1,9450:13698849,14524889:-4121582 +) +(1,9450:13698849,14524889:4121582,373362,104590 +g1,9450:17184073,14524889 +h1,9450:17817154,14524889:0,370085,101313 +) +) +g1,9450:17820431,14524889 +) +) +g1,9450:13698849,14524889 +g1,9450:13698849,14524889 +) +) +g1,9450:13698849,14524889 +g1,9451:13698849,14524889 +(1,9451:13698849,14524889:0,0,0 +(1,9451:13698849,14524889:0,0,0 +g1,9451:13698849,14524889 +g1,9451:13698849,14524889 +g1,9451:13698849,14524889 +g1,9451:13698849,14524889 +g1,9451:13698849,14524889 +(1,9451:13698849,14524889:0,0,0 +(1,9451:13698849,14524889:4121582,373362,104590 +(1,9451:13698849,14524889:4121582,373362,104590 +(1,9451:13698849,14524889:0,373362,104590 +r1,9475:17820431,14524889:4121582,477952,104590 +k1,9451:13698849,14524889:-4121582 +) +(1,9451:13698849,14524889:4121582,373362,104590 +g1,9451:17184073,14524889 +h1,9451:17817154,14524889:0,370085,101313 +) +) +g1,9451:17820431,14524889 ) -g1,8393:3062174,49800853 -(1,8393:3062174,52029077:16384,1703936,0 -[1,8393:3062174,52029077:25952256,1703936,0 -(1,8393:3062174,51504789:25952256,1179648,0 -(1,8393:3062174,51504789:16384,1179648,0 -r1,10412:3078558,51504789:16384,1179648,0 ) -k1,8393:29014430,51504789:25935872 -g1,8393:29014430,51504789 +g1,9451:13698849,14524889 +g1,9451:13698849,14524889 ) -] ) +g1,9451:13698849,14524889 +g1,9452:13698849,14524889 +(1,9452:13698849,14524889:0,0,0 +(1,9452:13698849,14524889:0,0,0 +g1,9452:13698849,14524889 +g1,9452:13698849,14524889 +g1,9452:13698849,14524889 +g1,9452:13698849,14524889 +g1,9452:13698849,14524889 +(1,9452:13698849,14524889:0,0,0 +(1,9452:13698849,14524889:4121582,373362,104590 +(1,9452:13698849,14524889:4121582,373362,104590 +(1,9452:13698849,14524889:0,373362,104590 +r1,9475:17820431,14524889:4121582,477952,104590 +k1,9452:13698849,14524889:-4121582 ) +(1,9452:13698849,14524889:4121582,373362,104590 +g1,9452:17184073,14524889 +h1,9452:17817154,14524889:0,370085,101313 +) +) +g1,9452:17820431,14524889 +) +) +g1,9452:13698849,14524889 +g1,9452:13698849,14524889 +) +) +g1,9452:13698849,14524889 +g1,9453:13698849,14524889 +(1,9453:13698849,14524889:0,0,0 +(1,9453:13698849,14524889:0,0,0 +g1,9453:13698849,14524889 +g1,9453:13698849,14524889 +g1,9453:13698849,14524889 +g1,9453:13698849,14524889 +g1,9453:13698849,14524889 +(1,9453:13698849,14524889:0,0,0 +(1,9453:13698849,14524889:4121582,373362,104590 +(1,9453:13698849,14524889:4121582,373362,104590 +(1,9453:13698849,14524889:0,373362,104590 +r1,9475:17820431,14524889:4121582,477952,104590 +k1,9453:13698849,14524889:-4121582 +) +(1,9453:13698849,14524889:4121582,373362,104590 +g1,9453:17184073,14524889 +h1,9453:17817154,14524889:0,370085,101313 +) +) +g1,9453:17820431,14524889 +) +) +g1,9453:13698849,14524889 +g1,9453:13698849,14524889 +) +) +g1,9453:13698849,14524889 +(1,9454:13698849,14524889:0,0,0 +(1,9454:13698849,14524889:0,0,0 +g1,9454:13698849,14524889 +g1,9454:13698849,14524889 +g1,9454:13698849,14524889 +g1,9454:13698849,14524889 +g1,9454:13698849,14524889 +(1,9454:13698849,14524889:0,0,0 +(1,9454:13698849,14524889:4121582,373362,104590 +(1,9454:13698849,14524889:4121582,373362,104590 +(1,9454:13698849,14524889:0,373362,104590 +r1,9475:17820431,14524889:4121582,477952,104590 +k1,9454:13698849,14524889:-4121582 +) +(1,9454:13698849,14524889:4121582,373362,104590 +g1,9454:17184073,14524889 +h1,9454:17817154,14524889:0,370085,101313 +) +) +g1,9454:17820431,14524889 +) +) +g1,9454:13698849,14524889 +g1,9454:13698849,14524889 +) +) +g1,9454:13698849,14524889 +g1,9455:13698849,14524889 +(1,9455:13698849,14524889:0,0,0 +(1,9455:13698849,14524889:0,0,0 +g1,9455:13698849,14524889 +g1,9455:13698849,14524889 +g1,9455:13698849,14524889 +g1,9455:13698849,14524889 +g1,9455:13698849,14524889 +(1,9455:13698849,14524889:0,0,0 +(1,9455:13698849,14524889:589824,56623,0 +(1,9455:13698849,14524889:589824,56623,0 ) -] -[1,10412:3078558,4812305:0,0,0 -(1,10412:3078558,49800853:0,16384,2228224 -g1,10412:29030814,49800853 -g1,10412:36135244,49800853 -(1,8393:36135244,49800853:1720320,16384,2228224 -(1,8393:36135244,52029077:16384,1703936,0 -[1,8393:36135244,52029077:25952256,1703936,0 -(1,8393:36135244,51504789:25952256,1179648,0 -(1,8393:36135244,51504789:16384,1179648,0 -r1,10412:36151628,51504789:16384,1179648,0 -) -k1,8393:62087500,51504789:25935872 -g1,8393:62087500,51504789 -) -] -) -g1,8393:36675916,49800853 -(1,8393:36675916,49800853:1179648,16384,0 -r1,10412:37855564,49800853:1179648,16384,0 -) -) -k1,10412:3078556,49800853:-34777008 -) -] -g1,10412:6630773,4812305 -g1,10412:6630773,4812305 -g1,10412:8671564,4812305 -g1,10412:11756343,4812305 -k1,10412:31387651,4812305:19631308 -) -) -] -[1,10412:6630773,45706769:25952256,40108032,0 -(1,10412:6630773,45706769:25952256,40108032,0 -(1,10412:6630773,45706769:0,0,0 -g1,10412:6630773,45706769 -) -[1,10412:6630773,45706769:25952256,40108032,0 -v1,10381:6630773,6254097:0,393216,0 -(1,10381:6630773,20370031:25952256,14509150,0 -g1,10381:6630773,20370031 -g1,10381:6303093,20370031 -r1,10412:6401397,20370031:98304,14509150,0 -g1,10381:6600626,20370031 -g1,10381:6797234,20370031 -[1,10381:6797234,20370031:25785795,14509150,0 -(1,10346:6797234,6374028:25785795,513147,126483 -h1,10345:6797234,6374028:983040,0,0 -k1,10345:8987548,6374028:253725 -k1,10345:11202110,6374028:253725 -k1,10345:12474920,6374028:253725 -k1,10345:15424142,6374028:253726 -k1,10345:16962373,6374028:253725 -k1,10345:18084450,6374028:253725 -k1,10345:19470637,6374028:253725 -k1,10345:21661606,6374028:253725 -k1,10345:22271191,6374028:253725 -k1,10345:25220413,6374028:253726 -k1,10345:26758644,6374028:253725 -k1,10345:29353315,6374028:253725 -k1,10345:29962900,6374028:253725 -k1,10345:32583029,6374028:0 -) -(1,10346:6797234,7215516:25785795,513147,134348 -g1,10345:8974340,7215516 -g1,10345:9832861,7215516 -g1,10345:12045356,7215516 -k1,10346:32583029,7215516:19965544 -g1,10346:32583029,7215516 -) -v1,10348:6797234,8405982:0,393216,0 -(1,10354:6797234,10028269:25785795,2015503,196608 -g1,10354:6797234,10028269 -g1,10354:6797234,10028269 -g1,10354:6600626,10028269 -(1,10354:6600626,10028269:0,2015503,196608 -r1,10412:32779637,10028269:26179011,2212111,196608 -k1,10354:6600625,10028269:-26179012 -) -(1,10354:6600626,10028269:26179011,2015503,196608 -[1,10354:6797234,10028269:25785795,1818895,0 -(1,10350:6797234,8619892:25785795,410518,82312 -(1,10349:6797234,8619892:0,0,0 -g1,10349:6797234,8619892 -g1,10349:6797234,8619892 -g1,10349:6469554,8619892 -(1,10349:6469554,8619892:0,0,0 -) -g1,10349:6797234,8619892 -) -g1,10350:10590982,8619892 -g1,10350:11539420,8619892 -g1,10350:15333169,8619892 -g1,10350:17230043,8619892 -g1,10350:17862335,8619892 -g1,10350:20075355,8619892 -h1,10350:20391501,8619892:0,0,0 -k1,10350:32583029,8619892:12191528 -g1,10350:32583029,8619892 -) -(1,10351:6797234,9286070:25785795,404226,82312 -h1,10351:6797234,9286070:0,0,0 -g1,10351:7113380,9286070 -g1,10351:7429526,9286070 -g1,10351:7745672,9286070 -g1,10351:8061818,9286070 -g1,10351:8377964,9286070 -g1,10351:8694110,9286070 -g1,10351:9010256,9286070 -g1,10351:12171714,9286070 -g1,10351:14068588,9286070 -g1,10351:14700880,9286070 -g1,10351:17230046,9286070 -g1,10351:17546192,9286070 -g1,10351:19443066,9286070 -g1,10351:21339940,9286070 -g1,10351:21972232,9286070 -h1,10351:24185252,9286070:0,0,0 -k1,10351:32583029,9286070:8397777 -g1,10351:32583029,9286070 -) -(1,10352:6797234,9952248:25785795,404226,76021 -h1,10352:6797234,9952248:0,0,0 -g1,10352:7113380,9952248 -g1,10352:7429526,9952248 -g1,10352:7745672,9952248 -g1,10352:8061818,9952248 -h1,10352:8377964,9952248:0,0,0 -k1,10352:32583028,9952248:24205064 -g1,10352:32583028,9952248 -) -] -) -g1,10354:32583029,10028269 -g1,10354:6797234,10028269 -g1,10354:6797234,10028269 -g1,10354:32583029,10028269 -g1,10354:32583029,10028269 -) -h1,10354:6797234,10224877:0,0,0 -(1,10358:6797234,11590653:25785795,513147,126483 -h1,10357:6797234,11590653:983040,0,0 -g1,10357:8933052,11590653 -g1,10357:10516401,11590653 -g1,10357:11808115,11590653 -(1,10357:11808115,11590653:0,452978,115847 -r1,10412:14628364,11590653:2820249,568825,115847 -k1,10357:11808115,11590653:-2820249 -) -(1,10357:11808115,11590653:2820249,452978,115847 -k1,10357:11808115,11590653:3277 -h1,10357:14625087,11590653:0,411205,112570 -) -g1,10357:14827593,11590653 -g1,10357:15678250,11590653 -g1,10357:17641053,11590653 -g1,10357:18938010,11590653 -g1,10357:21832735,11590653 -g1,10357:22683392,11590653 -g1,10357:24334243,11590653 -g1,10357:27156878,11590653 -g1,10357:29333984,11590653 -g1,10357:30192505,11590653 -g1,10357:31410819,11590653 -k1,10358:32583029,11590653:5014 -g1,10358:32583029,11590653 -) -v1,10360:6797234,12781119:0,393216,0 -(1,10379:6797234,19649135:25785795,7261232,196608 -g1,10379:6797234,19649135 -g1,10379:6797234,19649135 -g1,10379:6600626,19649135 -(1,10379:6600626,19649135:0,7261232,196608 -r1,10412:32779637,19649135:26179011,7457840,196608 -k1,10379:6600625,19649135:-26179012 -) -(1,10379:6600626,19649135:26179011,7261232,196608 -[1,10379:6797234,19649135:25785795,7064624,0 -(1,10362:6797234,12988737:25785795,404226,101187 -(1,10361:6797234,12988737:0,0,0 -g1,10361:6797234,12988737 -g1,10361:6797234,12988737 -g1,10361:6469554,12988737 -(1,10361:6469554,12988737:0,0,0 -) -g1,10361:6797234,12988737 -) -g1,10362:9010254,12988737 -g1,10362:9958692,12988737 -g1,10362:12804004,12988737 -g1,10362:13436296,12988737 -k1,10362:13436296,12988737:0 -h1,10362:15649316,12988737:0,0,0 -k1,10362:32583028,12988737:16933712 -g1,10362:32583028,12988737 -) -(1,10363:6797234,13654915:25785795,404226,82312 -h1,10363:6797234,13654915:0,0,0 -g1,10363:7113380,13654915 -g1,10363:7429526,13654915 -g1,10363:7745672,13654915 -g1,10363:8061818,13654915 -g1,10363:8377964,13654915 -g1,10363:8694110,13654915 -g1,10363:9010256,13654915 -g1,10363:9326402,13654915 -g1,10363:9642548,13654915 -g1,10363:9958694,13654915 -g1,10363:10274840,13654915 -g1,10363:10590986,13654915 -g1,10363:10907132,13654915 -g1,10363:11223278,13654915 -g1,10363:11539424,13654915 -g1,10363:11855570,13654915 -g1,10363:12171716,13654915 -g1,10363:13436299,13654915 -g1,10363:14068591,13654915 -k1,10363:14068591,13654915:0 -h1,10363:17862339,13654915:0,0,0 -k1,10363:32583029,13654915:14720690 -g1,10363:32583029,13654915 -) -(1,10364:6797234,14321093:25785795,404226,82312 -h1,10364:6797234,14321093:0,0,0 -g1,10364:7113380,14321093 -g1,10364:7429526,14321093 -g1,10364:7745672,14321093 -g1,10364:8061818,14321093 -g1,10364:8377964,14321093 -g1,10364:8694110,14321093 -g1,10364:9010256,14321093 -g1,10364:9326402,14321093 -g1,10364:9642548,14321093 -g1,10364:9958694,14321093 -g1,10364:10274840,14321093 -g1,10364:10590986,14321093 -g1,10364:10907132,14321093 -g1,10364:11223278,14321093 -g1,10364:11539424,14321093 -g1,10364:11855570,14321093 -g1,10364:12171716,14321093 -g1,10364:15333173,14321093 -g1,10364:15965465,14321093 -g1,10364:18178486,14321093 -g1,10364:18810778,14321093 -g1,10364:19759216,14321093 -g1,10364:20707653,14321093 -g1,10364:21339945,14321093 -k1,10364:21339945,14321093:0 -h1,10364:22288383,14321093:0,0,0 -k1,10364:32583029,14321093:10294646 -g1,10364:32583029,14321093 -) -(1,10365:6797234,14987271:25785795,404226,76021 -h1,10365:6797234,14987271:0,0,0 -g1,10365:7113380,14987271 -g1,10365:7429526,14987271 -g1,10365:7745672,14987271 -g1,10365:8061818,14987271 -g1,10365:8377964,14987271 -g1,10365:8694110,14987271 -g1,10365:9010256,14987271 -g1,10365:9326402,14987271 -g1,10365:9642548,14987271 -g1,10365:9958694,14987271 -g1,10365:10274840,14987271 -g1,10365:10590986,14987271 -g1,10365:10907132,14987271 -g1,10365:11223278,14987271 -g1,10365:11539424,14987271 -g1,10365:11855570,14987271 -g1,10365:12171716,14987271 -g1,10365:14068590,14987271 -g1,10365:14700882,14987271 -h1,10365:16281611,14987271:0,0,0 -k1,10365:32583029,14987271:16301418 -g1,10365:32583029,14987271 -) -(1,10366:6797234,15653449:25785795,404226,76021 -h1,10366:6797234,15653449:0,0,0 -k1,10366:6797234,15653449:0 -h1,10366:10907127,15653449:0,0,0 -k1,10366:32583029,15653449:21675902 -g1,10366:32583029,15653449 -) -(1,10370:6797234,16319627:25785795,404226,101187 -(1,10368:6797234,16319627:0,0,0 -g1,10368:6797234,16319627 -g1,10368:6797234,16319627 -g1,10368:6469554,16319627 -(1,10368:6469554,16319627:0,0,0 -) -g1,10368:6797234,16319627 -) -g1,10370:7745671,16319627 -g1,10370:9010254,16319627 -g1,10370:11855565,16319627 -h1,10370:14068585,16319627:0,0,0 -k1,10370:32583029,16319627:18514444 -g1,10370:32583029,16319627 -) -(1,10372:6797234,17641165:25785795,404226,6290 -(1,10371:6797234,17641165:0,0,0 -g1,10371:6797234,17641165 -g1,10371:6797234,17641165 -g1,10371:6469554,17641165 -(1,10371:6469554,17641165:0,0,0 -) -g1,10371:6797234,17641165 -) -h1,10372:8694108,17641165:0,0,0 -k1,10372:32583028,17641165:23888920 -g1,10372:32583028,17641165 -) -(1,10378:6797234,18307343:25785795,404226,82312 -(1,10374:6797234,18307343:0,0,0 -g1,10374:6797234,18307343 -g1,10374:6797234,18307343 -g1,10374:6469554,18307343 -(1,10374:6469554,18307343:0,0,0 -) -g1,10374:6797234,18307343 -) -g1,10378:7745671,18307343 -g1,10378:8061817,18307343 -g1,10378:8377963,18307343 -g1,10378:8694109,18307343 -g1,10378:9010255,18307343 -g1,10378:9326401,18307343 -g1,10378:9642547,18307343 -g1,10378:9958693,18307343 -g1,10378:10274839,18307343 -g1,10378:10590985,18307343 -g1,10378:10907131,18307343 -g1,10378:11223277,18307343 -g1,10378:12804006,18307343 -g1,10378:13120152,18307343 -g1,10378:13436298,18307343 -g1,10378:13752444,18307343 -g1,10378:14068590,18307343 -g1,10378:14384736,18307343 -g1,10378:14700882,18307343 -g1,10378:16281611,18307343 -g1,10378:16597757,18307343 -g1,10378:16913903,18307343 -g1,10378:17230049,18307343 -g1,10378:17546195,18307343 -g1,10378:19126924,18307343 -g1,10378:19443070,18307343 -g1,10378:19759216,18307343 -g1,10378:20075362,18307343 -g1,10378:20391508,18307343 -g1,10378:20707654,18307343 -g1,10378:21023800,18307343 -g1,10378:22604529,18307343 -g1,10378:22920675,18307343 -g1,10378:23236821,18307343 -g1,10378:23552967,18307343 -g1,10378:23869113,18307343 -g1,10378:24185259,18307343 -k1,10378:24185259,18307343:0 -h1,10378:25449842,18307343:0,0,0 -k1,10378:32583029,18307343:7133187 -g1,10378:32583029,18307343 -) -(1,10378:6797234,18973521:25785795,388497,9436 -h1,10378:6797234,18973521:0,0,0 -g1,10378:7745671,18973521 -g1,10378:9326400,18973521 -g1,10378:12804003,18973521 -g1,10378:16281606,18973521 -g1,10378:19126917,18973521 -g1,10378:22604520,18973521 -h1,10378:25449831,18973521:0,0,0 -k1,10378:32583029,18973521:7133198 -g1,10378:32583029,18973521 -) -(1,10378:6797234,19639699:25785795,404226,9436 -h1,10378:6797234,19639699:0,0,0 -g1,10378:7745671,19639699 -g1,10378:8694108,19639699 -g1,10378:9010254,19639699 -g1,10378:9326400,19639699 -g1,10378:9642546,19639699 -g1,10378:12804003,19639699 -g1,10378:13120149,19639699 -g1,10378:16281606,19639699 -g1,10378:19126917,19639699 -g1,10378:19443063,19639699 -g1,10378:22604520,19639699 -g1,10378:22920666,19639699 -h1,10378:25449831,19639699:0,0,0 -k1,10378:32583029,19639699:7133198 -g1,10378:32583029,19639699 -) -] -) -g1,10379:32583029,19649135 -g1,10379:6797234,19649135 -g1,10379:6797234,19649135 -g1,10379:32583029,19649135 -g1,10379:32583029,19649135 -) -h1,10379:6797234,19845743:0,0,0 -] -g1,10381:32583029,20370031 -) -h1,10381:6630773,20370031:0,0,0 -v1,10384:6630773,21526091:0,393216,0 -(1,10385:6630773,23649468:25952256,2516593,0 -g1,10385:6630773,23649468 -g1,10385:6303093,23649468 -r1,10412:6401397,23649468:98304,2516593,0 -g1,10385:6600626,23649468 -g1,10385:6797234,23649468 -[1,10385:6797234,23649468:25785795,2516593,0 -(1,10385:6797234,21958629:25785795,825754,196608 -(1,10384:6797234,21958629:0,825754,196608 -r1,10412:7890375,21958629:1093141,1022362,196608 -k1,10384:6797234,21958629:-1093141 -) -(1,10384:6797234,21958629:1093141,825754,196608 -) -k1,10384:8178381,21958629:288006 -k1,10384:9904599,21958629:327680 -k1,10384:12087905,21958629:288005 -k1,10384:15071407,21958629:288006 -(1,10384:15071407,21958629:0,452978,115847 -r1,10412:19650215,21958629:4578808,568825,115847 -k1,10384:15071407,21958629:-4578808 -) -(1,10384:15071407,21958629:4578808,452978,115847 -k1,10384:15071407,21958629:3277 -h1,10384:19646938,21958629:0,411205,112570 -) -k1,10384:19938220,21958629:288005 -k1,10384:22607804,21958629:288006 -k1,10384:24751133,21958629:288005 -k1,10384:25690567,21958629:288006 -k1,10384:26997657,21958629:288005 -k1,10384:28675026,21958629:288006 -k1,10384:31169628,21958629:288005 -(1,10384:31169628,21958629:0,414482,115847 -r1,10412:32583029,21958629:1413401,530329,115847 -k1,10384:31169628,21958629:-1413401 -) -(1,10384:31169628,21958629:1413401,414482,115847 -k1,10384:31169628,21958629:3277 -h1,10384:32579752,21958629:0,411205,112570 -) -k1,10384:32583029,21958629:0 -) -(1,10385:6797234,22800117:25785795,513147,115847 -k1,10384:8228002,22800117:239323 -(1,10384:8228002,22800117:0,452978,115847 -r1,10412:9641403,22800117:1413401,568825,115847 -k1,10384:8228002,22800117:-1413401 -) -(1,10384:8228002,22800117:1413401,452978,115847 -k1,10384:8228002,22800117:3277 -h1,10384:9638126,22800117:0,411205,112570 -) -k1,10384:9880727,22800117:239324 -k1,10384:11687671,22800117:239323 -k1,10384:15106801,22800117:239324 -k1,10384:16542811,22800117:239323 -k1,10384:17959161,22800117:239323 -k1,10384:18729982,22800117:239324 -k1,10384:19620733,22800117:239323 -k1,10384:21883808,22800117:239323 -k1,10384:23142217,22800117:239324 -k1,10384:25119555,22800117:239323 -k1,10384:26550324,22800117:239324 -k1,10384:29633254,22800117:239323 -k1,10384:32583029,22800117:0 -) -(1,10385:6797234,23641605:25785795,513147,7863 -g1,10384:7944114,23641605 -g1,10384:9594965,23641605 -g1,10384:12414323,23641605 -k1,10385:32583030,23641605:17612148 -g1,10385:32583030,23641605 -) -] -g1,10385:32583029,23649468 -) -h1,10385:6630773,23649468:0,0,0 -v1,10388:6630773,24805528:0,393216,0 -(1,10389:6630773,28730501:25952256,4318189,0 -g1,10389:6630773,28730501 -g1,10389:6303093,28730501 -r1,10412:6401397,28730501:98304,4318189,0 -g1,10389:6600626,28730501 -g1,10389:6797234,28730501 -[1,10389:6797234,28730501:25785795,4318189,0 -(1,10389:6797234,25238066:25785795,825754,196608 -(1,10388:6797234,25238066:0,825754,196608 -r1,10412:8834093,25238066:2036859,1022362,196608 -k1,10388:6797234,25238066:-2036859 -) -(1,10388:6797234,25238066:2036859,825754,196608 -) -k1,10388:9013614,25238066:179521 -k1,10388:10739832,25238066:327680 -k1,10388:13057793,25238066:179521 -k1,10388:14256400,25238066:179522 -k1,10388:17426329,25238066:179521 -k1,10388:18265142,25238066:179521 -k1,10388:19834026,25238066:179521 -(1,10388:19834026,25238066:0,452978,115847 -r1,10412:23357698,25238066:3523672,568825,115847 -k1,10388:19834026,25238066:-3523672 -) -(1,10388:19834026,25238066:3523672,452978,115847 -k1,10388:19834026,25238066:3277 -h1,10388:23354421,25238066:0,411205,112570 -) -k1,10388:23537219,25238066:179521 -k1,10388:25110692,25238066:179522 -k1,10388:27985709,25238066:179521 -(1,10388:27985709,25238066:0,452978,115847 -r1,10412:31157669,25238066:3171960,568825,115847 -k1,10388:27985709,25238066:-3171960 -) -(1,10388:27985709,25238066:3171960,452978,115847 -k1,10388:27985709,25238066:3277 -h1,10388:31154392,25238066:0,411205,112570 -) -k1,10388:31510860,25238066:179521 -k1,10388:32583029,25238066:0 -) -(1,10389:6797234,26079554:25785795,513147,134348 -k1,10388:7569197,26079554:155925 -k1,10388:10564797,26079554:155925 -k1,10388:12335529,26079554:155925 -k1,10388:13987642,26079554:155926 -k1,10388:15537518,26079554:155925 -k1,10388:16464146,26079554:155925 -k1,10388:18412481,26079554:155925 -k1,10388:21263902,26079554:155925 -k1,10388:22071255,26079554:155925 -k1,10388:24041873,26079554:155926 -k1,10388:25216883,26079554:155925 -k1,10388:27858589,26079554:155925 -k1,10388:28673806,26079554:155925 -k1,10388:32583029,26079554:0 -) -(1,10389:6797234,26921042:25785795,513147,134348 -k1,10388:8997370,26921042:189491 -k1,10388:9802899,26921042:189491 -k1,10388:11444012,26921042:189491 -k1,10388:14190062,26921042:189491 -k1,10388:15931446,26921042:189491 -k1,10388:17856330,26921042:189491 -(1,10388:17856330,26921042:0,452978,115847 -r1,10412:19621443,26921042:1765113,568825,115847 -k1,10388:17856330,26921042:-1765113 -) -(1,10388:17856330,26921042:1765113,452978,115847 -k1,10388:17856330,26921042:3277 -h1,10388:19618166,26921042:0,411205,112570 -) -k1,10388:19810933,26921042:189490 -k1,10388:20809794,26921042:189491 -k1,10388:21355145,26921042:189491 -(1,10388:21355145,26921042:0,452978,122846 -r1,10412:23823682,26921042:2468537,575824,122846 -k1,10388:21355145,26921042:-2468537 -) -(1,10388:21355145,26921042:2468537,452978,122846 -k1,10388:21355145,26921042:3277 -h1,10388:23820405,26921042:0,411205,112570 -) -k1,10388:24013173,26921042:189491 -k1,10388:26180541,26921042:189491 -k1,10388:28710978,26921042:189491 -k1,10388:29919554,26921042:189491 -k1,10388:31923737,26921042:189491 -k1,10389:32583029,26921042:0 -) -(1,10389:6797234,27762530:25785795,505283,126483 -(1,10388:6797234,27762530:0,414482,115847 -r1,10412:8210635,27762530:1413401,530329,115847 -k1,10388:6797234,27762530:-1413401 -) -(1,10388:6797234,27762530:1413401,414482,115847 -k1,10388:6797234,27762530:3277 -h1,10388:8207358,27762530:0,411205,112570 -) -k1,10388:8424867,27762530:214232 -k1,10388:10649745,27762530:214233 -k1,10388:11550139,27762530:214232 -(1,10388:11550139,27762530:0,414482,115847 -r1,10412:12963540,27762530:1413401,530329,115847 -k1,10388:11550139,27762530:-1413401 -) -(1,10388:11550139,27762530:1413401,414482,115847 -k1,10388:11550139,27762530:3277 -h1,10388:12960263,27762530:0,411205,112570 -) -k1,10388:13351443,27762530:214233 -k1,10388:14757120,27762530:214232 -(1,10388:14757120,27762530:0,414482,115847 -r1,10412:16522233,27762530:1765113,530329,115847 -k1,10388:14757120,27762530:-1765113 -) -(1,10388:14757120,27762530:1765113,414482,115847 -k1,10388:14757120,27762530:3277 -h1,10388:16518956,27762530:0,411205,112570 -) -k1,10388:16736465,27762530:214232 -k1,10388:17942258,27762530:214233 -k1,10388:22453030,27762530:214232 -k1,10388:25828063,27762530:214232 -k1,10388:27309762,27762530:214233 -(1,10388:27309762,27762530:0,452978,115847 -r1,10412:29778299,27762530:2468537,568825,115847 -k1,10388:27309762,27762530:-2468537 -) -(1,10388:27309762,27762530:2468537,452978,115847 -k1,10388:27309762,27762530:3277 -h1,10388:29775022,27762530:0,411205,112570 -) -k1,10388:29992531,27762530:214232 -k1,10388:30605223,27762530:214233 -k1,10388:32010900,27762530:214232 -k1,10388:32583029,27762530:0 -) -(1,10389:6797234,28604018:25785795,505283,126483 -g1,10388:10966634,28604018 -g1,10388:12863901,28604018 -(1,10388:12863901,28604018:0,452978,122846 -r1,10412:15332438,28604018:2468537,575824,122846 -k1,10388:12863901,28604018:-2468537 -) -(1,10388:12863901,28604018:2468537,452978,122846 -k1,10388:12863901,28604018:3277 -h1,10388:15329161,28604018:0,411205,112570 -) -g1,10388:15531667,28604018 -g1,10388:17741541,28604018 -g1,10388:18932330,28604018 -g1,10388:20644785,28604018 -g1,10388:21460052,28604018 -g1,10388:24935426,28604018 -k1,10389:32583029,28604018:3703646 -g1,10389:32583029,28604018 -) -] -g1,10389:32583029,28730501 -) -h1,10389:6630773,28730501:0,0,0 -(1,10391:6630773,30821761:25952256,564462,147783 -(1,10391:6630773,30821761:2450326,534184,12975 -g1,10391:6630773,30821761 -g1,10391:9081099,30821761 -) -g1,10391:12662511,30821761 -g1,10391:16328989,30821761 -g1,10391:17279130,30821761 -g1,10391:20622646,30821761 -g1,10391:22189874,30821761 -k1,10391:32583029,30821761:8076195 -g1,10391:32583029,30821761 -) -(1,10393:6630773,32056465:25952256,513147,126483 -k1,10392:7539069,32056465:280461 -k1,10392:8838615,32056465:280461 -k1,10392:10503196,32056465:280461 -k1,10392:13445073,32056465:280460 -k1,10392:14593886,32056465:280461 -k1,10392:15966832,32056465:280461 -(1,10392:15966832,32056465:0,452978,115847 -r1,10412:18435369,32056465:2468537,568825,115847 -k1,10392:15966832,32056465:-2468537 -) -(1,10392:15966832,32056465:2468537,452978,115847 -k1,10392:15966832,32056465:3277 -h1,10392:18432092,32056465:0,411205,112570 -) -k1,10392:18715830,32056465:280461 -k1,10392:20187736,32056465:280461 -(1,10392:20187736,32056465:0,452978,115847 -r1,10412:22304561,32056465:2116825,568825,115847 -k1,10392:20187736,32056465:-2116825 -) -(1,10392:20187736,32056465:2116825,452978,115847 -k1,10392:20187736,32056465:3277 -h1,10392:22301284,32056465:0,411205,112570 -) -k1,10392:22585022,32056465:280461 -k1,10392:23516911,32056465:280461 -k1,10392:26585273,32056465:280460 -k1,10392:27884819,32056465:280461 -k1,10392:29903295,32056465:280461 -k1,10392:31131407,32056465:280461 -k1,10392:32583029,32056465:0 -) -(1,10393:6630773,32897953:25952256,513147,115847 -k1,10392:9260012,32897953:246350 -k1,10392:10165655,32897953:246351 -k1,10392:12499982,32897953:246350 -(1,10392:12499982,32897953:0,452978,115847 -r1,10412:15320231,32897953:2820249,568825,115847 -k1,10392:12499982,32897953:-2820249 -) -(1,10392:12499982,32897953:2820249,452978,115847 -k1,10392:12499982,32897953:3277 -h1,10392:15316954,32897953:0,411205,112570 -) -k1,10392:15740252,32897953:246351 -k1,10392:16614437,32897953:246350 -k1,10392:17275584,32897953:246304 -k1,10392:18541019,32897953:246350 -k1,10392:22462629,32897953:246351 -k1,10392:23368271,32897953:246350 -k1,10392:23970482,32897953:246351 -k1,10392:26477824,32897953:246350 -k1,10392:28258373,32897953:246351 -k1,10392:29696168,32897953:246350 -k1,10392:32583029,32897953:0 -) -(1,10393:6630773,33739441:25952256,513147,134348 -k1,10392:8219365,33739441:201195 -k1,10392:10306032,33739441:201196 -k1,10392:10863087,33739441:201195 -k1,10392:13759779,33739441:201196 -k1,10392:14492471,33739441:201195 -k1,10392:17065415,33739441:201196 -k1,10392:18258170,33739441:201195 -k1,10392:20327142,33739441:201196 -k1,10392:23162229,33739441:201195 -k1,10392:24595502,33739441:201196 -k1,10392:27743196,33739441:201195 -k1,10392:28560430,33739441:201196 -k1,10392:31040312,33739441:201195 -h1,10392:32409359,33739441:0,0,0 -k1,10392:32583029,33739441:0 -) -(1,10393:6630773,34580929:25952256,505283,134348 -k1,10392:7662090,34580929:221947 -k1,10392:9712492,34580929:221948 -h1,10392:10509410,34580929:0,0,0 -k1,10392:10731357,34580929:221947 -k1,10392:12144750,34580929:221948 -h1,10392:12941668,34580929:0,0,0 -k1,10392:13544379,34580929:221947 -k1,10392:14963014,34580929:221948 -k1,10392:18257289,34580929:221947 -k1,10392:20684523,34580929:221947 -k1,10392:21557899,34580929:221948 -k1,10392:25060578,34580929:221947 -(1,10392:25060578,34580929:0,414482,115847 -r1,10412:27177403,34580929:2116825,530329,115847 -k1,10392:25060578,34580929:-2116825 -) -(1,10392:25060578,34580929:2116825,414482,115847 -k1,10392:25060578,34580929:3277 -h1,10392:27174126,34580929:0,411205,112570 -) -k1,10392:27399351,34580929:221948 -k1,10392:31195632,34580929:221947 -k1,10392:32583029,34580929:0 -) -(1,10393:6630773,35422417:25952256,513147,134348 -k1,10392:8726413,35422417:210169 -k1,10392:11191021,35422417:210169 -k1,10392:12420274,35422417:210168 -k1,10392:15325939,35422417:210169 -k1,10392:16668570,35422417:210169 -k1,10392:17626505,35422417:210169 -k1,10392:20382091,35422417:210168 -k1,10392:21070017,35422417:210169 -k1,10392:22299271,35422417:210169 -k1,10392:25204936,35422417:210169 -k1,10392:25946601,35422417:210168 -k1,10392:28528518,35422417:210169 -k1,10392:29390115,35422417:210169 -k1,10392:32583029,35422417:0 -) -(1,10393:6630773,36263905:25952256,513147,134348 -k1,10392:8482550,36263905:143909 -k1,10392:9494811,36263905:143909 -k1,10392:10685986,36263905:143910 -k1,10392:12114401,36263905:143909 -k1,10392:13126662,36263905:143909 -k1,10392:15681641,36263905:143909 -k1,10392:16634920,36263905:143909 -k1,10392:17797914,36263905:143909 -k1,10392:19247957,36263905:143910 -k1,10392:21819975,36263905:143909 -k1,10392:23155329,36263905:143909 -k1,10392:23765199,36263905:143909 -k1,10392:24928193,36263905:143909 -k1,10392:27767598,36263905:143909 -k1,10392:28443005,36263905:143910 -k1,10392:30958662,36263905:143909 -k1,10392:31753999,36263905:143909 -k1,10393:32583029,36263905:0 -) -(1,10393:6630773,37105393:25952256,505283,134348 -k1,10392:9383047,37105393:175398 -k1,10392:12445306,37105393:175398 -k1,10392:14008101,37105393:175398 -k1,10392:15202584,37105393:175398 -k1,10392:17619313,37105393:175398 -k1,10392:20222821,37105393:175399 -k1,10392:22509789,37105393:175398 -k1,10392:23789469,37105393:175398 -k1,10392:25440082,37105393:175398 -k1,10392:27367257,37105393:175398 -k1,10392:31391584,37105393:175398 -k1,10392:32583029,37105393:0 -) -(1,10393:6630773,37946881:25952256,513147,134348 -k1,10392:11035666,37946881:179787 -k1,10392:12865650,37946881:179787 -k1,10392:15803847,37946881:179787 -k1,10392:16611469,37946881:179787 -k1,10392:17810341,37946881:179787 -k1,10392:19357209,37946881:179787 -k1,10392:20196288,37946881:179787 -k1,10392:22355918,37946881:179787 -k1,10392:23929656,37946881:179787 -k1,10392:25759640,37946881:179787 -k1,10392:27381874,37946881:179787 -k1,10392:28734100,37946881:179787 -k1,10392:32583029,37946881:0 -) -(1,10393:6630773,38788369:25952256,513147,134348 -g1,10392:7288099,38788369 -g1,10392:8018825,38788369 -g1,10392:10848014,38788369 -g1,10392:12238688,38788369 -g1,10392:14415138,38788369 -g1,10392:15265795,38788369 -g1,10392:17228598,38788369 -g1,10392:20453624,38788369 -g1,10392:22040250,38788369 -g1,10392:24910726,38788369 -g1,10392:27694695,38788369 -g1,10392:28506686,38788369 -k1,10393:32583029,38788369:2412384 -g1,10393:32583029,38788369 -) -v1,10395:6630773,39944429:0,393216,0 -(1,10396:6630773,42174472:25952256,2623259,0 -g1,10396:6630773,42174472 -g1,10396:6303093,42174472 -r1,10412:6401397,42174472:98304,2623259,0 -g1,10396:6600626,42174472 -g1,10396:6797234,42174472 -[1,10396:6797234,42174472:25785795,2623259,0 -(1,10396:6797234,40365013:25785795,813800,267386 -(1,10395:6797234,40365013:0,813800,267386 -r1,10412:8134168,40365013:1336934,1081186,267386 -k1,10395:6797234,40365013:-1336934 -) -(1,10395:6797234,40365013:1336934,813800,267386 -) -k1,10395:8363852,40365013:229684 -k1,10395:8691532,40365013:327680 -k1,10395:9408773,40365013:229653 -k1,10395:12885766,40365013:229684 -k1,10395:13924819,40365013:229683 -k1,10395:15173588,40365013:229684 -k1,10395:18098768,40365013:229684 -k1,10395:18979879,40365013:229683 -k1,10395:19957329,40365013:229684 -k1,10395:22558761,40365013:229684 -k1,10395:23319941,40365013:229683 -k1,10395:24834131,40365013:229684 -k1,10395:26082900,40365013:229684 -k1,10395:28290461,40365013:229684 -k1,10395:29203029,40365013:229683 -k1,10395:31450567,40365013:229684 -k1,10395:32583029,40365013:0 -) -(1,10396:6797234,41206501:25785795,513147,134348 -k1,10395:9184156,41206501:257657 -k1,10395:10189579,41206501:257657 -k1,10395:12652524,41206501:257658 -k1,10395:13596343,41206501:257657 -k1,10395:14209860,41206501:257657 -k1,10395:17642736,41206501:257657 -k1,10395:20972722,41206501:257658 -k1,10395:21881807,41206501:257657 -k1,10395:23158549,41206501:257657 -k1,10395:24722339,41206501:257657 -k1,10395:27108606,41206501:257658 -k1,10395:30646995,41206501:257657 -k1,10395:31563944,41206501:257657 -k1,10395:32583029,41206501:0 -) -(1,10396:6797234,42047989:25785795,513147,126483 -g1,10395:9368211,42047989 -k1,10396:32583029,42047989:20345652 -g1,10396:32583029,42047989 -) -] -g1,10396:32583029,42174472 -) -h1,10396:6630773,42174472:0,0,0 -v1,10399:6630773,43469794:0,393216,0 -(1,10408:6630773,45510161:25952256,2433583,196608 -g1,10408:6630773,45510161 -g1,10408:6630773,45510161 -g1,10408:6434165,45510161 -(1,10408:6434165,45510161:0,2433583,196608 -r1,10412:32779637,45510161:26345472,2630191,196608 -k1,10408:6434165,45510161:-26345472 -) -(1,10408:6434165,45510161:26345472,2433583,196608 -[1,10408:6630773,45510161:25952256,2236975,0 -(1,10401:6630773,43683704:25952256,410518,82312 -(1,10400:6630773,43683704:0,0,0 -g1,10400:6630773,43683704 -g1,10400:6630773,43683704 -g1,10400:6303093,43683704 -(1,10400:6303093,43683704:0,0,0 -) -g1,10400:6630773,43683704 -) -g1,10401:9476084,43683704 -g1,10401:10424522,43683704 -g1,10401:16431291,43683704 -g1,10401:18012020,43683704 -g1,10401:18644312,43683704 -h1,10401:19592749,43683704:0,0,0 -k1,10401:32583029,43683704:12990280 -g1,10401:32583029,43683704 -) -(1,10402:6630773,44349882:25952256,404226,101187 -h1,10402:6630773,44349882:0,0,0 -g1,10402:7263065,44349882 -g1,10402:8211503,44349882 -g1,10402:13269834,44349882 -g1,10402:15482854,44349882 -g1,10402:16115146,44349882 -g1,10402:17063584,44349882 -g1,10402:18328167,44349882 -g1,10402:18960459,44349882 -h1,10402:20541187,44349882:0,0,0 -k1,10402:32583029,44349882:12041842 -g1,10402:32583029,44349882 -) -(1,10403:6630773,45016060:25952256,404226,76021 -h1,10403:6630773,45016060:0,0,0 -k1,10403:6630773,45016060:0 -h1,10403:8527647,45016060:0,0,0 -k1,10403:32583029,45016060:24055382 -g1,10403:32583029,45016060 -) -(1,10407:6630773,45434140:25952256,404226,76021 -(1,10405:6630773,45434140:0,0,0 -g1,10405:6630773,45434140 -g1,10405:6630773,45434140 -g1,10405:6303093,45434140 -(1,10405:6303093,45434140:0,0,0 -) -g1,10405:6630773,45434140 -) -g1,10407:7579210,45434140 -g1,10407:7895356,45434140 -g1,10407:9159939,45434140 -g1,10407:11372959,45434140 -g1,10407:13269833,45434140 -g1,10407:15166707,45434140 -g1,10407:17063581,45434140 -g1,10407:18328164,45434140 -g1,10407:20225038,45434140 -h1,10407:21173475,45434140:0,0,0 -k1,10407:32583029,45434140:11409554 -g1,10407:32583029,45434140 -) -] -) -g1,10408:32583029,45510161 -g1,10408:6630773,45510161 -g1,10408:6630773,45510161 -g1,10408:32583029,45510161 -g1,10408:32583029,45510161 -) -h1,10408:6630773,45706769:0,0,0 -] -(1,10412:32583029,45706769:0,0,0 -g1,10412:32583029,45706769 -) -) -] -(1,10412:6630773,47279633:25952256,0,0 -h1,10412:6630773,47279633:25952256,0,0 -) -] -(1,10412:4262630,4025873:0,0,0 -[1,10412:-473656,4025873:0,0,0 -(1,10412:-473656,-710413:0,0,0 -(1,10412:-473656,-710413:0,0,0 -g1,10412:-473656,-710413 -) -g1,10412:-473656,-710413 -) -] -) -] -!31232 -}174 -Input:1563:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1564:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1565:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1566:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1567:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1568:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1569:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1570:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1571:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1572:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1573:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1046 -{175 -[1,10492:4262630,47279633:28320399,43253760,0 -(1,10492:4262630,4025873:0,0,0 -[1,10492:-473656,4025873:0,0,0 -(1,10492:-473656,-710413:0,0,0 -(1,10492:-473656,-644877:0,0,0 -k1,10492:-473656,-644877:-65536 +g1,9455:14288673,14524889 +) +) +g1,9455:13698849,14524889 +g1,9455:13698849,14524889 +) +) +g1,9455:13698849,14524889 +g1,9456:13698849,14524889 +g1,9456:13698849,14524889 +g1,9456:13698849,14524889 +g1,9456:13698849,14524889 +g1,9457:13698849,14524889 +g1,9457:13698849,14524889 +(1,9457:13698849,14524889:0,0,0 +(1,9457:13698849,14524889:0,0,0 +g1,9457:13698849,14524889 +g1,9457:13698849,14524889 +g1,9457:13698849,14524889 +g1,9457:13698849,14524889 +g1,9457:13698849,14524889 +(1,9457:13698849,14524889:0,0,0 +(1,9457:13698849,14524889:2855420,408008,104590 +(1,9457:13698849,14524889:2855420,408008,104590 +(1,9457:13698849,14524889:0,408008,104590 +r1,9475:16554269,14524889:2855420,512598,104590 +k1,9457:13698849,14524889:-2855420 +) +(1,9457:13698849,14524889:2855420,408008,104590 +g1,9457:15917911,14524889 +h1,9457:16550992,14524889:0,370085,101313 +) +) +g1,9457:16554269,14524889 +) +) +g1,9457:13698849,14524889 +g1,9457:13698849,14524889 +) +) +g1,9457:13698849,14524889 +g1,9458:13698849,14524889 +g1,9458:13698849,14524889 +(1,9458:13698849,14524889:0,0,0 +(1,9458:13698849,14524889:0,0,0 +g1,9458:13698849,14524889 +g1,9458:13698849,14524889 +g1,9458:13698849,14524889 +g1,9458:13698849,14524889 +g1,9458:13698849,14524889 +(1,9458:13698849,14524889:0,0,0 +(1,9458:13698849,14524889:2855420,408008,104590 +(1,9458:13698849,14524889:2855420,408008,104590 +(1,9458:13698849,14524889:0,408008,104590 +r1,9475:16554269,14524889:2855420,512598,104590 +k1,9458:13698849,14524889:-2855420 +) +(1,9458:13698849,14524889:2855420,408008,104590 +g1,9458:15917911,14524889 +h1,9458:16550992,14524889:0,370085,101313 +) +) +g1,9458:16554269,14524889 +) +) +g1,9458:13698849,14524889 +g1,9458:13698849,14524889 +) +) +g1,9458:13698849,14524889 +g1,9459:13698849,14524889 +g1,9459:13698849,14524889 +(1,9459:13698849,14524889:0,0,0 +(1,9459:13698849,14524889:0,0,0 +g1,9459:13698849,14524889 +g1,9459:13698849,14524889 +g1,9459:13698849,14524889 +g1,9459:13698849,14524889 +g1,9459:13698849,14524889 +(1,9459:13698849,14524889:0,0,0 +(1,9459:13698849,14524889:2855420,408008,104590 +(1,9459:13698849,14524889:2855420,408008,104590 +(1,9459:13698849,14524889:0,408008,104590 +r1,9475:16554269,14524889:2855420,512598,104590 +k1,9459:13698849,14524889:-2855420 +) +(1,9459:13698849,14524889:2855420,408008,104590 +g1,9459:15917911,14524889 +h1,9459:16550992,14524889:0,370085,101313 +) +) +g1,9459:16554269,14524889 +) +) +g1,9459:13698849,14524889 +g1,9459:13698849,14524889 +) +) +g1,9459:13698849,14524889 +g1,9460:13698849,14524889 +g1,9460:13698849,14524889 +(1,9460:13698849,14524889:0,0,0 +(1,9460:13698849,14524889:0,0,0 +g1,9460:13698849,14524889 +g1,9460:13698849,14524889 +g1,9460:13698849,14524889 +g1,9460:13698849,14524889 +g1,9460:13698849,14524889 +(1,9460:13698849,14524889:0,0,0 +(1,9460:13698849,14524889:2855420,414307,104590 +(1,9460:13698849,14524889:2855420,414307,104590 +(1,9460:13698849,14524889:0,414307,104590 +r1,9475:16554269,14524889:2855420,518897,104590 +k1,9460:13698849,14524889:-2855420 +) +(1,9460:13698849,14524889:2855420,414307,104590 +k1,9460:13698849,14524889:3277 +h1,9460:16550992,14524889:0,370085,101313 +) +) +g1,9460:16554269,14524889 +) +) +g1,9460:13698849,14524889 +g1,9460:13698849,14524889 +) +) +g1,9460:13698849,14524889 +g1,9461:13698849,14524889 +g1,9461:13698849,14524889 +g1,9461:13698849,14524889 +g1,9461:13698849,14524889 +g1,9461:13698849,14524889 +g1,9462:13698849,14524889 +g1,9462:13698849,14524889 +g1,9462:13698849,14524889 +g1,9462:13698849,14524889 +g1,9462:13698849,14524889 +g1,9463:13698849,14524889 +g1,9463:13698849,14524889 +g1,9463:13698849,14524889 +g1,9463:13698849,14524889 +g1,9463:13698849,14524889 +g1,9464:13698849,14524889 +g1,9464:13698849,14524889 +g1,9464:13698849,14524889 +g1,9464:13698849,14524889 +g1,9464:13698849,14524889 +g1,9465:13698849,14524889 +g1,9465:13698849,14524889 +g1,9465:13698849,14524889 +g1,9465:13698849,14524889 +g1,9465:13698849,14524889 +g1,9465:13698849,14524889 +g1,9466:13698849,14524889 +g1,9466:13698849,14524889 +) +g1,9466:13698849,14524889 +) +) +g1,9468:29002323,35795328 +k1,9468:32583029,35795328:3580706 +) +(1,9471:6630773,37315768:25952256,505283,126483 +h1,9470:6630773,37315768:983040,0,0 +k1,9470:9018803,37315768:208303 +(1,9470:9018803,37315768:0,459977,115847 +r1,9475:12190764,37315768:3171961,575824,115847 +k1,9470:9018803,37315768:-3171961 +) +(1,9470:9018803,37315768:3171961,459977,115847 +g1,9470:10077216,37315768 +g1,9470:10780640,37315768 +h1,9470:12187487,37315768:0,411205,112570 +) +k1,9470:12399067,37315768:208303 +k1,9470:15631201,37315768:208303 +k1,9470:18696218,37315768:208303 +k1,9470:20076959,37315768:208302 +k1,9470:24002464,37315768:208303 +k1,9470:26740457,37315768:208303 +k1,9470:27967845,37315768:208303 +(1,9470:27967845,37315768:0,452978,115847 +r1,9475:31843229,37315768:3875384,568825,115847 +k1,9470:27967845,37315768:-3875384 +) +(1,9470:27967845,37315768:3875384,452978,115847 +k1,9470:27967845,37315768:3277 +h1,9470:31839952,37315768:0,411205,112570 +) +k1,9470:32051532,37315768:208303 +k1,9471:32583029,37315768:0 +) +(1,9471:6630773,38180848:25952256,505283,126483 +(1,9470:6630773,38180848:0,452978,122846 +r1,9475:9099310,38180848:2468537,575824,122846 +k1,9470:6630773,38180848:-2468537 +) +(1,9470:6630773,38180848:2468537,452978,122846 +k1,9470:6630773,38180848:3277 +h1,9470:9096033,38180848:0,411205,112570 +) +k1,9470:9467798,38180848:194818 +k1,9470:11056567,38180848:194818 +k1,9470:12626985,38180848:194817 +k1,9470:13994242,38180848:194818 +k1,9470:16819020,38180848:194818 +k1,9470:19198153,38180848:194818 +k1,9470:20020806,38180848:194818 +k1,9470:22278697,38180848:194818 +k1,9470:23492599,38180848:194817 +(1,9470:23492599,38180848:0,452978,115847 +r1,9475:26312848,38180848:2820249,568825,115847 +k1,9470:23492599,38180848:-2820249 +) +(1,9470:23492599,38180848:2820249,452978,115847 +k1,9470:23492599,38180848:3277 +h1,9470:26309571,38180848:0,411205,112570 +) +k1,9470:26507666,38180848:194818 +k1,9470:29726315,38180848:194818 +k1,9470:32583029,38180848:0 +) +(1,9471:6630773,39045928:25952256,505283,126483 +k1,9470:8752120,39045928:148713 +k1,9470:11982992,39045928:148714 +k1,9470:15848907,39045928:148713 +k1,9470:16683783,39045928:148714 +k1,9470:17851581,39045928:148713 +(1,9470:17851581,39045928:0,452978,115847 +r1,9475:21726965,39045928:3875384,568825,115847 +k1,9470:17851581,39045928:-3875384 +) +(1,9470:17851581,39045928:3875384,452978,115847 +k1,9470:17851581,39045928:3277 +h1,9470:21723688,39045928:0,411205,112570 +) +k1,9470:21875679,39045928:148714 +k1,9470:23128674,39045928:148713 +k1,9470:24025154,39045928:148714 +k1,9470:26029847,39045928:148713 +k1,9470:26949264,39045928:148714 +(1,9470:26949264,39045928:0,452978,122846 +r1,9475:29417801,39045928:2468537,575824,122846 +k1,9470:26949264,39045928:-2468537 +) +(1,9470:26949264,39045928:2468537,452978,122846 +k1,9470:26949264,39045928:3277 +h1,9470:29414524,39045928:0,411205,112570 +) +k1,9470:29566514,39045928:148713 +k1,9470:31395570,39045928:148713 +k1,9470:32227169,39045928:148714 +k1,9471:32583029,39045928:0 +) +(1,9471:6630773,39911008:25952256,513147,134348 +(1,9470:6630773,39911008:0,452978,115847 +r1,9475:9802733,39911008:3171960,568825,115847 +k1,9470:6630773,39911008:-3171960 +) +(1,9470:6630773,39911008:3171960,452978,115847 +k1,9470:6630773,39911008:3277 +h1,9470:9799456,39911008:0,411205,112570 +) +k1,9470:9956443,39911008:153710 +k1,9470:11964167,39911008:153710 +k1,9470:12745712,39911008:153710 +k1,9470:15436976,39911008:153710 +k1,9470:18571263,39911008:153710 +k1,9470:20375171,39911008:153711 +k1,9470:21971328,39911008:153710 +k1,9470:22480898,39911008:153710 +k1,9470:25125631,39911008:153710 +k1,9470:25938633,39911008:153710 +k1,9470:29809545,39911008:153710 +k1,9470:32583029,39911008:0 +) +(1,9471:6630773,40776088:25952256,505283,134348 +k1,9470:11116392,40776088:215293 +k1,9470:11801578,40776088:215293 +k1,9470:12548368,40776088:215293 +k1,9470:14347665,40776088:215292 +k1,9470:16063732,40776088:215293 +k1,9470:17345296,40776088:215293 +k1,9470:18212017,40776088:215293 +k1,9470:19519795,40776088:215293 +(1,9470:19519795,40776088:0,452978,115847 +r1,9475:22340044,40776088:2820249,568825,115847 +k1,9470:19519795,40776088:-2820249 +) +(1,9470:19519795,40776088:2820249,452978,115847 +k1,9470:19519795,40776088:3277 +h1,9470:22336767,40776088:0,411205,112570 +) +k1,9470:22555337,40776088:215293 +k1,9470:24468667,40776088:215292 +k1,9470:25703045,40776088:215293 +k1,9470:29111252,40776088:215293 +k1,9470:30822732,40776088:215293 +k1,9471:32583029,40776088:0 +) +(1,9471:6630773,41641168:25952256,505283,126483 +k1,9470:8791946,41641168:191816 +k1,9470:9975323,41641168:191817 +k1,9470:13027130,41641168:191816 +(1,9470:13027130,41641168:0,452978,115847 +r1,9475:15847379,41641168:2820249,568825,115847 +k1,9470:13027130,41641168:-2820249 +) +(1,9470:13027130,41641168:2820249,452978,115847 +k1,9470:13027130,41641168:3277 +h1,9470:15844102,41641168:0,411205,112570 +) +k1,9470:16039196,41641168:191817 +k1,9470:16762509,41641168:191816 +k1,9470:19122257,41641168:191817 +k1,9470:19669933,41641168:191816 +k1,9470:23768350,41641168:191816 +k1,9470:24646329,41641168:191817 +k1,9470:25296242,41641168:191816 +k1,9470:27500014,41641168:191817 +k1,9470:28436974,41641168:191816 +k1,9470:29280219,41641168:191817 +k1,9470:31086842,41641168:191816 +k1,9470:32583029,41641168:0 +) +(1,9471:6630773,42506248:25952256,505283,134348 +k1,9470:8123970,42506248:208691 +k1,9470:8864158,42506248:208691 +k1,9470:10723046,42506248:208691 +k1,9470:13287101,42506248:208691 +k1,9470:14938238,42506248:208690 +k1,9470:16844967,42506248:208691 +k1,9470:18789051,42506248:208691 +k1,9470:20749519,42506248:208691 +k1,9470:25190525,42506248:208691 +(1,9470:25190525,42506248:0,459977,115847 +r1,9475:32583029,42506248:7392504,575824,115847 +k1,9470:25190525,42506248:-7392504 +) +(1,9470:25190525,42506248:7392504,459977,115847 +g1,9470:26248938,42506248 +g1,9470:26952362,42506248 +g1,9470:28710921,42506248 +g1,9470:29766057,42506248 +g1,9470:30469481,42506248 +g1,9470:32228040,42506248 +h1,9470:32579752,42506248:0,411205,112570 +) +k1,9470:32583029,42506248:0 +) +(1,9471:6630773,43371328:25952256,426639,7863 +k1,9471:32583028,43371328:22424452 +g1,9471:32583028,43371328 +) +(1,9473:6630773,44236408:25952256,513147,126483 +h1,9472:6630773,44236408:983040,0,0 +k1,9472:8454172,44236408:212524 +k1,9472:9685781,44236408:212524 +k1,9472:11204438,44236408:212524 +k1,9472:14078378,44236408:212523 +k1,9472:15159254,44236408:212524 +k1,9472:16464263,44236408:212524 +k1,9472:19651466,44236408:212524 +k1,9472:22952046,44236408:212524 +k1,9472:24975985,44236408:212524 +k1,9472:25804547,44236408:212524 +k1,9472:26372930,44236408:212523 +k1,9472:29096794,44236408:212524 +k1,9472:29995480,44236408:212524 +k1,9472:31227089,44236408:212524 +k1,9473:32583029,44236408:0 +) +(1,9473:6630773,45101488:25952256,513147,134348 +k1,9472:8953415,45101488:259569 +k1,9472:10606935,45101488:259569 +k1,9472:11885590,45101488:259570 +k1,9472:13293350,45101488:259569 +k1,9472:16739279,45101488:259569 +k1,9472:18392799,45101488:259569 +k1,9472:19461739,45101488:259570 +k1,9472:20708280,45101488:259569 +k1,9472:22705864,45101488:259569 +k1,9472:23984518,45101488:259569 +k1,9472:26509667,45101488:259569 +k1,9472:28282463,45101488:259570 +k1,9472:29489683,45101488:259569 +k1,9472:30881059,45101488:259569 +k1,9472:32583029,45101488:0 +) +] +(1,9475:32583029,45706769:0,0,0 +g1,9475:32583029,45706769 +) +) +] +(1,9475:6630773,47279633:25952256,0,0 +h1,9475:6630773,47279633:25952256,0,0 +) +] +(1,9475:4262630,4025873:0,0,0 +[1,9475:-473656,4025873:0,0,0 +(1,9475:-473656,-710413:0,0,0 +(1,9475:-473656,-710413:0,0,0 +g1,9475:-473656,-710413 +) +g1,9475:-473656,-710413 +) +] +) +] +!24780 +}151 +Input:1331:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1332:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1333:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1334:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1335:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1336:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1337:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1338:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1339:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1340:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1341:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1342:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1343:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1344:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1345:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1346:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1516 +{152 +[1,9565:4262630,47279633:28320399,43253760,0 +(1,9565:4262630,4025873:0,0,0 +[1,9565:-473656,4025873:0,0,0 +(1,9565:-473656,-710413:0,0,0 +(1,9565:-473656,-644877:0,0,0 +k1,9565:-473656,-644877:-65536 ) -(1,10492:-473656,4736287:0,0,0 -k1,10492:-473656,4736287:5209943 +(1,9565:-473656,4736287:0,0,0 +k1,9565:-473656,4736287:5209943 ) -g1,10492:-473656,-710413 +g1,9565:-473656,-710413 ) ] ) -[1,10492:6630773,47279633:25952256,43253760,0 -[1,10492:6630773,4812305:25952256,786432,0 -(1,10492:6630773,4812305:25952256,505283,134348 -(1,10492:6630773,4812305:25952256,505283,134348 -g1,10492:3078558,4812305 -[1,10492:3078558,4812305:0,0,0 -(1,10492:3078558,2439708:0,1703936,0 -k1,10492:1358238,2439708:-1720320 -(1,8393:1358238,2439708:1720320,1703936,0 -(1,8393:1358238,2439708:1179648,16384,0 -r1,10492:2537886,2439708:1179648,16384,0 +[1,9565:6630773,47279633:25952256,43253760,0 +[1,9565:6630773,4812305:25952256,786432,0 +(1,9565:6630773,4812305:25952256,505283,11795 +(1,9565:6630773,4812305:25952256,505283,11795 +g1,9565:3078558,4812305 +[1,9565:3078558,4812305:0,0,0 +(1,9565:3078558,2439708:0,1703936,0 +k1,9565:1358238,2439708:-1720320 +(1,8606:1358238,2439708:1720320,1703936,0 +(1,8606:1358238,2439708:1179648,16384,0 +r1,9565:2537886,2439708:1179648,16384,0 ) -g1,8393:3062174,2439708 -(1,8393:3062174,2439708:16384,1703936,0 -[1,8393:3062174,2439708:25952256,1703936,0 -(1,8393:3062174,1915420:25952256,1179648,0 -(1,8393:3062174,1915420:16384,1179648,0 -r1,10492:3078558,1915420:16384,1179648,0 +g1,8606:3062174,2439708 +(1,8606:3062174,2439708:16384,1703936,0 +[1,8606:3062174,2439708:25952256,1703936,0 +(1,8606:3062174,1915420:25952256,1179648,0 +(1,8606:3062174,1915420:16384,1179648,0 +r1,9565:3078558,1915420:16384,1179648,0 ) -k1,8393:29014430,1915420:25935872 -g1,8393:29014430,1915420 +k1,8606:29014430,1915420:25935872 +g1,8606:29014430,1915420 ) ] ) ) ) ] -[1,10492:3078558,4812305:0,0,0 -(1,10492:3078558,2439708:0,1703936,0 -g1,10492:29030814,2439708 -g1,10492:36135244,2439708 -(1,8393:36135244,2439708:1720320,1703936,0 -(1,8393:36135244,2439708:16384,1703936,0 -[1,8393:36135244,2439708:25952256,1703936,0 -(1,8393:36135244,1915420:25952256,1179648,0 -(1,8393:36135244,1915420:16384,1179648,0 -r1,10492:36151628,1915420:16384,1179648,0 +[1,9565:3078558,4812305:0,0,0 +(1,9565:3078558,2439708:0,1703936,0 +g1,9565:29030814,2439708 +g1,9565:36135244,2439708 +(1,8606:36135244,2439708:1720320,1703936,0 +(1,8606:36135244,2439708:16384,1703936,0 +[1,8606:36135244,2439708:25952256,1703936,0 +(1,8606:36135244,1915420:25952256,1179648,0 +(1,8606:36135244,1915420:16384,1179648,0 +r1,9565:36151628,1915420:16384,1179648,0 ) -k1,8393:62087500,1915420:25935872 -g1,8393:62087500,1915420 +k1,8606:62087500,1915420:25935872 +g1,8606:62087500,1915420 ) ] ) -g1,8393:36675916,2439708 -(1,8393:36675916,2439708:1179648,16384,0 -r1,10492:37855564,2439708:1179648,16384,0 +g1,8606:36675916,2439708 +(1,8606:36675916,2439708:1179648,16384,0 +r1,9565:37855564,2439708:1179648,16384,0 ) ) -k1,10492:3078556,2439708:-34777008 +k1,9565:3078556,2439708:-34777008 ) ] -[1,10492:3078558,4812305:0,0,0 -(1,10492:3078558,49800853:0,16384,2228224 -k1,10492:1358238,49800853:-1720320 -(1,8393:1358238,49800853:1720320,16384,2228224 -(1,8393:1358238,49800853:1179648,16384,0 -r1,10492:2537886,49800853:1179648,16384,0 +[1,9565:3078558,4812305:0,0,0 +(1,9565:3078558,49800853:0,16384,2228224 +k1,9565:1358238,49800853:-1720320 +(1,8606:1358238,49800853:1720320,16384,2228224 +(1,8606:1358238,49800853:1179648,16384,0 +r1,9565:2537886,49800853:1179648,16384,0 ) -g1,8393:3062174,49800853 -(1,8393:3062174,52029077:16384,1703936,0 -[1,8393:3062174,52029077:25952256,1703936,0 -(1,8393:3062174,51504789:25952256,1179648,0 -(1,8393:3062174,51504789:16384,1179648,0 -r1,10492:3078558,51504789:16384,1179648,0 +g1,8606:3062174,49800853 +(1,8606:3062174,52029077:16384,1703936,0 +[1,8606:3062174,52029077:25952256,1703936,0 +(1,8606:3062174,51504789:25952256,1179648,0 +(1,8606:3062174,51504789:16384,1179648,0 +r1,9565:3078558,51504789:16384,1179648,0 ) -k1,8393:29014430,51504789:25935872 -g1,8393:29014430,51504789 +k1,8606:29014430,51504789:25935872 +g1,8606:29014430,51504789 ) ] ) ) ) ] -[1,10492:3078558,4812305:0,0,0 -(1,10492:3078558,49800853:0,16384,2228224 -g1,10492:29030814,49800853 -g1,10492:36135244,49800853 -(1,8393:36135244,49800853:1720320,16384,2228224 -(1,8393:36135244,52029077:16384,1703936,0 -[1,8393:36135244,52029077:25952256,1703936,0 -(1,8393:36135244,51504789:25952256,1179648,0 -(1,8393:36135244,51504789:16384,1179648,0 -r1,10492:36151628,51504789:16384,1179648,0 +[1,9565:3078558,4812305:0,0,0 +(1,9565:3078558,49800853:0,16384,2228224 +g1,9565:29030814,49800853 +g1,9565:36135244,49800853 +(1,8606:36135244,49800853:1720320,16384,2228224 +(1,8606:36135244,52029077:16384,1703936,0 +[1,8606:36135244,52029077:25952256,1703936,0 +(1,8606:36135244,51504789:25952256,1179648,0 +(1,8606:36135244,51504789:16384,1179648,0 +r1,9565:36151628,51504789:16384,1179648,0 ) -k1,8393:62087500,51504789:25935872 -g1,8393:62087500,51504789 +k1,8606:62087500,51504789:25935872 +g1,8606:62087500,51504789 ) ] ) -g1,8393:36675916,49800853 -(1,8393:36675916,49800853:1179648,16384,0 -r1,10492:37855564,49800853:1179648,16384,0 +g1,8606:36675916,49800853 +(1,8606:36675916,49800853:1179648,16384,0 +r1,9565:37855564,49800853:1179648,16384,0 ) ) -k1,10492:3078556,49800853:-34777008 +k1,9565:3078556,49800853:-34777008 ) ] -g1,10492:6630773,4812305 -k1,10492:21643106,4812305:13816956 -g1,10492:23265777,4812305 -g1,10492:24088253,4812305 -g1,10492:28572226,4812305 -g1,10492:29981905,4812305 -) -) -] -[1,10492:6630773,45706769:25952256,40108032,0 -(1,10492:6630773,45706769:25952256,40108032,0 -(1,10492:6630773,45706769:0,0,0 -g1,10492:6630773,45706769 -) -[1,10492:6630773,45706769:25952256,40108032,0 -v1,10412:6630773,6254097:0,393216,0 -(1,10413:6630773,7535986:25952256,1675105,0 -g1,10413:6630773,7535986 -g1,10413:6303093,7535986 -r1,10492:6401397,7535986:98304,1675105,0 -g1,10413:6600626,7535986 -g1,10413:6797234,7535986 -[1,10413:6797234,7535986:25785795,1675105,0 -(1,10413:6797234,6686635:25785795,825754,196608 -(1,10412:6797234,6686635:0,825754,196608 -r1,10492:7890375,6686635:1093141,1022362,196608 -k1,10412:6797234,6686635:-1093141 -) -(1,10412:6797234,6686635:1093141,825754,196608 -) -k1,10412:8172071,6686635:281696 -k1,10412:9898289,6686635:327680 -k1,10412:12385926,6686635:281695 -k1,10412:13686707,6686635:281696 -k1,10412:16629819,6686635:281695 -k1,10412:18766839,6686635:281696 -k1,10412:19773363,6686635:281696 -k1,10412:21339564,6686635:281695 -k1,10412:22079357,6686635:281696 -k1,10412:25479255,6686635:281695 -k1,10412:26964847,6686635:281696 -k1,10412:29314858,6686635:281695 -k1,10412:31923737,6686635:281696 -k1,10412:32583029,6686635:0 -) -(1,10413:6797234,7528123:25785795,505283,7863 -g1,10412:9379352,7528123 -k1,10413:32583029,7528123:20961690 -g1,10413:32583029,7528123 -) -] -g1,10413:32583029,7535986 -) -h1,10413:6630773,7535986:0,0,0 -v1,10416:6630773,8898255:0,393216,0 -(1,10417:6630773,11989605:25952256,3484566,0 -g1,10417:6630773,11989605 -g1,10417:6303093,11989605 -r1,10492:6401397,11989605:98304,3484566,0 -g1,10417:6600626,11989605 -g1,10417:6797234,11989605 -[1,10417:6797234,11989605:25785795,3484566,0 -(1,10417:6797234,9330793:25785795,825754,196608 -(1,10416:6797234,9330793:0,825754,196608 -r1,10492:7890375,9330793:1093141,1022362,196608 -k1,10416:6797234,9330793:-1093141 -) -(1,10416:6797234,9330793:1093141,825754,196608 -) -k1,10416:8057973,9330793:167598 -k1,10416:9784191,9330793:327680 -k1,10416:11498440,9330793:167599 -k1,10416:12501622,9330793:167598 -k1,10416:13688306,9330793:167599 -k1,10416:15243957,9330793:167598 -k1,10416:17240010,9330793:167599 -k1,10416:18355259,9330793:167598 -(1,10416:18355259,9330793:0,452978,115847 -r1,10492:20823796,9330793:2468537,568825,115847 -k1,10416:18355259,9330793:-2468537 -) -(1,10416:18355259,9330793:2468537,452978,115847 -k1,10416:18355259,9330793:3277 -h1,10416:20820519,9330793:0,411205,112570 -) -k1,10416:20991395,9330793:167599 -k1,10416:22350438,9330793:167598 -(1,10416:22350438,9330793:0,452978,115847 -r1,10492:24467263,9330793:2116825,568825,115847 -k1,10416:22350438,9330793:-2116825 -) -(1,10416:22350438,9330793:2116825,452978,115847 -k1,10416:22350438,9330793:3277 -h1,10416:24463986,9330793:0,411205,112570 -) -k1,10416:24634862,9330793:167599 -k1,10416:25993905,9330793:167598 -k1,10416:27945394,9330793:167599 -k1,10416:29752047,9330793:167598 -k1,10416:31412556,9330793:167599 -k1,10416:32583029,9330793:0 -) -(1,10417:6797234,10172281:25785795,513147,134348 -k1,10416:10640741,10172281:178734 -k1,10416:12149857,10172281:178735 -k1,10416:15555584,10172281:178734 -k1,10416:19136947,10172281:178734 -k1,10416:20419964,10172281:178735 -k1,10416:21346464,10172281:178734 -k1,10416:23730486,10172281:178735 -k1,10416:24560648,10172281:178734 -k1,10416:25758467,10172281:178734 -k1,10416:28308950,10172281:178735 -k1,10416:31356850,10172281:178734 -k1,10416:32583029,10172281:0 -) -(1,10417:6797234,11013769:25785795,513147,134348 -k1,10416:8135496,11013769:167789 -k1,10416:10100282,11013769:167789 -k1,10416:11565030,11013769:167790 -(1,10416:11565030,11013769:0,452978,115847 -r1,10492:14033567,11013769:2468537,568825,115847 -k1,10416:11565030,11013769:-2468537 -) -(1,10416:11565030,11013769:2468537,452978,115847 -k1,10416:11565030,11013769:3277 -h1,10416:14030290,11013769:0,411205,112570 -) -k1,10416:14201356,11013769:167789 -k1,10416:15576318,11013769:167789 -k1,10416:18600821,11013769:167789 -k1,10416:19420039,11013769:167790 -k1,10416:21063043,11013769:167789 -k1,10416:24511564,11013769:167789 -k1,10416:26747669,11013769:167789 -k1,10416:28366426,11013769:167790 -k1,10416:29150253,11013769:167789 -k1,10416:32583029,11013769:0 -) -(1,10417:6797234,11855257:25785795,513147,134348 -g1,10416:10350596,11855257 -g1,10416:11903799,11855257 -g1,10416:14653689,11855257 -g1,10416:15800569,11855257 -g1,10416:16414641,11855257 -g1,10416:18110057,11855257 -k1,10417:32583029,11855257:12645173 -g1,10417:32583029,11855257 -) -] -g1,10417:32583029,11989605 -) -h1,10417:6630773,11989605:0,0,0 -(1,10420:6630773,13351875:25952256,513147,134348 -h1,10419:6630773,13351875:983040,0,0 -k1,10419:8387880,13351875:296310 -k1,10419:9552542,13351875:296310 -k1,10419:11612426,13351875:296310 -k1,10419:12264597,13351875:296311 -k1,10419:15256403,13351875:296310 -k1,10419:16837219,13351875:296310 -k1,10419:19474475,13351875:296310 -k1,10419:20126645,13351875:296310 -k1,10419:22103298,13351875:296310 -k1,10419:23058900,13351875:296310 -k1,10419:24374296,13351875:296311 -k1,10419:26324079,13351875:296310 -k1,10419:28633655,13351875:296310 -k1,10419:29616127,13351875:296310 -k1,10419:30700835,13351875:296310 -k1,10419:32583029,13351875:0 -) -(1,10420:6630773,14193363:25952256,513147,126483 -k1,10419:8259007,14193363:194306 -k1,10419:9472398,14193363:194306 -k1,10419:13341963,14193363:194306 -k1,10419:14195561,14193363:194306 -k1,10419:15408952,14193363:194306 -k1,10419:17283601,14193363:194306 -k1,10419:20256634,14193363:194306 -k1,10419:21212467,14193363:194305 -(1,10419:21212467,14193363:0,452978,115847 -r1,10492:23681004,14193363:2468537,568825,115847 -k1,10419:21212467,14193363:-2468537 -) -(1,10419:21212467,14193363:2468537,452978,115847 -k1,10419:21212467,14193363:3277 -h1,10419:23677727,14193363:0,411205,112570 -) -k1,10419:23875310,14193363:194306 -k1,10419:25061176,14193363:194306 -k1,10419:26274567,14193363:194306 -k1,10419:28122346,14193363:194306 -k1,10419:29002814,14193363:194306 -k1,10419:30941033,14193363:194306 -k1,10419:31794631,14193363:194306 -k1,10419:32583029,14193363:0 -) -(1,10420:6630773,15034851:25952256,513147,134348 -k1,10419:8719909,15034851:206942 -k1,10419:9880401,15034851:206943 -k1,10419:11353499,15034851:206942 -k1,10419:12176480,15034851:206943 -k1,10419:13402507,15034851:206942 -k1,10419:14993570,15034851:206943 -k1,10419:18365901,15034851:206942 -k1,10419:18928704,15034851:206943 -k1,10419:21573585,15034851:206942 -k1,10419:24476024,15034851:206943 -k1,10419:25967472,15034851:206942 -k1,10419:28515361,15034851:206943 -k1,10419:29510701,15034851:206942 -k1,10419:32583029,15034851:0 -) -(1,10420:6630773,15876339:25952256,505283,134348 -g1,10419:10494775,15876339 -g1,10419:11418832,15876339 -g1,10419:12902567,15876339 -g1,10419:14810320,15876339 -g1,10419:16200994,15876339 -g1,10419:18558979,15876339 -g1,10419:19862490,15876339 -g1,10419:20809485,15876339 -g1,10419:22809643,15876339 -k1,10420:32583029,15876339:6418598 -g1,10420:32583029,15876339 -) -v1,10422:6630773,17063298:0,393216,0 -(1,10434:6630773,21350296:25952256,4680214,196608 -g1,10434:6630773,21350296 -g1,10434:6630773,21350296 -g1,10434:6434165,21350296 -(1,10434:6434165,21350296:0,4680214,196608 -r1,10492:32779637,21350296:26345472,4876822,196608 -k1,10434:6434165,21350296:-26345472 -) -(1,10434:6434165,21350296:26345472,4680214,196608 -[1,10434:6630773,21350296:25952256,4483606,0 -(1,10424:6630773,17270916:25952256,404226,82312 -(1,10423:6630773,17270916:0,0,0 -g1,10423:6630773,17270916 -g1,10423:6630773,17270916 -g1,10423:6303093,17270916 -(1,10423:6303093,17270916:0,0,0 -) -g1,10423:6630773,17270916 -) -g1,10424:11372959,17270916 -g1,10424:12321397,17270916 -g1,10424:17379729,17270916 -g1,10424:18960458,17270916 -g1,10424:19592750,17270916 -g1,10424:20857333,17270916 -g1,10424:21805770,17270916 -g1,10424:22438062,17270916 -g1,10424:23702646,17270916 -g1,10424:25283375,17270916 -g1,10424:25915667,17270916 -h1,10424:26547959,17270916:0,0,0 -k1,10424:32583029,17270916:6035070 -g1,10424:32583029,17270916 -) -(1,10425:6630773,17937094:25952256,404226,107478 -h1,10425:6630773,17937094:0,0,0 -g1,10425:11372959,17937094 -g1,10425:12321397,17937094 -g1,10425:19276602,17937094 -g1,10425:21489622,17937094 -g1,10425:22121914,17937094 -h1,10425:22754206,17937094:0,0,0 -k1,10425:32583029,17937094:9828823 -g1,10425:32583029,17937094 -) -(1,10426:6630773,18603272:25952256,404226,6290 -h1,10426:6630773,18603272:0,0,0 -h1,10426:11056813,18603272:0,0,0 -k1,10426:32583029,18603272:21526216 -g1,10426:32583029,18603272 -) -(1,10433:6630773,19269450:25952256,404226,82312 -(1,10428:6630773,19269450:0,0,0 -g1,10428:6630773,19269450 -g1,10428:6630773,19269450 -g1,10428:6303093,19269450 -(1,10428:6303093,19269450:0,0,0 -) -g1,10428:6630773,19269450 -) -g1,10433:7579210,19269450 -g1,10433:7895356,19269450 -g1,10433:8211502,19269450 -g1,10433:8527648,19269450 -g1,10433:8843794,19269450 -g1,10433:9159940,19269450 -g1,10433:10740669,19269450 -k1,10433:10740669,19269450:0 -h1,10433:12005252,19269450:0,0,0 -k1,10433:32583028,19269450:20577776 -g1,10433:32583028,19269450 -) -(1,10433:6630773,19935628:25952256,404226,82312 -h1,10433:6630773,19935628:0,0,0 -g1,10433:7579210,19935628 -g1,10433:9159938,19935628 -g1,10433:10740667,19935628 -h1,10433:12005250,19935628:0,0,0 -k1,10433:32583030,19935628:20577780 -g1,10433:32583030,19935628 -) -(1,10433:6630773,20601806:25952256,404226,82312 -h1,10433:6630773,20601806:0,0,0 -g1,10433:7579210,20601806 -g1,10433:9159938,20601806 -g1,10433:10740667,20601806 -g1,10433:11056813,20601806 -h1,10433:12005250,20601806:0,0,0 -k1,10433:32583030,20601806:20577780 -g1,10433:32583030,20601806 -) -(1,10433:6630773,21267984:25952256,404226,82312 -h1,10433:6630773,21267984:0,0,0 -g1,10433:7579210,21267984 -g1,10433:9159938,21267984 -g1,10433:9476084,21267984 -g1,10433:10740667,21267984 -h1,10433:12005250,21267984:0,0,0 -k1,10433:32583030,21267984:20577780 -g1,10433:32583030,21267984 -) -] -) -g1,10434:32583029,21350296 -g1,10434:6630773,21350296 -g1,10434:6630773,21350296 -g1,10434:32583029,21350296 -g1,10434:32583029,21350296 -) -h1,10434:6630773,21546904:0,0,0 -v1,10438:6630773,23254645:0,393216,0 -(1,10442:6630773,23569742:25952256,708313,196608 -g1,10442:6630773,23569742 -g1,10442:6630773,23569742 -g1,10442:6434165,23569742 -(1,10442:6434165,23569742:0,708313,196608 -r1,10492:32779637,23569742:26345472,904921,196608 -k1,10442:6434165,23569742:-26345472 -) -(1,10442:6434165,23569742:26345472,708313,196608 -[1,10442:6630773,23569742:25952256,511705,0 -(1,10440:6630773,23468555:25952256,410518,101187 -(1,10439:6630773,23468555:0,0,0 -g1,10439:6630773,23468555 -g1,10439:6630773,23468555 -g1,10439:6303093,23468555 -(1,10439:6303093,23468555:0,0,0 -) -g1,10439:6630773,23468555 -) -g1,10440:9792230,23468555 -g1,10440:10740668,23468555 -g1,10440:14534417,23468555 -h1,10440:15482854,23468555:0,0,0 -k1,10440:32583030,23468555:17100176 -g1,10440:32583030,23468555 -) -] -) -g1,10442:32583029,23569742 -g1,10442:6630773,23569742 -g1,10442:6630773,23569742 -g1,10442:32583029,23569742 -g1,10442:32583029,23569742 -) -h1,10442:6630773,23766350:0,0,0 -v1,10446:6630773,25474091:0,393216,0 -(1,10463:6630773,31088919:25952256,6008044,196608 -g1,10463:6630773,31088919 -g1,10463:6630773,31088919 -g1,10463:6434165,31088919 -(1,10463:6434165,31088919:0,6008044,196608 -r1,10492:32779637,31088919:26345472,6204652,196608 -k1,10463:6434165,31088919:-26345472 -) -(1,10463:6434165,31088919:26345472,6008044,196608 -[1,10463:6630773,31088919:25952256,5811436,0 -(1,10448:6630773,25688001:25952256,410518,101187 -(1,10447:6630773,25688001:0,0,0 -g1,10447:6630773,25688001 -g1,10447:6630773,25688001 -g1,10447:6303093,25688001 -(1,10447:6303093,25688001:0,0,0 -) -g1,10447:6630773,25688001 -) -g1,10448:7263065,25688001 -g1,10448:8211503,25688001 -g1,10448:10740669,25688001 -g1,10448:11372961,25688001 -g1,10448:16431293,25688001 -g1,10448:18644313,25688001 -g1,10448:19276605,25688001 -g1,10448:20225043,25688001 -g1,10448:21489626,25688001 -g1,10448:22121918,25688001 -h1,10448:25283375,25688001:0,0,0 -k1,10448:32583029,25688001:7299654 -g1,10448:32583029,25688001 -) -(1,10449:6630773,26354179:25952256,404226,76021 -h1,10449:6630773,26354179:0,0,0 -k1,10449:6630773,26354179:0 -h1,10449:9159938,26354179:0,0,0 -k1,10449:32583030,26354179:23423092 -g1,10449:32583030,26354179 -) -(1,10453:6630773,27020357:25952256,404226,101187 -(1,10451:6630773,27020357:0,0,0 -g1,10451:6630773,27020357 -g1,10451:6630773,27020357 -g1,10451:6303093,27020357 -(1,10451:6303093,27020357:0,0,0 -) -g1,10451:6630773,27020357 -) -g1,10453:7579210,27020357 -g1,10453:8843793,27020357 -g1,10453:11689104,27020357 -h1,10453:13902124,27020357:0,0,0 -k1,10453:32583028,27020357:18680904 -g1,10453:32583028,27020357 -) -(1,10455:6630773,28341895:25952256,277873,0 -(1,10454:6630773,28341895:0,0,0 -g1,10454:6630773,28341895 -g1,10454:6630773,28341895 -g1,10454:6303093,28341895 -(1,10454:6303093,28341895:0,0,0 -) -g1,10454:6630773,28341895 -) -h1,10455:6946919,28341895:0,0,0 -k1,10455:32583029,28341895:25636110 -g1,10455:32583029,28341895 -) -(1,10462:6630773,29008073:25952256,404226,82312 -(1,10457:6630773,29008073:0,0,0 -g1,10457:6630773,29008073 -g1,10457:6630773,29008073 -g1,10457:6303093,29008073 -(1,10457:6303093,29008073:0,0,0 -) -g1,10457:6630773,29008073 -) -g1,10462:7579210,29008073 -g1,10462:7895356,29008073 -g1,10462:8211502,29008073 -g1,10462:8527648,29008073 -g1,10462:8843794,29008073 -g1,10462:9159940,29008073 -g1,10462:10740669,29008073 -k1,10462:10740669,29008073:0 -h1,10462:12005252,29008073:0,0,0 -k1,10462:32583028,29008073:20577776 -g1,10462:32583028,29008073 -) -(1,10462:6630773,29674251:25952256,404226,82312 -h1,10462:6630773,29674251:0,0,0 -g1,10462:7579210,29674251 -g1,10462:9159938,29674251 -g1,10462:10740667,29674251 -h1,10462:12005250,29674251:0,0,0 -k1,10462:32583030,29674251:20577780 -g1,10462:32583030,29674251 -) -(1,10462:6630773,30340429:25952256,404226,82312 -h1,10462:6630773,30340429:0,0,0 -g1,10462:7579210,30340429 -g1,10462:9159938,30340429 -g1,10462:10740667,30340429 -g1,10462:11056813,30340429 -h1,10462:12005250,30340429:0,0,0 -k1,10462:32583030,30340429:20577780 -g1,10462:32583030,30340429 -) -(1,10462:6630773,31006607:25952256,404226,82312 -h1,10462:6630773,31006607:0,0,0 -g1,10462:7579210,31006607 -g1,10462:9159938,31006607 -g1,10462:9476084,31006607 -g1,10462:10740667,31006607 -h1,10462:12005250,31006607:0,0,0 -k1,10462:32583030,31006607:20577780 -g1,10462:32583030,31006607 -) -] -) -g1,10463:32583029,31088919 -g1,10463:6630773,31088919 -g1,10463:6630773,31088919 -g1,10463:32583029,31088919 -g1,10463:32583029,31088919 -) -h1,10463:6630773,31285527:0,0,0 -(1,10467:6630773,32647796:25952256,513147,134348 -h1,10466:6630773,32647796:983040,0,0 -k1,10466:8442216,32647796:200568 -k1,10466:9661870,32647796:200569 -k1,10466:11833106,32647796:200568 -k1,10466:14062669,32647796:200568 -k1,10466:15131589,32647796:200568 -k1,10466:17537445,32647796:200569 -(1,10466:17537445,32647796:0,435480,115847 -r1,10492:21061118,32647796:3523673,551327,115847 -k1,10466:17537445,32647796:-3523673 -) -(1,10466:17537445,32647796:3523673,435480,115847 -g1,10466:20002705,32647796 -g1,10466:20706129,32647796 -h1,10466:21057841,32647796:0,411205,112570 -) -k1,10466:21435356,32647796:200568 -k1,10466:22708093,32647796:200568 -k1,10466:23374623,32647796:200569 -k1,10466:24443543,32647796:200568 -k1,10466:26081316,32647796:200568 -(1,10466:26081316,32647796:0,435480,115847 -r1,10492:29604989,32647796:3523673,551327,115847 -k1,10466:26081316,32647796:-3523673 -) -(1,10466:26081316,32647796:3523673,435480,115847 -g1,10466:28546576,32647796 -g1,10466:29250000,32647796 -h1,10466:29601712,32647796:0,411205,112570 -) -k1,10466:29979227,32647796:200568 -k1,10466:31048148,32647796:200569 -k1,10466:32227169,32647796:200568 -k1,10466:32583029,32647796:0 -) -(1,10467:6630773,33489284:25952256,513147,134348 -k1,10466:8816305,33489284:174887 -k1,10466:10671536,33489284:174888 -k1,10466:12130929,33489284:174887 -k1,10466:12837313,33489284:174887 -k1,10466:16745787,33489284:174888 -k1,10466:17749704,33489284:174887 -k1,10466:20177719,33489284:174887 -k1,10466:21371692,33489284:174888 -k1,10466:23981897,33489284:174887 -k1,10466:26145147,33489284:174888 -k1,10466:26979326,33489284:174887 -k1,10466:28173298,33489284:174887 -k1,10466:30435508,33489284:174888 -k1,10466:31478747,33489284:174887 -k1,10466:32583029,33489284:0 -) -(1,10467:6630773,34330772:25952256,513147,126483 -g1,10466:9969177,34330772 -g1,10466:11187491,34330772 -g1,10466:13229592,34330772 -g1,10466:14822772,34330772 -g1,10466:17717497,34330772 -(1,10466:17717497,34330772:0,452978,115847 -r1,10492:18779186,34330772:1061689,568825,115847 -k1,10466:17717497,34330772:-1061689 -) -(1,10466:17717497,34330772:1061689,452978,115847 -k1,10466:17717497,34330772:3277 -h1,10466:18775909,34330772:0,411205,112570 -) -k1,10467:32583029,34330772:13630173 -g1,10467:32583029,34330772 -) -v1,10469:6630773,35517732:0,393216,0 -(1,10488:6630773,42464916:25952256,7340400,196608 -g1,10488:6630773,42464916 -g1,10488:6630773,42464916 -g1,10488:6434165,42464916 -(1,10488:6434165,42464916:0,7340400,196608 -r1,10492:32779637,42464916:26345472,7537008,196608 -k1,10488:6434165,42464916:-26345472 -) -(1,10488:6434165,42464916:26345472,7340400,196608 -[1,10488:6630773,42464916:25952256,7143792,0 -(1,10471:6630773,35731642:25952256,410518,101187 -(1,10470:6630773,35731642:0,0,0 -g1,10470:6630773,35731642 -g1,10470:6630773,35731642 -g1,10470:6303093,35731642 -(1,10470:6303093,35731642:0,0,0 -) -g1,10470:6630773,35731642 -) -g1,10471:7263065,35731642 -g1,10471:8211503,35731642 -g1,10471:10740669,35731642 -g1,10471:11372961,35731642 -g1,10471:16431293,35731642 -g1,10471:18644313,35731642 -g1,10471:19276605,35731642 -g1,10471:20225043,35731642 -g1,10471:21489626,35731642 -g1,10471:22121918,35731642 -h1,10471:25283375,35731642:0,0,0 -k1,10471:32583029,35731642:7299654 -g1,10471:32583029,35731642 -) -(1,10472:6630773,36397820:25952256,277873,0 -h1,10472:6630773,36397820:0,0,0 -h1,10472:6946919,36397820:0,0,0 -k1,10472:32583029,36397820:25636110 -g1,10472:32583029,36397820 -) -(1,10478:6630773,37063998:25952256,404226,82312 -(1,10474:6630773,37063998:0,0,0 -g1,10474:6630773,37063998 -g1,10474:6630773,37063998 -g1,10474:6303093,37063998 -(1,10474:6303093,37063998:0,0,0 -) -g1,10474:6630773,37063998 -) -g1,10478:7579210,37063998 -g1,10478:7895356,37063998 -g1,10478:8211502,37063998 -g1,10478:8527648,37063998 -g1,10478:8843794,37063998 -g1,10478:9159940,37063998 -g1,10478:10740669,37063998 -g1,10478:12321398,37063998 -k1,10478:12321398,37063998:0 -h1,10478:13585981,37063998:0,0,0 -k1,10478:32583029,37063998:18997048 -g1,10478:32583029,37063998 -) -(1,10478:6630773,37730176:25952256,404226,82312 -h1,10478:6630773,37730176:0,0,0 -g1,10478:7579210,37730176 -g1,10478:9159938,37730176 -g1,10478:10740667,37730176 -g1,10478:12321396,37730176 -g1,10478:12637542,37730176 -h1,10478:13585979,37730176:0,0,0 -k1,10478:32583029,37730176:18997050 -g1,10478:32583029,37730176 -) -(1,10478:6630773,38396354:25952256,404226,82312 -h1,10478:6630773,38396354:0,0,0 -g1,10478:7579210,38396354 -g1,10478:9159938,38396354 -g1,10478:10740667,38396354 -g1,10478:11056813,38396354 -g1,10478:12321396,38396354 -h1,10478:13585979,38396354:0,0,0 -k1,10478:32583029,38396354:18997050 -g1,10478:32583029,38396354 -) -(1,10480:6630773,39717892:25952256,404226,76021 -(1,10479:6630773,39717892:0,0,0 -g1,10479:6630773,39717892 -g1,10479:6630773,39717892 -g1,10479:6303093,39717892 -(1,10479:6303093,39717892:0,0,0 -) -g1,10479:6630773,39717892 -) -k1,10480:6630773,39717892:0 -h1,10480:7895356,39717892:0,0,0 -k1,10480:32583028,39717892:24687672 -g1,10480:32583028,39717892 -) -(1,10487:6630773,40384070:25952256,404226,82312 -(1,10482:6630773,40384070:0,0,0 -g1,10482:6630773,40384070 -g1,10482:6630773,40384070 -g1,10482:6303093,40384070 -(1,10482:6303093,40384070:0,0,0 -) -g1,10482:6630773,40384070 -) -g1,10487:7579210,40384070 -g1,10487:7895356,40384070 -g1,10487:8211502,40384070 -g1,10487:8527648,40384070 -g1,10487:8843794,40384070 -g1,10487:9159940,40384070 -g1,10487:10740669,40384070 -k1,10487:10740669,40384070:0 -h1,10487:12005252,40384070:0,0,0 -k1,10487:32583028,40384070:20577776 -g1,10487:32583028,40384070 -) -(1,10487:6630773,41050248:25952256,404226,82312 -h1,10487:6630773,41050248:0,0,0 -g1,10487:7579210,41050248 -g1,10487:9159938,41050248 -g1,10487:10740667,41050248 -h1,10487:12005250,41050248:0,0,0 -k1,10487:32583030,41050248:20577780 -g1,10487:32583030,41050248 -) -(1,10487:6630773,41716426:25952256,404226,82312 -h1,10487:6630773,41716426:0,0,0 -g1,10487:7579210,41716426 -g1,10487:9159938,41716426 -g1,10487:10740667,41716426 -g1,10487:11056813,41716426 -h1,10487:12005250,41716426:0,0,0 -k1,10487:32583030,41716426:20577780 -g1,10487:32583030,41716426 -) -(1,10487:6630773,42382604:25952256,404226,82312 -h1,10487:6630773,42382604:0,0,0 -g1,10487:7579210,42382604 -g1,10487:9159938,42382604 -g1,10487:9476084,42382604 -g1,10487:10740667,42382604 -h1,10487:12005250,42382604:0,0,0 -k1,10487:32583030,42382604:20577780 -g1,10487:32583030,42382604 -) -] -) -g1,10488:32583029,42464916 -g1,10488:6630773,42464916 -g1,10488:6630773,42464916 -g1,10488:32583029,42464916 -g1,10488:32583029,42464916 -) -h1,10488:6630773,42661524:0,0,0 -(1,10492:6630773,44023793:25952256,513147,134348 -h1,10491:6630773,44023793:983040,0,0 -k1,10491:8358958,44023793:257557 -k1,10491:10266771,44023793:257616 -k1,10491:13044246,44023793:257616 -k1,10491:16136949,44023793:257616 -k1,10491:17466734,44023793:257616 -k1,10491:20208165,44023793:257616 -k1,10491:21117209,44023793:257616 -k1,10491:23144296,44023793:257615 -k1,10491:25862134,44023793:257616 -k1,10491:28134982,44023793:257616 -k1,10491:29411683,44023793:257616 -k1,10491:30681830,44023793:257616 -k1,10492:32583029,44023793:0 -) -(1,10492:6630773,44865281:25952256,513147,126483 -k1,10491:8147101,44865281:212817 -k1,10491:10435443,44865281:212817 -k1,10491:12677256,44865281:212818 -k1,10491:13421570,44865281:212817 -k1,10491:15332425,44865281:212817 -k1,10491:16413594,44865281:212817 -k1,10491:18389985,44865281:212817 -k1,10491:18958663,44865281:212818 -k1,10491:21866976,44865281:212817 -k1,10491:23364299,44865281:212817 -k1,10491:25918062,44865281:212817 -k1,10491:26486739,44865281:212817 -k1,10491:28379900,44865281:212818 -k1,10491:29252009,44865281:212817 -k1,10491:29820686,44865281:212817 -k1,10491:32583029,44865281:0 -) -(1,10492:6630773,45706769:25952256,505283,134348 -k1,10491:8862875,45706769:218836 -k1,10491:10524157,45706769:218835 -k1,10491:11531391,45706769:218836 -k1,10491:13632420,45706769:218835 -k1,10491:14923425,45706769:218836 -k1,10491:17166668,45706769:218836 -k1,10491:18827950,45706769:218835 -k1,10491:20377167,45706769:218836 -k1,10491:22379237,45706769:218835 -k1,10491:23466425,45706769:218836 -k1,10491:26473162,45706769:218835 -k1,10491:29074887,45706769:218836 -k1,10491:32583029,45706769:0 -) -] -(1,10492:32583029,45706769:0,0,0 -g1,10492:32583029,45706769 -) -) -] -(1,10492:6630773,47279633:25952256,0,0 -h1,10492:6630773,47279633:25952256,0,0 -) -] -(1,10492:4262630,4025873:0,0,0 -[1,10492:-473656,4025873:0,0,0 -(1,10492:-473656,-710413:0,0,0 -(1,10492:-473656,-710413:0,0,0 -g1,10492:-473656,-710413 -) -g1,10492:-473656,-710413 -) -] -) -] -!25456 -}175 -Input:1574:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1575:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1576:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1577:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1578:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1579:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1580:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1581:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1582:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1583:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1584:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1585:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1140 -{176 -[1,10554:4262630,47279633:28320399,43253760,0 -(1,10554:4262630,4025873:0,0,0 -[1,10554:-473656,4025873:0,0,0 -(1,10554:-473656,-710413:0,0,0 -(1,10554:-473656,-644877:0,0,0 -k1,10554:-473656,-644877:-65536 +g1,9565:6630773,4812305 +g1,9565:6630773,4812305 +g1,9565:10456764,4812305 +g1,9565:13962940,4812305 +k1,9565:31387652,4812305:17424712 +) +) +] +[1,9565:6630773,45706769:25952256,40108032,0 +(1,9565:6630773,45706769:25952256,40108032,0 +(1,9565:6630773,45706769:0,0,0 +g1,9565:6630773,45706769 +) +[1,9565:6630773,45706769:25952256,40108032,0 +(1,9473:6630773,6254097:25952256,513147,134348 +k1,9472:9801739,6254097:196287 +k1,9472:11678370,6254097:196288 +k1,9472:14079944,6254097:196287 +k1,9472:14962393,6254097:196287 +k1,9472:16464814,6254097:196288 +k1,9472:19733429,6254097:196287 +k1,9472:20581144,6254097:196287 +(1,9472:20581144,6254097:0,452978,115847 +r1,9565:23401393,6254097:2820249,568825,115847 +k1,9472:20581144,6254097:-2820249 +) +(1,9472:20581144,6254097:2820249,452978,115847 +k1,9472:20581144,6254097:3277 +h1,9472:23398116,6254097:0,411205,112570 +) +k1,9472:23771350,6254097:196287 +k1,9472:26306618,6254097:196288 +k1,9472:27162197,6254097:196287 +k1,9472:28377569,6254097:196287 +k1,9472:30311872,6254097:196288 +k1,9472:31167451,6254097:196287 +k1,9473:32583029,6254097:0 +) +(1,9473:6630773,7119177:25952256,505283,134348 +k1,9472:8241468,7119177:301941 +(1,9472:8241468,7119177:0,452978,122846 +r1,9565:11413428,7119177:3171960,575824,122846 +k1,9472:8241468,7119177:-3171960 +) +(1,9472:8241468,7119177:3171960,452978,122846 +k1,9472:8241468,7119177:3277 +h1,9472:11410151,7119177:0,411205,112570 +) +k1,9472:11889038,7119177:301940 +k1,9472:13059331,7119177:301941 +k1,9472:15130089,7119177:301941 +k1,9472:16907244,7119177:301940 +k1,9472:18722411,7119177:301941 +k1,9472:19380211,7119177:301940 +k1,9472:22368473,7119177:301941 +k1,9472:26110399,7119177:301941 +k1,9472:29413233,7119177:301940 +k1,9472:30071034,7119177:301941 +k1,9473:32583029,7119177:0 +) +(1,9473:6630773,7984257:25952256,513147,134348 +(1,9472:6630773,7984257:0,452978,115847 +r1,9565:9802733,7984257:3171960,568825,115847 +k1,9472:6630773,7984257:-3171960 +) +(1,9472:6630773,7984257:3171960,452978,115847 +k1,9472:6630773,7984257:3277 +h1,9472:9799456,7984257:0,411205,112570 +) +g1,9472:10001962,7984257 +g1,9472:11881534,7984257 +g1,9472:12740055,7984257 +g1,9472:14952550,7984257 +k1,9473:32583029,7984257:16300098 +g1,9473:32583029,7984257 +) +v1,9475:6630773,8669112:0,393216,0 +(1,9489:6630773,14586677:25952256,6310781,196608 +g1,9489:6630773,14586677 +g1,9489:6630773,14586677 +g1,9489:6434165,14586677 +(1,9489:6434165,14586677:0,6310781,196608 +r1,9565:32779637,14586677:26345472,6507389,196608 +k1,9489:6434165,14586677:-26345472 +) +(1,9489:6434165,14586677:26345472,6310781,196608 +[1,9489:6630773,14586677:25952256,6114173,0 +(1,9477:6630773,8896943:25952256,424439,112852 +(1,9476:6630773,8896943:0,0,0 +g1,9476:6630773,8896943 +g1,9476:6630773,8896943 +g1,9476:6303093,8896943 +(1,9476:6303093,8896943:0,0,0 +) +g1,9476:6630773,8896943 +) +g1,9477:9950312,8896943 +g1,9477:10946174,8896943 +h1,9477:12605944,8896943:0,0,0 +k1,9477:32583028,8896943:19977084 +g1,9477:32583028,8896943 +) +(1,9478:6630773,9581798:25952256,424439,112852 +h1,9478:6630773,9581798:0,0,0 +g1,9478:7294681,9581798 +g1,9478:8290543,9581798 +k1,9478:8290543,9581798:0 +h1,9478:13933760,9581798:0,0,0 +k1,9478:32583028,9581798:18649268 +g1,9478:32583028,9581798 +) +(1,9479:6630773,10266653:25952256,407923,86428 +h1,9479:6630773,10266653:0,0,0 +g1,9479:6962727,10266653 +g1,9479:7294681,10266653 +g1,9479:7626635,10266653 +g1,9479:7958589,10266653 +g1,9479:8290543,10266653 +g1,9479:8622497,10266653 +g1,9479:8954451,10266653 +g1,9479:9286405,10266653 +g1,9479:9618359,10266653 +g1,9479:9950313,10266653 +g1,9479:10282267,10266653 +g1,9479:10614221,10266653 +g1,9479:11942037,10266653 +g1,9479:12605945,10266653 +k1,9479:12605945,10266653:0 +h1,9479:13269853,10266653:0,0,0 +k1,9479:32583029,10266653:19313176 +g1,9479:32583029,10266653 +) +(1,9480:6630773,10951508:25952256,424439,86428 +h1,9480:6630773,10951508:0,0,0 +g1,9480:6962727,10951508 +g1,9480:7294681,10951508 +g1,9480:7626635,10951508 +g1,9480:7958589,10951508 +g1,9480:8290543,10951508 +g1,9480:8622497,10951508 +g1,9480:8954451,10951508 +g1,9480:9286405,10951508 +g1,9480:9618359,10951508 +g1,9480:9950313,10951508 +g1,9480:10282267,10951508 +g1,9480:10614221,10951508 +g1,9480:11942037,10951508 +g1,9480:12605945,10951508 +g1,9480:13269853,10951508 +g1,9480:13933761,10951508 +k1,9480:13933761,10951508:0 +h1,9480:14597669,10951508:0,0,0 +k1,9480:32583029,10951508:17985360 +g1,9480:32583029,10951508 +) +(1,9481:6630773,11636363:25952256,431045,86428 +h1,9481:6630773,11636363:0,0,0 +g1,9481:6962727,11636363 +g1,9481:7294681,11636363 +g1,9481:7626635,11636363 +g1,9481:7958589,11636363 +g1,9481:8290543,11636363 +g1,9481:8622497,11636363 +g1,9481:8954451,11636363 +g1,9481:9286405,11636363 +g1,9481:9618359,11636363 +g1,9481:9950313,11636363 +g1,9481:10282267,11636363 +g1,9481:10614221,11636363 +g1,9481:12273991,11636363 +g1,9481:12937899,11636363 +g1,9481:13601807,11636363 +g1,9481:14265715,11636363 +k1,9481:14265715,11636363:0 +h1,9481:14929623,11636363:0,0,0 +k1,9481:32583029,11636363:17653406 +g1,9481:32583029,11636363 +) +(1,9482:6630773,12321218:25952256,407923,9908 +h1,9482:6630773,12321218:0,0,0 +g1,9482:6962727,12321218 +g1,9482:7294681,12321218 +g1,9482:7626635,12321218 +g1,9482:7958589,12321218 +g1,9482:8290543,12321218 +g1,9482:8622497,12321218 +g1,9482:8954451,12321218 +g1,9482:9286405,12321218 +g1,9482:9618359,12321218 +g1,9482:9950313,12321218 +g1,9482:10282267,12321218 +g1,9482:10614221,12321218 +h1,9482:10946175,12321218:0,0,0 +k1,9482:32583029,12321218:21636854 +g1,9482:32583029,12321218 +) +(1,9483:6630773,13006073:25952256,424439,79822 +h1,9483:6630773,13006073:0,0,0 +h1,9483:6962727,13006073:0,0,0 +k1,9483:32583029,13006073:25620302 +g1,9483:32583029,13006073 +) +(1,9484:6630773,13690928:25952256,424439,6605 +h1,9484:6630773,13690928:0,0,0 +h1,9484:6962727,13690928:0,0,0 +k1,9484:32583029,13690928:25620302 +g1,9484:32583029,13690928 +) +(1,9488:6630773,14506855:25952256,424439,79822 +(1,9486:6630773,14506855:0,0,0 +g1,9486:6630773,14506855 +g1,9486:6630773,14506855 +g1,9486:6303093,14506855 +(1,9486:6303093,14506855:0,0,0 +) +g1,9486:6630773,14506855 +) +g1,9488:7626635,14506855 +g1,9488:8954451,14506855 +h1,9488:9950313,14506855:0,0,0 +k1,9488:32583029,14506855:22632716 +g1,9488:32583029,14506855 +) +] +) +g1,9489:32583029,14586677 +g1,9489:6630773,14586677 +g1,9489:6630773,14586677 +g1,9489:32583029,14586677 +g1,9489:32583029,14586677 +) +h1,9489:6630773,14783285:0,0,0 +(1,9493:6630773,15648365:25952256,505283,126483 +h1,9492:6630773,15648365:983040,0,0 +g1,9492:10427929,15648365 +g1,9492:13659509,15648365 +g1,9492:15869383,15648365 +g1,9492:17172894,15648365 +g1,9492:19108827,15648365 +g1,9492:20327141,15648365 +g1,9492:22179843,15648365 +k1,9493:32583029,15648365:7043155 +g1,9493:32583029,15648365 +) +v1,9495:6630773,16333220:0,393216,0 +(1,9509:6630773,22250785:25952256,6310781,196608 +g1,9509:6630773,22250785 +g1,9509:6630773,22250785 +g1,9509:6434165,22250785 +(1,9509:6434165,22250785:0,6310781,196608 +r1,9565:32779637,22250785:26345472,6507389,196608 +k1,9509:6434165,22250785:-26345472 +) +(1,9509:6434165,22250785:26345472,6310781,196608 +[1,9509:6630773,22250785:25952256,6114173,0 +(1,9497:6630773,16561051:25952256,424439,112852 +(1,9496:6630773,16561051:0,0,0 +g1,9496:6630773,16561051 +g1,9496:6630773,16561051 +g1,9496:6303093,16561051 +(1,9496:6303093,16561051:0,0,0 +) +g1,9496:6630773,16561051 +) +g1,9497:9950312,16561051 +g1,9497:10946174,16561051 +h1,9497:12605944,16561051:0,0,0 +k1,9497:32583028,16561051:19977084 +g1,9497:32583028,16561051 +) +(1,9498:6630773,17245906:25952256,424439,112852 +h1,9498:6630773,17245906:0,0,0 +g1,9498:7294681,17245906 +g1,9498:8290543,17245906 +k1,9498:8290543,17245906:0 +h1,9498:13933760,17245906:0,0,0 +k1,9498:32583028,17245906:18649268 +g1,9498:32583028,17245906 +) +(1,9499:6630773,17930761:25952256,407923,86428 +h1,9499:6630773,17930761:0,0,0 +g1,9499:6962727,17930761 +g1,9499:7294681,17930761 +g1,9499:7626635,17930761 +g1,9499:7958589,17930761 +g1,9499:8290543,17930761 +g1,9499:8622497,17930761 +g1,9499:8954451,17930761 +g1,9499:9286405,17930761 +g1,9499:9618359,17930761 +g1,9499:9950313,17930761 +g1,9499:10282267,17930761 +g1,9499:10614221,17930761 +g1,9499:11942037,17930761 +g1,9499:12937899,17930761 +g1,9499:14265715,17930761 +g1,9499:14929623,17930761 +k1,9499:14929623,17930761:0 +h1,9499:15593531,17930761:0,0,0 +k1,9499:32583029,17930761:16989498 +g1,9499:32583029,17930761 +) +(1,9500:6630773,18615616:25952256,424439,86428 +h1,9500:6630773,18615616:0,0,0 +g1,9500:6962727,18615616 +g1,9500:7294681,18615616 +g1,9500:7626635,18615616 +g1,9500:7958589,18615616 +g1,9500:8290543,18615616 +g1,9500:8622497,18615616 +g1,9500:8954451,18615616 +g1,9500:9286405,18615616 +g1,9500:9618359,18615616 +g1,9500:9950313,18615616 +g1,9500:10282267,18615616 +g1,9500:10614221,18615616 +g1,9500:11942037,18615616 +g1,9500:12937899,18615616 +g1,9500:14265715,18615616 +g1,9500:14929623,18615616 +g1,9500:15593531,18615616 +g1,9500:16257439,18615616 +k1,9500:16257439,18615616:0 +h1,9500:16921347,18615616:0,0,0 +k1,9500:32583029,18615616:15661682 +g1,9500:32583029,18615616 +) +(1,9501:6630773,19300471:25952256,431045,86428 +h1,9501:6630773,19300471:0,0,0 +g1,9501:6962727,19300471 +g1,9501:7294681,19300471 +g1,9501:7626635,19300471 +g1,9501:7958589,19300471 +g1,9501:8290543,19300471 +g1,9501:8622497,19300471 +g1,9501:8954451,19300471 +g1,9501:9286405,19300471 +g1,9501:9618359,19300471 +g1,9501:9950313,19300471 +g1,9501:10282267,19300471 +g1,9501:10614221,19300471 +g1,9501:12273991,19300471 +g1,9501:13269853,19300471 +g1,9501:15593531,19300471 +g1,9501:16257439,19300471 +g1,9501:16921347,19300471 +g1,9501:17585255,19300471 +k1,9501:17585255,19300471:0 +h1,9501:18249163,19300471:0,0,0 +k1,9501:32583029,19300471:14333866 +g1,9501:32583029,19300471 +) +(1,9502:6630773,19985326:25952256,407923,9908 +h1,9502:6630773,19985326:0,0,0 +g1,9502:6962727,19985326 +g1,9502:7294681,19985326 +g1,9502:7626635,19985326 +g1,9502:7958589,19985326 +g1,9502:8290543,19985326 +g1,9502:8622497,19985326 +g1,9502:8954451,19985326 +g1,9502:9286405,19985326 +g1,9502:9618359,19985326 +g1,9502:9950313,19985326 +g1,9502:10282267,19985326 +g1,9502:10614221,19985326 +h1,9502:10946175,19985326:0,0,0 +k1,9502:32583029,19985326:21636854 +g1,9502:32583029,19985326 +) +(1,9503:6630773,20670181:25952256,424439,79822 +h1,9503:6630773,20670181:0,0,0 +h1,9503:6962727,20670181:0,0,0 +k1,9503:32583029,20670181:25620302 +g1,9503:32583029,20670181 +) +(1,9504:6630773,21355036:25952256,424439,6605 +h1,9504:6630773,21355036:0,0,0 +h1,9504:6962727,21355036:0,0,0 +k1,9504:32583029,21355036:25620302 +g1,9504:32583029,21355036 +) +(1,9508:6630773,22170963:25952256,424439,79822 +(1,9506:6630773,22170963:0,0,0 +g1,9506:6630773,22170963 +g1,9506:6630773,22170963 +g1,9506:6303093,22170963 +(1,9506:6303093,22170963:0,0,0 +) +g1,9506:6630773,22170963 +) +g1,9508:7626635,22170963 +g1,9508:8954451,22170963 +h1,9508:9950313,22170963:0,0,0 +k1,9508:32583029,22170963:22632716 +g1,9508:32583029,22170963 +) +] +) +g1,9509:32583029,22250785 +g1,9509:6630773,22250785 +g1,9509:6630773,22250785 +g1,9509:32583029,22250785 +g1,9509:32583029,22250785 +) +h1,9509:6630773,22447393:0,0,0 +v1,9513:6630773,23312473:0,393216,0 +(1,9514:6630773,27171753:25952256,4252496,0 +g1,9514:6630773,27171753 +g1,9514:6237557,27171753 +r1,9565:6368629,27171753:131072,4252496,0 +g1,9514:6567858,27171753 +g1,9514:6764466,27171753 +[1,9514:6764466,27171753:25818563,4252496,0 +(1,9514:6764466,23584950:25818563,665693,196608 +(1,9513:6764466,23584950:0,665693,196608 +r1,9565:8010564,23584950:1246098,862301,196608 +k1,9513:6764466,23584950:-1246098 +) +(1,9513:6764466,23584950:1246098,665693,196608 +) +k1,9513:8195759,23584950:185195 +k1,9513:9513688,23584950:327680 +k1,9513:10596726,23584950:185195 +k1,9513:12124754,23584950:185195 +k1,9513:13703899,23584950:185194 +k1,9513:14908179,23584950:185195 +k1,9513:16185859,23584950:185195 +k1,9513:17030346,23584950:185195 +k1,9513:18234626,23584950:185195 +k1,9513:20477651,23584950:185195 +k1,9513:24022876,23584950:185194 +k1,9513:25754721,23584950:185195 +k1,9513:26552678,23584950:185195 +k1,9513:27756958,23584950:185195 +k1,9513:32583029,23584950:0 +) +(1,9514:6764466,24450030:25818563,513147,134348 +k1,9513:7959873,24450030:247756 +(1,9513:7959873,24450030:0,452978,115847 +r1,9565:10780122,24450030:2820249,568825,115847 +k1,9513:7959873,24450030:-2820249 +) +(1,9513:7959873,24450030:2820249,452978,115847 +k1,9513:7959873,24450030:3277 +h1,9513:10776845,24450030:0,411205,112570 +) +k1,9513:11027879,24450030:247757 +k1,9513:13011028,24450030:247756 +(1,9513:13011028,24450030:0,452978,115847 +r1,9565:17238124,24450030:4227096,568825,115847 +k1,9513:13011028,24450030:-4227096 +) +(1,9513:13011028,24450030:4227096,452978,115847 +k1,9513:13011028,24450030:3277 +h1,9513:17234847,24450030:0,411205,112570 +) +k1,9513:17485881,24450030:247757 +k1,9513:18925082,24450030:247756 +k1,9513:20956728,24450030:247756 +k1,9513:22223570,24450030:247757 +k1,9513:25463045,24450030:247756 +k1,9513:26323563,24450030:247756 +k1,9513:27590405,24450030:247757 +k1,9513:29021086,24450030:247756 +k1,9513:29928135,24450030:247757 +k1,9513:31194976,24450030:247756 +k1,9513:32583029,24450030:0 +) +(1,9514:6764466,25315110:25818563,513147,134348 +k1,9513:8586903,25315110:150614 +k1,9513:11129581,25315110:150614 +k1,9513:12828812,25315110:150615 +k1,9513:15684097,25315110:150614 +k1,9513:16300672,25315110:150614 +k1,9513:17621759,25315110:150614 +k1,9513:18706917,25315110:150615 +(1,9513:18706917,25315110:0,452978,122846 +r1,9565:25044284,25315110:6337367,575824,122846 +k1,9513:18706917,25315110:-6337367 +) +(1,9513:18706917,25315110:6337367,452978,122846 +g1,9513:22227312,25315110 +g1,9513:23282448,25315110 +h1,9513:25041007,25315110:0,411205,112570 +) +k1,9513:25368568,25315110:150614 +(1,9513:25368568,25315110:0,452978,122846 +r1,9565:32409359,25315110:7040791,575824,122846 +k1,9513:25368568,25315110:-7040791 +) +(1,9513:25368568,25315110:7040791,452978,122846 +g1,9513:28888963,25315110 +g1,9513:29944099,25315110 +h1,9513:32406082,25315110:0,411205,112570 +) +k1,9514:32583029,25315110:0 +) +(1,9514:6764466,26180190:25818563,505283,122846 +(1,9513:6764466,26180190:0,452978,122846 +r1,9565:15915528,26180190:9151062,575824,122846 +k1,9513:6764466,26180190:-9151062 +) +(1,9513:6764466,26180190:9151062,452978,122846 +g1,9513:10284861,26180190 +g1,9513:11339997,26180190 +h1,9513:15912251,26180190:0,411205,112570 +) +k1,9513:16134910,26180190:219382 +k1,9513:17037178,26180190:219383 +(1,9513:17037178,26180190:0,452978,122846 +r1,9565:25484816,26180190:8447638,575824,122846 +k1,9513:17037178,26180190:-8447638 +) +(1,9513:17037178,26180190:8447638,452978,122846 +g1,9513:20557573,26180190 +g1,9513:21612709,26180190 +h1,9513:25481539,26180190:0,411205,112570 +) +k1,9513:25877868,26180190:219382 +k1,9513:27708780,26180190:219382 +k1,9513:30282872,26180190:219383 +k1,9513:31521339,26180190:219382 +(1,9513:31521339,26180190:0,435480,115847 +r1,9565:32583029,26180190:1061690,551327,115847 +k1,9513:31521339,26180190:-1061690 +) +(1,9513:31521339,26180190:1061690,435480,115847 +g1,9513:32228040,26180190 +h1,9513:32579752,26180190:0,411205,112570 +) +k1,9513:32583029,26180190:0 +) +(1,9514:6764466,27045270:25818563,513147,126483 +g1,9513:7649857,27045270 +g1,9513:10114666,27045270 +g1,9513:12167909,27045270 +g1,9513:13558583,27045270 +k1,9514:32583028,27045270:16834232 +g1,9514:32583028,27045270 +) +] +g1,9514:32583029,27171753 +) +h1,9514:6630773,27171753:0,0,0 +(1,9517:6630773,28036833:25952256,505283,126483 +h1,9516:6630773,28036833:983040,0,0 +k1,9516:9552648,28036833:155600 +k1,9516:10727333,28036833:155600 +k1,9516:14322918,28036833:155600 +k1,9516:15991744,28036833:155600 +k1,9516:16833506,28036833:155600 +k1,9516:17344966,28036833:155600 +k1,9516:20532916,28036833:155599 +k1,9516:23029462,28036833:155600 +k1,9516:23540922,28036833:155600 +k1,9516:25376865,28036833:155600 +k1,9516:26816971,28036833:155600 +k1,9516:27504068,28036833:155600 +k1,9516:28725939,28036833:155600 +k1,9516:29237399,28036833:155600 +(1,9516:29237399,28036833:0,452978,115847 +r1,9565:32409359,28036833:3171960,568825,115847 +k1,9516:29237399,28036833:-3171960 +) +(1,9516:29237399,28036833:3171960,452978,115847 +k1,9516:29237399,28036833:3277 +h1,9516:32406082,28036833:0,411205,112570 +) +k1,9516:32583029,28036833:0 +) +(1,9517:6630773,28901913:25952256,513147,126483 +k1,9516:7315637,28901913:226767 +k1,9516:8674867,28901913:226768 +k1,9516:9649400,28901913:226767 +k1,9516:13466229,28901913:226767 +k1,9516:14379158,28901913:226767 +k1,9516:15376629,28901913:226768 +(1,9516:15376629,28901913:0,452978,122846 +r1,9565:17845166,28901913:2468537,575824,122846 +k1,9516:15376629,28901913:-2468537 +) +(1,9516:15376629,28901913:2468537,452978,122846 +k1,9516:15376629,28901913:3277 +h1,9516:17841889,28901913:0,411205,112570 +) +k1,9516:18071933,28901913:226767 +k1,9516:20221526,28901913:226767 +k1,9516:21076128,28901913:226767 +k1,9516:22506137,28901913:226768 +k1,9516:24099985,28901913:226767 +k1,9516:25136122,28901913:226767 +k1,9516:27431205,28901913:226767 +k1,9516:28649533,28901913:226768 +k1,9516:30389526,28901913:226767 +k1,9516:31563944,28901913:226767 +k1,9516:32583029,28901913:0 +) +(1,9517:6630773,29766993:25952256,513147,126483 +g1,9516:8701055,29766993 +g1,9516:10091729,29766993 +g1,9516:11310043,29766993 +g1,9516:12657463,29766993 +g1,9516:14013402,29766993 +g1,9516:14744128,29766993 +g1,9516:17072622,29766993 +g1,9516:20861913,29766993 +g1,9516:21747304,29766993 +g1,9516:22965618,29766993 +k1,9517:32583029,29766993:7178161 +g1,9517:32583029,29766993 +) +v1,9519:6630773,30451848:0,393216,0 +(1,9533:6630773,36369413:25952256,6310781,196608 +g1,9533:6630773,36369413 +g1,9533:6630773,36369413 +g1,9533:6434165,36369413 +(1,9533:6434165,36369413:0,6310781,196608 +r1,9565:32779637,36369413:26345472,6507389,196608 +k1,9533:6434165,36369413:-26345472 +) +(1,9533:6434165,36369413:26345472,6310781,196608 +[1,9533:6630773,36369413:25952256,6114173,0 +(1,9521:6630773,30679679:25952256,424439,106246 +(1,9520:6630773,30679679:0,0,0 +g1,9520:6630773,30679679 +g1,9520:6630773,30679679 +g1,9520:6303093,30679679 +(1,9520:6303093,30679679:0,0,0 +) +g1,9520:6630773,30679679 +) +g1,9521:9950312,30679679 +g1,9521:10946174,30679679 +h1,9521:11278128,30679679:0,0,0 +k1,9521:32583028,30679679:21304900 +g1,9521:32583028,30679679 +) +(1,9522:6630773,31364534:25952256,424439,106246 +h1,9522:6630773,31364534:0,0,0 +g1,9522:7294681,31364534 +g1,9522:8290543,31364534 +k1,9522:8290543,31364534:0 +h1,9522:13933760,31364534:0,0,0 +k1,9522:32583028,31364534:18649268 +g1,9522:32583028,31364534 +) +(1,9523:6630773,32049389:25952256,407923,86428 +h1,9523:6630773,32049389:0,0,0 +g1,9523:6962727,32049389 +g1,9523:7294681,32049389 +g1,9523:7626635,32049389 +g1,9523:7958589,32049389 +g1,9523:8290543,32049389 +g1,9523:8622497,32049389 +g1,9523:8954451,32049389 +g1,9523:9286405,32049389 +g1,9523:9618359,32049389 +g1,9523:9950313,32049389 +g1,9523:10282267,32049389 +g1,9523:10614221,32049389 +k1,9523:10614221,32049389:0 +h1,9523:11278129,32049389:0,0,0 +k1,9523:32583029,32049389:21304900 +g1,9523:32583029,32049389 +) +(1,9524:6630773,32734244:25952256,424439,86428 +h1,9524:6630773,32734244:0,0,0 +g1,9524:6962727,32734244 +g1,9524:7294681,32734244 +g1,9524:7626635,32734244 +g1,9524:7958589,32734244 +g1,9524:8290543,32734244 +g1,9524:8622497,32734244 +g1,9524:8954451,32734244 +g1,9524:9286405,32734244 +g1,9524:9618359,32734244 +g1,9524:9950313,32734244 +g1,9524:10282267,32734244 +g1,9524:10614221,32734244 +g1,9524:11278129,32734244 +g1,9524:11942037,32734244 +k1,9524:11942037,32734244:0 +h1,9524:12605945,32734244:0,0,0 +k1,9524:32583029,32734244:19977084 +g1,9524:32583029,32734244 +) +(1,9525:6630773,33419099:25952256,424439,86428 +h1,9525:6630773,33419099:0,0,0 +g1,9525:6962727,33419099 +g1,9525:7294681,33419099 +g1,9525:7626635,33419099 +g1,9525:7958589,33419099 +g1,9525:8290543,33419099 +g1,9525:8622497,33419099 +g1,9525:8954451,33419099 +g1,9525:9286405,33419099 +g1,9525:9618359,33419099 +g1,9525:9950313,33419099 +g1,9525:10282267,33419099 +g1,9525:10614221,33419099 +g1,9525:11278129,33419099 +g1,9525:11942037,33419099 +k1,9525:11942037,33419099:0 +h1,9525:12605945,33419099:0,0,0 +k1,9525:32583029,33419099:19977084 +g1,9525:32583029,33419099 +) +(1,9526:6630773,34103954:25952256,407923,9908 +h1,9526:6630773,34103954:0,0,0 +g1,9526:6962727,34103954 +g1,9526:7294681,34103954 +g1,9526:7626635,34103954 +g1,9526:7958589,34103954 +g1,9526:8290543,34103954 +g1,9526:8622497,34103954 +g1,9526:8954451,34103954 +g1,9526:9286405,34103954 +g1,9526:9618359,34103954 +g1,9526:9950313,34103954 +g1,9526:10282267,34103954 +g1,9526:10614221,34103954 +h1,9526:10946175,34103954:0,0,0 +k1,9526:32583029,34103954:21636854 +g1,9526:32583029,34103954 +) +(1,9527:6630773,34788809:25952256,424439,79822 +h1,9527:6630773,34788809:0,0,0 +h1,9527:6962727,34788809:0,0,0 +k1,9527:32583029,34788809:25620302 +g1,9527:32583029,34788809 +) +(1,9528:6630773,35473664:25952256,424439,6605 +h1,9528:6630773,35473664:0,0,0 +h1,9528:6962727,35473664:0,0,0 +k1,9528:32583029,35473664:25620302 +g1,9528:32583029,35473664 +) +(1,9532:6630773,36289591:25952256,424439,79822 +(1,9530:6630773,36289591:0,0,0 +g1,9530:6630773,36289591 +g1,9530:6630773,36289591 +g1,9530:6303093,36289591 +(1,9530:6303093,36289591:0,0,0 +) +g1,9530:6630773,36289591 +) +g1,9532:7626635,36289591 +g1,9532:8954451,36289591 +h1,9532:9950313,36289591:0,0,0 +k1,9532:32583029,36289591:22632716 +g1,9532:32583029,36289591 +) +] +) +g1,9533:32583029,36369413 +g1,9533:6630773,36369413 +g1,9533:6630773,36369413 +g1,9533:32583029,36369413 +g1,9533:32583029,36369413 +) +h1,9533:6630773,36566021:0,0,0 +v1,9537:6630773,37431101:0,393216,0 +(1,9538:6630773,39560221:25952256,2522336,0 +g1,9538:6630773,39560221 +g1,9538:6237557,39560221 +r1,9565:6368629,39560221:131072,2522336,0 +g1,9538:6567858,39560221 +g1,9538:6764466,39560221 +[1,9538:6764466,39560221:25818563,2522336,0 +(1,9538:6764466,37703578:25818563,665693,196608 +(1,9537:6764466,37703578:0,665693,196608 +r1,9565:8010564,37703578:1246098,862301,196608 +k1,9537:6764466,37703578:-1246098 +) +(1,9537:6764466,37703578:1246098,665693,196608 +) +k1,9537:8472501,37703578:461937 +k1,9537:10198719,37703578:327680 +k1,9537:13560625,37703578:461938 +k1,9537:16355644,37703578:461937 +k1,9537:18211533,37703578:461938 +k1,9537:19692555,37703578:461937 +k1,9537:21246977,37703578:461937 +k1,9537:22368207,37703578:461938 +k1,9537:23849229,37703578:461937 +k1,9537:26368997,37703578:461938 +k1,9537:30190965,37703578:461937 +k1,9537:32583029,37703578:0 +) +(1,9538:6764466,38568658:25818563,513147,126483 +k1,9537:8621718,38568658:308636 +k1,9537:11635026,38568658:308637 +k1,9537:12409623,38568658:308636 +k1,9537:13888732,38568658:308636 +k1,9537:15131911,38568658:308636 +(1,9537:15131911,38568658:0,452978,115847 +r1,9565:20414143,38568658:5282232,568825,115847 +k1,9537:15131911,38568658:-5282232 +) +(1,9537:15131911,38568658:5282232,452978,115847 +g1,9537:18652306,38568658 +g1,9537:19707442,38568658 +h1,9537:20410866,38568658:0,411205,112570 +) +k1,9537:20896450,38568658:308637 +(1,9537:20896450,38568658:0,452978,115847 +r1,9565:25826970,38568658:4930520,568825,115847 +k1,9537:20896450,38568658:-4930520 +) +(1,9537:20896450,38568658:4930520,452978,115847 +g1,9537:24416845,38568658 +g1,9537:25471981,38568658 +h1,9537:25823693,38568658:0,411205,112570 +) +k1,9537:26309276,38568658:308636 +(1,9537:26309276,38568658:0,452978,115847 +r1,9565:31591508,38568658:5282232,568825,115847 +k1,9537:26309276,38568658:-5282232 +) +(1,9537:26309276,38568658:5282232,452978,115847 +g1,9537:29829671,38568658 +g1,9537:30884807,38568658 +h1,9537:31588231,38568658:0,411205,112570 +) +k1,9537:31900144,38568658:308636 +k1,9538:32583029,38568658:0 +) +(1,9538:6764466,39433738:25818563,513147,126483 +(1,9537:6764466,39433738:0,452978,122846 +r1,9565:14508680,39433738:7744214,575824,122846 +k1,9537:6764466,39433738:-7744214 +) +(1,9537:6764466,39433738:7744214,452978,122846 +g1,9537:10284861,39433738 +g1,9537:11339997,39433738 +h1,9537:14505403,39433738:0,411205,112570 +) +g1,9537:14881579,39433738 +g1,9537:16692338,39433738 +g1,9537:19246276,39433738 +g1,9537:20464590,39433738 +(1,9537:20464590,39433738:0,435480,115847 +r1,9565:21526280,39433738:1061690,551327,115847 +k1,9537:20464590,39433738:-1061690 +) +(1,9537:20464590,39433738:1061690,435480,115847 +g1,9537:21171291,39433738 +h1,9537:21523003,39433738:0,411205,112570 +) +g1,9537:21725509,39433738 +g1,9537:22610900,39433738 +g1,9537:25075709,39433738 +g1,9537:27128952,39433738 +g1,9537:28519626,39433738 +k1,9538:32583029,39433738:1873190 +g1,9538:32583029,39433738 +) +] +g1,9538:32583029,39560221 +) +h1,9538:6630773,39560221:0,0,0 +v1,9541:6630773,40425301:0,393216,0 +(1,9565:6630773,43336702:25952256,3304617,0 +g1,9565:6630773,43336702 +g1,9565:6237557,43336702 +r1,9565:6368629,43336702:131072,3304617,0 +g1,9565:6567858,43336702 +g1,9565:6764466,43336702 +[1,9565:6764466,43336702:25818563,3304617,0 +(1,9542:6764466,40733599:25818563,701514,196608 +(1,9541:6764466,40733599:0,701514,196608 +r1,9565:8010564,40733599:1246098,898122,196608 +k1,9541:6764466,40733599:-1246098 +) +(1,9541:6764466,40733599:1246098,701514,196608 +) +k1,9541:8205067,40733599:194503 +k1,9541:8532747,40733599:327680 +k1,9541:9923937,40733599:194503 +k1,9541:13635102,40733599:194503 +k1,9541:14777256,40733599:194503 +k1,9541:15990844,40733599:194503 +k1,9541:18947690,40733599:194503 +k1,9541:21152839,40733599:194504 +k1,9541:22006634,40733599:194503 +k1,9541:23220222,40733599:194503 +k1,9541:26447076,40733599:194503 +k1,9541:27257617,40733599:194503 +k1,9541:27807980,40733599:194503 +(1,9541:27807980,40733599:0,452978,115847 +r1,9565:30628229,40733599:2820249,568825,115847 +k1,9541:27807980,40733599:-2820249 +) +(1,9541:27807980,40733599:2820249,452978,115847 +k1,9541:27807980,40733599:3277 +h1,9541:30624952,40733599:0,411205,112570 +) +k1,9541:30822732,40733599:194503 +k1,9542:32583029,40733599:0 +) +(1,9542:6764466,41598679:25818563,513147,126483 +k1,9541:8575662,41598679:172141 +k1,9541:9852085,41598679:172141 +k1,9541:10771992,41598679:172141 +k1,9541:14357903,41598679:172141 +k1,9541:18046706,41598679:172141 +k1,9541:18905009,41598679:172141 +k1,9541:19693188,41598679:172141 +k1,9541:20884413,41598679:172140 +k1,9541:22423635,41598679:172141 +k1,9541:23262932,41598679:172141 +(1,9541:23262932,41598679:0,459977,115847 +r1,9565:23972910,41598679:709978,575824,115847 +k1,9541:23262932,41598679:-709978 +) +(1,9541:23262932,41598679:709978,459977,115847 +k1,9541:23262932,41598679:3277 +h1,9541:23969633,41598679:0,411205,112570 +) +k1,9541:24318721,41598679:172141 +k1,9541:25682307,41598679:172141 +k1,9541:27234636,41598679:172141 +k1,9541:28511059,41598679:172141 +k1,9541:30149896,41598679:172141 +k1,9541:31069803,41598679:172141 +k1,9541:32583029,41598679:0 +) +(1,9542:6764466,42463759:25818563,513147,134348 +k1,9541:7879540,42463759:167423 +k1,9541:8402822,42463759:167422 +k1,9541:9869824,42463759:167423 +k1,9541:11981699,42463759:167422 +k1,9541:13102671,42463759:167423 +k1,9541:14374376,42463759:167423 +k1,9541:15489449,42463759:167422 +k1,9541:18318289,42463759:167423 +k1,9541:20748014,42463759:167422 +k1,9541:21934522,42463759:167423 +k1,9541:24763362,42463759:167423 +k1,9541:26786108,42463759:167422 +k1,9541:27604959,42463759:167423 +k1,9541:29354420,42463759:167422 +k1,9541:29877703,42463759:167423 +k1,9541:32583029,42463759:0 +) +(1,9542:6764466,43328839:25818563,513147,7863 +g1,9541:8661733,43328839 +g1,9541:9880047,43328839 +g1,9541:12344856,43328839 +g1,9541:14224428,43328839 +g1,9541:14955154,43328839 +k1,9542:32583029,43328839:14675478 +g1,9542:32583029,43328839 +) +] +g1,9565:32583029,43336702 +) +] +(1,9565:32583029,45706769:0,0,0 +g1,9565:32583029,45706769 +) +) +] +(1,9565:6630773,47279633:25952256,0,0 +h1,9565:6630773,47279633:25952256,0,0 +) +] +(1,9565:4262630,4025873:0,0,0 +[1,9565:-473656,4025873:0,0,0 +(1,9565:-473656,-710413:0,0,0 +(1,9565:-473656,-710413:0,0,0 +g1,9565:-473656,-710413 +) +g1,9565:-473656,-710413 +) +] +) +] +!29996 +}152 +Input:1347:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1348:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1349:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1350:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1351:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1352:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1353:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1354:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1355:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1356:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1357:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1358:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1359:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1360:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1361:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1362:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1363:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1364:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1365:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1366:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1367:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1368:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1369:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1370:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1371:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1372:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1373:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1374:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1375:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1376:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1377:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!2926 +{153 +[1,9600:4262630,47279633:28320399,43253760,0 +(1,9600:4262630,4025873:0,0,0 +[1,9600:-473656,4025873:0,0,0 +(1,9600:-473656,-710413:0,0,0 +(1,9600:-473656,-644877:0,0,0 +k1,9600:-473656,-644877:-65536 ) -(1,10554:-473656,4736287:0,0,0 -k1,10554:-473656,4736287:5209943 +(1,9600:-473656,4736287:0,0,0 +k1,9600:-473656,4736287:5209943 ) -g1,10554:-473656,-710413 +g1,9600:-473656,-710413 ) ] ) -[1,10554:6630773,47279633:25952256,43253760,0 -[1,10554:6630773,4812305:25952256,786432,0 -(1,10554:6630773,4812305:25952256,513147,126483 -(1,10554:6630773,4812305:25952256,513147,126483 -g1,10554:3078558,4812305 -[1,10554:3078558,4812305:0,0,0 -(1,10554:3078558,2439708:0,1703936,0 -k1,10554:1358238,2439708:-1720320 -(1,8393:1358238,2439708:1720320,1703936,0 -(1,8393:1358238,2439708:1179648,16384,0 -r1,10554:2537886,2439708:1179648,16384,0 +[1,9600:6630773,47279633:25952256,43253760,0 +[1,9600:6630773,4812305:25952256,786432,0 +(1,9600:6630773,4812305:25952256,505283,134348 +(1,9600:6630773,4812305:25952256,505283,134348 +g1,9600:3078558,4812305 +[1,9600:3078558,4812305:0,0,0 +(1,9600:3078558,2439708:0,1703936,0 +k1,9600:1358238,2439708:-1720320 +(1,8606:1358238,2439708:1720320,1703936,0 +(1,8606:1358238,2439708:1179648,16384,0 +r1,9600:2537886,2439708:1179648,16384,0 ) -g1,8393:3062174,2439708 -(1,8393:3062174,2439708:16384,1703936,0 -[1,8393:3062174,2439708:25952256,1703936,0 -(1,8393:3062174,1915420:25952256,1179648,0 -(1,8393:3062174,1915420:16384,1179648,0 -r1,10554:3078558,1915420:16384,1179648,0 +g1,8606:3062174,2439708 +(1,8606:3062174,2439708:16384,1703936,0 +[1,8606:3062174,2439708:25952256,1703936,0 +(1,8606:3062174,1915420:25952256,1179648,0 +(1,8606:3062174,1915420:16384,1179648,0 +r1,9600:3078558,1915420:16384,1179648,0 ) -k1,8393:29014430,1915420:25935872 -g1,8393:29014430,1915420 +k1,8606:29014430,1915420:25935872 +g1,8606:29014430,1915420 ) ] ) ) ) ] -[1,10554:3078558,4812305:0,0,0 -(1,10554:3078558,2439708:0,1703936,0 -g1,10554:29030814,2439708 -g1,10554:36135244,2439708 -(1,8393:36135244,2439708:1720320,1703936,0 -(1,8393:36135244,2439708:16384,1703936,0 -[1,8393:36135244,2439708:25952256,1703936,0 -(1,8393:36135244,1915420:25952256,1179648,0 -(1,8393:36135244,1915420:16384,1179648,0 -r1,10554:36151628,1915420:16384,1179648,0 +[1,9600:3078558,4812305:0,0,0 +(1,9600:3078558,2439708:0,1703936,0 +g1,9600:29030814,2439708 +g1,9600:36135244,2439708 +(1,8606:36135244,2439708:1720320,1703936,0 +(1,8606:36135244,2439708:16384,1703936,0 +[1,8606:36135244,2439708:25952256,1703936,0 +(1,8606:36135244,1915420:25952256,1179648,0 +(1,8606:36135244,1915420:16384,1179648,0 +r1,9600:36151628,1915420:16384,1179648,0 ) -k1,8393:62087500,1915420:25935872 -g1,8393:62087500,1915420 +k1,8606:62087500,1915420:25935872 +g1,8606:62087500,1915420 ) ] ) -g1,8393:36675916,2439708 -(1,8393:36675916,2439708:1179648,16384,0 -r1,10554:37855564,2439708:1179648,16384,0 +g1,8606:36675916,2439708 +(1,8606:36675916,2439708:1179648,16384,0 +r1,9600:37855564,2439708:1179648,16384,0 ) ) -k1,10554:3078556,2439708:-34777008 +k1,9600:3078556,2439708:-34777008 ) ] -[1,10554:3078558,4812305:0,0,0 -(1,10554:3078558,49800853:0,16384,2228224 -k1,10554:1358238,49800853:-1720320 -(1,8393:1358238,49800853:1720320,16384,2228224 -(1,8393:1358238,49800853:1179648,16384,0 -r1,10554:2537886,49800853:1179648,16384,0 +[1,9600:3078558,4812305:0,0,0 +(1,9600:3078558,49800853:0,16384,2228224 +k1,9600:1358238,49800853:-1720320 +(1,8606:1358238,49800853:1720320,16384,2228224 +(1,8606:1358238,49800853:1179648,16384,0 +r1,9600:2537886,49800853:1179648,16384,0 ) -g1,8393:3062174,49800853 -(1,8393:3062174,52029077:16384,1703936,0 -[1,8393:3062174,52029077:25952256,1703936,0 -(1,8393:3062174,51504789:25952256,1179648,0 -(1,8393:3062174,51504789:16384,1179648,0 -r1,10554:3078558,51504789:16384,1179648,0 +g1,8606:3062174,49800853 +(1,8606:3062174,52029077:16384,1703936,0 +[1,8606:3062174,52029077:25952256,1703936,0 +(1,8606:3062174,51504789:25952256,1179648,0 +(1,8606:3062174,51504789:16384,1179648,0 +r1,9600:3078558,51504789:16384,1179648,0 ) -k1,8393:29014430,51504789:25935872 -g1,8393:29014430,51504789 +k1,8606:29014430,51504789:25935872 +g1,8606:29014430,51504789 ) ] ) ) ) ] -[1,10554:3078558,4812305:0,0,0 -(1,10554:3078558,49800853:0,16384,2228224 -g1,10554:29030814,49800853 -g1,10554:36135244,49800853 -(1,8393:36135244,49800853:1720320,16384,2228224 -(1,8393:36135244,52029077:16384,1703936,0 -[1,8393:36135244,52029077:25952256,1703936,0 -(1,8393:36135244,51504789:25952256,1179648,0 -(1,8393:36135244,51504789:16384,1179648,0 -r1,10554:36151628,51504789:16384,1179648,0 +[1,9600:3078558,4812305:0,0,0 +(1,9600:3078558,49800853:0,16384,2228224 +g1,9600:29030814,49800853 +g1,9600:36135244,49800853 +(1,8606:36135244,49800853:1720320,16384,2228224 +(1,8606:36135244,52029077:16384,1703936,0 +[1,8606:36135244,52029077:25952256,1703936,0 +(1,8606:36135244,51504789:25952256,1179648,0 +(1,8606:36135244,51504789:16384,1179648,0 +r1,9600:36151628,51504789:16384,1179648,0 +) +k1,8606:62087500,51504789:25935872 +g1,8606:62087500,51504789 +) +] +) +g1,8606:36675916,49800853 +(1,8606:36675916,49800853:1179648,16384,0 +r1,9600:37855564,49800853:1179648,16384,0 +) +) +k1,9600:3078556,49800853:-34777008 +) +] +g1,9600:6630773,4812305 +k1,9600:21643106,4812305:13816956 +g1,9600:23265777,4812305 +g1,9600:24088253,4812305 +g1,9600:28572226,4812305 +g1,9600:29981905,4812305 +) +) +] +[1,9600:6630773,45706769:25952256,40108032,0 +(1,9600:6630773,45706769:25952256,40108032,0 +(1,9600:6630773,45706769:0,0,0 +g1,9600:6630773,45706769 +) +[1,9600:6630773,45706769:25952256,40108032,0 +v1,9565:6630773,6254097:0,393216,0 +(1,9565:6630773,13315269:25952256,7454388,0 +g1,9565:6630773,13315269 +g1,9565:6237557,13315269 +r1,9600:6368629,13315269:131072,7454388,0 +g1,9565:6567858,13315269 +g1,9565:6764466,13315269 +[1,9565:6764466,13315269:25818563,7454388,0 +v1,9544:6764466,6254097:0,393216,0 +(1,9563:6764466,13118661:25818563,7257780,196608 +g1,9563:6764466,13118661 +g1,9563:6764466,13118661 +g1,9563:6567858,13118661 +(1,9563:6567858,13118661:0,7257780,196608 +r1,9600:32779637,13118661:26211779,7454388,196608 +k1,9563:6567857,13118661:-26211780 +) +(1,9563:6567858,13118661:26211779,7257780,196608 +[1,9563:6764466,13118661:25818563,7061172,0 +(1,9546:6764466,6481928:25818563,424439,112852 +(1,9545:6764466,6481928:0,0,0 +g1,9545:6764466,6481928 +g1,9545:6764466,6481928 +g1,9545:6436786,6481928 +(1,9545:6436786,6481928:0,0,0 +) +g1,9545:6764466,6481928 +) +g1,9546:10084005,6481928 +g1,9546:11079867,6481928 +h1,9546:12739637,6481928:0,0,0 +k1,9546:32583029,6481928:19843392 +g1,9546:32583029,6481928 +) +(1,9547:6764466,7166783:25818563,424439,112852 +h1,9547:6764466,7166783:0,0,0 +g1,9547:7428374,7166783 +g1,9547:8424236,7166783 +k1,9547:8424236,7166783:0 +h1,9547:14067453,7166783:0,0,0 +k1,9547:32583029,7166783:18515576 +g1,9547:32583029,7166783 +) +(1,9548:6764466,7851638:25818563,407923,86428 +h1,9548:6764466,7851638:0,0,0 +g1,9548:7096420,7851638 +g1,9548:7428374,7851638 +g1,9548:7760328,7851638 +g1,9548:8092282,7851638 +g1,9548:8424236,7851638 +g1,9548:8756190,7851638 +g1,9548:9088144,7851638 +g1,9548:9420098,7851638 +g1,9548:9752052,7851638 +g1,9548:10084006,7851638 +g1,9548:10415960,7851638 +g1,9548:10747914,7851638 +g1,9548:12075730,7851638 +g1,9548:12739638,7851638 +k1,9548:12739638,7851638:0 +h1,9548:13403546,7851638:0,0,0 +k1,9548:32583030,7851638:19179484 +g1,9548:32583030,7851638 +) +(1,9549:6764466,8536493:25818563,424439,86428 +h1,9549:6764466,8536493:0,0,0 +g1,9549:7096420,8536493 +g1,9549:7428374,8536493 +g1,9549:7760328,8536493 +g1,9549:8092282,8536493 +g1,9549:8424236,8536493 +g1,9549:8756190,8536493 +g1,9549:9088144,8536493 +g1,9549:9420098,8536493 +g1,9549:9752052,8536493 +g1,9549:10084006,8536493 +g1,9549:10415960,8536493 +g1,9549:10747914,8536493 +g1,9549:12075730,8536493 +g1,9549:12739638,8536493 +g1,9549:13403546,8536493 +g1,9549:14067454,8536493 +k1,9549:14067454,8536493:0 +h1,9549:14731362,8536493:0,0,0 +k1,9549:32583030,8536493:17851668 +g1,9549:32583030,8536493 +) +(1,9550:6764466,9221348:25818563,424439,86428 +h1,9550:6764466,9221348:0,0,0 +g1,9550:7096420,9221348 +g1,9550:7428374,9221348 +g1,9550:7760328,9221348 +g1,9550:8092282,9221348 +g1,9550:8424236,9221348 +g1,9550:8756190,9221348 +g1,9550:9088144,9221348 +g1,9550:9420098,9221348 +g1,9550:9752052,9221348 +g1,9550:10084006,9221348 +g1,9550:10415960,9221348 +g1,9550:10747914,9221348 +g1,9550:12739638,9221348 +g1,9550:13403546,9221348 +g1,9550:14067454,9221348 +g1,9550:14731362,9221348 +k1,9550:14731362,9221348:0 +h1,9550:15395270,9221348:0,0,0 +k1,9550:32583030,9221348:17187760 +g1,9550:32583030,9221348 +) +(1,9551:6764466,9906203:25818563,431045,112852 +h1,9551:6764466,9906203:0,0,0 +g1,9551:7096420,9906203 +g1,9551:7428374,9906203 +g1,9551:7760328,9906203 +g1,9551:8092282,9906203 +g1,9551:8424236,9906203 +g1,9551:8756190,9906203 +g1,9551:9088144,9906203 +g1,9551:9420098,9906203 +g1,9551:9752052,9906203 +g1,9551:10084006,9906203 +g1,9551:10415960,9906203 +g1,9551:10747914,9906203 +g1,9551:14399408,9906203 +g1,9551:16723086,9906203 +g1,9551:18714810,9906203 +g1,9551:22366303,9906203 +h1,9551:23030211,9906203:0,0,0 +k1,9551:32583029,9906203:9552818 +g1,9551:32583029,9906203 +) +(1,9552:6764466,10591058:25818563,424439,79822 +h1,9552:6764466,10591058:0,0,0 +h1,9552:7096420,10591058:0,0,0 +k1,9552:32583028,10591058:25486608 +g1,9552:32583028,10591058 +) +(1,9556:6764466,11406985:25818563,431045,112852 +(1,9554:6764466,11406985:0,0,0 +g1,9554:6764466,11406985 +g1,9554:6764466,11406985 +g1,9554:6436786,11406985 +(1,9554:6436786,11406985:0,0,0 +) +g1,9554:6764466,11406985 +) +g1,9556:7760328,11406985 +g1,9556:9088144,11406985 +g1,9556:10415960,11406985 +g1,9556:12739638,11406985 +g1,9556:14731362,11406985 +h1,9556:17386993,11406985:0,0,0 +k1,9556:32583029,11406985:15196036 +g1,9556:32583029,11406985 +) +(1,9558:6764466,12222912:25818563,424439,6605 +(1,9557:6764466,12222912:0,0,0 +g1,9557:6764466,12222912 +g1,9557:6764466,12222912 +g1,9557:6436786,12222912 +(1,9557:6436786,12222912:0,0,0 +) +g1,9557:6764466,12222912 +) +h1,9558:7096420,12222912:0,0,0 +k1,9558:32583028,12222912:25486608 +g1,9558:32583028,12222912 +) +(1,9562:6764466,13038839:25818563,424439,79822 +(1,9560:6764466,13038839:0,0,0 +g1,9560:6764466,13038839 +g1,9560:6764466,13038839 +g1,9560:6436786,13038839 +(1,9560:6436786,13038839:0,0,0 +) +g1,9560:6764466,13038839 +) +g1,9562:7760328,13038839 +g1,9562:9088144,13038839 +h1,9562:9420098,13038839:0,0,0 +k1,9562:32583030,13038839:23162932 +g1,9562:32583030,13038839 +) +] +) +g1,9563:32583029,13118661 +g1,9563:6764466,13118661 +g1,9563:6764466,13118661 +g1,9563:32583029,13118661 +g1,9563:32583029,13118661 +) +h1,9563:6764466,13315269:0,0,0 +] +g1,9565:32583029,13315269 +) +h1,9565:6630773,13315269:0,0,0 +v1,9568:6630773,14180349:0,393216,0 +(1,9591:6630773,28532720:25952256,14745587,0 +g1,9591:6630773,28532720 +g1,9591:6237557,28532720 +r1,9600:6368629,28532720:131072,14745587,0 +g1,9591:6567858,28532720 +g1,9591:6764466,28532720 +[1,9591:6764466,28532720:25818563,14745587,0 +(1,9569:6764466,14488647:25818563,701514,196608 +(1,9568:6764466,14488647:0,701514,196608 +r1,9600:8010564,14488647:1246098,898122,196608 +k1,9568:6764466,14488647:-1246098 +) +(1,9568:6764466,14488647:1246098,701514,196608 +) +k1,9568:8299739,14488647:289175 +k1,9568:8627419,14488647:327680 +k1,9568:10113282,14488647:289176 +(1,9568:10113282,14488647:0,452978,115847 +r1,9600:12933531,14488647:2820249,568825,115847 +k1,9568:10113282,14488647:-2820249 +) +(1,9568:10113282,14488647:2820249,452978,115847 +k1,9568:10113282,14488647:3277 +h1,9568:12930254,14488647:0,411205,112570 +) +k1,9568:13222706,14488647:289175 +k1,9568:16698241,14488647:289175 +k1,9568:18091699,14488647:289176 +k1,9568:21590827,14488647:289175 +k1,9568:22827653,14488647:289175 +k1,9568:25605231,14488647:289176 +(1,9568:25605231,14488647:0,459977,115847 +r1,9600:28777192,14488647:3171961,575824,115847 +k1,9568:25605231,14488647:-3171961 +) +(1,9568:25605231,14488647:3171961,459977,115847 +g1,9568:26663644,14488647 +g1,9568:27367068,14488647 +h1,9568:28773915,14488647:0,411205,112570 +) +k1,9568:29066367,14488647:289175 +k1,9568:32583029,14488647:0 +) +(1,9569:6764466,15353727:25818563,505283,126483 +k1,9568:8658104,15353727:195600 +k1,9568:9619819,15353727:195599 +k1,9568:10834504,15353727:195600 +k1,9568:14392755,15353727:195599 +k1,9568:15692637,15353727:195600 +k1,9568:16636003,15353727:195600 +k1,9568:19921625,15353727:195599 +k1,9568:20878753,15353727:195600 +k1,9568:23832108,15353727:195600 +k1,9568:26038352,15353727:195599 +k1,9568:26916837,15353727:195600 +k1,9568:29528093,15353727:195599 +k1,9568:31734338,15353727:195600 +k1,9569:32583029,15353727:0 +) +(1,9569:6764466,16218807:25818563,505283,134348 +k1,9568:9147859,16218807:240366 +k1,9568:10149753,16218807:240366 +k1,9568:11409204,16218807:240366 +k1,9568:13303043,16218807:240366 +k1,9568:14908524,16218807:240366 +k1,9568:16345577,16218807:240366 +k1,9568:19824731,16218807:240365 +k1,9568:20596594,16218807:240366 +k1,9568:22487157,16218807:240366 +k1,9568:25082887,16218807:240366 +k1,9568:26514698,16218807:240366 +k1,9568:29476119,16218807:240366 +k1,9568:31386342,16218807:240366 +k1,9568:32583029,16218807:0 +) +(1,9569:6764466,17083887:25818563,513147,134348 +k1,9568:10282118,17083887:212671 +k1,9568:11154081,17083887:212671 +k1,9568:12385837,17083887:212671 +k1,9568:13904641,17083887:212671 +(1,9568:13904641,17083887:0,452978,115847 +r1,9600:16724890,17083887:2820249,568825,115847 +k1,9568:13904641,17083887:-2820249 +) +(1,9568:13904641,17083887:2820249,452978,115847 +k1,9568:13904641,17083887:3277 +h1,9568:16721613,17083887:0,411205,112570 +) +k1,9568:16937561,17083887:212671 +k1,9568:19811649,17083887:212671 +k1,9568:21879644,17083887:212671 +k1,9568:23790353,17083887:212671 +k1,9568:26289575,17083887:212671 +k1,9568:28237639,17083887:212671 +(1,9568:28237639,17083887:0,459977,115847 +r1,9600:31409600,17083887:3171961,575824,115847 +k1,9568:28237639,17083887:-3171961 +) +(1,9568:28237639,17083887:3171961,459977,115847 +g1,9568:29296052,17083887 +g1,9568:29999476,17083887 +h1,9568:31406323,17083887:0,411205,112570 +) +k1,9568:31622271,17083887:212671 +k1,9569:32583029,17083887:0 +) +(1,9569:6764466,17948967:25818563,513147,134348 +k1,9568:8980573,17948967:190389 +k1,9568:11369040,17948967:190389 +k1,9568:13359703,17948967:190389 +k1,9568:14880474,17948967:190390 +k1,9568:16641106,17948967:190389 +k1,9568:18327682,17948967:190389 +k1,9568:20253464,17948967:190389 +(1,9568:20253464,17948967:0,452978,115847 +r1,9600:23073713,17948967:2820249,568825,115847 +k1,9568:20253464,17948967:-2820249 +) +(1,9568:20253464,17948967:2820249,452978,115847 +k1,9568:20253464,17948967:3277 +h1,9568:23070436,17948967:0,411205,112570 +) +k1,9568:23264102,17948967:190389 +k1,9568:24159658,17948967:190389 +k1,9568:26093961,17948967:190390 +k1,9568:27350621,17948967:190389 +k1,9568:28506355,17948967:190389 +k1,9568:31189078,17948967:190389 +k1,9568:32583029,17948967:0 +) +(1,9569:6764466,18814047:25818563,513147,126483 +k1,9568:7768150,18814047:215286 +k1,9568:9075920,18814047:215285 +k1,9568:10628140,18814047:215286 +k1,9568:12109582,18814047:215286 +k1,9568:13343953,18814047:215286 +k1,9568:15209435,18814047:215285 +k1,9568:17890185,18814047:215286 +k1,9568:19606245,18814047:215286 +k1,9568:21334756,18814047:215285 +k1,9568:23418473,18814047:215286 +k1,9568:25504157,18814047:215286 +k1,9568:26370871,18814047:215286 +k1,9568:30424600,18814047:215285 +k1,9568:31563944,18814047:215286 +k1,9568:32583029,18814047:0 +) +(1,9569:6764466,19679127:25818563,505283,115847 +g1,9568:8665665,19679127 +g1,9568:10644852,19679127 +g1,9568:12238032,19679127 +g1,9568:15662288,19679127 +g1,9568:17558899,19679127 +(1,9568:17558899,19679127:0,452978,115847 +r1,9600:20379148,19679127:2820249,568825,115847 +k1,9568:17558899,19679127:-2820249 +) +(1,9568:17558899,19679127:2820249,452978,115847 +k1,9568:17558899,19679127:3277 +h1,9568:20375871,19679127:0,411205,112570 +) +g1,9568:20578377,19679127 +g1,9568:21309103,19679127 +g1,9568:23378730,19679127 +g1,9568:24229387,19679127 +g1,9568:25840917,19679127 +g1,9568:27231591,19679127 +k1,9569:32583029,19679127:1512994 +g1,9569:32583029,19679127 +) +v1,9571:6764466,20363982:0,393216,0 +(1,9588:6764466,28336112:25818563,8365346,196608 +g1,9588:6764466,28336112 +g1,9588:6764466,28336112 +g1,9588:6567858,28336112 +(1,9588:6567858,28336112:0,8365346,196608 +r1,9600:32779637,28336112:26211779,8561954,196608 +k1,9588:6567857,28336112:-26211780 +) +(1,9588:6567858,28336112:26211779,8365346,196608 +[1,9588:6764466,28336112:25818563,8168738,0 +(1,9573:6764466,20591813:25818563,424439,112852 +(1,9572:6764466,20591813:0,0,0 +g1,9572:6764466,20591813 +g1,9572:6764466,20591813 +g1,9572:6436786,20591813 +(1,9572:6436786,20591813:0,0,0 +) +g1,9572:6764466,20591813 +) +g1,9573:10084005,20591813 +g1,9573:11079867,20591813 +h1,9573:12739637,20591813:0,0,0 +k1,9573:32583029,20591813:19843392 +g1,9573:32583029,20591813 +) +(1,9574:6764466,21276668:25818563,431045,112852 +h1,9574:6764466,21276668:0,0,0 +g1,9574:7760328,21276668 +g1,9574:11411821,21276668 +g1,9574:12407683,21276668 +g1,9574:14731361,21276668 +h1,9574:15063315,21276668:0,0,0 +k1,9574:32583029,21276668:17519714 +g1,9574:32583029,21276668 +) +(1,9575:6764466,21961523:25818563,424439,6605 +h1,9575:6764466,21961523:0,0,0 +g1,9575:7096420,21961523 +g1,9575:7428374,21961523 +g1,9575:8092282,21961523 +g1,9575:9088144,21961523 +h1,9575:9420098,21961523:0,0,0 +k1,9575:32583030,21961523:23162932 +g1,9575:32583030,21961523 +) +(1,9576:6764466,22646378:25818563,431045,112852 +h1,9576:6764466,22646378:0,0,0 +g1,9576:7428374,22646378 +g1,9576:9088144,22646378 +g1,9576:10084006,22646378 +g1,9576:13735499,22646378 +g1,9576:14731361,22646378 +g1,9576:17055039,22646378 +h1,9576:17386993,22646378:0,0,0 +k1,9576:32583029,22646378:15196036 +g1,9576:32583029,22646378 +) +(1,9577:6764466,23331233:25818563,424439,79822 +h1,9577:6764466,23331233:0,0,0 +g1,9577:7096420,23331233 +g1,9577:7428374,23331233 +g1,9577:8092282,23331233 +g1,9577:9088144,23331233 +g1,9577:9752052,23331233 +g1,9577:10415960,23331233 +h1,9577:10747914,23331233:0,0,0 +k1,9577:32583030,23331233:21835116 +g1,9577:32583030,23331233 +) +(1,9578:6764466,24016088:25818563,431045,112852 +h1,9578:6764466,24016088:0,0,0 +g1,9578:7428374,24016088 +g1,9578:9088144,24016088 +g1,9578:10084006,24016088 +g1,9578:13735499,24016088 +g1,9578:14731361,24016088 +g1,9578:17386993,24016088 +h1,9578:17718947,24016088:0,0,0 +k1,9578:32583029,24016088:14864082 +g1,9578:32583029,24016088 +) +(1,9579:6764466,24700943:25818563,424439,79822 +h1,9579:6764466,24700943:0,0,0 +g1,9579:7096420,24700943 +g1,9579:7428374,24700943 +g1,9579:8092282,24700943 +g1,9579:9088144,24700943 +g1,9579:9752052,24700943 +g1,9579:10415960,24700943 +h1,9579:10747914,24700943:0,0,0 +k1,9579:32583030,24700943:21835116 +g1,9579:32583030,24700943 +) +(1,9580:6764466,25385798:25818563,424439,79822 +h1,9580:6764466,25385798:0,0,0 +g1,9580:7428374,25385798 +g1,9580:9088144,25385798 +h1,9580:9420098,25385798:0,0,0 +k1,9580:32583030,25385798:23162932 +g1,9580:32583030,25385798 +) +(1,9581:6764466,26070653:25818563,424439,9908 +h1,9581:6764466,26070653:0,0,0 +g1,9581:7096420,26070653 +g1,9581:7428374,26070653 +g1,9581:8092282,26070653 +g1,9581:9088144,26070653 +h1,9581:9420098,26070653:0,0,0 +k1,9581:32583030,26070653:23162932 +g1,9581:32583030,26070653 +) +(1,9582:6764466,26755508:25818563,424439,79822 +h1,9582:6764466,26755508:0,0,0 +h1,9582:7096420,26755508:0,0,0 +k1,9582:32583028,26755508:25486608 +g1,9582:32583028,26755508 +) +(1,9583:6764466,27440363:25818563,424439,6605 +h1,9583:6764466,27440363:0,0,0 +h1,9583:7096420,27440363:0,0,0 +k1,9583:32583028,27440363:25486608 +g1,9583:32583028,27440363 +) +(1,9587:6764466,28256290:25818563,424439,79822 +(1,9585:6764466,28256290:0,0,0 +g1,9585:6764466,28256290 +g1,9585:6764466,28256290 +g1,9585:6436786,28256290 +(1,9585:6436786,28256290:0,0,0 +) +g1,9585:6764466,28256290 +) +g1,9587:7760328,28256290 +g1,9587:9088144,28256290 +h1,9587:10084006,28256290:0,0,0 +k1,9587:32583030,28256290:22499024 +g1,9587:32583030,28256290 +) +] +) +g1,9588:32583029,28336112 +g1,9588:6764466,28336112 +g1,9588:6764466,28336112 +g1,9588:32583029,28336112 +g1,9588:32583029,28336112 +) +h1,9588:6764466,28532720:0,0,0 +] +g1,9591:32583029,28532720 +) +h1,9591:6630773,28532720:0,0,0 +(1,9593:6630773,30649538:25952256,555811,127104 +(1,9593:6630773,30649538:2450326,534184,12975 +g1,9593:6630773,30649538 +g1,9593:9081099,30649538 +) +g1,9593:13232740,30649538 +(1,9593:13232740,30649538:0,505647,127104 +r1,9600:16334358,30649538:3101618,632751,127104 +k1,9593:13232740,30649538:-3101618 +) +(1,9593:13232740,30649538:3101618,505647,127104 +k1,9593:13232740,30649538:3277 +h1,9593:16331081,30649538:0,452326,123827 +) +k1,9593:32583029,30649538:16248671 +g1,9593:32583029,30649538 +) +(1,9597:6630773,31907834:25952256,513147,134348 +k1,9595:10252481,31907834:183689 +k1,9595:12031316,31907834:183689 +k1,9595:12746502,31907834:183689 +k1,9595:13286051,31907834:183689 +k1,9595:16855986,31907834:183690 +k1,9595:17698967,31907834:183689 +k1,9595:18901741,31907834:183689 +k1,9595:19500257,31907834:183673 +k1,9595:22699913,31907834:183689 +k1,9595:23955772,31907834:183690 +k1,9595:25493435,31907834:183689 +k1,9595:27654345,31907834:183689 +k1,9595:28785685,31907834:183689 +k1,9595:31227089,31907834:183689 +k1,9597:32583029,31907834:0 +) +(1,9597:6630773,32772914:25952256,513147,134348 +k1,9595:7996325,32772914:153136 +k1,9595:9645647,32772914:153135 +k1,9595:11083289,32772914:153136 +k1,9595:12573359,32772914:153136 +k1,9595:15138875,32772914:153136 +k1,9595:17135538,32772914:153135 +k1,9595:18731121,32772914:153136 +k1,9595:21520115,32772914:153136 +k1,9595:24978232,32772914:153136 +k1,9595:26203536,32772914:153135 +k1,9595:27422943,32772914:153136 +k1,9595:30913172,32772914:153136 +k1,9595:32583029,32772914:0 +) +(1,9597:6630773,33637994:25952256,513147,126483 +k1,9596:10268326,33637994:199534 +k1,9596:14061198,33637994:199533 +k1,9596:17336337,33637994:199534 +k1,9596:18067367,33637994:199533 +k1,9596:20183829,33637994:199534 +k1,9596:21144890,33637994:199533 +k1,9596:23412740,33637994:199534 +k1,9596:24271565,33637994:199533 +k1,9596:27069602,33637994:199534 +(1,9596:27069602,33637994:0,459977,115847 +r1,9600:29889851,33637994:2820249,575824,115847 +k1,9596:27069602,33637994:-2820249 +) +(1,9596:27069602,33637994:2820249,459977,115847 +k1,9596:27069602,33637994:3277 +h1,9596:29886574,33637994:0,411205,112570 +) +k1,9596:30089384,33637994:199533 +k1,9596:32583029,33637994:0 +) +(1,9597:6630773,34503074:25952256,513147,134348 +k1,9596:7562930,34503074:245995 +k1,9596:8164786,34503074:245996 +k1,9596:10283800,34503074:245995 +k1,9596:12535197,34503074:245995 +k1,9596:14162036,34503074:245995 +k1,9596:17103528,34503074:245996 +k1,9596:19032488,34503074:245995 +k1,9596:20933267,34503074:245995 +k1,9596:24755562,34503074:245995 +k1,9596:25357418,34503074:245996 +(1,9596:25357418,34503074:0,452978,122846 +r1,9600:27825955,34503074:2468537,575824,122846 +k1,9596:25357418,34503074:-2468537 +) +(1,9596:25357418,34503074:2468537,452978,122846 +k1,9596:25357418,34503074:3277 +h1,9596:27822678,34503074:0,411205,112570 +) +k1,9596:28071950,34503074:245995 +k1,9596:30295822,34503074:245995 +k1,9596:32583029,34503074:0 +) +(1,9597:6630773,35368154:25952256,513147,126483 +k1,9596:7799919,35368154:150061 +k1,9596:9792851,35368154:150060 +k1,9596:10602204,35368154:150061 +k1,9596:11108125,35368154:150061 +k1,9596:12449631,35368154:150061 +k1,9596:16087517,35368154:150060 +(1,9596:16087517,35368154:0,414482,115847 +r1,9600:17500918,35368154:1413401,530329,115847 +k1,9596:16087517,35368154:-1413401 +) +(1,9596:16087517,35368154:1413401,414482,115847 +k1,9596:16087517,35368154:3277 +h1,9596:17497641,35368154:0,411205,112570 +) +k1,9596:18031743,35368154:150061 +k1,9596:18952507,35368154:150061 +k1,9596:22542552,35368154:150060 +k1,9596:23344041,35368154:150061 +k1,9596:24586587,35368154:150061 +k1,9596:25684299,35368154:150061 +(1,9596:25684299,35368154:0,414482,115847 +r1,9600:27097700,35368154:1413401,530329,115847 +k1,9596:25684299,35368154:-1413401 +) +(1,9596:25684299,35368154:1413401,414482,115847 +k1,9596:25684299,35368154:3277 +h1,9596:27094423,35368154:0,411205,112570 +) +k1,9596:27247760,35368154:150060 +k1,9596:29095203,35368154:150061 +k1,9597:32583029,35368154:0 +) +(1,9597:6630773,36233234:25952256,513147,126483 +(1,9596:6630773,36233234:0,414482,115847 +r1,9600:7692462,36233234:1061689,530329,115847 +k1,9596:6630773,36233234:-1061689 +) +(1,9596:6630773,36233234:1061689,414482,115847 +k1,9596:6630773,36233234:3277 +h1,9596:7689185,36233234:0,411205,112570 +) +k1,9596:8278227,36233234:205001 +k1,9596:9674674,36233234:205002 +k1,9596:10650378,36233234:205001 +k1,9596:14295364,36233234:205001 +k1,9596:15151794,36233234:205002 +k1,9596:16449280,36233234:205001 +k1,9596:17601933,36233234:205002 +(1,9596:17601933,36233234:0,414482,115847 +r1,9600:19367046,36233234:1765113,530329,115847 +k1,9596:17601933,36233234:-1765113 +) +(1,9596:17601933,36233234:1765113,414482,115847 +k1,9596:17601933,36233234:3277 +h1,9596:19363769,36233234:0,411205,112570 +) +k1,9596:19572047,36233234:205001 +k1,9596:21474430,36233234:205001 +k1,9596:25167258,36233234:205002 +(1,9596:25167258,36233234:0,414482,115847 +r1,9600:25877236,36233234:709978,530329,115847 +k1,9596:25167258,36233234:-709978 +) +(1,9596:25167258,36233234:709978,414482,115847 +k1,9596:25167258,36233234:3277 +h1,9596:25873959,36233234:0,411205,112570 +) +k1,9596:26463001,36233234:205001 +k1,9596:27412491,36233234:205001 +k1,9596:29069115,36233234:205002 +k1,9596:31023272,36233234:205001 +k1,9597:32583029,36233234:0 +) +(1,9597:6630773,37098314:25952256,513147,134348 +k1,9596:8088340,37098314:190101 +k1,9596:10023009,37098314:190101 +k1,9596:11232194,37098314:190100 +k1,9596:13904143,37098314:190101 +k1,9596:15113329,37098314:190101 +k1,9596:16983773,37098314:190101 +k1,9596:19932283,37098314:190100 +k1,9596:20738422,37098314:190101 +k1,9596:21947608,37098314:190101 +k1,9596:24916436,37098314:190101 +k1,9596:27084414,37098314:190101 +k1,9596:27806011,37098314:190100 +k1,9596:29763618,37098314:190101 +k1,9596:31521340,37098314:190101 +(1,9596:31521340,37098314:0,414482,115847 +r1,9600:32583029,37098314:1061689,530329,115847 +k1,9596:31521340,37098314:-1061689 +) +(1,9596:31521340,37098314:1061689,414482,115847 +k1,9596:31521340,37098314:3277 +h1,9596:32579752,37098314:0,411205,112570 +) +k1,9596:32583029,37098314:0 +) +(1,9597:6630773,37963394:25952256,513147,134348 +k1,9596:7308865,37963394:212131 +k1,9596:8540082,37963394:212132 +k1,9596:13375778,37963394:212131 +k1,9596:16211315,37963394:212131 +k1,9596:17082738,37963394:212131 +k1,9596:18313955,37963394:212132 +(1,9596:18313955,37963394:0,414482,115847 +r1,9600:19727356,37963394:1413401,530329,115847 +k1,9596:18313955,37963394:-1413401 +) +(1,9596:18313955,37963394:1413401,414482,115847 +k1,9596:18313955,37963394:3277 +h1,9596:19724079,37963394:0,411205,112570 +) +k1,9596:19939487,37963394:212131 +k1,9596:22221245,37963394:212131 +k1,9596:24411253,37963394:212131 +k1,9596:25154882,37963394:212132 +(1,9596:25154882,37963394:0,414482,115847 +r1,9600:26568283,37963394:1413401,530329,115847 +k1,9596:25154882,37963394:-1413401 +) +(1,9596:25154882,37963394:1413401,414482,115847 +k1,9596:25154882,37963394:3277 +h1,9596:26565006,37963394:0,411205,112570 +) +k1,9596:26780414,37963394:212131 +k1,9596:28183990,37963394:212131 +k1,9596:29963742,37963394:212131 +(1,9596:29963742,37963394:0,414482,115847 +r1,9600:30673720,37963394:709978,530329,115847 +k1,9596:29963742,37963394:-709978 +) +(1,9596:29963742,37963394:709978,414482,115847 +k1,9596:29963742,37963394:3277 +h1,9596:30670443,37963394:0,411205,112570 +) +k1,9596:30885852,37963394:212132 +k1,9596:31563944,37963394:212131 +k1,9596:32583029,37963394:0 +) +(1,9597:6630773,38828474:25952256,513147,134348 +k1,9596:11488202,38828474:233864 +k1,9596:14345472,38828474:233864 +k1,9596:15246492,38828474:233864 +(1,9596:15246492,38828474:0,414482,115847 +r1,9600:16659893,38828474:1413401,530329,115847 +k1,9596:15246492,38828474:-1413401 +) +(1,9596:15246492,38828474:1413401,414482,115847 +k1,9596:15246492,38828474:3277 +h1,9596:16656616,38828474:0,411205,112570 +) +k1,9596:16893757,38828474:233864 +k1,9596:17659118,38828474:233864 +(1,9596:17659118,38828474:0,414482,115847 +r1,9600:19424231,38828474:1765113,530329,115847 +k1,9596:17659118,38828474:-1765113 +) +(1,9596:17659118,38828474:1765113,414482,115847 +k1,9596:17659118,38828474:3277 +h1,9596:19420954,38828474:0,411205,112570 +) +k1,9596:19831765,38828474:233864 +k1,9596:20963472,38828474:233864 +k1,9596:22852120,38828474:233864 +k1,9596:26488613,38828474:233864 +k1,9596:27826759,38828474:233864 +k1,9596:28808389,38828474:233864 +k1,9596:30174060,38828474:233864 +k1,9596:30822732,38828474:233829 +k1,9597:32583029,38828474:0 +) +(1,9597:6630773,39693554:25952256,513147,134348 +k1,9596:8436894,39693554:167066 +k1,9596:11604855,39693554:167067 +k1,9596:12791006,39693554:167066 +k1,9596:15670607,39693554:167066 +k1,9596:18319522,39693554:167067 +k1,9596:19114423,39693554:167066 +k1,9596:20300574,39693554:167066 +k1,9596:21834721,39693554:167066 +k1,9596:22661080,39693554:167067 +k1,9596:25136324,39693554:167066 +k1,9596:27508677,39693554:167066 +k1,9596:28361906,39693554:167067 +k1,9596:31931601,39693554:167066 +k1,9596:32583029,39693554:0 +) +(1,9597:6630773,40558634:25952256,513147,134348 +k1,9596:10420938,40558634:179131 +(1,9596:10420938,40558634:0,414482,115847 +r1,9600:11482627,40558634:1061689,530329,115847 +k1,9596:10420938,40558634:-1061689 +) +(1,9596:10420938,40558634:1061689,414482,115847 +k1,9596:10420938,40558634:3277 +h1,9596:11479350,40558634:0,411205,112570 +) +k1,9596:11661758,40558634:179131 +k1,9596:13032334,40558634:179131 +(1,9596:13032334,40558634:0,414482,115847 +r1,9600:13742312,40558634:709978,530329,115847 +k1,9596:13032334,40558634:-709978 +) +(1,9596:13032334,40558634:709978,414482,115847 +k1,9596:13032334,40558634:3277 +h1,9596:13739035,40558634:0,411205,112570 +) +k1,9596:14095113,40558634:179131 +k1,9596:17133580,40558634:179131 +k1,9596:18445173,40558634:179131 +k1,9596:19976966,40558634:179130 +k1,9596:21818745,40558634:179131 +k1,9596:22463837,40558634:179131 +k1,9596:24023156,40558634:179131 +k1,9596:25193847,40558634:179131 +k1,9596:27693608,40558634:179131 +k1,9596:29315186,40558634:179131 +k1,9596:30513402,40558634:179131 +k1,9596:32583029,40558634:0 +) +(1,9597:6630773,41423714:25952256,505283,134348 +k1,9596:8832527,41423714:223877 +k1,9596:11835132,41423714:223878 +k1,9596:12820537,41423714:223877 +k1,9596:14063500,41423714:223878 +k1,9596:17727362,41423714:223877 +k1,9596:20156527,41423714:223878 +k1,9596:21066566,41423714:223877 +k1,9596:24362771,41423714:223877 +k1,9596:25238077,41423714:223878 +(1,9596:25238077,41423714:0,414482,115847 +r1,9600:26651478,41423714:1413401,530329,115847 +k1,9596:25238077,41423714:-1413401 +) +(1,9596:25238077,41423714:1413401,414482,115847 +k1,9596:25238077,41423714:3277 +h1,9596:26648201,41423714:0,411205,112570 +) +k1,9596:27049025,41423714:223877 +k1,9596:28159605,41423714:223878 +k1,9596:31242818,41423714:223877 +k1,9596:32583029,41423714:0 +) +(1,9597:6630773,42288794:25952256,513147,134348 +g1,9596:9111310,42288794 +g1,9596:9961967,42288794 +(1,9596:9961967,42288794:0,414482,115847 +r1,9600:11375368,42288794:1413401,530329,115847 +k1,9596:9961967,42288794:-1413401 +) +(1,9596:9961967,42288794:1413401,414482,115847 +k1,9596:9961967,42288794:3277 +h1,9596:11372091,42288794:0,411205,112570 +) +g1,9596:11748267,42288794 +g1,9596:13414192,42288794 +g1,9596:14087246,42288794 +(1,9596:14087246,42288794:0,414482,115847 +r1,9600:15148935,42288794:1061689,530329,115847 +k1,9596:14087246,42288794:-1061689 +) +(1,9596:14087246,42288794:1061689,414482,115847 +k1,9596:14087246,42288794:3277 +h1,9596:15145658,42288794:0,411205,112570 +) +g1,9596:15348164,42288794 +g1,9596:17757267,42288794 +(1,9596:17757267,42288794:0,414482,115847 +r1,9600:18467245,42288794:709978,530329,115847 +k1,9596:17757267,42288794:-709978 +) +(1,9596:17757267,42288794:709978,414482,115847 +k1,9596:17757267,42288794:3277 +h1,9596:18463968,42288794:0,411205,112570 +) +g1,9596:18666474,42288794 +g1,9596:19857263,42288794 +g1,9596:22080899,42288794 +g1,9596:23722575,42288794 +(1,9596:23722575,42288794:0,414482,115847 +r1,9600:25135976,42288794:1413401,530329,115847 +k1,9596:23722575,42288794:-1413401 +) +(1,9596:23722575,42288794:1413401,414482,115847 +k1,9596:23722575,42288794:3277 +h1,9596:25132699,42288794:0,411205,112570 +) +k1,9597:32583029,42288794:7273383 +g1,9597:32583029,42288794 +) +(1,9599:6630773,43153874:25952256,513147,134348 +h1,9598:6630773,43153874:983040,0,0 +k1,9598:8998898,43153874:188398 +k1,9598:10537337,43153874:188397 +k1,9598:12375276,43153874:188398 +k1,9598:13511325,43153874:188398 +(1,9598:13511325,43153874:0,459977,115847 +r1,9600:16331574,43153874:2820249,575824,115847 +k1,9598:13511325,43153874:-2820249 +) +(1,9598:13511325,43153874:2820249,459977,115847 +k1,9598:13511325,43153874:3277 +h1,9598:16328297,43153874:0,411205,112570 +) +k1,9598:16519972,43153874:188398 +k1,9598:17239866,43153874:188397 +k1,9598:19630274,43153874:188398 +k1,9598:20470100,43153874:188398 +k1,9598:21943003,43153874:188397 +k1,9598:23079052,43153874:188398 +(1,9598:23079052,43153874:0,459977,115847 +r1,9600:26251013,43153874:3171961,575824,115847 +k1,9598:23079052,43153874:-3171961 +) +(1,9598:23079052,43153874:3171961,459977,115847 +g1,9598:24137465,43153874 +g1,9598:24840889,43153874 +h1,9598:26247736,43153874:0,411205,112570 +) +k1,9598:26439411,43153874:188398 +k1,9598:28703334,43153874:188398 +k1,9598:29701101,43153874:188397 +k1,9598:31387652,43153874:188398 +h1,9598:32583029,43153874:0,0,0 +k1,9598:32583029,43153874:0 +) +(1,9599:6630773,44018954:25952256,513147,134348 +k1,9598:7988788,44018954:285846 +k1,9598:10646382,44018954:285846 +k1,9598:11548267,44018954:285847 +k1,9598:14217657,44018954:285846 +k1,9598:15154931,44018954:285846 +k1,9598:16459862,44018954:285846 +k1,9598:19938622,44018954:285846 +k1,9598:23178176,44018954:285846 +k1,9598:24123315,44018954:285847 +k1,9598:26891009,44018954:285846 +k1,9598:28245747,44018954:285846 +k1,9598:29550678,44018954:285846 +k1,9598:32583029,44018954:0 +) +] +(1,9600:32583029,45706769:0,0,0 +g1,9600:32583029,45706769 +) +) +] +(1,9600:6630773,47279633:25952256,0,0 +h1,9600:6630773,47279633:25952256,0,0 +) +] +(1,9600:4262630,4025873:0,0,0 +[1,9600:-473656,4025873:0,0,0 +(1,9600:-473656,-710413:0,0,0 +(1,9600:-473656,-710413:0,0,0 +g1,9600:-473656,-710413 +) +g1,9600:-473656,-710413 +) +] +) +] +!31318 +}153 +Input:1378:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1379:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1380:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1381:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1382:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1383:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1384:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1385:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1386:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1387:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1388:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1389:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1390:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1391:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1392:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1393:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1394:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1395:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1396:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1397:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1398:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1399:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!2080 +{154 +[1,9700:4262630,47279633:28320399,43253760,0 +(1,9700:4262630,4025873:0,0,0 +[1,9700:-473656,4025873:0,0,0 +(1,9700:-473656,-710413:0,0,0 +(1,9700:-473656,-644877:0,0,0 +k1,9700:-473656,-644877:-65536 ) -k1,8393:62087500,51504789:25935872 -g1,8393:62087500,51504789 +(1,9700:-473656,4736287:0,0,0 +k1,9700:-473656,4736287:5209943 +) +g1,9700:-473656,-710413 ) ] ) -g1,8393:36675916,49800853 -(1,8393:36675916,49800853:1179648,16384,0 -r1,10554:37855564,49800853:1179648,16384,0 +[1,9700:6630773,47279633:25952256,43253760,0 +[1,9700:6630773,4812305:25952256,786432,0 +(1,9700:6630773,4812305:25952256,505283,11795 +(1,9700:6630773,4812305:25952256,505283,11795 +g1,9700:3078558,4812305 +[1,9700:3078558,4812305:0,0,0 +(1,9700:3078558,2439708:0,1703936,0 +k1,9700:1358238,2439708:-1720320 +(1,8606:1358238,2439708:1720320,1703936,0 +(1,8606:1358238,2439708:1179648,16384,0 +r1,9700:2537886,2439708:1179648,16384,0 ) +g1,8606:3062174,2439708 +(1,8606:3062174,2439708:16384,1703936,0 +[1,8606:3062174,2439708:25952256,1703936,0 +(1,8606:3062174,1915420:25952256,1179648,0 +(1,8606:3062174,1915420:16384,1179648,0 +r1,9700:3078558,1915420:16384,1179648,0 ) -k1,10554:3078556,49800853:-34777008 +k1,8606:29014430,1915420:25935872 +g1,8606:29014430,1915420 ) -] -g1,10554:6630773,4812305 -g1,10554:6630773,4812305 -g1,10554:8671564,4812305 -g1,10554:11756343,4812305 -k1,10554:31387651,4812305:19631308 -) -) -] -[1,10554:6630773,45706769:25952256,40108032,0 -(1,10554:6630773,45706769:25952256,40108032,0 -(1,10554:6630773,45706769:0,0,0 -g1,10554:6630773,45706769 -) -[1,10554:6630773,45706769:25952256,40108032,0 -(1,10492:6630773,6254097:25952256,505283,134348 -(1,10491:6837867,6254097:0,435480,115847 -r1,10554:10361540,6254097:3523673,551327,115847 -k1,10491:6837867,6254097:-3523673 -) -(1,10491:6837867,6254097:3523673,435480,115847 -g1,10491:9303127,6254097 -g1,10491:10006551,6254097 -h1,10491:10358263,6254097:0,411205,112570 -) -k1,10491:11021900,6254097:279596 -k1,10491:11657357,6254097:279597 -k1,10491:14024275,6254097:279596 -k1,10491:14835368,6254097:279596 -k1,10491:18067362,6254097:279597 -k1,10491:19740909,6254097:279596 -k1,10491:21472127,6254097:279596 -k1,10491:24134612,6254097:279596 -k1,10491:27776206,6254097:279597 -k1,10491:29074887,6254097:279596 -k1,10491:32583029,6254097:0 -) -(1,10492:6630773,7095585:25952256,513147,134348 -k1,10491:7765439,7095585:187015 -k1,10491:8971539,7095585:187015 -k1,10491:13782119,7095585:187015 -k1,10491:16352023,7095585:187015 -k1,10491:17155075,7095585:187014 -k1,10491:18361175,7095585:187015 -k1,10491:20983508,7095585:187015 -k1,10491:23257845,7095585:187015 -(1,10491:23464939,7095585:0,452978,115847 -r1,10554:28395459,7095585:4930520,568825,115847 -k1,10491:23464939,7095585:-4930520 -) -(1,10491:23464939,7095585:4930520,452978,115847 -k1,10491:23464939,7095585:3277 -h1,10491:28392182,7095585:0,411205,112570 -) -k1,10491:28963238,7095585:187015 -k1,10491:29778088,7095585:187015 -k1,10491:32583029,7095585:0 -) -(1,10492:6630773,7937073:25952256,505283,126483 -k1,10491:8541285,7937073:212474 -k1,10491:9622110,7937073:212473 -k1,10491:12622486,7937073:212474 -k1,10491:14038856,7937073:212474 -k1,10491:17759472,7937073:212474 -(1,10491:17966566,7937073:0,435480,115847 -r1,10554:21490239,7937073:3523673,551327,115847 -k1,10491:17966566,7937073:-3523673 -) -(1,10491:17966566,7937073:3523673,435480,115847 -g1,10491:20431826,7937073 -g1,10491:21135250,7937073 -h1,10491:21486962,7937073:0,411205,112570 -) -k1,10491:22083476,7937073:212473 -k1,10491:23747572,7937073:212474 -k1,10491:26342935,7937073:212474 -k1,10491:27171447,7937073:212474 -k1,10491:28403005,7937073:212473 -k1,10491:31394206,7937073:212474 -k1,10492:32583029,7937073:0 -) -(1,10492:6630773,8778561:25952256,513147,134348 -k1,10491:8014541,8778561:272277 -k1,10491:10988867,8778561:272277 -k1,10491:12280228,8778561:272276 -k1,10491:16060647,8778561:272277 -k1,10491:17280575,8778561:272277 -k1,10491:18709562,8778561:272277 -k1,10491:20185734,8778561:272276 -k1,10491:21074049,8778561:272277 -k1,10491:22365411,8778561:272277 -k1,10491:25073006,8778561:272277 -k1,10491:27168494,8778561:272276 -k1,10491:29074584,8778561:272277 -k1,10491:32051532,8778561:272277 -k1,10491:32583029,8778561:0 -) -(1,10492:6630773,9620049:25952256,513147,134348 -k1,10491:8105535,9620049:190256 -k1,10491:9057319,9620049:190256 -k1,10491:10982968,9620049:190256 -(1,10491:10982968,9620049:0,452978,115847 -r1,10554:13451505,9620049:2468537,568825,115847 -k1,10491:10982968,9620049:-2468537 -) -(1,10491:10982968,9620049:2468537,452978,115847 -k1,10491:10982968,9620049:3277 -h1,10491:13448228,9620049:0,411205,112570 -) -k1,10491:13641762,9620049:190257 -k1,10491:14851103,9620049:190256 -k1,10491:18386317,9620049:190256 -k1,10491:19235865,9620049:190256 -k1,10491:20445206,9620049:190256 -k1,10491:23070780,9620049:190256 -k1,10491:25348358,9620049:190256 -k1,10491:26221500,9620049:190257 -k1,10491:28061297,9620049:190256 -k1,10491:29638950,9620049:190256 -k1,10491:31714677,9620049:190256 -k1,10491:32583029,9620049:0 -) -(1,10492:6630773,10461537:25952256,505283,134348 -k1,10491:9583753,10461537:165078 -k1,10491:13256972,10461537:165077 -k1,10491:17667472,10461537:165078 -k1,10491:22353224,10461537:165078 -k1,10491:24213062,10461537:165077 -k1,10491:25708521,10461537:165078 -k1,10491:28607106,10461537:165078 -k1,10491:29763743,10461537:165077 -k1,10491:31966991,10461537:165078 -k1,10492:32583029,10461537:0 -) -(1,10492:6630773,11303025:25952256,513147,134348 -k1,10491:7381160,11303025:161874 -k1,10491:9241072,11303025:161874 -k1,10491:12116137,11303025:161874 -k1,10491:14870614,11303025:161873 -k1,10491:16299954,11303025:161874 -k1,10491:16817688,11303025:161874 -k1,10491:18852581,11303025:161874 -k1,10491:20868469,11303025:161874 -k1,10491:22049428,11303025:161874 -k1,10491:23745499,11303025:161873 -k1,10491:26350555,11303025:161874 -k1,10491:29399290,11303025:161874 -k1,10491:31206118,11303025:161874 -k1,10491:32583029,11303025:0 -) -(1,10492:6630773,12144513:25952256,513147,126483 -g1,10491:7849087,12144513 -g1,10491:10356494,12144513 -g1,10491:13334450,12144513 -g1,10491:14295207,12144513 -g1,10491:15513521,12144513 -g1,10491:18084498,12144513 -g1,10491:21152893,12144513 -g1,10491:22343682,12144513 -g1,10491:24581081,12144513 -g1,10491:25466472,12144513 -k1,10492:32583029,12144513:5408689 -g1,10492:32583029,12144513 -) -v1,10494:6630773,13334979:0,393216,0 -(1,10500:6630773,14957266:25952256,2015503,196608 -g1,10500:6630773,14957266 -g1,10500:6630773,14957266 -g1,10500:6434165,14957266 -(1,10500:6434165,14957266:0,2015503,196608 -r1,10554:32779637,14957266:26345472,2212111,196608 -k1,10500:6434165,14957266:-26345472 -) -(1,10500:6434165,14957266:26345472,2015503,196608 -[1,10500:6630773,14957266:25952256,1818895,0 -(1,10496:6630773,13548889:25952256,410518,82312 -(1,10495:6630773,13548889:0,0,0 -g1,10495:6630773,13548889 -g1,10495:6630773,13548889 -g1,10495:6303093,13548889 -(1,10495:6303093,13548889:0,0,0 -) -g1,10495:6630773,13548889 -) -g1,10496:10424521,13548889 -g1,10496:11372959,13548889 -g1,10496:15166708,13548889 -g1,10496:17063582,13548889 -g1,10496:17695874,13548889 -g1,10496:19908894,13548889 -h1,10496:20225040,13548889:0,0,0 -k1,10496:32583029,13548889:12357989 -g1,10496:32583029,13548889 -) -(1,10497:6630773,14215067:25952256,404226,82312 -h1,10497:6630773,14215067:0,0,0 -g1,10497:6946919,14215067 -g1,10497:7263065,14215067 -g1,10497:7579211,14215067 -g1,10497:7895357,14215067 -g1,10497:8211503,14215067 -g1,10497:8527649,14215067 -g1,10497:8843795,14215067 -g1,10497:12005253,14215067 -g1,10497:13902127,14215067 -g1,10497:14534419,14215067 -g1,10497:17063585,14215067 -g1,10497:17379731,14215067 -g1,10497:19276605,14215067 -g1,10497:21173479,14215067 -g1,10497:21805771,14215067 -h1,10497:24018791,14215067:0,0,0 -k1,10497:32583029,14215067:8564238 -g1,10497:32583029,14215067 -) -(1,10498:6630773,14881245:25952256,404226,76021 -h1,10498:6630773,14881245:0,0,0 -g1,10498:6946919,14881245 -g1,10498:7263065,14881245 -g1,10498:7579211,14881245 -g1,10498:7895357,14881245 -h1,10498:8211503,14881245:0,0,0 -k1,10498:32583029,14881245:24371526 -g1,10498:32583029,14881245 -) -] -) -g1,10500:32583029,14957266 -g1,10500:6630773,14957266 -g1,10500:6630773,14957266 -g1,10500:32583029,14957266 -g1,10500:32583029,14957266 -) -h1,10500:6630773,15153874:0,0,0 -v1,10504:6630773,16868628:0,393216,0 -(1,10514:6630773,19823270:25952256,3347858,196608 -g1,10514:6630773,19823270 -g1,10514:6630773,19823270 -g1,10514:6434165,19823270 -(1,10514:6434165,19823270:0,3347858,196608 -r1,10554:32779637,19823270:26345472,3544466,196608 -k1,10514:6434165,19823270:-26345472 -) -(1,10514:6434165,19823270:26345472,3347858,196608 -[1,10514:6630773,19823270:25952256,3151250,0 -(1,10506:6630773,17076246:25952256,404226,101187 -(1,10505:6630773,17076246:0,0,0 -g1,10505:6630773,17076246 -g1,10505:6630773,17076246 -g1,10505:6303093,17076246 -(1,10505:6303093,17076246:0,0,0 -) -g1,10505:6630773,17076246 -) -g1,10506:7263065,17076246 -g1,10506:8211503,17076246 -g1,10506:10740669,17076246 -g1,10506:11372961,17076246 -g1,10506:16431293,17076246 -g1,10506:18644313,17076246 -g1,10506:19276605,17076246 -g1,10506:20225043,17076246 -g1,10506:21489626,17076246 -g1,10506:22121918,17076246 -g1,10506:26231812,17076246 -g1,10506:28128686,17076246 -g1,10506:28760978,17076246 -h1,10506:30341707,17076246:0,0,0 -k1,10506:32583029,17076246:2241322 -g1,10506:32583029,17076246 -) -(1,10507:6630773,17742424:25952256,277873,0 -h1,10507:6630773,17742424:0,0,0 -h1,10507:6946919,17742424:0,0,0 -k1,10507:32583029,17742424:25636110 -g1,10507:32583029,17742424 -) -(1,10513:6630773,18408602:25952256,404226,82312 -(1,10509:6630773,18408602:0,0,0 -g1,10509:6630773,18408602 -g1,10509:6630773,18408602 -g1,10509:6303093,18408602 -(1,10509:6303093,18408602:0,0,0 -) -g1,10509:6630773,18408602 -) -g1,10513:7579210,18408602 -g1,10513:7895356,18408602 -g1,10513:8211502,18408602 -g1,10513:8527648,18408602 -g1,10513:8843794,18408602 -g1,10513:9159940,18408602 -g1,10513:9476086,18408602 -g1,10513:9792232,18408602 -g1,10513:10108378,18408602 -g1,10513:10424524,18408602 -g1,10513:10740670,18408602 -g1,10513:12321399,18408602 -g1,10513:12637545,18408602 -g1,10513:12953691,18408602 -k1,10513:12953691,18408602:0 -h1,10513:14218274,18408602:0,0,0 -k1,10513:32583030,18408602:18364756 -g1,10513:32583030,18408602 -) -(1,10513:6630773,19074780:25952256,404226,82312 -h1,10513:6630773,19074780:0,0,0 -g1,10513:7579210,19074780 -g1,10513:9159938,19074780 -g1,10513:12321395,19074780 -h1,10513:14218269,19074780:0,0,0 -k1,10513:32583029,19074780:18364760 -g1,10513:32583029,19074780 -) -(1,10513:6630773,19740958:25952256,404226,82312 -h1,10513:6630773,19740958:0,0,0 -g1,10513:7579210,19740958 -g1,10513:9159938,19740958 -g1,10513:9476084,19740958 -g1,10513:12321395,19740958 -g1,10513:12637541,19740958 -h1,10513:14218269,19740958:0,0,0 -k1,10513:32583029,19740958:18364760 -g1,10513:32583029,19740958 -) -] -) -g1,10514:32583029,19823270 -g1,10514:6630773,19823270 -g1,10514:6630773,19823270 -g1,10514:32583029,19823270 -g1,10514:32583029,19823270 -) -h1,10514:6630773,20019878:0,0,0 -v1,10518:6630773,21734632:0,393216,0 -(1,10528:6630773,24689274:25952256,3347858,196608 -g1,10528:6630773,24689274 -g1,10528:6630773,24689274 -g1,10528:6434165,24689274 -(1,10528:6434165,24689274:0,3347858,196608 -r1,10554:32779637,24689274:26345472,3544466,196608 -k1,10528:6434165,24689274:-26345472 -) -(1,10528:6434165,24689274:26345472,3347858,196608 -[1,10528:6630773,24689274:25952256,3151250,0 -(1,10520:6630773,21942250:25952256,404226,101187 -(1,10519:6630773,21942250:0,0,0 -g1,10519:6630773,21942250 -g1,10519:6630773,21942250 -g1,10519:6303093,21942250 -(1,10519:6303093,21942250:0,0,0 -) -g1,10519:6630773,21942250 -) -g1,10520:7263065,21942250 -g1,10520:8211503,21942250 -g1,10520:10740669,21942250 -g1,10520:11372961,21942250 -g1,10520:16431293,21942250 -g1,10520:18644313,21942250 -g1,10520:19276605,21942250 -g1,10520:20225043,21942250 -g1,10520:21489626,21942250 -g1,10520:22121918,21942250 -g1,10520:26231812,21942250 -g1,10520:28128686,21942250 -g1,10520:28760978,21942250 -h1,10520:30341707,21942250:0,0,0 -k1,10520:32583029,21942250:2241322 -g1,10520:32583029,21942250 -) -(1,10521:6630773,22608428:25952256,277873,0 -h1,10521:6630773,22608428:0,0,0 -h1,10521:6946919,22608428:0,0,0 -k1,10521:32583029,22608428:25636110 -g1,10521:32583029,22608428 -) -(1,10527:6630773,23274606:25952256,404226,82312 -(1,10523:6630773,23274606:0,0,0 -g1,10523:6630773,23274606 -g1,10523:6630773,23274606 -g1,10523:6303093,23274606 -(1,10523:6303093,23274606:0,0,0 -) -g1,10523:6630773,23274606 -) -g1,10527:7579210,23274606 -g1,10527:7895356,23274606 -g1,10527:8211502,23274606 -g1,10527:8527648,23274606 -g1,10527:8843794,23274606 -g1,10527:9159940,23274606 -g1,10527:9476086,23274606 -g1,10527:9792232,23274606 -g1,10527:10108378,23274606 -g1,10527:10424524,23274606 -g1,10527:10740670,23274606 -g1,10527:11056816,23274606 -g1,10527:12637545,23274606 -g1,10527:12953691,23274606 -g1,10527:13269837,23274606 -g1,10527:13585983,23274606 -g1,10527:13902129,23274606 -g1,10527:15482858,23274606 -g1,10527:15799004,23274606 -g1,10527:16115150,23274606 -g1,10527:16431296,23274606 -g1,10527:16747442,23274606 -k1,10527:16747442,23274606:0 -h1,10527:18012025,23274606:0,0,0 -k1,10527:32583029,23274606:14571004 -g1,10527:32583029,23274606 -) -(1,10527:6630773,23940784:25952256,404226,82312 -h1,10527:6630773,23940784:0,0,0 -g1,10527:7579210,23940784 -g1,10527:9159938,23940784 -g1,10527:12637541,23940784 -g1,10527:15482852,23940784 -h1,10527:18012017,23940784:0,0,0 -k1,10527:32583029,23940784:14571012 -g1,10527:32583029,23940784 -) -(1,10527:6630773,24606962:25952256,404226,82312 -h1,10527:6630773,24606962:0,0,0 -g1,10527:7579210,24606962 -g1,10527:9159938,24606962 -g1,10527:9476084,24606962 -g1,10527:12637541,24606962 -g1,10527:15482852,24606962 -h1,10527:18012017,24606962:0,0,0 -k1,10527:32583029,24606962:14571012 -g1,10527:32583029,24606962 -) -] -) -g1,10528:32583029,24689274 -g1,10528:6630773,24689274 -g1,10528:6630773,24689274 -g1,10528:32583029,24689274 -g1,10528:32583029,24689274 -) -h1,10528:6630773,24885882:0,0,0 -(1,10532:6630773,26251658:25952256,513147,126483 -h1,10531:6630773,26251658:983040,0,0 -k1,10531:8538261,26251658:296613 -k1,10531:9600990,26251658:296613 -k1,10531:12889322,26251658:296613 -k1,10531:15214930,26251658:296613 -k1,10531:16379895,26251658:296613 -k1,10531:18151723,26251658:296613 -k1,10531:19961562,26251658:296613 -k1,10531:22983163,26251658:296614 -k1,10531:26479244,26251658:296613 -k1,10531:29967460,26251658:296613 -k1,10531:30880111,26251658:296613 -k1,10531:31591469,26251658:296515 -k1,10531:32583029,26251658:0 -) -(1,10532:6630773,27093146:25952256,513147,134348 -k1,10531:9870108,27093146:213538 -k1,10531:11477597,27093146:213538 -k1,10531:12863574,27093146:213538 -k1,10531:15205721,27093146:213538 -k1,10531:19030293,27093146:213538 -k1,10531:21129302,27093146:213538 -k1,10531:22447122,27093146:213538 -k1,10531:23408426,27093146:213538 -k1,10531:25489740,27093146:213538 -k1,10531:27438671,27093146:213538 -k1,10531:29063855,27093146:213538 -k1,10531:31966991,27093146:213538 -k1,10531:32583029,27093146:0 -) -(1,10532:6630773,27934634:25952256,505283,134348 -k1,10531:12323269,27934634:197302 -(1,10531:12323269,27934634:0,452978,115847 -r1,10554:14088383,27934634:1765114,568825,115847 -k1,10531:12323269,27934634:-1765114 -) -(1,10531:12323269,27934634:1765114,452978,115847 -g1,10531:13029970,27934634 -g1,10531:13733394,27934634 -h1,10531:14085106,27934634:0,411205,112570 -) -k1,10531:14459355,27934634:197302 -k1,10531:15416875,27934634:197302 -k1,10531:19770470,27934634:197302 -k1,10531:21476411,27934634:197302 -k1,10531:23742029,27934634:197302 -k1,10531:25319519,27934634:197302 -k1,10531:26621103,27934634:197302 -k1,10531:27566171,27934634:197302 -k1,10531:29631249,27934634:197302 -k1,10531:31563944,27934634:197302 -k1,10531:32583029,27934634:0 -) -(1,10532:6630773,28776122:25952256,513147,126483 -k1,10531:8535631,28776122:251385 -k1,10531:10871060,28776122:251384 -k1,10531:11808607,28776122:251385 -k1,10531:13007642,28776122:251384 -k1,10531:15984014,28776122:251385 -k1,10531:19434866,28776122:251384 -k1,10531:20877696,28776122:251385 -k1,10531:25354186,28776122:251384 -k1,10531:26891387,28776122:251385 -k1,10531:29348058,28776122:251384 -k1,10531:30250871,28776122:251385 -k1,10531:31521340,28776122:251384 -(1,10531:31521340,28776122:0,414482,115847 -r1,10554:32583029,28776122:1061689,530329,115847 -k1,10531:31521340,28776122:-1061689 -) -(1,10531:31521340,28776122:1061689,414482,115847 -k1,10531:31521340,28776122:3277 -h1,10531:32579752,28776122:0,411205,112570 -) -k1,10531:32583029,28776122:0 -) -(1,10532:6630773,29617610:25952256,513147,126483 -k1,10531:10160368,29617610:248863 -k1,10531:11068522,29617610:248862 -k1,10531:13080959,29617610:248863 -k1,10531:16529289,29617610:248862 -k1,10531:17265690,29617610:248813 -k1,10531:18527083,29617610:248862 -k1,10531:21611033,29617610:248863 -k1,10531:25164876,29617610:248862 -k1,10531:26065167,29617610:248863 -k1,10531:27333114,29617610:248862 -k1,10531:30919070,29617610:248863 -k1,10532:32583029,29617610:0 -) -(1,10532:6630773,30459098:25952256,513147,126483 -k1,10531:8483709,30459098:229609 -(1,10531:8483709,30459098:0,424981,115847 -r1,10554:12710806,30459098:4227097,540828,115847 -k1,10531:8483709,30459098:-4227097 -) -(1,10531:8483709,30459098:4227097,424981,115847 -g1,10531:11652393,30459098 -g1,10531:12355817,30459098 -h1,10531:12707529,30459098:0,411205,112570 -) -k1,10531:12940415,30459098:229609 -k1,10531:15659081,30459098:229609 -k1,10531:16842238,30459098:229608 -k1,10531:19865647,30459098:229609 -k1,10531:22841870,30459098:229609 -(1,10531:22841870,30459098:0,414482,115847 -r1,10554:23200136,30459098:358266,530329,115847 -k1,10531:22841870,30459098:-358266 -) -(1,10531:22841870,30459098:358266,414482,115847 -k1,10531:22841870,30459098:3277 -h1,10531:23196859,30459098:0,411205,112570 -) -k1,10531:23429745,30459098:229609 -k1,10531:24275392,30459098:229609 -k1,10531:25987425,30459098:229609 -k1,10531:27731570,30459098:229608 -(1,10531:27938664,30459098:0,459977,115847 -r1,10554:28296930,30459098:358266,575824,115847 -k1,10531:27938664,30459098:-358266 -) -(1,10531:27938664,30459098:358266,459977,115847 -k1,10531:27938664,30459098:3277 -h1,10531:28293653,30459098:0,411205,112570 -) -k1,10531:28733633,30459098:229609 -k1,10531:30154687,30459098:229609 -k1,10531:31821501,30459098:229609 -k1,10531:32583029,30459098:0 -) -(1,10532:6630773,31300586:25952256,513147,126483 -g1,10531:8568017,31300586 -g1,10531:9123106,31300586 -g1,10531:12080090,31300586 -g1,10531:12930747,31300586 -g1,10531:13918374,31300586 -g1,10531:16358934,31300586 -g1,10531:18686772,31300586 -g1,10531:22166733,31300586 -(1,10531:22373827,31300586:0,435480,115847 -r1,10554:24490653,31300586:2116826,551327,115847 -k1,10531:22373827,31300586:-2116826 -) -(1,10531:22373827,31300586:2116826,435480,115847 -g1,10531:23432240,31300586 -g1,10531:24135664,31300586 -h1,10531:24487376,31300586:0,411205,112570 -) -k1,10532:32583029,31300586:7711612 -g1,10532:32583029,31300586 -) -v1,10534:6630773,32491052:0,393216,0 -(1,10544:6630773,35439403:25952256,3341567,196608 -g1,10544:6630773,35439403 -g1,10544:6630773,35439403 -g1,10544:6434165,35439403 -(1,10544:6434165,35439403:0,3341567,196608 -r1,10554:32779637,35439403:26345472,3538175,196608 -k1,10544:6434165,35439403:-26345472 -) -(1,10544:6434165,35439403:26345472,3341567,196608 -[1,10544:6630773,35439403:25952256,3144959,0 -(1,10536:6630773,32698670:25952256,404226,107478 -(1,10535:6630773,32698670:0,0,0 -g1,10535:6630773,32698670 -g1,10535:6630773,32698670 -g1,10535:6303093,32698670 -(1,10535:6303093,32698670:0,0,0 -) -g1,10535:6630773,32698670 -) -k1,10536:6630773,32698670:0 -g1,10536:12005250,32698670 -g1,10536:12637542,32698670 -g1,10536:13585979,32698670 -g1,10536:15166708,32698670 -g1,10536:18012019,32698670 -g1,10536:19592748,32698670 -g1,10536:20857331,32698670 -k1,10536:20857331,32698670:1573 -h1,10536:22755778,32698670:0,0,0 -k1,10536:32583029,32698670:9827251 -g1,10536:32583029,32698670 -) -(1,10537:6630773,33364848:25952256,410518,76021 -h1,10537:6630773,33364848:0,0,0 -g1,10537:9476084,33364848 -g1,10537:10424522,33364848 -k1,10537:10424522,33364848:0 -h1,10537:13269833,33364848:0,0,0 -k1,10537:32583029,33364848:19313196 -g1,10537:32583029,33364848 -) -(1,10538:6630773,34031026:25952256,410518,101187 -h1,10538:6630773,34031026:0,0,0 -g1,10538:7263065,34031026 -g1,10538:8211503,34031026 -g1,10538:11056815,34031026 -g1,10538:11689107,34031026 -g1,10538:14850564,34031026 -g1,10538:16115147,34031026 -g1,10538:16747439,34031026 -g1,10538:18328169,34031026 -g1,10538:19276606,34031026 -g1,10538:19908898,34031026 -h1,10538:20541190,34031026:0,0,0 -k1,10538:32583029,34031026:12041839 -g1,10538:32583029,34031026 -) -(1,10539:6630773,34697204:25952256,404226,76021 -h1,10539:6630773,34697204:0,0,0 -k1,10539:6630773,34697204:0 -h1,10539:8527647,34697204:0,0,0 -k1,10539:32583029,34697204:24055382 -g1,10539:32583029,34697204 -) -(1,10543:6630773,35363382:25952256,404226,76021 -(1,10541:6630773,35363382:0,0,0 -g1,10541:6630773,35363382 -g1,10541:6630773,35363382 -g1,10541:6303093,35363382 -(1,10541:6303093,35363382:0,0,0 -) -g1,10541:6630773,35363382 -) -g1,10543:7579210,35363382 -g1,10543:7895356,35363382 -g1,10543:9159939,35363382 -g1,10543:11372959,35363382 -g1,10543:12637542,35363382 -g1,10543:14218271,35363382 -g1,10543:15799000,35363382 -g1,10543:17379729,35363382 -g1,10543:18960458,35363382 -h1,10543:19908895,35363382:0,0,0 -k1,10543:32583029,35363382:12674134 -g1,10543:32583029,35363382 -) -] -) -g1,10544:32583029,35439403 -g1,10544:6630773,35439403 -g1,10544:6630773,35439403 -g1,10544:32583029,35439403 -g1,10544:32583029,35439403 -) -h1,10544:6630773,35636011:0,0,0 -v1,10548:6630773,37526075:0,393216,0 -(1,10549:6630773,43905047:25952256,6772188,0 -g1,10549:6630773,43905047 -g1,10549:6303093,43905047 -r1,10554:6401397,43905047:98304,6772188,0 -g1,10549:6600626,43905047 -g1,10549:6797234,43905047 -[1,10549:6797234,43905047:25785795,6772188,0 -(1,10549:6797234,37888148:25785795,755289,196608 -(1,10548:6797234,37888148:0,755289,196608 -r1,10554:8134168,37888148:1336934,951897,196608 -k1,10548:6797234,37888148:-1336934 -) -(1,10548:6797234,37888148:1336934,755289,196608 -) -k1,10548:8291437,37888148:157269 -k1,10548:8619117,37888148:327680 -k1,10548:10797723,37888148:161408 -k1,10548:14087820,37888148:161408 -k1,10548:15196879,37888148:161408 -k1,10548:16807288,37888148:161408 -k1,10548:20434688,37888148:157269 -k1,10548:22487259,37888148:157270 -k1,10548:25670325,37888148:157269 -k1,10548:27998147,37888148:157270 -k1,10548:30284681,37888148:157269 -k1,10548:32583029,37888148:0 -) -(1,10549:6797234,38729636:25785795,513147,126483 -k1,10548:9327731,38729636:199381 -k1,10548:11272335,38729636:199380 -k1,10548:12157878,38729636:199381 -k1,10548:13737447,38729636:199381 -k1,10548:14928387,38729636:199380 -k1,10548:16340839,38729636:199381 -k1,10548:19014858,38729636:199380 -k1,10548:19701827,38729636:199381 -k1,10548:22025884,38729636:199380 -k1,10548:24886682,38729636:199381 -k1,10548:25617560,38729636:199381 -k1,10548:26836025,38729636:199380 -k1,10548:31336534,38729636:199381 -k1,10549:32583029,38729636:0 -) -(1,10549:6797234,39571124:25785795,505283,134348 -k1,10548:8552616,39571124:274268 -k1,10548:10745778,39571124:274268 -k1,10548:11888398,39571124:274268 -k1,10548:14237536,39571124:274268 -k1,10548:17070330,39571124:274268 -k1,10548:17700459,39571124:274269 -k1,10548:21061473,39571124:274268 -k1,10548:22620247,39571124:274268 -k1,10548:24842245,39571124:274268 -k1,10548:25472373,39571124:274268 -k1,10548:27830686,39571124:274268 -k1,10548:29947826,39571124:274268 -k1,10548:32583029,39571124:0 -) -(1,10549:6797234,40412612:25785795,505283,126483 -k1,10548:10185499,40412612:167170 -k1,10548:10840224,40412612:167137 -k1,10548:13209404,40412612:167170 -k1,10548:14743655,40412612:167170 -k1,10548:15442321,40412612:167169 -k1,10548:15965351,40412612:167170 -k1,10548:18473466,40412612:167169 -k1,10548:20559530,40412612:167170 -k1,10548:24528443,40412612:167170 -k1,10548:25687172,40412612:167169 -k1,10548:27431794,40412612:167170 -k1,10548:28986360,40412612:167169 -k1,10548:29509390,40412612:167170 -k1,10548:32583029,40412612:0 -) -(1,10549:6797234,41254100:25785795,513147,126483 -k1,10548:8241588,41254100:159848 -k1,10548:10450747,41254100:159848 -k1,10548:11223357,41254100:159848 -k1,10548:12834827,41254100:159848 -k1,10548:15885468,41254100:159848 -k1,10548:17242004,41254100:159849 -k1,10548:20113732,41254100:159848 -k1,10548:21465025,41254100:159848 -k1,10548:24451441,41254100:159848 -k1,10548:26212989,41254100:159848 -k1,10548:29111587,41254100:159848 -k1,10548:32583029,41254100:0 -) -(1,10549:6797234,42095588:25785795,513147,11795 -k1,10548:7673867,42095588:217341 -k1,10548:9094449,42095588:217341 -k1,10548:10741131,42095588:217342 -k1,10548:11489969,42095588:217341 -k1,10548:12726395,42095588:217341 -k1,10548:16415178,42095588:217341 -k1,10548:17291811,42095588:217341 -k1,10548:21025814,42095588:217341 -k1,10548:23878359,42095588:217342 -k1,10548:27421652,42095588:217341 -k1,10548:30766371,42095588:217341 -k1,10548:32583029,42095588:0 -) -(1,10549:6797234,42937076:25785795,505283,134348 -k1,10548:9978625,42937076:189672 -k1,10548:11159857,42937076:189672 -k1,10548:13711447,42937076:189672 -k1,10548:16374448,42937076:189672 -k1,10548:20072262,42937076:189672 -k1,10548:21755500,42937076:189672 -k1,10548:22631333,42937076:189671 -k1,10548:23176865,42937076:189672 -k1,10548:25728455,42937076:189672 -k1,10548:28278078,42937076:189672 -k1,10548:29699827,42937076:189672 -k1,10548:31387652,42937076:189672 -h1,10548:32583029,42937076:0,0,0 -k1,10548:32583029,42937076:0 -) -(1,10549:6797234,43778564:25785795,513147,126483 -g1,10548:7944114,43778564 -g1,10548:9845313,43778564 -g1,10548:13761744,43778564 -g1,10548:14612401,43778564 -g1,10548:15830715,43778564 -g1,10548:17122429,43778564 -g1,10548:17980950,43778564 -g1,10548:20511295,43778564 -g1,10548:23427647,43778564 -k1,10549:32583029,43778564:7029394 -g1,10549:32583029,43778564 -) -] -g1,10549:32583029,43905047 -) -h1,10549:6630773,43905047:0,0,0 -] -(1,10554:32583029,45706769:0,0,0 -g1,10554:32583029,45706769 -) -) -] -(1,10554:6630773,47279633:25952256,0,0 -h1,10554:6630773,47279633:25952256,0,0 -) -] -(1,10554:4262630,4025873:0,0,0 -[1,10554:-473656,4025873:0,0,0 -(1,10554:-473656,-710413:0,0,0 -(1,10554:-473656,-710413:0,0,0 -g1,10554:-473656,-710413 -) -g1,10554:-473656,-710413 -) -] -) -] -!27345 -}176 -Input:1586:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1587:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1588:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1589:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1590:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1591:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1592:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1593:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1594:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1595:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1596:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1597:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1598:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1599:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1600:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1601:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1602:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1603:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1704 -{177 -[1,10596:4262630,47279633:28320399,43253760,0 -(1,10596:4262630,4025873:0,0,0 -[1,10596:-473656,4025873:0,0,0 -(1,10596:-473656,-710413:0,0,0 -(1,10596:-473656,-644877:0,0,0 -k1,10596:-473656,-644877:-65536 +] ) -(1,10596:-473656,4736287:0,0,0 -k1,10596:-473656,4736287:5209943 ) -g1,10596:-473656,-710413 ) ] +[1,9700:3078558,4812305:0,0,0 +(1,9700:3078558,2439708:0,1703936,0 +g1,9700:29030814,2439708 +g1,9700:36135244,2439708 +(1,8606:36135244,2439708:1720320,1703936,0 +(1,8606:36135244,2439708:16384,1703936,0 +[1,8606:36135244,2439708:25952256,1703936,0 +(1,8606:36135244,1915420:25952256,1179648,0 +(1,8606:36135244,1915420:16384,1179648,0 +r1,9700:36151628,1915420:16384,1179648,0 ) -[1,10596:6630773,47279633:25952256,43253760,0 -[1,10596:6630773,4812305:25952256,786432,0 -(1,10596:6630773,4812305:25952256,505283,134348 -(1,10596:6630773,4812305:25952256,505283,134348 -g1,10596:3078558,4812305 -[1,10596:3078558,4812305:0,0,0 -(1,10596:3078558,2439708:0,1703936,0 -k1,10596:1358238,2439708:-1720320 -(1,8393:1358238,2439708:1720320,1703936,0 -(1,8393:1358238,2439708:1179648,16384,0 -r1,10596:2537886,2439708:1179648,16384,0 -) -g1,8393:3062174,2439708 -(1,8393:3062174,2439708:16384,1703936,0 -[1,8393:3062174,2439708:25952256,1703936,0 -(1,8393:3062174,1915420:25952256,1179648,0 -(1,8393:3062174,1915420:16384,1179648,0 -r1,10596:3078558,1915420:16384,1179648,0 -) -k1,8393:29014430,1915420:25935872 -g1,8393:29014430,1915420 +k1,8606:62087500,1915420:25935872 +g1,8606:62087500,1915420 ) ] ) +g1,8606:36675916,2439708 +(1,8606:36675916,2439708:1179648,16384,0 +r1,9700:37855564,2439708:1179648,16384,0 +) ) +k1,9700:3078556,2439708:-34777008 ) ] -[1,10596:3078558,4812305:0,0,0 -(1,10596:3078558,2439708:0,1703936,0 -g1,10596:29030814,2439708 -g1,10596:36135244,2439708 -(1,8393:36135244,2439708:1720320,1703936,0 -(1,8393:36135244,2439708:16384,1703936,0 -[1,8393:36135244,2439708:25952256,1703936,0 -(1,8393:36135244,1915420:25952256,1179648,0 -(1,8393:36135244,1915420:16384,1179648,0 -r1,10596:36151628,1915420:16384,1179648,0 +[1,9700:3078558,4812305:0,0,0 +(1,9700:3078558,49800853:0,16384,2228224 +k1,9700:1358238,49800853:-1720320 +(1,8606:1358238,49800853:1720320,16384,2228224 +(1,8606:1358238,49800853:1179648,16384,0 +r1,9700:2537886,49800853:1179648,16384,0 ) -k1,8393:62087500,1915420:25935872 -g1,8393:62087500,1915420 +g1,8606:3062174,49800853 +(1,8606:3062174,52029077:16384,1703936,0 +[1,8606:3062174,52029077:25952256,1703936,0 +(1,8606:3062174,51504789:25952256,1179648,0 +(1,8606:3062174,51504789:16384,1179648,0 +r1,9700:3078558,51504789:16384,1179648,0 ) -] +k1,8606:29014430,51504789:25935872 +g1,8606:29014430,51504789 ) -g1,8393:36675916,2439708 -(1,8393:36675916,2439708:1179648,16384,0 -r1,10596:37855564,2439708:1179648,16384,0 +] ) ) -k1,10596:3078556,2439708:-34777008 ) ] -[1,10596:3078558,4812305:0,0,0 -(1,10596:3078558,49800853:0,16384,2228224 -k1,10596:1358238,49800853:-1720320 -(1,8393:1358238,49800853:1720320,16384,2228224 -(1,8393:1358238,49800853:1179648,16384,0 -r1,10596:2537886,49800853:1179648,16384,0 +[1,9700:3078558,4812305:0,0,0 +(1,9700:3078558,49800853:0,16384,2228224 +g1,9700:29030814,49800853 +g1,9700:36135244,49800853 +(1,8606:36135244,49800853:1720320,16384,2228224 +(1,8606:36135244,52029077:16384,1703936,0 +[1,8606:36135244,52029077:25952256,1703936,0 +(1,8606:36135244,51504789:25952256,1179648,0 +(1,8606:36135244,51504789:16384,1179648,0 +r1,9700:36151628,51504789:16384,1179648,0 ) -g1,8393:3062174,49800853 -(1,8393:3062174,52029077:16384,1703936,0 -[1,8393:3062174,52029077:25952256,1703936,0 -(1,8393:3062174,51504789:25952256,1179648,0 -(1,8393:3062174,51504789:16384,1179648,0 -r1,10596:3078558,51504789:16384,1179648,0 -) -k1,8393:29014430,51504789:25935872 -g1,8393:29014430,51504789 +k1,8606:62087500,51504789:25935872 +g1,8606:62087500,51504789 ) ] ) +g1,8606:36675916,49800853 +(1,8606:36675916,49800853:1179648,16384,0 +r1,9700:37855564,49800853:1179648,16384,0 +) +) +k1,9700:3078556,49800853:-34777008 ) +] +g1,9700:6630773,4812305 +g1,9700:6630773,4812305 +g1,9700:10456764,4812305 +g1,9700:13962940,4812305 +k1,9700:31387652,4812305:17424712 +) +) +] +[1,9700:6630773,45706769:25952256,40108032,0 +(1,9700:6630773,45706769:25952256,40108032,0 +(1,9700:6630773,45706769:0,0,0 +g1,9700:6630773,45706769 +) +[1,9700:6630773,45706769:25952256,40108032,0 +(1,9599:6630773,6254097:25952256,505283,126483 +k1,9598:10262997,6254097:192239 +k1,9598:10986732,6254097:192238 +k1,9598:14240158,6254097:192239 +k1,9598:15045158,6254097:192238 +k1,9598:16986553,6254097:192239 +k1,9598:19793023,6254097:192239 +(1,9598:19793023,6254097:0,435480,115847 +r1,9700:20151289,6254097:358266,551327,115847 +k1,9598:19793023,6254097:-358266 +) +(1,9598:19793023,6254097:358266,435480,115847 +k1,9598:19793023,6254097:3277 +h1,9598:20148012,6254097:0,411205,112570 +) +k1,9598:20343527,6254097:192238 +k1,9598:23153929,6254097:192239 +k1,9598:25231639,6254097:192239 +k1,9598:27104220,6254097:192238 +k1,9598:28428921,6254097:192239 +k1,9598:29368925,6254097:192238 +k1,9598:31966991,6254097:192239 +k1,9598:32583029,6254097:0 +) +(1,9599:6630773,7119177:25952256,505283,126483 +g1,9598:7849087,7119177 +g1,9598:10827043,7119177 +g1,9598:13004149,7119177 +g1,9598:13816140,7119177 +g1,9598:15764525,7119177 +g1,9598:18577985,7119177 +(1,9598:18577985,7119177:0,435480,115847 +r1,9700:18936251,7119177:358266,551327,115847 +k1,9598:18577985,7119177:-358266 +) +(1,9598:18577985,7119177:358266,435480,115847 +k1,9598:18577985,7119177:3277 +h1,9598:18932974,7119177:0,411205,112570 +) +g1,9598:19309150,7119177 +g1,9598:20699824,7119177 +g1,9598:21623881,7119177 +k1,9599:32583029,7119177:9976108 +g1,9599:32583029,7119177 +) +(1,9601:6630773,7984257:25952256,513147,134348 +h1,9600:6630773,7984257:983040,0,0 +k1,9600:8244175,7984257:160469 +k1,9600:8936140,7984257:160468 +k1,9600:12452052,7984257:160469 +k1,9600:13263949,7984257:160469 +k1,9600:14861622,7984257:160468 +k1,9600:18424720,7984257:160469 +k1,9600:19236616,7984257:160468 +(1,9600:19236616,7984257:0,459977,115847 +r1,9700:21353441,7984257:2116825,575824,115847 +k1,9600:19236616,7984257:-2116825 +) +(1,9600:19236616,7984257:2116825,459977,115847 +k1,9600:19236616,7984257:3277 +h1,9600:21350164,7984257:0,411205,112570 +) +k1,9600:21513910,7984257:160469 +k1,9600:22435907,7984257:160469 +k1,9600:25384277,7984257:160468 +k1,9600:26498295,7984257:160469 +k1,9600:27938682,7984257:160469 +k1,9600:28455010,7984257:160468 +k1,9600:29921612,7984257:160469 +k1,9600:32583029,7984257:0 +) +(1,9601:6630773,8849337:25952256,513147,134348 +g1,9600:8223953,8849337 +g1,9600:10581938,8849337 +g1,9600:14183796,8849337 +g1,9600:15034453,8849337 +g1,9600:17243671,8849337 +g1,9600:18461985,8849337 +g1,9600:19753699,8849337 +g1,9600:20612220,8849337 +g1,9600:21830534,8849337 +k1,9601:32583029,8849337:7883329 +g1,9601:32583029,8849337 +) +v1,9603:6630773,9534192:0,393216,0 +(1,9611:6630773,11342627:25952256,2201651,196608 +g1,9611:6630773,11342627 +g1,9611:6630773,11342627 +g1,9611:6434165,11342627 +(1,9611:6434165,11342627:0,2201651,196608 +r1,9700:32779637,11342627:26345472,2398259,196608 +k1,9611:6434165,11342627:-26345472 +) +(1,9611:6434165,11342627:26345472,2201651,196608 +[1,9611:6630773,11342627:25952256,2005043,0 +(1,9605:6630773,9762023:25952256,424439,106246 +(1,9604:6630773,9762023:0,0,0 +g1,9604:6630773,9762023 +g1,9604:6630773,9762023 +g1,9604:6303093,9762023 +(1,9604:6303093,9762023:0,0,0 +) +g1,9604:6630773,9762023 +) +g1,9605:9286405,9762023 +g1,9605:10282267,9762023 +g1,9605:12937899,9762023 +g1,9605:15261577,9762023 +g1,9605:17253301,9762023 +h1,9605:18913071,9762023:0,0,0 +k1,9605:32583029,9762023:13669958 +g1,9605:32583029,9762023 +) +(1,9606:6630773,10446878:25952256,431045,106246 +h1,9606:6630773,10446878:0,0,0 +g1,9606:10614221,10446878 +g1,9606:11278129,10446878 +g1,9606:14265715,10446878 +g1,9606:15593531,10446878 +g1,9606:16257439,10446878 +g1,9606:17253301,10446878 +g1,9606:18249163,10446878 +g1,9606:18913071,10446878 +k1,9606:18913071,10446878:0 +h1,9606:19908933,10446878:0,0,0 +k1,9606:32583029,10446878:12674096 +g1,9606:32583029,10446878 +) +(1,9610:6630773,11262805:25952256,424439,79822 +(1,9608:6630773,11262805:0,0,0 +g1,9608:6630773,11262805 +g1,9608:6630773,11262805 +g1,9608:6303093,11262805 +(1,9608:6303093,11262805:0,0,0 +) +g1,9608:6630773,11262805 +) +g1,9610:7626635,11262805 +g1,9610:8954451,11262805 +g1,9610:9286405,11262805 +g1,9610:9950313,11262805 +g1,9610:10946175,11262805 +g1,9610:11278129,11262805 +g1,9610:11942037,11262805 +g1,9610:12273991,11262805 +h1,9610:12605945,11262805:0,0,0 +k1,9610:32583029,11262805:19977084 +g1,9610:32583029,11262805 +) +] +) +g1,9611:32583029,11342627 +g1,9611:6630773,11342627 +g1,9611:6630773,11342627 +g1,9611:32583029,11342627 +g1,9611:32583029,11342627 +) +h1,9611:6630773,11539235:0,0,0 +(1,9615:6630773,12404315:25952256,505283,134348 +h1,9614:6630773,12404315:983040,0,0 +k1,9614:8439020,12404315:197372 +k1,9614:11347616,12404315:197372 +k1,9614:12564073,12404315:197372 +k1,9614:14363145,12404315:197372 +k1,9614:17337933,12404315:197372 +k1,9614:19372935,12404315:197372 +k1,9614:20101803,12404315:197371 +k1,9614:20950603,12404315:197372 +k1,9614:22623190,12404315:197372 +k1,9614:23506724,12404315:197372 +k1,9614:24474799,12404315:197372 +k1,9614:27744499,12404315:197372 +k1,9614:30147158,12404315:197372 +k1,9614:30995958,12404315:197372 +(1,9614:30995958,12404315:0,414482,115847 +r1,9700:32409359,12404315:1413401,530329,115847 +k1,9614:30995958,12404315:-1413401 +) +(1,9614:30995958,12404315:1413401,414482,115847 +k1,9614:30995958,12404315:3277 +h1,9614:32406082,12404315:0,411205,112570 +) +k1,9614:32583029,12404315:0 +) +(1,9615:6630773,13269395:25952256,513147,126483 +k1,9614:7865846,13269395:215988 +k1,9614:9924706,13269395:215988 +k1,9614:10799986,13269395:215988 +k1,9614:11371833,13269395:215987 +k1,9614:15341723,13269395:215988 +k1,9614:18786670,13269395:215988 +k1,9614:19812028,13269395:215988 +k1,9614:21047101,13269395:215988 +k1,9614:22232366,13269395:215988 +k1,9614:23076189,13269395:215988 +k1,9614:24311261,13269395:215987 +k1,9614:25833382,13269395:215988 +k1,9614:28710787,13269395:215988 +k1,9614:29795127,13269395:215988 +k1,9614:32583029,13269395:0 +) +(1,9615:6630773,14134475:25952256,513147,126483 +g1,9614:7849087,14134475 +g1,9614:10753642,14134475 +g1,9614:12963516,14134475 +g1,9614:14110396,14134475 +g1,9614:14665485,14134475 +g1,9614:17016261,14134475 +g1,9614:20520471,14134475 +g1,9614:21371128,14134475 +g1,9614:22854863,14134475 +g1,9614:25832819,14134475 +g1,9614:26793576,14134475 +g1,9614:27407648,14134475 +g1,9614:30302373,14134475 +(1,9614:30302373,14134475:0,452978,115847 +r1,9700:32067486,14134475:1765113,568825,115847 +k1,9614:30302373,14134475:-1765113 +) +(1,9614:30302373,14134475:1765113,452978,115847 +k1,9614:30302373,14134475:3277 +h1,9614:32064209,14134475:0,411205,112570 +) +k1,9615:32583029,14134475:341873 +g1,9615:32583029,14134475 +) +v1,9617:6630773,14819330:0,393216,0 +(1,9625:6630773,16611249:25952256,2185135,196608 +g1,9625:6630773,16611249 +g1,9625:6630773,16611249 +g1,9625:6434165,16611249 +(1,9625:6434165,16611249:0,2185135,196608 +r1,9700:32779637,16611249:26345472,2381743,196608 +k1,9625:6434165,16611249:-26345472 +) +(1,9625:6434165,16611249:26345472,2185135,196608 +[1,9625:6630773,16611249:25952256,1988527,0 +(1,9619:6630773,15030645:25952256,407923,9908 +(1,9618:6630773,15030645:0,0,0 +g1,9618:6630773,15030645 +g1,9618:6630773,15030645 +g1,9618:6303093,15030645 +(1,9618:6303093,15030645:0,0,0 +) +g1,9618:6630773,15030645 +) +g1,9619:8290543,15030645 +g1,9619:9286405,15030645 +k1,9619:9286405,15030645:0 +h1,9619:10946175,15030645:0,0,0 +k1,9619:32583029,15030645:21636854 +g1,9619:32583029,15030645 +) +(1,9620:6630773,15715500:25952256,431045,86428 +h1,9620:6630773,15715500:0,0,0 +g1,9620:10614221,15715500 +g1,9620:11278129,15715500 +g1,9620:12273991,15715500 +g1,9620:14597669,15715500 +h1,9620:16257439,15715500:0,0,0 +k1,9620:32583029,15715500:16325590 +g1,9620:32583029,15715500 +) +(1,9624:6630773,16531427:25952256,424439,79822 +(1,9622:6630773,16531427:0,0,0 +g1,9622:6630773,16531427 +g1,9622:6630773,16531427 +g1,9622:6303093,16531427 +(1,9622:6303093,16531427:0,0,0 +) +g1,9622:6630773,16531427 +) +g1,9624:7626635,16531427 +g1,9624:8954451,16531427 +g1,9624:9618359,16531427 +g1,9624:10282267,16531427 +g1,9624:10946175,16531427 +g1,9624:11610083,16531427 +g1,9624:12273991,16531427 +g1,9624:12937899,16531427 +h1,9624:13269853,16531427:0,0,0 +k1,9624:32583029,16531427:19313176 +g1,9624:32583029,16531427 +) +] +) +g1,9625:32583029,16611249 +g1,9625:6630773,16611249 +g1,9625:6630773,16611249 +g1,9625:32583029,16611249 +g1,9625:32583029,16611249 +) +h1,9625:6630773,16807857:0,0,0 +v1,9629:6630773,17672937:0,393216,0 +(1,9644:6630773,27028461:25952256,9748740,0 +g1,9644:6630773,27028461 +g1,9644:6237557,27028461 +r1,9700:6368629,27028461:131072,9748740,0 +g1,9644:6567858,27028461 +g1,9644:6764466,27028461 +[1,9644:6764466,27028461:25818563,9748740,0 +(1,9630:6764466,17945414:25818563,665693,196608 +(1,9629:6764466,17945414:0,665693,196608 +r1,9700:8010564,17945414:1246098,862301,196608 +k1,9629:6764466,17945414:-1246098 +) +(1,9629:6764466,17945414:1246098,665693,196608 +) +k1,9629:8219930,17945414:209366 +k1,9629:9946148,17945414:327680 +k1,9629:11872557,17945414:209366 +k1,9629:15308916,17945414:209366 +k1,9629:18510000,17945414:209365 +k1,9629:19370794,17945414:209366 +k1,9629:20922993,17945414:209366 +k1,9629:22699980,17945414:209366 +k1,9629:24303297,17945414:209366 +k1,9629:24868523,17945414:209366 +k1,9629:26211006,17945414:209365 +k1,9629:29545784,17945414:209366 +k1,9629:31563944,17945414:209366 +k1,9629:32583029,17945414:0 +) +(1,9630:6764466,18810494:25818563,505283,126483 +k1,9629:9992060,18810494:235875 +k1,9629:12096366,18810494:235875 +k1,9629:13825151,18810494:235875 +k1,9629:15231498,18810494:235874 +k1,9629:19132146,18810494:235875 +k1,9629:20664979,18810494:235875 +k1,9629:23679581,18810494:235875 +k1,9629:25926101,18810494:235875 +k1,9629:27153536,18810494:235875 +k1,9629:28938026,18810494:235874 +k1,9629:30554089,18810494:235875 +k1,9629:31955194,18810494:235875 +k1,9629:32583029,18810494:0 +) +(1,9630:6764466,19675574:25818563,505283,126483 +k1,9629:9834500,19675574:230359 +k1,9629:11994239,19675574:230359 +k1,9629:13683429,19675574:230359 +k1,9629:15244169,19675574:230359 +k1,9629:18466247,19675574:230359 +k1,9629:19348033,19675574:230358 +k1,9629:20769837,19675574:230359 +k1,9629:22702166,19675574:230359 +k1,9629:25562485,19675574:230359 +k1,9629:27663897,19675574:230359 +k1,9629:28522091,19675574:230359 +k1,9629:30454420,19675574:230359 +k1,9629:32583029,19675574:0 +) +(1,9630:6764466,20540654:25818563,513147,126483 +g1,9629:8306528,20540654 +g1,9629:9899708,20540654 +g1,9629:11118022,20540654 +g1,9629:12813438,20540654 +g1,9629:14505577,20540654 +g1,9629:15875279,20540654 +g1,9629:17525475,20540654 +g1,9629:21389477,20540654 +g1,9629:22919087,20540654 +(1,9629:22919087,20540654:0,459977,115847 +r1,9700:25035912,20540654:2116825,575824,115847 +k1,9629:22919087,20540654:-2116825 +) +(1,9629:22919087,20540654:2116825,459977,115847 +k1,9629:22919087,20540654:3277 +h1,9629:25032635,20540654:0,411205,112570 +) +g1,9629:25235141,20540654 +k1,9630:32583029,20540654:5247459 +g1,9630:32583029,20540654 +) +v1,9632:6764466,21225509:0,393216,0 +(1,9641:6764466,24967345:25818563,4135052,196608 +g1,9641:6764466,24967345 +g1,9641:6764466,24967345 +g1,9641:6567858,24967345 +(1,9641:6567858,24967345:0,4135052,196608 +r1,9700:32779637,24967345:26211779,4331660,196608 +k1,9641:6567857,24967345:-26211780 +) +(1,9641:6567858,24967345:26211779,4135052,196608 +[1,9641:6764466,24967345:25818563,3938444,0 +(1,9634:6764466,21436824:25818563,407923,9908 +(1,9633:6764466,21436824:0,0,0 +g1,9633:6764466,21436824 +g1,9633:6764466,21436824 +g1,9633:6436786,21436824 +(1,9633:6436786,21436824:0,0,0 +) +g1,9633:6764466,21436824 +) +g1,9634:7428374,21436824 +g1,9634:8424236,21436824 +h1,9634:9752052,21436824:0,0,0 +k1,9634:32583028,21436824:22830976 +g1,9634:32583028,21436824 +) +(1,9635:6764466,22121679:25818563,431045,86428 +h1,9635:6764466,22121679:0,0,0 +g1,9635:9752052,22121679 +g1,9635:10415960,22121679 +g1,9635:11411822,22121679 +g1,9635:12407684,22121679 +k1,9635:12407684,22121679:0 +h1,9635:13403546,22121679:0,0,0 +k1,9635:32583030,22121679:19179484 +g1,9635:32583030,22121679 +) +(1,9636:6764466,22806534:25818563,431045,86428 +h1,9636:6764466,22806534:0,0,0 +g1,9636:9752052,22806534 +g1,9636:10415960,22806534 +g1,9636:11411822,22806534 +g1,9636:12075730,22806534 +g1,9636:12739638,22806534 +g1,9636:13735500,22806534 +g1,9636:14399408,22806534 +g1,9636:15063316,22806534 +h1,9636:15727224,22806534:0,0,0 +k1,9636:32583028,22806534:16855804 +g1,9636:32583028,22806534 +) +(1,9637:6764466,23491389:25818563,431045,106246 +h1,9637:6764466,23491389:0,0,0 +g1,9637:11079868,23491389 +g1,9637:11743776,23491389 +g1,9637:13071592,23491389 +g1,9637:13735500,23491389 +g1,9637:14399408,23491389 +g1,9637:15395270,23491389 +g1,9637:16059178,23491389 +g1,9637:16723086,23491389 +g1,9637:17718948,23491389 +g1,9637:18382856,23491389 +k1,9637:18382856,23491389:43490 +h1,9637:20418070,23491389:0,0,0 +k1,9637:32583029,23491389:12164959 +g1,9637:32583029,23491389 +) +(1,9638:6764466,24176244:25818563,431045,112852 +h1,9638:6764466,24176244:0,0,0 +g1,9638:13071592,24176244 +g1,9638:13735500,24176244 +g1,9638:14399408,24176244 +g1,9638:15395270,24176244 +g1,9638:16059178,24176244 +g1,9638:16723086,24176244 +g1,9638:17718948,24176244 +g1,9638:18382856,24176244 +g1,9638:20042626,24176244 +g1,9638:21702396,24176244 +k1,9638:21702396,24176244:43490 +h1,9638:23737610,24176244:0,0,0 +k1,9638:32583029,24176244:8845419 +g1,9638:32583029,24176244 +) +(1,9639:6764466,24861099:25818563,431045,106246 +h1,9639:6764466,24861099:0,0,0 +g1,9639:10415960,24861099 +g1,9639:11079868,24861099 +g1,9639:11743776,24861099 +g1,9639:12739638,24861099 +g1,9639:13403546,24861099 +g1,9639:14067454,24861099 +g1,9639:15063316,24861099 +g1,9639:15727224,24861099 +g1,9639:16723086,24861099 +k1,9639:16723086,24861099:41838 +h1,9639:19420555,24861099:0,0,0 +k1,9639:32583029,24861099:13162474 +g1,9639:32583029,24861099 +) +] +) +g1,9641:32583029,24967345 +g1,9641:6764466,24967345 +g1,9641:6764466,24967345 +g1,9641:32583029,24967345 +g1,9641:32583029,24967345 +) +h1,9641:6764466,25163953:0,0,0 +(1,9644:6764466,26029033:25818563,513147,134348 +h1,9643:6764466,26029033:983040,0,0 +k1,9643:9484500,26029033:185101 +k1,9643:10135563,26029033:185102 +k1,9643:11491137,26029033:185101 +k1,9643:13206505,26029033:185102 +k1,9643:14043034,26029033:185101 +k1,9643:16509444,26029033:185102 +k1,9643:18153376,26029033:185101 +k1,9643:22993500,26029033:185102 +k1,9643:23845757,26029033:185101 +(1,9643:23845757,26029033:0,452978,122846 +r1,9700:26314294,26029033:2468537,575824,122846 +k1,9643:23845757,26029033:-2468537 +) +(1,9643:23845757,26029033:2468537,452978,122846 +k1,9643:23845757,26029033:3277 +h1,9643:26311017,26029033:0,411205,112570 +) +k1,9643:26499396,26029033:185102 +k1,9643:28695142,26029033:185101 +k1,9643:30071689,26029033:185102 +k1,9643:32583029,26029033:0 +) +(1,9644:6764466,26894113:25818563,505283,134348 +g1,9643:9290878,26894113 +g1,9643:10515090,26894113 +g1,9643:12993006,26894113 +h1,9643:13963594,26894113:0,0,0 +g1,9643:14162823,26894113 +g1,9643:15171422,26894113 +g1,9643:16868804,26894113 +h1,9643:17665722,26894113:0,0,0 +k1,9644:32583029,26894113:14743637 +g1,9644:32583029,26894113 +) +] +g1,9644:32583029,27028461 +) +h1,9644:6630773,27028461:0,0,0 +v1,9647:6630773,27893541:0,393216,0 +(1,9683:6630773,43714423:25952256,16214098,0 +g1,9683:6630773,43714423 +g1,9683:6237557,43714423 +r1,9700:6368629,43714423:131072,16214098,0 +g1,9683:6567858,43714423 +g1,9683:6764466,43714423 +[1,9683:6764466,43714423:25818563,16214098,0 +(1,9648:6764466,28254718:25818563,754393,260573 +(1,9647:6764466,28254718:0,754393,260573 +r1,9700:8010564,28254718:1246098,1014966,260573 +k1,9647:6764466,28254718:-1246098 +) +(1,9647:6764466,28254718:1246098,754393,260573 +) +k1,9647:8172099,28254718:161535 +k1,9647:8499779,28254718:327680 +k1,9647:9289149,28254718:161535 +k1,9647:10469770,28254718:161536 +k1,9647:11998386,28254718:161535 +k1,9647:12827077,28254718:161535 +(1,9647:12827077,28254718:0,459977,115847 +r1,9700:15647326,28254718:2820249,575824,115847 +k1,9647:12827077,28254718:-2820249 +) +(1,9647:12827077,28254718:2820249,459977,115847 +k1,9647:12827077,28254718:3277 +h1,9647:15644049,28254718:0,411205,112570 +) +k1,9647:15982531,28254718:161535 +k1,9647:17163151,28254718:161535 +k1,9647:19337953,28254718:161536 +k1,9647:20158780,28254718:161535 +k1,9647:21339400,28254718:161535 +k1,9647:24279662,28254718:161535 +k1,9647:26121540,28254718:161535 +k1,9647:26814573,28254718:161536 +k1,9647:30640881,28254718:161535 +k1,9647:31563944,28254718:161535 +k1,9647:32583029,28254718:0 +) +(1,9648:6764466,29119798:25818563,513147,134348 +k1,9647:9023089,29119798:245357 +k1,9647:9927737,29119798:245356 +k1,9647:11192179,29119798:245357 +k1,9647:13507162,29119798:245356 +k1,9647:15730396,29119798:245357 +k1,9647:18181040,29119798:245357 +k1,9647:19112558,29119798:245356 +k1,9647:20128618,29119798:245357 +k1,9647:23446303,29119798:245357 +k1,9647:24343087,29119798:245356 +k1,9647:25376842,29119798:245357 +k1,9647:26928331,29119798:245356 +k1,9647:29302297,29119798:245357 +k1,9647:32583029,29119798:0 +) +(1,9648:6764466,29984878:25818563,513147,126483 +k1,9647:9313426,29984878:183110 +(1,9647:9313426,29984878:0,414482,115847 +r1,9700:10726827,29984878:1413401,530329,115847 +k1,9647:9313426,29984878:-1413401 +) +(1,9647:9313426,29984878:1413401,414482,115847 +k1,9647:9313426,29984878:3277 +h1,9647:10723550,29984878:0,411205,112570 +) +k1,9647:11290701,29984878:183110 +k1,9647:11961384,29984878:183095 +k1,9647:14883244,29984878:183110 +k1,9647:17570485,29984878:183110 +k1,9647:18285092,29984878:183110 +k1,9647:19119630,29984878:183110 +k1,9647:20395226,29984878:183111 +k1,9647:20934196,29984878:183110 +k1,9647:24149657,29984878:183110 +k1,9647:25617273,29984878:183110 +k1,9647:28141330,29984878:183111 +k1,9647:28680300,29984878:183110 +(1,9647:28680300,29984878:0,452978,122846 +r1,9700:31148837,29984878:2468537,575824,122846 +k1,9647:28680300,29984878:-2468537 +) +(1,9647:28680300,29984878:2468537,452978,122846 +k1,9647:28680300,29984878:3277 +h1,9647:31145560,29984878:0,411205,112570 +) +k1,9647:31331947,29984878:183110 +k1,9648:32583029,29984878:0 +) +(1,9648:6764466,30849958:25818563,513147,134348 +k1,9647:7916992,30849958:212740 +k1,9647:8789024,30849958:212740 +k1,9647:11015029,30849958:212739 +k1,9647:12558150,30849958:212740 +k1,9647:15832077,30849958:212740 +k1,9647:17329323,30849958:212740 +k1,9647:18000159,30849958:212739 +k1,9647:19345361,30849958:212740 +k1,9647:20305867,30849958:212740 +k1,9647:23155776,30849958:212740 +k1,9647:25898205,30849958:212739 +k1,9647:29513574,30849958:212740 +k1,9647:31931601,30849958:212740 +k1,9647:32583029,30849958:0 +) +(1,9648:6764466,31715038:25818563,513147,134348 +k1,9647:7952615,31715038:169064 +k1,9647:9823648,31715038:169063 +k1,9647:12121321,31715038:169064 +k1,9647:15901418,31715038:169063 +k1,9647:18436332,31715038:169064 +(1,9647:18436332,31715038:0,414482,115847 +r1,9700:19498021,31715038:1061689,530329,115847 +k1,9647:18436332,31715038:-1061689 +) +(1,9647:18436332,31715038:1061689,414482,115847 +k1,9647:18436332,31715038:3277 +h1,9647:19494744,31715038:0,411205,112570 +) +k1,9647:19667084,31715038:169063 +k1,9647:21027593,31715038:169064 +(1,9647:21027593,31715038:0,414482,115847 +r1,9700:21737571,31715038:709978,530329,115847 +k1,9647:21027593,31715038:-709978 +) +(1,9647:21027593,31715038:709978,414482,115847 +k1,9647:21027593,31715038:3277 +h1,9647:21734294,31715038:0,411205,112570 +) +k1,9647:22113729,31715038:169064 +k1,9647:23274352,31715038:169063 +k1,9647:25641494,31715038:169064 +k1,9647:28745259,31715038:169063 +k1,9647:29723693,31715038:169064 +k1,9647:32583029,31715038:0 +) +(1,9648:6764466,32580118:25818563,513147,134348 +k1,9647:8074531,32580118:177603 +k1,9647:9604796,32580118:177602 +k1,9647:11618718,32580118:177603 +k1,9647:14629441,32580118:177602 +k1,9647:15423082,32580118:177603 +k1,9647:15956544,32580118:177602 +k1,9647:18912874,32580118:177603 +k1,9647:20770820,32580118:177603 +k1,9647:21607714,32580118:177602 +k1,9647:23798583,32580118:177603 +k1,9647:25306566,32580118:177602 +k1,9647:26878120,32580118:177603 +k1,9647:28074807,32580118:177602 +k1,9647:31470228,32580118:177603 +k1,9648:32583029,32580118:0 +) +(1,9648:6764466,33445198:25818563,513147,134348 +k1,9647:8898041,33445198:164218 +k1,9647:9721551,33445198:164218 +k1,9647:10904854,33445198:164218 +k1,9647:13377249,33445198:164217 +k1,9647:15746754,33445198:164218 +k1,9647:16562400,33445198:164218 +(1,9647:16562400,33445198:0,414482,115847 +r1,9700:17624089,33445198:1061689,530329,115847 +k1,9647:16562400,33445198:-1061689 +) +(1,9647:16562400,33445198:1061689,414482,115847 +k1,9647:16562400,33445198:3277 +h1,9647:17620812,33445198:0,411205,112570 +) +k1,9647:17788307,33445198:164218 +k1,9647:19143970,33445198:164218 +(1,9647:19143970,33445198:0,414482,115847 +r1,9700:19853948,33445198:709978,530329,115847 +k1,9647:19143970,33445198:-709978 +) +(1,9647:19143970,33445198:709978,414482,115847 +k1,9647:19143970,33445198:3277 +h1,9647:19850671,33445198:0,411205,112570 +) +k1,9647:20018166,33445198:164218 +k1,9647:21920399,33445198:164218 +k1,9647:25377146,33445198:164218 +k1,9647:26439206,33445198:164217 +k1,9647:27509787,33445198:164218 +k1,9647:28877246,33445198:164218 +k1,9647:29802992,33445198:164218 +k1,9647:32583029,33445198:0 +) +(1,9648:6764466,34310278:25818563,513147,134348 +k1,9647:8705970,34310278:206111 +k1,9647:10981707,34310278:206110 +k1,9647:13495996,34310278:206111 +k1,9647:14361398,34310278:206110 +k1,9647:17329852,34310278:206111 +k1,9647:20053200,34310278:206110 +k1,9647:21513015,34310278:206111 +k1,9647:22823407,34310278:206110 +k1,9647:24517841,34310278:206111 +k1,9647:26117902,34310278:206110 +k1,9647:27343098,34310278:206111 +k1,9647:30540927,34310278:206110 +k1,9647:32583029,34310278:0 +) +(1,9648:6764466,35175358:25818563,505283,134348 +g1,9647:9322336,35175358 +g1,9647:10902409,35175358 +g1,9647:12272111,35175358 +g1,9647:16136113,35175358 +g1,9647:17632300,35175358 +g1,9647:18850614,35175358 +g1,9647:21828570,35175358 +g1,9647:24038444,35175358 +g1,9647:25229233,35175358 +g1,9647:26977078,35175358 +g1,9647:28556495,35175358 +k1,9648:32583029,35175358:2861304 +g1,9648:32583029,35175358 +) +v1,9650:6764466,35860213:0,393216,0 +(1,9681:6764466,43517815:25818563,8050818,196608 +g1,9681:6764466,43517815 +g1,9681:6764466,43517815 +g1,9681:6567858,43517815 +(1,9681:6567858,43517815:0,8050818,196608 +r1,9700:32779637,43517815:26211779,8247426,196608 +k1,9681:6567857,43517815:-26211780 +) +(1,9681:6567858,43517815:26211779,8050818,196608 +[1,9681:6764466,43517815:25818563,7854210,0 +(1,9652:6764466,36094650:25818563,431045,86428 +(1,9651:6764466,36094650:0,0,0 +g1,9651:6764466,36094650 +g1,9651:6764466,36094650 +g1,9651:6436786,36094650 +(1,9651:6436786,36094650:0,0,0 +) +g1,9651:6764466,36094650 +) +k1,9652:6764466,36094650:0 +g1,9652:11079868,36094650 +g1,9652:12739638,36094650 +k1,9652:12739638,36094650:0 +h1,9652:14731362,36094650:0,0,0 +k1,9652:32583030,36094650:17851668 +g1,9652:32583030,36094650 +) +(1,9656:6764466,36910577:25818563,424439,79822 +(1,9654:6764466,36910577:0,0,0 +g1,9654:6764466,36910577 +g1,9654:6764466,36910577 +g1,9654:6436786,36910577 +(1,9654:6436786,36910577:0,0,0 +) +g1,9654:6764466,36910577 +) +g1,9656:7760328,36910577 +g1,9656:9088144,36910577 +h1,9656:9420098,36910577:0,0,0 +k1,9656:32583030,36910577:23162932 +g1,9656:32583030,36910577 +) +(1,9658:6764466,37726504:25818563,431045,86428 +(1,9657:6764466,37726504:0,0,0 +g1,9657:6764466,37726504 +g1,9657:6764466,37726504 +g1,9657:6436786,37726504 +(1,9657:6436786,37726504:0,0,0 +) +g1,9657:6764466,37726504 +) +k1,9658:6764466,37726504:0 +g1,9658:11411822,37726504 +g1,9658:13071592,37726504 +k1,9658:13071592,37726504:0 +h1,9658:15063316,37726504:0,0,0 +k1,9658:32583028,37726504:17519712 +g1,9658:32583028,37726504 +) +(1,9662:6764466,38542431:25818563,424439,79822 +(1,9660:6764466,38542431:0,0,0 +g1,9660:6764466,38542431 +g1,9660:6764466,38542431 +g1,9660:6436786,38542431 +(1,9660:6436786,38542431:0,0,0 +) +g1,9660:6764466,38542431 +) +g1,9662:7760328,38542431 +g1,9662:9088144,38542431 +k1,9662:9088144,38542431:0 +h1,9662:9752052,38542431:0,0,0 +k1,9662:32583028,38542431:22830976 +g1,9662:32583028,38542431 +) +(1,9664:6764466,39358358:25818563,431045,86428 +(1,9663:6764466,39358358:0,0,0 +g1,9663:6764466,39358358 +g1,9663:6764466,39358358 +g1,9663:6436786,39358358 +(1,9663:6436786,39358358:0,0,0 +) +g1,9663:6764466,39358358 +) +k1,9664:6764466,39358358:0 +g1,9664:11743776,39358358 +g1,9664:14399408,39358358 +g1,9664:16059178,39358358 +k1,9664:16059178,39358358:0 +h1,9664:18050902,39358358:0,0,0 +k1,9664:32583029,39358358:14532127 +g1,9664:32583029,39358358 +) +(1,9668:6764466,40174285:25818563,424439,79822 +(1,9666:6764466,40174285:0,0,0 +g1,9666:6764466,40174285 +g1,9666:6764466,40174285 +g1,9666:6436786,40174285 +(1,9666:6436786,40174285:0,0,0 +) +g1,9666:6764466,40174285 +) +g1,9668:7760328,40174285 +g1,9668:9088144,40174285 +g1,9668:9420098,40174285 +g1,9668:10084006,40174285 +k1,9668:10084006,40174285:0 +h1,9668:10747914,40174285:0,0,0 +k1,9668:32583030,40174285:21835116 +g1,9668:32583030,40174285 +) +(1,9670:6764466,40990212:25818563,431045,86428 +(1,9669:6764466,40990212:0,0,0 +g1,9669:6764466,40990212 +g1,9669:6764466,40990212 +g1,9669:6436786,40990212 +(1,9669:6436786,40990212:0,0,0 +) +g1,9669:6764466,40990212 +) +k1,9670:6764466,40990212:0 +g1,9670:12075730,40990212 +g1,9670:14399408,40990212 +g1,9670:16059178,40990212 +k1,9670:16059178,40990212:0 +h1,9670:18050902,40990212:0,0,0 +k1,9670:32583029,40990212:14532127 +g1,9670:32583029,40990212 +) +(1,9674:6764466,41806139:25818563,424439,79822 +(1,9672:6764466,41806139:0,0,0 +g1,9672:6764466,41806139 +g1,9672:6764466,41806139 +g1,9672:6436786,41806139 +(1,9672:6436786,41806139:0,0,0 +) +g1,9672:6764466,41806139 +) +g1,9674:7760328,41806139 +g1,9674:9088144,41806139 +g1,9674:10084006,41806139 +g1,9674:10415960,41806139 +h1,9674:10747914,41806139:0,0,0 +k1,9674:32583030,41806139:21835116 +g1,9674:32583030,41806139 +) +(1,9676:6764466,42622066:25818563,431045,86428 +(1,9675:6764466,42622066:0,0,0 +g1,9675:6764466,42622066 +g1,9675:6764466,42622066 +g1,9675:6436786,42622066 +(1,9675:6436786,42622066:0,0,0 +) +g1,9675:6764466,42622066 +) +k1,9676:6764466,42622066:0 +g1,9676:12075730,42622066 +g1,9676:14399408,42622066 +g1,9676:16059178,42622066 +h1,9676:16723086,42622066:0,0,0 +k1,9676:32583029,42622066:15859943 +g1,9676:32583029,42622066 +) +(1,9680:6764466,43437993:25818563,424439,79822 +(1,9678:6764466,43437993:0,0,0 +g1,9678:6764466,43437993 +g1,9678:6764466,43437993 +g1,9678:6436786,43437993 +(1,9678:6436786,43437993:0,0,0 +) +g1,9678:6764466,43437993 +) +g1,9680:7760328,43437993 +g1,9680:9088144,43437993 +g1,9680:9752052,43437993 +h1,9680:10084006,43437993:0,0,0 +k1,9680:32583030,43437993:22499024 +g1,9680:32583030,43437993 ) ] -[1,10596:3078558,4812305:0,0,0 -(1,10596:3078558,49800853:0,16384,2228224 -g1,10596:29030814,49800853 -g1,10596:36135244,49800853 -(1,8393:36135244,49800853:1720320,16384,2228224 -(1,8393:36135244,52029077:16384,1703936,0 -[1,8393:36135244,52029077:25952256,1703936,0 -(1,8393:36135244,51504789:25952256,1179648,0 -(1,8393:36135244,51504789:16384,1179648,0 -r1,10596:36151628,51504789:16384,1179648,0 ) -k1,8393:62087500,51504789:25935872 -g1,8393:62087500,51504789 +g1,9681:32583029,43517815 +g1,9681:6764466,43517815 +g1,9681:6764466,43517815 +g1,9681:32583029,43517815 +g1,9681:32583029,43517815 ) +h1,9681:6764466,43714423:0,0,0 ] +g1,9683:32583029,43714423 ) -g1,8393:36675916,49800853 -(1,8393:36675916,49800853:1179648,16384,0 -r1,10596:37855564,49800853:1179648,16384,0 +h1,9683:6630773,43714423:0,0,0 +v1,9686:6630773,44579503:0,393216,0 +] +(1,9700:32583029,45706769:0,0,0 +g1,9700:32583029,45706769 ) ) -k1,10596:3078556,49800853:-34777008 +] +(1,9700:6630773,47279633:25952256,0,0 +h1,9700:6630773,47279633:25952256,0,0 ) ] -g1,10596:6630773,4812305 -k1,10596:21643106,4812305:13816956 -g1,10596:23265777,4812305 -g1,10596:24088253,4812305 -g1,10596:28572226,4812305 -g1,10596:29981905,4812305 +(1,9700:4262630,4025873:0,0,0 +[1,9700:-473656,4025873:0,0,0 +(1,9700:-473656,-710413:0,0,0 +(1,9700:-473656,-710413:0,0,0 +g1,9700:-473656,-710413 ) +g1,9700:-473656,-710413 ) ] -[1,10596:6630773,45706769:25952256,40108032,0 -(1,10596:6630773,45706769:25952256,40108032,0 -(1,10596:6630773,45706769:0,0,0 -g1,10596:6630773,45706769 ) -[1,10596:6630773,45706769:25952256,40108032,0 -(1,10551:6630773,6254097:25952256,32768,229376 -(1,10551:6630773,6254097:0,32768,229376 -(1,10551:6630773,6254097:5505024,32768,229376 -r1,10596:12135797,6254097:5505024,262144,229376 +] +!29677 +}154 +Input:1400:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1401:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1402:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1403:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1404:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1405:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1406:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1407:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1408:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1409:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1410:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1046 +{155 +[1,9718:4262630,47279633:28320399,43253760,0 +(1,9718:4262630,4025873:0,0,0 +[1,9718:-473656,4025873:0,0,0 +(1,9718:-473656,-710413:0,0,0 +(1,9718:-473656,-644877:0,0,0 +k1,9718:-473656,-644877:-65536 ) -k1,10551:6630773,6254097:-5505024 +(1,9718:-473656,4736287:0,0,0 +k1,9718:-473656,4736287:5209943 ) -(1,10551:6630773,6254097:25952256,32768,0 -r1,10596:32583029,6254097:25952256,32768,0 +g1,9718:-473656,-710413 ) +] ) -(1,10551:6630773,7858425:25952256,606339,151780 -(1,10551:6630773,7858425:1974731,582746,14155 -g1,10551:6630773,7858425 -g1,10551:8605504,7858425 -) -g1,10551:12737418,7858425 -g1,10551:14546212,7858425 -g1,10551:17669920,7858425 -k1,10551:32583029,7858425:12762217 -g1,10551:32583029,7858425 -) -(1,10554:6630773,9093129:25952256,513147,134348 -k1,10553:7296168,9093129:250552 -k1,10553:10307147,9093129:250603 -k1,10553:12789252,9093129:250604 -k1,10553:16065652,9093129:250603 -k1,10553:17600762,9093129:250604 -k1,10553:18955647,9093129:250603 -k1,10553:19954017,9093129:250604 -k1,10553:21717846,9093129:250603 -k1,10553:22619878,9093129:250604 -k1,10553:24599977,9093129:250604 -k1,10553:27108295,9093129:250603 -k1,10553:29971164,9093129:250604 -k1,10553:31966991,9093129:250603 -k1,10554:32583029,9093129:0 -) -(1,10554:6630773,9934617:25952256,513147,134348 -k1,10553:7444072,9934617:224786 -k1,10553:8865545,9934617:224786 -k1,10553:10692031,9934617:224786 -k1,10553:14221798,9934617:224786 -k1,10553:15959810,9934617:224786 -k1,10553:17176156,9934617:224786 -k1,10553:19168447,9934617:224785 -k1,10553:20340884,9934617:224786 -k1,10553:23197596,9934617:224786 -(1,10553:23197596,9934617:0,452978,115847 -r1,10596:25314421,9934617:2116825,568825,115847 -k1,10553:23197596,9934617:-2116825 -) -(1,10553:23197596,9934617:2116825,452978,115847 -k1,10553:23197596,9934617:3277 -h1,10553:25311144,9934617:0,411205,112570 -) -k1,10553:25712877,9934617:224786 -(1,10553:25712877,9934617:0,452978,115847 -r1,10596:27477990,9934617:1765113,568825,115847 -k1,10553:25712877,9934617:-1765113 -) -(1,10553:25712877,9934617:1765113,452978,115847 -k1,10553:25712877,9934617:3277 -h1,10553:27474713,9934617:0,411205,112570 -) -k1,10553:27702776,9934617:224786 -k1,10553:31169628,9934617:224786 -(1,10553:31169628,9934617:0,452978,115847 -r1,10596:32583029,9934617:1413401,568825,115847 -k1,10553:31169628,9934617:-1413401 -) -(1,10553:31169628,9934617:1413401,452978,115847 -k1,10553:31169628,9934617:3277 -h1,10553:32579752,9934617:0,411205,112570 -) -k1,10553:32583029,9934617:0 -) -(1,10554:6630773,10776105:25952256,505283,134348 -k1,10553:9914950,10776105:233476 -k1,10553:13478966,10776105:233476 -(1,10553:13478966,10776105:0,452978,115847 -r1,10596:15244079,10776105:1765113,568825,115847 -k1,10553:13478966,10776105:-1765113 -) -(1,10553:13478966,10776105:1765113,452978,115847 -k1,10553:13478966,10776105:3277 -h1,10553:15240802,10776105:0,411205,112570 -) -k1,10553:15651224,10776105:233475 -k1,10553:17076145,10776105:233476 -(1,10553:17076145,10776105:0,452978,115847 -r1,10596:18841258,10776105:1765113,568825,115847 -k1,10553:17076145,10776105:-1765113 -) -(1,10553:17076145,10776105:1765113,452978,115847 -k1,10553:17076145,10776105:3277 -h1,10553:18837981,10776105:0,411205,112570 -) -k1,10553:19248404,10776105:233476 -k1,10553:22579767,10776105:233476 -k1,10553:24309429,10776105:233475 -k1,10553:28966585,10776105:233476 -k1,10553:29970764,10776105:233476 -k1,10553:32583029,10776105:0 -) -(1,10554:6630773,11617593:25952256,513147,134348 -k1,10553:10022463,11617593:280696 -k1,10553:11064686,11617593:280695 -k1,10553:11701242,11617593:280696 -k1,10553:13854956,11617593:280695 -k1,10553:16831148,11617593:280696 -k1,10553:18211537,11617593:280695 -k1,10553:21578979,11617593:280696 -k1,10553:22878759,11617593:280695 -k1,10553:25494503,11617593:280696 -k1,10553:27271385,11617593:280695 -k1,10553:28743526,11617593:280696 -k1,10553:30128503,11617593:280695 -k1,10553:32124932,11617593:280696 -k1,10553:32583029,11617593:0 -) -(1,10554:6630773,12459081:25952256,513147,126483 -k1,10553:8666274,12459081:165103 -k1,10553:9482805,12459081:165103 -k1,10553:13486351,12459081:165102 -k1,10553:15525784,12459081:165103 -k1,10553:18716684,12459081:165103 -k1,10553:19873347,12459081:165103 -k1,10553:22325000,12459081:165102 -k1,10553:23106141,12459081:165103 -k1,10553:23724719,12459081:165069 -k1,10553:25081267,12459081:165103 -k1,10553:28363261,12459081:165102 -k1,10553:29253192,12459081:165103 -k1,10553:30884991,12459081:165103 -k1,10553:32583029,12459081:0 -) -(1,10554:6630773,13300569:25952256,513147,134348 -k1,10553:9504859,13300569:261821 -k1,10553:13207976,13300569:261822 -k1,10553:14461357,13300569:261821 -k1,10553:16410076,13300569:261822 -k1,10553:18052085,13300569:261821 -k1,10553:19305466,13300569:261821 -k1,10553:20948787,13300569:261822 -k1,10553:21698133,13300569:261758 -k1,10553:23525610,13300569:261822 -k1,10553:25181382,13300569:261821 -k1,10553:28434923,13300569:261822 -k1,10553:29356036,13300569:261821 -k1,10553:32583029,13300569:0 -) -(1,10554:6630773,14142057:25952256,513147,134348 -k1,10553:9791282,14142057:134712 -k1,10553:12709963,14142057:134712 -k1,10553:13460713,14142057:134712 -k1,10553:15029353,14142057:134712 -k1,10553:15578844,14142057:134648 -k1,10553:16998062,14142057:134712 -k1,10553:20566206,14142057:134713 -k1,10553:23313183,14142057:134712 -k1,10553:26889190,14142057:134712 -k1,10553:27555399,14142057:134712 -k1,10553:30540927,14142057:134712 -k1,10553:32583029,14142057:0 -) -(1,10554:6630773,14983545:25952256,513147,134348 -k1,10553:7710050,14983545:181434 -k1,10553:9588211,14983545:181434 -k1,10553:12795442,14983545:181434 -k1,10553:14329538,14983545:181433 -k1,10553:14866832,14983545:181434 -k1,10553:17026143,14983545:181434 -k1,10553:17866869,14983545:181434 -k1,10553:20844724,14983545:181434 -k1,10553:23039424,14983545:181434 -k1,10553:23907019,14983545:181433 -k1,10553:25597092,14983545:181434 -k1,10553:27084659,14983545:181434 -k1,10553:30512091,14983545:181434 -k1,10553:32583029,14983545:0 -) -(1,10554:6630773,15825033:25952256,513147,115847 -g1,10553:7777653,15825033 -(1,10553:7777653,15825033:0,452978,115847 -r1,10596:12356461,15825033:4578808,568825,115847 -k1,10553:7777653,15825033:-4578808 -) -(1,10553:7777653,15825033:4578808,452978,115847 -k1,10553:7777653,15825033:3277 -h1,10553:12353184,15825033:0,411205,112570 -) -k1,10554:32583029,15825033:20052898 -g1,10554:32583029,15825033 -) -(1,10573:6630773,28237943:25952256,11536845,0 -k1,10556:7197569,28237943:566796 -[1,10573:7197569,28237943:24818664,11536845,0 -(1,10573:7197569,16766634:24818664,65536,0 -g1,10573:7197569,16766634 -(1,10573:7197569,16766634:24818664,65536,0 -r1,10596:32016233,16766634:24818664,65536,0 -) -g1,10573:32016233,16766634 -) -(1,10573:7197569,22641903:24818664,5809733,5399432 -g1,10573:7197569,22641903 -(1,10573:7197569,22641903:24818664,5809733,5399432 -g1,10556:7396798,22641903 -$1,10573:7396798,22641903 -[1,10573:7396798,22641903:24619435,5809733,5399432 -(1,10559:7396798,17608152:24619435,539955,231411 -g1,10558:7396798,17608152 -(1,10558:7396798,17608152:5234169,539955,231411 -r1,10596:7396798,17608152:0,771366,231411 -g1,10558:7724478,17608152 -g1,10558:7724479,17608152 -k1,10558:12303287,17608152:1788940 -g1,10558:12630967,17608152 -) -g1,10558:12630967,17608152 -(1,10558:12630967,17608152:11273228,539955,231411 -g1,10558:12958647,17608152 -g1,10558:12958648,17608152 -k1,10558:23576515,17608152:6432083 -g1,10558:23904195,17608152 -) -g1,10558:23904195,17608152 -(1,10559:23904195,17608152:8112038,539955,231411 -g1,10558:24231875,17608152 -g1,10558:24231876,17608152 -g1,10558:26386044,17608152 -k1,10559:31688553,17608152:3289243 -g1,10559:32016233,17608152 -) -g1,10559:32016233,17608152 -) -(1,10561:7396798,18762934:24619435,594022,231411 -g1,10560:7396798,18762934 -(1,10560:7396798,18762934:5234169,594022,231411 -r1,10596:7396798,18762934:0,771366,231411 -g1,10560:7724478,18762934 -g1,10560:7724479,18762934 -(1,10560:7724479,18762934:0,452978,115847 -r1,10596:9489592,18762934:1765113,568825,115847 -k1,10560:7724479,18762934:-1765113 -) -(1,10560:7724479,18762934:1765113,452978,115847 -k1,10560:7724479,18762934:3277 -h1,10560:9486315,18762934:0,411205,112570 -) -k1,10560:12303287,18762934:2813695 -g1,10560:12630967,18762934 -) -g1,10560:12630967,18762934 -(1,10560:12630967,18762934:11273228,594022,231411 -g1,10560:12958647,18762934 -g1,10560:12958648,18762934 -$1,10560:12958648,18762934 -(1,10560:12958648,18801578:649462,567542,79954 -) -[1,10560:13608110,18904472:909902,735560,5505 -(1,10560:13608110,18417556:393347,248644,5505 -) -(1,10560:13608110,18904472:909902,346358,5505 -) -] -g1,10560:14627248,18762934 -(1,10560:15100419,18861248:233243,346358,5505 -) -$1,10560:15333662,18762934 -k1,10560:23576515,18762934:8242853 -g1,10560:23904195,18762934 -) -g1,10560:23904195,18762934 -(1,10561:23904195,18762934:8112038,594022,231411 -g1,10560:24231875,18762934 -g1,10560:24231876,18762934 -g1,10560:27224905,18762934 -k1,10561:31688553,18762934:4065189 -g1,10561:32016233,18762934 -) -g1,10561:32016233,18762934 -) -(1,10562:7396798,19568706:24619435,574361,231411 -g1,10561:7396798,19568706 -(1,10561:7396798,19568706:5234169,574361,231411 -r1,10596:7396798,19568706:0,771366,231411 -g1,10561:7724478,19568706 -g1,10561:7724479,19568706 -(1,10561:7724479,19568706:0,452978,115847 -r1,10596:9841304,19568706:2116825,568825,115847 -k1,10561:7724479,19568706:-2116825 -) -(1,10561:7724479,19568706:2116825,452978,115847 -k1,10561:7724479,19568706:3277 -h1,10561:9838027,19568706:0,411205,112570 -) -k1,10561:12303287,19568706:2461983 -g1,10561:12630967,19568706 -) -g1,10561:12630967,19568706 -(1,10561:12630967,19568706:11273228,574361,231411 -g1,10561:12958647,19568706 -g1,10561:12958648,19568706 -$1,10561:12958648,19568706 -(1,10561:12958648,19587689:692060,528220,79954 -) -[1,10561:13650708,19699710:909902,705365,5505 -(1,10561:13650708,19242989:393347,248644,5505 -) -(1,10561:13650708,19699710:909902,346358,5505 -) -] -g1,10561:14669846,19568706 -(1,10561:15143017,19667020:233243,346358,5505 -) -$1,10561:15376260,19568706 -k1,10561:23576515,19568706:8200255 -g1,10561:23904195,19568706 -) -g1,10561:23904195,19568706 -(1,10562:23904195,19568706:8112038,574361,231411 -g1,10561:24231875,19568706 -g1,10561:24231876,19568706 -g1,10561:27224905,19568706 -k1,10562:31688553,19568706:4065189 -g1,10562:32016233,19568706 +[1,9718:6630773,47279633:25952256,43253760,0 +[1,9718:6630773,4812305:25952256,786432,0 +(1,9718:6630773,4812305:25952256,505283,134348 +(1,9718:6630773,4812305:25952256,505283,134348 +g1,9718:3078558,4812305 +[1,9718:3078558,4812305:0,0,0 +(1,9718:3078558,2439708:0,1703936,0 +k1,9718:1358238,2439708:-1720320 +(1,8606:1358238,2439708:1720320,1703936,0 +(1,8606:1358238,2439708:1179648,16384,0 +r1,9718:2537886,2439708:1179648,16384,0 ) -g1,10562:32016233,19568706 +g1,8606:3062174,2439708 +(1,8606:3062174,2439708:16384,1703936,0 +[1,8606:3062174,2439708:25952256,1703936,0 +(1,8606:3062174,1915420:25952256,1179648,0 +(1,8606:3062174,1915420:16384,1179648,0 +r1,9718:3078558,1915420:16384,1179648,0 ) -(1,10563:7396798,20521145:24619435,721028,231411 -g1,10562:7396798,20521145 -(1,10562:7396798,20521145:5234169,721028,231411 -r1,10596:7396798,20521145:0,771366,231411 -g1,10562:7724478,20521145 -g1,10562:7724479,20521145 -(1,10562:7724479,20521145:0,452978,115847 -r1,10596:10544728,20521145:2820249,568825,115847 -k1,10562:7724479,20521145:-2820249 +k1,8606:29014430,1915420:25935872 +g1,8606:29014430,1915420 ) -(1,10562:7724479,20521145:2820249,452978,115847 -k1,10562:7724479,20521145:3277 -h1,10562:10541451,20521145:0,411205,112570 +] ) -k1,10562:12303287,20521145:1758559 -g1,10562:12630967,20521145 ) -g1,10562:12630967,20521145 -(1,10562:12630967,20521145:11273228,721028,231411 -g1,10562:12958647,20521145 -g1,10562:12958648,20521145 -$1,10562:12958648,20521145 -(1,10562:12958648,20559789:649462,567542,79954 ) -[1,10562:13608110,20662683:909902,821346,5505 -(1,10562:13608110,20175767:311689,334430,0 +] +[1,9718:3078558,4812305:0,0,0 +(1,9718:3078558,2439708:0,1703936,0 +g1,9718:29030814,2439708 +g1,9718:36135244,2439708 +(1,8606:36135244,2439708:1720320,1703936,0 +(1,8606:36135244,2439708:16384,1703936,0 +[1,8606:36135244,2439708:25952256,1703936,0 +(1,8606:36135244,1915420:25952256,1179648,0 +(1,8606:36135244,1915420:16384,1179648,0 +r1,9718:36151628,1915420:16384,1179648,0 ) -(1,10562:13608110,20662683:909902,346358,5505 +k1,8606:62087500,1915420:25935872 +g1,8606:62087500,1915420 ) ] -g1,10562:14627248,20521145 -(1,10562:15100419,20619459:233243,346358,5505 ) -g1,10562:15632297,20521145 -g1,10562:16318905,20521145 -(1,10562:16318905,20559789:649462,567542,79954 +g1,8606:36675916,2439708 +(1,8606:36675916,2439708:1179648,16384,0 +r1,9718:37855564,2439708:1179648,16384,0 ) -[1,10562:16968367,20694488:909902,894371,5505 -(1,10562:16968367,20146475:286917,346358,96797 ) -(1,10562:16968367,20694488:909902,346358,5505 +k1,9718:3078556,2439708:-34777008 ) ] -g1,10562:17987505,20521145 -(1,10562:18460676,20619459:233243,346358,5505 +[1,9718:3078558,4812305:0,0,0 +(1,9718:3078558,49800853:0,16384,2228224 +k1,9718:1358238,49800853:-1720320 +(1,8606:1358238,49800853:1720320,16384,2228224 +(1,8606:1358238,49800853:1179648,16384,0 +r1,9718:2537886,49800853:1179648,16384,0 ) -g1,10562:18992554,20521145 -g1,10562:19679162,20521145 -(1,10562:19679162,20559789:649462,567542,79954 +g1,8606:3062174,49800853 +(1,8606:3062174,52029077:16384,1703936,0 +[1,8606:3062174,52029077:25952256,1703936,0 +(1,8606:3062174,51504789:25952256,1179648,0 +(1,8606:3062174,51504789:16384,1179648,0 +r1,9718:3078558,51504789:16384,1179648,0 ) -[1,10562:20328624,20662683:909902,735560,5505 -(1,10562:20328624,20175767:393347,248644,5505 -) -(1,10562:20328624,20662683:909902,346358,5505 +k1,8606:29014430,51504789:25935872 +g1,8606:29014430,51504789 ) ] -g1,10562:21347762,20521145 -(1,10562:21820933,20619459:233243,346358,5505 -) -$1,10562:22054176,20521145 -k1,10562:23576515,20521145:1522339 -g1,10562:23904195,20521145 ) -g1,10562:23904195,20521145 -(1,10563:23904195,20521145:8112038,721028,231411 -g1,10562:24231875,20521145 -g1,10562:24231876,20521145 -g1,10562:27224905,20521145 -$1,10562:27224905,20521145 -(1,10562:27740018,20619459:779158,298648,5505 ) -g1,10562:28701236,20521145 -g1,10562:29451493,20521145 -(1,10562:29966606,20619459:463995,331678,0 ) -$1,10562:30430601,20521145 -k1,10563:31688553,20521145:1257952 -g1,10563:32016233,20521145 +] +[1,9718:3078558,4812305:0,0,0 +(1,9718:3078558,49800853:0,16384,2228224 +g1,9718:29030814,49800853 +g1,9718:36135244,49800853 +(1,8606:36135244,49800853:1720320,16384,2228224 +(1,8606:36135244,52029077:16384,1703936,0 +[1,8606:36135244,52029077:25952256,1703936,0 +(1,8606:36135244,51504789:25952256,1179648,0 +(1,8606:36135244,51504789:16384,1179648,0 +r1,9718:36151628,51504789:16384,1179648,0 ) -g1,10563:32016233,20521145 +k1,8606:62087500,51504789:25935872 +g1,8606:62087500,51504789 ) -(1,10564:7396798,21473584:24619435,721028,231411 -g1,10563:7396798,21473584 -(1,10563:7396798,21473584:5234169,721028,231411 -r1,10596:7396798,21473584:0,771366,231411 -g1,10563:7724478,21473584 -g1,10563:7724479,21473584 -(1,10563:7724479,21473584:0,452978,115847 -r1,10596:10896439,21473584:3171960,568825,115847 -k1,10563:7724479,21473584:-3171960 +] ) -(1,10563:7724479,21473584:3171960,452978,115847 -k1,10563:7724479,21473584:3277 -h1,10563:10893162,21473584:0,411205,112570 +g1,8606:36675916,49800853 +(1,8606:36675916,49800853:1179648,16384,0 +r1,9718:37855564,49800853:1179648,16384,0 ) -k1,10563:12303287,21473584:1406848 -g1,10563:12630967,21473584 ) -g1,10563:12630967,21473584 -(1,10563:12630967,21473584:11273228,721028,231411 -g1,10563:12958647,21473584 -g1,10563:12958648,21473584 -$1,10563:12958648,21473584 -(1,10563:12958648,21492567:692060,528220,79954 +k1,9718:3078556,49800853:-34777008 ) -[1,10563:13650708,21599083:909902,785646,5505 -(1,10563:13650708,21147867:311689,334430,0 +] +g1,9718:6630773,4812305 +k1,9718:21643106,4812305:13816956 +g1,9718:23265777,4812305 +g1,9718:24088253,4812305 +g1,9718:28572226,4812305 +g1,9718:29981905,4812305 ) -(1,10563:13650708,21599083:909902,346358,5505 ) ] -g1,10563:14669846,21473584 -(1,10563:15143017,21571898:233243,346358,5505 +[1,9718:6630773,45706769:25952256,40108032,0 +(1,9718:6630773,45706769:25952256,40108032,0 +(1,9718:6630773,45706769:0,0,0 +g1,9718:6630773,45706769 ) -g1,10563:15674895,21473584 -g1,10563:16361503,21473584 -(1,10563:16361503,21492567:692060,528220,79954 +[1,9718:6630773,45706769:25952256,40108032,0 +v1,9700:6630773,6254097:0,393216,0 +(1,9700:6630773,15951570:25952256,10090689,0 +g1,9700:6630773,15951570 +g1,9700:6237557,15951570 +r1,9718:6368629,15951570:131072,10090689,0 +g1,9700:6567858,15951570 +g1,9700:6764466,15951570 +[1,9700:6764466,15951570:25818563,10090689,0 +(1,9687:6764466,6526574:25818563,665693,196608 +(1,9686:6764466,6526574:0,665693,196608 +r1,9718:8010564,6526574:1246098,862301,196608 +k1,9686:6764466,6526574:-1246098 +) +(1,9686:6764466,6526574:1246098,665693,196608 +) +k1,9686:8198012,6526574:187448 +k1,9686:9924230,6526574:327680 +k1,9686:11985352,6526574:187448 +k1,9686:13908192,6526574:187447 +(1,9686:13908192,6526574:0,459977,115847 +r1,9718:16728441,6526574:2820249,575824,115847 +k1,9686:13908192,6526574:-2820249 +) +(1,9686:13908192,6526574:2820249,459977,115847 +k1,9686:13908192,6526574:3277 +h1,9686:16725164,6526574:0,411205,112570 +) +k1,9686:17089559,6526574:187448 +k1,9686:17632867,6526574:187448 +k1,9686:19693334,6526574:187448 +k1,9686:23067142,6526574:187448 +k1,9686:23906018,6526574:187448 +k1,9686:26805345,6526574:187447 +k1,9686:29808875,6526574:187448 +k1,9686:31563944,6526574:187448 +k1,9686:32583029,6526574:0 +) +(1,9687:6764466,7391654:25818563,505283,134348 +k1,9686:8190950,7391654:254045 +k1,9686:10753173,7391654:254045 +(1,9686:10753173,7391654:0,414482,115847 +r1,9718:11111439,7391654:358266,530329,115847 +k1,9686:10753173,7391654:-358266 +) +(1,9686:10753173,7391654:358266,414482,115847 +k1,9686:10753173,7391654:3277 +h1,9686:11108162,7391654:0,411205,112570 +) +k1,9686:11365484,7391654:254045 +k1,9686:12810974,7391654:254045 +(1,9686:12810974,7391654:0,452978,115847 +r1,9718:13169240,7391654:358266,568825,115847 +k1,9686:12810974,7391654:-358266 +) +(1,9686:12810974,7391654:358266,452978,115847 +k1,9686:12810974,7391654:3277 +h1,9686:13165963,7391654:0,411205,112570 +) +k1,9686:13423285,7391654:254045 +k1,9686:14944796,7391654:254045 +k1,9686:15554702,7391654:254046 +k1,9686:17651619,7391654:254045 +k1,9686:19883541,7391654:254045 +(1,9686:19883541,7391654:0,452978,115847 +r1,9718:20241807,7391654:358266,568825,115847 +k1,9686:19883541,7391654:-358266 +) +(1,9686:19883541,7391654:358266,452978,115847 +k1,9686:19883541,7391654:3277 +h1,9686:20238530,7391654:0,411205,112570 +) +k1,9686:20669522,7391654:254045 +k1,9686:22778236,7391654:254045 +k1,9686:23841651,7391654:254045 +k1,9686:26686334,7391654:254045 +k1,9686:27959464,7391654:254045 +k1,9686:32583029,7391654:0 +) +(1,9687:6764466,8256734:25818563,505283,126483 +k1,9686:8616692,8256734:171883 +k1,9686:9404613,8256734:171883 +k1,9686:11554374,8256734:171884 +(1,9686:11554374,8256734:0,414482,115847 +r1,9718:11912640,8256734:358266,530329,115847 +k1,9686:11554374,8256734:-358266 +) +(1,9686:11554374,8256734:358266,414482,115847 +k1,9686:11554374,8256734:3277 +h1,9686:11909363,8256734:0,411205,112570 +) +k1,9686:12084523,8256734:171883 +k1,9686:12787903,8256734:171883 +k1,9686:13978871,8256734:171883 +k1,9686:17125434,8256734:171884 +(1,9686:17125434,8256734:0,452978,115847 +r1,9718:18187123,8256734:1061689,568825,115847 +k1,9686:17125434,8256734:-1061689 +) +(1,9686:17125434,8256734:1061689,452978,115847 +k1,9686:17125434,8256734:3277 +h1,9686:18183846,8256734:0,411205,112570 +) +k1,9686:18359006,8256734:171883 +k1,9686:19213774,8256734:171883 +(1,9686:19213774,8256734:0,452978,115847 +r1,9718:20275463,8256734:1061689,568825,115847 +k1,9686:19213774,8256734:-1061689 +) +(1,9686:19213774,8256734:1061689,452978,115847 +k1,9686:19213774,8256734:3277 +h1,9686:20272186,8256734:0,411205,112570 +) +k1,9686:20621016,8256734:171883 +k1,9686:22404430,8256734:171884 +k1,9686:24158352,8256734:171883 +k1,9686:26308112,8256734:171883 +(1,9686:26308112,8256734:0,452978,115847 +r1,9718:26666378,8256734:358266,568825,115847 +k1,9686:26308112,8256734:-358266 +) +(1,9686:26308112,8256734:358266,452978,115847 +k1,9686:26308112,8256734:3277 +h1,9686:26663101,8256734:0,411205,112570 +) +k1,9686:26838261,8256734:171883 +k1,9686:27661573,8256734:171884 +k1,9686:29549189,8256734:171883 +k1,9686:30740157,8256734:171883 +k1,9686:32583029,8256734:0 +) +(1,9687:6764466,9121814:25818563,505283,7863 +k1,9687:32583030,9121814:23602136 +g1,9687:32583030,9121814 +) +v1,9689:6764466,9806669:0,393216,0 +(1,9696:6764466,12178795:25818563,2765342,196608 +g1,9696:6764466,12178795 +g1,9696:6764466,12178795 +g1,9696:6567858,12178795 +(1,9696:6567858,12178795:0,2765342,196608 +r1,9718:32779637,12178795:26211779,2961950,196608 +k1,9696:6567857,12178795:-26211780 +) +(1,9696:6567858,12178795:26211779,2765342,196608 +[1,9696:6764466,12178795:25818563,2568734,0 +(1,9691:6764466,10017984:25818563,407923,9908 +(1,9690:6764466,10017984:0,0,0 +g1,9690:6764466,10017984 +g1,9690:6764466,10017984 +g1,9690:6436786,10017984 +(1,9690:6436786,10017984:0,0,0 +) +g1,9690:6764466,10017984 +) +g1,9691:7428374,10017984 +g1,9691:8424236,10017984 +k1,9691:8424236,10017984:0 +h1,9691:10415960,10017984:0,0,0 +k1,9691:32583028,10017984:22167068 +g1,9691:32583028,10017984 +) +(1,9692:6764466,10702839:25818563,424439,9908 +h1,9692:6764466,10702839:0,0,0 +g1,9692:7428374,10702839 +g1,9692:8424236,10702839 +h1,9692:10084006,10702839:0,0,0 +k1,9692:32583030,10702839:22499024 +g1,9692:32583030,10702839 +) +(1,9693:6764466,11387694:25818563,424439,106246 +h1,9693:6764466,11387694:0,0,0 +g1,9693:7428374,11387694 +g1,9693:8424236,11387694 +g1,9693:12075730,11387694 +g1,9693:13403546,11387694 +g1,9693:16391132,11387694 +h1,9693:17386994,11387694:0,0,0 +k1,9693:32583029,11387694:15196035 +g1,9693:32583029,11387694 +) +(1,9694:6764466,12072549:25818563,424439,106246 +h1,9694:6764466,12072549:0,0,0 +g1,9694:7428374,12072549 +g1,9694:9088144,12072549 +k1,9694:9088144,12072549:1652 +h1,9694:10417612,12072549:0,0,0 +k1,9694:32583028,12072549:22165416 +g1,9694:32583028,12072549 +) +] +) +g1,9696:32583029,12178795 +g1,9696:6764466,12178795 +g1,9696:6764466,12178795 +g1,9696:32583029,12178795 +g1,9696:32583029,12178795 +) +h1,9696:6764466,12375403:0,0,0 +(1,9700:6764466,13240483:25818563,513147,134348 +h1,9699:6764466,13240483:983040,0,0 +k1,9699:8429829,13240483:204566 +k1,9699:9804868,13240483:204566 +k1,9699:10824702,13240483:204566 +k1,9699:12095539,13240483:204566 +k1,9699:15964878,13240483:204566 +k1,9699:17499825,13240483:204566 +k1,9699:18723476,13240483:204566 +k1,9699:20582825,13240483:204565 +k1,9699:23095569,13240483:204566 +k1,9699:24291695,13240483:204566 +k1,9699:26148424,13240483:204566 +k1,9699:27035875,13240483:204566 +k1,9699:28410914,13240483:204566 +k1,9699:30786032,13240483:204566 +k1,9699:32583029,13240483:0 +) +(1,9700:6764466,14105563:25818563,505283,134348 +k1,9699:8011803,14105563:228252 +k1,9699:10250701,14105563:228253 +k1,9699:11859141,14105563:228252 +k1,9699:14459142,14105563:228253 +k1,9699:15448922,14105563:228252 +k1,9699:18079725,14105563:228253 +k1,9699:19327062,14105563:228252 +k1,9699:21225171,14105563:228252 +k1,9699:23035463,14105563:228253 +k1,9699:25076441,14105563:228252 +k1,9699:26496139,14105563:228253 +k1,9699:28067224,14105563:228252 +k1,9699:29689428,14105563:228253 +k1,9699:30936765,14105563:228252 +k1,9700:32583029,14105563:0 +) +(1,9700:6764466,14970643:25818563,505283,126483 +k1,9699:9044581,14970643:137088 +k1,9699:10674579,14970643:137088 +k1,9699:11982139,14970643:137087 +k1,9699:15784000,14970643:137088 +k1,9699:17469704,14970643:137088 +k1,9699:19058414,14970643:137088 +k1,9699:22476234,14970643:137088 +k1,9699:24279903,14970643:137088 +k1,9699:25834534,14970643:137087 +k1,9699:27064107,14970643:137088 +(1,9699:27064107,14970643:0,452978,115847 +r1,9718:30236067,14970643:3171960,568825,115847 +k1,9699:27064107,14970643:-3171960 +) +(1,9699:27064107,14970643:3171960,452978,115847 +k1,9699:27064107,14970643:3277 +h1,9699:30232790,14970643:0,411205,112570 +) +k1,9699:30373155,14970643:137088 +k1,9700:32583029,14970643:0 +) +(1,9700:6764466,15835723:25818563,505283,115847 +(1,9699:6764466,15835723:0,459977,115847 +r1,9718:10991562,15835723:4227096,575824,115847 +k1,9699:6764466,15835723:-4227096 +) +(1,9699:6764466,15835723:4227096,459977,115847 +k1,9699:6764466,15835723:3277 +h1,9699:10988285,15835723:0,411205,112570 +) +g1,9699:11190791,15835723 +g1,9699:12041448,15835723 +g1,9699:14271638,15835723 +g1,9699:15489952,15835723 +k1,9700:32583029,15835723:12093335 +g1,9700:32583029,15835723 +) +] +g1,9700:32583029,15951570 +) +h1,9700:6630773,15951570:0,0,0 +v1,9703:6630773,16816650:0,393216,0 +(1,9704:6630773,18989456:25952256,2566022,0 +g1,9704:6630773,18989456 +g1,9704:6237557,18989456 +r1,9718:6368629,18989456:131072,2566022,0 +g1,9704:6567858,18989456 +g1,9704:6764466,18989456 +[1,9704:6764466,18989456:25818563,2566022,0 +(1,9704:6764466,17124948:25818563,701514,196608 +(1,9703:6764466,17124948:0,701514,196608 +r1,9718:8863446,17124948:2098980,898122,196608 +k1,9703:6764466,17124948:-2098980 +) +(1,9703:6764466,17124948:2098980,701514,196608 +) +k1,9703:9323451,17124948:460005 +k1,9703:11049669,17124948:327680 +k1,9703:15052550,17124948:460005 +k1,9703:17080177,17124948:460006 +k1,9703:18559267,17124948:460005 +k1,9703:22669627,17124948:460005 +k1,9703:25158627,17124948:460005 +k1,9703:26810078,17124948:460006 +k1,9703:28289168,17124948:460005 +k1,9703:31923737,17124948:460005 +k1,9704:32583029,17124948:0 +) +(1,9704:6764466,17990028:25818563,505283,134348 +(1,9703:6764466,17990028:0,459977,115847 +r1,9718:9584715,17990028:2820249,575824,115847 +k1,9703:6764466,17990028:-2820249 +) +(1,9703:6764466,17990028:2820249,459977,115847 +k1,9703:6764466,17990028:3277 +h1,9703:9581438,17990028:0,411205,112570 +) +k1,9703:9798812,17990028:214097 +k1,9703:11406860,17990028:214097 +(1,9703:11406860,17990028:0,414482,115847 +r1,9718:12116838,17990028:709978,530329,115847 +k1,9703:11406860,17990028:-709978 +) +(1,9703:11406860,17990028:709978,414482,115847 +k1,9703:11406860,17990028:3277 +h1,9703:12113561,17990028:0,411205,112570 +) +k1,9703:12504604,17990028:214096 +(1,9703:12504604,17990028:0,414482,115847 +r1,9718:13918005,17990028:1413401,530329,115847 +k1,9703:12504604,17990028:-1413401 +) +(1,9703:12504604,17990028:1413401,414482,115847 +k1,9703:12504604,17990028:3277 +h1,9703:13914728,17990028:0,411205,112570 +) +k1,9703:14132102,17990028:214097 +k1,9703:15537644,17990028:214097 +(1,9703:15537644,17990028:0,452978,122846 +r1,9718:18709604,17990028:3171960,575824,122846 +k1,9703:15537644,17990028:-3171960 +) +(1,9703:15537644,17990028:3171960,452978,122846 +k1,9703:15537644,17990028:3277 +h1,9703:18706327,17990028:0,411205,112570 +) +k1,9703:18923701,17990028:214097 +k1,9703:21343084,17990028:214096 +k1,9703:22243343,17990028:214097 +k1,9703:25860069,17990028:214097 +k1,9703:26725594,17990028:214097 +(1,9703:26725594,17990028:0,414482,115847 +r1,9718:28138995,17990028:1413401,530329,115847 +k1,9703:26725594,17990028:-1413401 +) +(1,9703:26725594,17990028:1413401,414482,115847 +k1,9703:26725594,17990028:3277 +h1,9703:28135718,17990028:0,411205,112570 +) +k1,9703:28526761,17990028:214096 +k1,9703:30158402,17990028:214097 +k1,9703:31563944,17990028:214097 +k1,9703:32583029,17990028:0 +) +(1,9704:6764466,18855108:25818563,513147,134348 +g1,9703:10138259,18855108 +g1,9703:12035526,18855108 +g1,9703:13610356,18855108 +g1,9703:15501725,18855108 +g1,9703:18654662,18855108 +g1,9703:19513183,18855108 +g1,9703:20068272,18855108 +g1,9703:22337128,18855108 +g1,9703:24514234,18855108 +g1,9703:25705023,18855108 +g1,9703:26970523,18855108 +g1,9703:29953721,18855108 +(1,9703:30160815,18855108:0,414482,115847 +r1,9718:30870793,18855108:709978,530329,115847 +k1,9703:30160815,18855108:-709978 +) +(1,9703:30160815,18855108:709978,414482,115847 +k1,9703:30160815,18855108:3277 +h1,9703:30867516,18855108:0,411205,112570 +) +k1,9704:32583029,18855108:1331472 +g1,9704:32583029,18855108 +) +] +g1,9704:32583029,18989456 +) +h1,9704:6630773,18989456:0,0,0 +(1,9706:6630773,21820616:25952256,32768,229376 +(1,9706:6630773,21820616:0,32768,229376 +(1,9706:6630773,21820616:5505024,32768,229376 +r1,9718:12135797,21820616:5505024,262144,229376 +) +k1,9706:6630773,21820616:-5505024 +) +(1,9706:6630773,21820616:25952256,32768,0 +r1,9718:32583029,21820616:25952256,32768,0 +) +) +(1,9706:6630773,23452468:25952256,606339,14155 +(1,9706:6630773,23452468:1974731,568590,14155 +g1,9706:6630773,23452468 +g1,9706:8605504,23452468 +) +k1,9706:32583029,23452468:20593508 +g1,9706:32583029,23452468 +) +(1,9709:6630773,24710764:25952256,513147,134348 +k1,9708:7719841,24710764:135519 +k1,9708:9135278,24710764:135519 +k1,9708:10289882,24710764:135519 +k1,9708:12163416,24710764:135519 +k1,9708:14970838,24710764:135519 +k1,9708:15757785,24710764:135519 +k1,9708:16912389,24710764:135519 +k1,9708:19493056,24710764:135519 +k1,9708:20287867,24710764:135519 +k1,9708:23447873,24710764:135519 +k1,9708:26658997,24710764:135519 +k1,9708:27453808,24710764:135519 +k1,9708:27945187,24710764:135519 +k1,9708:30822732,24710764:135519 +k1,9709:32583029,24710764:0 +) +(1,9709:6630773,25575844:25952256,505283,134348 +k1,9708:8503970,25575844:234142 +k1,9708:11069884,25575844:234143 +k1,9708:11986911,25575844:234142 +k1,9708:17739840,25575844:234142 +k1,9708:21060728,25575844:234142 +k1,9708:22051156,25575844:234143 +k1,9708:25129560,25575844:234142 +k1,9708:26317251,25575844:234142 +k1,9708:27643878,25575844:234142 +k1,9708:28897106,25575844:234143 +k1,9708:30784721,25575844:234142 +k1,9708:32583029,25575844:0 +) +(1,9709:6630773,26440924:25952256,513147,126483 +k1,9708:9681473,26440924:206438 +k1,9708:10539340,26440924:206439 +k1,9708:12483793,26440924:206438 +k1,9708:14141854,26440924:206439 +k1,9708:15505002,26440924:206438 +k1,9708:16370733,26440924:206439 +k1,9708:18273898,26440924:206438 +k1,9708:21939983,26440924:206439 +k1,9708:22805713,26440924:206438 +k1,9708:24031237,26440924:206439 +k1,9708:27313280,26440924:206438 +k1,9708:28179011,26440924:206439 +k1,9708:28741309,26440924:206438 +k1,9709:32583029,26440924:0 +) +(1,9709:6630773,27306004:25952256,505283,134348 +g1,9708:8072565,27306004 +g1,9708:9290879,27306004 +g1,9708:11731439,27306004 +k1,9709:32583028,27306004:17960796 +g1,9709:32583028,27306004 +) +(1,9711:6630773,28171084:25952256,513147,134348 +h1,9710:6630773,28171084:983040,0,0 +k1,9710:9048723,28171084:238223 +k1,9710:11565634,28171084:238224 +k1,9710:12463149,28171084:238223 +k1,9710:15777633,28171084:238224 +k1,9710:17512043,28171084:238223 +k1,9710:19488282,28171084:238224 +k1,9710:22559626,28171084:238223 +k1,9710:25469096,28171084:238223 +k1,9710:27636700,28171084:238224 +k1,9710:29772846,28171084:238223 +k1,9710:30366930,28171084:238224 +k1,9710:32020075,28171084:238223 +k1,9710:32583029,28171084:0 +) +(1,9711:6630773,29036164:25952256,513147,126483 +k1,9710:8857031,29036164:194642 +k1,9710:10880783,29036164:194642 +k1,9710:12620763,29036164:194641 +k1,9710:14560629,29036164:194642 +k1,9710:17127019,29036164:194642 +k1,9710:17677521,29036164:194642 +k1,9710:20904513,29036164:194641 +k1,9710:22383661,29036164:194642 +k1,9710:26152637,29036164:194642 +k1,9710:28045317,29036164:194642 +k1,9710:29259043,29036164:194641 +k1,9710:30803727,29036164:194642 +k1,9710:31657661,29036164:194642 +k1,9711:32583029,29036164:0 +) +(1,9711:6630773,29901244:25952256,513147,134348 +k1,9710:9232249,29901244:238248 +k1,9710:10602960,29901244:238249 +k1,9710:12011681,29901244:238248 +k1,9710:13269015,29901244:238249 +k1,9710:14922185,29901244:238248 +k1,9710:16351879,29901244:238249 +k1,9710:19368198,29901244:238248 +k1,9710:20219209,29901244:238249 +k1,9710:21476542,29901244:238248 +k1,9710:23098911,29901244:238249 +k1,9710:26523519,29901244:238248 +k1,9710:29737103,29901244:238249 +k1,9710:30994436,29901244:238248 +k1,9710:32583029,29901244:0 +) +(1,9711:6630773,30766324:25952256,513147,134348 +k1,9710:7450003,30766324:191395 +k1,9710:8056233,30766324:191387 +k1,9710:9902412,30766324:191395 +k1,9710:11810194,30766324:191394 +k1,9710:12660881,30766324:191395 +k1,9710:15569399,30766324:191395 +k1,9710:17506018,30766324:191395 +k1,9710:18688972,30766324:191394 +k1,9710:21838007,30766324:191395 +k1,9710:23773315,30766324:191395 +k1,9710:25700103,30766324:191395 +(1,9710:25700103,30766324:0,459977,115847 +r1,9718:26761792,30766324:1061689,575824,115847 +k1,9710:25700103,30766324:-1061689 +) +(1,9710:25700103,30766324:1061689,459977,115847 +k1,9710:25700103,30766324:3277 +h1,9710:26758515,30766324:0,411205,112570 +) +k1,9710:27126856,30766324:191394 +(1,9710:27126856,30766324:0,452978,115847 +r1,9718:28891969,30766324:1765113,568825,115847 +k1,9710:27126856,30766324:-1765113 +) +(1,9710:27126856,30766324:1765113,452978,115847 +k1,9710:27126856,30766324:3277 +h1,9710:28888692,30766324:0,411205,112570 +) +k1,9710:29083364,30766324:191395 +k1,9710:30466204,30766324:191395 +(1,9710:30466204,30766324:0,414482,115847 +r1,9718:32583029,30766324:2116825,530329,115847 +k1,9710:30466204,30766324:-2116825 +) +(1,9710:30466204,30766324:2116825,414482,115847 +k1,9710:30466204,30766324:3277 +h1,9710:32579752,30766324:0,411205,112570 +) +k1,9710:32583029,30766324:0 +) +(1,9711:6630773,31631404:25952256,513147,126483 +k1,9710:10319290,31631404:160714 +k1,9710:12037796,31631404:160715 +k1,9710:13941768,31631404:160714 +k1,9710:14718520,31631404:160714 +k1,9710:16209616,31631404:160715 +k1,9710:18153565,31631404:160714 +k1,9710:21288303,31631404:160714 +k1,9710:22829205,31631404:160714 +k1,9710:25419995,31631404:160715 +k1,9710:26974660,31631404:160714 +k1,9710:29459936,31631404:160714 +k1,9710:30272079,31631404:160715 +k1,9710:31451878,31631404:160714 +k1,9711:32583029,31631404:0 +) +(1,9711:6630773,32496484:25952256,505283,126483 +k1,9710:7891484,32496484:168226 +k1,9710:9439897,32496484:168225 +k1,9710:11662021,32496484:168226 +k1,9710:13391315,32496484:168226 +k1,9710:14750985,32496484:168225 +k1,9710:16249592,32496484:168226 +k1,9710:17436903,32496484:168226 +k1,9710:20637480,32496484:168226 +k1,9710:22090211,32496484:168225 +k1,9710:25677450,32496484:168226 +k1,9710:26864761,32496484:168226 +k1,9710:29750109,32496484:168225 +k1,9710:30449832,32496484:168226 +k1,9710:32583029,32496484:0 +) +(1,9711:6630773,33361564:25952256,513147,134348 +k1,9710:8642981,33361564:228973 +k1,9710:9891038,33361564:228972 +k1,9710:11773484,33361564:228973 +k1,9710:15113450,33361564:228972 +k1,9710:16446705,33361564:228973 +k1,9710:17423444,33361564:228973 +k1,9710:21853929,33361564:228972 +k1,9710:23476853,33361564:228973 +k1,9710:25356023,33361564:228973 +k1,9710:27027442,33361564:228972 +k1,9710:28413125,33361564:228973 +k1,9710:29301389,33361564:228972 +k1,9710:31227089,33361564:228973 +k1,9711:32583029,33361564:0 +) +(1,9711:6630773,34226644:25952256,513147,134348 +k1,9710:9180022,34226644:164394 +k1,9710:11079810,34226644:164395 +k1,9710:12263289,34226644:164394 +k1,9710:13923216,34226644:164395 +k1,9710:16388579,34226644:164394 +k1,9710:17212266,34226644:164395 +k1,9710:19015715,34226644:164394 +k1,9710:21467317,34226644:164395 +k1,9710:23804885,34226644:164394 +k1,9710:24585318,34226644:164395 +k1,9710:25768797,34226644:164394 +k1,9710:28102434,34226644:164395 +k1,9710:28918256,34226644:164394 +k1,9711:32583029,34226644:0 +) +(1,9711:6630773,35091724:25952256,513147,126483 +k1,9710:7242268,35091724:196652 +k1,9710:9773971,35091724:196655 +k1,9710:10598461,35091724:196655 +k1,9710:11383629,35091724:196655 +k1,9710:13531946,35091724:196655 +k1,9710:17207251,35091724:196654 +k1,9710:19735022,35091724:196655 +k1,9710:21676901,35091724:196655 +k1,9710:22559718,35091724:196655 +k1,9710:25846396,35091724:196655 +k1,9710:26659089,35091724:196655 +k1,9710:28058984,35091724:196654 +k1,9710:30534326,35091724:196655 +k1,9710:31835263,35091724:196655 +k1,9710:32583029,35091724:0 +) +(1,9711:6630773,35956804:25952256,513147,134348 +k1,9710:9503489,35956804:153627 +k1,9710:14601807,35956804:153627 +k1,9710:15516962,35956804:153627 +k1,9710:17100586,35956804:153628 +k1,9710:17905641,35956804:153627 +k1,9710:19078353,35956804:153627 +k1,9710:21024390,35956804:153627 +k1,9710:24203814,35956804:153627 +k1,9710:27447464,35956804:153627 +k1,9710:28217130,35956804:153628 +k1,9710:30649444,35956804:153627 +h1,9710:31620032,35956804:0,0,0 +k1,9710:31773659,35956804:153627 +k1,9710:32583029,35956804:0 +) +(1,9711:6630773,36821884:25952256,513147,134348 +k1,9710:8307337,36821884:178411 +h1,9710:9502714,36821884:0,0,0 +k1,9710:9854794,36821884:178410 +k1,9710:10661040,36821884:178411 +k1,9710:12541421,36821884:178411 +k1,9710:14417214,36821884:178411 +k1,9710:15010447,36821884:178390 +k1,9710:18525951,36821884:178411 +k1,9710:21730158,36821884:178410 +k1,9710:23100014,36821884:178411 +k1,9710:26355340,36821884:178411 +k1,9710:27638032,36821884:178410 +k1,9710:28564209,36821884:178411 +k1,9710:30255846,36821884:178411 +k1,9710:32583029,36821884:0 +) +(1,9711:6630773,37686964:25952256,513147,126483 +k1,9710:7524159,37686964:234094 +k1,9710:10089370,37686964:234095 +k1,9710:13040587,37686964:234094 +k1,9710:15019906,37686964:234095 +k1,9710:19653432,37686964:234094 +k1,9710:20546818,37686964:234094 +k1,9710:24057058,37686964:234095 +k1,9710:27695747,37686964:234094 +k1,9710:28461339,37686964:234095 +k1,9710:31773659,37686964:234094 +k1,9710:32583029,37686964:0 +) +(1,9711:6630773,38552044:25952256,505283,134348 +g1,9710:8328155,38552044 +h1,9710:9125073,38552044:0,0,0 +k1,9711:32583029,38552044:23077192 +g1,9711:32583029,38552044 +) +v1,9713:6630773,39417124:0,393216,0 +(1,9714:6630773,44283549:25952256,5259641,0 +g1,9714:6630773,44283549 +g1,9714:6237557,44283549 +r1,9718:6368629,44283549:131072,5259641,0 +g1,9714:6567858,44283549 +g1,9714:6764466,44283549 +[1,9714:6764466,44283549:25818563,5259641,0 +(1,9714:6764466,39831666:25818563,807758,219026 +(1,9713:6764466,39831666:0,807758,219026 +r1,9718:7908217,39831666:1143751,1026784,219026 +k1,9713:6764466,39831666:-1143751 +) +(1,9713:6764466,39831666:1143751,807758,219026 +) +k1,9713:8090303,39831666:182086 +k1,9713:8417983,39831666:327680 +k1,9713:9553618,39831666:182086 +k1,9713:10828188,39831666:182085 +k1,9713:13341390,39831666:182086 +k1,9713:14206361,39831666:182086 +k1,9713:16828352,39831666:182086 +k1,9713:19727560,39831666:182085 +k1,9713:21607684,39831666:182086 +k1,9713:22658122,39831666:182086 +k1,9713:24370474,39831666:182086 +k1,9713:25203988,39831666:182086 +k1,9713:27149647,39831666:182085 +k1,9713:28350818,39831666:182086 +k1,9713:30186377,39831666:182086 +k1,9714:32583029,39831666:0 +) +(1,9714:6764466,40696746:25818563,505283,126483 +k1,9713:9166032,40696746:191037 +k1,9713:12881596,40696746:191038 +k1,9713:14026182,40696746:191037 +k1,9713:15321501,40696746:191037 +k1,9713:16578810,40696746:191038 +k1,9713:18145448,40696746:191037 +k1,9713:19428970,40696746:191037 +k1,9713:22337131,40696746:191038 +k1,9713:23179596,40696746:191037 +k1,9713:25134207,40696746:191037 +k1,9713:26344330,40696746:191038 +k1,9713:28188840,40696746:191037 +k1,9713:32583029,40696746:0 +) +(1,9714:6764466,41561826:25818563,513147,126483 +k1,9713:7682726,41561826:266832 +k1,9713:8968643,41561826:266832 +k1,9713:11997819,41561826:266833 +k1,9713:15218359,41561826:266832 +k1,9713:16144483,41561826:266832 +k1,9713:16767175,41561826:266832 +k1,9713:19654137,41561826:266833 +k1,9713:22072516,41561826:266832 +k1,9713:23411517,41561826:266832 +k1,9713:24964165,41561826:266832 +k1,9713:25882426,41561826:266833 +k1,9713:27912832,41561826:266832 +k1,9713:30942007,41561826:266832 +k1,9714:32583029,41561826:0 +) +(1,9714:6764466,42426906:25818563,513147,134348 +k1,9713:8567405,42426906:205171 +k1,9713:9424005,42426906:205172 +k1,9713:9985036,42426906:205171 +k1,9713:12063226,42426906:205171 +k1,9713:14246274,42426906:205171 +k1,9713:15110738,42426906:205172 +k1,9713:17936038,42426906:205171 +k1,9713:20325524,42426906:205171 +k1,9713:21158530,42426906:205171 +k1,9713:22748478,42426906:205172 +k1,9713:25670772,42426906:205171 +k1,9713:26980225,42426906:205171 +k1,9713:27933162,42426906:205171 +k1,9713:29651560,42426906:205172 +k1,9713:30508159,42426906:205171 +k1,9713:32583029,42426906:0 +) +(1,9714:6764466,43291986:25818563,505283,134348 +k1,9713:9505485,43291986:182493 +k1,9713:10819784,43291986:182492 +k1,9713:12980154,43291986:182493 +k1,9713:13845531,43291986:182492 +k1,9713:15195220,43291986:182493 +k1,9713:18571937,43291986:182492 +k1,9713:19911140,43291986:182493 +k1,9713:22717038,43291986:182492 +k1,9713:23512293,43291986:182493 +k1,9713:24050645,43291986:182492 +k1,9713:25832216,43291986:182493 +k1,9713:27750101,43291986:182492 +k1,9713:29629321,43291986:182493 +k1,9713:32583029,43291986:0 +) +(1,9714:6764466,44157066:25818563,505283,126483 +g1,9713:10808037,44157066 +g1,9713:11623304,44157066 +g1,9713:12954340,44157066 +g1,9713:14693665,44157066 +g1,9713:15307737,44157066 +g1,9713:17631643,44157066 +g1,9713:18513757,44157066 +g1,9713:22126756,44157066 +k1,9714:32583029,44157066:7096242 +g1,9714:32583029,44157066 +) +] +g1,9714:32583029,44283549 +) +h1,9714:6630773,44283549:0,0,0 +] +(1,9718:32583029,45706769:0,0,0 +g1,9718:32583029,45706769 +) +) +] +(1,9718:6630773,47279633:25952256,0,0 +h1,9718:6630773,47279633:25952256,0,0 +) +] +(1,9718:4262630,4025873:0,0,0 +[1,9718:-473656,4025873:0,0,0 +(1,9718:-473656,-710413:0,0,0 +(1,9718:-473656,-710413:0,0,0 +g1,9718:-473656,-710413 +) +g1,9718:-473656,-710413 +) +] +) +] +!27506 +}155 +Input:1411:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1412:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1413:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1414:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1415:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1416:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1417:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1418:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1419:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1420:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1421:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1422:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1423:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1424:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1328 +{156 +[1,9787:4262630,47279633:28320399,43253760,0 +(1,9787:4262630,4025873:0,0,0 +[1,9787:-473656,4025873:0,0,0 +(1,9787:-473656,-710413:0,0,0 +(1,9787:-473656,-644877:0,0,0 +k1,9787:-473656,-644877:-65536 ) -[1,10563:17053563,21646927:909902,894371,5505 -(1,10563:17053563,21098914:286917,346358,96797 +(1,9787:-473656,4736287:0,0,0 +k1,9787:-473656,4736287:5209943 ) -(1,10563:17053563,21646927:909902,346358,5505 +g1,9787:-473656,-710413 ) ] -g1,10563:18072701,21473584 -(1,10563:18545872,21571898:233243,346358,5505 ) -g1,10563:19077750,21473584 -g1,10563:19764358,21473584 -(1,10563:19764358,21492567:692060,528220,79954 +[1,9787:6630773,47279633:25952256,43253760,0 +[1,9787:6630773,4812305:25952256,786432,0 +(1,9787:6630773,4812305:25952256,481690,7863 +(1,9787:6630773,4812305:25952256,481690,7863 +g1,9787:3078558,4812305 +[1,9787:3078558,4812305:0,0,0 +(1,9787:3078558,2439708:0,1703936,0 +k1,9787:1358238,2439708:-1720320 +(1,8606:1358238,2439708:1720320,1703936,0 +(1,8606:1358238,2439708:1179648,16384,0 +r1,9787:2537886,2439708:1179648,16384,0 ) -[1,10563:20456418,21604588:909902,705365,5505 -(1,10563:20456418,21147867:393347,248644,5505 +g1,8606:3062174,2439708 +(1,8606:3062174,2439708:16384,1703936,0 +[1,8606:3062174,2439708:25952256,1703936,0 +(1,8606:3062174,1915420:25952256,1179648,0 +(1,8606:3062174,1915420:16384,1179648,0 +r1,9787:3078558,1915420:16384,1179648,0 ) -(1,10563:20456418,21604588:909902,346358,5505 +k1,8606:29014430,1915420:25935872 +g1,8606:29014430,1915420 ) ] -g1,10563:21475556,21473584 -(1,10563:21948727,21571898:233243,346358,5505 ) -$1,10563:22181970,21473584 -k1,10563:23576515,21473584:1394545 -g1,10563:23904195,21473584 -) -g1,10563:23904195,21473584 -(1,10564:23904195,21473584:8112038,721028,231411 -g1,10563:24231875,21473584 -g1,10563:24231876,21473584 -g1,10563:27224905,21473584 -$1,10563:27224905,21473584 -(1,10563:27740018,21571898:779158,298648,5505 -) -g1,10563:28701236,21473584 -g1,10563:29451493,21473584 -(1,10563:29966606,21571898:463995,331678,0 -) -$1,10563:30430601,21473584 -k1,10564:31688553,21473584:1257952 -g1,10564:32016233,21473584 -) -g1,10564:32016233,21473584 -) -(1,10565:7396798,22244950:24619435,539955,231411 -g1,10564:7396798,22244950 -(1,10564:7396798,22244950:5234169,539955,231411 -r1,10596:7396798,22244950:0,771366,231411 -g1,10564:7724478,22244950 -g1,10564:7724479,22244950 -(1,10564:7724479,22244950:0,452978,115847 -r1,10596:10544728,22244950:2820249,568825,115847 -k1,10564:7724479,22244950:-2820249 -) -(1,10564:7724479,22244950:2820249,452978,115847 -k1,10564:7724479,22244950:3277 -h1,10564:10541451,22244950:0,411205,112570 -) -k1,10564:12303287,22244950:1758559 -g1,10564:12630967,22244950 -) -g1,10564:12630967,22244950 -(1,10564:12630967,22244950:11273228,539955,231411 -g1,10564:12958647,22244950 -g1,10564:12958648,22244950 -g1,10564:16664708,22244950 -k1,10564:23576515,22244950:3714961 -g1,10564:23904195,22244950 -) -g1,10564:23904195,22244950 -(1,10565:23904195,22244950:8112038,539955,231411 -g1,10564:24231875,22244950 -g1,10564:24231876,22244950 -g1,10564:27224905,22244950 -$1,10564:27224905,22244950 -(1,10564:27740018,22343264:779158,298648,5505 -) -g1,10564:28701236,22244950 -g1,10564:29451493,22244950 -(1,10564:29966606,22343264:463995,331678,0 -) -$1,10564:30430601,22244950 -k1,10565:31688553,22244950:1257952 -g1,10565:32016233,22244950 -) -g1,10565:32016233,22244950 -) -(1,10566:7396798,23016316:24619435,539955,231411 -g1,10565:7396798,23016316 -(1,10565:7396798,23016316:5234169,539955,231411 -r1,10596:7396798,23016316:0,771366,231411 -g1,10565:7724478,23016316 -g1,10565:7724479,23016316 -(1,10565:7724479,23016316:0,452978,115847 -r1,10596:10544728,23016316:2820249,568825,115847 -k1,10565:7724479,23016316:-2820249 -) -(1,10565:7724479,23016316:2820249,452978,115847 -k1,10565:7724479,23016316:3277 -h1,10565:10541451,23016316:0,411205,112570 -) -k1,10565:12303287,23016316:1758559 -g1,10565:12630967,23016316 -) -g1,10565:12630967,23016316 -(1,10565:12630967,23016316:11273228,539955,231411 -g1,10565:12958647,23016316 -g1,10565:12958648,23016316 -g1,10565:16664708,23016316 -k1,10565:23576515,23016316:3819818 -g1,10565:23904195,23016316 -) -g1,10565:23904195,23016316 -(1,10566:23904195,23016316:8112038,539955,231411 -g1,10565:24231875,23016316 -g1,10565:24231876,23016316 -g1,10565:27224905,23016316 -$1,10565:27224905,23016316 -(1,10565:27740018,23114630:779158,298648,5505 -) -g1,10565:28701236,23016316 -g1,10565:29451493,23016316 -(1,10565:29966606,23114630:463995,331678,0 -) -$1,10565:30430601,23016316 -k1,10566:31688553,23016316:1257952 -g1,10566:32016233,23016316 -) -g1,10566:32016233,23016316 -) -(1,10567:7396798,23787682:24619435,539955,231411 -g1,10566:7396798,23787682 -(1,10566:7396798,23787682:5234169,539955,231411 -r1,10596:7396798,23787682:0,771366,231411 -g1,10566:7724478,23787682 -g1,10566:7724479,23787682 -(1,10566:7724479,23787682:0,452978,115847 -r1,10596:10544728,23787682:2820249,568825,115847 -k1,10566:7724479,23787682:-2820249 -) -(1,10566:7724479,23787682:2820249,452978,115847 -k1,10566:7724479,23787682:3277 -h1,10566:10541451,23787682:0,411205,112570 -) -k1,10566:12303287,23787682:1758559 -g1,10566:12630967,23787682 -) -g1,10566:12630967,23787682 -(1,10566:12630967,23787682:11273228,539955,231411 -g1,10566:12958647,23787682 -g1,10566:12958648,23787682 -g1,10566:15681013,23787682 -k1,10566:23576515,23787682:5535551 -g1,10566:23904195,23787682 -) -g1,10566:23904195,23787682 -(1,10567:23904195,23787682:8112038,539955,231411 -g1,10566:24231875,23787682 -g1,10566:24231876,23787682 -g1,10566:27224905,23787682 -$1,10566:27224905,23787682 -(1,10566:27740018,23885996:779158,298648,5505 -) -g1,10566:28701236,23787682 -g1,10566:29451493,23787682 -(1,10566:29966606,23885996:463995,331678,0 -) -$1,10566:30430601,23787682 -k1,10567:31688553,23787682:1257952 -g1,10567:32016233,23787682 -) -g1,10567:32016233,23787682 -) -(1,10568:7396798,24559048:24619435,539955,231411 -g1,10567:7396798,24559048 -(1,10567:7396798,24559048:5234169,539955,231411 -r1,10596:7396798,24559048:0,771366,231411 -g1,10567:7724478,24559048 -g1,10567:7724479,24559048 -(1,10567:7724479,24559048:0,459977,115847 -r1,10596:9841304,24559048:2116825,575824,115847 -k1,10567:7724479,24559048:-2116825 -) -(1,10567:7724479,24559048:2116825,459977,115847 -k1,10567:7724479,24559048:3277 -h1,10567:9838027,24559048:0,411205,112570 -) -k1,10567:12303287,24559048:2461983 -g1,10567:12630967,24559048 -) -g1,10567:12630967,24559048 -(1,10567:12630967,24559048:11273228,539955,231411 -g1,10567:12958647,24559048 -g1,10567:12958648,24559048 -$1,10567:12958648,24559048 -(1,10567:13431819,24657362:311689,339935,0 -) -g1,10567:13889156,24559048 -g1,10567:14603001,24559048 -(1,10567:15076172,24657362:311689,334430,0 -) -g1,10567:15686496,24559048 -g1,10567:16373104,24559048 -(1,10567:16846275,24657362:233243,346358,5505 -) -g1,10567:17225166,24559048 -g1,10567:17939011,24559048 -(1,10567:18412182,24657362:909902,346358,5505 -) -g1,10567:19620719,24559048 -g1,10567:20307327,24559048 -(1,10567:20780498,24657362:393347,248644,5505 -) -g1,10567:21319493,24559048 -g1,10567:22033338,24559048 -(1,10567:22506509,24657362:1070006,334430,5505 -) -$1,10567:23576515,24559048 -g1,10567:23576515,24559048 -g1,10567:23904195,24559048 -) -g1,10567:23904195,24559048 -(1,10568:23904195,24559048:8112038,539955,231411 -g1,10567:24231875,24559048 -g1,10567:24231876,24559048 -g1,10567:27224905,24559048 -$1,10567:27224905,24559048 -(1,10567:27740018,24657362:779158,298648,5505 -) -g1,10567:28701236,24559048 -g1,10567:29451493,24559048 -(1,10567:29966606,24657362:463995,331678,0 -) -g1,10567:30576249,24559048 -g1,10567:31290094,24559048 -$1,10567:31688553,24559048 -g1,10568:31688553,24559048 -g1,10568:32016233,24559048 -) -g1,10568:32016233,24559048 -) -(1,10569:7396798,25330414:24619435,539955,231411 -g1,10568:7396798,25330414 -(1,10568:7396798,25330414:5234169,539955,231411 -r1,10596:7396798,25330414:0,771366,231411 -g1,10568:7724478,25330414 -g1,10568:7724479,25330414 -(1,10568:7724479,25330414:0,459977,115847 -r1,10596:10896439,25330414:3171960,575824,115847 -k1,10568:7724479,25330414:-3171960 -) -(1,10568:7724479,25330414:3171960,459977,115847 -k1,10568:7724479,25330414:3277 -h1,10568:10893162,25330414:0,411205,112570 -) -k1,10568:12303287,25330414:1406848 -g1,10568:12630967,25330414 -) -g1,10568:12630967,25330414 -(1,10568:12630967,25330414:11273228,539955,231411 -g1,10568:12958647,25330414 -g1,10568:12958648,25330414 -g1,10568:15444428,25330414 -g1,10568:16302949,25330414 -k1,10568:23576515,25330414:6166008 -g1,10568:23904195,25330414 -) -g1,10568:23904195,25330414 -(1,10569:23904195,25330414:8112038,539955,231411 -g1,10568:24231875,25330414 -g1,10568:24231876,25330414 -g1,10568:27224905,25330414 -$1,10568:27224905,25330414 -(1,10568:27740018,25428728:779158,298648,5505 -) -g1,10568:28701236,25330414 -g1,10568:29451493,25330414 -(1,10568:29966606,25428728:463995,331678,0 -) -g1,10568:30576249,25330414 -g1,10568:31290094,25330414 -$1,10568:31688553,25330414 -g1,10569:31688553,25330414 -g1,10569:32016233,25330414 -) -g1,10569:32016233,25330414 -) -(1,10570:7396798,26101780:24619435,539955,231411 -g1,10569:7396798,26101780 -(1,10569:7396798,26101780:5234169,539955,231411 -r1,10596:7396798,26101780:0,771366,231411 -g1,10569:7724478,26101780 -g1,10569:7724479,26101780 -(1,10569:7724479,26101780:0,459977,115847 -r1,10596:11599863,26101780:3875384,575824,115847 -k1,10569:7724479,26101780:-3875384 -) -(1,10569:7724479,26101780:3875384,459977,115847 -k1,10569:7724479,26101780:3277 -h1,10569:11596586,26101780:0,411205,112570 -) -k1,10569:12303287,26101780:703424 -g1,10569:12630967,26101780 -) -g1,10569:12630967,26101780 -(1,10569:12630967,26101780:11273228,539955,231411 -g1,10569:12958647,26101780 -g1,10569:12958648,26101780 -$1,10569:12958648,26101780 -$1,10569:13634979,26101780 -k1,10569:23576515,26101780:9941536 -g1,10569:23904195,26101780 -) -g1,10569:23904195,26101780 -(1,10570:23904195,26101780:8112038,539955,231411 -g1,10569:24231875,26101780 -g1,10569:24231876,26101780 -g1,10569:27224905,26101780 -$1,10569:27224905,26101780 -(1,10569:27740018,26200094:779158,298648,5505 -) -g1,10569:28701236,26101780 -g1,10569:29451493,26101780 -(1,10569:29966606,26200094:463995,331678,0 -) -$1,10569:30430601,26101780 -k1,10570:31688553,26101780:1257952 -g1,10570:32016233,26101780 -) -g1,10570:32016233,26101780 -) -(1,10571:7396798,26873146:24619435,539955,231411 -g1,10570:7396798,26873146 -(1,10570:7396798,26873146:5234169,539955,231411 -r1,10596:7396798,26873146:0,771366,231411 -g1,10570:7724478,26873146 -g1,10570:7724479,26873146 -(1,10570:7724479,26873146:0,452978,115847 -r1,10596:9489592,26873146:1765113,568825,115847 -k1,10570:7724479,26873146:-1765113 -) -(1,10570:7724479,26873146:1765113,452978,115847 -k1,10570:7724479,26873146:3277 -h1,10570:9486315,26873146:0,411205,112570 -) -k1,10570:12303287,26873146:2813695 -g1,10570:12630967,26873146 -) -g1,10570:12630967,26873146 -(1,10570:12630967,26873146:11273228,539955,231411 -g1,10570:12958647,26873146 -g1,10570:12958648,26873146 -g1,10570:16502179,26873146 -k1,10570:23576515,26873146:4173057 -g1,10570:23904195,26873146 -) -g1,10570:23904195,26873146 -(1,10571:23904195,26873146:8112038,539955,231411 -g1,10570:24231875,26873146 -g1,10570:24231876,26873146 -$1,10570:24231876,26873146 -(1,10570:24746989,26971460:779158,298648,5505 -) -g1,10570:25708207,26873146 -g1,10570:26411278,26873146 -(1,10570:26926391,26971460:463995,331678,0 -) -$1,10570:27390386,26873146 -k1,10571:31688553,26873146:4298167 -g1,10571:32016233,26873146 -) -g1,10571:32016233,26873146 -) -(1,10572:7396798,27644512:24619435,539955,231411 -g1,10571:7396798,27644512 -(1,10571:7396798,27644512:5234169,539955,231411 -r1,10596:7396798,27644512:0,771366,231411 -g1,10571:7724478,27644512 -g1,10571:7724479,27644512 -(1,10571:7724479,27644512:0,452978,115847 -r1,10596:12303287,27644512:4578808,568825,115847 -k1,10571:7724479,27644512:-4578808 -) -(1,10571:7724479,27644512:4578808,452978,115847 -k1,10571:7724479,27644512:3277 -h1,10571:12300010,27644512:0,411205,112570 -) -g1,10571:12303287,27644512 -g1,10571:12630967,27644512 -) -g1,10571:12630967,27644512 -(1,10571:12630967,27644512:11273228,539955,231411 -g1,10571:12958647,27644512 -g1,10571:12958648,27644512 -g1,10571:16502179,27644512 -k1,10571:23576515,27644512:4167159 -g1,10571:23904195,27644512 -) -g1,10571:23904195,27644512 -(1,10572:23904195,27644512:8112038,539955,231411 -g1,10571:24231875,27644512 -g1,10571:24231876,27644512 -$1,10571:24231876,27644512 -(1,10571:24746989,27742826:779158,298648,5505 -) -g1,10571:25708207,27644512 -g1,10571:26411278,27644512 -(1,10571:26926391,27742826:463995,331678,0 -) -$1,10571:27390386,27644512 -k1,10572:31688553,27644512:4298167 -g1,10572:32016233,27644512 -) -g1,10572:32016233,27644512 -) -] -$1,10573:32016233,22641903 -) -g1,10573:32016233,22641903 -) -(1,10573:7197569,28237943:24818664,65536,0 -g1,10573:7197569,28237943 -(1,10573:7197569,28237943:24818664,65536,0 -r1,10596:32016233,28237943:24818664,65536,0 -) -g1,10573:32016233,28237943 -) -] -k1,10573:32583029,28237943:566796 -g1,10573:32583029,28237943 -) -v1,10576:6630773,29394003:0,393216,0 -(1,10577:6630773,31636000:25952256,2635213,0 -g1,10577:6630773,31636000 -g1,10577:6303093,31636000 -r1,10596:6401397,31636000:98304,2635213,0 -g1,10577:6600626,31636000 -g1,10577:6797234,31636000 -[1,10577:6797234,31636000:25785795,2635213,0 -(1,10577:6797234,29826541:25785795,825754,196608 -(1,10576:6797234,29826541:0,825754,196608 -r1,10596:7890375,29826541:1093141,1022362,196608 -k1,10576:6797234,29826541:-1093141 -) -(1,10576:6797234,29826541:1093141,825754,196608 -) -k1,10576:8179284,29826541:288909 -k1,10576:9905502,29826541:327680 -k1,10576:11835433,29826541:288909 -k1,10576:12480202,29826541:288909 -(1,10576:12480202,29826541:0,452978,115847 -r1,10596:14948739,29826541:2468537,568825,115847 -k1,10576:12480202,29826541:-2468537 -) -(1,10576:12480202,29826541:2468537,452978,115847 -k1,10576:12480202,29826541:3277 -h1,10576:14945462,29826541:0,411205,112570 -) -k1,10576:15237648,29826541:288909 -k1,10576:17504434,29826541:288909 -k1,10576:19286908,29826541:288908 -k1,10576:20261979,29826541:288909 -(1,10576:20261979,29826541:0,452978,115847 -r1,10596:27654484,29826541:7392505,568825,115847 -k1,10576:20261979,29826541:-7392505 -) -(1,10576:20261979,29826541:7392505,452978,115847 -g1,10576:20968680,29826541 -g1,10576:22023816,29826541 -g1,10576:23782375,29826541 -g1,10576:24837511,29826541 -g1,10576:25892647,29826541 -g1,10576:26947783,29826541 -h1,10576:27651207,29826541:0,411205,112570 -) -k1,10576:27943393,29826541:288909 -k1,10576:29423747,29826541:288909 -k1,10576:31149861,29826541:288909 -k1,10576:31896867,29826541:288909 -k1,10576:32583029,29826541:0 -) -(1,10577:6797234,30668029:25785795,513147,134348 -k1,10576:10037989,30668029:168427 -k1,10576:10857845,30668029:168428 -k1,10576:12045357,30668029:168427 -k1,10576:15239582,30668029:168428 -k1,10576:16024047,30668029:168427 -k1,10576:17211560,30668029:168428 -k1,10576:18945642,30668029:168427 -k1,10576:21143065,30668029:168428 -k1,10576:22209335,30668029:168427 -k1,10576:23396848,30668029:168428 -k1,10576:28188840,30668029:168427 -k1,10576:32583029,30668029:0 -) -(1,10577:6797234,31509517:25785795,513147,126483 -g1,10576:9929199,31509517 -g1,10576:11621338,31509517 -g1,10576:12991040,31509517 -g1,10576:14181829,31509517 -g1,10576:15761902,31509517 -g1,10576:16612559,31509517 -g1,10576:20476561,31509517 -g1,10576:22224406,31509517 -g1,10576:23875257,31509517 -g1,10576:26769982,31509517 -k1,10577:32583029,31509517:2500857 -g1,10577:32583029,31509517 -) -] -g1,10577:32583029,31636000 -) -h1,10577:6630773,31636000:0,0,0 -(1,10579:6630773,34443568:25952256,32768,229376 -(1,10579:6630773,34443568:0,32768,229376 -(1,10579:6630773,34443568:5505024,32768,229376 -r1,10596:12135797,34443568:5505024,262144,229376 -) -k1,10579:6630773,34443568:-5505024 -) -(1,10579:6630773,34443568:25952256,32768,0 -r1,10596:32583029,34443568:25952256,32768,0 -) -) -(1,10579:6630773,36047896:25952256,606339,161218 -(1,10579:6630773,36047896:2464678,582746,14155 -g1,10579:6630773,36047896 -g1,10579:9095451,36047896 -) -g1,10579:11933684,36047896 -g1,10579:14745179,36047896 -g1,10579:16454882,36047896 -g1,10579:20414567,36047896 -k1,10579:32583029,36047896:9434038 -g1,10579:32583029,36047896 -) -(1,10582:6630773,37282600:25952256,513147,134348 -k1,10581:7551008,37282600:292400 -k1,10581:8609524,37282600:292400 -k1,10581:12547692,37282600:292400 -k1,10581:15831810,37282600:292399 -k1,10581:18166967,37282600:292400 -k1,10581:19662608,37282600:292400 -k1,10581:22407365,37282600:292400 -k1,10581:23568117,37282600:292400 -k1,10581:25335732,37282600:292400 -k1,10581:27141357,37282600:292399 -k1,10581:29393283,37282600:292400 -k1,10581:31753999,37282600:292400 -k1,10582:32583029,37282600:0 -) -(1,10582:6630773,38124088:25952256,505283,134348 -k1,10581:9068166,38124088:295021 -k1,10581:10049349,38124088:295021 -k1,10581:12204283,38124088:295022 -k1,10581:15473983,38124088:295021 -k1,10581:17965115,38124088:295021 -k1,10581:18876174,38124088:295021 -k1,10581:20190280,38124088:295021 -k1,10581:21981488,38124088:295021 -k1,10581:26220467,38124088:295022 -k1,10581:27143323,38124088:295021 -k1,10581:29140314,38124088:295021 -k1,10581:31563944,38124088:295021 -k1,10581:32583029,38124088:0 -) -(1,10582:6630773,38965576:25952256,513147,126483 -k1,10581:8982292,38965576:283203 -k1,10581:10257055,38965576:283203 -k1,10581:13632247,38965576:283203 -k1,10581:14601612,38965576:283203 -k1,10581:16206676,38965576:283203 -k1,10581:17149171,38965576:283203 -k1,10581:18451459,38965576:283203 -k1,10581:20404518,38965576:283202 -k1,10581:22639383,38965576:283203 -k1,10581:24365033,38965576:283203 -k1,10581:25260998,38965576:283203 -k1,10581:26662245,38965576:283203 -k1,10581:28544526,38965576:283203 -k1,10581:29455564,38965576:283203 -k1,10581:31900144,38965576:283203 -k1,10581:32583029,38965576:0 -) -(1,10582:6630773,39807064:25952256,505283,134348 -k1,10581:10005128,39807064:290231 -k1,10581:11314444,39807064:290231 -k1,10581:13564200,39807064:290230 -k1,10581:15592446,39807064:290231 -k1,10581:16534105,39807064:290231 -k1,10581:17572102,39807064:290231 -k1,10581:20637127,39807064:290231 -k1,10581:22264291,39807064:290230 -k1,10581:24084788,39807064:290231 -k1,10581:25026447,39807064:290231 -k1,10581:26064444,39807064:290231 -k1,10581:28846353,39807064:290230 -k1,10581:29749346,39807064:290231 -k1,10581:31157621,39807064:290231 -k1,10581:32583029,39807064:0 -) -(1,10582:6630773,40648552:25952256,505283,134348 -k1,10581:8232473,40648552:236585 -k1,10581:12867835,40648552:236585 -k1,10581:13852186,40648552:236585 -k1,10581:16872740,40648552:236585 -k1,10581:18484926,40648552:236585 -k1,10581:19407673,40648552:236585 -k1,10581:20000117,40648552:236584 -k1,10581:23211381,40648552:236585 -k1,10581:25313776,40648552:236585 -k1,10581:27588531,40648552:236585 -k1,10581:28441154,40648552:236585 -k1,10581:29033599,40648552:236585 -k1,10581:31955194,40648552:236585 -k1,10581:32583029,40648552:0 -) -(1,10582:6630773,41490040:25952256,513147,126483 -k1,10581:8066431,41490040:232417 -k1,10581:9839599,41490040:232417 -k1,10581:12767512,41490040:232417 -(1,10581:12767512,41490040:0,452978,122846 -r1,10596:15587761,41490040:2820249,575824,122846 -k1,10581:12767512,41490040:-2820249 -) -(1,10581:12767512,41490040:2820249,452978,122846 -k1,10581:12767512,41490040:3277 -h1,10581:15584484,41490040:0,411205,112570 -) -k1,10581:15820178,41490040:232417 -k1,10581:17674611,41490040:232417 -k1,10581:18654794,41490040:232417 -k1,10581:20400437,41490040:232417 -k1,10581:22960037,41490040:232417 -k1,10581:23851746,41490040:232417 -k1,10581:25103248,41490040:232417 -k1,10581:28412580,41490040:232417 -(1,10581:28412580,41490040:0,414482,115847 -r1,10596:29122558,41490040:709978,530329,115847 -k1,10581:28412580,41490040:-709978 -) -(1,10581:28412580,41490040:709978,414482,115847 -k1,10581:28412580,41490040:3277 -h1,10581:29119281,41490040:0,411205,112570 -) -k1,10581:29354975,41490040:232417 -k1,10581:30270277,41490040:232417 -(1,10581:30270277,41490040:0,414482,115847 -r1,10596:30980255,41490040:709978,530329,115847 -k1,10581:30270277,41490040:-709978 -) -(1,10581:30270277,41490040:709978,414482,115847 -k1,10581:30270277,41490040:3277 -h1,10581:30976978,41490040:0,411205,112570 -) -k1,10581:31386342,41490040:232417 -k1,10581:32583029,41490040:0 -) -(1,10582:6630773,42331528:25952256,505283,7863 -g1,10581:10346664,42331528 -g1,10581:12414324,42331528 -g1,10581:16646639,42331528 -g1,10581:17634266,42331528 -k1,10582:32583029,42331528:13682607 -g1,10582:32583029,42331528 -) -(1,10584:6630773,43173016:25952256,473825,134348 -h1,10583:6630773,43173016:983040,0,0 -g1,10583:9248936,43173016 -g1,10583:11183558,43173016 -g1,10583:11738647,43173016 -(1,10583:11738647,43173016:0,452978,115847 -r1,10596:14910607,43173016:3171960,568825,115847 -k1,10583:11738647,43173016:-3171960 -) -(1,10583:11738647,43173016:3171960,452978,115847 -k1,10583:11738647,43173016:3277 -h1,10583:14907330,43173016:0,411205,112570 -) -g1,10583:15109836,43173016 -k1,10584:32583029,43173016:14541768 -g1,10584:32583029,43173016 -) -v1,10586:6630773,44153766:0,393216,0 -(1,10594:6630773,45510161:25952256,1749611,196608 -g1,10594:6630773,45510161 -g1,10594:6630773,45510161 -g1,10594:6434165,45510161 -(1,10594:6434165,45510161:0,1749611,196608 -r1,10596:32779637,45510161:26345472,1946219,196608 -k1,10594:6434165,45510161:-26345472 -) -(1,10594:6434165,45510161:26345472,1749611,196608 -[1,10594:6630773,45510161:25952256,1553003,0 -(1,10588:6630773,44361384:25952256,404226,107478 -(1,10587:6630773,44361384:0,0,0 -g1,10587:6630773,44361384 -g1,10587:6630773,44361384 -g1,10587:6303093,44361384 -(1,10587:6303093,44361384:0,0,0 -) -g1,10587:6630773,44361384 -) -k1,10588:6630773,44361384:0 -g1,10588:10424522,44361384 -h1,10588:12005251,44361384:0,0,0 -k1,10588:32583029,44361384:20577778 -g1,10588:32583029,44361384 -) -(1,10589:6630773,45027562:25952256,284164,4718 -h1,10589:6630773,45027562:0,0,0 -h1,10589:6946919,45027562:0,0,0 -k1,10589:32583029,45027562:25636110 -g1,10589:32583029,45027562 -) -(1,10593:6630773,45434140:25952256,404226,76021 -(1,10591:6630773,45434140:0,0,0 -g1,10591:6630773,45434140 -g1,10591:6630773,45434140 -g1,10591:6303093,45434140 -(1,10591:6303093,45434140:0,0,0 -) -g1,10591:6630773,45434140 -) -g1,10593:7579210,45434140 -g1,10593:8843793,45434140 -h1,10593:10108376,45434140:0,0,0 -k1,10593:32583028,45434140:22474652 -g1,10593:32583028,45434140 -) -] -) -g1,10594:32583029,45510161 -g1,10594:6630773,45510161 -g1,10594:6630773,45510161 -g1,10594:32583029,45510161 -g1,10594:32583029,45510161 ) -h1,10594:6630773,45706769:0,0,0 +) ] -(1,10596:32583029,45706769:0,0,0 -g1,10596:32583029,45706769 +[1,9787:3078558,4812305:0,0,0 +(1,9787:3078558,2439708:0,1703936,0 +g1,9787:29030814,2439708 +g1,9787:36135244,2439708 +(1,8606:36135244,2439708:1720320,1703936,0 +(1,8606:36135244,2439708:16384,1703936,0 +[1,8606:36135244,2439708:25952256,1703936,0 +(1,8606:36135244,1915420:25952256,1179648,0 +(1,8606:36135244,1915420:16384,1179648,0 +r1,9787:36151628,1915420:16384,1179648,0 ) +k1,8606:62087500,1915420:25935872 +g1,8606:62087500,1915420 ) ] -(1,10596:6630773,47279633:25952256,0,0 -h1,10596:6630773,47279633:25952256,0,0 ) -] -(1,10596:4262630,4025873:0,0,0 -[1,10596:-473656,4025873:0,0,0 -(1,10596:-473656,-710413:0,0,0 -(1,10596:-473656,-710413:0,0,0 -g1,10596:-473656,-710413 +g1,8606:36675916,2439708 +(1,8606:36675916,2439708:1179648,16384,0 +r1,9787:37855564,2439708:1179648,16384,0 ) -g1,10596:-473656,-710413 ) -] +k1,9787:3078556,2439708:-34777008 ) ] -!37679 -}177 -Input:1604:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1605:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1606:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1607:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1608:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1609:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1610:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1611:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1612:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1613:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!952 -{178 -[1,10677:4262630,47279633:28320399,43253760,0 -(1,10677:4262630,4025873:0,0,0 -[1,10677:-473656,4025873:0,0,0 -(1,10677:-473656,-710413:0,0,0 -(1,10677:-473656,-644877:0,0,0 -k1,10677:-473656,-644877:-65536 +[1,9787:3078558,4812305:0,0,0 +(1,9787:3078558,49800853:0,16384,2228224 +k1,9787:1358238,49800853:-1720320 +(1,8606:1358238,49800853:1720320,16384,2228224 +(1,8606:1358238,49800853:1179648,16384,0 +r1,9787:2537886,49800853:1179648,16384,0 ) -(1,10677:-473656,4736287:0,0,0 -k1,10677:-473656,4736287:5209943 +g1,8606:3062174,49800853 +(1,8606:3062174,52029077:16384,1703936,0 +[1,8606:3062174,52029077:25952256,1703936,0 +(1,8606:3062174,51504789:25952256,1179648,0 +(1,8606:3062174,51504789:16384,1179648,0 +r1,9787:3078558,51504789:16384,1179648,0 ) -g1,10677:-473656,-710413 +k1,8606:29014430,51504789:25935872 +g1,8606:29014430,51504789 ) ] ) -[1,10677:6630773,47279633:25952256,43253760,0 -[1,10677:6630773,4812305:25952256,786432,0 -(1,10677:6630773,4812305:25952256,505283,134348 -(1,10677:6630773,4812305:25952256,505283,134348 -g1,10677:3078558,4812305 -[1,10677:3078558,4812305:0,0,0 -(1,10677:3078558,2439708:0,1703936,0 -k1,10677:1358238,2439708:-1720320 -(1,8393:1358238,2439708:1720320,1703936,0 -(1,8393:1358238,2439708:1179648,16384,0 -r1,10677:2537886,2439708:1179648,16384,0 ) -g1,8393:3062174,2439708 -(1,8393:3062174,2439708:16384,1703936,0 -[1,8393:3062174,2439708:25952256,1703936,0 -(1,8393:3062174,1915420:25952256,1179648,0 -(1,8393:3062174,1915420:16384,1179648,0 -r1,10677:3078558,1915420:16384,1179648,0 -) -k1,8393:29014430,1915420:25935872 -g1,8393:29014430,1915420 ) ] +[1,9787:3078558,4812305:0,0,0 +(1,9787:3078558,49800853:0,16384,2228224 +g1,9787:29030814,49800853 +g1,9787:36135244,49800853 +(1,8606:36135244,49800853:1720320,16384,2228224 +(1,8606:36135244,52029077:16384,1703936,0 +[1,8606:36135244,52029077:25952256,1703936,0 +(1,8606:36135244,51504789:25952256,1179648,0 +(1,8606:36135244,51504789:16384,1179648,0 +r1,9787:36151628,51504789:16384,1179648,0 ) +k1,8606:62087500,51504789:25935872 +g1,8606:62087500,51504789 +) +] +) +g1,8606:36675916,49800853 +(1,8606:36675916,49800853:1179648,16384,0 +r1,9787:37855564,49800853:1179648,16384,0 +) +) +k1,9787:3078556,49800853:-34777008 +) +] +g1,9787:6630773,4812305 +g1,9787:6630773,4812305 +g1,9787:9524187,4812305 +k1,9787:31387651,4812305:21863464 +) +) +] +[1,9787:6630773,45706769:25952256,40108032,0 +(1,9787:6630773,45706769:25952256,40108032,0 +(1,9787:6630773,45706769:0,0,0 +g1,9787:6630773,45706769 +) +[1,9787:6630773,45706769:25952256,40108032,0 +(1,9716:6630773,6254097:25952256,555811,139132 +(1,9716:6630773,6254097:2450326,525533,12975 +g1,9716:6630773,6254097 +g1,9716:9081099,6254097 +) +(1,9716:9081099,6254097:0,505647,127104 +r1,9787:10248302,6254097:1167203,632751,127104 +k1,9716:9081099,6254097:-1167203 +) +(1,9716:9081099,6254097:1167203,505647,127104 +k1,9716:9081099,6254097:3277 +h1,9716:10245025,6254097:0,452326,123827 +) +g1,9716:10473222,6254097 +k1,9716:32583029,6254097:20138156 +g1,9716:32583029,6254097 +) +(1,9718:6630773,7512393:25952256,513147,126483 +k1,9717:8098046,7512393:270586 +k1,9717:9970332,7512393:270586 +k1,9717:13545899,7512393:270586 +k1,9717:15329711,7512393:270586 +k1,9717:16986383,7512393:270586 +k1,9717:17916261,7512393:270586 +k1,9717:19601768,7512393:270585 +k1,9717:20403851,7512393:270586 +k1,9717:21030297,7512393:270586 +(1,9717:21030297,7512393:0,459977,115847 +r1,9787:22091986,7512393:1061689,575824,115847 +k1,9717:21030297,7512393:-1061689 +) +(1,9717:21030297,7512393:1061689,459977,115847 +k1,9717:21030297,7512393:3277 +h1,9717:22088709,7512393:0,411205,112570 +) +k1,9717:22362572,7512393:270586 +k1,9717:24221751,7512393:270586 +k1,9717:26366667,7512393:270586 +k1,9717:28382477,7512393:270586 +k1,9717:30249520,7512393:270586 +k1,9717:31136144,7512393:270586 +k1,9717:31821501,7512393:270514 +k1,9717:32583029,7512393:0 +) +(1,9718:6630773,8377473:25952256,513147,134348 +k1,9717:9561912,8377473:166175 +k1,9717:12586766,8377473:166174 +k1,9717:13108801,8377473:166175 +k1,9717:14268502,8377473:166175 +k1,9717:15117561,8377473:166174 +k1,9717:17261613,8377473:166175 +k1,9717:18087080,8377473:166175 +k1,9717:20263899,8377473:166174 +k1,9717:21081502,8377473:166175 +k1,9717:22194017,8377473:166175 +k1,9717:24178816,8377473:166175 +k1,9717:26440176,8377473:166174 +k1,9717:26962211,8377473:166175 +k1,9717:26962211,8377473:0 +k1,9717:27128386,8377473:166175 +k1,9717:28709482,8377473:166174 +k1,9717:30572384,8377473:166175 +k1,9717:32583029,8377473:0 +) +(1,9718:6630773,9242553:25952256,513147,134348 +k1,9717:7903583,9242553:281250 +k1,9717:11142473,9242553:281250 +k1,9717:15441736,9242553:281251 +k1,9717:16879696,9242553:281250 +k1,9717:17773708,9242553:281250 +k1,9717:18410818,9242553:281250 +k1,9717:20117477,9242553:281251 +k1,9717:22957253,9242553:281250 +k1,9717:23594363,9242553:281250 +k1,9717:26386953,9242553:281250 +k1,9717:27952710,9242553:281251 +k1,9717:31259757,9242553:281250 +k1,9717:32227169,9242553:281250 +k1,9717:32583029,9242553:0 +) +(1,9718:6630773,10107633:25952256,513147,126483 +k1,9717:10788507,10107633:250478 +k1,9717:12235673,10107633:250479 +k1,9717:14926056,10107633:250478 +k1,9717:16367980,10107633:250479 +k1,9717:17566109,10107633:250478 +k1,9717:18835673,10107633:250479 +k1,9717:20269076,10107633:250478 +k1,9717:21178847,10107633:250479 +k1,9717:22448410,10107633:250478 +k1,9717:24676766,10107633:250479 +k1,9717:25610129,10107633:250478 +k1,9717:26854134,10107633:250479 +k1,9717:28787577,10107633:250478 +k1,9717:30700704,10107633:250479 +k1,9717:31563944,10107633:250478 +k1,9717:32583029,10107633:0 +) +(1,9718:6630773,10972713:25952256,513147,126483 +k1,9717:7968413,10972713:265471 +k1,9717:8893176,10972713:265471 +k1,9717:10177733,10972713:265472 +k1,9717:13467035,10972713:265471 +k1,9717:15775263,10972713:265471 +k1,9717:17059819,10972713:265471 +k1,9717:18740213,10972713:265472 +k1,9717:22192044,10972713:265471 +k1,9717:22989012,10972713:265471 +k1,9717:26489340,10972713:265471 +k1,9717:27951499,10972713:265472 +k1,9717:29567012,10972713:265471 +k1,9717:31482024,10972713:265471 +k1,9717:32583029,10972713:0 +) +(1,9718:6630773,11837793:25952256,513147,126483 +k1,9717:7884395,11837793:234537 +k1,9717:9988019,11837793:234537 +k1,9717:10881848,11837793:234537 +k1,9717:11472245,11837793:234537 +k1,9717:13048959,11837793:234537 +k1,9717:13969658,11837793:234537 +k1,9717:15223280,11837793:234537 +k1,9717:18533422,11837793:234537 +k1,9717:19872240,11837793:234536 +k1,9717:20854543,11837793:234537 +k1,9717:23705277,11837793:234537 +k1,9717:24591242,11837793:234537 +k1,9717:25596482,11837793:234537 +k1,9717:27864601,11837793:234537 +k1,9717:30713369,11837793:234537 +k1,9717:31563944,11837793:234537 +k1,9717:32583029,11837793:0 +) +(1,9718:6630773,12702873:25952256,513147,134348 +k1,9717:9716754,12702873:146036 +k1,9717:10522082,12702873:146036 +k1,9717:14358450,12702873:146036 +k1,9717:17176389,12702873:146036 +k1,9717:18341510,12702873:146036 +k1,9717:20141019,12702873:146036 +k1,9717:22565742,12702873:146036 +k1,9717:23371070,12702873:146036 +k1,9717:25013293,12702873:146036 +k1,9717:25810757,12702873:146036 +k1,9717:26704559,12702873:146036 +k1,9717:29911782,12702873:146036 +k1,9717:32583029,12702873:0 +) +(1,9718:6630773,13567953:25952256,505283,134348 +g1,9717:8759382,13567953 +g1,9717:10410233,13567953 +g1,9717:12034870,13567953 +g1,9717:13628050,13567953 +g1,9717:14183139,13567953 +g1,9717:15665563,13567953 +g1,9717:17545135,13567953 +g1,9717:20519158,13567953 +g1,9717:21369815,13567953 +g1,9717:22588129,13567953 +g1,9717:26520944,13567953 +k1,9718:32583029,13567953:3377075 +g1,9718:32583029,13567953 +) +(1,9736:6630773,26858449:25952256,12519559,0 +k1,9736:11984091,26858449:5353318 +(1,9719:11984091,26858449:0,0,0 +g1,9719:11984091,26858449 +g1,9719:11984091,26858449 +g1,9719:11656411,26858449 +(1,9719:11656411,26858449:0,0,0 +) +g1,9719:11984091,26858449 +) +(1,9734:11984091,26858449:15245620,12519559,0 +g1,9734:15002947,26858449 +(1,9734:15002947,15284336:0,0,0 +(1,9734:15002947,15284336:0,0,0 +g1,9721:15002947,15284336 +(1,9722:15002947,15284336:0,0,0 +(1,9722:15002947,15284336:0,0,0 +g1,9722:15002947,15284336 +g1,9722:15002947,15284336 +g1,9722:15002947,15284336 +g1,9722:15002947,15284336 +g1,9722:15002947,15284336 +(1,9722:15002947,15284336:0,0,0 +(1,9722:15002947,15284336:589824,56623,0 +(1,9722:15002947,15284336:589824,56623,0 +) +g1,9722:15592771,15284336 +) +) +g1,9722:15002947,15284336 +g1,9722:15002947,15284336 +) +) +g1,9722:15002947,15284336 +(1,9723:15002947,15284336:0,0,0 +(1,9723:15002947,15284336:0,0,0 +g1,9723:15002947,15284336 +g1,9723:15002947,15284336 +g1,9723:15002947,15284336 +g1,9723:15002947,15284336 +g1,9723:15002947,15284336 +(1,9723:15002947,15284336:0,0,0 +(1,9723:15002947,15284336:358613,319685,0 +(1,9723:15002947,15284336:358613,319685,0 +$1,9723:15002947,15284336 +$1,9723:15361560,15284336 +) +g1,9723:15361560,15284336 +) +) +g1,9723:15002947,15284336 +g1,9723:15002947,15284336 +) +) +g1,9723:15002947,15284336 +(1,9724:15002947,15284336:0,0,0 +(1,9724:15002947,15284336:0,0,0 +g1,9724:15002947,15284336 +g1,9724:15002947,15284336 +(1,9724:15002947,15284336:0,0,0 +(1,9724:15002947,15284336:3805042,414307,104590 +(1,9724:15002947,15284336:3805042,414307,104590 +(1,9724:15002947,15284336:0,414307,104590 +r1,9787:18807989,15284336:3805042,518897,104590 +k1,9724:15002947,15284336:-3805042 +) +(1,9724:15002947,15284336:3805042,414307,104590 +g1,9724:16272387,15284336 +h1,9724:18804712,15284336:0,370085,101313 +) +) +g1,9724:18807989,15284336 +) +) +g1,9724:15002947,15284336 +g1,9724:15002947,15284336 +) +) +(1,9725:15002947,15284336:0,0,0 +(1,9725:15002947,15284336:0,0,0 +g1,9725:15002947,15284336 +g1,9725:15002947,15284336 +g1,9725:15002947,15284336 +g1,9725:15002947,15284336 +g1,9725:15002947,15284336 +(1,9725:15002947,15284336:0,0,0 +(1,9725:15002947,15284336:4121582,373362,104590 +(1,9725:15002947,15284336:4121582,373362,104590 +(1,9725:15002947,15284336:0,373362,104590 +r1,9787:19124529,15284336:4121582,477952,104590 +k1,9725:15002947,15284336:-4121582 +) +(1,9725:15002947,15284336:4121582,373362,104590 +g1,9725:18488171,15284336 +h1,9725:19121252,15284336:0,370085,101313 +) +) +g1,9725:19124529,15284336 +) +) +g1,9725:15002947,15284336 +g1,9725:15002947,15284336 +) +) +(1,9726:15002947,15284336:0,0,0 +(1,9726:15002947,15284336:0,0,0 +g1,9726:15002947,15284336 +g1,9726:15002947,15284336 +g1,9726:15002947,15284336 +g1,9726:15002947,15284336 +g1,9726:15002947,15284336 +(1,9726:15002947,15284336:0,0,0 +(1,9726:15002947,15284336:4121582,373362,104590 +(1,9726:15002947,15284336:4121582,373362,104590 +(1,9726:15002947,15284336:0,373362,104590 +r1,9787:19124529,15284336:4121582,477952,104590 +k1,9726:15002947,15284336:-4121582 +) +(1,9726:15002947,15284336:4121582,373362,104590 +g1,9726:18488171,15284336 +h1,9726:19121252,15284336:0,370085,101313 ) ) -] -[1,10677:3078558,4812305:0,0,0 -(1,10677:3078558,2439708:0,1703936,0 -g1,10677:29030814,2439708 -g1,10677:36135244,2439708 -(1,8393:36135244,2439708:1720320,1703936,0 -(1,8393:36135244,2439708:16384,1703936,0 -[1,8393:36135244,2439708:25952256,1703936,0 -(1,8393:36135244,1915420:25952256,1179648,0 -(1,8393:36135244,1915420:16384,1179648,0 -r1,10677:36151628,1915420:16384,1179648,0 +g1,9726:19124529,15284336 ) -k1,8393:62087500,1915420:25935872 -g1,8393:62087500,1915420 ) -] +g1,9726:15002947,15284336 +g1,9726:15002947,15284336 +) +) +g1,9726:15002947,15284336 +g1,9727:15002947,15284336 +(1,9727:15002947,15284336:0,0,0 +(1,9727:15002947,15284336:0,0,0 +g1,9727:15002947,15284336 +g1,9727:15002947,15284336 +g1,9727:15002947,15284336 +g1,9727:15002947,15284336 +g1,9727:15002947,15284336 +(1,9727:15002947,15284336:0,0,0 +(1,9727:15002947,15284336:589824,56623,0 +(1,9727:15002947,15284336:589824,56623,0 +) +g1,9727:15592771,15284336 +) +) +g1,9727:15002947,15284336 +g1,9727:15002947,15284336 +) +) +g1,9727:15002947,15284336 +g1,9728:15002947,15284336 +g1,9728:15002947,15284336 +g1,9728:15002947,15284336 +g1,9728:15002947,15284336 +g1,9729:15002947,15284336 +g1,9729:15002947,15284336 +g1,9729:15002947,15284336 +(1,9729:15002947,15284336:0,0,0 +(1,9729:15002947,15284336:0,0,0 +g1,9729:15002947,15284336 +g1,9729:15002947,15284336 +g1,9729:15002947,15284336 +g1,9729:15002947,15284336 +g1,9729:15002947,15284336 +(1,9729:15002947,15284336:0,0,0 +(1,9729:15002947,15284336:2418868,426443,7077 +(1,9729:15002947,15284336:2418868,426443,7077 +) +g1,9729:17421815,15284336 +) +) +g1,9729:15002947,15284336 +g1,9729:15002947,15284336 +) +) +g1,9729:15002947,15284336 +g1,9730:15002947,15284336 +g1,9730:15002947,15284336 +g1,9730:15002947,15284336 +(1,9730:15002947,15284336:0,0,0 +(1,9730:15002947,15284336:0,0,0 +g1,9730:15002947,15284336 +g1,9730:15002947,15284336 +g1,9730:15002947,15284336 +g1,9730:15002947,15284336 +g1,9730:15002947,15284336 +(1,9730:15002947,15284336:0,0,0 +(1,9730:15002947,15284336:1643250,454754,7077 +(1,9730:15002947,15284336:1643250,454754,7077 +) +g1,9730:16646197,15284336 +) +) +g1,9730:15002947,15284336 +g1,9730:15002947,15284336 +) +) +g1,9730:15002947,15284336 +g1,9731:15002947,15284336 +g1,9731:15002947,15284336 +g1,9731:15002947,15284336 +g1,9731:15002947,15284336 +g1,9731:15002947,15284336 +g1,9732:15002947,15284336 +g1,9732:15002947,15284336 +g1,9732:15002947,15284336 +g1,9732:15002947,15284336 +g1,9733:15002947,15284336 +g1,9733:15002947,15284336 +g1,9733:15002947,15284336 +g1,9733:15002947,15284336 +g1,9733:15002947,15284336 +g1,9733:15002947,15284336 +g1,9734:15002947,15284336 +g1,9734:15002947,15284336 +) +g1,9734:15002947,15284336 +) +) +g1,9736:27229711,26858449 +k1,9736:32583029,26858449:5353318 +) +(1,9739:6630773,28294583:25952256,505283,134348 +h1,9738:6630773,28294583:983040,0,0 +k1,9738:8442478,28294583:200830 +k1,9738:9662393,28294583:200830 +k1,9738:12479420,28294583:200830 +k1,9738:14535573,28294583:200829 +k1,9738:15755488,28294583:200830 +k1,9738:19028646,28294583:200830 +k1,9738:19880904,28294583:200830 +(1,9738:19880904,28294583:0,459977,115847 +r1,9787:21646017,28294583:1765113,575824,115847 +k1,9738:19880904,28294583:-1765113 +) +(1,9738:19880904,28294583:1765113,459977,115847 +k1,9738:19880904,28294583:3277 +h1,9738:21642740,28294583:0,411205,112570 +) +k1,9738:21846847,28294583:200830 +k1,9738:22579174,28294583:200830 +k1,9738:24855529,28294583:200830 +k1,9738:25742521,28294583:200830 +(1,9738:25742521,28294583:0,452978,115847 +r1,9787:27859346,28294583:2116825,568825,115847 +k1,9738:25742521,28294583:-2116825 +) +(1,9738:25742521,28294583:2116825,452978,115847 +k1,9738:25742521,28294583:3277 +h1,9738:27856069,28294583:0,411205,112570 +) +k1,9738:28060175,28294583:200829 +k1,9738:29333174,28294583:200830 +k1,9738:29992101,28294583:200830 +k1,9738:31297213,28294583:200830 +k1,9738:32583029,28294583:0 +) +(1,9739:6630773,29159663:25952256,513147,134348 +k1,9738:7625273,29159663:246734 +k1,9738:8227868,29159663:246735 +(1,9738:8227868,29159663:0,414482,115847 +r1,9787:10344693,29159663:2116825,530329,115847 +k1,9738:8227868,29159663:-2116825 +) +(1,9738:8227868,29159663:2116825,414482,115847 +k1,9738:8227868,29159663:3277 +h1,9738:10341416,29159663:0,411205,112570 +) +k1,9738:10591427,29159663:246734 +k1,9738:11497454,29159663:246735 +k1,9738:12875995,29159663:246734 +k1,9738:15078979,29159663:246734 +k1,9738:17730230,29159663:246735 +k1,9738:18636256,29159663:246734 +k1,9738:20484691,29159663:246735 +k1,9738:22964237,29159663:246734 +k1,9738:25593860,29159663:246734 +k1,9738:27408216,29159663:246735 +(1,9738:27408216,29159663:0,452978,115847 +r1,9787:28821617,29159663:1413401,568825,115847 +k1,9738:27408216,29159663:-1413401 +) +(1,9738:27408216,29159663:1413401,452978,115847 +k1,9738:27408216,29159663:3277 +h1,9738:28818340,29159663:0,411205,112570 +) +k1,9738:29068351,29159663:246734 +k1,9738:29997971,29159663:246735 +k1,9738:31812326,29159663:246734 +k1,9738:32583029,29159663:0 +) +(1,9739:6630773,30024743:25952256,513147,126483 +k1,9738:8943942,30024743:151136 +k1,9738:11072955,30024743:151136 +k1,9738:12328373,30024743:151136 +k1,9738:13765325,30024743:151136 +k1,9738:15436896,30024743:151136 +k1,9738:16607117,30024743:151136 +k1,9738:18411727,30024743:151137 +k1,9738:19971887,30024743:151136 +k1,9738:21319710,30024743:151136 +k1,9738:24685387,30024743:151136 +k1,9738:27910817,30024743:151136 +k1,9738:29455904,30024743:151136 +k1,9738:29962900,30024743:151136 +k1,9738:32583029,30024743:0 +) +(1,9739:6630773,30889823:25952256,513147,134348 +g1,9738:8579158,30889823 +g1,9738:10400403,30889823 +g1,9738:11347398,30889823 +g1,9738:14841122,30889823 +g1,9738:15801879,30889823 +g1,9738:18290936,30889823 +g1,9738:19149457,30889823 +g1,9738:20367771,30889823 +g1,9738:22122169,30889823 +g1,9738:24526685,30889823 +g1,9738:25412076,30889823 +k1,9739:32583029,30889823:3924955 +g1,9739:32583029,30889823 +) +v1,9741:6630773,31574678:0,393216,0 +(1,9750:6630773,34067968:25952256,2886506,196608 +g1,9750:6630773,34067968 +g1,9750:6630773,34067968 +g1,9750:6434165,34067968 +(1,9750:6434165,34067968:0,2886506,196608 +r1,9787:32779637,34067968:26345472,3083114,196608 +k1,9750:6434165,34067968:-26345472 +) +(1,9750:6434165,34067968:26345472,2886506,196608 +[1,9750:6630773,34067968:25952256,2689898,0 +(1,9743:6630773,31802509:25952256,424439,9908 +(1,9742:6630773,31802509:0,0,0 +g1,9742:6630773,31802509 +g1,9742:6630773,31802509 +g1,9742:6303093,31802509 +(1,9742:6303093,31802509:0,0,0 +) +g1,9742:6630773,31802509 +) +g1,9743:7294681,31802509 +g1,9743:8290543,31802509 +g1,9743:8954451,31802509 +g1,9743:9618359,31802509 +g1,9743:12605944,31802509 +g1,9743:14597668,31802509 +g1,9743:15593530,31802509 +g1,9743:16921346,31802509 +g1,9743:17917208,31802509 +g1,9743:18581116,31802509 +g1,9743:20572840,31802509 +g1,9743:23228472,31802509 +k1,9743:23228472,31802509:0 +h1,9743:25220196,31802509:0,0,0 +k1,9743:32583029,31802509:7362833 +g1,9743:32583029,31802509 +) +(1,9744:6630773,32487364:25952256,431045,79822 +h1,9744:6630773,32487364:0,0,0 +g1,9744:7958589,32487364 +g1,9744:8954451,32487364 +g1,9744:9950313,32487364 +g1,9744:11610083,32487364 +g1,9744:12273991,32487364 +g1,9744:13269853,32487364 +g1,9744:13933761,32487364 +g1,9744:14597669,32487364 +h1,9744:14929623,32487364:0,0,0 +k1,9744:32583029,32487364:17653406 +g1,9744:32583029,32487364 +) +(1,9745:6630773,33172219:25952256,424439,6605 +h1,9745:6630773,33172219:0,0,0 +h1,9745:6962727,33172219:0,0,0 +k1,9745:32583029,33172219:25620302 +g1,9745:32583029,33172219 +) +(1,9749:6630773,33988146:25952256,424439,79822 +(1,9747:6630773,33988146:0,0,0 +g1,9747:6630773,33988146 +g1,9747:6630773,33988146 +g1,9747:6303093,33988146 +(1,9747:6303093,33988146:0,0,0 +) +g1,9747:6630773,33988146 +) +g1,9749:7626635,33988146 +g1,9749:8954451,33988146 +h1,9749:9618359,33988146:0,0,0 +k1,9749:32583029,33988146:22964670 +g1,9749:32583029,33988146 +) +] +) +g1,9750:32583029,34067968 +g1,9750:6630773,34067968 +g1,9750:6630773,34067968 +g1,9750:32583029,34067968 +g1,9750:32583029,34067968 +) +h1,9750:6630773,34264576:0,0,0 +(1,9754:6630773,35129656:25952256,513147,126483 +h1,9753:6630773,35129656:983040,0,0 +k1,9753:9270517,35129656:168381 +k1,9753:10457984,35129656:168382 +k1,9753:13812725,35129656:168381 +(1,9753:13812725,35129656:0,452978,115847 +r1,9787:17336399,35129656:3523674,568825,115847 +k1,9753:13812725,35129656:-3523674 +) +(1,9753:13812725,35129656:3523674,452978,115847 +g1,9753:14519426,35129656 +g1,9753:15574562,35129656 +g1,9753:16277986,35129656 +g1,9753:16981410,35129656 +h1,9753:17333122,35129656:0,411205,112570 +) +k1,9753:17504781,35129656:168382 +k1,9753:18204659,35129656:168381 +k1,9753:21206162,35129656:168382 +k1,9753:22509627,35129656:168381 +k1,9753:24607389,35129656:168382 +k1,9753:26169721,35129656:168381 +k1,9753:30071689,35129656:168382 +k1,9754:32583029,35129656:0 +) +(1,9754:6630773,35994736:25952256,513147,134348 +(1,9753:6630773,35994736:0,414482,115847 +r1,9787:6989039,35994736:358266,530329,115847 +k1,9753:6630773,35994736:-358266 +) +(1,9753:6630773,35994736:358266,414482,115847 +k1,9753:6630773,35994736:3277 +h1,9753:6985762,35994736:0,411205,112570 +) +k1,9753:7202198,35994736:213159 +k1,9753:11259698,35994736:213158 +k1,9753:13468428,35994736:213159 +k1,9753:15133209,35994736:213159 +k1,9753:16005659,35994736:213158 +k1,9753:17237903,35994736:213159 +k1,9753:19635377,35994736:213159 +k1,9753:20420664,35994736:213158 +k1,9753:21205952,35994736:213159 +k1,9753:21991239,35994736:213158 +k1,9753:22776527,35994736:213159 +k1,9753:24181131,35994736:213159 +k1,9753:24966418,35994736:213158 +k1,9753:25795615,35994736:213159 +k1,9753:27986651,35994736:213159 +(1,9753:27986651,35994736:0,435480,115847 +r1,9787:29048340,35994736:1061689,551327,115847 +k1,9753:27986651,35994736:-1061689 +) +(1,9753:27986651,35994736:1061689,435480,115847 +k1,9753:27986651,35994736:3277 +h1,9753:29045063,35994736:0,411205,112570 +) +k1,9753:29435168,35994736:213158 +k1,9753:30845014,35994736:213159 +k1,9753:32583029,35994736:0 +) +(1,9754:6630773,36859816:25952256,513147,126483 +k1,9753:8352051,36859816:208052 +k1,9753:9246265,36859816:208052 +k1,9753:13187904,36859816:208053 +k1,9753:14496961,36859816:208052 +k1,9753:15356441,36859816:208052 +k1,9753:17084928,36859816:208052 +k1,9753:18312066,36859816:208053 +k1,9753:20173591,36859816:208052 +k1,9753:24642794,36859816:208052 +k1,9753:25537008,36859816:208052 +k1,9753:26515763,36859816:208052 +k1,9753:29448803,36859816:208053 +k1,9753:30071689,36859816:208043 +k1,9753:32583029,36859816:0 +) +(1,9754:6630773,37724896:25952256,513147,134348 +k1,9753:8711078,37724896:168620 +k1,9753:10076385,37724896:168620 +k1,9753:11238531,37724896:168620 +k1,9753:12090037,37724896:168621 +k1,9753:14236534,37724896:168620 +k1,9753:17380489,37724896:168620 +(1,9753:17380489,37724896:0,452978,115847 +r1,9787:18090467,37724896:709978,568825,115847 +k1,9753:17380489,37724896:-709978 +) +(1,9753:17380489,37724896:709978,452978,115847 +k1,9753:17380489,37724896:3277 +h1,9753:18087190,37724896:0,411205,112570 +) +k1,9753:18259087,37724896:168620 +k1,9753:19531989,37724896:168620 +k1,9753:22072357,37724896:168620 +k1,9753:23372784,37724896:168620 +k1,9753:25081501,37724896:168621 +k1,9753:25664933,37724896:168589 +k1,9753:28297052,37724896:168621 +k1,9753:29151834,37724896:168620 +k1,9753:30709162,37724896:168620 +k1,9753:31563944,37724896:168620 +k1,9753:32583029,37724896:0 +) +(1,9754:6630773,38589976:25952256,505283,126483 +g1,9753:8326189,38589976 +g1,9753:12042080,38589976 +g1,9753:12857347,38589976 +g1,9753:14075661,38589976 +g1,9753:15689812,38589976 +g1,9753:17465837,38589976 +g1,9753:18769348,38589976 +g1,9753:21127333,38589976 +k1,9754:32583029,38589976:9642970 +g1,9754:32583029,38589976 +) +v1,9756:6630773,39455056:0,393216,0 +(1,9757:6630773,40807796:25952256,1745956,0 +g1,9757:6630773,40807796 +g1,9757:6237557,40807796 +r1,9787:6368629,40807796:131072,1745956,0 +g1,9757:6567858,40807796 +g1,9757:6764466,40807796 +[1,9757:6764466,40807796:25818563,1745956,0 +(1,9757:6764466,39816233:25818563,754393,260573 +(1,9756:6764466,39816233:0,754393,260573 +r1,9787:8010564,39816233:1246098,1014966,260573 +k1,9756:6764466,39816233:-1246098 +) +(1,9756:6764466,39816233:1246098,754393,260573 +) +k1,9756:8248284,39816233:237720 +k1,9756:8575964,39816233:327680 +k1,9756:9441520,39816233:237721 +k1,9756:10035100,39816233:237720 +(1,9756:10035100,39816233:0,459977,115847 +r1,9787:11800213,39816233:1765113,575824,115847 +k1,9756:10035100,39816233:-1765113 +) +(1,9756:10035100,39816233:1765113,459977,115847 +k1,9756:10035100,39816233:3277 +h1,9756:11796936,39816233:0,411205,112570 +) +k1,9756:12037933,39816233:237720 +k1,9756:13690576,39816233:237721 +k1,9756:17125798,39816233:237720 +k1,9756:18382604,39816233:237721 +k1,9756:20598201,39816233:237720 +k1,9756:21518806,39816233:237720 +k1,9756:22750053,39816233:237721 +k1,9756:25193060,39816233:237720 +k1,9756:26116942,39816233:237720 +k1,9756:29426991,39816233:237721 +k1,9756:31835263,39816233:237720 +k1,9756:32583029,39816233:0 +) +(1,9757:6764466,40681313:25818563,513147,126483 +g1,9756:9798782,40681313 +g1,9756:10759539,40681313 +g1,9756:11977853,40681313 +g1,9756:13673269,40681313 +g1,9756:17058858,40681313 +g1,9756:19268076,40681313 +g1,9756:20486390,40681313 +(1,9756:20486390,40681313:0,459977,115847 +r1,9787:21548079,40681313:1061689,575824,115847 +k1,9756:20486390,40681313:-1061689 +) +(1,9756:20486390,40681313:1061689,459977,115847 +k1,9756:20486390,40681313:3277 +h1,9756:21544802,40681313:0,411205,112570 +) +g1,9756:21747308,40681313 +k1,9757:32583029,40681313:9247128 +g1,9757:32583029,40681313 +) +] +g1,9757:32583029,40807796 +) +h1,9757:6630773,40807796:0,0,0 +(1,9760:6630773,41672876:25952256,513147,126483 +h1,9759:6630773,41672876:983040,0,0 +k1,9759:8445277,41672876:343876 +k1,9759:10204221,41672876:344022 +k1,9759:11652524,41672876:344021 +k1,9759:12744312,41672876:344022 +k1,9759:16379551,41672876:344021 +k1,9759:17991039,41672876:344022 +k1,9759:18690920,41672876:344021 +k1,9759:20847668,41672876:344022 +k1,9759:24131634,41672876:344021 +k1,9759:25134948,41672876:344022 +k1,9759:29169302,41672876:344022 +k1,9759:30986572,41672876:344021 +k1,9759:32583029,41672876:0 +) +(1,9760:6630773,42537956:25952256,505283,134348 +g1,9759:9388528,42537956 +g1,9759:10606842,42537956 +(1,9759:10606842,42537956:0,459977,115847 +r1,9787:11668531,42537956:1061689,575824,115847 +k1,9759:10606842,42537956:-1061689 +) +(1,9759:10606842,42537956:1061689,459977,115847 +k1,9759:10606842,42537956:3277 +h1,9759:11665254,42537956:0,411205,112570 +) +g1,9759:11867760,42537956 +g1,9759:13481911,42537956 +k1,9760:32583030,42537956:17072124 +g1,9760:32583030,42537956 +) +v1,9762:6630773,43222811:0,393216,0 +(1,9787:6630773,45510161:25952256,2680566,196608 +g1,9787:6630773,45510161 +g1,9787:6630773,45510161 +g1,9787:6434165,45510161 +(1,9787:6434165,45510161:0,2680566,196608 +r1,9787:32779637,45510161:26345472,2877174,196608 +k1,9787:6434165,45510161:-26345472 +) +(1,9787:6434165,45510161:26345472,2680566,196608 +[1,9787:6630773,45510161:25952256,2483958,0 +(1,9764:6630773,43450642:25952256,424439,9908 +(1,9763:6630773,43450642:0,0,0 +g1,9763:6630773,43450642 +g1,9763:6630773,43450642 +g1,9763:6303093,43450642 +(1,9763:6303093,43450642:0,0,0 +) +g1,9763:6630773,43450642 +) +g1,9764:7294681,43450642 +g1,9764:8290543,43450642 +h1,9764:8622497,43450642:0,0,0 +k1,9764:32583029,43450642:23960532 +g1,9764:32583029,43450642 +) +(1,9765:6630773,44135497:25952256,431045,106246 +h1,9765:6630773,44135497:0,0,0 +g1,9765:7294681,44135497 +g1,9765:9286405,44135497 +g1,9765:10282267,44135497 +k1,9765:10282267,44135497:9909 +h1,9765:11619992,44135497:0,0,0 +k1,9765:32583028,44135497:20963036 +g1,9765:32583028,44135497 +) +(1,9766:6630773,44820352:25952256,431045,106246 +h1,9766:6630773,44820352:0,0,0 +g1,9766:7294681,44820352 +g1,9766:9286405,44820352 +k1,9766:9286405,44820352:0 +h1,9766:12273990,44820352:0,0,0 +k1,9766:32583030,44820352:20309040 +g1,9766:32583030,44820352 +) +(1,9767:6630773,45505207:25952256,407923,4954 +h1,9767:6630773,45505207:0,0,0 +g1,9767:7294681,45505207 +g1,9767:8290543,45505207 +h1,9767:8622497,45505207:0,0,0 +k1,9767:32583029,45505207:23960532 +g1,9767:32583029,45505207 +) +] +) +g1,9787:32583029,45510161 +g1,9787:6630773,45510161 +g1,9787:6630773,45510161 +g1,9787:32583029,45510161 +g1,9787:32583029,45510161 +) +] +(1,9787:32583029,45706769:0,0,0 +g1,9787:32583029,45706769 +) +) +] +(1,9787:6630773,47279633:25952256,0,0 +h1,9787:6630773,47279633:25952256,0,0 +) +] +(1,9787:4262630,4025873:0,0,0 +[1,9787:-473656,4025873:0,0,0 +(1,9787:-473656,-710413:0,0,0 +(1,9787:-473656,-710413:0,0,0 +g1,9787:-473656,-710413 +) +g1,9787:-473656,-710413 +) +] ) -g1,8393:36675916,2439708 -(1,8393:36675916,2439708:1179648,16384,0 -r1,10677:37855564,2439708:1179648,16384,0 +] +!26911 +}156 +Input:1425:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1426:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1427:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1428:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1429:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1430:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1431:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!670 +{157 +[1,9905:4262630,47279633:28320399,43253760,0 +(1,9905:4262630,4025873:0,0,0 +[1,9905:-473656,4025873:0,0,0 +(1,9905:-473656,-710413:0,0,0 +(1,9905:-473656,-644877:0,0,0 +k1,9905:-473656,-644877:-65536 ) +(1,9905:-473656,4736287:0,0,0 +k1,9905:-473656,4736287:5209943 ) -k1,10677:3078556,2439708:-34777008 +g1,9905:-473656,-710413 ) ] -[1,10677:3078558,4812305:0,0,0 -(1,10677:3078558,49800853:0,16384,2228224 -k1,10677:1358238,49800853:-1720320 -(1,8393:1358238,49800853:1720320,16384,2228224 -(1,8393:1358238,49800853:1179648,16384,0 -r1,10677:2537886,49800853:1179648,16384,0 ) -g1,8393:3062174,49800853 -(1,8393:3062174,52029077:16384,1703936,0 -[1,8393:3062174,52029077:25952256,1703936,0 -(1,8393:3062174,51504789:25952256,1179648,0 -(1,8393:3062174,51504789:16384,1179648,0 -r1,10677:3078558,51504789:16384,1179648,0 +[1,9905:6630773,47279633:25952256,43253760,0 +[1,9905:6630773,4812305:25952256,786432,0 +(1,9905:6630773,4812305:25952256,505283,134348 +(1,9905:6630773,4812305:25952256,505283,134348 +g1,9905:3078558,4812305 +[1,9905:3078558,4812305:0,0,0 +(1,9905:3078558,2439708:0,1703936,0 +k1,9905:1358238,2439708:-1720320 +(1,8606:1358238,2439708:1720320,1703936,0 +(1,8606:1358238,2439708:1179648,16384,0 +r1,9905:2537886,2439708:1179648,16384,0 ) -k1,8393:29014430,51504789:25935872 -g1,8393:29014430,51504789 +g1,8606:3062174,2439708 +(1,8606:3062174,2439708:16384,1703936,0 +[1,8606:3062174,2439708:25952256,1703936,0 +(1,8606:3062174,1915420:25952256,1179648,0 +(1,8606:3062174,1915420:16384,1179648,0 +r1,9905:3078558,1915420:16384,1179648,0 +) +k1,8606:29014430,1915420:25935872 +g1,8606:29014430,1915420 ) ] ) ) ) ] -[1,10677:3078558,4812305:0,0,0 -(1,10677:3078558,49800853:0,16384,2228224 -g1,10677:29030814,49800853 -g1,10677:36135244,49800853 -(1,8393:36135244,49800853:1720320,16384,2228224 -(1,8393:36135244,52029077:16384,1703936,0 -[1,8393:36135244,52029077:25952256,1703936,0 -(1,8393:36135244,51504789:25952256,1179648,0 -(1,8393:36135244,51504789:16384,1179648,0 -r1,10677:36151628,51504789:16384,1179648,0 +[1,9905:3078558,4812305:0,0,0 +(1,9905:3078558,2439708:0,1703936,0 +g1,9905:29030814,2439708 +g1,9905:36135244,2439708 +(1,8606:36135244,2439708:1720320,1703936,0 +(1,8606:36135244,2439708:16384,1703936,0 +[1,8606:36135244,2439708:25952256,1703936,0 +(1,8606:36135244,1915420:25952256,1179648,0 +(1,8606:36135244,1915420:16384,1179648,0 +r1,9905:36151628,1915420:16384,1179648,0 ) -k1,8393:62087500,51504789:25935872 -g1,8393:62087500,51504789 +k1,8606:62087500,1915420:25935872 +g1,8606:62087500,1915420 ) ] ) -g1,8393:36675916,49800853 -(1,8393:36675916,49800853:1179648,16384,0 -r1,10677:37855564,49800853:1179648,16384,0 +g1,8606:36675916,2439708 +(1,8606:36675916,2439708:1179648,16384,0 +r1,9905:37855564,2439708:1179648,16384,0 ) ) -k1,10677:3078556,49800853:-34777008 +k1,9905:3078556,2439708:-34777008 ) ] -g1,10677:6630773,4812305 -g1,10677:6630773,4812305 -g1,10677:8849822,4812305 -g1,10677:11107537,4812305 -g1,10677:12517216,4812305 -g1,10677:15753383,4812305 -g1,10677:18067459,4812305 -k1,10677:31387652,4812305:13320193 +[1,9905:3078558,4812305:0,0,0 +(1,9905:3078558,49800853:0,16384,2228224 +k1,9905:1358238,49800853:-1720320 +(1,8606:1358238,49800853:1720320,16384,2228224 +(1,8606:1358238,49800853:1179648,16384,0 +r1,9905:2537886,49800853:1179648,16384,0 +) +g1,8606:3062174,49800853 +(1,8606:3062174,52029077:16384,1703936,0 +[1,8606:3062174,52029077:25952256,1703936,0 +(1,8606:3062174,51504789:25952256,1179648,0 +(1,8606:3062174,51504789:16384,1179648,0 +r1,9905:3078558,51504789:16384,1179648,0 ) +k1,8606:29014430,51504789:25935872 +g1,8606:29014430,51504789 ) ] -[1,10677:6630773,45706769:25952256,40108032,0 -(1,10677:6630773,45706769:25952256,40108032,0 -(1,10677:6630773,45706769:0,0,0 -g1,10677:6630773,45706769 ) -[1,10677:6630773,45706769:25952256,40108032,0 -(1,10597:6630773,6254097:25952256,505283,134348 -h1,10596:6630773,6254097:983040,0,0 -g1,10596:9274495,6254097 -g1,10596:11209117,6254097 -g1,10596:11764206,6254097 -(1,10596:11764206,6254097:0,452978,115847 -r1,10677:14936166,6254097:3171960,568825,115847 -k1,10596:11764206,6254097:-3171960 ) -(1,10596:11764206,6254097:3171960,452978,115847 -k1,10596:11764206,6254097:3277 -h1,10596:14932889,6254097:0,411205,112570 -) -g1,10596:15135395,6254097 -g1,10596:17014967,6254097 -g1,10596:19252366,6254097 -g1,10596:20067633,6254097 -g1,10596:20622722,6254097 -k1,10597:32583029,6254097:9275297 -g1,10597:32583029,6254097 -) -v1,10599:6630773,7320599:0,393216,0 -(1,10608:6630773,9609064:25952256,2681681,196608 -g1,10608:6630773,9609064 -g1,10608:6630773,9609064 -g1,10608:6434165,9609064 -(1,10608:6434165,9609064:0,2681681,196608 -r1,10677:32779637,9609064:26345472,2878289,196608 -k1,10608:6434165,9609064:-26345472 -) -(1,10608:6434165,9609064:26345472,2681681,196608 -[1,10608:6630773,9609064:25952256,2485073,0 -(1,10601:6630773,7534509:25952256,410518,6290 -(1,10600:6630773,7534509:0,0,0 -g1,10600:6630773,7534509 -g1,10600:6630773,7534509 -g1,10600:6303093,7534509 -(1,10600:6303093,7534509:0,0,0 -) -g1,10600:6630773,7534509 -) -g1,10601:10424521,7534509 -g1,10601:11372959,7534509 -h1,10601:12321396,7534509:0,0,0 -k1,10601:32583028,7534509:20261632 -g1,10601:32583028,7534509 -) -(1,10602:6630773,8200687:25952256,410518,107478 -h1,10602:6630773,8200687:0,0,0 -g1,10602:12953687,8200687 -h1,10602:14534416,8200687:0,0,0 -k1,10602:32583028,8200687:18048612 -g1,10602:32583028,8200687 -) -(1,10603:6630773,8866865:25952256,404226,6290 -h1,10603:6630773,8866865:0,0,0 -h1,10603:6946919,8866865:0,0,0 -k1,10603:32583029,8866865:25636110 -g1,10603:32583029,8866865 -) -(1,10607:6630773,9533043:25952256,404226,76021 -(1,10605:6630773,9533043:0,0,0 -g1,10605:6630773,9533043 -g1,10605:6630773,9533043 -g1,10605:6303093,9533043 -(1,10605:6303093,9533043:0,0,0 -) -g1,10605:6630773,9533043 -) -g1,10607:7579210,9533043 -g1,10607:8843793,9533043 -h1,10607:10108376,9533043:0,0,0 -k1,10607:32583028,9533043:22474652 -g1,10607:32583028,9533043 -) -] -) -g1,10608:32583029,9609064 -g1,10608:6630773,9609064 -g1,10608:6630773,9609064 -g1,10608:32583029,9609064 -g1,10608:32583029,9609064 -) -h1,10608:6630773,9805672:0,0,0 -(1,10612:6630773,11047485:25952256,505283,126483 -h1,10611:6630773,11047485:983040,0,0 -k1,10611:9098405,11047485:287905 -k1,10611:10558748,11047485:287904 -k1,10611:11859184,11047485:287905 -k1,10611:15138807,11047485:287904 -k1,10611:17282036,11047485:287905 -k1,10611:18385209,11047485:287905 -k1,10611:19739384,11047485:287904 -k1,10611:24060375,11047485:287905 -k1,10611:25645238,11047485:287905 -k1,10611:27089852,11047485:287904 -k1,10611:28714691,11047485:287905 -k1,10611:30551211,11047485:287904 -k1,10611:31490544,11047485:287905 -k1,10612:32583029,11047485:0 -) -(1,10612:6630773,11888973:25952256,505283,134348 -(1,10611:6630773,11888973:0,452978,122846 -r1,10677:9451022,11888973:2820249,575824,122846 -k1,10611:6630773,11888973:-2820249 -) -(1,10611:6630773,11888973:2820249,452978,122846 -k1,10611:6630773,11888973:3277 -h1,10611:9447745,11888973:0,411205,112570 -) -k1,10611:9795175,11888973:170483 -k1,10611:12864971,11888973:170483 -k1,10611:16192324,11888973:170484 -k1,10611:18281701,11888973:170483 -k1,10611:19320536,11888973:170483 -k1,10611:20827953,11888973:170483 -k1,10611:22547053,11888973:170484 -k1,10611:23368964,11888973:170483 -k1,10611:24631932,11888973:170483 -k1,10611:27777094,11888973:170483 -k1,10611:30143689,11888973:170484 -k1,10611:30965600,11888973:170483 -k1,10611:32583029,11888973:0 -) -(1,10612:6630773,12730461:25952256,513147,134348 -k1,10611:9017453,12730461:192535 -k1,10611:9892874,12730461:192536 -k1,10611:12783526,12730461:192535 -k1,10611:14935587,12730461:192535 -k1,10611:17196439,12730461:192536 -k1,10611:18380534,12730461:192535 -k1,10611:19178622,12730461:192535 -k1,10611:21069196,12730461:192536 -k1,10611:22130083,12730461:192535 -k1,10611:24004273,12730461:192536 -k1,10611:25907953,12730461:192535 -k1,10611:26751916,12730461:192535 -k1,10611:29374527,12730461:192536 -k1,10611:31635378,12730461:192535 -k1,10611:32583029,12730461:0 -) -(1,10612:6630773,13571949:25952256,505283,134348 -k1,10611:9143674,13571949:223073 -k1,10611:11222727,13571949:223073 -k1,10611:15372717,13571949:223073 -k1,10611:16278675,13571949:223073 -k1,10611:17187910,13571949:223073 -(1,10611:17187910,13571949:0,452978,115847 -r1,10677:20359870,13571949:3171960,568825,115847 -k1,10611:17187910,13571949:-3171960 -) -(1,10611:17187910,13571949:3171960,452978,115847 -k1,10611:17187910,13571949:3277 -h1,10611:20356593,13571949:0,411205,112570 -) -k1,10611:20582943,13571949:223073 -k1,10611:22369051,13571949:223074 -k1,10611:23197677,13571949:223073 -k1,10611:25118788,13571949:223073 -k1,10611:25957899,13571949:223073 -k1,10611:26536832,13571949:223073 -k1,10611:28174827,13571949:223073 -k1,10611:29266252,13571949:223073 -k1,10611:32583029,13571949:0 -) -(1,10612:6630773,14413437:25952256,513147,134348 -k1,10611:7196567,14413437:209934 -k1,10611:9384377,14413437:209933 -k1,10611:10277196,14413437:209934 -k1,10611:11480656,14413437:209934 -k1,10611:12349881,14413437:209933 -k1,10611:14519341,14413437:209934 -k1,10611:16971262,14413437:209934 -k1,10611:17864080,14413437:209933 -k1,10611:18679567,14413437:209934 -k1,10611:19757853,14413437:209934 -k1,10611:22991617,14413437:209933 -k1,10611:23814313,14413437:209934 -k1,10611:26567699,14413437:209934 -k1,10611:28737158,14413437:209933 -k1,10611:31015408,14413437:209934 -k1,10611:32583029,14413437:0 -) -(1,10612:6630773,15254925:25952256,505283,134348 -k1,10611:9529583,15254925:227563 -k1,10611:12731826,15254925:227564 -k1,10611:15155500,15254925:227563 -k1,10611:17237732,15254925:227563 -k1,10611:18274666,15254925:227564 -k1,10611:19891592,15254925:227563 -k1,10611:20802040,15254925:227563 -k1,10611:23715269,15254925:227564 -k1,10611:24430392,15254925:227535 -k1,10611:27435371,15254925:227563 -k1,10611:29030015,15254925:227563 -k1,10611:29789076,15254925:227564 -k1,10611:31714677,15254925:227563 -k1,10611:32583029,15254925:0 -) -(1,10612:6630773,16096413:25952256,513147,134348 -k1,10611:8984130,16096413:171663 -k1,10611:10545156,16096413:171663 -k1,10611:12284441,16096413:171664 -k1,10611:12811964,16096413:171663 -k1,10611:14209806,16096413:171663 -k1,10611:15364509,16096413:171663 -k1,10611:16727618,16096413:171664 -k1,10611:17767633,16096413:171663 -k1,10611:19487912,16096413:171663 -k1,10611:20311003,16096413:171663 -k1,10611:22220682,16096413:171664 -k1,10611:23411430,16096413:171663 -k1,10611:25542619,16096413:171663 -k1,10611:28831174,16096413:171663 -k1,10611:29654266,16096413:171664 -k1,10611:30845014,16096413:171663 -k1,10611:32583029,16096413:0 -) -(1,10612:6630773,16937901:25952256,513147,134348 -k1,10611:7477352,16937901:187287 -k1,10611:8683725,16937901:187288 -k1,10611:9854052,16937901:187287 -k1,10611:10850709,16937901:187287 -k1,10611:12556465,16937901:187287 -k1,10611:13426638,16937901:187288 -k1,10611:13969785,16937901:187287 -k1,10611:17131751,16937901:187287 -k1,10611:19184848,16937901:187287 -k1,10611:20784437,16937901:187288 -k1,10611:22539345,16937901:187287 -k1,10611:23745717,16937901:187287 -k1,10611:26107490,16937901:187288 -k1,10611:26907539,16937901:187287 -k1,10611:28113911,16937901:187287 -k1,10611:29373367,16937901:187287 -k1,10611:30219947,16937901:187288 -k1,10611:31426319,16937901:187287 -k1,10612:32583029,16937901:0 -k1,10612:32583029,16937901:0 -) -(1,10614:6630773,17779389:25952256,513147,126483 -h1,10613:6630773,17779389:983040,0,0 -g1,10613:10417443,17779389 -g1,10613:11983753,17779389 -g1,10613:12714479,17779389 -g1,10613:14611746,17779389 -(1,10613:14611746,17779389:0,452978,115847 -r1,10677:17783706,17779389:3171960,568825,115847 -k1,10613:14611746,17779389:-3171960 -) -(1,10613:14611746,17779389:3171960,452978,115847 -k1,10613:14611746,17779389:3277 -h1,10613:17780429,17779389:0,411205,112570 -) -g1,10613:17982935,17779389 -g1,10613:20192809,17779389 -g1,10613:21383598,17779389 -g1,10613:22601912,17779389 -g1,10613:24644013,17779389 -g1,10613:25502534,17779389 -g1,10613:26057623,17779389 -k1,10614:32583029,17779389:2287848 -g1,10614:32583029,17779389 -) -v1,10616:6630773,18845891:0,393216,0 -(1,10626:6630773,21800534:25952256,3347859,196608 -g1,10626:6630773,21800534 -g1,10626:6630773,21800534 -g1,10626:6434165,21800534 -(1,10626:6434165,21800534:0,3347859,196608 -r1,10677:32779637,21800534:26345472,3544467,196608 -k1,10626:6434165,21800534:-26345472 -) -(1,10626:6434165,21800534:26345472,3347859,196608 -[1,10626:6630773,21800534:25952256,3151251,0 -(1,10618:6630773,19059801:25952256,410518,76021 -(1,10617:6630773,19059801:0,0,0 -g1,10617:6630773,19059801 -g1,10617:6630773,19059801 -g1,10617:6303093,19059801 -(1,10617:6303093,19059801:0,0,0 -) -g1,10617:6630773,19059801 -) -k1,10618:6630773,19059801:0 -g1,10618:7895356,19059801 -g1,10618:8843793,19059801 -g1,10618:9792230,19059801 -g1,10618:11372960,19059801 -h1,10618:11689106,19059801:0,0,0 -k1,10618:32583030,19059801:20893924 -g1,10618:32583030,19059801 -) -(1,10619:6630773,19725979:25952256,404226,107478 -h1,10619:6630773,19725979:0,0,0 -g1,10619:6946919,19725979 -g1,10619:7263065,19725979 -g1,10619:7579211,19725979 -g1,10619:13902125,19725979 -g1,10619:14850563,19725979 -g1,10619:16115146,19725979 -g1,10619:16747438,19725979 -g1,10619:18328167,19725979 -h1,10619:19592751,19725979:0,0,0 -k1,10619:32583029,19725979:12990278 -g1,10619:32583029,19725979 -) -(1,10620:6630773,20392157:25952256,404226,76021 -h1,10620:6630773,20392157:0,0,0 -h1,10620:6946919,20392157:0,0,0 -k1,10620:32583029,20392157:25636110 -g1,10620:32583029,20392157 -) -(1,10621:6630773,21058335:25952256,404226,101187 -h1,10621:6630773,21058335:0,0,0 -g1,10621:10108376,21058335 -g1,10621:10740668,21058335 -h1,10621:12953688,21058335:0,0,0 -k1,10621:32583028,21058335:19629340 -g1,10621:32583028,21058335 -) -(1,10625:6630773,21724513:25952256,404226,76021 -(1,10623:6630773,21724513:0,0,0 -g1,10623:6630773,21724513 -g1,10623:6630773,21724513 -g1,10623:6303093,21724513 -(1,10623:6303093,21724513:0,0,0 -) -g1,10623:6630773,21724513 -) -g1,10625:7579210,21724513 -g1,10625:8843793,21724513 -g1,10625:11056813,21724513 -g1,10625:13269833,21724513 -g1,10625:15482853,21724513 -g1,10625:17695873,21724513 -h1,10625:19592747,21724513:0,0,0 -k1,10625:32583029,21724513:12990282 -g1,10625:32583029,21724513 -) -] -) -g1,10626:32583029,21800534 -g1,10626:6630773,21800534 -g1,10626:6630773,21800534 -g1,10626:32583029,21800534 -g1,10626:32583029,21800534 -) -h1,10626:6630773,21997142:0,0,0 -(1,10630:6630773,23238955:25952256,513147,134348 -h1,10629:6630773,23238955:983040,0,0 -k1,10629:9091095,23238955:280595 -k1,10629:14337353,23238955:280595 -k1,10629:17692242,23238955:280595 -k1,10629:18632129,23238955:280595 -k1,10629:21892646,23238955:280595 -k1,10629:22529101,23238955:280595 -k1,10629:24547711,23238955:280595 -k1,10629:25479734,23238955:280595 -k1,10629:26531032,23238955:280595 -k1,10629:28771153,23238955:280595 -k1,10629:29583245,23238955:280595 -k1,10629:30515268,23238955:280595 -k1,10629:31812326,23238955:280595 -k1,10629:32583029,23238955:0 -) -(1,10630:6630773,24080443:25952256,505283,134348 -k1,10629:8820658,24080443:230359 -k1,10629:10749055,24080443:230359 -k1,10629:11847767,24080443:230360 -k1,10629:13553341,24080443:230359 -k1,10629:16567669,24080443:230359 -k1,10629:17586426,24080443:230359 -k1,10629:19554800,24080443:230359 -k1,10629:20471321,24080443:230359 -k1,10629:21057541,24080443:230360 -k1,10629:24262579,24080443:230359 -k1,10629:26532418,24080443:230359 -k1,10629:27959464,24080443:230359 -k1,10629:32583029,24080443:0 -) -(1,10630:6630773,24921931:25952256,513147,122846 -g1,10629:9525498,24921931 -g1,10629:10256224,24921931 -(1,10629:10256224,24921931:0,452978,122846 -r1,10677:12021337,24921931:1765113,575824,122846 -k1,10629:10256224,24921931:-1765113 -) -(1,10629:10256224,24921931:1765113,452978,122846 -k1,10629:10256224,24921931:3277 -h1,10629:12018060,24921931:0,411205,112570 -) -k1,10630:32583029,24921931:20388022 -g1,10630:32583029,24921931 -) -v1,10632:6630773,25988433:0,393216,0 -(1,10645:6630773,28925966:25952256,3330749,196608 -g1,10645:6630773,28925966 -g1,10645:6630773,28925966 -g1,10645:6434165,28925966 -(1,10645:6434165,28925966:0,3330749,196608 -r1,10677:32779637,28925966:26345472,3527357,196608 -k1,10645:6434165,28925966:-26345472 -) -(1,10645:6434165,28925966:26345472,3330749,196608 -[1,10645:6630773,28925966:25952256,3134141,0 -(1,10634:6630773,26196051:25952256,404226,107478 -(1,10633:6630773,26196051:0,0,0 -g1,10633:6630773,26196051 -g1,10633:6630773,26196051 -g1,10633:6303093,26196051 -(1,10633:6303093,26196051:0,0,0 -) -g1,10633:6630773,26196051 -) -k1,10634:6630773,26196051:0 -h1,10634:9159939,26196051:0,0,0 -k1,10634:32583029,26196051:23423090 -g1,10634:32583029,26196051 -) -(1,10638:6630773,26862229:25952256,404226,76021 -(1,10636:6630773,26862229:0,0,0 -g1,10636:6630773,26862229 -g1,10636:6630773,26862229 -g1,10636:6303093,26862229 -(1,10636:6303093,26862229:0,0,0 -) -g1,10636:6630773,26862229 -) -g1,10638:7579210,26862229 -g1,10638:8843793,26862229 -h1,10638:10108376,26862229:0,0,0 -k1,10638:32583028,26862229:22474652 -g1,10638:32583028,26862229 -) -(1,10640:6630773,28183767:25952256,404226,107478 -(1,10639:6630773,28183767:0,0,0 -g1,10639:6630773,28183767 -g1,10639:6630773,28183767 -g1,10639:6303093,28183767 -(1,10639:6303093,28183767:0,0,0 -) -g1,10639:6630773,28183767 -) -k1,10640:6630773,28183767:0 -h1,10640:9159939,28183767:0,0,0 -k1,10640:32583029,28183767:23423090 -g1,10640:32583029,28183767 -) -(1,10644:6630773,28849945:25952256,404226,76021 -(1,10642:6630773,28849945:0,0,0 -g1,10642:6630773,28849945 -g1,10642:6630773,28849945 -g1,10642:6303093,28849945 -(1,10642:6303093,28849945:0,0,0 -) -g1,10642:6630773,28849945 -) -g1,10644:7579210,28849945 -g1,10644:8843793,28849945 -h1,10644:10108376,28849945:0,0,0 -k1,10644:32583028,28849945:22474652 -g1,10644:32583028,28849945 -) -] -) -g1,10645:32583029,28925966 -g1,10645:6630773,28925966 -g1,10645:6630773,28925966 -g1,10645:32583029,28925966 -g1,10645:32583029,28925966 -) -h1,10645:6630773,29122574:0,0,0 -(1,10649:6630773,30364387:25952256,513147,134348 -h1,10648:6630773,30364387:983040,0,0 -k1,10648:8276634,30364387:185064 -k1,10648:9330049,30364387:185063 -k1,10648:10990328,30364387:185064 -k1,10648:13959360,30364387:185063 -k1,10648:14500284,30364387:185064 -k1,10648:17660027,30364387:185064 -k1,10648:19822967,30364387:185063 -k1,10648:23370028,30364387:185064 -k1,10648:25514618,30364387:185064 -k1,10648:27767997,30364387:185063 -k1,10648:29144506,30364387:185064 -k1,10648:30197921,30364387:185063 -k1,10648:31931601,30364387:185064 -k1,10648:32583029,30364387:0 -) -(1,10649:6630773,31205875:25952256,513147,134348 -k1,10648:8788268,31205875:228115 -k1,10648:9372242,31205875:228114 -k1,10648:10593883,31205875:228115 -k1,10648:14183995,31205875:228115 -k1,10648:16108836,31205875:228114 -k1,10648:18626779,31205875:228115 -k1,10648:19723246,31205875:228115 -k1,10648:21055643,31205875:228115 -k1,10648:22376242,31205875:228114 -k1,10648:25299853,31205875:228115 -(1,10648:25299853,31205875:0,452978,122846 -r1,10677:27416678,31205875:2116825,575824,122846 -k1,10648:25299853,31205875:-2116825 -) -(1,10648:25299853,31205875:2116825,452978,122846 -k1,10648:25299853,31205875:3277 -h1,10648:27413401,31205875:0,411205,112570 -) -k1,10648:27818463,31205875:228115 -k1,10648:28674412,31205875:228114 -k1,10648:29921612,31205875:228115 -k1,10648:32583029,31205875:0 -) -(1,10649:6630773,32047363:25952256,513147,134348 -k1,10648:8681662,32047363:182458 -k1,10648:9732473,32047363:182459 -k1,10648:11007416,32047363:182458 -k1,10648:13885371,32047363:182459 -(1,10648:13885371,32047363:0,452978,115847 -r1,10677:15298772,32047363:1413401,568825,115847 -k1,10648:13885371,32047363:-1413401 -) -(1,10648:13885371,32047363:1413401,452978,115847 -k1,10648:13885371,32047363:3277 -h1,10648:15295495,32047363:0,411205,112570 -) -k1,10648:15481230,32047363:182458 -k1,10648:16315116,32047363:182458 -k1,10648:18521327,32047363:182459 -k1,10648:19059645,32047363:182458 -k1,10648:22216782,32047363:182458 -k1,10648:24377118,32047363:182459 -k1,10648:25218868,32047363:182458 -k1,10648:27360853,32047363:182459 -k1,10648:29611627,32047363:182458 -k1,10648:32583029,32047363:0 -) -(1,10649:6630773,32888851:25952256,513147,134348 -g1,10648:7185862,32888851 -g1,10648:9782398,32888851 -g1,10648:12322573,32888851 -g1,10648:13713247,32888851 -g1,10648:15346404,32888851 -g1,10648:17621814,32888851 -g1,10648:18587159,32888851 -g1,10648:20483115,32888851 -g1,10648:22972172,32888851 -g1,10648:24438867,32888851 -g1,10648:24993956,32888851 -k1,10649:32583029,32888851:6421877 -g1,10649:32583029,32888851 -) -v1,10651:6630773,33955353:0,393216,0 -(1,10665:6630773,39542726:25952256,5980589,196608 -g1,10665:6630773,39542726 -g1,10665:6630773,39542726 -g1,10665:6434165,39542726 -(1,10665:6434165,39542726:0,5980589,196608 -r1,10677:32779637,39542726:26345472,6177197,196608 -k1,10665:6434165,39542726:-26345472 -) -(1,10665:6434165,39542726:26345472,5980589,196608 -[1,10665:6630773,39542726:25952256,5783981,0 -(1,10653:6630773,34162971:25952256,404226,107478 -(1,10652:6630773,34162971:0,0,0 -g1,10652:6630773,34162971 -g1,10652:6630773,34162971 -g1,10652:6303093,34162971 -(1,10652:6303093,34162971:0,0,0 -) -g1,10652:6630773,34162971 -) -g1,10653:9792230,34162971 -g1,10653:10740668,34162971 -g1,10653:14218271,34162971 -g1,10653:14850563,34162971 -h1,10653:17063583,34162971:0,0,0 -k1,10653:32583029,34162971:15519446 -g1,10653:32583029,34162971 -) -(1,10654:6630773,34829149:25952256,404226,107478 -h1,10654:6630773,34829149:0,0,0 -g1,10654:9159939,34829149 -g1,10654:10108377,34829149 -k1,10654:10108377,34829149:0 -h1,10654:14850562,34829149:0,0,0 -k1,10654:32583030,34829149:17732468 -g1,10654:32583030,34829149 -) -(1,10655:6630773,35495327:25952256,404226,107478 -h1,10655:6630773,35495327:0,0,0 -k1,10655:6630773,35495327:0 -h1,10655:10424521,35495327:0,0,0 -k1,10655:32583029,35495327:22158508 -g1,10655:32583029,35495327 -) -(1,10664:6630773,36161505:25952256,410518,9436 -(1,10657:6630773,36161505:0,0,0 -g1,10657:6630773,36161505 -g1,10657:6630773,36161505 -g1,10657:6303093,36161505 -(1,10657:6303093,36161505:0,0,0 -) -g1,10657:6630773,36161505 -) -g1,10664:7579210,36161505 -g1,10664:9159939,36161505 -g1,10664:10108376,36161505 -h1,10664:10424522,36161505:0,0,0 -k1,10664:32583030,36161505:22158508 -g1,10664:32583030,36161505 -) -(1,10664:6630773,36827683:25952256,410518,50331 -h1,10664:6630773,36827683:0,0,0 -g1,10664:7579210,36827683 -g1,10664:7895356,36827683 -g1,10664:8527648,36827683 -g1,10664:10424522,36827683 -g1,10664:11689105,36827683 -h1,10664:12005251,36827683:0,0,0 -k1,10664:32583029,36827683:20577778 -g1,10664:32583029,36827683 -) -(1,10664:6630773,37493861:25952256,410518,50331 -h1,10664:6630773,37493861:0,0,0 -g1,10664:7579210,37493861 -g1,10664:7895356,37493861 -g1,10664:8527648,37493861 -g1,10664:10424522,37493861 -g1,10664:11689105,37493861 -h1,10664:12005251,37493861:0,0,0 -k1,10664:32583029,37493861:20577778 -g1,10664:32583029,37493861 -) -(1,10664:6630773,38160039:25952256,410518,50331 -h1,10664:6630773,38160039:0,0,0 -g1,10664:7579210,38160039 -g1,10664:7895356,38160039 -g1,10664:8527648,38160039 -g1,10664:10424522,38160039 -g1,10664:11689105,38160039 -h1,10664:12005251,38160039:0,0,0 -k1,10664:32583029,38160039:20577778 -g1,10664:32583029,38160039 -) -(1,10664:6630773,38826217:25952256,410518,50331 -h1,10664:6630773,38826217:0,0,0 -g1,10664:7579210,38826217 -g1,10664:7895356,38826217 -g1,10664:8527648,38826217 -g1,10664:10424522,38826217 -g1,10664:11689105,38826217 -h1,10664:12321396,38826217:0,0,0 -k1,10664:32583028,38826217:20261632 -g1,10664:32583028,38826217 -) -(1,10664:6630773,39492395:25952256,410518,50331 -h1,10664:6630773,39492395:0,0,0 -g1,10664:7579210,39492395 -g1,10664:7895356,39492395 -g1,10664:8527648,39492395 -g1,10664:10424522,39492395 -g1,10664:11689105,39492395 -h1,10664:12321396,39492395:0,0,0 -k1,10664:32583028,39492395:20261632 -g1,10664:32583028,39492395 -) -] -) -g1,10665:32583029,39542726 -g1,10665:6630773,39542726 -g1,10665:6630773,39542726 -g1,10665:32583029,39542726 -g1,10665:32583029,39542726 -) -h1,10665:6630773,39739334:0,0,0 -v1,10669:6630773,41381471:0,393216,0 -(1,10670:6630773,44464956:25952256,3476701,0 -g1,10670:6630773,44464956 -g1,10670:6303093,44464956 -r1,10677:6401397,44464956:98304,3476701,0 -g1,10670:6600626,44464956 -g1,10670:6797234,44464956 -[1,10670:6797234,44464956:25785795,3476701,0 -(1,10670:6797234,41814009:25785795,825754,196608 -(1,10669:6797234,41814009:0,825754,196608 -r1,10677:8834093,41814009:2036859,1022362,196608 -k1,10669:6797234,41814009:-2036859 -) -(1,10669:6797234,41814009:2036859,825754,196608 -) -k1,10669:9114484,41814009:280391 -k1,10669:10840702,41814009:327680 -k1,10669:12979040,41814009:280392 -k1,10669:13918723,41814009:280391 -k1,10669:16829074,41814009:280391 -k1,10669:18532252,41814009:280391 -k1,10669:19471936,41814009:280392 -k1,10669:22778124,41814009:280391 -(1,10669:22778124,41814009:0,452978,122846 -r1,10677:25598373,41814009:2820249,575824,122846 -k1,10669:22778124,41814009:-2820249 -) -(1,10669:22778124,41814009:2820249,452978,122846 -k1,10669:22778124,41814009:3277 -h1,10669:25595096,41814009:0,411205,112570 -) -k1,10669:26052434,41814009:280391 -(1,10669:26052434,41814009:0,452978,122846 -r1,10677:27817547,41814009:1765113,575824,122846 -k1,10669:26052434,41814009:-1765113 -) -(1,10669:26052434,41814009:1765113,452978,122846 -k1,10669:26052434,41814009:3277 -h1,10669:27814270,41814009:0,411205,112570 -) -k1,10669:28097938,41814009:280391 -k1,10669:29569775,41814009:280392 -(1,10669:29569775,41814009:0,452978,122846 -r1,10677:31686600,41814009:2116825,575824,122846 -k1,10669:29569775,41814009:-2116825 -) -(1,10669:29569775,41814009:2116825,452978,122846 -k1,10669:29569775,41814009:3277 -h1,10669:31683323,41814009:0,411205,112570 -) -k1,10669:31966991,41814009:280391 -k1,10669:32583029,41814009:0 -) -(1,10670:6797234,42655497:25785795,513147,126483 -k1,10669:9214155,42655497:255544 -k1,10669:10640171,42655497:255543 -k1,10669:11988200,42655497:255544 -k1,10669:12926629,42655497:255544 -k1,10669:14950989,42655497:255543 -k1,10669:16299018,42655497:255544 -k1,10669:17205990,42655497:255544 -k1,10669:19891608,42655497:255543 -k1,10669:21605983,42655497:255544 -k1,10669:23191907,42655497:255543 -k1,10669:24836814,42655497:255544 -k1,10669:25982337,42655497:255544 -k1,10669:27805501,42655497:255543 -k1,10669:29763015,42655497:255544 -k1,10669:32583029,42655497:0 -) -(1,10670:6797234,43496985:25785795,505283,126483 -k1,10669:8749955,43496985:252717 -k1,10669:9358532,43496985:252717 -k1,10669:11442325,43496985:252717 -k1,10669:12346469,43496985:252716 -k1,10669:16032617,43496985:252717 -k1,10669:17662245,43496985:252717 -k1,10669:19106407,43496985:252717 -k1,10669:22537620,43496985:252717 -k1,10669:23981782,43496985:252717 -k1,10669:25425943,43496985:252716 -k1,10669:27550368,43496985:252717 -k1,10669:29006326,43496985:252717 -k1,10669:31090119,43496985:252717 -k1,10669:32583029,43496985:0 -) -(1,10670:6797234,44338473:25785795,505283,126483 -g1,10669:8015548,44338473 -g1,10669:10057649,44338473 -g1,10669:13297749,44338473 -g1,10669:14258506,44338473 -g1,10669:15476820,44338473 -g1,10669:17507125,44338473 -g1,10669:20365150,44338473 -g1,10669:22023210,44338473 -k1,10670:32583029,44338473:6361583 -g1,10670:32583029,44338473 -) -] -g1,10670:32583029,44464956 -) -h1,10670:6630773,44464956:0,0,0 -(1,10673:6630773,45706769:25952256,505283,134348 -h1,10672:6630773,45706769:983040,0,0 -g1,10672:9406878,45706769 -g1,10672:12125966,45706769 -g1,10672:13417680,45706769 -g1,10672:16608628,45706769 -g1,10672:17940319,45706769 -g1,10672:19834309,45706769 -g1,10672:20649576,45706769 -g1,10672:23266428,45706769 -h1,10672:24063346,45706769:0,0,0 -k1,10673:32583029,45706769:8519683 -g1,10673:32583029,45706769 -) -] -(1,10677:32583029,45706769:0,0,0 -g1,10677:32583029,45706769 -) -) -] -(1,10677:6630773,47279633:25952256,0,0 -h1,10677:6630773,47279633:25952256,0,0 -) -] -(1,10677:4262630,4025873:0,0,0 -[1,10677:-473656,4025873:0,0,0 -(1,10677:-473656,-710413:0,0,0 -(1,10677:-473656,-710413:0,0,0 -g1,10677:-473656,-710413 -) -g1,10677:-473656,-710413 -) -] -) -] -!26829 -}178 -Input:1614:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1615:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1616:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1617:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1618:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!482 -{179 -[1,10737:4262630,47279633:28320399,43253760,0 -(1,10737:4262630,4025873:0,0,0 -[1,10737:-473656,4025873:0,0,0 -(1,10737:-473656,-710413:0,0,0 -(1,10737:-473656,-644877:0,0,0 -k1,10737:-473656,-644877:-65536 ) -(1,10737:-473656,4736287:0,0,0 -k1,10737:-473656,4736287:5209943 +] +[1,9905:3078558,4812305:0,0,0 +(1,9905:3078558,49800853:0,16384,2228224 +g1,9905:29030814,49800853 +g1,9905:36135244,49800853 +(1,8606:36135244,49800853:1720320,16384,2228224 +(1,8606:36135244,52029077:16384,1703936,0 +[1,8606:36135244,52029077:25952256,1703936,0 +(1,8606:36135244,51504789:25952256,1179648,0 +(1,8606:36135244,51504789:16384,1179648,0 +r1,9905:36151628,51504789:16384,1179648,0 +) +k1,8606:62087500,51504789:25935872 +g1,8606:62087500,51504789 +) +] +) +g1,8606:36675916,49800853 +(1,8606:36675916,49800853:1179648,16384,0 +r1,9905:37855564,49800853:1179648,16384,0 +) +) +k1,9905:3078556,49800853:-34777008 +) +] +g1,9905:6630773,4812305 +k1,9905:21643106,4812305:13816956 +g1,9905:23265777,4812305 +g1,9905:24088253,4812305 +g1,9905:28572226,4812305 +g1,9905:29981905,4812305 +) +) +] +[1,9905:6630773,45706769:25952256,40108032,0 +(1,9905:6630773,45706769:25952256,40108032,0 +(1,9905:6630773,45706769:0,0,0 +g1,9905:6630773,45706769 +) +[1,9905:6630773,45706769:25952256,40108032,0 +v1,9787:6630773,6254097:0,393216,0 +(1,9787:6630773,16965647:25952256,11104766,196608 +g1,9787:6630773,16965647 +g1,9787:6630773,16965647 +g1,9787:6434165,16965647 +(1,9787:6434165,16965647:0,11104766,196608 +r1,9905:32779637,16965647:26345472,11301374,196608 +k1,9787:6434165,16965647:-26345472 +) +(1,9787:6434165,16965647:26345472,11104766,196608 +[1,9787:6630773,16965647:25952256,10908158,0 +(1,9768:6630773,6481928:25952256,424439,6605 +h1,9768:6630773,6481928:0,0,0 +g1,9768:7294681,6481928 +g1,9768:8290543,6481928 +g1,9768:8954451,6481928 +g1,9768:9618359,6481928 +h1,9768:9950313,6481928:0,0,0 +k1,9768:32583029,6481928:22632716 +g1,9768:32583029,6481928 +) +(1,9769:6630773,7166783:25952256,424439,6605 +h1,9769:6630773,7166783:0,0,0 +g1,9769:7294681,7166783 +g1,9769:9618359,7166783 +k1,9769:9618359,7166783:0 +h1,9769:12605944,7166783:0,0,0 +k1,9769:32583028,7166783:19977084 +g1,9769:32583028,7166783 +) +(1,9770:6630773,7851638:25952256,407923,4954 +h1,9770:6630773,7851638:0,0,0 +g1,9770:7294681,7851638 +g1,9770:8290543,7851638 +h1,9770:8622497,7851638:0,0,0 +k1,9770:32583029,7851638:23960532 +g1,9770:32583029,7851638 +) +(1,9771:6630773,8536493:25952256,424439,6605 +h1,9771:6630773,8536493:0,0,0 +g1,9771:7294681,8536493 +g1,9771:8290543,8536493 +g1,9771:8954451,8536493 +g1,9771:9618359,8536493 +h1,9771:9950313,8536493:0,0,0 +k1,9771:32583029,8536493:22632716 +g1,9771:32583029,8536493 +) +(1,9772:6630773,9221348:25952256,424439,6605 +h1,9772:6630773,9221348:0,0,0 +g1,9772:7294681,9221348 +g1,9772:9286405,9221348 +k1,9772:9286405,9221348:0 +h1,9772:12273990,9221348:0,0,0 +k1,9772:32583030,9221348:20309040 +g1,9772:32583030,9221348 +) +(1,9773:6630773,9906203:25952256,407923,9908 +h1,9773:6630773,9906203:0,0,0 +g1,9773:7294681,9906203 +g1,9773:8290543,9906203 +h1,9773:8622497,9906203:0,0,0 +k1,9773:32583029,9906203:23960532 +g1,9773:32583029,9906203 +) +(1,9774:6630773,10591058:25952256,424439,6605 +h1,9774:6630773,10591058:0,0,0 +g1,9774:7294681,10591058 +g1,9774:8290543,10591058 +g1,9774:8954451,10591058 +g1,9774:9618359,10591058 +h1,9774:9950313,10591058:0,0,0 +k1,9774:32583029,10591058:22632716 +g1,9774:32583029,10591058 +) +(1,9775:6630773,11275913:25952256,431045,106246 +h1,9775:6630773,11275913:0,0,0 +g1,9775:7294681,11275913 +g1,9775:9618359,11275913 +k1,9775:9618359,11275913:0 +h1,9775:12605944,11275913:0,0,0 +k1,9775:32583028,11275913:19977084 +g1,9775:32583028,11275913 +) +(1,9776:6630773,11960768:25952256,398014,4954 +h1,9776:6630773,11960768:0,0,0 +g1,9776:7294681,11960768 +g1,9776:8290543,11960768 +h1,9776:8622497,11960768:0,0,0 +k1,9776:32583029,11960768:23960532 +g1,9776:32583029,11960768 +) +(1,9777:6630773,12645623:25952256,424439,6605 +h1,9777:6630773,12645623:0,0,0 +g1,9777:7294681,12645623 +g1,9777:8290543,12645623 +g1,9777:8954451,12645623 +g1,9777:9618359,12645623 +h1,9777:9950313,12645623:0,0,0 +k1,9777:32583029,12645623:22632716 +g1,9777:32583029,12645623 +) +(1,9778:6630773,13330478:25952256,431045,106246 +h1,9778:6630773,13330478:0,0,0 +g1,9778:7294681,13330478 +g1,9778:9286405,13330478 +k1,9778:9286405,13330478:0 +h1,9778:12273990,13330478:0,0,0 +k1,9778:32583030,13330478:20309040 +g1,9778:32583030,13330478 +) +(1,9779:6630773,14015333:25952256,398014,9908 +h1,9779:6630773,14015333:0,0,0 +g1,9779:7294681,14015333 +g1,9779:8290543,14015333 +h1,9779:8622497,14015333:0,0,0 +k1,9779:32583029,14015333:23960532 +g1,9779:32583029,14015333 +) +(1,9780:6630773,14700188:25952256,424439,6605 +h1,9780:6630773,14700188:0,0,0 +g1,9780:7294681,14700188 +g1,9780:8290543,14700188 +g1,9780:8954451,14700188 +g1,9780:9618359,14700188 +h1,9780:9950313,14700188:0,0,0 +k1,9780:32583029,14700188:22632716 +g1,9780:32583029,14700188 +) +(1,9781:6630773,15385043:25952256,431045,106246 +h1,9781:6630773,15385043:0,0,0 +g1,9781:7294681,15385043 +g1,9781:8622497,15385043 +g1,9781:9618359,15385043 +k1,9781:9618359,15385043:9909 +h1,9781:10956084,15385043:0,0,0 +k1,9781:32583028,15385043:21626944 +g1,9781:32583028,15385043 +) +(1,9782:6630773,16069898:25952256,424439,6605 +h1,9782:6630773,16069898:0,0,0 +h1,9782:6962727,16069898:0,0,0 +k1,9782:32583029,16069898:25620302 +g1,9782:32583029,16069898 +) +(1,9786:6630773,16885825:25952256,424439,79822 +(1,9784:6630773,16885825:0,0,0 +g1,9784:6630773,16885825 +g1,9784:6630773,16885825 +g1,9784:6303093,16885825 +(1,9784:6303093,16885825:0,0,0 +) +g1,9784:6630773,16885825 +) +g1,9786:7626635,16885825 +g1,9786:8954451,16885825 +h1,9786:9618359,16885825:0,0,0 +k1,9786:32583029,16885825:22964670 +g1,9786:32583029,16885825 +) +] +) +g1,9787:32583029,16965647 +g1,9787:6630773,16965647 +g1,9787:6630773,16965647 +g1,9787:32583029,16965647 +g1,9787:32583029,16965647 +) +h1,9787:6630773,17162255:0,0,0 +(1,9791:6630773,18027335:25952256,513147,126483 +h1,9790:6630773,18027335:983040,0,0 +k1,9790:9015275,18027335:204775 +k1,9790:12294344,18027335:204775 +k1,9790:16700631,18027335:204774 +k1,9790:17521444,18027335:204775 +k1,9790:18929460,18027335:204775 +k1,9790:21795652,18027335:204775 +k1,9790:22531923,18027335:204774 +k1,9790:23092558,18027335:204775 +k1,9790:24651307,18027335:204775 +k1,9790:27594832,18027335:204775 +k1,9790:29129987,18027335:204774 +k1,9790:30353847,18027335:204775 +k1,9790:31923737,18027335:204775 +k1,9790:32583029,18027335:0 +) +(1,9791:6630773,18892415:25952256,513147,134348 +g1,9790:7185862,18892415 +g1,9790:9536638,18892415 +g1,9790:10460695,18892415 +g1,9790:12093852,18892415 +g1,9790:12707924,18892415 +g1,9790:15667529,18892415 +g1,9790:16222618,18892415 +g1,9790:19117343,18892415 +g1,9790:22569124,18892415 +g1,9790:23716004,18892415 +g1,9790:27034091,18892415 +g1,9790:30664130,18892415 +k1,9791:32583029,18892415:1287132 +g1,9791:32583029,18892415 +) +v1,9793:6630773,19577270:0,393216,0 +(1,9800:6630773,20700850:25952256,1516796,196608 +g1,9800:6630773,20700850 +g1,9800:6630773,20700850 +g1,9800:6434165,20700850 +(1,9800:6434165,20700850:0,1516796,196608 +r1,9905:32779637,20700850:26345472,1713404,196608 +k1,9800:6434165,20700850:-26345472 +) +(1,9800:6434165,20700850:26345472,1516796,196608 +[1,9800:6630773,20700850:25952256,1320188,0 +(1,9795:6630773,19805101:25952256,424439,79822 +(1,9794:6630773,19805101:0,0,0 +g1,9794:6630773,19805101 +g1,9794:6630773,19805101 +g1,9794:6303093,19805101 +(1,9794:6303093,19805101:0,0,0 +) +g1,9794:6630773,19805101 +) +k1,9795:6630773,19805101:0 +h1,9795:9286405,19805101:0,0,0 +k1,9795:32583029,19805101:23296624 +g1,9795:32583029,19805101 +) +(1,9799:6630773,20621028:25952256,424439,79822 +(1,9797:6630773,20621028:0,0,0 +g1,9797:6630773,20621028 +g1,9797:6630773,20621028 +g1,9797:6303093,20621028 +(1,9797:6303093,20621028:0,0,0 +) +g1,9797:6630773,20621028 +) +g1,9799:7626635,20621028 +g1,9799:8954451,20621028 +h1,9799:9618359,20621028:0,0,0 +k1,9799:32583029,20621028:22964670 +g1,9799:32583029,20621028 +) +] +) +g1,9800:32583029,20700850 +g1,9800:6630773,20700850 +g1,9800:6630773,20700850 +g1,9800:32583029,20700850 +g1,9800:32583029,20700850 +) +h1,9800:6630773,20897458:0,0,0 +v1,9804:6630773,21762538:0,393216,0 +(1,9818:6630773,26363548:25952256,4994226,0 +g1,9818:6630773,26363548 +g1,9818:6237557,26363548 +r1,9905:6368629,26363548:131072,4994226,0 +g1,9818:6567858,26363548 +g1,9818:6764466,26363548 +[1,9818:6764466,26363548:25818563,4994226,0 +(1,9805:6764466,22123715:25818563,754393,260573 +(1,9804:6764466,22123715:0,754393,260573 +r1,9905:8010564,22123715:1246098,1014966,260573 +k1,9804:6764466,22123715:-1246098 +) +(1,9804:6764466,22123715:1246098,754393,260573 +) +k1,9804:8191852,22123715:181288 +k1,9804:8519532,22123715:327680 +k1,9804:9170713,22123715:181288 +k1,9804:9883499,22123715:181289 +k1,9804:13274085,22123715:181288 +k1,9804:14106801,22123715:181288 +k1,9804:15701701,22123715:181288 +k1,9804:17167495,22123715:181288 +k1,9804:17704643,22123715:181288 +k1,9804:18879458,22123715:181289 +k1,9804:19743631,22123715:181288 +k1,9804:21902796,22123715:181288 +k1,9804:22743376,22123715:181288 +k1,9804:24937930,22123715:181288 +k1,9804:26539383,22123715:181288 +k1,9804:27252169,22123715:181289 +k1,9804:27789317,22123715:181288 +k1,9804:29510701,22123715:181288 +k1,9804:32583029,22123715:0 +) +(1,9805:6764466,22988795:25818563,505283,134348 +g1,9804:7615123,22988795 +(1,9804:7615123,22988795:0,459977,115847 +r1,9905:9380236,22988795:1765113,575824,115847 +k1,9804:7615123,22988795:-1765113 +) +(1,9804:7615123,22988795:1765113,459977,115847 +k1,9804:7615123,22988795:3277 +h1,9804:9376959,22988795:0,411205,112570 +) +g1,9804:9753135,22988795 +g1,9804:11236870,22988795 +g1,9804:13896976,22988795 +g1,9804:14905575,22988795 +g1,9804:16885417,22988795 +g1,9804:18156815,22988795 +g1,9804:20031144,22988795 +g1,9804:21249458,22988795 +g1,9804:24965349,22988795 +g1,9804:25780616,22988795 +g1,9804:26998930,22988795 +g1,9804:28613081,22988795 +k1,9805:32583029,22988795:2219481 +g1,9805:32583029,22988795 +) +v1,9807:6764466,23673650:0,393216,0 +(1,9816:6764466,26166940:25818563,2886506,196608 +g1,9816:6764466,26166940 +g1,9816:6764466,26166940 +g1,9816:6567858,26166940 +(1,9816:6567858,26166940:0,2886506,196608 +r1,9905:32779637,26166940:26211779,3083114,196608 +k1,9816:6567857,26166940:-26211780 +) +(1,9816:6567858,26166940:26211779,2886506,196608 +[1,9816:6764466,26166940:25818563,2689898,0 +(1,9809:6764466,23901481:25818563,424439,9908 +(1,9808:6764466,23901481:0,0,0 +g1,9808:6764466,23901481 +g1,9808:6764466,23901481 +g1,9808:6436786,23901481 +(1,9808:6436786,23901481:0,0,0 +) +g1,9808:6764466,23901481 +) +g1,9809:7428374,23901481 +g1,9809:8424236,23901481 +h1,9809:8756190,23901481:0,0,0 +k1,9809:32583030,23901481:23826840 +g1,9809:32583030,23901481 +) +(1,9810:6764466,24586336:25818563,431045,79822 +h1,9810:6764466,24586336:0,0,0 +g1,9810:8092282,24586336 +g1,9810:9088144,24586336 +g1,9810:10084006,24586336 +g1,9810:13735500,24586336 +g1,9810:14399408,24586336 +g1,9810:15395270,24586336 +g1,9810:16059178,24586336 +g1,9810:16723086,24586336 +h1,9810:17055040,24586336:0,0,0 +k1,9810:32583029,24586336:15527989 +g1,9810:32583029,24586336 +) +(1,9811:6764466,25271191:25818563,424439,6605 +h1,9811:6764466,25271191:0,0,0 +h1,9811:7096420,25271191:0,0,0 +k1,9811:32583028,25271191:25486608 +g1,9811:32583028,25271191 +) +(1,9815:6764466,26087118:25818563,424439,79822 +(1,9813:6764466,26087118:0,0,0 +g1,9813:6764466,26087118 +g1,9813:6764466,26087118 +g1,9813:6436786,26087118 +(1,9813:6436786,26087118:0,0,0 +) +g1,9813:6764466,26087118 +) +g1,9815:7760328,26087118 +g1,9815:9088144,26087118 +h1,9815:9420098,26087118:0,0,0 +k1,9815:32583030,26087118:23162932 +g1,9815:32583030,26087118 +) +] +) +g1,9816:32583029,26166940 +g1,9816:6764466,26166940 +g1,9816:6764466,26166940 +g1,9816:32583029,26166940 +g1,9816:32583029,26166940 +) +h1,9816:6764466,26363548:0,0,0 +] +g1,9818:32583029,26363548 +) +h1,9818:6630773,26363548:0,0,0 +v1,9821:6630773,27048403:0,393216,0 +(1,9833:6630773,31596258:25952256,4941071,196608 +g1,9833:6630773,31596258 +g1,9833:6630773,31596258 +g1,9833:6434165,31596258 +(1,9833:6434165,31596258:0,4941071,196608 +r1,9905:32779637,31596258:26345472,5137679,196608 +k1,9833:6434165,31596258:-26345472 +) +(1,9833:6434165,31596258:26345472,4941071,196608 +[1,9833:6630773,31596258:25952256,4744463,0 +(1,9823:6630773,27276234:25952256,424439,86428 +(1,9822:6630773,27276234:0,0,0 +g1,9822:6630773,27276234 +g1,9822:6630773,27276234 +g1,9822:6303093,27276234 +(1,9822:6303093,27276234:0,0,0 +) +g1,9822:6630773,27276234 +) +g1,9823:7294681,27276234 +g1,9823:8290543,27276234 +g1,9823:9950313,27276234 +g1,9823:10946175,27276234 +g1,9823:11942037,27276234 +g1,9823:12937899,27276234 +h1,9823:13601807,27276234:0,0,0 +k1,9823:32583029,27276234:18981222 +g1,9823:32583029,27276234 +) +(1,9824:6630773,27961089:25952256,431045,106246 +h1,9824:6630773,27961089:0,0,0 +g1,9824:8622497,27961089 +g1,9824:9618359,27961089 +g1,9824:10614221,27961089 +g1,9824:14929623,27961089 +g1,9824:15593531,27961089 +g1,9824:17585255,27961089 +g1,9824:18581117,27961089 +k1,9824:18581117,27961089:0 +h1,9824:20904795,27961089:0,0,0 +k1,9824:32583029,27961089:11678234 +g1,9824:32583029,27961089 +) +(1,9832:6630773,28777016:25952256,424439,79822 +(1,9826:6630773,28777016:0,0,0 +g1,9826:6630773,28777016 +g1,9826:6630773,28777016 +g1,9826:6303093,28777016 +(1,9826:6303093,28777016:0,0,0 +) +g1,9826:6630773,28777016 +) +g1,9832:7626635,28777016 +g1,9832:8954451,28777016 +h1,9832:9286405,28777016:0,0,0 +k1,9832:32583029,28777016:23296624 +g1,9832:32583029,28777016 +) +(1,9832:6630773,29461871:25952256,424439,79822 +h1,9832:6630773,29461871:0,0,0 +g1,9832:7626635,29461871 +g1,9832:8954451,29461871 +h1,9832:9286405,29461871:0,0,0 +k1,9832:32583029,29461871:23296624 +g1,9832:32583029,29461871 +) +(1,9832:6630773,30146726:25952256,424439,79822 +h1,9832:6630773,30146726:0,0,0 +g1,9832:7626635,30146726 +g1,9832:8954451,30146726 +h1,9832:9286405,30146726:0,0,0 +k1,9832:32583029,30146726:23296624 +g1,9832:32583029,30146726 +) +(1,9832:6630773,30831581:25952256,424439,79822 +h1,9832:6630773,30831581:0,0,0 +g1,9832:7626635,30831581 +g1,9832:8954451,30831581 +h1,9832:9618359,30831581:0,0,0 +k1,9832:32583029,30831581:22964670 +g1,9832:32583029,30831581 +) +(1,9832:6630773,31516436:25952256,424439,79822 +h1,9832:6630773,31516436:0,0,0 +g1,9832:7626635,31516436 +g1,9832:8954451,31516436 +h1,9832:9618359,31516436:0,0,0 +k1,9832:32583029,31516436:22964670 +g1,9832:32583029,31516436 +) +] +) +g1,9833:32583029,31596258 +g1,9833:6630773,31596258 +g1,9833:6630773,31596258 +g1,9833:32583029,31596258 +g1,9833:32583029,31596258 +) +h1,9833:6630773,31792866:0,0,0 +(1,9837:6630773,32657946:25952256,505283,115847 +h1,9836:6630773,32657946:983040,0,0 +g1,9836:8300630,32657946 +g1,9836:9599553,32657946 +g1,9836:10450210,32657946 +(1,9836:10450210,32657946:0,459977,115847 +r1,9905:11511899,32657946:1061689,575824,115847 +k1,9836:10450210,32657946:-1061689 +) +(1,9836:10450210,32657946:1061689,459977,115847 +k1,9836:10450210,32657946:3277 +h1,9836:11508622,32657946:0,411205,112570 +) +g1,9836:11711128,32657946 +g1,9836:13403267,32657946 +g1,9836:14668767,32657946 +g1,9836:16878641,32657946 +g1,9836:17433730,32657946 +k1,9837:32583029,32657946:13295285 +g1,9837:32583029,32657946 +) +v1,9839:6630773,33342801:0,393216,0 +(1,9847:6630773,35086277:25952256,2136692,196608 +g1,9847:6630773,35086277 +g1,9847:6630773,35086277 +g1,9847:6434165,35086277 +(1,9847:6434165,35086277:0,2136692,196608 +r1,9905:32779637,35086277:26345472,2333300,196608 +k1,9847:6434165,35086277:-26345472 +) +(1,9847:6434165,35086277:26345472,2136692,196608 +[1,9847:6630773,35086277:25952256,1940084,0 +(1,9841:6630773,33577238:25952256,431045,79822 +(1,9840:6630773,33577238:0,0,0 +g1,9840:6630773,33577238 +g1,9840:6630773,33577238 +g1,9840:6303093,33577238 +(1,9840:6303093,33577238:0,0,0 +) +g1,9840:6630773,33577238 +) +g1,9841:7294681,33577238 +g1,9841:8290543,33577238 +g1,9841:10282267,33577238 +g1,9841:11278129,33577238 +g1,9841:12273991,33577238 +h1,9841:13933761,33577238:0,0,0 +k1,9841:32583029,33577238:18649268 +g1,9841:32583029,33577238 +) +(1,9842:6630773,34262093:25952256,424439,6605 +h1,9842:6630773,34262093:0,0,0 +h1,9842:6962727,34262093:0,0,0 +k1,9842:32583029,34262093:25620302 +g1,9842:32583029,34262093 +) +(1,9846:6630773,35078020:25952256,398014,8257 +(1,9844:6630773,35078020:0,0,0 +g1,9844:6630773,35078020 +g1,9844:6630773,35078020 +g1,9844:6303093,35078020 +(1,9844:6303093,35078020:0,0,0 +) +g1,9844:6630773,35078020 +) +g1,9846:7626635,35078020 +h1,9846:8954451,35078020:0,0,0 +k1,9846:32583029,35078020:23628578 +g1,9846:32583029,35078020 +) +] +) +g1,9847:32583029,35086277 +g1,9847:6630773,35086277 +g1,9847:6630773,35086277 +g1,9847:32583029,35086277 +g1,9847:32583029,35086277 +) +h1,9847:6630773,35282885:0,0,0 +(1,9851:6630773,36147965:25952256,505283,134348 +h1,9850:6630773,36147965:983040,0,0 +k1,9850:8757744,36147965:190382 +k1,9850:10478392,36147965:190382 +k1,9850:11320202,36147965:190382 +k1,9850:13517296,36147965:190382 +k1,9850:15718323,36147965:190382 +k1,9850:16560133,36147965:190382 +k1,9850:17106375,36147965:190382 +k1,9850:19808097,36147965:190382 +k1,9850:22008468,36147965:190382 +k1,9850:23217935,36147965:190382 +k1,9850:24823239,36147965:190382 +k1,9850:25738449,36147965:190382 +k1,9850:27213337,36147965:190382 +k1,9850:28783907,36147965:190382 +k1,9850:29965849,36147965:190382 +k1,9850:31222502,36147965:190382 +k1,9850:32583029,36147965:0 +) +(1,9851:6630773,37013045:25952256,513147,134348 +k1,9850:7308660,37013045:200130 +k1,9850:8377143,37013045:200131 +k1,9850:10159312,37013045:200130 +k1,9850:10972205,37013045:200131 +k1,9850:12623957,37013045:200130 +k1,9850:15541211,37013045:200131 +k1,9850:16760426,37013045:200130 +k1,9850:18640900,37013045:200131 +k1,9850:19500322,37013045:200130 +k1,9850:20903693,37013045:200130 +k1,9850:23237021,37013045:200131 +k1,9850:24305503,37013045:200130 +k1,9850:25609916,37013045:200131 +k1,9850:27795132,37013045:200130 +k1,9850:29325644,37013045:200131 +k1,9850:30544859,37013045:200130 +k1,9850:32583029,37013045:0 +) +(1,9851:6630773,37878125:25952256,505283,134348 +g1,9850:8510345,37878125 +g1,9850:11454222,37878125 +g1,9850:14180519,37878125 +g1,9850:16391703,37878125 +g1,9850:17336076,37878125 +g1,9850:18186733,37878125 +g1,9850:19584616,37878125 +g1,9850:21114226,37878125 +g1,9850:22332540,37878125 +g1,9850:24509646,37878125 +g1,9850:26617283,37878125 +g1,9850:27432550,37878125 +k1,9851:32583029,37878125:2963543 +g1,9851:32583029,37878125 +) +(1,9853:6630773,38743205:25952256,505283,134348 +h1,9852:6630773,38743205:983040,0,0 +k1,9852:9566735,38743205:178207 +k1,9852:10360981,38743205:178208 +k1,9852:11558273,38743205:178207 +k1,9852:14728200,38743205:178208 +k1,9852:16761731,38743205:178207 +k1,9852:17959023,38743205:178207 +k1,9852:19633418,38743205:178208 +k1,9852:22225971,38743205:178207 +k1,9852:24646820,38743205:178207 +k1,9852:27383554,38743205:178208 +k1,9852:28580846,38743205:178207 +k1,9852:30769699,38743205:178208 +k1,9852:31563944,38743205:178207 +k1,9852:32583029,38743205:0 +) +(1,9853:6630773,39608285:25952256,513147,134348 +k1,9852:8916762,39608285:134442 +k1,9852:10242649,39608285:134442 +k1,9852:13763993,39608285:134443 +k1,9852:16882945,39608285:134442 +k1,9852:17548884,39608285:134442 +k1,9852:18334754,39608285:134442 +k1,9852:19943756,39608285:134442 +k1,9852:22636725,39608285:134443 +k1,9852:23127027,39608285:134442 +k1,9852:26201414,39608285:134442 +k1,9852:26995148,39608285:134442 +k1,9852:29378787,39608285:134443 +k1,9852:30704674,39608285:134442 +k1,9852:31490544,39608285:134442 +k1,9852:32583029,39608285:0 +) +(1,9853:6630773,40473365:25952256,505283,126483 +k1,9852:7866501,40473365:216643 +k1,9852:11297684,40473365:216642 +k1,9852:14260941,40473365:216643 +(1,9852:14260941,40473365:0,452978,115847 +r1,9905:15322631,40473365:1061690,568825,115847 +k1,9852:14260941,40473365:-1061690 +) +(1,9852:14260941,40473365:1061690,452978,115847 +g1,9852:14967642,40473365 +h1,9852:15319354,40473365:0,411205,112570 +) +k1,9852:15539274,40473365:216643 +k1,9852:16407344,40473365:216642 +k1,9852:18654948,40473365:216643 +k1,9852:19890676,40473365:216643 +k1,9852:22117963,40473365:216642 +k1,9852:22950644,40473365:216643 +k1,9852:23523146,40473365:216642 +k1,9852:25717666,40473365:216643 +k1,9852:26617194,40473365:216643 +k1,9852:28001032,40473365:216642 +k1,9852:29598519,40473365:216643 +k1,9852:32583029,40473365:0 +) +(1,9853:6630773,41338445:25952256,505283,134348 +k1,9852:8943811,41338445:267004 +k1,9852:9668913,41338445:267005 +k1,9852:12565877,41338445:267004 +k1,9852:13484310,41338445:267005 +k1,9852:18603600,41338445:267004 +k1,9852:20345165,41338445:267005 +k1,9852:23170695,41338445:267004 +k1,9852:25087896,41338445:267004 +k1,9852:26797348,41338445:267005 +k1,9852:28221062,41338445:267004 +k1,9852:29481593,41338445:267005 +k1,9852:30431482,41338445:267004 +k1,9852:32583029,41338445:0 +) +(1,9853:6630773,42203525:25952256,513147,126483 +k1,9852:7526397,42203525:267789 +k1,9852:8813272,42203525:267790 +k1,9852:11742478,42203525:267789 +k1,9852:14052370,42203525:267790 +k1,9852:17189325,42203525:267789 +k1,9852:18116407,42203525:267790 +k1,9852:20692374,42203525:267789 +(1,9852:20692374,42203525:0,414482,115847 +r1,9905:21050640,42203525:358266,530329,115847 +k1,9852:20692374,42203525:-358266 +) +(1,9852:20692374,42203525:358266,414482,115847 +k1,9852:20692374,42203525:3277 +h1,9852:21047363,42203525:0,411205,112570 +) +k1,9852:21318430,42203525:267790 +k1,9852:22777664,42203525:267789 +(1,9852:22777664,42203525:0,452978,115847 +r1,9905:23135930,42203525:358266,568825,115847 +k1,9852:22777664,42203525:-358266 +) +(1,9852:22777664,42203525:358266,452978,115847 +k1,9852:22777664,42203525:3277 +h1,9852:23132653,42203525:0,411205,112570 +) +k1,9852:23403720,42203525:267790 +k1,9852:24663069,42203525:267789 +k1,9852:27729902,42203525:267790 +k1,9852:32224763,42203525:267789 +(1,9852:32224763,42203525:0,414482,115847 +r1,9905:32583029,42203525:358266,530329,115847 +k1,9852:32224763,42203525:-358266 +) +(1,9852:32224763,42203525:358266,414482,115847 +k1,9852:32224763,42203525:3277 +h1,9852:32579752,42203525:0,411205,112570 +) +k1,9852:32583029,42203525:0 +) +(1,9853:6630773,43068605:25952256,505283,134348 +g1,9852:9902985,43068605 +g1,9852:11121299,43068605 +g1,9852:13029052,43068605 +g1,9852:14419726,43068605 +(1,9852:14419726,43068605:0,452978,115847 +r1,9905:14777992,43068605:358266,568825,115847 +k1,9852:14419726,43068605:-358266 +) +(1,9852:14419726,43068605:358266,452978,115847 +k1,9852:14419726,43068605:3277 +h1,9852:14774715,43068605:0,411205,112570 +) +g1,9852:14977221,43068605 +g1,9852:16689676,43068605 +g1,9852:17540333,43068605 +g1,9852:19356991,43068605 +g1,9852:20575305,43068605 +g1,9852:25398099,43068605 +g1,9852:28805971,43068605 +k1,9853:32583029,43068605:1923044 +g1,9853:32583029,43068605 +) +v1,9855:6630773,43753460:0,393216,0 +(1,9905:6630773,45430823:25952256,2070579,196608 +g1,9905:6630773,45430823 +g1,9905:6630773,45430823 +g1,9905:6434165,45430823 +(1,9905:6434165,45430823:0,2070579,196608 +r1,9905:32779637,45430823:26345472,2267187,196608 +k1,9905:6434165,45430823:-26345472 +) +(1,9905:6434165,45430823:26345472,2070579,196608 +[1,9905:6630773,45430823:25952256,1873971,0 +(1,9857:6630773,43981291:25952256,424439,106246 +(1,9856:6630773,43981291:0,0,0 +g1,9856:6630773,43981291 +g1,9856:6630773,43981291 +g1,9856:6303093,43981291 +(1,9856:6303093,43981291:0,0,0 +) +g1,9856:6630773,43981291 +) +g1,9857:7294681,43981291 +g1,9857:8290543,43981291 +g1,9857:11610083,43981291 +g1,9857:12273991,43981291 +g1,9857:13269853,43981291 +g1,9857:15261577,43981291 +k1,9857:15261577,43981291:24773 +h1,9857:17278074,43981291:0,0,0 +k1,9857:32583029,43981291:15304955 +g1,9857:32583029,43981291 +) +(1,9858:6630773,44666146:25952256,431045,112852 +h1,9858:6630773,44666146:0,0,0 +g1,9858:8622497,44666146 +g1,9858:9618359,44666146 +g1,9858:14597668,44666146 +g1,9858:15261576,44666146 +g1,9858:16589392,44666146 +h1,9858:16921346,44666146:0,0,0 +k1,9858:32583029,44666146:15661683 +g1,9858:32583029,44666146 +) +(1,9859:6630773,45351001:25952256,424439,79822 +h1,9859:6630773,45351001:0,0,0 +g1,9859:6962727,45351001 +g1,9859:7294681,45351001 +g1,9859:8954451,45351001 +g1,9859:9950313,45351001 +h1,9859:11942037,45351001:0,0,0 +k1,9859:32583029,45351001:20640992 +g1,9859:32583029,45351001 +) +] +) +g1,9905:32583029,45430823 +g1,9905:6630773,45430823 +g1,9905:6630773,45430823 +g1,9905:32583029,45430823 +g1,9905:32583029,45430823 +) +] +(1,9905:32583029,45706769:0,0,0 +g1,9905:32583029,45706769 +) +) +] +(1,9905:6630773,47279633:25952256,0,0 +h1,9905:6630773,47279633:25952256,0,0 +) +] +(1,9905:4262630,4025873:0,0,0 +[1,9905:-473656,4025873:0,0,0 +(1,9905:-473656,-710413:0,0,0 +(1,9905:-473656,-710413:0,0,0 +g1,9905:-473656,-710413 +) +g1,9905:-473656,-710413 +) +] +) +] +!26074 +}157 +Input:1432:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1433:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1434:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1435:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1436:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1437:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1438:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1439:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1440:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1441:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1442:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1443:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1444:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1445:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1446:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1447:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1448:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1449:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1450:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1451:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1892 +{158 +[1,9941:4262630,47279633:28320399,43253760,0 +(1,9941:4262630,4025873:0,0,0 +[1,9941:-473656,4025873:0,0,0 +(1,9941:-473656,-710413:0,0,0 +(1,9941:-473656,-644877:0,0,0 +k1,9941:-473656,-644877:-65536 +) +(1,9941:-473656,4736287:0,0,0 +k1,9941:-473656,4736287:5209943 ) -g1,10737:-473656,-710413 +g1,9941:-473656,-710413 ) ] ) -[1,10737:6630773,47279633:25952256,43253760,0 -[1,10737:6630773,4812305:25952256,786432,0 -(1,10737:6630773,4812305:25952256,505283,134348 -(1,10737:6630773,4812305:25952256,505283,134348 -g1,10737:3078558,4812305 -[1,10737:3078558,4812305:0,0,0 -(1,10737:3078558,2439708:0,1703936,0 -k1,10737:1358238,2439708:-1720320 -(1,8393:1358238,2439708:1720320,1703936,0 -(1,8393:1358238,2439708:1179648,16384,0 -r1,10737:2537886,2439708:1179648,16384,0 +[1,9941:6630773,47279633:25952256,43253760,0 +[1,9941:6630773,4812305:25952256,786432,0 +(1,9941:6630773,4812305:25952256,485622,11795 +(1,9941:6630773,4812305:25952256,485622,11795 +g1,9941:3078558,4812305 +[1,9941:3078558,4812305:0,0,0 +(1,9941:3078558,2439708:0,1703936,0 +k1,9941:1358238,2439708:-1720320 +(1,8606:1358238,2439708:1720320,1703936,0 +(1,8606:1358238,2439708:1179648,16384,0 +r1,9941:2537886,2439708:1179648,16384,0 ) -g1,8393:3062174,2439708 -(1,8393:3062174,2439708:16384,1703936,0 -[1,8393:3062174,2439708:25952256,1703936,0 -(1,8393:3062174,1915420:25952256,1179648,0 -(1,8393:3062174,1915420:16384,1179648,0 -r1,10737:3078558,1915420:16384,1179648,0 +g1,8606:3062174,2439708 +(1,8606:3062174,2439708:16384,1703936,0 +[1,8606:3062174,2439708:25952256,1703936,0 +(1,8606:3062174,1915420:25952256,1179648,0 +(1,8606:3062174,1915420:16384,1179648,0 +r1,9941:3078558,1915420:16384,1179648,0 ) -k1,8393:29014430,1915420:25935872 -g1,8393:29014430,1915420 +k1,8606:29014430,1915420:25935872 +g1,8606:29014430,1915420 ) ] ) ) ) ] -[1,10737:3078558,4812305:0,0,0 -(1,10737:3078558,2439708:0,1703936,0 -g1,10737:29030814,2439708 -g1,10737:36135244,2439708 -(1,8393:36135244,2439708:1720320,1703936,0 -(1,8393:36135244,2439708:16384,1703936,0 -[1,8393:36135244,2439708:25952256,1703936,0 -(1,8393:36135244,1915420:25952256,1179648,0 -(1,8393:36135244,1915420:16384,1179648,0 -r1,10737:36151628,1915420:16384,1179648,0 +[1,9941:3078558,4812305:0,0,0 +(1,9941:3078558,2439708:0,1703936,0 +g1,9941:29030814,2439708 +g1,9941:36135244,2439708 +(1,8606:36135244,2439708:1720320,1703936,0 +(1,8606:36135244,2439708:16384,1703936,0 +[1,8606:36135244,2439708:25952256,1703936,0 +(1,8606:36135244,1915420:25952256,1179648,0 +(1,8606:36135244,1915420:16384,1179648,0 +r1,9941:36151628,1915420:16384,1179648,0 ) -k1,8393:62087500,1915420:25935872 -g1,8393:62087500,1915420 +k1,8606:62087500,1915420:25935872 +g1,8606:62087500,1915420 ) ] ) -g1,8393:36675916,2439708 -(1,8393:36675916,2439708:1179648,16384,0 -r1,10737:37855564,2439708:1179648,16384,0 +g1,8606:36675916,2439708 +(1,8606:36675916,2439708:1179648,16384,0 +r1,9941:37855564,2439708:1179648,16384,0 ) ) -k1,10737:3078556,2439708:-34777008 +k1,9941:3078556,2439708:-34777008 ) ] -[1,10737:3078558,4812305:0,0,0 -(1,10737:3078558,49800853:0,16384,2228224 -k1,10737:1358238,49800853:-1720320 -(1,8393:1358238,49800853:1720320,16384,2228224 -(1,8393:1358238,49800853:1179648,16384,0 -r1,10737:2537886,49800853:1179648,16384,0 +[1,9941:3078558,4812305:0,0,0 +(1,9941:3078558,49800853:0,16384,2228224 +k1,9941:1358238,49800853:-1720320 +(1,8606:1358238,49800853:1720320,16384,2228224 +(1,8606:1358238,49800853:1179648,16384,0 +r1,9941:2537886,49800853:1179648,16384,0 ) -g1,8393:3062174,49800853 -(1,8393:3062174,52029077:16384,1703936,0 -[1,8393:3062174,52029077:25952256,1703936,0 -(1,8393:3062174,51504789:25952256,1179648,0 -(1,8393:3062174,51504789:16384,1179648,0 -r1,10737:3078558,51504789:16384,1179648,0 +g1,8606:3062174,49800853 +(1,8606:3062174,52029077:16384,1703936,0 +[1,8606:3062174,52029077:25952256,1703936,0 +(1,8606:3062174,51504789:25952256,1179648,0 +(1,8606:3062174,51504789:16384,1179648,0 +r1,9941:3078558,51504789:16384,1179648,0 ) -k1,8393:29014430,51504789:25935872 -g1,8393:29014430,51504789 +k1,8606:29014430,51504789:25935872 +g1,8606:29014430,51504789 ) ] ) ) ) ] -[1,10737:3078558,4812305:0,0,0 -(1,10737:3078558,49800853:0,16384,2228224 -g1,10737:29030814,49800853 -g1,10737:36135244,49800853 -(1,8393:36135244,49800853:1720320,16384,2228224 -(1,8393:36135244,52029077:16384,1703936,0 -[1,8393:36135244,52029077:25952256,1703936,0 -(1,8393:36135244,51504789:25952256,1179648,0 -(1,8393:36135244,51504789:16384,1179648,0 -r1,10737:36151628,51504789:16384,1179648,0 +[1,9941:3078558,4812305:0,0,0 +(1,9941:3078558,49800853:0,16384,2228224 +g1,9941:29030814,49800853 +g1,9941:36135244,49800853 +(1,8606:36135244,49800853:1720320,16384,2228224 +(1,8606:36135244,52029077:16384,1703936,0 +[1,8606:36135244,52029077:25952256,1703936,0 +(1,8606:36135244,51504789:25952256,1179648,0 +(1,8606:36135244,51504789:16384,1179648,0 +r1,9941:36151628,51504789:16384,1179648,0 ) -k1,8393:62087500,51504789:25935872 -g1,8393:62087500,51504789 +k1,8606:62087500,51504789:25935872 +g1,8606:62087500,51504789 ) ] ) -g1,8393:36675916,49800853 -(1,8393:36675916,49800853:1179648,16384,0 -r1,10737:37855564,49800853:1179648,16384,0 -) +g1,8606:36675916,49800853 +(1,8606:36675916,49800853:1179648,16384,0 +r1,9941:37855564,49800853:1179648,16384,0 ) -k1,10737:3078556,49800853:-34777008 +) +k1,9941:3078556,49800853:-34777008 +) +] +g1,9941:6630773,4812305 +g1,9941:6630773,4812305 +g1,9941:9524187,4812305 +k1,9941:31387651,4812305:21863464 +) +) +] +[1,9941:6630773,45706769:25952256,40108032,0 +(1,9941:6630773,45706769:25952256,40108032,0 +(1,9941:6630773,45706769:0,0,0 +g1,9941:6630773,45706769 +) +[1,9941:6630773,45706769:25952256,40108032,0 +v1,9905:6630773,6254097:0,393216,0 +(1,9905:6630773,24862773:25952256,19001892,196608 +g1,9905:6630773,24862773 +g1,9905:6630773,24862773 +g1,9905:6434165,24862773 +(1,9905:6434165,24862773:0,19001892,196608 +r1,9941:32779637,24862773:26345472,19198500,196608 +k1,9905:6434165,24862773:-26345472 +) +(1,9905:6434165,24862773:26345472,19001892,196608 +[1,9905:6630773,24862773:25952256,18805284,0 +(1,9860:6630773,6481928:25952256,424439,106246 +h1,9860:6630773,6481928:0,0,0 +g1,9860:6962727,6481928 +g1,9860:7294681,6481928 +k1,9860:7294681,6481928:0 +h1,9860:9950313,6481928:0,0,0 +k1,9860:32583029,6481928:22632716 +g1,9860:32583029,6481928 +) +(1,9861:6630773,7166783:25952256,424439,79822 +h1,9861:6630773,7166783:0,0,0 +h1,9861:6962727,7166783:0,0,0 +k1,9861:32583029,7166783:25620302 +g1,9861:32583029,7166783 +) +(1,9869:6630773,7982710:25952256,424439,79822 +(1,9863:6630773,7982710:0,0,0 +g1,9863:6630773,7982710 +g1,9863:6630773,7982710 +g1,9863:6303093,7982710 +(1,9863:6303093,7982710:0,0,0 +) +g1,9863:6630773,7982710 +) +g1,9869:7626635,7982710 +g1,9869:8954451,7982710 +h1,9869:9286405,7982710:0,0,0 +k1,9869:32583029,7982710:23296624 +g1,9869:32583029,7982710 +) +(1,9869:6630773,8667565:25952256,424439,79822 +h1,9869:6630773,8667565:0,0,0 +g1,9869:7626635,8667565 +g1,9869:8954451,8667565 +g1,9869:9286405,8667565 +g1,9869:9950313,8667565 +h1,9869:10614221,8667565:0,0,0 +k1,9869:32583029,8667565:21968808 +g1,9869:32583029,8667565 +) +(1,9869:6630773,9352420:25952256,424439,79822 +h1,9869:6630773,9352420:0,0,0 +g1,9869:7626635,9352420 +g1,9869:8954451,9352420 +g1,9869:9286405,9352420 +g1,9869:9950313,9352420 +g1,9869:10946175,9352420 +g1,9869:11278129,9352420 +h1,9869:11610083,9352420:0,0,0 +k1,9869:32583029,9352420:20972946 +g1,9869:32583029,9352420 +) +(1,9869:6630773,10037275:25952256,424439,79822 +h1,9869:6630773,10037275:0,0,0 +g1,9869:7626635,10037275 +g1,9869:8954451,10037275 +g1,9869:9286405,10037275 +g1,9869:9950313,10037275 +g1,9869:10946175,10037275 +g1,9869:11278129,10037275 +g1,9869:11942037,10037275 +h1,9869:12605945,10037275:0,0,0 +k1,9869:32583029,10037275:19977084 +g1,9869:32583029,10037275 +) +(1,9869:6630773,10722130:25952256,424439,79822 +h1,9869:6630773,10722130:0,0,0 +g1,9869:7626635,10722130 +g1,9869:8954451,10722130 +g1,9869:9286405,10722130 +g1,9869:9950313,10722130 +g1,9869:10946175,10722130 +g1,9869:11278129,10722130 +g1,9869:11942037,10722130 +g1,9869:12937899,10722130 +h1,9869:13601807,10722130:0,0,0 +k1,9869:32583029,10722130:18981222 +g1,9869:32583029,10722130 +) +(1,9871:6630773,11538057:25952256,424439,6605 +(1,9870:6630773,11538057:0,0,0 +g1,9870:6630773,11538057 +g1,9870:6630773,11538057 +g1,9870:6303093,11538057 +(1,9870:6303093,11538057:0,0,0 +) +g1,9870:6630773,11538057 +) +h1,9871:6962727,11538057:0,0,0 +k1,9871:32583029,11538057:25620302 +g1,9871:32583029,11538057 +) +(1,9875:6630773,12353984:25952256,424439,79822 +(1,9873:6630773,12353984:0,0,0 +g1,9873:6630773,12353984 +g1,9873:6630773,12353984 +g1,9873:6303093,12353984 +(1,9873:6303093,12353984:0,0,0 +) +g1,9873:6630773,12353984 +) +g1,9875:7626635,12353984 +g1,9875:8954451,12353984 +g1,9875:9286405,12353984 +g1,9875:9950313,12353984 +g1,9875:10946175,12353984 +g1,9875:11278129,12353984 +g1,9875:11942037,12353984 +g1,9875:12937899,12353984 +h1,9875:13601807,12353984:0,0,0 +k1,9875:32583029,12353984:18981222 +g1,9875:32583029,12353984 +) +(1,9877:6630773,13169911:25952256,431045,112852 +(1,9876:6630773,13169911:0,0,0 +g1,9876:6630773,13169911 +g1,9876:6630773,13169911 +g1,9876:6303093,13169911 +(1,9876:6303093,13169911:0,0,0 +) +g1,9876:6630773,13169911 +) +g1,9877:7294681,13169911 +g1,9877:8954451,13169911 +g1,9877:11278129,13169911 +g1,9877:12273991,13169911 +g1,9877:13269853,13169911 +g1,9877:15261577,13169911 +g1,9877:18249162,13169911 +g1,9877:18913070,13169911 +g1,9877:20572840,13169911 +g1,9877:22896518,13169911 +k1,9877:22896518,13169911:24773 +h1,9877:24913015,13169911:0,0,0 +k1,9877:32583029,13169911:7670014 +g1,9877:32583029,13169911 +) +(1,9878:6630773,13854766:25952256,424439,112852 +h1,9878:6630773,13854766:0,0,0 +g1,9878:7294681,13854766 +g1,9878:8290543,13854766 +k1,9878:8290543,13854766:0 +h1,9878:14265715,13854766:0,0,0 +k1,9878:32583029,13854766:18317314 +g1,9878:32583029,13854766 +) +(1,9879:6630773,14539621:25952256,431045,112852 +h1,9879:6630773,14539621:0,0,0 +g1,9879:8622497,14539621 +g1,9879:9618359,14539621 +g1,9879:14597668,14539621 +g1,9879:15261576,14539621 +g1,9879:16589392,14539621 +h1,9879:16921346,14539621:0,0,0 +k1,9879:32583029,14539621:15661683 +g1,9879:32583029,14539621 +) +(1,9880:6630773,15224476:25952256,424439,79822 +h1,9880:6630773,15224476:0,0,0 +g1,9880:6962727,15224476 +g1,9880:7294681,15224476 +g1,9880:8954451,15224476 +g1,9880:9950313,15224476 +h1,9880:11942037,15224476:0,0,0 +k1,9880:32583029,15224476:20640992 +g1,9880:32583029,15224476 +) +(1,9881:6630773,15909331:25952256,424439,106246 +h1,9881:6630773,15909331:0,0,0 +g1,9881:6962727,15909331 +g1,9881:7294681,15909331 +k1,9881:7294681,15909331:0 +h1,9881:9950313,15909331:0,0,0 +k1,9881:32583029,15909331:22632716 +g1,9881:32583029,15909331 +) +(1,9882:6630773,16594186:25952256,424439,79822 +h1,9882:6630773,16594186:0,0,0 +h1,9882:6962727,16594186:0,0,0 +k1,9882:32583029,16594186:25620302 +g1,9882:32583029,16594186 +) +(1,9890:6630773,17410113:25952256,424439,79822 +(1,9884:6630773,17410113:0,0,0 +g1,9884:6630773,17410113 +g1,9884:6630773,17410113 +g1,9884:6303093,17410113 +(1,9884:6303093,17410113:0,0,0 +) +g1,9884:6630773,17410113 +) +g1,9890:7626635,17410113 +g1,9890:8954451,17410113 +g1,9890:9618359,17410113 +g1,9890:10282267,17410113 +g1,9890:10946175,17410113 +g1,9890:11610083,17410113 +h1,9890:11942037,17410113:0,0,0 +k1,9890:32583029,17410113:20640992 +g1,9890:32583029,17410113 +) +(1,9890:6630773,18094968:25952256,424439,79822 +h1,9890:6630773,18094968:0,0,0 +g1,9890:7626635,18094968 +g1,9890:8954451,18094968 +g1,9890:9286405,18094968 +g1,9890:9950313,18094968 +g1,9890:10946175,18094968 +g1,9890:11278129,18094968 +g1,9890:11942037,18094968 +g1,9890:12273991,18094968 +g1,9890:12937899,18094968 +g1,9890:13269853,18094968 +h1,9890:13601807,18094968:0,0,0 +k1,9890:32583029,18094968:18981222 +g1,9890:32583029,18094968 +) +(1,9890:6630773,18779823:25952256,424439,79822 +h1,9890:6630773,18779823:0,0,0 +g1,9890:7626635,18779823 +g1,9890:8954451,18779823 +g1,9890:9286405,18779823 +g1,9890:9950313,18779823 +g1,9890:10946175,18779823 +g1,9890:11278129,18779823 +g1,9890:11942037,18779823 +g1,9890:12273991,18779823 +g1,9890:12937899,18779823 +g1,9890:13269853,18779823 +h1,9890:13601807,18779823:0,0,0 +k1,9890:32583029,18779823:18981222 +g1,9890:32583029,18779823 +) +(1,9890:6630773,19464678:25952256,424439,79822 +h1,9890:6630773,19464678:0,0,0 +g1,9890:7626635,19464678 +g1,9890:8954451,19464678 +g1,9890:9286405,19464678 +g1,9890:9950313,19464678 +g1,9890:10946175,19464678 +g1,9890:11278129,19464678 +g1,9890:11942037,19464678 +g1,9890:12937899,19464678 +g1,9890:13269853,19464678 +h1,9890:13601807,19464678:0,0,0 +k1,9890:32583029,19464678:18981222 +g1,9890:32583029,19464678 +) +(1,9890:6630773,20149533:25952256,424439,79822 +h1,9890:6630773,20149533:0,0,0 +g1,9890:7626635,20149533 +g1,9890:8954451,20149533 +g1,9890:9286405,20149533 +g1,9890:9950313,20149533 +g1,9890:10946175,20149533 +g1,9890:11278129,20149533 +g1,9890:11942037,20149533 +g1,9890:12937899,20149533 +h1,9890:13601807,20149533:0,0,0 +k1,9890:32583029,20149533:18981222 +g1,9890:32583029,20149533 +) +(1,9892:6630773,20965460:25952256,424439,6605 +(1,9891:6630773,20965460:0,0,0 +g1,9891:6630773,20965460 +g1,9891:6630773,20965460 +g1,9891:6303093,20965460 +(1,9891:6303093,20965460:0,0,0 +) +g1,9891:6630773,20965460 +) +h1,9892:6962727,20965460:0,0,0 +k1,9892:32583029,20965460:25620302 +g1,9892:32583029,20965460 +) +(1,9896:6630773,21781387:25952256,424439,79822 +(1,9894:6630773,21781387:0,0,0 +g1,9894:6630773,21781387 +g1,9894:6630773,21781387 +g1,9894:6303093,21781387 +(1,9894:6303093,21781387:0,0,0 +) +g1,9894:6630773,21781387 +) +g1,9896:7626635,21781387 +g1,9896:8954451,21781387 +g1,9896:9286405,21781387 +g1,9896:9950313,21781387 +g1,9896:10946175,21781387 +g1,9896:11278129,21781387 +g1,9896:11942037,21781387 +g1,9896:12937899,21781387 +h1,9896:13601807,21781387:0,0,0 +k1,9896:32583029,21781387:18981222 +g1,9896:32583029,21781387 +) +(1,9898:6630773,22597314:25952256,431045,106246 +(1,9897:6630773,22597314:0,0,0 +g1,9897:6630773,22597314 +g1,9897:6630773,22597314 +g1,9897:6303093,22597314 +(1,9897:6303093,22597314:0,0,0 +) +g1,9897:6630773,22597314 +) +g1,9898:7294681,22597314 +g1,9898:7958589,22597314 +g1,9898:11610082,22597314 +g1,9898:15261575,22597314 +g1,9898:16257437,22597314 +g1,9898:19245022,22597314 +g1,9898:20572838,22597314 +k1,9898:20572838,22597314:14864 +h1,9898:22911380,22597314:0,0,0 +k1,9898:32583029,22597314:9671649 +g1,9898:32583029,22597314 +) +(1,9899:6630773,23282169:25952256,424439,6605 +h1,9899:6630773,23282169:0,0,0 +g1,9899:7294681,23282169 +g1,9899:8290543,23282169 +h1,9899:9286405,23282169:0,0,0 +k1,9899:32583029,23282169:23296624 +g1,9899:32583029,23282169 +) +(1,9900:6630773,23967024:25952256,424439,6605 +h1,9900:6630773,23967024:0,0,0 +h1,9900:6962727,23967024:0,0,0 +k1,9900:32583029,23967024:25620302 +g1,9900:32583029,23967024 +) +(1,9904:6630773,24782951:25952256,424439,79822 +(1,9902:6630773,24782951:0,0,0 +g1,9902:6630773,24782951 +g1,9902:6630773,24782951 +g1,9902:6303093,24782951 +(1,9902:6303093,24782951:0,0,0 +) +g1,9902:6630773,24782951 +) +g1,9904:7626635,24782951 +g1,9904:8954451,24782951 +g1,9904:9286405,24782951 +g1,9904:9950313,24782951 +g1,9904:10946175,24782951 +g1,9904:11278129,24782951 +g1,9904:11942037,24782951 +g1,9904:12937899,24782951 +h1,9904:13601807,24782951:0,0,0 +k1,9904:32583029,24782951:18981222 +g1,9904:32583029,24782951 +) +] +) +g1,9905:32583029,24862773 +g1,9905:6630773,24862773 +g1,9905:6630773,24862773 +g1,9905:32583029,24862773 +g1,9905:32583029,24862773 +) +h1,9905:6630773,25059381:0,0,0 +v1,9909:6630773,25924461:0,393216,0 +(1,9910:6630773,29068591:25952256,3537346,0 +g1,9910:6630773,29068591 +g1,9910:6237557,29068591 +r1,9941:6368629,29068591:131072,3537346,0 +g1,9910:6567858,29068591 +g1,9910:6764466,29068591 +[1,9910:6764466,29068591:25818563,3537346,0 +(1,9910:6764466,26339003:25818563,807758,219026 +(1,9909:6764466,26339003:0,807758,219026 +r1,9941:7908217,26339003:1143751,1026784,219026 +k1,9909:6764466,26339003:-1143751 +) +(1,9909:6764466,26339003:1143751,807758,219026 +) +k1,9909:8107932,26339003:199715 +k1,9909:8435612,26339003:327680 +k1,9909:9263161,26339003:199714 +k1,9909:10481961,26339003:199715 +k1,9909:13343092,26339003:199714 +k1,9909:15398131,26339003:199715 +k1,9909:15810837,26339003:199714 +k1,9909:18169307,26339003:199714 +k1,9909:19388107,26339003:199715 +k1,9909:23321408,26339003:199715 +k1,9909:26032462,26339003:199714 +k1,9909:26918339,26339003:199715 +(1,9909:26918339,26339003:0,452978,115847 +r1,9941:27276605,26339003:358266,568825,115847 +k1,9909:26918339,26339003:-358266 +) +(1,9909:26918339,26339003:358266,452978,115847 +k1,9909:26918339,26339003:3277 +h1,9909:27273328,26339003:0,411205,112570 +) +k1,9909:27649989,26339003:199714 +k1,9909:29735175,26339003:199715 +k1,9909:30466386,26339003:199714 +k1,9909:31021961,26339003:199715 +k1,9910:32583029,26339003:0 +) +(1,9910:6764466,27204083:25818563,513147,138281 +k1,9909:8449770,27204083:255964 +k1,9909:9798220,27204083:255965 +k1,9909:12437073,27204083:255964 +k1,9909:14260659,27204083:255965 +k1,9909:15535708,27204083:255964 +k1,9909:20115083,27204083:255965 +k1,9909:23161570,27204083:255964 +k1,9909:24076827,27204083:255965 +k1,9909:26068184,27204083:255964 +$1,9909:26068184,27204083 +k1,9909:26653211,27204083:109236 +k1,9909:27314915,27204083:109236 +k1,9909:28026427,27204083:109236 +k1,9909:28582618,27204083:109236 +$1,9909:29237978,27204083 +k1,9909:29493943,27204083:255965 +k1,9909:30401335,27204083:255964 +k1,9909:32583029,27204083:0 +) +(1,9910:6764466,28069163:25818563,505283,134348 +k1,9909:9273958,28069163:202625 +k1,9909:11225740,28069163:202626 +k1,9909:13612680,28069163:202625 +k1,9909:16885011,28069163:202625 +k1,9909:18290877,28069163:202625 +k1,9909:21284026,28069163:202626 +k1,9909:22590933,28069163:202625 +k1,9909:26241407,28069163:202625 +k1,9909:28159765,28069163:202625 +k1,9909:29858578,28069163:202626 +k1,9909:31931601,28069163:202625 +k1,9909:32583029,28069163:0 +) +(1,9910:6764466,28934243:25818563,513147,134348 +g1,9909:8375996,28934243 +g1,9909:9647394,28934243 +g1,9909:10261466,28934243 +g1,9909:12472650,28934243 +g1,9909:14373849,28934243 +g1,9909:16641394,28934243 +g1,9909:17492051,28934243 +g1,9909:18439046,28934243 +g1,9909:20325172,28934243 +g1,9909:23504978,28934243 +g1,9909:27406336,28934243 +k1,9910:32583029,28934243:3516011 +g1,9910:32583029,28934243 +) +] +g1,9910:32583029,29068591 +) +h1,9910:6630773,29068591:0,0,0 +v1,9912:6630773,29933671:0,393216,0 +(1,9916:6630773,36388191:25952256,6847736,0 +g1,9916:6630773,36388191 +g1,9916:6237557,36388191 +r1,9941:6368629,36388191:131072,6847736,0 +g1,9916:6567858,36388191 +g1,9916:6764466,36388191 +[1,9916:6764466,36388191:25818563,6847736,0 +(1,9914:6764466,30206148:25818563,665693,196608 +(1,9912:6764466,30206148:0,665693,196608 +r1,9941:8010564,30206148:1246098,862301,196608 +k1,9912:6764466,30206148:-1246098 +) +(1,9912:6764466,30206148:1246098,665693,196608 +) +k1,9912:8299993,30206148:289429 +k1,9912:10026211,30206148:327680 +k1,9912:10026211,30206148:0 +k1,9913:11862290,30206148:289429 +k1,9913:12764481,30206148:289429 +k1,9913:14072995,30206148:289429 +k1,9913:16535598,30206148:289429 +k1,9913:18392648,30206148:289429 +k1,9913:19701162,30206148:289429 +k1,9913:21845915,30206148:289429 +k1,9913:25300733,30206148:289429 +k1,9913:26781607,30206148:289429 +k1,9913:27977399,30206148:289429 +k1,9913:28918256,30206148:289429 +k1,9913:32583029,30206148:0 +) +(1,9914:6764466,31071228:25818563,513147,102891 +k1,9913:8996975,31071228:313615 +k1,9913:10329675,31071228:313615 +k1,9913:13422017,31071228:313615 +k1,9913:15415975,31071228:313615 +k1,9913:17755308,31071228:313615 +k1,9913:19636544,31071228:313615 +k1,9913:20566196,31071228:313614 +k1,9913:22331433,31071228:313615 +k1,9913:24185799,31071228:313615 +k1,9913:25127249,31071228:313615 +k1,9913:26459949,31071228:313615 +k1,9913:28269751,31071228:313615 +k1,9913:30554034,31071228:313615 +k1,9914:32583029,31071228:0 +) +(1,9914:6764466,31936308:25818563,505283,126483 +(1,9913:6764466,31936308:0,452978,115847 +r1,9941:9233003,31936308:2468537,568825,115847 +k1,9913:6764466,31936308:-2468537 +) +(1,9913:6764466,31936308:2468537,452978,115847 +k1,9913:6764466,31936308:3277 +h1,9913:9229726,31936308:0,411205,112570 +) +k1,9913:9442734,31936308:209731 +k1,9913:10183962,31936308:209731 +k1,9913:11906918,31936308:209730 +k1,9913:14126638,31936308:209731 +k1,9913:15355454,31936308:209731 +k1,9913:16907362,31936308:209731 +k1,9913:17768520,31936308:209730 +k1,9913:19693984,31936308:209731 +k1,9913:23961704,31936308:209731 +k1,9913:26182080,31936308:209731 +k1,9913:28608238,31936308:209730 +k1,9913:30071673,31936308:209731 +k1,9913:31385686,31936308:209731 +k1,9913:32583029,31936308:0 +) +(1,9914:6764466,32801388:25818563,505283,126483 +k1,9913:10180620,32801388:189161 +(1,9913:10180620,32801388:0,452978,115847 +r1,9941:12649157,32801388:2468537,568825,115847 +k1,9913:10180620,32801388:-2468537 +) +(1,9913:10180620,32801388:2468537,452978,115847 +k1,9913:10180620,32801388:3277 +h1,9913:12645880,32801388:0,411205,112570 +) +k1,9913:12838318,32801388:189161 +k1,9913:16544141,32801388:189161 +k1,9913:17384730,32801388:189161 +k1,9913:20376866,32801388:189161 +k1,9913:22267996,32801388:189160 +k1,9913:25472468,32801388:189161 +k1,9913:27155195,32801388:189161 +k1,9913:28030518,32801388:189161 +(1,9913:28030518,32801388:0,452978,115847 +r1,9941:28388784,32801388:358266,568825,115847 +k1,9913:28030518,32801388:-358266 +) +(1,9913:28030518,32801388:358266,452978,115847 +k1,9913:28030518,32801388:3277 +h1,9913:28385507,32801388:0,411205,112570 +) +k1,9913:28751615,32801388:189161 +k1,9913:29623661,32801388:189161 +k1,9913:30930866,32801388:189161 +k1,9913:32583029,32801388:0 +) +(1,9914:6764466,33666468:25818563,513147,126483 +g1,9913:7622987,33666468 +g1,9913:8841301,33666468 +g1,9913:10710387,33666468 +g1,9913:12403182,33666468 +g1,9913:13288573,33666468 +(1,9913:13288573,33666468:0,452978,122846 +r1,9941:19977653,33666468:6689080,575824,122846 +k1,9913:13288573,33666468:-6689080 +) +(1,9913:13288573,33666468:6689080,452978,122846 +g1,9913:18567528,33666468 +g1,9913:19270952,33666468 +h1,9913:19974376,33666468:0,411205,112570 +) +g1,9913:20350552,33666468 +g1,9913:21311309,33666468 +k1,9914:32583029,33666468:7541411 +g1,9914:32583029,33666468 +) +(1,9916:6764466,34531548:25818563,505283,134348 +h1,9915:6764466,34531548:983040,0,0 +k1,9915:8650542,34531548:275201 +k1,9915:10128984,34531548:275201 +k1,9915:11944935,34531548:275200 +k1,9915:13239221,34531548:275201 +k1,9915:15010609,34531548:275201 +k1,9915:18277529,34531548:275201 +k1,9915:20683304,34531548:275200 +k1,9915:21767875,34531548:275201 +k1,9915:23980320,34531548:275201 +k1,9915:24938406,34531548:275201 +k1,9915:28287901,34531548:275201 +k1,9915:29635270,34531548:275200 +k1,9915:30929556,34531548:275201 +k1,9915:32583029,34531548:0 +) +(1,9916:6764466,35396628:25818563,513147,134348 +k1,9915:9885181,35396628:136205 +k1,9915:11125669,35396628:136206 +k1,9915:12009640,35396628:136205 +k1,9915:13659072,35396628:136206 +k1,9915:14742928,35396628:136205 +k1,9915:18201153,35396628:136205 +k1,9915:22308841,35396628:136206 +k1,9915:24687688,35396628:136205 +k1,9915:26320081,35396628:136206 +k1,9915:27740792,35396628:136205 +k1,9915:29369908,35396628:136206 +k1,9915:30572384,35396628:136205 +k1,9915:32583029,35396628:0 +) +(1,9916:6764466,36261708:25818563,505283,126483 +g1,9915:7982780,36261708 +g1,9915:11021029,36261708 +k1,9916:32583029,36261708:19215156 +g1,9916:32583029,36261708 +) +] +g1,9916:32583029,36388191 +) +h1,9916:6630773,36388191:0,0,0 +(1,9919:6630773,37253271:25952256,505283,126483 +h1,9918:6630773,37253271:983040,0,0 +k1,9918:8511971,37253271:270323 +k1,9918:9801378,37253271:270322 +k1,9918:12826179,37253271:270323 +k1,9918:15067169,37253271:270322 +k1,9918:16205844,37253271:270323 +k1,9918:17989392,37253271:270322 +(1,9918:17989392,37253271:0,452978,122846 +r1,9941:24678472,37253271:6689080,575824,122846 +k1,9918:17989392,37253271:-6689080 +) +(1,9918:17989392,37253271:6689080,452978,122846 +g1,9918:23268347,37253271 +g1,9918:23971771,37253271 +h1,9918:24675195,37253271:0,411205,112570 +) +k1,9918:24948795,37253271:270323 +k1,9918:25870545,37253271:270322 +k1,9918:27783200,37253271:270323 +k1,9918:28409382,37253271:270322 +k1,9918:29962900,37253271:270323 +k1,9918:32583029,37253271:0 +) +(1,9919:6630773,38118351:25952256,513147,134348 +k1,9918:8783567,38118351:174917 +k1,9918:10352434,38118351:174916 +k1,9918:10883211,38118351:174917 +k1,9918:13998073,38118351:174917 +k1,9918:14832282,38118351:174917 +k1,9918:16026283,38118351:174916 +k1,9918:17854673,38118351:174917 +k1,9918:20042856,38118351:174917 +k1,9918:20903934,38118351:174916 +k1,9918:23056728,38118351:174917 +(1,9918:23056728,38118351:0,414482,115847 +r1,9941:23414994,38118351:358266,530329,115847 +k1,9918:23056728,38118351:-358266 +) +(1,9918:23056728,38118351:358266,414482,115847 +k1,9918:23056728,38118351:3277 +h1,9918:23411717,38118351:0,411205,112570 +) +k1,9918:23763581,38118351:174917 +k1,9918:25730251,38118351:174916 +k1,9918:27108409,38118351:174917 +k1,9918:29047555,38118351:174917 +k1,9918:29753969,38118351:174917 +k1,9918:31263853,38118351:174916 +k1,9918:32124932,38118351:174917 +k1,9918:32583029,38118351:0 +) +(1,9919:6630773,38983431:25952256,513147,134348 +k1,9918:9257592,38983431:153490 +k1,9918:10695589,38983431:153491 +k1,9918:12315775,38983431:153490 +k1,9918:13488351,38983431:153491 +k1,9918:15008922,38983431:153490 +k1,9918:16860451,38983431:153491 +(1,9918:16860451,38983431:0,414482,115847 +r1,9941:17218717,38983431:358266,530329,115847 +k1,9918:16860451,38983431:-358266 +) +(1,9918:16860451,38983431:358266,414482,115847 +k1,9918:16860451,38983431:3277 +h1,9918:17215440,38983431:0,411205,112570 +) +k1,9918:17372207,38983431:153490 +k1,9918:18057195,38983431:153491 +k1,9918:18981388,38983431:153490 +k1,9918:21131761,38983431:153491 +k1,9918:23263128,38983431:153490 +k1,9918:24075911,38983431:153491 +k1,9918:26242667,38983431:153490 +k1,9918:27816323,38983431:153491 +k1,9918:29102275,38983431:153490 +k1,9918:30003532,38983431:153491 +k1,9918:32583029,38983431:0 +) +(1,9919:6630773,39848511:25952256,505283,134348 +g1,9918:9812545,39848511 +g1,9918:11405725,39848511 +(1,9918:11405725,39848511:0,452978,115847 +r1,9941:14929397,39848511:3523672,568825,115847 +k1,9918:11405725,39848511:-3523672 +) +(1,9918:11405725,39848511:3523672,452978,115847 +k1,9918:11405725,39848511:3277 +h1,9918:14926120,39848511:0,411205,112570 +) +g1,9918:15128626,39848511 +g1,9918:18102649,39848511 +g1,9918:18953306,39848511 +(1,9918:18953306,39848511:0,452978,115847 +r1,9941:19311572,39848511:358266,568825,115847 +k1,9918:18953306,39848511:-358266 +) +(1,9918:18953306,39848511:358266,452978,115847 +k1,9918:18953306,39848511:3277 +h1,9918:19308295,39848511:0,411205,112570 +) +k1,9919:32583029,39848511:13097787 +g1,9919:32583029,39848511 +) +v1,9921:6630773,40713591:0,393216,0 +(1,9941:6630773,44616557:25952256,4296182,0 +g1,9941:6630773,44616557 +g1,9941:6237557,44616557 +r1,9941:6368629,44616557:131072,4296182,0 +g1,9941:6567858,44616557 +g1,9941:6764466,44616557 +[1,9941:6764466,44616557:25818563,4296182,0 +(1,9922:6764466,41021889:25818563,701514,196608 +(1,9921:6764466,41021889:0,701514,196608 +r1,9941:8863446,41021889:2098980,898122,196608 +k1,9921:6764466,41021889:-2098980 +) +(1,9921:6764466,41021889:2098980,701514,196608 +) +k1,9921:9153962,41021889:290516 +k1,9921:10880180,41021889:327680 +k1,9921:12445370,41021889:290515 +k1,9921:13754971,41021889:290516 +k1,9921:17037206,41021889:290516 +k1,9921:19196152,41021889:290515 +k1,9921:20678113,41021889:290516 +k1,9921:23278773,41021889:290516 +k1,9921:24866246,41021889:290515 +k1,9921:26175847,41021889:290516 +k1,9921:27638801,41021889:290515 +k1,9921:31591469,41021889:290516 +k1,9921:32583029,41021889:0 +) +(1,9922:6764466,41886969:25818563,513147,134348 +k1,9921:10253181,41886969:183734 +k1,9921:11812515,41886969:183733 +k1,9921:13694287,41886969:183734 +k1,9921:14897106,41886969:183734 +k1,9921:17094105,41886969:183733 +k1,9921:17944995,41886969:183734 +(1,9921:17944995,41886969:0,414482,115847 +r1,9941:18303261,41886969:358266,530329,115847 +k1,9921:17944995,41886969:-358266 +) +(1,9921:17944995,41886969:358266,414482,115847 +k1,9921:17944995,41886969:3277 +h1,9921:18299984,41886969:0,411205,112570 +) +k1,9921:18486995,41886969:183734 +k1,9921:19202225,41886969:183733 +k1,9921:20542669,41886969:183734 +k1,9921:21409288,41886969:183734 +k1,9921:23416888,41886969:183733 +k1,9921:24996539,41886969:183734 +k1,9921:26199358,41886969:183734 +k1,9921:28640806,41886969:183733 +k1,9921:29586068,41886969:183734 +k1,9921:32583029,41886969:0 +) +(1,9922:6764466,42752049:25818563,513147,134348 +k1,9921:7600007,42752049:184113 +(1,9921:7600007,42752049:0,414482,115847 +r1,9941:7958273,42752049:358266,530329,115847 +k1,9921:7600007,42752049:-358266 +) +(1,9921:7600007,42752049:358266,414482,115847 +k1,9921:7600007,42752049:3277 +h1,9921:7954996,42752049:0,411205,112570 +) +k1,9921:8316057,42752049:184114 +k1,9921:10808348,42752049:184113 +k1,9921:11651754,42752049:184114 +k1,9921:14598210,42752049:184113 +k1,9921:17299562,42752049:184114 +k1,9921:20464252,42752049:184113 +k1,9921:22068531,42752049:184114 +k1,9921:24195131,42752049:184113 +(1,9921:24195131,42752049:0,452978,115847 +r1,9941:29477363,42752049:5282232,568825,115847 +k1,9921:24195131,42752049:-5282232 +) +(1,9921:24195131,42752049:5282232,452978,115847 +g1,9921:24901832,42752049 +g1,9921:25956968,42752049 +h1,9921:29474086,42752049:0,411205,112570 +) +k1,9921:30042241,42752049:184114 +k1,9921:31714677,42752049:184113 +k1,9921:32583029,42752049:0 +) +(1,9922:6764466,43617129:25818563,513147,126483 +k1,9921:8058397,43617129:201446 +k1,9921:10955338,43617129:201445 +(1,9921:10955338,43617129:0,452978,115847 +r1,9941:12720451,43617129:1765113,568825,115847 +k1,9921:10955338,43617129:-1765113 +) +(1,9921:10955338,43617129:1765113,452978,115847 +k1,9921:10955338,43617129:3277 +h1,9921:12717174,43617129:0,411205,112570 +) +k1,9921:12921897,43617129:201446 +k1,9921:13774771,43617129:201446 +k1,9921:15905596,43617129:201445 +k1,9921:16462902,43617129:201446 +k1,9921:18642225,43617129:201446 +k1,9921:20128177,43617129:201446 +k1,9921:23031671,43617129:201445 +k1,9921:26173062,43617129:201446 +k1,9921:27041664,43617129:201446 +(1,9921:27041664,43617129:0,452978,122846 +r1,9941:29510201,43617129:2468537,575824,122846 +k1,9921:27041664,43617129:-2468537 +) +(1,9921:27041664,43617129:2468537,452978,122846 +k1,9921:27041664,43617129:3277 +h1,9921:29506924,43617129:0,411205,112570 +) +k1,9921:29711646,43617129:201445 +k1,9921:31923737,43617129:201446 +k1,9921:32583029,43617129:0 +) +(1,9922:6764466,44482209:25818563,513147,134348 +k1,9921:8014044,44482209:230493 +k1,9921:9898011,44482209:230494 +k1,9921:12141770,44482209:230493 +k1,9921:13058426,44482209:230494 +(1,9921:13058426,44482209:0,414482,115847 +r1,9941:13416692,44482209:358266,530329,115847 +k1,9921:13058426,44482209:-358266 +) +(1,9921:13058426,44482209:358266,414482,115847 +k1,9921:13058426,44482209:3277 +h1,9921:13413415,44482209:0,411205,112570 +) +k1,9921:13647185,44482209:230493 +k1,9921:15162184,44482209:230493 +k1,9921:16261030,44482209:230494 +k1,9921:17584008,44482209:230493 +k1,9921:18465930,44482209:230494 +k1,9921:20727384,44482209:230493 +k1,9921:23911586,44482209:230494 +k1,9921:24801371,44482209:230493 +k1,9921:27340042,44482209:230493 +(1,9921:27340042,44482209:0,414482,115847 +r1,9941:27698308,44482209:358266,530329,115847 +k1,9921:27340042,44482209:-358266 +) +(1,9921:27340042,44482209:358266,414482,115847 +k1,9921:27340042,44482209:3277 +h1,9921:27695031,44482209:0,411205,112570 +) +k1,9921:27928802,44482209:230494 +k1,9921:29350740,44482209:230493 +(1,9921:29350740,44482209:0,452978,115847 +r1,9941:29709006,44482209:358266,568825,115847 +k1,9921:29350740,44482209:-358266 +) +(1,9921:29350740,44482209:358266,452978,115847 +k1,9921:29350740,44482209:3277 +h1,9921:29705729,44482209:0,411205,112570 +) +k1,9921:29939500,44482209:230494 +k1,9921:31563944,44482209:230493 +k1,9921:32583029,44482209:0 +) +] +g1,9941:32583029,44616557 +) +] +(1,9941:32583029,45706769:0,0,0 +g1,9941:32583029,45706769 +) +) +] +(1,9941:6630773,47279633:25952256,0,0 +h1,9941:6630773,47279633:25952256,0,0 ) ] -g1,10737:6630773,4812305 -k1,10737:21643106,4812305:13816956 -g1,10737:23265777,4812305 -g1,10737:24088253,4812305 -g1,10737:28572226,4812305 -g1,10737:29981905,4812305 -) -) -] -[1,10737:6630773,45706769:25952256,40108032,0 -(1,10737:6630773,45706769:25952256,40108032,0 -(1,10737:6630773,45706769:0,0,0 -g1,10737:6630773,45706769 -) -[1,10737:6630773,45706769:25952256,40108032,0 -(1,10674:6630773,6254097:25952256,32768,229376 -(1,10674:6630773,6254097:0,32768,229376 -(1,10674:6630773,6254097:5505024,32768,229376 -r1,10737:12135797,6254097:5505024,262144,229376 -) -k1,10674:6630773,6254097:-5505024 -) -(1,10674:6630773,6254097:25952256,32768,0 -r1,10737:32583029,6254097:25952256,32768,0 -) -) -(1,10674:6630773,7858425:25952256,615776,151780 -(1,10674:6630773,7858425:2464678,573309,14155 -g1,10674:6630773,7858425 -g1,10674:9095451,7858425 -) -g1,10674:10858632,7858425 -g1,10674:14406227,7858425 -g1,10674:16695531,7858425 -g1,10674:17753282,7858425 -k1,10674:32583029,7858425:12678855 -g1,10674:32583029,7858425 -) -(1,10677:6630773,9224246:25952256,755289,196608 -(1,10676:6630773,9224246:0,755289,196608 -r1,10737:7967707,9224246:1336934,951897,196608 -k1,10676:6630773,9224246:-1336934 -) -(1,10676:6630773,9224246:1336934,755289,196608 -) -k1,10676:8177729,9224246:210022 -k1,10676:9216782,9224246:210023 -k1,10676:11037679,9224246:210022 -k1,10676:12450943,9224246:210023 -k1,10676:15252259,9224246:210022 -k1,10676:15675262,9224246:210011 -k1,10676:18554566,9224246:210023 -k1,10676:20456728,9224246:210022 -k1,10676:23672887,9224246:210023 -k1,10676:25305696,9224246:210022 -k1,10676:26175010,9224246:210022 -k1,10676:27404118,9224246:210023 -k1,10676:28028972,9224246:210011 -k1,10676:29984219,9224246:210023 -k1,10676:31478747,9224246:210022 -k1,10676:32583029,9224246:0 -) -(1,10677:6630773,10065734:25952256,513147,134348 -k1,10676:7579360,10065734:200821 -k1,10676:9757402,10065734:200821 -k1,10676:11656261,10065734:200821 -k1,10676:14114797,10065734:200821 -k1,10676:16393765,10065734:200821 -k1,10676:17412475,10065734:200821 -k1,10676:19310023,10065734:200821 -k1,10676:21882591,10065734:200820 -k1,10676:22892782,10065734:200821 -k1,10676:25789099,10065734:200821 -k1,10676:27593586,10065734:200821 -k1,10676:28260368,10065734:200821 -k1,10676:29631662,10065734:200821 -k1,10676:30824043,10065734:200821 -k1,10676:32583029,10065734:0 -) -(1,10677:6630773,10907222:25952256,513147,134348 -k1,10676:9402543,10907222:213244 -k1,10676:10634872,10907222:213244 -k1,10676:12430155,10907222:213244 -k1,10676:16661410,10907222:213243 -k1,10676:18045127,10907222:213244 -k1,10676:20438754,10907222:213244 -k1,10676:21996797,10907222:213244 -k1,10676:23413282,10907222:213244 -k1,10676:25905213,10907222:213244 -k1,10676:27309901,10907222:213243 -k1,10676:29533790,10907222:213244 -k1,10676:30398462,10907222:213244 -k1,10676:31069803,10907222:213244 -k1,10676:32583029,10907222:0 -) -(1,10677:6630773,11748710:25952256,505283,134348 -g1,10676:9232552,11748710 -g1,10676:12179706,11748710 -h1,10676:12578165,11748710:0,0,0 -g1,10676:12777394,11748710 -g1,10676:14168068,11748710 -h1,10676:14566527,11748710:0,0,0 -k1,10677:32583029,11748710:17842832 -g1,10677:32583029,11748710 -) -(1,10679:6630773,12590198:25952256,505283,134348 -h1,10678:6630773,12590198:983040,0,0 -k1,10678:8428907,12590198:187259 -k1,10678:9635251,12590198:187259 -k1,10678:11475983,12590198:187259 -k1,10678:12901217,12590198:187259 -k1,10678:13774638,12590198:187259 -k1,10678:14830249,12590198:187259 -k1,10678:16121790,12590198:187259 -k1,10678:18315761,12590198:187259 -k1,10678:20571336,12590198:187259 -k1,10678:21410023,12590198:187259 -(1,10678:21410023,12590198:0,452978,115847 -r1,10737:23878560,12590198:2468537,568825,115847 -k1,10678:21410023,12590198:-2468537 -) -(1,10678:21410023,12590198:2468537,452978,115847 -k1,10678:21410023,12590198:3277 -h1,10678:23875283,12590198:0,411205,112570 -) -k1,10678:24239489,12590198:187259 -(1,10678:24239489,12590198:0,452978,115847 -r1,10737:27411449,12590198:3171960,568825,115847 -k1,10678:24239489,12590198:-3171960 -) -(1,10678:24239489,12590198:3171960,452978,115847 -k1,10678:24239489,12590198:3277 -h1,10678:27408172,12590198:0,411205,112570 -) -k1,10678:27598708,12590198:187259 -k1,10678:28977412,12590198:187259 -k1,10678:30866641,12590198:187259 -k1,10678:32583029,12590198:0 -) -(1,10679:6630773,13431686:25952256,513147,134348 -k1,10678:7554931,13431686:264866 -k1,10678:10283295,13431686:264866 -k1,10678:11416513,13431686:264866 -k1,10678:12785662,13431686:264867 -k1,10678:15057240,13431686:264866 -k1,10678:17390422,13431686:264866 -k1,10678:18306716,13431686:264866 -k1,10678:21597379,13431686:264866 -k1,10678:23053690,13431686:264866 -k1,10678:27262514,13431686:264867 -k1,10678:28480929,13431686:264866 -k1,10678:29850077,13431686:264866 -k1,10678:31400759,13431686:264866 -k1,10679:32583029,13431686:0 -) -(1,10679:6630773,14273174:25952256,513147,134348 -k1,10678:7864549,14273174:273674 -k1,10678:9462049,14273174:273673 -k1,10678:10395015,14273174:273674 -k1,10678:13694486,14273174:273674 -k1,10678:16178034,14273174:273674 -k1,10678:20395664,14273174:273673 -k1,10678:21866025,14273174:273674 -k1,10678:22554467,14273174:273599 -k1,10678:25670437,14273174:273674 -k1,10678:27045116,14273174:273674 -k1,10678:27674649,14273174:273673 -k1,10678:29302297,14273174:273674 -k1,10678:32583029,14273174:0 -) -(1,10679:6630773,15114662:25952256,513147,134348 -k1,10678:9927436,15114662:220403 -k1,10678:11541789,15114662:220402 -k1,10678:12528308,15114662:220403 -k1,10678:14072537,15114662:220402 -k1,10678:15484385,15114662:220403 -k1,10678:18012966,15114662:220403 -k1,10678:21099257,15114662:220402 -k1,10678:21935698,15114662:220403 -k1,10678:23175186,15114662:220403 -k1,10678:25049061,15114662:220402 -k1,10678:26681110,15114662:220403 -k1,10678:28098199,15114662:220402 -k1,10678:31923737,15114662:220403 -k1,10678:32583029,15114662:0 -) -(1,10679:6630773,15956150:25952256,513147,134348 -k1,10678:8041669,15956150:207655 -k1,10678:8780822,15956150:207656 -k1,10678:10272983,15956150:207655 -k1,10678:11348991,15956150:207656 -k1,10678:12660928,15956150:207655 -k1,10678:14875296,15956150:207656 -k1,10678:17845294,15956150:207655 -k1,10678:21078746,15956150:207655 -k1,10678:21969287,15956150:207656 -k1,10678:25947228,15956150:207655 -k1,10678:26806312,15956150:207656 -k1,10678:27369827,15956150:207655 -k1,10678:29272244,15956150:207656 -k1,10678:31391584,15956150:207655 -k1,10678:32583029,15956150:0 -) -(1,10679:6630773,16797638:25952256,513147,126483 -g1,10678:11055108,16797638 -g1,10678:11712434,16797638 -g1,10678:12443160,16797638 -g1,10678:15272349,16797638 -g1,10678:16123006,16797638 -g1,10678:17937042,16797638 -g1,10678:19881495,16797638 -g1,10678:21468121,16797638 -g1,10678:22991177,16797638 -g1,10678:23849698,16797638 -g1,10678:27074724,16797638 -g1,10678:27956838,16797638 -k1,10679:32583029,16797638:682234 -g1,10679:32583029,16797638 -) -(1,10681:6630773,17639126:25952256,513147,126483 -h1,10680:6630773,17639126:983040,0,0 -k1,10680:8421263,17639126:179615 -k1,10680:9804120,17639126:179616 -k1,10680:11289868,17639126:179615 -k1,10680:14130901,17639126:179616 -k1,10680:15178868,17639126:179615 -k1,10680:16450969,17639126:179616 -k1,10680:16986444,17639126:179615 -k1,10680:20202997,17639126:179615 -k1,10680:22314614,17639126:179616 -k1,10680:23110267,17639126:179615 -k1,10680:25887075,17639126:179616 -k1,10680:28298846,17639126:179615 -k1,10680:29669907,17639126:179616 -k1,10680:30942007,17639126:179615 -k1,10681:32583029,17639126:0 -) -(1,10681:6630773,18480614:25952256,513147,134348 -k1,10680:8108709,18480614:210470 -(1,10680:8108709,18480614:0,452978,115847 -r1,10737:11280669,18480614:3171960,568825,115847 -k1,10680:8108709,18480614:-3171960 -) -(1,10680:8108709,18480614:3171960,452978,115847 -k1,10680:8108709,18480614:3277 -h1,10680:11277392,18480614:0,411205,112570 -) -k1,10680:11491139,18480614:210470 -k1,10680:12387771,18480614:210470 -k1,10680:13056338,18480614:210470 -k1,10680:15645110,18480614:210470 -k1,10680:17711560,18480614:210470 -k1,10680:20896708,18480614:210469 -k1,10680:23303289,18480614:210470 -k1,10680:24196644,18480614:210470 -k1,10680:27102610,18480614:210470 -k1,10680:29381396,18480614:210470 -k1,10680:30278028,18480614:210470 -k1,10680:31276896,18480614:210470 -k1,10680:32583029,18480614:0 -) -(1,10681:6630773,19322102:25952256,505283,134348 -k1,10680:10043590,19322102:166819 -k1,10680:11163958,19322102:166819 -k1,10680:13354528,19322102:166818 -k1,10680:13877207,19322102:166819 -k1,10680:16664155,19322102:166819 -k1,10680:18808851,19322102:166819 -k1,10680:20369621,19322102:166819 -k1,10680:22695196,19322102:166819 -k1,10680:25815722,19322102:166818 -k1,10680:27376492,19322102:166819 -k1,10680:29611627,19322102:166819 -k1,10680:32583029,19322102:0 -) -(1,10681:6630773,20163590:25952256,513147,7863 -g1,10680:7849087,20163590 -g1,10680:10743812,20163590 -k1,10681:32583029,20163590:19597230 -g1,10681:32583029,20163590 -) -v1,10683:6630773,21144340:0,393216,0 -(1,10697:6630773,26690818:25952256,5939694,196608 -g1,10697:6630773,26690818 -g1,10697:6630773,26690818 -g1,10697:6434165,26690818 -(1,10697:6434165,26690818:0,5939694,196608 -r1,10737:32779637,26690818:26345472,6136302,196608 -k1,10697:6434165,26690818:-26345472 -) -(1,10697:6434165,26690818:26345472,5939694,196608 -[1,10697:6630773,26690818:25952256,5743086,0 -(1,10685:6630773,21351958:25952256,404226,76021 -(1,10684:6630773,21351958:0,0,0 -g1,10684:6630773,21351958 -g1,10684:6630773,21351958 -g1,10684:6303093,21351958 -(1,10684:6303093,21351958:0,0,0 -) -g1,10684:6630773,21351958 -) -g1,10685:7263065,21351958 -g1,10685:8211503,21351958 -k1,10685:8211503,21351958:0 -h1,10685:11056814,21351958:0,0,0 -k1,10685:32583030,21351958:21526216 -g1,10685:32583030,21351958 -) -(1,10686:6630773,22018136:25952256,404226,76021 -h1,10686:6630773,22018136:0,0,0 -g1,10686:9159939,22018136 -g1,10686:10108377,22018136 -k1,10686:10108377,22018136:0 -h1,10686:12953688,22018136:0,0,0 -k1,10686:32583028,22018136:19629340 -g1,10686:32583028,22018136 -) -(1,10687:6630773,22684314:25952256,410518,82312 -h1,10687:6630773,22684314:0,0,0 -g1,10687:9792230,22684314 -g1,10687:10740668,22684314 -g1,10687:13902126,22684314 -g1,10687:16115146,22684314 -h1,10687:18012020,22684314:0,0,0 -k1,10687:32583029,22684314:14571009 -g1,10687:32583029,22684314 -) -(1,10688:6630773,23350492:25952256,410518,76021 -h1,10688:6630773,23350492:0,0,0 -g1,10688:7895356,23350492 -g1,10688:10424522,23350492 -g1,10688:11372959,23350492 -g1,10688:14850562,23350492 -h1,10688:15166708,23350492:0,0,0 -k1,10688:32583028,23350492:17416320 -g1,10688:32583028,23350492 -) -(1,10689:6630773,24016670:25952256,410518,82312 -h1,10689:6630773,24016670:0,0,0 -g1,10689:6946919,24016670 -g1,10689:7263065,24016670 -g1,10689:7579211,24016670 -g1,10689:13269834,24016670 -g1,10689:14218272,24016670 -g1,10689:19276604,24016670 -k1,10689:19276604,24016670:0 -h1,10689:21805770,24016670:0,0,0 -k1,10689:32583029,24016670:10777259 -g1,10689:32583029,24016670 -) -(1,10690:6630773,24682848:25952256,404226,76021 -h1,10690:6630773,24682848:0,0,0 -g1,10690:6946919,24682848 -g1,10690:7263065,24682848 -g1,10690:7579211,24682848 -h1,10690:7895357,24682848:0,0,0 -k1,10690:32583029,24682848:24687672 -g1,10690:32583029,24682848 -) -(1,10691:6630773,25349026:25952256,404226,6290 -h1,10691:6630773,25349026:0,0,0 -h1,10691:8843793,25349026:0,0,0 -k1,10691:32583029,25349026:23739236 -g1,10691:32583029,25349026 -) -(1,10696:6630773,26015204:25952256,404226,6290 -(1,10693:6630773,26015204:0,0,0 -g1,10693:6630773,26015204 -g1,10693:6630773,26015204 -g1,10693:6303093,26015204 -(1,10693:6303093,26015204:0,0,0 -) -g1,10693:6630773,26015204 -) -g1,10696:7579210,26015204 -g1,10696:7895356,26015204 -g1,10696:8211502,26015204 -g1,10696:8527648,26015204 -g1,10696:8843794,26015204 -g1,10696:9159940,26015204 -g1,10696:9476086,26015204 -g1,10696:11056815,26015204 -g1,10696:11372961,26015204 -g1,10696:11689107,26015204 -g1,10696:12005253,26015204 -g1,10696:12321399,26015204 -g1,10696:12637545,26015204 -g1,10696:12953691,26015204 -g1,10696:13269837,26015204 -g1,10696:14534420,26015204 -g1,10696:14850566,26015204 -g1,10696:15166712,26015204 -g1,10696:15482858,26015204 -g1,10696:15799004,26015204 -g1,10696:16115150,26015204 -g1,10696:16431296,26015204 -g1,10696:16747442,26015204 -h1,10696:17695879,26015204:0,0,0 -k1,10696:32583029,26015204:14887150 -g1,10696:32583029,26015204 -) -(1,10696:6630773,26681382:25952256,388497,9436 -h1,10696:6630773,26681382:0,0,0 -g1,10696:7579210,26681382 -g1,10696:7895356,26681382 -g1,10696:11056813,26681382 -g1,10696:11372959,26681382 -g1,10696:14534416,26681382 -k1,10696:14534416,26681382:0 -h1,10696:17695873,26681382:0,0,0 -k1,10696:32583029,26681382:14887156 -g1,10696:32583029,26681382 -) -] -) -g1,10697:32583029,26690818 -g1,10697:6630773,26690818 -g1,10697:6630773,26690818 -g1,10697:32583029,26690818 -g1,10697:32583029,26690818 -) -h1,10697:6630773,26887426:0,0,0 -(1,10701:6630773,28043486:25952256,513147,134348 -h1,10700:6630773,28043486:983040,0,0 -k1,10700:9559839,28043486:162791 -k1,10700:12937172,28043486:162792 -k1,10700:13455823,28043486:162791 -k1,10700:14518424,28043486:162792 -k1,10700:15297253,28043486:162791 -k1,10700:18368533,28043486:162792 -k1,10700:19147362,28043486:162791 -k1,10700:19666014,28043486:162792 -k1,10700:21417398,28043486:162791 -k1,10700:22448542,28043486:162792 -k1,10700:23912878,28043486:162791 -k1,10700:25094755,28043486:162792 -k1,10700:27934036,28043486:162791 -k1,10700:29381334,28043486:162792 -k1,10700:30412477,28043486:162791 -k1,10700:32583029,28043486:0 -) -(1,10701:6630773,28884974:25952256,513147,134348 -k1,10700:8945112,28884974:283378 -k1,10700:10247574,28884974:283377 -k1,10700:12966270,28884974:283378 -k1,10700:15317963,28884974:283377 -k1,10700:16260633,28884974:283378 -k1,10700:17563095,28884974:283377 -k1,10700:20872270,28884974:283378 -k1,10700:21841809,28884974:283377 -k1,10700:23673803,28884974:283378 -k1,10700:24488677,28884974:283377 -k1,10700:26810225,28884974:283378 -k1,10700:27709640,28884974:283377 -k1,10700:29012103,28884974:283378 -k1,10700:30289007,28884974:283378 -k1,10700:31563944,28884974:283377 -k1,10700:32583029,28884974:0 -) -(1,10701:6630773,29726462:25952256,513147,102891 -k1,10700:10284708,29726462:241475 -k1,10700:11185475,29726462:241475 -k1,10700:12446035,29726462:241475 -k1,10700:15886977,29726462:241474 -k1,10700:16756287,29726462:241475 -k1,10700:18201003,29726462:241475 -k1,10700:19983229,29726462:241475 -k1,10700:21093056,29726462:241475 -k1,10700:22438813,29726462:241475 -k1,10700:24115525,29726462:241474 -k1,10700:25376085,29726462:241475 -k1,10700:28313056,29726462:241475 -k1,10700:31966991,29726462:241475 -k1,10700:32583029,29726462:0 -) -(1,10701:6630773,30567950:25952256,513147,126483 -k1,10700:7787128,30567950:137270 -k1,10700:9339321,30567950:137271 -k1,10700:11987931,30567950:137270 -(1,10700:12195025,30567950:0,459977,115847 -r1,10737:12553291,30567950:358266,575824,115847 -k1,10700:12195025,30567950:-358266 -) -(1,10700:12195025,30567950:358266,459977,115847 -k1,10700:12195025,30567950:3277 -h1,10700:12550014,30567950:0,411205,112570 -) -k1,10700:12690561,30567950:137270 -k1,10700:13443870,30567950:137271 -k1,10700:14600225,30567950:137270 -k1,10700:16708164,30567950:137271 -k1,10700:18920959,30567950:137270 -k1,10700:20249674,30567950:137270 -k1,10700:21486639,30567950:137271 -k1,10700:22642994,30567950:137270 -k1,10700:25806061,30567950:137270 -k1,10700:26704860,30567950:137271 -k1,10700:27934615,30567950:137270 -k1,10700:28731178,30567950:137271 -k1,10700:29887533,30567950:137270 -k1,10700:32583029,30567950:0 -) -(1,10701:6630773,31409438:25952256,505283,126483 -g1,10700:7929696,31409438 -g1,10700:10818523,31409438 -(1,10700:11025617,31409438:0,459977,115847 -r1,10737:12087306,31409438:1061689,575824,115847 -k1,10700:11025617,31409438:-1061689 -) -(1,10700:11025617,31409438:1061689,459977,115847 -k1,10700:11025617,31409438:3277 -h1,10700:12084029,31409438:0,411205,112570 -) -g1,10700:12667299,31409438 -g1,10700:13820077,31409438 -g1,10700:16043058,31409438 -g1,10700:16598147,31409438 -g1,10700:19417505,31409438 -g1,10700:21594611,31409438 -g1,10700:23187791,31409438 -g1,10700:27087838,31409438 -k1,10701:32583029,31409438:2367813 -g1,10701:32583029,31409438 -) -v1,10703:6630773,32390188:0,393216,0 -(1,10715:6630773,36670895:25952256,4673923,196608 -g1,10715:6630773,36670895 -g1,10715:6630773,36670895 -g1,10715:6434165,36670895 -(1,10715:6434165,36670895:0,4673923,196608 -r1,10737:32779637,36670895:26345472,4870531,196608 -k1,10715:6434165,36670895:-26345472 -) -(1,10715:6434165,36670895:26345472,4673923,196608 -[1,10715:6630773,36670895:25952256,4477315,0 -(1,10705:6630773,32597806:25952256,404226,76021 -(1,10704:6630773,32597806:0,0,0 -g1,10704:6630773,32597806 -g1,10704:6630773,32597806 -g1,10704:6303093,32597806 -(1,10704:6303093,32597806:0,0,0 -) -g1,10704:6630773,32597806 -) -g1,10705:9159939,32597806 -g1,10705:10108377,32597806 -k1,10705:10108377,32597806:0 -h1,10705:12953688,32597806:0,0,0 -k1,10705:32583028,32597806:19629340 -g1,10705:32583028,32597806 -) -(1,10706:6630773,33263984:25952256,410518,82312 -h1,10706:6630773,33263984:0,0,0 -g1,10706:8211502,33263984 -g1,10706:9159940,33263984 -g1,10706:12637543,33263984 -g1,10706:14218272,33263984 -h1,10706:15482855,33263984:0,0,0 -k1,10706:32583029,33263984:17100174 -g1,10706:32583029,33263984 -) -(1,10707:6630773,33930162:25952256,410518,76021 -h1,10707:6630773,33930162:0,0,0 -g1,10707:7895356,33930162 -g1,10707:8843793,33930162 -g1,10707:9792230,33930162 -g1,10707:11689104,33930162 -h1,10707:12005250,33930162:0,0,0 -k1,10707:32583030,33930162:20577780 -g1,10707:32583030,33930162 -) -(1,10708:6630773,34596340:25952256,410518,82312 -h1,10708:6630773,34596340:0,0,0 -g1,10708:6946919,34596340 -g1,10708:7263065,34596340 -g1,10708:7579211,34596340 -g1,10708:10108377,34596340 -g1,10708:11056815,34596340 -g1,10708:14534418,34596340 -k1,10708:14534418,34596340:0 -h1,10708:16115147,34596340:0,0,0 -k1,10708:32583029,34596340:16467882 -g1,10708:32583029,34596340 -) -(1,10709:6630773,35262518:25952256,404226,76021 -h1,10709:6630773,35262518:0,0,0 -g1,10709:6946919,35262518 -g1,10709:7263065,35262518 -g1,10709:7579211,35262518 -h1,10709:7895357,35262518:0,0,0 -k1,10709:32583029,35262518:24687672 -g1,10709:32583029,35262518 -) -(1,10710:6630773,35928696:25952256,404226,6290 -h1,10710:6630773,35928696:0,0,0 -h1,10710:8843793,35928696:0,0,0 -k1,10710:32583029,35928696:23739236 -g1,10710:32583029,35928696 -) -(1,10714:6630773,36594874:25952256,404226,76021 -(1,10712:6630773,36594874:0,0,0 -g1,10712:6630773,36594874 -g1,10712:6630773,36594874 -g1,10712:6303093,36594874 -(1,10712:6303093,36594874:0,0,0 -) -g1,10712:6630773,36594874 -) -g1,10714:7579210,36594874 -g1,10714:8843793,36594874 -g1,10714:9159939,36594874 -g1,10714:12321396,36594874 -g1,10714:12637542,36594874 -g1,10714:15798999,36594874 -k1,10714:15798999,36594874:0 -h1,10714:18960456,36594874:0,0,0 -k1,10714:32583029,36594874:13622573 -g1,10714:32583029,36594874 -) -] -) -g1,10715:32583029,36670895 -g1,10715:6630773,36670895 -g1,10715:6630773,36670895 -g1,10715:32583029,36670895 -g1,10715:32583029,36670895 -) -h1,10715:6630773,36867503:0,0,0 -(1,10719:6630773,38023563:25952256,513147,134348 -h1,10718:6630773,38023563:983040,0,0 -k1,10718:8786908,38023563:219546 -k1,10718:10110735,38023563:219545 -k1,10718:11422766,38023563:219546 -k1,10718:11998171,38023563:219545 -k1,10718:14376473,38023563:219546 -k1,10718:15589544,38023563:219545 -k1,10718:16468382,38023563:219546 -k1,10718:19713724,38023563:219545 -k1,10718:20584698,38023563:219546 -k1,10718:22150353,38023563:219545 -k1,10718:23459763,38023563:219546 -k1,10718:25967170,38023563:219545 -k1,10718:26846008,38023563:219546 -k1,10718:28084638,38023563:219545 -k1,10718:30685107,38023563:219546 -k1,10718:31563944,38023563:219545 -k1,10718:32583029,38023563:0 -) -(1,10719:6630773,38865051:25952256,505283,134348 -k1,10718:9226177,38865051:248560 -k1,10718:10428286,38865051:248560 -k1,10718:12700598,38865051:248560 -k1,10718:13305018,38865051:248560 -k1,10718:16173707,38865051:248560 -k1,10718:18400145,38865051:248561 -k1,10718:20042656,38865051:248560 -k1,10718:22449972,38865051:248560 -k1,10718:25652240,38865051:248560 -k1,10718:27294751,38865051:248560 -k1,10718:29611627,38865051:248560 -k1,10718:32583029,38865051:0 -) -(1,10719:6630773,39706539:25952256,505283,134348 -g1,10718:7849087,39706539 -g1,10718:10116632,39706539 -g1,10718:12010622,39706539 -g1,10718:12861279,39706539 -g1,10718:14079593,39706539 -g1,10718:15272348,39706539 -k1,10719:32583029,39706539:14183303 -g1,10719:32583029,39706539 -) -v1,10721:6630773,40687289:0,393216,0 -(1,10734:6630773,45510161:25952256,5216088,196608 -g1,10734:6630773,45510161 -g1,10734:6630773,45510161 -g1,10734:6434165,45510161 -(1,10734:6434165,45510161:0,5216088,196608 -r1,10737:32779637,45510161:26345472,5412696,196608 -k1,10734:6434165,45510161:-26345472 -) -(1,10734:6434165,45510161:26345472,5216088,196608 -[1,10734:6630773,45510161:25952256,5019480,0 -(1,10723:6630773,40894907:25952256,404226,76021 -(1,10722:6630773,40894907:0,0,0 -g1,10722:6630773,40894907 -g1,10722:6630773,40894907 -g1,10722:6303093,40894907 -(1,10722:6303093,40894907:0,0,0 -) -g1,10722:6630773,40894907 -) -g1,10723:9159939,40894907 -g1,10723:10108377,40894907 -k1,10723:10108377,40894907:0 -h1,10723:12953688,40894907:0,0,0 -k1,10723:32583028,40894907:19629340 -g1,10723:32583028,40894907 -) -(1,10724:6630773,41561085:25952256,410518,107478 -h1,10724:6630773,41561085:0,0,0 -g1,10724:8211502,41561085 -g1,10724:9159940,41561085 -g1,10724:13269835,41561085 -g1,10724:13902127,41561085 -g1,10724:15799002,41561085 -g1,10724:18328168,41561085 -g1,10724:18960460,41561085 -g1,10724:20541189,41561085 -g1,10724:23070355,41561085 -g1,10724:23702647,41561085 -h1,10724:24967230,41561085:0,0,0 -k1,10724:32583029,41561085:7615799 -g1,10724:32583029,41561085 -) -(1,10725:6630773,42227263:25952256,410518,76021 -h1,10725:6630773,42227263:0,0,0 -g1,10725:7895356,42227263 -g1,10725:8843793,42227263 -g1,10725:9792230,42227263 -g1,10725:13902124,42227263 -h1,10725:14218270,42227263:0,0,0 -k1,10725:32583030,42227263:18364760 -g1,10725:32583030,42227263 -) -(1,10726:6630773,42893441:25952256,410518,76021 -h1,10726:6630773,42893441:0,0,0 -g1,10726:6946919,42893441 -g1,10726:7263065,42893441 -g1,10726:7579211,42893441 -g1,10726:11689105,42893441 -g1,10726:12637543,42893441 -h1,10726:16431291,42893441:0,0,0 -k1,10726:32583029,42893441:16151738 -g1,10726:32583029,42893441 -) -(1,10727:6630773,43559619:25952256,404226,76021 -h1,10727:6630773,43559619:0,0,0 -g1,10727:6946919,43559619 -g1,10727:7263065,43559619 -g1,10727:7579211,43559619 -h1,10727:7895357,43559619:0,0,0 -k1,10727:32583029,43559619:24687672 -g1,10727:32583029,43559619 -) -(1,10728:6630773,44225797:25952256,404226,6290 -h1,10728:6630773,44225797:0,0,0 -h1,10728:8843793,44225797:0,0,0 -k1,10728:32583029,44225797:23739236 -g1,10728:32583029,44225797 -) -(1,10733:6630773,44834547:25952256,404226,107478 -(1,10730:6630773,44834547:0,0,0 -g1,10730:6630773,44834547 -g1,10730:6630773,44834547 -g1,10730:6303093,44834547 -(1,10730:6303093,44834547:0,0,0 -) -g1,10730:6630773,44834547 -) -g1,10733:7579210,44834547 -g1,10733:7895356,44834547 -g1,10733:8211502,44834547 -g1,10733:8527648,44834547 -g1,10733:11056814,44834547 -g1,10733:11372960,44834547 -g1,10733:11689106,44834547 -g1,10733:12005252,44834547 -g1,10733:14534418,44834547 -g1,10733:14850564,44834547 -g1,10733:15166710,44834547 -g1,10733:15482856,44834547 -h1,10733:17695876,44834547:0,0,0 -k1,10733:32583029,44834547:14887153 -g1,10733:32583029,44834547 -) -(1,10733:6630773,45500725:25952256,388497,9436 -h1,10733:6630773,45500725:0,0,0 -g1,10733:7579210,45500725 -g1,10733:7895356,45500725 -g1,10733:11056813,45500725 -g1,10733:11372959,45500725 -g1,10733:14534416,45500725 -k1,10733:14534416,45500725:0 -h1,10733:17695873,45500725:0,0,0 -k1,10733:32583029,45500725:14887156 -g1,10733:32583029,45500725 -) -] -) -g1,10734:32583029,45510161 -g1,10734:6630773,45510161 -g1,10734:6630773,45510161 -g1,10734:32583029,45510161 -g1,10734:32583029,45510161 -) -h1,10734:6630773,45706769:0,0,0 -] -(1,10737:32583029,45706769:0,0,0 -g1,10737:32583029,45706769 -) -) -] -(1,10737:6630773,47279633:25952256,0,0 -h1,10737:6630773,47279633:25952256,0,0 -) -] -(1,10737:4262630,4025873:0,0,0 -[1,10737:-473656,4025873:0,0,0 -(1,10737:-473656,-710413:0,0,0 -(1,10737:-473656,-710413:0,0,0 -g1,10737:-473656,-710413 -) -g1,10737:-473656,-710413 -) -] -) -] -!26586 -}179 -Input:1619:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1620:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1621:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1622:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1623:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1624:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1625:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1626:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!764 -{180 -[1,10815:4262630,47279633:28320399,43253760,0 -(1,10815:4262630,4025873:0,0,0 -[1,10815:-473656,4025873:0,0,0 -(1,10815:-473656,-710413:0,0,0 -(1,10815:-473656,-644877:0,0,0 -k1,10815:-473656,-644877:-65536 -) -(1,10815:-473656,4736287:0,0,0 -k1,10815:-473656,4736287:5209943 +(1,9941:4262630,4025873:0,0,0 +[1,9941:-473656,4025873:0,0,0 +(1,9941:-473656,-710413:0,0,0 +(1,9941:-473656,-710413:0,0,0 +g1,9941:-473656,-710413 ) -g1,10815:-473656,-710413 +g1,9941:-473656,-710413 ) ] ) -[1,10815:6630773,47279633:25952256,43253760,0 -[1,10815:6630773,4812305:25952256,786432,0 -(1,10815:6630773,4812305:25952256,513147,126483 -(1,10815:6630773,4812305:25952256,513147,126483 -g1,10815:3078558,4812305 -[1,10815:3078558,4812305:0,0,0 -(1,10815:3078558,2439708:0,1703936,0 -k1,10815:1358238,2439708:-1720320 -(1,8393:1358238,2439708:1720320,1703936,0 -(1,8393:1358238,2439708:1179648,16384,0 -r1,10815:2537886,2439708:1179648,16384,0 -) -g1,8393:3062174,2439708 -(1,8393:3062174,2439708:16384,1703936,0 -[1,8393:3062174,2439708:25952256,1703936,0 -(1,8393:3062174,1915420:25952256,1179648,0 -(1,8393:3062174,1915420:16384,1179648,0 -r1,10815:3078558,1915420:16384,1179648,0 -) -k1,8393:29014430,1915420:25935872 -g1,8393:29014430,1915420 -) ] +!29143 +}158 +Input:1452:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1453:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1454:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1455:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1456:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1457:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1458:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1459:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1460:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1461:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1462:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1463:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1464:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1465:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1466:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1467:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1468:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1469:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1470:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1471:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1472:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1473:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1474:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1475:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!2268 +{159 +[1,10003:4262630,47279633:28320399,43253760,0 +(1,10003:4262630,4025873:0,0,0 +[1,10003:-473656,4025873:0,0,0 +(1,10003:-473656,-710413:0,0,0 +(1,10003:-473656,-644877:0,0,0 +k1,10003:-473656,-644877:-65536 ) +(1,10003:-473656,4736287:0,0,0 +k1,10003:-473656,4736287:5209943 ) -) -] -[1,10815:3078558,4812305:0,0,0 -(1,10815:3078558,2439708:0,1703936,0 -g1,10815:29030814,2439708 -g1,10815:36135244,2439708 -(1,8393:36135244,2439708:1720320,1703936,0 -(1,8393:36135244,2439708:16384,1703936,0 -[1,8393:36135244,2439708:25952256,1703936,0 -(1,8393:36135244,1915420:25952256,1179648,0 -(1,8393:36135244,1915420:16384,1179648,0 -r1,10815:36151628,1915420:16384,1179648,0 -) -k1,8393:62087500,1915420:25935872 -g1,8393:62087500,1915420 +g1,10003:-473656,-710413 ) ] ) -g1,8393:36675916,2439708 -(1,8393:36675916,2439708:1179648,16384,0 -r1,10815:37855564,2439708:1179648,16384,0 +[1,10003:6630773,47279633:25952256,43253760,0 +[1,10003:6630773,4812305:25952256,786432,0 +(1,10003:6630773,4812305:25952256,505283,134348 +(1,10003:6630773,4812305:25952256,505283,134348 +g1,10003:3078558,4812305 +[1,10003:3078558,4812305:0,0,0 +(1,10003:3078558,2439708:0,1703936,0 +k1,10003:1358238,2439708:-1720320 +(1,8606:1358238,2439708:1720320,1703936,0 +(1,8606:1358238,2439708:1179648,16384,0 +r1,10003:2537886,2439708:1179648,16384,0 ) +g1,8606:3062174,2439708 +(1,8606:3062174,2439708:16384,1703936,0 +[1,8606:3062174,2439708:25952256,1703936,0 +(1,8606:3062174,1915420:25952256,1179648,0 +(1,8606:3062174,1915420:16384,1179648,0 +r1,10003:3078558,1915420:16384,1179648,0 ) -k1,10815:3078556,2439708:-34777008 +k1,8606:29014430,1915420:25935872 +g1,8606:29014430,1915420 ) ] -[1,10815:3078558,4812305:0,0,0 -(1,10815:3078558,49800853:0,16384,2228224 -k1,10815:1358238,49800853:-1720320 -(1,8393:1358238,49800853:1720320,16384,2228224 -(1,8393:1358238,49800853:1179648,16384,0 -r1,10815:2537886,49800853:1179648,16384,0 ) -g1,8393:3062174,49800853 -(1,8393:3062174,52029077:16384,1703936,0 -[1,8393:3062174,52029077:25952256,1703936,0 -(1,8393:3062174,51504789:25952256,1179648,0 -(1,8393:3062174,51504789:16384,1179648,0 -r1,10815:3078558,51504789:16384,1179648,0 ) -k1,8393:29014430,51504789:25935872 -g1,8393:29014430,51504789 ) ] +[1,10003:3078558,4812305:0,0,0 +(1,10003:3078558,2439708:0,1703936,0 +g1,10003:29030814,2439708 +g1,10003:36135244,2439708 +(1,8606:36135244,2439708:1720320,1703936,0 +(1,8606:36135244,2439708:16384,1703936,0 +[1,8606:36135244,2439708:25952256,1703936,0 +(1,8606:36135244,1915420:25952256,1179648,0 +(1,8606:36135244,1915420:16384,1179648,0 +r1,10003:36151628,1915420:16384,1179648,0 ) -) -) -] -[1,10815:3078558,4812305:0,0,0 -(1,10815:3078558,49800853:0,16384,2228224 -g1,10815:29030814,49800853 -g1,10815:36135244,49800853 -(1,8393:36135244,49800853:1720320,16384,2228224 -(1,8393:36135244,52029077:16384,1703936,0 -[1,8393:36135244,52029077:25952256,1703936,0 -(1,8393:36135244,51504789:25952256,1179648,0 -(1,8393:36135244,51504789:16384,1179648,0 -r1,10815:36151628,51504789:16384,1179648,0 -) -k1,8393:62087500,51504789:25935872 -g1,8393:62087500,51504789 -) -] -) -g1,8393:36675916,49800853 -(1,8393:36675916,49800853:1179648,16384,0 -r1,10815:37855564,49800853:1179648,16384,0 -) -) -k1,10815:3078556,49800853:-34777008 -) -] -g1,10815:6630773,4812305 -g1,10815:6630773,4812305 -g1,10815:8017514,4812305 -g1,10815:10787065,4812305 -g1,10815:12580785,4812305 -g1,10815:13396052,4812305 -g1,10815:15205501,4812305 -k1,10815:31387652,4812305:16182151 -) -) -] -[1,10815:6630773,45706769:25952256,40108032,0 -(1,10815:6630773,45706769:25952256,40108032,0 -(1,10815:6630773,45706769:0,0,0 -g1,10815:6630773,45706769 -) -[1,10815:6630773,45706769:25952256,40108032,0 -(1,10738:6630773,6254097:25952256,513147,134348 -h1,10737:6630773,6254097:983040,0,0 -k1,10737:9239499,6254097:164233 -k1,10737:9935229,6254097:164233 -k1,10737:10870166,6254097:164234 -k1,10737:13695816,6254097:164233 -k1,10737:15595442,6254097:164233 -k1,10737:17747382,6254097:164233 -k1,10737:20959039,6254097:164233 -k1,10737:22076822,6254097:164234 -k1,10737:23333540,6254097:164233 -k1,10737:23853633,6254097:164233 -k1,10737:25432788,6254097:164233 -k1,10737:26248449,6254097:164233 -k1,10737:27100156,6254097:164234 -k1,10737:28919173,6254097:164233 -k1,10737:31575085,6254097:164233 -k1,10738:32583029,6254097:0 -) -(1,10738:6630773,7095585:25952256,513147,134348 -k1,10737:9035084,7095585:185262 -k1,10737:9576206,7095585:185262 -k1,10737:10754994,7095585:185262 -k1,10737:11599548,7095585:185262 -k1,10737:13497266,7095585:185262 -k1,10737:16174207,7095585:185262 -k1,10737:17313018,7095585:185262 -k1,10737:19668831,7095585:185261 -k1,10737:21291298,7095585:185262 -k1,10737:22127988,7095585:185262 -(1,10737:22127988,7095585:0,452978,115847 -r1,10815:24596525,7095585:2468537,568825,115847 -k1,10737:22127988,7095585:-2468537 -) -(1,10737:22127988,7095585:2468537,452978,115847 -k1,10737:22127988,7095585:3277 -h1,10737:24593248,7095585:0,411205,112570 -) -k1,10737:24781787,7095585:185262 -k1,10737:26170290,7095585:185262 -k1,10737:27349078,7095585:185262 -k1,10737:28193632,7095585:185262 -k1,10737:30091350,7095585:185262 -k1,10737:32583029,7095585:0 -) -(1,10738:6630773,7937073:25952256,513147,134348 -k1,10737:7562289,7937073:245354 -k1,10737:8265740,7937073:245354 -k1,10737:10912333,7937073:245354 -k1,10737:12609309,7937073:245354 -k1,10737:14567119,7937073:245354 -k1,10737:16800180,7937073:245354 -k1,10737:17731697,7937073:245355 -k1,10737:18332911,7937073:245354 -k1,10737:21280970,7937073:245354 -k1,10737:24477410,7937073:245354 -k1,10737:27795092,7937073:245354 -k1,10737:28691874,7937073:245354 -k1,10737:29725626,7937073:245354 -(1,10737:29725626,7937073:0,414482,115847 -r1,10815:30083892,7937073:358266,530329,115847 -k1,10737:29725626,7937073:-358266 -) -(1,10737:29725626,7937073:358266,414482,115847 -k1,10737:29725626,7937073:3277 -h1,10737:30080615,7937073:0,411205,112570 -) -k1,10737:30329246,7937073:245354 -k1,10738:32583029,7937073:0 -) -(1,10738:6630773,8778561:25952256,513147,134348 -k1,10737:8322492,8778561:278107 -k1,10737:9554147,8778561:278106 -k1,10737:10936536,8778561:278107 -k1,10737:12193095,8778561:278106 -k1,10737:14760375,8778561:278107 -k1,10737:16241722,8778561:278106 -k1,10737:19196319,8778561:278107 -k1,10737:21209818,8778561:278106 -k1,10737:24183421,8778561:278107 -(1,10737:24183421,8778561:0,452978,115847 -r1,10815:27355381,8778561:3171960,568825,115847 -k1,10737:24183421,8778561:-3171960 -) -(1,10737:24183421,8778561:3171960,452978,115847 -k1,10737:24183421,8778561:3277 -h1,10737:27352104,8778561:0,411205,112570 -) -k1,10737:27633487,8778561:278106 -k1,10737:28563022,8778561:278107 -k1,10737:29940822,8778561:278106 -(1,10737:29940822,8778561:0,452978,115847 -r1,10815:32409359,8778561:2468537,568825,115847 -k1,10737:29940822,8778561:-2468537 -) -(1,10737:29940822,8778561:2468537,452978,115847 -k1,10737:29940822,8778561:3277 -h1,10737:32406082,8778561:0,411205,112570 -) -k1,10737:32583029,8778561:0 -) -(1,10738:6630773,9620049:25952256,513147,134348 -k1,10737:9607089,9620049:186448 -(1,10737:9607089,9620049:0,452978,115847 -r1,10815:12779049,9620049:3171960,568825,115847 -k1,10737:9607089,9620049:-3171960 -) -(1,10737:9607089,9620049:3171960,452978,115847 -k1,10737:9607089,9620049:3277 -h1,10737:12775772,9620049:0,411205,112570 -) -k1,10737:12965497,9620049:186448 -k1,10737:15266793,9620049:186449 -k1,10737:16472326,9620049:186448 -k1,10737:19612482,9620049:186448 -k1,10737:20458222,9620049:186448 -k1,10737:21663756,9620049:186449 -k1,10737:22843730,9620049:186448 -k1,10737:25235465,9620049:186448 -k1,10737:26108075,9620049:186448 -k1,10737:27082922,9620049:186449 -k1,10737:29510701,9620049:186448 -k1,10737:32583029,9620049:0 -) -(1,10738:6630773,10461537:25952256,513147,134348 -k1,10737:7497541,10461537:180606 -k1,10737:10871061,10461537:180606 -k1,10737:14454297,10461537:180607 -k1,10737:15286331,10461537:180606 -k1,10737:16486022,10461537:180606 -k1,10737:19362124,10461537:180606 -k1,10737:21280746,10461537:180607 -k1,10737:23502798,10461537:180606 -k1,10737:25418797,10461537:180606 -k1,10737:27108042,10461537:180606 -k1,10737:29356965,10461537:180607 -k1,10737:30003532,10461537:180606 -k1,10738:32583029,10461537:0 -) -(1,10738:6630773,11303025:25952256,505283,134348 -(1,10737:6630773,11303025:0,452978,115847 -r1,10815:9099310,11303025:2468537,568825,115847 -k1,10737:6630773,11303025:-2468537 -) -(1,10737:6630773,11303025:2468537,452978,115847 -k1,10737:6630773,11303025:3277 -h1,10737:9096033,11303025:0,411205,112570 -) -k1,10737:9306803,11303025:207493 -k1,10737:11915535,11303025:207493 -k1,10737:15074114,11303025:207493 -k1,10737:18684236,11303025:207493 -k1,10737:19616557,11303025:207493 -k1,10737:20692402,11303025:207493 -k1,10737:22430161,11303025:207493 -k1,10737:23289082,11303025:207493 -k1,10737:25851284,11303025:207493 -k1,10737:27077862,11303025:207493 -k1,10737:29353671,11303025:207493 -k1,10737:31966991,11303025:207493 -k1,10738:32583029,11303025:0 -) -(1,10738:6630773,12144513:25952256,452978,115847 -(1,10737:6630773,12144513:0,452978,115847 -r1,10815:9099310,12144513:2468537,568825,115847 -k1,10737:6630773,12144513:-2468537 -) -(1,10737:6630773,12144513:2468537,452978,115847 -k1,10737:6630773,12144513:3277 -h1,10737:9096033,12144513:0,411205,112570 -) -k1,10738:32583028,12144513:23310048 -g1,10738:32583028,12144513 -) -v1,10740:6630773,13334979:0,393216,0 -(1,10775:6630773,30966177:25952256,18024414,196608 -g1,10775:6630773,30966177 -g1,10775:6630773,30966177 -g1,10775:6434165,30966177 -(1,10775:6434165,30966177:0,18024414,196608 -r1,10815:32779637,30966177:26345472,18221022,196608 -k1,10775:6434165,30966177:-26345472 -) -(1,10775:6434165,30966177:26345472,18024414,196608 -[1,10775:6630773,30966177:25952256,17827806,0 -(1,10742:6630773,13548889:25952256,410518,101187 -(1,10741:6630773,13548889:0,0,0 -g1,10741:6630773,13548889 -g1,10741:6630773,13548889 -g1,10741:6303093,13548889 -(1,10741:6303093,13548889:0,0,0 -) -g1,10741:6630773,13548889 -) -g1,10742:9159939,13548889 -g1,10742:10108377,13548889 -g1,10742:14218272,13548889 -g1,10742:14850564,13548889 -g1,10742:16747439,13548889 -g1,10742:17379731,13548889 -g1,10742:18012023,13548889 -g1,10742:19592752,13548889 -g1,10742:20225044,13548889 -g1,10742:23386501,13548889 -g1,10742:24334939,13548889 -h1,10742:25915667,13548889:0,0,0 -k1,10742:32583029,13548889:6667362 -g1,10742:32583029,13548889 -) -(1,10743:6630773,14215067:25952256,404226,76021 -h1,10743:6630773,14215067:0,0,0 -g1,10743:9159939,14215067 -g1,10743:10108377,14215067 -k1,10743:10108377,14215067:0 -h1,10743:12005251,14215067:0,0,0 -k1,10743:32583029,14215067:20577778 -g1,10743:32583029,14215067 -) -(1,10744:6630773,14881245:25952256,404226,107478 -h1,10744:6630773,14881245:0,0,0 -k1,10744:8829401,14881245:301754 -k1,10744:9763446,14881245:301753 -k1,10744:13542803,14881245:301754 -k1,10744:14160702,14881245:301753 -k1,10744:14778602,14881245:301754 -k1,10744:15396502,14881245:301754 -k1,10744:16330547,14881245:301753 -k1,10744:20109903,14881245:301754 -k1,10744:20727802,14881245:301753 -k1,10744:21345702,14881245:301754 -k1,10744:21963602,14881245:301754 -k1,10744:22581501,14881245:301753 -k1,10744:23199401,14881245:301754 -k1,10744:24133446,14881245:301753 -k1,10744:27280511,14881245:301754 -k1,10744:27898411,14881245:301754 -k1,10744:28516310,14881245:301753 -k1,10744:29134210,14881245:301754 -k1,10744:29752109,14881245:301753 -k1,10744:30370009,14881245:301754 -k1,10744:30370009,14881245:0 -h1,10744:32583029,14881245:0,0,0 -k1,10744:32583029,14881245:0 -k1,10744:32583029,14881245:0 -) -(1,10745:6630773,15547423:25952256,410518,76021 -h1,10745:6630773,15547423:0,0,0 -g1,10745:7895356,15547423 -g1,10745:8843793,15547423 -g1,10745:9792230,15547423 -g1,10745:14534415,15547423 -h1,10745:14850561,15547423:0,0,0 -k1,10745:32583029,15547423:17732468 -g1,10745:32583029,15547423 -) -(1,10746:6630773,16213601:25952256,404226,101187 -h1,10746:6630773,16213601:0,0,0 -g1,10746:6946919,16213601 -g1,10746:7263065,16213601 -g1,10746:7579211,16213601 -g1,10746:11689105,16213601 -g1,10746:12637543,16213601 -g1,10746:17695874,16213601 -g1,10746:19276603,16213601 -g1,10746:19908895,16213601 -h1,10746:22438060,16213601:0,0,0 -k1,10746:32583029,16213601:10144969 -g1,10746:32583029,16213601 -) -(1,10747:6630773,16879779:25952256,404226,76021 -h1,10747:6630773,16879779:0,0,0 -g1,10747:6946919,16879779 -g1,10747:7263065,16879779 -g1,10747:7579211,16879779 -h1,10747:7895357,16879779:0,0,0 -k1,10747:32583029,16879779:24687672 -g1,10747:32583029,16879779 -) -(1,10748:6630773,17545957:25952256,404226,82312 -h1,10748:6630773,17545957:0,0,0 -g1,10748:10740667,17545957 -g1,10748:13902124,17545957 -g1,10748:14534416,17545957 -h1,10748:15166708,17545957:0,0,0 -k1,10748:32583028,17545957:17416320 -g1,10748:32583028,17545957 -) -(1,10758:6630773,18212135:25952256,410518,9436 -(1,10750:6630773,18212135:0,0,0 -g1,10750:6630773,18212135 -g1,10750:6630773,18212135 -g1,10750:6303093,18212135 -(1,10750:6303093,18212135:0,0,0 -) -g1,10750:6630773,18212135 -) -g1,10758:7579210,18212135 -g1,10758:9159939,18212135 -g1,10758:10108376,18212135 -h1,10758:10424522,18212135:0,0,0 -k1,10758:32583030,18212135:22158508 -g1,10758:32583030,18212135 -) -(1,10758:6630773,18878313:25952256,410518,31456 -h1,10758:6630773,18878313:0,0,0 -g1,10758:7579210,18878313 -g1,10758:7895356,18878313 -g1,10758:8527648,18878313 -g1,10758:10740668,18878313 -g1,10758:11056814,18878313 -g1,10758:11372960,18878313 -g1,10758:11689106,18878313 -g1,10758:12005252,18878313 -g1,10758:13902126,18878313 -g1,10758:14850563,18878313 -h1,10758:15482854,18878313:0,0,0 -k1,10758:32583030,18878313:17100176 -g1,10758:32583030,18878313 -) -(1,10758:6630773,19544491:25952256,404226,82312 -h1,10758:6630773,19544491:0,0,0 -g1,10758:7579210,19544491 -g1,10758:7895356,19544491 -g1,10758:8211502,19544491 -g1,10758:9476085,19544491 -g1,10758:12005251,19544491 -g1,10758:15166708,19544491 -g1,10758:16431291,19544491 -h1,10758:17695874,19544491:0,0,0 -k1,10758:32583029,19544491:14887155 -g1,10758:32583029,19544491 -) -(1,10758:6630773,20210669:25952256,410518,107478 -h1,10758:6630773,20210669:0,0,0 -g1,10758:7579210,20210669 -g1,10758:7895356,20210669 -g1,10758:8527648,20210669 -g1,10758:13902125,20210669 -g1,10758:14850562,20210669 -h1,10758:15482853,20210669:0,0,0 -k1,10758:32583029,20210669:17100176 -g1,10758:32583029,20210669 -) -(1,10758:6630773,20876847:25952256,404226,82312 -h1,10758:6630773,20876847:0,0,0 -g1,10758:7579210,20876847 -g1,10758:7895356,20876847 -g1,10758:8211502,20876847 -g1,10758:9476085,20876847 -g1,10758:12005251,20876847 -g1,10758:15166708,20876847 -g1,10758:16431291,20876847 -h1,10758:17695874,20876847:0,0,0 -k1,10758:32583029,20876847:14887155 -g1,10758:32583029,20876847 -) -(1,10758:6630773,21543025:25952256,410518,101187 -h1,10758:6630773,21543025:0,0,0 -g1,10758:7579210,21543025 -g1,10758:7895356,21543025 -g1,10758:8527648,21543025 -g1,10758:11689105,21543025 -g1,10758:12005251,21543025 -g1,10758:13902125,21543025 -g1,10758:14850562,21543025 -h1,10758:15482853,21543025:0,0,0 -k1,10758:32583029,21543025:17100176 -g1,10758:32583029,21543025 -) -(1,10758:6630773,22209203:25952256,404226,82312 -h1,10758:6630773,22209203:0,0,0 -g1,10758:7579210,22209203 -g1,10758:7895356,22209203 -g1,10758:8211502,22209203 -g1,10758:9476085,22209203 -g1,10758:12005251,22209203 -g1,10758:15166708,22209203 -g1,10758:16431291,22209203 -h1,10758:17695874,22209203:0,0,0 -k1,10758:32583029,22209203:14887155 -g1,10758:32583029,22209203 -) -(1,10760:6630773,23530741:25952256,404226,82312 -(1,10759:6630773,23530741:0,0,0 -g1,10759:6630773,23530741 -g1,10759:6630773,23530741 -g1,10759:6303093,23530741 -(1,10759:6303093,23530741:0,0,0 -) -g1,10759:6630773,23530741 -) -k1,10760:6630773,23530741:0 -g1,10760:11372959,23530741 -k1,10760:11372959,23530741:0 -h1,10760:16431290,23530741:0,0,0 -k1,10760:32583029,23530741:16151739 -g1,10760:32583029,23530741 -) -(1,10774:6630773,24196919:25952256,410518,101187 -(1,10762:6630773,24196919:0,0,0 -g1,10762:6630773,24196919 -g1,10762:6630773,24196919 -g1,10762:6303093,24196919 -(1,10762:6303093,24196919:0,0,0 -) -g1,10762:6630773,24196919 -) -g1,10774:7579210,24196919 -g1,10774:10424521,24196919 -g1,10774:11372958,24196919 -g1,10774:14218269,24196919 -h1,10774:15798997,24196919:0,0,0 -k1,10774:32583029,24196919:16784032 -g1,10774:32583029,24196919 -) -(1,10774:6630773,24863097:25952256,379060,0 -h1,10774:6630773,24863097:0,0,0 -h1,10774:7263064,24863097:0,0,0 -k1,10774:32583028,24863097:25319964 -g1,10774:32583028,24863097 -) -(1,10774:6630773,25529275:25952256,404226,101187 -h1,10774:6630773,25529275:0,0,0 -g1,10774:7579210,25529275 -g1,10774:9476084,25529275 -g1,10774:10424521,25529275 -g1,10774:11056813,25529275 -g1,10774:11689105,25529275 -h1,10774:12005251,25529275:0,0,0 -k1,10774:32583029,25529275:20577778 -g1,10774:32583029,25529275 -) -(1,10774:6630773,26195453:25952256,404226,101187 -h1,10774:6630773,26195453:0,0,0 -g1,10774:7579210,26195453 -g1,10774:9476084,26195453 -g1,10774:10424521,26195453 -g1,10774:11056813,26195453 -g1,10774:11689105,26195453 -g1,10774:12321397,26195453 -g1,10774:12953689,26195453 -h1,10774:13269835,26195453:0,0,0 -k1,10774:32583029,26195453:19313194 -g1,10774:32583029,26195453 -) -(1,10774:6630773,26861631:25952256,404226,101187 -h1,10774:6630773,26861631:0,0,0 -g1,10774:7579210,26861631 -g1,10774:9476084,26861631 -g1,10774:10424521,26861631 -g1,10774:11056813,26861631 -g1,10774:11689105,26861631 -g1,10774:12321397,26861631 -g1,10774:12953689,26861631 -h1,10774:14850563,26861631:0,0,0 -k1,10774:32583029,26861631:17732466 -g1,10774:32583029,26861631 -) -(1,10774:6630773,27527809:25952256,410518,101187 -h1,10774:6630773,27527809:0,0,0 -g1,10774:7579210,27527809 -g1,10774:7895356,27527809 -g1,10774:8211502,27527809 -g1,10774:10424522,27527809 -g1,10774:10740668,27527809 -g1,10774:11056814,27527809 -g1,10774:11372960,27527809 -g1,10774:11689106,27527809 -g1,10774:12953689,27527809 -g1,10774:13902126,27527809 -g1,10774:15166709,27527809 -g1,10774:16115146,27527809 -g1,10774:17063583,27527809 -g1,10774:17379729,27527809 -g1,10774:17695875,27527809 -g1,10774:18012021,27527809 -g1,10774:18328167,27527809 -g1,10774:18644313,27527809 -g1,10774:19276605,27527809 -g1,10774:19592751,27527809 -g1,10774:19908897,27527809 -g1,10774:20225043,27527809 -k1,10774:20225043,27527809:0 -h1,10774:22121917,27527809:0,0,0 -k1,10774:32583029,27527809:10461112 -g1,10774:32583029,27527809 -) -(1,10774:6630773,28193987:25952256,388497,9436 -h1,10774:6630773,28193987:0,0,0 -g1,10774:7579210,28193987 -g1,10774:8211502,28193987 -g1,10774:8527648,28193987 -g1,10774:8843794,28193987 -g1,10774:9159940,28193987 -g1,10774:9476086,28193987 -g1,10774:9792232,28193987 -g1,10774:10424524,28193987 -h1,10774:12637544,28193987:0,0,0 -k1,10774:32583028,28193987:19945484 -g1,10774:32583028,28193987 -) -(1,10774:6630773,28860165:25952256,388497,9436 -h1,10774:6630773,28860165:0,0,0 -g1,10774:7579210,28860165 -g1,10774:8211502,28860165 -g1,10774:8527648,28860165 -g1,10774:8843794,28860165 -g1,10774:9159940,28860165 -g1,10774:9476086,28860165 -g1,10774:9792232,28860165 -g1,10774:10424524,28860165 -g1,10774:12953690,28860165 -g1,10774:13902127,28860165 -g1,10774:14218273,28860165 -g1,10774:14534419,28860165 -g1,10774:17063585,28860165 -g1,10774:19276605,28860165 -g1,10774:22438062,28860165 -h1,10774:23386499,28860165:0,0,0 -k1,10774:32583029,28860165:9196530 -g1,10774:32583029,28860165 -) -(1,10774:6630773,29526343:25952256,388497,9436 -h1,10774:6630773,29526343:0,0,0 -g1,10774:7579210,29526343 -g1,10774:8211502,29526343 -g1,10774:8527648,29526343 -g1,10774:8843794,29526343 -g1,10774:9159940,29526343 -g1,10774:9476086,29526343 -g1,10774:9792232,29526343 -g1,10774:10424524,29526343 -g1,10774:12953690,29526343 -g1,10774:13269836,29526343 -g1,10774:13902128,29526343 -g1,10774:14218274,29526343 -g1,10774:14534420,29526343 -g1,10774:14850566,29526343 -g1,10774:17063586,29526343 -g1,10774:19276606,29526343 -g1,10774:22438063,29526343 -h1,10774:23386500,29526343:0,0,0 -k1,10774:32583029,29526343:9196529 -g1,10774:32583029,29526343 -) -(1,10774:6630773,30192521:25952256,379060,0 -h1,10774:6630773,30192521:0,0,0 -g1,10774:7579210,30192521 -k1,10774:7579210,30192521:0 -h1,10774:8527648,30192521:0,0,0 -k1,10774:32583028,30192521:24055380 -g1,10774:32583028,30192521 -) -(1,10774:6630773,30858699:25952256,410518,107478 -h1,10774:6630773,30858699:0,0,0 -g1,10774:7579210,30858699 -g1,10774:10108376,30858699 -g1,10774:12321396,30858699 -g1,10774:12637542,30858699 -g1,10774:13269834,30858699 -g1,10774:15166709,30858699 -g1,10774:17063583,30858699 -g1,10774:18644312,30858699 -g1,10774:20225041,30858699 -g1,10774:21489625,30858699 -g1,10774:23070354,30858699 -g1,10774:24334938,30858699 -g1,10774:25599521,30858699 -g1,10774:26231813,30858699 -g1,10774:26864105,30858699 -h1,10774:27180251,30858699:0,0,0 -k1,10774:32583029,30858699:5402778 -g1,10774:32583029,30858699 -) -] -) -g1,10775:32583029,30966177 -g1,10775:6630773,30966177 -g1,10775:6630773,30966177 -g1,10775:32583029,30966177 -g1,10775:32583029,30966177 -) -h1,10775:6630773,31162785:0,0,0 -(1,10779:6630773,32528561:25952256,513147,126483 -h1,10778:6630773,32528561:983040,0,0 -k1,10778:8273293,32528561:181723 -k1,10778:9323368,32528561:181723 -k1,10778:10696536,32528561:181723 -k1,10778:11687629,32528561:181723 -k1,10778:14144762,32528561:181723 -k1,10778:15418970,32528561:181723 -k1,10778:16548344,32528561:181723 -(1,10778:16548344,32528561:0,452978,115847 -r1,10815:19016881,32528561:2468537,568825,115847 -k1,10778:16548344,32528561:-2468537 -) -(1,10778:16548344,32528561:2468537,452978,115847 -k1,10778:16548344,32528561:3277 -h1,10778:19013604,32528561:0,411205,112570 -) -k1,10778:19198604,32528561:181723 -k1,10778:20248679,32528561:181723 -k1,10778:22199219,32528561:181723 -k1,10778:24519382,32528561:181723 -k1,10778:26343437,32528561:181723 -k1,10778:26881020,32528561:181723 -k1,10778:28056269,32528561:181723 -k1,10778:29631943,32528561:181723 -k1,10778:32583029,32528561:0 -) -(1,10779:6630773,33370049:25952256,505283,134348 -g1,10778:9783710,33370049 -g1,10778:10744467,33370049 -g1,10778:12679089,33370049 -g1,10778:16053537,33370049 -k1,10779:32583029,33370049:13616417 -g1,10779:32583029,33370049 -) -v1,10781:6630773,34560515:0,393216,0 -(1,10815:6630773,45416163:25952256,11248864,196608 -g1,10815:6630773,45416163 -g1,10815:6630773,45416163 -g1,10815:6434165,45416163 -(1,10815:6434165,45416163:0,11248864,196608 -r1,10815:32779637,45416163:26345472,11445472,196608 -k1,10815:6434165,45416163:-26345472 -) -(1,10815:6434165,45416163:26345472,11248864,196608 -[1,10815:6630773,45416163:25952256,11052256,0 -(1,10783:6630773,34768133:25952256,404226,76021 -(1,10782:6630773,34768133:0,0,0 -g1,10782:6630773,34768133 -g1,10782:6630773,34768133 -g1,10782:6303093,34768133 -(1,10782:6303093,34768133:0,0,0 -) -g1,10782:6630773,34768133 -) -g1,10783:9159939,34768133 -g1,10783:10108377,34768133 -k1,10783:10108377,34768133:0 -h1,10783:12005251,34768133:0,0,0 -k1,10783:32583029,34768133:20577778 -g1,10783:32583029,34768133 -) -(1,10784:6630773,35434311:25952256,404226,101187 -h1,10784:6630773,35434311:0,0,0 -g1,10784:8843793,35434311 -g1,10784:9792231,35434311 -g1,10784:12005251,35434311 -g1,10784:12637543,35434311 -g1,10784:13585981,35434311 -g1,10784:14218273,35434311 -g1,10784:14850565,35434311 -g1,10784:15482857,35434311 -g1,10784:16115149,35434311 -g1,10784:17063587,35434311 -g1,10784:17695879,35434311 -g1,10784:18328171,35434311 -g1,10784:18960463,35434311 -g1,10784:19592755,35434311 -k1,10784:19592755,35434311:0 -h1,10784:21805775,35434311:0,0,0 -k1,10784:32583029,35434311:10777254 -g1,10784:32583029,35434311 -) -(1,10785:6630773,36100489:25952256,410518,107478 -h1,10785:6630773,36100489:0,0,0 -g1,10785:7895356,36100489 -g1,10785:8843793,36100489 -g1,10785:9792230,36100489 -g1,10785:14534416,36100489 -g1,10785:15166708,36100489 -g1,10785:18012019,36100489 -h1,10785:18328165,36100489:0,0,0 -k1,10785:32583029,36100489:14254864 -g1,10785:32583029,36100489 -) -(1,10786:6630773,36766667:25952256,404226,101187 -h1,10786:6630773,36766667:0,0,0 -g1,10786:6946919,36766667 -g1,10786:7263065,36766667 -g1,10786:7579211,36766667 -g1,10786:11689105,36766667 -g1,10786:12637543,36766667 -g1,10786:17695874,36766667 -g1,10786:19276603,36766667 -g1,10786:19908895,36766667 -h1,10786:22438060,36766667:0,0,0 -k1,10786:32583029,36766667:10144969 -g1,10786:32583029,36766667 -) -(1,10787:6630773,37432845:25952256,404226,76021 -h1,10787:6630773,37432845:0,0,0 -g1,10787:6946919,37432845 -g1,10787:7263065,37432845 -g1,10787:7579211,37432845 -h1,10787:7895357,37432845:0,0,0 -k1,10787:32583029,37432845:24687672 -g1,10787:32583029,37432845 -) -(1,10788:6630773,38099023:25952256,404226,82312 -h1,10788:6630773,38099023:0,0,0 -g1,10788:10740667,38099023 -g1,10788:13902124,38099023 -g1,10788:14534416,38099023 -h1,10788:15166708,38099023:0,0,0 -k1,10788:32583028,38099023:17416320 -g1,10788:32583028,38099023 -) -(1,10798:6630773,38765201:25952256,410518,9436 -(1,10790:6630773,38765201:0,0,0 -g1,10790:6630773,38765201 -g1,10790:6630773,38765201 -g1,10790:6303093,38765201 -(1,10790:6303093,38765201:0,0,0 -) -g1,10790:6630773,38765201 -) -g1,10798:7579210,38765201 -g1,10798:9159939,38765201 -g1,10798:10108376,38765201 -h1,10798:10424522,38765201:0,0,0 -k1,10798:32583030,38765201:22158508 -g1,10798:32583030,38765201 -) -(1,10798:6630773,39431379:25952256,410518,31456 -h1,10798:6630773,39431379:0,0,0 -g1,10798:7579210,39431379 -g1,10798:7895356,39431379 -g1,10798:8527648,39431379 -g1,10798:10424522,39431379 -g1,10798:11372959,39431379 -h1,10798:12005250,39431379:0,0,0 -k1,10798:32583030,39431379:20577780 -g1,10798:32583030,39431379 -) -(1,10798:6630773,40097557:25952256,404226,82312 -h1,10798:6630773,40097557:0,0,0 -g1,10798:7579210,40097557 -g1,10798:7895356,40097557 -g1,10798:8211502,40097557 -g1,10798:9476085,40097557 -g1,10798:12005251,40097557 -g1,10798:15166708,40097557 -g1,10798:16431291,40097557 -h1,10798:17695874,40097557:0,0,0 -k1,10798:32583029,40097557:14887155 -g1,10798:32583029,40097557 -) -(1,10798:6630773,40763735:25952256,410518,31456 -h1,10798:6630773,40763735:0,0,0 -g1,10798:7579210,40763735 -g1,10798:7895356,40763735 -g1,10798:8527648,40763735 -g1,10798:10424522,40763735 -g1,10798:11372959,40763735 -h1,10798:12005250,40763735:0,0,0 -k1,10798:32583030,40763735:20577780 -g1,10798:32583030,40763735 -) -(1,10798:6630773,41429913:25952256,404226,82312 -h1,10798:6630773,41429913:0,0,0 -g1,10798:7579210,41429913 -g1,10798:7895356,41429913 -g1,10798:8211502,41429913 -g1,10798:9476085,41429913 -g1,10798:12005251,41429913 -g1,10798:15166708,41429913 -g1,10798:16431291,41429913 -h1,10798:17695874,41429913:0,0,0 -k1,10798:32583029,41429913:14887155 -g1,10798:32583029,41429913 -) -(1,10798:6630773,42096091:25952256,410518,31456 -h1,10798:6630773,42096091:0,0,0 -g1,10798:7579210,42096091 -g1,10798:7895356,42096091 -g1,10798:8527648,42096091 -g1,10798:10424522,42096091 -g1,10798:11372959,42096091 -h1,10798:12005250,42096091:0,0,0 -k1,10798:32583030,42096091:20577780 -g1,10798:32583030,42096091 -) -(1,10798:6630773,42762269:25952256,404226,82312 -h1,10798:6630773,42762269:0,0,0 -g1,10798:7579210,42762269 -g1,10798:7895356,42762269 -g1,10798:8211502,42762269 -g1,10798:9476085,42762269 -g1,10798:12005251,42762269 -g1,10798:15166708,42762269 -g1,10798:16431291,42762269 -h1,10798:17695874,42762269:0,0,0 -k1,10798:32583029,42762269:14887155 -g1,10798:32583029,42762269 -) -(1,10800:6630773,44083807:25952256,404226,82312 -(1,10799:6630773,44083807:0,0,0 -g1,10799:6630773,44083807 -g1,10799:6630773,44083807 -g1,10799:6303093,44083807 -(1,10799:6303093,44083807:0,0,0 -) -g1,10799:6630773,44083807 -) -k1,10800:6630773,44083807:0 -g1,10800:11372959,44083807 -h1,10800:13902124,44083807:0,0,0 -k1,10800:32583028,44083807:18680904 -g1,10800:32583028,44083807 -) -(1,10814:6630773,44749985:25952256,410518,101187 -(1,10802:6630773,44749985:0,0,0 -g1,10802:6630773,44749985 -g1,10802:6630773,44749985 -g1,10802:6303093,44749985 -(1,10802:6303093,44749985:0,0,0 -) -g1,10802:6630773,44749985 -) -g1,10814:7579210,44749985 -g1,10814:10424521,44749985 -g1,10814:11372958,44749985 -g1,10814:14218269,44749985 -h1,10814:15798997,44749985:0,0,0 -k1,10814:32583029,44749985:16784032 -g1,10814:32583029,44749985 -) -(1,10814:6630773,45416163:25952256,379060,0 -h1,10814:6630773,45416163:0,0,0 -h1,10814:7263064,45416163:0,0,0 -k1,10814:32583028,45416163:25319964 -g1,10814:32583028,45416163 -) -] -) -g1,10815:32583029,45416163 -g1,10815:6630773,45416163 -g1,10815:6630773,45416163 -g1,10815:32583029,45416163 -g1,10815:32583029,45416163 -) -] -(1,10815:32583029,45706769:0,0,0 -g1,10815:32583029,45706769 -) -) -] -(1,10815:6630773,47279633:25952256,0,0 -h1,10815:6630773,47279633:25952256,0,0 -) -] -(1,10815:4262630,4025873:0,0,0 -[1,10815:-473656,4025873:0,0,0 -(1,10815:-473656,-710413:0,0,0 -(1,10815:-473656,-710413:0,0,0 -g1,10815:-473656,-710413 -) -g1,10815:-473656,-710413 -) -] -) -] -!27669 -}180 -!12 -{181 -[1,10825:4262630,47279633:28320399,43253760,0 -(1,10825:4262630,4025873:0,0,0 -[1,10825:-473656,4025873:0,0,0 -(1,10825:-473656,-710413:0,0,0 -(1,10825:-473656,-644877:0,0,0 -k1,10825:-473656,-644877:-65536 -) -(1,10825:-473656,4736287:0,0,0 -k1,10825:-473656,4736287:5209943 -) -g1,10825:-473656,-710413 +k1,8606:62087500,1915420:25935872 +g1,8606:62087500,1915420 ) ] ) -[1,10825:6630773,47279633:25952256,43253760,0 -[1,10825:6630773,4812305:25952256,786432,0 -(1,10825:6630773,4812305:25952256,505283,134348 -(1,10825:6630773,4812305:25952256,505283,134348 -g1,10825:3078558,4812305 -[1,10825:3078558,4812305:0,0,0 -(1,10825:3078558,2439708:0,1703936,0 -k1,10825:1358238,2439708:-1720320 -(1,8393:1358238,2439708:1720320,1703936,0 -(1,8393:1358238,2439708:1179648,16384,0 -r1,10825:2537886,2439708:1179648,16384,0 +g1,8606:36675916,2439708 +(1,8606:36675916,2439708:1179648,16384,0 +r1,10003:37855564,2439708:1179648,16384,0 ) -g1,8393:3062174,2439708 -(1,8393:3062174,2439708:16384,1703936,0 -[1,8393:3062174,2439708:25952256,1703936,0 -(1,8393:3062174,1915420:25952256,1179648,0 -(1,8393:3062174,1915420:16384,1179648,0 -r1,10825:3078558,1915420:16384,1179648,0 ) -k1,8393:29014430,1915420:25935872 -g1,8393:29014430,1915420 +k1,10003:3078556,2439708:-34777008 ) ] +[1,10003:3078558,4812305:0,0,0 +(1,10003:3078558,49800853:0,16384,2228224 +k1,10003:1358238,49800853:-1720320 +(1,8606:1358238,49800853:1720320,16384,2228224 +(1,8606:1358238,49800853:1179648,16384,0 +r1,10003:2537886,49800853:1179648,16384,0 ) +g1,8606:3062174,49800853 +(1,8606:3062174,52029077:16384,1703936,0 +[1,8606:3062174,52029077:25952256,1703936,0 +(1,8606:3062174,51504789:25952256,1179648,0 +(1,8606:3062174,51504789:16384,1179648,0 +r1,10003:3078558,51504789:16384,1179648,0 ) +k1,8606:29014430,51504789:25935872 +g1,8606:29014430,51504789 ) ] -[1,10825:3078558,4812305:0,0,0 -(1,10825:3078558,2439708:0,1703936,0 -g1,10825:29030814,2439708 -g1,10825:36135244,2439708 -(1,8393:36135244,2439708:1720320,1703936,0 -(1,8393:36135244,2439708:16384,1703936,0 -[1,8393:36135244,2439708:25952256,1703936,0 -(1,8393:36135244,1915420:25952256,1179648,0 -(1,8393:36135244,1915420:16384,1179648,0 -r1,10825:36151628,1915420:16384,1179648,0 -) -k1,8393:62087500,1915420:25935872 -g1,8393:62087500,1915420 ) -] ) -g1,8393:36675916,2439708 -(1,8393:36675916,2439708:1179648,16384,0 -r1,10825:37855564,2439708:1179648,16384,0 ) +] +[1,10003:3078558,4812305:0,0,0 +(1,10003:3078558,49800853:0,16384,2228224 +g1,10003:29030814,49800853 +g1,10003:36135244,49800853 +(1,8606:36135244,49800853:1720320,16384,2228224 +(1,8606:36135244,52029077:16384,1703936,0 +[1,8606:36135244,52029077:25952256,1703936,0 +(1,8606:36135244,51504789:25952256,1179648,0 +(1,8606:36135244,51504789:16384,1179648,0 +r1,10003:36151628,51504789:16384,1179648,0 ) -k1,10825:3078556,2439708:-34777008 +k1,8606:62087500,51504789:25935872 +g1,8606:62087500,51504789 ) ] -[1,10825:3078558,4812305:0,0,0 -(1,10825:3078558,49800853:0,16384,2228224 -k1,10825:1358238,49800853:-1720320 -(1,8393:1358238,49800853:1720320,16384,2228224 -(1,8393:1358238,49800853:1179648,16384,0 -r1,10825:2537886,49800853:1179648,16384,0 ) -g1,8393:3062174,49800853 -(1,8393:3062174,52029077:16384,1703936,0 -[1,8393:3062174,52029077:25952256,1703936,0 -(1,8393:3062174,51504789:25952256,1179648,0 -(1,8393:3062174,51504789:16384,1179648,0 -r1,10825:3078558,51504789:16384,1179648,0 +g1,8606:36675916,49800853 +(1,8606:36675916,49800853:1179648,16384,0 +r1,10003:37855564,49800853:1179648,16384,0 ) -k1,8393:29014430,51504789:25935872 -g1,8393:29014430,51504789 +) +k1,10003:3078556,49800853:-34777008 ) ] +g1,10003:6630773,4812305 +k1,10003:21643106,4812305:13816956 +g1,10003:23265777,4812305 +g1,10003:24088253,4812305 +g1,10003:28572226,4812305 +g1,10003:29981905,4812305 +) +) +] +[1,10003:6630773,45706769:25952256,40108032,0 +(1,10003:6630773,45706769:25952256,40108032,0 +(1,10003:6630773,45706769:0,0,0 +g1,10003:6630773,45706769 +) +[1,10003:6630773,45706769:25952256,40108032,0 +v1,9941:6630773,6254097:0,393216,0 +(1,9941:6630773,15303198:25952256,9442317,0 +g1,9941:6630773,15303198 +g1,9941:6237557,15303198 +r1,10003:6368629,15303198:131072,9442317,0 +g1,9941:6567858,15303198 +g1,9941:6764466,15303198 +[1,9941:6764466,15303198:25818563,9442317,0 +(1,9922:6764466,6374028:25818563,513147,126483 +k1,9921:10213683,6374028:234676 +k1,9921:13194973,6374028:234676 +(1,9921:13194973,6374028:0,452978,115847 +r1,10003:14256663,6374028:1061690,568825,115847 +k1,9921:13194973,6374028:-1061690 +) +(1,9921:13194973,6374028:1061690,452978,115847 +g1,9921:13901674,6374028 +h1,9921:14253386,6374028:0,411205,112570 +) +k1,9921:14491339,6374028:234676 +k1,9921:16025594,6374028:234676 +(1,9921:16025594,6374028:0,452978,115847 +r1,10003:19197554,6374028:3171960,568825,115847 +k1,9921:16025594,6374028:-3171960 +) +(1,9921:16025594,6374028:3171960,452978,115847 +k1,9921:16025594,6374028:3277 +h1,9921:19194277,6374028:0,411205,112570 +) +k1,9921:19432230,6374028:234676 +k1,9921:20318335,6374028:234677 +k1,9921:21819167,6374028:234676 +k1,9921:25280836,6374028:234676 +k1,9921:29322498,6374028:234676 +k1,9921:30366544,6374028:234676 +k1,9921:31931601,6374028:234676 +k1,9921:32583029,6374028:0 +) +(1,9922:6764466,7239108:25818563,513147,134348 +g1,9921:8893075,7239108 +g1,9921:11854647,7239108 +g1,9921:15324123,7239108 +g1,9921:16182644,7239108 +k1,9922:32583029,7239108:13459129 +g1,9922:32583029,7239108 +) +v1,9924:6764466,7923963:0,393216,0 +(1,9938:6764466,15106590:25818563,7575843,196608 +g1,9938:6764466,15106590 +g1,9938:6764466,15106590 +g1,9938:6567858,15106590 +(1,9938:6567858,15106590:0,7575843,196608 +r1,10003:32779637,15106590:26211779,7772451,196608 +k1,9938:6567857,15106590:-26211780 +) +(1,9938:6567858,15106590:26211779,7575843,196608 +[1,9938:6764466,15106590:25818563,7379235,0 +(1,9926:6764466,8151794:25818563,424439,112852 +(1,9925:6764466,8151794:0,0,0 +g1,9925:6764466,8151794 +g1,9925:6764466,8151794 +g1,9925:6436786,8151794 +(1,9925:6436786,8151794:0,0,0 +) +g1,9925:6764466,8151794 +) +g1,9926:7428374,8151794 +g1,9926:8424236,8151794 +k1,9926:8424236,8151794:0 +h1,9926:14399408,8151794:0,0,0 +k1,9926:32583028,8151794:18183620 +g1,9926:32583028,8151794 +) +(1,9927:6764466,8836649:25818563,431045,112852 +h1,9927:6764466,8836649:0,0,0 +g1,9927:8756190,8836649 +g1,9927:9752052,8836649 +g1,9927:14731361,8836649 +g1,9927:15395269,8836649 +g1,9927:16723085,8836649 +h1,9927:17055039,8836649:0,0,0 +k1,9927:32583029,8836649:15527990 +g1,9927:32583029,8836649 +) +(1,9928:6764466,9521504:25818563,424439,79822 +h1,9928:6764466,9521504:0,0,0 +g1,9928:7096420,9521504 +g1,9928:7428374,9521504 +g1,9928:9088144,9521504 +g1,9928:10084006,9521504 +h1,9928:12075730,9521504:0,0,0 +k1,9928:32583030,9521504:20507300 +g1,9928:32583030,9521504 +) +(1,9929:6764466,10206359:25818563,424439,79822 +h1,9929:6764466,10206359:0,0,0 +h1,9929:7096420,10206359:0,0,0 +k1,9929:32583028,10206359:25486608 +g1,9929:32583028,10206359 +) +(1,9930:6764466,10891214:25818563,424439,106246 +h1,9930:6764466,10891214:0,0,0 +k1,9930:6764466,10891214:0 +h1,9930:9420098,10891214:0,0,0 +k1,9930:32583030,10891214:23162932 +g1,9930:32583030,10891214 +) +(1,9931:6764466,11576069:25818563,0,0 +h1,9931:6764466,11576069:0,0,0 +h1,9931:6764466,11576069:0,0,0 +k1,9931:32583030,11576069:25818564 +g1,9931:32583030,11576069 +) +(1,9932:6764466,12260924:25818563,424439,112852 +h1,9932:6764466,12260924:0,0,0 +g1,9932:7428374,12260924 +g1,9932:8424236,12260924 +k1,9932:8424236,12260924:0 +h1,9932:14399408,12260924:0,0,0 +k1,9932:32583028,12260924:18183620 +g1,9932:32583028,12260924 +) +(1,9933:6764466,12945779:25818563,431045,112852 +h1,9933:6764466,12945779:0,0,0 +g1,9933:8756190,12945779 +g1,9933:9752052,12945779 +g1,9933:14067454,12945779 +h1,9933:14399408,12945779:0,0,0 +k1,9933:32583028,12945779:18183620 +g1,9933:32583028,12945779 +) +(1,9934:6764466,13630634:25818563,424439,79822 +h1,9934:6764466,13630634:0,0,0 +g1,9934:7096420,13630634 +g1,9934:7428374,13630634 +g1,9934:9088144,13630634 +g1,9934:10084006,13630634 +h1,9934:12075730,13630634:0,0,0 +k1,9934:32583030,13630634:20507300 +g1,9934:32583030,13630634 +) +(1,9935:6764466,14315489:25818563,424439,79822 +h1,9935:6764466,14315489:0,0,0 +h1,9935:7096420,14315489:0,0,0 +k1,9935:32583028,14315489:25486608 +g1,9935:32583028,14315489 +) +(1,9936:6764466,15000344:25818563,424439,106246 +h1,9936:6764466,15000344:0,0,0 +k1,9936:6764466,15000344:0 +h1,9936:9420098,15000344:0,0,0 +k1,9936:32583030,15000344:23162932 +g1,9936:32583030,15000344 +) +] +) +g1,9938:32583029,15106590 +g1,9938:6764466,15106590 +g1,9938:6764466,15106590 +g1,9938:32583029,15106590 +g1,9938:32583029,15106590 +) +h1,9938:6764466,15303198:0,0,0 +] +g1,9941:32583029,15303198 +) +h1,9941:6630773,15303198:0,0,0 +v1,9944:6630773,16168278:0,393216,0 +(1,9981:6630773,39461770:25952256,23686708,0 +g1,9981:6630773,39461770 +g1,9981:6237557,39461770 +r1,10003:6368629,39461770:131072,23686708,0 +g1,9981:6567858,39461770 +g1,9981:6764466,39461770 +[1,9981:6764466,39461770:25818563,23686708,0 +(1,9945:6764466,16476576:25818563,701514,196608 +(1,9944:6764466,16476576:0,701514,196608 +r1,10003:8010564,16476576:1246098,898122,196608 +k1,9944:6764466,16476576:-1246098 +) +(1,9944:6764466,16476576:1246098,701514,196608 +) +k1,9944:8248338,16476576:237774 +k1,9944:8576018,16476576:327680 +(1,9944:8576018,16476576:0,459977,115847 +r1,10003:9637707,16476576:1061689,575824,115847 +k1,9944:8576018,16476576:-1061689 +) +(1,9944:8576018,16476576:1061689,459977,115847 +k1,9944:8576018,16476576:3277 +h1,9944:9634430,16476576:0,411205,112570 +) +k1,9944:9875482,16476576:237775 +k1,9944:11858480,16476576:237774 +k1,9944:12782417,16476576:237775 +k1,9944:16110214,16476576:237774 +k1,9944:18376984,16476576:237775 +k1,9944:19230796,16476576:237774 +k1,9944:20487656,16476576:237775 +k1,9944:23255120,16476576:237774 +k1,9944:24152187,16476576:237775 +k1,9944:26500876,16476576:237774 +k1,9944:28213866,16476576:237775 +k1,9944:31313597,16476576:237774 +k1,9945:32583029,16476576:0 +) +(1,9945:6764466,17341656:25818563,513147,126483 +k1,9944:9482790,17341656:197154 +k1,9944:12613335,17341656:197154 +k1,9944:14007177,17341656:197155 +k1,9944:17618101,17341656:197154 +k1,9944:21001615,17341656:197154 +k1,9944:21814807,17341656:197154 +k1,9944:23031047,17341656:197155 +k1,9944:24643123,17341656:197154 +k1,9944:25972739,17341656:197154 +k1,9944:26917659,17341656:197154 +k1,9944:29947935,17341656:197155 +k1,9944:31635378,17341656:197154 +k1,9944:32583029,17341656:0 +) +(1,9945:6764466,18206736:25818563,513147,126483 +k1,9944:8424493,18206736:208405 +k1,9944:11256303,18206736:208404 +k1,9944:12124000,18206736:208405 +k1,9944:13351489,18206736:208404 +k1,9944:15537771,18206736:208405 +k1,9944:16429060,18206736:208404 +k1,9944:17804661,18206736:208405 +k1,9944:20232115,18206736:208405 +k1,9944:22137901,18206736:208404 +k1,9944:23683240,18206736:208405 +k1,9944:26183438,18206736:208404 +k1,9944:27410928,18206736:208405 +k1,9944:30696247,18206736:208404 +k1,9944:31563944,18206736:208405 +k1,9944:32583029,18206736:0 +) +(1,9945:6764466,19071816:25818563,513147,126483 +k1,9944:9227268,19071816:184115 +k1,9944:10761425,19071816:184115 +k1,9944:11604833,19071816:184116 +k1,9944:14864553,19071816:184115 +k1,9944:15664706,19071816:184115 +k1,9944:16867906,19071816:184115 +k1,9944:18640614,19071816:184115 +k1,9944:20174771,19071816:184115 +k1,9944:22056269,19071816:184116 +k1,9944:23231944,19071816:184115 +k1,9944:24810665,19071816:184115 +k1,9944:25646208,19071816:184115 +k1,9944:27159393,19071816:184115 +k1,9944:28911130,19071816:184116 +k1,9944:30251955,19071816:184115 +k1,9944:30967567,19071816:184115 +k1,9945:32583029,19071816:0 +) +(1,9945:6764466,19936896:25818563,505283,134348 +k1,9944:8327076,19936896:151620 +k1,9944:11195819,19936896:151620 +k1,9944:13078901,19936896:151621 +k1,9944:15115992,19936896:151620 +k1,9944:16135964,19936896:151620 +k1,9944:17391866,19936896:151620 +k1,9944:18358754,19936896:151620 +k1,9944:19904326,19936896:151621 +k1,9944:20411806,19936896:151620 +k1,9944:21663120,19936896:151620 +k1,9944:22466168,19936896:151620 +(1,9944:22466168,19936896:0,452978,115847 +r1,10003:24934705,19936896:2468537,568825,115847 +k1,9944:22466168,19936896:-2468537 +) +(1,9944:22466168,19936896:2468537,452978,115847 +k1,9944:22466168,19936896:3277 +h1,9944:24931428,19936896:0,411205,112570 +) +k1,9944:25259995,19936896:151620 +k1,9944:26603061,19936896:151621 +k1,9944:29227354,19936896:151620 +k1,9944:29910471,19936896:151620 +k1,9944:32583029,19936896:0 +) +(1,9945:6764466,20801976:25818563,513147,115847 +k1,9944:8844424,20801976:185312 +k1,9944:9681164,20801976:185312 +k1,9944:10885561,20801976:185312 +k1,9944:12559196,20801976:185312 +k1,9944:13403800,20801976:185312 +k1,9944:14608197,20801976:185312 +k1,9944:16177629,20801976:185312 +k1,9944:19253734,20801976:185312 +k1,9944:21324516,20801976:185311 +k1,9944:22378180,20801976:185312 +k1,9944:23667774,20801976:185312 +k1,9944:24668354,20801976:185312 +k1,9944:26247617,20801976:185312 +k1,9944:26788789,20801976:185312 +k1,9944:28073795,20801976:185312 +k1,9944:28910535,20801976:185312 +(1,9944:28910535,20801976:0,452978,115847 +r1,10003:31027360,20801976:2116825,568825,115847 +k1,9944:28910535,20801976:-2116825 +) +(1,9944:28910535,20801976:2116825,452978,115847 +k1,9944:28910535,20801976:3277 +h1,9944:31024083,20801976:0,411205,112570 +) +k1,9944:31386342,20801976:185312 +k1,9944:32583029,20801976:0 +) +(1,9945:6764466,21667056:25818563,513147,134348 +k1,9944:9667875,21667056:241992 +k1,9944:11778297,21667056:241991 +k1,9944:14011273,21667056:241992 +k1,9944:15272350,21667056:241992 +k1,9944:16606826,21667056:241991 +k1,9944:17508110,21667056:241992 +k1,9944:19446829,21667056:241992 +k1,9944:20861259,21667056:241991 +k1,9944:24302719,21667056:241992 +k1,9944:25413063,21667056:241992 +k1,9944:27675529,21667056:241991 +k1,9944:30572384,21667056:241992 +k1,9944:32583029,21667056:0 +) +(1,9945:6764466,22532136:25818563,513147,126483 +k1,9944:10173809,22532136:269513 +k1,9944:11059360,22532136:269513 +(1,9944:11059360,22532136:0,414482,115847 +r1,10003:11417626,22532136:358266,530329,115847 +k1,9944:11059360,22532136:-358266 +) +(1,9944:11059360,22532136:358266,414482,115847 +k1,9944:11059360,22532136:3277 +h1,9944:11414349,22532136:0,411205,112570 +) +k1,9944:11860808,22532136:269512 +k1,9944:13321766,22532136:269513 +k1,9944:14761752,22532136:269513 +k1,9944:15714150,22532136:269513 +k1,9944:17768208,22532136:269513 +k1,9944:19103991,22532136:269512 +k1,9944:20032796,22532136:269513 +k1,9944:21321394,22532136:269513 +k1,9944:23005829,22532136:269513 +k1,9944:24973380,22532136:269513 +k1,9944:26261977,22532136:269512 +k1,9944:30590135,22532136:269513 +k1,9944:32224763,22532136:269513 +(1,9944:32224763,22532136:0,452978,115847 +r1,10003:32583029,22532136:358266,568825,115847 +k1,9944:32224763,22532136:-358266 +) +(1,9944:32224763,22532136:358266,452978,115847 +k1,9944:32224763,22532136:3277 +h1,9944:32579752,22532136:0,411205,112570 +) +k1,9944:32583029,22532136:0 +) +(1,9945:6764466,23397216:25818563,505283,11795 +g1,9944:9455374,23397216 +k1,9945:32583029,23397216:21758608 +g1,9945:32583029,23397216 +) +v1,9947:6764466,24082071:0,393216,0 +(1,9974:6764466,33948199:25818563,10259344,196608 +g1,9974:6764466,33948199 +g1,9974:6764466,33948199 +g1,9974:6567858,33948199 +(1,9974:6567858,33948199:0,10259344,196608 +r1,10003:32779637,33948199:26211779,10455952,196608 +k1,9974:6567857,33948199:-26211780 +) +(1,9974:6567858,33948199:26211779,10259344,196608 +[1,9974:6764466,33948199:25818563,10062736,0 +(1,9949:6764466,24309902:25818563,424439,9908 +(1,9948:6764466,24309902:0,0,0 +g1,9948:6764466,24309902 +g1,9948:6764466,24309902 +g1,9948:6436786,24309902 +(1,9948:6436786,24309902:0,0,0 +) +g1,9948:6764466,24309902 +) +g1,9949:7428374,24309902 +g1,9949:8424236,24309902 +h1,9949:8756190,24309902:0,0,0 +k1,9949:32583030,24309902:23826840 +g1,9949:32583030,24309902 +) +(1,9950:6764466,24994757:25818563,407923,9908 +h1,9950:6764466,24994757:0,0,0 +g1,9950:7428374,24994757 +g1,9950:8424236,24994757 +k1,9950:8424236,24994757:0 +h1,9950:10747914,24994757:0,0,0 +k1,9950:32583030,24994757:21835116 +g1,9950:32583030,24994757 +) +(1,9951:6764466,25679612:25818563,424439,112852 +h1,9951:6764466,25679612:0,0,0 +g1,9951:8424236,25679612 +g1,9951:9420098,25679612 +k1,9951:9420098,25679612:0 +h1,9951:13403545,25679612:0,0,0 +k1,9951:32583029,25679612:19179484 +g1,9951:32583029,25679612 +) +(1,9952:6764466,26364467:25818563,431045,79822 +h1,9952:6764466,26364467:0,0,0 +g1,9952:8756190,26364467 +g1,9952:9752052,26364467 +g1,9952:11743776,26364467 +h1,9952:12075730,26364467:0,0,0 +k1,9952:32583030,26364467:20507300 +g1,9952:32583030,26364467 +) +(1,9953:6764466,27049322:25818563,431045,79822 +h1,9953:6764466,27049322:0,0,0 +g1,9953:7096420,27049322 +g1,9953:7428374,27049322 +g1,9953:8424236,27049322 +g1,9953:10415960,27049322 +g1,9953:11079868,27049322 +g1,9953:12075730,27049322 +k1,9953:12075730,27049322:0 +h1,9953:14067454,27049322:0,0,0 +k1,9953:32583030,27049322:18515576 +g1,9953:32583030,27049322 +) +(1,9954:6764466,27734177:25818563,424439,79822 +h1,9954:6764466,27734177:0,0,0 +g1,9954:7096420,27734177 +g1,9954:7428374,27734177 +g1,9954:8092282,27734177 +g1,9954:9088144,27734177 +g1,9954:9752052,27734177 +g1,9954:10415960,27734177 +h1,9954:11743776,27734177:0,0,0 +k1,9954:32583028,27734177:20839252 +g1,9954:32583028,27734177 +) +(1,9955:6764466,28419032:25818563,431045,79822 +h1,9955:6764466,28419032:0,0,0 +g1,9955:7096420,28419032 +g1,9955:7428374,28419032 +g1,9955:8424236,28419032 +g1,9955:9420098,28419032 +g1,9955:10084006,28419032 +g1,9955:11743776,28419032 +k1,9955:11743776,28419032:0 +h1,9955:14067454,28419032:0,0,0 +k1,9955:32583030,28419032:18515576 +g1,9955:32583030,28419032 +) +(1,9956:6764466,29103887:25818563,424439,79822 +h1,9956:6764466,29103887:0,0,0 +h1,9956:7096420,29103887:0,0,0 +k1,9956:32583028,29103887:25486608 +g1,9956:32583028,29103887 +) +(1,9957:6764466,29788742:25818563,424439,6605 +h1,9957:6764466,29788742:0,0,0 +h1,9957:7096420,29788742:0,0,0 +k1,9957:32583028,29788742:25486608 +g1,9957:32583028,29788742 +) +(1,9961:6764466,30604669:25818563,424439,79822 +(1,9959:6764466,30604669:0,0,0 +g1,9959:6764466,30604669 +g1,9959:6764466,30604669 +g1,9959:6436786,30604669 +(1,9959:6436786,30604669:0,0,0 +) +g1,9959:6764466,30604669 +) +g1,9961:7760328,30604669 +g1,9961:9088144,30604669 +h1,9961:10084006,30604669:0,0,0 +k1,9961:32583030,30604669:22499024 +g1,9961:32583030,30604669 +) +(1,9963:6764466,31420596:25818563,424439,0 +(1,9962:6764466,31420596:0,0,0 +g1,9962:6764466,31420596 +g1,9962:6764466,31420596 +g1,9962:6436786,31420596 +(1,9962:6436786,31420596:0,0,0 +) +g1,9962:6764466,31420596 +) +h1,9963:7096420,31420596:0,0,0 +k1,9963:32583028,31420596:25486608 +g1,9963:32583028,31420596 +) +(1,9967:6764466,32236523:25818563,424439,79822 +(1,9965:6764466,32236523:0,0,0 +g1,9965:6764466,32236523 +g1,9965:6764466,32236523 +g1,9965:6436786,32236523 +(1,9965:6436786,32236523:0,0,0 +) +g1,9965:6764466,32236523 +) +g1,9967:7760328,32236523 +g1,9967:9088144,32236523 +h1,9967:9752052,32236523:0,0,0 +k1,9967:32583028,32236523:22830976 +g1,9967:32583028,32236523 +) +(1,9969:6764466,33052450:25818563,424439,79822 +(1,9968:6764466,33052450:0,0,0 +g1,9968:6764466,33052450 +g1,9968:6764466,33052450 +g1,9968:6436786,33052450 +(1,9968:6436786,33052450:0,0,0 +) +g1,9968:6764466,33052450 +) +h1,9969:8092282,33052450:0,0,0 +k1,9969:32583030,33052450:24490748 +g1,9969:32583030,33052450 +) +(1,9973:6764466,33868377:25818563,424439,79822 +(1,9971:6764466,33868377:0,0,0 +g1,9971:6764466,33868377 +g1,9971:6764466,33868377 +g1,9971:6436786,33868377 +(1,9971:6436786,33868377:0,0,0 +) +g1,9971:6764466,33868377 +) +g1,9973:7760328,33868377 +g1,9973:9088144,33868377 +h1,9973:9752052,33868377:0,0,0 +k1,9973:32583028,33868377:22830976 +g1,9973:32583028,33868377 +) +] +) +g1,9974:32583029,33948199 +g1,9974:6764466,33948199 +g1,9974:6764466,33948199 +g1,9974:32583029,33948199 +g1,9974:32583029,33948199 +) +h1,9974:6764466,34144807:0,0,0 +(1,9978:6764466,35009887:25818563,513147,126483 +h1,9977:6764466,35009887:983040,0,0 +k1,9977:9522574,35009887:223175 +k1,9977:10211710,35009887:223175 +k1,9977:11605358,35009887:223175 +k1,9977:13094690,35009887:223176 +k1,9977:14336950,35009887:223175 +k1,9977:16056312,35009887:223175 +k1,9977:16895525,35009887:223175 +k1,9977:18137785,35009887:223175 +k1,9977:21022377,35009887:223175 +k1,9977:23100877,35009887:223176 +k1,9977:25807867,35009887:223175 +k1,9977:26682470,35009887:223175 +k1,9977:30744089,35009887:223175 +k1,9978:32583029,35009887:0 +) +(1,9978:6764466,35874967:25818563,513147,134348 +(1,9977:6764466,35874967:0,452978,115847 +r1,10003:9233003,35874967:2468537,568825,115847 +k1,9977:6764466,35874967:-2468537 +) +(1,9977:6764466,35874967:2468537,452978,115847 +k1,9977:6764466,35874967:3277 +h1,9977:9229726,35874967:0,411205,112570 +) +k1,9977:9433963,35874967:200960 +k1,9977:13151586,35874967:200961 +k1,9977:14543991,35874967:200960 +k1,9977:15862996,35874967:200961 +k1,9977:16522053,35874967:200960 +k1,9977:18424984,35874967:200961 +k1,9977:21921094,35874967:200960 +k1,9977:23452436,35874967:200961 +k1,9977:24672481,35874967:200960 +k1,9977:26884087,35874967:200961 +k1,9977:27752203,35874967:200960 +(1,9977:27752203,35874967:0,414482,115847 +r1,10003:28110469,35874967:358266,530329,115847 +k1,9977:27752203,35874967:-358266 +) +(1,9977:27752203,35874967:358266,414482,115847 +k1,9977:27752203,35874967:3277 +h1,9977:28107192,35874967:0,411205,112570 +) +k1,9977:28485100,35874967:200961 +(1,9977:28485100,35874967:0,452978,115847 +r1,10003:28843366,35874967:358266,568825,115847 +k1,9977:28485100,35874967:-358266 +) +(1,9977:28485100,35874967:358266,452978,115847 +k1,9977:28485100,35874967:3277 +h1,9977:28840089,35874967:0,411205,112570 +) +k1,9977:29217996,35874967:200960 +(1,9977:29217996,35874967:0,452978,115847 +r1,10003:30631397,35874967:1413401,568825,115847 +k1,9977:29217996,35874967:-1413401 +) +(1,9977:29217996,35874967:1413401,452978,115847 +k1,9977:29217996,35874967:3277 +h1,9977:30628120,35874967:0,411205,112570 +) +k1,9977:30832358,35874967:200961 +k1,9977:32224763,35874967:200960 +(1,9977:32224763,35874967:0,452978,115847 +r1,10003:32583029,35874967:358266,568825,115847 +k1,9977:32224763,35874967:-358266 +) +(1,9977:32224763,35874967:358266,452978,115847 +k1,9977:32224763,35874967:3277 +h1,9977:32579752,35874967:0,411205,112570 +) +k1,9977:32583029,35874967:0 +) +(1,9978:6764466,36740047:25818563,505283,126483 +g1,9977:9186676,36740047 +g1,9977:11395894,36740047 +g1,9977:12614208,36740047 +k1,9978:32583029,36740047:18380228 +g1,9978:32583029,36740047 +) +(1,9980:6764466,37605127:25818563,513147,126483 +h1,9979:6764466,37605127:983040,0,0 +k1,9979:8575341,37605127:200000 +(1,9979:8575341,37605127:0,459977,115847 +r1,10003:9637030,37605127:1061689,575824,115847 +k1,9979:8575341,37605127:-1061689 +) +(1,9979:8575341,37605127:1061689,459977,115847 +k1,9979:8575341,37605127:3277 +h1,9979:9633753,37605127:0,411205,112570 +) +k1,9979:9837030,37605127:200000 +k1,9979:11782254,37605127:200000 +k1,9979:13001338,37605127:199999 +k1,9979:14293823,37605127:200000 +k1,9979:15160979,37605127:200000 +(1,9979:15160979,37605127:0,452978,115847 +r1,10003:17629516,37605127:2468537,568825,115847 +k1,9979:15160979,37605127:-2468537 +) +(1,9979:15160979,37605127:2468537,452978,115847 +k1,9979:15160979,37605127:3277 +h1,9979:17626239,37605127:0,411205,112570 +) +k1,9979:17829516,37605127:200000 +k1,9979:19220961,37605127:200000 +(1,9979:19220961,37605127:0,452978,115847 +r1,10003:21337786,37605127:2116825,568825,115847 +k1,9979:19220961,37605127:-2116825 +) +(1,9979:19220961,37605127:2116825,452978,115847 +k1,9979:19220961,37605127:3277 +h1,9979:21334509,37605127:0,411205,112570 +) +k1,9979:21537786,37605127:200000 +k1,9979:23918168,37605127:199999 +k1,9979:24865934,37605127:200000 +k1,9979:27792887,37605127:200000 +k1,9979:28940538,37605127:200000 +k1,9979:32583029,37605127:0 +) +(1,9980:6764466,38470207:25818563,513147,134348 +k1,9979:10495922,38470207:195133 +k1,9979:11168812,38470207:195133 +k1,9979:12383029,38470207:195132 +(1,9979:12383029,38470207:0,459977,115847 +r1,10003:13444718,38470207:1061689,575824,115847 +k1,9979:12383029,38470207:-1061689 +) +(1,9979:12383029,38470207:1061689,459977,115847 +k1,9979:12383029,38470207:3277 +h1,9979:13441441,38470207:0,411205,112570 +) +k1,9979:13639851,38470207:195133 +k1,9979:16858815,38470207:195133 +k1,9979:17585445,38470207:195133 +k1,9979:18846849,38470207:195133 +k1,9979:21342951,38470207:195133 +k1,9979:23898690,38470207:195132 +k1,9979:25041474,38470207:195133 +k1,9979:26255692,38470207:195133 +k1,9979:30845014,38470207:195133 +k1,9979:32583029,38470207:0 +) +(1,9980:6764466,39335287:25818563,513147,126483 +g1,9979:11338879,39335287 +g1,9979:12557193,39335287 +g1,9979:13848907,39335287 +g1,9979:14707428,39335287 +g1,9979:15262517,39335287 +(1,9979:15262517,39335287:0,452978,115847 +r1,10003:17027630,39335287:1765113,568825,115847 +k1,9979:15262517,39335287:-1765113 +) +(1,9979:15262517,39335287:1765113,452978,115847 +k1,9979:15262517,39335287:3277 +h1,9979:17024353,39335287:0,411205,112570 +) +g1,9979:17226859,39335287 +g1,9979:18108973,39335287 +g1,9979:18664062,39335287 +(1,9979:18664062,39335287:0,414482,115847 +r1,10003:20780887,39335287:2116825,530329,115847 +k1,9979:18664062,39335287:-2116825 +) +(1,9979:18664062,39335287:2116825,414482,115847 +k1,9979:18664062,39335287:3277 +h1,9979:20777610,39335287:0,411205,112570 +) +g1,9979:20980116,39335287 +g1,9979:22594267,39335287 +g1,9979:24130430,39335287 +g1,9979:25077425,39335287 +g1,9979:26926851,39335287 +k1,9980:32583029,39335287:1731882 +g1,9980:32583029,39335287 +) +] +g1,9981:32583029,39461770 +) +h1,9981:6630773,39461770:0,0,0 +(1,9983:6630773,41578588:25952256,555811,139132 +(1,9983:6630773,41578588:2450326,534184,12975 +g1,9983:6630773,41578588 +g1,9983:9081099,41578588 +) +(1,9983:9081099,41578588:0,497948,127104 +r1,10003:11022068,41578588:1940969,625052,127104 +k1,9983:9081099,41578588:-1940969 +) +(1,9983:9081099,41578588:1940969,497948,127104 +k1,9983:9081099,41578588:3277 +h1,9983:11018791,41578588:0,452326,123827 +) +g1,9983:11246988,41578588 +k1,9983:32583029,41578588:19364390 +g1,9983:32583029,41578588 +) +(1,9985:6630773,42836884:25952256,513147,126483 +(1,9984:6630773,42836884:0,452978,115847 +r1,10003:8395886,42836884:1765113,568825,115847 +k1,9984:6630773,42836884:-1765113 +) +(1,9984:6630773,42836884:1765113,452978,115847 +k1,9984:6630773,42836884:3277 +h1,9984:8392609,42836884:0,411205,112570 +) +k1,9984:8690074,42836884:294188 +k1,9984:10729486,42836884:294188 +k1,9984:12015234,42836884:294188 +k1,9984:15614403,42836884:294188 +k1,9984:18059483,42836884:294188 +k1,9984:19820367,42836884:294188 +k1,9984:20580516,42836884:294188 +k1,9984:21940975,42836884:294188 +k1,9984:22921325,42836884:294188 +k1,9984:26520494,42836884:294188 +k1,9984:28327908,42836884:294188 +k1,9984:29308258,42836884:294188 +(1,9984:29308258,42836884:0,459977,115847 +r1,10003:30369947,42836884:1061689,575824,115847 +k1,9984:29308258,42836884:-1061689 +) +(1,9984:29308258,42836884:1061689,459977,115847 +k1,9984:29308258,42836884:3277 +h1,9984:30366670,42836884:0,411205,112570 +) +k1,9984:30664135,42836884:294188 +k1,9984:32583029,42836884:0 +) +(1,9985:6630773,43701964:25952256,513147,134348 +k1,9984:9141676,43701964:171923 +k1,9984:9972891,43701964:171923 +k1,9984:10500673,43701964:171922 +k1,9984:11666122,43701964:171923 +k1,9984:12520930,43701964:171923 +k1,9984:14844400,43701964:171923 +k1,9984:16396511,43701964:171923 +k1,9984:17921096,43701964:171922 +k1,9984:18448879,43701964:171923 +k1,9984:20690429,43701964:171923 +k1,9984:24108350,43701964:171923 +k1,9984:26165744,43701964:171923 +k1,9984:26869163,43701964:171922 +k1,9984:29328293,43701964:171923 +k1,9984:30270919,43701964:171923 +k1,9985:32583029,43701964:0 +) +(1,9985:6630773,44567044:25952256,505283,102891 +g1,9984:8344539,44567044 +g1,9984:9615937,44567044 +g1,9984:11700637,44567044 +g1,9984:13004148,44567044 +g1,9984:14489193,44567044 +g1,9984:15436188,44567044 +g1,9984:15991277,44567044 +k1,9985:32583029,44567044:13906742 +g1,9985:32583029,44567044 +) +] +(1,10003:32583029,45706769:0,0,0 +g1,10003:32583029,45706769 +) +) +] +(1,10003:6630773,47279633:25952256,0,0 +h1,10003:6630773,47279633:25952256,0,0 +) +] +(1,10003:4262630,4025873:0,0,0 +[1,10003:-473656,4025873:0,0,0 +(1,10003:-473656,-710413:0,0,0 +(1,10003:-473656,-710413:0,0,0 +g1,10003:-473656,-710413 +) +g1,10003:-473656,-710413 +) +] +) +] +!26979 +}159 +Input:1476:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1477:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1478:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1479:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1480:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1481:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1482:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!670 +{160 +[1,10085:4262630,47279633:28320399,43253760,0 +(1,10085:4262630,4025873:0,0,0 +[1,10085:-473656,4025873:0,0,0 +(1,10085:-473656,-710413:0,0,0 +(1,10085:-473656,-644877:0,0,0 +k1,10085:-473656,-644877:-65536 ) +(1,10085:-473656,4736287:0,0,0 +k1,10085:-473656,4736287:5209943 ) -) -] -[1,10825:3078558,4812305:0,0,0 -(1,10825:3078558,49800853:0,16384,2228224 -g1,10825:29030814,49800853 -g1,10825:36135244,49800853 -(1,8393:36135244,49800853:1720320,16384,2228224 -(1,8393:36135244,52029077:16384,1703936,0 -[1,8393:36135244,52029077:25952256,1703936,0 -(1,8393:36135244,51504789:25952256,1179648,0 -(1,8393:36135244,51504789:16384,1179648,0 -r1,10825:36151628,51504789:16384,1179648,0 -) -k1,8393:62087500,51504789:25935872 -g1,8393:62087500,51504789 -) -] -) -g1,8393:36675916,49800853 -(1,8393:36675916,49800853:1179648,16384,0 -r1,10825:37855564,49800853:1179648,16384,0 -) -) -k1,10825:3078556,49800853:-34777008 -) -] -g1,10825:6630773,4812305 -k1,10825:21643106,4812305:13816956 -g1,10825:23265777,4812305 -g1,10825:24088253,4812305 -g1,10825:28572226,4812305 -g1,10825:29981905,4812305 -) -) -] -[1,10825:6630773,45706769:25952256,40108032,0 -(1,10825:6630773,45706769:25952256,40108032,0 -(1,10825:6630773,45706769:0,0,0 -g1,10825:6630773,45706769 -) -[1,10825:6630773,45706769:25952256,40108032,0 -v1,10815:6630773,6254097:0,393216,0 -(1,10815:6630773,11898617:25952256,6037736,196608 -g1,10815:6630773,11898617 -g1,10815:6630773,11898617 -g1,10815:6434165,11898617 -(1,10815:6434165,11898617:0,6037736,196608 -r1,10825:32779637,11898617:26345472,6234344,196608 -k1,10815:6434165,11898617:-26345472 -) -(1,10815:6434165,11898617:26345472,6037736,196608 -[1,10815:6630773,11898617:25952256,5841128,0 -(1,10814:6630773,6461715:25952256,404226,101187 -h1,10814:6630773,6461715:0,0,0 -g1,10814:7579210,6461715 -g1,10814:9476084,6461715 -g1,10814:10424521,6461715 -g1,10814:11056813,6461715 -g1,10814:11689105,6461715 -h1,10814:12005251,6461715:0,0,0 -k1,10814:32583029,6461715:20577778 -g1,10814:32583029,6461715 -) -(1,10814:6630773,7127893:25952256,404226,101187 -h1,10814:6630773,7127893:0,0,0 -g1,10814:7579210,7127893 -g1,10814:9476084,7127893 -g1,10814:10424521,7127893 -g1,10814:11056813,7127893 -g1,10814:11689105,7127893 -g1,10814:12321397,7127893 -g1,10814:12953689,7127893 -h1,10814:13269835,7127893:0,0,0 -k1,10814:32583029,7127893:19313194 -g1,10814:32583029,7127893 -) -(1,10814:6630773,7794071:25952256,404226,101187 -h1,10814:6630773,7794071:0,0,0 -g1,10814:7579210,7794071 -g1,10814:9476084,7794071 -g1,10814:10424521,7794071 -g1,10814:11056813,7794071 -g1,10814:11689105,7794071 -g1,10814:12321397,7794071 -g1,10814:12953689,7794071 -h1,10814:14850563,7794071:0,0,0 -k1,10814:32583029,7794071:17732466 -g1,10814:32583029,7794071 -) -(1,10814:6630773,8460249:25952256,410518,101187 -h1,10814:6630773,8460249:0,0,0 -g1,10814:7579210,8460249 -g1,10814:7895356,8460249 -g1,10814:8211502,8460249 -g1,10814:10424522,8460249 -g1,10814:10740668,8460249 -g1,10814:11056814,8460249 -g1,10814:11372960,8460249 -g1,10814:11689106,8460249 -g1,10814:12953689,8460249 -g1,10814:13902126,8460249 -g1,10814:15166709,8460249 -g1,10814:16115146,8460249 -g1,10814:17063583,8460249 -g1,10814:17379729,8460249 -g1,10814:17695875,8460249 -g1,10814:18012021,8460249 -g1,10814:18328167,8460249 -g1,10814:18644313,8460249 -g1,10814:19276605,8460249 -g1,10814:19592751,8460249 -g1,10814:19908897,8460249 -g1,10814:20225043,8460249 -k1,10814:20225043,8460249:0 -h1,10814:22121917,8460249:0,0,0 -k1,10814:32583029,8460249:10461112 -g1,10814:32583029,8460249 -) -(1,10814:6630773,9126427:25952256,388497,9436 -h1,10814:6630773,9126427:0,0,0 -g1,10814:7579210,9126427 -g1,10814:8211502,9126427 -g1,10814:8527648,9126427 -g1,10814:8843794,9126427 -g1,10814:9159940,9126427 -g1,10814:9476086,9126427 -g1,10814:9792232,9126427 -g1,10814:10424524,9126427 -h1,10814:12637544,9126427:0,0,0 -k1,10814:32583028,9126427:19945484 -g1,10814:32583028,9126427 -) -(1,10814:6630773,9792605:25952256,388497,9436 -h1,10814:6630773,9792605:0,0,0 -g1,10814:7579210,9792605 -g1,10814:8211502,9792605 -g1,10814:8527648,9792605 -g1,10814:8843794,9792605 -g1,10814:9159940,9792605 -g1,10814:9476086,9792605 -g1,10814:9792232,9792605 -g1,10814:10424524,9792605 -g1,10814:12953690,9792605 -g1,10814:13902127,9792605 -g1,10814:14218273,9792605 -g1,10814:14534419,9792605 -g1,10814:17063585,9792605 -g1,10814:19276605,9792605 -g1,10814:22438062,9792605 -h1,10814:23386499,9792605:0,0,0 -k1,10814:32583029,9792605:9196530 -g1,10814:32583029,9792605 -) -(1,10814:6630773,10458783:25952256,388497,9436 -h1,10814:6630773,10458783:0,0,0 -g1,10814:7579210,10458783 -g1,10814:8211502,10458783 -g1,10814:8527648,10458783 -g1,10814:8843794,10458783 -g1,10814:9159940,10458783 -g1,10814:9476086,10458783 -g1,10814:9792232,10458783 -g1,10814:10424524,10458783 -g1,10814:12953690,10458783 -g1,10814:13269836,10458783 -g1,10814:13902128,10458783 -g1,10814:14218274,10458783 -g1,10814:14534420,10458783 -g1,10814:14850566,10458783 -g1,10814:17063586,10458783 -g1,10814:19276606,10458783 -g1,10814:22438063,10458783 -h1,10814:23386500,10458783:0,0,0 -k1,10814:32583029,10458783:9196529 -g1,10814:32583029,10458783 -) -(1,10814:6630773,11124961:25952256,379060,0 -h1,10814:6630773,11124961:0,0,0 -g1,10814:7579210,11124961 -k1,10814:7579210,11124961:0 -h1,10814:8527648,11124961:0,0,0 -k1,10814:32583028,11124961:24055380 -g1,10814:32583028,11124961 -) -(1,10814:6630773,11791139:25952256,410518,107478 -h1,10814:6630773,11791139:0,0,0 -g1,10814:7579210,11791139 -g1,10814:10108376,11791139 -g1,10814:12321396,11791139 -g1,10814:12637542,11791139 -g1,10814:13269834,11791139 -g1,10814:15166709,11791139 -g1,10814:17063583,11791139 -g1,10814:18644312,11791139 -g1,10814:20225041,11791139 -g1,10814:21489625,11791139 -g1,10814:23070354,11791139 -g1,10814:24334938,11791139 -g1,10814:25599521,11791139 -g1,10814:26231813,11791139 -g1,10814:26864105,11791139 -h1,10814:27180251,11791139:0,0,0 -k1,10814:32583029,11791139:5402778 -g1,10814:32583029,11791139 -) -] -) -g1,10815:32583029,11898617 -g1,10815:6630773,11898617 -g1,10815:6630773,11898617 -g1,10815:32583029,11898617 -g1,10815:32583029,11898617 -) -h1,10815:6630773,12095225:0,0,0 -(1,10818:6630773,15427081:25952256,32768,229376 -(1,10818:6630773,15427081:0,32768,229376 -(1,10818:6630773,15427081:5505024,32768,229376 -r1,10825:12135797,15427081:5505024,262144,229376 -) -k1,10818:6630773,15427081:-5505024 -) -(1,10818:6630773,15427081:25952256,32768,0 -r1,10825:32583029,15427081:25952256,32768,0 -) -) -(1,10818:6630773,17031409:25952256,606339,161218 -(1,10818:6630773,17031409:2464678,582746,14155 -g1,10818:6630773,17031409 -g1,10818:9095451,17031409 -) -g1,10818:12303307,17031409 -k1,10818:32583029,17031409:17283416 -g1,10818:32583029,17031409 -) -(1,10820:6630773,18266113:25952256,513147,134348 -k1,10819:7835329,18266113:162534 -k1,10819:10273274,18266113:162535 -k1,10819:13168659,18266113:162534 -k1,10819:14140564,18266113:162535 -k1,10819:15322183,18266113:162534 -k1,10819:17859743,18266113:162535 -k1,10819:18689433,18266113:162534 -k1,10819:19266774,18266113:162498 -k1,10819:22558652,18266113:162534 -k1,10819:23337225,18266113:162535 -k1,10819:24518844,18266113:162534 -k1,10819:27025602,18266113:162535 -k1,10819:29779430,18266113:162534 -k1,10819:30154920,18266113:162498 -k1,10819:32583029,18266113:0 -) -(1,10820:6630773,19107601:25952256,513147,134348 -k1,10819:7798000,19107601:148142 -k1,10819:9858483,19107601:148142 -k1,10819:11194138,19107601:148143 -k1,10819:12372506,19107601:148142 -k1,10819:13136686,19107601:148142 -k1,10819:13734405,19107601:148142 -k1,10819:18446729,19107601:148397 -k1,10819:19084425,19107601:148142 -k1,10819:20754968,19107601:148142 -k1,10819:21519148,19107601:148142 -k1,10819:24697676,19107601:148143 -k1,10819:27627821,19107601:148142 -k1,10819:29907194,19107601:148142 -k1,10819:32583029,19107601:0 -) -(1,10820:6630773,19949089:25952256,505283,95026 -g1,10819:8021447,19949089 -g1,10819:11343467,19949089 -g1,10819:11992273,19949089 -k1,10820:32583028,19949089:17078680 -g1,10820:32583028,19949089 -) -] -(1,10825:32583029,45706769:0,0,0 -g1,10825:32583029,45706769 -) -) -] -(1,10825:6630773,47279633:25952256,0,0 -h1,10825:6630773,47279633:25952256,0,0 -) -] -(1,10825:4262630,4025873:0,0,0 -[1,10825:-473656,4025873:0,0,0 -(1,10825:-473656,-710413:0,0,0 -(1,10825:-473656,-710413:0,0,0 -g1,10825:-473656,-710413 -) -g1,10825:-473656,-710413 -) -] -) -] -!10046 -}181 -!12 -{182 -[1,10845:4262630,47279633:28320399,43253760,11795 -(1,10845:4262630,4025873:0,0,0 -[1,10845:-473656,4025873:0,0,0 -(1,10845:-473656,-710413:0,0,0 -(1,10845:-473656,-644877:0,0,0 -k1,10845:-473656,-644877:-65536 -) -(1,10845:-473656,4736287:0,0,0 -k1,10845:-473656,4736287:5209943 -) -g1,10845:-473656,-710413 +g1,10085:-473656,-710413 ) ] ) -[1,10845:6630773,47279633:25952256,43253760,11795 -[1,10845:6630773,4812305:25952256,786432,0 -(1,10845:6630773,4812305:25952256,0,0 -(1,10845:6630773,4812305:25952256,0,0 -g1,10845:3078558,4812305 -[1,10845:3078558,4812305:0,0,0 -(1,10845:3078558,2439708:0,1703936,0 -k1,10845:1358238,2439708:-1720320 -(1,10825:1358238,2439708:1720320,1703936,0 -(1,10825:1358238,2439708:1179648,16384,0 -r1,10845:2537886,2439708:1179648,16384,0 +[1,10085:6630773,47279633:25952256,43253760,0 +[1,10085:6630773,4812305:25952256,786432,0 +(1,10085:6630773,4812305:25952256,481690,11795 +(1,10085:6630773,4812305:25952256,481690,11795 +g1,10085:3078558,4812305 +[1,10085:3078558,4812305:0,0,0 +(1,10085:3078558,2439708:0,1703936,0 +k1,10085:1358238,2439708:-1720320 +(1,8606:1358238,2439708:1720320,1703936,0 +(1,8606:1358238,2439708:1179648,16384,0 +r1,10085:2537886,2439708:1179648,16384,0 ) -g1,10825:3062174,2439708 -(1,10825:3062174,2439708:16384,1703936,0 -[1,10825:3062174,2439708:25952256,1703936,0 -(1,10825:3062174,1915420:25952256,1179648,0 -(1,10825:3062174,1915420:16384,1179648,0 -r1,10845:3078558,1915420:16384,1179648,0 +g1,8606:3062174,2439708 +(1,8606:3062174,2439708:16384,1703936,0 +[1,8606:3062174,2439708:25952256,1703936,0 +(1,8606:3062174,1915420:25952256,1179648,0 +(1,8606:3062174,1915420:16384,1179648,0 +r1,10085:3078558,1915420:16384,1179648,0 ) -k1,10825:29014430,1915420:25935872 -g1,10825:29014430,1915420 +k1,8606:29014430,1915420:25935872 +g1,8606:29014430,1915420 ) ] ) ) ) ] -[1,10845:3078558,4812305:0,0,0 -(1,10845:3078558,2439708:0,1703936,0 -g1,10845:29030814,2439708 -g1,10845:36135244,2439708 -(1,10825:36135244,2439708:1720320,1703936,0 -(1,10825:36135244,2439708:16384,1703936,0 -[1,10825:36135244,2439708:25952256,1703936,0 -(1,10825:36135244,1915420:25952256,1179648,0 -(1,10825:36135244,1915420:16384,1179648,0 -r1,10845:36151628,1915420:16384,1179648,0 +[1,10085:3078558,4812305:0,0,0 +(1,10085:3078558,2439708:0,1703936,0 +g1,10085:29030814,2439708 +g1,10085:36135244,2439708 +(1,8606:36135244,2439708:1720320,1703936,0 +(1,8606:36135244,2439708:16384,1703936,0 +[1,8606:36135244,2439708:25952256,1703936,0 +(1,8606:36135244,1915420:25952256,1179648,0 +(1,8606:36135244,1915420:16384,1179648,0 +r1,10085:36151628,1915420:16384,1179648,0 ) -k1,10825:62087500,1915420:25935872 -g1,10825:62087500,1915420 +k1,8606:62087500,1915420:25935872 +g1,8606:62087500,1915420 ) ] ) -g1,10825:36675916,2439708 -(1,10825:36675916,2439708:1179648,16384,0 -r1,10845:37855564,2439708:1179648,16384,0 +g1,8606:36675916,2439708 +(1,8606:36675916,2439708:1179648,16384,0 +r1,10085:37855564,2439708:1179648,16384,0 ) ) -k1,10845:3078556,2439708:-34777008 +k1,10085:3078556,2439708:-34777008 ) ] -[1,10845:3078558,4812305:0,0,0 -(1,10845:3078558,49800853:0,16384,2228224 -k1,10845:1358238,49800853:-1720320 -(1,10825:1358238,49800853:1720320,16384,2228224 -(1,10825:1358238,49800853:1179648,16384,0 -r1,10845:2537886,49800853:1179648,16384,0 +[1,10085:3078558,4812305:0,0,0 +(1,10085:3078558,49800853:0,16384,2228224 +k1,10085:1358238,49800853:-1720320 +(1,8606:1358238,49800853:1720320,16384,2228224 +(1,8606:1358238,49800853:1179648,16384,0 +r1,10085:2537886,49800853:1179648,16384,0 ) -g1,10825:3062174,49800853 -(1,10825:3062174,52029077:16384,1703936,0 -[1,10825:3062174,52029077:25952256,1703936,0 -(1,10825:3062174,51504789:25952256,1179648,0 -(1,10825:3062174,51504789:16384,1179648,0 -r1,10845:3078558,51504789:16384,1179648,0 +g1,8606:3062174,49800853 +(1,8606:3062174,52029077:16384,1703936,0 +[1,8606:3062174,52029077:25952256,1703936,0 +(1,8606:3062174,51504789:25952256,1179648,0 +(1,8606:3062174,51504789:16384,1179648,0 +r1,10085:3078558,51504789:16384,1179648,0 ) -k1,10825:29014430,51504789:25935872 -g1,10825:29014430,51504789 +k1,8606:29014430,51504789:25935872 +g1,8606:29014430,51504789 ) ] ) ) ) ] -[1,10845:3078558,4812305:0,0,0 -(1,10845:3078558,49800853:0,16384,2228224 -g1,10845:29030814,49800853 -g1,10845:36135244,49800853 -(1,10825:36135244,49800853:1720320,16384,2228224 -(1,10825:36135244,52029077:16384,1703936,0 -[1,10825:36135244,52029077:25952256,1703936,0 -(1,10825:36135244,51504789:25952256,1179648,0 -(1,10825:36135244,51504789:16384,1179648,0 -r1,10845:36151628,51504789:16384,1179648,0 +[1,10085:3078558,4812305:0,0,0 +(1,10085:3078558,49800853:0,16384,2228224 +g1,10085:29030814,49800853 +g1,10085:36135244,49800853 +(1,8606:36135244,49800853:1720320,16384,2228224 +(1,8606:36135244,52029077:16384,1703936,0 +[1,8606:36135244,52029077:25952256,1703936,0 +(1,8606:36135244,51504789:25952256,1179648,0 +(1,8606:36135244,51504789:16384,1179648,0 +r1,10085:36151628,51504789:16384,1179648,0 ) -k1,10825:62087500,51504789:25935872 -g1,10825:62087500,51504789 +k1,8606:62087500,51504789:25935872 +g1,8606:62087500,51504789 ) ] ) -g1,10825:36675916,49800853 -(1,10825:36675916,49800853:1179648,16384,0 -r1,10845:37855564,49800853:1179648,16384,0 +g1,8606:36675916,49800853 +(1,8606:36675916,49800853:1179648,16384,0 +r1,10085:37855564,49800853:1179648,16384,0 ) ) -k1,10845:3078556,49800853:-34777008 +k1,10085:3078556,49800853:-34777008 ) ] -g1,10845:6630773,4812305 +g1,10085:6630773,4812305 +g1,10085:6630773,4812305 +g1,10085:9524187,4812305 +k1,10085:31387651,4812305:21863464 ) ) ] -[1,10845:6630773,45706769:25952256,40108032,0 -(1,10845:6630773,45706769:25952256,40108032,0 -(1,10845:6630773,45706769:0,0,0 -g1,10845:6630773,45706769 +[1,10085:6630773,45706769:25952256,40108032,0 +(1,10085:6630773,45706769:25952256,40108032,0 +(1,10085:6630773,45706769:0,0,0 +g1,10085:6630773,45706769 ) -[1,10845:6630773,45706769:25952256,40108032,0 -[1,10825:6630773,11663733:25952256,6064996,0 -(1,10825:6630773,6633157:25952256,1165492,28311 -h1,10825:6630773,6633157:0,0,0 -k1,10825:20096848,6633157:12486181 -k1,10825:32583029,6633157:12486181 +[1,10085:6630773,45706769:25952256,40108032,0 +(1,10003:6630773,18118296:25952256,12519559,0 +k1,10003:11982920,18118296:5352147 +(1,9986:11982920,18118296:0,0,0 +g1,9986:11982920,18118296 +g1,9986:11982920,18118296 +g1,9986:11655240,18118296 +(1,9986:11655240,18118296:0,0,0 ) -(1,10825:6630773,7333093:25952256,32768,229376 -(1,10825:6630773,7333093:0,32768,229376 -(1,10825:6630773,7333093:5505024,32768,229376 -r1,10845:12135797,7333093:5505024,262144,229376 +g1,9986:11982920,18118296 ) -k1,10825:6630773,7333093:-5505024 +(1,10001:11982920,18118296:15247963,12519559,0 +g1,10001:15470289,18118296 +(1,10001:15470289,6544183:0,0,0 +(1,10001:15470289,6544183:0,0,0 +g1,9988:15470289,6544183 +(1,9989:15470289,6544183:0,0,0 +(1,9989:15470289,6544183:0,0,0 +g1,9989:15470289,6544183 +g1,9989:15470289,6544183 +g1,9989:15470289,6544183 +g1,9989:15470289,6544183 +g1,9989:15470289,6544183 +(1,9989:15470289,6544183:0,0,0 +(1,9989:15470289,6544183:589824,56623,0 +(1,9989:15470289,6544183:589824,56623,0 ) -(1,10825:6630773,7333093:25952256,32768,0 -r1,10845:32583029,7333093:25952256,32768,0 +g1,9989:16060113,6544183 ) ) -(1,10825:6630773,9128789:25952256,909509,241827 -h1,10825:6630773,9128789:0,0,0 -g1,10825:9551582,9128789 -g1,10825:11032040,9128789 -g1,10825:15501726,9128789 -g1,10825:18319905,9128789 -k1,10825:27734086,9128789:4848943 -k1,10825:32583029,9128789:4848943 +g1,9989:15470289,6544183 +g1,9989:15470289,6544183 ) -(1,10825:6630773,9828725:25952256,32768,0 -(1,10825:6630773,9828725:5505024,32768,0 -r1,10845:12135797,9828725:5505024,32768,0 ) -k1,10825:22359413,9828725:10223616 -k1,10825:32583029,9828725:10223616 -) -] -(1,10827:6630773,14556498:25952256,131072,0 -r1,10845:32583029,14556498:25952256,131072,0 -g1,10827:32583029,14556498 -g1,10827:32583029,14556498 -) -(1,10829:6630773,15876399:25952256,513147,134348 -k1,10829:8596853,15876399:1966080 -k1,10828:11936713,15876399:141703 -k1,10828:14411498,15876399:141703 -k1,10828:15084699,15876399:141704 -k1,10828:15582262,15876399:141703 -k1,10828:18032143,15876399:141703 -k1,10828:18833138,15876399:141703 -k1,10828:25791242,15876399:141704 -k1,10828:26952030,15876399:141703 -k1,10828:28629242,15876399:141703 -k1,10828:32583029,15876399:1966080 -) -(1,10829:6630773,16717887:25952256,513147,134348 -k1,10829:8596853,16717887:1966080 -k1,10828:9742013,16717887:197509 -k1,10828:10295382,16717887:197509 -k1,10828:13169381,16717887:197509 -k1,10828:14558335,16717887:197509 -k1,10828:17402843,16717887:197509 -k1,10828:18619437,16717887:197509 -k1,10828:22567571,16717887:197509 -k1,10828:27151405,16717887:197509 -k1,10828:32583029,16717887:1966080 -) -(1,10829:6630773,17559375:25952256,505283,7863 -g1,10829:8596853,17559375 -g1,10828:9447510,17559375 -g1,10828:11281207,17559375 -k1,10829:30616950,17559375:18703976 -g1,10829:32583030,17559375 -) -(1,10830:6630773,19187295:25952256,513147,126483 -k1,10830:19232037,19187295:12601264 -h1,10830:19232037,19187295:0,0,0 -g1,10830:21445187,19187295 -g1,10830:22276183,19187295 -g1,10830:23772370,19187295 -g1,10830:25163044,19187295 -g1,10830:27468600,19187295 -g1,10830:28344816,19187295 -g1,10830:30616949,19187295 -g1,10830:32583029,19187295 -) -(1,10831:6630773,20028783:25952256,513147,126483 -k1,10831:18169042,20028783:11538269 -h1,10830:18169042,20028783:0,0,0 -g1,10830:22210647,20028783 -g1,10830:23025914,20028783 -g1,10830:26370216,20028783 -g1,10830:29023113,20028783 -g1,10831:30616949,20028783 -g1,10831:32583029,20028783 -) -(1,10831:6630773,21263487:25952256,131072,0 -r1,10845:32583029,21263487:25952256,131072,0 -g1,10831:32583029,21263487 -g1,10831:34549109,21263487 -) -(1,10835:6630773,24071055:25952256,32768,229376 -(1,10835:6630773,24071055:0,32768,229376 -(1,10835:6630773,24071055:5505024,32768,229376 -r1,10845:12135797,24071055:5505024,262144,229376 -) -k1,10835:6630773,24071055:-5505024 -) -(1,10835:6630773,24071055:25952256,32768,0 -r1,10845:32583029,24071055:25952256,32768,0 -) -) -(1,10835:6630773,25675383:25952256,615776,151780 -(1,10835:6630773,25675383:1974731,582746,14155 -g1,10835:6630773,25675383 -g1,10835:8605504,25675383 -) -g1,10835:10904245,25675383 -g1,10835:11961996,25675383 -g1,10835:13695292,25675383 -k1,10835:32583029,25675383:15886712 -g1,10835:32583029,25675383 -) -(1,10838:6630773,26910087:25952256,513147,126483 -k1,10837:7426557,26910087:167949 -k1,10837:9628088,26910087:167949 -k1,10837:12543962,26910087:167949 -k1,10837:13580263,26910087:167949 -k1,10837:15223427,26910087:167949 -k1,10837:16766977,26910087:167949 -k1,10837:18448152,26910087:167949 -k1,10837:20050029,26910087:167949 -k1,10837:20632789,26910087:167917 -k1,10837:23580120,26910087:167949 -k1,10837:24375904,26910087:167949 -k1,10837:25747094,26910087:167949 -k1,10837:28332666,26910087:167949 -k1,10837:29671088,26910087:167949 -k1,10837:30971499,26910087:167949 -k1,10837:32583029,26910087:0 -) -(1,10838:6630773,27751575:25952256,513147,134348 -k1,10837:8172180,27751575:211026 -k1,10837:9034634,27751575:211026 -k1,10837:11570222,27751575:211026 -k1,10837:12800332,27751575:211025 -k1,10837:14791971,27751575:211026 -k1,10837:15662289,27751575:211026 -k1,10837:18479026,27751575:211026 -k1,10837:21647692,27751575:211026 -k1,10837:22812267,27751575:211026 -k1,10837:24155755,27751575:211026 -k1,10837:25855103,27751575:211025 -k1,10837:26827657,27751575:211026 -k1,10837:30390194,27751575:211026 -k1,10837:31931601,27751575:211026 -k1,10837:32583029,27751575:0 -) -(1,10838:6630773,28593063:25952256,513147,134348 -k1,10837:8795679,28593063:204069 -k1,10837:10191193,28593063:204069 -k1,10837:11487747,28593063:204069 -k1,10837:12975011,28593063:204069 -k1,10837:16378548,28593063:204069 -k1,10837:19659532,28593063:204069 -k1,10837:21055045,28593063:204068 -k1,10837:23665596,28593063:204069 -k1,10837:25483161,28593063:204069 -k1,10837:26555582,28593063:204069 -k1,10837:27892113,28593063:204069 -k1,10837:29834197,28593063:204069 -k1,10837:30847636,28593063:204069 -k1,10837:32583029,28593063:0 -) -(1,10838:6630773,29434551:25952256,513147,134348 -k1,10837:9377134,29434551:255338 -k1,10837:12542926,29434551:255338 -k1,10837:13989710,29434551:255339 -k1,10837:16059740,29434551:255338 -k1,10837:18348005,29434551:255338 -k1,10837:19412713,29434551:255338 -k1,10837:20998433,29434551:255339 -k1,10837:22633959,29434551:255338 -k1,10837:24659424,29434551:255338 -k1,10837:25868311,29434551:255338 -k1,10837:27256112,29434551:255339 -k1,10837:28577721,29434551:255338 -k1,10837:31563944,29434551:255338 -k1,10837:32583029,29434551:0 -) -(1,10838:6630773,30276039:25952256,513147,134348 -k1,10837:10261401,30276039:247660 -k1,10837:11581231,30276039:247661 -k1,10837:13479088,30276039:247660 -k1,10837:16732885,30276039:247661 -k1,10837:19744854,30276039:247660 -k1,10837:20651806,30276039:247660 -k1,10837:24122528,30276039:247661 -k1,10837:27395985,30276039:247660 -k1,10837:28835091,30276039:247661 -k1,10837:31315563,30276039:247660 -k1,10837:32583029,30276039:0 -) -(1,10838:6630773,31117527:25952256,505283,134348 -g1,10837:8113197,31117527 -g1,10837:8727269,31117527 -k1,10838:32583029,31117527:20771636 -g1,10838:32583029,31117527 -) -(1,10839:6630773,33925095:25952256,32768,229376 -(1,10839:6630773,33925095:0,32768,229376 -(1,10839:6630773,33925095:5505024,32768,229376 -r1,10845:12135797,33925095:5505024,262144,229376 -) -k1,10839:6630773,33925095:-5505024 -) -(1,10839:6630773,33925095:25952256,32768,0 -r1,10845:32583029,33925095:25952256,32768,0 -) -) -(1,10839:6630773,35529423:25952256,615776,161218 -(1,10839:6630773,35529423:1974731,582746,14155 -g1,10839:6630773,35529423 -g1,10839:8605504,35529423 -) -g1,10839:12201071,35529423 -g1,10839:16200864,35529423 -g1,10839:17910567,35529423 -k1,10839:32583029,35529423:10865345 -g1,10839:32583029,35529423 -) -(1,10843:6630773,36764127:25952256,513147,134348 -k1,10842:10459744,36764127:198276 -k1,10842:11762302,36764127:198276 -k1,10842:12708344,36764127:198276 -k1,10842:15288198,36764127:198276 -k1,10842:16172636,36764127:198276 -k1,10842:19716525,36764127:198276 -k1,10842:20933886,36764127:198276 -k1,10842:25203258,36764127:198276 -k1,10842:28697340,36764127:198276 -k1,10842:30463237,36764127:198276 -k1,10842:31680598,36764127:198276 -k1,10843:32583029,36764127:0 -) -(1,10843:6630773,37605615:25952256,513147,134348 -k1,10842:9353279,37605615:186918 -k1,10842:11200879,37605615:186918 -k1,10842:12459966,37605615:186918 -k1,10842:15660885,37605615:186918 -k1,10842:16866888,37605615:186918 -k1,10842:18791821,37605615:186918 -k1,10842:20546360,37605615:186918 -k1,10842:21089138,37605615:186918 -k1,10842:22970817,37605615:186918 -k1,10842:25135612,37605615:186918 -k1,10842:25981822,37605615:186918 -k1,10842:28984822,37605615:186918 -k1,10842:29703237,37605615:186918 -k1,10842:30660858,37605615:186918 -k1,10842:32583029,37605615:0 -) -(1,10843:6630773,38447103:25952256,513147,126483 -k1,10842:10082792,38447103:204055 -k1,10842:12119234,38447103:204055 -k1,10842:13427572,38447103:204056 -k1,10842:14379393,38447103:204055 -k1,10842:16335225,38447103:204055 -k1,10842:18032846,38447103:204055 -k1,10842:21641496,38447103:204055 -k1,10842:22654921,38447103:204055 -k1,10842:25621320,38447103:204056 -k1,10842:28445504,38447103:204055 -k1,10842:31131407,38447103:204055 -k1,10842:32583029,38447103:0 -) -(1,10843:6630773,39288591:25952256,513147,134348 -k1,10842:7987166,39288591:199683 -k1,10842:8542709,39288591:199683 -k1,10842:11139699,39288591:199683 -k1,10842:12880134,39288591:199684 -k1,10842:14863052,39288591:199683 -k1,10842:15931087,39288591:199683 -k1,10842:18800051,39288591:199683 -k1,10842:19770437,39288591:199683 -k1,10842:23081114,39288591:199683 -k1,10842:24228449,39288591:199684 -k1,10842:27858942,39288591:199683 -k1,10842:29077710,39288591:199683 -k1,10842:31015408,39288591:199683 -k1,10842:32583029,39288591:0 -) -(1,10843:6630773,40130079:25952256,513147,126483 -k1,10842:7916449,40130079:153869 -k1,10842:10690447,40130079:153869 -k1,10842:12822194,40130079:153870 -k1,10842:13844415,40130079:153869 -k1,10842:15473499,40130079:153869 -k1,10842:17977489,40130079:153869 -k1,10842:19150443,40130079:153869 -k1,10842:22893064,40130079:153870 -k1,10842:23706225,40130079:153869 -k1,10842:25803891,40130079:153869 -k1,10842:26585595,40130079:153869 -k1,10842:27758550,40130079:153870 -k1,10842:29565892,40130079:153869 -k1,10842:31131407,40130079:153869 -k1,10842:32583029,40130079:0 -) -(1,10843:6630773,40971567:25952256,513147,126483 -k1,10842:8222844,40971567:166663 -k1,10842:9257859,40971567:166663 -k1,10842:12127227,40971567:166663 -k1,10842:15698485,40971567:166663 -k1,10842:17432769,40971567:166663 -k1,10842:19996739,40971567:166663 -k1,10842:21552766,40971567:166664 -k1,10842:22587781,40971567:166663 -k1,10842:24683824,40971567:166663 -k1,10842:25206347,40971567:166663 -k1,10842:26656205,40971567:166663 -k1,10842:30585290,40971567:166663 -k1,10842:31379788,40971567:166663 -k1,10842:32583029,40971567:0 -) -(1,10843:6630773,41813055:25952256,513147,126483 -k1,10842:8849345,41813055:274774 -k1,10842:12149917,41813055:274775 -k1,10842:13416251,41813055:274774 -k1,10842:17610079,41813055:274775 -k1,10842:18544145,41813055:274774 -k1,10842:22223515,41813055:274775 -k1,10842:23181174,41813055:274774 -k1,10842:25916826,41813055:274775 -k1,10842:27571788,41813055:274774 -k1,10842:28838123,41813055:274775 -k1,10842:30259122,41813055:274774 -k1,10842:32583029,41813055:0 -) -(1,10843:6630773,42654543:25952256,513147,134348 -g1,10842:10142192,42654543 -g1,10842:12628628,42654543 -g1,10842:16096793,42654543 -g1,10842:17863643,42654543 -k1,10843:32583029,42654543:12586189 -g1,10843:32583029,42654543 -) -(1,10845:6630773,43496031:25952256,513147,134348 -h1,10844:6630773,43496031:983040,0,0 -k1,10844:9063116,43496031:252616 -k1,10844:10907602,43496031:252616 -k1,10844:12395572,43496031:252616 -k1,10844:13307480,43496031:252616 -k1,10844:16585893,43496031:252616 -k1,10844:17370006,43496031:252616 -k1,10844:18907129,43496031:252617 -k1,10844:19819037,43496031:252616 -k1,10844:23144636,43496031:252616 -k1,10844:24167955,43496031:252616 -k1,10844:28009322,43496031:252616 -k1,10844:30933841,43496031:252616 -k1,10844:31931601,43496031:252616 -k1,10844:32583029,43496031:0 -) -(1,10845:6630773,44337519:25952256,513147,134348 -k1,10844:8609781,44337519:249513 -k1,10844:11866087,44337519:249514 -k1,10844:14172120,44337519:249513 -k1,10844:15080925,44337519:249513 -k1,10844:16826625,44337519:249513 -k1,10844:19506214,44337519:249514 -k1,10844:20415019,44337519:249513 -k1,10844:24388288,44337519:249513 -k1,10844:27391624,44337519:249513 -k1,10844:28660223,44337519:249514 -k1,10844:30563209,44337519:249513 -k1,10845:32583029,44337519:0 -) -(1,10845:6630773,45179007:25952256,513147,126483 -k1,10844:8457614,45179007:229073 -k1,10844:9496058,45179007:229074 -k1,10844:12487474,45179007:229073 -k1,10844:14279582,45179007:229074 -k1,10844:15705342,45179007:229073 -k1,10844:18395947,45179007:229073 -k1,10844:19276449,45179007:229074 -k1,10844:21235017,45179007:229073 -k1,10844:24593434,45179007:229073 -k1,10844:25481800,45179007:229074 -k1,10844:27912883,45179007:229073 -k1,10844:30198477,45179007:229074 -k1,10844:31086842,45179007:229073 -k1,10844:32583029,45179007:0 -) -] -(1,10845:32583029,45706769:0,0,0 -g1,10845:32583029,45706769 -) -) -] -(1,10845:6630773,47279633:25952256,485622,11795 -(1,10845:6630773,47279633:25952256,485622,11795 -(1,10845:6630773,47279633:0,0,0 -v1,10845:6630773,47279633:0,0,0 -) -g1,10845:6830002,47279633 -k1,10845:31387652,47279633:24557650 -) -) -] -(1,10845:4262630,4025873:0,0,0 -[1,10845:-473656,4025873:0,0,0 -(1,10845:-473656,-710413:0,0,0 -(1,10845:-473656,-710413:0,0,0 -g1,10845:-473656,-710413 -) -g1,10845:-473656,-710413 -) -] -) -] -!15676 -}182 -Input:1627:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1628:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1629:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1630:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1631:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!482 -{183 -[1,10882:4262630,47279633:28320399,43253760,0 -(1,10882:4262630,4025873:0,0,0 -[1,10882:-473656,4025873:0,0,0 -(1,10882:-473656,-710413:0,0,0 -(1,10882:-473656,-644877:0,0,0 -k1,10882:-473656,-644877:-65536 +g1,9989:15470289,6544183 +(1,9990:15470289,6544183:0,0,0 +(1,9990:15470289,6544183:0,0,0 +g1,9990:15470289,6544183 +g1,9990:15470289,6544183 +g1,9990:15470289,6544183 +g1,9990:15470289,6544183 +g1,9990:15470289,6544183 +(1,9990:15470289,6544183:0,0,0 +(1,9990:15470289,6544183:358613,319685,0 +(1,9990:15470289,6544183:358613,319685,0 +$1,9990:15470289,6544183 +$1,9990:15828902,6544183 ) -(1,10882:-473656,4736287:0,0,0 -k1,10882:-473656,4736287:5209943 +g1,9990:15828902,6544183 ) -g1,10882:-473656,-710413 ) -] +g1,9990:15470289,6544183 +g1,9990:15470289,6544183 ) -[1,10882:6630773,47279633:25952256,43253760,0 -[1,10882:6630773,4812305:25952256,786432,0 -(1,10882:6630773,4812305:25952256,505283,134348 -(1,10882:6630773,4812305:25952256,505283,134348 -g1,10882:3078558,4812305 -[1,10882:3078558,4812305:0,0,0 -(1,10882:3078558,2439708:0,1703936,0 -k1,10882:1358238,2439708:-1720320 -(1,10825:1358238,2439708:1720320,1703936,0 -(1,10825:1358238,2439708:1179648,16384,0 -r1,10882:2537886,2439708:1179648,16384,0 ) -g1,10825:3062174,2439708 -(1,10825:3062174,2439708:16384,1703936,0 -[1,10825:3062174,2439708:25952256,1703936,0 -(1,10825:3062174,1915420:25952256,1179648,0 -(1,10825:3062174,1915420:16384,1179648,0 -r1,10882:3078558,1915420:16384,1179648,0 +g1,9990:15470289,6544183 +(1,9991:15470289,6544183:0,0,0 +(1,9991:15470289,6544183:0,0,0 +g1,9991:15470289,6544183 +g1,9991:15470289,6544183 +(1,9991:15470289,6544183:0,0,0 +(1,9991:15470289,6544183:4754664,408008,104590 +(1,9991:15470289,6544183:4754664,408008,104590 +(1,9991:15470289,6544183:0,408008,104590 +r1,10085:20224953,6544183:4754664,512598,104590 +k1,9991:15470289,6544183:-4754664 ) -k1,10825:29014430,1915420:25935872 -g1,10825:29014430,1915420 +(1,9991:15470289,6544183:4754664,408008,104590 +g1,9991:17372810,6544183 +h1,9991:20221676,6544183:0,370085,101313 ) -] ) +g1,9991:20224953,6544183 ) ) -] -[1,10882:3078558,4812305:0,0,0 -(1,10882:3078558,2439708:0,1703936,0 -g1,10882:29030814,2439708 -g1,10882:36135244,2439708 -(1,10825:36135244,2439708:1720320,1703936,0 -(1,10825:36135244,2439708:16384,1703936,0 -[1,10825:36135244,2439708:25952256,1703936,0 -(1,10825:36135244,1915420:25952256,1179648,0 -(1,10825:36135244,1915420:16384,1179648,0 -r1,10882:36151628,1915420:16384,1179648,0 +g1,9991:15470289,6544183 +g1,9991:15470289,6544183 ) -k1,10825:62087500,1915420:25935872 -g1,10825:62087500,1915420 ) -] +(1,9992:15470289,6544183:0,0,0 +(1,9992:15470289,6544183:0,0,0 +g1,9992:15470289,6544183 +g1,9992:15470289,6544183 +g1,9992:15470289,6544183 +g1,9992:15470289,6544183 +g1,9992:15470289,6544183 +(1,9992:15470289,6544183:0,0,0 +(1,9992:15470289,6544183:4121582,373362,104590 +(1,9992:15470289,6544183:4121582,373362,104590 +(1,9992:15470289,6544183:0,373362,104590 +r1,10085:19591871,6544183:4121582,477952,104590 +k1,9992:15470289,6544183:-4121582 +) +(1,9992:15470289,6544183:4121582,373362,104590 +g1,9992:18955513,6544183 +h1,9992:19588594,6544183:0,370085,101313 +) +) +g1,9992:19591871,6544183 +) +) +g1,9992:15470289,6544183 +g1,9992:15470289,6544183 +) +) +(1,9993:15470289,6544183:0,0,0 +(1,9993:15470289,6544183:0,0,0 +g1,9993:15470289,6544183 +g1,9993:15470289,6544183 +g1,9993:15470289,6544183 +g1,9993:15470289,6544183 +g1,9993:15470289,6544183 +(1,9993:15470289,6544183:0,0,0 +(1,9993:15470289,6544183:4121582,373362,104590 +(1,9993:15470289,6544183:4121582,373362,104590 +(1,9993:15470289,6544183:0,373362,104590 +r1,10085:19591871,6544183:4121582,477952,104590 +k1,9993:15470289,6544183:-4121582 ) -g1,10825:36675916,2439708 -(1,10825:36675916,2439708:1179648,16384,0 -r1,10882:37855564,2439708:1179648,16384,0 +(1,9993:15470289,6544183:4121582,373362,104590 +g1,9993:18955513,6544183 +h1,9993:19588594,6544183:0,370085,101313 ) ) -k1,10882:3078556,2439708:-34777008 +g1,9993:19591871,6544183 ) -] -[1,10882:3078558,4812305:0,0,0 -(1,10882:3078558,49800853:0,16384,2228224 -k1,10882:1358238,49800853:-1720320 -(1,10825:1358238,49800853:1720320,16384,2228224 -(1,10825:1358238,49800853:1179648,16384,0 -r1,10882:2537886,49800853:1179648,16384,0 ) -g1,10825:3062174,49800853 -(1,10825:3062174,52029077:16384,1703936,0 -[1,10825:3062174,52029077:25952256,1703936,0 -(1,10825:3062174,51504789:25952256,1179648,0 -(1,10825:3062174,51504789:16384,1179648,0 -r1,10882:3078558,51504789:16384,1179648,0 +g1,9993:15470289,6544183 +g1,9993:15470289,6544183 +) +) +g1,9993:15470289,6544183 +g1,9994:15470289,6544183 +(1,9994:15470289,6544183:0,0,0 +(1,9994:15470289,6544183:0,0,0 +g1,9994:15470289,6544183 +g1,9994:15470289,6544183 +g1,9994:15470289,6544183 +g1,9994:15470289,6544183 +g1,9994:15470289,6544183 +(1,9994:15470289,6544183:0,0,0 +(1,9994:15470289,6544183:589824,56623,0 +(1,9994:15470289,6544183:589824,56623,0 +) +g1,9994:16060113,6544183 +) +) +g1,9994:15470289,6544183 +g1,9994:15470289,6544183 +) +) +g1,9994:15470289,6544183 +g1,9995:15470289,6544183 +g1,9995:15470289,6544183 +g1,9995:15470289,6544183 +g1,9995:15470289,6544183 +g1,9996:15470289,6544183 +g1,9996:15470289,6544183 +g1,9996:15470289,6544183 +(1,9996:15470289,6544183:0,0,0 +(1,9996:15470289,6544183:0,0,0 +g1,9996:15470289,6544183 +g1,9996:15470289,6544183 +g1,9996:15470289,6544183 +g1,9996:15470289,6544183 +g1,9996:15470289,6544183 +(1,9996:15470289,6544183:0,0,0 +(1,9996:15470289,6544183:1272717,373362,104590 +(1,9996:15470289,6544183:1272717,373362,104590 +(1,9996:15470289,6544183:0,373362,104590 +r1,10085:16743006,6544183:1272717,477952,104590 +k1,9996:15470289,6544183:-1272717 +) +(1,9996:15470289,6544183:1272717,373362,104590 +k1,9996:15470289,6544183:3277 +h1,9996:16739729,6544183:0,370085,101313 +) +) +g1,9996:16743006,6544183 +) +) +g1,9996:15470289,6544183 +g1,9996:15470289,6544183 +) +) +g1,9996:15470289,6544183 +g1,9997:15470289,6544183 +g1,9997:15470289,6544183 +g1,9997:15470289,6544183 +(1,9997:15470289,6544183:0,0,0 +(1,9997:15470289,6544183:0,0,0 +g1,9997:15470289,6544183 +g1,9997:15470289,6544183 +g1,9997:15470289,6544183 +g1,9997:15470289,6544183 +g1,9997:15470289,6544183 +(1,9997:15470289,6544183:0,0,0 +(1,9997:15470289,6544183:1589257,373362,104590 +(1,9997:15470289,6544183:1589257,373362,104590 +(1,9997:15470289,6544183:0,373362,104590 +r1,10085:17059546,6544183:1589257,477952,104590 +k1,9997:15470289,6544183:-1589257 +) +(1,9997:15470289,6544183:1589257,373362,104590 +k1,9997:15470289,6544183:3277 +h1,9997:17056269,6544183:0,370085,101313 +) +) +g1,9997:17059546,6544183 +) +) +g1,9997:15470289,6544183 +g1,9997:15470289,6544183 +) +) +g1,9997:15470289,6544183 +g1,9998:15470289,6544183 +g1,9998:15470289,6544183 +g1,9998:15470289,6544183 +g1,9998:15470289,6544183 +g1,9998:15470289,6544183 +g1,9999:15470289,6544183 +g1,9999:15470289,6544183 +g1,9999:15470289,6544183 +g1,9999:15470289,6544183 +g1,10000:15470289,6544183 +g1,10000:15470289,6544183 +g1,10000:15470289,6544183 +g1,10000:15470289,6544183 +g1,10000:15470289,6544183 +g1,10000:15470289,6544183 +g1,10001:15470289,6544183 +g1,10001:15470289,6544183 +) +g1,10001:15470289,6544183 +) +) +g1,10003:27230883,18118296 +k1,10003:32583029,18118296:5352146 +) +v1,10007:6630773,19458511:0,393216,0 +(1,10026:6630773,26306559:25952256,7241264,196608 +g1,10026:6630773,26306559 +g1,10026:6630773,26306559 +g1,10026:6434165,26306559 +(1,10026:6434165,26306559:0,7241264,196608 +r1,10085:32779637,26306559:26345472,7437872,196608 +k1,10026:6434165,26306559:-26345472 +) +(1,10026:6434165,26306559:26345472,7241264,196608 +[1,10026:6630773,26306559:25952256,7044656,0 +(1,10009:6630773,19669826:25952256,407923,4954 +(1,10008:6630773,19669826:0,0,0 +g1,10008:6630773,19669826 +g1,10008:6630773,19669826 +g1,10008:6303093,19669826 +(1,10008:6303093,19669826:0,0,0 +) +g1,10008:6630773,19669826 +) +g1,10009:7294681,19669826 +g1,10009:8290543,19669826 +h1,10009:8622497,19669826:0,0,0 +k1,10009:32583029,19669826:23960532 +g1,10009:32583029,19669826 +) +(1,10010:6630773,20354681:25952256,424439,79822 +h1,10010:6630773,20354681:0,0,0 +g1,10010:8622497,20354681 +g1,10010:9618359,20354681 +g1,10010:10282267,20354681 +g1,10010:11610083,20354681 +h1,10010:11942037,20354681:0,0,0 +k1,10010:32583029,20354681:20640992 +g1,10010:32583029,20354681 +) +(1,10011:6630773,21039536:25952256,424439,106246 +h1,10011:6630773,21039536:0,0,0 +g1,10011:6962727,21039536 +g1,10011:7294681,21039536 +k1,10011:7294681,21039536:0 +h1,10011:9950313,21039536:0,0,0 +k1,10011:32583029,21039536:22632716 +g1,10011:32583029,21039536 +) +(1,10012:6630773,21724391:25952256,407923,4954 +h1,10012:6630773,21724391:0,0,0 +g1,10012:6962727,21724391 +g1,10012:7294681,21724391 +g1,10012:7958589,21724391 +g1,10012:8954451,21724391 +h1,10012:9950313,21724391:0,0,0 +k1,10012:32583029,21724391:22632716 +g1,10012:32583029,21724391 +) +(1,10013:6630773,22409246:25952256,424439,79822 +h1,10013:6630773,22409246:0,0,0 +h1,10013:6962727,22409246:0,0,0 +k1,10013:32583029,22409246:25620302 +g1,10013:32583029,22409246 +) +(1,10019:6630773,23225173:25952256,424439,79822 +(1,10015:6630773,23225173:0,0,0 +g1,10015:6630773,23225173 +g1,10015:6630773,23225173 +g1,10015:6303093,23225173 +(1,10015:6303093,23225173:0,0,0 +) +g1,10015:6630773,23225173 +) +g1,10019:7626635,23225173 +g1,10019:8954451,23225173 +h1,10019:9286405,23225173:0,0,0 +k1,10019:32583029,23225173:23296624 +g1,10019:32583029,23225173 +) +(1,10019:6630773,23910028:25952256,424439,79822 +h1,10019:6630773,23910028:0,0,0 +g1,10019:7626635,23910028 +g1,10019:8954451,23910028 +h1,10019:9286405,23910028:0,0,0 +k1,10019:32583029,23910028:23296624 +g1,10019:32583029,23910028 +) +(1,10019:6630773,24594883:25952256,424439,79822 +h1,10019:6630773,24594883:0,0,0 +g1,10019:7626635,24594883 +g1,10019:8954451,24594883 +h1,10019:9618359,24594883:0,0,0 +k1,10019:32583029,24594883:22964670 +g1,10019:32583029,24594883 +) +(1,10021:6630773,25410810:25952256,424439,106246 +(1,10020:6630773,25410810:0,0,0 +g1,10020:6630773,25410810 +g1,10020:6630773,25410810 +g1,10020:6303093,25410810 +(1,10020:6303093,25410810:0,0,0 +) +g1,10020:6630773,25410810 +) +k1,10021:6630773,25410810:0 +h1,10021:9286405,25410810:0,0,0 +k1,10021:32583029,25410810:23296624 +g1,10021:32583029,25410810 +) +(1,10025:6630773,26226737:25952256,424439,79822 +(1,10023:6630773,26226737:0,0,0 +g1,10023:6630773,26226737 +g1,10023:6630773,26226737 +g1,10023:6303093,26226737 +(1,10023:6303093,26226737:0,0,0 +) +g1,10023:6630773,26226737 +) +g1,10025:7626635,26226737 +g1,10025:8954451,26226737 +h1,10025:9950313,26226737:0,0,0 +k1,10025:32583029,26226737:22632716 +g1,10025:32583029,26226737 +) +] +) +g1,10026:32583029,26306559 +g1,10026:6630773,26306559 +g1,10026:6630773,26306559 +g1,10026:32583029,26306559 +g1,10026:32583029,26306559 +) +h1,10026:6630773,26503167:0,0,0 +v1,10030:6630773,27368247:0,393216,0 +(1,10031:6630773,28517599:25952256,1542568,0 +g1,10031:6630773,28517599 +g1,10031:6237557,28517599 +r1,10085:6368629,28517599:131072,1542568,0 +g1,10031:6567858,28517599 +g1,10031:6764466,28517599 +[1,10031:6764466,28517599:25818563,1542568,0 +(1,10031:6764466,27640724:25818563,665693,196608 +(1,10030:6764466,27640724:0,665693,196608 +r1,10085:8010564,27640724:1246098,862301,196608 +k1,10030:6764466,27640724:-1246098 +) +(1,10030:6764466,27640724:1246098,665693,196608 +) +k1,10030:8255197,27640724:244633 +k1,10030:9981415,27640724:327680 +k1,10030:11885421,27640724:244634 +k1,10030:13510898,27640724:244633 +k1,10030:15040038,27640724:244634 +k1,10030:16455144,27640724:244633 +k1,10030:20364551,27640724:244634 +k1,10030:21906142,27640724:244633 +k1,10030:23169860,27640724:244633 +k1,10030:24820897,27640724:244634 +k1,10030:26745873,27640724:244633 +k1,10030:27657663,27640724:244634 +(1,10030:27657663,27640724:0,414482,115847 +r1,10085:28015929,27640724:358266,530329,115847 +k1,10030:27657663,27640724:-358266 +) +(1,10030:27657663,27640724:358266,414482,115847 +k1,10030:27657663,27640724:3277 +h1,10030:28012652,27640724:0,411205,112570 +) +k1,10030:28260562,27640724:244633 +k1,10030:29036693,27640724:244634 +k1,10030:31140582,27640724:244633 +k1,10030:32583029,27640724:0 +) +(1,10031:6764466,28505804:25818563,485622,11795 +k1,10031:32583030,28505804:24847976 +g1,10031:32583030,28505804 +) +] +g1,10031:32583029,28517599 +) +h1,10031:6630773,28517599:0,0,0 +v1,10035:6630773,29382679:0,393216,0 +(1,10061:6630773,38988903:25952256,9999440,0 +g1,10061:6630773,38988903 +g1,10061:6237557,38988903 +r1,10085:6368629,38988903:131072,9999440,0 +g1,10061:6567858,38988903 +g1,10061:6764466,38988903 +[1,10061:6764466,38988903:25818563,9999440,0 +(1,10036:6764466,29690977:25818563,701514,196608 +(1,10035:6764466,29690977:0,701514,196608 +r1,10085:8863446,29690977:2098980,898122,196608 +k1,10035:6764466,29690977:-2098980 +) +(1,10035:6764466,29690977:2098980,701514,196608 +) +g1,10035:9062675,29690977 +g1,10035:10788893,29690977 +g1,10035:12184809,29690977 +g1,10035:15900700,29690977 +g1,10035:17955253,29690977 +g1,10035:19258764,29690977 +g1,10035:20205759,29690977 +g1,10035:23582173,29690977 +k1,10036:32583029,29690977:8175758 +g1,10036:32583029,29690977 +) +v1,10038:6764466,30375832:0,393216,0 +(1,10046:6764466,33406389:25818563,3423773,196608 +g1,10046:6764466,33406389 +g1,10046:6764466,33406389 +g1,10046:6567858,33406389 +(1,10046:6567858,33406389:0,3423773,196608 +r1,10085:32779637,33406389:26211779,3620381,196608 +k1,10046:6567857,33406389:-26211780 +) +(1,10046:6567858,33406389:26211779,3423773,196608 +[1,10046:6764466,33406389:25818563,3227165,0 +(1,10040:6764466,30587147:25818563,407923,4954 +(1,10039:6764466,30587147:0,0,0 +g1,10039:6764466,30587147 +g1,10039:6764466,30587147 +g1,10039:6436786,30587147 +(1,10039:6436786,30587147:0,0,0 +) +g1,10039:6764466,30587147 +) +g1,10040:7428374,30587147 +g1,10040:8424236,30587147 +h1,10040:8756190,30587147:0,0,0 +k1,10040:32583030,30587147:23826840 +g1,10040:32583030,30587147 +) +(1,10041:6764466,31272002:25818563,424439,106246 +h1,10041:6764466,31272002:0,0,0 +k1,10041:6764466,31272002:0 +h1,10041:9420098,31272002:0,0,0 +k1,10041:32583030,31272002:23162932 +g1,10041:32583030,31272002 +) +(1,10042:6764466,31956857:25818563,424439,79822 +h1,10042:6764466,31956857:0,0,0 +g1,10042:8756190,31956857 +g1,10042:9752052,31956857 +g1,10042:10415960,31956857 +g1,10042:11743776,31956857 +h1,10042:12075730,31956857:0,0,0 +k1,10042:32583030,31956857:20507300 +g1,10042:32583030,31956857 +) +(1,10043:6764466,32641712:25818563,424439,106246 +h1,10043:6764466,32641712:0,0,0 +g1,10043:7096420,32641712 +g1,10043:7428374,32641712 +g1,10043:10084006,32641712 +g1,10043:11079868,32641712 +h1,10043:12407684,32641712:0,0,0 +k1,10043:32583028,32641712:20175344 +g1,10043:32583028,32641712 +) +(1,10044:6764466,33326567:25818563,424439,79822 +h1,10044:6764466,33326567:0,0,0 +h1,10044:7096420,33326567:0,0,0 +k1,10044:32583028,33326567:25486608 +g1,10044:32583028,33326567 +) +] +) +g1,10046:32583029,33406389 +g1,10046:6764466,33406389 +g1,10046:6764466,33406389 +g1,10046:32583029,33406389 +g1,10046:32583029,33406389 +) +h1,10046:6764466,33602997:0,0,0 +(1,10050:6764466,34468077:25818563,513147,126483 +h1,10049:6764466,34468077:983040,0,0 +k1,10049:10314335,34468077:233092 +k1,10049:11844385,34468077:233092 +k1,10049:13280718,34468077:233092 +k1,10049:15614238,34468077:233091 +k1,10049:17038775,34468077:233092 +k1,10049:18602248,34468077:233092 +k1,10049:19293437,34468077:233092 +k1,10049:21657760,34468077:233092 +k1,10049:22542280,34468077:233092 +k1,10049:23794457,34468077:233092 +k1,10049:26553962,34468077:233092 +k1,10049:27403091,34468077:233091 +k1,10049:28050992,34468077:233058 +k1,10049:28943376,34468077:233092 +k1,10049:31683875,34468077:233092 +k1,10050:32583029,34468077:0 +) +(1,10050:6764466,35333157:25818563,505283,134348 +g1,10049:10253602,35333157 +g1,10049:11104259,35333157 +g1,10049:13534989,35333157 +g1,10049:16575859,35333157 +g1,10049:18785077,35333157 +g1,10049:19340166,35333157 +g1,10049:21412414,35333157 +g1,10049:24798003,35333157 +g1,10049:26143457,35333157 +g1,10049:27361771,35333157 +g1,10049:28717710,35333157 +k1,10050:32583029,35333157:1823217 +g1,10050:32583029,35333157 +) +v1,10052:6764466,36018012:0,393216,0 +(1,10057:6764466,36935652:25818563,1310856,196608 +g1,10057:6764466,36935652 +g1,10057:6764466,36935652 +g1,10057:6567858,36935652 +(1,10057:6567858,36935652:0,1310856,196608 +r1,10085:32779637,36935652:26211779,1507464,196608 +k1,10057:6567857,36935652:-26211780 +) +(1,10057:6567858,36935652:26211779,1310856,196608 +[1,10057:6764466,36935652:25818563,1114248,0 +(1,10054:6764466,36245843:25818563,424439,9908 +(1,10053:6764466,36245843:0,0,0 +g1,10053:6764466,36245843 +g1,10053:6764466,36245843 +g1,10053:6436786,36245843 +(1,10053:6436786,36245843:0,0,0 +) +g1,10053:6764466,36245843 +) +g1,10054:7428374,36245843 +g1,10054:8424236,36245843 +g1,10054:9088144,36245843 +g1,10054:10084006,36245843 +g1,10054:10747914,36245843 +g1,10054:11743776,36245843 +h1,10054:12739638,36245843:0,0,0 +k1,10054:32583030,36245843:19843392 +g1,10054:32583030,36245843 +) +(1,10055:6764466,36930698:25818563,298373,4954 +h1,10055:6764466,36930698:0,0,0 +h1,10055:7096420,36930698:0,0,0 +k1,10055:32583028,36930698:25486608 +g1,10055:32583028,36930698 +) +] +) +g1,10057:32583029,36935652 +g1,10057:6764466,36935652 +g1,10057:6764466,36935652 +g1,10057:32583029,36935652 +g1,10057:32583029,36935652 +) +h1,10057:6764466,37132260:0,0,0 +(1,10061:6764466,37997340:25818563,513147,126483 +h1,10060:6764466,37997340:983040,0,0 +k1,10060:10334984,37997340:253741 +k1,10060:11885682,37997340:253740 +k1,10060:12495283,37997340:253741 +k1,10060:14990355,37997340:253741 +(1,10060:14990355,37997340:0,452978,115847 +r1,10085:17810604,37997340:2820249,568825,115847 +k1,10060:14990355,37997340:-2820249 +) +(1,10060:14990355,37997340:2820249,452978,115847 +k1,10060:14990355,37997340:3277 +h1,10060:17807327,37997340:0,411205,112570 +) +k1,10060:18064344,37997340:253740 +k1,10060:19419090,37997340:253741 +k1,10060:21182780,37997340:253740 +k1,10060:23401946,37997340:253741 +k1,10060:25698444,37997340:253741 +(1,10060:25698444,37997340:0,452978,115847 +r1,10085:28166981,37997340:2468537,568825,115847 +k1,10060:25698444,37997340:-2468537 +) +(1,10060:25698444,37997340:2468537,452978,115847 +k1,10060:25698444,37997340:3277 +h1,10060:28163704,37997340:0,411205,112570 +) +k1,10060:28594391,37997340:253740 +k1,10060:30400025,37997340:253741 +k1,10061:32583029,37997340:0 +) +(1,10061:6764466,38862420:25818563,513147,126483 +g1,10060:8602750,38862420 +g1,10060:9267940,38862420 +k1,10061:32583030,38862420:20032392 +g1,10061:32583030,38862420 +) +] +g1,10061:32583029,38988903 +) +h1,10061:6630773,38988903:0,0,0 +(1,10064:6630773,39853983:25952256,505283,134348 +h1,10063:6630773,39853983:983040,0,0 +k1,10063:8620308,39853983:188606 +k1,10063:10202865,39853983:188606 +(1,10063:10202865,39853983:0,459977,115847 +r1,10085:11264554,39853983:1061689,575824,115847 +k1,10063:10202865,39853983:-1061689 +) +(1,10063:10202865,39853983:1061689,459977,115847 +k1,10063:10202865,39853983:3277 +h1,10063:11261277,39853983:0,411205,112570 +) +k1,10063:11453160,39853983:188606 +k1,10063:13386990,39853983:188606 +k1,10063:14443949,39853983:188607 +k1,10063:15736837,39853983:188606 +k1,10063:17017928,39853983:188606 +k1,10063:17977237,39853983:188606 +k1,10063:19914999,39853983:188606 +k1,10063:22614945,39853983:188606 +k1,10063:23419589,39853983:188606 +k1,10063:23964055,39853983:188606 +(1,10063:23964055,39853983:0,452978,115847 +r1,10085:25729168,39853983:1765113,568825,115847 +k1,10063:23964055,39853983:-1765113 +) +(1,10063:23964055,39853983:1765113,452978,115847 +k1,10063:23964055,39853983:3277 +h1,10063:25725891,39853983:0,411205,112570 +) +k1,10063:25917775,39853983:188607 +k1,10063:27521303,39853983:188606 +k1,10063:28361337,39853983:188606 +k1,10063:30024503,39853983:188606 +k1,10063:32583029,39853983:0 +) +(1,10064:6630773,40719063:25952256,513147,126483 +k1,10063:9072410,40719063:133459 +k1,10063:10397314,40719063:133459 +k1,10063:12028272,40719063:133460 +k1,10063:13358418,40719063:133459 +k1,10063:16678237,40719063:133459 +k1,10063:17343193,40719063:133459 +k1,10063:18761158,40719063:133459 +k1,10063:19762970,40719063:133460 +k1,10063:21371644,40719063:133459 +k1,10063:22156531,40719063:133459 +k1,10063:24506418,40719063:133459 +k1,10063:25658963,40719063:133460 +k1,10063:27541578,40719063:133459 +k1,10063:29685682,40719063:133459 +k1,10063:32583029,40719063:0 +) +(1,10064:6630773,41584143:25952256,513147,134348 +k1,10063:7412529,41584143:165718 +k1,10063:8675976,41584143:165719 +k1,10063:10172075,41584143:165718 +k1,10063:12007650,41584143:165718 +k1,10063:12991258,41584143:165719 +k1,10063:15818393,41584143:165718 +k1,10063:17852542,41584143:165718 +k1,10063:18549758,41584143:165719 +k1,10063:19734561,41584143:165718 +k1,10063:22561696,41584143:165718 +k1,10063:23675066,41584143:165719 +(1,10063:23675066,41584143:0,459977,115847 +r1,10085:24736755,41584143:1061689,575824,115847 +k1,10063:23675066,41584143:-1061689 +) +(1,10063:23675066,41584143:1061689,459977,115847 +k1,10063:23675066,41584143:3277 +h1,10063:24733478,41584143:0,411205,112570 +) +k1,10063:24902473,41584143:165718 +k1,10063:26635812,41584143:165718 +k1,10063:28299684,41584143:165719 +h1,10063:29495061,41584143:0,0,0 +k1,10063:29660779,41584143:165718 +k1,10063:32583029,41584143:0 +) +(1,10064:6630773,42449223:25952256,473825,134348 +g1,10063:8565395,42449223 +(1,10063:8565395,42449223:0,452978,115847 +r1,10085:10330508,42449223:1765113,568825,115847 +k1,10063:8565395,42449223:-1765113 +) +(1,10063:8565395,42449223:1765113,452978,115847 +k1,10063:8565395,42449223:3277 +h1,10063:10327231,42449223:0,411205,112570 +) +k1,10064:32583030,42449223:22078852 +g1,10064:32583030,42449223 +) +v1,10066:6630773,43134078:0,393216,0 +(1,10085:6630773,45496296:25952256,2755434,196608 +g1,10085:6630773,45496296 +g1,10085:6630773,45496296 +g1,10085:6434165,45496296 +(1,10085:6434165,45496296:0,2755434,196608 +r1,10085:32779637,45496296:26345472,2952042,196608 +k1,10085:6434165,45496296:-26345472 +) +(1,10085:6434165,45496296:26345472,2755434,196608 +[1,10085:6630773,45496296:25952256,2558826,0 +(1,10068:6630773,43361909:25952256,424439,106246 +(1,10067:6630773,43361909:0,0,0 +g1,10067:6630773,43361909 +g1,10067:6630773,43361909 +g1,10067:6303093,43361909 +(1,10067:6303093,43361909:0,0,0 +) +g1,10067:6630773,43361909 +) +g1,10068:7294681,43361909 +g1,10068:8290543,43361909 +g1,10068:11610083,43361909 +g1,10068:12273991,43361909 +g1,10068:13269853,43361909 +g1,10068:15261577,43361909 +k1,10068:15261577,43361909:24773 +h1,10068:17278074,43361909:0,0,0 +k1,10068:32583029,43361909:15304955 +g1,10068:32583029,43361909 +) +(1,10069:6630773,44046764:25952256,424439,0 +h1,10069:6630773,44046764:0,0,0 +g1,10069:7294681,44046764 +g1,10069:8290543,44046764 +h1,10069:8622497,44046764:0,0,0 +k1,10069:32583029,44046764:23960532 +g1,10069:32583029,44046764 +) +(1,10070:6630773,44731619:25952256,424439,112852 +h1,10070:6630773,44731619:0,0,0 +g1,10070:9286405,44731619 +g1,10070:10282267,44731619 +g1,10070:13933761,44731619 +h1,10070:14265715,44731619:0,0,0 +k1,10070:32583029,44731619:18317314 +g1,10070:32583029,44731619 +) +(1,10071:6630773,45416474:25952256,424439,79822 +h1,10071:6630773,45416474:0,0,0 +g1,10071:6962727,45416474 +g1,10071:7294681,45416474 +g1,10071:8954451,45416474 +g1,10071:9950313,45416474 +h1,10071:11942037,45416474:0,0,0 +k1,10071:32583029,45416474:20640992 +g1,10071:32583029,45416474 +) +] +) +g1,10085:32583029,45496296 +g1,10085:6630773,45496296 +g1,10085:6630773,45496296 +g1,10085:32583029,45496296 +g1,10085:32583029,45496296 +) +] +(1,10085:32583029,45706769:0,0,0 +g1,10085:32583029,45706769 +) +) +] +(1,10085:6630773,47279633:25952256,0,0 +h1,10085:6630773,47279633:25952256,0,0 +) +] +(1,10085:4262630,4025873:0,0,0 +[1,10085:-473656,4025873:0,0,0 +(1,10085:-473656,-710413:0,0,0 +(1,10085:-473656,-710413:0,0,0 +g1,10085:-473656,-710413 +) +g1,10085:-473656,-710413 ) -k1,10825:29014430,51504789:25935872 -g1,10825:29014430,51504789 -) -] -) -) -) -] -[1,10882:3078558,4812305:0,0,0 -(1,10882:3078558,49800853:0,16384,2228224 -g1,10882:29030814,49800853 -g1,10882:36135244,49800853 -(1,10825:36135244,49800853:1720320,16384,2228224 -(1,10825:36135244,52029077:16384,1703936,0 -[1,10825:36135244,52029077:25952256,1703936,0 -(1,10825:36135244,51504789:25952256,1179648,0 -(1,10825:36135244,51504789:16384,1179648,0 -r1,10882:36151628,51504789:16384,1179648,0 -) -k1,10825:62087500,51504789:25935872 -g1,10825:62087500,51504789 -) -] -) -g1,10825:36675916,49800853 -(1,10825:36675916,49800853:1179648,16384,0 -r1,10882:37855564,49800853:1179648,16384,0 -) -) -k1,10882:3078556,49800853:-34777008 -) -] -g1,10882:6630773,4812305 -k1,10882:23552825,4812305:15726675 -g1,10882:25175496,4812305 -g1,10882:25997972,4812305 -g1,10882:28481131,4812305 -g1,10882:30046786,4812305 -) -) -] -[1,10882:6630773,45706769:25952256,40108032,0 -(1,10882:6630773,45706769:25952256,40108032,0 -(1,10882:6630773,45706769:0,0,0 -g1,10882:6630773,45706769 -) -[1,10882:6630773,45706769:25952256,40108032,0 -(1,10845:6630773,6254097:25952256,513147,134348 -k1,10844:10398328,6254097:250893 -k1,10844:11640782,6254097:250894 -k1,10844:13176182,6254097:250894 -k1,10844:14032628,6254097:250893 -k1,10844:14749482,6254097:250893 -k1,10844:16019461,6254097:250894 -k1,10844:19381349,6254097:250894 -k1,10844:20315127,6254097:250893 -k1,10844:25622778,6254097:250893 -k1,10844:27734239,6254097:250894 -k1,10844:28636561,6254097:250894 -k1,10844:29635220,6254097:250893 -k1,10845:32583029,6254097:0 -) -(1,10845:6630773,7095585:25952256,513147,134348 -k1,10844:8116912,7095585:243576 -k1,10844:9011915,7095585:243575 -k1,10844:10051098,7095585:243576 -k1,10844:10650533,7095585:243575 -k1,10844:12083587,7095585:243576 -k1,10844:13010047,7095585:243575 -k1,10844:15974022,7095585:243576 -k1,10844:16749094,7095585:243575 -k1,10844:18327638,7095585:243576 -k1,10844:19222641,7095585:243575 -k1,10844:21181950,7095585:243576 -k1,10844:22982005,7095585:243575 -k1,10844:23841619,7095585:243576 -k1,10844:24441054,7095585:243575 -k1,10844:26557649,7095585:243576 -k1,10844:28637543,7095585:243575 -k1,10844:29486672,7095585:243576 -k1,10844:31900144,7095585:243575 -k1,10844:32583029,7095585:0 -) -(1,10845:6630773,7937073:25952256,513147,134348 -k1,10844:8289251,7937073:204889 -k1,10844:10474638,7937073:204889 -k1,10844:11338819,7937073:204889 -k1,10844:14328333,7937073:204889 -k1,10844:16029409,7937073:204889 -k1,10844:17338581,7937073:204890 -k1,10844:19986652,7937073:204889 -k1,10844:22953884,7937073:204889 -k1,10844:25478092,7937073:204889 -k1,10844:26334409,7937073:204889 -k1,10844:31391584,7937073:204889 -k1,10844:32583029,7937073:0 -) -(1,10845:6630773,8778561:25952256,513147,134348 -k1,10844:11031754,8778561:216507 -k1,10844:12941711,8778561:216507 -k1,10844:13763772,8778561:216508 -k1,10844:17569030,8778561:216507 -k1,10844:18976982,8778561:216507 -k1,10844:21714659,8778561:216507 -k1,10844:22590458,8778561:216507 -k1,10844:23162825,8778561:216507 -k1,10844:26055823,8778561:216508 -k1,10844:27539796,8778561:216507 -k1,10844:30108390,8778561:216507 -k1,10844:32583029,8778561:0 -) -(1,10845:6630773,9620049:25952256,505283,134348 -k1,10844:9080032,9620049:260356 -k1,10844:11058743,9620049:260357 -k1,10844:12713050,9620049:260356 -k1,10844:15471639,9620049:260357 -k1,10844:16751080,9620049:260356 -k1,10844:18507624,9620049:260357 -k1,10844:23741507,9620049:260356 -k1,10844:24653292,9620049:260357 -k1,10844:27637980,9620049:260356 -k1,10844:28503890,9620049:260357 -k1,10844:30966256,9620049:260356 -k1,10845:32583029,9620049:0 -) -(1,10845:6630773,10461537:25952256,513147,134348 -k1,10844:8608769,10461537:252433 -k1,10844:10907235,10461537:252432 -k1,10844:12178753,10461537:252433 -k1,10844:14262262,10461537:252433 -k1,10844:15497734,10461537:252432 -k1,10844:17948245,10461537:252433 -k1,10844:19392122,10461537:252432 -k1,10844:20847796,10461537:252433 -k1,10844:23146263,10461537:252433 -k1,10844:26894385,10461537:252432 -k1,10844:31297868,10461537:252433 -k1,10844:32583029,10461537:0 -) -(1,10845:6630773,11303025:25952256,505283,126483 -g1,10844:8480199,11303025 -g1,10844:11218948,11303025 -g1,10844:12609622,11303025 -g1,10844:14415794,11303025 -k1,10845:32583029,11303025:16127755 -g1,10845:32583029,11303025 -) -(1,10847:6630773,12144513:25952256,513147,134348 -h1,10846:6630773,12144513:983040,0,0 -k1,10846:9247532,12144513:212898 -k1,10846:10275699,12144513:212899 -k1,10846:11530619,12144513:212898 -k1,10846:12359555,12144513:212898 -k1,10846:15283678,12144513:212899 -k1,10846:17226071,12144513:212898 -k1,10846:20445762,12144513:212899 -k1,10846:21847483,12144513:212898 -k1,10846:22719673,12144513:212898 -k1,10846:24755784,12144513:212899 -k1,10846:25922231,12144513:212898 -k1,10846:27749936,12144513:212898 -k1,10846:28318695,12144513:212899 -k1,10846:31227089,12144513:212898 -k1,10847:32583029,12144513:0 -) -(1,10847:6630773,12986001:25952256,505283,134348 -k1,10846:9060333,12986001:210511 -k1,10846:10289929,12986001:210511 -k1,10846:14017101,12986001:210510 -k1,10846:15512118,12986001:210511 -k1,10846:16590981,12986001:210511 -k1,10846:18757742,12986001:210511 -k1,10846:20498519,12986001:210511 -k1,10846:21360457,12986001:210510 -k1,10846:23761181,12986001:210511 -k1,10846:25163137,12986001:210511 -k1,10846:26827237,12986001:210511 -k1,10846:27906099,12986001:210510 -k1,10846:29246450,12986001:210511 -k1,10846:31563944,12986001:210511 -k1,10846:32583029,12986001:0 -) -(1,10847:6630773,13827489:25952256,513147,134348 -k1,10846:9495588,13827489:169319 -k1,10846:10280945,13827489:169319 -k1,10846:11958903,13827489:169319 -k1,10846:13964541,13827489:169319 -k1,10846:15087409,13827489:169319 -k1,10846:16731943,13827489:169319 -k1,10846:18411212,13827489:169319 -k1,10846:20670474,13827489:169319 -k1,10846:21254607,13827489:169290 -k1,10846:24449723,13827489:169319 -k1,10846:25301927,13827489:169319 -k1,10846:28548161,13827489:169319 -k1,10846:29333518,13827489:169319 -k1,10846:31665525,13827489:169319 -k1,10847:32583029,13827489:0 -) -(1,10847:6630773,14668977:25952256,513147,126483 -k1,10846:7834976,14668977:207400 -k1,10846:10703792,14668977:207399 -k1,10846:11527230,14668977:207400 -k1,10846:12937870,14668977:207399 -k1,10846:14900980,14668977:207400 -k1,10846:16656995,14668977:207399 -k1,10846:17732747,14668977:207400 -k1,10846:19072608,14668977:207399 -k1,10846:20664128,14668977:207400 -k1,10846:22762896,14668977:207399 -k1,10846:23501793,14668977:207400 -k1,10846:25039573,14668977:207399 -k1,10846:25898401,14668977:207400 -k1,10846:28066637,14668977:207399 -k1,10846:29557232,14668977:207400 -k1,10846:32583029,14668977:0 -) -(1,10847:6630773,15510465:25952256,513147,7863 -g1,10846:7489294,15510465 -g1,10846:8786251,15510465 -k1,10847:32583030,15510465:22292728 -g1,10847:32583030,15510465 -) -(1,10849:6630773,16351953:25952256,513147,134348 -h1,10848:6630773,16351953:983040,0,0 -k1,10848:8737408,16351953:170046 -k1,10848:10114627,16351953:170046 -k1,10848:10900711,16351953:170046 -k1,10848:13349444,16351953:170046 -h1,10848:14320032,16351953:0,0,0 -k1,10848:14490078,16351953:170046 -k1,10848:15469494,16351953:170046 -k1,10848:17137693,16351953:170046 -h1,10848:18333070,16351953:0,0,0 -k1,10848:18503116,16351953:170046 -k1,10848:19029022,16351953:170046 -k1,10848:21815265,16351953:170046 -k1,10848:22644603,16351953:170046 -k1,10848:23170509,16351953:170046 -k1,10848:26754325,16351953:170046 -k1,10848:30284402,16351953:170046 -k1,10848:30942007,16351953:170017 -k1,10849:32583029,16351953:0 -) -(1,10849:6630773,17193441:25952256,513147,126483 -k1,10848:8116692,17193441:218453 -k1,10848:8866643,17193441:218454 -k1,10848:10231321,17193441:218453 -k1,10848:10805634,17193441:218453 -k1,10848:14437858,17193441:218454 -k1,10848:17842671,17193441:218453 -k1,10848:19455075,17193441:218453 -k1,10848:20692614,17193441:218454 -k1,10848:24097427,17193441:218453 -k1,10848:25600386,17193441:218453 -k1,10848:29335502,17193441:218454 -k1,10848:31563944,17193441:218453 -k1,10848:32583029,17193441:0 -) -(1,10849:6630773,18034929:25952256,513147,126483 -k1,10848:9564045,18034929:237776 -k1,10848:12089029,18034929:237777 -k1,10848:13142073,18034929:237776 -k1,10848:14446120,18034929:237776 -k1,10848:16463199,18034929:237777 -k1,10848:19115321,18034929:237776 -k1,10848:20484905,18034929:237777 -k1,10848:23234021,18034929:237776 -k1,10848:25853375,18034929:237776 -k1,10848:28457002,18034929:237777 -k1,10848:29713863,18034929:237776 -k1,10848:32583029,18034929:0 -) -(1,10849:6630773,18876417:25952256,513147,134348 -k1,10848:8370603,18876417:249541 -k1,10848:10475468,18876417:249541 -k1,10848:11744094,18876417:249541 -k1,10848:15510296,18876417:249540 -k1,10848:17769826,18876417:249541 -k1,10848:19038452,18876417:249541 -k1,10848:21983489,18876417:249541 -k1,10848:23809826,18876417:249541 -k1,10848:24874635,18876417:249541 -k1,10848:26599390,18876417:249540 -k1,10848:28879892,18876417:249541 -k1,10848:29780861,18876417:249541 -k1,10848:31049487,18876417:249541 -k1,10849:32583029,18876417:0 -) -(1,10849:6630773,19717905:25952256,513147,134348 -k1,10848:9594922,19717905:227366 -k1,10848:10438326,19717905:227366 -k1,10848:12551163,19717905:227366 -k1,10848:13797614,19717905:227366 -k1,10848:16720476,19717905:227366 -k1,10848:17479339,19717905:227366 -k1,10848:19748151,19717905:227366 -k1,10848:20433615,19717905:227367 -k1,10848:21192478,19717905:227366 -k1,10848:23305315,19717905:227366 -k1,10848:24184109,19717905:227366 -k1,10848:25848680,19717905:227366 -k1,10848:26842162,19717905:227366 -k1,10848:28778052,19717905:227366 -k1,10848:31563944,19717905:227366 -k1,10848:32583029,19717905:0 -) -(1,10849:6630773,20559393:25952256,513147,126483 -g1,10848:9525498,20559393 -g1,10848:13509431,20559393 -g1,10848:14900105,20559393 -g1,10848:17109979,20559393 -g1,10848:18075324,20559393 -g1,10848:20285198,20559393 -g1,10848:21135855,20559393 -g1,10848:22354169,20559393 -k1,10849:32583029,20559393:8319796 -g1,10849:32583029,20559393 -) -(1,10863:6630773,32807511:25952256,11400739,0 -k1,10863:15747671,32807511:9116898 -(1,10850:15747671,32807511:0,0,0 -g1,10850:15747671,32807511 -g1,10850:15747671,32807511 -g1,10850:15419991,32807511 -(1,10850:15419991,32807511:0,0,0 -) -g1,10850:15747671,32807511 -) -(1,10861:15747671,32807511:7718460,11400739,0 -g1,10861:19606901,32807511 -(1,10861:19606901,22352218:0,0,0 -(1,10861:19606901,22352218:0,0,0 -g1,10852:19606901,22352218 -(1,10853:19606901,22352218:0,0,0 -(1,10853:19606901,22352218:0,0,0 -g1,10853:19606901,22352218 -g1,10853:19606901,22352218 -g1,10853:19606901,22352218 -g1,10853:19606901,22352218 -g1,10853:19606901,22352218 -(1,10853:19606901,22352218:0,0,0 -(1,10853:19606901,22352218:7299073,385745,120913 -(1,10853:19606901,22352218:7299073,385745,120913 -g1,10853:22852113,22352218 -$1,10853:22852113,22352218 -$1,10853:23459632,22352218 -g1,10853:23638939,22352218 -) -g1,10853:26905974,22352218 -) -) -g1,10853:19606901,22352218 -g1,10853:19606901,22352218 -) -) -g1,10853:19606901,22352218 -(1,10854:19606901,22352218:0,0,0 -(1,10854:19606901,22352218:0,0,0 -g1,10854:19606901,22352218 -g1,10854:19606901,22352218 -g1,10854:19606901,22352218 -g1,10854:19606901,22352218 -g1,10854:19606901,22352218 -(1,10854:19606901,22352218:0,0,0 -(1,10854:19606901,22352218:0,0,0 -(1,10854:19606901,22352218:0,0,0 -) -g1,10854:19606901,22352218 -) -) -g1,10854:19606901,22352218 -g1,10854:19606901,22352218 -) -) -g1,10854:19606901,22352218 -g1,10855:19606901,22352218 -(1,10855:19606901,22352218:0,0,0 -(1,10855:19606901,22352218:0,0,0 -g1,10855:19606901,22352218 -g1,10855:19606901,22352218 -g1,10855:19606901,22352218 -g1,10855:19606901,22352218 -g1,10855:19606901,22352218 -(1,10855:19606901,22352218:0,0,0 -(1,10855:19606901,22352218:4121582,373362,104590 -(1,10855:19606901,22352218:4121582,373362,104590 -(1,10855:19606901,22352218:0,373362,104590 -r1,10882:23728483,22352218:4121582,477952,104590 -k1,10855:19606901,22352218:-4121582 -) -(1,10855:19606901,22352218:4121582,373362,104590 -g1,10855:23092125,22352218 -h1,10855:23725206,22352218:0,370085,101313 -) -) -g1,10855:23728483,22352218 -) -) -g1,10855:19606901,22352218 -g1,10855:19606901,22352218 -) -) -g1,10855:19606901,22352218 -g1,10856:19606901,22352218 -(1,10856:19606901,22352218:0,0,0 -(1,10856:19606901,22352218:0,0,0 -g1,10856:19606901,22352218 -g1,10856:19606901,22352218 -g1,10856:19606901,22352218 -g1,10856:19606901,22352218 -g1,10856:19606901,22352218 -(1,10856:19606901,22352218:0,0,0 -(1,10856:19606901,22352218:4121582,373362,104590 -(1,10856:19606901,22352218:4121582,373362,104590 -(1,10856:19606901,22352218:0,373362,104590 -r1,10882:23728483,22352218:4121582,477952,104590 -k1,10856:19606901,22352218:-4121582 -) -(1,10856:19606901,22352218:4121582,373362,104590 -g1,10856:23092125,22352218 -h1,10856:23725206,22352218:0,370085,101313 -) -) -g1,10856:23728483,22352218 -) -) -g1,10856:19606901,22352218 -g1,10856:19606901,22352218 -) -) -g1,10856:19606901,22352218 -g1,10857:19606901,22352218 -(1,10857:19606901,22352218:0,0,0 -(1,10857:19606901,22352218:0,0,0 -g1,10857:19606901,22352218 -g1,10857:19606901,22352218 -g1,10857:19606901,22352218 -g1,10857:19606901,22352218 -g1,10857:19606901,22352218 -(1,10857:19606901,22352218:0,0,0 -(1,10857:19606901,22352218:6778260,454754,7077 -(1,10857:19606901,22352218:6778260,454754,7077 -g1,10857:22263469,22352218 -g1,10857:23978088,22352218 -$1,10857:23978088,22352218 -$1,10857:24585607,22352218 -g1,10857:24764914,22352218 -) -g1,10857:26385161,22352218 -) -) -g1,10857:19606901,22352218 -g1,10857:19606901,22352218 -) -) -g1,10857:19606901,22352218 -g1,10858:19606901,22352218 -g1,10858:19606901,22352218 -g1,10858:19606901,22352218 -g1,10858:19606901,22352218 -g1,10858:19606901,22352218 -g1,10858:19606901,22352218 -g1,10859:19606901,22352218 -g1,10859:19606901,22352218 -g1,10859:19606901,22352218 -g1,10859:19606901,22352218 -g1,10859:19606901,22352218 -g1,10859:19606901,22352218 -g1,10860:19606901,22352218 -g1,10860:19606901,22352218 -g1,10860:19606901,22352218 -g1,10860:19606901,22352218 -g1,10860:19606901,22352218 -g1,10860:19606901,22352218 -g1,10861:19606901,22352218 -g1,10861:19606901,22352218 -) -g1,10861:19606901,22352218 -) -) -g1,10863:23466131,32807511 -k1,10863:32583029,32807511:9116898 -) -(1,10866:6630773,34304359:25952256,513147,134348 -h1,10865:6630773,34304359:983040,0,0 -k1,10865:8996294,34304359:185794 -k1,10865:11798286,34304359:185795 -k1,10865:13839404,34304359:185794 -k1,10865:17397026,34304359:185795 -k1,10865:17938680,34304359:185794 -k1,10865:20819971,34304359:185795 -k1,10865:22290271,34304359:185794 -k1,10865:23577071,34304359:185795 -k1,10865:24572235,34304359:185794 -k1,10865:25973723,34304359:185795 -k1,10865:28322205,34304359:185794 -k1,10865:29194162,34304359:185795 -k1,10865:29838053,34304359:185794 -k1,10865:31516758,34304359:185795 -k1,10865:32583029,34304359:0 -) -(1,10866:6630773,35145847:25952256,513147,126483 -k1,10865:8642162,35145847:232087 -k1,10865:9662647,35145847:232087 -k1,10865:14125738,35145847:232087 -k1,10865:14815922,35145847:232087 -k1,10865:16423610,35145847:232087 -k1,10865:18996643,35145847:232087 -k1,10865:19584590,35145847:232087 -k1,10865:21497019,35145847:232086 -k1,10865:22380534,35145847:232087 -k1,10865:23631706,35145847:232087 -k1,10865:25772857,35145847:232087 -k1,10865:26492499,35145847:232054 -k1,10865:28404929,35145847:232087 -k1,10865:29446386,35145847:232087 -k1,10865:31563944,35145847:232087 -k1,10865:32583029,35145847:0 -) -(1,10866:6630773,35987335:25952256,513147,7863 -k1,10865:8576587,35987335:210421 -k1,10865:9888013,35987335:210421 -k1,10865:11188298,35987335:210421 -k1,10865:13860250,35987335:210420 -k1,10865:15267358,35987335:210421 -k1,10865:18664139,35987335:210421 -k1,10865:20159066,35987335:210421 -k1,10865:21799483,35987335:210421 -k1,10865:23028989,35987335:210421 -k1,10865:25934905,35987335:210420 -k1,10865:29146875,35987335:210421 -k1,10865:30905912,35987335:210421 -k1,10865:31767761,35987335:210421 -k1,10865:32583029,35987335:0 -) -(1,10866:6630773,36828823:25952256,513147,102891 -k1,10865:8253679,36828823:228955 -k1,10865:9501718,36828823:228954 -k1,10865:11411016,36828823:228955 -k1,10865:14283038,36828823:228955 -k1,10865:16079613,36828823:228954 -k1,10865:17327653,36828823:228955 -k1,10865:20425773,36828823:228954 -k1,10865:22437963,36828823:228955 -k1,10865:23022778,36828823:228955 -k1,10865:25947228,36828823:228954 -k1,10865:27277188,36828823:228955 -k1,10865:27862003,36828823:228955 -k1,10865:29390536,36828823:228954 -k1,10865:31563944,36828823:228955 -k1,10865:32583029,36828823:0 -) -(1,10866:6630773,37670311:25952256,513147,134348 -k1,10865:8522305,37670311:156139 -k1,10865:9209942,37670311:156140 -k1,10865:10175451,37670311:156139 -k1,10865:12355997,37670311:156139 -k1,10865:13128175,37670311:156140 -k1,10865:15745846,37670311:156139 -k1,10865:17226469,37670311:156140 -k1,10865:19483692,37670311:156139 -k1,10865:20744113,37670311:156139 -k1,10865:21648019,37670311:156140 -k1,10865:24091365,37670311:156139 -k1,10865:25532010,37670311:156139 -k1,10865:26503418,37670311:156140 -k1,10865:27725828,37670311:156139 -k1,10865:29335557,37670311:156140 -k1,10865:30623503,37670311:156139 -k1,10865:32583029,37670311:0 -) -(1,10866:6630773,38511799:25952256,513147,134348 -k1,10865:7392664,38511799:145853 -k1,10865:8557602,38511799:145853 -k1,10865:10793398,38511799:145853 -k1,10865:12609108,38511799:145853 -k1,10865:13901186,38511799:145853 -k1,10865:15745077,38511799:145853 -k1,10865:16246790,38511799:145853 -k1,10865:17492338,38511799:145854 -k1,10865:18289619,38511799:145853 -(1,10865:18289619,38511799:0,452978,115847 -r1,10882:20758156,38511799:2468537,568825,115847 -k1,10865:18289619,38511799:-2468537 -) -(1,10865:18289619,38511799:2468537,452978,115847 -k1,10865:18289619,38511799:3277 -h1,10865:20754879,38511799:0,411205,112570 -) -k1,10865:20904009,38511799:145853 -k1,10865:23675234,38511799:145853 -k1,10865:25047266,38511799:145853 -k1,10865:25876004,38511799:145853 -k1,10865:29011609,38511799:145853 -k1,10865:30481945,38511799:145853 -k1,10865:32583029,38511799:0 -) -(1,10866:6630773,39353287:25952256,513147,134348 -k1,10865:7891938,39353287:156883 -k1,10865:9334637,39353287:156883 -k1,10865:10239286,39353287:156883 -k1,10865:11166872,39353287:156883 -k1,10865:14969523,39353287:156883 -k1,10865:16410912,39353287:156883 -k1,10865:19312444,39353287:156884 -k1,10865:20240030,39353287:156883 -k1,10865:22356439,39353287:156883 -k1,10865:23129360,39353287:156883 -k1,10865:24305328,39353287:156883 -k1,10865:26701576,39353287:156883 -k1,10865:31089463,39353287:156883 -k1,10865:32583029,39353287:0 -) -(1,10866:6630773,40194775:25952256,505283,134348 -g1,10865:7516164,40194775 -g1,10865:10712354,40194775 -g1,10865:11267443,40194775 -g1,10865:12749867,40194775 -g1,10865:14629439,40194775 -g1,10865:15480096,40194775 -g1,10865:16035185,40194775 -g1,10865:18745754,40194775 -g1,10865:19561021,40194775 -g1,10865:20779335,40194775 -g1,10865:23217929,40194775 -k1,10866:32583029,40194775:5134096 -g1,10866:32583029,40194775 -) -] -(1,10882:32583029,45706769:0,0,0 -g1,10882:32583029,45706769 -) -) -] -(1,10882:6630773,47279633:25952256,0,0 -h1,10882:6630773,47279633:25952256,0,0 -) -] -(1,10882:4262630,4025873:0,0,0 -[1,10882:-473656,4025873:0,0,0 -(1,10882:-473656,-710413:0,0,0 -(1,10882:-473656,-710413:0,0,0 -g1,10882:-473656,-710413 -) -g1,10882:-473656,-710413 -) -] -) -] -!20963 -}183 -Input:1632:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1633:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1634:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1635:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1636:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1637:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1638:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!670 -{184 -[1,10918:4262630,47279633:28320399,43253760,0 -(1,10918:4262630,4025873:0,0,0 -[1,10918:-473656,4025873:0,0,0 -(1,10918:-473656,-710413:0,0,0 -(1,10918:-473656,-644877:0,0,0 -k1,10918:-473656,-644877:-65536 +] +) +] +!25041 +}160 +Input:1483:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1484:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1485:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1486:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1487:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1488:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1489:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1490:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1491:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1492:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1493:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1494:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1495:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1496:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1497:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1498:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1499:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1500:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1501:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1502:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1892 +{161 +[1,10139:4262630,47279633:28320399,43253760,0 +(1,10139:4262630,4025873:0,0,0 +[1,10139:-473656,4025873:0,0,0 +(1,10139:-473656,-710413:0,0,0 +(1,10139:-473656,-644877:0,0,0 +k1,10139:-473656,-644877:-65536 ) -(1,10918:-473656,4736287:0,0,0 -k1,10918:-473656,4736287:5209943 +(1,10139:-473656,4736287:0,0,0 +k1,10139:-473656,4736287:5209943 ) -g1,10918:-473656,-710413 +g1,10139:-473656,-710413 ) ] ) -[1,10918:6630773,47279633:25952256,43253760,0 -[1,10918:6630773,4812305:25952256,786432,0 -(1,10918:6630773,4812305:25952256,513147,134348 -(1,10918:6630773,4812305:25952256,513147,134348 -g1,10918:3078558,4812305 -[1,10918:3078558,4812305:0,0,0 -(1,10918:3078558,2439708:0,1703936,0 -k1,10918:1358238,2439708:-1720320 -(1,10825:1358238,2439708:1720320,1703936,0 -(1,10825:1358238,2439708:1179648,16384,0 -r1,10918:2537886,2439708:1179648,16384,0 +[1,10139:6630773,47279633:25952256,43253760,0 +[1,10139:6630773,4812305:25952256,786432,0 +(1,10139:6630773,4812305:25952256,505283,134348 +(1,10139:6630773,4812305:25952256,505283,134348 +g1,10139:3078558,4812305 +[1,10139:3078558,4812305:0,0,0 +(1,10139:3078558,2439708:0,1703936,0 +k1,10139:1358238,2439708:-1720320 +(1,8606:1358238,2439708:1720320,1703936,0 +(1,8606:1358238,2439708:1179648,16384,0 +r1,10139:2537886,2439708:1179648,16384,0 ) -g1,10825:3062174,2439708 -(1,10825:3062174,2439708:16384,1703936,0 -[1,10825:3062174,2439708:25952256,1703936,0 -(1,10825:3062174,1915420:25952256,1179648,0 -(1,10825:3062174,1915420:16384,1179648,0 -r1,10918:3078558,1915420:16384,1179648,0 +g1,8606:3062174,2439708 +(1,8606:3062174,2439708:16384,1703936,0 +[1,8606:3062174,2439708:25952256,1703936,0 +(1,8606:3062174,1915420:25952256,1179648,0 +(1,8606:3062174,1915420:16384,1179648,0 +r1,10139:3078558,1915420:16384,1179648,0 ) -k1,10825:29014430,1915420:25935872 -g1,10825:29014430,1915420 +k1,8606:29014430,1915420:25935872 +g1,8606:29014430,1915420 ) ] ) ) ) ] -[1,10918:3078558,4812305:0,0,0 -(1,10918:3078558,2439708:0,1703936,0 -g1,10918:29030814,2439708 -g1,10918:36135244,2439708 -(1,10825:36135244,2439708:1720320,1703936,0 -(1,10825:36135244,2439708:16384,1703936,0 -[1,10825:36135244,2439708:25952256,1703936,0 -(1,10825:36135244,1915420:25952256,1179648,0 -(1,10825:36135244,1915420:16384,1179648,0 -r1,10918:36151628,1915420:16384,1179648,0 +[1,10139:3078558,4812305:0,0,0 +(1,10139:3078558,2439708:0,1703936,0 +g1,10139:29030814,2439708 +g1,10139:36135244,2439708 +(1,8606:36135244,2439708:1720320,1703936,0 +(1,8606:36135244,2439708:16384,1703936,0 +[1,8606:36135244,2439708:25952256,1703936,0 +(1,8606:36135244,1915420:25952256,1179648,0 +(1,8606:36135244,1915420:16384,1179648,0 +r1,10139:36151628,1915420:16384,1179648,0 ) -k1,10825:62087500,1915420:25935872 -g1,10825:62087500,1915420 +k1,8606:62087500,1915420:25935872 +g1,8606:62087500,1915420 ) ] ) -g1,10825:36675916,2439708 -(1,10825:36675916,2439708:1179648,16384,0 -r1,10918:37855564,2439708:1179648,16384,0 +g1,8606:36675916,2439708 +(1,8606:36675916,2439708:1179648,16384,0 +r1,10139:37855564,2439708:1179648,16384,0 ) ) -k1,10918:3078556,2439708:-34777008 +k1,10139:3078556,2439708:-34777008 ) ] -[1,10918:3078558,4812305:0,0,0 -(1,10918:3078558,49800853:0,16384,2228224 -k1,10918:1358238,49800853:-1720320 -(1,10825:1358238,49800853:1720320,16384,2228224 -(1,10825:1358238,49800853:1179648,16384,0 -r1,10918:2537886,49800853:1179648,16384,0 +[1,10139:3078558,4812305:0,0,0 +(1,10139:3078558,49800853:0,16384,2228224 +k1,10139:1358238,49800853:-1720320 +(1,8606:1358238,49800853:1720320,16384,2228224 +(1,8606:1358238,49800853:1179648,16384,0 +r1,10139:2537886,49800853:1179648,16384,0 ) -g1,10825:3062174,49800853 -(1,10825:3062174,52029077:16384,1703936,0 -[1,10825:3062174,52029077:25952256,1703936,0 -(1,10825:3062174,51504789:25952256,1179648,0 -(1,10825:3062174,51504789:16384,1179648,0 -r1,10918:3078558,51504789:16384,1179648,0 +g1,8606:3062174,49800853 +(1,8606:3062174,52029077:16384,1703936,0 +[1,8606:3062174,52029077:25952256,1703936,0 +(1,8606:3062174,51504789:25952256,1179648,0 +(1,8606:3062174,51504789:16384,1179648,0 +r1,10139:3078558,51504789:16384,1179648,0 ) -k1,10825:29014430,51504789:25935872 -g1,10825:29014430,51504789 +k1,8606:29014430,51504789:25935872 +g1,8606:29014430,51504789 ) ] ) ) ) ] -[1,10918:3078558,4812305:0,0,0 -(1,10918:3078558,49800853:0,16384,2228224 -g1,10918:29030814,49800853 -g1,10918:36135244,49800853 -(1,10825:36135244,49800853:1720320,16384,2228224 -(1,10825:36135244,52029077:16384,1703936,0 -[1,10825:36135244,52029077:25952256,1703936,0 -(1,10825:36135244,51504789:25952256,1179648,0 -(1,10825:36135244,51504789:16384,1179648,0 -r1,10918:36151628,51504789:16384,1179648,0 +[1,10139:3078558,4812305:0,0,0 +(1,10139:3078558,49800853:0,16384,2228224 +g1,10139:29030814,49800853 +g1,10139:36135244,49800853 +(1,8606:36135244,49800853:1720320,16384,2228224 +(1,8606:36135244,52029077:16384,1703936,0 +[1,8606:36135244,52029077:25952256,1703936,0 +(1,8606:36135244,51504789:25952256,1179648,0 +(1,8606:36135244,51504789:16384,1179648,0 +r1,10139:36151628,51504789:16384,1179648,0 ) -k1,10825:62087500,51504789:25935872 -g1,10825:62087500,51504789 +k1,8606:62087500,51504789:25935872 +g1,8606:62087500,51504789 ) ] ) -g1,10825:36675916,49800853 -(1,10825:36675916,49800853:1179648,16384,0 -r1,10918:37855564,49800853:1179648,16384,0 +g1,8606:36675916,49800853 +(1,8606:36675916,49800853:1179648,16384,0 +r1,10139:37855564,49800853:1179648,16384,0 ) ) -k1,10918:3078556,49800853:-34777008 +k1,10139:3078556,49800853:-34777008 ) ] -g1,10918:6630773,4812305 -g1,10918:6630773,4812305 -g1,10918:9499939,4812305 -g1,10918:12584718,4812305 -g1,10918:13994397,4812305 -g1,10918:17201073,4812305 -k1,10918:31387652,4812305:14186579 +g1,10139:6630773,4812305 +k1,10139:21643106,4812305:13816956 +g1,10139:23265777,4812305 +g1,10139:24088253,4812305 +g1,10139:28572226,4812305 +g1,10139:29981905,4812305 ) ) ] -[1,10918:6630773,45706769:25952256,40108032,0 -(1,10918:6630773,45706769:25952256,40108032,0 -(1,10918:6630773,45706769:0,0,0 -g1,10918:6630773,45706769 +[1,10139:6630773,45706769:25952256,40108032,0 +(1,10139:6630773,45706769:25952256,40108032,0 +(1,10139:6630773,45706769:0,0,0 +g1,10139:6630773,45706769 +) +[1,10139:6630773,45706769:25952256,40108032,0 +v1,10085:6630773,6254097:0,393216,0 +(1,10085:6630773,10379241:25952256,4518360,196608 +g1,10085:6630773,10379241 +g1,10085:6630773,10379241 +g1,10085:6434165,10379241 +(1,10085:6434165,10379241:0,4518360,196608 +r1,10139:32779637,10379241:26345472,4714968,196608 +k1,10085:6434165,10379241:-26345472 +) +(1,10085:6434165,10379241:26345472,4518360,196608 +[1,10085:6630773,10379241:25952256,4321752,0 +(1,10072:6630773,6481928:25952256,424439,106246 +h1,10072:6630773,6481928:0,0,0 +g1,10072:6962727,6481928 +g1,10072:7294681,6481928 +k1,10072:7294681,6481928:0 +h1,10072:9950313,6481928:0,0,0 +k1,10072:32583029,6481928:22632716 +g1,10072:32583029,6481928 +) +(1,10073:6630773,7166783:25952256,424439,0 +h1,10073:6630773,7166783:0,0,0 +g1,10073:6962727,7166783 +g1,10073:7294681,7166783 +g1,10073:7958589,7166783 +g1,10073:8954451,7166783 +g1,10073:9618359,7166783 +g1,10073:10282267,7166783 +h1,10073:10614221,7166783:0,0,0 +k1,10073:32583029,7166783:21968808 +g1,10073:32583029,7166783 +) +(1,10074:6630773,7851638:25952256,424439,79822 +h1,10074:6630773,7851638:0,0,0 +h1,10074:6962727,7851638:0,0,0 +k1,10074:32583029,7851638:25620302 +g1,10074:32583029,7851638 +) +(1,10078:6630773,8667565:25952256,424439,79822 +(1,10076:6630773,8667565:0,0,0 +g1,10076:6630773,8667565 +g1,10076:6630773,8667565 +g1,10076:6303093,8667565 +(1,10076:6303093,8667565:0,0,0 +) +g1,10076:6630773,8667565 +) +g1,10078:7626635,8667565 +g1,10078:8954451,8667565 +h1,10078:10614221,8667565:0,0,0 +k1,10078:32583029,8667565:21968808 +g1,10078:32583029,8667565 +) +(1,10080:6630773,9483492:25952256,424439,6605 +(1,10079:6630773,9483492:0,0,0 +g1,10079:6630773,9483492 +g1,10079:6630773,9483492 +g1,10079:6303093,9483492 +(1,10079:6303093,9483492:0,0,0 +) +g1,10079:6630773,9483492 +) +h1,10080:6962727,9483492:0,0,0 +k1,10080:32583029,9483492:25620302 +g1,10080:32583029,9483492 +) +(1,10084:6630773,10299419:25952256,424439,79822 +(1,10082:6630773,10299419:0,0,0 +g1,10082:6630773,10299419 +g1,10082:6630773,10299419 +g1,10082:6303093,10299419 +(1,10082:6303093,10299419:0,0,0 +) +g1,10082:6630773,10299419 +) +g1,10084:7626635,10299419 +g1,10084:8954451,10299419 +h1,10084:10614221,10299419:0,0,0 +k1,10084:32583029,10299419:21968808 +g1,10084:32583029,10299419 +) +] +) +g1,10085:32583029,10379241 +g1,10085:6630773,10379241 +g1,10085:6630773,10379241 +g1,10085:32583029,10379241 +g1,10085:32583029,10379241 +) +h1,10085:6630773,10575849:0,0,0 +v1,10089:6630773,11440929:0,393216,0 +(1,10090:6630773,14460314:25952256,3412601,0 +g1,10090:6630773,14460314 +g1,10090:6237557,14460314 +r1,10139:6368629,14460314:131072,3412601,0 +g1,10090:6567858,14460314 +g1,10090:6764466,14460314 +[1,10090:6764466,14460314:25818563,3412601,0 +(1,10090:6764466,11749227:25818563,701514,196608 +(1,10089:6764466,11749227:0,701514,196608 +r1,10139:8010564,11749227:1246098,898122,196608 +k1,10089:6764466,11749227:-1246098 +) +(1,10089:6764466,11749227:1246098,701514,196608 +) +k1,10089:8230670,11749227:220106 +k1,10089:8558350,11749227:327680 +(1,10089:8558350,11749227:0,452978,115847 +r1,10139:10323463,11749227:1765113,568825,115847 +k1,10089:8558350,11749227:-1765113 +) +(1,10089:8558350,11749227:1765113,452978,115847 +k1,10089:8558350,11749227:3277 +h1,10089:10320186,11749227:0,411205,112570 +) +k1,10089:10543568,11749227:220105 +k1,10089:12508898,11749227:220106 +k1,10089:13415166,11749227:220106 +k1,10089:16725294,11749227:220105 +k1,10089:18800724,11749227:220106 +k1,10089:20153292,11749227:220106 +k1,10089:23462109,11749227:220105 +k1,10089:25380253,11749227:220106 +k1,10089:26619444,11749227:220106 +k1,10089:29871900,11749227:220105 +k1,10089:32051532,11749227:220106 +k1,10090:32583029,11749227:0 +) +(1,10090:6764466,12614307:25818563,505283,134348 +(1,10089:6764466,12614307:0,414482,115847 +r1,10139:8529579,12614307:1765113,530329,115847 +k1,10089:6764466,12614307:-1765113 +) +(1,10089:6764466,12614307:1765113,414482,115847 +k1,10089:6764466,12614307:3277 +h1,10089:8526302,12614307:0,411205,112570 +) +k1,10089:8940798,12614307:237549 +k1,10089:9806182,12614307:237549 +k1,10089:11787644,12614307:237549 +k1,10089:13722574,12614307:237548 +k1,10089:15244629,12614307:237549 +k1,10089:17773972,12614307:237549 +k1,10089:20824982,12614307:237549 +k1,10089:23779654,12614307:237549 +k1,10089:25871872,12614307:237549 +k1,10089:26918790,12614307:237548 +k1,10089:27927042,12614307:237549 +k1,10089:31391584,12614307:237549 +k1,10089:32583029,12614307:0 +) +(1,10090:6764466,13479387:25818563,513147,126483 +k1,10089:10012245,13479387:215428 +k1,10089:12237661,13479387:215427 +k1,10089:13472174,13479387:215428 +k1,10089:17101371,13479387:215427 +k1,10089:20676830,13479387:215428 +k1,10089:21760609,13479387:215427 +k1,10089:23080319,13479387:215428 +k1,10089:24395440,13479387:215427 +(1,10089:24395440,13479387:0,452978,115847 +r1,10139:26863977,13479387:2468537,568825,115847 +k1,10089:24395440,13479387:-2468537 +) +(1,10089:24395440,13479387:2468537,452978,115847 +k1,10089:24395440,13479387:3277 +h1,10089:26860700,13479387:0,411205,112570 +) +k1,10089:27079405,13479387:215428 +k1,10089:27910870,13479387:215427 +k1,10089:29145383,13479387:215428 +k1,10089:30937606,13479387:215427 +k1,10089:31812326,13479387:215428 +k1,10090:32583029,13479387:0 +) +(1,10090:6764466,14344467:25818563,505283,115847 +(1,10089:6764466,14344467:0,459977,115847 +r1,10139:7474444,14344467:709978,575824,115847 +k1,10089:6764466,14344467:-709978 +) +(1,10089:6764466,14344467:709978,459977,115847 +k1,10089:6764466,14344467:3277 +h1,10089:7471167,14344467:0,411205,112570 +) +g1,10089:7673673,14344467 +g1,10089:8555787,14344467 +(1,10089:8555787,14344467:0,452978,115847 +r1,10139:9969188,14344467:1413401,568825,115847 +k1,10089:8555787,14344467:-1413401 +) +(1,10089:8555787,14344467:1413401,452978,115847 +k1,10089:8555787,14344467:3277 +h1,10089:9965911,14344467:0,411205,112570 +) +g1,10089:10168417,14344467 +g1,10089:13554006,14344467 +g1,10089:15763224,14344467 +g1,10089:16981538,14344467 +(1,10089:16981538,14344467:0,452978,115847 +r1,10139:18746651,14344467:1765113,568825,115847 +k1,10089:16981538,14344467:-1765113 +) +(1,10089:16981538,14344467:1765113,452978,115847 +k1,10089:16981538,14344467:3277 +h1,10089:18743374,14344467:0,411205,112570 +) +g1,10089:18945880,14344467 +k1,10090:32583029,14344467:10277118 +g1,10090:32583029,14344467 +) +] +g1,10090:32583029,14460314 +) +h1,10090:6630773,14460314:0,0,0 +(1,10092:6630773,16577132:25952256,555811,139132 +(1,10092:6630773,16577132:2450326,534184,12975 +g1,10092:6630773,16577132 +g1,10092:9081099,16577132 +) +(1,10092:9081099,16577132:0,455603,127104 +r1,10139:11408951,16577132:2327852,582707,127104 +k1,10092:9081099,16577132:-2327852 +) +(1,10092:9081099,16577132:2327852,455603,127104 +k1,10092:9081099,16577132:3277 +h1,10092:11405674,16577132:0,452326,123827 +) +g1,10092:11633871,16577132 +k1,10092:32583030,16577132:18977508 +g1,10092:32583030,16577132 +) +(1,10094:6630773,17835428:25952256,513147,126483 +k1,10093:8088054,17835428:260594 +(1,10093:8088054,17835428:0,414482,115847 +r1,10139:10204879,17835428:2116825,530329,115847 +k1,10093:8088054,17835428:-2116825 +) +(1,10093:8088054,17835428:2116825,414482,115847 +k1,10093:8088054,17835428:3277 +h1,10093:10201602,17835428:0,411205,112570 +) +k1,10093:10465473,17835428:260594 +k1,10093:10465473,17835428:0 +k1,10093:13749897,17835428:260593 +k1,10093:14541988,17835428:260594 +k1,10093:16015653,17835428:260594 +k1,10093:19581228,17835428:260594 +k1,10093:21528719,17835428:260594 +k1,10093:22861482,17835428:260594 +k1,10093:24649719,17835428:260593 +k1,10093:27884337,17835428:260594 +k1,10093:28831093,17835428:260594 +k1,10093:32583029,17835428:0 +) +(1,10094:6630773,18700508:25952256,505283,126483 +k1,10093:7951010,18700508:187775 +k1,10093:10268050,18700508:187775 +k1,10093:12827573,18700508:187775 +k1,10093:13824719,18700508:187776 +k1,10093:14368354,18700508:187775 +k1,10093:15655823,18700508:187775 +k1,10093:16495026,18700508:187775 +(1,10093:16495026,18700508:0,452978,115847 +r1,10139:18963563,18700508:2468537,568825,115847 +k1,10093:16495026,18700508:-2468537 +) +(1,10093:16495026,18700508:2468537,452978,115847 +k1,10093:16495026,18700508:3277 +h1,10093:18960286,18700508:0,411205,112570 +) +k1,10093:19325008,18700508:187775 +k1,10093:21398254,18700508:187775 +k1,10093:22690311,18700508:187775 +k1,10093:23625853,18700508:187776 +k1,10093:26127704,18700508:187775 +k1,10093:29366180,18700508:187775 +k1,10093:31563944,18700508:187775 +k1,10093:32583029,18700508:0 +) +(1,10094:6630773,19565588:25952256,513147,126483 +k1,10093:10239895,19565588:195352 +k1,10093:13621607,19565588:195352 +k1,10093:15101464,19565588:195351 +k1,10093:17194739,19565588:195352 +k1,10093:18409176,19565588:195352 +k1,10093:20181324,19565588:195352 +k1,10093:21035968,19565588:195352 +k1,10093:22250405,19565588:195352 +k1,10093:24034349,19565588:195351 +k1,10093:25058731,19565588:195352 +k1,10093:27611413,19565588:195352 +k1,10093:31400104,19565588:195352 +k1,10093:32583029,19565588:0 +) +(1,10094:6630773,20430668:25952256,513147,115847 +k1,10093:7545016,20430668:254951 +k1,10093:10690760,20430668:254951 +k1,10093:13641207,20430668:254951 +(1,10093:13641207,20430668:0,452978,115847 +r1,10139:16109744,20430668:2468537,568825,115847 +k1,10093:13641207,20430668:-2468537 +) +(1,10093:13641207,20430668:2468537,452978,115847 +k1,10093:13641207,20430668:3277 +h1,10093:16106467,20430668:0,411205,112570 +) +k1,10093:16364695,20430668:254951 +k1,10093:18241662,20430668:254951 +k1,10093:19244380,20430668:254952 +k1,10093:21540777,20430668:254951 +k1,10093:22481890,20430668:254951 +k1,10093:26012330,20430668:254951 +k1,10093:28984404,20430668:254951 +k1,10093:29855393,20430668:254951 +k1,10093:30466204,20430668:254951 +(1,10093:30466204,20430668:0,414482,115847 +r1,10139:32583029,20430668:2116825,530329,115847 +k1,10093:30466204,20430668:-2116825 +) +(1,10093:30466204,20430668:2116825,414482,115847 +k1,10093:30466204,20430668:3277 +h1,10093:32579752,20430668:0,411205,112570 +) +k1,10093:32583029,20430668:0 +) +(1,10094:6630773,21295748:25952256,505283,126483 +g1,10093:8244924,21295748 +g1,10093:9576615,21295748 +g1,10093:10842115,21295748 +k1,10094:32583028,21295748:20164772 +g1,10094:32583028,21295748 +) +(1,10112:6630773,33170964:25952256,11027837,0 +k1,10112:12321541,33170964:5690768 +(1,10095:12321541,33170964:0,0,0 +g1,10095:12321541,33170964 +g1,10095:12321541,33170964 +g1,10095:11993861,33170964 +(1,10095:11993861,33170964:0,0,0 +) +g1,10095:12321541,33170964 +) +(1,10110:12321541,33170964:14570720,11027837,0 +g1,10110:15131667,33170964 +(1,10110:15131667,23088573:0,0,0 +(1,10110:15131667,23088573:0,0,0 +g1,10097:15131667,23088573 +(1,10098:15131667,23088573:0,0,0 +(1,10098:15131667,23088573:0,0,0 +g1,10098:15131667,23088573 +g1,10098:15131667,23088573 +g1,10098:15131667,23088573 +g1,10098:15131667,23088573 +g1,10098:15131667,23088573 +(1,10098:15131667,23088573:0,0,0 +(1,10098:15131667,23088573:589824,56623,0 +(1,10098:15131667,23088573:589824,56623,0 +) +g1,10098:15721491,23088573 +) +) +g1,10098:15131667,23088573 +g1,10098:15131667,23088573 +) +) +g1,10098:15131667,23088573 +(1,10099:15131667,23088573:0,0,0 +(1,10099:15131667,23088573:0,0,0 +g1,10099:15131667,23088573 +g1,10099:15131667,23088573 +g1,10099:15131667,23088573 +g1,10099:15131667,23088573 +g1,10099:15131667,23088573 +(1,10099:15131667,23088573:0,0,0 +(1,10099:15131667,23088573:358613,319685,0 +(1,10099:15131667,23088573:358613,319685,0 +$1,10099:15131667,23088573 +$1,10099:15490280,23088573 +) +g1,10099:15490280,23088573 +) +) +g1,10099:15131667,23088573 +g1,10099:15131667,23088573 +) +) +g1,10099:15131667,23088573 +(1,10100:15131667,23088573:0,0,0 +(1,10100:15131667,23088573:0,0,0 +g1,10100:15131667,23088573 +g1,10100:15131667,23088573 +g1,10100:15131667,23088573 +g1,10100:15131667,23088573 +g1,10100:15131667,23088573 +(1,10100:15131667,23088573:0,0,0 +(1,10100:15131667,23088573:1905798,373362,104590 +(1,10100:15131667,23088573:1905798,373362,104590 +(1,10100:15131667,23088573:0,373362,104590 +r1,10139:17037465,23088573:1905798,477952,104590 +k1,10100:15131667,23088573:-1905798 +) +(1,10100:15131667,23088573:1905798,373362,104590 +k1,10100:15131667,23088573:3277 +h1,10100:17034188,23088573:0,370085,101313 +) +) +g1,10100:17037465,23088573 +) +) +g1,10100:15131667,23088573 +g1,10100:15131667,23088573 +) +) +g1,10100:15131667,23088573 +(1,10101:15131667,23088573:0,0,0 +(1,10101:15131667,23088573:0,0,0 +g1,10101:15131667,23088573 +g1,10101:15131667,23088573 +g1,10101:15131667,23088573 +g1,10101:15131667,23088573 +g1,10101:15131667,23088573 +(1,10101:15131667,23088573:0,0,0 +(1,10101:15131667,23088573:4121582,373362,104590 +(1,10101:15131667,23088573:4121582,373362,104590 +(1,10101:15131667,23088573:0,373362,104590 +r1,10139:19253249,23088573:4121582,477952,104590 +k1,10101:15131667,23088573:-4121582 +) +(1,10101:15131667,23088573:4121582,373362,104590 +g1,10101:18616891,23088573 +h1,10101:19249972,23088573:0,370085,101313 +) +) +g1,10101:19253249,23088573 +) +) +g1,10101:15131667,23088573 +g1,10101:15131667,23088573 +) +) +g1,10101:15131667,23088573 +(1,10102:15131667,23088573:0,0,0 +(1,10102:15131667,23088573:0,0,0 +g1,10102:15131667,23088573 +g1,10102:15131667,23088573 +g1,10102:15131667,23088573 +g1,10102:15131667,23088573 +g1,10102:15131667,23088573 +(1,10102:15131667,23088573:0,0,0 +(1,10102:15131667,23088573:4121582,373362,104590 +(1,10102:15131667,23088573:4121582,373362,104590 +(1,10102:15131667,23088573:0,373362,104590 +r1,10139:19253249,23088573:4121582,477952,104590 +k1,10102:15131667,23088573:-4121582 +) +(1,10102:15131667,23088573:4121582,373362,104590 +g1,10102:18616891,23088573 +h1,10102:19249972,23088573:0,370085,101313 +) +) +g1,10102:19253249,23088573 +) +) +g1,10102:15131667,23088573 +g1,10102:15131667,23088573 +) +) +g1,10102:15131667,23088573 +g1,10103:15131667,23088573 +(1,10103:15131667,23088573:0,0,0 +(1,10103:15131667,23088573:0,0,0 +g1,10103:15131667,23088573 +g1,10103:15131667,23088573 +g1,10103:15131667,23088573 +g1,10103:15131667,23088573 +g1,10103:15131667,23088573 +(1,10103:15131667,23088573:0,0,0 +(1,10103:15131667,23088573:589824,56623,0 +(1,10103:15131667,23088573:589824,56623,0 +) +g1,10103:15721491,23088573 +) +) +g1,10103:15131667,23088573 +g1,10103:15131667,23088573 +) +) +g1,10103:15131667,23088573 +g1,10104:15131667,23088573 +g1,10104:15131667,23088573 +g1,10104:15131667,23088573 +g1,10104:15131667,23088573 +g1,10104:15131667,23088573 +g1,10104:15131667,23088573 +g1,10105:15131667,23088573 +g1,10105:15131667,23088573 +g1,10105:15131667,23088573 +g1,10105:15131667,23088573 +g1,10105:15131667,23088573 +(1,10105:15131667,23088573:0,0,0 +(1,10105:15131667,23088573:0,0,0 +g1,10105:15131667,23088573 +g1,10105:15131667,23088573 +g1,10105:15131667,23088573 +g1,10105:15131667,23088573 +g1,10105:15131667,23088573 +(1,10105:15131667,23088573:0,0,0 +(1,10105:15131667,23088573:0,0,0 +(1,10105:15131667,23088573:0,0,0 +) +g1,10105:15131667,23088573 +) +) +g1,10105:15131667,23088573 +g1,10105:15131667,23088573 +) +) +g1,10105:15131667,23088573 +g1,10106:15131667,23088573 +g1,10106:15131667,23088573 +g1,10106:15131667,23088573 +g1,10106:15131667,23088573 +(1,10106:15131667,23088573:0,0,0 +(1,10106:15131667,23088573:0,0,0 +g1,10106:15131667,23088573 +g1,10106:15131667,23088573 +g1,10106:15131667,23088573 +g1,10106:15131667,23088573 +g1,10106:15131667,23088573 +(1,10106:15131667,23088573:0,0,0 +(1,10106:15131667,23088573:2418868,426443,7077 +(1,10106:15131667,23088573:2418868,426443,7077 +) +g1,10106:17550535,23088573 +) +) +g1,10106:15131667,23088573 +g1,10106:15131667,23088573 +) +) +g1,10106:15131667,23088573 +g1,10107:15131667,23088573 +g1,10107:15131667,23088573 +g1,10107:15131667,23088573 +g1,10107:15131667,23088573 +g1,10107:15131667,23088573 +(1,10107:15131667,23088573:0,0,0 +(1,10107:15131667,23088573:0,0,0 +g1,10107:15131667,23088573 +g1,10107:15131667,23088573 +g1,10107:15131667,23088573 +g1,10107:15131667,23088573 +g1,10107:15131667,23088573 +(1,10107:15131667,23088573:0,0,0 +(1,10107:15131667,23088573:2222339,408008,104590 +(1,10107:15131667,23088573:2222339,408008,104590 +(1,10107:15131667,23088573:0,408008,104590 +r1,10139:17354006,23088573:2222339,512598,104590 +k1,10107:15131667,23088573:-2222339 +) +(1,10107:15131667,23088573:2222339,408008,104590 +k1,10107:15131667,23088573:3277 +h1,10107:17350729,23088573:0,370085,101313 +) +) +g1,10107:17354006,23088573 +) +) +g1,10107:15131667,23088573 +g1,10107:15131667,23088573 +) +) +g1,10107:15131667,23088573 +g1,10108:15131667,23088573 +g1,10108:15131667,23088573 +g1,10108:15131667,23088573 +g1,10108:15131667,23088573 +g1,10108:15131667,23088573 +g1,10108:15131667,23088573 +g1,10109:15131667,23088573 +g1,10109:15131667,23088573 +g1,10109:15131667,23088573 +g1,10109:15131667,23088573 +g1,10109:15131667,23088573 +g1,10109:15131667,23088573 +g1,10110:15131667,23088573 +g1,10110:15131667,23088573 +) +g1,10110:15131667,23088573 +) +) +g1,10112:26892261,33170964 +k1,10112:32583029,33170964:5690768 +) +v1,10115:6630773,34511179:0,393216,0 +(1,10130:6630773,41097083:25952256,6979120,196608 +g1,10130:6630773,41097083 +g1,10130:6630773,41097083 +g1,10130:6434165,41097083 +(1,10130:6434165,41097083:0,6979120,196608 +r1,10139:32779637,41097083:26345472,7175728,196608 +k1,10130:6434165,41097083:-26345472 +) +(1,10130:6434165,41097083:26345472,6979120,196608 +[1,10130:6630773,41097083:25952256,6782512,0 +(1,10117:6630773,34722494:25952256,407923,4954 +(1,10116:6630773,34722494:0,0,0 +g1,10116:6630773,34722494 +g1,10116:6630773,34722494 +g1,10116:6303093,34722494 +(1,10116:6303093,34722494:0,0,0 +) +g1,10116:6630773,34722494 +) +g1,10117:7294681,34722494 +g1,10117:8290543,34722494 +h1,10117:8622497,34722494:0,0,0 +k1,10117:32583029,34722494:23960532 +g1,10117:32583029,34722494 +) +(1,10118:6630773,35407349:25952256,424439,106246 +h1,10118:6630773,35407349:0,0,0 +k1,10118:6630773,35407349:0 +h1,10118:8954451,35407349:0,0,0 +k1,10118:32583029,35407349:23628578 +g1,10118:32583029,35407349 +) +(1,10119:6630773,36092204:25952256,424439,106246 +h1,10119:6630773,36092204:0,0,0 +g1,10119:6962727,36092204 +g1,10119:7294681,36092204 +k1,10119:7294681,36092204:0 +h1,10119:9950313,36092204:0,0,0 +k1,10119:32583029,36092204:22632716 +g1,10119:32583029,36092204 +) +(1,10120:6630773,36777059:25952256,431045,79822 +h1,10120:6630773,36777059:0,0,0 +g1,10120:6962727,36777059 +g1,10120:7294681,36777059 +g1,10120:8290543,36777059 +g1,10120:9286405,36777059 +g1,10120:9950313,36777059 +g1,10120:11278129,36777059 +k1,10120:11278129,36777059:0 +h1,10120:13601807,36777059:0,0,0 +k1,10120:32583029,36777059:18981222 +g1,10120:32583029,36777059 +) +(1,10121:6630773,37461914:25952256,407923,4954 +h1,10121:6630773,37461914:0,0,0 +g1,10121:6962727,37461914 +g1,10121:7294681,37461914 +g1,10121:7958589,37461914 +g1,10121:8954451,37461914 +h1,10121:9950313,37461914:0,0,0 +k1,10121:32583029,37461914:22632716 +g1,10121:32583029,37461914 +) +(1,10122:6630773,38146769:25952256,424439,79822 +h1,10122:6630773,38146769:0,0,0 +h1,10122:6962727,38146769:0,0,0 +k1,10122:32583029,38146769:25620302 +g1,10122:32583029,38146769 +) +(1,10129:6630773,38962696:25952256,424439,79822 +(1,10124:6630773,38962696:0,0,0 +g1,10124:6630773,38962696 +g1,10124:6630773,38962696 +g1,10124:6303093,38962696 +(1,10124:6303093,38962696:0,0,0 +) +g1,10124:6630773,38962696 +) +g1,10129:7626635,38962696 +g1,10129:8954451,38962696 +h1,10129:9286405,38962696:0,0,0 +k1,10129:32583029,38962696:23296624 +g1,10129:32583029,38962696 +) +(1,10129:6630773,39647551:25952256,424439,79822 +h1,10129:6630773,39647551:0,0,0 +g1,10129:7626635,39647551 +g1,10129:8954451,39647551 +h1,10129:9286405,39647551:0,0,0 +k1,10129:32583029,39647551:23296624 +g1,10129:32583029,39647551 +) +(1,10129:6630773,40332406:25952256,424439,79822 +h1,10129:6630773,40332406:0,0,0 +g1,10129:7626635,40332406 +g1,10129:8954451,40332406 +h1,10129:9618359,40332406:0,0,0 +k1,10129:32583029,40332406:22964670 +g1,10129:32583029,40332406 +) +(1,10129:6630773,41017261:25952256,424439,79822 +h1,10129:6630773,41017261:0,0,0 +g1,10129:7626635,41017261 +g1,10129:8954451,41017261 +h1,10129:9950313,41017261:0,0,0 +k1,10129:32583029,41017261:22632716 +g1,10129:32583029,41017261 +) +] +) +g1,10130:32583029,41097083 +g1,10130:6630773,41097083 +g1,10130:6630773,41097083 +g1,10130:32583029,41097083 +g1,10130:32583029,41097083 +) +h1,10130:6630773,41293691:0,0,0 +v1,10134:6630773,42158771:0,393216,0 +(1,10135:6630773,43430676:25952256,1665121,0 +g1,10135:6630773,43430676 +g1,10135:6237557,43430676 +r1,10139:6368629,43430676:131072,1665121,0 +g1,10135:6567858,43430676 +g1,10135:6764466,43430676 +[1,10135:6764466,43430676:25818563,1665121,0 +(1,10135:6764466,42431248:25818563,665693,196608 +(1,10134:6764466,42431248:0,665693,196608 +r1,10139:8010564,42431248:1246098,862301,196608 +k1,10134:6764466,42431248:-1246098 +) +(1,10134:6764466,42431248:1246098,665693,196608 +) +k1,10134:8170452,42431248:159888 +k1,10134:9896670,42431248:327680 +k1,10134:12018051,42431248:159888 +k1,10134:14488082,42431248:159887 +k1,10134:15944928,42431248:159888 +k1,10134:17123901,42431248:159888 +k1,10134:19945206,42431248:159888 +k1,10134:21960417,42431248:159887 +k1,10134:24461251,42431248:159888 +k1,10134:25640224,42431248:159888 +k1,10134:27810757,42431248:159888 +k1,10134:28428741,42431248:159887 +k1,10134:30255210,42431248:159888 +k1,10134:31563944,42431248:159888 +k1,10134:32583029,42431248:0 +) +(1,10135:6764466,43296328:25818563,513147,134348 +g1,10134:9948205,43296328 +g1,10134:10806726,43296328 +g1,10134:13193547,43296328 +(1,10134:13193547,43296328:0,452978,115847 +r1,10139:15662084,43296328:2468537,568825,115847 +k1,10134:13193547,43296328:-2468537 +) +(1,10134:13193547,43296328:2468537,452978,115847 +k1,10134:13193547,43296328:3277 +h1,10134:15658807,43296328:0,411205,112570 +) +g1,10134:15861313,43296328 +g1,10134:19750874,43296328 +g1,10134:20636265,43296328 +g1,10134:23925517,43296328 +g1,10134:24934116,43296328 +g1,10134:26631498,43296328 +h1,10134:27826875,43296328:0,0,0 +k1,10135:32583029,43296328:4582484 +g1,10135:32583029,43296328 +) +] +g1,10135:32583029,43430676 +) +h1,10135:6630773,43430676:0,0,0 +v1,10138:6630773,44295756:0,393216,0 +(1,10139:6630773,45603482:25952256,1700942,0 +g1,10139:6630773,45603482 +g1,10139:6237557,45603482 +r1,10139:6368629,45603482:131072,1700942,0 +g1,10139:6567858,45603482 +g1,10139:6764466,45603482 +[1,10139:6764466,45603482:25818563,1700942,0 +(1,10139:6764466,44604054:25818563,701514,196608 +(1,10138:6764466,44604054:0,701514,196608 +r1,10139:8010564,44604054:1246098,898122,196608 +k1,10138:6764466,44604054:-1246098 +) +(1,10138:6764466,44604054:1246098,701514,196608 +) +k1,10138:8193718,44604054:183154 +k1,10138:8521398,44604054:327680 +k1,10138:11667434,44604054:183153 +(1,10138:11667434,44604054:0,414482,115847 +r1,10139:13784259,44604054:2116825,530329,115847 +k1,10138:11667434,44604054:-2116825 +) +(1,10138:11667434,44604054:2116825,414482,115847 +k1,10138:11667434,44604054:3277 +h1,10138:13780982,44604054:0,411205,112570 +) +k1,10138:13967413,44604054:183154 +k1,10138:15565489,44604054:183154 +k1,10138:19102776,44604054:183154 +k1,10138:20277489,44604054:183153 +k1,10138:22331041,44604054:183154 +k1,10138:23165623,44604054:183154 +k1,10138:24761077,44604054:183153 +k1,10138:25410192,44604054:183154 +k1,10138:26973534,44604054:183154 +k1,10138:28631903,44604054:183154 +k1,10138:29170916,44604054:183153 +k1,10138:31227089,44604054:183154 +k1,10139:32583029,44604054:0 +) +(1,10139:6764466,45469134:25818563,513147,134348 +k1,10138:8942587,45469134:288718 +k1,10138:12064426,45469134:288718 +k1,10138:12969183,45469134:288719 +k1,10138:17009837,45469134:288718 +k1,10138:17957847,45469134:288718 +k1,10138:21137358,45469134:288718 +k1,10138:21884174,45469134:288719 +k1,10138:22704389,45469134:288718 +k1,10138:25442843,45469134:288718 +k1,10138:26493089,45469134:288718 +k1,10138:27800892,45469134:288718 +k1,10138:28504364,45469134:288629 +k1,10138:31635378,45469134:288718 +k1,10138:32583029,45469134:0 +) +] +g1,10139:32583029,45603482 +) +] +(1,10139:32583029,45706769:0,0,0 +g1,10139:32583029,45706769 +) +) +] +(1,10139:6630773,47279633:25952256,0,0 +h1,10139:6630773,47279633:25952256,0,0 +) +] +(1,10139:4262630,4025873:0,0,0 +[1,10139:-473656,4025873:0,0,0 +(1,10139:-473656,-710413:0,0,0 +(1,10139:-473656,-710413:0,0,0 +g1,10139:-473656,-710413 +) +g1,10139:-473656,-710413 +) +] +) +] +!26768 +}161 +Input:1503:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1504:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1505:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1506:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1507:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!482 +{162 +[1,10251:4262630,47279633:28320399,43253760,0 +(1,10251:4262630,4025873:0,0,0 +[1,10251:-473656,4025873:0,0,0 +(1,10251:-473656,-710413:0,0,0 +(1,10251:-473656,-644877:0,0,0 +k1,10251:-473656,-644877:-65536 ) -[1,10918:6630773,45706769:25952256,40108032,0 -(1,10882:6630773,16999476:25952256,11400739,0 -k1,10882:11890229,16999476:5259456 -(1,10867:11890229,16999476:0,0,0 -g1,10867:11890229,16999476 -g1,10867:11890229,16999476 -g1,10867:11562549,16999476 -(1,10867:11562549,16999476:0,0,0 +(1,10251:-473656,4736287:0,0,0 +k1,10251:-473656,4736287:5209943 ) -g1,10867:11890229,16999476 +g1,10251:-473656,-710413 ) -(1,10880:11890229,16999476:15433344,11400739,0 -g1,10880:15749459,16999476 -(1,10880:15749459,6544183:0,0,0 -(1,10880:15749459,6544183:0,0,0 -g1,10869:15749459,6544183 -(1,10870:15749459,6544183:0,0,0 -(1,10870:15749459,6544183:0,0,0 -g1,10870:15749459,6544183 -g1,10870:15749459,6544183 -g1,10870:15749459,6544183 -g1,10870:15749459,6544183 -g1,10870:15749459,6544183 -(1,10870:15749459,6544183:0,0,0 -(1,10870:15749459,6544183:7299073,385745,120913 -(1,10870:15749459,6544183:7299073,385745,120913 -g1,10870:18994671,6544183 -$1,10870:18994671,6544183 -$1,10870:19602190,6544183 -g1,10870:19781497,6544183 +] ) -g1,10870:23048532,6544183 +[1,10251:6630773,47279633:25952256,43253760,0 +[1,10251:6630773,4812305:25952256,786432,0 +(1,10251:6630773,4812305:25952256,481690,7863 +(1,10251:6630773,4812305:25952256,481690,7863 +g1,10251:3078558,4812305 +[1,10251:3078558,4812305:0,0,0 +(1,10251:3078558,2439708:0,1703936,0 +k1,10251:1358238,2439708:-1720320 +(1,8606:1358238,2439708:1720320,1703936,0 +(1,8606:1358238,2439708:1179648,16384,0 +r1,10251:2537886,2439708:1179648,16384,0 ) +g1,8606:3062174,2439708 +(1,8606:3062174,2439708:16384,1703936,0 +[1,8606:3062174,2439708:25952256,1703936,0 +(1,8606:3062174,1915420:25952256,1179648,0 +(1,8606:3062174,1915420:16384,1179648,0 +r1,10251:3078558,1915420:16384,1179648,0 ) -g1,10870:15749459,6544183 -g1,10870:15749459,6544183 +k1,8606:29014430,1915420:25935872 +g1,8606:29014430,1915420 ) +] ) -g1,10870:15749459,6544183 -(1,10871:15749459,6544183:0,0,0 -(1,10871:15749459,6544183:0,0,0 -g1,10871:15749459,6544183 -g1,10871:15749459,6544183 -g1,10871:15749459,6544183 -g1,10871:15749459,6544183 -g1,10871:15749459,6544183 -(1,10871:15749459,6544183:0,0,0 -(1,10871:15749459,6544183:0,0,0 -(1,10871:15749459,6544183:0,0,0 ) -g1,10871:15749459,6544183 ) +] +[1,10251:3078558,4812305:0,0,0 +(1,10251:3078558,2439708:0,1703936,0 +g1,10251:29030814,2439708 +g1,10251:36135244,2439708 +(1,8606:36135244,2439708:1720320,1703936,0 +(1,8606:36135244,2439708:16384,1703936,0 +[1,8606:36135244,2439708:25952256,1703936,0 +(1,8606:36135244,1915420:25952256,1179648,0 +(1,8606:36135244,1915420:16384,1179648,0 +r1,10251:36151628,1915420:16384,1179648,0 ) -g1,10871:15749459,6544183 -g1,10871:15749459,6544183 +k1,8606:62087500,1915420:25935872 +g1,8606:62087500,1915420 ) +] ) -g1,10871:15749459,6544183 -g1,10872:15749459,6544183 -(1,10872:15749459,6544183:0,0,0 -(1,10872:15749459,6544183:0,0,0 -g1,10872:15749459,6544183 -g1,10872:15749459,6544183 -g1,10872:15749459,6544183 -g1,10872:15749459,6544183 -g1,10872:15749459,6544183 -(1,10872:15749459,6544183:0,0,0 -(1,10872:15749459,6544183:4121582,373362,104590 -(1,10872:15749459,6544183:4121582,373362,104590 -(1,10872:15749459,6544183:0,373362,104590 -r1,10918:19871041,6544183:4121582,477952,104590 -k1,10872:15749459,6544183:-4121582 -) -(1,10872:15749459,6544183:4121582,373362,104590 -g1,10872:19234683,6544183 -h1,10872:19867764,6544183:0,370085,101313 -) -) -g1,10872:19871041,6544183 -) -) -g1,10872:15749459,6544183 -g1,10872:15749459,6544183 -) -) -g1,10872:15749459,6544183 -(1,10873:15749459,6544183:0,0,0 -(1,10873:15749459,6544183:0,0,0 -g1,10873:15749459,6544183 -g1,10873:15749459,6544183 -g1,10873:15749459,6544183 -g1,10873:15749459,6544183 -g1,10873:15749459,6544183 -(1,10873:15749459,6544183:0,0,0 -(1,10873:15749459,6544183:2804024,461832,113835 -(1,10873:15749459,6544183:2804024,461832,113835 -g1,10873:17022890,6544183 -) -g1,10873:18553483,6544183 -) -) -g1,10873:15749459,6544183 -g1,10873:15749459,6544183 -) -) -g1,10873:15749459,6544183 -g1,10874:15749459,6544183 -(1,10874:15749459,6544183:0,0,0 -(1,10874:15749459,6544183:0,0,0 -g1,10874:15749459,6544183 -g1,10874:15749459,6544183 -g1,10874:15749459,6544183 -g1,10874:15749459,6544183 -g1,10874:15749459,6544183 -(1,10874:15749459,6544183:0,0,0 -(1,10874:15749459,6544183:4121582,373362,104590 -(1,10874:15749459,6544183:4121582,373362,104590 -(1,10874:15749459,6544183:0,373362,104590 -r1,10918:19871041,6544183:4121582,477952,104590 -k1,10874:15749459,6544183:-4121582 -) -(1,10874:15749459,6544183:4121582,373362,104590 -g1,10874:19234683,6544183 -h1,10874:19867764,6544183:0,370085,101313 -) -) -g1,10874:19871041,6544183 -) -) -g1,10874:15749459,6544183 -g1,10874:15749459,6544183 -) -) -g1,10874:15749459,6544183 -g1,10875:15749459,6544183 -(1,10875:15749459,6544183:0,0,0 -(1,10875:15749459,6544183:0,0,0 -g1,10875:15749459,6544183 -g1,10875:15749459,6544183 -g1,10875:15749459,6544183 -g1,10875:15749459,6544183 -g1,10875:15749459,6544183 -(1,10875:15749459,6544183:0,0,0 -(1,10875:15749459,6544183:6778260,454754,7077 -(1,10875:15749459,6544183:6778260,454754,7077 -g1,10875:18406027,6544183 -g1,10875:20120646,6544183 -$1,10875:20120646,6544183 -$1,10875:20728165,6544183 -g1,10875:20907472,6544183 -) -g1,10875:22527719,6544183 -) -) -g1,10875:15749459,6544183 -g1,10875:15749459,6544183 -) -) -g1,10875:15749459,6544183 -g1,10876:15749459,6544183 -g1,10876:15749459,6544183 -g1,10876:15749459,6544183 -g1,10876:15749459,6544183 -g1,10876:15749459,6544183 -g1,10876:15749459,6544183 -g1,10877:15749459,6544183 -g1,10877:15749459,6544183 -g1,10877:15749459,6544183 -g1,10877:15749459,6544183 -g1,10877:15749459,6544183 -g1,10877:15749459,6544183 -g1,10878:15749459,6544183 -g1,10878:15749459,6544183 -g1,10878:15749459,6544183 -g1,10878:15749459,6544183 -g1,10878:15749459,6544183 -g1,10878:15749459,6544183 -g1,10879:15749459,6544183 -g1,10879:15749459,6544183 -g1,10879:15749459,6544183 -g1,10879:15749459,6544183 -g1,10879:15749459,6544183 -g1,10879:15749459,6544183 -g1,10880:15749459,6544183 -g1,10880:15749459,6544183 -) -g1,10880:15749459,6544183 -) -) -g1,10882:27323573,16999476 -k1,10882:32583029,16999476:5259456 -) -(1,10885:6630773,18496324:25952256,513147,134348 -h1,10884:6630773,18496324:983040,0,0 -k1,10884:9155370,18496324:181030 -k1,10884:12362198,18496324:181031 -k1,10884:13734673,18496324:181030 -k1,10884:16992618,18496324:181030 -k1,10884:18165208,18496324:181030 -k1,10884:20727817,18496324:181031 -k1,10884:22644240,18496324:181030 -k1,10884:25520766,18496324:181030 -(1,10884:25520766,18496324:0,459977,115847 -r1,10918:29044438,18496324:3523672,575824,115847 -k1,10884:25520766,18496324:-3523672 -) -(1,10884:25520766,18496324:3523672,459977,115847 -k1,10884:25520766,18496324:3277 -h1,10884:29041161,18496324:0,411205,112570 -) -k1,10884:29399139,18496324:181031 -k1,10884:30771614,18496324:181030 -k1,10884:32583029,18496324:0 -) -(1,10885:6630773,19337812:25952256,505283,134348 -k1,10884:7963252,19337812:186254 -k1,10884:9281313,19337812:186254 -k1,10884:11169537,19337812:186254 -k1,10884:13315318,19337812:186255 -k1,10884:14117610,19337812:186254 -k1,10884:14718694,19337812:186241 -k1,10884:15666476,19337812:186254 -k1,10884:19498498,19337812:186254 -k1,10884:20336180,19337812:186254 -k1,10884:20878294,19337812:186254 -k1,10884:23575888,19337812:186254 -k1,10884:25673828,19337812:186255 -k1,10884:26487917,19337812:186254 -k1,10884:27693256,19337812:186254 -k1,10884:30540927,19337812:186254 -k1,10885:32583029,19337812:0 -) -(1,10885:6630773,20179300:25952256,513147,134348 -(1,10884:6630773,20179300:0,414482,115847 -r1,10918:6989039,20179300:358266,530329,115847 -k1,10884:6630773,20179300:-358266 -) -(1,10884:6630773,20179300:358266,414482,115847 -k1,10884:6630773,20179300:3277 -h1,10884:6985762,20179300:0,411205,112570 -) -k1,10884:7163770,20179300:174731 -k1,10884:8529946,20179300:174731 -(1,10884:8529946,20179300:0,414482,115847 -r1,10918:8888212,20179300:358266,530329,115847 -k1,10884:8529946,20179300:-358266 -) -(1,10884:8529946,20179300:358266,414482,115847 -k1,10884:8529946,20179300:3277 -h1,10884:8884935,20179300:0,411205,112570 -) -k1,10884:9062943,20179300:174731 -k1,10884:10229234,20179300:174731 -k1,10884:11870661,20179300:174731 -k1,10884:14174001,20179300:174731 -k1,10884:18133436,20179300:174731 -k1,10884:18991052,20179300:174731 -k1,10884:21234099,20179300:174731 -k1,10884:22922056,20179300:174731 -k1,10884:25106776,20179300:174731 -k1,10884:26300592,20179300:174731 -k1,10884:29170819,20179300:174731 -k1,10884:30293201,20179300:174731 -k1,10884:32583029,20179300:0 -) -(1,10885:6630773,21020788:25952256,513147,134348 -k1,10884:8144561,21020788:229282 -k1,10884:9506306,21020788:229283 -k1,10884:10483354,21020788:229282 -k1,10884:13473668,21020788:229282 -k1,10884:14389112,21020788:229282 -k1,10884:18047894,21020788:229283 -k1,10884:19975214,21020788:229282 -k1,10884:21223581,21020788:229282 -k1,10884:24148360,21020788:229283 -k1,10884:24909139,21020788:229282 -k1,10884:27179867,21020788:229282 -k1,10884:28680547,21020788:229282 -k1,10884:30014112,21020788:229283 -k1,10884:31923737,21020788:229282 -k1,10884:32583029,21020788:0 -) -(1,10885:6630773,21862276:25952256,513147,134348 -k1,10884:10159112,21862276:247607 -k1,10884:12475035,21862276:247607 -k1,10884:13408803,21862276:247606 -k1,10884:17720297,21862276:247607 -k1,10884:18915555,21862276:247607 -k1,10884:21085333,21862276:247607 -k1,10884:23343585,21862276:247607 -k1,10884:24242620,21862276:247607 -k1,10884:25237992,21862276:247606 -k1,10884:28246631,21862276:247607 -k1,10884:29180400,21862276:247607 -k1,10884:32583029,21862276:0 -) -(1,10885:6630773,22703764:25952256,513147,134348 -g1,10884:8528040,22703764 -g1,10884:10817212,22703764 -g1,10884:12035526,22703764 -k1,10885:32583028,22703764:17678336 -g1,10885:32583028,22703764 -) -v1,10887:6630773,23894230:0,393216,0 -(1,10895:6630773,25516517:25952256,2015503,196608 -g1,10895:6630773,25516517 -g1,10895:6630773,25516517 -g1,10895:6434165,25516517 -(1,10895:6434165,25516517:0,2015503,196608 -r1,10918:32779637,25516517:26345472,2212111,196608 -k1,10895:6434165,25516517:-26345472 -) -(1,10895:6434165,25516517:26345472,2015503,196608 -[1,10895:6630773,25516517:25952256,1818895,0 -(1,10889:6630773,24108140:25952256,410518,101187 -(1,10888:6630773,24108140:0,0,0 -g1,10888:6630773,24108140 -g1,10888:6630773,24108140 -g1,10888:6303093,24108140 -(1,10888:6303093,24108140:0,0,0 -) -g1,10888:6630773,24108140 -) -g1,10889:9159939,24108140 -g1,10889:10108377,24108140 -g1,10889:13902126,24108140 -g1,10889:15482855,24108140 -g1,10889:16115147,24108140 -h1,10889:16747438,24108140:0,0,0 -k1,10889:32583029,24108140:15835591 -g1,10889:32583029,24108140 -) -(1,10890:6630773,24774318:25952256,404226,101187 -h1,10890:6630773,24774318:0,0,0 -g1,10890:10108377,24774318 -h1,10890:10740669,24774318:0,0,0 -k1,10890:32583029,24774318:21842360 -g1,10890:32583029,24774318 -) -(1,10894:6630773,25440496:25952256,404226,76021 -(1,10892:6630773,25440496:0,0,0 -g1,10892:6630773,25440496 -g1,10892:6630773,25440496 -g1,10892:6303093,25440496 -(1,10892:6303093,25440496:0,0,0 -) -g1,10892:6630773,25440496 -) -g1,10894:7579210,25440496 -g1,10894:8843793,25440496 -h1,10894:9476084,25440496:0,0,0 -k1,10894:32583028,25440496:23106944 -g1,10894:32583028,25440496 -) -] -) -g1,10895:32583029,25516517 -g1,10895:6630773,25516517 -g1,10895:6630773,25516517 -g1,10895:32583029,25516517 -g1,10895:32583029,25516517 -) -h1,10895:6630773,25713125:0,0,0 -v1,10899:6630773,27603189:0,393216,0 -(1,10918:6630773,45646446:25952256,18436473,0 -g1,10918:6630773,45646446 -g1,10918:6303093,45646446 -r1,10918:6401397,45646446:98304,18436473,0 -g1,10918:6600626,45646446 -g1,10918:6797234,45646446 -[1,10918:6797234,45646446:25785795,18436473,0 -(1,10900:6797234,28023773:25785795,813800,267386 -(1,10899:6797234,28023773:0,813800,267386 -r1,10918:8134168,28023773:1336934,1081186,267386 -k1,10899:6797234,28023773:-1336934 -) -(1,10899:6797234,28023773:1336934,813800,267386 -) -k1,10899:8402059,28023773:267891 -k1,10899:8729739,28023773:327680 -k1,10899:9625465,28023773:267891 -k1,10899:11327284,28023773:267891 -k1,10899:12183688,28023773:267891 -k1,10899:15854208,28023773:267891 -k1,10899:16773527,28023773:267891 -k1,10899:20067214,28023773:267890 -k1,10899:21326665,28023773:267891 -k1,10899:23799843,28023773:267891 -k1,10899:24829262,28023773:267891 -k1,10899:26780773,28023773:267891 -k1,10899:28429508,28023773:267891 -k1,10899:29228896,28023773:267891 -k1,10899:32583029,28023773:0 -) -(1,10900:6797234,28865261:25785795,513147,126483 -k1,10899:8360650,28865261:209442 -k1,10899:11779390,28865261:209442 -k1,10899:12640260,28865261:209442 -k1,10899:16282478,28865261:209442 -k1,10899:19465944,28865261:209442 -k1,10899:21171574,28865261:209443 -k1,10899:21997054,28865261:209442 -k1,10899:22562356,28865261:209442 -k1,10899:25971266,28865261:209442 -k1,10899:27757504,28865261:209442 -k1,10899:29459856,28865261:209442 -k1,10899:30320726,28865261:209442 -k1,10899:32583029,28865261:0 -) -(1,10900:6797234,29706749:25785795,513147,134348 -k1,10899:7812565,29706749:244628 -k1,10899:11129521,29706749:244628 -k1,10899:13579436,29706749:244628 -k1,10899:16382590,29706749:244628 -k1,10899:16983078,29706749:244628 -k1,10899:19356314,29706749:244627 -k1,10899:23055345,29706749:244628 -k1,10899:24088371,29706749:244628 -k1,10899:26013342,29706749:244628 -k1,10899:28623820,29706749:244628 -k1,10899:29887533,29706749:244628 -k1,10899:32583029,29706749:0 -) -(1,10900:6797234,30548237:25785795,505283,134348 -k1,10899:8117784,30548237:188088 -k1,10899:10533441,30548237:188088 -k1,10899:13298406,30548237:188089 -k1,10899:15615759,30548237:188088 -k1,10899:19468620,30548237:188088 -k1,10899:20491637,30548237:188088 -k1,10899:22381696,30548237:188089 -k1,10899:25646044,30548237:188088 -k1,10899:29180400,30548237:188088 -k1,10899:32583029,30548237:0 -) -(1,10900:6797234,31389725:25785795,513147,134348 -k1,10899:8078409,31389725:176893 -k1,10899:9541117,31389725:176892 -k1,10899:10465776,31389725:176893 -k1,10899:12847955,31389725:176892 -k1,10899:13786376,31389725:176893 -k1,10899:17116205,31389725:176892 -k1,10899:20021362,31389725:176893 -k1,10899:21482761,31389725:176893 -k1,10899:25635722,31389725:176892 -k1,10899:26464043,31389725:176893 -k1,10899:26996795,31389725:176892 -k1,10899:29302297,31389725:176893 -k1,10899:32583029,31389725:0 -) -(1,10900:6797234,32231213:25785795,513147,134348 -k1,10899:9017430,32231213:210207 -k1,10899:10246721,32231213:210206 -k1,10899:12033724,32231213:210207 -k1,10899:12903222,32231213:210206 -k1,10899:14132514,32231213:210207 -k1,10899:17038217,32231213:210207 -k1,10899:18239983,32231213:210206 -k1,10899:23545614,32231213:210207 -k1,10899:24407248,32231213:210206 -k1,10899:25636540,32231213:210207 -k1,10899:28919074,32231213:210206 -k1,10899:30320726,32231213:210207 -k1,10899:32583029,32231213:0 -) -(1,10900:6797234,33072701:25785795,505283,134348 -k1,10899:7673079,33072701:244078 -k1,10899:8387050,33072701:244078 -k1,10899:9162625,33072701:244078 -k1,10899:12036663,33072701:244078 -k1,10899:12932169,33072701:244078 -k1,10899:15415612,33072701:244078 -k1,10899:17153256,33072701:244078 -k1,10899:20157054,33072701:244077 -k1,10899:21017170,33072701:244078 -k1,10899:21676046,33072701:244033 -k1,10899:23655517,33072701:244078 -k1,10899:25591735,33072701:244078 -k1,10899:28678109,33072701:244078 -k1,10899:31391584,33072701:244078 -k1,10899:32583029,33072701:0 -) -(1,10900:6797234,33914189:25785795,513147,134348 -k1,10899:11487581,33914189:291570 -k1,10899:13471290,33914189:291569 -k1,10899:16673314,33914189:291570 -k1,10899:18458449,33914189:291569 -k1,10899:19436181,33914189:291570 -k1,10899:23237858,33914189:291570 -k1,10899:24344695,33914189:291569 -k1,10899:26597102,33914189:291570 -k1,10899:29914468,33914189:291569 -k1,10899:31490544,33914189:291570 -k1,10899:32583029,33914189:0 -) -(1,10900:6797234,34755677:25785795,513147,134348 -g1,10899:9423917,34755677 -g1,10899:10282438,34755677 -g1,10899:13884296,34755677 -g1,10899:14845053,34755677 -k1,10900:32583029,34755677:14377945 -g1,10900:32583029,34755677 -) -v1,10902:6797234,35946143:0,393216,0 -(1,10912:6797234,38900786:25785795,3347859,196608 -g1,10912:6797234,38900786 -g1,10912:6797234,38900786 -g1,10912:6600626,38900786 -(1,10912:6600626,38900786:0,3347859,196608 -r1,10918:32779637,38900786:26179011,3544467,196608 -k1,10912:6600625,38900786:-26179012 -) -(1,10912:6600626,38900786:26179011,3347859,196608 -[1,10912:6797234,38900786:25785795,3151251,0 -(1,10904:6797234,36160053:25785795,410518,107478 -(1,10903:6797234,36160053:0,0,0 -g1,10903:6797234,36160053 -g1,10903:6797234,36160053 -g1,10903:6469554,36160053 -(1,10903:6469554,36160053:0,0,0 -) -g1,10903:6797234,36160053 -) -g1,10904:9958691,36160053 -g1,10904:10907129,36160053 -g1,10904:15333169,36160053 -g1,10904:16281607,36160053 -h1,10904:17230044,36160053:0,0,0 -k1,10904:32583029,36160053:15352985 -g1,10904:32583029,36160053 -) -(1,10905:6797234,36826231:25785795,388497,4718 -h1,10905:6797234,36826231:0,0,0 -g1,10905:7429526,36826231 -g1,10905:8377964,36826231 -h1,10905:8694110,36826231:0,0,0 -k1,10905:32583030,36826231:23888920 -g1,10905:32583030,36826231 -) -(1,10906:6797234,37492409:25785795,404226,107478 -h1,10906:6797234,37492409:0,0,0 -k1,10906:6797234,37492409:0 -h1,10906:10590982,37492409:0,0,0 -k1,10906:32583030,37492409:21992048 -g1,10906:32583030,37492409 -) -(1,10907:6797234,38158587:25785795,284164,4718 -h1,10907:6797234,38158587:0,0,0 -h1,10907:7113380,38158587:0,0,0 -k1,10907:32583028,38158587:25469648 -g1,10907:32583028,38158587 -) -(1,10911:6797234,38824765:25785795,404226,76021 -(1,10909:6797234,38824765:0,0,0 -g1,10909:6797234,38824765 -g1,10909:6797234,38824765 -g1,10909:6469554,38824765 -(1,10909:6469554,38824765:0,0,0 -) -g1,10909:6797234,38824765 -) -g1,10911:7745671,38824765 -g1,10911:9010254,38824765 -h1,10911:9326400,38824765:0,0,0 -k1,10911:32583028,38824765:23256628 -g1,10911:32583028,38824765 -) -] -) -g1,10912:32583029,38900786 -g1,10912:6797234,38900786 -g1,10912:6797234,38900786 -g1,10912:32583029,38900786 -g1,10912:32583029,38900786 -) -h1,10912:6797234,39097394:0,0,0 -(1,10916:6797234,40463170:25785795,513147,134348 -h1,10915:6797234,40463170:983040,0,0 -k1,10915:8625688,40463170:217579 -k1,10915:11350020,40463170:217580 -k1,10915:13740773,40463170:217579 -k1,10915:15242859,40463170:217580 -k1,10915:16990704,40463170:217579 -k1,10915:17859711,40463170:217579 -k1,10915:18825057,40463170:217580 -k1,10915:20786549,40463170:217579 -k1,10915:23788097,40463170:217579 -k1,10915:26371527,40463170:217580 -k1,10915:27608191,40463170:217579 -k1,10915:30521267,40463170:217580 -k1,10915:31730406,40463170:217579 -k1,10916:32583029,40463170:0 -) -(1,10916:6797234,41304658:25785795,513147,126483 -g1,10915:9136868,41304658 -g1,10915:10097625,41304658 -g1,10915:11315939,41304658 -g1,10915:14210664,41304658 -g1,10915:15061321,41304658 -g1,10915:16279635,41304658 -k1,10916:32583029,41304658:14394330 -g1,10916:32583029,41304658 -) -(1,10918:6797234,42146146:25785795,513147,134348 -h1,10917:6797234,42146146:983040,0,0 -k1,10917:8513327,42146146:245465 -k1,10917:11454334,42146146:245511 -k1,10917:12804128,42146146:245512 -k1,10917:14425240,42146146:245511 -k1,10917:16681397,42146146:245512 -k1,10917:17282768,42146146:245511 -k1,10917:19401299,42146146:245512 -k1,10917:21780007,42146146:245511 -k1,10917:22750346,42146146:245511 -k1,10917:24693896,42146146:245512 -k1,10917:27610654,42146146:245511 -k1,10917:30029340,42146146:245512 -k1,10917:31266411,42146146:245511 -k1,10918:32583029,42146146:0 -) -(1,10918:6797234,42987634:25785795,505283,134348 -k1,10917:8933533,42987634:199055 -k1,10917:10512775,42987634:199054 -k1,10917:12242096,42987634:199055 -k1,10917:13092579,42987634:199055 -k1,10917:14039399,42987634:199054 -k1,10917:17082717,42987634:199055 -k1,10917:18549238,42987634:199055 -k1,10917:19104152,42987634:199054 -k1,10917:21176226,42987634:199055 -k1,10917:23508478,42987634:199055 -k1,10917:24335367,42987634:199054 -k1,10917:26286199,42987634:199055 -k1,10917:28356307,42987634:199055 -k1,10917:29879188,42987634:199054 -k1,10917:31069803,42987634:199055 -k1,10917:32583029,42987634:0 -) -(1,10918:6797234,43829122:25785795,513147,134348 -k1,10917:7685992,43829122:237330 -k1,10917:9999503,43829122:237330 -k1,10917:11002949,43829122:237330 -k1,10917:12259365,43829122:237331 -k1,10917:14507340,43829122:237330 -k1,10917:15396098,43829122:237330 -k1,10917:16381194,43829122:237330 -k1,10917:19397251,43829122:237330 -k1,10917:20902047,43829122:237330 -k1,10917:22296088,43829122:237331 -k1,10917:22948222,43829122:237291 -k1,10917:25318750,43829122:237331 -k1,10917:26598102,43829122:237330 -k1,10917:29670519,43829122:237330 -k1,10917:31895556,43829122:237330 -k1,10917:32583029,43829122:0 -) -(1,10918:6797234,44670610:25785795,513147,134348 -k1,10917:9973478,44670610:150447 -k1,10917:11270149,44670610:150446 -(1,10917:11270149,44670610:0,452978,115847 -r1,10918:12683550,44670610:1413401,568825,115847 -k1,10917:11270149,44670610:-1413401 -) -(1,10917:11270149,44670610:1413401,452978,115847 -k1,10917:11270149,44670610:3277 -h1,10917:12680273,44670610:0,411205,112570 -) -k1,10917:13007667,44670610:150447 -k1,10917:16287457,44670610:150446 -k1,10917:17053942,44670610:150447 -k1,10917:19483075,44670610:150446 -h1,10917:20453663,44670610:0,0,0 -k1,10917:20604110,44670610:150447 -k1,10917:21563926,44670610:150446 -k1,10917:23212526,44670610:150447 -h1,10917:24407903,44670610:0,0,0 -k1,10917:24732019,44670610:150446 -k1,10917:26893111,44670610:150447 -k1,10917:28367384,44670610:150446 -k1,10917:29911782,44670610:150447 -k1,10917:32583029,44670610:0 -) -(1,10918:6797234,45512098:25785795,513147,134348 -k1,10917:11709731,45512098:239780 -k1,10917:15076889,45512098:239780 -k1,10917:16687682,45512098:239780 -k1,10917:19648517,45512098:239780 -k1,10917:23695282,45512098:239779 -k1,10917:25973232,45512098:239780 -k1,10917:26829050,45512098:239780 -k1,10917:29300331,45512098:239780 -k1,10917:32583029,45512098:0 -) -] -g1,10918:32583029,45646446 -) -] -(1,10918:32583029,45706769:0,0,0 -g1,10918:32583029,45706769 -) -) -] -(1,10918:6630773,47279633:25952256,0,0 -h1,10918:6630773,47279633:25952256,0,0 -) -] -(1,10918:4262630,4025873:0,0,0 -[1,10918:-473656,4025873:0,0,0 -(1,10918:-473656,-710413:0,0,0 -(1,10918:-473656,-710413:0,0,0 -g1,10918:-473656,-710413 -) -g1,10918:-473656,-710413 -) -] -) -] -!23580 -}184 -Input:1639:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1640:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1641:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1642:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1643:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1644:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1645:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1646:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1647:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!858 -{185 -[1,10978:4262630,47279633:28320399,43253760,0 -(1,10978:4262630,4025873:0,0,0 -[1,10978:-473656,4025873:0,0,0 -(1,10978:-473656,-710413:0,0,0 -(1,10978:-473656,-644877:0,0,0 -k1,10978:-473656,-644877:-65536 +g1,8606:36675916,2439708 +(1,8606:36675916,2439708:1179648,16384,0 +r1,10251:37855564,2439708:1179648,16384,0 ) -(1,10978:-473656,4736287:0,0,0 -k1,10978:-473656,4736287:5209943 ) -g1,10978:-473656,-710413 +k1,10251:3078556,2439708:-34777008 ) ] +[1,10251:3078558,4812305:0,0,0 +(1,10251:3078558,49800853:0,16384,2228224 +k1,10251:1358238,49800853:-1720320 +(1,8606:1358238,49800853:1720320,16384,2228224 +(1,8606:1358238,49800853:1179648,16384,0 +r1,10251:2537886,49800853:1179648,16384,0 ) -[1,10978:6630773,47279633:25952256,43253760,0 -[1,10978:6630773,4812305:25952256,786432,0 -(1,10978:6630773,4812305:25952256,505283,134348 -(1,10978:6630773,4812305:25952256,505283,134348 -g1,10978:3078558,4812305 -[1,10978:3078558,4812305:0,0,0 -(1,10978:3078558,2439708:0,1703936,0 -k1,10978:1358238,2439708:-1720320 -(1,10825:1358238,2439708:1720320,1703936,0 -(1,10825:1358238,2439708:1179648,16384,0 -r1,10978:2537886,2439708:1179648,16384,0 +g1,8606:3062174,49800853 +(1,8606:3062174,52029077:16384,1703936,0 +[1,8606:3062174,52029077:25952256,1703936,0 +(1,8606:3062174,51504789:25952256,1179648,0 +(1,8606:3062174,51504789:16384,1179648,0 +r1,10251:3078558,51504789:16384,1179648,0 ) -g1,10825:3062174,2439708 -(1,10825:3062174,2439708:16384,1703936,0 -[1,10825:3062174,2439708:25952256,1703936,0 -(1,10825:3062174,1915420:25952256,1179648,0 -(1,10825:3062174,1915420:16384,1179648,0 -r1,10978:3078558,1915420:16384,1179648,0 -) -k1,10825:29014430,1915420:25935872 -g1,10825:29014430,1915420 +k1,8606:29014430,51504789:25935872 +g1,8606:29014430,51504789 ) ] ) ) ) ] -[1,10978:3078558,4812305:0,0,0 -(1,10978:3078558,2439708:0,1703936,0 -g1,10978:29030814,2439708 -g1,10978:36135244,2439708 -(1,10825:36135244,2439708:1720320,1703936,0 -(1,10825:36135244,2439708:16384,1703936,0 -[1,10825:36135244,2439708:25952256,1703936,0 -(1,10825:36135244,1915420:25952256,1179648,0 -(1,10825:36135244,1915420:16384,1179648,0 -r1,10978:36151628,1915420:16384,1179648,0 +[1,10251:3078558,4812305:0,0,0 +(1,10251:3078558,49800853:0,16384,2228224 +g1,10251:29030814,49800853 +g1,10251:36135244,49800853 +(1,8606:36135244,49800853:1720320,16384,2228224 +(1,8606:36135244,52029077:16384,1703936,0 +[1,8606:36135244,52029077:25952256,1703936,0 +(1,8606:36135244,51504789:25952256,1179648,0 +(1,8606:36135244,51504789:16384,1179648,0 +r1,10251:36151628,51504789:16384,1179648,0 ) -k1,10825:62087500,1915420:25935872 -g1,10825:62087500,1915420 +k1,8606:62087500,51504789:25935872 +g1,8606:62087500,51504789 ) ] ) -g1,10825:36675916,2439708 -(1,10825:36675916,2439708:1179648,16384,0 -r1,10978:37855564,2439708:1179648,16384,0 +g1,8606:36675916,49800853 +(1,8606:36675916,49800853:1179648,16384,0 +r1,10251:37855564,49800853:1179648,16384,0 ) ) -k1,10978:3078556,2439708:-34777008 +k1,10251:3078556,49800853:-34777008 ) ] -[1,10978:3078558,4812305:0,0,0 -(1,10978:3078558,49800853:0,16384,2228224 -k1,10978:1358238,49800853:-1720320 -(1,10825:1358238,49800853:1720320,16384,2228224 -(1,10825:1358238,49800853:1179648,16384,0 -r1,10978:2537886,49800853:1179648,16384,0 +g1,10251:6630773,4812305 +g1,10251:6630773,4812305 +g1,10251:9524187,4812305 +k1,10251:31387651,4812305:21863464 +) +) +] +[1,10251:6630773,45706769:25952256,40108032,0 +(1,10251:6630773,45706769:25952256,40108032,0 +(1,10251:6630773,45706769:0,0,0 +g1,10251:6630773,45706769 +) +[1,10251:6630773,45706769:25952256,40108032,0 +v1,10139:6630773,6254097:0,393216,0 +(1,10139:6630773,7354955:25952256,1494074,0 +g1,10139:6630773,7354955 +g1,10139:6237557,7354955 +r1,10251:6368629,7354955:131072,1494074,0 +g1,10139:6567858,7354955 +g1,10139:6764466,7354955 +[1,10139:6764466,7354955:25818563,1494074,0 +(1,10139:6764466,6374028:25818563,513147,126483 +k1,10138:8019131,6374028:235580 +k1,10138:11668481,6374028:235580 +k1,10138:15090422,6374028:235581 +k1,10138:15942040,6374028:235580 +k1,10138:17196705,6374028:235580 +k1,10138:19009081,6374028:235580 +k1,10138:19903953,6374028:235580 +k1,10138:20495394,6374028:235581 +k1,10138:22145896,6374028:235580 +k1,10138:23032904,6374028:235580 +k1,10138:25640232,6374028:235580 +k1,10138:27526009,6374028:235580 +k1,10138:29204037,6374028:235581 +k1,10138:30596327,6374028:235580 +k1,10138:31931601,6374028:235580 +k1,10139:32583029,6374028:0 +) +(1,10139:6764466,7239108:25818563,513147,115847 +(1,10138:6764466,7239108:0,452978,115847 +r1,10251:9233003,7239108:2468537,568825,115847 +k1,10138:6764466,7239108:-2468537 +) +(1,10138:6764466,7239108:2468537,452978,115847 +k1,10138:6764466,7239108:3277 +h1,10138:9229726,7239108:0,411205,112570 +) +g1,10138:9605902,7239108 +g1,10138:11256753,7239108 +g1,10138:13465971,7239108 +g1,10138:14021060,7239108 +g1,10138:16982632,7239108 +(1,10138:16982632,7239108:0,459977,115847 +r1,10251:17692610,7239108:709978,575824,115847 +k1,10138:16982632,7239108:-709978 +) +(1,10138:16982632,7239108:709978,459977,115847 +k1,10138:16982632,7239108:3277 +h1,10138:17689333,7239108:0,411205,112570 +) +g1,10138:17891839,7239108 +g1,10138:18773953,7239108 +(1,10138:18773953,7239108:0,452978,115847 +r1,10251:20187354,7239108:1413401,568825,115847 +k1,10138:18773953,7239108:-1413401 +) +(1,10138:18773953,7239108:1413401,452978,115847 +k1,10138:18773953,7239108:3277 +h1,10138:20184077,7239108:0,411205,112570 +) +g1,10138:20386583,7239108 +k1,10139:32583029,7239108:8836415 +g1,10139:32583029,7239108 +) +] +g1,10139:32583029,7354955 +) +h1,10139:6630773,7354955:0,0,0 +(1,10141:6630773,9471773:25952256,555811,139132 +(1,10141:6630773,9471773:2450326,527696,12975 +g1,10141:6630773,9471773 +g1,10141:9081099,9471773 +) +g1,10141:12020913,9471773 +g1,10141:14217484,9471773 +g1,10141:15704693,9471773 +g1,10141:16796130,9471773 +g1,10141:18712272,9471773 +g1,10141:19642949,9471773 +k1,10141:32583029,9471773:12442662 +g1,10141:32583029,9471773 +) +(1,10144:6630773,10730069:25952256,513147,134348 +k1,10143:7321391,10730069:212861 +k1,10143:8704725,10730069:212861 +k1,10143:10392801,10730069:212861 +k1,10143:12892213,10730069:212861 +k1,10143:16177402,10730069:212861 +k1,10143:17006301,10730069:212861 +k1,10143:18921132,10730069:212861 +k1,10143:22480260,10730069:212860 +k1,10143:23151218,10730069:212861 +k1,10143:24496541,10730069:212861 +k1,10143:25873977,10730069:212861 +k1,10143:28378632,10730069:212861 +k1,10143:29242921,10730069:212861 +k1,10143:30626255,10730069:212861 +k1,10143:31490544,10730069:212861 +k1,10143:32583029,10730069:0 +) +(1,10144:6630773,11595149:25952256,513147,134348 +k1,10143:8541790,11595149:165793 +(1,10143:8748884,11595149:0,459977,115847 +r1,10251:9810573,11595149:1061689,575824,115847 +k1,10143:8748884,11595149:-1061689 +) +(1,10143:8748884,11595149:1061689,459977,115847 +k1,10143:8748884,11595149:3277 +h1,10143:9807296,11595149:0,411205,112570 +) +k1,10143:10150035,11595149:165792 +(1,10143:10150035,11595149:0,452978,115847 +r1,10251:11915148,11595149:1765113,568825,115847 +k1,10143:10150035,11595149:-1765113 +) +(1,10143:10150035,11595149:1765113,452978,115847 +k1,10143:10150035,11595149:3277 +h1,10143:11911871,11595149:0,411205,112570 +) +k1,10143:12254611,11595149:165793 +k1,10143:13611849,11595149:165793 +(1,10143:13611849,11595149:0,414482,115847 +r1,10251:15728674,11595149:2116825,530329,115847 +k1,10143:13611849,11595149:-2116825 +) +(1,10143:13611849,11595149:2116825,414482,115847 +k1,10143:13611849,11595149:3277 +h1,10143:15725397,11595149:0,411205,112570 +) +k1,10143:16101561,11595149:165793 +k1,10143:17215004,11595149:165792 +k1,10143:19132574,11595149:165793 +k1,10143:19957659,11595149:165793 +k1,10143:21142536,11595149:165792 +k1,10143:23300623,11595149:165793 +k1,10143:24414067,11595149:165793 +k1,10143:26465330,11595149:165792 +k1,10143:27247161,11595149:165793 +k1,10143:27827764,11595149:165760 +k1,10143:29150266,11595149:165792 +k1,10143:31272309,11595149:165793 +k1,10144:32583029,11595149:0 +) +(1,10144:6630773,12460229:25952256,505283,134348 +k1,10143:8571425,12460229:193462 +k1,10143:9857372,12460229:193462 +k1,10143:14416844,12460229:193463 +k1,10143:15238141,12460229:193462 +k1,10143:16020116,12460229:193462 +k1,10143:17948971,12460229:193462 +k1,10143:22334771,12460229:193462 +k1,10143:25566483,12460229:193463 +k1,10143:28389905,12460229:193462 +k1,10143:30421652,12460229:193462 +k1,10143:32583029,12460229:0 +) +(1,10144:6630773,13325309:25952256,513147,126483 +k1,10143:9122826,13325309:171423 +k1,10143:10485695,13325309:171424 +k1,10143:12527516,13325309:171423 +k1,10143:13350367,13325309:171423 +k1,10143:17186563,13325309:171423 +k1,10143:18177842,13325309:171424 +k1,10143:19844797,13325309:171423 +k1,10143:20963871,13325309:171423 +k1,10143:22879208,13325309:171424 +k1,10143:24444582,13325309:171423 +k1,10143:28029120,13325309:171423 +k1,10143:28816581,13325309:171423 +k1,10143:29783612,13325309:171424 +k1,10143:31548871,13325309:171423 +k1,10144:32583029,13325309:0 +) +(1,10144:6630773,14190389:25952256,513147,134348 +k1,10143:9941216,14190389:182410 +k1,10143:10809788,14190389:182410 +k1,10143:11407024,14190389:182393 +k1,10143:12120931,14190389:182410 +k1,10143:13074044,14190389:182410 +k1,10143:16846516,14190389:182410 +k1,10143:20044893,14190389:182410 +k1,10143:23564395,14190389:182409 +k1,10143:27022950,14190389:182410 +k1,10143:28975487,14190389:182410 +k1,10143:29809325,14190389:182410 +k1,10143:30739501,14190389:182410 +k1,10143:32583029,14190389:0 +) +(1,10144:6630773,15055469:25952256,513147,126483 +k1,10143:8270080,15055469:196860 +k1,10143:9486025,15055469:196860 +k1,10143:10775370,15055469:196860 +k1,10143:11631522,15055469:196860 +k1,10143:14159498,15055469:196860 +k1,10143:17247151,15055469:196860 +k1,10143:18071847,15055469:196861 +k1,10143:20257069,15055469:196860 +k1,10143:23117968,15055469:196860 +k1,10143:23981984,15055469:196860 +k1,10143:24767357,15055469:196860 +k1,10143:30341446,15055469:196860 +k1,10143:31069803,15055469:196860 +k1,10143:32583029,15055469:0 +) +(1,10144:6630773,15920549:25952256,513147,126483 +k1,10143:7563394,15920549:171093 +k1,10143:10000066,15920549:171092 +k1,10143:11362604,15920549:171093 +k1,10143:13278920,15920549:171092 +k1,10143:14786947,15920549:171093 +k1,10143:15705805,15920549:171092 +k1,10143:18820120,15920549:171093 +k1,10143:19800582,15920549:171092 +k1,10143:20990760,15920549:171093 +k1,10143:22131129,15920549:171092 +k1,10143:24187693,15920549:171093 +k1,10143:26782962,15920549:171092 +k1,10143:28275916,15920549:171093 +k1,10143:29106300,15920549:171092 +k1,10143:30296478,15920549:171093 +k1,10143:32583029,15920549:0 +) +(1,10144:6630773,16785629:25952256,513147,126483 +k1,10143:7496212,16785629:206147 +k1,10143:10486984,16785629:206147 +k1,10143:15312109,16785629:206147 +k1,10143:18452958,16785629:206147 +k1,10143:20125800,16785629:206146 +k1,10143:24853931,16785629:206147 +k1,10143:26805302,16785629:206147 +k1,10143:28003009,16785629:206147 +k1,10143:30496363,16785629:206147 +k1,10143:32583029,16785629:0 +) +(1,10144:6630773,17650709:25952256,513147,126483 +g1,10143:7481430,17650709 +g1,10143:10093039,17650709 +g1,10143:11734715,17650709 +g1,10143:15052802,17650709 +g1,10143:17168959,17650709 +g1,10143:20705281,17650709 +g1,10143:23930307,17650709 +g1,10143:25320981,17650709 +k1,10144:32583029,17650709:4011462 +g1,10144:32583029,17650709 +) +(1,10146:6630773,18515789:25952256,513147,134348 +h1,10145:6630773,18515789:983040,0,0 +k1,10145:11011140,18515789:298129 +k1,10145:13175734,18515789:298129 +k1,10145:15334430,18515789:298129 +k1,10145:16283987,18515789:298129 +k1,10145:17329882,18515789:298129 +k1,10145:20461789,18515789:298130 +k1,10145:23049091,18515789:298129 +k1,10145:24366305,18515789:298129 +k1,10145:26437183,18515789:298129 +k1,10145:29411147,18515789:298129 +k1,10145:30325314,18515789:298129 +k1,10145:32583029,18515789:0 +) +(1,10146:6630773,19380869:25952256,513147,134348 +k1,10145:8719541,19380869:245240 +k1,10145:10634639,19380869:245241 +k1,10145:13814581,19380869:245240 +k1,10145:15795214,19380869:245240 +k1,10145:20232793,19380869:245241 +k1,10145:21669478,19380869:245240 +k1,10145:24312025,19380869:245240 +k1,10145:24972062,19380869:245194 +k1,10145:28243100,19380869:245241 +k1,10145:31110435,19380869:245240 +k1,10145:32583029,19380869:0 +) +(1,10146:6630773,20245949:25952256,513147,134348 +k1,10145:8548356,20245949:144834 +k1,10145:10183480,20245949:144835 +k1,10145:11196666,20245949:144834 +k1,10145:12333061,20245949:144835 +k1,10145:14970229,20245949:144834 +k1,10145:16509014,20245949:144834 +k1,10145:18466575,20245949:144835 +k1,10145:19808096,20245949:144834 +k1,10145:22664810,20245949:144834 +k1,10145:24047620,20245949:144835 +k1,10145:24851746,20245949:144834 +k1,10145:28343505,20245949:144835 +k1,10145:29507424,20245949:144834 +k1,10145:32583029,20245949:0 +) +(1,10146:6630773,21111029:25952256,513147,126483 +k1,10145:8288361,21111029:232180 +k1,10145:9179833,21111029:232180 +k1,10145:10182716,21111029:232180 +k1,10145:10829706,21111029:232147 +k1,10145:14501871,21111029:232180 +k1,10145:15265548,21111029:232180 +k1,10145:16149156,21111029:232180 +k1,10145:17473821,21111029:232180 +k1,10145:20401497,21111029:232180 +(1,10145:20401497,21111029:0,452978,115847 +r1,10251:24980305,21111029:4578808,568825,115847 +k1,10145:20401497,21111029:-4578808 +) +(1,10145:20401497,21111029:4578808,452978,115847 +k1,10145:20401497,21111029:3277 +h1,10145:24977028,21111029:0,411205,112570 +) +k1,10145:25386155,21111029:232180 +k1,10145:28553037,21111029:232180 +k1,10145:29804302,21111029:232180 +k1,10145:32583029,21111029:0 +) +(1,10146:6630773,21976109:25952256,505283,134348 +k1,10145:8231868,21976109:175687 +k1,10145:8939052,21976109:175687 +k1,10145:9730776,21976109:175686 +k1,10145:12478096,21976109:175687 +k1,10145:13845228,21976109:175687 +k1,10145:18246021,21976109:175687 +k1,10145:19440792,21976109:175686 +k1,10145:23056464,21976109:175687 +k1,10145:24854167,21976109:175687 +k1,10145:26382517,21976109:175687 +k1,10145:27946911,21976109:175686 +k1,10145:30483205,21976109:175687 +k1,10145:31310320,21976109:175687 +k1,10146:32583029,21976109:0 +) +(1,10146:6630773,22841189:25952256,513147,134348 +k1,10145:8125947,22841189:142511 +k1,10145:9216109,22841189:142511 +k1,10145:10377705,22841189:142511 +k1,10145:13298943,22841189:142511 +k1,10145:14866862,22841189:142511 +k1,10145:15660800,22841189:142510 +k1,10145:17278526,22841189:142511 +k1,10145:19398258,22841189:142511 +k1,10145:22962404,22841189:142511 +k1,10145:24154802,22841189:142511 +k1,10145:26877465,22841189:142511 +k1,10145:32583029,22841189:0 +) +(1,10146:6630773,23706269:25952256,513147,134348 +g1,10145:7777653,23706269 +g1,10145:9558266,23706269 +g1,10145:10705146,23706269 +g1,10145:15462404,23706269 +g1,10145:17157820,23706269 +g1,10145:18751000,23706269 +g1,10145:20847496,23706269 +g1,10145:22472133,23706269 +k1,10146:32583029,23706269:6689261 +g1,10146:32583029,23706269 +) +v1,10148:6630773,24391124:0,393216,0 +(1,10160:6630773,28869065:25952256,4871157,196608 +g1,10160:6630773,28869065 +g1,10160:6630773,28869065 +g1,10160:6434165,28869065 +(1,10160:6434165,28869065:0,4871157,196608 +r1,10251:32779637,28869065:26345472,5067765,196608 +k1,10160:6434165,28869065:-26345472 +) +(1,10160:6434165,28869065:26345472,4871157,196608 +[1,10160:6630773,28869065:25952256,4674549,0 +(1,10150:6630773,24618955:25952256,424439,106246 +(1,10149:6630773,24618955:0,0,0 +g1,10149:6630773,24618955 +g1,10149:6630773,24618955 +g1,10149:6303093,24618955 +(1,10149:6303093,24618955:0,0,0 +) +g1,10149:6630773,24618955 +) +k1,10150:6630773,24618955:0 +g1,10150:11610082,24618955 +g1,10150:12605944,24618955 +k1,10150:12605944,24618955:0 +h1,10150:15593530,24618955:0,0,0 +k1,10150:32583030,24618955:16989500 +g1,10150:32583030,24618955 +) +(1,10151:6630773,25303810:25952256,431045,79822 +h1,10151:6630773,25303810:0,0,0 +g1,10151:6962727,25303810 +g1,10151:7294681,25303810 +g1,10151:7626635,25303810 +g1,10151:7958589,25303810 +g1,10151:8290543,25303810 +g1,10151:8622497,25303810 +g1,10151:8954451,25303810 +g1,10151:9286405,25303810 +g1,10151:9618359,25303810 +g1,10151:9950313,25303810 +g1,10151:10282267,25303810 +g1,10151:10614221,25303810 +g1,10151:11942037,25303810 +g1,10151:12937899,25303810 +g1,10151:13933761,25303810 +g1,10151:17585255,25303810 +h1,10151:17917209,25303810:0,0,0 +k1,10151:32583029,25303810:14665820 +g1,10151:32583029,25303810 +) +(1,10152:6630773,25988665:25952256,424439,79822 +h1,10152:6630773,25988665:0,0,0 +g1,10152:6962727,25988665 +g1,10152:7294681,25988665 +g1,10152:7626635,25988665 +g1,10152:7958589,25988665 +g1,10152:8290543,25988665 +g1,10152:8622497,25988665 +g1,10152:8954451,25988665 +g1,10152:9286405,25988665 +g1,10152:9618359,25988665 +g1,10152:9950313,25988665 +g1,10152:10282267,25988665 +g1,10152:10614221,25988665 +g1,10152:10946175,25988665 +g1,10152:11278129,25988665 +g1,10152:12937899,25988665 +g1,10152:13933761,25988665 +g1,10152:14597669,25988665 +g1,10152:15261577,25988665 +h1,10152:16589393,25988665:0,0,0 +k1,10152:32583029,25988665:15993636 +g1,10152:32583029,25988665 +) +(1,10153:6630773,26673520:25952256,424439,79822 +h1,10153:6630773,26673520:0,0,0 +g1,10153:6962727,26673520 +g1,10153:7294681,26673520 +g1,10153:7626635,26673520 +g1,10153:7958589,26673520 +g1,10153:8290543,26673520 +g1,10153:8622497,26673520 +g1,10153:8954451,26673520 +g1,10153:9286405,26673520 +g1,10153:9618359,26673520 +g1,10153:9950313,26673520 +g1,10153:10282267,26673520 +g1,10153:10614221,26673520 +g1,10153:10946175,26673520 +g1,10153:11278129,26673520 +h1,10153:11610083,26673520:0,0,0 +k1,10153:32583029,26673520:20972946 +g1,10153:32583029,26673520 +) +(1,10154:6630773,27358375:25952256,424439,79822 +h1,10154:6630773,27358375:0,0,0 +g1,10154:6962727,27358375 +g1,10154:7294681,27358375 +g1,10154:7626635,27358375 +g1,10154:7958589,27358375 +g1,10154:8290543,27358375 +g1,10154:8622497,27358375 +g1,10154:8954451,27358375 +g1,10154:9286405,27358375 +g1,10154:9618359,27358375 +g1,10154:9950313,27358375 +g1,10154:10282267,27358375 +g1,10154:10614221,27358375 +h1,10154:11278129,27358375:0,0,0 +k1,10154:32583029,27358375:21304900 +g1,10154:32583029,27358375 +) +(1,10159:6630773,28174302:25952256,424439,106246 +(1,10156:6630773,28174302:0,0,0 +g1,10156:6630773,28174302 +g1,10156:6630773,28174302 +g1,10156:6303093,28174302 +(1,10156:6303093,28174302:0,0,0 +) +g1,10156:6630773,28174302 +) +g1,10159:7626635,28174302 +g1,10159:7958589,28174302 +g1,10159:8290543,28174302 +g1,10159:8622497,28174302 +g1,10159:10282267,28174302 +g1,10159:10614221,28174302 +g1,10159:12937899,28174302 +h1,10159:15261577,28174302:0,0,0 +k1,10159:32583029,28174302:17321452 +g1,10159:32583029,28174302 +) +(1,10159:6630773,28859157:25952256,407923,9908 +h1,10159:6630773,28859157:0,0,0 +g1,10159:7626635,28859157 +g1,10159:7958589,28859157 +g1,10159:8290543,28859157 +g1,10159:8622497,28859157 +g1,10159:10282267,28859157 +g1,10159:10614221,28859157 +g1,10159:10946175,28859157 +g1,10159:11278129,28859157 +g1,10159:12937899,28859157 +g1,10159:13269853,28859157 +g1,10159:13601807,28859157 +g1,10159:13933761,28859157 +h1,10159:15261577,28859157:0,0,0 +k1,10159:32583029,28859157:17321452 +g1,10159:32583029,28859157 +) +] +) +g1,10160:32583029,28869065 +g1,10160:6630773,28869065 +g1,10160:6630773,28869065 +g1,10160:32583029,28869065 +g1,10160:32583029,28869065 +) +h1,10160:6630773,29065673:0,0,0 +v1,10164:6630773,29930753:0,393216,0 +(1,10251:6630773,38381837:25952256,8844300,0 +g1,10251:6630773,38381837 +g1,10251:6237557,38381837 +r1,10251:6368629,38381837:131072,8844300,0 +g1,10251:6567858,38381837 +g1,10251:6764466,38381837 +[1,10251:6764466,38381837:25818563,8844300,0 +(1,10165:6764466,30239051:25818563,701514,196608 +(1,10164:6764466,30239051:0,701514,196608 +r1,10251:8010564,30239051:1246098,898122,196608 +k1,10164:6764466,30239051:-1246098 +) +(1,10164:6764466,30239051:1246098,701514,196608 +) +k1,10164:8262606,30239051:252042 +k1,10164:8590286,30239051:327680 +k1,10164:11965773,30239051:252041 +k1,10164:14804521,30239051:252042 +k1,10164:16450514,30239051:252042 +k1,10164:18273453,30239051:252041 +k1,10164:19914858,30239051:252042 +k1,10164:21605415,30239051:252042 +k1,10164:22540342,30239051:252042 +k1,10164:24544160,30239051:252041 +k1,10164:26998212,30239051:252042 +k1,10164:28639617,30239051:252042 +k1,10164:30330173,30239051:252041 +k1,10164:31450567,30239051:252042 +k1,10164:32583029,30239051:0 +) +(1,10165:6764466,31104131:25818563,513147,126483 +k1,10164:8489076,31104131:194344 +k1,10164:9334848,31104131:194344 +k1,10164:10881855,31104131:194344 +k1,10164:15151883,31104131:194344 +k1,10164:16613693,31104131:194344 +k1,10164:19485838,31104131:194344 +k1,10164:20498071,31104131:194344 +k1,10164:24884753,31104131:194344 +k1,10164:27366304,31104131:194344 +k1,10164:28846464,31104131:194344 +k1,10164:31086842,31104131:194344 +k1,10164:32583029,31104131:0 +) +(1,10165:6764466,31969211:25818563,505283,134348 +k1,10164:9617784,31969211:266612 +k1,10164:10342494,31969211:266613 +k1,10164:11140603,31969211:266612 +k1,10164:12991221,31969211:266613 +k1,10164:14758607,31969211:266612 +k1,10164:15676648,31969211:266613 +k1,10164:17035745,31969211:266612 +k1,10164:21494696,31969211:266613 +k1,10164:24799557,31969211:266612 +k1,10164:27869800,31969211:266613 +k1,10164:29178434,31969211:266612 +k1,10164:32583029,31969211:0 +) +(1,10165:6764466,32834291:25818563,513147,126483 +k1,10164:8348316,32834291:299344 +k1,10164:9639220,32834291:299344 +k1,10164:13243545,32834291:299344 +k1,10164:15229786,32834291:299344 +k1,10164:15943872,32834291:299243 +k1,10164:18911187,32834291:299344 +k1,10164:21607838,32834291:299344 +k1,10164:25106650,32834291:299344 +k1,10164:25875886,32834291:299343 +k1,10164:26706727,32834291:299344 +k1,10164:28422959,32834291:299344 +k1,10164:31931601,32834291:299344 +k1,10164:32583029,32834291:0 +) +(1,10165:6764466,33699371:25818563,513147,126483 +k1,10164:9760295,33699371:264944 +k1,10164:11091510,33699371:264944 +k1,10164:12732055,33699371:264944 +k1,10164:17189337,33699371:264944 +k1,10164:18113573,33699371:264944 +k1,10164:21654663,33699371:264945 +k1,10164:22991776,33699371:264944 +k1,10164:24542536,33699371:264944 +k1,10164:26629381,33699371:264944 +k1,10164:27841976,33699371:264944 +k1,10164:29126005,33699371:264944 +k1,10164:32583029,33699371:0 +) +(1,10165:6764466,34564451:25818563,513147,134348 +k1,10164:7636604,34564451:212846 +k1,10164:15390679,34564451:212847 +k1,10164:18629322,34564451:212846 +k1,10164:19789819,34564451:212846 +k1,10164:22399973,34564451:212847 +k1,10164:24483872,34564451:212846 +k1,10164:25893405,34564451:212846 +k1,10164:28279426,34564451:212847 +k1,10164:30059893,34564451:212846 +k1,10164:32583029,34564451:0 +) +(1,10165:6764466,35429531:25818563,513147,126483 +k1,10164:8056462,35429531:272911 +k1,10164:9825559,35429531:272910 +k1,10164:13090188,35429531:272910 +k1,10164:13979137,35429531:272911 +k1,10164:15455289,35429531:272911 +k1,10164:16888186,35429531:272910 +k1,10164:18152656,35429531:272910 +k1,10164:19491838,35429531:272911 +k1,10164:22696830,35429531:272911 +k1,10164:25499430,35429531:272910 +k1,10164:27152528,35429531:272910 +k1,10164:28416999,35429531:272911 +k1,10164:29708994,35429531:272910 +k1,10164:31635378,35429531:272911 +k1,10164:32583029,35429531:0 +) +(1,10165:6764466,36294611:25818563,505283,102891 +k1,10164:7755633,36294611:225051 +k1,10164:10455322,36294611:225050 +k1,10164:12168696,36294611:225051 +k1,10164:13262098,36294611:225050 +k1,10164:14478709,36294611:225051 +k1,10164:17915024,36294611:225051 +k1,10164:18756112,36294611:225050 +k1,10164:20000248,36294611:225051 +k1,10164:23300903,36294611:225050 +k1,10164:25125032,36294611:225051 +k1,10164:26541528,36294611:225051 +k1,10164:27634930,36294611:225050 +k1,10164:29472822,36294611:225051 +k1,10164:30901113,36294611:225050 +k1,10164:31812326,36294611:225051 +k1,10164:32583029,36294611:0 +) +(1,10165:6764466,37159691:25818563,473825,7863 +k1,10165:32583028,37159691:23084400 +g1,10165:32583028,37159691 +) +v1,10167:6764466,37844546:0,393216,0 +(1,10171:6764466,38185229:25818563,733899,196608 +g1,10171:6764466,38185229 +g1,10171:6764466,38185229 +g1,10171:6567858,38185229 +(1,10171:6567858,38185229:0,733899,196608 +r1,10251:32779637,38185229:26211779,930507,196608 +k1,10171:6567857,38185229:-26211780 +) +(1,10171:6567858,38185229:26211779,733899,196608 +[1,10171:6764466,38185229:25818563,537291,0 +(1,10169:6764466,38072377:25818563,424439,112852 +(1,10168:6764466,38072377:0,0,0 +g1,10168:6764466,38072377 +g1,10168:6764466,38072377 +g1,10168:6436786,38072377 +(1,10168:6436786,38072377:0,0,0 +) +g1,10168:6764466,38072377 +) +g1,10169:7428374,38072377 +g1,10169:8424236,38072377 +g1,10169:12407684,38072377 +g1,10169:13071592,38072377 +g1,10169:13735500,38072377 +g1,10169:15063316,38072377 +k1,10169:15063316,38072377:24773 +h1,10169:17079813,38072377:0,0,0 +k1,10169:32583029,38072377:15503216 +g1,10169:32583029,38072377 +) +] +) +g1,10171:32583029,38185229 +g1,10171:6764466,38185229 +g1,10171:6764466,38185229 +g1,10171:32583029,38185229 +g1,10171:32583029,38185229 +) +h1,10171:6764466,38381837:0,0,0 +] +g1,10251:32583029,38381837 +) +] +(1,10251:32583029,45706769:0,0,0 +g1,10251:32583029,45706769 +) +) +] +(1,10251:6630773,47279633:25952256,0,0 +h1,10251:6630773,47279633:25952256,0,0 +) +] +(1,10251:4262630,4025873:0,0,0 +[1,10251:-473656,4025873:0,0,0 +(1,10251:-473656,-710413:0,0,0 +(1,10251:-473656,-710413:0,0,0 +g1,10251:-473656,-710413 +) +g1,10251:-473656,-710413 +) +] +) +] +!24381 +}162 +Input:1508:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!106 +{163 +[1,10278:4262630,47279633:28320399,43253760,0 +(1,10278:4262630,4025873:0,0,0 +[1,10278:-473656,4025873:0,0,0 +(1,10278:-473656,-710413:0,0,0 +(1,10278:-473656,-644877:0,0,0 +k1,10278:-473656,-644877:-65536 ) -g1,10825:3062174,49800853 -(1,10825:3062174,52029077:16384,1703936,0 -[1,10825:3062174,52029077:25952256,1703936,0 -(1,10825:3062174,51504789:25952256,1179648,0 -(1,10825:3062174,51504789:16384,1179648,0 -r1,10978:3078558,51504789:16384,1179648,0 +(1,10278:-473656,4736287:0,0,0 +k1,10278:-473656,4736287:5209943 ) -k1,10825:29014430,51504789:25935872 -g1,10825:29014430,51504789 +g1,10278:-473656,-710413 ) ] ) +[1,10278:6630773,47279633:25952256,43253760,0 +[1,10278:6630773,4812305:25952256,786432,0 +(1,10278:6630773,4812305:25952256,505283,134348 +(1,10278:6630773,4812305:25952256,505283,134348 +g1,10278:3078558,4812305 +[1,10278:3078558,4812305:0,0,0 +(1,10278:3078558,2439708:0,1703936,0 +k1,10278:1358238,2439708:-1720320 +(1,8606:1358238,2439708:1720320,1703936,0 +(1,8606:1358238,2439708:1179648,16384,0 +r1,10278:2537886,2439708:1179648,16384,0 ) +g1,8606:3062174,2439708 +(1,8606:3062174,2439708:16384,1703936,0 +[1,8606:3062174,2439708:25952256,1703936,0 +(1,8606:3062174,1915420:25952256,1179648,0 +(1,8606:3062174,1915420:16384,1179648,0 +r1,10278:3078558,1915420:16384,1179648,0 ) -] -[1,10978:3078558,4812305:0,0,0 -(1,10978:3078558,49800853:0,16384,2228224 -g1,10978:29030814,49800853 -g1,10978:36135244,49800853 -(1,10825:36135244,49800853:1720320,16384,2228224 -(1,10825:36135244,52029077:16384,1703936,0 -[1,10825:36135244,52029077:25952256,1703936,0 -(1,10825:36135244,51504789:25952256,1179648,0 -(1,10825:36135244,51504789:16384,1179648,0 -r1,10978:36151628,51504789:16384,1179648,0 -) -k1,10825:62087500,51504789:25935872 -g1,10825:62087500,51504789 +k1,8606:29014430,1915420:25935872 +g1,8606:29014430,1915420 ) ] ) -g1,10825:36675916,49800853 -(1,10825:36675916,49800853:1179648,16384,0 -r1,10978:37855564,49800853:1179648,16384,0 -) ) -k1,10978:3078556,49800853:-34777008 ) ] -g1,10978:6630773,4812305 -k1,10978:23552825,4812305:15726675 -g1,10978:25175496,4812305 -g1,10978:25997972,4812305 -g1,10978:28481131,4812305 -g1,10978:30046786,4812305 +[1,10278:3078558,4812305:0,0,0 +(1,10278:3078558,2439708:0,1703936,0 +g1,10278:29030814,2439708 +g1,10278:36135244,2439708 +(1,8606:36135244,2439708:1720320,1703936,0 +(1,8606:36135244,2439708:16384,1703936,0 +[1,8606:36135244,2439708:25952256,1703936,0 +(1,8606:36135244,1915420:25952256,1179648,0 +(1,8606:36135244,1915420:16384,1179648,0 +r1,10278:36151628,1915420:16384,1179648,0 ) +k1,8606:62087500,1915420:25935872 +g1,8606:62087500,1915420 ) ] -[1,10978:6630773,45706769:25952256,40108032,0 -(1,10978:6630773,45706769:25952256,40108032,0 -(1,10978:6630773,45706769:0,0,0 -g1,10978:6630773,45706769 ) -[1,10978:6630773,45706769:25952256,40108032,0 -v1,10918:6630773,6254097:0,393216,0 -(1,10918:6630773,7331363:25952256,1470482,0 -g1,10918:6630773,7331363 -g1,10918:6303093,7331363 -r1,10978:6401397,7331363:98304,1470482,0 -g1,10918:6600626,7331363 -g1,10918:6797234,7331363 -[1,10918:6797234,7331363:25785795,1470482,0 -(1,10918:6797234,6374028:25785795,513147,134348 -k1,10917:7685115,6374028:260046 -k1,10917:8964246,6374028:260046 -k1,10917:10591373,6374028:260046 -k1,10917:11660789,6374028:260046 -(1,10917:11660789,6374028:0,452978,115847 -r1,10978:13074190,6374028:1413401,568825,115847 -k1,10917:11660789,6374028:-1413401 -) -(1,10917:11660789,6374028:1413401,452978,115847 -k1,10917:11660789,6374028:3277 -h1,10917:13070913,6374028:0,411205,112570 -) -k1,10917:13334236,6374028:260046 -k1,10917:14613367,6374028:260046 -k1,10917:17652140,6374028:260046 -k1,10917:20375685,6374028:260047 -k1,10917:22190900,6374028:260046 -k1,10917:22982443,6374028:260046 -(1,10917:22982443,6374028:0,452978,115847 -r1,10978:23692421,6374028:709978,568825,115847 -k1,10917:22982443,6374028:-709978 -) -(1,10917:22982443,6374028:709978,452978,115847 -k1,10917:22982443,6374028:3277 -h1,10917:23689144,6374028:0,411205,112570 -) -k1,10917:24126137,6374028:260046 -k1,10917:24742043,6374028:260046 -k1,10917:26557258,6374028:260046 -k1,10917:29200193,6374028:260046 -k1,10917:31027860,6374028:260046 -k1,10918:32583029,6374028:0 -) -(1,10918:6797234,7215516:25785795,452978,115847 -(1,10917:6797234,7215516:0,452978,115847 -r1,10978:8210635,7215516:1413401,568825,115847 -k1,10917:6797234,7215516:-1413401 -) -(1,10917:6797234,7215516:1413401,452978,115847 -k1,10917:6797234,7215516:3277 -h1,10917:8207358,7215516:0,411205,112570 -) -k1,10918:32583029,7215516:24198724 -g1,10918:32583029,7215516 -) -] -g1,10918:32583029,7331363 -) -h1,10918:6630773,7331363:0,0,0 -v1,10921:6630773,8658968:0,393216,0 -(1,10966:6630773,27204703:25952256,18938951,0 -g1,10966:6630773,27204703 -g1,10966:6303093,27204703 -r1,10978:6401397,27204703:98304,18938951,0 -g1,10966:6600626,27204703 -g1,10966:6797234,27204703 -[1,10966:6797234,27204703:25785795,18938951,0 -(1,10924:6797234,9091506:25785795,825754,196608 -(1,10921:6797234,9091506:0,825754,196608 -r1,10978:7890375,9091506:1093141,1022362,196608 -k1,10921:6797234,9091506:-1093141 -) -(1,10921:6797234,9091506:1093141,825754,196608 -) -k1,10921:8195513,9091506:305138 -k1,10921:9513442,9091506:327680 -k1,10921:11601815,9091506:305138 -k1,10921:14602449,9091506:305138 -(1,10921:14602449,9091506:0,452978,115847 -r1,10978:17422698,9091506:2820249,568825,115847 -k1,10921:14602449,9091506:-2820249 -) -(1,10921:14602449,9091506:2820249,452978,115847 -k1,10921:14602449,9091506:3277 -h1,10921:17419421,9091506:0,411205,112570 -) -k1,10921:17727836,9091506:305138 -k1,10921:18564471,9091506:305138 -k1,10921:20737385,9091506:305138 -k1,10921:23052512,9091506:305138 -k1,10921:23713510,9091506:305138 -k1,10921:26887814,9091506:305138 -k1,10921:28542994,9091506:305138 -k1,10921:29507424,9091506:305138 -k1,10921:32583029,9091506:0 -) -(1,10924:6797234,9932994:25785795,513147,134348 -k1,10921:9060224,9932994:253001 -k1,10921:10332310,9932994:253001 -k1,10921:13280807,9932994:253001 -k1,10921:15266581,9932994:253002 -k1,10921:16711027,9932994:253001 -k1,10921:17983113,9932994:253001 -k1,10921:21308442,9932994:253001 -k1,10921:23766730,9932994:253001 -k1,10922:23766730,9932994:0 -k1,10922:24671159,9932994:253001 -(1,10922:24671159,9932994:0,452978,115847 -r1,10978:27491408,9932994:2820249,568825,115847 -k1,10922:24671159,9932994:-2820249 -) -(1,10922:24671159,9932994:2820249,452978,115847 -k1,10922:24671159,9932994:3277 -h1,10922:27488131,9932994:0,411205,112570 -) -k1,10922:27744410,9932994:253002 -k1,10922:28528908,9932994:253001 -k1,10922:29800994,9932994:253001 -k1,10922:31734338,9932994:253001 -k1,10924:32583029,9932994:0 -) -(1,10924:6797234,10774482:25785795,513147,126483 -k1,10922:9089665,10774482:149404 -k1,10922:10000597,10774482:149404 -k1,10922:11169086,10774482:149404 -k1,10922:14013986,10774482:149404 -k1,10922:15436755,10774482:149404 -k1,10922:16213994,10774482:149404 -k1,10922:19168338,10774482:149403 -k1,10922:19783703,10774482:149404 -k1,10922:22628603,10774482:149404 -(1,10922:22628603,10774482:0,452978,115847 -r1,10978:25448852,10774482:2820249,568825,115847 -k1,10922:22628603,10774482:-2820249 -) -(1,10922:22628603,10774482:2820249,452978,115847 -k1,10922:22628603,10774482:3277 -h1,10922:25445575,10774482:0,411205,112570 -) -k1,10922:25598256,10774482:149404 -k1,10922:26279157,10774482:149404 -k1,10922:27494832,10774482:149404 -k1,10922:30541583,10774482:149404 -k1,10923:32583029,10774482:0 -) -(1,10924:6797234,11615970:25785795,513147,126483 -k1,10923:8016578,11615970:200259 -k1,10923:9897180,11615970:200259 -k1,10923:12876167,11615970:200260 -k1,10923:13837954,11615970:200259 -k1,10923:15057298,11615970:200259 -k1,10923:17953053,11615970:200259 -k1,10923:19253007,11615970:200260 -k1,10923:19984763,11615970:200259 -k1,10923:21469528,11615970:200259 -k1,10923:24448514,11615970:200259 -k1,10923:25410301,11615970:200259 -k1,10923:26629646,11615970:200260 -k1,10923:27978096,11615970:200259 -k1,10923:31364715,11615970:200259 -k1,10924:32583029,11615970:0 -) -(1,10924:6797234,12457458:25785795,513147,126483 -g1,10923:8734477,12457458 -g1,10923:10943695,12457458 -g1,10923:12162009,12457458 -g1,10923:13938034,12457458 -g1,10923:14796555,12457458 -g1,10923:16014869,12457458 -k1,10924:32583029,12457458:13698994 -g1,10924:32583029,12457458 -) -v1,10927:6797234,13647924:0,393216,0 -(1,10964:6797234,26483807:25785795,13229099,196608 -g1,10964:6797234,26483807 -g1,10964:6797234,26483807 -g1,10964:6600626,26483807 -(1,10964:6600626,26483807:0,13229099,196608 -r1,10978:32779637,26483807:26179011,13425707,196608 -k1,10964:6600625,26483807:-26179012 -) -(1,10964:6600626,26483807:26179011,13229099,196608 -[1,10964:6797234,26483807:25785795,13032491,0 -(1,10929:6797234,13861834:25785795,410518,101187 -(1,10928:6797234,13861834:0,0,0 -g1,10928:6797234,13861834 -g1,10928:6797234,13861834 -g1,10928:6469554,13861834 -(1,10928:6469554,13861834:0,0,0 -) -g1,10928:6797234,13861834 -) -g1,10929:9958691,13861834 -g1,10929:10907129,13861834 -k1,10929:10907129,13861834:0 -h1,10929:17546188,13861834:0,0,0 -k1,10929:32583029,13861834:15036841 -g1,10929:32583029,13861834 -) -(1,10930:6797234,14528012:25785795,404226,101187 -h1,10930:6797234,14528012:0,0,0 -k1,10930:6797234,14528012:0 -h1,10930:12171711,14528012:0,0,0 -k1,10930:32583029,14528012:20411318 -g1,10930:32583029,14528012 -) -(1,10934:6797234,15194190:25785795,404226,76021 -(1,10932:6797234,15194190:0,0,0 -g1,10932:6797234,15194190 -g1,10932:6797234,15194190 -g1,10932:6469554,15194190 -(1,10932:6469554,15194190:0,0,0 -) -g1,10932:6797234,15194190 -) -g1,10934:7745671,15194190 -g1,10934:9010254,15194190 -h1,10934:10907128,15194190:0,0,0 -k1,10934:32583028,15194190:21675900 -g1,10934:32583028,15194190 -) -(1,10936:6797234,16515728:25785795,410518,101187 -(1,10935:6797234,16515728:0,0,0 -g1,10935:6797234,16515728 -g1,10935:6797234,16515728 -g1,10935:6469554,16515728 -(1,10935:6469554,16515728:0,0,0 -) -g1,10935:6797234,16515728 -) -g1,10936:9958691,16515728 -g1,10936:10907129,16515728 -g1,10936:17862334,16515728 -k1,10936:17862334,16515728:0 -h1,10936:21023791,16515728:0,0,0 -k1,10936:32583029,16515728:11559238 -g1,10936:32583029,16515728 -) -(1,10937:6797234,17181906:25785795,404226,101187 -h1,10937:6797234,17181906:0,0,0 -k1,10937:6797234,17181906:0 -h1,10937:12171711,17181906:0,0,0 -k1,10937:32583029,17181906:20411318 -g1,10937:32583029,17181906 -) -(1,10942:6797234,17848084:25785795,404226,76021 -(1,10939:6797234,17848084:0,0,0 -g1,10939:6797234,17848084 -g1,10939:6797234,17848084 -g1,10939:6469554,17848084 -(1,10939:6469554,17848084:0,0,0 -) -g1,10939:6797234,17848084 -) -g1,10942:7745671,17848084 -g1,10942:9010254,17848084 -h1,10942:10907128,17848084:0,0,0 -k1,10942:32583028,17848084:21675900 -g1,10942:32583028,17848084 -) -(1,10942:6797234,18514262:25785795,404226,76021 -h1,10942:6797234,18514262:0,0,0 -g1,10942:7745671,18514262 -g1,10942:9010254,18514262 -h1,10942:10907128,18514262:0,0,0 -k1,10942:32583028,18514262:21675900 -g1,10942:32583028,18514262 -) -(1,10944:6797234,19835800:25785795,410518,101187 -(1,10943:6797234,19835800:0,0,0 -g1,10943:6797234,19835800 -g1,10943:6797234,19835800 -g1,10943:6469554,19835800 -(1,10943:6469554,19835800:0,0,0 -) -g1,10943:6797234,19835800 -) -g1,10944:9958691,19835800 -g1,10944:10907129,19835800 -g1,10944:18178480,19835800 -k1,10944:18178480,19835800:0 -h1,10944:21023791,19835800:0,0,0 -k1,10944:32583029,19835800:11559238 -g1,10944:32583029,19835800 -) -(1,10945:6797234,20501978:25785795,404226,101187 -h1,10945:6797234,20501978:0,0,0 -k1,10945:6797234,20501978:0 -h1,10945:12171711,20501978:0,0,0 -k1,10945:32583029,20501978:20411318 -g1,10945:32583029,20501978 -) -(1,10949:6797234,21168156:25785795,404226,76021 -(1,10947:6797234,21168156:0,0,0 -g1,10947:6797234,21168156 -g1,10947:6797234,21168156 -g1,10947:6469554,21168156 -(1,10947:6469554,21168156:0,0,0 -) -g1,10947:6797234,21168156 -) -g1,10949:7745671,21168156 -g1,10949:9010254,21168156 -h1,10949:10907128,21168156:0,0,0 -k1,10949:32583028,21168156:21675900 -g1,10949:32583028,21168156 -) -(1,10951:6797234,22489694:25785795,410518,101187 -(1,10950:6797234,22489694:0,0,0 -g1,10950:6797234,22489694 -g1,10950:6797234,22489694 -g1,10950:6469554,22489694 -(1,10950:6469554,22489694:0,0,0 -) -g1,10950:6797234,22489694 -) -g1,10951:9958691,22489694 -g1,10951:10907129,22489694 -g1,10951:17862334,22489694 -k1,10951:17862334,22489694:0 -h1,10951:20707645,22489694:0,0,0 -k1,10951:32583029,22489694:11875384 -g1,10951:32583029,22489694 -) -(1,10952:6797234,23155872:25785795,404226,101187 -h1,10952:6797234,23155872:0,0,0 -k1,10952:6797234,23155872:0 -h1,10952:12171711,23155872:0,0,0 -k1,10952:32583029,23155872:20411318 -g1,10952:32583029,23155872 -) -(1,10956:6797234,23822050:25785795,379060,7863 -(1,10954:6797234,23822050:0,0,0 -g1,10954:6797234,23822050 -g1,10954:6797234,23822050 -g1,10954:6469554,23822050 -(1,10954:6469554,23822050:0,0,0 -) -g1,10954:6797234,23822050 -) -g1,10956:7745671,23822050 -h1,10956:9010254,23822050:0,0,0 -k1,10956:32583030,23822050:23572776 -g1,10956:32583030,23822050 -) -(1,10958:6797234,25143588:25785795,410518,101187 -(1,10957:6797234,25143588:0,0,0 -g1,10957:6797234,25143588 -g1,10957:6797234,25143588 -g1,10957:6469554,25143588 -(1,10957:6469554,25143588:0,0,0 -) -g1,10957:6797234,25143588 -) -g1,10958:9958691,25143588 -g1,10958:10907129,25143588 -k1,10958:10907129,25143588:0 -h1,10958:15333169,25143588:0,0,0 -k1,10958:32583029,25143588:17249860 -g1,10958:32583029,25143588 -) -(1,10959:6797234,25809766:25785795,404226,101187 -h1,10959:6797234,25809766:0,0,0 -k1,10959:6797234,25809766:0 -h1,10959:12171711,25809766:0,0,0 -k1,10959:32583029,25809766:20411318 -g1,10959:32583029,25809766 -) -(1,10963:6797234,26475944:25785795,379060,7863 -(1,10961:6797234,26475944:0,0,0 -g1,10961:6797234,26475944 -g1,10961:6797234,26475944 -g1,10961:6469554,26475944 -(1,10961:6469554,26475944:0,0,0 -) -g1,10961:6797234,26475944 -) -g1,10963:7745671,26475944 -h1,10963:9010254,26475944:0,0,0 -k1,10963:32583030,26475944:23572776 -g1,10963:32583030,26475944 -) -] -) -g1,10964:32583029,26483807 -g1,10964:6797234,26483807 -g1,10964:6797234,26483807 -g1,10964:32583029,26483807 -g1,10964:32583029,26483807 -) -h1,10964:6797234,26680415:0,0,0 -] -g1,10966:32583029,27204703 -) -h1,10966:6630773,27204703:0,0,0 -v1,10969:6630773,28532308:0,393216,0 -(1,10970:6630773,31615793:25952256,3476701,0 -g1,10970:6630773,31615793 -g1,10970:6303093,31615793 -r1,10978:6401397,31615793:98304,3476701,0 -g1,10970:6600626,31615793 -g1,10970:6797234,31615793 -[1,10970:6797234,31615793:25785795,3476701,0 -(1,10970:6797234,28964846:25785795,825754,196608 -(1,10969:6797234,28964846:0,825754,196608 -r1,10978:8834093,28964846:2036859,1022362,196608 -k1,10969:6797234,28964846:-2036859 -) -(1,10969:6797234,28964846:2036859,825754,196608 -) -k1,10969:9115588,28964846:281495 -k1,10969:10433517,28964846:327680 -k1,10969:12084058,28964846:281494 -k1,10969:13384638,28964846:281495 -k1,10969:16425853,28964846:281494 -k1,10969:17366640,28964846:281495 -k1,10969:20673932,28964846:281495 -(1,10969:20673932,28964846:0,452978,115847 -r1,10978:24549316,28964846:3875384,568825,115847 -k1,10969:20673932,28964846:-3875384 -) -(1,10969:20673932,28964846:3875384,452978,115847 -k1,10969:20673932,28964846:3277 -h1,10969:24546039,28964846:0,411205,112570 -) -k1,10969:24830810,28964846:281494 -k1,10969:26303750,28964846:281495 -(1,10969:26303750,28964846:0,452978,115847 -r1,10978:30179134,28964846:3875384,568825,115847 -k1,10969:26303750,28964846:-3875384 -) -(1,10969:26303750,28964846:3875384,452978,115847 -k1,10969:26303750,28964846:3277 -h1,10969:30175857,28964846:0,411205,112570 -) -k1,10969:30634298,28964846:281494 -k1,10969:31601955,28964846:281495 -k1,10970:32583029,28964846:0 -) -(1,10970:6797234,29806334:25785795,513147,126483 -k1,10969:8591435,29806334:180705 -k1,10969:10801134,29806334:180704 -k1,10969:12448535,29806334:180705 -k1,10969:13242001,29806334:180704 -k1,10969:14441791,29806334:180705 -k1,10969:17781987,29806334:180705 -k1,10969:20537601,29806334:180704 -k1,10969:21909751,29806334:180705 -k1,10969:22706493,29806334:180704 -k1,10969:23243058,29806334:180705 -k1,10969:25428509,29806334:180705 -k1,10969:26805900,29806334:180704 -k1,10969:29746326,29806334:180705 -k1,10969:30586322,29806334:180704 -k1,10969:31923737,29806334:180705 -k1,10969:32583029,29806334:0 -) -(1,10970:6797234,30647822:25785795,513147,126483 -k1,10969:8692232,30647822:198271 -k1,10969:11916301,30647822:198272 -k1,10969:13247034,30647822:198271 -k1,10969:14193072,30647822:198272 -k1,10969:17153686,30647822:198271 -k1,10969:19049996,30647822:198272 -k1,10969:20267352,30647822:198271 -k1,10969:22296700,30647822:198272 -k1,10969:23026468,30647822:198271 -k1,10969:25754430,30647822:198272 -k1,10969:27395148,30647822:198271 -k1,10969:28206182,30647822:198272 -k1,10969:29423538,30647822:198271 -k1,10969:32583029,30647822:0 -) -(1,10970:6797234,31489310:25785795,505283,126483 -g1,10969:9571373,31489310 -g1,10969:12104339,31489310 -k1,10970:32583029,31489310:19008062 -g1,10970:32583029,31489310 -) -] -g1,10970:32583029,31615793 -) -h1,10970:6630773,31615793:0,0,0 -(1,10973:6630773,32943399:25952256,505283,134348 -h1,10972:6630773,32943399:983040,0,0 -k1,10972:11050652,32943399:316670 -k1,10972:12842537,32943399:316670 -k1,10972:14667846,32943399:316670 -k1,10972:16314897,32943399:316670 -k1,10972:18631726,32943399:316670 -k1,10972:20211929,32943399:316669 -k1,10972:22596915,32943399:316670 -k1,10972:25263706,32943399:316670 -k1,10972:26341904,32943399:316670 -k1,10972:28937261,32943399:316670 -k1,10972:32583029,32943399:0 -) -(1,10973:6630773,33784887:25952256,513147,126483 -k1,10972:8844404,33784887:203642 -k1,10972:10067131,33784887:203642 -k1,10972:11847569,33784887:203642 -k1,10972:12710504,33784887:203643 -k1,10972:13270006,33784887:203642 -k1,10972:16169144,33784887:203642 -k1,10972:17364346,33784887:203642 -k1,10972:19610745,33784887:203642 -k1,10972:21189988,33784887:203642 -k1,10972:23403619,33784887:203642 -k1,10972:24626346,33784887:203642 -k1,10972:26406785,33784887:203643 -k1,10972:27269719,33784887:203642 -k1,10972:28492446,33784887:203642 -k1,10972:31391584,33784887:203642 -k1,10972:32583029,33784887:0 -) -(1,10973:6630773,34626375:25952256,513147,126483 -k1,10972:10000231,34626375:228317 -k1,10972:11926586,34626375:228317 -k1,10972:13173988,34626375:228317 -k1,10972:16097802,34626375:228318 -k1,10972:18667065,34626375:228317 -k1,10972:20463003,34626375:228317 -k1,10972:21710405,34626375:228317 -k1,10972:23212087,34626375:228317 -k1,10972:24068239,34626375:228317 -k1,10972:26575244,34626375:228318 -k1,10972:28069717,34626375:228317 -k1,10972:31323831,34626375:228317 -k1,10972:32168186,34626375:228317 -k1,10973:32583029,34626375:0 -) -(1,10973:6630773,35467863:25952256,513147,134348 -k1,10972:7677442,35467863:231401 -k1,10972:8975115,35467863:231402 -k1,10972:10985818,35467863:231401 -k1,10972:12725858,35467863:231401 -k1,10972:17014594,35467863:231402 -k1,10972:19804521,35467863:231401 -k1,10972:21335502,35467863:231402 -k1,10972:23841658,35467863:231401 -k1,10972:25630850,35467863:231401 -k1,10972:28084578,35467863:231402 -k1,10972:30024503,35467863:231401 -k1,10972:32583029,35467863:0 -) -(1,10973:6630773,36309351:25952256,513147,134348 -k1,10972:10302886,36309351:269484 -k1,10972:11763815,36309351:269484 -k1,10972:14043944,36309351:269484 -k1,10972:14669287,36309351:269483 -k1,10972:16619114,36309351:269484 -k1,10972:17574760,36309351:269484 -k1,10972:18863329,36309351:269484 -k1,10972:20975685,36309351:269484 -k1,10972:21904461,36309351:269484 -k1,10972:23193030,36309351:269484 -k1,10972:24735879,36309351:269484 -k1,10972:26386206,36309351:269483 -k1,10972:28336033,36309351:269484 -k1,10972:29709799,36309351:269484 -k1,10972:30727049,36309351:269484 -k1,10972:32583029,36309351:0 -) -(1,10973:6630773,37150839:25952256,513147,134348 -g1,10972:9180123,37150839 -g1,10972:10062237,37150839 -g1,10972:13036260,37150839 -g1,10972:13921651,37150839 -g1,10972:14989232,37150839 -g1,10972:16663676,37150839 -g1,10972:18302731,37150839 -g1,10972:20199998,37150839 -g1,10972:22134620,37150839 -g1,10972:25359646,37150839 -k1,10973:32583029,37150839:5016130 -g1,10973:32583029,37150839 -) -v1,10975:6630773,38478444:0,393216,0 -(1,10978:6630773,45706769:25952256,7621541,0 -g1,10978:6630773,45706769 -g1,10978:6303093,45706769 -r1,10978:6401397,45706769:98304,7621541,0 -g1,10978:6600626,45706769 -g1,10978:6797234,45706769 -[1,10978:6797234,45706769:25785795,7621541,0 -(1,10976:6797234,38840517:25785795,755289,196608 -(1,10975:6797234,38840517:0,755289,196608 -r1,10978:8134168,38840517:1336934,951897,196608 -k1,10975:6797234,38840517:-1336934 -) -(1,10975:6797234,38840517:1336934,755289,196608 -) -k1,10975:8350001,38840517:215833 -k1,10975:8677681,38840517:327680 -k1,10975:11387815,38840517:215834 -k1,10975:12219686,38840517:215833 -k1,10975:12850346,38840517:215817 -k1,10975:13597676,38840517:215833 -k1,10975:18015023,38840517:215834 -k1,10975:19966249,38840517:215833 -k1,10975:24494351,38840517:215833 -k1,10975:25901630,38840517:215834 -k1,10975:27887590,38840517:215833 -k1,10975:30309365,38840517:215834 -k1,10975:31478747,38840517:215833 -k1,10975:32583029,38840517:0 -) -(1,10976:6797234,39682005:25785795,513147,134348 -k1,10975:8673649,39682005:196072 -k1,10975:9529013,39682005:196072 -k1,10975:14112719,39682005:196071 -k1,10975:14994953,39682005:196072 -k1,10975:17309149,39682005:196072 -k1,10975:17861081,39682005:196072 -k1,10975:21107854,39682005:196072 -k1,10975:22697877,39682005:196072 -k1,10975:26608529,39682005:196071 -k1,10975:29694083,39682005:196072 -k1,10975:31086842,39682005:196072 -k1,10975:32583029,39682005:0 -) -(1,10976:6797234,40523493:25785795,513147,134348 -k1,10975:9042598,40523493:235375 -k1,10975:9633833,40523493:235375 -k1,10975:12564704,40523493:235375 -k1,10975:14248426,40523493:235376 -k1,10975:15099839,40523493:235375 -k1,10975:15793311,40523493:235375 -k1,10975:17359067,40523493:235375 -k1,10975:21825446,40523493:235375 -k1,10975:22676859,40523493:235375 -k1,10975:25666713,40523493:235376 -k1,10975:27469709,40523493:235375 -k1,10975:28724169,40523493:235375 -k1,10975:31049487,40523493:235375 -k1,10976:32583029,40523493:0 -) -(1,10976:6797234,41364981:25785795,505283,134348 -k1,10975:9718375,41364981:184358 -k1,10975:10518771,41364981:184358 -k1,10975:13167282,41364981:184357 -k1,10975:14003068,41364981:184358 -k1,10975:18337166,41364981:184358 -k1,10975:19593693,41364981:184358 -k1,10975:20797135,41364981:184357 -k1,10975:22992138,41364981:184358 -k1,10975:25214666,41364981:184358 -k1,10975:26015062,41364981:184358 -k1,10975:28489247,41364981:184357 -k1,10975:29289643,41364981:184358 -k1,10975:30493086,41364981:184358 -k1,10975:32583029,41364981:0 -) -(1,10976:6797234,42206469:25785795,513147,126483 -k1,10975:11136111,42206469:281543 -k1,10975:12521935,42206469:281542 -k1,10975:13551244,42206469:281543 -k1,10975:16861205,42206469:281542 -k1,10975:18523592,42206469:281543 -k1,10975:21433783,42206469:281542 -k1,10975:23282947,42206469:281543 -k1,10975:27857753,42206469:281542 -k1,10975:29438875,42206469:281543 -k1,10975:31821501,42206469:281542 -k1,10975:32583029,42206469:0 -) -(1,10976:6797234,43047957:25785795,513147,134348 -k1,10975:9424990,43047957:269115 -k1,10975:12177919,43047957:269114 -k1,10975:13098462,43047957:269115 -k1,10975:16369781,43047957:269115 -k1,10975:18598421,43047957:269114 -k1,10975:22279996,43047957:269115 -k1,10975:23165148,43047957:269114 -k1,10975:24453348,43047957:269115 -k1,10975:26812406,43047957:269115 -k1,10975:31312524,43047957:269114 -k1,10975:32051532,43047957:269115 -k1,10975:32583029,43047957:0 -) -(1,10976:6797234,43889445:25785795,513147,126483 -k1,10975:9643441,43889445:216247 -k1,10975:10511116,43889445:216247 -k1,10975:13372395,43889445:216246 -k1,10975:14791883,43889445:216247 -k1,10975:18317043,43889445:216247 -k1,10975:19927241,43889445:216247 -k1,10975:22890102,43889445:216247 -(1,10975:22890102,43889445:0,414482,115847 -r1,10978:23951791,43889445:1061689,530329,115847 -k1,10975:22890102,43889445:-1061689 -) -(1,10975:22890102,43889445:1061689,414482,115847 -k1,10975:22890102,43889445:3277 -h1,10975:23948514,43889445:0,411205,112570 -) -k1,10975:24168038,43889445:216247 -k1,10975:25067169,43889445:216246 -k1,10975:26677367,43889445:216247 -k1,10975:29589110,43889445:216247 -(1,10975:29589110,43889445:0,452978,122846 -r1,10978:32409359,43889445:2820249,575824,122846 -k1,10975:29589110,43889445:-2820249 -) -(1,10975:29589110,43889445:2820249,452978,122846 -k1,10975:29589110,43889445:3277 -h1,10975:32406082,43889445:0,411205,112570 -) -k1,10975:32583029,43889445:0 -) -(1,10976:6797234,44730933:25785795,513147,126483 -k1,10975:8200810,44730933:200335 -k1,10975:10581528,44730933:200335 -k1,10975:11529630,44730933:200336 -k1,10975:13105566,44730933:200335 -k1,10975:14819127,44730933:200335 -k1,10975:15705624,44730933:200335 -k1,10975:16261819,44730933:200335 -k1,10975:17610346,44730933:200336 -k1,10975:20555329,44730933:200335 -k1,10975:21441826,44730933:200335 -k1,10975:22100258,44730933:200335 -k1,10975:24346627,44730933:200335 -k1,10975:25566047,44730933:200335 -k1,10975:27262570,44730933:200336 -k1,10975:29246140,44730933:200335 -k1,10975:31096672,44730933:200335 -k1,10976:32583029,44730933:0 -) -(1,10976:6797234,45572421:25785795,505283,134348 -g1,10975:8206913,45572421 -g1,10975:9057570,45572421 -g1,10975:10669100,45572421 -g1,10975:12059774,45572421 -k1,10976:32583029,45572421:18392024 -g1,10976:32583029,45572421 -) -] -g1,10978:32583029,45706769 -) -] -(1,10978:32583029,45706769:0,0,0 -g1,10978:32583029,45706769 -) -) -] -(1,10978:6630773,47279633:25952256,0,0 -h1,10978:6630773,47279633:25952256,0,0 -) -] -(1,10978:4262630,4025873:0,0,0 -[1,10978:-473656,4025873:0,0,0 -(1,10978:-473656,-710413:0,0,0 -(1,10978:-473656,-710413:0,0,0 -g1,10978:-473656,-710413 -) -g1,10978:-473656,-710413 -) -] -) -] -!25560 -}185 -Input:1648:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1649:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1650:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1651:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1652:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1653:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1654:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1655:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1656:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1657:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1658:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1659:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1660:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1234 -{186 -[1,11066:4262630,47279633:28320399,43253760,0 -(1,11066:4262630,4025873:0,0,0 -[1,11066:-473656,4025873:0,0,0 -(1,11066:-473656,-710413:0,0,0 -(1,11066:-473656,-644877:0,0,0 -k1,11066:-473656,-644877:-65536 +g1,8606:36675916,2439708 +(1,8606:36675916,2439708:1179648,16384,0 +r1,10278:37855564,2439708:1179648,16384,0 ) -(1,11066:-473656,4736287:0,0,0 -k1,11066:-473656,4736287:5209943 ) -g1,11066:-473656,-710413 +k1,10278:3078556,2439708:-34777008 ) ] +[1,10278:3078558,4812305:0,0,0 +(1,10278:3078558,49800853:0,16384,2228224 +k1,10278:1358238,49800853:-1720320 +(1,8606:1358238,49800853:1720320,16384,2228224 +(1,8606:1358238,49800853:1179648,16384,0 +r1,10278:2537886,49800853:1179648,16384,0 ) -[1,11066:6630773,47279633:25952256,43253760,0 -[1,11066:6630773,4812305:25952256,786432,0 -(1,11066:6630773,4812305:25952256,513147,134348 -(1,11066:6630773,4812305:25952256,513147,134348 -g1,11066:3078558,4812305 -[1,11066:3078558,4812305:0,0,0 -(1,11066:3078558,2439708:0,1703936,0 -k1,11066:1358238,2439708:-1720320 -(1,10825:1358238,2439708:1720320,1703936,0 -(1,10825:1358238,2439708:1179648,16384,0 -r1,11066:2537886,2439708:1179648,16384,0 +g1,8606:3062174,49800853 +(1,8606:3062174,52029077:16384,1703936,0 +[1,8606:3062174,52029077:25952256,1703936,0 +(1,8606:3062174,51504789:25952256,1179648,0 +(1,8606:3062174,51504789:16384,1179648,0 +r1,10278:3078558,51504789:16384,1179648,0 ) -g1,10825:3062174,2439708 -(1,10825:3062174,2439708:16384,1703936,0 -[1,10825:3062174,2439708:25952256,1703936,0 -(1,10825:3062174,1915420:25952256,1179648,0 -(1,10825:3062174,1915420:16384,1179648,0 -r1,11066:3078558,1915420:16384,1179648,0 -) -k1,10825:29014430,1915420:25935872 -g1,10825:29014430,1915420 +k1,8606:29014430,51504789:25935872 +g1,8606:29014430,51504789 ) ] ) ) ) ] -[1,11066:3078558,4812305:0,0,0 -(1,11066:3078558,2439708:0,1703936,0 -g1,11066:29030814,2439708 -g1,11066:36135244,2439708 -(1,10825:36135244,2439708:1720320,1703936,0 -(1,10825:36135244,2439708:16384,1703936,0 -[1,10825:36135244,2439708:25952256,1703936,0 -(1,10825:36135244,1915420:25952256,1179648,0 -(1,10825:36135244,1915420:16384,1179648,0 -r1,11066:36151628,1915420:16384,1179648,0 -) -k1,10825:62087500,1915420:25935872 -g1,10825:62087500,1915420 -) -] +[1,10278:3078558,4812305:0,0,0 +(1,10278:3078558,49800853:0,16384,2228224 +g1,10278:29030814,49800853 +g1,10278:36135244,49800853 +(1,8606:36135244,49800853:1720320,16384,2228224 +(1,8606:36135244,52029077:16384,1703936,0 +[1,8606:36135244,52029077:25952256,1703936,0 +(1,8606:36135244,51504789:25952256,1179648,0 +(1,8606:36135244,51504789:16384,1179648,0 +r1,10278:36151628,51504789:16384,1179648,0 ) -g1,10825:36675916,2439708 -(1,10825:36675916,2439708:1179648,16384,0 -r1,11066:37855564,2439708:1179648,16384,0 +k1,8606:62087500,51504789:25935872 +g1,8606:62087500,51504789 +) +] +) +g1,8606:36675916,49800853 +(1,8606:36675916,49800853:1179648,16384,0 +r1,10278:37855564,49800853:1179648,16384,0 +) +) +k1,10278:3078556,49800853:-34777008 +) +] +g1,10278:6630773,4812305 +k1,10278:21643106,4812305:13816956 +g1,10278:23265777,4812305 +g1,10278:24088253,4812305 +g1,10278:28572226,4812305 +g1,10278:29981905,4812305 +) +) +] +[1,10278:6630773,45706769:25952256,40108032,0 +(1,10278:6630773,45706769:25952256,40108032,0 +(1,10278:6630773,45706769:0,0,0 +g1,10278:6630773,45706769 +) +[1,10278:6630773,45706769:25952256,40108032,0 +v1,10251:6630773,6254097:0,393216,0 +(1,10251:6630773,34908759:25952256,29047878,0 +g1,10251:6630773,34908759 +g1,10251:6237557,34908759 +r1,10278:6368629,34908759:131072,29047878,0 +g1,10251:6567858,34908759 +g1,10251:6764466,34908759 +[1,10251:6764466,34908759:25818563,29047878,0 +v1,10175:6764466,6254097:0,393216,0 +(1,10189:6764466,13337083:25818563,7476202,196608 +g1,10189:6764466,13337083 +g1,10189:6764466,13337083 +g1,10189:6567858,13337083 +(1,10189:6567858,13337083:0,7476202,196608 +r1,10278:32779637,13337083:26211779,7672810,196608 +k1,10189:6567857,13337083:-26211780 +) +(1,10189:6567858,13337083:26211779,7476202,196608 +[1,10189:6764466,13337083:25818563,7279594,0 +(1,10177:6764466,6481928:25818563,424439,106246 +(1,10176:6764466,6481928:0,0,0 +g1,10176:6764466,6481928 +g1,10176:6764466,6481928 +g1,10176:6436786,6481928 +(1,10176:6436786,6481928:0,0,0 +) +g1,10176:6764466,6481928 +) +k1,10177:6764466,6481928:0 +h1,10177:10747913,6481928:0,0,0 +k1,10177:32583029,6481928:21835116 +g1,10177:32583029,6481928 +) +(1,10178:6764466,7166783:25818563,424439,79822 +h1,10178:6764466,7166783:0,0,0 +h1,10178:7096420,7166783:0,0,0 +k1,10178:32583028,7166783:25486608 +g1,10178:32583028,7166783 +) +(1,10179:6764466,7851638:25818563,424439,106246 +h1,10179:6764466,7851638:0,0,0 +g1,10179:7428374,7851638 +g1,10179:8424236,7851638 +g1,10179:11743776,7851638 +g1,10179:12407684,7851638 +g1,10179:13403546,7851638 +g1,10179:14731362,7851638 +g1,10179:19046763,7851638 +k1,10179:19046763,7851638:43490 +h1,10179:21081977,7851638:0,0,0 +k1,10179:32583029,7851638:11501052 +g1,10179:32583029,7851638 +) +(1,10180:6764466,8536493:25818563,424439,0 +h1,10180:6764466,8536493:0,0,0 +g1,10180:7428374,8536493 +g1,10180:8424236,8536493 +h1,10180:8756190,8536493:0,0,0 +k1,10180:32583030,8536493:23826840 +g1,10180:32583030,8536493 +) +(1,10181:6764466,9221348:25818563,424439,112852 +h1,10181:6764466,9221348:0,0,0 +g1,10181:8756190,9221348 +g1,10181:9752052,9221348 +g1,10181:10415960,9221348 +g1,10181:14067454,9221348 +h1,10181:14399408,9221348:0,0,0 +k1,10181:32583028,9221348:18183620 +g1,10181:32583028,9221348 +) +(1,10182:6764466,9906203:25818563,424439,79822 +h1,10182:6764466,9906203:0,0,0 +g1,10182:7096420,9906203 +g1,10182:7428374,9906203 +g1,10182:9088144,9906203 +g1,10182:10084006,9906203 +g1,10182:12407684,9906203 +g1,10182:13071592,9906203 +h1,10182:14399408,9906203:0,0,0 +k1,10182:32583028,9906203:18183620 +g1,10182:32583028,9906203 +) +(1,10183:6764466,10591058:25818563,424439,0 +h1,10183:6764466,10591058:0,0,0 +g1,10183:7096420,10591058 +g1,10183:7428374,10591058 +g1,10183:8092282,10591058 +g1,10183:9088144,10591058 +g1,10183:9752052,10591058 +g1,10183:10415960,10591058 +h1,10183:10747914,10591058:0,0,0 +k1,10183:32583030,10591058:21835116 +g1,10183:32583030,10591058 +) +(1,10184:6764466,11275913:25818563,424439,79822 +h1,10184:6764466,11275913:0,0,0 +h1,10184:7096420,11275913:0,0,0 +k1,10184:32583028,11275913:25486608 +g1,10184:32583028,11275913 +) +(1,10185:6764466,11960768:25818563,424439,79822 +h1,10185:6764466,11960768:0,0,0 +h1,10185:7096420,11960768:0,0,0 +k1,10185:32583028,11960768:25486608 +g1,10185:32583028,11960768 +) +(1,10186:6764466,12645623:25818563,424439,79822 +h1,10186:6764466,12645623:0,0,0 +h1,10186:7096420,12645623:0,0,0 +k1,10186:32583028,12645623:25486608 +g1,10186:32583028,12645623 +) +(1,10187:6764466,13330478:25818563,424439,6605 +h1,10187:6764466,13330478:0,0,0 +h1,10187:7096420,13330478:0,0,0 +k1,10187:32583028,13330478:25486608 +g1,10187:32583028,13330478 +) +] +) +g1,10189:32583029,13337083 +g1,10189:6764466,13337083 +g1,10189:6764466,13337083 +g1,10189:32583029,13337083 +g1,10189:32583029,13337083 +) +h1,10189:6764466,13533691:0,0,0 +v1,10193:6764466,14218546:0,393216,0 +(1,10203:6764466,18562112:25818563,4736782,196608 +g1,10203:6764466,18562112 +g1,10203:6764466,18562112 +g1,10203:6567858,18562112 +(1,10203:6567858,18562112:0,4736782,196608 +r1,10278:32779637,18562112:26211779,4933390,196608 +k1,10203:6567857,18562112:-26211780 +) +(1,10203:6567858,18562112:26211779,4736782,196608 +[1,10203:6764466,18562112:25818563,4540174,0 +(1,10195:6764466,14446377:25818563,424439,112852 +(1,10194:6764466,14446377:0,0,0 +g1,10194:6764466,14446377 +g1,10194:6764466,14446377 +g1,10194:6436786,14446377 +(1,10194:6436786,14446377:0,0,0 +) +g1,10194:6764466,14446377 +) +g1,10195:7428374,14446377 +g1,10195:8424236,14446377 +g1,10195:15395270,14446377 +g1,10195:16059178,14446377 +g1,10195:20374579,14446377 +k1,10195:20374579,14446377:43490 +h1,10195:22409793,14446377:0,0,0 +k1,10195:32583029,14446377:10173236 +g1,10195:32583029,14446377 +) +(1,10196:6764466,15131232:25818563,424439,0 +h1,10196:6764466,15131232:0,0,0 +g1,10196:7428374,15131232 +g1,10196:8424236,15131232 +h1,10196:8756190,15131232:0,0,0 +k1,10196:32583030,15131232:23826840 +g1,10196:32583030,15131232 +) +(1,10197:6764466,15816087:25818563,424439,112852 +h1,10197:6764466,15816087:0,0,0 +g1,10197:8756190,15816087 +g1,10197:9752052,15816087 +g1,10197:10415960,15816087 +g1,10197:14067454,15816087 +h1,10197:14399408,15816087:0,0,0 +k1,10197:32583028,15816087:18183620 +g1,10197:32583028,15816087 +) +(1,10198:6764466,16500942:25818563,424439,79822 +h1,10198:6764466,16500942:0,0,0 +g1,10198:7096420,16500942 +g1,10198:7428374,16500942 +g1,10198:9088144,16500942 +g1,10198:10084006,16500942 +g1,10198:12407684,16500942 +g1,10198:13071592,16500942 +h1,10198:14399408,16500942:0,0,0 +k1,10198:32583028,16500942:18183620 +g1,10198:32583028,16500942 +) +(1,10199:6764466,17185797:25818563,424439,0 +h1,10199:6764466,17185797:0,0,0 +g1,10199:7096420,17185797 +g1,10199:7428374,17185797 +g1,10199:8092282,17185797 +g1,10199:9088144,17185797 +g1,10199:9752052,17185797 +g1,10199:10415960,17185797 +h1,10199:10747914,17185797:0,0,0 +k1,10199:32583030,17185797:21835116 +g1,10199:32583030,17185797 +) +(1,10200:6764466,17870652:25818563,424439,79822 +h1,10200:6764466,17870652:0,0,0 +h1,10200:7096420,17870652:0,0,0 +k1,10200:32583028,17870652:25486608 +g1,10200:32583028,17870652 +) +(1,10201:6764466,18555507:25818563,424439,6605 +h1,10201:6764466,18555507:0,0,0 +h1,10201:7096420,18555507:0,0,0 +k1,10201:32583028,18555507:25486608 +g1,10201:32583028,18555507 +) +] +) +g1,10203:32583029,18562112 +g1,10203:6764466,18562112 +g1,10203:6764466,18562112 +g1,10203:32583029,18562112 +g1,10203:32583029,18562112 +) +h1,10203:6764466,18758720:0,0,0 +v1,10207:6764466,19443575:0,393216,0 +(1,10215:6764466,22417431:25818563,3367072,196608 +g1,10215:6764466,22417431 +g1,10215:6764466,22417431 +g1,10215:6567858,22417431 +(1,10215:6567858,22417431:0,3367072,196608 +r1,10278:32779637,22417431:26211779,3563680,196608 +k1,10215:6567857,22417431:-26211780 +) +(1,10215:6567858,22417431:26211779,3367072,196608 +[1,10215:6764466,22417431:25818563,3170464,0 +(1,10209:6764466,19671406:25818563,424439,106246 +(1,10208:6764466,19671406:0,0,0 +g1,10208:6764466,19671406 +g1,10208:6764466,19671406 +g1,10208:6436786,19671406 +(1,10208:6436786,19671406:0,0,0 +) +g1,10208:6764466,19671406 +) +g1,10209:7428374,19671406 +g1,10209:8424236,19671406 +g1,10209:11743776,19671406 +g1,10209:12407684,19671406 +g1,10209:13403546,19671406 +g1,10209:14731362,19671406 +g1,10209:19046763,19671406 +k1,10209:19046763,19671406:43490 +h1,10209:21081977,19671406:0,0,0 +k1,10209:32583029,19671406:11501052 +g1,10209:32583029,19671406 +) +(1,10210:6764466,20356261:25818563,431045,112852 +h1,10210:6764466,20356261:0,0,0 +g1,10210:8756190,20356261 +g1,10210:9752052,20356261 +g1,10210:14731361,20356261 +g1,10210:15395269,20356261 +g1,10210:16723085,20356261 +h1,10210:17055039,20356261:0,0,0 +k1,10210:32583029,20356261:15527990 +g1,10210:32583029,20356261 +) +(1,10211:6764466,21041116:25818563,424439,79822 +h1,10211:6764466,21041116:0,0,0 +g1,10211:7096420,21041116 +g1,10211:7428374,21041116 +g1,10211:9088144,21041116 +g1,10211:10084006,21041116 +g1,10211:12407684,21041116 +g1,10211:13071592,21041116 +h1,10211:14399408,21041116:0,0,0 +k1,10211:32583028,21041116:18183620 +g1,10211:32583028,21041116 +) +(1,10212:6764466,21725971:25818563,424439,79822 +h1,10212:6764466,21725971:0,0,0 +h1,10212:7096420,21725971:0,0,0 +k1,10212:32583028,21725971:25486608 +g1,10212:32583028,21725971 +) +(1,10213:6764466,22410826:25818563,424439,6605 +h1,10213:6764466,22410826:0,0,0 +h1,10213:7096420,22410826:0,0,0 +k1,10213:32583028,22410826:25486608 +g1,10213:32583028,22410826 +) +] +) +g1,10215:32583029,22417431 +g1,10215:6764466,22417431 +g1,10215:6764466,22417431 +g1,10215:32583029,22417431 +g1,10215:32583029,22417431 +) +h1,10215:6764466,22614039:0,0,0 +v1,10219:6764466,23298894:0,393216,0 +(1,10227:6764466,26272750:25818563,3367072,196608 +g1,10227:6764466,26272750 +g1,10227:6764466,26272750 +g1,10227:6567858,26272750 +(1,10227:6567858,26272750:0,3367072,196608 +r1,10278:32779637,26272750:26211779,3563680,196608 +k1,10227:6567857,26272750:-26211780 +) +(1,10227:6567858,26272750:26211779,3367072,196608 +[1,10227:6764466,26272750:25818563,3170464,0 +(1,10221:6764466,23526725:25818563,424439,112852 +(1,10220:6764466,23526725:0,0,0 +g1,10220:6764466,23526725 +g1,10220:6764466,23526725 +g1,10220:6436786,23526725 +(1,10220:6436786,23526725:0,0,0 +) +g1,10220:6764466,23526725 +) +g1,10221:7428374,23526725 +g1,10221:8424236,23526725 +g1,10221:15395270,23526725 +g1,10221:16059178,23526725 +g1,10221:20374579,23526725 +k1,10221:20374579,23526725:43490 +h1,10221:22409793,23526725:0,0,0 +k1,10221:32583029,23526725:10173236 +g1,10221:32583029,23526725 +) +(1,10222:6764466,24211580:25818563,431045,112852 +h1,10222:6764466,24211580:0,0,0 +g1,10222:8756190,24211580 +g1,10222:9752052,24211580 +g1,10222:14731361,24211580 +g1,10222:15395269,24211580 +g1,10222:16723085,24211580 +h1,10222:17055039,24211580:0,0,0 +k1,10222:32583029,24211580:15527990 +g1,10222:32583029,24211580 +) +(1,10223:6764466,24896435:25818563,424439,79822 +h1,10223:6764466,24896435:0,0,0 +g1,10223:7096420,24896435 +g1,10223:7428374,24896435 +g1,10223:9088144,24896435 +g1,10223:10084006,24896435 +g1,10223:12407684,24896435 +g1,10223:13071592,24896435 +h1,10223:14399408,24896435:0,0,0 +k1,10223:32583028,24896435:18183620 +g1,10223:32583028,24896435 +) +(1,10224:6764466,25581290:25818563,424439,79822 +h1,10224:6764466,25581290:0,0,0 +h1,10224:7096420,25581290:0,0,0 +k1,10224:32583028,25581290:25486608 +g1,10224:32583028,25581290 +) +(1,10225:6764466,26266145:25818563,424439,6605 +h1,10225:6764466,26266145:0,0,0 +h1,10225:7096420,26266145:0,0,0 +k1,10225:32583028,26266145:25486608 +g1,10225:32583028,26266145 +) +] +) +g1,10227:32583029,26272750 +g1,10227:6764466,26272750 +g1,10227:6764466,26272750 +g1,10227:32583029,26272750 +g1,10227:32583029,26272750 +) +h1,10227:6764466,26469358:0,0,0 +v1,10231:6764466,27154213:0,393216,0 +(1,10237:6764466,28758359:25818563,1997362,196608 +g1,10237:6764466,28758359 +g1,10237:6764466,28758359 +g1,10237:6567858,28758359 +(1,10237:6567858,28758359:0,1997362,196608 +r1,10278:32779637,28758359:26211779,2193970,196608 +k1,10237:6567857,28758359:-26211780 +) +(1,10237:6567858,28758359:26211779,1997362,196608 +[1,10237:6764466,28758359:25818563,1800754,0 +(1,10233:6764466,27382044:25818563,424439,112852 +(1,10232:6764466,27382044:0,0,0 +g1,10232:6764466,27382044 +g1,10232:6764466,27382044 +g1,10232:6436786,27382044 +(1,10232:6436786,27382044:0,0,0 +) +g1,10232:6764466,27382044 +) +g1,10233:7428374,27382044 +g1,10233:11079867,27382044 +g1,10233:13071591,27382044 +g1,10233:16723084,27382044 +k1,10233:16723084,27382044:0 +h1,10233:19710669,27382044:0,0,0 +k1,10233:32583029,27382044:12872360 +g1,10233:32583029,27382044 +) +(1,10234:6764466,28066899:25818563,424439,112852 +h1,10234:6764466,28066899:0,0,0 +g1,10234:7428374,28066899 +g1,10234:8424236,28066899 +g1,10234:13403546,28066899 +g1,10234:14067454,28066899 +k1,10234:14067454,28066899:0 +h1,10234:19378718,28066899:0,0,0 +k1,10234:32583029,28066899:13204311 +g1,10234:32583029,28066899 +) +(1,10235:6764466,28751754:25818563,424439,6605 +h1,10235:6764466,28751754:0,0,0 +h1,10235:7096420,28751754:0,0,0 +k1,10235:32583028,28751754:25486608 +g1,10235:32583028,28751754 +) +] +) +g1,10237:32583029,28758359 +g1,10237:6764466,28758359 +g1,10237:6764466,28758359 +g1,10237:32583029,28758359 +g1,10237:32583029,28758359 +) +h1,10237:6764466,28954967:0,0,0 +v1,10241:6764466,29639822:0,393216,0 +(1,10247:6764466,31243968:25818563,1997362,196608 +g1,10247:6764466,31243968 +g1,10247:6764466,31243968 +g1,10247:6567858,31243968 +(1,10247:6567858,31243968:0,1997362,196608 +r1,10278:32779637,31243968:26211779,2193970,196608 +k1,10247:6567857,31243968:-26211780 +) +(1,10247:6567858,31243968:26211779,1997362,196608 +[1,10247:6764466,31243968:25818563,1800754,0 +(1,10243:6764466,29867653:25818563,424439,6605 +(1,10242:6764466,29867653:0,0,0 +g1,10242:6764466,29867653 +g1,10242:6764466,29867653 +g1,10242:6436786,29867653 +(1,10242:6436786,29867653:0,0,0 +) +g1,10242:6764466,29867653 +) +g1,10243:7428374,29867653 +g1,10243:8424236,29867653 +g1,10243:10084006,29867653 +k1,10243:10084006,29867653:24773 +h1,10243:12100503,29867653:0,0,0 +k1,10243:32583029,29867653:20482526 +g1,10243:32583029,29867653 +) +(1,10244:6764466,30552508:25818563,431045,79822 +h1,10244:6764466,30552508:0,0,0 +g1,10244:7428374,30552508 +g1,10244:8424236,30552508 +k1,10244:8424236,30552508:0 +h1,10244:10747914,30552508:0,0,0 +k1,10244:32583030,30552508:21835116 +g1,10244:32583030,30552508 +) +(1,10245:6764466,31237363:25818563,424439,6605 +h1,10245:6764466,31237363:0,0,0 +h1,10245:7096420,31237363:0,0,0 +k1,10245:32583028,31237363:25486608 +g1,10245:32583028,31237363 +) +] +) +g1,10247:32583029,31243968 +g1,10247:6764466,31243968 +g1,10247:6764466,31243968 +g1,10247:32583029,31243968 +g1,10247:32583029,31243968 +) +h1,10247:6764466,31440576:0,0,0 +(1,10251:6764466,32305656:25818563,513147,115847 +h1,10250:6764466,32305656:983040,0,0 +k1,10250:11085981,32305656:239277 +k1,10250:12750666,32305656:239277 +k1,10250:14094225,32305656:239277 +k1,10250:15081268,32305656:239277 +k1,10250:18112379,32305656:239277 +k1,10250:19745607,32305656:239277 +(1,10250:19745607,32305656:0,452978,115847 +r1,10278:24324415,32305656:4578808,568825,115847 +k1,10250:19745607,32305656:-4578808 +) +(1,10250:19745607,32305656:4578808,452978,115847 +k1,10250:19745607,32305656:3277 +h1,10250:24321138,32305656:0,411205,112570 +) +k1,10250:24737362,32305656:239277 +k1,10250:26018661,32305656:239277 +k1,10250:26613798,32305656:239277 +k1,10250:28830952,32305656:239277 +k1,10250:29729521,32305656:239277 +k1,10250:31125508,32305656:239277 +k1,10251:32583029,32305656:0 +) +(1,10251:6764466,33170736:25818563,513147,134348 +k1,10250:8476048,33170736:234400 +k1,10250:10952436,33170736:234401 +k1,10250:14176588,33170736:234400 +k1,10250:18132122,33170736:234400 +k1,10250:19385608,33170736:234401 +k1,10250:22382351,33170736:234400 +k1,10250:25608470,33170736:234400 +k1,10250:26458909,33170736:234401 +k1,10250:27896550,33170736:234400 +k1,10250:29357129,33170736:234400 +k1,10250:30751517,33170736:234401 +k1,10250:31601955,33170736:234400 +k1,10250:32583029,33170736:0 +) +(1,10251:6764466,34035816:25818563,513147,126483 +k1,10250:9525771,34035816:198192 +k1,10250:12800222,34035816:198191 +k1,10250:14017499,34035816:198192 +k1,10250:16358063,34035816:198192 +k1,10250:19631859,34035816:198191 +k1,10250:21255459,34035816:198192 +k1,10250:22660824,34035816:198192 +k1,10250:24509212,34035816:198191 +k1,10250:26149851,34035816:198192 +k1,10250:27144961,34035816:198192 +k1,10250:29098862,34035816:198191 +k1,10250:31140582,34035816:198192 +k1,10250:32583029,34035816:0 +) +(1,10251:6764466,34900896:25818563,505283,7863 +g1,10250:7982780,34900896 +g1,10250:10567520,34900896 +k1,10251:32583029,34900896:20685128 +g1,10251:32583029,34900896 +) +] +g1,10251:32583029,34908759 +) +h1,10251:6630773,34908759:0,0,0 +(1,10254:6630773,37025577:25952256,564462,147783 +(1,10254:6630773,37025577:2450326,521208,12975 +g1,10254:6630773,37025577 +g1,10254:9081099,37025577 +) +g1,10254:12074981,37025577 +g1,10254:13044587,37025577 +k1,10254:32583030,37025577:17566792 +g1,10254:32583030,37025577 +) +(1,10258:6630773,38283873:25952256,513147,7863 +k1,10257:7729211,38283873:200595 +k1,10257:8948890,38283873:200594 +k1,10257:13788123,38283873:200595 +k1,10257:16276580,38283873:200595 +k1,10257:19993836,38283873:200594 +k1,10257:21634257,38283873:200595 +k1,10257:23690176,38283873:200595 +k1,10257:24995052,38283873:200594 +k1,10257:25943413,38283873:200595 +k1,10257:28435147,38283873:200595 +k1,10257:29589290,38283873:200594 +k1,10257:30922347,38283873:200595 +k1,10257:32583029,38283873:0 +) +(1,10258:6630773,39148953:25952256,513147,126483 +g1,10257:7600705,39148953 +g1,10257:10461351,39148953 +g1,10257:12054531,39148953 +g1,10257:13426199,39148953 +(1,10257:13426199,39148953:0,459977,115847 +r1,10278:14487888,39148953:1061689,575824,115847 +k1,10257:13426199,39148953:-1061689 +) +(1,10257:13426199,39148953:1061689,459977,115847 +k1,10257:13426199,39148953:3277 +h1,10257:14484611,39148953:0,411205,112570 +) +g1,10257:14687117,39148953 +g1,10257:16805240,39148953 +g1,10257:17958018,39148953 +g1,10257:19463380,39148953 +g1,10257:21591989,39148953 +g1,10257:22147078,39148953 +g1,10257:24433629,39148953 +g1,10257:25292150,39148953 +g1,10257:26880742,39148953 +g1,10257:27731399,39148953 +g1,10257:29527085,39148953 +k1,10258:32583029,39148953:1488323 +g1,10258:32583029,39148953 +) +v1,10260:6630773,39833808:0,393216,0 +(1,10278:6630773,45510161:25952256,6069569,196608 +g1,10278:6630773,45510161 +g1,10278:6630773,45510161 +g1,10278:6434165,45510161 +(1,10278:6434165,45510161:0,6069569,196608 +r1,10278:32779637,45510161:26345472,6266177,196608 +k1,10278:6434165,45510161:-26345472 +) +(1,10278:6434165,45510161:26345472,6069569,196608 +[1,10278:6630773,45510161:25952256,5872961,0 +(1,10262:6630773,40061639:25952256,424439,86428 +(1,10261:6630773,40061639:0,0,0 +g1,10261:6630773,40061639 +g1,10261:6630773,40061639 +g1,10261:6303093,40061639 +(1,10261:6303093,40061639:0,0,0 +) +g1,10261:6630773,40061639 +) +g1,10262:7294681,40061639 +g1,10262:8290543,40061639 +g1,10262:12605945,40061639 +h1,10262:13601807,40061639:0,0,0 +k1,10262:32583029,40061639:18981222 +g1,10262:32583029,40061639 +) +(1,10263:6630773,40746494:25952256,344616,0 +h1,10263:6630773,40746494:0,0,0 +h1,10263:6962727,40746494:0,0,0 +k1,10263:32583029,40746494:25620302 +g1,10263:32583029,40746494 +) +(1,10277:6630773,41314603:25952256,424439,86428 +(1,10265:6630773,41314603:0,0,0 +g1,10265:6630773,41314603 +g1,10265:6630773,41314603 +g1,10265:6303093,41314603 +(1,10265:6303093,41314603:0,0,0 +) +g1,10265:6630773,41314603 +) +g1,10277:7626635,41314603 +g1,10277:7958589,41314603 +g1,10277:8290543,41314603 +g1,10277:8622497,41314603 +g1,10277:8954451,41314603 +g1,10277:9286405,41314603 +g1,10277:9618359,41314603 +g1,10277:11278129,41314603 +g1,10277:12937899,41314603 +g1,10277:14597669,41314603 +g1,10277:16257439,41314603 +k1,10277:16257439,41314603:0 +h1,10277:17585255,41314603:0,0,0 +k1,10277:32583029,41314603:14997774 +g1,10277:32583029,41314603 +) +(1,10277:6630773,41999458:25952256,424439,86428 +h1,10277:6630773,41999458:0,0,0 +g1,10277:7626635,41999458 +g1,10277:7958589,41999458 +g1,10277:9618359,41999458 +g1,10277:9950313,41999458 +g1,10277:10282267,41999458 +g1,10277:10614221,41999458 +g1,10277:11278129,41999458 +g1,10277:11610083,41999458 +g1,10277:11942037,41999458 +g1,10277:12937899,41999458 +g1,10277:13269853,41999458 +g1,10277:13601807,41999458 +g1,10277:14597669,41999458 +g1,10277:14929623,41999458 +g1,10277:15261577,41999458 +g1,10277:16257439,41999458 +g1,10277:16589393,41999458 +g1,10277:16921347,41999458 +h1,10277:17585255,41999458:0,0,0 +k1,10277:32583029,41999458:14997774 +g1,10277:32583029,41999458 +) +(1,10277:6630773,42684313:25952256,424439,86428 +h1,10277:6630773,42684313:0,0,0 +g1,10277:7626635,42684313 +g1,10277:7958589,42684313 +g1,10277:9618359,42684313 +g1,10277:9950313,42684313 +g1,10277:10282267,42684313 +g1,10277:10614221,42684313 +g1,10277:11278129,42684313 +g1,10277:11610083,42684313 +g1,10277:11942037,42684313 +g1,10277:12937899,42684313 +g1,10277:13269853,42684313 +g1,10277:13601807,42684313 +g1,10277:14597669,42684313 +g1,10277:14929623,42684313 +g1,10277:15261577,42684313 +g1,10277:16257439,42684313 +g1,10277:16589393,42684313 +g1,10277:16921347,42684313 +h1,10277:17585255,42684313:0,0,0 +k1,10277:32583029,42684313:14997774 +g1,10277:32583029,42684313 +) +(1,10277:6630773,43369168:25952256,424439,86428 +h1,10277:6630773,43369168:0,0,0 +g1,10277:7626635,43369168 +g1,10277:7958589,43369168 +g1,10277:9618359,43369168 +g1,10277:9950313,43369168 +g1,10277:10282267,43369168 +g1,10277:10614221,43369168 +g1,10277:11278129,43369168 +g1,10277:11610083,43369168 +g1,10277:11942037,43369168 +g1,10277:12937899,43369168 +g1,10277:13269853,43369168 +g1,10277:13601807,43369168 +g1,10277:14597669,43369168 +g1,10277:14929623,43369168 +g1,10277:15261577,43369168 +g1,10277:16257439,43369168 +g1,10277:16589393,43369168 +g1,10277:16921347,43369168 +h1,10277:17585255,43369168:0,0,0 +k1,10277:32583029,43369168:14997774 +g1,10277:32583029,43369168 +) +(1,10277:6630773,44054023:25952256,424439,86428 +h1,10277:6630773,44054023:0,0,0 +g1,10277:7626635,44054023 +g1,10277:7958589,44054023 +g1,10277:9618359,44054023 +g1,10277:9950313,44054023 +g1,10277:10282267,44054023 +g1,10277:10614221,44054023 +g1,10277:11278129,44054023 +g1,10277:11610083,44054023 +g1,10277:11942037,44054023 +g1,10277:12937899,44054023 +g1,10277:13269853,44054023 +g1,10277:13601807,44054023 +g1,10277:14597669,44054023 +g1,10277:14929623,44054023 +g1,10277:15261577,44054023 +g1,10277:16257439,44054023 +g1,10277:16589393,44054023 +g1,10277:16921347,44054023 +h1,10277:17585255,44054023:0,0,0 +k1,10277:32583029,44054023:14997774 +g1,10277:32583029,44054023 +) +(1,10277:6630773,44738878:25952256,424439,86428 +h1,10277:6630773,44738878:0,0,0 +g1,10277:7626635,44738878 +g1,10277:7958589,44738878 +g1,10277:9618359,44738878 +g1,10277:9950313,44738878 +g1,10277:10282267,44738878 +g1,10277:10614221,44738878 +g1,10277:11278129,44738878 +g1,10277:11610083,44738878 +g1,10277:11942037,44738878 +g1,10277:12937899,44738878 +g1,10277:13269853,44738878 +g1,10277:13601807,44738878 +g1,10277:14597669,44738878 +g1,10277:14929623,44738878 +g1,10277:15261577,44738878 +g1,10277:16257439,44738878 +g1,10277:16589393,44738878 +g1,10277:16921347,44738878 +h1,10277:17585255,44738878:0,0,0 +k1,10277:32583029,44738878:14997774 +g1,10277:32583029,44738878 +) +(1,10277:6630773,45423733:25952256,424439,86428 +h1,10277:6630773,45423733:0,0,0 +g1,10277:7626635,45423733 +g1,10277:7958589,45423733 +g1,10277:9618359,45423733 +g1,10277:9950313,45423733 +g1,10277:10282267,45423733 +g1,10277:10614221,45423733 +g1,10277:11278129,45423733 +g1,10277:11610083,45423733 +g1,10277:11942037,45423733 +g1,10277:12937899,45423733 +g1,10277:13269853,45423733 +g1,10277:13601807,45423733 +g1,10277:14597669,45423733 +g1,10277:14929623,45423733 +g1,10277:15261577,45423733 +g1,10277:16257439,45423733 +g1,10277:16589393,45423733 +g1,10277:16921347,45423733 +h1,10277:17585255,45423733:0,0,0 +k1,10277:32583029,45423733:14997774 +g1,10277:32583029,45423733 +) +] +) +g1,10278:32583029,45510161 +g1,10278:6630773,45510161 +g1,10278:6630773,45510161 +g1,10278:32583029,45510161 +g1,10278:32583029,45510161 +) +] +(1,10278:32583029,45706769:0,0,0 +g1,10278:32583029,45706769 +) +) +] +(1,10278:6630773,47279633:25952256,0,0 +h1,10278:6630773,47279633:25952256,0,0 +) +] +(1,10278:4262630,4025873:0,0,0 +[1,10278:-473656,4025873:0,0,0 +(1,10278:-473656,-710413:0,0,0 +(1,10278:-473656,-710413:0,0,0 +g1,10278:-473656,-710413 +) +g1,10278:-473656,-710413 +) +] +) +] +!25979 +}163 +Input:1509:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1510:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1511:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1512:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1513:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1514:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1515:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1516:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1517:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1518:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1519:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1520:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1521:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1522:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1523:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1524:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1525:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1526:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1527:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1528:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1529:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1530:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!2080 +{164 +[1,10354:4262630,47279633:28320399,43253760,0 +(1,10354:4262630,4025873:0,0,0 +[1,10354:-473656,4025873:0,0,0 +(1,10354:-473656,-710413:0,0,0 +(1,10354:-473656,-644877:0,0,0 +k1,10354:-473656,-644877:-65536 ) +(1,10354:-473656,4736287:0,0,0 +k1,10354:-473656,4736287:5209943 ) -k1,11066:3078556,2439708:-34777008 +g1,10354:-473656,-710413 ) ] -[1,11066:3078558,4812305:0,0,0 -(1,11066:3078558,49800853:0,16384,2228224 -k1,11066:1358238,49800853:-1720320 -(1,10825:1358238,49800853:1720320,16384,2228224 -(1,10825:1358238,49800853:1179648,16384,0 -r1,11066:2537886,49800853:1179648,16384,0 ) -g1,10825:3062174,49800853 -(1,10825:3062174,52029077:16384,1703936,0 -[1,10825:3062174,52029077:25952256,1703936,0 -(1,10825:3062174,51504789:25952256,1179648,0 -(1,10825:3062174,51504789:16384,1179648,0 -r1,11066:3078558,51504789:16384,1179648,0 +[1,10354:6630773,47279633:25952256,43253760,0 +[1,10354:6630773,4812305:25952256,786432,0 +(1,10354:6630773,4812305:25952256,485622,11795 +(1,10354:6630773,4812305:25952256,485622,11795 +g1,10354:3078558,4812305 +[1,10354:3078558,4812305:0,0,0 +(1,10354:3078558,2439708:0,1703936,0 +k1,10354:1358238,2439708:-1720320 +(1,8606:1358238,2439708:1720320,1703936,0 +(1,8606:1358238,2439708:1179648,16384,0 +r1,10354:2537886,2439708:1179648,16384,0 +) +g1,8606:3062174,2439708 +(1,8606:3062174,2439708:16384,1703936,0 +[1,8606:3062174,2439708:25952256,1703936,0 +(1,8606:3062174,1915420:25952256,1179648,0 +(1,8606:3062174,1915420:16384,1179648,0 +r1,10354:3078558,1915420:16384,1179648,0 ) -k1,10825:29014430,51504789:25935872 -g1,10825:29014430,51504789 +k1,8606:29014430,1915420:25935872 +g1,8606:29014430,1915420 ) ] ) ) ) ] -[1,11066:3078558,4812305:0,0,0 -(1,11066:3078558,49800853:0,16384,2228224 -g1,11066:29030814,49800853 -g1,11066:36135244,49800853 -(1,10825:36135244,49800853:1720320,16384,2228224 -(1,10825:36135244,52029077:16384,1703936,0 -[1,10825:36135244,52029077:25952256,1703936,0 -(1,10825:36135244,51504789:25952256,1179648,0 -(1,10825:36135244,51504789:16384,1179648,0 -r1,11066:36151628,51504789:16384,1179648,0 +[1,10354:3078558,4812305:0,0,0 +(1,10354:3078558,2439708:0,1703936,0 +g1,10354:29030814,2439708 +g1,10354:36135244,2439708 +(1,8606:36135244,2439708:1720320,1703936,0 +(1,8606:36135244,2439708:16384,1703936,0 +[1,8606:36135244,2439708:25952256,1703936,0 +(1,8606:36135244,1915420:25952256,1179648,0 +(1,8606:36135244,1915420:16384,1179648,0 +r1,10354:36151628,1915420:16384,1179648,0 ) -k1,10825:62087500,51504789:25935872 -g1,10825:62087500,51504789 +k1,8606:62087500,1915420:25935872 +g1,8606:62087500,1915420 ) ] ) -g1,10825:36675916,49800853 -(1,10825:36675916,49800853:1179648,16384,0 -r1,11066:37855564,49800853:1179648,16384,0 +g1,8606:36675916,2439708 +(1,8606:36675916,2439708:1179648,16384,0 +r1,10354:37855564,2439708:1179648,16384,0 ) ) -k1,11066:3078556,49800853:-34777008 +k1,10354:3078556,2439708:-34777008 ) ] -g1,11066:6630773,4812305 -g1,11066:6630773,4812305 -g1,11066:9499939,4812305 -g1,11066:12584718,4812305 -g1,11066:13994397,4812305 -g1,11066:17201073,4812305 -k1,11066:31387652,4812305:14186579 -) -) -] -[1,11066:6630773,45706769:25952256,40108032,0 -(1,11066:6630773,45706769:25952256,40108032,0 -(1,11066:6630773,45706769:0,0,0 -g1,11066:6630773,45706769 -) -[1,11066:6630773,45706769:25952256,40108032,0 -v1,10978:6630773,6254097:0,393216,0 -(1,10978:6630773,8191352:25952256,2330471,0 -g1,10978:6630773,8191352 -g1,10978:6303093,8191352 -r1,11066:6401397,8191352:98304,2330471,0 -g1,10978:6600626,8191352 -g1,10978:6797234,8191352 -[1,10978:6797234,8191352:25785795,2330471,0 -(1,10978:6797234,6374028:25785795,513147,126483 -h1,10977:6797234,6374028:983040,0,0 -k1,10977:12380925,6374028:189423 -k1,10977:13674630,6374028:189423 -k1,10977:14611819,6374028:189423 -k1,10977:17698589,6374028:189423 -k1,10977:20238133,6374028:189423 -k1,10977:21821507,6374028:189423 -k1,10977:24706426,6374028:189423 -(1,10977:24706426,6374028:0,452978,115847 -r1,11066:29285234,6374028:4578808,568825,115847 -k1,10977:24706426,6374028:-4578808 -) -(1,10977:24706426,6374028:4578808,452978,115847 -k1,10977:24706426,6374028:3277 -h1,10977:29281957,6374028:0,411205,112570 -) -k1,10977:29648327,6374028:189423 -k1,10978:32583029,6374028:0 -) -(1,10978:6797234,7215516:25785795,513147,134348 -(1,10977:6797234,7215516:0,452978,115847 -r1,11066:11376042,7215516:4578808,568825,115847 -k1,10977:6797234,7215516:-4578808 -) -(1,10977:6797234,7215516:4578808,452978,115847 -k1,10977:6797234,7215516:3277 -h1,10977:11372765,7215516:0,411205,112570 -) -k1,10977:11665017,7215516:288975 -k1,10977:12485490,7215516:288976 -k1,10977:14620614,7215516:288975 -k1,10977:16422815,7215516:288975 -k1,10977:17327828,7215516:288975 -k1,10977:19778181,7215516:288976 -k1,10977:21756674,7215516:288975 -k1,10977:22503746,7215516:288975 -k1,10977:23897003,7215516:288975 -k1,10977:24933745,7215516:288976 -k1,10977:27199941,7215516:288975 -k1,10977:29498905,7215516:288975 -k1,10977:32583029,7215516:0 -) -(1,10978:6797234,8057004:25785795,513147,134348 -g1,10977:8811810,8057004 -g1,10977:11129163,8057004 -g1,10977:12319952,8057004 -g1,10977:14552108,8057004 -g1,10977:17841360,8057004 -g1,10977:18656627,8057004 -g1,10977:21134543,8057004 -h1,10977:22677261,8057004:0,0,0 -g1,10977:22876490,8057004 -g1,10977:23885089,8057004 -g1,10977:25582471,8057004 -h1,10977:26777848,8057004:0,0,0 -k1,10978:32583029,8057004:5631511 -g1,10978:32583029,8057004 -) -] -g1,10978:32583029,8191352 -) -h1,10978:6630773,8191352:0,0,0 -(1,10980:6630773,10282612:25952256,564462,139132 -(1,10980:6630773,10282612:2450326,534184,12975 -g1,10980:6630773,10282612 -g1,10980:9081099,10282612 -) -g1,10980:12604118,10282612 -k1,10980:32583029,10282612:16537353 -g1,10980:32583029,10282612 -) -(1,10984:6630773,11517316:25952256,513147,126483 -k1,10983:8436524,11517316:160797 -k1,10983:9616406,11517316:160797 -k1,10983:10789735,11517316:160798 -k1,10983:13942251,11517316:160797 -k1,10983:16132043,11517316:160797 -k1,10983:17161192,11517316:160797 -k1,10983:18454451,11517316:160797 -k1,10983:20576086,11517316:160798 -k1,10983:21092743,11517316:160797 -k1,10983:22969928,11517316:160797 -k1,10983:24202894,11517316:160797 -k1,10983:26340913,11517316:160798 -k1,10983:29370876,11517316:160797 -k1,10983:29887533,11517316:160797 -k1,10983:32583029,11517316:0 -) -(1,10984:6630773,12358804:25952256,513147,134348 -k1,10983:7727039,12358804:148615 -k1,10983:11326781,12358804:148616 -k1,10983:12494481,12358804:148615 -k1,10983:15486704,12358804:148616 -k1,10983:17242262,12358804:148615 -k1,10983:18050170,12358804:148616 -k1,10983:19217870,12358804:148615 -k1,10983:21104501,12358804:148616 -k1,10983:22820737,12358804:148615 -k1,10983:23325213,12358804:148616 -k1,10983:26093957,12358804:148615 -k1,10983:28394119,12358804:148615 -k1,10983:29739422,12358804:148616 -k1,10983:32583029,12358804:0 -) -(1,10984:6630773,13200292:25952256,639543,134348 -k1,10983:8503089,13200292:265373 -k1,10983:9299959,13200292:265373 -k1,10983:11260093,13200292:265373 -k1,10983:12286994,13200292:265373 -$1,10983:12286994,13200292 -[1,10983:12715599,13298606:384631,359203,5505 -(1,10983:13044982,13293101:0,353698,0 -) -(1,10983:12715599,13298606:351863,248644,5505 -) -] -k1,10983:13403178,13200292:302948 -k1,10983:14274323,13200292:302948 -(1,10983:14274323,13200292:2195193,639543,119364 -[1,10983:14274323,12613177:595722,26214,706479 -] -[1,10983:14870045,13200292:1599471,639543,95027 -(1,10983:14870045,13200292:1599471,530010,95027 -(1,10983:15298650,13010217:311689,339935,0 -) -) -] -) -$1,10983:16469516,13200292 -k1,10983:16908559,13200292:265373 -k1,10983:18127481,13200292:265373 -k1,10983:19497136,13200292:265373 -k1,10983:22574004,13200292:265373 -k1,10983:24042618,13200292:265373 -k1,10983:25575456,13200292:265372 -k1,10983:26859914,13200292:265373 -k1,10983:30207445,13200292:265373 -k1,10983:31132110,13200292:265373 -k1,10983:32168186,13200292:265373 -k1,10984:32583029,13200292:0 -) -(1,10984:6630773,14041780:25952256,513147,115847 -g1,10983:9525498,14041780 -g1,10983:11592503,14041780 -(1,10983:11592503,14041780:0,414482,115847 -r1,11066:12654192,14041780:1061689,530329,115847 -k1,10983:11592503,14041780:-1061689 -) -(1,10983:11592503,14041780:1061689,414482,115847 -k1,10983:11592503,14041780:3277 -h1,10983:12650915,14041780:0,411205,112570 -) -k1,10984:32583030,14041780:19755168 -g1,10984:32583030,14041780 -) -v1,10986:6630773,15232246:0,393216,0 -(1,10990:6630773,15553634:25952256,714604,196608 -g1,10990:6630773,15553634 -g1,10990:6630773,15553634 -g1,10990:6434165,15553634 -(1,10990:6434165,15553634:0,714604,196608 -r1,11066:32779637,15553634:26345472,911212,196608 -k1,10990:6434165,15553634:-26345472 -) -(1,10990:6434165,15553634:26345472,714604,196608 -[1,10990:6630773,15553634:25952256,517996,0 -(1,10988:6630773,15446156:25952256,410518,107478 -(1,10987:6630773,15446156:0,0,0 -g1,10987:6630773,15446156 -g1,10987:6630773,15446156 -g1,10987:6303093,15446156 -(1,10987:6303093,15446156:0,0,0 -) -g1,10987:6630773,15446156 -) -g1,10988:7895356,15446156 -g1,10988:8843794,15446156 -g1,10988:16431291,15446156 -g1,10988:17063583,15446156 -k1,10988:17063583,15446156:0 -h1,10988:20541185,15446156:0,0,0 -k1,10988:32583029,15446156:12041844 -g1,10988:32583029,15446156 -) -] -) -g1,10990:32583029,15553634 -g1,10990:6630773,15553634 -g1,10990:6630773,15553634 -g1,10990:32583029,15553634 -g1,10990:32583029,15553634 -) -h1,10990:6630773,15750242:0,0,0 -(1,10994:6630773,17116018:25952256,513147,7863 -h1,10993:6630773,17116018:983040,0,0 -g1,10993:8766591,17116018 -g1,10993:10070102,17116018 -g1,10993:11460776,17116018 -g1,10993:12757733,17116018 -k1,10994:32583029,17116018:16956130 -g1,10994:32583029,17116018 -) -v1,10996:6630773,18306484:0,393216,0 -(1,11017:6630773,24564089:25952256,6650821,196608 -g1,11017:6630773,24564089 -g1,11017:6630773,24564089 -g1,11017:6434165,24564089 -(1,11017:6434165,24564089:0,6650821,196608 -r1,11066:32779637,24564089:26345472,6847429,196608 -k1,11017:6434165,24564089:-26345472 -) -(1,11017:6434165,24564089:26345472,6650821,196608 -[1,11017:6630773,24564089:25952256,6454213,0 -(1,10998:6630773,18514102:25952256,404226,82312 -(1,10997:6630773,18514102:0,0,0 -g1,10997:6630773,18514102 -g1,10997:6630773,18514102 -g1,10997:6303093,18514102 -(1,10997:6303093,18514102:0,0,0 -) -g1,10997:6630773,18514102 -) -g1,10998:7263065,18514102 -g1,10998:8211503,18514102 -g1,10998:9792233,18514102 -g1,10998:10740671,18514102 -g1,10998:11689109,18514102 -k1,10998:11689109,18514102:0 -h1,10998:12637547,18514102:0,0,0 -k1,10998:32583029,18514102:19945482 -g1,10998:32583029,18514102 -) -(1,10999:6630773,19180280:25952256,404226,82312 -h1,10999:6630773,19180280:0,0,0 -g1,10999:8211502,19180280 -g1,10999:9159940,19180280 -g1,10999:10740669,19180280 -h1,10999:11689106,19180280:0,0,0 -k1,10999:32583030,19180280:20893924 -g1,10999:32583030,19180280 -) -(1,11000:6630773,19846458:25952256,404226,76021 -h1,11000:6630773,19846458:0,0,0 -g1,11000:8527648,19846458 -g1,11000:9159940,19846458 -h1,11000:9792231,19846458:0,0,0 -k1,11000:32583029,19846458:22790798 -g1,11000:32583029,19846458 -) -(1,11004:6630773,20512636:25952256,404226,76021 -(1,11002:6630773,20512636:0,0,0 -g1,11002:6630773,20512636 -g1,11002:6630773,20512636 -g1,11002:6303093,20512636 -(1,11002:6303093,20512636:0,0,0 -) -g1,11002:6630773,20512636 -) -g1,11004:7579210,20512636 -g1,11004:8843793,20512636 -h1,11004:11372958,20512636:0,0,0 -k1,11004:32583030,20512636:21210072 -g1,11004:32583030,20512636 -) -(1,11006:6630773,21834174:25952256,404226,76021 -(1,11005:6630773,21834174:0,0,0 -g1,11005:6630773,21834174 -g1,11005:6630773,21834174 -g1,11005:6303093,21834174 -(1,11005:6303093,21834174:0,0,0 -) -g1,11005:6630773,21834174 -) -k1,11006:6630773,21834174:0 -h1,11006:8527647,21834174:0,0,0 -k1,11006:32583029,21834174:24055382 -g1,11006:32583029,21834174 -) -(1,11010:6630773,22500352:25952256,404226,76021 -(1,11008:6630773,22500352:0,0,0 -g1,11008:6630773,22500352 -g1,11008:6630773,22500352 -g1,11008:6303093,22500352 -(1,11008:6303093,22500352:0,0,0 -) -g1,11008:6630773,22500352 -) -g1,11010:7579210,22500352 -g1,11010:8843793,22500352 -h1,11010:11372958,22500352:0,0,0 -k1,11010:32583030,22500352:21210072 -g1,11010:32583030,22500352 -) -(1,11012:6630773,23821890:25952256,404226,76021 -(1,11011:6630773,23821890:0,0,0 -g1,11011:6630773,23821890 -g1,11011:6630773,23821890 -g1,11011:6303093,23821890 -(1,11011:6303093,23821890:0,0,0 -) -g1,11011:6630773,23821890 -) -k1,11012:6630773,23821890:0 -h1,11012:9476084,23821890:0,0,0 -k1,11012:32583028,23821890:23106944 -g1,11012:32583028,23821890 -) -(1,11016:6630773,24488068:25952256,404226,76021 -(1,11014:6630773,24488068:0,0,0 -g1,11014:6630773,24488068 -g1,11014:6630773,24488068 -g1,11014:6303093,24488068 -(1,11014:6303093,24488068:0,0,0 -) -g1,11014:6630773,24488068 -) -g1,11016:7579210,24488068 -g1,11016:8843793,24488068 -h1,11016:9476084,24488068:0,0,0 -k1,11016:32583028,24488068:23106944 -g1,11016:32583028,24488068 -) -] -) -g1,11017:32583029,24564089 -g1,11017:6630773,24564089 -g1,11017:6630773,24564089 -g1,11017:32583029,24564089 -g1,11017:32583029,24564089 -) -h1,11017:6630773,24760697:0,0,0 -(1,11021:6630773,26126473:25952256,513147,134348 -h1,11020:6630773,26126473:983040,0,0 -g1,11020:8855064,26126473 -g1,11020:11715710,26126473 -g1,11020:12530977,26126473 -(1,11020:12530977,26126473:0,452978,115847 -r1,11066:14647802,26126473:2116825,568825,115847 -k1,11020:12530977,26126473:-2116825 -) -(1,11020:12530977,26126473:2116825,452978,115847 -k1,11020:12530977,26126473:3277 -h1,11020:14644525,26126473:0,411205,112570 -) -g1,11020:14847031,26126473 -g1,11020:15914612,26126473 -g1,11020:17105401,26126473 -g1,11020:19394573,26126473 -g1,11020:22289298,26126473 -(1,11020:22289298,26126473:0,452978,115847 -r1,11066:24054411,26126473:1765113,568825,115847 -k1,11020:22289298,26126473:-1765113 -) -(1,11020:22289298,26126473:1765113,452978,115847 -k1,11020:22289298,26126473:3277 -h1,11020:24051134,26126473:0,411205,112570 -) -g1,11020:24253640,26126473 -g1,11020:25846820,26126473 -(1,11020:25846820,26126473:0,414482,115847 -r1,11066:26205086,26126473:358266,530329,115847 -k1,11020:25846820,26126473:-358266 -) -(1,11020:25846820,26126473:358266,414482,115847 -k1,11020:25846820,26126473:3277 -h1,11020:26201809,26126473:0,411205,112570 -) -g1,11020:26404315,26126473 -g1,11020:27289706,26126473 -g1,11020:28259638,26126473 -k1,11021:32583029,26126473:1077393 -g1,11021:32583029,26126473 -) -(1,11023:6630773,26967961:25952256,513147,134348 -h1,11022:6630773,26967961:983040,0,0 -k1,11022:9033085,26967961:222585 -k1,11022:11951167,26967961:222586 -k1,11022:13042104,26967961:222585 -k1,11022:15646267,26967961:222585 -k1,11022:17724177,26967961:222586 -k1,11022:19079224,26967961:222585 -k1,11022:21431074,26967961:222585 -k1,11022:22933578,26967961:222586 -k1,11022:24175248,26967961:222585 -k1,11022:26640475,26967961:222585 -k1,11022:29120776,26967961:222586 -k1,11022:31873051,26967961:222585 -(1,11022:31873051,26967961:0,414482,115847 -r1,11066:32583029,26967961:709978,530329,115847 -k1,11022:31873051,26967961:-709978 -) -(1,11022:31873051,26967961:709978,414482,115847 -k1,11022:31873051,26967961:3277 -h1,11022:32579752,26967961:0,411205,112570 -) -k1,11022:32583029,26967961:0 -) -(1,11023:6630773,27809449:25952256,505283,134348 -k1,11022:8842555,27809449:201137 -k1,11022:9659730,27809449:201137 -k1,11022:10879952,27809449:201137 -k1,11022:12789613,27809449:201137 -k1,11022:14123212,27809449:201137 -k1,11022:16453614,27809449:201137 -k1,11022:18497623,27809449:201137 -k1,11022:19314797,27809449:201136 -k1,11022:20286637,27809449:201137 -(1,11022:20286637,27809449:0,414482,115847 -r1,11066:20996615,27809449:709978,530329,115847 -k1,11022:20286637,27809449:-709978 -) -(1,11022:20286637,27809449:709978,414482,115847 -k1,11022:20286637,27809449:3277 -h1,11022:20993338,27809449:0,411205,112570 -) -k1,11022:21197752,27809449:201137 -k1,11022:23136904,27809449:201137 -k1,11022:26290438,27809449:201137 -k1,11022:27688262,27809449:201137 -k1,11022:30565889,27809449:201137 -k1,11022:31298523,27809449:201137 -k1,11022:32583029,27809449:0 -) -(1,11023:6630773,28650937:25952256,513147,126483 -k1,11022:8786221,28650937:179538 -k1,11022:9884575,28650937:179539 -k1,11022:13089910,28650937:179538 -k1,11022:14415674,28650937:179539 -(1,11022:14415674,28650937:0,452978,115847 -r1,11066:16180787,28650937:1765113,568825,115847 -k1,11022:14415674,28650937:-1765113 -) -(1,11022:14415674,28650937:1765113,452978,115847 -k1,11022:14415674,28650937:3277 -h1,11022:16177510,28650937:0,411205,112570 -) -k1,11022:16533995,28650937:179538 -k1,11022:18368318,28650937:179539 -k1,11022:19079353,28650937:179538 -k1,11022:20068262,28650937:179539 -k1,11022:22330534,28650937:179538 -k1,11022:23161501,28650937:179539 -k1,11022:24813633,28650937:179538 -(1,11022:24813633,28650937:0,414482,115847 -r1,11066:25523611,28650937:709978,530329,115847 -k1,11022:24813633,28650937:-709978 -) -(1,11022:24813633,28650937:709978,414482,115847 -k1,11022:24813633,28650937:3277 -h1,11022:25520334,28650937:0,411205,112570 -) -k1,11022:25703150,28650937:179539 -k1,11022:27893333,28650937:179538 -k1,11022:28688910,28650937:179539 -k1,11022:29887533,28650937:179538 -k1,11022:32583029,28650937:0 -) -(1,11023:6630773,29492425:25952256,513147,7863 -g1,11022:7698354,29492425 -k1,11023:32583029,29492425:22329426 -g1,11023:32583029,29492425 -) -(1,11025:6630773,30333913:25952256,513147,134348 -h1,11024:6630773,30333913:983040,0,0 -k1,11024:9202368,30333913:207711 -k1,11024:11178897,30333913:207712 -k1,11024:12134374,30333913:207711 -k1,11024:16543599,30333913:207712 -k1,11024:17512838,30333913:207711 -k1,11024:19908142,30333913:207712 -k1,11024:20471713,30333913:207711 -k1,11024:22920755,30333913:207711 -k1,11024:26409199,30333913:207712 -(1,11024:26409199,30333913:0,452978,115847 -r1,11066:28877736,30333913:2468537,568825,115847 -k1,11024:26409199,30333913:-2468537 -) -(1,11024:26409199,30333913:2468537,452978,115847 -k1,11024:26409199,30333913:3277 -h1,11024:28874459,30333913:0,411205,112570 -) -k1,11024:29085447,30333913:207711 -k1,11024:29944587,30333913:207712 -k1,11024:31171383,30333913:207711 -k1,11025:32583029,30333913:0 -) -(1,11025:6630773,31175401:25952256,513147,134348 -k1,11024:8670544,31175401:156266 -k1,11024:9486102,31175401:156266 -k1,11024:10740096,31175401:156266 -k1,11024:13591859,31175401:156267 -k1,11024:14939570,31175401:156266 -k1,11024:17523290,31175401:156266 -k1,11024:18467954,31175401:156266 -k1,11024:21696548,31175401:156266 -k1,11024:22504242,31175401:156266 -k1,11024:23679593,31175401:156266 -k1,11024:24935553,31175401:156266 -k1,11024:25743248,31175401:156267 -(1,11024:25743248,31175401:0,452978,115847 -r1,11066:27508361,31175401:1765113,568825,115847 -k1,11024:25743248,31175401:-1765113 -) -(1,11024:25743248,31175401:1765113,452978,115847 -k1,11024:25743248,31175401:3277 -h1,11024:27505084,31175401:0,411205,112570 -) -k1,11024:27664627,31175401:156266 -k1,11024:29830882,31175401:156266 -k1,11024:31006233,31175401:156266 -k1,11024:32583029,31175401:0 -) -(1,11025:6630773,32016889:25952256,513147,134348 -k1,11024:7452140,32016889:154211 -(1,11024:7452140,32016889:0,452978,115847 -r1,11066:9217253,32016889:1765113,568825,115847 -k1,11024:7452140,32016889:-1765113 -) -(1,11024:7452140,32016889:1765113,452978,115847 -k1,11024:7452140,32016889:3277 -h1,11024:9213976,32016889:0,411205,112570 -) -k1,11024:9545134,32016889:154211 -k1,11024:12634048,32016889:154212 -k1,11024:13439687,32016889:154211 -k1,11024:15323393,32016889:154211 -k1,11024:18478498,32016889:154211 -k1,11024:20625659,32016889:154211 -k1,11024:22790516,32016889:154212 -k1,11024:23813079,32016889:154211 -k1,11024:25497556,32016889:154211 -k1,11024:26303195,32016889:154211 -k1,11024:28173140,32016889:154212 -k1,11024:29708195,32016889:154211 -(1,11024:29708195,32016889:0,414482,115847 -r1,11066:30418173,32016889:709978,530329,115847 -k1,11024:29708195,32016889:-709978 -) -(1,11024:29708195,32016889:709978,414482,115847 -k1,11024:29708195,32016889:3277 -h1,11024:30414896,32016889:0,411205,112570 -) -k1,11024:30572384,32016889:154211 -k1,11024:32583029,32016889:0 -) -(1,11025:6630773,32858377:25952256,513147,134348 -g1,11024:7821562,32858377 -g1,11024:9306607,32858377 -g1,11024:12281286,32858377 -g1,11024:14523272,32858377 -g1,11024:17527442,32858377 -g1,11024:18745756,32858377 -g1,11024:21430766,32858377 -g1,11024:22289287,32858377 -g1,11024:26560268,32858377 -g1,11024:28153448,32858377 -(1,11024:28153448,32858377:0,452978,122846 -r1,11066:30973697,32858377:2820249,575824,122846 -k1,11024:28153448,32858377:-2820249 -) -(1,11024:28153448,32858377:2820249,452978,122846 -k1,11024:28153448,32858377:3277 -h1,11024:30970420,32858377:0,411205,112570 -) -k1,11025:32583029,32858377:1435662 -g1,11025:32583029,32858377 -) -(1,11027:6630773,33699865:25952256,513147,134348 -h1,11026:6630773,33699865:983040,0,0 -k1,11026:8250683,33699865:149282 -k1,11026:11121070,33699865:149332 -k1,11026:12508377,33699865:149332 -k1,11026:13317001,33699865:149332 -k1,11026:17890013,33699865:149332 -k1,11026:19242586,33699865:149332 -k1,11026:20007956,33699865:149332 -k1,11026:21653475,33699865:149332 -k1,11026:22334304,33699865:149332 -k1,11026:23135064,33699865:149332 -k1,11026:25245233,33699865:149332 -k1,11026:26413650,33699865:149332 -k1,11026:29258478,33699865:149332 -k1,11026:30093972,33699865:149332 -k1,11027:32583029,33699865:0 -k1,11027:32583029,33699865:0 -) -v1,11029:6630773,34890331:0,393216,0 -(1,11038:6630773,38511152:25952256,4014037,196608 -g1,11038:6630773,38511152 -g1,11038:6630773,38511152 -g1,11038:6434165,38511152 -(1,11038:6434165,38511152:0,4014037,196608 -r1,11066:32779637,38511152:26345472,4210645,196608 -k1,11038:6434165,38511152:-26345472 -) -(1,11038:6434165,38511152:26345472,4014037,196608 -[1,11038:6630773,38511152:25952256,3817429,0 -(1,11031:6630773,35104241:25952256,410518,82312 -(1,11030:6630773,35104241:0,0,0 -g1,11030:6630773,35104241 -g1,11030:6630773,35104241 -g1,11030:6303093,35104241 -(1,11030:6303093,35104241:0,0,0 -) -g1,11030:6630773,35104241 -) -g1,11031:7895356,35104241 -g1,11031:8843794,35104241 -g1,11031:12637543,35104241 -g1,11031:15166709,35104241 -g1,11031:15799001,35104241 -g1,11031:18012021,35104241 -h1,11031:18328167,35104241:0,0,0 -k1,11031:32583029,35104241:14254862 -g1,11031:32583029,35104241 -) -(1,11032:6630773,35770419:25952256,410518,76021 -h1,11032:6630773,35770419:0,0,0 -g1,11032:6946919,35770419 -g1,11032:7895356,35770419 -g1,11032:11056813,35770419 -h1,11032:11372959,35770419:0,0,0 -k1,11032:32583029,35770419:21210070 -g1,11032:32583029,35770419 -) -(1,11033:6630773,36436597:25952256,404226,76021 -h1,11033:6630773,36436597:0,0,0 -g1,11033:6946919,36436597 -g1,11033:7263065,36436597 -g1,11033:7579211,36436597 -g1,11033:8211503,36436597 -g1,11033:9159941,36436597 -k1,11033:9159941,36436597:0 -h1,11033:12321398,36436597:0,0,0 -k1,11033:32583030,36436597:20261632 -g1,11033:32583030,36436597 -) -(1,11034:6630773,37102775:25952256,404226,76021 -h1,11034:6630773,37102775:0,0,0 -g1,11034:6946919,37102775 -h1,11034:7263065,37102775:0,0,0 -k1,11034:32583029,37102775:25319964 -g1,11034:32583029,37102775 -) -(1,11035:6630773,37768953:25952256,404226,107478 -h1,11035:6630773,37768953:0,0,0 -g1,11035:6946919,37768953 -k1,11035:6946919,37768953:0 -h1,11035:13902125,37768953:0,0,0 -k1,11035:32583029,37768953:18680904 -g1,11035:32583029,37768953 -) -(1,11036:6630773,38435131:25952256,404226,76021 -h1,11036:6630773,38435131:0,0,0 -h1,11036:6946919,38435131:0,0,0 -k1,11036:32583029,38435131:25636110 -g1,11036:32583029,38435131 -) -] -) -g1,11038:32583029,38511152 -g1,11038:6630773,38511152 -g1,11038:6630773,38511152 -g1,11038:32583029,38511152 -g1,11038:32583029,38511152 -) -h1,11038:6630773,38707760:0,0,0 -v1,11042:6630773,40422514:0,393216,0 -(1,11061:6630773,45347763:25952256,5318465,196608 -g1,11061:6630773,45347763 -g1,11061:6630773,45347763 -g1,11061:6434165,45347763 -(1,11061:6434165,45347763:0,5318465,196608 -r1,11066:32779637,45347763:26345472,5515073,196608 -k1,11061:6434165,45347763:-26345472 -) -(1,11061:6434165,45347763:26345472,5318465,196608 -[1,11061:6630773,45347763:25952256,5121857,0 -(1,11044:6630773,40630132:25952256,404226,76021 -(1,11043:6630773,40630132:0,0,0 -g1,11043:6630773,40630132 -g1,11043:6630773,40630132 -g1,11043:6303093,40630132 -(1,11043:6303093,40630132:0,0,0 -) -g1,11043:6630773,40630132 -) -k1,11044:6630773,40630132:0 -g1,11044:8527648,40630132 -g1,11044:9159940,40630132 -h1,11044:9792231,40630132:0,0,0 -k1,11044:32583029,40630132:22790798 -g1,11044:32583029,40630132 -) -(1,11048:6630773,41296310:25952256,404226,76021 -(1,11046:6630773,41296310:0,0,0 -g1,11046:6630773,41296310 -g1,11046:6630773,41296310 -g1,11046:6303093,41296310 -(1,11046:6303093,41296310:0,0,0 -) -g1,11046:6630773,41296310 -) -g1,11048:7579210,41296310 -g1,11048:8843793,41296310 -h1,11048:11372958,41296310:0,0,0 -k1,11048:32583030,41296310:21210072 -g1,11048:32583030,41296310 -) -(1,11050:6630773,42617848:25952256,404226,76021 -(1,11049:6630773,42617848:0,0,0 -g1,11049:6630773,42617848 -g1,11049:6630773,42617848 -g1,11049:6303093,42617848 -(1,11049:6303093,42617848:0,0,0 -) -g1,11049:6630773,42617848 -) -k1,11050:6630773,42617848:0 -g1,11050:8527648,42617848 -g1,11050:9159940,42617848 -h1,11050:10740668,42617848:0,0,0 -k1,11050:32583028,42617848:21842360 -g1,11050:32583028,42617848 -) -(1,11054:6630773,43284026:25952256,404226,76021 -(1,11052:6630773,43284026:0,0,0 -g1,11052:6630773,43284026 -g1,11052:6630773,43284026 -g1,11052:6303093,43284026 -(1,11052:6303093,43284026:0,0,0 -) -g1,11052:6630773,43284026 -) -g1,11054:7579210,43284026 -g1,11054:8843793,43284026 -h1,11054:9476084,43284026:0,0,0 -k1,11054:32583028,43284026:23106944 -g1,11054:32583028,43284026 -) -(1,11056:6630773,44605564:25952256,404226,82312 -(1,11055:6630773,44605564:0,0,0 -g1,11055:6630773,44605564 -g1,11055:6630773,44605564 -g1,11055:6303093,44605564 -(1,11055:6303093,44605564:0,0,0 -) -g1,11055:6630773,44605564 -) -k1,11056:6630773,44605564:0 -g1,11056:8527648,44605564 -g1,11056:9159940,44605564 -g1,11056:11056815,44605564 -g1,11056:13585981,44605564 -g1,11056:14218273,44605564 -h1,11056:15799002,44605564:0,0,0 -k1,11056:32583030,44605564:16784028 -g1,11056:32583030,44605564 +[1,10354:3078558,4812305:0,0,0 +(1,10354:3078558,49800853:0,16384,2228224 +k1,10354:1358238,49800853:-1720320 +(1,8606:1358238,49800853:1720320,16384,2228224 +(1,8606:1358238,49800853:1179648,16384,0 +r1,10354:2537886,49800853:1179648,16384,0 ) -(1,11060:6630773,45271742:25952256,404226,76021 -(1,11058:6630773,45271742:0,0,0 -g1,11058:6630773,45271742 -g1,11058:6630773,45271742 -g1,11058:6303093,45271742 -(1,11058:6303093,45271742:0,0,0 -) -g1,11058:6630773,45271742 -) -g1,11060:7579210,45271742 -g1,11060:8843793,45271742 -h1,11060:11372958,45271742:0,0,0 -k1,11060:32583030,45271742:21210072 -g1,11060:32583030,45271742 +g1,8606:3062174,49800853 +(1,8606:3062174,52029077:16384,1703936,0 +[1,8606:3062174,52029077:25952256,1703936,0 +(1,8606:3062174,51504789:25952256,1179648,0 +(1,8606:3062174,51504789:16384,1179648,0 +r1,10354:3078558,51504789:16384,1179648,0 +) +k1,8606:29014430,51504789:25935872 +g1,8606:29014430,51504789 +) +] +) +) +) +] +[1,10354:3078558,4812305:0,0,0 +(1,10354:3078558,49800853:0,16384,2228224 +g1,10354:29030814,49800853 +g1,10354:36135244,49800853 +(1,8606:36135244,49800853:1720320,16384,2228224 +(1,8606:36135244,52029077:16384,1703936,0 +[1,8606:36135244,52029077:25952256,1703936,0 +(1,8606:36135244,51504789:25952256,1179648,0 +(1,8606:36135244,51504789:16384,1179648,0 +r1,10354:36151628,51504789:16384,1179648,0 +) +k1,8606:62087500,51504789:25935872 +g1,8606:62087500,51504789 +) +] +) +g1,8606:36675916,49800853 +(1,8606:36675916,49800853:1179648,16384,0 +r1,10354:37855564,49800853:1179648,16384,0 +) +) +k1,10354:3078556,49800853:-34777008 +) +] +g1,10354:6630773,4812305 +g1,10354:6630773,4812305 +g1,10354:9524187,4812305 +k1,10354:31387651,4812305:21863464 +) +) +] +[1,10354:6630773,45706769:25952256,40108032,0 +(1,10354:6630773,45706769:25952256,40108032,0 +(1,10354:6630773,45706769:0,0,0 +g1,10354:6630773,45706769 +) +[1,10354:6630773,45706769:25952256,40108032,0 +v1,10278:6630773,6254097:0,393216,0 +(1,10278:6630773,8622921:25952256,2762040,196608 +g1,10278:6630773,8622921 +g1,10278:6630773,8622921 +g1,10278:6434165,8622921 +(1,10278:6434165,8622921:0,2762040,196608 +r1,10354:32779637,8622921:26345472,2958648,196608 +k1,10278:6434165,8622921:-26345472 +) +(1,10278:6434165,8622921:26345472,2762040,196608 +[1,10278:6630773,8622921:25952256,2565432,0 +(1,10277:6630773,6481928:25952256,424439,86428 +h1,10277:6630773,6481928:0,0,0 +g1,10277:7626635,6481928 +g1,10277:7958589,6481928 +g1,10277:9618359,6481928 +g1,10277:9950313,6481928 +g1,10277:10282267,6481928 +g1,10277:10614221,6481928 +g1,10277:11278129,6481928 +g1,10277:11610083,6481928 +g1,10277:11942037,6481928 +g1,10277:12937899,6481928 +g1,10277:13269853,6481928 +g1,10277:13601807,6481928 +g1,10277:14597669,6481928 +g1,10277:14929623,6481928 +g1,10277:15261577,6481928 +g1,10277:16257439,6481928 +g1,10277:16589393,6481928 +g1,10277:16921347,6481928 +h1,10277:17585255,6481928:0,0,0 +k1,10277:32583029,6481928:14997774 +g1,10277:32583029,6481928 +) +(1,10277:6630773,7166783:25952256,424439,86428 +h1,10277:6630773,7166783:0,0,0 +g1,10277:7626635,7166783 +g1,10277:7958589,7166783 +g1,10277:9618359,7166783 +g1,10277:9950313,7166783 +g1,10277:10282267,7166783 +g1,10277:10614221,7166783 +g1,10277:11278129,7166783 +g1,10277:11610083,7166783 +g1,10277:11942037,7166783 +g1,10277:12937899,7166783 +g1,10277:13269853,7166783 +g1,10277:13601807,7166783 +g1,10277:14597669,7166783 +g1,10277:14929623,7166783 +g1,10277:15261577,7166783 +g1,10277:16257439,7166783 +g1,10277:16589393,7166783 +g1,10277:16921347,7166783 +h1,10277:17585255,7166783:0,0,0 +k1,10277:32583029,7166783:14997774 +g1,10277:32583029,7166783 +) +(1,10277:6630773,7851638:25952256,424439,86428 +h1,10277:6630773,7851638:0,0,0 +g1,10277:7626635,7851638 +g1,10277:7958589,7851638 +g1,10277:9618359,7851638 +g1,10277:9950313,7851638 +g1,10277:10282267,7851638 +g1,10277:10614221,7851638 +g1,10277:11278129,7851638 +g1,10277:11610083,7851638 +g1,10277:11942037,7851638 +g1,10277:12937899,7851638 +g1,10277:13269853,7851638 +g1,10277:13601807,7851638 +g1,10277:14597669,7851638 +g1,10277:14929623,7851638 +g1,10277:15261577,7851638 +g1,10277:16257439,7851638 +g1,10277:16589393,7851638 +g1,10277:16921347,7851638 +h1,10277:17585255,7851638:0,0,0 +k1,10277:32583029,7851638:14997774 +g1,10277:32583029,7851638 +) +(1,10277:6630773,8536493:25952256,424439,86428 +h1,10277:6630773,8536493:0,0,0 +g1,10277:7626635,8536493 +g1,10277:9618359,8536493 +g1,10277:9950313,8536493 +g1,10277:10282267,8536493 +g1,10277:11278129,8536493 +g1,10277:11610083,8536493 +g1,10277:11942037,8536493 +g1,10277:12937899,8536493 +g1,10277:13269853,8536493 +g1,10277:13601807,8536493 +g1,10277:14597669,8536493 +g1,10277:14929623,8536493 +g1,10277:15261577,8536493 +g1,10277:16257439,8536493 +g1,10277:16589393,8536493 +g1,10277:16921347,8536493 +h1,10277:17585255,8536493:0,0,0 +k1,10277:32583029,8536493:14997774 +g1,10277:32583029,8536493 +) +] +) +g1,10278:32583029,8622921 +g1,10278:6630773,8622921 +g1,10278:6630773,8622921 +g1,10278:32583029,8622921 +g1,10278:32583029,8622921 +) +h1,10278:6630773,8819529:0,0,0 +v1,10282:6630773,9504384:0,393216,0 +(1,10295:6630773,14737094:25952256,5625926,196608 +g1,10295:6630773,14737094 +g1,10295:6630773,14737094 +g1,10295:6434165,14737094 +(1,10295:6434165,14737094:0,5625926,196608 +r1,10354:32779637,14737094:26345472,5822534,196608 +k1,10295:6434165,14737094:-26345472 +) +(1,10295:6434165,14737094:26345472,5625926,196608 +[1,10295:6630773,14737094:25952256,5429318,0 +(1,10284:6630773,9732215:25952256,424439,79822 +(1,10283:6630773,9732215:0,0,0 +g1,10283:6630773,9732215 +g1,10283:6630773,9732215 +g1,10283:6303093,9732215 +(1,10283:6303093,9732215:0,0,0 +) +g1,10283:6630773,9732215 +) +g1,10284:9286405,9732215 +g1,10284:10282267,9732215 +k1,10284:10282267,9732215:0 +h1,10284:13269853,9732215:0,0,0 +k1,10284:32583029,9732215:19313176 +g1,10284:32583029,9732215 +) +(1,10285:6630773,10417070:25952256,431045,79822 +h1,10285:6630773,10417070:0,0,0 +g1,10285:7958589,10417070 +g1,10285:8954451,10417070 +g1,10285:9950313,10417070 +g1,10285:13601807,10417070 +h1,10285:13933761,10417070:0,0,0 +k1,10285:32583029,10417070:18649268 +g1,10285:32583029,10417070 +) +(1,10286:6630773,11101925:25952256,424439,79822 +h1,10286:6630773,11101925:0,0,0 +g1,10286:6962727,11101925 +g1,10286:7294681,11101925 +g1,10286:10946174,11101925 +g1,10286:11942036,11101925 +h1,10286:12273990,11101925:0,0,0 +k1,10286:32583030,11101925:20309040 +g1,10286:32583030,11101925 +) +(1,10287:6630773,11786780:25952256,431045,112852 +h1,10287:6630773,11786780:0,0,0 +g1,10287:6962727,11786780 +g1,10287:7294681,11786780 +g1,10287:8622497,11786780 +g1,10287:9618359,11786780 +g1,10287:10614221,11786780 +k1,10287:10614221,11786780:0 +h1,10287:13933761,11786780:0,0,0 +k1,10287:32583029,11786780:18649268 +g1,10287:32583029,11786780 +) +(1,10288:6630773,12471635:25952256,424439,112852 +h1,10288:6630773,12471635:0,0,0 +g1,10288:6962727,12471635 +g1,10288:7294681,12471635 +g1,10288:7626635,12471635 +g1,10288:7958589,12471635 +g1,10288:11610082,12471635 +g1,10288:12605944,12471635 +g1,10288:16257437,12471635 +g1,10288:16921345,12471635 +g1,10288:18581115,12471635 +h1,10288:19245023,12471635:0,0,0 +k1,10288:32583029,12471635:13338006 +g1,10288:32583029,12471635 +) +(1,10289:6630773,13156490:25952256,424439,79822 +h1,10289:6630773,13156490:0,0,0 +h1,10289:6962727,13156490:0,0,0 +k1,10289:32583029,13156490:25620302 +g1,10289:32583029,13156490 +) +(1,10290:6630773,13841345:25952256,424439,106246 +h1,10290:6630773,13841345:0,0,0 +k1,10290:6630773,13841345:0 +h1,10290:11278128,13841345:0,0,0 +k1,10290:32583028,13841345:21304900 +g1,10290:32583028,13841345 +) +(1,10294:6630773,14657272:25952256,424439,79822 +(1,10292:6630773,14657272:0,0,0 +g1,10292:6630773,14657272 +g1,10292:6630773,14657272 +g1,10292:6303093,14657272 +(1,10292:6303093,14657272:0,0,0 +) +g1,10292:6630773,14657272 +) +g1,10294:7626635,14657272 +g1,10294:7958589,14657272 +g1,10294:9286405,14657272 +g1,10294:10614221,14657272 +g1,10294:11942037,14657272 +g1,10294:13269853,14657272 +g1,10294:14597669,14657272 +g1,10294:15925485,14657272 +g1,10294:17253301,14657272 +g1,10294:18581117,14657272 +g1,10294:19908933,14657272 +g1,10294:21236749,14657272 +h1,10294:22232611,14657272:0,0,0 +k1,10294:32583029,14657272:10350418 +g1,10294:32583029,14657272 +) +] +) +g1,10295:32583029,14737094 +g1,10295:6630773,14737094 +g1,10295:6630773,14737094 +g1,10295:32583029,14737094 +g1,10295:32583029,14737094 +) +h1,10295:6630773,14933702:0,0,0 +(1,10299:6630773,15798782:25952256,505283,134348 +h1,10298:6630773,15798782:983040,0,0 +k1,10298:9055277,15798782:244777 +k1,10298:10796241,15798782:244777 +k1,10298:12896342,15798782:244777 +k1,10298:13672615,15798782:244776 +k1,10298:15271366,15798782:244777 +k1,10298:18022895,15798782:244777 +k1,10298:18725769,15798782:244777 +k1,10298:20103008,15798782:244777 +k1,10298:21944242,15798782:244777 +k1,10298:23582969,15798782:244776 +k1,10298:24959553,15798782:244777 +k1,10298:30495707,15798782:244777 +k1,10298:32583029,15798782:0 +) +(1,10299:6630773,16663862:25952256,513147,126483 +k1,10298:8205956,16663862:181232 +k1,10298:8999950,16663862:181232 +k1,10298:10676714,16663862:181232 +k1,10298:12014656,16663862:181232 +k1,10298:14578777,16663862:181232 +k1,10298:15951454,16663862:181232 +k1,10298:17289397,16663862:181233 +k1,10298:18848196,16663862:181232 +k1,10298:21964130,16663862:181232 +k1,10298:25593211,16663862:181232 +k1,10298:26642795,16663862:181232 +k1,10298:28354293,16663862:181232 +k1,10298:30185722,16663862:181232 +k1,10298:32583029,16663862:0 +) +(1,10299:6630773,17528942:25952256,513147,115847 +k1,10298:10807571,17528942:201384 +(1,10298:10807571,17528942:0,452978,115847 +r1,10354:13276108,17528942:2468537,568825,115847 +k1,10298:10807571,17528942:-2468537 +) +(1,10298:10807571,17528942:2468537,452978,115847 +g1,10298:12569407,17528942 +h1,10298:13272831,17528942:0,411205,112570 +) +k1,10298:13477492,17528942:201384 +k1,10298:15829768,17528942:201384 +k1,10298:17187861,17528942:201383 +k1,10298:18480419,17528942:201384 +k1,10298:19297841,17528942:201384 +k1,10298:20518310,17528942:201384 +k1,10298:22980686,17528942:201384 +k1,10298:24201155,17528942:201384 +k1,10298:25559249,17528942:201384 +k1,10298:26570003,17528942:201384 +k1,10298:27790471,17528942:201383 +k1,10298:29297988,17528942:201384 +k1,10298:30703268,17528942:201384 +k1,10298:31563944,17528942:201384 +k1,10298:32583029,17528942:0 +) +(1,10299:6630773,18394022:25952256,505283,115847 +k1,10298:9135902,18394022:263798 +k1,10298:11956259,18394022:263798 +(1,10298:11956259,18394022:0,452978,115847 +r1,10354:14073084,18394022:2116825,568825,115847 +k1,10298:11956259,18394022:-2116825 +) +(1,10298:11956259,18394022:2116825,452978,115847 +g1,10298:13718095,18394022 +h1,10298:14069807,18394022:0,411205,112570 +) +k1,10298:14336883,18394022:263799 +k1,10298:16751573,18394022:263798 +k1,10298:18219267,18394022:263798 +k1,10298:19813446,18394022:263798 +k1,10298:21268689,18394022:263798 +(1,10298:21268689,18394022:0,452978,115847 +r1,10354:23737227,18394022:2468538,568825,115847 +k1,10298:21268689,18394022:-2468538 +) +(1,10298:21268689,18394022:2468538,452978,115847 +g1,10298:22327102,18394022 +g1,10298:23030526,18394022 +h1,10298:23733950,18394022:0,411205,112570 +) +k1,10298:24001025,18394022:263798 +k1,10298:26415716,18394022:263799 +k1,10298:29062403,18394022:263798 +k1,10298:30672311,18394022:263798 +k1,10298:31563944,18394022:263798 +k1,10298:32583029,18394022:0 +) +(1,10299:6630773,19259102:25952256,513147,134348 +k1,10298:9555332,19259102:263142 +k1,10298:11847470,19259102:263143 +k1,10298:13129697,19259102:263142 +k1,10298:15073183,19259102:263143 +k1,10298:16003481,19259102:263142 +(1,10298:16003481,19259102:0,452978,115847 +r1,10354:16361747,19259102:358266,568825,115847 +k1,10298:16003481,19259102:-358266 +) +(1,10298:16003481,19259102:358266,452978,115847 +k1,10298:16003481,19259102:3277 +h1,10298:16358470,19259102:0,411205,112570 +) +k1,10298:16624890,19259102:263143 +k1,10298:19459009,19259102:263142 +k1,10298:20669802,19259102:263142 +k1,10298:22384567,19259102:263143 +k1,10298:25364832,19259102:263142 +k1,10298:26287267,19259102:263143 +k1,10298:27569494,19259102:263142 +k1,10298:29534607,19259102:263143 +k1,10298:31386342,19259102:263142 +k1,10298:32583029,19259102:0 +) +(1,10299:6630773,20124182:25952256,513147,134348 +k1,10298:8491584,20124182:180468 +k1,10298:9339208,20124182:180468 +(1,10298:9339208,20124182:0,452978,122846 +r1,10354:9697474,20124182:358266,575824,122846 +k1,10298:9339208,20124182:-358266 +) +(1,10298:9339208,20124182:358266,452978,122846 +k1,10298:9339208,20124182:3277 +h1,10298:9694197,20124182:0,411205,112570 +) +k1,10298:9877942,20124182:180468 +k1,10298:12629387,20124182:180468 +k1,10298:13757506,20124182:180468 +k1,10298:15389596,20124182:180468 +k1,10298:18287187,20124182:180468 +k1,10298:19126947,20124182:180468 +k1,10298:20326499,20124182:180467 +k1,10298:22173548,20124182:180468 +k1,10298:23942609,20124182:180468 +k1,10298:25314522,20124182:180468 +k1,10298:26514075,20124182:180468 +k1,10298:28361124,20124182:180468 +k1,10298:29956514,20124182:180468 +k1,10298:30668479,20124182:180468 +k1,10298:31966991,20124182:180468 +k1,10298:32583029,20124182:0 +) +(1,10299:6630773,20989262:25952256,513147,134348 +g1,10298:7919866,20989262 +g1,10298:9066746,20989262 +g1,10298:10717597,20989262 +g1,10298:13633949,20989262 +g1,10298:14492470,20989262 +g1,10298:15710784,20989262 +g1,10298:17611983,20989262 +g1,10298:19399805,20989262 +g1,10298:20795721,20989262 +g1,10298:22661531,20989262 +g1,10298:24275682,20989262 +g1,10298:26224722,20989262 +(1,10298:26224722,20989262:0,452978,122846 +r1,10354:26582988,20989262:358266,575824,122846 +k1,10298:26224722,20989262:-358266 +) +(1,10298:26224722,20989262:358266,452978,122846 +k1,10298:26224722,20989262:3277 +h1,10298:26579711,20989262:0,411205,112570 +) +g1,10298:26782217,20989262 +g1,10298:29552423,20989262 +k1,10299:32583029,20989262:714564 +g1,10299:32583029,20989262 +) +v1,10301:6630773,21854342:0,393216,0 +(1,10304:6630773,30082708:25952256,8621582,0 +g1,10304:6630773,30082708 +g1,10304:6237557,30082708 +r1,10354:6368629,30082708:131072,8621582,0 +g1,10304:6567858,30082708 +g1,10304:6764466,30082708 +[1,10304:6764466,30082708:25818563,8621582,0 +(1,10302:6764466,22162640:25818563,701514,196608 +(1,10301:6764466,22162640:0,701514,196608 +r1,10354:8863446,22162640:2098980,898122,196608 +k1,10301:6764466,22162640:-2098980 +) +(1,10301:6764466,22162640:2098980,701514,196608 +) +k1,10301:9083001,22162640:219555 +k1,10301:10809219,22162640:327680 +k1,10301:11634326,22162640:219554 +k1,10301:14059823,22162640:219555 +k1,10301:15298463,22162640:219555 +k1,10301:17014205,22162640:219555 +k1,10301:17849797,22162640:219554 +k1,10301:19088437,22162640:219555 +k1,10301:21969409,22162640:219555 +k1,10301:22805002,22162640:219555 +k1,10301:24043641,22162640:219554 +k1,10301:25411387,22162640:219555 +k1,10301:27601610,22162640:219555 +k1,10301:29676489,22162640:219555 +k1,10301:30620871,22162640:219554 +k1,10301:32124932,22162640:219555 +k1,10301:32583029,22162640:0 +) +(1,10302:6764466,23027720:25818563,513147,126483 +k1,10301:8660393,23027720:200511 +k1,10301:9879989,23027720:200511 +k1,10301:12091144,23027720:200510 +k1,10301:13667256,23027720:200511 +k1,10301:14483805,23027720:200511 +k1,10301:15703401,23027720:200511 +k1,10301:17210045,23027720:200511 +k1,10301:19065339,23027720:200510 +k1,10301:21979041,23027720:200511 +k1,10301:22846708,23027720:200511 +(1,10301:22846708,23027720:0,414482,115847 +r1,10354:23204974,23027720:358266,530329,115847 +k1,10301:22846708,23027720:-358266 +) +(1,10301:22846708,23027720:358266,414482,115847 +k1,10301:22846708,23027720:3277 +h1,10301:23201697,23027720:0,411205,112570 +) +k1,10301:23579155,23027720:200511 +k1,10301:24385219,23027720:200511 +k1,10301:26848032,23027720:200510 +k1,10301:28067628,23027720:200511 +k1,10301:29921612,23027720:200511 +k1,10301:32583029,23027720:0 +) +(1,10302:6764466,23892800:25818563,513147,126483 +k1,10301:7709907,23892800:220613 +k1,10301:9215027,23892800:220614 +k1,10301:9893737,23892800:220613 +k1,10301:11809767,23892800:220614 +k1,10301:13049465,23892800:220613 +k1,10301:15280723,23892800:220613 +k1,10301:16876938,23892800:220614 +k1,10301:17713589,23892800:220613 +k1,10301:18953288,23892800:220614 +k1,10301:20322092,23892800:220613 +k1,10301:22197489,23892800:220613 +k1,10301:23952301,23892800:220614 +k1,10301:24840070,23892800:220613 +(1,10301:24840070,23892800:0,414482,115847 +r1,10354:25198336,23892800:358266,530329,115847 +k1,10301:24840070,23892800:-358266 +) +(1,10301:24840070,23892800:358266,414482,115847 +k1,10301:24840070,23892800:3277 +h1,10301:25195059,23892800:0,411205,112570 +) +k1,10301:25592619,23892800:220613 +k1,10301:26418786,23892800:220614 +k1,10301:28901702,23892800:220613 +k1,10301:30141401,23892800:220614 +k1,10301:31858201,23892800:220613 +k1,10301:32583029,23892800:0 +) +(1,10302:6764466,24757880:25818563,505283,126483 +g1,10301:8248201,24757880 +g1,10301:11180937,24757880 +g1,10301:12774117,24757880 +g1,10301:16648605,24757880 +g1,10301:18575363,24757880 +g1,10301:19426020,24757880 +g1,10301:21045414,24757880 +g1,10301:22137899,24757880 +g1,10301:25101437,24757880 +g1,10301:26062194,24757880 +(1,10301:26062194,24757880:0,452978,115847 +r1,10354:28179019,24757880:2116825,568825,115847 +k1,10301:26062194,24757880:-2116825 +) +(1,10301:26062194,24757880:2116825,452978,115847 +k1,10301:26062194,24757880:3277 +h1,10301:28175742,24757880:0,411205,112570 +) +g1,10301:28378248,24757880 +g1,10301:29768922,24757880 +(1,10301:29768922,24757880:0,452978,115847 +r1,10354:31885747,24757880:2116825,568825,115847 +k1,10301:29768922,24757880:-2116825 +) +(1,10301:29768922,24757880:2116825,452978,115847 +k1,10301:29768922,24757880:3277 +h1,10301:31882470,24757880:0,411205,112570 +) +k1,10302:32583029,24757880:316518 +g1,10302:32583029,24757880 +) +(1,10304:6764466,25622960:25818563,513147,134348 +h1,10303:6764466,25622960:983040,0,0 +k1,10303:9140427,25622960:175262 +k1,10303:10334774,25622960:175262 +k1,10303:12006223,25622960:175262 +k1,10303:13351958,25622960:175262 +k1,10303:15335358,25622960:175262 +k1,10303:18288691,25622960:175262 +k1,10303:21050658,25622960:175261 +k1,10303:21912082,25622960:175262 +k1,10303:24926364,25622960:175262 +k1,10303:25567587,25622960:175262 +k1,10303:26761934,25622960:175262 +k1,10303:29422977,25622960:175262 +k1,10303:30257531,25622960:175262 +k1,10303:31966991,25622960:175262 +k1,10304:32583029,25622960:0 +) +(1,10304:6764466,26488040:25818563,513147,134348 +(1,10303:6764466,26488040:0,414482,115847 +r1,10354:7122732,26488040:358266,530329,115847 +k1,10303:6764466,26488040:-358266 +) +(1,10303:6764466,26488040:358266,414482,115847 +k1,10303:6764466,26488040:3277 +h1,10303:7119455,26488040:0,411205,112570 +) +k1,10303:7307668,26488040:184936 +k1,10303:10481046,26488040:184936 +k1,10303:12299795,26488040:184936 +k1,10303:12950691,26488040:184935 +k1,10303:14154712,26488040:184936 +k1,10303:16825429,26488040:184936 +k1,10303:17669657,26488040:184936 +k1,10303:20567784,26488040:184936 +k1,10303:21368758,26488040:184936 +(1,10303:21368758,26488040:0,414482,115847 +r1,10354:21727024,26488040:358266,530329,115847 +k1,10303:21368758,26488040:-358266 +) +(1,10303:21368758,26488040:358266,414482,115847 +k1,10303:21368758,26488040:3277 +h1,10303:21723747,26488040:0,411205,112570 +) +k1,10303:21911960,26488040:184936 +k1,10303:24931982,26488040:184935 +k1,10303:26308363,26488040:184936 +k1,10303:27512384,26488040:184936 +k1,10303:30409855,26488040:184936 +k1,10303:32583029,26488040:0 +) +(1,10304:6764466,27353120:25818563,513147,126483 +k1,10303:8203654,27353120:240534 +k1,10303:10742535,27353120:240533 +k1,10303:11634497,27353120:240534 +k1,10303:12622796,27353120:240533 +k1,10303:16092289,27353120:240534 +k1,10303:17280473,27353120:240533 +k1,10303:19880303,27353120:240534 +k1,10303:23392393,27353120:240533 +k1,10303:25266740,27353120:240534 +k1,10303:27463523,27353120:240533 +k1,10303:30078426,27353120:240534 +k1,10303:30792784,27353120:240533 +(1,10303:30792784,27353120:0,414482,115847 +r1,10354:31151050,27353120:358266,530329,115847 +k1,10303:30792784,27353120:-358266 +) +(1,10303:30792784,27353120:358266,414482,115847 +k1,10303:30792784,27353120:3277 +h1,10303:31147773,27353120:0,411205,112570 +) +k1,10303:31391584,27353120:240534 +k1,10303:32583029,27353120:0 +) +(1,10304:6764466,28218200:25818563,513147,126483 +k1,10303:8704594,28218200:171311 +k1,10303:10318352,28218200:171311 +k1,10303:12144447,28218200:171311 +k1,10303:15355973,28218200:171311 +k1,10303:16611250,28218200:171311 +k1,10303:17433989,28218200:171311 +k1,10303:19285643,28218200:171311 +k1,10303:20763086,28218200:171310 +k1,10303:22483013,28218200:171311 +k1,10303:23305752,28218200:171311 +k1,10303:25548001,28218200:171311 +k1,10303:27573981,28218200:171311 +k1,10303:28554662,28218200:171311 +k1,10303:29745058,28218200:171311 +k1,10303:31412556,28218200:171311 +k1,10303:32583029,28218200:0 +) +(1,10304:6764466,29083280:25818563,513147,126483 +k1,10303:8919088,29083280:172813 +k1,10303:10703432,29083280:172814 +k1,10303:12805625,29083280:172813 +k1,10303:15711945,29083280:172813 +k1,10303:16544051,29083280:172814 +k1,10303:19479207,29083280:172813 +k1,10303:21251098,29083280:172813 +k1,10303:22615356,29083280:172813 +k1,10303:23979615,29083280:172814 +k1,10303:25611259,29083280:172813 +k1,10303:27453929,29083280:172813 +k1,10303:29271697,29083280:172814 +k1,10303:30902686,29083280:172813 +k1,10303:32583029,29083280:0 +) +(1,10304:6764466,29948360:25818563,505283,134348 +g1,10303:8294076,29948360 +g1,10303:9144733,29948360 +g1,10303:11973266,29948360 +g1,10303:13191580,29948360 +g1,10303:15060666,29948360 +g1,10303:15984723,29948360 +g1,10303:17468458,29948360 +g1,10303:19660637,29948360 +g1,10303:22033040,29948360 +g1,10303:23223829,29948360 +g1,10303:24489329,29948360 +k1,10304:32583029,29948360:4879159 +g1,10304:32583029,29948360 +) +] +g1,10304:32583029,30082708 +) +h1,10304:6630773,30082708:0,0,0 +v1,10307:6630773,30947788:0,393216,0 +(1,10354:6630773,45649518:25952256,15094946,0 +g1,10354:6630773,45649518 +g1,10354:6237557,45649518 +r1,10354:6368629,45649518:131072,15094946,0 +g1,10354:6567858,45649518 +g1,10354:6764466,45649518 +[1,10354:6764466,45649518:25818563,15094946,0 +(1,10309:6764466,31256086:25818563,701514,196608 +(1,10307:6764466,31256086:0,701514,196608 +r1,10354:8010564,31256086:1246098,898122,196608 +k1,10307:6764466,31256086:-1246098 +) +(1,10307:6764466,31256086:1246098,701514,196608 +) +k1,10307:8215412,31256086:204848 +k1,10307:8543092,31256086:327680 +k1,10307:9225698,31256086:204849 +k1,10307:10449631,31256086:204848 +k1,10307:12123796,31256086:204848 +k1,10307:14814425,31256086:204848 +k1,10307:15678566,31256086:204849 +k1,10307:18930838,31256086:204848 +k1,10307:19667183,31256086:204848 +k1,10307:21442929,31256086:204848 +k1,10307:22839223,31256086:204849 +k1,10307:24063156,31256086:204848 +k1,10307:25764191,31256086:204848 +k1,10307:28802160,31256086:204848 +k1,10307:29619771,31256086:204849 +k1,10307:31276241,31256086:204848 +k1,10309:32583029,31256086:0 +) +(1,10309:6764466,32121166:25818563,513147,134348 +k1,10307:8576302,32121166:188509 +k1,10307:10213158,32121166:188510 +k1,10307:11783166,32121166:188509 +k1,10307:12990761,32121166:188510 +k1,10307:16105453,32121166:188509 +k1,10307:18259388,32121166:188510 +k1,10307:19209425,32121166:188509 +k1,10307:20417020,32121166:188510 +k1,10307:22020451,32121166:188509 +k1,10307:23705148,32121166:188510 +k1,10307:24997939,32121166:188509 +k1,10307:26902182,32121166:188510 +k1,10307:27446551,32121166:188509 +k1,10307:28610892,32121166:188510 +k1,10307:32583029,32121166:0 +) +(1,10309:6764466,32986246:25818563,513147,134348 +k1,10307:7602934,32986246:187040 +k1,10307:8809058,32986246:187039 +k1,10307:10465415,32986246:187040 +k1,10307:13175591,32986246:187040 +k1,10307:14788039,32986246:187040 +k1,10307:15634370,32986246:187039 +k1,10307:16177270,32986246:187040 +k1,10307:18369056,32986246:187040 +k1,10308:20339331,32986246:187040 +k1,10308:22845689,32986246:187039 +k1,10308:24426680,32986246:187040 +k1,10308:26731188,32986246:187040 +k1,10308:28837122,32986246:187040 +k1,10308:29710323,32986246:187039 +k1,10308:30916448,32986246:187040 +k1,10308:32583029,32986246:0 +) +(1,10309:6764466,33851326:25818563,513147,126483 +k1,10308:8377787,33851326:198399 +k1,10308:9107684,33851326:198400 +k1,10308:12139204,33851326:198399 +k1,10308:13939303,33851326:198399 +k1,10308:17616353,33851326:198399 +k1,10308:19017994,33851326:198400 +k1,10308:19747890,33851326:198399 +k1,10308:20965374,33851326:198399 +k1,10308:22498741,33851326:198399 +k1,10308:24359789,33851326:198400 +k1,10308:25209616,33851326:198399 +k1,10308:26794757,33851326:198399 +k1,10308:27940807,33851326:198399 +k1,10308:29707484,33851326:198400 +k1,10308:30565175,33851326:198399 +k1,10309:32583029,33851326:0 +) +(1,10309:6764466,34716406:25818563,513147,134348 +k1,10308:7996161,34716406:241446 +k1,10308:11313211,34716406:241445 +k1,10308:13153735,34716406:241446 +k1,10308:14023015,34716406:241445 +k1,10308:15467702,34716406:241446 +k1,10308:18544234,34716406:241445 +k1,10308:22978018,34716406:241446 +k1,10308:24323745,34716406:241445 +k1,10308:25312957,34716406:241446 +k1,10308:28332473,34716406:241445 +k1,10308:30374848,34716406:241446 +k1,10308:31563944,34716406:241445 +k1,10308:32583029,34716406:0 +) +(1,10309:6764466,35581486:25818563,513147,126483 +k1,10308:8621661,35581486:190614 +k1,10308:10400868,35581486:190614 +k1,10308:11277644,35581486:190614 +k1,10308:11883092,35581486:190605 +k1,10308:13174711,35581486:190614 +k1,10308:13721185,35581486:190614 +k1,10308:16607295,35581486:190614 +(1,10308:16607295,35581486:0,452978,115847 +r1,10354:18372408,35581486:1765113,568825,115847 +k1,10308:16607295,35581486:-1765113 +) +(1,10308:16607295,35581486:1765113,452978,115847 +k1,10308:16607295,35581486:3277 +h1,10308:18369131,35581486:0,411205,112570 +) +k1,10308:18563022,35581486:190614 +k1,10308:20639107,35581486:190614 +k1,10308:23170667,35581486:190614 +k1,10308:24380366,35581486:190614 +k1,10308:25936095,35581486:190614 +k1,10308:26786001,35581486:190614 +k1,10308:27332475,35581486:190614 +k1,10308:29500966,35581486:190614 +k1,10308:31896867,35581486:190614 +k1,10308:32583029,35581486:0 +) +(1,10309:6764466,36446566:25818563,513147,134348 +k1,10308:7742313,36446566:189449 +k1,10308:11177761,36446566:189450 +k1,10308:14465097,36446566:189449 +k1,10308:15673632,36446566:189450 +k1,10308:17529662,36446566:189449 +k1,10308:19134033,36446566:189449 +k1,10308:20085011,36446566:189450 +k1,10308:21045163,36446566:189449 +k1,10308:23787239,36446566:189449 +k1,10308:26672185,36446566:189450 +k1,10308:27965916,36446566:189449 +k1,10308:28903132,36446566:189450 +k1,10308:31931601,36446566:189449 +k1,10308:32583029,36446566:0 +) +(1,10309:6764466,37311646:25818563,513147,134348 +g1,10308:9592999,37311646 +g1,10308:13867912,37311646 +k1,10309:32583029,37311646:14661715 +g1,10309:32583029,37311646 +) +v1,10311:6764466,37996501:0,393216,0 +(1,10322:6764466,41866107:25818563,4262822,196608 +g1,10322:6764466,41866107 +g1,10322:6764466,41866107 +g1,10322:6567858,41866107 +(1,10322:6567858,41866107:0,4262822,196608 +r1,10354:32779637,41866107:26211779,4459430,196608 +k1,10322:6567857,41866107:-26211780 +) +(1,10322:6567858,41866107:26211779,4262822,196608 +[1,10322:6764466,41866107:25818563,4066214,0 +(1,10313:6764466,38230938:25818563,431045,106246 +(1,10312:6764466,38230938:0,0,0 +g1,10312:6764466,38230938 +g1,10312:6764466,38230938 +g1,10312:6436786,38230938 +(1,10312:6436786,38230938:0,0,0 +) +g1,10312:6764466,38230938 +) +g1,10313:9420098,38230938 +g1,10313:10415960,38230938 +g1,10313:16059178,38230938 +g1,10313:16723086,38230938 +k1,10313:16723086,38230938:24773 +h1,10313:18739583,38230938:0,0,0 +k1,10313:32583029,38230938:13843446 +g1,10313:32583029,38230938 +) +(1,10314:6764466,38915793:25818563,431045,79822 +h1,10314:6764466,38915793:0,0,0 +g1,10314:8092282,38915793 +g1,10314:9088144,38915793 +g1,10314:10084006,38915793 +g1,10314:13735500,38915793 +h1,10314:14067454,38915793:0,0,0 +k1,10314:32583030,38915793:18515576 +g1,10314:32583030,38915793 +) +(1,10315:6764466,39600648:25818563,424439,86428 +h1,10315:6764466,39600648:0,0,0 +g1,10315:7096420,39600648 +g1,10315:7428374,39600648 +g1,10315:11079867,39600648 +g1,10315:12075729,39600648 +g1,10315:15063315,39600648 +h1,10315:15727223,39600648:0,0,0 +k1,10315:32583029,39600648:16855806 +g1,10315:32583029,39600648 +) +(1,10316:6764466,40285503:25818563,424439,79822 +h1,10316:6764466,40285503:0,0,0 +h1,10316:7096420,40285503:0,0,0 +k1,10316:32583028,40285503:25486608 +g1,10316:32583028,40285503 +) +(1,10317:6764466,40970358:25818563,424439,106246 +h1,10317:6764466,40970358:0,0,0 +k1,10317:6764466,40970358:0 +h1,10317:11411821,40970358:0,0,0 +k1,10317:32583029,40970358:21171208 +g1,10317:32583029,40970358 +) +(1,10321:6764466,41786285:25818563,424439,79822 +(1,10319:6764466,41786285:0,0,0 +g1,10319:6764466,41786285 +g1,10319:6764466,41786285 +g1,10319:6436786,41786285 +(1,10319:6436786,41786285:0,0,0 +) +g1,10319:6764466,41786285 +) +g1,10321:7760328,41786285 +g1,10321:8092282,41786285 +g1,10321:9420098,41786285 +g1,10321:10747914,41786285 +g1,10321:12075730,41786285 +g1,10321:13403546,41786285 +g1,10321:14731362,41786285 +g1,10321:16059178,41786285 +g1,10321:17386994,41786285 +g1,10321:18714810,41786285 +g1,10321:20042626,41786285 +g1,10321:21370442,41786285 +h1,10321:22366304,41786285:0,0,0 +k1,10321:32583029,41786285:10216725 +g1,10321:32583029,41786285 +) +] +) +g1,10322:32583029,41866107 +g1,10322:6764466,41866107 +g1,10322:6764466,41866107 +g1,10322:32583029,41866107 +g1,10322:32583029,41866107 +) +h1,10322:6764466,42062715:0,0,0 +(1,10326:6764466,42927795:25818563,513147,115847 +h1,10325:6764466,42927795:983040,0,0 +(1,10325:7747506,42927795:0,452978,115847 +r1,10354:9864331,42927795:2116825,568825,115847 +k1,10325:7747506,42927795:-2116825 +) +(1,10325:7747506,42927795:2116825,452978,115847 +g1,10325:9509342,42927795 +h1,10325:9861054,42927795:0,411205,112570 +) +k1,10325:10035350,42927795:171019 +k1,10325:12357260,42927795:171018 +k1,10325:13732175,42927795:171019 +(1,10325:13732175,42927795:0,452978,115847 +r1,10354:14090441,42927795:358266,568825,115847 +k1,10325:13732175,42927795:-358266 +) +(1,10325:13732175,42927795:358266,452978,115847 +k1,10325:13732175,42927795:3277 +h1,10325:14087164,42927795:0,411205,112570 +) +k1,10325:14261460,42927795:171019 +k1,10325:15623923,42927795:171018 +k1,10325:16561058,42927795:171019 +k1,10325:19618938,42927795:171019 +k1,10325:23048406,42927795:171018 +k1,10325:23835463,42927795:171019 +k1,10325:24421296,42927795:170990 +k1,10325:25611400,42927795:171019 +k1,10325:26986315,42927795:171019 +k1,10325:28906489,42927795:171018 +k1,10325:31103226,42927795:171019 +k1,10326:32583029,42927795:0 +k1,10326:32583029,42927795:0 +) +(1,10329:6764466,43792875:25818563,513147,126483 +h1,10327:6764466,43792875:983040,0,0 +k1,10327:9523078,43792875:310187 +k1,10327:12164381,43792875:310187 +k1,10327:14219791,43792875:310186 +k1,10327:15634260,43792875:310187 +k1,10327:16692213,43792875:310187 +k1,10327:20372917,43792875:310187 +k1,10327:21149064,43792875:310186 +k1,10327:22327603,43792875:310187 +k1,10327:23730275,43792875:310187 +k1,10327:24811165,43792875:310187 +k1,10327:26913762,43792875:310187 +k1,10327:30093114,43792875:310186 +k1,10327:31896867,43792875:310187 +k1,10329:32583029,43792875:0 +) +(1,10329:6764466,44657955:25818563,513147,126483 +(1,10327:6764466,44657955:0,452978,115847 +r1,10354:9233003,44657955:2468537,568825,115847 +k1,10327:6764466,44657955:-2468537 +) +(1,10327:6764466,44657955:2468537,452978,115847 +k1,10327:6764466,44657955:3277 +h1,10327:9229726,44657955:0,411205,112570 +) +k1,10327:9563987,44657955:157314 +(1,10327:9563987,44657955:0,452978,115847 +r1,10354:12384236,44657955:2820249,568825,115847 +k1,10327:9563987,44657955:-2820249 +) +(1,10327:9563987,44657955:2820249,452978,115847 +k1,10327:9563987,44657955:3277 +h1,10327:12380959,44657955:0,411205,112570 +) +k1,10327:12541550,44657955:157314 +k1,10327:13381749,44657955:157314 +(1,10327:13381749,44657955:0,452978,115847 +r1,10354:16201998,44657955:2820249,568825,115847 +k1,10327:13381749,44657955:-2820249 +) +(1,10327:13381749,44657955:2820249,452978,115847 +k1,10327:13381749,44657955:3277 +h1,10327:16198721,44657955:0,411205,112570 +) +k1,10327:16532982,44657955:157314 +k1,10327:17306334,44657955:157314 +k1,10327:19126296,44657955:157314 +k1,10327:19942901,44657955:157313 +k1,10327:21119300,44657955:157314 +k1,10327:22978584,44657955:157314 +(1,10327:22978584,44657955:0,459977,115847 +r1,10354:24040273,44657955:1061689,575824,115847 +k1,10327:22978584,44657955:-1061689 +) +(1,10327:22978584,44657955:1061689,459977,115847 +k1,10327:22978584,44657955:3277 +h1,10327:24036996,44657955:0,411205,112570 +) +k1,10327:24197587,44657955:157314 +k1,10327:25943494,44657955:157314 +k1,10327:27150695,44657955:157314 +k1,10327:29586696,44657955:157314 +h1,10327:30557284,44657955:0,0,0 +k1,10327:30714598,44657955:157314 +k1,10327:32583029,44657955:0 +) +(1,10329:6764466,45523035:25818563,513147,126483 +g1,10328:7911346,45523035 +g1,10328:10228043,45523035 +g1,10328:11236642,45523035 +g1,10328:12454956,45523035 +g1,10328:13746670,45523035 +g1,10328:14605191,45523035 +g1,10328:15823505,45523035 +g1,10328:18785077,45523035 +g1,10328:20776716,45523035 +k1,10329:32583029,45523035:8606845 +g1,10329:32583029,45523035 +) +] +g1,10354:32583029,45649518 +) +] +(1,10354:32583029,45706769:0,0,0 +g1,10354:32583029,45706769 +) +) +] +(1,10354:6630773,47279633:25952256,0,0 +h1,10354:6630773,47279633:25952256,0,0 +) +] +(1,10354:4262630,4025873:0,0,0 +[1,10354:-473656,4025873:0,0,0 +(1,10354:-473656,-710413:0,0,0 +(1,10354:-473656,-710413:0,0,0 +g1,10354:-473656,-710413 +) +g1,10354:-473656,-710413 +) +] +) +] +!34124 +}164 +Input:1531:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1532:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1533:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1534:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1535:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1536:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1537:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1538:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1539:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1540:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!952 +{165 +[1,10385:4262630,47279633:28320399,43253760,0 +(1,10385:4262630,4025873:0,0,0 +[1,10385:-473656,4025873:0,0,0 +(1,10385:-473656,-710413:0,0,0 +(1,10385:-473656,-644877:0,0,0 +k1,10385:-473656,-644877:-65536 ) -] +(1,10385:-473656,4736287:0,0,0 +k1,10385:-473656,4736287:5209943 ) -g1,11061:32583029,45347763 -g1,11061:6630773,45347763 -g1,11061:6630773,45347763 -g1,11061:32583029,45347763 -g1,11061:32583029,45347763 +g1,10385:-473656,-710413 ) -h1,11061:6630773,45544371:0,0,0 ] -(1,11066:32583029,45706769:0,0,0 -g1,11066:32583029,45706769 ) +[1,10385:6630773,47279633:25952256,43253760,0 +[1,10385:6630773,4812305:25952256,786432,0 +(1,10385:6630773,4812305:25952256,505283,134348 +(1,10385:6630773,4812305:25952256,505283,134348 +g1,10385:3078558,4812305 +[1,10385:3078558,4812305:0,0,0 +(1,10385:3078558,2439708:0,1703936,0 +k1,10385:1358238,2439708:-1720320 +(1,8606:1358238,2439708:1720320,1703936,0 +(1,8606:1358238,2439708:1179648,16384,0 +r1,10385:2537886,2439708:1179648,16384,0 ) -] -(1,11066:6630773,47279633:25952256,0,0 -h1,11066:6630773,47279633:25952256,0,0 +g1,8606:3062174,2439708 +(1,8606:3062174,2439708:16384,1703936,0 +[1,8606:3062174,2439708:25952256,1703936,0 +(1,8606:3062174,1915420:25952256,1179648,0 +(1,8606:3062174,1915420:16384,1179648,0 +r1,10385:3078558,1915420:16384,1179648,0 +) +k1,8606:29014430,1915420:25935872 +g1,8606:29014430,1915420 ) ] -(1,11066:4262630,4025873:0,0,0 -[1,11066:-473656,4025873:0,0,0 -(1,11066:-473656,-710413:0,0,0 -(1,11066:-473656,-710413:0,0,0 -g1,11066:-473656,-710413 ) -g1,11066:-473656,-710413 ) -] ) ] -!26325 -}186 -Input:1661:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1662:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1663:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1664:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1665:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1666:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!576 -{187 -[1,11180:4262630,47279633:28320399,43253760,0 -(1,11180:4262630,4025873:0,0,0 -[1,11180:-473656,4025873:0,0,0 -(1,11180:-473656,-710413:0,0,0 -(1,11180:-473656,-644877:0,0,0 -k1,11180:-473656,-644877:-65536 +[1,10385:3078558,4812305:0,0,0 +(1,10385:3078558,2439708:0,1703936,0 +g1,10385:29030814,2439708 +g1,10385:36135244,2439708 +(1,8606:36135244,2439708:1720320,1703936,0 +(1,8606:36135244,2439708:16384,1703936,0 +[1,8606:36135244,2439708:25952256,1703936,0 +(1,8606:36135244,1915420:25952256,1179648,0 +(1,8606:36135244,1915420:16384,1179648,0 +r1,10385:36151628,1915420:16384,1179648,0 ) -(1,11180:-473656,4736287:0,0,0 -k1,11180:-473656,4736287:5209943 -) -g1,11180:-473656,-710413 +k1,8606:62087500,1915420:25935872 +g1,8606:62087500,1915420 ) ] ) -[1,11180:6630773,47279633:25952256,43253760,0 -[1,11180:6630773,4812305:25952256,786432,0 -(1,11180:6630773,4812305:25952256,505283,134348 -(1,11180:6630773,4812305:25952256,505283,134348 -g1,11180:3078558,4812305 -[1,11180:3078558,4812305:0,0,0 -(1,11180:3078558,2439708:0,1703936,0 -k1,11180:1358238,2439708:-1720320 -(1,10825:1358238,2439708:1720320,1703936,0 -(1,10825:1358238,2439708:1179648,16384,0 -r1,11180:2537886,2439708:1179648,16384,0 +g1,8606:36675916,2439708 +(1,8606:36675916,2439708:1179648,16384,0 +r1,10385:37855564,2439708:1179648,16384,0 ) -g1,10825:3062174,2439708 -(1,10825:3062174,2439708:16384,1703936,0 -[1,10825:3062174,2439708:25952256,1703936,0 -(1,10825:3062174,1915420:25952256,1179648,0 -(1,10825:3062174,1915420:16384,1179648,0 -r1,11180:3078558,1915420:16384,1179648,0 ) -k1,10825:29014430,1915420:25935872 -g1,10825:29014430,1915420 +k1,10385:3078556,2439708:-34777008 ) ] +[1,10385:3078558,4812305:0,0,0 +(1,10385:3078558,49800853:0,16384,2228224 +k1,10385:1358238,49800853:-1720320 +(1,8606:1358238,49800853:1720320,16384,2228224 +(1,8606:1358238,49800853:1179648,16384,0 +r1,10385:2537886,49800853:1179648,16384,0 ) +g1,8606:3062174,49800853 +(1,8606:3062174,52029077:16384,1703936,0 +[1,8606:3062174,52029077:25952256,1703936,0 +(1,8606:3062174,51504789:25952256,1179648,0 +(1,8606:3062174,51504789:16384,1179648,0 +r1,10385:3078558,51504789:16384,1179648,0 ) +k1,8606:29014430,51504789:25935872 +g1,8606:29014430,51504789 ) ] -[1,11180:3078558,4812305:0,0,0 -(1,11180:3078558,2439708:0,1703936,0 -g1,11180:29030814,2439708 -g1,11180:36135244,2439708 -(1,10825:36135244,2439708:1720320,1703936,0 -(1,10825:36135244,2439708:16384,1703936,0 -[1,10825:36135244,2439708:25952256,1703936,0 -(1,10825:36135244,1915420:25952256,1179648,0 -(1,10825:36135244,1915420:16384,1179648,0 -r1,11180:36151628,1915420:16384,1179648,0 ) -k1,10825:62087500,1915420:25935872 -g1,10825:62087500,1915420 +) +) +] +[1,10385:3078558,4812305:0,0,0 +(1,10385:3078558,49800853:0,16384,2228224 +g1,10385:29030814,49800853 +g1,10385:36135244,49800853 +(1,8606:36135244,49800853:1720320,16384,2228224 +(1,8606:36135244,52029077:16384,1703936,0 +[1,8606:36135244,52029077:25952256,1703936,0 +(1,8606:36135244,51504789:25952256,1179648,0 +(1,8606:36135244,51504789:16384,1179648,0 +r1,10385:36151628,51504789:16384,1179648,0 +) +k1,8606:62087500,51504789:25935872 +g1,8606:62087500,51504789 ) ] ) -g1,10825:36675916,2439708 -(1,10825:36675916,2439708:1179648,16384,0 -r1,11180:37855564,2439708:1179648,16384,0 +g1,8606:36675916,49800853 +(1,8606:36675916,49800853:1179648,16384,0 +r1,10385:37855564,49800853:1179648,16384,0 ) ) -k1,11180:3078556,2439708:-34777008 +k1,10385:3078556,49800853:-34777008 ) ] -[1,11180:3078558,4812305:0,0,0 -(1,11180:3078558,49800853:0,16384,2228224 -k1,11180:1358238,49800853:-1720320 -(1,10825:1358238,49800853:1720320,16384,2228224 -(1,10825:1358238,49800853:1179648,16384,0 -r1,11180:2537886,49800853:1179648,16384,0 -) -g1,10825:3062174,49800853 -(1,10825:3062174,52029077:16384,1703936,0 -[1,10825:3062174,52029077:25952256,1703936,0 -(1,10825:3062174,51504789:25952256,1179648,0 -(1,10825:3062174,51504789:16384,1179648,0 -r1,11180:3078558,51504789:16384,1179648,0 -) -k1,10825:29014430,51504789:25935872 -g1,10825:29014430,51504789 -) -] -) -) -) -] -[1,11180:3078558,4812305:0,0,0 -(1,11180:3078558,49800853:0,16384,2228224 -g1,11180:29030814,49800853 -g1,11180:36135244,49800853 -(1,10825:36135244,49800853:1720320,16384,2228224 -(1,10825:36135244,52029077:16384,1703936,0 -[1,10825:36135244,52029077:25952256,1703936,0 -(1,10825:36135244,51504789:25952256,1179648,0 -(1,10825:36135244,51504789:16384,1179648,0 -r1,11180:36151628,51504789:16384,1179648,0 -) -k1,10825:62087500,51504789:25935872 -g1,10825:62087500,51504789 -) -] -) -g1,10825:36675916,49800853 -(1,10825:36675916,49800853:1179648,16384,0 -r1,11180:37855564,49800853:1179648,16384,0 -) -) -k1,11180:3078556,49800853:-34777008 -) -] -g1,11180:6630773,4812305 -k1,11180:23552825,4812305:15726675 -g1,11180:25175496,4812305 -g1,11180:25997972,4812305 -g1,11180:28481131,4812305 -g1,11180:30046786,4812305 -) -) -] -[1,11180:6630773,45706769:25952256,40108032,0 -(1,11180:6630773,45706769:25952256,40108032,0 -(1,11180:6630773,45706769:0,0,0 -g1,11180:6630773,45706769 -) -[1,11180:6630773,45706769:25952256,40108032,0 -(1,11065:6630773,6254097:25952256,513147,134348 -h1,11064:6630773,6254097:983040,0,0 -k1,11064:8180796,6254097:152140 -k1,11064:9825894,6254097:152188 -k1,11064:11044352,6254097:152187 -k1,11064:13626614,6254097:152187 -k1,11064:14134661,6254097:152187 -k1,11064:16982344,6254097:152187 -k1,11064:18082183,6254097:152188 -k1,11064:21077977,6254097:152187 -k1,11064:23010777,6254097:152187 -k1,11064:23887792,6254097:152187 -k1,11064:25059064,6254097:152187 -k1,11064:27906748,6254097:152188 -k1,11064:29914259,6254097:152187 -k1,11064:30597943,6254097:152187 -k1,11065:32583029,6254097:0 -) -(1,11065:6630773,7095585:25952256,513147,134348 -k1,11064:7926092,7095585:168100 -k1,11064:10245083,7095585:168099 -k1,11064:11213378,7095585:168100 -k1,11064:12762322,7095585:168100 -k1,11064:15740605,7095585:168099 -k1,11064:16440202,7095585:168100 -k1,11064:19889034,7095585:168100 -k1,11064:21451084,7095585:168099 -k1,11064:22903690,7095585:168100 -k1,11064:23731082,7095585:168100 -k1,11064:27721896,7095585:168099 -k1,11064:30092006,7095585:168100 -k1,11064:32583029,7095585:0 -) -(1,11065:6630773,7937073:25952256,513147,126483 -g1,11064:10029470,7937073 -g1,11064:11182248,7937073 -g1,11064:12856692,7937073 -g1,11064:15021346,7937073 -g1,11064:15576435,7937073 -g1,11064:17058859,7937073 -g1,11064:18882726,7937073 -g1,11064:19733383,7937073 -g1,11064:20951697,7937073 -g1,11064:21565769,7937073 -g1,11064:25231853,7937073 -g1,11064:28215051,7937073 -g1,11064:29065708,7937073 -k1,11065:32583029,7937073:2598506 -g1,11065:32583029,7937073 -) -(1,11067:6630773,8778561:25952256,513147,134348 -h1,11066:6630773,8778561:983040,0,0 -k1,11066:8374634,8778561:132986 -k1,11066:9526705,8778561:132986 -k1,11066:12741848,8778561:132985 -k1,11066:13541990,8778561:132986 -(1,11066:13541990,8778561:0,452978,115847 -r1,11180:15307103,8778561:1765113,568825,115847 -k1,11066:13541990,8778561:-1765113 -) -(1,11066:13541990,8778561:1765113,452978,115847 -k1,11066:13541990,8778561:3277 -h1,11066:15303826,8778561:0,411205,112570 -) -k1,11066:15440089,8778561:132986 -k1,11066:16441427,8778561:132986 -k1,11066:17508955,8778561:132985 -k1,11066:17997801,8778561:132986 -k1,11066:20396367,8778561:132986 -k1,11066:23601681,8778561:132986 -k1,11066:24682317,8778561:132985 -k1,11066:28096035,8778561:132986 -(1,11066:28096035,8778561:0,452978,115847 -r1,11180:30564572,8778561:2468537,568825,115847 -k1,11066:28096035,8778561:-2468537 -) -(1,11066:28096035,8778561:2468537,452978,115847 -k1,11066:28096035,8778561:3277 -h1,11066:30561295,8778561:0,411205,112570 -) -k1,11066:30697558,8778561:132986 -k1,11066:32583029,8778561:0 -) -(1,11067:6630773,9620049:25952256,505283,134348 -g1,11066:7361499,9620049 -g1,11066:9073954,9620049 -g1,11066:11315940,9620049 -g1,11066:12534254,9620049 -g1,11066:14114327,9620049 -g1,11066:17210903,9620049 -g1,11066:19524979,9620049 -g1,11066:20494911,9620049 -g1,11066:23766468,9620049 -g1,11066:24617125,9620049 -g1,11066:26019595,9620049 -k1,11067:32583029,9620049:3109031 -g1,11067:32583029,9620049 -) -v1,11073:6630773,10909466:0,393216,0 -(1,11074:6630773,12309975:25952256,1793725,0 -g1,11074:6630773,12309975 -g1,11074:6303093,12309975 -r1,11180:6401397,12309975:98304,1793725,0 -g1,11074:6600626,12309975 -g1,11074:6797234,12309975 -[1,11074:6797234,12309975:25785795,1793725,0 -(1,11074:6797234,11342004:25785795,825754,196608 -(1,11073:6797234,11342004:0,825754,196608 -r1,11180:7890375,11342004:1093141,1022362,196608 -k1,11073:6797234,11342004:-1093141 -) -(1,11073:6797234,11342004:1093141,825754,196608 -) -k1,11073:8087996,11342004:197621 -k1,11073:9405925,11342004:327680 -k1,11073:11646960,11342004:197622 -k1,11073:13303412,11342004:197621 -k1,11073:14831415,11342004:197622 -k1,11073:17724532,11342004:197621 -k1,11073:18573582,11342004:197622 -k1,11073:21579421,11342004:197621 -k1,11073:22796127,11342004:197621 -k1,11073:24731764,11342004:197622 -k1,11073:25545423,11342004:197621 -k1,11073:26098905,11342004:197622 -k1,11073:28498536,11342004:197621 -k1,11073:29934133,11342004:197622 -k1,11073:30817916,11342004:197621 -(1,11073:30817916,11342004:0,452978,115847 -r1,11180:32583029,11342004:1765113,568825,115847 -k1,11073:30817916,11342004:-1765113 -) -(1,11073:30817916,11342004:1765113,452978,115847 -k1,11073:30817916,11342004:3277 -h1,11073:32579752,11342004:0,411205,112570 -) -k1,11073:32583029,11342004:0 -) -(1,11074:6797234,12183492:25785795,513147,126483 -g1,11073:8203636,12183492 -g1,11073:10784443,12183492 -g1,11073:13012667,12183492 -g1,11073:14763789,12183492 -g1,11073:17658514,12183492 -(1,11073:17658514,12183492:0,452978,115847 -r1,11180:19423627,12183492:1765113,568825,115847 -k1,11073:17658514,12183492:-1765113 -) -(1,11073:17658514,12183492:1765113,452978,115847 -k1,11073:17658514,12183492:3277 -h1,11073:19420350,12183492:0,411205,112570 -) -g1,11073:19622856,12183492 -g1,11073:21590902,12183492 -g1,11073:22537897,12183492 -g1,11073:23396418,12183492 -k1,11074:32583029,12183492:7624888 -g1,11074:32583029,12183492 -) -] -g1,11074:32583029,12309975 -) -h1,11074:6630773,12309975:0,0,0 -(1,11077:6630773,13599393:25952256,505283,134348 -h1,11076:6630773,13599393:983040,0,0 -k1,11076:10982232,13599393:248250 -k1,11076:12334764,13599393:248250 -k1,11076:14058230,13599393:248251 -k1,11076:16089715,13599393:248250 -k1,11076:17988162,13599393:248250 -k1,11076:20922733,13599393:248250 -k1,11076:22362428,13599393:248250 -k1,11076:24469935,13599393:248251 -k1,11076:28131955,13599393:248250 -k1,11076:31896867,13599393:248250 -k1,11076:32583029,13599393:0 -) -(1,11077:6630773,14440881:25952256,513147,126483 -k1,11076:8430556,14440881:291144 -k1,11076:10298495,14440881:291143 -k1,11076:12032086,14440881:291144 -k1,11076:14067143,14440881:291144 -k1,11076:14974324,14440881:291143 -k1,11076:16284553,14440881:291144 -k1,11076:19567416,14440881:291144 -k1,11076:21887554,14440881:291143 -k1,11076:24273884,14440881:291144 -k1,11076:25335731,14440881:291144 -k1,11076:29240529,14440881:291143 -k1,11076:29887533,14440881:291144 -k1,11076:32583029,14440881:0 -) -(1,11077:6630773,15282369:25952256,513147,126483 -k1,11076:8634461,15282369:265673 -k1,11076:11653301,15282369:265673 -k1,11076:12680502,15282369:265673 -k1,11076:16800347,15282369:265673 -k1,11076:17597517,15282369:265673 -k1,11076:21453252,15282369:265673 -k1,11076:22405086,15282369:265672 -k1,11076:23026619,15282369:265673 -k1,11076:24391986,15282369:265673 -k1,11076:25309087,15282369:265673 -k1,11076:26593845,15282369:265673 -k1,11076:29728684,15282369:265673 -k1,11076:31191044,15282369:265673 -k1,11076:32583029,15282369:0 -) -(1,11077:6630773,16123857:25952256,513147,134348 -g1,11076:8568017,16123857 -g1,11076:9426538,16123857 -g1,11076:9981627,16123857 -g1,11076:12876352,16123857 -g1,11076:15402764,16123857 -g1,11076:17212213,16123857 -g1,11076:19442403,16123857 -g1,11076:20293060,16123857 -g1,11076:21280687,16123857 -k1,11077:32583029,16123857:8046513 -g1,11077:32583029,16123857 -) -(1,11079:6630773,16965345:25952256,513147,126483 -h1,11078:6630773,16965345:983040,0,0 -k1,11078:8760340,16965345:192978 -k1,11078:10259451,16965345:192978 -k1,11078:12034469,16965345:192979 -k1,11078:15647771,16965345:192978 -k1,11078:16859834,16965345:192978 -k1,11078:20134970,16965345:192978 -k1,11078:20987241,16965345:192979 -k1,11078:22277947,16965345:192978 -k1,11078:25166421,16965345:192978 -k1,11078:26927020,16965345:192978 -k1,11078:29153581,16965345:192979 -k1,11078:29962597,16965345:192978 -k1,11078:31358816,16965345:192978 -k1,11079:32583029,16965345:0 -) -(1,11079:6630773,17806833:25952256,473825,7863 -k1,11079:32583030,17806833:24511120 -g1,11079:32583030,17806833 -) -v1,11081:6630773,18920940:0,393216,0 -(1,11094:6630773,23772929:25952256,5245205,196608 -g1,11094:6630773,23772929 -g1,11094:6630773,23772929 -g1,11094:6434165,23772929 -(1,11094:6434165,23772929:0,5245205,196608 -r1,11180:32779637,23772929:26345472,5441813,196608 -k1,11094:6434165,23772929:-26345472 -) -(1,11094:6434165,23772929:26345472,5245205,196608 -[1,11094:6630773,23772929:25952256,5048597,0 -(1,11083:6630773,19008496:25952256,284164,6290 -(1,11082:6630773,19008496:0,0,0 -g1,11082:6630773,19008496 -g1,11082:6630773,19008496 -g1,11082:6303093,19008496 -(1,11082:6303093,19008496:0,0,0 -) -g1,11082:6630773,19008496 -) -h1,11083:7579210,19008496:0,0,0 -k1,11083:32583030,19008496:25003820 -g1,11083:32583030,19008496 -) -(1,11093:6630773,19674674:25952256,410518,82312 -(1,11085:6630773,19674674:0,0,0 -g1,11085:6630773,19674674 -g1,11085:6630773,19674674 -g1,11085:6303093,19674674 -(1,11085:6303093,19674674:0,0,0 -) -g1,11085:6630773,19674674 -) -g1,11093:7579210,19674674 -g1,11093:11372959,19674674 -g1,11093:13902125,19674674 -g1,11093:14534417,19674674 -g1,11093:16747437,19674674 -h1,11093:17063583,19674674:0,0,0 -k1,11093:32583029,19674674:15519446 -g1,11093:32583029,19674674 -) -(1,11093:6630773,20340852:25952256,410518,76021 -h1,11093:6630773,20340852:0,0,0 -g1,11093:7579210,20340852 -g1,11093:7895356,20340852 -g1,11093:8843793,20340852 -g1,11093:12005250,20340852 -h1,11093:12321396,20340852:0,0,0 -k1,11093:32583028,20340852:20261632 -g1,11093:32583028,20340852 -) -(1,11093:6630773,21007030:25952256,404226,76021 -h1,11093:6630773,21007030:0,0,0 -g1,11093:7579210,21007030 -g1,11093:7895356,21007030 -g1,11093:8211502,21007030 -g1,11093:8527648,21007030 -g1,11093:9159940,21007030 -g1,11093:10108378,21007030 -h1,11093:13269835,21007030:0,0,0 -k1,11093:32583029,21007030:19313194 -g1,11093:32583029,21007030 -) -(1,11093:6630773,21673208:25952256,404226,76021 -h1,11093:6630773,21673208:0,0,0 -g1,11093:7579210,21673208 -g1,11093:7895356,21673208 -h1,11093:8211502,21673208:0,0,0 -k1,11093:32583030,21673208:24371528 -g1,11093:32583030,21673208 -) -(1,11093:6630773,22339386:25952256,404226,107478 -h1,11093:6630773,22339386:0,0,0 -g1,11093:7579210,22339386 -g1,11093:7895356,22339386 -h1,11093:14850561,22339386:0,0,0 -k1,11093:32583029,22339386:17732468 -g1,11093:32583029,22339386 -) -(1,11093:6630773,23005564:25952256,404226,76021 -h1,11093:6630773,23005564:0,0,0 -g1,11093:7579210,23005564 -h1,11093:7895356,23005564:0,0,0 -k1,11093:32583028,23005564:24687672 -g1,11093:32583028,23005564 -) -(1,11093:6630773,23671742:25952256,410518,101187 -h1,11093:6630773,23671742:0,0,0 -g1,11093:7579210,23671742 -g1,11093:11056813,23671742 -k1,11093:11056813,23671742:0 -h1,11093:17063581,23671742:0,0,0 -k1,11093:32583029,23671742:15519448 -g1,11093:32583029,23671742 -) -] -) -g1,11094:32583029,23772929 -g1,11094:6630773,23772929 -g1,11094:6630773,23772929 -g1,11094:32583029,23772929 -g1,11094:32583029,23772929 -) -h1,11094:6630773,23969537:0,0,0 -(1,11098:6630773,25258955:25952256,513147,134348 -h1,11097:6630773,25258955:983040,0,0 -k1,11097:9331982,25258955:256716 -k1,11097:10457049,25258955:256715 -k1,11097:12295804,25258955:256716 -k1,11097:13571604,25258955:256715 -k1,11097:16910478,25258955:256716 -k1,11097:17834350,25258955:256716 -k1,11097:19009880,25258955:256715 -k1,11097:21079322,25258955:256716 -k1,11097:23323745,25258955:256716 -k1,11097:25515083,25258955:256715 -k1,11097:28467295,25258955:256716 -(1,11097:28467295,25258955:0,452978,115847 -r1,11180:29880696,25258955:1413401,568825,115847 -k1,11097:28467295,25258955:-1413401 -) -(1,11097:28467295,25258955:1413401,452978,115847 -k1,11097:28467295,25258955:3277 -h1,11097:29877419,25258955:0,411205,112570 -) -k1,11097:30311081,25258955:256715 -k1,11097:31923737,25258955:256716 -k1,11098:32583029,25258955:0 -) -(1,11098:6630773,26100443:25952256,505283,134348 -(1,11097:6630773,26100443:0,452978,115847 -r1,11180:8044174,26100443:1413401,568825,115847 -k1,11097:6630773,26100443:-1413401 -) -(1,11097:6630773,26100443:1413401,452978,115847 -k1,11097:6630773,26100443:3277 -h1,11097:8040897,26100443:0,411205,112570 -) -g1,11097:8243403,26100443 -g1,11097:8974129,26100443 -g1,11097:12263381,26100443 -g1,11097:13078648,26100443 -g1,11097:15556564,26100443 -h1,11097:16527152,26100443:0,0,0 -g1,11097:16726381,26100443 -g1,11097:17734980,26100443 -g1,11097:19432362,26100443 -h1,11097:20627739,26100443:0,0,0 -k1,11098:32583029,26100443:11574526 -g1,11098:32583029,26100443 -) -v1,11100:6630773,27214550:0,393216,0 -(1,11180:6630773,45510161:25952256,18688827,196608 -g1,11180:6630773,45510161 -g1,11180:6630773,45510161 -g1,11180:6434165,45510161 -(1,11180:6434165,45510161:0,18688827,196608 -r1,11180:32779637,45510161:26345472,18885435,196608 -k1,11180:6434165,45510161:-26345472 -) -(1,11180:6434165,45510161:26345472,18688827,196608 -[1,11180:6630773,45510161:25952256,18492219,0 -(1,11102:6630773,27422168:25952256,404226,0 -(1,11101:6630773,27422168:0,0,0 -g1,11101:6630773,27422168 -g1,11101:6630773,27422168 -g1,11101:6303093,27422168 -(1,11101:6303093,27422168:0,0,0 -) -g1,11101:6630773,27422168 -) -h1,11102:7263064,27422168:0,0,0 -k1,11102:32583028,27422168:25319964 -g1,11102:32583028,27422168 -) -(1,11179:6630773,28088346:25952256,410518,107478 -(1,11104:6630773,28088346:0,0,0 -g1,11104:6630773,28088346 -g1,11104:6630773,28088346 -g1,11104:6303093,28088346 -(1,11104:6303093,28088346:0,0,0 -) -g1,11104:6630773,28088346 -) -g1,11179:7579210,28088346 -g1,11179:10424521,28088346 -g1,11179:13585978,28088346 -g1,11179:15482853,28088346 -g1,11179:18012019,28088346 -g1,11179:20857331,28088346 -g1,11179:24334934,28088346 -g1,11179:26547954,28088346 -g1,11179:27180246,28088346 -k1,11179:27180246,28088346:0 -h1,11179:28760975,28088346:0,0,0 -k1,11179:32583029,28088346:3822054 -g1,11179:32583029,28088346 -) -(1,11179:6630773,28754524:25952256,404226,107478 -h1,11179:6630773,28754524:0,0,0 -g1,11179:7579210,28754524 -g1,11179:7895356,28754524 -g1,11179:8211502,28754524 -g1,11179:8527648,28754524 -g1,11179:8843794,28754524 -g1,11179:10740668,28754524 -g1,11179:11372960,28754524 -g1,11179:13269835,28754524 -g1,11179:13902127,28754524 -g1,11179:14534419,28754524 -g1,11179:16747439,28754524 -g1,11179:17379731,28754524 -g1,11179:18012023,28754524 -g1,11179:20225043,28754524 -g1,11179:21173480,28754524 -g1,11179:21805772,28754524 -g1,11179:23702647,28754524 -g1,11179:27496395,28754524 -g1,11179:28128687,28754524 -k1,11179:28128687,28754524:0 -h1,11179:29709416,28754524:0,0,0 -k1,11179:32583029,28754524:2873613 -g1,11179:32583029,28754524 -) -(1,11179:6630773,29420702:25952256,410518,82312 -h1,11179:6630773,29420702:0,0,0 -g1,11179:7579210,29420702 -g1,11179:7895356,29420702 -g1,11179:8211502,29420702 -g1,11179:8527648,29420702 -g1,11179:8843794,29420702 -g1,11179:12005251,29420702 -g1,11179:12637543,29420702 -g1,11179:14534418,29420702 -g1,11179:17063584,29420702 -h1,11179:18328167,29420702:0,0,0 -k1,11179:32583029,29420702:14254862 -g1,11179:32583029,29420702 -) -(1,11179:6630773,30086880:25952256,404226,76021 -h1,11179:6630773,30086880:0,0,0 -g1,11179:7579210,30086880 -h1,11179:7895356,30086880:0,0,0 -k1,11179:32583028,30086880:24687672 -g1,11179:32583028,30086880 -) -(1,11179:6630773,30753058:25952256,379060,6290 -h1,11179:6630773,30753058:0,0,0 -g1,11179:7579210,30753058 -g1,11179:7895356,30753058 -g1,11179:8211502,30753058 -g1,11179:8527648,30753058 -g1,11179:8843794,30753058 -g1,11179:10740668,30753058 -g1,11179:11689106,30753058 -h1,11179:12005252,30753058:0,0,0 -k1,11179:32583028,30753058:20577776 -g1,11179:32583028,30753058 -) -(1,11179:6630773,31419236:25952256,379060,101187 -h1,11179:6630773,31419236:0,0,0 -g1,11179:7579210,31419236 -g1,11179:7895356,31419236 -g1,11179:8211502,31419236 -g1,11179:8527648,31419236 -g1,11179:8843794,31419236 -g1,11179:10740668,31419236 -g1,11179:11689106,31419236 -h1,11179:12005252,31419236:0,0,0 -k1,11179:32583028,31419236:20577776 -g1,11179:32583028,31419236 -) -(1,11179:6630773,32085414:25952256,404226,76021 -h1,11179:6630773,32085414:0,0,0 -g1,11179:7579210,32085414 -g1,11179:7895356,32085414 -g1,11179:8211502,32085414 -g1,11179:8527648,32085414 -g1,11179:8843794,32085414 -g1,11179:9792231,32085414 -g1,11179:10740669,32085414 -h1,11179:14534417,32085414:0,0,0 -k1,11179:32583029,32085414:18048612 -g1,11179:32583029,32085414 -) -(1,11179:6630773,32751592:25952256,410518,101187 -h1,11179:6630773,32751592:0,0,0 -g1,11179:7579210,32751592 -g1,11179:7895356,32751592 -g1,11179:8211502,32751592 -g1,11179:8527648,32751592 -g1,11179:8843794,32751592 -g1,11179:9792231,32751592 -g1,11179:10740669,32751592 -g1,11179:18012020,32751592 -g1,11179:18644312,32751592 -h1,11179:20541186,32751592:0,0,0 -k1,11179:32583029,32751592:12041843 -g1,11179:32583029,32751592 -) -(1,11179:6630773,33417770:25952256,410518,107478 -h1,11179:6630773,33417770:0,0,0 -g1,11179:7579210,33417770 -g1,11179:7895356,33417770 -g1,11179:8211502,33417770 -g1,11179:8527648,33417770 -g1,11179:8843794,33417770 -g1,11179:9476086,33417770 -g1,11179:10424524,33417770 -g1,11179:16431293,33417770 -g1,11179:18960459,33417770 -g1,11179:22121916,33417770 -g1,11179:25599519,33417770 -k1,11179:25599519,33417770:0 -h1,11179:29393267,33417770:0,0,0 -k1,11179:32583029,33417770:3189762 -g1,11179:32583029,33417770 -) -(1,11179:6630773,34083948:25952256,410518,82312 -h1,11179:6630773,34083948:0,0,0 -g1,11179:7579210,34083948 -g1,11179:7895356,34083948 -g1,11179:8211502,34083948 -g1,11179:8527648,34083948 -g1,11179:8843794,34083948 -g1,11179:9159940,34083948 -g1,11179:9476086,34083948 -g1,11179:9792232,34083948 -g1,11179:10108378,34083948 -g1,11179:13585981,34083948 -g1,11179:17063584,34083948 -h1,11179:18012021,34083948:0,0,0 -k1,11179:32583029,34083948:14571008 -g1,11179:32583029,34083948 -) -(1,11179:6630773,34750126:25952256,410518,82312 -h1,11179:6630773,34750126:0,0,0 -g1,11179:7579210,34750126 -g1,11179:7895356,34750126 -g1,11179:8211502,34750126 -g1,11179:8527648,34750126 -g1,11179:8843794,34750126 -g1,11179:9792231,34750126 -g1,11179:10740669,34750126 -g1,11179:13585981,34750126 -h1,11179:14534418,34750126:0,0,0 -k1,11179:32583030,34750126:18048612 -g1,11179:32583030,34750126 -) -(1,11179:6630773,35416304:25952256,410518,101187 -h1,11179:6630773,35416304:0,0,0 -g1,11179:7579210,35416304 -g1,11179:7895356,35416304 -g1,11179:8211502,35416304 -g1,11179:8527648,35416304 -g1,11179:8843794,35416304 -g1,11179:15798999,35416304 -g1,11179:16747437,35416304 -h1,11179:18012020,35416304:0,0,0 -k1,11179:32583029,35416304:14571009 -g1,11179:32583029,35416304 -) -(1,11179:6630773,36082482:25952256,410518,101187 -h1,11179:6630773,36082482:0,0,0 -g1,11179:7579210,36082482 -g1,11179:7895356,36082482 -g1,11179:8211502,36082482 -g1,11179:8527648,36082482 -g1,11179:8843794,36082482 -g1,11179:11689105,36082482 -g1,11179:12637543,36082482 -h1,11179:20541185,36082482:0,0,0 -k1,11179:32583029,36082482:12041844 -g1,11179:32583029,36082482 -) -(1,11179:6630773,36748660:25952256,410518,101187 -h1,11179:6630773,36748660:0,0,0 -g1,11179:7579210,36748660 -g1,11179:7895356,36748660 -g1,11179:8211502,36748660 -g1,11179:8527648,36748660 -g1,11179:8843794,36748660 -g1,11179:9792231,36748660 -g1,11179:10740669,36748660 -g1,11179:13585981,36748660 -h1,11179:18328166,36748660:0,0,0 -k1,11179:32583029,36748660:14254863 -g1,11179:32583029,36748660 -) -(1,11179:6630773,37414838:25952256,410518,76021 -h1,11179:6630773,37414838:0,0,0 -g1,11179:7579210,37414838 -g1,11179:7895356,37414838 -g1,11179:8211502,37414838 -g1,11179:8527648,37414838 -g1,11179:8843794,37414838 -g1,11179:9792231,37414838 -g1,11179:12321397,37414838 -g1,11179:13269834,37414838 -h1,11179:17695874,37414838:0,0,0 -k1,11179:32583029,37414838:14887155 -g1,11179:32583029,37414838 -) -(1,11179:6630773,38081016:25952256,410518,76021 -h1,11179:6630773,38081016:0,0,0 -g1,11179:7579210,38081016 -g1,11179:7895356,38081016 -g1,11179:8211502,38081016 -g1,11179:8527648,38081016 -g1,11179:8843794,38081016 -g1,11179:9159940,38081016 -g1,11179:9476086,38081016 -g1,11179:9792232,38081016 -g1,11179:10108378,38081016 -h1,11179:13269835,38081016:0,0,0 -k1,11179:32583029,38081016:19313194 -g1,11179:32583029,38081016 -) -(1,11179:6630773,38747194:25952256,410518,101187 -h1,11179:6630773,38747194:0,0,0 -g1,11179:7579210,38747194 -g1,11179:7895356,38747194 -g1,11179:8211502,38747194 -g1,11179:8527648,38747194 -g1,11179:8843794,38747194 -g1,11179:10424523,38747194 -g1,11179:11372960,38747194 -g1,11179:13902126,38747194 -g1,11179:14850563,38747194 -h1,11179:16431291,38747194:0,0,0 -k1,11179:32583029,38747194:16151738 -g1,11179:32583029,38747194 -) -(1,11179:6630773,39413372:25952256,410518,107478 -h1,11179:6630773,39413372:0,0,0 -g1,11179:7579210,39413372 -g1,11179:7895356,39413372 -g1,11179:8211502,39413372 -g1,11179:8527648,39413372 -g1,11179:8843794,39413372 -g1,11179:9159940,39413372 -g1,11179:9476086,39413372 -g1,11179:9792232,39413372 -g1,11179:10108378,39413372 -g1,11179:18012020,39413372 -g1,11179:18644312,39413372 -g1,11179:20225041,39413372 -g1,11179:21173478,39413372 -g1,11179:22438061,39413372 -g1,11179:25915664,39413372 -g1,11179:27812538,39413372 -k1,11179:27812538,39413372:0 -h1,11179:29709413,39413372:0,0,0 -k1,11179:32583029,39413372:2873616 -g1,11179:32583029,39413372 -) -(1,11179:6630773,40079550:25952256,404226,82312 -h1,11179:6630773,40079550:0,0,0 -g1,11179:7579210,40079550 -g1,11179:7895356,40079550 -g1,11179:8211502,40079550 -g1,11179:8527648,40079550 -g1,11179:8843794,40079550 -g1,11179:9159940,40079550 -g1,11179:9476086,40079550 -g1,11179:9792232,40079550 -g1,11179:10108378,40079550 -g1,11179:10424524,40079550 -g1,11179:10740670,40079550 -g1,11179:11056816,40079550 -g1,11179:11372962,40079550 -g1,11179:14218274,40079550 -g1,11179:16431294,40079550 -g1,11179:17063586,40079550 -h1,11179:18012023,40079550:0,0,0 -k1,11179:32583029,40079550:14571006 -g1,11179:32583029,40079550 -) -(1,11179:6630773,40745728:25952256,410518,82312 -h1,11179:6630773,40745728:0,0,0 -g1,11179:7579210,40745728 -g1,11179:7895356,40745728 -g1,11179:8211502,40745728 -g1,11179:8527648,40745728 -g1,11179:8843794,40745728 -g1,11179:9792231,40745728 -g1,11179:10740669,40745728 -g1,11179:13585981,40745728 -h1,11179:16115146,40745728:0,0,0 -k1,11179:32583029,40745728:16467883 -g1,11179:32583029,40745728 -) -(1,11179:6630773,41411906:25952256,410518,101187 -h1,11179:6630773,41411906:0,0,0 -g1,11179:7579210,41411906 -g1,11179:7895356,41411906 -g1,11179:8211502,41411906 -g1,11179:8527648,41411906 -g1,11179:8843794,41411906 -g1,11179:9476086,41411906 -g1,11179:10424524,41411906 -g1,11179:16431293,41411906 -h1,11179:19592750,41411906:0,0,0 -k1,11179:32583029,41411906:12990279 -g1,11179:32583029,41411906 -) -(1,11179:6630773,42078084:25952256,410518,107478 -h1,11179:6630773,42078084:0,0,0 -g1,11179:7579210,42078084 -g1,11179:7895356,42078084 -g1,11179:8211502,42078084 -g1,11179:8527648,42078084 -g1,11179:8843794,42078084 -g1,11179:9476086,42078084 -g1,11179:10424524,42078084 -h1,11179:19276603,42078084:0,0,0 -k1,11179:32583029,42078084:13306426 -g1,11179:32583029,42078084 -) -(1,11179:6630773,42744262:25952256,410518,76021 -h1,11179:6630773,42744262:0,0,0 -g1,11179:7579210,42744262 -g1,11179:7895356,42744262 -g1,11179:8211502,42744262 -g1,11179:8527648,42744262 -g1,11179:8843794,42744262 -g1,11179:9792231,42744262 -g1,11179:13902125,42744262 -g1,11179:14850562,42744262 -h1,11179:19592747,42744262:0,0,0 -k1,11179:32583029,42744262:12990282 -g1,11179:32583029,42744262 -) -(1,11179:6630773,43410440:25952256,404226,107478 -h1,11179:6630773,43410440:0,0,0 -g1,11179:7579210,43410440 -g1,11179:7895356,43410440 -g1,11179:8211502,43410440 -g1,11179:8527648,43410440 -g1,11179:8843794,43410440 -g1,11179:9159940,43410440 -g1,11179:9476086,43410440 -g1,11179:9792232,43410440 -g1,11179:10108378,43410440 -g1,11179:15166710,43410440 -g1,11179:16747439,43410440 -g1,11179:17695876,43410440 -g1,11179:18328168,43410440 -g1,11179:20857334,43410440 -h1,11179:23386499,43410440:0,0,0 -k1,11179:32583029,43410440:9196530 -g1,11179:32583029,43410440 -) -(1,11179:6630773,44076618:25952256,410518,76021 -h1,11179:6630773,44076618:0,0,0 -g1,11179:7579210,44076618 -g1,11179:7895356,44076618 -g1,11179:8211502,44076618 -g1,11179:8527648,44076618 -g1,11179:8843794,44076618 -g1,11179:11056814,44076618 -g1,11179:12005252,44076618 -h1,11179:17063583,44076618:0,0,0 -k1,11179:32583029,44076618:15519446 -g1,11179:32583029,44076618 -) -(1,11179:6630773,44742796:25952256,404226,101187 -h1,11179:6630773,44742796:0,0,0 -g1,11179:7579210,44742796 -g1,11179:7895356,44742796 -g1,11179:8211502,44742796 -g1,11179:8527648,44742796 -g1,11179:8843794,44742796 -g1,11179:10108377,44742796 -g1,11179:11056815,44742796 -h1,11179:14850563,44742796:0,0,0 -k1,11179:32583029,44742796:17732466 -g1,11179:32583029,44742796 -) -(1,11179:6630773,45408974:25952256,410518,101187 -h1,11179:6630773,45408974:0,0,0 -g1,11179:7579210,45408974 -g1,11179:7895356,45408974 -g1,11179:8211502,45408974 -g1,11179:8527648,45408974 -g1,11179:8843794,45408974 -g1,11179:9792231,45408974 -g1,11179:10740669,45408974 -g1,11179:11689106,45408974 -h1,11179:13269834,45408974:0,0,0 -k1,11179:32583030,45408974:19313196 -g1,11179:32583030,45408974 -) -] -) -g1,11180:32583029,45510161 -g1,11180:6630773,45510161 -g1,11180:6630773,45510161 -g1,11180:32583029,45510161 -g1,11180:32583029,45510161 -) -] -(1,11180:32583029,45706769:0,0,0 -g1,11180:32583029,45706769 -) -) -] -(1,11180:6630773,47279633:25952256,0,0 -h1,11180:6630773,47279633:25952256,0,0 -) -] -(1,11180:4262630,4025873:0,0,0 -[1,11180:-473656,4025873:0,0,0 -(1,11180:-473656,-710413:0,0,0 -(1,11180:-473656,-710413:0,0,0 -g1,11180:-473656,-710413 -) -g1,11180:-473656,-710413 -) -] -) -] -!27650 -}187 -Input:1667:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1668:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1669:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1670:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1671:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!482 -{188 -[1,11200:4262630,47279633:28320399,43253760,0 -(1,11200:4262630,4025873:0,0,0 -[1,11200:-473656,4025873:0,0,0 -(1,11200:-473656,-710413:0,0,0 -(1,11200:-473656,-644877:0,0,0 -k1,11200:-473656,-644877:-65536 +g1,10385:6630773,4812305 +k1,10385:21643106,4812305:13816956 +g1,10385:23265777,4812305 +g1,10385:24088253,4812305 +g1,10385:28572226,4812305 +g1,10385:29981905,4812305 +) +) +] +[1,10385:6630773,45706769:25952256,40108032,0 +(1,10385:6630773,45706769:25952256,40108032,0 +(1,10385:6630773,45706769:0,0,0 +g1,10385:6630773,45706769 +) +[1,10385:6630773,45706769:25952256,40108032,0 +v1,10354:6630773,6254097:0,393216,0 +(1,10354:6630773,14589583:25952256,8728702,0 +g1,10354:6630773,14589583 +g1,10354:6237557,14589583 +r1,10385:6368629,14589583:131072,8728702,0 +g1,10354:6567858,14589583 +g1,10354:6764466,14589583 +[1,10354:6764466,14589583:25818563,8728702,0 +v1,10331:6764466,6254097:0,393216,0 +(1,10339:6764466,8062532:25818563,2201651,196608 +g1,10339:6764466,8062532 +g1,10339:6764466,8062532 +g1,10339:6567858,8062532 +(1,10339:6567858,8062532:0,2201651,196608 +r1,10385:32779637,8062532:26211779,2398259,196608 +k1,10339:6567857,8062532:-26211780 +) +(1,10339:6567858,8062532:26211779,2201651,196608 +[1,10339:6764466,8062532:25818563,2005043,0 +(1,10333:6764466,6481928:25818563,424439,106246 +(1,10332:6764466,6481928:0,0,0 +g1,10332:6764466,6481928 +g1,10332:6764466,6481928 +g1,10332:6436786,6481928 +(1,10332:6436786,6481928:0,0,0 +) +g1,10332:6764466,6481928 +) +g1,10333:9420098,6481928 +g1,10333:10415960,6481928 +g1,10333:13403546,6481928 +g1,10333:15727224,6481928 +g1,10333:16391132,6481928 +g1,10333:17386994,6481928 +g1,10333:19046764,6481928 +g1,10333:19710672,6481928 +g1,10333:22698257,6481928 +g1,10333:26017796,6481928 +k1,10333:26017796,6481928:0 +h1,10333:27345612,6481928:0,0,0 +k1,10333:32583029,6481928:5237417 +g1,10333:32583029,6481928 +) +(1,10334:6764466,7166783:25818563,424439,106246 +h1,10334:6764466,7166783:0,0,0 +k1,10334:6764466,7166783:0 +h1,10334:11411821,7166783:0,0,0 +k1,10334:32583029,7166783:21171208 +g1,10334:32583029,7166783 +) +(1,10338:6764466,7982710:25818563,424439,79822 +(1,10336:6764466,7982710:0,0,0 +g1,10336:6764466,7982710 +g1,10336:6764466,7982710 +g1,10336:6436786,7982710 +(1,10336:6436786,7982710:0,0,0 +) +g1,10336:6764466,7982710 +) +g1,10338:7760328,7982710 +g1,10338:8092282,7982710 +g1,10338:9420098,7982710 +g1,10338:10747914,7982710 +g1,10338:12075730,7982710 +g1,10338:13403546,7982710 +g1,10338:14731362,7982710 +g1,10338:16059178,7982710 +g1,10338:17386994,7982710 +g1,10338:18714810,7982710 +g1,10338:20042626,7982710 +g1,10338:21370442,7982710 +h1,10338:22366304,7982710:0,0,0 +k1,10338:32583029,7982710:10216725 +g1,10338:32583029,7982710 +) +] +) +g1,10339:32583029,8062532 +g1,10339:6764466,8062532 +g1,10339:6764466,8062532 +g1,10339:32583029,8062532 +g1,10339:32583029,8062532 +) +h1,10339:6764466,8259140:0,0,0 +(1,10342:6764466,9124220:25818563,513147,134348 +h1,10341:6764466,9124220:983040,0,0 +k1,10341:11546832,9124220:226303 +k1,10341:12977031,9124220:226303 +k1,10341:14898750,9124220:226303 +k1,10341:15656550,9124220:226303 +k1,10341:16238713,9124220:226303 +k1,10341:19203766,9124220:226303 +k1,10341:22678033,9124220:226303 +k1,10341:23629164,9124220:226303 +k1,10341:24270282,9124220:226275 +k1,10341:25597590,9124220:226303 +k1,10341:26179753,9124220:226303 +k1,10341:28713579,9124220:226303 +k1,10341:31635378,9124220:226303 +k1,10341:32583029,9124220:0 +) +(1,10342:6764466,9989300:25818563,513147,134348 +k1,10341:8292601,9989300:151224 +k1,10341:9261713,9989300:151223 +k1,10341:11446519,9989300:151224 +k1,10341:12991693,9989300:151223 +(1,10341:12991693,9989300:0,459977,115847 +r1,10385:15108518,9989300:2116825,575824,115847 +k1,10341:12991693,9989300:-2116825 +) +(1,10341:12991693,9989300:2116825,459977,115847 +k1,10341:12991693,9989300:3277 +h1,10341:15105241,9989300:0,411205,112570 +) +k1,10341:15433412,9989300:151224 +k1,10341:16042732,9989300:151223 +k1,10341:16725453,9989300:151224 +k1,10341:19005941,9989300:151223 +k1,10341:22722324,9989300:151224 +k1,10341:23524976,9989300:151224 +k1,10341:25498100,9989300:151223 +k1,10341:26115285,9989300:151224 +k1,10341:27921292,9989300:151223 +k1,10341:28604013,9989300:151224 +k1,10341:29525939,9989300:151223 +k1,10341:32168186,9989300:151224 +k1,10342:32583029,9989300:0 +) +(1,10342:6764466,10854380:25818563,513147,134348 +k1,10341:9796685,10854380:163053 +k1,10341:13212291,10854380:163054 +k1,10341:14322995,10854380:163053 +k1,10341:18735403,10854380:163054 +k1,10341:21317390,10854380:163053 +k1,10341:22139736,10854380:163054 +k1,10341:24108306,10854380:163053 +k1,10341:25290445,10854380:163054 +k1,10341:29847687,10854380:163053 +k1,10341:30879093,10854380:163054 +k1,10341:32583029,10854380:0 +) +(1,10342:6764466,11719460:25818563,513147,134348 +k1,10341:7554274,11719460:161973 +k1,10341:8919489,11719460:161974 +k1,10341:10622213,11719460:161973 +k1,10341:12519580,11719460:161974 +(1,10341:12519580,11719460:0,452978,115847 +r1,10385:15691540,11719460:3171960,568825,115847 +k1,10341:12519580,11719460:-3171960 +) +(1,10341:12519580,11719460:3171960,452978,115847 +k1,10341:12519580,11719460:3277 +h1,10341:15688263,11719460:0,411205,112570 +) +k1,10341:15853513,11719460:161973 +k1,10341:19102232,11719460:161973 +k1,10341:20283291,11719460:161974 +k1,10341:22562732,11719460:161973 +k1,10341:24469929,11719460:161973 +k1,10341:25899369,11719460:161974 +k1,10341:26417202,11719460:161973 +k1,10341:28452195,11719460:161974 +k1,10341:31309664,11719460:161973 +k1,10341:32583029,11719460:0 +) +(1,10342:6764466,12584540:25818563,513147,134348 +g1,10341:8430391,12584540 +g1,10341:11901833,12584540 +g1,10341:16176746,12584540 +g1,10341:17567420,12584540 +k1,10342:32583029,12584540:11447829 +g1,10342:32583029,12584540 +) +v1,10344:6764466,13269395:0,393216,0 +(1,10351:6764466,14392975:25818563,1516796,196608 +g1,10351:6764466,14392975 +g1,10351:6764466,14392975 +g1,10351:6567858,14392975 +(1,10351:6567858,14392975:0,1516796,196608 +r1,10385:32779637,14392975:26211779,1713404,196608 +k1,10351:6567857,14392975:-26211780 +) +(1,10351:6567858,14392975:26211779,1516796,196608 +[1,10351:6764466,14392975:25818563,1320188,0 +(1,10346:6764466,13497226:25818563,424439,79822 +(1,10345:6764466,13497226:0,0,0 +g1,10345:6764466,13497226 +g1,10345:6764466,13497226 +g1,10345:6436786,13497226 +(1,10345:6436786,13497226:0,0,0 +) +g1,10345:6764466,13497226 +) +k1,10346:6764466,13497226:0 +h1,10346:10084006,13497226:0,0,0 +k1,10346:32583030,13497226:22499024 +g1,10346:32583030,13497226 +) +(1,10350:6764466,14313153:25818563,424439,79822 +(1,10348:6764466,14313153:0,0,0 +g1,10348:6764466,14313153 +g1,10348:6764466,14313153 +g1,10348:6436786,14313153 +(1,10348:6436786,14313153:0,0,0 +) +g1,10348:6764466,14313153 +) +g1,10350:7760328,14313153 +g1,10350:8092282,14313153 +g1,10350:9420098,14313153 +g1,10350:10747914,14313153 +g1,10350:12075730,14313153 +g1,10350:13403546,14313153 +g1,10350:14731362,14313153 +g1,10350:16059178,14313153 +g1,10350:17386994,14313153 +g1,10350:18714810,14313153 +g1,10350:20042626,14313153 +g1,10350:21370442,14313153 +h1,10350:22366304,14313153:0,0,0 +k1,10350:32583029,14313153:10216725 +g1,10350:32583029,14313153 +) +] +) +g1,10351:32583029,14392975 +g1,10351:6764466,14392975 +g1,10351:6764466,14392975 +g1,10351:32583029,14392975 +g1,10351:32583029,14392975 +) +h1,10351:6764466,14589583:0,0,0 +] +g1,10354:32583029,14589583 +) +h1,10354:6630773,14589583:0,0,0 +v1,10357:6630773,15454663:0,393216,0 +(1,10359:6630773,21909183:25952256,6847736,0 +g1,10359:6630773,21909183 +g1,10359:6237557,21909183 +r1,10385:6368629,21909183:131072,6847736,0 +g1,10359:6567858,21909183 +g1,10359:6764466,21909183 +[1,10359:6764466,21909183:25818563,6847736,0 +(1,10359:6764466,15727140:25818563,665693,196608 +(1,10357:6764466,15727140:0,665693,196608 +r1,10385:8010564,15727140:1246098,862301,196608 +k1,10357:6764466,15727140:-1246098 +) +(1,10357:6764466,15727140:1246098,665693,196608 +) +k1,10357:8229061,15727140:218497 +k1,10357:9955279,15727140:327680 +k1,10357:10779329,15727140:218497 +k1,10357:12418647,15727140:218497 +k1,10357:14593395,15727140:218498 +k1,10357:15982365,15727140:218497 +k1,10357:18441538,15727140:218497 +k1,10357:19863276,15727140:218497 +k1,10357:21229964,15727140:218497 +k1,10357:24283548,15727140:218497 +k1,10357:25226873,15727140:218497 +k1,10357:26729877,15727140:218498 +k1,10357:28323975,15727140:218497 +k1,10357:29561557,15727140:218497 +k1,10357:30928245,15727140:218497 +k1,10357:32583029,15727140:0 +) +(1,10359:6764466,16592220:25818563,513147,126483 +k1,10357:9679158,16592220:201501 +k1,10357:10872220,16592220:201502 +k1,10357:13039146,16592220:201501 +k1,10357:14403256,16592220:201501 +k1,10357:16669797,16592220:201502 +k1,10357:18693854,16592220:201501 +k1,10357:19987840,16592220:201501 +k1,10357:20848634,16592220:201502 +k1,10357:24357082,16592220:201501 +k1,10357:25210011,16592220:201501 +k1,10357:27232103,16592220:201502 +k1,10357:27789464,16592220:201501 +k1,10357:29312826,16592220:201501 +k1,10357:30173620,16592220:201502 +k1,10357:31394206,16592220:201501 +k1,10359:32583029,16592220:0 +) +(1,10359:6764466,17457300:25818563,513147,126483 +k1,10357:8483475,17457300:226754 +k1,10358:9315783,17457300:226755 +k1,10358:10371567,17457300:226754 +k1,10358:12622074,17457300:226755 +k1,10358:15231717,17457300:226754 +k1,10358:17327559,17457300:226755 +k1,10358:18711023,17457300:226754 +k1,10358:20706595,17457300:226755 +k1,10358:23195652,17457300:226754 +k1,10358:24441492,17457300:226755 +k1,10358:26785714,17457300:226754 +k1,10358:28757693,17457300:226755 +k1,10358:30871884,17457300:226754 +k1,10358:32583029,17457300:0 +) +(1,10359:6764466,18322380:25818563,513147,126483 +k1,10358:10127037,18322380:223396 +k1,10358:11369518,18322380:223396 +k1,10358:13680237,18322380:223397 +k1,10358:15095078,18322380:223396 +k1,10358:16410959,18322380:223396 +(1,10358:16410959,18322380:0,452978,115847 +r1,10385:19582919,18322380:3171960,568825,115847 +k1,10358:16410959,18322380:-3171960 +) +(1,10358:16410959,18322380:3171960,452978,115847 +k1,10358:16410959,18322380:3277 +h1,10358:19579642,18322380:0,411205,112570 +) +k1,10358:19806315,18322380:223396 +k1,10358:21917148,18322380:223396 +k1,10358:23851690,18322380:223397 +k1,10358:24757971,18322380:223396 +k1,10358:26368109,18322380:223396 +k1,10358:27427089,18322380:223396 +k1,10358:28116446,18322380:223396 +k1,10358:29994627,18322380:223397 +k1,10358:30749520,18322380:223396 +k1,10358:31588954,18322380:223396 +k1,10358:32227169,18322380:223372 +k1,10358:32583029,18322380:0 +) +(1,10359:6764466,19187460:25818563,513147,134348 +k1,10358:9649024,19187460:189062 +k1,10358:10785736,19187460:189061 +k1,10358:12178039,19187460:189062 +k1,10358:15615064,19187460:189061 +k1,10358:16291704,19187460:189052 +k1,10358:18064771,19187460:189062 +k1,10358:19916480,19187460:189061 +k1,10358:20756970,19187460:189062 +k1,10358:22434355,19187460:189062 +k1,10358:23154913,19187460:189061 +k1,10358:24737926,19187460:189062 +(1,10358:24737926,19187460:0,452978,115847 +r1,10385:29316734,19187460:4578808,568825,115847 +k1,10358:24737926,19187460:-4578808 +) +(1,10358:24737926,19187460:4578808,452978,115847 +k1,10358:24737926,19187460:3277 +h1,10358:29313457,19187460:0,411205,112570 +) +k1,10358:29505795,19187460:189061 +k1,10358:30381019,19187460:189062 +k1,10358:32583029,19187460:0 +) +(1,10359:6764466,20052540:25818563,513147,134348 +k1,10358:10064597,20052540:274334 +k1,10358:11675864,20052540:274333 +k1,10358:13686902,20052540:274334 +k1,10358:14980321,20052540:274334 +k1,10358:16908127,20052540:274333 +k1,10358:18570514,20052540:274334 +k1,10358:20516671,20052540:274334 +k1,10358:21473889,20052540:274333 +k1,10358:22360985,20052540:274334 +k1,10358:24130851,20052540:274334 +k1,10358:25152950,20052540:274333 +k1,10358:27188892,20052540:274334 +k1,10358:28079264,20052540:274334 +k1,10358:29372682,20052540:274333 +k1,10358:30997058,20052540:274334 +k1,10358:32583029,20052540:0 +) +(1,10359:6764466,20917620:25818563,513147,134348 +k1,10358:9396438,20917620:179615 +k1,10358:10473897,20917620:179616 +k1,10358:11559875,20917620:179615 +k1,10358:13116402,20917620:179616 +k1,10358:14487462,20917620:179615 +k1,10358:17035549,20917620:179616 +k1,10358:18917134,20917620:179615 +k1,10358:20484802,20917620:179615 +k1,10358:22492872,20917620:179616 +k1,10358:23288525,20917620:179615 +k1,10358:25538423,20917620:179616 +k1,10358:26665689,20917620:179615 +k1,10358:28537445,20917620:179616 +k1,10358:31412556,20917620:179615 +k1,10358:32583029,20917620:0 +) +(1,10359:6764466,21782700:25818563,513147,126483 +g1,10358:8300629,21782700 +g1,10358:9766014,21782700 +g1,10358:11942464,21782700 +g1,10358:12757731,21782700 +g1,10358:13976045,21782700 +g1,10358:16729867,21782700 +g1,10358:17588388,21782700 +g1,10358:19246448,21782700 +g1,10358:20776058,21782700 +k1,10359:32583029,21782700:10243937 +g1,10359:32583029,21782700 +) +] +g1,10359:32583029,21909183 +) +h1,10359:6630773,21909183:0,0,0 +(1,10361:6630773,23560695:25952256,505283,126483 +(1,10361:6630773,23560695:0,0,0 +g1,10361:6630773,23560695 +) +k1,10361:32583029,23560695:23066706 +g1,10361:32583029,23560695 +) +(1,10364:6630773,24818991:25952256,513147,126483 +k1,10363:10361036,24818991:257510 +k1,10363:11486897,24818991:257509 +k1,10363:13274673,24818991:257510 +k1,10363:14183610,24818991:257509 +k1,10363:16156853,24818991:257510 +k1,10363:17795206,24818991:257509 +k1,10363:19337222,24818991:257510 +k1,10363:22300057,24818991:257509 +k1,10363:24053754,24818991:257510 +k1,10363:24842760,24818991:257509 +k1,10363:27933391,24818991:257510 +k1,10363:29657596,24818991:257509 +k1,10363:30381067,24818991:257510 +k1,10363:31657661,24818991:257509 +k1,10364:32583029,24818991:0 +) +(1,10364:6630773,25684071:25952256,513147,126483 +k1,10363:9264742,25684071:270741 +k1,10363:10194775,25684071:270741 +k1,10363:10821375,25684071:270740 +k1,10363:12923192,25684071:270741 +k1,10363:13876818,25684071:270741 +k1,10363:16843055,25684071:270741 +k1,10363:17645293,25684071:270741 +k1,10363:20380188,25684071:270741 +k1,10363:21412456,25684071:270740 +k1,10363:22702282,25684071:270741 +k1,10363:24353867,25684071:270741 +k1,10363:25307493,25684071:270741 +k1,10363:26264396,25684071:270741 +k1,10363:26890997,25684071:270741 +k1,10363:29004609,25684071:270740 +k1,10363:29934642,25684071:270741 +k1,10363:30976086,25684071:270741 +k1,10363:32583029,25684071:0 +) +(1,10364:6630773,26549151:25952256,513147,126483 +k1,10363:10060273,26549151:223479 +k1,10363:10771317,26549151:223456 +k1,10363:13129304,26549151:223479 +k1,10363:16014200,26549151:223479 +k1,10363:16769177,26549151:223480 +k1,10363:17348516,26549151:223479 +k1,10363:19403072,26549151:223480 +k1,10363:20911057,26549151:223479 +k1,10363:24874021,26549151:223480 +k1,10363:26362345,26549151:223479 +k1,10363:26941685,26549151:223480 +k1,10363:28509963,26549151:223479 +k1,10363:30654303,26549151:223480 +k1,10363:31563944,26549151:223479 +k1,10363:32583029,26549151:0 +) +(1,10364:6630773,27414231:25952256,513147,134348 +k1,10363:9440354,27414231:222875 +k1,10363:12555334,27414231:222876 +k1,10363:13461094,27414231:222875 +k1,10363:15106757,27414231:222876 +k1,10363:15685492,27414231:222875 +k1,10363:16891408,27414231:222876 +k1,10363:17800445,27414231:222875 +k1,10363:21356481,27414231:222875 +k1,10363:24100527,27414231:222876 +k1,10363:27113270,27414231:222875 +(1,10363:27113270,27414231:0,452978,115847 +r1,10385:30285230,27414231:3171960,568825,115847 +k1,10363:27113270,27414231:-3171960 +) +(1,10363:27113270,27414231:3171960,452978,115847 +k1,10363:27113270,27414231:3277 +h1,10363:30281953,27414231:0,411205,112570 +) +k1,10363:30508106,27414231:222876 +k1,10363:31835263,27414231:222875 +k1,10363:32583029,27414231:0 +) +(1,10364:6630773,28279311:25952256,505283,126483 +k1,10363:8317763,28279311:173764 +k1,10363:9142955,28279311:173764 +k1,10363:11389623,28279311:173764 +k1,10363:12847892,28279311:173763 +k1,10363:13377516,28279311:173764 +k1,10363:14932124,28279311:173764 +k1,10363:17866920,28279311:173764 +k1,10363:21480669,28279311:173764 +k1,10363:23515000,28279311:173764 +k1,10363:24340192,28279311:173764 +k1,10363:25261721,28279311:173763 +k1,10363:28268606,28279311:173764 +k1,10363:30140408,28279311:173764 +k1,10363:31333257,28279311:173764 +k1,10364:32583029,28279311:0 +) +(1,10364:6630773,29144391:25952256,513147,126483 +k1,10363:8166834,29144391:228618 +k1,10363:11264619,29144391:228619 +k1,10363:12176122,29144391:228618 +k1,10363:12760601,29144391:228619 +k1,10363:14993965,29144391:228618 +k1,10363:16897028,29144391:228618 +k1,10363:19915515,29144391:228619 +(1,10363:19915515,29144391:0,452978,115847 +r1,10385:23087475,29144391:3171960,568825,115847 +k1,10363:19915515,29144391:-3171960 +) +(1,10363:19915515,29144391:3171960,452978,115847 +k1,10363:19915515,29144391:3277 +h1,10363:23084198,29144391:0,411205,112570 +) +k1,10363:23316093,29144391:228618 +k1,10363:24648993,29144391:228618 +k1,10363:26163428,29144391:228619 +k1,10363:28107779,29144391:228618 +k1,10363:29832585,29144391:228619 +k1,10363:31931601,29144391:228618 +k1,10363:32583029,29144391:0 +) +(1,10364:6630773,30009471:25952256,513147,126483 +k1,10363:8227845,30009471:184771 +k1,10363:9098777,30009471:184770 +k1,10363:9741645,30009471:184771 +k1,10363:11764700,30009471:184770 +k1,10363:14542075,30009471:184771 +k1,10363:15918290,30009471:184770 +k1,10363:18808387,30009471:184771 +k1,10363:20377277,30009471:184770 +k1,10363:21213476,30009471:184771 +k1,10363:22849869,30009471:184771 +k1,10363:24736609,30009471:184770 +k1,10363:25537418,30009471:184771 +k1,10363:26741273,30009471:184770 +k1,10363:28502840,30009471:184771 +k1,10363:29346902,30009471:184770 +k1,10363:29887533,30009471:184771 +k1,10363:32583029,30009471:0 +) +(1,10364:6630773,30874551:25952256,513147,134348 +g1,10363:7512887,30874551 +g1,10363:8328154,30874551 +g1,10363:9546468,30874551 +g1,10363:11729472,30874551 +g1,10363:12587993,30874551 +g1,10363:13143082,30874551 +k1,10364:32583028,30874551:17435200 +g1,10364:32583028,30874551 +) +v1,10366:6630773,31559406:0,393216,0 +(1,10377:6630773,34223404:25952256,3057214,196608 +g1,10377:6630773,34223404 +g1,10377:6630773,34223404 +g1,10377:6434165,34223404 +(1,10377:6434165,34223404:0,3057214,196608 +r1,10385:32779637,34223404:26345472,3253822,196608 +k1,10377:6434165,34223404:-26345472 +) +(1,10377:6434165,34223404:26345472,3057214,196608 +[1,10377:6630773,34223404:25952256,2860606,0 +(1,10368:6630773,31793843:25952256,431045,106246 +(1,10367:6630773,31793843:0,0,0 +g1,10367:6630773,31793843 +g1,10367:6630773,31793843 +g1,10367:6303093,31793843 +(1,10367:6303093,31793843:0,0,0 +) +g1,10367:6630773,31793843 +) +k1,10368:6630773,31793843:0 +h1,10368:14597667,31793843:0,0,0 +k1,10368:32583029,31793843:17985362 +g1,10368:32583029,31793843 +) +(1,10372:6630773,32609770:25952256,424439,79822 +(1,10370:6630773,32609770:0,0,0 +g1,10370:6630773,32609770 +g1,10370:6630773,32609770 +g1,10370:6303093,32609770 +(1,10370:6303093,32609770:0,0,0 +) +g1,10370:6630773,32609770 +) +g1,10372:7626635,32609770 +g1,10372:8954451,32609770 +h1,10372:10282267,32609770:0,0,0 +k1,10372:32583029,32609770:22300762 +g1,10372:32583029,32609770 +) +(1,10374:6630773,33425697:25952256,431045,106246 +(1,10373:6630773,33425697:0,0,0 +g1,10373:6630773,33425697 +g1,10373:6630773,33425697 +g1,10373:6303093,33425697 +(1,10373:6303093,33425697:0,0,0 +) +g1,10373:6630773,33425697 +) +k1,10374:6630773,33425697:0 +k1,10374:6630773,33425697:0 +h1,10374:17585253,33425697:0,0,0 +k1,10374:32583029,33425697:14997776 +g1,10374:32583029,33425697 +) +(1,10375:6630773,34110552:25952256,431045,112852 +h1,10375:6630773,34110552:0,0,0 +g1,10375:7294681,34110552 +g1,10375:8954451,34110552 +g1,10375:10614221,34110552 +g1,10375:12605945,34110552 +g1,10375:13933761,34110552 +g1,10375:14929623,34110552 +g1,10375:16257439,34110552 +g1,10375:17917209,34110552 +g1,10375:19576979,34110552 +k1,10375:19576979,34110552:1652 +h1,10375:20906447,34110552:0,0,0 +k1,10375:32583029,34110552:11676582 +g1,10375:32583029,34110552 +) +] +) +g1,10377:32583029,34223404 +g1,10377:6630773,34223404 +g1,10377:6630773,34223404 +g1,10377:32583029,34223404 +g1,10377:32583029,34223404 +) +h1,10377:6630773,34420012:0,0,0 +(1,10380:6630773,37251172:25952256,32768,229376 +(1,10380:6630773,37251172:0,32768,229376 +(1,10380:6630773,37251172:5505024,32768,229376 +r1,10385:12135797,37251172:5505024,262144,229376 +) +k1,10380:6630773,37251172:-5505024 +) +(1,10380:6630773,37251172:25952256,32768,0 +r1,10385:32583029,37251172:25952256,32768,0 +) +) +(1,10380:6630773,38883024:25952256,615776,151780 +(1,10380:6630773,38883024:1974731,582746,14155 +g1,10380:6630773,38883024 +g1,10380:8605504,38883024 +) +g1,10380:11225896,38883024 +k1,10380:32583030,38883024:17602708 +g1,10380:32583030,38883024 +) +(1,10383:6630773,40141320:25952256,513147,134348 +k1,10382:8832346,40141320:318068 +k1,10382:12176210,40141320:318067 +k1,10382:14257852,40141320:318068 +k1,10382:14931779,40141320:318067 +k1,10382:17945343,40141320:318068 +k1,10382:20468697,40141320:318067 +k1,10382:21472927,40141320:318068 +k1,10382:22561697,40141320:318067 +k1,10382:25952093,40141320:318068 +k1,10382:26921588,40141320:318067 +k1,10382:30520388,40141320:318068 +(1,10382:30520388,40141320:0,414482,115847 +r1,10385:31582077,40141320:1061689,530329,115847 +k1,10382:30520388,40141320:-1061689 +) +(1,10382:30520388,40141320:1061689,414482,115847 +k1,10382:30520388,40141320:3277 +h1,10382:31578800,40141320:0,411205,112570 +) +k1,10382:31900144,40141320:318067 +k1,10382:32583029,40141320:0 +) +(1,10383:6630773,41006400:25952256,513147,134348 +k1,10382:10334214,41006400:224790 +k1,10382:11210433,41006400:224791 +k1,10382:14304389,41006400:224790 +k1,10382:15145217,41006400:224790 +k1,10382:15725867,41006400:224790 +k1,10382:19037404,41006400:224791 +k1,10382:19929350,41006400:224790 +k1,10382:20568957,41006400:224764 +k1,10382:23083576,41006400:224791 +k1,10382:25513653,41006400:224790 +k1,10382:26424605,41006400:224790 +k1,10382:27420098,41006400:224790 +k1,10382:30717217,41006400:224791 +k1,10382:31593435,41006400:224790 +k1,10383:32583029,41006400:0 +) +(1,10383:6630773,41871480:25952256,505283,126483 +k1,10382:9360222,41871480:225318 +(1,10382:9360222,41871480:0,414482,115847 +r1,10385:9718488,41871480:358266,530329,115847 +k1,10382:9360222,41871480:-358266 +) +(1,10382:9360222,41871480:358266,414482,115847 +k1,10382:9360222,41871480:3277 +h1,10382:9715211,41871480:0,411205,112570 +) +k1,10382:9943807,41871480:225319 +k1,10382:10852010,41871480:225318 +k1,10382:14555979,41871480:225318 +k1,10382:18320241,41871480:225318 +k1,10382:19196988,41871480:225319 +k1,10382:21307777,41871480:225318 +(1,10382:21307777,41871480:0,414482,115847 +r1,10385:22369466,41871480:1061689,530329,115847 +k1,10382:21307777,41871480:-1061689 +) +(1,10382:21307777,41871480:1061689,414482,115847 +k1,10382:21307777,41871480:3277 +h1,10382:22366189,41871480:0,411205,112570 +) +k1,10382:22594784,41871480:225318 +k1,10382:23351600,41871480:225319 +k1,10382:24228346,41871480:225318 +k1,10382:25201430,41871480:225318 +k1,10382:27798496,41871480:225318 +k1,10382:29128097,41871480:225319 +k1,10382:30101181,41871480:225318 +k1,10382:32583029,41871480:0 +) +(1,10383:6630773,42736560:25952256,513147,134348 +k1,10382:8345148,42736560:216877 +k1,10382:9951388,42736560:216877 +k1,10382:12548534,42736560:216878 +k1,10382:15498918,42736560:216877 +k1,10382:16398680,42736560:216877 +k1,10382:18769070,42736560:216877 +k1,10382:19803837,42736560:216878 +k1,10382:21409422,42736560:216877 +k1,10382:22312461,42736560:216877 +k1,10382:23548423,42736560:216877 +k1,10382:27169895,42736560:216877 +k1,10382:28038201,42736560:216878 +k1,10382:29002844,42736560:216877 +k1,10382:31591469,42736560:216877 +k1,10382:32583029,42736560:0 +) +(1,10383:6630773,43601640:25952256,513147,126483 +k1,10382:12402707,43601640:190233 +k1,10382:13578601,43601640:190233 +k1,10382:15827975,43601640:190233 +k1,10382:17560926,43601640:190233 +k1,10382:18871169,43601640:190233 +k1,10382:21731995,43601640:190234 +k1,10382:22968183,43601640:190233 +k1,10382:24171603,43601640:190233 +k1,10382:25801007,43601640:190233 +k1,10382:26594171,43601640:190233 +k1,10382:29257077,43601640:190233 +k1,10382:32583029,43601640:0 +) +(1,10383:6630773,44466720:25952256,513147,126483 +g1,10382:8593576,44466720 +g1,10382:11818602,44466720 +g1,10382:13122113,44466720 +g1,10382:15619690,44466720 +(1,10382:15619690,44466720:0,459977,115847 +r1,10385:16681379,44466720:1061689,575824,115847 +k1,10382:15619690,44466720:-1061689 +) +(1,10382:15619690,44466720:1061689,459977,115847 +k1,10382:15619690,44466720:3277 +h1,10382:16678102,44466720:0,411205,112570 +) +g1,10382:17054278,44466720 +(1,10382:17054278,44466720:0,452978,115847 +r1,10385:18819391,44466720:1765113,568825,115847 +k1,10382:17054278,44466720:-1765113 +) +(1,10382:17054278,44466720:1765113,452978,115847 +k1,10382:17054278,44466720:3277 +h1,10382:18816114,44466720:0,411205,112570 +) +g1,10382:19018620,44466720 +g1,10382:19900734,44466720 +(1,10382:19900734,44466720:0,414482,115847 +r1,10385:22017559,44466720:2116825,530329,115847 +k1,10382:19900734,44466720:-2116825 +) +(1,10382:19900734,44466720:2116825,414482,115847 +k1,10382:19900734,44466720:3277 +h1,10382:22014282,44466720:0,411205,112570 +) +g1,10382:22216788,44466720 +k1,10383:32583029,44466720:8447347 +g1,10383:32583029,44466720 +) +] +(1,10385:32583029,45706769:0,0,0 +g1,10385:32583029,45706769 +) +) +] +(1,10385:6630773,47279633:25952256,0,0 +h1,10385:6630773,47279633:25952256,0,0 +) +] +(1,10385:4262630,4025873:0,0,0 +[1,10385:-473656,4025873:0,0,0 +(1,10385:-473656,-710413:0,0,0 +(1,10385:-473656,-710413:0,0,0 +g1,10385:-473656,-710413 +) +g1,10385:-473656,-710413 +) +] +) +] +!27575 +}165 +Input:1541:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1542:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1543:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1544:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1545:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1546:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1547:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1548:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1549:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1550:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1551:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1552:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1553:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1554:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1555:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1556:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1557:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1558:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1559:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1560:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1561:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1562:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1563:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1564:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1565:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1566:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1567:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!2550 +{166 +[1,10436:4262630,47279633:28320399,43253760,0 +(1,10436:4262630,4025873:0,0,0 +[1,10436:-473656,4025873:0,0,0 +(1,10436:-473656,-710413:0,0,0 +(1,10436:-473656,-644877:0,0,0 +k1,10436:-473656,-644877:-65536 ) -(1,11200:-473656,4736287:0,0,0 -k1,11200:-473656,4736287:5209943 +(1,10436:-473656,4736287:0,0,0 +k1,10436:-473656,4736287:5209943 ) -g1,11200:-473656,-710413 +g1,10436:-473656,-710413 ) ] ) -[1,11200:6630773,47279633:25952256,43253760,0 -[1,11200:6630773,4812305:25952256,786432,0 -(1,11200:6630773,4812305:25952256,513147,134348 -(1,11200:6630773,4812305:25952256,513147,134348 -g1,11200:3078558,4812305 -[1,11200:3078558,4812305:0,0,0 -(1,11200:3078558,2439708:0,1703936,0 -k1,11200:1358238,2439708:-1720320 -(1,10825:1358238,2439708:1720320,1703936,0 -(1,10825:1358238,2439708:1179648,16384,0 -r1,11200:2537886,2439708:1179648,16384,0 +[1,10436:6630773,47279633:25952256,43253760,0 +[1,10436:6630773,4812305:25952256,786432,0 +(1,10436:6630773,4812305:25952256,513147,126483 +(1,10436:6630773,4812305:25952256,513147,126483 +g1,10436:3078558,4812305 +[1,10436:3078558,4812305:0,0,0 +(1,10436:3078558,2439708:0,1703936,0 +k1,10436:1358238,2439708:-1720320 +(1,8606:1358238,2439708:1720320,1703936,0 +(1,8606:1358238,2439708:1179648,16384,0 +r1,10436:2537886,2439708:1179648,16384,0 ) -g1,10825:3062174,2439708 -(1,10825:3062174,2439708:16384,1703936,0 -[1,10825:3062174,2439708:25952256,1703936,0 -(1,10825:3062174,1915420:25952256,1179648,0 -(1,10825:3062174,1915420:16384,1179648,0 -r1,11200:3078558,1915420:16384,1179648,0 +g1,8606:3062174,2439708 +(1,8606:3062174,2439708:16384,1703936,0 +[1,8606:3062174,2439708:25952256,1703936,0 +(1,8606:3062174,1915420:25952256,1179648,0 +(1,8606:3062174,1915420:16384,1179648,0 +r1,10436:3078558,1915420:16384,1179648,0 ) -k1,10825:29014430,1915420:25935872 -g1,10825:29014430,1915420 +k1,8606:29014430,1915420:25935872 +g1,8606:29014430,1915420 ) ] ) ) ) ] -[1,11200:3078558,4812305:0,0,0 -(1,11200:3078558,2439708:0,1703936,0 -g1,11200:29030814,2439708 -g1,11200:36135244,2439708 -(1,10825:36135244,2439708:1720320,1703936,0 -(1,10825:36135244,2439708:16384,1703936,0 -[1,10825:36135244,2439708:25952256,1703936,0 -(1,10825:36135244,1915420:25952256,1179648,0 -(1,10825:36135244,1915420:16384,1179648,0 -r1,11200:36151628,1915420:16384,1179648,0 +[1,10436:3078558,4812305:0,0,0 +(1,10436:3078558,2439708:0,1703936,0 +g1,10436:29030814,2439708 +g1,10436:36135244,2439708 +(1,8606:36135244,2439708:1720320,1703936,0 +(1,8606:36135244,2439708:16384,1703936,0 +[1,8606:36135244,2439708:25952256,1703936,0 +(1,8606:36135244,1915420:25952256,1179648,0 +(1,8606:36135244,1915420:16384,1179648,0 +r1,10436:36151628,1915420:16384,1179648,0 ) -k1,10825:62087500,1915420:25935872 -g1,10825:62087500,1915420 +k1,8606:62087500,1915420:25935872 +g1,8606:62087500,1915420 ) ] ) -g1,10825:36675916,2439708 -(1,10825:36675916,2439708:1179648,16384,0 -r1,11200:37855564,2439708:1179648,16384,0 +g1,8606:36675916,2439708 +(1,8606:36675916,2439708:1179648,16384,0 +r1,10436:37855564,2439708:1179648,16384,0 ) ) -k1,11200:3078556,2439708:-34777008 +k1,10436:3078556,2439708:-34777008 ) ] -[1,11200:3078558,4812305:0,0,0 -(1,11200:3078558,49800853:0,16384,2228224 -k1,11200:1358238,49800853:-1720320 -(1,10825:1358238,49800853:1720320,16384,2228224 -(1,10825:1358238,49800853:1179648,16384,0 -r1,11200:2537886,49800853:1179648,16384,0 +[1,10436:3078558,4812305:0,0,0 +(1,10436:3078558,49800853:0,16384,2228224 +k1,10436:1358238,49800853:-1720320 +(1,8606:1358238,49800853:1720320,16384,2228224 +(1,8606:1358238,49800853:1179648,16384,0 +r1,10436:2537886,49800853:1179648,16384,0 ) -g1,10825:3062174,49800853 -(1,10825:3062174,52029077:16384,1703936,0 -[1,10825:3062174,52029077:25952256,1703936,0 -(1,10825:3062174,51504789:25952256,1179648,0 -(1,10825:3062174,51504789:16384,1179648,0 -r1,11200:3078558,51504789:16384,1179648,0 +g1,8606:3062174,49800853 +(1,8606:3062174,52029077:16384,1703936,0 +[1,8606:3062174,52029077:25952256,1703936,0 +(1,8606:3062174,51504789:25952256,1179648,0 +(1,8606:3062174,51504789:16384,1179648,0 +r1,10436:3078558,51504789:16384,1179648,0 ) -k1,10825:29014430,51504789:25935872 -g1,10825:29014430,51504789 +k1,8606:29014430,51504789:25935872 +g1,8606:29014430,51504789 ) ] ) ) -) -] -[1,11200:3078558,4812305:0,0,0 -(1,11200:3078558,49800853:0,16384,2228224 -g1,11200:29030814,49800853 -g1,11200:36135244,49800853 -(1,10825:36135244,49800853:1720320,16384,2228224 -(1,10825:36135244,52029077:16384,1703936,0 -[1,10825:36135244,52029077:25952256,1703936,0 -(1,10825:36135244,51504789:25952256,1179648,0 -(1,10825:36135244,51504789:16384,1179648,0 -r1,11200:36151628,51504789:16384,1179648,0 -) -k1,10825:62087500,51504789:25935872 -g1,10825:62087500,51504789 -) -] -) -g1,10825:36675916,49800853 -(1,10825:36675916,49800853:1179648,16384,0 -r1,11200:37855564,49800853:1179648,16384,0 -) -) -k1,11200:3078556,49800853:-34777008 -) -] -g1,11200:6630773,4812305 -g1,11200:6630773,4812305 -g1,11200:9499939,4812305 -g1,11200:12584718,4812305 -g1,11200:13994397,4812305 -g1,11200:17201073,4812305 -k1,11200:31387652,4812305:14186579 -) -) -] -[1,11200:6630773,45706769:25952256,40108032,0 -(1,11200:6630773,45706769:25952256,40108032,0 -(1,11200:6630773,45706769:0,0,0 -g1,11200:6630773,45706769 -) -[1,11200:6630773,45706769:25952256,40108032,0 -v1,11180:6630773,6254097:0,393216,0 -(1,11180:6630773,37207090:25952256,31346209,196608 -g1,11180:6630773,37207090 -g1,11180:6630773,37207090 -g1,11180:6434165,37207090 -(1,11180:6434165,37207090:0,31346209,196608 -r1,11200:32779637,37207090:26345472,31542817,196608 -k1,11180:6434165,37207090:-26345472 -) -(1,11180:6434165,37207090:26345472,31346209,196608 -[1,11180:6630773,37207090:25952256,31149601,0 -(1,11179:6630773,6461715:25952256,404226,101187 -h1,11179:6630773,6461715:0,0,0 -g1,11179:7579210,6461715 -g1,11179:7895356,6461715 -g1,11179:8211502,6461715 -g1,11179:8527648,6461715 -g1,11179:8843794,6461715 -g1,11179:9159940,6461715 -g1,11179:9476086,6461715 -g1,11179:9792232,6461715 -g1,11179:10108378,6461715 -h1,11179:12321398,6461715:0,0,0 -k1,11179:32583030,6461715:20261632 -g1,11179:32583030,6461715 -) -(1,11179:6630773,7127893:25952256,404226,107478 -h1,11179:6630773,7127893:0,0,0 -g1,11179:7579210,7127893 -g1,11179:7895356,7127893 -g1,11179:8211502,7127893 -g1,11179:8527648,7127893 -g1,11179:8843794,7127893 -g1,11179:10424523,7127893 -h1,11179:13269834,7127893:0,0,0 -k1,11179:32583030,7127893:19313196 -g1,11179:32583030,7127893 -) -(1,11179:6630773,7794071:25952256,410518,76021 -h1,11179:6630773,7794071:0,0,0 -g1,11179:7579210,7794071 -g1,11179:7895356,7794071 -g1,11179:8211502,7794071 -g1,11179:8527648,7794071 -g1,11179:8843794,7794071 -g1,11179:9792231,7794071 -g1,11179:15798999,7794071 -h1,11179:16115145,7794071:0,0,0 -k1,11179:32583029,7794071:16467884 -g1,11179:32583029,7794071 -) -(1,11179:6630773,8460249:25952256,410518,76021 -h1,11179:6630773,8460249:0,0,0 -g1,11179:7579210,8460249 -g1,11179:7895356,8460249 -g1,11179:8211502,8460249 -g1,11179:8527648,8460249 -g1,11179:8843794,8460249 -g1,11179:9159940,8460249 -g1,11179:9476086,8460249 -g1,11179:9792232,8460249 -g1,11179:10108378,8460249 -g1,11179:11056815,8460249 -h1,11179:12953689,8460249:0,0,0 -k1,11179:32583029,8460249:19629340 -g1,11179:32583029,8460249 -) -(1,11179:6630773,9126427:25952256,410518,76021 -h1,11179:6630773,9126427:0,0,0 -g1,11179:7579210,9126427 -g1,11179:7895356,9126427 -g1,11179:8211502,9126427 -g1,11179:8527648,9126427 -g1,11179:8843794,9126427 -g1,11179:9159940,9126427 -g1,11179:9476086,9126427 -g1,11179:9792232,9126427 -g1,11179:10108378,9126427 -g1,11179:10424524,9126427 -g1,11179:10740670,9126427 -g1,11179:11056816,9126427 -g1,11179:11372962,9126427 -g1,11179:13585982,9126427 -g1,11179:14534420,9126427 -h1,11179:19908897,9126427:0,0,0 -k1,11179:32583029,9126427:12674132 -g1,11179:32583029,9126427 -) -(1,11179:6630773,9792605:25952256,410518,101187 -h1,11179:6630773,9792605:0,0,0 -g1,11179:7579210,9792605 -g1,11179:7895356,9792605 -g1,11179:8211502,9792605 -g1,11179:8527648,9792605 -g1,11179:8843794,9792605 -g1,11179:9159940,9792605 -g1,11179:9476086,9792605 -g1,11179:9792232,9792605 -g1,11179:10108378,9792605 -g1,11179:11056815,9792605 -g1,11179:15482855,9792605 -g1,11179:16431292,9792605 -h1,11179:17379729,9792605:0,0,0 -k1,11179:32583029,9792605:15203300 -g1,11179:32583029,9792605 -) -(1,11179:6630773,10458783:25952256,410518,107478 -h1,11179:6630773,10458783:0,0,0 -k1,11179:7473828,10458783:210764 -k1,11179:7684592,10458783:210764 -k1,11179:7895356,10458783:210764 -k1,11179:8106120,10458783:210764 -k1,11179:8316884,10458783:210764 -k1,11179:8527648,10458783:210764 -k1,11179:8738412,10458783:210764 -k1,11179:8949176,10458783:210764 -k1,11179:9159940,10458783:210764 -k1,11179:9370704,10458783:210764 -k1,11179:9581468,10458783:210764 -k1,11179:9792232,10458783:210764 -k1,11179:10002996,10458783:210764 -k1,11179:16852819,10458783:210764 -k1,11179:17695874,10458783:210764 -k1,11179:20119658,10458783:210764 -k1,11179:20962713,10458783:210764 -k1,11179:22121914,10458783:210764 -k1,11179:24229552,10458783:210764 -k1,11179:26021044,10458783:210764 -k1,11179:26864099,10458783:210764 -k1,11179:29287883,10458783:210764 -k1,11179:30130938,10458783:210764 -k1,11179:30130938,10458783:0 -h1,11179:34873124,10458783:0,0,0 -k1,11179:34873124,10458783:0 -k1,11179:34873124,10458783:0 -) -(1,11179:6630773,11124961:25952256,410518,101187 -h1,11179:6630773,11124961:0,0,0 -g1,11179:7579210,11124961 -g1,11179:7895356,11124961 -g1,11179:8211502,11124961 -g1,11179:8527648,11124961 -g1,11179:8843794,11124961 -g1,11179:9159940,11124961 -g1,11179:9476086,11124961 -g1,11179:9792232,11124961 -g1,11179:10108378,11124961 -g1,11179:10424524,11124961 -g1,11179:10740670,11124961 -g1,11179:11056816,11124961 -g1,11179:11372962,11124961 -g1,11179:11689108,11124961 -g1,11179:12005254,11124961 -g1,11179:12321400,11124961 -g1,11179:12637546,11124961 -g1,11179:17063586,11124961 -g1,11179:18644315,11124961 -g1,11179:20857335,11124961 -g1,11179:21489627,11124961 -h1,11179:22438064,11124961:0,0,0 -k1,11179:32583029,11124961:10144965 -g1,11179:32583029,11124961 -) -(1,11179:6630773,11791139:25952256,404226,76021 -h1,11179:6630773,11791139:0,0,0 -g1,11179:7579210,11791139 -g1,11179:7895356,11791139 -g1,11179:8211502,11791139 -g1,11179:8527648,11791139 -g1,11179:8843794,11791139 -h1,11179:9159940,11791139:0,0,0 -k1,11179:32583028,11791139:23423088 -g1,11179:32583028,11791139 -) -(1,11179:6630773,12457317:25952256,410518,101187 -h1,11179:6630773,12457317:0,0,0 -g1,11179:7579210,12457317 -g1,11179:7895356,12457317 -g1,11179:8211502,12457317 -g1,11179:8527648,12457317 -g1,11179:8843794,12457317 -g1,11179:9792231,12457317 -g1,11179:16431291,12457317 -h1,11179:16747437,12457317:0,0,0 -k1,11179:32583029,12457317:15835592 -g1,11179:32583029,12457317 -) -(1,11179:6630773,13123495:25952256,379060,7863 -h1,11179:6630773,13123495:0,0,0 -g1,11179:7579210,13123495 -g1,11179:7895356,13123495 -g1,11179:8211502,13123495 -g1,11179:8527648,13123495 -g1,11179:8843794,13123495 -g1,11179:9159940,13123495 -g1,11179:9476086,13123495 -g1,11179:9792232,13123495 -g1,11179:10108378,13123495 -g1,11179:10740670,13123495 -g1,11179:11689108,13123495 -h1,11179:12953691,13123495:0,0,0 -k1,11179:32583029,13123495:19629338 -g1,11179:32583029,13123495 -) -(1,11179:6630773,13789673:25952256,410518,82312 -h1,11179:6630773,13789673:0,0,0 -g1,11179:7579210,13789673 -g1,11179:7895356,13789673 -g1,11179:8211502,13789673 -g1,11179:8527648,13789673 -g1,11179:8843794,13789673 -g1,11179:9159940,13789673 -g1,11179:9476086,13789673 -g1,11179:9792232,13789673 -g1,11179:10108378,13789673 -g1,11179:10740670,13789673 -g1,11179:11689108,13789673 -g1,11179:17379731,13789673 -g1,11179:18012023,13789673 -g1,11179:18960460,13789673 -g1,11179:20857334,13789673 -g1,11179:26231811,13789673 -k1,11179:26231811,13789673:0 -h1,11179:26864103,13789673:0,0,0 -k1,11179:32583029,13789673:5718926 -g1,11179:32583029,13789673 -) -(1,11179:6630773,14455851:25952256,410518,101187 -h1,11179:6630773,14455851:0,0,0 -g1,11179:7579210,14455851 -g1,11179:7895356,14455851 -g1,11179:8211502,14455851 -g1,11179:8527648,14455851 -g1,11179:8843794,14455851 -g1,11179:9159940,14455851 -g1,11179:9476086,14455851 -g1,11179:9792232,14455851 -g1,11179:10108378,14455851 -g1,11179:10424524,14455851 -g1,11179:10740670,14455851 -g1,11179:11056816,14455851 -g1,11179:11372962,14455851 -g1,11179:14218273,14455851 -g1,11179:15799002,14455851 -g1,11179:19276605,14455851 -g1,11179:22438062,14455851 -g1,11179:23070354,14455851 -g1,11179:24018792,14455851 -g1,11179:28444832,14455851 -g1,11179:29077124,14455851 -g1,11179:29709416,14455851 -h1,11179:30025562,14455851:0,0,0 -k1,11179:32583029,14455851:2557467 -g1,11179:32583029,14455851 -) -(1,11179:6630773,15122029:25952256,410518,107478 -h1,11179:6630773,15122029:0,0,0 -g1,11179:7579210,15122029 -g1,11179:7895356,15122029 -g1,11179:8211502,15122029 -g1,11179:8527648,15122029 -g1,11179:8843794,15122029 -g1,11179:9159940,15122029 -g1,11179:9476086,15122029 -g1,11179:9792232,15122029 -g1,11179:10108378,15122029 -g1,11179:10424524,15122029 -g1,11179:10740670,15122029 -g1,11179:11056816,15122029 -g1,11179:11372962,15122029 -g1,11179:12321400,15122029 -g1,11179:14850566,15122029 -g1,11179:15482858,15122029 -g1,11179:16431296,15122029 -g1,11179:18012025,15122029 -g1,11179:18644317,15122029 -g1,11179:19908900,15122029 -g1,11179:23702648,15122029 -g1,11179:24334940,15122029 -g1,11179:25283377,15122029 -g1,11179:29709417,15122029 -g1,11179:31606291,15122029 -h1,11179:32238582,15122029:0,0,0 -k1,11179:32583029,15122029:344447 -g1,11179:32583029,15122029 -) -(1,11179:6630773,15788207:25952256,404226,101187 -h1,11179:6630773,15788207:0,0,0 -g1,11179:7579210,15788207 -g1,11179:7895356,15788207 -g1,11179:8211502,15788207 -g1,11179:8527648,15788207 -g1,11179:8843794,15788207 -g1,11179:9159940,15788207 -g1,11179:9476086,15788207 -g1,11179:9792232,15788207 -g1,11179:10108378,15788207 -g1,11179:10424524,15788207 -g1,11179:10740670,15788207 -g1,11179:11056816,15788207 -g1,11179:11372962,15788207 -g1,11179:12321399,15788207 -g1,11179:13902128,15788207 -h1,11179:14850565,15788207:0,0,0 -k1,11179:32583029,15788207:17732464 -g1,11179:32583029,15788207 -) -(1,11179:6630773,16454385:25952256,410518,76021 -h1,11179:6630773,16454385:0,0,0 -g1,11179:7579210,16454385 -g1,11179:7895356,16454385 -g1,11179:8211502,16454385 -g1,11179:8527648,16454385 -g1,11179:8843794,16454385 -g1,11179:9159940,16454385 -g1,11179:9476086,16454385 -g1,11179:9792232,16454385 -g1,11179:10108378,16454385 -g1,11179:11056815,16454385 -g1,11179:17063583,16454385 -h1,11179:17379729,16454385:0,0,0 -k1,11179:32583029,16454385:15203300 -g1,11179:32583029,16454385 -) -(1,11179:6630773,17120563:25952256,410518,31456 -h1,11179:6630773,17120563:0,0,0 -g1,11179:7579210,17120563 -g1,11179:7895356,17120563 -g1,11179:8211502,17120563 -g1,11179:8527648,17120563 -g1,11179:8843794,17120563 -g1,11179:9159940,17120563 -g1,11179:9476086,17120563 -g1,11179:9792232,17120563 -g1,11179:10108378,17120563 -g1,11179:10424524,17120563 -g1,11179:10740670,17120563 -g1,11179:11056816,17120563 -g1,11179:11372962,17120563 -g1,11179:16431293,17120563 -g1,11179:17379731,17120563 -h1,11179:19276605,17120563:0,0,0 -k1,11179:32583029,17120563:13306424 -g1,11179:32583029,17120563 -) -(1,11179:6630773,17786741:25952256,410518,101187 -h1,11179:6630773,17786741:0,0,0 -g1,11179:7579210,17786741 -g1,11179:7895356,17786741 -g1,11179:8211502,17786741 -g1,11179:8527648,17786741 -g1,11179:8843794,17786741 -g1,11179:9159940,17786741 -g1,11179:9476086,17786741 -g1,11179:9792232,17786741 -g1,11179:10108378,17786741 -g1,11179:10424524,17786741 -g1,11179:10740670,17786741 -g1,11179:11056816,17786741 -g1,11179:11372962,17786741 -g1,11179:15166710,17786741 -g1,11179:16115148,17786741 -g1,11179:16747440,17786741 -g1,11179:17379732,17786741 -h1,11179:19276606,17786741:0,0,0 -k1,11179:32583029,17786741:13306423 -g1,11179:32583029,17786741 -) -(1,11179:6630773,18452919:25952256,404226,76021 -h1,11179:6630773,18452919:0,0,0 -g1,11179:7579210,18452919 -g1,11179:7895356,18452919 -g1,11179:8211502,18452919 -g1,11179:8527648,18452919 -g1,11179:8843794,18452919 -g1,11179:9159940,18452919 -g1,11179:9476086,18452919 -g1,11179:9792232,18452919 -g1,11179:10108378,18452919 -h1,11179:10424524,18452919:0,0,0 -k1,11179:32583028,18452919:22158504 -g1,11179:32583028,18452919 -) -(1,11179:6630773,19119097:25952256,404226,76021 -h1,11179:6630773,19119097:0,0,0 -g1,11179:7579210,19119097 -g1,11179:7895356,19119097 -g1,11179:8211502,19119097 -g1,11179:8527648,19119097 -g1,11179:8843794,19119097 -h1,11179:9159940,19119097:0,0,0 -k1,11179:32583028,19119097:23423088 -g1,11179:32583028,19119097 -) -(1,11179:6630773,19785275:25952256,404226,76021 -h1,11179:6630773,19785275:0,0,0 -g1,11179:7579210,19785275 -g1,11179:7895356,19785275 -g1,11179:8211502,19785275 -g1,11179:8527648,19785275 -g1,11179:8843794,19785275 -g1,11179:10424523,19785275 -h1,11179:10740669,19785275:0,0,0 -k1,11179:32583029,19785275:21842360 -g1,11179:32583029,19785275 -) -(1,11179:6630773,20451453:25952256,410518,82312 -h1,11179:6630773,20451453:0,0,0 -g1,11179:7579210,20451453 -g1,11179:7895356,20451453 -g1,11179:8211502,20451453 -g1,11179:8527648,20451453 -g1,11179:8843794,20451453 -g1,11179:9159940,20451453 -g1,11179:9476086,20451453 -g1,11179:9792232,20451453 -g1,11179:10108378,20451453 -g1,11179:10740670,20451453 -g1,11179:11689108,20451453 -g1,11179:17063585,20451453 -g1,11179:18328168,20451453 -h1,11179:21489625,20451453:0,0,0 -k1,11179:32583029,20451453:11093404 -g1,11179:32583029,20451453 -) -(1,11179:6630773,21117631:25952256,410518,76021 -h1,11179:6630773,21117631:0,0,0 -g1,11179:7579210,21117631 -g1,11179:7895356,21117631 -g1,11179:8211502,21117631 -g1,11179:8527648,21117631 -g1,11179:8843794,21117631 -g1,11179:9159940,21117631 -g1,11179:9476086,21117631 -g1,11179:9792232,21117631 -g1,11179:10108378,21117631 -g1,11179:10740670,21117631 -g1,11179:11689108,21117631 -g1,11179:12637545,21117631 -h1,11179:16431293,21117631:0,0,0 -k1,11179:32583029,21117631:16151736 -g1,11179:32583029,21117631 -) -(1,11179:6630773,21783809:25952256,410518,107478 -h1,11179:6630773,21783809:0,0,0 -g1,11179:7579210,21783809 -g1,11179:7895356,21783809 -g1,11179:8211502,21783809 -g1,11179:8527648,21783809 -g1,11179:8843794,21783809 -g1,11179:9159940,21783809 -g1,11179:9476086,21783809 -g1,11179:9792232,21783809 -g1,11179:10108378,21783809 -g1,11179:10424524,21783809 -g1,11179:10740670,21783809 -g1,11179:11056816,21783809 -g1,11179:11372962,21783809 -g1,11179:14534419,21783809 -g1,11179:15482857,21783809 -g1,11179:17695877,21783809 -g1,11179:18328169,21783809 -g1,11179:20857335,21783809 -g1,11179:24651083,21783809 -g1,11179:25283375,21783809 -k1,11179:25283375,21783809:0 -h1,11179:29077123,21783809:0,0,0 -k1,11179:32583029,21783809:3505906 -g1,11179:32583029,21783809 -) -(1,11179:6630773,22449987:25952256,404226,76021 -h1,11179:6630773,22449987:0,0,0 -g1,11179:7579210,22449987 -g1,11179:7895356,22449987 -g1,11179:8211502,22449987 -g1,11179:8527648,22449987 -g1,11179:8843794,22449987 -g1,11179:9159940,22449987 -g1,11179:9476086,22449987 -g1,11179:9792232,22449987 -g1,11179:10108378,22449987 -g1,11179:10424524,22449987 -g1,11179:10740670,22449987 -g1,11179:11056816,22449987 -g1,11179:11372962,22449987 -g1,11179:11689108,22449987 -g1,11179:12005254,22449987 -g1,11179:12321400,22449987 -g1,11179:12637546,22449987 -h1,11179:13902129,22449987:0,0,0 -k1,11179:32583029,22449987:18680900 -g1,11179:32583029,22449987 -) -(1,11179:6630773,23116165:25952256,410518,107478 -h1,11179:6630773,23116165:0,0,0 -g1,11179:7579210,23116165 -g1,11179:7895356,23116165 -g1,11179:8211502,23116165 -g1,11179:8527648,23116165 -g1,11179:8843794,23116165 -g1,11179:9159940,23116165 -g1,11179:9476086,23116165 -g1,11179:9792232,23116165 -g1,11179:10108378,23116165 -g1,11179:11689107,23116165 -g1,11179:15166710,23116165 -g1,11179:16115148,23116165 -g1,11179:17063586,23116165 -g1,11179:19276606,23116165 -g1,11179:19908898,23116165 -g1,11179:22438064,23116165 -g1,11179:26231812,23116165 -g1,11179:26864104,23116165 -k1,11179:26864104,23116165:0 -h1,11179:30657852,23116165:0,0,0 -k1,11179:32583029,23116165:1925177 -g1,11179:32583029,23116165 -) -(1,11179:6630773,23782343:25952256,404226,76021 -h1,11179:6630773,23782343:0,0,0 -g1,11179:7579210,23782343 -g1,11179:7895356,23782343 -g1,11179:8211502,23782343 -g1,11179:8527648,23782343 -g1,11179:8843794,23782343 -g1,11179:9159940,23782343 -g1,11179:9476086,23782343 -g1,11179:9792232,23782343 -g1,11179:10108378,23782343 -g1,11179:10424524,23782343 -g1,11179:10740670,23782343 -g1,11179:11056816,23782343 -g1,11179:11372962,23782343 -h1,11179:12637545,23782343:0,0,0 -k1,11179:32583029,23782343:19945484 -g1,11179:32583029,23782343 -) -(1,11179:6630773,24448521:25952256,404226,76021 -h1,11179:6630773,24448521:0,0,0 -g1,11179:7579210,24448521 -g1,11179:7895356,24448521 -g1,11179:8211502,24448521 -g1,11179:8527648,24448521 -g1,11179:8843794,24448521 -h1,11179:9159940,24448521:0,0,0 -k1,11179:32583028,24448521:23423088 -g1,11179:32583028,24448521 -) -(1,11179:6630773,25114699:25952256,410518,82312 -h1,11179:6630773,25114699:0,0,0 -g1,11179:7579210,25114699 -g1,11179:7895356,25114699 -g1,11179:8211502,25114699 -g1,11179:8527648,25114699 -g1,11179:8843794,25114699 -g1,11179:11689105,25114699 -g1,11179:12637543,25114699 -g1,11179:14218272,25114699 -g1,11179:16115146,25114699 -g1,11179:18328166,25114699 -h1,11179:19908894,25114699:0,0,0 -k1,11179:32583029,25114699:12674135 -g1,11179:32583029,25114699 -) -(1,11179:6630773,25780877:25952256,410518,82312 -h1,11179:6630773,25780877:0,0,0 -g1,11179:7579210,25780877 -g1,11179:7895356,25780877 -g1,11179:8211502,25780877 -g1,11179:8527648,25780877 -g1,11179:8843794,25780877 -g1,11179:12637542,25780877 -g1,11179:13585980,25780877 -g1,11179:16431292,25780877 -h1,11179:20225040,25780877:0,0,0 -k1,11179:32583029,25780877:12357989 -g1,11179:32583029,25780877 -) -(1,11179:6630773,26447055:25952256,410518,31456 -h1,11179:6630773,26447055:0,0,0 -g1,11179:7579210,26447055 -g1,11179:7895356,26447055 -g1,11179:8211502,26447055 -g1,11179:8527648,26447055 -g1,11179:8843794,26447055 -g1,11179:11689105,26447055 -g1,11179:12637543,26447055 -h1,11179:14534417,26447055:0,0,0 -k1,11179:32583029,26447055:18048612 -g1,11179:32583029,26447055 -) -(1,11179:6630773,27113233:25952256,410518,82312 -h1,11179:6630773,27113233:0,0,0 -g1,11179:7579210,27113233 -g1,11179:7895356,27113233 -g1,11179:8211502,27113233 -g1,11179:8527648,27113233 -g1,11179:8843794,27113233 -g1,11179:12637542,27113233 -g1,11179:13585980,27113233 -g1,11179:16115146,27113233 -h1,11179:19908894,27113233:0,0,0 -k1,11179:32583029,27113233:12674135 -g1,11179:32583029,27113233 -) -(1,11179:6630773,27779411:25952256,410518,107478 -h1,11179:6630773,27779411:0,0,0 -g1,11179:7579210,27779411 -g1,11179:7895356,27779411 -g1,11179:8211502,27779411 -g1,11179:8527648,27779411 -g1,11179:8843794,27779411 -g1,11179:12005251,27779411 -g1,11179:12953689,27779411 -g1,11179:18012021,27779411 -h1,11179:18960458,27779411:0,0,0 -k1,11179:32583029,27779411:13622571 -g1,11179:32583029,27779411 -) -(1,11179:6630773,28445589:25952256,410518,31456 -h1,11179:6630773,28445589:0,0,0 -g1,11179:7579210,28445589 -g1,11179:7895356,28445589 -g1,11179:8211502,28445589 -g1,11179:8527648,28445589 -g1,11179:8843794,28445589 -g1,11179:11056814,28445589 -g1,11179:12005252,28445589 -h1,11179:12637543,28445589:0,0,0 -k1,11179:32583029,28445589:19945486 -g1,11179:32583029,28445589 -) -(1,11179:6630773,29111767:25952256,410518,31456 -h1,11179:6630773,29111767:0,0,0 -g1,11179:7579210,29111767 -g1,11179:7895356,29111767 -g1,11179:8211502,29111767 -g1,11179:8527648,29111767 -g1,11179:8843794,29111767 -g1,11179:11372960,29111767 -g1,11179:12321398,29111767 -h1,11179:12953689,29111767:0,0,0 -k1,11179:32583029,29111767:19629340 -g1,11179:32583029,29111767 -) -(1,11179:6630773,29777945:25952256,410518,76021 -h1,11179:6630773,29777945:0,0,0 -g1,11179:7579210,29777945 -g1,11179:7895356,29777945 -g1,11179:8211502,29777945 -g1,11179:8527648,29777945 -g1,11179:8843794,29777945 -g1,11179:9792231,29777945 -h1,11179:12005251,29777945:0,0,0 -k1,11179:32583029,29777945:20577778 -g1,11179:32583029,29777945 -) -(1,11179:6630773,30444123:25952256,410518,31456 -h1,11179:6630773,30444123:0,0,0 -g1,11179:7579210,30444123 -g1,11179:7895356,30444123 -g1,11179:8211502,30444123 -g1,11179:8527648,30444123 -g1,11179:8843794,30444123 -g1,11179:9159940,30444123 -g1,11179:9476086,30444123 -g1,11179:9792232,30444123 -g1,11179:10108378,30444123 -g1,11179:12637544,30444123 -g1,11179:13585982,30444123 -h1,11179:14218273,30444123:0,0,0 -k1,11179:32583029,30444123:18364756 -g1,11179:32583029,30444123 -) -(1,11179:6630773,31110301:25952256,410518,76021 -h1,11179:6630773,31110301:0,0,0 -g1,11179:7579210,31110301 -g1,11179:7895356,31110301 -g1,11179:8211502,31110301 -g1,11179:8527648,31110301 -g1,11179:8843794,31110301 -g1,11179:9792231,31110301 -h1,11179:12005251,31110301:0,0,0 -k1,11179:32583029,31110301:20577778 -g1,11179:32583029,31110301 -) -(1,11179:6630773,31776479:25952256,410518,31456 -h1,11179:6630773,31776479:0,0,0 -g1,11179:7579210,31776479 -g1,11179:7895356,31776479 -g1,11179:8211502,31776479 -g1,11179:8527648,31776479 -g1,11179:8843794,31776479 -g1,11179:9159940,31776479 -g1,11179:9476086,31776479 -g1,11179:9792232,31776479 -g1,11179:10108378,31776479 -g1,11179:11372961,31776479 -g1,11179:12321399,31776479 -h1,11179:12637545,31776479:0,0,0 -k1,11179:32583029,31776479:19945484 -g1,11179:32583029,31776479 -) -(1,11179:6630773,32442657:25952256,410518,101187 -h1,11179:6630773,32442657:0,0,0 -g1,11179:7579210,32442657 -g1,11179:7895356,32442657 -g1,11179:8211502,32442657 -g1,11179:8527648,32442657 -g1,11179:8843794,32442657 -g1,11179:9792231,32442657 -h1,11179:12005251,32442657:0,0,0 -k1,11179:32583029,32442657:20577778 -g1,11179:32583029,32442657 -) -(1,11179:6630773,33108835:25952256,410518,101187 -h1,11179:6630773,33108835:0,0,0 -g1,11179:7579210,33108835 -g1,11179:7895356,33108835 -g1,11179:8211502,33108835 -g1,11179:8527648,33108835 -g1,11179:8843794,33108835 -g1,11179:9159940,33108835 -g1,11179:9476086,33108835 -g1,11179:9792232,33108835 -g1,11179:10108378,33108835 -g1,11179:11372961,33108835 -g1,11179:12321399,33108835 -h1,11179:12637545,33108835:0,0,0 -k1,11179:32583029,33108835:19945484 -g1,11179:32583029,33108835 -) -(1,11179:6630773,33775013:25952256,410518,101187 -h1,11179:6630773,33775013:0,0,0 -g1,11179:7579210,33775013 -g1,11179:7895356,33775013 -g1,11179:8211502,33775013 -g1,11179:8527648,33775013 -g1,11179:8843794,33775013 -g1,11179:9792231,33775013 -h1,11179:11372959,33775013:0,0,0 -k1,11179:32583029,33775013:21210070 -g1,11179:32583029,33775013 -) -(1,11179:6630773,34441191:25952256,410518,101187 -h1,11179:6630773,34441191:0,0,0 -g1,11179:7579210,34441191 -g1,11179:7895356,34441191 -g1,11179:8211502,34441191 -g1,11179:8527648,34441191 -g1,11179:8843794,34441191 -g1,11179:9159940,34441191 -g1,11179:9476086,34441191 -g1,11179:9792232,34441191 -g1,11179:10108378,34441191 -g1,11179:11689107,34441191 -g1,11179:12637545,34441191 -h1,11179:13902128,34441191:0,0,0 -k1,11179:32583028,34441191:18680900 -g1,11179:32583028,34441191 -) -(1,11179:6630773,35107369:25952256,379060,0 -h1,11179:6630773,35107369:0,0,0 -g1,11179:7579210,35107369 -g1,11179:7895356,35107369 -g1,11179:8211502,35107369 -g1,11179:8527648,35107369 -g1,11179:8843794,35107369 -h1,11179:9159940,35107369:0,0,0 -k1,11179:32583028,35107369:23423088 -g1,11179:32583028,35107369 -) -(1,11179:6630773,35773547:25952256,404226,76021 -h1,11179:6630773,35773547:0,0,0 -g1,11179:7579210,35773547 -h1,11179:7895356,35773547:0,0,0 -k1,11179:32583028,35773547:24687672 -g1,11179:32583028,35773547 -) -(1,11179:6630773,36439725:25952256,404226,101187 -h1,11179:6630773,36439725:0,0,0 -g1,11179:7579210,36439725 -g1,11179:11056813,36439725 -k1,11179:11056813,36439725:0 -h1,11179:17063581,36439725:0,0,0 -k1,11179:32583029,36439725:15519448 -g1,11179:32583029,36439725 -) -(1,11179:6630773,37105903:25952256,404226,101187 -h1,11179:6630773,37105903:0,0,0 -g1,11179:7579210,37105903 -g1,11179:12005250,37105903 -k1,11179:12005250,37105903:0 -h1,11179:17063581,37105903:0,0,0 -k1,11179:32583029,37105903:15519448 -g1,11179:32583029,37105903 -) -] -) -g1,11180:32583029,37207090 -g1,11180:6630773,37207090 -g1,11180:6630773,37207090 -g1,11180:32583029,37207090 -g1,11180:32583029,37207090 -) -h1,11180:6630773,37403698:0,0,0 -(1,11184:6630773,38769474:25952256,513147,134348 -h1,11183:6630773,38769474:983040,0,0 -k1,11183:8627409,38769474:195707 -k1,11183:9927398,38769474:195707 -k1,11183:10870871,38769474:195707 -k1,11183:12506404,38769474:195707 -k1,11183:13314873,38769474:195707 -k1,11183:14529665,38769474:195707 -k1,11183:15908297,38769474:195707 -k1,11183:16763296,38769474:195707 -k1,11183:17978088,38769474:195707 -k1,11183:20331240,38769474:195707 -k1,11183:21730188,38769474:195707 -k1,11183:24621391,38769474:195707 -k1,11183:27103649,38769474:195707 -k1,11183:27915394,38769474:195707 -k1,11183:29130186,38769474:195707 -k1,11183:29740733,38769474:195704 -k1,11183:32583029,38769474:0 -) -(1,11184:6630773,39610962:25952256,513147,126483 -k1,11183:7930399,39610962:198621 -k1,11183:9638969,39610962:198620 -k1,11183:14359574,39610962:198621 -k1,11183:15283023,39610962:198621 -k1,11183:16766150,39610962:198621 -k1,11183:17422867,39610962:198620 -k1,11183:20364170,39610962:198621 -k1,11183:22579989,39610962:198621 -k1,11183:25898778,39610962:198620 -k1,11183:27381905,39610962:198621 -k1,11183:28572086,39610962:198621 -k1,11183:30092568,39610962:198621 -k1,11183:30950480,39610962:198620 -k1,11183:32168186,39610962:198621 -k1,11184:32583029,39610962:0 -) -(1,11184:6630773,40452450:25952256,505283,134348 -k1,11183:9888621,40452450:241881 -k1,11183:11202672,40452450:241882 -k1,11183:12729059,40452450:241881 -k1,11183:13962500,40452450:241881 -k1,11183:15270653,40452450:241882 -k1,11183:17429462,40452450:241881 -k1,11183:19406737,40452450:241882 -k1,11183:20667703,40452450:241881 -k1,11183:21324385,40452450:241839 -k1,11183:24582233,40452450:241881 -k1,11183:25815674,40452450:241881 -k1,11183:27925332,40452450:241882 -k1,11183:31391584,40452450:241881 -k1,11183:32583029,40452450:0 -) -(1,11184:6630773,41293938:25952256,513147,134348 -k1,11183:8437222,41293938:297810 -k1,11183:9824897,41293938:297811 -k1,11183:13204865,41293938:297810 -k1,11183:15673227,41293938:297810 -k1,11183:16718804,41293938:297811 -k1,11183:19815657,41293938:297810 -k1,11183:22671994,41293938:297811 -k1,11183:24478443,41293938:297810 -k1,11183:26514268,41293938:297810 -k1,11183:28138528,41293938:297811 -(1,11183:28138528,41293938:0,452978,115847 -r1,11200:29903641,41293938:1765113,568825,115847 -k1,11183:28138528,41293938:-1765113 -) -(1,11183:28138528,41293938:1765113,452978,115847 -k1,11183:28138528,41293938:3277 -h1,11183:29900364,41293938:0,411205,112570 -) -k1,11183:30201451,41293938:297810 -k1,11183:32583029,41293938:0 -) -(1,11184:6630773,42135426:25952256,505283,95026 -k1,11184:32583029,42135426:23716168 -g1,11184:32583029,42135426 -) -v1,11186:6630773,43325892:0,393216,0 -(1,11193:6630773,44275709:25952256,1343033,196608 -g1,11193:6630773,44275709 -g1,11193:6630773,44275709 -g1,11193:6434165,44275709 -(1,11193:6434165,44275709:0,1343033,196608 -r1,11200:32779637,44275709:26345472,1539641,196608 -k1,11193:6434165,44275709:-26345472 -) -(1,11193:6434165,44275709:26345472,1343033,196608 -[1,11193:6630773,44275709:25952256,1146425,0 -(1,11188:6630773,43533510:25952256,404226,6290 -(1,11187:6630773,43533510:0,0,0 -g1,11187:6630773,43533510 -g1,11187:6630773,43533510 -g1,11187:6303093,43533510 -(1,11187:6303093,43533510:0,0,0 -) -g1,11187:6630773,43533510 -) -h1,11188:7895356,43533510:0,0,0 -k1,11188:32583028,43533510:24687672 -g1,11188:32583028,43533510 -) -(1,11192:6630773,44199688:25952256,410518,76021 -(1,11190:6630773,44199688:0,0,0 -g1,11190:6630773,44199688 -g1,11190:6630773,44199688 -g1,11190:6303093,44199688 -(1,11190:6303093,44199688:0,0,0 -) -g1,11190:6630773,44199688 -) -g1,11192:7579210,44199688 -g1,11192:10424521,44199688 -g1,11192:12321395,44199688 -g1,11192:12637541,44199688 -h1,11192:18328163,44199688:0,0,0 -k1,11192:32583029,44199688:14254866 -g1,11192:32583029,44199688 -) -] -) -g1,11193:32583029,44275709 -g1,11193:6630773,44275709 -g1,11193:6630773,44275709 -g1,11193:32583029,44275709 -g1,11193:32583029,44275709 -) -h1,11193:6630773,44472317:0,0,0 -] -(1,11200:32583029,45706769:0,0,0 -g1,11200:32583029,45706769 -) -) -] -(1,11200:6630773,47279633:25952256,0,0 -h1,11200:6630773,47279633:25952256,0,0 -) -] -(1,11200:4262630,4025873:0,0,0 -[1,11200:-473656,4025873:0,0,0 -(1,11200:-473656,-710413:0,0,0 -(1,11200:-473656,-710413:0,0,0 -g1,11200:-473656,-710413 -) -g1,11200:-473656,-710413 -) +) ] +[1,10436:3078558,4812305:0,0,0 +(1,10436:3078558,49800853:0,16384,2228224 +g1,10436:29030814,49800853 +g1,10436:36135244,49800853 +(1,8606:36135244,49800853:1720320,16384,2228224 +(1,8606:36135244,52029077:16384,1703936,0 +[1,8606:36135244,52029077:25952256,1703936,0 +(1,8606:36135244,51504789:25952256,1179648,0 +(1,8606:36135244,51504789:16384,1179648,0 +r1,10436:36151628,51504789:16384,1179648,0 +) +k1,8606:62087500,51504789:25935872 +g1,8606:62087500,51504789 ) ] -!29749 -}188 -Input:1672:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!106 -{189 -[1,11286:4262630,47279633:28320399,43253760,0 -(1,11286:4262630,4025873:0,0,0 -[1,11286:-473656,4025873:0,0,0 -(1,11286:-473656,-710413:0,0,0 -(1,11286:-473656,-644877:0,0,0 -k1,11286:-473656,-644877:-65536 ) -(1,11286:-473656,4736287:0,0,0 -k1,11286:-473656,4736287:5209943 +g1,8606:36675916,49800853 +(1,8606:36675916,49800853:1179648,16384,0 +r1,10436:37855564,49800853:1179648,16384,0 +) +) +k1,10436:3078556,49800853:-34777008 +) +] +g1,10436:6630773,4812305 +g1,10436:6630773,4812305 +g1,10436:8671564,4812305 +g1,10436:11756343,4812305 +k1,10436:31387651,4812305:19631308 +) +) +] +[1,10436:6630773,45706769:25952256,40108032,0 +(1,10436:6630773,45706769:25952256,40108032,0 +(1,10436:6630773,45706769:0,0,0 +g1,10436:6630773,45706769 +) +[1,10436:6630773,45706769:25952256,40108032,0 +v1,10385:6630773,6254097:0,393216,0 +(1,10388:6630773,14474598:25952256,8613717,0 +g1,10388:6630773,14474598 +g1,10388:6237557,14474598 +r1,10436:6368629,14474598:131072,8613717,0 +g1,10388:6567858,14474598 +g1,10388:6764466,14474598 +[1,10388:6764466,14474598:25818563,8613717,0 +(1,10386:6764466,6562395:25818563,701514,196608 +(1,10385:6764466,6562395:0,701514,196608 +r1,10436:8010564,6562395:1246098,898122,196608 +k1,10385:6764466,6562395:-1246098 +) +(1,10385:6764466,6562395:1246098,701514,196608 +) +k1,10385:8211475,6562395:200911 +k1,10385:8539155,6562395:327680 +k1,10385:13079205,6562395:200911 +(1,10385:13079205,6562395:0,459977,115847 +r1,10436:14140894,6562395:1061689,575824,115847 +k1,10385:13079205,6562395:-1061689 +) +(1,10385:13079205,6562395:1061689,459977,115847 +k1,10385:13079205,6562395:3277 +h1,10385:14137617,6562395:0,411205,112570 +) +k1,10385:14515476,6562395:200912 +(1,10385:14515476,6562395:0,452978,115847 +r1,10436:16280589,6562395:1765113,568825,115847 +k1,10385:14515476,6562395:-1765113 +) +(1,10385:14515476,6562395:1765113,452978,115847 +k1,10385:14515476,6562395:3277 +h1,10385:16277312,6562395:0,411205,112570 +) +k1,10385:16481500,6562395:200911 +k1,10385:17873856,6562395:200911 +(1,10385:17873856,6562395:0,414482,115847 +r1,10436:19990681,6562395:2116825,530329,115847 +k1,10385:17873856,6562395:-2116825 +) +(1,10385:17873856,6562395:2116825,414482,115847 +k1,10385:17873856,6562395:3277 +h1,10385:19987404,6562395:0,411205,112570 +) +k1,10385:20191592,6562395:200911 +k1,10385:22137727,6562395:200911 +k1,10385:23330198,6562395:200911 +k1,10385:27121172,6562395:200912 +k1,10385:28008245,6562395:200911 +k1,10385:31692395,6562395:200911 +k1,10386:32583029,6562395:0 +) +(1,10386:6764466,7427475:25818563,513147,134348 +k1,10385:9613710,7427475:248775 +k1,10385:13166154,7427475:248774 +k1,10385:14074221,7427475:248775 +k1,10385:17065021,7427475:248774 +k1,10385:21004128,7427475:248775 +k1,10385:21880738,7427475:248775 +k1,10385:24934453,7427475:248774 +k1,10385:26102043,7427475:248775 +k1,10385:28143227,7427475:248774 +k1,10385:31417799,7427475:248775 +k1,10385:32583029,7427475:0 +) +(1,10386:6764466,8292555:25818563,513147,134348 +k1,10385:11166192,8292555:184484 +k1,10385:13877744,8292555:184484 +k1,10385:14748389,8292555:184483 +k1,10385:18216227,8292555:184484 +k1,10385:18756571,8292555:184484 +k1,10385:21636551,8292555:184484 +k1,10385:22437073,8292555:184484 +k1,10385:25005101,8292555:184484 +k1,10385:26137235,8292555:184483 +k1,10385:27773341,8292555:184484 +k1,10385:28617117,8292555:184484 +k1,10385:29820686,8292555:184484 +k1,10385:32583029,8292555:0 +) +(1,10386:6764466,9157635:25818563,513147,134348 +k1,10385:9898902,9157635:180728 +k1,10385:10738922,9157635:180728 +k1,10385:12428289,9157635:180728 +k1,10385:14491211,9157635:180728 +k1,10385:15595341,9157635:180728 +k1,10385:17465587,9157635:180728 +k1,10385:18262354,9157635:180729 +k1,10385:20188306,9157635:180728 +k1,10385:21388119,9157635:180728 +k1,10385:23742021,9157635:180728 +k1,10385:24582041,9157635:180728 +k1,10385:26796351,9157635:180728 +k1,10385:30024503,9157635:180728 +k1,10385:32583029,9157635:0 +) +(1,10386:6764466,10022715:25818563,505283,126483 +k1,10385:7384296,10022715:263970 +k1,10385:9063187,10022715:263969 +k1,10385:10431439,10022715:263970 +k1,10385:11443175,10022715:263970 +k1,10385:13745314,10022715:263969 +k1,10385:14625322,10022715:263970 +k1,10385:17730933,10022715:263970 +k1,10385:19186347,10022715:263969 +k1,10385:20963543,10022715:263970 +k1,10385:21843550,10022715:263969 +k1,10385:25769016,10022715:263970 +k1,10385:29254081,10022715:263970 +k1,10385:30721291,10022715:263969 +k1,10385:31516758,10022715:263970 +k1,10385:32583029,10022715:0 +) +(1,10386:6764466,10887795:25818563,513147,126483 +g1,10385:9593655,10887795 +g1,10385:10408922,10887795 +g1,10385:11627236,10887795 +g1,10385:13193546,10887795 +g1,10385:14052067,10887795 +g1,10385:16043706,10887795 +k1,10386:32583029,10887795:13339855 +g1,10386:32583029,10887795 +) +(1,10388:6764466,11752875:25818563,513147,134348 +h1,10387:6764466,11752875:983040,0,0 +k1,10387:9817889,11752875:175082 +k1,10387:13018768,11752875:175082 +k1,10387:14298132,11752875:175082 +k1,10387:15220980,11752875:175082 +k1,10387:17923130,11752875:175082 +k1,10387:18784374,11752875:175082 +k1,10387:19315315,11752875:175081 +k1,10387:23396998,11752875:175082 +k1,10387:24258242,11752875:175082 +k1,10387:25813512,11752875:175082 +k1,10387:27092876,11752875:175082 +k1,10387:28015724,11752875:175082 +k1,10387:31821501,11752875:175082 +k1,10387:32583029,11752875:0 +) +(1,10388:6764466,12617955:25818563,513147,134348 +k1,10387:8625525,12617955:210862 +k1,10387:11301850,12617955:210861 +k1,10387:13008899,12617955:210862 +k1,10387:15074429,12617955:210861 +k1,10387:16094661,12617955:210862 +(1,10387:16094661,12617955:0,459977,115847 +r1,10436:17156350,12617955:1061689,575824,115847 +k1,10387:16094661,12617955:-1061689 +) +(1,10387:16094661,12617955:1061689,459977,115847 +k1,10387:16094661,12617955:3277 +h1,10387:17153073,12617955:0,411205,112570 +) +k1,10387:17367211,12617955:210861 +k1,10387:19496967,12617955:210862 +k1,10387:22642530,12617955:210861 +k1,10387:24591407,12617955:210862 +k1,10387:26452465,12617955:210861 +k1,10387:29060634,12617955:210862 +k1,10387:29887533,12617955:210861 +k1,10387:32583029,12617955:0 +) +(1,10388:6764466,13483035:25818563,513147,126483 +k1,10387:8109168,13483035:153257 +k1,10387:11699133,13483035:153257 +k1,10387:13361028,13483035:153256 +k1,10387:14606770,13483035:153257 +k1,10387:16530154,13483035:153257 +k1,10387:17334839,13483035:153257 +k1,10387:20108225,13483035:153257 +k1,10387:20676279,13483035:153211 +k1,10387:22325723,13483035:153257 +k1,10387:23763486,13483035:153257 +k1,10387:26659424,13483035:153256 +k1,10387:28656209,13483035:153257 +k1,10387:30251913,13483035:153257 +k1,10387:32583029,13483035:0 +) +(1,10388:6764466,14348115:25818563,505283,126483 +g1,10387:9680818,14348115 +k1,10388:32583028,14348115:20983316 +g1,10388:32583028,14348115 +) +] +g1,10388:32583029,14474598 +) +h1,10388:6630773,14474598:0,0,0 +(1,10391:6630773,15339678:25952256,513147,126483 +h1,10390:6630773,15339678:983040,0,0 +k1,10390:9076534,15339678:266034 +k1,10390:12104911,15339678:266034 +k1,10390:14163355,15339678:266034 +k1,10390:17455186,15339678:266034 +k1,10390:18337258,15339678:266034 +k1,10390:20037220,15339678:266034 +k1,10390:20718031,15339678:265968 +k1,10390:22727323,15339678:266034 +k1,10390:23609395,15339678:266034 +k1,10390:24894514,15339678:266034 +k1,10390:26715717,15339678:266034 +k1,10390:27641043,15339678:266034 +k1,10390:28926162,15339678:266034 +k1,10390:31202841,15339678:266034 +k1,10390:32583029,15339678:0 +) +(1,10391:6630773,16204758:25952256,513147,134348 +k1,10390:8851365,16204758:172592 +k1,10390:9971609,16204758:172593 +k1,10390:11652840,16204758:172592 +(1,10390:11652840,16204758:0,414482,115847 +r1,10436:12011106,16204758:358266,530329,115847 +k1,10390:11652840,16204758:-358266 +) +(1,10390:11652840,16204758:358266,414482,115847 +k1,10390:11652840,16204758:3277 +h1,10390:12007829,16204758:0,411205,112570 +) +k1,10390:12183699,16204758:172593 +k1,10390:15810694,16204758:172592 +k1,10390:17002372,16204758:172593 +k1,10390:18730133,16204758:172592 +k1,10390:19562018,16204758:172593 +k1,10390:20753695,16204758:172592 +k1,10390:22885814,16204758:172593 +k1,10390:24438594,16204758:172592 +k1,10390:26621832,16204758:172593 +k1,10390:29004298,16204758:172592 +k1,10390:30195976,16204758:172593 +k1,10390:31923737,16204758:172592 +k1,10390:32583029,16204758:0 +) +(1,10391:6630773,17069838:25952256,513147,126483 +k1,10390:7822942,17069838:173084 +k1,10390:9676369,17069838:173084 +k1,10390:12628180,17069838:173084 +k1,10390:13562792,17069838:173084 +k1,10390:14754961,17069838:173084 +k1,10390:17299793,17069838:173084 +k1,10390:20342043,17069838:173084 +(1,10390:20342043,17069838:0,452978,115847 +r1,10436:23162292,17069838:2820249,568825,115847 +k1,10390:20342043,17069838:-2820249 +) +(1,10390:20342043,17069838:2820249,452978,115847 +k1,10390:20342043,17069838:3277 +h1,10390:23159015,17069838:0,411205,112570 +) +k1,10390:23335376,17069838:173084 +k1,10390:24699905,17069838:173084 +(1,10390:24699905,17069838:0,452978,115847 +r1,10436:27520154,17069838:2820249,568825,115847 +k1,10390:24699905,17069838:-2820249 +) +(1,10390:24699905,17069838:2820249,452978,115847 +k1,10390:24699905,17069838:3277 +h1,10390:27516877,17069838:0,411205,112570 +) +k1,10390:27693238,17069838:173084 +k1,10390:29937260,17069838:173084 +k1,10390:30466204,17069838:173084 +(1,10390:30466204,17069838:0,414482,115847 +r1,10436:32583029,17069838:2116825,530329,115847 +k1,10390:30466204,17069838:-2116825 +) +(1,10390:30466204,17069838:2116825,414482,115847 +k1,10390:30466204,17069838:3277 +h1,10390:32579752,17069838:0,411205,112570 +) +k1,10390:32583029,17069838:0 +) +(1,10391:6630773,17934918:25952256,505283,134348 +k1,10390:7481442,17934918:167784 +(1,10390:7481442,17934918:0,452978,115847 +r1,10436:8894843,17934918:1413401,568825,115847 +k1,10390:7481442,17934918:-1413401 +) +(1,10390:7481442,17934918:1413401,452978,115847 +k1,10390:7481442,17934918:3277 +h1,10390:8891566,17934918:0,411205,112570 +) +k1,10390:9062626,17934918:167783 +k1,10390:9916572,17934918:167784 +k1,10390:10855059,17934918:167784 +k1,10390:14095171,17934918:167784 +k1,10390:16468241,17934918:167783 +k1,10390:19194551,17934918:167784 +(1,10390:19194551,17934918:0,414482,115847 +r1,10436:19552817,17934918:358266,530329,115847 +k1,10390:19194551,17934918:-358266 +) +(1,10390:19194551,17934918:358266,414482,115847 +k1,10390:19194551,17934918:3277 +h1,10390:19549540,17934918:0,411205,112570 +) +k1,10390:19894271,17934918:167784 +(1,10390:19894271,17934918:0,452978,115847 +r1,10436:22714520,17934918:2820249,568825,115847 +k1,10390:19894271,17934918:-2820249 +) +(1,10390:19894271,17934918:2820249,452978,115847 +k1,10390:19894271,17934918:3277 +h1,10390:22711243,17934918:0,411205,112570 +) +k1,10390:22882304,17934918:167784 +k1,10390:25391033,17934918:167783 +k1,10390:25914677,17934918:167784 +(1,10390:25914677,17934918:0,452978,115847 +r1,10436:27328078,17934918:1413401,568825,115847 +k1,10390:25914677,17934918:-1413401 +) +(1,10390:25914677,17934918:1413401,452978,115847 +k1,10390:25914677,17934918:3277 +h1,10390:27324801,17934918:0,411205,112570 +) +k1,10390:27495862,17934918:167784 +k1,10390:28346531,17934918:167784 +k1,10390:29285017,17934918:167783 +(1,10390:29285017,17934918:0,414482,115847 +r1,10436:31050130,17934918:1765113,530329,115847 +k1,10390:29285017,17934918:-1765113 +) +(1,10390:29285017,17934918:1765113,414482,115847 +k1,10390:29285017,17934918:3277 +h1,10390:31046853,17934918:0,411205,112570 +) +k1,10390:31391584,17934918:167784 +k1,10391:32583029,17934918:0 +) +(1,10391:6630773,18799998:25952256,513147,126483 +(1,10390:6630773,18799998:0,452978,115847 +r1,10436:9451022,18799998:2820249,568825,115847 +k1,10390:6630773,18799998:-2820249 +) +(1,10390:6630773,18799998:2820249,452978,115847 +k1,10390:6630773,18799998:3277 +h1,10390:9447745,18799998:0,411205,112570 +) +k1,10390:9727243,18799998:276221 +k1,10390:12132730,18799998:276222 +k1,10390:15348241,18799998:276221 +k1,10390:16412860,18799998:276221 +k1,10390:19467808,18799998:276221 +k1,10390:21424373,18799998:276222 +k1,10390:22968060,18799998:276221 +k1,10390:23600141,18799998:276221 +k1,10390:26027909,18799998:276221 +k1,10390:27993649,18799998:276222 +(1,10390:27993649,18799998:0,452978,115847 +r1,10436:30813898,18799998:2820249,568825,115847 +k1,10390:27993649,18799998:-2820249 +) +(1,10390:27993649,18799998:2820249,452978,115847 +k1,10390:27993649,18799998:3277 +h1,10390:30810621,18799998:0,411205,112570 +) +k1,10390:31090119,18799998:276221 +k1,10390:32583029,18799998:0 +) +(1,10391:6630773,19665078:25952256,513147,134348 +k1,10390:7821660,19665078:171802 +k1,10390:12359471,19665078:171802 +k1,10390:15648165,19665078:171802 +k1,10390:16471395,19665078:171802 +k1,10390:17662282,19665078:171802 +k1,10390:20906411,19665078:171801 +k1,10390:23283500,19665078:171802 +k1,10390:24106730,19665078:171802 +k1,10390:25066930,19665078:171802 +(1,10390:25066930,19665078:0,459977,115847 +r1,10436:27887179,19665078:2820249,575824,115847 +k1,10390:25066930,19665078:-2820249 +) +(1,10390:25066930,19665078:2820249,459977,115847 +k1,10390:25066930,19665078:3277 +h1,10390:27883902,19665078:0,411205,112570 +) +k1,10390:28058981,19665078:171802 +k1,10390:31685186,19665078:171802 +k1,10390:32583029,19665078:0 +) +(1,10391:6630773,20530158:25952256,513147,126483 +k1,10390:8479751,20530158:152251 +k1,10390:10424412,20530158:152251 +k1,10390:13602460,20530158:152251 +k1,10390:14858994,20530158:152252 +k1,10390:15759011,20530158:152251 +k1,10390:17424488,20530158:152251 +k1,10390:18228167,20530158:152251 +k1,10390:20143992,20530158:152251 +k1,10390:21066947,20530158:152252 +k1,10390:21633994,20530158:152204 +k1,10390:24481741,20530158:152251 +k1,10390:25918498,20530158:152251 +k1,10390:28411695,20530158:152251 +k1,10390:28919807,20530158:152252 +k1,10390:30752401,20530158:152251 +k1,10390:31563944,20530158:152251 +k1,10390:32583029,20530158:0 +) +(1,10391:6630773,21395238:25952256,513147,134348 +k1,10390:8483867,21395238:199621 +k1,10390:9366372,21395238:199620 +k1,10390:9921853,21395238:199621 +k1,10390:12883816,21395238:199620 +k1,10390:14638606,21395238:199621 +k1,10390:15524389,21395238:199621 +k1,10390:16512407,21395238:199620 +k1,10390:19958026,21395238:199621 +k1,10390:20785481,21395238:199620 +k1,10390:22004187,21395238:199621 +k1,10390:23570889,21395238:199621 +k1,10390:24437665,21395238:199620 +(1,10390:24437665,21395238:0,452978,115847 +r1,10436:26906202,21395238:2468537,568825,115847 +k1,10390:24437665,21395238:-2468537 +) +(1,10390:24437665,21395238:2468537,452978,115847 +k1,10390:24437665,21395238:3277 +h1,10390:26902925,21395238:0,411205,112570 +) +k1,10390:27105823,21395238:199621 +k1,10390:28496888,21395238:199620 +(1,10390:28496888,21395238:0,452978,115847 +r1,10436:31317137,21395238:2820249,568825,115847 +k1,10390:28496888,21395238:-2820249 +) +(1,10390:28496888,21395238:2820249,452978,115847 +k1,10390:28496888,21395238:3277 +h1,10390:31313860,21395238:0,411205,112570 +) +k1,10390:31516758,21395238:199621 +k1,10390:32583029,21395238:0 +) +(1,10391:6630773,22260318:25952256,513147,134348 +k1,10390:8327651,22260318:230182 +k1,10390:9576919,22260318:230183 +k1,10390:11820367,22260318:230182 +k1,10390:12709842,22260318:230183 +k1,10390:13959109,22260318:230182 +k1,10390:16199936,22260318:230182 +k1,10390:19208846,22260318:230183 +k1,10390:20386679,22260318:230182 +k1,10390:22068483,22260318:230182 +k1,10390:24922072,22260318:230183 +k1,10390:25811546,22260318:230182 +k1,10390:27060814,22260318:230183 +k1,10390:30377742,22260318:230182 +k1,10390:32583029,22260318:0 +) +(1,10391:6630773,23125398:25952256,505283,134348 +k1,10390:7564020,23125398:247085 +k1,10390:8581809,23125398:247086 +k1,10390:12074892,23125398:247085 +k1,10390:14182544,23125398:247085 +k1,10390:15081057,23125398:247085 +k1,10390:16075909,23125398:247086 +k1,10390:19777397,23125398:247085 +k1,10390:20652317,23125398:247085 +k1,10390:24063481,23125398:247086 +(1,10390:24063481,23125398:0,452978,115847 +r1,10436:26532018,23125398:2468537,568825,115847 +k1,10390:24063481,23125398:-2468537 +) +(1,10390:24063481,23125398:2468537,452978,115847 +k1,10390:24063481,23125398:3277 +h1,10390:26528741,23125398:0,411205,112570 +) +k1,10390:26779103,23125398:247085 +k1,10390:27557685,23125398:247085 +k1,10390:29317996,23125398:247085 +k1,10390:30216510,23125398:247086 +k1,10390:32227169,23125398:247085 +k1,10390:32583029,23125398:0 +) +(1,10391:6630773,23990478:25952256,513147,134348 +k1,10390:9539479,23990478:213210 +k1,10390:10404118,23990478:213211 +k1,10390:11636413,23990478:213210 +k1,10390:14718790,23990478:213211 +k1,10390:16676568,23990478:213210 +k1,10390:17245638,23990478:213210 +k1,10390:20803807,23990478:213211 +k1,10390:21676309,23990478:213210 +k1,10390:22660223,23990478:213211 +k1,10390:24832959,23990478:213210 +k1,10390:26330675,23990478:213210 +k1,10390:27644891,23990478:213211 +k1,10390:29030540,23990478:213210 +k1,10390:29926636,23990478:213211 +k1,10390:31790043,23990478:213210 +k1,10391:32583029,23990478:0 +) +(1,10391:6630773,24855558:25952256,513147,126483 +k1,10390:9895185,24855558:172424 +k1,10390:11259054,24855558:172424 +(1,10390:11259054,24855558:0,452978,115847 +r1,10436:14079303,24855558:2820249,568825,115847 +k1,10390:11259054,24855558:-2820249 +) +(1,10390:11259054,24855558:2820249,452978,115847 +k1,10390:11259054,24855558:3277 +h1,10390:14076026,24855558:0,411205,112570 +) +k1,10390:14251728,24855558:172425 +k1,10390:15615597,24855558:172424 +(1,10390:15615597,24855558:0,452978,115847 +r1,10436:18435846,24855558:2820249,568825,115847 +k1,10390:15615597,24855558:-2820249 +) +(1,10390:15615597,24855558:2820249,452978,115847 +k1,10390:15615597,24855558:3277 +h1,10390:18432569,24855558:0,411205,112570 +) +k1,10390:18608270,24855558:172424 +k1,10390:19772254,24855558:172424 +k1,10390:21457905,24855558:172425 +k1,10390:22281757,24855558:172424 +k1,10390:24217755,24855558:172424 +k1,10390:24746039,24855558:172424 +k1,10390:27613960,24855558:172425 +k1,10390:28437812,24855558:172424 +k1,10390:29629321,24855558:172424 +k1,10390:32583029,24855558:0 +) +(1,10391:6630773,25720638:25952256,513147,134348 +k1,10390:7504187,25720638:214122 +k1,10390:8074169,25720638:214122 +k1,10390:10266168,25720638:214122 +k1,10390:11163175,25720638:214122 +k1,10390:12544493,25720638:214122 +(1,10390:12544493,25720638:0,452978,115847 +r1,10436:15013030,25720638:2468537,568825,115847 +k1,10390:12544493,25720638:-2468537 +) +(1,10390:12544493,25720638:2468537,452978,115847 +k1,10390:12544493,25720638:3277 +h1,10390:15009753,25720638:0,411205,112570 +) +k1,10390:15227152,25720638:214122 +k1,10390:17782220,25720638:214122 +k1,10390:18767045,25720638:214122 +k1,10390:20630708,25720638:214122 +k1,10390:21527715,25720638:214122 +k1,10390:22097697,25720638:214122 +k1,10390:23305345,25720638:214122 +k1,10390:24202352,25720638:214122 +k1,10390:24772334,25720638:214122 +k1,10390:26964333,25720638:214122 +k1,10390:30540452,25720638:214122 +k1,10390:31563944,25720638:214122 +k1,10390:32583029,25720638:0 +) +(1,10391:6630773,26585718:25952256,505283,134348 +k1,10390:8235043,26585718:161823 +k1,10390:9588312,26585718:161824 +k1,10390:13468648,26585718:161823 +k1,10390:14246510,26585718:161824 +k1,10390:16421599,26585718:161823 +k1,10390:17774867,26585718:161823 +k1,10390:19491860,26585718:161824 +k1,10390:21813094,26585718:161823 +k1,10390:22994002,26585718:161823 +k1,10390:25166471,26585718:161824 +k1,10390:28107021,26585718:161823 +k1,10390:29030373,26585718:161824 +k1,10390:30211281,26585718:161823 +k1,10390:32583029,26585718:0 +) +(1,10391:6630773,27450798:25952256,513147,7863 +k1,10391:32583029,27450798:23083090 +g1,10391:32583029,27450798 +) +(1,10392:6630773,29567616:25952256,564462,147783 +(1,10392:6630773,29567616:2450326,534184,12975 +g1,10392:6630773,29567616 +g1,10392:9081099,29567616 +) +g1,10392:12662511,29567616 +g1,10392:16328989,29567616 +g1,10392:17279130,29567616 +g1,10392:20399889,29567616 +g1,10392:22129319,29567616 +g1,10392:23696547,29567616 +g1,10392:25473556,29567616 +k1,10392:32583029,29567616:4595709 +g1,10392:32583029,29567616 +) +(1,10395:6630773,30825912:25952256,513147,126483 +k1,10394:7735505,30825912:151183 +k1,10394:9192820,30825912:151182 +k1,10394:12476624,30825912:151183 +k1,10394:13646892,30825912:151183 +k1,10394:14890559,30825912:151182 +k1,10394:15708898,30825912:151183 +(1,10394:15708898,30825912:0,452978,115847 +r1,10436:18529147,30825912:2820249,568825,115847 +k1,10394:15708898,30825912:-2820249 +) +(1,10394:15708898,30825912:2820249,452978,115847 +k1,10394:15708898,30825912:3277 +h1,10394:18525870,30825912:0,411205,112570 +) +k1,10394:18854000,30825912:151183 +(1,10394:18854000,30825912:0,452978,115847 +r1,10436:21674249,30825912:2820249,568825,115847 +k1,10394:18854000,30825912:-2820249 +) +(1,10394:18854000,30825912:2820249,452978,115847 +k1,10394:18854000,30825912:3277 +h1,10394:21670972,30825912:0,411205,112570 +) +k1,10394:21825432,30825912:151183 +k1,10394:23168059,30825912:151182 +(1,10394:23168059,30825912:0,452978,115847 +r1,10436:25988308,30825912:2820249,568825,115847 +k1,10394:23168059,30825912:-2820249 +) +(1,10394:23168059,30825912:2820249,452978,115847 +k1,10394:23168059,30825912:3277 +h1,10394:25985031,30825912:0,411205,112570 +) +k1,10394:26313161,30825912:151183 +k1,10394:27092179,30825912:151183 +k1,10394:28262446,30825912:151182 +k1,10394:30714598,30825912:151183 +k1,10394:32583029,30825912:0 +) +(1,10395:6630773,31690992:25952256,513147,126483 +g1,10394:7698354,31690992 +g1,10394:9661157,31690992 +g1,10394:10216246,31690992 +g1,10394:14390889,31690992 +g1,10394:17285614,31690992 +g1,10394:18136271,31690992 +g1,10394:18691360,31690992 +k1,10395:32583029,31690992:11740122 +g1,10395:32583029,31690992 +) +v1,10397:6630773,32556072:0,393216,0 +(1,10398:6630773,35646837:25952256,3483981,0 +g1,10398:6630773,35646837 +g1,10398:6237557,35646837 +r1,10436:6368629,35646837:131072,3483981,0 +g1,10398:6567858,35646837 +g1,10398:6764466,35646837 +[1,10398:6764466,35646837:25818563,3483981,0 +(1,10398:6764466,32917249:25818563,754393,260573 +(1,10397:6764466,32917249:0,754393,260573 +r1,10436:8010564,32917249:1246098,1014966,260573 +k1,10397:6764466,32917249:-1246098 +) +(1,10397:6764466,32917249:1246098,754393,260573 +) +k1,10397:8158707,32917249:148143 +k1,10397:8486387,32917249:327680 +k1,10397:9122068,32917249:148093 +k1,10397:12517520,32917249:148143 +k1,10397:13197160,32917249:148143 +k1,10397:14629809,32917249:148143 +k1,10397:15797037,32917249:148143 +k1,10397:19138095,32917249:148144 +k1,10397:21909644,32917249:148143 +k1,10397:24347615,32917249:148143 +k1,10397:25111796,32917249:148143 +k1,10397:26279024,32917249:148143 +k1,10397:27420694,32917249:148144 +k1,10397:28251722,32917249:148143 +k1,10397:30377742,32917249:148143 +k1,10397:32583029,32917249:0 +) +(1,10398:6764466,33782329:25818563,513147,134348 +k1,10397:7737504,33782329:286876 +k1,10397:11096708,33782329:286876 +k1,10397:12035011,33782329:286875 +k1,10397:13340972,33782329:286876 +(1,10397:13340972,33782329:0,414482,115847 +r1,10436:13699238,33782329:358266,530329,115847 +k1,10397:13340972,33782329:-358266 +) +(1,10397:13340972,33782329:358266,414482,115847 +k1,10397:13340972,33782329:3277 +h1,10397:13695961,33782329:0,411205,112570 +) +k1,10397:13986114,33782329:286876 +k1,10397:17553722,33782329:286876 +k1,10397:18499890,33782329:286876 +k1,10397:20579175,33782329:286875 +k1,10397:23891848,33782329:286876 +k1,10397:25311186,33782329:286876 +k1,10397:26345828,33782329:286876 +k1,10397:28761969,33782329:286876 +k1,10397:31254131,33782329:286875 +k1,10397:32227169,33782329:286876 +k1,10397:32583029,33782329:0 +) +(1,10398:6764466,34647409:25818563,513147,134348 +k1,10397:10121110,34647409:181425 +k1,10397:13374864,34647409:181426 +k1,10397:14207717,34647409:181425 +k1,10397:15408228,34647409:181426 +k1,10397:16895786,34647409:181425 +k1,10397:19205820,34647409:181425 +k1,10397:22667978,34647409:181426 +k1,10397:23508695,34647409:181425 +k1,10397:24709206,34647409:181426 +k1,10397:27262379,34647409:181425 +k1,10397:30312971,34647409:181426 +k1,10397:31563944,34647409:181425 +k1,10397:32583029,34647409:0 +) +(1,10398:6764466,35512489:25818563,513147,134348 +g1,10397:9659191,35512489 +g1,10397:12063707,35512489 +g1,10397:12949098,35512489 +g1,10397:16220655,35512489 +g1,10397:17071312,35512489 +(1,10397:17071312,35512489:0,414482,115847 +r1,10436:18133001,35512489:1061689,530329,115847 +k1,10397:17071312,35512489:-1061689 +) +(1,10397:17071312,35512489:1061689,414482,115847 +k1,10397:17071312,35512489:3277 +h1,10397:18129724,35512489:0,411205,112570 +) +g1,10397:18332230,35512489 +g1,10397:20153475,35512489 +g1,10397:21100470,35512489 +g1,10397:24835366,35512489 +g1,10397:26428546,35512489 +g1,10397:27831016,35512489 +k1,10398:32583029,35512489:1593833 +g1,10398:32583029,35512489 +) +] +g1,10398:32583029,35646837 +) +h1,10398:6630773,35646837:0,0,0 +v1,10401:6630773,36331692:0,393216,0 +(1,10410:6630773,38824982:25952256,2886506,196608 +g1,10410:6630773,38824982 +g1,10410:6630773,38824982 +g1,10410:6434165,38824982 +(1,10410:6434165,38824982:0,2886506,196608 +r1,10436:32779637,38824982:26345472,3083114,196608 +k1,10410:6434165,38824982:-26345472 +) +(1,10410:6434165,38824982:26345472,2886506,196608 +[1,10410:6630773,38824982:25952256,2689898,0 +(1,10403:6630773,36559523:25952256,424439,112852 +(1,10402:6630773,36559523:0,0,0 +g1,10402:6630773,36559523 +g1,10402:6630773,36559523 +g1,10402:6303093,36559523 +(1,10402:6303093,36559523:0,0,0 +) +g1,10402:6630773,36559523 +) +k1,10403:6630773,36559523:0 +g1,10403:12273990,36559523 +g1,10403:12937898,36559523 +g1,10403:13933760,36559523 +g1,10403:15593530,36559523 +g1,10403:18581115,36559523 +g1,10403:20240885,36559523 +g1,10403:21568701,36559523 +k1,10403:21568701,36559523:1652 +h1,10403:23562077,36559523:0,0,0 +k1,10403:32583029,36559523:9020952 +g1,10403:32583029,36559523 +) +(1,10404:6630773,37244378:25952256,431045,106246 +h1,10404:6630773,37244378:0,0,0 +g1,10404:9618358,37244378 +g1,10404:10614220,37244378 +g1,10404:13601806,37244378 +g1,10404:14265714,37244378 +g1,10404:14929622,37244378 +g1,10404:16921346,37244378 +g1,10404:19245024,37244378 +g1,10404:20240886,37244378 +g1,10404:22232610,37244378 +g1,10404:23228472,37244378 +g1,10404:24888242,37244378 +g1,10404:27211920,37244378 +k1,10404:27211920,37244378:14864 +h1,10404:28886554,37244378:0,0,0 +k1,10404:32583029,37244378:3696475 +g1,10404:32583029,37244378 +) +(1,10405:6630773,37929233:25952256,424439,79822 +h1,10405:6630773,37929233:0,0,0 +k1,10405:6630773,37929233:0 +h1,10405:10946174,37929233:0,0,0 +k1,10405:32583030,37929233:21636856 +g1,10405:32583030,37929233 +) +(1,10409:6630773,38745160:25952256,424439,79822 +(1,10407:6630773,38745160:0,0,0 +g1,10407:6630773,38745160 +g1,10407:6630773,38745160 +g1,10407:6303093,38745160 +(1,10407:6303093,38745160:0,0,0 +) +g1,10407:6630773,38745160 +) +g1,10409:7626635,38745160 +g1,10409:7958589,38745160 +g1,10409:9286405,38745160 +g1,10409:11278129,38745160 +g1,10409:13269853,38745160 +g1,10409:15261577,38745160 +g1,10409:17253301,38745160 +g1,10409:19245025,38745160 +g1,10409:21236749,38745160 +h1,10409:22232611,38745160:0,0,0 +k1,10409:32583029,38745160:10350418 +g1,10409:32583029,38745160 +) +] +) +g1,10410:32583029,38824982 +g1,10410:6630773,38824982 +g1,10410:6630773,38824982 +g1,10410:32583029,38824982 +g1,10410:32583029,38824982 +) +h1,10410:6630773,39021590:0,0,0 +v1,10414:6630773,39706445:0,393216,0 +(1,10418:6630773,40053734:25952256,740505,196608 +g1,10418:6630773,40053734 +g1,10418:6630773,40053734 +g1,10418:6434165,40053734 +(1,10418:6434165,40053734:0,740505,196608 +r1,10436:32779637,40053734:26345472,937113,196608 +k1,10418:6434165,40053734:-26345472 +) +(1,10418:6434165,40053734:26345472,740505,196608 +[1,10418:6630773,40053734:25952256,543897,0 +(1,10416:6630773,39940882:25952256,431045,112852 +(1,10415:6630773,39940882:0,0,0 +g1,10415:6630773,39940882 +g1,10415:6630773,39940882 +g1,10415:6303093,39940882 +(1,10415:6303093,39940882:0,0,0 +) +g1,10415:6630773,39940882 +) +g1,10416:8954451,39940882 +g1,10416:9950313,39940882 +g1,10416:13933760,39940882 +g1,10416:14929622,39940882 +g1,10416:17585254,39940882 +g1,10416:18249162,39940882 +h1,10416:18913070,39940882:0,0,0 +k1,10416:32583029,39940882:13669959 +g1,10416:32583029,39940882 +) +] +) +g1,10418:32583029,40053734 +g1,10418:6630773,40053734 +g1,10418:6630773,40053734 +g1,10418:32583029,40053734 +g1,10418:32583029,40053734 +) +h1,10418:6630773,40250342:0,0,0 +v1,10422:6630773,40935197:0,393216,0 +(1,10436:6630773,45442865:25952256,4900884,196608 +g1,10436:6630773,45442865 +g1,10436:6630773,45442865 +g1,10436:6434165,45442865 +(1,10436:6434165,45442865:0,4900884,196608 +r1,10436:32779637,45442865:26345472,5097492,196608 +k1,10436:6434165,45442865:-26345472 +) +(1,10436:6434165,45442865:26345472,4900884,196608 +[1,10436:6630773,45442865:25952256,4704276,0 +(1,10424:6630773,41169634:25952256,431045,106246 +(1,10423:6630773,41169634:0,0,0 +g1,10423:6630773,41169634 +g1,10423:6630773,41169634 +g1,10423:6303093,41169634 +(1,10423:6303093,41169634:0,0,0 +) +g1,10423:6630773,41169634 +) +g1,10424:7294681,41169634 +g1,10424:8290543,41169634 +g1,10424:11278129,41169634 +g1,10424:11942037,41169634 +g1,10424:15261576,41169634 +g1,10424:16589392,41169634 +g1,10424:17253300,41169634 +g1,10424:19908932,41169634 +g1,10424:20572840,41169634 +g1,10424:21236748,41169634 +h1,10424:21900656,41169634:0,0,0 +k1,10424:32583029,41169634:10682373 +g1,10424:32583029,41169634 +) +(1,10425:6630773,41854489:25952256,424439,79822 +h1,10425:6630773,41854489:0,0,0 +k1,10425:6630773,41854489:0 +h1,10425:8622497,41854489:0,0,0 +k1,10425:32583029,41854489:23960532 +g1,10425:32583029,41854489 +) +(1,10435:6630773,42670416:25952256,431045,9908 +(1,10427:6630773,42670416:0,0,0 +g1,10427:6630773,42670416 +g1,10427:6630773,42670416 +g1,10427:6303093,42670416 +(1,10427:6303093,42670416:0,0,0 +) +g1,10427:6630773,42670416 +) +g1,10435:7626635,42670416 +g1,10435:9286405,42670416 +g1,10435:10282267,42670416 +h1,10435:10614221,42670416:0,0,0 +k1,10435:32583029,42670416:21968808 +g1,10435:32583029,42670416 +) +(1,10435:6630773,43355271:25952256,431045,33029 +h1,10435:6630773,43355271:0,0,0 +g1,10435:7626635,43355271 +g1,10435:7958589,43355271 +g1,10435:8622497,43355271 +g1,10435:9286405,43355271 +g1,10435:10614221,43355271 +h1,10435:11942037,43355271:0,0,0 +k1,10435:32583029,43355271:20640992 +g1,10435:32583029,43355271 +) +(1,10435:6630773,44040126:25952256,431045,33029 +h1,10435:6630773,44040126:0,0,0 +g1,10435:7626635,44040126 +g1,10435:7958589,44040126 +g1,10435:8622497,44040126 +g1,10435:9286405,44040126 +g1,10435:10614221,44040126 +h1,10435:11942037,44040126:0,0,0 +k1,10435:32583029,44040126:20640992 +g1,10435:32583029,44040126 +) +(1,10435:6630773,44724981:25952256,431045,33029 +h1,10435:6630773,44724981:0,0,0 +g1,10435:7626635,44724981 +g1,10435:7958589,44724981 +g1,10435:8622497,44724981 +g1,10435:9286405,44724981 +g1,10435:10614221,44724981 +h1,10435:11942037,44724981:0,0,0 +k1,10435:32583029,44724981:20640992 +g1,10435:32583029,44724981 +) +(1,10435:6630773,45409836:25952256,431045,33029 +h1,10435:6630773,45409836:0,0,0 +g1,10435:7626635,45409836 +g1,10435:7958589,45409836 +g1,10435:8622497,45409836 +g1,10435:9286405,45409836 +g1,10435:10614221,45409836 +h1,10435:11942037,45409836:0,0,0 +k1,10435:32583029,45409836:20640992 +g1,10435:32583029,45409836 +) +] +) +g1,10436:32583029,45442865 +g1,10436:6630773,45442865 +g1,10436:6630773,45442865 +g1,10436:32583029,45442865 +g1,10436:32583029,45442865 +) +] +(1,10436:32583029,45706769:0,0,0 +g1,10436:32583029,45706769 +) +) +] +(1,10436:6630773,47279633:25952256,0,0 +h1,10436:6630773,47279633:25952256,0,0 +) +] +(1,10436:4262630,4025873:0,0,0 +[1,10436:-473656,4025873:0,0,0 +(1,10436:-473656,-710413:0,0,0 +(1,10436:-473656,-710413:0,0,0 +g1,10436:-473656,-710413 +) +g1,10436:-473656,-710413 +) +] +) +] +!33303 +}166 +Input:1568:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1569:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1570:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1571:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1572:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1573:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1574:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1575:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1576:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1577:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1578:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1579:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1580:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1581:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1328 +{167 +[1,10532:4262630,47279633:28320399,43253760,0 +(1,10532:4262630,4025873:0,0,0 +[1,10532:-473656,4025873:0,0,0 +(1,10532:-473656,-710413:0,0,0 +(1,10532:-473656,-644877:0,0,0 +k1,10532:-473656,-644877:-65536 +) +(1,10532:-473656,4736287:0,0,0 +k1,10532:-473656,4736287:5209943 ) -g1,11286:-473656,-710413 +g1,10532:-473656,-710413 ) ] ) -[1,11286:6630773,47279633:25952256,43253760,0 -[1,11286:6630773,4812305:25952256,786432,0 -(1,11286:6630773,4812305:25952256,505283,134348 -(1,11286:6630773,4812305:25952256,505283,134348 -g1,11286:3078558,4812305 -[1,11286:3078558,4812305:0,0,0 -(1,11286:3078558,2439708:0,1703936,0 -k1,11286:1358238,2439708:-1720320 -(1,10825:1358238,2439708:1720320,1703936,0 -(1,10825:1358238,2439708:1179648,16384,0 -r1,11286:2537886,2439708:1179648,16384,0 +[1,10532:6630773,47279633:25952256,43253760,0 +[1,10532:6630773,4812305:25952256,786432,0 +(1,10532:6630773,4812305:25952256,505283,134348 +(1,10532:6630773,4812305:25952256,505283,134348 +g1,10532:3078558,4812305 +[1,10532:3078558,4812305:0,0,0 +(1,10532:3078558,2439708:0,1703936,0 +k1,10532:1358238,2439708:-1720320 +(1,8606:1358238,2439708:1720320,1703936,0 +(1,8606:1358238,2439708:1179648,16384,0 +r1,10532:2537886,2439708:1179648,16384,0 ) -g1,10825:3062174,2439708 -(1,10825:3062174,2439708:16384,1703936,0 -[1,10825:3062174,2439708:25952256,1703936,0 -(1,10825:3062174,1915420:25952256,1179648,0 -(1,10825:3062174,1915420:16384,1179648,0 -r1,11286:3078558,1915420:16384,1179648,0 +g1,8606:3062174,2439708 +(1,8606:3062174,2439708:16384,1703936,0 +[1,8606:3062174,2439708:25952256,1703936,0 +(1,8606:3062174,1915420:25952256,1179648,0 +(1,8606:3062174,1915420:16384,1179648,0 +r1,10532:3078558,1915420:16384,1179648,0 ) -k1,10825:29014430,1915420:25935872 -g1,10825:29014430,1915420 +k1,8606:29014430,1915420:25935872 +g1,8606:29014430,1915420 ) ] ) ) ) ] -[1,11286:3078558,4812305:0,0,0 -(1,11286:3078558,2439708:0,1703936,0 -g1,11286:29030814,2439708 -g1,11286:36135244,2439708 -(1,10825:36135244,2439708:1720320,1703936,0 -(1,10825:36135244,2439708:16384,1703936,0 -[1,10825:36135244,2439708:25952256,1703936,0 -(1,10825:36135244,1915420:25952256,1179648,0 -(1,10825:36135244,1915420:16384,1179648,0 -r1,11286:36151628,1915420:16384,1179648,0 +[1,10532:3078558,4812305:0,0,0 +(1,10532:3078558,2439708:0,1703936,0 +g1,10532:29030814,2439708 +g1,10532:36135244,2439708 +(1,8606:36135244,2439708:1720320,1703936,0 +(1,8606:36135244,2439708:16384,1703936,0 +[1,8606:36135244,2439708:25952256,1703936,0 +(1,8606:36135244,1915420:25952256,1179648,0 +(1,8606:36135244,1915420:16384,1179648,0 +r1,10532:36151628,1915420:16384,1179648,0 ) -k1,10825:62087500,1915420:25935872 -g1,10825:62087500,1915420 +k1,8606:62087500,1915420:25935872 +g1,8606:62087500,1915420 ) ] ) -g1,10825:36675916,2439708 -(1,10825:36675916,2439708:1179648,16384,0 -r1,11286:37855564,2439708:1179648,16384,0 +g1,8606:36675916,2439708 +(1,8606:36675916,2439708:1179648,16384,0 +r1,10532:37855564,2439708:1179648,16384,0 ) ) -k1,11286:3078556,2439708:-34777008 +k1,10532:3078556,2439708:-34777008 ) ] -[1,11286:3078558,4812305:0,0,0 -(1,11286:3078558,49800853:0,16384,2228224 -k1,11286:1358238,49800853:-1720320 -(1,10825:1358238,49800853:1720320,16384,2228224 -(1,10825:1358238,49800853:1179648,16384,0 -r1,11286:2537886,49800853:1179648,16384,0 +[1,10532:3078558,4812305:0,0,0 +(1,10532:3078558,49800853:0,16384,2228224 +k1,10532:1358238,49800853:-1720320 +(1,8606:1358238,49800853:1720320,16384,2228224 +(1,8606:1358238,49800853:1179648,16384,0 +r1,10532:2537886,49800853:1179648,16384,0 ) -g1,10825:3062174,49800853 -(1,10825:3062174,52029077:16384,1703936,0 -[1,10825:3062174,52029077:25952256,1703936,0 -(1,10825:3062174,51504789:25952256,1179648,0 -(1,10825:3062174,51504789:16384,1179648,0 -r1,11286:3078558,51504789:16384,1179648,0 +g1,8606:3062174,49800853 +(1,8606:3062174,52029077:16384,1703936,0 +[1,8606:3062174,52029077:25952256,1703936,0 +(1,8606:3062174,51504789:25952256,1179648,0 +(1,8606:3062174,51504789:16384,1179648,0 +r1,10532:3078558,51504789:16384,1179648,0 ) -k1,10825:29014430,51504789:25935872 -g1,10825:29014430,51504789 +k1,8606:29014430,51504789:25935872 +g1,8606:29014430,51504789 ) ] ) ) ) ] -[1,11286:3078558,4812305:0,0,0 -(1,11286:3078558,49800853:0,16384,2228224 -g1,11286:29030814,49800853 -g1,11286:36135244,49800853 -(1,10825:36135244,49800853:1720320,16384,2228224 -(1,10825:36135244,52029077:16384,1703936,0 -[1,10825:36135244,52029077:25952256,1703936,0 -(1,10825:36135244,51504789:25952256,1179648,0 -(1,10825:36135244,51504789:16384,1179648,0 -r1,11286:36151628,51504789:16384,1179648,0 +[1,10532:3078558,4812305:0,0,0 +(1,10532:3078558,49800853:0,16384,2228224 +g1,10532:29030814,49800853 +g1,10532:36135244,49800853 +(1,8606:36135244,49800853:1720320,16384,2228224 +(1,8606:36135244,52029077:16384,1703936,0 +[1,8606:36135244,52029077:25952256,1703936,0 +(1,8606:36135244,51504789:25952256,1179648,0 +(1,8606:36135244,51504789:16384,1179648,0 +r1,10532:36151628,51504789:16384,1179648,0 ) -k1,10825:62087500,51504789:25935872 -g1,10825:62087500,51504789 +k1,8606:62087500,51504789:25935872 +g1,8606:62087500,51504789 ) ] ) -g1,10825:36675916,49800853 -(1,10825:36675916,49800853:1179648,16384,0 -r1,11286:37855564,49800853:1179648,16384,0 +g1,8606:36675916,49800853 +(1,8606:36675916,49800853:1179648,16384,0 +r1,10532:37855564,49800853:1179648,16384,0 ) ) -k1,11286:3078556,49800853:-34777008 -) -] -g1,11286:6630773,4812305 -k1,11286:23552825,4812305:15726675 -g1,11286:25175496,4812305 -g1,11286:25997972,4812305 -g1,11286:28481131,4812305 -g1,11286:30046786,4812305 -) -) -] -[1,11286:6630773,45706769:25952256,40108032,0 -(1,11286:6630773,45706769:25952256,40108032,0 -(1,11286:6630773,45706769:0,0,0 -g1,11286:6630773,45706769 -) -[1,11286:6630773,45706769:25952256,40108032,0 -(1,11196:6630773,6254097:25952256,534184,139132 -(1,11196:6630773,6254097:2450326,534184,12975 -g1,11196:6630773,6254097 -g1,11196:9081099,6254097 -) -k1,11196:32583030,6254097:19872940 -g1,11196:32583030,6254097 -) -(1,11200:6630773,7488801:25952256,513147,134348 -k1,11199:10031032,7488801:208656 -k1,11199:11231249,7488801:208657 -k1,11199:14465702,7488801:208656 -k1,11199:15958865,7488801:208657 -k1,11199:17260006,7488801:208656 -k1,11199:17824523,7488801:208657 -k1,11199:20795522,7488801:208656 -k1,11199:23088224,7488801:208657 -k1,11199:24244531,7488801:208656 -k1,11199:26191203,7488801:208657 -k1,11199:28441305,7488801:208656 -k1,11199:29127719,7488801:208657 -k1,11199:30845014,7488801:208656 -k1,11199:32583029,7488801:0 -) -(1,11200:6630773,8330289:25952256,513147,126483 -k1,11199:7331958,8330289:169688 -k1,11199:10295446,8330289:169688 -k1,11199:11081171,8330289:169687 -k1,11199:12733283,8330289:169688 -k1,11199:14417508,8330289:169688 -k1,11199:15967384,8330289:169688 -k1,11199:17241353,8330289:169687 -k1,11199:18158807,8330289:169688 -k1,11199:20196271,8330289:169688 -k1,11199:21052121,8330289:169688 -k1,11199:23946795,8330289:169687 -k1,11199:27315951,8330289:169688 -k1,11199:29506114,8330289:169688 -k1,11199:32583029,8330289:0 -) -(1,11200:6630773,9171777:25952256,513147,126483 -k1,11199:7951027,9171777:174029 -(1,11199:7951027,9171777:0,414482,115847 -r1,11286:8309293,9171777:358266,530329,115847 -k1,11199:7951027,9171777:-358266 -) -(1,11199:7951027,9171777:358266,414482,115847 -k1,11199:7951027,9171777:3277 -h1,11199:8306016,9171777:0,411205,112570 -) -k1,11199:8483322,9171777:174029 -k1,11199:10132566,9171777:174029 -k1,11199:11479034,9171777:174029 -k1,11199:13781672,9171777:174029 -k1,11199:17740405,9171777:174029 -k1,11199:19105878,9171777:174028 -k1,11199:21114915,9171777:174029 -k1,11199:24365859,9171777:174029 -k1,11199:25686113,9171777:174029 -k1,11199:27695150,9171777:174029 -(1,11199:27695150,9171777:0,414482,115847 -r1,11286:28053416,9171777:358266,530329,115847 -k1,11199:27695150,9171777:-358266 -) -(1,11199:27695150,9171777:358266,414482,115847 -k1,11199:27695150,9171777:3277 -h1,11199:28050139,9171777:0,411205,112570 -) -k1,11199:28227445,9171777:174029 -k1,11199:29876689,9171777:174029 -k1,11199:31426319,9171777:174029 -k1,11199:32583029,9171777:0 -) -(1,11200:6630773,10013265:25952256,513147,126483 -k1,11199:8974814,10013265:215432 -k1,11199:12644650,10013265:215433 -k1,11199:14056769,10013265:215432 -k1,11199:17883235,10013265:215432 -k1,11199:18757959,10013265:215432 -k1,11199:20725169,10013265:215433 -k1,11199:22962387,10013265:215432 -k1,11199:23592646,10013265:215416 -k1,11199:26884993,10013265:215432 -k1,11199:28091985,10013265:215432 -k1,11199:30466174,10013265:215433 -(1,11199:30466174,10013265:0,435480,115847 -r1,11286:31176152,10013265:709978,551327,115847 -k1,11199:30466174,10013265:-709978 -) -(1,11199:30466174,10013265:709978,435480,115847 -k1,11199:30466174,10013265:3277 -h1,11199:31172875,10013265:0,411205,112570 -) -k1,11199:31391584,10013265:215432 -k1,11200:32583029,10013265:0 -) -(1,11200:6630773,10854753:25952256,435480,115847 -(1,11199:6630773,10854753:0,435480,115847 -r1,11286:7340751,10854753:709978,551327,115847 -k1,11199:6630773,10854753:-709978 -) -(1,11199:6630773,10854753:709978,435480,115847 -k1,11199:6630773,10854753:3277 -h1,11199:7337474,10854753:0,411205,112570 -) -k1,11200:32583029,10854753:25068608 -g1,11200:32583029,10854753 -) -v1,11202:6630773,12045219:0,393216,0 -(1,11221:6630773,16970468:25952256,5318465,196608 -g1,11221:6630773,16970468 -g1,11221:6630773,16970468 -g1,11221:6434165,16970468 -(1,11221:6434165,16970468:0,5318465,196608 -r1,11286:32779637,16970468:26345472,5515073,196608 -k1,11221:6434165,16970468:-26345472 -) -(1,11221:6434165,16970468:26345472,5318465,196608 -[1,11221:6630773,16970468:25952256,5121857,0 -(1,11204:6630773,12252837:25952256,404226,76021 -(1,11203:6630773,12252837:0,0,0 -g1,11203:6630773,12252837 -g1,11203:6630773,12252837 -g1,11203:6303093,12252837 -(1,11203:6303093,12252837:0,0,0 -) -g1,11203:6630773,12252837 -) -g1,11204:7263065,12252837 -g1,11204:7895357,12252837 -h1,11204:8211503,12252837:0,0,0 -k1,11204:32583029,12252837:24371526 -g1,11204:32583029,12252837 -) -(1,11208:6630773,12919015:25952256,404226,76021 -(1,11206:6630773,12919015:0,0,0 -g1,11206:6630773,12919015 -g1,11206:6630773,12919015 -g1,11206:6303093,12919015 -(1,11206:6303093,12919015:0,0,0 -) -g1,11206:6630773,12919015 -) -g1,11208:7579210,12919015 -g1,11208:8843793,12919015 -h1,11208:9792230,12919015:0,0,0 -k1,11208:32583030,12919015:22790800 -g1,11208:32583030,12919015 -) -(1,11210:6630773,14240553:25952256,410518,82312 -(1,11209:6630773,14240553:0,0,0 -g1,11209:6630773,14240553 -g1,11209:6630773,14240553 -g1,11209:6303093,14240553 -(1,11209:6303093,14240553:0,0,0 -) -g1,11209:6630773,14240553 -) -k1,11210:6630773,14240553:0 -g1,11210:8527649,14240553 -g1,11210:9159941,14240553 -h1,11210:9792233,14240553:0,0,0 -k1,11210:32583029,14240553:22790796 -g1,11210:32583029,14240553 -) -(1,11214:6630773,14906731:25952256,404226,76021 -(1,11212:6630773,14906731:0,0,0 -g1,11212:6630773,14906731 -g1,11212:6630773,14906731 -g1,11212:6303093,14906731 -(1,11212:6303093,14906731:0,0,0 -) -g1,11212:6630773,14906731 -) -g1,11214:7579210,14906731 -g1,11214:8843793,14906731 -h1,11214:9792230,14906731:0,0,0 -k1,11214:32583030,14906731:22790800 -g1,11214:32583030,14906731 -) -(1,11216:6630773,16228269:25952256,410518,82312 -(1,11215:6630773,16228269:0,0,0 -g1,11215:6630773,16228269 -g1,11215:6630773,16228269 -g1,11215:6303093,16228269 -(1,11215:6303093,16228269:0,0,0 -) -g1,11215:6630773,16228269 -) -k1,11216:6630773,16228269:0 -g1,11216:8843794,16228269 -g1,11216:9476086,16228269 -g1,11216:10108378,16228269 -g1,11216:10740670,16228269 -g1,11216:11689107,16228269 -g1,11216:12321399,16228269 -h1,11216:12953691,16228269:0,0,0 -k1,11216:32583029,16228269:19629338 -g1,11216:32583029,16228269 -) -(1,11220:6630773,16894447:25952256,404226,76021 -(1,11218:6630773,16894447:0,0,0 -g1,11218:6630773,16894447 -g1,11218:6630773,16894447 -g1,11218:6303093,16894447 -(1,11218:6303093,16894447:0,0,0 -) -g1,11218:6630773,16894447 -) -g1,11220:7579210,16894447 -g1,11220:8843793,16894447 -h1,11220:9792230,16894447:0,0,0 -k1,11220:32583030,16894447:22790800 -g1,11220:32583030,16894447 -) -] -) -g1,11221:32583029,16970468 -g1,11221:6630773,16970468 -g1,11221:6630773,16970468 -g1,11221:32583029,16970468 -g1,11221:32583029,16970468 -) -h1,11221:6630773,17167076:0,0,0 -(1,11225:6630773,18532852:25952256,513147,134348 -h1,11224:6630773,18532852:983040,0,0 -k1,11224:8666911,18532852:150667 -k1,11224:12026876,18532852:150667 -k1,11224:16260437,18532852:150668 -k1,11224:17070396,18532852:150667 -k1,11224:18240148,18532852:150667 -k1,11224:21693830,18532852:150667 -k1,11224:22503789,18532852:150667 -k1,11224:24744400,18532852:150668 -k1,11224:27971982,18532852:150667 -k1,11224:29858042,18532852:150667 -k1,11224:32583029,18532852:0 -) -(1,11225:6630773,19374340:25952256,513147,134348 -k1,11224:8912175,19374340:197357 -k1,11224:9641029,19374340:197357 -k1,11224:11122892,19374340:197357 -k1,11224:14397164,19374340:197357 -k1,11224:15698803,19374340:197357 -k1,11224:16643926,19374340:197357 -k1,11224:18354508,19374340:197356 -k1,11224:19238027,19374340:197357 -k1,11224:22838013,19374340:197357 -k1,11224:23686798,19374340:197357 -k1,11224:25676565,19374340:197357 -k1,11224:28899719,19374340:197357 -k1,11224:29713114,19374340:197357 -k1,11224:30929556,19374340:197357 -k1,11224:32583029,19374340:0 -) -(1,11225:6630773,20215828:25952256,513147,134348 -k1,11224:8103962,20215828:235214 -k1,11224:9025339,20215828:235215 -k1,11224:11985540,20215828:235214 -k1,11224:15420223,20215828:235215 -k1,11224:17438672,20215828:235214 -k1,11224:20101341,20215828:235215 -k1,11224:23083169,20215828:235214 -k1,11224:25386700,20215828:235215 -k1,11224:26308076,20215828:235214 -k1,11224:29945920,20215828:235215 -k1,11224:30832562,20215828:235214 -k1,11225:32583029,20215828:0 -) -(1,11225:6630773,21057316:25952256,513147,134348 -k1,11224:9823949,21057316:167379 -k1,11224:10859680,21057316:167379 -k1,11224:12402660,21057316:167379 -k1,11224:14100304,21057316:167378 -k1,11224:14919111,21057316:167379 -k1,11224:17459549,21057316:167379 -k1,11224:19265983,21057316:167379 -k1,11224:20049400,21057316:167379 -k1,11224:21699203,21057316:167379 -k1,11224:23381119,21057316:167379 -k1,11224:24780575,21057316:167379 -k1,11224:27226640,21057316:167378 -h1,11224:28197228,21057316:0,0,0 -k1,11224:28364607,21057316:167379 -k1,11224:29341356,21057316:167379 -k1,11224:31006888,21057316:167379 -h1,11224:32202265,21057316:0,0,0 -k1,11225:32583029,21057316:0 -k1,11225:32583029,21057316:0 -) -(1,11227:6630773,21898804:25952256,513147,126483 -h1,11226:6630773,21898804:983040,0,0 -k1,11226:8991098,21898804:180598 -k1,11226:10909712,21898804:180599 -k1,11226:11851838,21898804:180598 -k1,11226:13638069,21898804:180599 -k1,11226:15010112,21898804:180598 -k1,11226:17984511,21898804:180599 -k1,11226:18781147,21898804:180598 -k1,11226:20444170,21898804:180599 -k1,11226:22139305,21898804:180598 -k1,11226:24331859,21898804:180599 -k1,11226:25257601,21898804:180598 -k1,11226:26089628,21898804:180599 -k1,11226:28301187,21898804:180598 -k1,11226:29500871,21898804:180599 -k1,11226:32583029,21898804:0 -) -(1,11227:6630773,22740292:25952256,513147,126483 -g1,11226:7489294,22740292 -g1,11226:8459226,22740292 -k1,11227:32583030,22740292:21203520 -g1,11227:32583030,22740292 -) -v1,11229:6630773,23930758:0,393216,0 -(1,11236:6630773,24893158:25952256,1355616,196608 -g1,11236:6630773,24893158 -g1,11236:6630773,24893158 -g1,11236:6434165,24893158 -(1,11236:6434165,24893158:0,1355616,196608 -r1,11286:32779637,24893158:26345472,1552224,196608 -k1,11236:6434165,24893158:-26345472 -) -(1,11236:6434165,24893158:26345472,1355616,196608 -[1,11236:6630773,24893158:25952256,1159008,0 -(1,11231:6630773,24144668:25952256,410518,76021 -(1,11230:6630773,24144668:0,0,0 -g1,11230:6630773,24144668 -g1,11230:6630773,24144668 -g1,11230:6303093,24144668 -(1,11230:6303093,24144668:0,0,0 -) -g1,11230:6630773,24144668 -) -h1,11231:7579211,24144668:0,0,0 -k1,11231:32583029,24144668:25003818 -g1,11231:32583029,24144668 -) -(1,11235:6630773,24810846:25952256,410518,82312 -(1,11233:6630773,24810846:0,0,0 -g1,11233:6630773,24810846 -g1,11233:6630773,24810846 -g1,11233:6303093,24810846 -(1,11233:6303093,24810846:0,0,0 -) -g1,11233:6630773,24810846 -) -g1,11235:7579210,24810846 -g1,11235:10424521,24810846 -g1,11235:12005250,24810846 -g1,11235:13269833,24810846 -g1,11235:13585979,24810846 -h1,11235:18328164,24810846:0,0,0 -k1,11235:32583029,24810846:14254865 -g1,11235:32583029,24810846 -) -] -) -g1,11236:32583029,24893158 -g1,11236:6630773,24893158 -g1,11236:6630773,24893158 -g1,11236:32583029,24893158 -g1,11236:32583029,24893158 -) -h1,11236:6630773,25089766:0,0,0 -v1,11240:6630773,26979830:0,393216,0 -(1,11280:6630773,43811245:25952256,17224631,0 -g1,11280:6630773,43811245 -g1,11280:6303093,43811245 -r1,11286:6401397,43811245:98304,17224631,0 -g1,11280:6600626,43811245 -g1,11280:6797234,43811245 -[1,11280:6797234,43811245:25785795,17224631,0 -(1,11241:6797234,27341903:25785795,755289,196608 -(1,11240:6797234,27341903:0,755289,196608 -r1,11286:8134168,27341903:1336934,951897,196608 -k1,11240:6797234,27341903:-1336934 -) -(1,11240:6797234,27341903:1336934,755289,196608 -) -k1,11240:8317363,27341903:183195 -k1,11240:8645043,27341903:327680 -k1,11240:11624893,27341903:188016 -k1,11240:12177288,27341903:188015 -k1,11240:13738939,27341903:188016 -k1,11240:16924994,27341903:183195 -k1,11240:18061738,27341903:183195 -k1,11240:19377395,27341903:183195 -k1,11240:21521427,27341903:183195 -k1,11240:22060482,27341903:183195 -k1,11240:24265462,27341903:183194 -k1,11240:27195271,27341903:183195 -k1,11240:29581131,27341903:183195 -k1,11240:30936765,27341903:183195 -k1,11241:32583029,27341903:0 -) -(1,11241:6797234,28183391:25785795,513147,95026 -k1,11240:9201700,28183391:228015 -k1,11240:10714221,28183391:228015 -k1,11240:13909706,28183391:228015 -k1,11240:15705341,28183391:228014 -k1,11240:16952441,28183391:228015 -k1,11240:19996538,28183391:228015 -k1,11240:20840591,28183391:228015 -k1,11240:21424466,28183391:228015 -k1,11240:23630358,28183391:228015 -k1,11240:24877457,28183391:228014 -k1,11240:26843487,28183391:228015 -k1,11240:27730794,28183391:228015 -k1,11240:30431482,28183391:228015 -k1,11240:32583029,28183391:0 -) -(1,11241:6797234,29024879:25785795,513147,102891 -k1,11240:8409607,29024879:176479 -k1,11240:9454438,29024879:176479 -k1,11240:11161183,29024879:176479 -k1,11240:11693523,29024879:176480 -k1,11240:14381997,29024879:176479 -k1,11240:16470161,29024879:176479 -k1,11240:17718809,29024879:176479 -k1,11240:18763640,29024879:176479 -k1,11240:20415334,29024879:176479 -k1,11240:21804884,29024879:176479 -k1,11240:24664408,29024879:176480 -k1,11240:25527049,29024879:176479 -k1,11240:27771844,29024879:176479 -k1,11240:28607615,29024879:176479 -k1,11240:32583029,29024879:0 -) -(1,11241:6797234,29866367:25785795,505283,134348 -k1,11240:10063094,29866367:188945 -k1,11240:11874056,29866367:188946 -k1,11240:12810767,29866367:188945 -k1,11240:15793513,29866367:188946 -k1,11240:16598496,29866367:188945 -k1,11240:19196545,29866367:188946 -k1,11240:21210012,29866367:188945 -k1,11240:22352507,29866367:188946 -k1,11240:23673914,29866367:188945 -k1,11240:24955345,29866367:188946 -(1,11240:24955345,29866367:0,435480,115847 -r1,11286:27423882,29866367:2468537,551327,115847 -k1,11240:24955345,29866367:-2468537 -) -(1,11240:24955345,29866367:2468537,435480,115847 -k1,11240:24955345,29866367:3277 -h1,11240:27420605,29866367:0,411205,112570 -) -k1,11240:27612827,29866367:188945 -k1,11240:28993218,29866367:188946 -k1,11240:29868325,29866367:188945 -k1,11240:31451222,29866367:188946 -k1,11240:32583029,29866367:0 -) -(1,11241:6797234,30707855:25785795,513147,134348 -g1,11240:9119174,30707855 -g1,11240:11262200,30707855 -g1,11240:12329781,30707855 -g1,11240:14059276,30707855 -g1,11240:14909933,30707855 -g1,11240:17482221,30707855 -g1,11240:18139547,30707855 -g1,11240:18954814,30707855 -g1,11240:22247998,30707855 -g1,11240:24434279,30707855 -g1,11240:25581159,30707855 -g1,11240:26799473,30707855 -k1,11241:32583029,30707855:1964118 -g1,11241:32583029,30707855 -) -v1,11243:6797234,31898321:0,393216,0 -(1,11249:6797234,33520608:25785795,2015503,196608 -g1,11249:6797234,33520608 -g1,11249:6797234,33520608 -g1,11249:6600626,33520608 -(1,11249:6600626,33520608:0,2015503,196608 -r1,11286:32779637,33520608:26179011,2212111,196608 -k1,11249:6600625,33520608:-26179012 -) -(1,11249:6600626,33520608:26179011,2015503,196608 -[1,11249:6797234,33520608:25785795,1818895,0 -(1,11245:6797234,32112231:25785795,410518,82312 -(1,11244:6797234,32112231:0,0,0 -g1,11244:6797234,32112231 -g1,11244:6797234,32112231 -g1,11244:6469554,32112231 -(1,11244:6469554,32112231:0,0,0 -) -g1,11244:6797234,32112231 -) -k1,11245:6797234,32112231:0 -g1,11245:9958691,32112231 -g1,11245:10907129,32112231 -g1,11245:15017023,32112231 -g1,11245:16281606,32112231 -h1,11245:16597752,32112231:0,0,0 -k1,11245:32583029,32112231:15985277 -g1,11245:32583029,32112231 -) -(1,11246:6797234,32778409:25785795,404226,76021 -h1,11246:6797234,32778409:0,0,0 -g1,11246:7113380,32778409 -g1,11246:7429526,32778409 -g1,11246:8377963,32778409 -g1,11246:9010255,32778409 -k1,11246:9010255,32778409:0 -h1,11246:11539421,32778409:0,0,0 -k1,11246:32583029,32778409:21043608 -g1,11246:32583029,32778409 -) -(1,11247:6797234,33444587:25785795,404226,76021 -h1,11247:6797234,33444587:0,0,0 -h1,11247:7113380,33444587:0,0,0 -k1,11247:32583028,33444587:25469648 -g1,11247:32583028,33444587 -) -] -) -g1,11249:32583029,33520608 -g1,11249:6797234,33520608 -g1,11249:6797234,33520608 -g1,11249:32583029,33520608 -g1,11249:32583029,33520608 -) -h1,11249:6797234,33717216:0,0,0 -(1,11253:6797234,35082992:25785795,505283,126483 -h1,11252:6797234,35082992:983040,0,0 -g1,11252:8933052,35082992 -g1,11252:10236563,35082992 -g1,11252:11869720,35082992 -g1,11252:13161434,35082992 -g1,11252:14458391,35082992 -g1,11252:15940815,35082992 -g1,11252:18886658,35082992 -g1,11252:19701925,35082992 -g1,11252:20257014,35082992 -k1,11253:32583029,35082992:9490928 -g1,11253:32583029,35082992 -) -v1,11255:6797234,36273458:0,393216,0 -(1,11262:6797234,37207546:25785795,1327304,196608 -g1,11262:6797234,37207546 -g1,11262:6797234,37207546 -g1,11262:6600626,37207546 -(1,11262:6600626,37207546:0,1327304,196608 -r1,11286:32779637,37207546:26179011,1523912,196608 -k1,11262:6600625,37207546:-26179012 -) -(1,11262:6600626,37207546:26179011,1327304,196608 -[1,11262:6797234,37207546:25785795,1130696,0 -(1,11257:6797234,36465347:25785795,388497,9436 -(1,11256:6797234,36465347:0,0,0 -g1,11256:6797234,36465347 -g1,11256:6797234,36465347 -g1,11256:6469554,36465347 -(1,11256:6469554,36465347:0,0,0 -) -g1,11256:6797234,36465347 -) -g1,11257:8694108,36465347 -g1,11257:11223274,36465347 -h1,11257:12487857,36465347:0,0,0 -k1,11257:32583029,36465347:20095172 -g1,11257:32583029,36465347 -) -(1,11261:6797234,37131525:25785795,404226,76021 -(1,11259:6797234,37131525:0,0,0 -g1,11259:6797234,37131525 -g1,11259:6797234,37131525 -g1,11259:6469554,37131525 -(1,11259:6469554,37131525:0,0,0 -) -g1,11259:6797234,37131525 -) -g1,11261:7745671,37131525 -g1,11261:9010254,37131525 -g1,11261:10590983,37131525 -g1,11261:10907129,37131525 -g1,11261:12171712,37131525 -g1,11261:12487858,37131525 -g1,11261:13752441,37131525 -g1,11261:14068587,37131525 -g1,11261:15333170,37131525 -g1,11261:15649316,37131525 -g1,11261:16913899,37131525 -g1,11261:17230045,37131525 -h1,11261:18178482,37131525:0,0,0 -k1,11261:32583029,37131525:14404547 -g1,11261:32583029,37131525 -) -] -) -g1,11262:32583029,37207546 -g1,11262:6797234,37207546 -g1,11262:6797234,37207546 -g1,11262:32583029,37207546 -g1,11262:32583029,37207546 -) -h1,11262:6797234,37404154:0,0,0 -(1,11266:6797234,38769930:25785795,513147,126483 -h1,11265:6797234,38769930:983040,0,0 -k1,11265:8756666,38769930:147362 -k1,11265:10486068,38769930:147363 -k1,11265:11652515,38769930:147362 -k1,11265:15055706,38769930:147362 -k1,11265:16071421,38769930:147363 -k1,11265:18591842,38769930:147362 -k1,11265:19758289,38769930:147362 -k1,11265:21643667,38769930:147363 -k1,11265:22450321,38769930:147362 -k1,11265:23695412,38769930:147363 -k1,11265:25125969,38769930:147362 -k1,11265:28019945,38769930:147362 -k1,11265:28783346,38769930:147363 -k1,11265:30413132,38769930:147362 -k1,11266:32583029,38769930:0 -) -(1,11266:6797234,39611418:25785795,505283,126483 -g1,11265:8066011,39611418 -g1,11265:9133592,39611418 -g1,11265:10808036,39611418 -g1,11265:12751833,39611418 -g1,11265:13970147,39611418 -g1,11265:16363521,39611418 -k1,11266:32583029,39611418:14307823 -g1,11266:32583029,39611418 -) -v1,11268:6797234,40801884:0,393216,0 -(1,11277:6797234,43090349:25785795,2681681,196608 -g1,11277:6797234,43090349 -g1,11277:6797234,43090349 -g1,11277:6600626,43090349 -(1,11277:6600626,43090349:0,2681681,196608 -r1,11286:32779637,43090349:26179011,2878289,196608 -k1,11277:6600625,43090349:-26179012 -) -(1,11277:6600626,43090349:26179011,2681681,196608 -[1,11277:6797234,43090349:25785795,2485073,0 -(1,11270:6797234,41015794:25785795,410518,9436 -(1,11269:6797234,41015794:0,0,0 -g1,11269:6797234,41015794 -g1,11269:6797234,41015794 -g1,11269:6469554,41015794 -(1,11269:6469554,41015794:0,0,0 -) -g1,11269:6797234,41015794 -) -k1,11270:6797234,41015794:0 -h1,11270:9642546,41015794:0,0,0 -k1,11270:32583030,41015794:22940484 -g1,11270:32583030,41015794 -) -(1,11276:6797234,41681972:25785795,410518,82312 -(1,11272:6797234,41681972:0,0,0 -g1,11272:6797234,41681972 -g1,11272:6797234,41681972 -g1,11272:6469554,41681972 -(1,11272:6469554,41681972:0,0,0 -) -g1,11272:6797234,41681972 -) -g1,11276:7745671,41681972 -g1,11276:11855565,41681972 -g1,11276:13120148,41681972 -h1,11276:13436294,41681972:0,0,0 -k1,11276:32583030,41681972:19146736 -g1,11276:32583030,41681972 -) -(1,11276:6797234,42348150:25785795,404226,76021 -h1,11276:6797234,42348150:0,0,0 -g1,11276:7745671,42348150 -g1,11276:8061817,42348150 -g1,11276:8377963,42348150 -g1,11276:9326400,42348150 -g1,11276:9958692,42348150 -h1,11276:12487857,42348150:0,0,0 -k1,11276:32583029,42348150:20095172 -g1,11276:32583029,42348150 -) -(1,11276:6797234,43014328:25785795,404226,76021 -h1,11276:6797234,43014328:0,0,0 -g1,11276:7745671,43014328 -h1,11276:8061817,43014328:0,0,0 -k1,11276:32583029,43014328:24521212 -g1,11276:32583029,43014328 -) -] -) -g1,11277:32583029,43090349 -g1,11277:6797234,43090349 -g1,11277:6797234,43090349 -g1,11277:32583029,43090349 -g1,11277:32583029,43090349 -) -h1,11277:6797234,43286957:0,0,0 -] -g1,11280:32583029,43811245 -) -h1,11280:6630773,43811245:0,0,0 -] -(1,11286:32583029,45706769:0,0,0 -g1,11286:32583029,45706769 -) -) -] -(1,11286:6630773,47279633:25952256,0,0 -h1,11286:6630773,47279633:25952256,0,0 -) -] -(1,11286:4262630,4025873:0,0,0 -[1,11286:-473656,4025873:0,0,0 -(1,11286:-473656,-710413:0,0,0 -(1,11286:-473656,-710413:0,0,0 -g1,11286:-473656,-710413 -) -g1,11286:-473656,-710413 +k1,10532:3078556,49800853:-34777008 ) ] +g1,10532:6630773,4812305 +k1,10532:21643106,4812305:13816956 +g1,10532:23265777,4812305 +g1,10532:24088253,4812305 +g1,10532:28572226,4812305 +g1,10532:29981905,4812305 +) +) +] +[1,10532:6630773,45706769:25952256,40108032,0 +(1,10532:6630773,45706769:25952256,40108032,0 +(1,10532:6630773,45706769:0,0,0 +g1,10532:6630773,45706769 +) +[1,10532:6630773,45706769:25952256,40108032,0 +v1,10436:6630773,6254097:0,393216,0 +(1,10436:6630773,7206418:25952256,1345537,196608 +g1,10436:6630773,7206418 +g1,10436:6630773,7206418 +g1,10436:6434165,7206418 +(1,10436:6434165,7206418:0,1345537,196608 +r1,10532:32779637,7206418:26345472,1542145,196608 +k1,10436:6434165,7206418:-26345472 +) +(1,10436:6434165,7206418:26345472,1345537,196608 +[1,10436:6630773,7206418:25952256,1148929,0 +(1,10435:6630773,6488534:25952256,431045,33029 +h1,10435:6630773,6488534:0,0,0 +g1,10435:7626635,6488534 +g1,10435:7958589,6488534 +g1,10435:8622497,6488534 +g1,10435:9286405,6488534 +g1,10435:10614221,6488534 +h1,10435:11942037,6488534:0,0,0 +k1,10435:32583029,6488534:20640992 +g1,10435:32583029,6488534 +) +(1,10435:6630773,7173389:25952256,431045,33029 +h1,10435:6630773,7173389:0,0,0 +g1,10435:7626635,7173389 +g1,10435:7958589,7173389 +g1,10435:8622497,7173389 +g1,10435:9286405,7173389 +g1,10435:10614221,7173389 +h1,10435:11942037,7173389:0,0,0 +k1,10435:32583029,7173389:20640992 +g1,10435:32583029,7173389 +) +] +) +g1,10436:32583029,7206418 +g1,10436:6630773,7206418 +g1,10436:6630773,7206418 +g1,10436:32583029,7206418 +g1,10436:32583029,7206418 +) +h1,10436:6630773,7403026:0,0,0 +(1,10440:6630773,8268106:25952256,513147,115847 +h1,10439:6630773,8268106:983040,0,0 +k1,10439:9027338,8268106:216838 +k1,10439:10740362,8268106:216837 +k1,10439:12812524,8268106:216838 +k1,10439:14459357,8268106:216837 +(1,10439:14459357,8268106:0,459977,115847 +r1,10532:17279606,8268106:2820249,575824,115847 +k1,10439:14459357,8268106:-2820249 +) +(1,10439:14459357,8268106:2820249,459977,115847 +k1,10439:14459357,8268106:3277 +h1,10439:17276329,8268106:0,411205,112570 +) +k1,10439:17496444,8268106:216838 +k1,10439:19203570,8268106:216837 +k1,10439:20814359,8268106:216838 +k1,10439:22482818,8268106:216837 +k1,10439:23358948,8268106:216838 +k1,10439:24594870,8268106:216837 +k1,10439:25708241,8268106:216838 +k1,10439:28878786,8268106:216837 +k1,10439:29762780,8268106:216838 +(1,10439:29762780,8268106:0,414482,115847 +r1,10532:32583029,8268106:2820249,530329,115847 +k1,10439:29762780,8268106:-2820249 +) +(1,10439:29762780,8268106:2820249,414482,115847 +k1,10439:29762780,8268106:3277 +h1,10439:32579752,8268106:0,411205,112570 +) +k1,10439:32583029,8268106:0 +) +(1,10440:6630773,9133186:25952256,505283,134348 +g1,10439:7516164,9133186 +g1,10439:10787721,9133186 +g1,10439:12178395,9133186 +g1,10439:14784106,9133186 +g1,10439:16002420,9133186 +g1,10439:18980376,9133186 +g1,10439:21190250,9133186 +g1,10439:22656945,9133186 +g1,10439:23212034,9133186 +g1,10439:24578459,9133186 +g1,10439:26635634,9133186 +g1,10439:27853948,9133186 +g1,10439:28275999,9133186 +g1,10439:29091266,9133186 +(1,10439:29091266,9133186:0,452978,115847 +r1,10532:31911515,9133186:2820249,568825,115847 +k1,10439:29091266,9133186:-2820249 +) +(1,10439:29091266,9133186:2820249,452978,115847 +k1,10439:29091266,9133186:3277 +h1,10439:31908238,9133186:0,411205,112570 +) +k1,10440:32583029,9133186:497844 +g1,10440:32583029,9133186 +) +v1,10442:6630773,9818041:0,393216,0 +(1,10450:6630773,11633082:25952256,2208257,196608 +g1,10450:6630773,11633082 +g1,10450:6630773,11633082 +g1,10450:6434165,11633082 +(1,10450:6434165,11633082:0,2208257,196608 +r1,10532:32779637,11633082:26345472,2404865,196608 +k1,10450:6434165,11633082:-26345472 +) +(1,10450:6434165,11633082:26345472,2208257,196608 +[1,10450:6630773,11633082:25952256,2011649,0 +(1,10444:6630773,10052478:25952256,431045,106246 +(1,10443:6630773,10052478:0,0,0 +g1,10443:6630773,10052478 +g1,10443:6630773,10052478 +g1,10443:6303093,10052478 +(1,10443:6303093,10052478:0,0,0 +) +g1,10443:6630773,10052478 +) +g1,10444:7294681,10052478 +g1,10444:8290543,10052478 +g1,10444:11278129,10052478 +g1,10444:11942037,10052478 +g1,10444:15261576,10052478 +g1,10444:16589392,10052478 +g1,10444:17253300,10052478 +g1,10444:19908932,10052478 +g1,10444:20572840,10052478 +g1,10444:21236748,10052478 +h1,10444:21900656,10052478:0,0,0 +k1,10444:32583029,10052478:10682373 +g1,10444:32583029,10052478 +) +(1,10445:6630773,10737333:25952256,424439,79822 +h1,10445:6630773,10737333:0,0,0 +k1,10445:6630773,10737333:0 +h1,10445:8622497,10737333:0,0,0 +k1,10445:32583029,10737333:23960532 +g1,10445:32583029,10737333 +) +(1,10449:6630773,11553260:25952256,424439,79822 +(1,10447:6630773,11553260:0,0,0 +g1,10447:6630773,11553260 +g1,10447:6630773,11553260 +g1,10447:6303093,11553260 +(1,10447:6303093,11553260:0,0,0 +) +g1,10447:6630773,11553260 +) +g1,10449:7626635,11553260 +g1,10449:7958589,11553260 +g1,10449:9286405,11553260 +g1,10449:11278129,11553260 +g1,10449:12937899,11553260 +g1,10449:14597669,11553260 +g1,10449:16257439,11553260 +g1,10449:17917209,11553260 +g1,10449:19576979,11553260 +h1,10449:20572841,11553260:0,0,0 +k1,10449:32583029,11553260:12010188 +g1,10449:32583029,11553260 +) +] +) +g1,10450:32583029,11633082 +g1,10450:6630773,11633082 +g1,10450:6630773,11633082 +g1,10450:32583029,11633082 +g1,10450:32583029,11633082 +) +h1,10450:6630773,11829690:0,0,0 +(1,10454:6630773,12694770:25952256,513147,115847 +h1,10453:6630773,12694770:983040,0,0 +k1,10453:8976875,12694770:166375 +k1,10453:10639437,12694770:166375 +k1,10453:12661135,12694770:166374 +k1,10453:14257506,12694770:166375 +(1,10453:14257506,12694770:0,459977,115847 +r1,10532:17077755,12694770:2820249,575824,115847 +k1,10453:14257506,12694770:-2820249 +) +(1,10453:14257506,12694770:2820249,459977,115847 +k1,10453:14257506,12694770:3277 +h1,10453:17074478,12694770:0,411205,112570 +) +k1,10453:17244130,12694770:166375 +k1,10453:18804456,12694770:166375 +k1,10453:19630122,12694770:166374 +k1,10453:20815582,12694770:166375 +k1,10453:21878490,12694770:166375 +k1,10453:24998573,12694770:166375 +k1,10453:25832103,12694770:166374 +(1,10453:25832103,12694770:0,414482,115847 +r1,10532:28652352,12694770:2820249,530329,115847 +k1,10453:25832103,12694770:-2820249 +) +(1,10453:25832103,12694770:2820249,414482,115847 +k1,10453:25832103,12694770:3277 +h1,10453:28649075,12694770:0,411205,112570 +) +k1,10453:28818727,12694770:166375 +k1,10453:30176547,12694770:166375 +k1,10453:32583029,12694770:0 +) +(1,10454:6630773,13559850:25952256,513147,126483 +k1,10453:7855859,13559850:206001 +k1,10453:10840588,13559850:206002 +k1,10453:13057234,13559850:206001 +k1,10453:14530701,13559850:206001 +k1,10453:15092563,13559850:206002 +k1,10453:17450111,13559850:206001 +k1,10453:18725660,13559850:206001 +k1,10453:19389759,13559850:206002 +k1,10453:22682506,13559850:206001 +k1,10453:23907592,13559850:206001 +k1,10453:25107120,13559850:206002 +k1,10453:26580587,13559850:206001 +k1,10453:27142448,13559850:206001 +k1,10453:29499997,13559850:206002 +k1,10453:31563944,13559850:206001 +k1,10453:32583029,13559850:0 +) +(1,10454:6630773,14424930:25952256,473825,115847 +g1,10453:7141298,14424930 +g1,10453:7956565,14424930 +(1,10453:7956565,14424930:0,452978,115847 +r1,10532:10776814,14424930:2820249,568825,115847 +k1,10453:7956565,14424930:-2820249 +) +(1,10453:7956565,14424930:2820249,452978,115847 +k1,10453:7956565,14424930:3277 +h1,10453:10773537,14424930:0,411205,112570 +) +k1,10454:32583028,14424930:21632544 +g1,10454:32583028,14424930 +) +v1,10456:6630773,15109785:0,393216,0 +(1,10470:6630773,20987163:25952256,6270594,196608 +g1,10470:6630773,20987163 +g1,10470:6630773,20987163 +g1,10470:6434165,20987163 +(1,10470:6434165,20987163:0,6270594,196608 +r1,10532:32779637,20987163:26345472,6467202,196608 +k1,10470:6434165,20987163:-26345472 +) +(1,10470:6434165,20987163:26345472,6270594,196608 +[1,10470:6630773,20987163:25952256,6073986,0 +(1,10458:6630773,15344222:25952256,431045,106246 +(1,10457:6630773,15344222:0,0,0 +g1,10457:6630773,15344222 +g1,10457:6630773,15344222 +g1,10457:6303093,15344222 +(1,10457:6303093,15344222:0,0,0 +) +g1,10457:6630773,15344222 +) +g1,10458:7294681,15344222 +g1,10458:8290543,15344222 +g1,10458:11278129,15344222 +g1,10458:11942037,15344222 +g1,10458:15261576,15344222 +g1,10458:16589392,15344222 +g1,10458:17253300,15344222 +g1,10458:19908932,15344222 +g1,10458:20572840,15344222 +g1,10458:21236748,15344222 +g1,10458:22232610,15344222 +g1,10458:25220195,15344222 +g1,10458:25884103,15344222 +h1,10458:27875827,15344222:0,0,0 +k1,10458:32583029,15344222:4707202 +g1,10458:32583029,15344222 +) +(1,10459:6630773,16029077:25952256,424439,79822 +h1,10459:6630773,16029077:0,0,0 +k1,10459:6630773,16029077:0 +h1,10459:8622497,16029077:0,0,0 +k1,10459:32583029,16029077:23960532 +g1,10459:32583029,16029077 +) +(1,10469:6630773,16845004:25952256,431045,9908 +(1,10461:6630773,16845004:0,0,0 +g1,10461:6630773,16845004 +g1,10461:6630773,16845004 +g1,10461:6303093,16845004 +(1,10461:6303093,16845004:0,0,0 +) +g1,10461:6630773,16845004 +) +g1,10469:7626635,16845004 +g1,10469:9286405,16845004 +g1,10469:10282267,16845004 +h1,10469:10614221,16845004:0,0,0 +k1,10469:32583029,16845004:21968808 +g1,10469:32583029,16845004 +) +(1,10469:6630773,17529859:25952256,431045,33029 +h1,10469:6630773,17529859:0,0,0 +g1,10469:7626635,17529859 +g1,10469:7958589,17529859 +g1,10469:8622497,17529859 +g1,10469:9286405,17529859 +g1,10469:10614221,17529859 +h1,10469:11942037,17529859:0,0,0 +k1,10469:32583029,17529859:20640992 +g1,10469:32583029,17529859 +) +(1,10469:6630773,18214714:25952256,431045,33029 +h1,10469:6630773,18214714:0,0,0 +g1,10469:7626635,18214714 +g1,10469:7958589,18214714 +g1,10469:8622497,18214714 +g1,10469:9286405,18214714 +g1,10469:10614221,18214714 +h1,10469:11942037,18214714:0,0,0 +k1,10469:32583029,18214714:20640992 +g1,10469:32583029,18214714 +) +(1,10469:6630773,18899569:25952256,431045,33029 +h1,10469:6630773,18899569:0,0,0 +g1,10469:7626635,18899569 +g1,10469:7958589,18899569 +g1,10469:8622497,18899569 +g1,10469:9286405,18899569 +g1,10469:10614221,18899569 +h1,10469:11942037,18899569:0,0,0 +k1,10469:32583029,18899569:20640992 +g1,10469:32583029,18899569 +) +(1,10469:6630773,19584424:25952256,431045,33029 +h1,10469:6630773,19584424:0,0,0 +g1,10469:7626635,19584424 +g1,10469:7958589,19584424 +g1,10469:8622497,19584424 +g1,10469:9286405,19584424 +g1,10469:10614221,19584424 +h1,10469:11942037,19584424:0,0,0 +k1,10469:32583029,19584424:20640992 +g1,10469:32583029,19584424 +) +(1,10469:6630773,20269279:25952256,431045,33029 +h1,10469:6630773,20269279:0,0,0 +g1,10469:7626635,20269279 +g1,10469:7958589,20269279 +g1,10469:8622497,20269279 +g1,10469:9286405,20269279 +g1,10469:10614221,20269279 +h1,10469:11942037,20269279:0,0,0 +k1,10469:32583029,20269279:20640992 +g1,10469:32583029,20269279 +) +(1,10469:6630773,20954134:25952256,431045,33029 +h1,10469:6630773,20954134:0,0,0 +g1,10469:7626635,20954134 +g1,10469:7958589,20954134 +g1,10469:8622497,20954134 +g1,10469:9286405,20954134 +g1,10469:10614221,20954134 +h1,10469:11942037,20954134:0,0,0 +k1,10469:32583029,20954134:20640992 +g1,10469:32583029,20954134 +) +] +) +g1,10470:32583029,20987163 +g1,10470:6630773,20987163 +g1,10470:6630773,20987163 +g1,10470:32583029,20987163 +g1,10470:32583029,20987163 +) +h1,10470:6630773,21183771:0,0,0 +(1,10474:6630773,22048851:25952256,505283,126483 +h1,10473:6630773,22048851:983040,0,0 +k1,10473:8818833,22048851:251471 +k1,10473:10174586,22048851:251471 +k1,10473:11451040,22048851:251471 +k1,10473:13557834,22048851:251470 +k1,10473:15093811,22048851:251471 +k1,10473:16364367,22048851:251471 +k1,10473:19824481,22048851:251471 +k1,10473:22249126,22048851:251471 +k1,10473:23492157,22048851:251471 +k1,10473:24762713,22048851:251471 +k1,10473:26667656,22048851:251470 +k1,10473:27535165,22048851:251471 +k1,10473:28805721,22048851:251471 +k1,10473:30711976,22048851:251471 +k1,10473:32583029,22048851:0 +) +(1,10474:6630773,22913931:25952256,513147,134348 +g1,10473:7902171,22913931 +g1,10473:9120485,22913931 +g1,10473:10874883,22913931 +g1,10473:12265557,22913931 +g1,10473:15396211,22913931 +g1,10473:16254732,22913931 +g1,10473:17473046,22913931 +g1,10473:19962103,22913931 +g1,10473:22940059,22913931 +k1,10474:32583029,22913931:7726042 +g1,10474:32583029,22913931 +) +(1,10476:6630773,23779011:25952256,513147,134348 +h1,10475:6630773,23779011:983040,0,0 +k1,10475:11642713,23779011:196355 +k1,10475:14864866,23779011:196356 +k1,10475:16165503,23779011:196355 +k1,10475:17109625,23779011:196356 +k1,10475:19687558,23779011:196355 +k1,10475:20693283,23779011:196355 +k1,10475:21908724,23779011:196356 +k1,10475:22900686,23779011:196355 +k1,10475:24288486,23779011:196355 +k1,10475:26690129,23779011:196356 +k1,10475:27537912,23779011:196355 +(1,10475:27537912,23779011:0,414482,115847 +r1,10532:28599601,23779011:1061689,530329,115847 +k1,10475:27537912,23779011:-1061689 +) +(1,10475:27537912,23779011:1061689,414482,115847 +k1,10475:27537912,23779011:3277 +h1,10475:28596324,23779011:0,411205,112570 +) +k1,10475:28969627,23779011:196356 +k1,10475:31837885,23779011:196355 +k1,10475:32583029,23779011:0 +) +(1,10476:6630773,24644091:25952256,505283,126483 +g1,10475:7481430,24644091 +g1,10475:10144157,24644091 +g1,10475:11362471,24644091 +g1,10475:14553419,24644091 +g1,10475:16607972,24644091 +g1,10475:18457398,24644091 +g1,10475:21578222,24644091 +g1,10475:23360145,24644091 +g1,10475:24578459,24644091 +g1,10475:27019019,24644091 +g1,10475:28374958,24644091 +k1,10476:32583029,24644091:1751782 +g1,10476:32583029,24644091 +) +v1,10478:6630773,25328946:0,393216,0 +(1,10486:6630773,27143987:25952256,2208257,196608 +g1,10486:6630773,27143987 +g1,10486:6630773,27143987 +g1,10486:6434165,27143987 +(1,10486:6434165,27143987:0,2208257,196608 +r1,10532:32779637,27143987:26345472,2404865,196608 +k1,10486:6434165,27143987:-26345472 +) +(1,10486:6434165,27143987:26345472,2208257,196608 +[1,10486:6630773,27143987:25952256,2011649,0 +(1,10480:6630773,25563383:25952256,431045,112852 +(1,10479:6630773,25563383:0,0,0 +g1,10479:6630773,25563383 +g1,10479:6630773,25563383 +g1,10479:6303093,25563383 +(1,10479:6303093,25563383:0,0,0 +) +g1,10479:6630773,25563383 +) +g1,10480:7294681,25563383 +g1,10480:8290543,25563383 +g1,10480:11278129,25563383 +g1,10480:11942037,25563383 +g1,10480:15261576,25563383 +g1,10480:16589392,25563383 +g1,10480:17253300,25563383 +g1,10480:21236747,25563383 +g1,10480:22232609,25563383 +g1,10480:24888241,25563383 +g1,10480:25552149,25563383 +g1,10480:26879965,25563383 +g1,10480:27543873,25563383 +g1,10480:28207781,25563383 +h1,10480:28871689,25563383:0,0,0 +k1,10480:32583029,25563383:3711340 +g1,10480:32583029,25563383 +) +(1,10481:6630773,26248238:25952256,424439,79822 +h1,10481:6630773,26248238:0,0,0 +k1,10481:6630773,26248238:0 +h1,10481:8622497,26248238:0,0,0 +k1,10481:32583029,26248238:23960532 +g1,10481:32583029,26248238 +) +(1,10485:6630773,27064165:25952256,424439,79822 +(1,10483:6630773,27064165:0,0,0 +g1,10483:6630773,27064165 +g1,10483:6630773,27064165 +g1,10483:6303093,27064165 +(1,10483:6303093,27064165:0,0,0 +) +g1,10483:6630773,27064165 +) +g1,10485:7626635,27064165 +g1,10485:7958589,27064165 +g1,10485:9286405,27064165 +g1,10485:11278129,27064165 +g1,10485:12937899,27064165 +g1,10485:14597669,27064165 +g1,10485:16257439,27064165 +g1,10485:17917209,27064165 +g1,10485:19576979,27064165 +h1,10485:20572841,27064165:0,0,0 +k1,10485:32583029,27064165:12010188 +g1,10485:32583029,27064165 +) +] +) +g1,10486:32583029,27143987 +g1,10486:6630773,27143987 +g1,10486:6630773,27143987 +g1,10486:32583029,27143987 +g1,10486:32583029,27143987 +) +h1,10486:6630773,27340595:0,0,0 +v1,10490:6630773,28205675:0,393216,0 +(1,10491:6630773,32207020:25952256,4394561,0 +g1,10491:6630773,32207020 +g1,10491:6237557,32207020 +r1,10532:6368629,32207020:131072,4394561,0 +g1,10491:6567858,32207020 +g1,10491:6764466,32207020 +[1,10491:6764466,32207020:25818563,4394561,0 +(1,10491:6764466,28620217:25818563,807758,219026 +(1,10490:6764466,28620217:0,807758,219026 +r1,10532:7908217,28620217:1143751,1026784,219026 +k1,10490:6764466,28620217:-1143751 +) +(1,10490:6764466,28620217:1143751,807758,219026 +) +k1,10490:8050964,28620217:142747 +k1,10490:8378644,28620217:327680 +k1,10490:9339280,28620217:142747 +k1,10490:12611371,28620217:142747 +k1,10490:13370156,28620217:142747 +k1,10490:15791590,28620217:142747 +h1,10490:17334308,28620217:0,0,0 +k1,10490:17477054,28620217:142746 +k1,10490:18429171,28620217:142747 +k1,10490:20070071,28620217:142747 +h1,10490:21265448,28620217:0,0,0 +k1,10490:21581865,28620217:142747 +k1,10490:23422650,28620217:142747 +k1,10490:26077392,28620217:142747 +k1,10490:29557232,28620217:142747 +k1,10490:32583029,28620217:0 +) +(1,10491:6764466,29485297:25818563,513147,126483 +k1,10490:8015548,29485297:259522 +k1,10490:11232711,29485297:259523 +k1,10490:13000872,29485297:259522 +k1,10490:14352880,29485297:259523 +k1,10490:15143899,29485297:259522 +k1,10490:18590437,29485297:259522 +k1,10490:19774018,29485297:259523 +k1,10490:21052625,29485297:259522 +k1,10490:23014118,29485297:259523 +k1,10490:25053598,29485297:259522 +k1,10490:26779816,29485297:259522 +k1,10490:27505300,29485297:259523 +k1,10490:29557232,29485297:259522 +k1,10490:32583029,29485297:0 +) +(1,10491:6764466,30350377:25818563,513147,126483 +k1,10490:8017010,30350377:260984 +k1,10490:10565202,30350377:260985 +k1,10490:11892457,30350377:260984 +k1,10490:12839603,30350377:260984 +k1,10490:14308417,30350377:260985 +k1,10490:15255563,30350377:260984 +k1,10490:18853640,30350377:260984 +k1,10490:22314092,30350377:260984 +k1,10490:23955265,30350377:260985 +k1,10490:25207809,30350377:260984 +k1,10490:27756000,30350377:260984 +k1,10490:29860513,30350377:260985 +k1,10490:31563944,30350377:260984 +k1,10490:32583029,30350377:0 +) +(1,10491:6764466,31215457:25818563,513147,126483 +k1,10490:10273573,31215457:204126 +(1,10490:10273573,31215457:0,459977,115847 +r1,10532:12038686,31215457:1765113,575824,115847 +k1,10490:10273573,31215457:-1765113 +) +(1,10490:10273573,31215457:1765113,459977,115847 +k1,10490:10273573,31215457:3277 +h1,10490:12035409,31215457:0,411205,112570 +) +k1,10490:12242811,31215457:204125 +k1,10490:14365831,31215457:204126 +k1,10490:16188040,31215457:204125 +k1,10490:17676672,31215457:204126 +k1,10490:19303584,31215457:204125 +k1,10490:21271284,31215457:204126 +k1,10490:24501206,31215457:204125 +k1,10490:25236829,31215457:204126 +k1,10490:26726770,31215457:204125 +k1,10490:28581093,31215457:204126 +k1,10490:31140582,31215457:204125 +k1,10490:32583029,31215457:0 +) +(1,10491:6764466,32080537:25818563,505283,126483 +g1,10490:8459882,32080537 +g1,10490:10513780,32080537 +(1,10490:10513780,32080537:0,459977,115847 +r1,10532:12278893,32080537:1765113,575824,115847 +k1,10490:10513780,32080537:-1765113 +) +(1,10490:10513780,32080537:1765113,459977,115847 +k1,10490:10513780,32080537:3277 +h1,10490:12275616,32080537:0,411205,112570 +) +g1,10490:12478122,32080537 +k1,10491:32583028,32080537:18186012 +g1,10491:32583028,32080537 +) +] +g1,10491:32583029,32207020 +) +h1,10491:6630773,32207020:0,0,0 +v1,10494:6630773,32891875:0,393216,0 +(1,10502:6630773,34700310:25952256,2201651,196608 +g1,10502:6630773,34700310 +g1,10502:6630773,34700310 +g1,10502:6434165,34700310 +(1,10502:6434165,34700310:0,2201651,196608 +r1,10532:32779637,34700310:26345472,2398259,196608 +k1,10502:6434165,34700310:-26345472 +) +(1,10502:6434165,34700310:26345472,2201651,196608 +[1,10502:6630773,34700310:25952256,2005043,0 +(1,10496:6630773,33119706:25952256,424439,112852 +(1,10495:6630773,33119706:0,0,0 +g1,10495:6630773,33119706 +g1,10495:6630773,33119706 +g1,10495:6303093,33119706 +(1,10495:6303093,33119706:0,0,0 +) +g1,10495:6630773,33119706 +) +g1,10496:7294681,33119706 +g1,10496:8290543,33119706 +g1,10496:12937898,33119706 +g1,10496:13601806,33119706 +h1,10496:13933760,33119706:0,0,0 +k1,10496:32583028,33119706:18649268 +g1,10496:32583028,33119706 +) +(1,10497:6630773,33804561:25952256,424439,79822 +h1,10497:6630773,33804561:0,0,0 +k1,10497:6630773,33804561:0 +h1,10497:8622497,33804561:0,0,0 +k1,10497:32583029,33804561:23960532 +g1,10497:32583029,33804561 +) +(1,10501:6630773,34620488:25952256,424439,79822 +(1,10499:6630773,34620488:0,0,0 +g1,10499:6630773,34620488 +g1,10499:6630773,34620488 +g1,10499:6303093,34620488 +(1,10499:6303093,34620488:0,0,0 +) +g1,10499:6630773,34620488 +) +g1,10501:7626635,34620488 +g1,10501:7958589,34620488 +g1,10501:9286405,34620488 +g1,10501:11278129,34620488 +g1,10501:12937899,34620488 +g1,10501:14597669,34620488 +g1,10501:16257439,34620488 +g1,10501:17917209,34620488 +g1,10501:19576979,34620488 +h1,10501:20572841,34620488:0,0,0 +k1,10501:32583029,34620488:12010188 +g1,10501:32583029,34620488 +) +] +) +g1,10502:32583029,34700310 +g1,10502:6630773,34700310 +g1,10502:6630773,34700310 +g1,10502:32583029,34700310 +g1,10502:32583029,34700310 +) +h1,10502:6630773,34896918:0,0,0 +(1,10506:6630773,35761998:25952256,513147,134348 +h1,10505:6630773,35761998:983040,0,0 +k1,10505:8648137,35761998:216435 +k1,10505:11942799,35761998:216436 +k1,10505:12775272,35761998:216435 +k1,10505:15270395,35761998:216436 +h1,10505:16240983,35761998:0,0,0 +k1,10505:16457418,35761998:216435 +k1,10505:17483223,35761998:216435 +k1,10505:19197812,35761998:216436 +h1,10505:19994730,35761998:0,0,0 +k1,10505:20384835,35761998:216435 +k1,10505:22156439,35761998:216435 +(1,10505:22156439,35761998:0,459977,115847 +r1,10532:25680111,35761998:3523672,575824,115847 +k1,10505:22156439,35761998:-3523672 +) +(1,10505:22156439,35761998:3523672,459977,115847 +k1,10505:22156439,35761998:3277 +h1,10505:25676834,35761998:0,411205,112570 +) +k1,10505:25896547,35761998:216436 +k1,10505:26644479,35761998:216435 +k1,10505:29243804,35761998:216436 +k1,10505:31027860,35761998:216435 +k1,10506:32583029,35761998:0 +) +(1,10506:6630773,36627078:25952256,513147,126483 +(1,10505:6630773,36627078:0,452978,115847 +r1,10532:8044174,36627078:1413401,568825,115847 +k1,10505:6630773,36627078:-1413401 +) +(1,10505:6630773,36627078:1413401,452978,115847 +k1,10505:6630773,36627078:3277 +h1,10505:8040897,36627078:0,411205,112570 +) +k1,10505:8437928,36627078:220084 +k1,10505:9854699,36627078:220084 +k1,10505:12787974,36627078:220084 +k1,10505:13624095,36627078:220083 +k1,10505:14200039,36627078:220084 +k1,10505:15809486,36627078:220084 +k1,10505:17905866,36627078:220084 +k1,10505:19117510,36627078:220084 +k1,10505:22642575,36627078:220084 +k1,10505:23514087,36627078:220084 +k1,10505:26687879,36627078:220084 +k1,10505:27567254,36627078:220083 +k1,10505:28143198,36627078:220084 +k1,10505:29530478,36627078:220084 +k1,10505:30942007,36627078:220084 +k1,10506:32583029,36627078:0 +) +(1,10506:6630773,37492158:25952256,513147,134348 +k1,10505:8403724,37492158:175183 +k1,10505:9683189,37492158:175183 +k1,10505:11275259,37492158:175182 +k1,10505:12198208,37492158:175183 +k1,10505:14745139,37492158:175183 +k1,10505:15571750,37492158:175183 +k1,10505:18633793,37492158:175182 +k1,10505:20600730,37492158:175183 +k1,10505:22165276,37492158:175183 +k1,10505:23908080,37492158:175183 +k1,10505:26663414,37492158:175182 +k1,10505:29844733,37492158:175183 +k1,10505:30967567,37492158:175183 +k1,10506:32583029,37492158:0 +) +(1,10506:6630773,38357238:25952256,513147,134348 +g1,10505:8240992,38357238 +g1,10505:11100983,38357238 +g1,10505:12247863,38357238 +k1,10506:32583028,38357238:18853396 +g1,10506:32583028,38357238 +) +v1,10508:6630773,39042093:0,393216,0 +(1,10516:6630773,40780614:25952256,2131737,196608 +g1,10516:6630773,40780614 +g1,10516:6630773,40780614 +g1,10516:6434165,40780614 +(1,10516:6434165,40780614:0,2131737,196608 +r1,10532:32779637,40780614:26345472,2328345,196608 +k1,10516:6434165,40780614:-26345472 +) +(1,10516:6434165,40780614:26345472,2131737,196608 +[1,10516:6630773,40780614:25952256,1935129,0 +(1,10510:6630773,39269924:25952256,424439,106246 +(1,10509:6630773,39269924:0,0,0 +g1,10509:6630773,39269924 +g1,10509:6630773,39269924 +g1,10509:6303093,39269924 +(1,10509:6303093,39269924:0,0,0 +) +g1,10509:6630773,39269924 +) +k1,10510:6630773,39269924:0 +g1,10510:9618359,39269924 +g1,10510:10282267,39269924 +g1,10510:12273991,39269924 +g1,10510:13601807,39269924 +g1,10510:14265715,39269924 +h1,10510:15925485,39269924:0,0,0 +k1,10510:32583029,39269924:16657544 +g1,10510:32583029,39269924 +) +(1,10515:6630773,40085851:25952256,424439,106246 +(1,10512:6630773,40085851:0,0,0 +g1,10512:6630773,40085851 +g1,10512:6630773,40085851 +g1,10512:6303093,40085851 +(1,10512:6303093,40085851:0,0,0 +) +g1,10512:6630773,40085851 +) +g1,10515:7626635,40085851 +g1,10515:9618359,40085851 +g1,10515:9950313,40085851 +h1,10515:11278129,40085851:0,0,0 +k1,10515:32583029,40085851:21304900 +g1,10515:32583029,40085851 +) +(1,10515:6630773,40770706:25952256,407923,9908 +h1,10515:6630773,40770706:0,0,0 +g1,10515:7626635,40770706 +g1,10515:9618359,40770706 +h1,10515:11278129,40770706:0,0,0 +k1,10515:32583029,40770706:21304900 +g1,10515:32583029,40770706 +) +] +) +g1,10516:32583029,40780614 +g1,10516:6630773,40780614 +g1,10516:6630773,40780614 +g1,10516:32583029,40780614 +g1,10516:32583029,40780614 +) +h1,10516:6630773,40977222:0,0,0 +(1,10520:6630773,41842302:25952256,513147,126483 +h1,10519:6630773,41842302:983040,0,0 +g1,10519:8440877,41842302 +g1,10519:9659191,41842302 +g1,10519:11242540,41842302 +g1,10519:14276856,41842302 +g1,10519:17171581,41842302 +(1,10519:17171581,41842302:0,452978,115847 +r1,10532:19288406,41842302:2116825,568825,115847 +k1,10519:17171581,41842302:-2116825 +) +(1,10519:17171581,41842302:2116825,452978,115847 +k1,10519:17171581,41842302:3277 +h1,10519:19285129,41842302:0,411205,112570 +) +g1,10519:19487635,41842302 +g1,10519:22027810,41842302 +(1,10519:22027810,41842302:0,414482,115847 +r1,10532:22737788,41842302:709978,530329,115847 +k1,10519:22027810,41842302:-709978 +) +(1,10519:22027810,41842302:709978,414482,115847 +k1,10519:22027810,41842302:3277 +h1,10519:22734511,41842302:0,411205,112570 +) +g1,10519:22937017,41842302 +g1,10519:24083897,41842302 +g1,10519:25302211,41842302 +g1,10519:27395430,41842302 +(1,10519:27395430,41842302:0,452978,115847 +r1,10532:29863967,41842302:2468537,568825,115847 +k1,10519:27395430,41842302:-2468537 +) +(1,10519:27395430,41842302:2468537,452978,115847 +k1,10519:27395430,41842302:3277 +h1,10519:29860690,41842302:0,411205,112570 +) +k1,10520:32583029,41842302:2545392 +g1,10520:32583029,41842302 +) +v1,10522:6630773,42527157:0,393216,0 +(1,10532:6630773,44892910:25952256,2758969,196608 +g1,10532:6630773,44892910 +g1,10532:6630773,44892910 +g1,10532:6434165,44892910 +(1,10532:6434165,44892910:0,2758969,196608 +r1,10532:32779637,44892910:26345472,2955577,196608 +k1,10532:6434165,44892910:-26345472 +) +(1,10532:6434165,44892910:26345472,2758969,196608 +[1,10532:6630773,44892910:25952256,2562361,0 +(1,10524:6630773,42754988:25952256,424439,106246 +(1,10523:6630773,42754988:0,0,0 +g1,10523:6630773,42754988 +g1,10523:6630773,42754988 +g1,10523:6303093,42754988 +(1,10523:6303093,42754988:0,0,0 +) +g1,10523:6630773,42754988 +) +k1,10524:6630773,42754988:0 +g1,10524:9618359,42754988 +g1,10524:10282267,42754988 +g1,10524:12273991,42754988 +g1,10524:13601807,42754988 +g1,10524:14265715,42754988 +h1,10524:15925485,42754988:0,0,0 +k1,10524:32583029,42754988:16657544 +g1,10524:32583029,42754988 +) +(1,10528:6630773,44095203:25952256,431045,112852 +k1,10528:7699011,44095203:404330 +k1,10528:10427018,44095203:404329 +k1,10528:11495256,44095203:404330 +k1,10528:18538664,44095203:404329 +k1,10528:20602764,44095203:404330 +k1,10528:23662724,44095203:404329 +k1,10528:24730962,44095203:404330 +k1,10528:26131153,44095203:404329 +k1,10528:28859161,44095203:404330 +k1,10528:29927398,44095203:404329 +k1,10528:32583029,44095203:0 +) +(1,10528:6630773,44780058:25952256,424439,112852 +g1,10528:9950312,44780058 +k1,10528:32583028,44780058:21968808 +g1,10528:32583028,44780058 +) +] +) +g1,10532:32583029,44892910 +g1,10532:6630773,44892910 +g1,10532:6630773,44892910 +g1,10532:32583029,44892910 +g1,10532:32583029,44892910 +) +] +(1,10532:32583029,45706769:0,0,0 +g1,10532:32583029,45706769 +) +) +] +(1,10532:6630773,47279633:25952256,0,0 +h1,10532:6630773,47279633:25952256,0,0 +) +] +(1,10532:4262630,4025873:0,0,0 +[1,10532:-473656,4025873:0,0,0 +(1,10532:-473656,-710413:0,0,0 +(1,10532:-473656,-710413:0,0,0 +g1,10532:-473656,-710413 +) +g1,10532:-473656,-710413 ) ] -!23620 -}189 -Input:1673:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1674:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1675:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1676:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1677:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1678:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!576 -{190 -[1,11318:4262630,47279633:28320399,43253760,0 -(1,11318:4262630,4025873:0,0,0 -[1,11318:-473656,4025873:0,0,0 -(1,11318:-473656,-710413:0,0,0 -(1,11318:-473656,-644877:0,0,0 -k1,11318:-473656,-644877:-65536 ) -(1,11318:-473656,4736287:0,0,0 -k1,11318:-473656,4736287:5209943 +] +!30259 +}167 +Input:1582:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1583:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1584:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1585:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1586:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1587:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1588:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1589:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1590:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1591:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1592:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1593:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1594:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1595:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1596:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1597:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1598:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1599:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1600:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1601:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1602:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1603:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!2080 +{168 +[1,10606:4262630,47279633:28320399,43253760,0 +(1,10606:4262630,4025873:0,0,0 +[1,10606:-473656,4025873:0,0,0 +(1,10606:-473656,-710413:0,0,0 +(1,10606:-473656,-644877:0,0,0 +k1,10606:-473656,-644877:-65536 +) +(1,10606:-473656,4736287:0,0,0 +k1,10606:-473656,4736287:5209943 ) -g1,11318:-473656,-710413 +g1,10606:-473656,-710413 ) ] ) -[1,11318:6630773,47279633:25952256,43253760,0 -[1,11318:6630773,4812305:25952256,786432,0 -(1,11318:6630773,4812305:25952256,505283,134348 -(1,11318:6630773,4812305:25952256,505283,134348 -g1,11318:3078558,4812305 -[1,11318:3078558,4812305:0,0,0 -(1,11318:3078558,2439708:0,1703936,0 -k1,11318:1358238,2439708:-1720320 -(1,10825:1358238,2439708:1720320,1703936,0 -(1,10825:1358238,2439708:1179648,16384,0 -r1,11318:2537886,2439708:1179648,16384,0 +[1,10606:6630773,47279633:25952256,43253760,0 +[1,10606:6630773,4812305:25952256,786432,0 +(1,10606:6630773,4812305:25952256,513147,126483 +(1,10606:6630773,4812305:25952256,513147,126483 +g1,10606:3078558,4812305 +[1,10606:3078558,4812305:0,0,0 +(1,10606:3078558,2439708:0,1703936,0 +k1,10606:1358238,2439708:-1720320 +(1,8606:1358238,2439708:1720320,1703936,0 +(1,8606:1358238,2439708:1179648,16384,0 +r1,10606:2537886,2439708:1179648,16384,0 ) -g1,10825:3062174,2439708 -(1,10825:3062174,2439708:16384,1703936,0 -[1,10825:3062174,2439708:25952256,1703936,0 -(1,10825:3062174,1915420:25952256,1179648,0 -(1,10825:3062174,1915420:16384,1179648,0 -r1,11318:3078558,1915420:16384,1179648,0 +g1,8606:3062174,2439708 +(1,8606:3062174,2439708:16384,1703936,0 +[1,8606:3062174,2439708:25952256,1703936,0 +(1,8606:3062174,1915420:25952256,1179648,0 +(1,8606:3062174,1915420:16384,1179648,0 +r1,10606:3078558,1915420:16384,1179648,0 ) -k1,10825:29014430,1915420:25935872 -g1,10825:29014430,1915420 +k1,8606:29014430,1915420:25935872 +g1,8606:29014430,1915420 ) ] ) ) ) ] -[1,11318:3078558,4812305:0,0,0 -(1,11318:3078558,2439708:0,1703936,0 -g1,11318:29030814,2439708 -g1,11318:36135244,2439708 -(1,10825:36135244,2439708:1720320,1703936,0 -(1,10825:36135244,2439708:16384,1703936,0 -[1,10825:36135244,2439708:25952256,1703936,0 -(1,10825:36135244,1915420:25952256,1179648,0 -(1,10825:36135244,1915420:16384,1179648,0 -r1,11318:36151628,1915420:16384,1179648,0 +[1,10606:3078558,4812305:0,0,0 +(1,10606:3078558,2439708:0,1703936,0 +g1,10606:29030814,2439708 +g1,10606:36135244,2439708 +(1,8606:36135244,2439708:1720320,1703936,0 +(1,8606:36135244,2439708:16384,1703936,0 +[1,8606:36135244,2439708:25952256,1703936,0 +(1,8606:36135244,1915420:25952256,1179648,0 +(1,8606:36135244,1915420:16384,1179648,0 +r1,10606:36151628,1915420:16384,1179648,0 ) -k1,10825:62087500,1915420:25935872 -g1,10825:62087500,1915420 +k1,8606:62087500,1915420:25935872 +g1,8606:62087500,1915420 ) ] ) -g1,10825:36675916,2439708 -(1,10825:36675916,2439708:1179648,16384,0 -r1,11318:37855564,2439708:1179648,16384,0 +g1,8606:36675916,2439708 +(1,8606:36675916,2439708:1179648,16384,0 +r1,10606:37855564,2439708:1179648,16384,0 ) ) -k1,11318:3078556,2439708:-34777008 +k1,10606:3078556,2439708:-34777008 ) ] -[1,11318:3078558,4812305:0,0,0 -(1,11318:3078558,49800853:0,16384,2228224 -k1,11318:1358238,49800853:-1720320 -(1,10825:1358238,49800853:1720320,16384,2228224 -(1,10825:1358238,49800853:1179648,16384,0 -r1,11318:2537886,49800853:1179648,16384,0 +[1,10606:3078558,4812305:0,0,0 +(1,10606:3078558,49800853:0,16384,2228224 +k1,10606:1358238,49800853:-1720320 +(1,8606:1358238,49800853:1720320,16384,2228224 +(1,8606:1358238,49800853:1179648,16384,0 +r1,10606:2537886,49800853:1179648,16384,0 ) -g1,10825:3062174,49800853 -(1,10825:3062174,52029077:16384,1703936,0 -[1,10825:3062174,52029077:25952256,1703936,0 -(1,10825:3062174,51504789:25952256,1179648,0 -(1,10825:3062174,51504789:16384,1179648,0 -r1,11318:3078558,51504789:16384,1179648,0 +g1,8606:3062174,49800853 +(1,8606:3062174,52029077:16384,1703936,0 +[1,8606:3062174,52029077:25952256,1703936,0 +(1,8606:3062174,51504789:25952256,1179648,0 +(1,8606:3062174,51504789:16384,1179648,0 +r1,10606:3078558,51504789:16384,1179648,0 ) -k1,10825:29014430,51504789:25935872 -g1,10825:29014430,51504789 +k1,8606:29014430,51504789:25935872 +g1,8606:29014430,51504789 ) ] -) -) -) +) +) +) +] +[1,10606:3078558,4812305:0,0,0 +(1,10606:3078558,49800853:0,16384,2228224 +g1,10606:29030814,49800853 +g1,10606:36135244,49800853 +(1,8606:36135244,49800853:1720320,16384,2228224 +(1,8606:36135244,52029077:16384,1703936,0 +[1,8606:36135244,52029077:25952256,1703936,0 +(1,8606:36135244,51504789:25952256,1179648,0 +(1,8606:36135244,51504789:16384,1179648,0 +r1,10606:36151628,51504789:16384,1179648,0 +) +k1,8606:62087500,51504789:25935872 +g1,8606:62087500,51504789 +) +] +) +g1,8606:36675916,49800853 +(1,8606:36675916,49800853:1179648,16384,0 +r1,10606:37855564,49800853:1179648,16384,0 +) +) +k1,10606:3078556,49800853:-34777008 +) +] +g1,10606:6630773,4812305 +g1,10606:6630773,4812305 +g1,10606:8671564,4812305 +g1,10606:11756343,4812305 +k1,10606:31387651,4812305:19631308 +) +) +] +[1,10606:6630773,45706769:25952256,40108032,0 +(1,10606:6630773,45706769:25952256,40108032,0 +(1,10606:6630773,45706769:0,0,0 +g1,10606:6630773,45706769 +) +[1,10606:6630773,45706769:25952256,40108032,0 +v1,10532:6630773,6254097:0,393216,0 +(1,10532:6630773,7176691:25952256,1315810,196608 +g1,10532:6630773,7176691 +g1,10532:6630773,7176691 +g1,10532:6434165,7176691 +(1,10532:6434165,7176691:0,1315810,196608 +r1,10606:32779637,7176691:26345472,1512418,196608 +k1,10532:6434165,7176691:-26345472 +) +(1,10532:6434165,7176691:26345472,1315810,196608 +[1,10532:6630773,7176691:25952256,1119202,0 +(1,10531:6630773,6481928:25952256,424439,112852 +(1,10528:6630773,6481928:0,0,0 +g1,10528:6630773,6481928 +g1,10528:6630773,6481928 +g1,10528:6303093,6481928 +(1,10528:6303093,6481928:0,0,0 +) +g1,10528:6630773,6481928 +) +g1,10531:7626635,6481928 +g1,10531:11942036,6481928 +g1,10531:12273990,6481928 +g1,10531:16257437,6481928 +g1,10531:20572838,6481928 +g1,10531:20904792,6481928 +g1,10531:24888239,6481928 +g1,10531:25220193,6481928 +g1,10531:25552147,6481928 +g1,10531:25884101,6481928 +g1,10531:26216055,6481928 +g1,10531:26548009,6481928 +h1,10531:28871687,6481928:0,0,0 +k1,10531:32583029,6481928:3711342 +g1,10531:32583029,6481928 +) +(1,10531:6630773,7166783:25952256,407923,9908 +h1,10531:6630773,7166783:0,0,0 +g1,10531:7626635,7166783 +g1,10531:7958589,7166783 +g1,10531:8290543,7166783 +g1,10531:8622497,7166783 +g1,10531:8954451,7166783 +g1,10531:11942036,7166783 +g1,10531:12273990,7166783 +g1,10531:12605944,7166783 +g1,10531:12937898,7166783 +g1,10531:13269852,7166783 +g1,10531:16257437,7166783 +g1,10531:16589391,7166783 +g1,10531:16921345,7166783 +g1,10531:17253299,7166783 +g1,10531:17585253,7166783 +g1,10531:20572838,7166783 +g1,10531:20904792,7166783 +g1,10531:21236746,7166783 +g1,10531:21568700,7166783 +g1,10531:21900654,7166783 +g1,10531:24888239,7166783 +g1,10531:25220193,7166783 +g1,10531:25552147,7166783 +g1,10531:25884101,7166783 +g1,10531:26216055,7166783 +g1,10531:26548009,7166783 +g1,10531:26879963,7166783 +g1,10531:27211917,7166783 +g1,10531:27543871,7166783 +g1,10531:27875825,7166783 +g1,10531:28207779,7166783 +h1,10531:28871687,7166783:0,0,0 +k1,10531:32583029,7166783:3711342 +g1,10531:32583029,7166783 +) +] +) +g1,10532:32583029,7176691 +g1,10532:6630773,7176691 +g1,10532:6630773,7176691 +g1,10532:32583029,7176691 +g1,10532:32583029,7176691 +) +h1,10532:6630773,7373299:0,0,0 +v1,10536:6630773,8238379:0,393216,0 +(1,10594:6630773,35103130:25952256,27257967,0 +g1,10594:6630773,35103130 +g1,10594:6237557,35103130 +r1,10606:6368629,35103130:131072,27257967,0 +g1,10594:6567858,35103130 +g1,10594:6764466,35103130 +[1,10594:6764466,35103130:25818563,27257967,0 +(1,10537:6764466,8546677:25818563,701514,196608 +(1,10536:6764466,8546677:0,701514,196608 +r1,10606:8010564,8546677:1246098,898122,196608 +k1,10536:6764466,8546677:-1246098 +) +(1,10536:6764466,8546677:1246098,701514,196608 +) +k1,10536:8295142,8546677:284578 +k1,10536:8622822,8546677:327680 +k1,10536:11697268,8546677:284578 +(1,10536:11697268,8546677:0,452978,115847 +r1,10606:14517517,8546677:2820249,568825,115847 +k1,10536:11697268,8546677:-2820249 +) +(1,10536:11697268,8546677:2820249,452978,115847 +k1,10536:11697268,8546677:3277 +h1,10536:14514240,8546677:0,411205,112570 +) +k1,10536:14802095,8546677:284578 +k1,10536:16190955,8546677:284578 +k1,10536:17223299,8546677:284578 +k1,10536:19094504,8546677:284578 +k1,10536:20030511,8546677:284579 +k1,10536:21407574,8546677:284578 +k1,10536:22378314,8546677:284578 +k1,10536:23681977,8546677:284578 +k1,10536:25749134,8546677:284578 +k1,10536:26693004,8546677:284578 +k1,10536:29756309,8546677:284578 +k1,10536:32051532,8546677:284578 +k1,10536:32583029,8546677:0 +) +(1,10537:6764466,9411757:25818563,513147,134348 +k1,10536:9986216,9411757:236585 +k1,10536:11711124,9411757:236585 +k1,10536:12479205,9411757:236584 +k1,10536:13071650,9411757:236585 +k1,10536:15938195,9411757:236585 +k1,10536:17412755,9411757:236585 +k1,10536:18308632,9411757:236585 +k1,10536:21559218,9411757:236585 +k1,10536:23864119,9411757:236585 +k1,10536:25292148,9411757:236584 +k1,10536:28513243,9411757:236585 +k1,10536:30782755,9411757:236585 +k1,10537:32583029,9411757:0 +) +(1,10537:6764466,10276837:25818563,513147,126483 +k1,10536:8059130,10276837:258540 +k1,10536:10625847,10276837:258539 +k1,10536:11497149,10276837:258540 +k1,10536:13207310,10276837:258539 +k1,10536:15443727,10276837:258540 +k1,10536:17451422,10276837:258539 +k1,10536:20324193,10276837:258540 +k1,10536:22150353,10276837:258539 +k1,10536:22764753,10276837:258540 +k1,10536:24016818,10276837:258539 +k1,10536:24934650,10276837:258540 +k1,10536:27675037,10276837:258539 +k1,10536:29807907,10276837:258540 +k1,10536:31835263,10276837:258539 +k1,10536:32583029,10276837:0 +) +(1,10537:6764466,11141917:25818563,505283,134348 +k1,10536:8835271,11141917:203029 +k1,10536:11482792,11141917:203028 +k1,10536:13754137,11141917:203029 +k1,10536:15148611,11141917:203029 +k1,10536:18509820,11141917:203029 +k1,10536:19909535,11141917:203028 +k1,10536:23184892,11141917:203029 +k1,10536:25593208,11141917:203029 +k1,10536:26447664,11141917:203028 +(1,10536:26447664,11141917:0,414482,115847 +r1,10606:29619624,11141917:3171960,530329,115847 +k1,10536:26447664,11141917:-3171960 +) +(1,10536:26447664,11141917:3171960,414482,115847 +k1,10536:26447664,11141917:3277 +h1,10536:29616347,11141917:0,411205,112570 +) +k1,10536:29822653,11141917:203029 +k1,10536:32583029,11141917:0 +) +(1,10537:6764466,12006997:25818563,513147,134348 +k1,10536:7399977,12006997:279651 +k1,10536:10489813,12006997:279652 +k1,10536:11717115,12006997:279651 +k1,10536:13015851,12006997:279651 +k1,10536:14681589,12006997:279652 +k1,10536:15620532,12006997:279651 +k1,10536:16919269,12006997:279652 +k1,10536:19209565,12006997:279651 +k1,10536:21169559,12006997:279651 +k1,10536:22640656,12006997:279652 +k1,10536:23708705,12006997:279651 +k1,10536:28030617,12006997:279651 +k1,10536:29577735,12006997:279652 +k1,10536:31391584,12006997:279651 +k1,10536:32583029,12006997:0 +) +(1,10537:6764466,12872077:25818563,505283,134348 +k1,10536:9789748,12872077:138421 +k1,10536:11953888,12872077:138422 +k1,10536:13376815,12872077:138421 +k1,10536:14534321,12872077:138421 +k1,10536:16206940,12872077:138421 +k1,10536:16961400,12872077:138422 +k1,10536:18118906,12872077:138421 +k1,10536:20416083,12872077:138421 +k1,10536:21546065,12872077:138422 +k1,10536:23014867,12872077:138421 +k1,10536:25312044,12872077:138421 +k1,10536:28567357,12872077:138421 +k1,10536:29357207,12872077:138422 +k1,10536:30514713,12872077:138421 +k1,10536:32583029,12872077:0 +) +(1,10537:6764466,13737157:25818563,473825,115847 +g1,10536:7579733,13737157 +(1,10536:7579733,13737157:0,414482,115847 +r1,10606:10751693,13737157:3171960,530329,115847 +k1,10536:7579733,13737157:-3171960 +) +(1,10536:7579733,13737157:3171960,414482,115847 +k1,10536:7579733,13737157:3277 +h1,10536:10748416,13737157:0,411205,112570 +) +k1,10537:32583029,13737157:21657666 +g1,10537:32583029,13737157 +) +(1,10539:6764466,14602237:25818563,513147,134348 +h1,10538:6764466,14602237:983040,0,0 +k1,10538:8881204,14602237:180149 +k1,10538:10367485,14602237:180148 +k1,10538:11640119,14602237:180149 +(1,10538:11640119,14602237:0,452978,115847 +r1,10606:14460368,14602237:2820249,568825,115847 +k1,10538:11640119,14602237:-2820249 +) +(1,10538:11640119,14602237:2820249,452978,115847 +k1,10538:11640119,14602237:3277 +h1,10538:14457091,14602237:0,411205,112570 +) +k1,10538:14640517,14602237:180149 +k1,10538:15472094,14602237:180149 +k1,10538:17581623,14602237:180149 +k1,10538:18780856,14602237:180148 +k1,10538:20920531,14602237:180149 +(1,10538:20920531,14602237:0,452978,115847 +r1,10606:23037356,14602237:2116825,568825,115847 +k1,10538:20920531,14602237:-2116825 +) +(1,10538:20920531,14602237:2116825,452978,115847 +k1,10538:20920531,14602237:3277 +h1,10538:23034079,14602237:0,411205,112570 +) +k1,10538:23217505,14602237:180149 +k1,10538:26759651,14602237:180149 +k1,10538:29568448,14602237:180148 +k1,10538:31311631,14602237:180149 +k1,10538:32583029,14602237:0 +) +(1,10539:6764466,15467317:25818563,513147,134348 +k1,10538:7623038,15467317:175687 +k1,10538:9448922,15467317:175687 +k1,10538:12851601,15467317:175686 +k1,10538:15231263,15467317:175687 +k1,10538:18809579,15467317:175687 +k1,10538:20089548,15467317:175687 +k1,10538:21013000,15467317:175686 +k1,10538:23393974,15467317:175687 +k1,10538:24221089,15467317:175687 +k1,10538:25415861,15467317:175687 +k1,10538:28287043,15467317:175686 +k1,10538:29114158,15467317:175687 +k1,10538:30037611,15467317:175687 +k1,10539:32583029,15467317:0 +k1,10539:32583029,15467317:0 +) +v1,10541:6764466,16152172:0,393216,0 +(1,10555:6764466,22069737:25818563,6310781,196608 +g1,10555:6764466,22069737 +g1,10555:6764466,22069737 +g1,10555:6567858,22069737 +(1,10555:6567858,22069737:0,6310781,196608 +r1,10606:32779637,22069737:26211779,6507389,196608 +k1,10555:6567857,22069737:-26211780 +) +(1,10555:6567858,22069737:26211779,6310781,196608 +[1,10555:6764466,22069737:25818563,6114173,0 +(1,10543:6764466,16380003:25818563,424439,79822 +(1,10542:6764466,16380003:0,0,0 +g1,10542:6764466,16380003 +g1,10542:6764466,16380003 +g1,10542:6436786,16380003 +(1,10542:6436786,16380003:0,0,0 +) +g1,10542:6764466,16380003 +) +k1,10543:6764466,16380003:0 +h1,10543:12075729,16380003:0,0,0 +k1,10543:32583029,16380003:20507300 +g1,10543:32583029,16380003 +) +(1,10544:6764466,17064858:25818563,424439,106246 +h1,10544:6764466,17064858:0,0,0 +g1,10544:9088144,17064858 +g1,10544:10084006,17064858 +g1,10544:14731362,17064858 +g1,10544:16059178,17064858 +g1,10544:18382856,17064858 +g1,10544:20042626,17064858 +g1,10544:20706534,17064858 +g1,10544:22034350,17064858 +g1,10544:23030212,17064858 +g1,10544:23694120,17064858 +h1,10544:24358028,17064858:0,0,0 +k1,10544:32583029,17064858:8225001 +g1,10544:32583029,17064858 +) +(1,10545:6764466,17749713:25818563,424439,79822 +h1,10545:6764466,17749713:0,0,0 +k1,10545:6764466,17749713:0 +h1,10545:10415959,17749713:0,0,0 +k1,10545:32583029,17749713:22167070 +g1,10545:32583029,17749713 +) +(1,10554:6764466,18565640:25818563,431045,9908 +(1,10547:6764466,18565640:0,0,0 +g1,10547:6764466,18565640 +g1,10547:6764466,18565640 +g1,10547:6436786,18565640 +(1,10547:6436786,18565640:0,0,0 +) +g1,10547:6764466,18565640 +) +g1,10554:7760328,18565640 +g1,10554:9420098,18565640 +g1,10554:10415960,18565640 +h1,10554:10747914,18565640:0,0,0 +k1,10554:32583030,18565640:21835116 +g1,10554:32583030,18565640 +) +(1,10554:6764466,19250495:25818563,431045,79822 +h1,10554:6764466,19250495:0,0,0 +g1,10554:7760328,19250495 +g1,10554:8092282,19250495 +g1,10554:8756190,19250495 +g1,10554:9420098,19250495 +g1,10554:10747914,19250495 +g1,10554:12739638,19250495 +g1,10554:14731362,19250495 +g1,10554:16391132,19250495 +g1,10554:18050902,19250495 +h1,10554:19710672,19250495:0,0,0 +k1,10554:32583029,19250495:12872357 +g1,10554:32583029,19250495 +) +(1,10554:6764466,19935350:25818563,431045,79822 +h1,10554:6764466,19935350:0,0,0 +g1,10554:7760328,19935350 +g1,10554:8092282,19935350 +g1,10554:8756190,19935350 +g1,10554:9420098,19935350 +g1,10554:10747914,19935350 +g1,10554:12739638,19935350 +g1,10554:14399408,19935350 +g1,10554:16059178,19935350 +g1,10554:17718948,19935350 +h1,10554:19046764,19935350:0,0,0 +k1,10554:32583029,19935350:13536265 +g1,10554:32583029,19935350 +) +(1,10554:6764466,20620205:25818563,431045,79822 +h1,10554:6764466,20620205:0,0,0 +g1,10554:7760328,20620205 +g1,10554:8092282,20620205 +g1,10554:8756190,20620205 +g1,10554:9420098,20620205 +g1,10554:10747914,20620205 +g1,10554:12739638,20620205 +g1,10554:14731362,20620205 +g1,10554:16391132,20620205 +g1,10554:17055040,20620205 +h1,10554:18382856,20620205:0,0,0 +k1,10554:32583029,20620205:14200173 +g1,10554:32583029,20620205 +) +(1,10554:6764466,21305060:25818563,431045,79822 +h1,10554:6764466,21305060:0,0,0 +g1,10554:7760328,21305060 +g1,10554:8092282,21305060 +g1,10554:8756190,21305060 +g1,10554:9420098,21305060 +g1,10554:10747914,21305060 +g1,10554:12739638,21305060 +g1,10554:14399408,21305060 +g1,10554:16391132,21305060 +g1,10554:18382856,21305060 +h1,10554:20042626,21305060:0,0,0 +k1,10554:32583029,21305060:12540403 +g1,10554:32583029,21305060 +) +(1,10554:6764466,21989915:25818563,431045,79822 +h1,10554:6764466,21989915:0,0,0 +g1,10554:7760328,21989915 +g1,10554:8092282,21989915 +g1,10554:8756190,21989915 +g1,10554:9420098,21989915 +g1,10554:10747914,21989915 +g1,10554:12739638,21989915 +g1,10554:14399408,21989915 +g1,10554:16391132,21989915 +g1,10554:18382856,21989915 +h1,10554:20042626,21989915:0,0,0 +k1,10554:32583029,21989915:12540403 +g1,10554:32583029,21989915 +) +] +) +g1,10555:32583029,22069737 +g1,10555:6764466,22069737 +g1,10555:6764466,22069737 +g1,10555:32583029,22069737 +g1,10555:32583029,22069737 +) +h1,10555:6764466,22266345:0,0,0 +(1,10559:6764466,23131425:25818563,513147,126483 +h1,10558:6764466,23131425:983040,0,0 +k1,10558:8957301,23131425:256246 +k1,10558:11174384,23131425:256246 +k1,10558:12449714,23131425:256245 +k1,10558:15401456,23131425:256246 +k1,10558:16942208,23131425:256246 +k1,10558:18066806,23131425:256246 +k1,10558:19455513,23131425:256245 +k1,10558:21649003,23131425:256246 +k1,10558:22261109,23131425:256246 +k1,10558:25212851,23131425:256246 +k1,10558:26753603,23131425:256246 +k1,10558:29350794,23131425:256245 +k1,10558:29962900,23131425:256246 +k1,10558:32583029,23131425:0 +) +(1,10559:6764466,23996505:25818563,513147,134348 +g1,10558:8941572,23996505 +g1,10558:9800093,23996505 +g1,10558:12012588,23996505 +k1,10559:32583029,23996505:19998312 +g1,10559:32583029,23996505 +) +v1,10561:6764466,24681360:0,393216,0 +(1,10567:6764466,26365329:25818563,2077185,196608 +g1,10567:6764466,26365329 +g1,10567:6764466,26365329 +g1,10567:6567858,26365329 +(1,10567:6567858,26365329:0,2077185,196608 +r1,10606:32779637,26365329:26211779,2273793,196608 +k1,10567:6567857,26365329:-26211780 +) +(1,10567:6567858,26365329:26211779,2077185,196608 +[1,10567:6764466,26365329:25818563,1880577,0 +(1,10563:6764466,24915797:25818563,431045,86428 +(1,10562:6764466,24915797:0,0,0 +g1,10562:6764466,24915797 +g1,10562:6764466,24915797 +g1,10562:6436786,24915797 +(1,10562:6436786,24915797:0,0,0 +) +g1,10562:6764466,24915797 +) +g1,10563:10747913,24915797 +g1,10563:11743775,24915797 +g1,10563:15727222,24915797 +g1,10563:17718946,24915797 +g1,10563:18382854,24915797 +g1,10563:20706532,24915797 +h1,10563:21038486,24915797:0,0,0 +k1,10563:32583029,24915797:11544543 +g1,10563:32583029,24915797 +) +(1,10564:6764466,25600652:25818563,424439,86428 +h1,10564:6764466,25600652:0,0,0 +g1,10564:7096420,25600652 +g1,10564:7428374,25600652 +g1,10564:7760328,25600652 +g1,10564:8092282,25600652 +g1,10564:8424236,25600652 +g1,10564:8756190,25600652 +g1,10564:9088144,25600652 +g1,10564:12407684,25600652 +g1,10564:14399408,25600652 +g1,10564:15063316,25600652 +g1,10564:17718948,25600652 +g1,10564:18050902,25600652 +g1,10564:20042626,25600652 +g1,10564:22034350,25600652 +g1,10564:22698258,25600652 +h1,10564:25021936,25600652:0,0,0 +k1,10564:32583029,25600652:7561093 +g1,10564:32583029,25600652 +) +(1,10565:6764466,26285507:25818563,424439,79822 +h1,10565:6764466,26285507:0,0,0 +g1,10565:7096420,26285507 +g1,10565:7428374,26285507 +g1,10565:7760328,26285507 +g1,10565:8092282,26285507 +h1,10565:8424236,26285507:0,0,0 +k1,10565:32583028,26285507:24158792 +g1,10565:32583028,26285507 +) +] +) +g1,10567:32583029,26365329 +g1,10567:6764466,26365329 +g1,10567:6764466,26365329 +g1,10567:32583029,26365329 +g1,10567:32583029,26365329 +) +h1,10567:6764466,26561937:0,0,0 +(1,10571:6764466,27427017:25818563,513147,126483 +h1,10570:6764466,27427017:983040,0,0 +g1,10570:8900284,27427017 +g1,10570:10483633,27427017 +g1,10570:11775347,27427017 +(1,10570:11775347,27427017:0,452978,115847 +r1,10606:14595596,27427017:2820249,568825,115847 +k1,10570:11775347,27427017:-2820249 +) +(1,10570:11775347,27427017:2820249,452978,115847 +k1,10570:11775347,27427017:3277 +h1,10570:14592319,27427017:0,411205,112570 +) +g1,10570:14794825,27427017 +g1,10570:15645482,27427017 +g1,10570:17608285,27427017 +g1,10570:18905242,27427017 +g1,10570:21799967,27427017 +g1,10570:22650624,27427017 +g1,10570:24301475,27427017 +g1,10570:27124110,27427017 +g1,10570:29301216,27427017 +g1,10570:30159737,27427017 +g1,10570:31378051,27427017 +k1,10571:32583029,27427017:37782 +g1,10571:32583029,27427017 +) +v1,10573:6764466,28111872:0,393216,0 +(1,10592:6764466,34906522:25818563,7187866,196608 +g1,10592:6764466,34906522 +g1,10592:6764466,34906522 +g1,10592:6567858,34906522 +(1,10592:6567858,34906522:0,7187866,196608 +r1,10606:32779637,34906522:26211779,7384474,196608 +k1,10592:6567857,34906522:-26211780 +) +(1,10592:6567858,34906522:26211779,7187866,196608 +[1,10592:6764466,34906522:25818563,6991258,0 +(1,10575:6764466,28339703:25818563,424439,106246 +(1,10574:6764466,28339703:0,0,0 +g1,10574:6764466,28339703 +g1,10574:6764466,28339703 +g1,10574:6436786,28339703 +(1,10574:6436786,28339703:0,0,0 +) +g1,10574:6764466,28339703 +) +g1,10575:9088144,28339703 +g1,10575:10084006,28339703 +g1,10575:13071592,28339703 +g1,10575:13735500,28339703 +k1,10575:13735500,28339703:0 +h1,10575:16059178,28339703:0,0,0 +k1,10575:32583029,28339703:16523851 +g1,10575:32583029,28339703 +) +(1,10576:6764466,29024558:25818563,424439,86428 +h1,10576:6764466,29024558:0,0,0 +g1,10576:7096420,29024558 +g1,10576:7428374,29024558 +g1,10576:7760328,29024558 +g1,10576:8092282,29024558 +g1,10576:8424236,29024558 +g1,10576:8756190,29024558 +g1,10576:9088144,29024558 +g1,10576:9420098,29024558 +g1,10576:9752052,29024558 +g1,10576:10084006,29024558 +g1,10576:10415960,29024558 +g1,10576:10747914,29024558 +g1,10576:11079868,29024558 +g1,10576:11411822,29024558 +g1,10576:11743776,29024558 +g1,10576:12075730,29024558 +g1,10576:12407684,29024558 +g1,10576:13735500,29024558 +g1,10576:14399408,29024558 +k1,10576:14399408,29024558:0 +h1,10576:18382855,29024558:0,0,0 +k1,10576:32583029,29024558:14200174 +g1,10576:32583029,29024558 +) +(1,10577:6764466,29709413:25818563,424439,86428 +h1,10577:6764466,29709413:0,0,0 +g1,10577:7096420,29709413 +g1,10577:7428374,29709413 +g1,10577:7760328,29709413 +g1,10577:8092282,29709413 +g1,10577:8424236,29709413 +g1,10577:8756190,29709413 +g1,10577:9088144,29709413 +g1,10577:9420098,29709413 +g1,10577:9752052,29709413 +g1,10577:10084006,29709413 +g1,10577:10415960,29709413 +g1,10577:10747914,29709413 +g1,10577:11079868,29709413 +g1,10577:11411822,29709413 +g1,10577:11743776,29709413 +g1,10577:12075730,29709413 +g1,10577:12407684,29709413 +g1,10577:15727223,29709413 +g1,10577:16391131,29709413 +g1,10577:18714809,29709413 +g1,10577:19378717,29709413 +g1,10577:20374579,29709413 +g1,10577:21370441,29709413 +g1,10577:22034349,29709413 +k1,10577:22034349,29709413:0 +h1,10577:23030211,29709413:0,0,0 +k1,10577:32583029,29709413:9552818 +g1,10577:32583029,29709413 +) +(1,10578:6764466,30394268:25818563,424439,79822 +h1,10578:6764466,30394268:0,0,0 +g1,10578:7096420,30394268 +g1,10578:7428374,30394268 +g1,10578:7760328,30394268 +g1,10578:8092282,30394268 +g1,10578:8424236,30394268 +g1,10578:8756190,30394268 +g1,10578:9088144,30394268 +g1,10578:9420098,30394268 +g1,10578:9752052,30394268 +g1,10578:10084006,30394268 +g1,10578:10415960,30394268 +g1,10578:10747914,30394268 +g1,10578:11079868,30394268 +g1,10578:11411822,30394268 +g1,10578:11743776,30394268 +g1,10578:12075730,30394268 +g1,10578:12407684,30394268 +g1,10578:14399408,30394268 +g1,10578:15063316,30394268 +h1,10578:16723086,30394268:0,0,0 +k1,10578:32583029,30394268:15859943 +g1,10578:32583029,30394268 +) +(1,10579:6764466,31079123:25818563,424439,79822 +h1,10579:6764466,31079123:0,0,0 +k1,10579:6764466,31079123:0 +h1,10579:11079867,31079123:0,0,0 +k1,10579:32583029,31079123:21503162 +g1,10579:32583029,31079123 +) +(1,10583:6764466,31895050:25818563,424439,106246 +(1,10581:6764466,31895050:0,0,0 +g1,10581:6764466,31895050 +g1,10581:6764466,31895050 +g1,10581:6436786,31895050 +(1,10581:6436786,31895050:0,0,0 +) +g1,10581:6764466,31895050 +) +g1,10583:7760328,31895050 +g1,10583:9088144,31895050 +g1,10583:12075729,31895050 +h1,10583:14399407,31895050:0,0,0 +k1,10583:32583029,31895050:18183622 +g1,10583:32583029,31895050 +) +(1,10585:6764466,32710977:25818563,424439,6605 +(1,10584:6764466,32710977:0,0,0 +g1,10584:6764466,32710977 +g1,10584:6764466,32710977 +g1,10584:6436786,32710977 +(1,10584:6436786,32710977:0,0,0 +) +g1,10584:6764466,32710977 +) +h1,10585:8756190,32710977:0,0,0 +k1,10585:32583030,32710977:23826840 +g1,10585:32583030,32710977 +) +(1,10591:6764466,33526904:25818563,424439,86428 +(1,10587:6764466,33526904:0,0,0 +g1,10587:6764466,33526904 +g1,10587:6764466,33526904 +g1,10587:6436786,33526904 +(1,10587:6436786,33526904:0,0,0 +) +g1,10587:6764466,33526904 +) +g1,10591:7760328,33526904 +g1,10591:8092282,33526904 +g1,10591:8424236,33526904 +g1,10591:8756190,33526904 +g1,10591:9088144,33526904 +g1,10591:9420098,33526904 +g1,10591:9752052,33526904 +g1,10591:10084006,33526904 +g1,10591:10415960,33526904 +g1,10591:10747914,33526904 +g1,10591:11079868,33526904 +g1,10591:11411822,33526904 +g1,10591:13071592,33526904 +g1,10591:13403546,33526904 +g1,10591:13735500,33526904 +g1,10591:14067454,33526904 +g1,10591:14399408,33526904 +g1,10591:14731362,33526904 +g1,10591:15063316,33526904 +g1,10591:16723086,33526904 +g1,10591:17055040,33526904 +g1,10591:17386994,33526904 +g1,10591:17718948,33526904 +g1,10591:18050902,33526904 +g1,10591:19710672,33526904 +g1,10591:20042626,33526904 +g1,10591:20374580,33526904 +g1,10591:20706534,33526904 +g1,10591:21038488,33526904 +g1,10591:21370442,33526904 +g1,10591:21702396,33526904 +g1,10591:23362166,33526904 +g1,10591:23694120,33526904 +g1,10591:24026074,33526904 +g1,10591:24358028,33526904 +g1,10591:24689982,33526904 +g1,10591:25021936,33526904 +k1,10591:25021936,33526904:0 +h1,10591:26349752,33526904:0,0,0 +k1,10591:32583029,33526904:6233277 +g1,10591:32583029,33526904 +) +(1,10591:6764466,34211759:25818563,407923,9908 +h1,10591:6764466,34211759:0,0,0 +g1,10591:7760328,34211759 +g1,10591:9420098,34211759 +g1,10591:13071591,34211759 +g1,10591:16723084,34211759 +g1,10591:19710669,34211759 +g1,10591:23362162,34211759 +h1,10591:26349747,34211759:0,0,0 +k1,10591:32583029,34211759:6233282 +g1,10591:32583029,34211759 +) +(1,10591:6764466,34896614:25818563,424439,9908 +h1,10591:6764466,34896614:0,0,0 +g1,10591:7760328,34896614 +g1,10591:8756190,34896614 +g1,10591:9088144,34896614 +g1,10591:9420098,34896614 +g1,10591:9752052,34896614 +g1,10591:13071591,34896614 +g1,10591:13403545,34896614 +g1,10591:16723084,34896614 +g1,10591:19710669,34896614 +g1,10591:20042623,34896614 +g1,10591:23362162,34896614 +g1,10591:23694116,34896614 +h1,10591:26349747,34896614:0,0,0 +k1,10591:32583029,34896614:6233282 +g1,10591:32583029,34896614 +) +] +) +g1,10592:32583029,34906522 +g1,10592:6764466,34906522 +g1,10592:6764466,34906522 +g1,10592:32583029,34906522 +g1,10592:32583029,34906522 +) +h1,10592:6764466,35103130:0,0,0 +] +g1,10594:32583029,35103130 +) +h1,10594:6630773,35103130:0,0,0 +v1,10597:6630773,35968210:0,393216,0 +(1,10598:6630773,37978710:25952256,2403716,0 +g1,10598:6630773,37978710 +g1,10598:6237557,37978710 +r1,10606:6368629,37978710:131072,2403716,0 +g1,10598:6567858,37978710 +g1,10598:6764466,37978710 +[1,10598:6764466,37978710:25818563,2403716,0 +(1,10598:6764466,36240687:25818563,665693,196608 +(1,10597:6764466,36240687:0,665693,196608 +r1,10606:8010564,36240687:1246098,862301,196608 +k1,10597:6764466,36240687:-1246098 +) +(1,10597:6764466,36240687:1246098,665693,196608 +) +k1,10597:8286551,36240687:275987 +k1,10597:10012769,36240687:327680 +k1,10597:12184056,36240687:275986 +k1,10597:15155539,36240687:275987 +(1,10597:15155539,36240687:0,452978,115847 +r1,10606:19734347,36240687:4578808,568825,115847 +k1,10597:15155539,36240687:-4578808 +) +(1,10597:15155539,36240687:4578808,452978,115847 +k1,10597:15155539,36240687:3277 +h1,10597:19731070,36240687:0,411205,112570 +) +k1,10597:20010333,36240687:275986 +k1,10597:22667898,36240687:275987 +k1,10597:24799209,36240687:275987 +k1,10597:25726623,36240687:275986 +k1,10597:27021695,36240687:275987 +k1,10597:28687044,36240687:275986 +k1,10597:31169628,36240687:275987 +(1,10597:31169628,36240687:0,414482,115847 +r1,10606:32583029,36240687:1413401,530329,115847 +k1,10597:31169628,36240687:-1413401 +) +(1,10597:31169628,36240687:1413401,414482,115847 +k1,10597:31169628,36240687:3277 +h1,10597:32579752,36240687:0,411205,112570 +) +k1,10597:32583029,36240687:0 +) +(1,10598:6764466,37105767:25818563,513147,115847 +k1,10597:8197755,37105767:241844 +(1,10597:8197755,37105767:0,452978,115847 +r1,10606:9611156,37105767:1413401,568825,115847 +k1,10597:8197755,37105767:-1413401 +) +(1,10597:8197755,37105767:1413401,452978,115847 +k1,10597:8197755,37105767:3277 +h1,10597:9607879,37105767:0,411205,112570 +) +k1,10597:9853000,37105767:241844 +k1,10597:11662465,37105767:241844 +k1,10597:15084115,37105767:241844 +k1,10597:16522646,37105767:241844 +k1,10597:17941517,37105767:241844 +k1,10597:18714858,37105767:241844 +k1,10597:19608130,37105767:241844 +k1,10597:21873726,37105767:241844 +k1,10597:23134655,37105767:241844 +k1,10597:25114514,37105767:241844 +k1,10597:26547803,37105767:241844 +k1,10597:29633254,37105767:241844 +k1,10597:32583029,37105767:0 +) +(1,10598:6764466,37970847:25818563,513147,7863 +g1,10597:7911346,37970847 +g1,10597:9562197,37970847 +g1,10597:12381555,37970847 +k1,10598:32583030,37970847:17644916 +g1,10598:32583030,37970847 +) +] +g1,10598:32583029,37978710 +) +h1,10598:6630773,37978710:0,0,0 +v1,10601:6630773,38843790:0,393216,0 +(1,10602:6630773,42738891:25952256,4288317,0 +g1,10602:6630773,42738891 +g1,10602:6237557,42738891 +r1,10606:6368629,42738891:131072,4288317,0 +g1,10602:6567858,42738891 +g1,10602:6764466,42738891 +[1,10602:6764466,42738891:25818563,4288317,0 +(1,10602:6764466,39152088:25818563,701514,196608 +(1,10601:6764466,39152088:0,701514,196608 +r1,10606:8863446,39152088:2098980,898122,196608 +k1,10601:6764466,39152088:-2098980 +) +(1,10601:6764466,39152088:2098980,701514,196608 +) +k1,10601:9040032,39152088:176586 +k1,10601:10766250,39152088:327680 +k1,10601:13081276,39152088:176586 +k1,10601:14276947,39152088:176586 +k1,10601:17443941,39152088:176586 +k1,10601:18279818,39152088:176585 +k1,10601:19845767,39152088:176586 +(1,10601:19845767,39152088:0,452978,115847 +r1,10606:23369439,39152088:3523672,568825,115847 +k1,10601:19845767,39152088:-3523672 +) +(1,10601:19845767,39152088:3523672,452978,115847 +k1,10601:19845767,39152088:3277 +h1,10601:23366162,39152088:0,411205,112570 +) +k1,10601:23546025,39152088:176586 +k1,10601:25116562,39152088:176586 +k1,10601:27988644,39152088:176586 +(1,10601:27988644,39152088:0,452978,115847 +r1,10606:31160604,39152088:3171960,568825,115847 +k1,10601:27988644,39152088:-3171960 +) +(1,10601:27988644,39152088:3171960,452978,115847 +k1,10601:27988644,39152088:3277 +h1,10601:31157327,39152088:0,411205,112570 +) +k1,10601:31510860,39152088:176586 +k1,10601:32583029,39152088:0 +) +(1,10602:6764466,40017168:25818563,513147,134348 +k1,10601:7538950,40017168:158446 +k1,10601:10537071,40017168:158446 +k1,10601:12310323,40017168:158445 +k1,10601:13964956,40017168:158446 +k1,10601:15517353,40017168:158446 +k1,10601:16446502,40017168:158446 +k1,10601:18397357,40017168:158445 +k1,10601:21251299,40017168:158446 +k1,10601:22061173,40017168:158446 +k1,10601:24034311,40017168:158446 +k1,10601:25211841,40017168:158445 +k1,10601:27856068,40017168:158446 +k1,10601:28673806,40017168:158446 +k1,10601:32583029,40017168:0 +) +(1,10602:6764466,40882248:25818563,513147,134348 +k1,10601:8966942,40882248:191831 +k1,10601:9774812,40882248:191832 +k1,10601:11418265,40882248:191831 +k1,10601:14166656,40882248:191832 +k1,10601:15910380,40882248:191831 +k1,10601:17837605,40882248:191832 +(1,10601:17837605,40882248:0,452978,115847 +r1,10606:19602718,40882248:1765113,568825,115847 +k1,10601:17837605,40882248:-1765113 +) +(1,10601:17837605,40882248:1765113,452978,115847 +k1,10601:17837605,40882248:3277 +h1,10601:19599441,40882248:0,411205,112570 +) +k1,10601:19794549,40882248:191831 +k1,10601:20795751,40882248:191832 +k1,10601:21343442,40882248:191831 +(1,10601:21343442,40882248:0,452978,122846 +r1,10606:23811979,40882248:2468537,575824,122846 +k1,10601:21343442,40882248:-2468537 +) +(1,10601:21343442,40882248:2468537,452978,122846 +k1,10601:21343442,40882248:3277 +h1,10601:23808702,40882248:0,411205,112570 +) +k1,10601:24003811,40882248:191832 +k1,10601:26173519,40882248:191831 +k1,10601:28706297,40882248:191832 +k1,10601:29917213,40882248:191831 +k1,10601:31923737,40882248:191832 +k1,10602:32583029,40882248:0 +) +(1,10602:6764466,41747328:25818563,505283,126483 +(1,10601:6764466,41747328:0,414482,115847 +r1,10606:8177867,41747328:1413401,530329,115847 +k1,10601:6764466,41747328:-1413401 +) +(1,10601:6764466,41747328:1413401,414482,115847 +k1,10601:6764466,41747328:3277 +h1,10601:8174590,41747328:0,411205,112570 +) +k1,10601:8394620,41747328:216753 +k1,10601:10622018,41747328:216753 +k1,10601:11524933,41747328:216753 +(1,10601:11524933,41747328:0,414482,115847 +r1,10606:12938334,41747328:1413401,530329,115847 +k1,10601:11524933,41747328:-1413401 +) +(1,10601:11524933,41747328:1413401,414482,115847 +k1,10601:11524933,41747328:3277 +h1,10601:12935057,41747328:0,411205,112570 +) +k1,10601:13328757,41747328:216753 +k1,10601:14736955,41747328:216753 +(1,10601:14736955,41747328:0,414482,115847 +r1,10606:16502068,41747328:1765113,530329,115847 +k1,10601:14736955,41747328:-1765113 +) +(1,10601:14736955,41747328:1765113,414482,115847 +k1,10601:14736955,41747328:3277 +h1,10601:16498791,41747328:0,411205,112570 +) +k1,10601:16718821,41747328:216753 +k1,10601:17927134,41747328:216753 +k1,10601:22440427,41747328:216753 +k1,10601:25817981,41747328:216753 +k1,10601:27302200,41747328:216753 +(1,10601:27302200,41747328:0,452978,115847 +r1,10606:29770737,41747328:2468537,568825,115847 +k1,10601:27302200,41747328:-2468537 +) +(1,10601:27302200,41747328:2468537,452978,115847 +k1,10601:27302200,41747328:3277 +h1,10601:29767460,41747328:0,411205,112570 +) +k1,10601:29987490,41747328:216753 +k1,10601:30602702,41747328:216753 +k1,10601:32010900,41747328:216753 +k1,10601:32583029,41747328:0 +) +(1,10602:6764466,42612408:25818563,505283,126483 +g1,10601:10933866,42612408 +g1,10601:12831133,42612408 +(1,10601:12831133,42612408:0,452978,122846 +r1,10606:15299670,42612408:2468537,575824,122846 +k1,10601:12831133,42612408:-2468537 +) +(1,10601:12831133,42612408:2468537,452978,122846 +k1,10601:12831133,42612408:3277 +h1,10601:15296393,42612408:0,411205,112570 +) +g1,10601:15498899,42612408 +g1,10601:17708773,42612408 +g1,10601:18899562,42612408 +g1,10601:20612017,42612408 +g1,10601:21427284,42612408 +g1,10601:24902658,42612408 +k1,10602:32583029,42612408:3736414 +g1,10602:32583029,42612408 +) +] +g1,10602:32583029,42738891 +) +h1,10602:6630773,42738891:0,0,0 ] -[1,11318:3078558,4812305:0,0,0 -(1,11318:3078558,49800853:0,16384,2228224 -g1,11318:29030814,49800853 -g1,11318:36135244,49800853 -(1,10825:36135244,49800853:1720320,16384,2228224 -(1,10825:36135244,52029077:16384,1703936,0 -[1,10825:36135244,52029077:25952256,1703936,0 -(1,10825:36135244,51504789:25952256,1179648,0 -(1,10825:36135244,51504789:16384,1179648,0 -r1,11318:36151628,51504789:16384,1179648,0 +(1,10606:32583029,45706769:0,0,0 +g1,10606:32583029,45706769 ) -k1,10825:62087500,51504789:25935872 -g1,10825:62087500,51504789 ) ] +(1,10606:6630773,47279633:25952256,0,0 +h1,10606:6630773,47279633:25952256,0,0 ) -g1,10825:36675916,49800853 -(1,10825:36675916,49800853:1179648,16384,0 -r1,11318:37855564,49800853:1179648,16384,0 +] +(1,10606:4262630,4025873:0,0,0 +[1,10606:-473656,4025873:0,0,0 +(1,10606:-473656,-710413:0,0,0 +(1,10606:-473656,-710413:0,0,0 +g1,10606:-473656,-710413 ) +g1,10606:-473656,-710413 ) -k1,11318:3078556,49800853:-34777008 -) -] -g1,11318:6630773,4812305 -g1,11318:6630773,4812305 -g1,11318:9311850,4812305 -g1,11318:11796319,4812305 -g1,11318:13205998,4812305 -g1,11318:16063367,4812305 -k1,11318:31387652,4812305:15324285 -) -) -] -[1,11318:6630773,45706769:25952256,40108032,0 -(1,11318:6630773,45706769:25952256,40108032,0 -(1,11318:6630773,45706769:0,0,0 -g1,11318:6630773,45706769 -) -[1,11318:6630773,45706769:25952256,40108032,0 -(1,11282:6630773,6254097:25952256,32768,229376 -(1,11282:6630773,6254097:0,32768,229376 -(1,11282:6630773,6254097:5505024,32768,229376 -r1,11318:12135797,6254097:5505024,262144,229376 -) -k1,11282:6630773,6254097:-5505024 -) -(1,11282:6630773,6254097:25952256,32768,0 -r1,11318:32583029,6254097:25952256,32768,0 -) -) -(1,11282:6630773,7858425:25952256,606339,161218 -(1,11282:6630773,7858425:1974731,582746,14155 -g1,11282:6630773,7858425 -g1,11282:8605504,7858425 -) -g1,11282:12064232,7858425 -g1,11282:15314556,7858425 -g1,11282:17024259,7858425 -k1,11282:32583029,7858425:12125994 -g1,11282:32583029,7858425 -) -(1,11286:6630773,9093129:25952256,513147,134348 -k1,11285:8138806,9093129:147506 -k1,11285:10519125,9093129:147507 -k1,11285:11658191,9093129:147506 -k1,11285:14650616,9093129:147507 -k1,11285:17179700,9093129:147506 -k1,11285:19337195,9093129:147506 -k1,11285:22395156,9093129:147507 -k1,11285:24494324,9093129:147506 -k1,11285:26084277,9093129:147506 -k1,11285:26847822,9093129:147507 -k1,11285:28376172,9093129:147506 -k1,11285:30858727,9093129:147507 -k1,11285:31835263,9093129:147506 -k1,11285:32583029,9093129:0 -) -(1,11286:6630773,9934617:25952256,513147,134348 -k1,11285:8599222,9934617:205531 -k1,11285:10781974,9934617:205531 -k1,11285:15411185,9934617:205531 -k1,11285:15972576,9934617:205531 -k1,11285:17461302,9934617:205531 -k1,11285:19222002,9934617:205531 -k1,11285:22035212,9934617:205532 -k1,11285:23307014,9934617:205531 -k1,11285:24888146,9934617:205531 -k1,11285:27697422,9934617:205531 -k1,11285:28258813,9934617:205531 -k1,11285:30019513,9934617:205531 -k1,11285:31297213,9934617:205531 -k1,11285:32583029,9934617:0 -) -(1,11286:6630773,10776105:25952256,513147,134348 -k1,11285:7244607,10776105:257974 -k1,11285:8437123,10776105:257973 -k1,11285:9354389,10776105:257974 -k1,11285:13165724,10776105:257973 -k1,11285:16449495,10776105:257974 -k1,11285:17390353,10776105:257973 -k1,11285:20329405,10776105:257974 -k1,11285:21871884,10776105:257973 -k1,11285:25563289,10776105:257974 -k1,11285:29225858,10776105:257974 -k1,11285:30293201,10776105:257973 -k1,11285:32583029,10776105:0 -) -(1,11286:6630773,11617593:25952256,513147,134348 -k1,11285:9999324,11617593:241828 -k1,11285:10892579,11617593:241827 -k1,11285:12153492,11617593:241828 -k1,11285:13678515,11617593:241828 -k1,11285:15649183,11617593:241828 -k1,11285:20129223,11617593:241827 -k1,11285:21141754,11617593:241828 -k1,11285:26038604,11617593:241828 -k1,11285:26939724,11617593:241828 -k1,11285:28511932,11617593:241827 -k1,11285:30986572,11617593:241828 -k1,11285:32583029,11617593:0 -) -(1,11286:6630773,12459081:25952256,513147,126483 -k1,11285:7363728,12459081:201458 -k1,11285:10774483,12459081:201457 -k1,11285:12442637,12459081:201458 -k1,11285:13110055,12459081:201457 -k1,11285:14687114,12459081:201458 -k1,11285:16242546,12459081:201458 -k1,11285:20329633,12459081:201457 -k1,11285:20886951,12459081:201458 -k1,11285:22469252,12459081:201457 -k1,11285:23803172,12459081:201458 -k1,11285:25965467,12459081:201458 -k1,11285:26522784,12459081:201457 -k1,11285:28007437,12459081:201458 -k1,11285:30663217,12459081:201457 -k1,11285:31812326,12459081:201458 -k1,11285:32583029,12459081:0 -) -(1,11286:6630773,13300569:25952256,505283,134348 -g1,11285:9321025,13300569 -g1,11285:11075423,13300569 -g1,11285:13284641,13300569 -g1,11285:13839730,13300569 -k1,11286:32583029,13300569:16738553 -g1,11286:32583029,13300569 -) -(1,11288:6630773,14142057:25952256,513147,134348 -h1,11287:6630773,14142057:983040,0,0 -k1,11287:10201320,14142057:232798 -k1,11287:11425678,14142057:232798 -k1,11287:15751200,14142057:232799 -k1,11287:17056167,14142057:232798 -k1,11287:21208018,14142057:232798 -k1,11287:24753006,14142057:232798 -k1,11287:26004890,14142057:232799 -k1,11287:28395133,14142057:232798 -k1,11287:31923737,14142057:232798 -k1,11287:32583029,14142057:0 -) -(1,11288:6630773,14983545:25952256,513147,134348 -k1,11287:9149372,14983545:201901 -k1,11287:10034158,14983545:201901 -k1,11287:12459040,14983545:201901 -k1,11287:13320234,14983545:201902 -k1,11287:15724145,14983545:201901 -k1,11287:18389544,14983545:201901 -k1,11287:19219280,14983545:201901 -k1,11287:20624422,14983545:201901 -k1,11287:22770121,14983545:201901 -k1,11287:25204835,14983545:201902 -k1,11287:26398296,14983545:201901 -k1,11287:30519250,14983545:201901 -k1,11287:31380443,14983545:201901 -k1,11288:32583029,14983545:0 -) -(1,11288:6630773,15825033:25952256,505283,134348 -k1,11287:8552803,15825033:178117 -k1,11287:10111109,15825033:178118 -k1,11287:11280786,15825033:178117 -k1,11287:12605128,15825033:178117 -k1,11287:15352912,15825033:178117 -k1,11287:16147068,15825033:178118 -k1,11287:18616979,15825033:178117 -k1,11287:21811063,15825033:178117 -k1,11287:23622994,15825033:178118 -k1,11287:24669463,15825033:178117 -k1,11287:26871332,15825033:178117 -k1,11287:28443400,15825033:178117 -k1,11287:30854330,15825033:178118 -k1,11287:31563944,15825033:178117 -k1,11287:32583029,15825033:0 -) -(1,11288:6630773,16666521:25952256,513147,134348 -k1,11287:10073380,16666521:139592 -k1,11287:10872263,16666521:139591 -k1,11287:13615600,16666521:139592 -k1,11287:16426439,16666521:139592 -k1,11287:19230069,16666521:139591 -k1,11287:20028953,16666521:139592 -k1,11287:23194341,16666521:139591 -k1,11287:24223912,16666521:139592 -k1,11287:27251676,16666521:139592 -k1,11287:29770879,16666521:139591 -k1,11287:30929556,16666521:139592 -k1,11287:32583029,16666521:0 -) -(1,11288:6630773,17508009:25952256,513147,134348 -k1,11287:8550373,17508009:181585 -k1,11287:9804127,17508009:181585 -k1,11287:12455764,17508009:181585 -k1,11287:13288777,17508009:181585 -k1,11287:15881432,17508009:181585 -k1,11287:16872387,17508009:181585 -k1,11287:19343799,17508009:181584 -k1,11287:22652107,17508009:181585 -k1,11287:23485120,17508009:181585 -k1,11287:26429048,17508009:181585 -k1,11287:29017115,17508009:181585 -k1,11287:30152249,17508009:181585 -k1,11287:31809049,17508009:181585 -k1,11288:32583029,17508009:0 -) -(1,11288:6630773,18349497:25952256,513147,134348 -k1,11287:8620249,18349497:216072 -k1,11287:10346271,18349497:216072 -k1,11287:12297736,18349497:216072 -k1,11287:15298433,18349497:216072 -k1,11287:16908456,18349497:216072 -k1,11287:19795775,18349497:216072 -k1,11287:24587571,18349497:216072 -k1,11287:28428439,18349497:216072 -k1,11287:29663596,18349497:216072 -k1,11287:31635378,18349497:216072 -k1,11287:32583029,18349497:0 -) -(1,11288:6630773,19190985:25952256,505283,126483 -g1,11287:9491419,19190985 -(1,11287:9491419,19190985:0,452978,115847 -r1,11318:11608244,19190985:2116825,568825,115847 -k1,11287:9491419,19190985:-2116825 -) -(1,11287:9491419,19190985:2116825,452978,115847 -k1,11287:9491419,19190985:3277 -h1,11287:11604967,19190985:0,411205,112570 -) -g1,11287:11807473,19190985 -g1,11287:13198147,19190985 -(1,11287:13198147,19190985:0,452978,115847 -r1,11318:16370107,19190985:3171960,568825,115847 -k1,11287:13198147,19190985:-3171960 -) -(1,11287:13198147,19190985:3171960,452978,115847 -k1,11287:13198147,19190985:3277 -h1,11287:16366830,19190985:0,411205,112570 -) -k1,11288:32583029,19190985:16039252 -g1,11288:32583029,19190985 -) -(1,11290:6630773,20032473:25952256,513147,134348 -h1,11289:6630773,20032473:983040,0,0 -g1,11289:8766591,20032473 -g1,11289:10454143,20032473 -g1,11289:12047323,20032473 -g1,11289:12602412,20032473 -g1,11289:15895596,20032473 -g1,11289:17662446,20032473 -g1,11289:18221468,20032473 -g1,11289:20454934,20032473 -g1,11289:22708717,20032473 -g1,11289:24675452,20032473 -g1,11289:26372834,20032473 -k1,11290:32583029,20032473:5032513 -g1,11290:32583029,20032473 -) -(1,11296:7202902,21188533:24807998,513147,134348 -(1,11290:7202902,21188533:983040,0,0 -g1,11290:8185942,21188533 -g1,11290:6875222,21188533 -g1,11290:6547542,21188533 -(1,11290:6547542,21188533:1310720,0,0 -k1,11290:7858262,21188533:1310720 -) -g1,11290:8185942,21188533 -) -k1,11291:9703458,21188533:320829 -k1,11291:11349424,21188533:320828 -k1,11291:12329545,21188533:320829 -k1,11291:17494139,21188533:320828 -k1,11291:22167214,21188533:320829 -k1,11291:23019539,21188533:320828 -k1,11291:25638716,21188533:320829 -k1,11291:27031713,21188533:320828 -k1,11291:29497535,21188533:320829 -k1,11291:30174224,21188533:320829 -k1,11291:31351608,21188533:320828 -k1,11291:32010900,21188533:0 -) -(1,11296:7202902,22030021:24807998,513147,134348 -k1,11291:9691819,22030021:199744 -k1,11292:11883858,22030021:199745 -k1,11292:13102687,22030021:199744 -k1,11292:15185281,22030021:199745 -k1,11292:17220688,22030021:199744 -k1,11292:17886394,22030021:199745 -k1,11292:19256611,22030021:199744 -k1,11292:20733652,22030021:199744 -k1,11292:21289257,22030021:199745 -k1,11292:23381681,22030021:199744 -k1,11292:24240718,22030021:199745 -k1,11292:26576280,22030021:199744 -k1,11292:28793223,22030021:199745 -k1,11292:29940618,22030021:199744 -k1,11292:32010900,22030021:0 -) -(1,11296:7202902,22871509:24807998,513147,126483 -k1,11292:8820931,22871509:184101 -k1,11293:10175506,22871509:184102 -k1,11293:12315857,22871509:184101 -k1,11293:14570897,22871509:184102 -k1,11293:16206620,22871509:184101 -k1,11293:17042149,22871509:184101 -k1,11293:18318736,22871509:184102 -k1,11293:19312207,22871509:184101 -k1,11293:21778928,22871509:184102 -k1,11293:25713654,22871509:184101 -k1,11293:26845407,22871509:184102 -k1,11293:28314014,22871509:184101 -k1,11293:32010900,22871509:0 -) -(1,11296:7202902,23712997:24807998,513147,134348 -k1,11293:8549835,23712997:151556 -k1,11294:11407372,23712997:151555 -k1,11294:12017025,23712997:151556 -k1,11294:12700078,23712997:151556 -k1,11294:15481593,23712997:151555 -k1,11294:16580800,23712997:151556 -k1,11294:17946690,23712997:151508 -k1,11294:20388074,23712997:151556 -k1,11294:21191058,23712997:151556 -k1,11294:22321067,23712997:151556 -k1,11294:24957747,23712997:151555 -k1,11294:29426160,23712997:151556 -k1,11296:32010900,23712997:0 -) -(1,11296:7202902,24554485:24807998,513147,134348 -g1,11294:8392380,24554485 -g1,11294:9400979,24554485 -g1,11295:11148824,24554485 -g1,11295:12903222,24554485 -g1,11295:13761743,24554485 -g1,11295:15920498,24554485 -g1,11295:17499915,24554485 -k1,11296:32010900,24554485:13345755 -g1,11296:32010900,24554485 -) -(1,11299:6630773,25710545:25952256,513147,134348 -h1,11298:6630773,25710545:983040,0,0 -k1,11298:8729639,25710545:162277 -k1,11298:9939181,25710545:162277 -k1,11298:11385964,25710545:162277 -k1,11298:13945548,25710545:162277 -k1,11298:16892450,25710545:162277 -k1,11298:18046287,25710545:162277 -k1,11298:21620369,25710545:162278 -k1,11298:23637315,25710545:162277 -k1,11298:24608962,25710545:162277 -k1,11298:25790324,25710545:162277 -k1,11298:27507770,25710545:162277 -k1,11298:28329339,25710545:162277 -k1,11298:29510701,25710545:162277 -k1,11298:32583029,25710545:0 -) -(1,11299:6630773,26552033:25952256,513147,134348 -k1,11298:9271975,26552033:262245 -k1,11298:11088734,26552033:262245 -k1,11298:14031402,26552033:262245 -k1,11298:15687597,26552033:262244 -k1,11298:16968927,26552033:262245 -k1,11298:18902995,26552033:262245 -k1,11298:20551326,26552033:262245 -k1,11298:22965773,26552033:262245 -k1,11298:23895174,26552033:262245 -k1,11298:24745932,26552033:262245 -k1,11298:27020131,26552033:262244 -k1,11298:29540091,26552033:262245 -k1,11298:31298523,26552033:262245 -k1,11298:32583029,26552033:0 -) -(1,11299:6630773,27393521:25952256,513147,134348 -k1,11298:9925804,27393521:269234 -k1,11298:10881199,27393521:269233 -k1,11298:13989453,27393521:269234 -k1,11298:15068057,27393521:269234 -k1,11298:18099633,27393521:269233 -k1,11298:20085255,27393521:269234 -k1,11298:21013780,27393521:269233 -k1,11298:23746512,27393521:269234 -k1,11298:25258309,27393521:269234 -k1,11298:28502221,27393521:269233 -k1,11298:29962900,27393521:269234 -k1,11298:32583029,27393521:0 -) -(1,11299:6630773,28235009:25952256,426639,7863 -k1,11299:32583029,28235009:23470408 -g1,11299:32583029,28235009 -) -(1,11301:6630773,29076497:25952256,513147,134348 -h1,11300:6630773,29076497:983040,0,0 -k1,11300:8288183,29076497:259527 -k1,11300:9648775,29076497:259587 -k1,11300:11492368,29076497:259588 -k1,11300:14278368,29076497:259587 -k1,11300:15485607,29076497:259588 -k1,11300:16764279,29076497:259587 -k1,11300:21867633,29076497:259588 -k1,11300:26479466,29076497:259587 -k1,11300:29949663,29076497:259588 -k1,11300:31281420,29076497:259588 -k1,11300:32227169,29076497:259587 -k1,11300:32583029,29076497:0 -) -(1,11301:6630773,29917985:25952256,505283,126483 -k1,11300:9052986,29917985:176294 -k1,11300:10513786,29917985:176294 -k1,11300:11791084,29917985:176293 -k1,11300:14396798,29917985:176294 -k1,11300:15960489,29917985:176294 -k1,11300:17155868,29917985:176294 -k1,11300:19188797,29917985:176294 -k1,11300:22275544,29917985:176293 -k1,11300:22866658,29917985:176271 -k1,11300:25899666,29917985:176294 -k1,11300:28747207,29917985:176294 -k1,11300:32583029,29917985:0 -) -(1,11301:6630773,30759473:25952256,513147,126483 -k1,11300:8036052,30759473:208592 -k1,11300:9443297,30759473:208591 -k1,11300:11253589,30759473:208592 -k1,11300:13962379,30759473:208591 -k1,11300:17155481,30759473:208592 -k1,11300:17895569,30759473:208591 -k1,11300:19971937,30759473:208592 -k1,11300:21107863,30759473:208592 -k1,11300:22507899,30759473:208591 -k1,11300:23072351,30759473:208592 -k1,11300:24931139,30759473:208591 -k1,11300:27128093,30759473:208592 -k1,11300:28528129,30759473:208591 -k1,11300:31593435,30759473:208592 -k1,11301:32583029,30759473:0 -) -(1,11301:6630773,31600961:25952256,513147,134348 -k1,11300:9198286,31600961:185935 -k1,11300:10778172,31600961:185935 -k1,11300:13050773,31600961:185935 -k1,11300:17486062,31600961:185935 -k1,11300:18203494,31600961:185935 -k1,11300:20257205,31600961:185935 -k1,11300:21370474,31600961:185935 -k1,11300:22753096,31600961:185935 -k1,11300:25272113,31600961:185935 -k1,11300:26783186,31600961:185935 -k1,11300:27500618,31600961:185935 -k1,11300:28971059,31600961:185935 -k1,11300:29512854,31600961:185935 -k1,11300:31436804,31600961:185935 -k1,11300:32583029,31600961:0 -) -(1,11301:6630773,32442449:25952256,513147,134348 -k1,11300:8679777,32442449:171398 -k1,11300:9955456,32442449:171397 -k1,11300:10874620,32442449:171398 -k1,11300:12559244,32442449:171398 -k1,11300:13416803,32442449:171397 -k1,11300:13944061,32442449:171398 -k1,11300:16422326,32442449:171398 -k1,11300:18505408,32442449:171397 -k1,11300:19868251,32442449:171398 -k1,11300:21324155,32442449:171398 -k1,11300:22514637,32442449:171397 -k1,11300:25083342,32442449:171398 -k1,11300:27588477,32442449:171398 -k1,11300:28427030,32442449:171397 -(1,11300:28427030,32442449:0,452978,115847 -r1,11318:30543855,32442449:2116825,568825,115847 -k1,11300:28427030,32442449:-2116825 -) -(1,11300:28427030,32442449:2116825,452978,115847 -k1,11300:28427030,32442449:3277 -h1,11300:30540578,32442449:0,411205,112570 -) -k1,11300:30715253,32442449:171398 -k1,11300:32583029,32442449:0 -) -(1,11301:6630773,33283937:25952256,513147,134348 -k1,11300:9566130,33283937:233308 -k1,11300:10608808,33283937:233308 -k1,11300:11861201,33283937:233308 -k1,11300:15497138,33283937:233308 -k1,11300:16389738,33283937:233308 -k1,11300:17642131,33283937:233308 -k1,11300:19148805,33283937:233309 -k1,11300:21173867,33283937:233308 -k1,11300:24837985,33283937:233308 -k1,11300:26914165,33283937:233308 -k1,11300:28015825,33283937:233308 -k1,11300:30017950,33283937:233308 -k1,11300:31298523,33283937:233308 -k1,11300:32583029,33283937:0 -) -(1,11301:6630773,34125425:25952256,513147,134348 -k1,11300:7875792,34125425:225934 -k1,11300:10439396,34125425:225934 -k1,11300:11332487,34125425:225935 -(1,11300:11332487,34125425:0,452978,115847 -r1,11318:13449312,34125425:2116825,568825,115847 -k1,11300:11332487,34125425:-2116825 -) -(1,11300:11332487,34125425:2116825,452978,115847 -k1,11300:11332487,34125425:3277 -h1,11300:13446035,34125425:0,411205,112570 -) -k1,11300:13675246,34125425:225934 -k1,11300:17312984,34125425:225934 -k1,11300:18558003,34125425:225934 -k1,11300:21219255,34125425:225934 -k1,11300:22544883,34125425:225934 -k1,11300:23422246,34125425:225935 -k1,11300:26410523,34125425:225934 -k1,11300:29033764,34125425:225934 -k1,11300:31923737,34125425:225934 -k1,11301:32583029,34125425:0 -) -(1,11301:6630773,34966913:25952256,513147,134348 -(1,11300:6630773,34966913:0,452978,115847 -r1,11318:8747598,34966913:2116825,568825,115847 -k1,11300:6630773,34966913:-2116825 -) -(1,11300:6630773,34966913:2116825,452978,115847 -k1,11300:6630773,34966913:3277 -h1,11300:8744321,34966913:0,411205,112570 -) -k1,11300:8926183,34966913:178585 -k1,11300:10959436,34966913:178584 -k1,11300:11947391,34966913:178585 -k1,11300:13145060,34966913:178584 -k1,11300:14878814,34966913:178585 -k1,11300:15716690,34966913:178584 -k1,11300:16914360,34966913:178585 -k1,11300:20495574,34966913:178585 -k1,11300:23053115,34966913:178584 -k1,11300:23985364,34966913:178585 -k1,11300:26470815,34966913:178584 -k1,11300:29675197,34966913:178585 -k1,11300:32583029,34966913:0 -) -(1,11301:6630773,35808401:25952256,513147,134348 -k1,11300:7681163,35808401:288862 -k1,11300:10409276,35808401:288863 -k1,11300:12552807,35808401:288862 -k1,11300:14217270,35808401:288862 -k1,11300:15315503,35808401:288863 -k1,11300:16623450,35808401:288862 -k1,11300:19984640,35808401:288862 -k1,11300:22478789,35808401:288862 -k1,11300:23419080,35808401:288863 -k1,11300:24063802,35808401:288862 -k1,11300:26225683,35808401:288862 -k1,11300:29968949,35808401:288863 -k1,11300:31276896,35808401:288862 -k1,11300:32583029,35808401:0 -) -(1,11301:6630773,36649889:25952256,513147,134348 -k1,11300:8235094,36649889:273940 -k1,11300:9262699,36649889:273941 -k1,11300:11843506,36649889:273940 -k1,11300:15143243,36649889:273940 -k1,11300:16521466,36649889:273941 -k1,11300:19529568,36649889:273940 -k1,11300:20822593,36649889:273940 -k1,11300:22196228,36649889:273941 -k1,11300:24324837,36649889:273940 -k1,11300:25408147,36649889:273940 -k1,11300:26701173,36649889:273941 -k1,11300:30377742,36649889:273940 -k1,11300:32583029,36649889:0 -) -(1,11301:6630773,37491377:25952256,513147,134348 -k1,11300:7539801,37491377:257600 -k1,11300:9447598,37491377:257600 -k1,11300:11147646,37491377:257601 -k1,11300:12561956,37491377:257600 -k1,11300:16100288,37491377:257600 -k1,11300:17549333,37491377:257600 -k1,11300:18826018,37491377:257600 -k1,11300:22015044,37491377:257601 -k1,11300:22931936,37491377:257600 -k1,11300:24208621,37491377:257600 -k1,11300:26756049,37491377:257600 -k1,11300:27672941,37491377:257600 -k1,11300:28286402,37491377:257601 -k1,11300:30238763,37491377:257600 -k1,11300:32051532,37491377:257600 -k1,11300:32583029,37491377:0 -) -(1,11301:6630773,38332865:25952256,513147,134348 -k1,11300:8974542,38332865:205985 -k1,11300:9831954,38332865:205984 -k1,11300:11057024,38332865:205985 -k1,11300:14894358,38332865:205984 -k1,11300:15728178,38332865:205985 -k1,11300:16687827,38332865:205985 -k1,11300:20093279,38332865:205984 -k1,11300:21318349,38332865:205985 -k1,11300:26263242,38332865:205985 -k1,11300:27128518,38332865:205984 -k1,11300:27690363,38332865:205985 -k1,11300:30203214,38332865:205984 -k1,11300:31400759,38332865:205985 -k1,11301:32583029,38332865:0 -) -(1,11301:6630773,39174353:25952256,513147,134348 -k1,11300:12788183,39174353:238198 -k1,11300:14401982,39174353:238198 -k1,11300:15401709,39174353:238199 -k1,11300:17148546,39174353:238198 -k1,11300:19298429,39174353:238198 -k1,11300:20859799,39174353:238198 -k1,11300:22117083,39174353:238199 -k1,11300:23910450,39174353:238198 -k1,11300:24807940,39174353:238198 -k1,11300:25816841,39174353:238198 -k1,11300:28014566,39174353:238199 -k1,11300:29014292,39174353:238198 -k1,11300:29608350,39174353:238198 -k1,11300:32583029,39174353:0 -) -(1,11301:6630773,40015841:25952256,505283,134348 -g1,11300:8695812,40015841 -g1,11300:10933211,40015841 -g1,11300:11818602,40015841 -g1,11300:12788534,40015841 -g1,11300:15766490,40015841 -g1,11300:16617147,40015841 -g1,11300:17835461,40015841 -k1,11301:32583029,40015841:12614371 -g1,11301:32583029,40015841 -) -(1,11303:6630773,40857329:25952256,513147,126483 -h1,11302:6630773,40857329:983040,0,0 -k1,11302:8833539,40857329:266177 -k1,11302:10405849,40857329:266177 -k1,11302:13040497,40857329:266177 -k1,11302:14463384,40857329:266177 -k1,11302:15388853,40857329:266177 -k1,11302:16674115,40857329:266177 -k1,11302:19724918,40857329:266178 -k1,11302:22325487,40857329:266177 -k1,11302:25375633,40857329:266177 -k1,11302:26257848,40857329:266177 -k1,11302:27112538,40857329:266177 -k1,11302:28575402,40857329:266177 -k1,11302:31923737,40857329:266177 -k1,11303:32583029,40857329:0 -) -(1,11303:6630773,41698817:25952256,513147,134348 -(1,11302:6630773,41698817:0,414482,115847 -r1,11318:8044174,41698817:1413401,530329,115847 -k1,11302:6630773,41698817:-1413401 -) -(1,11302:6630773,41698817:1413401,414482,115847 -k1,11302:6630773,41698817:3277 -h1,11302:8040897,41698817:0,411205,112570 -) -g1,11302:8243403,41698817 -g1,11302:10433616,41698817 -g1,11302:11917351,41698817 -g1,11302:12574677,41698817 -g1,11302:13305403,41698817 -g1,11302:14523717,41698817 -g1,11302:17029813,41698817 -g1,11302:18176693,41698817 -g1,11302:18731782,41698817 -k1,11303:32583029,41698817:11223253 -g1,11303:32583029,41698817 -) -v1,11305:6630773,42679567:0,393216,0 -(1,11315:6630773,45510161:25952256,3223810,196608 -g1,11315:6630773,45510161 -g1,11315:6630773,45510161 -g1,11315:6434165,45510161 -(1,11315:6434165,45510161:0,3223810,196608 -r1,11318:32779637,45510161:26345472,3420418,196608 -k1,11315:6434165,45510161:-26345472 -) -(1,11315:6434165,45510161:26345472,3223810,196608 -[1,11315:6630773,45510161:25952256,3027202,0 -(1,11307:6630773,42767123:25952256,284164,6290 -(1,11306:6630773,42767123:0,0,0 -g1,11306:6630773,42767123 -g1,11306:6630773,42767123 -g1,11306:6303093,42767123 -(1,11306:6303093,42767123:0,0,0 -) -g1,11306:6630773,42767123 -) -h1,11307:7895356,42767123:0,0,0 -k1,11307:32583028,42767123:24687672 -g1,11307:32583028,42767123 -) -(1,11314:6630773,43410440:25952256,410518,82312 -(1,11309:6630773,43410440:0,0,0 -g1,11309:6630773,43410440 -g1,11309:6630773,43410440 -g1,11309:6303093,43410440 -(1,11309:6303093,43410440:0,0,0 -) -g1,11309:6630773,43410440 -) -g1,11314:7579210,43410440 -g1,11314:10424521,43410440 -g1,11314:11689104,43410440 -h1,11314:12953687,43410440:0,0,0 -k1,11314:32583029,43410440:19629342 -g1,11314:32583029,43410440 -) -(1,11314:6630773,44076618:25952256,404226,76021 -h1,11314:6630773,44076618:0,0,0 -g1,11314:7579210,44076618 -h1,11314:12953687,44076618:0,0,0 -k1,11314:32583029,44076618:19629342 -g1,11314:32583029,44076618 -) -(1,11314:6630773,44742796:25952256,404226,101187 -h1,11314:6630773,44742796:0,0,0 -g1,11314:7579210,44742796 -g1,11314:11056813,44742796 -k1,11314:11056813,44742796:0 -h1,11314:17063581,44742796:0,0,0 -k1,11314:32583029,44742796:15519448 -g1,11314:32583029,44742796 -) -(1,11314:6630773,45408974:25952256,404226,101187 -h1,11314:6630773,45408974:0,0,0 -g1,11314:7579210,45408974 -g1,11314:12005250,45408974 -k1,11314:12005250,45408974:0 -h1,11314:16747436,45408974:0,0,0 -k1,11314:32583029,45408974:15835593 -g1,11314:32583029,45408974 -) -] -) -g1,11315:32583029,45510161 -g1,11315:6630773,45510161 -g1,11315:6630773,45510161 -g1,11315:32583029,45510161 -g1,11315:32583029,45510161 -) -h1,11315:6630773,45706769:0,0,0 -] -(1,11318:32583029,45706769:0,0,0 -g1,11318:32583029,45706769 -) -) -] -(1,11318:6630773,47279633:25952256,0,0 -h1,11318:6630773,47279633:25952256,0,0 -) -] -(1,11318:4262630,4025873:0,0,0 -[1,11318:-473656,4025873:0,0,0 -(1,11318:-473656,-710413:0,0,0 -(1,11318:-473656,-710413:0,0,0 -g1,11318:-473656,-710413 -) -g1,11318:-473656,-710413 -) -] +] ) ] -!26081 -}190 -Input:1679:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1680:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1681:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1682:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1683:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1684:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1685:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1686:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!764 -{191 -[1,11519:4262630,47279633:28320399,43253760,0 -(1,11519:4262630,4025873:0,0,0 -[1,11519:-473656,4025873:0,0,0 -(1,11519:-473656,-710413:0,0,0 -(1,11519:-473656,-644877:0,0,0 -k1,11519:-473656,-644877:-65536 +!33198 +}168 +Input:1604:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1605:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1606:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1607:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1608:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1609:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1610:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!670 +{169 +[1,10682:4262630,47279633:28320399,43253760,0 +(1,10682:4262630,4025873:0,0,0 +[1,10682:-473656,4025873:0,0,0 +(1,10682:-473656,-710413:0,0,0 +(1,10682:-473656,-644877:0,0,0 +k1,10682:-473656,-644877:-65536 ) -(1,11519:-473656,4736287:0,0,0 -k1,11519:-473656,4736287:5209943 +(1,10682:-473656,4736287:0,0,0 +k1,10682:-473656,4736287:5209943 ) -g1,11519:-473656,-710413 +g1,10682:-473656,-710413 ) ] ) -[1,11519:6630773,47279633:25952256,43253760,0 -[1,11519:6630773,4812305:25952256,786432,0 -(1,11519:6630773,4812305:25952256,505283,134348 -(1,11519:6630773,4812305:25952256,505283,134348 -g1,11519:3078558,4812305 -[1,11519:3078558,4812305:0,0,0 -(1,11519:3078558,2439708:0,1703936,0 -k1,11519:1358238,2439708:-1720320 -(1,10825:1358238,2439708:1720320,1703936,0 -(1,10825:1358238,2439708:1179648,16384,0 -r1,11519:2537886,2439708:1179648,16384,0 +[1,10682:6630773,47279633:25952256,43253760,0 +[1,10682:6630773,4812305:25952256,786432,0 +(1,10682:6630773,4812305:25952256,505283,134348 +(1,10682:6630773,4812305:25952256,505283,134348 +g1,10682:3078558,4812305 +[1,10682:3078558,4812305:0,0,0 +(1,10682:3078558,2439708:0,1703936,0 +k1,10682:1358238,2439708:-1720320 +(1,8606:1358238,2439708:1720320,1703936,0 +(1,8606:1358238,2439708:1179648,16384,0 +r1,10682:2537886,2439708:1179648,16384,0 ) -g1,10825:3062174,2439708 -(1,10825:3062174,2439708:16384,1703936,0 -[1,10825:3062174,2439708:25952256,1703936,0 -(1,10825:3062174,1915420:25952256,1179648,0 -(1,10825:3062174,1915420:16384,1179648,0 -r1,11519:3078558,1915420:16384,1179648,0 +g1,8606:3062174,2439708 +(1,8606:3062174,2439708:16384,1703936,0 +[1,8606:3062174,2439708:25952256,1703936,0 +(1,8606:3062174,1915420:25952256,1179648,0 +(1,8606:3062174,1915420:16384,1179648,0 +r1,10682:3078558,1915420:16384,1179648,0 ) -k1,10825:29014430,1915420:25935872 -g1,10825:29014430,1915420 +k1,8606:29014430,1915420:25935872 +g1,8606:29014430,1915420 ) ] ) ) ) ] -[1,11519:3078558,4812305:0,0,0 -(1,11519:3078558,2439708:0,1703936,0 -g1,11519:29030814,2439708 -g1,11519:36135244,2439708 -(1,10825:36135244,2439708:1720320,1703936,0 -(1,10825:36135244,2439708:16384,1703936,0 -[1,10825:36135244,2439708:25952256,1703936,0 -(1,10825:36135244,1915420:25952256,1179648,0 -(1,10825:36135244,1915420:16384,1179648,0 -r1,11519:36151628,1915420:16384,1179648,0 +[1,10682:3078558,4812305:0,0,0 +(1,10682:3078558,2439708:0,1703936,0 +g1,10682:29030814,2439708 +g1,10682:36135244,2439708 +(1,8606:36135244,2439708:1720320,1703936,0 +(1,8606:36135244,2439708:16384,1703936,0 +[1,8606:36135244,2439708:25952256,1703936,0 +(1,8606:36135244,1915420:25952256,1179648,0 +(1,8606:36135244,1915420:16384,1179648,0 +r1,10682:36151628,1915420:16384,1179648,0 ) -k1,10825:62087500,1915420:25935872 -g1,10825:62087500,1915420 +k1,8606:62087500,1915420:25935872 +g1,8606:62087500,1915420 ) ] ) -g1,10825:36675916,2439708 -(1,10825:36675916,2439708:1179648,16384,0 -r1,11519:37855564,2439708:1179648,16384,0 +g1,8606:36675916,2439708 +(1,8606:36675916,2439708:1179648,16384,0 +r1,10682:37855564,2439708:1179648,16384,0 ) ) -k1,11519:3078556,2439708:-34777008 +k1,10682:3078556,2439708:-34777008 ) ] -[1,11519:3078558,4812305:0,0,0 -(1,11519:3078558,49800853:0,16384,2228224 -k1,11519:1358238,49800853:-1720320 -(1,10825:1358238,49800853:1720320,16384,2228224 -(1,10825:1358238,49800853:1179648,16384,0 -r1,11519:2537886,49800853:1179648,16384,0 +[1,10682:3078558,4812305:0,0,0 +(1,10682:3078558,49800853:0,16384,2228224 +k1,10682:1358238,49800853:-1720320 +(1,8606:1358238,49800853:1720320,16384,2228224 +(1,8606:1358238,49800853:1179648,16384,0 +r1,10682:2537886,49800853:1179648,16384,0 ) -g1,10825:3062174,49800853 -(1,10825:3062174,52029077:16384,1703936,0 -[1,10825:3062174,52029077:25952256,1703936,0 -(1,10825:3062174,51504789:25952256,1179648,0 -(1,10825:3062174,51504789:16384,1179648,0 -r1,11519:3078558,51504789:16384,1179648,0 +g1,8606:3062174,49800853 +(1,8606:3062174,52029077:16384,1703936,0 +[1,8606:3062174,52029077:25952256,1703936,0 +(1,8606:3062174,51504789:25952256,1179648,0 +(1,8606:3062174,51504789:16384,1179648,0 +r1,10682:3078558,51504789:16384,1179648,0 ) -k1,10825:29014430,51504789:25935872 -g1,10825:29014430,51504789 +k1,8606:29014430,51504789:25935872 +g1,8606:29014430,51504789 ) ] ) ) ) ] -[1,11519:3078558,4812305:0,0,0 -(1,11519:3078558,49800853:0,16384,2228224 -g1,11519:29030814,49800853 -g1,11519:36135244,49800853 -(1,10825:36135244,49800853:1720320,16384,2228224 -(1,10825:36135244,52029077:16384,1703936,0 -[1,10825:36135244,52029077:25952256,1703936,0 -(1,10825:36135244,51504789:25952256,1179648,0 -(1,10825:36135244,51504789:16384,1179648,0 -r1,11519:36151628,51504789:16384,1179648,0 +[1,10682:3078558,4812305:0,0,0 +(1,10682:3078558,49800853:0,16384,2228224 +g1,10682:29030814,49800853 +g1,10682:36135244,49800853 +(1,8606:36135244,49800853:1720320,16384,2228224 +(1,8606:36135244,52029077:16384,1703936,0 +[1,8606:36135244,52029077:25952256,1703936,0 +(1,8606:36135244,51504789:25952256,1179648,0 +(1,8606:36135244,51504789:16384,1179648,0 +r1,10682:36151628,51504789:16384,1179648,0 ) -k1,10825:62087500,51504789:25935872 -g1,10825:62087500,51504789 +k1,8606:62087500,51504789:25935872 +g1,8606:62087500,51504789 ) ] ) -g1,10825:36675916,49800853 -(1,10825:36675916,49800853:1179648,16384,0 -r1,11519:37855564,49800853:1179648,16384,0 +g1,8606:36675916,49800853 +(1,8606:36675916,49800853:1179648,16384,0 +r1,10682:37855564,49800853:1179648,16384,0 ) ) -k1,11519:3078556,49800853:-34777008 +k1,10682:3078556,49800853:-34777008 ) -] -g1,11519:6630773,4812305 -k1,11519:23552825,4812305:15726675 -g1,11519:25175496,4812305 -g1,11519:25997972,4812305 -g1,11519:28481131,4812305 -g1,11519:30046786,4812305 -) -) -] -[1,11519:6630773,45706769:25952256,40108032,0 -(1,11519:6630773,45706769:25952256,40108032,0 -(1,11519:6630773,45706769:0,0,0 -g1,11519:6630773,45706769 -) -[1,11519:6630773,45706769:25952256,40108032,0 -(1,11319:6630773,6254097:25952256,513147,126483 -h1,11318:6630773,6254097:983040,0,0 -k1,11318:8824536,6254097:257174 -k1,11318:10185992,6254097:257174 -k1,11318:11709322,6254097:257174 -k1,11318:13032767,6254097:257174 -k1,11318:15175412,6254097:257174 -k1,11318:20171494,6254097:257174 -k1,11318:21087961,6254097:257175 -k1,11318:23799458,6254097:257174 -k1,11318:25048192,6254097:257174 -k1,11318:28089335,6254097:257174 -k1,11318:28962547,6254097:257174 -k1,11318:30238806,6254097:257174 -k1,11318:32583029,6254097:0 -) -(1,11319:6630773,7095585:25952256,505283,134348 -g1,11318:8900284,7095585 -g1,11318:10547859,7095585 -g1,11318:12482481,7095585 -(1,11318:12482481,7095585:0,452978,115847 -r1,11519:15654441,7095585:3171960,568825,115847 -k1,11318:12482481,7095585:-3171960 -) -(1,11318:12482481,7095585:3171960,452978,115847 -k1,11318:12482481,7095585:3277 -h1,11318:15651164,7095585:0,411205,112570 -) -k1,11319:32583029,7095585:16754918 -g1,11319:32583029,7095585 -) -v1,11321:6630773,8286051:0,393216,0 -(1,11330:6630773,10599681:25952256,2706846,196608 -g1,11330:6630773,10599681 -g1,11330:6630773,10599681 -g1,11330:6434165,10599681 -(1,11330:6434165,10599681:0,2706846,196608 -r1,11519:32779637,10599681:26345472,2903454,196608 -k1,11330:6434165,10599681:-26345472 -) -(1,11330:6434165,10599681:26345472,2706846,196608 -[1,11330:6630773,10599681:25952256,2510238,0 -(1,11323:6630773,8493669:25952256,404226,76021 -(1,11322:6630773,8493669:0,0,0 -g1,11322:6630773,8493669 -g1,11322:6630773,8493669 -g1,11322:6303093,8493669 -(1,11322:6303093,8493669:0,0,0 -) -g1,11322:6630773,8493669 -) -k1,11323:6630773,8493669:0 -h1,11323:10740667,8493669:0,0,0 -k1,11323:32583029,8493669:21842362 -g1,11323:32583029,8493669 -) -(1,11329:6630773,9159847:25952256,410518,76021 -(1,11325:6630773,9159847:0,0,0 -g1,11325:6630773,9159847 -g1,11325:6630773,9159847 -g1,11325:6303093,9159847 -(1,11325:6303093,9159847:0,0,0 -) -g1,11325:6630773,9159847 -) -g1,11329:7579210,9159847 -g1,11329:8843793,9159847 -g1,11329:12005250,9159847 -g1,11329:12321396,9159847 -g1,11329:12637542,9159847 -g1,11329:12953688,9159847 -g1,11329:13269834,9159847 -g1,11329:17379728,9159847 -g1,11329:17695874,9159847 -g1,11329:22121914,9159847 -g1,11329:26231808,9159847 -g1,11329:26547954,9159847 -h1,11329:30341702,9159847:0,0,0 -k1,11329:32583029,9159847:2241327 -g1,11329:32583029,9159847 -) -(1,11329:6630773,9826025:25952256,404226,101187 -h1,11329:6630773,9826025:0,0,0 -g1,11329:7579210,9826025 -g1,11329:8843793,9826025 -h1,11329:12953687,9826025:0,0,0 -k1,11329:32583029,9826025:19629342 -g1,11329:32583029,9826025 -) -(1,11329:6630773,10492203:25952256,410518,107478 -h1,11329:6630773,10492203:0,0,0 -g1,11329:7579210,10492203 -g1,11329:8843793,10492203 -g1,11329:12321396,10492203 -g1,11329:13585979,10492203 -g1,11329:16747436,10492203 -g1,11329:18328165,10492203 -g1,11329:19592748,10492203 -g1,11329:21805768,10492203 -h1,11329:23070351,10492203:0,0,0 -k1,11329:32583029,10492203:9512678 -g1,11329:32583029,10492203 -) -] -) -g1,11330:32583029,10599681 -g1,11330:6630773,10599681 -g1,11330:6630773,10599681 -g1,11330:32583029,10599681 -g1,11330:32583029,10599681 -) -h1,11330:6630773,10796289:0,0,0 -(1,11334:6630773,12162065:25952256,513147,134348 -h1,11333:6630773,12162065:983040,0,0 -k1,11333:8799775,12162065:232413 -k1,11333:10136470,12162065:232413 -k1,11333:11654698,12162065:232412 -k1,11333:12979596,12162065:232413 -(1,11333:12979596,12162065:0,452978,115847 -r1,11519:16151556,12162065:3171960,568825,115847 -k1,11333:12979596,12162065:-3171960 -) -(1,11333:12979596,12162065:3171960,452978,115847 -k1,11333:12979596,12162065:3277 -h1,11333:16148279,12162065:0,411205,112570 -) -k1,11333:16383969,12162065:232413 -k1,11333:17267810,12162065:232413 -k1,11333:19316226,12162065:232413 -k1,11333:20314755,12162065:232413 -k1,11333:23505462,12162065:232412 -k1,11333:26718452,12162065:232413 -k1,11333:30201451,12162065:232413 -k1,11333:32583029,12162065:0 -) -(1,11334:6630773,13003553:25952256,513147,134348 -g1,11333:7777653,13003553 -g1,11333:10266710,13003553 -g1,11333:11125231,13003553 -g1,11333:11680320,13003553 -g1,11333:13574310,13003553 -k1,11334:32583030,13003553:17279880 -g1,11334:32583030,13003553 -) -v1,11336:6630773,14194019:0,393216,0 -(1,11345:6630773,16507649:25952256,2706846,196608 -g1,11345:6630773,16507649 -g1,11345:6630773,16507649 -g1,11345:6434165,16507649 -(1,11345:6434165,16507649:0,2706846,196608 -r1,11519:32779637,16507649:26345472,2903454,196608 -k1,11345:6434165,16507649:-26345472 -) -(1,11345:6434165,16507649:26345472,2706846,196608 -[1,11345:6630773,16507649:25952256,2510238,0 -(1,11338:6630773,14401637:25952256,404226,76021 -(1,11337:6630773,14401637:0,0,0 -g1,11337:6630773,14401637 -g1,11337:6630773,14401637 -g1,11337:6303093,14401637 -(1,11337:6303093,14401637:0,0,0 -) -g1,11337:6630773,14401637 -) -k1,11338:6630773,14401637:0 -g1,11338:11056813,14401637 -g1,11338:11689105,14401637 -h1,11338:13902125,14401637:0,0,0 -k1,11338:32583029,14401637:18680904 -g1,11338:32583029,14401637 -) -(1,11344:6630773,15067815:25952256,410518,101187 -(1,11340:6630773,15067815:0,0,0 -g1,11340:6630773,15067815 -g1,11340:6630773,15067815 -g1,11340:6303093,15067815 -(1,11340:6303093,15067815:0,0,0 -) -g1,11340:6630773,15067815 -) -g1,11344:7579210,15067815 -g1,11344:8843793,15067815 -g1,11344:12005250,15067815 -g1,11344:12321396,15067815 -g1,11344:12637542,15067815 -g1,11344:12953688,15067815 -g1,11344:13269834,15067815 -g1,11344:17695874,15067815 -g1,11344:19908894,15067815 -g1,11344:20225040,15067815 -g1,11344:20541186,15067815 -g1,11344:20857332,15067815 -g1,11344:21173478,15067815 -g1,11344:21489624,15067815 -g1,11344:21805770,15067815 -g1,11344:22121916,15067815 -g1,11344:23386499,15067815 -g1,11344:23702645,15067815 -g1,11344:24018791,15067815 -g1,11344:24334937,15067815 -g1,11344:24651083,15067815 -g1,11344:24967229,15067815 -g1,11344:25283375,15067815 -g1,11344:25599521,15067815 -g1,11344:25915667,15067815 -g1,11344:26231813,15067815 -g1,11344:26547959,15067815 -h1,11344:28444833,15067815:0,0,0 -k1,11344:32583029,15067815:4138196 -g1,11344:32583029,15067815 -) -(1,11344:6630773,15733993:25952256,404226,101187 -h1,11344:6630773,15733993:0,0,0 -g1,11344:7579210,15733993 -g1,11344:8843793,15733993 -g1,11344:10108376,15733993 -g1,11344:10424522,15733993 -g1,11344:10740668,15733993 -g1,11344:11056814,15733993 -g1,11344:11372960,15733993 -g1,11344:11689106,15733993 -g1,11344:12005252,15733993 -g1,11344:12321398,15733993 -g1,11344:12637544,15733993 -g1,11344:12953690,15733993 -g1,11344:13269836,15733993 -g1,11344:17379730,15733993 -g1,11344:17695876,15733993 -h1,11344:19592750,15733993:0,0,0 -k1,11344:32583029,15733993:12990279 -g1,11344:32583029,15733993 -) -(1,11344:6630773,16400171:25952256,410518,107478 -h1,11344:6630773,16400171:0,0,0 -g1,11344:7579210,16400171 -g1,11344:8843793,16400171 -g1,11344:12321396,16400171 -g1,11344:13585979,16400171 -g1,11344:16747436,16400171 -g1,11344:18328165,16400171 -g1,11344:19592748,16400171 -g1,11344:21805768,16400171 -h1,11344:23070351,16400171:0,0,0 -k1,11344:32583029,16400171:9512678 -g1,11344:32583029,16400171 -) -] -) -g1,11345:32583029,16507649 -g1,11345:6630773,16507649 -g1,11345:6630773,16507649 -g1,11345:32583029,16507649 -g1,11345:32583029,16507649 -) -h1,11345:6630773,16704257:0,0,0 -(1,11349:6630773,18070033:25952256,513147,11795 -h1,11348:6630773,18070033:983040,0,0 -k1,11348:8697888,18070033:330411 -k1,11348:10583467,18070033:330410 -k1,11348:14720864,18070033:330411 -k1,11348:15582772,18070033:330411 -k1,11348:17951352,18070033:330410 -k1,11348:18967925,18070033:330411 -k1,11348:19654196,18070033:330411 -k1,11348:22959285,18070033:330410 -k1,11348:25267573,18070033:330411 -k1,11348:26214022,18070033:330411 -k1,11348:27315135,18070033:330410 -k1,11348:30424273,18070033:330411 -k1,11349:32583029,18070033:0 -) -(1,11349:6630773,18911521:25952256,513147,134348 -(1,11348:6630773,18911521:0,452978,115847 -r1,11519:9099310,18911521:2468537,568825,115847 -k1,11348:6630773,18911521:-2468537 -) -(1,11348:6630773,18911521:2468537,452978,115847 -k1,11348:6630773,18911521:3277 -h1,11348:9096033,18911521:0,411205,112570 -) -k1,11348:9536973,18911521:263993 -k1,11348:10997652,18911521:263992 -k1,11348:12863345,18911521:263993 -k1,11348:14748699,18911521:263993 -k1,11348:17997201,18911521:263992 -k1,11348:18912622,18911521:263993 -k1,11348:21769219,18911521:263993 -k1,11348:22692503,18911521:263992 -k1,11348:23727199,18911521:263993 -k1,11348:25950718,18911521:263993 -k1,11348:26874002,18911521:263992 -k1,11348:27493855,18911521:263993 -k1,11348:29041043,18911521:263993 -k1,11348:30058699,18911521:263992 -k1,11348:32051532,18911521:263993 -k1,11348:32583029,18911521:0 -) -(1,11349:6630773,19753009:25952256,513147,134348 -k1,11348:7462425,19753009:180224 -k1,11348:8839992,19753009:180224 -k1,11348:10039301,19753009:180224 -k1,11348:11502720,19753009:180224 -k1,11348:13238113,19753009:180224 -k1,11348:15156352,19753009:180224 -k1,11348:15988004,19753009:180224 -k1,11348:17187312,19753009:180223 -k1,11348:18922705,19753009:180224 -k1,11348:21881656,19753009:180224 -k1,11348:22721172,19753009:180224 -k1,11348:23920481,19753009:180224 -k1,11348:26233902,19753009:180224 -k1,11348:27232015,19753009:180224 -k1,11348:28431324,19753009:180224 -k1,11348:31027860,19753009:180224 -k1,11348:32583029,19753009:0 -) -(1,11349:6630773,20594497:25952256,513147,134348 -k1,11348:9851025,20594497:214771 -k1,11348:10597292,20594497:214770 -k1,11348:12506824,20594497:214771 -k1,11348:13483123,20594497:214771 -k1,11348:14716979,20594497:214771 -k1,11348:16671075,20594497:214770 -k1,11348:17545138,20594497:214771 -k1,11348:18778994,20594497:214771 -k1,11348:21947472,20594497:214770 -k1,11348:22821535,20594497:214771 -k1,11348:24055391,20594497:214771 -k1,11348:27244841,20594497:214771 -k1,11348:29611158,20594497:214770 -k1,11348:30845014,20594497:214771 -k1,11348:32583029,20594497:0 -) -(1,11349:6630773,21435985:25952256,513147,134348 -k1,11348:7526363,21435985:236298 -k1,11348:8781746,21435985:236298 -k1,11348:10301239,21435985:236298 -k1,11348:12092707,21435985:236299 -k1,11348:13951021,21435985:236298 -k1,11348:14935085,21435985:236298 -k1,11348:17136808,21435985:236298 -k1,11348:17985868,21435985:236298 -k1,11348:19241251,21435985:236298 -k1,11348:21016334,21435985:236298 -k1,11348:21911924,21435985:236298 -k1,11348:23167308,21435985:236299 -k1,11348:25555153,21435985:236298 -k1,11348:27281740,21435985:236298 -k1,11348:29788205,21435985:236298 -k1,11348:31227744,21435985:236298 -k1,11348:32583029,21435985:0 -) -(1,11349:6630773,22277473:25952256,505283,126483 -k1,11348:7924407,22277473:189352 -k1,11348:8861525,22277473:189352 -k1,11348:10628329,22277473:189352 -k1,11348:11503844,22277473:189353 -k1,11348:13768721,22277473:189352 -k1,11348:15529626,22277473:189352 -k1,11348:16335016,22277473:189352 -k1,11348:19061922,22277473:189352 -k1,11348:20454515,22277473:189352 -k1,11348:21999152,22277473:189352 -k1,11348:24144755,22277473:189353 -k1,11348:27179025,22277473:189352 -k1,11348:28721040,22277473:189352 -k1,11348:30573040,22277473:189352 -k1,11348:32583029,22277473:0 -) -(1,11349:6630773,23118961:25952256,513147,134348 -k1,11348:7186619,23118961:199986 -k1,11348:11011400,23118961:199985 -k1,11348:13906882,23118961:199986 -k1,11348:15298312,23118961:199985 -k1,11348:16517383,23118961:199986 -k1,11348:18000563,23118961:199985 -k1,11348:19929389,23118961:199986 -k1,11348:20595335,23118961:199985 -k1,11348:23176899,23118961:199986 -k1,11348:25386873,23118961:199985 -k1,11348:25942719,23118961:199986 -k1,11348:28896527,23118961:199985 -k1,11348:31052763,23118961:199986 -k1,11348:32583029,23118961:0 -) -(1,11349:6630773,23960449:25952256,505283,134348 -k1,11348:7535498,23960449:253297 -k1,11348:8536560,23960449:253296 -k1,11348:12165616,23960449:253297 -k1,11348:13372461,23960449:253296 -k1,11348:15286440,23960449:253297 -k1,11348:16937619,23960449:253296 -k1,11348:18394157,23960449:253297 -k1,11348:22139867,23960449:253296 -k1,11348:25054581,23960449:253297 -k1,11348:25959305,23960449:253296 -k1,11348:30245688,23960449:253297 -k1,11348:31829365,23960449:253296 -k1,11348:32583029,23960449:0 -) -(1,11349:6630773,24801937:25952256,505283,126483 -g1,11348:9062814,24801937 -g1,11348:10253603,24801937 -g1,11348:14654345,24801937 -g1,11348:15469612,24801937 -k1,11349:32583029,24801937:16524904 -g1,11349:32583029,24801937 -) -v1,11351:6630773,25992403:0,393216,0 -(1,11366:6630773,30271729:25952256,4672542,196608 -g1,11366:6630773,30271729 -g1,11366:6630773,30271729 -g1,11366:6434165,30271729 -(1,11366:6434165,30271729:0,4672542,196608 -r1,11519:32779637,30271729:26345472,4869150,196608 -k1,11366:6434165,30271729:-26345472 -) -(1,11366:6434165,30271729:26345472,4672542,196608 -[1,11366:6630773,30271729:25952256,4475934,0 -(1,11353:6630773,26184292:25952256,388497,9436 -(1,11352:6630773,26184292:0,0,0 -g1,11352:6630773,26184292 -g1,11352:6630773,26184292 -g1,11352:6303093,26184292 -(1,11352:6303093,26184292:0,0,0 -) -g1,11352:6630773,26184292 -) -g1,11353:7263065,26184292 -g1,11353:8211503,26184292 -h1,11353:9159940,26184292:0,0,0 -k1,11353:32583028,26184292:23423088 -g1,11353:32583028,26184292 -) -(1,11354:6630773,26850470:25952256,404226,76021 -h1,11354:6630773,26850470:0,0,0 -k1,11354:6630773,26850470:0 -h1,11354:9159938,26850470:0,0,0 -k1,11354:32583030,26850470:23423092 -g1,11354:32583030,26850470 -) -(1,11358:6630773,27516648:25952256,404226,76021 -(1,11356:6630773,27516648:0,0,0 -g1,11356:6630773,27516648 -g1,11356:6630773,27516648 -g1,11356:6303093,27516648 -(1,11356:6303093,27516648:0,0,0 -) -g1,11356:6630773,27516648 -) -g1,11358:7579210,27516648 -g1,11358:8843793,27516648 -h1,11358:11689104,27516648:0,0,0 -k1,11358:32583028,27516648:20893924 -g1,11358:32583028,27516648 -) -(1,11360:6630773,28838186:25952256,404226,101187 -(1,11359:6630773,28838186:0,0,0 -g1,11359:6630773,28838186 -g1,11359:6630773,28838186 -g1,11359:6303093,28838186 -(1,11359:6303093,28838186:0,0,0 -) -g1,11359:6630773,28838186 -) -k1,11360:6630773,28838186:0 -g1,11360:9476084,28838186 -g1,11360:10424522,28838186 -g1,11360:14534417,28838186 -k1,11360:14534417,28838186:0 -h1,11360:17379728,28838186:0,0,0 -k1,11360:32583029,28838186:15203301 -g1,11360:32583029,28838186 -) -(1,11361:6630773,29504364:25952256,404226,76021 -h1,11361:6630773,29504364:0,0,0 -k1,11361:6630773,29504364:0 -h1,11361:9159938,29504364:0,0,0 -k1,11361:32583030,29504364:23423092 -g1,11361:32583030,29504364 -) -(1,11365:6630773,30170542:25952256,404226,101187 -(1,11363:6630773,30170542:0,0,0 -g1,11363:6630773,30170542 -g1,11363:6630773,30170542 -g1,11363:6303093,30170542 -(1,11363:6303093,30170542:0,0,0 -) -g1,11363:6630773,30170542 -) -g1,11365:7579210,30170542 -g1,11365:8843793,30170542 -g1,11365:12005250,30170542 -h1,11365:14850561,30170542:0,0,0 -k1,11365:32583029,30170542:17732468 -g1,11365:32583029,30170542 -) -] -) -g1,11366:32583029,30271729 -g1,11366:6630773,30271729 -g1,11366:6630773,30271729 -g1,11366:32583029,30271729 -g1,11366:32583029,30271729 -) -h1,11366:6630773,30468337:0,0,0 -(1,11370:6630773,31834113:25952256,513147,134348 -h1,11369:6630773,31834113:983040,0,0 -k1,11369:9251938,31834113:230412 -k1,11369:10350702,31834113:230412 -k1,11369:12510495,31834113:230413 -k1,11369:13096767,31834113:230412 -k1,11369:14909218,31834113:230412 -k1,11369:17593953,31834113:230412 -k1,11369:20221673,31834113:230413 -k1,11369:21103513,31834113:230412 -(1,11369:21103513,31834113:0,452978,115847 -r1,11519:24275473,31834113:3171960,568825,115847 -k1,11369:21103513,31834113:-3171960 -) -(1,11369:21103513,31834113:3171960,452978,115847 -k1,11369:21103513,31834113:3277 -h1,11369:24272196,31834113:0,411205,112570 -) -k1,11369:24505885,31834113:230412 -k1,11369:27199796,31834113:230413 -k1,11369:30492705,31834113:230412 -k1,11369:31591469,31834113:230412 -k1,11369:32583029,31834113:0 -) -(1,11370:6630773,32675601:25952256,513147,134348 -k1,11369:8588285,32675601:222119 -k1,11369:11505900,32675601:222119 -(1,11369:11505900,32675601:0,459977,115847 -r1,11519:14677860,32675601:3171960,575824,115847 -k1,11369:11505900,32675601:-3171960 -) -(1,11369:11505900,32675601:3171960,459977,115847 -k1,11369:11505900,32675601:3277 -h1,11369:14674583,32675601:0,411205,112570 -) -k1,11369:14899978,32675601:222118 -k1,11369:16313542,32675601:222119 -k1,11369:17483312,32675601:222119 -k1,11369:18724516,32675601:222119 -k1,11369:21127018,32675601:222119 -k1,11369:24159320,32675601:222118 -k1,11369:25032867,32675601:222119 -k1,11369:26851443,32675601:222119 -k1,11369:27941914,32675601:222119 -k1,11369:29694298,32675601:222118 -k1,11369:30567845,32675601:222119 -k1,11369:32227169,32675601:222119 -k1,11370:32583029,32675601:0 -) -(1,11370:6630773,33517089:25952256,505283,134348 -(1,11369:6630773,33517089:0,452978,115847 -r1,11519:9099310,33517089:2468537,568825,115847 -k1,11369:6630773,33517089:-2468537 -) -(1,11369:6630773,33517089:2468537,452978,115847 -k1,11369:6630773,33517089:3277 -h1,11369:9096033,33517089:0,411205,112570 -) -k1,11369:9322388,33517089:223078 -k1,11369:11225808,33517089:223077 -k1,11369:12135048,33517089:223078 -k1,11369:13128829,33517089:223078 -k1,11369:18149141,33517089:223077 -k1,11369:21431440,33517089:223078 -(1,11369:21431440,33517089:0,459977,115847 -r1,11519:24603400,33517089:3171960,575824,115847 -k1,11369:21431440,33517089:-3171960 -) -(1,11369:21431440,33517089:3171960,459977,115847 -k1,11369:21431440,33517089:3277 -h1,11369:24600123,33517089:0,411205,112570 -) -k1,11369:24826477,33517089:223077 -k1,11369:26542465,33517089:223078 -k1,11369:27831814,33517089:223078 -k1,11369:30378142,33517089:223077 -k1,11369:31931601,33517089:223078 -k1,11369:32583029,33517089:0 -) -(1,11370:6630773,34358577:25952256,513147,134348 -g1,11369:8988758,34358577 -g1,11369:11477815,34358577 -g1,11369:12336336,34358577 -g1,11369:13554650,34358577 -g1,11369:15309048,34358577 -g1,11369:16376629,34358577 -g1,11369:18051073,34358577 -g1,11369:19479102,34358577 -k1,11370:32583029,34358577:10580136 -g1,11370:32583029,34358577 -) -v1,11372:6630773,35549043:0,393216,0 -(1,11378:6630773,37171330:25952256,2015503,196608 -g1,11378:6630773,37171330 -g1,11378:6630773,37171330 -g1,11378:6434165,37171330 -(1,11378:6434165,37171330:0,2015503,196608 -r1,11519:32779637,37171330:26345472,2212111,196608 -k1,11378:6434165,37171330:-26345472 -) -(1,11378:6434165,37171330:26345472,2015503,196608 -[1,11378:6630773,37171330:25952256,1818895,0 -(1,11374:6630773,35762953:25952256,410518,101187 -(1,11373:6630773,35762953:0,0,0 -g1,11373:6630773,35762953 -g1,11373:6630773,35762953 -g1,11373:6303093,35762953 -(1,11373:6303093,35762953:0,0,0 -) -g1,11373:6630773,35762953 -) -g1,11374:11056813,35762953 -g1,11374:12005251,35762953 -g1,11374:15799000,35762953 -h1,11374:16115146,35762953:0,0,0 -k1,11374:32583029,35762953:16467883 -g1,11374:32583029,35762953 -) -(1,11375:6630773,36429131:25952256,410518,101187 -h1,11375:6630773,36429131:0,0,0 -g1,11375:6946919,36429131 -g1,11375:7263065,36429131 -g1,11375:7579211,36429131 -g1,11375:7895357,36429131 -g1,11375:13902126,36429131 -g1,11375:16115146,36429131 -k1,11375:16115146,36429131:0 -h1,11375:20541186,36429131:0,0,0 -k1,11375:32583029,36429131:12041843 -g1,11375:32583029,36429131 -) -(1,11376:6630773,37095309:25952256,404226,76021 -h1,11376:6630773,37095309:0,0,0 -h1,11376:6946919,37095309:0,0,0 -k1,11376:32583029,37095309:25636110 -g1,11376:32583029,37095309 -) -] -) -g1,11378:32583029,37171330 -g1,11378:6630773,37171330 -g1,11378:6630773,37171330 -g1,11378:32583029,37171330 -g1,11378:32583029,37171330 -) -h1,11378:6630773,37367938:0,0,0 -(1,11382:6630773,38733714:25952256,513147,134348 -h1,11381:6630773,38733714:983040,0,0 -k1,11381:9431170,38733714:212380 -k1,11381:9999411,38733714:212381 -k1,11381:13765153,38733714:212380 -k1,11381:16431856,38733714:212380 -k1,11381:18475312,38733714:212380 -k1,11381:19635344,38733714:212381 -k1,11381:20203584,38733714:212380 -k1,11381:22144804,38733714:212380 -k1,11381:22815281,38733714:212380 -k1,11381:24160124,38733714:212381 -k1,11381:25120270,38733714:212380 -k1,11381:26845876,38733714:212380 -k1,11381:28005907,38733714:212380 -k1,11381:30508116,38733714:212381 -k1,11381:31379788,38733714:212380 -k1,11381:32583029,38733714:0 -) -(1,11382:6630773,39575202:25952256,505283,7863 -k1,11382:32583029,39575202:24223416 -g1,11382:32583029,39575202 -) -v1,11384:6630773,40765668:0,393216,0 -(1,11397:6630773,43703201:25952256,3330749,196608 -g1,11397:6630773,43703201 -g1,11397:6630773,43703201 -g1,11397:6434165,43703201 -(1,11397:6434165,43703201:0,3330749,196608 -r1,11519:32779637,43703201:26345472,3527357,196608 -k1,11397:6434165,43703201:-26345472 -) -(1,11397:6434165,43703201:26345472,3330749,196608 -[1,11397:6630773,43703201:25952256,3134141,0 -(1,11386:6630773,40973286:25952256,404226,101187 -(1,11385:6630773,40973286:0,0,0 -g1,11385:6630773,40973286 -g1,11385:6630773,40973286 -g1,11385:6303093,40973286 -(1,11385:6303093,40973286:0,0,0 -) -g1,11385:6630773,40973286 -) -k1,11386:6630773,40973286:0 -h1,11386:9159938,40973286:0,0,0 -k1,11386:32583030,40973286:23423092 -g1,11386:32583030,40973286 -) -(1,11390:6630773,41639464:25952256,404226,101187 -(1,11388:6630773,41639464:0,0,0 -g1,11388:6630773,41639464 -g1,11388:6630773,41639464 -g1,11388:6303093,41639464 -(1,11388:6303093,41639464:0,0,0 -) -g1,11388:6630773,41639464 -) -g1,11390:7579210,41639464 -g1,11390:8843793,41639464 -g1,11390:12321396,41639464 -h1,11390:13585979,41639464:0,0,0 -k1,11390:32583029,41639464:18997050 -g1,11390:32583029,41639464 -) -(1,11392:6630773,42961002:25952256,404226,101187 -(1,11391:6630773,42961002:0,0,0 -g1,11391:6630773,42961002 -g1,11391:6630773,42961002 -g1,11391:6303093,42961002 -(1,11391:6303093,42961002:0,0,0 -) -g1,11391:6630773,42961002 -) -k1,11392:6630773,42961002:0 -k1,11392:6630773,42961002:0 -h1,11392:12953687,42961002:0,0,0 -k1,11392:32583029,42961002:19629342 -g1,11392:32583029,42961002 -) -(1,11396:6630773,43627180:25952256,404226,76021 -(1,11394:6630773,43627180:0,0,0 -g1,11394:6630773,43627180 -g1,11394:6630773,43627180 -g1,11394:6303093,43627180 -(1,11394:6303093,43627180:0,0,0 -) -g1,11394:6630773,43627180 -) -g1,11396:7579210,43627180 -g1,11396:8843793,43627180 -h1,11396:9792230,43627180:0,0,0 -k1,11396:32583030,43627180:22790800 -g1,11396:32583030,43627180 -) -] -) -g1,11397:32583029,43703201 -g1,11397:6630773,43703201 -g1,11397:6630773,43703201 -g1,11397:32583029,43703201 -g1,11397:32583029,43703201 -) -h1,11397:6630773,43899809:0,0,0 -v1,11401:6630773,45789873:0,393216,0 -] -(1,11519:32583029,45706769:0,0,0 -g1,11519:32583029,45706769 +] +g1,10682:6630773,4812305 +k1,10682:21643106,4812305:13816956 +g1,10682:23265777,4812305 +g1,10682:24088253,4812305 +g1,10682:28572226,4812305 +g1,10682:29981905,4812305 +) +) +] +[1,10682:6630773,45706769:25952256,40108032,0 +(1,10682:6630773,45706769:25952256,40108032,0 +(1,10682:6630773,45706769:0,0,0 +g1,10682:6630773,45706769 +) +[1,10682:6630773,45706769:25952256,40108032,0 +(1,10604:6630773,6254097:25952256,564462,147783 +(1,10604:6630773,6254097:2450326,534184,12975 +g1,10604:6630773,6254097 +g1,10604:9081099,6254097 +) +g1,10604:12662511,6254097 +g1,10604:16328989,6254097 +g1,10604:17279130,6254097 +g1,10604:20622646,6254097 +g1,10604:22189874,6254097 +k1,10604:32583029,6254097:8076195 +g1,10604:32583029,6254097 +) +(1,10606:6630773,7512393:25952256,513147,126483 +k1,10605:7539069,7512393:280461 +k1,10605:8838615,7512393:280461 +k1,10605:10503196,7512393:280461 +k1,10605:13445073,7512393:280460 +k1,10605:14593886,7512393:280461 +k1,10605:15966832,7512393:280461 +(1,10605:15966832,7512393:0,452978,115847 +r1,10682:18435369,7512393:2468537,568825,115847 +k1,10605:15966832,7512393:-2468537 +) +(1,10605:15966832,7512393:2468537,452978,115847 +k1,10605:15966832,7512393:3277 +h1,10605:18432092,7512393:0,411205,112570 +) +k1,10605:18715830,7512393:280461 +k1,10605:20187736,7512393:280461 +(1,10605:20187736,7512393:0,452978,115847 +r1,10682:22304561,7512393:2116825,568825,115847 +k1,10605:20187736,7512393:-2116825 +) +(1,10605:20187736,7512393:2116825,452978,115847 +k1,10605:20187736,7512393:3277 +h1,10605:22301284,7512393:0,411205,112570 +) +k1,10605:22585022,7512393:280461 +k1,10605:23516911,7512393:280461 +k1,10605:26585273,7512393:280460 +k1,10605:27884819,7512393:280461 +k1,10605:29903295,7512393:280461 +k1,10605:31131407,7512393:280461 +k1,10605:32583029,7512393:0 +) +(1,10606:6630773,8377473:25952256,513147,115847 +k1,10605:9260012,8377473:246350 +k1,10605:10165655,8377473:246351 +k1,10605:12499982,8377473:246350 +(1,10605:12499982,8377473:0,452978,115847 +r1,10682:15320231,8377473:2820249,568825,115847 +k1,10605:12499982,8377473:-2820249 +) +(1,10605:12499982,8377473:2820249,452978,115847 +k1,10605:12499982,8377473:3277 +h1,10605:15316954,8377473:0,411205,112570 +) +k1,10605:15740252,8377473:246351 +k1,10605:16614437,8377473:246350 +k1,10605:17275584,8377473:246304 +k1,10605:18541019,8377473:246350 +k1,10605:22462629,8377473:246351 +k1,10605:23368271,8377473:246350 +k1,10605:23970482,8377473:246351 +k1,10605:26477824,8377473:246350 +k1,10605:28258373,8377473:246351 +k1,10605:29696168,8377473:246350 +k1,10605:32583029,8377473:0 +) +(1,10606:6630773,9242553:25952256,513147,134348 +k1,10605:8219365,9242553:201195 +k1,10605:10306032,9242553:201196 +k1,10605:10863087,9242553:201195 +k1,10605:13759779,9242553:201196 +k1,10605:14492471,9242553:201195 +k1,10605:17065415,9242553:201196 +k1,10605:18258170,9242553:201195 +k1,10605:20327142,9242553:201196 +k1,10605:23162229,9242553:201195 +k1,10605:24595502,9242553:201196 +k1,10605:27743196,9242553:201195 +k1,10605:28560430,9242553:201196 +k1,10605:31040312,9242553:201195 +h1,10605:32409359,9242553:0,0,0 +k1,10605:32583029,9242553:0 +) +(1,10606:6630773,10107633:25952256,505283,134348 +k1,10605:7662090,10107633:221947 +k1,10605:9712492,10107633:221948 +h1,10605:10509410,10107633:0,0,0 +k1,10605:10731357,10107633:221947 +k1,10605:12144750,10107633:221948 +h1,10605:12941668,10107633:0,0,0 +k1,10605:13544379,10107633:221947 +k1,10605:14963014,10107633:221948 +k1,10605:18257289,10107633:221947 +k1,10605:20684523,10107633:221947 +k1,10605:21557899,10107633:221948 +k1,10605:25060578,10107633:221947 +(1,10605:25060578,10107633:0,414482,115847 +r1,10682:27177403,10107633:2116825,530329,115847 +k1,10605:25060578,10107633:-2116825 +) +(1,10605:25060578,10107633:2116825,414482,115847 +k1,10605:25060578,10107633:3277 +h1,10605:27174126,10107633:0,411205,112570 +) +k1,10605:27399351,10107633:221948 +k1,10605:31195632,10107633:221947 +k1,10605:32583029,10107633:0 +) +(1,10606:6630773,10972713:25952256,513147,134348 +k1,10605:8726413,10972713:210169 +k1,10605:11191021,10972713:210169 +k1,10605:12420274,10972713:210168 +k1,10605:15325939,10972713:210169 +k1,10605:16668570,10972713:210169 +k1,10605:17626505,10972713:210169 +k1,10605:20382091,10972713:210168 +k1,10605:21070017,10972713:210169 +k1,10605:22299271,10972713:210169 +k1,10605:25204936,10972713:210169 +k1,10605:25946601,10972713:210168 +k1,10605:28528518,10972713:210169 +k1,10605:29390115,10972713:210169 +k1,10605:32583029,10972713:0 +) +(1,10606:6630773,11837793:25952256,513147,134348 +k1,10605:8482550,11837793:143909 +k1,10605:9494811,11837793:143909 +k1,10605:10685986,11837793:143910 +k1,10605:12114401,11837793:143909 +k1,10605:13126662,11837793:143909 +k1,10605:15681641,11837793:143909 +k1,10605:16634920,11837793:143909 +k1,10605:17797914,11837793:143909 +k1,10605:19247957,11837793:143910 +k1,10605:21819975,11837793:143909 +k1,10605:23155329,11837793:143909 +k1,10605:23765199,11837793:143909 +k1,10605:24928193,11837793:143909 +k1,10605:27767598,11837793:143909 +k1,10605:28443005,11837793:143910 +k1,10605:30958662,11837793:143909 +k1,10605:31753999,11837793:143909 +k1,10606:32583029,11837793:0 +) +(1,10606:6630773,12702873:25952256,505283,134348 +k1,10605:9383047,12702873:175398 +k1,10605:12445306,12702873:175398 +k1,10605:14008101,12702873:175398 +k1,10605:15202584,12702873:175398 +k1,10605:17619313,12702873:175398 +k1,10605:20222821,12702873:175399 +k1,10605:22509789,12702873:175398 +k1,10605:23789469,12702873:175398 +k1,10605:25440082,12702873:175398 +k1,10605:27367257,12702873:175398 +k1,10605:31391584,12702873:175398 +k1,10605:32583029,12702873:0 +) +(1,10606:6630773,13567953:25952256,513147,134348 +k1,10605:11035666,13567953:179787 +k1,10605:12865650,13567953:179787 +k1,10605:15803847,13567953:179787 +k1,10605:16611469,13567953:179787 +k1,10605:17810341,13567953:179787 +k1,10605:19357209,13567953:179787 +k1,10605:20196288,13567953:179787 +k1,10605:22355918,13567953:179787 +k1,10605:23929656,13567953:179787 +k1,10605:25759640,13567953:179787 +k1,10605:27381874,13567953:179787 +k1,10605:28734100,13567953:179787 +k1,10605:32583029,13567953:0 +) +(1,10606:6630773,14433033:25952256,513147,134348 +g1,10605:7288099,14433033 +g1,10605:8018825,14433033 +g1,10605:10848014,14433033 +g1,10605:12238688,14433033 +g1,10605:14415138,14433033 +g1,10605:15265795,14433033 +g1,10605:17228598,14433033 +g1,10605:20453624,14433033 +g1,10605:22040250,14433033 +g1,10605:24910726,14433033 +g1,10605:27694695,14433033 +g1,10605:28506686,14433033 +k1,10606:32583029,14433033:2412384 +g1,10606:32583029,14433033 +) +v1,10608:6630773,15298113:0,393216,0 +(1,10609:6630773,17515933:25952256,2611036,0 +g1,10609:6630773,17515933 +g1,10609:6237557,17515933 +r1,10682:6368629,17515933:131072,2611036,0 +g1,10609:6567858,17515933 +g1,10609:6764466,17515933 +[1,10609:6764466,17515933:25818563,2611036,0 +(1,10609:6764466,15659290:25818563,754393,260573 +(1,10608:6764466,15659290:0,754393,260573 +r1,10682:8010564,15659290:1246098,1014966,260573 +k1,10608:6764466,15659290:-1246098 +) +(1,10608:6764466,15659290:1246098,754393,260573 +) +k1,10608:8248489,15659290:237925 +k1,10608:8576169,15659290:327680 +k1,10608:9301642,15659290:237885 +k1,10608:12786876,15659290:237925 +k1,10608:13834170,15659290:237924 +k1,10608:15091180,15659290:237925 +k1,10608:18024600,15659290:237924 +k1,10608:18913953,15659290:237925 +k1,10608:19899643,15659290:237924 +k1,10608:22509316,15659290:237925 +k1,10608:23278737,15659290:237924 +k1,10608:24801168,15659290:237925 +k1,10608:26058177,15659290:237924 +k1,10608:28273979,15659290:237925 +k1,10608:29194789,15659290:237925 +k1,10608:31450567,15659290:237924 +k1,10608:32583029,15659290:0 +) +(1,10609:6764466,16524370:25818563,513147,134348 +k1,10608:9153909,16524370:260178 +k1,10608:10161853,16524370:260178 +k1,10608:12627318,16524370:260178 +k1,10608:13573657,16524370:260177 +k1,10608:14189695,16524370:260178 +k1,10608:17625092,16524370:260178 +k1,10608:20957598,16524370:260178 +k1,10608:21869204,16524370:260178 +k1,10608:23148467,16524370:260178 +k1,10608:24714777,16524370:260177 +k1,10608:27103564,16524370:260178 +k1,10608:30644474,16524370:260178 +k1,10608:31563944,16524370:260178 +k1,10608:32583029,16524370:0 +) +(1,10609:6764466,17389450:25818563,513147,126483 +g1,10608:9335443,17389450 +k1,10609:32583029,17389450:20378420 +g1,10609:32583029,17389450 +) +] +g1,10609:32583029,17515933 +) +h1,10609:6630773,17515933:0,0,0 +v1,10612:6630773,18200788:0,393216,0 +(1,10621:6630773,20700684:25952256,2893112,196608 +g1,10621:6630773,20700684 +g1,10621:6630773,20700684 +g1,10621:6434165,20700684 +(1,10621:6434165,20700684:0,2893112,196608 +r1,10682:32779637,20700684:26345472,3089720,196608 +k1,10621:6434165,20700684:-26345472 +) +(1,10621:6434165,20700684:26345472,2893112,196608 +[1,10621:6630773,20700684:25952256,2696504,0 +(1,10614:6630773,18435225:25952256,431045,86428 +(1,10613:6630773,18435225:0,0,0 +g1,10613:6630773,18435225 +g1,10613:6630773,18435225 +g1,10613:6303093,18435225 +(1,10613:6303093,18435225:0,0,0 +) +g1,10613:6630773,18435225 +) +g1,10614:9618358,18435225 +g1,10614:10614220,18435225 +g1,10614:16921346,18435225 +g1,10614:18581116,18435225 +g1,10614:19245024,18435225 +h1,10614:20240886,18435225:0,0,0 +k1,10614:32583029,18435225:12342143 +g1,10614:32583029,18435225 +) +(1,10615:6630773,19120080:25952256,424439,106246 +h1,10615:6630773,19120080:0,0,0 +g1,10615:7294681,19120080 +g1,10615:8290543,19120080 +g1,10615:13601806,19120080 +g1,10615:15925484,19120080 +g1,10615:16589392,19120080 +g1,10615:17585254,19120080 +g1,10615:18913070,19120080 +g1,10615:19576978,19120080 +h1,10615:21236748,19120080:0,0,0 +k1,10615:32583029,19120080:11346281 +g1,10615:32583029,19120080 +) +(1,10616:6630773,19804935:25952256,424439,79822 +h1,10616:6630773,19804935:0,0,0 +k1,10616:6630773,19804935:0 +h1,10616:8622497,19804935:0,0,0 +k1,10616:32583029,19804935:23960532 +g1,10616:32583029,19804935 +) +(1,10620:6630773,20620862:25952256,424439,79822 +(1,10618:6630773,20620862:0,0,0 +g1,10618:6630773,20620862 +g1,10618:6630773,20620862 +g1,10618:6303093,20620862 +(1,10618:6303093,20620862:0,0,0 +) +g1,10618:6630773,20620862 +) +g1,10620:7626635,20620862 +g1,10620:7958589,20620862 +g1,10620:9286405,20620862 +g1,10620:11610083,20620862 +g1,10620:13601807,20620862 +g1,10620:15593531,20620862 +g1,10620:17585255,20620862 +g1,10620:18913071,20620862 +g1,10620:20904795,20620862 +h1,10620:21900657,20620862:0,0,0 +k1,10620:32583029,20620862:10682372 +g1,10620:32583029,20620862 +) +] +) +g1,10621:32583029,20700684 +g1,10621:6630773,20700684 +g1,10621:6630773,20700684 +g1,10621:32583029,20700684 +g1,10621:32583029,20700684 +) +h1,10621:6630773,20897292:0,0,0 +v1,10625:6630773,21762372:0,393216,0 +(1,10626:6630773,22907792:25952256,1538636,0 +g1,10626:6630773,22907792 +g1,10626:6237557,22907792 +r1,10682:6368629,22907792:131072,1538636,0 +g1,10626:6567858,22907792 +g1,10626:6764466,22907792 +[1,10626:6764466,22907792:25818563,1538636,0 +(1,10626:6764466,22034849:25818563,665693,196608 +(1,10625:6764466,22034849:0,665693,196608 +r1,10682:8010564,22034849:1246098,862301,196608 +k1,10625:6764466,22034849:-1246098 +) +(1,10625:6764466,22034849:1246098,665693,196608 +) +k1,10625:8282244,22034849:271680 +k1,10625:10008462,22034849:327680 +k1,10625:12486084,22034849:271680 +k1,10625:13776849,22034849:271680 +k1,10625:16709945,22034849:271679 +k1,10625:18836949,22034849:271680 +k1,10625:19833457,22034849:271680 +k1,10625:21389643,22034849:271680 +k1,10625:22119420,22034849:271680 +k1,10625:25509303,22034849:271680 +k1,10625:26984878,22034849:271679 +k1,10625:29324874,22034849:271680 +k1,10625:31923737,22034849:271680 +k1,10625:32583029,22034849:0 +) +(1,10626:6764466,22899929:25818563,505283,7863 +g1,10625:9346584,22899929 +k1,10626:32583029,22899929:20994458 +g1,10626:32583029,22899929 +) +] +g1,10626:32583029,22907792 +) +h1,10626:6630773,22907792:0,0,0 +v1,10629:6630773,23772872:0,393216,0 +(1,10630:6630773,26774937:25952256,3395281,0 +g1,10630:6630773,26774937 +g1,10630:6237557,26774937 +r1,10682:6368629,26774937:131072,3395281,0 +g1,10630:6567858,26774937 +g1,10630:6764466,26774937 +[1,10630:6764466,26774937:25818563,3395281,0 +(1,10630:6764466,24045349:25818563,665693,196608 +(1,10629:6764466,24045349:0,665693,196608 +r1,10682:8010564,24045349:1246098,862301,196608 +k1,10629:6764466,24045349:-1246098 +) +(1,10629:6764466,24045349:1246098,665693,196608 +) +k1,10629:8169578,24045349:159014 +k1,10629:9895796,24045349:327680 +k1,10629:11601459,24045349:159013 +k1,10629:12596057,24045349:159014 +k1,10629:13774155,24045349:159013 +k1,10629:15321222,24045349:159014 +k1,10629:17308689,24045349:159013 +k1,10629:18415354,24045349:159014 +(1,10629:18415354,24045349:0,452978,115847 +r1,10682:20883891,24045349:2468537,568825,115847 +k1,10629:18415354,24045349:-2468537 +) +(1,10629:18415354,24045349:2468537,452978,115847 +k1,10629:18415354,24045349:3277 +h1,10629:20880614,24045349:0,411205,112570 +) +k1,10629:21042905,24045349:159014 +k1,10629:22393363,24045349:159013 +(1,10629:22393363,24045349:0,452978,115847 +r1,10682:24510188,24045349:2116825,568825,115847 +k1,10629:22393363,24045349:-2116825 +) +(1,10629:22393363,24045349:2116825,452978,115847 +k1,10629:22393363,24045349:3277 +h1,10629:24506911,24045349:0,411205,112570 +) +k1,10629:24669202,24045349:159014 +k1,10629:26019660,24045349:159013 +k1,10629:27962564,24045349:159014 +k1,10629:29760632,24045349:159013 +k1,10629:31412556,24045349:159014 +k1,10629:32583029,24045349:0 +) +(1,10630:6764466,24910429:25818563,513147,134348 +k1,10629:10610952,24910429:181713 +k1,10629:12123047,24910429:181714 +k1,10629:15531753,24910429:181713 +k1,10629:19116095,24910429:181713 +k1,10629:20402090,24910429:181713 +k1,10629:21331570,24910429:181714 +k1,10629:23718570,24910429:181713 +k1,10629:24551711,24910429:181713 +k1,10629:25752509,24910429:181713 +k1,10629:28305971,24910429:181714 +k1,10629:31356850,24910429:181713 +k1,10629:32583029,24910429:0 +) +(1,10630:6764466,25775509:25818563,513147,134348 +k1,10629:8105459,25775509:170520 +k1,10629:10072976,25775509:170520 +k1,10629:11540454,25775509:170520 +(1,10629:11540454,25775509:0,452978,115847 +r1,10682:14008991,25775509:2468537,568825,115847 +k1,10629:11540454,25775509:-2468537 +) +(1,10629:11540454,25775509:2468537,452978,115847 +k1,10629:11540454,25775509:3277 +h1,10629:14005714,25775509:0,411205,112570 +) +k1,10629:14179511,25775509:170520 +k1,10629:15557204,25775509:170520 +k1,10629:18584437,25775509:170519 +k1,10629:19406385,25775509:170520 +k1,10629:21052120,25775509:170520 +k1,10629:24503372,25775509:170520 +k1,10629:26742208,25775509:170520 +k1,10629:28363695,25775509:170520 +k1,10629:29150253,25775509:170520 +k1,10629:32583029,25775509:0 +) +(1,10630:6764466,26640589:25818563,513147,134348 +g1,10629:10317828,26640589 +g1,10629:11871031,26640589 +g1,10629:14620921,26640589 +g1,10629:15767801,26640589 +g1,10629:16381873,26640589 +g1,10629:18077289,26640589 +k1,10630:32583029,26640589:12677941 +g1,10630:32583029,26640589 +) +] +g1,10630:32583029,26774937 +) +h1,10630:6630773,26774937:0,0,0 +(1,10633:6630773,27640017:25952256,513147,134348 +h1,10632:6630773,27640017:983040,0,0 +k1,10632:8387880,27640017:296310 +k1,10632:9552542,27640017:296310 +k1,10632:11612426,27640017:296310 +k1,10632:12264597,27640017:296311 +k1,10632:15256403,27640017:296310 +k1,10632:16837219,27640017:296310 +k1,10632:19474475,27640017:296310 +k1,10632:20126645,27640017:296310 +k1,10632:22103298,27640017:296310 +k1,10632:23058900,27640017:296310 +k1,10632:24374296,27640017:296311 +k1,10632:26324079,27640017:296310 +k1,10632:28633655,27640017:296310 +k1,10632:29616127,27640017:296310 +k1,10632:30700835,27640017:296310 +k1,10632:32583029,27640017:0 +) +(1,10633:6630773,28505097:25952256,513147,126483 +k1,10632:8259007,28505097:194306 +k1,10632:9472398,28505097:194306 +k1,10632:13341963,28505097:194306 +k1,10632:14195561,28505097:194306 +k1,10632:15408952,28505097:194306 +k1,10632:17283601,28505097:194306 +k1,10632:20256634,28505097:194306 +k1,10632:21212467,28505097:194305 +(1,10632:21212467,28505097:0,452978,115847 +r1,10682:23681004,28505097:2468537,568825,115847 +k1,10632:21212467,28505097:-2468537 +) +(1,10632:21212467,28505097:2468537,452978,115847 +k1,10632:21212467,28505097:3277 +h1,10632:23677727,28505097:0,411205,112570 +) +k1,10632:23875310,28505097:194306 +k1,10632:25061176,28505097:194306 +k1,10632:26274567,28505097:194306 +k1,10632:28122346,28505097:194306 +k1,10632:29002814,28505097:194306 +k1,10632:30941033,28505097:194306 +k1,10632:31794631,28505097:194306 +k1,10632:32583029,28505097:0 +) +(1,10633:6630773,29370177:25952256,513147,134348 +k1,10632:8719909,29370177:206942 +k1,10632:9880401,29370177:206943 +k1,10632:11353499,29370177:206942 +k1,10632:12176480,29370177:206943 +k1,10632:13402507,29370177:206942 +k1,10632:14993570,29370177:206943 +k1,10632:18365901,29370177:206942 +k1,10632:18928704,29370177:206943 +k1,10632:21573585,29370177:206942 +k1,10632:24476024,29370177:206943 +k1,10632:25967472,29370177:206942 +k1,10632:28515361,29370177:206943 +k1,10632:29510701,29370177:206942 +k1,10632:32583029,29370177:0 +) +(1,10633:6630773,30235257:25952256,505283,134348 +g1,10632:10494775,30235257 +g1,10632:11418832,30235257 +g1,10632:12902567,30235257 +g1,10632:14810320,30235257 +g1,10632:16200994,30235257 +g1,10632:18558979,30235257 +g1,10632:19862490,30235257 +g1,10632:20809485,30235257 +g1,10632:22809643,30235257 +k1,10633:32583029,30235257:6418598 +g1,10633:32583029,30235257 +) +v1,10635:6630773,30920112:0,393216,0 +(1,10647:6630773,35474573:25952256,4947677,196608 +g1,10647:6630773,35474573 +g1,10647:6630773,35474573 +g1,10647:6434165,35474573 +(1,10647:6434165,35474573:0,4947677,196608 +r1,10682:32779637,35474573:26345472,5144285,196608 +k1,10647:6434165,35474573:-26345472 +) +(1,10647:6434165,35474573:26345472,4947677,196608 +[1,10647:6630773,35474573:25952256,4751069,0 +(1,10637:6630773,31147943:25952256,424439,86428 +(1,10636:6630773,31147943:0,0,0 +g1,10636:6630773,31147943 +g1,10636:6630773,31147943 +g1,10636:6303093,31147943 +(1,10636:6303093,31147943:0,0,0 +) +g1,10636:6630773,31147943 +) +g1,10637:11610082,31147943 +g1,10637:12605944,31147943 +g1,10637:17917208,31147943 +g1,10637:19576978,31147943 +g1,10637:20240886,31147943 +g1,10637:21568702,31147943 +g1,10637:22564564,31147943 +g1,10637:23228472,31147943 +g1,10637:24556288,31147943 +g1,10637:26216058,31147943 +g1,10637:26879966,31147943 +h1,10637:27543874,31147943:0,0,0 +k1,10637:32583029,31147943:5039155 +g1,10637:32583029,31147943 +) +(1,10638:6630773,31832798:25952256,424439,112852 +h1,10638:6630773,31832798:0,0,0 +g1,10638:11610082,31832798 +g1,10638:12605944,31832798 +g1,10638:19908931,31832798 +g1,10638:22232609,31832798 +g1,10638:22896517,31832798 +h1,10638:23560425,31832798:0,0,0 +k1,10638:32583029,31832798:9022604 +g1,10638:32583029,31832798 +) +(1,10639:6630773,32517653:25952256,424439,6605 +h1,10639:6630773,32517653:0,0,0 +h1,10639:11278128,32517653:0,0,0 +k1,10639:32583028,32517653:21304900 +g1,10639:32583028,32517653 +) +(1,10646:6630773,33333580:25952256,424439,86428 +(1,10641:6630773,33333580:0,0,0 +g1,10641:6630773,33333580 +g1,10641:6630773,33333580 +g1,10641:6303093,33333580 +(1,10641:6303093,33333580:0,0,0 +) +g1,10641:6630773,33333580 +) +g1,10646:7626635,33333580 +g1,10646:7958589,33333580 +g1,10646:8290543,33333580 +g1,10646:8622497,33333580 +g1,10646:8954451,33333580 +g1,10646:9286405,33333580 +g1,10646:10946175,33333580 +k1,10646:10946175,33333580:0 +h1,10646:12273991,33333580:0,0,0 +k1,10646:32583029,33333580:20309038 +g1,10646:32583029,33333580 +) +(1,10646:6630773,34018435:25952256,424439,86428 +h1,10646:6630773,34018435:0,0,0 +g1,10646:7626635,34018435 +g1,10646:9286405,34018435 +g1,10646:10946175,34018435 +h1,10646:12273991,34018435:0,0,0 +k1,10646:32583029,34018435:20309038 +g1,10646:32583029,34018435 +) +(1,10646:6630773,34703290:25952256,424439,86428 +h1,10646:6630773,34703290:0,0,0 +g1,10646:7626635,34703290 +g1,10646:9286405,34703290 +g1,10646:10946175,34703290 +g1,10646:11278129,34703290 +h1,10646:12273991,34703290:0,0,0 +k1,10646:32583029,34703290:20309038 +g1,10646:32583029,34703290 +) +(1,10646:6630773,35388145:25952256,424439,86428 +h1,10646:6630773,35388145:0,0,0 +g1,10646:7626635,35388145 +g1,10646:9286405,35388145 +g1,10646:9618359,35388145 +g1,10646:10946175,35388145 +h1,10646:12273991,35388145:0,0,0 +k1,10646:32583029,35388145:20309038 +g1,10646:32583029,35388145 +) +] +) +g1,10647:32583029,35474573 +g1,10647:6630773,35474573 +g1,10647:6630773,35474573 +g1,10647:32583029,35474573 +g1,10647:32583029,35474573 +) +h1,10647:6630773,35671181:0,0,0 +v1,10651:6630773,36356036:0,393216,0 +(1,10655:6630773,36696719:25952256,733899,196608 +g1,10655:6630773,36696719 +g1,10655:6630773,36696719 +g1,10655:6434165,36696719 +(1,10655:6434165,36696719:0,733899,196608 +r1,10682:32779637,36696719:26345472,930507,196608 +k1,10655:6434165,36696719:-26345472 +) +(1,10655:6434165,36696719:26345472,733899,196608 +[1,10655:6630773,36696719:25952256,537291,0 +(1,10653:6630773,36590473:25952256,431045,106246 +(1,10652:6630773,36590473:0,0,0 +g1,10652:6630773,36590473 +g1,10652:6630773,36590473 +g1,10652:6303093,36590473 +(1,10652:6303093,36590473:0,0,0 +) +g1,10652:6630773,36590473 +) +g1,10653:9950312,36590473 +g1,10653:10946174,36590473 +g1,10653:14929621,36590473 +h1,10653:15925483,36590473:0,0,0 +k1,10653:32583029,36590473:16657546 +g1,10653:32583029,36590473 +) +] +) +g1,10655:32583029,36696719 +g1,10655:6630773,36696719 +g1,10655:6630773,36696719 +g1,10655:32583029,36696719 +g1,10655:32583029,36696719 +) +h1,10655:6630773,36893327:0,0,0 +v1,10659:6630773,37578182:0,393216,0 +(1,10676:6630773,43086248:25952256,5901282,196608 +g1,10676:6630773,43086248 +g1,10676:6630773,43086248 +g1,10676:6434165,43086248 +(1,10676:6434165,43086248:0,5901282,196608 +r1,10682:32779637,43086248:26345472,6097890,196608 +k1,10676:6434165,43086248:-26345472 +) +(1,10676:6434165,43086248:26345472,5901282,196608 +[1,10676:6630773,43086248:25952256,5704674,0 +(1,10661:6630773,37812619:25952256,431045,106246 +(1,10660:6630773,37812619:0,0,0 +g1,10660:6630773,37812619 +g1,10660:6630773,37812619 +g1,10660:6303093,37812619 +(1,10660:6303093,37812619:0,0,0 +) +g1,10660:6630773,37812619 +) +g1,10661:7294681,37812619 +g1,10661:8290543,37812619 +g1,10661:10946175,37812619 +g1,10661:11610083,37812619 +g1,10661:16921346,37812619 +g1,10661:19245024,37812619 +g1,10661:19908932,37812619 +g1,10661:20904794,37812619 +g1,10661:22232610,37812619 +g1,10661:22896518,37812619 +h1,10661:26216057,37812619:0,0,0 +k1,10661:32583029,37812619:6366972 +g1,10661:32583029,37812619 +) +(1,10662:6630773,38497474:25952256,424439,79822 +h1,10662:6630773,38497474:0,0,0 +k1,10662:6630773,38497474:0 +h1,10662:9286405,38497474:0,0,0 +k1,10662:32583029,38497474:23296624 +g1,10662:32583029,38497474 +) +(1,10666:6630773,39313401:25952256,424439,106246 +(1,10664:6630773,39313401:0,0,0 +g1,10664:6630773,39313401 +g1,10664:6630773,39313401 +g1,10664:6303093,39313401 +(1,10664:6303093,39313401:0,0,0 +) +g1,10664:6630773,39313401 +) +g1,10666:7626635,39313401 +g1,10666:8954451,39313401 +g1,10666:11942036,39313401 +h1,10666:14265714,39313401:0,0,0 +k1,10666:32583030,39313401:18317316 +g1,10666:32583030,39313401 +) +(1,10668:6630773,40129328:25952256,291767,0 +(1,10667:6630773,40129328:0,0,0 +g1,10667:6630773,40129328 +g1,10667:6630773,40129328 +g1,10667:6303093,40129328 +(1,10667:6303093,40129328:0,0,0 +) +g1,10667:6630773,40129328 +) +h1,10668:6962727,40129328:0,0,0 +k1,10668:32583029,40129328:25620302 +g1,10668:32583029,40129328 +) +(1,10675:6630773,40945255:25952256,424439,86428 +(1,10670:6630773,40945255:0,0,0 +g1,10670:6630773,40945255 +g1,10670:6630773,40945255 +g1,10670:6303093,40945255 +(1,10670:6303093,40945255:0,0,0 +) +g1,10670:6630773,40945255 +) +g1,10675:7626635,40945255 +g1,10675:7958589,40945255 +g1,10675:8290543,40945255 +g1,10675:8622497,40945255 +g1,10675:8954451,40945255 +g1,10675:9286405,40945255 +g1,10675:10946175,40945255 +k1,10675:10946175,40945255:0 +h1,10675:12273991,40945255:0,0,0 +k1,10675:32583029,40945255:20309038 +g1,10675:32583029,40945255 +) +(1,10675:6630773,41630110:25952256,424439,86428 +h1,10675:6630773,41630110:0,0,0 +g1,10675:7626635,41630110 +g1,10675:9286405,41630110 +g1,10675:10946175,41630110 +h1,10675:12273991,41630110:0,0,0 +k1,10675:32583029,41630110:20309038 +g1,10675:32583029,41630110 +) +(1,10675:6630773,42314965:25952256,424439,86428 +h1,10675:6630773,42314965:0,0,0 +g1,10675:7626635,42314965 +g1,10675:9286405,42314965 +g1,10675:10946175,42314965 +g1,10675:11278129,42314965 +h1,10675:12273991,42314965:0,0,0 +k1,10675:32583029,42314965:20309038 +g1,10675:32583029,42314965 +) +(1,10675:6630773,42999820:25952256,424439,86428 +h1,10675:6630773,42999820:0,0,0 +g1,10675:7626635,42999820 +g1,10675:9286405,42999820 +g1,10675:9618359,42999820 +g1,10675:10946175,42999820 +h1,10675:12273991,42999820:0,0,0 +k1,10675:32583029,42999820:20309038 +g1,10675:32583029,42999820 +) +] +) +g1,10676:32583029,43086248 +g1,10676:6630773,43086248 +g1,10676:6630773,43086248 +g1,10676:32583029,43086248 +g1,10676:32583029,43086248 +) +h1,10676:6630773,43282856:0,0,0 +(1,10680:6630773,44147936:25952256,513147,134348 +h1,10679:6630773,44147936:983040,0,0 +k1,10679:8442216,44147936:200568 +k1,10679:9661870,44147936:200569 +k1,10679:11833106,44147936:200568 +k1,10679:14062669,44147936:200568 +k1,10679:15131589,44147936:200568 +k1,10679:17537445,44147936:200569 +(1,10679:17537445,44147936:0,435480,115847 +r1,10682:21061118,44147936:3523673,551327,115847 +k1,10679:17537445,44147936:-3523673 +) +(1,10679:17537445,44147936:3523673,435480,115847 +g1,10679:20002705,44147936 +g1,10679:20706129,44147936 +h1,10679:21057841,44147936:0,411205,112570 +) +k1,10679:21435356,44147936:200568 +k1,10679:22708093,44147936:200568 +k1,10679:23374623,44147936:200569 +k1,10679:24443543,44147936:200568 +k1,10679:26081316,44147936:200568 +(1,10679:26081316,44147936:0,435480,115847 +r1,10682:29604989,44147936:3523673,551327,115847 +k1,10679:26081316,44147936:-3523673 +) +(1,10679:26081316,44147936:3523673,435480,115847 +g1,10679:28546576,44147936 +g1,10679:29250000,44147936 +h1,10679:29601712,44147936:0,411205,112570 +) +k1,10679:29979227,44147936:200568 +k1,10679:31048148,44147936:200569 +k1,10679:32227169,44147936:200568 +k1,10679:32583029,44147936:0 +) +] +(1,10682:32583029,45706769:0,0,0 +g1,10682:32583029,45706769 +) +) +] +(1,10682:6630773,47279633:25952256,0,0 +h1,10682:6630773,47279633:25952256,0,0 +) +] +(1,10682:4262630,4025873:0,0,0 +[1,10682:-473656,4025873:0,0,0 +(1,10682:-473656,-710413:0,0,0 +(1,10682:-473656,-710413:0,0,0 +g1,10682:-473656,-710413 +) +g1,10682:-473656,-710413 +) +] +) +] +!28663 +}169 +Input:1611:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1612:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1613:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1614:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1615:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1616:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1617:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1618:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1619:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1620:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!952 +{170 +[1,10761:4262630,47279633:28320399,43253760,0 +(1,10761:4262630,4025873:0,0,0 +[1,10761:-473656,4025873:0,0,0 +(1,10761:-473656,-710413:0,0,0 +(1,10761:-473656,-644877:0,0,0 +k1,10761:-473656,-644877:-65536 ) +(1,10761:-473656,4736287:0,0,0 +k1,10761:-473656,4736287:5209943 ) -] -(1,11519:6630773,47279633:25952256,0,0 -h1,11519:6630773,47279633:25952256,0,0 +g1,10761:-473656,-710413 ) ] -(1,11519:4262630,4025873:0,0,0 -[1,11519:-473656,4025873:0,0,0 -(1,11519:-473656,-710413:0,0,0 -(1,11519:-473656,-710413:0,0,0 -g1,11519:-473656,-710413 ) -g1,11519:-473656,-710413 +[1,10761:6630773,47279633:25952256,43253760,0 +[1,10761:6630773,4812305:25952256,786432,0 +(1,10761:6630773,4812305:25952256,513147,126483 +(1,10761:6630773,4812305:25952256,513147,126483 +g1,10761:3078558,4812305 +[1,10761:3078558,4812305:0,0,0 +(1,10761:3078558,2439708:0,1703936,0 +k1,10761:1358238,2439708:-1720320 +(1,8606:1358238,2439708:1720320,1703936,0 +(1,8606:1358238,2439708:1179648,16384,0 +r1,10761:2537886,2439708:1179648,16384,0 ) -] +g1,8606:3062174,2439708 +(1,8606:3062174,2439708:16384,1703936,0 +[1,8606:3062174,2439708:25952256,1703936,0 +(1,8606:3062174,1915420:25952256,1179648,0 +(1,8606:3062174,1915420:16384,1179648,0 +r1,10761:3078558,1915420:16384,1179648,0 +) +k1,8606:29014430,1915420:25935872 +g1,8606:29014430,1915420 ) ] -!25322 -}191 -!12 -{192 -[1,11519:4262630,47279633:28320399,43253760,0 -(1,11519:4262630,4025873:0,0,0 -[1,11519:-473656,4025873:0,0,0 -(1,11519:-473656,-710413:0,0,0 -(1,11519:-473656,-644877:0,0,0 -k1,11519:-473656,-644877:-65536 ) -(1,11519:-473656,4736287:0,0,0 -k1,11519:-473656,4736287:5209943 ) -g1,11519:-473656,-710413 ) ] +[1,10761:3078558,4812305:0,0,0 +(1,10761:3078558,2439708:0,1703936,0 +g1,10761:29030814,2439708 +g1,10761:36135244,2439708 +(1,8606:36135244,2439708:1720320,1703936,0 +(1,8606:36135244,2439708:16384,1703936,0 +[1,8606:36135244,2439708:25952256,1703936,0 +(1,8606:36135244,1915420:25952256,1179648,0 +(1,8606:36135244,1915420:16384,1179648,0 +r1,10761:36151628,1915420:16384,1179648,0 ) -[1,11519:6630773,47279633:25952256,43253760,0 -[1,11519:6630773,4812305:25952256,786432,0 -(1,11519:6630773,4812305:25952256,505283,134348 -(1,11519:6630773,4812305:25952256,505283,134348 -g1,11519:3078558,4812305 -[1,11519:3078558,4812305:0,0,0 -(1,11519:3078558,2439708:0,1703936,0 -k1,11519:1358238,2439708:-1720320 -(1,10825:1358238,2439708:1720320,1703936,0 -(1,10825:1358238,2439708:1179648,16384,0 -r1,11519:2537886,2439708:1179648,16384,0 -) -g1,10825:3062174,2439708 -(1,10825:3062174,2439708:16384,1703936,0 -[1,10825:3062174,2439708:25952256,1703936,0 -(1,10825:3062174,1915420:25952256,1179648,0 -(1,10825:3062174,1915420:16384,1179648,0 -r1,11519:3078558,1915420:16384,1179648,0 -) -k1,10825:29014430,1915420:25935872 -g1,10825:29014430,1915420 +k1,8606:62087500,1915420:25935872 +g1,8606:62087500,1915420 ) ] ) +g1,8606:36675916,2439708 +(1,8606:36675916,2439708:1179648,16384,0 +r1,10761:37855564,2439708:1179648,16384,0 ) ) -] -[1,11519:3078558,4812305:0,0,0 -(1,11519:3078558,2439708:0,1703936,0 -g1,11519:29030814,2439708 -g1,11519:36135244,2439708 -(1,10825:36135244,2439708:1720320,1703936,0 -(1,10825:36135244,2439708:16384,1703936,0 -[1,10825:36135244,2439708:25952256,1703936,0 -(1,10825:36135244,1915420:25952256,1179648,0 -(1,10825:36135244,1915420:16384,1179648,0 -r1,11519:36151628,1915420:16384,1179648,0 -) -k1,10825:62087500,1915420:25935872 -g1,10825:62087500,1915420 +k1,10761:3078556,2439708:-34777008 ) ] +[1,10761:3078558,4812305:0,0,0 +(1,10761:3078558,49800853:0,16384,2228224 +k1,10761:1358238,49800853:-1720320 +(1,8606:1358238,49800853:1720320,16384,2228224 +(1,8606:1358238,49800853:1179648,16384,0 +r1,10761:2537886,49800853:1179648,16384,0 ) -g1,10825:36675916,2439708 -(1,10825:36675916,2439708:1179648,16384,0 -r1,11519:37855564,2439708:1179648,16384,0 +g1,8606:3062174,49800853 +(1,8606:3062174,52029077:16384,1703936,0 +[1,8606:3062174,52029077:25952256,1703936,0 +(1,8606:3062174,51504789:25952256,1179648,0 +(1,8606:3062174,51504789:16384,1179648,0 +r1,10761:3078558,51504789:16384,1179648,0 ) -) -k1,11519:3078556,2439708:-34777008 +k1,8606:29014430,51504789:25935872 +g1,8606:29014430,51504789 ) ] -[1,11519:3078558,4812305:0,0,0 -(1,11519:3078558,49800853:0,16384,2228224 -k1,11519:1358238,49800853:-1720320 -(1,10825:1358238,49800853:1720320,16384,2228224 -(1,10825:1358238,49800853:1179648,16384,0 -r1,11519:2537886,49800853:1179648,16384,0 ) -g1,10825:3062174,49800853 -(1,10825:3062174,52029077:16384,1703936,0 -[1,10825:3062174,52029077:25952256,1703936,0 -(1,10825:3062174,51504789:25952256,1179648,0 -(1,10825:3062174,51504789:16384,1179648,0 -r1,11519:3078558,51504789:16384,1179648,0 ) -k1,10825:29014430,51504789:25935872 -g1,10825:29014430,51504789 ) ] +[1,10761:3078558,4812305:0,0,0 +(1,10761:3078558,49800853:0,16384,2228224 +g1,10761:29030814,49800853 +g1,10761:36135244,49800853 +(1,8606:36135244,49800853:1720320,16384,2228224 +(1,8606:36135244,52029077:16384,1703936,0 +[1,8606:36135244,52029077:25952256,1703936,0 +(1,8606:36135244,51504789:25952256,1179648,0 +(1,8606:36135244,51504789:16384,1179648,0 +r1,10761:36151628,51504789:16384,1179648,0 ) -) -) -] -[1,11519:3078558,4812305:0,0,0 -(1,11519:3078558,49800853:0,16384,2228224 -g1,11519:29030814,49800853 -g1,11519:36135244,49800853 -(1,10825:36135244,49800853:1720320,16384,2228224 -(1,10825:36135244,52029077:16384,1703936,0 -[1,10825:36135244,52029077:25952256,1703936,0 -(1,10825:36135244,51504789:25952256,1179648,0 -(1,10825:36135244,51504789:16384,1179648,0 -r1,11519:36151628,51504789:16384,1179648,0 -) -k1,10825:62087500,51504789:25935872 -g1,10825:62087500,51504789 -) -] -) -g1,10825:36675916,49800853 -(1,10825:36675916,49800853:1179648,16384,0 -r1,11519:37855564,49800853:1179648,16384,0 -) -) -k1,11519:3078556,49800853:-34777008 -) -] -g1,11519:6630773,4812305 -g1,11519:6630773,4812305 -g1,11519:9311850,4812305 -g1,11519:11796319,4812305 -g1,11519:13205998,4812305 -g1,11519:16063367,4812305 -k1,11519:31387652,4812305:15324285 -) -) -] -[1,11519:6630773,45706769:25952256,40108032,0 -(1,11519:6630773,45706769:25952256,40108032,0 -(1,11519:6630773,45706769:0,0,0 -g1,11519:6630773,45706769 -) -[1,11519:6630773,45706769:25952256,40108032,0 -v1,11519:6630773,6254097:0,393216,0 -(1,11519:6630773,45706769:25952256,39845888,0 -g1,11519:6630773,45706769 -g1,11519:6303093,45706769 -r1,11519:6401397,45706769:98304,39845888,0 -g1,11519:6600626,45706769 -g1,11519:6797234,45706769 -[1,11519:6797234,45706769:25785795,39845888,0 -(1,11402:6797234,6616170:25785795,755289,196608 -(1,11401:6797234,6616170:0,755289,196608 -r1,11519:8134168,6616170:1336934,951897,196608 -k1,11401:6797234,6616170:-1336934 -) -(1,11401:6797234,6616170:1336934,755289,196608 -) -k1,11401:8421115,6616170:286947 -k1,11401:8748795,6616170:327680 -k1,11401:10232429,6616170:286947 -k1,11401:11273040,6616170:286947 -k1,11401:13115155,6616170:286946 -k1,11401:15648021,6616170:286947 -k1,11401:16466465,6616170:286947 -k1,11401:20921502,6616170:286947 -k1,11401:21824487,6616170:286947 -k1,11401:23395940,6616170:286947 -k1,11401:24140984,6616170:286947 -k1,11401:25955574,6616170:286946 -k1,11401:27596495,6616170:286947 -k1,11401:29356036,6616170:286947 -k1,11401:32583029,6616170:0 -) -(1,11402:6797234,7457658:25785795,513147,134348 -k1,11401:11094933,7457658:233812 -k1,11401:12878671,7457658:233812 -k1,11401:14184653,7457658:233813 -k1,11401:14876562,7457658:233812 -k1,11401:15641871,7457658:233812 -k1,11401:17827345,7457658:233812 -k1,11401:20698327,7457658:233813 -k1,11401:21548177,7457658:233812 -k1,11401:23066495,7457658:233812 -k1,11401:24902007,7457658:233812 -k1,11401:25795112,7457658:233813 -k1,11401:27048009,7457658:233812 -k1,11401:31635378,7457658:233812 -k1,11401:32583029,7457658:0 -) -(1,11402:6797234,8299146:25785795,513147,134348 -k1,11401:10759481,8299146:243734 -k1,11401:12194661,8299146:243735 -k1,11401:16103824,8299146:243734 -k1,11401:17006850,8299146:243734 -k1,11401:18269669,8299146:243734 -k1,11401:22499959,8299146:243735 -k1,11401:23809964,8299146:243734 -k1,11401:26671861,8299146:243734 -k1,11401:27751179,8299146:243734 -k1,11401:30729076,8299146:243735 -k1,11401:31734338,8299146:243734 -k1,11402:32583029,8299146:0 -) -(1,11402:6797234,9140634:25785795,513147,134348 -k1,11401:9592225,9140634:191246 -k1,11401:12809268,9140634:191246 -k1,11401:13683399,9140634:191246 -k1,11401:16241150,9140634:191246 -k1,11401:16788256,9140634:191246 -k1,11401:19559655,9140634:191247 -k1,11401:22814054,9140634:191246 -k1,11401:26031097,9140634:191246 -k1,11401:27616294,9140634:191246 -k1,11401:28826625,9140634:191246 -k1,11401:30671344,9140634:191246 -k1,11401:32583029,9140634:0 -) -(1,11402:6797234,9982122:25785795,505283,126483 -g1,11401:8281624,9982122 -g1,11401:9012350,9982122 -g1,11401:10277850,9982122 -g1,11401:13067062,9982122 -g1,11401:14027819,9982122 -g1,11401:15246133,9982122 -g1,11401:15860205,9982122 -k1,11402:32583029,9982122:13091474 -g1,11402:32583029,9982122 -) -(1,11404:6797234,10969392:25785795,513147,134348 -h1,11403:6797234,10969392:983040,0,0 -k1,11403:10653373,10969392:186778 -k1,11403:11196012,10969392:186779 -k1,11403:12665985,10969392:186778 -k1,11403:13606428,10969392:186779 -k1,11403:16100073,10969392:186778 -k1,11403:16818349,10969392:186779 -k1,11403:18290943,10969392:186778 -k1,11403:20102360,10969392:186779 -k1,11403:22587486,10969392:186778 -k1,11403:23261840,10969392:186766 -k1,11403:25755486,10969392:186779 -k1,11403:28396587,10969392:186778 -k1,11403:29774811,10969392:186779 -k1,11403:30317449,10969392:186778 -k1,11403:32583029,10969392:0 -) -(1,11404:6797234,11810880:25785795,505283,7863 -g1,11403:9450786,11810880 -g1,11403:11180281,11810880 -g1,11403:12030938,11810880 -g1,11403:12977933,11810880 -k1,11404:32583028,11810880:17081304 -g1,11404:32583028,11810880 -) -v1,11406:6797234,13292909:0,393216,0 -(1,11417:6797234,18246086:25785795,5346393,196608 -g1,11417:6797234,18246086 -g1,11417:6797234,18246086 -g1,11417:6600626,18246086 -(1,11417:6600626,18246086:0,5346393,196608 -r1,11519:32779637,18246086:26179011,5543001,196608 -k1,11417:6600625,18246086:-26179012 -) -(1,11417:6600626,18246086:26179011,5346393,196608 -[1,11417:6797234,18246086:25785795,5149785,0 -(1,11408:6797234,13506819:25785795,410518,101187 -(1,11407:6797234,13506819:0,0,0 -g1,11407:6797234,13506819 -g1,11407:6797234,13506819 -g1,11407:6469554,13506819 -(1,11407:6469554,13506819:0,0,0 -) -g1,11407:6797234,13506819 -) -g1,11408:9642545,13506819 -g1,11408:10590983,13506819 -g1,11408:13436294,13506819 -g1,11408:14700878,13506819 -g1,11408:16281607,13506819 -h1,11408:16597753,13506819:0,0,0 -k1,11408:32583029,13506819:15985276 -g1,11408:32583029,13506819 -) -(1,11409:6797234,14172997:25785795,404226,101187 -h1,11409:6797234,14172997:0,0,0 -g1,11409:7113380,14172997 -g1,11409:7429526,14172997 -g1,11409:7745672,14172997 -g1,11409:14700878,14172997 -h1,11409:15333169,14172997:0,0,0 -k1,11409:32583029,14172997:17249860 -g1,11409:32583029,14172997 -) -(1,11410:6797234,14839175:25785795,404226,76021 -h1,11410:6797234,14839175:0,0,0 -g1,11410:7113380,14839175 -h1,11410:7429526,14839175:0,0,0 -k1,11410:32583030,14839175:25153504 -g1,11410:32583030,14839175 -) -(1,11411:6797234,15505353:25785795,0,0 -h1,11411:6797234,15505353:0,0,0 -h1,11411:6797234,15505353:0,0,0 -k1,11411:32583030,15505353:25785796 -g1,11411:32583030,15505353 -) -(1,11412:6797234,16171531:25785795,410518,101187 -h1,11412:6797234,16171531:0,0,0 -g1,11412:12171711,16171531 -g1,11412:13120149,16171531 -g1,11412:16913898,16171531 -g1,11412:18494627,16171531 -h1,11412:18810773,16171531:0,0,0 -k1,11412:32583029,16171531:13772256 -g1,11412:32583029,16171531 -) -(1,11413:6797234,16837709:25785795,404226,101187 -h1,11413:6797234,16837709:0,0,0 -g1,11413:7113380,16837709 -g1,11413:7429526,16837709 -g1,11413:7745672,16837709 -k1,11413:7745672,16837709:0 -h1,11413:12487857,16837709:0,0,0 -k1,11413:32583029,16837709:20095172 -g1,11413:32583029,16837709 -) -(1,11414:6797234,17503887:25785795,404226,101187 -h1,11414:6797234,17503887:0,0,0 -g1,11414:7113380,17503887 -g1,11414:7429526,17503887 -g1,11414:7745672,17503887 -g1,11414:10590983,17503887 -h1,11414:11855566,17503887:0,0,0 -k1,11414:32583030,17503887:20727464 -g1,11414:32583030,17503887 -) -(1,11415:6797234,18170065:25785795,404226,76021 -h1,11415:6797234,18170065:0,0,0 -h1,11415:7113380,18170065:0,0,0 -k1,11415:32583028,18170065:25469648 -g1,11415:32583028,18170065 -) -] -) -g1,11417:32583029,18246086 -g1,11417:6797234,18246086 -g1,11417:6797234,18246086 -g1,11417:32583029,18246086 -g1,11417:32583029,18246086 -) -h1,11417:6797234,18442694:0,0,0 -v1,11421:6797234,20740575:0,393216,0 -(1,11436:6797234,25010464:25785795,4663105,196608 -g1,11436:6797234,25010464 -g1,11436:6797234,25010464 -g1,11436:6600626,25010464 -(1,11436:6600626,25010464:0,4663105,196608 -r1,11519:32779637,25010464:26179011,4859713,196608 -k1,11436:6600625,25010464:-26179012 -) -(1,11436:6600626,25010464:26179011,4663105,196608 -[1,11436:6797234,25010464:25785795,4466497,0 -(1,11423:6797234,20948193:25785795,404226,101187 -(1,11422:6797234,20948193:0,0,0 -g1,11422:6797234,20948193 -g1,11422:6797234,20948193 -g1,11422:6469554,20948193 -(1,11422:6469554,20948193:0,0,0 -) -g1,11422:6797234,20948193 -) -k1,11423:6797234,20948193:0 -h1,11423:10907128,20948193:0,0,0 -k1,11423:32583028,20948193:21675900 -g1,11423:32583028,20948193 -) -(1,11428:6797234,21614371:25785795,404226,76021 -(1,11425:6797234,21614371:0,0,0 -g1,11425:6797234,21614371 -g1,11425:6797234,21614371 -g1,11425:6469554,21614371 -(1,11425:6469554,21614371:0,0,0 -) -g1,11425:6797234,21614371 -) -g1,11428:7745671,21614371 -g1,11428:9010254,21614371 -h1,11428:11855565,21614371:0,0,0 -k1,11428:32583029,21614371:20727464 -g1,11428:32583029,21614371 -) -(1,11428:6797234,22280549:25785795,404226,76021 -h1,11428:6797234,22280549:0,0,0 -g1,11428:7745671,22280549 -g1,11428:9010254,22280549 -h1,11428:9958691,22280549:0,0,0 -k1,11428:32583029,22280549:22624338 -g1,11428:32583029,22280549 -) -(1,11430:6797234,23602087:25785795,404226,101187 -(1,11429:6797234,23602087:0,0,0 -g1,11429:6797234,23602087 -g1,11429:6797234,23602087 -g1,11429:6469554,23602087 -(1,11429:6469554,23602087:0,0,0 -) -g1,11429:6797234,23602087 -) -k1,11430:6797234,23602087:0 -h1,11430:11539419,23602087:0,0,0 -k1,11430:32583029,23602087:21043610 -g1,11430:32583029,23602087 -) -(1,11435:6797234,24268265:25785795,404226,76021 -(1,11432:6797234,24268265:0,0,0 -g1,11432:6797234,24268265 -g1,11432:6797234,24268265 -g1,11432:6469554,24268265 -(1,11432:6469554,24268265:0,0,0 -) -g1,11432:6797234,24268265 -) -g1,11435:7745671,24268265 -g1,11435:9010254,24268265 -h1,11435:12487856,24268265:0,0,0 -k1,11435:32583028,24268265:20095172 -g1,11435:32583028,24268265 -) -(1,11435:6797234,24934443:25785795,404226,76021 -h1,11435:6797234,24934443:0,0,0 -g1,11435:7745671,24934443 -g1,11435:9010254,24934443 -h1,11435:10590982,24934443:0,0,0 -k1,11435:32583030,24934443:21992048 -g1,11435:32583030,24934443 -) -] -) -g1,11436:32583029,25010464 -g1,11436:6797234,25010464 -g1,11436:6797234,25010464 -g1,11436:32583029,25010464 -g1,11436:32583029,25010464 -) -h1,11436:6797234,25207072:0,0,0 -(1,11440:6797234,27010193:25785795,513147,126483 -h1,11439:6797234,27010193:983040,0,0 -k1,11439:8810112,27010193:137893 -k1,11439:9599433,27010193:137893 -k1,11439:11241377,27010193:137893 -(1,11439:11241377,27010193:0,452978,115847 -r1,11519:14765049,27010193:3523672,568825,115847 -k1,11439:11241377,27010193:-3523672 -) -(1,11439:11241377,27010193:3523672,452978,115847 -k1,11439:11241377,27010193:3277 -h1,11439:14761772,27010193:0,411205,112570 -) -k1,11439:15076612,27010193:137893 -k1,11439:16315510,27010193:137893 -k1,11439:17262773,27010193:137893 -k1,11439:21982942,27010193:137892 -k1,11439:23074384,27010193:137893 -k1,11439:24542658,27010193:137893 -k1,11439:26295358,27010193:137893 -k1,11439:27589961,27010193:137893 -k1,11439:28675505,27010193:137893 -k1,11439:30202761,27010193:137893 -k1,11440:32583029,27010193:0 -k1,11440:32583029,27010193:0 -) -v1,11442:6797234,28492222:0,393216,0 -(1,11449:6797234,30780687:25785795,2681681,196608 -g1,11449:6797234,30780687 -g1,11449:6797234,30780687 -g1,11449:6600626,30780687 -(1,11449:6600626,30780687:0,2681681,196608 -r1,11519:32779637,30780687:26179011,2878289,196608 -k1,11449:6600625,30780687:-26179012 -) -(1,11449:6600626,30780687:26179011,2681681,196608 -[1,11449:6797234,30780687:25785795,2485073,0 -(1,11444:6797234,28706132:25785795,410518,101187 -(1,11443:6797234,28706132:0,0,0 -g1,11443:6797234,28706132 -g1,11443:6797234,28706132 -g1,11443:6469554,28706132 -(1,11443:6469554,28706132:0,0,0 -) -g1,11443:6797234,28706132 -) -g1,11444:13120148,28706132 -g1,11444:14068586,28706132 -g1,11444:17862335,28706132 -g1,11444:19443064,28706132 -g1,11444:20075356,28706132 -g1,11444:21656086,28706132 -g1,11444:23236815,28706132 -h1,11444:23552961,28706132:0,0,0 -k1,11444:32583029,28706132:9030068 -g1,11444:32583029,28706132 -) -(1,11445:6797234,29372310:25785795,404226,101187 -h1,11445:6797234,29372310:0,0,0 -g1,11445:7113380,29372310 -g1,11445:7429526,29372310 -g1,11445:7745672,29372310 -g1,11445:12171712,29372310 -g1,11445:13120150,29372310 -h1,11445:14384733,29372310:0,0,0 -k1,11445:32583029,29372310:18198296 -g1,11445:32583029,29372310 -) -(1,11446:6797234,30038488:25785795,404226,76021 -h1,11446:6797234,30038488:0,0,0 -g1,11446:7113380,30038488 -g1,11446:7429526,30038488 -g1,11446:7745672,30038488 -k1,11446:7745672,30038488:0 -h1,11446:11539420,30038488:0,0,0 -k1,11446:32583028,30038488:21043608 -g1,11446:32583028,30038488 -) -(1,11447:6797234,30704666:25785795,404226,76021 -h1,11447:6797234,30704666:0,0,0 -h1,11447:7113380,30704666:0,0,0 -k1,11447:32583028,30704666:25469648 -g1,11447:32583028,30704666 -) -] -) -g1,11449:32583029,30780687 -g1,11449:6797234,30780687 -g1,11449:6797234,30780687 -g1,11449:32583029,30780687 -g1,11449:32583029,30780687 -) -h1,11449:6797234,30977295:0,0,0 -(1,11453:6797234,32780416:25785795,513147,126483 -h1,11452:6797234,32780416:983040,0,0 -k1,11452:8947634,32780416:213811 -k1,11452:10358788,32780416:213811 -k1,11452:11591684,32780416:213811 -k1,11452:14046827,32780416:213812 -k1,11452:17446998,32780416:213811 -k1,11452:18385637,32780416:213811 -k1,11452:19883954,32780416:213811 -k1,11452:21116850,32780416:213811 -k1,11452:24026158,32780416:213812 -k1,11452:26912527,32780416:213811 -k1,11452:29467284,32780416:213811 -k1,11452:30700180,32780416:213811 -k1,11452:32583029,32780416:0 -) -(1,11453:6797234,33621904:25785795,513147,126483 -k1,11452:8384603,33621904:198006 -k1,11452:10632575,33621904:198006 -k1,11452:12782244,33621904:198007 -k1,11452:14422697,33621904:198006 -k1,11452:15639788,33621904:198006 -k1,11452:17336602,33621904:198006 -k1,11452:20058399,33621904:198006 -k1,11452:21209955,33621904:198007 -k1,11452:22738342,33621904:198006 -k1,11452:23751616,33621904:198006 -k1,11452:24305482,33621904:198006 -k1,11452:26250022,33621904:198006 -k1,11452:27639474,33621904:198007 -k1,11452:28496772,33621904:198006 -k1,11452:29713863,33621904:198006 -k1,11453:32583029,33621904:0 -k1,11453:32583029,33621904:0 -) -v1,11455:6797234,35103933:0,393216,0 -(1,11467:6797234,39318055:25785795,4607338,196608 -g1,11467:6797234,39318055 -g1,11467:6797234,39318055 -g1,11467:6600626,39318055 -(1,11467:6600626,39318055:0,4607338,196608 -r1,11519:32779637,39318055:26179011,4803946,196608 -k1,11467:6600625,39318055:-26179012 -) -(1,11467:6600626,39318055:26179011,4607338,196608 -[1,11467:6797234,39318055:25785795,4410730,0 -(1,11457:6797234,35311551:25785795,404226,101187 -(1,11456:6797234,35311551:0,0,0 -g1,11456:6797234,35311551 -g1,11456:6797234,35311551 -g1,11456:6469554,35311551 -(1,11456:6469554,35311551:0,0,0 -) -g1,11456:6797234,35311551 -) -k1,11457:6797234,35311551:0 -h1,11457:11223273,35311551:0,0,0 -k1,11457:32583029,35311551:21359756 -g1,11457:32583029,35311551 -) -(1,11466:6797234,35977729:25785795,404226,101187 -(1,11459:6797234,35977729:0,0,0 -g1,11459:6797234,35977729 -g1,11459:6797234,35977729 -g1,11459:6469554,35977729 -(1,11459:6469554,35977729:0,0,0 -) -g1,11459:6797234,35977729 -) -g1,11466:7745671,35977729 -g1,11466:8061817,35977729 -g1,11466:8377963,35977729 -g1,11466:10274837,35977729 -h1,11466:11539420,35977729:0,0,0 -k1,11466:32583028,35977729:21043608 -g1,11466:32583028,35977729 -) -(1,11466:6797234,36643907:25785795,388497,0 -h1,11466:6797234,36643907:0,0,0 -g1,11466:7745671,36643907 -g1,11466:8377963,36643907 -g1,11466:8694109,36643907 -g1,11466:9010255,36643907 -g1,11466:9326401,36643907 -g1,11466:9642547,36643907 -g1,11466:10274839,36643907 -g1,11466:10590985,36643907 -g1,11466:10907131,36643907 -g1,11466:11223277,36643907 -h1,11466:11539423,36643907:0,0,0 -k1,11466:32583029,36643907:21043606 -g1,11466:32583029,36643907 -) -(1,11466:6797234,37310085:25785795,388497,9436 -h1,11466:6797234,37310085:0,0,0 -g1,11466:7745671,37310085 -g1,11466:8377963,37310085 -g1,11466:8694109,37310085 -g1,11466:9010255,37310085 -g1,11466:9326401,37310085 -g1,11466:9642547,37310085 -g1,11466:10274839,37310085 -g1,11466:10590985,37310085 -g1,11466:10907131,37310085 -h1,11466:11539422,37310085:0,0,0 -k1,11466:32583030,37310085:21043608 -g1,11466:32583030,37310085 -) -(1,11466:6797234,37976263:25785795,388497,9436 -h1,11466:6797234,37976263:0,0,0 -g1,11466:7745671,37976263 -g1,11466:8377963,37976263 -g1,11466:8694109,37976263 -g1,11466:9010255,37976263 -g1,11466:9326401,37976263 -g1,11466:9642547,37976263 -g1,11466:10274839,37976263 -g1,11466:10590985,37976263 -g1,11466:10907131,37976263 -g1,11466:11223277,37976263 -h1,11466:11539423,37976263:0,0,0 -k1,11466:32583029,37976263:21043606 -g1,11466:32583029,37976263 -) -(1,11466:6797234,38642441:25785795,388497,0 -h1,11466:6797234,38642441:0,0,0 -g1,11466:7745671,38642441 -g1,11466:8377963,38642441 -g1,11466:8694109,38642441 -g1,11466:9010255,38642441 -g1,11466:9326401,38642441 -g1,11466:9642547,38642441 -g1,11466:10274839,38642441 -g1,11466:10590985,38642441 -g1,11466:10907131,38642441 -h1,11466:11539422,38642441:0,0,0 -k1,11466:32583030,38642441:21043608 -g1,11466:32583030,38642441 -) -(1,11466:6797234,39308619:25785795,388497,9436 -h1,11466:6797234,39308619:0,0,0 -g1,11466:7745671,39308619 -g1,11466:8377963,39308619 -g1,11466:8694109,39308619 -g1,11466:9010255,39308619 -g1,11466:9326401,39308619 -g1,11466:9642547,39308619 -g1,11466:10274839,39308619 -g1,11466:10590985,39308619 -g1,11466:10907131,39308619 -h1,11466:11539422,39308619:0,0,0 -k1,11466:32583030,39308619:21043608 -g1,11466:32583030,39308619 -) -] -) -g1,11467:32583029,39318055 -g1,11467:6797234,39318055 -g1,11467:6797234,39318055 -g1,11467:32583029,39318055 -g1,11467:32583029,39318055 -) -h1,11467:6797234,39514663:0,0,0 -v1,11471:6797234,41812544:0,393216,0 -(1,11481:6797234,44694310:25785795,3274982,196608 -g1,11481:6797234,44694310 -g1,11481:6797234,44694310 -g1,11481:6600626,44694310 -(1,11481:6600626,44694310:0,3274982,196608 -r1,11519:32779637,44694310:26179011,3471590,196608 -k1,11481:6600625,44694310:-26179012 -) -(1,11481:6600626,44694310:26179011,3274982,196608 -[1,11481:6797234,44694310:25785795,3078374,0 -(1,11473:6797234,42020162:25785795,404226,101187 -(1,11472:6797234,42020162:0,0,0 -g1,11472:6797234,42020162 -g1,11472:6797234,42020162 -g1,11472:6469554,42020162 -(1,11472:6469554,42020162:0,0,0 -) -g1,11472:6797234,42020162 -) -k1,11473:6797234,42020162:0 -g1,11473:11539419,42020162 -h1,11473:13120148,42020162:0,0,0 -k1,11473:32583028,42020162:19462880 -g1,11473:32583028,42020162 -) -(1,11480:6797234,42686340:25785795,404226,101187 -(1,11475:6797234,42686340:0,0,0 -g1,11475:6797234,42686340 -g1,11475:6797234,42686340 -g1,11475:6469554,42686340 -(1,11475:6469554,42686340:0,0,0 -) -g1,11475:6797234,42686340 -) -g1,11480:7745671,42686340 -g1,11480:8061817,42686340 -g1,11480:8377963,42686340 -g1,11480:8694109,42686340 -g1,11480:10590983,42686340 -h1,11480:11855566,42686340:0,0,0 -k1,11480:32583030,42686340:20727464 -g1,11480:32583030,42686340 -) -(1,11480:6797234,43352518:25785795,388497,9436 -h1,11480:6797234,43352518:0,0,0 -g1,11480:7745671,43352518 -g1,11480:8377963,43352518 -g1,11480:8694109,43352518 -g1,11480:9010255,43352518 -g1,11480:9326401,43352518 -g1,11480:9642547,43352518 -g1,11480:10590984,43352518 -g1,11480:10907130,43352518 -g1,11480:11223276,43352518 -h1,11480:11855567,43352518:0,0,0 -k1,11480:32583029,43352518:20727462 -g1,11480:32583029,43352518 -) -(1,11480:6797234,44018696:25785795,388497,9436 -h1,11480:6797234,44018696:0,0,0 -g1,11480:7745671,44018696 -g1,11480:8377963,44018696 -g1,11480:8694109,44018696 -g1,11480:9010255,44018696 -g1,11480:9326401,44018696 -g1,11480:9642547,44018696 -g1,11480:10590984,44018696 -g1,11480:10907130,44018696 -g1,11480:11223276,44018696 -h1,11480:11855567,44018696:0,0,0 -k1,11480:32583029,44018696:20727462 -g1,11480:32583029,44018696 -) -(1,11480:6797234,44684874:25785795,388497,9436 -h1,11480:6797234,44684874:0,0,0 -g1,11480:7745671,44684874 -g1,11480:8694108,44684874 -g1,11480:9010254,44684874 -g1,11480:9326400,44684874 -g1,11480:9642546,44684874 -g1,11480:10590983,44684874 -g1,11480:10907129,44684874 -g1,11480:11223275,44684874 -h1,11480:11855566,44684874:0,0,0 -k1,11480:32583030,44684874:20727464 -g1,11480:32583030,44684874 -) -] -) -g1,11481:32583029,44694310 -g1,11481:6797234,44694310 -g1,11481:6797234,44694310 -g1,11481:32583029,44694310 -g1,11481:32583029,44694310 -) -h1,11481:6797234,44890918:0,0,0 -] -g1,11519:32583029,45706769 -) -] -(1,11519:32583029,45706769:0,0,0 -g1,11519:32583029,45706769 -) -) -] -(1,11519:6630773,47279633:25952256,0,0 -h1,11519:6630773,47279633:25952256,0,0 -) -] -(1,11519:4262630,4025873:0,0,0 -[1,11519:-473656,4025873:0,0,0 -(1,11519:-473656,-710413:0,0,0 -(1,11519:-473656,-710413:0,0,0 -g1,11519:-473656,-710413 -) -g1,11519:-473656,-710413 -) -] -) -] -!22123 -}192 -Input:1687:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!106 -{193 -[1,11584:4262630,47279633:28320399,43253760,0 -(1,11584:4262630,4025873:0,0,0 -[1,11584:-473656,4025873:0,0,0 -(1,11584:-473656,-710413:0,0,0 -(1,11584:-473656,-644877:0,0,0 -k1,11584:-473656,-644877:-65536 -) -(1,11584:-473656,4736287:0,0,0 -k1,11584:-473656,4736287:5209943 -) -g1,11584:-473656,-710413 +k1,8606:62087500,51504789:25935872 +g1,8606:62087500,51504789 ) ] ) -[1,11584:6630773,47279633:25952256,43253760,0 -[1,11584:6630773,4812305:25952256,786432,0 -(1,11584:6630773,4812305:25952256,505283,134348 -(1,11584:6630773,4812305:25952256,505283,134348 -g1,11584:3078558,4812305 -[1,11584:3078558,4812305:0,0,0 -(1,11584:3078558,2439708:0,1703936,0 -k1,11584:1358238,2439708:-1720320 -(1,10825:1358238,2439708:1720320,1703936,0 -(1,10825:1358238,2439708:1179648,16384,0 -r1,11584:2537886,2439708:1179648,16384,0 +g1,8606:36675916,49800853 +(1,8606:36675916,49800853:1179648,16384,0 +r1,10761:37855564,49800853:1179648,16384,0 ) -g1,10825:3062174,2439708 -(1,10825:3062174,2439708:16384,1703936,0 -[1,10825:3062174,2439708:25952256,1703936,0 -(1,10825:3062174,1915420:25952256,1179648,0 -(1,10825:3062174,1915420:16384,1179648,0 -r1,11584:3078558,1915420:16384,1179648,0 ) -k1,10825:29014430,1915420:25935872 -g1,10825:29014430,1915420 +k1,10761:3078556,49800853:-34777008 ) ] +g1,10761:6630773,4812305 +g1,10761:6630773,4812305 +g1,10761:8671564,4812305 +g1,10761:11756343,4812305 +k1,10761:31387651,4812305:19631308 +) +) +] +[1,10761:6630773,45706769:25952256,40108032,0 +(1,10761:6630773,45706769:25952256,40108032,0 +(1,10761:6630773,45706769:0,0,0 +g1,10761:6630773,45706769 +) +[1,10761:6630773,45706769:25952256,40108032,0 +(1,10680:6630773,6254097:25952256,513147,134348 +k1,10679:8816305,6254097:174887 +k1,10679:10671536,6254097:174888 +k1,10679:12130929,6254097:174887 +k1,10679:12837313,6254097:174887 +k1,10679:16745787,6254097:174888 +k1,10679:17749704,6254097:174887 +k1,10679:20177719,6254097:174887 +k1,10679:21371692,6254097:174888 +k1,10679:23981897,6254097:174887 +k1,10679:26145147,6254097:174888 +k1,10679:26979326,6254097:174887 +k1,10679:28173298,6254097:174887 +k1,10679:30435508,6254097:174888 +k1,10679:31478747,6254097:174887 +k1,10679:32583029,6254097:0 +) +(1,10680:6630773,7119177:25952256,513147,126483 +g1,10679:9969177,7119177 +g1,10679:11187491,7119177 +g1,10679:13229592,7119177 +g1,10679:14822772,7119177 +g1,10679:17717497,7119177 +(1,10679:17717497,7119177:0,452978,115847 +r1,10761:18779186,7119177:1061689,568825,115847 +k1,10679:17717497,7119177:-1061689 +) +(1,10679:17717497,7119177:1061689,452978,115847 +k1,10679:17717497,7119177:3277 +h1,10679:18775909,7119177:0,411205,112570 +) +k1,10680:32583029,7119177:13630173 +g1,10680:32583029,7119177 +) +v1,10682:6630773,7804032:0,393216,0 +(1,10701:6630773,14681808:25952256,7270992,196608 +g1,10701:6630773,14681808 +g1,10701:6630773,14681808 +g1,10701:6434165,14681808 +(1,10701:6434165,14681808:0,7270992,196608 +r1,10761:32779637,14681808:26345472,7467600,196608 +k1,10701:6434165,14681808:-26345472 +) +(1,10701:6434165,14681808:26345472,7270992,196608 +[1,10701:6630773,14681808:25952256,7074384,0 +(1,10684:6630773,8038469:25952256,431045,106246 +(1,10683:6630773,8038469:0,0,0 +g1,10683:6630773,8038469 +g1,10683:6630773,8038469 +g1,10683:6303093,8038469 +(1,10683:6303093,8038469:0,0,0 +) +g1,10683:6630773,8038469 +) +g1,10684:7294681,8038469 +g1,10684:8290543,8038469 +g1,10684:10946175,8038469 +g1,10684:11610083,8038469 +g1,10684:16921346,8038469 +g1,10684:19245024,8038469 +g1,10684:19908932,8038469 +g1,10684:20904794,8038469 +g1,10684:22232610,8038469 +g1,10684:22896518,8038469 +h1,10684:26216057,8038469:0,0,0 +k1,10684:32583029,8038469:6366972 +g1,10684:32583029,8038469 +) +(1,10685:6630773,8723324:25952256,291767,0 +h1,10685:6630773,8723324:0,0,0 +h1,10685:6962727,8723324:0,0,0 +k1,10685:32583029,8723324:25620302 +g1,10685:32583029,8723324 +) +(1,10691:6630773,9539251:25952256,424439,86428 +(1,10687:6630773,9539251:0,0,0 +g1,10687:6630773,9539251 +g1,10687:6630773,9539251 +g1,10687:6303093,9539251 +(1,10687:6303093,9539251:0,0,0 +) +g1,10687:6630773,9539251 +) +g1,10691:7626635,9539251 +g1,10691:7958589,9539251 +g1,10691:8290543,9539251 +g1,10691:8622497,9539251 +g1,10691:8954451,9539251 +g1,10691:9286405,9539251 +g1,10691:10946175,9539251 +g1,10691:12605945,9539251 +k1,10691:12605945,9539251:0 +h1,10691:13933761,9539251:0,0,0 +k1,10691:32583029,9539251:18649268 +g1,10691:32583029,9539251 +) +(1,10691:6630773,10224106:25952256,424439,86428 +h1,10691:6630773,10224106:0,0,0 +g1,10691:7626635,10224106 +g1,10691:9286405,10224106 +g1,10691:10946175,10224106 +g1,10691:12605945,10224106 +g1,10691:12937899,10224106 +h1,10691:13933761,10224106:0,0,0 +k1,10691:32583029,10224106:18649268 +g1,10691:32583029,10224106 +) +(1,10691:6630773,10908961:25952256,424439,86428 +h1,10691:6630773,10908961:0,0,0 +g1,10691:7626635,10908961 +g1,10691:9286405,10908961 +g1,10691:10946175,10908961 +g1,10691:11278129,10908961 +g1,10691:12605945,10908961 +h1,10691:13933761,10908961:0,0,0 +k1,10691:32583029,10908961:18649268 +g1,10691:32583029,10908961 +) +(1,10693:6630773,11724888:25952256,424439,79822 +(1,10692:6630773,11724888:0,0,0 +g1,10692:6630773,11724888 +g1,10692:6630773,11724888 +g1,10692:6303093,11724888 +(1,10692:6303093,11724888:0,0,0 +) +g1,10692:6630773,11724888 +) +k1,10693:6630773,11724888:0 +h1,10693:7958589,11724888:0,0,0 +k1,10693:32583029,11724888:24624440 +g1,10693:32583029,11724888 +) +(1,10700:6630773,12540815:25952256,424439,86428 +(1,10695:6630773,12540815:0,0,0 +g1,10695:6630773,12540815 +g1,10695:6630773,12540815 +g1,10695:6303093,12540815 +(1,10695:6303093,12540815:0,0,0 +) +g1,10695:6630773,12540815 +) +g1,10700:7626635,12540815 +g1,10700:7958589,12540815 +g1,10700:8290543,12540815 +g1,10700:8622497,12540815 +g1,10700:8954451,12540815 +g1,10700:9286405,12540815 +g1,10700:10946175,12540815 +k1,10700:10946175,12540815:0 +h1,10700:12273991,12540815:0,0,0 +k1,10700:32583029,12540815:20309038 +g1,10700:32583029,12540815 +) +(1,10700:6630773,13225670:25952256,424439,86428 +h1,10700:6630773,13225670:0,0,0 +g1,10700:7626635,13225670 +g1,10700:9286405,13225670 +g1,10700:10946175,13225670 +h1,10700:12273991,13225670:0,0,0 +k1,10700:32583029,13225670:20309038 +g1,10700:32583029,13225670 +) +(1,10700:6630773,13910525:25952256,424439,86428 +h1,10700:6630773,13910525:0,0,0 +g1,10700:7626635,13910525 +g1,10700:9286405,13910525 +g1,10700:10946175,13910525 +g1,10700:11278129,13910525 +h1,10700:12273991,13910525:0,0,0 +k1,10700:32583029,13910525:20309038 +g1,10700:32583029,13910525 +) +(1,10700:6630773,14595380:25952256,424439,86428 +h1,10700:6630773,14595380:0,0,0 +g1,10700:7626635,14595380 +g1,10700:9286405,14595380 +g1,10700:9618359,14595380 +g1,10700:10946175,14595380 +h1,10700:12273991,14595380:0,0,0 +k1,10700:32583029,14595380:20309038 +g1,10700:32583029,14595380 +) +] +) +g1,10701:32583029,14681808 +g1,10701:6630773,14681808 +g1,10701:6630773,14681808 +g1,10701:32583029,14681808 +g1,10701:32583029,14681808 +) +h1,10701:6630773,14878416:0,0,0 +(1,10705:6630773,15743496:25952256,513147,134348 +h1,10704:6630773,15743496:983040,0,0 +k1,10704:8358958,15743496:257557 +k1,10704:10266771,15743496:257616 +k1,10704:13044246,15743496:257616 +k1,10704:16136949,15743496:257616 +k1,10704:17466734,15743496:257616 +k1,10704:20208165,15743496:257616 +k1,10704:21117209,15743496:257616 +k1,10704:23144296,15743496:257615 +k1,10704:25862134,15743496:257616 +k1,10704:28134982,15743496:257616 +k1,10704:29411683,15743496:257616 +k1,10704:30681830,15743496:257616 +k1,10705:32583029,15743496:0 +) +(1,10705:6630773,16608576:25952256,513147,126483 +k1,10704:8147101,16608576:212817 +k1,10704:10435443,16608576:212817 +k1,10704:12677256,16608576:212818 +k1,10704:13421570,16608576:212817 +k1,10704:15332425,16608576:212817 +k1,10704:16413594,16608576:212817 +k1,10704:18389985,16608576:212817 +k1,10704:18958663,16608576:212818 +k1,10704:21866976,16608576:212817 +k1,10704:23364299,16608576:212817 +k1,10704:25918062,16608576:212817 +k1,10704:26486739,16608576:212817 +k1,10704:28379900,16608576:212818 +k1,10704:29252009,16608576:212817 +k1,10704:29820686,16608576:212817 +k1,10704:32583029,16608576:0 +) +(1,10705:6630773,17473656:25952256,505283,134348 +k1,10704:8862875,17473656:218836 +k1,10704:10524157,17473656:218835 +k1,10704:11531391,17473656:218836 +k1,10704:13632420,17473656:218835 +k1,10704:14923425,17473656:218836 +k1,10704:17166668,17473656:218836 +k1,10704:18827950,17473656:218835 +k1,10704:20377167,17473656:218836 +k1,10704:22379237,17473656:218835 +k1,10704:23466425,17473656:218836 +k1,10704:26473162,17473656:218835 +k1,10704:29074887,17473656:218836 +k1,10704:32583029,17473656:0 +) +(1,10705:6630773,18338736:25952256,505283,134348 +(1,10704:6837867,18338736:0,435480,115847 +r1,10761:10361540,18338736:3523673,551327,115847 +k1,10704:6837867,18338736:-3523673 +) +(1,10704:6837867,18338736:3523673,435480,115847 +g1,10704:9303127,18338736 +g1,10704:10006551,18338736 +h1,10704:10358263,18338736:0,411205,112570 +) +k1,10704:11021900,18338736:279596 +k1,10704:11657357,18338736:279597 +k1,10704:14024275,18338736:279596 +k1,10704:14835368,18338736:279596 +k1,10704:18067362,18338736:279597 +k1,10704:19740909,18338736:279596 +k1,10704:21472127,18338736:279596 +k1,10704:24134612,18338736:279596 +k1,10704:27776206,18338736:279597 +k1,10704:29074887,18338736:279596 +k1,10704:32583029,18338736:0 +) +(1,10705:6630773,19203816:25952256,513147,134348 +k1,10704:7765439,19203816:187015 +k1,10704:8971539,19203816:187015 +k1,10704:13782119,19203816:187015 +k1,10704:16352023,19203816:187015 +k1,10704:17155075,19203816:187014 +k1,10704:18361175,19203816:187015 +k1,10704:20983508,19203816:187015 +k1,10704:23257845,19203816:187015 +(1,10704:23464939,19203816:0,452978,115847 +r1,10761:28395459,19203816:4930520,568825,115847 +k1,10704:23464939,19203816:-4930520 +) +(1,10704:23464939,19203816:4930520,452978,115847 +k1,10704:23464939,19203816:3277 +h1,10704:28392182,19203816:0,411205,112570 +) +k1,10704:28963238,19203816:187015 +k1,10704:29778088,19203816:187015 +k1,10704:32583029,19203816:0 +) +(1,10705:6630773,20068896:25952256,505283,126483 +k1,10704:8541285,20068896:212474 +k1,10704:9622110,20068896:212473 +k1,10704:12622486,20068896:212474 +k1,10704:14038856,20068896:212474 +k1,10704:17759472,20068896:212474 +(1,10704:17966566,20068896:0,435480,115847 +r1,10761:21490239,20068896:3523673,551327,115847 +k1,10704:17966566,20068896:-3523673 +) +(1,10704:17966566,20068896:3523673,435480,115847 +g1,10704:20431826,20068896 +g1,10704:21135250,20068896 +h1,10704:21486962,20068896:0,411205,112570 +) +k1,10704:22083476,20068896:212473 +k1,10704:23747572,20068896:212474 +k1,10704:26342935,20068896:212474 +k1,10704:27171447,20068896:212474 +k1,10704:28403005,20068896:212473 +k1,10704:31394206,20068896:212474 +k1,10705:32583029,20068896:0 +) +(1,10705:6630773,20933976:25952256,513147,134348 +k1,10704:8014541,20933976:272277 +k1,10704:10988867,20933976:272277 +k1,10704:12280228,20933976:272276 +k1,10704:16060647,20933976:272277 +k1,10704:17280575,20933976:272277 +k1,10704:18709562,20933976:272277 +k1,10704:20185734,20933976:272276 +k1,10704:21074049,20933976:272277 +k1,10704:22365411,20933976:272277 +k1,10704:25073006,20933976:272277 +k1,10704:27168494,20933976:272276 +k1,10704:29074584,20933976:272277 +k1,10704:32051532,20933976:272277 +k1,10704:32583029,20933976:0 +) +(1,10705:6630773,21799056:25952256,513147,134348 +k1,10704:8105535,21799056:190256 +k1,10704:9057319,21799056:190256 +k1,10704:10982968,21799056:190256 +(1,10704:10982968,21799056:0,452978,115847 +r1,10761:13451505,21799056:2468537,568825,115847 +k1,10704:10982968,21799056:-2468537 +) +(1,10704:10982968,21799056:2468537,452978,115847 +k1,10704:10982968,21799056:3277 +h1,10704:13448228,21799056:0,411205,112570 +) +k1,10704:13641762,21799056:190257 +k1,10704:14851103,21799056:190256 +k1,10704:18386317,21799056:190256 +k1,10704:19235865,21799056:190256 +k1,10704:20445206,21799056:190256 +k1,10704:23070780,21799056:190256 +k1,10704:25348358,21799056:190256 +k1,10704:26221500,21799056:190257 +k1,10704:28061297,21799056:190256 +k1,10704:29638950,21799056:190256 +k1,10704:31714677,21799056:190256 +k1,10704:32583029,21799056:0 +) +(1,10705:6630773,22664136:25952256,505283,134348 +k1,10704:9583753,22664136:165078 +k1,10704:13256972,22664136:165077 +k1,10704:17667472,22664136:165078 +k1,10704:22353224,22664136:165078 +k1,10704:24213062,22664136:165077 +k1,10704:25708521,22664136:165078 +k1,10704:28607106,22664136:165078 +k1,10704:29763743,22664136:165077 +k1,10704:31966991,22664136:165078 +k1,10705:32583029,22664136:0 +) +(1,10705:6630773,23529216:25952256,513147,134348 +k1,10704:7381160,23529216:161874 +k1,10704:9241072,23529216:161874 +k1,10704:12116137,23529216:161874 +k1,10704:14870614,23529216:161873 +k1,10704:16299954,23529216:161874 +k1,10704:16817688,23529216:161874 +k1,10704:18852581,23529216:161874 +k1,10704:20868469,23529216:161874 +k1,10704:22049428,23529216:161874 +k1,10704:23745499,23529216:161873 +k1,10704:26350555,23529216:161874 +k1,10704:29399290,23529216:161874 +k1,10704:31206118,23529216:161874 +k1,10704:32583029,23529216:0 +) +(1,10705:6630773,24394296:25952256,513147,126483 +g1,10704:7849087,24394296 +g1,10704:10356494,24394296 +g1,10704:13334450,24394296 +g1,10704:14295207,24394296 +g1,10704:15513521,24394296 +g1,10704:18084498,24394296 +g1,10704:21152893,24394296 +g1,10704:22343682,24394296 +g1,10704:24581081,24394296 +g1,10704:25466472,24394296 +k1,10705:32583029,24394296:5408689 +g1,10705:32583029,24394296 +) +v1,10707:6630773,25079151:0,393216,0 +(1,10713:6630773,26763120:25952256,2077185,196608 +g1,10713:6630773,26763120 +g1,10713:6630773,26763120 +g1,10713:6434165,26763120 +(1,10713:6434165,26763120:0,2077185,196608 +r1,10761:32779637,26763120:26345472,2273793,196608 +k1,10713:6434165,26763120:-26345472 +) +(1,10713:6434165,26763120:26345472,2077185,196608 +[1,10713:6630773,26763120:25952256,1880577,0 +(1,10709:6630773,25313588:25952256,431045,86428 +(1,10708:6630773,25313588:0,0,0 +g1,10708:6630773,25313588 +g1,10708:6630773,25313588 +g1,10708:6303093,25313588 +(1,10708:6303093,25313588:0,0,0 +) +g1,10708:6630773,25313588 +) +g1,10709:10614220,25313588 +g1,10709:11610082,25313588 +g1,10709:15593529,25313588 +g1,10709:17585253,25313588 +g1,10709:18249161,25313588 +g1,10709:20572839,25313588 +h1,10709:20904793,25313588:0,0,0 +k1,10709:32583029,25313588:11678236 +g1,10709:32583029,25313588 +) +(1,10710:6630773,25998443:25952256,424439,86428 +h1,10710:6630773,25998443:0,0,0 +g1,10710:6962727,25998443 +g1,10710:7294681,25998443 +g1,10710:7626635,25998443 +g1,10710:7958589,25998443 +g1,10710:8290543,25998443 +g1,10710:8622497,25998443 +g1,10710:8954451,25998443 +g1,10710:12273991,25998443 +g1,10710:14265715,25998443 +g1,10710:14929623,25998443 +g1,10710:17585255,25998443 +g1,10710:17917209,25998443 +g1,10710:19908933,25998443 +g1,10710:21900657,25998443 +g1,10710:22564565,25998443 +h1,10710:24888243,25998443:0,0,0 +k1,10710:32583029,25998443:7694786 +g1,10710:32583029,25998443 +) +(1,10711:6630773,26683298:25952256,424439,79822 +h1,10711:6630773,26683298:0,0,0 +g1,10711:6962727,26683298 +g1,10711:7294681,26683298 +g1,10711:7626635,26683298 +g1,10711:7958589,26683298 +h1,10711:8290543,26683298:0,0,0 +k1,10711:32583029,26683298:24292486 +g1,10711:32583029,26683298 +) +] +) +g1,10713:32583029,26763120 +g1,10713:6630773,26763120 +g1,10713:6630773,26763120 +g1,10713:32583029,26763120 +g1,10713:32583029,26763120 +) +h1,10713:6630773,26959728:0,0,0 +v1,10717:6630773,27644583:0,393216,0 +(1,10727:6630773,30829334:25952256,3577967,196608 +g1,10727:6630773,30829334 +g1,10727:6630773,30829334 +g1,10727:6434165,30829334 +(1,10727:6434165,30829334:0,3577967,196608 +r1,10761:32779637,30829334:26345472,3774575,196608 +k1,10727:6434165,30829334:-26345472 +) +(1,10727:6434165,30829334:26345472,3577967,196608 +[1,10727:6630773,30829334:25952256,3381359,0 +(1,10719:6630773,27872414:25952256,424439,106246 +(1,10718:6630773,27872414:0,0,0 +g1,10718:6630773,27872414 +g1,10718:6630773,27872414 +g1,10718:6303093,27872414 +(1,10718:6303093,27872414:0,0,0 +) +g1,10718:6630773,27872414 +) +g1,10719:7294681,27872414 +g1,10719:8290543,27872414 +g1,10719:10946175,27872414 +g1,10719:11610083,27872414 +g1,10719:16921346,27872414 +g1,10719:19245024,27872414 +g1,10719:19908932,27872414 +g1,10719:20904794,27872414 +g1,10719:22232610,27872414 +g1,10719:22896518,27872414 +g1,10719:27211919,27872414 +g1,10719:29203643,27872414 +g1,10719:29867551,27872414 +h1,10719:31527321,27872414:0,0,0 +k1,10719:32583029,27872414:1055708 +g1,10719:32583029,27872414 +) +(1,10720:6630773,28557269:25952256,291767,0 +h1,10720:6630773,28557269:0,0,0 +h1,10720:6962727,28557269:0,0,0 +k1,10720:32583029,28557269:25620302 +g1,10720:32583029,28557269 +) +(1,10726:6630773,29373196:25952256,424439,86428 +(1,10722:6630773,29373196:0,0,0 +g1,10722:6630773,29373196 +g1,10722:6630773,29373196 +g1,10722:6303093,29373196 +(1,10722:6303093,29373196:0,0,0 +) +g1,10722:6630773,29373196 +) +g1,10726:7626635,29373196 +g1,10726:7958589,29373196 +g1,10726:8290543,29373196 +g1,10726:8622497,29373196 +g1,10726:8954451,29373196 +g1,10726:9286405,29373196 +g1,10726:9618359,29373196 +g1,10726:9950313,29373196 +g1,10726:10282267,29373196 +g1,10726:10614221,29373196 +g1,10726:10946175,29373196 +g1,10726:12605945,29373196 +g1,10726:12937899,29373196 +g1,10726:13269853,29373196 +k1,10726:13269853,29373196:0 +h1,10726:14597669,29373196:0,0,0 +k1,10726:32583029,29373196:17985360 +g1,10726:32583029,29373196 +) +(1,10726:6630773,30058051:25952256,424439,86428 +h1,10726:6630773,30058051:0,0,0 +g1,10726:7626635,30058051 +g1,10726:9286405,30058051 +g1,10726:12605944,30058051 +h1,10726:14597668,30058051:0,0,0 +k1,10726:32583028,30058051:17985360 +g1,10726:32583028,30058051 +) +(1,10726:6630773,30742906:25952256,424439,86428 +h1,10726:6630773,30742906:0,0,0 +g1,10726:7626635,30742906 +g1,10726:9286405,30742906 +g1,10726:9618359,30742906 +g1,10726:12605944,30742906 +g1,10726:12937898,30742906 +h1,10726:14597668,30742906:0,0,0 +k1,10726:32583028,30742906:17985360 +g1,10726:32583028,30742906 +) +] +) +g1,10727:32583029,30829334 +g1,10727:6630773,30829334 +g1,10727:6630773,30829334 +g1,10727:32583029,30829334 +g1,10727:32583029,30829334 +) +h1,10727:6630773,31025942:0,0,0 +v1,10731:6630773,31710797:0,393216,0 +(1,10741:6630773,34895548:25952256,3577967,196608 +g1,10741:6630773,34895548 +g1,10741:6630773,34895548 +g1,10741:6434165,34895548 +(1,10741:6434165,34895548:0,3577967,196608 +r1,10761:32779637,34895548:26345472,3774575,196608 +k1,10741:6434165,34895548:-26345472 +) +(1,10741:6434165,34895548:26345472,3577967,196608 +[1,10741:6630773,34895548:25952256,3381359,0 +(1,10733:6630773,31938628:25952256,424439,106246 +(1,10732:6630773,31938628:0,0,0 +g1,10732:6630773,31938628 +g1,10732:6630773,31938628 +g1,10732:6303093,31938628 +(1,10732:6303093,31938628:0,0,0 +) +g1,10732:6630773,31938628 +) +g1,10733:7294681,31938628 +g1,10733:8290543,31938628 +g1,10733:10946175,31938628 +g1,10733:11610083,31938628 +g1,10733:16921346,31938628 +g1,10733:19245024,31938628 +g1,10733:19908932,31938628 +g1,10733:20904794,31938628 +g1,10733:22232610,31938628 +g1,10733:22896518,31938628 +g1,10733:27211919,31938628 +g1,10733:29203643,31938628 +g1,10733:29867551,31938628 +h1,10733:31527321,31938628:0,0,0 +k1,10733:32583029,31938628:1055708 +g1,10733:32583029,31938628 +) +(1,10734:6630773,32623483:25952256,291767,0 +h1,10734:6630773,32623483:0,0,0 +h1,10734:6962727,32623483:0,0,0 +k1,10734:32583029,32623483:25620302 +g1,10734:32583029,32623483 +) +(1,10740:6630773,33439410:25952256,424439,86428 +(1,10736:6630773,33439410:0,0,0 +g1,10736:6630773,33439410 +g1,10736:6630773,33439410 +g1,10736:6303093,33439410 +(1,10736:6303093,33439410:0,0,0 +) +g1,10736:6630773,33439410 +) +g1,10740:7626635,33439410 +g1,10740:7958589,33439410 +g1,10740:8290543,33439410 +g1,10740:8622497,33439410 +g1,10740:8954451,33439410 +g1,10740:9286405,33439410 +g1,10740:9618359,33439410 +g1,10740:9950313,33439410 +g1,10740:10282267,33439410 +g1,10740:10614221,33439410 +g1,10740:10946175,33439410 +g1,10740:11278129,33439410 +g1,10740:12937899,33439410 +g1,10740:13269853,33439410 +g1,10740:13601807,33439410 +g1,10740:13933761,33439410 +g1,10740:14265715,33439410 +g1,10740:15925485,33439410 +g1,10740:16257439,33439410 +g1,10740:16589393,33439410 +g1,10740:16921347,33439410 +g1,10740:17253301,33439410 +k1,10740:17253301,33439410:0 +h1,10740:18581117,33439410:0,0,0 +k1,10740:32583029,33439410:14001912 +g1,10740:32583029,33439410 +) +(1,10740:6630773,34124265:25952256,424439,86428 +h1,10740:6630773,34124265:0,0,0 +g1,10740:7626635,34124265 +g1,10740:9286405,34124265 +g1,10740:12937898,34124265 +g1,10740:15925483,34124265 +h1,10740:18581114,34124265:0,0,0 +k1,10740:32583029,34124265:14001915 +g1,10740:32583029,34124265 +) +(1,10740:6630773,34809120:25952256,424439,86428 +h1,10740:6630773,34809120:0,0,0 +g1,10740:7626635,34809120 +g1,10740:9286405,34809120 +g1,10740:9618359,34809120 +g1,10740:12937898,34809120 +g1,10740:15925483,34809120 +h1,10740:18581114,34809120:0,0,0 +k1,10740:32583029,34809120:14001915 +g1,10740:32583029,34809120 +) +] +) +g1,10741:32583029,34895548 +g1,10741:6630773,34895548 +g1,10741:6630773,34895548 +g1,10741:32583029,34895548 +g1,10741:32583029,34895548 +) +h1,10741:6630773,35092156:0,0,0 +(1,10745:6630773,35957236:25952256,513147,126483 +h1,10744:6630773,35957236:983040,0,0 +k1,10744:8538261,35957236:296613 +k1,10744:9600990,35957236:296613 +k1,10744:12889322,35957236:296613 +k1,10744:15214930,35957236:296613 +k1,10744:16379895,35957236:296613 +k1,10744:18151723,35957236:296613 +k1,10744:19961562,35957236:296613 +k1,10744:22983163,35957236:296614 +k1,10744:26479244,35957236:296613 +k1,10744:29967460,35957236:296613 +k1,10744:30880111,35957236:296613 +k1,10744:31591469,35957236:296515 +k1,10744:32583029,35957236:0 +) +(1,10745:6630773,36822316:25952256,513147,134348 +k1,10744:9870108,36822316:213538 +k1,10744:11477597,36822316:213538 +k1,10744:12863574,36822316:213538 +k1,10744:15205721,36822316:213538 +k1,10744:19030293,36822316:213538 +k1,10744:21129302,36822316:213538 +k1,10744:22447122,36822316:213538 +k1,10744:23408426,36822316:213538 +k1,10744:25489740,36822316:213538 +k1,10744:27438671,36822316:213538 +k1,10744:29063855,36822316:213538 +k1,10744:31966991,36822316:213538 +k1,10744:32583029,36822316:0 +) +(1,10745:6630773,37687396:25952256,505283,134348 +k1,10744:12323269,37687396:197302 +(1,10744:12323269,37687396:0,452978,115847 +r1,10761:14088383,37687396:1765114,568825,115847 +k1,10744:12323269,37687396:-1765114 +) +(1,10744:12323269,37687396:1765114,452978,115847 +g1,10744:13029970,37687396 +g1,10744:13733394,37687396 +h1,10744:14085106,37687396:0,411205,112570 +) +k1,10744:14459355,37687396:197302 +k1,10744:15416875,37687396:197302 +k1,10744:19770470,37687396:197302 +k1,10744:21476411,37687396:197302 +k1,10744:23742029,37687396:197302 +k1,10744:25319519,37687396:197302 +k1,10744:26621103,37687396:197302 +k1,10744:27566171,37687396:197302 +k1,10744:29631249,37687396:197302 +k1,10744:31563944,37687396:197302 +k1,10744:32583029,37687396:0 +) +(1,10745:6630773,38552476:25952256,513147,126483 +k1,10744:8535631,38552476:251385 +k1,10744:10871060,38552476:251384 +k1,10744:11808607,38552476:251385 +k1,10744:13007642,38552476:251384 +k1,10744:15984014,38552476:251385 +k1,10744:19434866,38552476:251384 +k1,10744:20877696,38552476:251385 +k1,10744:25354186,38552476:251384 +k1,10744:26891387,38552476:251385 +k1,10744:29348058,38552476:251384 +k1,10744:30250871,38552476:251385 +k1,10744:31521340,38552476:251384 +(1,10744:31521340,38552476:0,414482,115847 +r1,10761:32583029,38552476:1061689,530329,115847 +k1,10744:31521340,38552476:-1061689 +) +(1,10744:31521340,38552476:1061689,414482,115847 +k1,10744:31521340,38552476:3277 +h1,10744:32579752,38552476:0,411205,112570 +) +k1,10744:32583029,38552476:0 +) +(1,10745:6630773,39417556:25952256,513147,126483 +k1,10744:10160368,39417556:248863 +k1,10744:11068522,39417556:248862 +k1,10744:13080959,39417556:248863 +k1,10744:16529289,39417556:248862 +k1,10744:17265690,39417556:248813 +k1,10744:18527083,39417556:248862 +k1,10744:21611033,39417556:248863 +k1,10744:25164876,39417556:248862 +k1,10744:26065167,39417556:248863 +k1,10744:27333114,39417556:248862 +k1,10744:30919070,39417556:248863 +k1,10745:32583029,39417556:0 +) +(1,10745:6630773,40282636:25952256,513147,126483 +k1,10744:8483709,40282636:229609 +(1,10744:8483709,40282636:0,424981,115847 +r1,10761:12710806,40282636:4227097,540828,115847 +k1,10744:8483709,40282636:-4227097 +) +(1,10744:8483709,40282636:4227097,424981,115847 +g1,10744:11652393,40282636 +g1,10744:12355817,40282636 +h1,10744:12707529,40282636:0,411205,112570 +) +k1,10744:12940415,40282636:229609 +k1,10744:15659081,40282636:229609 +k1,10744:16842238,40282636:229608 +k1,10744:19865647,40282636:229609 +k1,10744:22841870,40282636:229609 +(1,10744:22841870,40282636:0,414482,115847 +r1,10761:23200136,40282636:358266,530329,115847 +k1,10744:22841870,40282636:-358266 +) +(1,10744:22841870,40282636:358266,414482,115847 +k1,10744:22841870,40282636:3277 +h1,10744:23196859,40282636:0,411205,112570 +) +k1,10744:23429745,40282636:229609 +k1,10744:24275392,40282636:229609 +k1,10744:25987425,40282636:229609 +k1,10744:27731570,40282636:229608 +(1,10744:27938664,40282636:0,459977,115847 +r1,10761:28296930,40282636:358266,575824,115847 +k1,10744:27938664,40282636:-358266 +) +(1,10744:27938664,40282636:358266,459977,115847 +k1,10744:27938664,40282636:3277 +h1,10744:28293653,40282636:0,411205,112570 +) +k1,10744:28733633,40282636:229609 +k1,10744:30154687,40282636:229609 +k1,10744:31821501,40282636:229609 +k1,10744:32583029,40282636:0 +) +(1,10745:6630773,41147716:25952256,513147,126483 +g1,10744:8568017,41147716 +g1,10744:9123106,41147716 +g1,10744:12080090,41147716 +g1,10744:12930747,41147716 +g1,10744:13918374,41147716 +g1,10744:16358934,41147716 +g1,10744:18686772,41147716 +g1,10744:22166733,41147716 +(1,10744:22373827,41147716:0,435480,115847 +r1,10761:24490653,41147716:2116826,551327,115847 +k1,10744:22373827,41147716:-2116826 +) +(1,10744:22373827,41147716:2116826,435480,115847 +g1,10744:23432240,41147716 +g1,10744:24135664,41147716 +h1,10744:24487376,41147716:0,411205,112570 +) +k1,10745:32583029,41147716:7711612 +g1,10745:32583029,41147716 +) +v1,10747:6630773,41832571:0,393216,0 +(1,10757:6630773,45010716:25952256,3571361,196608 +g1,10757:6630773,45010716 +g1,10757:6630773,45010716 +g1,10757:6434165,45010716 +(1,10757:6434165,45010716:0,3571361,196608 +r1,10761:32779637,45010716:26345472,3767969,196608 +k1,10757:6434165,45010716:-26345472 +) +(1,10757:6434165,45010716:26345472,3571361,196608 +[1,10757:6630773,45010716:25952256,3374753,0 +(1,10749:6630773,42060402:25952256,424439,112852 +(1,10748:6630773,42060402:0,0,0 +g1,10748:6630773,42060402 +g1,10748:6630773,42060402 +g1,10748:6303093,42060402 +(1,10748:6303093,42060402:0,0,0 +) +g1,10748:6630773,42060402 +) +k1,10749:6630773,42060402:0 +g1,10749:12273990,42060402 +g1,10749:12937898,42060402 +g1,10749:13933760,42060402 +g1,10749:15593530,42060402 +g1,10749:18581115,42060402 +g1,10749:20240885,42060402 +g1,10749:21568701,42060402 +k1,10749:21568701,42060402:1652 +h1,10749:23562077,42060402:0,0,0 +k1,10749:32583029,42060402:9020952 +g1,10749:32583029,42060402 +) +(1,10750:6630773,42745257:25952256,431045,79822 +h1,10750:6630773,42745257:0,0,0 +g1,10750:9618358,42745257 +g1,10750:10614220,42745257 +k1,10750:10614220,42745257:0 +h1,10750:13601806,42745257:0,0,0 +k1,10750:32583030,42745257:18981224 +g1,10750:32583030,42745257 +) +(1,10751:6630773,43430112:25952256,431045,106246 +h1,10751:6630773,43430112:0,0,0 +g1,10751:7294681,43430112 +g1,10751:8290543,43430112 +g1,10751:11278129,43430112 +g1,10751:11942037,43430112 +g1,10751:15261576,43430112 +g1,10751:16589392,43430112 +g1,10751:17253300,43430112 +g1,10751:18913070,43430112 +g1,10751:19908932,43430112 +g1,10751:20572840,43430112 +h1,10751:21236748,43430112:0,0,0 +k1,10751:32583029,43430112:11346281 +g1,10751:32583029,43430112 +) +(1,10752:6630773,44114967:25952256,424439,79822 +h1,10752:6630773,44114967:0,0,0 +k1,10752:6630773,44114967:0 +h1,10752:8622497,44114967:0,0,0 +k1,10752:32583029,44114967:23960532 +g1,10752:32583029,44114967 +) +(1,10756:6630773,44930894:25952256,424439,79822 +(1,10754:6630773,44930894:0,0,0 +g1,10754:6630773,44930894 +g1,10754:6630773,44930894 +g1,10754:6303093,44930894 +(1,10754:6303093,44930894:0,0,0 +) +g1,10754:6630773,44930894 +) +g1,10756:7626635,44930894 +g1,10756:7958589,44930894 +g1,10756:9286405,44930894 +g1,10756:11610083,44930894 +g1,10756:12937899,44930894 +g1,10756:14597669,44930894 +g1,10756:16257439,44930894 +g1,10756:17917209,44930894 +g1,10756:19576979,44930894 +h1,10756:20572841,44930894:0,0,0 +k1,10756:32583029,44930894:12010188 +g1,10756:32583029,44930894 +) +] +) +g1,10757:32583029,45010716 +g1,10757:6630773,45010716 +g1,10757:6630773,45010716 +g1,10757:32583029,45010716 +g1,10757:32583029,45010716 +) +h1,10757:6630773,45207324:0,0,0 +] +(1,10761:32583029,45706769:0,0,0 +g1,10761:32583029,45706769 +) +) +] +(1,10761:6630773,47279633:25952256,0,0 +h1,10761:6630773,47279633:25952256,0,0 +) +] +(1,10761:4262630,4025873:0,0,0 +[1,10761:-473656,4025873:0,0,0 +(1,10761:-473656,-710413:0,0,0 +(1,10761:-473656,-710413:0,0,0 +g1,10761:-473656,-710413 +) +g1,10761:-473656,-710413 +) +] +) +] +!29949 +}170 +Input:1621:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1622:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1623:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1624:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1625:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1626:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1627:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1628:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1629:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1630:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1631:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1632:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1633:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1634:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1635:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1636:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1637:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1638:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1639:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1640:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1641:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1642:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1643:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!2174 +{171 +[1,10795:4262630,47279633:28320399,43253760,0 +(1,10795:4262630,4025873:0,0,0 +[1,10795:-473656,4025873:0,0,0 +(1,10795:-473656,-710413:0,0,0 +(1,10795:-473656,-644877:0,0,0 +k1,10795:-473656,-644877:-65536 ) +(1,10795:-473656,4736287:0,0,0 +k1,10795:-473656,4736287:5209943 ) -) -] -[1,11584:3078558,4812305:0,0,0 -(1,11584:3078558,2439708:0,1703936,0 -g1,11584:29030814,2439708 -g1,11584:36135244,2439708 -(1,10825:36135244,2439708:1720320,1703936,0 -(1,10825:36135244,2439708:16384,1703936,0 -[1,10825:36135244,2439708:25952256,1703936,0 -(1,10825:36135244,1915420:25952256,1179648,0 -(1,10825:36135244,1915420:16384,1179648,0 -r1,11584:36151628,1915420:16384,1179648,0 -) -k1,10825:62087500,1915420:25935872 -g1,10825:62087500,1915420 +g1,10795:-473656,-710413 ) ] ) -g1,10825:36675916,2439708 -(1,10825:36675916,2439708:1179648,16384,0 -r1,11584:37855564,2439708:1179648,16384,0 +[1,10795:6630773,47279633:25952256,43253760,0 +[1,10795:6630773,4812305:25952256,786432,0 +(1,10795:6630773,4812305:25952256,505283,134348 +(1,10795:6630773,4812305:25952256,505283,134348 +g1,10795:3078558,4812305 +[1,10795:3078558,4812305:0,0,0 +(1,10795:3078558,2439708:0,1703936,0 +k1,10795:1358238,2439708:-1720320 +(1,8606:1358238,2439708:1720320,1703936,0 +(1,8606:1358238,2439708:1179648,16384,0 +r1,10795:2537886,2439708:1179648,16384,0 ) +g1,8606:3062174,2439708 +(1,8606:3062174,2439708:16384,1703936,0 +[1,8606:3062174,2439708:25952256,1703936,0 +(1,8606:3062174,1915420:25952256,1179648,0 +(1,8606:3062174,1915420:16384,1179648,0 +r1,10795:3078558,1915420:16384,1179648,0 ) -k1,11584:3078556,2439708:-34777008 +k1,8606:29014430,1915420:25935872 +g1,8606:29014430,1915420 ) ] -[1,11584:3078558,4812305:0,0,0 -(1,11584:3078558,49800853:0,16384,2228224 -k1,11584:1358238,49800853:-1720320 -(1,10825:1358238,49800853:1720320,16384,2228224 -(1,10825:1358238,49800853:1179648,16384,0 -r1,11584:2537886,49800853:1179648,16384,0 ) -g1,10825:3062174,49800853 -(1,10825:3062174,52029077:16384,1703936,0 -[1,10825:3062174,52029077:25952256,1703936,0 -(1,10825:3062174,51504789:25952256,1179648,0 -(1,10825:3062174,51504789:16384,1179648,0 -r1,11584:3078558,51504789:16384,1179648,0 ) -k1,10825:29014430,51504789:25935872 -g1,10825:29014430,51504789 ) ] +[1,10795:3078558,4812305:0,0,0 +(1,10795:3078558,2439708:0,1703936,0 +g1,10795:29030814,2439708 +g1,10795:36135244,2439708 +(1,8606:36135244,2439708:1720320,1703936,0 +(1,8606:36135244,2439708:16384,1703936,0 +[1,8606:36135244,2439708:25952256,1703936,0 +(1,8606:36135244,1915420:25952256,1179648,0 +(1,8606:36135244,1915420:16384,1179648,0 +r1,10795:36151628,1915420:16384,1179648,0 ) -) +k1,8606:62087500,1915420:25935872 +g1,8606:62087500,1915420 ) ] -[1,11584:3078558,4812305:0,0,0 -(1,11584:3078558,49800853:0,16384,2228224 -g1,11584:29030814,49800853 -g1,11584:36135244,49800853 -(1,10825:36135244,49800853:1720320,16384,2228224 -(1,10825:36135244,52029077:16384,1703936,0 -[1,10825:36135244,52029077:25952256,1703936,0 -(1,10825:36135244,51504789:25952256,1179648,0 -(1,10825:36135244,51504789:16384,1179648,0 -r1,11584:36151628,51504789:16384,1179648,0 ) -k1,10825:62087500,51504789:25935872 -g1,10825:62087500,51504789 -) -] -) -g1,10825:36675916,49800853 -(1,10825:36675916,49800853:1179648,16384,0 -r1,11584:37855564,49800853:1179648,16384,0 -) -) -k1,11584:3078556,49800853:-34777008 -) -] -g1,11584:6630773,4812305 -k1,11584:23552825,4812305:15726675 -g1,11584:25175496,4812305 -g1,11584:25997972,4812305 -g1,11584:28481131,4812305 -g1,11584:30046786,4812305 -) -) -] -[1,11584:6630773,45706769:25952256,40108032,0 -(1,11584:6630773,45706769:25952256,40108032,0 -(1,11584:6630773,45706769:0,0,0 -g1,11584:6630773,45706769 -) -[1,11584:6630773,45706769:25952256,40108032,0 -v1,11519:6630773,6254097:0,393216,0 -(1,11519:6630773,16563488:25952256,10702607,0 -g1,11519:6630773,16563488 -g1,11519:6303093,16563488 -r1,11584:6401397,16563488:98304,10702607,0 -g1,11519:6600626,16563488 -g1,11519:6797234,16563488 -[1,11519:6797234,16563488:25785795,10702607,0 -v1,11485:6797234,6254097:0,393216,0 -(1,11511:6797234,15842592:25785795,9981711,196608 -g1,11511:6797234,15842592 -g1,11511:6797234,15842592 -g1,11511:6600626,15842592 -(1,11511:6600626,15842592:0,9981711,196608 -r1,11584:32779637,15842592:26179011,10178319,196608 -k1,11511:6600625,15842592:-26179012 -) -(1,11511:6600626,15842592:26179011,9981711,196608 -[1,11511:6797234,15842592:25785795,9785103,0 -(1,11487:6797234,6461715:25785795,404226,101187 -(1,11486:6797234,6461715:0,0,0 -g1,11486:6797234,6461715 -g1,11486:6797234,6461715 -g1,11486:6469554,6461715 -(1,11486:6469554,6461715:0,0,0 -) -g1,11486:6797234,6461715 -) -g1,11487:7429526,6461715 -g1,11487:8377964,6461715 -k1,11487:8377964,6461715:0 -h1,11487:12804003,6461715:0,0,0 -k1,11487:32583029,6461715:19779026 -g1,11487:32583029,6461715 -) -(1,11496:6797234,7127893:25785795,404226,101187 -(1,11489:6797234,7127893:0,0,0 -g1,11489:6797234,7127893 -g1,11489:6797234,7127893 -g1,11489:6469554,7127893 -(1,11489:6469554,7127893:0,0,0 -) -g1,11489:6797234,7127893 -) -g1,11496:7745671,7127893 -g1,11496:8061817,7127893 -g1,11496:8377963,7127893 -g1,11496:10274837,7127893 -h1,11496:11539420,7127893:0,0,0 -k1,11496:32583028,7127893:21043608 -g1,11496:32583028,7127893 -) -(1,11496:6797234,7794071:25785795,388497,0 -h1,11496:6797234,7794071:0,0,0 -g1,11496:7745671,7794071 -g1,11496:8377963,7794071 -g1,11496:8694109,7794071 -g1,11496:9010255,7794071 -g1,11496:9326401,7794071 -g1,11496:9642547,7794071 -g1,11496:10274839,7794071 -g1,11496:10590985,7794071 -g1,11496:10907131,7794071 -g1,11496:11223277,7794071 -h1,11496:11539423,7794071:0,0,0 -k1,11496:32583029,7794071:21043606 -g1,11496:32583029,7794071 -) -(1,11496:6797234,8460249:25785795,388497,9436 -h1,11496:6797234,8460249:0,0,0 -g1,11496:7745671,8460249 -g1,11496:8377963,8460249 -g1,11496:8694109,8460249 -g1,11496:9010255,8460249 -g1,11496:9326401,8460249 -g1,11496:9642547,8460249 -g1,11496:10274839,8460249 -g1,11496:10590985,8460249 -g1,11496:10907131,8460249 -h1,11496:11539422,8460249:0,0,0 -k1,11496:32583030,8460249:21043608 -g1,11496:32583030,8460249 -) -(1,11496:6797234,9126427:25785795,388497,9436 -h1,11496:6797234,9126427:0,0,0 -g1,11496:7745671,9126427 -g1,11496:8377963,9126427 -g1,11496:8694109,9126427 -g1,11496:9010255,9126427 -g1,11496:9326401,9126427 -g1,11496:9642547,9126427 -g1,11496:10274839,9126427 -g1,11496:10590985,9126427 -g1,11496:10907131,9126427 -g1,11496:11223277,9126427 -h1,11496:11539423,9126427:0,0,0 -k1,11496:32583029,9126427:21043606 -g1,11496:32583029,9126427 -) -(1,11496:6797234,9792605:25785795,388497,0 -h1,11496:6797234,9792605:0,0,0 -g1,11496:7745671,9792605 -g1,11496:8377963,9792605 -g1,11496:8694109,9792605 -g1,11496:9010255,9792605 -g1,11496:9326401,9792605 -g1,11496:9642547,9792605 -g1,11496:10274839,9792605 -g1,11496:10590985,9792605 -g1,11496:10907131,9792605 -h1,11496:11539422,9792605:0,0,0 -k1,11496:32583030,9792605:21043608 -g1,11496:32583030,9792605 -) -(1,11496:6797234,10458783:25785795,388497,9436 -h1,11496:6797234,10458783:0,0,0 -g1,11496:7745671,10458783 -g1,11496:8377963,10458783 -g1,11496:8694109,10458783 -g1,11496:9010255,10458783 -g1,11496:9326401,10458783 -g1,11496:9642547,10458783 -g1,11496:10274839,10458783 -g1,11496:10590985,10458783 -g1,11496:10907131,10458783 -h1,11496:11539422,10458783:0,0,0 -k1,11496:32583030,10458783:21043608 -g1,11496:32583030,10458783 -) -(1,11498:6797234,11780321:25785795,404226,76021 -(1,11497:6797234,11780321:0,0,0 -g1,11497:6797234,11780321 -g1,11497:6797234,11780321 -g1,11497:6469554,11780321 -(1,11497:6469554,11780321:0,0,0 -) -g1,11497:6797234,11780321 -) -k1,11498:6797234,11780321:0 -h1,11498:8694108,11780321:0,0,0 -k1,11498:32583028,11780321:23888920 -g1,11498:32583028,11780321 -) -(1,11504:6797234,12446499:25785795,410518,9436 -(1,11500:6797234,12446499:0,0,0 -g1,11500:6797234,12446499 -g1,11500:6797234,12446499 -g1,11500:6469554,12446499 -(1,11500:6469554,12446499:0,0,0 -) -g1,11500:6797234,12446499 -) -g1,11504:7745671,12446499 -g1,11504:12171712,12446499 -g1,11504:13120149,12446499 -g1,11504:14700878,12446499 -g1,11504:15649315,12446499 -g1,11504:15965461,12446499 -g1,11504:16597753,12446499 -h1,11504:19759210,12446499:0,0,0 -k1,11504:32583029,12446499:12823819 -g1,11504:32583029,12446499 -) -(1,11504:6797234,13112677:25785795,410518,101187 -h1,11504:6797234,13112677:0,0,0 -g1,11504:7745671,13112677 -g1,11504:8061817,13112677 -g1,11504:8694109,13112677 -g1,11504:10907129,13112677 -g1,11504:12171712,13112677 -g1,11504:12487858,13112677 -g1,11504:13120150,13112677 -g1,11504:13752442,13112677 -g1,11504:14384734,13112677 -g1,11504:15017026,13112677 -g1,11504:15649318,13112677 -g1,11504:16281610,13112677 -g1,11504:17230047,13112677 -g1,11504:18178484,13112677 -g1,11504:19126921,13112677 -g1,11504:20075358,13112677 -h1,11504:21023795,13112677:0,0,0 -k1,11504:32583029,13112677:11559234 -g1,11504:32583029,13112677 -) -(1,11504:6797234,13778855:25785795,410518,31456 -h1,11504:6797234,13778855:0,0,0 -g1,11504:7745671,13778855 -g1,11504:8061817,13778855 -g1,11504:8694109,13778855 -g1,11504:10274838,13778855 -g1,11504:10907130,13778855 -g1,11504:12171713,13778855 -g1,11504:12487859,13778855 -g1,11504:13120151,13778855 -g1,11504:14068588,13778855 -g1,11504:14700880,13778855 -g1,11504:15649317,13778855 -g1,11504:16597754,13778855 -g1,11504:17546191,13778855 -g1,11504:18494628,13778855 -g1,11504:19443065,13778855 -g1,11504:20391502,13778855 -g1,11504:21339939,13778855 -h1,11504:22288376,13778855:0,0,0 -k1,11504:32583029,13778855:10294653 -g1,11504:32583029,13778855 -) -(1,11506:6797234,15100393:25785795,410518,101187 -(1,11505:6797234,15100393:0,0,0 -g1,11505:6797234,15100393 -g1,11505:6797234,15100393 -g1,11505:6469554,15100393 -(1,11505:6469554,15100393:0,0,0 -) -g1,11505:6797234,15100393 -) -k1,11506:6797234,15100393:0 -g1,11506:9326400,15100393 -g1,11506:10274837,15100393 -g1,11506:13752440,15100393 -g1,11506:14384732,15100393 -g1,11506:15649315,15100393 -g1,11506:16913898,15100393 -g1,11506:18810772,15100393 -g1,11506:20391501,15100393 -g1,11506:22288375,15100393 -k1,11506:22288375,15100393:24117 -h1,11506:25157803,15100393:0,0,0 -k1,11506:32583029,15100393:7425226 -g1,11506:32583029,15100393 -) -(1,11510:6797234,15766571:25785795,404226,76021 -(1,11508:6797234,15766571:0,0,0 -g1,11508:6797234,15766571 -g1,11508:6797234,15766571 -g1,11508:6469554,15766571 -(1,11508:6469554,15766571:0,0,0 -) -g1,11508:6797234,15766571 -) -g1,11510:7745671,15766571 -g1,11510:9010254,15766571 -h1,11510:10274837,15766571:0,0,0 -k1,11510:32583029,15766571:22308192 -g1,11510:32583029,15766571 -) -] -) -g1,11511:32583029,15842592 -g1,11511:6797234,15842592 -g1,11511:6797234,15842592 -g1,11511:32583029,15842592 -g1,11511:32583029,15842592 -) -h1,11511:6797234,16039200:0,0,0 -] -g1,11519:32583029,16563488 -) -h1,11519:6630773,16563488:0,0,0 -(1,11521:6630773,19371056:25952256,32768,229376 -(1,11521:6630773,19371056:0,32768,229376 -(1,11521:6630773,19371056:5505024,32768,229376 -r1,11584:12135797,19371056:5505024,262144,229376 -) -k1,11521:6630773,19371056:-5505024 -) -(1,11521:6630773,19371056:25952256,32768,0 -r1,11584:32583029,19371056:25952256,32768,0 -) -) -(1,11521:6630773,20975384:25952256,615776,151780 -(1,11521:6630773,20975384:1974731,582746,14155 -g1,11521:6630773,20975384 -g1,11521:8605504,20975384 -) -g1,11521:11153544,20975384 -g1,11521:12211295,20975384 -k1,11521:32583029,20975384:17805606 -g1,11521:32583029,20975384 -) -(1,11525:6630773,22210088:25952256,513147,134348 -k1,11524:8001224,22210088:173764 -k1,11524:10890800,22210088:173764 -k1,11524:11723856,22210088:173764 -k1,11524:13965936,22210088:173764 -k1,11524:14671197,22210088:173764 -k1,11524:18509734,22210088:173764 -k1,11524:19445026,22210088:173764 -k1,11524:20637876,22210088:173765 -k1,11524:23182077,22210088:173764 -k1,11524:24916909,22210088:173764 -k1,11524:25749965,22210088:173764 -k1,11524:26279589,22210088:173764 -k1,11524:29469320,22210088:173764 -k1,11524:30839771,22210088:173764 -k1,11525:32583029,22210088:0 -) -(1,11525:6630773,23051576:25952256,505283,134348 -k1,11524:7917526,23051576:178539 -k1,11524:9168233,23051576:178538 -k1,11524:10413043,23051576:178539 -k1,11524:11610666,23051576:178538 -k1,11524:13164806,23051576:178539 -k1,11524:16169912,23051576:178538 -k1,11524:18046489,23051576:178539 -k1,11524:20694425,23051576:178539 -k1,11524:22458934,23051576:178538 -k1,11524:24936476,23051576:178539 -k1,11524:25646511,23051576:178538 -k1,11524:27523088,23051576:178539 -k1,11524:29991454,23051576:178538 -k1,11524:31563944,23051576:178539 -k1,11524:32583029,23051576:0 -) -(1,11525:6630773,23893064:25952256,513147,126483 -k1,11524:8551381,23893064:267135 -k1,11524:10556531,23893064:267135 -k1,11524:13226215,23893064:267134 -k1,11524:14121185,23893064:267135 -k1,11524:15881886,23893064:267135 -k1,11524:16504881,23893064:267135 -k1,11524:19598583,23893064:267134 -k1,11524:21022428,23893064:267135 -k1,11524:22422025,23893064:267135 -k1,11524:23436926,23893064:267135 -k1,11524:26889111,23893064:267135 -k1,11524:27917773,23893064:267134 -k1,11524:28973306,23893064:267135 -k1,11524:32583029,23893064:0 -) -(1,11525:6630773,24734552:25952256,513147,134348 -k1,11524:8544374,24734552:175586 -k1,11524:9911405,24734552:175586 -k1,11524:11106076,24734552:175586 -k1,11524:12983632,24734552:175586 -k1,11524:15378922,24734552:175586 -k1,11524:16626677,24734552:175586 -k1,11524:19445984,24734552:175585 -k1,11524:22806620,24734552:175586 -k1,11524:23743734,24734552:175586 -k1,11524:27116822,24734552:175586 -k1,11524:28311493,24734552:175586 -k1,11524:30225094,24734552:175586 -k1,11524:31794631,24734552:175586 -k1,11524:32583029,24734552:0 -) -(1,11525:6630773,25576040:25952256,355205,126483 -g1,11524:8568017,25576040 -k1,11525:32583030,25576040:22053520 -g1,11525:32583030,25576040 -) -(1,11527:6630773,26417528:25952256,513147,134348 -h1,11526:6630773,26417528:983040,0,0 -k1,11526:8619690,26417528:187988 -k1,11526:9826763,26417528:187988 -k1,11526:10429584,26417528:187978 -k1,11526:13459868,26417528:187988 -k1,11526:14748861,26417528:187988 -k1,11526:16069967,26417528:187988 -k1,11526:18984909,26417528:187989 -k1,11526:21127836,26417528:187988 -k1,11526:22263475,26417528:187988 -k1,11526:24336934,26417528:187988 -k1,11526:25334293,26417528:187989 -k1,11526:29240138,26417528:187988 -k1,11526:29959623,26417528:187988 -k1,11526:32583029,26417528:0 -) -(1,11527:6630773,27259016:25952256,513147,134348 -k1,11526:7685200,27259016:186075 -k1,11526:10051659,27259016:186076 -k1,11526:11590397,27259016:186075 -k1,11526:13101610,27259016:186075 -k1,11526:14353957,27259016:186076 -k1,11526:15191460,27259016:186075 -k1,11526:19168793,27259016:186075 -k1,11526:21083053,27259016:186076 -k1,11526:23337444,27259016:186075 -k1,11526:24808026,27259016:186076 -k1,11526:25985661,27259016:186075 -k1,11526:27493597,27259016:186075 -k1,11526:28338965,27259016:186076 -k1,11526:31541007,27259016:186075 -k1,11526:32583029,27259016:0 -) -(1,11527:6630773,28100504:25952256,513147,126483 -k1,11526:9482931,28100504:190741 -(1,11526:9482931,28100504:0,452978,115847 -r1,11584:10192909,28100504:709978,568825,115847 -k1,11526:9482931,28100504:-709978 -) -(1,11526:9482931,28100504:709978,452978,115847 -k1,11526:9482931,28100504:3277 -h1,11526:10189632,28100504:0,411205,112570 -) -k1,11526:10383650,28100504:190741 -k1,11526:11105889,28100504:190742 -k1,11526:11652490,28100504:190741 -k1,11526:14600986,28100504:190741 -k1,11526:17173305,28100504:190741 -k1,11526:17980085,28100504:190742 -k1,11526:18585661,28100504:190733 -k1,11526:20170353,28100504:190741 -k1,11526:21380179,28100504:190741 -k1,11526:23251263,28100504:190741 -k1,11526:24101297,28100504:190742 -k1,11526:25311123,28100504:190741 -k1,11526:29825274,28100504:190741 -k1,11526:32583029,28100504:0 -) -(1,11527:6630773,28941992:25952256,513147,134348 -$1,11526:7210111,28941992 -k1,11526:7528004,28941992:144223 -k1,11526:8149984,28941992:144223 -k1,11526:9162559,28941992:144223 -k1,11526:10399267,28941992:144223 -k1,11526:11562575,28941992:144223 -k1,11526:13360271,28941992:144223 -k1,11526:15242509,28941992:144223 -k1,11526:16334382,28941992:144222 -k1,11526:17635315,28941992:144223 -k1,11526:18438830,28941992:144223 -k1,11526:19680781,28941992:144223 -k1,11526:22840315,28941992:144223 -k1,11526:24003623,28941992:144223 -k1,11526:26583164,28941992:144223 -k1,11526:29809545,28941992:144223 -k1,11526:32583029,28941992:0 -) -(1,11527:6630773,29783480:25952256,505283,7863 -k1,11527:32583028,29783480:23558880 -g1,11527:32583028,29783480 -) -v1,11529:6630773,30973946:0,393216,0 -(1,11556:6630773,39219267:25952256,8638537,196608 -g1,11556:6630773,39219267 -g1,11556:6630773,39219267 -g1,11556:6434165,39219267 -(1,11556:6434165,39219267:0,8638537,196608 -r1,11584:32779637,39219267:26345472,8835145,196608 -k1,11556:6434165,39219267:-26345472 -) -(1,11556:6434165,39219267:26345472,8638537,196608 -[1,11556:6630773,39219267:25952256,8441929,0 -(1,11531:6630773,31181564:25952256,404226,101187 -(1,11530:6630773,31181564:0,0,0 -g1,11530:6630773,31181564 -g1,11530:6630773,31181564 -g1,11530:6303093,31181564 -(1,11530:6303093,31181564:0,0,0 -) -g1,11530:6630773,31181564 -) -h1,11531:7263064,31181564:0,0,0 -k1,11531:32583028,31181564:25319964 -g1,11531:32583028,31181564 -) -(1,11535:6630773,31847742:25952256,404226,76021 -(1,11533:6630773,31847742:0,0,0 -g1,11533:6630773,31847742 -g1,11533:6630773,31847742 -g1,11533:6303093,31847742 -(1,11533:6303093,31847742:0,0,0 -) -g1,11533:6630773,31847742 -) -g1,11535:7579210,31847742 -g1,11535:8843793,31847742 -h1,11535:11372958,31847742:0,0,0 -k1,11535:32583030,31847742:21210072 -g1,11535:32583030,31847742 -) -(1,11537:6630773,33169280:25952256,404226,101187 -(1,11536:6630773,33169280:0,0,0 -g1,11536:6630773,33169280 -g1,11536:6630773,33169280 -g1,11536:6303093,33169280 -(1,11536:6303093,33169280:0,0,0 -) -g1,11536:6630773,33169280 -) -g1,11537:7579210,33169280 -g1,11537:8527648,33169280 -g1,11537:10740668,33169280 -h1,11537:12005251,33169280:0,0,0 -k1,11537:32583029,33169280:20577778 -g1,11537:32583029,33169280 -) -(1,11538:6630773,33835458:25952256,404226,101187 -h1,11538:6630773,33835458:0,0,0 -h1,11538:7263064,33835458:0,0,0 -k1,11538:32583028,33835458:25319964 -g1,11538:32583028,33835458 -) -(1,11542:6630773,34501636:25952256,404226,101187 -(1,11540:6630773,34501636:0,0,0 -g1,11540:6630773,34501636 -g1,11540:6630773,34501636 -g1,11540:6303093,34501636 -(1,11540:6303093,34501636:0,0,0 -) -g1,11540:6630773,34501636 -) -g1,11542:7579210,34501636 -g1,11542:8843793,34501636 -g1,11542:11056813,34501636 -h1,11542:12321396,34501636:0,0,0 -k1,11542:32583028,34501636:20261632 -g1,11542:32583028,34501636 -) -(1,11544:6630773,35823174:25952256,404226,101187 -(1,11543:6630773,35823174:0,0,0 -g1,11543:6630773,35823174 -g1,11543:6630773,35823174 -g1,11543:6303093,35823174 -(1,11543:6303093,35823174:0,0,0 -) -g1,11543:6630773,35823174 -) -k1,11544:6630773,35823174:0 -h1,11544:8527647,35823174:0,0,0 -k1,11544:32583029,35823174:24055382 -g1,11544:32583029,35823174 -) -(1,11545:6630773,36489352:25952256,404226,101187 -h1,11545:6630773,36489352:0,0,0 -h1,11545:7263064,36489352:0,0,0 -k1,11545:32583028,36489352:25319964 -g1,11545:32583028,36489352 -) -(1,11549:6630773,37155530:25952256,404226,76021 -(1,11547:6630773,37155530:0,0,0 -g1,11547:6630773,37155530 -g1,11547:6630773,37155530 -g1,11547:6303093,37155530 -(1,11547:6303093,37155530:0,0,0 -) -g1,11547:6630773,37155530 -) -g1,11549:7579210,37155530 -g1,11549:8843793,37155530 -h1,11549:11372958,37155530:0,0,0 -k1,11549:32583030,37155530:21210072 -g1,11549:32583030,37155530 -) -(1,11551:6630773,38477068:25952256,404226,101187 -(1,11550:6630773,38477068:0,0,0 -g1,11550:6630773,38477068 -g1,11550:6630773,38477068 -g1,11550:6303093,38477068 -(1,11550:6303093,38477068:0,0,0 -) -g1,11550:6630773,38477068 -) -k1,11551:6630773,38477068:0 -h1,11551:10424522,38477068:0,0,0 -k1,11551:32583030,38477068:22158508 -g1,11551:32583030,38477068 -) -(1,11555:6630773,39143246:25952256,404226,76021 -(1,11553:6630773,39143246:0,0,0 -g1,11553:6630773,39143246 -g1,11553:6630773,39143246 -g1,11553:6303093,39143246 -(1,11553:6303093,39143246:0,0,0 -) -g1,11553:6630773,39143246 -) -g1,11555:7579210,39143246 -g1,11555:8843793,39143246 -h1,11555:10108376,39143246:0,0,0 -k1,11555:32583028,39143246:22474652 -g1,11555:32583028,39143246 -) -] -) -g1,11556:32583029,39219267 -g1,11556:6630773,39219267 -g1,11556:6630773,39219267 -g1,11556:32583029,39219267 -g1,11556:32583029,39219267 -) -h1,11556:6630773,39415875:0,0,0 -(1,11560:6630773,40781651:25952256,513147,126483 -h1,11559:6630773,40781651:983040,0,0 -k1,11559:8389890,40781651:148242 -k1,11559:9557218,40781651:148243 -k1,11559:12366877,40781651:148242 -k1,11559:14544114,40781651:148242 -k1,11559:15711442,40781651:148243 -k1,11559:17032123,40781651:148242 -k1,11559:20022006,40781651:148242 -k1,11559:21161809,40781651:148243 -k1,11559:22376322,40781651:148242 -k1,11559:24906142,40781651:148242 -k1,11559:25670423,40781651:148243 -k1,11559:26837750,40781651:148242 -k1,11559:28639465,40781651:148242 -k1,11559:30787867,40781651:148243 -k1,11559:31563944,40781651:148242 -k1,11559:32583029,40781651:0 -) -(1,11560:6630773,41623139:25952256,505283,134348 -k1,11559:9504480,41623139:212290 -k1,11559:11585201,41623139:212290 -k1,11559:12665843,41623139:212290 -k1,11559:14884845,41623139:212290 -k1,11559:15452995,41623139:212290 -k1,11559:16948480,41623139:212290 -k1,11559:18841113,41623139:212290 -k1,11559:19704830,41623139:212289 -k1,11559:20272980,41623139:212290 -k1,11559:22996610,41623139:212290 -k1,11559:24077252,41623139:212290 -k1,11559:25764757,41623139:212290 -k1,11559:28010629,41623139:212290 -k1,11559:30573040,41623139:212290 -k1,11559:32583029,41623139:0 -) -(1,11560:6630773,42464627:25952256,505283,134348 -k1,11559:7855510,42464627:205652 -k1,11559:9714635,42464627:205652 -k1,11559:11920446,42464627:205652 -k1,11559:13317543,42464627:205652 -k1,11559:17748301,42464627:205652 -k1,11559:18973037,42464627:205651 -k1,11559:21420020,42464627:205652 -k1,11559:25271440,42464627:205652 -k1,11559:28983268,42464627:205652 -k1,11559:31140582,42464627:205652 -k1,11559:32583029,42464627:0 -) -(1,11560:6630773,43306115:25952256,513147,134348 -g1,11559:8718094,43306115 -g1,11559:9936408,43306115 -g1,11559:12626660,43306115 -k1,11560:32583029,43306115:16700540 -g1,11560:32583029,43306115 -) -v1,11562:6630773,44496581:0,393216,0 -(1,11584:6630773,45370377:25952256,1267012,196608 -g1,11584:6630773,45370377 -g1,11584:6630773,45370377 -g1,11584:6434165,45370377 -(1,11584:6434165,45370377:0,1267012,196608 -r1,11584:32779637,45370377:26345472,1463620,196608 -k1,11584:6434165,45370377:-26345472 -) -(1,11584:6434165,45370377:26345472,1267012,196608 -[1,11584:6630773,45370377:25952256,1070404,0 -(1,11564:6630773,44704199:25952256,404226,101187 -(1,11563:6630773,44704199:0,0,0 -g1,11563:6630773,44704199 -g1,11563:6630773,44704199 -g1,11563:6303093,44704199 -(1,11563:6303093,44704199:0,0,0 -) -g1,11563:6630773,44704199 -) -g1,11564:8843793,44704199 -g1,11564:9792231,44704199 -g1,11564:13269834,44704199 -h1,11564:14534417,44704199:0,0,0 -k1,11564:32583029,44704199:18048612 -g1,11564:32583029,44704199 -) -(1,11565:6630773,45370377:25952256,404226,101187 -h1,11565:6630773,45370377:0,0,0 -h1,11565:8527647,45370377:0,0,0 -k1,11565:32583029,45370377:24055382 -g1,11565:32583029,45370377 -) -] -) -g1,11584:32583029,45370377 -g1,11584:6630773,45370377 -g1,11584:6630773,45370377 -g1,11584:32583029,45370377 -g1,11584:32583029,45370377 -) -] -(1,11584:32583029,45706769:0,0,0 -g1,11584:32583029,45706769 -) -) -] -(1,11584:6630773,47279633:25952256,0,0 -h1,11584:6630773,47279633:25952256,0,0 -) -] -(1,11584:4262630,4025873:0,0,0 -[1,11584:-473656,4025873:0,0,0 -(1,11584:-473656,-710413:0,0,0 -(1,11584:-473656,-710413:0,0,0 -g1,11584:-473656,-710413 -) -g1,11584:-473656,-710413 -) -] -) -] -!22640 -}193 -!12 -{194 -[1,11598:4262630,47279633:28320399,43253760,0 -(1,11598:4262630,4025873:0,0,0 -[1,11598:-473656,4025873:0,0,0 -(1,11598:-473656,-710413:0,0,0 -(1,11598:-473656,-644877:0,0,0 -k1,11598:-473656,-644877:-65536 +g1,8606:36675916,2439708 +(1,8606:36675916,2439708:1179648,16384,0 +r1,10795:37855564,2439708:1179648,16384,0 ) -(1,11598:-473656,4736287:0,0,0 -k1,11598:-473656,4736287:5209943 ) -g1,11598:-473656,-710413 +k1,10795:3078556,2439708:-34777008 ) ] +[1,10795:3078558,4812305:0,0,0 +(1,10795:3078558,49800853:0,16384,2228224 +k1,10795:1358238,49800853:-1720320 +(1,8606:1358238,49800853:1720320,16384,2228224 +(1,8606:1358238,49800853:1179648,16384,0 +r1,10795:2537886,49800853:1179648,16384,0 ) -[1,11598:6630773,47279633:25952256,43253760,0 -[1,11598:6630773,4812305:25952256,786432,0 -(1,11598:6630773,4812305:25952256,505283,134348 -(1,11598:6630773,4812305:25952256,505283,134348 -g1,11598:3078558,4812305 -[1,11598:3078558,4812305:0,0,0 -(1,11598:3078558,2439708:0,1703936,0 -k1,11598:1358238,2439708:-1720320 -(1,10825:1358238,2439708:1720320,1703936,0 -(1,10825:1358238,2439708:1179648,16384,0 -r1,11598:2537886,2439708:1179648,16384,0 +g1,8606:3062174,49800853 +(1,8606:3062174,52029077:16384,1703936,0 +[1,8606:3062174,52029077:25952256,1703936,0 +(1,8606:3062174,51504789:25952256,1179648,0 +(1,8606:3062174,51504789:16384,1179648,0 +r1,10795:3078558,51504789:16384,1179648,0 ) -g1,10825:3062174,2439708 -(1,10825:3062174,2439708:16384,1703936,0 -[1,10825:3062174,2439708:25952256,1703936,0 -(1,10825:3062174,1915420:25952256,1179648,0 -(1,10825:3062174,1915420:16384,1179648,0 -r1,11598:3078558,1915420:16384,1179648,0 -) -k1,10825:29014430,1915420:25935872 -g1,10825:29014430,1915420 +k1,8606:29014430,51504789:25935872 +g1,8606:29014430,51504789 ) ] -) +) ) ) ] -[1,11598:3078558,4812305:0,0,0 -(1,11598:3078558,2439708:0,1703936,0 -g1,11598:29030814,2439708 -g1,11598:36135244,2439708 -(1,10825:36135244,2439708:1720320,1703936,0 -(1,10825:36135244,2439708:16384,1703936,0 -[1,10825:36135244,2439708:25952256,1703936,0 -(1,10825:36135244,1915420:25952256,1179648,0 -(1,10825:36135244,1915420:16384,1179648,0 -r1,11598:36151628,1915420:16384,1179648,0 +[1,10795:3078558,4812305:0,0,0 +(1,10795:3078558,49800853:0,16384,2228224 +g1,10795:29030814,49800853 +g1,10795:36135244,49800853 +(1,8606:36135244,49800853:1720320,16384,2228224 +(1,8606:36135244,52029077:16384,1703936,0 +[1,8606:36135244,52029077:25952256,1703936,0 +(1,8606:36135244,51504789:25952256,1179648,0 +(1,8606:36135244,51504789:16384,1179648,0 +r1,10795:36151628,51504789:16384,1179648,0 +) +k1,8606:62087500,51504789:25935872 +g1,8606:62087500,51504789 +) +] +) +g1,8606:36675916,49800853 +(1,8606:36675916,49800853:1179648,16384,0 +r1,10795:37855564,49800853:1179648,16384,0 +) +) +k1,10795:3078556,49800853:-34777008 +) +] +g1,10795:6630773,4812305 +k1,10795:21643106,4812305:13816956 +g1,10795:23265777,4812305 +g1,10795:24088253,4812305 +g1,10795:28572226,4812305 +g1,10795:29981905,4812305 +) +) +] +[1,10795:6630773,45706769:25952256,40108032,0 +(1,10795:6630773,45706769:25952256,40108032,0 +(1,10795:6630773,45706769:0,0,0 +g1,10795:6630773,45706769 +) +[1,10795:6630773,45706769:25952256,40108032,0 +v1,10761:6630773,6254097:0,393216,0 +(1,10762:6630773,12744438:25952256,6883557,0 +g1,10762:6630773,12744438 +g1,10762:6237557,12744438 +r1,10795:6368629,12744438:131072,6883557,0 +g1,10762:6567858,12744438 +g1,10762:6764466,12744438 +[1,10762:6764466,12744438:25818563,6883557,0 +(1,10762:6764466,6562395:25818563,701514,196608 +(1,10761:6764466,6562395:0,701514,196608 +r1,10795:8010564,6562395:1246098,898122,196608 +k1,10761:6764466,6562395:-1246098 +) +(1,10761:6764466,6562395:1246098,701514,196608 +) +k1,10761:8180065,6562395:169501 +k1,10761:8507745,6562395:327680 +k1,10761:10698904,6562395:173961 +k1,10761:14001555,6562395:173962 +k1,10761:15123168,6562395:173962 +k1,10761:16746130,6562395:173961 +k1,10761:20385762,6562395:169501 +k1,10761:22450564,6562395:169501 +k1,10761:25645862,6562395:169501 +k1,10761:27985915,6562395:169501 +k1,10761:30284681,6562395:169501 +k1,10761:32583029,6562395:0 +) +(1,10762:6764466,7427475:25818563,513147,126483 +k1,10761:9297483,7427475:201901 +k1,10761:11244609,7427475:201902 +k1,10761:12132672,7427475:201901 +k1,10761:13714762,7427475:201902 +k1,10761:14908223,7427475:201901 +k1,10761:16323196,7427475:201902 +k1,10761:18999736,7427475:201901 +k1,10761:19689223,7427475:201899 +k1,10761:22015801,7427475:201901 +k1,10761:24879120,7427475:201902 +k1,10761:25612518,7427475:201901 +k1,10761:26833505,7427475:201902 +k1,10761:31336534,7427475:201901 +k1,10762:32583029,7427475:0 +) +(1,10762:6764466,8292555:25818563,505283,134348 +k1,10761:8522579,8292555:276999 +k1,10761:10718472,8292555:276999 +k1,10761:11863822,8292555:276998 +k1,10761:14215691,8292555:276999 +k1,10761:17051216,8292555:276999 +k1,10761:17684075,8292555:276999 +k1,10761:21047819,8292555:276998 +k1,10761:22609324,8292555:276999 +k1,10761:24834053,8292555:276999 +k1,10761:25466912,8292555:276999 +k1,10761:27827955,8292555:276998 +k1,10761:29947826,8292555:276999 +k1,10761:32583029,8292555:0 +) +(1,10762:6764466,9157635:25818563,505283,126483 +k1,10761:10155251,9157635:169690 +k1,10761:10812500,9157635:169661 +k1,10761:13184200,9157635:169690 +k1,10761:14720971,9157635:169690 +k1,10761:15422158,9157635:169690 +k1,10761:15947708,9157635:169690 +k1,10761:18458344,9157635:169690 +k1,10761:20546928,9157635:169690 +k1,10761:24518361,9157635:169690 +k1,10761:25679611,9157635:169690 +k1,10761:27426753,9157635:169690 +k1,10761:28983840,9157635:169690 +k1,10761:29509390,9157635:169690 +k1,10761:32583029,9157635:0 +) +(1,10762:6764466,10022715:25818563,513147,126483 +k1,10761:8211799,10022715:162827 +k1,10761:10423937,10022715:162827 +k1,10761:11199526,10022715:162827 +k1,10761:12813975,10022715:162827 +k1,10761:15867595,10022715:162827 +k1,10761:17227109,10022715:162827 +k1,10761:20101816,10022715:162827 +k1,10761:21456088,10022715:162827 +k1,10761:24445483,10022715:162827 +k1,10761:26210010,10022715:162827 +k1,10761:29111587,10022715:162827 +k1,10761:32583029,10022715:0 +) +(1,10762:6764466,10887795:25818563,513147,11795 +k1,10761:7644078,10887795:220320 +k1,10761:9067639,10887795:220320 +k1,10761:10717299,10887795:220320 +k1,10761:11469116,10887795:220320 +k1,10761:12708521,10887795:220320 +k1,10761:16400284,10887795:220321 +k1,10761:17279896,10887795:220320 +k1,10761:21016878,10887795:220320 +k1,10761:23872401,10887795:220320 +k1,10761:27418673,10887795:220320 +k1,10761:30766371,10887795:220320 +k1,10761:32583029,10887795:0 +) +(1,10762:6764466,11752875:25818563,505283,134348 +k1,10761:9948588,11752875:192403 +k1,10761:11132550,11752875:192402 +k1,10761:13686871,11752875:192403 +k1,10761:16352602,11752875:192402 +k1,10761:20053147,11752875:192403 +k1,10761:21739115,11752875:192402 +k1,10761:22617680,11752875:192403 +k1,10761:23165943,11752875:192403 +k1,10761:25720263,11752875:192402 +k1,10761:28272617,11752875:192403 +k1,10761:29697096,11752875:192402 +k1,10761:31387652,11752875:192403 +h1,10761:32583029,11752875:0,0,0 +k1,10761:32583029,11752875:0 +) +(1,10762:6764466,12617955:25818563,513147,126483 +g1,10761:7911346,12617955 +g1,10761:9812545,12617955 +g1,10761:13728976,12617955 +g1,10761:14579633,12617955 +g1,10761:15797947,12617955 +g1,10761:17089661,12617955 +g1,10761:17948182,12617955 +g1,10761:20478527,12617955 +g1,10761:23394879,12617955 +k1,10762:32583029,12617955:7062162 +g1,10762:32583029,12617955 +) +] +g1,10762:32583029,12744438 +) +h1,10762:6630773,12744438:0,0,0 +(1,10764:6630773,15575598:25952256,32768,229376 +(1,10764:6630773,15575598:0,32768,229376 +(1,10764:6630773,15575598:5505024,32768,229376 +r1,10795:12135797,15575598:5505024,262144,229376 +) +k1,10764:6630773,15575598:-5505024 +) +(1,10764:6630773,15575598:25952256,32768,0 +r1,10795:32583029,15575598:25952256,32768,0 +) +) +(1,10764:6630773,17207450:25952256,606339,151780 +(1,10764:6630773,17207450:1974731,582746,14155 +g1,10764:6630773,17207450 +g1,10764:8605504,17207450 +) +g1,10764:12737418,17207450 +g1,10764:14546212,17207450 +g1,10764:17669920,17207450 +k1,10764:32583029,17207450:12762217 +g1,10764:32583029,17207450 +) +(1,10767:6630773,18465746:25952256,513147,134348 +k1,10766:7296168,18465746:250552 +k1,10766:10307147,18465746:250603 +k1,10766:12789252,18465746:250604 +k1,10766:16065652,18465746:250603 +k1,10766:17600762,18465746:250604 +k1,10766:18955647,18465746:250603 +k1,10766:19954017,18465746:250604 +k1,10766:21717846,18465746:250603 +k1,10766:22619878,18465746:250604 +k1,10766:24599977,18465746:250604 +k1,10766:27108295,18465746:250603 +k1,10766:29971164,18465746:250604 +k1,10766:31966991,18465746:250603 +k1,10767:32583029,18465746:0 +) +(1,10767:6630773,19330826:25952256,513147,134348 +k1,10766:7444072,19330826:224786 +k1,10766:8865545,19330826:224786 +k1,10766:10692031,19330826:224786 +k1,10766:14221798,19330826:224786 +k1,10766:15959810,19330826:224786 +k1,10766:17176156,19330826:224786 +k1,10766:19168447,19330826:224785 +k1,10766:20340884,19330826:224786 +k1,10766:23197596,19330826:224786 +(1,10766:23197596,19330826:0,452978,115847 +r1,10795:25314421,19330826:2116825,568825,115847 +k1,10766:23197596,19330826:-2116825 +) +(1,10766:23197596,19330826:2116825,452978,115847 +k1,10766:23197596,19330826:3277 +h1,10766:25311144,19330826:0,411205,112570 +) +k1,10766:25712877,19330826:224786 +(1,10766:25712877,19330826:0,452978,115847 +r1,10795:27477990,19330826:1765113,568825,115847 +k1,10766:25712877,19330826:-1765113 +) +(1,10766:25712877,19330826:1765113,452978,115847 +k1,10766:25712877,19330826:3277 +h1,10766:27474713,19330826:0,411205,112570 +) +k1,10766:27702776,19330826:224786 +k1,10766:31169628,19330826:224786 +(1,10766:31169628,19330826:0,452978,115847 +r1,10795:32583029,19330826:1413401,568825,115847 +k1,10766:31169628,19330826:-1413401 +) +(1,10766:31169628,19330826:1413401,452978,115847 +k1,10766:31169628,19330826:3277 +h1,10766:32579752,19330826:0,411205,112570 +) +k1,10766:32583029,19330826:0 +) +(1,10767:6630773,20195906:25952256,505283,134348 +k1,10766:9914950,20195906:233476 +k1,10766:13478966,20195906:233476 +(1,10766:13478966,20195906:0,452978,115847 +r1,10795:15244079,20195906:1765113,568825,115847 +k1,10766:13478966,20195906:-1765113 +) +(1,10766:13478966,20195906:1765113,452978,115847 +k1,10766:13478966,20195906:3277 +h1,10766:15240802,20195906:0,411205,112570 +) +k1,10766:15651224,20195906:233475 +k1,10766:17076145,20195906:233476 +(1,10766:17076145,20195906:0,452978,115847 +r1,10795:18841258,20195906:1765113,568825,115847 +k1,10766:17076145,20195906:-1765113 +) +(1,10766:17076145,20195906:1765113,452978,115847 +k1,10766:17076145,20195906:3277 +h1,10766:18837981,20195906:0,411205,112570 +) +k1,10766:19248404,20195906:233476 +k1,10766:22579767,20195906:233476 +k1,10766:24309429,20195906:233475 +k1,10766:28966585,20195906:233476 +k1,10766:29970764,20195906:233476 +k1,10766:32583029,20195906:0 +) +(1,10767:6630773,21060986:25952256,513147,134348 +k1,10766:10022463,21060986:280696 +k1,10766:11064686,21060986:280695 +k1,10766:11701242,21060986:280696 +k1,10766:13854956,21060986:280695 +k1,10766:16831148,21060986:280696 +k1,10766:18211537,21060986:280695 +k1,10766:21578979,21060986:280696 +k1,10766:22878759,21060986:280695 +k1,10766:25494503,21060986:280696 +k1,10766:27271385,21060986:280695 +k1,10766:28743526,21060986:280696 +k1,10766:30128503,21060986:280695 +k1,10766:32124932,21060986:280696 +k1,10766:32583029,21060986:0 +) +(1,10767:6630773,21926066:25952256,513147,126483 +k1,10766:8666274,21926066:165103 +k1,10766:9482805,21926066:165103 +k1,10766:13486351,21926066:165102 +k1,10766:15525784,21926066:165103 +k1,10766:18716684,21926066:165103 +k1,10766:19873347,21926066:165103 +k1,10766:22325000,21926066:165102 +k1,10766:23106141,21926066:165103 +k1,10766:23724719,21926066:165069 +k1,10766:25081267,21926066:165103 +k1,10766:28363261,21926066:165102 +k1,10766:29253192,21926066:165103 +k1,10766:30884991,21926066:165103 +k1,10766:32583029,21926066:0 +) +(1,10767:6630773,22791146:25952256,513147,134348 +k1,10766:9504859,22791146:261821 +k1,10766:13207976,22791146:261822 +k1,10766:14461357,22791146:261821 +k1,10766:16410076,22791146:261822 +k1,10766:18052085,22791146:261821 +k1,10766:19305466,22791146:261821 +k1,10766:20948787,22791146:261822 +k1,10766:21698133,22791146:261758 +k1,10766:23525610,22791146:261822 +k1,10766:25181382,22791146:261821 +k1,10766:28434923,22791146:261822 +k1,10766:29356036,22791146:261821 +k1,10766:32583029,22791146:0 +) +(1,10767:6630773,23656226:25952256,513147,134348 +k1,10766:9791282,23656226:134712 +k1,10766:12709963,23656226:134712 +k1,10766:13460713,23656226:134712 +k1,10766:15029353,23656226:134712 +k1,10766:15578844,23656226:134648 +k1,10766:16998062,23656226:134712 +k1,10766:20566206,23656226:134713 +k1,10766:23313183,23656226:134712 +k1,10766:26889190,23656226:134712 +k1,10766:27555399,23656226:134712 +k1,10766:30540927,23656226:134712 +k1,10766:32583029,23656226:0 +) +(1,10767:6630773,24521306:25952256,513147,134348 +k1,10766:7710050,24521306:181434 +k1,10766:9588211,24521306:181434 +k1,10766:12795442,24521306:181434 +k1,10766:14329538,24521306:181433 +k1,10766:14866832,24521306:181434 +k1,10766:17026143,24521306:181434 +k1,10766:17866869,24521306:181434 +k1,10766:20844724,24521306:181434 +k1,10766:23039424,24521306:181434 +k1,10766:23907019,24521306:181433 +k1,10766:25597092,24521306:181434 +k1,10766:27084659,24521306:181434 +k1,10766:30512091,24521306:181434 +k1,10766:32583029,24521306:0 +) +(1,10767:6630773,25386386:25952256,513147,115847 +g1,10766:7777653,25386386 +(1,10766:7777653,25386386:0,452978,115847 +r1,10795:12356461,25386386:4578808,568825,115847 +k1,10766:7777653,25386386:-4578808 +) +(1,10766:7777653,25386386:4578808,452978,115847 +k1,10766:7777653,25386386:3277 +h1,10766:12353184,25386386:0,411205,112570 +) +k1,10767:32583029,25386386:20052898 +g1,10767:32583029,25386386 +) +(1,10786:6630773,38019895:25952256,11757444,0 +k1,10769:7197569,38019895:566796 +[1,10786:7197569,38019895:24818664,11757444,0 +(1,10786:7197569,26327987:24818664,65536,0 +g1,10786:7197569,26327987 +(1,10786:7197569,26327987:24818664,65536,0 +r1,10795:32016233,26327987:24818664,65536,0 +) +g1,10786:32016233,26327987 +) +(1,10786:7197569,32313555:24818664,5920032,5509732 +g1,10786:7197569,32313555 +(1,10786:7197569,32313555:24818664,5920032,5509732 +g1,10769:7396798,32313555 +$1,10786:7396798,32313555 +[1,10786:7396798,32313555:24619435,5920032,5509732 +(1,10772:7396798,27184643:24619435,555093,237900 +g1,10771:7396798,27184643 +(1,10771:7396798,27184643:5234169,555093,237900 +r1,10795:7396798,27184643:0,792993,237900 +g1,10771:7724478,27184643 +g1,10771:7724479,27184643 +k1,10771:12303287,27184643:1788940 +g1,10771:12630967,27184643 +) +g1,10771:12630967,27184643 +(1,10771:12630967,27184643:11273228,555093,237900 +g1,10771:12958647,27184643 +g1,10771:12958648,27184643 +k1,10771:23576515,27184643:6432083 +g1,10771:23904195,27184643 +) +g1,10771:23904195,27184643 +(1,10772:23904195,27184643:8112038,555093,237900 +g1,10771:24231875,27184643 +g1,10771:24231876,27184643 +g1,10771:26386044,27184643 +k1,10772:31688553,27184643:3289243 +g1,10772:32016233,27184643 +) +g1,10772:32016233,27184643 +) +(1,10774:7396798,28345914:24619435,594022,237900 +g1,10773:7396798,28345914 +(1,10773:7396798,28345914:5234169,594022,237900 +r1,10795:7396798,28345914:0,792993,237900 +g1,10773:7724478,28345914 +g1,10773:7724479,28345914 +(1,10773:7724479,28345914:0,452978,115847 +r1,10795:9489592,28345914:1765113,568825,115847 +k1,10773:7724479,28345914:-1765113 +) +(1,10773:7724479,28345914:1765113,452978,115847 +k1,10773:7724479,28345914:3277 +h1,10773:9486315,28345914:0,411205,112570 +) +k1,10773:12303287,28345914:2813695 +g1,10773:12630967,28345914 +) +g1,10773:12630967,28345914 +(1,10773:12630967,28345914:11273228,594022,237900 +g1,10773:12958647,28345914 +g1,10773:12958648,28345914 +$1,10773:12958648,28345914 +(1,10773:12958648,28384558:649462,567542,79954 +) +[1,10773:13608110,28487452:909902,735560,5505 +(1,10773:13608110,28000536:393347,248644,5505 +) +(1,10773:13608110,28487452:909902,346358,5505 +) +] +g1,10773:14627248,28345914 +(1,10773:15100419,28444228:233243,346358,5505 +) +$1,10773:15333662,28345914 +k1,10773:23576515,28345914:8242853 +g1,10773:23904195,28345914 +) +g1,10773:23904195,28345914 +(1,10774:23904195,28345914:8112038,594022,237900 +g1,10773:24231875,28345914 +g1,10773:24231876,28345914 +g1,10773:27224905,28345914 +k1,10774:31688553,28345914:4065189 +g1,10774:32016233,28345914 +) +g1,10774:32016233,28345914 +) +(1,10775:7396798,29158175:24619435,574361,237900 +g1,10774:7396798,29158175 +(1,10774:7396798,29158175:5234169,574361,237900 +r1,10795:7396798,29158175:0,792993,237900 +g1,10774:7724478,29158175 +g1,10774:7724479,29158175 +(1,10774:7724479,29158175:0,452978,115847 +r1,10795:9841304,29158175:2116825,568825,115847 +k1,10774:7724479,29158175:-2116825 +) +(1,10774:7724479,29158175:2116825,452978,115847 +k1,10774:7724479,29158175:3277 +h1,10774:9838027,29158175:0,411205,112570 +) +k1,10774:12303287,29158175:2461983 +g1,10774:12630967,29158175 +) +g1,10774:12630967,29158175 +(1,10774:12630967,29158175:11273228,574361,237900 +g1,10774:12958647,29158175 +g1,10774:12958648,29158175 +$1,10774:12958648,29158175 +(1,10774:12958648,29177158:692060,528220,79954 +) +[1,10774:13650708,29289179:909902,705365,5505 +(1,10774:13650708,28832458:393347,248644,5505 +) +(1,10774:13650708,29289179:909902,346358,5505 +) +] +g1,10774:14669846,29158175 +(1,10774:15143017,29256489:233243,346358,5505 +) +$1,10774:15376260,29158175 +k1,10774:23576515,29158175:8200255 +g1,10774:23904195,29158175 +) +g1,10774:23904195,29158175 +(1,10775:23904195,29158175:8112038,574361,237900 +g1,10774:24231875,29158175 +g1,10774:24231876,29158175 +g1,10774:27224905,29158175 +k1,10775:31688553,29158175:4065189 +g1,10775:32016233,29158175 ) -k1,10825:62087500,1915420:25935872 -g1,10825:62087500,1915420 +g1,10775:32016233,29158175 ) -] -) -g1,10825:36675916,2439708 -(1,10825:36675916,2439708:1179648,16384,0 -r1,11598:37855564,2439708:1179648,16384,0 +(1,10776:7396798,30117103:24619435,721028,237900 +g1,10775:7396798,30117103 +(1,10775:7396798,30117103:5234169,721028,237900 +r1,10795:7396798,30117103:0,792993,237900 +g1,10775:7724478,30117103 +g1,10775:7724479,30117103 +(1,10775:7724479,30117103:0,452978,115847 +r1,10795:10544728,30117103:2820249,568825,115847 +k1,10775:7724479,30117103:-2820249 ) +(1,10775:7724479,30117103:2820249,452978,115847 +k1,10775:7724479,30117103:3277 +h1,10775:10541451,30117103:0,411205,112570 ) -k1,11598:3078556,2439708:-34777008 +k1,10775:12303287,30117103:1758559 +g1,10775:12630967,30117103 ) -] -[1,11598:3078558,4812305:0,0,0 -(1,11598:3078558,49800853:0,16384,2228224 -k1,11598:1358238,49800853:-1720320 -(1,10825:1358238,49800853:1720320,16384,2228224 -(1,10825:1358238,49800853:1179648,16384,0 -r1,11598:2537886,49800853:1179648,16384,0 +g1,10775:12630967,30117103 +(1,10775:12630967,30117103:11273228,721028,237900 +g1,10775:12958647,30117103 +g1,10775:12958648,30117103 +$1,10775:12958648,30117103 +(1,10775:12958648,30155747:649462,567542,79954 ) -g1,10825:3062174,49800853 -(1,10825:3062174,52029077:16384,1703936,0 -[1,10825:3062174,52029077:25952256,1703936,0 -(1,10825:3062174,51504789:25952256,1179648,0 -(1,10825:3062174,51504789:16384,1179648,0 -r1,11598:3078558,51504789:16384,1179648,0 +[1,10775:13608110,30258641:909902,821346,5505 +(1,10775:13608110,29771725:311689,334430,0 ) -k1,10825:29014430,51504789:25935872 -g1,10825:29014430,51504789 +(1,10775:13608110,30258641:909902,346358,5505 ) ] +g1,10775:14627248,30117103 +(1,10775:15100419,30215417:233243,346358,5505 ) +g1,10775:15632297,30117103 +g1,10775:16318905,30117103 +(1,10775:16318905,30155747:649462,567542,79954 ) +[1,10775:16968367,30290446:909902,894371,5505 +(1,10775:16968367,29742433:286917,346358,96797 ) -] -[1,11598:3078558,4812305:0,0,0 -(1,11598:3078558,49800853:0,16384,2228224 -g1,11598:29030814,49800853 -g1,11598:36135244,49800853 -(1,10825:36135244,49800853:1720320,16384,2228224 -(1,10825:36135244,52029077:16384,1703936,0 -[1,10825:36135244,52029077:25952256,1703936,0 -(1,10825:36135244,51504789:25952256,1179648,0 -(1,10825:36135244,51504789:16384,1179648,0 -r1,11598:36151628,51504789:16384,1179648,0 -) -k1,10825:62087500,51504789:25935872 -g1,10825:62087500,51504789 +(1,10775:16968367,30290446:909902,346358,5505 ) ] +g1,10775:17987505,30117103 +(1,10775:18460676,30215417:233243,346358,5505 ) -g1,10825:36675916,49800853 -(1,10825:36675916,49800853:1179648,16384,0 -r1,11598:37855564,49800853:1179648,16384,0 +g1,10775:18992554,30117103 +g1,10775:19679162,30117103 +(1,10775:19679162,30155747:649462,567542,79954 ) +[1,10775:20328624,30258641:909902,735560,5505 +(1,10775:20328624,29771725:393347,248644,5505 ) -k1,11598:3078556,49800853:-34777008 +(1,10775:20328624,30258641:909902,346358,5505 ) ] -g1,11598:6630773,4812305 -g1,11598:6630773,4812305 -g1,11598:9714897,4812305 -k1,11598:31387653,4812305:21672756 +g1,10775:21347762,30117103 +(1,10775:21820933,30215417:233243,346358,5505 ) +$1,10775:22054176,30117103 +k1,10775:23576515,30117103:1522339 +g1,10775:23904195,30117103 ) -] -[1,11598:6630773,45706769:25952256,40108032,0 -(1,11598:6630773,45706769:25952256,40108032,0 -(1,11598:6630773,45706769:0,0,0 -g1,11598:6630773,45706769 +g1,10775:23904195,30117103 +(1,10776:23904195,30117103:8112038,721028,237900 +g1,10775:24231875,30117103 +g1,10775:24231876,30117103 +g1,10775:27224905,30117103 +$1,10775:27224905,30117103 +(1,10775:27740018,30215417:779158,298648,5505 ) -[1,11598:6630773,45706769:25952256,40108032,0 -v1,11584:6630773,6254097:0,393216,0 -(1,11584:6630773,11845524:25952256,5984643,196608 -g1,11584:6630773,11845524 -g1,11584:6630773,11845524 -g1,11584:6434165,11845524 -(1,11584:6434165,11845524:0,5984643,196608 -r1,11598:32779637,11845524:26345472,6181251,196608 -k1,11584:6434165,11845524:-26345472 +g1,10775:28701236,30117103 +g1,10775:29451493,30117103 +(1,10775:29966606,30215417:463995,331678,0 ) -(1,11584:6434165,11845524:26345472,5984643,196608 -[1,11584:6630773,11845524:25952256,5788035,0 -(1,11569:6630773,6461715:25952256,404226,101187 -(1,11567:6630773,6461715:0,0,0 -g1,11567:6630773,6461715 -g1,11567:6630773,6461715 -g1,11567:6303093,6461715 -(1,11567:6303093,6461715:0,0,0 +$1,10775:30430601,30117103 +k1,10776:31688553,30117103:1257952 +g1,10776:32016233,30117103 ) -g1,11567:6630773,6461715 +g1,10776:32016233,30117103 ) -g1,11569:7579210,6461715 -g1,11569:8843793,6461715 -g1,11569:12321396,6461715 -h1,11569:13585979,6461715:0,0,0 -k1,11569:32583029,6461715:18997050 -g1,11569:32583029,6461715 +(1,10777:7396798,31076031:24619435,721028,237900 +g1,10776:7396798,31076031 +(1,10776:7396798,31076031:5234169,721028,237900 +r1,10795:7396798,31076031:0,792993,237900 +g1,10776:7724478,31076031 +g1,10776:7724479,31076031 +(1,10776:7724479,31076031:0,452978,115847 +r1,10795:10896439,31076031:3171960,568825,115847 +k1,10776:7724479,31076031:-3171960 ) -(1,11571:6630773,7783253:25952256,404226,101187 -(1,11570:6630773,7783253:0,0,0 -g1,11570:6630773,7783253 -g1,11570:6630773,7783253 -g1,11570:6303093,7783253 -(1,11570:6303093,7783253:0,0,0 +(1,10776:7724479,31076031:3171960,452978,115847 +k1,10776:7724479,31076031:3277 +h1,10776:10893162,31076031:0,411205,112570 ) -g1,11570:6630773,7783253 +k1,10776:12303287,31076031:1406848 +g1,10776:12630967,31076031 ) -g1,11571:8843793,7783253 -g1,11571:9792231,7783253 -g1,11571:12005251,7783253 -h1,11571:13269834,7783253:0,0,0 -k1,11571:32583030,7783253:19313196 -g1,11571:32583030,7783253 -) -(1,11572:6630773,8449431:25952256,404226,101187 -h1,11572:6630773,8449431:0,0,0 -h1,11572:8527647,8449431:0,0,0 -k1,11572:32583029,8449431:24055382 -g1,11572:32583029,8449431 -) -(1,11576:6630773,9115609:25952256,404226,101187 -(1,11574:6630773,9115609:0,0,0 -g1,11574:6630773,9115609 -g1,11574:6630773,9115609 -g1,11574:6303093,9115609 -(1,11574:6303093,9115609:0,0,0 -) -g1,11574:6630773,9115609 -) -g1,11576:7579210,9115609 -g1,11576:8843793,9115609 -g1,11576:11056813,9115609 -h1,11576:12321396,9115609:0,0,0 -k1,11576:32583028,9115609:20261632 -g1,11576:32583028,9115609 -) -(1,11578:6630773,10437147:25952256,404226,101187 -(1,11577:6630773,10437147:0,0,0 -g1,11577:6630773,10437147 -g1,11577:6630773,10437147 -g1,11577:6303093,10437147 -(1,11577:6303093,10437147:0,0,0 -) -g1,11577:6630773,10437147 -) -k1,11578:6630773,10437147:0 -h1,11578:9792229,10437147:0,0,0 -k1,11578:32583029,10437147:22790800 -g1,11578:32583029,10437147 -) -(1,11579:6630773,11103325:25952256,404226,101187 -h1,11579:6630773,11103325:0,0,0 -k1,11579:6630773,11103325:0 -h1,11579:11689104,11103325:0,0,0 -k1,11579:32583028,11103325:20893924 -g1,11579:32583028,11103325 -) -(1,11583:6630773,11769503:25952256,404226,76021 -(1,11581:6630773,11769503:0,0,0 -g1,11581:6630773,11769503 -g1,11581:6630773,11769503 -g1,11581:6303093,11769503 -(1,11581:6303093,11769503:0,0,0 -) -g1,11581:6630773,11769503 -) -g1,11583:7579210,11769503 -g1,11583:8843793,11769503 -h1,11583:10424521,11769503:0,0,0 -k1,11583:32583029,11769503:22158508 -g1,11583:32583029,11769503 -) -] -) -g1,11584:32583029,11845524 -g1,11584:6630773,11845524 -g1,11584:6630773,11845524 -g1,11584:32583029,11845524 -g1,11584:32583029,11845524 -) -h1,11584:6630773,12042132:0,0,0 -(1,11587:6630773,15373988:25952256,32768,229376 -(1,11587:6630773,15373988:0,32768,229376 -(1,11587:6630773,15373988:5505024,32768,229376 -r1,11598:12135797,15373988:5505024,262144,229376 -) -k1,11587:6630773,15373988:-5505024 -) -(1,11587:6630773,15373988:25952256,32768,0 -r1,11598:32583029,15373988:25952256,32768,0 -) -) -(1,11587:6630773,16978316:25952256,606339,161218 -(1,11587:6630773,16978316:1974731,582746,14155 -g1,11587:6630773,16978316 -g1,11587:8605504,16978316 -) -k1,11587:32583030,16978316:20355220 -g1,11587:32583030,16978316 -) -(1,11589:6630773,18283144:25952256,564462,147783 -(1,11589:6630773,18283144:2450326,534184,12975 -g1,11589:6630773,18283144 -g1,11589:9081099,18283144 -) -g1,11589:12049749,18283144 -g1,11589:13033052,18283144 -g1,11589:17211366,18283144 -k1,11589:32583029,18283144:11465127 -g1,11589:32583029,18283144 -) -(1,11592:6630773,19517848:25952256,513147,134348 -k1,11591:8021306,19517848:193846 -k1,11591:9816853,19517848:193847 -k1,11591:12312323,19517848:193846 -k1,11591:13744145,19517848:193847 -k1,11591:14597283,19517848:193846 -k1,11591:16978722,19517848:193847 -k1,11591:18455763,19517848:193846 -k1,11591:21255321,19517848:193847 -k1,11591:22132052,19517848:193846 -k1,11591:25935622,19517848:193847 -k1,11591:26780896,19517848:193846 -k1,11591:27389580,19517848:193841 -k1,11591:28114924,19517848:193847 -k1,11591:30867296,19517848:193846 -k1,11592:32583029,19517848:0 -) -(1,11592:6630773,20359336:25952256,505283,134348 -k1,11591:8421772,20359336:209615 -k1,11591:10012231,20359336:209615 -k1,11591:10753343,20359336:209615 -k1,11591:13423180,20359336:209615 -k1,11591:15520232,20359336:209615 -k1,11591:16748932,20359336:209615 -k1,11591:18293515,20359336:209615 -k1,11591:22141033,20359336:209615 -k1,11591:24048686,20359336:209615 -k1,11591:25955028,20359336:209615 -k1,11591:29567272,20359336:209615 -k1,11591:30428315,20359336:209615 -k1,11591:31052763,20359336:209605 -k1,11591:32583029,20359336:0 -) -(1,11592:6630773,21200824:25952256,513147,102891 -k1,11591:7503198,21200824:220997 -k1,11591:8471960,21200824:220996 -k1,11591:11024073,21200824:220997 -k1,11591:14179772,21200824:220997 -k1,11591:15016807,21200824:220997 -k1,11591:16839503,21200824:220996 -k1,11591:20217369,21200824:220997 -k1,11591:20896463,21200824:220997 -k1,11591:21648956,21200824:220996 -k1,11591:23155769,21200824:220997 -k1,11591:24395851,21200824:220997 -k1,11591:25951816,21200824:220997 -k1,11591:29810715,21200824:220996 -k1,11591:30979363,21200824:220997 -k1,11592:32583029,21200824:0 -) -(1,11592:6630773,22042312:25952256,505283,134348 -k1,11591:8549886,22042312:198793 -k1,11591:10244865,22042312:198792 -k1,11591:11728164,22042312:198793 -k1,11591:13059418,22042312:198792 -k1,11591:14005977,22042312:198793 -k1,11591:16353695,22042312:198792 -k1,11591:18019184,22042312:198793 -k1,11591:18979504,22042312:198792 -k1,11591:19534157,22042312:198793 -k1,11591:21605969,22042312:198793 -k1,11591:24000872,22042312:198792 -k1,11591:25587062,22042312:198793 -k1,11591:27384932,22042312:198792 -k1,11591:27998567,22042312:198792 -k1,11591:31107814,22042312:198793 -k1,11591:32583029,22042312:0 -) -(1,11592:6630773,22883800:25952256,513147,102891 -k1,11591:8521421,22883800:223412 -k1,11591:10330804,22883800:223412 -k1,11591:12376772,22883800:223412 -k1,11591:14108823,22883800:223412 -k1,11591:17255141,22883800:223412 -k1,11591:18461593,22883800:223412 -k1,11591:21790101,22883800:223412 -k1,11591:23204958,22883800:223412 -k1,11591:28428112,22883800:223412 -k1,11591:30536995,22883800:223412 -k1,11591:32583029,22883800:0 -) -(1,11592:6630773,23725288:25952256,513147,134348 -k1,11591:7303282,23725288:214412 -k1,11591:10147654,23725288:214412 -k1,11591:12521477,23725288:214412 -k1,11591:14437859,23725288:214412 -k1,11591:16644565,23725288:214412 -k1,11591:17806628,23725288:214412 -k1,11591:19040124,23725288:214411 -k1,11591:21834688,23725288:214412 -k1,11591:26875171,23725288:214412 -k1,11591:27741011,23725288:214412 -k1,11591:28703189,23725288:214412 -k1,11591:31315563,23725288:214412 -k1,11592:32583029,23725288:0 -) -(1,11592:6630773,24566776:25952256,513147,134348 -k1,11591:7735289,24566776:185701 -k1,11591:9309043,24566776:185701 -k1,11591:11740662,24566776:185700 -k1,11591:13624401,24566776:185701 -k1,11591:14165962,24566776:185701 -k1,11591:16931815,24566776:185701 -k1,11591:17649012,24566776:185700 -k1,11591:20152721,24566776:185701 -k1,11591:21817570,24566776:185701 -k1,11591:22359131,24566776:185701 -k1,11591:23677950,24566776:185701 -k1,11591:27449125,24566776:185700 -k1,11591:30545280,24566776:185701 -k1,11591:31835263,24566776:185701 -k1,11591:32583029,24566776:0 -) -(1,11592:6630773,25408264:25952256,505283,126483 -g1,11591:9116553,25408264 -g1,11591:10040610,25408264 -g1,11591:11524345,25408264 -g1,11591:13103762,25408264 -g1,11591:14435453,25408264 -g1,11591:16231139,25408264 -g1,11591:17239738,25408264 -g1,11591:18570774,25408264 -g1,11591:21846263,25408264 -g1,11591:23964386,25408264 -g1,11591:24578458,25408264 -k1,11592:32583029,25408264:6382555 -g1,11592:32583029,25408264 -) -(1,11594:6630773,26249752:25952256,513147,134348 -h1,11593:6630773,26249752:983040,0,0 -k1,11593:10776471,26249752:297424 -k1,11593:12178177,26249752:297424 -k1,11593:13223367,26249752:297424 -k1,11593:15678236,26249752:297424 -k1,11593:16661822,26249752:297424 -k1,11593:19068196,26249752:297425 -k1,11593:20048505,26249752:297424 -k1,11593:22367715,26249752:297424 -k1,11593:25245291,26249752:297424 -k1,11593:27029727,26249752:297424 -k1,11593:28676537,26249752:297424 -k1,11593:29921612,26249752:297424 -k1,11593:32583029,26249752:0 -) -(1,11594:6630773,27091240:25952256,513147,134348 -k1,11593:9372749,27091240:183450 -k1,11593:11672357,27091240:183450 -k1,11593:14790510,27091240:183451 -k1,11593:15921611,27091240:183450 -k1,11593:18484673,27091240:183450 -k1,11593:21578577,27091240:183450 -k1,11593:23992218,27091240:183451 -k1,11593:24633765,27091240:183450 -k1,11593:25348712,27091240:183450 -k1,11593:26867130,27091240:183450 -k1,11593:27702009,27091240:183451 -k1,11593:30109096,27091240:183450 -k1,11593:31931601,27091240:183450 -k1,11593:32583029,27091240:0 -) -(1,11594:6630773,27932728:25952256,513147,134348 -k1,11593:7215850,27932728:229217 -k1,11593:10902091,27932728:229217 -k1,11593:12327996,27932728:229218 -k1,11593:14715314,27932728:229217 -k1,11593:16920441,27932728:229217 -k1,11593:20433012,27932728:229217 -k1,11593:21329385,27932728:229217 -k1,11593:21973415,27932728:229187 -k1,11593:25113087,27932728:229218 -k1,11593:25873801,27932728:229217 -k1,11593:27970794,27932728:229217 -k1,11593:30004843,27932728:229187 -$1,11593:30211937,27932728 -k1,11593:32187847,27932728:0 -k1,11594:32583029,27932728:0 -) -(1,11594:6630773,28774216:25952256,513147,134349 -k1,11593:7025955,28774216:0 -k1,11593:7421137,28774216:0 -k1,11593:9001865,28774216:0 -k1,11593:9397047,28774216:0 -(1,11593:10187411,28872530:32768,0,0 -) -k1,11593:12986453,28774216:0 -k1,11593:13381635,28774216:0 -$1,11593:14962363,28774216 -k1,11593:15639176,28774216:296049 -k1,11593:16705929,28774216:296050 -k1,11593:19770219,28774216:296049 -k1,11593:21013920,28774216:296050 -k1,11593:26249418,28774216:296049 -k1,11593:26990360,28774216:295953 -k1,11593:29716484,28774216:296049 -k1,11593:32583029,28774216:0 -) -(1,11594:6630773,29615704:25952256,513147,134348 -k1,11593:9634645,29615704:138638 -k1,11593:12557253,29615704:138639 -k1,11593:15254417,29615704:138638 -k1,11593:17197857,29615704:138578 -k1,11593:18328056,29615704:138639 -k1,11593:22042994,29615704:138638 -k1,11593:22833061,29615704:138639 -k1,11593:24741826,29615704:138638 -k1,11593:25496502,29615704:138638 -k1,11593:26654226,29615704:138639 -k1,11593:28562991,29615704:138638 -k1,11593:29360922,29615704:138639 -k1,11593:30565831,29615704:138638 -k1,11593:32583029,29615704:0 -) -(1,11594:6630773,30457192:25952256,505283,134348 -k1,11593:7915228,30457192:152648 -k1,11593:9589623,30457192:152649 -k1,11593:11220763,30457192:152648 -k1,11593:12640877,30457192:152648 -k1,11593:13812611,30457192:152649 -k1,11593:16545411,30457192:152648 -k1,11593:17889504,30457192:152648 -k1,11593:19108423,30457192:152648 -k1,11593:21974263,30457192:152649 -k1,11593:22809796,30457192:152648 -k1,11593:25648765,30457192:152648 -k1,11593:29881030,30457192:152649 -k1,11593:31591469,30457192:152648 -k1,11593:32583029,30457192:0 -) -(1,11594:6630773,31298680:25952256,505283,134348 -k1,11593:8782824,31298680:192525 -k1,11593:10693047,31298680:192524 -k1,11593:11571734,31298680:192525 -k1,11593:13144446,31298680:192524 -k1,11593:14673905,31298680:192525 -k1,11593:17238177,31298680:192524 -k1,11593:18240072,31298680:192525 -k1,11593:20134566,31298680:192524 -k1,11593:23237545,31298680:192525 -k1,11593:25438092,31298680:192524 -k1,11593:27126804,31298680:192525 -k1,11593:28451790,31298680:192524 -k1,11593:30884991,31298680:192525 -k1,11593:32583029,31298680:0 -) -(1,11594:6630773,32140168:25952256,513147,134348 -k1,11593:9646030,32140168:204418 -k1,11593:11047135,32140168:204418 -k1,11593:13737334,32140168:204418 -k1,11593:14601044,32140168:204418 -k1,11593:17715916,32140168:204418 -k1,11593:20704303,32140168:204418 -k1,11593:23467247,32140168:204418 -k1,11593:25476522,32140168:204413 -k1,11593:26293702,32140168:204418 -k1,11593:27517205,32140168:204418 -k1,11593:29147031,32140168:204418 -k1,11593:30010741,32140168:204418 -k1,11593:32583029,32140168:0 -) -(1,11594:6630773,32981656:25952256,485622,11795 -g1,11593:8037175,32981656 -k1,11594:32583028,32981656:22379888 -g1,11594:32583028,32981656 -) -(1,11596:6630773,33823144:25952256,513147,126484 -h1,11595:6630773,33823144:983040,0,0 -k1,11595:8429708,33823144:328307 -k1,11595:9859150,33823144:328437 -k1,11595:13470941,33823144:328437 -k1,11595:14747029,33823144:328437 -k1,11595:19733109,33823144:328436 -k1,11595:21455497,33823144:328437 -k1,11595:22198647,33823144:328307 -k1,11595:23058581,33823144:328437 -k1,11595:27633751,33823144:328437 -$1,11595:27840845,33823144 -k1,11595:29816755,33823144:0 -k1,11595:30211937,33823144:0 -k1,11595:30607119,33823144:0 -k1,11595:31002301,33823144:0 -k1,11595:32187847,33823144:0 -k1,11596:32583029,33823144:0 -) -(1,11596:6630773,34664632:25952256,505283,134349 -k1,11595:11372957,34664632:0 -k1,11595:11768139,34664632:0 -$1,11595:13348867,34664632 -k1,11595:13993331,34664632:263700 -k1,11595:17619029,34664632:263701 -k1,11595:20793184,34664632:263701 -k1,11595:22341390,34664632:263700 -k1,11595:24042296,34664632:263701 -k1,11595:25973232,34664632:263700 -k1,11595:28436320,34664632:263700 -k1,11595:30395437,34664632:263701 -k1,11595:32583029,34664632:0 -) -(1,11596:6630773,35506120:25952256,505283,134348 -k1,11595:7596137,35506120:194661 -k1,11595:11017792,35506120:194662 -k1,11595:12915539,35506120:194661 -k1,11595:16194325,35506120:194662 -k1,11595:20859197,35506120:194661 -k1,11595:22154863,35506120:194661 -k1,11595:25959903,35506120:194662 -k1,11595:29411703,35506120:194661 -k1,11595:30797810,35506120:194662 -k1,11595:31348331,35506120:194661 -k1,11596:32583029,35506120:0 -) -(1,11596:6630773,36347608:25952256,513147,134348 -k1,11595:8057438,36347608:202452 -k1,11595:9207541,36347608:202452 -k1,11595:10906179,36347608:202451 -k1,11595:12512412,36347608:202452 -k1,11595:14777282,36347608:202452 -k1,11595:15927385,36347608:202452 -k1,11595:16574822,36347608:202448 -k1,11595:19861398,36347608:202452 -k1,11595:21938180,36347608:202452 -k1,11595:26587904,36347608:202451 -k1,11595:29700810,36347608:202452 -k1,11595:30894822,36347608:202452 -k1,11596:32583029,36347608:0 -) -(1,11596:6630773,37189096:25952256,505283,134348 -k1,11595:8179035,37189096:239508 -k1,11595:10977068,37189096:239507 -k1,11595:13021398,37189096:239468 -k1,11595:13943790,37189096:239507 -k1,11595:15885268,37189096:239508 -k1,11595:19925864,37189096:239508 -k1,11595:21356816,37189096:239507 -k1,11595:23357932,37189096:239508 -k1,11595:24210202,37189096:239508 -k1,11595:25468794,37189096:239507 -k1,11595:30178513,37189096:239508 -k1,11595:32583029,37189096:0 -) -(1,11596:6630773,38030584:25952256,505283,134349 -$1,11595:6837867,38030584 -k1,11595:8813777,38030584:0 -k1,11595:9208959,38030584:0 -k1,11595:9604141,38030584:0 -k1,11595:9999323,38030584:0 -k1,11595:13160779,38030584:0 -k1,11595:13555961,38030584:0 -$1,11595:15136689,38030584 -k1,11595:15785197,38030584:267744 -k1,11595:16680777,38030584:267745 -k1,11595:18640661,38030584:267744 -k1,11595:20605788,38030584:267745 -k1,11595:22044005,38030584:267744 -k1,11595:23648684,38030584:267745 -k1,11595:25446694,38030584:267744 -k1,11595:26397324,38030584:267745 -k1,11595:28213684,38030584:267744 -k1,11595:29132857,38030584:267745 -k1,11595:31369958,38030584:267744 -k1,11595:32583029,38030584:0 -) -(1,11596:6630773,38872072:25952256,513147,126483 -k1,11595:8706845,38872072:180115 -k1,11595:10383146,38872072:180114 -k1,11595:12130882,38872072:180115 -k1,11595:13248816,38872072:180114 -k1,11595:17230019,38872072:180115 -k1,11595:18903699,38872072:180114 -k1,11595:19769976,38872072:180115 -k1,11595:22614130,38872072:180115 -k1,11595:23992898,38872072:180114 -k1,11595:26059139,38872072:180115 -k1,11595:30371298,38872072:180114 -k1,11595:31617684,38872072:180115 -k1,11595:32583029,38872072:0 -) -(1,11596:6630773,39713560:25952256,505283,134348 -k1,11595:10095602,39713560:216209 -k1,11595:10963239,39713560:216209 -k1,11595:13157981,39713560:216210 -k1,11595:15165944,39713560:216209 -k1,11595:16401238,39713560:216209 -k1,11595:19197599,39713560:216209 -k1,11595:22451401,39713560:216209 -k1,11595:23535962,39713560:216209 -k1,11595:24856454,39713560:216210 -k1,11595:27042020,39713560:216209 -k1,11595:30168683,39713560:216209 -k1,11595:32583029,39713560:0 -) -(1,11596:6630773,40555048:25952256,513147,126483 -k1,11595:8344182,40555048:145788 -k1,11595:10872858,40555048:145787 -k1,11595:13977597,40555048:145788 -k1,11595:15314830,40555048:145788 -k1,11595:17162587,40555048:145787 -k1,11595:18804562,40555048:145788 -k1,11595:22751437,40555048:145787 -k1,11595:24751894,40555048:145788 -k1,11595:25707052,40555048:145788 -k1,11595:26934838,40555048:145787 -k1,11595:31015408,40555048:145788 -k1,11595:32583029,40555048:0 -) -(1,11596:6630773,41396536:25952256,513147,126483 -k1,11595:8323076,41396536:196116 -k1,11595:12320281,41396536:196117 -k1,11595:13507957,41396536:196116 -k1,11595:15833338,41396536:196116 -k1,11595:19952440,41396536:196117 -k1,11595:21716177,41396536:196116 -k1,11595:24351543,41396536:196116 -k1,11595:25779737,41396536:196117 -k1,11595:28225049,41396536:196116 -k1,11595:28891058,41396536:196116 -k1,11595:29618672,41396536:196117 -k1,11595:30474080,41396536:196116 -k1,11595:32583029,41396536:0 -) -(1,11596:6630773,42238024:25952256,513147,134348 -g1,11595:8115818,42238024 -g1,11595:10945007,42238024 -g1,11595:11795664,42238024 -g1,11595:13964250,42238024 -g1,11595:17073933,42238024 -g1,11595:18840783,42238024 -g1,11595:20534233,42238024 -g1,11595:22046804,42238024 -g1,11595:23695689,42238024 -g1,11595:25408144,42238024 -g1,11595:25963233,42238024 -g1,11595:28528967,42238024 -k1,11596:32583029,42238024:545920 -g1,11596:32583029,42238024 -) -(1,11598:6630773,43079512:25952256,513147,134348 -h1,11597:6630773,43079512:983040,0,0 -k1,11597:9046008,43079512:160797 -k1,11597:10790811,43079512:160798 -k1,11597:12189583,43079512:160797 -k1,11597:13009673,43079512:160798 -k1,11597:15772249,43079512:160797 -k1,11597:17263428,43079512:160798 -k1,11597:18443310,43079512:160797 -k1,11597:22006736,43079512:160797 -k1,11597:25018350,43079512:160798 -k1,11597:25940675,43079512:160797 -k1,11597:26457333,43079512:160798 -k1,11597:29198282,43079512:160797 -k1,11597:31129207,43079512:160798 -k1,11597:31821501,43079512:160797 -k1,11597:32583029,43079512:0 -) -(1,11598:6630773,43921000:25952256,513147,134348 -k1,11597:11385864,43921000:155774 -k1,11597:12935589,43921000:155774 -k1,11597:14904089,43921000:155774 -k1,11597:16843098,43921000:155774 -k1,11597:18734265,43921000:155774 -k1,11597:19245899,43921000:155774 -k1,11597:22097168,43921000:155773 -k1,11597:23121294,43921000:155774 -k1,11597:24268628,43921000:155774 -k1,11597:25490673,43921000:155774 -k1,11597:26611792,43921000:155774 -k1,11597:29259900,43921000:155774 -k1,11597:30983295,43921000:155774 -k1,11598:32583029,43921000:0 -) -(1,11598:6630773,44762488:25952256,513147,134348 -k1,11597:7784862,44762488:163840 -k1,11597:8561464,44762488:163840 -k1,11597:9513702,44762488:163840 -k1,11597:11065594,44762488:163839 -k1,11597:11880862,44762488:163840 -k1,11597:13866603,44762488:163840 -k1,11597:14796559,44762488:163840 -k1,11597:15748797,44762488:163840 -k1,11597:18518348,44762488:163840 -k1,11597:19814650,44762488:163840 -k1,11597:22303052,44762488:163840 -k1,11597:23925722,44762488:163839 -k1,11597:27274612,44762488:163840 -k1,11597:28859273,44762488:163840 -k1,11597:30806348,44762488:163840 -k1,11598:32583029,44762488:0 -) -(1,11598:6630773,45603976:25952256,513147,134348 -k1,11597:10094940,45603976:201785 -k1,11597:10828223,45603976:201786 -k1,11597:13788418,45603976:201785 -k1,11597:15384154,45603976:201785 -k1,11597:18496394,45603976:201786 -k1,11597:20752077,45603976:201785 -k1,11597:22643380,45603976:201785 -k1,11597:27671236,45603976:201785 -k1,11597:28532314,45603976:201786 -k1,11597:31575085,45603976:201785 -k1,11598:32583029,45603976:0 -) -] -(1,11598:32583029,45706769:0,0,0 -g1,11598:32583029,45706769 -) -) -] -(1,11598:6630773,47279633:25952256,0,0 -h1,11598:6630773,47279633:25952256,0,0 -) -] -(1,11598:4262630,4025873:0,0,0 -[1,11598:-473656,4025873:0,0,0 -(1,11598:-473656,-710413:0,0,0 -(1,11598:-473656,-710413:0,0,0 -g1,11598:-473656,-710413 -) -g1,11598:-473656,-710413 -) -] -) -] -!23055 -}194 -Input:1688:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1689:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1690:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1691:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1692:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1693:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1694:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1695:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1696:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!858 -{195 -[1,11628:4262630,47279633:28320399,43253760,0 -(1,11628:4262630,4025873:0,0,0 -[1,11628:-473656,4025873:0,0,0 -(1,11628:-473656,-710413:0,0,0 -(1,11628:-473656,-644877:0,0,0 -k1,11628:-473656,-644877:-65536 +g1,10776:12630967,31076031 +(1,10776:12630967,31076031:11273228,721028,237900 +g1,10776:12958647,31076031 +g1,10776:12958648,31076031 +$1,10776:12958648,31076031 +(1,10776:12958648,31095014:692060,528220,79954 ) -(1,11628:-473656,4736287:0,0,0 -k1,11628:-473656,4736287:5209943 +[1,10776:13650708,31201530:909902,785646,5505 +(1,10776:13650708,30750314:311689,334430,0 ) -g1,11628:-473656,-710413 +(1,10776:13650708,31201530:909902,346358,5505 ) ] +g1,10776:14669846,31076031 +(1,10776:15143017,31174345:233243,346358,5505 ) -[1,11628:6630773,47279633:25952256,43253760,0 -[1,11628:6630773,4812305:25952256,786432,0 -(1,11628:6630773,4812305:25952256,505283,134348 -(1,11628:6630773,4812305:25952256,505283,134348 -g1,11628:3078558,4812305 -[1,11628:3078558,4812305:0,0,0 -(1,11628:3078558,2439708:0,1703936,0 -k1,11628:1358238,2439708:-1720320 -(1,10825:1358238,2439708:1720320,1703936,0 -(1,10825:1358238,2439708:1179648,16384,0 -r1,11628:2537886,2439708:1179648,16384,0 +g1,10776:15674895,31076031 +g1,10776:16361503,31076031 +(1,10776:16361503,31095014:692060,528220,79954 ) -g1,10825:3062174,2439708 -(1,10825:3062174,2439708:16384,1703936,0 -[1,10825:3062174,2439708:25952256,1703936,0 -(1,10825:3062174,1915420:25952256,1179648,0 -(1,10825:3062174,1915420:16384,1179648,0 -r1,11628:3078558,1915420:16384,1179648,0 +[1,10776:17053563,31249374:909902,894371,5505 +(1,10776:17053563,30701361:286917,346358,96797 ) -k1,10825:29014430,1915420:25935872 -g1,10825:29014430,1915420 +(1,10776:17053563,31249374:909902,346358,5505 ) ] +g1,10776:18072701,31076031 +(1,10776:18545872,31174345:233243,346358,5505 ) +g1,10776:19077750,31076031 +g1,10776:19764358,31076031 +(1,10776:19764358,31095014:692060,528220,79954 ) +[1,10776:20456418,31207035:909902,705365,5505 +(1,10776:20456418,30750314:393347,248644,5505 ) -] -[1,11628:3078558,4812305:0,0,0 -(1,11628:3078558,2439708:0,1703936,0 -g1,11628:29030814,2439708 -g1,11628:36135244,2439708 -(1,10825:36135244,2439708:1720320,1703936,0 -(1,10825:36135244,2439708:16384,1703936,0 -[1,10825:36135244,2439708:25952256,1703936,0 -(1,10825:36135244,1915420:25952256,1179648,0 -(1,10825:36135244,1915420:16384,1179648,0 -r1,11628:36151628,1915420:16384,1179648,0 -) -k1,10825:62087500,1915420:25935872 -g1,10825:62087500,1915420 +(1,10776:20456418,31207035:909902,346358,5505 ) ] +g1,10776:21475556,31076031 +(1,10776:21948727,31174345:233243,346358,5505 ) -g1,10825:36675916,2439708 -(1,10825:36675916,2439708:1179648,16384,0 -r1,11628:37855564,2439708:1179648,16384,0 -) -) -k1,11628:3078556,2439708:-34777008 +$1,10776:22181970,31076031 +k1,10776:23576515,31076031:1394545 +g1,10776:23904195,31076031 +) +g1,10776:23904195,31076031 +(1,10777:23904195,31076031:8112038,721028,237900 +g1,10776:24231875,31076031 +g1,10776:24231876,31076031 +g1,10776:27224905,31076031 +$1,10776:27224905,31076031 +(1,10776:27740018,31174345:779158,298648,5505 +) +g1,10776:28701236,31076031 +g1,10776:29451493,31076031 +(1,10776:29966606,31174345:463995,331678,0 +) +$1,10776:30430601,31076031 +k1,10777:31688553,31076031:1257952 +g1,10777:32016233,31076031 +) +g1,10777:32016233,31076031 +) +(1,10778:7396798,31869024:24619435,555093,237900 +g1,10777:7396798,31869024 +(1,10777:7396798,31869024:5234169,555093,237900 +r1,10795:7396798,31869024:0,792993,237900 +g1,10777:7724478,31869024 +g1,10777:7724479,31869024 +(1,10777:7724479,31869024:0,452978,115847 +r1,10795:10544728,31869024:2820249,568825,115847 +k1,10777:7724479,31869024:-2820249 +) +(1,10777:7724479,31869024:2820249,452978,115847 +k1,10777:7724479,31869024:3277 +h1,10777:10541451,31869024:0,411205,112570 +) +k1,10777:12303287,31869024:1758559 +g1,10777:12630967,31869024 +) +g1,10777:12630967,31869024 +(1,10777:12630967,31869024:11273228,555093,237900 +g1,10777:12958647,31869024 +g1,10777:12958648,31869024 +g1,10777:16664708,31869024 +k1,10777:23576515,31869024:3714961 +g1,10777:23904195,31869024 +) +g1,10777:23904195,31869024 +(1,10778:23904195,31869024:8112038,555093,237900 +g1,10777:24231875,31869024 +g1,10777:24231876,31869024 +g1,10777:27224905,31869024 +$1,10777:27224905,31869024 +(1,10777:27740018,31967338:779158,298648,5505 +) +g1,10777:28701236,31869024 +g1,10777:29451493,31869024 +(1,10777:29966606,31967338:463995,331678,0 +) +$1,10777:30430601,31869024 +k1,10778:31688553,31869024:1257952 +g1,10778:32016233,31869024 +) +g1,10778:32016233,31869024 +) +(1,10779:7396798,32662017:24619435,555093,237900 +g1,10778:7396798,32662017 +(1,10778:7396798,32662017:5234169,555093,237900 +r1,10795:7396798,32662017:0,792993,237900 +g1,10778:7724478,32662017 +g1,10778:7724479,32662017 +(1,10778:7724479,32662017:0,452978,115847 +r1,10795:10544728,32662017:2820249,568825,115847 +k1,10778:7724479,32662017:-2820249 +) +(1,10778:7724479,32662017:2820249,452978,115847 +k1,10778:7724479,32662017:3277 +h1,10778:10541451,32662017:0,411205,112570 +) +k1,10778:12303287,32662017:1758559 +g1,10778:12630967,32662017 +) +g1,10778:12630967,32662017 +(1,10778:12630967,32662017:11273228,555093,237900 +g1,10778:12958647,32662017 +g1,10778:12958648,32662017 +g1,10778:16664708,32662017 +k1,10778:23576515,32662017:3819818 +g1,10778:23904195,32662017 +) +g1,10778:23904195,32662017 +(1,10779:23904195,32662017:8112038,555093,237900 +g1,10778:24231875,32662017 +g1,10778:24231876,32662017 +g1,10778:27224905,32662017 +$1,10778:27224905,32662017 +(1,10778:27740018,32760331:779158,298648,5505 +) +g1,10778:28701236,32662017 +g1,10778:29451493,32662017 +(1,10778:29966606,32760331:463995,331678,0 +) +$1,10778:30430601,32662017 +k1,10779:31688553,32662017:1257952 +g1,10779:32016233,32662017 +) +g1,10779:32016233,32662017 +) +(1,10780:7396798,33455010:24619435,555093,237900 +g1,10779:7396798,33455010 +(1,10779:7396798,33455010:5234169,555093,237900 +r1,10795:7396798,33455010:0,792993,237900 +g1,10779:7724478,33455010 +g1,10779:7724479,33455010 +(1,10779:7724479,33455010:0,452978,115847 +r1,10795:10544728,33455010:2820249,568825,115847 +k1,10779:7724479,33455010:-2820249 +) +(1,10779:7724479,33455010:2820249,452978,115847 +k1,10779:7724479,33455010:3277 +h1,10779:10541451,33455010:0,411205,112570 +) +k1,10779:12303287,33455010:1758559 +g1,10779:12630967,33455010 +) +g1,10779:12630967,33455010 +(1,10779:12630967,33455010:11273228,555093,237900 +g1,10779:12958647,33455010 +g1,10779:12958648,33455010 +g1,10779:15681013,33455010 +k1,10779:23576515,33455010:5535551 +g1,10779:23904195,33455010 +) +g1,10779:23904195,33455010 +(1,10780:23904195,33455010:8112038,555093,237900 +g1,10779:24231875,33455010 +g1,10779:24231876,33455010 +g1,10779:27224905,33455010 +$1,10779:27224905,33455010 +(1,10779:27740018,33553324:779158,298648,5505 +) +g1,10779:28701236,33455010 +g1,10779:29451493,33455010 +(1,10779:29966606,33553324:463995,331678,0 +) +$1,10779:30430601,33455010 +k1,10780:31688553,33455010:1257952 +g1,10780:32016233,33455010 +) +g1,10780:32016233,33455010 +) +(1,10781:7396798,34248003:24619435,555093,237900 +g1,10780:7396798,34248003 +(1,10780:7396798,34248003:5234169,555093,237900 +r1,10795:7396798,34248003:0,792993,237900 +g1,10780:7724478,34248003 +g1,10780:7724479,34248003 +(1,10780:7724479,34248003:0,459977,115847 +r1,10795:9841304,34248003:2116825,575824,115847 +k1,10780:7724479,34248003:-2116825 +) +(1,10780:7724479,34248003:2116825,459977,115847 +k1,10780:7724479,34248003:3277 +h1,10780:9838027,34248003:0,411205,112570 +) +k1,10780:12303287,34248003:2461983 +g1,10780:12630967,34248003 +) +g1,10780:12630967,34248003 +(1,10780:12630967,34248003:11273228,555093,237900 +g1,10780:12958647,34248003 +g1,10780:12958648,34248003 +$1,10780:12958648,34248003 +(1,10780:13431819,34346317:311689,339935,0 +) +g1,10780:13889156,34248003 +g1,10780:14603001,34248003 +(1,10780:15076172,34346317:311689,334430,0 +) +g1,10780:15686496,34248003 +g1,10780:16373104,34248003 +(1,10780:16846275,34346317:233243,346358,5505 +) +g1,10780:17225166,34248003 +g1,10780:17939011,34248003 +(1,10780:18412182,34346317:909902,346358,5505 +) +g1,10780:19620719,34248003 +g1,10780:20307327,34248003 +(1,10780:20780498,34346317:393347,248644,5505 +) +g1,10780:21319493,34248003 +g1,10780:22033338,34248003 +(1,10780:22506509,34346317:1070006,334430,5505 +) +$1,10780:23576515,34248003 +g1,10780:23576515,34248003 +g1,10780:23904195,34248003 +) +g1,10780:23904195,34248003 +(1,10781:23904195,34248003:8112038,555093,237900 +g1,10780:24231875,34248003 +g1,10780:24231876,34248003 +g1,10780:27224905,34248003 +$1,10780:27224905,34248003 +(1,10780:27740018,34346317:779158,298648,5505 +) +g1,10780:28701236,34248003 +g1,10780:29451493,34248003 +(1,10780:29966606,34346317:463995,331678,0 +) +g1,10780:30576249,34248003 +g1,10780:31290094,34248003 +$1,10780:31688553,34248003 +g1,10781:31688553,34248003 +g1,10781:32016233,34248003 +) +g1,10781:32016233,34248003 +) +(1,10782:7396798,35040996:24619435,555093,237900 +g1,10781:7396798,35040996 +(1,10781:7396798,35040996:5234169,555093,237900 +r1,10795:7396798,35040996:0,792993,237900 +g1,10781:7724478,35040996 +g1,10781:7724479,35040996 +(1,10781:7724479,35040996:0,459977,115847 +r1,10795:10896439,35040996:3171960,575824,115847 +k1,10781:7724479,35040996:-3171960 +) +(1,10781:7724479,35040996:3171960,459977,115847 +k1,10781:7724479,35040996:3277 +h1,10781:10893162,35040996:0,411205,112570 +) +k1,10781:12303287,35040996:1406848 +g1,10781:12630967,35040996 +) +g1,10781:12630967,35040996 +(1,10781:12630967,35040996:11273228,555093,237900 +g1,10781:12958647,35040996 +g1,10781:12958648,35040996 +g1,10781:15444428,35040996 +g1,10781:16302949,35040996 +k1,10781:23576515,35040996:6166008 +g1,10781:23904195,35040996 +) +g1,10781:23904195,35040996 +(1,10782:23904195,35040996:8112038,555093,237900 +g1,10781:24231875,35040996 +g1,10781:24231876,35040996 +g1,10781:27224905,35040996 +$1,10781:27224905,35040996 +(1,10781:27740018,35139310:779158,298648,5505 +) +g1,10781:28701236,35040996 +g1,10781:29451493,35040996 +(1,10781:29966606,35139310:463995,331678,0 +) +g1,10781:30576249,35040996 +g1,10781:31290094,35040996 +$1,10781:31688553,35040996 +g1,10782:31688553,35040996 +g1,10782:32016233,35040996 +) +g1,10782:32016233,35040996 +) +(1,10783:7396798,35833989:24619435,555093,237900 +g1,10782:7396798,35833989 +(1,10782:7396798,35833989:5234169,555093,237900 +r1,10795:7396798,35833989:0,792993,237900 +g1,10782:7724478,35833989 +g1,10782:7724479,35833989 +(1,10782:7724479,35833989:0,459977,115847 +r1,10795:11599863,35833989:3875384,575824,115847 +k1,10782:7724479,35833989:-3875384 +) +(1,10782:7724479,35833989:3875384,459977,115847 +k1,10782:7724479,35833989:3277 +h1,10782:11596586,35833989:0,411205,112570 +) +k1,10782:12303287,35833989:703424 +g1,10782:12630967,35833989 +) +g1,10782:12630967,35833989 +(1,10782:12630967,35833989:11273228,555093,237900 +g1,10782:12958647,35833989 +g1,10782:12958648,35833989 +$1,10782:12958648,35833989 +$1,10782:13634979,35833989 +k1,10782:23576515,35833989:9941536 +g1,10782:23904195,35833989 +) +g1,10782:23904195,35833989 +(1,10783:23904195,35833989:8112038,555093,237900 +g1,10782:24231875,35833989 +g1,10782:24231876,35833989 +g1,10782:27224905,35833989 +$1,10782:27224905,35833989 +(1,10782:27740018,35932303:779158,298648,5505 +) +g1,10782:28701236,35833989 +g1,10782:29451493,35833989 +(1,10782:29966606,35932303:463995,331678,0 +) +$1,10782:30430601,35833989 +k1,10783:31688553,35833989:1257952 +g1,10783:32016233,35833989 +) +g1,10783:32016233,35833989 +) +(1,10784:7396798,36626982:24619435,555093,237900 +g1,10783:7396798,36626982 +(1,10783:7396798,36626982:5234169,555093,237900 +r1,10795:7396798,36626982:0,792993,237900 +g1,10783:7724478,36626982 +g1,10783:7724479,36626982 +(1,10783:7724479,36626982:0,452978,115847 +r1,10795:9489592,36626982:1765113,568825,115847 +k1,10783:7724479,36626982:-1765113 +) +(1,10783:7724479,36626982:1765113,452978,115847 +k1,10783:7724479,36626982:3277 +h1,10783:9486315,36626982:0,411205,112570 +) +k1,10783:12303287,36626982:2813695 +g1,10783:12630967,36626982 +) +g1,10783:12630967,36626982 +(1,10783:12630967,36626982:11273228,555093,237900 +g1,10783:12958647,36626982 +g1,10783:12958648,36626982 +g1,10783:16502179,36626982 +k1,10783:23576515,36626982:4173057 +g1,10783:23904195,36626982 +) +g1,10783:23904195,36626982 +(1,10784:23904195,36626982:8112038,555093,237900 +g1,10783:24231875,36626982 +g1,10783:24231876,36626982 +$1,10783:24231876,36626982 +(1,10783:24746989,36725296:779158,298648,5505 +) +g1,10783:25708207,36626982 +g1,10783:26411278,36626982 +(1,10783:26926391,36725296:463995,331678,0 +) +$1,10783:27390386,36626982 +k1,10784:31688553,36626982:4298167 +g1,10784:32016233,36626982 +) +g1,10784:32016233,36626982 +) +(1,10785:7396798,37419975:24619435,555093,237900 +g1,10784:7396798,37419975 +(1,10784:7396798,37419975:5234169,555093,237900 +r1,10795:7396798,37419975:0,792993,237900 +g1,10784:7724478,37419975 +g1,10784:7724479,37419975 +(1,10784:7724479,37419975:0,452978,115847 +r1,10795:12303287,37419975:4578808,568825,115847 +k1,10784:7724479,37419975:-4578808 +) +(1,10784:7724479,37419975:4578808,452978,115847 +k1,10784:7724479,37419975:3277 +h1,10784:12300010,37419975:0,411205,112570 +) +g1,10784:12303287,37419975 +g1,10784:12630967,37419975 +) +g1,10784:12630967,37419975 +(1,10784:12630967,37419975:11273228,555093,237900 +g1,10784:12958647,37419975 +g1,10784:12958648,37419975 +g1,10784:16502179,37419975 +k1,10784:23576515,37419975:4167159 +g1,10784:23904195,37419975 +) +g1,10784:23904195,37419975 +(1,10785:23904195,37419975:8112038,555093,237900 +g1,10784:24231875,37419975 +g1,10784:24231876,37419975 +$1,10784:24231876,37419975 +(1,10784:24746989,37518289:779158,298648,5505 +) +g1,10784:25708207,37419975 +g1,10784:26411278,37419975 +(1,10784:26926391,37518289:463995,331678,0 +) +$1,10784:27390386,37419975 +k1,10785:31688553,37419975:4298167 +g1,10785:32016233,37419975 +) +g1,10785:32016233,37419975 +) +] +$1,10786:32016233,32313555 +) +g1,10786:32016233,32313555 +) +(1,10786:7197569,38019895:24818664,65536,0 +g1,10786:7197569,38019895 +(1,10786:7197569,38019895:24818664,65536,0 +r1,10795:32016233,38019895:24818664,65536,0 +) +g1,10786:32016233,38019895 +) +] +k1,10786:32583029,38019895:566796 +g1,10786:32583029,38019895 +) +v1,10789:6630773,38884975:0,393216,0 +(1,10790:6630773,41014095:25952256,2522336,0 +g1,10790:6630773,41014095 +g1,10790:6237557,41014095 +r1,10795:6368629,41014095:131072,2522336,0 +g1,10790:6567858,41014095 +g1,10790:6764466,41014095 +[1,10790:6764466,41014095:25818563,2522336,0 +(1,10790:6764466,39157452:25818563,665693,196608 +(1,10789:6764466,39157452:0,665693,196608 +r1,10795:8010564,39157452:1246098,862301,196608 +k1,10789:6764466,39157452:-1246098 +) +(1,10789:6764466,39157452:1246098,665693,196608 +) +k1,10789:8288547,39157452:277983 +k1,10789:10014765,39157452:327680 +k1,10789:11933769,39157452:277982 +k1,10789:12567612,39157452:277983 +(1,10789:12567612,39157452:0,452978,115847 +r1,10795:15036149,39157452:2468537,568825,115847 +k1,10789:12567612,39157452:-2468537 +) +(1,10789:12567612,39157452:2468537,452978,115847 +k1,10789:12567612,39157452:3277 +h1,10789:15032872,39157452:0,411205,112570 +) +k1,10789:15314132,39157452:277983 +k1,10789:17569991,39157452:277982 +k1,10789:19341540,39157452:277983 +k1,10789:20305684,39157452:277982 +(1,10789:20305684,39157452:0,452978,115847 +r1,10795:27698189,39157452:7392505,568825,115847 +k1,10789:20305684,39157452:-7392505 +) +(1,10789:20305684,39157452:7392505,452978,115847 +g1,10789:21012385,39157452 +g1,10789:22067521,39157452 +g1,10789:23826080,39157452 +g1,10789:24881216,39157452 +g1,10789:25936352,39157452 +g1,10789:26991488,39157452 +h1,10789:27694912,39157452:0,411205,112570 +) +k1,10789:27976172,39157452:277983 +k1,10789:29445600,39157452:277983 +k1,10789:31160787,39157452:277982 +k1,10789:31896867,39157452:277983 +k1,10789:32583029,39157452:0 +) +(1,10790:6764466,40022532:25818563,513147,134348 +k1,10789:10008200,40022532:171406 +k1,10789:10831035,40022532:171407 +k1,10789:12021526,40022532:171406 +k1,10789:15218729,40022532:171406 +k1,10789:16006174,40022532:171407 +k1,10789:17196665,40022532:171406 +k1,10789:18933727,40022532:171407 +k1,10789:21134128,40022532:171406 +k1,10789:22203377,40022532:171406 +k1,10789:23393869,40022532:171407 +k1,10789:28188840,40022532:171406 +k1,10789:32583029,40022532:0 +) +(1,10790:6764466,40887612:25818563,513147,126483 +g1,10789:9896431,40887612 +g1,10789:11588570,40887612 +g1,10789:12958272,40887612 +g1,10789:14149061,40887612 +g1,10789:15729134,40887612 +g1,10789:16579791,40887612 +g1,10789:20443793,40887612 +g1,10789:22191638,40887612 +g1,10789:23842489,40887612 +g1,10789:26737214,40887612 +k1,10790:32583029,40887612:2533625 +g1,10790:32583029,40887612 ) ] -[1,11628:3078558,4812305:0,0,0 -(1,11628:3078558,49800853:0,16384,2228224 -k1,11628:1358238,49800853:-1720320 -(1,10825:1358238,49800853:1720320,16384,2228224 -(1,10825:1358238,49800853:1179648,16384,0 -r1,11628:2537886,49800853:1179648,16384,0 +g1,10790:32583029,41014095 ) -g1,10825:3062174,49800853 -(1,10825:3062174,52029077:16384,1703936,0 -[1,10825:3062174,52029077:25952256,1703936,0 -(1,10825:3062174,51504789:25952256,1179648,0 -(1,10825:3062174,51504789:16384,1179648,0 -r1,11628:3078558,51504789:16384,1179648,0 -) -k1,10825:29014430,51504789:25935872 -g1,10825:29014430,51504789 -) -] -) -) -) -] -[1,11628:3078558,4812305:0,0,0 -(1,11628:3078558,49800853:0,16384,2228224 -g1,11628:29030814,49800853 -g1,11628:36135244,49800853 -(1,10825:36135244,49800853:1720320,16384,2228224 -(1,10825:36135244,52029077:16384,1703936,0 -[1,10825:36135244,52029077:25952256,1703936,0 -(1,10825:36135244,51504789:25952256,1179648,0 -(1,10825:36135244,51504789:16384,1179648,0 -r1,11628:36151628,51504789:16384,1179648,0 -) -k1,10825:62087500,51504789:25935872 -g1,10825:62087500,51504789 -) -] -) -g1,10825:36675916,49800853 -(1,10825:36675916,49800853:1179648,16384,0 -r1,11628:37855564,49800853:1179648,16384,0 -) -) -k1,11628:3078556,49800853:-34777008 -) -] -g1,11628:6630773,4812305 -k1,11628:23552825,4812305:15726675 -g1,11628:25175496,4812305 -g1,11628:25997972,4812305 -g1,11628:28481131,4812305 -g1,11628:30046786,4812305 -) -) -] -[1,11628:6630773,45706769:25952256,40108032,0 -(1,11628:6630773,45706769:25952256,40108032,0 -(1,11628:6630773,45706769:0,0,0 -g1,11628:6630773,45706769 -) -[1,11628:6630773,45706769:25952256,40108032,0 -(1,11598:6630773,6254097:25952256,513147,134348 -k1,11597:8328090,6254097:202441 -k1,11597:9062027,6254097:202440 -k1,11597:12249633,6254097:202441 -k1,11597:14203850,6254097:202440 -k1,11597:17316745,6254097:202441 -k1,11597:20030526,6254097:202441 -k1,11597:20849004,6254097:202440 -k1,11597:23891120,6254097:202441 -k1,11597:28911112,6254097:202440 -k1,11597:30494397,6254097:202441 -k1,11597:32583029,6254097:0 -) -(1,11598:6630773,7095585:25952256,513147,134348 -k1,11597:7568418,7095585:254760 -k1,11597:10141843,7095585:254761 -k1,11597:11082765,7095585:254760 -k1,11597:14306961,7095585:254760 -k1,11597:15031614,7095585:254760 -k1,11597:15817872,7095585:254761 -k1,11597:17138903,7095585:254760 -k1,11597:19944324,7095585:254760 -k1,11597:20850512,7095585:254760 -k1,11597:23176211,7095585:254761 -k1,11597:25316442,7095585:254760 -k1,11597:28151354,7095585:254760 -k1,11597:29057542,7095585:254760 -k1,11597:30404788,7095585:254761 -k1,11597:32227169,7095585:254760 -k1,11597:32583029,7095585:0 -) -(1,11598:6630773,7937073:25952256,513147,126483 -k1,11597:7768578,7937073:203262 -k1,11597:8631133,7937073:203263 -k1,11597:12551597,7937073:203262 -k1,11597:14609529,7937073:203263 -k1,11597:15622161,7937073:203262 -k1,11597:16844508,7937073:203262 -k1,11597:19247159,7937073:203263 -k1,11597:20109713,7937073:203262 -k1,11597:23096944,7937073:203262 -k1,11597:28299949,7937073:203263 -k1,11597:29131046,7937073:203262 -k1,11597:30353394,7937073:203263 -k1,11597:31923737,7937073:203262 -k1,11597:32583029,7937073:0 -) -(1,11598:6630773,8778561:25952256,513147,134348 -k1,11597:9785414,8778561:244187 -k1,11597:12217193,8778561:244187 -k1,11597:15428851,8778561:244188 -k1,11597:16956233,8778561:244187 -k1,11597:21449774,8778561:244187 -k1,11597:23074149,8778561:244187 -k1,11597:24655270,8778561:244187 -k1,11597:25647224,8778561:244188 -k1,11597:29862237,8778561:244187 -k1,11597:30722462,8778561:244187 -k1,11597:32583029,8778561:0 -) -(1,11598:6630773,9620049:25952256,513147,126483 -k1,11597:7450573,9620049:203762 -k1,11597:8010195,9620049:203762 -k1,11597:9969668,9620049:203763 -k1,11597:13888011,9620049:203762 -k1,11597:17083492,9620049:203762 -k1,11597:18278814,9620049:203762 -k1,11597:22538599,9620049:203762 -k1,11597:24891942,9620049:203762 -k1,11597:25698636,9620049:203763 -k1,11597:26262191,9620049:203762 -k1,11597:27676403,9620049:203762 -k1,11597:29738111,9620049:203762 -k1,11597:32583029,9620049:0 -) -(1,11598:6630773,10461537:25952256,505283,102891 -k1,11597:8038593,10461537:216375 -k1,11597:9944487,10461537:216376 -k1,11597:12135513,10461537:216426 -k1,11597:14612311,10461537:216461 -k1,11597:18652056,10461537:216375 -k1,11597:20402630,10461537:216376 -k1,11597:24669130,10461537:216375 -k1,11597:26248654,10461537:216375 -k1,11597:26914606,10461537:216375 -k1,11597:29374280,10461537:216376 -k1,11597:31391584,10461537:216375 -k1,11597:32583029,10461537:0 -) -(1,11598:6630773,11303025:25952256,513147,134348 -g1,11597:9378697,11303025 -g1,11597:11918872,11303025 -g1,11597:14928940,11303025 -g1,11597:16052227,11303025 -g1,11597:17785654,11303025 -g1,11597:20630572,11303025 -g1,11597:23961111,11303025 -g1,11597:25351785,11303025 -g1,11597:27704527,11303025 -k1,11598:32583029,11303025:2903902 -g1,11598:32583029,11303025 -) -(1,11599:6630773,13394285:25952256,555811,104529 -(1,11599:6630773,13394285:2450326,534184,12975 -g1,11599:6630773,13394285 -g1,11599:9081099,13394285 -) -g1,11599:13170022,13394285 -g1,11599:17460075,13394285 -g1,11599:19027303,13394285 -k1,11599:32583029,13394285:12301367 -g1,11599:32583029,13394285 -) -(1,11603:6630773,14628989:25952256,505283,134348 -k1,11602:7429961,14628989:171353 -k1,11602:8016130,14628989:171326 -k1,11602:10207959,14628989:171354 -k1,11602:13080051,14628989:171353 -k1,11602:13782901,14628989:171353 -k1,11602:14973340,14628989:171354 -k1,11602:17701252,14628989:171353 -k1,11602:19791500,14628989:171354 -k1,11602:22873307,14628989:171353 -k1,11602:24036221,14628989:171354 -k1,11602:27118683,14628989:171353 -k1,11602:30155271,14628989:171354 -k1,11602:31318184,14628989:171353 -k1,11602:32583029,14628989:0 -) -(1,11603:6630773,15470477:25952256,513147,126483 -k1,11602:7549205,15470477:259140 -k1,11602:11007813,15470477:259140 -k1,11602:12458398,15470477:259140 -k1,11602:14280572,15470477:259140 -k1,11602:16937019,15470477:259140 -k1,11602:18143810,15470477:259140 -k1,11602:20095090,15470477:259140 -k1,11602:23475054,15470477:259140 -k1,11602:26524717,15470477:259140 -k1,11602:28068363,15470477:259140 -k1,11602:29431785,15470477:259140 -k1,11602:30438691,15470477:259140 -k1,11602:32583029,15470477:0 -) -(1,11603:6630773,16311965:25952256,505283,126483 -k1,11602:8168047,16311965:269808 -k1,11602:9208558,16311965:269808 -k1,11602:9893138,16311965:269737 -k1,11602:12511756,16311965:269808 -k1,11602:13432992,16311965:269808 -k1,11602:15418533,16311965:269808 -k1,11602:17327396,16311965:269808 -k1,11602:20381173,16311965:269808 -k1,11602:21375809,16311965:269808 -k1,11602:22930123,16311965:269808 -k1,11602:24580119,16311965:269808 -k1,11602:25954209,16311965:269808 -k1,11602:26971783,16311965:269808 -k1,11602:28754817,16311965:269808 -k1,11602:29640663,16311965:269808 -k1,11602:30929556,16311965:269808 -k1,11602:32583029,16311965:0 -) -(1,11603:6630773,17153453:25952256,513147,126483 -k1,11602:8116897,17153453:248149 -k1,11602:9051209,17153453:248150 -k1,11602:11606881,17153453:248149 -k1,11602:12269825,17153453:248101 -k1,11602:15543771,17153453:248149 -k1,11602:16983366,17153453:248150 -k1,11602:18794549,17153453:248149 -k1,11602:21832566,17153453:248149 -(1,11602:21832566,17153453:0,452978,115847 -r1,11628:25004526,17153453:3171960,568825,115847 -k1,11602:21832566,17153453:-3171960 -) -(1,11602:21832566,17153453:3171960,452978,115847 -k1,11602:21832566,17153453:3277 -h1,11602:25001249,17153453:0,411205,112570 -) -k1,11602:25252676,17153453:248150 -k1,11602:26032322,17153453:248149 -k1,11602:27793698,17153453:248150 -k1,11602:28693275,17153453:248149 -k1,11602:30317681,17153453:248150 -k1,11602:31757275,17153453:248149 -k1,11603:32583029,17153453:0 -) -(1,11603:6630773,17994941:25952256,513147,134348 -k1,11602:8175508,17994941:183552 -k1,11602:11269515,17994941:183553 -k1,11602:12737573,17994941:183552 -k1,11602:13912685,17994941:183552 -k1,11602:16430629,17994941:183552 -k1,11602:19351621,17994941:183553 -k1,11602:20151211,17994941:183552 -k1,11602:21353848,17994941:183552 -k1,11602:23031621,17994941:183552 -k1,11602:23630001,17994941:183537 -k1,11602:26087652,17994941:183552 -k1,11602:26899040,17994941:183553 -k1,11602:29887533,17994941:183552 -k1,11603:32583029,17994941:0 -) -(1,11603:6630773,18836429:25952256,505283,134348 -(1,11602:6630773,18836429:0,452978,122846 -r1,11628:12968140,18836429:6337367,575824,122846 -k1,11602:6630773,18836429:-6337367 -) -(1,11602:6630773,18836429:6337367,452978,122846 -k1,11602:6630773,18836429:3277 -h1,11602:12964863,18836429:0,411205,112570 -) -g1,11602:13167369,18836429 -g1,11602:13898095,18836429 -g1,11602:15610550,18836429 -g1,11602:16461207,18836429 -g1,11602:18629793,18836429 -k1,11603:32583029,18836429:10869112 -g1,11603:32583029,18836429 -) -v1,11605:6630773,20202205:0,393216,0 -(1,11618:6630773,29690018:25952256,9881029,0 -g1,11618:6630773,29690018 -g1,11618:6303093,29690018 -r1,11628:6401397,29690018:98304,9881029,0 -g1,11618:6600626,29690018 -g1,11618:6797234,29690018 -[1,11618:6797234,29690018:25785795,9881029,0 -(1,11606:6797234,20597308:25785795,788319,218313 -(1,11605:6797234,20597308:0,788319,218313 -r1,11628:7917113,20597308:1119879,1006632,218313 -k1,11605:6797234,20597308:-1119879 -) -(1,11605:6797234,20597308:1119879,788319,218313 -) -g1,11605:8116342,20597308 -g1,11605:8444022,20597308 -g1,11605:10152545,20597308 -g1,11605:11016309,20597308 -g1,11605:13251086,20597308 -g1,11605:14162691,20597308 -g1,11605:16637986,20597308 -g1,11605:17206838,20597308 -g1,11605:20111393,20597308 -g1,11605:21929361,20597308 -k1,11605:32583029,20597308:8347456 -g1,11606:32583029,20597308 -) -(1,11606:6797234,21438796:25785795,513147,134348 -k1,11605:8888291,21438796:210829 -k1,11605:9630628,21438796:210840 -k1,11605:10860553,21438796:210840 -k1,11605:13336974,21438796:210841 -k1,11605:16831168,21438796:210840 -k1,11605:17989659,21438796:210840 -k1,11605:18615331,21438796:210829 -k1,11605:21910295,21438796:210840 -k1,11605:22598892,21438796:210840 -k1,11605:23980206,21438796:210841 -k1,11605:25283531,21438796:210840 -k1,11605:27918548,21438796:210840 -k1,11605:28812274,21438796:210841 -k1,11605:31495787,21438796:210840 -k1,11605:32583029,21438796:0 -) -(1,11606:6797234,22280284:25785795,513147,134348 -k1,11605:7645928,22280284:162532 -k1,11605:9427855,22280284:162532 -k1,11605:10773313,22280284:162533 -k1,11605:11745215,22280284:162532 -k1,11605:13039554,22280284:162532 -k1,11605:16256064,22280284:162532 -k1,11605:18664515,22280284:162532 -k1,11605:19509933,22280284:162533 -k1,11605:21311483,22280284:162495 -k1,11605:23360142,22280284:162533 -k1,11605:27636368,22280284:162532 -k1,11605:31391584,22280284:162532 -k1,11605:32583029,22280284:0 -) -(1,11606:6797234,23121772:25785795,505283,134348 -k1,11605:9587994,23121772:244031 -k1,11605:10936307,23121772:244031 -k1,11605:11928104,23121772:244031 -k1,11605:13749587,23121772:244031 -k1,11605:16552144,23121772:244031 -k1,11605:17152035,23121772:244031 -k1,11605:19193064,23121772:244032 -k1,11605:20119980,23121772:244031 -k1,11605:21527885,23121772:243986 -k1,11605:24431367,23121772:244031 -k1,11605:26549728,23121772:244031 -k1,11605:28921058,23121772:244031 -k1,11605:30257574,23121772:244031 -k1,11605:31931601,23121772:244031 -k1,11606:32583029,23121772:0 -) -(1,11606:6797234,23963260:25785795,505283,122846 -(1,11605:6797234,23963260:0,452978,122846 -r1,11628:13134601,23963260:6337367,575824,122846 -k1,11605:6797234,23963260:-6337367 -) -(1,11605:6797234,23963260:6337367,452978,122846 -k1,11605:6797234,23963260:3277 -h1,11605:13131324,23963260:0,411205,112570 -) -g1,11605:13333830,23963260 -g1,11605:14724504,23963260 -(1,11605:14724504,23963260:0,452978,122846 -r1,11628:20710159,23963260:5985655,575824,122846 -k1,11605:14724504,23963260:-5985655 -) -(1,11605:14724504,23963260:5985655,452978,122846 -k1,11605:14724504,23963260:3277 -h1,11605:20706882,23963260:0,411205,112570 -) -g1,11605:20909388,23963260 -g1,11605:23308005,23963260 -g1,11605:24526319,23963260 -k1,11606:32583029,23963260:5779334 -g1,11606:32583029,23963260 -) -(1,11608:6797234,24804748:25785795,505283,126483 -h1,11607:6797234,24804748:983040,0,0 -k1,11607:12301963,24804748:263159 -k1,11607:13177885,24804748:263160 -k1,11607:14460129,24804748:263159 -k1,11607:15138067,24804748:263095 -k1,11607:18560718,24804748:263160 -k1,11607:20166054,24804748:263159 -k1,11607:21112099,24804748:263160 -k1,11607:21991296,24804748:263159 -k1,11607:22610315,24804748:263159 -k1,11607:24878221,24804748:263160 -(1,11607:24878221,24804748:0,452978,122846 -r1,11628:31215588,24804748:6337367,575824,122846 -k1,11607:24878221,24804748:-6337367 -) -(1,11607:24878221,24804748:6337367,452978,122846 -k1,11607:24878221,24804748:3277 -h1,11607:31212311,24804748:0,411205,112570 -) -k1,11607:31478747,24804748:263159 -k1,11607:32583029,24804748:0 -) -(1,11608:6797234,25646236:25785795,513147,134348 -k1,11607:8857182,25646236:192172 -k1,11607:10443305,25646236:192172 -k1,11607:11654561,25646236:192171 -k1,11607:13584748,25646236:192172 -k1,11607:14436212,25646236:192172 -k1,11607:15647469,25646236:192172 -k1,11607:18419792,25646236:192171 -k1,11607:19298126,25646236:192172 -k1,11607:22736296,25646236:192172 -k1,11607:23970490,25646236:192172 -k1,11607:26997748,25646236:192171 -k1,11607:27841348,25646236:192172 -k1,11607:30002877,25646236:192172 -k1,11607:32583029,25646236:0 -) -(1,11608:6797234,26487724:25785795,505283,7863 -g1,11607:10825732,26487724 -g1,11607:11893313,26487724 -k1,11608:32583029,26487724:19423560 -g1,11608:32583029,26487724 -) -v1,11610:6797234,27678190:0,393216,0 -(1,11614:6797234,27993286:25785795,708312,196608 -g1,11614:6797234,27993286 -g1,11614:6797234,27993286 -g1,11614:6600626,27993286 -(1,11614:6600626,27993286:0,708312,196608 -r1,11628:32779637,27993286:26179011,904920,196608 -k1,11614:6600625,27993286:-26179012 -) -(1,11614:6600626,27993286:26179011,708312,196608 -[1,11614:6797234,27993286:25785795,511704,0 -(1,11612:6797234,27885808:25785795,404226,107478 -(1,11611:6797234,27885808:0,0,0 -g1,11611:6797234,27885808 -g1,11611:6797234,27885808 -g1,11611:6469554,27885808 -(1,11611:6469554,27885808:0,0,0 -) -g1,11611:6797234,27885808 -) -k1,11612:6797234,27885808:0 -h1,11612:16281605,27885808:0,0,0 -k1,11612:32583029,27885808:16301424 -g1,11612:32583029,27885808 -) -] -) -g1,11614:32583029,27993286 -g1,11614:6797234,27993286 -g1,11614:6797234,27993286 -g1,11614:32583029,27993286 -g1,11614:32583029,27993286 -) -h1,11614:6797234,28189894:0,0,0 -(1,11618:6797234,29555670:25785795,513147,134348 -h1,11617:6797234,29555670:983040,0,0 -g1,11617:10445623,29555670 -g1,11617:13382291,29555670 -g1,11617:16491974,29555670 -g1,11617:17682763,29555670 -g1,11617:20519161,29555670 -g1,11617:22112341,29555670 -g1,11617:25007066,29555670 -(1,11617:25007066,29555670:0,452978,122846 -r1,11628:30992721,29555670:5985655,575824,122846 -k1,11617:25007066,29555670:-5985655 -) -(1,11617:25007066,29555670:5985655,452978,122846 -k1,11617:25007066,29555670:3277 -h1,11617:30989444,29555670:0,411205,112570 -) -k1,11618:32583029,29555670:1416638 -g1,11618:32583029,29555670 -) -] -g1,11618:32583029,29690018 -) -h1,11618:6630773,29690018:0,0,0 -(1,11621:6630773,31055794:25952256,513147,134348 -h1,11620:6630773,31055794:983040,0,0 -k1,11620:8284358,31055794:255702 -k1,11620:11450571,31055794:255759 -k1,11620:12810612,31055794:255759 -k1,11620:13814137,31055794:255759 -k1,11620:16807335,31055794:255759 -k1,11620:18919074,31055794:255759 -k1,11620:20742454,31055794:255759 -k1,11620:23611132,31055794:255758 -k1,11620:24549776,31055794:255759 -k1,11620:26373156,31055794:255759 -k1,11620:28963307,31055794:255759 -k1,11620:30697558,31055794:255759 -k1,11621:32583029,31055794:0 -) -(1,11621:6630773,31897282:25952256,513147,134348 -k1,11620:8507725,31897282:235930 -k1,11620:11715056,31897282:235929 -k1,11620:13518607,31897282:235930 -k1,11620:16367456,31897282:235929 -k1,11620:19965383,31897282:235930 -k1,11620:21010682,31897282:235929 -k1,11620:22265697,31897282:235930 -k1,11620:25255449,31897282:235929 -k1,11620:26828313,31897282:235930 -k1,11620:29356036,31897282:235929 -k1,11620:32583029,31897282:0 -) -(1,11621:6630773,32738770:25952256,513147,102891 -k1,11620:9530205,32738770:140366 -k1,11620:10321999,32738770:140366 -k1,11620:11210131,32738770:140366 -k1,11620:14308137,32738770:140366 -k1,11620:16390990,32738770:140366 -k1,11620:20645050,32738770:140366 -k1,11620:21804501,32738770:140366 -k1,11620:24243215,32738770:140366 -k1,11620:26059992,32738770:140366 -k1,11620:29690150,32738770:140366 -k1,11620:31021961,32738770:140366 -k1,11621:32583029,32738770:0 -) -(1,11621:6630773,33580258:25952256,513147,134348 -k1,11620:8627374,33580258:203536 -k1,11620:9822470,33580258:203536 -k1,11620:11092277,33580258:203536 -k1,11620:14079782,33580258:203536 -k1,11620:14969480,33580258:203536 -k1,11620:16494877,33580258:203536 -k1,11620:17357706,33580258:203537 -k1,11620:18580327,33580258:203536 -k1,11620:21837841,33580258:203536 -k1,11620:24460966,33580258:203536 -k1,11620:27635904,33580258:203536 -k1,11620:29478495,33580258:203536 -k1,11620:30213528,33580258:203536 -k1,11620:31483335,33580258:203536 -k1,11621:32583029,33580258:0 -) -(1,11621:6630773,34421746:25952256,513147,134348 -k1,11620:8546664,34421746:274869 -k1,11620:9507695,34421746:274869 -k1,11620:11162751,34421746:274868 -k1,11620:12429180,34421746:274869 -k1,11620:15488018,34421746:274869 -k1,11620:19820221,34421746:274869 -k1,11620:20711127,34421746:274868 -k1,11620:23921354,34421746:274869 -k1,11620:25573790,34421746:274869 -k1,11620:26981121,34421746:274869 -k1,11620:28786255,34421746:274868 -k1,11620:31391584,34421746:274869 -k1,11621:32583029,34421746:0 -) -(1,11621:6630773,35263234:25952256,513147,173670 -(1,11620:6630773,35263234:1181614,473825,0 -) -(1,11620:8117325,35436904:355205,473825,0 -) -k1,11620:9391219,35263234:209590 -k1,11620:10070701,35263234:209589 -k1,11620:10811788,35263234:209590 -k1,11620:12891776,35263234:209590 -k1,11620:13752793,35263234:209589 -k1,11620:15931740,35263234:209590 -k1,11620:19051784,35263234:209590 -k1,11620:20828994,35263234:209589 -k1,11620:23060370,35263234:209590 -k1,11620:24850688,35263234:209590 -k1,11620:26373619,35263234:209589 -k1,11620:28469335,35263234:209590 -k1,11620:32583029,35263234:0 -) -(1,11621:6630773,36104722:25952256,505283,126483 -k1,11620:8817955,36104722:244695 -k1,11620:10823602,36104722:244695 -k1,11620:12669997,36104722:244695 -k1,11620:14496076,36104722:244695 -k1,11620:15873233,36104722:244695 -k1,11620:16865694,36104722:244695 -k1,11620:20068029,36104722:244695 -k1,11620:20995609,36104722:244695 -k1,11620:22594278,36104722:244695 -k1,11620:24233579,36104722:244695 -k1,11620:25129702,36104722:244695 -k1,11620:27517424,36104722:244695 -k1,11620:28486947,36104722:244695 -k1,11620:29189739,36104722:244695 -k1,11620:29965931,36104722:244695 -k1,11620:31931601,36104722:244695 -k1,11620:32583029,36104722:0 -) -(1,11621:6630773,36946210:25952256,513147,134348 -k1,11620:8852660,36946210:252530 -k1,11620:12015643,36946210:252529 -k1,11620:13835794,36946210:252530 -k1,11620:16701243,36946210:252529 -k1,11620:17995795,36946210:252530 -k1,11620:19120692,36946210:262443 -k1,11620:19783423,36946210:252476 -k1,11620:22124585,36946210:252530 -k1,11620:23837256,36946210:252529 -k1,11620:25108871,36946210:252530 -k1,11620:28187968,36946210:252529 -k1,11620:28971995,36946210:252530 -k1,11620:32583029,36946210:0 -) -(1,11621:6630773,37787698:25952256,513147,134348 -k1,11620:10524048,37787698:255372 -k1,11620:11257177,37787698:255372 -k1,11620:12531634,37787698:255372 -k1,11620:14368389,37787698:255371 -k1,11620:15615321,37787698:255372 -k1,11620:18828333,37787698:255372 -k1,11620:21994159,37787698:255372 -k1,11620:23353813,37787698:255372 -k1,11620:24356950,37787698:255371 -k1,11620:25966296,37787698:255372 -k1,11620:28022597,37787698:255372 -k1,11620:31015408,37787698:255372 -k1,11620:32583029,37787698:0 -) -(1,11621:6630773,38629186:25952256,513147,134348 -k1,11620:9246970,38629186:176947 -k1,11620:10991538,38629186:176947 -k1,11620:13178475,38629186:176948 -k1,11620:15953269,38629186:176947 -k1,11620:19064918,38629186:176947 -k1,11620:21781385,38629186:176947 -k1,11620:22949892,38629186:176947 -k1,11620:24074490,38629186:176947 -k1,11620:25853138,38629186:176948 -k1,11620:28940539,38629186:176947 -k1,11620:30403302,38629186:176947 -k1,11620:32583029,38629186:0 -) -(1,11621:6630773,39470674:25952256,505283,7863 -k1,11621:32583029,39470674:22994616 -g1,11621:32583029,39470674 -) -v1,11623:6630773,40836450:0,393216,0 -(1,11624:6630773,43919935:25952256,3476701,0 -g1,11624:6630773,43919935 -g1,11624:6303093,43919935 -r1,11628:6401397,43919935:98304,3476701,0 -g1,11624:6600626,43919935 -g1,11624:6797234,43919935 -[1,11624:6797234,43919935:25785795,3476701,0 -(1,11624:6797234,41268988:25785795,825754,196608 -(1,11623:6797234,41268988:0,825754,196608 -r1,11628:8834093,41268988:2036859,1022362,196608 -k1,11623:6797234,41268988:-2036859 -) -(1,11623:6797234,41268988:2036859,825754,196608 -) -k1,11623:9006686,41268988:172593 -k1,11623:10324615,41268988:327680 -k1,11623:11646053,41268988:172592 -(1,11623:11646053,41268988:0,452978,115847 -r1,11628:13059454,41268988:1413401,568825,115847 -k1,11623:11646053,41268988:-1413401 -) -(1,11623:11646053,41268988:1413401,452978,115847 -k1,11623:11646053,41268988:3277 -h1,11623:13056177,41268988:0,411205,112570 -) -k1,11623:13232047,41268988:172593 -k1,11623:14056067,41268988:172592 -k1,11623:15615402,41268988:172593 -k1,11623:16623578,41268988:172592 -k1,11623:17815256,41268988:172593 -k1,11623:19375902,41268988:172593 -k1,11623:21046647,41268988:172592 -k1,11623:22166891,41268988:172593 -(1,11623:22166891,41268988:0,452978,122846 -r1,11628:28504258,41268988:6337367,575824,122846 -k1,11623:22166891,41268988:-6337367 -) -(1,11623:22166891,41268988:6337367,452978,122846 -k1,11623:22166891,41268988:3277 -h1,11623:28500981,41268988:0,411205,112570 -) -k1,11623:28850520,41268988:172592 -k1,11623:30214558,41268988:172593 -k1,11623:32583029,41268988:0 -) -(1,11624:6797234,42110476:25785795,513147,134348 -k1,11623:8399589,42110476:271974 -k1,11623:9322992,42110476:271975 -k1,11623:11882828,42110476:271974 -k1,11623:14745441,42110476:271975 -k1,11623:16036500,42110476:271974 -k1,11623:18888627,42110476:271975 -k1,11623:19692098,42110476:271974 -k1,11623:22701511,42110476:271974 -k1,11623:24541107,42110476:271975 -k1,11623:25168941,42110476:271974 -k1,11623:27549865,42110476:271975 -k1,11623:28504724,42110476:271974 -k1,11623:29132559,42110476:271975 -k1,11623:31426319,42110476:271974 -k1,11623:32583029,42110476:0 -) -(1,11624:6797234,42951964:25785795,513147,134348 -k1,11623:8409574,42951964:194796 -k1,11623:11146512,42951964:194796 -k1,11623:12671690,42951964:194797 -k1,11623:13517914,42951964:194796 -k1,11623:15682067,42951964:194796 -k1,11623:16232723,42951964:194796 -k1,11623:19007672,42951964:194797 -k1,11623:20770089,42951964:194796 -k1,11623:21320745,42951964:194796 -k1,11623:22498581,42951964:194796 -k1,11623:23309416,42951964:194797 -k1,11623:23860072,42951964:194796 -k1,11623:25549089,42951964:194796 -k1,11623:27088684,42951964:194796 -k1,11623:29610664,42951964:194797 -k1,11623:30464752,42951964:194796 -k1,11623:32227169,42951964:194796 -k1,11623:32583029,42951964:0 -) -(1,11624:6797234,43793452:25785795,505283,126483 -g1,11623:10279817,43793452 -g1,11623:11625271,43793452 -k1,11624:32583029,43793452:18903860 -g1,11624:32583029,43793452 -) -] -g1,11624:32583029,43919935 -) -h1,11624:6630773,43919935:0,0,0 -v1,11627:6630773,45285711:0,393216,0 -] -(1,11628:32583029,45706769:0,0,0 -g1,11628:32583029,45706769 -) -) -] -(1,11628:6630773,47279633:25952256,0,0 -h1,11628:6630773,47279633:25952256,0,0 -) -] -(1,11628:4262630,4025873:0,0,0 -[1,11628:-473656,4025873:0,0,0 -(1,11628:-473656,-710413:0,0,0 -(1,11628:-473656,-710413:0,0,0 -g1,11628:-473656,-710413 -) -g1,11628:-473656,-710413 -) -] -) -] -!24793 -}195 -Input:1697:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1698:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1699:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1700:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1701:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1702:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!576 -{196 -[1,11682:4262630,47279633:28320399,43253760,0 -(1,11682:4262630,4025873:0,0,0 -[1,11682:-473656,4025873:0,0,0 -(1,11682:-473656,-710413:0,0,0 -(1,11682:-473656,-644877:0,0,0 -k1,11682:-473656,-644877:-65536 +h1,10790:6630773,41014095:0,0,0 +] +(1,10795:32583029,45706769:0,0,0 +g1,10795:32583029,45706769 +) +) +] +(1,10795:6630773,47279633:25952256,0,0 +h1,10795:6630773,47279633:25952256,0,0 +) +] +(1,10795:4262630,4025873:0,0,0 +[1,10795:-473656,4025873:0,0,0 +(1,10795:-473656,-710413:0,0,0 +(1,10795:-473656,-710413:0,0,0 +g1,10795:-473656,-710413 +) +g1,10795:-473656,-710413 +) +] +) +] +!35146 +}171 +Input:1644:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1645:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1646:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1647:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1648:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1649:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1650:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1651:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!764 +{172 +[1,10878:4262630,47279633:28320399,43253760,0 +(1,10878:4262630,4025873:0,0,0 +[1,10878:-473656,4025873:0,0,0 +(1,10878:-473656,-710413:0,0,0 +(1,10878:-473656,-644877:0,0,0 +k1,10878:-473656,-644877:-65536 ) -(1,11682:-473656,4736287:0,0,0 -k1,11682:-473656,4736287:5209943 +(1,10878:-473656,4736287:0,0,0 +k1,10878:-473656,4736287:5209943 ) -g1,11682:-473656,-710413 +g1,10878:-473656,-710413 ) ] ) -[1,11682:6630773,47279633:25952256,43253760,0 -[1,11682:6630773,4812305:25952256,786432,0 -(1,11682:6630773,4812305:25952256,505283,134348 -(1,11682:6630773,4812305:25952256,505283,134348 -g1,11682:3078558,4812305 -[1,11682:3078558,4812305:0,0,0 -(1,11682:3078558,2439708:0,1703936,0 -k1,11682:1358238,2439708:-1720320 -(1,10825:1358238,2439708:1720320,1703936,0 -(1,10825:1358238,2439708:1179648,16384,0 -r1,11682:2537886,2439708:1179648,16384,0 +[1,10878:6630773,47279633:25952256,43253760,0 +[1,10878:6630773,4812305:25952256,786432,0 +(1,10878:6630773,4812305:25952256,505283,134348 +(1,10878:6630773,4812305:25952256,505283,134348 +g1,10878:3078558,4812305 +[1,10878:3078558,4812305:0,0,0 +(1,10878:3078558,2439708:0,1703936,0 +k1,10878:1358238,2439708:-1720320 +(1,8606:1358238,2439708:1720320,1703936,0 +(1,8606:1358238,2439708:1179648,16384,0 +r1,10878:2537886,2439708:1179648,16384,0 ) -g1,10825:3062174,2439708 -(1,10825:3062174,2439708:16384,1703936,0 -[1,10825:3062174,2439708:25952256,1703936,0 -(1,10825:3062174,1915420:25952256,1179648,0 -(1,10825:3062174,1915420:16384,1179648,0 -r1,11682:3078558,1915420:16384,1179648,0 +g1,8606:3062174,2439708 +(1,8606:3062174,2439708:16384,1703936,0 +[1,8606:3062174,2439708:25952256,1703936,0 +(1,8606:3062174,1915420:25952256,1179648,0 +(1,8606:3062174,1915420:16384,1179648,0 +r1,10878:3078558,1915420:16384,1179648,0 ) -k1,10825:29014430,1915420:25935872 -g1,10825:29014430,1915420 +k1,8606:29014430,1915420:25935872 +g1,8606:29014430,1915420 ) ] ) ) ) ] -[1,11682:3078558,4812305:0,0,0 -(1,11682:3078558,2439708:0,1703936,0 -g1,11682:29030814,2439708 -g1,11682:36135244,2439708 -(1,10825:36135244,2439708:1720320,1703936,0 -(1,10825:36135244,2439708:16384,1703936,0 -[1,10825:36135244,2439708:25952256,1703936,0 -(1,10825:36135244,1915420:25952256,1179648,0 -(1,10825:36135244,1915420:16384,1179648,0 -r1,11682:36151628,1915420:16384,1179648,0 +[1,10878:3078558,4812305:0,0,0 +(1,10878:3078558,2439708:0,1703936,0 +g1,10878:29030814,2439708 +g1,10878:36135244,2439708 +(1,8606:36135244,2439708:1720320,1703936,0 +(1,8606:36135244,2439708:16384,1703936,0 +[1,8606:36135244,2439708:25952256,1703936,0 +(1,8606:36135244,1915420:25952256,1179648,0 +(1,8606:36135244,1915420:16384,1179648,0 +r1,10878:36151628,1915420:16384,1179648,0 ) -k1,10825:62087500,1915420:25935872 -g1,10825:62087500,1915420 +k1,8606:62087500,1915420:25935872 +g1,8606:62087500,1915420 ) ] ) -g1,10825:36675916,2439708 -(1,10825:36675916,2439708:1179648,16384,0 -r1,11682:37855564,2439708:1179648,16384,0 +g1,8606:36675916,2439708 +(1,8606:36675916,2439708:1179648,16384,0 +r1,10878:37855564,2439708:1179648,16384,0 ) ) -k1,11682:3078556,2439708:-34777008 +k1,10878:3078556,2439708:-34777008 ) ] -[1,11682:3078558,4812305:0,0,0 -(1,11682:3078558,49800853:0,16384,2228224 -k1,11682:1358238,49800853:-1720320 -(1,10825:1358238,49800853:1720320,16384,2228224 -(1,10825:1358238,49800853:1179648,16384,0 -r1,11682:2537886,49800853:1179648,16384,0 +[1,10878:3078558,4812305:0,0,0 +(1,10878:3078558,49800853:0,16384,2228224 +k1,10878:1358238,49800853:-1720320 +(1,8606:1358238,49800853:1720320,16384,2228224 +(1,8606:1358238,49800853:1179648,16384,0 +r1,10878:2537886,49800853:1179648,16384,0 ) -g1,10825:3062174,49800853 -(1,10825:3062174,52029077:16384,1703936,0 -[1,10825:3062174,52029077:25952256,1703936,0 -(1,10825:3062174,51504789:25952256,1179648,0 -(1,10825:3062174,51504789:16384,1179648,0 -r1,11682:3078558,51504789:16384,1179648,0 +g1,8606:3062174,49800853 +(1,8606:3062174,52029077:16384,1703936,0 +[1,8606:3062174,52029077:25952256,1703936,0 +(1,8606:3062174,51504789:25952256,1179648,0 +(1,8606:3062174,51504789:16384,1179648,0 +r1,10878:3078558,51504789:16384,1179648,0 ) -k1,10825:29014430,51504789:25935872 -g1,10825:29014430,51504789 +k1,8606:29014430,51504789:25935872 +g1,8606:29014430,51504789 ) ] ) ) ) ] -[1,11682:3078558,4812305:0,0,0 -(1,11682:3078558,49800853:0,16384,2228224 -g1,11682:29030814,49800853 -g1,11682:36135244,49800853 -(1,10825:36135244,49800853:1720320,16384,2228224 -(1,10825:36135244,52029077:16384,1703936,0 -[1,10825:36135244,52029077:25952256,1703936,0 -(1,10825:36135244,51504789:25952256,1179648,0 -(1,10825:36135244,51504789:16384,1179648,0 -r1,11682:36151628,51504789:16384,1179648,0 -) -k1,10825:62087500,51504789:25935872 -g1,10825:62087500,51504789 -) -] -) -g1,10825:36675916,49800853 -(1,10825:36675916,49800853:1179648,16384,0 -r1,11682:37855564,49800853:1179648,16384,0 -) -) -k1,11682:3078556,49800853:-34777008 -) -] -g1,11682:6630773,4812305 -g1,11682:6630773,4812305 -g1,11682:9714897,4812305 -k1,11682:31387653,4812305:21672756 -) -) -] -[1,11682:6630773,45706769:25952256,40108032,0 -(1,11682:6630773,45706769:25952256,40108032,0 -(1,11682:6630773,45706769:0,0,0 -g1,11682:6630773,45706769 -) -[1,11682:6630773,45706769:25952256,40108032,0 -v1,11628:6630773,6254097:0,393216,0 -(1,11628:6630773,10864503:25952256,5003622,0 -g1,11628:6630773,10864503 -g1,11628:6303093,10864503 -r1,11682:6401397,10864503:98304,5003622,0 -g1,11628:6600626,10864503 -g1,11628:6797234,10864503 -[1,11628:6797234,10864503:25785795,5003622,0 -(1,11628:6797234,6649200:25785795,788319,218313 -(1,11627:6797234,6649200:0,788319,218313 -r1,11682:7917113,6649200:1119879,1006632,218313 -k1,11627:6797234,6649200:-1119879 -) -(1,11627:6797234,6649200:1119879,788319,218313 -) -k1,11627:8192382,6649200:275269 -k1,11627:8520062,6649200:327680 -k1,11627:12194682,6649200:275268 -k1,11627:13489036,6649200:275269 -k1,11627:16505599,6649200:275192 -k1,11627:17763907,6649200:275268 -k1,11627:18698468,6649200:275269 -k1,11627:19329596,6649200:275268 -k1,11627:22185017,6649200:275269 -k1,11627:25128256,6649200:275268 -k1,11627:29241313,6649200:275269 -k1,11627:30325952,6649200:275269 -k1,11627:31931601,6649200:275268 -k1,11627:32583029,6649200:0 -) -(1,11628:6797234,7490688:25785795,513147,134348 -k1,11627:9011962,7490688:245371 -k1,11627:9715431,7490688:245372 -k1,11627:11528423,7490688:245371 -k1,11627:13653976,7490688:245325 -k1,11627:14582232,7490688:245371 -k1,11627:17300277,7490688:245372 -k1,11627:19736517,7490688:245371 -k1,11627:23438912,7490688:245371 -k1,11627:28090270,7490688:245372 -k1,11627:31246095,7490688:245371 -k1,11627:32583029,7490688:0 -) -(1,11628:6797234,8332176:25785795,513147,126483 -k1,11627:9263618,8332176:174590 -k1,11627:13231432,8332176:174590 -k1,11627:14425107,8332176:174590 -k1,11627:18192382,8332176:174591 -k1,11627:19026264,8332176:174590 -k1,11627:21959920,8332176:174590 -k1,11627:24500360,8332176:174590 -k1,11627:25089769,8332176:174566 -k1,11627:27307116,8332176:174590 -k1,11627:28990345,8332176:174590 -k1,11627:32583029,8332176:0 -) -(1,11628:6797234,9173664:25785795,505283,126483 -k1,11627:9158365,9173664:151257 -k1,11627:10575778,9173664:151257 -k1,11627:12510270,9173664:151257 -k1,11627:15241024,9173664:151257 -k1,11627:17089007,9173664:151256 -k1,11627:19191926,9173664:151257 -k1,11627:22985674,9173664:151257 -k1,11627:27398082,9173664:151257 -k1,11627:28540899,9173664:151257 -k1,11627:30821421,9173664:151257 -k1,11627:32583029,9173664:0 -) -(1,11628:6797234,10015152:25785795,505283,126483 -k1,11627:7640179,10015152:226907 -k1,11627:8886170,10015152:226906 -k1,11627:13480368,10015152:226879 -k1,11627:15593401,10015152:226907 -(1,11627:15593401,10015152:0,452978,115847 -r1,11682:22282479,10015152:6689078,568825,115847 -k1,11627:15593401,10015152:-6689078 -) -(1,11627:15593401,10015152:6689078,452978,115847 -k1,11627:15593401,10015152:3277 -h1,11627:22279202,10015152:0,411205,112570 -) -k1,11627:22509385,10015152:226906 -k1,11627:23927737,10015152:226907 -k1,11627:27232869,10015152:226906 -k1,11627:28075814,10015152:226907 -k1,11627:29952917,10015152:226906 -k1,11627:31966991,10015152:226907 -k1,11627:32583029,10015152:0 -) -(1,11628:6797234,10856640:25785795,513147,7863 -g1,11627:8015548,10856640 -g1,11627:10956148,10856640 -k1,11628:32583030,10856640:20470172 -g1,11628:32583030,10856640 -) -] -g1,11628:32583029,10864503 -) -h1,11628:6630773,10864503:0,0,0 -v1,11631:6630773,12230279:0,393216,0 -(1,11633:6630773,15276329:25952256,3439266,0 -g1,11633:6630773,15276329 -g1,11633:6303093,15276329 -r1,11682:6401397,15276329:98304,3439266,0 -g1,11633:6600626,15276329 -g1,11633:6797234,15276329 -[1,11633:6797234,15276329:25785795,3439266,0 -(1,11633:6797234,12625382:25785795,788319,218313 -(1,11631:6797234,12625382:0,788319,218313 -r1,11682:7917113,12625382:1119879,1006632,218313 -k1,11631:6797234,12625382:-1119879 -) -(1,11631:6797234,12625382:1119879,788319,218313 -) -g1,11631:8116342,12625382 -g1,11631:8444022,12625382 -g1,11631:10152545,12625382 -g1,11631:11016309,12625382 -g1,11631:13557795,12625382 -g1,11631:14814120,12625382 -g1,11631:18468407,12625382 -g1,11631:20240500,12625382 -g1,11631:21104264,12625382 -g1,11631:23339041,12625382 -k1,11631:32583029,12625382:5869539 -g1,11633:32583029,12625382 -) -(1,11633:6797234,13466870:25785795,505283,126483 -k1,11631:9796792,13466870:209690 -(1,11631:9796792,13466870:0,452978,115847 -r1,11682:15782447,13466870:5985655,568825,115847 -k1,11631:9796792,13466870:-5985655 -) -(1,11631:9796792,13466870:5985655,452978,115847 -k1,11631:9796792,13466870:3277 -h1,11631:15779170,13466870:0,411205,112570 -) -k1,11631:15992137,13466870:209690 -k1,11631:17306109,13466870:209690 -k1,11631:18263565,13466870:209690 -k1,11631:19986481,13466870:209690 -k1,11631:20847598,13466870:209689 -k1,11631:23128226,13466870:209690 -k1,11631:25039886,13466870:209690 -k1,11631:29050664,13466870:209690 -k1,11631:30702801,13466870:209690 -k1,11631:32583029,13466870:0 -) -(1,11633:6797234,14308358:25785795,513147,126483 -k1,11631:11106883,14308358:209061 -k1,11632:11943778,14308358:209060 -k1,11632:14141201,14308358:209061 -k1,11632:17014300,14308358:209060 -k1,11632:17890517,14308358:209061 -k1,11632:18514410,14308358:209050 -k1,11632:19742556,14308358:209061 -k1,11632:22217196,14308358:209060 -k1,11632:23419783,14308358:209061 -k1,11632:24288135,14308358:209060 -k1,11632:28298284,14308358:209061 -k1,11632:29038841,14308358:209060 -k1,11632:31015408,14308358:209061 -k1,11633:32583029,14308358:0 -) -(1,11633:6797234,15149846:25785795,513147,126483 -g1,11632:7411306,15149846 -g1,11632:9693269,15149846 -(1,11632:9693269,15149846:0,452978,115847 -r1,11682:12161806,15149846:2468537,568825,115847 -k1,11632:9693269,15149846:-2468537 -) -(1,11632:9693269,15149846:2468537,452978,115847 -k1,11632:9693269,15149846:3277 -h1,11632:12158529,15149846:0,411205,112570 -) -g1,11632:12361035,15149846 -g1,11632:13026225,15149846 -g1,11632:15780703,15149846 -g1,11632:18451950,15149846 -(1,11632:18451950,15149846:0,452978,115847 -r1,11682:26547876,15149846:8095926,568825,115847 -k1,11632:18451950,15149846:-8095926 -) -(1,11632:18451950,15149846:8095926,452978,115847 -k1,11632:18451950,15149846:3277 -h1,11632:26544599,15149846:0,411205,112570 -) -g1,11632:26747105,15149846 -g1,11632:27893985,15149846 -g1,11632:29112299,15149846 -k1,11633:32583029,15149846:1179591 -g1,11633:32583029,15149846 -) -] -g1,11633:32583029,15276329 -) -h1,11633:6630773,15276329:0,0,0 -v1,11636:6630773,16642105:0,393216,0 -(1,11646:6630773,22623327:25952256,6374438,0 -g1,11646:6630773,22623327 -g1,11646:6303093,22623327 -r1,11682:6401397,22623327:98304,6374438,0 -g1,11646:6600626,22623327 -g1,11646:6797234,22623327 -[1,11646:6797234,22623327:25785795,6374438,0 -(1,11637:6797234,17037208:25785795,788319,218313 -(1,11636:6797234,17037208:0,788319,218313 -r1,11682:7917113,17037208:1119879,1006632,218313 -k1,11636:6797234,17037208:-1119879 -) -(1,11636:6797234,17037208:1119879,788319,218313 -) -g1,11636:8116342,17037208 -g1,11636:8444022,17037208 -g1,11636:10152545,17037208 -g1,11636:11016309,17037208 -g1,11636:12361107,17037208 -g1,11636:13358565,17037208 -g1,11636:16388949,17037208 -k1,11636:32583029,17037208:13163040 -g1,11637:32583029,17037208 -) -(1,11637:6797234,17878696:25785795,513147,134348 -k1,11636:7769226,17878696:142962 -k1,11636:9004673,17878696:142962 -k1,11636:10166720,17878696:142962 -k1,11636:13335480,17878696:142963 -k1,11636:14669887,17878696:142962 -k1,11636:16514819,17878696:142962 -k1,11636:18947609,17878696:142962 -k1,11636:21472149,17878696:142962 -k1,11636:22231149,17878696:142962 -k1,11636:22729971,17878696:142962 -k1,11636:25626757,17878696:142963 -k1,11636:26788804,17878696:142962 -k1,11636:29511918,17878696:142962 -k1,11636:31276896,17878696:142962 -k1,11636:32583029,17878696:0 -) -(1,11637:6797234,18720184:25785795,513147,134348 -k1,11636:7700189,18720184:155189 -k1,11636:10173386,18720184:155189 -k1,11636:11520021,18720184:155190 -k1,11636:12622861,18720184:155189 -k1,11636:13797135,18720184:155189 -k1,11636:16020640,18720184:155189 -k1,11636:16835121,18720184:155189 -k1,11636:18687038,18720184:155190 -k1,11636:21132055,18720184:155189 -k1,11636:21938672,18720184:155189 -k1,11636:22841627,18720184:155189 -k1,11636:25039573,18720184:155189 -k1,11636:25810801,18720184:155190 -k1,11636:26985075,18720184:155189 -k1,11636:29025079,18720184:155189 -k1,11636:32583029,18720184:0 -) -(1,11637:6797234,19561672:25785795,505283,134348 -k1,11636:7951922,19561672:135603 -k1,11636:10667677,19561672:135603 -k1,11636:12663848,19561672:135604 -k1,11636:13450879,19561672:135603 -k1,11636:14334248,19561672:135603 -k1,11636:17385548,19561672:135603 -k1,11636:20311020,19561672:135604 -(1,11636:20311020,19561672:0,452978,115847 -r1,11682:23482980,19561672:3171960,568825,115847 -k1,11636:20311020,19561672:-3171960 -) -(1,11636:20311020,19561672:3171960,452978,115847 -k1,11636:20311020,19561672:3277 -h1,11636:23479703,19561672:0,411205,112570 -) -k1,11636:23618583,19561672:135603 -k1,11636:25460744,19561672:135603 -k1,11636:26787792,19561672:135603 -k1,11636:29574983,19561672:135604 -k1,11636:30867296,19561672:135603 -k1,11637:32583029,19561672:0 -) -(1,11637:6797234,20403160:25785795,505283,134348 -g1,11636:8073875,20403160 -g1,11636:8885866,20403160 -g1,11636:9440955,20403160 -g1,11636:11239262,20403160 -g1,11636:12480513,20403160 -g1,11636:15514829,20403160 -g1,11636:16365486,20403160 -g1,11636:17940971,20403160 -g1,11636:19331645,20403160 -g1,11636:21504818,20403160 -g1,11636:24284199,20403160 -g1,11636:28312697,20403160 -g1,11636:29380278,20403160 -k1,11637:32583029,20403160:1936595 -g1,11637:32583029,20403160 -) -v1,11639:6797234,21593626:0,393216,0 -(1,11643:6797234,21902431:25785795,702021,196608 -g1,11643:6797234,21902431 -g1,11643:6797234,21902431 -g1,11643:6600626,21902431 -(1,11643:6600626,21902431:0,702021,196608 -r1,11682:32779637,21902431:26179011,898629,196608 -k1,11643:6600625,21902431:-26179012 -) -(1,11643:6600626,21902431:26179011,702021,196608 -[1,11643:6797234,21902431:25785795,505413,0 -(1,11641:6797234,21801244:25785795,404226,101187 -(1,11640:6797234,21801244:0,0,0 -g1,11640:6797234,21801244 -g1,11640:6797234,21801244 -g1,11640:6469554,21801244 -(1,11640:6469554,21801244:0,0,0 -) -g1,11640:6797234,21801244 -) -k1,11641:6797234,21801244:0 -h1,11641:13436294,21801244:0,0,0 -k1,11641:32583030,21801244:19146736 -g1,11641:32583030,21801244 -) -] -) -g1,11643:32583029,21902431 -g1,11643:6797234,21902431 -g1,11643:6797234,21902431 -g1,11643:32583029,21902431 -g1,11643:32583029,21902431 -) -h1,11643:6797234,22099039:0,0,0 -] -g1,11646:32583029,22623327 -) -h1,11646:6630773,22623327:0,0,0 -(1,11649:6630773,23989103:25952256,505283,134348 -h1,11648:6630773,23989103:983040,0,0 -k1,11648:8671504,23989103:239802 -k1,11648:11821760,23989103:239802 -k1,11648:13053123,23989103:239803 -k1,11648:17022579,23989103:239802 -k1,11648:18023909,23989103:239802 -k1,11648:22270582,23989103:239802 -k1,11648:25139688,23989103:239802 -k1,11648:26759678,23989103:239802 -k1,11648:29179864,23989103:239803 -k1,11648:30167432,23989103:239802 -k1,11648:31966991,23989103:239802 -k1,11648:32583029,23989103:0 -) -(1,11649:6630773,24830591:25952256,513147,134348 -k1,11648:9536221,24830591:239443 -k1,11648:10427092,24830591:239443 -k1,11648:12448460,24830591:239444 -k1,11648:13102706,24830591:239403 -k1,11648:14947781,24830591:239443 -k1,11648:16885262,24830591:239443 -k1,11648:18504893,24830591:239443 -k1,11648:19735897,24830591:239444 -k1,11648:21488566,24830591:239443 -k1,11648:22379437,24830591:239443 -k1,11648:24642632,24830591:239443 -k1,11648:27055250,24830591:239444 -k1,11648:27977578,24830591:239443 -k1,11648:29824619,24830591:239443 -k1,11648:32583029,24830591:0 -) -(1,11649:6630773,25672079:25952256,513147,134348 -k1,11648:7520720,25672079:273909 -k1,11648:11897837,25672079:273908 -k1,11648:12586514,25672079:273834 -k1,11648:15555919,25672079:273909 -(1,11648:15555919,25672079:0,452978,115847 -r1,11682:19079591,25672079:3523672,568825,115847 -k1,11648:15555919,25672079:-3523672 -) -(1,11648:15555919,25672079:3523672,452978,115847 -k1,11648:15555919,25672079:3277 -h1,11648:19076314,25672079:0,411205,112570 -) -k1,11648:19353499,25672079:273908 -k1,11648:21325446,25672079:273909 -k1,11648:23467131,25672079:273909 -k1,11648:25134990,25672079:273908 -k1,11648:26427984,25672079:273909 -k1,11648:28439908,25672079:273909 -k1,11648:29373108,25672079:273908 -k1,11648:30002877,25672079:273909 -k1,11648:32583029,25672079:0 -) -(1,11649:6630773,26513567:25952256,513147,134348 -k1,11648:7544798,26513567:227863 -k1,11648:8561060,26513567:227864 -k1,11648:11861251,26513567:227863 -k1,11648:14849491,26513567:227864 -k1,11648:16096439,26513567:227863 -k1,11648:19303569,26513567:227863 -k1,11648:20815939,26513567:227864 -k1,11648:23224185,26513567:227863 -k1,11648:24199814,26513567:227863 -k1,11648:25987435,26513567:227864 -k1,11648:27162949,26513567:227863 -k1,11648:28409898,26513567:227864 -k1,11648:31391584,26513567:227863 -k1,11648:32583029,26513567:0 -) -(1,11649:6630773,27355055:25952256,513147,134348 -k1,11648:9329549,27355055:238554 -k1,11648:10338805,27355055:238553 -k1,11648:12908475,27355055:238554 -k1,11648:16393026,27355055:238553 -k1,11648:17650665,27355055:238554 -k1,11648:20868485,27355055:238553 -k1,11648:21758467,27355055:238554 -k1,11648:23136037,27355055:238554 -k1,11648:24322241,27355055:238553 -k1,11648:25579880,27355055:238554 -k1,11648:28152170,27355055:238553 -k1,11648:29057880,27355055:238554 -k1,11648:29711237,27355055:238514 -k1,11648:30565828,27355055:238553 -k1,11648:31896867,27355055:238554 -k1,11648:32583029,27355055:0 -) -(1,11649:6630773,28196543:25952256,505283,7863 -g1,11648:8905527,28196543 -k1,11649:32583029,28196543:21635400 -g1,11649:32583029,28196543 -) -v1,11651:6630773,29387009:0,393216,0 -(1,11677:6630773,43025665:25952256,14031872,196608 -g1,11677:6630773,43025665 -g1,11677:6630773,43025665 -g1,11677:6434165,43025665 -(1,11677:6434165,43025665:0,14031872,196608 -r1,11682:32779637,43025665:26345472,14228480,196608 -k1,11677:6434165,43025665:-26345472 -) -(1,11677:6434165,43025665:26345472,14031872,196608 -[1,11677:6630773,43025665:25952256,13835264,0 -(1,11653:6630773,29594627:25952256,404226,76021 -(1,11652:6630773,29594627:0,0,0 -g1,11652:6630773,29594627 -g1,11652:6630773,29594627 -g1,11652:6303093,29594627 -(1,11652:6303093,29594627:0,0,0 -) -g1,11652:6630773,29594627 -) -k1,11653:6630773,29594627:0 -h1,11653:9792229,29594627:0,0,0 -k1,11653:32583029,29594627:22790800 -g1,11653:32583029,29594627 -) -(1,11676:6630773,30260805:25952256,404226,101187 -(1,11655:6630773,30260805:0,0,0 -g1,11655:6630773,30260805 -g1,11655:6630773,30260805 -g1,11655:6303093,30260805 -(1,11655:6303093,30260805:0,0,0 -) -g1,11655:6630773,30260805 -) -g1,11676:7579210,30260805 -g1,11676:8527647,30260805 -g1,11676:10108376,30260805 -g1,11676:10740668,30260805 -g1,11676:11689105,30260805 -g1,11676:15798999,30260805 -h1,11676:17063582,30260805:0,0,0 -k1,11676:32583029,30260805:15519447 -g1,11676:32583029,30260805 -) -(1,11676:6630773,30926983:25952256,379060,0 -h1,11676:6630773,30926983:0,0,0 -h1,11676:7263064,30926983:0,0,0 -k1,11676:32583028,30926983:25319964 -g1,11676:32583028,30926983 -) -(1,11676:6630773,31593161:25952256,410518,107478 -h1,11676:6630773,31593161:0,0,0 -g1,11676:7579210,31593161 -g1,11676:7895356,31593161 -g1,11676:8211502,31593161 -g1,11676:8843794,31593161 -g1,11676:10424523,31593161 -g1,11676:12005252,31593161 -g1,11676:14534418,31593161 -g1,11676:15799001,31593161 -g1,11676:16431293,31593161 -g1,11676:19276604,31593161 -g1,11676:20541187,31593161 -g1,11676:24334935,31593161 -g1,11676:25599518,31593161 -h1,11676:29077120,31593161:0,0,0 -k1,11676:32583029,31593161:3505909 -g1,11676:32583029,31593161 -) -(1,11676:6630773,32259339:25952256,410518,107478 -h1,11676:6630773,32259339:0,0,0 -g1,11676:7579210,32259339 -g1,11676:7895356,32259339 -g1,11676:8211502,32259339 -g1,11676:12005250,32259339 -g1,11676:12637542,32259339 -g1,11676:16115145,32259339 -g1,11676:17379728,32259339 -g1,11676:21173476,32259339 -g1,11676:24651079,32259339 -g1,11676:27180245,32259339 -h1,11676:29709410,32259339:0,0,0 -k1,11676:32583029,32259339:2873619 -g1,11676:32583029,32259339 -) -(1,11676:6630773,32925517:25952256,404226,107478 -h1,11676:6630773,32925517:0,0,0 -g1,11676:7579210,32925517 -g1,11676:7895356,32925517 -g1,11676:8211502,32925517 -k1,11676:8211502,32925517:0 -h1,11676:17379727,32925517:0,0,0 -k1,11676:32583029,32925517:15203302 -g1,11676:32583029,32925517 -) -(1,11676:6630773,33591695:25952256,379060,0 -h1,11676:6630773,33591695:0,0,0 -h1,11676:7263064,33591695:0,0,0 -k1,11676:32583028,33591695:25319964 -g1,11676:32583028,33591695 -) -(1,11676:6630773,34257873:25952256,410518,101187 -h1,11676:6630773,34257873:0,0,0 -g1,11676:7579210,34257873 -g1,11676:8211502,34257873 -g1,11676:10424522,34257873 -g1,11676:12321396,34257873 -g1,11676:13585979,34257873 -g1,11676:15482853,34257873 -g1,11676:17379727,34257873 -h1,11676:18012018,34257873:0,0,0 -k1,11676:32583029,34257873:14571011 -g1,11676:32583029,34257873 -) -(1,11676:6630773,34924051:25952256,379060,0 -h1,11676:6630773,34924051:0,0,0 -h1,11676:7263064,34924051:0,0,0 -k1,11676:32583028,34924051:25319964 -g1,11676:32583028,34924051 -) -(1,11676:6630773,35590229:25952256,404226,107478 -h1,11676:6630773,35590229:0,0,0 -g1,11676:7579210,35590229 -g1,11676:7895356,35590229 -g1,11676:8211502,35590229 -k1,11676:8211502,35590229:0 -h1,11676:11056813,35590229:0,0,0 -k1,11676:32583029,35590229:21526216 -g1,11676:32583029,35590229 -) -(1,11676:6630773,36256407:25952256,410518,107478 -h1,11676:6630773,36256407:0,0,0 -g1,11676:7579210,36256407 -g1,11676:7895356,36256407 -g1,11676:8211502,36256407 -g1,11676:8527648,36256407 -g1,11676:8843794,36256407 -g1,11676:10740668,36256407 -g1,11676:11372960,36256407 -g1,11676:12637543,36256407 -g1,11676:13269835,36256407 -g1,11676:16115146,36256407 -g1,11676:17379729,36256407 -g1,11676:21173477,36256407 -g1,11676:22438060,36256407 -g1,11676:26231808,36256407 -k1,11676:26231808,36256407:0 -h1,11676:29709411,36256407:0,0,0 -k1,11676:32583029,36256407:2873618 -g1,11676:32583029,36256407 -) -(1,11676:6630773,36922585:25952256,404226,82312 -h1,11676:6630773,36922585:0,0,0 -g1,11676:7579210,36922585 -g1,11676:7895356,36922585 -g1,11676:8211502,36922585 -g1,11676:8527648,36922585 -g1,11676:8843794,36922585 -g1,11676:11056814,36922585 -g1,11676:11689106,36922585 -g1,11676:12953689,36922585 -g1,11676:14534418,36922585 -k1,11676:14534418,36922585:0 -h1,11676:16747438,36922585:0,0,0 -k1,11676:32583029,36922585:15835591 -g1,11676:32583029,36922585 -) -(1,11676:6630773,37588763:25952256,410518,107478 -h1,11676:6630773,37588763:0,0,0 -g1,11676:7579210,37588763 -g1,11676:7895356,37588763 -g1,11676:8211502,37588763 -g1,11676:8527648,37588763 -g1,11676:8843794,37588763 -g1,11676:12953688,37588763 -g1,11676:13585980,37588763 -g1,11676:14534417,37588763 -g1,11676:18012020,37588763 -g1,11676:19276603,37588763 -g1,11676:23070351,37588763 -k1,11676:23070351,37588763:0 -h1,11676:26547954,37588763:0,0,0 -k1,11676:32583029,37588763:6035075 -g1,11676:32583029,37588763 -) -(1,11676:6630773,38254941:25952256,404226,82312 -h1,11676:6630773,38254941:0,0,0 -g1,11676:7579210,38254941 -g1,11676:7895356,38254941 -g1,11676:8211502,38254941 -g1,11676:8527648,38254941 -g1,11676:8843794,38254941 -g1,11676:11372960,38254941 -g1,11676:12005252,38254941 -g1,11676:14850564,38254941 -k1,11676:14850564,38254941:0 -h1,11676:17695875,38254941:0,0,0 -k1,11676:32583029,38254941:14887154 -g1,11676:32583029,38254941 -) -(1,11676:6630773,38921119:25952256,404226,101187 -h1,11676:6630773,38921119:0,0,0 -g1,11676:7579210,38921119 -g1,11676:7895356,38921119 -g1,11676:8211502,38921119 -g1,11676:8527648,38921119 -g1,11676:8843794,38921119 -g1,11676:10424523,38921119 -g1,11676:11056815,38921119 -k1,11676:11056815,38921119:0 -h1,11676:13269835,38921119:0,0,0 -k1,11676:32583029,38921119:19313194 -g1,11676:32583029,38921119 -) -(1,11676:6630773,39587297:25952256,404226,107478 -h1,11676:6630773,39587297:0,0,0 -g1,11676:7579210,39587297 -g1,11676:7895356,39587297 -g1,11676:8211502,39587297 -g1,11676:8527648,39587297 -g1,11676:8843794,39587297 -g1,11676:10108377,39587297 -g1,11676:10740669,39587297 -k1,11676:10740669,39587297:0 -h1,11676:19908895,39587297:0,0,0 -k1,11676:32583029,39587297:12674134 -g1,11676:32583029,39587297 -) -(1,11676:6630773,40253475:25952256,404226,76021 -h1,11676:6630773,40253475:0,0,0 -g1,11676:7579210,40253475 -g1,11676:7895356,40253475 -g1,11676:8211502,40253475 -h1,11676:8527648,40253475:0,0,0 -k1,11676:32583028,40253475:24055380 -g1,11676:32583028,40253475 -) -(1,11676:6630773,40919653:25952256,379060,0 -h1,11676:6630773,40919653:0,0,0 -h1,11676:7263064,40919653:0,0,0 -k1,11676:32583028,40919653:25319964 -g1,11676:32583028,40919653 -) -(1,11676:6630773,41585831:25952256,410518,107478 -h1,11676:6630773,41585831:0,0,0 -g1,11676:7579210,41585831 -g1,11676:8527647,41585831 -g1,11676:10108376,41585831 -g1,11676:12953687,41585831 -g1,11676:13585979,41585831 -g1,11676:14850562,41585831 -g1,11676:15798999,41585831 -g1,11676:17379728,41585831 -g1,11676:18644311,41585831 -g1,11676:20857331,41585831 -g1,11676:21805768,41585831 -g1,11676:24651079,41585831 -g1,11676:25599517,41585831 -g1,11676:27812537,41585831 -g1,11676:29393266,41585831 -h1,11676:30025557,41585831:0,0,0 -k1,11676:32583029,41585831:2557472 -g1,11676:32583029,41585831 -) -(1,11676:6630773,42252009:25952256,410518,107478 -h1,11676:6630773,42252009:0,0,0 -g1,11676:7579210,42252009 -g1,11676:9159939,42252009 -g1,11676:11056813,42252009 -g1,11676:12005250,42252009 -g1,11676:13269833,42252009 -g1,11676:14850562,42252009 -g1,11676:18012019,42252009 -g1,11676:19276602,42252009 -g1,11676:20857331,42252009 -g1,11676:27812537,42252009 -h1,11676:28760974,42252009:0,0,0 -k1,11676:32583029,42252009:3822055 -g1,11676:32583029,42252009 -) -(1,11676:6630773,42918187:25952256,404226,107478 -h1,11676:6630773,42918187:0,0,0 -g1,11676:7579210,42918187 -g1,11676:9792230,42918187 -g1,11676:10424522,42918187 -h1,11676:13269833,42918187:0,0,0 -k1,11676:32583029,42918187:19313196 -g1,11676:32583029,42918187 -) -] -) -g1,11677:32583029,43025665 -g1,11677:6630773,43025665 -g1,11677:6630773,43025665 -g1,11677:32583029,43025665 -g1,11677:32583029,43025665 -) -h1,11677:6630773,43222273:0,0,0 -v1,11681:6630773,45112337:0,393216,0 -] -(1,11682:32583029,45706769:0,0,0 -g1,11682:32583029,45706769 -) -) -] -(1,11682:6630773,47279633:25952256,0,0 -h1,11682:6630773,47279633:25952256,0,0 -) -] -(1,11682:4262630,4025873:0,0,0 -[1,11682:-473656,4025873:0,0,0 -(1,11682:-473656,-710413:0,0,0 -(1,11682:-473656,-710413:0,0,0 -g1,11682:-473656,-710413 -) -g1,11682:-473656,-710413 -) -] -) -] -!24915 -}196 -!12 -{197 -[1,11703:4262630,47279633:28320399,43253760,0 -(1,11703:4262630,4025873:0,0,0 -[1,11703:-473656,4025873:0,0,0 -(1,11703:-473656,-710413:0,0,0 -(1,11703:-473656,-644877:0,0,0 -k1,11703:-473656,-644877:-65536 -) -(1,11703:-473656,4736287:0,0,0 -k1,11703:-473656,4736287:5209943 +[1,10878:3078558,4812305:0,0,0 +(1,10878:3078558,49800853:0,16384,2228224 +g1,10878:29030814,49800853 +g1,10878:36135244,49800853 +(1,8606:36135244,49800853:1720320,16384,2228224 +(1,8606:36135244,52029077:16384,1703936,0 +[1,8606:36135244,52029077:25952256,1703936,0 +(1,8606:36135244,51504789:25952256,1179648,0 +(1,8606:36135244,51504789:16384,1179648,0 +r1,10878:36151628,51504789:16384,1179648,0 ) -g1,11703:-473656,-710413 +k1,8606:62087500,51504789:25935872 +g1,8606:62087500,51504789 ) ] ) -[1,11703:6630773,47279633:25952256,43253760,0 -[1,11703:6630773,4812305:25952256,786432,0 -(1,11703:6630773,4812305:25952256,505283,134348 -(1,11703:6630773,4812305:25952256,505283,134348 -g1,11703:3078558,4812305 -[1,11703:3078558,4812305:0,0,0 -(1,11703:3078558,2439708:0,1703936,0 -k1,11703:1358238,2439708:-1720320 -(1,10825:1358238,2439708:1720320,1703936,0 -(1,10825:1358238,2439708:1179648,16384,0 -r1,11703:2537886,2439708:1179648,16384,0 +g1,8606:36675916,49800853 +(1,8606:36675916,49800853:1179648,16384,0 +r1,10878:37855564,49800853:1179648,16384,0 +) +) +k1,10878:3078556,49800853:-34777008 +) +] +g1,10878:6630773,4812305 +g1,10878:6630773,4812305 +g1,10878:8849822,4812305 +g1,10878:11107537,4812305 +g1,10878:12517216,4812305 +g1,10878:15753383,4812305 +g1,10878:18067459,4812305 +k1,10878:31387652,4812305:13320193 +) +) +] +[1,10878:6630773,45706769:25952256,40108032,0 +(1,10878:6630773,45706769:25952256,40108032,0 +(1,10878:6630773,45706769:0,0,0 +g1,10878:6630773,45706769 +) +[1,10878:6630773,45706769:25952256,40108032,0 +(1,10792:6630773,6254097:25952256,32768,229376 +(1,10792:6630773,6254097:0,32768,229376 +(1,10792:6630773,6254097:5505024,32768,229376 +r1,10878:12135797,6254097:5505024,262144,229376 +) +k1,10792:6630773,6254097:-5505024 +) +(1,10792:6630773,6254097:25952256,32768,0 +r1,10878:32583029,6254097:25952256,32768,0 +) +) +(1,10792:6630773,7885949:25952256,606339,161218 +(1,10792:6630773,7885949:2464678,582746,14155 +g1,10792:6630773,7885949 +g1,10792:9095451,7885949 +) +g1,10792:11933684,7885949 +g1,10792:14745179,7885949 +g1,10792:16454882,7885949 +g1,10792:20414567,7885949 +k1,10792:32583029,7885949:9434038 +g1,10792:32583029,7885949 +) +(1,10795:6630773,9144245:25952256,513147,134348 +k1,10794:7551008,9144245:292400 +k1,10794:8609524,9144245:292400 +k1,10794:12547692,9144245:292400 +k1,10794:15831810,9144245:292399 +k1,10794:18166967,9144245:292400 +k1,10794:19662608,9144245:292400 +k1,10794:22407365,9144245:292400 +k1,10794:23568117,9144245:292400 +k1,10794:25335732,9144245:292400 +k1,10794:27141357,9144245:292399 +k1,10794:29393283,9144245:292400 +k1,10794:31753999,9144245:292400 +k1,10795:32583029,9144245:0 +) +(1,10795:6630773,10009325:25952256,505283,134348 +k1,10794:9068166,10009325:295021 +k1,10794:10049349,10009325:295021 +k1,10794:12204283,10009325:295022 +k1,10794:15473983,10009325:295021 +k1,10794:17965115,10009325:295021 +k1,10794:18876174,10009325:295021 +k1,10794:20190280,10009325:295021 +k1,10794:21981488,10009325:295021 +k1,10794:26220467,10009325:295022 +k1,10794:27143323,10009325:295021 +k1,10794:29140314,10009325:295021 +k1,10794:31563944,10009325:295021 +k1,10794:32583029,10009325:0 +) +(1,10795:6630773,10874405:25952256,513147,126483 +k1,10794:8982292,10874405:283203 +k1,10794:10257055,10874405:283203 +k1,10794:13632247,10874405:283203 +k1,10794:14601612,10874405:283203 +k1,10794:16206676,10874405:283203 +k1,10794:17149171,10874405:283203 +k1,10794:18451459,10874405:283203 +k1,10794:20404518,10874405:283202 +k1,10794:22639383,10874405:283203 +k1,10794:24365033,10874405:283203 +k1,10794:25260998,10874405:283203 +k1,10794:26662245,10874405:283203 +k1,10794:28544526,10874405:283203 +k1,10794:29455564,10874405:283203 +k1,10794:31900144,10874405:283203 +k1,10794:32583029,10874405:0 +) +(1,10795:6630773,11739485:25952256,505283,134348 +k1,10794:10005128,11739485:290231 +k1,10794:11314444,11739485:290231 +k1,10794:13564200,11739485:290230 +k1,10794:15592446,11739485:290231 +k1,10794:16534105,11739485:290231 +k1,10794:17572102,11739485:290231 +k1,10794:20637127,11739485:290231 +k1,10794:22264291,11739485:290230 +k1,10794:24084788,11739485:290231 +k1,10794:25026447,11739485:290231 +k1,10794:26064444,11739485:290231 +k1,10794:28846353,11739485:290230 +k1,10794:29749346,11739485:290231 +k1,10794:31157621,11739485:290231 +k1,10794:32583029,11739485:0 +) +(1,10795:6630773,12604565:25952256,505283,134348 +k1,10794:8232473,12604565:236585 +k1,10794:12867835,12604565:236585 +k1,10794:13852186,12604565:236585 +k1,10794:16872740,12604565:236585 +k1,10794:18484926,12604565:236585 +k1,10794:19407673,12604565:236585 +k1,10794:20000117,12604565:236584 +k1,10794:23211381,12604565:236585 +k1,10794:25313776,12604565:236585 +k1,10794:27588531,12604565:236585 +k1,10794:28441154,12604565:236585 +k1,10794:29033599,12604565:236585 +k1,10794:31955194,12604565:236585 +k1,10794:32583029,12604565:0 +) +(1,10795:6630773,13469645:25952256,513147,126483 +k1,10794:8066431,13469645:232417 +k1,10794:9839599,13469645:232417 +k1,10794:12767512,13469645:232417 +(1,10794:12767512,13469645:0,452978,122846 +r1,10878:15587761,13469645:2820249,575824,122846 +k1,10794:12767512,13469645:-2820249 +) +(1,10794:12767512,13469645:2820249,452978,122846 +k1,10794:12767512,13469645:3277 +h1,10794:15584484,13469645:0,411205,112570 +) +k1,10794:15820178,13469645:232417 +k1,10794:17674611,13469645:232417 +k1,10794:18654794,13469645:232417 +k1,10794:20400437,13469645:232417 +k1,10794:22960037,13469645:232417 +k1,10794:23851746,13469645:232417 +k1,10794:25103248,13469645:232417 +k1,10794:28412580,13469645:232417 +(1,10794:28412580,13469645:0,414482,115847 +r1,10878:29122558,13469645:709978,530329,115847 +k1,10794:28412580,13469645:-709978 +) +(1,10794:28412580,13469645:709978,414482,115847 +k1,10794:28412580,13469645:3277 +h1,10794:29119281,13469645:0,411205,112570 +) +k1,10794:29354975,13469645:232417 +k1,10794:30270277,13469645:232417 +(1,10794:30270277,13469645:0,414482,115847 +r1,10878:30980255,13469645:709978,530329,115847 +k1,10794:30270277,13469645:-709978 +) +(1,10794:30270277,13469645:709978,414482,115847 +k1,10794:30270277,13469645:3277 +h1,10794:30976978,13469645:0,411205,112570 +) +k1,10794:31386342,13469645:232417 +k1,10794:32583029,13469645:0 +) +(1,10795:6630773,14334725:25952256,505283,7863 +g1,10794:10346664,14334725 +g1,10794:12414324,14334725 +g1,10794:16646639,14334725 +g1,10794:17634266,14334725 +k1,10795:32583029,14334725:13682607 +g1,10795:32583029,14334725 +) +(1,10797:6630773,15199805:25952256,473825,134348 +h1,10796:6630773,15199805:983040,0,0 +g1,10796:9248936,15199805 +g1,10796:11183558,15199805 +g1,10796:11738647,15199805 +(1,10796:11738647,15199805:0,452978,115847 +r1,10878:14910607,15199805:3171960,568825,115847 +k1,10796:11738647,15199805:-3171960 +) +(1,10796:11738647,15199805:3171960,452978,115847 +k1,10796:11738647,15199805:3277 +h1,10796:14907330,15199805:0,411205,112570 +) +g1,10796:15109836,15199805 +k1,10797:32583029,15199805:14541768 +g1,10797:32583029,15199805 +) +v1,10799:6630773,15884660:0,393216,0 +(1,10807:6630773,17693095:25952256,2201651,196608 +g1,10807:6630773,17693095 +g1,10807:6630773,17693095 +g1,10807:6434165,17693095 +(1,10807:6434165,17693095:0,2201651,196608 +r1,10878:32779637,17693095:26345472,2398259,196608 +k1,10807:6434165,17693095:-26345472 +) +(1,10807:6434165,17693095:26345472,2201651,196608 +[1,10807:6630773,17693095:25952256,2005043,0 +(1,10801:6630773,16112491:25952256,424439,112852 +(1,10800:6630773,16112491:0,0,0 +g1,10800:6630773,16112491 +g1,10800:6630773,16112491 +g1,10800:6303093,16112491 +(1,10800:6303093,16112491:0,0,0 +) +g1,10800:6630773,16112491 +) +k1,10801:6630773,16112491:0 +g1,10801:10614221,16112491 +h1,10801:12273991,16112491:0,0,0 +k1,10801:32583029,16112491:20309038 +g1,10801:32583029,16112491 +) +(1,10802:6630773,16797346:25952256,298373,4954 +h1,10802:6630773,16797346:0,0,0 +h1,10802:6962727,16797346:0,0,0 +k1,10802:32583029,16797346:25620302 +g1,10802:32583029,16797346 +) +(1,10806:6630773,17613273:25952256,424439,79822 +(1,10804:6630773,17613273:0,0,0 +g1,10804:6630773,17613273 +g1,10804:6630773,17613273 +g1,10804:6303093,17613273 +(1,10804:6303093,17613273:0,0,0 +) +g1,10804:6630773,17613273 +) +g1,10806:7626635,17613273 +g1,10806:8954451,17613273 +h1,10806:10282267,17613273:0,0,0 +k1,10806:32583029,17613273:22300762 +g1,10806:32583029,17613273 +) +] +) +g1,10807:32583029,17693095 +g1,10807:6630773,17693095 +g1,10807:6630773,17693095 +g1,10807:32583029,17693095 +g1,10807:32583029,17693095 +) +h1,10807:6630773,17889703:0,0,0 +(1,10810:6630773,18754783:25952256,505283,134348 +h1,10809:6630773,18754783:983040,0,0 +g1,10809:9274495,18754783 +g1,10809:11209117,18754783 +g1,10809:11764206,18754783 +(1,10809:11764206,18754783:0,452978,115847 +r1,10878:14936166,18754783:3171960,568825,115847 +k1,10809:11764206,18754783:-3171960 +) +(1,10809:11764206,18754783:3171960,452978,115847 +k1,10809:11764206,18754783:3277 +h1,10809:14932889,18754783:0,411205,112570 +) +g1,10809:15135395,18754783 +g1,10809:17014967,18754783 +g1,10809:19252366,18754783 +g1,10809:20067633,18754783 +g1,10809:20622722,18754783 +k1,10810:32583029,18754783:9275297 +g1,10810:32583029,18754783 +) +v1,10812:6630773,19439638:0,393216,0 +(1,10821:6630773,21939534:25952256,2893112,196608 +g1,10821:6630773,21939534 +g1,10821:6630773,21939534 +g1,10821:6434165,21939534 +(1,10821:6434165,21939534:0,2893112,196608 +r1,10878:32779637,21939534:26345472,3089720,196608 +k1,10821:6434165,21939534:-26345472 +) +(1,10821:6434165,21939534:26345472,2893112,196608 +[1,10821:6630773,21939534:25952256,2696504,0 +(1,10814:6630773,19674075:25952256,431045,6605 +(1,10813:6630773,19674075:0,0,0 +g1,10813:6630773,19674075 +g1,10813:6630773,19674075 +g1,10813:6303093,19674075 +(1,10813:6303093,19674075:0,0,0 +) +g1,10813:6630773,19674075 +) +g1,10814:10614220,19674075 +g1,10814:11610082,19674075 +h1,10814:12605944,19674075:0,0,0 +k1,10814:32583028,19674075:19977084 +g1,10814:32583028,19674075 +) +(1,10815:6630773,20358930:25952256,431045,112852 +h1,10815:6630773,20358930:0,0,0 +g1,10815:13269852,20358930 +h1,10815:14929622,20358930:0,0,0 +k1,10815:32583030,20358930:17653408 +g1,10815:32583030,20358930 +) +(1,10816:6630773,21043785:25952256,424439,6605 +h1,10816:6630773,21043785:0,0,0 +h1,10816:6962727,21043785:0,0,0 +k1,10816:32583029,21043785:25620302 +g1,10816:32583029,21043785 +) +(1,10820:6630773,21859712:25952256,424439,79822 +(1,10818:6630773,21859712:0,0,0 +g1,10818:6630773,21859712 +g1,10818:6630773,21859712 +g1,10818:6303093,21859712 +(1,10818:6303093,21859712:0,0,0 +) +g1,10818:6630773,21859712 +) +g1,10820:7626635,21859712 +g1,10820:8954451,21859712 +h1,10820:10282267,21859712:0,0,0 +k1,10820:32583029,21859712:22300762 +g1,10820:32583029,21859712 +) +] +) +g1,10821:32583029,21939534 +g1,10821:6630773,21939534 +g1,10821:6630773,21939534 +g1,10821:32583029,21939534 +g1,10821:32583029,21939534 +) +h1,10821:6630773,22136142:0,0,0 +(1,10825:6630773,23001222:25952256,505283,126483 +h1,10824:6630773,23001222:983040,0,0 +k1,10824:9098405,23001222:287905 +k1,10824:10558748,23001222:287904 +k1,10824:11859184,23001222:287905 +k1,10824:15138807,23001222:287904 +k1,10824:17282036,23001222:287905 +k1,10824:18385209,23001222:287905 +k1,10824:19739384,23001222:287904 +k1,10824:24060375,23001222:287905 +k1,10824:25645238,23001222:287905 +k1,10824:27089852,23001222:287904 +k1,10824:28714691,23001222:287905 +k1,10824:30551211,23001222:287904 +k1,10824:31490544,23001222:287905 +k1,10825:32583029,23001222:0 +) +(1,10825:6630773,23866302:25952256,505283,134348 +(1,10824:6630773,23866302:0,452978,122846 +r1,10878:9451022,23866302:2820249,575824,122846 +k1,10824:6630773,23866302:-2820249 +) +(1,10824:6630773,23866302:2820249,452978,122846 +k1,10824:6630773,23866302:3277 +h1,10824:9447745,23866302:0,411205,112570 +) +k1,10824:9795175,23866302:170483 +k1,10824:12864971,23866302:170483 +k1,10824:16192324,23866302:170484 +k1,10824:18281701,23866302:170483 +k1,10824:19320536,23866302:170483 +k1,10824:20827953,23866302:170483 +k1,10824:22547053,23866302:170484 +k1,10824:23368964,23866302:170483 +k1,10824:24631932,23866302:170483 +k1,10824:27777094,23866302:170483 +k1,10824:30143689,23866302:170484 +k1,10824:30965600,23866302:170483 +k1,10824:32583029,23866302:0 +) +(1,10825:6630773,24731382:25952256,513147,134348 +k1,10824:9017453,24731382:192535 +k1,10824:9892874,24731382:192536 +k1,10824:12783526,24731382:192535 +k1,10824:14935587,24731382:192535 +k1,10824:17196439,24731382:192536 +k1,10824:18380534,24731382:192535 +k1,10824:19178622,24731382:192535 +k1,10824:21069196,24731382:192536 +k1,10824:22130083,24731382:192535 +k1,10824:24004273,24731382:192536 +k1,10824:25907953,24731382:192535 +k1,10824:26751916,24731382:192535 +k1,10824:29374527,24731382:192536 +k1,10824:31635378,24731382:192535 +k1,10824:32583029,24731382:0 +) +(1,10825:6630773,25596462:25952256,505283,134348 +k1,10824:9143674,25596462:223073 +k1,10824:11222727,25596462:223073 +k1,10824:15372717,25596462:223073 +k1,10824:16278675,25596462:223073 +k1,10824:17187910,25596462:223073 +(1,10824:17187910,25596462:0,452978,115847 +r1,10878:20359870,25596462:3171960,568825,115847 +k1,10824:17187910,25596462:-3171960 +) +(1,10824:17187910,25596462:3171960,452978,115847 +k1,10824:17187910,25596462:3277 +h1,10824:20356593,25596462:0,411205,112570 +) +k1,10824:20582943,25596462:223073 +k1,10824:22369051,25596462:223074 +k1,10824:23197677,25596462:223073 +k1,10824:25118788,25596462:223073 +k1,10824:25957899,25596462:223073 +k1,10824:26536832,25596462:223073 +k1,10824:28174827,25596462:223073 +k1,10824:29266252,25596462:223073 +k1,10824:32583029,25596462:0 +) +(1,10825:6630773,26461542:25952256,513147,134348 +k1,10824:7196567,26461542:209934 +k1,10824:9384377,26461542:209933 +k1,10824:10277196,26461542:209934 +k1,10824:11480656,26461542:209934 +k1,10824:12349881,26461542:209933 +k1,10824:14519341,26461542:209934 +k1,10824:16971262,26461542:209934 +k1,10824:17864080,26461542:209933 +k1,10824:18679567,26461542:209934 +k1,10824:19757853,26461542:209934 +k1,10824:22991617,26461542:209933 +k1,10824:23814313,26461542:209934 +k1,10824:26567699,26461542:209934 +k1,10824:28737158,26461542:209933 +k1,10824:31015408,26461542:209934 +k1,10824:32583029,26461542:0 +) +(1,10825:6630773,27326622:25952256,505283,134348 +k1,10824:9529583,27326622:227563 +k1,10824:12731826,27326622:227564 +k1,10824:15155500,27326622:227563 +k1,10824:17237732,27326622:227563 +k1,10824:18274666,27326622:227564 +k1,10824:19891592,27326622:227563 +k1,10824:20802040,27326622:227563 +k1,10824:23715269,27326622:227564 +k1,10824:24430392,27326622:227535 +k1,10824:27435371,27326622:227563 +k1,10824:29030015,27326622:227563 +k1,10824:29789076,27326622:227564 +k1,10824:31714677,27326622:227563 +k1,10824:32583029,27326622:0 +) +(1,10825:6630773,28191702:25952256,513147,134348 +k1,10824:8984130,28191702:171663 +k1,10824:10545156,28191702:171663 +k1,10824:12284441,28191702:171664 +k1,10824:12811964,28191702:171663 +k1,10824:14209806,28191702:171663 +k1,10824:15364509,28191702:171663 +k1,10824:16727618,28191702:171664 +k1,10824:17767633,28191702:171663 +k1,10824:19487912,28191702:171663 +k1,10824:20311003,28191702:171663 +k1,10824:22220682,28191702:171664 +k1,10824:23411430,28191702:171663 +k1,10824:25542619,28191702:171663 +k1,10824:28831174,28191702:171663 +k1,10824:29654266,28191702:171664 +k1,10824:30845014,28191702:171663 +k1,10824:32583029,28191702:0 +) +(1,10825:6630773,29056782:25952256,513147,134348 +k1,10824:7477352,29056782:187287 +k1,10824:8683725,29056782:187288 +k1,10824:9854052,29056782:187287 +k1,10824:10850709,29056782:187287 +k1,10824:12556465,29056782:187287 +k1,10824:13426638,29056782:187288 +k1,10824:13969785,29056782:187287 +k1,10824:17131751,29056782:187287 +k1,10824:19184848,29056782:187287 +k1,10824:20784437,29056782:187288 +k1,10824:22539345,29056782:187287 +k1,10824:23745717,29056782:187287 +k1,10824:26107490,29056782:187288 +k1,10824:26907539,29056782:187287 +k1,10824:28113911,29056782:187287 +k1,10824:29373367,29056782:187287 +k1,10824:30219947,29056782:187288 +k1,10824:31426319,29056782:187287 +k1,10825:32583029,29056782:0 +k1,10825:32583029,29056782:0 +) +(1,10827:6630773,29921862:25952256,513147,126483 +h1,10826:6630773,29921862:983040,0,0 +g1,10826:10417443,29921862 +g1,10826:11983753,29921862 +g1,10826:12714479,29921862 +g1,10826:14611746,29921862 +(1,10826:14611746,29921862:0,452978,115847 +r1,10878:17783706,29921862:3171960,568825,115847 +k1,10826:14611746,29921862:-3171960 +) +(1,10826:14611746,29921862:3171960,452978,115847 +k1,10826:14611746,29921862:3277 +h1,10826:17780429,29921862:0,411205,112570 +) +g1,10826:17982935,29921862 +g1,10826:20192809,29921862 +g1,10826:21383598,29921862 +g1,10826:22601912,29921862 +g1,10826:24644013,29921862 +g1,10826:25502534,29921862 +g1,10826:26057623,29921862 +k1,10827:32583029,29921862:2287848 +g1,10827:32583029,29921862 +) +v1,10829:6630773,30606717:0,393216,0 +(1,10839:6630773,33791468:25952256,3577967,196608 +g1,10839:6630773,33791468 +g1,10839:6630773,33791468 +g1,10839:6434165,33791468 +(1,10839:6434165,33791468:0,3577967,196608 +r1,10878:32779637,33791468:26345472,3774575,196608 +k1,10839:6434165,33791468:-26345472 +) +(1,10839:6434165,33791468:26345472,3577967,196608 +[1,10839:6630773,33791468:25952256,3381359,0 +(1,10831:6630773,30841154:25952256,431045,79822 +(1,10830:6630773,30841154:0,0,0 +g1,10830:6630773,30841154 +g1,10830:6630773,30841154 +g1,10830:6303093,30841154 +(1,10830:6303093,30841154:0,0,0 +) +g1,10830:6630773,30841154 +) +k1,10831:6630773,30841154:0 +g1,10831:7958589,30841154 +g1,10831:8954451,30841154 +g1,10831:9950313,30841154 +g1,10831:11610083,30841154 +h1,10831:11942037,30841154:0,0,0 +k1,10831:32583029,30841154:20640992 +g1,10831:32583029,30841154 +) +(1,10832:6630773,31526009:25952256,424439,112852 +h1,10832:6630773,31526009:0,0,0 +g1,10832:6962727,31526009 +g1,10832:7294681,31526009 +g1,10832:7626635,31526009 +g1,10832:14265715,31526009 +g1,10832:15261577,31526009 +g1,10832:16589393,31526009 +g1,10832:17253301,31526009 +g1,10832:18913071,31526009 +h1,10832:20240887,31526009:0,0,0 +k1,10832:32583029,31526009:12342142 +g1,10832:32583029,31526009 +) +(1,10833:6630773,32210864:25952256,424439,79822 +h1,10833:6630773,32210864:0,0,0 +h1,10833:6962727,32210864:0,0,0 +k1,10833:32583029,32210864:25620302 +g1,10833:32583029,32210864 +) +(1,10834:6630773,32895719:25952256,424439,106246 +h1,10834:6630773,32895719:0,0,0 +g1,10834:10282267,32895719 +g1,10834:10946175,32895719 +h1,10834:13269853,32895719:0,0,0 +k1,10834:32583029,32895719:19313176 +g1,10834:32583029,32895719 +) +(1,10838:6630773,33711646:25952256,424439,79822 +(1,10836:6630773,33711646:0,0,0 +g1,10836:6630773,33711646 +g1,10836:6630773,33711646 +g1,10836:6303093,33711646 +(1,10836:6303093,33711646:0,0,0 +) +g1,10836:6630773,33711646 +) +g1,10838:7626635,33711646 +g1,10838:8954451,33711646 +g1,10838:11278129,33711646 +g1,10838:13601807,33711646 +g1,10838:15925485,33711646 +g1,10838:18249163,33711646 +h1,10838:20240887,33711646:0,0,0 +k1,10838:32583029,33711646:12342142 +g1,10838:32583029,33711646 +) +] +) +g1,10839:32583029,33791468 +g1,10839:6630773,33791468 +g1,10839:6630773,33791468 +g1,10839:32583029,33791468 +g1,10839:32583029,33791468 +) +h1,10839:6630773,33988076:0,0,0 +(1,10843:6630773,34853156:25952256,513147,134348 +h1,10842:6630773,34853156:983040,0,0 +k1,10842:9091095,34853156:280595 +k1,10842:14337353,34853156:280595 +k1,10842:17692242,34853156:280595 +k1,10842:18632129,34853156:280595 +k1,10842:21892646,34853156:280595 +k1,10842:22529101,34853156:280595 +k1,10842:24547711,34853156:280595 +k1,10842:25479734,34853156:280595 +k1,10842:26531032,34853156:280595 +k1,10842:28771153,34853156:280595 +k1,10842:29583245,34853156:280595 +k1,10842:30515268,34853156:280595 +k1,10842:31812326,34853156:280595 +k1,10842:32583029,34853156:0 +) +(1,10843:6630773,35718236:25952256,505283,134348 +k1,10842:8820658,35718236:230359 +k1,10842:10749055,35718236:230359 +k1,10842:11847767,35718236:230360 +k1,10842:13553341,35718236:230359 +k1,10842:16567669,35718236:230359 +k1,10842:17586426,35718236:230359 +k1,10842:19554800,35718236:230359 +k1,10842:20471321,35718236:230359 +k1,10842:21057541,35718236:230360 +k1,10842:24262579,35718236:230359 +k1,10842:26532418,35718236:230359 +k1,10842:27959464,35718236:230359 +k1,10842:32583029,35718236:0 +) +(1,10843:6630773,36583316:25952256,513147,122846 +g1,10842:9525498,36583316 +g1,10842:10256224,36583316 +(1,10842:10256224,36583316:0,452978,122846 +r1,10878:12021337,36583316:1765113,575824,122846 +k1,10842:10256224,36583316:-1765113 +) +(1,10842:10256224,36583316:1765113,452978,122846 +k1,10842:10256224,36583316:3277 +h1,10842:12018060,36583316:0,411205,112570 +) +k1,10843:32583029,36583316:20388022 +g1,10843:32583029,36583316 +) +v1,10845:6630773,37268171:0,393216,0 +(1,10858:6630773,40023605:25952256,3148650,196608 +g1,10858:6630773,40023605 +g1,10858:6630773,40023605 +g1,10858:6434165,40023605 +(1,10858:6434165,40023605:0,3148650,196608 +r1,10878:32779637,40023605:26345472,3345258,196608 +k1,10858:6434165,40023605:-26345472 +) +(1,10858:6434165,40023605:26345472,3148650,196608 +[1,10858:6630773,40023605:25952256,2952042,0 +(1,10847:6630773,37496002:25952256,424439,112852 +(1,10846:6630773,37496002:0,0,0 +g1,10846:6630773,37496002 +g1,10846:6630773,37496002 +g1,10846:6303093,37496002 +(1,10846:6303093,37496002:0,0,0 +) +g1,10846:6630773,37496002 +) +k1,10847:6630773,37496002:0 +h1,10847:9286405,37496002:0,0,0 +k1,10847:32583029,37496002:23296624 +g1,10847:32583029,37496002 +) +(1,10851:6630773,38311929:25952256,424439,79822 +(1,10849:6630773,38311929:0,0,0 +g1,10849:6630773,38311929 +g1,10849:6630773,38311929 +g1,10849:6303093,38311929 +(1,10849:6303093,38311929:0,0,0 +) +g1,10849:6630773,38311929 +) +g1,10851:7626635,38311929 +g1,10851:8954451,38311929 +h1,10851:10282267,38311929:0,0,0 +k1,10851:32583029,38311929:22300762 +g1,10851:32583029,38311929 +) +(1,10853:6630773,39127856:25952256,424439,112852 +(1,10852:6630773,39127856:0,0,0 +g1,10852:6630773,39127856 +g1,10852:6630773,39127856 +g1,10852:6303093,39127856 +(1,10852:6303093,39127856:0,0,0 +) +g1,10852:6630773,39127856 +) +k1,10853:6630773,39127856:0 +h1,10853:9286405,39127856:0,0,0 +k1,10853:32583029,39127856:23296624 +g1,10853:32583029,39127856 +) +(1,10857:6630773,39943783:25952256,424439,79822 +(1,10855:6630773,39943783:0,0,0 +g1,10855:6630773,39943783 +g1,10855:6630773,39943783 +g1,10855:6303093,39943783 +(1,10855:6303093,39943783:0,0,0 +) +g1,10855:6630773,39943783 +) +g1,10857:7626635,39943783 +g1,10857:8954451,39943783 +h1,10857:10282267,39943783:0,0,0 +k1,10857:32583029,39943783:22300762 +g1,10857:32583029,39943783 +) +] +) +g1,10858:32583029,40023605 +g1,10858:6630773,40023605 +g1,10858:6630773,40023605 +g1,10858:32583029,40023605 +g1,10858:32583029,40023605 +) +h1,10858:6630773,40220213:0,0,0 +(1,10862:6630773,41085293:25952256,513147,134348 +h1,10861:6630773,41085293:983040,0,0 +k1,10861:8276634,41085293:185064 +k1,10861:9330049,41085293:185063 +k1,10861:10990328,41085293:185064 +k1,10861:13959360,41085293:185063 +k1,10861:14500284,41085293:185064 +k1,10861:17660027,41085293:185064 +k1,10861:19822967,41085293:185063 +k1,10861:23370028,41085293:185064 +k1,10861:25514618,41085293:185064 +k1,10861:27767997,41085293:185063 +k1,10861:29144506,41085293:185064 +k1,10861:30197921,41085293:185063 +k1,10861:31931601,41085293:185064 +k1,10861:32583029,41085293:0 +) +(1,10862:6630773,41950373:25952256,513147,134348 +k1,10861:8788268,41950373:228115 +k1,10861:9372242,41950373:228114 +k1,10861:10593883,41950373:228115 +k1,10861:14183995,41950373:228115 +k1,10861:16108836,41950373:228114 +k1,10861:18626779,41950373:228115 +k1,10861:19723246,41950373:228115 +k1,10861:21055643,41950373:228115 +k1,10861:22376242,41950373:228114 +k1,10861:25299853,41950373:228115 +(1,10861:25299853,41950373:0,452978,122846 +r1,10878:27416678,41950373:2116825,575824,122846 +k1,10861:25299853,41950373:-2116825 +) +(1,10861:25299853,41950373:2116825,452978,122846 +k1,10861:25299853,41950373:3277 +h1,10861:27413401,41950373:0,411205,112570 +) +k1,10861:27818463,41950373:228115 +k1,10861:28674412,41950373:228114 +k1,10861:29921612,41950373:228115 +k1,10861:32583029,41950373:0 +) +(1,10862:6630773,42815453:25952256,513147,134348 +k1,10861:8681662,42815453:182458 +k1,10861:9732473,42815453:182459 +k1,10861:11007416,42815453:182458 +k1,10861:13885371,42815453:182459 +(1,10861:13885371,42815453:0,452978,115847 +r1,10878:15298772,42815453:1413401,568825,115847 +k1,10861:13885371,42815453:-1413401 +) +(1,10861:13885371,42815453:1413401,452978,115847 +k1,10861:13885371,42815453:3277 +h1,10861:15295495,42815453:0,411205,112570 +) +k1,10861:15481230,42815453:182458 +k1,10861:16315116,42815453:182458 +k1,10861:18521327,42815453:182459 +k1,10861:19059645,42815453:182458 +k1,10861:22216782,42815453:182458 +k1,10861:24377118,42815453:182459 +k1,10861:25218868,42815453:182458 +k1,10861:27360853,42815453:182459 +k1,10861:29611627,42815453:182458 +k1,10861:32583029,42815453:0 +) +(1,10862:6630773,43680533:25952256,513147,134348 +g1,10861:7185862,43680533 +g1,10861:9782398,43680533 +g1,10861:12322573,43680533 +g1,10861:13713247,43680533 +g1,10861:15346404,43680533 +g1,10861:17621814,43680533 +g1,10861:18587159,43680533 +g1,10861:20483115,43680533 +g1,10861:22972172,43680533 +g1,10861:24438867,43680533 +g1,10861:24993956,43680533 +k1,10862:32583029,43680533:6421877 +g1,10862:32583029,43680533 +) +v1,10864:6630773,44365388:0,393216,0 +(1,10878:6630773,45390926:25952256,1418754,196608 +g1,10878:6630773,45390926 +g1,10878:6630773,45390926 +g1,10878:6434165,45390926 +(1,10878:6434165,45390926:0,1418754,196608 +r1,10878:32779637,45390926:26345472,1615362,196608 +k1,10878:6434165,45390926:-26345472 +) +(1,10878:6434165,45390926:26345472,1418754,196608 +[1,10878:6630773,45390926:25952256,1222146,0 +(1,10866:6630773,44593219:25952256,424439,112852 +(1,10865:6630773,44593219:0,0,0 +g1,10865:6630773,44593219 +g1,10865:6630773,44593219 +g1,10865:6303093,44593219 +(1,10865:6303093,44593219:0,0,0 +) +g1,10865:6630773,44593219 +) +g1,10866:9950312,44593219 +g1,10866:10946174,44593219 +g1,10866:14597668,44593219 +g1,10866:15261576,44593219 +h1,10866:17585254,44593219:0,0,0 +k1,10866:32583029,44593219:14997775 +g1,10866:32583029,44593219 +) +(1,10867:6630773,45278074:25952256,424439,112852 +h1,10867:6630773,45278074:0,0,0 +g1,10867:9286405,45278074 +g1,10867:10282267,45278074 +k1,10867:10282267,45278074:0 +h1,10867:15261576,45278074:0,0,0 +k1,10867:32583028,45278074:17321452 +g1,10867:32583028,45278074 +) +] +) +g1,10878:32583029,45390926 +g1,10878:6630773,45390926 +g1,10878:6630773,45390926 +g1,10878:32583029,45390926 +g1,10878:32583029,45390926 +) +] +(1,10878:32583029,45706769:0,0,0 +g1,10878:32583029,45706769 +) +) +] +(1,10878:6630773,47279633:25952256,0,0 +h1,10878:6630773,47279633:25952256,0,0 +) +] +(1,10878:4262630,4025873:0,0,0 +[1,10878:-473656,4025873:0,0,0 +(1,10878:-473656,-710413:0,0,0 +(1,10878:-473656,-710413:0,0,0 +g1,10878:-473656,-710413 +) +g1,10878:-473656,-710413 +) +] +) +] +!27921 +}172 +Input:1652:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1653:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1654:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1655:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1656:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1657:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1658:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1659:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!764 +{173 +[1,10928:4262630,47279633:28320399,43253760,0 +(1,10928:4262630,4025873:0,0,0 +[1,10928:-473656,4025873:0,0,0 +(1,10928:-473656,-710413:0,0,0 +(1,10928:-473656,-644877:0,0,0 +k1,10928:-473656,-644877:-65536 ) -g1,10825:3062174,2439708 -(1,10825:3062174,2439708:16384,1703936,0 -[1,10825:3062174,2439708:25952256,1703936,0 -(1,10825:3062174,1915420:25952256,1179648,0 -(1,10825:3062174,1915420:16384,1179648,0 -r1,11703:3078558,1915420:16384,1179648,0 +(1,10928:-473656,4736287:0,0,0 +k1,10928:-473656,4736287:5209943 ) -k1,10825:29014430,1915420:25935872 -g1,10825:29014430,1915420 +g1,10928:-473656,-710413 ) ] ) +[1,10928:6630773,47279633:25952256,43253760,0 +[1,10928:6630773,4812305:25952256,786432,0 +(1,10928:6630773,4812305:25952256,505283,134348 +(1,10928:6630773,4812305:25952256,505283,134348 +g1,10928:3078558,4812305 +[1,10928:3078558,4812305:0,0,0 +(1,10928:3078558,2439708:0,1703936,0 +k1,10928:1358238,2439708:-1720320 +(1,8606:1358238,2439708:1720320,1703936,0 +(1,8606:1358238,2439708:1179648,16384,0 +r1,10928:2537886,2439708:1179648,16384,0 ) +g1,8606:3062174,2439708 +(1,8606:3062174,2439708:16384,1703936,0 +[1,8606:3062174,2439708:25952256,1703936,0 +(1,8606:3062174,1915420:25952256,1179648,0 +(1,8606:3062174,1915420:16384,1179648,0 +r1,10928:3078558,1915420:16384,1179648,0 ) -] -[1,11703:3078558,4812305:0,0,0 -(1,11703:3078558,2439708:0,1703936,0 -g1,11703:29030814,2439708 -g1,11703:36135244,2439708 -(1,10825:36135244,2439708:1720320,1703936,0 -(1,10825:36135244,2439708:16384,1703936,0 -[1,10825:36135244,2439708:25952256,1703936,0 -(1,10825:36135244,1915420:25952256,1179648,0 -(1,10825:36135244,1915420:16384,1179648,0 -r1,11703:36151628,1915420:16384,1179648,0 -) -k1,10825:62087500,1915420:25935872 -g1,10825:62087500,1915420 +k1,8606:29014430,1915420:25935872 +g1,8606:29014430,1915420 ) ] ) -g1,10825:36675916,2439708 -(1,10825:36675916,2439708:1179648,16384,0 -r1,11703:37855564,2439708:1179648,16384,0 ) ) -k1,11703:3078556,2439708:-34777008 -) ] -[1,11703:3078558,4812305:0,0,0 -(1,11703:3078558,49800853:0,16384,2228224 -k1,11703:1358238,49800853:-1720320 -(1,10825:1358238,49800853:1720320,16384,2228224 -(1,10825:1358238,49800853:1179648,16384,0 -r1,11703:2537886,49800853:1179648,16384,0 -) -g1,10825:3062174,49800853 -(1,10825:3062174,52029077:16384,1703936,0 -[1,10825:3062174,52029077:25952256,1703936,0 -(1,10825:3062174,51504789:25952256,1179648,0 -(1,10825:3062174,51504789:16384,1179648,0 -r1,11703:3078558,51504789:16384,1179648,0 +[1,10928:3078558,4812305:0,0,0 +(1,10928:3078558,2439708:0,1703936,0 +g1,10928:29030814,2439708 +g1,10928:36135244,2439708 +(1,8606:36135244,2439708:1720320,1703936,0 +(1,8606:36135244,2439708:16384,1703936,0 +[1,8606:36135244,2439708:25952256,1703936,0 +(1,8606:36135244,1915420:25952256,1179648,0 +(1,8606:36135244,1915420:16384,1179648,0 +r1,10928:36151628,1915420:16384,1179648,0 ) -k1,10825:29014430,51504789:25935872 -g1,10825:29014430,51504789 +k1,8606:62087500,1915420:25935872 +g1,8606:62087500,1915420 ) ] ) +g1,8606:36675916,2439708 +(1,8606:36675916,2439708:1179648,16384,0 +r1,10928:37855564,2439708:1179648,16384,0 ) ) +k1,10928:3078556,2439708:-34777008 +) ] -[1,11703:3078558,4812305:0,0,0 -(1,11703:3078558,49800853:0,16384,2228224 -g1,11703:29030814,49800853 -g1,11703:36135244,49800853 -(1,10825:36135244,49800853:1720320,16384,2228224 -(1,10825:36135244,52029077:16384,1703936,0 -[1,10825:36135244,52029077:25952256,1703936,0 -(1,10825:36135244,51504789:25952256,1179648,0 -(1,10825:36135244,51504789:16384,1179648,0 -r1,11703:36151628,51504789:16384,1179648,0 +[1,10928:3078558,4812305:0,0,0 +(1,10928:3078558,49800853:0,16384,2228224 +k1,10928:1358238,49800853:-1720320 +(1,8606:1358238,49800853:1720320,16384,2228224 +(1,8606:1358238,49800853:1179648,16384,0 +r1,10928:2537886,49800853:1179648,16384,0 +) +g1,8606:3062174,49800853 +(1,8606:3062174,52029077:16384,1703936,0 +[1,8606:3062174,52029077:25952256,1703936,0 +(1,8606:3062174,51504789:25952256,1179648,0 +(1,8606:3062174,51504789:16384,1179648,0 +r1,10928:3078558,51504789:16384,1179648,0 ) -k1,10825:62087500,51504789:25935872 -g1,10825:62087500,51504789 +k1,8606:29014430,51504789:25935872 +g1,8606:29014430,51504789 ) ] ) -g1,10825:36675916,49800853 -(1,10825:36675916,49800853:1179648,16384,0 -r1,11703:37855564,49800853:1179648,16384,0 ) ) -k1,11703:3078556,49800853:-34777008 +] +[1,10928:3078558,4812305:0,0,0 +(1,10928:3078558,49800853:0,16384,2228224 +g1,10928:29030814,49800853 +g1,10928:36135244,49800853 +(1,8606:36135244,49800853:1720320,16384,2228224 +(1,8606:36135244,52029077:16384,1703936,0 +[1,8606:36135244,52029077:25952256,1703936,0 +(1,8606:36135244,51504789:25952256,1179648,0 +(1,8606:36135244,51504789:16384,1179648,0 +r1,10928:36151628,51504789:16384,1179648,0 ) -] -g1,11703:6630773,4812305 -k1,11703:23552825,4812305:15726675 -g1,11703:25175496,4812305 -g1,11703:25997972,4812305 -g1,11703:28481131,4812305 -g1,11703:30046786,4812305 -) -) -] -[1,11703:6630773,45706769:25952256,40108032,0 -(1,11703:6630773,45706769:25952256,40108032,0 -(1,11703:6630773,45706769:0,0,0 -g1,11703:6630773,45706769 -) -[1,11703:6630773,45706769:25952256,40108032,0 -v1,11682:6630773,6254097:0,393216,0 -(1,11682:6630773,7662471:25952256,1801590,0 -g1,11682:6630773,7662471 -g1,11682:6303093,7662471 -r1,11703:6401397,7662471:98304,1801590,0 -g1,11682:6600626,7662471 -g1,11682:6797234,7662471 -[1,11682:6797234,7662471:25785795,1801590,0 -(1,11682:6797234,6686635:25785795,825754,196608 -(1,11681:6797234,6686635:0,825754,196608 -r1,11703:7890375,6686635:1093141,1022362,196608 -k1,11681:6797234,6686635:-1093141 -) -(1,11681:6797234,6686635:1093141,825754,196608 -) -k1,11681:8108483,6686635:218108 -k1,11681:9426412,6686635:327680 -k1,11681:11191171,6686635:218109 -k1,11681:12022041,6686635:218108 -k1,11681:13259235,6686635:218109 -k1,11681:14865396,6686635:218108 -k1,11681:16581658,6686635:218109 -k1,11681:17747417,6686635:218108 -k1,11681:20661021,6686635:218108 -(1,11681:20661021,6686635:0,452978,115847 -r1,11703:24184693,6686635:3523672,568825,115847 -k1,11681:20661021,6686635:-3523672 -) -(1,11681:20661021,6686635:3523672,452978,115847 -k1,11681:20661021,6686635:3277 -h1,11681:24181416,6686635:0,411205,112570 -) -k1,11681:24402802,6686635:218109 -k1,11681:25568561,6686635:218108 -k1,11681:26142530,6686635:218109 -k1,11681:29732465,6686635:218108 -k1,11681:30609866,6686635:218109 -k1,11681:32124932,6686635:218108 -k1,11681:32583029,6686635:0 -) -(1,11682:6797234,7528123:25785795,513147,134348 -g1,11681:7527960,7528123 -g1,11681:10936487,7528123 -g1,11681:12083367,7528123 -g1,11681:13993741,7528123 -g1,11681:14844398,7528123 -g1,11681:16182643,7528123 -g1,11681:16796715,7528123 -g1,11681:18187389,7528123 -g1,11681:21297072,7528123 -g1,11681:23194339,7528123 -g1,11681:25128961,7528123 -k1,11682:32583029,7528123:5641342 -g1,11682:32583029,7528123 -) -] -g1,11682:32583029,7662471 -) -h1,11682:6630773,7662471:0,0,0 -v1,11685:6630773,9015706:0,393216,0 -(1,11686:6630773,18819141:25952256,10196651,0 -g1,11686:6630773,18819141 -g1,11686:6303093,18819141 -r1,11703:6401397,18819141:98304,10196651,0 -g1,11686:6600626,18819141 -g1,11686:6797234,18819141 -[1,11686:6797234,18819141:25785795,10196651,0 -(1,11686:6797234,9436290:25785795,813800,267386 -(1,11685:6797234,9436290:0,813800,267386 -r1,11703:8134168,9436290:1336934,1081186,267386 -k1,11685:6797234,9436290:-1336934 -) -(1,11685:6797234,9436290:1336934,813800,267386 -) -k1,11685:8355461,9436290:221293 -k1,11685:8683141,9436290:327680 -k1,11685:11725760,9436290:221294 -k1,11685:14106464,9436290:221293 -k1,11685:17238211,9436290:221293 -k1,11685:18563786,9436290:221293 -k1,11685:20586009,9436290:221294 -k1,11685:22504029,9436290:221293 -k1,11685:23672973,9436290:221293 -k1,11685:26729353,9436290:221293 -k1,11685:28648685,9436290:221294 -k1,11685:30250166,9436290:221293 -k1,11685:31563944,9436290:221293 -k1,11685:32583029,9436290:0 -) -(1,11686:6797234,10277778:25785795,513147,134348 -k1,11685:8675277,10277778:224570 -k1,11685:10968163,10277778:224570 -k1,11685:12140384,10277778:224570 -k1,11685:14654781,10277778:224569 -k1,11685:15562236,10277778:224570 -k1,11685:18986274,10277778:224570 -k1,11685:21085174,10277778:224570 -k1,11685:22301304,10277778:224570 -k1,11685:25290182,10277778:224569 -k1,11685:27212790,10277778:224570 -k1,11685:28456445,10277778:224570 -k1,11685:31591469,10277778:224570 -k1,11685:32583029,10277778:0 -) -(1,11686:6797234,11119266:25785795,513147,134348 -k1,11685:9691757,11119266:152497 -k1,11685:11076331,11119266:152497 -k1,11685:13507515,11119266:152497 -h1,11685:15050233,11119266:0,0,0 -k1,11685:15202730,11119266:152497 -k1,11685:16164597,11119266:152497 -k1,11685:17815247,11119266:152497 -h1,11685:19010624,11119266:0,0,0 -k1,11685:19163122,11119266:152498 -k1,11685:20263270,11119266:152497 -k1,11685:20771627,11119266:152497 -k1,11685:25190518,11119266:152497 -k1,11685:25970850,11119266:152497 -k1,11685:28963022,11119266:152497 -k1,11685:30867296,11119266:152497 -k1,11686:32583029,11119266:0 -) -(1,11686:6797234,11960754:25785795,513147,134348 -k1,11685:8489632,11960754:284685 -k1,11685:9866802,11960754:284685 -k1,11685:13177284,11960754:284685 -k1,11685:15843547,11960754:284685 -k1,11685:16744270,11960754:284685 -k1,11685:19939409,11960754:284685 -k1,11685:20840132,11960754:284685 -k1,11685:22143903,11960754:284686 -k1,11685:22843345,11960754:284599 -k1,11685:26909457,11960754:284685 -k1,11685:28799774,11960754:284685 -k1,11685:29767344,11960754:284685 -k1,11685:31753999,11960754:284685 -k1,11686:32583029,11960754:0 -) -(1,11686:6797234,12802242:25785795,505283,134348 -k1,11685:10961637,12802242:207339 -k1,11685:14430048,12802242:207340 -k1,11685:17547841,12802242:207339 -k1,11685:18516709,12802242:207340 -k1,11685:21895991,12802242:207339 -k1,11685:23916056,12802242:207339 -k1,11685:26726486,12802242:207340 -k1,11685:27585253,12802242:207339 -k1,11685:32583029,12802242:0 -) -(1,11686:6797234,13643730:25785795,513147,134348 -k1,11685:9932476,13643730:224788 -k1,11685:11261547,13643730:224789 -k1,11685:13871190,13643730:224788 -k1,11685:16018805,13643730:224789 -k1,11685:21144375,13643730:224788 -k1,11685:22388248,13643730:224788 -k1,11685:26003870,13643730:224789 -k1,11685:29139112,13643730:224788 -k1,11685:30046786,13643730:224789 -k1,11685:31923737,13643730:224788 -k1,11685:32583029,13643730:0 -) -(1,11686:6797234,14485218:25785795,505283,134348 -k1,11685:8854577,14485218:244617 -k1,11685:10295881,14485218:244617 -k1,11685:13226818,14485218:244616 -k1,11685:15653129,14485218:244617 -k1,11685:16659274,14485218:244617 -k1,11685:18708707,14485218:244571 -k1,11685:21246429,14485218:244617 -k1,11685:22984612,14485218:244617 -k1,11685:26236021,14485218:244617 -k1,11685:27096675,14485218:244616 -k1,11685:28942992,14485218:244617 -k1,11685:30884991,14485218:244617 -k1,11685:32583029,14485218:0 -) -(1,11686:6797234,15326706:25785795,513147,134348 -k1,11685:9564753,15326706:187367 -k1,11685:12617355,15326706:187368 -k1,11685:13796282,15326706:187367 -k1,11685:17405940,15326706:187368 -k1,11685:19864785,15326706:187367 -k1,11685:22632304,15326706:187367 -k1,11685:26606342,15326706:187368 -k1,11685:27445137,15326706:187367 -k1,11685:28428112,15326706:187368 -k1,11685:31622271,15326706:187367 -k1,11686:32583029,15326706:0 -) -(1,11686:6797234,16168194:25785795,513147,134348 -k1,11685:8244094,16168194:151869 -k1,11685:12177390,16168194:151869 -k1,11685:14887785,16168194:151869 -k1,11685:16844469,16168194:151822 -k1,11685:17527835,16168194:151869 -k1,11685:20483334,16168194:151869 -k1,11685:23569905,16168194:151869 -k1,11685:24187735,16168194:151869 -k1,11685:25510077,16168194:151869 -k1,11685:26754431,16168194:151869 -k1,11685:28608270,16168194:151869 -k1,11685:32583029,16168194:0 -) -(1,11686:6797234,17009682:25785795,513147,126483 -k1,11685:7251241,17009682:241015 -k1,11685:11278968,17009682:241057 -k1,11685:12804531,17009682:241057 -k1,11685:14216061,17009682:241057 -k1,11685:16172851,17009682:241057 -k1,11685:17794752,17009682:241057 -k1,11685:19320315,17009682:241057 -k1,11685:21853821,17009682:241057 -k1,11685:25409689,17009682:241057 -k1,11685:26116707,17009682:241057 -k1,11685:28243890,17009682:241057 -k1,11685:32583029,17009682:0 -) -(1,11686:6797234,17851170:25785795,513147,126483 -k1,11685:9614026,17851170:152753 -k1,11685:10582048,17851170:152754 -k1,11685:12331258,17851170:152753 -k1,11685:13877963,17851170:152754 -k1,11685:15489547,17851170:152753 -k1,11685:16972681,17851170:152753 -k1,11685:18795292,17851170:152754 -k1,11685:20990802,17851170:152753 -k1,11685:22652195,17851170:152754 -k1,11685:23897433,17851170:152753 -k1,11685:24666225,17851170:152754 -k1,11685:28959543,17851170:152753 -k1,11685:32583029,17851170:0 -) -(1,11686:6797234,18692658:25785795,505283,126483 -g1,11685:8385826,18692658 -k1,11686:32583029,18692658:21322794 -g1,11686:32583029,18692658 -) -] -g1,11686:32583029,18819141 -) -h1,11686:6630773,18819141:0,0,0 -(1,11688:6630773,20910401:25952256,555811,147783 -(1,11688:6630773,20910401:2450326,534184,12975 -g1,11688:6630773,20910401 -g1,11688:9081099,20910401 -) -g1,11688:12040378,20910401 -g1,11688:15130860,20910401 -k1,11688:32583029,20910401:14104328 -g1,11688:32583029,20910401 -) -(1,11691:6630773,22145105:25952256,513147,134348 -k1,11690:8064281,22145105:168008 -k1,11690:8883717,22145105:168008 -k1,11690:10070811,22145105:168009 -k1,11690:11809717,22145105:168008 -k1,11690:14463506,22145105:168008 -k1,11690:15290806,22145105:168008 -k1,11690:19188469,22145105:168009 -k1,11690:19771289,22145105:167977 -k1,11690:22849751,22145105:168008 -k1,11690:23475856,22145105:168008 -k1,11690:24748146,22145105:168008 -k1,11690:28364004,22145105:168009 -k1,11690:29279778,22145105:168008 -k1,11690:31931601,22145105:168008 -k1,11690:32583029,22145105:0 -) -(1,11691:6630773,22986593:25952256,513147,134348 -k1,11690:8087947,22986593:191018 -k1,11690:8634825,22986593:191018 -k1,11690:11337838,22986593:191018 -k1,11690:14109008,22986593:191018 -k1,11690:15247677,22986593:191018 -k1,11690:15794555,22986593:191018 -k1,11690:17321197,22986593:191018 -k1,11690:18124977,22986593:191018 -k1,11690:20095954,22986593:191019 -k1,11690:20756865,22986593:191018 -k1,11690:21479380,22986593:191018 -k1,11690:23254403,22986593:191018 -k1,11690:24096849,22986593:191018 -k1,11690:25594000,22986593:191018 -k1,11690:27606919,22986593:191018 -k1,11690:28263898,22986593:191018 -k1,11690:29474001,22986593:191018 -k1,11690:32583029,22986593:0 -) -(1,11691:6630773,23828081:25952256,505283,134348 -k1,11690:10016371,23828081:293609 -k1,11690:10841477,23828081:293609 -k1,11690:13469478,23828081:293609 -k1,11690:15241580,23828081:293610 -k1,11690:16802655,23828081:293609 -k1,11690:18530192,23828081:293609 -k1,11690:19412314,23828081:293609 -k1,11690:21138540,23828081:293609 -k1,11690:21846898,23828081:293515 -k1,11690:23511520,23828081:293609 -k1,11690:24824214,23828081:293609 -k1,11690:29672575,23828081:293609 -k1,11690:32583029,23828081:0 -) -(1,11691:6630773,24669569:25952256,513147,134348 -k1,11690:9775191,24669569:199885 -k1,11690:11673114,24669569:199885 -k1,11690:12287841,24669569:199884 -k1,11690:13019223,24669569:199885 -k1,11690:16163641,24669569:199885 -k1,11690:18084500,24669569:199884 -k1,11690:18640245,24669569:199885 -k1,11690:19696686,24669569:199885 -k1,11690:20555863,24669569:199885 -k1,11690:23236941,24669569:199885 -k1,11690:24265856,24669569:199885 -k1,11690:26895815,24669569:199884 -k1,11690:28485063,24669569:199885 -k1,11690:30420341,24669569:199885 -k1,11690:32583029,24669569:0 -) -(1,11691:6630773,25511057:25952256,513147,126483 -k1,11690:7995636,25511057:233056 -k1,11690:8887984,25511057:233056 -k1,11690:10140125,25511057:233056 -k1,11690:12023378,25511057:233056 -k1,11690:15033850,25511057:233056 -k1,11690:18351030,25511057:233056 -k1,11690:21368711,25511057:233056 -k1,11690:23094677,25511057:233056 -k1,11690:24394004,25511057:233056 -k1,11690:26918854,25511057:233056 -k1,11690:28170995,25511057:233056 -k1,11690:29496536,25511057:233056 -k1,11690:30388884,25511057:233056 -k1,11690:32583029,25511057:0 -) -(1,11691:6630773,26352545:25952256,513147,134348 -k1,11690:9926824,26352545:211927 -k1,11690:13785174,26352545:211927 -k1,11690:17726755,26352545:211927 -k1,11690:20849136,26352545:211927 -k1,11690:24017392,26352545:211927 -k1,11690:24912204,26352545:211927 -k1,11690:27276333,26352545:211927 -k1,11690:28507345,26352545:211927 -k1,11690:32583029,26352545:0 -) -(1,11691:6630773,27194033:25952256,513147,134348 -k1,11690:7406628,27194033:159817 -k1,11690:9000373,27194033:159817 -k1,11690:9574994,27194033:159778 -k1,11690:11128762,27194033:159817 -k1,11690:14701039,27194033:159817 -k1,11690:16644090,27194033:159816 -k1,11690:17960617,27194033:159817 -k1,11690:21181621,27194033:159817 -k1,11690:22360523,27194033:159817 -k1,11690:23612825,27194033:159817 -k1,11690:24431934,27194033:159817 -k1,11690:26310760,27194033:159817 -k1,11690:27153462,27194033:159817 -k1,11690:30866641,27194033:159817 -k1,11690:32583029,27194033:0 -) -(1,11691:6630773,28035521:25952256,513147,134348 -k1,11690:7464744,28035521:174679 -k1,11690:9028785,28035521:174678 -k1,11690:11931728,28035521:174679 -k1,11690:13125491,28035521:174678 -k1,11690:14392655,28035521:174679 -k1,11690:15226625,28035521:174678 -k1,11690:19130958,28035521:174679 -k1,11690:22216090,28035521:174678 -k1,11690:23495051,28035521:174679 -k1,11690:24417495,28035521:174678 -k1,11690:28633779,28035521:174679 -k1,11690:30298746,28035521:174678 -k1,11690:31089463,28035521:174679 -k1,11690:32583029,28035521:0 -) -(1,11691:6630773,28877009:25952256,513147,102891 -k1,11690:8762105,28877009:260279 -k1,11690:9480480,28877009:260278 -k1,11690:10272256,28877009:260279 -k1,11690:11598806,28877009:260279 -k1,11690:14409745,28877009:260278 -k1,11690:15321452,28877009:260279 -k1,11690:17056946,28877009:260279 -k1,11690:21034427,28877009:260279 -k1,11690:21946133,28877009:260278 -k1,11690:24421529,28877009:260279 -k1,11690:26249429,28877009:260279 -k1,11690:28519696,28877009:260278 -k1,11690:29799060,28877009:260279 -k1,11690:32583029,28877009:0 -) -(1,11691:6630773,29718497:25952256,513147,134348 -k1,11690:10641380,29718497:280953 -k1,11690:14006457,29718497:280953 -k1,11690:17760162,29718497:280952 -k1,11690:20264096,29718497:280953 -k1,11690:21227934,29718497:280953 -k1,11690:23389770,29718497:280953 -k1,11690:24330015,29718497:280953 -k1,11690:27521421,29718497:280952 -k1,11690:28793934,29718497:280953 -k1,11690:31931601,29718497:280953 -k1,11690:32583029,29718497:0 -) -(1,11691:6630773,30559985:25952256,505283,134348 -g1,11690:8426459,30559985 -g1,11690:9904295,30559985 -k1,11691:32583028,30559985:19824640 -g1,11691:32583028,30559985 -) -(1,11693:6630773,31401473:25952256,505283,126483 -h1,11692:6630773,31401473:983040,0,0 -k1,11692:8948021,31401473:137521 -k1,11692:10890343,31401473:137460 -k1,11692:14311219,31401473:137522 -k1,11692:15549745,31401473:137521 -k1,11692:17041240,31401473:137521 -k1,11692:19038674,31401473:137522 -k1,11692:21002683,31401473:137521 -k1,11692:22331650,31401473:137522 -k1,11692:25137142,31401473:137521 -k1,11692:25630523,31401473:137521 -k1,11692:28046732,31401473:137522 -k1,11692:30052029,31401473:137521 -k1,11693:32583029,31401473:0 -) -(1,11693:6630773,32242961:25952256,513147,134348 -k1,11692:7185481,32242961:139865 -k1,11692:9082426,32242961:139925 -k1,11692:10213910,32242961:139924 -k1,11692:11622611,32242961:139924 -k1,11692:13590989,32242961:139924 -k1,11692:16803897,32242961:139925 -k1,11692:20161639,32242961:139924 -k1,11692:21625390,32242961:139924 -k1,11692:22424606,32242961:139924 -k1,11692:25474984,32242961:139924 -k1,11692:28919890,32242961:139925 -k1,11692:30573040,32242961:139924 -k1,11692:32583029,32242961:0 -) -(1,11693:6630773,33084449:25952256,513147,134348 -k1,11692:7301682,33084449:315049 -k1,11692:9311493,33084449:315050 -k1,11692:11030323,33084449:315049 -k1,11692:12004664,33084449:315049 -k1,11692:15199366,33084449:315050 -k1,11692:19240137,33084449:315049 -k1,11692:20238072,33084449:315050 -k1,11692:22950428,33084449:315049 -k1,11692:27330020,33084449:315049 -k1,11692:29519400,33084449:315050 -k1,11692:31591469,33084449:315049 -k1,11692:32583029,33084449:0 -) -(1,11693:6630773,33925937:25952256,513147,126484 -k1,11692:8908924,33925937:283890 -k1,11692:10384259,33925937:283890 -k1,11692:13305317,33925937:283889 -k1,11692:14350735,33925937:283890 -k1,11692:17396968,33925937:283890 -k1,11692:20093894,33925937:283890 -k1,11692:21935575,33925937:283890 -k1,11692:23323747,33925937:283890 -k1,11692:24355402,33925937:283889 -k1,11692:26549011,33925937:283890 -k1,11692:27445663,33925937:283890 -$1,11692:27445663,33925937 -k1,11692:29421573,33925937:0 -k1,11692:29816755,33925937:0 -k1,11692:30211937,33925937:0 -k1,11692:30607119,33925937:0 -k1,11692:32187847,33925937:0 -k1,11693:32583029,33925937:0 -) -(1,11693:6630773,34767425:25952256,505283,134349 -(1,11692:7421137,34865739:32768,0,0 -) -g1,11692:10220179,34767425 -g1,11692:10615361,34767425 -g1,11692:11800907,34767425 -g1,11692:12196089,34767425 -g1,11692:13381635,34767425 -g1,11692:13776817,34767425 -$1,11692:16147909,34767425 -k1,11693:32583029,34767425:16261450 -g1,11693:32583029,34767425 -) -(1,11695:6630773,35608913:25952256,513147,126483 -h1,11694:6630773,35608913:983040,0,0 -k1,11694:9077166,35608913:266666 -k1,11694:13590565,35608913:266666 -k1,11694:17140585,35608913:266666 -k1,11694:20870173,35608913:266666 -k1,11694:21752877,35608913:266666 -k1,11694:26677187,35608913:266666 -k1,11694:28337804,35608913:266666 -k1,11694:29192983,35608913:266666 -k1,11694:29929542,35608913:266666 -k1,11694:31482024,35608913:266666 -k1,11694:32583029,35608913:0 -) -(1,11695:6630773,36450401:25952256,513147,126483 -k1,11694:7204813,36450401:218180 -k1,11694:9701681,36450401:218181 -k1,11694:11313812,36450401:218180 -k1,11694:13889322,36450401:218180 -k1,11694:15298947,36450401:218180 -k1,11694:17527117,36450401:218181 -k1,11694:18377064,36450401:218180 -k1,11694:22535268,36450401:218180 -k1,11694:23412740,36450401:218180 -k1,11694:26393264,36450401:218181 -k1,11694:28000807,36450401:218180 -k1,11694:30773580,36450401:218180 -k1,11695:32583029,36450401:0 -) -(1,11695:6630773,37291889:25952256,513147,134348 -k1,11694:8755942,37291889:271155 -k1,11694:10223784,37291889:271155 -k1,11694:13771740,37291889:271156 -k1,11694:15034455,37291889:271155 -k1,11694:18413327,37291889:271155 -k1,11694:20268487,37291889:271155 -k1,11694:21225804,37291889:271155 -k1,11694:22877147,37291889:271155 -k1,11694:25049502,37291889:271156 -k1,11694:27206128,37291889:271155 -k1,11694:28742128,37291889:271155 -k1,11694:29672575,37291889:271155 -k1,11694:32583029,37291889:0 -) -(1,11695:6630773,38133377:25952256,513147,134348 -k1,11694:8486971,38133377:259741 -k1,11694:10025319,38133377:259741 -k1,11694:13139153,38133377:259741 -k1,11694:15273224,38133377:259741 -k1,11694:17289986,38133377:259742 -k1,11694:18654009,38133377:259741 -k1,11694:19661516,38133377:259741 -k1,11694:21830976,38133377:259741 -k1,11694:22703479,38133377:259741 -$1,11694:22703479,38133377 -k1,11694:24679389,38133377:0 -k1,11694:25074571,38133377:0 -k1,11694:25469753,38133377:0 -k1,11694:25864935,38133377:0 -k1,11694:27050481,38133377:0 -k1,11694:27445663,38133377:0 -k1,11694:32187847,38133377:0 -k1,11695:32583029,38133377:0 -) -(1,11695:6630773,38974865:25952256,505283,134349 -g1,11694:7816319,38974865 -g1,11694:8211501,38974865 -g1,11694:11372957,38974865 -g1,11694:11768139,38974865 -g1,11694:14534413,38974865 -g1,11694:14929595,38974865 -g1,11694:18486233,38974865 -g1,11694:18881415,38974865 -$1,11694:20462143,38974865 -k1,11695:32583029,38974865:11947216 -g1,11695:32583029,38974865 -) -(1,11697:6630773,39816353:25952256,513147,134348 -h1,11696:6630773,39816353:983040,0,0 -k1,11696:10795467,39816353:218771 -k1,11696:14041346,39816353:218771 -k1,11696:15753027,39816353:218771 -k1,11696:17038069,39816353:218771 -k1,11696:18764823,39816353:218771 -k1,11696:19339454,39816353:218771 -k1,11696:22260930,39816353:218771 -k1,11696:25059853,39816353:218771 -k1,11696:28561978,39816353:218771 -k1,11696:29728400,39816353:218771 -k1,11696:30966256,39816353:218771 -k1,11697:32583029,39816353:0 -) -(1,11697:6630773,40657841:25952256,513147,134349 -k1,11696:9721713,40657841:260440 -k1,11696:13066278,40657841:260441 -k1,11696:14706906,40657841:260440 -k1,11696:15782614,40657841:260440 -k1,11696:17551038,40657841:260441 -k1,11696:18582181,40657841:260440 -k1,11696:20591777,40657841:260440 -k1,11696:21511509,40657841:260440 -k1,11696:23411005,40657841:260441 -k1,11696:24284207,40657841:260440 -$1,11696:24284207,40657841 -k1,11696:26260117,40657841:0 -k1,11696:26655299,40657841:0 -k1,11696:27050481,40657841:0 -k1,11696:27445663,40657841:0 -k1,11696:30607119,40657841:0 -k1,11696:31002301,40657841:0 -k1,11696:32187847,40657841:0 -k1,11697:32583029,40657841:0 -) -(1,11697:6630773,41499329:25952256,505283,134349 -$1,11696:10187411,41499329 -k1,11697:32583029,41499329:22221948 -g1,11697:32583029,41499329 -) -(1,11699:6630773,42340817:25952256,513147,134348 -h1,11698:6630773,42340817:983040,0,0 -k1,11698:9068553,42340817:258053 -k1,11698:11131409,42340817:257994 -k1,11698:14672815,42340817:258052 -k1,11698:16769153,42340817:258053 -k1,11698:17797909,42340817:258053 -k1,11698:20354310,42340817:258053 -k1,11698:21271655,42340817:258053 -k1,11698:23563290,42340817:258053 -k1,11698:26485382,42340817:258053 -k1,11698:27402726,42340817:258052 -k1,11698:30744903,42340817:258053 -k1,11698:31812326,42340817:258053 -k1,11698:32583029,42340817:0 -) -(1,11699:6630773,43182305:25952256,513147,134349 -k1,11698:9979914,43182305:156227 -k1,11698:12716293,43182305:156227 -k1,11698:14664274,43182305:156227 -k1,11698:18557321,43182305:156184 -$1,11698:18764415,43182305 -k1,11698:20740325,43182305:0 -k1,11698:21135507,43182305:0 -k1,11698:21530689,43182305:0 -k1,11698:21925871,43182305:0 -k1,11698:23111417,43182305:0 -k1,11698:23506599,43182305:0 -(1,11698:24296963,43280619:32768,0,0 -) -k1,11698:25515277,43182305:0 -k1,11698:25910459,43182305:0 -$1,11698:27491187,43182305 -k1,11698:27854508,43182305:156227 -k1,11698:28542232,43182305:156227 -k1,11698:29469162,43182305:156227 -k1,11698:31923737,43182305:156227 -k1,11698:32583029,43182305:0 -) -(1,11699:6630773,44023793:25952256,513147,126483 -k1,11698:10828158,44023793:222626 -k1,11698:12335289,44023793:222625 -k1,11698:14396200,44023793:222626 -k1,11698:14974685,44023793:222625 -k1,11698:18179199,44023793:222626 -k1,11698:20474729,44023793:222626 -k1,11698:21383516,44023793:222625 -k1,11698:24854762,44023793:222626 -k1,11698:26645008,44023793:222625 -k1,11698:28846166,44023793:222626 -k1,11698:32583029,44023793:0 -) -(1,11699:6630773,44865281:25952256,513147,134348 -k1,11698:8344849,44865281:291289 -k1,11698:8991999,44865281:291290 -k1,11698:12045631,44865281:291289 -k1,11698:14407202,44865281:291289 -k1,11698:16798265,44865281:291289 -k1,11698:18532002,44865281:291290 -k1,11698:20628060,44865281:291196 -k1,11698:22698652,44865281:291290 -k1,11698:25348582,44865281:291289 -k1,11698:26097968,44865281:291289 -k1,11698:28259655,44865281:291289 -k1,11698:29202373,44865281:291290 -k1,11698:31563944,44865281:291289 -k1,11698:32583029,44865281:0 -) -(1,11699:6630773,45706769:25952256,505283,126483 -g1,11698:8712851,45706769 -k1,11699:32583029,45706769:20413154 -g1,11699:32583029,45706769 -) -] -(1,11703:32583029,45706769:0,0,0 -g1,11703:32583029,45706769 -) -) -] -(1,11703:6630773,47279633:25952256,0,0 -h1,11703:6630773,47279633:25952256,0,0 -) -] -(1,11703:4262630,4025873:0,0,0 -[1,11703:-473656,4025873:0,0,0 -(1,11703:-473656,-710413:0,0,0 -(1,11703:-473656,-710413:0,0,0 -g1,11703:-473656,-710413 -) -g1,11703:-473656,-710413 -) -] -) -] -!25047 -}197 -Input:1703:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1704:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1705:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1706:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1707:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1708:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1709:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!670 -{198 -[1,11716:4262630,47279633:28320399,43253760,0 -(1,11716:4262630,4025873:0,0,0 -[1,11716:-473656,4025873:0,0,0 -(1,11716:-473656,-710413:0,0,0 -(1,11716:-473656,-644877:0,0,0 -k1,11716:-473656,-644877:-65536 +k1,8606:62087500,51504789:25935872 +g1,8606:62087500,51504789 +) +] +) +g1,8606:36675916,49800853 +(1,8606:36675916,49800853:1179648,16384,0 +r1,10928:37855564,49800853:1179648,16384,0 +) +) +k1,10928:3078556,49800853:-34777008 +) +] +g1,10928:6630773,4812305 +k1,10928:21643106,4812305:13816956 +g1,10928:23265777,4812305 +g1,10928:24088253,4812305 +g1,10928:28572226,4812305 +g1,10928:29981905,4812305 +) +) +] +[1,10928:6630773,45706769:25952256,40108032,0 +(1,10928:6630773,45706769:25952256,40108032,0 +(1,10928:6630773,45706769:0,0,0 +g1,10928:6630773,45706769 +) +[1,10928:6630773,45706769:25952256,40108032,0 +v1,10878:6630773,6254097:0,393216,0 +(1,10878:6630773,10774977:25952256,4914096,196608 +g1,10878:6630773,10774977 +g1,10878:6630773,10774977 +g1,10878:6434165,10774977 +(1,10878:6434165,10774977:0,4914096,196608 +r1,10928:32779637,10774977:26345472,5110704,196608 +k1,10878:6434165,10774977:-26345472 +) +(1,10878:6434165,10774977:26345472,4914096,196608 +[1,10878:6630773,10774977:25952256,4717488,0 +(1,10868:6630773,6481928:25952256,424439,112852 +h1,10868:6630773,6481928:0,0,0 +k1,10868:6630773,6481928:0 +h1,10868:10614220,6481928:0,0,0 +k1,10868:32583028,6481928:21968808 +g1,10868:32583028,6481928 +) +(1,10877:6630773,7297855:25952256,431045,9908 +(1,10870:6630773,7297855:0,0,0 +g1,10870:6630773,7297855 +g1,10870:6630773,7297855 +g1,10870:6303093,7297855 +(1,10870:6303093,7297855:0,0,0 +) +g1,10870:6630773,7297855 +) +g1,10877:7626635,7297855 +g1,10877:9286405,7297855 +g1,10877:10282267,7297855 +h1,10877:10614221,7297855:0,0,0 +k1,10877:32583029,7297855:21968808 +g1,10877:32583029,7297855 +) +(1,10877:6630773,7982710:25952256,431045,52847 +h1,10877:6630773,7982710:0,0,0 +g1,10877:7626635,7982710 +g1,10877:7958589,7982710 +g1,10877:8622497,7982710 +g1,10877:10614221,7982710 +g1,10877:11942037,7982710 +h1,10877:12273991,7982710:0,0,0 +k1,10877:32583029,7982710:20309038 +g1,10877:32583029,7982710 +) +(1,10877:6630773,8667565:25952256,431045,52847 +h1,10877:6630773,8667565:0,0,0 +g1,10877:7626635,8667565 +g1,10877:7958589,8667565 +g1,10877:8622497,8667565 +g1,10877:10614221,8667565 +g1,10877:11942037,8667565 +h1,10877:12273991,8667565:0,0,0 +k1,10877:32583029,8667565:20309038 +g1,10877:32583029,8667565 +) +(1,10877:6630773,9352420:25952256,431045,52847 +h1,10877:6630773,9352420:0,0,0 +g1,10877:7626635,9352420 +g1,10877:7958589,9352420 +g1,10877:8622497,9352420 +g1,10877:10614221,9352420 +g1,10877:11942037,9352420 +h1,10877:12273991,9352420:0,0,0 +k1,10877:32583029,9352420:20309038 +g1,10877:32583029,9352420 +) +(1,10877:6630773,10037275:25952256,431045,52847 +h1,10877:6630773,10037275:0,0,0 +g1,10877:7626635,10037275 +g1,10877:7958589,10037275 +g1,10877:8622497,10037275 +g1,10877:10614221,10037275 +g1,10877:11942037,10037275 +h1,10877:12605945,10037275:0,0,0 +k1,10877:32583029,10037275:19977084 +g1,10877:32583029,10037275 +) +(1,10877:6630773,10722130:25952256,431045,52847 +h1,10877:6630773,10722130:0,0,0 +g1,10877:7626635,10722130 +g1,10877:7958589,10722130 +g1,10877:8622497,10722130 +g1,10877:10614221,10722130 +g1,10877:11942037,10722130 +h1,10877:12605945,10722130:0,0,0 +k1,10877:32583029,10722130:19977084 +g1,10877:32583029,10722130 +) +] +) +g1,10878:32583029,10774977 +g1,10878:6630773,10774977 +g1,10878:6630773,10774977 +g1,10878:32583029,10774977 +g1,10878:32583029,10774977 +) +h1,10878:6630773,10971585:0,0,0 +v1,10882:6630773,11836665:0,393216,0 +(1,10883:6630773,14866686:25952256,3423237,0 +g1,10883:6630773,14866686 +g1,10883:6237557,14866686 +r1,10928:6368629,14866686:131072,3423237,0 +g1,10883:6567858,14866686 +g1,10883:6764466,14866686 +[1,10883:6764466,14866686:25818563,3423237,0 +(1,10883:6764466,12144963:25818563,701514,196608 +(1,10882:6764466,12144963:0,701514,196608 +r1,10928:8863446,12144963:2098980,898122,196608 +k1,10882:6764466,12144963:-2098980 +) +(1,10882:6764466,12144963:2098980,701514,196608 +) +k1,10882:9141169,12144963:277723 +k1,10882:10867387,12144963:327680 +k1,10882:13003056,12144963:277723 +k1,10882:13940070,12144963:277722 +k1,10882:16847753,12144963:277723 +k1,10882:18548263,12144963:277723 +k1,10882:19485278,12144963:277723 +k1,10882:22788798,12144963:277723 +(1,10882:22788798,12144963:0,452978,122846 +r1,10928:25609047,12144963:2820249,575824,122846 +k1,10882:22788798,12144963:-2820249 +) +(1,10882:22788798,12144963:2820249,452978,122846 +k1,10882:22788798,12144963:3277 +h1,10882:25605770,12144963:0,411205,112570 +) +k1,10882:26060440,12144963:277723 +(1,10882:26060440,12144963:0,452978,122846 +r1,10928:27825553,12144963:1765113,575824,122846 +k1,10882:26060440,12144963:-1765113 +) +(1,10882:26060440,12144963:1765113,452978,122846 +k1,10882:26060440,12144963:3277 +h1,10882:27822276,12144963:0,411205,112570 +) +k1,10882:28103275,12144963:277722 +k1,10882:29572443,12144963:277723 +(1,10882:29572443,12144963:0,452978,122846 +r1,10928:31689268,12144963:2116825,575824,122846 +k1,10882:29572443,12144963:-2116825 +) +(1,10882:29572443,12144963:2116825,452978,122846 +k1,10882:29572443,12144963:3277 +h1,10882:31685991,12144963:0,411205,112570 +) +k1,10882:31966991,12144963:277723 +k1,10882:32583029,12144963:0 +) +(1,10883:6764466,13010043:25818563,513147,126483 +k1,10882:9183727,13010043:257884 +k1,10882:10612084,13010043:257884 +k1,10882:11962454,13010043:257885 +k1,10882:12903223,13010043:257884 +k1,10882:14929924,13010043:257884 +k1,10882:16280293,13010043:257884 +k1,10882:17189606,13010043:257885 +k1,10882:19877565,13010043:257884 +k1,10882:21594280,13010043:257884 +k1,10882:23182545,13010043:257884 +k1,10882:24829792,13010043:257884 +k1,10882:25977656,13010043:257885 +k1,10882:27803161,13010043:257884 +k1,10882:29763015,13010043:257884 +k1,10882:32583029,13010043:0 +) +(1,10883:6764466,13875123:25818563,505283,126483 +k1,10882:8719707,13875123:255237 +k1,10882:9330805,13875123:255238 +k1,10882:11417118,13875123:255237 +k1,10882:12323784,13875123:255238 +k1,10882:16012452,13875123:255237 +k1,10882:17644601,13875123:255238 +k1,10882:19091283,13875123:255237 +k1,10882:22525017,13875123:255238 +k1,10882:23971699,13875123:255237 +k1,10882:25418382,13875123:255238 +k1,10882:27545327,13875123:255237 +k1,10882:29003806,13875123:255238 +k1,10882:31090119,13875123:255237 +k1,10882:32583029,13875123:0 +) +(1,10883:6764466,14740203:25818563,505283,126483 +g1,10882:7982780,14740203 +g1,10882:10024881,14740203 +g1,10882:13264981,14740203 +g1,10882:14225738,14740203 +g1,10882:15444052,14740203 +g1,10882:17474357,14740203 +g1,10882:20332382,14740203 +g1,10882:21990442,14740203 +k1,10883:32583029,14740203:6394351 +g1,10883:32583029,14740203 +) +] +g1,10883:32583029,14866686 +) +h1,10883:6630773,14866686:0,0,0 +(1,10886:6630773,15731766:25952256,505283,134348 +h1,10885:6630773,15731766:983040,0,0 +g1,10885:9406878,15731766 +g1,10885:12125966,15731766 +g1,10885:13417680,15731766 +g1,10885:16608628,15731766 +g1,10885:17940319,15731766 +g1,10885:19834309,15731766 +g1,10885:20649576,15731766 +g1,10885:23266428,15731766 +h1,10885:24063346,15731766:0,0,0 +k1,10886:32583029,15731766:8519683 +g1,10886:32583029,15731766 +) +(1,10887:6630773,18562926:25952256,32768,229376 +(1,10887:6630773,18562926:0,32768,229376 +(1,10887:6630773,18562926:5505024,32768,229376 +r1,10928:12135797,18562926:5505024,262144,229376 +) +k1,10887:6630773,18562926:-5505024 +) +(1,10887:6630773,18562926:25952256,32768,0 +r1,10928:32583029,18562926:25952256,32768,0 +) +) +(1,10887:6630773,20194778:25952256,615776,151780 +(1,10887:6630773,20194778:2464678,573309,14155 +g1,10887:6630773,20194778 +g1,10887:9095451,20194778 +) +g1,10887:10858632,20194778 +g1,10887:14406227,20194778 +g1,10887:16695531,20194778 +g1,10887:17753282,20194778 +k1,10887:32583029,20194778:12678855 +g1,10887:32583029,20194778 +) +(1,10890:6630773,21453074:25952256,701514,196608 +(1,10889:6630773,21453074:0,701514,196608 +r1,10928:7876871,21453074:1246098,898122,196608 +k1,10889:6630773,21453074:-1246098 +) +(1,10889:6630773,21453074:1246098,701514,196608 +) +k1,10889:8092950,21453074:216079 +k1,10889:9138059,21453074:216079 +k1,10889:10965013,21453074:216079 +k1,10889:12384333,21453074:216079 +k1,10889:15191706,21453074:216079 +k1,10889:15620760,21453074:216062 +k1,10889:18506120,21453074:216079 +k1,10889:20414338,21453074:216078 +k1,10889:23636553,21453074:216079 +k1,10889:25275419,21453074:216079 +k1,10889:26150790,21453074:216079 +k1,10889:27385954,21453074:216079 +k1,10889:28016859,21453074:216062 +k1,10889:29978162,21453074:216079 +k1,10889:31478747,21453074:216079 +k1,10889:32583029,21453074:0 +) +(1,10890:6630773,22318154:25952256,513147,134348 +k1,10889:7579360,22318154:200821 +k1,10889:9757402,22318154:200821 +k1,10889:11656261,22318154:200821 +k1,10889:14114797,22318154:200821 +k1,10889:16393765,22318154:200821 +k1,10889:17412475,22318154:200821 +k1,10889:19310023,22318154:200821 +k1,10889:21882591,22318154:200820 +k1,10889:22892782,22318154:200821 +k1,10889:25789099,22318154:200821 +k1,10889:27593586,22318154:200821 +k1,10889:28260368,22318154:200821 +k1,10889:29631662,22318154:200821 +k1,10889:30824043,22318154:200821 +k1,10889:32583029,22318154:0 +) +(1,10890:6630773,23183234:25952256,513147,134348 +k1,10889:9402543,23183234:213244 +k1,10889:10634872,23183234:213244 +k1,10889:12430155,23183234:213244 +k1,10889:16661410,23183234:213243 +k1,10889:18045127,23183234:213244 +k1,10889:20438754,23183234:213244 +k1,10889:21996797,23183234:213244 +k1,10889:23413282,23183234:213244 +k1,10889:25905213,23183234:213244 +k1,10889:27309901,23183234:213243 +k1,10889:29533790,23183234:213244 +k1,10889:30398462,23183234:213244 +k1,10889:31069803,23183234:213244 +k1,10889:32583029,23183234:0 +) +(1,10890:6630773,24048314:25952256,505283,134348 +g1,10889:9232552,24048314 +g1,10889:12179706,24048314 +h1,10889:12578165,24048314:0,0,0 +g1,10889:12777394,24048314 +g1,10889:14168068,24048314 +h1,10889:14566527,24048314:0,0,0 +k1,10890:32583029,24048314:17842832 +g1,10890:32583029,24048314 +) +(1,10892:6630773,24913394:25952256,505283,134348 +h1,10891:6630773,24913394:983040,0,0 +k1,10891:8428907,24913394:187259 +k1,10891:9635251,24913394:187259 +k1,10891:11475983,24913394:187259 +k1,10891:12901217,24913394:187259 +k1,10891:13774638,24913394:187259 +k1,10891:14830249,24913394:187259 +k1,10891:16121790,24913394:187259 +k1,10891:18315761,24913394:187259 +k1,10891:20571336,24913394:187259 +k1,10891:21410023,24913394:187259 +(1,10891:21410023,24913394:0,452978,115847 +r1,10928:23878560,24913394:2468537,568825,115847 +k1,10891:21410023,24913394:-2468537 +) +(1,10891:21410023,24913394:2468537,452978,115847 +k1,10891:21410023,24913394:3277 +h1,10891:23875283,24913394:0,411205,112570 +) +k1,10891:24239489,24913394:187259 +(1,10891:24239489,24913394:0,452978,115847 +r1,10928:27411449,24913394:3171960,568825,115847 +k1,10891:24239489,24913394:-3171960 +) +(1,10891:24239489,24913394:3171960,452978,115847 +k1,10891:24239489,24913394:3277 +h1,10891:27408172,24913394:0,411205,112570 +) +k1,10891:27598708,24913394:187259 +k1,10891:28977412,24913394:187259 +k1,10891:30866641,24913394:187259 +k1,10891:32583029,24913394:0 +) +(1,10892:6630773,25778474:25952256,513147,134348 +k1,10891:7554931,25778474:264866 +k1,10891:10283295,25778474:264866 +k1,10891:11416513,25778474:264866 +k1,10891:12785662,25778474:264867 +k1,10891:15057240,25778474:264866 +k1,10891:17390422,25778474:264866 +k1,10891:18306716,25778474:264866 +k1,10891:21597379,25778474:264866 +k1,10891:23053690,25778474:264866 +k1,10891:27262514,25778474:264867 +k1,10891:28480929,25778474:264866 +k1,10891:29850077,25778474:264866 +k1,10891:31400759,25778474:264866 +k1,10892:32583029,25778474:0 +) +(1,10892:6630773,26643554:25952256,513147,134348 +k1,10891:7864549,26643554:273674 +k1,10891:9462049,26643554:273673 +k1,10891:10395015,26643554:273674 +k1,10891:13694486,26643554:273674 +k1,10891:16178034,26643554:273674 +k1,10891:20395664,26643554:273673 +k1,10891:21866025,26643554:273674 +k1,10891:22554467,26643554:273599 +k1,10891:25670437,26643554:273674 +k1,10891:27045116,26643554:273674 +k1,10891:27674649,26643554:273673 +k1,10891:29302297,26643554:273674 +k1,10891:32583029,26643554:0 +) +(1,10892:6630773,27508634:25952256,513147,134348 +k1,10891:9927436,27508634:220403 +k1,10891:11541789,27508634:220402 +k1,10891:12528308,27508634:220403 +k1,10891:14072537,27508634:220402 +k1,10891:15484385,27508634:220403 +k1,10891:18012966,27508634:220403 +k1,10891:21099257,27508634:220402 +k1,10891:21935698,27508634:220403 +k1,10891:23175186,27508634:220403 +k1,10891:25049061,27508634:220402 +k1,10891:26681110,27508634:220403 +k1,10891:28098199,27508634:220402 +k1,10891:31923737,27508634:220403 +k1,10891:32583029,27508634:0 +) +(1,10892:6630773,28373714:25952256,513147,134348 +k1,10891:8041669,28373714:207655 +k1,10891:8780822,28373714:207656 +k1,10891:10272983,28373714:207655 +k1,10891:11348991,28373714:207656 +k1,10891:12660928,28373714:207655 +k1,10891:14875296,28373714:207656 +k1,10891:17845294,28373714:207655 +k1,10891:21078746,28373714:207655 +k1,10891:21969287,28373714:207656 +k1,10891:25947228,28373714:207655 +k1,10891:26806312,28373714:207656 +k1,10891:27369827,28373714:207655 +k1,10891:29272244,28373714:207656 +k1,10891:31391584,28373714:207655 +k1,10891:32583029,28373714:0 +) +(1,10892:6630773,29238794:25952256,513147,126483 +g1,10891:11055108,29238794 +g1,10891:11712434,29238794 +g1,10891:12443160,29238794 +g1,10891:15272349,29238794 +g1,10891:16123006,29238794 +g1,10891:17937042,29238794 +g1,10891:19881495,29238794 +g1,10891:21468121,29238794 +g1,10891:22991177,29238794 +g1,10891:23849698,29238794 +g1,10891:27074724,29238794 +g1,10891:27956838,29238794 +k1,10892:32583029,29238794:682234 +g1,10892:32583029,29238794 +) +(1,10894:6630773,30103874:25952256,513147,126483 +h1,10893:6630773,30103874:983040,0,0 +k1,10893:8421263,30103874:179615 +k1,10893:9804120,30103874:179616 +k1,10893:11289868,30103874:179615 +k1,10893:14130901,30103874:179616 +k1,10893:15178868,30103874:179615 +k1,10893:16450969,30103874:179616 +k1,10893:16986444,30103874:179615 +k1,10893:20202997,30103874:179615 +k1,10893:22314614,30103874:179616 +k1,10893:23110267,30103874:179615 +k1,10893:25887075,30103874:179616 +k1,10893:28298846,30103874:179615 +k1,10893:29669907,30103874:179616 +k1,10893:30942007,30103874:179615 +k1,10894:32583029,30103874:0 +) +(1,10894:6630773,30968954:25952256,513147,134348 +k1,10893:8108709,30968954:210470 +(1,10893:8108709,30968954:0,452978,115847 +r1,10928:11280669,30968954:3171960,568825,115847 +k1,10893:8108709,30968954:-3171960 +) +(1,10893:8108709,30968954:3171960,452978,115847 +k1,10893:8108709,30968954:3277 +h1,10893:11277392,30968954:0,411205,112570 +) +k1,10893:11491139,30968954:210470 +k1,10893:12387771,30968954:210470 +k1,10893:13056338,30968954:210470 +k1,10893:15645110,30968954:210470 +k1,10893:17711560,30968954:210470 +k1,10893:20896708,30968954:210469 +k1,10893:23303289,30968954:210470 +k1,10893:24196644,30968954:210470 +k1,10893:27102610,30968954:210470 +k1,10893:29381396,30968954:210470 +k1,10893:30278028,30968954:210470 +k1,10893:31276896,30968954:210470 +k1,10893:32583029,30968954:0 +) +(1,10894:6630773,31834034:25952256,505283,134348 +k1,10893:10043590,31834034:166819 +k1,10893:11163958,31834034:166819 +k1,10893:13354528,31834034:166818 +k1,10893:13877207,31834034:166819 +k1,10893:16664155,31834034:166819 +k1,10893:18808851,31834034:166819 +k1,10893:20369621,31834034:166819 +k1,10893:22695196,31834034:166819 +k1,10893:25815722,31834034:166818 +k1,10893:27376492,31834034:166819 +k1,10893:29611627,31834034:166819 +k1,10893:32583029,31834034:0 +) +(1,10894:6630773,32699114:25952256,513147,7863 +g1,10893:7849087,32699114 +g1,10893:10743812,32699114 +k1,10894:32583029,32699114:19597230 +g1,10894:32583029,32699114 +) +v1,10896:6630773,33383969:0,393216,0 +(1,10910:6630773,39231620:25952256,6240867,196608 +g1,10910:6630773,39231620 +g1,10910:6630773,39231620 +g1,10910:6434165,39231620 +(1,10910:6434165,39231620:0,6240867,196608 +r1,10928:32779637,39231620:26345472,6437475,196608 +k1,10910:6434165,39231620:-26345472 +) +(1,10910:6434165,39231620:26345472,6240867,196608 +[1,10910:6630773,39231620:25952256,6044259,0 +(1,10898:6630773,33611800:25952256,424439,79822 +(1,10897:6630773,33611800:0,0,0 +g1,10897:6630773,33611800 +g1,10897:6630773,33611800 +g1,10897:6303093,33611800 +(1,10897:6303093,33611800:0,0,0 +) +g1,10897:6630773,33611800 +) +g1,10898:7294681,33611800 +g1,10898:8290543,33611800 +k1,10898:8290543,33611800:0 +h1,10898:11278129,33611800:0,0,0 +k1,10898:32583029,33611800:21304900 +g1,10898:32583029,33611800 +) +(1,10899:6630773,34296655:25952256,424439,79822 +h1,10899:6630773,34296655:0,0,0 +g1,10899:9286405,34296655 +g1,10899:10282267,34296655 +k1,10899:10282267,34296655:0 +h1,10899:13269853,34296655:0,0,0 +k1,10899:32583029,34296655:19313176 +g1,10899:32583029,34296655 +) +(1,10900:6630773,34981510:25952256,431045,86428 +h1,10900:6630773,34981510:0,0,0 +g1,10900:9950312,34981510 +g1,10900:10946174,34981510 +g1,10900:14265714,34981510 +g1,10900:16589392,34981510 +h1,10900:18581116,34981510:0,0,0 +k1,10900:32583029,34981510:14001913 +g1,10900:32583029,34981510 +) +(1,10901:6630773,35666365:25952256,431045,79822 +h1,10901:6630773,35666365:0,0,0 +g1,10901:7958589,35666365 +g1,10901:10614221,35666365 +g1,10901:11610083,35666365 +g1,10901:15261576,35666365 +h1,10901:15593530,35666365:0,0,0 +k1,10901:32583030,35666365:16989500 +g1,10901:32583030,35666365 +) +(1,10902:6630773,36351220:25952256,431045,86428 +h1,10902:6630773,36351220:0,0,0 +g1,10902:6962727,36351220 +g1,10902:7294681,36351220 +g1,10902:7626635,36351220 +g1,10902:13601806,36351220 +g1,10902:14597668,36351220 +g1,10902:19908932,36351220 +k1,10902:19908932,36351220:0 +h1,10902:22564564,36351220:0,0,0 +k1,10902:32583029,36351220:10018465 +g1,10902:32583029,36351220 +) +(1,10903:6630773,37036075:25952256,424439,79822 +h1,10903:6630773,37036075:0,0,0 +g1,10903:6962727,37036075 +g1,10903:7294681,37036075 +g1,10903:7626635,37036075 +h1,10903:7958589,37036075:0,0,0 +k1,10903:32583029,37036075:24624440 +g1,10903:32583029,37036075 +) +(1,10904:6630773,37720930:25952256,424439,6605 +h1,10904:6630773,37720930:0,0,0 +h1,10904:8954451,37720930:0,0,0 +k1,10904:32583029,37720930:23628578 +g1,10904:32583029,37720930 +) +(1,10909:6630773,38536857:25952256,424439,6605 +(1,10906:6630773,38536857:0,0,0 +g1,10906:6630773,38536857 +g1,10906:6630773,38536857 +g1,10906:6303093,38536857 +(1,10906:6303093,38536857:0,0,0 +) +g1,10906:6630773,38536857 +) +g1,10909:7626635,38536857 +g1,10909:7958589,38536857 +g1,10909:8290543,38536857 +g1,10909:8622497,38536857 +g1,10909:8954451,38536857 +g1,10909:9286405,38536857 +g1,10909:9618359,38536857 +g1,10909:11278129,38536857 +g1,10909:11610083,38536857 +g1,10909:11942037,38536857 +g1,10909:12273991,38536857 +g1,10909:12605945,38536857 +g1,10909:12937899,38536857 +g1,10909:13269853,38536857 +g1,10909:13601807,38536857 +g1,10909:14929623,38536857 +g1,10909:15261577,38536857 +g1,10909:15593531,38536857 +g1,10909:15925485,38536857 +g1,10909:16257439,38536857 +g1,10909:16589393,38536857 +g1,10909:16921347,38536857 +g1,10909:17253301,38536857 +h1,10909:18249163,38536857:0,0,0 +k1,10909:32583029,38536857:14333866 +g1,10909:32583029,38536857 +) +(1,10909:6630773,39221712:25952256,407923,9908 +h1,10909:6630773,39221712:0,0,0 +g1,10909:7626635,39221712 +g1,10909:7958589,39221712 +g1,10909:11278128,39221712 +g1,10909:11610082,39221712 +g1,10909:14929621,39221712 +k1,10909:14929621,39221712:0 +h1,10909:18249160,39221712:0,0,0 +k1,10909:32583029,39221712:14333869 +g1,10909:32583029,39221712 +) +] +) +g1,10910:32583029,39231620 +g1,10910:6630773,39231620 +g1,10910:6630773,39231620 +g1,10910:32583029,39231620 +g1,10910:32583029,39231620 +) +h1,10910:6630773,39428228:0,0,0 +(1,10914:6630773,40293308:25952256,513147,134348 +h1,10913:6630773,40293308:983040,0,0 +k1,10913:9559839,40293308:162791 +k1,10913:12937172,40293308:162792 +k1,10913:13455823,40293308:162791 +k1,10913:14518424,40293308:162792 +k1,10913:15297253,40293308:162791 +k1,10913:18368533,40293308:162792 +k1,10913:19147362,40293308:162791 +k1,10913:19666014,40293308:162792 +k1,10913:21417398,40293308:162791 +k1,10913:22448542,40293308:162792 +k1,10913:23912878,40293308:162791 +k1,10913:25094755,40293308:162792 +k1,10913:27934036,40293308:162791 +k1,10913:29381334,40293308:162792 +k1,10913:30412477,40293308:162791 +k1,10913:32583029,40293308:0 +) +(1,10914:6630773,41158388:25952256,513147,134348 +k1,10913:8945112,41158388:283378 +k1,10913:10247574,41158388:283377 +k1,10913:12966270,41158388:283378 +k1,10913:15317963,41158388:283377 +k1,10913:16260633,41158388:283378 +k1,10913:17563095,41158388:283377 +k1,10913:20872270,41158388:283378 +k1,10913:21841809,41158388:283377 +k1,10913:23673803,41158388:283378 +k1,10913:24488677,41158388:283377 +k1,10913:26810225,41158388:283378 +k1,10913:27709640,41158388:283377 +k1,10913:29012103,41158388:283378 +k1,10913:30289007,41158388:283378 +k1,10913:31563944,41158388:283377 +k1,10913:32583029,41158388:0 +) +(1,10914:6630773,42023468:25952256,513147,102891 +k1,10913:10284708,42023468:241475 +k1,10913:11185475,42023468:241475 +k1,10913:12446035,42023468:241475 +k1,10913:15886977,42023468:241474 +k1,10913:16756287,42023468:241475 +k1,10913:18201003,42023468:241475 +k1,10913:19983229,42023468:241475 +k1,10913:21093056,42023468:241475 +k1,10913:22438813,42023468:241475 +k1,10913:24115525,42023468:241474 +k1,10913:25376085,42023468:241475 +k1,10913:28313056,42023468:241475 +k1,10913:31966991,42023468:241475 +k1,10913:32583029,42023468:0 +) +(1,10914:6630773,42888548:25952256,513147,126483 +k1,10913:7787128,42888548:137270 +k1,10913:9339321,42888548:137271 +k1,10913:11987931,42888548:137270 +(1,10913:12195025,42888548:0,459977,115847 +r1,10928:12553291,42888548:358266,575824,115847 +k1,10913:12195025,42888548:-358266 +) +(1,10913:12195025,42888548:358266,459977,115847 +k1,10913:12195025,42888548:3277 +h1,10913:12550014,42888548:0,411205,112570 +) +k1,10913:12690561,42888548:137270 +k1,10913:13443870,42888548:137271 +k1,10913:14600225,42888548:137270 +k1,10913:16708164,42888548:137271 +k1,10913:18920959,42888548:137270 +k1,10913:20249674,42888548:137270 +k1,10913:21486639,42888548:137271 +k1,10913:22642994,42888548:137270 +k1,10913:25806061,42888548:137270 +k1,10913:26704860,42888548:137271 +k1,10913:27934615,42888548:137270 +k1,10913:28731178,42888548:137271 +k1,10913:29887533,42888548:137270 +k1,10913:32583029,42888548:0 +) +(1,10914:6630773,43753628:25952256,505283,126483 +g1,10913:7929696,43753628 +g1,10913:10818523,43753628 +(1,10913:11025617,43753628:0,459977,115847 +r1,10928:12087306,43753628:1061689,575824,115847 +k1,10913:11025617,43753628:-1061689 +) +(1,10913:11025617,43753628:1061689,459977,115847 +k1,10913:11025617,43753628:3277 +h1,10913:12084029,43753628:0,411205,112570 +) +g1,10913:12667299,43753628 +g1,10913:13820077,43753628 +g1,10913:16043058,43753628 +g1,10913:16598147,43753628 +g1,10913:19417505,43753628 +g1,10913:21594611,43753628 +g1,10913:23187791,43753628 +g1,10913:27087838,43753628 +k1,10914:32583029,43753628:2367813 +g1,10914:32583029,43753628 +) +v1,10916:6630773,44438483:0,393216,0 +(1,10928:6630773,45437597:25952256,1392330,196608 +g1,10928:6630773,45437597 +g1,10928:6630773,45437597 +g1,10928:6434165,45437597 +(1,10928:6434165,45437597:0,1392330,196608 +r1,10928:32779637,45437597:26345472,1588938,196608 +k1,10928:6434165,45437597:-26345472 +) +(1,10928:6434165,45437597:26345472,1392330,196608 +[1,10928:6630773,45437597:25952256,1195722,0 +(1,10918:6630773,44666314:25952256,424439,79822 +(1,10917:6630773,44666314:0,0,0 +g1,10917:6630773,44666314 +g1,10917:6630773,44666314 +g1,10917:6303093,44666314 +(1,10917:6303093,44666314:0,0,0 +) +g1,10917:6630773,44666314 +) +g1,10918:9286405,44666314 +g1,10918:10282267,44666314 +k1,10918:10282267,44666314:0 +h1,10918:13269853,44666314:0,0,0 +k1,10918:32583029,44666314:19313176 +g1,10918:32583029,44666314 +) +(1,10919:6630773,45351169:25952256,431045,86428 +h1,10919:6630773,45351169:0,0,0 +g1,10919:8290543,45351169 +g1,10919:9286405,45351169 +g1,10919:12937899,45351169 +g1,10919:14597669,45351169 +h1,10919:15925485,45351169:0,0,0 +k1,10919:32583029,45351169:16657544 +g1,10919:32583029,45351169 +) +] +) +g1,10928:32583029,45437597 +g1,10928:6630773,45437597 +g1,10928:6630773,45437597 +g1,10928:32583029,45437597 +g1,10928:32583029,45437597 +) +] +(1,10928:32583029,45706769:0,0,0 +g1,10928:32583029,45706769 +) +) +] +(1,10928:6630773,47279633:25952256,0,0 +h1,10928:6630773,47279633:25952256,0,0 +) +] +(1,10928:4262630,4025873:0,0,0 +[1,10928:-473656,4025873:0,0,0 +(1,10928:-473656,-710413:0,0,0 +(1,10928:-473656,-710413:0,0,0 +g1,10928:-473656,-710413 +) +g1,10928:-473656,-710413 +) +] +) +] +!26443 +}173 +Input:1660:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1661:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1662:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1663:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1664:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1665:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1666:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1667:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!764 +{174 +[1,10994:4262630,47279633:28320399,43253760,0 +(1,10994:4262630,4025873:0,0,0 +[1,10994:-473656,4025873:0,0,0 +(1,10994:-473656,-710413:0,0,0 +(1,10994:-473656,-644877:0,0,0 +k1,10994:-473656,-644877:-65536 ) -(1,11716:-473656,4736287:0,0,0 -k1,11716:-473656,4736287:5209943 +(1,10994:-473656,4736287:0,0,0 +k1,10994:-473656,4736287:5209943 ) -g1,11716:-473656,-710413 +g1,10994:-473656,-710413 ) ] ) -[1,11716:6630773,47279633:25952256,43253760,0 -[1,11716:6630773,4812305:25952256,786432,0 -(1,11716:6630773,4812305:25952256,505283,134348 -(1,11716:6630773,4812305:25952256,505283,134348 -g1,11716:3078558,4812305 -[1,11716:3078558,4812305:0,0,0 -(1,11716:3078558,2439708:0,1703936,0 -k1,11716:1358238,2439708:-1720320 -(1,10825:1358238,2439708:1720320,1703936,0 -(1,10825:1358238,2439708:1179648,16384,0 -r1,11716:2537886,2439708:1179648,16384,0 +[1,10994:6630773,47279633:25952256,43253760,0 +[1,10994:6630773,4812305:25952256,786432,0 +(1,10994:6630773,4812305:25952256,513147,126483 +(1,10994:6630773,4812305:25952256,513147,126483 +g1,10994:3078558,4812305 +[1,10994:3078558,4812305:0,0,0 +(1,10994:3078558,2439708:0,1703936,0 +k1,10994:1358238,2439708:-1720320 +(1,8606:1358238,2439708:1720320,1703936,0 +(1,8606:1358238,2439708:1179648,16384,0 +r1,10994:2537886,2439708:1179648,16384,0 ) -g1,10825:3062174,2439708 -(1,10825:3062174,2439708:16384,1703936,0 -[1,10825:3062174,2439708:25952256,1703936,0 -(1,10825:3062174,1915420:25952256,1179648,0 -(1,10825:3062174,1915420:16384,1179648,0 -r1,11716:3078558,1915420:16384,1179648,0 +g1,8606:3062174,2439708 +(1,8606:3062174,2439708:16384,1703936,0 +[1,8606:3062174,2439708:25952256,1703936,0 +(1,8606:3062174,1915420:25952256,1179648,0 +(1,8606:3062174,1915420:16384,1179648,0 +r1,10994:3078558,1915420:16384,1179648,0 ) -k1,10825:29014430,1915420:25935872 -g1,10825:29014430,1915420 +k1,8606:29014430,1915420:25935872 +g1,8606:29014430,1915420 ) ] ) ) ) ] -[1,11716:3078558,4812305:0,0,0 -(1,11716:3078558,2439708:0,1703936,0 -g1,11716:29030814,2439708 -g1,11716:36135244,2439708 -(1,10825:36135244,2439708:1720320,1703936,0 -(1,10825:36135244,2439708:16384,1703936,0 -[1,10825:36135244,2439708:25952256,1703936,0 -(1,10825:36135244,1915420:25952256,1179648,0 -(1,10825:36135244,1915420:16384,1179648,0 -r1,11716:36151628,1915420:16384,1179648,0 +[1,10994:3078558,4812305:0,0,0 +(1,10994:3078558,2439708:0,1703936,0 +g1,10994:29030814,2439708 +g1,10994:36135244,2439708 +(1,8606:36135244,2439708:1720320,1703936,0 +(1,8606:36135244,2439708:16384,1703936,0 +[1,8606:36135244,2439708:25952256,1703936,0 +(1,8606:36135244,1915420:25952256,1179648,0 +(1,8606:36135244,1915420:16384,1179648,0 +r1,10994:36151628,1915420:16384,1179648,0 ) -k1,10825:62087500,1915420:25935872 -g1,10825:62087500,1915420 +k1,8606:62087500,1915420:25935872 +g1,8606:62087500,1915420 ) ] ) -g1,10825:36675916,2439708 -(1,10825:36675916,2439708:1179648,16384,0 -r1,11716:37855564,2439708:1179648,16384,0 +g1,8606:36675916,2439708 +(1,8606:36675916,2439708:1179648,16384,0 +r1,10994:37855564,2439708:1179648,16384,0 ) ) -k1,11716:3078556,2439708:-34777008 +k1,10994:3078556,2439708:-34777008 ) ] -[1,11716:3078558,4812305:0,0,0 -(1,11716:3078558,49800853:0,16384,2228224 -k1,11716:1358238,49800853:-1720320 -(1,10825:1358238,49800853:1720320,16384,2228224 -(1,10825:1358238,49800853:1179648,16384,0 -r1,11716:2537886,49800853:1179648,16384,0 +[1,10994:3078558,4812305:0,0,0 +(1,10994:3078558,49800853:0,16384,2228224 +k1,10994:1358238,49800853:-1720320 +(1,8606:1358238,49800853:1720320,16384,2228224 +(1,8606:1358238,49800853:1179648,16384,0 +r1,10994:2537886,49800853:1179648,16384,0 ) -g1,10825:3062174,49800853 -(1,10825:3062174,52029077:16384,1703936,0 -[1,10825:3062174,52029077:25952256,1703936,0 -(1,10825:3062174,51504789:25952256,1179648,0 -(1,10825:3062174,51504789:16384,1179648,0 -r1,11716:3078558,51504789:16384,1179648,0 +g1,8606:3062174,49800853 +(1,8606:3062174,52029077:16384,1703936,0 +[1,8606:3062174,52029077:25952256,1703936,0 +(1,8606:3062174,51504789:25952256,1179648,0 +(1,8606:3062174,51504789:16384,1179648,0 +r1,10994:3078558,51504789:16384,1179648,0 ) -k1,10825:29014430,51504789:25935872 -g1,10825:29014430,51504789 +k1,8606:29014430,51504789:25935872 +g1,8606:29014430,51504789 ) ] ) ) ) ] -[1,11716:3078558,4812305:0,0,0 -(1,11716:3078558,49800853:0,16384,2228224 -g1,11716:29030814,49800853 -g1,11716:36135244,49800853 -(1,10825:36135244,49800853:1720320,16384,2228224 -(1,10825:36135244,52029077:16384,1703936,0 -[1,10825:36135244,52029077:25952256,1703936,0 -(1,10825:36135244,51504789:25952256,1179648,0 -(1,10825:36135244,51504789:16384,1179648,0 -r1,11716:36151628,51504789:16384,1179648,0 -) -k1,10825:62087500,51504789:25935872 -g1,10825:62087500,51504789 -) -] -) -g1,10825:36675916,49800853 -(1,10825:36675916,49800853:1179648,16384,0 -r1,11716:37855564,49800853:1179648,16384,0 -) -) -k1,11716:3078556,49800853:-34777008 -) -] -g1,11716:6630773,4812305 -g1,11716:6630773,4812305 -g1,11716:9714897,4812305 -k1,11716:31387653,4812305:21672756 -) -) -] -[1,11716:6630773,45706769:25952256,40108032,0 -(1,11716:6630773,45706769:25952256,40108032,0 -(1,11716:6630773,45706769:0,0,0 -g1,11716:6630773,45706769 -) -[1,11716:6630773,45706769:25952256,40108032,0 -(1,11700:6630773,6254097:25952256,555811,147783 -(1,11700:6630773,6254097:2450326,534184,12975 -g1,11700:6630773,6254097 -g1,11700:9081099,6254097 -) -g1,11700:10960475,6254097 -g1,11700:14533236,6254097 -k1,11700:32583029,6254097:16166092 -g1,11700:32583029,6254097 -) -(1,11703:6630773,7488801:25952256,513147,134348 -k1,11702:8042872,7488801:215412 -k1,11702:12390328,7488801:215411 -k1,11702:13265032,7488801:215412 -k1,11702:16390898,7488801:215412 -k1,11702:17137806,7488801:215411 -k1,11702:19692198,7488801:215412 -k1,11702:20926695,7488801:215412 -k1,11702:22968595,7488801:215412 -k1,11702:23843298,7488801:215411 -k1,11702:25077795,7488801:215412 -k1,11702:27637430,7488801:215412 -k1,11702:29608551,7488801:215411 -k1,11702:31015408,7488801:215412 -k1,11703:32583029,7488801:0 -) -(1,11703:6630773,8330289:25952256,505283,134348 -k1,11702:8935193,8330289:139766 -k1,11702:12153185,8330289:139766 -k1,11702:12908989,8330289:139766 -k1,11702:14067840,8330289:139766 -k1,11702:15789644,8330289:139765 -k1,11702:16378987,8330289:139766 -k1,11702:19426586,8330289:139766 -k1,11702:22697662,8330289:139766 -k1,11702:24812383,8330289:140121 -k1,11702:27886851,8330289:139766 -k1,11702:28484714,8330289:139766 -k1,11702:29155977,8330289:139766 -k1,11702:30494397,8330289:139766 -k1,11703:32583029,8330289:0 -) -(1,11703:6630773,9171777:25952256,513147,134348 -k1,11702:8469117,9171777:148826 -k1,11702:12257812,9171777:148825 -k1,11702:12762498,9171777:148826 -k1,11702:14044441,9171777:148825 -k1,11702:16185561,9171777:148826 -k1,11702:18156942,9171777:148825 -k1,11702:19324853,9171777:148826 -k1,11702:23605723,9171777:148825 -k1,11702:24421705,9171777:148826 -k1,11702:24985323,9171777:148775 -k1,11702:28218272,9171777:148825 -k1,11702:30158852,9171777:148826 -k1,11702:32583029,9171777:0 -) -(1,11703:6630773,10013265:25952256,513147,134348 -k1,11702:7298726,10013265:209856 -k1,11702:8040078,10013265:209855 -k1,11702:11175461,10013265:209856 -k1,11702:12779922,10013265:209855 -k1,11702:13641206,10013265:209856 -k1,11702:16344051,10013265:209855 -k1,11702:18012738,10013265:209856 -k1,11702:19552974,10013265:209855 -k1,11702:22846954,10013265:209856 -k1,11702:25922043,10013265:209855 -k1,11702:27236181,10013265:209856 -k1,11702:28193802,10013265:209855 -k1,11702:29062950,10013265:209856 -k1,11702:30626779,10013265:209855 -k1,11703:32583029,10013265:0 -) -(1,11703:6630773,10854753:25952256,513147,134348 -k1,11702:7895618,10854753:245760 -k1,11702:9740456,10854753:245760 -k1,11702:11177661,10854753:245760 -k1,11702:15102612,10854753:245760 -k1,11702:18213606,10854753:245760 -k1,11702:19551851,10854753:245760 -k1,11702:20153471,10854753:245760 -k1,11702:23324758,10854753:245760 -k1,11702:25056219,10854753:245760 -k1,11702:28233404,10854753:245760 -k1,11702:29138456,10854753:245760 -k1,11702:31635378,10854753:245760 -k1,11702:32583029,10854753:0 -) -(1,11703:6630773,11696241:25952256,513147,134348 -k1,11702:9130382,11696241:239272 -k1,11702:10388739,11696241:239272 -k1,11702:13390353,11696241:239271 -k1,11702:15346013,11696241:239272 -k1,11702:16244577,11696241:239272 -k1,11702:17970861,11696241:239272 -k1,11702:21190710,11696241:239272 -k1,11702:26256052,11696241:239271 -k1,11702:30030991,11696241:239272 -k1,11702:31664214,11696241:239272 -k1,11702:32583029,11696241:0 -) -(1,11703:6630773,12537729:25952256,513147,134348 -k1,11702:9201423,12537729:263127 -k1,11702:10852603,12537729:263127 -k1,11702:13535318,12537729:263126 -k1,11702:15179289,12537729:263127 -k1,11702:17454371,12537729:263127 -k1,11702:22543569,12537729:263127 -k1,11702:23754347,12537729:263127 -k1,11702:27747127,12537729:263126 -k1,11702:30920708,12537729:263127 -k1,11702:31835263,12537729:263127 -k1,11702:32583029,12537729:0 -) -(1,11703:6630773,13379217:25952256,505283,134348 -k1,11702:10298571,13379217:235022 -k1,11702:12515402,13379217:235022 -k1,11702:13401852,13379217:235022 -k1,11702:14555689,13379217:235022 -k1,11702:16178764,13379217:235022 -k1,11702:18659705,13379217:235022 -k1,11702:20592764,13379217:235021 -k1,11702:23738240,13379217:235022 -k1,11702:24964822,13379217:235022 -k1,11702:27517852,13379217:235022 -k1,11702:28380709,13379217:235022 -k1,11702:31281736,13379217:235022 -k1,11702:32168186,13379217:235022 -k1,11703:32583029,13379217:0 -) -(1,11703:6630773,14220705:25952256,513147,134348 -k1,11702:8522360,14220705:221730 -k1,11702:11654544,14220705:221730 -k1,11702:12980557,14220705:221731 -k1,11702:14301981,14220705:221730 -k1,11702:17549508,14220705:221730 -k1,11702:18962683,14220705:221730 -k1,11702:21832723,14220705:221730 -k1,11702:24341004,14220705:221730 -k1,11702:25178773,14220705:221731 -k1,11702:26027682,14220705:221730 -k1,11702:27706277,14220705:221730 -k1,11702:31142548,14220705:221730 -k1,11703:32583029,14220705:0 -) -(1,11703:6630773,15062193:25952256,513147,134348 -k1,11702:9199683,15062193:230586 -k1,11702:10715430,15062193:230586 -k1,11702:12018184,15062193:230585 -k1,11702:13940910,15062193:230586 -k1,11702:15600836,15062193:230586 -k1,11702:16490714,15062193:230586 -k1,11702:18663131,15062193:230585 -k1,11702:19425214,15062193:230586 -k1,11702:22127818,15062193:230586 -k1,11702:23044566,15062193:230586 -k1,11702:25970647,15062193:230585 -k1,11702:27300927,15062193:230586 -k1,11702:31391584,15062193:230586 -k1,11702:32583029,15062193:0 -) -(1,11703:6630773,15903681:25952256,505283,134348 -k1,11702:8587568,15903681:186668 -k1,11702:11796102,15903681:186669 -k1,11702:14354518,15903681:186668 -k1,11702:15350556,15903681:186668 -k1,11702:16556310,15903681:186669 -k1,11702:21095224,15903681:186668 -k1,11702:24297859,15903681:186668 -k1,11702:25675973,15903681:186669 -k1,11702:26478679,15903681:186668 -k1,11702:28417124,15903681:186668 -k1,11702:30301175,15903681:186669 -k1,11702:31773659,15903681:186668 -k1,11702:32583029,15903681:0 -) -(1,11703:6630773,16745169:25952256,505283,134348 -k1,11702:7805938,16745169:156080 -k1,11702:10772857,16745169:156080 -k1,11702:12615834,16745169:156080 -k1,11702:13813935,16745169:156079 -k1,11702:15426880,16745169:156080 -k1,11702:16602045,16745169:156080 -k1,11702:18681606,16745169:156080 -k1,11702:19252486,16745169:156037 -k1,11702:21988718,16745169:156080 -k1,11702:24190831,16745169:156079 -k1,11702:25365996,16745169:156080 -k1,11702:28106816,16745169:156080 -k1,11702:31188423,16745169:156080 -k1,11702:32583029,16745169:0 -) -(1,11703:6630773,17586657:25952256,513147,134348 -k1,11702:11052369,17586657:220738 -k1,11702:13247836,17586657:220867 -k1,11702:14096410,17586657:220739 -k1,11702:15336233,17586657:220738 -k1,11702:16924052,17586657:220738 -k1,11702:17811946,17586657:220738 -k1,11702:20371008,17586657:220738 -k1,11702:21006568,17586657:220717 -k1,11702:23807458,17586657:220738 -k1,11702:27346284,17586657:220739 -k1,11702:29613056,17586657:220738 -k1,11702:31923737,17586657:220738 -k1,11703:32583029,17586657:0 -) -(1,11703:6630773,18428145:25952256,513147,134348 -k1,11702:9036045,18428145:240618 -k1,11702:12061288,18428145:240618 -k1,11702:13493351,18428145:240618 -k1,11702:16687020,18428145:240617 -k1,11702:17586930,18428145:240618 -k1,11702:19216911,18428145:240618 -k1,11702:21025806,18428145:240618 -k1,11702:22457869,18428145:240618 -k1,11702:23156584,18428145:240618 -k1,11702:23928698,18428145:240617 -k1,11702:25447923,18428145:240618 -k1,11702:28983036,18428145:240618 -k1,11702:29985182,18428145:240618 -k1,11702:32583029,18428145:0 -) -(1,11703:6630773,19269633:25952256,513147,134348 -k1,11702:7458370,19269633:199762 -k1,11702:8677217,19269633:199762 -k1,11702:10244060,19269633:199762 -k1,11702:11110978,19269633:199762 -k1,11702:12577551,19269633:199762 -k1,11702:13645665,19269633:199762 -k1,11702:14949709,19269633:199762 -k1,11702:16241956,19269633:199762 -k1,11702:19021870,19269633:199762 -k1,11702:21250626,19269633:199762 -k1,11702:23951242,19269633:199762 -k1,11702:25193026,19269633:199762 -k1,11702:25846297,19269633:199762 -k1,11702:27237504,19269633:199762 -k1,11702:30651807,19269633:199762 -k1,11702:31266411,19269633:199761 -k1,11703:32583029,19269633:0 -) -(1,11703:6630773,20111121:25952256,513147,134348 -k1,11702:8441230,20111121:153707 -k1,11702:9614022,20111121:153707 -k1,11702:13843413,20111121:153707 -k1,11702:16469138,20111121:153707 -k1,11702:17695014,20111121:153707 -k1,11702:18867806,20111121:153707 -k1,11702:21831697,20111121:153707 -k1,11702:23845971,20111121:153707 -k1,11702:25691818,20111121:153707 -k1,11702:26622127,20111121:153707 -k1,11702:27918782,20111121:153707 -k1,11702:30211584,20111121:153707 -k1,11702:30981329,20111121:153707 -k1,11702:32583029,20111121:0 -) -(1,11703:6630773,20952609:25952256,355205,7863 -k1,11703:32583030,20952609:24081204 -g1,11703:32583030,20952609 -) -(1,11705:6630773,21794097:25952256,505283,134348 -h1,11704:6630773,21794097:983040,0,0 -k1,11704:9321845,21794097:217743 -k1,11704:11829417,21794097:217744 -k1,11704:14888146,21794097:217743 -k1,11704:15867417,21794097:217743 -k1,11704:16441020,21794097:217743 -k1,11704:19238916,21794097:217744 -k1,11704:20741165,21794097:217743 -k1,11704:22059913,21794097:217743 -k1,11704:23787606,21794097:217743 -k1,11704:26747376,21794097:217744 -k1,11704:27956679,21794097:217743 -k1,11704:30217179,21794097:217743 -k1,11704:32583029,21794097:0 -) -(1,11705:6630773,22635585:25952256,505283,134348 -k1,11704:7681433,22635585:262262 -k1,11704:9274075,22635585:262261 -k1,11704:13235844,22635585:262262 -k1,11704:16024518,22635585:262261 -k1,11704:17478225,22635585:262262 -k1,11704:20704679,22635585:262261 -k1,11704:21322801,22635585:262262 -k1,11704:24165214,22635585:262261 -k1,11704:25821427,22635585:262262 -(1,11704:25821427,22635585:0,452978,115847 -r1,11716:28993387,22635585:3171960,568825,115847 -k1,11704:25821427,22635585:-3171960 -) -(1,11704:25821427,22635585:3171960,452978,115847 -k1,11704:25821427,22635585:3277 -h1,11704:28990110,22635585:0,411205,112570 -) -k1,11704:29255648,22635585:262261 -k1,11704:31563944,22635585:262262 -k1,11704:32583029,22635585:0 -) -(1,11705:6630773,23477073:25952256,505283,134348 -k1,11704:9687551,23477073:215792 -k1,11704:12193171,23477073:215792 -k1,11704:15366603,23477073:215792 -k1,11704:18678316,23477073:215792 -k1,11704:19249968,23477073:215792 -k1,11704:22045913,23477073:215793 -k1,11704:23789349,23477073:215792 -k1,11704:25024226,23477073:215792 -k1,11704:27529846,23477073:215792 -k1,11704:30586624,23477073:215792 -k1,11704:31563944,23477073:215792 -k1,11704:32583029,23477073:0 -) -(1,11705:6630773,24318561:25952256,505283,134348 -k1,11704:9442670,24318561:231745 -k1,11704:10325843,24318561:231745 -k1,11704:11576674,24318561:231746 -k1,11704:13878701,24318561:231745 -k1,11704:15558792,24318561:231745 -k1,11704:16515365,24318561:231745 -k1,11704:18031617,24318561:231746 -k1,11704:19643550,24318561:231745 -k1,11704:20979577,24318561:231745 -k1,11704:21959088,24318561:231745 -k1,11704:24989877,24318561:231746 -k1,11704:27681844,24318561:231745 -k1,11704:31563944,24318561:231745 -k1,11704:32583029,24318561:0 -) -(1,11705:6630773,25160049:25952256,513147,134348 -k1,11704:8532930,25160049:164142 -k1,11704:9356365,25160049:164143 -k1,11704:10539592,25160049:164142 -k1,11704:14403241,25160049:164142 -k1,11704:16112723,25160049:164143 -k1,11704:19187319,25160049:164142 -k1,11704:20166729,25160049:164142 -k1,11704:21397142,25160049:164142 -k1,11704:23634189,25160049:164143 -k1,11704:24564447,25160049:164142 -k1,11704:25747674,25160049:164142 -k1,11704:28937614,25160049:164143 -k1,11704:30293201,25160049:164142 -k1,11704:32583029,25160049:0 -) -(1,11705:6630773,26001537:25952256,513147,126483 -k1,11704:9308876,26001537:296525 -k1,11704:10221439,26001537:296525 -k1,11704:12026604,26001537:296526 -k1,11704:13992986,26001537:296525 -k1,11704:15981651,26001537:296525 -k1,11704:17269736,26001537:296525 -k1,11704:18983806,26001537:296526 -k1,11704:21938471,26001537:296525 -k1,11704:22851034,26001537:296525 -k1,11704:24749259,26001537:296525 -k1,11704:26743167,26001537:296526 -k1,11704:29569382,26001537:296525 -k1,11704:31246095,26001537:296525 -k1,11704:32583029,26001537:0 -) -(1,11705:6630773,26843025:25952256,513147,134348 -k1,11704:9137287,26843025:265838 -k1,11704:10086009,26843025:265837 -k1,11704:11099613,26843025:265838 -k1,11704:14140901,26843025:265838 -k1,11704:15022776,26843025:265837 -k1,11704:17275666,26843025:265838 -k1,11704:20379212,26843025:265837 -k1,11704:23179983,26843025:265838 -k1,11704:27301959,26843025:265838 -k1,11704:28672078,26843025:265837 -k1,11704:29685682,26843025:265838 -k1,11704:32583029,26843025:0 -) -(1,11705:6630773,27684513:25952256,513147,134348 -k1,11704:8072365,27684513:250147 -k1,11704:9608329,27684513:250148 -k1,11704:12832500,27684513:250147 -k1,11704:14476598,27684513:250147 -k1,11704:17422241,27684513:250147 -(1,11704:17422241,27684513:0,452978,115847 -r1,11716:20242490,27684513:2820249,568825,115847 -k1,11704:17422241,27684513:-2820249 -) -(1,11704:17422241,27684513:2820249,452978,115847 -k1,11704:17422241,27684513:3277 -h1,11704:20239213,27684513:0,411205,112570 -) -k1,11704:20492638,27684513:250148 -k1,11704:22478178,27684513:250147 -k1,11704:23084185,27684513:250147 -k1,11704:25683142,27684513:250147 -k1,11704:28695633,27684513:250148 -k1,11704:31635378,27684513:250147 -k1,11704:32583029,27684513:0 -) -(1,11705:6630773,28526001:25952256,513147,134348 -k1,11704:7909431,28526001:259573 -k1,11704:11241332,28526001:259573 -k1,11704:13068525,28526001:259572 -k1,11704:14612604,28526001:259573 -k1,11704:16757648,28526001:259573 -k1,11704:17885573,28526001:259573 -k1,11704:21235168,28526001:259572 -k1,11704:22442392,28526001:259573 -k1,11704:24091328,28526001:259573 -k1,11704:26557498,28526001:259573 -k1,11704:27433109,28526001:259573 -k1,11704:29971368,28526001:259572 -h1,11704:31514086,28526001:0,0,0 -k1,11704:31773659,28526001:259573 -k1,11704:32583029,28526001:0 -) -(1,11705:6630773,29367489:25952256,477757,134348 -g1,11704:8328155,29367489 -h1,11704:9523532,29367489:0,0,0 -k1,11705:32583030,29367489:22885828 -g1,11705:32583030,29367489 -) -(1,11707:6630773,30208977:25952256,513147,134348 -h1,11706:6630773,30208977:983040,0,0 -k1,11706:8674571,30208977:158327 -k1,11706:12059892,30208977:158328 -k1,11706:15427517,30208977:158327 -k1,11706:17247837,30208977:158327 -k1,11706:18057593,30208977:158328 -k1,11706:21475025,30208977:158327 -k1,11706:22164849,30208977:158327 -k1,11706:23607682,30208977:158327 -k1,11706:24180812,30208977:158287 -k1,11706:27249593,30208977:158327 -k1,11706:29368758,30208977:158328 -k1,11706:30293201,30208977:158327 -k1,11706:32583029,30208977:0 -) -(1,11707:6630773,31050465:25952256,513147,134348 -k1,11706:8907645,31050465:266883 -k1,11706:9530388,31050465:266883 -k1,11706:13311310,31050465:266882 -k1,11706:14972144,31050465:266883 -k1,11706:16258112,31050465:266883 -k1,11706:18178468,31050465:266883 -k1,11706:20183365,31050465:266882 -k1,11706:21136410,31050465:266883 -k1,11706:22422378,31050465:266883 -k1,11706:25269413,31050465:266883 -k1,11706:27315597,31050465:266882 -k1,11706:28963324,31050465:266883 -k1,11706:31298523,31050465:266883 -k1,11706:32583029,31050465:0 -) -(1,11707:6630773,31891953:25952256,513147,134348 -k1,11706:8605794,31891953:276983 -k1,11706:9751130,31891953:276984 -k1,11706:11756297,31891953:276983 -k1,11706:12389140,31891953:276983 -k1,11706:14404139,31891953:276984 -k1,11706:17062700,31891953:276983 -k1,11706:17955722,31891953:276984 -k1,11706:18588565,31891953:276983 -k1,11706:21619371,31891953:276983 -k1,11706:22684753,31891953:276984 -k1,11706:26043894,31891953:276983 -k1,11706:26936915,31891953:276983 -k1,11706:28232984,31891953:276984 -k1,11706:31090119,31891953:276983 -k1,11706:32583029,31891953:0 -) -(1,11707:6630773,32733441:25952256,505283,134348 -k1,11706:7932373,32733441:235329 -k1,11706:9146154,32733441:235328 -k1,11706:13229102,32733441:235329 -k1,11706:14536599,32733441:235328 -k1,11706:17272782,32733441:235329 -k1,11706:18883712,32733441:235329 -k1,11706:21338744,32733441:235328 -k1,11706:22765518,32733441:235329 -k1,11706:24199500,32733441:235328 -k1,11706:27619879,32733441:235329 -k1,11706:29590600,32733441:235328 -k1,11706:30845014,32733441:235329 -k1,11706:32583029,32733441:0 -) -(1,11707:6630773,33574929:25952256,513147,134348 -g1,11706:9600864,33574929 -g1,11706:10561621,33574929 -g1,11706:14411205,33574929 -g1,11706:15629519,33574929 -g1,11706:17566763,33574929 -g1,11706:18425284,33574929 -g1,11706:19643598,33574929 -g1,11706:22422979,33574929 -g1,11706:25375375,33574929 -g1,11706:26336132,33574929 -g1,11706:27707800,33574929 -k1,11707:32583029,33574929:2628655 -g1,11707:32583029,33574929 -) -(1,11709:6630773,34416417:25952256,513147,134348 -h1,11708:6630773,34416417:983040,0,0 -k1,11708:8332289,34416417:240719 -k1,11708:9745447,34416417:240719 -k1,11708:12896619,34416417:240718 -k1,11708:15098175,34416417:240719 -k1,11708:17628722,34416417:240719 -k1,11708:19263392,34416417:240719 -k1,11708:20523195,34416417:240718 -k1,11708:22417387,34416417:240719 -k1,11708:24569791,34416417:240719 -k1,11708:26244438,34416417:240719 -k1,11708:28370627,34416417:240718 -k1,11708:29768056,34416417:240719 -k1,11708:30540272,34416417:240719 -k1,11708:32583029,34416417:0 -) -(1,11709:6630773,35257905:25952256,513147,134348 -k1,11708:9591962,35257905:259140 -k1,11708:10660472,35257905:259140 -k1,11708:11938698,35257905:259141 -k1,11708:13937164,35257905:259140 -k1,11708:14812342,35257905:259140 -k1,11708:16956953,35257905:259140 -k1,11708:18235178,35257905:259140 -k1,11708:21404772,35257905:259140 -k1,11708:23167964,35257905:259141 -k1,11708:26342801,35257905:259140 -k1,11708:27430971,35257905:259140 -k1,11708:29419606,35257905:259140 -k1,11708:32583029,35257905:0 -) -(1,11709:6630773,36099393:25952256,513147,134348 -k1,11708:7524028,36099393:277217 -k1,11708:9294812,36099393:277218 -k1,11708:11443082,36099393:277217 -k1,11708:12336337,36099393:277217 -k1,11708:14774931,36099393:277217 -k1,11708:15510246,36099393:277218 -k1,11708:16318960,36099393:277217 -k1,11708:17931145,36099393:277217 -k1,11708:18859790,36099393:277217 -k1,11708:20229493,36099393:277218 -k1,11708:21525795,36099393:277217 -k1,11708:24583049,36099393:277217 -k1,11708:26928582,36099393:277217 -k1,11708:28153451,36099393:277218 -k1,11708:30520611,36099393:277217 -k1,11708:31563944,36099393:277217 -k1,11708:32583029,36099393:0 -) -(1,11709:6630773,36940881:25952256,513147,134348 -k1,11708:9140334,36940881:219733 -k1,11708:11741645,36940881:219733 -k1,11708:13355329,36940881:219733 -k1,11708:14594146,36940881:219732 -k1,11708:16467352,36940881:219733 -k1,11708:18425100,36940881:219733 -k1,11708:19260871,36940881:219733 -k1,11708:20499689,36940881:219733 -k1,11708:21891861,36940881:219733 -k1,11708:24865417,36940881:219733 -k1,11708:25768034,36940881:219732 -k1,11708:28951960,36940881:219733 -k1,11708:30547294,36940881:219733 -k1,11708:31923737,36940881:219733 -k1,11708:32583029,36940881:0 -) -(1,11709:6630773,37782369:25952256,513147,134348 -k1,11708:7873033,37782369:223175 -k1,11708:11006662,37782369:223175 -k1,11708:12421282,37782369:223175 -k1,11708:14379851,37782369:223176 -k1,11708:17383063,37782369:223175 -k1,11708:19674554,37782369:223175 -k1,11708:20845380,37782369:223175 -k1,11708:21834671,37782369:223175 -k1,11708:23076931,37782369:223175 -k1,11708:25589935,37782369:223176 -k1,11708:28654096,37782369:223175 -k1,11708:29638799,37782369:223175 -k1,11708:30881059,37782369:223175 -k1,11708:32583029,37782369:0 -) -(1,11709:6630773,38623857:25952256,505283,134348 -k1,11709:32583028,38623857:23198432 -g1,11709:32583028,38623857 -) -v1,11711:6630773,39952886:0,393216,0 -(1,11712:6630773,43006801:25952256,3447131,0 -g1,11712:6630773,43006801 -g1,11712:6303093,43006801 -r1,11716:6401397,43006801:98304,3447131,0 -g1,11712:6600626,43006801 -g1,11712:6797234,43006801 -[1,11712:6797234,43006801:25785795,3447131,0 -(1,11712:6797234,40347989:25785795,788319,218313 -(1,11711:6797234,40347989:0,788319,218313 -r1,11716:7917113,40347989:1119879,1006632,218313 -k1,11711:6797234,40347989:-1119879 -) -(1,11711:6797234,40347989:1119879,788319,218313 -) -k1,11711:8152090,40347989:234977 -k1,11711:8479770,40347989:327680 -k1,11711:9192505,40347989:234978 -k1,11711:10584192,40347989:234977 -k1,11711:12241956,40347989:234977 -k1,11711:12832793,40347989:234977 -k1,11711:15847808,40347989:234978 -k1,11711:17820800,40347989:234977 -k1,11711:19003428,40347989:234977 -k1,11711:20009108,40347989:234977 -k1,11711:22203612,40347989:234978 -k1,11711:23510758,40347989:234977 -k1,11711:25238645,40347989:234977 -k1,11711:26539893,40347989:234977 -k1,11711:28748815,40347989:234978 -k1,11711:30002877,40347989:234977 -k1,11711:32583029,40347989:0 -) -(1,11712:6797234,41189477:25785795,513147,134348 -k1,11711:8353317,41189477:162132 -k1,11711:8871310,41189477:162133 -k1,11711:10133136,41189477:162132 -k1,11711:10946697,41189477:162133 -(1,11711:10946697,41189477:0,452978,115847 -r1,11716:13415234,41189477:2468537,568825,115847 -k1,11711:10946697,41189477:-2468537 -) -(1,11711:10946697,41189477:2468537,452978,115847 -k1,11711:10946697,41189477:3277 -h1,11711:13411957,41189477:0,411205,112570 -) -k1,11711:13751036,41189477:162132 -k1,11711:14932254,41189477:162133 -k1,11711:17674538,41189477:162132 -k1,11711:18368168,41189477:162133 -k1,11711:19905901,41189477:162132 -k1,11711:22386042,41189477:162133 -k1,11711:23176009,41189477:162132 -k1,11711:25040112,41189477:162133 -k1,11711:27330853,41189477:162132 -k1,11711:28512071,41189477:162133 -k1,11711:30742519,41189477:162132 -k1,11711:31563944,41189477:162133 -k1,11711:32583029,41189477:0 -) -(1,11712:6797234,42030965:25785795,513147,134348 -k1,11711:9294530,42030965:207468 -k1,11711:10493558,42030965:207468 -k1,11711:11767298,42030965:207469 -k1,11711:13940191,42030965:207468 -k1,11711:14799087,42030965:207468 -k1,11711:16025640,42030965:207468 -k1,11711:18303390,42030965:207468 -k1,11711:20121734,42030965:207469 -k1,11711:21401371,42030965:207468 -k1,11711:22627924,42030965:207468 -k1,11711:24331579,42030965:207468 -k1,11711:27142793,42030965:207469 -k1,11711:28989316,42030965:207468 -k1,11711:29728281,42030965:207468 -k1,11711:32583029,42030965:0 -) -(1,11712:6797234,42872453:25785795,513147,134348 -g1,11711:8187908,42872453 -g1,11711:11171106,42872453 -g1,11711:13105728,42872453 -g1,11711:16084994,42872453 -k1,11712:32583029,42872453:14256048 -g1,11712:32583029,42872453 -) -] -g1,11712:32583029,43006801 -) -h1,11712:6630773,43006801:0,0,0 -v1,11715:6630773,44335830:0,393216,0 -(1,11716:6630773,45706769:25952256,1764155,0 -g1,11716:6630773,45706769 -g1,11716:6303093,45706769 -r1,11716:6401397,45706769:98304,1764155,0 -g1,11716:6600626,45706769 -g1,11716:6797234,45706769 -[1,11716:6797234,45706769:25785795,1764155,0 -(1,11716:6797234,44730933:25785795,788319,218313 -(1,11715:6797234,44730933:0,788319,218313 -r1,11716:7917113,44730933:1119879,1006632,218313 -k1,11715:6797234,44730933:-1119879 -) -(1,11715:6797234,44730933:1119879,788319,218313 -) -k1,11715:8184767,44730933:267654 -k1,11715:8512447,44730933:327680 -k1,11715:10497145,44730933:267655 -k1,11715:13790596,44730933:267654 -k1,11715:15342756,44730933:267654 -k1,11715:16601970,44730933:267654 -k1,11715:18191486,44730933:267655 -k1,11715:19126296,44730933:267654 -k1,11715:19808725,44730933:267586 -k1,11715:21067939,44730933:267654 -k1,11715:24179856,44730933:267654 -k1,11715:25714976,44730933:267654 -k1,11715:28893085,44730933:267655 -k1,11715:31821501,44730933:267654 -k1,11715:32583029,44730933:0 -) -(1,11716:6797234,45572421:25785795,513147,134348 -k1,11715:9952971,45572421:270187 -k1,11715:12263293,45572421:270187 -k1,11715:15713286,45572421:270187 -k1,11715:17268634,45572421:270187 -k1,11715:18730266,45572421:270187 -k1,11715:20104736,45572421:270188 -k1,11715:21122689,45572421:270187 -k1,11715:23260652,45572421:270187 -k1,11715:25228877,45572421:270187 -k1,11715:27797412,45572421:270187 -k1,11715:29802992,45572421:270187 -k1,11715:32583029,45572421:0 -) -] -g1,11716:32583029,45706769 -) -] -(1,11716:32583029,45706769:0,0,0 -g1,11716:32583029,45706769 -) -) -] -(1,11716:6630773,47279633:25952256,0,0 -h1,11716:6630773,47279633:25952256,0,0 -) -] -(1,11716:4262630,4025873:0,0,0 -[1,11716:-473656,4025873:0,0,0 -(1,11716:-473656,-710413:0,0,0 -(1,11716:-473656,-710413:0,0,0 -g1,11716:-473656,-710413 -) -g1,11716:-473656,-710413 -) -] -) -] -!26683 -}198 -Input:1710:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1711:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!200 -{199 -[1,11821:4262630,47279633:28320399,43253760,0 -(1,11821:4262630,4025873:0,0,0 -[1,11821:-473656,4025873:0,0,0 -(1,11821:-473656,-710413:0,0,0 -(1,11821:-473656,-644877:0,0,0 -k1,11821:-473656,-644877:-65536 +[1,10994:3078558,4812305:0,0,0 +(1,10994:3078558,49800853:0,16384,2228224 +g1,10994:29030814,49800853 +g1,10994:36135244,49800853 +(1,8606:36135244,49800853:1720320,16384,2228224 +(1,8606:36135244,52029077:16384,1703936,0 +[1,8606:36135244,52029077:25952256,1703936,0 +(1,8606:36135244,51504789:25952256,1179648,0 +(1,8606:36135244,51504789:16384,1179648,0 +r1,10994:36151628,51504789:16384,1179648,0 +) +k1,8606:62087500,51504789:25935872 +g1,8606:62087500,51504789 +) +] +) +g1,8606:36675916,49800853 +(1,8606:36675916,49800853:1179648,16384,0 +r1,10994:37855564,49800853:1179648,16384,0 +) +) +k1,10994:3078556,49800853:-34777008 ) -(1,11821:-473656,4736287:0,0,0 -k1,11821:-473656,4736287:5209943 +] +g1,10994:6630773,4812305 +g1,10994:6630773,4812305 +g1,10994:8017514,4812305 +g1,10994:10787065,4812305 +g1,10994:12580785,4812305 +g1,10994:13396052,4812305 +g1,10994:15205501,4812305 +k1,10994:31387652,4812305:16182151 +) +) +] +[1,10994:6630773,45706769:25952256,40108032,0 +(1,10994:6630773,45706769:25952256,40108032,0 +(1,10994:6630773,45706769:0,0,0 +g1,10994:6630773,45706769 +) +[1,10994:6630773,45706769:25952256,40108032,0 +v1,10928:6630773,6254097:0,393216,0 +(1,10928:6630773,9438848:25952256,3577967,196608 +g1,10928:6630773,9438848 +g1,10928:6630773,9438848 +g1,10928:6434165,9438848 +(1,10928:6434165,9438848:0,3577967,196608 +r1,10994:32779637,9438848:26345472,3774575,196608 +k1,10928:6434165,9438848:-26345472 +) +(1,10928:6434165,9438848:26345472,3577967,196608 +[1,10928:6630773,9438848:25952256,3381359,0 +(1,10920:6630773,6488534:25952256,431045,79822 +h1,10920:6630773,6488534:0,0,0 +g1,10920:7958589,6488534 +g1,10920:8954451,6488534 +g1,10920:9950313,6488534 +g1,10920:11942037,6488534 +h1,10920:12273991,6488534:0,0,0 +k1,10920:32583029,6488534:20309038 +g1,10920:32583029,6488534 +) +(1,10921:6630773,7173389:25952256,431045,86428 +h1,10921:6630773,7173389:0,0,0 +g1,10921:6962727,7173389 +g1,10921:7294681,7173389 +g1,10921:7626635,7173389 +g1,10921:10282267,7173389 +g1,10921:11278129,7173389 +g1,10921:14929622,7173389 +k1,10921:14929622,7173389:0 +h1,10921:16589392,7173389:0,0,0 +k1,10921:32583029,7173389:15993637 +g1,10921:32583029,7173389 +) +(1,10922:6630773,7858244:25952256,424439,79822 +h1,10922:6630773,7858244:0,0,0 +g1,10922:6962727,7858244 +g1,10922:7294681,7858244 +g1,10922:7626635,7858244 +h1,10922:7958589,7858244:0,0,0 +k1,10922:32583029,7858244:24624440 +g1,10922:32583029,7858244 +) +(1,10923:6630773,8543099:25952256,424439,6605 +h1,10923:6630773,8543099:0,0,0 +h1,10923:8954451,8543099:0,0,0 +k1,10923:32583029,8543099:23628578 +g1,10923:32583029,8543099 +) +(1,10927:6630773,9359026:25952256,424439,79822 +(1,10925:6630773,9359026:0,0,0 +g1,10925:6630773,9359026 +g1,10925:6630773,9359026 +g1,10925:6303093,9359026 +(1,10925:6303093,9359026:0,0,0 +) +g1,10925:6630773,9359026 +) +g1,10927:7626635,9359026 +g1,10927:8954451,9359026 +g1,10927:9286405,9359026 +g1,10927:12605944,9359026 +g1,10927:12937898,9359026 +g1,10927:16257437,9359026 +k1,10927:16257437,9359026:0 +h1,10927:19576976,9359026:0,0,0 +k1,10927:32583029,9359026:13006053 +g1,10927:32583029,9359026 +) +] +) +g1,10928:32583029,9438848 +g1,10928:6630773,9438848 +g1,10928:6630773,9438848 +g1,10928:32583029,9438848 +g1,10928:32583029,9438848 +) +h1,10928:6630773,9635456:0,0,0 +(1,10932:6630773,10500536:25952256,513147,134348 +h1,10931:6630773,10500536:983040,0,0 +k1,10931:8786908,10500536:219546 +k1,10931:10110735,10500536:219545 +k1,10931:11422766,10500536:219546 +k1,10931:11998171,10500536:219545 +k1,10931:14376473,10500536:219546 +k1,10931:15589544,10500536:219545 +k1,10931:16468382,10500536:219546 +k1,10931:19713724,10500536:219545 +k1,10931:20584698,10500536:219546 +k1,10931:22150353,10500536:219545 +k1,10931:23459763,10500536:219546 +k1,10931:25967170,10500536:219545 +k1,10931:26846008,10500536:219546 +k1,10931:28084638,10500536:219545 +k1,10931:30685107,10500536:219546 +k1,10931:31563944,10500536:219545 +k1,10931:32583029,10500536:0 +) +(1,10932:6630773,11365616:25952256,505283,134348 +k1,10931:9226177,11365616:248560 +k1,10931:10428286,11365616:248560 +k1,10931:12700598,11365616:248560 +k1,10931:13305018,11365616:248560 +k1,10931:16173707,11365616:248560 +k1,10931:18400145,11365616:248561 +k1,10931:20042656,11365616:248560 +k1,10931:22449972,11365616:248560 +k1,10931:25652240,11365616:248560 +k1,10931:27294751,11365616:248560 +k1,10931:29611627,11365616:248560 +k1,10931:32583029,11365616:0 +) +(1,10932:6630773,12230696:25952256,505283,134348 +g1,10931:7849087,12230696 +g1,10931:10116632,12230696 +g1,10931:12010622,12230696 +g1,10931:12861279,12230696 +g1,10931:14079593,12230696 +g1,10931:15272348,12230696 +k1,10932:32583029,12230696:14183303 +g1,10932:32583029,12230696 +) +v1,10934:6630773,12915551:0,393216,0 +(1,10947:6630773,18078347:25952256,5556012,196608 +g1,10947:6630773,18078347 +g1,10947:6630773,18078347 +g1,10947:6434165,18078347 +(1,10947:6434165,18078347:0,5556012,196608 +r1,10994:32779637,18078347:26345472,5752620,196608 +k1,10947:6434165,18078347:-26345472 +) +(1,10947:6434165,18078347:26345472,5556012,196608 +[1,10947:6630773,18078347:25952256,5359404,0 +(1,10936:6630773,13143382:25952256,424439,79822 +(1,10935:6630773,13143382:0,0,0 +g1,10935:6630773,13143382 +g1,10935:6630773,13143382 +g1,10935:6303093,13143382 +(1,10935:6303093,13143382:0,0,0 +) +g1,10935:6630773,13143382 +) +g1,10936:9286405,13143382 +g1,10936:10282267,13143382 +k1,10936:10282267,13143382:0 +h1,10936:13269853,13143382:0,0,0 +k1,10936:32583029,13143382:19313176 +g1,10936:32583029,13143382 +) +(1,10937:6630773,13828237:25952256,431045,112852 +h1,10937:6630773,13828237:0,0,0 +g1,10937:8290543,13828237 +g1,10937:9286405,13828237 +g1,10937:13601807,13828237 +g1,10937:14265715,13828237 +g1,10937:16257439,13828237 +g1,10937:18913071,13828237 +g1,10937:19576979,13828237 +g1,10937:21236749,13828237 +g1,10937:23892381,13828237 +g1,10937:24556289,13828237 +h1,10937:25884105,13828237:0,0,0 +k1,10937:32583029,13828237:6698924 +g1,10937:32583029,13828237 +) +(1,10938:6630773,14513092:25952256,431045,79822 +h1,10938:6630773,14513092:0,0,0 +g1,10938:7958589,14513092 +g1,10938:8954451,14513092 +g1,10938:9950313,14513092 +g1,10938:14265715,14513092 +h1,10938:14597669,14513092:0,0,0 +k1,10938:32583029,14513092:17985360 +g1,10938:32583029,14513092 +) +(1,10939:6630773,15197947:25952256,431045,79822 +h1,10939:6630773,15197947:0,0,0 +g1,10939:6962727,15197947 +g1,10939:7294681,15197947 +g1,10939:7626635,15197947 +g1,10939:11942036,15197947 +g1,10939:12937898,15197947 +h1,10939:16921345,15197947:0,0,0 +k1,10939:32583029,15197947:15661684 +g1,10939:32583029,15197947 +) +(1,10940:6630773,15882802:25952256,424439,79822 +h1,10940:6630773,15882802:0,0,0 +g1,10940:6962727,15882802 +g1,10940:7294681,15882802 +g1,10940:7626635,15882802 +h1,10940:7958589,15882802:0,0,0 +k1,10940:32583029,15882802:24624440 +g1,10940:32583029,15882802 +) +(1,10941:6630773,16567657:25952256,424439,6605 +h1,10941:6630773,16567657:0,0,0 +h1,10941:8954451,16567657:0,0,0 +k1,10941:32583029,16567657:23628578 +g1,10941:32583029,16567657 +) +(1,10946:6630773,17383584:25952256,424439,112852 +(1,10943:6630773,17383584:0,0,0 +g1,10943:6630773,17383584 +g1,10943:6630773,17383584 +g1,10943:6303093,17383584 +(1,10943:6303093,17383584:0,0,0 +) +g1,10943:6630773,17383584 +) +g1,10946:7626635,17383584 +g1,10946:7958589,17383584 +g1,10946:8290543,17383584 +g1,10946:8622497,17383584 +g1,10946:11278129,17383584 +g1,10946:11610083,17383584 +g1,10946:11942037,17383584 +g1,10946:12273991,17383584 +g1,10946:14929623,17383584 +g1,10946:15261577,17383584 +g1,10946:15593531,17383584 +g1,10946:15925485,17383584 +h1,10946:18249163,17383584:0,0,0 +k1,10946:32583029,17383584:14333866 +g1,10946:32583029,17383584 +) +(1,10946:6630773,18068439:25952256,407923,9908 +h1,10946:6630773,18068439:0,0,0 +g1,10946:7626635,18068439 +g1,10946:7958589,18068439 +g1,10946:11278128,18068439 +g1,10946:11610082,18068439 +g1,10946:14929621,18068439 +k1,10946:14929621,18068439:0 +h1,10946:18249160,18068439:0,0,0 +k1,10946:32583029,18068439:14333869 +g1,10946:32583029,18068439 +) +] +) +g1,10947:32583029,18078347 +g1,10947:6630773,18078347 +g1,10947:6630773,18078347 +g1,10947:32583029,18078347 +g1,10947:32583029,18078347 +) +h1,10947:6630773,18274955:0,0,0 +(1,10951:6630773,19140035:25952256,513147,134348 +h1,10950:6630773,19140035:983040,0,0 +k1,10950:9239499,19140035:164233 +k1,10950:9935229,19140035:164233 +k1,10950:10870166,19140035:164234 +k1,10950:13695816,19140035:164233 +k1,10950:15595442,19140035:164233 +k1,10950:17747382,19140035:164233 +k1,10950:20959039,19140035:164233 +k1,10950:22076822,19140035:164234 +k1,10950:23333540,19140035:164233 +k1,10950:23853633,19140035:164233 +k1,10950:25432788,19140035:164233 +k1,10950:26248449,19140035:164233 +k1,10950:27100156,19140035:164234 +k1,10950:28919173,19140035:164233 +k1,10950:31575085,19140035:164233 +k1,10951:32583029,19140035:0 +) +(1,10951:6630773,20005115:25952256,513147,134348 +k1,10950:9035084,20005115:185262 +k1,10950:9576206,20005115:185262 +k1,10950:10754994,20005115:185262 +k1,10950:11599548,20005115:185262 +k1,10950:13497266,20005115:185262 +k1,10950:16174207,20005115:185262 +k1,10950:17313018,20005115:185262 +k1,10950:19668831,20005115:185261 +k1,10950:21291298,20005115:185262 +k1,10950:22127988,20005115:185262 +(1,10950:22127988,20005115:0,452978,115847 +r1,10994:24596525,20005115:2468537,568825,115847 +k1,10950:22127988,20005115:-2468537 +) +(1,10950:22127988,20005115:2468537,452978,115847 +k1,10950:22127988,20005115:3277 +h1,10950:24593248,20005115:0,411205,112570 +) +k1,10950:24781787,20005115:185262 +k1,10950:26170290,20005115:185262 +k1,10950:27349078,20005115:185262 +k1,10950:28193632,20005115:185262 +k1,10950:30091350,20005115:185262 +k1,10950:32583029,20005115:0 +) +(1,10951:6630773,20870195:25952256,513147,134348 +k1,10950:7562289,20870195:245354 +k1,10950:8265740,20870195:245354 +k1,10950:10912333,20870195:245354 +k1,10950:12609309,20870195:245354 +k1,10950:14567119,20870195:245354 +k1,10950:16800180,20870195:245354 +k1,10950:17731697,20870195:245355 +k1,10950:18332911,20870195:245354 +k1,10950:21280970,20870195:245354 +k1,10950:24477410,20870195:245354 +k1,10950:27795092,20870195:245354 +k1,10950:28691874,20870195:245354 +k1,10950:29725626,20870195:245354 +(1,10950:29725626,20870195:0,414482,115847 +r1,10994:30083892,20870195:358266,530329,115847 +k1,10950:29725626,20870195:-358266 +) +(1,10950:29725626,20870195:358266,414482,115847 +k1,10950:29725626,20870195:3277 +h1,10950:30080615,20870195:0,411205,112570 +) +k1,10950:30329246,20870195:245354 +k1,10951:32583029,20870195:0 +) +(1,10951:6630773,21735275:25952256,513147,134348 +k1,10950:8322492,21735275:278107 +k1,10950:9554147,21735275:278106 +k1,10950:10936536,21735275:278107 +k1,10950:12193095,21735275:278106 +k1,10950:14760375,21735275:278107 +k1,10950:16241722,21735275:278106 +k1,10950:19196319,21735275:278107 +k1,10950:21209818,21735275:278106 +k1,10950:24183421,21735275:278107 +(1,10950:24183421,21735275:0,452978,115847 +r1,10994:27355381,21735275:3171960,568825,115847 +k1,10950:24183421,21735275:-3171960 +) +(1,10950:24183421,21735275:3171960,452978,115847 +k1,10950:24183421,21735275:3277 +h1,10950:27352104,21735275:0,411205,112570 +) +k1,10950:27633487,21735275:278106 +k1,10950:28563022,21735275:278107 +k1,10950:29940822,21735275:278106 +(1,10950:29940822,21735275:0,452978,115847 +r1,10994:32409359,21735275:2468537,568825,115847 +k1,10950:29940822,21735275:-2468537 +) +(1,10950:29940822,21735275:2468537,452978,115847 +k1,10950:29940822,21735275:3277 +h1,10950:32406082,21735275:0,411205,112570 +) +k1,10950:32583029,21735275:0 +) +(1,10951:6630773,22600355:25952256,513147,134348 +k1,10950:9607089,22600355:186448 +(1,10950:9607089,22600355:0,452978,115847 +r1,10994:12779049,22600355:3171960,568825,115847 +k1,10950:9607089,22600355:-3171960 +) +(1,10950:9607089,22600355:3171960,452978,115847 +k1,10950:9607089,22600355:3277 +h1,10950:12775772,22600355:0,411205,112570 +) +k1,10950:12965497,22600355:186448 +k1,10950:15266793,22600355:186449 +k1,10950:16472326,22600355:186448 +k1,10950:19612482,22600355:186448 +k1,10950:20458222,22600355:186448 +k1,10950:21663756,22600355:186449 +k1,10950:22843730,22600355:186448 +k1,10950:25235465,22600355:186448 +k1,10950:26108075,22600355:186448 +k1,10950:27082922,22600355:186449 +k1,10950:29510701,22600355:186448 +k1,10950:32583029,22600355:0 +) +(1,10951:6630773,23465435:25952256,513147,134348 +k1,10950:7497541,23465435:180606 +k1,10950:10871061,23465435:180606 +k1,10950:14454297,23465435:180607 +k1,10950:15286331,23465435:180606 +k1,10950:16486022,23465435:180606 +k1,10950:19362124,23465435:180606 +k1,10950:21280746,23465435:180607 +k1,10950:23502798,23465435:180606 +k1,10950:25418797,23465435:180606 +k1,10950:27108042,23465435:180606 +k1,10950:29356965,23465435:180607 +k1,10950:30003532,23465435:180606 +k1,10951:32583029,23465435:0 +) +(1,10951:6630773,24330515:25952256,505283,134348 +(1,10950:6630773,24330515:0,452978,115847 +r1,10994:9099310,24330515:2468537,568825,115847 +k1,10950:6630773,24330515:-2468537 +) +(1,10950:6630773,24330515:2468537,452978,115847 +k1,10950:6630773,24330515:3277 +h1,10950:9096033,24330515:0,411205,112570 +) +k1,10950:9306803,24330515:207493 +k1,10950:11915535,24330515:207493 +k1,10950:15074114,24330515:207493 +k1,10950:18684236,24330515:207493 +k1,10950:19616557,24330515:207493 +k1,10950:20692402,24330515:207493 +k1,10950:22430161,24330515:207493 +k1,10950:23289082,24330515:207493 +k1,10950:25851284,24330515:207493 +k1,10950:27077862,24330515:207493 +k1,10950:29353671,24330515:207493 +k1,10950:31966991,24330515:207493 +k1,10951:32583029,24330515:0 +) +(1,10951:6630773,25195595:25952256,452978,115847 +(1,10950:6630773,25195595:0,452978,115847 +r1,10994:9099310,25195595:2468537,568825,115847 +k1,10950:6630773,25195595:-2468537 +) +(1,10950:6630773,25195595:2468537,452978,115847 +k1,10950:6630773,25195595:3277 +h1,10950:9096033,25195595:0,411205,112570 +) +k1,10951:32583028,25195595:23310048 +g1,10951:32583028,25195595 +) +v1,10953:6630773,25880450:0,393216,0 +(1,10988:6630773,43742330:25952256,18255096,196608 +g1,10988:6630773,43742330 +g1,10988:6630773,43742330 +g1,10988:6434165,43742330 +(1,10988:6434165,43742330:0,18255096,196608 +r1,10994:32779637,43742330:26345472,18451704,196608 +k1,10988:6434165,43742330:-26345472 +) +(1,10988:6434165,43742330:26345472,18255096,196608 +[1,10988:6630773,43742330:25952256,18058488,0 +(1,10955:6630773,26114887:25952256,431045,106246 +(1,10954:6630773,26114887:0,0,0 +g1,10954:6630773,26114887 +g1,10954:6630773,26114887 +g1,10954:6303093,26114887 +(1,10954:6303093,26114887:0,0,0 +) +g1,10954:6630773,26114887 +) +g1,10955:9286405,26114887 +g1,10955:10282267,26114887 +g1,10955:14597668,26114887 +g1,10955:15261576,26114887 +g1,10955:17253300,26114887 +g1,10955:17917208,26114887 +g1,10955:18581116,26114887 +g1,10955:20240886,26114887 +g1,10955:20904794,26114887 +g1,10955:24224334,26114887 +g1,10955:25220196,26114887 +h1,10955:26879966,26114887:0,0,0 +k1,10955:32583029,26114887:5703063 +g1,10955:32583029,26114887 +) +(1,10956:6630773,26799742:25952256,424439,79822 +h1,10956:6630773,26799742:0,0,0 +g1,10956:9286405,26799742 +g1,10956:10282267,26799742 +k1,10956:10282267,26799742:0 +h1,10956:12273991,26799742:0,0,0 +k1,10956:32583029,26799742:20309038 +g1,10956:32583029,26799742 +) +(1,10957:6630773,27484597:25952256,424439,112852 +h1,10957:6630773,27484597:0,0,0 +k1,10957:8874455,27484597:251958 +k1,10957:9790321,27484597:251958 +k1,10957:13693772,27484597:251957 +k1,10957:14277684,27484597:251958 +k1,10957:14861596,27484597:251958 +k1,10957:15445508,27484597:251958 +k1,10957:16361374,27484597:251958 +k1,10957:20264824,27484597:251957 +k1,10957:20848736,27484597:251958 +k1,10957:21432648,27484597:251958 +k1,10957:22016560,27484597:251958 +k1,10957:22600472,27484597:251958 +k1,10957:23184383,27484597:251957 +k1,10957:24100249,27484597:251958 +k1,10957:27339792,27484597:251958 +k1,10957:27923704,27484597:251958 +k1,10957:28507616,27484597:251958 +k1,10957:29091527,27484597:251957 +k1,10957:29675439,27484597:251958 +k1,10957:30259351,27484597:251958 +k1,10957:30259351,27484597:0 +h1,10957:32583029,27484597:0,0,0 +k1,10957:32583029,27484597:0 +k1,10957:32583029,27484597:0 +) +(1,10958:6630773,28169452:25952256,431045,79822 +h1,10958:6630773,28169452:0,0,0 +g1,10958:7958589,28169452 +g1,10958:8954451,28169452 +g1,10958:9950313,28169452 +g1,10958:14929622,28169452 +h1,10958:15261576,28169452:0,0,0 +k1,10958:32583028,28169452:17321452 +g1,10958:32583028,28169452 +) +(1,10959:6630773,28854307:25952256,424439,106246 +h1,10959:6630773,28854307:0,0,0 +g1,10959:6962727,28854307 +g1,10959:7294681,28854307 +g1,10959:7626635,28854307 +g1,10959:11942036,28854307 +g1,10959:12937898,28854307 +g1,10959:18249161,28854307 +g1,10959:19908931,28854307 +g1,10959:20572839,28854307 +h1,10959:23228470,28854307:0,0,0 +k1,10959:32583029,28854307:9354559 +g1,10959:32583029,28854307 +) +(1,10960:6630773,29539162:25952256,424439,79822 +h1,10960:6630773,29539162:0,0,0 +g1,10960:6962727,29539162 +g1,10960:7294681,29539162 +g1,10960:7626635,29539162 +h1,10960:7958589,29539162:0,0,0 +k1,10960:32583029,29539162:24624440 +g1,10960:32583029,29539162 +) +(1,10961:6630773,30224017:25952256,424439,86428 +h1,10961:6630773,30224017:0,0,0 +g1,10961:10946174,30224017 +g1,10961:14265713,30224017 +g1,10961:14929621,30224017 +h1,10961:15593529,30224017:0,0,0 +k1,10961:32583029,30224017:16989500 +g1,10961:32583029,30224017 +) +(1,10971:6630773,31039944:25952256,431045,9908 +(1,10963:6630773,31039944:0,0,0 +g1,10963:6630773,31039944 +g1,10963:6630773,31039944 +g1,10963:6303093,31039944 +(1,10963:6303093,31039944:0,0,0 +) +g1,10963:6630773,31039944 +) +g1,10971:7626635,31039944 +g1,10971:9286405,31039944 +g1,10971:10282267,31039944 +h1,10971:10614221,31039944:0,0,0 +k1,10971:32583029,31039944:21968808 +g1,10971:32583029,31039944 +) +(1,10971:6630773,31724799:25952256,431045,33029 +h1,10971:6630773,31724799:0,0,0 +g1,10971:7626635,31724799 +g1,10971:7958589,31724799 +g1,10971:8622497,31724799 +g1,10971:10946175,31724799 +g1,10971:11278129,31724799 +g1,10971:11610083,31724799 +g1,10971:11942037,31724799 +g1,10971:12273991,31724799 +g1,10971:14265715,31724799 +g1,10971:15261577,31724799 +h1,10971:15925485,31724799:0,0,0 +k1,10971:32583029,31724799:16657544 +g1,10971:32583029,31724799 +) +(1,10971:6630773,32409654:25952256,424439,86428 +h1,10971:6630773,32409654:0,0,0 +g1,10971:7626635,32409654 +g1,10971:7958589,32409654 +g1,10971:8290543,32409654 +g1,10971:9618359,32409654 +g1,10971:12273991,32409654 +g1,10971:15593530,32409654 +g1,10971:16921346,32409654 +h1,10971:18249162,32409654:0,0,0 +k1,10971:32583029,32409654:14333867 +g1,10971:32583029,32409654 +) +(1,10971:6630773,33094509:25952256,431045,112852 +h1,10971:6630773,33094509:0,0,0 +g1,10971:7626635,33094509 +g1,10971:7958589,33094509 +g1,10971:8622497,33094509 +g1,10971:14265714,33094509 +g1,10971:15261576,33094509 +h1,10971:15925484,33094509:0,0,0 +k1,10971:32583029,33094509:16657545 +g1,10971:32583029,33094509 +) +(1,10971:6630773,33779364:25952256,424439,86428 +h1,10971:6630773,33779364:0,0,0 +g1,10971:7626635,33779364 +g1,10971:7958589,33779364 +g1,10971:8290543,33779364 +g1,10971:9618359,33779364 +g1,10971:12273991,33779364 +g1,10971:15593530,33779364 +g1,10971:16921346,33779364 +h1,10971:18249162,33779364:0,0,0 +k1,10971:32583029,33779364:14333867 +g1,10971:32583029,33779364 +) +(1,10971:6630773,34464219:25952256,431045,106246 +h1,10971:6630773,34464219:0,0,0 +g1,10971:7626635,34464219 +g1,10971:7958589,34464219 +g1,10971:8622497,34464219 +g1,10971:11942036,34464219 +g1,10971:12273990,34464219 +g1,10971:14265714,34464219 +g1,10971:15261576,34464219 +h1,10971:15925484,34464219:0,0,0 +k1,10971:32583029,34464219:16657545 +g1,10971:32583029,34464219 +) +(1,10971:6630773,35149074:25952256,424439,86428 +h1,10971:6630773,35149074:0,0,0 +g1,10971:7626635,35149074 +g1,10971:7958589,35149074 +g1,10971:8290543,35149074 +g1,10971:9618359,35149074 +g1,10971:12273991,35149074 +g1,10971:15593530,35149074 +g1,10971:16921346,35149074 +h1,10971:18249162,35149074:0,0,0 +k1,10971:32583029,35149074:14333867 +g1,10971:32583029,35149074 +) +(1,10973:6630773,35965001:25952256,424439,86428 +(1,10972:6630773,35965001:0,0,0 +g1,10972:6630773,35965001 +g1,10972:6630773,35965001 +g1,10972:6303093,35965001 +(1,10972:6303093,35965001:0,0,0 +) +g1,10972:6630773,35965001 +) +k1,10973:6630773,35965001:0 +g1,10973:11610083,35965001 +k1,10973:11610083,35965001:0 +h1,10973:16921346,35965001:0,0,0 +k1,10973:32583029,35965001:15661683 +g1,10973:32583029,35965001 +) +(1,10987:6630773,36780928:25952256,431045,106246 +(1,10975:6630773,36780928:0,0,0 +g1,10975:6630773,36780928 +g1,10975:6630773,36780928 +g1,10975:6303093,36780928 +(1,10975:6303093,36780928:0,0,0 +) +g1,10975:6630773,36780928 +) +g1,10987:7626635,36780928 +g1,10987:10614220,36780928 +g1,10987:11610082,36780928 +g1,10987:14597667,36780928 +h1,10987:16257437,36780928:0,0,0 +k1,10987:32583029,36780928:16325592 +g1,10987:32583029,36780928 +) +(1,10987:6630773,37465783:25952256,398014,0 +h1,10987:6630773,37465783:0,0,0 +h1,10987:7294681,37465783:0,0,0 +k1,10987:32583029,37465783:25288348 +g1,10987:32583029,37465783 +) +(1,10987:6630773,38150638:25952256,424439,106246 +h1,10987:6630773,38150638:0,0,0 +g1,10987:7626635,38150638 +g1,10987:9618359,38150638 +g1,10987:10614221,38150638 +g1,10987:11278129,38150638 +g1,10987:11942037,38150638 +h1,10987:12273991,38150638:0,0,0 +k1,10987:32583029,38150638:20309038 +g1,10987:32583029,38150638 +) +(1,10987:6630773,38835493:25952256,424439,106246 +h1,10987:6630773,38835493:0,0,0 +g1,10987:7626635,38835493 +g1,10987:9618359,38835493 +g1,10987:10614221,38835493 +g1,10987:11278129,38835493 +g1,10987:11942037,38835493 +g1,10987:12605945,38835493 +g1,10987:13269853,38835493 +h1,10987:13601807,38835493:0,0,0 +k1,10987:32583029,38835493:18981222 +g1,10987:32583029,38835493 +) +(1,10987:6630773,39520348:25952256,424439,106246 +h1,10987:6630773,39520348:0,0,0 +g1,10987:7626635,39520348 +g1,10987:9618359,39520348 +g1,10987:10614221,39520348 +g1,10987:11278129,39520348 +g1,10987:11942037,39520348 +g1,10987:12605945,39520348 +g1,10987:13269853,39520348 +h1,10987:15261577,39520348:0,0,0 +k1,10987:32583029,39520348:17321452 +g1,10987:32583029,39520348 +) +(1,10987:6630773,40205203:25952256,431045,106246 +h1,10987:6630773,40205203:0,0,0 +g1,10987:7626635,40205203 +g1,10987:7958589,40205203 +g1,10987:8290543,40205203 +g1,10987:10614221,40205203 +g1,10987:10946175,40205203 +g1,10987:11278129,40205203 +g1,10987:11610083,40205203 +g1,10987:11942037,40205203 +g1,10987:13269853,40205203 +g1,10987:14265715,40205203 +g1,10987:15593531,40205203 +g1,10987:16589393,40205203 +g1,10987:17585255,40205203 +g1,10987:17917209,40205203 +g1,10987:18249163,40205203 +g1,10987:18581117,40205203 +g1,10987:18913071,40205203 +g1,10987:19245025,40205203 +g1,10987:19908933,40205203 +g1,10987:20240887,40205203 +g1,10987:20572841,40205203 +g1,10987:20904795,40205203 +k1,10987:20904795,40205203:0 +h1,10987:22896519,40205203:0,0,0 +k1,10987:32583029,40205203:9686510 +g1,10987:32583029,40205203 +) +(1,10987:6630773,40890058:25952256,407923,9908 +h1,10987:6630773,40890058:0,0,0 +g1,10987:7626635,40890058 +g1,10987:8290543,40890058 +g1,10987:8622497,40890058 +g1,10987:8954451,40890058 +g1,10987:9286405,40890058 +g1,10987:9618359,40890058 +g1,10987:9950313,40890058 +g1,10987:10614221,40890058 +h1,10987:12937899,40890058:0,0,0 +k1,10987:32583029,40890058:19645130 +g1,10987:32583029,40890058 +) +(1,10987:6630773,41574913:25952256,407923,9908 +h1,10987:6630773,41574913:0,0,0 +g1,10987:7626635,41574913 +g1,10987:8290543,41574913 +g1,10987:8622497,41574913 +g1,10987:8954451,41574913 +g1,10987:9286405,41574913 +g1,10987:9618359,41574913 +g1,10987:9950313,41574913 +g1,10987:10614221,41574913 +g1,10987:13269853,41574913 +g1,10987:14265715,41574913 +g1,10987:14597669,41574913 +g1,10987:14929623,41574913 +g1,10987:17585255,41574913 +g1,10987:19908933,41574913 +g1,10987:23228473,41574913 +h1,10987:24224335,41574913:0,0,0 +k1,10987:32583029,41574913:8358694 +g1,10987:32583029,41574913 +) +(1,10987:6630773,42259768:25952256,407923,9908 +h1,10987:6630773,42259768:0,0,0 +g1,10987:7626635,42259768 +g1,10987:8290543,42259768 +g1,10987:8622497,42259768 +g1,10987:8954451,42259768 +g1,10987:9286405,42259768 +g1,10987:9618359,42259768 +g1,10987:9950313,42259768 +g1,10987:10614221,42259768 +g1,10987:13269853,42259768 +g1,10987:13601807,42259768 +g1,10987:14265715,42259768 +g1,10987:14597669,42259768 +g1,10987:14929623,42259768 +g1,10987:15261577,42259768 +g1,10987:17585255,42259768 +g1,10987:19908933,42259768 +g1,10987:23228473,42259768 +h1,10987:24224335,42259768:0,0,0 +k1,10987:32583029,42259768:8358694 +g1,10987:32583029,42259768 +) +(1,10987:6630773,42944623:25952256,398014,0 +h1,10987:6630773,42944623:0,0,0 +g1,10987:7626635,42944623 +k1,10987:7626635,42944623:0 +h1,10987:8622497,42944623:0,0,0 +k1,10987:32583029,42944623:23960532 +g1,10987:32583029,42944623 +) +(1,10987:6630773,43629478:25952256,431045,112852 +h1,10987:6630773,43629478:0,0,0 +g1,10987:7626635,43629478 +g1,10987:10282267,43629478 +g1,10987:12605945,43629478 +g1,10987:12937899,43629478 +g1,10987:13601807,43629478 +g1,10987:15593531,43629478 +g1,10987:17585255,43629478 +g1,10987:19245025,43629478 +g1,10987:20904795,43629478 +g1,10987:22232611,43629478 +g1,10987:23892381,43629478 +g1,10987:25220197,43629478 +g1,10987:26548013,43629478 +g1,10987:27211921,43629478 +g1,10987:27875829,43629478 +h1,10987:28207783,43629478:0,0,0 +k1,10987:32583029,43629478:4375246 +g1,10987:32583029,43629478 +) +] +) +g1,10988:32583029,43742330 +g1,10988:6630773,43742330 +g1,10988:6630773,43742330 +g1,10988:32583029,43742330 +g1,10988:32583029,43742330 +) +h1,10988:6630773,43938938:0,0,0 +(1,10992:6630773,44804018:25952256,513147,126483 +h1,10991:6630773,44804018:983040,0,0 +k1,10991:8273293,44804018:181723 +k1,10991:9323368,44804018:181723 +k1,10991:10696536,44804018:181723 +k1,10991:11687629,44804018:181723 +k1,10991:14144762,44804018:181723 +k1,10991:15418970,44804018:181723 +k1,10991:16548344,44804018:181723 +(1,10991:16548344,44804018:0,452978,115847 +r1,10994:19016881,44804018:2468537,568825,115847 +k1,10991:16548344,44804018:-2468537 +) +(1,10991:16548344,44804018:2468537,452978,115847 +k1,10991:16548344,44804018:3277 +h1,10991:19013604,44804018:0,411205,112570 +) +k1,10991:19198604,44804018:181723 +k1,10991:20248679,44804018:181723 +k1,10991:22199219,44804018:181723 +k1,10991:24519382,44804018:181723 +k1,10991:26343437,44804018:181723 +k1,10991:26881020,44804018:181723 +k1,10991:28056269,44804018:181723 +k1,10991:29631943,44804018:181723 +k1,10991:32583029,44804018:0 +) +(1,10992:6630773,45669098:25952256,505283,134348 +g1,10991:9783710,45669098 +g1,10991:10744467,45669098 +g1,10991:12679089,45669098 +g1,10991:16053537,45669098 +k1,10992:32583029,45669098:13616417 +g1,10992:32583029,45669098 +) +] +(1,10994:32583029,45706769:0,0,0 +g1,10994:32583029,45706769 +) +) +] +(1,10994:6630773,47279633:25952256,0,0 +h1,10994:6630773,47279633:25952256,0,0 +) +] +(1,10994:4262630,4025873:0,0,0 +[1,10994:-473656,4025873:0,0,0 +(1,10994:-473656,-710413:0,0,0 +(1,10994:-473656,-710413:0,0,0 +g1,10994:-473656,-710413 +) +g1,10994:-473656,-710413 +) +] +) +] +!28506 +}174 +!12 +{175 +[1,11038:4262630,47279633:28320399,43253760,0 +(1,11038:4262630,4025873:0,0,0 +[1,11038:-473656,4025873:0,0,0 +(1,11038:-473656,-710413:0,0,0 +(1,11038:-473656,-644877:0,0,0 +k1,11038:-473656,-644877:-65536 ) -g1,11821:-473656,-710413 +(1,11038:-473656,4736287:0,0,0 +k1,11038:-473656,4736287:5209943 +) +g1,11038:-473656,-710413 ) ] ) -[1,11821:6630773,47279633:25952256,43253760,0 -[1,11821:6630773,4812305:25952256,786432,0 -(1,11821:6630773,4812305:25952256,505283,134348 -(1,11821:6630773,4812305:25952256,505283,134348 -g1,11821:3078558,4812305 -[1,11821:3078558,4812305:0,0,0 -(1,11821:3078558,2439708:0,1703936,0 -k1,11821:1358238,2439708:-1720320 -(1,10825:1358238,2439708:1720320,1703936,0 -(1,10825:1358238,2439708:1179648,16384,0 -r1,11821:2537886,2439708:1179648,16384,0 +[1,11038:6630773,47279633:25952256,43253760,0 +[1,11038:6630773,4812305:25952256,786432,0 +(1,11038:6630773,4812305:25952256,505283,134348 +(1,11038:6630773,4812305:25952256,505283,134348 +g1,11038:3078558,4812305 +[1,11038:3078558,4812305:0,0,0 +(1,11038:3078558,2439708:0,1703936,0 +k1,11038:1358238,2439708:-1720320 +(1,8606:1358238,2439708:1720320,1703936,0 +(1,8606:1358238,2439708:1179648,16384,0 +r1,11038:2537886,2439708:1179648,16384,0 ) -g1,10825:3062174,2439708 -(1,10825:3062174,2439708:16384,1703936,0 -[1,10825:3062174,2439708:25952256,1703936,0 -(1,10825:3062174,1915420:25952256,1179648,0 -(1,10825:3062174,1915420:16384,1179648,0 -r1,11821:3078558,1915420:16384,1179648,0 +g1,8606:3062174,2439708 +(1,8606:3062174,2439708:16384,1703936,0 +[1,8606:3062174,2439708:25952256,1703936,0 +(1,8606:3062174,1915420:25952256,1179648,0 +(1,8606:3062174,1915420:16384,1179648,0 +r1,11038:3078558,1915420:16384,1179648,0 ) -k1,10825:29014430,1915420:25935872 -g1,10825:29014430,1915420 +k1,8606:29014430,1915420:25935872 +g1,8606:29014430,1915420 ) ] ) ) ) ] -[1,11821:3078558,4812305:0,0,0 -(1,11821:3078558,2439708:0,1703936,0 -g1,11821:29030814,2439708 -g1,11821:36135244,2439708 -(1,10825:36135244,2439708:1720320,1703936,0 -(1,10825:36135244,2439708:16384,1703936,0 -[1,10825:36135244,2439708:25952256,1703936,0 -(1,10825:36135244,1915420:25952256,1179648,0 -(1,10825:36135244,1915420:16384,1179648,0 -r1,11821:36151628,1915420:16384,1179648,0 +[1,11038:3078558,4812305:0,0,0 +(1,11038:3078558,2439708:0,1703936,0 +g1,11038:29030814,2439708 +g1,11038:36135244,2439708 +(1,8606:36135244,2439708:1720320,1703936,0 +(1,8606:36135244,2439708:16384,1703936,0 +[1,8606:36135244,2439708:25952256,1703936,0 +(1,8606:36135244,1915420:25952256,1179648,0 +(1,8606:36135244,1915420:16384,1179648,0 +r1,11038:36151628,1915420:16384,1179648,0 ) -k1,10825:62087500,1915420:25935872 -g1,10825:62087500,1915420 +k1,8606:62087500,1915420:25935872 +g1,8606:62087500,1915420 ) ] ) -g1,10825:36675916,2439708 -(1,10825:36675916,2439708:1179648,16384,0 -r1,11821:37855564,2439708:1179648,16384,0 +g1,8606:36675916,2439708 +(1,8606:36675916,2439708:1179648,16384,0 +r1,11038:37855564,2439708:1179648,16384,0 ) ) -k1,11821:3078556,2439708:-34777008 +k1,11038:3078556,2439708:-34777008 ) ] -[1,11821:3078558,4812305:0,0,0 -(1,11821:3078558,49800853:0,16384,2228224 -k1,11821:1358238,49800853:-1720320 -(1,10825:1358238,49800853:1720320,16384,2228224 -(1,10825:1358238,49800853:1179648,16384,0 -r1,11821:2537886,49800853:1179648,16384,0 +[1,11038:3078558,4812305:0,0,0 +(1,11038:3078558,49800853:0,16384,2228224 +k1,11038:1358238,49800853:-1720320 +(1,8606:1358238,49800853:1720320,16384,2228224 +(1,8606:1358238,49800853:1179648,16384,0 +r1,11038:2537886,49800853:1179648,16384,0 ) -g1,10825:3062174,49800853 -(1,10825:3062174,52029077:16384,1703936,0 -[1,10825:3062174,52029077:25952256,1703936,0 -(1,10825:3062174,51504789:25952256,1179648,0 -(1,10825:3062174,51504789:16384,1179648,0 -r1,11821:3078558,51504789:16384,1179648,0 +g1,8606:3062174,49800853 +(1,8606:3062174,52029077:16384,1703936,0 +[1,8606:3062174,52029077:25952256,1703936,0 +(1,8606:3062174,51504789:25952256,1179648,0 +(1,8606:3062174,51504789:16384,1179648,0 +r1,11038:3078558,51504789:16384,1179648,0 ) -k1,10825:29014430,51504789:25935872 -g1,10825:29014430,51504789 +k1,8606:29014430,51504789:25935872 +g1,8606:29014430,51504789 ) ] ) ) ) ] -[1,11821:3078558,4812305:0,0,0 -(1,11821:3078558,49800853:0,16384,2228224 -g1,11821:29030814,49800853 -g1,11821:36135244,49800853 -(1,10825:36135244,49800853:1720320,16384,2228224 -(1,10825:36135244,52029077:16384,1703936,0 -[1,10825:36135244,52029077:25952256,1703936,0 -(1,10825:36135244,51504789:25952256,1179648,0 -(1,10825:36135244,51504789:16384,1179648,0 -r1,11821:36151628,51504789:16384,1179648,0 -) -k1,10825:62087500,51504789:25935872 -g1,10825:62087500,51504789 -) -] -) -g1,10825:36675916,49800853 -(1,10825:36675916,49800853:1179648,16384,0 -r1,11821:37855564,49800853:1179648,16384,0 -) -) -k1,11821:3078556,49800853:-34777008 -) -] -g1,11821:6630773,4812305 -k1,11821:23552825,4812305:15726675 -g1,11821:25175496,4812305 -g1,11821:25997972,4812305 -g1,11821:28481131,4812305 -g1,11821:30046786,4812305 -) -) -] -[1,11821:6630773,45706769:25952256,40108032,0 -(1,11821:6630773,45706769:25952256,40108032,0 -(1,11821:6630773,45706769:0,0,0 -g1,11821:6630773,45706769 -) -[1,11821:6630773,45706769:25952256,40108032,0 -v1,11716:6630773,6254097:0,393216,0 -(1,11716:6630773,9747843:25952256,3886962,0 -g1,11716:6630773,9747843 -g1,11716:6303093,9747843 -r1,11821:6401397,9747843:98304,3886962,0 -g1,11716:6600626,9747843 -g1,11716:6797234,9747843 -[1,11716:6797234,9747843:25785795,3886962,0 -(1,11716:6797234,6374028:25785795,513147,126483 -k1,11715:9223122,6374028:183901 -k1,11715:10873719,6374028:183901 -k1,11715:14083418,6374028:183902 -k1,11715:15413544,6374028:183901 -(1,11715:15413544,6374028:0,452978,115847 -r1,11821:17530369,6374028:2116825,568825,115847 -k1,11715:15413544,6374028:-2116825 -) -(1,11715:15413544,6374028:2116825,452978,115847 -k1,11715:15413544,6374028:3277 -h1,11715:17527092,6374028:0,411205,112570 -) -k1,11715:17714270,6374028:183901 -k1,11715:19002453,6374028:183901 -k1,11715:19934121,6374028:183902 -k1,11715:21985798,6374028:183901 -k1,11715:22855861,6374028:183901 -(1,11715:22855861,6374028:0,452978,115847 -r1,11821:27082957,6374028:4227096,568825,115847 -k1,11715:22855861,6374028:-4227096 -) -(1,11715:22855861,6374028:4227096,452978,115847 -k1,11715:22855861,6374028:3277 -h1,11715:27079680,6374028:0,411205,112570 -) -k1,11715:27266858,6374028:183901 -k1,11715:27916721,6374028:183902 -k1,11715:29480810,6374028:183901 -k1,11715:31835263,6374028:183901 -k1,11715:32583029,6374028:0 -) -(1,11716:6797234,7215516:25785795,513147,134348 -k1,11715:9852850,7215516:256573 -k1,11715:12523770,7215516:256574 -k1,11715:15310033,7215516:256573 -k1,11715:16225898,7215516:256573 -k1,11715:17501557,7215516:256574 -k1,11715:20587975,7215516:256573 -k1,11715:21503840,7215516:256573 -k1,11715:23462384,7215516:256574 -k1,11715:26008785,7215516:256573 -k1,11715:27659309,7215516:256573 -k1,11715:28934968,7215516:256574 -k1,11715:30845014,7215516:256573 -k1,11715:32583029,7215516:0 -) -(1,11716:6797234,8057004:25785795,513147,134348 -k1,11715:8769414,8057004:234165 -k1,11715:11409406,8057004:234165 -k1,11715:12259609,8057004:234165 -k1,11715:13512859,8057004:234165 -k1,11715:15682302,8057004:234165 -k1,11715:20147471,8057004:234165 -k1,11715:21064521,8057004:234165 -k1,11715:23416810,8057004:234165 -k1,11715:26237026,8057004:234165 -k1,11715:27424740,8057004:234165 -k1,11715:28763187,8057004:234165 -k1,11715:30263508,8057004:234165 -k1,11715:31563944,8057004:234165 -k1,11715:32583029,8057004:0 -) -(1,11716:6797234,8898492:25785795,513147,134348 -k1,11715:9064375,8898492:196859 -k1,11715:11000561,8898492:196860 -k1,11715:11958948,8898492:196859 -k1,11715:14245751,8898492:196860 -(1,11715:14245751,8898492:0,452978,115847 -r1,11821:17066000,8898492:2820249,568825,115847 -k1,11715:14245751,8898492:-2820249 -) -(1,11715:14245751,8898492:2820249,452978,115847 -k1,11715:14245751,8898492:3277 -h1,11715:17062723,8898492:0,411205,112570 -) -k1,11715:17436529,8898492:196859 -k1,11715:19027339,8898492:196859 -k1,11715:20243284,8898492:196860 -k1,11715:22510425,8898492:196859 -k1,11715:25185857,8898492:196860 -k1,11715:25995478,8898492:196859 -k1,11715:27211423,8898492:196860 -(1,11715:27211423,8898492:0,452978,115847 -r1,11821:31438519,8898492:4227096,568825,115847 -k1,11715:27211423,8898492:-4227096 -) -(1,11715:27211423,8898492:4227096,452978,115847 -k1,11715:27211423,8898492:3277 -h1,11715:31435242,8898492:0,411205,112570 -) -k1,11715:31635378,8898492:196859 -k1,11715:32583029,8898492:0 -) -(1,11716:6797234,9739980:25785795,505283,7863 -g1,11715:10513125,9739980 -g1,11715:13773541,9739980 -g1,11715:14585532,9739980 -g1,11715:15803846,9739980 -g1,11715:16448064,9739980 -g1,11715:19806784,9739980 -k1,11716:32583029,9739980:11434068 -g1,11716:32583029,9739980 -) -] -g1,11716:32583029,9747843 -) -h1,11716:6630773,9747843:0,0,0 -v1,11719:6630773,11113619:0,393216,0 -(1,11821:6630773,35519207:25952256,24798804,0 -g1,11821:6630773,35519207 -g1,11821:6303093,35519207 -r1,11821:6401397,35519207:98304,24798804,0 -g1,11821:6600626,35519207 -g1,11821:6797234,35519207 -[1,11821:6797234,35519207:25785795,24798804,0 -(1,11720:6797234,11475692:25785795,755289,196608 -(1,11719:6797234,11475692:0,755289,196608 -r1,11821:8134168,11475692:1336934,951897,196608 -k1,11719:6797234,11475692:-1336934 -) -(1,11719:6797234,11475692:1336934,755289,196608 -) -k1,11719:8438613,11475692:304445 -k1,11719:8766293,11475692:327680 -k1,11719:13004208,11475692:304444 -k1,11719:15399907,11475692:304445 -k1,11719:16723437,11475692:304445 -k1,11719:19096197,11475692:304444 -k1,11719:21782220,11475692:304445 -k1,11719:24096653,11475692:304444 -k1,11719:26040153,11475692:304445 -k1,11719:27912219,11475692:304445 -k1,11719:29960576,11475692:304444 -k1,11719:30881059,11475692:304445 -k1,11719:32583029,11475692:0 -) -(1,11720:6797234,12317180:25785795,505283,126483 -k1,11719:11098600,12317180:271557 -k1,11719:12751001,12317180:271557 -k1,11719:14740913,12317180:271558 -k1,11719:17445166,12317180:271557 -k1,11719:19454738,12317180:271557 -k1,11719:22217318,12317180:271557 -k1,11719:23680320,12317180:271557 -k1,11719:25997912,12317180:271558 -k1,11719:26727566,12317180:271557 -k1,11719:29629083,12317180:271557 -k1,11719:30552068,12317180:271557 -k1,11719:32583029,12317180:0 -) -(1,11720:6797234,13158668:25785795,513147,134348 -g1,11719:9286291,13158668 -g1,11719:10952216,13158668 -g1,11719:12849483,13158668 -g1,11719:14428900,13158668 -g1,11719:15619689,13158668 -g1,11719:18638932,13158668 -g1,11719:19599689,13158668 -g1,11719:20154778,13158668 -g1,11719:23116350,13158668 -g1,11719:25275105,13158668 -g1,11719:26868285,13158668 -g1,11719:28086599,13158668 -g1,11719:29939301,13158668 -k1,11720:32583029,13158668:732043 -g1,11720:32583029,13158668 -) -v1,11722:6797234,14349134:0,393216,0 -(1,11763:6797234,29932235:25785795,15976317,196608 -g1,11763:6797234,29932235 -g1,11763:6797234,29932235 -g1,11763:6600626,29932235 -(1,11763:6600626,29932235:0,15976317,196608 -r1,11821:32779637,29932235:26179011,16172925,196608 -k1,11763:6600625,29932235:-26179012 -) -(1,11763:6600626,29932235:26179011,15976317,196608 -[1,11763:6797234,29932235:25785795,15779709,0 -(1,11724:6797234,14563044:25785795,410518,101187 -(1,11723:6797234,14563044:0,0,0 -g1,11723:6797234,14563044 -g1,11723:6797234,14563044 -g1,11723:6469554,14563044 -(1,11723:6469554,14563044:0,0,0 -) -g1,11723:6797234,14563044 -) -k1,11724:6797234,14563044:0 -g1,11724:10274837,14563044 -g1,11724:11223275,14563044 -g1,11724:11855567,14563044 -g1,11724:13752441,14563044 -g1,11724:15649315,14563044 -k1,11724:15649315,14563044:0 -h1,11724:16913898,14563044:0,0,0 -k1,11724:32583029,14563044:15669131 -g1,11724:32583029,14563044 -) -(1,11731:6797234,15229222:25785795,404226,101187 -(1,11726:6797234,15229222:0,0,0 -g1,11726:6797234,15229222 -g1,11726:6797234,15229222 -g1,11726:6469554,15229222 -(1,11726:6469554,15229222:0,0,0 -) -g1,11726:6797234,15229222 -) -g1,11731:7745671,15229222 -g1,11731:8061817,15229222 -g1,11731:8377963,15229222 -g1,11731:10274837,15229222 -h1,11731:11539420,15229222:0,0,0 -k1,11731:32583028,15229222:21043608 -g1,11731:32583028,15229222 -) -(1,11731:6797234,15895400:25785795,388497,0 -h1,11731:6797234,15895400:0,0,0 -g1,11731:7745671,15895400 -g1,11731:8377963,15895400 -g1,11731:8694109,15895400 -g1,11731:9010255,15895400 -g1,11731:9326401,15895400 -g1,11731:9642547,15895400 -g1,11731:10274839,15895400 -g1,11731:10590985,15895400 -g1,11731:10907131,15895400 -g1,11731:11223277,15895400 -h1,11731:11539423,15895400:0,0,0 -k1,11731:32583029,15895400:21043606 -g1,11731:32583029,15895400 -) -(1,11731:6797234,16561578:25785795,388497,9436 -h1,11731:6797234,16561578:0,0,0 -g1,11731:7745671,16561578 -g1,11731:8377963,16561578 -g1,11731:8694109,16561578 -g1,11731:9010255,16561578 -g1,11731:9326401,16561578 -g1,11731:9642547,16561578 -g1,11731:10274839,16561578 -g1,11731:10590985,16561578 -g1,11731:10907131,16561578 -h1,11731:11539422,16561578:0,0,0 -k1,11731:32583030,16561578:21043608 -g1,11731:32583030,16561578 -) -(1,11731:6797234,17227756:25785795,388497,9436 -h1,11731:6797234,17227756:0,0,0 -g1,11731:7745671,17227756 -g1,11731:8377963,17227756 -g1,11731:8694109,17227756 -g1,11731:9010255,17227756 -g1,11731:9326401,17227756 -g1,11731:9642547,17227756 -g1,11731:10274839,17227756 -g1,11731:10590985,17227756 -g1,11731:10907131,17227756 -g1,11731:11223277,17227756 -h1,11731:11539423,17227756:0,0,0 -k1,11731:32583029,17227756:21043606 -g1,11731:32583029,17227756 -) -(1,11733:6797234,18549294:25785795,410518,107478 -(1,11732:6797234,18549294:0,0,0 -g1,11732:6797234,18549294 -g1,11732:6797234,18549294 -g1,11732:6469554,18549294 -(1,11732:6469554,18549294:0,0,0 -) -g1,11732:6797234,18549294 -) -k1,11733:6797234,18549294:0 -g1,11733:15017022,18549294 -g1,11733:15649314,18549294 -g1,11733:18178480,18549294 -g1,11733:19126917,18549294 -k1,11733:19126917,18549294:1573 -h1,11733:21341510,18549294:0,0,0 -k1,11733:32583029,18549294:11241519 -g1,11733:32583029,18549294 -) -(1,11737:6797234,19215472:25785795,404226,107478 -(1,11735:6797234,19215472:0,0,0 -g1,11735:6797234,19215472 -g1,11735:6797234,19215472 -g1,11735:6469554,19215472 -(1,11735:6469554,19215472:0,0,0 -) -g1,11735:6797234,19215472 -) -g1,11737:7745671,19215472 -g1,11737:9010254,19215472 -h1,11737:14700876,19215472:0,0,0 -k1,11737:32583028,19215472:17882152 -g1,11737:32583028,19215472 -) -(1,11739:6797234,20537010:25785795,404226,101187 -(1,11738:6797234,20537010:0,0,0 -g1,11738:6797234,20537010 -g1,11738:6797234,20537010 -g1,11738:6469554,20537010 -(1,11738:6469554,20537010:0,0,0 -) -g1,11738:6797234,20537010 -) -g1,11739:8377963,20537010 -g1,11739:9326401,20537010 -g1,11739:10590984,20537010 -g1,11739:11855567,20537010 -g1,11739:12804004,20537010 -h1,11739:14384732,20537010:0,0,0 -k1,11739:32583028,20537010:18198296 -g1,11739:32583028,20537010 -) -(1,11740:6797234,21203188:25785795,410518,107478 -h1,11740:6797234,21203188:0,0,0 -k1,11740:15098050,21203188:397174 -k1,11740:15811371,21203188:397175 -k1,11740:17156982,21203188:397174 -k1,11740:19134885,21203188:397175 -k1,11740:21745079,21203188:397174 -k1,11740:25303710,21203188:397174 -k1,11740:26333176,21203188:397175 -k1,11740:27362641,21203188:397174 -k1,11740:28708253,21203188:397175 -k1,11740:31002301,21203188:397174 -k1,11740:32583029,21203188:0 -) -(1,11740:6797234,21869366:25785795,369623,6290 -k1,11740:6797234,21869366:14156 -h1,11740:9024410,21869366:0,0,0 -k1,11740:32583030,21869366:23558620 -g1,11740:32583030,21869366 -) -(1,11744:6797234,22535544:25785795,404226,107478 -(1,11742:6797234,22535544:0,0,0 -g1,11742:6797234,22535544 -g1,11742:6797234,22535544 -g1,11742:6469554,22535544 -(1,11742:6469554,22535544:0,0,0 -) -g1,11742:6797234,22535544 -) -g1,11744:7745671,22535544 -g1,11744:9010254,22535544 -g1,11744:13120148,22535544 -g1,11744:13436294,22535544 -g1,11744:13752440,22535544 -g1,11744:14068586,22535544 -g1,11744:14384732,22535544 -g1,11744:14700878,22535544 -g1,11744:15017024,22535544 -h1,11744:20707646,22535544:0,0,0 -k1,11744:32583029,22535544:11875383 -g1,11744:32583029,22535544 -) -(1,11746:6797234,23857082:25785795,410518,107478 -(1,11745:6797234,23857082:0,0,0 -g1,11745:6797234,23857082 -g1,11745:6797234,23857082 -g1,11745:6469554,23857082 -(1,11745:6469554,23857082:0,0,0 -) -g1,11745:6797234,23857082 -) -g1,11746:8377963,23857082 -g1,11746:9010255,23857082 -g1,11746:11223275,23857082 -g1,11746:12804004,23857082 -g1,11746:15333170,23857082 -g1,11746:16281607,23857082 -g1,11746:17546190,23857082 -g1,11746:19759210,23857082 -k1,11746:19759210,23857082:14156 -h1,11746:23250968,23857082:0,0,0 -k1,11746:32583029,23857082:9332061 -g1,11746:32583029,23857082 -) -(1,11750:6797234,24523260:25785795,404226,101187 -(1,11748:6797234,24523260:0,0,0 -g1,11748:6797234,24523260 -g1,11748:6797234,24523260 -g1,11748:6469554,24523260 -(1,11748:6469554,24523260:0,0,0 -) -g1,11748:6797234,24523260 -) -g1,11750:7745671,24523260 -g1,11750:9010254,24523260 -g1,11750:10274837,24523260 -g1,11750:11539420,24523260 -g1,11750:12487857,24523260 -h1,11750:14068585,24523260:0,0,0 -k1,11750:32583029,24523260:18514444 -g1,11750:32583029,24523260 -) -(1,11752:6797234,25844798:25785795,410518,101187 -(1,11751:6797234,25844798:0,0,0 -g1,11751:6797234,25844798 -g1,11751:6797234,25844798 -g1,11751:6469554,25844798 -(1,11751:6469554,25844798:0,0,0 -) -g1,11751:6797234,25844798 -) -k1,11752:6797234,25844798:0 -g1,11752:13436294,25844798 -g1,11752:14384732,25844798 -g1,11752:15017024,25844798 -g1,11752:16913898,25844798 -g1,11752:18810772,25844798 -k1,11752:18810772,25844798:0 -h1,11752:20075355,25844798:0,0,0 -k1,11752:32583029,25844798:12507674 -g1,11752:32583029,25844798 -) -(1,11759:6797234,26510976:25785795,404226,101187 -(1,11754:6797234,26510976:0,0,0 -g1,11754:6797234,26510976 -g1,11754:6797234,26510976 -g1,11754:6469554,26510976 -(1,11754:6469554,26510976:0,0,0 -) -g1,11754:6797234,26510976 -) -g1,11759:7745671,26510976 -g1,11759:8061817,26510976 -g1,11759:8377963,26510976 -g1,11759:10274837,26510976 -h1,11759:11539420,26510976:0,0,0 -k1,11759:32583028,26510976:21043608 -g1,11759:32583028,26510976 -) -(1,11759:6797234,27177154:25785795,388497,0 -h1,11759:6797234,27177154:0,0,0 -g1,11759:7745671,27177154 -g1,11759:8377963,27177154 -g1,11759:8694109,27177154 -g1,11759:9010255,27177154 -g1,11759:9326401,27177154 -g1,11759:9642547,27177154 -g1,11759:10274839,27177154 -g1,11759:10590985,27177154 -g1,11759:10907131,27177154 -g1,11759:11223277,27177154 -h1,11759:11539423,27177154:0,0,0 -k1,11759:32583029,27177154:21043606 -g1,11759:32583029,27177154 -) -(1,11759:6797234,27843332:25785795,388497,9436 -h1,11759:6797234,27843332:0,0,0 -g1,11759:7745671,27843332 -g1,11759:8377963,27843332 -g1,11759:8694109,27843332 -g1,11759:9010255,27843332 -g1,11759:9326401,27843332 -g1,11759:9642547,27843332 -g1,11759:10274839,27843332 -g1,11759:10590985,27843332 -g1,11759:10907131,27843332 -h1,11759:11539422,27843332:0,0,0 -k1,11759:32583030,27843332:21043608 -g1,11759:32583030,27843332 -) -(1,11759:6797234,28509510:25785795,388497,9436 -h1,11759:6797234,28509510:0,0,0 -g1,11759:7745671,28509510 -g1,11759:8377963,28509510 -g1,11759:8694109,28509510 -g1,11759:9010255,28509510 -g1,11759:9326401,28509510 -g1,11759:9642547,28509510 -g1,11759:10274839,28509510 -g1,11759:10590985,28509510 -g1,11759:10907131,28509510 -g1,11759:11223277,28509510 -h1,11759:11539423,28509510:0,0,0 -k1,11759:32583029,28509510:21043606 -g1,11759:32583029,28509510 -) -(1,11761:6797234,29831048:25785795,404226,101187 -(1,11760:6797234,29831048:0,0,0 -g1,11760:6797234,29831048 -g1,11760:6797234,29831048 -g1,11760:6469554,29831048 -(1,11760:6469554,29831048:0,0,0 -) -g1,11760:6797234,29831048 -) -k1,11761:6797234,29831048:0 -g1,11761:9642545,29831048 -g1,11761:10274837,29831048 -g1,11761:12171711,29831048 -k1,11761:12171711,29831048:9437 -h1,11761:12813439,29831048:0,0,0 -k1,11761:32583029,29831048:19769590 -g1,11761:32583029,29831048 -) -] -) -g1,11763:32583029,29932235 -g1,11763:6797234,29932235 -g1,11763:6797234,29932235 -g1,11763:32583029,29932235 -g1,11763:32583029,29932235 -) -h1,11763:6797234,30128843:0,0,0 -(1,11767:6797234,31494619:25785795,513147,134348 -h1,11766:6797234,31494619:983040,0,0 -k1,11766:8583513,31494619:175404 -k1,11766:9778002,31494619:175404 -k1,11766:12614823,31494619:175404 -k1,11766:14645551,31494619:175404 -k1,11766:15033924,31494619:175381 -k1,11766:16722554,31494619:175404 -k1,11766:17253818,31494619:175404 -k1,11766:18818585,31494619:175404 -k1,11766:20870285,31494619:175404 -k1,11766:23178887,31494619:175405 -k1,11766:24426460,31494619:175404 -k1,11766:25620949,31494619:175404 -k1,11766:27449826,31494619:175404 -k1,11766:31593435,31494619:175404 -k1,11767:32583029,31494619:0 -) -(1,11767:6797234,32336107:25785795,513147,134348 -k1,11766:7976328,32336107:192122 -k1,11766:8819878,32336107:192122 -k1,11766:9778116,32336107:192122 -k1,11766:10415219,32336107:192114 -k1,11766:12897169,32336107:192122 -k1,11766:16069868,32336107:192122 -k1,11766:19461458,32336107:192122 -k1,11766:20850267,32336107:192122 -k1,11766:23868957,32336107:192122 -k1,11766:25759116,32336107:192121 -k1,11766:27107948,32336107:192122 -k1,11766:27959362,32336107:192122 -k1,11766:29170569,32336107:192122 -k1,11766:32583029,32336107:0 -) -(1,11767:6797234,33177595:25785795,513147,134348 -k1,11766:7499084,33177595:170353 -k1,11766:8025296,33177595:170352 -k1,11766:10891145,33177595:170353 -k1,11766:12252942,33177595:170352 -k1,11766:13442380,33177595:170353 -k1,11766:15314703,33177595:170353 -k1,11766:16016552,33177595:170352 -k1,11766:17426846,33177595:170353 -k1,11766:18128696,33177595:170353 -k1,11766:20647858,33177595:170352 -k1,11766:23580554,33177595:170353 -k1,11766:24366944,33177595:170352 -k1,11766:25821803,33177595:170353 -k1,11766:26348016,33177595:170353 -k1,11766:27618062,33177595:170352 -k1,11766:29523808,33177595:170353 -k1,11767:32583029,33177595:0 -) -(1,11767:6797234,34019083:25785795,513147,134348 -k1,11766:7879283,34019083:220251 -k1,11766:10789133,34019083:220252 -k1,11766:12141846,34019083:220251 -k1,11766:15922669,34019083:220252 -k1,11766:18778123,34019083:220251 -k1,11766:19354234,34019083:220251 -k1,11766:22269982,34019083:220252 -k1,11766:23681678,34019083:220251 -k1,11766:24672632,34019083:220251 -k1,11766:26852410,34019083:220252 -k1,11766:27731953,34019083:220251 -k1,11766:28971290,34019083:220252 -k1,11766:30845014,34019083:220251 -k1,11766:32583029,34019083:0 -) -(1,11767:6797234,34860571:25785795,513147,134348 -g1,11766:8280969,34860571 -g1,11766:9011695,34860571 -g1,11766:10277195,34860571 -g1,11766:10832284,34860571 -g1,11766:13900679,34860571 -g1,11766:16448718,34860571 -g1,11766:17457317,34860571 -g1,11766:18859787,34860571 -g1,11766:22485238,34860571 -g1,11766:23215964,34860571 -g1,11766:25784975,34860571 -g1,11766:26340064,34860571 -g1,11766:27716320,34860571 -k1,11767:32583029,34860571:3367901 -g1,11767:32583029,34860571 -) -] -g1,11821:32583029,35519207 -) -] -(1,11821:32583029,45706769:0,0,0 -g1,11821:32583029,45706769 -) -) -] -(1,11821:6630773,47279633:25952256,0,0 -h1,11821:6630773,47279633:25952256,0,0 -) -] -(1,11821:4262630,4025873:0,0,0 -[1,11821:-473656,4025873:0,0,0 -(1,11821:-473656,-710413:0,0,0 -(1,11821:-473656,-710413:0,0,0 -g1,11821:-473656,-710413 -) -g1,11821:-473656,-710413 -) -] -) -] -!20699 -}199 +[1,11038:3078558,4812305:0,0,0 +(1,11038:3078558,49800853:0,16384,2228224 +g1,11038:29030814,49800853 +g1,11038:36135244,49800853 +(1,8606:36135244,49800853:1720320,16384,2228224 +(1,8606:36135244,52029077:16384,1703936,0 +[1,8606:36135244,52029077:25952256,1703936,0 +(1,8606:36135244,51504789:25952256,1179648,0 +(1,8606:36135244,51504789:16384,1179648,0 +r1,11038:36151628,51504789:16384,1179648,0 +) +k1,8606:62087500,51504789:25935872 +g1,8606:62087500,51504789 +) +] +) +g1,8606:36675916,49800853 +(1,8606:36675916,49800853:1179648,16384,0 +r1,11038:37855564,49800853:1179648,16384,0 +) +) +k1,11038:3078556,49800853:-34777008 +) +] +g1,11038:6630773,4812305 +k1,11038:21643106,4812305:13816956 +g1,11038:23265777,4812305 +g1,11038:24088253,4812305 +g1,11038:28572226,4812305 +g1,11038:29981905,4812305 +) +) +] +[1,11038:6630773,45706769:25952256,40108032,0 +(1,11038:6630773,45706769:25952256,40108032,0 +(1,11038:6630773,45706769:0,0,0 +g1,11038:6630773,45706769 +) +[1,11038:6630773,45706769:25952256,40108032,0 +v1,10994:6630773,6254097:0,393216,0 +(1,11028:6630773,23424516:25952256,17563635,196608 +g1,11028:6630773,23424516 +g1,11028:6630773,23424516 +g1,11028:6434165,23424516 +(1,11028:6434165,23424516:0,17563635,196608 +r1,11038:32779637,23424516:26345472,17760243,196608 +k1,11028:6434165,23424516:-26345472 +) +(1,11028:6434165,23424516:26345472,17563635,196608 +[1,11028:6630773,23424516:25952256,17367027,0 +(1,10996:6630773,6481928:25952256,424439,79822 +(1,10995:6630773,6481928:0,0,0 +g1,10995:6630773,6481928 +g1,10995:6630773,6481928 +g1,10995:6303093,6481928 +(1,10995:6303093,6481928:0,0,0 +) +g1,10995:6630773,6481928 +) +g1,10996:9286405,6481928 +g1,10996:10282267,6481928 +k1,10996:10282267,6481928:0 +h1,10996:12273991,6481928:0,0,0 +k1,10996:32583029,6481928:20309038 +g1,10996:32583029,6481928 +) +(1,10997:6630773,7166783:25952256,424439,106246 +h1,10997:6630773,7166783:0,0,0 +g1,10997:8954451,7166783 +g1,10997:9950313,7166783 +g1,10997:12273991,7166783 +g1,10997:12937899,7166783 +g1,10997:13933761,7166783 +g1,10997:14597669,7166783 +g1,10997:15261577,7166783 +g1,10997:15925485,7166783 +g1,10997:16589393,7166783 +g1,10997:17585255,7166783 +g1,10997:18249163,7166783 +g1,10997:18913071,7166783 +g1,10997:19576979,7166783 +g1,10997:20240887,7166783 +k1,10997:20240887,7166783:0 +h1,10997:22564565,7166783:0,0,0 +k1,10997:32583029,7166783:10018464 +g1,10997:32583029,7166783 +) +(1,10998:6630773,7851638:25952256,431045,112852 +h1,10998:6630773,7851638:0,0,0 +g1,10998:7958589,7851638 +g1,10998:8954451,7851638 +g1,10998:9950313,7851638 +g1,10998:14929622,7851638 +g1,10998:15593530,7851638 +g1,10998:18581115,7851638 +h1,10998:18913069,7851638:0,0,0 +k1,10998:32583029,7851638:13669960 +g1,10998:32583029,7851638 +) +(1,10999:6630773,8536493:25952256,424439,106246 +h1,10999:6630773,8536493:0,0,0 +g1,10999:6962727,8536493 +g1,10999:7294681,8536493 +g1,10999:7626635,8536493 +g1,10999:11942036,8536493 +g1,10999:12937898,8536493 +g1,10999:18249161,8536493 +g1,10999:19908931,8536493 +g1,10999:20572839,8536493 +h1,10999:23228470,8536493:0,0,0 +k1,10999:32583029,8536493:9354559 +g1,10999:32583029,8536493 +) +(1,11000:6630773,9221348:25952256,424439,79822 +h1,11000:6630773,9221348:0,0,0 +g1,11000:6962727,9221348 +g1,11000:7294681,9221348 +g1,11000:7626635,9221348 +h1,11000:7958589,9221348:0,0,0 +k1,11000:32583029,9221348:24624440 +g1,11000:32583029,9221348 +) +(1,11001:6630773,9906203:25952256,424439,86428 +h1,11001:6630773,9906203:0,0,0 +g1,11001:10946174,9906203 +g1,11001:14265713,9906203 +g1,11001:14929621,9906203 +h1,11001:15593529,9906203:0,0,0 +k1,11001:32583029,9906203:16989500 +g1,11001:32583029,9906203 +) +(1,11011:6630773,10722130:25952256,431045,9908 +(1,11003:6630773,10722130:0,0,0 +g1,11003:6630773,10722130 +g1,11003:6630773,10722130 +g1,11003:6303093,10722130 +(1,11003:6303093,10722130:0,0,0 +) +g1,11003:6630773,10722130 +) +g1,11011:7626635,10722130 +g1,11011:9286405,10722130 +g1,11011:10282267,10722130 +h1,11011:10614221,10722130:0,0,0 +k1,11011:32583029,10722130:21968808 +g1,11011:32583029,10722130 +) +(1,11011:6630773,11406985:25952256,431045,33029 +h1,11011:6630773,11406985:0,0,0 +g1,11011:7626635,11406985 +g1,11011:7958589,11406985 +g1,11011:8622497,11406985 +g1,11011:10614221,11406985 +g1,11011:11610083,11406985 +h1,11011:12273991,11406985:0,0,0 +k1,11011:32583029,11406985:20309038 +g1,11011:32583029,11406985 +) +(1,11011:6630773,12091840:25952256,424439,86428 +h1,11011:6630773,12091840:0,0,0 +g1,11011:7626635,12091840 +g1,11011:7958589,12091840 +g1,11011:8290543,12091840 +g1,11011:9618359,12091840 +g1,11011:12273991,12091840 +g1,11011:15593530,12091840 +g1,11011:16921346,12091840 +h1,11011:18249162,12091840:0,0,0 +k1,11011:32583029,12091840:14333867 +g1,11011:32583029,12091840 +) +(1,11011:6630773,12776695:25952256,431045,33029 +h1,11011:6630773,12776695:0,0,0 +g1,11011:7626635,12776695 +g1,11011:7958589,12776695 +g1,11011:8622497,12776695 +g1,11011:10614221,12776695 +g1,11011:11610083,12776695 +h1,11011:12273991,12776695:0,0,0 +k1,11011:32583029,12776695:20309038 +g1,11011:32583029,12776695 +) +(1,11011:6630773,13461550:25952256,424439,86428 +h1,11011:6630773,13461550:0,0,0 +g1,11011:7626635,13461550 +g1,11011:7958589,13461550 +g1,11011:8290543,13461550 +g1,11011:9618359,13461550 +g1,11011:12273991,13461550 +g1,11011:15593530,13461550 +g1,11011:16921346,13461550 +h1,11011:18249162,13461550:0,0,0 +k1,11011:32583029,13461550:14333867 +g1,11011:32583029,13461550 +) +(1,11011:6630773,14146405:25952256,431045,33029 +h1,11011:6630773,14146405:0,0,0 +g1,11011:7626635,14146405 +g1,11011:7958589,14146405 +g1,11011:8622497,14146405 +g1,11011:10614221,14146405 +g1,11011:11610083,14146405 +h1,11011:12273991,14146405:0,0,0 +k1,11011:32583029,14146405:20309038 +g1,11011:32583029,14146405 +) +(1,11011:6630773,14831260:25952256,424439,86428 +h1,11011:6630773,14831260:0,0,0 +g1,11011:7626635,14831260 +g1,11011:7958589,14831260 +g1,11011:8290543,14831260 +g1,11011:9618359,14831260 +g1,11011:12273991,14831260 +g1,11011:15593530,14831260 +g1,11011:16921346,14831260 +h1,11011:18249162,14831260:0,0,0 +k1,11011:32583029,14831260:14333867 +g1,11011:32583029,14831260 +) +(1,11013:6630773,15647187:25952256,424439,86428 +(1,11012:6630773,15647187:0,0,0 +g1,11012:6630773,15647187 +g1,11012:6630773,15647187 +g1,11012:6303093,15647187 +(1,11012:6303093,15647187:0,0,0 +) +g1,11012:6630773,15647187 +) +k1,11013:6630773,15647187:0 +g1,11013:11610083,15647187 +h1,11013:14265714,15647187:0,0,0 +k1,11013:32583030,15647187:18317316 +g1,11013:32583030,15647187 +) +(1,11027:6630773,16463114:25952256,431045,106246 +(1,11015:6630773,16463114:0,0,0 +g1,11015:6630773,16463114 +g1,11015:6630773,16463114 +g1,11015:6303093,16463114 +(1,11015:6303093,16463114:0,0,0 +) +g1,11015:6630773,16463114 +) +g1,11027:7626635,16463114 +g1,11027:10614220,16463114 +g1,11027:11610082,16463114 +g1,11027:14597667,16463114 +h1,11027:16257437,16463114:0,0,0 +k1,11027:32583029,16463114:16325592 +g1,11027:32583029,16463114 +) +(1,11027:6630773,17147969:25952256,398014,0 +h1,11027:6630773,17147969:0,0,0 +h1,11027:7294681,17147969:0,0,0 +k1,11027:32583029,17147969:25288348 +g1,11027:32583029,17147969 +) +(1,11027:6630773,17832824:25952256,424439,106246 +h1,11027:6630773,17832824:0,0,0 +g1,11027:7626635,17832824 +g1,11027:9618359,17832824 +g1,11027:10614221,17832824 +g1,11027:11278129,17832824 +g1,11027:11942037,17832824 +h1,11027:12273991,17832824:0,0,0 +k1,11027:32583029,17832824:20309038 +g1,11027:32583029,17832824 +) +(1,11027:6630773,18517679:25952256,424439,106246 +h1,11027:6630773,18517679:0,0,0 +g1,11027:7626635,18517679 +g1,11027:9618359,18517679 +g1,11027:10614221,18517679 +g1,11027:11278129,18517679 +g1,11027:11942037,18517679 +g1,11027:12605945,18517679 +g1,11027:13269853,18517679 +h1,11027:13601807,18517679:0,0,0 +k1,11027:32583029,18517679:18981222 +g1,11027:32583029,18517679 +) +(1,11027:6630773,19202534:25952256,424439,106246 +h1,11027:6630773,19202534:0,0,0 +g1,11027:7626635,19202534 +g1,11027:9618359,19202534 +g1,11027:10614221,19202534 +g1,11027:11278129,19202534 +g1,11027:11942037,19202534 +g1,11027:12605945,19202534 +g1,11027:13269853,19202534 +h1,11027:15261577,19202534:0,0,0 +k1,11027:32583029,19202534:17321452 +g1,11027:32583029,19202534 +) +(1,11027:6630773,19887389:25952256,431045,106246 +h1,11027:6630773,19887389:0,0,0 +g1,11027:7626635,19887389 +g1,11027:7958589,19887389 +g1,11027:8290543,19887389 +g1,11027:10614221,19887389 +g1,11027:10946175,19887389 +g1,11027:11278129,19887389 +g1,11027:11610083,19887389 +g1,11027:11942037,19887389 +g1,11027:13269853,19887389 +g1,11027:14265715,19887389 +g1,11027:15593531,19887389 +g1,11027:16589393,19887389 +g1,11027:17585255,19887389 +g1,11027:17917209,19887389 +g1,11027:18249163,19887389 +g1,11027:18581117,19887389 +g1,11027:18913071,19887389 +g1,11027:19245025,19887389 +g1,11027:19908933,19887389 +g1,11027:20240887,19887389 +g1,11027:20572841,19887389 +g1,11027:20904795,19887389 +k1,11027:20904795,19887389:0 +h1,11027:22896519,19887389:0,0,0 +k1,11027:32583029,19887389:9686510 +g1,11027:32583029,19887389 +) +(1,11027:6630773,20572244:25952256,407923,9908 +h1,11027:6630773,20572244:0,0,0 +g1,11027:7626635,20572244 +g1,11027:8290543,20572244 +g1,11027:8622497,20572244 +g1,11027:8954451,20572244 +g1,11027:9286405,20572244 +g1,11027:9618359,20572244 +g1,11027:9950313,20572244 +g1,11027:10614221,20572244 +h1,11027:12937899,20572244:0,0,0 +k1,11027:32583029,20572244:19645130 +g1,11027:32583029,20572244 +) +(1,11027:6630773,21257099:25952256,407923,9908 +h1,11027:6630773,21257099:0,0,0 +g1,11027:7626635,21257099 +g1,11027:8290543,21257099 +g1,11027:8622497,21257099 +g1,11027:8954451,21257099 +g1,11027:9286405,21257099 +g1,11027:9618359,21257099 +g1,11027:9950313,21257099 +g1,11027:10614221,21257099 +g1,11027:13269853,21257099 +g1,11027:14265715,21257099 +g1,11027:14597669,21257099 +g1,11027:14929623,21257099 +g1,11027:17585255,21257099 +g1,11027:19908933,21257099 +g1,11027:23228473,21257099 +h1,11027:24224335,21257099:0,0,0 +k1,11027:32583029,21257099:8358694 +g1,11027:32583029,21257099 +) +(1,11027:6630773,21941954:25952256,407923,9908 +h1,11027:6630773,21941954:0,0,0 +g1,11027:7626635,21941954 +g1,11027:8290543,21941954 +g1,11027:8622497,21941954 +g1,11027:8954451,21941954 +g1,11027:9286405,21941954 +g1,11027:9618359,21941954 +g1,11027:9950313,21941954 +g1,11027:10614221,21941954 +g1,11027:13269853,21941954 +g1,11027:13601807,21941954 +g1,11027:14265715,21941954 +g1,11027:14597669,21941954 +g1,11027:14929623,21941954 +g1,11027:15261577,21941954 +g1,11027:17585255,21941954 +g1,11027:19908933,21941954 +g1,11027:23228473,21941954 +h1,11027:24224335,21941954:0,0,0 +k1,11027:32583029,21941954:8358694 +g1,11027:32583029,21941954 +) +(1,11027:6630773,22626809:25952256,398014,0 +h1,11027:6630773,22626809:0,0,0 +g1,11027:7626635,22626809 +k1,11027:7626635,22626809:0 +h1,11027:8622497,22626809:0,0,0 +k1,11027:32583029,22626809:23960532 +g1,11027:32583029,22626809 +) +(1,11027:6630773,23311664:25952256,431045,112852 +h1,11027:6630773,23311664:0,0,0 +g1,11027:7626635,23311664 +g1,11027:10282267,23311664 +g1,11027:12605945,23311664 +g1,11027:12937899,23311664 +g1,11027:13601807,23311664 +g1,11027:15593531,23311664 +g1,11027:17585255,23311664 +g1,11027:19245025,23311664 +g1,11027:20904795,23311664 +g1,11027:22232611,23311664 +g1,11027:23892381,23311664 +g1,11027:25220197,23311664 +g1,11027:26548013,23311664 +g1,11027:27211921,23311664 +g1,11027:27875829,23311664 +h1,11027:28207783,23311664:0,0,0 +k1,11027:32583029,23311664:4375246 +g1,11027:32583029,23311664 +) +] +) +g1,11028:32583029,23424516 +g1,11028:6630773,23424516 +g1,11028:6630773,23424516 +g1,11028:32583029,23424516 +g1,11028:32583029,23424516 +) +h1,11028:6630773,23621124:0,0,0 +(1,11031:6630773,26452284:25952256,32768,229376 +(1,11031:6630773,26452284:0,32768,229376 +(1,11031:6630773,26452284:5505024,32768,229376 +r1,11038:12135797,26452284:5505024,262144,229376 +) +k1,11031:6630773,26452284:-5505024 +) +(1,11031:6630773,26452284:25952256,32768,0 +r1,11038:32583029,26452284:25952256,32768,0 +) +) +(1,11031:6630773,28084136:25952256,606339,161218 +(1,11031:6630773,28084136:2464678,582746,14155 +g1,11031:6630773,28084136 +g1,11031:9095451,28084136 +) +g1,11031:12303307,28084136 +k1,11031:32583029,28084136:17283416 +g1,11031:32583029,28084136 +) +(1,11033:6630773,29342432:25952256,513147,134348 +k1,11032:7835329,29342432:162534 +k1,11032:10273274,29342432:162535 +k1,11032:13168659,29342432:162534 +k1,11032:14140564,29342432:162535 +k1,11032:15322183,29342432:162534 +k1,11032:17859743,29342432:162535 +k1,11032:18689433,29342432:162534 +k1,11032:19266774,29342432:162498 +k1,11032:22558652,29342432:162534 +k1,11032:23337225,29342432:162535 +k1,11032:24518844,29342432:162534 +k1,11032:27025602,29342432:162535 +k1,11032:29779430,29342432:162534 +k1,11032:30154920,29342432:162498 +k1,11032:32583029,29342432:0 +) +(1,11033:6630773,30207512:25952256,513147,134348 +k1,11032:7798000,30207512:148142 +k1,11032:9858483,30207512:148142 +k1,11032:11194138,30207512:148143 +k1,11032:12372506,30207512:148142 +k1,11032:13136686,30207512:148142 +k1,11032:13734405,30207512:148142 +k1,11032:18446729,30207512:148397 +k1,11032:19084425,30207512:148142 +k1,11032:20754968,30207512:148142 +k1,11032:21519148,30207512:148142 +k1,11032:24697676,30207512:148143 +k1,11032:27627821,30207512:148142 +k1,11032:29907194,30207512:148142 +k1,11032:32583029,30207512:0 +) +(1,11033:6630773,31072592:25952256,505283,95026 +g1,11032:8021447,31072592 +g1,11032:11343467,31072592 +g1,11032:11992273,31072592 +k1,11033:32583028,31072592:17078680 +g1,11033:32583028,31072592 +) +] +(1,11038:32583029,45706769:0,0,0 +g1,11038:32583029,45706769 +) +) +] +(1,11038:6630773,47279633:25952256,0,0 +h1,11038:6630773,47279633:25952256,0,0 +) +] +(1,11038:4262630,4025873:0,0,0 +[1,11038:-473656,4025873:0,0,0 +(1,11038:-473656,-710413:0,0,0 +(1,11038:-473656,-710413:0,0,0 +g1,11038:-473656,-710413 +) +g1,11038:-473656,-710413 +) +] +) +] +!15686 +}175 !12 -{200 -[1,11836:4262630,47279633:28320399,43253760,0 -(1,11836:4262630,4025873:0,0,0 -[1,11836:-473656,4025873:0,0,0 -(1,11836:-473656,-710413:0,0,0 -(1,11836:-473656,-644877:0,0,0 -k1,11836:-473656,-644877:-65536 +{176 +[1,11058:4262630,47279633:28320399,43253760,11795 +(1,11058:4262630,4025873:0,0,0 +[1,11058:-473656,4025873:0,0,0 +(1,11058:-473656,-710413:0,0,0 +(1,11058:-473656,-644877:0,0,0 +k1,11058:-473656,-644877:-65536 ) -(1,11836:-473656,4736287:0,0,0 -k1,11836:-473656,4736287:5209943 +(1,11058:-473656,4736287:0,0,0 +k1,11058:-473656,4736287:5209943 ) -g1,11836:-473656,-710413 +g1,11058:-473656,-710413 ) ] ) -[1,11836:6630773,47279633:25952256,43253760,0 -[1,11836:6630773,4812305:25952256,786432,0 -(1,11836:6630773,4812305:25952256,505283,134348 -(1,11836:6630773,4812305:25952256,505283,134348 -g1,11836:3078558,4812305 -[1,11836:3078558,4812305:0,0,0 -(1,11836:3078558,2439708:0,1703936,0 -k1,11836:1358238,2439708:-1720320 -(1,10825:1358238,2439708:1720320,1703936,0 -(1,10825:1358238,2439708:1179648,16384,0 -r1,11836:2537886,2439708:1179648,16384,0 +[1,11058:6630773,47279633:25952256,43253760,11795 +[1,11058:6630773,4812305:25952256,786432,0 +(1,11058:6630773,4812305:25952256,0,0 +(1,11058:6630773,4812305:25952256,0,0 +g1,11058:3078558,4812305 +[1,11058:3078558,4812305:0,0,0 +(1,11058:3078558,2439708:0,1703936,0 +k1,11058:1358238,2439708:-1720320 +(1,11038:1358238,2439708:1720320,1703936,0 +(1,11038:1358238,2439708:1179648,16384,0 +r1,11058:2537886,2439708:1179648,16384,0 ) -g1,10825:3062174,2439708 -(1,10825:3062174,2439708:16384,1703936,0 -[1,10825:3062174,2439708:25952256,1703936,0 -(1,10825:3062174,1915420:25952256,1179648,0 -(1,10825:3062174,1915420:16384,1179648,0 -r1,11836:3078558,1915420:16384,1179648,0 +g1,11038:3062174,2439708 +(1,11038:3062174,2439708:16384,1703936,0 +[1,11038:3062174,2439708:25952256,1703936,0 +(1,11038:3062174,1915420:25952256,1179648,0 +(1,11038:3062174,1915420:16384,1179648,0 +r1,11058:3078558,1915420:16384,1179648,0 ) -k1,10825:29014430,1915420:25935872 -g1,10825:29014430,1915420 +k1,11038:29014430,1915420:25935872 +g1,11038:29014430,1915420 ) ] ) ) ) ] -[1,11836:3078558,4812305:0,0,0 -(1,11836:3078558,2439708:0,1703936,0 -g1,11836:29030814,2439708 -g1,11836:36135244,2439708 -(1,10825:36135244,2439708:1720320,1703936,0 -(1,10825:36135244,2439708:16384,1703936,0 -[1,10825:36135244,2439708:25952256,1703936,0 -(1,10825:36135244,1915420:25952256,1179648,0 -(1,10825:36135244,1915420:16384,1179648,0 -r1,11836:36151628,1915420:16384,1179648,0 +[1,11058:3078558,4812305:0,0,0 +(1,11058:3078558,2439708:0,1703936,0 +g1,11058:29030814,2439708 +g1,11058:36135244,2439708 +(1,11038:36135244,2439708:1720320,1703936,0 +(1,11038:36135244,2439708:16384,1703936,0 +[1,11038:36135244,2439708:25952256,1703936,0 +(1,11038:36135244,1915420:25952256,1179648,0 +(1,11038:36135244,1915420:16384,1179648,0 +r1,11058:36151628,1915420:16384,1179648,0 ) -k1,10825:62087500,1915420:25935872 -g1,10825:62087500,1915420 +k1,11038:62087500,1915420:25935872 +g1,11038:62087500,1915420 ) ] ) -g1,10825:36675916,2439708 -(1,10825:36675916,2439708:1179648,16384,0 -r1,11836:37855564,2439708:1179648,16384,0 +g1,11038:36675916,2439708 +(1,11038:36675916,2439708:1179648,16384,0 +r1,11058:37855564,2439708:1179648,16384,0 ) ) -k1,11836:3078556,2439708:-34777008 +k1,11058:3078556,2439708:-34777008 ) ] -[1,11836:3078558,4812305:0,0,0 -(1,11836:3078558,49800853:0,16384,2228224 -k1,11836:1358238,49800853:-1720320 -(1,10825:1358238,49800853:1720320,16384,2228224 -(1,10825:1358238,49800853:1179648,16384,0 -r1,11836:2537886,49800853:1179648,16384,0 +[1,11058:3078558,4812305:0,0,0 +(1,11058:3078558,49800853:0,16384,2228224 +k1,11058:1358238,49800853:-1720320 +(1,11038:1358238,49800853:1720320,16384,2228224 +(1,11038:1358238,49800853:1179648,16384,0 +r1,11058:2537886,49800853:1179648,16384,0 ) -g1,10825:3062174,49800853 -(1,10825:3062174,52029077:16384,1703936,0 -[1,10825:3062174,52029077:25952256,1703936,0 -(1,10825:3062174,51504789:25952256,1179648,0 -(1,10825:3062174,51504789:16384,1179648,0 -r1,11836:3078558,51504789:16384,1179648,0 +g1,11038:3062174,49800853 +(1,11038:3062174,52029077:16384,1703936,0 +[1,11038:3062174,52029077:25952256,1703936,0 +(1,11038:3062174,51504789:25952256,1179648,0 +(1,11038:3062174,51504789:16384,1179648,0 +r1,11058:3078558,51504789:16384,1179648,0 ) -k1,10825:29014430,51504789:25935872 -g1,10825:29014430,51504789 +k1,11038:29014430,51504789:25935872 +g1,11038:29014430,51504789 ) ] ) ) ) ] -[1,11836:3078558,4812305:0,0,0 -(1,11836:3078558,49800853:0,16384,2228224 -g1,11836:29030814,49800853 -g1,11836:36135244,49800853 -(1,10825:36135244,49800853:1720320,16384,2228224 -(1,10825:36135244,52029077:16384,1703936,0 -[1,10825:36135244,52029077:25952256,1703936,0 -(1,10825:36135244,51504789:25952256,1179648,0 -(1,10825:36135244,51504789:16384,1179648,0 -r1,11836:36151628,51504789:16384,1179648,0 +[1,11058:3078558,4812305:0,0,0 +(1,11058:3078558,49800853:0,16384,2228224 +g1,11058:29030814,49800853 +g1,11058:36135244,49800853 +(1,11038:36135244,49800853:1720320,16384,2228224 +(1,11038:36135244,52029077:16384,1703936,0 +[1,11038:36135244,52029077:25952256,1703936,0 +(1,11038:36135244,51504789:25952256,1179648,0 +(1,11038:36135244,51504789:16384,1179648,0 +r1,11058:36151628,51504789:16384,1179648,0 ) -k1,10825:62087500,51504789:25935872 -g1,10825:62087500,51504789 +k1,11038:62087500,51504789:25935872 +g1,11038:62087500,51504789 ) ] ) -g1,10825:36675916,49800853 -(1,10825:36675916,49800853:1179648,16384,0 -r1,11836:37855564,49800853:1179648,16384,0 +g1,11038:36675916,49800853 +(1,11038:36675916,49800853:1179648,16384,0 +r1,11058:37855564,49800853:1179648,16384,0 ) ) -k1,11836:3078556,49800853:-34777008 +k1,11058:3078556,49800853:-34777008 ) ] -g1,11836:6630773,4812305 -g1,11836:6630773,4812305 -g1,11836:9205682,4812305 -g1,11836:11846782,4812305 -k1,11836:31387652,4812305:19540870 -) -) -] -[1,11836:6630773,45706769:25952256,40108032,0 -(1,11836:6630773,45706769:25952256,40108032,0 -(1,11836:6630773,45706769:0,0,0 -g1,11836:6630773,45706769 -) -[1,11836:6630773,45706769:25952256,40108032,0 -v1,11821:6630773,6254097:0,393216,0 -(1,11821:6630773,28003902:25952256,22143021,0 -g1,11821:6630773,28003902 -g1,11821:6303093,28003902 -r1,11836:6401397,28003902:98304,22143021,0 -g1,11821:6600626,28003902 -g1,11821:6797234,28003902 -[1,11821:6797234,28003902:25785795,22143021,0 -v1,11769:6797234,6254097:0,393216,0 -(1,11805:6797234,18397063:25785795,12536182,196608 -g1,11805:6797234,18397063 -g1,11805:6797234,18397063 -g1,11805:6600626,18397063 -(1,11805:6600626,18397063:0,12536182,196608 -r1,11836:32779637,18397063:26179011,12732790,196608 -k1,11805:6600625,18397063:-26179012 -) -(1,11805:6600626,18397063:26179011,12536182,196608 -[1,11805:6797234,18397063:25785795,12339574,0 -(1,11771:6797234,6341653:25785795,284164,6290 -(1,11770:6797234,6341653:0,0,0 -g1,11770:6797234,6341653 -g1,11770:6797234,6341653 -g1,11770:6469554,6341653 -(1,11770:6469554,6341653:0,0,0 -) -g1,11770:6797234,6341653 -) -h1,11771:8061817,6341653:0,0,0 -k1,11771:32583029,6341653:24521212 -g1,11771:32583029,6341653 -) -(1,11778:6797234,7007831:25785795,410518,82312 -(1,11773:6797234,7007831:0,0,0 -g1,11773:6797234,7007831 -g1,11773:6797234,7007831 -g1,11773:6469554,7007831 -(1,11773:6469554,7007831:0,0,0 -) -g1,11773:6797234,7007831 -) -g1,11778:7745671,7007831 -g1,11778:10590982,7007831 -g1,11778:11855565,7007831 -h1,11778:13120148,7007831:0,0,0 -k1,11778:32583028,7007831:19462880 -g1,11778:32583028,7007831 -) -(1,11778:6797234,7674009:25785795,404226,76021 -h1,11778:6797234,7674009:0,0,0 -g1,11778:7745671,7674009 -h1,11778:13120148,7674009:0,0,0 -k1,11778:32583028,7674009:19462880 -g1,11778:32583028,7674009 -) -(1,11778:6797234,8340187:25785795,404226,101187 -h1,11778:6797234,8340187:0,0,0 -g1,11778:7745671,8340187 -g1,11778:11223274,8340187 -k1,11778:11223274,8340187:0 -h1,11778:17230042,8340187:0,0,0 -k1,11778:32583029,8340187:15352987 -g1,11778:32583029,8340187 -) -(1,11778:6797234,9006365:25785795,404226,101187 -h1,11778:6797234,9006365:0,0,0 -g1,11778:7745671,9006365 -g1,11778:12171711,9006365 -k1,11778:12171711,9006365:0 -h1,11778:16913897,9006365:0,0,0 -k1,11778:32583029,9006365:15669132 -g1,11778:32583029,9006365 -) -(1,11780:6797234,10327903:25785795,404226,76021 -(1,11779:6797234,10327903:0,0,0 -g1,11779:6797234,10327903 -g1,11779:6797234,10327903 -g1,11779:6469554,10327903 -(1,11779:6469554,10327903:0,0,0 -) -g1,11779:6797234,10327903 -) -g1,11780:8377963,10327903 -g1,11780:9326401,10327903 -k1,11780:9326401,10327903:0 -h1,11780:12171714,10327903:0,0,0 -k1,11780:32583030,10327903:20411316 -g1,11780:32583030,10327903 -) -(1,11781:6797234,10994081:25785795,284164,6290 -h1,11781:6797234,10994081:0,0,0 -h1,11781:8061817,10994081:0,0,0 -k1,11781:32583029,10994081:24521212 -g1,11781:32583029,10994081 -) -(1,11785:6797234,11660259:25785795,404226,76021 -(1,11783:6797234,11660259:0,0,0 -g1,11783:6797234,11660259 -g1,11783:6797234,11660259 -g1,11783:6469554,11660259 -(1,11783:6469554,11660259:0,0,0 -) -g1,11783:6797234,11660259 -) -g1,11785:7745671,11660259 -g1,11785:9010254,11660259 -h1,11785:9326400,11660259:0,0,0 -k1,11785:32583028,11660259:23256628 -g1,11785:32583028,11660259 -) -(1,11787:6797234,12981797:25785795,404226,76021 -(1,11786:6797234,12981797:0,0,0 -g1,11786:6797234,12981797 -g1,11786:6797234,12981797 -g1,11786:6469554,12981797 -(1,11786:6469554,12981797:0,0,0 -) -g1,11786:6797234,12981797 -) -k1,11787:6797234,12981797:0 -h1,11787:9642547,12981797:0,0,0 -k1,11787:32583029,12981797:22940482 -g1,11787:32583029,12981797 -) -(1,11791:6797234,13647975:25785795,404226,76021 -(1,11789:6797234,13647975:0,0,0 -g1,11789:6797234,13647975 -g1,11789:6797234,13647975 -g1,11789:6469554,13647975 -(1,11789:6469554,13647975:0,0,0 -) -g1,11789:6797234,13647975 -) -g1,11791:7745671,13647975 -g1,11791:9010254,13647975 -h1,11791:9958691,13647975:0,0,0 -k1,11791:32583029,13647975:22624338 -g1,11791:32583029,13647975 -) -(1,11793:6797234,14969513:25785795,410518,107478 -(1,11792:6797234,14969513:0,0,0 -g1,11792:6797234,14969513 -g1,11792:6797234,14969513 -g1,11792:6469554,14969513 -(1,11792:6469554,14969513:0,0,0 -) -g1,11792:6797234,14969513 -) -k1,11793:6797234,14969513:0 -h1,11793:14700876,14969513:0,0,0 -k1,11793:32583028,14969513:17882152 -g1,11793:32583028,14969513 -) -(1,11797:6797234,15635691:25785795,404226,107478 -(1,11795:6797234,15635691:0,0,0 -g1,11795:6797234,15635691 -g1,11795:6797234,15635691 -g1,11795:6469554,15635691 -(1,11795:6469554,15635691:0,0,0 -) -g1,11795:6797234,15635691 -) -g1,11797:7745671,15635691 -g1,11797:9010254,15635691 -g1,11797:13120148,15635691 -g1,11797:13436294,15635691 -g1,11797:13752440,15635691 -g1,11797:14068586,15635691 -g1,11797:14384732,15635691 -g1,11797:19126918,15635691 -g1,11797:19443064,15635691 -g1,11797:19759210,15635691 -h1,11797:24817541,15635691:0,0,0 -k1,11797:32583029,15635691:7765488 -g1,11797:32583029,15635691 -) -(1,11799:6797234,16957229:25785795,404226,76021 -(1,11798:6797234,16957229:0,0,0 -g1,11798:6797234,16957229 -g1,11798:6797234,16957229 -g1,11798:6469554,16957229 -(1,11798:6469554,16957229:0,0,0 -) -g1,11798:6797234,16957229 -) -k1,11799:6797234,16957229:0 -h1,11799:9326399,16957229:0,0,0 -k1,11799:32583029,16957229:23256630 -g1,11799:32583029,16957229 -) -(1,11800:6797234,17623407:25785795,410518,107478 -h1,11800:6797234,17623407:0,0,0 -k1,11800:6797234,17623407:0 -h1,11800:14700876,17623407:0,0,0 -k1,11800:32583028,17623407:17882152 -g1,11800:32583028,17623407 -) -(1,11804:6797234,18289585:25785795,404226,107478 -(1,11802:6797234,18289585:0,0,0 -g1,11802:6797234,18289585 -g1,11802:6797234,18289585 -g1,11802:6469554,18289585 -(1,11802:6469554,18289585:0,0,0 -) -g1,11802:6797234,18289585 -) -g1,11804:7745671,18289585 -g1,11804:9010254,18289585 -g1,11804:13752440,18289585 -g1,11804:14068586,18289585 -g1,11804:14384732,18289585 -h1,11804:19443063,18289585:0,0,0 -k1,11804:32583029,18289585:13139966 -g1,11804:32583029,18289585 -) -] -) -g1,11805:32583029,18397063 -g1,11805:6797234,18397063 -g1,11805:6797234,18397063 -g1,11805:32583029,18397063 -g1,11805:32583029,18397063 -) -h1,11805:6797234,18593671:0,0,0 -(1,11809:6797234,19959447:25785795,505283,134348 -h1,11808:6797234,19959447:983040,0,0 -k1,11808:8606816,19959447:198707 -k1,11808:10008764,19959447:198707 -k1,11808:11355662,19959447:198707 -k1,11808:14215787,19959447:198708 -k1,11808:15282846,19959447:198707 -k1,11808:18257003,19959447:198707 -k1,11808:19849661,19959447:198707 -(1,11808:19849661,19959447:0,452978,115847 -r1,11836:22669910,19959447:2820249,568825,115847 -k1,11808:19849661,19959447:-2820249 -) -(1,11808:19849661,19959447:2820249,452978,115847 -k1,11808:19849661,19959447:3277 -h1,11808:22666633,19959447:0,411205,112570 -) -k1,11808:22868617,19959447:198707 -k1,11808:24086409,19959447:198707 -k1,11808:26796457,19959447:198708 -k1,11808:27863516,19959447:198707 -k1,11808:29253668,19959447:198707 -k1,11808:32227169,19959447:198707 -k1,11808:32583029,19959447:0 -) -(1,11809:6797234,20800935:25785795,513147,134348 -k1,11808:8688901,20800935:211324 -k1,11808:9725323,20800935:211324 -k1,11808:12471580,20800935:211324 -k1,11808:16539042,20800935:211324 -k1,11808:18036182,20800935:211324 -k1,11808:20680201,20800935:211323 -k1,11808:23479542,20800935:211324 -k1,11808:24373751,20800935:211324 -k1,11808:28230187,20800935:211324 -k1,11808:29100803,20800935:211324 -k1,11808:31601955,20800935:211324 -k1,11809:32583029,20800935:0 -) -(1,11809:6797234,21642423:25785795,513147,134348 -k1,11808:8562511,21642423:151781 -k1,11808:9330331,21642423:151782 -k1,11808:10501197,21642423:151781 -k1,11808:13406802,21642423:151782 -k1,11808:14939427,21642423:151781 -k1,11808:15622705,21642423:151781 -k1,11808:18536830,21642423:151782 -k1,11808:19340039,21642423:151781 -k1,11808:22095566,21642423:151782 -k1,11808:22603207,21642423:151781 -k1,11808:24038183,21642423:151781 -k1,11808:26149491,21642423:151782 -k1,11808:27695223,21642423:151781 -k1,11808:28866090,21642423:151782 -k1,11808:30671344,21642423:151781 -k1,11808:32583029,21642423:0 -) -(1,11809:6797234,22483911:25785795,505283,134348 -k1,11808:8900448,22483911:217743 -k1,11808:9649689,22483911:217744 -k1,11808:12490838,22483911:217743 -k1,11808:13905268,22483911:217743 -k1,11808:15295451,22483911:217744 -k1,11808:19029856,22483911:217743 -k1,11808:21116030,22483911:217743 -k1,11808:23464349,22483911:217744 -k1,11808:25619336,22483911:217743 -k1,11808:27028524,22483911:217743 -k1,11808:28237828,22483911:217744 -k1,11808:29521842,22483911:217743 -k1,11808:32583029,22483911:0 -) -(1,11809:6797234,23325399:25785795,505283,134348 -g1,11808:8694501,23325399 -g1,11808:12461510,23325399 -g1,11808:13679824,23325399 -k1,11809:32583030,23325399:17147496 -g1,11809:32583030,23325399 -) -v1,11811:6797234,24515865:0,393216,0 -(1,11816:6797234,25465682:25785795,1343033,196608 -g1,11816:6797234,25465682 -g1,11816:6797234,25465682 -g1,11816:6600626,25465682 -(1,11816:6600626,25465682:0,1343033,196608 -r1,11836:32779637,25465682:26179011,1539641,196608 -k1,11816:6600625,25465682:-26179012 -) -(1,11816:6600626,25465682:26179011,1343033,196608 -[1,11816:6797234,25465682:25785795,1146425,0 -(1,11813:6797234,24723483:25785795,404226,107478 -(1,11812:6797234,24723483:0,0,0 -g1,11812:6797234,24723483 -g1,11812:6797234,24723483 -g1,11812:6469554,24723483 -(1,11812:6469554,24723483:0,0,0 -) -g1,11812:6797234,24723483 -) -g1,11813:11539419,24723483 -g1,11813:12487857,24723483 -g1,11813:13752440,24723483 -g1,11813:15017023,24723483 -g1,11813:15965460,24723483 -h1,11813:17862334,24723483:0,0,0 -k1,11813:32583029,24723483:14720695 -g1,11813:32583029,24723483 -) -(1,11814:6797234,25389661:25785795,404226,76021 -h1,11814:6797234,25389661:0,0,0 -k1,11814:6797234,25389661:0 -h1,11814:12487855,25389661:0,0,0 -k1,11814:32583029,25389661:20095174 -g1,11814:32583029,25389661 -) -] -) -g1,11816:32583029,25465682 -g1,11816:6797234,25465682 -g1,11816:6797234,25465682 -g1,11816:32583029,25465682 -g1,11816:32583029,25465682 -) -h1,11816:6797234,25662290:0,0,0 -(1,11820:6797234,27028066:25785795,513147,126483 -h1,11819:6797234,27028066:983040,0,0 -k1,11819:8886436,27028066:152613 -k1,11819:11193873,27028066:152613 -k1,11819:11959248,27028066:152613 -k1,11819:13487461,27028066:152612 -k1,11819:14796784,27028066:152613 -k1,11819:17572803,27028066:152613 -k1,11819:18384708,27028066:152613 -k1,11819:19556406,27028066:152613 -k1,11819:21389362,27028066:152613 -k1,11819:24320701,27028066:152612 -k1,11819:25234842,27028066:152613 -(1,11819:25234842,27028066:0,452978,122846 -r1,11836:29813650,27028066:4578808,575824,122846 -k1,11819:25234842,27028066:-4578808 -) -(1,11819:25234842,27028066:4578808,452978,122846 -k1,11819:25234842,27028066:3277 -h1,11819:29810373,27028066:0,411205,112570 -) -k1,11819:30139933,27028066:152613 -k1,11819:31107814,27028066:152613 -k1,11819:32583029,27028066:0 -) -(1,11820:6797234,27869554:25785795,513147,134348 -g1,11819:7352323,27869554 -g1,11819:8938294,27869554 -g1,11819:9750285,27869554 -g1,11819:10737912,27869554 -g1,11819:12325194,27869554 -g1,11819:14022576,27869554 -g1,11819:15169456,27869554 -g1,11819:17018882,27869554 -g1,11819:19335579,27869554 -g1,11819:20220970,27869554 -g1,11819:20878296,27869554 -g1,11819:23779574,27869554 -g1,11819:27205796,27869554 -k1,11820:32583029,27869554:1396576 -g1,11820:32583029,27869554 -) -] -g1,11821:32583029,28003902 -) -h1,11821:6630773,28003902:0,0,0 -(1,11823:6630773,30811470:25952256,32768,229376 -(1,11823:6630773,30811470:0,32768,229376 -(1,11823:6630773,30811470:5505024,32768,229376 -r1,11836:12135797,30811470:5505024,262144,229376 -) -k1,11823:6630773,30811470:-5505024 -) -(1,11823:6630773,30811470:25952256,32768,0 -r1,11836:32583029,30811470:25952256,32768,0 -) -) -(1,11823:6630773,32415798:25952256,606339,161218 -(1,11823:6630773,32415798:1974731,582746,14155 -g1,11823:6630773,32415798 -g1,11823:8605504,32415798 -) -g1,11823:11813360,32415798 -k1,11823:32583030,32415798:17773364 -g1,11823:32583030,32415798 -) -(1,11826:6630773,33650502:25952256,513147,134348 -k1,11825:7747687,33650502:214483 -k1,11825:10651768,33650502:214483 -k1,11825:14238077,33650502:214482 -k1,11825:15111852,33650502:214483 -k1,11825:20170101,33650502:214483 -k1,11825:24736830,33650502:214483 -k1,11825:25567350,33650502:214482 -k1,11825:26196661,33650502:214468 -k1,11825:26942641,33650502:214483 -k1,11825:29522973,33650502:214482 -k1,11825:30756541,33650502:214483 -k1,11825:32583029,33650502:0 -) -(1,11826:6630773,34491990:25952256,513147,134348 -k1,11825:7568108,34491990:278043 -k1,11825:9049392,34491990:278043 -k1,11825:11083145,34491990:278043 -k1,11825:12403210,34491990:278043 -k1,11825:13700338,34491990:278043 -k1,11825:19413282,34491990:278043 -k1,11825:21245839,34491990:278043 -k1,11825:21879742,34491990:278043 -k1,11825:23779146,34491990:278043 -k1,11825:28712211,34491990:278043 -k1,11825:29657410,34491990:278043 -k1,11825:30350217,34491990:277964 -k1,11825:32583029,34491990:0 -) -(1,11826:6630773,35333478:25952256,513147,102891 -k1,11825:7959516,35333478:224461 -k1,11825:8931742,35333478:224460 -k1,11825:11307095,35333478:224461 -k1,11825:12998252,35333478:224461 -k1,11825:13688673,35333478:224460 -k1,11825:14675318,35333478:224461 -k1,11825:15582663,35333478:224460 -k1,11825:16899609,35333478:224461 -k1,11825:18616980,35333478:224461 -k1,11825:19907711,35333478:224460 -k1,11825:22188036,35333478:224461 -k1,11825:23063925,35333478:224461 -k1,11825:25217765,35333478:224460 -k1,11825:26725421,35333478:224461 -k1,11825:29356363,35333478:224460 -k1,11825:30961668,35333478:224461 -k1,11825:32583029,35333478:0 -) -(1,11826:6630773,36174966:25952256,505283,134348 -k1,11825:10235102,36174966:186626 -k1,11825:10953225,36174966:186626 -k1,11825:12688468,36174966:186627 -k1,11825:13743446,36174966:186626 -k1,11825:16419129,36174966:186626 -k1,11825:17221793,36174966:186626 -k1,11825:18611661,36174966:186627 -k1,11825:21389581,36174966:186626 -k1,11825:23832612,36174966:186626 -k1,11825:25931579,36174966:186626 -k1,11825:28787487,36174966:186627 -k1,11825:29590151,36174966:186626 -k1,11825:31563944,36174966:186626 -k1,11825:32583029,36174966:0 -) -(1,11826:6630773,37016454:25952256,513147,134348 -k1,11825:9651192,37016454:258076 -k1,11825:11464436,37016454:258075 -k1,11825:14298732,37016454:258076 -k1,11825:17340777,37016454:258076 -k1,11825:18790298,37016454:258076 -k1,11825:20378754,37016454:258075 -k1,11825:21288258,37016454:258076 -k1,11825:22638819,37016454:258076 -k1,11825:24535950,37016454:258076 -k1,11825:25410063,37016454:258075 -k1,11825:26082923,37016454:258017 -k1,11825:29425123,37016454:258076 -k1,11825:30725220,37016454:258075 -k1,11825:31753999,37016454:258076 -k1,11826:32583029,37016454:0 -) -(1,11826:6630773,37857942:25952256,513147,134348 -k1,11825:8761050,37857942:269710 -k1,11825:12175178,37857942:269711 -k1,11825:13104180,37857942:269710 -k1,11825:14392975,37857942:269710 -k1,11825:16972830,37857942:269711 -k1,11825:19249252,37857942:269710 -k1,11825:21869084,37857942:269711 -k1,11825:23157879,37857942:269710 -k1,11825:25339930,37857942:269710 -k1,11825:28732432,37857942:269711 -k1,11825:29451719,37857942:269710 -k1,11825:32583029,37857942:0 -) -(1,11826:6630773,38699430:25952256,505283,134348 -g1,11825:8630931,38699430 -g1,11825:10021605,38699430 -g1,11825:13309546,38699430 -g1,11825:13958352,38699430 -g1,11825:17577250,38699430 -k1,11826:32583029,38699430:13031179 -g1,11826:32583029,38699430 -) -(1,11828:6630773,39540918:25952256,513147,134348 -h1,11827:6630773,39540918:983040,0,0 -k1,11827:9026709,39540918:216209 -k1,11827:13374963,39540918:216209 -k1,11827:14250465,39540918:216210 -k1,11827:17377128,39540918:216209 -k1,11827:18124834,39540918:216209 -k1,11827:21860326,39540918:216209 -k1,11827:25166558,39540918:216209 -k1,11827:25998805,39540918:216209 -k1,11827:27234100,39540918:216210 -k1,11827:29032348,39540918:216209 -k1,11827:29698134,39540918:216209 -k1,11828:32583029,39540918:0 -) -(1,11828:6630773,40382406:25952256,513147,134348 -k1,11827:9947194,40382406:185111 -k1,11827:11933233,40382406:185110 -k1,11827:13309789,40382406:185111 -k1,11827:14265603,40382406:185111 -k1,11827:17140311,40382406:185110 -k1,11827:20935145,40382406:185111 -k1,11827:21787411,40382406:185110 -k1,11827:22387351,40382406:185097 -k1,11827:24140083,40382406:185111 -k1,11827:25344278,40382406:185110 -k1,11827:29881635,40382406:185111 -k1,11828:32583029,40382406:0 -) -(1,11828:6630773,41223894:25952256,505283,134348 -k1,11827:7942268,41223894:148886 -k1,11827:8622650,41223894:148885 -k1,11827:10466297,41223894:148886 -k1,11827:11231220,41223894:148885 -k1,11827:12399191,41223894:148886 -k1,11827:14130115,41223894:148885 -k1,11827:17401792,41223894:148886 -k1,11827:18000255,41223894:148886 -k1,11827:21280450,41223894:148885 -k1,11827:23404237,41223894:149187 -k1,11827:24749809,41223894:148885 -k1,11827:26480734,41223894:148886 -k1,11827:29718331,41223894:148885 -k1,11827:30316794,41223894:148886 -k1,11828:32583029,41223894:0 -) -(1,11828:6630773,42065382:25952256,505283,134348 -g1,11827:8196428,42065382 -g1,11827:10196586,42065382 -g1,11827:12447092,42065382 -g1,11827:14113017,42065382 -k1,11828:32583029,42065382:15655896 -g1,11828:32583029,42065382 -) -] -(1,11836:32583029,45706769:0,0,0 -g1,11836:32583029,45706769 -) -) -] -(1,11836:6630773,47279633:25952256,0,0 -h1,11836:6630773,47279633:25952256,0,0 -) -] -(1,11836:4262630,4025873:0,0,0 -[1,11836:-473656,4025873:0,0,0 -(1,11836:-473656,-710413:0,0,0 -(1,11836:-473656,-710413:0,0,0 -g1,11836:-473656,-710413 -) -g1,11836:-473656,-710413 -) -] -) -] -!20062 -}200 -!12 -{201 -[1,11836:4262630,47279633:28320399,43253760,0 -(1,11836:4262630,4025873:0,0,0 -[1,11836:-473656,4025873:0,0,0 -(1,11836:-473656,-710413:0,0,0 -(1,11836:-473656,-644877:0,0,0 -k1,11836:-473656,-644877:-65536 -) -(1,11836:-473656,4736287:0,0,0 -k1,11836:-473656,4736287:5209943 +g1,11058:6630773,4812305 ) -g1,11836:-473656,-710413 ) ] +[1,11058:6630773,45706769:25952256,40108032,0 +(1,11058:6630773,45706769:25952256,40108032,0 +(1,11058:6630773,45706769:0,0,0 +g1,11058:6630773,45706769 ) -[1,11836:6630773,47279633:25952256,43253760,0 -[1,11836:6630773,4812305:25952256,786432,0 -(1,11836:6630773,4812305:25952256,0,0 -(1,11836:6630773,4812305:25952256,0,0 -g1,11836:3078558,4812305 -[1,11836:3078558,4812305:0,0,0 -(1,11836:3078558,2439708:0,1703936,0 -k1,11836:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,11836:2537886,2439708:1179648,16384,0 -) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,11836:3078558,1915420:16384,1179648,0 -) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +[1,11058:6630773,45706769:25952256,40108032,0 +[1,11038:6630773,11797421:25952256,6198684,0 +(1,11038:6630773,6633157:25952256,1165492,28311 +h1,11038:6630773,6633157:0,0,0 +k1,11038:20096848,6633157:12486181 +k1,11038:32583029,6633157:12486181 ) -] +(1,11038:6630773,7380277:25952256,32768,229376 +(1,11038:6630773,7380277:0,32768,229376 +(1,11038:6630773,7380277:5505024,32768,229376 +r1,11058:12135797,7380277:5505024,262144,229376 ) +k1,11038:6630773,7380277:-5505024 ) +(1,11038:6630773,7380277:25952256,32768,0 +r1,11058:32583029,7380277:25952256,32768,0 ) -] -[1,11836:3078558,4812305:0,0,0 -(1,11836:3078558,2439708:0,1703936,0 -g1,11836:29030814,2439708 -g1,11836:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,11836:36151628,1915420:16384,1179648,0 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +(1,11038:6630773,9215293:25952256,909509,241827 +h1,11038:6630773,9215293:0,0,0 +g1,11038:9551582,9215293 +g1,11038:11032040,9215293 +g1,11038:15501726,9215293 +g1,11038:18319905,9215293 +k1,11038:27734086,9215293:4848943 +k1,11038:32583029,9215293:4848943 ) -] +(1,11038:6630773,9962413:25952256,32768,0 +(1,11038:6630773,9962413:5505024,32768,0 +r1,11058:12135797,9962413:5505024,32768,0 ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,11836:37855564,2439708:1179648,16384,0 +k1,11038:22359413,9962413:10223616 +k1,11038:32583029,9962413:10223616 +) +] +(1,11040:6630773,14713778:25952256,131072,0 +r1,11058:32583029,14713778:25952256,131072,0 +g1,11040:32583029,14713778 +g1,11040:32583029,14713778 +) +(1,11042:6630773,16057271:25952256,513147,134348 +k1,11042:8596853,16057271:1966080 +k1,11041:11936713,16057271:141703 +k1,11041:14411498,16057271:141703 +k1,11041:15084699,16057271:141704 +k1,11041:15582262,16057271:141703 +k1,11041:18032143,16057271:141703 +k1,11041:18833138,16057271:141703 +k1,11041:25791242,16057271:141704 +k1,11041:26952030,16057271:141703 +k1,11041:28629242,16057271:141703 +k1,11041:32583029,16057271:1966080 +) +(1,11042:6630773,16922351:25952256,513147,134348 +k1,11042:8596853,16922351:1966080 +k1,11041:9742013,16922351:197509 +k1,11041:10295382,16922351:197509 +k1,11041:13169381,16922351:197509 +k1,11041:14558335,16922351:197509 +k1,11041:17402843,16922351:197509 +k1,11041:18619437,16922351:197509 +k1,11041:22567571,16922351:197509 +k1,11041:27151405,16922351:197509 +k1,11041:32583029,16922351:1966080 +) +(1,11042:6630773,17787431:25952256,505283,7863 +g1,11042:8596853,17787431 +g1,11041:9447510,17787431 +g1,11041:11281207,17787431 +k1,11042:30616950,17787431:18703976 +g1,11042:32583030,17787431 +) +(1,11043:6630773,19438943:25952256,513147,126483 +k1,11043:19232037,19438943:12601264 +h1,11043:19232037,19438943:0,0,0 +g1,11043:21445187,19438943 +g1,11043:22276183,19438943 +g1,11043:23772370,19438943 +g1,11043:25163044,19438943 +g1,11043:27468600,19438943 +g1,11043:28344816,19438943 +g1,11043:30616949,19438943 +g1,11043:32583029,19438943 +) +(1,11044:6630773,20304023:25952256,513147,126483 +k1,11044:18169042,20304023:11538269 +h1,11043:18169042,20304023:0,0,0 +g1,11043:22210647,20304023 +g1,11043:23025914,20304023 +g1,11043:26370216,20304023 +g1,11043:29023113,20304023 +g1,11044:30616949,20304023 +g1,11044:32583029,20304023 +) +(1,11044:6630773,21562319:25952256,131072,0 +r1,11058:32583029,21562319:25952256,131072,0 +g1,11044:32583029,21562319 +g1,11044:34549109,21562319 +) +(1,11048:6630773,24393479:25952256,32768,229376 +(1,11048:6630773,24393479:0,32768,229376 +(1,11048:6630773,24393479:5505024,32768,229376 +r1,11058:12135797,24393479:5505024,262144,229376 +) +k1,11048:6630773,24393479:-5505024 +) +(1,11048:6630773,24393479:25952256,32768,0 +r1,11058:32583029,24393479:25952256,32768,0 +) +) +(1,11048:6630773,26025331:25952256,615776,151780 +(1,11048:6630773,26025331:1974731,582746,14155 +g1,11048:6630773,26025331 +g1,11048:8605504,26025331 +) +g1,11048:10904245,26025331 +g1,11048:11961996,26025331 +g1,11048:13695292,26025331 +k1,11048:32583029,26025331:15886712 +g1,11048:32583029,26025331 +) +(1,11051:6630773,27283627:25952256,513147,126483 +k1,11050:7426557,27283627:167949 +k1,11050:9628088,27283627:167949 +k1,11050:12543962,27283627:167949 +k1,11050:13580263,27283627:167949 +k1,11050:15223427,27283627:167949 +k1,11050:16766977,27283627:167949 +k1,11050:18448152,27283627:167949 +k1,11050:20050029,27283627:167949 +k1,11050:20632789,27283627:167917 +k1,11050:23580120,27283627:167949 +k1,11050:24375904,27283627:167949 +k1,11050:25747094,27283627:167949 +k1,11050:28332666,27283627:167949 +k1,11050:29671088,27283627:167949 +k1,11050:30971499,27283627:167949 +k1,11050:32583029,27283627:0 +) +(1,11051:6630773,28148707:25952256,513147,134348 +k1,11050:8172180,28148707:211026 +k1,11050:9034634,28148707:211026 +k1,11050:11570222,28148707:211026 +k1,11050:12800332,28148707:211025 +k1,11050:14791971,28148707:211026 +k1,11050:15662289,28148707:211026 +k1,11050:18479026,28148707:211026 +k1,11050:21647692,28148707:211026 +k1,11050:22812267,28148707:211026 +k1,11050:24155755,28148707:211026 +k1,11050:25855103,28148707:211025 +k1,11050:26827657,28148707:211026 +k1,11050:30390194,28148707:211026 +k1,11050:31931601,28148707:211026 +k1,11050:32583029,28148707:0 +) +(1,11051:6630773,29013787:25952256,513147,134348 +k1,11050:8795679,29013787:204069 +k1,11050:10191193,29013787:204069 +k1,11050:11487747,29013787:204069 +k1,11050:12975011,29013787:204069 +k1,11050:16378548,29013787:204069 +k1,11050:19659532,29013787:204069 +k1,11050:21055045,29013787:204068 +k1,11050:23665596,29013787:204069 +k1,11050:25483161,29013787:204069 +k1,11050:26555582,29013787:204069 +k1,11050:27892113,29013787:204069 +k1,11050:29834197,29013787:204069 +k1,11050:30847636,29013787:204069 +k1,11050:32583029,29013787:0 +) +(1,11051:6630773,29878867:25952256,513147,134348 +k1,11050:9377134,29878867:255338 +k1,11050:12542926,29878867:255338 +k1,11050:13989710,29878867:255339 +k1,11050:16059740,29878867:255338 +k1,11050:18348005,29878867:255338 +k1,11050:19412713,29878867:255338 +k1,11050:20998433,29878867:255339 +k1,11050:22633959,29878867:255338 +k1,11050:24659424,29878867:255338 +k1,11050:25868311,29878867:255338 +k1,11050:27256112,29878867:255339 +k1,11050:28577721,29878867:255338 +k1,11050:31563944,29878867:255338 +k1,11050:32583029,29878867:0 +) +(1,11051:6630773,30743947:25952256,513147,134348 +k1,11050:10261401,30743947:247660 +k1,11050:11581231,30743947:247661 +k1,11050:13479088,30743947:247660 +k1,11050:16732885,30743947:247661 +k1,11050:19744854,30743947:247660 +k1,11050:20651806,30743947:247660 +k1,11050:24122528,30743947:247661 +k1,11050:27395985,30743947:247660 +k1,11050:28835091,30743947:247661 +k1,11050:31315563,30743947:247660 +k1,11050:32583029,30743947:0 +) +(1,11051:6630773,31609027:25952256,505283,134348 +g1,11050:8113197,31609027 +g1,11050:8727269,31609027 +k1,11051:32583029,31609027:20771636 +g1,11051:32583029,31609027 +) +(1,11052:6630773,34440187:25952256,32768,229376 +(1,11052:6630773,34440187:0,32768,229376 +(1,11052:6630773,34440187:5505024,32768,229376 +r1,11058:12135797,34440187:5505024,262144,229376 +) +k1,11052:6630773,34440187:-5505024 +) +(1,11052:6630773,34440187:25952256,32768,0 +r1,11058:32583029,34440187:25952256,32768,0 +) +) +(1,11052:6630773,36072039:25952256,615776,161218 +(1,11052:6630773,36072039:1974731,582746,14155 +g1,11052:6630773,36072039 +g1,11052:8605504,36072039 +) +g1,11052:12201071,36072039 +g1,11052:16200864,36072039 +g1,11052:17910567,36072039 +k1,11052:32583029,36072039:10865345 +g1,11052:32583029,36072039 +) +(1,11056:6630773,37330335:25952256,513147,134348 +k1,11055:10459744,37330335:198276 +k1,11055:11762302,37330335:198276 +k1,11055:12708344,37330335:198276 +k1,11055:15288198,37330335:198276 +k1,11055:16172636,37330335:198276 +k1,11055:19716525,37330335:198276 +k1,11055:20933886,37330335:198276 +k1,11055:25203258,37330335:198276 +k1,11055:28697340,37330335:198276 +k1,11055:30463237,37330335:198276 +k1,11055:31680598,37330335:198276 +k1,11056:32583029,37330335:0 +) +(1,11056:6630773,38195415:25952256,513147,134348 +k1,11055:9353279,38195415:186918 +k1,11055:11200879,38195415:186918 +k1,11055:12459966,38195415:186918 +k1,11055:15660885,38195415:186918 +k1,11055:16866888,38195415:186918 +k1,11055:18791821,38195415:186918 +k1,11055:20546360,38195415:186918 +k1,11055:21089138,38195415:186918 +k1,11055:22970817,38195415:186918 +k1,11055:25135612,38195415:186918 +k1,11055:25981822,38195415:186918 +k1,11055:28984822,38195415:186918 +k1,11055:29703237,38195415:186918 +k1,11055:30660858,38195415:186918 +k1,11055:32583029,38195415:0 +) +(1,11056:6630773,39060495:25952256,513147,126483 +k1,11055:10082792,39060495:204055 +k1,11055:12119234,39060495:204055 +k1,11055:13427572,39060495:204056 +k1,11055:14379393,39060495:204055 +k1,11055:16335225,39060495:204055 +k1,11055:18032846,39060495:204055 +k1,11055:21641496,39060495:204055 +k1,11055:22654921,39060495:204055 +k1,11055:25621320,39060495:204056 +k1,11055:28445504,39060495:204055 +k1,11055:31131407,39060495:204055 +k1,11055:32583029,39060495:0 +) +(1,11056:6630773,39925575:25952256,513147,134348 +k1,11055:7987166,39925575:199683 +k1,11055:8542709,39925575:199683 +k1,11055:11139699,39925575:199683 +k1,11055:12880134,39925575:199684 +k1,11055:14863052,39925575:199683 +k1,11055:15931087,39925575:199683 +k1,11055:18800051,39925575:199683 +k1,11055:19770437,39925575:199683 +k1,11055:23081114,39925575:199683 +k1,11055:24228449,39925575:199684 +k1,11055:27858942,39925575:199683 +k1,11055:29077710,39925575:199683 +k1,11055:31015408,39925575:199683 +k1,11055:32583029,39925575:0 +) +(1,11056:6630773,40790655:25952256,513147,126483 +k1,11055:7916449,40790655:153869 +k1,11055:10690447,40790655:153869 +k1,11055:12822194,40790655:153870 +k1,11055:13844415,40790655:153869 +k1,11055:15473499,40790655:153869 +k1,11055:17977489,40790655:153869 +k1,11055:19150443,40790655:153869 +k1,11055:22893064,40790655:153870 +k1,11055:23706225,40790655:153869 +k1,11055:25803891,40790655:153869 +k1,11055:26585595,40790655:153869 +k1,11055:27758550,40790655:153870 +k1,11055:29565892,40790655:153869 +k1,11055:31131407,40790655:153869 +k1,11055:32583029,40790655:0 +) +(1,11056:6630773,41655735:25952256,513147,126483 +k1,11055:8222844,41655735:166663 +k1,11055:9257859,41655735:166663 +k1,11055:12127227,41655735:166663 +k1,11055:15698485,41655735:166663 +k1,11055:17432769,41655735:166663 +k1,11055:19996739,41655735:166663 +k1,11055:21552766,41655735:166664 +k1,11055:22587781,41655735:166663 +k1,11055:24683824,41655735:166663 +k1,11055:25206347,41655735:166663 +k1,11055:26656205,41655735:166663 +k1,11055:30585290,41655735:166663 +k1,11055:31379788,41655735:166663 +k1,11055:32583029,41655735:0 +) +(1,11056:6630773,42520815:25952256,513147,126483 +k1,11055:8849345,42520815:274774 +k1,11055:12149917,42520815:274775 +k1,11055:13416251,42520815:274774 +k1,11055:17610079,42520815:274775 +k1,11055:18544145,42520815:274774 +k1,11055:22223515,42520815:274775 +k1,11055:23181174,42520815:274774 +k1,11055:25916826,42520815:274775 +k1,11055:27571788,42520815:274774 +k1,11055:28838123,42520815:274775 +k1,11055:30259122,42520815:274774 +k1,11055:32583029,42520815:0 +) +(1,11056:6630773,43385895:25952256,513147,134348 +g1,11055:10142192,43385895 +g1,11055:12628628,43385895 +g1,11055:16096793,43385895 +g1,11055:17863643,43385895 +k1,11056:32583029,43385895:12586189 +g1,11056:32583029,43385895 +) +(1,11058:6630773,44250975:25952256,513147,134348 +h1,11057:6630773,44250975:983040,0,0 +k1,11057:9063116,44250975:252616 +k1,11057:10907602,44250975:252616 +k1,11057:12395572,44250975:252616 +k1,11057:13307480,44250975:252616 +k1,11057:16585893,44250975:252616 +k1,11057:17370006,44250975:252616 +k1,11057:18907129,44250975:252617 +k1,11057:19819037,44250975:252616 +k1,11057:23144636,44250975:252616 +k1,11057:24167955,44250975:252616 +k1,11057:28009322,44250975:252616 +k1,11057:30933841,44250975:252616 +k1,11057:31931601,44250975:252616 +k1,11057:32583029,44250975:0 +) +(1,11058:6630773,45116055:25952256,513147,134348 +k1,11057:8609781,45116055:249513 +k1,11057:11866087,45116055:249514 +k1,11057:14172120,45116055:249513 +k1,11057:15080925,45116055:249513 +k1,11057:16826625,45116055:249513 +k1,11057:19506214,45116055:249514 +k1,11057:20415019,45116055:249513 +k1,11057:24388288,45116055:249513 +k1,11057:27391624,45116055:249513 +k1,11057:28660223,45116055:249514 +k1,11057:30563209,45116055:249513 +k1,11058:32583029,45116055:0 +) +] +(1,11058:32583029,45706769:0,0,0 +g1,11058:32583029,45706769 +) +) +] +(1,11058:6630773,47279633:25952256,485622,11795 +(1,11058:6630773,47279633:25952256,485622,11795 +(1,11058:6630773,47279633:0,0,0 +v1,11058:6630773,47279633:0,0,0 +) +g1,11058:6830002,47279633 +k1,11058:31387652,47279633:24557650 +) +) +] +(1,11058:4262630,4025873:0,0,0 +[1,11058:-473656,4025873:0,0,0 +(1,11058:-473656,-710413:0,0,0 +(1,11058:-473656,-710413:0,0,0 +g1,11058:-473656,-710413 +) +g1,11058:-473656,-710413 +) +] +) +] +!15156 +}176 +Input:1668:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1669:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1670:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1671:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1672:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!482 +{177 +[1,11095:4262630,47279633:28320399,43253760,0 +(1,11095:4262630,4025873:0,0,0 +[1,11095:-473656,4025873:0,0,0 +(1,11095:-473656,-710413:0,0,0 +(1,11095:-473656,-644877:0,0,0 +k1,11095:-473656,-644877:-65536 ) +(1,11095:-473656,4736287:0,0,0 +k1,11095:-473656,4736287:5209943 ) -k1,11836:3078556,2439708:-34777008 +g1,11095:-473656,-710413 ) ] -[1,11836:3078558,4812305:0,0,0 -(1,11836:3078558,49800853:0,16384,2228224 -k1,11836:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,11836:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,11836:3078558,51504789:16384,1179648,0 +[1,11095:6630773,47279633:25952256,43253760,0 +[1,11095:6630773,4812305:25952256,786432,0 +(1,11095:6630773,4812305:25952256,505283,134348 +(1,11095:6630773,4812305:25952256,505283,134348 +g1,11095:3078558,4812305 +[1,11095:3078558,4812305:0,0,0 +(1,11095:3078558,2439708:0,1703936,0 +k1,11095:1358238,2439708:-1720320 +(1,11038:1358238,2439708:1720320,1703936,0 +(1,11038:1358238,2439708:1179648,16384,0 +r1,11095:2537886,2439708:1179648,16384,0 +) +g1,11038:3062174,2439708 +(1,11038:3062174,2439708:16384,1703936,0 +[1,11038:3062174,2439708:25952256,1703936,0 +(1,11038:3062174,1915420:25952256,1179648,0 +(1,11038:3062174,1915420:16384,1179648,0 +r1,11095:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 +k1,11038:29014430,1915420:25935872 +g1,11038:29014430,1915420 ) ] ) ) ) ] -[1,11836:3078558,4812305:0,0,0 -(1,11836:3078558,49800853:0,16384,2228224 -g1,11836:29030814,49800853 -g1,11836:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,11836:36151628,51504789:16384,1179648,0 +[1,11095:3078558,4812305:0,0,0 +(1,11095:3078558,2439708:0,1703936,0 +g1,11095:29030814,2439708 +g1,11095:36135244,2439708 +(1,11038:36135244,2439708:1720320,1703936,0 +(1,11038:36135244,2439708:16384,1703936,0 +[1,11038:36135244,2439708:25952256,1703936,0 +(1,11038:36135244,1915420:25952256,1179648,0 +(1,11038:36135244,1915420:16384,1179648,0 +r1,11095:36151628,1915420:16384,1179648,0 ) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 +k1,11038:62087500,1915420:25935872 +g1,11038:62087500,1915420 ) ] ) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,11836:37855564,49800853:1179648,16384,0 +g1,11038:36675916,2439708 +(1,11038:36675916,2439708:1179648,16384,0 +r1,11095:37855564,2439708:1179648,16384,0 ) ) -k1,11836:3078556,49800853:-34777008 +k1,11095:3078556,2439708:-34777008 ) ] -g1,11836:6630773,4812305 +[1,11095:3078558,4812305:0,0,0 +(1,11095:3078558,49800853:0,16384,2228224 +k1,11095:1358238,49800853:-1720320 +(1,11038:1358238,49800853:1720320,16384,2228224 +(1,11038:1358238,49800853:1179648,16384,0 +r1,11095:2537886,49800853:1179648,16384,0 ) +g1,11038:3062174,49800853 +(1,11038:3062174,52029077:16384,1703936,0 +[1,11038:3062174,52029077:25952256,1703936,0 +(1,11038:3062174,51504789:25952256,1179648,0 +(1,11038:3062174,51504789:16384,1179648,0 +r1,11095:3078558,51504789:16384,1179648,0 ) -] -[1,11836:6630773,45706769:0,40108032,0 -(1,11836:6630773,45706769:0,40108032,0 -(1,11836:6630773,45706769:0,0,0 -g1,11836:6630773,45706769 +k1,11038:29014430,51504789:25935872 +g1,11038:29014430,51504789 +) +] +) +) +) +] +[1,11095:3078558,4812305:0,0,0 +(1,11095:3078558,49800853:0,16384,2228224 +g1,11095:29030814,49800853 +g1,11095:36135244,49800853 +(1,11038:36135244,49800853:1720320,16384,2228224 +(1,11038:36135244,52029077:16384,1703936,0 +[1,11038:36135244,52029077:25952256,1703936,0 +(1,11038:36135244,51504789:25952256,1179648,0 +(1,11038:36135244,51504789:16384,1179648,0 +r1,11095:36151628,51504789:16384,1179648,0 +) +k1,11038:62087500,51504789:25935872 +g1,11038:62087500,51504789 +) +] +) +g1,11038:36675916,49800853 +(1,11038:36675916,49800853:1179648,16384,0 +r1,11095:37855564,49800853:1179648,16384,0 +) +) +k1,11095:3078556,49800853:-34777008 +) +] +g1,11095:6630773,4812305 +k1,11095:23552825,4812305:15726675 +g1,11095:25175496,4812305 +g1,11095:25997972,4812305 +g1,11095:28481131,4812305 +g1,11095:30046786,4812305 +) +) +] +[1,11095:6630773,45706769:25952256,40108032,0 +(1,11095:6630773,45706769:25952256,40108032,0 +(1,11095:6630773,45706769:0,0,0 +g1,11095:6630773,45706769 +) +[1,11095:6630773,45706769:25952256,40108032,0 +(1,11058:6630773,6254097:25952256,513147,126483 +k1,11057:8457614,6254097:229073 +k1,11057:9496058,6254097:229074 +k1,11057:12487474,6254097:229073 +k1,11057:14279582,6254097:229074 +k1,11057:15705342,6254097:229073 +k1,11057:18395947,6254097:229073 +k1,11057:19276449,6254097:229074 +k1,11057:21235017,6254097:229073 +k1,11057:24593434,6254097:229073 +k1,11057:25481800,6254097:229074 +k1,11057:27912883,6254097:229073 +k1,11057:30198477,6254097:229074 +k1,11057:31086842,6254097:229073 +k1,11057:32583029,6254097:0 +) +(1,11058:6630773,7119177:25952256,513147,134348 +k1,11057:10398328,7119177:250893 +k1,11057:11640782,7119177:250894 +k1,11057:13176182,7119177:250894 +k1,11057:14032628,7119177:250893 +k1,11057:14749482,7119177:250893 +k1,11057:16019461,7119177:250894 +k1,11057:19381349,7119177:250894 +k1,11057:20315127,7119177:250893 +k1,11057:25622778,7119177:250893 +k1,11057:27734239,7119177:250894 +k1,11057:28636561,7119177:250894 +k1,11057:29635220,7119177:250893 +k1,11058:32583029,7119177:0 +) +(1,11058:6630773,7984257:25952256,513147,134348 +k1,11057:8116912,7984257:243576 +k1,11057:9011915,7984257:243575 +k1,11057:10051098,7984257:243576 +k1,11057:10650533,7984257:243575 +k1,11057:12083587,7984257:243576 +k1,11057:13010047,7984257:243575 +k1,11057:15974022,7984257:243576 +k1,11057:16749094,7984257:243575 +k1,11057:18327638,7984257:243576 +k1,11057:19222641,7984257:243575 +k1,11057:21181950,7984257:243576 +k1,11057:22982005,7984257:243575 +k1,11057:23841619,7984257:243576 +k1,11057:24441054,7984257:243575 +k1,11057:26557649,7984257:243576 +k1,11057:28637543,7984257:243575 +k1,11057:29486672,7984257:243576 +k1,11057:31900144,7984257:243575 +k1,11057:32583029,7984257:0 +) +(1,11058:6630773,8849337:25952256,513147,134348 +k1,11057:8289251,8849337:204889 +k1,11057:10474638,8849337:204889 +k1,11057:11338819,8849337:204889 +k1,11057:14328333,8849337:204889 +k1,11057:16029409,8849337:204889 +k1,11057:17338581,8849337:204890 +k1,11057:19986652,8849337:204889 +k1,11057:22953884,8849337:204889 +k1,11057:25478092,8849337:204889 +k1,11057:26334409,8849337:204889 +k1,11057:31391584,8849337:204889 +k1,11057:32583029,8849337:0 +) +(1,11058:6630773,9714417:25952256,513147,134348 +k1,11057:11031754,9714417:216507 +k1,11057:12941711,9714417:216507 +k1,11057:13763772,9714417:216508 +k1,11057:17569030,9714417:216507 +k1,11057:18976982,9714417:216507 +k1,11057:21714659,9714417:216507 +k1,11057:22590458,9714417:216507 +k1,11057:23162825,9714417:216507 +k1,11057:26055823,9714417:216508 +k1,11057:27539796,9714417:216507 +k1,11057:30108390,9714417:216507 +k1,11057:32583029,9714417:0 +) +(1,11058:6630773,10579497:25952256,505283,134348 +k1,11057:9080032,10579497:260356 +k1,11057:11058743,10579497:260357 +k1,11057:12713050,10579497:260356 +k1,11057:15471639,10579497:260357 +k1,11057:16751080,10579497:260356 +k1,11057:18507624,10579497:260357 +k1,11057:23741507,10579497:260356 +k1,11057:24653292,10579497:260357 +k1,11057:27637980,10579497:260356 +k1,11057:28503890,10579497:260357 +k1,11057:30966256,10579497:260356 +k1,11058:32583029,10579497:0 +) +(1,11058:6630773,11444577:25952256,513147,134348 +k1,11057:8608769,11444577:252433 +k1,11057:10907235,11444577:252432 +k1,11057:12178753,11444577:252433 +k1,11057:14262262,11444577:252433 +k1,11057:15497734,11444577:252432 +k1,11057:17948245,11444577:252433 +k1,11057:19392122,11444577:252432 +k1,11057:20847796,11444577:252433 +k1,11057:23146263,11444577:252433 +k1,11057:26894385,11444577:252432 +k1,11057:31297868,11444577:252433 +k1,11057:32583029,11444577:0 +) +(1,11058:6630773,12309657:25952256,505283,126483 +g1,11057:8480199,12309657 +g1,11057:11218948,12309657 +g1,11057:12609622,12309657 +g1,11057:14415794,12309657 +k1,11058:32583029,12309657:16127755 +g1,11058:32583029,12309657 +) +(1,11060:6630773,13174737:25952256,513147,134348 +h1,11059:6630773,13174737:983040,0,0 +k1,11059:9247532,13174737:212898 +k1,11059:10275699,13174737:212899 +k1,11059:11530619,13174737:212898 +k1,11059:12359555,13174737:212898 +k1,11059:15283678,13174737:212899 +k1,11059:17226071,13174737:212898 +k1,11059:20445762,13174737:212899 +k1,11059:21847483,13174737:212898 +k1,11059:22719673,13174737:212898 +k1,11059:24755784,13174737:212899 +k1,11059:25922231,13174737:212898 +k1,11059:27749936,13174737:212898 +k1,11059:28318695,13174737:212899 +k1,11059:31227089,13174737:212898 +k1,11060:32583029,13174737:0 +) +(1,11060:6630773,14039817:25952256,505283,134348 +k1,11059:9060333,14039817:210511 +k1,11059:10289929,14039817:210511 +k1,11059:14017101,14039817:210510 +k1,11059:15512118,14039817:210511 +k1,11059:16590981,14039817:210511 +k1,11059:18757742,14039817:210511 +k1,11059:20498519,14039817:210511 +k1,11059:21360457,14039817:210510 +k1,11059:23761181,14039817:210511 +k1,11059:25163137,14039817:210511 +k1,11059:26827237,14039817:210511 +k1,11059:27906099,14039817:210510 +k1,11059:29246450,14039817:210511 +k1,11059:31563944,14039817:210511 +k1,11059:32583029,14039817:0 +) +(1,11060:6630773,14904897:25952256,513147,134348 +k1,11059:9495588,14904897:169319 +k1,11059:10280945,14904897:169319 +k1,11059:11958903,14904897:169319 +k1,11059:13964541,14904897:169319 +k1,11059:15087409,14904897:169319 +k1,11059:16731943,14904897:169319 +k1,11059:18411212,14904897:169319 +k1,11059:20670474,14904897:169319 +k1,11059:21254607,14904897:169290 +k1,11059:24449723,14904897:169319 +k1,11059:25301927,14904897:169319 +k1,11059:28548161,14904897:169319 +k1,11059:29333518,14904897:169319 +k1,11059:31665525,14904897:169319 +k1,11060:32583029,14904897:0 +) +(1,11060:6630773,15769977:25952256,513147,126483 +k1,11059:7834976,15769977:207400 +k1,11059:10703792,15769977:207399 +k1,11059:11527230,15769977:207400 +k1,11059:12937870,15769977:207399 +k1,11059:14900980,15769977:207400 +k1,11059:16656995,15769977:207399 +k1,11059:17732747,15769977:207400 +k1,11059:19072608,15769977:207399 +k1,11059:20664128,15769977:207400 +k1,11059:22762896,15769977:207399 +k1,11059:23501793,15769977:207400 +k1,11059:25039573,15769977:207399 +k1,11059:25898401,15769977:207400 +k1,11059:28066637,15769977:207399 +k1,11059:29557232,15769977:207400 +k1,11059:32583029,15769977:0 +) +(1,11060:6630773,16635057:25952256,513147,7863 +g1,11059:7489294,16635057 +g1,11059:8786251,16635057 +k1,11060:32583030,16635057:22292728 +g1,11060:32583030,16635057 +) +(1,11062:6630773,17500137:25952256,513147,134348 +h1,11061:6630773,17500137:983040,0,0 +k1,11061:8737408,17500137:170046 +k1,11061:10114627,17500137:170046 +k1,11061:10900711,17500137:170046 +k1,11061:13349444,17500137:170046 +h1,11061:14320032,17500137:0,0,0 +k1,11061:14490078,17500137:170046 +k1,11061:15469494,17500137:170046 +k1,11061:17137693,17500137:170046 +h1,11061:18333070,17500137:0,0,0 +k1,11061:18503116,17500137:170046 +k1,11061:19029022,17500137:170046 +k1,11061:21815265,17500137:170046 +k1,11061:22644603,17500137:170046 +k1,11061:23170509,17500137:170046 +k1,11061:26754325,17500137:170046 +k1,11061:30284402,17500137:170046 +k1,11061:30942007,17500137:170017 +k1,11062:32583029,17500137:0 +) +(1,11062:6630773,18365217:25952256,513147,126483 +k1,11061:8116692,18365217:218453 +k1,11061:8866643,18365217:218454 +k1,11061:10231321,18365217:218453 +k1,11061:10805634,18365217:218453 +k1,11061:14437858,18365217:218454 +k1,11061:17842671,18365217:218453 +k1,11061:19455075,18365217:218453 +k1,11061:20692614,18365217:218454 +k1,11061:24097427,18365217:218453 +k1,11061:25600386,18365217:218453 +k1,11061:29335502,18365217:218454 +k1,11061:31563944,18365217:218453 +k1,11061:32583029,18365217:0 +) +(1,11062:6630773,19230297:25952256,513147,126483 +k1,11061:9564045,19230297:237776 +k1,11061:12089029,19230297:237777 +k1,11061:13142073,19230297:237776 +k1,11061:14446120,19230297:237776 +k1,11061:16463199,19230297:237777 +k1,11061:19115321,19230297:237776 +k1,11061:20484905,19230297:237777 +k1,11061:23234021,19230297:237776 +k1,11061:25853375,19230297:237776 +k1,11061:28457002,19230297:237777 +k1,11061:29713863,19230297:237776 +k1,11061:32583029,19230297:0 +) +(1,11062:6630773,20095377:25952256,513147,134348 +k1,11061:8370603,20095377:249541 +k1,11061:10475468,20095377:249541 +k1,11061:11744094,20095377:249541 +k1,11061:15510296,20095377:249540 +k1,11061:17769826,20095377:249541 +k1,11061:19038452,20095377:249541 +k1,11061:21983489,20095377:249541 +k1,11061:23809826,20095377:249541 +k1,11061:24874635,20095377:249541 +k1,11061:26599390,20095377:249540 +k1,11061:28879892,20095377:249541 +k1,11061:29780861,20095377:249541 +k1,11061:31049487,20095377:249541 +k1,11062:32583029,20095377:0 +) +(1,11062:6630773,20960457:25952256,513147,134348 +k1,11061:9594922,20960457:227366 +k1,11061:10438326,20960457:227366 +k1,11061:12551163,20960457:227366 +k1,11061:13797614,20960457:227366 +k1,11061:16720476,20960457:227366 +k1,11061:17479339,20960457:227366 +k1,11061:19748151,20960457:227366 +k1,11061:20433615,20960457:227367 +k1,11061:21192478,20960457:227366 +k1,11061:23305315,20960457:227366 +k1,11061:24184109,20960457:227366 +k1,11061:25848680,20960457:227366 +k1,11061:26842162,20960457:227366 +k1,11061:28778052,20960457:227366 +k1,11061:31563944,20960457:227366 +k1,11061:32583029,20960457:0 +) +(1,11062:6630773,21825537:25952256,513147,126483 +g1,11061:9525498,21825537 +g1,11061:13509431,21825537 +g1,11061:14900105,21825537 +g1,11061:17109979,21825537 +g1,11061:18075324,21825537 +g1,11061:20285198,21825537 +g1,11061:21135855,21825537 +g1,11061:22354169,21825537 +k1,11062:32583029,21825537:8319796 +g1,11062:32583029,21825537 +) +(1,11076:6630773,34073655:25952256,11400739,0 +k1,11076:15747671,34073655:9116898 +(1,11063:15747671,34073655:0,0,0 +g1,11063:15747671,34073655 +g1,11063:15747671,34073655 +g1,11063:15419991,34073655 +(1,11063:15419991,34073655:0,0,0 +) +g1,11063:15747671,34073655 +) +(1,11074:15747671,34073655:7718460,11400739,0 +g1,11074:19606901,34073655 +(1,11074:19606901,23618362:0,0,0 +(1,11074:19606901,23618362:0,0,0 +g1,11065:19606901,23618362 +(1,11066:19606901,23618362:0,0,0 +(1,11066:19606901,23618362:0,0,0 +g1,11066:19606901,23618362 +g1,11066:19606901,23618362 +g1,11066:19606901,23618362 +g1,11066:19606901,23618362 +g1,11066:19606901,23618362 +(1,11066:19606901,23618362:0,0,0 +(1,11066:19606901,23618362:7299073,385745,120913 +(1,11066:19606901,23618362:7299073,385745,120913 +g1,11066:22852113,23618362 +$1,11066:22852113,23618362 +$1,11066:23459632,23618362 +g1,11066:23638939,23618362 +) +g1,11066:26905974,23618362 +) +) +g1,11066:19606901,23618362 +g1,11066:19606901,23618362 +) +) +g1,11066:19606901,23618362 +(1,11067:19606901,23618362:0,0,0 +(1,11067:19606901,23618362:0,0,0 +g1,11067:19606901,23618362 +g1,11067:19606901,23618362 +g1,11067:19606901,23618362 +g1,11067:19606901,23618362 +g1,11067:19606901,23618362 +(1,11067:19606901,23618362:0,0,0 +(1,11067:19606901,23618362:0,0,0 +(1,11067:19606901,23618362:0,0,0 +) +g1,11067:19606901,23618362 +) +) +g1,11067:19606901,23618362 +g1,11067:19606901,23618362 +) +) +g1,11067:19606901,23618362 +g1,11068:19606901,23618362 +(1,11068:19606901,23618362:0,0,0 +(1,11068:19606901,23618362:0,0,0 +g1,11068:19606901,23618362 +g1,11068:19606901,23618362 +g1,11068:19606901,23618362 +g1,11068:19606901,23618362 +g1,11068:19606901,23618362 +(1,11068:19606901,23618362:0,0,0 +(1,11068:19606901,23618362:4121582,373362,104590 +(1,11068:19606901,23618362:4121582,373362,104590 +(1,11068:19606901,23618362:0,373362,104590 +r1,11095:23728483,23618362:4121582,477952,104590 +k1,11068:19606901,23618362:-4121582 +) +(1,11068:19606901,23618362:4121582,373362,104590 +g1,11068:23092125,23618362 +h1,11068:23725206,23618362:0,370085,101313 +) +) +g1,11068:23728483,23618362 +) +) +g1,11068:19606901,23618362 +g1,11068:19606901,23618362 +) +) +g1,11068:19606901,23618362 +g1,11069:19606901,23618362 +(1,11069:19606901,23618362:0,0,0 +(1,11069:19606901,23618362:0,0,0 +g1,11069:19606901,23618362 +g1,11069:19606901,23618362 +g1,11069:19606901,23618362 +g1,11069:19606901,23618362 +g1,11069:19606901,23618362 +(1,11069:19606901,23618362:0,0,0 +(1,11069:19606901,23618362:4121582,373362,104590 +(1,11069:19606901,23618362:4121582,373362,104590 +(1,11069:19606901,23618362:0,373362,104590 +r1,11095:23728483,23618362:4121582,477952,104590 +k1,11069:19606901,23618362:-4121582 +) +(1,11069:19606901,23618362:4121582,373362,104590 +g1,11069:23092125,23618362 +h1,11069:23725206,23618362:0,370085,101313 +) +) +g1,11069:23728483,23618362 +) +) +g1,11069:19606901,23618362 +g1,11069:19606901,23618362 +) +) +g1,11069:19606901,23618362 +g1,11070:19606901,23618362 +(1,11070:19606901,23618362:0,0,0 +(1,11070:19606901,23618362:0,0,0 +g1,11070:19606901,23618362 +g1,11070:19606901,23618362 +g1,11070:19606901,23618362 +g1,11070:19606901,23618362 +g1,11070:19606901,23618362 +(1,11070:19606901,23618362:0,0,0 +(1,11070:19606901,23618362:6778260,454754,7077 +(1,11070:19606901,23618362:6778260,454754,7077 +g1,11070:22263469,23618362 +g1,11070:23978088,23618362 +$1,11070:23978088,23618362 +$1,11070:24585607,23618362 +g1,11070:24764914,23618362 +) +g1,11070:26385161,23618362 +) +) +g1,11070:19606901,23618362 +g1,11070:19606901,23618362 +) +) +g1,11070:19606901,23618362 +g1,11071:19606901,23618362 +g1,11071:19606901,23618362 +g1,11071:19606901,23618362 +g1,11071:19606901,23618362 +g1,11071:19606901,23618362 +g1,11071:19606901,23618362 +g1,11072:19606901,23618362 +g1,11072:19606901,23618362 +g1,11072:19606901,23618362 +g1,11072:19606901,23618362 +g1,11072:19606901,23618362 +g1,11072:19606901,23618362 +g1,11073:19606901,23618362 +g1,11073:19606901,23618362 +g1,11073:19606901,23618362 +g1,11073:19606901,23618362 +g1,11073:19606901,23618362 +g1,11073:19606901,23618362 +g1,11074:19606901,23618362 +g1,11074:19606901,23618362 +) +g1,11074:19606901,23618362 +) +) +g1,11076:23466131,34073655 +k1,11076:32583029,34073655:9116898 +) +(1,11079:6630773,35594095:25952256,513147,134348 +h1,11078:6630773,35594095:983040,0,0 +k1,11078:8996294,35594095:185794 +k1,11078:11798286,35594095:185795 +k1,11078:13839404,35594095:185794 +k1,11078:17397026,35594095:185795 +k1,11078:17938680,35594095:185794 +k1,11078:20819971,35594095:185795 +k1,11078:22290271,35594095:185794 +k1,11078:23577071,35594095:185795 +k1,11078:24572235,35594095:185794 +k1,11078:25973723,35594095:185795 +k1,11078:28322205,35594095:185794 +k1,11078:29194162,35594095:185795 +k1,11078:29838053,35594095:185794 +k1,11078:31516758,35594095:185795 +k1,11078:32583029,35594095:0 +) +(1,11079:6630773,36459175:25952256,513147,126483 +k1,11078:8642162,36459175:232087 +k1,11078:9662647,36459175:232087 +k1,11078:14125738,36459175:232087 +k1,11078:14815922,36459175:232087 +k1,11078:16423610,36459175:232087 +k1,11078:18996643,36459175:232087 +k1,11078:19584590,36459175:232087 +k1,11078:21497019,36459175:232086 +k1,11078:22380534,36459175:232087 +k1,11078:23631706,36459175:232087 +k1,11078:25772857,36459175:232087 +k1,11078:26492499,36459175:232054 +k1,11078:28404929,36459175:232087 +k1,11078:29446386,36459175:232087 +k1,11078:31563944,36459175:232087 +k1,11078:32583029,36459175:0 +) +(1,11079:6630773,37324255:25952256,513147,7863 +k1,11078:8576587,37324255:210421 +k1,11078:9888013,37324255:210421 +k1,11078:11188298,37324255:210421 +k1,11078:13860250,37324255:210420 +k1,11078:15267358,37324255:210421 +k1,11078:18664139,37324255:210421 +k1,11078:20159066,37324255:210421 +k1,11078:21799483,37324255:210421 +k1,11078:23028989,37324255:210421 +k1,11078:25934905,37324255:210420 +k1,11078:29146875,37324255:210421 +k1,11078:30905912,37324255:210421 +k1,11078:31767761,37324255:210421 +k1,11078:32583029,37324255:0 +) +(1,11079:6630773,38189335:25952256,513147,102891 +k1,11078:8253679,38189335:228955 +k1,11078:9501718,38189335:228954 +k1,11078:11411016,38189335:228955 +k1,11078:14283038,38189335:228955 +k1,11078:16079613,38189335:228954 +k1,11078:17327653,38189335:228955 +k1,11078:20425773,38189335:228954 +k1,11078:22437963,38189335:228955 +k1,11078:23022778,38189335:228955 +k1,11078:25947228,38189335:228954 +k1,11078:27277188,38189335:228955 +k1,11078:27862003,38189335:228955 +k1,11078:29390536,38189335:228954 +k1,11078:31563944,38189335:228955 +k1,11078:32583029,38189335:0 +) +(1,11079:6630773,39054415:25952256,513147,134348 +k1,11078:8522305,39054415:156139 +k1,11078:9209942,39054415:156140 +k1,11078:10175451,39054415:156139 +k1,11078:12355997,39054415:156139 +k1,11078:13128175,39054415:156140 +k1,11078:15745846,39054415:156139 +k1,11078:17226469,39054415:156140 +k1,11078:19483692,39054415:156139 +k1,11078:20744113,39054415:156139 +k1,11078:21648019,39054415:156140 +k1,11078:24091365,39054415:156139 +k1,11078:25532010,39054415:156139 +k1,11078:26503418,39054415:156140 +k1,11078:27725828,39054415:156139 +k1,11078:29335557,39054415:156140 +k1,11078:30623503,39054415:156139 +k1,11078:32583029,39054415:0 +) +(1,11079:6630773,39919495:25952256,513147,134348 +k1,11078:7392664,39919495:145853 +k1,11078:8557602,39919495:145853 +k1,11078:10793398,39919495:145853 +k1,11078:12609108,39919495:145853 +k1,11078:13901186,39919495:145853 +k1,11078:15745077,39919495:145853 +k1,11078:16246790,39919495:145853 +k1,11078:17492338,39919495:145854 +k1,11078:18289619,39919495:145853 +(1,11078:18289619,39919495:0,452978,115847 +r1,11095:20758156,39919495:2468537,568825,115847 +k1,11078:18289619,39919495:-2468537 +) +(1,11078:18289619,39919495:2468537,452978,115847 +k1,11078:18289619,39919495:3277 +h1,11078:20754879,39919495:0,411205,112570 +) +k1,11078:20904009,39919495:145853 +k1,11078:23675234,39919495:145853 +k1,11078:25047266,39919495:145853 +k1,11078:25876004,39919495:145853 +k1,11078:29011609,39919495:145853 +k1,11078:30481945,39919495:145853 +k1,11078:32583029,39919495:0 +) +(1,11079:6630773,40784575:25952256,513147,134348 +k1,11078:7891938,40784575:156883 +k1,11078:9334637,40784575:156883 +k1,11078:10239286,40784575:156883 +k1,11078:11166872,40784575:156883 +k1,11078:14969523,40784575:156883 +k1,11078:16410912,40784575:156883 +k1,11078:19312444,40784575:156884 +k1,11078:20240030,40784575:156883 +k1,11078:22356439,40784575:156883 +k1,11078:23129360,40784575:156883 +k1,11078:24305328,40784575:156883 +k1,11078:26701576,40784575:156883 +k1,11078:31089463,40784575:156883 +k1,11078:32583029,40784575:0 +) +(1,11079:6630773,41649655:25952256,505283,134348 +g1,11078:7516164,41649655 +g1,11078:10712354,41649655 +g1,11078:11267443,41649655 +g1,11078:12749867,41649655 +g1,11078:14629439,41649655 +g1,11078:15480096,41649655 +g1,11078:16035185,41649655 +g1,11078:18745754,41649655 +g1,11078:19561021,41649655 +g1,11078:20779335,41649655 +g1,11078:23217929,41649655 +k1,11079:32583029,41649655:5134096 +g1,11079:32583029,41649655 +) +] +(1,11095:32583029,45706769:0,0,0 +g1,11095:32583029,45706769 +) +) +] +(1,11095:6630773,47279633:25952256,0,0 +h1,11095:6630773,47279633:25952256,0,0 +) +] +(1,11095:4262630,4025873:0,0,0 +[1,11095:-473656,4025873:0,0,0 +(1,11095:-473656,-710413:0,0,0 +(1,11095:-473656,-710413:0,0,0 +g1,11095:-473656,-710413 +) +g1,11095:-473656,-710413 ) -[1,11836:6630773,45706769:0,40108032,0 -h1,11836:6630773,6254097:0,0,0 ] -(1,11836:6630773,45706769:0,0,0 -g1,11836:6630773,45706769 -) ) ] -(1,11836:6630773,47279633:25952256,0,0 -h1,11836:6630773,47279633:25952256,0,0 +!21481 +}177 +Input:1673:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1674:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1675:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1676:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1677:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1678:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1679:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!670 +{178 +[1,11134:4262630,47279633:28320399,43253760,0 +(1,11134:4262630,4025873:0,0,0 +[1,11134:-473656,4025873:0,0,0 +(1,11134:-473656,-710413:0,0,0 +(1,11134:-473656,-644877:0,0,0 +k1,11134:-473656,-644877:-65536 ) -] -(1,11836:4262630,4025873:0,0,0 -[1,11836:-473656,4025873:0,0,0 -(1,11836:-473656,-710413:0,0,0 -(1,11836:-473656,-710413:0,0,0 -g1,11836:-473656,-710413 +(1,11134:-473656,4736287:0,0,0 +k1,11134:-473656,4736287:5209943 ) -g1,11836:-473656,-710413 +g1,11134:-473656,-710413 ) ] ) -] -!3399 -}201 -Input:1712:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1713:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1714:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1715:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1716:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1717:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1718:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1719:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1720:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1721:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1722:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1723:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1724:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1233 -{202 -[1,11852:4262630,47279633:28320399,43253760,11795 -(1,11852:4262630,4025873:0,0,0 -[1,11852:-473656,4025873:0,0,0 -(1,11852:-473656,-710413:0,0,0 -(1,11852:-473656,-644877:0,0,0 -k1,11852:-473656,-644877:-65536 +[1,11134:6630773,47279633:25952256,43253760,0 +[1,11134:6630773,4812305:25952256,786432,0 +(1,11134:6630773,4812305:25952256,513147,134348 +(1,11134:6630773,4812305:25952256,513147,134348 +g1,11134:3078558,4812305 +[1,11134:3078558,4812305:0,0,0 +(1,11134:3078558,2439708:0,1703936,0 +k1,11134:1358238,2439708:-1720320 +(1,11038:1358238,2439708:1720320,1703936,0 +(1,11038:1358238,2439708:1179648,16384,0 +r1,11134:2537886,2439708:1179648,16384,0 ) -(1,11852:-473656,4736287:0,0,0 -k1,11852:-473656,4736287:5209943 +g1,11038:3062174,2439708 +(1,11038:3062174,2439708:16384,1703936,0 +[1,11038:3062174,2439708:25952256,1703936,0 +(1,11038:3062174,1915420:25952256,1179648,0 +(1,11038:3062174,1915420:16384,1179648,0 +r1,11134:3078558,1915420:16384,1179648,0 ) -g1,11852:-473656,-710413 +k1,11038:29014430,1915420:25935872 +g1,11038:29014430,1915420 ) ] ) -[1,11852:6630773,47279633:25952256,43253760,11795 -[1,11852:6630773,4812305:25952256,786432,0 -(1,11852:6630773,4812305:25952256,0,0 -(1,11852:6630773,4812305:25952256,0,0 -g1,11852:3078558,4812305 -[1,11852:3078558,4812305:0,0,0 -(1,11852:3078558,2439708:0,1703936,0 -k1,11852:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,11852:2537886,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,11852:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +] +[1,11134:3078558,4812305:0,0,0 +(1,11134:3078558,2439708:0,1703936,0 +g1,11134:29030814,2439708 +g1,11134:36135244,2439708 +(1,11038:36135244,2439708:1720320,1703936,0 +(1,11038:36135244,2439708:16384,1703936,0 +[1,11038:36135244,2439708:25952256,1703936,0 +(1,11038:36135244,1915420:25952256,1179648,0 +(1,11038:36135244,1915420:16384,1179648,0 +r1,11134:36151628,1915420:16384,1179648,0 +) +k1,11038:62087500,1915420:25935872 +g1,11038:62087500,1915420 ) ] ) +g1,11038:36675916,2439708 +(1,11038:36675916,2439708:1179648,16384,0 +r1,11134:37855564,2439708:1179648,16384,0 +) ) +k1,11134:3078556,2439708:-34777008 ) ] -[1,11852:3078558,4812305:0,0,0 -(1,11852:3078558,2439708:0,1703936,0 -g1,11852:29030814,2439708 -g1,11852:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,11852:36151628,1915420:16384,1179648,0 +[1,11134:3078558,4812305:0,0,0 +(1,11134:3078558,49800853:0,16384,2228224 +k1,11134:1358238,49800853:-1720320 +(1,11038:1358238,49800853:1720320,16384,2228224 +(1,11038:1358238,49800853:1179648,16384,0 +r1,11134:2537886,49800853:1179648,16384,0 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +g1,11038:3062174,49800853 +(1,11038:3062174,52029077:16384,1703936,0 +[1,11038:3062174,52029077:25952256,1703936,0 +(1,11038:3062174,51504789:25952256,1179648,0 +(1,11038:3062174,51504789:16384,1179648,0 +r1,11134:3078558,51504789:16384,1179648,0 ) -] +k1,11038:29014430,51504789:25935872 +g1,11038:29014430,51504789 ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,11852:37855564,2439708:1179648,16384,0 +] ) ) -k1,11852:3078556,2439708:-34777008 ) ] -[1,11852:3078558,4812305:0,0,0 -(1,11852:3078558,49800853:0,16384,2228224 -k1,11852:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,11852:2537886,49800853:1179648,16384,0 +[1,11134:3078558,4812305:0,0,0 +(1,11134:3078558,49800853:0,16384,2228224 +g1,11134:29030814,49800853 +g1,11134:36135244,49800853 +(1,11038:36135244,49800853:1720320,16384,2228224 +(1,11038:36135244,52029077:16384,1703936,0 +[1,11038:36135244,52029077:25952256,1703936,0 +(1,11038:36135244,51504789:25952256,1179648,0 +(1,11038:36135244,51504789:16384,1179648,0 +r1,11134:36151628,51504789:16384,1179648,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,11852:3078558,51504789:16384,1179648,0 -) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 +k1,11038:62087500,51504789:25935872 +g1,11038:62087500,51504789 ) ] ) +g1,11038:36675916,49800853 +(1,11038:36675916,49800853:1179648,16384,0 +r1,11134:37855564,49800853:1179648,16384,0 +) ) +k1,11134:3078556,49800853:-34777008 ) ] -[1,11852:3078558,4812305:0,0,0 -(1,11852:3078558,49800853:0,16384,2228224 -g1,11852:29030814,49800853 -g1,11852:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,11852:36151628,51504789:16384,1179648,0 +g1,11134:6630773,4812305 +g1,11134:6630773,4812305 +g1,11134:9499939,4812305 +g1,11134:12584718,4812305 +g1,11134:13994397,4812305 +g1,11134:17201073,4812305 +k1,11134:31387652,4812305:14186579 ) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 ) ] +[1,11134:6630773,45706769:25952256,40108032,0 +(1,11134:6630773,45706769:25952256,40108032,0 +(1,11134:6630773,45706769:0,0,0 +g1,11134:6630773,45706769 ) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,11852:37855564,49800853:1179648,16384,0 +[1,11134:6630773,45706769:25952256,40108032,0 +(1,11095:6630773,16999476:25952256,11400739,0 +k1,11095:11890229,16999476:5259456 +(1,11080:11890229,16999476:0,0,0 +g1,11080:11890229,16999476 +g1,11080:11890229,16999476 +g1,11080:11562549,16999476 +(1,11080:11562549,16999476:0,0,0 ) +g1,11080:11890229,16999476 ) -k1,11852:3078556,49800853:-34777008 +(1,11093:11890229,16999476:15433344,11400739,0 +g1,11093:15749459,16999476 +(1,11093:15749459,6544183:0,0,0 +(1,11093:15749459,6544183:0,0,0 +g1,11082:15749459,6544183 +(1,11083:15749459,6544183:0,0,0 +(1,11083:15749459,6544183:0,0,0 +g1,11083:15749459,6544183 +g1,11083:15749459,6544183 +g1,11083:15749459,6544183 +g1,11083:15749459,6544183 +g1,11083:15749459,6544183 +(1,11083:15749459,6544183:0,0,0 +(1,11083:15749459,6544183:7299073,385745,120913 +(1,11083:15749459,6544183:7299073,385745,120913 +g1,11083:18994671,6544183 +$1,11083:18994671,6544183 +$1,11083:19602190,6544183 +g1,11083:19781497,6544183 ) -] -g1,11852:6630773,4812305 +g1,11083:23048532,6544183 ) ) -] -[1,11852:6630773,45706769:25952256,40108032,0 -(1,11852:6630773,45706769:25952256,40108032,0 -(1,11852:6630773,45706769:0,0,0 -g1,11852:6630773,45706769 +g1,11083:15749459,6544183 +g1,11083:15749459,6544183 ) -[1,11852:6630773,45706769:25952256,40108032,0 -[1,11836:6630773,11635422:25952256,6036685,0 -(1,11836:6630773,6604846:25952256,1137181,0 -h1,11836:6630773,6604846:0,0,0 -k1,11836:20096848,6604846:12486181 -k1,11836:32583029,6604846:12486181 ) -(1,11836:6630773,7304782:25952256,32768,229376 -(1,11836:6630773,7304782:0,32768,229376 -(1,11836:6630773,7304782:5505024,32768,229376 -r1,11852:12135797,7304782:5505024,262144,229376 +g1,11083:15749459,6544183 +(1,11084:15749459,6544183:0,0,0 +(1,11084:15749459,6544183:0,0,0 +g1,11084:15749459,6544183 +g1,11084:15749459,6544183 +g1,11084:15749459,6544183 +g1,11084:15749459,6544183 +g1,11084:15749459,6544183 +(1,11084:15749459,6544183:0,0,0 +(1,11084:15749459,6544183:0,0,0 +(1,11084:15749459,6544183:0,0,0 ) -k1,11836:6630773,7304782:-5505024 +g1,11084:15749459,6544183 ) -(1,11836:6630773,7304782:25952256,32768,0 -r1,11852:32583029,7304782:25952256,32768,0 ) +g1,11084:15749459,6544183 +g1,11084:15749459,6544183 ) -(1,11836:6630773,9100478:25952256,923664,227671 -h1,11836:6630773,9100478:0,0,0 -g1,11836:9551582,9100478 -g1,11836:11032040,9100478 -g1,11836:15630308,9100478 -g1,11836:18167731,9100478 -g1,11836:23170618,9100478 -g1,11836:25192535,9100478 -k1,11836:31345579,9100478:1237451 -k1,11836:32583029,9100478:1237450 -) -(1,11836:6630773,9800414:25952256,32768,0 -(1,11836:6630773,9800414:5505024,32768,0 -r1,11852:12135797,9800414:5505024,32768,0 -) -k1,11836:22359413,9800414:10223616 -k1,11836:32583029,9800414:10223616 -) -] -(1,11838:6630773,14528187:25952256,131072,0 -r1,11852:32583029,14528187:25952256,131072,0 -g1,11838:32583029,14528187 -g1,11838:32583029,14528187 -) -(1,11840:6630773,15848088:25952256,513147,134348 -g1,11840:8596853,15848088 -g1,11839:9992769,15848088 -g1,11839:12808851,15848088 -g1,11839:13667372,15848088 -g1,11839:17297411,15848088 -g1,11839:18028137,15848088 -g1,11839:20594526,15848088 -g1,11839:21860026,15848088 -k1,11840:30616949,15848088:5767171 -g1,11840:32583029,15848088 -) -(1,11841:6630773,17476008:25952256,505283,134348 -k1,11841:23887713,17476008:17256940 -h1,11841:23887713,17476008:0,0,0 -g1,11841:26546508,17476008 -g1,11841:27525615,17476008 -g1,11841:30616948,17476008 -g1,11841:32583028,17476008 -) -(1,11842:6630773,18317496:25952256,513147,134348 -k1,11842:13726357,18317496:7095584 -h1,11841:13726357,18317496:0,0,0 -g1,11841:17200420,18317496 -g1,11841:20006016,18317496 -g1,11841:21129303,18317496 -g1,11841:24181314,18317496 -g1,11841:25590993,18317496 -g1,11841:29023113,18317496 -g1,11842:30616949,18317496 -g1,11842:32583029,18317496 -) -(1,11842:6630773,19552200:25952256,131072,0 -r1,11852:32583029,19552200:25952256,131072,0 -g1,11842:32583029,19552200 -g1,11842:34549109,19552200 -) -(1,11844:6630773,22359768:25952256,32768,229376 -(1,11844:6630773,22359768:0,32768,229376 -(1,11844:6630773,22359768:5505024,32768,229376 -r1,11852:12135797,22359768:5505024,262144,229376 -) -k1,11844:6630773,22359768:-5505024 -) -(1,11844:6630773,22359768:25952256,32768,0 -r1,11852:32583029,22359768:25952256,32768,0 -) -) -(1,11844:6630773,23964096:25952256,615776,151780 -(1,11844:6630773,23964096:1974731,573309,0 -g1,11844:6630773,23964096 -g1,11844:8605504,23964096 -) -g1,11844:10904245,23964096 -g1,11844:11961996,23964096 -g1,11844:13695292,23964096 -k1,11844:32583029,23964096:15886712 -g1,11844:32583029,23964096 -) -(1,11847:6630773,25198800:25952256,505283,134348 -k1,11846:8202093,25198800:190476 -k1,11846:10810191,25198800:190475 -k1,11846:12507995,25198800:190476 -k1,11846:13349899,25198800:190476 -k1,11846:14820292,25198800:190475 -k1,11846:16029853,25198800:190476 -k1,11846:18268328,25198800:190475 -k1,11846:19229507,25198800:190476 -k1,11846:23412436,25198800:190476 -k1,11846:24254339,25198800:190475 -k1,11846:25463900,25198800:190476 -k1,11846:28638886,25198800:190476 -k1,11846:30342587,25198800:190475 -k1,11846:31149101,25198800:190476 -k1,11847:32583029,25198800:0 -) -(1,11847:6630773,26040288:25952256,513147,134348 -k1,11846:7279929,26040288:234313 -k1,11846:8461929,26040288:234349 -k1,11846:9715363,26040288:234349 -k1,11846:14013599,26040288:234349 -k1,11846:14907239,26040288:234348 -k1,11846:18225712,26040288:234349 -k1,11846:22141874,26040288:234349 -k1,11846:23395307,26040288:234348 -k1,11846:25564279,26040288:234349 -k1,11846:26457920,26040288:234349 -k1,11846:29010276,26040288:234348 -k1,11846:29896053,26040288:234349 -k1,11847:32583029,26040288:0 -) -(1,11847:6630773,26881776:25952256,513147,126483 -k1,11846:8375997,26881776:147456 -k1,11846:9714898,26881776:147456 -k1,11846:11384100,26881776:147456 -k1,11846:12190848,26881776:147456 -k1,11846:15984072,26881776:147456 -k1,11846:17512371,26881776:147455 -k1,11846:20077450,26881776:147456 -k1,11846:21717816,26881776:147456 -k1,11846:22928266,26881776:147456 -k1,11846:25385866,26881776:147456 -k1,11846:26922685,26881776:147456 -k1,11846:29624734,26881776:147456 -k1,11846:32583029,26881776:0 -) -(1,11847:6630773,27723264:25952256,505283,134348 -k1,11846:9929319,27723264:214422 -k1,11846:13307163,27723264:214421 -k1,11846:14204470,27723264:214422 -k1,11846:18588948,27723264:214422 -k1,11846:21395974,27723264:214422 -k1,11846:23442782,27723264:214421 -k1,11846:24648764,27723264:214422 -k1,11846:26614963,27723264:214422 -k1,11846:28413390,27723264:214422 -k1,11846:30540152,27723264:214421 -k1,11846:31563944,27723264:214422 -k1,11846:32583029,27723264:0 -) -(1,11847:6630773,28564752:25952256,513147,134348 -k1,11846:8003758,28564752:280500 -k1,11846:8951414,28564752:280500 -k1,11846:9646676,28564752:280419 -k1,11846:10874827,28564752:280500 -k1,11846:13917670,28564752:280500 -k1,11846:15957813,28564752:280501 -k1,11846:16897605,28564752:280500 -k1,11846:20262229,28564752:280500 -k1,11846:23243468,28564752:280500 -k1,11846:24756045,28564752:280500 -k1,11846:27311956,28564752:280501 -k1,11846:29995006,28564752:280500 -k1,11846:31084876,28564752:280500 -k1,11846:32583029,28564752:0 -) -(1,11847:6630773,29406240:25952256,513147,126483 -h1,11846:7826150,29406240:0,0,0 -k1,11846:8209629,29406240:176385 -k1,11846:9458184,29406240:176386 -k1,11846:11236269,29406240:176385 -k1,11846:12071946,29406240:176385 -k1,11846:13887387,29406240:176386 -k1,11846:15503598,29406240:176385 -k1,11846:16331411,29406240:176385 -k1,11846:18245812,29406240:176386 -k1,11846:19231567,29406240:176385 -k1,11846:21805260,29406240:176386 -k1,11846:25065769,29406240:176385 -k1,11846:28026779,29406240:176385 -k1,11846:30154827,29406240:176386 -k1,11846:31773659,29406240:176385 -k1,11846:32583029,29406240:0 -) -(1,11847:6630773,30247728:25952256,513147,134348 -k1,11846:7864095,30247728:214237 -k1,11846:12753670,30247728:214237 -k1,11846:15127318,30247728:214237 -k1,11846:17154281,30247728:214237 -k1,11846:20331401,30247728:214237 -k1,11846:21979566,30247728:214237 -k1,11846:23112618,30247728:214237 -k1,11846:25314562,30247728:214237 -k1,11846:27463422,30247728:214237 -k1,11846:30703456,30247728:214237 -k1,11846:32583029,30247728:0 -) -(1,11847:6630773,31089216:25952256,513147,126483 -k1,11846:9279607,31089216:251527 -k1,11846:12615258,31089216:251527 -k1,11846:16626586,31089216:251528 -k1,11846:18258301,31089216:251527 -k1,11846:19602313,31089216:251527 -k1,11846:20209700,31089216:251527 -k1,11846:23238643,31089216:251527 -k1,11846:26474681,31089216:251528 -k1,11846:27377636,31089216:251527 -k1,11846:29616870,31089216:251527 -k1,11847:32583029,31089216:0 -) -(1,11847:6630773,31930704:25952256,513147,134348 -k1,11846:8087638,31930704:189399 -k1,11846:9468481,31930704:189398 -k1,11846:10605531,31930704:189399 -k1,11846:13795824,31930704:189399 -k1,11846:15004308,31930704:189399 -k1,11846:18402349,31930704:189398 -k1,11846:21637861,31930704:189399 -k1,11846:23018705,31930704:189399 -k1,11846:24399549,31930704:189399 -k1,11846:27854606,31930704:189398 -k1,11846:29424849,31930704:189399 -k1,11846:32583029,31930704:0 -) -(1,11847:6630773,32772192:25952256,513147,134348 -k1,11846:8112482,32772192:195893 -k1,11846:11061542,32772192:195893 -k1,11846:12018963,32772192:195893 -k1,11846:13966633,32772192:195893 -k1,11846:17892180,32772192:195893 -k1,11846:21160402,32772192:195894 -k1,11846:24440419,32772192:195893 -k1,11846:25740594,32772192:195893 -k1,11846:26684253,32772192:195893 -k1,11846:30379113,32772192:195893 -k1,11846:31261168,32772192:195893 -k1,11846:32583029,32772192:0 -) -(1,11847:6630773,33613680:25952256,513147,134348 -k1,11846:7537139,33613680:247074 -k1,11846:8803299,33613680:247075 -k1,11846:12608323,33613680:247074 -k1,11846:15054785,33613680:247074 -k1,11846:16320945,33613680:247075 -k1,11846:16982814,33613680:247026 -k1,11846:20245855,33613680:247074 -k1,11846:21120764,33613680:247074 -k1,11846:22571080,33613680:247075 -k1,11846:25235777,33613680:247074 -k1,11846:26653324,33613680:247074 -k1,11846:28032861,33613680:247075 -k1,11846:30723117,33613680:247074 -k1,11847:32583029,33613680:0 -) -(1,11847:6630773,34455168:25952256,513147,134348 -k1,11846:7653255,34455168:177068 -k1,11846:9224275,34455168:177069 -k1,11846:10420428,34455168:177068 -k1,11846:14259648,34455168:177068 -k1,11846:15949942,34455168:177068 -k1,11846:16743049,34455168:177069 -k1,11846:17334938,34455168:177046 -k1,11846:18459657,34455168:177068 -k1,11846:22087851,34455168:177068 -k1,11846:25349044,34455168:177069 -k1,11846:29207925,34455168:177068 -k1,11846:32583029,34455168:0 -) -(1,11847:6630773,35296656:25952256,513147,134348 -k1,11846:12279649,35296656:198902 -k1,11846:15468302,35296656:198901 -k1,11846:18763125,35296656:198902 -k1,11846:20896649,35296656:198901 -k1,11846:23413559,35296656:198902 -k1,11846:24803906,35296656:198902 -k1,11846:27620315,35296656:198901 -k1,11846:28885488,35296656:198902 -k1,11846:30606135,35296656:198901 -k1,11846:31464329,35296656:198902 -k1,11847:32583029,35296656:0 -) -(1,11847:6630773,36138144:25952256,513147,134348 -k1,11846:9899381,36138144:263127 -k1,11846:11116057,36138144:263127 -k1,11846:12511646,36138144:263127 -k1,11846:13867258,36138144:263127 -k1,11846:15943111,36138144:263127 -k1,11846:19860525,36138144:263127 -k1,11846:21984219,36138144:263127 -k1,11846:24060072,36138144:263127 -k1,11846:26814878,36138144:263127 -k1,11846:30770303,36138144:263127 -k1,11846:32583029,36138144:0 -) -(1,11847:6630773,36979632:25952256,505283,126483 -k1,11846:9387727,36979632:265275 -k1,11846:12902932,36979632:265275 -k1,11846:15486215,36979632:265275 -k1,11846:16942935,36979632:265275 -k1,11846:18900350,36979632:265275 -k1,11846:21290302,36979632:265275 -k1,11846:25416303,36979632:265275 -k1,11846:28466203,36979632:265275 -k1,11846:29417640,36979632:265275 -k1,11846:32583029,36979632:0 -) -(1,11847:6630773,37821120:25952256,513147,126483 -k1,11846:8005062,37821120:177602 -k1,11846:9920680,37821120:177603 -k1,11846:10629779,37821120:177602 -k1,11846:11616752,37821120:177603 -k1,11846:13124735,37821120:177602 -k1,11846:13953765,37821120:177602 -k1,11846:16390394,37821120:177603 -k1,11846:19652120,37821120:177602 -k1,11846:22321402,37821120:177603 -k1,11846:25460576,37821120:177602 -k1,11846:26829624,37821120:177603 -k1,11846:31252648,37821120:177602 -k1,11846:32583029,37821120:0 -) -(1,11847:6630773,38662608:25952256,513147,134348 -k1,11846:7531416,38662608:249215 -k1,11846:9811593,38662608:249216 -k1,11846:12823151,38662608:249215 -k1,11846:16999939,38662608:249215 -k1,11846:17908446,38662608:249215 -k1,11846:19176747,38662608:249216 -k1,11846:21715790,38662608:249215 -k1,11846:24743732,38662608:249215 -k1,11846:25754475,38662608:249215 -k1,11846:27022776,38662608:249216 -k1,11846:31895556,38662608:249215 -k1,11846:32583029,38662608:0 -) -(1,11847:6630773,39504096:25952256,513147,126483 -k1,11846:8078344,39504096:256126 -k1,11846:11324879,39504096:256127 -k1,11846:14780473,39504096:256126 -k1,11846:16228044,39504096:256126 -k1,11846:17814552,39504096:256127 -k1,11846:18722106,39504096:256126 -k1,11846:20070718,39504096:256127 -k1,11846:22023571,39504096:256126 -k1,11846:25251755,39504096:256126 -k1,11846:29435455,39504096:256127 -k1,11846:30307619,39504096:256126 -k1,11846:32583029,39504096:0 -) -(1,11847:6630773,40345584:25952256,513147,134348 -g1,11846:11224191,40345584 -g1,11846:12106305,40345584 -g1,11846:13253185,40345584 -g1,11846:17161752,40345584 -g1,11846:19933269,40345584 -g1,11846:21323943,40345584 -k1,11847:32583029,40345584:7657883 -g1,11847:32583029,40345584 -) -] -(1,11852:32583029,45706769:0,0,0 -g1,11852:32583029,45706769 -) -) -] -(1,11852:6630773,47279633:25952256,485622,11795 -(1,11852:6630773,47279633:25952256,485622,11795 -(1,11852:6630773,47279633:0,0,0 -v1,11852:6630773,47279633:0,0,0 -) -g1,11852:6830002,47279633 -k1,11852:31387652,47279633:24557650 -) -) -] -(1,11852:4262630,4025873:0,0,0 -[1,11852:-473656,4025873:0,0,0 -(1,11852:-473656,-710413:0,0,0 -(1,11852:-473656,-710413:0,0,0 -g1,11852:-473656,-710413 -) -g1,11852:-473656,-710413 ) -] +g1,11084:15749459,6544183 +g1,11085:15749459,6544183 +(1,11085:15749459,6544183:0,0,0 +(1,11085:15749459,6544183:0,0,0 +g1,11085:15749459,6544183 +g1,11085:15749459,6544183 +g1,11085:15749459,6544183 +g1,11085:15749459,6544183 +g1,11085:15749459,6544183 +(1,11085:15749459,6544183:0,0,0 +(1,11085:15749459,6544183:4121582,373362,104590 +(1,11085:15749459,6544183:4121582,373362,104590 +(1,11085:15749459,6544183:0,373362,104590 +r1,11134:19871041,6544183:4121582,477952,104590 +k1,11085:15749459,6544183:-4121582 +) +(1,11085:15749459,6544183:4121582,373362,104590 +g1,11085:19234683,6544183 +h1,11085:19867764,6544183:0,370085,101313 +) +) +g1,11085:19871041,6544183 +) +) +g1,11085:15749459,6544183 +g1,11085:15749459,6544183 +) +) +g1,11085:15749459,6544183 +(1,11086:15749459,6544183:0,0,0 +(1,11086:15749459,6544183:0,0,0 +g1,11086:15749459,6544183 +g1,11086:15749459,6544183 +g1,11086:15749459,6544183 +g1,11086:15749459,6544183 +g1,11086:15749459,6544183 +(1,11086:15749459,6544183:0,0,0 +(1,11086:15749459,6544183:2804024,461832,113835 +(1,11086:15749459,6544183:2804024,461832,113835 +g1,11086:17022890,6544183 +) +g1,11086:18553483,6544183 +) +) +g1,11086:15749459,6544183 +g1,11086:15749459,6544183 +) +) +g1,11086:15749459,6544183 +g1,11087:15749459,6544183 +(1,11087:15749459,6544183:0,0,0 +(1,11087:15749459,6544183:0,0,0 +g1,11087:15749459,6544183 +g1,11087:15749459,6544183 +g1,11087:15749459,6544183 +g1,11087:15749459,6544183 +g1,11087:15749459,6544183 +(1,11087:15749459,6544183:0,0,0 +(1,11087:15749459,6544183:4121582,373362,104590 +(1,11087:15749459,6544183:4121582,373362,104590 +(1,11087:15749459,6544183:0,373362,104590 +r1,11134:19871041,6544183:4121582,477952,104590 +k1,11087:15749459,6544183:-4121582 +) +(1,11087:15749459,6544183:4121582,373362,104590 +g1,11087:19234683,6544183 +h1,11087:19867764,6544183:0,370085,101313 +) +) +g1,11087:19871041,6544183 +) +) +g1,11087:15749459,6544183 +g1,11087:15749459,6544183 +) +) +g1,11087:15749459,6544183 +g1,11088:15749459,6544183 +(1,11088:15749459,6544183:0,0,0 +(1,11088:15749459,6544183:0,0,0 +g1,11088:15749459,6544183 +g1,11088:15749459,6544183 +g1,11088:15749459,6544183 +g1,11088:15749459,6544183 +g1,11088:15749459,6544183 +(1,11088:15749459,6544183:0,0,0 +(1,11088:15749459,6544183:6778260,454754,7077 +(1,11088:15749459,6544183:6778260,454754,7077 +g1,11088:18406027,6544183 +g1,11088:20120646,6544183 +$1,11088:20120646,6544183 +$1,11088:20728165,6544183 +g1,11088:20907472,6544183 +) +g1,11088:22527719,6544183 +) +) +g1,11088:15749459,6544183 +g1,11088:15749459,6544183 +) +) +g1,11088:15749459,6544183 +g1,11089:15749459,6544183 +g1,11089:15749459,6544183 +g1,11089:15749459,6544183 +g1,11089:15749459,6544183 +g1,11089:15749459,6544183 +g1,11089:15749459,6544183 +g1,11090:15749459,6544183 +g1,11090:15749459,6544183 +g1,11090:15749459,6544183 +g1,11090:15749459,6544183 +g1,11090:15749459,6544183 +g1,11090:15749459,6544183 +g1,11091:15749459,6544183 +g1,11091:15749459,6544183 +g1,11091:15749459,6544183 +g1,11091:15749459,6544183 +g1,11091:15749459,6544183 +g1,11091:15749459,6544183 +g1,11092:15749459,6544183 +g1,11092:15749459,6544183 +g1,11092:15749459,6544183 +g1,11092:15749459,6544183 +g1,11092:15749459,6544183 +g1,11092:15749459,6544183 +g1,11093:15749459,6544183 +g1,11093:15749459,6544183 +) +g1,11093:15749459,6544183 +) +) +g1,11095:27323573,16999476 +k1,11095:32583029,16999476:5259456 +) +(1,11098:6630773,18519916:25952256,513147,134348 +h1,11097:6630773,18519916:983040,0,0 +k1,11097:9155370,18519916:181030 +k1,11097:12362198,18519916:181031 +k1,11097:13734673,18519916:181030 +k1,11097:16992618,18519916:181030 +k1,11097:18165208,18519916:181030 +k1,11097:20727817,18519916:181031 +k1,11097:22644240,18519916:181030 +k1,11097:25520766,18519916:181030 +(1,11097:25520766,18519916:0,459977,115847 +r1,11134:29044438,18519916:3523672,575824,115847 +k1,11097:25520766,18519916:-3523672 +) +(1,11097:25520766,18519916:3523672,459977,115847 +k1,11097:25520766,18519916:3277 +h1,11097:29041161,18519916:0,411205,112570 +) +k1,11097:29399139,18519916:181031 +k1,11097:30771614,18519916:181030 +k1,11097:32583029,18519916:0 +) +(1,11098:6630773,19384996:25952256,505283,134348 +k1,11097:7963252,19384996:186254 +k1,11097:9281313,19384996:186254 +k1,11097:11169537,19384996:186254 +k1,11097:13315318,19384996:186255 +k1,11097:14117610,19384996:186254 +k1,11097:14718694,19384996:186241 +k1,11097:15666476,19384996:186254 +k1,11097:19498498,19384996:186254 +k1,11097:20336180,19384996:186254 +k1,11097:20878294,19384996:186254 +k1,11097:23575888,19384996:186254 +k1,11097:25673828,19384996:186255 +k1,11097:26487917,19384996:186254 +k1,11097:27693256,19384996:186254 +k1,11097:30540927,19384996:186254 +k1,11098:32583029,19384996:0 +) +(1,11098:6630773,20250076:25952256,513147,134348 +(1,11097:6630773,20250076:0,414482,115847 +r1,11134:6989039,20250076:358266,530329,115847 +k1,11097:6630773,20250076:-358266 +) +(1,11097:6630773,20250076:358266,414482,115847 +k1,11097:6630773,20250076:3277 +h1,11097:6985762,20250076:0,411205,112570 +) +k1,11097:7163770,20250076:174731 +k1,11097:8529946,20250076:174731 +(1,11097:8529946,20250076:0,414482,115847 +r1,11134:8888212,20250076:358266,530329,115847 +k1,11097:8529946,20250076:-358266 +) +(1,11097:8529946,20250076:358266,414482,115847 +k1,11097:8529946,20250076:3277 +h1,11097:8884935,20250076:0,411205,112570 +) +k1,11097:9062943,20250076:174731 +k1,11097:10229234,20250076:174731 +k1,11097:11870661,20250076:174731 +k1,11097:14174001,20250076:174731 +k1,11097:18133436,20250076:174731 +k1,11097:18991052,20250076:174731 +k1,11097:21234099,20250076:174731 +k1,11097:22922056,20250076:174731 +k1,11097:25106776,20250076:174731 +k1,11097:26300592,20250076:174731 +k1,11097:29170819,20250076:174731 +k1,11097:30293201,20250076:174731 +k1,11097:32583029,20250076:0 +) +(1,11098:6630773,21115156:25952256,513147,134348 +k1,11097:8144561,21115156:229282 +k1,11097:9506306,21115156:229283 +k1,11097:10483354,21115156:229282 +k1,11097:13473668,21115156:229282 +k1,11097:14389112,21115156:229282 +k1,11097:18047894,21115156:229283 +k1,11097:19975214,21115156:229282 +k1,11097:21223581,21115156:229282 +k1,11097:24148360,21115156:229283 +k1,11097:24909139,21115156:229282 +k1,11097:27179867,21115156:229282 +k1,11097:28680547,21115156:229282 +k1,11097:30014112,21115156:229283 +k1,11097:31923737,21115156:229282 +k1,11097:32583029,21115156:0 +) +(1,11098:6630773,21980236:25952256,513147,134348 +k1,11097:10159112,21980236:247607 +k1,11097:12475035,21980236:247607 +k1,11097:13408803,21980236:247606 +k1,11097:17720297,21980236:247607 +k1,11097:18915555,21980236:247607 +k1,11097:21085333,21980236:247607 +k1,11097:23343585,21980236:247607 +k1,11097:24242620,21980236:247607 +k1,11097:25237992,21980236:247606 +k1,11097:28246631,21980236:247607 +k1,11097:29180400,21980236:247607 +k1,11097:32583029,21980236:0 +) +(1,11098:6630773,22845316:25952256,513147,134348 +g1,11097:8528040,22845316 +g1,11097:10817212,22845316 +g1,11097:12035526,22845316 +k1,11098:32583028,22845316:17678336 +g1,11098:32583028,22845316 +) +v1,11100:6630773,23530171:0,393216,0 +(1,11108:6630773,25345212:25952256,2208257,196608 +g1,11108:6630773,25345212 +g1,11108:6630773,25345212 +g1,11108:6434165,25345212 +(1,11108:6434165,25345212:0,2208257,196608 +r1,11134:32779637,25345212:26345472,2404865,196608 +k1,11108:6434165,25345212:-26345472 +) +(1,11108:6434165,25345212:26345472,2208257,196608 +[1,11108:6630773,25345212:25952256,2011649,0 +(1,11102:6630773,23764608:25952256,431045,106246 +(1,11101:6630773,23764608:0,0,0 +g1,11101:6630773,23764608 +g1,11101:6630773,23764608 +g1,11101:6303093,23764608 +(1,11101:6303093,23764608:0,0,0 +) +g1,11101:6630773,23764608 +) +g1,11102:9286405,23764608 +g1,11102:10282267,23764608 +g1,11102:14265714,23764608 +g1,11102:15925484,23764608 +g1,11102:16589392,23764608 +h1,11102:17253300,23764608:0,0,0 +k1,11102:32583029,23764608:15329729 +g1,11102:32583029,23764608 +) +(1,11103:6630773,24449463:25952256,424439,106246 +h1,11103:6630773,24449463:0,0,0 +g1,11103:10282267,24449463 +h1,11103:10946175,24449463:0,0,0 +k1,11103:32583029,24449463:21636854 +g1,11103:32583029,24449463 +) +(1,11107:6630773,25265390:25952256,424439,79822 +(1,11105:6630773,25265390:0,0,0 +g1,11105:6630773,25265390 +g1,11105:6630773,25265390 +g1,11105:6303093,25265390 +(1,11105:6303093,25265390:0,0,0 +) +g1,11105:6630773,25265390 +) +g1,11107:7626635,25265390 +g1,11107:8954451,25265390 +h1,11107:9618359,25265390:0,0,0 +k1,11107:32583029,25265390:22964670 +g1,11107:32583029,25265390 +) +] +) +g1,11108:32583029,25345212 +g1,11108:6630773,25345212 +g1,11108:6630773,25345212 +g1,11108:32583029,25345212 +g1,11108:32583029,25345212 +) +h1,11108:6630773,25541820:0,0,0 +v1,11112:6630773,26406900:0,393216,0 +(1,11131:6630773,45656498:25952256,19642814,0 +g1,11131:6630773,45656498 +g1,11131:6237557,45656498 +r1,11134:6368629,45656498:131072,19642814,0 +g1,11131:6567858,45656498 +g1,11131:6764466,45656498 +[1,11131:6764466,45656498:25818563,19642814,0 +(1,11113:6764466,26768077:25818563,754393,260573 +(1,11112:6764466,26768077:0,754393,260573 +r1,11134:8010564,26768077:1246098,1014966,260573 +k1,11112:6764466,26768077:-1246098 +) +(1,11112:6764466,26768077:1246098,754393,260573 +) +k1,11112:8287963,26768077:277399 +k1,11112:8615643,26768077:327680 +k1,11112:9520877,26768077:277399 +k1,11112:11232204,26768077:277399 +k1,11112:12098116,26768077:277399 +k1,11112:15778144,26768077:277399 +k1,11112:16706971,26768077:277399 +k1,11112:20010166,26768077:277398 +k1,11112:21279125,26768077:277399 +k1,11112:23761811,26768077:277399 +k1,11112:24800738,26768077:277399 +k1,11112:26761757,26768077:277399 +k1,11112:28420000,26768077:277399 +k1,11112:29228896,26768077:277399 +k1,11112:32583029,26768077:0 +) +(1,11113:6764466,27633157:25818563,513147,126483 +k1,11112:8330613,27633157:212173 +k1,11112:11752084,27633157:212173 +k1,11112:12615684,27633157:212172 +k1,11112:16260633,27633157:212173 +k1,11112:19446830,27633157:212173 +k1,11112:21155190,27633157:212173 +k1,11112:21983400,27633157:212172 +k1,11112:22551433,27633157:212173 +k1,11112:25963074,27633157:212173 +k1,11112:27752043,27633157:212173 +k1,11112:29457125,27633157:212172 +k1,11112:30320726,27633157:212173 +k1,11112:32583029,27633157:0 +) +(1,11113:6764466,28498237:25818563,513147,134348 +k1,11112:7782776,28498237:247607 +k1,11112:11102711,28498237:247607 +k1,11112:13555604,28498237:247606 +k1,11112:16361737,28498237:247607 +k1,11112:16965204,28498237:247607 +k1,11112:19341420,28498237:247607 +k1,11112:23043430,28498237:247607 +k1,11112:24079435,28498237:247607 +k1,11112:26007384,28498237:247606 +k1,11112:28620841,28498237:247607 +k1,11112:29887533,28498237:247607 +k1,11112:32583029,28498237:0 +) +(1,11113:6764466,29363317:25818563,505283,134348 +k1,11112:8088657,29363317:191729 +k1,11112:10507955,29363317:191729 +k1,11112:13276560,29363317:191729 +k1,11112:15597554,29363317:191729 +k1,11112:19454057,29363317:191730 +k1,11112:20480715,29363317:191729 +k1,11112:22374414,29363317:191729 +k1,11112:25642403,29363317:191729 +k1,11112:29180400,29363317:191729 +k1,11112:32583029,29363317:0 +) +(1,11113:6764466,30228397:25818563,513147,134348 +k1,11112:8048371,30228397:179623 +k1,11112:9513810,30228397:179623 +k1,11112:10441200,30228397:179624 +k1,11112:12826110,30228397:179623 +k1,11112:13767261,30228397:179623 +k1,11112:17099822,30228397:179624 +k1,11112:20007709,30228397:179623 +k1,11112:21471838,30228397:179623 +k1,11112:25627530,30228397:179623 +k1,11112:26458582,30228397:179624 +k1,11112:26994065,30228397:179623 +k1,11112:29302297,30228397:179623 +k1,11112:32583029,30228397:0 +) +(1,11113:6764466,31093477:25818563,513147,134348 +k1,11112:8987392,31093477:212937 +k1,11112:10219415,31093477:212938 +k1,11112:12009148,31093477:212937 +k1,11112:12881377,31093477:212937 +k1,11112:14113399,31093477:212937 +k1,11112:17021833,31093477:212938 +k1,11112:18226330,31093477:212937 +k1,11112:23534691,31093477:212937 +k1,11112:24399056,31093477:212937 +k1,11112:25631079,31093477:212938 +k1,11112:28916344,31093477:212937 +k1,11112:30320726,31093477:212937 +k1,11112:32583029,31093477:0 +) +(1,11113:6764466,31958557:25818563,505283,134348 +k1,11112:7642652,31958557:246419 +k1,11112:8358963,31958557:246418 +k1,11112:9136879,31958557:246419 +k1,11112:12013258,31958557:246419 +k1,11112:12911104,31958557:246418 +k1,11112:15396888,31958557:246419 +k1,11112:17136873,31958557:246419 +k1,11112:20143012,31958557:246418 +k1,11112:21005469,31958557:246419 +k1,11112:21666683,31958557:246371 +k1,11112:23648495,31958557:246419 +k1,11112:25587054,31958557:246419 +k1,11112:28675768,31958557:246418 +k1,11112:31391584,31958557:246419 +k1,11112:32583029,31958557:0 +) +(1,11113:6764466,32823637:25818563,513147,134348 +k1,11112:11458089,32823637:294846 +k1,11112:13445076,32823637:294847 +k1,11112:16650376,32823637:294846 +k1,11112:18438789,32823637:294847 +k1,11112:19419797,32823637:294846 +k1,11112:23224750,32823637:294846 +k1,11112:24334865,32823637:294847 +k1,11112:26590548,32823637:294846 +k1,11112:29911192,32823637:294847 +k1,11112:31490544,32823637:294846 +k1,11112:32583029,32823637:0 +) +(1,11113:6764466,33688717:25818563,513147,134348 +g1,11112:9391149,33688717 +g1,11112:10249670,33688717 +g1,11112:13851528,33688717 +g1,11112:14812285,33688717 +k1,11113:32583029,33688717:14410713 +g1,11113:32583029,33688717 +) +v1,11115:6764466,34373572:0,393216,0 +(1,11125:6764466,37558323:25818563,3577967,196608 +g1,11125:6764466,37558323 +g1,11125:6764466,37558323 +g1,11125:6567858,37558323 +(1,11125:6567858,37558323:0,3577967,196608 +r1,11134:32779637,37558323:26211779,3774575,196608 +k1,11125:6567857,37558323:-26211780 +) +(1,11125:6567858,37558323:26211779,3577967,196608 +[1,11125:6764466,37558323:25818563,3381359,0 +(1,11117:6764466,34608009:25818563,431045,112852 +(1,11116:6764466,34608009:0,0,0 +g1,11116:6764466,34608009 +g1,11116:6764466,34608009 +g1,11116:6436786,34608009 +(1,11116:6436786,34608009:0,0,0 +) +g1,11116:6764466,34608009 +) +g1,11117:10084005,34608009 +g1,11117:11079867,34608009 +g1,11117:15727222,34608009 +g1,11117:16723084,34608009 +h1,11117:17718946,34608009:0,0,0 +k1,11117:32583029,34608009:14864083 +g1,11117:32583029,34608009 +) +(1,11118:6764466,35292864:25818563,407923,4954 +h1,11118:6764466,35292864:0,0,0 +g1,11118:7428374,35292864 +g1,11118:8424236,35292864 +h1,11118:8756190,35292864:0,0,0 +k1,11118:32583030,35292864:23826840 +g1,11118:32583030,35292864 +) +(1,11119:6764466,35977719:25818563,424439,112852 +h1,11119:6764466,35977719:0,0,0 +k1,11119:6764466,35977719:0 +h1,11119:10747913,35977719:0,0,0 +k1,11119:32583029,35977719:21835116 +g1,11119:32583029,35977719 +) +(1,11120:6764466,36662574:25818563,298373,4954 +h1,11120:6764466,36662574:0,0,0 +h1,11120:7096420,36662574:0,0,0 +k1,11120:32583028,36662574:25486608 +g1,11120:32583028,36662574 +) +(1,11124:6764466,37478501:25818563,424439,79822 +(1,11122:6764466,37478501:0,0,0 +g1,11122:6764466,37478501 +g1,11122:6764466,37478501 +g1,11122:6436786,37478501 +(1,11122:6436786,37478501:0,0,0 +) +g1,11122:6764466,37478501 +) +g1,11124:7760328,37478501 +g1,11124:9088144,37478501 +h1,11124:9420098,37478501:0,0,0 +k1,11124:32583030,37478501:23162932 +g1,11124:32583030,37478501 +) +] +) +g1,11125:32583029,37558323 +g1,11125:6764466,37558323 +g1,11125:6764466,37558323 +g1,11125:32583029,37558323 +g1,11125:32583029,37558323 +) +h1,11125:6764466,37754931:0,0,0 +(1,11129:6764466,38620011:25818563,513147,134348 +h1,11128:6764466,38620011:983040,0,0 +k1,11128:8595441,38620011:220100 +k1,11128:11322293,38620011:220100 +k1,11128:13715567,38620011:220100 +k1,11128:15220173,38620011:220100 +k1,11128:16970539,38620011:220100 +k1,11128:17842067,38620011:220100 +k1,11128:18809933,38620011:220100 +k1,11128:20773946,38620011:220100 +k1,11128:23778015,38620011:220100 +k1,11128:26363965,38620011:220100 +k1,11128:27603150,38620011:220100 +k1,11128:30518746,38620011:220100 +k1,11128:31730406,38620011:220100 +k1,11129:32583029,38620011:0 +) +(1,11129:6764466,39485091:25818563,513147,126483 +g1,11128:9104100,39485091 +g1,11128:10064857,39485091 +g1,11128:11283171,39485091 +g1,11128:14177896,39485091 +g1,11128:15028553,39485091 +g1,11128:16246867,39485091 +k1,11129:32583029,39485091:14427098 +g1,11129:32583029,39485091 +) +(1,11131:6764466,40350171:25818563,513147,134348 +h1,11130:6764466,40350171:983040,0,0 +k1,11130:8483077,40350171:247983 +k1,11130:11426605,40350171:248032 +k1,11130:12778920,40350171:248033 +k1,11130:14402553,40350171:248032 +k1,11130:16661230,40350171:248032 +k1,11130:17265122,40350171:248032 +k1,11130:19386174,40350171:248033 +k1,11130:21767403,40350171:248032 +k1,11130:22740263,40350171:248032 +k1,11130:24686333,40350171:248032 +k1,11130:27605613,40350171:248033 +k1,11130:30026819,40350171:248032 +k1,11130:31266411,40350171:248032 +k1,11131:32583029,40350171:0 +) +(1,11131:6764466,41215251:25818563,505283,134348 +k1,11130:8902949,41215251:201239 +k1,11130:10484376,41215251:201239 +k1,11130:12215882,41215251:201240 +k1,11130:13068549,41215251:201239 +k1,11130:14017554,41215251:201239 +k1,11130:17063056,41215251:201239 +k1,11130:18531761,41215251:201239 +k1,11130:19088861,41215251:201240 +k1,11130:21163119,41215251:201239 +k1,11130:23497555,41215251:201239 +k1,11130:24326629,41215251:201239 +k1,11130:26279645,41215251:201239 +k1,11130:28351938,41215251:201240 +k1,11130:29877004,41215251:201239 +k1,11130:31069803,41215251:201239 +k1,11130:32583029,41215251:0 +) +(1,11131:6764466,42080331:25818563,513147,134348 +k1,11130:7655409,42080331:239515 +k1,11130:9971105,42080331:239515 +k1,11130:10976735,42080331:239514 +k1,11130:12235335,42080331:239515 +k1,11130:14485495,42080331:239515 +k1,11130:15376438,42080331:239515 +k1,11130:16363719,42080331:239515 +k1,11130:19381961,42080331:239515 +k1,11130:20888941,42080331:239514 +k1,11130:22285166,42080331:239515 +k1,11130:22939484,42080331:239475 +k1,11130:25312196,42080331:239515 +k1,11130:26593732,42080331:239514 +k1,11130:29668334,42080331:239515 +k1,11130:31895556,42080331:239515 +k1,11130:32583029,42080331:0 +) +(1,11131:6764466,42945411:25818563,513147,134348 +k1,11130:9943230,42945411:152967 +k1,11130:11242422,42945411:152967 +(1,11130:11242422,42945411:0,452978,115847 +r1,11134:12655823,42945411:1413401,568825,115847 +k1,11130:11242422,42945411:-1413401 +) +(1,11130:11242422,42945411:1413401,452978,115847 +k1,11130:11242422,42945411:3277 +h1,11130:12652546,42945411:0,411205,112570 +) +k1,11130:12982460,42945411:152967 +k1,11130:16264772,42945411:152968 +k1,11130:17033777,42945411:152967 +k1,11130:19465431,42945411:152967 +h1,11130:20436019,42945411:0,0,0 +k1,11130:20588986,42945411:152967 +k1,11130:21551323,42945411:152967 +k1,11130:23202443,42945411:152967 +h1,11130:24397820,42945411:0,0,0 +k1,11130:24724458,42945411:152968 +k1,11130:26888070,42945411:152967 +k1,11130:28364864,42945411:152967 +k1,11130:29911782,42945411:152967 +k1,11130:32583029,42945411:0 +) +(1,11131:6764466,43810491:25818563,513147,134348 +k1,11130:11681059,43810491:243876 +k1,11130:15052313,43810491:243876 +k1,11130:16667202,43810491:243876 +k1,11130:19632133,43810491:243876 +k1,11130:23682994,43810491:243875 +k1,11130:25965040,43810491:243876 +k1,11130:26824954,43810491:243876 +k1,11130:29300331,43810491:243876 +k1,11130:32583029,43810491:0 +) +(1,11131:6764466,44675571:25818563,513147,134348 +k1,11130:7654532,44675571:262231 +k1,11130:8935847,44675571:262230 +k1,11130:10565159,44675571:262231 +k1,11130:11636759,44675571:262230 +(1,11130:11636759,44675571:0,452978,115847 +r1,11134:13050160,44675571:1413401,568825,115847 +k1,11130:11636759,44675571:-1413401 +) +(1,11130:11636759,44675571:1413401,452978,115847 +k1,11130:11636759,44675571:3277 +h1,11130:13046883,44675571:0,411205,112570 +) +k1,11130:13312391,44675571:262231 +k1,11130:14593707,44675571:262231 +k1,11130:17634664,44675571:262230 +k1,11130:20360393,44675571:262231 +k1,11130:22177792,44675571:262230 +k1,11130:22971520,44675571:262231 +(1,11130:22971520,44675571:0,452978,115847 +r1,11134:23681498,44675571:709978,568825,115847 +k1,11130:22971520,44675571:-709978 +) +(1,11130:22971520,44675571:709978,452978,115847 +k1,11130:22971520,44675571:3277 +h1,11130:23678221,44675571:0,411205,112570 +) +k1,11130:24117399,44675571:262231 +k1,11130:24735489,44675571:262230 +k1,11130:26552889,44675571:262231 +k1,11130:29198008,44675571:262230 +k1,11130:31027860,44675571:262231 +k1,11131:32583029,44675571:0 +) +(1,11131:6764466,45540651:25818563,452978,115847 +(1,11130:6764466,45540651:0,452978,115847 +r1,11134:8177867,45540651:1413401,568825,115847 +k1,11130:6764466,45540651:-1413401 +) +(1,11130:6764466,45540651:1413401,452978,115847 +k1,11130:6764466,45540651:3277 +h1,11130:8174590,45540651:0,411205,112570 +) +k1,11131:32583029,45540651:24231492 +g1,11131:32583029,45540651 +) +] +g1,11131:32583029,45656498 +) +h1,11131:6630773,45656498:0,0,0 +] +(1,11134:32583029,45706769:0,0,0 +g1,11134:32583029,45706769 +) +) +] +(1,11134:6630773,47279633:25952256,0,0 +h1,11134:6630773,47279633:25952256,0,0 +) +] +(1,11134:4262630,4025873:0,0,0 +[1,11134:-473656,4025873:0,0,0 +(1,11134:-473656,-710413:0,0,0 +(1,11134:-473656,-710413:0,0,0 +g1,11134:-473656,-710413 +) +g1,11134:-473656,-710413 +) +] ) -] -!15030 -}202 -Input:1725:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1726:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1727:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1728:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1729:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1730:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1731:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!670 -{203 -[1,11901:4262630,47279633:28320399,43253760,0 -(1,11901:4262630,4025873:0,0,0 -[1,11901:-473656,4025873:0,0,0 -(1,11901:-473656,-710413:0,0,0 -(1,11901:-473656,-644877:0,0,0 -k1,11901:-473656,-644877:-65536 +] +!25075 +}178 +Input:1680:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1681:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1682:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1683:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1684:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1685:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1686:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1687:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1688:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1689:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!952 +{179 +[1,11197:4262630,47279633:28320399,43253760,0 +(1,11197:4262630,4025873:0,0,0 +[1,11197:-473656,4025873:0,0,0 +(1,11197:-473656,-710413:0,0,0 +(1,11197:-473656,-644877:0,0,0 +k1,11197:-473656,-644877:-65536 ) -(1,11901:-473656,4736287:0,0,0 -k1,11901:-473656,4736287:5209943 +(1,11197:-473656,4736287:0,0,0 +k1,11197:-473656,4736287:5209943 ) -g1,11901:-473656,-710413 +g1,11197:-473656,-710413 ) ] ) -[1,11901:6630773,47279633:25952256,43253760,0 -[1,11901:6630773,4812305:25952256,786432,0 -(1,11901:6630773,4812305:25952256,513147,126483 -(1,11901:6630773,4812305:25952256,513147,126483 -g1,11901:3078558,4812305 -[1,11901:3078558,4812305:0,0,0 -(1,11901:3078558,2439708:0,1703936,0 -k1,11901:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,11901:2537886,2439708:1179648,16384,0 +[1,11197:6630773,47279633:25952256,43253760,0 +[1,11197:6630773,4812305:25952256,786432,0 +(1,11197:6630773,4812305:25952256,505283,134348 +(1,11197:6630773,4812305:25952256,505283,134348 +g1,11197:3078558,4812305 +[1,11197:3078558,4812305:0,0,0 +(1,11197:3078558,2439708:0,1703936,0 +k1,11197:1358238,2439708:-1720320 +(1,11038:1358238,2439708:1720320,1703936,0 +(1,11038:1358238,2439708:1179648,16384,0 +r1,11197:2537886,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,11901:3078558,1915420:16384,1179648,0 +g1,11038:3062174,2439708 +(1,11038:3062174,2439708:16384,1703936,0 +[1,11038:3062174,2439708:25952256,1703936,0 +(1,11038:3062174,1915420:25952256,1179648,0 +(1,11038:3062174,1915420:16384,1179648,0 +r1,11197:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +k1,11038:29014430,1915420:25935872 +g1,11038:29014430,1915420 ) ] ) ) ) ] -[1,11901:3078558,4812305:0,0,0 -(1,11901:3078558,2439708:0,1703936,0 -g1,11901:29030814,2439708 -g1,11901:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,11901:36151628,1915420:16384,1179648,0 +[1,11197:3078558,4812305:0,0,0 +(1,11197:3078558,2439708:0,1703936,0 +g1,11197:29030814,2439708 +g1,11197:36135244,2439708 +(1,11038:36135244,2439708:1720320,1703936,0 +(1,11038:36135244,2439708:16384,1703936,0 +[1,11038:36135244,2439708:25952256,1703936,0 +(1,11038:36135244,1915420:25952256,1179648,0 +(1,11038:36135244,1915420:16384,1179648,0 +r1,11197:36151628,1915420:16384,1179648,0 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +k1,11038:62087500,1915420:25935872 +g1,11038:62087500,1915420 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,11901:37855564,2439708:1179648,16384,0 +g1,11038:36675916,2439708 +(1,11038:36675916,2439708:1179648,16384,0 +r1,11197:37855564,2439708:1179648,16384,0 ) ) -k1,11901:3078556,2439708:-34777008 +k1,11197:3078556,2439708:-34777008 ) ] -[1,11901:3078558,4812305:0,0,0 -(1,11901:3078558,49800853:0,16384,2228224 -k1,11901:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,11901:2537886,49800853:1179648,16384,0 +[1,11197:3078558,4812305:0,0,0 +(1,11197:3078558,49800853:0,16384,2228224 +k1,11197:1358238,49800853:-1720320 +(1,11038:1358238,49800853:1720320,16384,2228224 +(1,11038:1358238,49800853:1179648,16384,0 +r1,11197:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,11901:3078558,51504789:16384,1179648,0 +g1,11038:3062174,49800853 +(1,11038:3062174,52029077:16384,1703936,0 +[1,11038:3062174,52029077:25952256,1703936,0 +(1,11038:3062174,51504789:25952256,1179648,0 +(1,11038:3062174,51504789:16384,1179648,0 +r1,11197:3078558,51504789:16384,1179648,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 +k1,11038:29014430,51504789:25935872 +g1,11038:29014430,51504789 ) ] ) ) ) ] -[1,11901:3078558,4812305:0,0,0 -(1,11901:3078558,49800853:0,16384,2228224 -g1,11901:29030814,49800853 -g1,11901:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,11901:36151628,51504789:16384,1179648,0 -) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 +[1,11197:3078558,4812305:0,0,0 +(1,11197:3078558,49800853:0,16384,2228224 +g1,11197:29030814,49800853 +g1,11197:36135244,49800853 +(1,11038:36135244,49800853:1720320,16384,2228224 +(1,11038:36135244,52029077:16384,1703936,0 +[1,11038:36135244,52029077:25952256,1703936,0 +(1,11038:36135244,51504789:25952256,1179648,0 +(1,11038:36135244,51504789:16384,1179648,0 +r1,11197:36151628,51504789:16384,1179648,0 +) +k1,11038:62087500,51504789:25935872 +g1,11038:62087500,51504789 ) ] ) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,11901:37855564,49800853:1179648,16384,0 -) +g1,11038:36675916,49800853 +(1,11038:36675916,49800853:1179648,16384,0 +r1,11197:37855564,49800853:1179648,16384,0 ) -k1,11901:3078556,49800853:-34777008 ) -] -g1,11901:6630773,4812305 -k1,11901:19540057,4812305:11713907 -g1,11901:21162728,4812305 -g1,11901:21985204,4812305 -g1,11901:24539797,4812305 -g1,11901:25949476,4812305 -g1,11901:28728857,4812305 -g1,11901:29852144,4812305 -) -) -] -[1,11901:6630773,45706769:25952256,40108032,0 -(1,11901:6630773,45706769:25952256,40108032,0 -(1,11901:6630773,45706769:0,0,0 -g1,11901:6630773,45706769 -) -[1,11901:6630773,45706769:25952256,40108032,0 -(1,11849:6630773,6254097:25952256,32768,229376 -(1,11849:6630773,6254097:0,32768,229376 -(1,11849:6630773,6254097:5505024,32768,229376 -r1,11901:12135797,6254097:5505024,262144,229376 +k1,11197:3078556,49800853:-34777008 ) -k1,11849:6630773,6254097:-5505024 -) -(1,11849:6630773,6254097:25952256,32768,0 -r1,11901:32583029,6254097:25952256,32768,0 -) -) -(1,11849:6630773,7858425:25952256,606339,14155 -(1,11849:6630773,7858425:1974731,582746,0 -g1,11849:6630773,7858425 -g1,11849:8605504,7858425 -) -g1,11849:12684727,7858425 -k1,11849:32583029,7858425:15540682 -g1,11849:32583029,7858425 -) -(1,11852:6630773,9093129:25952256,513147,134348 -k1,11851:8683284,9093129:315807 -k1,11851:10018175,9093129:315806 -k1,11851:11925852,9093129:315807 -k1,11851:13979673,9093129:315806 -k1,11851:14954772,9093129:315807 -k1,11851:16289663,9093129:315806 -k1,11851:17020196,9093129:315690 -k1,11851:20178299,9093129:315807 -k1,11851:21110143,9093129:315806 -k1,11851:22815313,9093129:315807 -k1,11851:25685712,9093129:315806 -k1,11851:27192964,9093129:315807 -k1,11851:30535879,9093129:315807 -k1,11851:31266411,9093129:315689 -k1,11852:32583029,9093129:0 -) -(1,11852:6630773,9934617:25952256,513147,134348 -k1,11851:8495808,9934617:208285 -k1,11851:11729890,9934617:208285 -k1,11851:12885827,9934617:208286 -k1,11851:14560808,9934617:208285 -k1,11851:16893770,9934617:208285 -k1,11851:18293500,9934617:208285 -k1,11851:21188106,9934617:208285 -k1,11851:25371805,9934617:208285 -k1,11851:27339077,9934617:208286 -k1,11851:29114983,9934617:208285 -k1,11851:31391584,9934617:208285 -k1,11851:32583029,9934617:0 -) -(1,11852:6630773,10776105:25952256,513147,134348 -k1,11851:9824998,10776105:209715 -k1,11851:10686141,10776105:209715 -k1,11851:12830479,10776105:209715 -k1,11851:14394168,10776105:209715 -k1,11851:17290204,10776105:209715 -k1,11851:19991597,10776105:209714 -k1,11851:22068433,10776105:209715 -k1,11851:23269708,10776105:209715 -k1,11851:26471142,10776105:209715 -k1,11851:27340149,10776105:209715 -k1,11851:30575661,10776105:209715 -k1,11852:32583029,10776105:0 -) -(1,11852:6630773,11617593:25952256,513147,134348 -k1,11851:9495649,11617593:235572 -k1,11851:10750306,11617593:235572 -k1,11851:14457320,11617593:235572 -k1,11851:15352184,11617593:235572 -k1,11851:16606841,11617593:235572 -k1,11851:20147395,11617593:235573 -k1,11851:21896193,11617593:235572 -k1,11851:23521128,11617593:235572 -k1,11851:27264842,11617593:235572 -k1,11851:29238429,11617593:235572 -k1,11851:30156886,11617593:235572 -k1,11851:32583029,11617593:0 -) -(1,11852:6630773,12459081:25952256,505283,115847 -(1,11851:6837867,12459081:0,452978,115847 -r1,11901:8954692,12459081:2116825,568825,115847 -k1,11851:6837867,12459081:-2116825 -) -(1,11851:6837867,12459081:2116825,452978,115847 -k1,11851:6837867,12459081:3277 -h1,11851:8951415,12459081:0,411205,112570 -) -k1,11851:9554390,12459081:218934 -k1,11851:12427531,12459081:218933 -(1,11851:12634625,12459081:0,452978,115847 -r1,11901:14399738,12459081:1765113,568825,115847 -k1,11851:12634625,12459081:-1765113 -) -(1,11851:12634625,12459081:1765113,452978,115847 -k1,11851:12634625,12459081:3277 -h1,11851:14396461,12459081:0,411205,112570 -) -k1,11851:14999436,12459081:218934 -k1,11851:18061977,12459081:218934 -k1,11851:21230685,12459081:218933 -(1,11851:21437779,12459081:0,452978,115847 -r1,11901:22851180,12459081:1413401,568825,115847 -k1,11851:21437779,12459081:-1413401 -) -(1,11851:21437779,12459081:1413401,452978,115847 -k1,11851:21437779,12459081:3277 -h1,11851:22847903,12459081:0,411205,112570 -) -k1,11851:23450878,12459081:218934 -k1,11851:26029763,12459081:218934 -(1,11851:26236857,12459081:0,452978,115847 -r1,11901:29057106,12459081:2820249,568825,115847 -k1,11851:26236857,12459081:-2820249 -) -(1,11851:26236857,12459081:2820249,452978,115847 -k1,11851:26236857,12459081:3277 -h1,11851:29053829,12459081:0,411205,112570 -) -k1,11851:29656803,12459081:218933 -k1,11851:31613752,12459081:218934 -k1,11852:32583029,12459081:0 -) -(1,11852:6630773,13300569:25952256,505283,134348 -k1,11851:8739571,13300569:159757 -k1,11851:11849104,13300569:159758 -(1,11851:12056198,13300569:0,452978,115847 -r1,11901:13821311,13300569:1765113,568825,115847 -k1,11851:12056198,13300569:-1765113 -) -(1,11851:12056198,13300569:1765113,452978,115847 -k1,11851:12056198,13300569:3277 -h1,11851:13818034,13300569:0,411205,112570 -) -k1,11851:14361832,13300569:159757 -k1,11851:16304169,13300569:159758 -(1,11851:16511263,13300569:0,452978,115847 -r1,11901:18628088,13300569:2116825,568825,115847 -k1,11851:16511263,13300569:-2116825 -) -(1,11851:16511263,13300569:2116825,452978,115847 -k1,11851:16511263,13300569:3277 -h1,11851:18624811,13300569:0,411205,112570 -) -k1,11851:19168609,13300569:159757 -k1,11851:22525213,13300569:159758 -(1,11851:22732307,13300569:0,452978,115847 -r1,11901:24497420,13300569:1765113,568825,115847 -k1,11851:22732307,13300569:-1765113 -) -(1,11851:22732307,13300569:1765113,452978,115847 -k1,11851:22732307,13300569:3277 -h1,11851:24494143,13300569:0,411205,112570 -) -k1,11851:25037941,13300569:159757 -k1,11851:28289688,13300569:159758 -(1,11851:28496782,13300569:0,452978,115847 -r1,11901:30261895,13300569:1765113,568825,115847 -k1,11851:28496782,13300569:-1765113 -) -(1,11851:28496782,13300569:1765113,452978,115847 -k1,11851:28496782,13300569:3277 -h1,11851:30258618,13300569:0,411205,112570 -) -k1,11851:30802416,13300569:159757 -k1,11851:32583029,13300569:0 -) -(1,11852:6630773,14142057:25952256,505283,134348 -(1,11851:6837867,14142057:0,452978,122846 -r1,11901:9306404,14142057:2468537,575824,122846 -k1,11851:6837867,14142057:-2468537 -) -(1,11851:6837867,14142057:2468537,452978,122846 -k1,11851:6837867,14142057:3277 -h1,11851:9303127,14142057:0,411205,112570 -) -k1,11851:9993713,14142057:306545 -k1,11851:13231028,14142057:306545 -(1,11851:13438122,14142057:0,452978,115847 -r1,11901:16961794,14142057:3523672,568825,115847 -k1,11851:13438122,14142057:-3523672 -) -(1,11851:13438122,14142057:3523672,452978,115847 -k1,11851:13438122,14142057:3277 -h1,11851:16958517,14142057:0,411205,112570 -) -k1,11851:17649103,14142057:306545 -k1,11851:19968914,14142057:306545 -(1,11851:20176008,14142057:0,452978,122846 -r1,11901:22996257,14142057:2820249,575824,122846 -k1,11851:20176008,14142057:-2820249 -) -(1,11851:20176008,14142057:2820249,452978,122846 -k1,11851:20176008,14142057:3277 -h1,11851:22992980,14142057:0,411205,112570 -) -k1,11851:23683566,14142057:306545 -k1,11851:25181556,14142057:306545 -k1,11851:31004922,14142057:306545 -k1,11852:32583029,14142057:0 -) -(1,11852:6630773,14983545:25952256,505283,126483 -k1,11851:8983990,14983545:210190 -(1,11851:9191084,14983545:0,452978,115847 -r1,11901:12363044,14983545:3171960,568825,115847 -k1,11851:9191084,14983545:-3171960 -) -(1,11851:9191084,14983545:3171960,452978,115847 -k1,11851:9191084,14983545:3277 -h1,11851:12359767,14983545:0,411205,112570 -) -k1,11851:12953998,14983545:210190 -k1,11851:14062032,14983545:210191 -k1,11851:15968949,14983545:210190 -k1,11851:18963764,14983545:210190 -k1,11851:21221954,14983545:210190 -k1,11851:24052273,14983545:210190 -k1,11851:26570641,14983545:210190 -k1,11851:27972277,14983545:210191 -k1,11851:30915974,14983545:210190 -k1,11851:31812326,14983545:210190 -k1,11851:32583029,14983545:0 -) -(1,11852:6630773,15825033:25952256,513147,134348 -k1,11851:10019791,15825033:143020 -k1,11851:11879853,15825033:143019 -k1,11851:12682165,15825033:143020 -k1,11851:14464240,15825033:143020 -k1,11851:15893075,15825033:143019 -k1,11851:17511310,15825033:143020 -k1,11851:21066790,15825033:143020 -k1,11851:22157461,15825033:143020 -k1,11851:24002450,15825033:143019 -k1,11851:26378282,15825033:143020 -k1,11851:28014868,15825033:143020 -k1,11851:28844049,15825033:143019 -k1,11851:30376432,15825033:143020 -k1,11851:32583029,15825033:0 -) -(1,11852:6630773,16666521:25952256,513147,134348 -k1,11851:7410091,16666521:163280 -k1,11851:8592455,16666521:163279 -k1,11851:10122816,16666521:163280 -k1,11851:10953251,16666521:163279 -(1,11851:10953251,16666521:0,452978,115847 -r1,11901:14125211,16666521:3171960,568825,115847 -k1,11851:10953251,16666521:-3171960 -) -(1,11851:10953251,16666521:3171960,452978,115847 -k1,11851:10953251,16666521:3277 -h1,11851:14121934,16666521:0,411205,112570 -) -k1,11851:14462161,16666521:163280 -k1,11851:16029222,16666521:163280 -k1,11851:16607309,16666521:163244 -k1,11851:19612884,16666521:163279 -k1,11851:21269074,16666521:163280 -k1,11851:22498624,16666521:163279 -k1,11851:24622741,16666521:163280 -k1,11851:25141881,16666521:163280 -k1,11851:28000656,16666521:163279 -k1,11851:29111587,16666521:163280 -k1,11851:32583029,16666521:0 -) -(1,11852:6630773,17508009:25952256,513147,134348 -k1,11851:7521451,17508009:231386 -k1,11851:8771921,17508009:231385 -k1,11851:11846914,17508009:231386 -k1,11851:13685242,17508009:231385 -k1,11851:14575920,17508009:231386 -k1,11851:15826391,17508009:231386 -k1,11851:17969461,17508009:231385 -k1,11851:20336010,17508009:231386 -k1,11851:21592378,17508009:231385 -k1,11851:24102451,17508009:231386 -h1,11851:25645169,17508009:0,0,0 -k1,11851:25876555,17508009:231386 -k1,11851:26917310,17508009:231385 -k1,11851:28646849,17508009:231386 -h1,11851:29842226,17508009:0,0,0 -k1,11851:30073611,17508009:231385 -k1,11851:31252648,17508009:231386 -k1,11851:32583029,17508009:0 -) -(1,11852:6630773,18349497:25952256,513147,126483 -g1,11851:7481430,18349497 -g1,11851:9641496,18349497 -g1,11851:11299556,18349497 -k1,11852:32583029,18349497:19572328 -g1,11852:32583029,18349497 -) -v1,11854:6630773,19511282:0,393216,0 -(1,11870:6630773,27798494:25952256,8680428,196608 -g1,11870:6630773,27798494 -g1,11870:6630773,27798494 -g1,11870:6434165,27798494 -(1,11870:6434165,27798494:0,8680428,196608 -r1,11901:32779637,27798494:26345472,8877036,196608 -k1,11870:6434165,27798494:-26345472 -) -(1,11870:6434165,27798494:26345472,8680428,196608 -[1,11870:6630773,27798494:25952256,8483820,0 -(1,11856:6630773,19703171:25952256,388497,9436 -(1,11855:6630773,19703171:0,0,0 -g1,11855:6630773,19703171 -g1,11855:6630773,19703171 -g1,11855:6303093,19703171 -(1,11855:6303093,19703171:0,0,0 -) -g1,11855:6630773,19703171 -) -g1,11856:7263065,19703171 -g1,11856:8211503,19703171 -h1,11856:9476086,19703171:0,0,0 -k1,11856:32583030,19703171:23106944 -g1,11856:32583030,19703171 -) -(1,11857:6630773,20369349:25952256,404226,76021 -h1,11857:6630773,20369349:0,0,0 -k1,11857:6630773,20369349:0 -h1,11857:8843793,20369349:0,0,0 -k1,11857:32583029,20369349:23739236 -g1,11857:32583029,20369349 -) -(1,11858:6630773,21035527:25952256,404226,76021 -h1,11858:6630773,21035527:0,0,0 -k1,11858:6630773,21035527:0 -h1,11858:8527647,21035527:0,0,0 -k1,11858:32583029,21035527:24055382 -g1,11858:32583029,21035527 -) -(1,11859:6630773,21701705:25952256,404226,76021 -h1,11859:6630773,21701705:0,0,0 -k1,11859:6630773,21701705:0 -h1,11859:8211501,21701705:0,0,0 -k1,11859:32583029,21701705:24371528 -g1,11859:32583029,21701705 -) -(1,11860:6630773,22367883:25952256,404226,76021 -h1,11860:6630773,22367883:0,0,0 -k1,11860:6630773,22367883:0 -h1,11860:9476084,22367883:0,0,0 -k1,11860:32583028,22367883:23106944 -g1,11860:32583028,22367883 -) -(1,11861:6630773,23034061:25952256,404226,76021 -h1,11861:6630773,23034061:0,0,0 -k1,11861:6630773,23034061:0 -h1,11861:8527647,23034061:0,0,0 -k1,11861:32583029,23034061:24055382 -g1,11861:32583029,23034061 -) -(1,11862:6630773,23700239:25952256,404226,76021 -h1,11862:6630773,23700239:0,0,0 -k1,11862:6630773,23700239:0 -h1,11862:8843793,23700239:0,0,0 -k1,11862:32583029,23700239:23739236 -g1,11862:32583029,23700239 -) -(1,11863:6630773,24366417:25952256,404226,76021 -h1,11863:6630773,24366417:0,0,0 -k1,11863:6630773,24366417:0 -h1,11863:8527647,24366417:0,0,0 -k1,11863:32583029,24366417:24055382 -g1,11863:32583029,24366417 -) -(1,11864:6630773,25032595:25952256,404226,76021 -h1,11864:6630773,25032595:0,0,0 -k1,11864:6630773,25032595:0 -h1,11864:8527647,25032595:0,0,0 -k1,11864:32583029,25032595:24055382 -g1,11864:32583029,25032595 -) -(1,11865:6630773,25698773:25952256,404226,107478 -h1,11865:6630773,25698773:0,0,0 -k1,11865:6630773,25698773:0 -h1,11865:9159938,25698773:0,0,0 -k1,11865:32583030,25698773:23423092 -g1,11865:32583030,25698773 -) -(1,11866:6630773,26364951:25952256,404226,101187 -h1,11866:6630773,26364951:0,0,0 -k1,11866:6630773,26364951:0 -h1,11866:10108375,26364951:0,0,0 -k1,11866:32583029,26364951:22474654 -g1,11866:32583029,26364951 -) -(1,11867:6630773,27031129:25952256,404226,107478 -h1,11867:6630773,27031129:0,0,0 -k1,11867:6630773,27031129:0 -h1,11867:9476084,27031129:0,0,0 -k1,11867:32583028,27031129:23106944 -g1,11867:32583028,27031129 -) -(1,11868:6630773,27697307:25952256,404226,101187 -h1,11868:6630773,27697307:0,0,0 -k1,11868:6630773,27697307:0 -h1,11868:9792230,27697307:0,0,0 -k1,11868:32583030,27697307:22790800 -g1,11868:32583030,27697307 -) -] -) -g1,11870:32583029,27798494 -g1,11870:6630773,27798494 -g1,11870:6630773,27798494 -g1,11870:32583029,27798494 -g1,11870:32583029,27798494 -) -h1,11870:6630773,27995102:0,0,0 -v1,11874:6630773,29827805:0,393216,0 -(1,11875:6630773,32919155:25952256,3484566,0 -g1,11875:6630773,32919155 -g1,11875:6303093,32919155 -r1,11901:6401397,32919155:98304,3484566,0 -g1,11875:6600626,32919155 -g1,11875:6797234,32919155 -[1,11875:6797234,32919155:25785795,3484566,0 -(1,11875:6797234,30260343:25785795,825754,196608 -(1,11874:6797234,30260343:0,825754,196608 -r1,11901:7890375,30260343:1093141,1022362,196608 -k1,11874:6797234,30260343:-1093141 -) -(1,11874:6797234,30260343:1093141,825754,196608 -) -k1,11874:8032697,30260343:142322 -k1,11874:9350626,30260343:327680 -k1,11874:10120783,30260343:142322 -k1,11874:12894376,30260343:142322 -k1,11874:13688127,30260343:142323 -k1,11874:15582226,30260343:142322 -k1,11874:17426518,30260343:142322 -k1,11874:20560559,30260343:142322 -k1,11874:21318919,30260343:142322 -k1,11874:22664482,30260343:142322 -k1,11874:24562515,30260343:142323 -k1,11874:25723922,30260343:142322 -k1,11874:29374386,30260343:142322 -k1,11874:32583029,30260343:0 -) -(1,11875:6797234,31101831:25785795,505283,134348 -k1,11874:8411994,31101831:220809 -k1,11874:9651889,31101831:220810 -k1,11874:11368885,31101831:220809 -k1,11874:12205732,31101831:220809 -k1,11874:13445627,31101831:220810 -k1,11874:16420914,31101831:220809 -k1,11874:18612392,31101831:220810 -k1,11874:19824761,31101831:220809 -k1,11874:21111841,31101831:220809 -k1,11874:23581847,31101831:220810 -k1,11874:25056360,31101831:220809 -k1,11874:27457552,31101831:220809 -k1,11874:28814101,31101831:220810 -k1,11874:30847636,31101831:220809 -k1,11874:32583029,31101831:0 -) -(1,11875:6797234,31943319:25785795,513147,126483 -k1,11874:8970859,31943319:195748 -(1,11874:8970859,31943319:0,414482,115847 -r1,11901:9329125,31943319:358266,530329,115847 -k1,11874:8970859,31943319:-358266 -) -(1,11874:8970859,31943319:358266,414482,115847 -k1,11874:8970859,31943319:3277 -h1,11874:9325848,31943319:0,411205,112570 -) -k1,11874:9524874,31943319:195749 -k1,11874:10406784,31943319:195748 -k1,11874:12984111,31943319:195749 -k1,11874:15208854,31943319:195748 -k1,11874:16596048,31943319:195749 -k1,11874:18225724,31943319:195748 -k1,11874:19764306,31943319:195749 -k1,11874:21354005,31943319:195748 -k1,11874:23251724,31943319:195749 -k1,11874:24644159,31943319:195748 -k1,11874:25522793,31943319:195749 -k1,11874:28347190,31943319:195748 -k1,11874:29932302,31943319:195749 -k1,11874:31412556,31943319:195748 -k1,11874:32583029,31943319:0 -) -(1,11875:6797234,32784807:25785795,513147,134348 -g1,11874:8333397,32784807 -g1,11874:9798782,32784807 -k1,11875:32583028,32784807:19177144 -g1,11875:32583028,32784807 -) -] -g1,11875:32583029,32919155 -) -h1,11875:6630773,32919155:0,0,0 -(1,11878:6630773,34256250:25952256,513147,134348 -h1,11877:6630773,34256250:983040,0,0 -k1,11877:8634572,34256250:260541 -k1,11877:11334363,34256250:260541 -k1,11877:12060865,34256250:260541 -k1,11877:13340491,34256250:260541 -k1,11877:16673360,34256250:260541 -k1,11877:19635951,34256250:260542 -(1,11877:19635951,34256250:0,414482,115847 -r1,11901:20697640,34256250:1061689,530329,115847 -k1,11877:19635951,34256250:-1061689 -) -(1,11877:19635951,34256250:1061689,414482,115847 -k1,11877:19635951,34256250:3277 -h1,11877:20694363,34256250:0,411205,112570 -) -k1,11877:20958181,34256250:260541 -k1,11877:22915449,34256250:260541 -k1,11877:26201787,34256250:260541 -k1,11877:28472973,34256250:260541 -(1,11877:28472973,34256250:0,414482,115847 -r1,11901:29182951,34256250:709978,530329,115847 -k1,11877:28472973,34256250:-709978 -) -(1,11877:28472973,34256250:709978,414482,115847 -k1,11877:28472973,34256250:3277 -h1,11877:29179674,34256250:0,411205,112570 -) -k1,11877:29617162,34256250:260541 -k1,11877:31074390,34256250:260541 -k1,11877:32583029,34256250:0 -) -(1,11878:6630773,35097738:25952256,513147,102891 -k1,11877:9045529,35097738:215368 -k1,11877:10464137,35097738:215367 -k1,11877:11211002,35097738:215368 -k1,11877:12710875,35097738:215367 -k1,11877:13392204,35097738:215368 -k1,11877:14764282,35097738:215368 -k1,11877:16659992,35097738:215367 -k1,11877:18706436,35097738:215368 -k1,11877:19993973,35097738:215368 -k1,11877:20740837,35097738:215367 -k1,11877:24097346,35097738:215368 -k1,11877:25331799,35097738:215368 -k1,11877:26854609,35097738:215367 -k1,11877:28912849,35097738:215368 -k1,11877:29787508,35097738:215367 -k1,11877:31021961,35097738:215368 -k1,11878:32583029,35097738:0 -) -(1,11878:6630773,35939226:25952256,513147,134348 -k1,11877:9570786,35939226:224201 -k1,11877:10326484,35939226:224201 -k1,11877:13518155,35939226:224201 -k1,11877:14974433,35939226:224201 -k1,11877:16696787,35939226:224201 -h1,11877:17493705,35939226:0,0,0 -k1,11877:17717906,35939226:224201 -k1,11877:18889758,35939226:224201 -k1,11877:21231428,35939226:224202 -k1,11877:22264999,35939226:224201 -k1,11877:23508285,35939226:224201 -k1,11877:24967840,35939226:224201 -k1,11877:25859197,35939226:224201 -(1,11877:25859197,35939226:0,414482,115847 -r1,11901:26569175,35939226:709978,530329,115847 -k1,11877:25859197,35939226:-709978 -) -(1,11877:25859197,35939226:709978,414482,115847 -k1,11877:25859197,35939226:3277 -h1,11877:26565898,35939226:0,411205,112570 -) -k1,11877:26793376,35939226:224201 -k1,11877:27633615,35939226:224201 -k1,11877:28653423,35939226:224201 -k1,11877:31812326,35939226:224201 -k1,11877:32583029,35939226:0 -) -(1,11878:6630773,36780714:25952256,513147,126483 -k1,11877:10109403,36780714:251637 -k1,11877:13641773,36780714:251638 -k1,11877:15761186,36780714:251637 -(1,11877:15761186,36780714:0,414482,115847 -r1,11901:17526299,36780714:1765113,530329,115847 -k1,11877:15761186,36780714:-1765113 -) -(1,11877:15761186,36780714:1765113,414482,115847 -k1,11877:15761186,36780714:3277 -h1,11877:17523022,36780714:0,411205,112570 -) -k1,11877:17777937,36780714:251638 -k1,11877:20041529,36780714:251637 -k1,11877:21038311,36780714:251638 -k1,11877:21941376,36780714:251637 -k1,11877:24838047,36780714:251638 -k1,11877:26292925,36780714:251637 -k1,11877:28810143,36780714:251638 -k1,11877:31821501,36780714:251637 -k1,11877:32583029,36780714:0 -) -(1,11878:6630773,37622202:25952256,513147,134348 -g1,11877:10209694,37622202 -g1,11877:11540730,37622202 -(1,11877:11540730,37622202:0,414482,115847 -r1,11901:12250708,37622202:709978,530329,115847 -k1,11877:11540730,37622202:-709978 -) -(1,11877:11540730,37622202:709978,414482,115847 -k1,11877:11540730,37622202:3277 -h1,11877:12247431,37622202:0,411205,112570 -) -g1,11877:12449937,37622202 -g1,11877:13265204,37622202 -g1,11877:14483518,37622202 -g1,11877:16391271,37622202 -g1,11877:17241928,37622202 -g1,11877:18188923,37622202 -g1,11877:21163602,37622202 -g1,11877:22252810,37622202 -g1,11877:25777991,37622202 -g1,11877:28019977,37622202 -k1,11878:32583029,37622202:917940 -g1,11878:32583029,37622202 -) -v1,11880:6630773,38783987:0,393216,0 -(1,11894:6630773,42387698:25952256,3996927,196608 -g1,11894:6630773,42387698 -g1,11894:6630773,42387698 -g1,11894:6434165,42387698 -(1,11894:6434165,42387698:0,3996927,196608 -r1,11901:32779637,42387698:26345472,4193535,196608 -k1,11894:6434165,42387698:-26345472 -) -(1,11894:6434165,42387698:26345472,3996927,196608 -[1,11894:6630773,42387698:25952256,3800319,0 -(1,11882:6630773,38991605:25952256,404226,82312 -(1,11881:6630773,38991605:0,0,0 -g1,11881:6630773,38991605 -g1,11881:6630773,38991605 -g1,11881:6303093,38991605 -(1,11881:6303093,38991605:0,0,0 -) -g1,11881:6630773,38991605 -) -g1,11882:7263065,38991605 -g1,11882:8211503,38991605 -g1,11882:10740670,38991605 -h1,11882:11689107,38991605:0,0,0 -k1,11882:32583029,38991605:20893922 -g1,11882:32583029,38991605 -) -(1,11883:6630773,39657783:25952256,404226,76021 -h1,11883:6630773,39657783:0,0,0 -k1,11883:6630773,39657783:0 -h1,11883:8843793,39657783:0,0,0 -k1,11883:32583029,39657783:23739236 -g1,11883:32583029,39657783 -) -(1,11887:6630773,40323961:25952256,404226,76021 -(1,11885:6630773,40323961:0,0,0 -g1,11885:6630773,40323961 -g1,11885:6630773,40323961 -g1,11885:6303093,40323961 -(1,11885:6303093,40323961:0,0,0 -) -g1,11885:6630773,40323961 -) -g1,11887:7579210,40323961 -g1,11887:8843793,40323961 -h1,11887:9476084,40323961:0,0,0 -k1,11887:32583028,40323961:23106944 -g1,11887:32583028,40323961 -) -(1,11889:6630773,41645499:25952256,404226,82312 -(1,11888:6630773,41645499:0,0,0 -g1,11888:6630773,41645499 -g1,11888:6630773,41645499 -g1,11888:6303093,41645499 -(1,11888:6303093,41645499:0,0,0 -) -g1,11888:6630773,41645499 -) -k1,11889:6630773,41645499:0 -g1,11889:9159939,41645499 -g1,11889:11056813,41645499 -g1,11889:11689105,41645499 -h1,11889:13269834,41645499:0,0,0 -k1,11889:32583030,41645499:19313196 -g1,11889:32583030,41645499 -) -(1,11893:6630773,42311677:25952256,404226,76021 -(1,11891:6630773,42311677:0,0,0 -g1,11891:6630773,42311677 -g1,11891:6630773,42311677 -g1,11891:6303093,42311677 -(1,11891:6303093,42311677:0,0,0 -) -g1,11891:6630773,42311677 -) -g1,11893:7579210,42311677 -g1,11893:8843793,42311677 -h1,11893:10108376,42311677:0,0,0 -k1,11893:32583028,42311677:22474652 -g1,11893:32583028,42311677 -) -] -) -g1,11894:32583029,42387698 -g1,11894:6630773,42387698 -g1,11894:6630773,42387698 -g1,11894:32583029,42387698 -g1,11894:32583029,42387698 -) -h1,11894:6630773,42584306:0,0,0 -(1,11898:6630773,43921402:25952256,513147,115847 -h1,11897:6630773,43921402:983040,0,0 -k1,11897:9579366,43921402:148895 -k1,11897:11378457,43921402:148894 -k1,11897:14533488,43921402:148895 -k1,11897:17708180,43921402:148895 -k1,11897:18848635,43921402:148895 -k1,11897:20283345,43921402:148894 -k1,11897:23389880,43921402:148895 -k1,11897:25032341,43921402:148895 -k1,11897:25867397,43921402:148894 -(1,11897:25867397,43921402:0,452978,115847 -r1,11901:31149628,43921402:5282231,568825,115847 -k1,11897:25867397,43921402:-5282231 -) -(1,11897:25867397,43921402:5282231,452978,115847 -k1,11897:25867397,43921402:3277 -h1,11897:31146351,43921402:0,411205,112570 -) -k1,11897:31298523,43921402:148895 -k1,11897:32583029,43921402:0 -) -(1,11898:6630773,44762890:25952256,505283,126483 -g1,11897:9948205,44762890 -g1,11897:11166519,44762890 -g1,11897:13376393,44762890 -g1,11897:15873970,44762890 -g1,11897:16724627,44762890 -g1,11897:18509827,44762890 -g1,11897:19064916,44762890 -k1,11898:32583029,44762890:10907159 -g1,11898:32583029,44762890 -) -v1,11900:6630773,46099985:0,393216,0 -] -(1,11901:32583029,45706769:0,0,0 -g1,11901:32583029,45706769 -) -) -] -(1,11901:6630773,47279633:25952256,0,0 -h1,11901:6630773,47279633:25952256,0,0 +] +g1,11197:6630773,4812305 +k1,11197:23552825,4812305:15726675 +g1,11197:25175496,4812305 +g1,11197:25997972,4812305 +g1,11197:28481131,4812305 +g1,11197:30046786,4812305 +) +) +] +[1,11197:6630773,45706769:25952256,40108032,0 +(1,11197:6630773,45706769:25952256,40108032,0 +(1,11197:6630773,45706769:0,0,0 +g1,11197:6630773,45706769 +) +[1,11197:6630773,45706769:25952256,40108032,0 +v1,11134:6630773,6254097:0,393216,0 +(1,11179:6630773,22563524:25952256,16702643,0 +g1,11179:6630773,22563524 +g1,11179:6237557,22563524 +r1,11197:6368629,22563524:131072,16702643,0 +g1,11179:6567858,22563524 +g1,11179:6764466,22563524 +[1,11179:6764466,22563524:25818563,16702643,0 +(1,11137:6764466,6526574:25818563,665693,196608 +(1,11134:6764466,6526574:0,665693,196608 +r1,11197:8010564,6526574:1246098,862301,196608 +k1,11134:6764466,6526574:-1246098 +) +(1,11134:6764466,6526574:1246098,665693,196608 +) +k1,11134:8304776,6526574:294212 +k1,11134:9622705,6526574:327680 +k1,11134:11700151,6526574:294211 +k1,11134:14689859,6526574:294212 +(1,11134:14689859,6526574:0,452978,115847 +r1,11197:17510108,6526574:2820249,568825,115847 +k1,11134:14689859,6526574:-2820249 +) +(1,11134:14689859,6526574:2820249,452978,115847 +k1,11134:14689859,6526574:3277 +h1,11134:17506831,6526574:0,411205,112570 +) +k1,11134:17804320,6526574:294212 +k1,11134:18630029,6526574:294212 +k1,11134:20792016,6526574:294211 +k1,11134:23096217,6526574:294212 +k1,11134:23746289,6526574:294212 +k1,11134:26909667,6526574:294212 +k1,11134:28553920,6526574:294211 +k1,11134:29507424,6526574:294212 +k1,11134:32583029,6526574:0 +) +(1,11137:6764466,7391654:25818563,513147,134348 +k1,11134:9029977,7391654:255522 +k1,11134:10304584,7391654:255522 +k1,11134:13255601,7391654:255521 +k1,11134:15243895,7391654:255522 +k1,11134:16690862,7391654:255522 +k1,11134:17965469,7391654:255522 +k1,11134:21293318,7391654:255521 +k1,11134:23754127,7391654:255522 +k1,11135:23754127,7391654:0 +k1,11135:24661077,7391654:255522 +(1,11135:24661077,7391654:0,452978,115847 +r1,11197:27481326,7391654:2820249,568825,115847 +k1,11135:24661077,7391654:-2820249 +) +(1,11135:24661077,7391654:2820249,452978,115847 +k1,11135:24661077,7391654:3277 +h1,11135:27478049,7391654:0,411205,112570 +) +k1,11135:27736848,7391654:255522 +k1,11135:28523866,7391654:255521 +k1,11135:29798473,7391654:255522 +k1,11135:31734338,7391654:255522 +k1,11137:32583029,7391654:0 +) +(1,11137:6764466,8256734:25818563,513147,126483 +k1,11135:9059418,8256734:151925 +k1,11135:9972870,8256734:151924 +k1,11135:11143880,8256734:151925 +k1,11135:13991300,8256734:151924 +k1,11135:15416590,8256734:151925 +k1,11135:16196349,8256734:151924 +k1,11135:19153215,8256734:151925 +k1,11135:19771100,8256734:151924 +k1,11135:22618521,8256734:151925 +(1,11135:22618521,8256734:0,452978,115847 +r1,11197:25438770,8256734:2820249,568825,115847 +k1,11135:22618521,8256734:-2820249 +) +(1,11135:22618521,8256734:2820249,452978,115847 +k1,11135:22618521,8256734:3277 +h1,11135:25435493,8256734:0,411205,112570 +) +k1,11135:25590694,8256734:151924 +k1,11135:26274116,8256734:151925 +k1,11135:27492311,8256734:151924 +k1,11135:30541583,8256734:151925 +k1,11136:32583029,8256734:0 +) +(1,11137:6764466,9121814:25818563,513147,126483 +k1,11136:7986151,9121814:202600 +k1,11136:9869094,9121814:202600 +k1,11136:12850420,9121814:202599 +k1,11136:13814548,9121814:202600 +k1,11136:15036233,9121814:202600 +k1,11136:17934329,9121814:202600 +k1,11136:19236623,9121814:202600 +k1,11136:19970719,9121814:202599 +k1,11136:21457825,9121814:202600 +k1,11136:24439152,9121814:202600 +k1,11136:25403280,9121814:202600 +k1,11136:26624964,9121814:202599 +k1,11136:27975755,9121814:202600 +k1,11136:31364715,9121814:202600 +k1,11137:32583029,9121814:0 +) +(1,11137:6764466,9986894:25818563,513147,126483 +g1,11136:8701709,9986894 +g1,11136:10910927,9986894 +g1,11136:12129241,9986894 +g1,11136:13905266,9986894 +g1,11136:14763787,9986894 +g1,11136:15982101,9986894 +k1,11137:32583029,9986894:13731762 +g1,11137:32583029,9986894 +) +v1,11140:6764466,10671749:0,393216,0 +(1,11177:6764466,22366916:25818563,12088383,196608 +g1,11177:6764466,22366916 +g1,11177:6764466,22366916 +g1,11177:6567858,22366916 +(1,11177:6567858,22366916:0,12088383,196608 +r1,11197:32779637,22366916:26211779,12284991,196608 +k1,11177:6567857,22366916:-26211780 +) +(1,11177:6567858,22366916:26211779,12088383,196608 +[1,11177:6764466,22366916:25818563,11891775,0 +(1,11142:6764466,10906186:25818563,431045,106246 +(1,11141:6764466,10906186:0,0,0 +g1,11141:6764466,10906186 +g1,11141:6764466,10906186 +g1,11141:6436786,10906186 +(1,11141:6436786,10906186:0,0,0 +) +g1,11141:6764466,10906186 +) +g1,11142:10084005,10906186 +g1,11142:11079867,10906186 +k1,11142:11079867,10906186:0 +h1,11142:18050900,10906186:0,0,0 +k1,11142:32583029,10906186:14532129 +g1,11142:32583029,10906186 +) +(1,11143:6764466,11591041:25818563,424439,106246 +h1,11143:6764466,11591041:0,0,0 +k1,11143:6764466,11591041:0 +h1,11143:12407683,11591041:0,0,0 +k1,11143:32583029,11591041:20175346 +g1,11143:32583029,11591041 +) +(1,11147:6764466,12406968:25818563,424439,79822 +(1,11145:6764466,12406968:0,0,0 +g1,11145:6764466,12406968 +g1,11145:6764466,12406968 +g1,11145:6436786,12406968 +(1,11145:6436786,12406968:0,0,0 +) +g1,11145:6764466,12406968 +) +g1,11147:7760328,12406968 +g1,11147:9088144,12406968 +h1,11147:11079868,12406968:0,0,0 +k1,11147:32583028,12406968:21503160 +g1,11147:32583028,12406968 +) +(1,11149:6764466,13222895:25818563,431045,106246 +(1,11148:6764466,13222895:0,0,0 +g1,11148:6764466,13222895 +g1,11148:6764466,13222895 +g1,11148:6436786,13222895 +(1,11148:6436786,13222895:0,0,0 +) +g1,11148:6764466,13222895 +) +g1,11149:10084005,13222895 +g1,11149:11079867,13222895 +g1,11149:18382854,13222895 +k1,11149:18382854,13222895:0 +h1,11149:21702394,13222895:0,0,0 +k1,11149:32583029,13222895:10880635 +g1,11149:32583029,13222895 +) +(1,11150:6764466,13907750:25818563,424439,106246 +h1,11150:6764466,13907750:0,0,0 +k1,11150:6764466,13907750:0 +h1,11150:12407683,13907750:0,0,0 +k1,11150:32583029,13907750:20175346 +g1,11150:32583029,13907750 +) +(1,11155:6764466,14723677:25818563,424439,79822 +(1,11152:6764466,14723677:0,0,0 +g1,11152:6764466,14723677 +g1,11152:6764466,14723677 +g1,11152:6436786,14723677 +(1,11152:6436786,14723677:0,0,0 +) +g1,11152:6764466,14723677 +) +g1,11155:7760328,14723677 +g1,11155:9088144,14723677 +h1,11155:11079868,14723677:0,0,0 +k1,11155:32583028,14723677:21503160 +g1,11155:32583028,14723677 +) +(1,11155:6764466,15408532:25818563,424439,79822 +h1,11155:6764466,15408532:0,0,0 +g1,11155:7760328,15408532 +g1,11155:9088144,15408532 +h1,11155:11079868,15408532:0,0,0 +k1,11155:32583028,15408532:21503160 +g1,11155:32583028,15408532 +) +(1,11157:6764466,16224459:25818563,431045,106246 +(1,11156:6764466,16224459:0,0,0 +g1,11156:6764466,16224459 +g1,11156:6764466,16224459 +g1,11156:6436786,16224459 +(1,11156:6436786,16224459:0,0,0 +) +g1,11156:6764466,16224459 +) +g1,11157:10084005,16224459 +g1,11157:11079867,16224459 +g1,11157:18714808,16224459 +k1,11157:18714808,16224459:0 +h1,11157:21702394,16224459:0,0,0 +k1,11157:32583029,16224459:10880635 +g1,11157:32583029,16224459 +) +(1,11158:6764466,16909314:25818563,424439,106246 +h1,11158:6764466,16909314:0,0,0 +k1,11158:6764466,16909314:0 +h1,11158:12407683,16909314:0,0,0 +k1,11158:32583029,16909314:20175346 +g1,11158:32583029,16909314 +) +(1,11162:6764466,17725241:25818563,424439,79822 +(1,11160:6764466,17725241:0,0,0 +g1,11160:6764466,17725241 +g1,11160:6764466,17725241 +g1,11160:6436786,17725241 +(1,11160:6436786,17725241:0,0,0 +) +g1,11160:6764466,17725241 +) +g1,11162:7760328,17725241 +g1,11162:9088144,17725241 +h1,11162:11079868,17725241:0,0,0 +k1,11162:32583028,17725241:21503160 +g1,11162:32583028,17725241 +) +(1,11164:6764466,18541168:25818563,431045,106246 +(1,11163:6764466,18541168:0,0,0 +g1,11163:6764466,18541168 +g1,11163:6764466,18541168 +g1,11163:6436786,18541168 +(1,11163:6436786,18541168:0,0,0 +) +g1,11163:6764466,18541168 +) +g1,11164:10084005,18541168 +g1,11164:11079867,18541168 +g1,11164:18382854,18541168 +k1,11164:18382854,18541168:0 +h1,11164:21370440,18541168:0,0,0 +k1,11164:32583029,18541168:11212589 +g1,11164:32583029,18541168 +) +(1,11165:6764466,19226023:25818563,424439,106246 +h1,11165:6764466,19226023:0,0,0 +k1,11165:6764466,19226023:0 +h1,11165:12407683,19226023:0,0,0 +k1,11165:32583029,19226023:20175346 +g1,11165:32583029,19226023 +) +(1,11169:6764466,20041950:25818563,398014,8257 +(1,11167:6764466,20041950:0,0,0 +g1,11167:6764466,20041950 +g1,11167:6764466,20041950 +g1,11167:6436786,20041950 +(1,11167:6436786,20041950:0,0,0 +) +g1,11167:6764466,20041950 +) +g1,11169:7760328,20041950 +h1,11169:9088144,20041950:0,0,0 +k1,11169:32583028,20041950:23494884 +g1,11169:32583028,20041950 +) +(1,11171:6764466,20857877:25818563,431045,106246 +(1,11170:6764466,20857877:0,0,0 +g1,11170:6764466,20857877 +g1,11170:6764466,20857877 +g1,11170:6436786,20857877 +(1,11170:6436786,20857877:0,0,0 +) +g1,11170:6764466,20857877 +) +g1,11171:10084005,20857877 +g1,11171:11079867,20857877 +k1,11171:11079867,20857877:0 +h1,11171:15727222,20857877:0,0,0 +k1,11171:32583030,20857877:16855808 +g1,11171:32583030,20857877 +) +(1,11172:6764466,21542732:25818563,424439,106246 +h1,11172:6764466,21542732:0,0,0 +k1,11172:6764466,21542732:0 +h1,11172:12407683,21542732:0,0,0 +k1,11172:32583029,21542732:20175346 +g1,11172:32583029,21542732 +) +(1,11176:6764466,22358659:25818563,398014,8257 +(1,11174:6764466,22358659:0,0,0 +g1,11174:6764466,22358659 +g1,11174:6764466,22358659 +g1,11174:6436786,22358659 +(1,11174:6436786,22358659:0,0,0 +) +g1,11174:6764466,22358659 +) +g1,11176:7760328,22358659 +h1,11176:9088144,22358659:0,0,0 +k1,11176:32583028,22358659:23494884 +g1,11176:32583028,22358659 +) +] +) +g1,11177:32583029,22366916 +g1,11177:6764466,22366916 +g1,11177:6764466,22366916 +g1,11177:32583029,22366916 +g1,11177:32583029,22366916 +) +h1,11177:6764466,22563524:0,0,0 +] +g1,11179:32583029,22563524 +) +h1,11179:6630773,22563524:0,0,0 +v1,11182:6630773,23428604:0,393216,0 +(1,11183:6630773,26458625:25952256,3423237,0 +g1,11183:6630773,26458625 +g1,11183:6237557,26458625 +r1,11197:6368629,26458625:131072,3423237,0 +g1,11183:6567858,26458625 +g1,11183:6764466,26458625 +[1,11183:6764466,26458625:25818563,3423237,0 +(1,11183:6764466,23736902:25818563,701514,196608 +(1,11182:6764466,23736902:0,701514,196608 +r1,11197:8863446,23736902:2098980,898122,196608 +k1,11182:6764466,23736902:-2098980 +) +(1,11182:6764466,23736902:2098980,701514,196608 +) +k1,11182:9001955,23736902:138509 +k1,11182:10319884,23736902:327680 +k1,11182:11827440,23736902:138509 +k1,11182:12985034,23736902:138509 +k1,11182:15883264,23736902:138509 +k1,11182:16681064,23736902:138508 +k1,11182:19845370,23736902:138509 +(1,11182:19845370,23736902:0,452978,115847 +r1,11197:23720754,23736902:3875384,568825,115847 +k1,11182:19845370,23736902:-3875384 +) +(1,11182:19845370,23736902:3875384,452978,115847 +k1,11182:19845370,23736902:3277 +h1,11182:23717477,23736902:0,411205,112570 +) +k1,11182:23859263,23736902:138509 +k1,11182:25189217,23736902:138509 +(1,11182:25189217,23736902:0,452978,115847 +r1,11197:29064601,23736902:3875384,568825,115847 +k1,11182:25189217,23736902:-3875384 +) +(1,11182:25189217,23736902:3875384,452978,115847 +k1,11182:25189217,23736902:3277 +h1,11182:29061324,23736902:0,411205,112570 +) +k1,11182:29376780,23736902:138509 +k1,11182:30201451,23736902:138509 +k1,11182:32583029,23736902:0 +) +(1,11183:6764466,24601982:25818563,513147,126483 +k1,11182:8970801,24601982:177340 +k1,11182:10614838,24601982:177341 +k1,11182:11404940,24601982:177340 +k1,11182:12601366,24601982:177341 +k1,11182:15938197,24601982:177340 +k1,11182:18690447,24601982:177340 +k1,11182:20059233,24601982:177341 +k1,11182:20852611,24601982:177340 +k1,11182:21385812,24601982:177341 +k1,11182:23567898,24601982:177340 +k1,11182:24941925,24601982:177340 +k1,11182:27878987,24601982:177341 +k1,11182:28715619,24601982:177340 +k1,11182:30049670,24601982:177341 +k1,11182:30886302,24601982:177340 +k1,11182:32583029,24601982:0 +) +(1,11183:6764466,25467062:25818563,513147,126483 +k1,11182:9923503,25467062:133240 +k1,11182:11189204,25467062:133239 +k1,11182:12070210,25467062:133240 +k1,11182:14965792,25467062:133239 +k1,11182:16797070,25467062:133240 +k1,11182:17949394,25467062:133239 +k1,11182:19913710,25467062:133240 +k1,11182:20578446,25467062:133239 +k1,11182:23241376,25467062:133240 +k1,11182:24817062,25467062:133239 +k1,11182:25563064,25467062:133240 +k1,11182:26715388,25467062:133239 +k1,11182:30008119,25467062:133240 +k1,11182:32583029,25467062:0 +) +(1,11183:6764466,26332142:25818563,505283,126483 +g1,11182:9297432,26332142 +k1,11183:32583028,26332142:21814968 +g1,11183:32583028,26332142 +) +] +g1,11183:32583029,26458625 +) +h1,11183:6630773,26458625:0,0,0 +(1,11186:6630773,27323705:25952256,505283,134348 +h1,11185:6630773,27323705:983040,0,0 +k1,11185:11050652,27323705:316670 +k1,11185:12842537,27323705:316670 +k1,11185:14667846,27323705:316670 +k1,11185:16314897,27323705:316670 +k1,11185:18631726,27323705:316670 +k1,11185:20211929,27323705:316669 +k1,11185:22596915,27323705:316670 +k1,11185:25263706,27323705:316670 +k1,11185:26341904,27323705:316670 +k1,11185:28937261,27323705:316670 +k1,11185:32583029,27323705:0 +) +(1,11186:6630773,28188785:25952256,513147,126483 +k1,11185:8844404,28188785:203642 +k1,11185:10067131,28188785:203642 +k1,11185:11847569,28188785:203642 +k1,11185:12710504,28188785:203643 +k1,11185:13270006,28188785:203642 +k1,11185:16169144,28188785:203642 +k1,11185:17364346,28188785:203642 +k1,11185:19610745,28188785:203642 +k1,11185:21189988,28188785:203642 +k1,11185:23403619,28188785:203642 +k1,11185:24626346,28188785:203642 +k1,11185:26406785,28188785:203643 +k1,11185:27269719,28188785:203642 +k1,11185:28492446,28188785:203642 +k1,11185:31391584,28188785:203642 +k1,11185:32583029,28188785:0 +) +(1,11186:6630773,29053865:25952256,513147,126483 +k1,11185:10000231,29053865:228317 +k1,11185:11926586,29053865:228317 +k1,11185:13173988,29053865:228317 +k1,11185:16097802,29053865:228318 +k1,11185:18667065,29053865:228317 +k1,11185:20463003,29053865:228317 +k1,11185:21710405,29053865:228317 +k1,11185:23212087,29053865:228317 +k1,11185:24068239,29053865:228317 +k1,11185:26575244,29053865:228318 +k1,11185:28069717,29053865:228317 +k1,11185:31323831,29053865:228317 +k1,11185:32168186,29053865:228317 +k1,11186:32583029,29053865:0 +) +(1,11186:6630773,29918945:25952256,513147,134348 +k1,11185:7677442,29918945:231401 +k1,11185:8975115,29918945:231402 +k1,11185:10985818,29918945:231401 +k1,11185:12725858,29918945:231401 +k1,11185:17014594,29918945:231402 +k1,11185:19804521,29918945:231401 +k1,11185:21335502,29918945:231402 +k1,11185:23841658,29918945:231401 +k1,11185:25630850,29918945:231401 +k1,11185:28084578,29918945:231402 +k1,11185:30024503,29918945:231401 +k1,11185:32583029,29918945:0 +) +(1,11186:6630773,30784025:25952256,513147,134348 +k1,11185:10302886,30784025:269484 +k1,11185:11763815,30784025:269484 +k1,11185:14043944,30784025:269484 +k1,11185:14669287,30784025:269483 +k1,11185:16619114,30784025:269484 +k1,11185:17574760,30784025:269484 +k1,11185:18863329,30784025:269484 +k1,11185:20975685,30784025:269484 +k1,11185:21904461,30784025:269484 +k1,11185:23193030,30784025:269484 +k1,11185:24735879,30784025:269484 +k1,11185:26386206,30784025:269483 +k1,11185:28336033,30784025:269484 +k1,11185:29709799,30784025:269484 +k1,11185:30727049,30784025:269484 +k1,11185:32583029,30784025:0 +) +(1,11186:6630773,31649105:25952256,513147,134348 +g1,11185:9180123,31649105 +g1,11185:10062237,31649105 +g1,11185:13036260,31649105 +g1,11185:13921651,31649105 +g1,11185:14989232,31649105 +g1,11185:16663676,31649105 +g1,11185:18302731,31649105 +g1,11185:20199998,31649105 +g1,11185:22134620,31649105 +g1,11185:25359646,31649105 +k1,11186:32583029,31649105:5016130 +g1,11186:32583029,31649105 +) +v1,11188:6630773,32514185:0,393216,0 +(1,11191:6630773,42472711:25952256,10351742,0 +g1,11191:6630773,42472711 +g1,11191:6237557,42472711 +r1,11197:6368629,42472711:131072,10351742,0 +g1,11191:6567858,42472711 +g1,11191:6764466,42472711 +[1,11191:6764466,42472711:25818563,10351742,0 +(1,11189:6764466,32822483:25818563,701514,196608 +(1,11188:6764466,32822483:0,701514,196608 +r1,11197:8010564,32822483:1246098,898122,196608 +k1,11188:6764466,32822483:-1246098 +) +(1,11188:6764466,32822483:1246098,701514,196608 +) +k1,11188:8236699,32822483:226135 +k1,11188:8564379,32822483:327680 +k1,11188:11284813,32822483:226134 +k1,11188:12126986,32822483:226135 +k1,11188:12767936,32822483:226107 +k1,11188:13525568,32822483:226135 +k1,11188:17953216,32822483:226135 +k1,11188:19914743,32822483:226134 +k1,11188:24453147,32822483:226135 +k1,11188:25870726,32822483:226134 +k1,11188:27866988,32822483:226135 +k1,11188:30299063,32822483:226134 +k1,11188:31478747,32822483:226135 +k1,11188:32583029,32822483:0 +) +(1,11189:6764466,33687563:25818563,513147,134348 +k1,11188:8643860,33687563:199051 +k1,11188:9502202,33687563:199050 +k1,11188:14088888,33687563:199051 +k1,11188:14974101,33687563:199051 +k1,11188:17291276,33687563:199051 +k1,11188:17846186,33687563:199050 +k1,11188:21095938,33687563:199051 +k1,11188:22688940,33687563:199051 +k1,11188:26602572,33687563:199051 +k1,11188:29691104,33687563:199050 +k1,11188:31086842,33687563:199051 +k1,11188:32583029,33687563:0 +) +(1,11189:6764466,34552643:25818563,513147,134348 +k1,11188:9012351,34552643:237896 +k1,11188:9606107,34552643:237896 +k1,11188:12539498,34552643:237895 +k1,11188:14225740,34552643:237896 +k1,11188:15079674,34552643:237896 +k1,11188:15775667,34552643:237896 +k1,11188:17343943,34552643:237895 +k1,11188:21812843,34552643:237896 +k1,11188:22666777,34552643:237896 +k1,11188:25659151,34552643:237896 +k1,11188:27464667,34552643:237895 +k1,11188:28721648,34552643:237896 +k1,11188:31049487,34552643:237896 +k1,11189:32583029,34552643:0 +) +(1,11189:6764466,35417723:25818563,505283,134348 +k1,11188:9688127,35417723:186878 +k1,11188:10491044,35417723:186879 +k1,11188:13142076,35417723:186878 +k1,11188:13980383,35417723:186879 +k1,11188:18317001,35417723:186878 +k1,11188:19576048,35417723:186878 +k1,11188:20782012,35417723:186879 +k1,11188:22979535,35417723:186878 +k1,11188:25204583,35417723:186878 +k1,11188:26007500,35417723:186879 +k1,11188:28484206,35417723:186878 +k1,11188:29287123,35417723:186879 +k1,11188:30493086,35417723:186878 +k1,11188:32583029,35417723:0 +) +(1,11189:6764466,36282803:25818563,513147,126483 +k1,11188:11106619,36282803:284819 +k1,11188:12495721,36282803:284820 +k1,11188:13528306,36282803:284819 +k1,11188:16841544,36282803:284819 +k1,11188:18507208,36282803:284820 +k1,11188:21420676,36282803:284819 +k1,11188:23273116,36282803:284819 +k1,11188:27851199,36282803:284819 +k1,11188:29435598,36282803:284820 +k1,11188:31821501,36282803:284819 +k1,11188:32583029,36282803:0 +) +(1,11189:6764466,37147883:25818563,513147,134348 +k1,11188:9395201,37147883:272094 +k1,11188:12151109,37147883:272093 +k1,11188:13074631,37147883:272094 +k1,11188:16348928,37147883:272093 +k1,11188:18580548,37147883:272094 +k1,11188:22265101,37147883:272093 +k1,11188:23153233,37147883:272094 +k1,11188:24444411,37147883:272093 +k1,11188:26806448,37147883:272094 +k1,11188:31309545,37147883:272093 +k1,11188:32051532,37147883:272094 +k1,11188:32583029,37147883:0 +) +(1,11189:6764466,38012963:25818563,513147,126483 +k1,11188:9613652,38012963:219226 +k1,11188:10484305,38012963:219225 +k1,11188:13348564,38012963:219226 +k1,11188:14771031,38012963:219226 +k1,11188:18299170,38012963:219226 +k1,11188:19912346,38012963:219225 +k1,11188:22878186,38012963:219226 +(1,11188:22878186,38012963:0,414482,115847 +r1,11197:23939875,38012963:1061689,530329,115847 +k1,11188:22878186,38012963:-1061689 +) +(1,11188:22878186,38012963:1061689,414482,115847 +k1,11188:22878186,38012963:3277 +h1,11188:23936598,38012963:0,411205,112570 +) +k1,11188:24159101,38012963:219226 +k1,11188:25061212,38012963:219226 +k1,11188:26674388,38012963:219225 +k1,11188:29589110,38012963:219226 +(1,11188:29589110,38012963:0,452978,122846 +r1,11197:32409359,38012963:2820249,575824,122846 +k1,11188:29589110,38012963:-2820249 +) +(1,11188:29589110,38012963:2820249,452978,122846 +k1,11188:29589110,38012963:3277 +h1,11188:32406082,38012963:0,411205,112570 +) +k1,11188:32583029,38012963:0 +) +(1,11189:6764466,38878043:25818563,513147,126483 +k1,11188:8170090,38878043:202383 +k1,11188:10552856,38878043:202383 +k1,11188:11503006,38878043:202384 +k1,11188:13080990,38878043:202383 +k1,11188:14796599,38878043:202383 +k1,11188:15685144,38878043:202383 +k1,11188:16243387,38878043:202383 +k1,11188:17593962,38878043:202384 +k1,11188:20540993,38878043:202383 +k1,11188:21429538,38878043:202383 +k1,11188:22090018,38878043:202383 +k1,11188:24338435,38878043:202383 +k1,11188:25559903,38878043:202383 +k1,11188:27258474,38878043:202384 +k1,11188:29244092,38878043:202383 +k1,11188:31096672,38878043:202383 +k1,11189:32583029,38878043:0 +) +(1,11189:6764466,39743123:25818563,505283,134348 +g1,11188:8174145,39743123 +g1,11188:9024802,39743123 +g1,11188:10636332,39743123 +g1,11188:12027006,39743123 +k1,11189:32583029,39743123:18424792 +g1,11189:32583029,39743123 +) +(1,11191:6764466,40608203:25818563,513147,126483 +h1,11190:6764466,40608203:983040,0,0 +k1,11190:12352253,40608203:193519 +k1,11190:13650054,40608203:193519 +k1,11190:14591339,40608203:193519 +k1,11190:17682205,40608203:193519 +k1,11190:20225845,40608203:193519 +k1,11190:21813315,40608203:193519 +k1,11190:24702330,40608203:193519 +(1,11190:24702330,40608203:0,452978,115847 +r1,11197:29281138,40608203:4578808,568825,115847 +k1,11190:24702330,40608203:-4578808 +) +(1,11190:24702330,40608203:4578808,452978,115847 +k1,11190:24702330,40608203:3277 +h1,11190:29277861,40608203:0,411205,112570 +) +k1,11190:29648327,40608203:193519 +k1,11191:32583029,40608203:0 +) +(1,11191:6764466,41473283:25818563,513147,134348 +(1,11190:6764466,41473283:0,452978,115847 +r1,11197:11343274,41473283:4578808,568825,115847 +k1,11190:6764466,41473283:-4578808 +) +(1,11190:6764466,41473283:4578808,452978,115847 +k1,11190:6764466,41473283:3277 +h1,11190:11339997,41473283:0,411205,112570 +) +k1,11190:11634980,41473283:291706 +k1,11190:12458183,41473283:291706 +k1,11190:14596038,41473283:291706 +k1,11190:16400970,41473283:291706 +k1,11190:17308714,41473283:291706 +k1,11190:19761797,41473283:291706 +k1,11190:21743020,41473283:291705 +k1,11190:22492823,41473283:291706 +k1,11190:23888811,41473283:291706 +k1,11190:24928283,41473283:291706 +k1,11190:27197210,41473283:291706 +k1,11190:29498905,41473283:291706 +k1,11190:32583029,41473283:0 +) +(1,11191:6764466,42338363:25818563,513147,134348 +g1,11190:8779042,42338363 +g1,11190:11096395,42338363 +g1,11190:12287184,42338363 +g1,11190:14519340,42338363 +g1,11190:17808592,42338363 +g1,11190:18623859,42338363 +g1,11190:21101775,42338363 +h1,11190:22644493,42338363:0,0,0 +g1,11190:22843722,42338363 +g1,11190:23852321,42338363 +g1,11190:25549703,42338363 +h1,11190:26745080,42338363:0,0,0 +k1,11191:32583029,42338363:5664279 +g1,11191:32583029,42338363 +) +] +g1,11191:32583029,42472711 +) +h1,11191:6630773,42472711:0,0,0 +] +(1,11197:32583029,45706769:0,0,0 +g1,11197:32583029,45706769 +) +) +] +(1,11197:6630773,47279633:25952256,0,0 +h1,11197:6630773,47279633:25952256,0,0 +) +] +(1,11197:4262630,4025873:0,0,0 +[1,11197:-473656,4025873:0,0,0 +(1,11197:-473656,-710413:0,0,0 +(1,11197:-473656,-710413:0,0,0 +g1,11197:-473656,-710413 +) +g1,11197:-473656,-710413 +) +] +) +] +!25611 +}179 +Input:1690:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1691:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1692:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1693:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1694:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1695:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1696:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1697:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1698:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1699:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1700:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1701:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1702:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1703:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1704:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1705:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1516 +{180 +[1,11291:4262630,47279633:28320399,43253760,0 +(1,11291:4262630,4025873:0,0,0 +[1,11291:-473656,4025873:0,0,0 +(1,11291:-473656,-710413:0,0,0 +(1,11291:-473656,-644877:0,0,0 +k1,11291:-473656,-644877:-65536 ) -] -(1,11901:4262630,4025873:0,0,0 -[1,11901:-473656,4025873:0,0,0 -(1,11901:-473656,-710413:0,0,0 -(1,11901:-473656,-710413:0,0,0 -g1,11901:-473656,-710413 +(1,11291:-473656,4736287:0,0,0 +k1,11291:-473656,4736287:5209943 ) -g1,11901:-473656,-710413 +g1,11291:-473656,-710413 ) ] ) -] -!26131 -}203 -Input:1732:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1733:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1734:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1735:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1736:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1737:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1738:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1739:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1740:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1741:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1742:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1743:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1744:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1745:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1746:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1747:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1748:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1749:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1750:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1751:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1752:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1753:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1754:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1755:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1756:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1757:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1758:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1759:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1760:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1761:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1762:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1763:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1764:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1765:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1766:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1767:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1768:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1769:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1770:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1771:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1772:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1773:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!3960 -{204 -[1,11937:4262630,47279633:28320399,43253760,0 -(1,11937:4262630,4025873:0,0,0 -[1,11937:-473656,4025873:0,0,0 -(1,11937:-473656,-710413:0,0,0 -(1,11937:-473656,-644877:0,0,0 -k1,11937:-473656,-644877:-65536 +[1,11291:6630773,47279633:25952256,43253760,0 +[1,11291:6630773,4812305:25952256,786432,0 +(1,11291:6630773,4812305:25952256,513147,134348 +(1,11291:6630773,4812305:25952256,513147,134348 +g1,11291:3078558,4812305 +[1,11291:3078558,4812305:0,0,0 +(1,11291:3078558,2439708:0,1703936,0 +k1,11291:1358238,2439708:-1720320 +(1,11038:1358238,2439708:1720320,1703936,0 +(1,11038:1358238,2439708:1179648,16384,0 +r1,11291:2537886,2439708:1179648,16384,0 ) -(1,11937:-473656,4736287:0,0,0 -k1,11937:-473656,4736287:5209943 +g1,11038:3062174,2439708 +(1,11038:3062174,2439708:16384,1703936,0 +[1,11038:3062174,2439708:25952256,1703936,0 +(1,11038:3062174,1915420:25952256,1179648,0 +(1,11038:3062174,1915420:16384,1179648,0 +r1,11291:3078558,1915420:16384,1179648,0 ) -g1,11937:-473656,-710413 +k1,11038:29014430,1915420:25935872 +g1,11038:29014430,1915420 ) ] ) -[1,11937:6630773,47279633:25952256,43253760,0 -[1,11937:6630773,4812305:25952256,786432,0 -(1,11937:6630773,4812305:25952256,505283,11795 -(1,11937:6630773,4812305:25952256,505283,11795 -g1,11937:3078558,4812305 -[1,11937:3078558,4812305:0,0,0 -(1,11937:3078558,2439708:0,1703936,0 -k1,11937:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,11937:2537886,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,11937:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +] +[1,11291:3078558,4812305:0,0,0 +(1,11291:3078558,2439708:0,1703936,0 +g1,11291:29030814,2439708 +g1,11291:36135244,2439708 +(1,11038:36135244,2439708:1720320,1703936,0 +(1,11038:36135244,2439708:16384,1703936,0 +[1,11038:36135244,2439708:25952256,1703936,0 +(1,11038:36135244,1915420:25952256,1179648,0 +(1,11038:36135244,1915420:16384,1179648,0 +r1,11291:36151628,1915420:16384,1179648,0 +) +k1,11038:62087500,1915420:25935872 +g1,11038:62087500,1915420 ) ] ) +g1,11038:36675916,2439708 +(1,11038:36675916,2439708:1179648,16384,0 +r1,11291:37855564,2439708:1179648,16384,0 ) ) +k1,11291:3078556,2439708:-34777008 +) ] -[1,11937:3078558,4812305:0,0,0 -(1,11937:3078558,2439708:0,1703936,0 -g1,11937:29030814,2439708 -g1,11937:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,11937:36151628,1915420:16384,1179648,0 +[1,11291:3078558,4812305:0,0,0 +(1,11291:3078558,49800853:0,16384,2228224 +k1,11291:1358238,49800853:-1720320 +(1,11038:1358238,49800853:1720320,16384,2228224 +(1,11038:1358238,49800853:1179648,16384,0 +r1,11291:2537886,49800853:1179648,16384,0 +) +g1,11038:3062174,49800853 +(1,11038:3062174,52029077:16384,1703936,0 +[1,11038:3062174,52029077:25952256,1703936,0 +(1,11038:3062174,51504789:25952256,1179648,0 +(1,11038:3062174,51504789:16384,1179648,0 +r1,11291:3078558,51504789:16384,1179648,0 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +k1,11038:29014430,51504789:25935872 +g1,11038:29014430,51504789 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,11937:37855564,2439708:1179648,16384,0 ) ) -k1,11937:3078556,2439708:-34777008 +] +[1,11291:3078558,4812305:0,0,0 +(1,11291:3078558,49800853:0,16384,2228224 +g1,11291:29030814,49800853 +g1,11291:36135244,49800853 +(1,11038:36135244,49800853:1720320,16384,2228224 +(1,11038:36135244,52029077:16384,1703936,0 +[1,11038:36135244,52029077:25952256,1703936,0 +(1,11038:36135244,51504789:25952256,1179648,0 +(1,11038:36135244,51504789:16384,1179648,0 +r1,11291:36151628,51504789:16384,1179648,0 +) +k1,11038:62087500,51504789:25935872 +g1,11038:62087500,51504789 ) ] -[1,11937:3078558,4812305:0,0,0 -(1,11937:3078558,49800853:0,16384,2228224 -k1,11937:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,11937:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,11937:3078558,51504789:16384,1179648,0 +g1,11038:36675916,49800853 +(1,11038:36675916,49800853:1179648,16384,0 +r1,11291:37855564,49800853:1179648,16384,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 ) -] -) -) -) -] -[1,11937:3078558,4812305:0,0,0 -(1,11937:3078558,49800853:0,16384,2228224 -g1,11937:29030814,49800853 -g1,11937:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,11937:36151628,51504789:16384,1179648,0 -) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 -) -] -) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,11937:37855564,49800853:1179648,16384,0 +k1,11291:3078556,49800853:-34777008 ) +] +g1,11291:6630773,4812305 +g1,11291:6630773,4812305 +g1,11291:9499939,4812305 +g1,11291:12584718,4812305 +g1,11291:13994397,4812305 +g1,11291:17201073,4812305 +k1,11291:31387652,4812305:14186579 ) -k1,11937:3078556,49800853:-34777008 ) ] -g1,11937:6630773,4812305 -g1,11937:6630773,4812305 -g1,11937:10836873,4812305 -k1,11937:31387653,4812305:20550780 -) -) -] -[1,11937:6630773,45706769:25952256,40108032,0 -(1,11937:6630773,45706769:25952256,40108032,0 -(1,11937:6630773,45706769:0,0,0 -g1,11937:6630773,45706769 +[1,11291:6630773,45706769:25952256,40108032,0 +(1,11291:6630773,45706769:25952256,40108032,0 +(1,11291:6630773,45706769:0,0,0 +g1,11291:6630773,45706769 ) -[1,11937:6630773,45706769:25952256,40108032,0 -v1,11901:6630773,6254097:0,393216,0 -(1,11901:6630773,9181527:25952256,3320646,0 -g1,11901:6630773,9181527 -g1,11901:6303093,9181527 -r1,11937:6401397,9181527:98304,3320646,0 -g1,11901:6600626,9181527 -g1,11901:6797234,9181527 -[1,11901:6797234,9181527:25785795,3320646,0 -(1,11901:6797234,6649200:25785795,788319,218313 -(1,11900:6797234,6649200:0,788319,218313 -r1,11937:7917113,6649200:1119879,1006632,218313 -k1,11900:6797234,6649200:-1119879 -) -(1,11900:6797234,6649200:1119879,788319,218313 -) -k1,11900:8151036,6649200:233923 -k1,11900:8478716,6649200:327680 -k1,11900:9340474,6649200:233923 -k1,11900:11326175,6649200:233924 -k1,11900:13257480,6649200:233923 -k1,11900:14661876,6649200:233923 -k1,11900:16028261,6649200:233923 -k1,11900:17810801,6649200:233924 -k1,11900:18696152,6649200:233923 -k1,11900:21717977,6649200:233923 -k1,11900:25036024,6649200:233923 -k1,11900:28778090,6649200:233924 -k1,11900:29773541,6649200:233923 -k1,11900:31900144,6649200:233923 -k1,11900:32583029,6649200:0 -) -(1,11901:6797234,7490688:25785795,513147,11795 -k1,11900:10228558,7490688:286907 -k1,11900:11131504,7490688:286908 -k1,11900:14084416,7490688:286907 -k1,11900:15054208,7490688:286907 -k1,11900:17668299,7490688:286908 -k1,11900:18614498,7490688:286907 -k1,11900:19849057,7490688:286908 -k1,11900:20491824,7490688:286907 -k1,11900:22661580,7490688:286907 -k1,11900:24337851,7490688:286908 -k1,11900:25559301,7490688:286907 -k1,11900:26529093,7490688:286907 -k1,11900:28967548,7490688:286908 -k1,11900:30304342,7490688:286907 -k1,11900:32583029,7490688:0 -) -(1,11901:6797234,8332176:25785795,513147,134348 -h1,11900:8339952,8332176:0,0,0 -k1,11900:8506326,8332176:166374 -k1,11900:9482070,8332176:166374 -k1,11900:11146597,8332176:166374 -h1,11900:12341974,8332176:0,0,0 -k1,11900:12508348,8332176:166374 -k1,11900:13622373,8332176:166374 -k1,11900:15906215,8332176:166374 -k1,11900:16881959,8332176:166374 -k1,11900:18378713,8332176:166373 -k1,11900:19196515,8332176:166374 -k1,11900:22150791,8332176:166374 -k1,11900:25825307,8332176:166374 -k1,11900:26650973,8332176:166374 -k1,11900:28206710,8332176:166374 -k1,11900:30411254,8332176:166374 -k1,11900:31193666,8332176:166374 -k1,11900:32583029,8332176:0 -) -(1,11901:6797234,9173664:25785795,513147,7863 -k1,11901:32583030,9173664:23405528 -g1,11901:32583030,9173664 -) -] -g1,11901:32583029,9181527 -) -h1,11901:6630773,9181527:0,0,0 -(1,11903:6630773,11989095:25952256,32768,229376 -(1,11903:6630773,11989095:0,32768,229376 -(1,11903:6630773,11989095:5505024,32768,229376 -r1,11937:12135797,11989095:5505024,262144,229376 -) -k1,11903:6630773,11989095:-5505024 -) -(1,11903:6630773,11989095:25952256,32768,0 -r1,11937:32583029,11989095:25952256,32768,0 -) -) -(1,11903:6630773,13593423:25952256,606339,14155 -(1,11903:6630773,13593423:1974731,582746,14155 -g1,11903:6630773,13593423 -g1,11903:8605504,13593423 -) -k1,11903:32583029,13593423:18769772 -g1,11903:32583029,13593423 -) -(1,11906:6630773,14828127:25952256,513147,134348 -k1,11905:9590543,14828127:371098 -k1,11905:13743067,14828127:371097 -k1,11905:17313632,14828127:371097 -k1,11905:20285199,14828127:371098 -k1,11905:23682094,14828127:371098 -k1,11905:25244636,14828127:371097 -k1,11905:29011154,14828127:371098 -k1,11905:30041543,14828127:371097 -k1,11906:32583029,14828127:0 -) -(1,11906:6630773,15669615:25952256,513147,134348 -k1,11905:9372803,15669615:247730 -k1,11905:11631178,15669615:247730 -k1,11905:12826559,15669615:247730 -k1,11905:15305790,15669615:247730 -k1,11905:18315862,15669615:247729 -k1,11905:22675321,15669615:247730 -k1,11905:23914611,15669615:247730 -k1,11905:25484202,15669615:247730 -k1,11905:26391224,15669615:247730 -k1,11905:27658039,15669615:247730 -k1,11905:28320563,15669615:247681 -k1,11905:31584260,15669615:247730 -k1,11906:32583029,15669615:0 -) -(1,11906:6630773,16511103:25952256,505283,134348 -k1,11905:8755468,16511103:241846 -(1,11905:8755468,16511103:0,452978,115847 -r1,11937:15444546,16511103:6689078,568825,115847 -k1,11905:8755468,16511103:-6689078 -) -(1,11905:8755468,16511103:6689078,452978,115847 -k1,11905:8755468,16511103:3277 -h1,11905:15441269,16511103:0,411205,112570 -) -k1,11905:15686393,16511103:241847 -k1,11905:16541001,16511103:241846 -k1,11905:17801933,16511103:241847 -k1,11905:18458579,16511103:241803 -k1,11905:21101665,16511103:241847 -k1,11905:22475973,16511103:241846 -k1,11905:24295271,16511103:241846 -k1,11905:24892978,16511103:241847 -k1,11905:26522877,16511103:241846 -k1,11905:28262877,16511103:241847 -k1,11905:31816913,16511103:241846 -k1,11905:32583029,16511103:0 -) -(1,11906:6630773,17352591:25952256,513147,7863 -k1,11905:7860467,17352591:210609 -k1,11905:12182805,17352591:210609 -k1,11905:15177383,17352591:210609 -k1,11905:16004030,17352591:210609 -k1,11905:17648567,17352591:210609 -k1,11905:18447688,17352591:210608 -k1,11905:19700319,17352591:210609 -k1,11905:21362550,17352591:210609 -k1,11905:25354586,17352591:210609 -k1,11905:26584280,17352591:210609 -k1,11905:29557232,17352591:210609 -k1,11905:32583029,17352591:0 -) -(1,11906:6630773,18194079:25952256,513147,115847 -k1,11905:9204959,18194079:202438 -k1,11905:10426481,18194079:202437 -k1,11905:12282392,18194079:202438 -k1,11905:14419452,18194079:202437 -k1,11905:15237928,18194079:202438 -k1,11905:16949005,18194079:202438 -k1,11905:19393429,18194079:202437 -(1,11905:19393429,18194079:0,414482,115847 -r1,11937:20806830,18194079:1413401,530329,115847 -k1,11905:19393429,18194079:-1413401 -) -(1,11905:19393429,18194079:1413401,414482,115847 -k1,11905:19393429,18194079:3277 -h1,11905:20803553,18194079:0,411205,112570 -) -k1,11905:21009268,18194079:202438 -k1,11905:22159357,18194079:202438 -k1,11905:23380879,18194079:202437 -k1,11905:25862004,18194079:202438 -k1,11905:30019539,18194079:202437 -(1,11905:30019539,18194079:0,459977,115847 -r1,11937:31432940,18194079:1413401,575824,115847 -k1,11905:30019539,18194079:-1413401 -) -(1,11905:30019539,18194079:1413401,459977,115847 -k1,11905:30019539,18194079:3277 -h1,11905:31429663,18194079:0,411205,112570 -) -k1,11905:31635378,18194079:202438 -k1,11905:32583029,18194079:0 -) -(1,11906:6630773,19035567:25952256,513147,126483 -k1,11905:7849977,19035567:200119 -k1,11905:10648599,19035567:200119 -k1,11905:14803815,19035567:200118 -k1,11905:16195379,19035567:200119 -k1,11905:17120326,19035567:200119 -k1,11905:18303485,19035567:200119 -k1,11905:19700291,19035567:200119 -k1,11905:22039504,19035567:200118 -k1,11905:22898915,19035567:200119 -k1,11905:24118119,19035567:200119 -k1,11905:26056253,19035567:200119 -k1,11905:29118328,19035567:200118 -k1,11905:30337532,19035567:200119 -k1,11905:31923737,19035567:200119 -k1,11905:32583029,19035567:0 -) -(1,11906:6630773,19877055:25952256,513147,126483 -k1,11905:8838502,19877055:197084 -k1,11905:11987984,19877055:197085 -k1,11905:13206119,19877055:197084 -k1,11905:14350854,19877055:197084 -k1,11905:17054036,19877055:197085 -k1,11905:18255787,19877055:197084 -k1,11905:19400523,19877055:197085 -k1,11905:22371746,19877055:197084 -k1,11905:23457498,19877055:197084 -k1,11905:29104557,19877055:197085 -k1,11905:31391584,19877055:197084 -k1,11905:32583029,19877055:0 -) -(1,11906:6630773,20718543:25952256,513147,126483 -g1,11905:7851053,20718543 -g1,11905:8997933,20718543 -g1,11905:13200756,20718543 -g1,11905:15350336,20718543 -h1,11905:16320924,20718543:0,0,0 -k1,11906:32583029,20718543:15881341 -g1,11906:32583029,20718543 -) -[1,11926:6630773,34665152:25952256,13033694,0 -[1,11926:6630773,34665152:25952256,13033694,0 -(1,11909:6630773,22764575:25952256,477757,0 -h1,11909:6630773,22764575:0,0,0 -g1,11909:9019560,22764575 -k1,11909:32583029,22764575:22573220 -g1,11909:32583029,22764575 -) -(1,11909:6630773,23606063:25952256,513147,126483 -h1,11909:6630773,23606063:0,0,0 -k1,11909:10387953,23606063:177604 -k1,11909:14051418,23606063:177605 -k1,11909:18340751,23606063:177604 -k1,11909:19134393,23606063:177604 -k1,11909:19900510,23606063:177604 -k1,11909:22116940,23606063:177605 -k1,11909:23288070,23606063:177604 -k1,11909:24124966,23606063:177604 -k1,11909:25736499,23606063:177605 -k1,11909:26328924,23606063:177582 -k1,11909:29532326,23606063:177605 -k1,11909:31931601,23606063:177604 -k1,11909:32583029,23606063:0 -) -(1,11909:6630773,24447551:25952256,513147,134348 -k1,11909:10322237,24447551:205604 -k1,11909:14813240,24447551:205604 -k1,11909:16215532,24447551:205605 -k1,11909:17511000,24447551:205604 -k1,11909:18710130,24447551:205604 -k1,11909:20020016,24447551:205604 -k1,11909:20973386,24447551:205604 -k1,11909:23970824,24447551:205604 -k1,11909:24937957,24447551:205605 -k1,11909:28198849,24447551:205604 -k1,11909:29423538,24447551:205604 -k1,11909:32583029,24447551:0 -) -(1,11909:6630773,25289039:25952256,452978,115847 -(1,11909:6630773,25289039:0,452978,115847 -r1,11937:13319851,25289039:6689078,568825,115847 -k1,11909:6630773,25289039:-6689078 -) -(1,11909:6630773,25289039:6689078,452978,115847 -k1,11909:6630773,25289039:3277 -h1,11909:13316574,25289039:0,411205,112570 -) -k1,11909:32583029,25289039:19089508 -g1,11909:32583029,25289039 -) -(1,11925:6630773,34665152:25952256,8847389,0 -k1,11925:6670209,34665152:39436 -h1,11911:6670209,34665152:0,0,0 -k1,11911:6709645,34665152:39436 -[1,11925:6709645,34665152:25833948,8847389,0 -(1,11925:6709645,25883299:25833948,65536,0 -g1,11925:6709645,25883299 -(1,11925:6709645,25883299:25833948,65536,0 -r1,11937:32543593,25883299:25833948,65536,0 -) -g1,11925:32543593,25883299 -) -(1,11925:6709645,30413840:25833948,4465005,4054704 -g1,11925:6709645,30413840 -(1,11925:6709645,30413840:25833948,4465005,4054704 -g1,11911:6908874,30413840 -$1,11925:6908874,30413840 -[1,11925:6908874,30413840:25634719,4465005,4054704 -(1,11914:6908874,26724817:25634719,539955,231411 -g1,11913:6908874,26724817 -(1,11913:6908874,26724817:4544923,539955,231411 -r1,11937:6908874,26724817:0,771366,231411 -g1,11913:7236554,26724817 -g1,11913:7236555,26724817 -k1,11913:11126117,26724817:25559 -g1,11913:11453797,26724817 -) -g1,11913:11453797,26724817 -(1,11913:11453797,26724817:2966816,539955,231411 -g1,11913:11781477,26724817 -g1,11913:11781478,26724817 -g1,11913:14092933,26724817 -g1,11913:14420613,26724817 -) -g1,11913:14420613,26724817 -(1,11913:14420613,26724817:4530745,539955,231411 -g1,11913:14748293,26724817 -g1,11913:14748294,26724817 -k1,11913:18623678,26724817:1542958 -g1,11913:18951358,26724817 -) -g1,11913:18951358,26724817 -(1,11913:18951358,26724817:4530745,539955,231411 -g1,11913:19279038,26724817 -g1,11913:19279039,26724817 -$1,11913:19279039,26724817 -$1,11913:19746966,26724817 -k1,11913:23154423,26724817:3407457 -g1,11913:23482103,26724817 -) -g1,11913:23482103,26724817 -(1,11913:23482103,26724817:4530745,539955,231411 -g1,11913:23809783,26724817 -g1,11913:23809784,26724817 -k1,11913:27685168,26724817:944614 -g1,11913:28012848,26724817 -) -g1,11913:28012848,26724817 -(1,11914:28012848,26724817:4530745,539955,231411 -g1,11913:28340528,26724817 -g1,11913:28340529,26724817 -k1,11914:32215913,26724817:1959111 -g1,11914:32543593,26724817 -) -g1,11914:32543593,26724817 -) -(1,11916:6908874,27825532:25634719,539955,231411 -g1,11915:6908874,27825532 -(1,11915:6908874,27825532:4544923,539955,231411 -r1,11937:6908874,27825532:0,771366,231411 -g1,11915:7236554,27825532 -g1,11915:7236555,27825532 -k1,11915:11126117,27825532:1610875 -g1,11915:11453797,27825532 -) -g1,11915:11453797,27825532 -(1,11915:11453797,27825532:2966816,539955,231411 -g1,11915:11781477,27825532 -g1,11915:11781478,27825532 -$1,11915:11781478,27825532 -$1,11915:12367370,27825532 -k1,11915:14092933,27825532:1725563 -g1,11915:14420613,27825532 -) -g1,11915:14420613,27825532 -(1,11915:14420613,27825532:4530745,539955,231411 -g1,11915:14748293,27825532 -g1,11915:14748294,27825532 -(1,11915:14748294,27825532:0,452978,115847 -r1,11937:17216831,27825532:2468537,568825,115847 -k1,11915:14748294,27825532:-2468537 -) -(1,11915:14748294,27825532:2468537,452978,115847 -k1,11915:14748294,27825532:3277 -h1,11915:17213554,27825532:0,411205,112570 -) -k1,11915:18623678,27825532:1406847 -g1,11915:18951358,27825532 -) -g1,11915:18951358,27825532 -(1,11915:18951358,27825532:4530745,539955,231411 -g1,11915:19279038,27825532 -g1,11915:19279039,27825532 -(1,11915:19279039,27825532:0,452978,115847 -r1,11937:21747576,27825532:2468537,568825,115847 -k1,11915:19279039,27825532:-2468537 -) -(1,11915:19279039,27825532:2468537,452978,115847 -k1,11915:19279039,27825532:3277 -h1,11915:21744299,27825532:0,411205,112570 -) -k1,11915:23154423,27825532:1406847 -g1,11915:23482103,27825532 -) -g1,11915:23482103,27825532 -(1,11915:23482103,27825532:4530745,539955,231411 -g1,11915:23809783,27825532 -g1,11915:23809784,27825532 -(1,11915:23809784,27825532:0,452978,115847 -r1,11937:26278321,27825532:2468537,568825,115847 -k1,11915:23809784,27825532:-2468537 -) -(1,11915:23809784,27825532:2468537,452978,115847 -k1,11915:23809784,27825532:3277 -h1,11915:26275044,27825532:0,411205,112570 -) -k1,11915:27685168,27825532:1406847 -g1,11915:28012848,27825532 -) -g1,11915:28012848,27825532 -(1,11916:28012848,27825532:4530745,539955,231411 -g1,11915:28340528,27825532 -g1,11915:28340529,27825532 -(1,11915:28340529,27825532:0,452978,115847 -r1,11937:30809066,27825532:2468537,568825,115847 -k1,11915:28340529,27825532:-2468537 -) -(1,11915:28340529,27825532:2468537,452978,115847 -k1,11915:28340529,27825532:3277 -h1,11915:30805789,27825532:0,411205,112570 -) -k1,11916:32215913,27825532:1406847 -g1,11916:32543593,27825532 -) -g1,11916:32543593,27825532 -) -(1,11917:6908874,28596898:25634719,539955,231411 -g1,11916:6908874,28596898 -(1,11916:6908874,28596898:4544923,539955,231411 -r1,11937:6908874,28596898:0,771366,231411 -g1,11916:7236554,28596898 -g1,11916:7236555,28596898 -k1,11916:11126117,28596898:918815 -g1,11916:11453797,28596898 -) -g1,11916:11453797,28596898 -(1,11916:11453797,28596898:2966816,539955,231411 -g1,11916:11781477,28596898 -g1,11916:11781478,28596898 -$1,11916:11781478,28596898 -$1,11916:12101949,28596898 -k1,11916:14092933,28596898:1990984 -g1,11916:14420613,28596898 -) -g1,11916:14420613,28596898 -(1,11916:14420613,28596898:4530745,539955,231411 -g1,11916:14748293,28596898 -g1,11916:14748294,28596898 -(1,11916:14748294,28596898:0,452978,115847 -r1,11937:16161695,28596898:1413401,568825,115847 -k1,11916:14748294,28596898:-1413401 -) -(1,11916:14748294,28596898:1413401,452978,115847 -k1,11916:14748294,28596898:3277 -h1,11916:16158418,28596898:0,411205,112570 -) -k1,11916:18623678,28596898:2461983 -g1,11916:18951358,28596898 -) -g1,11916:18951358,28596898 -(1,11916:18951358,28596898:4530745,539955,231411 -g1,11916:19279038,28596898 -g1,11916:19279039,28596898 -(1,11916:19279039,28596898:0,452978,115847 -r1,11937:20692440,28596898:1413401,568825,115847 -k1,11916:19279039,28596898:-1413401 -) -(1,11916:19279039,28596898:1413401,452978,115847 -k1,11916:19279039,28596898:3277 -h1,11916:20689163,28596898:0,411205,112570 -) -k1,11916:23154423,28596898:2461983 -g1,11916:23482103,28596898 -) -g1,11916:23482103,28596898 -(1,11916:23482103,28596898:4530745,539955,231411 -g1,11916:23809783,28596898 -g1,11916:23809784,28596898 -(1,11916:23809784,28596898:0,452978,115847 -r1,11937:25223185,28596898:1413401,568825,115847 -k1,11916:23809784,28596898:-1413401 -) -(1,11916:23809784,28596898:1413401,452978,115847 -k1,11916:23809784,28596898:3277 -h1,11916:25219908,28596898:0,411205,112570 -) -k1,11916:27685168,28596898:2461983 -g1,11916:28012848,28596898 -) -g1,11916:28012848,28596898 -(1,11917:28012848,28596898:4530745,539955,231411 -g1,11916:28340528,28596898 -g1,11916:28340529,28596898 -(1,11916:28340529,28596898:0,452978,115847 -r1,11937:29753930,28596898:1413401,568825,115847 -k1,11916:28340529,28596898:-1413401 -) -(1,11916:28340529,28596898:1413401,452978,115847 -k1,11916:28340529,28596898:3277 -h1,11916:29750653,28596898:0,411205,112570 -) -k1,11917:32215913,28596898:2461983 -g1,11917:32543593,28596898 -) -g1,11917:32543593,28596898 -) -(1,11918:6908874,29368264:25634719,539955,231411 -g1,11917:6908874,29368264 -(1,11917:6908874,29368264:4544923,539955,231411 -r1,11937:6908874,29368264:0,771366,231411 -g1,11917:7236554,29368264 -g1,11917:7236555,29368264 -k1,11917:11126117,29368264:3530425 -g1,11917:11453797,29368264 -) -g1,11917:11453797,29368264 -(1,11917:11453797,29368264:2966816,539955,231411 -g1,11917:11781477,29368264 -g1,11917:11781478,29368264 -$1,11917:11781478,29368264 -$1,11917:12226467,29368264 -k1,11917:14092933,29368264:1866466 -g1,11917:14420613,29368264 -) -g1,11917:14420613,29368264 -(1,11917:14420613,29368264:4530745,539955,231411 -g1,11917:14748293,29368264 -g1,11917:14748294,29368264 -(1,11917:14748294,29368264:0,459977,115847 -r1,11937:16161695,29368264:1413401,575824,115847 -k1,11917:14748294,29368264:-1413401 -) -(1,11917:14748294,29368264:1413401,459977,115847 -k1,11917:14748294,29368264:3277 -h1,11917:16158418,29368264:0,411205,112570 -) -k1,11917:18623678,29368264:2461983 -g1,11917:18951358,29368264 -) -g1,11917:18951358,29368264 -(1,11917:18951358,29368264:4530745,539955,231411 -g1,11917:19279038,29368264 -g1,11917:19279039,29368264 -(1,11917:19279039,29368264:0,459977,115847 -r1,11937:20692440,29368264:1413401,575824,115847 -k1,11917:19279039,29368264:-1413401 -) -(1,11917:19279039,29368264:1413401,459977,115847 -k1,11917:19279039,29368264:3277 -h1,11917:20689163,29368264:0,411205,112570 -) -k1,11917:23154423,29368264:2461983 -g1,11917:23482103,29368264 -) -g1,11917:23482103,29368264 -(1,11917:23482103,29368264:4530745,539955,231411 -g1,11917:23809783,29368264 -g1,11917:23809784,29368264 -(1,11917:23809784,29368264:0,459977,115847 -r1,11937:25223185,29368264:1413401,575824,115847 -k1,11917:23809784,29368264:-1413401 -) -(1,11917:23809784,29368264:1413401,459977,115847 -k1,11917:23809784,29368264:3277 -h1,11917:25219908,29368264:0,411205,112570 -) -k1,11917:27685168,29368264:2461983 -g1,11917:28012848,29368264 -) -g1,11917:28012848,29368264 -(1,11918:28012848,29368264:4530745,539955,231411 -g1,11917:28340528,29368264 -g1,11917:28340529,29368264 -(1,11917:28340529,29368264:0,459977,115847 -r1,11937:29753930,29368264:1413401,575824,115847 -k1,11917:28340529,29368264:-1413401 -) -(1,11917:28340529,29368264:1413401,459977,115847 -k1,11917:28340529,29368264:3277 -h1,11917:29750653,29368264:0,411205,112570 -) -k1,11918:32215913,29368264:2461983 -g1,11918:32543593,29368264 -) -g1,11918:32543593,29368264 -) -(1,11919:6908874,30139630:25634719,539955,231411 -g1,11918:6908874,30139630 -(1,11918:6908874,30139630:4544923,539955,231411 -r1,11937:6908874,30139630:0,771366,231411 -g1,11918:7236554,30139630 -g1,11918:7236555,30139630 -k1,11918:11126117,30139630:1096418 -g1,11918:11453797,30139630 -) -g1,11918:11453797,30139630 -(1,11918:11453797,30139630:2966816,539955,231411 -g1,11918:11781477,30139630 -g1,11918:11781478,30139630 -$1,11918:11781478,30139630 -$1,11918:12229744,30139630 -k1,11918:14092933,30139630:1863189 -g1,11918:14420613,30139630 -) -g1,11918:14420613,30139630 -(1,11918:14420613,30139630:4530745,539955,231411 -g1,11918:14748293,30139630 -g1,11918:14748294,30139630 -(1,11918:14748294,30139630:0,452978,115847 -r1,11937:17568543,30139630:2820249,568825,115847 -k1,11918:14748294,30139630:-2820249 -) -(1,11918:14748294,30139630:2820249,452978,115847 -k1,11918:14748294,30139630:3277 -h1,11918:17565266,30139630:0,411205,112570 -) -k1,11918:18623678,30139630:1055135 -g1,11918:18951358,30139630 -) -g1,11918:18951358,30139630 -(1,11918:18951358,30139630:4530745,539955,231411 -g1,11918:19279038,30139630 -g1,11918:19279039,30139630 -(1,11918:19279039,30139630:0,452978,115847 -r1,11937:22099288,30139630:2820249,568825,115847 -k1,11918:19279039,30139630:-2820249 -) -(1,11918:19279039,30139630:2820249,452978,115847 -k1,11918:19279039,30139630:3277 -h1,11918:22096011,30139630:0,411205,112570 -) -k1,11918:23154423,30139630:1055135 -g1,11918:23482103,30139630 -) -g1,11918:23482103,30139630 -(1,11918:23482103,30139630:4530745,539955,231411 -g1,11918:23809783,30139630 -g1,11918:23809784,30139630 -(1,11918:23809784,30139630:0,452978,115847 -r1,11937:26630033,30139630:2820249,568825,115847 -k1,11918:23809784,30139630:-2820249 -) -(1,11918:23809784,30139630:2820249,452978,115847 -k1,11918:23809784,30139630:3277 -h1,11918:26626756,30139630:0,411205,112570 -) -k1,11918:27685168,30139630:1055135 -g1,11918:28012848,30139630 -) -g1,11918:28012848,30139630 -(1,11919:28012848,30139630:4530745,539955,231411 -g1,11918:28340528,30139630 -g1,11918:28340529,30139630 -(1,11918:28340529,30139630:0,452978,115847 -r1,11937:31160778,30139630:2820249,568825,115847 -k1,11918:28340529,30139630:-2820249 -) -(1,11918:28340529,30139630:2820249,452978,115847 -k1,11918:28340529,30139630:3277 -h1,11918:31157501,30139630:0,411205,112570 -) -k1,11919:32215913,30139630:1055135 -g1,11919:32543593,30139630 -) -g1,11919:32543593,30139630 -) -(1,11920:6908874,30910996:25634719,539955,231411 -g1,11919:6908874,30910996 -(1,11919:6908874,30910996:4544923,539955,231411 -r1,11937:6908874,30910996:0,771366,231411 -g1,11919:7236554,30910996 -g1,11919:7236555,30910996 -g1,11919:11126117,30910996 -g1,11919:11453797,30910996 -) -g1,11919:11453797,30910996 -(1,11919:11453797,30910996:2966816,539955,231411 -g1,11919:11781477,30910996 -g1,11919:11781478,30910996 -$1,11919:11781478,30910996 -$1,11919:12440115,30910996 -k1,11919:14092933,30910996:1652818 -g1,11919:14420613,30910996 -) -g1,11919:14420613,30910996 -(1,11919:14420613,30910996:4530745,539955,231411 -g1,11919:14748293,30910996 -g1,11919:14748294,30910996 -(1,11919:14748294,30910996:0,452978,115847 -r1,11937:18623678,30910996:3875384,568825,115847 -k1,11919:14748294,30910996:-3875384 -) -(1,11919:14748294,30910996:3875384,452978,115847 -k1,11919:14748294,30910996:3277 -h1,11919:18620401,30910996:0,411205,112570 -) -g1,11919:18623678,30910996 -g1,11919:18951358,30910996 -) -g1,11919:18951358,30910996 -(1,11919:18951358,30910996:4530745,539955,231411 -g1,11919:19279038,30910996 -g1,11919:19279039,30910996 -(1,11919:19279039,30910996:0,452978,115847 -r1,11937:23154423,30910996:3875384,568825,115847 -k1,11919:19279039,30910996:-3875384 -) -(1,11919:19279039,30910996:3875384,452978,115847 -k1,11919:19279039,30910996:3277 -h1,11919:23151146,30910996:0,411205,112570 -) -g1,11919:23154423,30910996 -g1,11919:23482103,30910996 -) -g1,11919:23482103,30910996 -(1,11919:23482103,30910996:4530745,539955,231411 -g1,11919:23809783,30910996 -g1,11919:23809784,30910996 -(1,11919:23809784,30910996:0,452978,115847 -r1,11937:27685168,30910996:3875384,568825,115847 -k1,11919:23809784,30910996:-3875384 -) -(1,11919:23809784,30910996:3875384,452978,115847 -k1,11919:23809784,30910996:3277 -h1,11919:27681891,30910996:0,411205,112570 -) -g1,11919:27685168,30910996 -g1,11919:28012848,30910996 -) -g1,11919:28012848,30910996 -(1,11920:28012848,30910996:4530745,539955,231411 -g1,11919:28340528,30910996 -g1,11919:28340529,30910996 -(1,11919:28340529,30910996:0,452978,115847 -r1,11937:32215913,30910996:3875384,568825,115847 -k1,11919:28340529,30910996:-3875384 -) -(1,11919:28340529,30910996:3875384,452978,115847 -k1,11919:28340529,30910996:3277 -h1,11919:32212636,30910996:0,411205,112570 -) -g1,11920:32215913,30910996 -g1,11920:32543593,30910996 -) -g1,11920:32543593,30910996 -) -(1,11921:6908874,31682362:25634719,539955,231411 -g1,11920:6908874,31682362 -(1,11920:6908874,31682362:4544923,539955,231411 -r1,11937:6908874,31682362:0,771366,231411 -g1,11920:7236554,31682362 -g1,11920:7236555,31682362 -k1,11920:11126117,31682362:1448346 -g1,11920:11453797,31682362 -) -g1,11920:11453797,31682362 -(1,11920:11453797,31682362:2966816,539955,231411 -g1,11920:11781477,31682362 -k1,11920:14092933,31682362:2311456 -g1,11920:14420613,31682362 -) -g1,11920:14420613,31682362 -(1,11920:14420613,31682362:4530745,539955,231411 -g1,11920:14748293,31682362 -g1,11920:14748294,31682362 -(1,11920:14748294,31682362:0,452978,115847 -r1,11937:17216831,31682362:2468537,568825,115847 -k1,11920:14748294,31682362:-2468537 -) -(1,11920:14748294,31682362:2468537,452978,115847 -k1,11920:14748294,31682362:3277 -h1,11920:17213554,31682362:0,411205,112570 -) -k1,11920:18623678,31682362:1406847 -g1,11920:18951358,31682362 -) -g1,11920:18951358,31682362 -(1,11920:18951358,31682362:4530745,539955,231411 -g1,11920:19279038,31682362 -g1,11920:19279039,31682362 -(1,11920:19279039,31682362:0,452978,115847 -r1,11937:21747576,31682362:2468537,568825,115847 -k1,11920:19279039,31682362:-2468537 -) -(1,11920:19279039,31682362:2468537,452978,115847 -k1,11920:19279039,31682362:3277 -h1,11920:21744299,31682362:0,411205,112570 -) -k1,11920:23154423,31682362:1406847 -g1,11920:23482103,31682362 -) -g1,11920:23482103,31682362 -(1,11920:23482103,31682362:4530745,539955,231411 -g1,11920:23809783,31682362 -g1,11920:23809784,31682362 -(1,11920:23809784,31682362:0,452978,115847 -r1,11937:26278321,31682362:2468537,568825,115847 -k1,11920:23809784,31682362:-2468537 -) -(1,11920:23809784,31682362:2468537,452978,115847 -k1,11920:23809784,31682362:3277 -h1,11920:26275044,31682362:0,411205,112570 -) -k1,11920:27685168,31682362:1406847 -g1,11920:28012848,31682362 -) -g1,11920:28012848,31682362 -(1,11921:28012848,31682362:4530745,539955,231411 -g1,11920:28340528,31682362 -g1,11920:28340529,31682362 -(1,11920:28340529,31682362:0,452978,115847 -r1,11937:30809066,31682362:2468537,568825,115847 -k1,11920:28340529,31682362:-2468537 -) -(1,11920:28340529,31682362:2468537,452978,115847 -k1,11920:28340529,31682362:3277 -h1,11920:30805789,31682362:0,411205,112570 -) -k1,11921:32215913,31682362:1406847 -g1,11921:32543593,31682362 -) -g1,11921:32543593,31682362 -) -(1,11922:6908874,32528989:25634719,615216,231411 -g1,11921:6908874,32528989 -(1,11921:6908874,32528989:4544923,615216,231411 -r1,11937:6908874,32528989:0,771366,231411 -g1,11921:7236554,32528989 -g1,11921:7236555,32528989 -$1,11921:7236555,32528989 -$1,11921:7719555,32528989 -k1,11921:11126117,32528989:631768 -g1,11921:11453797,32528989 -) -g1,11921:11453797,32528989 -(1,11921:11453797,32528989:2966816,615216,231411 -g1,11921:11781477,32528989 -g1,11921:11781478,32528989 -$1,11921:11781478,32528989 -(1,11921:12264478,32253708:311689,339935,0 -) -$1,11921:12576167,32528989 -k1,11921:14092933,32528989:1516766 -g1,11921:14420613,32528989 -) -g1,11921:14420613,32528989 -(1,11921:14420613,32528989:4530745,615216,231411 -g1,11921:14748293,32528989 -g1,11921:14748294,32528989 -(1,11921:14748294,32528989:0,452978,115847 -r1,11937:17568543,32528989:2820249,568825,115847 -k1,11921:14748294,32528989:-2820249 -) -(1,11921:14748294,32528989:2820249,452978,115847 -k1,11921:14748294,32528989:3277 -h1,11921:17565266,32528989:0,411205,112570 -) -k1,11921:18623678,32528989:1055135 -g1,11921:18951358,32528989 -) -g1,11921:18951358,32528989 -(1,11921:18951358,32528989:4530745,615216,231411 -g1,11921:19279038,32528989 -g1,11921:19279039,32528989 -(1,11921:19279039,32528989:0,452978,115847 -r1,11937:22099288,32528989:2820249,568825,115847 -k1,11921:19279039,32528989:-2820249 -) -(1,11921:19279039,32528989:2820249,452978,115847 -k1,11921:19279039,32528989:3277 -h1,11921:22096011,32528989:0,411205,112570 -) -k1,11921:23154423,32528989:1055135 -g1,11921:23482103,32528989 -) -g1,11921:23482103,32528989 -(1,11921:23482103,32528989:4530745,615216,231411 -g1,11921:23809783,32528989 -g1,11921:23809784,32528989 -(1,11921:23809784,32528989:0,452978,115847 -r1,11937:26630033,32528989:2820249,568825,115847 -k1,11921:23809784,32528989:-2820249 -) -(1,11921:23809784,32528989:2820249,452978,115847 -k1,11921:23809784,32528989:3277 -h1,11921:26626756,32528989:0,411205,112570 -) -k1,11921:27685168,32528989:1055135 -g1,11921:28012848,32528989 -) -g1,11921:28012848,32528989 -(1,11922:28012848,32528989:4530745,615216,231411 -g1,11921:28340528,32528989 -g1,11921:28340529,32528989 -(1,11921:28340529,32528989:0,452978,115847 -r1,11937:31160778,32528989:2820249,568825,115847 -k1,11921:28340529,32528989:-2820249 -) -(1,11921:28340529,32528989:2820249,452978,115847 -k1,11921:28340529,32528989:3277 -h1,11921:31157501,32528989:0,411205,112570 -) -k1,11922:32215913,32528989:1055135 -g1,11922:32543593,32528989 -) -g1,11922:32543593,32528989 -) -(1,11923:6908874,33300355:25634719,539955,231411 -g1,11922:6908874,33300355 -(1,11922:6908874,33300355:4544923,539955,231411 -r1,11937:6908874,33300355:0,771366,231411 -g1,11922:7236554,33300355 -g1,11922:7236555,33300355 -k1,11922:11126117,33300355:424018 -g1,11922:11453797,33300355 -) -g1,11922:11453797,33300355 -(1,11922:11453797,33300355:2966816,539955,231411 -g1,11922:11781477,33300355 -k1,11922:14092933,33300355:2311456 -g1,11922:14420613,33300355 -) -g1,11922:14420613,33300355 -(1,11922:14420613,33300355:4530745,539955,231411 -g1,11922:14748293,33300355 -g1,11922:14748294,33300355 -(1,11922:14748294,33300355:0,452978,115847 -r1,11937:17568543,33300355:2820249,568825,115847 -k1,11922:14748294,33300355:-2820249 -) -(1,11922:14748294,33300355:2820249,452978,115847 -k1,11922:14748294,33300355:3277 -h1,11922:17565266,33300355:0,411205,112570 -) -k1,11922:18623678,33300355:1055135 -g1,11922:18951358,33300355 -) -g1,11922:18951358,33300355 -(1,11922:18951358,33300355:4530745,539955,231411 -g1,11922:19279038,33300355 -g1,11922:19279039,33300355 -(1,11922:19279039,33300355:0,452978,115847 -r1,11937:22099288,33300355:2820249,568825,115847 -k1,11922:19279039,33300355:-2820249 -) -(1,11922:19279039,33300355:2820249,452978,115847 -k1,11922:19279039,33300355:3277 -h1,11922:22096011,33300355:0,411205,112570 -) -k1,11922:23154423,33300355:1055135 -g1,11922:23482103,33300355 -) -g1,11922:23482103,33300355 -(1,11922:23482103,33300355:4530745,539955,231411 -g1,11922:23809783,33300355 -g1,11922:23809784,33300355 -(1,11922:23809784,33300355:0,452978,115847 -r1,11937:26630033,33300355:2820249,568825,115847 -k1,11922:23809784,33300355:-2820249 -) -(1,11922:23809784,33300355:2820249,452978,115847 -k1,11922:23809784,33300355:3277 -h1,11922:26626756,33300355:0,411205,112570 -) -k1,11922:27685168,33300355:1055135 -g1,11922:28012848,33300355 -) -g1,11922:28012848,33300355 -(1,11923:28012848,33300355:4530745,539955,231411 -g1,11922:28340528,33300355 -g1,11922:28340529,33300355 -(1,11922:28340529,33300355:0,452978,115847 -r1,11937:31160778,33300355:2820249,568825,115847 -k1,11922:28340529,33300355:-2820249 -) -(1,11922:28340529,33300355:2820249,452978,115847 -k1,11922:28340529,33300355:3277 -h1,11922:31157501,33300355:0,411205,112570 -) -k1,11923:32215913,33300355:1055135 -g1,11923:32543593,33300355 -) -g1,11923:32543593,33300355 -) -(1,11924:6908874,34071721:25634719,539955,231411 -g1,11923:6908874,34071721 -(1,11923:6908874,34071721:4544923,539955,231411 -r1,11937:6908874,34071721:0,771366,231411 -g1,11923:7236554,34071721 -g1,11923:7236555,34071721 -k1,11923:11126117,34071721:1291059 -g1,11923:11453797,34071721 -) -g1,11923:11453797,34071721 -(1,11923:11453797,34071721:2966816,539955,231411 -g1,11923:11781477,34071721 -k1,11923:14092933,34071721:2311456 -g1,11923:14420613,34071721 -) -g1,11923:14420613,34071721 -(1,11923:14420613,34071721:4530745,539955,231411 -g1,11923:14748293,34071721 -g1,11923:14748294,34071721 -(1,11923:14748294,34071721:0,459977,115847 -r1,11937:17216831,34071721:2468537,575824,115847 -k1,11923:14748294,34071721:-2468537 -) -(1,11923:14748294,34071721:2468537,459977,115847 -k1,11923:14748294,34071721:3277 -h1,11923:17213554,34071721:0,411205,112570 -) -k1,11923:18623678,34071721:1406847 -g1,11923:18951358,34071721 -) -g1,11923:18951358,34071721 -(1,11923:18951358,34071721:4530745,539955,231411 -g1,11923:19279038,34071721 -g1,11923:19279039,34071721 -(1,11923:19279039,34071721:0,459977,115847 -r1,11937:21747576,34071721:2468537,575824,115847 -k1,11923:19279039,34071721:-2468537 -) -(1,11923:19279039,34071721:2468537,459977,115847 -k1,11923:19279039,34071721:3277 -h1,11923:21744299,34071721:0,411205,112570 -) -k1,11923:23154423,34071721:1406847 -g1,11923:23482103,34071721 -) -g1,11923:23482103,34071721 -(1,11923:23482103,34071721:4530745,539955,231411 -g1,11923:23809783,34071721 -g1,11923:23809784,34071721 -(1,11923:23809784,34071721:0,459977,115847 -r1,11937:26278321,34071721:2468537,575824,115847 -k1,11923:23809784,34071721:-2468537 -) -(1,11923:23809784,34071721:2468537,459977,115847 -k1,11923:23809784,34071721:3277 -h1,11923:26275044,34071721:0,411205,112570 -) -k1,11923:27685168,34071721:1406847 -g1,11923:28012848,34071721 -) -g1,11923:28012848,34071721 -(1,11924:28012848,34071721:4530745,539955,231411 -g1,11923:28340528,34071721 -g1,11923:28340529,34071721 -(1,11923:28340529,34071721:0,459977,115847 -r1,11937:30809066,34071721:2468537,575824,115847 -k1,11923:28340529,34071721:-2468537 -) -(1,11923:28340529,34071721:2468537,459977,115847 -k1,11923:28340529,34071721:3277 -h1,11923:30805789,34071721:0,411205,112570 -) -k1,11924:32215913,34071721:1406847 -g1,11924:32543593,34071721 -) -g1,11924:32543593,34071721 -) -] -$1,11925:32543593,30413840 -) -g1,11925:32543593,30413840 -) -(1,11925:6709645,34665152:25833948,65536,0 -g1,11925:6709645,34665152 -(1,11925:6709645,34665152:25833948,65536,0 -r1,11937:32543593,34665152:25833948,65536,0 -) -g1,11925:32543593,34665152 -) -] -g1,11925:32543593,34665152 -k1,11925:32583029,34665152:39436 -) -] -] -(1,11929:6630773,36166589:25952256,513147,126483 -h1,11928:6630773,36166589:983040,0,0 -k1,11928:11356938,36166589:163549 -k1,11928:15632215,36166589:163548 -k1,11928:16787324,36166589:163549 -k1,11928:19332451,36166589:163549 -k1,11928:20257527,36166589:163548 -k1,11928:24744486,36166589:163549 -k1,11928:27933832,36166589:163549 -k1,11928:29381886,36166589:163548 -k1,11928:31593435,36166589:163549 -k1,11929:32583029,36166589:0 -) -(1,11929:6630773,37008077:25952256,513147,126483 -k1,11928:9669724,37008077:204519 -k1,11928:11158749,37008077:204519 -k1,11928:13651130,37008077:204519 -k1,11928:14874734,37008077:204519 -k1,11928:16737969,37008077:204519 -k1,11928:18811575,37008077:204519 -k1,11928:20207539,37008077:204519 -k1,11928:23142288,37008077:204519 -k1,11928:23974642,37008077:204519 -k1,11928:25198246,37008077:204519 -k1,11928:26769846,37008077:204519 -k1,11928:27633657,37008077:204519 -k1,11928:28857261,37008077:204519 -k1,11928:31417799,37008077:204519 -k1,11929:32583029,37008077:0 -) -(1,11929:6630773,37849565:25952256,505283,134348 -k1,11928:9830503,37849565:196870 -k1,11928:11724100,37849565:196870 -k1,11928:15532004,37849565:196870 -k1,11928:16720434,37849565:196870 -k1,11928:17936388,37849565:196869 -k1,11928:19904696,37849565:196870 -k1,11928:23584805,37849565:196870 -k1,11928:26338234,37849565:196870 -k1,11928:27726549,37849565:196870 -k1,11928:31043588,37849565:196870 -k1,11929:32583029,37849565:0 -) -(1,11929:6630773,38691053:25952256,513147,134348 -k1,11928:8655785,38691053:194591 -k1,11928:9740356,38691053:194592 -k1,11928:10723345,38691053:194591 -k1,11928:13232668,38691053:194591 -k1,11928:14446345,38691053:194592 -k1,11928:17580226,38691053:194591 -k1,11928:21258056,38691053:194591 -k1,11928:22471732,38691053:194591 -k1,11928:24829667,38691053:194592 -k1,11928:27313431,38691053:194591 -k1,11928:28527107,38691053:194591 -k1,11928:30710061,38691053:194592 -k1,11928:31563944,38691053:194591 -k1,11928:32583029,38691053:0 -) -(1,11929:6630773,39532541:25952256,513147,95026 -k1,11928:10762937,39532541:177066 -k1,11928:12136690,39532541:177066 -k1,11928:13676250,39532541:177066 -k1,11928:16615659,39532541:177066 -k1,11928:19818522,39532541:177066 -k1,11928:21738847,39532541:177067 -k1,11928:22531951,39532541:177066 -k1,11928:24594488,39532541:177066 -k1,11928:26782199,39532541:177066 -k1,11928:27950825,39532541:177066 -k1,11928:31356850,39532541:177066 -k1,11928:32583029,39532541:0 -) -(1,11929:6630773,40374029:25952256,505283,134348 -g1,11928:10334867,40374029 -g1,11928:11725541,40374029 -g1,11928:13810241,40374029 -g1,11928:16020115,40374029 -g1,11928:17210904,40374029 -g1,11928:20171165,40374029 -g1,11928:21056556,40374029 -g1,11928:24658414,40374029 -g1,11928:26083822,40374029 -g1,11928:28420835,40374029 -k1,11929:32583029,40374029:1742605 -g1,11929:32583029,40374029 -) -(1,11931:6630773,41215517:25952256,513147,126483 -h1,11930:6630773,41215517:983040,0,0 -k1,11930:8451111,41215517:209463 -k1,11930:10209190,41215517:209463 -k1,11930:12734040,41215517:209463 -k1,11930:13811855,41215517:209463 -k1,11930:15113803,41215517:209463 -k1,11930:16342351,41215517:209463 -k1,11930:18830502,41215517:209464 -k1,11930:22821392,41215517:209463 -k1,11930:23717017,41215517:209463 -k1,11930:24697183,41215517:209463 -k1,11930:27741733,41215517:209463 -k1,11930:29023365,41215517:209463 -k1,11930:30626779,41215517:209463 -k1,11931:32583029,41215517:0 -) -(1,11931:6630773,42057005:25952256,513147,126483 -k1,11930:8611795,42057005:207618 -k1,11930:9435451,42057005:207618 -k1,11930:11151708,42057005:207618 -k1,11930:15144030,42057005:207618 -k1,11930:16370733,42057005:207618 -k1,11930:19604147,42057005:207617 -k1,11930:20759416,42057005:207618 -k1,11930:22669004,42057005:207618 -k1,11930:26278596,42057005:207618 -k1,11930:30597943,42057005:207618 -k1,11930:32583029,42057005:0 -) -(1,11931:6630773,42898493:25952256,505283,134348 -g1,11930:7185862,42898493 -g1,11930:9587101,42898493 -g1,11930:12167253,42898493 -k1,11931:32583029,42898493:17901160 -g1,11931:32583029,42898493 -) -] -(1,11937:32583029,45706769:0,0,0 -g1,11937:32583029,45706769 -) -) -] -(1,11937:6630773,47279633:25952256,0,0 -h1,11937:6630773,47279633:25952256,0,0 -) -] -(1,11937:4262630,4025873:0,0,0 -[1,11937:-473656,4025873:0,0,0 -(1,11937:-473656,-710413:0,0,0 -(1,11937:-473656,-710413:0,0,0 -g1,11937:-473656,-710413 -) -g1,11937:-473656,-710413 -) -] -) -] -!39463 -}204 -Input:1774:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1775:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1776:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1777:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!388 -{205 -[1,12012:4262630,47279633:28320399,43253760,0 -(1,12012:4262630,4025873:0,0,0 -[1,12012:-473656,4025873:0,0,0 -(1,12012:-473656,-710413:0,0,0 -(1,12012:-473656,-644877:0,0,0 -k1,12012:-473656,-644877:-65536 +[1,11291:6630773,45706769:25952256,40108032,0 +(1,11193:6630773,6254097:25952256,564462,139132 +(1,11193:6630773,6254097:2450326,534184,12975 +g1,11193:6630773,6254097 +g1,11193:9081099,6254097 +) +g1,11193:12604118,6254097 +k1,11193:32583029,6254097:16537353 +g1,11193:32583029,6254097 +) +(1,11197:6630773,7512393:25952256,513147,126483 +k1,11196:8436524,7512393:160797 +k1,11196:9616406,7512393:160797 +k1,11196:10789735,7512393:160798 +k1,11196:13942251,7512393:160797 +k1,11196:16132043,7512393:160797 +k1,11196:17161192,7512393:160797 +k1,11196:18454451,7512393:160797 +k1,11196:20576086,7512393:160798 +k1,11196:21092743,7512393:160797 +k1,11196:22969928,7512393:160797 +k1,11196:24202894,7512393:160797 +k1,11196:26340913,7512393:160798 +k1,11196:29370876,7512393:160797 +k1,11196:29887533,7512393:160797 +k1,11196:32583029,7512393:0 +) +(1,11197:6630773,8377473:25952256,513147,134348 +k1,11196:7727039,8377473:148615 +k1,11196:11326781,8377473:148616 +k1,11196:12494481,8377473:148615 +k1,11196:15486704,8377473:148616 +k1,11196:17242262,8377473:148615 +k1,11196:18050170,8377473:148616 +k1,11196:19217870,8377473:148615 +k1,11196:21104501,8377473:148616 +k1,11196:22820737,8377473:148615 +k1,11196:23325213,8377473:148616 +k1,11196:26093957,8377473:148615 +k1,11196:28394119,8377473:148615 +k1,11196:29739422,8377473:148616 +k1,11196:32583029,8377473:0 +) +(1,11197:6630773,9242553:25952256,639543,134348 +k1,11196:8503089,9242553:265373 +k1,11196:9299959,9242553:265373 +k1,11196:11260093,9242553:265373 +k1,11196:12286994,9242553:265373 +$1,11196:12286994,9242553 +[1,11196:12715599,9340867:384631,359203,5505 +(1,11196:13044982,9335362:0,353698,0 +) +(1,11196:12715599,9340867:351863,248644,5505 +) +] +k1,11196:13403178,9242553:302948 +k1,11196:14274323,9242553:302948 +(1,11196:14274323,9242553:2195193,639543,119364 +[1,11196:14274323,8655438:595722,26214,706479 +] +[1,11196:14870045,9242553:1599471,639543,95027 +(1,11196:14870045,9242553:1599471,530010,95027 +(1,11196:15298650,9052478:311689,339935,0 +) +) +] +) +$1,11196:16469516,9242553 +k1,11196:16908559,9242553:265373 +k1,11196:18127481,9242553:265373 +k1,11196:19497136,9242553:265373 +k1,11196:22574004,9242553:265373 +k1,11196:24042618,9242553:265373 +k1,11196:25575456,9242553:265372 +k1,11196:26859914,9242553:265373 +k1,11196:30207445,9242553:265373 +k1,11196:31132110,9242553:265373 +k1,11196:32168186,9242553:265373 +k1,11197:32583029,9242553:0 +) +(1,11197:6630773,10107633:25952256,513147,115847 +g1,11196:9525498,10107633 +g1,11196:11592503,10107633 +(1,11196:11592503,10107633:0,414482,115847 +r1,11291:12654192,10107633:1061689,530329,115847 +k1,11196:11592503,10107633:-1061689 +) +(1,11196:11592503,10107633:1061689,414482,115847 +k1,11196:11592503,10107633:3277 +h1,11196:12650915,10107633:0,411205,112570 +) +k1,11197:32583030,10107633:19755168 +g1,11197:32583030,10107633 +) +v1,11199:6630773,10792488:0,393216,0 +(1,11203:6630773,11139777:25952256,740505,196608 +g1,11203:6630773,11139777 +g1,11203:6630773,11139777 +g1,11203:6434165,11139777 +(1,11203:6434165,11139777:0,740505,196608 +r1,11291:32779637,11139777:26345472,937113,196608 +k1,11203:6434165,11139777:-26345472 +) +(1,11203:6434165,11139777:26345472,740505,196608 +[1,11203:6630773,11139777:25952256,543897,0 +(1,11201:6630773,11026925:25952256,431045,112852 +(1,11200:6630773,11026925:0,0,0 +g1,11200:6630773,11026925 +g1,11200:6630773,11026925 +g1,11200:6303093,11026925 +(1,11200:6303093,11026925:0,0,0 +) +g1,11200:6630773,11026925 +) +g1,11201:7958589,11026925 +g1,11201:8954451,11026925 +g1,11201:16921346,11026925 +g1,11201:17585254,11026925 +k1,11201:17585254,11026925:0 +h1,11201:21236748,11026925:0,0,0 +k1,11201:32583029,11026925:11346281 +g1,11201:32583029,11026925 +) +] +) +g1,11203:32583029,11139777 +g1,11203:6630773,11139777 +g1,11203:6630773,11139777 +g1,11203:32583029,11139777 +g1,11203:32583029,11139777 +) +h1,11203:6630773,11336385:0,0,0 +(1,11207:6630773,12201465:25952256,513147,7863 +h1,11206:6630773,12201465:983040,0,0 +g1,11206:8766591,12201465 +g1,11206:10070102,12201465 +g1,11206:11460776,12201465 +g1,11206:12757733,12201465 +k1,11207:32583029,12201465:16956130 +g1,11207:32583029,12201465 +) +v1,11209:6630773,12886320:0,393216,0 +(1,11230:6630773,18643318:25952256,6150214,196608 +g1,11230:6630773,18643318 +g1,11230:6630773,18643318 +g1,11230:6434165,18643318 +(1,11230:6434165,18643318:0,6150214,196608 +r1,11291:32779637,18643318:26345472,6346822,196608 +k1,11230:6434165,18643318:-26345472 +) +(1,11230:6434165,18643318:26345472,6150214,196608 +[1,11230:6630773,18643318:25952256,5953606,0 +(1,11211:6630773,13114151:25952256,424439,86428 +(1,11210:6630773,13114151:0,0,0 +g1,11210:6630773,13114151 +g1,11210:6630773,13114151 +g1,11210:6303093,13114151 +(1,11210:6303093,13114151:0,0,0 +) +g1,11210:6630773,13114151 +) +g1,11211:7294681,13114151 +g1,11211:8290543,13114151 +g1,11211:9950313,13114151 +g1,11211:10946175,13114151 +g1,11211:11942037,13114151 +k1,11211:11942037,13114151:0 +h1,11211:12937899,13114151:0,0,0 +k1,11211:32583029,13114151:19645130 +g1,11211:32583029,13114151 +) +(1,11212:6630773,13799006:25952256,424439,86428 +h1,11212:6630773,13799006:0,0,0 +g1,11212:8290543,13799006 +g1,11212:9286405,13799006 +g1,11212:10946175,13799006 +h1,11212:11942037,13799006:0,0,0 +k1,11212:32583029,13799006:20640992 +g1,11212:32583029,13799006 +) +(1,11213:6630773,14483861:25952256,424439,79822 +h1,11213:6630773,14483861:0,0,0 +g1,11213:8622497,14483861 +g1,11213:9286405,14483861 +h1,11213:9950313,14483861:0,0,0 +k1,11213:32583029,14483861:22632716 +g1,11213:32583029,14483861 +) +(1,11217:6630773,15299788:25952256,424439,79822 +(1,11215:6630773,15299788:0,0,0 +g1,11215:6630773,15299788 +g1,11215:6630773,15299788 +g1,11215:6303093,15299788 +(1,11215:6303093,15299788:0,0,0 +) +g1,11215:6630773,15299788 +) +g1,11217:7626635,15299788 +g1,11217:8954451,15299788 +h1,11217:11610082,15299788:0,0,0 +k1,11217:32583030,15299788:20972948 +g1,11217:32583030,15299788 +) +(1,11219:6630773,16115715:25952256,424439,79822 +(1,11218:6630773,16115715:0,0,0 +g1,11218:6630773,16115715 +g1,11218:6630773,16115715 +g1,11218:6303093,16115715 +(1,11218:6303093,16115715:0,0,0 +) +g1,11218:6630773,16115715 +) +k1,11219:6630773,16115715:0 +h1,11219:8622497,16115715:0,0,0 +k1,11219:32583029,16115715:23960532 +g1,11219:32583029,16115715 +) +(1,11223:6630773,16931642:25952256,424439,79822 +(1,11221:6630773,16931642:0,0,0 +g1,11221:6630773,16931642 +g1,11221:6630773,16931642 +g1,11221:6303093,16931642 +(1,11221:6303093,16931642:0,0,0 +) +g1,11221:6630773,16931642 +) +g1,11223:7626635,16931642 +g1,11223:8954451,16931642 +h1,11223:11610082,16931642:0,0,0 +k1,11223:32583030,16931642:20972948 +g1,11223:32583030,16931642 +) +(1,11225:6630773,17747569:25952256,424439,79822 +(1,11224:6630773,17747569:0,0,0 +g1,11224:6630773,17747569 +g1,11224:6630773,17747569 +g1,11224:6303093,17747569 +(1,11224:6303093,17747569:0,0,0 +) +g1,11224:6630773,17747569 +) +k1,11225:6630773,17747569:0 +h1,11225:9618359,17747569:0,0,0 +k1,11225:32583029,17747569:22964670 +g1,11225:32583029,17747569 +) +(1,11229:6630773,18563496:25952256,424439,79822 +(1,11227:6630773,18563496:0,0,0 +g1,11227:6630773,18563496 +g1,11227:6630773,18563496 +g1,11227:6303093,18563496 +(1,11227:6303093,18563496:0,0,0 +) +g1,11227:6630773,18563496 +) +g1,11229:7626635,18563496 +g1,11229:8954451,18563496 +h1,11229:9618359,18563496:0,0,0 +k1,11229:32583029,18563496:22964670 +g1,11229:32583029,18563496 +) +] +) +g1,11230:32583029,18643318 +g1,11230:6630773,18643318 +g1,11230:6630773,18643318 +g1,11230:32583029,18643318 +g1,11230:32583029,18643318 +) +h1,11230:6630773,18839926:0,0,0 +(1,11234:6630773,19705006:25952256,513147,134348 +h1,11233:6630773,19705006:983040,0,0 +g1,11233:8855064,19705006 +g1,11233:11715710,19705006 +g1,11233:12530977,19705006 +(1,11233:12530977,19705006:0,452978,115847 +r1,11291:14647802,19705006:2116825,568825,115847 +k1,11233:12530977,19705006:-2116825 +) +(1,11233:12530977,19705006:2116825,452978,115847 +k1,11233:12530977,19705006:3277 +h1,11233:14644525,19705006:0,411205,112570 +) +g1,11233:14847031,19705006 +g1,11233:15914612,19705006 +g1,11233:17105401,19705006 +g1,11233:19394573,19705006 +g1,11233:22289298,19705006 +(1,11233:22289298,19705006:0,452978,115847 +r1,11291:24054411,19705006:1765113,568825,115847 +k1,11233:22289298,19705006:-1765113 +) +(1,11233:22289298,19705006:1765113,452978,115847 +k1,11233:22289298,19705006:3277 +h1,11233:24051134,19705006:0,411205,112570 +) +g1,11233:24253640,19705006 +g1,11233:25846820,19705006 +(1,11233:25846820,19705006:0,414482,115847 +r1,11291:26205086,19705006:358266,530329,115847 +k1,11233:25846820,19705006:-358266 +) +(1,11233:25846820,19705006:358266,414482,115847 +k1,11233:25846820,19705006:3277 +h1,11233:26201809,19705006:0,411205,112570 +) +g1,11233:26404315,19705006 +g1,11233:27289706,19705006 +g1,11233:28259638,19705006 +k1,11234:32583029,19705006:1077393 +g1,11234:32583029,19705006 +) +(1,11236:6630773,20570086:25952256,513147,134348 +h1,11235:6630773,20570086:983040,0,0 +k1,11235:9033085,20570086:222585 +k1,11235:11951167,20570086:222586 +k1,11235:13042104,20570086:222585 +k1,11235:15646267,20570086:222585 +k1,11235:17724177,20570086:222586 +k1,11235:19079224,20570086:222585 +k1,11235:21431074,20570086:222585 +k1,11235:22933578,20570086:222586 +k1,11235:24175248,20570086:222585 +k1,11235:26640475,20570086:222585 +k1,11235:29120776,20570086:222586 +k1,11235:31873051,20570086:222585 +(1,11235:31873051,20570086:0,414482,115847 +r1,11291:32583029,20570086:709978,530329,115847 +k1,11235:31873051,20570086:-709978 +) +(1,11235:31873051,20570086:709978,414482,115847 +k1,11235:31873051,20570086:3277 +h1,11235:32579752,20570086:0,411205,112570 +) +k1,11235:32583029,20570086:0 +) +(1,11236:6630773,21435166:25952256,505283,134348 +k1,11235:8842555,21435166:201137 +k1,11235:9659730,21435166:201137 +k1,11235:10879952,21435166:201137 +k1,11235:12789613,21435166:201137 +k1,11235:14123212,21435166:201137 +k1,11235:16453614,21435166:201137 +k1,11235:18497623,21435166:201137 +k1,11235:19314797,21435166:201136 +k1,11235:20286637,21435166:201137 +(1,11235:20286637,21435166:0,414482,115847 +r1,11291:20996615,21435166:709978,530329,115847 +k1,11235:20286637,21435166:-709978 +) +(1,11235:20286637,21435166:709978,414482,115847 +k1,11235:20286637,21435166:3277 +h1,11235:20993338,21435166:0,411205,112570 +) +k1,11235:21197752,21435166:201137 +k1,11235:23136904,21435166:201137 +k1,11235:26290438,21435166:201137 +k1,11235:27688262,21435166:201137 +k1,11235:30565889,21435166:201137 +k1,11235:31298523,21435166:201137 +k1,11235:32583029,21435166:0 +) +(1,11236:6630773,22300246:25952256,513147,126483 +k1,11235:8786221,22300246:179538 +k1,11235:9884575,22300246:179539 +k1,11235:13089910,22300246:179538 +k1,11235:14415674,22300246:179539 +(1,11235:14415674,22300246:0,452978,115847 +r1,11291:16180787,22300246:1765113,568825,115847 +k1,11235:14415674,22300246:-1765113 +) +(1,11235:14415674,22300246:1765113,452978,115847 +k1,11235:14415674,22300246:3277 +h1,11235:16177510,22300246:0,411205,112570 +) +k1,11235:16533995,22300246:179538 +k1,11235:18368318,22300246:179539 +k1,11235:19079353,22300246:179538 +k1,11235:20068262,22300246:179539 +k1,11235:22330534,22300246:179538 +k1,11235:23161501,22300246:179539 +k1,11235:24813633,22300246:179538 +(1,11235:24813633,22300246:0,414482,115847 +r1,11291:25523611,22300246:709978,530329,115847 +k1,11235:24813633,22300246:-709978 +) +(1,11235:24813633,22300246:709978,414482,115847 +k1,11235:24813633,22300246:3277 +h1,11235:25520334,22300246:0,411205,112570 +) +k1,11235:25703150,22300246:179539 +k1,11235:27893333,22300246:179538 +k1,11235:28688910,22300246:179539 +k1,11235:29887533,22300246:179538 +k1,11235:32583029,22300246:0 +) +(1,11236:6630773,23165326:25952256,513147,7863 +g1,11235:7698354,23165326 +k1,11236:32583029,23165326:22329426 +g1,11236:32583029,23165326 +) +(1,11238:6630773,24030406:25952256,513147,134348 +h1,11237:6630773,24030406:983040,0,0 +k1,11237:9202368,24030406:207711 +k1,11237:11178897,24030406:207712 +k1,11237:12134374,24030406:207711 +k1,11237:16543599,24030406:207712 +k1,11237:17512838,24030406:207711 +k1,11237:19908142,24030406:207712 +k1,11237:20471713,24030406:207711 +k1,11237:22920755,24030406:207711 +k1,11237:26409199,24030406:207712 +(1,11237:26409199,24030406:0,452978,115847 +r1,11291:28877736,24030406:2468537,568825,115847 +k1,11237:26409199,24030406:-2468537 +) +(1,11237:26409199,24030406:2468537,452978,115847 +k1,11237:26409199,24030406:3277 +h1,11237:28874459,24030406:0,411205,112570 +) +k1,11237:29085447,24030406:207711 +k1,11237:29944587,24030406:207712 +k1,11237:31171383,24030406:207711 +k1,11238:32583029,24030406:0 +) +(1,11238:6630773,24895486:25952256,513147,134348 +k1,11237:8670544,24895486:156266 +k1,11237:9486102,24895486:156266 +k1,11237:10740096,24895486:156266 +k1,11237:13591859,24895486:156267 +k1,11237:14939570,24895486:156266 +k1,11237:17523290,24895486:156266 +k1,11237:18467954,24895486:156266 +k1,11237:21696548,24895486:156266 +k1,11237:22504242,24895486:156266 +k1,11237:23679593,24895486:156266 +k1,11237:24935553,24895486:156266 +k1,11237:25743248,24895486:156267 +(1,11237:25743248,24895486:0,452978,115847 +r1,11291:27508361,24895486:1765113,568825,115847 +k1,11237:25743248,24895486:-1765113 +) +(1,11237:25743248,24895486:1765113,452978,115847 +k1,11237:25743248,24895486:3277 +h1,11237:27505084,24895486:0,411205,112570 +) +k1,11237:27664627,24895486:156266 +k1,11237:29830882,24895486:156266 +k1,11237:31006233,24895486:156266 +k1,11237:32583029,24895486:0 +) +(1,11238:6630773,25760566:25952256,513147,134348 +k1,11237:7452140,25760566:154211 +(1,11237:7452140,25760566:0,452978,115847 +r1,11291:9217253,25760566:1765113,568825,115847 +k1,11237:7452140,25760566:-1765113 +) +(1,11237:7452140,25760566:1765113,452978,115847 +k1,11237:7452140,25760566:3277 +h1,11237:9213976,25760566:0,411205,112570 +) +k1,11237:9545134,25760566:154211 +k1,11237:12634048,25760566:154212 +k1,11237:13439687,25760566:154211 +k1,11237:15323393,25760566:154211 +k1,11237:18478498,25760566:154211 +k1,11237:20625659,25760566:154211 +k1,11237:22790516,25760566:154212 +k1,11237:23813079,25760566:154211 +k1,11237:25497556,25760566:154211 +k1,11237:26303195,25760566:154211 +k1,11237:28173140,25760566:154212 +k1,11237:29708195,25760566:154211 +(1,11237:29708195,25760566:0,414482,115847 +r1,11291:30418173,25760566:709978,530329,115847 +k1,11237:29708195,25760566:-709978 +) +(1,11237:29708195,25760566:709978,414482,115847 +k1,11237:29708195,25760566:3277 +h1,11237:30414896,25760566:0,411205,112570 +) +k1,11237:30572384,25760566:154211 +k1,11237:32583029,25760566:0 +) +(1,11238:6630773,26625646:25952256,513147,134348 +g1,11237:7821562,26625646 +g1,11237:9306607,26625646 +g1,11237:12281286,26625646 +g1,11237:14523272,26625646 +g1,11237:17527442,26625646 +g1,11237:18745756,26625646 +g1,11237:21430766,26625646 +g1,11237:22289287,26625646 +g1,11237:26560268,26625646 +g1,11237:28153448,26625646 +(1,11237:28153448,26625646:0,452978,122846 +r1,11291:30973697,26625646:2820249,575824,122846 +k1,11237:28153448,26625646:-2820249 +) +(1,11237:28153448,26625646:2820249,452978,122846 +k1,11237:28153448,26625646:3277 +h1,11237:30970420,26625646:0,411205,112570 +) +k1,11238:32583029,26625646:1435662 +g1,11238:32583029,26625646 +) +(1,11240:6630773,27490726:25952256,513147,134348 +h1,11239:6630773,27490726:983040,0,0 +k1,11239:8250683,27490726:149282 +k1,11239:11121070,27490726:149332 +k1,11239:12508377,27490726:149332 +k1,11239:13317001,27490726:149332 +k1,11239:17890013,27490726:149332 +k1,11239:19242586,27490726:149332 +k1,11239:20007956,27490726:149332 +k1,11239:21653475,27490726:149332 +k1,11239:22334304,27490726:149332 +k1,11239:23135064,27490726:149332 +k1,11239:25245233,27490726:149332 +k1,11239:26413650,27490726:149332 +k1,11239:29258478,27490726:149332 +k1,11239:30093972,27490726:149332 +k1,11240:32583029,27490726:0 +k1,11240:32583029,27490726:0 +) +v1,11242:6630773,28175581:0,393216,0 +(1,11251:6630773,31914115:25952256,4131750,196608 +g1,11251:6630773,31914115 +g1,11251:6630773,31914115 +g1,11251:6434165,31914115 +(1,11251:6434165,31914115:0,4131750,196608 +r1,11291:32779637,31914115:26345472,4328358,196608 +k1,11251:6434165,31914115:-26345472 +) +(1,11251:6434165,31914115:26345472,4131750,196608 +[1,11251:6630773,31914115:25952256,3935142,0 +(1,11244:6630773,28410018:25952256,431045,86428 +(1,11243:6630773,28410018:0,0,0 +g1,11243:6630773,28410018 +g1,11243:6630773,28410018 +g1,11243:6303093,28410018 +(1,11243:6303093,28410018:0,0,0 +) +g1,11243:6630773,28410018 +) +g1,11244:7958589,28410018 +g1,11244:8954451,28410018 +g1,11244:12937898,28410018 +g1,11244:15593530,28410018 +g1,11244:16257438,28410018 +g1,11244:18581116,28410018 +h1,11244:18913070,28410018:0,0,0 +k1,11244:32583029,28410018:13669959 +g1,11244:32583029,28410018 +) +(1,11245:6630773,29094873:25952256,431045,79822 +h1,11245:6630773,29094873:0,0,0 +g1,11245:6962727,29094873 +g1,11245:7958589,29094873 +g1,11245:11278128,29094873 +h1,11245:11610082,29094873:0,0,0 +k1,11245:32583030,29094873:20972948 +g1,11245:32583030,29094873 +) +(1,11246:6630773,29779728:25952256,424439,79822 +h1,11246:6630773,29779728:0,0,0 +g1,11246:6962727,29779728 +g1,11246:7294681,29779728 +g1,11246:7626635,29779728 +g1,11246:8290543,29779728 +g1,11246:9286405,29779728 +k1,11246:9286405,29779728:0 +h1,11246:12605945,29779728:0,0,0 +k1,11246:32583029,29779728:19977084 +g1,11246:32583029,29779728 +) +(1,11247:6630773,30464583:25952256,424439,79822 +h1,11247:6630773,30464583:0,0,0 +g1,11247:6962727,30464583 +h1,11247:7294681,30464583:0,0,0 +k1,11247:32583029,30464583:25288348 +g1,11247:32583029,30464583 +) +(1,11248:6630773,31149438:25952256,424439,112852 +h1,11248:6630773,31149438:0,0,0 +g1,11248:6962727,31149438 +k1,11248:6962727,31149438:0 +h1,11248:14265715,31149438:0,0,0 +k1,11248:32583029,31149438:18317314 +g1,11248:32583029,31149438 +) +(1,11249:6630773,31834293:25952256,424439,79822 +h1,11249:6630773,31834293:0,0,0 +h1,11249:6962727,31834293:0,0,0 +k1,11249:32583029,31834293:25620302 +g1,11249:32583029,31834293 +) +] +) +g1,11251:32583029,31914115 +g1,11251:6630773,31914115 +g1,11251:6630773,31914115 +g1,11251:32583029,31914115 +g1,11251:32583029,31914115 +) +h1,11251:6630773,32110723:0,0,0 +v1,11255:6630773,32795578:0,393216,0 +(1,11274:6630773,37182866:25952256,4780504,196608 +g1,11274:6630773,37182866 +g1,11274:6630773,37182866 +g1,11274:6434165,37182866 +(1,11274:6434165,37182866:0,4780504,196608 +r1,11291:32779637,37182866:26345472,4977112,196608 +k1,11274:6434165,37182866:-26345472 +) +(1,11274:6434165,37182866:26345472,4780504,196608 +[1,11274:6630773,37182866:25952256,4583896,0 +(1,11257:6630773,33023409:25952256,424439,79822 +(1,11256:6630773,33023409:0,0,0 +g1,11256:6630773,33023409 +g1,11256:6630773,33023409 +g1,11256:6303093,33023409 +(1,11256:6303093,33023409:0,0,0 +) +g1,11256:6630773,33023409 +) +k1,11257:6630773,33023409:0 +g1,11257:8622497,33023409 +g1,11257:9286405,33023409 +h1,11257:9950313,33023409:0,0,0 +k1,11257:32583029,33023409:22632716 +g1,11257:32583029,33023409 +) +(1,11261:6630773,33839336:25952256,424439,79822 +(1,11259:6630773,33839336:0,0,0 +g1,11259:6630773,33839336 +g1,11259:6630773,33839336 +g1,11259:6303093,33839336 +(1,11259:6303093,33839336:0,0,0 +) +g1,11259:6630773,33839336 +) +g1,11261:7626635,33839336 +g1,11261:8954451,33839336 +h1,11261:11610082,33839336:0,0,0 +k1,11261:32583030,33839336:20972948 +g1,11261:32583030,33839336 +) +(1,11263:6630773,34655263:25952256,424439,79822 +(1,11262:6630773,34655263:0,0,0 +g1,11262:6630773,34655263 +g1,11262:6630773,34655263 +g1,11262:6303093,34655263 +(1,11262:6303093,34655263:0,0,0 +) +g1,11262:6630773,34655263 +) +k1,11263:6630773,34655263:0 +g1,11263:8622497,34655263 +g1,11263:9286405,34655263 +h1,11263:10946175,34655263:0,0,0 +k1,11263:32583029,34655263:21636854 +g1,11263:32583029,34655263 +) +(1,11267:6630773,35471190:25952256,424439,79822 +(1,11265:6630773,35471190:0,0,0 +g1,11265:6630773,35471190 +g1,11265:6630773,35471190 +g1,11265:6303093,35471190 +(1,11265:6303093,35471190:0,0,0 +) +g1,11265:6630773,35471190 +) +g1,11267:7626635,35471190 +g1,11267:8954451,35471190 +h1,11267:9618359,35471190:0,0,0 +k1,11267:32583029,35471190:22964670 +g1,11267:32583029,35471190 +) +(1,11269:6630773,36287117:25952256,424439,86428 +(1,11268:6630773,36287117:0,0,0 +g1,11268:6630773,36287117 +g1,11268:6630773,36287117 +g1,11268:6303093,36287117 +(1,11268:6303093,36287117:0,0,0 +) +g1,11268:6630773,36287117 +) +k1,11269:6630773,36287117:0 +g1,11269:8622497,36287117 +g1,11269:9286405,36287117 +g1,11269:11278129,36287117 +g1,11269:13933761,36287117 +g1,11269:14597669,36287117 +h1,11269:16257439,36287117:0,0,0 +k1,11269:32583029,36287117:16325590 +g1,11269:32583029,36287117 +) +(1,11273:6630773,37103044:25952256,424439,79822 +(1,11271:6630773,37103044:0,0,0 +g1,11271:6630773,37103044 +g1,11271:6630773,37103044 +g1,11271:6303093,37103044 +(1,11271:6303093,37103044:0,0,0 +) +g1,11271:6630773,37103044 +) +g1,11273:7626635,37103044 +g1,11273:8954451,37103044 +h1,11273:11610082,37103044:0,0,0 +k1,11273:32583030,37103044:20972948 +g1,11273:32583030,37103044 +) +] +) +g1,11274:32583029,37182866 +g1,11274:6630773,37182866 +g1,11274:6630773,37182866 +g1,11274:32583029,37182866 +g1,11274:32583029,37182866 +) +h1,11274:6630773,37379474:0,0,0 +(1,11278:6630773,38244554:25952256,513147,134348 +h1,11277:6630773,38244554:983040,0,0 +k1,11277:8180796,38244554:152140 +k1,11277:9825894,38244554:152188 +k1,11277:11044352,38244554:152187 +k1,11277:13626614,38244554:152187 +k1,11277:14134661,38244554:152187 +k1,11277:16982344,38244554:152187 +k1,11277:18082183,38244554:152188 +k1,11277:21077977,38244554:152187 +k1,11277:23010777,38244554:152187 +k1,11277:23887792,38244554:152187 +k1,11277:25059064,38244554:152187 +k1,11277:27906748,38244554:152188 +k1,11277:29914259,38244554:152187 +k1,11277:30597943,38244554:152187 +k1,11278:32583029,38244554:0 +) +(1,11278:6630773,39109634:25952256,513147,134348 +k1,11277:7926092,39109634:168100 +k1,11277:10245083,39109634:168099 +k1,11277:11213378,39109634:168100 +k1,11277:12762322,39109634:168100 +k1,11277:15740605,39109634:168099 +k1,11277:16440202,39109634:168100 +k1,11277:19889034,39109634:168100 +k1,11277:21451084,39109634:168099 +k1,11277:22903690,39109634:168100 +k1,11277:23731082,39109634:168100 +k1,11277:27721896,39109634:168099 +k1,11277:30092006,39109634:168100 +k1,11277:32583029,39109634:0 +) +(1,11278:6630773,39974714:25952256,513147,126483 +g1,11277:10029470,39974714 +g1,11277:11182248,39974714 +g1,11277:12856692,39974714 +g1,11277:15021346,39974714 +g1,11277:15576435,39974714 +g1,11277:17058859,39974714 +g1,11277:18882726,39974714 +g1,11277:19733383,39974714 +g1,11277:20951697,39974714 +g1,11277:21565769,39974714 +g1,11277:25231853,39974714 +g1,11277:28215051,39974714 +g1,11277:29065708,39974714 +k1,11278:32583029,39974714:2598506 +g1,11278:32583029,39974714 +) +(1,11280:6630773,40839794:25952256,513147,134348 +h1,11279:6630773,40839794:983040,0,0 +k1,11279:8374634,40839794:132986 +k1,11279:9526705,40839794:132986 +k1,11279:12741848,40839794:132985 +k1,11279:13541990,40839794:132986 +(1,11279:13541990,40839794:0,452978,115847 +r1,11291:15307103,40839794:1765113,568825,115847 +k1,11279:13541990,40839794:-1765113 +) +(1,11279:13541990,40839794:1765113,452978,115847 +k1,11279:13541990,40839794:3277 +h1,11279:15303826,40839794:0,411205,112570 +) +k1,11279:15440089,40839794:132986 +k1,11279:16441427,40839794:132986 +k1,11279:17508955,40839794:132985 +k1,11279:17997801,40839794:132986 +k1,11279:20396367,40839794:132986 +k1,11279:23601681,40839794:132986 +k1,11279:24682317,40839794:132985 +k1,11279:28096035,40839794:132986 +(1,11279:28096035,40839794:0,452978,115847 +r1,11291:30564572,40839794:2468537,568825,115847 +k1,11279:28096035,40839794:-2468537 +) +(1,11279:28096035,40839794:2468537,452978,115847 +k1,11279:28096035,40839794:3277 +h1,11279:30561295,40839794:0,411205,112570 +) +k1,11279:30697558,40839794:132986 +k1,11279:32583029,40839794:0 +) +(1,11280:6630773,41704874:25952256,505283,134348 +g1,11279:7361499,41704874 +g1,11279:9073954,41704874 +g1,11279:11315940,41704874 +g1,11279:12534254,41704874 +g1,11279:14114327,41704874 +g1,11279:17210903,41704874 +g1,11279:19524979,41704874 +g1,11279:20494911,41704874 +g1,11279:23766468,41704874 +g1,11279:24617125,41704874 +g1,11279:26019595,41704874 +k1,11280:32583029,41704874:3109031 +g1,11280:32583029,41704874 +) +v1,11286:6630773,42569954:0,393216,0 +(1,11287:6630773,43833994:25952256,1657256,0 +g1,11287:6630773,43833994 +g1,11287:6237557,43833994 +r1,11291:6368629,43833994:131072,1657256,0 +g1,11287:6567858,43833994 +g1,11287:6764466,43833994 +[1,11287:6764466,43833994:25818563,1657256,0 +(1,11287:6764466,42842431:25818563,665693,196608 +(1,11286:6764466,42842431:0,665693,196608 +r1,11291:8010564,42842431:1246098,862301,196608 +k1,11286:6764466,42842431:-1246098 +) +(1,11286:6764466,42842431:1246098,665693,196608 +) +k1,11286:8199600,42842431:189036 +k1,11286:9517529,42842431:327680 +k1,11286:11749979,42842431:189037 +k1,11286:13397846,42842431:189036 +k1,11286:14917264,42842431:189037 +k1,11286:17801796,42842431:189036 +k1,11286:18642261,42842431:189037 +k1,11286:21639515,42842431:189036 +k1,11286:22847637,42842431:189037 +k1,11286:24774688,42842431:189036 +k1,11286:25579763,42842431:189037 +k1,11286:26124659,42842431:189036 +k1,11286:28515706,42842431:189037 +k1,11286:29942717,42842431:189036 +k1,11286:30817916,42842431:189037 +(1,11286:30817916,42842431:0,452978,115847 +r1,11291:32583029,42842431:1765113,568825,115847 +k1,11286:30817916,42842431:-1765113 +) +(1,11286:30817916,42842431:1765113,452978,115847 +k1,11286:30817916,42842431:3277 +h1,11286:32579752,42842431:0,411205,112570 +) +k1,11286:32583029,42842431:0 +) +(1,11287:6764466,43707511:25818563,513147,126483 +g1,11286:8170868,43707511 +g1,11286:10751675,43707511 +g1,11286:12979899,43707511 +g1,11286:14731021,43707511 +g1,11286:17625746,43707511 +(1,11286:17625746,43707511:0,452978,115847 +r1,11291:19390859,43707511:1765113,568825,115847 +k1,11286:17625746,43707511:-1765113 +) +(1,11286:17625746,43707511:1765113,452978,115847 +k1,11286:17625746,43707511:3277 +h1,11286:19387582,43707511:0,411205,112570 +) +g1,11286:19590088,43707511 +g1,11286:21558134,43707511 +g1,11286:22505129,43707511 +g1,11286:23363650,43707511 +k1,11287:32583029,43707511:7657656 +g1,11287:32583029,43707511 +) +] +g1,11287:32583029,43833994 +) +h1,11287:6630773,43833994:0,0,0 +(1,11290:6630773,44699074:25952256,505283,134348 +h1,11289:6630773,44699074:983040,0,0 +k1,11289:10982232,44699074:248250 +k1,11289:12334764,44699074:248250 +k1,11289:14058230,44699074:248251 +k1,11289:16089715,44699074:248250 +k1,11289:17988162,44699074:248250 +k1,11289:20922733,44699074:248250 +k1,11289:22362428,44699074:248250 +k1,11289:24469935,44699074:248251 +k1,11289:28131955,44699074:248250 +k1,11289:31896867,44699074:248250 +k1,11289:32583029,44699074:0 +) +(1,11290:6630773,45564154:25952256,513147,126483 +k1,11289:8430556,45564154:291144 +k1,11289:10298495,45564154:291143 +k1,11289:12032086,45564154:291144 +k1,11289:14067143,45564154:291144 +k1,11289:14974324,45564154:291143 +k1,11289:16284553,45564154:291144 +k1,11289:19567416,45564154:291144 +k1,11289:21887554,45564154:291143 +k1,11289:24273884,45564154:291144 +k1,11289:25335731,45564154:291144 +k1,11289:29240529,45564154:291143 +k1,11289:29887533,45564154:291144 +k1,11289:32583029,45564154:0 +) +] +(1,11291:32583029,45706769:0,0,0 +g1,11291:32583029,45706769 +) +) +] +(1,11291:6630773,47279633:25952256,0,0 +h1,11291:6630773,47279633:25952256,0,0 +) +] +(1,11291:4262630,4025873:0,0,0 +[1,11291:-473656,4025873:0,0,0 +(1,11291:-473656,-710413:0,0,0 +(1,11291:-473656,-710413:0,0,0 +g1,11291:-473656,-710413 +) +g1,11291:-473656,-710413 +) +] +) +] +!30084 +}180 +Input:1706:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1707:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!200 +{181 +[1,11393:4262630,47279633:28320399,43253760,0 +(1,11393:4262630,4025873:0,0,0 +[1,11393:-473656,4025873:0,0,0 +(1,11393:-473656,-710413:0,0,0 +(1,11393:-473656,-644877:0,0,0 +k1,11393:-473656,-644877:-65536 ) -(1,12012:-473656,4736287:0,0,0 -k1,12012:-473656,4736287:5209943 +(1,11393:-473656,4736287:0,0,0 +k1,11393:-473656,4736287:5209943 ) -g1,12012:-473656,-710413 +g1,11393:-473656,-710413 ) ] ) -[1,12012:6630773,47279633:25952256,43253760,0 -[1,12012:6630773,4812305:25952256,786432,0 -(1,12012:6630773,4812305:25952256,513147,126483 -(1,12012:6630773,4812305:25952256,513147,126483 -g1,12012:3078558,4812305 -[1,12012:3078558,4812305:0,0,0 -(1,12012:3078558,2439708:0,1703936,0 -k1,12012:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,12012:2537886,2439708:1179648,16384,0 +[1,11393:6630773,47279633:25952256,43253760,0 +[1,11393:6630773,4812305:25952256,786432,0 +(1,11393:6630773,4812305:25952256,505283,134348 +(1,11393:6630773,4812305:25952256,505283,134348 +g1,11393:3078558,4812305 +[1,11393:3078558,4812305:0,0,0 +(1,11393:3078558,2439708:0,1703936,0 +k1,11393:1358238,2439708:-1720320 +(1,11038:1358238,2439708:1720320,1703936,0 +(1,11038:1358238,2439708:1179648,16384,0 +r1,11393:2537886,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,12012:3078558,1915420:16384,1179648,0 +g1,11038:3062174,2439708 +(1,11038:3062174,2439708:16384,1703936,0 +[1,11038:3062174,2439708:25952256,1703936,0 +(1,11038:3062174,1915420:25952256,1179648,0 +(1,11038:3062174,1915420:16384,1179648,0 +r1,11393:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +k1,11038:29014430,1915420:25935872 +g1,11038:29014430,1915420 ) ] ) ) ) ] -[1,12012:3078558,4812305:0,0,0 -(1,12012:3078558,2439708:0,1703936,0 -g1,12012:29030814,2439708 -g1,12012:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,12012:36151628,1915420:16384,1179648,0 +[1,11393:3078558,4812305:0,0,0 +(1,11393:3078558,2439708:0,1703936,0 +g1,11393:29030814,2439708 +g1,11393:36135244,2439708 +(1,11038:36135244,2439708:1720320,1703936,0 +(1,11038:36135244,2439708:16384,1703936,0 +[1,11038:36135244,2439708:25952256,1703936,0 +(1,11038:36135244,1915420:25952256,1179648,0 +(1,11038:36135244,1915420:16384,1179648,0 +r1,11393:36151628,1915420:16384,1179648,0 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +k1,11038:62087500,1915420:25935872 +g1,11038:62087500,1915420 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,12012:37855564,2439708:1179648,16384,0 +g1,11038:36675916,2439708 +(1,11038:36675916,2439708:1179648,16384,0 +r1,11393:37855564,2439708:1179648,16384,0 ) ) -k1,12012:3078556,2439708:-34777008 +k1,11393:3078556,2439708:-34777008 ) ] -[1,12012:3078558,4812305:0,0,0 -(1,12012:3078558,49800853:0,16384,2228224 -k1,12012:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,12012:2537886,49800853:1179648,16384,0 +[1,11393:3078558,4812305:0,0,0 +(1,11393:3078558,49800853:0,16384,2228224 +k1,11393:1358238,49800853:-1720320 +(1,11038:1358238,49800853:1720320,16384,2228224 +(1,11038:1358238,49800853:1179648,16384,0 +r1,11393:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,12012:3078558,51504789:16384,1179648,0 +g1,11038:3062174,49800853 +(1,11038:3062174,52029077:16384,1703936,0 +[1,11038:3062174,52029077:25952256,1703936,0 +(1,11038:3062174,51504789:25952256,1179648,0 +(1,11038:3062174,51504789:16384,1179648,0 +r1,11393:3078558,51504789:16384,1179648,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 +k1,11038:29014430,51504789:25935872 +g1,11038:29014430,51504789 ) ] -) +) ) ) ] -[1,12012:3078558,4812305:0,0,0 -(1,12012:3078558,49800853:0,16384,2228224 -g1,12012:29030814,49800853 -g1,12012:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,12012:36151628,51504789:16384,1179648,0 +[1,11393:3078558,4812305:0,0,0 +(1,11393:3078558,49800853:0,16384,2228224 +g1,11393:29030814,49800853 +g1,11393:36135244,49800853 +(1,11038:36135244,49800853:1720320,16384,2228224 +(1,11038:36135244,52029077:16384,1703936,0 +[1,11038:36135244,52029077:25952256,1703936,0 +(1,11038:36135244,51504789:25952256,1179648,0 +(1,11038:36135244,51504789:16384,1179648,0 +r1,11393:36151628,51504789:16384,1179648,0 +) +k1,11038:62087500,51504789:25935872 +g1,11038:62087500,51504789 +) +] +) +g1,11038:36675916,49800853 +(1,11038:36675916,49800853:1179648,16384,0 +r1,11393:37855564,49800853:1179648,16384,0 ) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 ) -] +k1,11393:3078556,49800853:-34777008 +) +] +g1,11393:6630773,4812305 +k1,11393:23552825,4812305:15726675 +g1,11393:25175496,4812305 +g1,11393:25997972,4812305 +g1,11393:28481131,4812305 +g1,11393:30046786,4812305 +) +) +] +[1,11393:6630773,45706769:25952256,40108032,0 +(1,11393:6630773,45706769:25952256,40108032,0 +(1,11393:6630773,45706769:0,0,0 +g1,11393:6630773,45706769 +) +[1,11393:6630773,45706769:25952256,40108032,0 +(1,11290:6630773,6254097:25952256,513147,126483 +k1,11289:8634461,6254097:265673 +k1,11289:11653301,6254097:265673 +k1,11289:12680502,6254097:265673 +k1,11289:16800347,6254097:265673 +k1,11289:17597517,6254097:265673 +k1,11289:21453252,6254097:265673 +k1,11289:22405086,6254097:265672 +k1,11289:23026619,6254097:265673 +k1,11289:24391986,6254097:265673 +k1,11289:25309087,6254097:265673 +k1,11289:26593845,6254097:265673 +k1,11289:29728684,6254097:265673 +k1,11289:31191044,6254097:265673 +k1,11289:32583029,6254097:0 +) +(1,11290:6630773,7119177:25952256,513147,134348 +g1,11289:8568017,7119177 +g1,11289:9426538,7119177 +g1,11289:9981627,7119177 +g1,11289:12876352,7119177 +g1,11289:15402764,7119177 +g1,11289:17212213,7119177 +g1,11289:19442403,7119177 +g1,11289:20293060,7119177 +g1,11289:21280687,7119177 +k1,11290:32583029,7119177:8046513 +g1,11290:32583029,7119177 +) +(1,11292:6630773,7984257:25952256,513147,126483 +h1,11291:6630773,7984257:983040,0,0 +k1,11291:8760340,7984257:192978 +k1,11291:10259451,7984257:192978 +k1,11291:12034469,7984257:192979 +k1,11291:15647771,7984257:192978 +k1,11291:16859834,7984257:192978 +k1,11291:20134970,7984257:192978 +k1,11291:20987241,7984257:192979 +k1,11291:22277947,7984257:192978 +k1,11291:25166421,7984257:192978 +k1,11291:26927020,7984257:192978 +k1,11291:29153581,7984257:192979 +k1,11291:29962597,7984257:192978 +k1,11291:31358816,7984257:192978 +k1,11292:32583029,7984257:0 +) +(1,11292:6630773,8849337:25952256,473825,7863 +k1,11292:32583030,8849337:24511120 +g1,11292:32583030,8849337 +) +v1,11294:6630773,9534192:0,393216,0 +(1,11307:6630773,14667260:25952256,5526284,196608 +g1,11307:6630773,14667260 +g1,11307:6630773,14667260 +g1,11307:6434165,14667260 +(1,11307:6434165,14667260:0,5526284,196608 +r1,11393:32779637,14667260:26345472,5722892,196608 +k1,11307:6434165,14667260:-26345472 +) +(1,11307:6434165,14667260:26345472,5526284,196608 +[1,11307:6630773,14667260:25952256,5329676,0 +(1,11296:6630773,9635957:25952256,298373,6605 +(1,11295:6630773,9635957:0,0,0 +g1,11295:6630773,9635957 +g1,11295:6630773,9635957 +g1,11295:6303093,9635957 +(1,11295:6303093,9635957:0,0,0 +) +g1,11295:6630773,9635957 +) +h1,11296:7626635,9635957:0,0,0 +k1,11296:32583029,9635957:24956394 +g1,11296:32583029,9635957 +) +(1,11306:6630773,10451884:25952256,431045,86428 +(1,11298:6630773,10451884:0,0,0 +g1,11298:6630773,10451884 +g1,11298:6630773,10451884 +g1,11298:6303093,10451884 +(1,11298:6303093,10451884:0,0,0 +) +g1,11298:6630773,10451884 +) +g1,11306:7626635,10451884 +g1,11306:11610082,10451884 +g1,11306:14265714,10451884 +g1,11306:14929622,10451884 +g1,11306:17253300,10451884 +h1,11306:17585254,10451884:0,0,0 +k1,11306:32583029,10451884:14997775 +g1,11306:32583029,10451884 +) +(1,11306:6630773,11136739:25952256,431045,79822 +h1,11306:6630773,11136739:0,0,0 +g1,11306:7626635,11136739 +g1,11306:7958589,11136739 +g1,11306:8954451,11136739 +g1,11306:12273990,11136739 +h1,11306:12605944,11136739:0,0,0 +k1,11306:32583028,11136739:19977084 +g1,11306:32583028,11136739 +) +(1,11306:6630773,11821594:25952256,424439,79822 +h1,11306:6630773,11821594:0,0,0 +g1,11306:7626635,11821594 +g1,11306:7958589,11821594 +g1,11306:8290543,11821594 +g1,11306:8622497,11821594 +g1,11306:9286405,11821594 +g1,11306:10282267,11821594 +h1,11306:13601806,11821594:0,0,0 +k1,11306:32583030,11821594:18981224 +g1,11306:32583030,11821594 +) +(1,11306:6630773,12506449:25952256,424439,79822 +h1,11306:6630773,12506449:0,0,0 +g1,11306:7626635,12506449 +g1,11306:7958589,12506449 +h1,11306:8290543,12506449:0,0,0 +k1,11306:32583029,12506449:24292486 +g1,11306:32583029,12506449 +) +(1,11306:6630773,13191304:25952256,424439,112852 +h1,11306:6630773,13191304:0,0,0 +g1,11306:7626635,13191304 +g1,11306:7958589,13191304 +h1,11306:15261575,13191304:0,0,0 +k1,11306:32583029,13191304:17321454 +g1,11306:32583029,13191304 +) +(1,11306:6630773,13876159:25952256,424439,79822 +h1,11306:6630773,13876159:0,0,0 +g1,11306:7626635,13876159 +h1,11306:7958589,13876159:0,0,0 +k1,11306:32583029,13876159:24624440 +g1,11306:32583029,13876159 +) +(1,11306:6630773,14561014:25952256,431045,106246 +h1,11306:6630773,14561014:0,0,0 +g1,11306:7626635,14561014 +g1,11306:11278128,14561014 +k1,11306:11278128,14561014:0 +h1,11306:17585253,14561014:0,0,0 +k1,11306:32583029,14561014:14997776 +g1,11306:32583029,14561014 +) +] +) +g1,11307:32583029,14667260 +g1,11307:6630773,14667260 +g1,11307:6630773,14667260 +g1,11307:32583029,14667260 +g1,11307:32583029,14667260 +) +h1,11307:6630773,14863868:0,0,0 +(1,11311:6630773,15728948:25952256,513147,134348 +h1,11310:6630773,15728948:983040,0,0 +k1,11310:9331982,15728948:256716 +k1,11310:10457049,15728948:256715 +k1,11310:12295804,15728948:256716 +k1,11310:13571604,15728948:256715 +k1,11310:16910478,15728948:256716 +k1,11310:17834350,15728948:256716 +k1,11310:19009880,15728948:256715 +k1,11310:21079322,15728948:256716 +k1,11310:23323745,15728948:256716 +k1,11310:25515083,15728948:256715 +k1,11310:28467295,15728948:256716 +(1,11310:28467295,15728948:0,452978,115847 +r1,11393:29880696,15728948:1413401,568825,115847 +k1,11310:28467295,15728948:-1413401 +) +(1,11310:28467295,15728948:1413401,452978,115847 +k1,11310:28467295,15728948:3277 +h1,11310:29877419,15728948:0,411205,112570 +) +k1,11310:30311081,15728948:256715 +k1,11310:31923737,15728948:256716 +k1,11311:32583029,15728948:0 +) +(1,11311:6630773,16594028:25952256,505283,134348 +(1,11310:6630773,16594028:0,452978,115847 +r1,11393:8044174,16594028:1413401,568825,115847 +k1,11310:6630773,16594028:-1413401 +) +(1,11310:6630773,16594028:1413401,452978,115847 +k1,11310:6630773,16594028:3277 +h1,11310:8040897,16594028:0,411205,112570 +) +g1,11310:8243403,16594028 +g1,11310:8974129,16594028 +g1,11310:12263381,16594028 +g1,11310:13078648,16594028 +g1,11310:15556564,16594028 +h1,11310:16527152,16594028:0,0,0 +g1,11310:16726381,16594028 +g1,11310:17734980,16594028 +g1,11310:19432362,16594028 +h1,11310:20627739,16594028:0,0,0 +k1,11311:32583029,16594028:11574526 +g1,11311:32583029,16594028 +) +v1,11313:6630773,17278883:0,393216,0 +(1,11393:6630773,45510161:25952256,28624494,196608 +g1,11393:6630773,45510161 +g1,11393:6630773,45510161 +g1,11393:6434165,45510161 +(1,11393:6434165,45510161:0,28624494,196608 +r1,11393:32779637,45510161:26345472,28821102,196608 +k1,11393:6434165,45510161:-26345472 +) +(1,11393:6434165,45510161:26345472,28624494,196608 +[1,11393:6630773,45510161:25952256,28427886,0 +(1,11315:6630773,17506714:25952256,424439,0 +(1,11314:6630773,17506714:0,0,0 +g1,11314:6630773,17506714 +g1,11314:6630773,17506714 +g1,11314:6303093,17506714 +(1,11314:6303093,17506714:0,0,0 +) +g1,11314:6630773,17506714 +) +h1,11315:7294681,17506714:0,0,0 +k1,11315:32583029,17506714:25288348 +g1,11315:32583029,17506714 +) +(1,11392:6630773,18003109:25952256,431045,112852 +(1,11317:6630773,18003109:0,0,0 +g1,11317:6630773,18003109 +g1,11317:6630773,18003109 +g1,11317:6303093,18003109 +(1,11317:6303093,18003109:0,0,0 +) +g1,11317:6630773,18003109 +) +g1,11392:7626635,18003109 +g1,11392:10614220,18003109 +g1,11392:13933759,18003109 +g1,11392:15925483,18003109 +g1,11392:18581115,18003109 +g1,11392:21568701,18003109 +g1,11392:25220194,18003109 +g1,11392:27543872,18003109 +g1,11392:28207780,18003109 +k1,11392:28207780,18003109:0 +h1,11392:29867550,18003109:0,0,0 +k1,11392:32583029,18003109:2715479 +g1,11392:32583029,18003109 +) +(1,11392:6630773,18687964:25952256,424439,112852 +h1,11392:6630773,18687964:0,0,0 +g1,11392:7626635,18687964 +g1,11392:7958589,18687964 +g1,11392:8290543,18687964 +g1,11392:8622497,18687964 +g1,11392:8954451,18687964 +g1,11392:10946175,18687964 +g1,11392:11610083,18687964 +g1,11392:13601807,18687964 +g1,11392:14265715,18687964 +g1,11392:14929623,18687964 +g1,11392:17253301,18687964 +g1,11392:17917209,18687964 +g1,11392:18581117,18687964 +g1,11392:20904795,18687964 +g1,11392:21900657,18687964 +g1,11392:22564565,18687964 +g1,11392:24556289,18687964 +g1,11392:28539736,18687964 +g1,11392:29203644,18687964 +k1,11392:29203644,18687964:0 +h1,11392:30863414,18687964:0,0,0 +k1,11392:32583029,18687964:1719615 +g1,11392:32583029,18687964 +) +(1,11392:6630773,19372819:25952256,431045,86428 +h1,11392:6630773,19372819:0,0,0 +g1,11392:7626635,19372819 +g1,11392:7958589,19372819 +g1,11392:8290543,19372819 +g1,11392:8622497,19372819 +g1,11392:8954451,19372819 +g1,11392:12273990,19372819 +g1,11392:12937898,19372819 +g1,11392:14929622,19372819 +g1,11392:17585254,19372819 +h1,11392:18913070,19372819:0,0,0 +k1,11392:32583029,19372819:13669959 +g1,11392:32583029,19372819 +) +(1,11392:6630773,20057674:25952256,424439,79822 +h1,11392:6630773,20057674:0,0,0 +g1,11392:7626635,20057674 +h1,11392:7958589,20057674:0,0,0 +k1,11392:32583029,20057674:24624440 +g1,11392:32583029,20057674 +) +(1,11392:6630773,20742529:25952256,398014,6605 +h1,11392:6630773,20742529:0,0,0 +g1,11392:7626635,20742529 +g1,11392:7958589,20742529 +g1,11392:8290543,20742529 +g1,11392:8622497,20742529 +g1,11392:8954451,20742529 +g1,11392:10946175,20742529 +g1,11392:11942037,20742529 +h1,11392:12273991,20742529:0,0,0 +k1,11392:32583029,20742529:20309038 +g1,11392:32583029,20742529 +) +(1,11392:6630773,21427384:25952256,398014,106246 +h1,11392:6630773,21427384:0,0,0 +g1,11392:7626635,21427384 +g1,11392:7958589,21427384 +g1,11392:8290543,21427384 +g1,11392:8622497,21427384 +g1,11392:8954451,21427384 +g1,11392:10946175,21427384 +g1,11392:11942037,21427384 +h1,11392:12273991,21427384:0,0,0 +k1,11392:32583029,21427384:20309038 +g1,11392:32583029,21427384 +) +(1,11392:6630773,22112239:25952256,424439,79822 +h1,11392:6630773,22112239:0,0,0 +g1,11392:7626635,22112239 +g1,11392:7958589,22112239 +g1,11392:8290543,22112239 +g1,11392:8622497,22112239 +g1,11392:8954451,22112239 +g1,11392:9950313,22112239 +g1,11392:10946175,22112239 +h1,11392:14929622,22112239:0,0,0 +k1,11392:32583030,22112239:17653408 +g1,11392:32583030,22112239 +) +(1,11392:6630773,22797094:25952256,431045,106246 +h1,11392:6630773,22797094:0,0,0 +g1,11392:7626635,22797094 +g1,11392:7958589,22797094 +g1,11392:8290543,22797094 +g1,11392:8622497,22797094 +g1,11392:8954451,22797094 +g1,11392:9950313,22797094 +g1,11392:10946175,22797094 +g1,11392:18581115,22797094 +g1,11392:19245023,22797094 +h1,11392:21236747,22797094:0,0,0 +k1,11392:32583029,22797094:11346282 +g1,11392:32583029,22797094 +) +(1,11392:6630773,23481949:25952256,431045,112852 +h1,11392:6630773,23481949:0,0,0 +g1,11392:7626635,23481949 +g1,11392:7958589,23481949 +g1,11392:8290543,23481949 +g1,11392:8622497,23481949 +g1,11392:8954451,23481949 +g1,11392:9618359,23481949 +g1,11392:10614221,23481949 +g1,11392:16921346,23481949 +g1,11392:19576978,23481949 +g1,11392:22896517,23481949 +g1,11392:26548010,23481949 +k1,11392:26548010,23481949:0 +h1,11392:30531457,23481949:0,0,0 +k1,11392:32583029,23481949:2051572 +g1,11392:32583029,23481949 +) +(1,11392:6630773,24166804:25952256,431045,86428 +h1,11392:6630773,24166804:0,0,0 +g1,11392:7626635,24166804 +g1,11392:7958589,24166804 +g1,11392:8290543,24166804 +g1,11392:8622497,24166804 +g1,11392:8954451,24166804 +g1,11392:9286405,24166804 +g1,11392:9618359,24166804 +g1,11392:9950313,24166804 +g1,11392:10282267,24166804 +g1,11392:13933760,24166804 +g1,11392:17585253,24166804 +h1,11392:18581115,24166804:0,0,0 +k1,11392:32583029,24166804:14001914 +g1,11392:32583029,24166804 +) +(1,11392:6630773,24851659:25952256,431045,86428 +h1,11392:6630773,24851659:0,0,0 +g1,11392:7626635,24851659 +g1,11392:7958589,24851659 +g1,11392:8290543,24851659 +g1,11392:8622497,24851659 +g1,11392:8954451,24851659 +g1,11392:9950313,24851659 +g1,11392:10946175,24851659 +g1,11392:13933761,24851659 +h1,11392:14929623,24851659:0,0,0 +k1,11392:32583029,24851659:17653406 +g1,11392:32583029,24851659 +) +(1,11392:6630773,25536514:25952256,431045,106246 +h1,11392:6630773,25536514:0,0,0 +g1,11392:7626635,25536514 +g1,11392:7958589,25536514 +g1,11392:8290543,25536514 +g1,11392:8622497,25536514 +g1,11392:8954451,25536514 +g1,11392:16257437,25536514 +g1,11392:17253299,25536514 +h1,11392:18581115,25536514:0,0,0 +k1,11392:32583029,25536514:14001914 +g1,11392:32583029,25536514 +) +(1,11392:6630773,26221369:25952256,431045,106246 +h1,11392:6630773,26221369:0,0,0 +g1,11392:7626635,26221369 +g1,11392:7958589,26221369 +g1,11392:8290543,26221369 +g1,11392:8622497,26221369 +g1,11392:8954451,26221369 +g1,11392:11942036,26221369 +g1,11392:12937898,26221369 +h1,11392:21236746,26221369:0,0,0 +k1,11392:32583029,26221369:11346283 +g1,11392:32583029,26221369 +) +(1,11392:6630773,26906224:25952256,431045,106246 +h1,11392:6630773,26906224:0,0,0 +g1,11392:7626635,26906224 +g1,11392:7958589,26906224 +g1,11392:8290543,26906224 +g1,11392:8622497,26906224 +g1,11392:8954451,26906224 +g1,11392:9950313,26906224 +g1,11392:10946175,26906224 +g1,11392:13933761,26906224 +h1,11392:18913070,26906224:0,0,0 +k1,11392:32583029,26906224:13669959 +g1,11392:32583029,26906224 +) +(1,11392:6630773,27591079:25952256,431045,79822 +h1,11392:6630773,27591079:0,0,0 +g1,11392:7626635,27591079 +g1,11392:7958589,27591079 +g1,11392:8290543,27591079 +g1,11392:8622497,27591079 +g1,11392:8954451,27591079 +g1,11392:9950313,27591079 +g1,11392:12605945,27591079 +g1,11392:13601807,27591079 +h1,11392:18249162,27591079:0,0,0 +k1,11392:32583029,27591079:14333867 +g1,11392:32583029,27591079 +) +(1,11392:6630773,28275934:25952256,431045,79822 +h1,11392:6630773,28275934:0,0,0 +g1,11392:7626635,28275934 +g1,11392:7958589,28275934 +g1,11392:8290543,28275934 +g1,11392:8622497,28275934 +g1,11392:8954451,28275934 +g1,11392:9286405,28275934 +g1,11392:9618359,28275934 +g1,11392:9950313,28275934 +g1,11392:10282267,28275934 +h1,11392:13601806,28275934:0,0,0 +k1,11392:32583030,28275934:18981224 +g1,11392:32583030,28275934 +) +(1,11392:6630773,28960789:25952256,431045,106246 +h1,11392:6630773,28960789:0,0,0 +g1,11392:7626635,28960789 +g1,11392:7958589,28960789 +g1,11392:8290543,28960789 +g1,11392:8622497,28960789 +g1,11392:8954451,28960789 +g1,11392:10614221,28960789 +g1,11392:11610083,28960789 +g1,11392:14265715,28960789 +g1,11392:15261577,28960789 +h1,11392:16921347,28960789:0,0,0 +k1,11392:32583029,28960789:15661682 +g1,11392:32583029,28960789 +) +(1,11392:6630773,29645644:25952256,431045,112852 +h1,11392:6630773,29645644:0,0,0 +g1,11392:7626635,29645644 +g1,11392:7958589,29645644 +g1,11392:8290543,29645644 +g1,11392:8622497,29645644 +g1,11392:8954451,29645644 +g1,11392:9286405,29645644 +g1,11392:9618359,29645644 +g1,11392:9950313,29645644 +g1,11392:10282267,29645644 +g1,11392:18581115,29645644 +g1,11392:19245023,29645644 +g1,11392:20904793,29645644 +g1,11392:21900655,29645644 +g1,11392:23228471,29645644 +g1,11392:26879964,29645644 +g1,11392:28871688,29645644 +k1,11392:28871688,29645644:0 +h1,11392:30863412,29645644:0,0,0 +k1,11392:32583029,29645644:1719617 +g1,11392:32583029,29645644 +) +(1,11392:6630773,30330499:25952256,424439,86428 +h1,11392:6630773,30330499:0,0,0 +g1,11392:7626635,30330499 +g1,11392:7958589,30330499 +g1,11392:8290543,30330499 +g1,11392:8622497,30330499 +g1,11392:8954451,30330499 +g1,11392:9286405,30330499 +g1,11392:9618359,30330499 +g1,11392:9950313,30330499 +g1,11392:10282267,30330499 +g1,11392:10614221,30330499 +g1,11392:10946175,30330499 +g1,11392:11278129,30330499 +g1,11392:11610083,30330499 +g1,11392:14597669,30330499 +g1,11392:16921347,30330499 +g1,11392:17585255,30330499 +h1,11392:18581117,30330499:0,0,0 +k1,11392:32583029,30330499:14001912 +g1,11392:32583029,30330499 +) +(1,11392:6630773,31015354:25952256,431045,86428 +h1,11392:6630773,31015354:0,0,0 +g1,11392:7626635,31015354 +g1,11392:7958589,31015354 +g1,11392:8290543,31015354 +g1,11392:8622497,31015354 +g1,11392:8954451,31015354 +g1,11392:9950313,31015354 +g1,11392:10946175,31015354 +g1,11392:13933761,31015354 +h1,11392:16589392,31015354:0,0,0 +k1,11392:32583029,31015354:15993637 +g1,11392:32583029,31015354 +) +(1,11392:6630773,31700209:25952256,431045,106246 +h1,11392:6630773,31700209:0,0,0 +g1,11392:7626635,31700209 +g1,11392:7958589,31700209 +g1,11392:8290543,31700209 +g1,11392:8622497,31700209 +g1,11392:8954451,31700209 +g1,11392:9618359,31700209 +g1,11392:10614221,31700209 +g1,11392:16921346,31700209 +h1,11392:20240885,31700209:0,0,0 +k1,11392:32583029,31700209:12342144 +g1,11392:32583029,31700209 +) +(1,11392:6630773,32385064:25952256,431045,112852 +h1,11392:6630773,32385064:0,0,0 +g1,11392:7626635,32385064 +g1,11392:7958589,32385064 +g1,11392:8290543,32385064 +g1,11392:8622497,32385064 +g1,11392:8954451,32385064 +g1,11392:9618359,32385064 +g1,11392:10614221,32385064 +h1,11392:19908931,32385064:0,0,0 +k1,11392:32583029,32385064:12674098 +g1,11392:32583029,32385064 +) +(1,11392:6630773,33069919:25952256,431045,79822 +h1,11392:6630773,33069919:0,0,0 +g1,11392:7626635,33069919 +g1,11392:7958589,33069919 +g1,11392:8290543,33069919 +g1,11392:8622497,33069919 +g1,11392:8954451,33069919 +g1,11392:9950313,33069919 +g1,11392:14265714,33069919 +g1,11392:15261576,33069919 +h1,11392:20240885,33069919:0,0,0 +k1,11392:32583029,33069919:12342144 +g1,11392:32583029,33069919 +) +(1,11392:6630773,33754774:25952256,424439,112852 +h1,11392:6630773,33754774:0,0,0 +g1,11392:7626635,33754774 +g1,11392:7958589,33754774 +g1,11392:8290543,33754774 +g1,11392:8622497,33754774 +g1,11392:8954451,33754774 +g1,11392:9286405,33754774 +g1,11392:9618359,33754774 +g1,11392:9950313,33754774 +g1,11392:10282267,33754774 +g1,11392:15593531,33754774 +g1,11392:17253301,33754774 +g1,11392:18249163,33754774 +g1,11392:18913071,33754774 +g1,11392:21568703,33754774 +h1,11392:24224334,33754774:0,0,0 +k1,11392:32583029,33754774:8358695 +g1,11392:32583029,33754774 +) +(1,11392:6630773,34439629:25952256,431045,79822 +h1,11392:6630773,34439629:0,0,0 +g1,11392:7626635,34439629 +g1,11392:7958589,34439629 +g1,11392:8290543,34439629 +g1,11392:8622497,34439629 +g1,11392:8954451,34439629 +g1,11392:11278129,34439629 +g1,11392:12273991,34439629 +h1,11392:17585254,34439629:0,0,0 +k1,11392:32583029,34439629:14997775 +g1,11392:32583029,34439629 +) +(1,11392:6630773,35124484:25952256,424439,106246 +h1,11392:6630773,35124484:0,0,0 +g1,11392:7626635,35124484 +g1,11392:7958589,35124484 +g1,11392:8290543,35124484 +g1,11392:8622497,35124484 +g1,11392:8954451,35124484 +g1,11392:10282267,35124484 +g1,11392:11278129,35124484 +h1,11392:15261576,35124484:0,0,0 +k1,11392:32583028,35124484:17321452 +g1,11392:32583028,35124484 +) +(1,11392:6630773,35809339:25952256,431045,106246 +h1,11392:6630773,35809339:0,0,0 +g1,11392:7626635,35809339 +g1,11392:7958589,35809339 +g1,11392:8290543,35809339 +g1,11392:8622497,35809339 +g1,11392:8954451,35809339 +g1,11392:9950313,35809339 +g1,11392:10946175,35809339 +g1,11392:11942037,35809339 +h1,11392:13601807,35809339:0,0,0 +k1,11392:32583029,35809339:18981222 +g1,11392:32583029,35809339 +) +(1,11392:6630773,36494194:25952256,424439,106246 +h1,11392:6630773,36494194:0,0,0 +g1,11392:7626635,36494194 +g1,11392:7958589,36494194 +g1,11392:8290543,36494194 +g1,11392:8622497,36494194 +g1,11392:8954451,36494194 +g1,11392:9286405,36494194 +g1,11392:9618359,36494194 +g1,11392:9950313,36494194 +g1,11392:10282267,36494194 +h1,11392:12605945,36494194:0,0,0 +k1,11392:32583029,36494194:19977084 +g1,11392:32583029,36494194 +) +(1,11392:6630773,37179049:25952256,424439,112852 +h1,11392:6630773,37179049:0,0,0 +g1,11392:7626635,37179049 +g1,11392:7958589,37179049 +g1,11392:8290543,37179049 +g1,11392:8622497,37179049 +g1,11392:8954451,37179049 +g1,11392:10614221,37179049 +h1,11392:13601806,37179049:0,0,0 +k1,11392:32583030,37179049:18981224 +g1,11392:32583030,37179049 +) +(1,11392:6630773,37863904:25952256,431045,79822 +h1,11392:6630773,37863904:0,0,0 +g1,11392:7626635,37863904 +g1,11392:7958589,37863904 +g1,11392:8290543,37863904 +g1,11392:8622497,37863904 +g1,11392:8954451,37863904 +g1,11392:9950313,37863904 +g1,11392:16257438,37863904 +h1,11392:16589392,37863904:0,0,0 +k1,11392:32583029,37863904:15993637 +g1,11392:32583029,37863904 +) +(1,11392:6630773,38548759:25952256,431045,79822 +h1,11392:6630773,38548759:0,0,0 +g1,11392:7626635,38548759 +g1,11392:7958589,38548759 +g1,11392:8290543,38548759 +g1,11392:8622497,38548759 +g1,11392:8954451,38548759 +g1,11392:9286405,38548759 +g1,11392:9618359,38548759 +g1,11392:9950313,38548759 +g1,11392:10282267,38548759 +g1,11392:11278129,38548759 +h1,11392:13269853,38548759:0,0,0 +k1,11392:32583029,38548759:19313176 +g1,11392:32583029,38548759 +) +(1,11392:6630773,39233614:25952256,431045,79822 +h1,11392:6630773,39233614:0,0,0 +g1,11392:7626635,39233614 +g1,11392:7958589,39233614 +g1,11392:8290543,39233614 +g1,11392:8622497,39233614 +g1,11392:8954451,39233614 +g1,11392:9286405,39233614 +g1,11392:9618359,39233614 +g1,11392:9950313,39233614 +g1,11392:10282267,39233614 +g1,11392:10614221,39233614 +g1,11392:10946175,39233614 +g1,11392:11278129,39233614 +g1,11392:11610083,39233614 +g1,11392:13933761,39233614 +g1,11392:14929623,39233614 +h1,11392:20572840,39233614:0,0,0 +k1,11392:32583029,39233614:12010189 +g1,11392:32583029,39233614 +) +(1,11392:6630773,39918469:25952256,431045,106246 +h1,11392:6630773,39918469:0,0,0 +g1,11392:7626635,39918469 +g1,11392:7958589,39918469 +g1,11392:8290543,39918469 +g1,11392:8622497,39918469 +g1,11392:8954451,39918469 +g1,11392:9286405,39918469 +g1,11392:9618359,39918469 +g1,11392:9950313,39918469 +g1,11392:10282267,39918469 +g1,11392:11278129,39918469 +g1,11392:15925484,39918469 +g1,11392:16921346,39918469 +h1,11392:17917208,39918469:0,0,0 +k1,11392:32583029,39918469:14665821 +g1,11392:32583029,39918469 +) +(1,11392:6630773,40603324:25952256,431045,112852 +h1,11392:6630773,40603324:0,0,0 +k1,11392:7515984,40603324:221303 +k1,11392:7737287,40603324:221303 +k1,11392:7958590,40603324:221303 +k1,11392:8179893,40603324:221303 +k1,11392:8401196,40603324:221303 +k1,11392:8622499,40603324:221303 +k1,11392:8843802,40603324:221303 +k1,11392:9065105,40603324:221303 +k1,11392:9286408,40603324:221303 +k1,11392:9507711,40603324:221303 +k1,11392:9729014,40603324:221303 +k1,11392:9950317,40603324:221303 +k1,11392:10171620,40603324:221303 +k1,11392:17363955,40603324:221303 +k1,11392:18249166,40603324:221303 +k1,11392:20794147,40603324:221303 +k1,11392:21679358,40603324:221303 +k1,11392:22896523,40603324:221303 +k1,11392:25109550,40603324:221303 +k1,11392:26990623,40603324:221303 +k1,11392:27875834,40603324:221303 +k1,11392:30420815,40603324:221303 +k1,11392:31306026,40603324:221303 +k1,11392:31306026,40603324:0 +h1,11392:36285335,40603324:0,0,0 +k1,11392:36285335,40603324:0 +k1,11392:36285335,40603324:0 +) +(1,11392:6630773,41288179:25952256,431045,106246 +h1,11392:6630773,41288179:0,0,0 +g1,11392:7626635,41288179 +g1,11392:7958589,41288179 +g1,11392:8290543,41288179 +g1,11392:8622497,41288179 +g1,11392:8954451,41288179 +g1,11392:9286405,41288179 +g1,11392:9618359,41288179 +g1,11392:9950313,41288179 +g1,11392:10282267,41288179 +g1,11392:10614221,41288179 +g1,11392:10946175,41288179 +g1,11392:11278129,41288179 +g1,11392:11610083,41288179 +g1,11392:11942037,41288179 +g1,11392:12273991,41288179 +g1,11392:12605945,41288179 +g1,11392:12937899,41288179 +g1,11392:17585254,41288179 +g1,11392:19245024,41288179 +g1,11392:21568702,41288179 +g1,11392:22232610,41288179 +h1,11392:23228472,41288179:0,0,0 +k1,11392:32583029,41288179:9354557 +g1,11392:32583029,41288179 +) +(1,11392:6630773,41973034:25952256,424439,79822 +h1,11392:6630773,41973034:0,0,0 +g1,11392:7626635,41973034 +g1,11392:7958589,41973034 +g1,11392:8290543,41973034 +g1,11392:8622497,41973034 +g1,11392:8954451,41973034 +h1,11392:9286405,41973034:0,0,0 +k1,11392:32583029,41973034:23296624 +g1,11392:32583029,41973034 +) +(1,11392:6630773,42657889:25952256,431045,106246 +h1,11392:6630773,42657889:0,0,0 +g1,11392:7626635,42657889 +g1,11392:7958589,42657889 +g1,11392:8290543,42657889 +g1,11392:8622497,42657889 +g1,11392:8954451,42657889 +g1,11392:9950313,42657889 +g1,11392:16921346,42657889 +h1,11392:17253300,42657889:0,0,0 +k1,11392:32583029,42657889:15329729 +g1,11392:32583029,42657889 +) +(1,11392:6630773,43342744:25952256,398014,8257 +h1,11392:6630773,43342744:0,0,0 +g1,11392:7626635,43342744 +g1,11392:7958589,43342744 +g1,11392:8290543,43342744 +g1,11392:8622497,43342744 +g1,11392:8954451,43342744 +g1,11392:9286405,43342744 +g1,11392:9618359,43342744 +g1,11392:9950313,43342744 +g1,11392:10282267,43342744 +g1,11392:10946175,43342744 +g1,11392:11942037,43342744 +h1,11392:13269853,43342744:0,0,0 +k1,11392:32583029,43342744:19313176 +g1,11392:32583029,43342744 +) +(1,11392:6630773,44027599:25952256,431045,86428 +h1,11392:6630773,44027599:0,0,0 +g1,11392:7626635,44027599 +g1,11392:7958589,44027599 +g1,11392:8290543,44027599 +g1,11392:8622497,44027599 +g1,11392:8954451,44027599 +g1,11392:9286405,44027599 +g1,11392:9618359,44027599 +g1,11392:9950313,44027599 +g1,11392:10282267,44027599 +g1,11392:10946175,44027599 +g1,11392:11942037,44027599 +g1,11392:17917208,44027599 +g1,11392:18581116,44027599 +g1,11392:19576978,44027599 +g1,11392:21568702,44027599 +g1,11392:27211919,44027599 +k1,11392:27211919,44027599:0 +h1,11392:27875827,44027599:0,0,0 +k1,11392:32583029,44027599:4707202 +g1,11392:32583029,44027599 +) +(1,11392:6630773,44712454:25952256,431045,106246 +h1,11392:6630773,44712454:0,0,0 +g1,11392:7626635,44712454 +g1,11392:7958589,44712454 +g1,11392:8290543,44712454 +g1,11392:8622497,44712454 +g1,11392:8954451,44712454 +g1,11392:9286405,44712454 +g1,11392:9618359,44712454 +g1,11392:9950313,44712454 +g1,11392:10282267,44712454 +g1,11392:10614221,44712454 +g1,11392:10946175,44712454 +g1,11392:11278129,44712454 +g1,11392:11610083,44712454 +g1,11392:14597668,44712454 +g1,11392:16257438,44712454 +g1,11392:19908931,44712454 +g1,11392:23228470,44712454 +g1,11392:23892378,44712454 +g1,11392:24888240,44712454 +g1,11392:29535595,44712454 +g1,11392:30199503,44712454 +g1,11392:30863411,44712454 +h1,11392:31195365,44712454:0,0,0 +k1,11392:32583029,44712454:1387664 +g1,11392:32583029,44712454 +) +(1,11392:6630773,45397309:25952256,431045,112852 +h1,11392:6630773,45397309:0,0,0 +k1,11392:7589194,45397309:294513 +k1,11392:7883708,45397309:294514 +k1,11392:8178221,45397309:294513 +k1,11392:8472734,45397309:294513 +k1,11392:8767248,45397309:294514 +k1,11392:9061761,45397309:294513 +k1,11392:9356275,45397309:294514 +k1,11392:9650788,45397309:294513 +k1,11392:9945301,45397309:294513 +k1,11392:10239815,45397309:294514 +k1,11392:10534328,45397309:294513 +k1,11392:10828841,45397309:294513 +k1,11392:11123355,45397309:294514 +k1,11392:12081776,45397309:294513 +k1,11392:14699967,45397309:294513 +k1,11392:15326435,45397309:294514 +k1,11392:16284856,45397309:294513 +k1,11392:17907185,45397309:294513 +k1,11392:18533653,45397309:294514 +k1,11392:19824028,45397309:294513 +k1,11392:23770035,45397309:294514 +k1,11392:24396502,45397309:294513 +k1,11392:25354923,45397309:294513 +k1,11392:29964838,45397309:294514 +k1,11392:31919121,45397309:294513 +h1,11392:32583029,45397309:0,0,0 +k1,11392:32583029,45397309:0 +k1,11392:32583029,45397309:0 +) +] +) +g1,11393:32583029,45510161 +g1,11393:6630773,45510161 +g1,11393:6630773,45510161 +g1,11393:32583029,45510161 +g1,11393:32583029,45510161 +) +] +(1,11393:32583029,45706769:0,0,0 +g1,11393:32583029,45706769 +) +) +] +(1,11393:6630773,47279633:25952256,0,0 +h1,11393:6630773,47279633:25952256,0,0 +) +] +(1,11393:4262630,4025873:0,0,0 +[1,11393:-473656,4025873:0,0,0 +(1,11393:-473656,-710413:0,0,0 +(1,11393:-473656,-710413:0,0,0 +g1,11393:-473656,-710413 +) +g1,11393:-473656,-710413 +) +] +) +] +!29625 +}181 +Input:1708:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1709:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1710:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1711:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1712:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!482 +{182 +[1,11438:4262630,47279633:28320399,43253760,0 +(1,11438:4262630,4025873:0,0,0 +[1,11438:-473656,4025873:0,0,0 +(1,11438:-473656,-710413:0,0,0 +(1,11438:-473656,-644877:0,0,0 +k1,11438:-473656,-644877:-65536 +) +(1,11438:-473656,4736287:0,0,0 +k1,11438:-473656,4736287:5209943 +) +g1,11438:-473656,-710413 ) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,12012:37855564,49800853:1179648,16384,0 +] ) +[1,11438:6630773,47279633:25952256,43253760,0 +[1,11438:6630773,4812305:25952256,786432,0 +(1,11438:6630773,4812305:25952256,513147,134348 +(1,11438:6630773,4812305:25952256,513147,134348 +g1,11438:3078558,4812305 +[1,11438:3078558,4812305:0,0,0 +(1,11438:3078558,2439708:0,1703936,0 +k1,11438:1358238,2439708:-1720320 +(1,11038:1358238,2439708:1720320,1703936,0 +(1,11038:1358238,2439708:1179648,16384,0 +r1,11438:2537886,2439708:1179648,16384,0 ) -k1,12012:3078556,49800853:-34777008 -) -] -g1,12012:6630773,4812305 -k1,12012:19540057,4812305:11713907 -g1,12012:21162728,4812305 -g1,12012:21985204,4812305 -g1,12012:24539797,4812305 -g1,12012:25949476,4812305 -g1,12012:28728857,4812305 -g1,12012:29852144,4812305 +g1,11038:3062174,2439708 +(1,11038:3062174,2439708:16384,1703936,0 +[1,11038:3062174,2439708:25952256,1703936,0 +(1,11038:3062174,1915420:25952256,1179648,0 +(1,11038:3062174,1915420:16384,1179648,0 +r1,11438:3078558,1915420:16384,1179648,0 ) +k1,11038:29014430,1915420:25935872 +g1,11038:29014430,1915420 ) ] -[1,12012:6630773,45706769:25952256,40108032,0 -(1,12012:6630773,45706769:25952256,40108032,0 -(1,12012:6630773,45706769:0,0,0 -g1,12012:6630773,45706769 ) -[1,12012:6630773,45706769:25952256,40108032,0 -(1,11932:6630773,6254097:25952256,564462,139132 -(1,11932:6630773,6254097:2450326,534184,12975 -g1,11932:6630773,6254097 -g1,11932:9081099,6254097 ) -g1,11932:12118955,6254097 -g1,11932:14118721,6254097 -k1,11932:32583029,6254097:14360968 -g1,11932:32583029,6254097 -) -(1,11935:6630773,7488801:25952256,513147,134348 -k1,11934:7633430,7488801:173627 -k1,11934:9830808,7488801:173626 -k1,11934:10360295,7488801:173627 -k1,11934:12406941,7488801:173627 -k1,11934:14268775,7488801:173627 -k1,11934:16010022,7488801:173626 -k1,11934:17202734,7488801:173627 -k1,11934:21157788,7488801:173627 -k1,11934:23072707,7488801:173627 -k1,11934:24114685,7488801:173626 -k1,11934:25725517,7488801:173627 -k1,11934:26255004,7488801:173627 -k1,11934:28406508,7488801:173627 -k1,11934:29239426,7488801:173626 -k1,11934:31426319,7488801:173627 -k1,11934:32583029,7488801:0 -) -(1,11935:6630773,8330289:25952256,513147,134348 -g1,11934:7516164,8330289 -g1,11934:8486096,8330289 -g1,11934:11757653,8330289 -g1,11934:12904533,8330289 -(1,11934:12904533,8330289:0,414482,115847 -r1,12012:13262799,8330289:358266,530329,115847 -k1,11934:12904533,8330289:-358266 -) -(1,11934:12904533,8330289:358266,414482,115847 -k1,11934:12904533,8330289:3277 -h1,11934:13259522,8330289:0,411205,112570 -) -k1,11935:32583029,8330289:19146560 -g1,11935:32583029,8330289 -) -v1,11937:6630773,9520755:0,393216,0 -(1,11944:6630773,10470572:25952256,1343033,196608 -g1,11944:6630773,10470572 -g1,11944:6630773,10470572 -g1,11944:6434165,10470572 -(1,11944:6434165,10470572:0,1343033,196608 -r1,12012:32779637,10470572:26345472,1539641,196608 -k1,11944:6434165,10470572:-26345472 -) -(1,11944:6434165,10470572:26345472,1343033,196608 -[1,11944:6630773,10470572:25952256,1146425,0 -(1,11939:6630773,9728373:25952256,404226,82312 -(1,11938:6630773,9728373:0,0,0 -g1,11938:6630773,9728373 -g1,11938:6630773,9728373 -g1,11938:6303093,9728373 -(1,11938:6303093,9728373:0,0,0 -) -g1,11938:6630773,9728373 -) -k1,11939:6630773,9728373:0 -g1,11939:9159939,9728373 -g1,11939:9792231,9728373 -g1,11939:11372960,9728373 -g1,11939:12953689,9728373 -g1,11939:13585981,9728373 -g1,11939:14534419,9728373 -g1,11939:15482856,9728373 -g1,11939:16115148,9728373 -h1,11939:17379731,9728373:0,0,0 -k1,11939:32583029,9728373:15203298 -g1,11939:32583029,9728373 -) -(1,11943:6630773,10394551:25952256,404226,76021 -(1,11941:6630773,10394551:0,0,0 -g1,11941:6630773,10394551 -g1,11941:6630773,10394551 -g1,11941:6303093,10394551 -(1,11941:6303093,10394551:0,0,0 -) -g1,11941:6630773,10394551 -) -g1,11943:7579210,10394551 -g1,11943:8843793,10394551 -h1,11943:11689104,10394551:0,0,0 -k1,11943:32583028,10394551:20893924 -g1,11943:32583028,10394551 -) -] -) -g1,11944:32583029,10470572 -g1,11944:6630773,10470572 -g1,11944:6630773,10470572 -g1,11944:32583029,10470572 -g1,11944:32583029,10470572 -) -h1,11944:6630773,10667180:0,0,0 -(1,11948:6630773,12032956:25952256,505283,134348 -h1,11947:6630773,12032956:983040,0,0 -g1,11947:8642072,12032956 -g1,11947:10865053,12032956 -g1,11947:13735529,12032956 -g1,11947:15945403,12032956 -g1,11947:17012984,12032956 -g1,11947:18316495,12032956 -g1,11947:19952929,12032956 -g1,11947:20508018,12032956 -g1,11947:22731654,12032956 -g1,11947:24908760,12032956 -g1,11947:25794151,12032956 -g1,11947:26764083,12032956 -k1,11948:32583029,12032956:2572948 -g1,11948:32583029,12032956 -) -v1,11950:6630773,13223422:0,393216,0 -(1,11957:6630773,14179531:25952256,1349325,196608 -g1,11957:6630773,14179531 -g1,11957:6630773,14179531 -g1,11957:6434165,14179531 -(1,11957:6434165,14179531:0,1349325,196608 -r1,12012:32779637,14179531:26345472,1545933,196608 -k1,11957:6434165,14179531:-26345472 -) -(1,11957:6434165,14179531:26345472,1349325,196608 -[1,11957:6630773,14179531:25952256,1152717,0 -(1,11952:6630773,13437332:25952256,410518,107478 -(1,11951:6630773,13437332:0,0,0 -g1,11951:6630773,13437332 -g1,11951:6630773,13437332 -g1,11951:6303093,13437332 -(1,11951:6303093,13437332:0,0,0 -) -g1,11951:6630773,13437332 -) -k1,11952:6630773,13437332:0 -g1,11952:9159939,13437332 -g1,11952:9792231,13437332 -g1,11952:12637543,13437332 -g1,11952:13269835,13437332 -g1,11952:14534419,13437332 -g1,11952:15482856,13437332 -g1,11952:16115148,13437332 -g1,11952:17063586,13437332 -g1,11952:20541189,13437332 -g1,11952:21173481,13437332 -g1,11952:22438065,13437332 -g1,11952:24018794,13437332 -g1,11952:24651086,13437332 -g1,11952:25599524,13437332 -g1,11952:26547961,13437332 -g1,11952:27180253,13437332 -h1,11952:28444836,13437332:0,0,0 -k1,11952:32583029,13437332:4138193 -g1,11952:32583029,13437332 -) -(1,11956:6630773,14103510:25952256,404226,76021 -(1,11954:6630773,14103510:0,0,0 -g1,11954:6630773,14103510 -g1,11954:6630773,14103510 -g1,11954:6303093,14103510 -(1,11954:6303093,14103510:0,0,0 -) -g1,11954:6630773,14103510 -) -g1,11956:7579210,14103510 -g1,11956:8843793,14103510 -g1,11956:12953687,14103510 -g1,11956:17063581,14103510 -g1,11956:21173475,14103510 -g1,11956:25283369,14103510 -h1,11956:29077117,14103510:0,0,0 -k1,11956:32583029,14103510:3505912 -g1,11956:32583029,14103510 -) -] -) -g1,11957:32583029,14179531 -g1,11957:6630773,14179531 -g1,11957:6630773,14179531 -g1,11957:32583029,14179531 -g1,11957:32583029,14179531 -) -h1,11957:6630773,14376139:0,0,0 -(1,11961:6630773,15741915:25952256,513147,126483 -h1,11960:6630773,15741915:983040,0,0 -k1,11960:9288834,15741915:195873 -k1,11960:10281625,15741915:195873 -k1,11960:12771258,15741915:195873 -k1,11960:15175694,15741915:195873 -k1,11960:17382212,15741915:195873 -k1,11960:18525736,15741915:195873 -$1,11960:18525736,15741915 -$1,11960:19028397,15741915 -k1,11960:19224270,15741915:195873 -k1,11960:20288495,15741915:195873 -k1,11960:21588650,15741915:195873 -k1,11960:23061820,15741915:195873 -k1,11960:23613553,15741915:195873 -k1,11960:24977933,15741915:195873 -(1,11960:25185027,15741915:0,452978,115847 -r1,12012:28708699,15741915:3523672,568825,115847 -k1,11960:25185027,15741915:-3523672 -) -(1,11960:25185027,15741915:3523672,452978,115847 -g1,11960:26946863,15741915 -g1,11960:27650287,15741915 -h1,11960:28705422,15741915:0,411205,112570 -) -k1,11960:29111666,15741915:195873 -k1,11960:30592045,15741915:195873 -k1,11960:32583029,15741915:0 -) -(1,11961:6630773,16583403:25952256,513147,134348 -k1,11960:8121343,16583403:206064 -k1,11960:9346492,16583403:206064 -k1,11960:10349474,16583403:206064 -k1,11960:13708475,16583403:206064 -k1,11960:15303902,16583403:206064 -k1,11960:17528475,16583403:206064 -k1,11960:19014456,16583403:206063 -k1,11960:20239605,16583403:206064 -k1,11960:22812829,16583403:206064 -k1,11960:23678185,16583403:206064 -k1,11960:24240109,16583403:206064 -k1,11960:28016574,16583403:206064 -k1,11960:30137600,16583403:206064 -k1,11960:31297213,16583403:206064 -k1,11960:32583029,16583403:0 -) -(1,11961:6630773,17424891:25952256,513147,134348 -g1,11960:8027345,17424891 -g1,11960:8582434,17424891 -g1,11960:10469870,17424891 -g1,11960:13320030,17424891 -g1,11960:14538344,17424891 -g1,11960:16417916,17424891 -g1,11960:17564796,17424891 -$1,11960:17564796,17424891 -g1,11960:18249517,17424891 -g1,11960:18999774,17424891 -$1,11960:19986091,17424891 -g1,11960:20185320,17424891 -g1,11960:23613508,17424891 -k1,11961:32583029,17424891:6940526 -g1,11961:32583029,17424891 -) -v1,11963:6630773,18615357:0,393216,0 -(1,11972:6630773,22261344:25952256,4039203,196608 -g1,11972:6630773,22261344 -g1,11972:6630773,22261344 -g1,11972:6434165,22261344 -(1,11972:6434165,22261344:0,4039203,196608 -r1,12012:32779637,22261344:26345472,4235811,196608 -k1,11972:6434165,22261344:-26345472 -) -(1,11972:6434165,22261344:26345472,4039203,196608 -[1,11972:6630773,22261344:25952256,3842595,0 -(1,11965:6630773,18829267:25952256,410518,107478 -(1,11964:6630773,18829267:0,0,0 -g1,11964:6630773,18829267 -g1,11964:6630773,18829267 -g1,11964:6303093,18829267 -(1,11964:6303093,18829267:0,0,0 -) -g1,11964:6630773,18829267 -) -g1,11965:8211502,18829267 -g1,11965:9159940,18829267 -g1,11965:12005252,18829267 -g1,11965:12637544,18829267 -g1,11965:13902128,18829267 -g1,11965:14850565,18829267 -g1,11965:15482857,18829267 -g1,11965:16431295,18829267 -g1,11965:19908898,18829267 -g1,11965:20541190,18829267 -h1,11965:21489627,18829267:0,0,0 -k1,11965:32583029,18829267:11093402 -g1,11965:32583029,18829267 -) -(1,11966:6630773,19495445:25952256,0,0 -h1,11966:6630773,19495445:0,0,0 -h1,11966:6630773,19495445:0,0,0 -k1,11966:32583029,19495445:25952256 -g1,11966:32583029,19495445 -) -(1,11967:6630773,20161623:25952256,410518,101187 -h1,11967:6630773,20161623:0,0,0 -g1,11967:9159939,20161623 -g1,11967:10108377,20161623 -g1,11967:14218272,20161623 -g1,11967:14850564,20161623 -k1,11967:14850564,20161623:0 -h1,11967:16431293,20161623:0,0,0 -k1,11967:32583029,20161623:16151736 -g1,11967:32583029,20161623 -) -(1,11968:6630773,20827801:25952256,404226,101187 -h1,11968:6630773,20827801:0,0,0 -g1,11968:6946919,20827801 -g1,11968:7263065,20827801 -g1,11968:7579211,20827801 -g1,11968:7895357,20827801 -g1,11968:8211503,20827801 -g1,11968:8527649,20827801 -g1,11968:8843795,20827801 -g1,11968:9159941,20827801 -g1,11968:9476087,20827801 -g1,11968:9792233,20827801 -g1,11968:10108379,20827801 -g1,11968:10424525,20827801 -g1,11968:10740671,20827801 -g1,11968:11056817,20827801 -g1,11968:11372963,20827801 -g1,11968:11689109,20827801 -g1,11968:12005255,20827801 -g1,11968:12321401,20827801 -g1,11968:12637547,20827801 -g1,11968:12953693,20827801 -g1,11968:13269839,20827801 -g1,11968:13585985,20827801 -g1,11968:14218277,20827801 -g1,11968:14850569,20827801 -g1,11968:17379735,20827801 -g1,11968:18012027,20827801 -g1,11968:19908902,20827801 -g1,11968:21489631,20827801 -g1,11968:22121923,20827801 -g1,11968:23070361,20827801 -g1,11968:24018798,20827801 -g1,11968:24651090,20827801 -h1,11968:26231818,20827801:0,0,0 -k1,11968:32583029,20827801:6351211 -g1,11968:32583029,20827801 -) -(1,11969:6630773,21493979:25952256,404226,101187 -h1,11969:6630773,21493979:0,0,0 -g1,11969:9792231,21493979 -g1,11969:11372960,21493979 -g1,11969:12005252,21493979 -g1,11969:14850564,21493979 -g1,11969:16431293,21493979 -g1,11969:17063585,21493979 -h1,11969:18328168,21493979:0,0,0 -k1,11969:32583029,21493979:14254861 -g1,11969:32583029,21493979 -) -(1,11970:6630773,22160157:25952256,404226,101187 -h1,11970:6630773,22160157:0,0,0 -g1,11970:9476085,22160157 -g1,11970:10108377,22160157 -g1,11970:11689106,22160157 -g1,11970:12321398,22160157 -g1,11970:12953690,22160157 -g1,11970:15482856,22160157 -g1,11970:16115148,22160157 -g1,11970:17695877,22160157 -g1,11970:19276606,22160157 -g1,11970:19908898,22160157 -g1,11970:20857336,22160157 -g1,11970:21805773,22160157 -g1,11970:22438065,22160157 -h1,11970:24018793,22160157:0,0,0 -k1,11970:32583029,22160157:8564236 -g1,11970:32583029,22160157 -) -] -) -g1,11972:32583029,22261344 -g1,11972:6630773,22261344 -g1,11972:6630773,22261344 -g1,11972:32583029,22261344 -g1,11972:32583029,22261344 -) -h1,11972:6630773,22457952:0,0,0 -(1,11975:6630773,37061760:25952256,14013984,0 -k1,11975:12599879,37061760:5969106 -h1,11974:12599879,37061760:0,0,0 -(1,11974:12599879,37061760:14014044,14013984,0 -(1,11974:12599879,37061760:14014019,14014019,0 -(1,11974:12599879,37061760:14014019,14014019,0 -(1,11974:12599879,37061760:0,14014019,0 -(1,11974:12599879,37061760:0,18945146,0 -(1,11974:12599879,37061760:18945146,18945146,0 -) -k1,11974:12599879,37061760:-18945146 -) -) -g1,11974:26613898,37061760 -) -) -) -g1,11975:26613923,37061760 -k1,11975:32583029,37061760:5969106 -) -(1,11981:6630773,39153020:25952256,564462,139132 -(1,11981:6630773,39153020:2450326,534184,12975 -g1,11981:6630773,39153020 -g1,11981:9081099,39153020 -) -g1,11981:13850548,39153020 -g1,11981:15850314,39153020 -g1,11981:20178574,39153020 -g1,11981:21745802,39153020 -k1,11981:32583029,39153020:7500199 -g1,11981:32583029,39153020 -) -(1,11985:6630773,40387724:25952256,513147,138281 -k1,11984:7293529,40387724:184999 -k1,11984:8346880,40387724:184999 -k1,11984:10007093,40387724:184998 -k1,11984:10547952,40387724:184999 -k1,11984:12870735,40387724:184999 -k1,11984:15656203,40387724:184999 -k1,11984:17521544,40387724:184998 -k1,11984:18574895,40387724:184999 -k1,11984:19864176,40387724:184999 -k1,11984:21435917,40387724:184999 -k1,11984:22456500,40387724:184999 -k1,11984:23660583,40387724:184998 -k1,11984:28469147,40387724:184999 -$1,11984:28469147,40387724 -$1,11984:28937074,40387724 -k1,11984:31015408,40387724:184999 -k1,11984:32583029,40387724:0 -) -(1,11985:6630773,41229212:25952256,505283,134348 -k1,11984:7846553,41229212:196695 -k1,11984:10399267,41229212:196695 -k1,11984:14551061,41229212:196696 -k1,11984:15817304,41229212:196695 -k1,11984:17033084,41229212:196695 -k1,11984:18577199,41229212:196695 -k1,11984:20660020,41229212:196695 -k1,11984:21875801,41229212:196696 -k1,11984:23987458,41229212:196695 -k1,11984:26040133,41229212:196695 -k1,11984:26888256,41229212:196695 -k1,11984:28104036,41229212:196695 -k1,11984:29836241,41229212:196696 -k1,11984:30715821,41229212:196695 -k1,11984:31563944,41229212:196695 -k1,11984:32583029,41229212:0 -) -(1,11985:6630773,42070700:25952256,513147,134348 -k1,11984:7982730,42070700:277822 -k1,11984:8919844,42070700:277822 -k1,11984:9553527,42070700:277823 -k1,11984:11526110,42070700:277822 -k1,11984:13484275,42070700:277822 -k1,11984:14421389,42070700:277822 -$1,11984:14421389,42070700 -$1,11984:14924050,42070700 -k1,11984:15375543,42070700:277823 -k1,11984:17436600,42070700:277822 -k1,11984:20301128,42070700:277822 -k1,11984:21972901,42070700:277822 -k1,11984:26496146,42070700:277823 -k1,11984:27793053,42070700:277822 -k1,11984:30845014,42070700:277822 -k1,11984:32583029,42070700:0 -) -(1,11985:6630773,42912188:25952256,513147,126483 -k1,11984:8053143,42912188:230925 -k1,11984:11127675,42912188:230925 -k1,11984:14308375,42912188:230925 -k1,11984:15530860,42912188:230925 -k1,11984:16377823,42912188:230925 -k1,11984:18210448,42912188:230925 -k1,11984:20138755,42912188:230925 -k1,11984:23578323,42912188:230925 -k1,11984:25376869,42912188:230925 -k1,11984:26626879,42912188:230925 -k1,11984:28511277,42912188:230925 -k1,11984:32583029,42912188:0 -) -(1,11985:6630773,43753676:25952256,513147,126483 -k1,11984:8775766,43753676:258867 -k1,11984:10053718,43753676:258867 -k1,11984:11552526,43753676:258867 -k1,11984:15457161,43753676:258867 -k1,11984:16343863,43753676:258867 -k1,11984:17621815,43753676:258867 -k1,11984:20542100,43753676:258868 -k1,11984:22843069,43753676:258867 -k1,11984:23970288,43753676:258867 -k1,11984:25321640,43753676:258867 -k1,11984:28340883,43753676:258867 -k1,11984:30610395,43753676:258867 -k1,11984:31816913,43753676:258867 -k1,11984:32583029,43753676:0 -) -(1,11985:6630773,44595164:25952256,505283,126483 -g1,11984:10441036,44595164 -(1,11984:10441036,44595164:0,414482,115847 -r1,12012:10799302,44595164:358266,530329,115847 -k1,11984:10441036,44595164:-358266 -) -(1,11984:10441036,44595164:358266,414482,115847 -k1,11984:10441036,44595164:3277 -h1,11984:10796025,44595164:0,411205,112570 -) -g1,11984:11172201,44595164 -g1,11984:12390515,44595164 -g1,11984:15363883,44595164 -(1,11984:15363883,44595164:0,414482,115847 -r1,12012:16777284,44595164:1413401,530329,115847 -k1,11984:15363883,44595164:-1413401 -) -(1,11984:15363883,44595164:1413401,414482,115847 -k1,11984:15363883,44595164:3277 -h1,11984:16774007,44595164:0,411205,112570 -) -g1,11984:17150183,44595164 -g1,11984:18540857,44595164 -(1,11984:18540857,44595164:0,452978,115847 -r1,12012:19250835,44595164:709978,568825,115847 -k1,11984:18540857,44595164:-709978 -) -(1,11984:18540857,44595164:709978,452978,115847 -k1,11984:18540857,44595164:3277 -h1,11984:19247558,44595164:0,411205,112570 -) -g1,11984:19623734,44595164 -g1,11984:20842048,44595164 -g1,11984:23884884,44595164 -k1,11985:32583029,44595164:5574699 -g1,11985:32583029,44595164 -) -v1,11987:6630773,45785630:0,393216,0 -] -(1,12012:32583029,45706769:0,0,0 -g1,12012:32583029,45706769 -) -) -] -(1,12012:6630773,47279633:25952256,0,0 -h1,12012:6630773,47279633:25952256,0,0 -) -] -(1,12012:4262630,4025873:0,0,0 -[1,12012:-473656,4025873:0,0,0 -(1,12012:-473656,-710413:0,0,0 -(1,12012:-473656,-710413:0,0,0 -g1,12012:-473656,-710413 -) -g1,12012:-473656,-710413 -) -] -) -] -!18873 -}205 -Input:1778:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1779:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1780:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1781:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1782:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1783:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!576 -{206 -[1,12082:4262630,47279633:28320399,43253760,0 -(1,12082:4262630,4025873:0,0,0 -[1,12082:-473656,4025873:0,0,0 -(1,12082:-473656,-710413:0,0,0 -(1,12082:-473656,-644877:0,0,0 -k1,12082:-473656,-644877:-65536 ) -(1,12082:-473656,4736287:0,0,0 -k1,12082:-473656,4736287:5209943 +] +[1,11438:3078558,4812305:0,0,0 +(1,11438:3078558,2439708:0,1703936,0 +g1,11438:29030814,2439708 +g1,11438:36135244,2439708 +(1,11038:36135244,2439708:1720320,1703936,0 +(1,11038:36135244,2439708:16384,1703936,0 +[1,11038:36135244,2439708:25952256,1703936,0 +(1,11038:36135244,1915420:25952256,1179648,0 +(1,11038:36135244,1915420:16384,1179648,0 +r1,11438:36151628,1915420:16384,1179648,0 ) -g1,12082:-473656,-710413 +k1,11038:62087500,1915420:25935872 +g1,11038:62087500,1915420 ) ] ) -[1,12082:6630773,47279633:25952256,43253760,0 -[1,12082:6630773,4812305:25952256,786432,0 -(1,12082:6630773,4812305:25952256,505283,11795 -(1,12082:6630773,4812305:25952256,505283,11795 -g1,12082:3078558,4812305 -[1,12082:3078558,4812305:0,0,0 -(1,12082:3078558,2439708:0,1703936,0 -k1,12082:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,12082:2537886,2439708:1179648,16384,0 +g1,11038:36675916,2439708 +(1,11038:36675916,2439708:1179648,16384,0 +r1,11438:37855564,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,12082:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +k1,11438:3078556,2439708:-34777008 ) ] +[1,11438:3078558,4812305:0,0,0 +(1,11438:3078558,49800853:0,16384,2228224 +k1,11438:1358238,49800853:-1720320 +(1,11038:1358238,49800853:1720320,16384,2228224 +(1,11038:1358238,49800853:1179648,16384,0 +r1,11438:2537886,49800853:1179648,16384,0 ) +g1,11038:3062174,49800853 +(1,11038:3062174,52029077:16384,1703936,0 +[1,11038:3062174,52029077:25952256,1703936,0 +(1,11038:3062174,51504789:25952256,1179648,0 +(1,11038:3062174,51504789:16384,1179648,0 +r1,11438:3078558,51504789:16384,1179648,0 ) +k1,11038:29014430,51504789:25935872 +g1,11038:29014430,51504789 +) +] +) +) +) +] +[1,11438:3078558,4812305:0,0,0 +(1,11438:3078558,49800853:0,16384,2228224 +g1,11438:29030814,49800853 +g1,11438:36135244,49800853 +(1,11038:36135244,49800853:1720320,16384,2228224 +(1,11038:36135244,52029077:16384,1703936,0 +[1,11038:36135244,52029077:25952256,1703936,0 +(1,11038:36135244,51504789:25952256,1179648,0 +(1,11038:36135244,51504789:16384,1179648,0 +r1,11438:36151628,51504789:16384,1179648,0 +) +k1,11038:62087500,51504789:25935872 +g1,11038:62087500,51504789 +) +] +) +g1,11038:36675916,49800853 +(1,11038:36675916,49800853:1179648,16384,0 +r1,11438:37855564,49800853:1179648,16384,0 +) +) +k1,11438:3078556,49800853:-34777008 +) +] +g1,11438:6630773,4812305 +g1,11438:6630773,4812305 +g1,11438:9499939,4812305 +g1,11438:12584718,4812305 +g1,11438:13994397,4812305 +g1,11438:17201073,4812305 +k1,11438:31387652,4812305:14186579 +) +) +] +[1,11438:6630773,45706769:25952256,40108032,0 +(1,11438:6630773,45706769:25952256,40108032,0 +(1,11438:6630773,45706769:0,0,0 +g1,11438:6630773,45706769 +) +[1,11438:6630773,45706769:25952256,40108032,0 +v1,11393:6630773,6254097:0,393216,0 +(1,11393:6630773,28503534:25952256,22642653,196608 +g1,11393:6630773,28503534 +g1,11393:6630773,28503534 +g1,11393:6434165,28503534 +(1,11393:6434165,28503534:0,22642653,196608 +r1,11438:32779637,28503534:26345472,22839261,196608 +k1,11393:6434165,28503534:-26345472 +) +(1,11393:6434165,28503534:26345472,22642653,196608 +[1,11393:6630773,28503534:25952256,22446045,0 +(1,11392:6630773,6481928:25952256,424439,106246 +h1,11392:6630773,6481928:0,0,0 +g1,11392:7626635,6481928 +g1,11392:7958589,6481928 +g1,11392:8290543,6481928 +g1,11392:8622497,6481928 +g1,11392:8954451,6481928 +g1,11392:9286405,6481928 +g1,11392:9618359,6481928 +g1,11392:9950313,6481928 +g1,11392:10282267,6481928 +g1,11392:10614221,6481928 +g1,11392:10946175,6481928 +g1,11392:11278129,6481928 +g1,11392:11610083,6481928 +g1,11392:12605945,6481928 +g1,11392:14265715,6481928 +h1,11392:15261577,6481928:0,0,0 +k1,11392:32583029,6481928:17321452 +g1,11392:32583029,6481928 +) +(1,11392:6630773,7166783:25952256,431045,79822 +h1,11392:6630773,7166783:0,0,0 +g1,11392:7626635,7166783 +g1,11392:7958589,7166783 +g1,11392:8290543,7166783 +g1,11392:8622497,7166783 +g1,11392:8954451,7166783 +g1,11392:9286405,7166783 +g1,11392:9618359,7166783 +g1,11392:9950313,7166783 +g1,11392:10282267,7166783 +g1,11392:11278129,7166783 +g1,11392:17585254,7166783 +h1,11392:17917208,7166783:0,0,0 +k1,11392:32583029,7166783:14665821 +g1,11392:32583029,7166783 +) +(1,11392:6630773,7851638:25952256,431045,33029 +h1,11392:6630773,7851638:0,0,0 +g1,11392:7626635,7851638 +g1,11392:7958589,7851638 +g1,11392:8290543,7851638 +g1,11392:8622497,7851638 +g1,11392:8954451,7851638 +g1,11392:9286405,7851638 +g1,11392:9618359,7851638 +g1,11392:9950313,7851638 +g1,11392:10282267,7851638 +g1,11392:10614221,7851638 +g1,11392:10946175,7851638 +g1,11392:11278129,7851638 +g1,11392:11610083,7851638 +g1,11392:16921346,7851638 +g1,11392:17917208,7851638 +h1,11392:19908932,7851638:0,0,0 +k1,11392:32583029,7851638:12674097 +g1,11392:32583029,7851638 +) +(1,11392:6630773,8536493:25952256,431045,106246 +h1,11392:6630773,8536493:0,0,0 +g1,11392:7626635,8536493 +g1,11392:7958589,8536493 +g1,11392:8290543,8536493 +g1,11392:8622497,8536493 +g1,11392:8954451,8536493 +g1,11392:9286405,8536493 +g1,11392:9618359,8536493 +g1,11392:9950313,8536493 +g1,11392:10282267,8536493 +g1,11392:10614221,8536493 +g1,11392:10946175,8536493 +g1,11392:11278129,8536493 +g1,11392:11610083,8536493 +g1,11392:15593530,8536493 +g1,11392:16589392,8536493 +g1,11392:17253300,8536493 +g1,11392:17917208,8536493 +h1,11392:19908932,8536493:0,0,0 +k1,11392:32583029,8536493:12674097 +g1,11392:32583029,8536493 +) +(1,11392:6630773,9221348:25952256,424439,79822 +h1,11392:6630773,9221348:0,0,0 +g1,11392:7626635,9221348 +g1,11392:7958589,9221348 +g1,11392:8290543,9221348 +g1,11392:8622497,9221348 +g1,11392:8954451,9221348 +g1,11392:9286405,9221348 +g1,11392:9618359,9221348 +g1,11392:9950313,9221348 +g1,11392:10282267,9221348 +h1,11392:10614221,9221348:0,0,0 +k1,11392:32583029,9221348:21968808 +g1,11392:32583029,9221348 +) +(1,11392:6630773,9906203:25952256,424439,79822 +h1,11392:6630773,9906203:0,0,0 +g1,11392:7626635,9906203 +g1,11392:7958589,9906203 +g1,11392:8290543,9906203 +g1,11392:8622497,9906203 +g1,11392:8954451,9906203 +h1,11392:9286405,9906203:0,0,0 +k1,11392:32583029,9906203:23296624 +g1,11392:32583029,9906203 +) +(1,11392:6630773,10591058:25952256,424439,79822 +h1,11392:6630773,10591058:0,0,0 +g1,11392:7626635,10591058 +g1,11392:7958589,10591058 +g1,11392:8290543,10591058 +g1,11392:8622497,10591058 +g1,11392:8954451,10591058 +g1,11392:10614221,10591058 +h1,11392:10946175,10591058:0,0,0 +k1,11392:32583029,10591058:21636854 +g1,11392:32583029,10591058 +) +(1,11392:6630773,11275913:25952256,431045,86428 +h1,11392:6630773,11275913:0,0,0 +g1,11392:7626635,11275913 +g1,11392:7958589,11275913 +g1,11392:8290543,11275913 +g1,11392:8622497,11275913 +g1,11392:8954451,11275913 +g1,11392:9286405,11275913 +g1,11392:9618359,11275913 +g1,11392:9950313,11275913 +g1,11392:10282267,11275913 +g1,11392:10946175,11275913 +g1,11392:11942037,11275913 +g1,11392:17585254,11275913 +g1,11392:18913070,11275913 +h1,11392:22232609,11275913:0,0,0 +k1,11392:32583029,11275913:10350420 +g1,11392:32583029,11275913 +) +(1,11392:6630773,11960768:25952256,431045,79822 +h1,11392:6630773,11960768:0,0,0 +g1,11392:7626635,11960768 +g1,11392:7958589,11960768 +g1,11392:8290543,11960768 +g1,11392:8622497,11960768 +g1,11392:8954451,11960768 +g1,11392:9286405,11960768 +g1,11392:9618359,11960768 +g1,11392:9950313,11960768 +g1,11392:10282267,11960768 +g1,11392:10946175,11960768 +g1,11392:11942037,11960768 +g1,11392:12937899,11960768 +h1,11392:16921346,11960768:0,0,0 +k1,11392:32583029,11960768:15661683 +g1,11392:32583029,11960768 +) +(1,11392:6630773,12645623:25952256,431045,112852 +h1,11392:6630773,12645623:0,0,0 +g1,11392:7626635,12645623 +g1,11392:7958589,12645623 +g1,11392:8290543,12645623 +g1,11392:8622497,12645623 +g1,11392:8954451,12645623 +g1,11392:9286405,12645623 +g1,11392:9618359,12645623 +g1,11392:9950313,12645623 +g1,11392:10282267,12645623 +g1,11392:10614221,12645623 +g1,11392:10946175,12645623 +g1,11392:11278129,12645623 +g1,11392:11610083,12645623 +g1,11392:14929622,12645623 +g1,11392:15925484,12645623 +g1,11392:18249162,12645623 +g1,11392:18913070,12645623 +g1,11392:21568702,12645623 +g1,11392:25552149,12645623 +g1,11392:26216057,12645623 +k1,11392:26216057,12645623:0 +h1,11392:30199504,12645623:0,0,0 +k1,11392:32583029,12645623:2383525 +g1,11392:32583029,12645623 +) +(1,11392:6630773,13330478:25952256,424439,79822 +h1,11392:6630773,13330478:0,0,0 +g1,11392:7626635,13330478 +g1,11392:7958589,13330478 +g1,11392:8290543,13330478 +g1,11392:8622497,13330478 +g1,11392:8954451,13330478 +g1,11392:9286405,13330478 +g1,11392:9618359,13330478 +g1,11392:9950313,13330478 +g1,11392:10282267,13330478 +g1,11392:10614221,13330478 +g1,11392:10946175,13330478 +g1,11392:11278129,13330478 +g1,11392:11610083,13330478 +g1,11392:11942037,13330478 +g1,11392:12273991,13330478 +g1,11392:12605945,13330478 +g1,11392:12937899,13330478 +h1,11392:14265715,13330478:0,0,0 +k1,11392:32583029,13330478:18317314 +g1,11392:32583029,13330478 +) +(1,11392:6630773,14015333:25952256,431045,112852 +h1,11392:6630773,14015333:0,0,0 +g1,11392:7626635,14015333 +g1,11392:7958589,14015333 +g1,11392:8290543,14015333 +g1,11392:8622497,14015333 +g1,11392:8954451,14015333 +g1,11392:9286405,14015333 +g1,11392:9618359,14015333 +g1,11392:9950313,14015333 +g1,11392:10282267,14015333 +g1,11392:11942037,14015333 +g1,11392:15593530,14015333 +g1,11392:16589392,14015333 +g1,11392:17585254,14015333 +g1,11392:19908932,14015333 +g1,11392:20572840,14015333 +g1,11392:23228472,14015333 +g1,11392:27211919,14015333 +g1,11392:27875827,14015333 +k1,11392:27875827,14015333:0 +h1,11392:31859274,14015333:0,0,0 +k1,11392:32583029,14015333:723755 +g1,11392:32583029,14015333 +) +(1,11392:6630773,14700188:25952256,424439,79822 +h1,11392:6630773,14700188:0,0,0 +g1,11392:7626635,14700188 +g1,11392:7958589,14700188 +g1,11392:8290543,14700188 +g1,11392:8622497,14700188 +g1,11392:8954451,14700188 +g1,11392:9286405,14700188 +g1,11392:9618359,14700188 +g1,11392:9950313,14700188 +g1,11392:10282267,14700188 +g1,11392:10614221,14700188 +g1,11392:10946175,14700188 +g1,11392:11278129,14700188 +g1,11392:11610083,14700188 +h1,11392:12937899,14700188:0,0,0 +k1,11392:32583029,14700188:19645130 +g1,11392:32583029,14700188 +) +(1,11392:6630773,15385043:25952256,424439,79822 +h1,11392:6630773,15385043:0,0,0 +g1,11392:7626635,15385043 +g1,11392:7958589,15385043 +g1,11392:8290543,15385043 +g1,11392:8622497,15385043 +g1,11392:8954451,15385043 +h1,11392:9286405,15385043:0,0,0 +k1,11392:32583029,15385043:23296624 +g1,11392:32583029,15385043 +) +(1,11392:6630773,16069898:25952256,431045,86428 +h1,11392:6630773,16069898:0,0,0 +g1,11392:7626635,16069898 +g1,11392:7958589,16069898 +g1,11392:8290543,16069898 +g1,11392:8622497,16069898 +g1,11392:8954451,16069898 +g1,11392:11942036,16069898 +g1,11392:12937898,16069898 +g1,11392:14597668,16069898 +g1,11392:16589392,16069898 +g1,11392:18913070,16069898 +h1,11392:20572840,16069898:0,0,0 +k1,11392:32583029,16069898:12010189 +g1,11392:32583029,16069898 +) +(1,11392:6630773,16754753:25952256,431045,86428 +h1,11392:6630773,16754753:0,0,0 +g1,11392:7626635,16754753 +g1,11392:7958589,16754753 +g1,11392:8290543,16754753 +g1,11392:8622497,16754753 +g1,11392:8954451,16754753 +g1,11392:12937898,16754753 +g1,11392:13933760,16754753 +g1,11392:16921346,16754753 +h1,11392:20904793,16754753:0,0,0 +k1,11392:32583029,16754753:11678236 +g1,11392:32583029,16754753 +) +(1,11392:6630773,17439608:25952256,431045,33029 +h1,11392:6630773,17439608:0,0,0 +g1,11392:7626635,17439608 +g1,11392:7958589,17439608 +g1,11392:8290543,17439608 +g1,11392:8622497,17439608 +g1,11392:8954451,17439608 +g1,11392:11942036,17439608 +g1,11392:12937898,17439608 +h1,11392:14929622,17439608:0,0,0 +k1,11392:32583030,17439608:17653408 +g1,11392:32583030,17439608 +) +(1,11392:6630773,18124463:25952256,431045,86428 +h1,11392:6630773,18124463:0,0,0 +g1,11392:7626635,18124463 +g1,11392:7958589,18124463 +g1,11392:8290543,18124463 +g1,11392:8622497,18124463 +g1,11392:8954451,18124463 +g1,11392:12937898,18124463 +g1,11392:13933760,18124463 +g1,11392:16589392,18124463 +h1,11392:20572839,18124463:0,0,0 +k1,11392:32583029,18124463:12010190 +g1,11392:32583029,18124463 +) +(1,11392:6630773,18809318:25952256,431045,112852 +h1,11392:6630773,18809318:0,0,0 +g1,11392:7626635,18809318 +g1,11392:7958589,18809318 +g1,11392:8290543,18809318 +g1,11392:8622497,18809318 +g1,11392:8954451,18809318 +g1,11392:12273990,18809318 +g1,11392:13269852,18809318 +g1,11392:18581115,18809318 +h1,11392:19576977,18809318:0,0,0 +k1,11392:32583029,18809318:13006052 +g1,11392:32583029,18809318 +) +(1,11392:6630773,19494173:25952256,431045,33029 +h1,11392:6630773,19494173:0,0,0 +g1,11392:7626635,19494173 +g1,11392:7958589,19494173 +g1,11392:8290543,19494173 +g1,11392:8622497,19494173 +g1,11392:8954451,19494173 +g1,11392:11278129,19494173 +g1,11392:12273991,19494173 +h1,11392:12937899,19494173:0,0,0 +k1,11392:32583029,19494173:19645130 +g1,11392:32583029,19494173 +) +(1,11392:6630773,20179028:25952256,431045,33029 +h1,11392:6630773,20179028:0,0,0 +g1,11392:7626635,20179028 +g1,11392:7958589,20179028 +g1,11392:8290543,20179028 +g1,11392:8622497,20179028 +g1,11392:8954451,20179028 +g1,11392:11610083,20179028 +g1,11392:12605945,20179028 +h1,11392:13269853,20179028:0,0,0 +k1,11392:32583029,20179028:19313176 +g1,11392:32583029,20179028 +) +(1,11392:6630773,20863883:25952256,431045,79822 +h1,11392:6630773,20863883:0,0,0 +g1,11392:7626635,20863883 +g1,11392:7958589,20863883 +g1,11392:8290543,20863883 +g1,11392:8622497,20863883 +g1,11392:8954451,20863883 +g1,11392:9950313,20863883 +h1,11392:12273991,20863883:0,0,0 +k1,11392:32583029,20863883:20309038 +g1,11392:32583029,20863883 +) +(1,11392:6630773,21548738:25952256,431045,33029 +h1,11392:6630773,21548738:0,0,0 +g1,11392:7626635,21548738 +g1,11392:7958589,21548738 +g1,11392:8290543,21548738 +g1,11392:8622497,21548738 +g1,11392:8954451,21548738 +g1,11392:9286405,21548738 +g1,11392:9618359,21548738 +g1,11392:9950313,21548738 +g1,11392:10282267,21548738 +g1,11392:12937899,21548738 +g1,11392:13933761,21548738 +h1,11392:14597669,21548738:0,0,0 +k1,11392:32583029,21548738:17985360 +g1,11392:32583029,21548738 +) +(1,11392:6630773,22233593:25952256,431045,79822 +h1,11392:6630773,22233593:0,0,0 +g1,11392:7626635,22233593 +g1,11392:7958589,22233593 +g1,11392:8290543,22233593 +g1,11392:8622497,22233593 +g1,11392:8954451,22233593 +g1,11392:9950313,22233593 +h1,11392:12273991,22233593:0,0,0 +k1,11392:32583029,22233593:20309038 +g1,11392:32583029,22233593 +) +(1,11392:6630773,22918448:25952256,431045,33029 +h1,11392:6630773,22918448:0,0,0 +g1,11392:7626635,22918448 +g1,11392:7958589,22918448 +g1,11392:8290543,22918448 +g1,11392:8622497,22918448 +g1,11392:8954451,22918448 +g1,11392:9286405,22918448 +g1,11392:9618359,22918448 +g1,11392:9950313,22918448 +g1,11392:10282267,22918448 +g1,11392:11610083,22918448 +g1,11392:12605945,22918448 +h1,11392:12937899,22918448:0,0,0 +k1,11392:32583029,22918448:19645130 +g1,11392:32583029,22918448 +) +(1,11392:6630773,23603303:25952256,431045,106246 +h1,11392:6630773,23603303:0,0,0 +g1,11392:7626635,23603303 +g1,11392:7958589,23603303 +g1,11392:8290543,23603303 +g1,11392:8622497,23603303 +g1,11392:8954451,23603303 +g1,11392:9950313,23603303 +h1,11392:12273991,23603303:0,0,0 +k1,11392:32583029,23603303:20309038 +g1,11392:32583029,23603303 +) +(1,11392:6630773,24288158:25952256,431045,106246 +h1,11392:6630773,24288158:0,0,0 +g1,11392:7626635,24288158 +g1,11392:7958589,24288158 +g1,11392:8290543,24288158 +g1,11392:8622497,24288158 +g1,11392:8954451,24288158 +g1,11392:9286405,24288158 +g1,11392:9618359,24288158 +g1,11392:9950313,24288158 +g1,11392:10282267,24288158 +g1,11392:11610083,24288158 +g1,11392:12605945,24288158 +h1,11392:12937899,24288158:0,0,0 +k1,11392:32583029,24288158:19645130 +g1,11392:32583029,24288158 +) +(1,11392:6630773,24973013:25952256,431045,106246 +h1,11392:6630773,24973013:0,0,0 +g1,11392:7626635,24973013 +g1,11392:7958589,24973013 +g1,11392:8290543,24973013 +g1,11392:8622497,24973013 +g1,11392:8954451,24973013 +g1,11392:9950313,24973013 +h1,11392:11610083,24973013:0,0,0 +k1,11392:32583029,24973013:20972946 +g1,11392:32583029,24973013 +) +(1,11392:6630773,25657868:25952256,431045,106246 +h1,11392:6630773,25657868:0,0,0 +g1,11392:7626635,25657868 +g1,11392:7958589,25657868 +g1,11392:8290543,25657868 +g1,11392:8622497,25657868 +g1,11392:8954451,25657868 +g1,11392:9286405,25657868 +g1,11392:9618359,25657868 +g1,11392:9950313,25657868 +g1,11392:10282267,25657868 +g1,11392:11942037,25657868 +g1,11392:12937899,25657868 +h1,11392:14265715,25657868:0,0,0 +k1,11392:32583029,25657868:18317314 +g1,11392:32583029,25657868 +) +(1,11392:6630773,26342723:25952256,398014,0 +h1,11392:6630773,26342723:0,0,0 +g1,11392:7626635,26342723 +g1,11392:7958589,26342723 +g1,11392:8290543,26342723 +g1,11392:8622497,26342723 +g1,11392:8954451,26342723 +h1,11392:9286405,26342723:0,0,0 +k1,11392:32583029,26342723:23296624 +g1,11392:32583029,26342723 +) +(1,11392:6630773,27027578:25952256,424439,79822 +h1,11392:6630773,27027578:0,0,0 +g1,11392:7626635,27027578 +h1,11392:7958589,27027578:0,0,0 +k1,11392:32583029,27027578:24624440 +g1,11392:32583029,27027578 +) +(1,11392:6630773,27712433:25952256,431045,106246 +h1,11392:6630773,27712433:0,0,0 +g1,11392:7626635,27712433 +g1,11392:11278128,27712433 +k1,11392:11278128,27712433:0 +h1,11392:17585253,27712433:0,0,0 +k1,11392:32583029,27712433:14997776 +g1,11392:32583029,27712433 +) +(1,11392:6630773,28397288:25952256,424439,106246 +h1,11392:6630773,28397288:0,0,0 +g1,11392:7626635,28397288 +g1,11392:12273990,28397288 +k1,11392:12273990,28397288:0 +h1,11392:17585253,28397288:0,0,0 +k1,11392:32583029,28397288:14997776 +g1,11392:32583029,28397288 +) +] +) +g1,11393:32583029,28503534 +g1,11393:6630773,28503534 +g1,11393:6630773,28503534 +g1,11393:32583029,28503534 +g1,11393:32583029,28503534 +) +h1,11393:6630773,28700142:0,0,0 +(1,11397:6630773,29565222:25952256,513147,134348 +h1,11396:6630773,29565222:983040,0,0 +k1,11396:8627409,29565222:195707 +k1,11396:9927398,29565222:195707 +k1,11396:10870871,29565222:195707 +k1,11396:12506404,29565222:195707 +k1,11396:13314873,29565222:195707 +k1,11396:14529665,29565222:195707 +k1,11396:15908297,29565222:195707 +k1,11396:16763296,29565222:195707 +k1,11396:17978088,29565222:195707 +k1,11396:20331240,29565222:195707 +k1,11396:21730188,29565222:195707 +k1,11396:24621391,29565222:195707 +k1,11396:27103649,29565222:195707 +k1,11396:27915394,29565222:195707 +k1,11396:29130186,29565222:195707 +k1,11396:29740733,29565222:195704 +k1,11396:32583029,29565222:0 +) +(1,11397:6630773,30430302:25952256,513147,126483 +k1,11396:7930399,30430302:198621 +k1,11396:9638969,30430302:198620 +k1,11396:14359574,30430302:198621 +k1,11396:15283023,30430302:198621 +k1,11396:16766150,30430302:198621 +k1,11396:17422867,30430302:198620 +k1,11396:20364170,30430302:198621 +k1,11396:22579989,30430302:198621 +k1,11396:25898778,30430302:198620 +k1,11396:27381905,30430302:198621 +k1,11396:28572086,30430302:198621 +k1,11396:30092568,30430302:198621 +k1,11396:30950480,30430302:198620 +k1,11396:32168186,30430302:198621 +k1,11397:32583029,30430302:0 +) +(1,11397:6630773,31295382:25952256,505283,134348 +k1,11396:9888621,31295382:241881 +k1,11396:11202672,31295382:241882 +k1,11396:12729059,31295382:241881 +k1,11396:13962500,31295382:241881 +k1,11396:15270653,31295382:241882 +k1,11396:17429462,31295382:241881 +k1,11396:19406737,31295382:241882 +k1,11396:20667703,31295382:241881 +k1,11396:21324385,31295382:241839 +k1,11396:24582233,31295382:241881 +k1,11396:25815674,31295382:241881 +k1,11396:27925332,31295382:241882 +k1,11396:31391584,31295382:241881 +k1,11396:32583029,31295382:0 +) +(1,11397:6630773,32160462:25952256,513147,134348 +k1,11396:8437222,32160462:297810 +k1,11396:9824897,32160462:297811 +k1,11396:13204865,32160462:297810 +k1,11396:15673227,32160462:297810 +k1,11396:16718804,32160462:297811 +k1,11396:19815657,32160462:297810 +k1,11396:22671994,32160462:297811 +k1,11396:24478443,32160462:297810 +k1,11396:26514268,32160462:297810 +k1,11396:28138528,32160462:297811 +(1,11396:28138528,32160462:0,452978,115847 +r1,11438:29903641,32160462:1765113,568825,115847 +k1,11396:28138528,32160462:-1765113 +) +(1,11396:28138528,32160462:1765113,452978,115847 +k1,11396:28138528,32160462:3277 +h1,11396:29900364,32160462:0,411205,112570 +) +k1,11396:30201451,32160462:297810 +k1,11396:32583029,32160462:0 +) +(1,11397:6630773,33025542:25952256,505283,95026 +k1,11397:32583029,33025542:23716168 +g1,11397:32583029,33025542 +) +v1,11399:6630773,33710397:0,393216,0 +(1,11406:6630773,34833977:25952256,1516796,196608 +g1,11406:6630773,34833977 +g1,11406:6630773,34833977 +g1,11406:6434165,34833977 +(1,11406:6434165,34833977:0,1516796,196608 +r1,11438:32779637,34833977:26345472,1713404,196608 +k1,11406:6434165,34833977:-26345472 +) +(1,11406:6434165,34833977:26345472,1516796,196608 +[1,11406:6630773,34833977:25952256,1320188,0 +(1,11401:6630773,33938228:25952256,424439,6605 +(1,11400:6630773,33938228:0,0,0 +g1,11400:6630773,33938228 +g1,11400:6630773,33938228 +g1,11400:6303093,33938228 +(1,11400:6303093,33938228:0,0,0 +) +g1,11400:6630773,33938228 +) +h1,11401:7958589,33938228:0,0,0 +k1,11401:32583029,33938228:24624440 +g1,11401:32583029,33938228 +) +(1,11405:6630773,34754155:25952256,431045,79822 +(1,11403:6630773,34754155:0,0,0 +g1,11403:6630773,34754155 +g1,11403:6630773,34754155 +g1,11403:6303093,34754155 +(1,11403:6303093,34754155:0,0,0 +) +g1,11403:6630773,34754155 +) +g1,11405:7626635,34754155 +g1,11405:10614220,34754155 +g1,11405:12605944,34754155 +g1,11405:12937898,34754155 +h1,11405:18913069,34754155:0,0,0 +k1,11405:32583029,34754155:13669960 +g1,11405:32583029,34754155 +) +] +) +g1,11406:32583029,34833977 +g1,11406:6630773,34833977 +g1,11406:6630773,34833977 +g1,11406:32583029,34833977 +g1,11406:32583029,34833977 +) +h1,11406:6630773,35030585:0,0,0 +(1,11409:6630773,37147403:25952256,534184,139132 +(1,11409:6630773,37147403:2450326,534184,12975 +g1,11409:6630773,37147403 +g1,11409:9081099,37147403 +) +k1,11409:32583030,37147403:19872940 +g1,11409:32583030,37147403 +) +(1,11413:6630773,38405699:25952256,513147,134348 +k1,11412:10031032,38405699:208656 +k1,11412:11231249,38405699:208657 +k1,11412:14465702,38405699:208656 +k1,11412:15958865,38405699:208657 +k1,11412:17260006,38405699:208656 +k1,11412:17824523,38405699:208657 +k1,11412:20795522,38405699:208656 +k1,11412:23088224,38405699:208657 +k1,11412:24244531,38405699:208656 +k1,11412:26191203,38405699:208657 +k1,11412:28441305,38405699:208656 +k1,11412:29127719,38405699:208657 +k1,11412:30845014,38405699:208656 +k1,11412:32583029,38405699:0 +) +(1,11413:6630773,39270779:25952256,513147,126483 +k1,11412:7331958,39270779:169688 +k1,11412:10295446,39270779:169688 +k1,11412:11081171,39270779:169687 +k1,11412:12733283,39270779:169688 +k1,11412:14417508,39270779:169688 +k1,11412:15967384,39270779:169688 +k1,11412:17241353,39270779:169687 +k1,11412:18158807,39270779:169688 +k1,11412:20196271,39270779:169688 +k1,11412:21052121,39270779:169688 +k1,11412:23946795,39270779:169687 +k1,11412:27315951,39270779:169688 +k1,11412:29506114,39270779:169688 +k1,11412:32583029,39270779:0 +) +(1,11413:6630773,40135859:25952256,513147,126483 +k1,11412:7951027,40135859:174029 +(1,11412:7951027,40135859:0,414482,115847 +r1,11438:8309293,40135859:358266,530329,115847 +k1,11412:7951027,40135859:-358266 +) +(1,11412:7951027,40135859:358266,414482,115847 +k1,11412:7951027,40135859:3277 +h1,11412:8306016,40135859:0,411205,112570 +) +k1,11412:8483322,40135859:174029 +k1,11412:10132566,40135859:174029 +k1,11412:11479034,40135859:174029 +k1,11412:13781672,40135859:174029 +k1,11412:17740405,40135859:174029 +k1,11412:19105878,40135859:174028 +k1,11412:21114915,40135859:174029 +k1,11412:24365859,40135859:174029 +k1,11412:25686113,40135859:174029 +k1,11412:27695150,40135859:174029 +(1,11412:27695150,40135859:0,414482,115847 +r1,11438:28053416,40135859:358266,530329,115847 +k1,11412:27695150,40135859:-358266 +) +(1,11412:27695150,40135859:358266,414482,115847 +k1,11412:27695150,40135859:3277 +h1,11412:28050139,40135859:0,411205,112570 +) +k1,11412:28227445,40135859:174029 +k1,11412:29876689,40135859:174029 +k1,11412:31426319,40135859:174029 +k1,11412:32583029,40135859:0 +) +(1,11413:6630773,41000939:25952256,513147,126483 +k1,11412:8974814,41000939:215432 +k1,11412:12644650,41000939:215433 +k1,11412:14056769,41000939:215432 +k1,11412:17883235,41000939:215432 +k1,11412:18757959,41000939:215432 +k1,11412:20725169,41000939:215433 +k1,11412:22962387,41000939:215432 +k1,11412:23592646,41000939:215416 +k1,11412:26884993,41000939:215432 +k1,11412:28091985,41000939:215432 +k1,11412:30466174,41000939:215433 +(1,11412:30466174,41000939:0,435480,115847 +r1,11438:31176152,41000939:709978,551327,115847 +k1,11412:30466174,41000939:-709978 +) +(1,11412:30466174,41000939:709978,435480,115847 +k1,11412:30466174,41000939:3277 +h1,11412:31172875,41000939:0,411205,112570 +) +k1,11412:31391584,41000939:215432 +k1,11413:32583029,41000939:0 +) +(1,11413:6630773,41866019:25952256,435480,115847 +(1,11412:6630773,41866019:0,435480,115847 +r1,11438:7340751,41866019:709978,551327,115847 +k1,11412:6630773,41866019:-709978 +) +(1,11412:6630773,41866019:709978,435480,115847 +k1,11412:6630773,41866019:3277 +h1,11412:7337474,41866019:0,411205,112570 +) +k1,11413:32583029,41866019:25068608 +g1,11413:32583029,41866019 +) +v1,11415:6630773,42550874:0,393216,0 +(1,11434:6630773,45510161:25952256,3352503,196608 +g1,11434:6630773,45510161 +g1,11434:6630773,45510161 +g1,11434:6434165,45510161 +(1,11434:6434165,45510161:0,3352503,196608 +r1,11438:32779637,45510161:26345472,3549111,196608 +k1,11434:6434165,45510161:-26345472 +) +(1,11434:6434165,45510161:26345472,3352503,196608 +[1,11434:6630773,45510161:25952256,3155895,0 +(1,11417:6630773,42778705:25952256,424439,79822 +(1,11416:6630773,42778705:0,0,0 +g1,11416:6630773,42778705 +g1,11416:6630773,42778705 +g1,11416:6303093,42778705 +(1,11416:6303093,42778705:0,0,0 +) +g1,11416:6630773,42778705 +) +g1,11417:7294681,42778705 +g1,11417:7958589,42778705 +h1,11417:8290543,42778705:0,0,0 +k1,11417:32583029,42778705:24292486 +g1,11417:32583029,42778705 +) +(1,11421:6630773,43309032:25952256,424439,79822 +(1,11419:6630773,43309032:0,0,0 +g1,11419:6630773,43309032 +g1,11419:6630773,43309032 +g1,11419:6303093,43309032 +(1,11419:6303093,43309032:0,0,0 +) +g1,11419:6630773,43309032 +) +g1,11421:7626635,43309032 +g1,11421:8954451,43309032 +h1,11421:9950313,43309032:0,0,0 +k1,11421:32583029,43309032:22632716 +g1,11421:32583029,43309032 +) +(1,11423:6630773,43839359:25952256,431045,86428 +(1,11422:6630773,43839359:0,0,0 +g1,11422:6630773,43839359 +g1,11422:6630773,43839359 +g1,11422:6303093,43839359 +(1,11422:6303093,43839359:0,0,0 +) +g1,11422:6630773,43839359 +) +k1,11423:6630773,43839359:0 +g1,11423:8622497,43839359 +g1,11423:9286405,43839359 +h1,11423:9950313,43839359:0,0,0 +k1,11423:32583029,43839359:22632716 +g1,11423:32583029,43839359 +) +(1,11427:6630773,44369685:25952256,424439,79822 +(1,11425:6630773,44369685:0,0,0 +g1,11425:6630773,44369685 +g1,11425:6630773,44369685 +g1,11425:6303093,44369685 +(1,11425:6303093,44369685:0,0,0 +) +g1,11425:6630773,44369685 +) +g1,11427:7626635,44369685 +g1,11427:8954451,44369685 +h1,11427:9950313,44369685:0,0,0 +k1,11427:32583029,44369685:22632716 +g1,11427:32583029,44369685 +) +(1,11429:6630773,44900012:25952256,431045,86428 +(1,11428:6630773,44900012:0,0,0 +g1,11428:6630773,44900012 +g1,11428:6630773,44900012 +g1,11428:6303093,44900012 +(1,11428:6303093,44900012:0,0,0 +) +g1,11428:6630773,44900012 ) -] -[1,12082:3078558,4812305:0,0,0 -(1,12082:3078558,2439708:0,1703936,0 -g1,12082:29030814,2439708 -g1,12082:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,12082:36151628,1915420:16384,1179648,0 +k1,11429:6630773,44900012:0 +g1,11429:8954451,44900012 +g1,11429:9618359,44900012 +g1,11429:10282267,44900012 +g1,11429:10946175,44900012 +g1,11429:11942037,44900012 +g1,11429:12605945,44900012 +h1,11429:13269853,44900012:0,0,0 +k1,11429:32583029,44900012:19313176 +g1,11429:32583029,44900012 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +(1,11433:6630773,45430339:25952256,424439,79822 +(1,11431:6630773,45430339:0,0,0 +g1,11431:6630773,45430339 +g1,11431:6630773,45430339 +g1,11431:6303093,45430339 +(1,11431:6303093,45430339:0,0,0 +) +g1,11431:6630773,45430339 +) +g1,11433:7626635,45430339 +g1,11433:8954451,45430339 +h1,11433:9950313,45430339:0,0,0 +k1,11433:32583029,45430339:22632716 +g1,11433:32583029,45430339 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,12082:37855564,2439708:1179648,16384,0 +g1,11434:32583029,45510161 +g1,11434:6630773,45510161 +g1,11434:6630773,45510161 +g1,11434:32583029,45510161 +g1,11434:32583029,45510161 +) +h1,11434:6630773,45706769:0,0,0 +] +(1,11438:32583029,45706769:0,0,0 +g1,11438:32583029,45706769 ) ) -k1,12082:3078556,2439708:-34777008 +] +(1,11438:6630773,47279633:25952256,0,0 +h1,11438:6630773,47279633:25952256,0,0 ) ] -[1,12082:3078558,4812305:0,0,0 -(1,12082:3078558,49800853:0,16384,2228224 -k1,12082:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,12082:2537886,49800853:1179648,16384,0 +(1,11438:4262630,4025873:0,0,0 +[1,11438:-473656,4025873:0,0,0 +(1,11438:-473656,-710413:0,0,0 +(1,11438:-473656,-710413:0,0,0 +g1,11438:-473656,-710413 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,12082:3078558,51504789:16384,1179648,0 +g1,11438:-473656,-710413 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 +] ) ] +!28385 +}182 +Input:1713:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1714:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1715:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!294 +{183 +[1,11509:4262630,47279633:28320399,43253760,0 +(1,11509:4262630,4025873:0,0,0 +[1,11509:-473656,4025873:0,0,0 +(1,11509:-473656,-710413:0,0,0 +(1,11509:-473656,-644877:0,0,0 +k1,11509:-473656,-644877:-65536 ) +(1,11509:-473656,4736287:0,0,0 +k1,11509:-473656,4736287:5209943 ) +g1,11509:-473656,-710413 ) ] -[1,12082:3078558,4812305:0,0,0 -(1,12082:3078558,49800853:0,16384,2228224 -g1,12082:29030814,49800853 -g1,12082:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,12082:36151628,51504789:16384,1179648,0 ) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 +[1,11509:6630773,47279633:25952256,43253760,0 +[1,11509:6630773,4812305:25952256,786432,0 +(1,11509:6630773,4812305:25952256,505283,134348 +(1,11509:6630773,4812305:25952256,505283,134348 +g1,11509:3078558,4812305 +[1,11509:3078558,4812305:0,0,0 +(1,11509:3078558,2439708:0,1703936,0 +k1,11509:1358238,2439708:-1720320 +(1,11038:1358238,2439708:1720320,1703936,0 +(1,11038:1358238,2439708:1179648,16384,0 +r1,11509:2537886,2439708:1179648,16384,0 +) +g1,11038:3062174,2439708 +(1,11038:3062174,2439708:16384,1703936,0 +[1,11038:3062174,2439708:25952256,1703936,0 +(1,11038:3062174,1915420:25952256,1179648,0 +(1,11038:3062174,1915420:16384,1179648,0 +r1,11509:3078558,1915420:16384,1179648,0 +) +k1,11038:29014430,1915420:25935872 +g1,11038:29014430,1915420 ) ] ) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,12082:37855564,49800853:1179648,16384,0 ) ) -k1,12082:3078556,49800853:-34777008 +] +[1,11509:3078558,4812305:0,0,0 +(1,11509:3078558,2439708:0,1703936,0 +g1,11509:29030814,2439708 +g1,11509:36135244,2439708 +(1,11038:36135244,2439708:1720320,1703936,0 +(1,11038:36135244,2439708:16384,1703936,0 +[1,11038:36135244,2439708:25952256,1703936,0 +(1,11038:36135244,1915420:25952256,1179648,0 +(1,11038:36135244,1915420:16384,1179648,0 +r1,11509:36151628,1915420:16384,1179648,0 +) +k1,11038:62087500,1915420:25935872 +g1,11038:62087500,1915420 ) ] -g1,12082:6630773,4812305 -g1,12082:6630773,4812305 -g1,12082:10836873,4812305 -k1,12082:31387653,4812305:20550780 -) -) -] -[1,12082:6630773,45706769:25952256,40108032,0 -(1,12082:6630773,45706769:25952256,40108032,0 -(1,12082:6630773,45706769:0,0,0 -g1,12082:6630773,45706769 ) -[1,12082:6630773,45706769:25952256,40108032,0 -v1,12012:6630773,6254097:0,393216,0 -(1,12012:6630773,13167062:25952256,7306181,196608 -g1,12012:6630773,13167062 -g1,12012:6630773,13167062 -g1,12012:6434165,13167062 -(1,12012:6434165,13167062:0,7306181,196608 -r1,12082:32779637,13167062:26345472,7502789,196608 -k1,12012:6434165,13167062:-26345472 +g1,11038:36675916,2439708 +(1,11038:36675916,2439708:1179648,16384,0 +r1,11509:37855564,2439708:1179648,16384,0 ) -(1,12012:6434165,13167062:26345472,7306181,196608 -[1,12012:6630773,13167062:25952256,7109573,0 -(1,11989:6630773,6461715:25952256,404226,101187 -(1,11988:6630773,6461715:0,0,0 -g1,11988:6630773,6461715 -g1,11988:6630773,6461715 -g1,11988:6303093,6461715 -(1,11988:6303093,6461715:0,0,0 -) -g1,11988:6630773,6461715 -) -k1,11989:6630773,6461715:0 -g1,11989:9159939,6461715 -g1,11989:9792231,6461715 -g1,11989:10740669,6461715 -g1,11989:12321398,6461715 -g1,11989:12953690,6461715 -g1,11989:13902128,6461715 -g1,11989:14850565,6461715 -g1,11989:15482857,6461715 -h1,11989:16115149,6461715:0,0,0 -k1,11989:32583029,6461715:16467880 -g1,11989:32583029,6461715 -) -(1,11993:6630773,7127893:25952256,404226,76021 -(1,11991:6630773,7127893:0,0,0 -g1,11991:6630773,7127893 -g1,11991:6630773,7127893 -g1,11991:6303093,7127893 -(1,11991:6303093,7127893:0,0,0 -) -g1,11991:6630773,7127893 -) -g1,11993:7579210,7127893 -g1,11993:8843793,7127893 -h1,11993:11689104,7127893:0,0,0 -k1,11993:32583028,7127893:20893924 -g1,11993:32583028,7127893 -) -(1,11995:6630773,8449431:25952256,404226,101187 -(1,11994:6630773,8449431:0,0,0 -g1,11994:6630773,8449431 -g1,11994:6630773,8449431 -g1,11994:6303093,8449431 -(1,11994:6303093,8449431:0,0,0 -) -g1,11994:6630773,8449431 -) -k1,11995:6630773,8449431:0 -g1,11995:9159939,8449431 -g1,11995:9792231,8449431 -g1,11995:10740669,8449431 -g1,11995:12321398,8449431 -g1,11995:12953690,8449431 -g1,11995:13902128,8449431 -g1,11995:14850565,8449431 -g1,11995:15482857,8449431 -g1,11995:16431295,8449431 -g1,11995:19908898,8449431 -g1,11995:20541190,8449431 -h1,11995:22438064,8449431:0,0,0 -k1,11995:32583029,8449431:10144965 -g1,11995:32583029,8449431 -) -(1,11999:6630773,9115609:25952256,404226,76021 -(1,11997:6630773,9115609:0,0,0 -g1,11997:6630773,9115609 -g1,11997:6630773,9115609 -g1,11997:6303093,9115609 -(1,11997:6303093,9115609:0,0,0 -) -g1,11997:6630773,9115609 -) -g1,11999:7579210,9115609 -g1,11999:8843793,9115609 -k1,11999:8843793,9115609:0 -h1,11999:12637541,9115609:0,0,0 -k1,11999:32583029,9115609:19945488 -g1,11999:32583029,9115609 -) -(1,12001:6630773,10437147:25952256,404226,101187 -(1,12000:6630773,10437147:0,0,0 -g1,12000:6630773,10437147 -g1,12000:6630773,10437147 -g1,12000:6303093,10437147 -(1,12000:6303093,10437147:0,0,0 -) -g1,12000:6630773,10437147 -) -k1,12001:6630773,10437147:0 -g1,12001:9159939,10437147 -g1,12001:9792231,10437147 -g1,12001:10740669,10437147 -g1,12001:12321398,10437147 -g1,12001:12953690,10437147 -g1,12001:13902128,10437147 -g1,12001:14850565,10437147 -g1,12001:15482857,10437147 -g1,12001:16431295,10437147 -g1,12001:19908898,10437147 -g1,12001:20541190,10437147 -h1,12001:22438064,10437147:0,0,0 -k1,12001:32583029,10437147:10144965 -g1,12001:32583029,10437147 -) -(1,12005:6630773,11103325:25952256,404226,76021 -(1,12003:6630773,11103325:0,0,0 -g1,12003:6630773,11103325 -g1,12003:6630773,11103325 -g1,12003:6303093,11103325 -(1,12003:6303093,11103325:0,0,0 -) -g1,12003:6630773,11103325 -) -g1,12005:7579210,11103325 -g1,12005:8843793,11103325 -h1,12005:11689104,11103325:0,0,0 -k1,12005:32583028,11103325:20893924 -g1,12005:32583028,11103325 -) -(1,12007:6630773,12424863:25952256,404226,101187 -(1,12006:6630773,12424863:0,0,0 -g1,12006:6630773,12424863 -g1,12006:6630773,12424863 -g1,12006:6303093,12424863 -(1,12006:6303093,12424863:0,0,0 -) -g1,12006:6630773,12424863 -) -k1,12007:6630773,12424863:0 -g1,12007:9159939,12424863 -g1,12007:9792231,12424863 -g1,12007:11372961,12424863 -g1,12007:12637545,12424863 -g1,12007:14218274,12424863 -g1,12007:14850566,12424863 -g1,12007:15799004,12424863 -g1,12007:16747441,12424863 -g1,12007:17379733,12424863 -g1,12007:18328171,12424863 -g1,12007:21805774,12424863 -g1,12007:22438066,12424863 -h1,12007:24334940,12424863:0,0,0 -k1,12007:32583029,12424863:8248089 -g1,12007:32583029,12424863 -) -(1,12011:6630773,13091041:25952256,404226,76021 -(1,12009:6630773,13091041:0,0,0 -g1,12009:6630773,13091041 -g1,12009:6630773,13091041 -g1,12009:6303093,13091041 -(1,12009:6303093,13091041:0,0,0 -) -g1,12009:6630773,13091041 -) -g1,12011:7579210,13091041 -g1,12011:8843793,13091041 -g1,12011:12953687,13091041 -k1,12011:12953687,13091041:0 -h1,12011:16747435,13091041:0,0,0 -k1,12011:32583029,13091041:15835594 -g1,12011:32583029,13091041 -) -] -) -g1,12012:32583029,13167062 -g1,12012:6630773,13167062 -g1,12012:6630773,13167062 -g1,12012:32583029,13167062 -g1,12012:32583029,13167062 -) -h1,12012:6630773,13363670:0,0,0 -v1,12016:6630773,15084277:0,393216,0 -(1,12017:6630773,21463249:25952256,6772188,0 -g1,12017:6630773,21463249 -g1,12017:6303093,21463249 -r1,12082:6401397,21463249:98304,6772188,0 -g1,12017:6600626,21463249 -g1,12017:6797234,21463249 -[1,12017:6797234,21463249:25785795,6772188,0 -(1,12017:6797234,15446350:25785795,755289,196608 -(1,12016:6797234,15446350:0,755289,196608 -r1,12082:8134168,15446350:1336934,951897,196608 -k1,12016:6797234,15446350:-1336934 -) -(1,12016:6797234,15446350:1336934,755289,196608 -) -k1,12016:8414304,15446350:280136 -k1,12016:8741984,15446350:327680 -k1,12016:9649956,15446350:280137 -k1,12016:11451838,15446350:280136 -k1,12016:12391267,15446350:280137 -k1,12016:16582592,15446350:280136 -k1,12016:19836097,15446350:280137 -$1,12016:19836097,15446350 -$1,12016:20261426,15446350 -k1,12016:22765199,15446350:280136 -k1,12016:24236781,15446350:280137 -$1,12016:24236781,15446350 -$1,12016:24557252,15446350 -k1,12016:27061025,15446350:280136 -k1,12016:28332722,15446350:280137 -k1,12016:31821501,15446350:280136 -k1,12016:32583029,15446350:0 -) -(1,12017:6797234,16287838:25785795,513147,134348 -k1,12016:10580464,16287838:155812 -k1,12016:12303896,16287838:155811 -k1,12016:13478793,16287838:155812 -k1,12016:16520811,16287838:155812 -k1,12016:18414638,16287838:155812 -k1,12016:19518100,16287838:155811 -k1,12016:20830622,16287838:155812 -k1,12016:22879114,16287838:155812 -k1,12016:23717811,16287838:155812 -k1,12016:25038852,16287838:155811 -k1,12016:27968803,16287838:155812 -k1,12016:29143700,16287838:155812 -k1,12016:32583029,16287838:0 -) -(1,12017:6797234,17129326:25785795,513147,126483 -k1,12016:8734598,17129326:199349 -k1,12016:11784762,17129326:199348 -k1,12016:12339971,17129326:199349 -k1,12016:16839136,17129326:199348 -k1,12016:20440459,17129326:199349 -k1,12016:22493821,17129326:199348 -k1,12016:23712255,17129326:199349 -k1,12016:25649618,17129326:199348 -k1,12016:26508259,17129326:199349 -k1,12016:27063467,17129326:199348 -k1,12016:29550678,17129326:199349 -k1,12016:32583029,17129326:0 -) -(1,12017:6797234,17970814:25785795,513147,126483 -k1,12016:8524326,17970814:213866 -k1,12016:9424354,17970814:213866 -k1,12016:12791156,17970814:213865 -k1,12016:13687907,17970814:213866 -k1,12016:14920858,17970814:213866 -k1,12016:16872739,17970814:213866 -k1,12016:20295247,17970814:213865 -k1,12016:21896510,17970814:213866 -k1,12016:22876492,17970814:213866 -k1,12016:26565077,17970814:213866 -k1,12016:28665068,17970814:213865 -k1,12016:29898019,17970814:213866 -k1,12017:32583029,17970814:0 -) -(1,12017:6797234,18812302:25785795,513147,134348 -k1,12016:8256670,18812302:191970 -k1,12016:9107932,18812302:191970 -k1,12016:10109272,18812302:191970 -k1,12016:12072025,18812302:191970 -k1,12016:12923287,18812302:191970 -k1,12016:16797070,18812302:191970 -k1,12016:18180484,18812302:191969 -k1,12016:19806382,18812302:191970 -k1,12016:22589646,18812302:191970 -k1,12016:23543144,18812302:191970 -k1,12016:24754199,18812302:191970 -k1,12016:27789776,18812302:191970 -k1,12016:31105192,18812302:191970 -k1,12017:32583029,18812302:0 -) -(1,12017:6797234,19653790:25785795,505283,138281 -k1,12016:10329697,19653790:276634 -k1,12016:11625417,19653790:276635 -$1,12016:11625417,19653790 -$1,12016:12093344,19653790 -k1,12016:14593615,19653790:276634 -k1,12016:19493815,19653790:276635 -k1,12016:20421877,19653790:276634 -k1,12016:22395239,19653790:276635 -k1,12016:25645241,19653790:276634 -$1,12016:25645241,19653790 -$1,12016:26070570,19653790 -k1,12016:28570842,19653790:276635 -k1,12016:30038921,19653790:276634 -$1,12016:30038921,19653790 -$1,12016:30359392,19653790 -k1,12016:32583029,19653790:0 -) -(1,12017:6797234,20495278:25785795,505283,134348 -k1,12016:8608208,20495278:280708 -k1,12016:9540345,20495278:280709 -k1,12016:10568819,20495278:280708 -k1,12016:13004352,20495278:280709 -k1,12016:14120644,20495278:280708 -k1,12016:16136746,20495278:280709 -(1,12016:16136746,20495278:0,435480,115847 -r1,12082:18956995,20495278:2820249,551327,115847 -k1,12016:16136746,20495278:-2820249 -) -(1,12016:16136746,20495278:2820249,435480,115847 -g1,12016:17898582,20495278 -g1,12016:18602006,20495278 -h1,12016:18953718,20495278:0,411205,112570 -) -k1,12016:19237703,20495278:280708 -k1,12016:20709857,20495278:280709 -(1,12016:20709857,20495278:0,452978,115847 -r1,12082:22826683,20495278:2116826,568825,115847 -k1,12016:20709857,20495278:-2116826 -) -(1,12016:20709857,20495278:2116826,452978,115847 -g1,12016:21768270,20495278 -g1,12016:22471694,20495278 -h1,12016:22823406,20495278:0,411205,112570 -) -k1,12016:23107391,20495278:280708 -k1,12016:25086138,20495278:280709 -k1,12016:27456789,20495278:280708 -(1,12016:27456789,20495278:0,452978,115847 -r1,12082:29925326,20495278:2468537,568825,115847 -k1,12016:27456789,20495278:-2468537 -) -(1,12016:27456789,20495278:2468537,452978,115847 -k1,12016:27456789,20495278:3277 -h1,12016:29922049,20495278:0,411205,112570 -) -k1,12016:30206035,20495278:280709 -k1,12016:31169628,20495278:280708 -(1,12016:31169628,20495278:0,452978,115847 -r1,12082:32583029,20495278:1413401,568825,115847 -k1,12016:31169628,20495278:-1413401 -) -(1,12016:31169628,20495278:1413401,452978,115847 -k1,12016:31169628,20495278:3277 -h1,12016:32579752,20495278:0,411205,112570 -) -k1,12016:32583029,20495278:0 -) -(1,12017:6797234,21336766:25785795,513147,126483 -g1,12016:10966634,21336766 -g1,12016:13040193,21336766 -g1,12016:16544403,21336766 -g1,12016:18256858,21336766 -g1,12016:20466732,21336766 -g1,12016:21657521,21336766 -g1,12016:22875835,21336766 -k1,12017:32583029,21336766:6937643 -g1,12017:32583029,21336766 -) -] -g1,12017:32583029,21463249 -) -h1,12017:6630773,21463249:0,0,0 -(1,12019:6630773,23554509:25952256,564462,139132 -(1,12019:6630773,23554509:2450326,534184,12975 -g1,12019:6630773,23554509 -g1,12019:9081099,23554509 -) -g1,12019:12765599,23554509 -g1,12019:14765365,23554509 -g1,12019:19093625,23554509 -g1,12019:20660853,23554509 -k1,12019:32583029,23554509:7350253 -g1,12019:32583029,23554509 -) -(1,12023:6630773,24789213:25952256,513147,126483 -k1,12022:7984293,24789213:156833 -k1,12022:10447337,24789213:156832 -k1,12022:14668057,24789213:156833 -k1,12022:16392510,24789213:156832 -k1,12022:17833849,24789213:156833 -k1,12022:18606720,24789213:156833 -k1,12022:19782637,24789213:156832 -k1,12022:22693948,24789213:156833 -k1,12022:25129468,24789213:156833 -k1,12022:25817797,24789213:156832 -k1,12022:26626058,24789213:156833 -k1,12022:28806642,24789213:156832 -k1,12022:29982560,24789213:156833 -k1,12022:32583029,24789213:0 -) -(1,12023:6630773,25630701:25952256,513147,138281 -k1,12022:11415884,25630701:161546 -k1,12022:12228859,25630701:161547 -k1,12022:12746265,25630701:161546 -k1,12022:15045595,25630701:161546 -$1,12022:15045595,25630701 -$1,12022:15513522,25630701 -k1,12022:17568404,25630701:161547 -k1,12022:18412835,25630701:161546 -k1,12022:19921801,25630701:161546 -k1,12022:21969474,25630701:161547 -k1,12022:23287730,25630701:161546 -k1,12022:24108569,25630701:161547 -k1,12022:25289200,25630701:161546 -k1,12022:26800132,25630701:161546 -k1,12022:27620971,25630701:161547 -k1,12022:28801602,25630701:161546 -k1,12022:32583029,25630701:0 -) -(1,12023:6630773,26472189:25952256,513147,126483 -k1,12022:8777295,26472189:231560 -k1,12022:10883186,26472189:231561 -k1,12022:14045516,26472189:231560 -k1,12022:15268636,26472189:231560 -k1,12022:18805178,26472189:231561 -k1,12022:19688166,26472189:231560 -k1,12022:20938811,26472189:231560 -k1,12022:23181017,26472189:231561 -k1,12022:24028615,26472189:231560 -k1,12022:25279260,26472189:231560 -k1,12022:27406778,26472189:231561 -k1,12022:28297630,26472189:231560 -k1,12022:32583029,26472189:0 -) -(1,12023:6630773,27313677:25952256,513147,134348 -g1,12022:9760772,27313677 -g1,12022:11473227,27313677 -g1,12022:12288494,27313677 -g1,12022:14521305,27313677 -g1,12022:16476244,27313677 -g1,12022:17326901,27313677 -g1,12022:19550537,27313677 -g1,12022:23487284,27313677 -g1,12022:25080464,27313677 -g1,12022:28363817,27313677 -k1,12023:32583029,27313677:2523796 -g1,12023:32583029,27313677 -) -v1,12025:6630773,28419415:0,393216,0 -(1,12044:6630773,33344664:25952256,5318465,196608 -g1,12044:6630773,33344664 -g1,12044:6630773,33344664 -g1,12044:6434165,33344664 -(1,12044:6434165,33344664:0,5318465,196608 -r1,12082:32779637,33344664:26345472,5515073,196608 -k1,12044:6434165,33344664:-26345472 -) -(1,12044:6434165,33344664:26345472,5318465,196608 -[1,12044:6630773,33344664:25952256,5121857,0 -(1,12027:6630773,28627033:25952256,404226,101187 -(1,12026:6630773,28627033:0,0,0 -g1,12026:6630773,28627033 -g1,12026:6630773,28627033 -g1,12026:6303093,28627033 -(1,12026:6303093,28627033:0,0,0 -) -g1,12026:6630773,28627033 -) -k1,12027:6630773,28627033:0 -g1,12027:9159939,28627033 -g1,12027:9792231,28627033 -g1,12027:11689106,28627033 -g1,12027:13269835,28627033 -g1,12027:13902127,28627033 -g1,12027:14850565,28627033 -g1,12027:15799002,28627033 -g1,12027:16431294,28627033 -h1,12027:17063586,28627033:0,0,0 -k1,12027:32583029,28627033:15519443 -g1,12027:32583029,28627033 -) -(1,12031:6630773,29293211:25952256,404226,76021 -(1,12029:6630773,29293211:0,0,0 -g1,12029:6630773,29293211 -g1,12029:6630773,29293211 -g1,12029:6303093,29293211 -(1,12029:6303093,29293211:0,0,0 -) -g1,12029:6630773,29293211 -) -g1,12031:7579210,29293211 -g1,12031:8843793,29293211 -k1,12031:8843793,29293211:0 -h1,12031:11689104,29293211:0,0,0 -k1,12031:32583028,29293211:20893924 -g1,12031:32583028,29293211 -) -(1,12033:6630773,30614749:25952256,404226,101187 -(1,12032:6630773,30614749:0,0,0 -g1,12032:6630773,30614749 -g1,12032:6630773,30614749 -g1,12032:6303093,30614749 -(1,12032:6303093,30614749:0,0,0 -) -g1,12032:6630773,30614749 -) -k1,12033:6630773,30614749:0 -g1,12033:9159939,30614749 -g1,12033:9792231,30614749 -g1,12033:11689106,30614749 -g1,12033:13269835,30614749 -g1,12033:13902127,30614749 -g1,12033:14850565,30614749 -g1,12033:15799002,30614749 -g1,12033:16431294,30614749 -h1,12033:17063586,30614749:0,0,0 -k1,12033:32583029,30614749:15519443 -g1,12033:32583029,30614749 -) -(1,12037:6630773,31280927:25952256,404226,76021 -(1,12035:6630773,31280927:0,0,0 -g1,12035:6630773,31280927 -g1,12035:6630773,31280927 -g1,12035:6303093,31280927 -(1,12035:6303093,31280927:0,0,0 -) -g1,12035:6630773,31280927 -) -g1,12037:7579210,31280927 -g1,12037:8843793,31280927 -k1,12037:8843793,31280927:0 -h1,12037:11689104,31280927:0,0,0 -k1,12037:32583028,31280927:20893924 -g1,12037:32583028,31280927 -) -(1,12039:6630773,32602465:25952256,404226,101187 -(1,12038:6630773,32602465:0,0,0 -g1,12038:6630773,32602465 -g1,12038:6630773,32602465 -g1,12038:6303093,32602465 -(1,12038:6303093,32602465:0,0,0 -) -g1,12038:6630773,32602465 -) -k1,12039:6630773,32602465:0 -g1,12039:9159939,32602465 -g1,12039:9792231,32602465 -g1,12039:11689106,32602465 -g1,12039:13269835,32602465 -g1,12039:13902127,32602465 -g1,12039:14850565,32602465 -g1,12039:15799002,32602465 -g1,12039:16431294,32602465 -g1,12039:17379732,32602465 -g1,12039:20857335,32602465 -g1,12039:21489627,32602465 -h1,12039:23386501,32602465:0,0,0 -k1,12039:32583029,32602465:9196528 -g1,12039:32583029,32602465 -) -(1,12043:6630773,33268643:25952256,404226,76021 -(1,12041:6630773,33268643:0,0,0 -g1,12041:6630773,33268643 -g1,12041:6630773,33268643 -g1,12041:6303093,33268643 -(1,12041:6303093,33268643:0,0,0 -) -g1,12041:6630773,33268643 -) -g1,12043:7579210,33268643 -g1,12043:8843793,33268643 -h1,12043:11372958,33268643:0,0,0 -k1,12043:32583030,33268643:21210072 -g1,12043:32583030,33268643 -) -] -) -g1,12044:32583029,33344664 -g1,12044:6630773,33344664 -g1,12044:6630773,33344664 -g1,12044:32583029,33344664 -g1,12044:32583029,33344664 -) -h1,12044:6630773,33541272:0,0,0 -v1,12048:6630773,35261879:0,393216,0 -(1,12082:6630773,45706769:25952256,10838106,0 -g1,12082:6630773,45706769 -g1,12082:6303093,45706769 -r1,12082:6401397,45706769:98304,10838106,0 -g1,12082:6600626,45706769 -g1,12082:6797234,45706769 -[1,12082:6797234,45706769:25785795,10838106,0 -(1,12049:6797234,35682463:25785795,813800,267386 -(1,12048:6797234,35682463:0,813800,267386 -r1,12082:8134168,35682463:1336934,1081186,267386 -k1,12048:6797234,35682463:-1336934 -) -(1,12048:6797234,35682463:1336934,813800,267386 -) -k1,12048:8402448,35682463:268280 -k1,12048:8730128,35682463:327680 -k1,12048:11704389,35682463:268279 -k1,12048:14998466,35682463:268280 -k1,12048:16412970,35682463:268279 -(1,12048:16412970,35682463:0,452978,115847 -r1,12082:18881507,35682463:2468537,568825,115847 -k1,12048:16412970,35682463:-2468537 -) -(1,12048:16412970,35682463:2468537,452978,115847 -k1,12048:16412970,35682463:3277 -h1,12048:18878230,35682463:0,411205,112570 -) -k1,12048:19149787,35682463:268280 -k1,12048:20609512,35682463:268280 -k1,12048:24363651,35682463:268279 -k1,12048:27657728,35682463:268280 -k1,12048:29072232,35682463:268279 -(1,12048:29072232,35682463:0,452978,115847 -r1,12082:31540769,35682463:2468537,568825,115847 -k1,12048:29072232,35682463:-2468537 -) -(1,12048:29072232,35682463:2468537,452978,115847 -k1,12048:29072232,35682463:3277 -h1,12048:31537492,35682463:0,411205,112570 -) -k1,12048:31809049,35682463:268280 -k1,12049:32583029,35682463:0 -) -(1,12049:6797234,36523951:25785795,513147,134348 -k1,12048:8560949,36523951:195438 -k1,12048:9571654,36523951:195437 -k1,12048:14161281,36523951:195438 -k1,12048:16211387,36523951:195437 -k1,12048:17216195,36523951:195438 -k1,12048:17767492,36523951:195437 -k1,12048:19835949,36523951:195438 -k1,12048:21050472,36523951:195438 -k1,12048:21905201,36523951:195437 -k1,12048:23119724,36523951:195438 -k1,12048:27270259,36523951:195437 -k1,12048:28932393,36523951:195438 -k1,12048:31397997,36523951:195437 -k1,12048:32051532,36523951:195438 -k1,12048:32583029,36523951:0 -) -(1,12049:6797234,37365439:25785795,513147,126483 -k1,12048:9647067,37365439:219873 -k1,12048:10518368,37365439:219873 -k1,12048:12997268,37365439:219874 -k1,12048:15102612,37365439:219873 -k1,12048:16341570,37365439:219873 -k1,12048:17429795,37365439:219873 -k1,12048:18641229,37365439:219874 -k1,12048:22072366,37365439:219873 -k1,12048:23081948,37365439:219873 -k1,12048:23779578,37365439:219873 -k1,12048:24867803,37365439:219873 -k1,12048:26079237,37365439:219874 -k1,12048:29510374,37365439:219873 -k1,12048:30346285,37365439:219873 -k1,12049:32583029,37365439:0 -) -(1,12049:6797234,38206927:25785795,513147,134348 -k1,12048:8010961,38206927:223478 -k1,12048:12520493,38206927:223477 -k1,12048:15674741,38206927:223478 -k1,12048:16845869,38206927:223477 -k1,12048:18536043,38206927:223478 -k1,12048:20282577,38206927:223477 -k1,12048:21374407,38206927:223478 -k1,12048:23128151,38206927:223478 -k1,12048:24003056,38206927:223477 -k1,12048:25041802,38206927:223478 -k1,12048:26468520,38206927:223477 -k1,12048:29798405,38206927:223478 -k1,12048:30499639,38206927:223477 -k1,12048:31591469,38206927:223478 -k1,12048:32583029,38206927:0 -) -(1,12049:6797234,39048415:25785795,513147,134348 -k1,12048:9173405,39048415:208895 -k1,12048:9995062,39048415:208895 -k1,12048:13134727,39048415:208895 -k1,12048:14291273,39048415:208895 -$1,12048:14291273,39048415 -k1,12048:14958926,39048415:199726 -k1,12048:15726850,39048415:199727 -$1,12048:17111626,39048415 -k1,12048:17494191,39048415:208895 -k1,12048:18571438,39048415:208895 -k1,12048:20310599,39048415:208895 -k1,12048:21170922,39048415:208895 -k1,12048:22645973,39048415:208895 -k1,12048:23873953,39048415:208895 -k1,12048:26683317,39048415:208895 -k1,12048:27839863,39048415:208895 -k1,12048:29500380,39048415:208895 -k1,12048:30728360,39048415:208895 -k1,12048:32583029,39048415:0 -) -(1,12049:6797234,39889903:25785795,485622,95027 -g1,12048:7805833,39889903 -$1,12048:7805833,39889903 -g1,12048:9198343,39889903 -g1,12048:9948600,39889903 -$1,12048:11731835,39889903 -k1,12049:32583029,39889903:20677524 -g1,12049:32583029,39889903 -) -v1,12051:6797234,41080369:0,393216,0 -(1,12064:6797234,44017902:25785795,3330749,196608 -g1,12064:6797234,44017902 -g1,12064:6797234,44017902 -g1,12064:6600626,44017902 -(1,12064:6600626,44017902:0,3330749,196608 -r1,12082:32779637,44017902:26179011,3527357,196608 -k1,12064:6600625,44017902:-26179012 -) -(1,12064:6600626,44017902:26179011,3330749,196608 -[1,12064:6797234,44017902:25785795,3134141,0 -(1,12053:6797234,41287987:25785795,404226,101187 -(1,12052:6797234,41287987:0,0,0 -g1,12052:6797234,41287987 -g1,12052:6797234,41287987 -g1,12052:6469554,41287987 -(1,12052:6469554,41287987:0,0,0 -) -g1,12052:6797234,41287987 -) -k1,12053:6797234,41287987:0 -g1,12053:9326400,41287987 -g1,12053:9958692,41287987 -g1,12053:12171712,41287987 -g1,12053:13752441,41287987 -g1,12053:14384733,41287987 -g1,12053:15333171,41287987 -g1,12053:16281608,41287987 -g1,12053:16913900,41287987 -h1,12053:17546192,41287987:0,0,0 -k1,12053:32583029,41287987:15036837 -g1,12053:32583029,41287987 -) -(1,12057:6797234,41954165:25785795,404226,76021 -(1,12055:6797234,41954165:0,0,0 -g1,12055:6797234,41954165 -g1,12055:6797234,41954165 -g1,12055:6469554,41954165 -(1,12055:6469554,41954165:0,0,0 -) -g1,12055:6797234,41954165 -) -g1,12057:7745671,41954165 -g1,12057:9010254,41954165 -k1,12057:9010254,41954165:0 -h1,12057:11855565,41954165:0,0,0 -k1,12057:32583029,41954165:20727464 -g1,12057:32583029,41954165 -) -(1,12059:6797234,43275703:25785795,404226,101187 -(1,12058:6797234,43275703:0,0,0 -g1,12058:6797234,43275703 -g1,12058:6797234,43275703 -g1,12058:6469554,43275703 -(1,12058:6469554,43275703:0,0,0 -) -g1,12058:6797234,43275703 -) -k1,12059:6797234,43275703:0 -g1,12059:9326400,43275703 -g1,12059:9958692,43275703 -g1,12059:12171712,43275703 -g1,12059:13752441,43275703 -g1,12059:14384733,43275703 -g1,12059:15333171,43275703 -g1,12059:16281608,43275703 -g1,12059:16913900,43275703 -g1,12059:17862338,43275703 -g1,12059:21339941,43275703 -g1,12059:21972233,43275703 -h1,12059:23869107,43275703:0,0,0 -k1,12059:32583029,43275703:8713922 -g1,12059:32583029,43275703 -) -(1,12063:6797234,43941881:25785795,404226,76021 -(1,12061:6797234,43941881:0,0,0 -g1,12061:6797234,43941881 -g1,12061:6797234,43941881 -g1,12061:6469554,43941881 -(1,12061:6469554,43941881:0,0,0 -) -g1,12061:6797234,43941881 -) -g1,12063:7745671,43941881 -g1,12063:9010254,43941881 -h1,12063:11539419,43941881:0,0,0 -k1,12063:32583029,43941881:21043610 -g1,12063:32583029,43941881 -) -] -) -g1,12064:32583029,44017902 -g1,12064:6797234,44017902 -g1,12064:6797234,44017902 -g1,12064:32583029,44017902 -g1,12064:32583029,44017902 -) -h1,12064:6797234,44214510:0,0,0 -(1,12068:6797234,45580286:25785795,513147,126483 -h1,12067:6797234,45580286:983040,0,0 -k1,12067:8934738,45580286:200915 -k1,12067:10160635,45580286:200914 -k1,12067:12216874,45580286:200915 -k1,12067:13702295,45580286:200915 -k1,12067:14519247,45580286:200914 -k1,12067:15739247,45580286:200915 -k1,12067:17307242,45580286:200914 -k1,12067:18167449,45580286:200915 -k1,12067:18724224,45580286:200915 -k1,12067:22283858,45580286:200914 -k1,12067:26266200,45580286:200915 -k1,12067:27613340,45580286:200915 -k1,12067:28833339,45580286:200914 -k1,12067:31563944,45580286:200915 -k1,12067:32583029,45580286:0 -) -] -g1,12082:32583029,45706769 -) -] -(1,12082:32583029,45706769:0,0,0 -g1,12082:32583029,45706769 -) -) -] -(1,12082:6630773,47279633:25952256,0,0 -h1,12082:6630773,47279633:25952256,0,0 -) -] -(1,12082:4262630,4025873:0,0,0 -[1,12082:-473656,4025873:0,0,0 -(1,12082:-473656,-710413:0,0,0 -(1,12082:-473656,-710413:0,0,0 -g1,12082:-473656,-710413 ) -g1,12082:-473656,-710413 +k1,11509:3078556,2439708:-34777008 ) ] +[1,11509:3078558,4812305:0,0,0 +(1,11509:3078558,49800853:0,16384,2228224 +k1,11509:1358238,49800853:-1720320 +(1,11038:1358238,49800853:1720320,16384,2228224 +(1,11038:1358238,49800853:1179648,16384,0 +r1,11509:2537886,49800853:1179648,16384,0 ) -] -!26532 -}206 -Input:1784:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1785:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1786:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1787:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1788:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1789:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1790:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1791:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1792:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1793:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1794:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1046 -{207 -[1,12120:4262630,47279633:28320399,43253760,0 -(1,12120:4262630,4025873:0,0,0 -[1,12120:-473656,4025873:0,0,0 -(1,12120:-473656,-710413:0,0,0 -(1,12120:-473656,-644877:0,0,0 -k1,12120:-473656,-644877:-65536 +g1,11038:3062174,49800853 +(1,11038:3062174,52029077:16384,1703936,0 +[1,11038:3062174,52029077:25952256,1703936,0 +(1,11038:3062174,51504789:25952256,1179648,0 +(1,11038:3062174,51504789:16384,1179648,0 +r1,11509:3078558,51504789:16384,1179648,0 +) +k1,11038:29014430,51504789:25935872 +g1,11038:29014430,51504789 +) +] +) +) +) +] +[1,11509:3078558,4812305:0,0,0 +(1,11509:3078558,49800853:0,16384,2228224 +g1,11509:29030814,49800853 +g1,11509:36135244,49800853 +(1,11038:36135244,49800853:1720320,16384,2228224 +(1,11038:36135244,52029077:16384,1703936,0 +[1,11038:36135244,52029077:25952256,1703936,0 +(1,11038:36135244,51504789:25952256,1179648,0 +(1,11038:36135244,51504789:16384,1179648,0 +r1,11509:36151628,51504789:16384,1179648,0 +) +k1,11038:62087500,51504789:25935872 +g1,11038:62087500,51504789 +) +] +) +g1,11038:36675916,49800853 +(1,11038:36675916,49800853:1179648,16384,0 +r1,11509:37855564,49800853:1179648,16384,0 +) +) +k1,11509:3078556,49800853:-34777008 +) +] +g1,11509:6630773,4812305 +k1,11509:23552825,4812305:15726675 +g1,11509:25175496,4812305 +g1,11509:25997972,4812305 +g1,11509:28481131,4812305 +g1,11509:30046786,4812305 +) +) +] +[1,11509:6630773,45706769:25952256,40108032,0 +(1,11509:6630773,45706769:25952256,40108032,0 +(1,11509:6630773,45706769:0,0,0 +g1,11509:6630773,45706769 +) +[1,11509:6630773,45706769:25952256,40108032,0 +(1,11438:6630773,6254097:25952256,513147,134348 +h1,11437:6630773,6254097:983040,0,0 +k1,11437:8666911,6254097:150667 +k1,11437:12026876,6254097:150667 +k1,11437:16260437,6254097:150668 +k1,11437:17070396,6254097:150667 +k1,11437:18240148,6254097:150667 +k1,11437:21693830,6254097:150667 +k1,11437:22503789,6254097:150667 +k1,11437:24744400,6254097:150668 +k1,11437:27971982,6254097:150667 +k1,11437:29858042,6254097:150667 +k1,11437:32583029,6254097:0 +) +(1,11438:6630773,7119177:25952256,513147,134348 +k1,11437:8912175,7119177:197357 +k1,11437:9641029,7119177:197357 +k1,11437:11122892,7119177:197357 +k1,11437:14397164,7119177:197357 +k1,11437:15698803,7119177:197357 +k1,11437:16643926,7119177:197357 +k1,11437:18354508,7119177:197356 +k1,11437:19238027,7119177:197357 +k1,11437:22838013,7119177:197357 +k1,11437:23686798,7119177:197357 +k1,11437:25676565,7119177:197357 +k1,11437:28899719,7119177:197357 +k1,11437:29713114,7119177:197357 +k1,11437:30929556,7119177:197357 +k1,11437:32583029,7119177:0 +) +(1,11438:6630773,7984257:25952256,513147,134348 +k1,11437:8103962,7984257:235214 +k1,11437:9025339,7984257:235215 +k1,11437:11985540,7984257:235214 +k1,11437:15420223,7984257:235215 +k1,11437:17438672,7984257:235214 +k1,11437:20101341,7984257:235215 +k1,11437:23083169,7984257:235214 +k1,11437:25386700,7984257:235215 +k1,11437:26308076,7984257:235214 +k1,11437:29945920,7984257:235215 +k1,11437:30832562,7984257:235214 +k1,11438:32583029,7984257:0 +) +(1,11438:6630773,8849337:25952256,513147,134348 +k1,11437:9823949,8849337:167379 +k1,11437:10859680,8849337:167379 +k1,11437:12402660,8849337:167379 +k1,11437:14100304,8849337:167378 +k1,11437:14919111,8849337:167379 +k1,11437:17459549,8849337:167379 +k1,11437:19265983,8849337:167379 +k1,11437:20049400,8849337:167379 +k1,11437:21699203,8849337:167379 +k1,11437:23381119,8849337:167379 +k1,11437:24780575,8849337:167379 +k1,11437:27226640,8849337:167378 +h1,11437:28197228,8849337:0,0,0 +k1,11437:28364607,8849337:167379 +k1,11437:29341356,8849337:167379 +k1,11437:31006888,8849337:167379 +h1,11437:32202265,8849337:0,0,0 +k1,11438:32583029,8849337:0 +k1,11438:32583029,8849337:0 +) +(1,11440:6630773,9714417:25952256,513147,126483 +h1,11439:6630773,9714417:983040,0,0 +k1,11439:8991098,9714417:180598 +k1,11439:10909712,9714417:180599 +k1,11439:11851838,9714417:180598 +k1,11439:13638069,9714417:180599 +k1,11439:15010112,9714417:180598 +k1,11439:17984511,9714417:180599 +k1,11439:18781147,9714417:180598 +k1,11439:20444170,9714417:180599 +k1,11439:22139305,9714417:180598 +k1,11439:24331859,9714417:180599 +k1,11439:25257601,9714417:180598 +k1,11439:26089628,9714417:180599 +k1,11439:28301187,9714417:180598 +k1,11439:29500871,9714417:180599 +k1,11439:32583029,9714417:0 +) +(1,11440:6630773,10579497:25952256,513147,126483 +g1,11439:7489294,10579497 +g1,11439:8459226,10579497 +k1,11440:32583030,10579497:21203520 +g1,11440:32583030,10579497 +) +v1,11442:6630773,11264352:0,393216,0 +(1,11449:6630773,12401144:25952256,1530008,196608 +g1,11449:6630773,12401144 +g1,11449:6630773,12401144 +g1,11449:6434165,12401144 +(1,11449:6434165,12401144:0,1530008,196608 +r1,11509:32779637,12401144:26345472,1726616,196608 +k1,11449:6434165,12401144:-26345472 +) +(1,11449:6434165,12401144:26345472,1530008,196608 +[1,11449:6630773,12401144:25952256,1333400,0 +(1,11444:6630773,11498789:25952256,431045,79822 +(1,11443:6630773,11498789:0,0,0 +g1,11443:6630773,11498789 +g1,11443:6630773,11498789 +g1,11443:6303093,11498789 +(1,11443:6303093,11498789:0,0,0 +) +g1,11443:6630773,11498789 +) +h1,11444:7626635,11498789:0,0,0 +k1,11444:32583029,11498789:24956394 +g1,11444:32583029,11498789 +) +(1,11448:6630773,12314716:25952256,431045,86428 +(1,11446:6630773,12314716:0,0,0 +g1,11446:6630773,12314716 +g1,11446:6630773,12314716 +g1,11446:6303093,12314716 +(1,11446:6303093,12314716:0,0,0 +) +g1,11446:6630773,12314716 +) +g1,11448:7626635,12314716 +g1,11448:10614220,12314716 +g1,11448:12273990,12314716 +g1,11448:13601806,12314716 +g1,11448:13933760,12314716 +h1,11448:18913069,12314716:0,0,0 +k1,11448:32583029,12314716:13669960 +g1,11448:32583029,12314716 +) +] +) +g1,11449:32583029,12401144 +g1,11449:6630773,12401144 +g1,11449:6630773,12401144 +g1,11449:32583029,12401144 +g1,11449:32583029,12401144 +) +h1,11449:6630773,12597752:0,0,0 +v1,11453:6630773,13462832:0,393216,0 +(1,11493:6630773,27762008:25952256,14692392,0 +g1,11493:6630773,27762008 +g1,11493:6237557,27762008 +r1,11509:6368629,27762008:131072,14692392,0 +g1,11493:6567858,27762008 +g1,11493:6764466,27762008 +[1,11493:6764466,27762008:25818563,14692392,0 +(1,11454:6764466,13771130:25818563,701514,196608 +(1,11453:6764466,13771130:0,701514,196608 +r1,11509:8010564,13771130:1246098,898122,196608 +k1,11453:6764466,13771130:-1246098 +) +(1,11453:6764466,13771130:1246098,701514,196608 +) +k1,11453:8203209,13771130:192645 +k1,11453:8530889,13771130:327680 +k1,11453:11520439,13771130:197716 +k1,11453:12082534,13771130:197715 +k1,11453:13653884,13771130:197715 +k1,11453:16849389,13771130:192645 +k1,11453:17995584,13771130:192646 +k1,11453:19320691,13771130:192645 +k1,11453:21474174,13771130:192646 +k1,11453:22022679,13771130:192645 +k1,11453:24237111,13771130:192646 +k1,11453:27176370,13771130:192645 +k1,11453:29571681,13771130:192646 +k1,11453:30936765,13771130:192645 +k1,11454:32583029,13771130:0 +) +(1,11454:6764466,14636210:25818563,513147,95026 +k1,11453:9171452,14636210:230535 +k1,11453:10686494,14636210:230536 +k1,11453:13884499,14636210:230535 +k1,11453:15682656,14636210:230536 +k1,11453:16932276,14636210:230535 +k1,11453:19978894,14636210:230536 +k1,11453:20825467,14636210:230535 +k1,11453:21411863,14636210:230536 +k1,11453:23620275,14636210:230535 +k1,11453:24869896,14636210:230536 +k1,11453:26838446,14636210:230535 +k1,11453:27728274,14636210:230536 +k1,11453:30431482,14636210:230535 +k1,11453:32583029,14636210:0 +) +(1,11454:6764466,15501290:25818563,513147,102891 +k1,11453:8379180,15501290:178820 +k1,11453:9426351,15501290:178819 +k1,11453:11135437,15501290:178820 +k1,11453:11670117,15501290:178820 +k1,11453:14360932,15501290:178820 +k1,11453:16451436,15501290:178819 +k1,11453:17702425,15501290:178820 +k1,11453:18749597,15501290:178820 +k1,11453:20403631,15501290:178819 +k1,11453:21795522,15501290:178820 +k1,11453:24657386,15501290:178820 +k1,11453:25522368,15501290:178820 +k1,11453:27769503,15501290:178819 +k1,11453:28607615,15501290:178820 +k1,11453:32583029,15501290:0 +) +(1,11454:6764466,16366370:25818563,505283,134348 +k1,11453:10032667,16366370:191286 +k1,11453:11845969,16366370:191286 +k1,11453:12785021,16366370:191286 +k1,11453:15770107,16366370:191286 +k1,11453:16577431,16366370:191286 +k1,11453:19177820,16366370:191286 +k1,11453:21193628,16366370:191286 +k1,11453:22338464,16366370:191287 +k1,11453:23662212,16366370:191286 +k1,11453:24945983,16366370:191286 +(1,11453:24945983,16366370:0,435480,115847 +r1,11509:27414520,16366370:2468537,551327,115847 +k1,11453:24945983,16366370:-2468537 +) +(1,11453:24945983,16366370:2468537,435480,115847 +k1,11453:24945983,16366370:3277 +h1,11453:27411243,16366370:0,411205,112570 +) +k1,11453:27605806,16366370:191286 +k1,11453:28988537,16366370:191286 +k1,11453:29865985,16366370:191286 +k1,11453:31451222,16366370:191286 +k1,11453:32583029,16366370:0 +) +(1,11454:6764466,17231450:25818563,513147,134348 +g1,11453:9086406,17231450 +g1,11453:11229432,17231450 +g1,11453:12297013,17231450 +g1,11453:14026508,17231450 +g1,11453:14877165,17231450 +g1,11453:17449453,17231450 +g1,11453:18106779,17231450 +g1,11453:18922046,17231450 +g1,11453:22215230,17231450 +g1,11453:24401511,17231450 +g1,11453:25548391,17231450 +g1,11453:26766705,17231450 +k1,11454:32583029,17231450:1996886 +g1,11454:32583029,17231450 +) +v1,11456:6764466,17916305:0,393216,0 +(1,11462:6764466,19600274:25818563,2077185,196608 +g1,11462:6764466,19600274 +g1,11462:6764466,19600274 +g1,11462:6567858,19600274 +(1,11462:6567858,19600274:0,2077185,196608 +r1,11509:32779637,19600274:26211779,2273793,196608 +k1,11462:6567857,19600274:-26211780 +) +(1,11462:6567858,19600274:26211779,2077185,196608 +[1,11462:6764466,19600274:25818563,1880577,0 +(1,11458:6764466,18150742:25818563,431045,86428 +(1,11457:6764466,18150742:0,0,0 +g1,11457:6764466,18150742 +g1,11457:6764466,18150742 +g1,11457:6436786,18150742 +(1,11457:6436786,18150742:0,0,0 +) +g1,11457:6764466,18150742 +) +k1,11458:6764466,18150742:0 +g1,11458:10084006,18150742 +g1,11458:11079868,18150742 +g1,11458:15395269,18150742 +g1,11458:16723085,18150742 +h1,11458:17055039,18150742:0,0,0 +k1,11458:32583029,18150742:15527990 +g1,11458:32583029,18150742 +) +(1,11459:6764466,18835597:25818563,424439,79822 +h1,11459:6764466,18835597:0,0,0 +g1,11459:7096420,18835597 +g1,11459:7428374,18835597 +g1,11459:8424236,18835597 +g1,11459:9088144,18835597 +k1,11459:9088144,18835597:0 +h1,11459:11743776,18835597:0,0,0 +k1,11459:32583028,18835597:20839252 +g1,11459:32583028,18835597 +) +(1,11460:6764466,19520452:25818563,424439,79822 +h1,11460:6764466,19520452:0,0,0 +h1,11460:7096420,19520452:0,0,0 +k1,11460:32583028,19520452:25486608 +g1,11460:32583028,19520452 +) +] +) +g1,11462:32583029,19600274 +g1,11462:6764466,19600274 +g1,11462:6764466,19600274 +g1,11462:32583029,19600274 +g1,11462:32583029,19600274 +) +h1,11462:6764466,19796882:0,0,0 +(1,11466:6764466,20661962:25818563,505283,126483 +h1,11465:6764466,20661962:983040,0,0 +g1,11465:8900284,20661962 +g1,11465:10203795,20661962 +g1,11465:11836952,20661962 +g1,11465:13128666,20661962 +g1,11465:14425623,20661962 +g1,11465:15908047,20661962 +g1,11465:18853890,20661962 +g1,11465:19669157,20661962 +g1,11465:20224246,20661962 +k1,11466:32583029,20661962:9523696 +g1,11466:32583029,20661962 +) +v1,11468:6764466,21346817:0,393216,0 +(1,11475:6764466,22453881:25818563,1500280,196608 +g1,11475:6764466,22453881 +g1,11475:6764466,22453881 +g1,11475:6567858,22453881 +(1,11475:6567858,22453881:0,1500280,196608 +r1,11509:32779637,22453881:26211779,1696888,196608 +k1,11475:6567857,22453881:-26211780 +) +(1,11475:6567858,22453881:26211779,1500280,196608 +[1,11475:6764466,22453881:25818563,1303672,0 +(1,11470:6764466,21558132:25818563,407923,9908 +(1,11469:6764466,21558132:0,0,0 +g1,11469:6764466,21558132 +g1,11469:6764466,21558132 +g1,11469:6436786,21558132 +(1,11469:6436786,21558132:0,0,0 +) +g1,11469:6764466,21558132 +) +g1,11470:8756190,21558132 +g1,11470:11411822,21558132 +h1,11470:12739638,21558132:0,0,0 +k1,11470:32583030,21558132:19843392 +g1,11470:32583030,21558132 +) +(1,11474:6764466,22374059:25818563,424439,79822 +(1,11472:6764466,22374059:0,0,0 +g1,11472:6764466,22374059 +g1,11472:6764466,22374059 +g1,11472:6436786,22374059 +(1,11472:6436786,22374059:0,0,0 +) +g1,11472:6764466,22374059 +) +g1,11474:7760328,22374059 +g1,11474:9088144,22374059 +g1,11474:10747914,22374059 +g1,11474:11079868,22374059 +g1,11474:12407684,22374059 +g1,11474:12739638,22374059 +g1,11474:14067454,22374059 +g1,11474:14399408,22374059 +g1,11474:15727224,22374059 +g1,11474:16059178,22374059 +g1,11474:17386994,22374059 +g1,11474:17718948,22374059 +h1,11474:18714810,22374059:0,0,0 +k1,11474:32583029,22374059:13868219 +g1,11474:32583029,22374059 +) +] +) +g1,11475:32583029,22453881 +g1,11475:6764466,22453881 +g1,11475:6764466,22453881 +g1,11475:32583029,22453881 +g1,11475:32583029,22453881 +) +h1,11475:6764466,22650489:0,0,0 +(1,11479:6764466,23515569:25818563,513147,126483 +h1,11478:6764466,23515569:983040,0,0 +k1,11478:8726239,23515569:149703 +k1,11478:10457981,23515569:149703 +k1,11478:11626769,23515569:149703 +k1,11478:15032301,23515569:149703 +k1,11478:16050356,23515569:149703 +k1,11478:18573118,23515569:149703 +k1,11478:19741905,23515569:149702 +k1,11478:21629623,23515569:149703 +k1,11478:22438618,23515569:149703 +k1,11478:23686049,23515569:149703 +k1,11478:25118947,23515569:149703 +k1,11478:28015264,23515569:149703 +k1,11478:28781005,23515569:149703 +k1,11478:30413132,23515569:149703 +k1,11479:32583029,23515569:0 +) +(1,11479:6764466,24380649:25818563,505283,126483 +g1,11478:8033243,24380649 +g1,11478:9100824,24380649 +g1,11478:10775268,24380649 +g1,11478:12719065,24380649 +g1,11478:13937379,24380649 +g1,11478:16330753,24380649 +k1,11479:32583029,24380649:14340591 +g1,11479:32583029,24380649 +) +v1,11481:6764466,25065504:0,393216,0 +(1,11490:6764466,27565400:25818563,2893112,196608 +g1,11490:6764466,27565400 +g1,11490:6764466,27565400 +g1,11490:6567858,27565400 +(1,11490:6567858,27565400:0,2893112,196608 +r1,11509:32779637,27565400:26211779,3089720,196608 +k1,11490:6567857,27565400:-26211780 +) +(1,11490:6567858,27565400:26211779,2893112,196608 +[1,11490:6764466,27565400:25818563,2696504,0 +(1,11483:6764466,25299941:25818563,431045,9908 +(1,11482:6764466,25299941:0,0,0 +g1,11482:6764466,25299941 +g1,11482:6764466,25299941 +g1,11482:6436786,25299941 +(1,11482:6436786,25299941:0,0,0 +) +g1,11482:6764466,25299941 +) +k1,11483:6764466,25299941:0 +h1,11483:9752052,25299941:0,0,0 +k1,11483:32583028,25299941:22830976 +g1,11483:32583028,25299941 +) +(1,11489:6764466,26115868:25818563,431045,86428 +(1,11485:6764466,26115868:0,0,0 +g1,11485:6764466,26115868 +g1,11485:6764466,26115868 +g1,11485:6436786,26115868 +(1,11485:6436786,26115868:0,0,0 +) +g1,11485:6764466,26115868 +) +g1,11489:7760328,26115868 +g1,11489:12075729,26115868 +g1,11489:13403545,26115868 +h1,11489:13735499,26115868:0,0,0 +k1,11489:32583029,26115868:18847530 +g1,11489:32583029,26115868 +) +(1,11489:6764466,26800723:25818563,424439,79822 +h1,11489:6764466,26800723:0,0,0 +g1,11489:7760328,26800723 +g1,11489:8092282,26800723 +g1,11489:8424236,26800723 +g1,11489:9420098,26800723 +g1,11489:10084006,26800723 +h1,11489:12739637,26800723:0,0,0 +k1,11489:32583029,26800723:19843392 +g1,11489:32583029,26800723 +) +(1,11489:6764466,27485578:25818563,424439,79822 +h1,11489:6764466,27485578:0,0,0 +g1,11489:7760328,27485578 +h1,11489:8092282,27485578:0,0,0 +k1,11489:32583030,27485578:24490748 +g1,11489:32583030,27485578 +) +] +) +g1,11490:32583029,27565400 +g1,11490:6764466,27565400 +g1,11490:6764466,27565400 +g1,11490:32583029,27565400 +g1,11490:32583029,27565400 +) +h1,11490:6764466,27762008:0,0,0 +] +g1,11493:32583029,27762008 +) +h1,11493:6630773,27762008:0,0,0 +(1,11495:6630773,30593168:25952256,32768,229376 +(1,11495:6630773,30593168:0,32768,229376 +(1,11495:6630773,30593168:5505024,32768,229376 +r1,11509:12135797,30593168:5505024,262144,229376 +) +k1,11495:6630773,30593168:-5505024 +) +(1,11495:6630773,30593168:25952256,32768,0 +r1,11509:32583029,30593168:25952256,32768,0 +) +) +(1,11495:6630773,32225020:25952256,606339,161218 +(1,11495:6630773,32225020:1974731,582746,14155 +g1,11495:6630773,32225020 +g1,11495:8605504,32225020 +) +g1,11495:12064232,32225020 +g1,11495:15314556,32225020 +g1,11495:17024259,32225020 +k1,11495:32583029,32225020:12125994 +g1,11495:32583029,32225020 +) +(1,11499:6630773,33483316:25952256,513147,134348 +k1,11498:8138806,33483316:147506 +k1,11498:10519125,33483316:147507 +k1,11498:11658191,33483316:147506 +k1,11498:14650616,33483316:147507 +k1,11498:17179700,33483316:147506 +k1,11498:19337195,33483316:147506 +k1,11498:22395156,33483316:147507 +k1,11498:24494324,33483316:147506 +k1,11498:26084277,33483316:147506 +k1,11498:26847822,33483316:147507 +k1,11498:28376172,33483316:147506 +k1,11498:30858727,33483316:147507 +k1,11498:31835263,33483316:147506 +k1,11498:32583029,33483316:0 +) +(1,11499:6630773,34348396:25952256,513147,134348 +k1,11498:8599222,34348396:205531 +k1,11498:10781974,34348396:205531 +k1,11498:15411185,34348396:205531 +k1,11498:15972576,34348396:205531 +k1,11498:17461302,34348396:205531 +k1,11498:19222002,34348396:205531 +k1,11498:22035212,34348396:205532 +k1,11498:23307014,34348396:205531 +k1,11498:24888146,34348396:205531 +k1,11498:27697422,34348396:205531 +k1,11498:28258813,34348396:205531 +k1,11498:30019513,34348396:205531 +k1,11498:31297213,34348396:205531 +k1,11498:32583029,34348396:0 +) +(1,11499:6630773,35213476:25952256,513147,134348 +k1,11498:7244607,35213476:257974 +k1,11498:8437123,35213476:257973 +k1,11498:9354389,35213476:257974 +k1,11498:13165724,35213476:257973 +k1,11498:16449495,35213476:257974 +k1,11498:17390353,35213476:257973 +k1,11498:20329405,35213476:257974 +k1,11498:21871884,35213476:257973 +k1,11498:25563289,35213476:257974 +k1,11498:29225858,35213476:257974 +k1,11498:30293201,35213476:257973 +k1,11498:32583029,35213476:0 +) +(1,11499:6630773,36078556:25952256,513147,134348 +k1,11498:9999324,36078556:241828 +k1,11498:10892579,36078556:241827 +k1,11498:12153492,36078556:241828 +k1,11498:13678515,36078556:241828 +k1,11498:15649183,36078556:241828 +k1,11498:20129223,36078556:241827 +k1,11498:21141754,36078556:241828 +k1,11498:26038604,36078556:241828 +k1,11498:26939724,36078556:241828 +k1,11498:28511932,36078556:241827 +k1,11498:30986572,36078556:241828 +k1,11498:32583029,36078556:0 +) +(1,11499:6630773,36943636:25952256,513147,126483 +k1,11498:7363728,36943636:201458 +k1,11498:10774483,36943636:201457 +k1,11498:12442637,36943636:201458 +k1,11498:13110055,36943636:201457 +k1,11498:14687114,36943636:201458 +k1,11498:16242546,36943636:201458 +k1,11498:20329633,36943636:201457 +k1,11498:20886951,36943636:201458 +k1,11498:22469252,36943636:201457 +k1,11498:23803172,36943636:201458 +k1,11498:25965467,36943636:201458 +k1,11498:26522784,36943636:201457 +k1,11498:28007437,36943636:201458 +k1,11498:30663217,36943636:201457 +k1,11498:31812326,36943636:201458 +k1,11498:32583029,36943636:0 +) +(1,11499:6630773,37808716:25952256,505283,134348 +g1,11498:9321025,37808716 +g1,11498:11075423,37808716 +g1,11498:13284641,37808716 +g1,11498:13839730,37808716 +k1,11499:32583029,37808716:16738553 +g1,11499:32583029,37808716 +) +(1,11501:6630773,38673796:25952256,513147,134348 +h1,11500:6630773,38673796:983040,0,0 +k1,11500:10201320,38673796:232798 +k1,11500:11425678,38673796:232798 +k1,11500:15751200,38673796:232799 +k1,11500:17056167,38673796:232798 +k1,11500:21208018,38673796:232798 +k1,11500:24753006,38673796:232798 +k1,11500:26004890,38673796:232799 +k1,11500:28395133,38673796:232798 +k1,11500:31923737,38673796:232798 +k1,11500:32583029,38673796:0 +) +(1,11501:6630773,39538876:25952256,513147,134348 +k1,11500:9149372,39538876:201901 +k1,11500:10034158,39538876:201901 +k1,11500:12459040,39538876:201901 +k1,11500:13320234,39538876:201902 +k1,11500:15724145,39538876:201901 +k1,11500:18389544,39538876:201901 +k1,11500:19219280,39538876:201901 +k1,11500:20624422,39538876:201901 +k1,11500:22770121,39538876:201901 +k1,11500:25204835,39538876:201902 +k1,11500:26398296,39538876:201901 +k1,11500:30519250,39538876:201901 +k1,11500:31380443,39538876:201901 +k1,11501:32583029,39538876:0 +) +(1,11501:6630773,40403956:25952256,505283,134348 +k1,11500:8552803,40403956:178117 +k1,11500:10111109,40403956:178118 +k1,11500:11280786,40403956:178117 +k1,11500:12605128,40403956:178117 +k1,11500:15352912,40403956:178117 +k1,11500:16147068,40403956:178118 +k1,11500:18616979,40403956:178117 +k1,11500:21811063,40403956:178117 +k1,11500:23622994,40403956:178118 +k1,11500:24669463,40403956:178117 +k1,11500:26871332,40403956:178117 +k1,11500:28443400,40403956:178117 +k1,11500:30854330,40403956:178118 +k1,11500:31563944,40403956:178117 +k1,11500:32583029,40403956:0 +) +(1,11501:6630773,41269036:25952256,513147,134348 +k1,11500:10073380,41269036:139592 +k1,11500:10872263,41269036:139591 +k1,11500:13615600,41269036:139592 +k1,11500:16426439,41269036:139592 +k1,11500:19230069,41269036:139591 +k1,11500:20028953,41269036:139592 +k1,11500:23194341,41269036:139591 +k1,11500:24223912,41269036:139592 +k1,11500:27251676,41269036:139592 +k1,11500:29770879,41269036:139591 +k1,11500:30929556,41269036:139592 +k1,11500:32583029,41269036:0 +) +(1,11501:6630773,42134116:25952256,513147,134348 +k1,11500:8550373,42134116:181585 +k1,11500:9804127,42134116:181585 +k1,11500:12455764,42134116:181585 +k1,11500:13288777,42134116:181585 +k1,11500:15881432,42134116:181585 +k1,11500:16872387,42134116:181585 +k1,11500:19343799,42134116:181584 +k1,11500:22652107,42134116:181585 +k1,11500:23485120,42134116:181585 +k1,11500:26429048,42134116:181585 +k1,11500:29017115,42134116:181585 +k1,11500:30152249,42134116:181585 +k1,11500:31809049,42134116:181585 +k1,11501:32583029,42134116:0 +) +(1,11501:6630773,42999196:25952256,513147,134348 +k1,11500:8620249,42999196:216072 +k1,11500:10346271,42999196:216072 +k1,11500:12297736,42999196:216072 +k1,11500:15298433,42999196:216072 +k1,11500:16908456,42999196:216072 +k1,11500:19795775,42999196:216072 +k1,11500:24587571,42999196:216072 +k1,11500:28428439,42999196:216072 +k1,11500:29663596,42999196:216072 +k1,11500:31635378,42999196:216072 +k1,11500:32583029,42999196:0 +) +(1,11501:6630773,43864276:25952256,505283,126483 +g1,11500:9491419,43864276 +(1,11500:9491419,43864276:0,452978,115847 +r1,11509:11608244,43864276:2116825,568825,115847 +k1,11500:9491419,43864276:-2116825 +) +(1,11500:9491419,43864276:2116825,452978,115847 +k1,11500:9491419,43864276:3277 +h1,11500:11604967,43864276:0,411205,112570 +) +g1,11500:11807473,43864276 +g1,11500:13198147,43864276 +(1,11500:13198147,43864276:0,452978,115847 +r1,11509:16370107,43864276:3171960,568825,115847 +k1,11500:13198147,43864276:-3171960 +) +(1,11500:13198147,43864276:3171960,452978,115847 +k1,11500:13198147,43864276:3277 +h1,11500:16366830,43864276:0,411205,112570 +) +k1,11501:32583029,43864276:16039252 +g1,11501:32583029,43864276 +) +(1,11503:6630773,44729356:25952256,513147,134348 +h1,11502:6630773,44729356:983040,0,0 +g1,11502:8766591,44729356 +g1,11502:10454143,44729356 +g1,11502:12047323,44729356 +g1,11502:12602412,44729356 +g1,11502:15895596,44729356 +g1,11502:17662446,44729356 +g1,11502:18221468,44729356 +g1,11502:20454934,44729356 +g1,11502:22708717,44729356 +g1,11502:24675452,44729356 +g1,11502:26372834,44729356 +k1,11503:32583029,44729356:5032513 +g1,11503:32583029,44729356 +) +] +(1,11509:32583029,45706769:0,0,0 +g1,11509:32583029,45706769 +) +) +] +(1,11509:6630773,47279633:25952256,0,0 +h1,11509:6630773,47279633:25952256,0,0 +) +] +(1,11509:4262630,4025873:0,0,0 +[1,11509:-473656,4025873:0,0,0 +(1,11509:-473656,-710413:0,0,0 +(1,11509:-473656,-710413:0,0,0 +g1,11509:-473656,-710413 +) +g1,11509:-473656,-710413 +) +] +) +] +!24660 +}183 +Input:1716:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1717:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1718:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1719:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1720:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1721:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1722:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!670 +{184 +[1,11562:4262630,47279633:28320399,43253760,0 +(1,11562:4262630,4025873:0,0,0 +[1,11562:-473656,4025873:0,0,0 +(1,11562:-473656,-710413:0,0,0 +(1,11562:-473656,-644877:0,0,0 +k1,11562:-473656,-644877:-65536 ) -(1,12120:-473656,4736287:0,0,0 -k1,12120:-473656,4736287:5209943 +(1,11562:-473656,4736287:0,0,0 +k1,11562:-473656,4736287:5209943 ) -g1,12120:-473656,-710413 +g1,11562:-473656,-710413 ) ] ) -[1,12120:6630773,47279633:25952256,43253760,0 -[1,12120:6630773,4812305:25952256,786432,0 -(1,12120:6630773,4812305:25952256,513147,126483 -(1,12120:6630773,4812305:25952256,513147,126483 -g1,12120:3078558,4812305 -[1,12120:3078558,4812305:0,0,0 -(1,12120:3078558,2439708:0,1703936,0 -k1,12120:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,12120:2537886,2439708:1179648,16384,0 +[1,11562:6630773,47279633:25952256,43253760,0 +[1,11562:6630773,4812305:25952256,786432,0 +(1,11562:6630773,4812305:25952256,505283,134348 +(1,11562:6630773,4812305:25952256,505283,134348 +g1,11562:3078558,4812305 +[1,11562:3078558,4812305:0,0,0 +(1,11562:3078558,2439708:0,1703936,0 +k1,11562:1358238,2439708:-1720320 +(1,11038:1358238,2439708:1720320,1703936,0 +(1,11038:1358238,2439708:1179648,16384,0 +r1,11562:2537886,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,12120:3078558,1915420:16384,1179648,0 +g1,11038:3062174,2439708 +(1,11038:3062174,2439708:16384,1703936,0 +[1,11038:3062174,2439708:25952256,1703936,0 +(1,11038:3062174,1915420:25952256,1179648,0 +(1,11038:3062174,1915420:16384,1179648,0 +r1,11562:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +k1,11038:29014430,1915420:25935872 +g1,11038:29014430,1915420 ) ] ) ) ) ] -[1,12120:3078558,4812305:0,0,0 -(1,12120:3078558,2439708:0,1703936,0 -g1,12120:29030814,2439708 -g1,12120:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,12120:36151628,1915420:16384,1179648,0 +[1,11562:3078558,4812305:0,0,0 +(1,11562:3078558,2439708:0,1703936,0 +g1,11562:29030814,2439708 +g1,11562:36135244,2439708 +(1,11038:36135244,2439708:1720320,1703936,0 +(1,11038:36135244,2439708:16384,1703936,0 +[1,11038:36135244,2439708:25952256,1703936,0 +(1,11038:36135244,1915420:25952256,1179648,0 +(1,11038:36135244,1915420:16384,1179648,0 +r1,11562:36151628,1915420:16384,1179648,0 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +k1,11038:62087500,1915420:25935872 +g1,11038:62087500,1915420 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,12120:37855564,2439708:1179648,16384,0 +g1,11038:36675916,2439708 +(1,11038:36675916,2439708:1179648,16384,0 +r1,11562:37855564,2439708:1179648,16384,0 ) ) -k1,12120:3078556,2439708:-34777008 +k1,11562:3078556,2439708:-34777008 ) ] -[1,12120:3078558,4812305:0,0,0 -(1,12120:3078558,49800853:0,16384,2228224 -k1,12120:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,12120:2537886,49800853:1179648,16384,0 +[1,11562:3078558,4812305:0,0,0 +(1,11562:3078558,49800853:0,16384,2228224 +k1,11562:1358238,49800853:-1720320 +(1,11038:1358238,49800853:1720320,16384,2228224 +(1,11038:1358238,49800853:1179648,16384,0 +r1,11562:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,12120:3078558,51504789:16384,1179648,0 +g1,11038:3062174,49800853 +(1,11038:3062174,52029077:16384,1703936,0 +[1,11038:3062174,52029077:25952256,1703936,0 +(1,11038:3062174,51504789:25952256,1179648,0 +(1,11038:3062174,51504789:16384,1179648,0 +r1,11562:3078558,51504789:16384,1179648,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 -) -] -) -) -) -] -[1,12120:3078558,4812305:0,0,0 -(1,12120:3078558,49800853:0,16384,2228224 -g1,12120:29030814,49800853 -g1,12120:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,12120:36151628,51504789:16384,1179648,0 -) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 -) -] -) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,12120:37855564,49800853:1179648,16384,0 -) -) -k1,12120:3078556,49800853:-34777008 -) -] -g1,12120:6630773,4812305 -k1,12120:19540057,4812305:11713907 -g1,12120:21162728,4812305 -g1,12120:21985204,4812305 -g1,12120:24539797,4812305 -g1,12120:25949476,4812305 -g1,12120:28728857,4812305 -g1,12120:29852144,4812305 -) -) -] -[1,12120:6630773,45706769:25952256,40108032,0 -(1,12120:6630773,45706769:25952256,40108032,0 -(1,12120:6630773,45706769:0,0,0 -g1,12120:6630773,45706769 -) -[1,12120:6630773,45706769:25952256,40108032,0 -v1,12082:6630773,6254097:0,393216,0 -(1,12082:6630773,13442647:25952256,7581766,0 -g1,12082:6630773,13442647 -g1,12082:6303093,13442647 -r1,12120:6401397,13442647:98304,7581766,0 -g1,12082:6600626,13442647 -g1,12082:6797234,13442647 -[1,12082:6797234,13442647:25785795,7581766,0 -(1,12068:6797234,6374028:25785795,513147,134348 -k1,12067:9957467,6374028:229463 -k1,12067:10802969,6374028:229464 -k1,12067:12051517,6374028:229463 -k1,12067:13453419,6374028:229463 -k1,12067:15032268,6374028:229463 -k1,12067:17004990,6374028:229464 -k1,12067:18610054,6374028:229463 -k1,12067:19455555,6374028:229463 -k1,12067:21179239,6374028:229463 -k1,12067:22789547,6374028:229464 -k1,12067:23550507,6374028:229463 -k1,12067:24846241,6374028:229463 -k1,12067:26094789,6374028:229463 -k1,12067:27691334,6374028:229464 -k1,12067:28868448,6374028:229463 -k1,12067:32583029,6374028:0 -) -(1,12068:6797234,7215516:25785795,505283,7863 -k1,12068:32583029,7215516:21500396 -g1,12068:32583029,7215516 -) -(1,12070:6797234,8057004:25785795,513147,138281 -h1,12069:6797234,8057004:983040,0,0 -k1,12069:9745184,8057004:181675 -k1,12069:13377985,8057004:181675 -k1,12069:13915520,8057004:181675 -$1,12069:13915520,8057004 -$1,12069:14383447,8057004 -k1,12069:16458458,8057004:181676 -k1,12069:18207754,8057004:181675 -k1,12069:18745289,8057004:181675 -k1,12069:21527433,8057004:181675 -k1,12069:22325146,8057004:181675 -k1,12069:22862681,8057004:181675 -k1,12069:24235801,8057004:181675 -k1,12069:25076769,8057004:181676 -k1,12069:29169633,8057004:181675 -k1,12069:30219660,8057004:181675 -k1,12069:31931601,8057004:181675 -k1,12069:32583029,8057004:0 -) -(1,12070:6797234,8898492:25785795,513147,134348 -k1,12069:8349833,8898492:246466 -k1,12069:10667236,8898492:246465 -k1,12069:13504340,8898492:246466 -k1,12069:14106666,8898492:246466 -k1,12069:17458882,8898492:246465 -k1,12069:18388233,8898492:246466 -k1,12069:22441030,8898492:246466 -k1,12069:23878941,8898492:246466 -k1,12069:24656903,8898492:246465 -k1,12069:27649983,8898492:246466 -k1,12069:29087894,8898492:246466 -k1,12069:29950397,8898492:246465 -k1,12069:31215948,8898492:246466 -k1,12069:32583029,8898492:0 -) -(1,12070:6797234,9739980:25785795,513147,134348 -k1,12069:7728705,9739980:272179 -k1,12069:8356744,9739980:272179 -k1,12069:10501943,9739980:272180 -k1,12069:12494442,9739980:272179 -k1,12069:14131736,9739980:272179 -k1,12069:16289386,9739980:272179 -k1,12069:17580650,9739980:272179 -k1,12069:18384327,9739980:272180 -k1,12069:19315798,9739980:272179 -k1,12069:22204830,9739980:272179 -k1,12069:23519031,9739980:272179 -k1,12069:24147070,9739980:272179 -k1,12069:27525000,9739980:272179 -k1,12069:28988625,9739980:272180 -k1,12069:30129156,9739980:272179 -k1,12069:31931601,9739980:272179 -k1,12069:32583029,9739980:0 -) -(1,12070:6797234,10581468:25785795,505283,126483 -g1,12069:9681473,10581468 -g1,12069:10899787,10581468 -g1,12069:13877743,10581468 -g1,12069:15757315,10581468 -g1,12069:16718072,10581468 -k1,12070:32583029,10581468:15292828 -g1,12070:32583029,10581468 -) -v1,12072:6797234,11771934:0,393216,0 -(1,12079:6797234,12721751:25785795,1343033,196608 -g1,12079:6797234,12721751 -g1,12079:6797234,12721751 -g1,12079:6600626,12721751 -(1,12079:6600626,12721751:0,1343033,196608 -r1,12120:32779637,12721751:26179011,1539641,196608 -k1,12079:6600625,12721751:-26179012 -) -(1,12079:6600626,12721751:26179011,1343033,196608 -[1,12079:6797234,12721751:25785795,1146425,0 -(1,12074:6797234,11979552:25785795,404226,101187 -(1,12073:6797234,11979552:0,0,0 -g1,12073:6797234,11979552 -g1,12073:6797234,11979552 -g1,12073:6469554,11979552 -(1,12073:6469554,11979552:0,0,0 -) -g1,12073:6797234,11979552 -) -k1,12074:6797234,11979552:0 -g1,12074:9326400,11979552 -g1,12074:9958692,11979552 -g1,12074:10907130,11979552 -g1,12074:12487859,11979552 -g1,12074:13120151,11979552 -g1,12074:14068589,11979552 -g1,12074:15017026,11979552 -g1,12074:15649318,11979552 -g1,12074:16597756,11979552 -g1,12074:17230048,11979552 -h1,12074:17546194,11979552:0,0,0 -k1,12074:32583029,11979552:15036835 -g1,12074:32583029,11979552 -) -(1,12078:6797234,12645730:25785795,404226,76021 -(1,12076:6797234,12645730:0,0,0 -g1,12076:6797234,12645730 -g1,12076:6797234,12645730 -g1,12076:6469554,12645730 -(1,12076:6469554,12645730:0,0,0 -) -g1,12076:6797234,12645730 -) -g1,12078:7745671,12645730 -g1,12078:9010254,12645730 -h1,12078:11539419,12645730:0,0,0 -k1,12078:32583029,12645730:21043610 -g1,12078:32583029,12645730 -) -] -) -g1,12079:32583029,12721751 -g1,12079:6797234,12721751 -g1,12079:6797234,12721751 -g1,12079:32583029,12721751 -g1,12079:32583029,12721751 -) -h1,12079:6797234,12918359:0,0,0 -] -g1,12082:32583029,13442647 -) -h1,12082:6630773,13442647:0,0,0 -(1,12084:6630773,15533907:25952256,564462,12975 -(1,12084:6630773,15533907:2450326,534184,12975 -g1,12084:6630773,15533907 -g1,12084:9081099,15533907 -) -g1,12084:12986914,15533907 -g1,12084:15427868,15533907 -g1,12084:17427634,15533907 -g1,12084:18053372,15533907 -k1,12084:32583029,15533907:10236000 -g1,12084:32583029,15533907 -) -(1,12088:6630773,16768611:25952256,505283,134348 -k1,12087:8288715,16768611:172896 -k1,12087:10955910,16768611:172895 -k1,12087:14399053,16768611:172896 -k1,12087:15676231,16768611:172896 -k1,12087:17224728,16768611:172896 -k1,12087:18145389,16768611:172895 -k1,12087:21471222,16768611:172896 -k1,12087:22405646,16768611:172896 -k1,12087:25201293,16768611:172896 -k1,12087:28670649,16768611:172895 -k1,12087:29741388,16768611:172896 -k1,12088:32583029,16768611:0 -) -(1,12088:6630773,17610099:25952256,513147,134348 -k1,12087:9587393,17610099:162165 -k1,12087:13019805,17610099:162165 -k1,12087:13841263,17610099:162166 -k1,12087:16819510,17610099:162165 -k1,12087:20134612,17610099:162165 -k1,12087:21058305,17610099:162165 -k1,12087:25284358,17610099:162166 -k1,12087:26438083,17610099:162165 -k1,12087:28363166,17610099:162165 -k1,12087:32583029,17610099:0 -) -(1,12088:6630773,18451587:25952256,505283,134348 -k1,12087:9645607,18451587:183679 -k1,12087:11209475,18451587:183680 -k1,12087:13129858,18451587:183679 -k1,12087:15005678,18451587:183680 -k1,12087:18485163,18451587:183679 -k1,12087:20062794,18451587:183680 -k1,12087:21553916,18451587:183679 -k1,12087:24231896,18451587:183680 -k1,12087:27685822,18451587:183679 -k1,12087:29319158,18451587:183680 -k1,12087:30118875,18451587:183679 -k1,12087:32583029,18451587:0 -) -(1,12088:6630773,19293075:25952256,505283,95026 -g1,12087:7481430,19293075 -k1,12088:32583029,19293075:19818086 -g1,12088:32583029,19293075 -) -(1,12090:6630773,20134563:25952256,513147,126483 -h1,12089:6630773,20134563:983040,0,0 -k1,12089:8318489,20134563:234783 -k1,12089:9084768,20134563:234782 -k1,12089:11949511,20134563:234783 -k1,12089:12835721,20134563:234782 -k1,12089:15858406,20134563:234783 -k1,12089:17159460,20134563:234783 -k1,12089:18769843,20134563:234782 -k1,12089:24040412,20134563:234783 -k1,12089:26191467,20134563:234782 -k1,12089:27993871,20134563:234783 -k1,12089:28584513,20134563:234782 -k1,12089:31417799,20134563:234783 -k1,12090:32583029,20134563:0 -) -(1,12090:6630773,20976051:25952256,513147,102891 -k1,12089:9666494,20976051:206532 -k1,12089:10945195,20976051:206532 -k1,12089:12437543,20976051:206532 -k1,12089:14211696,20976051:206532 -k1,12089:15437313,20976051:206532 -k1,12089:18173535,20976051:206532 -$1,12089:18173535,20976051 -$1,12089:18494006,20976051 -k1,12089:18874209,20976051:206533 -$1,12089:18874209,20976051 -$1,12089:19319198,20976051 -k1,12089:19525730,20976051:206532 -k1,12089:20923707,20976051:206532 -k1,12089:22832209,20976051:206532 -k1,12089:27324140,20976051:206532 -k1,12089:28158507,20976051:206532 -k1,12089:29816661,20976051:206532 -k1,12089:31563944,20976051:206532 -k1,12089:32583029,20976051:0 -) -(1,12090:6630773,21817539:25952256,513147,126483 -k1,12089:10379359,21817539:262726 -k1,12089:12036036,21817539:262726 -k1,12089:14184234,21817539:262727 -k1,12089:17209303,21817539:262726 -k1,12089:19482674,21817539:262726 -k1,12089:20736960,21817539:262726 -k1,12089:23600811,21817539:262727 -k1,12089:28220371,21817539:262726 -k1,12089:29502182,21817539:262726 -k1,12090:32583029,21817539:0 -) -(1,12090:6630773,22659027:25952256,505283,134348 -k1,12089:8031102,22659027:264590 -k1,12089:9230236,22659027:264591 -k1,12089:10256354,22659027:264590 -k1,12089:11540030,22659027:264591 -k1,12089:16428185,22659027:264590 -k1,12089:20094749,22659027:264590 -k1,12089:24314438,22659027:264591 -k1,12089:27814540,22659027:264590 -(1,12089:27814540,22659027:0,414482,115847 -r1,12120:28172806,22659027:358266,530329,115847 -k1,12089:27814540,22659027:-358266 -) -(1,12089:27814540,22659027:358266,414482,115847 -k1,12089:27814540,22659027:3277 -h1,12089:28169529,22659027:0,411205,112570 -) -k1,12089:28437397,22659027:264591 -k1,12089:31563944,22659027:264590 -k1,12089:32583029,22659027:0 -) -(1,12090:6630773,23500515:25952256,513147,134348 -k1,12089:9304548,23500515:187994 -k1,12089:10151835,23500515:187995 -k1,12089:12350474,23500515:187994 -k1,12089:13189897,23500515:187995 -k1,12089:14125657,23500515:187994 -k1,12089:16488137,23500515:187995 -k1,12089:17359016,23500515:187994 -k1,12089:18335409,23500515:187995 -k1,12089:22002054,23500515:187994 -k1,12089:23209134,23500515:187995 -k1,12089:25410394,23500515:187994 -k1,12089:26257681,23500515:187995 -k1,12089:27464760,23500515:187994 -k1,12089:29630632,23500515:187995 -k1,12089:32583029,23500515:0 -) -(1,12090:6630773,24342003:25952256,0,0 -g1,12089:6630773,24342003 -k1,12090:32583029,24342003:25952256 -g1,12090:32583029,24342003 -) -v1,12092:6630773,25532469:0,393216,0 -(1,12106:6630773,29136180:25952256,3996927,196608 -g1,12106:6630773,29136180 -g1,12106:6630773,29136180 -g1,12106:6434165,29136180 -(1,12106:6434165,29136180:0,3996927,196608 -r1,12120:32779637,29136180:26345472,4193535,196608 -k1,12106:6434165,29136180:-26345472 -) -(1,12106:6434165,29136180:26345472,3996927,196608 -[1,12106:6630773,29136180:25952256,3800319,0 -(1,12094:6630773,25740087:25952256,404226,76021 -(1,12093:6630773,25740087:0,0,0 -g1,12093:6630773,25740087 -g1,12093:6630773,25740087 -g1,12093:6303093,25740087 -(1,12093:6303093,25740087:0,0,0 -) -g1,12093:6630773,25740087 -) -k1,12094:6630773,25740087:0 -h1,12094:9159939,25740087:0,0,0 -k1,12094:32583029,25740087:23423090 -g1,12094:32583029,25740087 -) -(1,12098:6630773,26406265:25952256,404226,76021 -(1,12096:6630773,26406265:0,0,0 -g1,12096:6630773,26406265 -g1,12096:6630773,26406265 -g1,12096:6303093,26406265 -(1,12096:6303093,26406265:0,0,0 -) -g1,12096:6630773,26406265 -) -g1,12098:7579210,26406265 -g1,12098:8843793,26406265 -g1,12098:12321396,26406265 -g1,12098:12637542,26406265 -g1,12098:15798999,26406265 -g1,12098:19276602,26406265 -g1,12098:22754205,26406265 -g1,12098:23070351,26406265 -h1,12098:25915662,26406265:0,0,0 -k1,12098:32583029,26406265:6667367 -g1,12098:32583029,26406265 -) -(1,12100:6630773,27727803:25952256,404226,82312 -(1,12099:6630773,27727803:0,0,0 -g1,12099:6630773,27727803 -g1,12099:6630773,27727803 -g1,12099:6303093,27727803 -(1,12099:6303093,27727803:0,0,0 -) -g1,12099:6630773,27727803 -) -k1,12100:6630773,27727803:0 -g1,12100:9159939,27727803 -g1,12100:9792231,27727803 -g1,12100:11056814,27727803 -g1,12100:12637543,27727803 -g1,12100:13269835,27727803 -g1,12100:14534418,27727803 -g1,12100:15482855,27727803 -g1,12100:16115147,27727803 -h1,12100:16747439,27727803:0,0,0 -k1,12100:32583029,27727803:15835590 -g1,12100:32583029,27727803 -) -(1,12105:6630773,28393981:25952256,404226,76021 -(1,12102:6630773,28393981:0,0,0 -g1,12102:6630773,28393981 -g1,12102:6630773,28393981 -g1,12102:6303093,28393981 -(1,12102:6303093,28393981:0,0,0 -) -g1,12102:6630773,28393981 -) -g1,12105:7579210,28393981 -g1,12105:7895356,28393981 -g1,12105:9159939,28393981 -g1,12105:12321396,28393981 -g1,12105:12637542,28393981 -g1,12105:15482853,28393981 -g1,12105:15798999,28393981 -g1,12105:18644310,28393981 -g1,12105:21805767,28393981 -g1,12105:24967224,28393981 -g1,12105:28128681,28393981 -h1,12105:30973992,28393981:0,0,0 -k1,12105:32583029,28393981:1609037 -g1,12105:32583029,28393981 -) -(1,12105:6630773,29060159:25952256,404226,76021 -h1,12105:6630773,29060159:0,0,0 -g1,12105:7579210,29060159 -g1,12105:7895356,29060159 -g1,12105:9159939,29060159 -g1,12105:12321396,29060159 -g1,12105:15482853,29060159 -g1,12105:15798999,29060159 -h1,12105:18328164,29060159:0,0,0 -k1,12105:32583029,29060159:14254865 -g1,12105:32583029,29060159 -) -] -) -g1,12106:32583029,29136180 -g1,12106:6630773,29136180 -g1,12106:6630773,29136180 -g1,12106:32583029,29136180 -g1,12106:32583029,29136180 -) -h1,12106:6630773,29332788:0,0,0 -v1,12110:6630773,31222852:0,393216,0 -(1,12111:6630773,32599769:25952256,1770133,0 -g1,12111:6630773,32599769 -g1,12111:6303093,32599769 -r1,12120:6401397,32599769:98304,1770133,0 -g1,12111:6600626,32599769 -g1,12111:6797234,32599769 -[1,12111:6797234,32599769:25785795,1770133,0 -(1,12111:6797234,31655390:25785795,825754,196608 -(1,12110:6797234,31655390:0,825754,196608 -r1,12120:7890375,31655390:1093141,1022362,196608 -k1,12110:6797234,31655390:-1093141 -) -(1,12110:6797234,31655390:1093141,825754,196608 -) -k1,12110:8143289,31655390:252914 -k1,12110:9461218,31655390:327680 -k1,12110:10963904,31655390:252914 -k1,12110:12235903,31655390:252914 -k1,12110:15480536,31655390:252914 -k1,12110:16349488,31655390:252914 -k1,12110:19211391,31655390:252915 -h1,12110:20754109,31655390:0,0,0 -k1,12110:21180693,31655390:252914 -h1,12110:22723411,31655390:0,0,0 -k1,12110:22976325,31655390:252914 -k1,12110:24420684,31655390:252914 -h1,12110:25963402,31655390:0,0,0 -k1,12110:26216316,31655390:252914 -k1,12110:27120658,31655390:252914 -k1,12110:28188840,31655390:252914 -k1,12110:32583029,31655390:0 -) -(1,12111:6797234,32496878:25785795,513147,102891 -g1,12110:8851132,32496878 -g1,12110:9859731,32496878 -g1,12110:12821303,32496878 -g1,12110:17305931,32496878 -g1,12110:18998726,32496878 -g1,12110:19884117,32496878 -g1,12110:23054093,32496878 -g1,12110:23659645,32496878 -g1,12110:24292067,32496878 -g1,12110:25174181,32496878 -k1,12111:32583029,32496878:4636675 -g1,12111:32583029,32496878 -) -] -g1,12111:32583029,32599769 -) -h1,12111:6630773,32599769:0,0,0 -v1,12114:6630773,33965545:0,393216,0 -(1,12116:6630773,42868981:25952256,9296652,0 -g1,12116:6630773,42868981 -g1,12116:6303093,42868981 -r1,12120:6401397,42868981:98304,9296652,0 -g1,12116:6600626,42868981 -g1,12116:6797234,42868981 -[1,12116:6797234,42868981:25785795,9296652,0 -(1,12116:6797234,34327618:25785795,755289,196608 -(1,12114:6797234,34327618:0,755289,196608 -r1,12120:8134168,34327618:1336934,951897,196608 -k1,12114:6797234,34327618:-1336934 -) -(1,12114:6797234,34327618:1336934,755289,196608 -) -k1,12114:8279143,34327618:144975 -k1,12114:8606823,34327618:327680 -k1,12114:8606823,34327618:0 -k1,12114:8751798,34327618:144975 -k1,12115:9366666,34327618:144975 -k1,12115:10043138,34327618:144975 -k1,12115:13639239,34327618:144975 -k1,12115:14435642,34327618:144975 -k1,12115:17312813,34327618:144975 -k1,12115:18984122,34327618:144975 -k1,12115:21623397,34327618:144975 -k1,12115:25038619,34327618:144975 -k1,12115:25842886,34327618:144975 -k1,12115:28803943,34327618:144975 -k1,12115:29710446,34327618:144975 -k1,12115:31923737,34327618:144975 -k1,12115:32583029,34327618:0 -) -(1,12116:6797234,35169106:25785795,505283,126483 -k1,12115:7330988,35169106:177894 -k1,12115:11728745,35169106:177894 -k1,12115:14351787,35169106:177894 -k1,12115:16023247,35169106:177894 -k1,12115:16887302,35169106:177893 -k1,12115:17421056,35169106:177894 -k1,12115:21922360,35169106:177894 -k1,12115:26337812,35169106:177894 -k1,12115:29466792,35169106:177894 -k1,12115:32583029,35169106:0 -) -(1,12116:6797234,36010594:25785795,505283,134348 -k1,12115:7624576,36010594:141180 -k1,12115:10918693,36010594:141180 -k1,12115:11821401,36010594:141180 -k1,12115:12377367,36010594:141123 -k1,12115:13709992,36010594:141180 -k1,12115:15553142,36010594:141180 -k1,12115:18770582,36010594:141180 -k1,12115:21984090,36010594:141180 -k1,12115:23116831,36010594:141181 -k1,12115:25462642,36010594:141180 -k1,12115:28107953,36010594:141180 -k1,12115:31194321,36010594:141180 -k1,12115:32583029,36010594:0 -) -(1,12116:6797234,36852082:25785795,513147,7863 -k1,12115:11278658,36852082:261561 -k1,12115:13385058,36852082:261562 -k1,12115:14305911,36852082:261561 -k1,12115:17383555,36852082:261562 -k1,12115:18929622,36852082:261561 -k1,12115:22077390,36852082:261562 -k1,12115:24833251,36852082:261561 -k1,12115:27184756,36852082:261562 -k1,12115:30097248,36852082:261561 -k1,12115:32583029,36852082:0 -) -(1,12116:6797234,37693570:25785795,505283,134348 -k1,12115:10465385,37693570:272731 -k1,12115:12160902,37693570:272730 -k1,12115:12789493,37693570:272731 -k1,12115:14463383,37693570:272731 -k1,12115:16416456,37693570:272730 -k1,12115:17973693,37693570:272731 -k1,12115:21820758,37693570:272731 -k1,12115:24012383,37693570:272731 -k1,12115:24901151,37693570:272730 -k1,12115:26192967,37693570:272731 -k1,12115:28310536,37693570:272731 -k1,12115:29451618,37693570:272730 -k1,12115:31386342,37693570:272731 -k1,12115:32583029,37693570:0 -) -(1,12116:6797234,38535058:25785795,513147,134348 -k1,12115:8681534,38535058:163325 -k1,12115:10082834,38535058:163325 -k1,12115:10905451,38535058:163325 -k1,12115:15385633,38535058:163325 -k1,12115:17730652,38535058:163325 -k1,12115:18913062,38535058:163325 -k1,12115:20756730,38535058:163325 -k1,12115:21579347,38535058:163325 -k1,12115:22761757,38535058:163325 -k1,12115:24370806,38535058:163325 -k1,12115:25065628,38535058:163325 -k1,12115:25880381,38535058:163325 -k1,12115:27396369,38535058:163325 -k1,12115:28578779,38535058:163325 -k1,12115:32583029,38535058:0 -) -(1,12116:6797234,39376546:25785795,513147,134348 -k1,12115:7665071,39376546:184952 -k1,12115:10052033,39376546:184952 -k1,12115:12490113,39376546:184952 -k1,12115:15558649,39376546:184952 -k1,12115:16678144,39376546:184952 -k1,12115:17522388,39376546:184952 -k1,12115:19491885,39376546:184952 -k1,12115:21244458,39376546:184952 -k1,12115:22448495,39376546:184952 -k1,12115:23830134,39376546:184952 -k1,12115:25440494,39376546:184952 -k1,12115:27284818,39376546:184952 -k1,12115:28129062,39376546:184952 -k1,12115:29333099,39376546:184952 -k1,12115:32583029,39376546:0 -) -(1,12116:6797234,40218034:25785795,505283,134348 -k1,12115:10020849,40218034:288913 -k1,12115:10925800,40218034:288913 -k1,12115:12912095,40218034:288913 -k1,12115:14899046,40218034:288913 -k1,12115:16056311,40218034:288913 -k1,12115:17812575,40218034:288913 -k1,12115:18752917,40218034:288914 -k1,12115:21058373,40218034:288913 -k1,12115:21703146,40218034:288913 -k1,12115:25463501,40218034:288913 -k1,12115:27487807,40218034:288913 -k1,12115:28795805,40218034:288913 -k1,12115:30738191,40218034:288913 -k1,12115:32583029,40218034:0 -) -(1,12116:6797234,41059522:25785795,513147,134348 -k1,12115:7678983,41059522:222457 -k1,12115:12937226,41059522:222457 -k1,12115:15343997,41059522:222456 -k1,12115:16434806,41059522:222457 -k1,12115:17761545,41059522:222457 -k1,12115:19076487,41059522:222457 -(1,12115:19076487,41059522:0,452978,115847 -r1,12120:22600159,41059522:3523672,568825,115847 -k1,12115:19076487,41059522:-3523672 -) -(1,12115:19076487,41059522:3523672,452978,115847 -k1,12115:19076487,41059522:3277 -h1,12115:22596882,41059522:0,411205,112570 -) -k1,12115:22822615,41059522:222456 -k1,12115:24439023,41059522:222457 -k1,12115:25432183,41059522:222457 -k1,12115:28451061,41059522:222457 -k1,12115:30903707,41059522:222456 -k1,12115:31812326,41059522:222457 -k1,12115:32583029,41059522:0 -) -(1,12116:6797234,41901010:25785795,505283,134348 -k1,12115:10009645,41901010:140083 -k1,12115:10801156,41901010:140083 -k1,12115:12511482,41901010:140083 -k1,12115:13670651,41901010:140084 -k1,12115:16878474,41901010:140083 -k1,12115:17669985,41901010:140083 -k1,12115:18829153,41901010:140083 -k1,12115:20622709,41901010:140083 -k1,12115:22450999,41901010:140083 -k1,12115:23207121,41901010:140084 -k1,12115:24366289,41901010:140083 -k1,12115:27948978,41901010:140083 -k1,12115:32583029,41901010:0 -) -(1,12116:6797234,42742498:25785795,355205,126483 -k1,12116:32583029,42742498:22672180 -g1,12116:32583029,42742498 -) -] -g1,12116:32583029,42868981 -) -h1,12116:6630773,42868981:0,0,0 -v1,12119:6630773,44234757:0,393216,0 -(1,12120:6630773,45643131:25952256,1801590,0 -g1,12120:6630773,45643131 -g1,12120:6303093,45643131 -r1,12120:6401397,45643131:98304,1801590,0 -g1,12120:6600626,45643131 -g1,12120:6797234,45643131 -[1,12120:6797234,45643131:25785795,1801590,0 -(1,12120:6797234,44667295:25785795,825754,196608 -(1,12119:6797234,44667295:0,825754,196608 -r1,12120:8834093,44667295:2036859,1022362,196608 -k1,12119:6797234,44667295:-2036859 -) -(1,12119:6797234,44667295:2036859,825754,196608 -) -k1,12119:8975496,44667295:141403 -k1,12119:10293425,44667295:327680 -k1,12119:12870801,44667295:141403 -k1,12119:14031290,44667295:141404 -k1,12119:17359053,44667295:141403 -(1,12119:17359053,44667295:0,452978,115847 -r1,12120:20179302,44667295:2820249,568825,115847 -k1,12119:17359053,44667295:-2820249 -) -(1,12119:17359053,44667295:2820249,452978,115847 -k1,12119:17359053,44667295:3277 -h1,12119:20176025,44667295:0,411205,112570 -) -k1,12119:20320705,44667295:141403 -k1,12119:21223636,44667295:141403 -k1,12119:22970671,44667295:141403 -k1,12119:25343576,44667295:141404 -k1,12119:27414359,44667295:141403 -k1,12119:29683716,44667295:141403 -k1,12119:32583029,44667295:0 -) -(1,12120:6797234,45508783:25785795,505283,134348 -k1,12119:7695926,45508783:247264 -k1,12119:8962276,45508783:247265 -k1,12119:11220185,45508783:247264 -k1,12119:14432953,45508783:247264 -k1,12119:16853392,45508783:247265 -k1,12119:18119741,45508783:247264 -k1,12119:21101167,45508783:247264 -k1,12119:22420600,45508783:247264 -k1,12119:23998246,45508783:247265 -k1,12119:27300798,45508783:247264 -(1,12119:27300798,45508783:0,452978,115847 -r1,12120:32583029,45508783:5282231,568825,115847 -k1,12119:27300798,45508783:-5282231 -) -(1,12119:27300798,45508783:5282231,452978,115847 -k1,12119:27300798,45508783:3277 -h1,12119:32579752,45508783:0,411205,112570 -) -k1,12119:32583029,45508783:0 -) -] -g1,12120:32583029,45643131 -) -] -(1,12120:32583029,45706769:0,0,0 -g1,12120:32583029,45706769 -) -) -] -(1,12120:6630773,47279633:25952256,0,0 -h1,12120:6630773,47279633:25952256,0,0 -) -] -(1,12120:4262630,4025873:0,0,0 -[1,12120:-473656,4025873:0,0,0 -(1,12120:-473656,-710413:0,0,0 -(1,12120:-473656,-710413:0,0,0 -g1,12120:-473656,-710413 -) -g1,12120:-473656,-710413 +k1,11038:29014430,51504789:25935872 +g1,11038:29014430,51504789 ) ] ) +) +) ] -!25041 -}207 -Input:1795:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1796:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1797:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!294 -{208 -[1,12175:4262630,47279633:28320399,43253760,0 -(1,12175:4262630,4025873:0,0,0 -[1,12175:-473656,4025873:0,0,0 -(1,12175:-473656,-710413:0,0,0 -(1,12175:-473656,-644877:0,0,0 -k1,12175:-473656,-644877:-65536 +[1,11562:3078558,4812305:0,0,0 +(1,11562:3078558,49800853:0,16384,2228224 +g1,11562:29030814,49800853 +g1,11562:36135244,49800853 +(1,11038:36135244,49800853:1720320,16384,2228224 +(1,11038:36135244,52029077:16384,1703936,0 +[1,11038:36135244,52029077:25952256,1703936,0 +(1,11038:36135244,51504789:25952256,1179648,0 +(1,11038:36135244,51504789:16384,1179648,0 +r1,11562:36151628,51504789:16384,1179648,0 +) +k1,11038:62087500,51504789:25935872 +g1,11038:62087500,51504789 +) +] +) +g1,11038:36675916,49800853 +(1,11038:36675916,49800853:1179648,16384,0 +r1,11562:37855564,49800853:1179648,16384,0 +) +) +k1,11562:3078556,49800853:-34777008 +) +] +g1,11562:6630773,4812305 +g1,11562:6630773,4812305 +g1,11562:9311850,4812305 +g1,11562:11796319,4812305 +g1,11562:13205998,4812305 +g1,11562:16063367,4812305 +k1,11562:31387652,4812305:15324285 +) +) +] +[1,11562:6630773,45706769:25952256,40108032,0 +(1,11562:6630773,45706769:25952256,40108032,0 +(1,11562:6630773,45706769:0,0,0 +g1,11562:6630773,45706769 +) +[1,11562:6630773,45706769:25952256,40108032,0 +(1,11509:7202902,6254097:24807998,513147,134348 +(1,11503:7202902,6254097:983040,0,0 +g1,11503:8185942,6254097 +g1,11503:6875222,6254097 +g1,11503:6547542,6254097 +(1,11503:6547542,6254097:1310720,0,0 +k1,11503:7858262,6254097:1310720 +) +g1,11503:8185942,6254097 +) +k1,11504:9703458,6254097:320829 +k1,11504:11349424,6254097:320828 +k1,11504:12329545,6254097:320829 +k1,11504:17494139,6254097:320828 +k1,11504:22167214,6254097:320829 +k1,11504:23019539,6254097:320828 +k1,11504:25638716,6254097:320829 +k1,11504:27031713,6254097:320828 +k1,11504:29497535,6254097:320829 +k1,11504:30174224,6254097:320829 +k1,11504:31351608,6254097:320828 +k1,11504:32010900,6254097:0 +) +(1,11509:7202902,7119177:24807998,513147,134348 +k1,11504:9691819,7119177:199744 +k1,11505:11883858,7119177:199745 +k1,11505:13102687,7119177:199744 +k1,11505:15185281,7119177:199745 +k1,11505:17220688,7119177:199744 +k1,11505:17886394,7119177:199745 +k1,11505:19256611,7119177:199744 +k1,11505:20733652,7119177:199744 +k1,11505:21289257,7119177:199745 +k1,11505:23381681,7119177:199744 +k1,11505:24240718,7119177:199745 +k1,11505:26576280,7119177:199744 +k1,11505:28793223,7119177:199745 +k1,11505:29940618,7119177:199744 +k1,11505:32010900,7119177:0 +) +(1,11509:7202902,7984257:24807998,513147,126483 +k1,11505:8820931,7984257:184101 +k1,11506:10175506,7984257:184102 +k1,11506:12315857,7984257:184101 +k1,11506:14570897,7984257:184102 +k1,11506:16206620,7984257:184101 +k1,11506:17042149,7984257:184101 +k1,11506:18318736,7984257:184102 +k1,11506:19312207,7984257:184101 +k1,11506:21778928,7984257:184102 +k1,11506:25713654,7984257:184101 +k1,11506:26845407,7984257:184102 +k1,11506:28314014,7984257:184101 +k1,11506:32010900,7984257:0 +) +(1,11509:7202902,8849337:24807998,513147,134348 +k1,11506:8549835,8849337:151556 +k1,11507:11407372,8849337:151555 +k1,11507:12017025,8849337:151556 +k1,11507:12700078,8849337:151556 +k1,11507:15481593,8849337:151555 +k1,11507:16580800,8849337:151556 +k1,11507:17946690,8849337:151508 +k1,11507:20388074,8849337:151556 +k1,11507:21191058,8849337:151556 +k1,11507:22321067,8849337:151556 +k1,11507:24957747,8849337:151555 +k1,11507:29426160,8849337:151556 +k1,11509:32010900,8849337:0 +) +(1,11509:7202902,9714417:24807998,513147,134348 +g1,11507:8392380,9714417 +g1,11507:9400979,9714417 +g1,11508:11148824,9714417 +g1,11508:12903222,9714417 +g1,11508:13761743,9714417 +g1,11508:15920498,9714417 +g1,11508:17499915,9714417 +k1,11509:32010900,9714417:13345755 +g1,11509:32010900,9714417 +) +(1,11512:6630773,11103785:25952256,513147,134348 +h1,11511:6630773,11103785:983040,0,0 +k1,11511:8729639,11103785:162277 +k1,11511:9939181,11103785:162277 +k1,11511:11385964,11103785:162277 +k1,11511:13945548,11103785:162277 +k1,11511:16892450,11103785:162277 +k1,11511:18046287,11103785:162277 +k1,11511:21620369,11103785:162278 +k1,11511:23637315,11103785:162277 +k1,11511:24608962,11103785:162277 +k1,11511:25790324,11103785:162277 +k1,11511:27507770,11103785:162277 +k1,11511:28329339,11103785:162277 +k1,11511:29510701,11103785:162277 +k1,11511:32583029,11103785:0 +) +(1,11512:6630773,11968865:25952256,513147,134348 +k1,11511:9271975,11968865:262245 +k1,11511:11088734,11968865:262245 +k1,11511:14031402,11968865:262245 +k1,11511:15687597,11968865:262244 +k1,11511:16968927,11968865:262245 +k1,11511:18902995,11968865:262245 +k1,11511:20551326,11968865:262245 +k1,11511:22965773,11968865:262245 +k1,11511:23895174,11968865:262245 +k1,11511:24745932,11968865:262245 +k1,11511:27020131,11968865:262244 +k1,11511:29540091,11968865:262245 +k1,11511:31298523,11968865:262245 +k1,11511:32583029,11968865:0 +) +(1,11512:6630773,12833945:25952256,513147,134348 +k1,11511:9925804,12833945:269234 +k1,11511:10881199,12833945:269233 +k1,11511:13989453,12833945:269234 +k1,11511:15068057,12833945:269234 +k1,11511:18099633,12833945:269233 +k1,11511:20085255,12833945:269234 +k1,11511:21013780,12833945:269233 +k1,11511:23746512,12833945:269234 +k1,11511:25258309,12833945:269234 +k1,11511:28502221,12833945:269233 +k1,11511:29962900,12833945:269234 +k1,11511:32583029,12833945:0 +) +(1,11512:6630773,13699025:25952256,426639,7863 +k1,11512:32583029,13699025:23470408 +g1,11512:32583029,13699025 +) +(1,11514:6630773,14564105:25952256,513147,134348 +h1,11513:6630773,14564105:983040,0,0 +k1,11513:8288183,14564105:259527 +k1,11513:9648775,14564105:259587 +k1,11513:11492368,14564105:259588 +k1,11513:14278368,14564105:259587 +k1,11513:15485607,14564105:259588 +k1,11513:16764279,14564105:259587 +k1,11513:21867633,14564105:259588 +k1,11513:26479466,14564105:259587 +k1,11513:29949663,14564105:259588 +k1,11513:31281420,14564105:259588 +k1,11513:32227169,14564105:259587 +k1,11513:32583029,14564105:0 +) +(1,11514:6630773,15429185:25952256,505283,126483 +k1,11513:9052986,15429185:176294 +k1,11513:10513786,15429185:176294 +k1,11513:11791084,15429185:176293 +k1,11513:14396798,15429185:176294 +k1,11513:15960489,15429185:176294 +k1,11513:17155868,15429185:176294 +k1,11513:19188797,15429185:176294 +k1,11513:22275544,15429185:176293 +k1,11513:22866658,15429185:176271 +k1,11513:25899666,15429185:176294 +k1,11513:28747207,15429185:176294 +k1,11513:32583029,15429185:0 +) +(1,11514:6630773,16294265:25952256,513147,126483 +k1,11513:8036052,16294265:208592 +k1,11513:9443297,16294265:208591 +k1,11513:11253589,16294265:208592 +k1,11513:13962379,16294265:208591 +k1,11513:17155481,16294265:208592 +k1,11513:17895569,16294265:208591 +k1,11513:19971937,16294265:208592 +k1,11513:21107863,16294265:208592 +k1,11513:22507899,16294265:208591 +k1,11513:23072351,16294265:208592 +k1,11513:24931139,16294265:208591 +k1,11513:27128093,16294265:208592 +k1,11513:28528129,16294265:208591 +k1,11513:31593435,16294265:208592 +k1,11514:32583029,16294265:0 +) +(1,11514:6630773,17159345:25952256,513147,134348 +k1,11513:9198286,17159345:185935 +k1,11513:10778172,17159345:185935 +k1,11513:13050773,17159345:185935 +k1,11513:17486062,17159345:185935 +k1,11513:18203494,17159345:185935 +k1,11513:20257205,17159345:185935 +k1,11513:21370474,17159345:185935 +k1,11513:22753096,17159345:185935 +k1,11513:25272113,17159345:185935 +k1,11513:26783186,17159345:185935 +k1,11513:27500618,17159345:185935 +k1,11513:28971059,17159345:185935 +k1,11513:29512854,17159345:185935 +k1,11513:31436804,17159345:185935 +k1,11513:32583029,17159345:0 +) +(1,11514:6630773,18024425:25952256,513147,134348 +k1,11513:8679777,18024425:171398 +k1,11513:9955456,18024425:171397 +k1,11513:10874620,18024425:171398 +k1,11513:12559244,18024425:171398 +k1,11513:13416803,18024425:171397 +k1,11513:13944061,18024425:171398 +k1,11513:16422326,18024425:171398 +k1,11513:18505408,18024425:171397 +k1,11513:19868251,18024425:171398 +k1,11513:21324155,18024425:171398 +k1,11513:22514637,18024425:171397 +k1,11513:25083342,18024425:171398 +k1,11513:27588477,18024425:171398 +k1,11513:28427030,18024425:171397 +(1,11513:28427030,18024425:0,452978,115847 +r1,11562:30543855,18024425:2116825,568825,115847 +k1,11513:28427030,18024425:-2116825 +) +(1,11513:28427030,18024425:2116825,452978,115847 +k1,11513:28427030,18024425:3277 +h1,11513:30540578,18024425:0,411205,112570 +) +k1,11513:30715253,18024425:171398 +k1,11513:32583029,18024425:0 +) +(1,11514:6630773,18889505:25952256,513147,134348 +k1,11513:9566130,18889505:233308 +k1,11513:10608808,18889505:233308 +k1,11513:11861201,18889505:233308 +k1,11513:15497138,18889505:233308 +k1,11513:16389738,18889505:233308 +k1,11513:17642131,18889505:233308 +k1,11513:19148805,18889505:233309 +k1,11513:21173867,18889505:233308 +k1,11513:24837985,18889505:233308 +k1,11513:26914165,18889505:233308 +k1,11513:28015825,18889505:233308 +k1,11513:30017950,18889505:233308 +k1,11513:31298523,18889505:233308 +k1,11513:32583029,18889505:0 +) +(1,11514:6630773,19754585:25952256,513147,134348 +k1,11513:7875792,19754585:225934 +k1,11513:10439396,19754585:225934 +k1,11513:11332487,19754585:225935 +(1,11513:11332487,19754585:0,452978,115847 +r1,11562:13449312,19754585:2116825,568825,115847 +k1,11513:11332487,19754585:-2116825 +) +(1,11513:11332487,19754585:2116825,452978,115847 +k1,11513:11332487,19754585:3277 +h1,11513:13446035,19754585:0,411205,112570 +) +k1,11513:13675246,19754585:225934 +k1,11513:17312984,19754585:225934 +k1,11513:18558003,19754585:225934 +k1,11513:21219255,19754585:225934 +k1,11513:22544883,19754585:225934 +k1,11513:23422246,19754585:225935 +k1,11513:26410523,19754585:225934 +k1,11513:29033764,19754585:225934 +k1,11513:31923737,19754585:225934 +k1,11514:32583029,19754585:0 +) +(1,11514:6630773,20619665:25952256,513147,134348 +(1,11513:6630773,20619665:0,452978,115847 +r1,11562:8747598,20619665:2116825,568825,115847 +k1,11513:6630773,20619665:-2116825 +) +(1,11513:6630773,20619665:2116825,452978,115847 +k1,11513:6630773,20619665:3277 +h1,11513:8744321,20619665:0,411205,112570 +) +k1,11513:8926183,20619665:178585 +k1,11513:10959436,20619665:178584 +k1,11513:11947391,20619665:178585 +k1,11513:13145060,20619665:178584 +k1,11513:14878814,20619665:178585 +k1,11513:15716690,20619665:178584 +k1,11513:16914360,20619665:178585 +k1,11513:20495574,20619665:178585 +k1,11513:23053115,20619665:178584 +k1,11513:23985364,20619665:178585 +k1,11513:26470815,20619665:178584 +k1,11513:29675197,20619665:178585 +k1,11513:32583029,20619665:0 +) +(1,11514:6630773,21484745:25952256,513147,134348 +k1,11513:7681163,21484745:288862 +k1,11513:10409276,21484745:288863 +k1,11513:12552807,21484745:288862 +k1,11513:14217270,21484745:288862 +k1,11513:15315503,21484745:288863 +k1,11513:16623450,21484745:288862 +k1,11513:19984640,21484745:288862 +k1,11513:22478789,21484745:288862 +k1,11513:23419080,21484745:288863 +k1,11513:24063802,21484745:288862 +k1,11513:26225683,21484745:288862 +k1,11513:29968949,21484745:288863 +k1,11513:31276896,21484745:288862 +k1,11513:32583029,21484745:0 +) +(1,11514:6630773,22349825:25952256,513147,134348 +k1,11513:8235094,22349825:273940 +k1,11513:9262699,22349825:273941 +k1,11513:11843506,22349825:273940 +k1,11513:15143243,22349825:273940 +k1,11513:16521466,22349825:273941 +k1,11513:19529568,22349825:273940 +k1,11513:20822593,22349825:273940 +k1,11513:22196228,22349825:273941 +k1,11513:24324837,22349825:273940 +k1,11513:25408147,22349825:273940 +k1,11513:26701173,22349825:273941 +k1,11513:30377742,22349825:273940 +k1,11513:32583029,22349825:0 +) +(1,11514:6630773,23214905:25952256,513147,134348 +k1,11513:7539801,23214905:257600 +k1,11513:9447598,23214905:257600 +k1,11513:11147646,23214905:257601 +k1,11513:12561956,23214905:257600 +k1,11513:16100288,23214905:257600 +k1,11513:17549333,23214905:257600 +k1,11513:18826018,23214905:257600 +k1,11513:22015044,23214905:257601 +k1,11513:22931936,23214905:257600 +k1,11513:24208621,23214905:257600 +k1,11513:26756049,23214905:257600 +k1,11513:27672941,23214905:257600 +k1,11513:28286402,23214905:257601 +k1,11513:30238763,23214905:257600 +k1,11513:32051532,23214905:257600 +k1,11513:32583029,23214905:0 +) +(1,11514:6630773,24079985:25952256,513147,134348 +k1,11513:8974542,24079985:205985 +k1,11513:9831954,24079985:205984 +k1,11513:11057024,24079985:205985 +k1,11513:14894358,24079985:205984 +k1,11513:15728178,24079985:205985 +k1,11513:16687827,24079985:205985 +k1,11513:20093279,24079985:205984 +k1,11513:21318349,24079985:205985 +k1,11513:26263242,24079985:205985 +k1,11513:27128518,24079985:205984 +k1,11513:27690363,24079985:205985 +k1,11513:30203214,24079985:205984 +k1,11513:31400759,24079985:205985 +k1,11514:32583029,24079985:0 +) +(1,11514:6630773,24945065:25952256,513147,134348 +k1,11513:12788183,24945065:238198 +k1,11513:14401982,24945065:238198 +k1,11513:15401709,24945065:238199 +k1,11513:17148546,24945065:238198 +k1,11513:19298429,24945065:238198 +k1,11513:20859799,24945065:238198 +k1,11513:22117083,24945065:238199 +k1,11513:23910450,24945065:238198 +k1,11513:24807940,24945065:238198 +k1,11513:25816841,24945065:238198 +k1,11513:28014566,24945065:238199 +k1,11513:29014292,24945065:238198 +k1,11513:29608350,24945065:238198 +k1,11513:32583029,24945065:0 +) +(1,11514:6630773,25810145:25952256,505283,134348 +g1,11513:8695812,25810145 +g1,11513:10933211,25810145 +g1,11513:11818602,25810145 +g1,11513:12788534,25810145 +g1,11513:15766490,25810145 +g1,11513:16617147,25810145 +g1,11513:17835461,25810145 +k1,11514:32583029,25810145:12614371 +g1,11514:32583029,25810145 +) +(1,11516:6630773,26675225:25952256,513147,126483 +h1,11515:6630773,26675225:983040,0,0 +k1,11515:8833539,26675225:266177 +k1,11515:10405849,26675225:266177 +k1,11515:13040497,26675225:266177 +k1,11515:14463384,26675225:266177 +k1,11515:15388853,26675225:266177 +k1,11515:16674115,26675225:266177 +k1,11515:19724918,26675225:266178 +k1,11515:22325487,26675225:266177 +k1,11515:25375633,26675225:266177 +k1,11515:26257848,26675225:266177 +k1,11515:27112538,26675225:266177 +k1,11515:28575402,26675225:266177 +k1,11515:31923737,26675225:266177 +k1,11516:32583029,26675225:0 +) +(1,11516:6630773,27540305:25952256,513147,134348 +(1,11515:6630773,27540305:0,414482,115847 +r1,11562:8044174,27540305:1413401,530329,115847 +k1,11515:6630773,27540305:-1413401 +) +(1,11515:6630773,27540305:1413401,414482,115847 +k1,11515:6630773,27540305:3277 +h1,11515:8040897,27540305:0,411205,112570 +) +g1,11515:8243403,27540305 +g1,11515:10433616,27540305 +g1,11515:11917351,27540305 +g1,11515:12574677,27540305 +g1,11515:13305403,27540305 +g1,11515:14523717,27540305 +g1,11515:17029813,27540305 +g1,11515:18176693,27540305 +g1,11515:18731782,27540305 +k1,11516:32583029,27540305:11223253 +g1,11516:32583029,27540305 +) +v1,11518:6630773,28225160:0,393216,0 +(1,11528:6630773,31303663:25952256,3471719,196608 +g1,11528:6630773,31303663 +g1,11528:6630773,31303663 +g1,11528:6434165,31303663 +(1,11528:6434165,31303663:0,3471719,196608 +r1,11562:32779637,31303663:26345472,3668327,196608 +k1,11528:6434165,31303663:-26345472 +) +(1,11528:6434165,31303663:26345472,3471719,196608 +[1,11528:6630773,31303663:25952256,3275111,0 +(1,11520:6630773,28326925:25952256,298373,6605 +(1,11519:6630773,28326925:0,0,0 +g1,11519:6630773,28326925 +g1,11519:6630773,28326925 +g1,11519:6303093,28326925 +(1,11519:6303093,28326925:0,0,0 +) +g1,11519:6630773,28326925 +) +h1,11520:7958589,28326925:0,0,0 +k1,11520:32583029,28326925:24624440 +g1,11520:32583029,28326925 +) +(1,11527:6630773,29142852:25952256,431045,86428 +(1,11522:6630773,29142852:0,0,0 +g1,11522:6630773,29142852 +g1,11522:6630773,29142852 +g1,11522:6303093,29142852 +(1,11522:6303093,29142852:0,0,0 +) +g1,11522:6630773,29142852 +) +g1,11527:7626635,29142852 +g1,11527:10614220,29142852 +g1,11527:11942036,29142852 +h1,11527:13269852,29142852:0,0,0 +k1,11527:32583028,29142852:19313176 +g1,11527:32583028,29142852 +) +(1,11527:6630773,29827707:25952256,424439,79822 +h1,11527:6630773,29827707:0,0,0 +g1,11527:7626635,29827707 +h1,11527:13269852,29827707:0,0,0 +k1,11527:32583028,29827707:19313176 +g1,11527:32583028,29827707 +) +(1,11527:6630773,30512562:25952256,431045,106246 +h1,11527:6630773,30512562:0,0,0 +g1,11527:7626635,30512562 +g1,11527:11278128,30512562 +k1,11527:11278128,30512562:0 +h1,11527:17585253,30512562:0,0,0 +k1,11527:32583029,30512562:14997776 +g1,11527:32583029,30512562 +) +(1,11527:6630773,31197417:25952256,424439,106246 +h1,11527:6630773,31197417:0,0,0 +g1,11527:7626635,31197417 +g1,11527:12273990,31197417 +k1,11527:12273990,31197417:0 +h1,11527:17253299,31197417:0,0,0 +k1,11527:32583029,31197417:15329730 +g1,11527:32583029,31197417 +) +] +) +g1,11528:32583029,31303663 +g1,11528:6630773,31303663 +g1,11528:6630773,31303663 +g1,11528:32583029,31303663 +g1,11528:32583029,31303663 +) +h1,11528:6630773,31500271:0,0,0 +(1,11532:6630773,32365351:25952256,513147,126483 +h1,11531:6630773,32365351:983040,0,0 +k1,11531:8824536,32365351:257174 +k1,11531:10185992,32365351:257174 +k1,11531:11709322,32365351:257174 +k1,11531:13032767,32365351:257174 +k1,11531:15175412,32365351:257174 +k1,11531:20171494,32365351:257174 +k1,11531:21087961,32365351:257175 +k1,11531:23799458,32365351:257174 +k1,11531:25048192,32365351:257174 +k1,11531:28089335,32365351:257174 +k1,11531:28962547,32365351:257174 +k1,11531:30238806,32365351:257174 +k1,11531:32583029,32365351:0 +) +(1,11532:6630773,33230431:25952256,505283,134348 +g1,11531:8900284,33230431 +g1,11531:10547859,33230431 +g1,11531:12482481,33230431 +(1,11531:12482481,33230431:0,452978,115847 +r1,11562:15654441,33230431:3171960,568825,115847 +k1,11531:12482481,33230431:-3171960 +) +(1,11531:12482481,33230431:3171960,452978,115847 +k1,11531:12482481,33230431:3277 +h1,11531:15651164,33230431:0,411205,112570 +) +k1,11532:32583029,33230431:16754918 +g1,11532:32583029,33230431 +) +v1,11534:6630773,33915286:0,393216,0 +(1,11543:6630773,36441606:25952256,2919536,196608 +g1,11543:6630773,36441606 +g1,11543:6630773,36441606 +g1,11543:6434165,36441606 +(1,11543:6434165,36441606:0,2919536,196608 +r1,11562:32779637,36441606:26345472,3116144,196608 +k1,11543:6434165,36441606:-26345472 +) +(1,11543:6434165,36441606:26345472,2919536,196608 +[1,11543:6630773,36441606:25952256,2722928,0 +(1,11536:6630773,34143117:25952256,424439,79822 +(1,11535:6630773,34143117:0,0,0 +g1,11535:6630773,34143117 +g1,11535:6630773,34143117 +g1,11535:6303093,34143117 +(1,11535:6303093,34143117:0,0,0 +) +g1,11535:6630773,34143117 +) +k1,11536:6630773,34143117:0 +h1,11536:10946175,34143117:0,0,0 +k1,11536:32583029,34143117:21636854 +g1,11536:32583029,34143117 +) +(1,11542:6630773,34959044:25952256,431045,79822 +(1,11538:6630773,34959044:0,0,0 +g1,11538:6630773,34959044 +g1,11538:6630773,34959044 +g1,11538:6303093,34959044 +(1,11538:6303093,34959044:0,0,0 +) +g1,11538:6630773,34959044 +) +g1,11542:7626635,34959044 +g1,11542:8954451,34959044 +g1,11542:12273990,34959044 +g1,11542:12605944,34959044 +g1,11542:12937898,34959044 +g1,11542:13269852,34959044 +g1,11542:13601806,34959044 +g1,11542:17917207,34959044 +g1,11542:18249161,34959044 +g1,11542:22896516,34959044 +g1,11542:27211917,34959044 +g1,11542:27543871,34959044 +h1,11542:31527318,34959044:0,0,0 +k1,11542:32583029,34959044:1055711 +g1,11542:32583029,34959044 +) +(1,11542:6630773,35643899:25952256,424439,106246 +h1,11542:6630773,35643899:0,0,0 +g1,11542:7626635,35643899 +g1,11542:8954451,35643899 +h1,11542:13269852,35643899:0,0,0 +k1,11542:32583028,35643899:19313176 +g1,11542:32583028,35643899 +) +(1,11542:6630773,36328754:25952256,431045,112852 +h1,11542:6630773,36328754:0,0,0 +g1,11542:7626635,36328754 +g1,11542:8954451,36328754 +g1,11542:12605944,36328754 +g1,11542:13933760,36328754 +g1,11542:17253299,36328754 +g1,11542:18913069,36328754 +g1,11542:20240885,36328754 +g1,11542:22564563,36328754 +h1,11542:23892379,36328754:0,0,0 +k1,11542:32583029,36328754:8690650 +g1,11542:32583029,36328754 +) +] +) +g1,11543:32583029,36441606 +g1,11543:6630773,36441606 +g1,11543:6630773,36441606 +g1,11543:32583029,36441606 +g1,11543:32583029,36441606 +) +h1,11543:6630773,36638214:0,0,0 +(1,11547:6630773,37503294:25952256,513147,134348 +h1,11546:6630773,37503294:983040,0,0 +k1,11546:8799775,37503294:232413 +k1,11546:10136470,37503294:232413 +k1,11546:11654698,37503294:232412 +k1,11546:12979596,37503294:232413 +(1,11546:12979596,37503294:0,452978,115847 +r1,11562:16151556,37503294:3171960,568825,115847 +k1,11546:12979596,37503294:-3171960 +) +(1,11546:12979596,37503294:3171960,452978,115847 +k1,11546:12979596,37503294:3277 +h1,11546:16148279,37503294:0,411205,112570 +) +k1,11546:16383969,37503294:232413 +k1,11546:17267810,37503294:232413 +k1,11546:19316226,37503294:232413 +k1,11546:20314755,37503294:232413 +k1,11546:23505462,37503294:232412 +k1,11546:26718452,37503294:232413 +k1,11546:30201451,37503294:232413 +k1,11546:32583029,37503294:0 +) +(1,11547:6630773,38368374:25952256,513147,134348 +g1,11546:7777653,38368374 +g1,11546:10266710,38368374 +g1,11546:11125231,38368374 +g1,11546:11680320,38368374 +g1,11546:13574310,38368374 +k1,11547:32583030,38368374:17279880 +g1,11547:32583030,38368374 +) +v1,11549:6630773,39053229:0,393216,0 +(1,11558:6630773,41579549:25952256,2919536,196608 +g1,11558:6630773,41579549 +g1,11558:6630773,41579549 +g1,11558:6434165,41579549 +(1,11558:6434165,41579549:0,2919536,196608 +r1,11562:32779637,41579549:26345472,3116144,196608 +k1,11558:6434165,41579549:-26345472 +) +(1,11558:6434165,41579549:26345472,2919536,196608 +[1,11558:6630773,41579549:25952256,2722928,0 +(1,11551:6630773,39281060:25952256,424439,79822 +(1,11550:6630773,39281060:0,0,0 +g1,11550:6630773,39281060 +g1,11550:6630773,39281060 +g1,11550:6303093,39281060 +(1,11550:6303093,39281060:0,0,0 +) +g1,11550:6630773,39281060 +) +k1,11551:6630773,39281060:0 +g1,11551:11278129,39281060 +g1,11551:11942037,39281060 +h1,11551:14265715,39281060:0,0,0 +k1,11551:32583029,39281060:18317314 +g1,11551:32583029,39281060 +) +(1,11557:6630773,40096987:25952256,431045,106246 +(1,11553:6630773,40096987:0,0,0 +g1,11553:6630773,40096987 +g1,11553:6630773,40096987 +g1,11553:6303093,40096987 +(1,11553:6303093,40096987:0,0,0 +) +g1,11553:6630773,40096987 +) +g1,11557:7626635,40096987 +g1,11557:8954451,40096987 +g1,11557:12273990,40096987 +g1,11557:12605944,40096987 +g1,11557:12937898,40096987 +g1,11557:13269852,40096987 +g1,11557:13601806,40096987 +g1,11557:18249161,40096987 +g1,11557:20572839,40096987 +g1,11557:20904793,40096987 +g1,11557:21236747,40096987 +g1,11557:21568701,40096987 +g1,11557:21900655,40096987 +g1,11557:22232609,40096987 +g1,11557:22564563,40096987 +g1,11557:22896517,40096987 +g1,11557:24224333,40096987 +g1,11557:24556287,40096987 +g1,11557:24888241,40096987 +g1,11557:25220195,40096987 +g1,11557:25552149,40096987 +g1,11557:25884103,40096987 +g1,11557:26216057,40096987 +g1,11557:26548011,40096987 +g1,11557:26879965,40096987 +g1,11557:27211919,40096987 +g1,11557:27543873,40096987 +h1,11557:29535597,40096987:0,0,0 +k1,11557:32583029,40096987:3047432 +g1,11557:32583029,40096987 +) +(1,11557:6630773,40781842:25952256,424439,106246 +h1,11557:6630773,40781842:0,0,0 +g1,11557:7626635,40781842 +g1,11557:8954451,40781842 +g1,11557:10282267,40781842 +g1,11557:10614221,40781842 +g1,11557:10946175,40781842 +g1,11557:11278129,40781842 +g1,11557:11610083,40781842 +g1,11557:11942037,40781842 +g1,11557:12273991,40781842 +g1,11557:12605945,40781842 +g1,11557:12937899,40781842 +g1,11557:13269853,40781842 +g1,11557:13601807,40781842 +g1,11557:17917208,40781842 +g1,11557:18249162,40781842 +h1,11557:20240886,40781842:0,0,0 +k1,11557:32583029,40781842:12342143 +g1,11557:32583029,40781842 +) +(1,11557:6630773,41466697:25952256,431045,112852 +h1,11557:6630773,41466697:0,0,0 +g1,11557:7626635,41466697 +g1,11557:8954451,41466697 +g1,11557:12605944,41466697 +g1,11557:13933760,41466697 +g1,11557:17253299,41466697 +g1,11557:18913069,41466697 +g1,11557:20240885,41466697 +g1,11557:22564563,41466697 +h1,11557:23892379,41466697:0,0,0 +k1,11557:32583029,41466697:8690650 +g1,11557:32583029,41466697 +) +] +) +g1,11558:32583029,41579549 +g1,11558:6630773,41579549 +g1,11558:6630773,41579549 +g1,11558:32583029,41579549 +g1,11558:32583029,41579549 +) +h1,11558:6630773,41776157:0,0,0 +(1,11562:6630773,42641237:25952256,513147,11795 +h1,11561:6630773,42641237:983040,0,0 +k1,11561:8697888,42641237:330411 +k1,11561:10583467,42641237:330410 +k1,11561:14720864,42641237:330411 +k1,11561:15582772,42641237:330411 +k1,11561:17951352,42641237:330410 +k1,11561:18967925,42641237:330411 +k1,11561:19654196,42641237:330411 +k1,11561:22959285,42641237:330410 +k1,11561:25267573,42641237:330411 +k1,11561:26214022,42641237:330411 +k1,11561:27315135,42641237:330410 +k1,11561:30424273,42641237:330411 +k1,11562:32583029,42641237:0 +) +(1,11562:6630773,43506317:25952256,513147,134348 +(1,11561:6630773,43506317:0,452978,115847 +r1,11562:9099310,43506317:2468537,568825,115847 +k1,11561:6630773,43506317:-2468537 +) +(1,11561:6630773,43506317:2468537,452978,115847 +k1,11561:6630773,43506317:3277 +h1,11561:9096033,43506317:0,411205,112570 +) +k1,11561:9536973,43506317:263993 +k1,11561:10997652,43506317:263992 +k1,11561:12863345,43506317:263993 +k1,11561:14748699,43506317:263993 +k1,11561:17997201,43506317:263992 +k1,11561:18912622,43506317:263993 +k1,11561:21769219,43506317:263993 +k1,11561:22692503,43506317:263992 +k1,11561:23727199,43506317:263993 +k1,11561:25950718,43506317:263993 +k1,11561:26874002,43506317:263992 +k1,11561:27493855,43506317:263993 +k1,11561:29041043,43506317:263993 +k1,11561:30058699,43506317:263992 +k1,11561:32051532,43506317:263993 +k1,11561:32583029,43506317:0 +) +(1,11562:6630773,44371397:25952256,513147,134348 +k1,11561:7462425,44371397:180224 +k1,11561:8839992,44371397:180224 +k1,11561:10039301,44371397:180224 +k1,11561:11502720,44371397:180224 +k1,11561:13238113,44371397:180224 +k1,11561:15156352,44371397:180224 +k1,11561:15988004,44371397:180224 +k1,11561:17187312,44371397:180223 +k1,11561:18922705,44371397:180224 +k1,11561:21881656,44371397:180224 +k1,11561:22721172,44371397:180224 +k1,11561:23920481,44371397:180224 +k1,11561:26233902,44371397:180224 +k1,11561:27232015,44371397:180224 +k1,11561:28431324,44371397:180224 +k1,11561:31027860,44371397:180224 +k1,11561:32583029,44371397:0 +) +(1,11562:6630773,45236477:25952256,513147,134348 +k1,11561:9851025,45236477:214771 +k1,11561:10597292,45236477:214770 +k1,11561:12506824,45236477:214771 +k1,11561:13483123,45236477:214771 +k1,11561:14716979,45236477:214771 +k1,11561:16671075,45236477:214770 +k1,11561:17545138,45236477:214771 +k1,11561:18778994,45236477:214771 +k1,11561:21947472,45236477:214770 +k1,11561:22821535,45236477:214771 +k1,11561:24055391,45236477:214771 +k1,11561:27244841,45236477:214771 +k1,11561:29611158,45236477:214770 +k1,11561:30845014,45236477:214771 +k1,11561:32583029,45236477:0 +) +] +(1,11562:32583029,45706769:0,0,0 +g1,11562:32583029,45706769 +) +) +] +(1,11562:6630773,47279633:25952256,0,0 +h1,11562:6630773,47279633:25952256,0,0 +) +] +(1,11562:4262630,4025873:0,0,0 +[1,11562:-473656,4025873:0,0,0 +(1,11562:-473656,-710413:0,0,0 +(1,11562:-473656,-710413:0,0,0 +g1,11562:-473656,-710413 +) +g1,11562:-473656,-710413 +) +] +) +] +!28306 +}184 +Input:1723:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1724:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1725:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1726:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1727:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!482 +{185 +[1,11732:4262630,47279633:28320399,43253760,0 +(1,11732:4262630,4025873:0,0,0 +[1,11732:-473656,4025873:0,0,0 +(1,11732:-473656,-710413:0,0,0 +(1,11732:-473656,-644877:0,0,0 +k1,11732:-473656,-644877:-65536 ) -(1,12175:-473656,4736287:0,0,0 -k1,12175:-473656,4736287:5209943 +(1,11732:-473656,4736287:0,0,0 +k1,11732:-473656,4736287:5209943 ) -g1,12175:-473656,-710413 +g1,11732:-473656,-710413 ) ] ) -[1,12175:6630773,47279633:25952256,43253760,0 -[1,12175:6630773,4812305:25952256,786432,0 -(1,12175:6630773,4812305:25952256,505283,134348 -(1,12175:6630773,4812305:25952256,505283,134348 -g1,12175:3078558,4812305 -[1,12175:3078558,4812305:0,0,0 -(1,12175:3078558,2439708:0,1703936,0 -k1,12175:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,12175:2537886,2439708:1179648,16384,0 +[1,11732:6630773,47279633:25952256,43253760,0 +[1,11732:6630773,4812305:25952256,786432,0 +(1,11732:6630773,4812305:25952256,505283,134348 +(1,11732:6630773,4812305:25952256,505283,134348 +g1,11732:3078558,4812305 +[1,11732:3078558,4812305:0,0,0 +(1,11732:3078558,2439708:0,1703936,0 +k1,11732:1358238,2439708:-1720320 +(1,11038:1358238,2439708:1720320,1703936,0 +(1,11038:1358238,2439708:1179648,16384,0 +r1,11732:2537886,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,12175:3078558,1915420:16384,1179648,0 +g1,11038:3062174,2439708 +(1,11038:3062174,2439708:16384,1703936,0 +[1,11038:3062174,2439708:25952256,1703936,0 +(1,11038:3062174,1915420:25952256,1179648,0 +(1,11038:3062174,1915420:16384,1179648,0 +r1,11732:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +k1,11038:29014430,1915420:25935872 +g1,11038:29014430,1915420 ) ] ) ) ) ] -[1,12175:3078558,4812305:0,0,0 -(1,12175:3078558,2439708:0,1703936,0 -g1,12175:29030814,2439708 -g1,12175:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,12175:36151628,1915420:16384,1179648,0 +[1,11732:3078558,4812305:0,0,0 +(1,11732:3078558,2439708:0,1703936,0 +g1,11732:29030814,2439708 +g1,11732:36135244,2439708 +(1,11038:36135244,2439708:1720320,1703936,0 +(1,11038:36135244,2439708:16384,1703936,0 +[1,11038:36135244,2439708:25952256,1703936,0 +(1,11038:36135244,1915420:25952256,1179648,0 +(1,11038:36135244,1915420:16384,1179648,0 +r1,11732:36151628,1915420:16384,1179648,0 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +k1,11038:62087500,1915420:25935872 +g1,11038:62087500,1915420 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,12175:37855564,2439708:1179648,16384,0 +g1,11038:36675916,2439708 +(1,11038:36675916,2439708:1179648,16384,0 +r1,11732:37855564,2439708:1179648,16384,0 ) ) -k1,12175:3078556,2439708:-34777008 +k1,11732:3078556,2439708:-34777008 ) ] -[1,12175:3078558,4812305:0,0,0 -(1,12175:3078558,49800853:0,16384,2228224 -k1,12175:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,12175:2537886,49800853:1179648,16384,0 +[1,11732:3078558,4812305:0,0,0 +(1,11732:3078558,49800853:0,16384,2228224 +k1,11732:1358238,49800853:-1720320 +(1,11038:1358238,49800853:1720320,16384,2228224 +(1,11038:1358238,49800853:1179648,16384,0 +r1,11732:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,12175:3078558,51504789:16384,1179648,0 +g1,11038:3062174,49800853 +(1,11038:3062174,52029077:16384,1703936,0 +[1,11038:3062174,52029077:25952256,1703936,0 +(1,11038:3062174,51504789:25952256,1179648,0 +(1,11038:3062174,51504789:16384,1179648,0 +r1,11732:3078558,51504789:16384,1179648,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 -) -] +k1,11038:29014430,51504789:25935872 +g1,11038:29014430,51504789 +) +] +) +) +) +] +[1,11732:3078558,4812305:0,0,0 +(1,11732:3078558,49800853:0,16384,2228224 +g1,11732:29030814,49800853 +g1,11732:36135244,49800853 +(1,11038:36135244,49800853:1720320,16384,2228224 +(1,11038:36135244,52029077:16384,1703936,0 +[1,11038:36135244,52029077:25952256,1703936,0 +(1,11038:36135244,51504789:25952256,1179648,0 +(1,11038:36135244,51504789:16384,1179648,0 +r1,11732:36151628,51504789:16384,1179648,0 +) +k1,11038:62087500,51504789:25935872 +g1,11038:62087500,51504789 +) +] +) +g1,11038:36675916,49800853 +(1,11038:36675916,49800853:1179648,16384,0 +r1,11732:37855564,49800853:1179648,16384,0 +) +) +k1,11732:3078556,49800853:-34777008 +) +] +g1,11732:6630773,4812305 +k1,11732:23552825,4812305:15726675 +g1,11732:25175496,4812305 +g1,11732:25997972,4812305 +g1,11732:28481131,4812305 +g1,11732:30046786,4812305 +) +) +] +[1,11732:6630773,45706769:25952256,40108032,0 +(1,11732:6630773,45706769:25952256,40108032,0 +(1,11732:6630773,45706769:0,0,0 +g1,11732:6630773,45706769 +) +[1,11732:6630773,45706769:25952256,40108032,0 +(1,11562:6630773,6254097:25952256,513147,134348 +k1,11561:7526363,6254097:236298 +k1,11561:8781746,6254097:236298 +k1,11561:10301239,6254097:236298 +k1,11561:12092707,6254097:236299 +k1,11561:13951021,6254097:236298 +k1,11561:14935085,6254097:236298 +k1,11561:17136808,6254097:236298 +k1,11561:17985868,6254097:236298 +k1,11561:19241251,6254097:236298 +k1,11561:21016334,6254097:236298 +k1,11561:21911924,6254097:236298 +k1,11561:23167308,6254097:236299 +k1,11561:25555153,6254097:236298 +k1,11561:27281740,6254097:236298 +k1,11561:29788205,6254097:236298 +k1,11561:31227744,6254097:236298 +k1,11561:32583029,6254097:0 +) +(1,11562:6630773,7119177:25952256,505283,126483 +k1,11561:7924407,7119177:189352 +k1,11561:8861525,7119177:189352 +k1,11561:10628329,7119177:189352 +k1,11561:11503844,7119177:189353 +k1,11561:13768721,7119177:189352 +k1,11561:15529626,7119177:189352 +k1,11561:16335016,7119177:189352 +k1,11561:19061922,7119177:189352 +k1,11561:20454515,7119177:189352 +k1,11561:21999152,7119177:189352 +k1,11561:24144755,7119177:189353 +k1,11561:27179025,7119177:189352 +k1,11561:28721040,7119177:189352 +k1,11561:30573040,7119177:189352 +k1,11561:32583029,7119177:0 +) +(1,11562:6630773,7984257:25952256,513147,134348 +k1,11561:7186619,7984257:199986 +k1,11561:11011400,7984257:199985 +k1,11561:13906882,7984257:199986 +k1,11561:15298312,7984257:199985 +k1,11561:16517383,7984257:199986 +k1,11561:18000563,7984257:199985 +k1,11561:19929389,7984257:199986 +k1,11561:20595335,7984257:199985 +k1,11561:23176899,7984257:199986 +k1,11561:25386873,7984257:199985 +k1,11561:25942719,7984257:199986 +k1,11561:28896527,7984257:199985 +k1,11561:31052763,7984257:199986 +k1,11561:32583029,7984257:0 +) +(1,11562:6630773,8849337:25952256,505283,134348 +k1,11561:7535498,8849337:253297 +k1,11561:8536560,8849337:253296 +k1,11561:12165616,8849337:253297 +k1,11561:13372461,8849337:253296 +k1,11561:15286440,8849337:253297 +k1,11561:16937619,8849337:253296 +k1,11561:18394157,8849337:253297 +k1,11561:22139867,8849337:253296 +k1,11561:25054581,8849337:253297 +k1,11561:25959305,8849337:253296 +k1,11561:30245688,8849337:253297 +k1,11561:31829365,8849337:253296 +k1,11561:32583029,8849337:0 +) +(1,11562:6630773,9714417:25952256,505283,126483 +g1,11561:9062814,9714417 +g1,11561:10253603,9714417 +g1,11561:14654345,9714417 +g1,11561:15469612,9714417 +k1,11562:32583029,9714417:16524904 +g1,11562:32583029,9714417 +) +v1,11564:6630773,10399272:0,393216,0 +(1,11579:6630773,14534324:25952256,4528268,196608 +g1,11579:6630773,14534324 +g1,11579:6630773,14534324 +g1,11579:6434165,14534324 +(1,11579:6434165,14534324:0,4528268,196608 +r1,11732:32779637,14534324:26345472,4724876,196608 +k1,11579:6434165,14534324:-26345472 +) +(1,11579:6434165,14534324:26345472,4528268,196608 +[1,11579:6630773,14534324:25952256,4331660,0 +(1,11566:6630773,10610587:25952256,407923,9908 +(1,11565:6630773,10610587:0,0,0 +g1,11565:6630773,10610587 +g1,11565:6630773,10610587 +g1,11565:6303093,10610587 +(1,11565:6303093,10610587:0,0,0 +) +g1,11565:6630773,10610587 +) +g1,11566:7294681,10610587 +g1,11566:8290543,10610587 +h1,11566:9286405,10610587:0,0,0 +k1,11566:32583029,10610587:23296624 +g1,11566:32583029,10610587 +) +(1,11567:6630773,11295442:25952256,424439,79822 +h1,11567:6630773,11295442:0,0,0 +k1,11567:6630773,11295442:0 +h1,11567:9286405,11295442:0,0,0 +k1,11567:32583029,11295442:23296624 +g1,11567:32583029,11295442 +) +(1,11571:6630773,12111369:25952256,424439,79822 +(1,11569:6630773,12111369:0,0,0 +g1,11569:6630773,12111369 +g1,11569:6630773,12111369 +g1,11569:6303093,12111369 +(1,11569:6303093,12111369:0,0,0 +) +g1,11569:6630773,12111369 +) +g1,11571:7626635,12111369 +g1,11571:8954451,12111369 +h1,11571:11942036,12111369:0,0,0 +k1,11571:32583028,12111369:20640992 +g1,11571:32583028,12111369 +) +(1,11573:6630773,12927296:25952256,424439,106246 +(1,11572:6630773,12927296:0,0,0 +g1,11572:6630773,12927296 +g1,11572:6630773,12927296 +g1,11572:6303093,12927296 +(1,11572:6303093,12927296:0,0,0 +) +g1,11572:6630773,12927296 +) +k1,11573:6630773,12927296:0 +g1,11573:9618359,12927296 +g1,11573:10614221,12927296 +g1,11573:14929622,12927296 +k1,11573:14929622,12927296:0 +h1,11573:17917208,12927296:0,0,0 +k1,11573:32583029,12927296:14665821 +g1,11573:32583029,12927296 +) +(1,11574:6630773,13612151:25952256,424439,79822 +h1,11574:6630773,13612151:0,0,0 +k1,11574:6630773,13612151:0 +h1,11574:9286405,13612151:0,0,0 +k1,11574:32583029,13612151:23296624 +g1,11574:32583029,13612151 +) +(1,11578:6630773,14428078:25952256,424439,106246 +(1,11576:6630773,14428078:0,0,0 +g1,11576:6630773,14428078 +g1,11576:6630773,14428078 +g1,11576:6303093,14428078 +(1,11576:6303093,14428078:0,0,0 +) +g1,11576:6630773,14428078 +) +g1,11578:7626635,14428078 +g1,11578:8954451,14428078 +g1,11578:12273990,14428078 +h1,11578:15261575,14428078:0,0,0 +k1,11578:32583029,14428078:17321454 +g1,11578:32583029,14428078 +) +] +) +g1,11579:32583029,14534324 +g1,11579:6630773,14534324 +g1,11579:6630773,14534324 +g1,11579:32583029,14534324 +g1,11579:32583029,14534324 +) +h1,11579:6630773,14730932:0,0,0 +(1,11583:6630773,15596012:25952256,513147,134348 +h1,11582:6630773,15596012:983040,0,0 +k1,11582:9251938,15596012:230412 +k1,11582:10350702,15596012:230412 +k1,11582:12510495,15596012:230413 +k1,11582:13096767,15596012:230412 +k1,11582:14909218,15596012:230412 +k1,11582:17593953,15596012:230412 +k1,11582:20221673,15596012:230413 +k1,11582:21103513,15596012:230412 +(1,11582:21103513,15596012:0,452978,115847 +r1,11732:24275473,15596012:3171960,568825,115847 +k1,11582:21103513,15596012:-3171960 +) +(1,11582:21103513,15596012:3171960,452978,115847 +k1,11582:21103513,15596012:3277 +h1,11582:24272196,15596012:0,411205,112570 +) +k1,11582:24505885,15596012:230412 +k1,11582:27199796,15596012:230413 +k1,11582:30492705,15596012:230412 +k1,11582:31591469,15596012:230412 +k1,11582:32583029,15596012:0 +) +(1,11583:6630773,16461092:25952256,513147,134348 +k1,11582:8588285,16461092:222119 +k1,11582:11505900,16461092:222119 +(1,11582:11505900,16461092:0,459977,115847 +r1,11732:14677860,16461092:3171960,575824,115847 +k1,11582:11505900,16461092:-3171960 +) +(1,11582:11505900,16461092:3171960,459977,115847 +k1,11582:11505900,16461092:3277 +h1,11582:14674583,16461092:0,411205,112570 +) +k1,11582:14899978,16461092:222118 +k1,11582:16313542,16461092:222119 +k1,11582:17483312,16461092:222119 +k1,11582:18724516,16461092:222119 +k1,11582:21127018,16461092:222119 +k1,11582:24159320,16461092:222118 +k1,11582:25032867,16461092:222119 +k1,11582:26851443,16461092:222119 +k1,11582:27941914,16461092:222119 +k1,11582:29694298,16461092:222118 +k1,11582:30567845,16461092:222119 +k1,11582:32227169,16461092:222119 +k1,11583:32583029,16461092:0 +) +(1,11583:6630773,17326172:25952256,505283,134348 +(1,11582:6630773,17326172:0,452978,115847 +r1,11732:9099310,17326172:2468537,568825,115847 +k1,11582:6630773,17326172:-2468537 +) +(1,11582:6630773,17326172:2468537,452978,115847 +k1,11582:6630773,17326172:3277 +h1,11582:9096033,17326172:0,411205,112570 +) +k1,11582:9322388,17326172:223078 +k1,11582:11225808,17326172:223077 +k1,11582:12135048,17326172:223078 +k1,11582:13128829,17326172:223078 +k1,11582:18149141,17326172:223077 +k1,11582:21431440,17326172:223078 +(1,11582:21431440,17326172:0,459977,115847 +r1,11732:24603400,17326172:3171960,575824,115847 +k1,11582:21431440,17326172:-3171960 +) +(1,11582:21431440,17326172:3171960,459977,115847 +k1,11582:21431440,17326172:3277 +h1,11582:24600123,17326172:0,411205,112570 +) +k1,11582:24826477,17326172:223077 +k1,11582:26542465,17326172:223078 +k1,11582:27831814,17326172:223078 +k1,11582:30378142,17326172:223077 +k1,11582:31931601,17326172:223078 +k1,11582:32583029,17326172:0 +) +(1,11583:6630773,18191252:25952256,513147,134348 +g1,11582:8988758,18191252 +g1,11582:11477815,18191252 +g1,11582:12336336,18191252 +g1,11582:13554650,18191252 +g1,11582:15309048,18191252 +g1,11582:16376629,18191252 +g1,11582:18051073,18191252 +g1,11582:19479102,18191252 +k1,11583:32583029,18191252:10580136 +g1,11583:32583029,18191252 +) +v1,11585:6630773,18876107:0,393216,0 +(1,11591:6630773,20560076:25952256,2077185,196608 +g1,11591:6630773,20560076 +g1,11591:6630773,20560076 +g1,11591:6434165,20560076 +(1,11591:6434165,20560076:0,2077185,196608 +r1,11732:32779637,20560076:26345472,2273793,196608 +k1,11591:6434165,20560076:-26345472 +) +(1,11591:6434165,20560076:26345472,2077185,196608 +[1,11591:6630773,20560076:25952256,1880577,0 +(1,11587:6630773,19110544:25952256,431045,106246 +(1,11586:6630773,19110544:0,0,0 +g1,11586:6630773,19110544 +g1,11586:6630773,19110544 +g1,11586:6303093,19110544 +(1,11586:6303093,19110544:0,0,0 +) +g1,11586:6630773,19110544 +) +g1,11587:11278128,19110544 +g1,11587:12273990,19110544 +g1,11587:16257437,19110544 +h1,11587:16589391,19110544:0,0,0 +k1,11587:32583029,19110544:15993638 +g1,11587:32583029,19110544 +) +(1,11588:6630773,19795399:25952256,431045,106246 +h1,11588:6630773,19795399:0,0,0 +g1,11588:6962727,19795399 +g1,11588:7294681,19795399 +g1,11588:7626635,19795399 +g1,11588:7958589,19795399 +g1,11588:14265714,19795399 +g1,11588:16589392,19795399 +k1,11588:16589392,19795399:0 +h1,11588:21236747,19795399:0,0,0 +k1,11588:32583029,19795399:11346282 +g1,11588:32583029,19795399 +) +(1,11589:6630773,20480254:25952256,424439,79822 +h1,11589:6630773,20480254:0,0,0 +h1,11589:6962727,20480254:0,0,0 +k1,11589:32583029,20480254:25620302 +g1,11589:32583029,20480254 +) +] +) +g1,11591:32583029,20560076 +g1,11591:6630773,20560076 +g1,11591:6630773,20560076 +g1,11591:32583029,20560076 +g1,11591:32583029,20560076 +) +h1,11591:6630773,20756684:0,0,0 +(1,11595:6630773,21621764:25952256,513147,134348 +h1,11594:6630773,21621764:983040,0,0 +k1,11594:9431170,21621764:212380 +k1,11594:9999411,21621764:212381 +k1,11594:13765153,21621764:212380 +k1,11594:16431856,21621764:212380 +k1,11594:18475312,21621764:212380 +k1,11594:19635344,21621764:212381 +k1,11594:20203584,21621764:212380 +k1,11594:22144804,21621764:212380 +k1,11594:22815281,21621764:212380 +k1,11594:24160124,21621764:212381 +k1,11594:25120270,21621764:212380 +k1,11594:26845876,21621764:212380 +k1,11594:28005907,21621764:212380 +k1,11594:30508116,21621764:212381 +k1,11594:31379788,21621764:212380 +k1,11594:32583029,21621764:0 +) +(1,11595:6630773,22486844:25952256,505283,7863 +k1,11595:32583029,22486844:24223416 +g1,11595:32583029,22486844 +) +v1,11597:6630773,23171699:0,393216,0 +(1,11610:6630773,25927133:25952256,3148650,196608 +g1,11610:6630773,25927133 +g1,11610:6630773,25927133 +g1,11610:6434165,25927133 +(1,11610:6434165,25927133:0,3148650,196608 +r1,11732:32779637,25927133:26345472,3345258,196608 +k1,11610:6434165,25927133:-26345472 +) +(1,11610:6434165,25927133:26345472,3148650,196608 +[1,11610:6630773,25927133:25952256,2952042,0 +(1,11599:6630773,23399530:25952256,424439,106246 +(1,11598:6630773,23399530:0,0,0 +g1,11598:6630773,23399530 +g1,11598:6630773,23399530 +g1,11598:6303093,23399530 +(1,11598:6303093,23399530:0,0,0 +) +g1,11598:6630773,23399530 +) +k1,11599:6630773,23399530:0 +h1,11599:9286405,23399530:0,0,0 +k1,11599:32583029,23399530:23296624 +g1,11599:32583029,23399530 +) +(1,11603:6630773,24215457:25952256,424439,106246 +(1,11601:6630773,24215457:0,0,0 +g1,11601:6630773,24215457 +g1,11601:6630773,24215457 +g1,11601:6303093,24215457 +(1,11601:6303093,24215457:0,0,0 +) +g1,11601:6630773,24215457 +) +g1,11603:7626635,24215457 +g1,11603:8954451,24215457 +g1,11603:12605944,24215457 +h1,11603:13933760,24215457:0,0,0 +k1,11603:32583028,24215457:18649268 +g1,11603:32583028,24215457 +) +(1,11605:6630773,25031384:25952256,424439,106246 +(1,11604:6630773,25031384:0,0,0 +g1,11604:6630773,25031384 +g1,11604:6630773,25031384 +g1,11604:6303093,25031384 +(1,11604:6303093,25031384:0,0,0 +) +g1,11604:6630773,25031384 +) +k1,11605:6630773,25031384:0 +k1,11605:6630773,25031384:0 +h1,11605:13269852,25031384:0,0,0 +k1,11605:32583028,25031384:19313176 +g1,11605:32583028,25031384 +) +(1,11609:6630773,25847311:25952256,424439,79822 +(1,11607:6630773,25847311:0,0,0 +g1,11607:6630773,25847311 +g1,11607:6630773,25847311 +g1,11607:6303093,25847311 +(1,11607:6303093,25847311:0,0,0 +) +g1,11607:6630773,25847311 +) +g1,11609:7626635,25847311 +g1,11609:8954451,25847311 +h1,11609:9950313,25847311:0,0,0 +k1,11609:32583029,25847311:22632716 +g1,11609:32583029,25847311 +) +] +) +g1,11610:32583029,25927133 +g1,11610:6630773,25927133 +g1,11610:6630773,25927133 +g1,11610:32583029,25927133 +g1,11610:32583029,25927133 +) +h1,11610:6630773,26123741:0,0,0 +v1,11614:6630773,26988821:0,393216,0 +(1,11732:6630773,44475476:25952256,17879871,0 +g1,11732:6630773,44475476 +g1,11732:6237557,44475476 +r1,11732:6368629,44475476:131072,17879871,0 +g1,11732:6567858,44475476 +g1,11732:6764466,44475476 +[1,11732:6764466,44475476:25818563,17879871,0 +(1,11615:6764466,27297119:25818563,701514,196608 +(1,11614:6764466,27297119:0,701514,196608 +r1,11732:8010564,27297119:1246098,898122,196608 +k1,11614:6764466,27297119:-1246098 +) +(1,11614:6764466,27297119:1246098,701514,196608 +) +k1,11614:8307019,27297119:296455 +k1,11614:8634699,27297119:327680 +k1,11614:10127841,27297119:296455 +k1,11614:11177960,27297119:296455 +k1,11614:13029583,27297119:296454 +k1,11614:15571957,27297119:296455 +k1,11614:16399909,27297119:296455 +k1,11614:20864454,27297119:296455 +k1,11614:21776947,27297119:296455 +k1,11614:23357908,27297119:296455 +k1,11614:24112460,27297119:296455 +k1,11614:25936558,27297119:296454 +k1,11614:27586987,27297119:296455 +k1,11614:29356036,27297119:296455 +k1,11614:32583029,27297119:0 +) +(1,11615:6764466,28162199:25818563,513147,134348 +k1,11614:11064686,28162199:236333 +k1,11614:12850945,28162199:236333 +k1,11614:14159447,28162199:236333 +k1,11614:14853876,28162199:236332 +k1,11614:15621706,28162199:236333 +k1,11614:17809701,28162199:236333 +k1,11614:20683203,28162199:236333 +k1,11614:21535574,28162199:236333 +k1,11614:23056413,28162199:236333 +k1,11614:24894445,28162199:236332 +k1,11614:25790070,28162199:236333 +k1,11614:27045488,28162199:236333 +k1,11614:31635378,28162199:236333 +k1,11614:32583029,28162199:0 +) +(1,11615:6764466,29027279:25818563,513147,134348 +k1,11614:10729692,29027279:246713 +k1,11614:12167850,29027279:246713 +k1,11614:16079993,29027279:246714 +k1,11614:16985998,29027279:246713 +k1,11614:18251796,29027279:246713 +k1,11614:22485064,29027279:246713 +k1,11614:23798048,29027279:246713 +k1,11614:26662924,29027279:246713 +k1,11614:27745222,29027279:246714 +k1,11614:30726097,29027279:246713 +k1,11614:31734338,29027279:246713 +k1,11615:32583029,29027279:0 +) +(1,11615:6764466,29892359:25818563,513147,134348 +k1,11614:9562436,29892359:194225 +k1,11614:12782458,29892359:194225 +k1,11614:13659568,29892359:194225 +k1,11614:16220298,29892359:194225 +k1,11614:16770383,29892359:194225 +k1,11614:19544760,29892359:194225 +k1,11614:22802138,29892359:194225 +k1,11614:26022160,29892359:194225 +k1,11614:27610336,29892359:194225 +k1,11614:28823646,29892359:194225 +k1,11614:30671344,29892359:194225 +k1,11614:32583029,29892359:0 +) +(1,11615:6764466,30757439:25818563,505283,126483 +g1,11614:8248856,30757439 +g1,11614:8979582,30757439 +g1,11614:10245082,30757439 +g1,11614:13034294,30757439 +g1,11614:13995051,30757439 +g1,11614:15213365,30757439 +g1,11614:15827437,30757439 +k1,11615:32583029,30757439:13124242 +g1,11615:32583029,30757439 +) +(1,11617:6764466,31622519:25818563,513147,134348 +h1,11616:6764466,31622519:983040,0,0 +k1,11616:10622946,31622519:189119 +k1,11616:11167925,31622519:189119 +k1,11616:12640239,31622519:189119 +k1,11616:13583021,31622519:189118 +k1,11616:16079007,31622519:189119 +k1,11616:16799623,31622519:189119 +k1,11616:18274558,31622519:189119 +k1,11616:20088315,31622519:189119 +k1,11616:22575782,31622519:189119 +k1,11616:23252479,31622519:189109 +k1,11616:25748464,31622519:189118 +k1,11616:28391906,31622519:189119 +k1,11616:29772470,31622519:189119 +k1,11616:30317449,31622519:189119 +k1,11616:32583029,31622519:0 +) +(1,11617:6764466,32487599:25818563,505283,7863 +g1,11616:9418018,32487599 +g1,11616:11147513,32487599 +g1,11616:11998170,32487599 +g1,11616:12945165,32487599 +k1,11617:32583028,32487599:17114072 +g1,11617:32583028,32487599 +) +v1,11619:6764466,33172454:0,393216,0 +(1,11630:6764466,38280698:25818563,5501460,196608 +g1,11630:6764466,38280698 +g1,11630:6764466,38280698 +g1,11630:6567858,38280698 +(1,11630:6567858,38280698:0,5501460,196608 +r1,11732:32779637,38280698:26211779,5698068,196608 +k1,11630:6567857,38280698:-26211780 +) +(1,11630:6567858,38280698:26211779,5501460,196608 +[1,11630:6764466,38280698:25818563,5304852,0 +(1,11621:6764466,33406891:25818563,431045,106246 +(1,11620:6764466,33406891:0,0,0 +g1,11620:6764466,33406891 +g1,11620:6764466,33406891 +g1,11620:6436786,33406891 +(1,11620:6436786,33406891:0,0,0 +) +g1,11620:6764466,33406891 +) +g1,11621:9752051,33406891 +g1,11621:10747913,33406891 +g1,11621:13735498,33406891 +g1,11621:15063314,33406891 +g1,11621:16723084,33406891 +h1,11621:17055038,33406891:0,0,0 +k1,11621:32583029,33406891:15527991 +g1,11621:32583029,33406891 +) +(1,11622:6764466,34091746:25818563,424439,106246 +h1,11622:6764466,34091746:0,0,0 +g1,11622:7096420,34091746 +g1,11622:7428374,34091746 +g1,11622:7760328,34091746 +g1,11622:15063314,34091746 +h1,11622:15727222,34091746:0,0,0 +k1,11622:32583030,34091746:16855808 +g1,11622:32583030,34091746 +) +(1,11623:6764466,34776601:25818563,424439,79822 +h1,11623:6764466,34776601:0,0,0 +g1,11623:7096420,34776601 +h1,11623:7428374,34776601:0,0,0 +k1,11623:32583030,34776601:25154656 +g1,11623:32583030,34776601 +) +(1,11624:6764466,35461456:25818563,0,0 +h1,11624:6764466,35461456:0,0,0 +h1,11624:6764466,35461456:0,0,0 +k1,11624:32583030,35461456:25818564 +g1,11624:32583030,35461456 +) +(1,11625:6764466,36146311:25818563,431045,106246 +h1,11625:6764466,36146311:0,0,0 +g1,11625:12407683,36146311 +g1,11625:13403545,36146311 +g1,11625:17386992,36146311 +g1,11625:19046762,36146311 +h1,11625:19378716,36146311:0,0,0 +k1,11625:32583029,36146311:13204313 +g1,11625:32583029,36146311 +) +(1,11626:6764466,36831166:25818563,424439,106246 +h1,11626:6764466,36831166:0,0,0 +g1,11626:7096420,36831166 +g1,11626:7428374,36831166 +g1,11626:7760328,36831166 +k1,11626:7760328,36831166:0 +h1,11626:12739638,36831166:0,0,0 +k1,11626:32583030,36831166:19843392 +g1,11626:32583030,36831166 +) +(1,11627:6764466,37516021:25818563,424439,106246 +h1,11627:6764466,37516021:0,0,0 +g1,11627:7096420,37516021 +g1,11627:7428374,37516021 +g1,11627:7760328,37516021 +g1,11627:10747914,37516021 +h1,11627:12075730,37516021:0,0,0 +k1,11627:32583030,37516021:20507300 +g1,11627:32583030,37516021 +) +(1,11628:6764466,38200876:25818563,424439,79822 +h1,11628:6764466,38200876:0,0,0 +h1,11628:7096420,38200876:0,0,0 +k1,11628:32583028,38200876:25486608 +g1,11628:32583028,38200876 +) +] +) +g1,11630:32583029,38280698 +g1,11630:6764466,38280698 +g1,11630:6764466,38280698 +g1,11630:32583029,38280698 +g1,11630:32583029,38280698 +) +h1,11630:6764466,38477306:0,0,0 +v1,11634:6764466,39162161:0,393216,0 +(1,11649:6764466,43287305:25818563,4518360,196608 +g1,11649:6764466,43287305 +g1,11649:6764466,43287305 +g1,11649:6567858,43287305 +(1,11649:6567858,43287305:0,4518360,196608 +r1,11732:32779637,43287305:26211779,4714968,196608 +k1,11649:6567857,43287305:-26211780 +) +(1,11649:6567858,43287305:26211779,4518360,196608 +[1,11649:6764466,43287305:25818563,4321752,0 +(1,11636:6764466,39389992:25818563,424439,106246 +(1,11635:6764466,39389992:0,0,0 +g1,11635:6764466,39389992 +g1,11635:6764466,39389992 +g1,11635:6436786,39389992 +(1,11635:6436786,39389992:0,0,0 +) +g1,11635:6764466,39389992 +) +k1,11636:6764466,39389992:0 +h1,11636:11079867,39389992:0,0,0 +k1,11636:32583029,39389992:21503162 +g1,11636:32583029,39389992 +) +(1,11641:6764466,40205919:25818563,424439,79822 +(1,11638:6764466,40205919:0,0,0 +g1,11638:6764466,40205919 +g1,11638:6764466,40205919 +g1,11638:6436786,40205919 +(1,11638:6436786,40205919:0,0,0 +) +g1,11638:6764466,40205919 +) +g1,11641:7760328,40205919 +g1,11641:9088144,40205919 +h1,11641:12075729,40205919:0,0,0 +k1,11641:32583029,40205919:20507300 +g1,11641:32583029,40205919 +) +(1,11641:6764466,40890774:25818563,424439,79822 +h1,11641:6764466,40890774:0,0,0 +g1,11641:7760328,40890774 +g1,11641:9088144,40890774 +h1,11641:10084006,40890774:0,0,0 +k1,11641:32583030,40890774:22499024 +g1,11641:32583030,40890774 +) +(1,11643:6764466,41706701:25818563,424439,106246 +(1,11642:6764466,41706701:0,0,0 +g1,11642:6764466,41706701 +g1,11642:6764466,41706701 +g1,11642:6436786,41706701 +(1,11642:6436786,41706701:0,0,0 +) +g1,11642:6764466,41706701 +) +k1,11643:6764466,41706701:0 +h1,11643:11743775,41706701:0,0,0 +k1,11643:32583029,41706701:20839254 +g1,11643:32583029,41706701 +) +(1,11648:6764466,42522628:25818563,424439,79822 +(1,11645:6764466,42522628:0,0,0 +g1,11645:6764466,42522628 +g1,11645:6764466,42522628 +g1,11645:6436786,42522628 +(1,11645:6436786,42522628:0,0,0 +) +g1,11645:6764466,42522628 +) +g1,11648:7760328,42522628 +g1,11648:9088144,42522628 +h1,11648:12739637,42522628:0,0,0 +k1,11648:32583029,42522628:19843392 +g1,11648:32583029,42522628 +) +(1,11648:6764466,43207483:25818563,424439,79822 +h1,11648:6764466,43207483:0,0,0 +g1,11648:7760328,43207483 +g1,11648:9088144,43207483 +h1,11648:10747914,43207483:0,0,0 +k1,11648:32583030,43207483:21835116 +g1,11648:32583030,43207483 +) +] +) +g1,11649:32583029,43287305 +g1,11649:6764466,43287305 +g1,11649:6764466,43287305 +g1,11649:32583029,43287305 +g1,11649:32583029,43287305 +) +h1,11649:6764466,43483913:0,0,0 +(1,11653:6764466,44348993:25818563,513147,126483 +h1,11652:6764466,44348993:983040,0,0 +k1,11652:8779865,44348993:140414 +k1,11652:9571706,44348993:140413 +k1,11652:11216171,44348993:140414 +(1,11652:11216171,44348993:0,452978,115847 +r1,11732:14739843,44348993:3523672,568825,115847 +k1,11652:11216171,44348993:-3523672 +) +(1,11652:11216171,44348993:3523672,452978,115847 +k1,11652:11216171,44348993:3277 +h1,11652:14736566,44348993:0,411205,112570 ) +k1,11652:15053926,44348993:140413 +k1,11652:16295345,44348993:140414 +k1,11652:17245128,44348993:140413 +k1,11652:21967819,44348993:140414 +k1,11652:23061781,44348993:140413 +k1,11652:24532576,44348993:140414 +k1,11652:26287796,44348993:140413 +k1,11652:27584920,44348993:140414 +k1,11652:28672984,44348993:140413 +k1,11652:30202761,44348993:140414 +k1,11653:32583029,44348993:0 +k1,11653:32583029,44348993:0 ) +] +g1,11732:32583029,44475476 ) ] -[1,12175:3078558,4812305:0,0,0 -(1,12175:3078558,49800853:0,16384,2228224 -g1,12175:29030814,49800853 -g1,12175:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,12175:36151628,51504789:16384,1179648,0 +(1,11732:32583029,45706769:0,0,0 +g1,11732:32583029,45706769 ) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 ) ] +(1,11732:6630773,47279633:25952256,0,0 +h1,11732:6630773,47279633:25952256,0,0 ) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,12175:37855564,49800853:1179648,16384,0 +] +(1,11732:4262630,4025873:0,0,0 +[1,11732:-473656,4025873:0,0,0 +(1,11732:-473656,-710413:0,0,0 +(1,11732:-473656,-710413:0,0,0 +g1,11732:-473656,-710413 ) +g1,11732:-473656,-710413 ) -k1,12175:3078556,49800853:-34777008 +] ) ] -g1,12175:6630773,4812305 -g1,12175:6630773,4812305 -g1,12175:10074689,4812305 -g1,12175:13164711,4812305 -k1,12175:31387651,4812305:18222940 -) -) -] -[1,12175:6630773,45706769:25952256,40108032,0 -(1,12175:6630773,45706769:25952256,40108032,0 -(1,12175:6630773,45706769:0,0,0 -g1,12175:6630773,45706769 -) -[1,12175:6630773,45706769:25952256,40108032,0 -v1,12120:6630773,6254097:0,393216,0 -(1,12120:6630773,10589331:25952256,4728450,0 -g1,12120:6630773,10589331 -g1,12120:6303093,10589331 -r1,12175:6401397,10589331:98304,4728450,0 -g1,12120:6600626,10589331 -g1,12120:6797234,10589331 -[1,12120:6797234,10589331:25785795,4728450,0 -(1,12120:6797234,6374028:25785795,513147,134348 -k1,12119:11024821,6374028:290839 -k1,12119:13358418,6374028:290840 -k1,12119:15100879,6374028:290839 -k1,12119:16491412,6374028:290839 -k1,12119:17433679,6374028:290839 -(1,12119:17433679,6374028:0,452978,115847 -r1,12175:20253928,6374028:2820249,568825,115847 -k1,12119:17433679,6374028:-2820249 -) -(1,12119:17433679,6374028:2820249,452978,115847 -k1,12119:17433679,6374028:3277 -h1,12119:20250651,6374028:0,411205,112570 -) -k1,12119:20718438,6374028:290840 -k1,12119:22711247,6374028:290839 -k1,12119:25130040,6374028:290839 -k1,12119:28320192,6374028:290839 -k1,12119:29262460,6374028:290840 -k1,12119:30572384,6374028:290839 -k1,12119:32583029,6374028:0 -) -(1,12120:6797234,7215516:25785795,513147,126483 -k1,12119:9936773,7215516:174035 -k1,12119:11572261,7215516:174035 -k1,12119:14158676,7215516:174035 -(1,12119:14158676,7215516:0,452978,115847 -r1,12175:19440907,7215516:5282231,568825,115847 -k1,12119:14158676,7215516:-5282231 -) -(1,12119:14158676,7215516:5282231,452978,115847 -k1,12119:14158676,7215516:3277 -h1,12119:19437630,7215516:0,411205,112570 -) -k1,12119:19788612,7215516:174035 -k1,12119:22715814,7215516:174035 -k1,12119:23651377,7215516:174035 -(1,12119:23651377,7215516:0,452978,115847 -r1,12175:31043879,7215516:7392502,568825,115847 -k1,12119:23651377,7215516:-7392502 -) -(1,12119:23651377,7215516:7392502,452978,115847 -g1,12119:27875196,7215516 -h1,12119:31040602,7215516:0,411205,112570 -) -k1,12119:31391584,7215516:174035 -k1,12119:32583029,7215516:0 -) -(1,12120:6797234,8057004:25785795,513147,126483 -k1,12119:8415161,8057004:183999 -k1,12119:11011540,8057004:183999 -(1,12119:11011540,8057004:0,452978,115847 -r1,12175:16293771,8057004:5282231,568825,115847 -k1,12119:11011540,8057004:-5282231 -) -(1,12119:11011540,8057004:5282231,452978,115847 -k1,12119:11011540,8057004:3277 -h1,12119:16290494,8057004:0,411205,112570 -) -k1,12119:16651439,8057004:183998 -k1,12119:19588605,8057004:183999 -k1,12119:20534132,8057004:183999 -(1,12119:20534132,8057004:0,452978,115847 -r1,12175:23354381,8057004:2820249,568825,115847 -k1,12119:20534132,8057004:-2820249 -) -(1,12119:20534132,8057004:2820249,452978,115847 -k1,12119:20534132,8057004:3277 -h1,12119:23351104,8057004:0,411205,112570 -) -k1,12119:23538380,8057004:183999 -k1,12119:24913824,8057004:183999 -k1,12119:27858198,8057004:183998 -k1,12119:29061282,8057004:183999 -k1,12119:31577707,8057004:183999 -k1,12120:32583029,8057004:0 -) -(1,12120:6797234,8898492:25785795,513147,134348 -k1,12119:8460227,8898492:282149 -k1,12119:9761461,8898492:282149 -k1,12119:12604102,8898492:282149 -k1,12119:14621644,8898492:282149 -k1,12119:15259653,8898492:282149 -k1,12119:18304145,8898492:282149 -k1,12119:21658622,8898492:282149 -k1,12119:22556809,8898492:282149 -k1,12119:23858043,8898492:282149 -k1,12119:25239886,8898492:282149 -k1,12119:26173463,8898492:282149 -(1,12119:26173463,8898492:0,452978,115847 -r1,12175:29697135,8898492:3523672,568825,115847 -k1,12119:26173463,8898492:-3523672 -) -(1,12119:26173463,8898492:3523672,452978,115847 -k1,12119:26173463,8898492:3277 -h1,12119:29693858,8898492:0,411205,112570 -) -k1,12119:30152954,8898492:282149 -k1,12119:32583029,8898492:0 -) -(1,12120:6797234,9739980:25785795,513147,134348 -k1,12119:8053361,9739980:237042 -k1,12119:10463577,9739980:237042 -k1,12119:11892064,9739980:237042 -k1,12119:14439250,9739980:237042 -k1,12119:16006673,9739980:237042 -(1,12119:16006673,9739980:0,452978,115847 -r1,12175:19178633,9739980:3171960,568825,115847 -k1,12119:16006673,9739980:-3171960 -) -(1,12119:16006673,9739980:3171960,452978,115847 -k1,12119:16006673,9739980:3277 -h1,12119:19175356,9739980:0,411205,112570 -) -k1,12119:19415674,9739980:237041 -k1,12119:21762320,9739980:237042 -k1,12119:23018447,9739980:237042 -k1,12119:26650909,9739980:237042 -k1,12119:27547243,9739980:237042 -k1,12119:32583029,9739980:0 -) -(1,12120:6797234,10581468:25785795,505283,7863 -g1,12119:9812545,10581468 -g1,12119:10627812,10581468 -k1,12120:32583029,10581468:21366704 -g1,12120:32583029,10581468 -) -] -g1,12120:32583029,10589331 -) -h1,12120:6630773,10589331:0,0,0 -(1,12122:6630773,13396899:25952256,32768,229376 -(1,12122:6630773,13396899:0,32768,229376 -(1,12122:6630773,13396899:5505024,32768,229376 -r1,12175:12135797,13396899:5505024,262144,229376 -) -k1,12122:6630773,13396899:-5505024 -) -(1,12122:6630773,13396899:25952256,32768,0 -r1,12175:32583029,13396899:25952256,32768,0 -) -) -(1,12122:6630773,15001227:25952256,606339,161218 -(1,12122:6630773,15001227:1974731,575668,0 -g1,12122:6630773,15001227 -g1,12122:8605504,15001227 -) -g1,12122:12866393,15001227 -k1,12122:32583029,15001227:16097476 -g1,12122:32583029,15001227 -) -(1,12127:6630773,16235931:25952256,513147,134348 -k1,12126:7472801,16235931:214193 -k1,12126:10353000,16235931:214194 -k1,12126:11218621,16235931:214193 -k1,12126:14009034,16235931:214193 -k1,12126:16233873,16235931:214194 -k1,12126:18015687,16235931:214193 -k1,12126:18585740,16235931:214193 -k1,12126:22201908,16235931:214194 -k1,12126:26371199,16235931:214193 -k1,12126:27453744,16235931:214193 -k1,12126:28772220,16235931:214194 -k1,12126:30572384,16235931:214193 -k1,12126:32583029,16235931:0 -) -(1,12127:6630773,17077419:25952256,513147,134348 -k1,12126:8347925,17077419:149531 -k1,12126:9268160,17077419:149532 -k1,12126:11908714,17077419:149531 -k1,12126:12992788,17077419:149531 -k1,12126:13825205,17077419:149532 -k1,12126:17061482,17077419:149531 -k1,12126:17870305,17077419:149531 -k1,12126:20204152,17077419:149532 -k1,12126:21307232,17077419:149531 -k1,12126:22556457,17077419:149531 -k1,12126:23909230,17077419:149532 -k1,12126:27133055,17077419:149531 -k1,12126:32583029,17077419:0 -) -(1,12127:6630773,17918907:25952256,505283,134348 -k1,12126:9896909,17918907:170215 -k1,12126:11263810,17918907:170214 -k1,12126:13350298,17918907:170215 -k1,12126:14624795,17918907:170215 -k1,12126:15542775,17918907:170214 -k1,12126:17290442,17918907:170215 -k1,12126:19316636,17918907:170214 -k1,12126:20880802,17918907:170215 -k1,12126:24988420,17918907:170215 -k1,12126:25841519,17918907:170214 -k1,12126:28471956,17918907:170215 -k1,12126:32583029,17918907:0 -) -(1,12127:6630773,18760395:25952256,513147,134348 -k1,12126:7526432,18760395:267824 -k1,12126:8813340,18760395:267823 -k1,12126:11322495,18760395:267824 -k1,12126:13131070,18760395:267824 -k1,12126:14165010,18760395:267824 -k1,12126:16349106,18760395:267823 -k1,12126:17608490,18760395:267824 -k1,12126:19643820,18760395:267824 -k1,12126:21479265,18760395:267824 -k1,12126:22766173,18760395:267823 -k1,12126:24916846,18760395:267824 -k1,12126:26119213,18760395:267824 -k1,12126:27046329,18760395:267824 -k1,12126:29498467,18760395:267823 -k1,12126:32124932,18760395:267824 -k1,12126:32583029,18760395:0 -) -(1,12127:6630773,19601883:25952256,513147,134348 -k1,12126:9478353,19601883:217620 -k1,12126:10643625,19601883:217621 -k1,12126:11217105,19601883:217620 -k1,12126:13129487,19601883:217621 -k1,12126:15027450,19601883:217620 -k1,12126:15896498,19601883:217620 -k1,12126:16861885,19601883:217621 -k1,12126:19080319,19601883:217620 -k1,12126:20948136,19601883:217620 -k1,12126:22608204,19601883:217621 -k1,12126:24489783,19601883:217620 -k1,12126:25335239,19601883:217621 -k1,12126:26571944,19601883:217620 -k1,12126:29055144,19601883:217620 -k1,12126:30639846,19601883:217621 -k1,12126:31516758,19601883:217620 -k1,12126:32583029,19601883:0 -) -(1,12127:6630773,20443371:25952256,513147,134348 -k1,12126:8610222,20443371:244056 -k1,12126:12965351,20443371:244056 -k1,12126:16870903,20443371:244056 -k1,12126:19031232,20443371:244056 -k1,12126:20266848,20443371:244056 -k1,12126:22278410,20443371:244056 -k1,12126:24090087,20443371:244056 -k1,12126:25353228,20443371:244056 -k1,12126:27607929,20443371:244056 -k1,12126:31069803,20443371:244056 -k1,12126:32583029,20443371:0 -) -(1,12127:6630773,21284859:25952256,505283,134348 -g1,12126:9827619,21284859 -g1,12126:11045933,21284859 -g1,12126:13255807,21284859 -g1,12126:15690469,21284859 -g1,12126:16505736,21284859 -g1,12126:18738547,21284859 -k1,12127:32583029,21284859:11754539 -g1,12127:32583029,21284859 -) -v1,12129:6630773,22453322:0,393216,0 -(1,12149:6630773,28051040:25952256,5990934,196608 -g1,12149:6630773,28051040 -g1,12149:6630773,28051040 -g1,12149:6434165,28051040 -(1,12149:6434165,28051040:0,5990934,196608 -r1,12175:32779637,28051040:26345472,6187542,196608 -k1,12149:6434165,28051040:-26345472 -) -(1,12149:6434165,28051040:26345472,5990934,196608 -[1,12149:6630773,28051040:25952256,5794326,0 -(1,12131:6630773,22660940:25952256,404226,101187 -(1,12130:6630773,22660940:0,0,0 -g1,12130:6630773,22660940 -g1,12130:6630773,22660940 -g1,12130:6303093,22660940 -(1,12130:6303093,22660940:0,0,0 -) -g1,12130:6630773,22660940 -) -k1,12131:6630773,22660940:0 -g1,12131:9476085,22660940 -g1,12131:10108377,22660940 -h1,12131:12637542,22660940:0,0,0 -k1,12131:32583030,22660940:19945488 -g1,12131:32583030,22660940 -) -(1,12136:6630773,23327118:25952256,404226,76021 -(1,12133:6630773,23327118:0,0,0 -g1,12133:6630773,23327118 -g1,12133:6630773,23327118 -g1,12133:6303093,23327118 -(1,12133:6303093,23327118:0,0,0 -) -g1,12133:6630773,23327118 -) -k1,12136:7565503,23327118:302439 -k1,12136:7867943,23327118:302440 -k1,12136:9118819,23327118:302439 -k1,12136:10369695,23327118:302439 -k1,12136:11620571,23327118:302439 -k1,12136:12871448,23327118:302440 -k1,12136:14122324,23327118:302439 -k1,12136:15373200,23327118:302439 -k1,12136:16624077,23327118:302440 -k1,12136:17874953,23327118:302439 -k1,12136:19125829,23327118:302439 -k1,12136:20376705,23327118:302439 -k1,12136:21627582,23327118:302440 -k1,12136:22878458,23327118:302439 -k1,12136:24129334,23327118:302439 -k1,12136:25380211,23327118:302440 -k1,12136:26631087,23327118:302439 -k1,12136:27881963,23327118:302439 -k1,12136:29132839,23327118:302439 -k1,12136:30383716,23327118:302440 -k1,12136:31634592,23327118:302439 -h1,12136:32583029,23327118:0,0,0 -k1,12136:32583029,23327118:0 -k1,12136:32583029,23327118:0 -) -(1,12136:6630773,23993296:25952256,404226,82312 -h1,12136:6630773,23993296:0,0,0 -g1,12136:7579210,23993296 -g1,12136:9159939,23993296 -g1,12136:10424522,23993296 -g1,12136:11689105,23993296 -g1,12136:12953688,23993296 -g1,12136:14218271,23993296 -g1,12136:15482854,23993296 -g1,12136:16747437,23993296 -h1,12136:17695874,23993296:0,0,0 -k1,12136:32583029,23993296:14887155 -g1,12136:32583029,23993296 -) -(1,12138:6630773,25314834:25952256,404226,101187 -(1,12137:6630773,25314834:0,0,0 -g1,12137:6630773,25314834 -g1,12137:6630773,25314834 -g1,12137:6303093,25314834 -(1,12137:6303093,25314834:0,0,0 -) -g1,12137:6630773,25314834 -) -k1,12138:6630773,25314834:0 -g1,12138:9476085,25314834 -g1,12138:10108377,25314834 -g1,12138:12953689,25314834 -g1,12138:14534418,25314834 -g1,12138:15166710,25314834 -h1,12138:16115147,25314834:0,0,0 -k1,12138:32583029,25314834:16467882 -g1,12138:32583029,25314834 -) -(1,12142:6630773,25981012:25952256,404226,82312 -(1,12140:6630773,25981012:0,0,0 -g1,12140:6630773,25981012 -g1,12140:6630773,25981012 -g1,12140:6303093,25981012 -(1,12140:6303093,25981012:0,0,0 -) -g1,12140:6630773,25981012 -) -g1,12142:7579210,25981012 -g1,12142:7895356,25981012 -g1,12142:9159939,25981012 -g1,12142:10424522,25981012 -g1,12142:11689105,25981012 -g1,12142:12953688,25981012 -g1,12142:14218271,25981012 -g1,12142:15482854,25981012 -g1,12142:16747437,25981012 -g1,12142:18012020,25981012 -g1,12142:19276603,25981012 -g1,12142:20541186,25981012 -g1,12142:21805769,25981012 -g1,12142:23070352,25981012 -h1,12142:24018789,25981012:0,0,0 -k1,12142:32583029,25981012:8564240 -g1,12142:32583029,25981012 -) -(1,12144:6630773,27302550:25952256,404226,101187 -(1,12143:6630773,27302550:0,0,0 -g1,12143:6630773,27302550 -g1,12143:6630773,27302550 -g1,12143:6303093,27302550 -(1,12143:6303093,27302550:0,0,0 -) -g1,12143:6630773,27302550 -) -k1,12144:6630773,27302550:0 -g1,12144:9476085,27302550 -g1,12144:10108377,27302550 -g1,12144:12953689,27302550 -g1,12144:14534418,27302550 -g1,12144:15166710,27302550 -g1,12144:16431293,27302550 -g1,12144:18960459,27302550 -g1,12144:19592751,27302550 -h1,12144:21173480,27302550:0,0,0 -k1,12144:32583029,27302550:11409549 -g1,12144:32583029,27302550 -) -(1,12148:6630773,27968728:25952256,404226,82312 -(1,12146:6630773,27968728:0,0,0 -g1,12146:6630773,27968728 -g1,12146:6630773,27968728 -g1,12146:6303093,27968728 -(1,12146:6303093,27968728:0,0,0 -) -g1,12146:6630773,27968728 -) -g1,12148:7579210,27968728 -g1,12148:7895356,27968728 -g1,12148:9159939,27968728 -g1,12148:10424522,27968728 -g1,12148:11689105,27968728 -g1,12148:12953688,27968728 -g1,12148:14218271,27968728 -g1,12148:15482854,27968728 -g1,12148:16747437,27968728 -g1,12148:18012020,27968728 -g1,12148:19276603,27968728 -g1,12148:20541186,27968728 -g1,12148:21805769,27968728 -g1,12148:23070352,27968728 -h1,12148:24018789,27968728:0,0,0 -k1,12148:32583029,27968728:8564240 -g1,12148:32583029,27968728 -) -] -) -g1,12149:32583029,28051040 -g1,12149:6630773,28051040 -g1,12149:6630773,28051040 -g1,12149:32583029,28051040 -g1,12149:32583029,28051040 -) -h1,12149:6630773,28247648:0,0,0 -(1,12153:6630773,29591421:25952256,513147,134348 -h1,12152:6630773,29591421:983040,0,0 -k1,12152:8535845,29591421:294197 -k1,12152:11541266,29591421:294197 -k1,12152:16871249,29591421:294197 -k1,12152:20087696,29591421:294197 -k1,12152:20913390,29591421:294197 -k1,12152:23184809,29591421:294198 -k1,12152:25177044,29591421:294197 -k1,12152:26339593,29591421:294197 -k1,12152:28164056,29591421:294197 -k1,12152:29109681,29591421:294197 -k1,12152:31224468,29591421:294197 -k1,12153:32583029,29591421:0 -) -(1,12153:6630773,30432909:25952256,513147,134348 -k1,12152:8096337,30432909:200719 -k1,12152:8956348,30432909:200719 -k1,12152:13402488,30432909:200718 -k1,12152:14874605,30432909:200719 -k1,12152:16568890,30432909:200719 -k1,12152:18136690,30432909:200719 -k1,12152:18868906,30432909:200719 -k1,12152:22066586,30432909:200719 -k1,12152:25742023,30432909:200718 -k1,12152:26594170,30432909:200719 -k1,12152:30964945,30432909:200719 -k1,12152:32583029,30432909:0 -) -(1,12153:6630773,31274397:25952256,505283,134348 -k1,12152:7479698,31274397:232887 -k1,12152:8483288,31274397:232887 -k1,12152:12325243,31274397:232887 -k1,12152:13241014,31274397:232886 -k1,12152:16284740,31274397:232887 -k1,12152:19044040,31274397:232887 -k1,12152:19928355,31274397:232887 -k1,12152:23096600,31274397:232887 -k1,12152:23945525,31274397:232887 -k1,12152:24534272,31274397:232887 -k1,12152:27039947,31274397:232886 -k1,12152:29877235,31274397:232887 -k1,12152:31202607,31274397:232887 -k1,12152:31966991,31274397:232887 -k1,12152:32583029,31274397:0 -) -(1,12153:6630773,32115885:25952256,505283,134348 -k1,12152:11327665,32115885:187360 -k1,12152:12166454,32115885:187361 -k1,12152:15069626,32115885:187360 -k1,12152:18082898,32115885:187360 -k1,12152:18886297,32115885:187361 -k1,12152:22354389,32115885:187360 -k1,12152:25587862,32115885:187360 -k1,12152:27510616,32115885:187361 -k1,12152:30671344,32115885:187360 -k1,12153:32583029,32115885:0 -) -(1,12153:6630773,32957373:25952256,505283,7863 -k1,12153:32583029,32957373:23365550 -g1,12153:32583029,32957373 -) -v1,12155:6630773,34301147:0,393216,0 -(1,12172:6630773,45204484:25952256,11296553,0 -g1,12172:6630773,45204484 -g1,12172:6303093,45204484 -r1,12175:6401397,45204484:98304,11296553,0 -g1,12172:6600626,45204484 -g1,12172:6797234,45204484 -[1,12172:6797234,45204484:25785795,11296553,0 -(1,12156:6797234,34696250:25785795,788319,218313 -(1,12155:6797234,34696250:0,788319,218313 -r1,12175:7917113,34696250:1119879,1006632,218313 -k1,12155:6797234,34696250:-1119879 -) -(1,12155:6797234,34696250:1119879,788319,218313 -) -g1,12155:8116342,34696250 -g1,12155:8444022,34696250 -g1,12155:10152545,34696250 -g1,12155:11016309,34696250 -g1,12155:13570902,34696250 -g1,12155:16336521,34696250 -g1,12155:18168252,34696250 -g1,12155:19986220,34696250 -g1,12155:20555072,34696250 -g1,12155:22170534,34696250 -k1,12155:32583029,34696250:8139706 -g1,12156:32583029,34696250 -) -(1,12156:6797234,35537738:25785795,513147,134348 -k1,12155:7830924,35537738:215801 -k1,12155:11136747,35537738:215800 -k1,12155:11968586,35537738:215801 -k1,12155:14463074,35537738:215801 -h1,12155:15433662,35537738:0,0,0 -k1,12155:15649462,35537738:215800 -k1,12155:16674633,35537738:215801 -k1,12155:18388587,35537738:215801 -h1,12155:19185505,35537738:0,0,0 -k1,12155:19574975,35537738:215800 -k1,12155:21180139,35537738:215801 -k1,12155:23602536,35537738:215800 -k1,12155:24809897,35537738:215801 -k1,12155:28369345,35537738:215801 -k1,12155:30098371,35537738:215800 -k1,12155:30965600,35537738:215801 -k1,12155:32583029,35537738:0 -) -(1,12156:6797234,36379226:25785795,513147,134348 -k1,12155:8092837,36379226:138893 -k1,12155:11973179,36379226:138892 -k1,12155:13168512,36379226:138893 -k1,12155:14684972,36379226:138893 -k1,12155:15652895,36379226:138893 -k1,12155:18071129,36379226:138892 -k1,12155:18565882,36379226:138893 -k1,12155:20784888,36379226:138893 -k1,12155:21583073,36379226:138893 -k1,12155:23256163,36379226:138892 -k1,12155:24263408,36379226:138893 -k1,12155:25932567,36379226:138893 -k1,12155:26722888,36379226:138893 -k1,12155:29593976,36379226:138892 -k1,12155:30088729,36379226:138893 -k1,12155:32583029,36379226:0 -) -(1,12156:6797234,37220714:25785795,513147,126483 -k1,12155:7920520,37220714:188743 -k1,12155:8768555,37220714:188743 -k1,12155:11206494,37220714:188743 -k1,12155:12046665,37220714:188743 -k1,12155:13327893,37220714:188743 -k1,12155:14910587,37220714:188743 -k1,12155:16118415,37220714:188743 -k1,12155:19521700,37220714:188744 -k1,12155:22457057,37220714:188743 -(1,12155:22664151,37220714:0,452978,115847 -r1,12175:23725841,37220714:1061690,568825,115847 -k1,12155:22664151,37220714:-1061690 -) -(1,12155:22664151,37220714:1061690,452978,115847 -g1,12155:23370852,37220714 -h1,12155:23722564,37220714:0,411205,112570 -) -k1,12155:24295348,37220714:188743 -k1,12155:25972414,37220714:188743 -k1,12155:27029509,37220714:188743 -k1,12155:29497594,37220714:188743 -k1,12155:31048831,37220714:188743 -k1,12155:32583029,37220714:0 -) -(1,12156:6797234,38062202:25785795,513147,134348 -k1,12155:8567882,38062202:203027 -k1,12155:10160271,38062202:203026 -k1,12155:12239594,38062202:203027 -(1,12155:12239594,38062202:0,414482,115847 -r1,12175:13652995,38062202:1413401,530329,115847 -k1,12155:12239594,38062202:-1413401 -) -(1,12155:12239594,38062202:1413401,414482,115847 -k1,12155:12239594,38062202:3277 -h1,12155:13649718,38062202:0,411205,112570 -) -k1,12155:13856021,38062202:203026 -k1,12155:16817458,38062202:203027 -k1,12155:17636523,38062202:203027 -k1,12155:18428062,38062202:203026 -k1,12155:20505419,38062202:203027 -k1,12155:22097809,38062202:203027 -k1,12155:24562482,38062202:203026 -k1,12155:25424801,38062202:203027 -k1,12155:28441288,38062202:203026 -k1,12155:31635378,38062202:203027 -k1,12155:32583029,38062202:0 -) -(1,12156:6797234,38903690:25785795,513147,134348 -k1,12155:8356336,38903690:251003 -k1,12155:10969256,38903690:251002 -k1,12155:11833021,38903690:251003 -k1,12155:14846367,38903690:251003 -k1,12155:17294137,38903690:251003 -k1,12155:18231301,38903690:251002 -k1,12155:21572327,38903690:251003 -k1,12155:22439368,38903690:251003 -k1,12155:23709456,38903690:251003 -k1,12155:28786529,38903690:251002 -k1,12155:31821501,38903690:251003 -k1,12155:32583029,38903690:0 -) -(1,12156:6797234,39745178:25785795,505283,134348 -g1,12155:9641496,39745178 -(1,12155:9641496,39745178:0,452978,115847 -r1,12175:13165168,39745178:3523672,568825,115847 -k1,12155:9641496,39745178:-3523672 -) -(1,12155:9641496,39745178:3523672,452978,115847 -k1,12155:9641496,39745178:3277 -h1,12155:13161891,39745178:0,411205,112570 -) -k1,12156:32583028,39745178:19037096 -g1,12156:32583028,39745178 -) -v1,12158:6797234,40935644:0,393216,0 -(1,12169:6797234,44483588:25785795,3941160,196608 -g1,12169:6797234,44483588 -g1,12169:6797234,44483588 -g1,12169:6600626,44483588 -(1,12169:6600626,44483588:0,3941160,196608 -r1,12175:32779637,44483588:26179011,4137768,196608 -k1,12169:6600625,44483588:-26179012 -) -(1,12169:6600626,44483588:26179011,3941160,196608 -[1,12169:6797234,44483588:25785795,3744552,0 -(1,12160:6797234,41143262:25785795,404226,101187 -(1,12159:6797234,41143262:0,0,0 -g1,12159:6797234,41143262 -g1,12159:6797234,41143262 -g1,12159:6469554,41143262 -(1,12159:6469554,41143262:0,0,0 -) -g1,12159:6797234,41143262 -) -k1,12160:6797234,41143262:0 -g1,12160:11223274,41143262 -g1,12160:11855566,41143262 -g1,12160:16281607,41143262 -g1,12160:17862336,41143262 -g1,12160:18494628,41143262 -g1,12160:19759212,41143262 -h1,12160:20075358,41143262:0,0,0 -k1,12160:32583029,41143262:12507671 -g1,12160:32583029,41143262 -) -(1,12168:6797234,41809440:25785795,404226,101187 -(1,12162:6797234,41809440:0,0,0 -g1,12162:6797234,41809440 -g1,12162:6797234,41809440 -g1,12162:6469554,41809440 -(1,12162:6469554,41809440:0,0,0 -) -g1,12162:6797234,41809440 -) -g1,12168:7745671,41809440 -g1,12168:8061817,41809440 -g1,12168:8377963,41809440 -g1,12168:8694109,41809440 -g1,12168:10590983,41809440 -h1,12168:11855566,41809440:0,0,0 -k1,12168:32583030,41809440:20727464 -g1,12168:32583030,41809440 -) -(1,12168:6797234,42475618:25785795,388497,9436 -h1,12168:6797234,42475618:0,0,0 -g1,12168:7745671,42475618 -g1,12168:8694108,42475618 -g1,12168:9010254,42475618 -g1,12168:9326400,42475618 -g1,12168:9642546,42475618 -g1,12168:10590983,42475618 -g1,12168:10907129,42475618 -g1,12168:11223275,42475618 -h1,12168:11855566,42475618:0,0,0 -k1,12168:32583030,42475618:20727464 -g1,12168:32583030,42475618 -) -(1,12168:6797234,43141796:25785795,388497,9436 -h1,12168:6797234,43141796:0,0,0 -g1,12168:7745671,43141796 -g1,12168:8694108,43141796 -g1,12168:9010254,43141796 -g1,12168:9326400,43141796 -g1,12168:9642546,43141796 -g1,12168:10590983,43141796 -g1,12168:10907129,43141796 -g1,12168:11223275,43141796 -h1,12168:11855566,43141796:0,0,0 -k1,12168:32583030,43141796:20727464 -g1,12168:32583030,43141796 -) -(1,12168:6797234,43807974:25785795,388497,9436 -h1,12168:6797234,43807974:0,0,0 -g1,12168:7745671,43807974 -g1,12168:8694108,43807974 -g1,12168:9010254,43807974 -g1,12168:9326400,43807974 -g1,12168:9642546,43807974 -g1,12168:10590983,43807974 -g1,12168:10907129,43807974 -g1,12168:11223275,43807974 -h1,12168:11855566,43807974:0,0,0 -k1,12168:32583030,43807974:20727464 -g1,12168:32583030,43807974 -) -(1,12168:6797234,44474152:25785795,388497,9436 -h1,12168:6797234,44474152:0,0,0 -g1,12168:7745671,44474152 -g1,12168:8694108,44474152 -g1,12168:9010254,44474152 -g1,12168:9326400,44474152 -g1,12168:9642546,44474152 -g1,12168:10590983,44474152 -g1,12168:10907129,44474152 -g1,12168:11223275,44474152 -h1,12168:11855566,44474152:0,0,0 -k1,12168:32583030,44474152:20727464 -g1,12168:32583030,44474152 -) -] -) -g1,12169:32583029,44483588 -g1,12169:6797234,44483588 -g1,12169:6797234,44483588 -g1,12169:32583029,44483588 -g1,12169:32583029,44483588 -) -h1,12169:6797234,44680196:0,0,0 -] -g1,12172:32583029,45204484 -) -h1,12172:6630773,45204484:0,0,0 -] -(1,12175:32583029,45706769:0,0,0 -g1,12175:32583029,45706769 -) -) -] -(1,12175:6630773,47279633:25952256,0,0 -h1,12175:6630773,47279633:25952256,0,0 -) -] -(1,12175:4262630,4025873:0,0,0 -[1,12175:-473656,4025873:0,0,0 -(1,12175:-473656,-710413:0,0,0 -(1,12175:-473656,-710413:0,0,0 -g1,12175:-473656,-710413 -) -g1,12175:-473656,-710413 -) -] -) -] -!26097 -}208 -Input:1798:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1799:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1800:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1801:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1802:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!482 -{209 -[1,12244:4262630,47279633:28320399,43253760,0 -(1,12244:4262630,4025873:0,0,0 -[1,12244:-473656,4025873:0,0,0 -(1,12244:-473656,-710413:0,0,0 -(1,12244:-473656,-644877:0,0,0 -k1,12244:-473656,-644877:-65536 +!25207 +}185 +Input:1728:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!106 +{186 +[1,11769:4262630,47279633:28320399,43253760,0 +(1,11769:4262630,4025873:0,0,0 +[1,11769:-473656,4025873:0,0,0 +(1,11769:-473656,-710413:0,0,0 +(1,11769:-473656,-644877:0,0,0 +k1,11769:-473656,-644877:-65536 ) -(1,12244:-473656,4736287:0,0,0 -k1,12244:-473656,4736287:5209943 +(1,11769:-473656,4736287:0,0,0 +k1,11769:-473656,4736287:5209943 ) -g1,12244:-473656,-710413 +g1,11769:-473656,-710413 ) ] ) -[1,12244:6630773,47279633:25952256,43253760,0 -[1,12244:6630773,4812305:25952256,786432,0 -(1,12244:6630773,4812305:25952256,513147,126483 -(1,12244:6630773,4812305:25952256,513147,126483 -g1,12244:3078558,4812305 -[1,12244:3078558,4812305:0,0,0 -(1,12244:3078558,2439708:0,1703936,0 -k1,12244:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,12244:2537886,2439708:1179648,16384,0 +[1,11769:6630773,47279633:25952256,43253760,0 +[1,11769:6630773,4812305:25952256,786432,0 +(1,11769:6630773,4812305:25952256,513147,126483 +(1,11769:6630773,4812305:25952256,513147,126483 +g1,11769:3078558,4812305 +[1,11769:3078558,4812305:0,0,0 +(1,11769:3078558,2439708:0,1703936,0 +k1,11769:1358238,2439708:-1720320 +(1,11038:1358238,2439708:1720320,1703936,0 +(1,11038:1358238,2439708:1179648,16384,0 +r1,11769:2537886,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,12244:3078558,1915420:16384,1179648,0 +g1,11038:3062174,2439708 +(1,11038:3062174,2439708:16384,1703936,0 +[1,11038:3062174,2439708:25952256,1703936,0 +(1,11038:3062174,1915420:25952256,1179648,0 +(1,11038:3062174,1915420:16384,1179648,0 +r1,11769:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +k1,11038:29014430,1915420:25935872 +g1,11038:29014430,1915420 ) ] ) ) ) ] -[1,12244:3078558,4812305:0,0,0 -(1,12244:3078558,2439708:0,1703936,0 -g1,12244:29030814,2439708 -g1,12244:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,12244:36151628,1915420:16384,1179648,0 +[1,11769:3078558,4812305:0,0,0 +(1,11769:3078558,2439708:0,1703936,0 +g1,11769:29030814,2439708 +g1,11769:36135244,2439708 +(1,11038:36135244,2439708:1720320,1703936,0 +(1,11038:36135244,2439708:16384,1703936,0 +[1,11038:36135244,2439708:25952256,1703936,0 +(1,11038:36135244,1915420:25952256,1179648,0 +(1,11038:36135244,1915420:16384,1179648,0 +r1,11769:36151628,1915420:16384,1179648,0 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +k1,11038:62087500,1915420:25935872 +g1,11038:62087500,1915420 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,12244:37855564,2439708:1179648,16384,0 +g1,11038:36675916,2439708 +(1,11038:36675916,2439708:1179648,16384,0 +r1,11769:37855564,2439708:1179648,16384,0 ) ) -k1,12244:3078556,2439708:-34777008 +k1,11769:3078556,2439708:-34777008 ) ] -[1,12244:3078558,4812305:0,0,0 -(1,12244:3078558,49800853:0,16384,2228224 -k1,12244:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,12244:2537886,49800853:1179648,16384,0 +[1,11769:3078558,4812305:0,0,0 +(1,11769:3078558,49800853:0,16384,2228224 +k1,11769:1358238,49800853:-1720320 +(1,11038:1358238,49800853:1720320,16384,2228224 +(1,11038:1358238,49800853:1179648,16384,0 +r1,11769:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,12244:3078558,51504789:16384,1179648,0 +g1,11038:3062174,49800853 +(1,11038:3062174,52029077:16384,1703936,0 +[1,11038:3062174,52029077:25952256,1703936,0 +(1,11038:3062174,51504789:25952256,1179648,0 +(1,11038:3062174,51504789:16384,1179648,0 +r1,11769:3078558,51504789:16384,1179648,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 +k1,11038:29014430,51504789:25935872 +g1,11038:29014430,51504789 ) ] ) ) ) ] -[1,12244:3078558,4812305:0,0,0 -(1,12244:3078558,49800853:0,16384,2228224 -g1,12244:29030814,49800853 -g1,12244:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,12244:36151628,51504789:16384,1179648,0 -) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 -) -] +[1,11769:3078558,4812305:0,0,0 +(1,11769:3078558,49800853:0,16384,2228224 +g1,11769:29030814,49800853 +g1,11769:36135244,49800853 +(1,11038:36135244,49800853:1720320,16384,2228224 +(1,11038:36135244,52029077:16384,1703936,0 +[1,11038:36135244,52029077:25952256,1703936,0 +(1,11038:36135244,51504789:25952256,1179648,0 +(1,11038:36135244,51504789:16384,1179648,0 +r1,11769:36151628,51504789:16384,1179648,0 ) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,12244:37855564,49800853:1179648,16384,0 -) -) -k1,12244:3078556,49800853:-34777008 +k1,11038:62087500,51504789:25935872 +g1,11038:62087500,51504789 ) ] -g1,12244:6630773,4812305 -k1,12244:19540057,4812305:11713907 -g1,12244:21162728,4812305 -g1,12244:21985204,4812305 -g1,12244:24539797,4812305 -g1,12244:25949476,4812305 -g1,12244:28728857,4812305 -g1,12244:29852144,4812305 ) +g1,11038:36675916,49800853 +(1,11038:36675916,49800853:1179648,16384,0 +r1,11769:37855564,49800853:1179648,16384,0 ) -] -[1,12244:6630773,45706769:25952256,40108032,0 -(1,12244:6630773,45706769:25952256,40108032,0 -(1,12244:6630773,45706769:0,0,0 -g1,12244:6630773,45706769 ) -[1,12244:6630773,45706769:25952256,40108032,0 -v1,12175:6630773,6254097:0,393216,0 -(1,12185:6630773,9748290:25952256,3887409,0 -g1,12185:6630773,9748290 -g1,12185:6303093,9748290 -r1,12244:6401397,9748290:98304,3887409,0 -g1,12185:6600626,9748290 -g1,12185:6797234,9748290 -[1,12185:6797234,9748290:25785795,3887409,0 -(1,12176:6797234,6686635:25785795,825754,196608 -(1,12175:6797234,6686635:0,825754,196608 -r1,12244:8834093,6686635:2036859,1022362,196608 -k1,12175:6797234,6686635:-2036859 +k1,11769:3078556,49800853:-34777008 ) -(1,12175:6797234,6686635:2036859,825754,196608 -) -k1,12175:9047898,6686635:213805 -k1,12175:10365827,6686635:327680 -k1,12175:13051649,6686635:213804 -k1,12175:14284539,6686635:213805 -k1,12175:19324415,6686635:213805 -k1,12175:20205375,6686635:213804 -(1,12175:20205375,6686635:0,452978,115847 -r1,12244:23025624,6686635:2820249,568825,115847 -k1,12175:20205375,6686635:-2820249 -) -(1,12175:20205375,6686635:2820249,452978,115847 -k1,12175:20205375,6686635:3277 -h1,12175:23022347,6686635:0,411205,112570 -) -k1,12175:23239429,6686635:213805 -k1,12175:24644678,6686635:213804 -k1,12175:27168627,6686635:213805 -k1,12175:28679390,6686635:213805 -k1,12175:29912279,6686635:213804 -k1,12175:31622271,6686635:213805 -k1,12176:32583029,6686635:0 -) -(1,12176:6797234,7528123:25785795,505283,126483 -g1,12175:8117129,7528123 -g1,12175:8847855,7528123 -g1,12175:12352065,7528123 -g1,12175:13202722,7528123 -g1,12175:14686457,7528123 -g1,12175:15501724,7528123 -g1,12175:16720038,7528123 -g1,12175:19580684,7528123 -g1,12175:23716661,7528123 -k1,12176:32583029,7528123:6837373 -g1,12176:32583029,7528123 -) -v1,12178:6797234,8718589:0,393216,0 -(1,12182:6797234,9027394:25785795,702021,196608 -g1,12182:6797234,9027394 -g1,12182:6797234,9027394 -g1,12182:6600626,9027394 -(1,12182:6600626,9027394:0,702021,196608 -r1,12244:32779637,9027394:26179011,898629,196608 -k1,12182:6600625,9027394:-26179012 -) -(1,12182:6600626,9027394:26179011,702021,196608 -[1,12182:6797234,9027394:25785795,505413,0 -(1,12180:6797234,8926207:25785795,404226,101187 -(1,12179:6797234,8926207:0,0,0 -g1,12179:6797234,8926207 -g1,12179:6797234,8926207 -g1,12179:6469554,8926207 -(1,12179:6469554,8926207:0,0,0 -) -g1,12179:6797234,8926207 -) -k1,12180:6797234,8926207:0 -g1,12180:11223274,8926207 -g1,12180:11855566,8926207 -g1,12180:15649315,8926207 -g1,12180:17230044,8926207 -g1,12180:17862336,8926207 -g1,12180:19126920,8926207 -h1,12180:19443066,8926207:0,0,0 -k1,12180:32583029,8926207:13139963 -g1,12180:32583029,8926207 -) -] -) -g1,12182:32583029,9027394 -g1,12182:6797234,9027394 -g1,12182:6797234,9027394 -g1,12182:32583029,9027394 -g1,12182:32583029,9027394 -) -h1,12182:6797234,9224002:0,0,0 -] -g1,12185:32583029,9748290 -) -h1,12185:6630773,9748290:0,0,0 -(1,12188:6630773,13048501:25952256,32768,229376 -(1,12188:6630773,13048501:0,32768,229376 -(1,12188:6630773,13048501:5505024,32768,229376 -r1,12244:12135797,13048501:5505024,262144,229376 -) -k1,12188:6630773,13048501:-5505024 -) -(1,12188:6630773,13048501:25952256,32768,0 -r1,12244:32583029,13048501:25952256,32768,0 -) -) -(1,12188:6630773,14652829:25952256,606339,14155 -(1,12188:6630773,14652829:1974731,568590,14155 -g1,12188:6630773,14652829 -g1,12188:8605504,14652829 -) -k1,12188:32583030,14652829:19510592 -g1,12188:32583030,14652829 -) -(1,12191:6630773,15887533:25952256,505283,126483 -k1,12190:8249512,15887533:153354 -k1,12190:11871031,15887533:153354 -k1,12190:15449296,15887533:153354 -k1,12190:16794095,15887533:153354 -k1,12190:21852819,15887533:153354 -k1,12190:24091529,15887533:153354 -k1,12190:28114129,15887533:153354 -k1,12190:29458928,15887533:153354 -k1,12190:32583029,15887533:0 -) -(1,12191:6630773,16729021:25952256,513147,126483 -k1,12190:9661158,16729021:245760 -k1,12190:10854569,16729021:245760 -k1,12190:12119414,16729021:245760 -k1,12190:15744210,16729021:245760 -k1,12190:16649262,16729021:245760 -k1,12190:17914106,16729021:245759 -k1,12190:20386779,16729021:245760 -k1,12190:24113156,16729021:245760 -k1,12190:26994119,16729021:245760 -k1,12190:28836336,16729021:245760 -k1,12190:29741388,16729021:245760 -k1,12190:32583029,16729021:0 -) -(1,12191:6630773,17570509:25952256,513147,134348 -k1,12190:7840896,17570509:218563 -k1,12190:10843427,17570509:218562 -k1,12190:11678028,17570509:218563 -k1,12190:13330518,17570509:218562 -k1,12190:14137594,17570509:218563 -k1,12190:15552843,17570509:218562 -k1,12190:18533749,17570509:218563 -k1,12190:21536936,17570509:218562 -k1,12190:22747059,17570509:218563 -k1,12190:25554293,17570509:218562 -k1,12190:26534384,17570509:218563 -k1,12190:29180400,17570509:218562 -k1,12190:32583029,17570509:0 -) -(1,12191:6630773,18411997:25952256,513147,134348 -k1,12190:7506287,18411997:224086 -k1,12190:8086233,18411997:224086 -k1,12190:10183339,18411997:224087 -k1,12190:13276591,18411997:224086 -k1,12190:15275392,18411997:224086 -k1,12190:18510202,18411997:224086 -k1,12190:21188612,18411997:224087 -k1,12190:21944195,18411997:224086 -k1,12190:24022950,18411997:224086 -k1,12190:25056406,18411997:224086 -k1,12190:26299577,18411997:224086 -k1,12190:28445835,18411997:224087 -k1,12190:30680566,18411997:224086 -k1,12190:31563944,18411997:224086 -k1,12190:32583029,18411997:0 -) -(1,12191:6630773,19253485:25952256,513147,134348 -k1,12190:11130713,19253485:254518 -k1,12190:16290601,19253485:254518 -k1,12190:19329743,19253485:254517 -k1,12190:20575821,19253485:254518 -k1,12190:22685008,19253485:254518 -k1,12190:23748896,19253485:254518 -k1,12190:25022499,19253485:254518 -k1,12190:28006592,19253485:254518 -k1,12190:28943994,19253485:254517 -k1,12190:30650134,19253485:254518 -k1,12190:31563944,19253485:254518 -k1,12190:32583029,19253485:0 -) -(1,12191:6630773,20094973:25952256,513147,126483 -k1,12190:11047972,20094973:171777 -k1,12190:12411194,20094973:171777 -k1,12190:16808077,20094973:171777 -k1,12190:18192925,20094973:171777 -k1,12190:20912087,20094973:171778 -k1,12190:21845392,20094973:171777 -k1,12190:26088921,20094973:171777 -k1,12190:27654649,20094973:171777 -k1,12190:30398714,20094973:171777 -k1,12191:32583029,20094973:0 -k1,12191:32583029,20094973:0 -) -(1,12192:6630773,22186233:25952256,555811,12975 -(1,12192:6630773,22186233:2450326,525533,12975 -g1,12192:6630773,22186233 -g1,12192:9081099,22186233 -) -g1,12192:12750460,22186233 -$1,12192:12750460,22186233 -$1,12192:13239948,22186233 -k1,12192:32583028,22186233:19343080 -g1,12192:32583028,22186233 -) -(1,12197:6630773,23420937:25952256,513147,134348 -k1,12196:9666434,23420937:245793 -(1,12196:9666434,23420937:0,452978,115847 -r1,12244:11431547,23420937:1765113,568825,115847 -k1,12196:9666434,23420937:-1765113 -) -(1,12196:9666434,23420937:1765113,452978,115847 -k1,12196:9666434,23420937:3277 -h1,12196:11428270,23420937:0,411205,112570 -) -k1,12196:11677339,23420937:245792 -k1,12196:13027414,23420937:245793 -k1,12196:14020973,23420937:245793 -k1,12196:16134541,23420937:245792 -k1,12196:17774285,23420937:245793 -k1,12196:19192517,23420937:245793 -k1,12196:21746488,23420937:245793 -k1,12196:22651572,23420937:245792 -k1,12196:23916450,23420937:245793 -k1,12196:25815716,23420937:245793 -k1,12196:28074774,23420937:245792 -k1,12196:29006729,23420937:245793 -k1,12196:32583029,23420937:0 -) -(1,12197:6630773,24262425:25952256,513147,126483 -k1,12196:7474315,24262425:215707 -k1,12196:8709107,24262425:215707 -k1,12196:10291895,24262425:215707 -k1,12196:11166894,24262425:215707 -k1,12196:12401686,24262425:215707 -k1,12196:16085558,24262425:215707 -k1,12196:18808017,24262425:215707 -k1,12196:21651717,24262425:215706 -k1,12196:22735776,24262425:215707 -k1,12196:23766751,24262425:215707 -k1,12196:25048729,24262425:215707 -k1,12196:26794702,24262425:215707 -k1,12196:27661837,24262425:215707 -k1,12196:30307619,24262425:215707 -k1,12196:32583029,24262425:0 -) -(1,12197:6630773,25103913:25952256,513147,134348 -g1,12196:10232631,25103913 -g1,12196:11118022,25103913 -g1,12196:12520492,25103913 -g1,12196:15174044,25103913 -g1,12196:15904770,25103913 -g1,12196:17123084,25103913 -g1,12196:19587893,25103913 -g1,12196:21117503,25103913 -g1,12196:22270281,25103913 -g1,12196:23561995,25103913 -g1,12196:25150587,25103913 -g1,12196:26284359,25103913 -(1,12196:26284359,25103913:0,414482,115847 -r1,12244:27697760,25103913:1413401,530329,115847 -k1,12196:26284359,25103913:-1413401 -) -(1,12196:26284359,25103913:1413401,414482,115847 -k1,12196:26284359,25103913:3277 -h1,12196:27694483,25103913:0,411205,112570 -) -k1,12197:32583029,25103913:4711599 -g1,12197:32583029,25103913 -) -v1,12199:6630773,26262734:0,393216,0 -(1,12206:6630773,27218843:25952256,1349325,196608 -g1,12206:6630773,27218843 -g1,12206:6630773,27218843 -g1,12206:6434165,27218843 -(1,12206:6434165,27218843:0,1349325,196608 -r1,12244:32779637,27218843:26345472,1545933,196608 -k1,12206:6434165,27218843:-26345472 -) -(1,12206:6434165,27218843:26345472,1349325,196608 -[1,12206:6630773,27218843:25952256,1152717,0 -(1,12201:6630773,26476644:25952256,410518,101187 -(1,12200:6630773,26476644:0,0,0 -g1,12200:6630773,26476644 -g1,12200:6630773,26476644 -g1,12200:6303093,26476644 -(1,12200:6303093,26476644:0,0,0 -) -g1,12200:6630773,26476644 -) -k1,12201:6630773,26476644:0 -g1,12201:8527648,26476644 -g1,12201:9159940,26476644 -g1,12201:12953689,26476644 -g1,12201:13585981,26476644 -g1,12201:14218273,26476644 -h1,12201:17379730,26476644:0,0,0 -k1,12201:32583029,26476644:15203299 -g1,12201:32583029,26476644 -) -(1,12205:6630773,27142822:25952256,404226,76021 -(1,12203:6630773,27142822:0,0,0 -g1,12203:6630773,27142822 -g1,12203:6630773,27142822 -g1,12203:6303093,27142822 -(1,12203:6303093,27142822:0,0,0 -) -g1,12203:6630773,27142822 -) -g1,12205:7579210,27142822 -g1,12205:8843793,27142822 -h1,12205:11689104,27142822:0,0,0 -k1,12205:32583028,27142822:20893924 -g1,12205:32583028,27142822 -) -] -) -g1,12206:32583029,27218843 -g1,12206:6630773,27218843 -g1,12206:6630773,27218843 -g1,12206:32583029,27218843 -g1,12206:32583029,27218843 -) -h1,12206:6630773,27415451:0,0,0 -(1,12210:6630773,28749583:25952256,513147,134348 -h1,12209:6630773,28749583:983040,0,0 -k1,12209:8382026,28749583:298320 -k1,12209:9211843,28749583:298320 -k1,12209:10795979,28749583:298320 -k1,12209:13724258,28749583:298319 -k1,12209:14674006,28749583:298320 -k1,12209:16409531,28749583:298320 -k1,12209:17063711,28749583:298320 -k1,12209:18751394,28749583:298320 -k1,12209:20926010,28749583:298320 -k1,12209:22114309,28749583:298320 -k1,12209:22768489,28749583:298320 -k1,12209:25361223,28749583:298319 -k1,12209:26345705,28749583:298320 -k1,12209:27663110,28749583:298320 -k1,12209:29337031,28749583:298320 -k1,12209:32583029,28749583:0 -) -(1,12210:6630773,29591071:25952256,513147,126483 -k1,12209:8610414,29591071:196406 -k1,12209:9825905,29591071:196406 -k1,12209:11411675,29591071:196407 -k1,12209:13484377,29591071:196406 -k1,12209:14570762,29591071:196406 -k1,12209:17061583,29591071:196406 -k1,12209:19960039,29591071:196407 -k1,12209:21532046,29591071:196406 -k1,12209:22900891,29591071:196406 -k1,12209:25984158,29591071:196406 -k1,12209:27199650,29591071:196407 -k1,12209:30174783,29591071:196406 -k1,12209:32051532,29591071:196406 -k1,12209:32583029,29591071:0 -) -(1,12210:6630773,30432559:25952256,513147,134348 -g1,12209:10134983,30432559 -g1,12209:10985640,30432559 -g1,12209:12469375,30432559 -g1,12209:13327896,30432559 -g1,12209:15954579,30432559 -g1,12209:17172893,30432559 -g1,12209:18544561,30432559 -g1,12209:21456981,30432559 -g1,12209:25415355,30432559 -g1,12209:26300746,30432559 -k1,12210:32583029,30432559:3800435 -g1,12210:32583029,30432559 -) -v1,12212:6630773,31591380:0,393216,0 -(1,12221:6630773,33806968:25952256,2608804,196608 -g1,12221:6630773,33806968 -g1,12221:6630773,33806968 -g1,12221:6434165,33806968 -(1,12221:6434165,33806968:0,2608804,196608 -r1,12244:32779637,33806968:26345472,2805412,196608 -k1,12221:6434165,33806968:-26345472 -) -(1,12221:6434165,33806968:26345472,2608804,196608 -[1,12221:6630773,33806968:25952256,2412196,0 -(1,12214:6630773,31798998:25952256,404226,76021 -(1,12213:6630773,31798998:0,0,0 -g1,12213:6630773,31798998 -g1,12213:6630773,31798998 -g1,12213:6303093,31798998 -(1,12213:6303093,31798998:0,0,0 -) -g1,12213:6630773,31798998 -) -k1,12214:6630773,31798998:0 -h1,12214:9476084,31798998:0,0,0 -k1,12214:32583028,31798998:23106944 -g1,12214:32583028,31798998 -) -(1,12220:6630773,32465176:25952256,404226,101187 -(1,12216:6630773,32465176:0,0,0 -g1,12216:6630773,32465176 -g1,12216:6630773,32465176 -g1,12216:6303093,32465176 -(1,12216:6303093,32465176:0,0,0 -) -g1,12216:6630773,32465176 -) -g1,12220:7579210,32465176 -g1,12220:7895356,32465176 -g1,12220:8211502,32465176 -g1,12220:8527648,32465176 -g1,12220:8843794,32465176 -g1,12220:9159940,32465176 -g1,12220:9476086,32465176 -g1,12220:9792232,32465176 -g1,12220:10108378,32465176 -g1,12220:10424524,32465176 -g1,12220:10740670,32465176 -g1,12220:12637544,32465176 -g1,12220:12953690,32465176 -g1,12220:13269836,32465176 -g1,12220:13585982,32465176 -g1,12220:13902128,32465176 -g1,12220:14218274,32465176 -h1,12220:15482857,32465176:0,0,0 -k1,12220:32583029,32465176:17100172 -g1,12220:32583029,32465176 -) -(1,12220:6630773,33131354:25952256,404226,101187 -h1,12220:6630773,33131354:0,0,0 -g1,12220:7579210,33131354 -g1,12220:9476084,33131354 -g1,12220:12637541,33131354 -h1,12220:15482852,33131354:0,0,0 -k1,12220:32583028,33131354:17100176 -g1,12220:32583028,33131354 -) -(1,12220:6630773,33797532:25952256,404226,9436 -h1,12220:6630773,33797532:0,0,0 -g1,12220:7579210,33797532 -g1,12220:9159939,33797532 -g1,12220:9476085,33797532 -g1,12220:12637542,33797532 -h1,12220:15482853,33797532:0,0,0 -k1,12220:32583029,33797532:17100176 -g1,12220:32583029,33797532 -) -] -) -g1,12221:32583029,33806968 -g1,12221:6630773,33806968 -g1,12221:6630773,33806968 -g1,12221:32583029,33806968 -g1,12221:32583029,33806968 -) -h1,12221:6630773,34003576:0,0,0 -(1,12225:6630773,35337707:25952256,513147,102891 -h1,12224:6630773,35337707:983040,0,0 -k1,12224:9650618,35337707:253570 -k1,12224:10923272,35337707:253569 -k1,12224:12566205,35337707:253570 -k1,12224:14696071,35337707:253570 -k1,12224:15632525,35337707:253569 -k1,12224:17973417,35337707:253570 -k1,12224:20929036,35337707:253570 -k1,12224:22832802,35337707:253569 -k1,12224:24528819,35337707:253570 -k1,12224:25954828,35337707:253570 -k1,12224:28828526,35337707:253569 -k1,12224:31563944,35337707:253570 -k1,12224:32583029,35337707:0 -) -(1,12225:6630773,36179195:25952256,513147,126483 -k1,12224:9605393,36179195:195893 -k1,12224:11481629,36179195:195893 -k1,12224:12209019,36179195:195893 -k1,12224:12760772,36179195:195893 -k1,12224:15043987,36179195:195893 -k1,12224:15899171,36179195:195892 -k1,12224:19141177,36179195:195893 -k1,12224:19996362,36179195:195893 -k1,12224:22858260,36179195:195893 -k1,12224:26865072,36179195:195893 -k1,12224:29696168,36179195:195893 -k1,12224:32583029,36179195:0 -) -(1,12225:6630773,37020683:25952256,513147,134348 -k1,12224:7842332,37020683:258010 -k1,12224:9498226,37020683:258011 -k1,12224:10848721,37020683:258010 -(1,12224:10848721,37020683:0,452978,115847 -r1,12244:13317258,37020683:2468537,568825,115847 -k1,12224:10848721,37020683:-2468537 -) -(1,12224:10848721,37020683:2468537,452978,115847 -k1,12224:10848721,37020683:3277 -h1,12224:13313981,37020683:0,411205,112570 -) -k1,12224:13575268,37020683:258010 -k1,12224:16923302,37020683:258011 -k1,12224:19036636,37020683:258010 -k1,12224:19946074,37020683:258010 -k1,12224:22133465,37020683:258011 -k1,12224:22747335,37020683:258010 -k1,12224:24394053,37020683:258010 -k1,12224:26629941,37020683:258011 -k1,12224:27547243,37020683:258010 -k1,12224:32583029,37020683:0 -) -(1,12225:6630773,37862171:25952256,513147,115847 -k1,12224:8794653,37862171:153235 -k1,12224:10948703,37862171:153236 -k1,12224:12669559,37862171:153235 -k1,12224:13841879,37862171:153235 -k1,12224:16351134,37862171:153236 -k1,12224:20285796,37862171:153235 -k1,12224:21630476,37862171:153235 -(1,12224:21630476,37862171:0,452978,115847 -r1,12244:24450725,37862171:2820249,568825,115847 -k1,12224:21630476,37862171:-2820249 -) -(1,12224:21630476,37862171:2820249,452978,115847 -k1,12224:21630476,37862171:3277 -h1,12224:24447448,37862171:0,411205,112570 -) -k1,12224:24603960,37862171:153235 -k1,12224:25408624,37862171:153236 -k1,12224:27954578,37862171:153235 -k1,12224:28565910,37862171:153235 -k1,12224:29986612,37862171:153236 -k1,12224:30495707,37862171:153235 -k1,12224:32583029,37862171:0 -) -(1,12225:6630773,38703659:25952256,513147,134348 -g1,12224:8223953,38703659 -g1,12224:10077966,38703659 -g1,12224:12990386,38703659 -g1,12224:14421692,38703659 -g1,12224:16119074,38703659 -h1,12224:16915992,38703659:0,0,0 -g1,12224:17115221,38703659 -g1,12224:18262101,38703659 -g1,12224:20578798,38703659 -g1,12224:22600583,38703659 -g1,12224:23214655,38703659 -k1,12225:32583029,38703659:6254103 -g1,12225:32583029,38703659 -) -v1,12227:6630773,39862480:0,393216,0 -(1,12239:6630773,44076602:25952256,4607338,196608 -g1,12239:6630773,44076602 -g1,12239:6630773,44076602 -g1,12239:6434165,44076602 -(1,12239:6434165,44076602:0,4607338,196608 -r1,12244:32779637,44076602:26345472,4803946,196608 -k1,12239:6434165,44076602:-26345472 -) -(1,12239:6434165,44076602:26345472,4607338,196608 -[1,12239:6630773,44076602:25952256,4410730,0 -(1,12229:6630773,40070098:25952256,404226,101187 -(1,12228:6630773,40070098:0,0,0 -g1,12228:6630773,40070098 -g1,12228:6630773,40070098 -g1,12228:6303093,40070098 -(1,12228:6303093,40070098:0,0,0 -) -g1,12228:6630773,40070098 -) -g1,12229:8843793,40070098 -g1,12229:9792231,40070098 -g1,12229:15482854,40070098 -g1,12229:17063583,40070098 -g1,12229:17695875,40070098 -k1,12229:17695875,40070098:0 -h1,12229:18328167,40070098:0,0,0 -k1,12229:32583029,40070098:14254862 -g1,12229:32583029,40070098 -) -(1,12230:6630773,40736276:25952256,404226,82312 -h1,12230:6630773,40736276:0,0,0 -g1,12230:6946919,40736276 -g1,12230:7263065,40736276 -g1,12230:7579211,40736276 -g1,12230:7895357,40736276 -g1,12230:8211503,40736276 -g1,12230:8527649,40736276 -g1,12230:8843795,40736276 -g1,12230:9159941,40736276 -g1,12230:9476087,40736276 -g1,12230:9792233,40736276 -g1,12230:10108379,40736276 -g1,12230:10424525,40736276 -g1,12230:10740671,40736276 -g1,12230:11056817,40736276 -g1,12230:11372963,40736276 -g1,12230:11689109,40736276 -g1,12230:12005255,40736276 -g1,12230:14850566,40736276 -g1,12230:15482858,40736276 -g1,12230:18644316,40736276 -g1,12230:19276608,40736276 -g1,12230:21173483,40736276 -g1,12230:22754212,40736276 -g1,12230:23386504,40736276 -g1,12230:25599525,40736276 -g1,12230:27180254,40736276 -h1,12230:29077128,40736276:0,0,0 -k1,12230:32583029,40736276:3505901 -g1,12230:32583029,40736276 -) -(1,12231:6630773,41402454:25952256,404226,101187 -h1,12231:6630773,41402454:0,0,0 -k1,12231:6630773,41402454:0 -h1,12231:10108375,41402454:0,0,0 -k1,12231:32583029,41402454:22474654 -g1,12231:32583029,41402454 -) -(1,12238:6630773,42068632:25952256,379060,7863 -(1,12233:6630773,42068632:0,0,0 -g1,12233:6630773,42068632 -g1,12233:6630773,42068632 -g1,12233:6303093,42068632 -(1,12233:6303093,42068632:0,0,0 -) -g1,12233:6630773,42068632 -) -g1,12238:7579210,42068632 -g1,12238:7895356,42068632 -g1,12238:8211502,42068632 -g1,12238:8527648,42068632 -g1,12238:8843794,42068632 -g1,12238:9159940,42068632 -g1,12238:9476086,42068632 -g1,12238:9792232,42068632 -g1,12238:10108378,42068632 -g1,12238:10424524,42068632 -g1,12238:10740670,42068632 -g1,12238:11056816,42068632 -g1,12238:11689108,42068632 -g1,12238:12005254,42068632 -g1,12238:12321400,42068632 -g1,12238:12637546,42068632 -g1,12238:12953692,42068632 -g1,12238:13269838,42068632 -g1,12238:13585984,42068632 -g1,12238:13902130,42068632 -g1,12238:14218276,42068632 -g1,12238:14850568,42068632 -g1,12238:15166714,42068632 -g1,12238:15482860,42068632 -g1,12238:15799006,42068632 -g1,12238:16115152,42068632 -g1,12238:16431298,42068632 -g1,12238:16747444,42068632 -g1,12238:17063590,42068632 -g1,12238:17379736,42068632 -g1,12238:17695882,42068632 -h1,12238:18012028,42068632:0,0,0 -k1,12238:32583029,42068632:14571001 -g1,12238:32583029,42068632 -) -(1,12238:6630773,42734810:25952256,388497,9436 -h1,12238:6630773,42734810:0,0,0 -g1,12238:7579210,42734810 -g1,12238:8211502,42734810 -g1,12238:11689105,42734810 -g1,12238:14850562,42734810 -h1,12238:18012019,42734810:0,0,0 -k1,12238:32583029,42734810:14571010 -g1,12238:32583029,42734810 -) -(1,12238:6630773,43400988:25952256,388497,9436 -h1,12238:6630773,43400988:0,0,0 -g1,12238:7579210,43400988 -g1,12238:8211502,43400988 -g1,12238:11689105,43400988 -g1,12238:14850562,43400988 -h1,12238:18012019,43400988:0,0,0 -k1,12238:32583029,43400988:14571010 -g1,12238:32583029,43400988 -) -(1,12238:6630773,44067166:25952256,388497,9436 -h1,12238:6630773,44067166:0,0,0 -g1,12238:7579210,44067166 -g1,12238:8211502,44067166 -g1,12238:11689105,44067166 -g1,12238:14850562,44067166 -h1,12238:18012019,44067166:0,0,0 -k1,12238:32583029,44067166:14571010 -g1,12238:32583029,44067166 -) -] -) -g1,12239:32583029,44076602 -g1,12239:6630773,44076602 -g1,12239:6630773,44076602 -g1,12239:32583029,44076602 -g1,12239:32583029,44076602 -) -h1,12239:6630773,44273210:0,0,0 -v1,12243:6630773,46099985:0,393216,0 -] -(1,12244:32583029,45706769:0,0,0 -g1,12244:32583029,45706769 -) -) -] -(1,12244:6630773,47279633:25952256,0,0 -h1,12244:6630773,47279633:25952256,0,0 -) -] -(1,12244:4262630,4025873:0,0,0 -[1,12244:-473656,4025873:0,0,0 -(1,12244:-473656,-710413:0,0,0 -(1,12244:-473656,-710413:0,0,0 -g1,12244:-473656,-710413 -) -g1,12244:-473656,-710413 -) -] -) -] -!23982 -}209 -Input:1803:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1804:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1805:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1806:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1807:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1808:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1809:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1810:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1811:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1812:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1813:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1814:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1815:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1816:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1817:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1818:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1819:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1820:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1821:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1798 -{210 -[1,12304:4262630,47279633:28320399,43253760,0 -(1,12304:4262630,4025873:0,0,0 -[1,12304:-473656,4025873:0,0,0 -(1,12304:-473656,-710413:0,0,0 -(1,12304:-473656,-644877:0,0,0 -k1,12304:-473656,-644877:-65536 +] +g1,11769:6630773,4812305 +g1,11769:6630773,4812305 +g1,11769:8613892,4812305 +g1,11769:9429159,4812305 +g1,11769:11686874,4812305 +k1,11769:31387652,4812305:19700778 +) +) +] +[1,11769:6630773,45706769:25952256,40108032,0 +(1,11769:6630773,45706769:25952256,40108032,0 +(1,11769:6630773,45706769:0,0,0 +g1,11769:6630773,45706769 +) +[1,11769:6630773,45706769:25952256,40108032,0 +v1,11732:6630773,6254097:0,393216,0 +(1,11732:6630773,29961523:25952256,24100642,0 +g1,11732:6630773,29961523 +g1,11732:6237557,29961523 +r1,11769:6368629,29961523:131072,24100642,0 +g1,11732:6567858,29961523 +g1,11732:6764466,29961523 +[1,11732:6764466,29961523:25818563,24100642,0 +v1,11655:6764466,6254097:0,393216,0 +(1,11662:6764466,8622921:25818563,2762040,196608 +g1,11662:6764466,8622921 +g1,11662:6764466,8622921 +g1,11662:6567858,8622921 +(1,11662:6567858,8622921:0,2762040,196608 +r1,11769:32779637,8622921:26211779,2958648,196608 +k1,11662:6567857,8622921:-26211780 +) +(1,11662:6567858,8622921:26211779,2762040,196608 +[1,11662:6764466,8622921:25818563,2565432,0 +(1,11657:6764466,6488534:25818563,431045,106246 +(1,11656:6764466,6488534:0,0,0 +g1,11656:6764466,6488534 +g1,11656:6764466,6488534 +g1,11656:6436786,6488534 +(1,11656:6436786,6488534:0,0,0 +) +g1,11656:6764466,6488534 +) +g1,11657:13403544,6488534 +g1,11657:14399406,6488534 +g1,11657:18382853,6488534 +g1,11657:20042623,6488534 +g1,11657:20706531,6488534 +g1,11657:22366301,6488534 +g1,11657:24026071,6488534 +h1,11657:24358025,6488534:0,0,0 +k1,11657:32583029,6488534:8225004 +g1,11657:32583029,6488534 +) +(1,11658:6764466,7173389:25818563,424439,106246 +h1,11658:6764466,7173389:0,0,0 +g1,11658:7096420,7173389 +g1,11658:7428374,7173389 +g1,11658:7760328,7173389 +g1,11658:12407684,7173389 +g1,11658:13403546,7173389 +h1,11658:14731362,7173389:0,0,0 +k1,11658:32583030,7173389:17851668 +g1,11658:32583030,7173389 +) +(1,11659:6764466,7858244:25818563,424439,79822 +h1,11659:6764466,7858244:0,0,0 +g1,11659:7096420,7858244 +g1,11659:7428374,7858244 +g1,11659:7760328,7858244 +k1,11659:7760328,7858244:0 +h1,11659:11743775,7858244:0,0,0 +k1,11659:32583029,7858244:20839254 +g1,11659:32583029,7858244 +) +(1,11660:6764466,8543099:25818563,424439,79822 +h1,11660:6764466,8543099:0,0,0 +h1,11660:7096420,8543099:0,0,0 +k1,11660:32583028,8543099:25486608 +g1,11660:32583028,8543099 +) +] +) +g1,11662:32583029,8622921 +g1,11662:6764466,8622921 +g1,11662:6764466,8622921 +g1,11662:32583029,8622921 +g1,11662:32583029,8622921 +) +h1,11662:6764466,8819529:0,0,0 +(1,11666:6764466,9684609:25818563,513147,126483 +h1,11665:6764466,9684609:983040,0,0 +k1,11665:8917597,9684609:216542 +k1,11665:10331482,9684609:216542 +k1,11665:11567109,9684609:216542 +k1,11665:14024981,9684609:216541 +k1,11665:17427883,9684609:216542 +k1,11665:18369253,9684609:216542 +k1,11665:19870301,9684609:216542 +k1,11665:21105928,9684609:216542 +k1,11665:24017966,9684609:216542 +k1,11665:26907065,9684609:216541 +k1,11665:29464553,9684609:216542 +k1,11665:30700180,9684609:216542 +k1,11665:32583029,9684609:0 +) +(1,11666:6764466,10549689:25818563,513147,126483 +g1,11665:8353058,10549689 +g1,11665:10602253,10549689 +g1,11665:12753144,10549689 +g1,11665:14394820,10549689 +g1,11665:15613134,10549689 +g1,11665:17311171,10549689 +g1,11665:20034191,10549689 +g1,11665:21186969,10549689 +g1,11665:22716579,10549689 +g1,11665:23731076,10549689 +g1,11665:24286165,10549689 +g1,11665:26231928,10549689 +g1,11665:27622602,10549689 +g1,11665:28481123,10549689 +g1,11665:29699437,10549689 +k1,11666:32583029,10549689:14426 +g1,11666:32583029,10549689 +) +v1,11668:6764466,11234544:0,393216,0 +(1,11680:6764466,15712485:25818563,4871157,196608 +g1,11680:6764466,15712485 +g1,11680:6764466,15712485 +g1,11680:6567858,15712485 +(1,11680:6567858,15712485:0,4871157,196608 +r1,11769:32779637,15712485:26211779,5067765,196608 +k1,11680:6567857,15712485:-26211780 +) +(1,11680:6567858,15712485:26211779,4871157,196608 +[1,11680:6764466,15712485:25818563,4674549,0 +(1,11670:6764466,11462375:25818563,424439,106246 +(1,11669:6764466,11462375:0,0,0 +g1,11669:6764466,11462375 +g1,11669:6764466,11462375 +g1,11669:6436786,11462375 +(1,11669:6436786,11462375:0,0,0 +) +g1,11669:6764466,11462375 +) +k1,11670:6764466,11462375:0 +h1,11670:11411821,11462375:0,0,0 +k1,11670:32583029,11462375:21171208 +g1,11670:32583029,11462375 +) +(1,11679:6764466,12278302:25818563,424439,106246 +(1,11672:6764466,12278302:0,0,0 +g1,11672:6764466,12278302 +g1,11672:6764466,12278302 +g1,11672:6436786,12278302 +(1,11672:6436786,12278302:0,0,0 +) +g1,11672:6764466,12278302 +) +g1,11679:7760328,12278302 +g1,11679:8092282,12278302 +g1,11679:8424236,12278302 +g1,11679:10415960,12278302 +h1,11679:11743776,12278302:0,0,0 +k1,11679:32583028,12278302:20839252 +g1,11679:32583028,12278302 +) +(1,11679:6764466,12963157:25818563,407923,0 +h1,11679:6764466,12963157:0,0,0 +g1,11679:7760328,12963157 +g1,11679:8424236,12963157 +g1,11679:8756190,12963157 +g1,11679:9088144,12963157 +g1,11679:9420098,12963157 +g1,11679:9752052,12963157 +g1,11679:10415960,12963157 +g1,11679:10747914,12963157 +g1,11679:11079868,12963157 +g1,11679:11411822,12963157 +h1,11679:11743776,12963157:0,0,0 +k1,11679:32583028,12963157:20839252 +g1,11679:32583028,12963157 +) +(1,11679:6764466,13648012:25818563,407923,9908 +h1,11679:6764466,13648012:0,0,0 +g1,11679:7760328,13648012 +g1,11679:8424236,13648012 +g1,11679:8756190,13648012 +g1,11679:9088144,13648012 +g1,11679:9420098,13648012 +g1,11679:9752052,13648012 +g1,11679:10415960,13648012 +g1,11679:10747914,13648012 +g1,11679:11079868,13648012 +h1,11679:11743776,13648012:0,0,0 +k1,11679:32583028,13648012:20839252 +g1,11679:32583028,13648012 +) +(1,11679:6764466,14332867:25818563,407923,9908 +h1,11679:6764466,14332867:0,0,0 +g1,11679:7760328,14332867 +g1,11679:8424236,14332867 +g1,11679:8756190,14332867 +g1,11679:9088144,14332867 +g1,11679:9420098,14332867 +g1,11679:9752052,14332867 +g1,11679:10415960,14332867 +g1,11679:10747914,14332867 +g1,11679:11079868,14332867 +g1,11679:11411822,14332867 +h1,11679:11743776,14332867:0,0,0 +k1,11679:32583028,14332867:20839252 +g1,11679:32583028,14332867 +) +(1,11679:6764466,15017722:25818563,407923,0 +h1,11679:6764466,15017722:0,0,0 +g1,11679:7760328,15017722 +g1,11679:8424236,15017722 +g1,11679:8756190,15017722 +g1,11679:9088144,15017722 +g1,11679:9420098,15017722 +g1,11679:9752052,15017722 +g1,11679:10415960,15017722 +g1,11679:10747914,15017722 +g1,11679:11079868,15017722 +h1,11679:11743776,15017722:0,0,0 +k1,11679:32583028,15017722:20839252 +g1,11679:32583028,15017722 +) +(1,11679:6764466,15702577:25818563,407923,9908 +h1,11679:6764466,15702577:0,0,0 +g1,11679:7760328,15702577 +g1,11679:8424236,15702577 +g1,11679:8756190,15702577 +g1,11679:9088144,15702577 +g1,11679:9420098,15702577 +g1,11679:9752052,15702577 +g1,11679:10415960,15702577 +g1,11679:10747914,15702577 +g1,11679:11079868,15702577 +h1,11679:11743776,15702577:0,0,0 +k1,11679:32583028,15702577:20839252 +g1,11679:32583028,15702577 +) +] +) +g1,11680:32583029,15712485 +g1,11680:6764466,15712485 +g1,11680:6764466,15712485 +g1,11680:32583029,15712485 +g1,11680:32583029,15712485 +) +h1,11680:6764466,15909093:0,0,0 +v1,11684:6764466,16593948:0,393216,0 +(1,11694:6764466,19702179:25818563,3501447,196608 +g1,11694:6764466,19702179 +g1,11694:6764466,19702179 +g1,11694:6567858,19702179 +(1,11694:6567858,19702179:0,3501447,196608 +r1,11769:32779637,19702179:26211779,3698055,196608 +k1,11694:6567857,19702179:-26211780 +) +(1,11694:6567858,19702179:26211779,3501447,196608 +[1,11694:6764466,19702179:25818563,3304839,0 +(1,11686:6764466,16821779:25818563,424439,106246 +(1,11685:6764466,16821779:0,0,0 +g1,11685:6764466,16821779 +g1,11685:6764466,16821779 +g1,11685:6436786,16821779 +(1,11685:6436786,16821779:0,0,0 +) +g1,11685:6764466,16821779 +) +k1,11686:6764466,16821779:0 +g1,11686:11743775,16821779 +h1,11686:13403545,16821779:0,0,0 +k1,11686:32583029,16821779:19179484 +g1,11686:32583029,16821779 +) +(1,11693:6764466,17637706:25818563,424439,106246 +(1,11688:6764466,17637706:0,0,0 +g1,11688:6764466,17637706 +g1,11688:6764466,17637706 +g1,11688:6436786,17637706 +(1,11688:6436786,17637706:0,0,0 +) +g1,11688:6764466,17637706 +) +g1,11693:7760328,17637706 +g1,11693:8092282,17637706 +g1,11693:8424236,17637706 +g1,11693:8756190,17637706 +g1,11693:10747914,17637706 +h1,11693:12075730,17637706:0,0,0 +k1,11693:32583030,17637706:20507300 +g1,11693:32583030,17637706 +) +(1,11693:6764466,18322561:25818563,407923,9908 +h1,11693:6764466,18322561:0,0,0 +g1,11693:7760328,18322561 +g1,11693:8424236,18322561 +g1,11693:8756190,18322561 +g1,11693:9088144,18322561 +g1,11693:9420098,18322561 +g1,11693:9752052,18322561 +g1,11693:10747914,18322561 +g1,11693:11079868,18322561 +g1,11693:11411822,18322561 +h1,11693:12075730,18322561:0,0,0 +k1,11693:32583030,18322561:20507300 +g1,11693:32583030,18322561 +) +(1,11693:6764466,19007416:25818563,407923,9908 +h1,11693:6764466,19007416:0,0,0 +g1,11693:7760328,19007416 +g1,11693:8424236,19007416 +g1,11693:8756190,19007416 +g1,11693:9088144,19007416 +g1,11693:9420098,19007416 +g1,11693:9752052,19007416 +g1,11693:10747914,19007416 +g1,11693:11079868,19007416 +g1,11693:11411822,19007416 +h1,11693:12075730,19007416:0,0,0 +k1,11693:32583030,19007416:20507300 +g1,11693:32583030,19007416 +) +(1,11693:6764466,19692271:25818563,407923,9908 +h1,11693:6764466,19692271:0,0,0 +g1,11693:7760328,19692271 +g1,11693:8756190,19692271 +g1,11693:9088144,19692271 +g1,11693:9420098,19692271 +g1,11693:9752052,19692271 +g1,11693:10747914,19692271 +g1,11693:11079868,19692271 +g1,11693:11411822,19692271 +h1,11693:12075730,19692271:0,0,0 +k1,11693:32583030,19692271:20507300 +g1,11693:32583030,19692271 +) +] +) +g1,11694:32583029,19702179 +g1,11694:6764466,19702179 +g1,11694:6764466,19702179 +g1,11694:32583029,19702179 +g1,11694:32583029,19702179 +) +h1,11694:6764466,19898787:0,0,0 +v1,11698:6764466,20583642:0,393216,0 +(1,11724:6764466,29764915:25818563,9574489,196608 +g1,11724:6764466,29764915 +g1,11724:6764466,29764915 +g1,11724:6567858,29764915 +(1,11724:6567858,29764915:0,9574489,196608 +r1,11769:32779637,29764915:26211779,9771097,196608 +k1,11724:6567857,29764915:-26211780 +) +(1,11724:6567858,29764915:26211779,9574489,196608 +[1,11724:6764466,29764915:25818563,9377881,0 +(1,11700:6764466,20811473:25818563,424439,106246 +(1,11699:6764466,20811473:0,0,0 +g1,11699:6764466,20811473 +g1,11699:6764466,20811473 +g1,11699:6436786,20811473 +(1,11699:6436786,20811473:0,0,0 +) +g1,11699:6764466,20811473 +) +g1,11700:7428374,20811473 +g1,11700:8424236,20811473 +k1,11700:8424236,20811473:0 +h1,11700:13071591,20811473:0,0,0 +k1,11700:32583029,20811473:19511438 +g1,11700:32583029,20811473 +) +(1,11709:6764466,21627400:25818563,424439,106246 +(1,11702:6764466,21627400:0,0,0 +g1,11702:6764466,21627400 +g1,11702:6764466,21627400 +g1,11702:6436786,21627400 +(1,11702:6436786,21627400:0,0,0 +) +g1,11702:6764466,21627400 +) +g1,11709:7760328,21627400 +g1,11709:8092282,21627400 +g1,11709:8424236,21627400 +g1,11709:10415960,21627400 +h1,11709:11743776,21627400:0,0,0 +k1,11709:32583028,21627400:20839252 +g1,11709:32583028,21627400 +) +(1,11709:6764466,22312255:25818563,407923,0 +h1,11709:6764466,22312255:0,0,0 +g1,11709:7760328,22312255 +g1,11709:8424236,22312255 +g1,11709:8756190,22312255 +g1,11709:9088144,22312255 +g1,11709:9420098,22312255 +g1,11709:9752052,22312255 +g1,11709:10415960,22312255 +g1,11709:10747914,22312255 +g1,11709:11079868,22312255 +g1,11709:11411822,22312255 +h1,11709:11743776,22312255:0,0,0 +k1,11709:32583028,22312255:20839252 +g1,11709:32583028,22312255 +) +(1,11709:6764466,22997110:25818563,407923,9908 +h1,11709:6764466,22997110:0,0,0 +g1,11709:7760328,22997110 +g1,11709:8424236,22997110 +g1,11709:8756190,22997110 +g1,11709:9088144,22997110 +g1,11709:9420098,22997110 +g1,11709:9752052,22997110 +g1,11709:10415960,22997110 +g1,11709:10747914,22997110 +g1,11709:11079868,22997110 +h1,11709:11743776,22997110:0,0,0 +k1,11709:32583028,22997110:20839252 +g1,11709:32583028,22997110 +) +(1,11709:6764466,23681965:25818563,407923,9908 +h1,11709:6764466,23681965:0,0,0 +g1,11709:7760328,23681965 +g1,11709:8424236,23681965 +g1,11709:8756190,23681965 +g1,11709:9088144,23681965 +g1,11709:9420098,23681965 +g1,11709:9752052,23681965 +g1,11709:10415960,23681965 +g1,11709:10747914,23681965 +g1,11709:11079868,23681965 +g1,11709:11411822,23681965 +h1,11709:11743776,23681965:0,0,0 +k1,11709:32583028,23681965:20839252 +g1,11709:32583028,23681965 +) +(1,11709:6764466,24366820:25818563,407923,0 +h1,11709:6764466,24366820:0,0,0 +g1,11709:7760328,24366820 +g1,11709:8424236,24366820 +g1,11709:8756190,24366820 +g1,11709:9088144,24366820 +g1,11709:9420098,24366820 +g1,11709:9752052,24366820 +g1,11709:10415960,24366820 +g1,11709:10747914,24366820 +g1,11709:11079868,24366820 +h1,11709:11743776,24366820:0,0,0 +k1,11709:32583028,24366820:20839252 +g1,11709:32583028,24366820 +) +(1,11709:6764466,25051675:25818563,407923,9908 +h1,11709:6764466,25051675:0,0,0 +g1,11709:7760328,25051675 +g1,11709:8424236,25051675 +g1,11709:8756190,25051675 +g1,11709:9088144,25051675 +g1,11709:9420098,25051675 +g1,11709:9752052,25051675 +g1,11709:10415960,25051675 +g1,11709:10747914,25051675 +g1,11709:11079868,25051675 +h1,11709:11743776,25051675:0,0,0 +k1,11709:32583028,25051675:20839252 +g1,11709:32583028,25051675 +) +(1,11711:6764466,25867602:25818563,424439,79822 +(1,11710:6764466,25867602:0,0,0 +g1,11710:6764466,25867602 +g1,11710:6764466,25867602 +g1,11710:6436786,25867602 +(1,11710:6436786,25867602:0,0,0 +) +g1,11710:6764466,25867602 +) +k1,11711:6764466,25867602:0 +h1,11711:8756190,25867602:0,0,0 +k1,11711:32583030,25867602:23826840 +g1,11711:32583030,25867602 +) +(1,11717:6764466,26683529:25818563,431045,9908 +(1,11713:6764466,26683529:0,0,0 +g1,11713:6764466,26683529 +g1,11713:6764466,26683529 +g1,11713:6436786,26683529 +(1,11713:6436786,26683529:0,0,0 +) +g1,11713:6764466,26683529 +) +g1,11717:7760328,26683529 +g1,11717:12407683,26683529 +g1,11717:13403545,26683529 +g1,11717:15063315,26683529 +g1,11717:16059177,26683529 +g1,11717:16391131,26683529 +g1,11717:17055039,26683529 +h1,11717:20374578,26683529:0,0,0 +k1,11717:32583029,26683529:12208451 +g1,11717:32583029,26683529 +) +(1,11717:6764466,27368384:25818563,431045,106246 +h1,11717:6764466,27368384:0,0,0 +g1,11717:7760328,27368384 +g1,11717:8092282,27368384 +g1,11717:8756190,27368384 +g1,11717:11079868,27368384 +g1,11717:12407684,27368384 +g1,11717:12739638,27368384 +g1,11717:13403546,27368384 +g1,11717:14067454,27368384 +g1,11717:14731362,27368384 +g1,11717:15395270,27368384 +g1,11717:16059178,27368384 +g1,11717:16723086,27368384 +g1,11717:17718948,27368384 +g1,11717:18714810,27368384 +g1,11717:19710672,27368384 +g1,11717:20706534,27368384 +h1,11717:21702396,27368384:0,0,0 +k1,11717:32583029,27368384:10880633 +g1,11717:32583029,27368384 +) +(1,11717:6764466,28053239:25818563,431045,33029 +h1,11717:6764466,28053239:0,0,0 +g1,11717:7760328,28053239 +g1,11717:8092282,28053239 +g1,11717:8756190,28053239 +g1,11717:10415960,28053239 +g1,11717:11079868,28053239 +g1,11717:12407684,28053239 +g1,11717:12739638,28053239 +g1,11717:13403546,28053239 +g1,11717:14399408,28053239 +g1,11717:15063316,28053239 +g1,11717:16059178,28053239 +g1,11717:17055040,28053239 +g1,11717:18050902,28053239 +g1,11717:19046764,28053239 +g1,11717:20042626,28053239 +g1,11717:21038488,28053239 +g1,11717:22034350,28053239 +h1,11717:23030212,28053239:0,0,0 +k1,11717:32583029,28053239:9552817 +g1,11717:32583029,28053239 +) +(1,11719:6764466,28869166:25818563,431045,106246 +(1,11718:6764466,28869166:0,0,0 +g1,11718:6764466,28869166 +g1,11718:6764466,28869166 +g1,11718:6436786,28869166 +(1,11718:6436786,28869166:0,0,0 +) +g1,11718:6764466,28869166 +) +k1,11719:6764466,28869166:0 +g1,11719:9420098,28869166 +g1,11719:10415960,28869166 +g1,11719:14067454,28869166 +g1,11719:14731362,28869166 +g1,11719:16059178,28869166 +g1,11719:17386994,28869166 +g1,11719:19378718,28869166 +g1,11719:21038488,28869166 +g1,11719:23030212,28869166 +k1,11719:23030212,28869166:25323 +h1,11719:26043120,28869166:0,0,0 +k1,11719:32583029,28869166:6539909 +g1,11719:32583029,28869166 +) +(1,11723:6764466,29685093:25818563,424439,79822 +(1,11721:6764466,29685093:0,0,0 +g1,11721:6764466,29685093 +g1,11721:6764466,29685093 +g1,11721:6436786,29685093 +(1,11721:6436786,29685093:0,0,0 +) +g1,11721:6764466,29685093 +) +g1,11723:7760328,29685093 +g1,11723:9088144,29685093 +h1,11723:10415960,29685093:0,0,0 +k1,11723:32583028,29685093:22167068 +g1,11723:32583028,29685093 +) +] +) +g1,11724:32583029,29764915 +g1,11724:6764466,29764915 +g1,11724:6764466,29764915 +g1,11724:32583029,29764915 +g1,11724:32583029,29764915 +) +h1,11724:6764466,29961523:0,0,0 +] +g1,11732:32583029,29961523 +) +h1,11732:6630773,29961523:0,0,0 +(1,11734:6630773,32792683:25952256,32768,229376 +(1,11734:6630773,32792683:0,32768,229376 +(1,11734:6630773,32792683:5505024,32768,229376 +r1,11769:12135797,32792683:5505024,262144,229376 +) +k1,11734:6630773,32792683:-5505024 +) +(1,11734:6630773,32792683:25952256,32768,0 +r1,11769:32583029,32792683:25952256,32768,0 +) +) +(1,11734:6630773,34424535:25952256,615776,151780 +(1,11734:6630773,34424535:1974731,582746,14155 +g1,11734:6630773,34424535 +g1,11734:8605504,34424535 +) +g1,11734:11153544,34424535 +g1,11734:12211295,34424535 +k1,11734:32583029,34424535:17805606 +g1,11734:32583029,34424535 +) +(1,11738:6630773,35682831:25952256,513147,134348 +k1,11737:8001224,35682831:173764 +k1,11737:10890800,35682831:173764 +k1,11737:11723856,35682831:173764 +k1,11737:13965936,35682831:173764 +k1,11737:14671197,35682831:173764 +k1,11737:18509734,35682831:173764 +k1,11737:19445026,35682831:173764 +k1,11737:20637876,35682831:173765 +k1,11737:23182077,35682831:173764 +k1,11737:24916909,35682831:173764 +k1,11737:25749965,35682831:173764 +k1,11737:26279589,35682831:173764 +k1,11737:29469320,35682831:173764 +k1,11737:30839771,35682831:173764 +k1,11738:32583029,35682831:0 +) +(1,11738:6630773,36547911:25952256,505283,134348 +k1,11737:7917526,36547911:178539 +k1,11737:9168233,36547911:178538 +k1,11737:10413043,36547911:178539 +k1,11737:11610666,36547911:178538 +k1,11737:13164806,36547911:178539 +k1,11737:16169912,36547911:178538 +k1,11737:18046489,36547911:178539 +k1,11737:20694425,36547911:178539 +k1,11737:22458934,36547911:178538 +k1,11737:24936476,36547911:178539 +k1,11737:25646511,36547911:178538 +k1,11737:27523088,36547911:178539 +k1,11737:29991454,36547911:178538 +k1,11737:31563944,36547911:178539 +k1,11737:32583029,36547911:0 +) +(1,11738:6630773,37412991:25952256,513147,126483 +k1,11737:8551381,37412991:267135 +k1,11737:10556531,37412991:267135 +k1,11737:13226215,37412991:267134 +k1,11737:14121185,37412991:267135 +k1,11737:15881886,37412991:267135 +k1,11737:16504881,37412991:267135 +k1,11737:19598583,37412991:267134 +k1,11737:21022428,37412991:267135 +k1,11737:22422025,37412991:267135 +k1,11737:23436926,37412991:267135 +k1,11737:26889111,37412991:267135 +k1,11737:27917773,37412991:267134 +k1,11737:28973306,37412991:267135 +k1,11737:32583029,37412991:0 +) +(1,11738:6630773,38278071:25952256,513147,134348 +k1,11737:8544374,38278071:175586 +k1,11737:9911405,38278071:175586 +k1,11737:11106076,38278071:175586 +k1,11737:12983632,38278071:175586 +k1,11737:15378922,38278071:175586 +k1,11737:16626677,38278071:175586 +k1,11737:19445984,38278071:175585 +k1,11737:22806620,38278071:175586 +k1,11737:23743734,38278071:175586 +k1,11737:27116822,38278071:175586 +k1,11737:28311493,38278071:175586 +k1,11737:30225094,38278071:175586 +k1,11737:31794631,38278071:175586 +k1,11737:32583029,38278071:0 +) +(1,11738:6630773,39143151:25952256,355205,126483 +g1,11737:8568017,39143151 +k1,11738:32583030,39143151:22053520 +g1,11738:32583030,39143151 +) +(1,11740:6630773,40008231:25952256,513147,134348 +h1,11739:6630773,40008231:983040,0,0 +k1,11739:8619690,40008231:187988 +k1,11739:9826763,40008231:187988 +k1,11739:10429584,40008231:187978 +k1,11739:13459868,40008231:187988 +k1,11739:14748861,40008231:187988 +k1,11739:16069967,40008231:187988 +k1,11739:18984909,40008231:187989 +k1,11739:21127836,40008231:187988 +k1,11739:22263475,40008231:187988 +k1,11739:24336934,40008231:187988 +k1,11739:25334293,40008231:187989 +k1,11739:29240138,40008231:187988 +k1,11739:29959623,40008231:187988 +k1,11739:32583029,40008231:0 +) +(1,11740:6630773,40873311:25952256,513147,134348 +k1,11739:7685200,40873311:186075 +k1,11739:10051659,40873311:186076 +k1,11739:11590397,40873311:186075 +k1,11739:13101610,40873311:186075 +k1,11739:14353957,40873311:186076 +k1,11739:15191460,40873311:186075 +k1,11739:19168793,40873311:186075 +k1,11739:21083053,40873311:186076 +k1,11739:23337444,40873311:186075 +k1,11739:24808026,40873311:186076 +k1,11739:25985661,40873311:186075 +k1,11739:27493597,40873311:186075 +k1,11739:28338965,40873311:186076 +k1,11739:31541007,40873311:186075 +k1,11739:32583029,40873311:0 +) +(1,11740:6630773,41738391:25952256,513147,126483 +k1,11739:9482931,41738391:190741 +(1,11739:9482931,41738391:0,452978,115847 +r1,11769:10192909,41738391:709978,568825,115847 +k1,11739:9482931,41738391:-709978 +) +(1,11739:9482931,41738391:709978,452978,115847 +k1,11739:9482931,41738391:3277 +h1,11739:10189632,41738391:0,411205,112570 +) +k1,11739:10383650,41738391:190741 +k1,11739:11105889,41738391:190742 +k1,11739:11652490,41738391:190741 +k1,11739:14600986,41738391:190741 +k1,11739:17173305,41738391:190741 +k1,11739:17980085,41738391:190742 +k1,11739:18585661,41738391:190733 +k1,11739:20170353,41738391:190741 +k1,11739:21380179,41738391:190741 +k1,11739:23251263,41738391:190741 +k1,11739:24101297,41738391:190742 +k1,11739:25311123,41738391:190741 +k1,11739:29825274,41738391:190741 +k1,11739:32583029,41738391:0 +) +(1,11740:6630773,42603471:25952256,513147,134348 +$1,11739:7210111,42603471 +k1,11739:7528004,42603471:144223 +k1,11739:8149984,42603471:144223 +k1,11739:9162559,42603471:144223 +k1,11739:10399267,42603471:144223 +k1,11739:11562575,42603471:144223 +k1,11739:13360271,42603471:144223 +k1,11739:15242509,42603471:144223 +k1,11739:16334382,42603471:144222 +k1,11739:17635315,42603471:144223 +k1,11739:18438830,42603471:144223 +k1,11739:19680781,42603471:144223 +k1,11739:22840315,42603471:144223 +k1,11739:24003623,42603471:144223 +k1,11739:26583164,42603471:144223 +k1,11739:29809545,42603471:144223 +k1,11739:32583029,42603471:0 +) +(1,11740:6630773,43468551:25952256,505283,7863 +k1,11740:32583028,43468551:23558880 +g1,11740:32583028,43468551 +) +v1,11742:6630773,44153406:0,393216,0 +(1,11769:6630773,45276986:25952256,1516796,196608 +g1,11769:6630773,45276986 +g1,11769:6630773,45276986 +g1,11769:6434165,45276986 +(1,11769:6434165,45276986:0,1516796,196608 +r1,11769:32779637,45276986:26345472,1713404,196608 +k1,11769:6434165,45276986:-26345472 +) +(1,11769:6434165,45276986:26345472,1516796,196608 +[1,11769:6630773,45276986:25952256,1320188,0 +(1,11744:6630773,44381237:25952256,424439,106246 +(1,11743:6630773,44381237:0,0,0 +g1,11743:6630773,44381237 +g1,11743:6630773,44381237 +g1,11743:6303093,44381237 +(1,11743:6303093,44381237:0,0,0 +) +g1,11743:6630773,44381237 +) +h1,11744:7294681,44381237:0,0,0 +k1,11744:32583029,44381237:25288348 +g1,11744:32583029,44381237 +) +(1,11748:6630773,45197164:25952256,424439,79822 +(1,11746:6630773,45197164:0,0,0 +g1,11746:6630773,45197164 +g1,11746:6630773,45197164 +g1,11746:6303093,45197164 +(1,11746:6303093,45197164:0,0,0 +) +g1,11746:6630773,45197164 +) +g1,11748:7626635,45197164 +g1,11748:8954451,45197164 +h1,11748:11610082,45197164:0,0,0 +k1,11748:32583030,45197164:20972948 +g1,11748:32583030,45197164 +) +] +) +g1,11769:32583029,45276986 +g1,11769:6630773,45276986 +g1,11769:6630773,45276986 +g1,11769:32583029,45276986 +g1,11769:32583029,45276986 +) +] +(1,11769:32583029,45706769:0,0,0 +g1,11769:32583029,45706769 +) +) +] +(1,11769:6630773,47279633:25952256,0,0 +h1,11769:6630773,47279633:25952256,0,0 +) +] +(1,11769:4262630,4025873:0,0,0 +[1,11769:-473656,4025873:0,0,0 +(1,11769:-473656,-710413:0,0,0 +(1,11769:-473656,-710413:0,0,0 +g1,11769:-473656,-710413 +) +g1,11769:-473656,-710413 +) +] +) +] +!26071 +}186 +!12 +{187 +[1,11809:4262630,47279633:28320399,43253760,0 +(1,11809:4262630,4025873:0,0,0 +[1,11809:-473656,4025873:0,0,0 +(1,11809:-473656,-710413:0,0,0 +(1,11809:-473656,-644877:0,0,0 +k1,11809:-473656,-644877:-65536 ) -(1,12304:-473656,4736287:0,0,0 -k1,12304:-473656,4736287:5209943 +(1,11809:-473656,4736287:0,0,0 +k1,11809:-473656,4736287:5209943 ) -g1,12304:-473656,-710413 +g1,11809:-473656,-710413 ) ] ) -[1,12304:6630773,47279633:25952256,43253760,0 -[1,12304:6630773,4812305:25952256,786432,0 -(1,12304:6630773,4812305:25952256,505283,11795 -(1,12304:6630773,4812305:25952256,505283,11795 -g1,12304:3078558,4812305 -[1,12304:3078558,4812305:0,0,0 -(1,12304:3078558,2439708:0,1703936,0 -k1,12304:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,12304:2537886,2439708:1179648,16384,0 +[1,11809:6630773,47279633:25952256,43253760,0 +[1,11809:6630773,4812305:25952256,786432,0 +(1,11809:6630773,4812305:25952256,505283,134348 +(1,11809:6630773,4812305:25952256,505283,134348 +g1,11809:3078558,4812305 +[1,11809:3078558,4812305:0,0,0 +(1,11809:3078558,2439708:0,1703936,0 +k1,11809:1358238,2439708:-1720320 +(1,11038:1358238,2439708:1720320,1703936,0 +(1,11038:1358238,2439708:1179648,16384,0 +r1,11809:2537886,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,12304:3078558,1915420:16384,1179648,0 +g1,11038:3062174,2439708 +(1,11038:3062174,2439708:16384,1703936,0 +[1,11038:3062174,2439708:25952256,1703936,0 +(1,11038:3062174,1915420:25952256,1179648,0 +(1,11038:3062174,1915420:16384,1179648,0 +r1,11809:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +k1,11038:29014430,1915420:25935872 +g1,11038:29014430,1915420 ) ] ) ) ) ] -[1,12304:3078558,4812305:0,0,0 -(1,12304:3078558,2439708:0,1703936,0 -g1,12304:29030814,2439708 -g1,12304:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,12304:36151628,1915420:16384,1179648,0 +[1,11809:3078558,4812305:0,0,0 +(1,11809:3078558,2439708:0,1703936,0 +g1,11809:29030814,2439708 +g1,11809:36135244,2439708 +(1,11038:36135244,2439708:1720320,1703936,0 +(1,11038:36135244,2439708:16384,1703936,0 +[1,11038:36135244,2439708:25952256,1703936,0 +(1,11038:36135244,1915420:25952256,1179648,0 +(1,11038:36135244,1915420:16384,1179648,0 +r1,11809:36151628,1915420:16384,1179648,0 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +k1,11038:62087500,1915420:25935872 +g1,11038:62087500,1915420 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,12304:37855564,2439708:1179648,16384,0 +g1,11038:36675916,2439708 +(1,11038:36675916,2439708:1179648,16384,0 +r1,11809:37855564,2439708:1179648,16384,0 ) ) -k1,12304:3078556,2439708:-34777008 +k1,11809:3078556,2439708:-34777008 ) ] -[1,12304:3078558,4812305:0,0,0 -(1,12304:3078558,49800853:0,16384,2228224 -k1,12304:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,12304:2537886,49800853:1179648,16384,0 +[1,11809:3078558,4812305:0,0,0 +(1,11809:3078558,49800853:0,16384,2228224 +k1,11809:1358238,49800853:-1720320 +(1,11038:1358238,49800853:1720320,16384,2228224 +(1,11038:1358238,49800853:1179648,16384,0 +r1,11809:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,12304:3078558,51504789:16384,1179648,0 +g1,11038:3062174,49800853 +(1,11038:3062174,52029077:16384,1703936,0 +[1,11038:3062174,52029077:25952256,1703936,0 +(1,11038:3062174,51504789:25952256,1179648,0 +(1,11038:3062174,51504789:16384,1179648,0 +r1,11809:3078558,51504789:16384,1179648,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 +k1,11038:29014430,51504789:25935872 +g1,11038:29014430,51504789 ) ] ) ) ) ] -[1,12304:3078558,4812305:0,0,0 -(1,12304:3078558,49800853:0,16384,2228224 -g1,12304:29030814,49800853 -g1,12304:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,12304:36151628,51504789:16384,1179648,0 +[1,11809:3078558,4812305:0,0,0 +(1,11809:3078558,49800853:0,16384,2228224 +g1,11809:29030814,49800853 +g1,11809:36135244,49800853 +(1,11038:36135244,49800853:1720320,16384,2228224 +(1,11038:36135244,52029077:16384,1703936,0 +[1,11038:36135244,52029077:25952256,1703936,0 +(1,11038:36135244,51504789:25952256,1179648,0 +(1,11038:36135244,51504789:16384,1179648,0 +r1,11809:36151628,51504789:16384,1179648,0 ) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 +k1,11038:62087500,51504789:25935872 +g1,11038:62087500,51504789 ) ] ) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,12304:37855564,49800853:1179648,16384,0 +g1,11038:36675916,49800853 +(1,11038:36675916,49800853:1179648,16384,0 +r1,11809:37855564,49800853:1179648,16384,0 ) ) -k1,12304:3078556,49800853:-34777008 +k1,11809:3078556,49800853:-34777008 ) ] -g1,12304:6630773,4812305 -g1,12304:6630773,4812305 -g1,12304:10410889,4812305 -k1,12304:31387653,4812305:20976764 -) -) -] -[1,12304:6630773,45706769:25952256,40108032,0 -(1,12304:6630773,45706769:25952256,40108032,0 -(1,12304:6630773,45706769:0,0,0 -g1,12304:6630773,45706769 -) -[1,12304:6630773,45706769:25952256,40108032,0 -v1,12244:6630773,6254097:0,393216,0 -(1,12244:6630773,7662471:25952256,1801590,0 -g1,12244:6630773,7662471 -g1,12244:6303093,7662471 -r1,12304:6401397,7662471:98304,1801590,0 -g1,12244:6600626,7662471 -g1,12244:6797234,7662471 -[1,12244:6797234,7662471:25785795,1801590,0 -(1,12244:6797234,6686635:25785795,825754,196608 -(1,12243:6797234,6686635:0,825754,196608 -r1,12304:7890375,6686635:1093141,1022362,196608 -k1,12243:6797234,6686635:-1093141 -) -(1,12243:6797234,6686635:1093141,825754,196608 -) -k1,12243:8144774,6686635:254399 -k1,12243:9462703,6686635:327680 -k1,12243:11923043,6686635:254398 -k1,12243:13196527,6686635:254399 -k1,12243:14947113,6686635:254399 -k1,12243:15817550,6686635:254399 -k1,12243:17091033,6686635:254398 -k1,12243:19316100,6686635:254399 -k1,12243:23507247,6686635:254399 -k1,12243:25616970,6686635:254399 -k1,12243:29885448,6686635:254398 -k1,12243:30495707,6686635:254399 -k1,12243:32583029,6686635:0 -) -(1,12244:6797234,7528123:25785795,505283,134348 -g1,12243:8390414,7528123 -g1,12243:9486176,7528123 -g1,12243:12398596,7528123 -g1,12243:13789270,7528123 -g1,12243:15422427,7528123 -g1,12243:19052466,7528123 -g1,12243:20270780,7528123 -k1,12244:32583029,7528123:8327660 -g1,12244:32583029,7528123 -) -] -g1,12244:32583029,7662471 -) -h1,12244:6630773,7662471:0,0,0 -(1,12247:6630773,9028247:25952256,513147,115847 -h1,12246:6630773,9028247:983040,0,0 -k1,12246:9619605,9028247:231077 -(1,12246:9619605,9028247:0,452978,115847 -r1,12304:11384718,9028247:1765113,568825,115847 -k1,12246:9619605,9028247:-1765113 -) -(1,12246:9619605,9028247:1765113,452978,115847 -k1,12246:9619605,9028247:3277 -h1,12246:11381441,9028247:0,411205,112570 -) -k1,12246:11615795,9028247:231077 -k1,12246:14187817,9028247:231076 -k1,12246:15610339,9028247:231077 -k1,12246:18557228,9028247:231077 -k1,12246:19735956,9028247:231077 -$1,12246:19735956,9028247 -$1,12246:20180945,9028247 -k1,12246:20412022,9028247:231077 -k1,12246:21662183,9028247:231076 -k1,12246:25373877,9028247:231077 -k1,12246:29059357,9028247:231077 -(1,12246:29059357,9028247:0,452978,115847 -r1,12304:32583029,9028247:3523672,568825,115847 -k1,12246:29059357,9028247:-3523672 -) -(1,12246:29059357,9028247:3523672,452978,115847 -k1,12246:29059357,9028247:3277 -h1,12246:32579752,9028247:0,411205,112570 -) -k1,12246:32583029,9028247:0 -) -(1,12247:6630773,9869735:25952256,513147,138281 -g1,12246:8115818,9869735 -g1,12246:11433250,9869735 -g1,12246:12651564,9869735 -$1,12246:12651564,9869735 -$1,12246:12972035,9869735 -g1,12246:15238270,9869735 -$1,12246:15238270,9869735 -$1,12246:15706197,9869735 -g1,12246:17972432,9869735 -g1,12246:19363106,9869735 -g1,12246:22999698,9869735 -g1,12246:25625725,9869735 -g1,12246:26772605,9869735 -g1,12246:27990919,9869735 -k1,12247:32583029,9869735:1702628 -g1,12247:32583029,9869735 -) -v1,12249:6630773,11060201:0,393216,0 -(1,12266:6630773,18611505:25952256,7944520,196608 -g1,12266:6630773,18611505 -g1,12266:6630773,18611505 -g1,12266:6434165,18611505 -(1,12266:6434165,18611505:0,7944520,196608 -r1,12304:32779637,18611505:26345472,8141128,196608 -k1,12266:6434165,18611505:-26345472 -) -(1,12266:6434165,18611505:26345472,7944520,196608 -[1,12266:6630773,18611505:25952256,7747912,0 -(1,12251:6630773,11274111:25952256,410518,101187 -(1,12250:6630773,11274111:0,0,0 -g1,12250:6630773,11274111 -g1,12250:6630773,11274111 -g1,12250:6303093,11274111 -(1,12250:6303093,11274111:0,0,0 -) -g1,12250:6630773,11274111 -) -k1,12251:6630773,11274111:0 -g1,12251:10108376,11274111 -g1,12251:10740668,11274111 -g1,12251:14534417,11274111 -g1,12251:15166709,11274111 -g1,12251:15799001,11274111 -h1,12251:18960458,11274111:0,0,0 -k1,12251:32583029,11274111:13622571 -g1,12251:32583029,11274111 -) -(1,12265:6630773,11940289:25952256,379060,0 -(1,12253:6630773,11940289:0,0,0 -g1,12253:6630773,11940289 -g1,12253:6630773,11940289 -g1,12253:6303093,11940289 -(1,12253:6303093,11940289:0,0,0 -) -g1,12253:6630773,11940289 -) -h1,12265:7263064,11940289:0,0,0 -k1,12265:32583028,11940289:25319964 -g1,12265:32583028,11940289 -) -(1,12265:6630773,12606467:25952256,404226,101187 -h1,12265:6630773,12606467:0,0,0 -g1,12265:7579210,12606467 -g1,12265:7895356,12606467 -g1,12265:11056814,12606467 -g1,12265:15799000,12606467 -h1,12265:19276602,12606467:0,0,0 -k1,12265:32583029,12606467:13306427 -g1,12265:32583029,12606467 -) -(1,12265:6630773,13272645:25952256,379060,0 -h1,12265:6630773,13272645:0,0,0 -h1,12265:7263064,13272645:0,0,0 -k1,12265:32583028,13272645:25319964 -g1,12265:32583028,13272645 -) -(1,12265:6630773,13938823:25952256,410518,101187 -h1,12265:6630773,13938823:0,0,0 -g1,12265:7579210,13938823 -g1,12265:9476084,13938823 -g1,12265:9792230,13938823 -g1,12265:13269833,13938823 -g1,12265:14534416,13938823 -h1,12265:17379727,13938823:0,0,0 -k1,12265:32583029,13938823:15203302 -g1,12265:32583029,13938823 -) -(1,12265:6630773,14605001:25952256,410518,101187 -h1,12265:6630773,14605001:0,0,0 -g1,12265:7579210,14605001 -g1,12265:8211502,14605001 -g1,12265:8843794,14605001 -g1,12265:11056814,14605001 -g1,12265:12005251,14605001 -g1,12265:12637543,14605001 -g1,12265:13902126,14605001 -g1,12265:16431292,14605001 -g1,12265:17063584,14605001 -k1,12265:17063584,14605001:0 -h1,12265:19592749,14605001:0,0,0 -k1,12265:32583029,14605001:12990280 -g1,12265:32583029,14605001 -) -(1,12265:6630773,15271179:25952256,404226,101187 -h1,12265:6630773,15271179:0,0,0 -g1,12265:7579210,15271179 -g1,12265:11372958,15271179 -g1,12265:15166706,15271179 -g1,12265:16747435,15271179 -g1,12265:20541183,15271179 -g1,12265:21489620,15271179 -g1,12265:22754203,15271179 -g1,12265:24651077,15271179 -g1,12265:25599514,15271179 -h1,12265:25915660,15271179:0,0,0 -k1,12265:32583029,15271179:6667369 -g1,12265:32583029,15271179 -) -(1,12265:6630773,15937357:25952256,410518,101187 -h1,12265:6630773,15937357:0,0,0 -g1,12265:7579210,15937357 -g1,12265:8527647,15937357 -g1,12265:11056813,15937357 -g1,12265:14534416,15937357 -h1,12265:17379727,15937357:0,0,0 -k1,12265:32583029,15937357:15203302 -g1,12265:32583029,15937357 -) -(1,12265:6630773,16603535:25952256,388497,9436 -h1,12265:6630773,16603535:0,0,0 -g1,12265:7579210,16603535 -g1,12265:7895356,16603535 -g1,12265:11056813,16603535 -h1,12265:13902124,16603535:0,0,0 -k1,12265:32583028,16603535:18680904 -g1,12265:32583028,16603535 -) -(1,12265:6630773,17269713:25952256,404226,101187 -h1,12265:6630773,17269713:0,0,0 -g1,12265:7579210,17269713 -g1,12265:9792230,17269713 -h1,12265:12953687,17269713:0,0,0 -k1,12265:32583029,17269713:19629342 -g1,12265:32583029,17269713 -) -(1,12265:6630773,17935891:25952256,379060,6290 -h1,12265:6630773,17935891:0,0,0 -g1,12265:7579210,17935891 -g1,12265:7895356,17935891 -g1,12265:8211502,17935891 -g1,12265:8527648,17935891 -g1,12265:8843794,17935891 -g1,12265:9159940,17935891 -g1,12265:9476086,17935891 -h1,12265:10424523,17935891:0,0,0 -k1,12265:32583029,17935891:22158506 -g1,12265:32583029,17935891 -) -(1,12265:6630773,18602069:25952256,388497,9436 -h1,12265:6630773,18602069:0,0,0 -g1,12265:7579210,18602069 -h1,12265:10424521,18602069:0,0,0 -k1,12265:32583029,18602069:22158508 -g1,12265:32583029,18602069 -) -] -) -g1,12266:32583029,18611505 -g1,12266:6630773,18611505 -g1,12266:6630773,18611505 -g1,12266:32583029,18611505 -g1,12266:32583029,18611505 -) -h1,12266:6630773,18808113:0,0,0 -(1,12270:6630773,20173889:25952256,505283,134348 -h1,12269:6630773,20173889:983040,0,0 -k1,12269:9735482,20173889:134617 -k1,12269:10738452,20173889:134618 -k1,12269:13078356,20173889:134617 -k1,12269:14385413,20173889:134618 -k1,12269:17140159,20173889:134617 -k1,12269:19582954,20173889:134617 -k1,12269:20403734,20173889:134618 -k1,12269:24114651,20173889:134617 -k1,12269:25405978,20173889:134617 -k1,12269:26192024,20173889:134618 -k1,12269:29607373,20173889:134617 -(1,12269:29607373,20173889:0,414482,115847 -r1,12304:29965639,20173889:358266,530329,115847 -k1,12269:29607373,20173889:-358266 -) -(1,12269:29607373,20173889:358266,414482,115847 -k1,12269:29607373,20173889:3277 -h1,12269:29962362,20173889:0,411205,112570 -) -k1,12269:30100257,20173889:134618 -k1,12269:31426319,20173889:134617 -k1,12269:32583029,20173889:0 -) -(1,12270:6630773,21015377:25952256,513147,134348 -k1,12269:7459133,21015377:176932 -k1,12269:10916797,21015377:176932 -(1,12269:10916797,21015377:0,414482,115847 -r1,12304:11275063,21015377:358266,530329,115847 -k1,12269:10916797,21015377:-358266 -) -(1,12269:10916797,21015377:358266,414482,115847 -k1,12269:10916797,21015377:3277 -h1,12269:11271786,21015377:0,411205,112570 -) -k1,12269:11625665,21015377:176932 -k1,12269:16061126,21015377:176931 -k1,12269:17106410,21015377:176932 -k1,12269:18387624,21015377:176932 -k1,12269:20001761,21015377:176932 -k1,12269:20534553,21015377:176932 -k1,12269:22100848,21015377:176932 -k1,12269:24154076,21015377:176932 -k1,12269:25017170,21015377:176932 -k1,12269:28266429,21015377:176931 -k1,12269:29094789,21015377:176932 -(1,12269:29094789,21015377:0,452978,115847 -r1,12304:30508190,21015377:1413401,568825,115847 -k1,12269:29094789,21015377:-1413401 -) -(1,12269:29094789,21015377:1413401,452978,115847 -k1,12269:29094789,21015377:3277 -h1,12269:30504913,21015377:0,411205,112570 -) -k1,12269:30858792,21015377:176932 -k1,12269:32227169,21015377:176932 -k1,12269:32583029,21015377:0 -) -(1,12270:6630773,21856865:25952256,513147,134348 -k1,12269:8718594,21856865:174825 -k1,12269:11441459,21856865:174825 -k1,12269:12267713,21856865:174826 -k1,12269:15723270,21856865:174825 -(1,12269:15723270,21856865:0,459977,115847 -r1,12304:18191807,21856865:2468537,575824,115847 -k1,12269:15723270,21856865:-2468537 -) -(1,12269:15723270,21856865:2468537,459977,115847 -k1,12269:15723270,21856865:3277 -h1,12269:18188530,21856865:0,411205,112570 -) -k1,12269:18540302,21856865:174825 -k1,12269:19911814,21856865:174825 -k1,12269:23158967,21856865:174825 -k1,12269:25539080,21856865:174826 -k1,12269:26365333,21856865:174825 -(1,12269:26365333,21856865:0,459977,115847 -r1,12304:28833870,21856865:2468537,575824,115847 -k1,12269:26365333,21856865:-2468537 -) -(1,12269:26365333,21856865:2468537,459977,115847 -k1,12269:26365333,21856865:3277 -h1,12269:28830593,21856865:0,411205,112570 -) -k1,12269:29008695,21856865:174825 -k1,12269:32583029,21856865:0 -) -(1,12270:6630773,22698353:25952256,513147,126483 -k1,12269:8700836,22698353:184592 -k1,12269:11727070,22698353:184593 -k1,12269:13479283,22698353:184592 -(1,12269:13479283,22698353:0,452978,115847 -r1,12304:14892684,22698353:1413401,568825,115847 -k1,12269:13479283,22698353:-1413401 -) -(1,12269:13479283,22698353:1413401,452978,115847 -k1,12269:13479283,22698353:3277 -h1,12269:14889407,22698353:0,411205,112570 -) -k1,12269:15077276,22698353:184592 -k1,12269:16253428,22698353:184592 -k1,12269:17089449,22698353:184593 -k1,12269:18021807,22698353:184592 -k1,12269:19893296,22698353:184592 -k1,12269:21269334,22698353:184593 -k1,12269:22069964,22698353:184592 -k1,12269:24140027,22698353:184592 -k1,12269:25733643,22698353:184592 -k1,12269:28123523,22698353:184593 -k1,12269:29327200,22698353:184592 -k1,12269:32583029,22698353:0 -) -(1,12270:6630773,23539841:25952256,513147,134348 -k1,12269:7435307,23539841:153106 -k1,12269:8607499,23539841:153107 -k1,12269:9834740,23539841:153106 -k1,12269:10647138,23539841:153106 -k1,12269:11819330,23539841:153107 -k1,12269:13403742,23539841:153106 -(1,12269:13610836,23539841:0,414482,115847 -r1,12304:13969102,23539841:358266,530329,115847 -k1,12269:13610836,23539841:-358266 -) -(1,12269:13610836,23539841:358266,414482,115847 -g1,12269:13965825,23539841 -h1,12269:13965825,23539841:0,411205,112570 -) -k1,12269:14329302,23539841:153106 -k1,12269:15473969,23539841:153107 -k1,12269:18500829,23539841:153106 -k1,12269:21669246,23539841:153106 -k1,12269:23013798,23539841:153107 -k1,12269:24910817,23539841:153106 -k1,12269:25715351,23539841:153106 -k1,12269:26887543,23539841:153107 -k1,12269:28576158,23539841:153106 -k1,12269:32583029,23539841:0 -) -(1,12270:6630773,24381329:25952256,513147,126483 -k1,12269:9881308,24381329:235224 -k1,12269:10744367,24381329:235224 -k1,12269:11998675,24381329:235223 -k1,12269:13600980,24381329:235224 -k1,12269:14495496,24381329:235224 -k1,12269:18385007,24381329:235224 -k1,12269:19429600,24381329:235223 -k1,12269:23404308,24381329:235224 -k1,12269:24171029,24381329:235224 -k1,12269:26150166,24381329:235224 -k1,12269:27194759,24381329:235223 -k1,12269:29211907,24381329:235224 -k1,12269:30638576,24381329:235224 -k1,12269:32583029,24381329:0 -) -(1,12270:6630773,25222817:25952256,513147,134348 -k1,12269:8003884,25222817:181666 -k1,12269:9652245,25222817:181665 -k1,12269:12675552,25222817:181666 -k1,12269:15046120,25222817:181665 -k1,12269:15879214,25222817:181666 -k1,12269:17079965,25222817:181666 -k1,12269:18797139,25222817:181665 -k1,12269:19638097,25222817:181666 -k1,12269:20838847,25222817:181665 -k1,12269:22625490,25222817:181666 -k1,12269:24003843,25222817:181666 -k1,12269:25681695,25222817:181665 -k1,12269:27731792,25222817:181666 -k1,12269:28444954,25222817:181665 -k1,12269:31931601,25222817:181666 -k1,12269:32583029,25222817:0 -) -(1,12270:6630773,26064305:25952256,513147,134348 -k1,12269:8110707,26064305:195428 -k1,12269:10335130,26064305:195428 -k1,12269:11580445,26064305:195428 -k1,12269:14054561,26064305:195429 -h1,12269:15423608,26064305:0,0,0 -k1,12269:15619036,26064305:195428 -k1,12269:16623834,26064305:195428 -k1,12269:18317415,26064305:195428 -h1,12269:19512792,26064305:0,0,0 -k1,12269:19708220,26064305:195428 -k1,12269:20851299,26064305:195428 -k1,12269:23164195,26064305:195428 -k1,12269:24168993,26064305:195428 -k1,12269:25383507,26064305:195429 -k1,12269:26671420,26064305:195428 -k1,12269:27526140,26064305:195428 -k1,12269:29709275,26064305:195428 -k1,12269:32583029,26064305:0 -) -(1,12270:6630773,26905793:25952256,513147,134348 -g1,12269:8021447,26905793 -g1,12269:10499363,26905793 -h1,12269:11469951,26905793:0,0,0 -g1,12269:11669180,26905793 -g1,12269:12677779,26905793 -g1,12269:14375161,26905793 -h1,12269:15570538,26905793:0,0,0 -g1,12269:15769767,26905793 -g1,12269:16916647,26905793 -g1,12269:20107595,26905793 -g1,12269:20966116,26905793 -g1,12269:22673984,26905793 -g1,12269:23965698,26905793 -g1,12269:24780965,26905793 -g1,12269:26967901,26905793 -k1,12270:32583029,26905793:3506835 -g1,12270:32583029,26905793 -) -v1,12272:6630773,28096259:0,393216,0 -(1,12276:6630773,28411356:25952256,708313,196608 -g1,12276:6630773,28411356 -g1,12276:6630773,28411356 -g1,12276:6434165,28411356 -(1,12276:6434165,28411356:0,708313,196608 -r1,12304:32779637,28411356:26345472,904921,196608 -k1,12276:6434165,28411356:-26345472 -) -(1,12276:6434165,28411356:26345472,708313,196608 -[1,12276:6630773,28411356:25952256,511705,0 -(1,12274:6630773,28310169:25952256,410518,101187 -(1,12273:6630773,28310169:0,0,0 -g1,12273:6630773,28310169 -g1,12273:6630773,28310169 -g1,12273:6303093,28310169 -(1,12273:6303093,28310169:0,0,0 -) -g1,12273:6630773,28310169 -) -k1,12274:6630773,28310169:0 -g1,12274:12005250,28310169 -g1,12274:12637542,28310169 -g1,12274:13269834,28310169 -g1,12274:15166708,28310169 -g1,12274:15799000,28310169 -g1,12274:17695875,28310169 -g1,12274:19276604,28310169 -g1,12274:19908896,28310169 -h1,12274:21489624,28310169:0,0,0 -k1,12274:32583029,28310169:11093405 -g1,12274:32583029,28310169 -) -] -) -g1,12276:32583029,28411356 -g1,12276:6630773,28411356 -g1,12276:6630773,28411356 -g1,12276:32583029,28411356 -g1,12276:32583029,28411356 -) -h1,12276:6630773,28607964:0,0,0 -v1,12280:6630773,30498028:0,393216,0 -(1,12294:6630773,45356305:25952256,15251493,0 -g1,12294:6630773,45356305 -g1,12294:6303093,45356305 -r1,12304:6401397,45356305:98304,15251493,0 -g1,12294:6600626,45356305 -g1,12294:6797234,45356305 -[1,12294:6797234,45356305:25785795,15251493,0 -(1,12281:6797234,30930566:25785795,825754,196608 -(1,12280:6797234,30930566:0,825754,196608 -r1,12304:7890375,30930566:1093141,1022362,196608 -k1,12280:6797234,30930566:-1093141 -) -(1,12280:6797234,30930566:1093141,825754,196608 -) -k1,12280:8134010,30930566:243635 -k1,12280:9451939,30930566:327680 -k1,12280:12815743,30930566:243635 -(1,12280:12815743,30930566:0,452978,115847 -r1,12304:14580856,30930566:1765113,568825,115847 -k1,12280:12815743,30930566:-1765113 -) -(1,12280:12815743,30930566:1765113,452978,115847 -k1,12280:12815743,30930566:3277 -h1,12280:14577579,30930566:0,411205,112570 -) -k1,12280:14824491,30930566:243635 -k1,12280:16259571,30930566:243635 -(1,12280:16259571,30930566:0,452978,115847 -r1,12304:19783243,30930566:3523672,568825,115847 -k1,12280:16259571,30930566:-3523672 -) -(1,12280:16259571,30930566:3523672,452978,115847 -k1,12280:16259571,30930566:3277 -h1,12280:19779966,30930566:0,411205,112570 -) -k1,12280:20026878,30930566:243635 -k1,12280:22281158,30930566:243635 -k1,12280:22939591,30930566:243590 -k1,12280:25646724,30930566:243635 -k1,12280:27174865,30930566:243635 -k1,12280:29116538,30930566:243635 -k1,12280:31095566,30930566:243635 -k1,12280:31753999,30930566:243590 -k1,12281:32583029,30930566:0 -) -(1,12281:6797234,31772054:25785795,505283,134348 -k1,12280:10363822,31772054:255709 -k1,12280:11597985,31772054:255710 -k1,12280:16170551,31772054:255709 -k1,12280:19376691,31772054:255709 -k1,12280:20441771,31772054:255710 -k1,12280:21716565,31772054:255709 -k1,12280:24207708,31772054:255710 -k1,12280:25734815,31772054:255709 -k1,12280:28170907,31772054:255709 -k1,12280:29174383,31772054:255710 -k1,12280:31298523,31772054:255709 -k1,12281:32583029,31772054:0 -) -(1,12281:6797234,32613542:25785795,513147,126483 -(1,12280:6797234,32613542:0,452978,115847 -r1,12304:9265771,32613542:2468537,568825,115847 -k1,12280:6797234,32613542:-2468537 -) -(1,12280:6797234,32613542:2468537,452978,115847 -k1,12280:6797234,32613542:3277 -h1,12280:9262494,32613542:0,411205,112570 -) -k1,12280:9513218,32613542:247447 -k1,12280:12545289,32613542:247446 -k1,12280:13608004,32613542:247447 -k1,12280:14921722,32613542:247447 -k1,12280:18684520,32613542:247447 -k1,12280:21227037,32613542:247446 -k1,12280:22240600,32613542:247447 -k1,12280:23507132,32613542:247447 -k1,12280:27561565,32613542:247447 -k1,12280:30948841,32613542:247446 -k1,12280:31812326,32613542:247447 -k1,12281:32583029,32613542:0 -) -(1,12281:6797234,33455030:25785795,513147,134348 -k1,12280:7447015,33455030:234938 -k1,12280:9815187,33455030:234975 -k1,12280:11431005,33455030:234974 -k1,12280:12197476,33455030:234974 -k1,12280:14595139,33455030:234975 -k1,12280:16959378,33455030:234974 -k1,12280:18213437,33455030:234974 -k1,12280:19815493,33455030:234975 -k1,12280:20998118,33455030:234974 -k1,12280:23919413,33455030:234974 -k1,12280:26444215,33455030:234974 -k1,12280:27825415,33455030:234975 -k1,12280:29804302,33455030:234974 -k1,12280:32583029,33455030:0 -) -(1,12281:6797234,34296518:25785795,513147,134348 -k1,12280:7812546,34296518:253784 -k1,12280:8481118,34296518:253729 -k1,12280:11760699,34296518:253784 -k1,12280:16438163,34296518:253784 -k1,12280:19776071,34296518:253784 -k1,12280:21725272,34296518:253785 -k1,12280:22796945,34296518:253784 -k1,12280:24444680,34296518:253784 -k1,12280:25830271,34296518:253784 -k1,12280:26498843,34296518:253729 -k1,12280:28712153,34296518:253784 -k1,12280:29834289,34296518:253784 -k1,12280:31192355,34296518:253784 -k1,12280:32583029,34296518:0 -) -(1,12281:6797234,35138006:25785795,513147,134348 -k1,12280:8066536,35138006:250217 -k1,12280:10159624,35138006:250216 -k1,12280:11069133,35138006:250217 -k1,12280:12090052,35138006:250216 -k1,12280:14894862,35138006:250217 -k1,12280:16412544,35138006:250216 -k1,12280:17018621,35138006:250217 -k1,12280:19953847,35138006:250216 -k1,12280:21021953,35138006:250217 -k1,12280:24362192,35138006:250216 -k1,12280:25228447,35138006:250217 -k1,12280:27757350,35138006:250216 -h1,12280:28727938,35138006:0,0,0 -k1,12280:28978155,35138006:250217 -k1,12280:30037741,35138006:250216 -k1,12280:31786111,35138006:250217 -h1,12280:32583029,35138006:0,0,0 -k1,12280:32583029,35138006:0 -) -(1,12281:6797234,35979494:25785795,513147,134348 -k1,12280:7972061,35979494:227176 -k1,12280:9696736,35979494:227177 -k1,12280:10792264,35979494:227176 -k1,12280:12123722,35979494:227176 -k1,12280:13858881,35979494:227176 -k1,12280:15353524,35979494:227177 -k1,12280:16599785,35979494:227176 -k1,12280:19758386,35979494:227176 -k1,12280:20644854,35979494:227176 -k1,12280:21642734,35979494:227177 -k1,12280:23829436,35979494:227176 -k1,12280:25450563,35979494:227176 -k1,12280:28132062,35979494:227176 -(1,12280:28132062,35979494:0,452978,115847 -r1,12304:29897175,35979494:1765113,568825,115847 -k1,12280:28132062,35979494:-1765113 -) -(1,12280:28132062,35979494:1765113,452978,115847 -k1,12280:28132062,35979494:3277 -h1,12280:29893898,35979494:0,411205,112570 -) -k1,12280:30298022,35979494:227177 -k1,12280:31478747,35979494:227176 -k1,12280:32583029,35979494:0 -) -(1,12281:6797234,36820982:25785795,513147,115847 -k1,12280:8078860,36820982:189141 -(1,12280:8078860,36820982:0,452978,115847 -r1,12304:10547397,36820982:2468537,568825,115847 -k1,12280:8078860,36820982:-2468537 -) -(1,12280:8078860,36820982:2468537,452978,115847 -k1,12280:8078860,36820982:3277 -h1,12280:10544120,36820982:0,411205,112570 -) -k1,12280:10736538,36820982:189141 -k1,12280:12117124,36820982:189141 -(1,12280:12117124,36820982:0,452978,115847 -r1,12304:16344220,36820982:4227096,568825,115847 -k1,12280:12117124,36820982:-4227096 -) -(1,12280:12117124,36820982:4227096,452978,115847 -k1,12280:12117124,36820982:3277 -h1,12280:16340943,36820982:0,411205,112570 -) -k1,12280:16533361,36820982:189141 -k1,12280:17373930,36820982:189141 -k1,12280:19767046,36820982:189140 -k1,12280:22231597,36820982:189141 -k1,12280:26401395,36820982:189141 -k1,12280:27865211,36820982:189141 -k1,12280:29073437,36820982:189141 -k1,12280:30758765,36820982:189141 -k1,12280:31563944,36820982:189141 -k1,12280:32583029,36820982:0 -) -(1,12281:6797234,37662470:25785795,505283,126483 -g1,12280:8967131,37662470 -g1,12280:11034791,37662470 -g1,12280:11885448,37662470 -g1,12280:14757891,37662470 -g1,12280:16505736,37662470 -g1,12280:17236462,37662470 -g1,12280:19924093,37662470 -g1,12280:22902049,37662470 -g1,12280:23862806,37662470 -(1,12280:23862806,37662470:0,452978,115847 -r1,12304:25627919,37662470:1765113,568825,115847 -k1,12280:23862806,37662470:-1765113 -) -(1,12280:23862806,37662470:1765113,452978,115847 -k1,12280:23862806,37662470:3277 -h1,12280:25624642,37662470:0,411205,112570 -) -k1,12281:32583029,37662470:6781440 -g1,12281:32583029,37662470 -) -v1,12283:6797234,38852936:0,393216,0 -(1,12290:6797234,41135109:25785795,2675389,196608 -g1,12290:6797234,41135109 -g1,12290:6797234,41135109 -g1,12290:6600626,41135109 -(1,12290:6600626,41135109:0,2675389,196608 -r1,12304:32779637,41135109:26179011,2871997,196608 -k1,12290:6600625,41135109:-26179012 -) -(1,12290:6600626,41135109:26179011,2675389,196608 -[1,12290:6797234,41135109:25785795,2478781,0 -(1,12285:6797234,39060554:25785795,404226,76021 -(1,12284:6797234,39060554:0,0,0 -g1,12284:6797234,39060554 -g1,12284:6797234,39060554 -g1,12284:6469554,39060554 -(1,12284:6469554,39060554:0,0,0 -) -g1,12284:6797234,39060554 -) -g1,12285:7429526,39060554 -g1,12285:8377964,39060554 -k1,12285:8377964,39060554:0 -h1,12285:11223275,39060554:0,0,0 -k1,12285:32583029,39060554:21359754 -g1,12285:32583029,39060554 -) -(1,12286:6797234,39726732:25785795,404226,76021 -h1,12286:6797234,39726732:0,0,0 -k1,12286:6797234,39726732:0 -h1,12286:9326399,39726732:0,0,0 -k1,12286:32583029,39726732:23256630 -g1,12286:32583029,39726732 -) -(1,12287:6797234,40392910:25785795,404226,76021 -h1,12287:6797234,40392910:0,0,0 -k1,12287:6797234,40392910:0 -h1,12287:10907128,40392910:0,0,0 -k1,12287:32583028,40392910:21675900 -g1,12287:32583028,40392910 -) -(1,12288:6797234,41059088:25785795,404226,76021 -h1,12288:6797234,41059088:0,0,0 -k1,12288:6797234,41059088:0 -h1,12288:8694108,41059088:0,0,0 -k1,12288:32583028,41059088:23888920 -g1,12288:32583028,41059088 -) -] -) -g1,12290:32583029,41135109 -g1,12290:6797234,41135109 -g1,12290:6797234,41135109 -g1,12290:32583029,41135109 -g1,12290:32583029,41135109 -) -h1,12290:6797234,41331717:0,0,0 -(1,12294:6797234,42697493:25785795,513147,126483 -h1,12293:6797234,42697493:983040,0,0 -k1,12293:10720215,42697493:211677 -(1,12293:10720215,42697493:0,452978,115847 -r1,12304:13188752,42697493:2468537,568825,115847 -k1,12293:10720215,42697493:-2468537 -) -(1,12293:10720215,42697493:2468537,452978,115847 -k1,12293:10720215,42697493:3277 -h1,12293:13185475,42697493:0,411205,112570 -) -k1,12293:13574098,42697493:211676 -(1,12293:13574098,42697493:0,452978,115847 -r1,12304:17801194,42697493:4227096,568825,115847 -k1,12293:13574098,42697493:-4227096 -) -(1,12293:13574098,42697493:4227096,452978,115847 -k1,12293:13574098,42697493:3277 -h1,12293:17797917,42697493:0,411205,112570 -) -k1,12293:18012871,42697493:211677 -k1,12293:19415993,42697493:211677 -(1,12293:19415993,42697493:0,452978,115847 -r1,12304:21181106,42697493:1765113,568825,115847 -k1,12293:19415993,42697493:-1765113 -) -(1,12293:19415993,42697493:1765113,452978,115847 -k1,12293:19415993,42697493:3277 -h1,12293:21177829,42697493:0,411205,112570 -) -k1,12293:21392783,42697493:211677 -k1,12293:22596019,42697493:211676 -k1,12293:24161670,42697493:211677 -k1,12293:27230061,42697493:211677 -k1,12293:29023122,42697493:211677 -k1,12293:30519304,42697493:211676 -k1,12293:31835263,42697493:211677 -k1,12293:32583029,42697493:0 -) -(1,12294:6797234,43538981:25785795,505283,134348 -k1,12293:8495722,43538981:185262 -k1,12293:10379022,43538981:185262 -k1,12293:11432636,43538981:185262 -k1,12293:12609458,43538981:185262 -k1,12293:13410759,43538981:185263 -k1,12293:15483458,43538981:185262 -k1,12293:17491276,43538981:185262 -k1,12293:18695623,43538981:185262 -k1,12293:20270248,43538981:185262 -k1,12293:23595340,43538981:185262 -k1,12293:24396640,43538981:185262 -k1,12293:25352605,43538981:185262 -k1,12293:27497394,43538981:185263 -k1,12293:29892530,43538981:185262 -k1,12293:31408173,43538981:185262 -k1,12293:32051532,43538981:185262 -k1,12293:32583029,43538981:0 -) -(1,12294:6797234,44380469:25785795,505283,134348 -k1,12293:10496324,44380469:173253 -k1,12293:13454203,44380469:173254 -k1,12293:14646541,44380469:173253 -k1,12293:17751219,44380469:173253 -k1,12293:19936428,44380469:173254 -k1,12293:20854825,44380469:173253 -k1,12293:21679507,44380469:173254 -k1,12293:24286767,44380469:173253 -k1,12293:25479105,44380469:173253 -k1,12293:27041722,44380469:173254 -k1,12293:30168683,44380469:173253 -k1,12293:32583029,44380469:0 -) -(1,12294:6797234,45221957:25785795,513147,134348 -g1,12293:8564084,45221957 -g1,12293:9782398,45221957 -g1,12293:11941153,45221957 -g1,12293:13838420,45221957 -g1,12293:17475668,45221957 -g1,12293:20561758,45221957 -g1,12293:23545612,45221957 -g1,12293:24736401,45221957 -g1,12293:26001901,45221957 -k1,12294:32583029,45221957:3623488 -g1,12294:32583029,45221957 -) -] -g1,12294:32583029,45356305 -) -h1,12294:6630773,45356305:0,0,0 -] -(1,12304:32583029,45706769:0,0,0 -g1,12304:32583029,45706769 -) -) -] -(1,12304:6630773,47279633:25952256,0,0 -h1,12304:6630773,47279633:25952256,0,0 -) -] -(1,12304:4262630,4025873:0,0,0 -[1,12304:-473656,4025873:0,0,0 -(1,12304:-473656,-710413:0,0,0 -(1,12304:-473656,-710413:0,0,0 -g1,12304:-473656,-710413 -) -g1,12304:-473656,-710413 -) -] -) -] -!29570 -}210 -Input:1822:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1823:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1824:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1825:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1826:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1827:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1828:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1829:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1830:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1831:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1832:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1833:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1834:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1835:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1328 -{211 -[1,12350:4262630,47279633:28320399,43253760,0 -(1,12350:4262630,4025873:0,0,0 -[1,12350:-473656,4025873:0,0,0 -(1,12350:-473656,-710413:0,0,0 -(1,12350:-473656,-644877:0,0,0 -k1,12350:-473656,-644877:-65536 +g1,11809:6630773,4812305 +k1,11809:23552825,4812305:15726675 +g1,11809:25175496,4812305 +g1,11809:25997972,4812305 +g1,11809:28481131,4812305 +g1,11809:30046786,4812305 ) -(1,12350:-473656,4736287:0,0,0 -k1,12350:-473656,4736287:5209943 -) -g1,12350:-473656,-710413 ) ] +[1,11809:6630773,45706769:25952256,40108032,0 +(1,11809:6630773,45706769:25952256,40108032,0 +(1,11809:6630773,45706769:0,0,0 +g1,11809:6630773,45706769 ) -[1,12350:6630773,47279633:25952256,43253760,0 -[1,12350:6630773,4812305:25952256,786432,0 -(1,12350:6630773,4812305:25952256,513147,126483 -(1,12350:6630773,4812305:25952256,513147,126483 -g1,12350:3078558,4812305 -[1,12350:3078558,4812305:0,0,0 -(1,12350:3078558,2439708:0,1703936,0 -k1,12350:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,12350:2537886,2439708:1179648,16384,0 -) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,12350:3078558,1915420:16384,1179648,0 +[1,11809:6630773,45706769:25952256,40108032,0 +v1,11769:6630773,6254097:0,393216,0 +(1,11769:6630773,12011095:25952256,6150214,196608 +g1,11769:6630773,12011095 +g1,11769:6630773,12011095 +g1,11769:6434165,12011095 +(1,11769:6434165,12011095:0,6150214,196608 +r1,11809:32779637,12011095:26345472,6346822,196608 +k1,11769:6434165,12011095:-26345472 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +(1,11769:6434165,12011095:26345472,6150214,196608 +[1,11769:6630773,12011095:25952256,5953606,0 +(1,11750:6630773,6481928:25952256,424439,106246 +(1,11749:6630773,6481928:0,0,0 +g1,11749:6630773,6481928 +g1,11749:6630773,6481928 +g1,11749:6303093,6481928 +(1,11749:6303093,6481928:0,0,0 ) -] +g1,11749:6630773,6481928 ) +g1,11750:7626635,6481928 +g1,11750:8622497,6481928 +g1,11750:10946175,6481928 +h1,11750:12273991,6481928:0,0,0 +k1,11750:32583029,6481928:20309038 +g1,11750:32583029,6481928 ) +(1,11751:6630773,7166783:25952256,424439,106246 +h1,11751:6630773,7166783:0,0,0 +h1,11751:7294681,7166783:0,0,0 +k1,11751:32583029,7166783:25288348 +g1,11751:32583029,7166783 +) +(1,11755:6630773,7982710:25952256,424439,106246 +(1,11753:6630773,7982710:0,0,0 +g1,11753:6630773,7982710 +g1,11753:6630773,7982710 +g1,11753:6303093,7982710 +(1,11753:6303093,7982710:0,0,0 +) +g1,11753:6630773,7982710 +) +g1,11755:7626635,7982710 +g1,11755:8954451,7982710 +g1,11755:11278129,7982710 +h1,11755:12605945,7982710:0,0,0 +k1,11755:32583029,7982710:19977084 +g1,11755:32583029,7982710 +) +(1,11757:6630773,8798637:25952256,424439,106246 +(1,11756:6630773,8798637:0,0,0 +g1,11756:6630773,8798637 +g1,11756:6630773,8798637 +g1,11756:6303093,8798637 +(1,11756:6303093,8798637:0,0,0 +) +g1,11756:6630773,8798637 +) +k1,11757:6630773,8798637:0 +h1,11757:8622497,8798637:0,0,0 +k1,11757:32583029,8798637:23960532 +g1,11757:32583029,8798637 +) +(1,11758:6630773,9483492:25952256,424439,106246 +h1,11758:6630773,9483492:0,0,0 +h1,11758:7294681,9483492:0,0,0 +k1,11758:32583029,9483492:25288348 +g1,11758:32583029,9483492 +) +(1,11762:6630773,10299419:25952256,424439,79822 +(1,11760:6630773,10299419:0,0,0 +g1,11760:6630773,10299419 +g1,11760:6630773,10299419 +g1,11760:6303093,10299419 +(1,11760:6303093,10299419:0,0,0 +) +g1,11760:6630773,10299419 +) +g1,11762:7626635,10299419 +g1,11762:8954451,10299419 +h1,11762:11610082,10299419:0,0,0 +k1,11762:32583030,10299419:20972948 +g1,11762:32583030,10299419 +) +(1,11764:6630773,11115346:25952256,424439,106246 +(1,11763:6630773,11115346:0,0,0 +g1,11763:6630773,11115346 +g1,11763:6630773,11115346 +g1,11763:6303093,11115346 +(1,11763:6303093,11115346:0,0,0 +) +g1,11763:6630773,11115346 +) +k1,11764:6630773,11115346:0 +h1,11764:10614221,11115346:0,0,0 +k1,11764:32583029,11115346:21968808 +g1,11764:32583029,11115346 +) +(1,11768:6630773,11931273:25952256,424439,79822 +(1,11766:6630773,11931273:0,0,0 +g1,11766:6630773,11931273 +g1,11766:6630773,11931273 +g1,11766:6303093,11931273 +(1,11766:6303093,11931273:0,0,0 +) +g1,11766:6630773,11931273 +) +g1,11768:7626635,11931273 +g1,11768:8954451,11931273 +h1,11768:10282267,11931273:0,0,0 +k1,11768:32583029,11931273:22300762 +g1,11768:32583029,11931273 +) +] +) +g1,11769:32583029,12011095 +g1,11769:6630773,12011095 +g1,11769:6630773,12011095 +g1,11769:32583029,12011095 +g1,11769:32583029,12011095 +) +h1,11769:6630773,12207703:0,0,0 +(1,11773:6630773,13072783:25952256,513147,126483 +h1,11772:6630773,13072783:983040,0,0 +k1,11772:8389890,13072783:148242 +k1,11772:9557218,13072783:148243 +k1,11772:12366877,13072783:148242 +k1,11772:14544114,13072783:148242 +k1,11772:15711442,13072783:148243 +k1,11772:17032123,13072783:148242 +k1,11772:20022006,13072783:148242 +k1,11772:21161809,13072783:148243 +k1,11772:22376322,13072783:148242 +k1,11772:24906142,13072783:148242 +k1,11772:25670423,13072783:148243 +k1,11772:26837750,13072783:148242 +k1,11772:28639465,13072783:148242 +k1,11772:30787867,13072783:148243 +k1,11772:31563944,13072783:148242 +k1,11772:32583029,13072783:0 +) +(1,11773:6630773,13937863:25952256,505283,134348 +k1,11772:9504480,13937863:212290 +k1,11772:11585201,13937863:212290 +k1,11772:12665843,13937863:212290 +k1,11772:14884845,13937863:212290 +k1,11772:15452995,13937863:212290 +k1,11772:16948480,13937863:212290 +k1,11772:18841113,13937863:212290 +k1,11772:19704830,13937863:212289 +k1,11772:20272980,13937863:212290 +k1,11772:22996610,13937863:212290 +k1,11772:24077252,13937863:212290 +k1,11772:25764757,13937863:212290 +k1,11772:28010629,13937863:212290 +k1,11772:30573040,13937863:212290 +k1,11772:32583029,13937863:0 +) +(1,11773:6630773,14802943:25952256,505283,134348 +k1,11772:7855510,14802943:205652 +k1,11772:9714635,14802943:205652 +k1,11772:11920446,14802943:205652 +k1,11772:13317543,14802943:205652 +k1,11772:17748301,14802943:205652 +k1,11772:18973037,14802943:205651 +k1,11772:21420020,14802943:205652 +k1,11772:25271440,14802943:205652 +k1,11772:28983268,14802943:205652 +k1,11772:31140582,14802943:205652 +k1,11772:32583029,14802943:0 +) +(1,11773:6630773,15668023:25952256,513147,134348 +g1,11772:8718094,15668023 +g1,11772:9936408,15668023 +g1,11772:12626660,15668023 +k1,11773:32583029,15668023:16700540 +g1,11773:32583029,15668023 +) +v1,11775:6630773,16352878:0,393216,0 +(1,11797:6630773,22794731:25952256,6835069,196608 +g1,11797:6630773,22794731 +g1,11797:6630773,22794731 +g1,11797:6434165,22794731 +(1,11797:6434165,22794731:0,6835069,196608 +r1,11809:32779637,22794731:26345472,7031677,196608 +k1,11797:6434165,22794731:-26345472 +) +(1,11797:6434165,22794731:26345472,6835069,196608 +[1,11797:6630773,22794731:25952256,6638461,0 +(1,11777:6630773,16580709:25952256,424439,106246 +(1,11776:6630773,16580709:0,0,0 +g1,11776:6630773,16580709 +g1,11776:6630773,16580709 +g1,11776:6303093,16580709 +(1,11776:6303093,16580709:0,0,0 +) +g1,11776:6630773,16580709 +) +g1,11777:8954451,16580709 +g1,11777:9950313,16580709 +g1,11777:13601806,16580709 +h1,11777:14929622,16580709:0,0,0 +k1,11777:32583030,16580709:17653408 +g1,11777:32583030,16580709 +) +(1,11778:6630773,17265564:25952256,424439,106246 +h1,11778:6630773,17265564:0,0,0 +h1,11778:8622497,17265564:0,0,0 +k1,11778:32583029,17265564:23960532 +g1,11778:32583029,17265564 +) +(1,11782:6630773,18081491:25952256,424439,106246 +(1,11780:6630773,18081491:0,0,0 +g1,11780:6630773,18081491 +g1,11780:6630773,18081491 +g1,11780:6303093,18081491 +(1,11780:6303093,18081491:0,0,0 +) +g1,11780:6630773,18081491 +) +g1,11782:7626635,18081491 +g1,11782:8954451,18081491 +g1,11782:12605944,18081491 +h1,11782:13933760,18081491:0,0,0 +k1,11782:32583028,18081491:18649268 +g1,11782:32583028,18081491 +) +(1,11784:6630773,18897418:25952256,424439,106246 +(1,11783:6630773,18897418:0,0,0 +g1,11783:6630773,18897418 +g1,11783:6630773,18897418 +g1,11783:6303093,18897418 +(1,11783:6303093,18897418:0,0,0 +) +g1,11783:6630773,18897418 +) +g1,11784:8954451,18897418 +g1,11784:9950313,18897418 +g1,11784:12273991,18897418 +h1,11784:13601807,18897418:0,0,0 +k1,11784:32583029,18897418:18981222 +g1,11784:32583029,18897418 +) +(1,11785:6630773,19582273:25952256,424439,106246 +h1,11785:6630773,19582273:0,0,0 +h1,11785:8622497,19582273:0,0,0 +k1,11785:32583029,19582273:23960532 +g1,11785:32583029,19582273 +) +(1,11789:6630773,20398200:25952256,424439,106246 +(1,11787:6630773,20398200:0,0,0 +g1,11787:6630773,20398200 +g1,11787:6630773,20398200 +g1,11787:6303093,20398200 +(1,11787:6303093,20398200:0,0,0 +) +g1,11787:6630773,20398200 +) +g1,11789:7626635,20398200 +g1,11789:8954451,20398200 +g1,11789:11278129,20398200 +h1,11789:12605945,20398200:0,0,0 +k1,11789:32583029,20398200:19977084 +g1,11789:32583029,20398200 +) +(1,11791:6630773,21214127:25952256,424439,106246 +(1,11790:6630773,21214127:0,0,0 +g1,11790:6630773,21214127 +g1,11790:6630773,21214127 +g1,11790:6303093,21214127 +(1,11790:6303093,21214127:0,0,0 +) +g1,11790:6630773,21214127 +) +k1,11791:6630773,21214127:0 +h1,11791:9950312,21214127:0,0,0 +k1,11791:32583028,21214127:22632716 +g1,11791:32583028,21214127 +) +(1,11792:6630773,21898982:25952256,424439,106246 +h1,11792:6630773,21898982:0,0,0 +k1,11792:6630773,21898982:0 +h1,11792:11942036,21898982:0,0,0 +k1,11792:32583028,21898982:20640992 +g1,11792:32583028,21898982 +) +(1,11796:6630773,22714909:25952256,424439,79822 +(1,11794:6630773,22714909:0,0,0 +g1,11794:6630773,22714909 +g1,11794:6630773,22714909 +g1,11794:6303093,22714909 +(1,11794:6303093,22714909:0,0,0 +) +g1,11794:6630773,22714909 +) +g1,11796:7626635,22714909 +g1,11796:8954451,22714909 +h1,11796:10614221,22714909:0,0,0 +k1,11796:32583029,22714909:21968808 +g1,11796:32583029,22714909 +) +] +) +g1,11797:32583029,22794731 +g1,11797:6630773,22794731 +g1,11797:6630773,22794731 +g1,11797:32583029,22794731 +g1,11797:32583029,22794731 +) +h1,11797:6630773,22991339:0,0,0 +(1,11800:6630773,25822499:25952256,32768,229376 +(1,11800:6630773,25822499:0,32768,229376 +(1,11800:6630773,25822499:5505024,32768,229376 +r1,11809:12135797,25822499:5505024,262144,229376 +) +k1,11800:6630773,25822499:-5505024 +) +(1,11800:6630773,25822499:25952256,32768,0 +r1,11809:32583029,25822499:25952256,32768,0 +) +) +(1,11800:6630773,27454351:25952256,606339,161218 +(1,11800:6630773,27454351:1974731,582746,14155 +g1,11800:6630773,27454351 +g1,11800:8605504,27454351 +) +k1,11800:32583030,27454351:20355220 +g1,11800:32583030,27454351 +) +(1,11802:6630773,28784737:25952256,564462,147783 +(1,11802:6630773,28784737:2450326,534184,12975 +g1,11802:6630773,28784737 +g1,11802:9081099,28784737 +) +g1,11802:12049749,28784737 +g1,11802:13033052,28784737 +g1,11802:17211366,28784737 +k1,11802:32583029,28784737:11465127 +g1,11802:32583029,28784737 +) +(1,11805:6630773,30043033:25952256,513147,134348 +k1,11804:8021306,30043033:193846 +k1,11804:9816853,30043033:193847 +k1,11804:12312323,30043033:193846 +k1,11804:13744145,30043033:193847 +k1,11804:14597283,30043033:193846 +k1,11804:16978722,30043033:193847 +k1,11804:18455763,30043033:193846 +k1,11804:21255321,30043033:193847 +k1,11804:22132052,30043033:193846 +k1,11804:25935622,30043033:193847 +k1,11804:26780896,30043033:193846 +k1,11804:27389580,30043033:193841 +k1,11804:28114924,30043033:193847 +k1,11804:30867296,30043033:193846 +k1,11805:32583029,30043033:0 +) +(1,11805:6630773,30908113:25952256,505283,134348 +k1,11804:8421772,30908113:209615 +k1,11804:10012231,30908113:209615 +k1,11804:10753343,30908113:209615 +k1,11804:13423180,30908113:209615 +k1,11804:15520232,30908113:209615 +k1,11804:16748932,30908113:209615 +k1,11804:18293515,30908113:209615 +k1,11804:22141033,30908113:209615 +k1,11804:24048686,30908113:209615 +k1,11804:25955028,30908113:209615 +k1,11804:29567272,30908113:209615 +k1,11804:30428315,30908113:209615 +k1,11804:31052763,30908113:209605 +k1,11804:32583029,30908113:0 +) +(1,11805:6630773,31773193:25952256,513147,102891 +k1,11804:7503198,31773193:220997 +k1,11804:8471960,31773193:220996 +k1,11804:11024073,31773193:220997 +k1,11804:14179772,31773193:220997 +k1,11804:15016807,31773193:220997 +k1,11804:16839503,31773193:220996 +k1,11804:20217369,31773193:220997 +k1,11804:20896463,31773193:220997 +k1,11804:21648956,31773193:220996 +k1,11804:23155769,31773193:220997 +k1,11804:24395851,31773193:220997 +k1,11804:25951816,31773193:220997 +k1,11804:29810715,31773193:220996 +k1,11804:30979363,31773193:220997 +k1,11805:32583029,31773193:0 +) +(1,11805:6630773,32638273:25952256,505283,134348 +k1,11804:8549886,32638273:198793 +k1,11804:10244865,32638273:198792 +k1,11804:11728164,32638273:198793 +k1,11804:13059418,32638273:198792 +k1,11804:14005977,32638273:198793 +k1,11804:16353695,32638273:198792 +k1,11804:18019184,32638273:198793 +k1,11804:18979504,32638273:198792 +k1,11804:19534157,32638273:198793 +k1,11804:21605969,32638273:198793 +k1,11804:24000872,32638273:198792 +k1,11804:25587062,32638273:198793 +k1,11804:27384932,32638273:198792 +k1,11804:27998567,32638273:198792 +k1,11804:31107814,32638273:198793 +k1,11804:32583029,32638273:0 +) +(1,11805:6630773,33503353:25952256,513147,102891 +k1,11804:8521421,33503353:223412 +k1,11804:10330804,33503353:223412 +k1,11804:12376772,33503353:223412 +k1,11804:14108823,33503353:223412 +k1,11804:17255141,33503353:223412 +k1,11804:18461593,33503353:223412 +k1,11804:21790101,33503353:223412 +k1,11804:23204958,33503353:223412 +k1,11804:28428112,33503353:223412 +k1,11804:30536995,33503353:223412 +k1,11804:32583029,33503353:0 +) +(1,11805:6630773,34368433:25952256,513147,134348 +k1,11804:7303282,34368433:214412 +k1,11804:10147654,34368433:214412 +k1,11804:12521477,34368433:214412 +k1,11804:14437859,34368433:214412 +k1,11804:16644565,34368433:214412 +k1,11804:17806628,34368433:214412 +k1,11804:19040124,34368433:214411 +k1,11804:21834688,34368433:214412 +k1,11804:26875171,34368433:214412 +k1,11804:27741011,34368433:214412 +k1,11804:28703189,34368433:214412 +k1,11804:31315563,34368433:214412 +k1,11805:32583029,34368433:0 +) +(1,11805:6630773,35233513:25952256,513147,134348 +k1,11804:7735289,35233513:185701 +k1,11804:9309043,35233513:185701 +k1,11804:11740662,35233513:185700 +k1,11804:13624401,35233513:185701 +k1,11804:14165962,35233513:185701 +k1,11804:16931815,35233513:185701 +k1,11804:17649012,35233513:185700 +k1,11804:20152721,35233513:185701 +k1,11804:21817570,35233513:185701 +k1,11804:22359131,35233513:185701 +k1,11804:23677950,35233513:185701 +k1,11804:27449125,35233513:185700 +k1,11804:30545280,35233513:185701 +k1,11804:31835263,35233513:185701 +k1,11804:32583029,35233513:0 +) +(1,11805:6630773,36098593:25952256,505283,126483 +g1,11804:9116553,36098593 +g1,11804:10040610,36098593 +g1,11804:11524345,36098593 +g1,11804:13103762,36098593 +g1,11804:14435453,36098593 +g1,11804:16231139,36098593 +g1,11804:17239738,36098593 +g1,11804:18570774,36098593 +g1,11804:21846263,36098593 +g1,11804:23964386,36098593 +g1,11804:24578458,36098593 +k1,11805:32583029,36098593:6382555 +g1,11805:32583029,36098593 +) +(1,11807:6630773,36963673:25952256,513147,134348 +h1,11806:6630773,36963673:983040,0,0 +k1,11806:10776471,36963673:297424 +k1,11806:12178177,36963673:297424 +k1,11806:13223367,36963673:297424 +k1,11806:15678236,36963673:297424 +k1,11806:16661822,36963673:297424 +k1,11806:19068196,36963673:297425 +k1,11806:20048505,36963673:297424 +k1,11806:22367715,36963673:297424 +k1,11806:25245291,36963673:297424 +k1,11806:27029727,36963673:297424 +k1,11806:28676537,36963673:297424 +k1,11806:29921612,36963673:297424 +k1,11806:32583029,36963673:0 +) +(1,11807:6630773,37828753:25952256,513147,134348 +k1,11806:9372749,37828753:183450 +k1,11806:11672357,37828753:183450 +k1,11806:14790510,37828753:183451 +k1,11806:15921611,37828753:183450 +k1,11806:18484673,37828753:183450 +k1,11806:21578577,37828753:183450 +k1,11806:23992218,37828753:183451 +k1,11806:24633765,37828753:183450 +k1,11806:25348712,37828753:183450 +k1,11806:26867130,37828753:183450 +k1,11806:27702009,37828753:183451 +k1,11806:30109096,37828753:183450 +k1,11806:31931601,37828753:183450 +k1,11806:32583029,37828753:0 +) +(1,11807:6630773,38693833:25952256,530548,134348 +k1,11806:7205969,38693833:219336 +k1,11806:10882328,38693833:219335 +k1,11806:12298351,38693833:219336 +k1,11806:14675787,38693833:219335 +k1,11806:16871033,38693833:219336 +k1,11806:20373722,38693833:219335 +k1,11806:21260214,38693833:219336 +k1,11806:21894372,38693833:219315 +k1,11806:25024162,38693833:219336 +k1,11806:25774994,38693833:219335 +k1,11806:27862106,38693833:219336 +k1,11806:29886283,38693833:219315 +$1,11806:30093377,38693833 +k1,11806:32168087,38693833:0 +k1,11807:32583029,38693833:0 +) +(1,11807:6630773,39558913:25952256,530548,141067 +k1,11806:7045715,39558913:0 +k1,11806:7460657,39558913:0 +k1,11806:9120425,39558913:0 +k1,11806:9535367,39558913:0 +(1,11806:10365251,39657227:32768,0,0 +) +k1,11806:13302613,39558913:0 +k1,11806:13717555,39558913:0 +$1,11806:15377323,39558913 +k1,11806:15994848,39558913:236761 +k1,11806:17002312,39558913:236761 +k1,11806:20007314,39558913:236761 +k1,11806:21191726,39558913:236761 +k1,11806:26367936,39558913:236761 +k1,11806:27049648,39558913:236723 +k1,11806:29716484,39558913:236761 +k1,11806:32583029,39558913:0 +) +(1,11807:6630773,40423993:25952256,513147,134348 +k1,11806:9634645,40423993:138638 +k1,11806:12557253,40423993:138639 +k1,11806:15254417,40423993:138638 +k1,11806:17197857,40423993:138578 +k1,11806:18328056,40423993:138639 +k1,11806:22042994,40423993:138638 +k1,11806:22833061,40423993:138639 +k1,11806:24741826,40423993:138638 +k1,11806:25496502,40423993:138638 +k1,11806:26654226,40423993:138639 +k1,11806:28562991,40423993:138638 +k1,11806:29360922,40423993:138639 +k1,11806:30565831,40423993:138638 +k1,11806:32583029,40423993:0 +) +(1,11807:6630773,41289073:25952256,505283,134348 +k1,11806:7915228,41289073:152648 +k1,11806:9589623,41289073:152649 +k1,11806:11220763,41289073:152648 +k1,11806:12640877,41289073:152648 +k1,11806:13812611,41289073:152649 +k1,11806:16545411,41289073:152648 +k1,11806:17889504,41289073:152648 +k1,11806:19108423,41289073:152648 +k1,11806:21974263,41289073:152649 +k1,11806:22809796,41289073:152648 +k1,11806:25648765,41289073:152648 +k1,11806:29881030,41289073:152649 +k1,11806:31591469,41289073:152648 +k1,11806:32583029,41289073:0 +) +(1,11807:6630773,42154153:25952256,505283,134348 +k1,11806:8782824,42154153:192525 +k1,11806:10693047,42154153:192524 +k1,11806:11571734,42154153:192525 +k1,11806:13144446,42154153:192524 +k1,11806:14673905,42154153:192525 +k1,11806:17238177,42154153:192524 +k1,11806:18240072,42154153:192525 +k1,11806:20134566,42154153:192524 +k1,11806:23237545,42154153:192525 +k1,11806:25438092,42154153:192524 +k1,11806:27126804,42154153:192525 +k1,11806:28451790,42154153:192524 +k1,11806:30884991,42154153:192525 +k1,11806:32583029,42154153:0 +) +(1,11807:6630773,43019233:25952256,513147,134348 +k1,11806:9646030,43019233:204418 +k1,11806:11047135,43019233:204418 +k1,11806:13737334,43019233:204418 +k1,11806:14601044,43019233:204418 +k1,11806:17715916,43019233:204418 +k1,11806:20704303,43019233:204418 +k1,11806:23467247,43019233:204418 +k1,11806:25476522,43019233:204413 +k1,11806:26293702,43019233:204418 +k1,11806:27517205,43019233:204418 +k1,11806:29147031,43019233:204418 +k1,11806:30010741,43019233:204418 +k1,11806:32583029,43019233:0 +) +(1,11807:6630773,43884313:25952256,485622,11795 +g1,11806:8037175,43884313 +k1,11807:32583028,43884313:22379888 +g1,11807:32583028,43884313 +) +(1,11809:6630773,44749393:25952256,530548,132809 +h1,11808:6630773,44749393:983040,0,0 +k1,11808:8403382,44749393:301981 +k1,11808:9806471,44749393:302084 +k1,11808:13391910,44749393:302085 +k1,11808:14641645,44749393:302084 +k1,11808:19601373,44749393:302084 +k1,11808:21297408,44749393:302084 +k1,11808:22014232,44749393:301981 +k1,11808:22847814,44749393:302085 +k1,11808:27396631,44749393:302084 +$1,11808:27603725,44749393 +k1,11808:29678435,44749393:0 +k1,11808:30093377,44749393:0 +k1,11808:30508319,44749393:0 +k1,11808:30923261,44749393:0 +k1,11808:32168087,44749393:0 +k1,11809:32583029,44749393:0 +) +(1,11809:6630773,45614473:25952256,530548,141067 +k1,11808:11610077,45614473:0 +k1,11808:12025019,45614473:0 +$1,11808:13684787,45614473 +k1,11808:14287262,45614473:221711 +k1,11808:17870969,45614473:221710 +k1,11808:21003134,45614473:221711 +k1,11808:22509350,45614473:221710 +k1,11808:24168266,45614473:221711 +k1,11808:26057212,45614473:221710 +k1,11808:28478311,45614473:221711 +k1,11808:30395437,45614473:221710 +k1,11808:32583029,45614473:0 +) +] +(1,11809:32583029,45706769:0,0,0 +g1,11809:32583029,45706769 +) +) +] +(1,11809:6630773,47279633:25952256,0,0 +h1,11809:6630773,47279633:25952256,0,0 +) +] +(1,11809:4262630,4025873:0,0,0 +[1,11809:-473656,4025873:0,0,0 +(1,11809:-473656,-710413:0,0,0 +(1,11809:-473656,-710413:0,0,0 +g1,11809:-473656,-710413 +) +g1,11809:-473656,-710413 +) +] +) +] +!22149 +}187 +Input:1729:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1730:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1731:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1732:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1733:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1734:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!576 +{188 +[1,11834:4262630,47279633:28320399,43253760,0 +(1,11834:4262630,4025873:0,0,0 +[1,11834:-473656,4025873:0,0,0 +(1,11834:-473656,-710413:0,0,0 +(1,11834:-473656,-644877:0,0,0 +k1,11834:-473656,-644877:-65536 ) -] -[1,12350:3078558,4812305:0,0,0 -(1,12350:3078558,2439708:0,1703936,0 -g1,12350:29030814,2439708 -g1,12350:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,12350:36151628,1915420:16384,1179648,0 +(1,11834:-473656,4736287:0,0,0 +k1,11834:-473656,4736287:5209943 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +g1,11834:-473656,-710413 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,12350:37855564,2439708:1179648,16384,0 +[1,11834:6630773,47279633:25952256,43253760,0 +[1,11834:6630773,4812305:25952256,786432,0 +(1,11834:6630773,4812305:25952256,505283,134348 +(1,11834:6630773,4812305:25952256,505283,134348 +g1,11834:3078558,4812305 +[1,11834:3078558,4812305:0,0,0 +(1,11834:3078558,2439708:0,1703936,0 +k1,11834:1358238,2439708:-1720320 +(1,11038:1358238,2439708:1720320,1703936,0 +(1,11038:1358238,2439708:1179648,16384,0 +r1,11834:2537886,2439708:1179648,16384,0 ) +g1,11038:3062174,2439708 +(1,11038:3062174,2439708:16384,1703936,0 +[1,11038:3062174,2439708:25952256,1703936,0 +(1,11038:3062174,1915420:25952256,1179648,0 +(1,11038:3062174,1915420:16384,1179648,0 +r1,11834:3078558,1915420:16384,1179648,0 ) -k1,12350:3078556,2439708:-34777008 +k1,11038:29014430,1915420:25935872 +g1,11038:29014430,1915420 ) ] -[1,12350:3078558,4812305:0,0,0 -(1,12350:3078558,49800853:0,16384,2228224 -k1,12350:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,12350:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,12350:3078558,51504789:16384,1179648,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 ) ] +[1,11834:3078558,4812305:0,0,0 +(1,11834:3078558,2439708:0,1703936,0 +g1,11834:29030814,2439708 +g1,11834:36135244,2439708 +(1,11038:36135244,2439708:1720320,1703936,0 +(1,11038:36135244,2439708:16384,1703936,0 +[1,11038:36135244,2439708:25952256,1703936,0 +(1,11038:36135244,1915420:25952256,1179648,0 +(1,11038:36135244,1915420:16384,1179648,0 +r1,11834:36151628,1915420:16384,1179648,0 ) -) +k1,11038:62087500,1915420:25935872 +g1,11038:62087500,1915420 ) ] -[1,12350:3078558,4812305:0,0,0 -(1,12350:3078558,49800853:0,16384,2228224 -g1,12350:29030814,49800853 -g1,12350:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,12350:36151628,51504789:16384,1179648,0 -) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 -) -] -) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,12350:37855564,49800853:1179648,16384,0 -) -) -k1,12350:3078556,49800853:-34777008 -) -] -g1,12350:6630773,4812305 -k1,12350:19540057,4812305:11713907 -g1,12350:21162728,4812305 -g1,12350:21985204,4812305 -g1,12350:24539797,4812305 -g1,12350:25949476,4812305 -g1,12350:28728857,4812305 -g1,12350:29852144,4812305 -) -) -] -[1,12350:6630773,45706769:25952256,40108032,0 -(1,12350:6630773,45706769:25952256,40108032,0 -(1,12350:6630773,45706769:0,0,0 -g1,12350:6630773,45706769 -) -[1,12350:6630773,45706769:25952256,40108032,0 -(1,12296:6630773,6254097:25952256,555811,139133 -(1,12296:6630773,6254097:2450326,534184,12975 -g1,12296:6630773,6254097 -g1,12296:9081099,6254097 -) -g1,12296:12629350,6254097 -$1,12296:12629350,6254097 -$1,12296:13144791,6254097 -g1,12296:13369711,6254097 -g1,12296:14936939,6254097 -g1,12296:19309895,6254097 -$1,12296:19309895,6254097 -$1,12296:19813801,6254097 -k1,12296:32583029,6254097:12769228 -g1,12296:32583029,6254097 -) -(1,12302:6630773,7488801:25952256,513147,126483 -k1,12301:7773109,7488801:188787 -k1,12301:9054382,7488801:188788 -k1,12301:10262254,7488801:188787 -k1,12301:12104514,7488801:188787 -k1,12301:15319099,7488801:188788 -k1,12301:16194048,7488801:188787 -k1,12301:17330486,7488801:188787 -k1,12301:20529998,7488801:188788 -$1,12301:20529998,7488801 -$1,12301:20974987,7488801 -k1,12301:21163774,7488801:188787 -k1,12301:22424730,7488801:188787 -k1,12301:25510865,7488801:188788 -k1,12301:28089095,7488801:188787 -k1,12301:29296967,7488801:188787 -k1,12301:30578240,7488801:188788 -k1,12301:31426319,7488801:188787 -k1,12301:32583029,7488801:0 -) -(1,12302:6630773,8330289:25952256,513147,134348 -g1,12301:7489294,8330289 -g1,12301:9385250,8330289 -g1,12301:12369104,8330289 -g1,12301:13329861,8330289 -g1,12301:15956544,8330289 -g1,12301:17347218,8330289 -k1,12302:32583029,8330289:11989813 -g1,12302:32583029,8330289 -) -v1,12304:6630773,9472365:0,393216,0 -(1,12317:6630773,12416190:25952256,3337041,196608 -g1,12317:6630773,12416190 -g1,12317:6630773,12416190 -g1,12317:6434165,12416190 -(1,12317:6434165,12416190:0,3337041,196608 -r1,12350:32779637,12416190:26345472,3533649,196608 -k1,12317:6434165,12416190:-26345472 -) -(1,12317:6434165,12416190:26345472,3337041,196608 -[1,12317:6630773,12416190:25952256,3140433,0 -(1,12306:6630773,9686275:25952256,410518,101187 -(1,12305:6630773,9686275:0,0,0 -g1,12305:6630773,9686275 -g1,12305:6630773,9686275 -g1,12305:6303093,9686275 -(1,12305:6303093,9686275:0,0,0 -) -g1,12305:6630773,9686275 -) -k1,12306:6630773,9686275:0 -g1,12306:8527648,9686275 -g1,12306:9159940,9686275 -g1,12306:12953689,9686275 -g1,12306:13585981,9686275 -g1,12306:14218273,9686275 -g1,12306:17695877,9686275 -g1,12306:19908897,9686275 -g1,12306:20541189,9686275 -h1,12306:23702646,9686275:0,0,0 -k1,12306:32583029,9686275:8880383 -g1,12306:32583029,9686275 -) -(1,12310:6630773,10352453:25952256,404226,76021 -(1,12308:6630773,10352453:0,0,0 -g1,12308:6630773,10352453 -g1,12308:6630773,10352453 -g1,12308:6303093,10352453 -(1,12308:6303093,10352453:0,0,0 -) -g1,12308:6630773,10352453 -) -g1,12310:7579210,10352453 -g1,12310:8843793,10352453 -h1,12310:11689104,10352453:0,0,0 -k1,12310:32583028,10352453:20893924 -g1,12310:32583028,10352453 -) -(1,12312:6630773,11673991:25952256,410518,101187 -(1,12311:6630773,11673991:0,0,0 -g1,12311:6630773,11673991 -g1,12311:6630773,11673991 -g1,12311:6303093,11673991 -(1,12311:6303093,11673991:0,0,0 -) -g1,12311:6630773,11673991 -) -k1,12312:6630773,11673991:0 -g1,12312:8527648,11673991 -g1,12312:9159940,11673991 -g1,12312:12953689,11673991 -g1,12312:13585981,11673991 -g1,12312:14218273,11673991 -g1,12312:17695877,11673991 -g1,12312:19908897,11673991 -g1,12312:20541189,11673991 -h1,12312:24018792,11673991:0,0,0 -k1,12312:32583029,11673991:8564237 -g1,12312:32583029,11673991 -) -(1,12316:6630773,12340169:25952256,404226,76021 -(1,12314:6630773,12340169:0,0,0 -g1,12314:6630773,12340169 -g1,12314:6630773,12340169 -g1,12314:6303093,12340169 -(1,12314:6303093,12340169:0,0,0 -) -g1,12314:6630773,12340169 -) -g1,12316:7579210,12340169 -g1,12316:8843793,12340169 -h1,12316:11689104,12340169:0,0,0 -k1,12316:32583028,12340169:20893924 -g1,12316:32583028,12340169 -) -] -) -g1,12317:32583029,12416190 -g1,12317:6630773,12416190 -g1,12317:6630773,12416190 -g1,12317:32583029,12416190 -g1,12317:32583029,12416190 -) -h1,12317:6630773,12612798:0,0,0 -(1,12321:6630773,13930185:25952256,513147,115847 -h1,12320:6630773,13930185:983040,0,0 -k1,12320:10655031,13930185:251350 -(1,12320:10655031,13930185:0,452978,115847 -r1,12350:14178703,13930185:3523672,568825,115847 -k1,12320:10655031,13930185:-3523672 -) -(1,12320:10655031,13930185:3523672,452978,115847 -k1,12320:10655031,13930185:3277 -h1,12320:14175426,13930185:0,411205,112570 -) -k1,12320:14603724,13930185:251351 -k1,12320:17945097,13930185:251350 -k1,12320:20225443,13930185:251351 -k1,12320:21762609,13930185:251350 -k1,12320:24025914,13930185:251350 -k1,12320:25296350,13930185:251351 -k1,12320:27572762,13930185:251350 -k1,12320:28483405,13930185:251351 -k1,12320:31189078,13930185:251350 -k1,12320:32583029,13930185:0 -) -(1,12321:6630773,14771673:25952256,513147,126483 -g1,12320:7849087,14771673 -g1,12320:9701789,14771673 -g1,12320:11985063,14771673 -g1,12320:12870454,14771673 -g1,12320:15145208,14771673 -g1,12320:16292088,14771673 -(1,12320:16292088,14771673:0,452978,115847 -r1,12350:18057201,14771673:1765113,568825,115847 -k1,12320:16292088,14771673:-1765113 -) -(1,12320:16292088,14771673:1765113,452978,115847 -k1,12320:16292088,14771673:3277 -h1,12320:18053924,14771673:0,411205,112570 -) -k1,12321:32583029,14771673:14352158 -g1,12321:32583029,14771673 -) -v1,12323:6630773,16089059:0,393216,0 -(1,12324:6630773,19180409:25952256,3484566,0 -g1,12324:6630773,19180409 -g1,12324:6303093,19180409 -r1,12350:6401397,19180409:98304,3484566,0 -g1,12324:6600626,19180409 -g1,12324:6797234,19180409 -[1,12324:6797234,19180409:25785795,3484566,0 -(1,12324:6797234,16521597:25785795,825754,196608 -(1,12323:6797234,16521597:0,825754,196608 -r1,12350:7890375,16521597:1093141,1022362,196608 -k1,12323:6797234,16521597:-1093141 -) -(1,12323:6797234,16521597:1093141,825754,196608 -) -k1,12323:8093358,16521597:202983 -k1,12323:9411287,16521597:327680 -k1,12323:11787443,16521597:202982 -k1,12323:13009511,16521597:202983 -k1,12323:15772986,16521597:202983 -k1,12323:16592007,16521597:202983 -k1,12323:17814074,16521597:202982 -k1,12323:21667412,16521597:202983 -k1,12323:25807143,16521597:202983 -k1,12323:28039121,16521597:202983 -k1,12323:29314272,16521597:202982 -k1,12323:30847636,16521597:202983 -k1,12323:32583029,16521597:0 -) -(1,12324:6797234,17363085:25785795,513147,126483 -k1,12323:11863952,17363085:161348 -k1,12323:14983596,17363085:161349 -k1,12323:16565765,17363085:161348 -k1,12323:18220023,17363085:161348 -k1,12323:19400456,17363085:161348 -k1,12323:23368791,17363085:161349 -k1,12323:25568309,17363085:161348 -k1,12323:26345695,17363085:161348 -k1,12323:27526129,17363085:161349 -k1,12323:30466204,17363085:161348 -(1,12323:30466204,17363085:0,452978,115847 -r1,12350:32583029,17363085:2116825,568825,115847 -k1,12323:30466204,17363085:-2116825 -) -(1,12323:30466204,17363085:2116825,452978,115847 -k1,12323:30466204,17363085:3277 -h1,12323:32579752,17363085:0,411205,112570 -) -k1,12323:32583029,17363085:0 -) -(1,12324:6797234,18204573:25785795,513147,134348 -k1,12323:8780244,18204573:239752 -k1,12323:12381994,18204573:239753 -k1,12323:13431116,18204573:239752 -k1,12323:14689953,18204573:239752 -k1,12323:17557700,18204573:239753 -k1,12323:18988897,18204573:239752 -k1,12323:20559030,18204573:239752 -k1,12323:21903065,18204573:239753 -k1,12323:23011169,18204573:239752 -k1,12323:25454897,18204573:239752 -k1,12323:29501636,18204573:239753 -k1,12323:31563944,18204573:239752 -k1,12323:32583029,18204573:0 -) -(1,12324:6797234,19046061:25785795,513147,134348 -g1,12323:9450786,19046061 -g1,12323:11163241,19046061 -g1,12323:12310121,19046061 -g1,12323:15980792,19046061 -g1,12323:16839313,19046061 -g1,12323:18057627,19046061 -g1,12323:21737473,19046061 -g1,12323:23504323,19046061 -g1,12323:24722637,19046061 -g1,12323:27700593,19046061 -k1,12324:32583029,19046061:2749239 -g1,12324:32583029,19046061 -) -] -g1,12324:32583029,19180409 -) -h1,12324:6630773,19180409:0,0,0 -(1,12327:6630773,22463875:25952256,32768,229376 -(1,12327:6630773,22463875:0,32768,229376 -(1,12327:6630773,22463875:5505024,32768,229376 -r1,12350:12135797,22463875:5505024,262144,229376 -) -k1,12327:6630773,22463875:-5505024 -) -(1,12327:6630773,22463875:25952256,32768,0 -r1,12350:32583029,22463875:25952256,32768,0 -) -) -(1,12327:6630773,24068203:25952256,615776,161218 -(1,12327:6630773,24068203:1974731,582746,14155 -g1,12327:6630773,24068203 -g1,12327:8605504,24068203 -) -g1,12327:11257353,24068203 -g1,12327:13884036,24068203 -g1,12327:14899320,24068203 -k1,12327:32583030,24068203:17141072 -g1,12327:32583030,24068203 -) -(1,12330:6630773,25302907:25952256,513147,134348 -k1,12329:8097910,25302907:270450 -k1,12329:10701442,25302907:270450 -k1,12329:13956402,25302907:270450 -k1,12329:14878280,25302907:270450 -k1,12329:17136437,25302907:270450 -k1,12329:19341509,25302907:270449 -k1,12329:20227997,25302907:270450 -k1,12329:20913219,25302907:270379 -k1,12329:21715166,25302907:270450 -k1,12329:22637044,25302907:270450 -k1,12329:25610198,25302907:270449 -k1,12329:26899733,25302907:270450 -k1,12329:29092354,25302907:270450 -k1,12329:31297427,25302907:270450 -k1,12329:32227169,25302907:270450 -k1,12329:32583029,25302907:0 -) -(1,12330:6630773,26144395:25952256,513147,134348 -k1,12329:8803511,26144395:185031 -k1,12329:10556163,26144395:185031 -k1,12329:11760279,26144395:185031 -k1,12329:15260776,26144395:185031 -k1,12329:16105099,26144395:185031 -k1,12329:17309216,26144395:185032 -k1,12329:19206703,26144395:185031 -k1,12329:21553111,26144395:185031 -k1,12329:22225716,26144395:185017 -k1,12329:24398454,26144395:185031 -k1,12329:26518108,26144395:185031 -k1,12329:29398635,26144395:185031 -k1,12329:32583029,26144395:0 -) -(1,12330:6630773,26985883:25952256,513147,126483 -k1,12329:9452356,26985883:199488 -k1,12329:10007704,26985883:199488 -k1,12329:13816915,26985883:199488 -k1,12329:14675695,26985883:199488 -k1,12329:15894268,26985883:199488 -k1,12329:18081463,26985883:199488 -k1,12329:18932379,26985883:199488 -k1,12329:19993010,26985883:199488 -k1,12329:20878660,26985883:199488 -k1,12329:21434008,26985883:199488 -k1,12329:23621203,26985883:199488 -(1,12329:23621203,26985883:0,459977,115847 -r1,12350:26089740,26985883:2468537,575824,115847 -k1,12329:23621203,26985883:-2468537 -) -(1,12329:23621203,26985883:2468537,459977,115847 -k1,12329:23621203,26985883:3277 -h1,12329:26086463,26985883:0,411205,112570 -) -k1,12329:26289228,26985883:199488 -k1,12329:27680161,26985883:199488 -k1,12329:28235509,26985883:199488 -k1,12329:29824360,26985883:199488 -k1,12329:31900144,26985883:199488 -k1,12329:32583029,26985883:0 -) -(1,12330:6630773,27827371:25952256,513147,7863 -k1,12329:9179770,27827371:240819 -k1,12329:10814541,27827371:240820 -k1,12329:12074445,27827371:240819 -k1,12329:13704628,27827371:240820 -k1,12329:14628332,27827371:240819 -k1,12329:18940904,27827371:240820 -k1,12329:19833151,27827371:240819 -k1,12329:21959442,27827371:240820 -k1,12329:22851689,27827371:240819 -k1,12329:23779982,27827371:240820 -k1,12329:25039886,27827371:240819 -k1,12329:27442083,27827371:240820 -k1,12329:29557232,27827371:240819 -k1,12329:32583029,27827371:0 -) -(1,12330:6630773,28668859:25952256,513147,134348 -k1,12329:7489531,28668859:242720 -k1,12329:8147051,28668859:242677 -k1,12329:10400416,28668859:242720 -k1,12329:10998996,28668859:242720 -k1,12329:13229424,28668859:242721 -k1,12329:14159617,28668859:242720 -k1,12329:16535534,28668859:242720 -k1,12329:18159098,28668859:242720 -k1,12329:20361345,28668859:242721 -k1,12329:23306114,28668859:242720 -k1,12329:24567919,28668859:242720 -k1,12329:26373673,28668859:242720 -k1,12329:27635479,28668859:242721 -k1,12329:29865906,28668859:242720 -k1,12329:32583029,28668859:0 -) -(1,12330:6630773,29510347:25952256,513147,134348 -k1,12329:7922768,29510347:192301 -k1,12329:9306515,29510347:192302 -k1,12329:10517901,29510347:192301 -k1,12329:12553074,29510347:192301 -k1,12329:13404667,29510347:192301 -k1,12329:15531592,29510347:192302 -k1,12329:16742978,29510347:192301 -k1,12329:19096656,29510347:192301 -k1,12329:20117988,29510347:192302 -k1,12329:22615190,29510347:192301 -k1,12329:24010732,29510347:192301 -k1,12329:26190740,29510347:192301 -k1,12329:28614543,29510347:192302 -k1,12329:31591469,29510347:192301 -k1,12329:32583029,29510347:0 -) -(1,12330:6630773,30351835:25952256,513147,134348 -g1,12329:9787642,30351835 -g1,12329:10614706,30351835 -g1,12329:11833020,30351835 -g1,12329:14648446,30351835 -g1,12329:15716027,30351835 -g1,12329:17575938,30351835 -g1,12329:18794252,30351835 -g1,12329:21146994,30351835 -g1,12329:24330733,30351835 -g1,12329:26043188,30351835 -g1,12329:26929890,30351835 -g1,12329:29447127,30351835 -g1,12329:30297784,30351835 -k1,12330:32583029,30351835:722211 -g1,12330:32583029,30351835 -) -(1,12345:6630773,35014040:25952256,3867448,0 -k1,12345:7763531,35014040:1132758 -(1,12331:7763531,35014040:0,0,0 -g1,12331:7763531,35014040 -g1,12331:7763531,35014040 -g1,12331:7435851,35014040 -(1,12331:7435851,35014040:0,0,0 -) -g1,12331:7763531,35014040 -) -(1,12343:7763531,35014040:23686741,3867448,0 -g1,12343:10665772,35014040 -(1,12343:10665772,31775046:0,0,0 -(1,12343:10665772,31775046:0,0,0 -g1,12333:10665772,31775046 -(1,12334:10665772,31775046:0,0,0 -(1,12334:10665772,31775046:0,0,0 -g1,12334:10665772,31775046 -g1,12334:10665772,31775046 -g1,12334:10665772,31775046 -g1,12334:10665772,31775046 -g1,12334:10665772,31775046 -(1,12334:10665772,31775046:0,0,0 -(1,12334:10665772,31775046:5385094,461832,113835 -(1,12334:10665772,31775046:5385094,461832,113835 -g1,12334:12566775,31775046 -) -g1,12334:16050866,31775046 -) -) -g1,12334:10665772,31775046 -g1,12334:10665772,31775046 -) -) -g1,12334:10665772,31775046 -g1,12335:10665772,31775046 -(1,12335:10665772,31775046:0,0,0 -(1,12335:10665772,31775046:0,0,0 -g1,12335:10665772,31775046 -g1,12335:10665772,31775046 -g1,12335:10665772,31775046 -g1,12335:10665772,31775046 -g1,12335:10665772,31775046 -(1,12335:10665772,31775046:0,0,0 -(1,12335:10665772,31775046:3574334,454754,7077 -(1,12335:10665772,31775046:3574334,454754,7077 -) -g1,12335:14240106,31775046 -) -) -g1,12335:10665772,31775046 -g1,12335:10665772,31775046 -) -) -(1,12336:10665772,31775046:0,0,0 -(1,12336:10665772,31775046:0,0,0 -g1,12336:10665772,31775046 -g1,12336:10665772,31775046 -g1,12336:10665772,31775046 -g1,12336:10665772,31775046 -g1,12336:10665772,31775046 -(1,12336:10665772,31775046:0,0,0 -(1,12336:10665772,31775046:4207806,461832,120913 -(1,12336:10665772,31775046:4207806,461832,120913 -g1,12336:12534925,31775046 -) -g1,12336:14873578,31775046 -) -) -g1,12336:10665772,31775046 -g1,12336:10665772,31775046 -) -) -g1,12336:10665772,31775046 -(1,12337:10665772,31775046:0,0,0 -(1,12337:10665772,31775046:0,0,0 -g1,12337:10665772,31775046 -g1,12337:10665772,31775046 -g1,12337:10665772,31775046 -g1,12337:10665772,31775046 -g1,12337:10665772,31775046 -(1,12337:10665772,31775046:0,0,0 -(1,12337:10665772,31775046:3387360,461832,113835 -(1,12337:10665772,31775046:3387360,461832,113835 -g1,12337:12301355,31775046 -) -g1,12337:14053132,31775046 -) -) -g1,12337:10665772,31775046 -g1,12337:10665772,31775046 -) -) -g1,12337:10665772,31775046 -(1,12338:10665772,31775046:0,0,0 -(1,12338:10665772,31775046:0,0,0 -g1,12338:10665772,31775046 -g1,12338:10665772,31775046 -g1,12338:10665772,31775046 -g1,12338:10665772,31775046 -g1,12338:10665772,31775046 -(1,12338:10665772,31775046:0,0,0 -(1,12338:10665772,31775046:4229039,454754,113835 -(1,12338:10665772,31775046:4229039,454754,113835 -g1,12338:12481841,31775046 -) -g1,12338:14894811,31775046 -) -) -g1,12338:10665772,31775046 -g1,12338:10665772,31775046 -) -) -g1,12338:10665772,31775046 -g1,12339:10665772,31775046 -g1,12339:10665772,31775046 -g1,12339:10665772,31775046 -g1,12339:10665772,31775046 -g1,12339:10665772,31775046 -g1,12339:10665772,31775046 -g1,12340:10665772,31775046 -g1,12340:10665772,31775046 -g1,12340:10665772,31775046 -g1,12340:10665772,31775046 -g1,12340:10665772,31775046 -g1,12340:10665772,31775046 -g1,12341:10665772,31775046 -g1,12341:10665772,31775046 -g1,12341:10665772,31775046 -g1,12341:10665772,31775046 -g1,12341:10665772,31775046 -g1,12341:10665772,31775046 -g1,12342:10665772,31775046 -g1,12342:10665772,31775046 -g1,12342:10665772,31775046 -g1,12342:10665772,31775046 -g1,12342:10665772,31775046 -g1,12342:10665772,31775046 -g1,12343:10665772,31775046 -g1,12343:10665772,31775046 -) -g1,12343:10665772,31775046 -) -) -g1,12345:31450272,35014040 -k1,12345:32583029,35014040:1132757 -) -(1,12348:6630773,36450401:25952256,513147,138281 -h1,12347:6630773,36450401:983040,0,0 -k1,12347:10067582,36450401:192122 -k1,12347:11251264,36450401:192122 -k1,12347:14533410,36450401:192123 -k1,12347:16460925,36450401:192122 -k1,12347:18640754,36450401:192122 -k1,12347:21706630,36450401:192122 -k1,12347:23392318,36450401:192122 -k1,12347:24270603,36450401:192123 -h1,12347:24270603,36450401:0,0,0 -k1,12347:25046870,36450401:381085 -k1,12347:25823137,36450401:381085 -k1,12347:26410441,36450401:192122 -k1,12347:28488034,36450401:192122 -k1,12347:29548509,36450401:192123 -k1,12347:31152932,36450401:192122 -k1,12347:32031216,36450401:192122 -$1,12347:32031216,36450401 -$1,12347:32583029,36450401 -k1,12348:32583029,36450401:0 -) -(1,12348:6630773,37291889:25952256,513147,134348 -k1,12347:7394158,37291889:231888 -k1,12347:10704272,37291889:231888 -k1,12347:11697689,37291889:231889 -$1,12347:11697689,37291889 -$1,12347:12200350,37291889 -k1,12347:12605908,37291889:231888 -k1,12347:13791345,37291889:231888 -k1,12347:15115718,37291889:231888 -k1,12347:16297878,37291889:231888 -k1,12347:21349939,37291889:231888 -k1,12347:22773273,37291889:231889 -k1,12347:24038664,37291889:231888 -k1,12347:29552098,37291889:231888 -k1,12347:30435414,37291889:231888 -k1,12347:32583029,37291889:0 -) -(1,12348:6630773,38133377:25952256,513147,134348 -k1,12347:7580552,38133377:183663 -k1,12347:9607088,38133377:183664 -k1,12347:10442179,38133377:183663 -k1,12347:11644927,38133377:183663 -k1,12347:12902726,38133377:183664 -k1,12347:14277834,38133377:183663 -k1,12347:15997006,38133377:183663 -k1,12347:16839962,38133377:183664 -k1,12347:18042710,38133377:183663 -k1,12347:19657679,38133377:183663 -h1,12347:19864773,38133377:0,0,0 -k1,12347:20824383,38133377:183664 -k1,12347:24804547,38133377:183663 -h1,12347:25011641,38133377:0,0,0 -k1,12347:27351857,38133377:364306 -k1,12347:28111346,38133377:364307 -k1,12347:30651683,38133377:183663 -k1,12347:32583029,38133377:0 -) -(1,12348:6630773,38974865:25952256,513147,134348 -k1,12347:9727786,38974865:223259 -k1,12347:10942605,38974865:223259 -k1,12347:12679091,38974865:223260 -k1,12347:13518388,38974865:223259 -k1,12347:16503990,38974865:223259 -k1,12347:19600347,38974865:223259 -k1,12347:21758229,38974865:223259 -k1,12347:22640780,38974865:223259 -k1,12347:25355719,38974865:223260 -k1,12347:28277095,38974865:223259 -k1,12347:29691799,38974865:223259 -k1,12347:31436804,38974865:223259 -k1,12347:32583029,38974865:0 -) -(1,12348:6630773,39816353:25952256,513147,134348 -$1,12347:6951244,39816353 -k1,12347:8735735,39816353:206384 -k1,12347:10138807,39816353:206385 -k1,12347:12429236,39816353:206384 -k1,12347:13294912,39816353:206384 -k1,12347:15489003,39816353:206384 -k1,12347:18569142,39816353:206385 -k1,12347:19307023,39816353:206384 -k1,12347:22794139,39816353:206384 -k1,12347:26625319,39816353:206384 -k1,12347:28265632,39816353:206385 -k1,12347:28886852,39816353:206377 -k1,12347:30284681,39816353:206384 -k1,12348:32583029,39816353:0 -) -(1,12348:6630773,40657841:25952256,505283,134348 -k1,12347:8018498,40657841:248054 -k1,12347:12839653,40657841:248053 -k1,12347:16348778,40657841:248054 -k1,12347:19680956,40657841:248054 -k1,12347:22863712,40657841:248054 -k1,12347:24620404,40657841:248053 -k1,12347:25960943,40657841:248054 -k1,12347:26740494,40657841:248054 -k1,12347:28054818,40657841:248053 -k1,12347:31391584,40657841:248054 -k1,12347:32583029,40657841:0 -) -(1,12348:6630773,41499329:25952256,513147,134348 -k1,12347:9045502,41499329:183228 -k1,12347:12139183,41499329:183227 -k1,12347:14474613,41499329:183228 -k1,12347:15676925,41499329:183227 -k1,12347:17481514,41499329:183228 -k1,12347:19748786,41499329:183227 -k1,12347:20583442,41499329:183228 -k1,12347:22448324,41499329:183228 -k1,12347:23650636,41499329:183227 -k1,12347:27443587,41499329:183228 -k1,12347:28286106,41499329:183227 -k1,12347:30866641,41499329:183228 -k1,12347:32583029,41499329:0 -) -(1,12348:6630773,42340817:25952256,513147,134348 -k1,12347:7513018,42340817:222953 -k1,12347:10227651,42340817:222954 -k1,12347:11268493,42340817:222953 -k1,12347:13093147,42340817:222954 -k1,12347:15308394,42340817:222953 -k1,12347:16147385,42340817:222953 -k1,12347:16958852,42340817:222954 -k1,12347:19169512,42340817:222953 -k1,12347:22266220,42340817:222954 -k1,12347:23480733,42340817:222953 -k1,12347:25993514,42340817:222953 -k1,12347:27407913,42340817:222954 -k1,12347:28735148,42340817:222953 -k1,12347:29705868,42340817:222954 -k1,12347:31966991,42340817:222953 -k1,12347:32583029,42340817:0 -) -(1,12348:6630773,43182305:25952256,513147,134348 -k1,12347:9785424,43182305:139340 -k1,12347:10974650,43182305:139339 -k1,12347:13392677,43182305:139340 -h1,12347:14761724,43182305:0,0,0 -k1,12347:14901063,43182305:139339 -k1,12347:15849773,43182305:139340 -k1,12347:17487265,43182305:139339 -h1,12347:18682642,43182305:0,0,0 -k1,12347:18821982,43182305:139340 -k1,12347:19908972,43182305:139339 -k1,12347:20404172,43182305:139340 -k1,12347:23098760,43182305:139339 -k1,12347:26609927,43182305:139340 -k1,12347:27408558,43182305:139339 -k1,12347:29535605,43182305:139340 -k1,12348:32583029,43182305:0 -k1,12348:32583029,43182305:0 -) -(1,12350:6630773,44023793:25952256,513147,134348 -h1,12349:6630773,44023793:983040,0,0 -k1,12349:10852537,44023793:275841 -k1,12349:12783162,44023793:275841 -k1,12349:13590499,44023793:275840 -k1,12349:15558480,44023793:275841 -k1,12349:18833904,44023793:275841 -k1,12349:22217462,44023793:275841 -k1,12349:23440954,44023793:275841 -k1,12349:25429250,44023793:275840 -k1,12349:27692798,44023793:275841 -k1,12349:30201451,44023793:275841 -k1,12349:32583029,44023793:0 -) -(1,12350:6630773,44865281:25952256,513147,134348 -k1,12349:7498633,44865281:251822 -k1,12349:10822783,44865281:251822 -k1,12349:14158729,44865281:251822 -k1,12349:15026589,44865281:251822 -k1,12349:16880111,44865281:251822 -k1,12349:18829315,44865281:251822 -k1,12349:20100223,44865281:251823 -k1,12349:22170669,44865281:251822 -k1,12349:25330979,44865281:251822 -k1,12349:27763839,44865281:251822 -k1,12349:30696084,44865281:251822 -k1,12349:31563944,44865281:251822 -k1,12349:32583029,44865281:0 -) -(1,12350:6630773,45706769:25952256,505283,134348 -k1,12349:9912653,45706769:144672 -k1,12349:11217311,45706769:144671 -k1,12349:11978021,45706769:144672 -k1,12349:13141778,45706769:144672 -k1,12349:15902647,45706769:144672 -k1,12349:18384987,45706769:144671 -k1,12349:21314284,45706769:144672 -(1,12349:21314284,45706769:0,452978,115847 -r1,12350:24486244,45706769:3171960,568825,115847 -k1,12349:21314284,45706769:-3171960 -) -(1,12349:21314284,45706769:3171960,452978,115847 -k1,12349:21314284,45706769:3277 -h1,12349:24482967,45706769:0,411205,112570 -) -k1,12349:24804586,45706769:144672 -(1,12349:24804586,45706769:0,452978,115847 -r1,12350:27273123,45706769:2468537,568825,115847 -k1,12349:24804586,45706769:-2468537 -) -(1,12349:24804586,45706769:2468537,452978,115847 -k1,12349:24804586,45706769:3277 -h1,12349:27269846,45706769:0,411205,112570 -) -k1,12349:27417795,45706769:144672 -k1,12349:28753911,45706769:144671 -(1,12349:28753911,45706769:0,452978,115847 -r1,12350:30870736,45706769:2116825,568825,115847 -k1,12349:28753911,45706769:-2116825 -) -(1,12349:28753911,45706769:2116825,452978,115847 -k1,12349:28753911,45706769:3277 -h1,12349:30867459,45706769:0,411205,112570 -) -k1,12349:31189078,45706769:144672 -k1,12349:32583029,45706769:0 -) -] -(1,12350:32583029,45706769:0,0,0 -g1,12350:32583029,45706769 -) -) -] -(1,12350:6630773,47279633:25952256,0,0 -h1,12350:6630773,47279633:25952256,0,0 -) -] -(1,12350:4262630,4025873:0,0,0 -[1,12350:-473656,4025873:0,0,0 -(1,12350:-473656,-710413:0,0,0 -(1,12350:-473656,-710413:0,0,0 -g1,12350:-473656,-710413 -) -g1,12350:-473656,-710413 -) -] -) -] -!26509 -}211 -Input:1836:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1837:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1838:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1839:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1840:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1841:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1842:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1843:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1844:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1845:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1846:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1046 -{212 -[1,12396:4262630,47279633:28320399,43253760,0 -(1,12396:4262630,4025873:0,0,0 -[1,12396:-473656,4025873:0,0,0 -(1,12396:-473656,-710413:0,0,0 -(1,12396:-473656,-644877:0,0,0 -k1,12396:-473656,-644877:-65536 ) -(1,12396:-473656,4736287:0,0,0 -k1,12396:-473656,4736287:5209943 +g1,11038:36675916,2439708 +(1,11038:36675916,2439708:1179648,16384,0 +r1,11834:37855564,2439708:1179648,16384,0 ) -g1,12396:-473656,-710413 +) +k1,11834:3078556,2439708:-34777008 ) ] +[1,11834:3078558,4812305:0,0,0 +(1,11834:3078558,49800853:0,16384,2228224 +k1,11834:1358238,49800853:-1720320 +(1,11038:1358238,49800853:1720320,16384,2228224 +(1,11038:1358238,49800853:1179648,16384,0 +r1,11834:2537886,49800853:1179648,16384,0 +) +g1,11038:3062174,49800853 +(1,11038:3062174,52029077:16384,1703936,0 +[1,11038:3062174,52029077:25952256,1703936,0 +(1,11038:3062174,51504789:25952256,1179648,0 +(1,11038:3062174,51504789:16384,1179648,0 +r1,11834:3078558,51504789:16384,1179648,0 ) -[1,12396:6630773,47279633:25952256,43253760,0 -[1,12396:6630773,4812305:25952256,786432,0 -(1,12396:6630773,4812305:25952256,505283,134348 -(1,12396:6630773,4812305:25952256,505283,134348 -g1,12396:3078558,4812305 -[1,12396:3078558,4812305:0,0,0 -(1,12396:3078558,2439708:0,1703936,0 -k1,12396:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,12396:2537886,2439708:1179648,16384,0 +k1,11038:29014430,51504789:25935872 +g1,11038:29014430,51504789 +) +] +) +) +) +] +[1,11834:3078558,4812305:0,0,0 +(1,11834:3078558,49800853:0,16384,2228224 +g1,11834:29030814,49800853 +g1,11834:36135244,49800853 +(1,11038:36135244,49800853:1720320,16384,2228224 +(1,11038:36135244,52029077:16384,1703936,0 +[1,11038:36135244,52029077:25952256,1703936,0 +(1,11038:36135244,51504789:25952256,1179648,0 +(1,11038:36135244,51504789:16384,1179648,0 +r1,11834:36151628,51504789:16384,1179648,0 +) +k1,11038:62087500,51504789:25935872 +g1,11038:62087500,51504789 +) +] +) +g1,11038:36675916,49800853 +(1,11038:36675916,49800853:1179648,16384,0 +r1,11834:37855564,49800853:1179648,16384,0 +) +) +k1,11834:3078556,49800853:-34777008 +) +] +g1,11834:6630773,4812305 +g1,11834:6630773,4812305 +g1,11834:9714897,4812305 +k1,11834:31387653,4812305:21672756 +) +) +] +[1,11834:6630773,45706769:25952256,40108032,0 +(1,11834:6630773,45706769:25952256,40108032,0 +(1,11834:6630773,45706769:0,0,0 +g1,11834:6630773,45706769 +) +[1,11834:6630773,45706769:25952256,40108032,0 +(1,11809:6630773,6254097:25952256,505283,134348 +k1,11808:7596137,6254097:194661 +k1,11808:11017792,6254097:194662 +k1,11808:12915539,6254097:194661 +k1,11808:16194325,6254097:194662 +k1,11808:20859197,6254097:194661 +k1,11808:22154863,6254097:194661 +k1,11808:25959903,6254097:194662 +k1,11808:29411703,6254097:194661 +k1,11808:30797810,6254097:194662 +k1,11808:31348331,6254097:194661 +k1,11809:32583029,6254097:0 +) +(1,11809:6630773,7119177:25952256,513147,134348 +k1,11808:8057438,7119177:202452 +k1,11808:9207541,7119177:202452 +k1,11808:10906179,7119177:202451 +k1,11808:12512412,7119177:202452 +k1,11808:14777282,7119177:202452 +k1,11808:15927385,7119177:202452 +k1,11808:16574822,7119177:202448 +k1,11808:19861398,7119177:202452 +k1,11808:21938180,7119177:202452 +k1,11808:26587904,7119177:202451 +k1,11808:29700810,7119177:202452 +k1,11808:30894822,7119177:202452 +k1,11809:32583029,7119177:0 +) +(1,11809:6630773,7984257:25952256,505283,134348 +k1,11808:8179035,7984257:239508 +k1,11808:10977068,7984257:239507 +k1,11808:13021398,7984257:239468 +k1,11808:13943790,7984257:239507 +k1,11808:15885268,7984257:239508 +k1,11808:19925864,7984257:239508 +k1,11808:21356816,7984257:239507 +k1,11808:23357932,7984257:239508 +k1,11808:24210202,7984257:239508 +k1,11808:25468794,7984257:239507 +k1,11808:30178513,7984257:239508 +k1,11808:32583029,7984257:0 +) +(1,11809:6630773,8849337:25952256,530548,141067 +$1,11808:6837867,8849337 +k1,11808:8912577,8849337:0 +k1,11808:9327519,8849337:0 +k1,11808:9742461,8849337:0 +k1,11808:10157403,8849337:0 +k1,11808:13476939,8849337:0 +k1,11808:13891881,8849337:0 +$1,11808:15551649,8849337 +k1,11808:16162434,8849337:230021 +k1,11808:17020290,8849337:230021 +k1,11808:18942450,8849337:230020 +k1,11808:20869853,8849337:230021 +k1,11808:22270347,8849337:230021 +k1,11808:23837302,8849337:230021 +k1,11808:25597589,8849337:230021 +k1,11808:26510495,8849337:230021 +k1,11808:28289131,8849337:230020 +k1,11808:29170580,8849337:230021 +k1,11808:31369958,8849337:230021 +k1,11808:32583029,8849337:0 +) +(1,11809:6630773,9714417:25952256,513147,126483 +k1,11808:8706845,9714417:180115 +k1,11808:10383146,9714417:180114 +k1,11808:12130882,9714417:180115 +k1,11808:13248816,9714417:180114 +k1,11808:17230019,9714417:180115 +k1,11808:18903699,9714417:180114 +k1,11808:19769976,9714417:180115 +k1,11808:22614130,9714417:180115 +k1,11808:23992898,9714417:180114 +k1,11808:26059139,9714417:180115 +k1,11808:30371298,9714417:180114 +k1,11808:31617684,9714417:180115 +k1,11808:32583029,9714417:0 +) +(1,11809:6630773,10579497:25952256,505283,134348 +k1,11808:10095602,10579497:216209 +k1,11808:10963239,10579497:216209 +k1,11808:13157981,10579497:216210 +k1,11808:15165944,10579497:216209 +k1,11808:16401238,10579497:216209 +k1,11808:19197599,10579497:216209 +k1,11808:22451401,10579497:216209 +k1,11808:23535962,10579497:216209 +k1,11808:24856454,10579497:216210 +k1,11808:27042020,10579497:216209 +k1,11808:30168683,10579497:216209 +k1,11808:32583029,10579497:0 +) +(1,11809:6630773,11444577:25952256,513147,126483 +k1,11808:8344182,11444577:145788 +k1,11808:10872858,11444577:145787 +k1,11808:13977597,11444577:145788 +k1,11808:15314830,11444577:145788 +k1,11808:17162587,11444577:145787 +k1,11808:18804562,11444577:145788 +k1,11808:22751437,11444577:145787 +k1,11808:24751894,11444577:145788 +k1,11808:25707052,11444577:145788 +k1,11808:26934838,11444577:145787 +k1,11808:31015408,11444577:145788 +k1,11808:32583029,11444577:0 +) +(1,11809:6630773,12309657:25952256,513147,126483 +k1,11808:8323076,12309657:196116 +k1,11808:12320281,12309657:196117 +k1,11808:13507957,12309657:196116 +k1,11808:15833338,12309657:196116 +k1,11808:19952440,12309657:196117 +k1,11808:21716177,12309657:196116 +k1,11808:24351543,12309657:196116 +k1,11808:25779737,12309657:196117 +k1,11808:28225049,12309657:196116 +k1,11808:28891058,12309657:196116 +k1,11808:29618672,12309657:196117 +k1,11808:30474080,12309657:196116 +k1,11808:32583029,12309657:0 +) +(1,11809:6630773,13174737:25952256,513147,134348 +g1,11808:8115818,13174737 +g1,11808:10945007,13174737 +g1,11808:11795664,13174737 +g1,11808:13964250,13174737 +g1,11808:17073933,13174737 +g1,11808:18840783,13174737 +g1,11808:20534233,13174737 +g1,11808:22046804,13174737 +g1,11808:23695689,13174737 +g1,11808:25408144,13174737 +g1,11808:25963233,13174737 +g1,11808:28528967,13174737 +k1,11809:32583029,13174737:545920 +g1,11809:32583029,13174737 +) +(1,11811:6630773,14039817:25952256,513147,134348 +h1,11810:6630773,14039817:983040,0,0 +k1,11810:9046008,14039817:160797 +k1,11810:10790811,14039817:160798 +k1,11810:12189583,14039817:160797 +k1,11810:13009673,14039817:160798 +k1,11810:15772249,14039817:160797 +k1,11810:17263428,14039817:160798 +k1,11810:18443310,14039817:160797 +k1,11810:22006736,14039817:160797 +k1,11810:25018350,14039817:160798 +k1,11810:25940675,14039817:160797 +k1,11810:26457333,14039817:160798 +k1,11810:29198282,14039817:160797 +k1,11810:31129207,14039817:160798 +k1,11810:31821501,14039817:160797 +k1,11810:32583029,14039817:0 +) +(1,11811:6630773,14904897:25952256,513147,134348 +k1,11810:11385864,14904897:155774 +k1,11810:12935589,14904897:155774 +k1,11810:14904089,14904897:155774 +k1,11810:16843098,14904897:155774 +k1,11810:18734265,14904897:155774 +k1,11810:19245899,14904897:155774 +k1,11810:22097168,14904897:155773 +k1,11810:23121294,14904897:155774 +k1,11810:24268628,14904897:155774 +k1,11810:25490673,14904897:155774 +k1,11810:26611792,14904897:155774 +k1,11810:29259900,14904897:155774 +k1,11810:30983295,14904897:155774 +k1,11811:32583029,14904897:0 +) +(1,11811:6630773,15769977:25952256,513147,134348 +k1,11810:7784862,15769977:163840 +k1,11810:8561464,15769977:163840 +k1,11810:9513702,15769977:163840 +k1,11810:11065594,15769977:163839 +k1,11810:11880862,15769977:163840 +k1,11810:13866603,15769977:163840 +k1,11810:14796559,15769977:163840 +k1,11810:15748797,15769977:163840 +k1,11810:18518348,15769977:163840 +k1,11810:19814650,15769977:163840 +k1,11810:22303052,15769977:163840 +k1,11810:23925722,15769977:163839 +k1,11810:27274612,15769977:163840 +k1,11810:28859273,15769977:163840 +k1,11810:30806348,15769977:163840 +k1,11811:32583029,15769977:0 +) +(1,11811:6630773,16635057:25952256,513147,134348 +k1,11810:10094940,16635057:201785 +k1,11810:10828223,16635057:201786 +k1,11810:13788418,16635057:201785 +k1,11810:15384154,16635057:201785 +k1,11810:18496394,16635057:201786 +k1,11810:20752077,16635057:201785 +k1,11810:22643380,16635057:201785 +k1,11810:27671236,16635057:201785 +k1,11810:28532314,16635057:201786 +k1,11810:31575085,16635057:201785 +k1,11811:32583029,16635057:0 +) +(1,11811:6630773,17500137:25952256,513147,134348 +k1,11810:8328090,17500137:202441 +k1,11810:9062027,17500137:202440 +k1,11810:12249633,17500137:202441 +k1,11810:14203850,17500137:202440 +k1,11810:17316745,17500137:202441 +k1,11810:20030526,17500137:202441 +k1,11810:20849004,17500137:202440 +k1,11810:23891120,17500137:202441 +k1,11810:28911112,17500137:202440 +k1,11810:30494397,17500137:202441 +k1,11810:32583029,17500137:0 +) +(1,11811:6630773,18365217:25952256,513147,134348 +k1,11810:7568418,18365217:254760 +k1,11810:10141843,18365217:254761 +k1,11810:11082765,18365217:254760 +k1,11810:14306961,18365217:254760 +k1,11810:15031614,18365217:254760 +k1,11810:15817872,18365217:254761 +k1,11810:17138903,18365217:254760 +k1,11810:19944324,18365217:254760 +k1,11810:20850512,18365217:254760 +k1,11810:23176211,18365217:254761 +k1,11810:25316442,18365217:254760 +k1,11810:28151354,18365217:254760 +k1,11810:29057542,18365217:254760 +k1,11810:30404788,18365217:254761 +k1,11810:32227169,18365217:254760 +k1,11810:32583029,18365217:0 +) +(1,11811:6630773,19230297:25952256,513147,126483 +k1,11810:7768578,19230297:203262 +k1,11810:8631133,19230297:203263 +k1,11810:12551597,19230297:203262 +k1,11810:14609529,19230297:203263 +k1,11810:15622161,19230297:203262 +k1,11810:16844508,19230297:203262 +k1,11810:19247159,19230297:203263 +k1,11810:20109713,19230297:203262 +k1,11810:23096944,19230297:203262 +k1,11810:28299949,19230297:203263 +k1,11810:29131046,19230297:203262 +k1,11810:30353394,19230297:203263 +k1,11810:31923737,19230297:203262 +k1,11810:32583029,19230297:0 +) +(1,11811:6630773,20095377:25952256,513147,134348 +k1,11810:9785414,20095377:244187 +k1,11810:12217193,20095377:244187 +k1,11810:15428851,20095377:244188 +k1,11810:16956233,20095377:244187 +k1,11810:21449774,20095377:244187 +k1,11810:23074149,20095377:244187 +k1,11810:24655270,20095377:244187 +k1,11810:25647224,20095377:244188 +k1,11810:29862237,20095377:244187 +k1,11810:30722462,20095377:244187 +k1,11810:32583029,20095377:0 +) +(1,11811:6630773,20960457:25952256,513147,126483 +k1,11810:7450573,20960457:203762 +k1,11810:8010195,20960457:203762 +k1,11810:9969668,20960457:203763 +k1,11810:13888011,20960457:203762 +k1,11810:17083492,20960457:203762 +k1,11810:18278814,20960457:203762 +k1,11810:22538599,20960457:203762 +k1,11810:24891942,20960457:203762 +k1,11810:25698636,20960457:203763 +k1,11810:26262191,20960457:203762 +k1,11810:27676403,20960457:203762 +k1,11810:29738111,20960457:203762 +k1,11810:32583029,20960457:0 +) +(1,11811:6630773,21825537:25952256,505283,102891 +k1,11810:8038593,21825537:216375 +k1,11810:9944487,21825537:216376 +k1,11810:12135513,21825537:216426 +k1,11810:14612311,21825537:216461 +k1,11810:18652056,21825537:216375 +k1,11810:20402630,21825537:216376 +k1,11810:24669130,21825537:216375 +k1,11810:26248654,21825537:216375 +k1,11810:26914606,21825537:216375 +k1,11810:29374280,21825537:216376 +k1,11810:31391584,21825537:216375 +k1,11810:32583029,21825537:0 +) +(1,11811:6630773,22690617:25952256,513147,134348 +g1,11810:9378697,22690617 +g1,11810:11918872,22690617 +g1,11810:14928940,22690617 +g1,11810:16052227,22690617 +g1,11810:17785654,22690617 +g1,11810:20630572,22690617 +g1,11810:23961111,22690617 +g1,11810:25351785,22690617 +g1,11810:27704527,22690617 +k1,11811:32583029,22690617:2903902 +g1,11811:32583029,22690617 +) +(1,11812:6630773,24807435:25952256,555811,104529 +(1,11812:6630773,24807435:2450326,534184,12975 +g1,11812:6630773,24807435 +g1,11812:9081099,24807435 +) +g1,11812:13170022,24807435 +g1,11812:17460075,24807435 +g1,11812:19027303,24807435 +k1,11812:32583029,24807435:12301367 +g1,11812:32583029,24807435 +) +(1,11816:6630773,26065731:25952256,505283,134348 +k1,11815:7429961,26065731:171353 +k1,11815:8016130,26065731:171326 +k1,11815:10207959,26065731:171354 +k1,11815:13080051,26065731:171353 +k1,11815:13782901,26065731:171353 +k1,11815:14973340,26065731:171354 +k1,11815:17701252,26065731:171353 +k1,11815:19791500,26065731:171354 +k1,11815:22873307,26065731:171353 +k1,11815:24036221,26065731:171354 +k1,11815:27118683,26065731:171353 +k1,11815:30155271,26065731:171354 +k1,11815:31318184,26065731:171353 +k1,11815:32583029,26065731:0 +) +(1,11816:6630773,26930811:25952256,513147,126483 +k1,11815:7549205,26930811:259140 +k1,11815:11007813,26930811:259140 +k1,11815:12458398,26930811:259140 +k1,11815:14280572,26930811:259140 +k1,11815:16937019,26930811:259140 +k1,11815:18143810,26930811:259140 +k1,11815:20095090,26930811:259140 +k1,11815:23475054,26930811:259140 +k1,11815:26524717,26930811:259140 +k1,11815:28068363,26930811:259140 +k1,11815:29431785,26930811:259140 +k1,11815:30438691,26930811:259140 +k1,11815:32583029,26930811:0 +) +(1,11816:6630773,27795891:25952256,505283,126483 +k1,11815:8168047,27795891:269808 +k1,11815:9208558,27795891:269808 +k1,11815:9893138,27795891:269737 +k1,11815:12511756,27795891:269808 +k1,11815:13432992,27795891:269808 +k1,11815:15418533,27795891:269808 +k1,11815:17327396,27795891:269808 +k1,11815:20381173,27795891:269808 +k1,11815:21375809,27795891:269808 +k1,11815:22930123,27795891:269808 +k1,11815:24580119,27795891:269808 +k1,11815:25954209,27795891:269808 +k1,11815:26971783,27795891:269808 +k1,11815:28754817,27795891:269808 +k1,11815:29640663,27795891:269808 +k1,11815:30929556,27795891:269808 +k1,11815:32583029,27795891:0 +) +(1,11816:6630773,28660971:25952256,513147,126483 +k1,11815:8116897,28660971:248149 +k1,11815:9051209,28660971:248150 +k1,11815:11606881,28660971:248149 +k1,11815:12269825,28660971:248101 +k1,11815:15543771,28660971:248149 +k1,11815:16983366,28660971:248150 +k1,11815:18794549,28660971:248149 +k1,11815:21832566,28660971:248149 +(1,11815:21832566,28660971:0,452978,115847 +r1,11834:25004526,28660971:3171960,568825,115847 +k1,11815:21832566,28660971:-3171960 +) +(1,11815:21832566,28660971:3171960,452978,115847 +k1,11815:21832566,28660971:3277 +h1,11815:25001249,28660971:0,411205,112570 +) +k1,11815:25252676,28660971:248150 +k1,11815:26032322,28660971:248149 +k1,11815:27793698,28660971:248150 +k1,11815:28693275,28660971:248149 +k1,11815:30317681,28660971:248150 +k1,11815:31757275,28660971:248149 +k1,11816:32583029,28660971:0 +) +(1,11816:6630773,29526051:25952256,513147,134348 +k1,11815:8175508,29526051:183552 +k1,11815:11269515,29526051:183553 +k1,11815:12737573,29526051:183552 +k1,11815:13912685,29526051:183552 +k1,11815:16430629,29526051:183552 +k1,11815:19351621,29526051:183553 +k1,11815:20151211,29526051:183552 +k1,11815:21353848,29526051:183552 +k1,11815:23031621,29526051:183552 +k1,11815:23630001,29526051:183537 +k1,11815:26087652,29526051:183552 +k1,11815:26899040,29526051:183553 +k1,11815:29887533,29526051:183552 +k1,11816:32583029,29526051:0 +) +(1,11816:6630773,30391131:25952256,505283,134348 +(1,11815:6630773,30391131:0,452978,122846 +r1,11834:12968140,30391131:6337367,575824,122846 +k1,11815:6630773,30391131:-6337367 +) +(1,11815:6630773,30391131:6337367,452978,122846 +k1,11815:6630773,30391131:3277 +h1,11815:12964863,30391131:0,411205,112570 +) +g1,11815:13167369,30391131 +g1,11815:13898095,30391131 +g1,11815:15610550,30391131 +g1,11815:16461207,30391131 +g1,11815:18629793,30391131 +k1,11816:32583029,30391131:10869112 +g1,11816:32583029,30391131 +) +v1,11818:6630773,31256211:0,393216,0 +(1,11831:6630773,39947887:25952256,9084892,0 +g1,11831:6630773,39947887 +g1,11831:6237557,39947887 +r1,11834:6368629,39947887:131072,9084892,0 +g1,11831:6567858,39947887 +g1,11831:6764466,39947887 +[1,11831:6764466,39947887:25818563,9084892,0 +(1,11819:6764466,31670753:25818563,807758,219026 +(1,11818:6764466,31670753:0,807758,219026 +r1,11834:7908217,31670753:1143751,1026784,219026 +k1,11818:6764466,31670753:-1143751 +) +(1,11818:6764466,31670753:1143751,807758,219026 +) +g1,11818:8107446,31670753 +g1,11818:8435126,31670753 +g1,11818:10143649,31670753 +g1,11818:11007413,31670753 +g1,11818:13242190,31670753 +g1,11818:14153795,31670753 +g1,11818:16629090,31670753 +g1,11818:17197942,31670753 +g1,11818:20102497,31670753 +g1,11818:21920465,31670753 +k1,11818:32583029,31670753:8356352 +g1,11819:32583029,31670753 +) +(1,11819:6764466,32535833:25818563,513147,134348 +k1,11818:8857861,32535833:213167 +k1,11818:9602539,32535833:213181 +k1,11818:10834806,32535833:213182 +k1,11818:13313567,32535833:213181 +k1,11818:16810102,32535833:213181 +k1,11818:17970934,32535833:213181 +k1,11818:18598944,32535833:213167 +k1,11818:21896250,32535833:213182 +k1,11818:22587188,32535833:213181 +k1,11818:23970842,32535833:213181 +k1,11818:25276508,32535833:213181 +k1,11818:27913867,32535833:213182 +k1,11818:28809933,32535833:213181 +k1,11818:31495787,32535833:213181 +k1,11818:32583029,32535833:0 +) +(1,11819:6764466,33400913:25818563,513147,134348 +k1,11818:7615891,33400913:165263 +k1,11818:9400548,33400913:165262 +k1,11818:10748736,33400913:165263 +k1,11818:11723369,33400913:165263 +k1,11818:13020438,33400913:165262 +k1,11818:16239679,33400913:165263 +k1,11818:18650861,33400913:165263 +k1,11818:19499008,33400913:165262 +k1,11818:21303292,33400913:165229 +k1,11818:23354681,33400913:165263 +k1,11818:27633637,33400913:165262 +k1,11818:31391584,33400913:165263 +k1,11818:32583029,33400913:0 +) +(1,11819:6764466,34265993:25818563,505283,134348 +k1,11818:9557567,34265993:246372 +k1,11818:10908221,34265993:246372 +k1,11818:11902358,34265993:246371 +k1,11818:13726182,34265993:246372 +k1,11818:16531080,34265993:246372 +k1,11818:17133312,34265993:246372 +k1,11818:19176681,34265993:246372 +k1,11818:20105937,34265993:246371 +k1,11818:21516181,34265993:246325 +k1,11818:24422004,34265993:246372 +k1,11818:26542706,34265993:246372 +k1,11818:28916376,34265993:246371 +k1,11818:30255233,34265993:246372 +k1,11818:31931601,34265993:246372 +k1,11819:32583029,34265993:0 +) +(1,11819:6764466,35131073:25818563,505283,122846 +(1,11818:6764466,35131073:0,452978,122846 +r1,11834:13101833,35131073:6337367,575824,122846 +k1,11818:6764466,35131073:-6337367 +) +(1,11818:6764466,35131073:6337367,452978,122846 +k1,11818:6764466,35131073:3277 +h1,11818:13098556,35131073:0,411205,112570 +) +g1,11818:13301062,35131073 +g1,11818:14691736,35131073 +(1,11818:14691736,35131073:0,452978,122846 +r1,11834:20677391,35131073:5985655,575824,122846 +k1,11818:14691736,35131073:-5985655 +) +(1,11818:14691736,35131073:5985655,452978,122846 +k1,11818:14691736,35131073:3277 +h1,11818:20674114,35131073:0,411205,112570 +) +g1,11818:20876620,35131073 +g1,11818:23275237,35131073 +g1,11818:24493551,35131073 +k1,11819:32583029,35131073:5812102 +g1,11819:32583029,35131073 +) +(1,11821:6764466,35996153:25818563,505283,126483 +h1,11820:6764466,35996153:983040,0,0 +k1,11820:12272175,35996153:266139 +k1,11820:13151075,35996153:266138 +k1,11820:14436299,35996153:266139 +k1,11820:15117213,35996153:266071 +k1,11820:18542843,35996153:266139 +k1,11820:20151158,35996153:266138 +k1,11820:21100182,35996153:266139 +k1,11820:21982358,35996153:266138 +k1,11820:22604357,35996153:266139 +k1,11820:24875241,35996153:266138 +(1,11820:24875241,35996153:0,452978,122846 +r1,11834:31212608,35996153:6337367,575824,122846 +k1,11820:24875241,35996153:-6337367 +) +(1,11820:24875241,35996153:6337367,452978,122846 +k1,11820:24875241,35996153:3277 +h1,11820:31209331,35996153:0,411205,112570 +) +k1,11820:31478747,35996153:266139 +k1,11820:32583029,35996153:0 +) +(1,11821:6764466,36861233:25818563,513147,134348 +k1,11820:8826934,36861233:194692 +k1,11820:10415578,36861233:194693 +k1,11820:11629355,36861233:194692 +k1,11820:13562063,36861233:194693 +k1,11820:14416047,36861233:194692 +k1,11820:15629824,36861233:194692 +k1,11820:18404669,36861233:194693 +k1,11820:19285523,36861233:194692 +k1,11820:22726213,36861233:194692 +k1,11820:23962928,36861233:194693 +k1,11820:26992707,36861233:194692 +k1,11820:27838828,36861233:194693 +k1,11820:30002877,36861233:194692 +k1,11820:32583029,36861233:0 +) +(1,11821:6764466,37726313:25818563,505283,7863 +g1,11820:10792964,37726313 +g1,11820:11860545,37726313 +k1,11821:32583029,37726313:19456328 +g1,11821:32583029,37726313 +) +v1,11823:6764466,38411168:0,393216,0 +(1,11827:6764466,38751851:25818563,733899,196608 +g1,11827:6764466,38751851 +g1,11827:6764466,38751851 +g1,11827:6567858,38751851 +(1,11827:6567858,38751851:0,733899,196608 +r1,11834:32779637,38751851:26211779,930507,196608 +k1,11827:6567857,38751851:-26211780 +) +(1,11827:6567858,38751851:26211779,733899,196608 +[1,11827:6764466,38751851:25818563,537291,0 +(1,11825:6764466,38638999:25818563,424439,112852 +(1,11824:6764466,38638999:0,0,0 +g1,11824:6764466,38638999 +g1,11824:6764466,38638999 +g1,11824:6436786,38638999 +(1,11824:6436786,38638999:0,0,0 +) +g1,11824:6764466,38638999 +) +k1,11825:6764466,38638999:0 +h1,11825:16723084,38638999:0,0,0 +k1,11825:32583029,38638999:15859945 +g1,11825:32583029,38638999 +) +] +) +g1,11827:32583029,38751851 +g1,11827:6764466,38751851 +g1,11827:6764466,38751851 +g1,11827:32583029,38751851 +g1,11827:32583029,38751851 +) +h1,11827:6764466,38948459:0,0,0 +(1,11831:6764466,39813539:25818563,513147,134348 +h1,11830:6764466,39813539:983040,0,0 +g1,11830:10412855,39813539 +g1,11830:13349523,39813539 +g1,11830:16459206,39813539 +g1,11830:17649995,39813539 +g1,11830:20486393,39813539 +g1,11830:22079573,39813539 +g1,11830:24974298,39813539 +(1,11830:24974298,39813539:0,452978,122846 +r1,11834:30959953,39813539:5985655,575824,122846 +k1,11830:24974298,39813539:-5985655 +) +(1,11830:24974298,39813539:5985655,452978,122846 +k1,11830:24974298,39813539:3277 +h1,11830:30956676,39813539:0,411205,112570 +) +k1,11831:32583029,39813539:1449406 +g1,11831:32583029,39813539 +) +] +g1,11831:32583029,39947887 +) +h1,11831:6630773,39947887:0,0,0 +(1,11834:6630773,40812967:25952256,513147,134348 +h1,11833:6630773,40812967:983040,0,0 +k1,11833:8284358,40812967:255702 +k1,11833:11450571,40812967:255759 +k1,11833:12810612,40812967:255759 +k1,11833:13814137,40812967:255759 +k1,11833:16807335,40812967:255759 +k1,11833:18919074,40812967:255759 +k1,11833:20742454,40812967:255759 +k1,11833:23611132,40812967:255758 +k1,11833:24549776,40812967:255759 +k1,11833:26373156,40812967:255759 +k1,11833:28963307,40812967:255759 +k1,11833:30697558,40812967:255759 +k1,11834:32583029,40812967:0 +) +(1,11834:6630773,41678047:25952256,513147,134348 +k1,11833:8507725,41678047:235930 +k1,11833:11715056,41678047:235929 +k1,11833:13518607,41678047:235930 +k1,11833:16367456,41678047:235929 +k1,11833:19965383,41678047:235930 +k1,11833:21010682,41678047:235929 +k1,11833:22265697,41678047:235930 +k1,11833:25255449,41678047:235929 +k1,11833:26828313,41678047:235930 +k1,11833:29356036,41678047:235929 +k1,11833:32583029,41678047:0 +) +(1,11834:6630773,42543127:25952256,513147,102891 +k1,11833:9530205,42543127:140366 +k1,11833:10321999,42543127:140366 +k1,11833:11210131,42543127:140366 +k1,11833:14308137,42543127:140366 +k1,11833:16390990,42543127:140366 +k1,11833:20645050,42543127:140366 +k1,11833:21804501,42543127:140366 +k1,11833:24243215,42543127:140366 +k1,11833:26059992,42543127:140366 +k1,11833:29690150,42543127:140366 +k1,11833:31021961,42543127:140366 +k1,11834:32583029,42543127:0 +) +(1,11834:6630773,43408207:25952256,513147,134348 +k1,11833:8627374,43408207:203536 +k1,11833:9822470,43408207:203536 +k1,11833:11092277,43408207:203536 +k1,11833:14079782,43408207:203536 +k1,11833:14969480,43408207:203536 +k1,11833:16494877,43408207:203536 +k1,11833:17357706,43408207:203537 +k1,11833:18580327,43408207:203536 +k1,11833:21837841,43408207:203536 +k1,11833:24460966,43408207:203536 +k1,11833:27635904,43408207:203536 +k1,11833:29478495,43408207:203536 +k1,11833:30213528,43408207:203536 +k1,11833:31483335,43408207:203536 +k1,11834:32583029,43408207:0 +) +(1,11834:6630773,44273287:25952256,513147,134348 +k1,11833:8546664,44273287:274869 +k1,11833:9507695,44273287:274869 +k1,11833:11162751,44273287:274868 +k1,11833:12429180,44273287:274869 +k1,11833:15488018,44273287:274869 +k1,11833:19820221,44273287:274869 +k1,11833:20711127,44273287:274868 +k1,11833:23921354,44273287:274869 +k1,11833:25573790,44273287:274869 +k1,11833:26981121,44273287:274869 +k1,11833:28786255,44273287:274868 +k1,11833:31391584,44273287:274869 +k1,11834:32583029,44273287:0 +) +(1,11834:6630773,45138367:25952256,530548,173670 +(1,11833:6630773,45138367:1181614,473825,0 +) +(1,11833:8117325,45312037:355205,473825,0 +) +k1,11833:9384632,45138367:203003 +k1,11833:10057528,45138367:203003 +k1,11833:10792028,45138367:203003 +k1,11833:12865428,45138367:203002 +k1,11833:13719859,45138367:203003 +k1,11833:15892219,45138367:203003 +k1,11833:19005676,45138367:203003 +k1,11833:20776300,45138367:203003 +k1,11833:23001089,45138367:203003 +k1,11833:24863861,45138367:203002 +k1,11833:26380206,45138367:203003 +k1,11833:28469335,45138367:203003 +k1,11833:32583029,45138367:0 +) +] +(1,11834:32583029,45706769:0,0,0 +g1,11834:32583029,45706769 +) +) +] +(1,11834:6630773,47279633:25952256,0,0 +h1,11834:6630773,47279633:25952256,0,0 +) +] +(1,11834:4262630,4025873:0,0,0 +[1,11834:-473656,4025873:0,0,0 +(1,11834:-473656,-710413:0,0,0 +(1,11834:-473656,-710413:0,0,0 +g1,11834:-473656,-710413 +) +g1,11834:-473656,-710413 +) +] +) +] +!26083 +}188 +Input:1735:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1736:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1737:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1738:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1739:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1740:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1741:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1742:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!764 +{189 +[1,11890:4262630,47279633:28320399,43253760,0 +(1,11890:4262630,4025873:0,0,0 +[1,11890:-473656,4025873:0,0,0 +(1,11890:-473656,-710413:0,0,0 +(1,11890:-473656,-644877:0,0,0 +k1,11890:-473656,-644877:-65536 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,12396:3078558,1915420:16384,1179648,0 +(1,11890:-473656,4736287:0,0,0 +k1,11890:-473656,4736287:5209943 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +g1,11890:-473656,-710413 ) ] ) +[1,11890:6630773,47279633:25952256,43253760,0 +[1,11890:6630773,4812305:25952256,786432,0 +(1,11890:6630773,4812305:25952256,505283,134348 +(1,11890:6630773,4812305:25952256,505283,134348 +g1,11890:3078558,4812305 +[1,11890:3078558,4812305:0,0,0 +(1,11890:3078558,2439708:0,1703936,0 +k1,11890:1358238,2439708:-1720320 +(1,11038:1358238,2439708:1720320,1703936,0 +(1,11038:1358238,2439708:1179648,16384,0 +r1,11890:2537886,2439708:1179648,16384,0 ) +g1,11038:3062174,2439708 +(1,11038:3062174,2439708:16384,1703936,0 +[1,11038:3062174,2439708:25952256,1703936,0 +(1,11038:3062174,1915420:25952256,1179648,0 +(1,11038:3062174,1915420:16384,1179648,0 +r1,11890:3078558,1915420:16384,1179648,0 ) -] -[1,12396:3078558,4812305:0,0,0 -(1,12396:3078558,2439708:0,1703936,0 -g1,12396:29030814,2439708 -g1,12396:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,12396:36151628,1915420:16384,1179648,0 -) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +k1,11038:29014430,1915420:25935872 +g1,11038:29014430,1915420 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,12396:37855564,2439708:1179648,16384,0 ) ) -k1,12396:3078556,2439708:-34777008 +] +[1,11890:3078558,4812305:0,0,0 +(1,11890:3078558,2439708:0,1703936,0 +g1,11890:29030814,2439708 +g1,11890:36135244,2439708 +(1,11038:36135244,2439708:1720320,1703936,0 +(1,11038:36135244,2439708:16384,1703936,0 +[1,11038:36135244,2439708:25952256,1703936,0 +(1,11038:36135244,1915420:25952256,1179648,0 +(1,11038:36135244,1915420:16384,1179648,0 +r1,11890:36151628,1915420:16384,1179648,0 +) +k1,11038:62087500,1915420:25935872 +g1,11038:62087500,1915420 ) ] -[1,12396:3078558,4812305:0,0,0 -(1,12396:3078558,49800853:0,16384,2228224 -k1,12396:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,12396:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,12396:3078558,51504789:16384,1179648,0 +g1,11038:36675916,2439708 +(1,11038:36675916,2439708:1179648,16384,0 +r1,11890:37855564,2439708:1179648,16384,0 +) ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 +k1,11890:3078556,2439708:-34777008 ) ] +[1,11890:3078558,4812305:0,0,0 +(1,11890:3078558,49800853:0,16384,2228224 +k1,11890:1358238,49800853:-1720320 +(1,11038:1358238,49800853:1720320,16384,2228224 +(1,11038:1358238,49800853:1179648,16384,0 +r1,11890:2537886,49800853:1179648,16384,0 ) +g1,11038:3062174,49800853 +(1,11038:3062174,52029077:16384,1703936,0 +[1,11038:3062174,52029077:25952256,1703936,0 +(1,11038:3062174,51504789:25952256,1179648,0 +(1,11038:3062174,51504789:16384,1179648,0 +r1,11890:3078558,51504789:16384,1179648,0 ) +k1,11038:29014430,51504789:25935872 +g1,11038:29014430,51504789 +) +] +) +) +) +] +[1,11890:3078558,4812305:0,0,0 +(1,11890:3078558,49800853:0,16384,2228224 +g1,11890:29030814,49800853 +g1,11890:36135244,49800853 +(1,11038:36135244,49800853:1720320,16384,2228224 +(1,11038:36135244,52029077:16384,1703936,0 +[1,11038:36135244,52029077:25952256,1703936,0 +(1,11038:36135244,51504789:25952256,1179648,0 +(1,11038:36135244,51504789:16384,1179648,0 +r1,11890:36151628,51504789:16384,1179648,0 +) +k1,11038:62087500,51504789:25935872 +g1,11038:62087500,51504789 +) +] +) +g1,11038:36675916,49800853 +(1,11038:36675916,49800853:1179648,16384,0 +r1,11890:37855564,49800853:1179648,16384,0 +) +) +k1,11890:3078556,49800853:-34777008 +) +] +g1,11890:6630773,4812305 +k1,11890:23552825,4812305:15726675 +g1,11890:25175496,4812305 +g1,11890:25997972,4812305 +g1,11890:28481131,4812305 +g1,11890:30046786,4812305 +) +) +] +[1,11890:6630773,45706769:25952256,40108032,0 +(1,11890:6630773,45706769:25952256,40108032,0 +(1,11890:6630773,45706769:0,0,0 +g1,11890:6630773,45706769 +) +[1,11890:6630773,45706769:25952256,40108032,0 +(1,11834:6630773,6254097:25952256,505283,126483 +k1,11833:8817955,6254097:244695 +k1,11833:10823602,6254097:244695 +k1,11833:12669997,6254097:244695 +k1,11833:14496076,6254097:244695 +k1,11833:15873233,6254097:244695 +k1,11833:16865694,6254097:244695 +k1,11833:20068029,6254097:244695 +k1,11833:20995609,6254097:244695 +k1,11833:22594278,6254097:244695 +k1,11833:24233579,6254097:244695 +k1,11833:25129702,6254097:244695 +k1,11833:27517424,6254097:244695 +k1,11833:28486947,6254097:244695 +k1,11833:29189739,6254097:244695 +k1,11833:29965931,6254097:244695 +k1,11833:31931601,6254097:244695 +k1,11833:32583029,6254097:0 +) +(1,11834:6630773,7119177:25952256,513147,134348 +k1,11833:8852660,7119177:252530 +k1,11833:12015643,7119177:252529 +k1,11833:13835794,7119177:252530 +k1,11833:16701243,7119177:252529 +k1,11833:17995795,7119177:252530 +k1,11833:19120692,7119177:262443 +k1,11833:19783423,7119177:252476 +k1,11833:22124585,7119177:252530 +k1,11833:23837256,7119177:252529 +k1,11833:25108871,7119177:252530 +k1,11833:28187968,7119177:252529 +k1,11833:28971995,7119177:252530 +k1,11833:32583029,7119177:0 +) +(1,11834:6630773,7984257:25952256,513147,134348 +k1,11833:10524048,7984257:255372 +k1,11833:11257177,7984257:255372 +k1,11833:12531634,7984257:255372 +k1,11833:14368389,7984257:255371 +k1,11833:15615321,7984257:255372 +k1,11833:18828333,7984257:255372 +k1,11833:21994159,7984257:255372 +k1,11833:23353813,7984257:255372 +k1,11833:24356950,7984257:255371 +k1,11833:25966296,7984257:255372 +k1,11833:28022597,7984257:255372 +k1,11833:31015408,7984257:255372 +k1,11833:32583029,7984257:0 +) +(1,11834:6630773,8849337:25952256,513147,134348 +k1,11833:9246970,8849337:176947 +k1,11833:10991538,8849337:176947 +k1,11833:13178475,8849337:176948 +k1,11833:15953269,8849337:176947 +k1,11833:19064918,8849337:176947 +k1,11833:21781385,8849337:176947 +k1,11833:22949892,8849337:176947 +k1,11833:24074490,8849337:176947 +k1,11833:25853138,8849337:176948 +k1,11833:28940539,8849337:176947 +k1,11833:30403302,8849337:176947 +k1,11833:32583029,8849337:0 +) +(1,11834:6630773,9714417:25952256,505283,7863 +k1,11834:32583029,9714417:22994616 +g1,11834:32583029,9714417 +) +v1,11836:6630773,10579497:0,393216,0 +(1,11837:6630773,13609518:25952256,3423237,0 +g1,11837:6630773,13609518 +g1,11837:6237557,13609518 +r1,11890:6368629,13609518:131072,3423237,0 +g1,11837:6567858,13609518 +g1,11837:6764466,13609518 +[1,11837:6764466,13609518:25818563,3423237,0 +(1,11837:6764466,10887795:25818563,701514,196608 +(1,11836:6764466,10887795:0,701514,196608 +r1,11890:8863446,10887795:2098980,898122,196608 +k1,11836:6764466,10887795:-2098980 +) +(1,11836:6764466,10887795:2098980,701514,196608 +) +k1,11836:9033592,10887795:170146 +k1,11836:10351521,10887795:327680 +k1,11836:11670514,10887795:170147 +(1,11836:11670514,10887795:0,452978,115847 +r1,11890:13083915,10887795:1413401,568825,115847 +k1,11836:11670514,10887795:-1413401 +) +(1,11836:11670514,10887795:1413401,452978,115847 +k1,11836:11670514,10887795:3277 +h1,11836:13080638,10887795:0,411205,112570 +) +k1,11836:13254061,10887795:170146 +k1,11836:14075636,10887795:170147 +k1,11836:15632524,10887795:170146 +k1,11836:16638255,10887795:170147 +k1,11836:17827486,10887795:170146 +k1,11836:19385686,10887795:170147 +k1,11836:21053985,10887795:170146 +k1,11836:22171783,10887795:170147 +(1,11836:22171783,10887795:0,452978,122846 +r1,11890:28509150,10887795:6337367,575824,122846 +k1,11836:22171783,10887795:-6337367 +) +(1,11836:22171783,10887795:6337367,452978,122846 +k1,11836:22171783,10887795:3277 +h1,11836:28505873,10887795:0,411205,112570 +) +k1,11836:28852966,10887795:170146 +k1,11836:30214558,10887795:170147 +k1,11836:32583029,10887795:0 +) +(1,11837:6764466,11752875:25818563,513147,134348 +k1,11836:8369162,11752875:274315 +k1,11836:9294905,11752875:274315 +k1,11836:11857082,11752875:274315 +k1,11836:14722035,11752875:274315 +k1,11836:16015435,11752875:274315 +k1,11836:18869902,11752875:274315 +k1,11836:19675714,11752875:274315 +k1,11836:22687468,11752875:274315 +k1,11836:24529404,11752875:274315 +k1,11836:25159579,11752875:274315 +k1,11836:27542843,11752875:274315 +k1,11836:28500043,11752875:274315 +k1,11836:29130218,11752875:274315 +k1,11836:31426319,11752875:274315 +k1,11836:32583029,11752875:0 +) +(1,11837:6764466,12617955:25818563,513147,134348 +k1,11836:8378734,12617955:196724 +k1,11836:11117600,12617955:196724 +k1,11836:12644704,12617955:196723 +k1,11836:13492856,12617955:196724 +k1,11836:15658937,12617955:196724 +k1,11836:16211521,12617955:196724 +k1,11836:18988396,12617955:196723 +k1,11836:20752741,12617955:196724 +k1,11836:21305325,12617955:196724 +k1,11836:22485089,12617955:196724 +k1,11836:23297850,12617955:196723 +k1,11836:23850434,12617955:196724 +k1,11836:25541379,12617955:196724 +k1,11836:27082902,12617955:196724 +k1,11836:29606808,12617955:196723 +k1,11836:30462824,12617955:196724 +k1,11836:32227169,12617955:196724 +k1,11836:32583029,12617955:0 +) +(1,11837:6764466,13483035:25818563,505283,126483 +g1,11836:10247049,13483035 +g1,11836:11592503,13483035 +k1,11837:32583029,13483035:18936628 +g1,11837:32583029,13483035 +) +] +g1,11837:32583029,13609518 +) +h1,11837:6630773,13609518:0,0,0 +v1,11840:6630773,14474598:0,393216,0 +(1,11841:6630773,19222403:25952256,5141021,0 +g1,11841:6630773,19222403 +g1,11841:6237557,19222403 +r1,11890:6368629,19222403:131072,5141021,0 +g1,11841:6567858,19222403 +g1,11841:6764466,19222403 +[1,11841:6764466,19222403:25818563,5141021,0 +(1,11841:6764466,14889140:25818563,807758,219026 +(1,11840:6764466,14889140:0,807758,219026 +r1,11890:7908217,14889140:1143751,1026784,219026 +k1,11840:6764466,14889140:-1143751 +) +(1,11840:6764466,14889140:1143751,807758,219026 +) +k1,11840:8184227,14889140:276010 +k1,11840:8511907,14889140:327680 +k1,11840:12187269,14889140:276010 +k1,11840:13482364,14889140:276010 +k1,11840:16499668,14889140:275933 +k1,11840:17758718,14889140:276010 +k1,11840:18694019,14889140:276009 +k1,11840:19325889,14889140:276010 +k1,11840:22182051,14889140:276010 +k1,11840:25126032,14889140:276010 +k1,11840:29239830,14889140:276010 +k1,11840:30325210,14889140:276010 +k1,11840:31931601,14889140:276010 +k1,11840:32583029,14889140:0 +) +(1,11841:6764466,15754220:25818563,513147,134348 +k1,11840:8982471,15754220:248648 +k1,11840:9689217,15754220:248649 +k1,11840:11505486,15754220:248648 +k1,11840:13634313,15754220:248599 +k1,11840:14565847,15754220:248649 +k1,11840:17287168,15754220:248648 +k1,11840:19726686,15754220:248649 +k1,11840:23432358,15754220:248648 +k1,11840:28086993,15754220:248649 +k1,11840:31246095,15754220:248648 +k1,11840:32583029,15754220:0 +) +(1,11841:6764466,16619300:25818563,513147,126483 +k1,11840:9234127,16619300:177867 +k1,11840:13205217,16619300:177866 +k1,11840:14402169,16619300:177867 +k1,11840:18172719,16619300:177866 +k1,11840:19009878,16619300:177867 +k1,11840:21946811,16619300:177867 +k1,11840:24490527,16619300:177866 +k1,11840:25083216,16619300:177846 +k1,11840:27303839,16619300:177866 +k1,11840:28990345,16619300:177867 +k1,11840:32583029,16619300:0 +) +(1,11841:6764466,17484380:25818563,505283,126483 +k1,11840:9128874,17484380:154534 +k1,11840:10549563,17484380:154533 +k1,11840:12487332,17484380:154534 +k1,11840:15221363,17484380:154534 +k1,11840:17072623,17484380:154533 +k1,11840:19178819,17484380:154534 +k1,11840:22975844,17484380:154534 +k1,11840:27391529,17484380:154534 +k1,11840:28537622,17484380:154533 +k1,11840:30821421,17484380:154534 +k1,11840:32583029,17484380:0 +) +(1,11841:6764466,18349460:25818563,505283,126483 +k1,11840:7610688,18349460:230184 +k1,11840:8859956,18349460:230183 +k1,11840:13457428,18349460:230153 +k1,11840:15573738,18349460:230184 +(1,11840:15573738,18349460:0,452978,115847 +r1,11890:22262816,18349460:6689078,568825,115847 +k1,11840:15573738,18349460:-6689078 +) +(1,11840:15573738,18349460:6689078,452978,115847 +k1,11840:15573738,18349460:3277 +h1,11840:22259539,18349460:0,411205,112570 +) +k1,11840:22492999,18349460:230183 +k1,11840:23914628,18349460:230184 +k1,11840:27223038,18349460:230184 +k1,11840:28069260,18349460:230184 +k1,11840:29949640,18349460:230183 +k1,11840:31966991,18349460:230184 +k1,11840:32583029,18349460:0 +) +(1,11841:6764466,19214540:25818563,513147,7863 +g1,11840:7982780,19214540 +g1,11840:10923380,19214540 +k1,11841:32583030,19214540:20502940 +g1,11841:32583030,19214540 +) +] +g1,11841:32583029,19222403 +) +h1,11841:6630773,19222403:0,0,0 +v1,11844:6630773,20087483:0,393216,0 +(1,11846:6630773,23223748:25952256,3529481,0 +g1,11846:6630773,23223748 +g1,11846:6237557,23223748 +r1,11890:6368629,23223748:131072,3529481,0 +g1,11846:6567858,23223748 +g1,11846:6764466,23223748 +[1,11846:6764466,23223748:25818563,3529481,0 +(1,11846:6764466,20502025:25818563,807758,219026 +(1,11844:6764466,20502025:0,807758,219026 +r1,11890:7908217,20502025:1143751,1026784,219026 +k1,11844:6764466,20502025:-1143751 +) +(1,11844:6764466,20502025:1143751,807758,219026 +) +g1,11844:8107446,20502025 +g1,11844:8435126,20502025 +g1,11844:10143649,20502025 +g1,11844:11007413,20502025 +g1,11844:13548899,20502025 +g1,11844:14805224,20502025 +g1,11844:18459511,20502025 +g1,11844:20231604,20502025 +g1,11844:21095368,20502025 +g1,11844:23330145,20502025 +k1,11844:32583029,20502025:5878435 +g1,11846:32583029,20502025 +) +(1,11846:6764466,21367105:25818563,505283,126483 +k1,11844:9767301,21367105:212967 +(1,11844:9767301,21367105:0,452978,115847 +r1,11890:15752956,21367105:5985655,568825,115847 +k1,11844:9767301,21367105:-5985655 +) +(1,11844:9767301,21367105:5985655,452978,115847 +k1,11844:9767301,21367105:3277 +h1,11844:15749679,21367105:0,411205,112570 +) +k1,11844:15965922,21367105:212966 +k1,11844:17283171,21367105:212967 +k1,11844:18243904,21367105:212967 +k1,11844:19970097,21367105:212967 +k1,11844:20834491,21367105:212966 +k1,11844:23118396,21367105:212967 +k1,11844:25033333,21367105:212967 +k1,11844:29047387,21367105:212966 +k1,11844:30702801,21367105:212967 +k1,11844:32583029,21367105:0 +) +(1,11846:6764466,22232185:25818563,513147,126483 +k1,11844:11076635,22232185:211581 +k1,11845:11916052,22232185:211582 +k1,11845:14115995,22232185:211581 +k1,11845:16991615,22232185:211581 +k1,11845:17870353,22232185:211582 +k1,11845:18496765,22232185:211569 +k1,11845:19727431,22232185:211581 +k1,11845:22204592,22232185:211581 +k1,11845:23409700,22232185:211582 +k1,11845:24280573,22232185:211581 +k1,11845:28293242,22232185:211581 +k1,11845:29036321,22232185:211582 +k1,11845:31015408,22232185:211581 +k1,11846:32583029,22232185:0 +) +(1,11846:6764466,23097265:25818563,513147,126483 +g1,11845:7378538,23097265 +g1,11845:9660501,23097265 +(1,11845:9660501,23097265:0,452978,115847 +r1,11890:12129038,23097265:2468537,568825,115847 +k1,11845:9660501,23097265:-2468537 +) +(1,11845:9660501,23097265:2468537,452978,115847 +k1,11845:9660501,23097265:3277 +h1,11845:12125761,23097265:0,411205,112570 +) +g1,11845:12328267,23097265 +g1,11845:12993457,23097265 +g1,11845:15747935,23097265 +g1,11845:18419182,23097265 +(1,11845:18419182,23097265:0,452978,115847 +r1,11890:26515108,23097265:8095926,568825,115847 +k1,11845:18419182,23097265:-8095926 +) +(1,11845:18419182,23097265:8095926,452978,115847 +k1,11845:18419182,23097265:3277 +h1,11845:26511831,23097265:0,411205,112570 +) +g1,11845:26714337,23097265 +g1,11845:27861217,23097265 +g1,11845:29079531,23097265 +k1,11846:32583029,23097265:1212359 +g1,11846:32583029,23097265 +) +] +g1,11846:32583029,23223748 +) +h1,11846:6630773,23223748:0,0,0 +v1,11849:6630773,24088828:0,393216,0 +(1,11859:6630773,29179230:25952256,5483618,0 +g1,11859:6630773,29179230 +g1,11859:6237557,29179230 +r1,11890:6368629,29179230:131072,5483618,0 +g1,11859:6567858,29179230 +g1,11859:6764466,29179230 +[1,11859:6764466,29179230:25818563,5483618,0 +(1,11850:6764466,24503370:25818563,807758,219026 +(1,11849:6764466,24503370:0,807758,219026 +r1,11890:7908217,24503370:1143751,1026784,219026 +k1,11849:6764466,24503370:-1143751 +) +(1,11849:6764466,24503370:1143751,807758,219026 +) +g1,11849:8107446,24503370 +g1,11849:8435126,24503370 +g1,11849:10143649,24503370 +g1,11849:11007413,24503370 +g1,11849:12352211,24503370 +g1,11849:13349669,24503370 +g1,11849:16380053,24503370 +k1,11849:32583029,24503370:13171936 +g1,11850:32583029,24503370 +) +(1,11850:6764466,25368450:25818563,513147,134348 +k1,11849:7738799,25368450:145303 +k1,11849:8976586,25368450:145302 +k1,11849:10140974,25368450:145303 +k1,11849:13312074,25368450:145303 +k1,11849:14648822,25368450:145303 +k1,11849:16496094,25368450:145302 +k1,11849:18931225,25368450:145303 +k1,11849:21458106,25368450:145303 +k1,11849:22219446,25368450:145302 +k1,11849:22720609,25368450:145303 +k1,11849:25619735,25368450:145303 +k1,11849:26784123,25368450:145303 +k1,11849:29509577,25368450:145302 +k1,11849:31276896,25368450:145303 +k1,11849:32583029,25368450:0 +) +(1,11850:6764466,26233530:25818563,513147,134348 +k1,11849:7669606,26233530:157374 +k1,11849:10144987,26233530:157373 +k1,11849:11493806,26233530:157374 +k1,11849:12598831,26233530:157374 +k1,11849:13775290,26233530:157374 +k1,11849:16000979,26233530:157373 +k1,11849:16817645,26233530:157374 +k1,11849:18671746,26233530:157374 +k1,11849:21118948,26233530:157374 +k1,11849:21927749,26233530:157373 +k1,11849:22832889,26233530:157374 +k1,11849:25033020,26233530:157374 +k1,11849:25806431,26233530:157373 +k1,11849:26982890,26233530:157374 +k1,11849:29025079,26233530:157374 +k1,11849:32583029,26233530:0 +) +(1,11850:6764466,27098610:25818563,505283,134348 +k1,11849:7921885,27098610:138334 +k1,11849:10640371,27098610:138334 +k1,11849:12639272,27098610:138334 +k1,11849:13429034,27098610:138334 +k1,11849:14315134,27098610:138334 +k1,11849:17369164,27098610:138333 +k1,11849:20297366,27098610:138334 +(1,11849:20297366,27098610:0,452978,115847 +r1,11890:23469326,27098610:3171960,568825,115847 +k1,11849:20297366,27098610:-3171960 +) +(1,11849:20297366,27098610:3171960,452978,115847 +k1,11849:20297366,27098610:3277 +h1,11849:23466049,27098610:0,411205,112570 +) +k1,11849:23607660,27098610:138334 +k1,11849:25452552,27098610:138334 +k1,11849:26782331,27098610:138334 +k1,11849:29572252,27098610:138334 +k1,11849:30867296,27098610:138334 +k1,11850:32583029,27098610:0 +) +(1,11850:6764466,27963690:25818563,505283,134348 +g1,11849:8041107,27963690 +g1,11849:8853098,27963690 +g1,11849:9408187,27963690 +g1,11849:11206494,27963690 +g1,11849:12447745,27963690 +g1,11849:15482061,27963690 +g1,11849:16332718,27963690 +g1,11849:17908203,27963690 +g1,11849:19298877,27963690 +g1,11849:21472050,27963690 +g1,11849:24251431,27963690 +g1,11849:28279929,27963690 +g1,11849:29347510,27963690 +k1,11850:32583029,27963690:1969363 +g1,11850:32583029,27963690 +) +v1,11852:6764466,28648545:0,393216,0 +(1,11856:6764466,28982622:25818563,727293,196608 +g1,11856:6764466,28982622 +g1,11856:6764466,28982622 +g1,11856:6567858,28982622 +(1,11856:6567858,28982622:0,727293,196608 +r1,11890:32779637,28982622:26211779,923901,196608 +k1,11856:6567857,28982622:-26211780 +) +(1,11856:6567858,28982622:26211779,727293,196608 +[1,11856:6764466,28982622:25818563,530685,0 +(1,11854:6764466,28876376:25818563,424439,106246 +(1,11853:6764466,28876376:0,0,0 +g1,11853:6764466,28876376 +g1,11853:6764466,28876376 +g1,11853:6436786,28876376 +(1,11853:6436786,28876376:0,0,0 +) +g1,11853:6764466,28876376 +) +k1,11854:6764466,28876376:0 +h1,11854:13735499,28876376:0,0,0 +k1,11854:32583029,28876376:18847530 +g1,11854:32583029,28876376 +) +] +) +g1,11856:32583029,28982622 +g1,11856:6764466,28982622 +g1,11856:6764466,28982622 +g1,11856:32583029,28982622 +g1,11856:32583029,28982622 +) +h1,11856:6764466,29179230:0,0,0 +] +g1,11859:32583029,29179230 +) +h1,11859:6630773,29179230:0,0,0 +(1,11862:6630773,30044310:25952256,505283,134348 +h1,11861:6630773,30044310:983040,0,0 +k1,11861:8671504,30044310:239802 +k1,11861:11821760,30044310:239802 +k1,11861:13053123,30044310:239803 +k1,11861:17022579,30044310:239802 +k1,11861:18023909,30044310:239802 +k1,11861:22270582,30044310:239802 +k1,11861:25139688,30044310:239802 +k1,11861:26759678,30044310:239802 +k1,11861:29179864,30044310:239803 +k1,11861:30167432,30044310:239802 +k1,11861:31966991,30044310:239802 +k1,11861:32583029,30044310:0 +) +(1,11862:6630773,30909390:25952256,513147,134348 +k1,11861:9536221,30909390:239443 +k1,11861:10427092,30909390:239443 +k1,11861:12448460,30909390:239444 +k1,11861:13102706,30909390:239403 +k1,11861:14947781,30909390:239443 +k1,11861:16885262,30909390:239443 +k1,11861:18504893,30909390:239443 +k1,11861:19735897,30909390:239444 +k1,11861:21488566,30909390:239443 +k1,11861:22379437,30909390:239443 +k1,11861:24642632,30909390:239443 +k1,11861:27055250,30909390:239444 +k1,11861:27977578,30909390:239443 +k1,11861:29824619,30909390:239443 +k1,11861:32583029,30909390:0 +) +(1,11862:6630773,31774470:25952256,513147,134348 +k1,11861:7520720,31774470:273909 +k1,11861:11897837,31774470:273908 +k1,11861:12586514,31774470:273834 +k1,11861:15555919,31774470:273909 +(1,11861:15555919,31774470:0,452978,115847 +r1,11890:19079591,31774470:3523672,568825,115847 +k1,11861:15555919,31774470:-3523672 +) +(1,11861:15555919,31774470:3523672,452978,115847 +k1,11861:15555919,31774470:3277 +h1,11861:19076314,31774470:0,411205,112570 +) +k1,11861:19353499,31774470:273908 +k1,11861:21325446,31774470:273909 +k1,11861:23467131,31774470:273909 +k1,11861:25134990,31774470:273908 +k1,11861:26427984,31774470:273909 +k1,11861:28439908,31774470:273909 +k1,11861:29373108,31774470:273908 +k1,11861:30002877,31774470:273909 +k1,11861:32583029,31774470:0 +) +(1,11862:6630773,32639550:25952256,513147,134348 +k1,11861:7544798,32639550:227863 +k1,11861:8561060,32639550:227864 +k1,11861:11861251,32639550:227863 +k1,11861:14849491,32639550:227864 +k1,11861:16096439,32639550:227863 +k1,11861:19303569,32639550:227863 +k1,11861:20815939,32639550:227864 +k1,11861:23224185,32639550:227863 +k1,11861:24199814,32639550:227863 +k1,11861:25987435,32639550:227864 +k1,11861:27162949,32639550:227863 +k1,11861:28409898,32639550:227864 +k1,11861:31391584,32639550:227863 +k1,11861:32583029,32639550:0 +) +(1,11862:6630773,33504630:25952256,513147,134348 +k1,11861:9329549,33504630:238554 +k1,11861:10338805,33504630:238553 +k1,11861:12908475,33504630:238554 +k1,11861:16393026,33504630:238553 +k1,11861:17650665,33504630:238554 +k1,11861:20868485,33504630:238553 +k1,11861:21758467,33504630:238554 +k1,11861:23136037,33504630:238554 +k1,11861:24322241,33504630:238553 +k1,11861:25579880,33504630:238554 +k1,11861:28152170,33504630:238553 +k1,11861:29057880,33504630:238554 +k1,11861:29711237,33504630:238514 +k1,11861:30565828,33504630:238553 +k1,11861:31896867,33504630:238554 +k1,11861:32583029,33504630:0 +) +(1,11862:6630773,34369710:25952256,505283,7863 +g1,11861:8905527,34369710 +k1,11862:32583029,34369710:21635400 +g1,11862:32583029,34369710 +) +v1,11864:6630773,35054565:0,393216,0 +(1,11890:6630773,45107684:25952256,10446335,196608 +g1,11890:6630773,45107684 +g1,11890:6630773,45107684 +g1,11890:6434165,45107684 +(1,11890:6434165,45107684:0,10446335,196608 +r1,11890:32779637,45107684:26345472,10642943,196608 +k1,11890:6434165,45107684:-26345472 +) +(1,11890:6434165,45107684:26345472,10446335,196608 +[1,11890:6630773,45107684:25952256,10249727,0 +(1,11866:6630773,35282396:25952256,424439,79822 +(1,11865:6630773,35282396:0,0,0 +g1,11865:6630773,35282396 +g1,11865:6630773,35282396 +g1,11865:6303093,35282396 +(1,11865:6303093,35282396:0,0,0 +) +g1,11865:6630773,35282396 +) +k1,11866:6630773,35282396:0 +h1,11866:9950312,35282396:0,0,0 +k1,11866:32583028,35282396:22632716 +g1,11866:32583028,35282396 +) +(1,11889:6630773,36098323:25952256,424439,106246 +(1,11868:6630773,36098323:0,0,0 +g1,11868:6630773,36098323 +g1,11868:6630773,36098323 +g1,11868:6303093,36098323 +(1,11868:6303093,36098323:0,0,0 +) +g1,11868:6630773,36098323 +) +g1,11889:7626635,36098323 +g1,11889:8622497,36098323 +g1,11889:10282267,36098323 +g1,11889:10946175,36098323 +g1,11889:11942037,36098323 +g1,11889:16257438,36098323 +h1,11889:17585254,36098323:0,0,0 +k1,11889:32583029,36098323:14997775 +g1,11889:32583029,36098323 +) +(1,11889:6630773,36783178:25952256,398014,0 +h1,11889:6630773,36783178:0,0,0 +h1,11889:7294681,36783178:0,0,0 +k1,11889:32583029,36783178:25288348 +g1,11889:32583029,36783178 +) +(1,11889:6630773,37468033:25952256,431045,112852 +h1,11889:6630773,37468033:0,0,0 +g1,11889:7626635,37468033 +g1,11889:7958589,37468033 +g1,11889:8290543,37468033 +g1,11889:8954451,37468033 +g1,11889:10614221,37468033 +g1,11889:12273991,37468033 +g1,11889:14929623,37468033 +g1,11889:16257439,37468033 +g1,11889:16921347,37468033 +g1,11889:19908932,37468033 +g1,11889:21236748,37468033 +g1,11889:25220195,37468033 +g1,11889:26548011,37468033 +h1,11889:30199504,37468033:0,0,0 +k1,11889:32583029,37468033:2383525 +g1,11889:32583029,37468033 +) +(1,11889:6630773,38152888:25952256,431045,112852 +h1,11889:6630773,38152888:0,0,0 +g1,11889:7626635,38152888 +g1,11889:7958589,38152888 +g1,11889:8290543,38152888 +g1,11889:12273990,38152888 +g1,11889:12937898,38152888 +g1,11889:16589391,38152888 +g1,11889:17917207,38152888 +g1,11889:21900654,38152888 +g1,11889:25552147,38152888 +g1,11889:28207779,38152888 +h1,11889:30863410,38152888:0,0,0 +k1,11889:32583029,38152888:1719619 +g1,11889:32583029,38152888 +) +(1,11889:6630773,38837743:25952256,424439,112852 +h1,11889:6630773,38837743:0,0,0 +g1,11889:7626635,38837743 +g1,11889:7958589,38837743 +g1,11889:8290543,38837743 +k1,11889:8290543,38837743:0 +h1,11889:17917207,38837743:0,0,0 +k1,11889:32583029,38837743:14665822 +g1,11889:32583029,38837743 +) +(1,11889:6630773,39522598:25952256,398014,0 +h1,11889:6630773,39522598:0,0,0 +h1,11889:7294681,39522598:0,0,0 +k1,11889:32583029,39522598:25288348 +g1,11889:32583029,39522598 +) +(1,11889:6630773,40207453:25952256,431045,106246 +h1,11889:6630773,40207453:0,0,0 +g1,11889:7626635,40207453 +g1,11889:8290543,40207453 +g1,11889:10614221,40207453 +g1,11889:12605945,40207453 +g1,11889:13933761,40207453 +g1,11889:15925485,40207453 +g1,11889:17917209,40207453 +h1,11889:18581117,40207453:0,0,0 +k1,11889:32583029,40207453:14001912 +g1,11889:32583029,40207453 +) +(1,11889:6630773,40892308:25952256,398014,0 +h1,11889:6630773,40892308:0,0,0 +h1,11889:7294681,40892308:0,0,0 +k1,11889:32583029,40892308:25288348 +g1,11889:32583029,40892308 +) +(1,11889:6630773,41577163:25952256,424439,112852 +h1,11889:6630773,41577163:0,0,0 +g1,11889:7626635,41577163 +g1,11889:7958589,41577163 +g1,11889:8290543,41577163 +k1,11889:8290543,41577163:0 +h1,11889:11278128,41577163:0,0,0 +k1,11889:32583028,41577163:21304900 +g1,11889:32583028,41577163 +) +(1,11889:6630773,42262018:25952256,431045,112852 +h1,11889:6630773,42262018:0,0,0 +g1,11889:7626635,42262018 +g1,11889:7958589,42262018 +g1,11889:8290543,42262018 +g1,11889:8622497,42262018 +g1,11889:8954451,42262018 +g1,11889:10946175,42262018 +g1,11889:11610083,42262018 +g1,11889:12937899,42262018 +g1,11889:13601807,42262018 +g1,11889:16589392,42262018 +g1,11889:17917208,42262018 +g1,11889:21900655,42262018 +g1,11889:23228471,42262018 +g1,11889:27211918,42262018 +k1,11889:27211918,42262018:0 +h1,11889:30863411,42262018:0,0,0 +k1,11889:32583029,42262018:1719618 +g1,11889:32583029,42262018 +) +(1,11889:6630773,42946873:25952256,424439,86428 +h1,11889:6630773,42946873:0,0,0 +g1,11889:7626635,42946873 +g1,11889:7958589,42946873 +g1,11889:8290543,42946873 +g1,11889:8622497,42946873 +g1,11889:8954451,42946873 +g1,11889:11278129,42946873 +g1,11889:11942037,42946873 +g1,11889:13269853,42946873 +g1,11889:14929623,42946873 +k1,11889:14929623,42946873:0 +h1,11889:17253301,42946873:0,0,0 +k1,11889:32583029,42946873:15329728 +g1,11889:32583029,42946873 +) +(1,11889:6630773,43631728:25952256,431045,112852 +h1,11889:6630773,43631728:0,0,0 +g1,11889:7626635,43631728 +g1,11889:7958589,43631728 +g1,11889:8290543,43631728 +g1,11889:8622497,43631728 +g1,11889:8954451,43631728 +g1,11889:13269852,43631728 +g1,11889:13933760,43631728 +g1,11889:14929622,43631728 +g1,11889:18581115,43631728 +g1,11889:19908931,43631728 +g1,11889:23892378,43631728 +k1,11889:23892378,43631728:0 +h1,11889:27543871,43631728:0,0,0 +k1,11889:32583029,43631728:5039158 +g1,11889:32583029,43631728 +) +(1,11889:6630773,44316583:25952256,424439,86428 +h1,11889:6630773,44316583:0,0,0 +g1,11889:7626635,44316583 +g1,11889:7958589,44316583 +g1,11889:8290543,44316583 +g1,11889:8622497,44316583 +g1,11889:8954451,44316583 +g1,11889:11610083,44316583 +g1,11889:12273991,44316583 +g1,11889:15261577,44316583 +k1,11889:15261577,44316583:0 +h1,11889:18249162,44316583:0,0,0 +k1,11889:32583029,44316583:14333867 +g1,11889:32583029,44316583 +) +(1,11889:6630773,45001438:25952256,424439,106246 +h1,11889:6630773,45001438:0,0,0 +g1,11889:7626635,45001438 +g1,11889:7958589,45001438 +g1,11889:8290543,45001438 +g1,11889:8622497,45001438 +g1,11889:8954451,45001438 +g1,11889:10614221,45001438 +g1,11889:11278129,45001438 +k1,11889:11278129,45001438:0 +h1,11889:13601807,45001438:0,0,0 +k1,11889:32583029,45001438:18981222 +g1,11889:32583029,45001438 +) +] +) +g1,11890:32583029,45107684 +g1,11890:6630773,45107684 +g1,11890:6630773,45107684 +g1,11890:32583029,45107684 +g1,11890:32583029,45107684 +) +] +(1,11890:32583029,45706769:0,0,0 +g1,11890:32583029,45706769 +) +) +] +(1,11890:6630773,47279633:25952256,0,0 +h1,11890:6630773,47279633:25952256,0,0 +) +] +(1,11890:4262630,4025873:0,0,0 +[1,11890:-473656,4025873:0,0,0 +(1,11890:-473656,-710413:0,0,0 +(1,11890:-473656,-710413:0,0,0 +g1,11890:-473656,-710413 +) +g1,11890:-473656,-710413 +) +] +) +] +!27881 +}189 +Input:1743:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!106 +{190 +[1,11911:4262630,47279633:28320399,43253760,0 +(1,11911:4262630,4025873:0,0,0 +[1,11911:-473656,4025873:0,0,0 +(1,11911:-473656,-710413:0,0,0 +(1,11911:-473656,-644877:0,0,0 +k1,11911:-473656,-644877:-65536 ) -] -[1,12396:3078558,4812305:0,0,0 -(1,12396:3078558,49800853:0,16384,2228224 -g1,12396:29030814,49800853 -g1,12396:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,12396:36151628,51504789:16384,1179648,0 +(1,11911:-473656,4736287:0,0,0 +k1,11911:-473656,4736287:5209943 ) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 +g1,11911:-473656,-710413 ) ] ) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,12396:37855564,49800853:1179648,16384,0 +[1,11911:6630773,47279633:25952256,43253760,0 +[1,11911:6630773,4812305:25952256,786432,0 +(1,11911:6630773,4812305:25952256,505283,134348 +(1,11911:6630773,4812305:25952256,505283,134348 +g1,11911:3078558,4812305 +[1,11911:3078558,4812305:0,0,0 +(1,11911:3078558,2439708:0,1703936,0 +k1,11911:1358238,2439708:-1720320 +(1,11038:1358238,2439708:1720320,1703936,0 +(1,11038:1358238,2439708:1179648,16384,0 +r1,11911:2537886,2439708:1179648,16384,0 ) +g1,11038:3062174,2439708 +(1,11038:3062174,2439708:16384,1703936,0 +[1,11038:3062174,2439708:25952256,1703936,0 +(1,11038:3062174,1915420:25952256,1179648,0 +(1,11038:3062174,1915420:16384,1179648,0 +r1,11911:3078558,1915420:16384,1179648,0 ) -k1,12396:3078556,49800853:-34777008 +k1,11038:29014430,1915420:25935872 +g1,11038:29014430,1915420 ) ] -g1,12396:6630773,4812305 -g1,12396:6630773,4812305 -g1,12396:8843268,4812305 -g1,12396:10880782,4812305 -g1,12396:13281365,4812305 -k1,12396:31387653,4812305:18106288 +) ) ) ] -[1,12396:6630773,45706769:25952256,40108032,0 -(1,12396:6630773,45706769:25952256,40108032,0 -(1,12396:6630773,45706769:0,0,0 -g1,12396:6630773,45706769 +[1,11911:3078558,4812305:0,0,0 +(1,11911:3078558,2439708:0,1703936,0 +g1,11911:29030814,2439708 +g1,11911:36135244,2439708 +(1,11038:36135244,2439708:1720320,1703936,0 +(1,11038:36135244,2439708:16384,1703936,0 +[1,11038:36135244,2439708:25952256,1703936,0 +(1,11038:36135244,1915420:25952256,1179648,0 +(1,11038:36135244,1915420:16384,1179648,0 +r1,11911:36151628,1915420:16384,1179648,0 ) -[1,12396:6630773,45706769:25952256,40108032,0 -(1,12350:6630773,6254097:25952256,505283,115847 -k1,12349:9133002,6254097:270728 -k1,12349:11105700,6254097:270728 -k1,12349:14161053,6254097:270728 -k1,12349:15925347,6254097:270728 -k1,12349:16882236,6254097:270727 -(1,12349:16882236,6254097:0,459977,115847 -r1,12396:18999061,6254097:2116825,575824,115847 -k1,12349:16882236,6254097:-2116825 +k1,11038:62087500,1915420:25935872 +g1,11038:62087500,1915420 ) -(1,12349:16882236,6254097:2116825,459977,115847 -k1,12349:16882236,6254097:3277 -h1,12349:18995784,6254097:0,411205,112570 -) -k1,12349:19443459,6254097:270728 -(1,12349:19443459,6254097:0,452978,115847 -r1,12396:23318843,6254097:3875384,568825,115847 -k1,12349:19443459,6254097:-3875384 -) -(1,12349:19443459,6254097:3875384,452978,115847 -k1,12349:19443459,6254097:3277 -h1,12349:23315566,6254097:0,411205,112570 -) -k1,12349:23763241,6254097:270728 -(1,12349:23763241,6254097:0,459977,115847 -r1,12396:26583490,6254097:2820249,575824,115847 -k1,12349:23763241,6254097:-2820249 -) -(1,12349:23763241,6254097:2820249,459977,115847 -k1,12349:23763241,6254097:3277 -h1,12349:26580213,6254097:0,411205,112570 -) -k1,12349:27027888,6254097:270728 -(1,12349:27027888,6254097:0,452978,115847 -r1,12396:30199848,6254097:3171960,568825,115847 -k1,12349:27027888,6254097:-3171960 -) -(1,12349:27027888,6254097:3171960,452978,115847 -k1,12349:27027888,6254097:3277 -h1,12349:30196571,6254097:0,411205,112570 -) -k1,12349:30644246,6254097:270728 -(1,12349:30644246,6254097:0,452978,115847 -r1,12396:32409359,6254097:1765113,568825,115847 -k1,12349:30644246,6254097:-1765113 -) -(1,12349:30644246,6254097:1765113,452978,115847 -k1,12349:30644246,6254097:3277 -h1,12349:32406082,6254097:0,411205,112570 -) -k1,12350:32583029,6254097:0 -) -(1,12350:6630773,7095585:25952256,505283,126483 -(1,12349:6630773,7095585:0,452978,115847 -r1,12396:8395886,7095585:1765113,568825,115847 -k1,12349:6630773,7095585:-1765113 -) -(1,12349:6630773,7095585:1765113,452978,115847 -k1,12349:6630773,7095585:3277 -h1,12349:8392609,7095585:0,411205,112570 -) -k1,12349:8680879,7095585:284993 -k1,12349:11253079,7095585:284993 -k1,12349:12823888,7095585:284993 -k1,12349:16066521,7095585:284993 -k1,12349:19710235,7095585:284994 -k1,12349:22779853,7095585:284993 -k1,12349:24401780,7095585:284993 -k1,12349:25434539,7095585:284993 -k1,12349:28677172,7095585:284993 -k1,12349:31896867,7095585:284993 -k1,12349:32583029,7095585:0 -) -(1,12350:6630773,7937073:25952256,513147,134348 -k1,12349:8813340,7937073:194860 -k1,12349:9695672,7937073:194859 -k1,12349:12180360,7937073:194860 -k1,12349:13366779,7937073:194859 -k1,12349:15944528,7937073:194860 -k1,12349:17707009,7937073:194860 -k1,12349:19457037,7937073:194859 -(1,12349:19457037,7937073:0,452978,115847 -r1,12396:20870438,7937073:1413401,568825,115847 -k1,12349:19457037,7937073:-1413401 -) -(1,12349:19457037,7937073:1413401,452978,115847 -k1,12349:19457037,7937073:3277 -h1,12349:20867161,7937073:0,411205,112570 -) -k1,12349:21238968,7937073:194860 -k1,12349:23130555,7937073:194860 -k1,12349:24516859,7937073:194859 -k1,12349:26413689,7937073:194860 -k1,12349:30536121,7937073:194859 -k1,12349:31835263,7937073:194860 -k1,12349:32583029,7937073:0 -) -(1,12350:6630773,8778561:25952256,505283,134348 -k1,12349:9024557,8778561:189808 -k1,12349:9897250,8778561:189808 -k1,12349:13295702,8778561:189809 -k1,12349:19122262,8778561:189808 -k1,12349:21010108,8778561:189808 -k1,12349:23671935,8778561:189809 -k1,12349:28382417,8778561:189808 -k1,12349:29591310,8778561:189808 -k1,12349:32583029,8778561:0 -) -(1,12350:6630773,9620049:25952256,513147,134348 -k1,12349:7420088,9620049:173277 -k1,12349:8796606,9620049:173277 -k1,12349:11387506,9620049:173277 -k1,12349:12665066,9620049:173278 -k1,12349:13586109,9620049:173277 -k1,12349:16337572,9620049:173277 -k1,12349:17162277,9620049:173277 -k1,12349:18354639,9620049:173277 -k1,12349:20462539,9620049:173277 -k1,12349:21295108,9620049:173277 -k1,12349:23184773,9620049:173277 -k1,12349:24017343,9620049:173278 -k1,12349:26508628,9620049:173277 -k1,12349:27748176,9620049:173277 -k1,12349:31011476,9620049:173277 -k1,12350:32583029,9620049:0 -k1,12350:32583029,9620049:0 -) -v1,12352:6630773,10969193:0,393216,0 -(1,12353:6630773,14823701:25952256,4247724,0 -g1,12353:6630773,14823701 -g1,12353:6303093,14823701 -r1,12396:6401397,14823701:98304,4247724,0 -g1,12353:6600626,14823701 -g1,12353:6797234,14823701 -[1,12353:6797234,14823701:25785795,4247724,0 -(1,12353:6797234,11331266:25785795,755289,196608 -(1,12352:6797234,11331266:0,755289,196608 -r1,12396:8134168,11331266:1336934,951897,196608 -k1,12352:6797234,11331266:-1336934 -) -(1,12352:6797234,11331266:1336934,755289,196608 -) -k1,12352:8349433,11331266:215265 -k1,12352:8677113,11331266:327680 -k1,12352:10734595,11331266:215265 -k1,12352:12937567,11331266:215265 -k1,12352:15442660,11331266:215265 -k1,12352:16273963,11331266:215265 -k1,12352:16904055,11331266:215249 -k1,12352:18110880,11331266:215265 -k1,12352:19473680,11331266:215265 -k1,12352:22828775,11331266:215265 -k1,12352:24235485,11331266:215265 -k1,12352:26788419,11331266:215265 -k1,12352:27359544,11331266:215265 -k1,12352:29084759,11331266:215265 -k1,12352:29959316,11331266:215265 -k1,12352:31193666,11331266:215265 -k1,12352:32583029,11331266:0 -) -(1,12353:6797234,12172754:25785795,513147,126483 -k1,12352:7700119,12172754:251457 -k1,12352:9837046,12172754:251456 -k1,12352:11107588,12172754:251457 -k1,12352:13346751,12172754:251456 -k1,12352:14805381,12172754:251457 -k1,12352:15917980,12172754:251456 -k1,12352:16855599,12172754:251457 -k1,12352:18385662,12172754:251456 -k1,12352:19323281,12172754:251457 -k1,12352:22468807,12172754:251456 -k1,12352:23911709,12172754:251457 -k1,12352:26806888,12172754:251457 -k1,12352:28525040,12172754:251456 -k1,12352:32583029,12172754:0 -) -(1,12353:6797234,13014242:25785795,513147,134348 -k1,12352:9144482,13014242:174074 -k1,12352:9977847,13014242:174073 -k1,12352:14719780,13014242:174074 -k1,12352:17856736,13014242:174073 -k1,12352:19234051,13014242:174074 -k1,12352:20512407,13014242:174074 -k1,12352:22402213,13014242:174073 -k1,12352:23595372,13014242:174074 -k1,12352:25038223,13014242:174074 -k1,12352:25871588,13014242:174073 -k1,12352:27742389,13014242:174074 -k1,12352:30206290,13014242:174073 -k1,12352:32124932,13014242:174074 -k1,12352:32583029,13014242:0 -) -(1,12353:6797234,13855730:25785795,513147,134348 -k1,12352:8994843,13855730:185654 -k1,12352:11986749,13855730:185654 -k1,12352:13363848,13855730:185654 -k1,12352:15016198,13855730:185654 -k1,12352:18061188,13855730:185654 -k1,12352:19885897,13855730:185654 -k1,12352:20687589,13855730:185654 -k1,12352:21892329,13855730:185655 -k1,12352:24607673,13855730:185654 -k1,12352:25452619,13855730:185654 -k1,12352:26657358,13855730:185654 -k1,12352:28232375,13855730:185654 -k1,12352:29034067,13855730:185654 -k1,12352:30238806,13855730:185654 -k1,12353:32583029,13855730:0 -) -(1,12353:6797234,14697218:25785795,505283,126483 -g1,12352:7411306,14697218 -k1,12353:32583028,14697218:21613772 -g1,12353:32583028,14697218 -) -] -g1,12353:32583029,14823701 -) -h1,12353:6630773,14823701:0,0,0 -(1,12357:6630773,18138925:25952256,32768,229376 -(1,12357:6630773,18138925:0,32768,229376 -(1,12357:6630773,18138925:5505024,32768,229376 -r1,12396:12135797,18138925:5505024,262144,229376 -) -k1,12357:6630773,18138925:-5505024 -) -(1,12357:6630773,18138925:25952256,32768,0 -r1,12396:32583029,18138925:25952256,32768,0 -) -) -(1,12357:6630773,19743253:25952256,606339,161218 -(1,12357:6630773,19743253:1974731,568590,0 -g1,12357:6630773,19743253 -g1,12357:8605504,19743253 -) -g1,12357:11418572,19743253 -g1,12357:13932009,19743253 -k1,12357:32583029,19743253:15782902 -g1,12357:32583029,19743253 -) -(1,12363:6630773,20977957:25952256,513147,126483 -k1,12362:9575372,20977957:154731 -(1,12362:9575372,20977957:0,452978,115847 -r1,12396:10988773,20977957:1413401,568825,115847 -k1,12362:9575372,20977957:-1413401 -) -(1,12362:9575372,20977957:1413401,452978,115847 -k1,12362:9575372,20977957:3277 -h1,12362:10985496,20977957:0,411205,112570 -) -k1,12362:11143505,20977957:154732 -k1,12362:11829733,20977957:154731 -k1,12362:13497691,20977957:154732 -k1,12362:14303850,20977957:154731 -k1,12362:15146054,20977957:154731 -k1,12362:17113512,20977957:154732 -k1,12362:19759922,20977957:154731 -k1,12362:20392410,20977957:154731 -k1,12362:21566227,20977957:154732 -k1,12362:25486657,20977957:154731 -k1,12362:28152729,20977957:154732 -k1,12362:28838957,20977957:154731 -k1,12362:32583029,20977957:0 -) -(1,12363:6630773,21819445:25952256,513147,134348 -k1,12362:7821408,21819445:171550 -k1,12362:8680431,21819445:171550 -k1,12362:9383478,21819445:171550 -k1,12362:9910888,21819445:171550 -k1,12362:13572886,21819445:171551 -k1,12362:14222193,21819445:171550 -k1,12362:15412828,21819445:171550 -k1,12362:19350077,21819445:171550 -k1,12362:22032967,21819445:171550 -k1,12362:22736014,21819445:171550 -k1,12362:23263424,21819445:171550 -k1,12362:25502635,21819445:171550 -k1,12362:26693271,21819445:171551 -k1,12362:27552294,21819445:171550 -k1,12362:28255341,21819445:171550 -k1,12362:29197594,21819445:171550 -k1,12362:31923737,21819445:171550 -k1,12362:32583029,21819445:0 -) -(1,12363:6630773,22660933:25952256,513147,134348 -k1,12362:9500179,22660933:215198 -k1,12362:12564211,22660933:215182 -k1,12362:13395446,22660933:215197 -k1,12362:15470556,22660933:215198 -k1,12362:17702297,22660933:215198 -k1,12362:20852197,22660933:215198 -k1,12362:22722179,22660933:215198 -k1,12362:23468874,22660933:215198 -k1,12362:26156744,22660933:215197 -k1,12362:29100206,22660933:215198 -k1,12362:29974696,22660933:215198 -k1,12362:32583029,22660933:0 -) -(1,12363:6630773,23502421:25952256,513147,134348 -k1,12362:9681474,23502421:235930 -k1,12362:11293004,23502421:235929 -k1,12362:12180362,23502421:235930 -k1,12362:13435376,23502421:235929 -k1,12362:15193052,23502421:235930 -k1,12362:16088273,23502421:235929 -k1,12362:20061721,23502421:235930 -k1,12362:22249312,23502421:235929 -k1,12362:23136670,23502421:235930 -k1,12362:24143302,23502421:235929 -k1,12362:27363742,23502421:235930 -k1,12362:28251099,23502421:235929 -k1,12362:30474736,23502421:235930 -k1,12362:32583029,23502421:0 -) -(1,12363:6630773,24343909:25952256,513147,134348 -k1,12362:11315811,24343909:164364 -k1,12362:13431837,24343909:164364 -k1,12362:17479209,24343909:164364 -k1,12362:19816747,24343909:164364 -k1,12362:20928762,24343909:164364 -k1,12362:22614873,24343909:164365 -k1,12362:23438529,24343909:164364 -k1,12362:27340411,24343909:164364 -k1,12362:28452426,24343909:164364 -k1,12362:30329246,24343909:164364 -k1,12363:32583029,24343909:0 -) -(1,12363:6630773,25185397:25952256,513147,134348 -k1,12362:8085625,25185397:214911 -k1,12362:11346649,25185397:214911 -k1,12362:12665843,25185397:214912 -k1,12362:14347450,25185397:214911 -k1,12362:15178399,25185397:214911 -k1,12362:16412395,25185397:214911 -k1,12362:17994388,25185397:214912 -k1,12362:18868591,25185397:214911 -k1,12362:22400279,25185397:214911 -k1,12362:23806635,25185397:214911 -k1,12362:26629879,25185397:214911 -k1,12362:27592557,25185397:214912 -k1,12362:30981377,25185397:214911 -k1,12362:31812326,25185397:214911 -k1,12362:32583029,25185397:0 -) -(1,12363:6630773,26026885:25952256,513147,134348 -k1,12362:9222086,26026885:156650 -k1,12362:11118105,26026885:156693 -k1,12362:11902632,26026885:156692 -k1,12362:13262566,26026885:156693 -k1,12362:15834260,26026885:156692 -k1,12362:18293888,26026885:156693 -k1,12362:21352515,26026885:156693 -k1,12362:23943828,26026885:156650 -k1,12362:26168836,26026885:156692 -k1,12362:26681389,26026885:156693 -k1,12362:28029526,26026885:156692 -k1,12362:28845511,26026885:156693 -k1,12362:32583029,26026885:0 -) -(1,12363:6630773,26868373:25952256,513147,126483 -g1,12362:8684671,26868373 -g1,12362:9693270,26868373 -g1,12362:10911584,26868373 -g1,12362:12937957,26868373 -g1,12362:15772389,26868373 -g1,12362:17568075,26868373 -g1,12362:18426596,26868373 -k1,12363:32583029,26868373:10998253 -g1,12363:32583029,26868373 -) -v1,12365:6630773,28217517:0,393216,0 -(1,12366:6630773,29613937:25952256,1789636,0 -g1,12366:6630773,29613937 -g1,12366:6303093,29613937 -r1,12396:6401397,29613937:98304,1789636,0 -g1,12366:6600626,29613937 -g1,12366:6797234,29613937 -[1,12366:6797234,29613937:25785795,1789636,0 -(1,12366:6797234,28638101:25785795,813800,267386 -(1,12365:6797234,28638101:0,813800,267386 -r1,12396:8134168,28638101:1336934,1081186,267386 -k1,12365:6797234,28638101:-1336934 -) -(1,12365:6797234,28638101:1336934,813800,267386 -) -k1,12365:8323785,28638101:189617 -k1,12365:8651465,28638101:327680 -k1,12365:9318840,28638101:189618 -k1,12365:10678930,28638101:189617 -k1,12365:11683816,28638101:189618 -k1,12365:12939704,28638101:189617 -k1,12365:15225819,28638101:189618 -k1,12365:18674541,28638101:189617 -k1,12365:19883244,28638101:189618 -k1,12365:23259221,28638101:189617 -k1,12365:26084042,28638101:189618 -k1,12365:28893788,28638101:189617 -k1,12365:31391584,28638101:189618 -k1,12365:32583029,28638101:0 -) -(1,12366:6797234,29479589:25785795,513147,134348 -g1,12365:9394425,29479589 -g1,12365:10276539,29479589 -g1,12365:11806149,29479589 -g1,12365:13385566,29479589 -g1,12365:14689077,29479589 -g1,12365:15636072,29479589 -g1,12365:18359092,29479589 -g1,12365:20738704,29479589 -g1,12365:22920397,29479589 -g1,12365:25537249,29479589 -h1,12365:25935708,29479589:0,0,0 -g1,12365:26134937,29479589 -g1,12365:27143536,29479589 -g1,12365:28840918,29479589 -h1,12365:29637836,29479589:0,0,0 -k1,12366:32583029,29479589:2771523 -g1,12366:32583029,29479589 -) -] -g1,12366:32583029,29613937 -) -h1,12366:6630773,29613937:0,0,0 -(1,12369:6630773,30963082:25952256,513147,134348 -h1,12368:6630773,30963082:983040,0,0 -k1,12368:8987556,30963082:177056 -k1,12368:11471480,30963082:177057 -k1,12368:14264733,30963082:177056 -k1,12368:16009411,30963082:177057 -k1,12368:17205552,30963082:177056 -k1,12368:20137087,30963082:177057 -k1,12368:22592830,30963082:177056 -k1,12368:25406400,30963082:177057 -k1,12368:26234884,30963082:177056 -k1,12368:28072623,30963082:177057 -k1,12368:28605539,30963082:177056 -k1,12368:30595322,30963082:177057 -k1,12368:32583029,30963082:0 -) -(1,12369:6630773,31804570:25952256,513147,126483 -k1,12368:7714250,31804570:222334 -k1,12368:9514037,31804570:222335 -k1,12368:11130322,31804570:222334 -k1,12368:14048152,31804570:222334 -(1,12368:14048152,31804570:0,452978,115847 -r1,12396:15461553,31804570:1413401,568825,115847 -k1,12368:14048152,31804570:-1413401 -) -(1,12368:14048152,31804570:1413401,452978,115847 -k1,12368:14048152,31804570:3277 -h1,12368:15458276,31804570:0,411205,112570 -) -k1,12368:15683888,31804570:222335 -k1,12368:17825116,31804570:222334 -k1,12368:19066535,31804570:222334 -k1,12368:22334982,31804570:222334 -k1,12368:24394947,31804570:222335 -k1,12368:27658807,31804570:222334 -k1,12368:29429757,31804570:222334 -k1,12368:30183589,31804570:222335 -k1,12368:31021961,31804570:222334 -k1,12369:32583029,31804570:0 -) -(1,12369:6630773,32646058:25952256,513147,134348 -k1,12368:8270964,32646058:210851 -k1,12368:9875766,32646058:210851 -k1,12368:11105702,32646058:210851 -k1,12368:13251176,32646058:210851 -k1,12368:14121319,32646058:210851 -k1,12368:16034140,32646058:210851 -k1,12368:17961379,32646058:210851 -k1,12368:18831522,32646058:210851 -k1,12368:21534052,32646058:210851 -k1,12368:22936348,32646058:210851 -k1,12368:24166284,32646058:210851 -k1,12368:25986044,32646058:210851 -k1,12368:27683907,32646058:210851 -k1,12368:29443374,32646058:210851 -k1,12368:30185722,32646058:210851 -k1,12368:32583029,32646058:0 -) -(1,12369:6630773,33487546:25952256,513147,134348 -k1,12368:7462442,33487546:180241 -(1,12368:7462442,33487546:0,452978,115847 -r1,12396:8875843,33487546:1413401,568825,115847 -k1,12368:7462442,33487546:-1413401 -) -(1,12368:7462442,33487546:1413401,452978,115847 -k1,12368:7462442,33487546:3277 -h1,12368:8872566,33487546:0,411205,112570 -) -k1,12368:9229755,33487546:180242 -k1,12368:10606683,33487546:180241 -k1,12368:13403122,33487546:180242 -k1,12368:16251334,33487546:180241 -k1,12368:17807176,33487546:180241 -k1,12368:19006503,33487546:180242 -k1,12368:20841528,33487546:180241 -k1,12368:22623470,33487546:180242 -k1,12368:26108692,33487546:180241 -k1,12368:27802160,33487546:180242 -k1,12368:29798404,33487546:180241 -k1,12368:32583029,33487546:0 -) -(1,12369:6630773,34329034:25952256,505283,126483 -k1,12368:8046744,34329034:224526 -k1,12368:9737966,34329034:224526 -k1,12368:12836246,34329034:224526 -k1,12368:15902413,34329034:224526 -k1,12368:17318385,34329034:224527 -k1,12368:21308610,34329034:224526 -k1,12368:24374777,34329034:224526 -k1,12368:25590863,34329034:224526 -k1,12368:28573799,34329034:224526 -k1,12368:30684451,34329034:224526 -k1,12369:32583029,34329034:0 -) -(1,12369:6630773,35170522:25952256,473825,7863 -g1,12368:9108034,35170522 -k1,12369:32583028,35170522:23301324 -g1,12369:32583028,35170522 -) -(1,12390:6630773,40864759:25952256,4986268,0 -k1,12390:7879722,40864759:1248949 -(1,12370:7879722,40864759:0,0,0 -g1,12370:7879722,40864759 -g1,12370:7879722,40864759 -g1,12370:7552042,40864759 -(1,12370:7552042,40864759:0,0,0 -) -g1,12370:7879722,40864759 -) -(1,12388:7879722,40864759:23454359,4986268,0 -g1,12388:10996008,40864759 -(1,12388:10996008,36506945:0,0,0 -(1,12388:10996008,36506945:0,0,0 -g1,12372:10996008,36506945 -(1,12373:10996008,36506945:0,0,0 -(1,12373:10996008,36506945:0,0,0 -g1,12373:10996008,36506945 -g1,12373:10996008,36506945 -g1,12373:10996008,36506945 -g1,12373:10996008,36506945 -g1,12373:10996008,36506945 -(1,12373:10996008,36506945:0,0,0 -(1,12373:10996008,36506945:4940249,454754,104590 -(1,12373:10996008,36506945:4940249,454754,104590 -g1,12373:12927092,36506945 -$1,12373:12927092,36506945 -$1,12373:13534611,36506945 -g1,12373:13713918,36506945 -(1,12373:13713918,36506945:0,414307,104590 -r1,12396:15936257,36506945:2222339,518897,104590 -k1,12373:13713918,36506945:-2222339 -) -(1,12373:13713918,36506945:2222339,414307,104590 -k1,12373:13713918,36506945:3277 -h1,12373:15932980,36506945:0,370085,101313 -) -) -g1,12373:15936257,36506945 -) -) -g1,12373:10996008,36506945 -g1,12373:10996008,36506945 -) -) -g1,12373:10996008,36506945 -(1,12374:10996008,36506945:0,0,0 -(1,12374:10996008,36506945:0,0,0 -g1,12374:10996008,36506945 -g1,12374:10996008,36506945 -g1,12374:10996008,36506945 -g1,12374:10996008,36506945 -g1,12374:10996008,36506945 -(1,12374:10996008,36506945:0,0,0 -(1,12374:10996008,36506945:5813184,454754,104590 -(1,12374:10996008,36506945:5813184,454754,104590 -g1,12374:14749649,36506945 -$1,12374:14749649,36506945 -$1,12374:15357168,36506945 -g1,12374:15536475,36506945 -(1,12374:15536475,36506945:0,408008,104590 -r1,12396:16809192,36506945:1272717,512598,104590 -k1,12374:15536475,36506945:-1272717 -) -(1,12374:15536475,36506945:1272717,408008,104590 -k1,12374:15536475,36506945:3277 -h1,12374:16805915,36506945:0,370085,101313 -) -) -g1,12374:16809192,36506945 -) -) -g1,12374:10996008,36506945 -g1,12374:10996008,36506945 -) -) -g1,12374:10996008,36506945 -(1,12375:10996008,36506945:0,0,0 -(1,12375:10996008,36506945:0,0,0 -g1,12375:10996008,36506945 -g1,12375:10996008,36506945 -g1,12375:10996008,36506945 -g1,12375:10996008,36506945 -g1,12375:10996008,36506945 -(1,12375:10996008,36506945:0,0,0 -(1,12375:10996008,36506945:5356075,454754,120913 -(1,12375:10996008,36506945:5356075,454754,120913 -g1,12375:13342918,36506945 -$1,12375:13342918,36506945 -$1,12375:13950437,36506945 -g1,12375:14129744,36506945 -(1,12375:14129744,36506945:0,408008,110889 -r1,12396:16352083,36506945:2222339,518897,110889 -k1,12375:14129744,36506945:-2222339 -) -(1,12375:14129744,36506945:2222339,408008,110889 -k1,12375:14129744,36506945:3277 -h1,12375:16348806,36506945:0,370085,101313 -) -) -g1,12375:16352083,36506945 -) -) -g1,12375:10996008,36506945 -g1,12375:10996008,36506945 -) -) -g1,12375:10996008,36506945 -(1,12376:10996008,36506945:0,0,0 -(1,12376:10996008,36506945:0,0,0 -g1,12376:10996008,36506945 -g1,12376:10996008,36506945 -g1,12376:10996008,36506945 -g1,12376:10996008,36506945 -g1,12376:10996008,36506945 -(1,12376:10996008,36506945:0,0,0 -(1,12376:10996008,36506945:1272717,408008,104590 -(1,12376:10996008,36506945:1272717,408008,104590 -(1,12376:10996008,36506945:0,408008,104590 -r1,12396:12268725,36506945:1272717,512598,104590 -k1,12376:10996008,36506945:-1272717 -) -(1,12376:10996008,36506945:1272717,408008,104590 -k1,12376:10996008,36506945:3277 -h1,12376:12265448,36506945:0,370085,101313 -) -) -g1,12376:12268725,36506945 -) -) -g1,12376:10996008,36506945 -g1,12376:10996008,36506945 +] ) +g1,11038:36675916,2439708 +(1,11038:36675916,2439708:1179648,16384,0 +r1,11911:37855564,2439708:1179648,16384,0 ) -g1,12376:10996008,36506945 -(1,12377:10996008,36506945:0,0,0 -(1,12377:10996008,36506945:0,0,0 -g1,12377:10996008,36506945 -g1,12377:10996008,36506945 -g1,12377:10996008,36506945 -g1,12377:10996008,36506945 -g1,12377:10996008,36506945 -(1,12377:10996008,36506945:0,0,0 -(1,12377:10996008,36506945:2550076,454754,120913 -(1,12377:10996008,36506945:2550076,454754,120913 -(1,12377:10996008,36506945:0,408008,104590 -r1,12396:11635643,36506945:639635,512598,104590 -k1,12377:10996008,36506945:-639635 -) -(1,12377:10996008,36506945:639635,408008,104590 -k1,12377:10996008,36506945:3277 -h1,12377:11632366,36506945:0,370085,101313 -) -g1,12377:11814950,36506945 -) -g1,12377:13546084,36506945 -) -) -g1,12377:10996008,36506945 -g1,12377:10996008,36506945 -) -) -g1,12377:10996008,36506945 -(1,12378:10996008,36506945:0,0,0 -(1,12378:10996008,36506945:0,0,0 -g1,12378:10996008,36506945 -g1,12378:10996008,36506945 -g1,12378:10996008,36506945 -g1,12378:10996008,36506945 -g1,12378:10996008,36506945 -(1,12378:10996008,36506945:0,0,0 -(1,12378:10996008,36506945:2855420,408008,104590 -(1,12378:10996008,36506945:2855420,408008,104590 -(1,12378:10996008,36506945:0,408008,104590 -r1,12396:13851428,36506945:2855420,512598,104590 -k1,12378:10996008,36506945:-2855420 -) -(1,12378:10996008,36506945:2855420,408008,104590 -k1,12378:10996008,36506945:3277 -h1,12378:13848151,36506945:0,370085,101313 -) -) -g1,12378:13851428,36506945 -) -) -g1,12378:10996008,36506945 -g1,12378:10996008,36506945 -) -) -g1,12378:10996008,36506945 -(1,12379:10996008,36506945:0,0,0 -(1,12379:10996008,36506945:0,0,0 -g1,12379:10996008,36506945 -g1,12379:10996008,36506945 -g1,12379:10996008,36506945 -g1,12379:10996008,36506945 -g1,12379:10996008,36506945 -(1,12379:10996008,36506945:0,0,0 -(1,12379:10996008,36506945:2222339,408008,104590 -(1,12379:10996008,36506945:2222339,408008,104590 -(1,12379:10996008,36506945:0,408008,104590 -r1,12396:13218347,36506945:2222339,512598,104590 -k1,12379:10996008,36506945:-2222339 -) -(1,12379:10996008,36506945:2222339,408008,104590 -k1,12379:10996008,36506945:3277 -h1,12379:13215070,36506945:0,370085,101313 -) -) -g1,12379:13218347,36506945 -) -) -g1,12379:10996008,36506945 -g1,12379:10996008,36506945 -) -) -g1,12379:10996008,36506945 -(1,12380:10996008,36506945:0,0,0 -(1,12380:10996008,36506945:0,0,0 -g1,12380:10996008,36506945 -g1,12380:10996008,36506945 -g1,12380:10996008,36506945 -g1,12380:10996008,36506945 -g1,12380:10996008,36506945 -(1,12380:10996008,36506945:0,0,0 -(1,12380:10996008,36506945:1905798,408008,104590 -(1,12380:10996008,36506945:1905798,408008,104590 -(1,12380:10996008,36506945:0,408008,104590 -r1,12396:12901806,36506945:1905798,512598,104590 -k1,12380:10996008,36506945:-1905798 -) -(1,12380:10996008,36506945:1905798,408008,104590 -k1,12380:10996008,36506945:3277 -h1,12380:12898529,36506945:0,370085,101313 -) -) -g1,12380:12901806,36506945 -) -) -g1,12380:10996008,36506945 -g1,12380:10996008,36506945 -) -) -g1,12380:10996008,36506945 -g1,12381:10996008,36506945 -g1,12381:10996008,36506945 -g1,12381:10996008,36506945 -g1,12381:10996008,36506945 -g1,12381:10996008,36506945 -g1,12381:10996008,36506945 -g1,12382:10996008,36506945 -g1,12382:10996008,36506945 -g1,12382:10996008,36506945 -g1,12382:10996008,36506945 -g1,12382:10996008,36506945 -g1,12382:10996008,36506945 -g1,12383:10996008,36506945 -g1,12383:10996008,36506945 -g1,12383:10996008,36506945 -g1,12383:10996008,36506945 -g1,12383:10996008,36506945 -g1,12383:10996008,36506945 -g1,12384:10996008,36506945 -g1,12384:10996008,36506945 -g1,12384:10996008,36506945 -g1,12384:10996008,36506945 -g1,12384:10996008,36506945 -g1,12384:10996008,36506945 -g1,12385:10996008,36506945 -g1,12385:10996008,36506945 -g1,12385:10996008,36506945 -g1,12385:10996008,36506945 -g1,12385:10996008,36506945 -g1,12385:10996008,36506945 -g1,12386:10996008,36506945 -g1,12386:10996008,36506945 -g1,12386:10996008,36506945 -g1,12386:10996008,36506945 -g1,12386:10996008,36506945 -g1,12386:10996008,36506945 -g1,12387:10996008,36506945 -g1,12387:10996008,36506945 -g1,12387:10996008,36506945 -g1,12387:10996008,36506945 -g1,12387:10996008,36506945 -g1,12387:10996008,36506945 -g1,12388:10996008,36506945 -g1,12388:10996008,36506945 -) -g1,12388:10996008,36506945 -) -) -g1,12390:31334081,40864759 -k1,12390:32583029,40864759:1248948 -) -(1,12394:6630773,42340817:25952256,513147,126483 -h1,12392:6630773,42340817:983040,0,0 -k1,12392:9060614,42340817:250114 -k1,12392:13382479,42340817:250113 -k1,12392:14624153,42340817:250114 -k1,12392:16912436,42340817:250113 -k1,12392:17778588,42340817:250114 -k1,12392:18384561,42340817:250113 -k1,12392:20024038,42340817:250114 -k1,12392:22324117,42340817:250113 -k1,12392:23730941,42340817:250114 -k1,12392:25348135,42340817:250113 -k1,12392:26281134,42340817:250114 -k1,12392:28254844,42340817:250113 -k1,12392:29561398,42340817:250114 -k1,12392:31189078,42340817:250113 -k1,12392:32583029,42340817:0 -) -(1,12394:6630773,43182305:25952256,513147,126483 -k1,12392:8880565,43182305:239147 -k1,12392:10067362,43182305:239146 -k1,12392:11773205,43182305:239147 -k1,12392:14886106,43182305:239147 -k1,12392:16316697,43182305:239146 -k1,12392:20321543,43182305:239147 -k1,12392:23402330,43182305:239146 -k1,12392:24257515,43182305:239147 -k1,12392:27338303,43182305:239147 -k1,12392:28260334,43182305:239146 -k1,12392:31386342,43182305:239147 -k1,12392:32583029,43182305:0 -) -(1,12394:6630773,44023793:25952256,513147,7863 -k1,12392:8795908,44023793:177428 -k1,12392:11516787,44023793:177427 -k1,12392:12225712,44023793:177428 -k1,12392:13916366,44023793:177428 -k1,12392:14745222,44023793:177428 -k1,12392:17454305,44023793:177427 -k1,12392:19517204,44023793:177428 -k1,12392:22536273,44023793:177428 -k1,12392:23329739,44023793:177428 -k1,12392:24526251,44023793:177427 -k1,12392:26093042,44023793:177428 -k1,12392:28146766,44023793:177428 -k1,12392:29315754,44023793:177428 -k1,12392:30144609,44023793:177427 -k1,12392:31069803,44023793:177428 -k1,12392:32583029,44023793:0 -) -(1,12394:6630773,44865281:25952256,505283,126483 -k1,12392:7999930,44865281:177712 -k1,12392:8793679,44865281:177711 -k1,12392:10856862,44865281:177712 -k1,12392:12443597,44865281:177711 -k1,12392:14477289,44865281:177712 -k1,12393:17528754,44865281:177711 -k1,12393:18389351,44865281:177712 -k1,12393:22506432,44865281:177712 -k1,12393:23875588,44865281:177711 -k1,12393:25751338,44865281:177712 -k1,12393:29694748,44865281:177711 -k1,12393:31202841,44865281:177712 -k1,12393:32583029,44865281:0 -) -(1,12394:6630773,45706769:25952256,505283,126483 -g1,12393:10138915,45706769 -g1,12393:10989572,45706769 -g1,12393:12207886,45706769 -g1,12393:15543668,45706769 -k1,12394:32583029,45706769:13991937 -g1,12394:32583029,45706769 -) -] -(1,12396:32583029,45706769:0,0,0 -g1,12396:32583029,45706769 -) -) -] -(1,12396:6630773,47279633:25952256,0,0 -h1,12396:6630773,47279633:25952256,0,0 -) -] -(1,12396:4262630,4025873:0,0,0 -[1,12396:-473656,4025873:0,0,0 -(1,12396:-473656,-710413:0,0,0 -(1,12396:-473656,-710413:0,0,0 -g1,12396:-473656,-710413 -) -g1,12396:-473656,-710413 -) -] -) -] -!29912 -}212 -Input:1847:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1848:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1849:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1850:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1851:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1852:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1853:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1854:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1855:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1856:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!952 -{213 -[1,12437:4262630,47279633:28320399,43253760,0 -(1,12437:4262630,4025873:0,0,0 -[1,12437:-473656,4025873:0,0,0 -(1,12437:-473656,-710413:0,0,0 -(1,12437:-473656,-644877:0,0,0 -k1,12437:-473656,-644877:-65536 -) -(1,12437:-473656,4736287:0,0,0 -k1,12437:-473656,4736287:5209943 ) -g1,12437:-473656,-710413 +k1,11911:3078556,2439708:-34777008 ) ] +[1,11911:3078558,4812305:0,0,0 +(1,11911:3078558,49800853:0,16384,2228224 +k1,11911:1358238,49800853:-1720320 +(1,11038:1358238,49800853:1720320,16384,2228224 +(1,11038:1358238,49800853:1179648,16384,0 +r1,11911:2537886,49800853:1179648,16384,0 ) -[1,12437:6630773,47279633:25952256,43253760,0 -[1,12437:6630773,4812305:25952256,786432,0 -(1,12437:6630773,4812305:25952256,513147,126483 -(1,12437:6630773,4812305:25952256,513147,126483 -g1,12437:3078558,4812305 -[1,12437:3078558,4812305:0,0,0 -(1,12437:3078558,2439708:0,1703936,0 -k1,12437:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,12437:2537886,2439708:1179648,16384,0 +g1,11038:3062174,49800853 +(1,11038:3062174,52029077:16384,1703936,0 +[1,11038:3062174,52029077:25952256,1703936,0 +(1,11038:3062174,51504789:25952256,1179648,0 +(1,11038:3062174,51504789:16384,1179648,0 +r1,11911:3078558,51504789:16384,1179648,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,12437:3078558,1915420:16384,1179648,0 -) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +k1,11038:29014430,51504789:25935872 +g1,11038:29014430,51504789 ) ] -) +) ) ) ] -[1,12437:3078558,4812305:0,0,0 -(1,12437:3078558,2439708:0,1703936,0 -g1,12437:29030814,2439708 -g1,12437:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,12437:36151628,1915420:16384,1179648,0 +[1,11911:3078558,4812305:0,0,0 +(1,11911:3078558,49800853:0,16384,2228224 +g1,11911:29030814,49800853 +g1,11911:36135244,49800853 +(1,11038:36135244,49800853:1720320,16384,2228224 +(1,11038:36135244,52029077:16384,1703936,0 +[1,11038:36135244,52029077:25952256,1703936,0 +(1,11038:36135244,51504789:25952256,1179648,0 +(1,11038:36135244,51504789:16384,1179648,0 +r1,11911:36151628,51504789:16384,1179648,0 +) +k1,11038:62087500,51504789:25935872 +g1,11038:62087500,51504789 +) +] +) +g1,11038:36675916,49800853 +(1,11038:36675916,49800853:1179648,16384,0 +r1,11911:37855564,49800853:1179648,16384,0 +) +) +k1,11911:3078556,49800853:-34777008 +) +] +g1,11911:6630773,4812305 +g1,11911:6630773,4812305 +g1,11911:9714897,4812305 +k1,11911:31387653,4812305:21672756 +) +) +] +[1,11911:6630773,45706769:25952256,40108032,0 +(1,11911:6630773,45706769:25952256,40108032,0 +(1,11911:6630773,45706769:0,0,0 +g1,11911:6630773,45706769 +) +[1,11911:6630773,45706769:25952256,40108032,0 +v1,11890:6630773,6254097:0,393216,0 +(1,11890:6630773,10019055:25952256,4158174,196608 +g1,11890:6630773,10019055 +g1,11890:6630773,10019055 +g1,11890:6434165,10019055 +(1,11890:6434165,10019055:0,4158174,196608 +r1,11911:32779637,10019055:26345472,4354782,196608 +k1,11890:6434165,10019055:-26345472 +) +(1,11890:6434165,10019055:26345472,4158174,196608 +[1,11890:6630773,10019055:25952256,3961566,0 +(1,11889:6630773,6481928:25952256,424439,112852 +h1,11889:6630773,6481928:0,0,0 +g1,11889:7626635,6481928 +g1,11889:7958589,6481928 +g1,11889:8290543,6481928 +g1,11889:8622497,6481928 +g1,11889:8954451,6481928 +g1,11889:10282267,6481928 +g1,11889:10946175,6481928 +k1,11889:10946175,6481928:0 +h1,11889:20572839,6481928:0,0,0 +k1,11889:32583029,6481928:12010190 +g1,11889:32583029,6481928 +) +(1,11889:6630773,7166783:25952256,424439,79822 +h1,11889:6630773,7166783:0,0,0 +g1,11889:7626635,7166783 +g1,11889:7958589,7166783 +g1,11889:8290543,7166783 +h1,11889:8622497,7166783:0,0,0 +k1,11889:32583029,7166783:23960532 +g1,11889:32583029,7166783 +) +(1,11889:6630773,7851638:25952256,398014,0 +h1,11889:6630773,7851638:0,0,0 +h1,11889:7294681,7851638:0,0,0 +k1,11889:32583029,7851638:25288348 +g1,11889:32583029,7851638 +) +(1,11889:6630773,8536493:25952256,431045,112852 +h1,11889:6630773,8536493:0,0,0 +g1,11889:7626635,8536493 +g1,11889:8622497,8536493 +g1,11889:10282267,8536493 +g1,11889:13269852,8536493 +g1,11889:13933760,8536493 +g1,11889:15261576,8536493 +g1,11889:16257438,8536493 +g1,11889:17917208,8536493 +g1,11889:19245024,8536493 +g1,11889:21568702,8536493 +g1,11889:22564564,8536493 +g1,11889:25552149,8536493 +g1,11889:26548011,8536493 +g1,11889:28871689,8536493 +g1,11889:30531459,8536493 +h1,11889:31195367,8536493:0,0,0 +k1,11889:32583029,8536493:1387662 +g1,11889:32583029,8536493 +) +(1,11889:6630773,9221348:25952256,431045,112852 +h1,11889:6630773,9221348:0,0,0 +g1,11889:7626635,9221348 +g1,11889:9286405,9221348 +g1,11889:11278129,9221348 +g1,11889:12273991,9221348 +g1,11889:13601807,9221348 +g1,11889:15261577,9221348 +g1,11889:18581116,9221348 +g1,11889:19908932,9221348 +g1,11889:21568702,9221348 +g1,11889:28871688,9221348 +h1,11889:29867550,9221348:0,0,0 +k1,11889:32583029,9221348:2715479 +g1,11889:32583029,9221348 +) +(1,11889:6630773,9906203:25952256,424439,112852 +h1,11889:6630773,9906203:0,0,0 +g1,11889:7626635,9906203 +g1,11889:9950313,9906203 +g1,11889:10614221,9906203 +h1,11889:13601806,9906203:0,0,0 +k1,11889:32583030,9906203:18981224 +g1,11889:32583030,9906203 +) +] +) +g1,11890:32583029,10019055 +g1,11890:6630773,10019055 +g1,11890:6630773,10019055 +g1,11890:32583029,10019055 +g1,11890:32583029,10019055 +) +h1,11890:6630773,10215663:0,0,0 +v1,11894:6630773,11080743:0,393216,0 +(1,11895:6630773,12352648:25952256,1665121,0 +g1,11895:6630773,12352648 +g1,11895:6237557,12352648 +r1,11911:6368629,12352648:131072,1665121,0 +g1,11895:6567858,12352648 +g1,11895:6764466,12352648 +[1,11895:6764466,12352648:25818563,1665121,0 +(1,11895:6764466,11353220:25818563,665693,196608 +(1,11894:6764466,11353220:0,665693,196608 +r1,11911:8010564,11353220:1246098,862301,196608 +k1,11894:6764466,11353220:-1246098 +) +(1,11894:6764466,11353220:1246098,665693,196608 +) +k1,11894:8220088,11353220:209524 +k1,11894:9538017,11353220:327680 +k1,11894:11294190,11353220:209523 +k1,11894:12116475,11353220:209523 +k1,11894:13345084,11353220:209524 +k1,11894:14942661,11353220:209524 +k1,11894:16650337,11353220:209523 +k1,11894:17807512,11353220:209524 +k1,11894:20712531,11353220:209523 +(1,11894:20712531,11353220:0,452978,115847 +r1,11911:24236203,11353220:3523672,568825,115847 +k1,11894:20712531,11353220:-3523672 +) +(1,11894:20712531,11353220:3523672,452978,115847 +k1,11894:20712531,11353220:3277 +h1,11894:24232926,11353220:0,411205,112570 +) +k1,11894:24445727,11353220:209524 +k1,11894:25602901,11353220:209523 +k1,11894:26168285,11353220:209524 +k1,11894:29749635,11353220:209523 +k1,11894:30618451,11353220:209524 +k1,11894:32124932,11353220:209523 +k1,11894:32583029,11353220:0 +) +(1,11895:6764466,12218300:25818563,513147,134348 +g1,11894:7495192,12218300 +g1,11894:10903719,12218300 +g1,11894:12050599,12218300 +g1,11894:13960973,12218300 +g1,11894:14811630,12218300 +g1,11894:16149875,12218300 +g1,11894:16763947,12218300 +g1,11894:18154621,12218300 +g1,11894:21264304,12218300 +g1,11894:23161571,12218300 +g1,11894:25096193,12218300 +k1,11895:32583029,12218300:5674110 +g1,11895:32583029,12218300 +) +] +g1,11895:32583029,12352648 +) +h1,11895:6630773,12352648:0,0,0 +v1,11898:6630773,13217728:0,393216,0 +(1,11899:6630773,23221268:25952256,10396756,0 +g1,11899:6630773,23221268 +g1,11899:6237557,23221268 +r1,11911:6368629,23221268:131072,10396756,0 +g1,11899:6567858,23221268 +g1,11899:6764466,23221268 +[1,11899:6764466,23221268:25818563,10396756,0 +(1,11899:6764466,13578905:25818563,754393,260573 +(1,11898:6764466,13578905:0,754393,260573 +r1,11911:8010564,13578905:1246098,1014966,260573 +k1,11898:6764466,13578905:-1246098 +) +(1,11898:6764466,13578905:1246098,754393,260573 +) +k1,11898:8242158,13578905:231594 +k1,11898:8569838,13578905:327680 +k1,11898:11622756,13578905:231593 +k1,11898:14013761,13578905:231594 +k1,11898:17155808,13578905:231593 +k1,11898:18491684,13578905:231594 +k1,11898:20524207,13578905:231594 +k1,11898:22452527,13578905:231593 +k1,11898:23631772,13578905:231594 +k1,11898:26698452,13578905:231593 +k1,11898:28628084,13578905:231594 +k1,11898:30239865,13578905:231593 +k1,11898:31563944,13578905:231594 +k1,11898:32583029,13578905:0 +) +(1,11899:6764466,14443985:25818563,513147,134348 +k1,11898:8645240,14443985:227301 +k1,11898:10940856,14443985:227300 +k1,11898:12115808,14443985:227301 +k1,11898:14632936,14443985:227300 +k1,11898:15543122,14443985:227301 +k1,11898:18969890,14443985:227300 +k1,11898:21071521,14443985:227301 +k1,11898:22290381,14443985:227300 +k1,11898:25281991,14443985:227301 +k1,11898:27207329,14443985:227300 +k1,11898:28453715,14443985:227301 +k1,11898:31591469,14443985:227300 +k1,11898:32583029,14443985:0 +) +(1,11899:6764466,15309065:25818563,513147,134348 +k1,11898:9661510,15309065:155018 +k1,11898:11048604,15309065:155017 +k1,11898:13482309,15309065:155018 +h1,11898:15025027,15309065:0,0,0 +k1,11898:15180045,15309065:155018 +k1,11898:16144432,15309065:155017 +k1,11898:17797603,15309065:155018 +h1,11898:18992980,15309065:0,0,0 +k1,11898:19147998,15309065:155018 +k1,11898:20250667,15309065:155018 +k1,11898:20761544,15309065:155017 +k1,11898:25182956,15309065:155018 +k1,11898:25965809,15309065:155018 +k1,11898:28960501,15309065:155017 +k1,11898:30867296,15309065:155018 +k1,11899:32583029,15309065:0 +) +(1,11899:6764466,16174145:25818563,513147,134348 +k1,11898:8459385,16174145:287206 +k1,11898:9839076,16174145:287206 +k1,11898:13152079,16174145:287206 +k1,11898:15820862,16174145:287205 +k1,11898:16724106,16174145:287206 +k1,11898:19921766,16174145:287206 +k1,11898:20825010,16174145:287206 +k1,11898:22131301,16174145:287206 +k1,11898:22833262,16174145:287118 +k1,11898:26901894,16174145:287205 +k1,11898:28794732,16174145:287206 +k1,11898:29764823,16174145:287206 +k1,11898:31753999,16174145:287206 +k1,11899:32583029,16174145:0 +) +(1,11899:6764466,17039225:25818563,505283,134348 +k1,11898:10932965,17039225:211435 +k1,11898:14405472,17039225:211436 +k1,11898:17527361,17039225:211435 +k1,11898:18500325,17039225:211436 +k1,11898:21883703,17039225:211435 +k1,11898:23907864,17039225:211435 +k1,11898:26722390,17039225:211436 +k1,11898:27585253,17039225:211435 +k1,11898:32583029,17039225:0 +) +(1,11899:6764466,17904305:25818563,513147,134348 +k1,11898:9902985,17904305:228065 +k1,11898:11235332,17904305:228065 +k1,11898:13848253,17904305:228066 +k1,11898:15999144,17904305:228065 +k1,11898:21127991,17904305:228065 +k1,11898:22375141,17904305:228065 +k1,11898:25994039,17904305:228065 +k1,11898:29132559,17904305:228066 +k1,11898:30043509,17904305:228065 +k1,11898:31923737,17904305:228065 +k1,11898:32583029,17904305:0 +) +(1,11899:6764466,18769385:25818563,505283,134348 +k1,11898:8824540,18769385:247348 +k1,11898:10268574,18769385:247347 +k1,11898:13202243,18769385:247348 +k1,11898:15631285,18769385:247348 +k1,11898:16640160,18769385:247347 +k1,11898:18692322,18769385:247300 +k1,11898:21232775,18769385:247348 +k1,11898:22973688,18769385:247347 +k1,11898:26227828,18769385:247348 +k1,11898:27091214,18769385:247348 +k1,11898:28940261,18769385:247347 +k1,11898:30884991,18769385:247348 +k1,11898:32583029,18769385:0 +) +(1,11899:6764466,19634465:25818563,513147,134348 +k1,11898:9535262,19634465:190644 +k1,11898:12591140,19634465:190644 +k1,11898:13773345,19634465:190645 +k1,11898:17386279,19634465:190644 +k1,11898:19848401,19634465:190644 +k1,11898:22619197,19634465:190644 +k1,11898:26596511,19634465:190644 +k1,11898:27438584,19634465:190645 +k1,11898:28424835,19634465:190644 +k1,11898:31622271,19634465:190644 +k1,11899:32583029,19634465:0 +) +(1,11899:6764466,20499545:25818563,513147,134348 +k1,11898:8214305,20499545:154848 +k1,11898:12150579,20499545:154847 +k1,11898:14863953,20499545:154848 +k1,11898:16823618,20499545:154803 +k1,11898:17509963,20499545:154848 +k1,11898:20468441,20499545:154848 +k1,11898:23557990,20499545:154847 +k1,11898:24178799,20499545:154848 +k1,11898:25504120,20499545:154848 +k1,11898:26751452,20499545:154847 +k1,11898:28608270,20499545:154848 +k1,11898:32583029,20499545:0 +) +(1,11899:6764466,21364625:25818563,513147,126483 +k1,11898:7221449,21364625:243991 +k1,11898:11252155,21364625:244036 +k1,11898:12780698,21364625:244037 +k1,11898:14195207,21364625:244036 +k1,11898:16154976,21364625:244036 +k1,11898:17779856,21364625:244036 +k1,11898:19308398,21364625:244036 +k1,11898:21844883,21364625:244036 +k1,11898:25403731,21364625:244037 +k1,11898:26113728,21364625:244036 +k1,11898:28243890,21364625:244036 +k1,11898:32583029,21364625:0 +) +(1,11899:6764466,22229705:25818563,513147,126483 +k1,11898:9583989,22229705:155484 +k1,11898:10554741,22229705:155484 +k1,11898:12306682,22229705:155484 +k1,11898:13856117,22229705:155484 +k1,11898:15470432,22229705:155484 +k1,11898:16956297,22229705:155484 +k1,11898:18781639,22229705:155485 +k1,11898:20979880,22229705:155484 +k1,11898:22644003,22229705:155484 +k1,11898:23891972,22229705:155484 +k1,11898:24663494,22229705:155484 +k1,11898:28959543,22229705:155484 +k1,11898:32583029,22229705:0 +) +(1,11899:6764466,23094785:25818563,505283,126483 +g1,11898:8353058,23094785 +k1,11899:32583029,23094785:21355562 +g1,11899:32583029,23094785 +) +] +g1,11899:32583029,23221268 +) +h1,11899:6630773,23221268:0,0,0 +(1,11901:6630773,25338086:25952256,555811,147783 +(1,11901:6630773,25338086:2450326,534184,12975 +g1,11901:6630773,25338086 +g1,11901:9081099,25338086 +) +g1,11901:12040378,25338086 +g1,11901:15130860,25338086 +k1,11901:32583029,25338086:14104328 +g1,11901:32583029,25338086 +) +(1,11904:6630773,26596382:25952256,513147,134348 +k1,11903:8064281,26596382:168008 +k1,11903:8883717,26596382:168008 +k1,11903:10070811,26596382:168009 +k1,11903:11809717,26596382:168008 +k1,11903:14463506,26596382:168008 +k1,11903:15290806,26596382:168008 +k1,11903:19188469,26596382:168009 +k1,11903:19771289,26596382:167977 +k1,11903:22849751,26596382:168008 +k1,11903:23475856,26596382:168008 +k1,11903:24748146,26596382:168008 +k1,11903:28364004,26596382:168009 +k1,11903:29279778,26596382:168008 +k1,11903:31931601,26596382:168008 +k1,11903:32583029,26596382:0 +) +(1,11904:6630773,27461462:25952256,513147,134348 +k1,11903:8087947,27461462:191018 +k1,11903:8634825,27461462:191018 +k1,11903:11337838,27461462:191018 +k1,11903:14109008,27461462:191018 +k1,11903:15247677,27461462:191018 +k1,11903:15794555,27461462:191018 +k1,11903:17321197,27461462:191018 +k1,11903:18124977,27461462:191018 +k1,11903:20095954,27461462:191019 +k1,11903:20756865,27461462:191018 +k1,11903:21479380,27461462:191018 +k1,11903:23254403,27461462:191018 +k1,11903:24096849,27461462:191018 +k1,11903:25594000,27461462:191018 +k1,11903:27606919,27461462:191018 +k1,11903:28263898,27461462:191018 +k1,11903:29474001,27461462:191018 +k1,11903:32583029,27461462:0 +) +(1,11904:6630773,28326542:25952256,505283,134348 +k1,11903:10016371,28326542:293609 +k1,11903:10841477,28326542:293609 +k1,11903:13469478,28326542:293609 +k1,11903:15241580,28326542:293610 +k1,11903:16802655,28326542:293609 +k1,11903:18530192,28326542:293609 +k1,11903:19412314,28326542:293609 +k1,11903:21138540,28326542:293609 +k1,11903:21846898,28326542:293515 +k1,11903:23511520,28326542:293609 +k1,11903:24824214,28326542:293609 +k1,11903:29672575,28326542:293609 +k1,11903:32583029,28326542:0 +) +(1,11904:6630773,29191622:25952256,513147,134348 +k1,11903:9775191,29191622:199885 +k1,11903:11673114,29191622:199885 +k1,11903:12287841,29191622:199884 +k1,11903:13019223,29191622:199885 +k1,11903:16163641,29191622:199885 +k1,11903:18084500,29191622:199884 +k1,11903:18640245,29191622:199885 +k1,11903:19696686,29191622:199885 +k1,11903:20555863,29191622:199885 +k1,11903:23236941,29191622:199885 +k1,11903:24265856,29191622:199885 +k1,11903:26895815,29191622:199884 +k1,11903:28485063,29191622:199885 +k1,11903:30420341,29191622:199885 +k1,11903:32583029,29191622:0 +) +(1,11904:6630773,30056702:25952256,513147,126483 +k1,11903:7995636,30056702:233056 +k1,11903:8887984,30056702:233056 +k1,11903:10140125,30056702:233056 +k1,11903:12023378,30056702:233056 +k1,11903:15033850,30056702:233056 +k1,11903:18351030,30056702:233056 +k1,11903:21368711,30056702:233056 +k1,11903:23094677,30056702:233056 +k1,11903:24394004,30056702:233056 +k1,11903:26918854,30056702:233056 +k1,11903:28170995,30056702:233056 +k1,11903:29496536,30056702:233056 +k1,11903:30388884,30056702:233056 +k1,11903:32583029,30056702:0 +) +(1,11904:6630773,30921782:25952256,513147,134348 +k1,11903:9926824,30921782:211927 +k1,11903:13785174,30921782:211927 +k1,11903:17726755,30921782:211927 +k1,11903:20849136,30921782:211927 +k1,11903:24017392,30921782:211927 +k1,11903:24912204,30921782:211927 +k1,11903:27276333,30921782:211927 +k1,11903:28507345,30921782:211927 +k1,11903:32583029,30921782:0 +) +(1,11904:6630773,31786862:25952256,513147,134348 +k1,11903:7406628,31786862:159817 +k1,11903:9000373,31786862:159817 +k1,11903:9574994,31786862:159778 +k1,11903:11128762,31786862:159817 +k1,11903:14701039,31786862:159817 +k1,11903:16644090,31786862:159816 +k1,11903:17960617,31786862:159817 +k1,11903:21181621,31786862:159817 +k1,11903:22360523,31786862:159817 +k1,11903:23612825,31786862:159817 +k1,11903:24431934,31786862:159817 +k1,11903:26310760,31786862:159817 +k1,11903:27153462,31786862:159817 +k1,11903:30866641,31786862:159817 +k1,11903:32583029,31786862:0 +) +(1,11904:6630773,32651942:25952256,513147,134348 +k1,11903:7464744,32651942:174679 +k1,11903:9028785,32651942:174678 +k1,11903:11931728,32651942:174679 +k1,11903:13125491,32651942:174678 +k1,11903:14392655,32651942:174679 +k1,11903:15226625,32651942:174678 +k1,11903:19130958,32651942:174679 +k1,11903:22216090,32651942:174678 +k1,11903:23495051,32651942:174679 +k1,11903:24417495,32651942:174678 +k1,11903:28633779,32651942:174679 +k1,11903:30298746,32651942:174678 +k1,11903:31089463,32651942:174679 +k1,11903:32583029,32651942:0 +) +(1,11904:6630773,33517022:25952256,513147,102891 +k1,11903:8762105,33517022:260279 +k1,11903:9480480,33517022:260278 +k1,11903:10272256,33517022:260279 +k1,11903:11598806,33517022:260279 +k1,11903:14409745,33517022:260278 +k1,11903:15321452,33517022:260279 +k1,11903:17056946,33517022:260279 +k1,11903:21034427,33517022:260279 +k1,11903:21946133,33517022:260278 +k1,11903:24421529,33517022:260279 +k1,11903:26249429,33517022:260279 +k1,11903:28519696,33517022:260278 +k1,11903:29799060,33517022:260279 +k1,11903:32583029,33517022:0 +) +(1,11904:6630773,34382102:25952256,513147,134348 +k1,11903:10641380,34382102:280953 +k1,11903:14006457,34382102:280953 +k1,11903:17760162,34382102:280952 +k1,11903:20264096,34382102:280953 +k1,11903:21227934,34382102:280953 +k1,11903:23389770,34382102:280953 +k1,11903:24330015,34382102:280953 +k1,11903:27521421,34382102:280952 +k1,11903:28793934,34382102:280953 +k1,11903:31931601,34382102:280953 +k1,11903:32583029,34382102:0 +) +(1,11904:6630773,35247182:25952256,505283,134348 +g1,11903:8426459,35247182 +g1,11903:9904295,35247182 +k1,11904:32583028,35247182:19824640 +g1,11904:32583028,35247182 +) +(1,11906:6630773,36112262:25952256,505283,126483 +h1,11905:6630773,36112262:983040,0,0 +k1,11905:8948021,36112262:137521 +k1,11905:10890343,36112262:137460 +k1,11905:14311219,36112262:137522 +k1,11905:15549745,36112262:137521 +k1,11905:17041240,36112262:137521 +k1,11905:19038674,36112262:137522 +k1,11905:21002683,36112262:137521 +k1,11905:22331650,36112262:137522 +k1,11905:25137142,36112262:137521 +k1,11905:25630523,36112262:137521 +k1,11905:28046732,36112262:137522 +k1,11905:30052029,36112262:137521 +k1,11906:32583029,36112262:0 +) +(1,11906:6630773,36977342:25952256,513147,134348 +k1,11905:7185481,36977342:139865 +k1,11905:9082426,36977342:139925 +k1,11905:10213910,36977342:139924 +k1,11905:11622611,36977342:139924 +k1,11905:13590989,36977342:139924 +k1,11905:16803897,36977342:139925 +k1,11905:20161639,36977342:139924 +k1,11905:21625390,36977342:139924 +k1,11905:22424606,36977342:139924 +k1,11905:25474984,36977342:139924 +k1,11905:28919890,36977342:139925 +k1,11905:30573040,36977342:139924 +k1,11905:32583029,36977342:0 +) +(1,11906:6630773,37842422:25952256,513147,134348 +k1,11905:7301682,37842422:315049 +k1,11905:9311493,37842422:315050 +k1,11905:11030323,37842422:315049 +k1,11905:12004664,37842422:315049 +k1,11905:15199366,37842422:315050 +k1,11905:19240137,37842422:315049 +k1,11905:20238072,37842422:315050 +k1,11905:22950428,37842422:315049 +k1,11905:27330020,37842422:315049 +k1,11905:29519400,37842422:315050 +k1,11905:31591469,37842422:315049 +k1,11905:32583029,37842422:0 +) +(1,11906:6630773,38707502:25952256,530548,132809 +k1,11905:8885571,38707502:260537 +k1,11905:10337553,38707502:260537 +k1,11905:13235259,38707502:260537 +k1,11905:14257324,38707502:260537 +k1,11905:17280204,38707502:260537 +k1,11905:19953778,38707502:260538 +k1,11905:21772106,38707502:260537 +k1,11905:23136925,38707502:260537 +k1,11905:24145228,38707502:260537 +k1,11905:26315484,38707502:260537 +k1,11905:27188783,38707502:260537 +$1,11905:27188783,38707502 +k1,11905:29263493,38707502:0 +k1,11905:29678435,38707502:0 +k1,11905:30093377,38707502:0 +k1,11905:30508319,38707502:0 +k1,11905:32168087,38707502:0 +k1,11906:32583029,38707502:0 +) +(1,11906:6630773,39572582:25952256,530548,141067 +(1,11905:7460657,39670896:32768,0,0 +) +g1,11905:10398019,39572582 +g1,11905:10812961,39572582 +g1,11905:12057787,39572582 +g1,11905:12472729,39572582 +g1,11905:13717555,39572582 +g1,11905:14132497,39572582 +$1,11905:16622149,39572582 +k1,11906:32583029,39572582:15787210 +g1,11906:32583029,39572582 +) +(1,11908:6630773,40437662:25952256,513147,126483 +h1,11907:6630773,40437662:983040,0,0 +k1,11907:9077166,40437662:266666 +k1,11907:13590565,40437662:266666 +k1,11907:17140585,40437662:266666 +k1,11907:20870173,40437662:266666 +k1,11907:21752877,40437662:266666 +k1,11907:26677187,40437662:266666 +k1,11907:28337804,40437662:266666 +k1,11907:29192983,40437662:266666 +k1,11907:29929542,40437662:266666 +k1,11907:31482024,40437662:266666 +k1,11907:32583029,40437662:0 +) +(1,11908:6630773,41302742:25952256,513147,126483 +k1,11907:7204813,41302742:218180 +k1,11907:9701681,41302742:218181 +k1,11907:11313812,41302742:218180 +k1,11907:13889322,41302742:218180 +k1,11907:15298947,41302742:218180 +k1,11907:17527117,41302742:218181 +k1,11907:18377064,41302742:218180 +k1,11907:22535268,41302742:218180 +k1,11907:23412740,41302742:218180 +k1,11907:26393264,41302742:218181 +k1,11907:28000807,41302742:218180 +k1,11907:30773580,41302742:218180 +k1,11908:32583029,41302742:0 +) +(1,11908:6630773,42167822:25952256,513147,134348 +k1,11907:8755942,42167822:271155 +k1,11907:10223784,42167822:271155 +k1,11907:13771740,42167822:271156 +k1,11907:15034455,42167822:271155 +k1,11907:18413327,42167822:271155 +k1,11907:20268487,42167822:271155 +k1,11907:21225804,42167822:271155 +k1,11907:22877147,42167822:271155 +k1,11907:25049502,42167822:271156 +k1,11907:27206128,42167822:271155 +k1,11907:28742128,42167822:271155 +k1,11907:29672575,42167822:271155 +k1,11907:32583029,42167822:0 +) +(1,11908:6630773,43032902:25952256,530548,134348 +k1,11907:8432082,43032902:204852 +k1,11907:9915541,43032902:204852 +k1,11907:12974487,43032902:204853 +k1,11907:15053669,43032902:204852 +k1,11907:17015541,43032902:204852 +k1,11907:18324675,43032902:204852 +k1,11907:19277294,43032902:204853 +k1,11907:21391865,43032902:204852 +k1,11907:22209479,43032902:204852 +$1,11907:22209479,43032902 +k1,11907:24284189,43032902:0 +k1,11907:24699131,43032902:0 +k1,11907:25114073,43032902:0 +k1,11907:25529015,43032902:0 +k1,11907:26773841,43032902:0 +k1,11907:27188783,43032902:0 +k1,11907:32168087,43032902:0 +k1,11908:32583029,43032902:0 +) +(1,11908:6630773,43897982:25952256,530548,141067 +g1,11907:7875599,43897982 +g1,11907:8290541,43897982 +g1,11907:11610077,43897982 +g1,11907:12025019,43897982 +g1,11907:14929613,43897982 +g1,11907:15344555,43897982 +g1,11907:19079033,43897982 +g1,11907:19493975,43897982 +$1,11907:21153743,43897982 +k1,11908:32583029,43897982:11255616 +g1,11908:32583029,43897982 +) +(1,11910:6630773,44763062:25952256,513147,134348 +h1,11909:6630773,44763062:983040,0,0 +k1,11909:10795467,44763062:218771 +k1,11909:14041346,44763062:218771 +k1,11909:15753027,44763062:218771 +k1,11909:17038069,44763062:218771 +k1,11909:18764823,44763062:218771 +k1,11909:19339454,44763062:218771 +k1,11909:22260930,44763062:218771 +k1,11909:25059853,44763062:218771 +k1,11909:28561978,44763062:218771 +k1,11909:29728400,44763062:218771 +k1,11909:30966256,44763062:218771 +k1,11910:32583029,44763062:0 +) +] +(1,11911:32583029,45706769:0,0,0 +g1,11911:32583029,45706769 +) +) +] +(1,11911:6630773,47279633:25952256,0,0 +h1,11911:6630773,47279633:25952256,0,0 +) +] +(1,11911:4262630,4025873:0,0,0 +[1,11911:-473656,4025873:0,0,0 +(1,11911:-473656,-710413:0,0,0 +(1,11911:-473656,-710413:0,0,0 +g1,11911:-473656,-710413 +) +g1,11911:-473656,-710413 +) +] +) +] +!24593 +}190 +Input:1744:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1745:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!200 +{191 +[1,11924:4262630,47279633:28320399,43253760,0 +(1,11924:4262630,4025873:0,0,0 +[1,11924:-473656,4025873:0,0,0 +(1,11924:-473656,-710413:0,0,0 +(1,11924:-473656,-644877:0,0,0 +k1,11924:-473656,-644877:-65536 +) +(1,11924:-473656,4736287:0,0,0 +k1,11924:-473656,4736287:5209943 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +g1,11924:-473656,-710413 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,12437:37855564,2439708:1179648,16384,0 +[1,11924:6630773,47279633:25952256,43253760,0 +[1,11924:6630773,4812305:25952256,786432,0 +(1,11924:6630773,4812305:25952256,505283,134348 +(1,11924:6630773,4812305:25952256,505283,134348 +g1,11924:3078558,4812305 +[1,11924:3078558,4812305:0,0,0 +(1,11924:3078558,2439708:0,1703936,0 +k1,11924:1358238,2439708:-1720320 +(1,11038:1358238,2439708:1720320,1703936,0 +(1,11038:1358238,2439708:1179648,16384,0 +r1,11924:2537886,2439708:1179648,16384,0 ) +g1,11038:3062174,2439708 +(1,11038:3062174,2439708:16384,1703936,0 +[1,11038:3062174,2439708:25952256,1703936,0 +(1,11038:3062174,1915420:25952256,1179648,0 +(1,11038:3062174,1915420:16384,1179648,0 +r1,11924:3078558,1915420:16384,1179648,0 ) -k1,12437:3078556,2439708:-34777008 +k1,11038:29014430,1915420:25935872 +g1,11038:29014430,1915420 ) ] -[1,12437:3078558,4812305:0,0,0 -(1,12437:3078558,49800853:0,16384,2228224 -k1,12437:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,12437:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,12437:3078558,51504789:16384,1179648,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 ) ] +[1,11924:3078558,4812305:0,0,0 +(1,11924:3078558,2439708:0,1703936,0 +g1,11924:29030814,2439708 +g1,11924:36135244,2439708 +(1,11038:36135244,2439708:1720320,1703936,0 +(1,11038:36135244,2439708:16384,1703936,0 +[1,11038:36135244,2439708:25952256,1703936,0 +(1,11038:36135244,1915420:25952256,1179648,0 +(1,11038:36135244,1915420:16384,1179648,0 +r1,11924:36151628,1915420:16384,1179648,0 +) +k1,11038:62087500,1915420:25935872 +g1,11038:62087500,1915420 ) -) -) -] -[1,12437:3078558,4812305:0,0,0 -(1,12437:3078558,49800853:0,16384,2228224 -g1,12437:29030814,49800853 -g1,12437:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,12437:36151628,51504789:16384,1179648,0 -) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 -) -] -) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,12437:37855564,49800853:1179648,16384,0 -) -) -k1,12437:3078556,49800853:-34777008 -) -] -g1,12437:6630773,4812305 -k1,12437:19540057,4812305:11713907 -g1,12437:21162728,4812305 -g1,12437:21985204,4812305 -g1,12437:24539797,4812305 -g1,12437:25949476,4812305 -g1,12437:28728857,4812305 -g1,12437:29852144,4812305 -) -) -] -[1,12437:6630773,45706769:25952256,40108032,0 -(1,12437:6630773,45706769:25952256,40108032,0 -(1,12437:6630773,45706769:0,0,0 -g1,12437:6630773,45706769 -) -[1,12437:6630773,45706769:25952256,40108032,0 -v1,12396:6630773,6254097:0,393216,0 -(1,12397:6630773,11799446:25952256,5938565,0 -g1,12397:6630773,11799446 -g1,12397:6303093,11799446 -r1,12437:6401397,11799446:98304,5938565,0 -g1,12397:6600626,11799446 -g1,12397:6797234,11799446 -[1,12397:6797234,11799446:25785795,5938565,0 -(1,12397:6797234,6616170:25785795,755289,196608 -(1,12396:6797234,6616170:0,755289,196608 -r1,12437:8134168,6616170:1336934,951897,196608 -k1,12396:6797234,6616170:-1336934 -) -(1,12396:6797234,6616170:1336934,755289,196608 -) -k1,12396:8273650,6616170:139482 -k1,12396:8601330,6616170:327680 -k1,12396:11271813,6616170:139483 -k1,12396:12402855,6616170:139482 -k1,12396:16919488,6616170:139483 -k1,12396:19283262,6616170:139482 -k1,12396:20935970,6616170:139482 -k1,12396:21726881,6616170:139483 -k1,12396:23319952,6616170:139482 -k1,12396:24478520,6616170:139483 -k1,12396:26764961,6616170:139482 -k1,12396:28599205,6616170:139483 -k1,12396:29390115,6616170:139482 -k1,12396:32583029,6616170:0 -) -(1,12397:6797234,7457658:25785795,513147,134348 -k1,12396:9874040,7457658:182736 -k1,12396:11754814,7457658:182736 -k1,12396:13872173,7457658:182736 -k1,12396:14410769,7457658:182736 -k1,12396:16581212,7457658:182736 -k1,12396:17415376,7457658:182736 -k1,12396:21669865,7457658:182737 -k1,12396:23137107,7457658:182736 -k1,12396:24311403,7457658:182736 -k1,12396:25560410,7457658:182736 -k1,12396:28036906,7457658:182736 -k1,12396:32095441,7457658:182736 -k1,12396:32583029,7457658:0 -) -(1,12397:6797234,8299146:25785795,513147,134348 -k1,12396:9758544,8299146:222560 -k1,12396:11348185,8299146:222560 -k1,12396:12102243,8299146:222561 -k1,12396:14259426,8299146:222560 -k1,12396:14837846,8299146:222560 -k1,12396:17048113,8299146:222560 -k1,12396:19006066,8299146:222560 -k1,12396:19636261,8299146:222561 -k1,12396:20541706,8299146:222560 -k1,12396:23638020,8299146:222560 -k1,12396:25871225,8299146:222560 -k1,12396:27378291,8299146:222560 -k1,12396:28592412,8299146:222561 -k1,12396:30266594,8299146:222560 -k1,12396:30845014,8299146:222560 -k1,12396:32583029,8299146:0 -) -(1,12397:6797234,9140634:25785795,513147,126483 -k1,12396:10236236,9140634:210043 -k1,12396:12013900,9140634:210043 -k1,12396:15538098,9140634:210042 -k1,12396:18510484,9140634:210043 -k1,12396:21536609,9140634:210043 -k1,12396:22405944,9140634:210043 -k1,12396:25808900,9140634:210042 -k1,12396:30865986,9140634:210043 -k1,12396:32583029,9140634:0 -) -(1,12397:6797234,9982122:25785795,513147,134348 -k1,12396:9004335,9982122:219394 -k1,12396:9911203,9982122:219395 -k1,12396:13156394,9982122:219394 -k1,12396:16163690,9982122:219394 -k1,12396:17402170,9982122:219395 -k1,12396:20241038,9982122:219394 -k1,12396:21532601,9982122:219394 -k1,12396:22368033,9982122:219394 -k1,12396:24189128,9982122:219395 -k1,12396:26105904,9982122:219394 -k1,12396:27705486,9982122:219394 -k1,12396:28916441,9982122:219395 -k1,12396:31896867,9982122:219394 -k1,12396:32583029,9982122:0 -) -(1,12397:6797234,10823610:25785795,513147,134348 -k1,12396:7750453,10823610:182516 -k1,12396:11005296,10823610:182515 -k1,12396:11839240,10823610:182516 -k1,12396:15302488,10823610:182516 -(1,12396:15302488,10823610:0,452978,122846 -r1,12437:17771025,10823610:2468537,575824,122846 -k1,12396:15302488,10823610:-2468537 -) -(1,12396:15302488,10823610:2468537,452978,122846 -k1,12396:15302488,10823610:3277 -h1,12396:17767748,10823610:0,411205,112570 -) -k1,12396:18127210,10823610:182515 -k1,12396:19069944,10823610:182516 -k1,12396:21691709,10823610:182515 -(1,12396:21691709,10823610:0,452978,122846 -r1,12437:24160246,10823610:2468537,575824,122846 -k1,12396:21691709,10823610:-2468537 -) -(1,12396:21691709,10823610:2468537,452978,122846 -k1,12396:21691709,10823610:3277 -h1,12396:24156969,10823610:0,411205,112570 -) -k1,12396:24342762,10823610:182516 -k1,12396:26000493,10823610:182516 -k1,12396:26538868,10823610:182515 -k1,12396:28401727,10823610:182516 -k1,12396:29251399,10823610:182516 -(1,12396:29251399,10823610:0,435480,115847 -r1,12437:29609665,10823610:358266,551327,115847 -k1,12396:29251399,10823610:-358266 -) -(1,12396:29251399,10823610:358266,435480,115847 -k1,12396:29251399,10823610:3277 -h1,12396:29606388,10823610:0,411205,112570 -) -k1,12396:29792180,10823610:182515 -k1,12396:31166141,10823610:182516 -k1,12396:32583029,10823610:0 -) -(1,12397:6797234,11665098:25785795,513147,134348 -g1,12396:7811731,11665098 -g1,12396:9077231,11665098 -g1,12396:11055762,11665098 -g1,12396:12274076,11665098 -g1,12396:15306426,11665098 -g1,12396:17493362,11665098 -k1,12397:32583029,11665098:14228524 -g1,12397:32583029,11665098 -) -] -g1,12397:32583029,11799446 -) -h1,12397:6630773,11799446:0,0,0 -(1,12399:6630773,13890706:25952256,555811,147783 -(1,12399:6630773,13890706:2450326,525533,0 -g1,12399:6630773,13890706 -g1,12399:9081099,13890706 -) -k1,12399:32583029,13890706:19501678 -g1,12399:32583029,13890706 -) -(1,12403:6630773,15125410:25952256,505283,134348 -k1,12402:7552695,15125410:294087 -k1,12402:9050023,15125410:294087 -k1,12402:11622797,15125410:294087 -k1,12402:12785235,15125410:294086 -k1,12402:15857393,15125410:294087 -k1,12402:17886873,15125410:294087 -k1,12402:19200045,15125410:294087 -(1,12402:19200045,15125410:0,414482,115847 -r1,12437:20613446,15125410:1413401,530329,115847 -k1,12402:19200045,15125410:-1413401 -) -(1,12402:19200045,15125410:1413401,414482,115847 -k1,12402:19200045,15125410:3277 -h1,12402:20610169,15125410:0,411205,112570 -) -k1,12402:20907533,15125410:294087 -k1,12402:22590983,15125410:294087 -k1,12402:23993284,15125410:294087 -k1,12402:26172841,15125410:294086 -k1,12402:29168977,15125410:294087 -k1,12402:30114492,15125410:294087 -(1,12402:30114492,15125410:0,452978,115847 -r1,12437:32583029,15125410:2468537,568825,115847 -k1,12402:30114492,15125410:-2468537 -) -(1,12402:30114492,15125410:2468537,452978,115847 -k1,12402:30114492,15125410:3277 -h1,12402:32579752,15125410:0,411205,112570 -) -k1,12402:32583029,15125410:0 -) -(1,12403:6630773,15966898:25952256,505283,7863 -k1,12403:32583028,15966898:22936944 -g1,12403:32583028,15966898 -) -(1,12405:6630773,16808386:25952256,513147,138281 -h1,12404:6630773,16808386:983040,0,0 -k1,12404:8751670,16808386:184308 -k1,12404:9623451,16808386:184308 -k1,12404:10163619,16808386:184308 -k1,12404:12472604,16808386:184308 -k1,12404:14469638,16808386:184308 -k1,12404:16641654,16808386:184309 -$1,12404:16641654,16808386 -k1,12404:17375527,16808386:182060 -k1,12404:18125784,16808386:182060 -k1,12404:18746611,16808386:112923 -k1,12404:19128233,16808386:112924 -k1,12404:19639615,16808386:112923 -k1,12404:20320736,16808386:112924 -k1,12404:20877993,16808386:112923 -k1,12404:21259615,16808386:112924 -$1,12404:21762276,16808386 -k1,12404:21946584,16808386:184308 -k1,12404:24049786,16808386:184308 -$1,12404:24049786,16808386 -$1,12404:24601599,16808386 -k1,12404:24785907,16808386:184308 -k1,12404:28933832,16808386:184308 -k1,12404:29769568,16808386:184308 -k1,12404:32583029,16808386:0 -) -(1,12405:6630773,17649874:25952256,513147,126483 -k1,12404:9517110,17649874:225575 -(1,12404:9724204,17649874:0,452978,115847 -r1,12437:11137605,17649874:1413401,568825,115847 -k1,12404:9724204,17649874:-1413401 -) -(1,12404:9724204,17649874:1413401,452978,115847 -k1,12404:9724204,17649874:3277 -h1,12404:11134328,17649874:0,411205,112570 -) -k1,12404:11570275,17649874:225576 -k1,12404:12987295,17649874:225575 -$1,12404:12987295,17649874 -$1,12404:13489956,17649874 -k1,12404:13715532,17649874:225576 -k1,12404:14592535,17649874:225575 -k1,12404:16654430,17649874:225576 -k1,12404:18746470,17649874:225575 -(1,12404:18953564,17649874:0,452978,115847 -r1,12437:20718677,17649874:1765113,568825,115847 -k1,12404:18953564,17649874:-1765113 -) -(1,12404:18953564,17649874:1765113,452978,115847 -k1,12404:18953564,17649874:3277 -h1,12404:20715400,17649874:0,411205,112570 -) -k1,12404:21325016,17649874:225575 -k1,12404:23069061,17649874:225576 -k1,12404:23650496,17649874:225575 -k1,12404:25863779,17649874:225576 -k1,12404:26620851,17649874:225575 -k1,12404:30414862,17649874:225576 -k1,12404:31256475,17649874:225575 -k1,12404:31896867,17649874:225549 -k1,12404:32583029,17649874:0 -) -(1,12405:6630773,18491362:25952256,513147,126483 -h1,12404:6630773,18491362:0,0,0 -k1,12404:8573453,18491362:361952 -k1,12404:9330588,18491362:361953 -k1,12404:10087722,18491362:361952 -k1,12404:10844857,18491362:361953 -k1,12404:13176913,18491362:182476 -k1,12404:14312939,18491362:182477 -k1,12404:15886089,18491362:182476 -k1,12404:17087651,18491362:182477 -k1,12404:18982583,18491362:182476 -k1,12404:21152767,18491362:182477 -k1,12404:22021406,18491362:182477 -(1,12404:22021406,18491362:0,459977,115847 -r1,12437:23083095,18491362:1061689,575824,115847 -k1,12404:22021406,18491362:-1061689 -) -(1,12404:22021406,18491362:1061689,459977,115847 -k1,12404:22021406,18491362:3277 -h1,12404:23079818,18491362:0,411205,112570 -) -k1,12404:23265571,18491362:182476 -k1,12404:24011002,18491362:182477 -k1,12404:27539746,18491362:182476 -k1,12404:28669874,18491362:182477 -k1,12404:32583029,18491362:0 -) -(1,12405:6630773,19332850:25952256,505283,95026 -k1,12405:32583028,19332850:24414780 -g1,12405:32583028,19332850 -) -v1,12407:6630773,20523316:0,393216,0 -(1,12415:6630773,22145603:25952256,2015503,196608 -g1,12415:6630773,22145603 -g1,12415:6630773,22145603 -g1,12415:6434165,22145603 -(1,12415:6434165,22145603:0,2015503,196608 -r1,12437:32779637,22145603:26345472,2212111,196608 -k1,12415:6434165,22145603:-26345472 -) -(1,12415:6434165,22145603:26345472,2015503,196608 -[1,12415:6630773,22145603:25952256,1818895,0 -(1,12409:6630773,20737226:25952256,410518,101187 -(1,12408:6630773,20737226:0,0,0 -g1,12408:6630773,20737226 -g1,12408:6630773,20737226 -g1,12408:6303093,20737226 -(1,12408:6303093,20737226:0,0,0 -) -g1,12408:6630773,20737226 -) -g1,12409:7895356,20737226 -g1,12409:8843794,20737226 -g1,12409:11372959,20737226 -g1,12409:12005251,20737226 -g1,12409:12637543,20737226 -g1,12409:13269835,20737226 -g1,12409:15482855,20737226 -h1,12409:18644312,20737226:0,0,0 -k1,12409:32583029,20737226:13938717 -g1,12409:32583029,20737226 -) -(1,12410:6630773,21403404:25952256,410518,76021 -h1,12410:6630773,21403404:0,0,0 -k1,12410:6630773,21403404:0 -h1,12410:9792229,21403404:0,0,0 -k1,12410:32583029,21403404:22790800 -g1,12410:32583029,21403404 -) -(1,12414:6630773,22069582:25952256,404226,76021 -(1,12412:6630773,22069582:0,0,0 -g1,12412:6630773,22069582 -g1,12412:6630773,22069582 -g1,12412:6303093,22069582 -(1,12412:6303093,22069582:0,0,0 -) -g1,12412:6630773,22069582 -) -g1,12414:7579210,22069582 -g1,12414:8843793,22069582 -h1,12414:10108376,22069582:0,0,0 -k1,12414:32583028,22069582:22474652 -g1,12414:32583028,22069582 -) -] -) -g1,12415:32583029,22145603 -g1,12415:6630773,22145603 -g1,12415:6630773,22145603 -g1,12415:32583029,22145603 -g1,12415:32583029,22145603 -) -h1,12415:6630773,22342211:0,0,0 -(1,12419:6630773,23707987:25952256,513147,134348 -h1,12418:6630773,23707987:983040,0,0 -k1,12418:9021245,23707987:210745 -k1,12418:10616110,23707987:210745 -k1,12418:12182140,23707987:210745 -k1,12418:12924382,23707987:210745 -k1,12418:16158303,23707987:210745 -k1,12418:17028340,23707987:210745 -k1,12418:18258170,23707987:210745 -k1,12418:19330058,23707987:210745 -k1,12418:20664090,23707987:210745 -k1,12418:24944621,23707987:210745 -k1,12418:25814658,23707987:210745 -k1,12418:27044488,23707987:210745 -k1,12418:29067959,23707987:210745 -k1,12418:31266411,23707987:210745 -k1,12419:32583029,23707987:0 -) -(1,12419:6630773,24549475:25952256,513147,134348 -k1,12418:9058466,24549475:275491 -k1,12418:10847182,24549475:275490 -k1,12418:14576420,24549475:275491 -k1,12418:16462785,24549475:275490 -k1,12418:17389704,24549475:275491 -k1,12418:19403210,24549475:275491 -k1,12418:22499370,24549475:275490 -k1,12418:23402696,24549475:275491 -k1,12418:24092953,24549475:275414 -k1,12418:24826541,24549475:275491 -k1,12418:25633528,24549475:275490 -k1,12418:27510719,24549475:275491 -k1,12418:30563625,24549475:275490 -k1,12418:31490544,24549475:275491 -k1,12418:32583029,24549475:0 -) -(1,12419:6630773,25390963:25952256,513147,126483 -k1,12418:8405051,25390963:166680 -k1,12418:9223159,25390963:166680 -k1,12418:10593079,25390963:166679 -k1,12418:12116354,25390963:166680 -k1,12418:13236583,25390963:166680 -k1,12418:15063945,25390963:166680 -k1,12418:16628508,25390963:166680 -k1,12418:18170788,25390963:166679 -k1,12418:19494178,25390963:166680 -k1,12418:20320150,25390963:166680 -k1,12418:21505915,25390963:166680 -k1,12418:23035089,25390963:166680 -k1,12418:24809366,25390963:166679 -k1,12418:27820964,25390963:166680 -k1,12418:31202185,25390963:166680 -k1,12418:32583029,25390963:0 -) -(1,12419:6630773,26232451:25952256,513147,126483 -k1,12418:9408088,26232451:176846 -k1,12418:10446077,26232451:176846 -k1,12418:13223393,26232451:176847 -k1,12418:14677536,26232451:176846 -k1,12418:16866337,26232451:176846 -k1,12418:17788327,26232451:176846 -k1,12418:18616602,26232451:176847 -k1,12418:20817855,26232451:176846 -k1,12418:22325082,26232451:176846 -k1,12418:24285163,26232451:176846 -k1,12418:25481095,26232451:176847 -k1,12418:28552011,26232451:176846 -k1,12418:31015408,26232451:176846 -k1,12418:32583029,26232451:0 -) -(1,12419:6630773,27073939:25952256,505283,134348 -g1,12418:8568017,27073939 -g1,12418:11612164,27073939 -k1,12419:32583029,27073939:17258250 -g1,12419:32583029,27073939 -) -v1,12421:6630773,28264405:0,393216,0 -(1,12425:6630773,28579502:25952256,708313,196608 -g1,12425:6630773,28579502 -g1,12425:6630773,28579502 -g1,12425:6434165,28579502 -(1,12425:6434165,28579502:0,708313,196608 -r1,12437:32779637,28579502:26345472,904921,196608 -k1,12425:6434165,28579502:-26345472 -) -(1,12425:6434165,28579502:26345472,708313,196608 -[1,12425:6630773,28579502:25952256,511705,0 -(1,12423:6630773,28478315:25952256,410518,101187 -(1,12422:6630773,28478315:0,0,0 -g1,12422:6630773,28478315 -g1,12422:6630773,28478315 -g1,12422:6303093,28478315 -(1,12422:6303093,28478315:0,0,0 -) -g1,12422:6630773,28478315 -) -k1,12423:6630773,28478315:0 -g1,12423:9792231,28478315 -g1,12423:11689105,28478315 -g1,12423:12321397,28478315 -h1,12423:12953689,28478315:0,0,0 -k1,12423:32583029,28478315:19629340 -g1,12423:32583029,28478315 -) -] -) -g1,12425:32583029,28579502 -g1,12425:6630773,28579502 -g1,12425:6630773,28579502 -g1,12425:32583029,28579502 -g1,12425:32583029,28579502 -) -h1,12425:6630773,28776110:0,0,0 -(1,12428:6630773,43379918:25952256,14013984,0 -k1,12428:12599879,43379918:5969106 -h1,12427:12599879,43379918:0,0,0 -(1,12427:12599879,43379918:14014044,14013984,0 -(1,12427:12599879,43379918:14014019,14014019,0 -(1,12427:12599879,43379918:14014019,14014019,0 -(1,12427:12599879,43379918:0,14014019,0 -(1,12427:12599879,43379918:0,18945146,0 -(1,12427:12599879,43379918:18945146,18945146,0 -) -k1,12427:12599879,43379918:-18945146 -) -) -g1,12427:26613898,43379918 -) -) -) -g1,12428:26613923,43379918 -k1,12428:32583029,43379918:5969106 -) -(1,12435:6630773,44221406:25952256,513147,134348 -h1,12434:6630773,44221406:983040,0,0 -k1,12434:8505404,44221406:263756 -k1,12434:9788245,44221406:263756 -k1,12434:11419082,44221406:263756 -k1,12434:12342129,44221406:263755 -k1,12434:12961745,44221406:263756 -k1,12434:16715948,44221406:263756 -k1,12434:19069647,44221406:263756 -(1,12434:19069647,44221406:0,452978,115847 -r1,12437:22241607,44221406:3171960,568825,115847 -k1,12434:19069647,44221406:-3171960 -) -(1,12434:19069647,44221406:3171960,452978,115847 -k1,12434:19069647,44221406:3277 -h1,12434:22238330,44221406:0,411205,112570 -) -k1,12434:22505363,44221406:263756 -k1,12434:24163070,44221406:263756 -k1,12434:25445910,44221406:263755 -k1,12434:27422122,44221406:263756 -k1,12434:29673585,44221406:263756 -k1,12434:31896867,44221406:263756 -k1,12434:32583029,44221406:0 -) -(1,12435:6630773,45062894:25952256,513147,134348 -k1,12434:9953650,45062894:250549 -k1,12434:10735696,45062894:250549 -k1,12434:12587945,45062894:250549 -k1,12434:14815716,45062894:250550 -k1,12434:15752427,45062894:250549 -k1,12434:16461073,45062894:250549 -k1,12434:19471998,45062894:250549 -k1,12434:20078407,45062894:250549 -k1,12434:21894611,45062894:250549 -k1,12434:22804453,45062894:250550 -k1,12434:26335734,45062894:250549 -k1,12434:29632396,45062894:250549 -k1,12434:31074390,45062894:250549 -k1,12434:32583029,45062894:0 -) ] -(1,12437:32583029,45706769:0,0,0 -g1,12437:32583029,45706769 ) +g1,11038:36675916,2439708 +(1,11038:36675916,2439708:1179648,16384,0 +r1,11924:37855564,2439708:1179648,16384,0 ) -] -(1,12437:6630773,47279633:25952256,0,0 -h1,12437:6630773,47279633:25952256,0,0 +) +k1,11924:3078556,2439708:-34777008 ) ] -(1,12437:4262630,4025873:0,0,0 -[1,12437:-473656,4025873:0,0,0 -(1,12437:-473656,-710413:0,0,0 -(1,12437:-473656,-710413:0,0,0 -g1,12437:-473656,-710413 +[1,11924:3078558,4812305:0,0,0 +(1,11924:3078558,49800853:0,16384,2228224 +k1,11924:1358238,49800853:-1720320 +(1,11038:1358238,49800853:1720320,16384,2228224 +(1,11038:1358238,49800853:1179648,16384,0 +r1,11924:2537886,49800853:1179648,16384,0 ) -g1,12437:-473656,-710413 +g1,11038:3062174,49800853 +(1,11038:3062174,52029077:16384,1703936,0 +[1,11038:3062174,52029077:25952256,1703936,0 +(1,11038:3062174,51504789:25952256,1179648,0 +(1,11038:3062174,51504789:16384,1179648,0 +r1,11924:3078558,51504789:16384,1179648,0 ) -] +k1,11038:29014430,51504789:25935872 +g1,11038:29014430,51504789 ) ] -!19374 -}213 -Input:1857:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!106 -{214 -[1,12497:4262630,47279633:28320399,43253760,0 -(1,12497:4262630,4025873:0,0,0 -[1,12497:-473656,4025873:0,0,0 -(1,12497:-473656,-710413:0,0,0 -(1,12497:-473656,-644877:0,0,0 -k1,12497:-473656,-644877:-65536 ) -(1,12497:-473656,4736287:0,0,0 -k1,12497:-473656,4736287:5209943 ) -g1,12497:-473656,-710413 +) +] +[1,11924:3078558,4812305:0,0,0 +(1,11924:3078558,49800853:0,16384,2228224 +g1,11924:29030814,49800853 +g1,11924:36135244,49800853 +(1,11038:36135244,49800853:1720320,16384,2228224 +(1,11038:36135244,52029077:16384,1703936,0 +[1,11038:36135244,52029077:25952256,1703936,0 +(1,11038:36135244,51504789:25952256,1179648,0 +(1,11038:36135244,51504789:16384,1179648,0 +r1,11924:36151628,51504789:16384,1179648,0 +) +k1,11038:62087500,51504789:25935872 +g1,11038:62087500,51504789 +) +] +) +g1,11038:36675916,49800853 +(1,11038:36675916,49800853:1179648,16384,0 +r1,11924:37855564,49800853:1179648,16384,0 +) +) +k1,11924:3078556,49800853:-34777008 +) +] +g1,11924:6630773,4812305 +k1,11924:23552825,4812305:15726675 +g1,11924:25175496,4812305 +g1,11924:25997972,4812305 +g1,11924:28481131,4812305 +g1,11924:30046786,4812305 +) +) +] +[1,11924:6630773,45706769:25952256,40108032,0 +(1,11924:6630773,45706769:25952256,40108032,0 +(1,11924:6630773,45706769:0,0,0 +g1,11924:6630773,45706769 +) +[1,11924:6630773,45706769:25952256,40108032,0 +(1,11910:6630773,6254097:25952256,530548,141067 +k1,11909:9680217,6254097:218944 +k1,11909:12983286,6254097:218945 +k1,11909:14582418,6254097:218944 +k1,11909:15616630,6254097:218944 +k1,11909:17343558,6254097:218945 +k1,11909:18333205,6254097:218944 +k1,11909:20301305,6254097:218944 +k1,11909:21179541,6254097:218944 +k1,11909:23037541,6254097:218945 +k1,11909:23869247,6254097:218944 +$1,11909:23869247,6254097 +k1,11909:25943957,6254097:0 +k1,11909:26358899,6254097:0 +k1,11909:26773841,6254097:0 +k1,11909:27188783,6254097:0 +k1,11909:30508319,6254097:0 +k1,11909:30923261,6254097:0 +k1,11909:32168087,6254097:0 +k1,11910:32583029,6254097:0 +) +(1,11910:6630773,7119177:25952256,530548,141067 +$1,11909:10365251,7119177 +k1,11910:32583029,7119177:22044108 +g1,11910:32583029,7119177 +) +(1,11912:6630773,7984257:25952256,513147,134348 +h1,11911:6630773,7984257:983040,0,0 +k1,11911:9068553,7984257:258053 +k1,11911:11131409,7984257:257994 +k1,11911:14672815,7984257:258052 +k1,11911:16769153,7984257:258053 +k1,11911:17797909,7984257:258053 +k1,11911:20354310,7984257:258053 +k1,11911:21271655,7984257:258053 +k1,11911:23563290,7984257:258053 +k1,11911:26485382,7984257:258053 +k1,11911:27402726,7984257:258052 +k1,11911:30744903,7984257:258053 +k1,11911:31812326,7984257:258053 +k1,11911:32583029,7984257:0 +) +(1,11912:6630773,8849337:25952256,530548,141067 +k1,11911:10034309,8849337:210622 +k1,11911:12825084,8849337:210623 +k1,11911:14827460,8849337:210622 +k1,11911:18774934,8849337:210611 +$1,11911:18982028,8849337 +k1,11911:21056738,8849337:0 +k1,11911:21471680,8849337:0 +k1,11911:21886622,8849337:0 +k1,11911:22301564,8849337:0 +k1,11911:23546390,8849337:0 +k1,11911:23961332,8849337:0 +(1,11911:24791216,8947651:32768,0,0 +) +k1,11911:26068810,8849337:0 +k1,11911:26483752,8849337:0 +$1,11911:28143520,8849337 +k1,11911:28561236,8849337:210622 +k1,11911:29303356,8849337:210623 +k1,11911:30284681,8849337:210622 +k1,11911:32583029,8849337:0 +) +(1,11912:6630773,9714417:25952256,513147,126483 +k1,11911:7432516,9714417:142451 +k1,11911:11549727,9714417:142452 +k1,11911:12976684,9714417:142451 +k1,11911:14957420,9714417:142451 +k1,11911:15455731,9714417:142451 +k1,11911:18580071,9714417:142452 +k1,11911:20795426,9714417:142451 +k1,11911:21624039,9714417:142451 +k1,11911:25015110,9714417:142451 +k1,11911:26725183,9714417:142452 +k1,11911:28846166,9714417:142451 +k1,11911:32583029,9714417:0 +) +(1,11912:6630773,10579497:25952256,513147,134348 +k1,11911:8189552,10579497:135992 +k1,11911:8681403,10579497:135991 +k1,11911:11579738,10579497:135992 +k1,11911:13786011,10579497:135991 +k1,11911:16021777,10579497:135992 +k1,11911:17600215,10579497:135991 +k1,11911:19541006,10579497:135929 +k1,11911:21456300,10579497:135992 +k1,11911:23950932,10579497:135991 +k1,11911:24545021,10579497:135992 +k1,11911:26551410,10579497:135991 +k1,11911:27338830,10579497:135992 +k1,11911:29545103,10579497:135991 +k1,11911:30700180,10579497:135992 +k1,11911:32583029,10579497:0 +) +(1,11912:6630773,11444577:25952256,473825,126483 +k1,11912:32583029,11444577:22495232 +g1,11912:32583029,11444577 +) +(1,11913:6630773,13561395:25952256,555811,147783 +(1,11913:6630773,13561395:2450326,534184,12975 +g1,11913:6630773,13561395 +g1,11913:9081099,13561395 +) +g1,11913:10960475,13561395 +g1,11913:14533236,13561395 +k1,11913:32583029,13561395:16166092 +g1,11913:32583029,13561395 +) +(1,11916:6630773,14819691:25952256,513147,134348 +k1,11915:8042872,14819691:215412 +k1,11915:12390328,14819691:215411 +k1,11915:13265032,14819691:215412 +k1,11915:16390898,14819691:215412 +k1,11915:17137806,14819691:215411 +k1,11915:19692198,14819691:215412 +k1,11915:20926695,14819691:215412 +k1,11915:22968595,14819691:215412 +k1,11915:23843298,14819691:215411 +k1,11915:25077795,14819691:215412 +k1,11915:27637430,14819691:215412 +k1,11915:29608551,14819691:215411 +k1,11915:31015408,14819691:215412 +k1,11916:32583029,14819691:0 +) +(1,11916:6630773,15684771:25952256,505283,134348 +k1,11915:8935193,15684771:139766 +k1,11915:12153185,15684771:139766 +k1,11915:12908989,15684771:139766 +k1,11915:14067840,15684771:139766 +k1,11915:15789644,15684771:139765 +k1,11915:16378987,15684771:139766 +k1,11915:19426586,15684771:139766 +k1,11915:22697662,15684771:139766 +k1,11915:24812383,15684771:140121 +k1,11915:27886851,15684771:139766 +k1,11915:28484714,15684771:139766 +k1,11915:29155977,15684771:139766 +k1,11915:30494397,15684771:139766 +k1,11916:32583029,15684771:0 +) +(1,11916:6630773,16549851:25952256,513147,134348 +k1,11915:8469117,16549851:148826 +k1,11915:12257812,16549851:148825 +k1,11915:12762498,16549851:148826 +k1,11915:14044441,16549851:148825 +k1,11915:16185561,16549851:148826 +k1,11915:18156942,16549851:148825 +k1,11915:19324853,16549851:148826 +k1,11915:23605723,16549851:148825 +k1,11915:24421705,16549851:148826 +k1,11915:24985323,16549851:148775 +k1,11915:28218272,16549851:148825 +k1,11915:30158852,16549851:148826 +k1,11915:32583029,16549851:0 +) +(1,11916:6630773,17414931:25952256,513147,134348 +k1,11915:7298726,17414931:209856 +k1,11915:8040078,17414931:209855 +k1,11915:11175461,17414931:209856 +k1,11915:12779922,17414931:209855 +k1,11915:13641206,17414931:209856 +k1,11915:16344051,17414931:209855 +k1,11915:18012738,17414931:209856 +k1,11915:19552974,17414931:209855 +k1,11915:22846954,17414931:209856 +k1,11915:25922043,17414931:209855 +k1,11915:27236181,17414931:209856 +k1,11915:28193802,17414931:209855 +k1,11915:29062950,17414931:209856 +k1,11915:30626779,17414931:209855 +k1,11916:32583029,17414931:0 +) +(1,11916:6630773,18280011:25952256,513147,134348 +k1,11915:7895618,18280011:245760 +k1,11915:9740456,18280011:245760 +k1,11915:11177661,18280011:245760 +k1,11915:15102612,18280011:245760 +k1,11915:18213606,18280011:245760 +k1,11915:19551851,18280011:245760 +k1,11915:20153471,18280011:245760 +k1,11915:23324758,18280011:245760 +k1,11915:25056219,18280011:245760 +k1,11915:28233404,18280011:245760 +k1,11915:29138456,18280011:245760 +k1,11915:31635378,18280011:245760 +k1,11915:32583029,18280011:0 +) +(1,11916:6630773,19145091:25952256,513147,134348 +k1,11915:9130382,19145091:239272 +k1,11915:10388739,19145091:239272 +k1,11915:13390353,19145091:239271 +k1,11915:15346013,19145091:239272 +k1,11915:16244577,19145091:239272 +k1,11915:17970861,19145091:239272 +k1,11915:21190710,19145091:239272 +k1,11915:26256052,19145091:239271 +k1,11915:30030991,19145091:239272 +k1,11915:31664214,19145091:239272 +k1,11915:32583029,19145091:0 +) +(1,11916:6630773,20010171:25952256,513147,134348 +k1,11915:9201423,20010171:263127 +k1,11915:10852603,20010171:263127 +k1,11915:13535318,20010171:263126 +k1,11915:15179289,20010171:263127 +k1,11915:17454371,20010171:263127 +k1,11915:22543569,20010171:263127 +k1,11915:23754347,20010171:263127 +k1,11915:27747127,20010171:263126 +k1,11915:30920708,20010171:263127 +k1,11915:31835263,20010171:263127 +k1,11915:32583029,20010171:0 +) +(1,11916:6630773,20875251:25952256,505283,134348 +k1,11915:10298571,20875251:235022 +k1,11915:12515402,20875251:235022 +k1,11915:13401852,20875251:235022 +k1,11915:14555689,20875251:235022 +k1,11915:16178764,20875251:235022 +k1,11915:18659705,20875251:235022 +k1,11915:20592764,20875251:235021 +k1,11915:23738240,20875251:235022 +k1,11915:24964822,20875251:235022 +k1,11915:27517852,20875251:235022 +k1,11915:28380709,20875251:235022 +k1,11915:31281736,20875251:235022 +k1,11915:32168186,20875251:235022 +k1,11916:32583029,20875251:0 +) +(1,11916:6630773,21740331:25952256,513147,134348 +k1,11915:8522360,21740331:221730 +k1,11915:11654544,21740331:221730 +k1,11915:12980557,21740331:221731 +k1,11915:14301981,21740331:221730 +k1,11915:17549508,21740331:221730 +k1,11915:18962683,21740331:221730 +k1,11915:21832723,21740331:221730 +k1,11915:24341004,21740331:221730 +k1,11915:25178773,21740331:221731 +k1,11915:26027682,21740331:221730 +k1,11915:27706277,21740331:221730 +k1,11915:31142548,21740331:221730 +k1,11916:32583029,21740331:0 +) +(1,11916:6630773,22605411:25952256,513147,134348 +k1,11915:9199683,22605411:230586 +k1,11915:10715430,22605411:230586 +k1,11915:12018184,22605411:230585 +k1,11915:13940910,22605411:230586 +k1,11915:15600836,22605411:230586 +k1,11915:16490714,22605411:230586 +k1,11915:18663131,22605411:230585 +k1,11915:19425214,22605411:230586 +k1,11915:22127818,22605411:230586 +k1,11915:23044566,22605411:230586 +k1,11915:25970647,22605411:230585 +k1,11915:27300927,22605411:230586 +k1,11915:31391584,22605411:230586 +k1,11915:32583029,22605411:0 +) +(1,11916:6630773,23470491:25952256,505283,134348 +k1,11915:8587568,23470491:186668 +k1,11915:11796102,23470491:186669 +k1,11915:14354518,23470491:186668 +k1,11915:15350556,23470491:186668 +k1,11915:16556310,23470491:186669 +k1,11915:21095224,23470491:186668 +k1,11915:24297859,23470491:186668 +k1,11915:25675973,23470491:186669 +k1,11915:26478679,23470491:186668 +k1,11915:28417124,23470491:186668 +k1,11915:30301175,23470491:186669 +k1,11915:31773659,23470491:186668 +k1,11915:32583029,23470491:0 +) +(1,11916:6630773,24335571:25952256,505283,134348 +k1,11915:7805938,24335571:156080 +k1,11915:10772857,24335571:156080 +k1,11915:12615834,24335571:156080 +k1,11915:13813935,24335571:156079 +k1,11915:15426880,24335571:156080 +k1,11915:16602045,24335571:156080 +k1,11915:18681606,24335571:156080 +k1,11915:19252486,24335571:156037 +k1,11915:21988718,24335571:156080 +k1,11915:24190831,24335571:156079 +k1,11915:25365996,24335571:156080 +k1,11915:28106816,24335571:156080 +k1,11915:31188423,24335571:156080 +k1,11915:32583029,24335571:0 +) +(1,11916:6630773,25200651:25952256,513147,134348 +k1,11915:11052369,25200651:220738 +k1,11915:13247836,25200651:220867 +k1,11915:14096410,25200651:220739 +k1,11915:15336233,25200651:220738 +k1,11915:16924052,25200651:220738 +k1,11915:17811946,25200651:220738 +k1,11915:20371008,25200651:220738 +k1,11915:21006568,25200651:220717 +k1,11915:23807458,25200651:220738 +k1,11915:27346284,25200651:220739 +k1,11915:29613056,25200651:220738 +k1,11915:31923737,25200651:220738 +k1,11916:32583029,25200651:0 +) +(1,11916:6630773,26065731:25952256,513147,134348 +k1,11915:9036045,26065731:240618 +k1,11915:12061288,26065731:240618 +k1,11915:13493351,26065731:240618 +k1,11915:16687020,26065731:240617 +k1,11915:17586930,26065731:240618 +k1,11915:19216911,26065731:240618 +k1,11915:21025806,26065731:240618 +k1,11915:22457869,26065731:240618 +k1,11915:23156584,26065731:240618 +k1,11915:23928698,26065731:240617 +k1,11915:25447923,26065731:240618 +k1,11915:28983036,26065731:240618 +k1,11915:29985182,26065731:240618 +k1,11915:32583029,26065731:0 +) +(1,11916:6630773,26930811:25952256,513147,134348 +k1,11915:7458370,26930811:199762 +k1,11915:8677217,26930811:199762 +k1,11915:10244060,26930811:199762 +k1,11915:11110978,26930811:199762 +k1,11915:12577551,26930811:199762 +k1,11915:13645665,26930811:199762 +k1,11915:14949709,26930811:199762 +k1,11915:16241956,26930811:199762 +k1,11915:19021870,26930811:199762 +k1,11915:21250626,26930811:199762 +k1,11915:23951242,26930811:199762 +k1,11915:25193026,26930811:199762 +k1,11915:25846297,26930811:199762 +k1,11915:27237504,26930811:199762 +k1,11915:30651807,26930811:199762 +k1,11915:31266411,26930811:199761 +k1,11916:32583029,26930811:0 +) +(1,11916:6630773,27795891:25952256,513147,134348 +k1,11915:8441230,27795891:153707 +k1,11915:9614022,27795891:153707 +k1,11915:13843413,27795891:153707 +k1,11915:16469138,27795891:153707 +k1,11915:17695014,27795891:153707 +k1,11915:18867806,27795891:153707 +k1,11915:21831697,27795891:153707 +k1,11915:23845971,27795891:153707 +k1,11915:25691818,27795891:153707 +k1,11915:26622127,27795891:153707 +k1,11915:27918782,27795891:153707 +k1,11915:30211584,27795891:153707 +k1,11915:30981329,27795891:153707 +k1,11915:32583029,27795891:0 +) +(1,11916:6630773,28660971:25952256,355205,7863 +k1,11916:32583030,28660971:24081204 +g1,11916:32583030,28660971 +) +(1,11918:6630773,29526051:25952256,505283,134348 +h1,11917:6630773,29526051:983040,0,0 +k1,11917:9321845,29526051:217743 +k1,11917:11829417,29526051:217744 +k1,11917:14888146,29526051:217743 +k1,11917:15867417,29526051:217743 +k1,11917:16441020,29526051:217743 +k1,11917:19238916,29526051:217744 +k1,11917:20741165,29526051:217743 +k1,11917:22059913,29526051:217743 +k1,11917:23787606,29526051:217743 +k1,11917:26747376,29526051:217744 +k1,11917:27956679,29526051:217743 +k1,11917:30217179,29526051:217743 +k1,11917:32583029,29526051:0 +) +(1,11918:6630773,30391131:25952256,505283,134348 +k1,11917:7681433,30391131:262262 +k1,11917:9274075,30391131:262261 +k1,11917:13235844,30391131:262262 +k1,11917:16024518,30391131:262261 +k1,11917:17478225,30391131:262262 +k1,11917:20704679,30391131:262261 +k1,11917:21322801,30391131:262262 +k1,11917:24165214,30391131:262261 +k1,11917:25821427,30391131:262262 +(1,11917:25821427,30391131:0,452978,115847 +r1,11924:28993387,30391131:3171960,568825,115847 +k1,11917:25821427,30391131:-3171960 +) +(1,11917:25821427,30391131:3171960,452978,115847 +k1,11917:25821427,30391131:3277 +h1,11917:28990110,30391131:0,411205,112570 +) +k1,11917:29255648,30391131:262261 +k1,11917:31563944,30391131:262262 +k1,11917:32583029,30391131:0 +) +(1,11918:6630773,31256211:25952256,505283,134348 +k1,11917:9687551,31256211:215792 +k1,11917:12193171,31256211:215792 +k1,11917:15366603,31256211:215792 +k1,11917:18678316,31256211:215792 +k1,11917:19249968,31256211:215792 +k1,11917:22045913,31256211:215793 +k1,11917:23789349,31256211:215792 +k1,11917:25024226,31256211:215792 +k1,11917:27529846,31256211:215792 +k1,11917:30586624,31256211:215792 +k1,11917:31563944,31256211:215792 +k1,11917:32583029,31256211:0 +) +(1,11918:6630773,32121291:25952256,505283,134348 +k1,11917:9442670,32121291:231745 +k1,11917:10325843,32121291:231745 +k1,11917:11576674,32121291:231746 +k1,11917:13878701,32121291:231745 +k1,11917:15558792,32121291:231745 +k1,11917:16515365,32121291:231745 +k1,11917:18031617,32121291:231746 +k1,11917:19643550,32121291:231745 +k1,11917:20979577,32121291:231745 +k1,11917:21959088,32121291:231745 +k1,11917:24989877,32121291:231746 +k1,11917:27681844,32121291:231745 +k1,11917:31563944,32121291:231745 +k1,11917:32583029,32121291:0 +) +(1,11918:6630773,32986371:25952256,513147,134348 +k1,11917:8532930,32986371:164142 +k1,11917:9356365,32986371:164143 +k1,11917:10539592,32986371:164142 +k1,11917:14403241,32986371:164142 +k1,11917:16112723,32986371:164143 +k1,11917:19187319,32986371:164142 +k1,11917:20166729,32986371:164142 +k1,11917:21397142,32986371:164142 +k1,11917:23634189,32986371:164143 +k1,11917:24564447,32986371:164142 +k1,11917:25747674,32986371:164142 +k1,11917:28937614,32986371:164143 +k1,11917:30293201,32986371:164142 +k1,11917:32583029,32986371:0 +) +(1,11918:6630773,33851451:25952256,513147,126483 +k1,11917:9308876,33851451:296525 +k1,11917:10221439,33851451:296525 +k1,11917:12026604,33851451:296526 +k1,11917:13992986,33851451:296525 +k1,11917:15981651,33851451:296525 +k1,11917:17269736,33851451:296525 +k1,11917:18983806,33851451:296526 +k1,11917:21938471,33851451:296525 +k1,11917:22851034,33851451:296525 +k1,11917:24749259,33851451:296525 +k1,11917:26743167,33851451:296526 +k1,11917:29569382,33851451:296525 +k1,11917:31246095,33851451:296525 +k1,11917:32583029,33851451:0 +) +(1,11918:6630773,34716531:25952256,513147,134348 +k1,11917:9137287,34716531:265838 +k1,11917:10086009,34716531:265837 +k1,11917:11099613,34716531:265838 +k1,11917:14140901,34716531:265838 +k1,11917:15022776,34716531:265837 +k1,11917:17275666,34716531:265838 +k1,11917:20379212,34716531:265837 +k1,11917:23179983,34716531:265838 +k1,11917:27301959,34716531:265838 +k1,11917:28672078,34716531:265837 +k1,11917:29685682,34716531:265838 +k1,11917:32583029,34716531:0 +) +(1,11918:6630773,35581611:25952256,513147,134348 +k1,11917:8072365,35581611:250147 +k1,11917:9608329,35581611:250148 +k1,11917:12832500,35581611:250147 +k1,11917:14476598,35581611:250147 +k1,11917:17422241,35581611:250147 +(1,11917:17422241,35581611:0,452978,115847 +r1,11924:20242490,35581611:2820249,568825,115847 +k1,11917:17422241,35581611:-2820249 +) +(1,11917:17422241,35581611:2820249,452978,115847 +k1,11917:17422241,35581611:3277 +h1,11917:20239213,35581611:0,411205,112570 +) +k1,11917:20492638,35581611:250148 +k1,11917:22478178,35581611:250147 +k1,11917:23084185,35581611:250147 +k1,11917:25683142,35581611:250147 +k1,11917:28695633,35581611:250148 +k1,11917:31635378,35581611:250147 +k1,11917:32583029,35581611:0 +) +(1,11918:6630773,36446691:25952256,513147,134348 +k1,11917:7909431,36446691:259573 +k1,11917:11241332,36446691:259573 +k1,11917:13068525,36446691:259572 +k1,11917:14612604,36446691:259573 +k1,11917:16757648,36446691:259573 +k1,11917:17885573,36446691:259573 +k1,11917:21235168,36446691:259572 +k1,11917:22442392,36446691:259573 +k1,11917:24091328,36446691:259573 +k1,11917:26557498,36446691:259573 +k1,11917:27433109,36446691:259573 +k1,11917:29971368,36446691:259572 +h1,11917:31514086,36446691:0,0,0 +k1,11917:31773659,36446691:259573 +k1,11917:32583029,36446691:0 +) +(1,11918:6630773,37311771:25952256,485622,134348 +g1,11917:8328155,37311771 +h1,11917:9523532,37311771:0,0,0 +k1,11918:32583030,37311771:22885828 +g1,11918:32583030,37311771 +) +(1,11920:6630773,38176851:25952256,513147,134348 +h1,11919:6630773,38176851:983040,0,0 +k1,11919:8674571,38176851:158327 +k1,11919:12059892,38176851:158328 +k1,11919:15427517,38176851:158327 +k1,11919:17247837,38176851:158327 +k1,11919:18057593,38176851:158328 +k1,11919:21475025,38176851:158327 +k1,11919:22164849,38176851:158327 +k1,11919:23607682,38176851:158327 +k1,11919:24180812,38176851:158287 +k1,11919:27249593,38176851:158327 +k1,11919:29368758,38176851:158328 +k1,11919:30293201,38176851:158327 +k1,11919:32583029,38176851:0 +) +(1,11920:6630773,39041931:25952256,513147,134348 +k1,11919:8907645,39041931:266883 +k1,11919:9530388,39041931:266883 +k1,11919:13311310,39041931:266882 +k1,11919:14972144,39041931:266883 +k1,11919:16258112,39041931:266883 +k1,11919:18178468,39041931:266883 +k1,11919:20183365,39041931:266882 +k1,11919:21136410,39041931:266883 +k1,11919:22422378,39041931:266883 +k1,11919:25269413,39041931:266883 +k1,11919:27315597,39041931:266882 +k1,11919:28963324,39041931:266883 +k1,11919:31298523,39041931:266883 +k1,11919:32583029,39041931:0 +) +(1,11920:6630773,39907011:25952256,513147,134348 +k1,11919:8605794,39907011:276983 +k1,11919:9751130,39907011:276984 +k1,11919:11756297,39907011:276983 +k1,11919:12389140,39907011:276983 +k1,11919:14404139,39907011:276984 +k1,11919:17062700,39907011:276983 +k1,11919:17955722,39907011:276984 +k1,11919:18588565,39907011:276983 +k1,11919:21619371,39907011:276983 +k1,11919:22684753,39907011:276984 +k1,11919:26043894,39907011:276983 +k1,11919:26936915,39907011:276983 +k1,11919:28232984,39907011:276984 +k1,11919:31090119,39907011:276983 +k1,11919:32583029,39907011:0 +) +(1,11920:6630773,40772091:25952256,505283,134348 +k1,11919:7932373,40772091:235329 +k1,11919:9146154,40772091:235328 +k1,11919:13229102,40772091:235329 +k1,11919:14536599,40772091:235328 +k1,11919:17272782,40772091:235329 +k1,11919:18883712,40772091:235329 +k1,11919:21338744,40772091:235328 +k1,11919:22765518,40772091:235329 +k1,11919:24199500,40772091:235328 +k1,11919:27619879,40772091:235329 +k1,11919:29590600,40772091:235328 +k1,11919:30845014,40772091:235329 +k1,11919:32583029,40772091:0 +) +(1,11920:6630773,41637171:25952256,513147,134348 +g1,11919:9600864,41637171 +g1,11919:10561621,41637171 +g1,11919:14411205,41637171 +g1,11919:15629519,41637171 +g1,11919:17566763,41637171 +g1,11919:18425284,41637171 +g1,11919:19643598,41637171 +g1,11919:22422979,41637171 +g1,11919:25375375,41637171 +g1,11919:26336132,41637171 +g1,11919:27707800,41637171 +k1,11920:32583029,41637171:2628655 +g1,11920:32583029,41637171 +) +(1,11922:6630773,42502251:25952256,513147,134348 +h1,11921:6630773,42502251:983040,0,0 +k1,11921:8332289,42502251:240719 +k1,11921:9745447,42502251:240719 +k1,11921:12896619,42502251:240718 +k1,11921:15098175,42502251:240719 +k1,11921:17628722,42502251:240719 +k1,11921:19263392,42502251:240719 +k1,11921:20523195,42502251:240718 +k1,11921:22417387,42502251:240719 +k1,11921:24569791,42502251:240719 +k1,11921:26244438,42502251:240719 +k1,11921:28370627,42502251:240718 +k1,11921:29768056,42502251:240719 +k1,11921:30540272,42502251:240719 +k1,11921:32583029,42502251:0 +) +(1,11922:6630773,43367331:25952256,513147,134348 +k1,11921:9591962,43367331:259140 +k1,11921:10660472,43367331:259140 +k1,11921:11938698,43367331:259141 +k1,11921:13937164,43367331:259140 +k1,11921:14812342,43367331:259140 +k1,11921:16956953,43367331:259140 +k1,11921:18235178,43367331:259140 +k1,11921:21404772,43367331:259140 +k1,11921:23167964,43367331:259141 +k1,11921:26342801,43367331:259140 +k1,11921:27430971,43367331:259140 +k1,11921:29419606,43367331:259140 +k1,11921:32583029,43367331:0 +) +(1,11922:6630773,44232411:25952256,513147,134348 +k1,11921:7524028,44232411:277217 +k1,11921:9294812,44232411:277218 +k1,11921:11443082,44232411:277217 +k1,11921:12336337,44232411:277217 +k1,11921:14774931,44232411:277217 +k1,11921:15510246,44232411:277218 +k1,11921:16318960,44232411:277217 +k1,11921:17931145,44232411:277217 +k1,11921:18859790,44232411:277217 +k1,11921:20229493,44232411:277218 +k1,11921:21525795,44232411:277217 +k1,11921:24583049,44232411:277217 +k1,11921:26928582,44232411:277217 +k1,11921:28153451,44232411:277218 +k1,11921:30520611,44232411:277217 +k1,11921:31563944,44232411:277217 +k1,11921:32583029,44232411:0 +) +(1,11922:6630773,45097491:25952256,513147,134348 +k1,11921:9140334,45097491:219733 +k1,11921:11741645,45097491:219733 +k1,11921:13355329,45097491:219733 +k1,11921:14594146,45097491:219732 +k1,11921:16467352,45097491:219733 +k1,11921:18425100,45097491:219733 +k1,11921:19260871,45097491:219733 +k1,11921:20499689,45097491:219733 +k1,11921:21891861,45097491:219733 +k1,11921:24865417,45097491:219733 +k1,11921:25768034,45097491:219732 +k1,11921:28951960,45097491:219733 +k1,11921:30547294,45097491:219733 +k1,11921:31923737,45097491:219733 +k1,11921:32583029,45097491:0 +) +] +(1,11924:32583029,45706769:0,0,0 +g1,11924:32583029,45706769 +) +) +] +(1,11924:6630773,47279633:25952256,0,0 +h1,11924:6630773,47279633:25952256,0,0 +) +] +(1,11924:4262630,4025873:0,0,0 +[1,11924:-473656,4025873:0,0,0 +(1,11924:-473656,-710413:0,0,0 +(1,11924:-473656,-710413:0,0,0 +g1,11924:-473656,-710413 +) +g1,11924:-473656,-710413 +) +] +) +] +!24882 +}191 +Input:1746:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1747:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1748:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1749:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1750:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1751:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1752:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!670 +{192 +[1,12034:4262630,47279633:28320399,43253760,0 +(1,12034:4262630,4025873:0,0,0 +[1,12034:-473656,4025873:0,0,0 +(1,12034:-473656,-710413:0,0,0 +(1,12034:-473656,-644877:0,0,0 +k1,12034:-473656,-644877:-65536 +) +(1,12034:-473656,4736287:0,0,0 +k1,12034:-473656,4736287:5209943 +) +g1,12034:-473656,-710413 ) ] ) -[1,12497:6630773,47279633:25952256,43253760,0 -[1,12497:6630773,4812305:25952256,786432,0 -(1,12497:6630773,4812305:25952256,505283,134348 -(1,12497:6630773,4812305:25952256,505283,134348 -g1,12497:3078558,4812305 -[1,12497:3078558,4812305:0,0,0 -(1,12497:3078558,2439708:0,1703936,0 -k1,12497:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,12497:2537886,2439708:1179648,16384,0 +[1,12034:6630773,47279633:25952256,43253760,0 +[1,12034:6630773,4812305:25952256,786432,0 +(1,12034:6630773,4812305:25952256,505283,134348 +(1,12034:6630773,4812305:25952256,505283,134348 +g1,12034:3078558,4812305 +[1,12034:3078558,4812305:0,0,0 +(1,12034:3078558,2439708:0,1703936,0 +k1,12034:1358238,2439708:-1720320 +(1,11038:1358238,2439708:1720320,1703936,0 +(1,11038:1358238,2439708:1179648,16384,0 +r1,12034:2537886,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,12497:3078558,1915420:16384,1179648,0 +g1,11038:3062174,2439708 +(1,11038:3062174,2439708:16384,1703936,0 +[1,11038:3062174,2439708:25952256,1703936,0 +(1,11038:3062174,1915420:25952256,1179648,0 +(1,11038:3062174,1915420:16384,1179648,0 +r1,12034:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +k1,11038:29014430,1915420:25935872 +g1,11038:29014430,1915420 ) ] ) ) ) ] -[1,12497:3078558,4812305:0,0,0 -(1,12497:3078558,2439708:0,1703936,0 -g1,12497:29030814,2439708 -g1,12497:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,12497:36151628,1915420:16384,1179648,0 +[1,12034:3078558,4812305:0,0,0 +(1,12034:3078558,2439708:0,1703936,0 +g1,12034:29030814,2439708 +g1,12034:36135244,2439708 +(1,11038:36135244,2439708:1720320,1703936,0 +(1,11038:36135244,2439708:16384,1703936,0 +[1,11038:36135244,2439708:25952256,1703936,0 +(1,11038:36135244,1915420:25952256,1179648,0 +(1,11038:36135244,1915420:16384,1179648,0 +r1,12034:36151628,1915420:16384,1179648,0 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +k1,11038:62087500,1915420:25935872 +g1,11038:62087500,1915420 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,12497:37855564,2439708:1179648,16384,0 +g1,11038:36675916,2439708 +(1,11038:36675916,2439708:1179648,16384,0 +r1,12034:37855564,2439708:1179648,16384,0 ) ) -k1,12497:3078556,2439708:-34777008 +k1,12034:3078556,2439708:-34777008 ) ] -[1,12497:3078558,4812305:0,0,0 -(1,12497:3078558,49800853:0,16384,2228224 -k1,12497:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,12497:2537886,49800853:1179648,16384,0 +[1,12034:3078558,4812305:0,0,0 +(1,12034:3078558,49800853:0,16384,2228224 +k1,12034:1358238,49800853:-1720320 +(1,11038:1358238,49800853:1720320,16384,2228224 +(1,11038:1358238,49800853:1179648,16384,0 +r1,12034:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,12497:3078558,51504789:16384,1179648,0 +g1,11038:3062174,49800853 +(1,11038:3062174,52029077:16384,1703936,0 +[1,11038:3062174,52029077:25952256,1703936,0 +(1,11038:3062174,51504789:25952256,1179648,0 +(1,11038:3062174,51504789:16384,1179648,0 +r1,12034:3078558,51504789:16384,1179648,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 +k1,11038:29014430,51504789:25935872 +g1,11038:29014430,51504789 ) ] ) ) ) ] -[1,12497:3078558,4812305:0,0,0 -(1,12497:3078558,49800853:0,16384,2228224 -g1,12497:29030814,49800853 -g1,12497:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,12497:36151628,51504789:16384,1179648,0 -) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 +[1,12034:3078558,4812305:0,0,0 +(1,12034:3078558,49800853:0,16384,2228224 +g1,12034:29030814,49800853 +g1,12034:36135244,49800853 +(1,11038:36135244,49800853:1720320,16384,2228224 +(1,11038:36135244,52029077:16384,1703936,0 +[1,11038:36135244,52029077:25952256,1703936,0 +(1,11038:36135244,51504789:25952256,1179648,0 +(1,11038:36135244,51504789:16384,1179648,0 +r1,12034:36151628,51504789:16384,1179648,0 +) +k1,11038:62087500,51504789:25935872 +g1,11038:62087500,51504789 +) +] +) +g1,11038:36675916,49800853 +(1,11038:36675916,49800853:1179648,16384,0 +r1,12034:37855564,49800853:1179648,16384,0 +) +) +k1,12034:3078556,49800853:-34777008 +) +] +g1,12034:6630773,4812305 +g1,12034:6630773,4812305 +g1,12034:9714897,4812305 +k1,12034:31387653,4812305:21672756 +) +) +] +[1,12034:6630773,45706769:25952256,40108032,0 +(1,12034:6630773,45706769:25952256,40108032,0 +(1,12034:6630773,45706769:0,0,0 +g1,12034:6630773,45706769 +) +[1,12034:6630773,45706769:25952256,40108032,0 +(1,11922:6630773,6254097:25952256,513147,134348 +k1,11921:7873033,6254097:223175 +k1,11921:11006662,6254097:223175 +k1,11921:12421282,6254097:223175 +k1,11921:14379851,6254097:223176 +k1,11921:17383063,6254097:223175 +k1,11921:19674554,6254097:223175 +k1,11921:20845380,6254097:223175 +k1,11921:21834671,6254097:223175 +k1,11921:23076931,6254097:223175 +k1,11921:25589935,6254097:223176 +k1,11921:28654096,6254097:223175 +k1,11921:29638799,6254097:223175 +k1,11921:30881059,6254097:223175 +k1,11921:32583029,6254097:0 +) +(1,11922:6630773,7119177:25952256,505283,134348 +k1,11922:32583028,7119177:23198432 +g1,11922:32583028,7119177 +) +v1,11924:6630773,7984257:0,393216,0 +(1,11925:6630773,11128387:25952256,3537346,0 +g1,11925:6630773,11128387 +g1,11925:6237557,11128387 +r1,12034:6368629,11128387:131072,3537346,0 +g1,11925:6567858,11128387 +g1,11925:6764466,11128387 +[1,11925:6764466,11128387:25818563,3537346,0 +(1,11925:6764466,8398799:25818563,807758,219026 +(1,11924:6764466,8398799:0,807758,219026 +r1,12034:7908217,8398799:1143751,1026784,219026 +k1,11924:6764466,8398799:-1143751 +) +(1,11924:6764466,8398799:1143751,807758,219026 +) +k1,11924:8143787,8398799:235570 +k1,11924:8471467,8398799:327680 +k1,11924:9184795,8398799:235571 +k1,11924:10577075,8398799:235570 +k1,11924:12235432,8398799:235570 +k1,11924:12826863,8398799:235571 +k1,11924:15842470,8398799:235570 +k1,11924:17816055,8398799:235570 +k1,11924:18999277,8398799:235571 +k1,11924:20005550,8398799:235570 +k1,11924:22200646,8398799:235570 +k1,11924:23508386,8398799:235571 +k1,11924:25236866,8398799:235570 +k1,11924:26538707,8398799:235570 +k1,11924:28748222,8398799:235571 +k1,11924:30002877,8398799:235570 +k1,11924:32583029,8398799:0 +) +(1,11925:6764466,9263879:25818563,513147,134348 +k1,11924:8322597,9263879:164180 +k1,11924:8842638,9263879:164181 +k1,11924:10106513,9263879:164181 +k1,11924:10922121,9263879:164180 +(1,11924:10922121,9263879:0,452978,115847 +r1,12034:13390658,9263879:2468537,568825,115847 +k1,11924:10922121,9263879:-2468537 +) +(1,11924:10922121,9263879:2468537,452978,115847 +k1,11924:10922121,9263879:3277 +h1,11924:13387381,9263879:0,411205,112570 +) +k1,11924:13728508,9263879:164180 +k1,11924:14911774,9263879:164181 +k1,11924:17656107,9263879:164181 +k1,11924:18351784,9263879:164180 +k1,11924:19891565,9263879:164180 +k1,11924:22373754,9263879:164181 +k1,11924:23165769,9263879:164180 +k1,11924:25031920,9263879:164181 +k1,11924:27324710,9263879:164181 +k1,11924:28507975,9263879:164180 +k1,11924:30740471,9263879:164180 +k1,11924:31563944,9263879:164181 +k1,11924:32583029,9263879:0 +) +(1,11925:6764466,10128959:25818563,513147,134348 +k1,11924:9264103,10128959:209809 +k1,11924:10465472,10128959:209809 +k1,11924:11741551,10128959:209808 +k1,11924:13916785,10128959:209809 +k1,11924:14778022,10128959:209809 +k1,11924:16006916,10128959:209809 +k1,11924:18287007,10128959:209809 +k1,11924:20107690,10128959:209808 +k1,11924:21389668,10128959:209809 +k1,11924:22618562,10128959:209809 +k1,11924:24324558,10128959:209809 +k1,11924:27138111,10128959:209808 +k1,11924:28986975,10128959:209809 +k1,11924:29728281,10128959:209809 +k1,11924:32583029,10128959:0 +) +(1,11925:6764466,10994039:25818563,513147,134348 +g1,11924:8155140,10994039 +g1,11924:11138338,10994039 +g1,11924:13072960,10994039 +g1,11924:16052226,10994039 +k1,11925:32583029,10994039:14288816 +g1,11925:32583029,10994039 +) +] +g1,11925:32583029,11128387 +) +h1,11925:6630773,11128387:0,0,0 +v1,11928:6630773,11993467:0,393216,0 +(1,11929:6630773,17606352:25952256,6006101,0 +g1,11929:6630773,17606352 +g1,11929:6237557,17606352 +r1,12034:6368629,17606352:131072,6006101,0 +g1,11929:6567858,17606352 +g1,11929:6764466,17606352 +[1,11929:6764466,17606352:25818563,6006101,0 +(1,11929:6764466,12408009:25818563,807758,219026 +(1,11928:6764466,12408009:0,807758,219026 +r1,12034:7908217,12408009:1143751,1026784,219026 +k1,11928:6764466,12408009:-1143751 +) +(1,11928:6764466,12408009:1143751,807758,219026 +) +k1,11928:8176556,12408009:268339 +k1,11928:8504236,12408009:327680 +k1,11928:10489617,12408009:268338 +k1,11928:13783753,12408009:268339 +k1,11928:15336598,12408009:268339 +k1,11928:16596496,12408009:268338 +k1,11928:18186696,12408009:268339 +k1,11928:19122191,12408009:268339 +k1,11928:19805303,12408009:268269 +k1,11928:21065201,12408009:268338 +k1,11928:24177803,12408009:268339 +k1,11928:25713608,12408009:268339 +k1,11928:28892400,12408009:268338 +k1,11928:31821501,12408009:268339 +k1,11928:32583029,12408009:0 +) +(1,11929:6764466,13273089:25818563,513147,134348 +k1,11928:9923182,13273089:273166 +k1,11928:12236483,13273089:273166 +k1,11928:15689455,13273089:273166 +k1,11928:17247782,13273089:273166 +k1,11928:18712393,13273089:273166 +k1,11928:20089841,13273089:273166 +k1,11928:21110773,13273089:273166 +k1,11928:23251715,13273089:273166 +k1,11928:25222919,13273089:273166 +k1,11928:27794433,13273089:273166 +k1,11928:29802992,13273089:273166 +k1,11928:32583029,13273089:0 +) +(1,11929:6764466,14138169:25818563,513147,126483 +k1,11928:9192875,14138169:186422 +k1,11928:10845993,14138169:186422 +k1,11928:14058212,14138169:186422 +k1,11928:15390858,14138169:186421 +(1,11928:15390858,14138169:0,452978,115847 +r1,12034:17507683,14138169:2116825,568825,115847 +k1,11928:15390858,14138169:-2116825 +) +(1,11928:15390858,14138169:2116825,452978,115847 +k1,11928:15390858,14138169:3277 +h1,11928:17504406,14138169:0,411205,112570 +) +k1,11928:17694105,14138169:186422 +k1,11928:18984809,14138169:186422 +k1,11928:19918997,14138169:186422 +k1,11928:21973195,14138169:186422 +k1,11928:22845779,14138169:186422 +(1,11928:22845779,14138169:0,452978,115847 +r1,12034:27072875,14138169:4227096,568825,115847 +k1,11928:22845779,14138169:-4227096 +) +(1,11928:22845779,14138169:4227096,452978,115847 +k1,11928:22845779,14138169:3277 +h1,11928:27069598,14138169:0,411205,112570 +) +k1,11928:27259296,14138169:186421 +k1,11928:27911679,14138169:186422 +k1,11928:29478289,14138169:186422 +k1,11928:31835263,14138169:186422 +k1,11928:32583029,14138169:0 +) +(1,11929:6764466,15003249:25818563,513147,134348 +k1,11928:9822813,15003249:259304 +k1,11928:12496463,15003249:259304 +k1,11928:15285457,15003249:259304 +k1,11928:16204053,15003249:259304 +k1,11928:17482442,15003249:259304 +k1,11928:20571591,15003249:259304 +k1,11928:21490187,15003249:259304 +k1,11928:23451461,15003249:259304 +k1,11928:26000593,15003249:259304 +k1,11928:27653848,15003249:259304 +k1,11928:28932237,15003249:259304 +k1,11928:30845014,15003249:259304 +k1,11928:32583029,15003249:0 +) +(1,11929:6764466,15868329:25818563,513147,134348 +k1,11928:8739167,15868329:236686 +k1,11928:11381679,15868329:236685 +k1,11928:12234403,15868329:236686 +k1,11928:13490173,15868329:236685 +k1,11928:15662137,15868329:236686 +k1,11928:20129827,15868329:236686 +k1,11928:21049397,15868329:236685 +k1,11928:23404207,15868329:236686 +k1,11928:26226944,15868329:236686 +k1,11928:27417178,15868329:236685 +k1,11928:28758146,15868329:236686 +k1,11928:30260987,15868329:236685 +k1,11928:31563944,15868329:236686 +k1,11928:32583029,15868329:0 +) +(1,11929:6764466,16733409:25818563,513147,134348 +k1,11928:9034338,16733409:199590 +k1,11928:10973254,16733409:199590 +k1,11928:11934372,16733409:199590 +k1,11928:14223905,16733409:199590 +(1,11928:14223905,16733409:0,452978,115847 +r1,12034:17044154,16733409:2820249,568825,115847 +k1,11928:14223905,16733409:-2820249 +) +(1,11928:14223905,16733409:2820249,452978,115847 +k1,11928:14223905,16733409:3277 +h1,11928:17040877,16733409:0,411205,112570 +) +k1,11928:17417414,16733409:199590 +k1,11928:19010956,16733409:199591 +k1,11928:20229631,16733409:199590 +k1,11928:22499503,16733409:199590 +k1,11928:25177665,16733409:199590 +k1,11928:25990017,16733409:199590 +k1,11928:27208692,16733409:199590 +(1,11928:27208692,16733409:0,452978,115847 +r1,12034:31435788,16733409:4227096,568825,115847 +k1,11928:27208692,16733409:-4227096 +) +(1,11928:27208692,16733409:4227096,452978,115847 +k1,11928:27208692,16733409:3277 +h1,11928:31432511,16733409:0,411205,112570 +) +k1,11928:31635378,16733409:199590 +k1,11928:32583029,16733409:0 +) +(1,11929:6764466,17598489:25818563,505283,7863 +g1,11928:10480357,17598489 +g1,11928:13740773,17598489 +g1,11928:14552764,17598489 +g1,11928:15771078,17598489 +g1,11928:16415296,17598489 +g1,11928:19774016,17598489 +k1,11929:32583029,17598489:11466836 +g1,11929:32583029,17598489 +) +] +g1,11929:32583029,17606352 +) +h1,11929:6630773,17606352:0,0,0 +v1,11932:6630773,18471432:0,393216,0 +(1,12034:6630773,39829894:25952256,21751678,0 +g1,12034:6630773,39829894 +g1,12034:6237557,39829894 +r1,12034:6368629,39829894:131072,21751678,0 +g1,12034:6567858,39829894 +g1,12034:6764466,39829894 +[1,12034:6764466,39829894:25818563,21751678,0 +(1,11933:6764466,18779730:25818563,701514,196608 +(1,11932:6764466,18779730:0,701514,196608 +r1,12034:8010564,18779730:1246098,898122,196608 +k1,11932:6764466,18779730:-1246098 +) +(1,11932:6764466,18779730:1246098,701514,196608 +) +k1,11932:8326245,18779730:315681 +k1,11932:8653925,18779730:327680 +k1,11932:12903078,18779730:315682 +k1,11932:15310013,18779730:315681 +k1,11932:16644779,18779730:315681 +k1,11932:19028777,18779730:315682 +k1,11932:21726036,18779730:315681 +k1,11932:24051707,18779730:315682 +k1,11932:26006443,18779730:315681 +k1,11932:27889745,18779730:315681 +k1,11932:29949340,18779730:315682 +k1,11932:30881059,18779730:315681 +k1,11932:32583029,18779730:0 +) +(1,11933:6764466,19644810:25818563,505283,126483 +k1,11932:11068811,19644810:274536 +k1,11932:12724191,19644810:274536 +k1,11932:14717081,19644810:274536 +k1,11932:17424313,19644810:274536 +k1,11932:19436864,19644810:274536 +k1,11932:22202424,19644810:274537 +k1,11932:23668405,19644810:274536 +k1,11932:25988975,19644810:274536 +k1,11932:26721608,19644810:274536 +k1,11932:29626104,19644810:274536 +k1,11932:30552068,19644810:274536 +k1,11932:32583029,19644810:0 +) +(1,11933:6764466,20509890:25818563,513147,134348 +g1,11932:9253523,20509890 +g1,11932:10919448,20509890 +g1,11932:12816715,20509890 +g1,11932:14396132,20509890 +g1,11932:15586921,20509890 +g1,11932:18606164,20509890 +g1,11932:19566921,20509890 +g1,11932:20122010,20509890 +g1,11932:23083582,20509890 +g1,11932:25242337,20509890 +g1,11932:26835517,20509890 +g1,11932:28053831,20509890 +g1,11932:29906533,20509890 +k1,11933:32583029,20509890:764811 +g1,11933:32583029,20509890 +) +v1,11935:6764466,21194745:0,393216,0 +(1,11976:6764466,35173538:25818563,14372009,196608 +g1,11976:6764466,35173538 +g1,11976:6764466,35173538 +g1,11976:6567858,35173538 +(1,11976:6567858,35173538:0,14372009,196608 +r1,12034:32779637,35173538:26211779,14568617,196608 +k1,11976:6567857,35173538:-26211780 +) +(1,11976:6567858,35173538:26211779,14372009,196608 +[1,11976:6764466,35173538:25818563,14175401,0 +(1,11937:6764466,21429182:25818563,431045,106246 +(1,11936:6764466,21429182:0,0,0 +g1,11936:6764466,21429182 +g1,11936:6764466,21429182 +g1,11936:6436786,21429182 +(1,11936:6436786,21429182:0,0,0 +) +g1,11936:6764466,21429182 +) +k1,11937:6764466,21429182:0 +g1,11937:10415960,21429182 +g1,11937:11411822,21429182 +g1,11937:12075730,21429182 +g1,11937:14067454,21429182 +g1,11937:16059178,21429182 +k1,11937:16059178,21429182:0 +h1,11937:17386994,21429182:0,0,0 +k1,11937:32583029,21429182:15196035 +g1,11937:32583029,21429182 +) +(1,11944:6764466,22245109:25818563,424439,106246 +(1,11939:6764466,22245109:0,0,0 +g1,11939:6764466,22245109 +g1,11939:6764466,22245109 +g1,11939:6436786,22245109 +(1,11939:6436786,22245109:0,0,0 +) +g1,11939:6764466,22245109 +) +g1,11944:7760328,22245109 +g1,11944:8092282,22245109 +g1,11944:8424236,22245109 +g1,11944:10415960,22245109 +h1,11944:11743776,22245109:0,0,0 +k1,11944:32583028,22245109:20839252 +g1,11944:32583028,22245109 +) +(1,11944:6764466,22929964:25818563,407923,0 +h1,11944:6764466,22929964:0,0,0 +g1,11944:7760328,22929964 +g1,11944:8424236,22929964 +g1,11944:8756190,22929964 +g1,11944:9088144,22929964 +g1,11944:9420098,22929964 +g1,11944:9752052,22929964 +g1,11944:10415960,22929964 +g1,11944:10747914,22929964 +g1,11944:11079868,22929964 +g1,11944:11411822,22929964 +h1,11944:11743776,22929964:0,0,0 +k1,11944:32583028,22929964:20839252 +g1,11944:32583028,22929964 +) +(1,11944:6764466,23614819:25818563,407923,9908 +h1,11944:6764466,23614819:0,0,0 +g1,11944:7760328,23614819 +g1,11944:8424236,23614819 +g1,11944:8756190,23614819 +g1,11944:9088144,23614819 +g1,11944:9420098,23614819 +g1,11944:9752052,23614819 +g1,11944:10415960,23614819 +g1,11944:10747914,23614819 +g1,11944:11079868,23614819 +h1,11944:11743776,23614819:0,0,0 +k1,11944:32583028,23614819:20839252 +g1,11944:32583028,23614819 +) +(1,11944:6764466,24299674:25818563,407923,9908 +h1,11944:6764466,24299674:0,0,0 +g1,11944:7760328,24299674 +g1,11944:8424236,24299674 +g1,11944:8756190,24299674 +g1,11944:9088144,24299674 +g1,11944:9420098,24299674 +g1,11944:9752052,24299674 +g1,11944:10415960,24299674 +g1,11944:10747914,24299674 +g1,11944:11079868,24299674 +g1,11944:11411822,24299674 +h1,11944:11743776,24299674:0,0,0 +k1,11944:32583028,24299674:20839252 +g1,11944:32583028,24299674 +) +(1,11946:6764466,25115601:25818563,431045,112852 +(1,11945:6764466,25115601:0,0,0 +g1,11945:6764466,25115601 +g1,11945:6764466,25115601 +g1,11945:6436786,25115601 +(1,11945:6436786,25115601:0,0,0 +) +g1,11945:6764466,25115601 +) +k1,11946:6764466,25115601:0 +g1,11946:15395269,25115601 +g1,11946:16059177,25115601 +g1,11946:18714809,25115601 +g1,11946:19710671,25115601 +k1,11946:19710671,25115601:1652 +h1,11946:22036001,25115601:0,0,0 +k1,11946:32583029,25115601:10547028 +g1,11946:32583029,25115601 +) +(1,11950:6764466,25931528:25818563,424439,112852 +(1,11948:6764466,25931528:0,0,0 +g1,11948:6764466,25931528 +g1,11948:6764466,25931528 +g1,11948:6436786,25931528 +(1,11948:6436786,25931528:0,0,0 +) +g1,11948:6764466,25931528 +) +g1,11950:7760328,25931528 +g1,11950:9088144,25931528 +h1,11950:15063315,25931528:0,0,0 +k1,11950:32583029,25931528:17519714 +g1,11950:32583029,25931528 +) +(1,11952:6764466,26747455:25818563,424439,106246 +(1,11951:6764466,26747455:0,0,0 +g1,11951:6764466,26747455 +g1,11951:6764466,26747455 +g1,11951:6436786,26747455 +(1,11951:6436786,26747455:0,0,0 +) +g1,11951:6764466,26747455 +) +g1,11952:8424236,26747455 +g1,11952:9420098,26747455 +g1,11952:10747914,26747455 +g1,11952:12075730,26747455 +g1,11952:13071592,26747455 +h1,11952:14731362,26747455:0,0,0 +k1,11952:32583030,26747455:17851668 +g1,11952:32583030,26747455 +) +(1,11953:6764466,27432310:25818563,431045,112852 +h1,11953:6764466,27432310:0,0,0 +k1,11953:15421080,27432310:357765 +k1,11953:16110798,27432310:357764 +k1,11953:17464425,27432310:357765 +k1,11953:19481960,27432310:357765 +k1,11953:22163402,27432310:357764 +k1,11953:25840706,27432310:357765 +k1,11953:26862379,27432310:357765 +k1,11953:27884052,27432310:357765 +k1,11953:29237678,27432310:357764 +k1,11953:31587167,27432310:357765 +k1,11953:32583029,27432310:0 +) +(1,11953:6764466,28117165:25818563,424439,6605 +k1,11953:6764466,28117165:14864 +h1,11953:9766915,28117165:0,0,0 +k1,11953:32583029,28117165:22816114 +g1,11953:32583029,28117165 +) +(1,11957:6764466,28933092:25818563,424439,112852 +(1,11955:6764466,28933092:0,0,0 +g1,11955:6764466,28933092 +g1,11955:6764466,28933092 +g1,11955:6436786,28933092 +(1,11955:6436786,28933092:0,0,0 +) +g1,11955:6764466,28933092 +) +g1,11957:7760328,28933092 +g1,11957:9088144,28933092 +g1,11957:13403545,28933092 +g1,11957:13735499,28933092 +g1,11957:14067453,28933092 +g1,11957:14399407,28933092 +g1,11957:14731361,28933092 +g1,11957:15063315,28933092 +g1,11957:15395269,28933092 +h1,11957:21370440,28933092:0,0,0 +k1,11957:32583029,28933092:11212589 +g1,11957:32583029,28933092 +) +(1,11959:6764466,29749019:25818563,431045,112852 +(1,11958:6764466,29749019:0,0,0 +g1,11958:6764466,29749019 +g1,11958:6764466,29749019 +g1,11958:6436786,29749019 +(1,11958:6436786,29749019:0,0,0 +) +g1,11958:6764466,29749019 +) +g1,11959:8424236,29749019 +g1,11959:9088144,29749019 +g1,11959:11411822,29749019 +g1,11959:13071592,29749019 +g1,11959:15727224,29749019 +g1,11959:16723086,29749019 +g1,11959:18050902,29749019 +g1,11959:20374580,29749019 +k1,11959:20374580,29749019:14864 +h1,11959:24040937,29749019:0,0,0 +k1,11959:32583029,29749019:8542092 +g1,11959:32583029,29749019 +) +(1,11963:6764466,30564946:25818563,424439,106246 +(1,11961:6764466,30564946:0,0,0 +g1,11961:6764466,30564946 +g1,11961:6764466,30564946 +g1,11961:6436786,30564946 +(1,11961:6436786,30564946:0,0,0 +) +g1,11961:6764466,30564946 +) +g1,11963:7760328,30564946 +g1,11963:9088144,30564946 +g1,11963:10415960,30564946 +g1,11963:11743776,30564946 +g1,11963:12739638,30564946 +h1,11963:14399408,30564946:0,0,0 +k1,11963:32583028,30564946:18183620 +g1,11963:32583028,30564946 +) +(1,11965:6764466,31380873:25818563,431045,106246 +(1,11964:6764466,31380873:0,0,0 +g1,11964:6764466,31380873 +g1,11964:6764466,31380873 +g1,11964:6436786,31380873 +(1,11964:6436786,31380873:0,0,0 +) +g1,11964:6764466,31380873 +) +k1,11965:6764466,31380873:0 +g1,11965:13735499,31380873 +g1,11965:14731361,31380873 +g1,11965:15395269,31380873 +g1,11965:17386993,31380873 +g1,11965:19378717,31380873 +k1,11965:19378717,31380873:0 +h1,11965:20706533,31380873:0,0,0 +k1,11965:32583029,31380873:11876496 +g1,11965:32583029,31380873 +) +(1,11972:6764466,32196800:25818563,424439,106246 +(1,11967:6764466,32196800:0,0,0 +g1,11967:6764466,32196800 +g1,11967:6764466,32196800 +g1,11967:6436786,32196800 +(1,11967:6436786,32196800:0,0,0 +) +g1,11967:6764466,32196800 +) +g1,11972:7760328,32196800 +g1,11972:8092282,32196800 +g1,11972:8424236,32196800 +g1,11972:10415960,32196800 +h1,11972:11743776,32196800:0,0,0 +k1,11972:32583028,32196800:20839252 +g1,11972:32583028,32196800 +) +(1,11972:6764466,32881655:25818563,407923,0 +h1,11972:6764466,32881655:0,0,0 +g1,11972:7760328,32881655 +g1,11972:8424236,32881655 +g1,11972:8756190,32881655 +g1,11972:9088144,32881655 +g1,11972:9420098,32881655 +g1,11972:9752052,32881655 +g1,11972:10415960,32881655 +g1,11972:10747914,32881655 +g1,11972:11079868,32881655 +g1,11972:11411822,32881655 +h1,11972:11743776,32881655:0,0,0 +k1,11972:32583028,32881655:20839252 +g1,11972:32583028,32881655 +) +(1,11972:6764466,33566510:25818563,407923,9908 +h1,11972:6764466,33566510:0,0,0 +g1,11972:7760328,33566510 +g1,11972:8424236,33566510 +g1,11972:8756190,33566510 +g1,11972:9088144,33566510 +g1,11972:9420098,33566510 +g1,11972:9752052,33566510 +g1,11972:10415960,33566510 +g1,11972:10747914,33566510 +g1,11972:11079868,33566510 +h1,11972:11743776,33566510:0,0,0 +k1,11972:32583028,33566510:20839252 +g1,11972:32583028,33566510 +) +(1,11972:6764466,34251365:25818563,407923,9908 +h1,11972:6764466,34251365:0,0,0 +g1,11972:7760328,34251365 +g1,11972:8424236,34251365 +g1,11972:8756190,34251365 +g1,11972:9088144,34251365 +g1,11972:9420098,34251365 +g1,11972:9752052,34251365 +g1,11972:10415960,34251365 +g1,11972:10747914,34251365 +g1,11972:11079868,34251365 +g1,11972:11411822,34251365 +h1,11972:11743776,34251365:0,0,0 +k1,11972:32583028,34251365:20839252 +g1,11972:32583028,34251365 +) +(1,11974:6764466,35067292:25818563,424439,106246 +(1,11973:6764466,35067292:0,0,0 +g1,11973:6764466,35067292 +g1,11973:6764466,35067292 +g1,11973:6436786,35067292 +(1,11973:6436786,35067292:0,0,0 +) +g1,11973:6764466,35067292 +) +k1,11974:6764466,35067292:0 +g1,11974:9752052,35067292 +g1,11974:10415960,35067292 +g1,11974:12407684,35067292 +k1,11974:12407684,35067292:9909 +h1,11974:13081501,35067292:0,0,0 +k1,11974:32583029,35067292:19501528 +g1,11974:32583029,35067292 +) +] +) +g1,11976:32583029,35173538 +g1,11976:6764466,35173538 +g1,11976:6764466,35173538 +g1,11976:32583029,35173538 +g1,11976:32583029,35173538 +) +h1,11976:6764466,35370146:0,0,0 +(1,11980:6764466,36235226:25818563,513147,134348 +h1,11979:6764466,36235226:983040,0,0 +k1,11979:8553086,36235226:177745 +k1,11979:9749915,36235226:177744 +k1,11979:12589077,36235226:177745 +k1,11979:14622145,36235226:177744 +k1,11979:15012860,36235226:177723 +k1,11979:16703831,36235226:177745 +k1,11979:17237435,36235226:177744 +k1,11979:18804543,36235226:177745 +k1,11979:20858583,36235226:177744 +k1,11979:23169525,36235226:177745 +k1,11979:24419438,36235226:177744 +k1,11979:25616268,36235226:177745 +k1,11979:27447485,36235226:177744 +k1,11979:31593435,36235226:177745 +k1,11980:32583029,36235226:0 +) +(1,11980:6764466,37100306:25818563,513147,134348 +k1,11979:7946080,37100306:194642 +k1,11979:8792151,37100306:194643 +k1,11979:9752909,37100306:194642 +k1,11979:10392536,37100306:194638 +k1,11979:12877006,37100306:194642 +k1,11979:16052225,37100306:194642 +k1,11979:19446335,37100306:194642 +k1,11979:20837665,37100306:194643 +k1,11979:23858875,37100306:194642 +k1,11979:25751555,37100306:194642 +k1,11979:27102907,37100306:194642 +k1,11979:27956842,37100306:194643 +k1,11979:29170569,37100306:194642 +k1,11979:32583029,37100306:0 +) +(1,11980:6764466,37965386:25818563,513147,134348 +k1,11979:7468364,37965386:172401 +k1,11979:7996624,37965386:172400 +k1,11979:10864521,37965386:172401 +k1,11979:12228366,37965386:172400 +k1,11979:13419852,37965386:172401 +k1,11979:15294223,37965386:172401 +k1,11979:15998120,37965386:172400 +k1,11979:17410462,37965386:172401 +k1,11979:18114360,37965386:172401 +k1,11979:20635570,37965386:172400 +k1,11979:23570314,37965386:172401 +k1,11979:24358752,37965386:172400 +k1,11979:25815659,37965386:172401 +k1,11979:26343920,37965386:172401 +k1,11979:27616014,37965386:172400 +k1,11979:29523808,37965386:172401 +k1,11980:32583029,37965386:0 +) +(1,11980:6764466,38830466:25818563,513147,134348 +k1,11979:7849036,38830466:222772 +k1,11979:10761406,38830466:222772 +k1,11979:12116640,38830466:222772 +k1,11979:15899983,38830466:222772 +k1,11979:18757958,38830466:222772 +k1,11979:19336590,38830466:222772 +k1,11979:22254858,38830466:222772 +k1,11979:23669075,38830466:222772 +k1,11979:24662550,38830466:222772 +k1,11979:26844848,38830466:222772 +k1,11979:27726912,38830466:222772 +k1,11979:28968769,38830466:222772 +k1,11979:30845014,38830466:222772 +k1,11979:32583029,38830466:0 +) +(1,11980:6764466,39695546:25818563,513147,134348 +g1,11979:8248201,39695546 +g1,11979:8978927,39695546 +g1,11979:10244427,39695546 +g1,11979:10799516,39695546 +g1,11979:13867911,39695546 +g1,11979:16415950,39695546 +g1,11979:17424549,39695546 +g1,11979:18827019,39695546 +g1,11979:22452470,39695546 +g1,11979:23183196,39695546 +g1,11979:25752207,39695546 +g1,11979:26307296,39695546 +g1,11979:27683552,39695546 +k1,11980:32583029,39695546:3400669 +g1,11980:32583029,39695546 +) +] +g1,12034:32583029,39829894 +) +] +(1,12034:32583029,45706769:0,0,0 +g1,12034:32583029,45706769 +) +) +] +(1,12034:6630773,47279633:25952256,0,0 +h1,12034:6630773,47279633:25952256,0,0 +) +] +(1,12034:4262630,4025873:0,0,0 +[1,12034:-473656,4025873:0,0,0 +(1,12034:-473656,-710413:0,0,0 +(1,12034:-473656,-710413:0,0,0 +g1,12034:-473656,-710413 +) +g1,12034:-473656,-710413 ) ] ) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,12497:37855564,49800853:1179648,16384,0 +] +!25293 +}192 +!12 +{193 +[1,12049:4262630,47279633:28320399,43253760,0 +(1,12049:4262630,4025873:0,0,0 +[1,12049:-473656,4025873:0,0,0 +(1,12049:-473656,-710413:0,0,0 +(1,12049:-473656,-644877:0,0,0 +k1,12049:-473656,-644877:-65536 ) +(1,12049:-473656,4736287:0,0,0 +k1,12049:-473656,4736287:5209943 ) -k1,12497:3078556,49800853:-34777008 +g1,12049:-473656,-710413 ) ] -g1,12497:6630773,4812305 -g1,12497:6630773,4812305 -g1,12497:8843268,4812305 -g1,12497:10880782,4812305 -g1,12497:13281365,4812305 -k1,12497:31387653,4812305:18106288 -) -) -] -[1,12497:6630773,45706769:25952256,40108032,0 -(1,12497:6630773,45706769:25952256,40108032,0 -(1,12497:6630773,45706769:0,0,0 -g1,12497:6630773,45706769 -) -[1,12497:6630773,45706769:25952256,40108032,0 -(1,12435:6630773,6254097:25952256,513147,126483 -k1,12434:8965542,6254097:223854 -k1,12434:12605132,6254097:223854 -k1,12434:14113492,6254097:223854 -k1,12434:15023507,6254097:223853 -k1,12434:15778858,6254097:223854 -k1,12434:17021797,6254097:223854 -k1,12434:18612732,6254097:223854 -k1,12434:19784237,6254097:223854 -k1,12434:21609791,6254097:223854 -k1,12434:22248463,6254097:223829 -k1,12434:25671785,6254097:223854 -k1,12434:26914723,6254097:223853 -k1,12434:28818920,6254097:223854 -k1,12434:31821501,6254097:223854 -k1,12435:32583029,6254097:0 -) -(1,12435:6630773,7095585:25952256,505283,126483 -(1,12434:6630773,7095585:0,452978,115847 -r1,12497:9802733,7095585:3171960,568825,115847 -k1,12434:6630773,7095585:-3171960 -) -(1,12434:6630773,7095585:3171960,452978,115847 -k1,12434:6630773,7095585:3277 -h1,12434:9799456,7095585:0,411205,112570 -) -g1,12434:10001962,7095585 -g1,12434:10732688,7095585 -g1,12434:13282038,7095585 -g1,12434:15179305,7095585 -g1,12434:16246886,7095585 -g1,12434:17545809,7095585 -g1,12434:18948279,7095585 -g1,12434:21601831,7095585 -g1,12434:22413822,7095585 -g1,12434:23632136,7095585 -g1,12434:24246208,7095585 -k1,12435:32583029,7095585:5761911 -g1,12435:32583029,7095585 -) -v1,12437:6630773,8286051:0,393216,0 -(1,12461:6630773,20592352:25952256,12699517,196608 -g1,12461:6630773,20592352 -g1,12461:6630773,20592352 -g1,12461:6434165,20592352 -(1,12461:6434165,20592352:0,12699517,196608 -r1,12497:32779637,20592352:26345472,12896125,196608 -k1,12461:6434165,20592352:-26345472 -) -(1,12461:6434165,20592352:26345472,12699517,196608 -[1,12461:6630773,20592352:25952256,12502909,0 -(1,12439:6630773,8499961:25952256,410518,101187 -(1,12438:6630773,8499961:0,0,0 -g1,12438:6630773,8499961 -g1,12438:6630773,8499961 -g1,12438:6303093,8499961 -(1,12438:6303093,8499961:0,0,0 -) -g1,12438:6630773,8499961 -) -k1,12439:6630773,8499961:0 -h1,12439:10424521,8499961:0,0,0 -k1,12439:32583029,8499961:22158508 -g1,12439:32583029,8499961 -) -(1,12460:6630773,9166139:25952256,379060,0 -(1,12441:6630773,9166139:0,0,0 -g1,12441:6630773,9166139 -g1,12441:6630773,9166139 -g1,12441:6303093,9166139 -(1,12441:6303093,9166139:0,0,0 -) -g1,12441:6630773,9166139 -) -h1,12460:7263064,9166139:0,0,0 -k1,12460:32583028,9166139:25319964 -g1,12460:32583028,9166139 -) -(1,12460:6630773,9832317:25952256,404226,7863 -h1,12460:6630773,9832317:0,0,0 -g1,12460:7579210,9832317 -h1,12460:9159938,9832317:0,0,0 -k1,12460:32583030,9832317:23423092 -g1,12460:32583030,9832317 -) -(1,12460:6630773,10498495:25952256,410518,101187 -h1,12460:6630773,10498495:0,0,0 -g1,12460:7579210,10498495 -g1,12460:11056813,10498495 -g1,12460:11689105,10498495 -g1,12460:13269834,10498495 -g1,12460:13902126,10498495 -g1,12460:14534418,10498495 -g1,12460:15166710,10498495 -g1,12460:17379730,10498495 -g1,12460:18960459,10498495 -g1,12460:19592751,10498495 -h1,12460:21173479,10498495:0,0,0 -k1,12460:32583029,10498495:11409550 -g1,12460:32583029,10498495 -) -(1,12460:6630773,11164673:25952256,379060,0 -h1,12460:6630773,11164673:0,0,0 -h1,12460:7263064,11164673:0,0,0 -k1,12460:32583028,11164673:25319964 -g1,12460:32583028,11164673 -) -(1,12460:6630773,11830851:25952256,404226,6290 -h1,12460:6630773,11830851:0,0,0 -g1,12460:7579210,11830851 -h1,12460:10740667,11830851:0,0,0 -k1,12460:32583029,11830851:21842362 -g1,12460:32583029,11830851 -) -(1,12460:6630773,12497029:25952256,404226,82312 -h1,12460:6630773,12497029:0,0,0 -g1,12460:7579210,12497029 -g1,12460:7895356,12497029 -g1,12460:8211502,12497029 -g1,12460:8527648,12497029 -g1,12460:8843794,12497029 -g1,12460:10108377,12497029 -g1,12460:10424523,12497029 -g1,12460:10740669,12497029 -g1,12460:11056815,12497029 -g1,12460:11372961,12497029 -g1,12460:11689107,12497029 -g1,12460:12637544,12497029 -g1,12460:12953690,12497029 -g1,12460:15166710,12497029 -g1,12460:15482856,12497029 -g1,12460:15799002,12497029 -g1,12460:16115148,12497029 -g1,12460:16431294,12497029 -g1,12460:16747440,12497029 -g1,12460:17695877,12497029 -g1,12460:18012023,12497029 -g1,12460:18328169,12497029 -g1,12460:18644315,12497029 -g1,12460:18960461,12497029 -h1,12460:19908898,12497029:0,0,0 -k1,12460:32583029,12497029:12674131 -g1,12460:32583029,12497029 -) -(1,12460:6630773,13163207:25952256,388497,9436 -h1,12460:6630773,13163207:0,0,0 -g1,12460:7579210,13163207 -g1,12460:10108376,13163207 -g1,12460:10424522,13163207 -g1,12460:12637542,13163207 -g1,12460:12953688,13163207 -g1,12460:15166708,13163207 -g1,12460:15482854,13163207 -g1,12460:15799000,13163207 -g1,12460:17695874,13163207 -g1,12460:18012020,13163207 -h1,12460:19908894,13163207:0,0,0 -k1,12460:32583029,13163207:12674135 -g1,12460:32583029,13163207 -) -(1,12460:6630773,13829385:25952256,379060,0 -h1,12460:6630773,13829385:0,0,0 -h1,12460:7263064,13829385:0,0,0 -k1,12460:32583028,13829385:25319964 -g1,12460:32583028,13829385 -) -(1,12460:6630773,14495563:25952256,410518,7863 -h1,12460:6630773,14495563:0,0,0 -g1,12460:7579210,14495563 -h1,12460:11689104,14495563:0,0,0 -k1,12460:32583028,14495563:20893924 -g1,12460:32583028,14495563 -) -(1,12460:6630773,15161741:25952256,404226,76021 -h1,12460:6630773,15161741:0,0,0 -g1,12460:7579210,15161741 -g1,12460:7895356,15161741 -g1,12460:8211502,15161741 -g1,12460:8527648,15161741 -g1,12460:8843794,15161741 -g1,12460:9159940,15161741 -g1,12460:9476086,15161741 -g1,12460:9792232,15161741 -g1,12460:10108378,15161741 -g1,12460:10424524,15161741 -g1,12460:10740670,15161741 -g1,12460:11056816,15161741 -g1,12460:11372962,15161741 -g1,12460:14218273,15161741 -g1,12460:15799002,15161741 -g1,12460:17695876,15161741 -g1,12460:18328168,15161741 -g1,12460:20225042,15161741 -k1,12460:20225042,15161741:0 -h1,12460:22754207,15161741:0,0,0 -k1,12460:32583029,15161741:9828822 -g1,12460:32583029,15161741 -) -(1,12460:6630773,15827919:25952256,404226,101187 -h1,12460:6630773,15827919:0,0,0 -g1,12460:7579210,15827919 -g1,12460:11372958,15827919 -g1,12460:14218269,15827919 -g1,12460:14534415,15827919 -g1,12460:14850561,15827919 -g1,12460:15166707,15827919 -g1,12460:15482853,15827919 -g1,12460:17695873,15827919 -g1,12460:18012019,15827919 -g1,12460:20225039,15827919 -g1,12460:20541185,15827919 -g1,12460:20857331,15827919 -g1,12460:23070351,15827919 -h1,12460:23386497,15827919:0,0,0 -k1,12460:32583029,15827919:9196532 -g1,12460:32583029,15827919 -) -(1,12460:6630773,16494097:25952256,404226,101187 -h1,12460:6630773,16494097:0,0,0 -g1,12460:7579210,16494097 -g1,12460:9476084,16494097 -g1,12460:9792230,16494097 -g1,12460:10108376,16494097 -g1,12460:10424522,16494097 -g1,12460:10740668,16494097 -g1,12460:11056814,16494097 -g1,12460:11372960,16494097 -g1,12460:11689106,16494097 -g1,12460:12005252,16494097 -g1,12460:14218272,16494097 -g1,12460:14534418,16494097 -g1,12460:14850564,16494097 -g1,12460:15166710,16494097 -g1,12460:15482856,16494097 -g1,12460:17695876,16494097 -g1,12460:18012022,16494097 -g1,12460:18328168,16494097 -g1,12460:20225042,16494097 -g1,12460:23070353,16494097 -h1,12460:24018790,16494097:0,0,0 -k1,12460:32583029,16494097:8564239 -g1,12460:32583029,16494097 -) -(1,12460:6630773,17160275:25952256,379060,0 -h1,12460:6630773,17160275:0,0,0 -g1,12460:7579210,17160275 -k1,12460:7579210,17160275:0 -h1,12460:8527648,17160275:0,0,0 -k1,12460:32583028,17160275:24055380 -g1,12460:32583028,17160275 -) -(1,12460:6630773,17826453:25952256,410518,107478 -h1,12460:6630773,17826453:0,0,0 -g1,12460:7579210,17826453 -g1,12460:10108376,17826453 -g1,12460:12321396,17826453 -g1,12460:12637542,17826453 -g1,12460:13269834,17826453 -g1,12460:15166709,17826453 -g1,12460:17063583,17826453 -g1,12460:18644312,17826453 -g1,12460:20225041,17826453 -g1,12460:21489625,17826453 -g1,12460:23070354,17826453 -g1,12460:24334938,17826453 -g1,12460:25599521,17826453 -g1,12460:26231813,17826453 -g1,12460:26864105,17826453 -h1,12460:27180251,17826453:0,0,0 -k1,12460:32583029,17826453:5402778 -g1,12460:32583029,17826453 -) -(1,12460:6630773,18492631:25952256,379060,0 -h1,12460:6630773,18492631:0,0,0 -h1,12460:7263064,18492631:0,0,0 -k1,12460:32583028,18492631:25319964 -g1,12460:32583028,18492631 -) -(1,12460:6630773,19158809:25952256,410518,107478 -h1,12460:6630773,19158809:0,0,0 -g1,12460:7579210,19158809 -g1,12460:10424521,19158809 -g1,12460:13269832,19158809 -g1,12460:15482852,19158809 -g1,12460:17379726,19158809 -g1,12460:18328163,19158809 -g1,12460:19276600,19158809 -g1,12460:21805766,19158809 -g1,12460:22754203,19158809 -h1,12460:24967223,19158809:0,0,0 -k1,12460:32583029,19158809:7615806 -g1,12460:32583029,19158809 -) -(1,12460:6630773,19824987:25952256,404226,107478 -h1,12460:6630773,19824987:0,0,0 -g1,12460:7579210,19824987 -g1,12460:10424521,19824987 -g1,12460:13902124,19824987 -g1,12460:14218270,19824987 -g1,12460:19276601,19824987 -g1,12460:22754204,19824987 -g1,12460:23070350,19824987 -h1,12460:24967224,19824987:0,0,0 -k1,12460:32583029,19824987:7615805 -g1,12460:32583029,19824987 -) -(1,12460:6630773,20491165:25952256,404226,101187 -h1,12460:6630773,20491165:0,0,0 -g1,12460:7579210,20491165 -g1,12460:11689104,20491165 -g1,12460:13585978,20491165 -g1,12460:14534415,20491165 -g1,12460:15166707,20491165 -g1,12460:16431290,20491165 -g1,12460:17379727,20491165 -g1,12460:18644310,20491165 -g1,12460:18960456,20491165 -g1,12460:21805768,20491165 -k1,12460:21805768,20491165:0 -h1,12460:24334933,20491165:0,0,0 -k1,12460:32583029,20491165:8248096 -g1,12460:32583029,20491165 -) -] -) -g1,12461:32583029,20592352 -g1,12461:6630773,20592352 -g1,12461:6630773,20592352 -g1,12461:32583029,20592352 -g1,12461:32583029,20592352 -) -h1,12461:6630773,20788960:0,0,0 -(1,12465:6630773,22154736:25952256,513147,126483 -h1,12464:6630773,22154736:983040,0,0 -k1,12464:9293803,22154736:206741 -k1,12464:10887286,22154736:206741 -k1,12464:11706789,22154736:206741 -k1,12464:12932614,22154736:206740 -k1,12464:15787665,22154736:206741 -k1,12464:16653698,22154736:206741 -k1,12464:17879524,22154736:206741 -k1,12464:21250343,22154736:206741 -k1,12464:23735771,22154736:206741 -k1,12464:24704039,22154736:206740 -k1,12464:27363137,22154736:206741 -k1,12464:29512365,22154736:206741 -k1,12464:31714677,22154736:206741 -k1,12464:32583029,22154736:0 -) -(1,12465:6630773,22996224:25952256,513147,126483 -k1,12464:8222553,22996224:151954 -h1,12464:8222553,22996224:0,0,0 -k1,12464:10104688,22996224:301407 -k1,12464:10801278,22996224:301408 -k1,12464:11497868,22996224:301408 -k1,12464:12194458,22996224:301408 -k1,12464:14322321,22996224:151953 -k1,12464:15157160,22996224:151954 -k1,12464:16328198,22996224:151953 -k1,12464:20500786,22996224:151954 -k1,12464:21312032,22996224:151954 -k1,12464:22483070,22996224:151953 -k1,12464:24622731,22996224:151954 -k1,12464:26660810,22996224:151953 -k1,12464:28183777,22996224:151954 -k1,12464:29354815,22996224:151953 -k1,12464:30896132,22996224:151954 -k1,12464:32583029,22996224:0 -) -(1,12465:6630773,23837712:25952256,513147,126483 -k1,12464:8754139,23837712:180879 -k1,12464:12759699,23837712:180879 -k1,12464:13808931,23837712:180880 -k1,12464:15255966,23837712:180879 -k1,12464:16455930,23837712:180879 -k1,12464:19713069,23837712:180879 -k1,12464:22698235,23837712:180880 -k1,12464:24070559,23837712:180879 -k1,12464:26611389,23837712:180879 -k1,12464:27451560,23837712:180879 -k1,12464:28651525,23837712:180880 -k1,12464:31900144,23837712:180879 -k1,12464:32583029,23837712:0 -) -(1,12465:6630773,24679200:25952256,513147,11795 -k1,12464:10122466,24679200:211616 -k1,12464:12969284,24679200:211615 -k1,12464:17252652,24679200:211616 -k1,12464:18655712,24679200:211615 -k1,12464:19886413,24679200:211616 -k1,12464:21810484,24679200:211615 -k1,12464:23364277,24679200:211616 -k1,12464:25518379,24679200:211615 -k1,12464:30236906,24679200:211616 -k1,12464:31316873,24679200:211615 -k1,12464:32583029,24679200:0 -) -(1,12465:6630773,25520688:25952256,513147,134348 -k1,12464:7882213,25520688:232355 -k1,12464:11160681,25520688:232355 -k1,12464:12052327,25520688:232354 -k1,12464:13303767,25520688:232355 -k1,12464:15523829,25520688:232355 -k1,12464:19367218,25520688:232355 -k1,12464:20791018,25520688:232355 -k1,12464:22532012,25520688:232355 -k1,12464:25590278,25520688:232354 -k1,12464:27193646,25520688:232355 -k1,12464:32049566,25520688:232355 -$1,12464:32049566,25520688 -$1,12464:32370037,25520688 -k1,12465:32583029,25520688:0 -) -(1,12465:6630773,26362176:25952256,513147,134348 -k1,12464:8529725,26362176:203536 -k1,12464:9477750,26362176:203536 -k1,12464:10700371,26362176:203536 -k1,12464:12086832,26362176:203536 -k1,12464:12949660,26362176:203536 -k1,12464:14172281,26362176:203536 -k1,12464:17366225,26362176:203536 -k1,12464:19224545,26362176:203536 -k1,12464:19959578,26362176:203536 -k1,12464:23970100,26362176:203536 -k1,12464:24983006,26362176:203536 -k1,12464:27642176,26362176:203536 -k1,12464:28505004,26362176:203536 -k1,12464:31391584,26362176:203536 -k1,12464:32583029,26362176:0 -) -(1,12465:6630773,27203664:25952256,615216,95026 -g1,12464:8983515,27203664 -g1,12464:12463476,27203664 -g1,12464:13321997,27203664 -g1,12464:18041244,27203664 -$1,12464:18248338,27203664 -(1,12464:18742479,26928383:311689,339935,0 -) -$1,12464:19054168,27203664 -k1,12465:32583029,27203664:13148097 -g1,12465:32583029,27203664 -) -(1,12467:6630773,28045152:25952256,513147,126484 -h1,12466:6630773,28045152:983040,0,0 -k1,12466:8387836,28045152:296266 -k1,12466:9552455,28045152:296267 -k1,12466:11859366,28045152:296266 -k1,12466:12807060,28045152:296266 -k1,12466:14122411,28045152:296266 -k1,12466:16406385,28045152:296267 -k1,12466:20687240,28045152:296266 -k1,12466:21851858,28045152:296266 -k1,12466:23252406,28045152:296266 -k1,12466:24879054,28045152:296267 -k1,12466:27473668,28045152:296266 -$1,12466:27473668,28045152 -$1,12466:27981572,28045152 -k1,12466:28277838,28045152:296266 -k1,12466:29765550,28045152:296267 -$1,12466:29765550,28045152 -$1,12466:30209884,28045152 -k1,12466:30506150,28045152:296266 -k1,12466:31563944,28045152:296266 -k1,12466:32583029,28045152:0 -) -(1,12467:6630773,28886640:25952256,513147,138281 -k1,12466:9846410,28886640:169524 -k1,12466:13029935,28886640:169524 -$1,12466:13029935,28886640 -k1,12466:13763808,28886640:182060 -k1,12466:14514065,28886640:182060 -k1,12466:16547537,28886640:80499 -k1,12466:17196234,28886640:80500 -$1,12466:19083671,28886640 -k1,12466:19426865,28886640:169524 -k1,12466:21396663,28886640:169524 -k1,12466:22585272,28886640:169524 -k1,12466:24832943,28886640:169524 -k1,12466:25661759,28886640:169524 -k1,12466:26850368,28886640:169524 -k1,12466:29870053,28886640:169524 -k1,12466:30907929,28886640:169524 -k1,12466:32583029,28886640:0 -) -(1,12467:6630773,29728128:25952256,513147,134348 -k1,12466:8662842,29728128:216722 -k1,12466:9660099,29728128:216723 -k1,12466:11120694,29728128:216722 -k1,12466:14394016,29728128:216722 -k1,12466:15895245,29728128:216723 -k1,12466:18925428,29728128:216722 -k1,12466:21802912,29728128:216722 -k1,12466:23641650,29728128:216722 -k1,12466:24606139,29728128:216723 -k1,12466:26243026,29728128:216722 -k1,12466:28157786,29728128:216722 -k1,12466:30240974,29728128:216723 -k1,12466:30989193,29728128:216722 -k1,12466:32583029,29728128:0 -) -(1,12467:6630773,30569616:25952256,513147,134348 -k1,12466:8198412,30569616:186795 -k1,12466:11143617,30569616:186795 -k1,12466:12614918,30569616:186795 -k1,12466:13670065,30569616:186795 -k1,12466:16037243,30569616:186795 -k1,12466:17290309,30569616:186795 -k1,12466:20192916,30569616:186795 -k1,12466:21398795,30569616:186794 -k1,12466:23265933,30569616:186795 -k1,12466:24112020,30569616:186795 -$1,12466:24112020,30569616 -$1,12466:24619924,30569616 -k1,12466:24806719,30569616:186795 -k1,12466:26065683,30569616:186795 -k1,12466:28579661,30569616:186795 -k1,12466:29700999,30569616:186795 -$1,12466:29700999,30569616 -k1,12466:30390963,30569616:182060 -k1,12466:31141220,30569616:182060 -$1,12466:31539679,30569616 -k1,12466:31900144,30569616:186795 -k1,12466:32583029,30569616:0 -) -(1,12467:6630773,31411104:25952256,513147,138281 -g1,12466:7446040,31411104 -g1,12466:9347239,31411104 -g1,12466:11675077,31411104 -g1,12466:12561779,31411104 -g1,12466:13780093,31411104 -g1,12466:15967029,31411104 -$1,12466:15967029,31411104 -g1,12466:16700902,31411104 -g1,12466:17451159,31411104 -g1,12466:18041141,31411104 -g1,12466:18455487,31411104 -$1,12466:18958148,31411104 -k1,12467:32583029,31411104:13451211 -g1,12467:32583029,31411104 -) -(1,12469:6630773,32252592:25952256,505283,126483 -h1,12468:6630773,32252592:983040,0,0 -k1,12468:10739771,32252592:191256 -k1,12468:11547066,32252592:191257 -k1,12468:12153158,32252592:191249 -k1,12468:14836093,32252592:191256 -k1,12468:16046435,32252592:191257 -k1,12468:19104891,32252592:191256 -k1,12468:19827645,32252592:191257 -k1,12468:22148166,32252592:191256 -k1,12468:25345559,32252592:191257 -k1,12468:28468896,32252592:191256 -k1,12468:29384981,32252592:191257 -k1,12468:30595322,32252592:191256 -k1,12468:32583029,32252592:0 -) -(1,12469:6630773,33094080:25952256,513147,134348 -k1,12468:8620661,33094080:277432 -k1,12468:10753417,33094080:277432 -k1,12468:12135130,33094080:277431 -k1,12468:13160328,33094080:277432 -k1,12468:17006195,33094080:277432 -k1,12468:17969789,33094080:277432 -h1,12468:17969789,33094080:0,0,0 -k1,12468:20100819,33094080:550302 -k1,12468:21046303,33094080:550302 -k1,12468:25024553,33094080:277432 -k1,12468:25657845,33094080:277432 -k1,12468:28407295,33094080:277432 -(1,12468:28407295,33094080:0,435480,115847 -r1,12497:29468985,33094080:1061690,551327,115847 -k1,12468:28407295,33094080:-1061690 -) -(1,12468:28407295,33094080:1061690,435480,115847 -g1,12468:29113996,33094080 -h1,12468:29465708,33094080:0,411205,112570 -) -k1,12468:29746416,33094080:277431 -k1,12468:31516758,33094080:277432 -k1,12468:32583029,33094080:0 -) -(1,12469:6630773,33935568:25952256,513147,134348 -k1,12468:9089079,33935568:217630 -k1,12468:10325794,33935568:217630 -k1,12468:12704801,33935568:217630 -k1,12468:13751461,33935568:217630 -k1,12468:16403098,33935568:217630 -k1,12468:17639813,33935568:217630 -k1,12468:20724642,33935568:217629 -k1,12468:22509893,33935568:217630 -k1,12468:23746608,33935568:217630 -k1,12468:26718716,33935568:217630 -k1,12468:29097723,33935568:217630 -k1,12468:30183705,33935568:217630 -k1,12468:31931601,33935568:217630 -k1,12468:32583029,33935568:0 -) -(1,12469:6630773,34777056:25952256,513147,134348 -k1,12468:9093723,34777056:203924 -k1,12468:9755745,34777056:203925 -k1,12468:10645831,34777056:203924 -h1,12468:10645831,34777056:0,0,0 -k1,12468:12631055,34777056:404496 -k1,12468:13430732,34777056:404495 -k1,12468:15811138,34777056:404496 -k1,12468:16610816,34777056:404496 -k1,12468:17209922,34777056:203924 -k1,12468:18303825,34777056:203924 -k1,12468:19296148,34777056:203925 -k1,12468:22805053,34777056:203924 -h1,12468:22805053,34777056:0,0,0 -k1,12468:24790277,34777056:404496 -k1,12468:25589954,34777056:404495 -k1,12468:27970360,34777056:404496 -k1,12468:28770038,34777056:404496 -k1,12468:29749908,34777056:203924 -k1,12468:32583029,34777056:0 -) -(1,12469:6630773,35618544:25952256,513147,138281 -g1,12468:7446040,35618544 -g1,12468:8664354,35618544 -g1,12468:10798206,35618544 -g1,12468:11656727,35618544 -g1,12468:12211816,35618544 -g1,12468:14889617,35618544 -g1,12468:16257353,35618544 -g1,12468:18884036,35618544 -g1,12468:21641791,35618544 -g1,12468:22860105,35618544 -g1,12468:24933664,35618544 -$1,12468:25140758,35618544 -g1,12468:25825479,35618544 -g1,12468:26575736,35618544 -$1,12468:26974195,35618544 -g1,12468:27347094,35618544 -$1,12468:27347094,35618544 -g1,12468:28080967,35618544 -g1,12468:28831224,35618544 -$1,12468:29229683,35618544 -k1,12469:32583029,35618544:2972582 -g1,12469:32583029,35618544 -) -(1,12471:6630773,36460032:25952256,513147,126483 -h1,12470:6630773,36460032:983040,0,0 -k1,12470:9193464,36460032:171938 -k1,12470:11020187,36460032:171939 -k1,12470:11723622,36460032:171938 -k1,12470:12704930,36460032:171938 -k1,12470:15592680,36460032:171938 -k1,12470:16712270,36460032:171939 -k1,12470:17903293,36460032:171938 -k1,12470:20942431,36460032:171938 -k1,12470:21730408,36460032:171939 -k1,12470:22921431,36460032:171938 -k1,12470:26257447,36460032:171938 -k1,12470:27804986,36460032:171938 -k1,12470:28747628,36460032:171939 -k1,12470:31635378,36460032:171938 -k1,12470:32583029,36460032:0 -) -(1,12471:6630773,37301520:25952256,505283,126483 -g1,12470:7849087,37301520 -k1,12471:32583029,37301520:22862234 -g1,12471:32583029,37301520 -) -v1,12473:6630773,38491986:0,393216,0 -(1,12497:6630773,45375539:25952256,7276769,196608 -g1,12497:6630773,45375539 -g1,12497:6630773,45375539 -g1,12497:6434165,45375539 -(1,12497:6434165,45375539:0,7276769,196608 -r1,12497:32779637,45375539:26345472,7473377,196608 -k1,12497:6434165,45375539:-26345472 -) -(1,12497:6434165,45375539:26345472,7276769,196608 -[1,12497:6630773,45375539:25952256,7080161,0 -(1,12475:6630773,38705896:25952256,410518,101187 -(1,12474:6630773,38705896:0,0,0 -g1,12474:6630773,38705896 -g1,12474:6630773,38705896 -g1,12474:6303093,38705896 -(1,12474:6303093,38705896:0,0,0 -) -g1,12474:6630773,38705896 -) -g1,12475:7895356,38705896 -g1,12475:8843794,38705896 -g1,12475:11372959,38705896 -g1,12475:12005251,38705896 -g1,12475:13902125,38705896 -g1,12475:14534417,38705896 -g1,12475:15482855,38705896 -g1,12475:17063584,38705896 -g1,12475:17695876,38705896 -h1,12475:19276604,38705896:0,0,0 -k1,12475:32583029,38705896:13306425 -g1,12475:32583029,38705896 -) -(1,12476:6630773,39372074:25952256,410518,101187 -h1,12476:6630773,39372074:0,0,0 -k1,12476:6630773,39372074:0 -h1,12476:10424521,39372074:0,0,0 -k1,12476:32583029,39372074:22158508 -g1,12476:32583029,39372074 -) -(1,12496:6630773,40038252:25952256,379060,0 -(1,12478:6630773,40038252:0,0,0 -g1,12478:6630773,40038252 -g1,12478:6630773,40038252 -g1,12478:6303093,40038252 -(1,12478:6303093,40038252:0,0,0 -) -g1,12478:6630773,40038252 -) -h1,12496:7263064,40038252:0,0,0 -k1,12496:32583028,40038252:25319964 -g1,12496:32583028,40038252 -) -(1,12496:6630773,40704430:25952256,404226,7863 -h1,12496:6630773,40704430:0,0,0 -g1,12496:7579210,40704430 -h1,12496:9159938,40704430:0,0,0 -k1,12496:32583030,40704430:23423092 -g1,12496:32583030,40704430 -) -(1,12496:6630773,41370608:25952256,410518,101187 -h1,12496:6630773,41370608:0,0,0 -g1,12496:7579210,41370608 -g1,12496:11056813,41370608 -g1,12496:11689105,41370608 -g1,12496:13269834,41370608 -g1,12496:13902126,41370608 -g1,12496:15799000,41370608 -g1,12496:16431292,41370608 -g1,12496:17379730,41370608 -g1,12496:18960459,41370608 -g1,12496:19592751,41370608 -h1,12496:21173479,41370608:0,0,0 -k1,12496:32583029,41370608:11409550 -g1,12496:32583029,41370608 -) -(1,12496:6630773,42036786:25952256,379060,0 -h1,12496:6630773,42036786:0,0,0 -h1,12496:7263064,42036786:0,0,0 -k1,12496:32583028,42036786:25319964 -g1,12496:32583028,42036786 -) -(1,12496:6630773,42702964:25952256,404226,6290 -h1,12496:6630773,42702964:0,0,0 -g1,12496:7579210,42702964 -h1,12496:10740667,42702964:0,0,0 -k1,12496:32583029,42702964:21842362 -g1,12496:32583029,42702964 -) -(1,12496:6630773,43369142:25952256,404226,82312 -h1,12496:6630773,43369142:0,0,0 -g1,12496:7579210,43369142 -g1,12496:7895356,43369142 -g1,12496:8211502,43369142 -g1,12496:8527648,43369142 -g1,12496:8843794,43369142 -g1,12496:10108377,43369142 -g1,12496:10424523,43369142 -g1,12496:10740669,43369142 -g1,12496:11056815,43369142 -g1,12496:11372961,43369142 -g1,12496:11689107,43369142 -g1,12496:12637544,43369142 -g1,12496:12953690,43369142 -g1,12496:15166710,43369142 -g1,12496:15482856,43369142 -g1,12496:15799002,43369142 -g1,12496:16115148,43369142 -g1,12496:16431294,43369142 -g1,12496:16747440,43369142 -g1,12496:17695877,43369142 -g1,12496:18012023,43369142 -g1,12496:18328169,43369142 -g1,12496:18644315,43369142 -g1,12496:18960461,43369142 -h1,12496:19908898,43369142:0,0,0 -k1,12496:32583029,43369142:12674131 -g1,12496:32583029,43369142 -) -(1,12496:6630773,44035320:25952256,388497,9436 -h1,12496:6630773,44035320:0,0,0 -g1,12496:7579210,44035320 -g1,12496:10108376,44035320 -g1,12496:12637542,44035320 -g1,12496:12953688,44035320 -g1,12496:15166708,44035320 -g1,12496:15482854,44035320 -g1,12496:15799000,44035320 -g1,12496:17695874,44035320 -g1,12496:18012020,44035320 -h1,12496:19908894,44035320:0,0,0 -k1,12496:32583029,44035320:12674135 -g1,12496:32583029,44035320 -) -(1,12496:6630773,44701498:25952256,379060,0 -h1,12496:6630773,44701498:0,0,0 -h1,12496:7263064,44701498:0,0,0 -k1,12496:32583028,44701498:25319964 -g1,12496:32583028,44701498 -) -(1,12496:6630773,45367676:25952256,410518,7863 -h1,12496:6630773,45367676:0,0,0 -g1,12496:7579210,45367676 -h1,12496:11689104,45367676:0,0,0 -k1,12496:32583028,45367676:20893924 -g1,12496:32583028,45367676 -) -] -) -g1,12497:32583029,45375539 -g1,12497:6630773,45375539 -g1,12497:6630773,45375539 -g1,12497:32583029,45375539 -g1,12497:32583029,45375539 -) -] -(1,12497:32583029,45706769:0,0,0 -g1,12497:32583029,45706769 -) -) -] -(1,12497:6630773,47279633:25952256,0,0 -h1,12497:6630773,47279633:25952256,0,0 -) -] -(1,12497:4262630,4025873:0,0,0 -[1,12497:-473656,4025873:0,0,0 -(1,12497:-473656,-710413:0,0,0 -(1,12497:-473656,-710413:0,0,0 -g1,12497:-473656,-710413 -) -g1,12497:-473656,-710413 -) -] -) -] -!27503 -}214 -Input:1858:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1859:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1860:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1861:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1862:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1863:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1864:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1865:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1866:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1867:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1868:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1046 -{215 -[1,12565:4262630,47279633:28320399,43253760,0 -(1,12565:4262630,4025873:0,0,0 -[1,12565:-473656,4025873:0,0,0 -(1,12565:-473656,-710413:0,0,0 -(1,12565:-473656,-644877:0,0,0 -k1,12565:-473656,-644877:-65536 ) -(1,12565:-473656,4736287:0,0,0 -k1,12565:-473656,4736287:5209943 +[1,12049:6630773,47279633:25952256,43253760,0 +[1,12049:6630773,4812305:25952256,786432,0 +(1,12049:6630773,4812305:25952256,505283,134348 +(1,12049:6630773,4812305:25952256,505283,134348 +g1,12049:3078558,4812305 +[1,12049:3078558,4812305:0,0,0 +(1,12049:3078558,2439708:0,1703936,0 +k1,12049:1358238,2439708:-1720320 +(1,11038:1358238,2439708:1720320,1703936,0 +(1,11038:1358238,2439708:1179648,16384,0 +r1,12049:2537886,2439708:1179648,16384,0 ) -g1,12565:-473656,-710413 +g1,11038:3062174,2439708 +(1,11038:3062174,2439708:16384,1703936,0 +[1,11038:3062174,2439708:25952256,1703936,0 +(1,11038:3062174,1915420:25952256,1179648,0 +(1,11038:3062174,1915420:16384,1179648,0 +r1,12049:3078558,1915420:16384,1179648,0 +) +k1,11038:29014430,1915420:25935872 +g1,11038:29014430,1915420 ) ] ) -[1,12565:6630773,47279633:25952256,43253760,0 -[1,12565:6630773,4812305:25952256,786432,0 -(1,12565:6630773,4812305:25952256,513147,126483 -(1,12565:6630773,4812305:25952256,513147,126483 -g1,12565:3078558,4812305 -[1,12565:3078558,4812305:0,0,0 -(1,12565:3078558,2439708:0,1703936,0 -k1,12565:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,12565:2537886,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,12565:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +] +[1,12049:3078558,4812305:0,0,0 +(1,12049:3078558,2439708:0,1703936,0 +g1,12049:29030814,2439708 +g1,12049:36135244,2439708 +(1,11038:36135244,2439708:1720320,1703936,0 +(1,11038:36135244,2439708:16384,1703936,0 +[1,11038:36135244,2439708:25952256,1703936,0 +(1,11038:36135244,1915420:25952256,1179648,0 +(1,11038:36135244,1915420:16384,1179648,0 +r1,12049:36151628,1915420:16384,1179648,0 +) +k1,11038:62087500,1915420:25935872 +g1,11038:62087500,1915420 ) ] ) +g1,11038:36675916,2439708 +(1,11038:36675916,2439708:1179648,16384,0 +r1,12049:37855564,2439708:1179648,16384,0 +) ) +k1,12049:3078556,2439708:-34777008 ) ] -[1,12565:3078558,4812305:0,0,0 -(1,12565:3078558,2439708:0,1703936,0 -g1,12565:29030814,2439708 -g1,12565:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,12565:36151628,1915420:16384,1179648,0 +[1,12049:3078558,4812305:0,0,0 +(1,12049:3078558,49800853:0,16384,2228224 +k1,12049:1358238,49800853:-1720320 +(1,11038:1358238,49800853:1720320,16384,2228224 +(1,11038:1358238,49800853:1179648,16384,0 +r1,12049:2537886,49800853:1179648,16384,0 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +g1,11038:3062174,49800853 +(1,11038:3062174,52029077:16384,1703936,0 +[1,11038:3062174,52029077:25952256,1703936,0 +(1,11038:3062174,51504789:25952256,1179648,0 +(1,11038:3062174,51504789:16384,1179648,0 +r1,12049:3078558,51504789:16384,1179648,0 ) -] +k1,11038:29014430,51504789:25935872 +g1,11038:29014430,51504789 ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,12565:37855564,2439708:1179648,16384,0 +] ) ) -k1,12565:3078556,2439708:-34777008 ) ] -[1,12565:3078558,4812305:0,0,0 -(1,12565:3078558,49800853:0,16384,2228224 -k1,12565:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,12565:2537886,49800853:1179648,16384,0 +[1,12049:3078558,4812305:0,0,0 +(1,12049:3078558,49800853:0,16384,2228224 +g1,12049:29030814,49800853 +g1,12049:36135244,49800853 +(1,11038:36135244,49800853:1720320,16384,2228224 +(1,11038:36135244,52029077:16384,1703936,0 +[1,11038:36135244,52029077:25952256,1703936,0 +(1,11038:36135244,51504789:25952256,1179648,0 +(1,11038:36135244,51504789:16384,1179648,0 +r1,12049:36151628,51504789:16384,1179648,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,12565:3078558,51504789:16384,1179648,0 -) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 -) -] -) -) -) -] -[1,12565:3078558,4812305:0,0,0 -(1,12565:3078558,49800853:0,16384,2228224 -g1,12565:29030814,49800853 -g1,12565:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,12565:36151628,51504789:16384,1179648,0 -) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 -) -] -) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,12565:37855564,49800853:1179648,16384,0 -) -) -k1,12565:3078556,49800853:-34777008 -) -] -g1,12565:6630773,4812305 -k1,12565:19540057,4812305:11713907 -g1,12565:21162728,4812305 -g1,12565:21985204,4812305 -g1,12565:24539797,4812305 -g1,12565:25949476,4812305 -g1,12565:28728857,4812305 -g1,12565:29852144,4812305 -) -) -] -[1,12565:6630773,45706769:25952256,40108032,0 -(1,12565:6630773,45706769:25952256,40108032,0 -(1,12565:6630773,45706769:0,0,0 -g1,12565:6630773,45706769 -) -[1,12565:6630773,45706769:25952256,40108032,0 -v1,12497:6630773,6254097:0,393216,0 -(1,12497:6630773,11226148:25952256,5365267,196608 -g1,12497:6630773,11226148 -g1,12497:6630773,11226148 -g1,12497:6434165,11226148 -(1,12497:6434165,11226148:0,5365267,196608 -r1,12565:32779637,11226148:26345472,5561875,196608 -k1,12497:6434165,11226148:-26345472 -) -(1,12497:6434165,11226148:26345472,5365267,196608 -[1,12497:6630773,11226148:25952256,5168659,0 -(1,12496:6630773,6461715:25952256,404226,76021 -h1,12496:6630773,6461715:0,0,0 -g1,12496:7579210,6461715 -g1,12496:7895356,6461715 -g1,12496:8211502,6461715 -g1,12496:8527648,6461715 -g1,12496:8843794,6461715 -g1,12496:9159940,6461715 -g1,12496:9476086,6461715 -g1,12496:12321397,6461715 -g1,12496:13902126,6461715 -g1,12496:15799000,6461715 -g1,12496:16431292,6461715 -g1,12496:18328166,6461715 -k1,12496:18328166,6461715:0 -h1,12496:20857331,6461715:0,0,0 -k1,12496:32583029,6461715:11725698 -g1,12496:32583029,6461715 -) -(1,12496:6630773,7127893:25952256,404226,101187 -h1,12496:6630773,7127893:0,0,0 -g1,12496:7579210,7127893 -g1,12496:9476084,7127893 -g1,12496:9792230,7127893 -g1,12496:10108376,7127893 -g1,12496:12321396,7127893 -g1,12496:12637542,7127893 -g1,12496:12953688,7127893 -g1,12496:13269834,7127893 -g1,12496:13585980,7127893 -g1,12496:15799000,7127893 -g1,12496:16115146,7127893 -g1,12496:16431292,7127893 -g1,12496:18328166,7127893 -g1,12496:18644312,7127893 -g1,12496:18960458,7127893 -g1,12496:21173478,7127893 -h1,12496:22121915,7127893:0,0,0 -k1,12496:32583029,7127893:10461114 -g1,12496:32583029,7127893 -) -(1,12496:6630773,7794071:25952256,379060,0 -h1,12496:6630773,7794071:0,0,0 -g1,12496:7579210,7794071 -k1,12496:7579210,7794071:0 -h1,12496:8527648,7794071:0,0,0 -k1,12496:32583028,7794071:24055380 -g1,12496:32583028,7794071 -) -(1,12496:6630773,8460249:25952256,410518,107478 -h1,12496:6630773,8460249:0,0,0 -g1,12496:7579210,8460249 -g1,12496:10108376,8460249 -g1,12496:12321396,8460249 -g1,12496:12637542,8460249 -g1,12496:13269834,8460249 -g1,12496:15166709,8460249 -g1,12496:17063583,8460249 -g1,12496:18644312,8460249 -g1,12496:20225041,8460249 -g1,12496:21489625,8460249 -g1,12496:23070354,8460249 -g1,12496:24334938,8460249 -g1,12496:25599521,8460249 -g1,12496:26231813,8460249 -g1,12496:26864105,8460249 -h1,12496:27180251,8460249:0,0,0 -k1,12496:32583029,8460249:5402778 -g1,12496:32583029,8460249 -) -(1,12496:6630773,9126427:25952256,379060,0 -h1,12496:6630773,9126427:0,0,0 -h1,12496:7263064,9126427:0,0,0 -k1,12496:32583028,9126427:25319964 -g1,12496:32583028,9126427 -) -(1,12496:6630773,9792605:25952256,410518,107478 -h1,12496:6630773,9792605:0,0,0 -g1,12496:7579210,9792605 -g1,12496:10424521,9792605 -g1,12496:13269832,9792605 -g1,12496:15482852,9792605 -g1,12496:17379726,9792605 -g1,12496:18328163,9792605 -g1,12496:19276600,9792605 -g1,12496:21805766,9792605 -g1,12496:22754203,9792605 -h1,12496:24967223,9792605:0,0,0 -k1,12496:32583029,9792605:7615806 -g1,12496:32583029,9792605 -) -(1,12496:6630773,10458783:25952256,404226,107478 -h1,12496:6630773,10458783:0,0,0 -g1,12496:7579210,10458783 -g1,12496:10424521,10458783 -g1,12496:13902124,10458783 -g1,12496:14218270,10458783 -g1,12496:19276601,10458783 -g1,12496:22754204,10458783 -g1,12496:23070350,10458783 -h1,12496:24967224,10458783:0,0,0 -k1,12496:32583029,10458783:7615805 -g1,12496:32583029,10458783 -) -(1,12496:6630773,11124961:25952256,404226,101187 -h1,12496:6630773,11124961:0,0,0 -g1,12496:7579210,11124961 -g1,12496:11689104,11124961 -g1,12496:13585978,11124961 -g1,12496:14534415,11124961 -g1,12496:15166707,11124961 -g1,12496:16431290,11124961 -g1,12496:17379727,11124961 -g1,12496:18644310,11124961 -g1,12496:18960456,11124961 -g1,12496:21805768,11124961 -g1,12496:22438060,11124961 -k1,12496:22438060,11124961:0 -h1,12496:24651080,11124961:0,0,0 -k1,12496:32583029,11124961:7931949 -g1,12496:32583029,11124961 -) -] -) -g1,12497:32583029,11226148 -g1,12497:6630773,11226148 -g1,12497:6630773,11226148 -g1,12497:32583029,11226148 -g1,12497:32583029,11226148 -) -h1,12497:6630773,11422756:0,0,0 -(1,12501:6630773,12617540:25952256,513147,138281 -h1,12500:6630773,12617540:983040,0,0 -k1,12500:8962967,12617540:152467 -k1,12500:11905302,12617540:152467 -k1,12500:12717060,12617540:152466 -k1,12500:13888612,12617540:152467 -k1,12500:16282410,12617540:152467 -k1,12500:18147333,12617540:152467 -k1,12500:20287506,12617540:152466 -k1,12500:20971470,12617540:152467 -$1,12500:20971470,12617540 -k1,12500:21705343,12617540:182060 -k1,12500:22455600,12617540:182060 -$1,12500:24343037,12617540 -k1,12500:24669174,12617540:152467 -k1,12500:26013086,12617540:152467 -k1,12500:27733173,12617540:152466 -k1,12500:28904725,12617540:152467 -k1,12500:32124932,12617540:152467 -k1,12500:32583029,12617540:0 -) -(1,12501:6630773,13459028:25952256,513147,134348 -k1,12500:7916415,13459028:181360 -k1,12500:8845540,13459028:181359 -k1,12500:10466726,13459028:181360 -k1,12500:11932592,13459028:181360 -k1,12500:12572048,13459028:181359 -k1,12500:13284905,13459028:181360 -k1,12500:17159219,13459028:181360 -k1,12500:18026740,13459028:181359 -k1,12500:19227185,13459028:181360 -k1,12500:21887117,13459028:181360 -k1,12500:23236983,13459028:181359 -k1,12500:24911253,13459028:181360 -k1,12500:26158884,13459028:181360 -k1,12500:28325329,13459028:181359 -k1,12500:29525774,13459028:181360 -k1,12500:32583029,13459028:0 -) -(1,12501:6630773,14300516:25952256,513147,126483 -g1,12500:7489294,14300516 -g1,12500:8707608,14300516 -g1,12500:12738072,14300516 -g1,12500:15572504,14300516 -(1,12500:15572504,14300516:0,452978,115847 -r1,12565:16985905,14300516:1413401,568825,115847 -k1,12500:15572504,14300516:-1413401 -) -(1,12500:15572504,14300516:1413401,452978,115847 -k1,12500:15572504,14300516:3277 -h1,12500:16982628,14300516:0,411205,112570 -) -g1,12500:17185134,14300516 -g1,12500:18575808,14300516 -(1,12500:18575808,14300516:0,452978,115847 -r1,12565:20340921,14300516:1765113,568825,115847 -k1,12500:18575808,14300516:-1765113 -) -(1,12500:18575808,14300516:1765113,452978,115847 -k1,12500:18575808,14300516:3277 -h1,12500:20337644,14300516:0,411205,112570 -) -k1,12501:32583029,14300516:12068438 -g1,12501:32583029,14300516 -) -v1,12503:6630773,15495301:0,393216,0 -(1,12565:6630773,45706769:25952256,30604684,0 -g1,12565:6630773,45706769 -g1,12565:6303093,45706769 -r1,12565:6401397,45706769:98304,30604684,0 -g1,12565:6600626,45706769 -g1,12565:6797234,45706769 -[1,12565:6797234,45706769:25785795,30604684,0 -(1,12504:6797234,15927839:25785795,825754,196608 -(1,12503:6797234,15927839:0,825754,196608 -r1,12565:7890375,15927839:1093141,1022362,196608 -k1,12503:6797234,15927839:-1093141 -) -(1,12503:6797234,15927839:1093141,825754,196608 -) -k1,12503:8180938,15927839:290563 -k1,12503:9498867,15927839:327680 -k1,12503:11043133,15927839:290562 -k1,12503:12466158,15927839:290563 -k1,12503:14087102,15927839:290563 -k1,12503:15065138,15927839:290563 -k1,12503:15711560,15927839:290562 -k1,12503:20581779,15927839:290563 -k1,12503:24619035,15927839:290563 -k1,12503:25265458,15927839:290563 -k1,12503:28318363,15927839:290562 -k1,12503:30421652,15927839:290563 -k1,12503:32583029,15927839:0 -) -(1,12504:6797234,16769327:25785795,615216,138281 -k1,12503:7531107,16769327:182060 -k1,12503:8281364,16769327:182060 -k1,12503:8897474,16769327:108206 -k1,12503:9274379,16769327:108207 -k1,12503:9781044,16769327:108206 -k1,12503:10457448,16769327:108207 -(1,12503:10901782,16867641:311689,334430,0 -) -k1,12503:11321677,16769327:108206 -k1,12503:11698581,16769327:108206 -k1,12503:12309449,16769327:108207 -k1,12503:12985852,16769327:108206 -(1,12503:13430186,16867641:311689,339935,0 -) -k1,12503:13850082,16769327:108207 -k1,12503:14226986,16769327:108206 -(1,12503:14729647,16494046:311689,339935,0 -) -$1,12503:15041336,16769327 -k1,12503:15397163,16769327:182157 -k1,12503:16776008,16769327:182158 -k1,12503:19653661,16769327:182157 -k1,12503:21349044,16769327:182157 -k1,12503:22062699,16769327:182158 -k1,12503:23263941,16769327:182157 -k1,12503:25099571,16769327:182157 -k1,12503:25967890,16769327:182157 -k1,12503:27097699,16769327:182158 -k1,12503:29092582,16769327:182157 -k1,12504:32583029,16769327:0 -) -(1,12504:6797234,17610815:25785795,513147,126483 -(1,12503:6797234,17610815:0,452978,115847 -r1,12565:8210635,17610815:1413401,568825,115847 -k1,12503:6797234,17610815:-1413401 -) -(1,12503:6797234,17610815:1413401,452978,115847 -k1,12503:6797234,17610815:3277 -h1,12503:8207358,17610815:0,411205,112570 -) -k1,12503:8631392,17610815:247087 -k1,12503:9832028,17610815:247087 -k1,12503:11454715,17610815:247086 -k1,12503:13232068,17610815:247087 -k1,12503:14130583,17610815:247087 -k1,12503:15831259,17610815:247087 -k1,12503:17097430,17610815:247086 -k1,12503:21155436,17610815:247087 -k1,12503:22061815,17610815:247087 -k1,12503:23327987,17610815:247087 -k1,12503:25736450,17610815:247086 -k1,12503:27180224,17610815:247087 -k1,12503:29887533,17610815:247087 -k1,12504:32583029,17610815:0 -) -(1,12504:6797234,18452303:25785795,513147,134348 -(1,12503:6797234,18452303:0,452978,115847 -r1,12565:7858923,18452303:1061689,568825,115847 -k1,12503:6797234,18452303:-1061689 -) -(1,12503:6797234,18452303:1061689,452978,115847 -k1,12503:6797234,18452303:3277 -h1,12503:7855646,18452303:0,411205,112570 -) -k1,12503:8094571,18452303:235648 -k1,12503:8861717,18452303:235649 -k1,12503:10610591,18452303:235648 -k1,12503:11497667,18452303:235648 -k1,12503:14031663,18452303:235648 -k1,12503:15055710,18452303:235649 -k1,12503:18363686,18452303:235648 -k1,12503:20166955,18452303:235648 -k1,12503:22140619,18452303:235649 -k1,12503:25966329,18452303:235648 -k1,12503:26888139,18452303:235648 -k1,12503:28445648,18452303:235648 -k1,12503:29340589,18452303:235649 -k1,12503:30595322,18452303:235648 -k1,12503:32583029,18452303:0 -) -(1,12504:6797234,19293791:25785795,513147,134348 -k1,12503:9736797,19293791:222440 -k1,12503:12471887,19293791:222440 -k1,12503:13482725,19293791:222440 -k1,12503:16777493,19293791:222440 -k1,12503:17531430,19293791:222440 -k1,12503:20815057,19293791:222440 -k1,12503:24686542,19293791:222440 -k1,12503:26100427,19293791:222440 -k1,12503:27341952,19293791:222440 -k1,12503:29407264,19293791:222440 -k1,12503:30161201,19293791:222440 -k1,12503:31896867,19293791:222440 -k1,12503:32583029,19293791:0 -) -(1,12504:6797234,20135279:25785795,505283,126483 -g1,12503:8189218,20135279 -g1,12503:9004485,20135279 -g1,12503:10406955,20135279 -g1,12503:11973265,20135279 -g1,12503:14587496,20135279 -g1,12503:18552424,20135279 -k1,12504:32583029,20135279:11345595 -g1,12504:32583029,20135279 -) -v1,12506:6797234,21325745:0,393216,0 -(1,12513:6797234,23614210:25785795,2681681,196608 -g1,12513:6797234,23614210 -g1,12513:6797234,23614210 -g1,12513:6600626,23614210 -(1,12513:6600626,23614210:0,2681681,196608 -r1,12565:32779637,23614210:26179011,2878289,196608 -k1,12513:6600625,23614210:-26179012 -) -(1,12513:6600626,23614210:26179011,2681681,196608 -[1,12513:6797234,23614210:25785795,2485073,0 -(1,12508:6797234,21539655:25785795,410518,101187 -(1,12507:6797234,21539655:0,0,0 -g1,12507:6797234,21539655 -g1,12507:6797234,21539655 -g1,12507:6469554,21539655 -(1,12507:6469554,21539655:0,0,0 -) -g1,12507:6797234,21539655 -) -g1,12508:8061817,21539655 -g1,12508:9010255,21539655 -g1,12508:11539420,21539655 -g1,12508:12171712,21539655 -g1,12508:14068586,21539655 -g1,12508:14700878,21539655 -g1,12508:18494628,21539655 -g1,12508:20075357,21539655 -g1,12508:20707649,21539655 -h1,12508:22288377,21539655:0,0,0 -k1,12508:32583029,21539655:10294652 -g1,12508:32583029,21539655 -) -(1,12509:6797234,22205833:25785795,410518,101187 -h1,12509:6797234,22205833:0,0,0 -g1,12509:9958692,22205833 -g1,12509:11855566,22205833 -g1,12509:12487858,22205833 -h1,12509:13120150,22205833:0,0,0 -k1,12509:32583030,22205833:19462880 -g1,12509:32583030,22205833 -) -(1,12510:6797234,22872011:25785795,410518,101187 -h1,12510:6797234,22872011:0,0,0 -k1,12510:6797234,22872011:0 -h1,12510:10590982,22872011:0,0,0 -k1,12510:32583030,22872011:21992048 -g1,12510:32583030,22872011 -) -(1,12511:6797234,23538189:25785795,410518,76021 -h1,12511:6797234,23538189:0,0,0 -k1,12511:6797234,23538189:0 -h1,12511:9958690,23538189:0,0,0 -k1,12511:32583030,23538189:22624340 -g1,12511:32583030,23538189 -) -] -) -g1,12513:32583029,23614210 -g1,12513:6797234,23614210 -g1,12513:6797234,23614210 -g1,12513:32583029,23614210 -g1,12513:32583029,23614210 -) -h1,12513:6797234,23810818:0,0,0 -(1,12517:6797234,25176594:25785795,513147,134348 -h1,12516:6797234,25176594:983040,0,0 -k1,12516:9156708,25176594:179747 -k1,12516:11590239,25176594:179748 -k1,12516:12457459,25176594:179747 -k1,12516:14372599,25176594:179747 -k1,12516:15323050,25176594:179748 -k1,12516:18996521,25176594:179747 -k1,12516:22749292,25176594:179748 -k1,12516:24033321,25176594:179747 -k1,12516:24960834,25176594:179747 -k1,12516:27972393,25176594:179748 -k1,12516:29887533,25176594:179747 -k1,12517:32583029,25176594:0 -) -(1,12517:6797234,26018082:25785795,513147,134348 -(1,12516:6797234,26018082:0,452978,115847 -r1,12565:8914059,26018082:2116825,568825,115847 -k1,12516:6797234,26018082:-2116825 -) -(1,12516:6797234,26018082:2116825,452978,115847 -k1,12516:6797234,26018082:3277 -h1,12516:8910782,26018082:0,411205,112570 -) -k1,12516:9277891,26018082:190162 -k1,12516:13326158,26018082:190163 -k1,12516:14175612,26018082:190162 -k1,12516:17128118,26018082:190163 -k1,12516:19773914,26018082:190162 -k1,12516:21068359,26018082:190163 -k1,12516:22006287,26018082:190162 -k1,12516:24988284,26018082:190163 -k1,12516:25939974,26018082:190162 -k1,12516:29273244,26018082:190163 -k1,12516:30149568,26018082:190162 -k1,12516:31358816,26018082:190163 -k1,12517:32583029,26018082:0 -) -(1,12517:6797234,26859570:25785795,505283,134348 -k1,12516:8201342,26859570:173997 -k1,12516:11447667,26859570:173997 -k1,12516:12273092,26859570:173997 -(1,12516:12273092,26859570:0,452978,115847 -r1,12565:14389917,26859570:2116825,568825,115847 -k1,12516:12273092,26859570:-2116825 -) -(1,12516:12273092,26859570:2116825,452978,115847 -k1,12516:12273092,26859570:3277 -h1,12516:14386640,26859570:0,411205,112570 -) -k1,12516:14563914,26859570:173997 -k1,12516:15756996,26859570:173997 -k1,12516:20554557,26859570:173996 -k1,12516:23237928,26859570:173997 -k1,12516:25642115,26859570:173997 -k1,12516:27670126,26859570:173997 -k1,12516:28471958,26859570:173997 -k1,12516:29849196,26859570:173997 -k1,12516:31563944,26859570:173997 -k1,12516:32583029,26859570:0 -) -(1,12517:6797234,27701058:25785795,513147,134348 -g1,12516:9758806,27701058 -g1,12516:11800907,27701058 -g1,12516:12659428,27701058 -g1,12516:13877742,27701058 -g1,12516:17649994,27701058 -g1,12516:18840783,27701058 -g1,12516:21221050,27701058 -g1,12516:24100702,27701058 -g1,12516:24915969,27701058 -g1,12516:26134283,27701058 -k1,12517:32583029,27701058:3284668 -g1,12517:32583029,27701058 -) -v1,12519:6797234,28891524:0,393216,0 -(1,12525:6797234,30513811:25785795,2015503,196608 -g1,12525:6797234,30513811 -g1,12525:6797234,30513811 -g1,12525:6600626,30513811 -(1,12525:6600626,30513811:0,2015503,196608 -r1,12565:32779637,30513811:26179011,2212111,196608 -k1,12525:6600625,30513811:-26179012 -) -(1,12525:6600626,30513811:26179011,2015503,196608 -[1,12525:6797234,30513811:25785795,1818895,0 -(1,12521:6797234,29105434:25785795,410518,101187 -(1,12520:6797234,29105434:0,0,0 -g1,12520:6797234,29105434 -g1,12520:6797234,29105434 -g1,12520:6469554,29105434 -(1,12520:6469554,29105434:0,0,0 -) -g1,12520:6797234,29105434 -) -g1,12521:8377963,29105434 -g1,12521:9326401,29105434 -g1,12521:11855566,29105434 -g1,12521:12487858,29105434 -g1,12521:16281607,29105434 -g1,12521:17546191,29105434 -g1,12521:19126920,29105434 -g1,12521:19759212,29105434 -h1,12521:21339940,29105434:0,0,0 -k1,12521:32583029,29105434:11243089 -g1,12521:32583029,29105434 -) -(1,12522:6797234,29771612:25785795,410518,101187 -h1,12522:6797234,29771612:0,0,0 -k1,12522:6797234,29771612:0 -h1,12522:10907128,29771612:0,0,0 -k1,12522:32583028,29771612:21675900 -g1,12522:32583028,29771612 -) -(1,12523:6797234,30437790:25785795,410518,76021 -h1,12523:6797234,30437790:0,0,0 -k1,12523:6797234,30437790:0 -h1,12523:10274836,30437790:0,0,0 -k1,12523:32583028,30437790:22308192 -g1,12523:32583028,30437790 -) -] -) -g1,12525:32583029,30513811 -g1,12525:6797234,30513811 -g1,12525:6797234,30513811 -g1,12525:32583029,30513811 -g1,12525:32583029,30513811 -) -h1,12525:6797234,30710419:0,0,0 -(1,12529:6797234,32076195:25785795,513147,134348 -h1,12528:6797234,32076195:983040,0,0 -k1,12528:8939153,32076195:205330 -k1,12528:10248764,32076195:205329 -k1,12528:11739910,32076195:205330 -k1,12528:14705615,32076195:205329 -k1,12528:16083384,32076195:205330 -k1,12528:18276420,32076195:205329 -k1,12528:19499524,32076195:205330 -k1,12528:21440247,32076195:205330 -(1,12528:21440247,32076195:0,452978,115847 -r1,12565:23908784,32076195:2468537,568825,115847 -k1,12528:21440247,32076195:-2468537 -) -(1,12528:21440247,32076195:2468537,452978,115847 -k1,12528:21440247,32076195:3277 -h1,12528:23905507,32076195:0,411205,112570 -) -k1,12528:24287783,32076195:205329 -k1,12528:25144541,32076195:205330 -k1,12528:26541315,32076195:205329 -k1,12528:29337283,32076195:205330 -k1,12528:30699322,32076195:205329 -k1,12528:31563944,32076195:205330 -k1,12528:32583029,32076195:0 -) -(1,12529:6797234,32917683:25785795,505283,126483 -k1,12528:9276854,32917683:161612 -k1,12528:12438049,32917683:161612 -k1,12528:13618746,32917683:161612 -k1,12528:15169720,32917683:161611 -k1,12528:17228599,32917683:161612 -k1,12528:18832658,32917683:161612 -k1,12528:20013355,32917683:161612 -k1,12528:22050607,32917683:161612 -k1,12528:22682112,32917683:161612 -k1,12528:23375221,32917683:161612 -k1,12528:26746131,32917683:161612 -k1,12528:27523780,32917683:161611 -k1,12528:28888633,32917683:161612 -k1,12528:30417326,32917683:161612 -k1,12528:31230366,32917683:161612 -k1,12528:32583029,32917683:0 -) -(1,12529:6797234,33759171:25785795,513147,102891 -k1,12528:8238430,33759171:173730 -k1,12528:12766372,33759171:173730 -k1,12528:13959187,33759171:173730 -k1,12528:16211064,33759171:173730 -k1,12528:17044086,33759171:173730 -k1,12528:18236900,33759171:173729 -k1,12528:21596990,33759171:173730 -k1,12528:24405923,33759171:173730 -k1,12528:25598738,33759171:173730 -k1,12528:27760175,33759171:173730 -k1,12528:30981329,33759171:173730 -k1,12528:32583029,33759171:0 -) -(1,12529:6797234,34600659:25785795,513147,126483 -k1,12528:10751075,34600659:178312 -k1,12528:11395349,34600659:178313 -k1,12528:12953849,34600659:178312 -k1,12528:14236444,34600659:178313 -k1,12528:15162522,34600659:178312 -k1,12528:18930897,34600659:178313 -k1,12528:19795371,34600659:178312 -k1,12528:23816060,34600659:178313 -k1,12528:27584434,34600659:178312 -k1,12528:28448909,34600659:178313 -k1,12528:28983081,34600659:178312 -k1,12528:30595322,34600659:178313 -k1,12528:32583029,34600659:0 -) -(1,12529:6797234,35442147:25785795,505283,7863 -g1,12528:7857606,35442147 -g1,12528:9075920,35442147 -g1,12528:10928622,35442147 -g1,12528:13115558,35442147 -g1,12528:14708738,35442147 -g1,12528:18134960,35442147 -k1,12529:32583029,35442147:12431526 -g1,12529:32583029,35442147 -) -v1,12531:6797234,36632613:0,393216,0 -(1,12535:6797234,36928835:25785795,689438,196608 -g1,12535:6797234,36928835 -g1,12535:6797234,36928835 -g1,12535:6600626,36928835 -(1,12535:6600626,36928835:0,689438,196608 -r1,12565:32779637,36928835:26179011,886046,196608 -k1,12535:6600625,36928835:-26179012 -) -(1,12535:6600626,36928835:26179011,689438,196608 -[1,12535:6797234,36928835:25785795,492830,0 -(1,12533:6797234,36846523:25785795,410518,82312 -(1,12532:6797234,36846523:0,0,0 -g1,12532:6797234,36846523 -g1,12532:6797234,36846523 -g1,12532:6469554,36846523 -(1,12532:6469554,36846523:0,0,0 -) -g1,12532:6797234,36846523 -) -k1,12533:6797234,36846523:0 -g1,12533:10274837,36846523 -h1,12533:11539420,36846523:0,0,0 -k1,12533:32583028,36846523:21043608 -g1,12533:32583028,36846523 -) -] -) -g1,12535:32583029,36928835 -g1,12535:6797234,36928835 -g1,12535:6797234,36928835 -g1,12535:32583029,36928835 -g1,12535:32583029,36928835 -) -h1,12535:6797234,37125443:0,0,0 -(1,12539:6797234,38491219:25785795,505283,134348 -h1,12538:6797234,38491219:983040,0,0 -k1,12538:9836107,38491219:223446 -k1,12538:10742437,38491219:223445 -k1,12538:12616080,38491219:223446 -k1,12538:15157533,38491219:223445 -k1,12538:16485261,38491219:223446 -k1,12538:17994522,38491219:223445 -k1,12538:18965734,38491219:223446 -k1,12538:22370297,38491219:223445 -k1,12538:23209781,38491219:223446 -k1,12538:23789086,38491219:223445 -k1,12538:25885551,38491219:223446 -k1,12538:27208690,38491219:223445 -k1,12538:28083564,38491219:223446 -(1,12538:28083564,38491219:0,452978,115847 -r1,12565:30552101,38491219:2468537,568825,115847 -k1,12538:28083564,38491219:-2468537 -) -(1,12538:28083564,38491219:2468537,452978,115847 -k1,12538:28083564,38491219:3277 -h1,12538:30548824,38491219:0,411205,112570 -) -k1,12538:30949216,38491219:223445 -k1,12539:32583029,38491219:0 -) -(1,12539:6797234,39332707:25785795,513147,134348 -g1,12538:8510345,39332707 -g1,12538:9457340,39332707 -g1,12538:12040113,39332707 -g1,12538:12925504,39332707 -g1,12538:14143818,39332707 -g1,12538:16082373,39332707 -g1,12538:16940894,39332707 -g1,12538:18159208,39332707 -g1,12538:21761066,39332707 -k1,12539:32583029,39332707:8192659 -g1,12539:32583029,39332707 -) -v1,12541:6797234,40523173:0,393216,0 -(1,12546:6797234,41485573:25785795,1355616,196608 -g1,12546:6797234,41485573 -g1,12546:6797234,41485573 -g1,12546:6600626,41485573 -(1,12546:6600626,41485573:0,1355616,196608 -r1,12565:32779637,41485573:26179011,1552224,196608 -k1,12546:6600625,41485573:-26179012 -) -(1,12546:6600626,41485573:26179011,1355616,196608 -[1,12546:6797234,41485573:25785795,1159008,0 -(1,12543:6797234,40737083:25785795,410518,82312 -(1,12542:6797234,40737083:0,0,0 -g1,12542:6797234,40737083 -g1,12542:6797234,40737083 -g1,12542:6469554,40737083 -(1,12542:6469554,40737083:0,0,0 -) -g1,12542:6797234,40737083 -) -k1,12543:6797234,40737083:0 -g1,12543:10274837,40737083 -g1,12543:11855566,40737083 -h1,12543:13436294,40737083:0,0,0 -k1,12543:32583030,40737083:19146736 -g1,12543:32583030,40737083 -) -(1,12544:6797234,41403261:25785795,410518,82312 -h1,12544:6797234,41403261:0,0,0 -g1,12544:10274837,41403261 -g1,12544:12171712,41403261 -h1,12544:13436295,41403261:0,0,0 -k1,12544:32583029,41403261:19146734 -g1,12544:32583029,41403261 -) -] -) -g1,12546:32583029,41485573 -g1,12546:6797234,41485573 -g1,12546:6797234,41485573 -g1,12546:32583029,41485573 -g1,12546:32583029,41485573 -) -h1,12546:6797234,41682181:0,0,0 -(1,12553:6797234,43047957:25785795,513147,134348 -h1,12550:6797234,43047957:983040,0,0 -k1,12552:8919945,43047957:186122 -k1,12552:10210349,43047957:186122 -k1,12552:11488956,43047957:186122 -k1,12552:14437421,43047957:186122 -k1,12552:16896332,43047957:186122 -k1,12552:17733882,43047957:186122 -k1,12552:20135122,43047957:186123 -k1,12552:21340329,43047957:186122 -k1,12552:23461729,43047957:186122 -k1,12552:25809228,43047957:186122 -k1,12552:29732868,43047957:186122 -k1,12552:31773659,43047957:186122 -k1,12552:32583029,43047957:0 -) -(1,12553:6797234,43889445:25785795,513147,138281 -$1,12552:7265161,43889445 -k1,12552:9740658,43889445:251860 -k1,12552:10675403,43889445:251860 -k1,12552:14734249,43889445:251860 -k1,12552:17258898,43889445:251860 -k1,12552:19047577,43889445:251860 -k1,12552:20747783,43889445:251860 -k1,12552:22155645,43889445:251807 -k1,12552:25295677,43889445:251860 -k1,12552:26750123,43889445:251860 -k1,12552:30820766,43889445:251860 -k1,12553:32583029,43889445:0 -) -(1,12553:6797234,44730933:25785795,513147,126483 -k1,12552:8769412,44730933:166006 -k1,12552:10126863,44730933:166006 -k1,12552:11360418,44730933:165973 -k1,12552:14799292,44730933:166006 -k1,12552:18784080,44730933:166005 -k1,12552:22098436,44730933:166006 -k1,12552:22832639,44730933:166006 -k1,12552:24382110,44730933:166006 -k1,12552:28011038,44730933:166006 -k1,12552:30942663,44730933:166006 -k1,12553:32583029,44730933:0 -) -(1,12553:6797234,45572421:25785795,513147,134348 -k1,12552:8795605,45572421:192199 -k1,12552:10272310,45572421:192199 -k1,12552:13146898,45572421:192199 -k1,12552:14358182,45572421:192199 -k1,12552:17383502,45572421:192199 -k1,12552:21182803,45572421:192199 -k1,12552:23229671,45572421:192199 -k1,12552:24231240,45572421:192199 -k1,12552:25442524,45572421:192199 -k1,12552:28120504,45572421:192199 -k1,12552:28971995,45572421:192199 -k1,12552:32583029,45572421:0 -) -] -g1,12565:32583029,45706769 -) -] -(1,12565:32583029,45706769:0,0,0 -g1,12565:32583029,45706769 -) -) -] -(1,12565:6630773,47279633:25952256,0,0 -h1,12565:6630773,47279633:25952256,0,0 -) -] -(1,12565:4262630,4025873:0,0,0 -[1,12565:-473656,4025873:0,0,0 -(1,12565:-473656,-710413:0,0,0 -(1,12565:-473656,-710413:0,0,0 -g1,12565:-473656,-710413 -) -g1,12565:-473656,-710413 -) -] -) -] -!27303 -}215 -Input:1869:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1870:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1871:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1872:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1873:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1874:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1875:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1876:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1877:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1878:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1879:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1880:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1881:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1882:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1883:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1884:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1885:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1886:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1887:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1888:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1889:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1890:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1891:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1892:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1893:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1894:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1895:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1896:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1897:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1898:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1899:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1900:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1901:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1902:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1903:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1904:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1905:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1906:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1907:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1908:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1909:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1910:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1911:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1912:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1913:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!4242 -{216 -[1,12804:4262630,47279633:28320399,43253760,0 -(1,12804:4262630,4025873:0,0,0 -[1,12804:-473656,4025873:0,0,0 -(1,12804:-473656,-710413:0,0,0 -(1,12804:-473656,-644877:0,0,0 -k1,12804:-473656,-644877:-65536 +k1,11038:62087500,51504789:25935872 +g1,11038:62087500,51504789 +) +] +) +g1,11038:36675916,49800853 +(1,11038:36675916,49800853:1179648,16384,0 +r1,12049:37855564,49800853:1179648,16384,0 +) +) +k1,12049:3078556,49800853:-34777008 +) +] +g1,12049:6630773,4812305 +k1,12049:23552825,4812305:15726675 +g1,12049:25175496,4812305 +g1,12049:25997972,4812305 +g1,12049:28481131,4812305 +g1,12049:30046786,4812305 +) +) +] +[1,12049:6630773,45706769:25952256,40108032,0 +(1,12049:6630773,45706769:25952256,40108032,0 +(1,12049:6630773,45706769:0,0,0 +g1,12049:6630773,45706769 +) +[1,12049:6630773,45706769:25952256,40108032,0 +v1,12034:6630773,6254097:0,393216,0 +(1,12034:6630773,25496819:25952256,19635938,0 +g1,12034:6630773,25496819 +g1,12034:6237557,25496819 +r1,12049:6368629,25496819:131072,19635938,0 +g1,12034:6567858,25496819 +g1,12034:6764466,25496819 +[1,12034:6764466,25496819:25818563,19635938,0 +v1,11982:6764466,6254097:0,393216,0 +(1,12018:6764466,17236332:25818563,11375451,196608 +g1,12018:6764466,17236332 +g1,12018:6764466,17236332 +g1,12018:6567858,17236332 +(1,12018:6567858,17236332:0,11375451,196608 +r1,12049:32779637,17236332:26211779,11572059,196608 +k1,12018:6567857,17236332:-26211780 +) +(1,12018:6567858,17236332:26211779,11375451,196608 +[1,12018:6764466,17236332:25818563,11178843,0 +(1,11984:6764466,6355862:25818563,298373,6605 +(1,11983:6764466,6355862:0,0,0 +g1,11983:6764466,6355862 +g1,11983:6764466,6355862 +g1,11983:6436786,6355862 +(1,11983:6436786,6355862:0,0,0 +) +g1,11983:6764466,6355862 +) +h1,11984:8092282,6355862:0,0,0 +k1,11984:32583030,6355862:24490748 +g1,11984:32583030,6355862 +) +(1,11991:6764466,7171789:25818563,431045,86428 +(1,11986:6764466,7171789:0,0,0 +g1,11986:6764466,7171789 +g1,11986:6764466,7171789 +g1,11986:6436786,7171789 +(1,11986:6436786,7171789:0,0,0 +) +g1,11986:6764466,7171789 +) +g1,11991:7760328,7171789 +g1,11991:10747913,7171789 +g1,11991:12075729,7171789 +h1,11991:13403545,7171789:0,0,0 +k1,11991:32583029,7171789:19179484 +g1,11991:32583029,7171789 +) +(1,11991:6764466,7856644:25818563,424439,79822 +h1,11991:6764466,7856644:0,0,0 +g1,11991:7760328,7856644 +h1,11991:13403545,7856644:0,0,0 +k1,11991:32583029,7856644:19179484 +g1,11991:32583029,7856644 +) +(1,11991:6764466,8541499:25818563,431045,106246 +h1,11991:6764466,8541499:0,0,0 +g1,11991:7760328,8541499 +g1,11991:11411821,8541499 +k1,11991:11411821,8541499:0 +h1,11991:17718946,8541499:0,0,0 +k1,11991:32583029,8541499:14864083 +g1,11991:32583029,8541499 +) +(1,11991:6764466,9226354:25818563,424439,106246 +h1,11991:6764466,9226354:0,0,0 +g1,11991:7760328,9226354 +g1,11991:12407683,9226354 +k1,11991:12407683,9226354:0 +h1,11991:17386992,9226354:0,0,0 +k1,11991:32583029,9226354:15196037 +g1,11991:32583029,9226354 +) +(1,11993:6764466,10042281:25818563,424439,79822 +(1,11992:6764466,10042281:0,0,0 +g1,11992:6764466,10042281 +g1,11992:6764466,10042281 +g1,11992:6436786,10042281 +(1,11992:6436786,10042281:0,0,0 +) +g1,11992:6764466,10042281 +) +g1,11993:8424236,10042281 +g1,11993:9420098,10042281 +k1,11993:9420098,10042281:0 +h1,11993:12407684,10042281:0,0,0 +k1,11993:32583028,10042281:20175344 +g1,11993:32583028,10042281 +) +(1,11994:6764466,10727136:25818563,298373,6605 +h1,11994:6764466,10727136:0,0,0 +h1,11994:8092282,10727136:0,0,0 +k1,11994:32583030,10727136:24490748 +g1,11994:32583030,10727136 +) +(1,11998:6764466,11543063:25818563,424439,79822 +(1,11996:6764466,11543063:0,0,0 +g1,11996:6764466,11543063 +g1,11996:6764466,11543063 +g1,11996:6436786,11543063 +(1,11996:6436786,11543063:0,0,0 +) +g1,11996:6764466,11543063 +) +g1,11998:7760328,11543063 +g1,11998:9088144,11543063 +h1,11998:9420098,11543063:0,0,0 +k1,11998:32583030,11543063:23162932 +g1,11998:32583030,11543063 +) +(1,12000:6764466,12358990:25818563,424439,79822 +(1,11999:6764466,12358990:0,0,0 +g1,11999:6764466,12358990 +g1,11999:6764466,12358990 +g1,11999:6436786,12358990 +(1,11999:6436786,12358990:0,0,0 +) +g1,11999:6764466,12358990 +) +k1,12000:6764466,12358990:0 +h1,12000:9752052,12358990:0,0,0 +k1,12000:32583028,12358990:22830976 +g1,12000:32583028,12358990 +) +(1,12004:6764466,13174917:25818563,424439,79822 +(1,12002:6764466,13174917:0,0,0 +g1,12002:6764466,13174917 +g1,12002:6764466,13174917 +g1,12002:6436786,13174917 +(1,12002:6436786,13174917:0,0,0 +) +g1,12002:6764466,13174917 +) +g1,12004:7760328,13174917 +g1,12004:9088144,13174917 +h1,12004:10084006,13174917:0,0,0 +k1,12004:32583030,13174917:22499024 +g1,12004:32583030,13174917 +) +(1,12006:6764466,13990844:25818563,431045,112852 +(1,12005:6764466,13990844:0,0,0 +g1,12005:6764466,13990844 +g1,12005:6764466,13990844 +g1,12005:6436786,13990844 +(1,12005:6436786,13990844:0,0,0 +) +g1,12005:6764466,13990844 +) +k1,12006:6764466,13990844:0 +h1,12006:15063315,13990844:0,0,0 +k1,12006:32583029,13990844:17519714 +g1,12006:32583029,13990844 +) +(1,12010:6764466,14806771:25818563,424439,112852 +(1,12008:6764466,14806771:0,0,0 +g1,12008:6764466,14806771 +g1,12008:6764466,14806771 +g1,12008:6436786,14806771 +(1,12008:6436786,14806771:0,0,0 +) +g1,12008:6764466,14806771 +) +g1,12010:7760328,14806771 +g1,12010:9088144,14806771 +g1,12010:13403545,14806771 +g1,12010:13735499,14806771 +g1,12010:14067453,14806771 +g1,12010:14399407,14806771 +g1,12010:14731361,14806771 +g1,12010:19710670,14806771 +g1,12010:20042624,14806771 +g1,12010:20374578,14806771 +h1,12010:25685841,14806771:0,0,0 +k1,12010:32583029,14806771:6897188 +g1,12010:32583029,14806771 +) +(1,12012:6764466,15622698:25818563,424439,79822 +(1,12011:6764466,15622698:0,0,0 +g1,12011:6764466,15622698 +g1,12011:6764466,15622698 +g1,12011:6436786,15622698 +(1,12011:6436786,15622698:0,0,0 +) +g1,12011:6764466,15622698 +) +k1,12012:6764466,15622698:0 +h1,12012:9420098,15622698:0,0,0 +k1,12012:32583030,15622698:23162932 +g1,12012:32583030,15622698 +) +(1,12013:6764466,16307553:25818563,431045,112852 +h1,12013:6764466,16307553:0,0,0 +k1,12013:6764466,16307553:0 +h1,12013:15063315,16307553:0,0,0 +k1,12013:32583029,16307553:17519714 +g1,12013:32583029,16307553 +) +(1,12017:6764466,17123480:25818563,424439,112852 +(1,12015:6764466,17123480:0,0,0 +g1,12015:6764466,17123480 +g1,12015:6764466,17123480 +g1,12015:6436786,17123480 +(1,12015:6436786,17123480:0,0,0 +) +g1,12015:6764466,17123480 +) +g1,12017:7760328,17123480 +g1,12017:9088144,17123480 +g1,12017:14067453,17123480 +g1,12017:14399407,17123480 +g1,12017:14731361,17123480 +h1,12017:20042624,17123480:0,0,0 +k1,12017:32583029,17123480:12540405 +g1,12017:32583029,17123480 +) +] +) +g1,12018:32583029,17236332 +g1,12018:6764466,17236332 +g1,12018:6764466,17236332 +g1,12018:32583029,17236332 +g1,12018:32583029,17236332 +) +h1,12018:6764466,17432940:0,0,0 +(1,12022:6764466,18298020:25818563,505283,134348 +h1,12021:6764466,18298020:983040,0,0 +k1,12021:8576569,18298020:201228 +k1,12021:9981038,18298020:201228 +k1,12021:11330456,18298020:201227 +k1,12021:14193101,18298020:201228 +k1,12021:15262681,18298020:201228 +k1,12021:18239359,18298020:201228 +k1,12021:19834537,18298020:201227 +(1,12021:19834537,18298020:0,452978,115847 +r1,12049:22654786,18298020:2820249,568825,115847 +k1,12021:19834537,18298020:-2820249 +) +(1,12021:19834537,18298020:2820249,452978,115847 +k1,12021:19834537,18298020:3277 +h1,12021:22651509,18298020:0,411205,112570 +) +k1,12021:22856014,18298020:201228 +k1,12021:24076327,18298020:201228 +k1,12021:26788895,18298020:201228 +k1,12021:27858474,18298020:201227 +k1,12021:29251147,18298020:201228 +k1,12021:32227169,18298020:201228 +k1,12021:32583029,18298020:0 +) +(1,12022:6764466,19163100:25818563,513147,134348 +k1,12021:8659112,19163100:214303 +k1,12021:9698513,19163100:214303 +k1,12021:12447748,19163100:214302 +k1,12021:16518189,19163100:214303 +k1,12021:18018308,19163100:214303 +k1,12021:20665307,19163100:214303 +k1,12021:23467627,19163100:214303 +k1,12021:24364815,19163100:214303 +k1,12021:28224229,19163100:214302 +k1,12021:29097824,19163100:214303 +k1,12021:31601955,19163100:214303 +k1,12022:32583029,19163100:0 +) +(1,12022:6764466,20028180:25818563,513147,134348 +k1,12021:8531928,20028180:153966 +k1,12021:9301932,20028180:153966 +k1,12021:10474983,20028180:153966 +k1,12021:13382772,20028180:153966 +k1,12021:14917582,20028180:153966 +k1,12021:15603045,20028180:153966 +k1,12021:18519354,20028180:153966 +k1,12021:19324747,20028180:153965 +k1,12021:22082458,20028180:153966 +k1,12021:22592284,20028180:153966 +k1,12021:24029445,20028180:153966 +k1,12021:26142937,20028180:153966 +k1,12021:27690854,20028180:153966 +k1,12021:28863905,20028180:153966 +k1,12021:30671344,20028180:153966 +k1,12021:32583029,20028180:0 +) +(1,12022:6764466,20893260:25818563,505283,134348 +k1,12021:8870411,20893260:220474 +k1,12021:9622382,20893260:220474 +k1,12021:12466262,20893260:220474 +k1,12021:13883423,20893260:220474 +k1,12021:15276336,20893260:220474 +k1,12021:19013472,20893260:220474 +k1,12021:21102377,20893260:220474 +k1,12021:23453426,20893260:220474 +k1,12021:25611144,20893260:220474 +k1,12021:27023063,20893260:220474 +k1,12021:28235097,20893260:220474 +k1,12021:29521842,20893260:220474 +k1,12021:32583029,20893260:0 +) +(1,12022:6764466,21758340:25818563,505283,134348 +g1,12021:8661733,21758340 +g1,12021:12428742,21758340 +g1,12021:13647056,21758340 +k1,12022:32583030,21758340:17180264 +g1,12022:32583030,21758340 +) +v1,12024:6764466,22443195:0,393216,0 +(1,12029:6764466,23435703:25818563,1385724,196608 +g1,12029:6764466,23435703 +g1,12029:6764466,23435703 +g1,12029:6567858,23435703 +(1,12029:6567858,23435703:0,1385724,196608 +r1,12049:32779637,23435703:26211779,1582332,196608 +k1,12029:6567857,23435703:-26211780 +) +(1,12029:6567858,23435703:26211779,1385724,196608 +[1,12029:6764466,23435703:25818563,1189116,0 +(1,12026:6764466,22671026:25818563,424439,112852 +(1,12025:6764466,22671026:0,0,0 +g1,12025:6764466,22671026 +g1,12025:6764466,22671026 +g1,12025:6436786,22671026 +(1,12025:6436786,22671026:0,0,0 +) +g1,12025:6764466,22671026 +) +g1,12026:11743775,22671026 +g1,12026:12739637,22671026 +g1,12026:14067453,22671026 +g1,12026:15395269,22671026 +g1,12026:16391131,22671026 +h1,12026:18382855,22671026:0,0,0 +k1,12026:32583029,22671026:14200174 +g1,12026:32583029,22671026 +) +(1,12027:6764466,23355881:25818563,424439,79822 +h1,12027:6764466,23355881:0,0,0 +k1,12027:6764466,23355881:0 +h1,12027:12739637,23355881:0,0,0 +k1,12027:32583029,23355881:19843392 +g1,12027:32583029,23355881 +) +] +) +g1,12029:32583029,23435703 +g1,12029:6764466,23435703 +g1,12029:6764466,23435703 +g1,12029:32583029,23435703 +g1,12029:32583029,23435703 +) +h1,12029:6764466,23632311:0,0,0 +(1,12033:6764466,24497391:25818563,513147,126483 +h1,12032:6764466,24497391:983040,0,0 +k1,12032:8856188,24497391:155133 +k1,12032:11166146,24497391:155134 +k1,12032:11934041,24497391:155133 +k1,12032:13464776,24497391:155134 +k1,12032:14776619,24497391:155133 +k1,12032:17555159,24497391:155134 +k1,12032:18369584,24497391:155133 +k1,12032:19543803,24497391:155134 +k1,12032:21379279,24497391:155133 +k1,12032:24313140,24497391:155134 +k1,12032:25229801,24497391:155133 +(1,12032:25229801,24497391:0,452978,122846 +r1,12049:29808609,24497391:4578808,575824,122846 +k1,12032:25229801,24497391:-4578808 +) +(1,12032:25229801,24497391:4578808,452978,122846 +k1,12032:25229801,24497391:3277 +h1,12032:29805332,24497391:0,411205,112570 +) +k1,12032:30137413,24497391:155134 +k1,12032:31107814,24497391:155133 +k1,12032:32583029,24497391:0 +) +(1,12033:6764466,25362471:25818563,513147,134348 +g1,12032:7319555,25362471 +g1,12032:8905526,25362471 +g1,12032:9717517,25362471 +g1,12032:10705144,25362471 +g1,12032:12292426,25362471 +g1,12032:13989808,25362471 +g1,12032:15136688,25362471 +g1,12032:16986114,25362471 +g1,12032:19302811,25362471 +g1,12032:20188202,25362471 +g1,12032:20845528,25362471 +g1,12032:23746806,25362471 +g1,12032:27173028,25362471 +k1,12033:32583029,25362471:1429344 +g1,12033:32583029,25362471 +) +] +g1,12034:32583029,25496819 +) +h1,12034:6630773,25496819:0,0,0 +(1,12036:6630773,28327979:25952256,32768,229376 +(1,12036:6630773,28327979:0,32768,229376 +(1,12036:6630773,28327979:5505024,32768,229376 +r1,12049:12135797,28327979:5505024,262144,229376 +) +k1,12036:6630773,28327979:-5505024 +) +(1,12036:6630773,28327979:25952256,32768,0 +r1,12049:32583029,28327979:25952256,32768,0 +) +) +(1,12036:6630773,29959831:25952256,606339,161218 +(1,12036:6630773,29959831:1974731,582746,14155 +g1,12036:6630773,29959831 +g1,12036:8605504,29959831 +) +g1,12036:11813360,29959831 +k1,12036:32583030,29959831:17773364 +g1,12036:32583030,29959831 +) +(1,12039:6630773,31218127:25952256,513147,134348 +k1,12038:7747687,31218127:214483 +k1,12038:10651768,31218127:214483 +k1,12038:14238077,31218127:214482 +k1,12038:15111852,31218127:214483 +k1,12038:20170101,31218127:214483 +k1,12038:24736830,31218127:214483 +k1,12038:25567350,31218127:214482 +k1,12038:26196661,31218127:214468 +k1,12038:26942641,31218127:214483 +k1,12038:29522973,31218127:214482 +k1,12038:30756541,31218127:214483 +k1,12038:32583029,31218127:0 +) +(1,12039:6630773,32083207:25952256,513147,134348 +k1,12038:7568108,32083207:278043 +k1,12038:9049392,32083207:278043 +k1,12038:11083145,32083207:278043 +k1,12038:12403210,32083207:278043 +k1,12038:13700338,32083207:278043 +k1,12038:19413282,32083207:278043 +k1,12038:21245839,32083207:278043 +k1,12038:21879742,32083207:278043 +k1,12038:23779146,32083207:278043 +k1,12038:28712211,32083207:278043 +k1,12038:29657410,32083207:278043 +k1,12038:30350217,32083207:277964 +k1,12038:32583029,32083207:0 +) +(1,12039:6630773,32948287:25952256,513147,102891 +k1,12038:7959516,32948287:224461 +k1,12038:8931742,32948287:224460 +k1,12038:11307095,32948287:224461 +k1,12038:12998252,32948287:224461 +k1,12038:13688673,32948287:224460 +k1,12038:14675318,32948287:224461 +k1,12038:15582663,32948287:224460 +k1,12038:16899609,32948287:224461 +k1,12038:18616980,32948287:224461 +k1,12038:19907711,32948287:224460 +k1,12038:22188036,32948287:224461 +k1,12038:23063925,32948287:224461 +k1,12038:25217765,32948287:224460 +k1,12038:26725421,32948287:224461 +k1,12038:29356363,32948287:224460 +k1,12038:30961668,32948287:224461 +k1,12038:32583029,32948287:0 +) +(1,12039:6630773,33813367:25952256,505283,134348 +k1,12038:10235102,33813367:186626 +k1,12038:10953225,33813367:186626 +k1,12038:12688468,33813367:186627 +k1,12038:13743446,33813367:186626 +k1,12038:16419129,33813367:186626 +k1,12038:17221793,33813367:186626 +k1,12038:18611661,33813367:186627 +k1,12038:21389581,33813367:186626 +k1,12038:23832612,33813367:186626 +k1,12038:25931579,33813367:186626 +k1,12038:28787487,33813367:186627 +k1,12038:29590151,33813367:186626 +k1,12038:31563944,33813367:186626 +k1,12038:32583029,33813367:0 +) +(1,12039:6630773,34678447:25952256,513147,134348 +k1,12038:9651192,34678447:258076 +k1,12038:11464436,34678447:258075 +k1,12038:14298732,34678447:258076 +k1,12038:17340777,34678447:258076 +k1,12038:18790298,34678447:258076 +k1,12038:20378754,34678447:258075 +k1,12038:21288258,34678447:258076 +k1,12038:22638819,34678447:258076 +k1,12038:24535950,34678447:258076 +k1,12038:25410063,34678447:258075 +k1,12038:26082923,34678447:258017 +k1,12038:29425123,34678447:258076 +k1,12038:30725220,34678447:258075 +k1,12038:31753999,34678447:258076 +k1,12039:32583029,34678447:0 +) +(1,12039:6630773,35543527:25952256,513147,134348 +k1,12038:8761050,35543527:269710 +k1,12038:12175178,35543527:269711 +k1,12038:13104180,35543527:269710 +k1,12038:14392975,35543527:269710 +k1,12038:16972830,35543527:269711 +k1,12038:19249252,35543527:269710 +k1,12038:21869084,35543527:269711 +k1,12038:23157879,35543527:269710 +k1,12038:25339930,35543527:269710 +k1,12038:28732432,35543527:269711 +k1,12038:29451719,35543527:269710 +k1,12038:32583029,35543527:0 +) +(1,12039:6630773,36408607:25952256,505283,134348 +g1,12038:8630931,36408607 +g1,12038:10021605,36408607 +g1,12038:13309546,36408607 +g1,12038:13958352,36408607 +g1,12038:17577250,36408607 +k1,12039:32583029,36408607:13031179 +g1,12039:32583029,36408607 +) +(1,12041:6630773,37273687:25952256,513147,134348 +h1,12040:6630773,37273687:983040,0,0 +k1,12040:9026709,37273687:216209 +k1,12040:13374963,37273687:216209 +k1,12040:14250465,37273687:216210 +k1,12040:17377128,37273687:216209 +k1,12040:18124834,37273687:216209 +k1,12040:21860326,37273687:216209 +k1,12040:25166558,37273687:216209 +k1,12040:25998805,37273687:216209 +k1,12040:27234100,37273687:216210 +k1,12040:29032348,37273687:216209 +k1,12040:29698134,37273687:216209 +k1,12041:32583029,37273687:0 +) +(1,12041:6630773,38138767:25952256,513147,134348 +k1,12040:9947194,38138767:185111 +k1,12040:11933233,38138767:185110 +k1,12040:13309789,38138767:185111 +k1,12040:14265603,38138767:185111 +k1,12040:17140311,38138767:185110 +k1,12040:20935145,38138767:185111 +k1,12040:21787411,38138767:185110 +k1,12040:22387351,38138767:185097 +k1,12040:24140083,38138767:185111 +k1,12040:25344278,38138767:185110 +k1,12040:29881635,38138767:185111 +k1,12041:32583029,38138767:0 +) +(1,12041:6630773,39003847:25952256,505283,134348 +k1,12040:7942268,39003847:148886 +k1,12040:8622650,39003847:148885 +k1,12040:10466297,39003847:148886 +k1,12040:11231220,39003847:148885 +k1,12040:12399191,39003847:148886 +k1,12040:14130115,39003847:148885 +k1,12040:17401792,39003847:148886 +k1,12040:18000255,39003847:148886 +k1,12040:21280450,39003847:148885 +k1,12040:23404237,39003847:149187 +k1,12040:24749809,39003847:148885 +k1,12040:26480734,39003847:148886 +k1,12040:29718331,39003847:148885 +k1,12040:30316794,39003847:148886 +k1,12041:32583029,39003847:0 +) +(1,12041:6630773,39868927:25952256,505283,134348 +g1,12040:8196428,39868927 +g1,12040:10196586,39868927 +g1,12040:12447092,39868927 +g1,12040:14113017,39868927 +k1,12041:32583029,39868927:15655896 +g1,12041:32583029,39868927 +) +] +(1,12049:32583029,45706769:0,0,0 +g1,12049:32583029,45706769 +) +) +] +(1,12049:6630773,47279633:25952256,0,0 +h1,12049:6630773,47279633:25952256,0,0 +) +] +(1,12049:4262630,4025873:0,0,0 +[1,12049:-473656,4025873:0,0,0 +(1,12049:-473656,-710413:0,0,0 +(1,12049:-473656,-710413:0,0,0 +g1,12049:-473656,-710413 +) +g1,12049:-473656,-710413 +) +] +) +] +!20091 +}193 +Input:1753:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1754:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1755:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1756:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1757:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1758:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1759:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1760:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1761:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1762:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1763:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1764:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1765:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1234 +{194 +[1,12065:4262630,47279633:28320399,43253760,11795 +(1,12065:4262630,4025873:0,0,0 +[1,12065:-473656,4025873:0,0,0 +(1,12065:-473656,-710413:0,0,0 +(1,12065:-473656,-644877:0,0,0 +k1,12065:-473656,-644877:-65536 ) -(1,12804:-473656,4736287:0,0,0 -k1,12804:-473656,4736287:5209943 +(1,12065:-473656,4736287:0,0,0 +k1,12065:-473656,4736287:5209943 ) -g1,12804:-473656,-710413 +g1,12065:-473656,-710413 ) ] ) -[1,12804:6630773,47279633:25952256,43253760,0 -[1,12804:6630773,4812305:25952256,786432,0 -(1,12804:6630773,4812305:25952256,505283,134348 -(1,12804:6630773,4812305:25952256,505283,134348 -g1,12804:3078558,4812305 -[1,12804:3078558,4812305:0,0,0 -(1,12804:3078558,2439708:0,1703936,0 -k1,12804:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,12804:2537886,2439708:1179648,16384,0 +[1,12065:6630773,47279633:25952256,43253760,11795 +[1,12065:6630773,4812305:25952256,786432,0 +(1,12065:6630773,4812305:25952256,0,0 +(1,12065:6630773,4812305:25952256,0,0 +g1,12065:3078558,4812305 +[1,12065:3078558,4812305:0,0,0 +(1,12065:3078558,2439708:0,1703936,0 +k1,12065:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,12065:2537886,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,12804:3078558,1915420:16384,1179648,0 +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,12065:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] ) ) ) ] -[1,12804:3078558,4812305:0,0,0 -(1,12804:3078558,2439708:0,1703936,0 -g1,12804:29030814,2439708 -g1,12804:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,12804:36151628,1915420:16384,1179648,0 +[1,12065:3078558,4812305:0,0,0 +(1,12065:3078558,2439708:0,1703936,0 +g1,12065:29030814,2439708 +g1,12065:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,12065:36151628,1915420:16384,1179648,0 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,12804:37855564,2439708:1179648,16384,0 +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,12065:37855564,2439708:1179648,16384,0 ) ) -k1,12804:3078556,2439708:-34777008 +k1,12065:3078556,2439708:-34777008 ) ] -[1,12804:3078558,4812305:0,0,0 -(1,12804:3078558,49800853:0,16384,2228224 -k1,12804:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,12804:2537886,49800853:1179648,16384,0 +[1,12065:3078558,4812305:0,0,0 +(1,12065:3078558,49800853:0,16384,2228224 +k1,12065:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,12065:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,12804:3078558,51504789:16384,1179648,0 -) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 -) -] -) -) -) -] -[1,12804:3078558,4812305:0,0,0 -(1,12804:3078558,49800853:0,16384,2228224 -g1,12804:29030814,49800853 -g1,12804:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,12804:36151628,51504789:16384,1179648,0 -) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 -) -] -) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,12804:37855564,49800853:1179648,16384,0 -) -) -k1,12804:3078556,49800853:-34777008 -) -] -g1,12804:6630773,4812305 -g1,12804:6630773,4812305 -g1,12804:8843268,4812305 -g1,12804:10880782,4812305 -g1,12804:13281365,4812305 -k1,12804:31387653,4812305:18106288 -) -) -] -[1,12804:6630773,45706769:25952256,40108032,0 -(1,12804:6630773,45706769:25952256,40108032,0 -(1,12804:6630773,45706769:0,0,0 -g1,12804:6630773,45706769 -) -[1,12804:6630773,45706769:25952256,40108032,0 -v1,12565:6630773,6254097:0,393216,0 -(1,12565:6630773,16106177:25952256,10245296,0 -g1,12565:6630773,16106177 -g1,12565:6303093,16106177 -r1,12804:6401397,16106177:98304,10245296,0 -g1,12565:6600626,16106177 -g1,12565:6797234,16106177 -[1,12565:6797234,16106177:25785795,10245296,0 -(1,12553:6797234,6374028:25785795,513147,102891 -k1,12552:7579273,6374028:166001 -k1,12552:8764358,6374028:166000 -k1,12552:10642815,6374028:166001 -k1,12552:12970193,6374028:166001 -k1,12552:13764029,6374028:166001 -k1,12552:14949114,6374028:166000 -k1,12552:16482196,6374028:166001 -k1,12552:17307489,6374028:166001 -k1,12552:18629511,6374028:165967 -k1,12552:19986957,6374028:166001 -k1,12552:21394210,6374028:166001 -k1,12552:21916070,6374028:166000 -k1,12552:24434158,6374028:166001 -k1,12552:26280502,6374028:166001 -k1,12552:26978000,6374028:166001 -k1,12552:29214938,6374028:166000 -k1,12552:30572384,6374028:166001 -k1,12552:32583029,6374028:0 -) -(1,12553:6797234,7215516:25785795,505283,134348 -k1,12552:9768435,7215516:192474 -k1,12552:11065191,7215516:192474 -k1,12552:12005431,7215516:192474 -k1,12552:14053885,7215516:192474 -k1,12552:16755733,7215516:192474 -k1,12552:17631092,7215516:192474 -k1,12552:20652100,7215516:192474 -k1,12552:21460612,7215516:192474 -k1,12552:23538557,7215516:192474 -k1,12552:25098112,7215516:192474 -k1,12552:26940783,7215516:192474 -k1,12552:29788120,7215516:192474 -k1,12552:30512091,7215516:192474 -k1,12552:32583029,7215516:0 -) -(1,12553:6797234,8057004:25785795,513147,126483 -k1,12552:10023356,8057004:156416 -k1,12552:11127424,8057004:156417 -k1,12552:12750536,8057004:156416 -k1,12552:13974492,8057004:156374 -k1,12552:15322354,8057004:156417 -k1,12552:16634783,8057004:156374 -k1,12552:17782759,8057004:156416 -k1,12552:20717903,8057004:156417 -k1,12552:21635847,8057004:156416 -(1,12552:21635847,8057004:0,452978,115847 -r1,12804:24104384,8057004:2468537,568825,115847 -k1,12552:21635847,8057004:-2468537 -) -(1,12552:21635847,8057004:2468537,452978,115847 -k1,12552:21635847,8057004:3277 -h1,12552:24101107,8057004:0,411205,112570 -) -k1,12552:24434471,8057004:156417 -k1,12552:25782332,8057004:156416 -k1,12552:26748119,8057004:156417 -k1,12552:28413174,8057004:156416 -k1,12552:29899971,8057004:156416 -k1,12552:30817916,8057004:156417 -(1,12552:30817916,8057004:0,452978,115847 -r1,12804:32583029,8057004:1765113,568825,115847 -k1,12552:30817916,8057004:-1765113 -) -(1,12552:30817916,8057004:1765113,452978,115847 -k1,12552:30817916,8057004:3277 -h1,12552:32579752,8057004:0,411205,112570 -) -k1,12552:32583029,8057004:0 -) -(1,12553:6797234,8898492:25785795,505283,115847 -g1,12552:8187908,8898492 -(1,12552:8187908,8898492:0,452978,115847 -r1,12804:9953021,8898492:1765113,568825,115847 -k1,12552:8187908,8898492:-1765113 -) -(1,12552:8187908,8898492:1765113,452978,115847 -k1,12552:8187908,8898492:3277 -h1,12552:9949744,8898492:0,411205,112570 -) -k1,12553:32583029,8898492:22630008 -g1,12553:32583029,8898492 -) -v1,12555:6797234,10088958:0,393216,0 -(1,12560:6797234,11051358:25785795,1355616,196608 -g1,12560:6797234,11051358 -g1,12560:6797234,11051358 -g1,12560:6600626,11051358 -(1,12560:6600626,11051358:0,1355616,196608 -r1,12804:32779637,11051358:26179011,1552224,196608 -k1,12560:6600625,11051358:-26179012 -) -(1,12560:6600626,11051358:26179011,1355616,196608 -[1,12560:6797234,11051358:25785795,1159008,0 -(1,12557:6797234,10302868:25785795,410518,82312 -(1,12556:6797234,10302868:0,0,0 -g1,12556:6797234,10302868 -g1,12556:6797234,10302868 -g1,12556:6469554,10302868 -(1,12556:6469554,10302868:0,0,0 -) -g1,12556:6797234,10302868 -) -k1,12557:6797234,10302868:0 -g1,12557:9642546,10302868 -g1,12557:11223275,10302868 -g1,12557:12804004,10302868 -h1,12557:14384732,10302868:0,0,0 -k1,12557:32583028,10302868:18198296 -g1,12557:32583028,10302868 -) -(1,12558:6797234,10969046:25785795,410518,82312 -h1,12558:6797234,10969046:0,0,0 -g1,12558:9642546,10969046 -g1,12558:11223275,10969046 -g1,12558:12804004,10969046 -h1,12558:14384732,10969046:0,0,0 -k1,12558:32583028,10969046:18198296 -g1,12558:32583028,10969046 -) -] -) -g1,12560:32583029,11051358 -g1,12560:6797234,11051358 -g1,12560:6797234,11051358 -g1,12560:32583029,11051358 -g1,12560:32583029,11051358 -) -h1,12560:6797234,11247966:0,0,0 -(1,12564:6797234,12613742:25785795,505283,126483 -h1,12563:6797234,12613742:983040,0,0 -k1,12563:9670901,12613742:285650 -k1,12563:11127023,12613742:285649 -k1,12563:12887888,12613742:285650 -k1,12563:14291581,12613742:285649 -k1,12563:15596316,12613742:285650 -k1,12563:17378152,12613742:285649 -k1,12563:18279840,12613742:285650 -k1,12563:19584574,12613742:285649 -k1,12563:22171193,12613742:285650 -k1,12563:24485837,12613742:285649 -k1,12563:25941960,12613742:285650 -k1,12563:27360071,12613742:285649 -k1,12563:28393487,12613742:285650 -k1,12563:29987890,12613742:285649 -k1,12563:31298523,12613742:285650 -k1,12563:32583029,12613742:0 -) -(1,12564:6797234,13455230:25785795,505283,134348 -k1,12563:8686637,13455230:192676 -k1,12563:10534097,13455230:192676 -k1,12563:12999561,13455230:192675 -k1,12563:14007505,13455230:192676 -k1,12563:15266452,13455230:192676 -k1,12563:18974479,13455230:192676 -k1,12563:20880265,13455230:192675 -k1,12563:21882311,13455230:192676 -k1,12563:23960458,13455230:192676 -k1,12563:24684631,13455230:192676 -k1,12563:25896392,13455230:192676 -k1,12563:28024345,13455230:192675 -k1,12563:30378398,13455230:192676 -k1,12563:31966991,13455230:192676 -k1,12563:32583029,13455230:0 -) -(1,12564:6797234,14296718:25785795,513147,138281 -k1,12563:8010907,14296718:194588 -k1,12563:10364251,14296718:194588 -$1,12563:10364251,14296718 -$1,12563:10832178,14296718 -k1,12563:13093771,14296718:194587 -k1,12563:14355936,14296718:194583 -k1,12563:15741969,14296718:194588 -k1,12563:17092607,14296718:194583 -k1,12563:20506979,14296718:194588 -k1,12563:21649218,14296718:194588 -k1,12563:22862891,14296718:194588 -k1,12563:25819821,14296718:194587 -k1,12563:28332417,14296718:194588 -k1,12563:29718450,14296718:194588 -k1,12563:32583029,14296718:0 -) -(1,12564:6797234,15138206:25785795,513147,126483 -k1,12563:8926593,15138206:243888 -k1,12563:11158187,15138206:243887 -k1,12563:11933572,15138206:243888 -k1,12563:14606223,15138206:243887 -k1,12563:15611639,15138206:243888 -k1,12563:17307148,15138206:243887 -k1,12563:18210328,15138206:243888 -k1,12563:19473301,15138206:243888 -k1,12563:21371972,15138206:243887 -k1,12563:24062319,15138206:243888 -k1,12563:24934041,15138206:243887 -k1,12563:27843934,15138206:243888 -k1,12563:29258294,15138206:243887 -k1,12563:30634644,15138206:243888 -k1,12563:32583029,15138206:0 -) -(1,12564:6797234,15979694:25785795,513147,126483 -g1,12563:8280969,15979694 -g1,12563:9499283,15979694 -g1,12563:10870951,15979694 -g1,12563:13832523,15979694 -g1,12563:18172972,15979694 -g1,12563:19031493,15979694 -g1,12563:20249807,15979694 -g1,12563:23480731,15979694 -g1,12563:27252983,15979694 -g1,12563:28443772,15979694 -k1,12564:32583029,15979694:660606 -g1,12564:32583029,15979694 -) -] -g1,12565:32583029,16106177 -) -h1,12565:6630773,16106177:0,0,0 -(1,12568:6630773,17471953:25952256,513147,134348 -h1,12567:6630773,17471953:983040,0,0 -k1,12567:11164094,17471953:191561 -k1,12567:14140281,17471953:191562 -k1,12567:15611760,17471953:191561 -k1,12567:17197928,17471953:191562 -k1,12567:19420450,17471953:191561 -k1,12567:20263440,17471953:191562 -k1,12567:23217344,17471953:191561 -k1,12567:27336479,17471953:191562 -k1,12567:28187332,17471953:191561 -k1,12567:30091350,17471953:191562 -k1,12568:32583029,17471953:0 -) -(1,12568:6630773,18313441:25952256,505283,115847 -(1,12567:6630773,18313441:0,452978,115847 -r1,12804:8747598,18313441:2116825,568825,115847 -k1,12567:6630773,18313441:-2116825 -) -(1,12567:6630773,18313441:2116825,452978,115847 -k1,12567:6630773,18313441:3277 -h1,12567:8744321,18313441:0,411205,112570 -) -k1,12567:8913083,18313441:165485 -k1,12567:11419513,18313441:165484 -k1,12567:12604083,18313441:165485 -k1,12567:19019080,18313441:165484 -k1,12567:21445557,18313441:165485 -(1,12567:21445557,18313441:0,459977,115847 -r1,12804:23562382,18313441:2116825,575824,115847 -k1,12567:21445557,18313441:-2116825 -) -(1,12567:21445557,18313441:2116825,459977,115847 -k1,12567:21445557,18313441:3277 -h1,12567:23559105,18313441:0,411205,112570 -) -k1,12567:23727866,18313441:165484 -k1,12567:25084796,18313441:165485 -k1,12567:26038678,18313441:165484 -k1,12567:27652509,18313441:165485 -(1,12567:27652509,18313441:0,459977,115847 -r1,12804:32583029,18313441:4930520,575824,115847 -k1,12567:27652509,18313441:-4930520 -) -(1,12567:27652509,18313441:4930520,459977,115847 -k1,12567:27652509,18313441:3277 -h1,12567:32579752,18313441:0,411205,112570 -) -k1,12567:32583029,18313441:0 -) -(1,12568:6630773,19154929:25952256,513147,115847 -k1,12567:9021088,19154929:379670 -k1,12567:10419843,19154929:379670 -k1,12567:13845627,19154929:379671 -k1,12567:15172948,19154929:379670 -k1,12567:16571703,19154929:379670 -k1,12567:18663829,19154929:379670 -k1,12567:21031206,19154929:379670 -k1,12567:25195581,19154929:379671 -(1,12567:25195581,19154929:0,459977,115847 -r1,12804:28015830,19154929:2820249,575824,115847 -k1,12567:25195581,19154929:-2820249 -) -(1,12567:25195581,19154929:2820249,459977,115847 -k1,12567:25195581,19154929:3277 -h1,12567:28012553,19154929:0,411205,112570 -) -k1,12567:28395500,19154929:379670 -k1,12567:29966615,19154929:379670 -k1,12567:31134683,19154929:379670 -k1,12568:32583029,19154929:0 -) -(1,12568:6630773,19996417:25952256,513147,115847 -(1,12567:6630773,19996417:0,459977,115847 -r1,12804:11913004,19996417:5282231,575824,115847 -k1,12567:6630773,19996417:-5282231 -) -(1,12567:6630773,19996417:5282231,459977,115847 -k1,12567:6630773,19996417:3277 -h1,12567:11909727,19996417:0,411205,112570 -) -k1,12567:12171668,19996417:258664 -k1,12567:14634308,19996417:258664 -k1,12567:15912056,19996417:258663 -k1,12567:17883176,19996417:258664 -k1,12567:20326155,19996417:258664 -k1,12567:21776264,19996417:258664 -(1,12567:21776264,19996417:0,452978,115847 -r1,12804:24244801,19996417:2468537,568825,115847 -k1,12567:21776264,19996417:-2468537 -) -(1,12567:21776264,19996417:2468537,452978,115847 -k1,12567:21776264,19996417:3277 -h1,12567:24241524,19996417:0,411205,112570 -) -k1,12567:24503465,19996417:258664 -k1,12567:25953573,19996417:258663 -k1,12567:27000635,19996417:258664 -k1,12567:28707645,19996417:258664 -(1,12567:28707645,19996417:0,452978,115847 -r1,12804:32583029,19996417:3875384,568825,115847 -k1,12567:28707645,19996417:-3875384 -) -(1,12567:28707645,19996417:3875384,452978,115847 -k1,12567:28707645,19996417:3277 -h1,12567:32579752,19996417:0,411205,112570 -) -k1,12567:32583029,19996417:0 -) -(1,12568:6630773,20837905:25952256,513147,134348 -k1,12567:7942949,20837905:293091 -k1,12567:12859606,20837905:293092 -k1,12567:16046767,20837905:293091 -k1,12567:17229838,20837905:293092 -k1,12567:21183770,20837905:293091 -k1,12567:22849841,20837905:293092 -k1,12567:26447913,20837905:293091 -k1,12567:28254231,20837905:293092 -k1,12567:31591469,20837905:293091 -k1,12568:32583029,20837905:0 -) -(1,12568:6630773,21679393:25952256,505283,134348 -(1,12567:6630773,21679393:0,452978,122846 -r1,12804:9802733,21679393:3171960,575824,122846 -k1,12567:6630773,21679393:-3171960 -) -(1,12567:6630773,21679393:3171960,452978,122846 -k1,12567:6630773,21679393:3277 -h1,12567:9799456,21679393:0,411205,112570 -) -k1,12567:10252326,21679393:275923 -(1,12567:10252326,21679393:0,459977,115847 -r1,12804:13424286,21679393:3171960,575824,115847 -k1,12567:10252326,21679393:-3171960 -) -(1,12567:10252326,21679393:3171960,459977,115847 -k1,12567:10252326,21679393:3277 -h1,12567:13421009,21679393:0,411205,112570 -) -k1,12567:13873879,21679393:275923 -(1,12567:13873879,21679393:0,452978,115847 -r1,12804:16342416,21679393:2468537,568825,115847 -k1,12567:13873879,21679393:-2468537 -) -(1,12567:13873879,21679393:2468537,452978,115847 -k1,12567:13873879,21679393:3277 -h1,12567:16339139,21679393:0,411205,112570 -) -k1,12567:16792009,21679393:275923 -(1,12567:16792009,21679393:0,459977,115847 -r1,12804:21370817,21679393:4578808,575824,115847 -k1,12567:16792009,21679393:-4578808 -) -(1,12567:16792009,21679393:4578808,459977,115847 -k1,12567:16792009,21679393:3277 -h1,12567:21367540,21679393:0,411205,112570 -) -k1,12567:21646741,21679393:275924 -k1,12567:23114109,21679393:275923 -(1,12567:23114109,21679393:0,452978,115847 -r1,12804:28044629,21679393:4930520,568825,115847 -k1,12567:23114109,21679393:-4930520 -) -(1,12567:23114109,21679393:4930520,452978,115847 -k1,12567:23114109,21679393:3277 -h1,12567:28041352,21679393:0,411205,112570 -) -k1,12567:28494222,21679393:275923 -k1,12567:29966832,21679393:275923 -k1,12567:32583029,21679393:0 -) -(1,12568:6630773,22520881:25952256,513147,134348 -g1,12567:8698433,22520881 -g1,12567:10888646,22520881 -g1,12567:12418256,22520881 -g1,12567:14309625,22520881 -g1,12567:15168146,22520881 -g1,12567:17064102,22520881 -g1,12567:20047956,22520881 -g1,12567:20934658,22520881 -g1,12567:21749925,22520881 -g1,12567:22968239,22520881 -g1,12567:25155175,22520881 -g1,12567:27289027,22520881 -k1,12568:32583029,22520881:2173833 -g1,12568:32583029,22520881 -) -(1,12595:6630773,32091753:25952256,8715628,0 -k1,12595:7835237,32091753:1204464 -(1,12569:7835237,32091753:0,0,0 -g1,12569:7835237,32091753 -g1,12569:7835237,32091753 -g1,12569:7507557,32091753 -(1,12569:7507557,32091753:0,0,0 -) -g1,12569:7835237,32091753 -) -(1,12593:7835237,32091753:23543329,8715628,0 -g1,12593:10951523,32091753 -(1,12593:10951523,25869259:0,0,0 -(1,12593:10951523,25869259:0,0,0 -g1,12571:10951523,25869259 -(1,12572:10951523,25869259:0,0,0 -(1,12572:10951523,25869259:0,0,0 -g1,12572:10951523,25869259 -g1,12572:10951523,25869259 -g1,12572:10951523,25869259 -g1,12572:10951523,25869259 -g1,12572:10951523,25869259 -(1,12572:10951523,25869259:0,0,0 -(1,12572:10951523,25869259:4940249,454754,104590 -(1,12572:10951523,25869259:4940249,454754,104590 -g1,12572:12882607,25869259 -$1,12572:12882607,25869259 -$1,12572:13490126,25869259 -g1,12572:13669433,25869259 -(1,12572:13669433,25869259:0,414307,104590 -r1,12804:15891772,25869259:2222339,518897,104590 -k1,12572:13669433,25869259:-2222339 -) -(1,12572:13669433,25869259:2222339,414307,104590 -k1,12572:13669433,25869259:3277 -h1,12572:15888495,25869259:0,370085,101313 -) -) -g1,12572:15891772,25869259 -) -) -g1,12572:10951523,25869259 -g1,12572:10951523,25869259 -) -) -g1,12572:10951523,25869259 -(1,12573:10951523,25869259:0,0,0 -(1,12573:10951523,25869259:0,0,0 -g1,12573:10951523,25869259 -g1,12573:10951523,25869259 -g1,12573:10951523,25869259 -g1,12573:10951523,25869259 -g1,12573:10951523,25869259 -(1,12573:10951523,25869259:0,0,0 -(1,12573:10951523,25869259:5813184,454754,104590 -(1,12573:10951523,25869259:5813184,454754,104590 -g1,12573:14705164,25869259 -$1,12573:14705164,25869259 -$1,12573:15312683,25869259 -g1,12573:15491990,25869259 -(1,12573:15491990,25869259:0,408008,104590 -r1,12804:16764707,25869259:1272717,512598,104590 -k1,12573:15491990,25869259:-1272717 -) -(1,12573:15491990,25869259:1272717,408008,104590 -k1,12573:15491990,25869259:3277 -h1,12573:16761430,25869259:0,370085,101313 -) -) -g1,12573:16764707,25869259 -) -) -g1,12573:10951523,25869259 -g1,12573:10951523,25869259 -) -) -g1,12573:10951523,25869259 -(1,12574:10951523,25869259:0,0,0 -(1,12574:10951523,25869259:0,0,0 -g1,12574:10951523,25869259 -g1,12574:10951523,25869259 -g1,12574:10951523,25869259 -g1,12574:10951523,25869259 -g1,12574:10951523,25869259 -(1,12574:10951523,25869259:0,0,0 -(1,12574:10951523,25869259:5356075,454754,120913 -(1,12574:10951523,25869259:5356075,454754,120913 -g1,12574:13298433,25869259 -$1,12574:13298433,25869259 -$1,12574:13905952,25869259 -g1,12574:14085259,25869259 -(1,12574:14085259,25869259:0,408008,110889 -r1,12804:16307598,25869259:2222339,518897,110889 -k1,12574:14085259,25869259:-2222339 -) -(1,12574:14085259,25869259:2222339,408008,110889 -k1,12574:14085259,25869259:3277 -h1,12574:16304321,25869259:0,370085,101313 -) -) -g1,12574:16307598,25869259 -) -) -g1,12574:10951523,25869259 -g1,12574:10951523,25869259 -) -) -g1,12574:10951523,25869259 -(1,12575:10951523,25869259:0,0,0 -(1,12575:10951523,25869259:0,0,0 -g1,12575:10951523,25869259 -g1,12575:10951523,25869259 -g1,12575:10951523,25869259 -g1,12575:10951523,25869259 -g1,12575:10951523,25869259 -(1,12575:10951523,25869259:0,0,0 -(1,12575:10951523,25869259:1272717,408008,104590 -(1,12575:10951523,25869259:1272717,408008,104590 -(1,12575:10951523,25869259:0,408008,104590 -r1,12804:12224240,25869259:1272717,512598,104590 -k1,12575:10951523,25869259:-1272717 -) -(1,12575:10951523,25869259:1272717,408008,104590 -k1,12575:10951523,25869259:3277 -h1,12575:12220963,25869259:0,370085,101313 -) -) -g1,12575:12224240,25869259 -) -) -g1,12575:10951523,25869259 -g1,12575:10951523,25869259 -) -) -g1,12575:10951523,25869259 -(1,12576:10951523,25869259:0,0,0 -(1,12576:10951523,25869259:0,0,0 -g1,12576:10951523,25869259 -g1,12576:10951523,25869259 -g1,12576:10951523,25869259 -g1,12576:10951523,25869259 -g1,12576:10951523,25869259 -(1,12576:10951523,25869259:0,0,0 -(1,12576:10951523,25869259:2550076,454754,120913 -(1,12576:10951523,25869259:2550076,454754,120913 -(1,12576:10951523,25869259:0,408008,104590 -r1,12804:11591158,25869259:639635,512598,104590 -k1,12576:10951523,25869259:-639635 -) -(1,12576:10951523,25869259:639635,408008,104590 -k1,12576:10951523,25869259:3277 -h1,12576:11587881,25869259:0,370085,101313 -) -g1,12576:11770465,25869259 -) -g1,12576:13501599,25869259 +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,12065:3078558,51504789:16384,1179648,0 ) +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 ) -g1,12576:10951523,25869259 -g1,12576:10951523,25869259 +] ) ) -g1,12576:10951523,25869259 -(1,12577:10951523,25869259:0,0,0 -(1,12577:10951523,25869259:0,0,0 -g1,12577:10951523,25869259 -g1,12577:10951523,25869259 -g1,12577:10951523,25869259 -g1,12577:10951523,25869259 -g1,12577:10951523,25869259 -(1,12577:10951523,25869259:0,0,0 -(1,12577:10951523,25869259:2538879,414307,104590 -(1,12577:10951523,25869259:2538879,414307,104590 -(1,12577:10951523,25869259:0,414307,104590 -r1,12804:13490402,25869259:2538879,518897,104590 -k1,12577:10951523,25869259:-2538879 -) -(1,12577:10951523,25869259:2538879,414307,104590 -k1,12577:10951523,25869259:3277 -h1,12577:13487125,25869259:0,370085,101313 ) +] +[1,12065:3078558,4812305:0,0,0 +(1,12065:3078558,49800853:0,16384,2228224 +g1,12065:29030814,49800853 +g1,12065:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,12065:36151628,51504789:16384,1179648,0 ) -g1,12577:13490402,25869259 +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 ) +] ) -g1,12577:10951523,25869259 -g1,12577:10951523,25869259 +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,12065:37855564,49800853:1179648,16384,0 ) ) -g1,12577:10951523,25869259 -(1,12578:10951523,25869259:0,0,0 -(1,12578:10951523,25869259:0,0,0 -g1,12578:10951523,25869259 -g1,12578:10951523,25869259 -g1,12578:10951523,25869259 -g1,12578:10951523,25869259 -g1,12578:10951523,25869259 -(1,12578:10951523,25869259:0,0,0 -(1,12578:10951523,25869259:3488501,408008,104590 -(1,12578:10951523,25869259:3488501,408008,104590 -(1,12578:10951523,25869259:0,408008,104590 -r1,12804:14440024,25869259:3488501,512598,104590 -k1,12578:10951523,25869259:-3488501 +k1,12065:3078556,49800853:-34777008 ) -(1,12578:10951523,25869259:3488501,408008,104590 -k1,12578:10951523,25869259:3277 -h1,12578:14436747,25869259:0,370085,101313 +] +g1,12065:6630773,4812305 ) ) -g1,12578:14440024,25869259 +] +[1,12065:6630773,45706769:25952256,40108032,0 +(1,12065:6630773,45706769:25952256,40108032,0 +(1,12065:6630773,45706769:0,0,0 +g1,12065:6630773,45706769 ) +[1,12065:6630773,45706769:25952256,40108032,0 +[1,12049:6630773,11769110:25952256,6170373,0 +(1,12049:6630773,6604846:25952256,1137181,0 +h1,12049:6630773,6604846:0,0,0 +k1,12049:20096848,6604846:12486181 +k1,12049:32583029,6604846:12486181 ) -g1,12578:10951523,25869259 -g1,12578:10951523,25869259 +(1,12049:6630773,7351966:25952256,32768,229376 +(1,12049:6630773,7351966:0,32768,229376 +(1,12049:6630773,7351966:5505024,32768,229376 +r1,12065:12135797,7351966:5505024,262144,229376 ) +k1,12049:6630773,7351966:-5505024 ) -g1,12578:10951523,25869259 -(1,12579:10951523,25869259:0,0,0 -(1,12579:10951523,25869259:0,0,0 -g1,12579:10951523,25869259 -g1,12579:10951523,25869259 -g1,12579:10951523,25869259 -g1,12579:10951523,25869259 -g1,12579:10951523,25869259 -(1,12579:10951523,25869259:0,0,0 -(1,12579:10951523,25869259:1905798,414307,104590 -(1,12579:10951523,25869259:1905798,414307,104590 -(1,12579:10951523,25869259:0,414307,104590 -r1,12804:12857321,25869259:1905798,518897,104590 -k1,12579:10951523,25869259:-1905798 -) -(1,12579:10951523,25869259:1905798,414307,104590 -k1,12579:10951523,25869259:3277 -h1,12579:12854044,25869259:0,370085,101313 -) -) -g1,12579:12857321,25869259 +(1,12049:6630773,7351966:25952256,32768,0 +r1,12065:32583029,7351966:25952256,32768,0 ) ) -g1,12579:10951523,25869259 -g1,12579:10951523,25869259 +(1,12049:6630773,9186982:25952256,923664,227671 +h1,12049:6630773,9186982:0,0,0 +g1,12049:9551582,9186982 +g1,12049:11032040,9186982 +g1,12049:15630308,9186982 +g1,12049:18167731,9186982 +g1,12049:23170618,9186982 +g1,12049:25192535,9186982 +k1,12049:31345579,9186982:1237451 +k1,12049:32583029,9186982:1237450 +) +(1,12049:6630773,9934102:25952256,32768,0 +(1,12049:6630773,9934102:5505024,32768,0 +r1,12065:12135797,9934102:5505024,32768,0 +) +k1,12049:22359413,9934102:10223616 +k1,12049:32583029,9934102:10223616 +) +] +(1,12051:6630773,14685467:25952256,131072,0 +r1,12065:32583029,14685467:25952256,131072,0 +g1,12051:32583029,14685467 +g1,12051:32583029,14685467 +) +(1,12053:6630773,16028960:25952256,513147,134348 +g1,12053:8596853,16028960 +g1,12052:9992769,16028960 +g1,12052:12808851,16028960 +g1,12052:13667372,16028960 +g1,12052:17297411,16028960 +g1,12052:18028137,16028960 +g1,12052:20594526,16028960 +g1,12052:21860026,16028960 +k1,12053:30616949,16028960:5767171 +g1,12053:32583029,16028960 +) +(1,12054:6630773,17680472:25952256,505283,134348 +k1,12054:23887713,17680472:17256940 +h1,12054:23887713,17680472:0,0,0 +g1,12054:26546508,17680472 +g1,12054:27525615,17680472 +g1,12054:30616948,17680472 +g1,12054:32583028,17680472 +) +(1,12055:6630773,18545552:25952256,513147,134348 +k1,12055:13726357,18545552:7095584 +h1,12054:13726357,18545552:0,0,0 +g1,12054:17200420,18545552 +g1,12054:20006016,18545552 +g1,12054:21129303,18545552 +g1,12054:24181314,18545552 +g1,12054:25590993,18545552 +g1,12054:29023113,18545552 +g1,12055:30616949,18545552 +g1,12055:32583029,18545552 +) +(1,12055:6630773,19803848:25952256,131072,0 +r1,12065:32583029,19803848:25952256,131072,0 +g1,12055:32583029,19803848 +g1,12055:34549109,19803848 +) +(1,12057:6630773,22635008:25952256,32768,229376 +(1,12057:6630773,22635008:0,32768,229376 +(1,12057:6630773,22635008:5505024,32768,229376 +r1,12065:12135797,22635008:5505024,262144,229376 +) +k1,12057:6630773,22635008:-5505024 +) +(1,12057:6630773,22635008:25952256,32768,0 +r1,12065:32583029,22635008:25952256,32768,0 +) +) +(1,12057:6630773,24266860:25952256,615776,151780 +(1,12057:6630773,24266860:1974731,573309,0 +g1,12057:6630773,24266860 +g1,12057:8605504,24266860 +) +g1,12057:10904245,24266860 +g1,12057:11961996,24266860 +g1,12057:13695292,24266860 +k1,12057:32583029,24266860:15886712 +g1,12057:32583029,24266860 +) +(1,12060:6630773,25525156:25952256,505283,134348 +k1,12059:8202093,25525156:190476 +k1,12059:10810191,25525156:190475 +k1,12059:12507995,25525156:190476 +k1,12059:13349899,25525156:190476 +k1,12059:14820292,25525156:190475 +k1,12059:16029853,25525156:190476 +k1,12059:18268328,25525156:190475 +k1,12059:19229507,25525156:190476 +k1,12059:23412436,25525156:190476 +k1,12059:24254339,25525156:190475 +k1,12059:25463900,25525156:190476 +k1,12059:28638886,25525156:190476 +k1,12059:30342587,25525156:190475 +k1,12059:31149101,25525156:190476 +k1,12060:32583029,25525156:0 +) +(1,12060:6630773,26390236:25952256,513147,134348 +k1,12059:7279929,26390236:234313 +k1,12059:8461929,26390236:234349 +k1,12059:9715363,26390236:234349 +k1,12059:14013599,26390236:234349 +k1,12059:14907239,26390236:234348 +k1,12059:18225712,26390236:234349 +k1,12059:22141874,26390236:234349 +k1,12059:23395307,26390236:234348 +k1,12059:25564279,26390236:234349 +k1,12059:26457920,26390236:234349 +k1,12059:29010276,26390236:234348 +k1,12059:29896053,26390236:234349 +k1,12060:32583029,26390236:0 +) +(1,12060:6630773,27255316:25952256,513147,126483 +k1,12059:8375997,27255316:147456 +k1,12059:9714898,27255316:147456 +k1,12059:11384100,27255316:147456 +k1,12059:12190848,27255316:147456 +k1,12059:15984072,27255316:147456 +k1,12059:17512371,27255316:147455 +k1,12059:20077450,27255316:147456 +k1,12059:21717816,27255316:147456 +k1,12059:22928266,27255316:147456 +k1,12059:25385866,27255316:147456 +k1,12059:26922685,27255316:147456 +k1,12059:29624734,27255316:147456 +k1,12059:32583029,27255316:0 +) +(1,12060:6630773,28120396:25952256,505283,134348 +k1,12059:9929319,28120396:214422 +k1,12059:13307163,28120396:214421 +k1,12059:14204470,28120396:214422 +k1,12059:18588948,28120396:214422 +k1,12059:21395974,28120396:214422 +k1,12059:23442782,28120396:214421 +k1,12059:24648764,28120396:214422 +k1,12059:26614963,28120396:214422 +k1,12059:28413390,28120396:214422 +k1,12059:30540152,28120396:214421 +k1,12059:31563944,28120396:214422 +k1,12059:32583029,28120396:0 +) +(1,12060:6630773,28985476:25952256,513147,134348 +k1,12059:8003758,28985476:280500 +k1,12059:8951414,28985476:280500 +k1,12059:9646676,28985476:280419 +k1,12059:10874827,28985476:280500 +k1,12059:13917670,28985476:280500 +k1,12059:15957813,28985476:280501 +k1,12059:16897605,28985476:280500 +k1,12059:20262229,28985476:280500 +k1,12059:23243468,28985476:280500 +k1,12059:24756045,28985476:280500 +k1,12059:27311956,28985476:280501 +k1,12059:29995006,28985476:280500 +k1,12059:31084876,28985476:280500 +k1,12059:32583029,28985476:0 +) +(1,12060:6630773,29850556:25952256,513147,126483 +h1,12059:7826150,29850556:0,0,0 +k1,12059:8209629,29850556:176385 +k1,12059:9458184,29850556:176386 +k1,12059:11236269,29850556:176385 +k1,12059:12071946,29850556:176385 +k1,12059:13887387,29850556:176386 +k1,12059:15503598,29850556:176385 +k1,12059:16331411,29850556:176385 +k1,12059:18245812,29850556:176386 +k1,12059:19231567,29850556:176385 +k1,12059:21805260,29850556:176386 +k1,12059:25065769,29850556:176385 +k1,12059:28026779,29850556:176385 +k1,12059:30154827,29850556:176386 +k1,12059:31773659,29850556:176385 +k1,12059:32583029,29850556:0 +) +(1,12060:6630773,30715636:25952256,513147,134348 +k1,12059:7864095,30715636:214237 +k1,12059:12753670,30715636:214237 +k1,12059:15127318,30715636:214237 +k1,12059:17154281,30715636:214237 +k1,12059:20331401,30715636:214237 +k1,12059:21979566,30715636:214237 +k1,12059:23112618,30715636:214237 +k1,12059:25314562,30715636:214237 +k1,12059:27463422,30715636:214237 +k1,12059:30703456,30715636:214237 +k1,12059:32583029,30715636:0 +) +(1,12060:6630773,31580716:25952256,513147,126483 +k1,12059:9279607,31580716:251527 +k1,12059:12615258,31580716:251527 +k1,12059:16626586,31580716:251528 +k1,12059:18258301,31580716:251527 +k1,12059:19602313,31580716:251527 +k1,12059:20209700,31580716:251527 +k1,12059:23238643,31580716:251527 +k1,12059:26474681,31580716:251528 +k1,12059:27377636,31580716:251527 +k1,12059:29616870,31580716:251527 +k1,12060:32583029,31580716:0 +) +(1,12060:6630773,32445796:25952256,513147,134348 +k1,12059:8087638,32445796:189399 +k1,12059:9468481,32445796:189398 +k1,12059:10605531,32445796:189399 +k1,12059:13795824,32445796:189399 +k1,12059:15004308,32445796:189399 +k1,12059:18402349,32445796:189398 +k1,12059:21637861,32445796:189399 +k1,12059:23018705,32445796:189399 +k1,12059:24399549,32445796:189399 +k1,12059:27854606,32445796:189398 +k1,12059:29424849,32445796:189399 +k1,12059:32583029,32445796:0 +) +(1,12060:6630773,33310876:25952256,513147,134348 +k1,12059:8112482,33310876:195893 +k1,12059:11061542,33310876:195893 +k1,12059:12018963,33310876:195893 +k1,12059:13966633,33310876:195893 +k1,12059:17892180,33310876:195893 +k1,12059:21160402,33310876:195894 +k1,12059:24440419,33310876:195893 +k1,12059:25740594,33310876:195893 +k1,12059:26684253,33310876:195893 +k1,12059:30379113,33310876:195893 +k1,12059:31261168,33310876:195893 +k1,12059:32583029,33310876:0 +) +(1,12060:6630773,34175956:25952256,513147,134348 +k1,12059:7537139,34175956:247074 +k1,12059:8803299,34175956:247075 +k1,12059:12608323,34175956:247074 +k1,12059:15054785,34175956:247074 +k1,12059:16320945,34175956:247075 +k1,12059:16982814,34175956:247026 +k1,12059:20245855,34175956:247074 +k1,12059:21120764,34175956:247074 +k1,12059:22571080,34175956:247075 +k1,12059:25235777,34175956:247074 +k1,12059:26653324,34175956:247074 +k1,12059:28032861,34175956:247075 +k1,12059:30723117,34175956:247074 +k1,12060:32583029,34175956:0 +) +(1,12060:6630773,35041036:25952256,513147,134348 +k1,12059:7653255,35041036:177068 +k1,12059:9224275,35041036:177069 +k1,12059:10420428,35041036:177068 +k1,12059:14259648,35041036:177068 +k1,12059:15949942,35041036:177068 +k1,12059:16743049,35041036:177069 +k1,12059:17334938,35041036:177046 +k1,12059:18459657,35041036:177068 +k1,12059:22087851,35041036:177068 +k1,12059:25349044,35041036:177069 +k1,12059:29207925,35041036:177068 +k1,12059:32583029,35041036:0 +) +(1,12060:6630773,35906116:25952256,513147,134348 +k1,12059:12279649,35906116:198902 +k1,12059:15468302,35906116:198901 +k1,12059:18763125,35906116:198902 +k1,12059:20896649,35906116:198901 +k1,12059:23413559,35906116:198902 +k1,12059:24803906,35906116:198902 +k1,12059:27620315,35906116:198901 +k1,12059:28885488,35906116:198902 +k1,12059:30606135,35906116:198901 +k1,12059:31464329,35906116:198902 +k1,12060:32583029,35906116:0 +) +(1,12060:6630773,36771196:25952256,513147,134348 +k1,12059:9899381,36771196:263127 +k1,12059:11116057,36771196:263127 +k1,12059:12511646,36771196:263127 +k1,12059:13867258,36771196:263127 +k1,12059:15943111,36771196:263127 +k1,12059:19860525,36771196:263127 +k1,12059:21984219,36771196:263127 +k1,12059:24060072,36771196:263127 +k1,12059:26814878,36771196:263127 +k1,12059:30770303,36771196:263127 +k1,12059:32583029,36771196:0 +) +(1,12060:6630773,37636276:25952256,505283,126483 +k1,12059:9387727,37636276:265275 +k1,12059:12902932,37636276:265275 +k1,12059:15486215,37636276:265275 +k1,12059:16942935,37636276:265275 +k1,12059:18900350,37636276:265275 +k1,12059:21290302,37636276:265275 +k1,12059:25416303,37636276:265275 +k1,12059:28466203,37636276:265275 +k1,12059:29417640,37636276:265275 +k1,12059:32583029,37636276:0 +) +(1,12060:6630773,38501356:25952256,513147,126483 +k1,12059:8005062,38501356:177602 +k1,12059:9920680,38501356:177603 +k1,12059:10629779,38501356:177602 +k1,12059:11616752,38501356:177603 +k1,12059:13124735,38501356:177602 +k1,12059:13953765,38501356:177602 +k1,12059:16390394,38501356:177603 +k1,12059:19652120,38501356:177602 +k1,12059:22321402,38501356:177603 +k1,12059:25460576,38501356:177602 +k1,12059:26829624,38501356:177603 +k1,12059:31252648,38501356:177602 +k1,12059:32583029,38501356:0 +) +(1,12060:6630773,39366436:25952256,513147,134348 +k1,12059:7531416,39366436:249215 +k1,12059:9811593,39366436:249216 +k1,12059:12823151,39366436:249215 +k1,12059:16999939,39366436:249215 +k1,12059:17908446,39366436:249215 +k1,12059:19176747,39366436:249216 +k1,12059:21715790,39366436:249215 +k1,12059:24743732,39366436:249215 +k1,12059:25754475,39366436:249215 +k1,12059:27022776,39366436:249216 +k1,12059:31895556,39366436:249215 +k1,12059:32583029,39366436:0 +) +(1,12060:6630773,40231516:25952256,513147,126483 +k1,12059:8078344,40231516:256126 +k1,12059:11324879,40231516:256127 +k1,12059:14780473,40231516:256126 +k1,12059:16228044,40231516:256126 +k1,12059:17814552,40231516:256127 +k1,12059:18722106,40231516:256126 +k1,12059:20070718,40231516:256127 +k1,12059:22023571,40231516:256126 +k1,12059:25251755,40231516:256126 +k1,12059:29435455,40231516:256127 +k1,12059:30307619,40231516:256126 +k1,12059:32583029,40231516:0 +) +(1,12060:6630773,41096596:25952256,513147,134348 +g1,12059:11224191,41096596 +g1,12059:12106305,41096596 +g1,12059:13253185,41096596 +g1,12059:17161752,41096596 +g1,12059:19933269,41096596 +g1,12059:21323943,41096596 +k1,12060:32583029,41096596:7657883 +g1,12060:32583029,41096596 +) +] +(1,12065:32583029,45706769:0,0,0 +g1,12065:32583029,45706769 +) +) +] +(1,12065:6630773,47279633:25952256,485622,11795 +(1,12065:6630773,47279633:25952256,485622,11795 +(1,12065:6630773,47279633:0,0,0 +v1,12065:6630773,47279633:0,0,0 +) +g1,12065:6830002,47279633 +k1,12065:31387652,47279633:24557650 +) +) +] +(1,12065:4262630,4025873:0,0,0 +[1,12065:-473656,4025873:0,0,0 +(1,12065:-473656,-710413:0,0,0 +(1,12065:-473656,-710413:0,0,0 +g1,12065:-473656,-710413 +) +g1,12065:-473656,-710413 ) +] ) -g1,12579:10951523,25869259 -(1,12580:10951523,25869259:0,0,0 -(1,12580:10951523,25869259:0,0,0 -g1,12580:10951523,25869259 -g1,12580:10951523,25869259 -g1,12580:10951523,25869259 -g1,12580:10951523,25869259 -g1,12580:10951523,25869259 -(1,12580:10951523,25869259:0,0,0 -(1,12580:10951523,25869259:3514124,408008,104590 -(1,12580:10951523,25869259:3514124,408008,104590 -(1,12580:10951523,25869259:0,408008,104590 -r1,12804:12540780,25869259:1589257,512598,104590 -k1,12580:10951523,25869259:-1589257 -) -(1,12580:10951523,25869259:1589257,408008,104590 -k1,12580:10951523,25869259:3277 -h1,12580:12537503,25869259:0,370085,101313 -) -g1,12580:12876390,25869259 -(1,12580:12876390,25869259:0,408008,104590 -r1,12804:14465647,25869259:1589257,512598,104590 -k1,12580:12876390,25869259:-1589257 -) -(1,12580:12876390,25869259:1589257,408008,104590 -k1,12580:12876390,25869259:3277 -h1,12580:14462370,25869259:0,370085,101313 -) -) -g1,12580:14465647,25869259 -) -) -g1,12580:10951523,25869259 -g1,12580:10951523,25869259 -) -) -g1,12580:10951523,25869259 -(1,12581:10951523,25869259:0,0,0 -(1,12581:10951523,25869259:0,0,0 -g1,12581:10951523,25869259 -g1,12581:10951523,25869259 -g1,12581:10951523,25869259 -g1,12581:10951523,25869259 -g1,12581:10951523,25869259 -(1,12581:10951523,25869259:0,0,0 -(1,12581:10951523,25869259:2855420,408008,104590 -(1,12581:10951523,25869259:2855420,408008,104590 -(1,12581:10951523,25869259:0,408008,104590 -r1,12804:13806943,25869259:2855420,512598,104590 -k1,12581:10951523,25869259:-2855420 -) -(1,12581:10951523,25869259:2855420,408008,104590 -k1,12581:10951523,25869259:3277 -h1,12581:13803666,25869259:0,370085,101313 -) -) -g1,12581:13806943,25869259 -) -) -g1,12581:10951523,25869259 -g1,12581:10951523,25869259 -) -) -g1,12581:10951523,25869259 -(1,12582:10951523,25869259:0,0,0 -(1,12582:10951523,25869259:0,0,0 -g1,12582:10951523,25869259 -g1,12582:10951523,25869259 -g1,12582:10951523,25869259 -g1,12582:10951523,25869259 -g1,12582:10951523,25869259 -(1,12582:10951523,25869259:0,0,0 -(1,12582:10951523,25869259:6040272,454754,113835 -(1,12582:10951523,25869259:6040272,454754,113835 -g1,12582:12422545,25869259 -g1,12582:13982630,25869259 -$1,12582:13982630,25869259 -$1,12582:14590149,25869259 -g1,12582:14769456,25869259 -(1,12582:14769456,25869259:0,408008,104590 -r1,12804:16991795,25869259:2222339,512598,104590 -k1,12582:14769456,25869259:-2222339 -) -(1,12582:14769456,25869259:2222339,408008,104590 -k1,12582:14769456,25869259:3277 -h1,12582:16988518,25869259:0,370085,101313 -) -) -g1,12582:16991795,25869259 -) -) -g1,12582:10951523,25869259 -g1,12582:10951523,25869259 -) -) -g1,12582:10951523,25869259 -g1,12583:10951523,25869259 -g1,12583:10951523,25869259 -g1,12583:10951523,25869259 -g1,12583:10951523,25869259 -g1,12583:10951523,25869259 -g1,12583:10951523,25869259 -g1,12584:10951523,25869259 -g1,12584:10951523,25869259 -g1,12584:10951523,25869259 -g1,12584:10951523,25869259 -g1,12584:10951523,25869259 -g1,12584:10951523,25869259 -g1,12585:10951523,25869259 -g1,12585:10951523,25869259 -g1,12585:10951523,25869259 -g1,12585:10951523,25869259 -g1,12585:10951523,25869259 -g1,12585:10951523,25869259 -g1,12586:10951523,25869259 -g1,12586:10951523,25869259 -g1,12586:10951523,25869259 -g1,12586:10951523,25869259 -g1,12586:10951523,25869259 -g1,12586:10951523,25869259 -g1,12587:10951523,25869259 -g1,12587:10951523,25869259 -g1,12587:10951523,25869259 -g1,12587:10951523,25869259 -g1,12587:10951523,25869259 -g1,12587:10951523,25869259 -g1,12588:10951523,25869259 -g1,12588:10951523,25869259 -g1,12588:10951523,25869259 -g1,12588:10951523,25869259 -g1,12588:10951523,25869259 -g1,12588:10951523,25869259 -g1,12589:10951523,25869259 -g1,12589:10951523,25869259 -g1,12589:10951523,25869259 -g1,12589:10951523,25869259 -g1,12589:10951523,25869259 -g1,12589:10951523,25869259 -g1,12590:10951523,25869259 -g1,12590:10951523,25869259 -g1,12590:10951523,25869259 -g1,12590:10951523,25869259 -g1,12590:10951523,25869259 -g1,12590:10951523,25869259 -g1,12591:10951523,25869259 -g1,12591:10951523,25869259 -g1,12591:10951523,25869259 -g1,12591:10951523,25869259 -g1,12591:10951523,25869259 -g1,12591:10951523,25869259 -g1,12592:10951523,25869259 -g1,12592:10951523,25869259 -g1,12592:10951523,25869259 -g1,12592:10951523,25869259 -g1,12592:10951523,25869259 -g1,12592:10951523,25869259 -g1,12593:10951523,25869259 -g1,12593:10951523,25869259 -) -g1,12593:10951523,25869259 -) -) -g1,12595:31378566,32091753 -k1,12595:32583029,32091753:1204463 -) -v1,12598:6630773,33588601:0,393216,0 -(1,12599:6630773,35830598:25952256,2635213,0 -g1,12599:6630773,35830598 -g1,12599:6303093,35830598 -r1,12804:6401397,35830598:98304,2635213,0 -g1,12599:6600626,35830598 -g1,12599:6797234,35830598 -[1,12599:6797234,35830598:25785795,2635213,0 -(1,12599:6797234,34021139:25785795,825754,196608 -(1,12598:6797234,34021139:0,825754,196608 -r1,12804:7890375,34021139:1093141,1022362,196608 -k1,12598:6797234,34021139:-1093141 -) -(1,12598:6797234,34021139:1093141,825754,196608 -) -k1,12598:8048841,34021139:158466 -k1,12598:9366770,34021139:327680 -k1,12598:13050418,34021139:158466 -k1,12598:15815250,34021139:158465 -k1,12598:17367667,34021139:158466 -k1,12598:19222860,34021139:158466 -k1,12598:22595867,34021139:158466 -k1,12598:23945778,34021139:158466 -k1,12598:27094651,34021139:158465 -k1,12598:30037742,34021139:158466 -k1,12598:30957736,34021139:158466 -k1,12599:32583029,34021139:0 -) -(1,12599:6797234,34862627:25785795,513147,134348 -k1,12598:7969532,34862627:182049 -k1,12598:9660220,34862627:182049 -k1,12598:14668341,34862627:182050 -k1,12598:16041835,34862627:182049 -k1,12598:17316369,34862627:182049 -k1,12598:19137473,34862627:182049 -k1,12598:19970950,34862627:182049 -k1,12598:22521471,34862627:182050 -(1,12598:22521471,34862627:0,459977,115847 -r1,12804:23583160,34862627:1061689,575824,115847 -k1,12598:22521471,34862627:-1061689 -) -(1,12598:22521471,34862627:1061689,459977,115847 -k1,12598:22521471,34862627:3277 -h1,12598:23579883,34862627:0,411205,112570 -) -k1,12598:23765209,34862627:182049 -k1,12598:25659714,34862627:182049 -k1,12598:27697087,34862627:182049 -k1,12598:28562022,34862627:182050 -k1,12598:30731778,34862627:182049 -k1,12598:31931601,34862627:182049 -k1,12598:32583029,34862627:0 -) -(1,12599:6797234,35704115:25785795,513147,126483 -g1,12598:8698433,35704115 -g1,12598:10287025,35704115 -g1,12598:11145546,35704115 -g1,12598:12803606,35704115 -k1,12599:32583029,35704115:17162570 -g1,12599:32583029,35704115 -) -] -g1,12599:32583029,35830598 -) -h1,12599:6630773,35830598:0,0,0 -v1,12601:6630773,37196374:0,393216,0 -(1,12804:6630773,43583211:25952256,6780053,0 -g1,12804:6630773,43583211 -g1,12804:6303093,43583211 -r1,12804:6401397,43583211:98304,6780053,0 -g1,12804:6600626,43583211 -g1,12804:6797234,43583211 -[1,12804:6797234,43583211:25785795,6780053,0 -(1,12603:6797234,37558447:25785795,755289,196608 -(1,12601:6797234,37558447:0,755289,196608 -r1,12804:8134168,37558447:1336934,951897,196608 -k1,12601:6797234,37558447:-1336934 -) -(1,12601:6797234,37558447:1336934,755289,196608 -) -k1,12601:8398993,37558447:264825 -k1,12601:8726673,37558447:327680 -k1,12601:8726673,37558447:0 -k1,12602:10188185,37558447:264825 -k1,12602:12742838,37558447:264825 -k1,12602:15786390,37558447:264825 -k1,12602:16812743,37558447:264825 -k1,12602:19065275,37558447:264825 -k1,12602:21264723,37558447:264825 -k1,12602:24555345,37558447:264825 -k1,12602:27191918,37558447:264825 -k1,12602:28475828,37558447:264825 -k1,12602:29830517,37558447:264825 -k1,12603:32583029,37558447:0 -) -(1,12603:6797234,38399935:25785795,513147,134348 -k1,12602:8417097,38399935:178726 -k1,12602:11576400,38399935:178726 -k1,12602:12774211,38399935:178726 -k1,12602:14342300,38399935:178726 -k1,12602:15172454,38399935:178726 -k1,12602:17236651,38399935:178726 -k1,12602:18434462,38399935:178726 -k1,12602:20600896,38399935:178727 -k1,12602:21986795,38399935:178726 -k1,12602:22852994,38399935:178726 -k1,12602:23856818,38399935:178726 -k1,12602:25721785,38399935:178726 -k1,12602:28831936,38399935:178726 -k1,12602:32227169,38399935:178726 -k1,12602:32583029,38399935:0 -) -(1,12603:6797234,39241423:25785795,513147,134348 -k1,12602:9114025,39241423:199323 -k1,12602:10480544,39241423:199323 -k1,12602:11307702,39241423:199323 -k1,12602:13108725,39241423:199323 -k1,12602:15005430,39241423:199323 -k1,12602:16223838,39241423:199323 -k1,12602:17978331,39241423:199324 -k1,12602:18836946,39241423:199323 -k1,12602:20055354,39241423:199323 -k1,12602:22544505,39241423:199323 -k1,12602:25522555,39241423:199323 -k1,12602:26483406,39241423:199323 -k1,12602:28670436,39241423:199323 -k1,12602:29557232,39241423:199323 -k1,12602:32583029,39241423:0 -) -(1,12603:6797234,40082911:25785795,513147,134348 -k1,12602:9025988,40082911:185341 -k1,12602:9827368,40082911:185342 -k1,12602:11750724,40082911:185341 -k1,12602:13330016,40082911:185341 -k1,12602:14534443,40082911:185342 -k1,12602:16457799,40082911:185341 -k1,12602:17302432,40082911:185341 -k1,12602:18506859,40082911:185342 -k1,12602:21580372,40082911:185341 -k1,12602:24461210,40082911:185342 -(1,12602:24668304,40082911:0,452978,115847 -r1,12804:26081705,40082911:1413401,568825,115847 -k1,12602:24668304,40082911:-1413401 -) -(1,12602:24668304,40082911:1413401,452978,115847 -k1,12602:24668304,40082911:3277 -h1,12602:26078428,40082911:0,411205,112570 -) -k1,12602:26267046,40082911:185341 -k1,12602:27068425,40082911:185341 -k1,12602:28457008,40082911:185342 -k1,12602:31510860,40082911:185341 -k1,12602:32583029,40082911:0 -) -(1,12603:6797234,40924399:25785795,513147,115847 -k1,12602:7496832,40924399:168101 -k1,12602:8731205,40924399:168102 -k1,12602:11282195,40924399:168101 -k1,12602:13017917,40924399:168101 -k1,12602:13600831,40924399:168071 -k1,12602:15324101,40924399:168101 -(1,12602:15324101,40924399:0,452978,115847 -r1,12804:17440926,40924399:2116825,568825,115847 -k1,12602:15324101,40924399:-2116825 -) -(1,12602:15324101,40924399:2116825,452978,115847 -k1,12602:15324101,40924399:3277 -h1,12602:17437649,40924399:0,411205,112570 -) -k1,12602:17782697,40924399:168101 -k1,12602:19147486,40924399:168102 -k1,12602:22077930,40924399:168101 -k1,12602:25271828,40924399:168101 -k1,12602:28529953,40924399:168102 -k1,12602:30727049,40924399:168101 -k1,12602:32583029,40924399:0 -) -(1,12603:6797234,41765887:25785795,513147,134348 -k1,12602:9208031,41765887:206821 -k1,12602:11067014,41765887:206820 -k1,12602:11933127,41765887:206821 -k1,12602:13159032,41765887:206820 -k1,12602:15325379,41765887:206821 -k1,12602:16215085,41765887:206821 -k1,12602:17237173,41765887:206820 -k1,12602:20670987,41765887:206821 -k1,12602:24679550,41765887:206820 -k1,12602:26077816,41765887:206821 -k1,12602:29712169,41765887:206820 -k1,12602:31773659,41765887:206821 -k1,12602:32583029,41765887:0 -) -(1,12603:6797234,42607375:25785795,513147,126483 -k1,12602:8862810,42607375:252850 -k1,12602:10948046,42607375:252849 -k1,12602:12192456,42607375:252850 -k1,12602:15207649,42607375:252850 -k1,12602:20199406,42607375:252849 -k1,12602:21111548,42607375:252850 -k1,12602:23061124,42607375:252849 -k1,12602:26098599,42607375:252850 -k1,12602:28236920,42607375:252850 -k1,12602:29481329,42607375:252849 -k1,12602:31601955,42607375:252850 -k1,12603:32583029,42607375:0 -) -(1,12603:6797234,43448863:25785795,513147,134348 -g1,12602:9590378,43448863 -g1,12602:10598977,43448863 -g1,12602:11817291,43448863 -g1,12602:13571689,43448863 -g1,12602:14430210,43448863 -g1,12602:15648524,43448863 -g1,12602:18735925,43448863 -g1,12602:21068351,43448863 -g1,12602:22524561,43448863 -g1,12602:25002477,43448863 -h1,12602:25973065,43448863:0,0,0 -g1,12602:26172294,43448863 -g1,12602:27180893,43448863 -g1,12602:28878275,43448863 -h1,12602:30073652,43448863:0,0,0 -k1,12603:32583029,43448863:2128613 -g1,12603:32583029,43448863 -) -] -g1,12804:32583029,43583211 -) -] -(1,12804:32583029,45706769:0,0,0 -g1,12804:32583029,45706769 -) -) -] -(1,12804:6630773,47279633:25952256,0,0 -h1,12804:6630773,47279633:25952256,0,0 -) -] -(1,12804:4262630,4025873:0,0,0 -[1,12804:-473656,4025873:0,0,0 -(1,12804:-473656,-710413:0,0,0 -(1,12804:-473656,-710413:0,0,0 -g1,12804:-473656,-710413 -) -g1,12804:-473656,-710413 -) -] -) -] -!34140 -}216 -!12 -{217 -[1,12804:4262630,47279633:28320399,43253760,0 -(1,12804:4262630,4025873:0,0,0 -[1,12804:-473656,4025873:0,0,0 -(1,12804:-473656,-710413:0,0,0 -(1,12804:-473656,-644877:0,0,0 -k1,12804:-473656,-644877:-65536 +] +!15030 +}194 +Input:1766:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1767:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1768:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1769:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1770:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1771:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1772:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!670 +{195 +[1,12114:4262630,47279633:28320399,43253760,0 +(1,12114:4262630,4025873:0,0,0 +[1,12114:-473656,4025873:0,0,0 +(1,12114:-473656,-710413:0,0,0 +(1,12114:-473656,-644877:0,0,0 +k1,12114:-473656,-644877:-65536 ) -(1,12804:-473656,4736287:0,0,0 -k1,12804:-473656,4736287:5209943 +(1,12114:-473656,4736287:0,0,0 +k1,12114:-473656,4736287:5209943 ) -g1,12804:-473656,-710413 +g1,12114:-473656,-710413 ) ] ) -[1,12804:6630773,47279633:25952256,43253760,0 -[1,12804:6630773,4812305:25952256,786432,0 -(1,12804:6630773,4812305:25952256,513147,126483 -(1,12804:6630773,4812305:25952256,513147,126483 -g1,12804:3078558,4812305 -[1,12804:3078558,4812305:0,0,0 -(1,12804:3078558,2439708:0,1703936,0 -k1,12804:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,12804:2537886,2439708:1179648,16384,0 +[1,12114:6630773,47279633:25952256,43253760,0 +[1,12114:6630773,4812305:25952256,786432,0 +(1,12114:6630773,4812305:25952256,513147,126483 +(1,12114:6630773,4812305:25952256,513147,126483 +g1,12114:3078558,4812305 +[1,12114:3078558,4812305:0,0,0 +(1,12114:3078558,2439708:0,1703936,0 +k1,12114:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,12114:2537886,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,12804:3078558,1915420:16384,1179648,0 +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,12114:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] ) ) ) ] -[1,12804:3078558,4812305:0,0,0 -(1,12804:3078558,2439708:0,1703936,0 -g1,12804:29030814,2439708 -g1,12804:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,12804:36151628,1915420:16384,1179648,0 +[1,12114:3078558,4812305:0,0,0 +(1,12114:3078558,2439708:0,1703936,0 +g1,12114:29030814,2439708 +g1,12114:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,12114:36151628,1915420:16384,1179648,0 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,12804:37855564,2439708:1179648,16384,0 +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,12114:37855564,2439708:1179648,16384,0 ) ) -k1,12804:3078556,2439708:-34777008 +k1,12114:3078556,2439708:-34777008 ) ] -[1,12804:3078558,4812305:0,0,0 -(1,12804:3078558,49800853:0,16384,2228224 -k1,12804:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,12804:2537886,49800853:1179648,16384,0 +[1,12114:3078558,4812305:0,0,0 +(1,12114:3078558,49800853:0,16384,2228224 +k1,12114:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,12114:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,12804:3078558,51504789:16384,1179648,0 +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,12114:3078558,51504789:16384,1179648,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 ) ] ) ) ) ] -[1,12804:3078558,4812305:0,0,0 -(1,12804:3078558,49800853:0,16384,2228224 -g1,12804:29030814,49800853 -g1,12804:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,12804:36151628,51504789:16384,1179648,0 +[1,12114:3078558,4812305:0,0,0 +(1,12114:3078558,49800853:0,16384,2228224 +g1,12114:29030814,49800853 +g1,12114:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,12114:36151628,51504789:16384,1179648,0 ) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 ) ] ) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,12804:37855564,49800853:1179648,16384,0 +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,12114:37855564,49800853:1179648,16384,0 ) ) -k1,12804:3078556,49800853:-34777008 +k1,12114:3078556,49800853:-34777008 ) -] -g1,12804:6630773,4812305 -k1,12804:19540057,4812305:11713907 -g1,12804:21162728,4812305 -g1,12804:21985204,4812305 -g1,12804:24539797,4812305 -g1,12804:25949476,4812305 -g1,12804:28728857,4812305 -g1,12804:29852144,4812305 -) -) -] -[1,12804:6630773,45706769:25952256,40108032,0 -(1,12804:6630773,45706769:25952256,40108032,0 -(1,12804:6630773,45706769:0,0,0 -g1,12804:6630773,45706769 -) -[1,12804:6630773,45706769:25952256,40108032,0 -v1,12804:6630773,6254097:0,393216,0 -(1,12804:6630773,45706769:25952256,39845888,0 -g1,12804:6630773,45706769 -g1,12804:6303093,45706769 -r1,12804:6401397,45706769:98304,39845888,0 -g1,12804:6600626,45706769 -g1,12804:6797234,45706769 -[1,12804:6797234,45706769:25785795,39845888,0 -v1,12605:6797234,6254097:0,393216,0 -(1,12620:6797234,10530278:25785795,4669397,196608 -g1,12620:6797234,10530278 -g1,12620:6797234,10530278 -g1,12620:6600626,10530278 -(1,12620:6600626,10530278:0,4669397,196608 -r1,12804:32779637,10530278:26179011,4866005,196608 -k1,12620:6600625,10530278:-26179012 -) -(1,12620:6600626,10530278:26179011,4669397,196608 -[1,12620:6797234,10530278:25785795,4472789,0 -(1,12607:6797234,6468007:25785795,410518,76021 -(1,12606:6797234,6468007:0,0,0 -g1,12606:6797234,6468007 -g1,12606:6797234,6468007 -g1,12606:6469554,6468007 -(1,12606:6469554,6468007:0,0,0 -) -g1,12606:6797234,6468007 -) -k1,12607:6797234,6468007:0 -h1,12607:9958690,6468007:0,0,0 -k1,12607:32583030,6468007:22624340 -g1,12607:32583030,6468007 -) -(1,12611:6797234,7134185:25785795,404226,76021 -(1,12609:6797234,7134185:0,0,0 -g1,12609:6797234,7134185 -g1,12609:6797234,7134185 -g1,12609:6469554,7134185 -(1,12609:6469554,7134185:0,0,0 -) -g1,12609:6797234,7134185 -) -g1,12611:7745671,7134185 -g1,12611:9010254,7134185 -h1,12611:10274837,7134185:0,0,0 -k1,12611:32583029,7134185:22308192 -g1,12611:32583029,7134185 -) -(1,12613:6797234,8455723:25785795,410518,76021 -(1,12612:6797234,8455723:0,0,0 -g1,12612:6797234,8455723 -g1,12612:6797234,8455723 -g1,12612:6469554,8455723 -(1,12612:6469554,8455723:0,0,0 -) -g1,12612:6797234,8455723 -) -k1,12613:6797234,8455723:0 -h1,12613:9958690,8455723:0,0,0 -k1,12613:32583030,8455723:22624340 -g1,12613:32583030,8455723 -) -(1,12619:6797234,9121901:25785795,410518,76021 -(1,12615:6797234,9121901:0,0,0 -g1,12615:6797234,9121901 -g1,12615:6797234,9121901 -g1,12615:6469554,9121901 -(1,12615:6469554,9121901:0,0,0 -) -g1,12615:6797234,9121901 -) -g1,12619:7745671,9121901 -g1,12619:8061817,9121901 -g1,12619:9326400,9121901 -g1,12619:14068586,9121901 -g1,12619:14384732,9121901 -g1,12619:18178480,9121901 -g1,12619:18494626,9121901 -g1,12619:18810772,9121901 -g1,12619:19126918,9121901 -g1,12619:19443064,9121901 -g1,12619:22604521,9121901 -g1,12619:22920667,9121901 -g1,12619:23236813,9121901 -g1,12619:23552959,9121901 -g1,12619:23869105,9121901 -g1,12619:24185251,9121901 -g1,12619:24501397,9121901 -h1,12619:26398271,9121901:0,0,0 -k1,12619:32583029,9121901:6184758 -g1,12619:32583029,9121901 -) -(1,12619:6797234,9788079:25785795,410518,107478 -h1,12619:6797234,9788079:0,0,0 -g1,12619:7745671,9788079 -g1,12619:8061817,9788079 -g1,12619:9326400,9788079 -g1,12619:14384731,9788079 -g1,12619:17230042,9788079 -g1,12619:17546188,9788079 -g1,12619:17862334,9788079 -g1,12619:18178480,9788079 -g1,12619:18494626,9788079 -g1,12619:18810772,9788079 -g1,12619:19126918,9788079 -g1,12619:19443064,9788079 -g1,12619:21023793,9788079 -g1,12619:21339939,9788079 -g1,12619:21656085,9788079 -g1,12619:21972231,9788079 -g1,12619:22288377,9788079 -g1,12619:22604523,9788079 -g1,12619:22920669,9788079 -g1,12619:23236815,9788079 -g1,12619:23552961,9788079 -g1,12619:23869107,9788079 -g1,12619:24185253,9788079 -g1,12619:24501399,9788079 -h1,12619:28611293,9788079:0,0,0 -k1,12619:32583029,9788079:3971736 -g1,12619:32583029,9788079 -) -(1,12619:6797234,10454257:25785795,404226,76021 -h1,12619:6797234,10454257:0,0,0 -g1,12619:7745671,10454257 -g1,12619:8061817,10454257 -g1,12619:9326400,10454257 -g1,12619:12487857,10454257 -g1,12619:12804003,10454257 -g1,12619:13120149,10454257 -g1,12619:13436295,10454257 -g1,12619:13752441,10454257 -g1,12619:14068587,10454257 -g1,12619:14384733,10454257 -g1,12619:16597753,10454257 -g1,12619:16913899,10454257 -g1,12619:17230045,10454257 -g1,12619:17546191,10454257 -g1,12619:17862337,10454257 -g1,12619:18178483,10454257 -g1,12619:18494629,10454257 -g1,12619:18810775,10454257 -g1,12619:19126921,10454257 -g1,12619:19443067,10454257 -g1,12619:21972233,10454257 -g1,12619:22288379,10454257 -g1,12619:22604525,10454257 -g1,12619:22920671,10454257 -g1,12619:23236817,10454257 -g1,12619:23552963,10454257 -g1,12619:23869109,10454257 -g1,12619:24185255,10454257 -g1,12619:24501401,10454257 -h1,12619:26714421,10454257:0,0,0 -k1,12619:32583029,10454257:5868608 -g1,12619:32583029,10454257 -) -] -) -g1,12620:32583029,10530278 -g1,12620:6797234,10530278 -g1,12620:6797234,10530278 -g1,12620:32583029,10530278 -g1,12620:32583029,10530278 -) -h1,12620:6797234,10726886:0,0,0 -(1,12624:6797234,12505988:25785795,513147,134348 -h1,12623:6797234,12505988:983040,0,0 -k1,12623:9009789,12505988:275966 -k1,12623:11131904,12505988:275966 -k1,12623:12938136,12505988:275966 -k1,12623:13865530,12505988:275966 -k1,12623:17074232,12505988:275966 -k1,12623:19718670,12505988:275967 -k1,12623:21013721,12505988:275966 -k1,12623:24221112,12505988:275966 -k1,12623:25156370,12505988:275966 -k1,12623:27129063,12505988:275966 -k1,12623:30293201,12505988:275966 -k1,12623:32583029,12505988:0 -) -(1,12624:6797234,13347476:25785795,513147,134348 -k1,12623:8690515,13347476:195243 -k1,12623:10621151,13347476:195243 -k1,12623:11231233,13347476:195239 -k1,12623:15527064,13347476:195243 -k1,12623:16350142,13347476:195243 -k1,12623:19350326,13347476:195243 -k1,12623:21243607,13347476:195243 -k1,12623:24419427,13347476:195243 -k1,12623:26602377,13347476:195243 -k1,12623:28732243,13347476:195243 -k1,12623:29543524,13347476:195243 -k1,12623:31900144,13347476:195243 -k1,12623:32583029,13347476:0 -) -(1,12624:6797234,14188964:25785795,513147,134348 -k1,12623:9594256,14188964:216870 -k1,12623:11480982,14188964:216869 -k1,12623:12716937,14188964:216870 -k1,12623:14464072,14188964:216869 -k1,12623:15332370,14188964:216870 -k1,12623:18668097,14188964:216869 -k1,12623:21088943,14188964:216870 -k1,12623:23703119,14188964:216869 -k1,12623:26873697,14188964:216870 -k1,12623:28658187,14188964:216869 -k1,12623:30514112,14188964:216870 -k1,12623:31835263,14188964:216869 -k1,12623:32583029,14188964:0 -) -(1,12624:6797234,15030452:25785795,513147,134348 -k1,12623:9111790,15030452:163664 -k1,12623:10093343,15030452:163664 -k1,12623:11650958,15030452:163664 -k1,12623:12946429,15030452:163664 -k1,12623:14812063,15030452:163664 -k1,12623:15390535,15030452:163629 -k1,12623:17513725,15030452:163664 -k1,12623:18545741,15030452:163664 -k1,12623:19813687,15030452:163664 -k1,12623:21069836,15030452:163664 -(1,12623:21069836,15030452:0,452978,115847 -r1,12804:22834949,15030452:1765113,568825,115847 -k1,12623:21069836,15030452:-1765113 -) -(1,12623:21069836,15030452:1765113,452978,115847 -k1,12623:21069836,15030452:3277 -h1,12623:22831672,15030452:0,411205,112570 -) -k1,12623:22998613,15030452:163664 -k1,12623:23813705,15030452:163664 -k1,12623:26345840,15030452:163664 -k1,12623:28322230,15030452:163664 -k1,12623:29303783,15030452:163664 -k1,12623:30670688,15030452:163664 -k1,12623:32583029,15030452:0 -) -(1,12624:6797234,15871940:25785795,505283,134348 -k1,12623:7676877,15871940:193481 -k1,12623:8226217,15871940:193480 -k1,12623:9808406,15871940:193481 -k1,12623:11401736,15871940:193481 -k1,12623:12463568,15871940:193480 -k1,12623:13756743,15871940:193481 -(1,12623:13756743,15871940:0,452978,115847 -r1,12804:15521856,15871940:1765113,568825,115847 -k1,12623:13756743,15871940:-1765113 -) -(1,12623:13756743,15871940:1765113,452978,115847 -k1,12623:13756743,15871940:3277 -h1,12623:15518579,15871940:0,411205,112570 -) -k1,12623:15715337,15871940:193481 -k1,12623:17302768,15871940:193480 -k1,12623:19909285,15871940:193481 -k1,12623:21387272,15871940:193481 -k1,12623:23883688,15871940:193481 -k1,12623:25096253,15871940:193480 -k1,12623:27448490,15871940:193481 -k1,12623:28293399,15871940:193481 -k1,12623:29465332,15871940:193480 -k1,12623:30429516,15871940:193481 -k1,12623:32583029,15871940:0 -) -(1,12624:6797234,16713428:25785795,513147,126483 -k1,12623:8369486,16713428:145533 -k1,12623:9174312,16713428:145534 -k1,12623:10338930,16713428:145533 -k1,12623:13415888,16713428:145533 -k1,12623:14228578,16713428:145534 -(1,12623:14228578,16713428:0,459977,115847 -r1,12804:15290267,16713428:1061689,575824,115847 -k1,12623:14228578,16713428:-1061689 -) -(1,12623:14228578,16713428:1061689,459977,115847 -k1,12623:14228578,16713428:3277 -h1,12623:15286990,16713428:0,411205,112570 -) -k1,12623:15609470,16713428:145533 -k1,12623:17368499,16713428:145533 -k1,12623:18200195,16713428:145534 -k1,12623:19116431,16713428:145533 -k1,12623:22097051,16713428:145533 -k1,12623:23110937,16713428:145534 -k1,12623:24643212,16713428:145533 -k1,12623:25404783,16713428:145533 -k1,12623:27337484,16713428:145534 -k1,12623:28655456,16713428:145533 -k1,12623:32583029,16713428:0 -) -(1,12624:6797234,17554916:25785795,513147,134348 -k1,12623:7632555,17554916:176029 -k1,12623:8827670,17554916:176030 -(1,12623:8827670,17554916:0,459977,115847 -r1,12804:9889359,17554916:1061689,575824,115847 -k1,12623:8827670,17554916:-1061689 -) -(1,12623:8827670,17554916:1061689,459977,115847 -k1,12623:8827670,17554916:3277 -h1,12623:9886082,17554916:0,411205,112570 -) -k1,12623:10065388,17554916:176029 -k1,12623:12200943,17554916:176029 -k1,12623:13568417,17554916:176029 -k1,12623:15357288,17554916:176030 -k1,12623:16184745,17554916:176029 -k1,12623:17379859,17554916:176029 -k1,12623:19603888,17554916:176029 -k1,12623:20799003,17554916:176030 -k1,12623:22310656,17554916:176029 -k1,12623:23145977,17554916:176029 -k1,12623:26333385,17554916:176029 -k1,12623:27528500,17554916:176030 -k1,12623:30922347,17554916:176029 -k1,12624:32583029,17554916:0 -k1,12624:32583029,17554916:0 -) -v1,12626:6797234,19020932:0,393216,0 -(1,12651:6797234,31993411:25785795,13365695,196608 -g1,12651:6797234,31993411 -g1,12651:6797234,31993411 -g1,12651:6600626,31993411 -(1,12651:6600626,31993411:0,13365695,196608 -r1,12804:32779637,31993411:26179011,13562303,196608 -k1,12651:6600625,31993411:-26179012 -) -(1,12651:6600626,31993411:26179011,13365695,196608 -[1,12651:6797234,31993411:25785795,13169087,0 -(1,12628:6797234,19234842:25785795,410518,107478 -(1,12627:6797234,19234842:0,0,0 -g1,12627:6797234,19234842 -g1,12627:6797234,19234842 -g1,12627:6469554,19234842 -(1,12627:6469554,19234842:0,0,0 -) -g1,12627:6797234,19234842 -) -k1,12628:6797234,19234842:0 -g1,12628:9642546,19234842 -g1,12628:12171712,19234842 -g1,12628:12804004,19234842 -g1,12628:14700879,19234842 -g1,12628:17862336,19234842 -g1,12628:18494628,19234842 -g1,12628:20707648,19234842 -g1,12628:23236814,19234842 -g1,12628:23869106,19234842 -h1,12628:24501398,19234842:0,0,0 -k1,12628:32583029,19234842:8081631 -g1,12628:32583029,19234842 -) -(1,12650:6797234,19901020:25785795,410518,76021 -(1,12630:6797234,19901020:0,0,0 -g1,12630:6797234,19901020 -g1,12630:6797234,19901020 -g1,12630:6469554,19901020 -(1,12630:6469554,19901020:0,0,0 -) -g1,12630:6797234,19901020 -) -g1,12650:7745671,19901020 -g1,12650:8061817,19901020 -g1,12650:8694109,19901020 -g1,12650:12804003,19901020 -g1,12650:13436295,19901020 -g1,12650:15333169,19901020 -g1,12650:16597752,19901020 -g1,12650:18494626,19901020 -g1,12650:20707646,19901020 -h1,12650:21972229,19901020:0,0,0 -k1,12650:32583029,19901020:10610800 -g1,12650:32583029,19901020 -) -(1,12650:6797234,20567198:25785795,410518,76021 -h1,12650:6797234,20567198:0,0,0 -g1,12650:7745671,20567198 -g1,12650:8061817,20567198 -g1,12650:8694109,20567198 -g1,12650:11855566,20567198 -g1,12650:12171712,20567198 -g1,12650:12487858,20567198 -g1,12650:12804004,20567198 -g1,12650:13436296,20567198 -g1,12650:15333170,20567198 -g1,12650:16597753,20567198 -g1,12650:18810773,20567198 -g1,12650:20391502,20567198 -g1,12650:22288376,20567198 -h1,12650:23236813,20567198:0,0,0 -k1,12650:32583029,20567198:9346216 -g1,12650:32583029,20567198 -) -(1,12650:6797234,21233376:25785795,410518,76021 -h1,12650:6797234,21233376:0,0,0 -g1,12650:7745671,21233376 -g1,12650:8061817,21233376 -g1,12650:8694109,21233376 -g1,12650:11223275,21233376 -g1,12650:11539421,21233376 -g1,12650:11855567,21233376 -g1,12650:12171713,21233376 -g1,12650:12487859,21233376 -g1,12650:12804005,21233376 -g1,12650:13436297,21233376 -g1,12650:15333171,21233376 -g1,12650:16597754,21233376 -g1,12650:18810774,21233376 -g1,12650:20391503,21233376 -g1,12650:21656086,21233376 -h1,12650:22604523,21233376:0,0,0 -k1,12650:32583029,21233376:9978506 -g1,12650:32583029,21233376 -) -(1,12650:6797234,21899554:25785795,410518,31456 -h1,12650:6797234,21899554:0,0,0 -g1,12650:7745671,21899554 -g1,12650:8061817,21899554 -g1,12650:8694109,21899554 -g1,12650:10274838,21899554 -g1,12650:10590984,21899554 -g1,12650:10907130,21899554 -g1,12650:11223276,21899554 -g1,12650:11539422,21899554 -g1,12650:11855568,21899554 -g1,12650:12171714,21899554 -g1,12650:12487860,21899554 -g1,12650:12804006,21899554 -g1,12650:13436298,21899554 -g1,12650:14700881,21899554 -h1,12650:15017027,21899554:0,0,0 -k1,12650:32583029,21899554:17566002 -g1,12650:32583029,21899554 -) -(1,12650:6797234,22565732:25785795,410518,76021 -h1,12650:6797234,22565732:0,0,0 -g1,12650:7745671,22565732 -g1,12650:8061817,22565732 -g1,12650:8694109,22565732 -g1,12650:13436295,22565732 -g1,12650:15333169,22565732 -g1,12650:16597752,22565732 -g1,12650:18810772,22565732 -g1,12650:20707646,22565732 -g1,12650:22604520,22565732 -h1,12650:23552957,22565732:0,0,0 -k1,12650:32583029,22565732:9030072 -g1,12650:32583029,22565732 -) -(1,12650:6797234,23231910:25785795,410518,107478 -h1,12650:6797234,23231910:0,0,0 -g1,12650:7745671,23231910 -g1,12650:8061817,23231910 -g1,12650:8694109,23231910 -g1,12650:10907129,23231910 -g1,12650:11223275,23231910 -g1,12650:11539421,23231910 -g1,12650:11855567,23231910 -g1,12650:12171713,23231910 -g1,12650:12487859,23231910 -g1,12650:12804005,23231910 -g1,12650:13436297,23231910 -g1,12650:14700880,23231910 -g1,12650:16597754,23231910 -g1,12650:17230046,23231910 -h1,12650:17546192,23231910:0,0,0 -k1,12650:32583029,23231910:15036837 -g1,12650:32583029,23231910 -) -(1,12650:6797234,23898088:25785795,410518,101187 -h1,12650:6797234,23898088:0,0,0 -g1,12650:7745671,23898088 -g1,12650:8061817,23898088 -g1,12650:8694109,23898088 -g1,12650:9642546,23898088 -g1,12650:9958692,23898088 -g1,12650:10274838,23898088 -g1,12650:10590984,23898088 -g1,12650:10907130,23898088 -g1,12650:11223276,23898088 -g1,12650:11539422,23898088 -g1,12650:11855568,23898088 -g1,12650:12171714,23898088 -g1,12650:12487860,23898088 -g1,12650:12804006,23898088 -g1,12650:14700880,23898088 -g1,12650:15649317,23898088 -h1,12650:15965463,23898088:0,0,0 -k1,12650:32583029,23898088:16617566 -g1,12650:32583029,23898088 -) -(1,12650:6797234,24564266:25785795,410518,101187 -h1,12650:6797234,24564266:0,0,0 -g1,12650:7745671,24564266 -g1,12650:8061817,24564266 -g1,12650:8377963,24564266 -g1,12650:9642546,24564266 -g1,12650:10590983,24564266 -g1,12650:10907129,24564266 -g1,12650:11223275,24564266 -g1,12650:11855567,24564266 -g1,12650:13120150,24564266 -g1,12650:15333170,24564266 -g1,12650:16913899,24564266 -g1,12650:19126919,24564266 -g1,12650:21023793,24564266 -h1,12650:21972230,24564266:0,0,0 -k1,12650:32583029,24564266:10610799 -g1,12650:32583029,24564266 -) -(1,12650:6797234,25230444:25785795,410518,101187 -h1,12650:6797234,25230444:0,0,0 -g1,12650:7745671,25230444 -g1,12650:8061817,25230444 -g1,12650:8377963,25230444 -g1,12650:9642546,25230444 -g1,12650:11855566,25230444 -g1,12650:13120149,25230444 -g1,12650:15017023,25230444 -g1,12650:16597752,25230444 -h1,12650:17862335,25230444:0,0,0 -k1,12650:32583029,25230444:14720694 -g1,12650:32583029,25230444 -) -(1,12650:6797234,25896622:25785795,410518,101187 -h1,12650:6797234,25896622:0,0,0 -g1,12650:7745671,25896622 -g1,12650:8061817,25896622 -g1,12650:8377963,25896622 -g1,12650:9642546,25896622 -g1,12650:11855566,25896622 -g1,12650:13120149,25896622 -g1,12650:15017023,25896622 -g1,12650:15649315,25896622 -h1,12650:15965461,25896622:0,0,0 -k1,12650:32583029,25896622:16617568 -g1,12650:32583029,25896622 -) -(1,12650:6797234,26562800:25785795,410518,31456 -h1,12650:6797234,26562800:0,0,0 -g1,12650:7745671,26562800 -g1,12650:8061817,26562800 -g1,12650:8377963,26562800 -g1,12650:9642546,26562800 -g1,12650:10907129,26562800 -g1,12650:11223275,26562800 -g1,12650:11855567,26562800 -g1,12650:13120150,26562800 -k1,12650:13120150,26562800:0 -h1,12650:14700878,26562800:0,0,0 -k1,12650:32583030,26562800:17882152 -g1,12650:32583030,26562800 -) -(1,12650:6797234,27228978:25785795,410518,31456 -h1,12650:6797234,27228978:0,0,0 -g1,12650:7745671,27228978 -g1,12650:8061817,27228978 -g1,12650:8377963,27228978 -g1,12650:9642546,27228978 -g1,12650:11223275,27228978 -g1,12650:11855567,27228978 -g1,12650:13120150,27228978 -h1,12650:13436296,27228978:0,0,0 -k1,12650:32583028,27228978:19146732 -g1,12650:32583028,27228978 -) -(1,12650:6797234,27895156:25785795,410518,31456 -h1,12650:6797234,27895156:0,0,0 -g1,12650:7745671,27895156 -g1,12650:8061817,27895156 -g1,12650:8694109,27895156 -g1,12650:12487857,27895156 -g1,12650:12804003,27895156 -g1,12650:13436295,27895156 -g1,12650:14700878,27895156 -h1,12650:15333169,27895156:0,0,0 -k1,12650:32583029,27895156:17249860 -g1,12650:32583029,27895156 -) -(1,12650:6797234,28561334:25785795,410518,76021 -h1,12650:6797234,28561334:0,0,0 -g1,12650:7745671,28561334 -g1,12650:8061817,28561334 -g1,12650:8694109,28561334 -g1,12650:11223275,28561334 -g1,12650:11539421,28561334 -g1,12650:11855567,28561334 -g1,12650:12171713,28561334 -g1,12650:12487859,28561334 -g1,12650:12804005,28561334 -g1,12650:13436297,28561334 -g1,12650:15333171,28561334 -h1,12650:17230045,28561334:0,0,0 -k1,12650:32583029,28561334:15352984 -g1,12650:32583029,28561334 -) -(1,12650:6797234,29227512:25785795,410518,107478 -h1,12650:6797234,29227512:0,0,0 -g1,12650:7745671,29227512 -g1,12650:8061817,29227512 -g1,12650:8694109,29227512 -g1,12650:10274838,29227512 -g1,12650:10590984,29227512 -g1,12650:10907130,29227512 -g1,12650:11223276,29227512 -g1,12650:11539422,29227512 -g1,12650:11855568,29227512 -g1,12650:12171714,29227512 -g1,12650:12487860,29227512 -g1,12650:12804006,29227512 -g1,12650:13436298,29227512 -g1,12650:16281609,29227512 -g1,12650:19759212,29227512 -g1,12650:20391504,29227512 -g1,12650:21972233,29227512 -g1,12650:22604525,29227512 -g1,12650:23236817,29227512 -g1,12650:23869109,29227512 -g1,12650:26082129,29227512 -g1,12650:27662858,29227512 -g1,12650:28295150,29227512 -h1,12650:29875878,29227512:0,0,0 -k1,12650:32583029,29227512:2707151 -g1,12650:32583029,29227512 -) -(1,12650:6797234,29893690:25785795,410518,107478 -h1,12650:6797234,29893690:0,0,0 -g1,12650:7745671,29893690 -g1,12650:8061817,29893690 -g1,12650:8694109,29893690 -g1,12650:10590983,29893690 -g1,12650:10907129,29893690 -g1,12650:11223275,29893690 -g1,12650:11539421,29893690 -g1,12650:11855567,29893690 -g1,12650:12171713,29893690 -g1,12650:12487859,29893690 -g1,12650:12804005,29893690 -g1,12650:15649316,29893690 -g1,12650:18494628,29893690 -g1,12650:21656086,29893690 -g1,12650:21972232,29893690 -g1,12650:24817543,29893690 -g1,12650:26398272,29893690 -g1,12650:27030564,29893690 -g1,12650:27662856,29893690 -g1,12650:28295148,29893690 -h1,12650:29875876,29893690:0,0,0 -k1,12650:32583029,29893690:2707153 -g1,12650:32583029,29893690 -) -(1,12650:6797234,30559868:25785795,410518,31456 -h1,12650:6797234,30559868:0,0,0 -g1,12650:7745671,30559868 -g1,12650:8061817,30559868 -g1,12650:8694109,30559868 -g1,12650:10590983,30559868 -g1,12650:10907129,30559868 -g1,12650:11223275,30559868 -g1,12650:11539421,30559868 -g1,12650:11855567,30559868 -g1,12650:12171713,30559868 -g1,12650:12487859,30559868 -g1,12650:12804005,30559868 -g1,12650:17546192,30559868 -g1,12650:18494629,30559868 -g1,12650:20075358,30559868 -g1,12650:21023795,30559868 -g1,12650:21339941,30559868 -g1,12650:21972233,30559868 -h1,12650:25133690,30559868:0,0,0 -k1,12650:32583029,30559868:7449339 -g1,12650:32583029,30559868 -) -(1,12650:6797234,31226046:25785795,410518,76021 -h1,12650:6797234,31226046:0,0,0 -g1,12650:7745671,31226046 -g1,12650:8061817,31226046 -g1,12650:8377963,31226046 -g1,12650:9642546,31226046 -g1,12650:11223275,31226046 -g1,12650:11855567,31226046 -g1,12650:13120150,31226046 -g1,12650:15333170,31226046 -g1,12650:15965462,31226046 -g1,12650:16913899,31226046 -g1,12650:17546191,31226046 -g1,12650:18494628,31226046 -g1,12650:19443065,31226046 -h1,12650:20391502,31226046:0,0,0 -k1,12650:32583029,31226046:12191527 -g1,12650:32583029,31226046 -) -(1,12650:6797234,31892224:25785795,410518,101187 -h1,12650:6797234,31892224:0,0,0 -g1,12650:7745671,31892224 -g1,12650:8061817,31892224 -g1,12650:8377963,31892224 -g1,12650:9642546,31892224 -g1,12650:11855566,31892224 -g1,12650:13120149,31892224 -g1,12650:15333169,31892224 -g1,12650:15965461,31892224 -g1,12650:16597753,31892224 -g1,12650:17230045,31892224 -g1,12650:17862337,31892224 -g1,12650:18494629,31892224 -h1,12650:19443066,31892224:0,0,0 -k1,12650:32583029,31892224:13139963 -g1,12650:32583029,31892224 -) -] -) -g1,12651:32583029,31993411 -g1,12651:6797234,31993411 -g1,12651:6797234,31993411 -g1,12651:32583029,31993411 -g1,12651:32583029,31993411 -) -h1,12651:6797234,32190019:0,0,0 -(1,12655:6797234,33969120:25785795,513147,115847 -h1,12654:6797234,33969120:983040,0,0 -k1,12654:9964557,33969120:241796 -(1,12654:9964557,33969120:0,452978,115847 -r1,12804:11377958,33969120:1413401,568825,115847 -k1,12654:9964557,33969120:-1413401 -) -(1,12654:9964557,33969120:1413401,452978,115847 -k1,12654:9964557,33969120:3277 -h1,12654:11374681,33969120:0,411205,112570 -) -k1,12654:11619754,33969120:241796 -k1,12654:12729902,33969120:241796 -k1,12654:14237854,33969120:241796 -k1,12654:15498735,33969120:241796 -k1,12654:18436027,33969120:241796 -k1,12654:19777517,33969120:241796 -k1,12654:21303818,33969120:241795 -k1,12654:24324341,33969120:241796 -k1,12654:25585222,33969120:241796 -k1,12654:27507361,33969120:241796 -k1,12654:28617509,33969120:241796 -k1,12654:30670720,33969120:241796 -k1,12654:31563944,33969120:241796 -k1,12655:32583029,33969120:0 -) -(1,12655:6797234,34810608:25785795,505283,134348 -(1,12654:6797234,34810608:0,459977,115847 -r1,12804:7858923,34810608:1061689,575824,115847 -k1,12654:6797234,34810608:-1061689 -) -(1,12654:6797234,34810608:1061689,459977,115847 -k1,12654:6797234,34810608:3277 -h1,12654:7855646,34810608:0,411205,112570 -) -g1,12654:8058152,34810608 -k1,12655:32583029,34810608:22391680 -g1,12655:32583029,34810608 -) -v1,12657:6797234,36276625:0,393216,0 -(1,12664:6797234,37264191:25785795,1380782,196608 -g1,12664:6797234,37264191 -g1,12664:6797234,37264191 -g1,12664:6600626,37264191 -(1,12664:6600626,37264191:0,1380782,196608 -r1,12804:32779637,37264191:26179011,1577390,196608 -k1,12664:6600625,37264191:-26179012 -) -(1,12664:6600626,37264191:26179011,1380782,196608 -[1,12664:6797234,37264191:25785795,1184174,0 -(1,12659:6797234,36490535:25785795,410518,76021 -(1,12658:6797234,36490535:0,0,0 -g1,12658:6797234,36490535 -g1,12658:6797234,36490535 -g1,12658:6469554,36490535 -(1,12658:6469554,36490535:0,0,0 -) -g1,12658:6797234,36490535 -) -k1,12659:6797234,36490535:0 -h1,12659:10907128,36490535:0,0,0 -k1,12659:32583028,36490535:21675900 -g1,12659:32583028,36490535 -) -(1,12663:6797234,37156713:25785795,410518,107478 -(1,12661:6797234,37156713:0,0,0 -g1,12661:6797234,37156713 -g1,12661:6797234,37156713 -g1,12661:6469554,37156713 -(1,12661:6469554,37156713:0,0,0 -) -g1,12661:6797234,37156713 -) -g1,12663:7745671,37156713 -g1,12663:8061817,37156713 -g1,12663:10907128,37156713 -g1,12663:14384731,37156713 -g1,12663:15017023,37156713 -g1,12663:16597752,37156713 -g1,12663:17230044,37156713 -g1,12663:17862336,37156713 -g1,12663:18494628,37156713 -g1,12663:20707648,37156713 -g1,12663:22288377,37156713 -g1,12663:22920669,37156713 -h1,12663:24501397,37156713:0,0,0 -k1,12663:32583029,37156713:8081632 -g1,12663:32583029,37156713 -) -] -) -g1,12664:32583029,37264191 -g1,12664:6797234,37264191 -g1,12664:6797234,37264191 -g1,12664:32583029,37264191 -g1,12664:32583029,37264191 -) -h1,12664:6797234,37460799:0,0,0 -(1,12668:6797234,39239900:25785795,513147,126483 -h1,12667:6797234,39239900:983040,0,0 -k1,12667:8967147,39239900:233324 -k1,12667:12505451,39239900:233323 -k1,12667:14114376,39239900:233324 -k1,12667:15734441,39239900:233323 -k1,12667:16580527,39239900:233324 -k1,12667:17832936,39239900:233324 -k1,12667:20225015,39239900:233323 -k1,12667:21125495,39239900:233324 -(1,12667:21125495,39239900:0,452978,115847 -r1,12804:23594032,39239900:2468537,568825,115847 -k1,12667:21125495,39239900:-2468537 -) -(1,12667:21125495,39239900:2468537,452978,115847 -k1,12667:21125495,39239900:3277 -h1,12667:23590755,39239900:0,411205,112570 -) -k1,12667:23827355,39239900:233323 -k1,12667:25252124,39239900:233324 -(1,12667:25252124,39239900:0,452978,115847 -r1,12804:28424084,39239900:3171960,568825,115847 -k1,12667:25252124,39239900:-3171960 -) -(1,12667:25252124,39239900:3171960,452978,115847 -k1,12667:25252124,39239900:3277 -h1,12667:28420807,39239900:0,411205,112570 -) -k1,12667:28657407,39239900:233323 -k1,12667:29576893,39239900:233324 -k1,12667:32583029,39239900:0 -) -(1,12668:6797234,40081388:25785795,505283,126483 -k1,12667:10098453,40081388:238066 -k1,12667:11098046,40081388:238065 -(1,12667:11098046,40081388:0,452978,115847 -r1,12804:13566583,40081388:2468537,568825,115847 -k1,12667:11098046,40081388:-2468537 -) -(1,12667:11098046,40081388:2468537,452978,115847 -k1,12667:11098046,40081388:3277 -h1,12667:13563306,40081388:0,411205,112570 -) -k1,12667:13978319,40081388:238066 -k1,12667:17151087,40081388:238066 -k1,12667:18855849,40081388:238066 -(1,12667:18855849,40081388:0,452978,115847 -r1,12804:21324386,40081388:2468537,568825,115847 -k1,12667:18855849,40081388:-2468537 -) -(1,12667:18855849,40081388:2468537,452978,115847 -k1,12667:18855849,40081388:3277 -h1,12667:21321109,40081388:0,411205,112570 -) -k1,12667:21562451,40081388:238065 -k1,12667:22991962,40081388:238066 -(1,12667:22991962,40081388:0,452978,115847 -r1,12804:26163922,40081388:3171960,568825,115847 -k1,12667:22991962,40081388:-3171960 -) -(1,12667:22991962,40081388:3171960,452978,115847 -k1,12667:22991962,40081388:3277 -h1,12667:26160645,40081388:0,411205,112570 -) -k1,12667:26401988,40081388:238066 -k1,12667:28650698,40081388:238065 -k1,12667:31575085,40081388:238066 -k1,12668:32583029,40081388:0 -) -(1,12668:6797234,40922876:25785795,513147,134348 -k1,12667:8611367,40922876:145586 -k1,12667:11139842,40922876:145586 -k1,12667:12853049,40922876:145586 -(1,12667:12853049,40922876:0,452978,115847 -r1,12804:14266450,40922876:1413401,568825,115847 -k1,12667:12853049,40922876:-1413401 -) -(1,12667:12853049,40922876:1413401,452978,115847 -k1,12667:12853049,40922876:3277 -h1,12667:14263173,40922876:0,411205,112570 -) -k1,12667:14585706,40922876:145586 -k1,12667:18093289,40922876:145586 -k1,12667:21465868,40922876:145586 -k1,12667:25208725,40922876:145586 -k1,12667:28308019,40922876:145586 -k1,12667:29519876,40922876:145586 -k1,12667:32583029,40922876:0 -) -(1,12668:6797234,41764364:25785795,513147,134348 -k1,12667:7849701,41764364:290939 -k1,12667:9159725,41764364:290939 -k1,12667:12422065,41764364:290938 -(1,12667:12422065,41764364:0,452978,115847 -r1,12804:14890602,41764364:2468537,568825,115847 -k1,12667:12422065,41764364:-2468537 -) -(1,12667:12422065,41764364:2468537,452978,115847 -k1,12667:12422065,41764364:3277 -h1,12667:14887325,41764364:0,411205,112570 -) -k1,12667:15181541,41764364:290939 -k1,12667:18430775,41764364:290939 -k1,12667:20884402,41764364:290939 -k1,12667:21826769,41764364:290939 -k1,12667:23136793,41764364:290939 -k1,12667:27355304,41764364:290938 -k1,12667:28305535,41764364:290939 -k1,12667:30293201,41764364:290939 -k1,12667:32583029,41764364:0 -) -(1,12668:6797234,42605852:25785795,513147,134348 -g1,12667:8766590,42605852 -g1,12667:9617247,42605852 -g1,12667:10564242,42605852 -g1,12667:12413668,42605852 -g1,12667:15917878,42605852 -g1,12667:18094328,42605852 -g1,12667:19736004,42605852 -g1,12667:20586661,42605852 -g1,12667:21804975,42605852 -g1,12667:25931777,42605852 -g1,12667:26790298,42605852 -g1,12667:28977234,42605852 -g1,12667:29863936,42605852 -k1,12668:32583029,42605852:255595 -g1,12668:32583029,42605852 -) -(1,12670:6797234,43585115:25785795,513147,134348 -h1,12669:6797234,43585115:983040,0,0 -k1,12669:9221987,43585115:245026 -k1,12669:11022181,43585115:245025 -k1,12669:11926499,43585115:245026 -k1,12669:13190610,43585115:245026 -k1,12669:15395161,43585115:245025 -k1,12669:18418914,43585115:245026 -k1,12669:19425468,43585115:245026 -(1,12669:19425468,43585115:0,452978,115847 -r1,12804:21894005,43585115:2468537,568825,115847 -k1,12669:19425468,43585115:-2468537 -) -(1,12669:19425468,43585115:2468537,452978,115847 -k1,12669:19425468,43585115:3277 -h1,12669:21890728,43585115:0,411205,112570 -) -k1,12669:22139030,43585115:245025 -k1,12669:23876966,43585115:245026 -k1,12669:25188262,43585115:245025 -k1,12669:27805036,43585115:245026 -k1,12669:28859432,43585115:245026 -k1,12669:30123542,43585115:245025 -k1,12669:31923737,43585115:245026 -k1,12669:32583029,43585115:0 -) -(1,12670:6797234,44426603:25785795,513147,134348 -g1,12669:8015548,44426603 -g1,12669:10202484,44426603 -g1,12669:11089186,44426603 -g1,12669:13421612,44426603 -g1,12669:15310359,44426603 -g1,12669:16297986,44426603 -g1,12669:19428640,44426603 -g1,12669:21120779,44426603 -k1,12670:32583029,44426603:8916832 -g1,12670:32583029,44426603 -) -] -g1,12804:32583029,45706769 -) -] -(1,12804:32583029,45706769:0,0,0 -g1,12804:32583029,45706769 -) -) -] -(1,12804:6630773,47279633:25952256,0,0 -h1,12804:6630773,47279633:25952256,0,0 -) -] -(1,12804:4262630,4025873:0,0,0 -[1,12804:-473656,4025873:0,0,0 -(1,12804:-473656,-710413:0,0,0 -(1,12804:-473656,-710413:0,0,0 -g1,12804:-473656,-710413 -) -g1,12804:-473656,-710413 -) -] -) -] -!31959 -}217 -!12 -{218 -[1,12804:4262630,47279633:28320399,43253760,0 -(1,12804:4262630,4025873:0,0,0 -[1,12804:-473656,4025873:0,0,0 -(1,12804:-473656,-710413:0,0,0 -(1,12804:-473656,-644877:0,0,0 -k1,12804:-473656,-644877:-65536 +] +g1,12114:6630773,4812305 +k1,12114:19540057,4812305:11713907 +g1,12114:21162728,4812305 +g1,12114:21985204,4812305 +g1,12114:24539797,4812305 +g1,12114:25949476,4812305 +g1,12114:28728857,4812305 +g1,12114:29852144,4812305 +) +) +] +[1,12114:6630773,45706769:25952256,40108032,0 +(1,12114:6630773,45706769:25952256,40108032,0 +(1,12114:6630773,45706769:0,0,0 +g1,12114:6630773,45706769 +) +[1,12114:6630773,45706769:25952256,40108032,0 +(1,12062:6630773,6254097:25952256,32768,229376 +(1,12062:6630773,6254097:0,32768,229376 +(1,12062:6630773,6254097:5505024,32768,229376 +r1,12114:12135797,6254097:5505024,262144,229376 +) +k1,12062:6630773,6254097:-5505024 +) +(1,12062:6630773,6254097:25952256,32768,0 +r1,12114:32583029,6254097:25952256,32768,0 +) +) +(1,12062:6630773,7885949:25952256,606339,14155 +(1,12062:6630773,7885949:1974731,582746,0 +g1,12062:6630773,7885949 +g1,12062:8605504,7885949 +) +g1,12062:12684727,7885949 +k1,12062:32583029,7885949:15540682 +g1,12062:32583029,7885949 +) +(1,12065:6630773,9144245:25952256,513147,134348 +k1,12064:8683284,9144245:315807 +k1,12064:10018175,9144245:315806 +k1,12064:11925852,9144245:315807 +k1,12064:13979673,9144245:315806 +k1,12064:14954772,9144245:315807 +k1,12064:16289663,9144245:315806 +k1,12064:17020196,9144245:315690 +k1,12064:20178299,9144245:315807 +k1,12064:21110143,9144245:315806 +k1,12064:22815313,9144245:315807 +k1,12064:25685712,9144245:315806 +k1,12064:27192964,9144245:315807 +k1,12064:30535879,9144245:315807 +k1,12064:31266411,9144245:315689 +k1,12065:32583029,9144245:0 +) +(1,12065:6630773,10009325:25952256,513147,134348 +k1,12064:8495808,10009325:208285 +k1,12064:11729890,10009325:208285 +k1,12064:12885827,10009325:208286 +k1,12064:14560808,10009325:208285 +k1,12064:16893770,10009325:208285 +k1,12064:18293500,10009325:208285 +k1,12064:21188106,10009325:208285 +k1,12064:25371805,10009325:208285 +k1,12064:27339077,10009325:208286 +k1,12064:29114983,10009325:208285 +k1,12064:31391584,10009325:208285 +k1,12064:32583029,10009325:0 +) +(1,12065:6630773,10874405:25952256,513147,134348 +k1,12064:9824998,10874405:209715 +k1,12064:10686141,10874405:209715 +k1,12064:12830479,10874405:209715 +k1,12064:14394168,10874405:209715 +k1,12064:17290204,10874405:209715 +k1,12064:19991597,10874405:209714 +k1,12064:22068433,10874405:209715 +k1,12064:23269708,10874405:209715 +k1,12064:26471142,10874405:209715 +k1,12064:27340149,10874405:209715 +k1,12064:30575661,10874405:209715 +k1,12065:32583029,10874405:0 +) +(1,12065:6630773,11739485:25952256,513147,134348 +k1,12064:9495649,11739485:235572 +k1,12064:10750306,11739485:235572 +k1,12064:14457320,11739485:235572 +k1,12064:15352184,11739485:235572 +k1,12064:16606841,11739485:235572 +k1,12064:20147395,11739485:235573 +k1,12064:21896193,11739485:235572 +k1,12064:23521128,11739485:235572 +k1,12064:27264842,11739485:235572 +k1,12064:29238429,11739485:235572 +k1,12064:30156886,11739485:235572 +k1,12064:32583029,11739485:0 +) +(1,12065:6630773,12604565:25952256,505283,115847 +(1,12064:6837867,12604565:0,452978,115847 +r1,12114:8954692,12604565:2116825,568825,115847 +k1,12064:6837867,12604565:-2116825 +) +(1,12064:6837867,12604565:2116825,452978,115847 +k1,12064:6837867,12604565:3277 +h1,12064:8951415,12604565:0,411205,112570 +) +k1,12064:9554390,12604565:218934 +k1,12064:12427531,12604565:218933 +(1,12064:12634625,12604565:0,452978,115847 +r1,12114:14399738,12604565:1765113,568825,115847 +k1,12064:12634625,12604565:-1765113 +) +(1,12064:12634625,12604565:1765113,452978,115847 +k1,12064:12634625,12604565:3277 +h1,12064:14396461,12604565:0,411205,112570 +) +k1,12064:14999436,12604565:218934 +k1,12064:18061977,12604565:218934 +k1,12064:21230685,12604565:218933 +(1,12064:21437779,12604565:0,452978,115847 +r1,12114:22851180,12604565:1413401,568825,115847 +k1,12064:21437779,12604565:-1413401 +) +(1,12064:21437779,12604565:1413401,452978,115847 +k1,12064:21437779,12604565:3277 +h1,12064:22847903,12604565:0,411205,112570 +) +k1,12064:23450878,12604565:218934 +k1,12064:26029763,12604565:218934 +(1,12064:26236857,12604565:0,452978,115847 +r1,12114:29057106,12604565:2820249,568825,115847 +k1,12064:26236857,12604565:-2820249 +) +(1,12064:26236857,12604565:2820249,452978,115847 +k1,12064:26236857,12604565:3277 +h1,12064:29053829,12604565:0,411205,112570 +) +k1,12064:29656803,12604565:218933 +k1,12064:31613752,12604565:218934 +k1,12065:32583029,12604565:0 +) +(1,12065:6630773,13469645:25952256,505283,134348 +k1,12064:8739571,13469645:159757 +k1,12064:11849104,13469645:159758 +(1,12064:12056198,13469645:0,452978,115847 +r1,12114:13821311,13469645:1765113,568825,115847 +k1,12064:12056198,13469645:-1765113 +) +(1,12064:12056198,13469645:1765113,452978,115847 +k1,12064:12056198,13469645:3277 +h1,12064:13818034,13469645:0,411205,112570 +) +k1,12064:14361832,13469645:159757 +k1,12064:16304169,13469645:159758 +(1,12064:16511263,13469645:0,452978,115847 +r1,12114:18628088,13469645:2116825,568825,115847 +k1,12064:16511263,13469645:-2116825 +) +(1,12064:16511263,13469645:2116825,452978,115847 +k1,12064:16511263,13469645:3277 +h1,12064:18624811,13469645:0,411205,112570 +) +k1,12064:19168609,13469645:159757 +k1,12064:22525213,13469645:159758 +(1,12064:22732307,13469645:0,452978,115847 +r1,12114:24497420,13469645:1765113,568825,115847 +k1,12064:22732307,13469645:-1765113 +) +(1,12064:22732307,13469645:1765113,452978,115847 +k1,12064:22732307,13469645:3277 +h1,12064:24494143,13469645:0,411205,112570 +) +k1,12064:25037941,13469645:159757 +k1,12064:28289688,13469645:159758 +(1,12064:28496782,13469645:0,452978,115847 +r1,12114:30261895,13469645:1765113,568825,115847 +k1,12064:28496782,13469645:-1765113 +) +(1,12064:28496782,13469645:1765113,452978,115847 +k1,12064:28496782,13469645:3277 +h1,12064:30258618,13469645:0,411205,112570 +) +k1,12064:30802416,13469645:159757 +k1,12064:32583029,13469645:0 +) +(1,12065:6630773,14334725:25952256,505283,134348 +(1,12064:6837867,14334725:0,452978,122846 +r1,12114:9306404,14334725:2468537,575824,122846 +k1,12064:6837867,14334725:-2468537 +) +(1,12064:6837867,14334725:2468537,452978,122846 +k1,12064:6837867,14334725:3277 +h1,12064:9303127,14334725:0,411205,112570 +) +k1,12064:9993713,14334725:306545 +k1,12064:13231028,14334725:306545 +(1,12064:13438122,14334725:0,452978,115847 +r1,12114:16961794,14334725:3523672,568825,115847 +k1,12064:13438122,14334725:-3523672 +) +(1,12064:13438122,14334725:3523672,452978,115847 +k1,12064:13438122,14334725:3277 +h1,12064:16958517,14334725:0,411205,112570 +) +k1,12064:17649103,14334725:306545 +k1,12064:19968914,14334725:306545 +(1,12064:20176008,14334725:0,452978,122846 +r1,12114:22996257,14334725:2820249,575824,122846 +k1,12064:20176008,14334725:-2820249 +) +(1,12064:20176008,14334725:2820249,452978,122846 +k1,12064:20176008,14334725:3277 +h1,12064:22992980,14334725:0,411205,112570 +) +k1,12064:23683566,14334725:306545 +k1,12064:25181556,14334725:306545 +k1,12064:31004922,14334725:306545 +k1,12065:32583029,14334725:0 +) +(1,12065:6630773,15199805:25952256,505283,126483 +k1,12064:8983990,15199805:210190 +(1,12064:9191084,15199805:0,452978,115847 +r1,12114:12363044,15199805:3171960,568825,115847 +k1,12064:9191084,15199805:-3171960 +) +(1,12064:9191084,15199805:3171960,452978,115847 +k1,12064:9191084,15199805:3277 +h1,12064:12359767,15199805:0,411205,112570 +) +k1,12064:12953998,15199805:210190 +k1,12064:14062032,15199805:210191 +k1,12064:15968949,15199805:210190 +k1,12064:18963764,15199805:210190 +k1,12064:21221954,15199805:210190 +k1,12064:24052273,15199805:210190 +k1,12064:26570641,15199805:210190 +k1,12064:27972277,15199805:210191 +k1,12064:30915974,15199805:210190 +k1,12064:31812326,15199805:210190 +k1,12064:32583029,15199805:0 +) +(1,12065:6630773,16064885:25952256,513147,134348 +k1,12064:10019791,16064885:143020 +k1,12064:11879853,16064885:143019 +k1,12064:12682165,16064885:143020 +k1,12064:14464240,16064885:143020 +k1,12064:15893075,16064885:143019 +k1,12064:17511310,16064885:143020 +k1,12064:21066790,16064885:143020 +k1,12064:22157461,16064885:143020 +k1,12064:24002450,16064885:143019 +k1,12064:26378282,16064885:143020 +k1,12064:28014868,16064885:143020 +k1,12064:28844049,16064885:143019 +k1,12064:30376432,16064885:143020 +k1,12064:32583029,16064885:0 +) +(1,12065:6630773,16929965:25952256,513147,134348 +k1,12064:7410091,16929965:163280 +k1,12064:8592455,16929965:163279 +k1,12064:10122816,16929965:163280 +k1,12064:10953251,16929965:163279 +(1,12064:10953251,16929965:0,452978,115847 +r1,12114:14125211,16929965:3171960,568825,115847 +k1,12064:10953251,16929965:-3171960 +) +(1,12064:10953251,16929965:3171960,452978,115847 +k1,12064:10953251,16929965:3277 +h1,12064:14121934,16929965:0,411205,112570 +) +k1,12064:14462161,16929965:163280 +k1,12064:16029222,16929965:163280 +k1,12064:16607309,16929965:163244 +k1,12064:19612884,16929965:163279 +k1,12064:21269074,16929965:163280 +k1,12064:22498624,16929965:163279 +k1,12064:24622741,16929965:163280 +k1,12064:25141881,16929965:163280 +k1,12064:28000656,16929965:163279 +k1,12064:29111587,16929965:163280 +k1,12064:32583029,16929965:0 +) +(1,12065:6630773,17795045:25952256,513147,134348 +k1,12064:7521451,17795045:231386 +k1,12064:8771921,17795045:231385 +k1,12064:11846914,17795045:231386 +k1,12064:13685242,17795045:231385 +k1,12064:14575920,17795045:231386 +k1,12064:15826391,17795045:231386 +k1,12064:17969461,17795045:231385 +k1,12064:20336010,17795045:231386 +k1,12064:21592378,17795045:231385 +k1,12064:24102451,17795045:231386 +h1,12064:25645169,17795045:0,0,0 +k1,12064:25876555,17795045:231386 +k1,12064:26917310,17795045:231385 +k1,12064:28646849,17795045:231386 +h1,12064:29842226,17795045:0,0,0 +k1,12064:30073611,17795045:231385 +k1,12064:31252648,17795045:231386 +k1,12064:32583029,17795045:0 +) +(1,12065:6630773,18660125:25952256,513147,126483 +g1,12064:7481430,18660125 +g1,12064:9641496,18660125 +g1,12064:11299556,18660125 +k1,12065:32583029,18660125:19572328 +g1,12065:32583029,18660125 +) +v1,12067:6630773,19344980:0,393216,0 +(1,12083:6630773,27880801:25952256,8929037,196608 +g1,12083:6630773,27880801 +g1,12083:6630773,27880801 +g1,12083:6434165,27880801 +(1,12083:6434165,27880801:0,8929037,196608 +r1,12114:32779637,27880801:26345472,9125645,196608 +k1,12083:6434165,27880801:-26345472 +) +(1,12083:6434165,27880801:26345472,8929037,196608 +[1,12083:6630773,27880801:25952256,8732429,0 +(1,12069:6630773,19556295:25952256,407923,9908 +(1,12068:6630773,19556295:0,0,0 +g1,12068:6630773,19556295 +g1,12068:6630773,19556295 +g1,12068:6303093,19556295 +(1,12068:6303093,19556295:0,0,0 +) +g1,12068:6630773,19556295 +) +g1,12069:7294681,19556295 +g1,12069:8290543,19556295 +h1,12069:9618359,19556295:0,0,0 +k1,12069:32583029,19556295:22964670 +g1,12069:32583029,19556295 +) +(1,12070:6630773,20241150:25952256,424439,79822 +h1,12070:6630773,20241150:0,0,0 +k1,12070:6630773,20241150:0 +h1,12070:8954451,20241150:0,0,0 +k1,12070:32583029,20241150:23628578 +g1,12070:32583029,20241150 +) +(1,12071:6630773,20926005:25952256,424439,79822 +h1,12071:6630773,20926005:0,0,0 +k1,12071:6630773,20926005:0 +h1,12071:8622497,20926005:0,0,0 +k1,12071:32583029,20926005:23960532 +g1,12071:32583029,20926005 +) +(1,12072:6630773,21610860:25952256,424439,79822 +h1,12072:6630773,21610860:0,0,0 +k1,12072:6630773,21610860:0 +h1,12072:8290543,21610860:0,0,0 +k1,12072:32583029,21610860:24292486 +g1,12072:32583029,21610860 +) +(1,12073:6630773,22295715:25952256,424439,79822 +h1,12073:6630773,22295715:0,0,0 +k1,12073:6630773,22295715:0 +h1,12073:9618359,22295715:0,0,0 +k1,12073:32583029,22295715:22964670 +g1,12073:32583029,22295715 +) +(1,12074:6630773,22980570:25952256,424439,79822 +h1,12074:6630773,22980570:0,0,0 +k1,12074:6630773,22980570:0 +h1,12074:8622497,22980570:0,0,0 +k1,12074:32583029,22980570:23960532 +g1,12074:32583029,22980570 +) +(1,12075:6630773,23665425:25952256,424439,79822 +h1,12075:6630773,23665425:0,0,0 +k1,12075:6630773,23665425:0 +h1,12075:8954451,23665425:0,0,0 +k1,12075:32583029,23665425:23628578 +g1,12075:32583029,23665425 +) +(1,12076:6630773,24350280:25952256,424439,79822 +h1,12076:6630773,24350280:0,0,0 +k1,12076:6630773,24350280:0 +h1,12076:8622497,24350280:0,0,0 +k1,12076:32583029,24350280:23960532 +g1,12076:32583029,24350280 +) +(1,12077:6630773,25035135:25952256,424439,79822 +h1,12077:6630773,25035135:0,0,0 +k1,12077:6630773,25035135:0 +h1,12077:8622497,25035135:0,0,0 +k1,12077:32583029,25035135:23960532 +g1,12077:32583029,25035135 +) +(1,12078:6630773,25719990:25952256,424439,112852 +h1,12078:6630773,25719990:0,0,0 +k1,12078:6630773,25719990:0 +h1,12078:9286405,25719990:0,0,0 +k1,12078:32583029,25719990:23296624 +g1,12078:32583029,25719990 +) +(1,12079:6630773,26404845:25952256,424439,106246 +h1,12079:6630773,26404845:0,0,0 +k1,12079:6630773,26404845:0 +h1,12079:10282266,26404845:0,0,0 +k1,12079:32583030,26404845:22300764 +g1,12079:32583030,26404845 +) +(1,12080:6630773,27089700:25952256,424439,112852 +h1,12080:6630773,27089700:0,0,0 +k1,12080:6630773,27089700:0 +h1,12080:9618359,27089700:0,0,0 +k1,12080:32583029,27089700:22964670 +g1,12080:32583029,27089700 +) +(1,12081:6630773,27774555:25952256,424439,106246 +h1,12081:6630773,27774555:0,0,0 +k1,12081:6630773,27774555:0 +h1,12081:9950313,27774555:0,0,0 +k1,12081:32583029,27774555:22632716 +g1,12081:32583029,27774555 +) +] +) +g1,12083:32583029,27880801 +g1,12083:6630773,27880801 +g1,12083:6630773,27880801 +g1,12083:32583029,27880801 +g1,12083:32583029,27880801 +) +h1,12083:6630773,28077409:0,0,0 +v1,12087:6630773,28942489:0,393216,0 +(1,12088:6630773,31944554:25952256,3395281,0 +g1,12088:6630773,31944554 +g1,12088:6237557,31944554 +r1,12114:6368629,31944554:131072,3395281,0 +g1,12088:6567858,31944554 +g1,12088:6764466,31944554 +[1,12088:6764466,31944554:25818563,3395281,0 +(1,12088:6764466,29214966:25818563,665693,196608 +(1,12087:6764466,29214966:0,665693,196608 +r1,12114:8010564,29214966:1246098,862301,196608 +k1,12087:6764466,29214966:-1246098 +) +(1,12087:6764466,29214966:1246098,665693,196608 +) +k1,12087:8280168,29214966:269604 +k1,12087:9598097,29214966:327680 +k1,12087:10495537,29214966:269605 +k1,12087:13396412,29214966:269604 +k1,12087:14317444,29214966:269604 +k1,12087:16338826,29214966:269605 +k1,12087:18310400,29214966:269604 +k1,12087:21571723,29214966:269604 +k1,12087:22457366,29214966:269605 +k1,12087:23930211,29214966:269604 +k1,12087:25955525,29214966:269604 +k1,12087:27244215,29214966:269605 +k1,12087:31021961,29214966:269604 +k1,12088:32583029,29214966:0 +) +(1,12088:6764466,30080046:25818563,505283,126483 +k1,12087:8839242,30080046:214209 +k1,12087:10447402,30080046:214209 +k1,12087:11680696,30080046:214209 +k1,12087:13391092,30080046:214209 +k1,12087:14221339,30080046:214209 +k1,12087:15454633,30080046:214209 +k1,12087:18423320,30080046:214209 +k1,12087:20608196,30080046:214208 +k1,12087:21813965,30080046:214209 +k1,12087:23094445,30080046:214209 +k1,12087:25557850,30080046:214209 +k1,12087:27025763,30080046:214209 +k1,12087:29420355,30080046:214209 +k1,12087:30770303,30080046:214209 +k1,12087:32583029,30080046:0 +) +(1,12088:6764466,30945126:25818563,513147,134348 +k1,12087:8660131,30945126:160272 +k1,12087:10798279,30945126:160271 +(1,12087:10798279,30945126:0,414482,115847 +r1,12114:11156545,30945126:358266,530329,115847 +k1,12087:10798279,30945126:-358266 +) +(1,12087:10798279,30945126:358266,414482,115847 +k1,12087:10798279,30945126:3277 +h1,12087:11153268,30945126:0,411205,112570 +) +k1,12087:11316817,30945126:160272 +k1,12087:12163251,30945126:160272 +k1,12087:14705100,30945126:160271 +k1,12087:16894367,30945126:160272 +k1,12087:18246084,30945126:160272 +k1,12087:19840283,30945126:160271 +k1,12087:21343388,30945126:160272 +k1,12087:22897611,30945126:160272 +k1,12087:24759852,30945126:160271 +k1,12087:26116811,30945126:160272 +k1,12087:26959968,30945126:160272 +k1,12087:29748888,30945126:160271 +k1,12087:31298523,30945126:160272 +k1,12087:32583029,30945126:0 +) +(1,12088:6764466,31810206:25818563,513147,134348 +g1,12087:8134168,31810206 +g1,12087:9670331,31810206 +g1,12087:11135716,31810206 +k1,12088:32583030,31810206:17840212 +g1,12088:32583030,31810206 +) +] +g1,12088:32583029,31944554 +) +h1,12088:6630773,31944554:0,0,0 +(1,12091:6630773,32809634:25952256,513147,134348 +h1,12090:6630773,32809634:983040,0,0 +k1,12090:8634572,32809634:260541 +k1,12090:11334363,32809634:260541 +k1,12090:12060865,32809634:260541 +k1,12090:13340491,32809634:260541 +k1,12090:16673360,32809634:260541 +k1,12090:19635951,32809634:260542 +(1,12090:19635951,32809634:0,414482,115847 +r1,12114:20697640,32809634:1061689,530329,115847 +k1,12090:19635951,32809634:-1061689 +) +(1,12090:19635951,32809634:1061689,414482,115847 +k1,12090:19635951,32809634:3277 +h1,12090:20694363,32809634:0,411205,112570 +) +k1,12090:20958181,32809634:260541 +k1,12090:22915449,32809634:260541 +k1,12090:26201787,32809634:260541 +k1,12090:28472973,32809634:260541 +(1,12090:28472973,32809634:0,414482,115847 +r1,12114:29182951,32809634:709978,530329,115847 +k1,12090:28472973,32809634:-709978 +) +(1,12090:28472973,32809634:709978,414482,115847 +k1,12090:28472973,32809634:3277 +h1,12090:29179674,32809634:0,411205,112570 +) +k1,12090:29617162,32809634:260541 +k1,12090:31074390,32809634:260541 +k1,12090:32583029,32809634:0 +) +(1,12091:6630773,33674714:25952256,513147,102891 +k1,12090:9045529,33674714:215368 +k1,12090:10464137,33674714:215367 +k1,12090:11211002,33674714:215368 +k1,12090:12710875,33674714:215367 +k1,12090:13392204,33674714:215368 +k1,12090:14764282,33674714:215368 +k1,12090:16659992,33674714:215367 +k1,12090:18706436,33674714:215368 +k1,12090:19993973,33674714:215368 +k1,12090:20740837,33674714:215367 +k1,12090:24097346,33674714:215368 +k1,12090:25331799,33674714:215368 +k1,12090:26854609,33674714:215367 +k1,12090:28912849,33674714:215368 +k1,12090:29787508,33674714:215367 +k1,12090:31021961,33674714:215368 +k1,12091:32583029,33674714:0 +) +(1,12091:6630773,34539794:25952256,513147,134348 +k1,12090:9570786,34539794:224201 +k1,12090:10326484,34539794:224201 +k1,12090:13518155,34539794:224201 +k1,12090:14974433,34539794:224201 +k1,12090:16696787,34539794:224201 +h1,12090:17493705,34539794:0,0,0 +k1,12090:17717906,34539794:224201 +k1,12090:18889758,34539794:224201 +k1,12090:21231428,34539794:224202 +k1,12090:22264999,34539794:224201 +k1,12090:23508285,34539794:224201 +k1,12090:24967840,34539794:224201 +k1,12090:25859197,34539794:224201 +(1,12090:25859197,34539794:0,414482,115847 +r1,12114:26569175,34539794:709978,530329,115847 +k1,12090:25859197,34539794:-709978 +) +(1,12090:25859197,34539794:709978,414482,115847 +k1,12090:25859197,34539794:3277 +h1,12090:26565898,34539794:0,411205,112570 +) +k1,12090:26793376,34539794:224201 +k1,12090:27633615,34539794:224201 +k1,12090:28653423,34539794:224201 +k1,12090:31812326,34539794:224201 +k1,12090:32583029,34539794:0 +) +(1,12091:6630773,35404874:25952256,513147,126483 +k1,12090:10109403,35404874:251637 +k1,12090:13641773,35404874:251638 +k1,12090:15761186,35404874:251637 +(1,12090:15761186,35404874:0,414482,115847 +r1,12114:17526299,35404874:1765113,530329,115847 +k1,12090:15761186,35404874:-1765113 +) +(1,12090:15761186,35404874:1765113,414482,115847 +k1,12090:15761186,35404874:3277 +h1,12090:17523022,35404874:0,411205,112570 +) +k1,12090:17777937,35404874:251638 +k1,12090:20041529,35404874:251637 +k1,12090:21038311,35404874:251638 +k1,12090:21941376,35404874:251637 +k1,12090:24838047,35404874:251638 +k1,12090:26292925,35404874:251637 +k1,12090:28810143,35404874:251638 +k1,12090:31821501,35404874:251637 +k1,12090:32583029,35404874:0 +) +(1,12091:6630773,36269954:25952256,513147,134348 +g1,12090:10209694,36269954 +g1,12090:11540730,36269954 +(1,12090:11540730,36269954:0,414482,115847 +r1,12114:12250708,36269954:709978,530329,115847 +k1,12090:11540730,36269954:-709978 +) +(1,12090:11540730,36269954:709978,414482,115847 +k1,12090:11540730,36269954:3277 +h1,12090:12247431,36269954:0,411205,112570 +) +g1,12090:12449937,36269954 +g1,12090:13265204,36269954 +g1,12090:14483518,36269954 +g1,12090:16391271,36269954 +g1,12090:17241928,36269954 +g1,12090:18188923,36269954 +g1,12090:21163602,36269954 +g1,12090:22252810,36269954 +g1,12090:25777991,36269954 +g1,12090:28019977,36269954 +k1,12091:32583029,36269954:917940 +g1,12091:32583029,36269954 +) +v1,12093:6630773,36954809:0,393216,0 +(1,12107:6630773,40395098:25952256,3833505,196608 +g1,12107:6630773,40395098 +g1,12107:6630773,40395098 +g1,12107:6434165,40395098 +(1,12107:6434165,40395098:0,3833505,196608 +r1,12114:32779637,40395098:26345472,4030113,196608 +k1,12107:6434165,40395098:-26345472 +) +(1,12107:6434165,40395098:26345472,3833505,196608 +[1,12107:6630773,40395098:25952256,3636897,0 +(1,12095:6630773,37182640:25952256,424439,86428 +(1,12094:6630773,37182640:0,0,0 +g1,12094:6630773,37182640 +g1,12094:6630773,37182640 +g1,12094:6303093,37182640 +(1,12094:6303093,37182640:0,0,0 +) +g1,12094:6630773,37182640 +) +g1,12095:7294681,37182640 +g1,12095:8290543,37182640 +g1,12095:10946175,37182640 +h1,12095:11942037,37182640:0,0,0 +k1,12095:32583029,37182640:20640992 +g1,12095:32583029,37182640 +) +(1,12096:6630773,37867495:25952256,424439,79822 +h1,12096:6630773,37867495:0,0,0 +k1,12096:6630773,37867495:0 +h1,12096:8954451,37867495:0,0,0 +k1,12096:32583029,37867495:23628578 +g1,12096:32583029,37867495 +) +(1,12100:6630773,38683422:25952256,424439,79822 +(1,12098:6630773,38683422:0,0,0 +g1,12098:6630773,38683422 +g1,12098:6630773,38683422 +g1,12098:6303093,38683422 +(1,12098:6303093,38683422:0,0,0 +) +g1,12098:6630773,38683422 +) +g1,12100:7626635,38683422 +g1,12100:8954451,38683422 +h1,12100:9618359,38683422:0,0,0 +k1,12100:32583029,38683422:22964670 +g1,12100:32583029,38683422 +) +(1,12102:6630773,39499349:25952256,424439,86428 +(1,12101:6630773,39499349:0,0,0 +g1,12101:6630773,39499349 +g1,12101:6630773,39499349 +g1,12101:6303093,39499349 +(1,12101:6303093,39499349:0,0,0 +) +g1,12101:6630773,39499349 +) +k1,12102:6630773,39499349:0 +g1,12102:9286405,39499349 +g1,12102:11278129,39499349 +g1,12102:11942037,39499349 +h1,12102:13601807,39499349:0,0,0 +k1,12102:32583029,39499349:18981222 +g1,12102:32583029,39499349 +) +(1,12106:6630773,40315276:25952256,424439,79822 +(1,12104:6630773,40315276:0,0,0 +g1,12104:6630773,40315276 +g1,12104:6630773,40315276 +g1,12104:6303093,40315276 +(1,12104:6303093,40315276:0,0,0 +) +g1,12104:6630773,40315276 +) +g1,12106:7626635,40315276 +g1,12106:8954451,40315276 +h1,12106:10282267,40315276:0,0,0 +k1,12106:32583029,40315276:22300762 +g1,12106:32583029,40315276 +) +] +) +g1,12107:32583029,40395098 +g1,12107:6630773,40395098 +g1,12107:6630773,40395098 +g1,12107:32583029,40395098 +g1,12107:32583029,40395098 +) +h1,12107:6630773,40591706:0,0,0 +(1,12111:6630773,41456786:25952256,513147,115847 +h1,12110:6630773,41456786:983040,0,0 +k1,12110:9579366,41456786:148895 +k1,12110:11378457,41456786:148894 +k1,12110:14533488,41456786:148895 +k1,12110:17708180,41456786:148895 +k1,12110:18848635,41456786:148895 +k1,12110:20283345,41456786:148894 +k1,12110:23389880,41456786:148895 +k1,12110:25032341,41456786:148895 +k1,12110:25867397,41456786:148894 +(1,12110:25867397,41456786:0,452978,115847 +r1,12114:31149628,41456786:5282231,568825,115847 +k1,12110:25867397,41456786:-5282231 +) +(1,12110:25867397,41456786:5282231,452978,115847 +k1,12110:25867397,41456786:3277 +h1,12110:31146351,41456786:0,411205,112570 +) +k1,12110:31298523,41456786:148895 +k1,12110:32583029,41456786:0 +) +(1,12111:6630773,42321866:25952256,505283,126483 +g1,12110:9948205,42321866 +g1,12110:11166519,42321866 +g1,12110:13376393,42321866 +g1,12110:15873970,42321866 +g1,12110:16724627,42321866 +g1,12110:18509827,42321866 +g1,12110:19064916,42321866 +k1,12111:32583029,42321866:10907159 +g1,12111:32583029,42321866 +) +v1,12113:6630773,43186946:0,393216,0 +(1,12114:6630773,44478363:25952256,1684633,0 +g1,12114:6630773,44478363 +g1,12114:6237557,44478363 +r1,12114:6368629,44478363:131072,1684633,0 +g1,12114:6567858,44478363 +g1,12114:6764466,44478363 +[1,12114:6764466,44478363:25818563,1684633,0 +(1,12114:6764466,43601488:25818563,807758,219026 +(1,12113:6764466,43601488:0,807758,219026 +r1,12114:7908217,43601488:1143751,1026784,219026 +k1,12113:6764466,43601488:-1143751 +) +(1,12113:6764466,43601488:1143751,807758,219026 +) +k1,12113:8142825,43601488:234608 +k1,12113:8470505,43601488:327680 +k1,12113:9332947,43601488:234607 +k1,12113:11319332,43601488:234608 +k1,12113:13251321,43601488:234607 +k1,12113:14656402,43601488:234608 +k1,12113:16023471,43601488:234607 +k1,12113:17806695,43601488:234608 +k1,12113:18692730,43601488:234607 +k1,12113:21715240,43601488:234608 +k1,12113:25033971,43601488:234607 +k1,12113:28776721,43601488:234608 +k1,12113:29772856,43601488:234607 +k1,12113:31900144,43601488:234608 +k1,12113:32583029,43601488:0 +) +(1,12114:6764466,44466568:25818563,513147,11795 +k1,12113:10198131,44466568:289248 +k1,12113:11103417,44466568:289248 +k1,12113:14058670,44466568:289248 +k1,12113:15030803,44466568:289248 +k1,12113:17647234,44466568:289248 +k1,12113:18595774,44466568:289248 +k1,12113:19832673,44466568:289248 +k1,12113:20477780,44466568:289247 +k1,12113:22649877,44466568:289248 +k1,12113:24328488,44466568:289248 +k1,12113:25552279,44466568:289248 +k1,12113:26524412,44466568:289248 +k1,12113:28965207,44466568:289248 +k1,12113:30304342,44466568:289248 +k1,12113:32583029,44466568:0 +) +] +g1,12114:32583029,44478363 +) +] +(1,12114:32583029,45706769:0,0,0 +g1,12114:32583029,45706769 +) +) +] +(1,12114:6630773,47279633:25952256,0,0 +h1,12114:6630773,47279633:25952256,0,0 +) +] +(1,12114:4262630,4025873:0,0,0 +[1,12114:-473656,4025873:0,0,0 +(1,12114:-473656,-710413:0,0,0 +(1,12114:-473656,-710413:0,0,0 +g1,12114:-473656,-710413 +) +g1,12114:-473656,-710413 +) +] +) +] +!27733 +}195 +Input:1773:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1774:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1775:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1776:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1777:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1778:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1779:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1780:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1781:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1782:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1783:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1784:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1785:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1786:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1787:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1788:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1789:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1790:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1791:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1792:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1793:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1794:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1795:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1796:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1797:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1798:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1799:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1800:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1801:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1802:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1803:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1804:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1805:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1806:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1807:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1808:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1809:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1810:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1811:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1812:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1813:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1814:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!3960 +{196 +[1,12150:4262630,47279633:28320399,43253760,0 +(1,12150:4262630,4025873:0,0,0 +[1,12150:-473656,4025873:0,0,0 +(1,12150:-473656,-710413:0,0,0 +(1,12150:-473656,-644877:0,0,0 +k1,12150:-473656,-644877:-65536 ) -(1,12804:-473656,4736287:0,0,0 -k1,12804:-473656,4736287:5209943 +(1,12150:-473656,4736287:0,0,0 +k1,12150:-473656,4736287:5209943 ) -g1,12804:-473656,-710413 +g1,12150:-473656,-710413 ) ] ) -[1,12804:6630773,47279633:25952256,43253760,0 -[1,12804:6630773,4812305:25952256,786432,0 -(1,12804:6630773,4812305:25952256,505283,134348 -(1,12804:6630773,4812305:25952256,505283,134348 -g1,12804:3078558,4812305 -[1,12804:3078558,4812305:0,0,0 -(1,12804:3078558,2439708:0,1703936,0 -k1,12804:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,12804:2537886,2439708:1179648,16384,0 +[1,12150:6630773,47279633:25952256,43253760,0 +[1,12150:6630773,4812305:25952256,786432,0 +(1,12150:6630773,4812305:25952256,505283,11795 +(1,12150:6630773,4812305:25952256,505283,11795 +g1,12150:3078558,4812305 +[1,12150:3078558,4812305:0,0,0 +(1,12150:3078558,2439708:0,1703936,0 +k1,12150:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,12150:2537886,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,12804:3078558,1915420:16384,1179648,0 +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,12150:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] ) ) ) ] -[1,12804:3078558,4812305:0,0,0 -(1,12804:3078558,2439708:0,1703936,0 -g1,12804:29030814,2439708 -g1,12804:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,12804:36151628,1915420:16384,1179648,0 +[1,12150:3078558,4812305:0,0,0 +(1,12150:3078558,2439708:0,1703936,0 +g1,12150:29030814,2439708 +g1,12150:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,12150:36151628,1915420:16384,1179648,0 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,12804:37855564,2439708:1179648,16384,0 +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,12150:37855564,2439708:1179648,16384,0 ) ) -k1,12804:3078556,2439708:-34777008 +k1,12150:3078556,2439708:-34777008 ) ] -[1,12804:3078558,4812305:0,0,0 -(1,12804:3078558,49800853:0,16384,2228224 -k1,12804:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,12804:2537886,49800853:1179648,16384,0 +[1,12150:3078558,4812305:0,0,0 +(1,12150:3078558,49800853:0,16384,2228224 +k1,12150:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,12150:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,12804:3078558,51504789:16384,1179648,0 +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,12150:3078558,51504789:16384,1179648,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 ) ] ) ) ) ] -[1,12804:3078558,4812305:0,0,0 -(1,12804:3078558,49800853:0,16384,2228224 -g1,12804:29030814,49800853 -g1,12804:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,12804:36151628,51504789:16384,1179648,0 +[1,12150:3078558,4812305:0,0,0 +(1,12150:3078558,49800853:0,16384,2228224 +g1,12150:29030814,49800853 +g1,12150:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,12150:36151628,51504789:16384,1179648,0 ) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 ) ] ) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,12804:37855564,49800853:1179648,16384,0 +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,12150:37855564,49800853:1179648,16384,0 ) ) -k1,12804:3078556,49800853:-34777008 -) -] -g1,12804:6630773,4812305 -g1,12804:6630773,4812305 -g1,12804:8843268,4812305 -g1,12804:10880782,4812305 -g1,12804:13281365,4812305 -k1,12804:31387653,4812305:18106288 -) -) -] -[1,12804:6630773,45706769:25952256,40108032,0 -(1,12804:6630773,45706769:25952256,40108032,0 -(1,12804:6630773,45706769:0,0,0 -g1,12804:6630773,45706769 -) -[1,12804:6630773,45706769:25952256,40108032,0 -v1,12804:6630773,6254097:0,393216,0 -(1,12804:6630773,45706769:25952256,39845888,0 -g1,12804:6630773,45706769 -g1,12804:6303093,45706769 -r1,12804:6401397,45706769:98304,39845888,0 -g1,12804:6600626,45706769 -g1,12804:6797234,45706769 -[1,12804:6797234,45706769:25785795,39845888,0 -v1,12672:6797234,6254097:0,393216,0 -(1,12686:6797234,11904909:25785795,6044028,196608 -g1,12686:6797234,11904909 -g1,12686:6797234,11904909 -g1,12686:6600626,11904909 -(1,12686:6600626,11904909:0,6044028,196608 -r1,12804:32779637,11904909:26179011,6240636,196608 -k1,12686:6600625,11904909:-26179012 -) -(1,12686:6600626,11904909:26179011,6044028,196608 -[1,12686:6797234,11904909:25785795,5847420,0 -(1,12674:6797234,6468007:25785795,410518,76021 -(1,12673:6797234,6468007:0,0,0 -g1,12673:6797234,6468007 -g1,12673:6797234,6468007 -g1,12673:6469554,6468007 -(1,12673:6469554,6468007:0,0,0 -) -g1,12673:6797234,6468007 -) -k1,12674:6797234,6468007:0 -h1,12674:9958690,6468007:0,0,0 -k1,12674:32583030,6468007:22624340 -g1,12674:32583030,6468007 -) -(1,12685:6797234,7134185:25785795,410518,101187 -(1,12676:6797234,7134185:0,0,0 -g1,12676:6797234,7134185 -g1,12676:6797234,7134185 -g1,12676:6469554,7134185 -(1,12676:6469554,7134185:0,0,0 -) -g1,12676:6797234,7134185 -) -g1,12685:7745671,7134185 -g1,12685:10590982,7134185 -g1,12685:11539419,7134185 -g1,12685:14384730,7134185 -h1,12685:15965458,7134185:0,0,0 -k1,12685:32583029,7134185:16617571 -g1,12685:32583029,7134185 -) -(1,12685:6797234,7800363:25785795,379060,0 -h1,12685:6797234,7800363:0,0,0 -h1,12685:7429525,7800363:0,0,0 -k1,12685:32583029,7800363:25153504 -g1,12685:32583029,7800363 -) -(1,12685:6797234,8466541:25785795,404226,101187 -h1,12685:6797234,8466541:0,0,0 -g1,12685:7745671,8466541 -g1,12685:10907128,8466541 -h1,12685:12171711,8466541:0,0,0 -k1,12685:32583029,8466541:20411318 -g1,12685:32583029,8466541 -) -(1,12685:6797234,9132719:25785795,410518,101187 -h1,12685:6797234,9132719:0,0,0 -g1,12685:7745671,9132719 -g1,12685:8061817,9132719 -g1,12685:8377963,9132719 -g1,12685:8694109,9132719 -g1,12685:9010255,9132719 -g1,12685:9326401,9132719 -g1,12685:9642547,9132719 -g1,12685:9958693,9132719 -g1,12685:10274839,9132719 -g1,12685:10590985,9132719 -g1,12685:10907131,9132719 -g1,12685:11855568,9132719 -g1,12685:13120151,9132719 -g1,12685:14068588,9132719 -g1,12685:15649317,9132719 -g1,12685:16597754,9132719 -g1,12685:17230046,9132719 -g1,12685:19126920,9132719 -g1,12685:19443066,9132719 -g1,12685:19759212,9132719 -k1,12685:19759212,9132719:0 -h1,12685:21656086,9132719:0,0,0 -k1,12685:32583029,9132719:10926943 -g1,12685:32583029,9132719 -) -(1,12685:6797234,9798897:25785795,404226,101187 -h1,12685:6797234,9798897:0,0,0 -g1,12685:7745671,9798897 -g1,12685:9642545,9798897 -g1,12685:9958691,9798897 -g1,12685:10274837,9798897 -g1,12685:10590983,9798897 -g1,12685:10907129,9798897 -g1,12685:11223275,9798897 -g1,12685:11855567,9798897 -g1,12685:12171713,9798897 -g1,12685:14068587,9798897 -g1,12685:16597753,9798897 -g1,12685:16913899,9798897 -g1,12685:19126919,9798897 -g1,12685:21972230,9798897 -h1,12685:22920667,9798897:0,0,0 -k1,12685:32583029,9798897:9662362 -g1,12685:32583029,9798897 -) -(1,12685:6797234,10465075:25785795,404226,9436 -h1,12685:6797234,10465075:0,0,0 -g1,12685:7745671,10465075 -g1,12685:10907128,10465075 -g1,12685:11855565,10465075 -g1,12685:12171711,10465075 -g1,12685:14068585,10465075 -g1,12685:14384731,10465075 -g1,12685:14700877,10465075 -h1,12685:16281605,10465075:0,0,0 -k1,12685:32583029,10465075:16301424 -g1,12685:32583029,10465075 -) -(1,12685:6797234,11131253:25785795,379060,0 -h1,12685:6797234,11131253:0,0,0 -g1,12685:7745671,11131253 -k1,12685:7745671,11131253:0 -h1,12685:8694109,11131253:0,0,0 -k1,12685:32583029,11131253:23888920 -g1,12685:32583029,11131253 -) -(1,12685:6797234,11797431:25785795,410518,107478 -h1,12685:6797234,11797431:0,0,0 -g1,12685:7745671,11797431 -g1,12685:10274837,11797431 -g1,12685:12487857,11797431 -g1,12685:12804003,11797431 -g1,12685:13436295,11797431 -g1,12685:15333170,11797431 -g1,12685:17230044,11797431 -g1,12685:18810773,11797431 -g1,12685:20391502,11797431 -g1,12685:21656086,11797431 -g1,12685:23236815,11797431 -g1,12685:24501399,11797431 -g1,12685:25765982,11797431 -g1,12685:26398274,11797431 -g1,12685:27030566,11797431 -h1,12685:27346712,11797431:0,0,0 -k1,12685:32583029,11797431:5236317 -g1,12685:32583029,11797431 -) -] -) -g1,12686:32583029,11904909 -g1,12686:6797234,11904909 -g1,12686:6797234,11904909 -g1,12686:32583029,11904909 -g1,12686:32583029,11904909 -) -h1,12686:6797234,12101517:0,0,0 -v1,12690:6797234,13839098:0,393216,0 -(1,12697:6797234,14795207:25785795,1349325,196608 -g1,12697:6797234,14795207 -g1,12697:6797234,14795207 -g1,12697:6600626,14795207 -(1,12697:6600626,14795207:0,1349325,196608 -r1,12804:32779637,14795207:26179011,1545933,196608 -k1,12697:6600625,14795207:-26179012 -) -(1,12697:6600626,14795207:26179011,1349325,196608 -[1,12697:6797234,14795207:25785795,1152717,0 -(1,12692:6797234,14053008:25785795,410518,76021 -(1,12691:6797234,14053008:0,0,0 -g1,12691:6797234,14053008 -g1,12691:6797234,14053008 -g1,12691:6469554,14053008 -(1,12691:6469554,14053008:0,0,0 -) -g1,12691:6797234,14053008 -) -k1,12692:6797234,14053008:0 -k1,12692:6797234,14053008:0 -h1,12692:12171710,14053008:0,0,0 -k1,12692:32583030,14053008:20411320 -g1,12692:32583030,14053008 -) -(1,12696:6797234,14719186:25785795,410518,76021 -(1,12694:6797234,14719186:0,0,0 -g1,12694:6797234,14719186 -g1,12694:6797234,14719186 -g1,12694:6469554,14719186 -(1,12694:6469554,14719186:0,0,0 -) -g1,12694:6797234,14719186 -) -g1,12696:7745671,14719186 -g1,12696:9010254,14719186 -g1,12696:11539420,14719186 -g1,12696:11855566,14719186 -g1,12696:12171712,14719186 -g1,12696:12487858,14719186 -g1,12696:12804004,14719186 -g1,12696:13120150,14719186 -h1,12696:16913898,14719186:0,0,0 -k1,12696:32583029,14719186:15669131 -g1,12696:32583029,14719186 -) -] -) -g1,12697:32583029,14795207 -g1,12697:6797234,14795207 -g1,12697:6797234,14795207 -g1,12697:32583029,14795207 -g1,12697:32583029,14795207 -) -h1,12697:6797234,14991815:0,0,0 -v1,12701:6797234,16729396:0,393216,0 -(1,12714:6797234,21714030:25785795,5377850,196608 -g1,12714:6797234,21714030 -g1,12714:6797234,21714030 -g1,12714:6600626,21714030 -(1,12714:6600626,21714030:0,5377850,196608 -r1,12804:32779637,21714030:26179011,5574458,196608 -k1,12714:6600625,21714030:-26179012 -) -(1,12714:6600626,21714030:26179011,5377850,196608 -[1,12714:6797234,21714030:25785795,5181242,0 -(1,12703:6797234,16943306:25785795,410518,76021 -(1,12702:6797234,16943306:0,0,0 -g1,12702:6797234,16943306 -g1,12702:6797234,16943306 -g1,12702:6469554,16943306 -(1,12702:6469554,16943306:0,0,0 -) -g1,12702:6797234,16943306 -) -k1,12703:6797234,16943306:0 -k1,12703:6797234,16943306:0 -h1,12703:11539419,16943306:0,0,0 -k1,12703:32583029,16943306:21043610 -g1,12703:32583029,16943306 -) -(1,12713:6797234,17609484:25785795,410518,9436 -(1,12705:6797234,17609484:0,0,0 -g1,12705:6797234,17609484 -g1,12705:6797234,17609484 -g1,12705:6469554,17609484 -(1,12705:6469554,17609484:0,0,0 -) -g1,12705:6797234,17609484 -) -g1,12713:7745671,17609484 -g1,12713:10274837,17609484 -g1,12713:12804003,17609484 -g1,12713:14068586,17609484 -g1,12713:18494627,17609484 -g1,12713:19126919,17609484 -g1,12713:20707648,17609484 -g1,12713:21656085,17609484 -g1,12713:21972231,17609484 -g1,12713:22604523,17609484 -h1,12713:25765980,17609484:0,0,0 -k1,12713:32583029,17609484:6817049 -g1,12713:32583029,17609484 -) -(1,12713:6797234,18275662:25785795,410518,31456 -h1,12713:6797234,18275662:0,0,0 -g1,12713:7745671,18275662 -g1,12713:8061817,18275662 -g1,12713:8694109,18275662 -g1,12713:9642546,18275662 -g1,12713:9958692,18275662 -g1,12713:10274838,18275662 -g1,12713:10590984,18275662 -g1,12713:10907130,18275662 -g1,12713:11539422,18275662 -g1,12713:12804005,18275662 -g1,12713:13120151,18275662 -g1,12713:13752443,18275662 -h1,12713:14384734,18275662:0,0,0 -k1,12713:32583030,18275662:18198296 -g1,12713:32583030,18275662 -) -(1,12713:6797234,18941840:25785795,410518,101187 -h1,12713:6797234,18941840:0,0,0 -g1,12713:7745671,18941840 -g1,12713:8061817,18941840 -g1,12713:8694109,18941840 -g1,12713:9958692,18941840 -g1,12713:10907129,18941840 -g1,12713:11539421,18941840 -g1,12713:12804004,18941840 -g1,12713:13120150,18941840 -g1,12713:15017024,18941840 -h1,12713:16597752,18941840:0,0,0 -k1,12713:32583029,18941840:15985277 -g1,12713:32583029,18941840 -) -(1,12713:6797234,19608018:25785795,410518,101187 -h1,12713:6797234,19608018:0,0,0 -g1,12713:7745671,19608018 -g1,12713:8061817,19608018 -g1,12713:8694109,19608018 -g1,12713:10274838,19608018 -g1,12713:11539421,19608018 -g1,12713:12804004,19608018 -g1,12713:13120150,19608018 -g1,12713:15017024,19608018 -h1,12713:15965461,19608018:0,0,0 -k1,12713:32583029,19608018:16617568 -g1,12713:32583029,19608018 -) -(1,12713:6797234,20274196:25785795,410518,31456 -h1,12713:6797234,20274196:0,0,0 -g1,12713:7745671,20274196 -g1,12713:8061817,20274196 -g1,12713:8694109,20274196 -g1,12713:9326401,20274196 -g1,12713:11539421,20274196 -g1,12713:12804004,20274196 -g1,12713:13120150,20274196 -g1,12713:14700879,20274196 -h1,12713:15333170,20274196:0,0,0 -k1,12713:32583030,20274196:17249860 -g1,12713:32583030,20274196 -) -(1,12713:6797234,20940374:25785795,410518,76021 -h1,12713:6797234,20940374:0,0,0 -g1,12713:7745671,20940374 -g1,12713:8061817,20940374 -g1,12713:8694109,20940374 -g1,12713:10907129,20940374 -g1,12713:11539421,20940374 -g1,12713:12804004,20940374 -g1,12713:13120150,20940374 -g1,12713:15965461,20940374 -h1,12713:16597752,20940374:0,0,0 -k1,12713:32583029,20940374:15985277 -g1,12713:32583029,20940374 -) -(1,12713:6797234,21606552:25785795,410518,107478 -h1,12713:6797234,21606552:0,0,0 -k1,12713:7707813,21606552:278288 -k1,12713:7986101,21606552:278288 -k1,12713:8580534,21606552:278287 -k1,12713:11071842,21606552:278288 -k1,12713:14827732,21606552:278288 -k1,12713:16054457,21606552:278288 -k1,12713:17913473,21606552:278288 -k1,12713:21037072,21606552:278288 -k1,12713:21947650,21606552:278287 -k1,12713:24755103,21606552:278288 -k1,12713:27562556,21606552:278288 -k1,12713:31002301,21606552:278288 -h1,12713:32583029,21606552:0,0,0 -k1,12713:32583029,21606552:0 -k1,12713:32583029,21606552:0 -) -] -) -g1,12714:32583029,21714030 -g1,12714:6797234,21714030 -g1,12714:6797234,21714030 -g1,12714:32583029,21714030 -g1,12714:32583029,21714030 -) -h1,12714:6797234,21910638:0,0,0 -(1,12718:6797234,23293534:25785795,513147,134348 -h1,12717:6797234,23293534:983040,0,0 -k1,12717:9156951,23293534:179990 -k1,12717:10892110,23293534:179990 -k1,12717:11731392,23293534:179990 -k1,12717:12930467,23293534:179990 -k1,12717:16100865,23293534:179990 -k1,12717:18570683,23293534:179990 -k1,12717:21452721,23293534:179989 -k1,12717:22442081,23293534:179990 -k1,12717:23641156,23293534:179990 -k1,12717:25376315,23293534:179990 -k1,12717:26215597,23293534:179990 -k1,12717:27414672,23293534:179990 -k1,12717:29582369,23293534:179990 -k1,12717:30449832,23293534:179990 -k1,12718:32583029,23293534:0 -) -(1,12718:6797234,24135022:25785795,505283,134348 -(1,12717:6797234,24135022:0,452978,115847 -r1,12804:9969194,24135022:3171960,568825,115847 -k1,12717:6797234,24135022:-3171960 -) -(1,12717:6797234,24135022:3171960,452978,115847 -k1,12717:6797234,24135022:3277 -h1,12717:9965917,24135022:0,411205,112570 -) -g1,12717:10168423,24135022 -g1,12717:10899149,24135022 -g1,12717:11454238,24135022 -g1,12717:13960334,24135022 -g1,12717:16613886,24135022 -g1,12717:18207066,24135022 -g1,12717:21077542,24135022 -k1,12718:32583029,24135022:6592908 -g1,12718:32583029,24135022 -) -v1,12720:6797234,25336902:0,393216,0 -(1,12727:6797234,26318177:25785795,1374491,196608 -g1,12727:6797234,26318177 -g1,12727:6797234,26318177 -g1,12727:6600626,26318177 -(1,12727:6600626,26318177:0,1374491,196608 -r1,12804:32779637,26318177:26179011,1571099,196608 -k1,12727:6600625,26318177:-26179012 -) -(1,12727:6600626,26318177:26179011,1374491,196608 -[1,12727:6797234,26318177:25785795,1177883,0 -(1,12722:6797234,25550812:25785795,410518,101187 -(1,12721:6797234,25550812:0,0,0 -g1,12721:6797234,25550812 -g1,12721:6797234,25550812 -g1,12721:6469554,25550812 -(1,12721:6469554,25550812:0,0,0 -) -g1,12721:6797234,25550812 -) -k1,12722:6797234,25550812:0 -k1,12722:6797234,25550812:0 -h1,12722:12804002,25550812:0,0,0 -k1,12722:32583030,25550812:19779028 -g1,12722:32583030,25550812 -) -(1,12726:6797234,26216990:25785795,404226,101187 -(1,12724:6797234,26216990:0,0,0 -g1,12724:6797234,26216990 -g1,12724:6797234,26216990 -g1,12724:6469554,26216990 -(1,12724:6469554,26216990:0,0,0 -) -g1,12724:6797234,26216990 -) -g1,12726:7745671,26216990 -g1,12726:9010254,26216990 -h1,12726:12804002,26216990:0,0,0 -k1,12726:32583030,26216990:19779028 -g1,12726:32583030,26216990 -) -] -) -g1,12727:32583029,26318177 -g1,12727:6797234,26318177 -g1,12727:6797234,26318177 -g1,12727:32583029,26318177 -g1,12727:32583029,26318177 -) -h1,12727:6797234,26514785:0,0,0 -(1,12731:6797234,27897681:25785795,513147,134348 -h1,12730:6797234,27897681:983040,0,0 -k1,12730:10763342,27897681:198443 -k1,12730:12246291,27897681:198443 -k1,12730:14141460,27897681:198442 -k1,12730:16629731,27897681:198443 -k1,12730:19199922,27897681:198443 -k1,12730:22625358,27897681:198443 -k1,12730:26630787,27897681:198443 -k1,12730:27933511,27897681:198442 -k1,12730:28879720,27897681:198443 -k1,12730:30432137,27897681:198443 -k1,12730:32583029,27897681:0 -) -(1,12731:6797234,28739169:25785795,513147,126483 -k1,12730:7915584,28739169:170699 -k1,12730:10921371,28739169:170700 -k1,12730:12790108,28739169:170699 -k1,12730:13829159,28739169:170699 -k1,12730:15548475,28739169:170700 -k1,12730:16370602,28739169:170699 -k1,12730:18836372,28739169:170699 -k1,12730:20026157,28739169:170700 -k1,12730:22370030,28739169:170699 -k1,12730:24108350,28739169:170699 -k1,12730:25298135,28739169:170700 -k1,12730:26156307,28739169:170699 -k1,12730:26943044,28739169:170699 -k1,12730:27469604,28739169:170700 -k1,12730:30402646,28739169:170699 -k1,12730:32583029,28739169:0 -) -(1,12731:6797234,29580657:25785795,505283,134348 -k1,12730:7650155,29580657:170036 -k1,12730:8471619,29580657:170036 -k1,12730:12075087,29580657:170037 -k1,12730:15472116,29580657:170036 -k1,12730:17163898,29580657:170036 -k1,12730:18016819,29580657:170036 -k1,12730:22754714,29580657:170036 -k1,12730:24196148,29580657:170036 -k1,12730:25733266,29580657:170037 -k1,12730:26434799,29580657:170036 -k1,12730:28792427,29580657:170036 -k1,12730:32583029,29580657:0 -) -(1,12731:6797234,30422145:25785795,505283,134348 -k1,12730:7602235,30422145:153573 -k1,12730:9363405,30422145:153572 -k1,12730:10708423,30422145:153573 -k1,12730:13334668,30422145:153572 -k1,12730:14019738,30422145:153573 -k1,12730:15871348,30422145:153572 -k1,12730:18282636,30422145:153573 -k1,12730:20762737,30422145:153573 -k1,12730:21567737,30422145:153572 -k1,12730:24058979,30422145:153573 -k1,12730:29849303,30422145:153572 -k1,12730:31021961,30422145:153573 -k1,12731:32583029,30422145:0 -) -(1,12731:6797234,31263633:25785795,505283,134348 -k1,12730:8873487,31263633:215686 -k1,12730:11099817,31263633:215685 -k1,12730:13325492,31263633:215686 -k1,12730:14560262,31263633:215685 -k1,12730:16175797,31263633:215686 -k1,12730:17996459,31263633:215685 -k1,12730:19914115,31263633:215686 -k1,12730:20998152,31263633:215685 -k1,12730:22306323,31263633:215686 -(1,12730:22306323,31263633:0,452978,115847 -r1,12804:24071436,31263633:1765113,568825,115847 -k1,12730:22306323,31263633:-1765113 -) -(1,12730:22306323,31263633:1765113,452978,115847 -k1,12730:22306323,31263633:3277 -h1,12730:24068159,31263633:0,411205,112570 -) -k1,12730:24287121,31263633:215685 -k1,12730:25154235,31263633:215686 -k1,12730:26756662,31263633:215685 -k1,12730:27585110,31263633:215686 -k1,12730:28819880,31263633:215685 -k1,12730:31966991,31263633:215686 -k1,12730:32583029,31263633:0 -) -(1,12731:6797234,32105121:25785795,513147,126483 -g1,12730:7352323,32105121 -g1,12730:10728737,32105121 -g1,12730:12339612,32105121 -g1,12730:13730286,32105121 -g1,12730:15383104,32105121 -g1,12730:16195095,32105121 -g1,12730:17551034,32105121 -g1,12730:20373669,32105121 -g1,12730:21259060,32105121 -k1,12731:32583029,32105121:8488882 -g1,12731:32583029,32105121 -) -v1,12733:6797234,33307000:0,393216,0 -(1,12750:6797234,40931180:25785795,8017396,196608 -g1,12750:6797234,40931180 -g1,12750:6797234,40931180 -g1,12750:6600626,40931180 -(1,12750:6600626,40931180:0,8017396,196608 -r1,12804:32779637,40931180:26179011,8214004,196608 -k1,12750:6600625,40931180:-26179012 -) -(1,12750:6600626,40931180:26179011,8017396,196608 -[1,12750:6797234,40931180:25785795,7820788,0 -(1,12735:6797234,33520910:25785795,410518,107478 -(1,12734:6797234,33520910:0,0,0 -g1,12734:6797234,33520910 -g1,12734:6797234,33520910 -g1,12734:6469554,33520910 -(1,12734:6469554,33520910:0,0,0 -) -g1,12734:6797234,33520910 -) -k1,12735:6797234,33520910:0 -g1,12735:12487857,33520910 -g1,12735:15017023,33520910 -g1,12735:15649315,33520910 -g1,12735:17546190,33520910 -g1,12735:20707647,33520910 -g1,12735:21339939,33520910 -g1,12735:23552959,33520910 -g1,12735:26082125,33520910 -g1,12735:26714417,33520910 -h1,12735:27346709,33520910:0,0,0 -k1,12735:32583029,33520910:5236320 -g1,12735:32583029,33520910 -) -(1,12749:6797234,34187088:25785795,410518,107478 -(1,12737:6797234,34187088:0,0,0 -g1,12737:6797234,34187088 -g1,12737:6797234,34187088 -g1,12737:6469554,34187088 -(1,12737:6469554,34187088:0,0,0 -) -g1,12737:6797234,34187088 -) -g1,12749:7745671,34187088 -g1,12749:8061817,34187088 -g1,12749:8694109,34187088 -g1,12749:10274838,34187088 -g1,12749:10590984,34187088 -g1,12749:10907130,34187088 -g1,12749:11223276,34187088 -g1,12749:11539422,34187088 -g1,12749:11855568,34187088 -g1,12749:12171714,34187088 -g1,12749:12487860,34187088 -g1,12749:12804006,34187088 -g1,12749:13436298,34187088 -g1,12749:16281609,34187088 -g1,12749:19759212,34187088 -g1,12749:20391504,34187088 -g1,12749:21972233,34187088 -g1,12749:22604525,34187088 -g1,12749:23236817,34187088 -g1,12749:23869109,34187088 -g1,12749:26082129,34187088 -g1,12749:27662858,34187088 -g1,12749:28295150,34187088 -h1,12749:29875878,34187088:0,0,0 -k1,12749:32583029,34187088:2707151 -g1,12749:32583029,34187088 -) -(1,12749:6797234,34853266:25785795,410518,107478 -h1,12749:6797234,34853266:0,0,0 -g1,12749:7745671,34853266 -g1,12749:8061817,34853266 -g1,12749:8694109,34853266 -g1,12749:10590983,34853266 -g1,12749:10907129,34853266 -g1,12749:11223275,34853266 -g1,12749:11539421,34853266 -g1,12749:11855567,34853266 -g1,12749:12171713,34853266 -g1,12749:12487859,34853266 -g1,12749:12804005,34853266 -g1,12749:15649316,34853266 -g1,12749:18494628,34853266 -g1,12749:21656086,34853266 -g1,12749:21972232,34853266 -g1,12749:24817543,34853266 -g1,12749:26398272,34853266 -g1,12749:27030564,34853266 -g1,12749:27662856,34853266 -g1,12749:28295148,34853266 -h1,12749:29875876,34853266:0,0,0 -k1,12749:32583029,34853266:2707153 -g1,12749:32583029,34853266 -) -(1,12749:6797234,35519444:25785795,410518,76021 -h1,12749:6797234,35519444:0,0,0 -g1,12749:7745671,35519444 -g1,12749:8061817,35519444 -g1,12749:8694109,35519444 -g1,12749:11855566,35519444 -g1,12749:12171712,35519444 -g1,12749:12487858,35519444 -g1,12749:12804004,35519444 -g1,12749:13436296,35519444 -g1,12749:15333170,35519444 -g1,12749:16597753,35519444 -g1,12749:18810773,35519444 -g1,12749:20391502,35519444 -g1,12749:22288376,35519444 -h1,12749:23236813,35519444:0,0,0 -k1,12749:32583029,35519444:9346216 -g1,12749:32583029,35519444 -) -(1,12749:6797234,36185622:25785795,410518,82312 -h1,12749:6797234,36185622:0,0,0 -g1,12749:7745671,36185622 -g1,12749:8061817,36185622 -g1,12749:8694109,36185622 -g1,12749:12804003,36185622 -g1,12749:13436295,36185622 -g1,12749:14700878,36185622 -g1,12749:16597753,36185622 -g1,12749:18178482,36185622 -g1,12749:20391502,36185622 -g1,12749:21972231,36185622 -h1,12749:22920668,36185622:0,0,0 -k1,12749:32583029,36185622:9662361 -g1,12749:32583029,36185622 -) -(1,12749:6797234,36851800:25785795,410518,107478 -h1,12749:6797234,36851800:0,0,0 -g1,12749:7745671,36851800 -g1,12749:8061817,36851800 -g1,12749:8694109,36851800 -g1,12749:11223275,36851800 -g1,12749:11539421,36851800 -g1,12749:11855567,36851800 -g1,12749:12171713,36851800 -g1,12749:12487859,36851800 -g1,12749:12804005,36851800 -g1,12749:13436297,36851800 -g1,12749:15333171,36851800 -g1,12749:16913900,36851800 -g1,12749:18810774,36851800 -g1,12749:20707648,36851800 -h1,12749:22288376,36851800:0,0,0 -k1,12749:32583029,36851800:10294653 -g1,12749:32583029,36851800 -) -(1,12749:6797234,37517978:25785795,410518,107478 -h1,12749:6797234,37517978:0,0,0 -g1,12749:7745671,37517978 -g1,12749:8061817,37517978 -g1,12749:8694109,37517978 -g1,12749:10590983,37517978 -g1,12749:10907129,37517978 -g1,12749:11223275,37517978 -g1,12749:11539421,37517978 -g1,12749:11855567,37517978 -g1,12749:12171713,37517978 -g1,12749:12487859,37517978 -g1,12749:12804005,37517978 -g1,12749:13436297,37517978 -g1,12749:14700880,37517978 -h1,12749:15965463,37517978:0,0,0 -k1,12749:32583029,37517978:16617566 -g1,12749:32583029,37517978 -) -(1,12749:6797234,38184156:25785795,410518,76021 -h1,12749:6797234,38184156:0,0,0 -g1,12749:7745671,38184156 -g1,12749:8061817,38184156 -g1,12749:8694109,38184156 -g1,12749:9642546,38184156 -g1,12749:9958692,38184156 -g1,12749:10274838,38184156 -g1,12749:10590984,38184156 -g1,12749:10907130,38184156 -g1,12749:11223276,38184156 -g1,12749:11539422,38184156 -g1,12749:11855568,38184156 -g1,12749:12171714,38184156 -g1,12749:12487860,38184156 -g1,12749:12804006,38184156 -g1,12749:13436298,38184156 -g1,12749:14700881,38184156 -g1,12749:16597755,38184156 -g1,12749:17230047,38184156 -g1,12749:18178484,38184156 -h1,12749:18494630,38184156:0,0,0 -k1,12749:32583029,38184156:14088399 -g1,12749:32583029,38184156 -) -(1,12749:6797234,38850334:25785795,410518,101187 -h1,12749:6797234,38850334:0,0,0 -g1,12749:7745671,38850334 -g1,12749:8061817,38850334 -g1,12749:8694109,38850334 -g1,12749:11855566,38850334 -g1,12749:12171712,38850334 -g1,12749:12487858,38850334 -g1,12749:12804004,38850334 -g1,12749:13436296,38850334 -g1,12749:14700879,38850334 -h1,12749:16281607,38850334:0,0,0 -k1,12749:32583029,38850334:16301422 -g1,12749:32583029,38850334 -) -(1,12749:6797234,39516512:25785795,410518,107478 -h1,12749:6797234,39516512:0,0,0 -g1,12749:7745671,39516512 -g1,12749:8061817,39516512 -g1,12749:8694109,39516512 -g1,12749:13436295,39516512 -g1,12749:14700878,39516512 -h1,12749:16281606,39516512:0,0,0 -k1,12749:32583029,39516512:16301423 -g1,12749:32583029,39516512 -) -(1,12749:6797234,40182690:25785795,410518,76021 -h1,12749:6797234,40182690:0,0,0 -g1,12749:7745671,40182690 -g1,12749:8061817,40182690 -g1,12749:8694109,40182690 -g1,12749:12171712,40182690 -g1,12749:12487858,40182690 -g1,12749:12804004,40182690 -g1,12749:13436296,40182690 -g1,12749:15333170,40182690 -g1,12749:16597753,40182690 -g1,12749:18494627,40182690 -g1,12749:20075356,40182690 -g1,12749:20707648,40182690 -h1,12749:21656085,40182690:0,0,0 -k1,12749:32583029,40182690:10926944 -g1,12749:32583029,40182690 -) -(1,12749:6797234,40848868:25785795,410518,82312 -h1,12749:6797234,40848868:0,0,0 -g1,12749:7745671,40848868 -g1,12749:8061817,40848868 -g1,12749:8694109,40848868 -g1,12749:12804003,40848868 -g1,12749:13436295,40848868 -g1,12749:14700878,40848868 -g1,12749:16597753,40848868 -g1,12749:18178482,40848868 -g1,12749:20391502,40848868 -g1,12749:22920668,40848868 -h1,12749:23869105,40848868:0,0,0 -k1,12749:32583029,40848868:8713924 -g1,12749:32583029,40848868 -) -] -) -g1,12750:32583029,40931180 -g1,12750:6797234,40931180 -g1,12750:6797234,40931180 -g1,12750:32583029,40931180 -g1,12750:32583029,40931180 -) -h1,12750:6797234,41127788:0,0,0 -(1,12754:6797234,42510685:25785795,513147,134348 -h1,12753:6797234,42510685:983040,0,0 -k1,12753:9598102,42510685:212851 -k1,12753:10679306,42510685:212852 -k1,12753:12615099,42510685:212851 -k1,12753:13847036,42510685:212852 -k1,12753:16991313,42510685:212852 -k1,12753:17863456,42510685:212851 -k1,12753:19095392,42510685:212851 -k1,12753:21267770,42510685:212852 -k1,12753:22672066,42510685:212851 -k1,12753:23904003,42510685:212852 -k1,12753:26185170,42510685:212851 -k1,12753:27057314,42510685:212852 -k1,12753:30397543,42510685:212851 -k1,12753:31478747,42510685:212852 -k1,12753:32583029,42510685:0 -) -(1,12754:6797234,43352173:25785795,513147,134348 -g1,12753:9134903,43352173 -g1,12753:11538108,43352173 -g1,12753:13376392,43352173 -g1,12753:15311014,43352173 -g1,12753:16529328,43352173 -g1,12753:18449532,43352173 -g1,12753:19063604,43352173 -g1,12753:20848804,43352173 -g1,12753:21995684,43352173 -g1,12753:24818319,43352173 -k1,12754:32583029,43352173:4376499 -g1,12754:32583029,43352173 -) -v1,12756:6797234,44554052:0,393216,0 -(1,12763:6797234,45510161:25785795,1349325,196608 -g1,12763:6797234,45510161 -g1,12763:6797234,45510161 -g1,12763:6600626,45510161 -(1,12763:6600626,45510161:0,1349325,196608 -r1,12804:32779637,45510161:26179011,1545933,196608 -k1,12763:6600625,45510161:-26179012 -) -(1,12763:6600626,45510161:26179011,1349325,196608 -[1,12763:6797234,45510161:25785795,1152717,0 -(1,12758:6797234,44767962:25785795,410518,107478 -(1,12757:6797234,44767962:0,0,0 -g1,12757:6797234,44767962 -g1,12757:6797234,44767962 -g1,12757:6469554,44767962 -(1,12757:6469554,44767962:0,0,0 -) -g1,12757:6797234,44767962 -) -k1,12758:6797234,44767962:0 -h1,12758:15017022,44767962:0,0,0 -k1,12758:32583030,44767962:17566008 -g1,12758:32583030,44767962 -) -(1,12762:6797234,45434140:25785795,404226,76021 -(1,12760:6797234,45434140:0,0,0 -g1,12760:6797234,45434140 -g1,12760:6797234,45434140 -g1,12760:6469554,45434140 -(1,12760:6469554,45434140:0,0,0 -) -g1,12760:6797234,45434140 -) -g1,12762:7745671,45434140 -g1,12762:9010254,45434140 -h1,12762:11855565,45434140:0,0,0 -k1,12762:32583029,45434140:20727464 -g1,12762:32583029,45434140 -) -] -) -g1,12763:32583029,45510161 -g1,12763:6797234,45510161 -g1,12763:6797234,45510161 -g1,12763:32583029,45510161 -g1,12763:32583029,45510161 -) -h1,12763:6797234,45706769:0,0,0 -] -g1,12804:32583029,45706769 -) -] -(1,12804:32583029,45706769:0,0,0 -g1,12804:32583029,45706769 -) -) -] -(1,12804:6630773,47279633:25952256,0,0 -h1,12804:6630773,47279633:25952256,0,0 -) -] -(1,12804:4262630,4025873:0,0,0 -[1,12804:-473656,4025873:0,0,0 -(1,12804:-473656,-710413:0,0,0 -(1,12804:-473656,-710413:0,0,0 -g1,12804:-473656,-710413 -) -g1,12804:-473656,-710413 +k1,12150:3078556,49800853:-34777008 ) ] +g1,12150:6630773,4812305 +g1,12150:6630773,4812305 +g1,12150:10836873,4812305 +k1,12150:31387653,4812305:20550780 +) ) ] -!28738 -}218 -Input:1914:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1915:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1916:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1917:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1918:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1919:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1920:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1921:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1922:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1923:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1924:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1046 -{219 -[1,12849:4262630,47279633:28320399,43253760,0 -(1,12849:4262630,4025873:0,0,0 -[1,12849:-473656,4025873:0,0,0 -(1,12849:-473656,-710413:0,0,0 -(1,12849:-473656,-644877:0,0,0 -k1,12849:-473656,-644877:-65536 +[1,12150:6630773,45706769:25952256,40108032,0 +(1,12150:6630773,45706769:25952256,40108032,0 +(1,12150:6630773,45706769:0,0,0 +g1,12150:6630773,45706769 +) +[1,12150:6630773,45706769:25952256,40108032,0 +v1,12114:6630773,6254097:0,393216,0 +(1,12114:6630773,7246971:25952256,1386090,0 +g1,12114:6630773,7246971 +g1,12114:6237557,7246971 +r1,12150:6368629,7246971:131072,1386090,0 +g1,12114:6567858,7246971 +g1,12114:6764466,7246971 +[1,12114:6764466,7246971:25818563,1386090,0 +(1,12114:6764466,6374028:25818563,513147,134348 +h1,12113:8307184,6374028:0,0,0 +k1,12113:8475742,6374028:168558 +k1,12113:9453671,6374028:168559 +k1,12113:11120382,6374028:168558 +h1,12113:12315759,6374028:0,0,0 +k1,12113:12484318,6374028:168559 +k1,12113:13600527,6374028:168558 +k1,12113:15886554,6374028:168559 +k1,12113:16864482,6374028:168558 +k1,12113:18363422,6374028:168559 +k1,12113:19183408,6374028:168558 +k1,12113:22139869,6374028:168559 +k1,12113:25816569,6374028:168558 +k1,12113:26644420,6374028:168559 +k1,12113:28202341,6374028:168558 +k1,12113:30409070,6374028:168559 +k1,12113:31193666,6374028:168558 +k1,12113:32583029,6374028:0 +) +(1,12114:6764466,7239108:25818563,513147,7863 +k1,12114:32583030,7239108:23438296 +g1,12114:32583030,7239108 +) +] +g1,12114:32583029,7246971 +) +h1,12114:6630773,7246971:0,0,0 +(1,12116:6630773,10078131:25952256,32768,229376 +(1,12116:6630773,10078131:0,32768,229376 +(1,12116:6630773,10078131:5505024,32768,229376 +r1,12150:12135797,10078131:5505024,262144,229376 +) +k1,12116:6630773,10078131:-5505024 +) +(1,12116:6630773,10078131:25952256,32768,0 +r1,12150:32583029,10078131:25952256,32768,0 +) +) +(1,12116:6630773,11709983:25952256,606339,14155 +(1,12116:6630773,11709983:1974731,582746,14155 +g1,12116:6630773,11709983 +g1,12116:8605504,11709983 +) +k1,12116:32583029,11709983:18769772 +g1,12116:32583029,11709983 +) +(1,12119:6630773,12968279:25952256,513147,134348 +k1,12118:9590543,12968279:371098 +k1,12118:13743067,12968279:371097 +k1,12118:17313632,12968279:371097 +k1,12118:20285199,12968279:371098 +k1,12118:23682094,12968279:371098 +k1,12118:25244636,12968279:371097 +k1,12118:29011154,12968279:371098 +k1,12118:30041543,12968279:371097 +k1,12119:32583029,12968279:0 +) +(1,12119:6630773,13833359:25952256,513147,134348 +k1,12118:9372803,13833359:247730 +k1,12118:11631178,13833359:247730 +k1,12118:12826559,13833359:247730 +k1,12118:15305790,13833359:247730 +k1,12118:18315862,13833359:247729 +k1,12118:22675321,13833359:247730 +k1,12118:23914611,13833359:247730 +k1,12118:25484202,13833359:247730 +k1,12118:26391224,13833359:247730 +k1,12118:27658039,13833359:247730 +k1,12118:28320563,13833359:247681 +k1,12118:31584260,13833359:247730 +k1,12119:32583029,13833359:0 +) +(1,12119:6630773,14698439:25952256,505283,134348 +k1,12118:8755468,14698439:241846 +(1,12118:8755468,14698439:0,452978,115847 +r1,12150:15444546,14698439:6689078,568825,115847 +k1,12118:8755468,14698439:-6689078 +) +(1,12118:8755468,14698439:6689078,452978,115847 +k1,12118:8755468,14698439:3277 +h1,12118:15441269,14698439:0,411205,112570 +) +k1,12118:15686393,14698439:241847 +k1,12118:16541001,14698439:241846 +k1,12118:17801933,14698439:241847 +k1,12118:18458579,14698439:241803 +k1,12118:21101665,14698439:241847 +k1,12118:22475973,14698439:241846 +k1,12118:24295271,14698439:241846 +k1,12118:24892978,14698439:241847 +k1,12118:26522877,14698439:241846 +k1,12118:28262877,14698439:241847 +k1,12118:31816913,14698439:241846 +k1,12118:32583029,14698439:0 +) +(1,12119:6630773,15563519:25952256,513147,7863 +k1,12118:7860467,15563519:210609 +k1,12118:12182805,15563519:210609 +k1,12118:15177383,15563519:210609 +k1,12118:16004030,15563519:210609 +k1,12118:17648567,15563519:210609 +k1,12118:18447688,15563519:210608 +k1,12118:19700319,15563519:210609 +k1,12118:21362550,15563519:210609 +k1,12118:25354586,15563519:210609 +k1,12118:26584280,15563519:210609 +k1,12118:29557232,15563519:210609 +k1,12118:32583029,15563519:0 +) +(1,12119:6630773,16428599:25952256,513147,115847 +k1,12118:9204959,16428599:202438 +k1,12118:10426481,16428599:202437 +k1,12118:12282392,16428599:202438 +k1,12118:14419452,16428599:202437 +k1,12118:15237928,16428599:202438 +k1,12118:16949005,16428599:202438 +k1,12118:19393429,16428599:202437 +(1,12118:19393429,16428599:0,414482,115847 +r1,12150:20806830,16428599:1413401,530329,115847 +k1,12118:19393429,16428599:-1413401 +) +(1,12118:19393429,16428599:1413401,414482,115847 +k1,12118:19393429,16428599:3277 +h1,12118:20803553,16428599:0,411205,112570 +) +k1,12118:21009268,16428599:202438 +k1,12118:22159357,16428599:202438 +k1,12118:23380879,16428599:202437 +k1,12118:25862004,16428599:202438 +k1,12118:30019539,16428599:202437 +(1,12118:30019539,16428599:0,459977,115847 +r1,12150:31432940,16428599:1413401,575824,115847 +k1,12118:30019539,16428599:-1413401 +) +(1,12118:30019539,16428599:1413401,459977,115847 +k1,12118:30019539,16428599:3277 +h1,12118:31429663,16428599:0,411205,112570 +) +k1,12118:31635378,16428599:202438 +k1,12118:32583029,16428599:0 +) +(1,12119:6630773,17293679:25952256,513147,126483 +k1,12118:7849977,17293679:200119 +k1,12118:10648599,17293679:200119 +k1,12118:14803815,17293679:200118 +k1,12118:16195379,17293679:200119 +k1,12118:17120326,17293679:200119 +k1,12118:18303485,17293679:200119 +k1,12118:19700291,17293679:200119 +k1,12118:22039504,17293679:200118 +k1,12118:22898915,17293679:200119 +k1,12118:24118119,17293679:200119 +k1,12118:26056253,17293679:200119 +k1,12118:29118328,17293679:200118 +k1,12118:30337532,17293679:200119 +k1,12118:31923737,17293679:200119 +k1,12118:32583029,17293679:0 +) +(1,12119:6630773,18158759:25952256,513147,126483 +k1,12118:8838502,18158759:197084 +k1,12118:11987984,18158759:197085 +k1,12118:13206119,18158759:197084 +k1,12118:14350854,18158759:197084 +k1,12118:17054036,18158759:197085 +k1,12118:18255787,18158759:197084 +k1,12118:19400523,18158759:197085 +k1,12118:22371746,18158759:197084 +k1,12118:23457498,18158759:197084 +k1,12118:29104557,18158759:197085 +k1,12118:31391584,18158759:197084 +k1,12118:32583029,18158759:0 +) +(1,12119:6630773,19023839:25952256,513147,126483 +g1,12118:7851053,19023839 +g1,12118:8997933,19023839 +g1,12118:13200756,19023839 +g1,12118:15350336,19023839 +h1,12118:16320924,19023839:0,0,0 +k1,12119:32583029,19023839:15881341 +g1,12119:32583029,19023839 +) +[1,12139:6630773,33131631:25952256,13305602,0 +[1,12139:6630773,33131631:25952256,13305602,0 +(1,12122:6630773,20959146:25952256,477757,0 +h1,12122:6630773,20959146:0,0,0 +g1,12122:9019560,20959146 +k1,12122:32583029,20959146:22573220 +g1,12122:32583029,20959146 +) +(1,12122:6630773,21824226:25952256,513147,126483 +h1,12122:6630773,21824226:0,0,0 +k1,12122:10387953,21824226:177604 +k1,12122:14051418,21824226:177605 +k1,12122:18340751,21824226:177604 +k1,12122:19134393,21824226:177604 +k1,12122:19900510,21824226:177604 +k1,12122:22116940,21824226:177605 +k1,12122:23288070,21824226:177604 +k1,12122:24124966,21824226:177604 +k1,12122:25736499,21824226:177605 +k1,12122:26328924,21824226:177582 +k1,12122:29532326,21824226:177605 +k1,12122:31931601,21824226:177604 +k1,12122:32583029,21824226:0 +) +(1,12122:6630773,22689306:25952256,513147,134348 +k1,12122:10322237,22689306:205604 +k1,12122:14813240,22689306:205604 +k1,12122:16215532,22689306:205605 +k1,12122:17511000,22689306:205604 +k1,12122:18710130,22689306:205604 +k1,12122:20020016,22689306:205604 +k1,12122:20973386,22689306:205604 +k1,12122:23970824,22689306:205604 +k1,12122:24937957,22689306:205605 +k1,12122:28198849,22689306:205604 +k1,12122:29423538,22689306:205604 +k1,12122:32583029,22689306:0 +) +(1,12122:6630773,23554386:25952256,452978,115847 +(1,12122:6630773,23554386:0,452978,115847 +r1,12150:13319851,23554386:6689078,568825,115847 +k1,12122:6630773,23554386:-6689078 +) +(1,12122:6630773,23554386:6689078,452978,115847 +k1,12122:6630773,23554386:3277 +h1,12122:13316574,23554386:0,411205,112570 +) +k1,12122:32583029,23554386:19089508 +g1,12122:32583029,23554386 +) +(1,12138:6630773,33131631:25952256,9048521,0 +k1,12138:6670209,33131631:39436 +h1,12124:6670209,33131631:0,0,0 +k1,12124:6709645,33131631:39436 +[1,12138:6709645,33131631:25833948,9048521,0 +(1,12138:6709645,24148646:25833948,65536,0 +g1,12138:6709645,24148646 +(1,12138:6709645,24148646:25833948,65536,0 +r1,12150:32543593,24148646:25833948,65536,0 +) +g1,12138:32543593,24148646 +) +(1,12138:6709645,28779753:25833948,4565571,4155270 +g1,12138:6709645,28779753 +(1,12138:6709645,28779753:25833948,4565571,4155270 +g1,12124:6908874,28779753 +$1,12138:6908874,28779753 +[1,12138:6908874,28779753:25634719,4565571,4155270 +(1,12127:6908874,25005302:25634719,555093,237900 +g1,12126:6908874,25005302 +(1,12126:6908874,25005302:4544923,555093,237900 +r1,12150:6908874,25005302:0,792993,237900 +g1,12126:7236554,25005302 +g1,12126:7236555,25005302 +k1,12126:11126117,25005302:25559 +g1,12126:11453797,25005302 +) +g1,12126:11453797,25005302 +(1,12126:11453797,25005302:2966816,555093,237900 +g1,12126:11781477,25005302 +g1,12126:11781478,25005302 +g1,12126:14092933,25005302 +g1,12126:14420613,25005302 +) +g1,12126:14420613,25005302 +(1,12126:14420613,25005302:4530745,555093,237900 +g1,12126:14748293,25005302 +g1,12126:14748294,25005302 +k1,12126:18623678,25005302:1542958 +g1,12126:18951358,25005302 +) +g1,12126:18951358,25005302 +(1,12126:18951358,25005302:4530745,555093,237900 +g1,12126:19279038,25005302 +g1,12126:19279039,25005302 +$1,12126:19279039,25005302 +$1,12126:19746966,25005302 +k1,12126:23154423,25005302:3407457 +g1,12126:23482103,25005302 +) +g1,12126:23482103,25005302 +(1,12126:23482103,25005302:4530745,555093,237900 +g1,12126:23809783,25005302 +g1,12126:23809784,25005302 +k1,12126:27685168,25005302:944614 +g1,12126:28012848,25005302 +) +g1,12126:28012848,25005302 +(1,12127:28012848,25005302:4530745,555093,237900 +g1,12126:28340528,25005302 +g1,12126:28340529,25005302 +k1,12127:32215913,25005302:1959111 +g1,12127:32543593,25005302 +) +g1,12127:32543593,25005302 +) +(1,12129:6908874,26127644:25634719,555093,237900 +g1,12128:6908874,26127644 +(1,12128:6908874,26127644:4544923,555093,237900 +r1,12150:6908874,26127644:0,792993,237900 +g1,12128:7236554,26127644 +g1,12128:7236555,26127644 +k1,12128:11126117,26127644:1610875 +g1,12128:11453797,26127644 +) +g1,12128:11453797,26127644 +(1,12128:11453797,26127644:2966816,555093,237900 +g1,12128:11781477,26127644 +g1,12128:11781478,26127644 +$1,12128:11781478,26127644 +$1,12128:12367370,26127644 +k1,12128:14092933,26127644:1725563 +g1,12128:14420613,26127644 +) +g1,12128:14420613,26127644 +(1,12128:14420613,26127644:4530745,555093,237900 +g1,12128:14748293,26127644 +g1,12128:14748294,26127644 +(1,12128:14748294,26127644:0,452978,115847 +r1,12150:17216831,26127644:2468537,568825,115847 +k1,12128:14748294,26127644:-2468537 +) +(1,12128:14748294,26127644:2468537,452978,115847 +k1,12128:14748294,26127644:3277 +h1,12128:17213554,26127644:0,411205,112570 +) +k1,12128:18623678,26127644:1406847 +g1,12128:18951358,26127644 +) +g1,12128:18951358,26127644 +(1,12128:18951358,26127644:4530745,555093,237900 +g1,12128:19279038,26127644 +g1,12128:19279039,26127644 +(1,12128:19279039,26127644:0,452978,115847 +r1,12150:21747576,26127644:2468537,568825,115847 +k1,12128:19279039,26127644:-2468537 +) +(1,12128:19279039,26127644:2468537,452978,115847 +k1,12128:19279039,26127644:3277 +h1,12128:21744299,26127644:0,411205,112570 +) +k1,12128:23154423,26127644:1406847 +g1,12128:23482103,26127644 +) +g1,12128:23482103,26127644 +(1,12128:23482103,26127644:4530745,555093,237900 +g1,12128:23809783,26127644 +g1,12128:23809784,26127644 +(1,12128:23809784,26127644:0,452978,115847 +r1,12150:26278321,26127644:2468537,568825,115847 +k1,12128:23809784,26127644:-2468537 +) +(1,12128:23809784,26127644:2468537,452978,115847 +k1,12128:23809784,26127644:3277 +h1,12128:26275044,26127644:0,411205,112570 +) +k1,12128:27685168,26127644:1406847 +g1,12128:28012848,26127644 +) +g1,12128:28012848,26127644 +(1,12129:28012848,26127644:4530745,555093,237900 +g1,12128:28340528,26127644 +g1,12128:28340529,26127644 +(1,12128:28340529,26127644:0,452978,115847 +r1,12150:30809066,26127644:2468537,568825,115847 +k1,12128:28340529,26127644:-2468537 +) +(1,12128:28340529,26127644:2468537,452978,115847 +k1,12128:28340529,26127644:3277 +h1,12128:30805789,26127644:0,411205,112570 +) +k1,12129:32215913,26127644:1406847 +g1,12129:32543593,26127644 +) +g1,12129:32543593,26127644 +) +(1,12130:6908874,26920637:25634719,555093,237900 +g1,12129:6908874,26920637 +(1,12129:6908874,26920637:4544923,555093,237900 +r1,12150:6908874,26920637:0,792993,237900 +g1,12129:7236554,26920637 +g1,12129:7236555,26920637 +k1,12129:11126117,26920637:918815 +g1,12129:11453797,26920637 +) +g1,12129:11453797,26920637 +(1,12129:11453797,26920637:2966816,555093,237900 +g1,12129:11781477,26920637 +g1,12129:11781478,26920637 +$1,12129:11781478,26920637 +$1,12129:12101949,26920637 +k1,12129:14092933,26920637:1990984 +g1,12129:14420613,26920637 +) +g1,12129:14420613,26920637 +(1,12129:14420613,26920637:4530745,555093,237900 +g1,12129:14748293,26920637 +g1,12129:14748294,26920637 +(1,12129:14748294,26920637:0,452978,115847 +r1,12150:16161695,26920637:1413401,568825,115847 +k1,12129:14748294,26920637:-1413401 +) +(1,12129:14748294,26920637:1413401,452978,115847 +k1,12129:14748294,26920637:3277 +h1,12129:16158418,26920637:0,411205,112570 +) +k1,12129:18623678,26920637:2461983 +g1,12129:18951358,26920637 +) +g1,12129:18951358,26920637 +(1,12129:18951358,26920637:4530745,555093,237900 +g1,12129:19279038,26920637 +g1,12129:19279039,26920637 +(1,12129:19279039,26920637:0,452978,115847 +r1,12150:20692440,26920637:1413401,568825,115847 +k1,12129:19279039,26920637:-1413401 +) +(1,12129:19279039,26920637:1413401,452978,115847 +k1,12129:19279039,26920637:3277 +h1,12129:20689163,26920637:0,411205,112570 +) +k1,12129:23154423,26920637:2461983 +g1,12129:23482103,26920637 +) +g1,12129:23482103,26920637 +(1,12129:23482103,26920637:4530745,555093,237900 +g1,12129:23809783,26920637 +g1,12129:23809784,26920637 +(1,12129:23809784,26920637:0,452978,115847 +r1,12150:25223185,26920637:1413401,568825,115847 +k1,12129:23809784,26920637:-1413401 +) +(1,12129:23809784,26920637:1413401,452978,115847 +k1,12129:23809784,26920637:3277 +h1,12129:25219908,26920637:0,411205,112570 +) +k1,12129:27685168,26920637:2461983 +g1,12129:28012848,26920637 +) +g1,12129:28012848,26920637 +(1,12130:28012848,26920637:4530745,555093,237900 +g1,12129:28340528,26920637 +g1,12129:28340529,26920637 +(1,12129:28340529,26920637:0,452978,115847 +r1,12150:29753930,26920637:1413401,568825,115847 +k1,12129:28340529,26920637:-1413401 +) +(1,12129:28340529,26920637:1413401,452978,115847 +k1,12129:28340529,26920637:3277 +h1,12129:29750653,26920637:0,411205,112570 +) +k1,12130:32215913,26920637:2461983 +g1,12130:32543593,26920637 +) +g1,12130:32543593,26920637 +) +(1,12131:6908874,27713630:25634719,555093,237900 +g1,12130:6908874,27713630 +(1,12130:6908874,27713630:4544923,555093,237900 +r1,12150:6908874,27713630:0,792993,237900 +g1,12130:7236554,27713630 +g1,12130:7236555,27713630 +k1,12130:11126117,27713630:3530425 +g1,12130:11453797,27713630 +) +g1,12130:11453797,27713630 +(1,12130:11453797,27713630:2966816,555093,237900 +g1,12130:11781477,27713630 +g1,12130:11781478,27713630 +$1,12130:11781478,27713630 +$1,12130:12226467,27713630 +k1,12130:14092933,27713630:1866466 +g1,12130:14420613,27713630 +) +g1,12130:14420613,27713630 +(1,12130:14420613,27713630:4530745,555093,237900 +g1,12130:14748293,27713630 +g1,12130:14748294,27713630 +(1,12130:14748294,27713630:0,459977,115847 +r1,12150:16161695,27713630:1413401,575824,115847 +k1,12130:14748294,27713630:-1413401 +) +(1,12130:14748294,27713630:1413401,459977,115847 +k1,12130:14748294,27713630:3277 +h1,12130:16158418,27713630:0,411205,112570 +) +k1,12130:18623678,27713630:2461983 +g1,12130:18951358,27713630 +) +g1,12130:18951358,27713630 +(1,12130:18951358,27713630:4530745,555093,237900 +g1,12130:19279038,27713630 +g1,12130:19279039,27713630 +(1,12130:19279039,27713630:0,459977,115847 +r1,12150:20692440,27713630:1413401,575824,115847 +k1,12130:19279039,27713630:-1413401 +) +(1,12130:19279039,27713630:1413401,459977,115847 +k1,12130:19279039,27713630:3277 +h1,12130:20689163,27713630:0,411205,112570 +) +k1,12130:23154423,27713630:2461983 +g1,12130:23482103,27713630 +) +g1,12130:23482103,27713630 +(1,12130:23482103,27713630:4530745,555093,237900 +g1,12130:23809783,27713630 +g1,12130:23809784,27713630 +(1,12130:23809784,27713630:0,459977,115847 +r1,12150:25223185,27713630:1413401,575824,115847 +k1,12130:23809784,27713630:-1413401 +) +(1,12130:23809784,27713630:1413401,459977,115847 +k1,12130:23809784,27713630:3277 +h1,12130:25219908,27713630:0,411205,112570 +) +k1,12130:27685168,27713630:2461983 +g1,12130:28012848,27713630 +) +g1,12130:28012848,27713630 +(1,12131:28012848,27713630:4530745,555093,237900 +g1,12130:28340528,27713630 +g1,12130:28340529,27713630 +(1,12130:28340529,27713630:0,459977,115847 +r1,12150:29753930,27713630:1413401,575824,115847 +k1,12130:28340529,27713630:-1413401 +) +(1,12130:28340529,27713630:1413401,459977,115847 +k1,12130:28340529,27713630:3277 +h1,12130:29750653,27713630:0,411205,112570 +) +k1,12131:32215913,27713630:2461983 +g1,12131:32543593,27713630 +) +g1,12131:32543593,27713630 +) +(1,12132:6908874,28506623:25634719,555093,237900 +g1,12131:6908874,28506623 +(1,12131:6908874,28506623:4544923,555093,237900 +r1,12150:6908874,28506623:0,792993,237900 +g1,12131:7236554,28506623 +g1,12131:7236555,28506623 +k1,12131:11126117,28506623:1096418 +g1,12131:11453797,28506623 +) +g1,12131:11453797,28506623 +(1,12131:11453797,28506623:2966816,555093,237900 +g1,12131:11781477,28506623 +g1,12131:11781478,28506623 +$1,12131:11781478,28506623 +$1,12131:12229744,28506623 +k1,12131:14092933,28506623:1863189 +g1,12131:14420613,28506623 +) +g1,12131:14420613,28506623 +(1,12131:14420613,28506623:4530745,555093,237900 +g1,12131:14748293,28506623 +g1,12131:14748294,28506623 +(1,12131:14748294,28506623:0,452978,115847 +r1,12150:17568543,28506623:2820249,568825,115847 +k1,12131:14748294,28506623:-2820249 +) +(1,12131:14748294,28506623:2820249,452978,115847 +k1,12131:14748294,28506623:3277 +h1,12131:17565266,28506623:0,411205,112570 +) +k1,12131:18623678,28506623:1055135 +g1,12131:18951358,28506623 +) +g1,12131:18951358,28506623 +(1,12131:18951358,28506623:4530745,555093,237900 +g1,12131:19279038,28506623 +g1,12131:19279039,28506623 +(1,12131:19279039,28506623:0,452978,115847 +r1,12150:22099288,28506623:2820249,568825,115847 +k1,12131:19279039,28506623:-2820249 +) +(1,12131:19279039,28506623:2820249,452978,115847 +k1,12131:19279039,28506623:3277 +h1,12131:22096011,28506623:0,411205,112570 +) +k1,12131:23154423,28506623:1055135 +g1,12131:23482103,28506623 +) +g1,12131:23482103,28506623 +(1,12131:23482103,28506623:4530745,555093,237900 +g1,12131:23809783,28506623 +g1,12131:23809784,28506623 +(1,12131:23809784,28506623:0,452978,115847 +r1,12150:26630033,28506623:2820249,568825,115847 +k1,12131:23809784,28506623:-2820249 +) +(1,12131:23809784,28506623:2820249,452978,115847 +k1,12131:23809784,28506623:3277 +h1,12131:26626756,28506623:0,411205,112570 +) +k1,12131:27685168,28506623:1055135 +g1,12131:28012848,28506623 +) +g1,12131:28012848,28506623 +(1,12132:28012848,28506623:4530745,555093,237900 +g1,12131:28340528,28506623 +g1,12131:28340529,28506623 +(1,12131:28340529,28506623:0,452978,115847 +r1,12150:31160778,28506623:2820249,568825,115847 +k1,12131:28340529,28506623:-2820249 +) +(1,12131:28340529,28506623:2820249,452978,115847 +k1,12131:28340529,28506623:3277 +h1,12131:31157501,28506623:0,411205,112570 +) +k1,12132:32215913,28506623:1055135 +g1,12132:32543593,28506623 +) +g1,12132:32543593,28506623 +) +(1,12133:6908874,29299616:25634719,555093,237900 +g1,12132:6908874,29299616 +(1,12132:6908874,29299616:4544923,555093,237900 +r1,12150:6908874,29299616:0,792993,237900 +g1,12132:7236554,29299616 +g1,12132:7236555,29299616 +g1,12132:11126117,29299616 +g1,12132:11453797,29299616 +) +g1,12132:11453797,29299616 +(1,12132:11453797,29299616:2966816,555093,237900 +g1,12132:11781477,29299616 +g1,12132:11781478,29299616 +$1,12132:11781478,29299616 +$1,12132:12440115,29299616 +k1,12132:14092933,29299616:1652818 +g1,12132:14420613,29299616 +) +g1,12132:14420613,29299616 +(1,12132:14420613,29299616:4530745,555093,237900 +g1,12132:14748293,29299616 +g1,12132:14748294,29299616 +(1,12132:14748294,29299616:0,452978,115847 +r1,12150:18623678,29299616:3875384,568825,115847 +k1,12132:14748294,29299616:-3875384 +) +(1,12132:14748294,29299616:3875384,452978,115847 +k1,12132:14748294,29299616:3277 +h1,12132:18620401,29299616:0,411205,112570 +) +g1,12132:18623678,29299616 +g1,12132:18951358,29299616 +) +g1,12132:18951358,29299616 +(1,12132:18951358,29299616:4530745,555093,237900 +g1,12132:19279038,29299616 +g1,12132:19279039,29299616 +(1,12132:19279039,29299616:0,452978,115847 +r1,12150:23154423,29299616:3875384,568825,115847 +k1,12132:19279039,29299616:-3875384 +) +(1,12132:19279039,29299616:3875384,452978,115847 +k1,12132:19279039,29299616:3277 +h1,12132:23151146,29299616:0,411205,112570 +) +g1,12132:23154423,29299616 +g1,12132:23482103,29299616 +) +g1,12132:23482103,29299616 +(1,12132:23482103,29299616:4530745,555093,237900 +g1,12132:23809783,29299616 +g1,12132:23809784,29299616 +(1,12132:23809784,29299616:0,452978,115847 +r1,12150:27685168,29299616:3875384,568825,115847 +k1,12132:23809784,29299616:-3875384 +) +(1,12132:23809784,29299616:3875384,452978,115847 +k1,12132:23809784,29299616:3277 +h1,12132:27681891,29299616:0,411205,112570 +) +g1,12132:27685168,29299616 +g1,12132:28012848,29299616 +) +g1,12132:28012848,29299616 +(1,12133:28012848,29299616:4530745,555093,237900 +g1,12132:28340528,29299616 +g1,12132:28340529,29299616 +(1,12132:28340529,29299616:0,452978,115847 +r1,12150:32215913,29299616:3875384,568825,115847 +k1,12132:28340529,29299616:-3875384 +) +(1,12132:28340529,29299616:3875384,452978,115847 +k1,12132:28340529,29299616:3277 +h1,12132:32212636,29299616:0,411205,112570 +) +g1,12133:32215913,29299616 +g1,12133:32543593,29299616 +) +g1,12133:32543593,29299616 +) +(1,12134:6908874,30092609:25634719,555093,237900 +g1,12133:6908874,30092609 +(1,12133:6908874,30092609:4544923,555093,237900 +r1,12150:6908874,30092609:0,792993,237900 +g1,12133:7236554,30092609 +g1,12133:7236555,30092609 +k1,12133:11126117,30092609:1448346 +g1,12133:11453797,30092609 +) +g1,12133:11453797,30092609 +(1,12133:11453797,30092609:2966816,555093,237900 +g1,12133:11781477,30092609 +k1,12133:14092933,30092609:2311456 +g1,12133:14420613,30092609 +) +g1,12133:14420613,30092609 +(1,12133:14420613,30092609:4530745,555093,237900 +g1,12133:14748293,30092609 +g1,12133:14748294,30092609 +(1,12133:14748294,30092609:0,452978,115847 +r1,12150:17216831,30092609:2468537,568825,115847 +k1,12133:14748294,30092609:-2468537 +) +(1,12133:14748294,30092609:2468537,452978,115847 +k1,12133:14748294,30092609:3277 +h1,12133:17213554,30092609:0,411205,112570 +) +k1,12133:18623678,30092609:1406847 +g1,12133:18951358,30092609 +) +g1,12133:18951358,30092609 +(1,12133:18951358,30092609:4530745,555093,237900 +g1,12133:19279038,30092609 +g1,12133:19279039,30092609 +(1,12133:19279039,30092609:0,452978,115847 +r1,12150:21747576,30092609:2468537,568825,115847 +k1,12133:19279039,30092609:-2468537 +) +(1,12133:19279039,30092609:2468537,452978,115847 +k1,12133:19279039,30092609:3277 +h1,12133:21744299,30092609:0,411205,112570 +) +k1,12133:23154423,30092609:1406847 +g1,12133:23482103,30092609 +) +g1,12133:23482103,30092609 +(1,12133:23482103,30092609:4530745,555093,237900 +g1,12133:23809783,30092609 +g1,12133:23809784,30092609 +(1,12133:23809784,30092609:0,452978,115847 +r1,12150:26278321,30092609:2468537,568825,115847 +k1,12133:23809784,30092609:-2468537 +) +(1,12133:23809784,30092609:2468537,452978,115847 +k1,12133:23809784,30092609:3277 +h1,12133:26275044,30092609:0,411205,112570 +) +k1,12133:27685168,30092609:1406847 +g1,12133:28012848,30092609 +) +g1,12133:28012848,30092609 +(1,12134:28012848,30092609:4530745,555093,237900 +g1,12133:28340528,30092609 +g1,12133:28340529,30092609 +(1,12133:28340529,30092609:0,452978,115847 +r1,12150:30809066,30092609:2468537,568825,115847 +k1,12133:28340529,30092609:-2468537 +) +(1,12133:28340529,30092609:2468537,452978,115847 +k1,12133:28340529,30092609:3277 +h1,12133:30805789,30092609:0,411205,112570 +) +k1,12134:32215913,30092609:1406847 +g1,12134:32543593,30092609 +) +g1,12134:32543593,30092609 +) +(1,12135:6908874,30945725:25634719,615216,237900 +g1,12134:6908874,30945725 +(1,12134:6908874,30945725:4544923,615216,237900 +r1,12150:6908874,30945725:0,792993,237900 +g1,12134:7236554,30945725 +g1,12134:7236555,30945725 +$1,12134:7236555,30945725 +$1,12134:7719555,30945725 +k1,12134:11126117,30945725:631768 +g1,12134:11453797,30945725 +) +g1,12134:11453797,30945725 +(1,12134:11453797,30945725:2966816,615216,237900 +g1,12134:11781477,30945725 +g1,12134:11781478,30945725 +$1,12134:11781478,30945725 +(1,12134:12264478,30670444:311689,339935,0 +) +$1,12134:12576167,30945725 +k1,12134:14092933,30945725:1516766 +g1,12134:14420613,30945725 +) +g1,12134:14420613,30945725 +(1,12134:14420613,30945725:4530745,615216,237900 +g1,12134:14748293,30945725 +g1,12134:14748294,30945725 +(1,12134:14748294,30945725:0,452978,115847 +r1,12150:17568543,30945725:2820249,568825,115847 +k1,12134:14748294,30945725:-2820249 +) +(1,12134:14748294,30945725:2820249,452978,115847 +k1,12134:14748294,30945725:3277 +h1,12134:17565266,30945725:0,411205,112570 +) +k1,12134:18623678,30945725:1055135 +g1,12134:18951358,30945725 +) +g1,12134:18951358,30945725 +(1,12134:18951358,30945725:4530745,615216,237900 +g1,12134:19279038,30945725 +g1,12134:19279039,30945725 +(1,12134:19279039,30945725:0,452978,115847 +r1,12150:22099288,30945725:2820249,568825,115847 +k1,12134:19279039,30945725:-2820249 +) +(1,12134:19279039,30945725:2820249,452978,115847 +k1,12134:19279039,30945725:3277 +h1,12134:22096011,30945725:0,411205,112570 +) +k1,12134:23154423,30945725:1055135 +g1,12134:23482103,30945725 +) +g1,12134:23482103,30945725 +(1,12134:23482103,30945725:4530745,615216,237900 +g1,12134:23809783,30945725 +g1,12134:23809784,30945725 +(1,12134:23809784,30945725:0,452978,115847 +r1,12150:26630033,30945725:2820249,568825,115847 +k1,12134:23809784,30945725:-2820249 +) +(1,12134:23809784,30945725:2820249,452978,115847 +k1,12134:23809784,30945725:3277 +h1,12134:26626756,30945725:0,411205,112570 +) +k1,12134:27685168,30945725:1055135 +g1,12134:28012848,30945725 +) +g1,12134:28012848,30945725 +(1,12135:28012848,30945725:4530745,615216,237900 +g1,12134:28340528,30945725 +g1,12134:28340529,30945725 +(1,12134:28340529,30945725:0,452978,115847 +r1,12150:31160778,30945725:2820249,568825,115847 +k1,12134:28340529,30945725:-2820249 +) +(1,12134:28340529,30945725:2820249,452978,115847 +k1,12134:28340529,30945725:3277 +h1,12134:31157501,30945725:0,411205,112570 +) +k1,12135:32215913,30945725:1055135 +g1,12135:32543593,30945725 +) +g1,12135:32543593,30945725 +) +(1,12136:6908874,31738718:25634719,555093,237900 +g1,12135:6908874,31738718 +(1,12135:6908874,31738718:4544923,555093,237900 +r1,12150:6908874,31738718:0,792993,237900 +g1,12135:7236554,31738718 +g1,12135:7236555,31738718 +k1,12135:11126117,31738718:424018 +g1,12135:11453797,31738718 +) +g1,12135:11453797,31738718 +(1,12135:11453797,31738718:2966816,555093,237900 +g1,12135:11781477,31738718 +k1,12135:14092933,31738718:2311456 +g1,12135:14420613,31738718 +) +g1,12135:14420613,31738718 +(1,12135:14420613,31738718:4530745,555093,237900 +g1,12135:14748293,31738718 +g1,12135:14748294,31738718 +(1,12135:14748294,31738718:0,452978,115847 +r1,12150:17568543,31738718:2820249,568825,115847 +k1,12135:14748294,31738718:-2820249 +) +(1,12135:14748294,31738718:2820249,452978,115847 +k1,12135:14748294,31738718:3277 +h1,12135:17565266,31738718:0,411205,112570 +) +k1,12135:18623678,31738718:1055135 +g1,12135:18951358,31738718 +) +g1,12135:18951358,31738718 +(1,12135:18951358,31738718:4530745,555093,237900 +g1,12135:19279038,31738718 +g1,12135:19279039,31738718 +(1,12135:19279039,31738718:0,452978,115847 +r1,12150:22099288,31738718:2820249,568825,115847 +k1,12135:19279039,31738718:-2820249 +) +(1,12135:19279039,31738718:2820249,452978,115847 +k1,12135:19279039,31738718:3277 +h1,12135:22096011,31738718:0,411205,112570 +) +k1,12135:23154423,31738718:1055135 +g1,12135:23482103,31738718 +) +g1,12135:23482103,31738718 +(1,12135:23482103,31738718:4530745,555093,237900 +g1,12135:23809783,31738718 +g1,12135:23809784,31738718 +(1,12135:23809784,31738718:0,452978,115847 +r1,12150:26630033,31738718:2820249,568825,115847 +k1,12135:23809784,31738718:-2820249 +) +(1,12135:23809784,31738718:2820249,452978,115847 +k1,12135:23809784,31738718:3277 +h1,12135:26626756,31738718:0,411205,112570 +) +k1,12135:27685168,31738718:1055135 +g1,12135:28012848,31738718 +) +g1,12135:28012848,31738718 +(1,12136:28012848,31738718:4530745,555093,237900 +g1,12135:28340528,31738718 +g1,12135:28340529,31738718 +(1,12135:28340529,31738718:0,452978,115847 +r1,12150:31160778,31738718:2820249,568825,115847 +k1,12135:28340529,31738718:-2820249 +) +(1,12135:28340529,31738718:2820249,452978,115847 +k1,12135:28340529,31738718:3277 +h1,12135:31157501,31738718:0,411205,112570 +) +k1,12136:32215913,31738718:1055135 +g1,12136:32543593,31738718 +) +g1,12136:32543593,31738718 +) +(1,12137:6908874,32531711:25634719,555093,237900 +g1,12136:6908874,32531711 +(1,12136:6908874,32531711:4544923,555093,237900 +r1,12150:6908874,32531711:0,792993,237900 +g1,12136:7236554,32531711 +g1,12136:7236555,32531711 +k1,12136:11126117,32531711:1291059 +g1,12136:11453797,32531711 +) +g1,12136:11453797,32531711 +(1,12136:11453797,32531711:2966816,555093,237900 +g1,12136:11781477,32531711 +k1,12136:14092933,32531711:2311456 +g1,12136:14420613,32531711 +) +g1,12136:14420613,32531711 +(1,12136:14420613,32531711:4530745,555093,237900 +g1,12136:14748293,32531711 +g1,12136:14748294,32531711 +(1,12136:14748294,32531711:0,459977,115847 +r1,12150:17216831,32531711:2468537,575824,115847 +k1,12136:14748294,32531711:-2468537 +) +(1,12136:14748294,32531711:2468537,459977,115847 +k1,12136:14748294,32531711:3277 +h1,12136:17213554,32531711:0,411205,112570 +) +k1,12136:18623678,32531711:1406847 +g1,12136:18951358,32531711 +) +g1,12136:18951358,32531711 +(1,12136:18951358,32531711:4530745,555093,237900 +g1,12136:19279038,32531711 +g1,12136:19279039,32531711 +(1,12136:19279039,32531711:0,459977,115847 +r1,12150:21747576,32531711:2468537,575824,115847 +k1,12136:19279039,32531711:-2468537 +) +(1,12136:19279039,32531711:2468537,459977,115847 +k1,12136:19279039,32531711:3277 +h1,12136:21744299,32531711:0,411205,112570 +) +k1,12136:23154423,32531711:1406847 +g1,12136:23482103,32531711 +) +g1,12136:23482103,32531711 +(1,12136:23482103,32531711:4530745,555093,237900 +g1,12136:23809783,32531711 +g1,12136:23809784,32531711 +(1,12136:23809784,32531711:0,459977,115847 +r1,12150:26278321,32531711:2468537,575824,115847 +k1,12136:23809784,32531711:-2468537 +) +(1,12136:23809784,32531711:2468537,459977,115847 +k1,12136:23809784,32531711:3277 +h1,12136:26275044,32531711:0,411205,112570 +) +k1,12136:27685168,32531711:1406847 +g1,12136:28012848,32531711 +) +g1,12136:28012848,32531711 +(1,12137:28012848,32531711:4530745,555093,237900 +g1,12136:28340528,32531711 +g1,12136:28340529,32531711 +(1,12136:28340529,32531711:0,459977,115847 +r1,12150:30809066,32531711:2468537,575824,115847 +k1,12136:28340529,32531711:-2468537 +) +(1,12136:28340529,32531711:2468537,459977,115847 +k1,12136:28340529,32531711:3277 +h1,12136:30805789,32531711:0,411205,112570 +) +k1,12137:32215913,32531711:1406847 +g1,12137:32543593,32531711 +) +g1,12137:32543593,32531711 +) +] +$1,12138:32543593,28779753 +) +g1,12138:32543593,28779753 +) +(1,12138:6709645,33131631:25833948,65536,0 +g1,12138:6709645,33131631 +(1,12138:6709645,33131631:25833948,65536,0 +r1,12150:32543593,33131631:25833948,65536,0 +) +g1,12138:32543593,33131631 +) +] +g1,12138:32543593,33131631 +k1,12138:32583029,33131631:39436 +) +] +] +(1,12142:6630773,34545935:25952256,513147,126483 +h1,12141:6630773,34545935:983040,0,0 +k1,12141:11356938,34545935:163549 +k1,12141:15632215,34545935:163548 +k1,12141:16787324,34545935:163549 +k1,12141:19332451,34545935:163549 +k1,12141:20257527,34545935:163548 +k1,12141:24744486,34545935:163549 +k1,12141:27933832,34545935:163549 +k1,12141:29381886,34545935:163548 +k1,12141:31593435,34545935:163549 +k1,12142:32583029,34545935:0 +) +(1,12142:6630773,35411015:25952256,513147,126483 +k1,12141:9669724,35411015:204519 +k1,12141:11158749,35411015:204519 +k1,12141:13651130,35411015:204519 +k1,12141:14874734,35411015:204519 +k1,12141:16737969,35411015:204519 +k1,12141:18811575,35411015:204519 +k1,12141:20207539,35411015:204519 +k1,12141:23142288,35411015:204519 +k1,12141:23974642,35411015:204519 +k1,12141:25198246,35411015:204519 +k1,12141:26769846,35411015:204519 +k1,12141:27633657,35411015:204519 +k1,12141:28857261,35411015:204519 +k1,12141:31417799,35411015:204519 +k1,12142:32583029,35411015:0 +) +(1,12142:6630773,36276095:25952256,505283,134348 +k1,12141:9830503,36276095:196870 +k1,12141:11724100,36276095:196870 +k1,12141:15532004,36276095:196870 +k1,12141:16720434,36276095:196870 +k1,12141:17936388,36276095:196869 +k1,12141:19904696,36276095:196870 +k1,12141:23584805,36276095:196870 +k1,12141:26338234,36276095:196870 +k1,12141:27726549,36276095:196870 +k1,12141:31043588,36276095:196870 +k1,12142:32583029,36276095:0 +) +(1,12142:6630773,37141175:25952256,513147,134348 +k1,12141:8655785,37141175:194591 +k1,12141:9740356,37141175:194592 +k1,12141:10723345,37141175:194591 +k1,12141:13232668,37141175:194591 +k1,12141:14446345,37141175:194592 +k1,12141:17580226,37141175:194591 +k1,12141:21258056,37141175:194591 +k1,12141:22471732,37141175:194591 +k1,12141:24829667,37141175:194592 +k1,12141:27313431,37141175:194591 +k1,12141:28527107,37141175:194591 +k1,12141:30710061,37141175:194592 +k1,12141:31563944,37141175:194591 +k1,12141:32583029,37141175:0 +) +(1,12142:6630773,38006255:25952256,513147,95026 +k1,12141:10762937,38006255:177066 +k1,12141:12136690,38006255:177066 +k1,12141:13676250,38006255:177066 +k1,12141:16615659,38006255:177066 +k1,12141:19818522,38006255:177066 +k1,12141:21738847,38006255:177067 +k1,12141:22531951,38006255:177066 +k1,12141:24594488,38006255:177066 +k1,12141:26782199,38006255:177066 +k1,12141:27950825,38006255:177066 +k1,12141:31356850,38006255:177066 +k1,12141:32583029,38006255:0 +) +(1,12142:6630773,38871335:25952256,505283,134348 +g1,12141:10334867,38871335 +g1,12141:11725541,38871335 +g1,12141:13810241,38871335 +g1,12141:16020115,38871335 +g1,12141:17210904,38871335 +g1,12141:20171165,38871335 +g1,12141:21056556,38871335 +g1,12141:24658414,38871335 +g1,12141:26083822,38871335 +g1,12141:28420835,38871335 +k1,12142:32583029,38871335:1742605 +g1,12142:32583029,38871335 +) +(1,12144:6630773,39736415:25952256,513147,126483 +h1,12143:6630773,39736415:983040,0,0 +k1,12143:8451111,39736415:209463 +k1,12143:10209190,39736415:209463 +k1,12143:12734040,39736415:209463 +k1,12143:13811855,39736415:209463 +k1,12143:15113803,39736415:209463 +k1,12143:16342351,39736415:209463 +k1,12143:18830502,39736415:209464 +k1,12143:22821392,39736415:209463 +k1,12143:23717017,39736415:209463 +k1,12143:24697183,39736415:209463 +k1,12143:27741733,39736415:209463 +k1,12143:29023365,39736415:209463 +k1,12143:30626779,39736415:209463 +k1,12144:32583029,39736415:0 +) +(1,12144:6630773,40601495:25952256,513147,126483 +k1,12143:8611795,40601495:207618 +k1,12143:9435451,40601495:207618 +k1,12143:11151708,40601495:207618 +k1,12143:15144030,40601495:207618 +k1,12143:16370733,40601495:207618 +k1,12143:19604147,40601495:207617 +k1,12143:20759416,40601495:207618 +k1,12143:22669004,40601495:207618 +k1,12143:26278596,40601495:207618 +k1,12143:30597943,40601495:207618 +k1,12143:32583029,40601495:0 +) +(1,12144:6630773,41466575:25952256,505283,134348 +g1,12143:7185862,41466575 +g1,12143:9587101,41466575 +g1,12143:12167253,41466575 +k1,12144:32583029,41466575:17901160 +g1,12144:32583029,41466575 +) +(1,12145:6630773,43583393:25952256,564462,139132 +(1,12145:6630773,43583393:2450326,534184,12975 +g1,12145:6630773,43583393 +g1,12145:9081099,43583393 +) +g1,12145:12118955,43583393 +g1,12145:14118721,43583393 +k1,12145:32583029,43583393:14360968 +g1,12145:32583029,43583393 +) +(1,12148:6630773,44841689:25952256,513147,134348 +k1,12147:7633430,44841689:173627 +k1,12147:9830808,44841689:173626 +k1,12147:10360295,44841689:173627 +k1,12147:12406941,44841689:173627 +k1,12147:14268775,44841689:173627 +k1,12147:16010022,44841689:173626 +k1,12147:17202734,44841689:173627 +k1,12147:21157788,44841689:173627 +k1,12147:23072707,44841689:173627 +k1,12147:24114685,44841689:173626 +k1,12147:25725517,44841689:173627 +k1,12147:26255004,44841689:173627 +k1,12147:28406508,44841689:173627 +k1,12147:29239426,44841689:173626 +k1,12147:31426319,44841689:173627 +k1,12147:32583029,44841689:0 +) +(1,12148:6630773,45706769:25952256,513147,134348 +g1,12147:7516164,45706769 +g1,12147:8486096,45706769 +g1,12147:11757653,45706769 +g1,12147:12904533,45706769 +(1,12147:12904533,45706769:0,414482,115847 +r1,12150:13262799,45706769:358266,530329,115847 +k1,12147:12904533,45706769:-358266 +) +(1,12147:12904533,45706769:358266,414482,115847 +k1,12147:12904533,45706769:3277 +h1,12147:13259522,45706769:0,411205,112570 +) +k1,12148:32583029,45706769:19146560 +g1,12148:32583029,45706769 +) +] +(1,12150:32583029,45706769:0,0,0 +g1,12150:32583029,45706769 +) +) +] +(1,12150:6630773,47279633:25952256,0,0 +h1,12150:6630773,47279633:25952256,0,0 +) +] +(1,12150:4262630,4025873:0,0,0 +[1,12150:-473656,4025873:0,0,0 +(1,12150:-473656,-710413:0,0,0 +(1,12150:-473656,-710413:0,0,0 +g1,12150:-473656,-710413 +) +g1,12150:-473656,-710413 +) +] +) +] +!39544 +}196 +Input:1815:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1816:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1817:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1818:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!388 +{197 +[1,12229:4262630,47279633:28320399,43253760,0 +(1,12229:4262630,4025873:0,0,0 +[1,12229:-473656,4025873:0,0,0 +(1,12229:-473656,-710413:0,0,0 +(1,12229:-473656,-644877:0,0,0 +k1,12229:-473656,-644877:-65536 ) -(1,12849:-473656,4736287:0,0,0 -k1,12849:-473656,4736287:5209943 +(1,12229:-473656,4736287:0,0,0 +k1,12229:-473656,4736287:5209943 ) -g1,12849:-473656,-710413 +g1,12229:-473656,-710413 ) ] ) -[1,12849:6630773,47279633:25952256,43253760,0 -[1,12849:6630773,4812305:25952256,786432,0 -(1,12849:6630773,4812305:25952256,513147,126483 -(1,12849:6630773,4812305:25952256,513147,126483 -g1,12849:3078558,4812305 -[1,12849:3078558,4812305:0,0,0 -(1,12849:3078558,2439708:0,1703936,0 -k1,12849:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,12849:2537886,2439708:1179648,16384,0 +[1,12229:6630773,47279633:25952256,43253760,0 +[1,12229:6630773,4812305:25952256,786432,0 +(1,12229:6630773,4812305:25952256,513147,126483 +(1,12229:6630773,4812305:25952256,513147,126483 +g1,12229:3078558,4812305 +[1,12229:3078558,4812305:0,0,0 +(1,12229:3078558,2439708:0,1703936,0 +k1,12229:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,12229:2537886,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,12849:3078558,1915420:16384,1179648,0 +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,12229:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] ) ) ) ] -[1,12849:3078558,4812305:0,0,0 -(1,12849:3078558,2439708:0,1703936,0 -g1,12849:29030814,2439708 -g1,12849:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,12849:36151628,1915420:16384,1179648,0 +[1,12229:3078558,4812305:0,0,0 +(1,12229:3078558,2439708:0,1703936,0 +g1,12229:29030814,2439708 +g1,12229:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,12229:36151628,1915420:16384,1179648,0 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,12849:37855564,2439708:1179648,16384,0 +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,12229:37855564,2439708:1179648,16384,0 ) ) -k1,12849:3078556,2439708:-34777008 -) -] -[1,12849:3078558,4812305:0,0,0 -(1,12849:3078558,49800853:0,16384,2228224 -k1,12849:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,12849:2537886,49800853:1179648,16384,0 -) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,12849:3078558,51504789:16384,1179648,0 -) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 +k1,12229:3078556,2439708:-34777008 ) ] +[1,12229:3078558,4812305:0,0,0 +(1,12229:3078558,49800853:0,16384,2228224 +k1,12229:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,12229:2537886,49800853:1179648,16384,0 ) +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,12229:3078558,51504789:16384,1179648,0 ) +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 ) ] -[1,12849:3078558,4812305:0,0,0 -(1,12849:3078558,49800853:0,16384,2228224 -g1,12849:29030814,49800853 -g1,12849:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,12849:36151628,51504789:16384,1179648,0 -) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 -) -] -) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,12849:37855564,49800853:1179648,16384,0 -) -) -k1,12849:3078556,49800853:-34777008 -) -] -g1,12849:6630773,4812305 -k1,12849:19540057,4812305:11713907 -g1,12849:21162728,4812305 -g1,12849:21985204,4812305 -g1,12849:24539797,4812305 -g1,12849:25949476,4812305 -g1,12849:28728857,4812305 -g1,12849:29852144,4812305 -) -) -] -[1,12849:6630773,45706769:25952256,40108032,0 -(1,12849:6630773,45706769:25952256,40108032,0 -(1,12849:6630773,45706769:0,0,0 -g1,12849:6630773,45706769 -) -[1,12849:6630773,45706769:25952256,40108032,0 -v1,12804:6630773,6254097:0,393216,0 -(1,12804:6630773,22392357:25952256,16531476,0 -g1,12804:6630773,22392357 -g1,12804:6303093,22392357 -r1,12849:6401397,22392357:98304,16531476,0 -g1,12804:6600626,22392357 -g1,12804:6797234,22392357 -[1,12804:6797234,22392357:25785795,16531476,0 -(1,12767:6797234,6374028:25785795,513147,126483 -h1,12766:6797234,6374028:983040,0,0 -k1,12766:9007499,6374028:273676 -k1,12766:10385457,6374028:273676 -k1,12766:11944949,6374028:273676 -k1,12766:14587096,6374028:273676 -k1,12766:15879857,6374028:273676 -k1,12766:19084958,6374028:273676 -k1,12766:20017926,6374028:273676 -k1,12766:23484516,6374028:273676 -k1,12766:26885570,6374028:273676 -k1,12766:28355933,6374028:273676 -(1,12766:28355933,6374028:0,459977,115847 -r1,12849:32583029,6374028:4227096,575824,115847 -k1,12766:28355933,6374028:-4227096 -) -(1,12766:28355933,6374028:4227096,459977,115847 -k1,12766:28355933,6374028:3277 -h1,12766:32579752,6374028:0,411205,112570 -) -k1,12766:32583029,6374028:0 -) -(1,12767:6797234,7215516:25785795,513147,134348 -k1,12766:10095988,7215516:252641 -k1,12766:10964668,7215516:252642 -k1,12766:12236394,7215516:252641 -k1,12766:15479443,7215516:252641 -k1,12766:16723645,7215516:252642 -k1,12766:21174522,7215516:252641 -k1,12766:22188691,7215516:252641 -k1,12766:25487445,7215516:252641 -k1,12766:26687738,7215516:252642 -k1,12766:27959464,7215516:252641 -k1,12766:32583029,7215516:0 -) -(1,12767:6797234,8057004:25785795,505283,134348 -k1,12766:9854433,8057004:213592 -k1,12766:12178941,8057004:213593 -k1,12766:14568328,8057004:213592 -k1,12766:15973365,8057004:213592 -k1,12766:18515451,8057004:213592 -k1,12766:21948828,8057004:213593 -k1,12766:23851938,8057004:213592 -k1,12766:24681568,8057004:213592 -k1,12766:25914245,8057004:213592 -k1,12766:28115545,8057004:213593 -k1,12766:30288663,8057004:213592 -(1,12766:30288663,8057004:0,459977,115847 -r1,12849:31350352,8057004:1061689,575824,115847 -k1,12766:30288663,8057004:-1061689 -) -(1,12766:30288663,8057004:1061689,459977,115847 -k1,12766:30288663,8057004:3277 -h1,12766:31347075,8057004:0,411205,112570 -) -k1,12766:31563944,8057004:213592 -k1,12766:32583029,8057004:0 -) -(1,12767:6797234,8898492:25785795,505283,7863 -g1,12766:10223456,8898492 -g1,12766:13468798,8898492 -g1,12766:14659587,8898492 -g1,12766:15925087,8898492 -k1,12767:32583029,8898492:13725861 -g1,12767:32583029,8898492 -) -v1,12769:6797234,10088958:0,393216,0 -(1,12801:6797234,21671461:25785795,11975719,196608 -g1,12801:6797234,21671461 -g1,12801:6797234,21671461 -g1,12801:6600626,21671461 -(1,12801:6600626,21671461:0,11975719,196608 -r1,12849:32779637,21671461:26179011,12172327,196608 -k1,12801:6600625,21671461:-26179012 -) -(1,12801:6600626,21671461:26179011,11975719,196608 -[1,12801:6797234,21671461:25785795,11779111,0 -(1,12771:6797234,10302868:25785795,410518,76021 -(1,12770:6797234,10302868:0,0,0 -g1,12770:6797234,10302868 -g1,12770:6797234,10302868 -g1,12770:6469554,10302868 -(1,12770:6469554,10302868:0,0,0 -) -g1,12770:6797234,10302868 -) -k1,12771:6797234,10302868:0 -h1,12771:9642545,10302868:0,0,0 -k1,12771:32583029,10302868:22940484 -g1,12771:32583029,10302868 -) -(1,12776:6797234,10969046:25785795,404226,101187 -(1,12773:6797234,10969046:0,0,0 -g1,12773:6797234,10969046 -g1,12773:6797234,10969046 -g1,12773:6469554,10969046 -(1,12773:6469554,10969046:0,0,0 -) -g1,12773:6797234,10969046 -) -g1,12776:7745671,10969046 -g1,12776:11539419,10969046 -g1,12776:11855565,10969046 -g1,12776:12171711,10969046 -g1,12776:12487857,10969046 -g1,12776:12804003,10969046 -g1,12776:13120149,10969046 -g1,12776:13436295,10969046 -h1,12776:15017023,10969046:0,0,0 -k1,12776:32583029,10969046:17566006 -g1,12776:32583029,10969046 -) -(1,12776:6797234,11635224:25785795,388497,9436 -h1,12776:6797234,11635224:0,0,0 -g1,12776:7745671,11635224 -g1,12776:8061817,11635224 -g1,12776:11539420,11635224 -g1,12776:11855566,11635224 -g1,12776:12171712,11635224 -g1,12776:12487858,11635224 -h1,12776:15017023,11635224:0,0,0 -k1,12776:32583029,11635224:17566006 -g1,12776:32583029,11635224 -) -(1,12778:6797234,12956762:25785795,410518,76021 -(1,12777:6797234,12956762:0,0,0 -g1,12777:6797234,12956762 -g1,12777:6797234,12956762 -g1,12777:6469554,12956762 -(1,12777:6469554,12956762:0,0,0 -) -g1,12777:6797234,12956762 -) -k1,12778:6797234,12956762:0 -h1,12778:13436294,12956762:0,0,0 -k1,12778:32583030,12956762:19146736 -g1,12778:32583030,12956762 -) -(1,12783:6797234,13622940:25785795,404226,76021 -(1,12780:6797234,13622940:0,0,0 -g1,12780:6797234,13622940 -g1,12780:6797234,13622940 -g1,12780:6469554,13622940 -(1,12780:6469554,13622940:0,0,0 -) -g1,12780:6797234,13622940 -) -g1,12783:7745671,13622940 -g1,12783:8061817,13622940 -g1,12783:9958691,13622940 -g1,12783:11223274,13622940 -g1,12783:13120148,13622940 -g1,12783:15333168,13622940 -h1,12783:16597751,13622940:0,0,0 -k1,12783:32583029,13622940:15985278 -g1,12783:32583029,13622940 -) -(1,12783:6797234,14289118:25785795,404226,101187 -h1,12783:6797234,14289118:0,0,0 -g1,12783:7745671,14289118 -g1,12783:8061817,14289118 -g1,12783:8694109,14289118 -g1,12783:11223275,14289118 -g1,12783:14384732,14289118 -g1,12783:15649315,14289118 -g1,12783:17546189,14289118 -g1,12783:21972229,14289118 -h1,12783:24185249,14289118:0,0,0 -k1,12783:32583029,14289118:8397780 -g1,12783:32583029,14289118 -) -(1,12785:6797234,15610656:25785795,410518,101187 -(1,12784:6797234,15610656:0,0,0 -g1,12784:6797234,15610656 -g1,12784:6797234,15610656 -g1,12784:6469554,15610656 -(1,12784:6469554,15610656:0,0,0 -) -g1,12784:6797234,15610656 -) -k1,12785:6797234,15610656:0 -k1,12785:6797234,15610656:0 -h1,12785:16913896,15610656:0,0,0 -k1,12785:32583029,15610656:15669133 -g1,12785:32583029,15610656 -) -(1,12791:6797234,16276834:25785795,404226,76021 -(1,12787:6797234,16276834:0,0,0 -g1,12787:6797234,16276834 -g1,12787:6797234,16276834 -g1,12787:6469554,16276834 -(1,12787:6469554,16276834:0,0,0 -) -g1,12787:6797234,16276834 -) -g1,12791:7745671,16276834 -g1,12791:8061817,16276834 -g1,12791:8377963,16276834 -g1,12791:8694109,16276834 -g1,12791:9010255,16276834 -g1,12791:9326401,16276834 -g1,12791:9642547,16276834 -g1,12791:9958693,16276834 -g1,12791:10274839,16276834 -g1,12791:10590985,16276834 -g1,12791:10907131,16276834 -g1,12791:11223277,16276834 -g1,12791:11539423,16276834 -g1,12791:11855569,16276834 -g1,12791:12171715,16276834 -g1,12791:15017026,16276834 -g1,12791:16597755,16276834 -g1,12791:18494629,16276834 -g1,12791:18810775,16276834 -g1,12791:19126921,16276834 -g1,12791:19759213,16276834 -g1,12791:21656087,16276834 -g1,12791:21972233,16276834 -g1,12791:22288379,16276834 -g1,12791:22604525,16276834 -g1,12791:22920671,16276834 -k1,12791:22920671,16276834:0 -h1,12791:25449836,16276834:0,0,0 -k1,12791:32583029,16276834:7133193 -g1,12791:32583029,16276834 -) -(1,12791:6797234,16943012:25785795,404226,101187 -h1,12791:6797234,16943012:0,0,0 -g1,12791:7745671,16943012 -g1,12791:11539419,16943012 -g1,12791:15017022,16943012 -g1,12791:15333168,16943012 -g1,12791:18494625,16943012 -g1,12791:21656082,16943012 -k1,12791:21656082,16943012:0 -h1,12791:25449830,16943012:0,0,0 -k1,12791:32583029,16943012:7133199 -g1,12791:32583029,16943012 -) -(1,12791:6797234,17609190:25785795,404226,101187 -h1,12791:6797234,17609190:0,0,0 -g1,12791:7745671,17609190 -g1,12791:9642545,17609190 -g1,12791:9958691,17609190 -g1,12791:10274837,17609190 -g1,12791:10590983,17609190 -g1,12791:10907129,17609190 -g1,12791:11223275,17609190 -g1,12791:11539421,17609190 -g1,12791:11855567,17609190 -g1,12791:12171713,17609190 -g1,12791:15017024,17609190 -g1,12791:15333170,17609190 -g1,12791:18494627,17609190 -g1,12791:18810773,17609190 -g1,12791:21656084,17609190 -k1,12791:21656084,17609190:0 -h1,12791:25449832,17609190:0,0,0 -k1,12791:32583029,17609190:7133197 -g1,12791:32583029,17609190 -) -(1,12793:6797234,18930728:25785795,410518,101187 -(1,12792:6797234,18930728:0,0,0 -g1,12792:6797234,18930728 -g1,12792:6797234,18930728 -g1,12792:6469554,18930728 -(1,12792:6469554,18930728:0,0,0 -) -g1,12792:6797234,18930728 -) -k1,12793:6797234,18930728:0 -k1,12793:6797234,18930728:0 -h1,12793:16281605,18930728:0,0,0 -k1,12793:32583029,18930728:16301424 -g1,12793:32583029,18930728 -) -(1,12800:6797234,19596906:25785795,404226,82312 -(1,12795:6797234,19596906:0,0,0 -g1,12795:6797234,19596906 -g1,12795:6797234,19596906 -g1,12795:6469554,19596906 -(1,12795:6469554,19596906:0,0,0 -) -g1,12795:6797234,19596906 -) -g1,12800:7745671,19596906 -g1,12800:8061817,19596906 -g1,12800:9326400,19596906 -g1,12800:11223275,19596906 -g1,12800:12804004,19596906 -g1,12800:15333170,19596906 -g1,12800:17230044,19596906 -g1,12800:19126918,19596906 -g1,12800:21023792,19596906 -g1,12800:23236812,19596906 -h1,12800:24185249,19596906:0,0,0 -k1,12800:32583029,19596906:8397780 -g1,12800:32583029,19596906 -) -(1,12800:6797234,20263084:25785795,410518,82312 -h1,12800:6797234,20263084:0,0,0 -g1,12800:7745671,20263084 -g1,12800:8061817,20263084 -g1,12800:8694109,20263084 -g1,12800:11223275,20263084 -g1,12800:16597752,20263084 -g1,12800:17546189,20263084 -h1,12800:17862335,20263084:0,0,0 -k1,12800:32583029,20263084:14720694 -g1,12800:32583029,20263084 -) -(1,12800:6797234,20929262:25785795,410518,101187 -h1,12800:6797234,20929262:0,0,0 -g1,12800:7745671,20929262 -g1,12800:8061817,20929262 -g1,12800:8377963,20929262 -g1,12800:9642546,20929262 -g1,12800:10274838,20929262 -g1,12800:11539421,20929262 -g1,12800:13436295,20929262 -g1,12800:17862335,20929262 -h1,12800:20075355,20929262:0,0,0 -k1,12800:32583029,20929262:12507674 -g1,12800:32583029,20929262 -) -(1,12800:6797234,21595440:25785795,410518,76021 -h1,12800:6797234,21595440:0,0,0 -g1,12800:7745671,21595440 -g1,12800:8061817,21595440 -g1,12800:8377963,21595440 -g1,12800:9642546,21595440 -g1,12800:10274838,21595440 -g1,12800:11539421,21595440 -g1,12800:13436295,21595440 -g1,12800:16913898,21595440 -g1,12800:18810772,21595440 -g1,12800:21023792,21595440 -g1,12800:21972229,21595440 -g1,12800:24185249,21595440 -k1,12800:24185249,21595440:0 -h1,12800:27346706,21595440:0,0,0 -k1,12800:32583029,21595440:5236323 -g1,12800:32583029,21595440 -) -] -) -g1,12801:32583029,21671461 -g1,12801:6797234,21671461 -g1,12801:6797234,21671461 -g1,12801:32583029,21671461 -g1,12801:32583029,21671461 -) -h1,12801:6797234,21868069:0,0,0 -] -g1,12804:32583029,22392357 -) -h1,12804:6630773,22392357:0,0,0 -v1,12807:6630773,23758133:0,393216,0 -(1,12849:6630773,45354354:25952256,21989437,0 -g1,12849:6630773,45354354 -g1,12849:6303093,45354354 -r1,12849:6401397,45354354:98304,21989437,0 -g1,12849:6600626,45354354 -g1,12849:6797234,45354354 -[1,12849:6797234,45354354:25785795,21989437,0 -(1,12808:6797234,24190671:25785795,825754,196608 -(1,12807:6797234,24190671:0,825754,196608 -r1,12849:8834093,24190671:2036859,1022362,196608 -k1,12807:6797234,24190671:-2036859 -) -(1,12807:6797234,24190671:2036859,825754,196608 -) -k1,12807:9104883,24190671:270790 -k1,12807:10831101,24190671:327680 -k1,12807:11919779,24190671:270789 -k1,12807:12961272,24190671:270790 -k1,12807:15893478,24190671:270789 -k1,12807:16823560,24190671:270790 -k1,12807:18113434,24190671:270789 -k1,12807:19476709,24190671:270790 -k1,12807:20406790,24190671:270789 -k1,12807:22688225,24190671:270790 -k1,12807:25931072,24190671:270789 -k1,12807:27769483,24190671:270790 -k1,12807:29059357,24190671:270789 -(1,12807:29059357,24190671:0,452978,115847 -r1,12849:32583029,24190671:3523672,568825,115847 -k1,12807:29059357,24190671:-3523672 -) -(1,12807:29059357,24190671:3523672,452978,115847 -k1,12807:29059357,24190671:3277 -h1,12807:32579752,24190671:0,411205,112570 -) -k1,12807:32583029,24190671:0 -) -(1,12808:6797234,25032159:25785795,513147,134348 -k1,12807:9130820,25032159:200389 -k1,12807:10199561,25032159:200389 -k1,12807:11591395,25032159:200389 -k1,12807:12257744,25032159:200388 -k1,12807:13477218,25032159:200389 -k1,12807:15375645,25032159:200389 -k1,12807:17143655,25032159:200389 -k1,12807:17699904,25032159:200389 -k1,12807:19713019,25032159:200389 -k1,12807:23230184,25032159:200388 -k1,12807:24118046,25032159:200389 -k1,12807:26935288,25032159:200389 -k1,12807:31015408,25032159:200389 -k1,12807:32583029,25032159:0 -) -(1,12808:6797234,25873647:25785795,513147,126483 -k1,12807:7373250,25873647:220156 -k1,12807:10351160,25873647:220155 -k1,12807:12251659,25873647:220156 -k1,12807:15234158,25873647:220156 -k1,12807:17021934,25873647:220155 -k1,12807:18261175,25873647:220156 -k1,12807:20202306,25873647:220156 -k1,12807:22016297,25873647:220155 -k1,12807:22724020,25873647:220135 -k1,12807:24184116,25873647:220155 -k1,12807:27876369,25873647:220156 -k1,12807:28755817,25873647:220156 -k1,12807:30396137,25873647:220155 -k1,12807:31563944,25873647:220156 -k1,12807:32583029,25873647:0 -) -(1,12808:6797234,26715135:25785795,513147,126483 -k1,12807:8777631,26715135:282359 -k1,12807:10581736,26715135:282359 -k1,12807:11811747,26715135:282360 -k1,12807:13113191,26715135:282359 -k1,12807:16225395,26715135:282359 -k1,12807:17167046,26715135:282359 -k1,12807:18220109,26715135:282360 -k1,12807:20873561,26715135:282359 -k1,12807:21815212,26715135:282359 -k1,12807:22868274,26715135:282359 -k1,12807:26916333,26715135:282360 -k1,12807:29883702,26715135:282359 -k1,12807:32051532,26715135:282359 -k1,12807:32583029,26715135:0 -) -(1,12808:6797234,27556623:25785795,513147,134348 -k1,12807:9261006,27556623:176565 -k1,12807:10096863,27556623:176565 -k1,12807:12716609,27556623:176564 -k1,12807:13509212,27556623:176565 -k1,12807:14456480,27556623:176565 -k1,12807:18415783,27556623:176565 -k1,12807:19220183,27556623:176565 -k1,12807:22201689,27556623:176565 -k1,12807:24076291,27556623:176564 -k1,12807:26434550,27556623:176565 -k1,12807:27558766,27556623:176565 -k1,12807:31015408,27556623:176565 -k1,12807:32583029,27556623:0 -) -(1,12808:6797234,28398111:25785795,513147,134348 -k1,12807:7382579,28398111:229485 -k1,12807:11019937,28398111:229486 -k1,12807:12010950,28398111:229485 -k1,12807:15643720,28398111:229485 -k1,12807:17045645,28398111:229486 -k1,12807:21150929,28398111:229485 -k1,12807:22063299,28398111:229485 -k1,12807:23063488,28398111:229486 -k1,12807:26838471,28398111:229485 -k1,12807:28259401,28398111:229485 -k1,12807:28844747,28398111:229486 -k1,12807:32227169,28398111:229485 -k1,12807:32583029,28398111:0 -) -(1,12808:6797234,29239599:25785795,513147,126483 -k1,12807:8288740,29239599:251565 -k1,12807:12012401,29239599:251564 -k1,12807:12923258,29239599:251565 -k1,12807:14331532,29239599:251564 -k1,12807:15530748,29239599:251565 -k1,12807:16801397,29239599:251564 -k1,12807:18751000,29239599:251565 -k1,12807:20135027,29239599:251565 -k1,12807:21578036,29239599:251564 -k1,12807:22777252,29239599:251565 -k1,12807:26308893,29239599:251564 -k1,12807:28128079,29239599:251565 -k1,12807:29398728,29239599:251564 -k1,12807:30957736,29239599:251565 -k1,12808:32583029,29239599:0 -) -(1,12808:6797234,30081087:25785795,513147,134348 -k1,12807:8506588,30081087:215133 -k1,12807:9349555,30081087:215132 -k1,12807:11256828,30081087:215133 -k1,12807:13343014,30081087:215133 -k1,12807:14426499,30081087:215133 -k1,12807:15978565,30081087:215132 -k1,12807:17742314,30081087:215133 -k1,12807:18608875,30081087:215133 -k1,12807:20015453,30081087:215133 -k1,12807:20696546,30081087:215132 -k1,12807:21930764,30081087:215133 -k1,12807:24861709,30081087:215133 -k1,12807:26024493,30081087:215133 -k1,12807:26595485,30081087:215132 -k1,12807:30091350,30081087:215133 -k1,12807:32583029,30081087:0 -) -(1,12808:6797234,30922575:25785795,505283,126483 -k1,12807:8773443,30922575:284069 -k1,12807:10759481,30922575:284068 -k1,12807:12897564,30922575:284069 -k1,12807:14675198,30922575:284068 -k1,12807:15645429,30922575:284069 -k1,12807:19286251,30922575:284068 -k1,12807:22100010,30922575:284069 -k1,12807:25831927,30922575:284068 -k1,12807:26743831,30922575:284069 -k1,12807:28729869,30922575:284068 -k1,12807:30884991,30922575:284069 -k1,12807:32583029,30922575:0 -) -(1,12808:6797234,31764063:25785795,513147,134348 -k1,12807:10374895,31764063:174376 -k1,12807:11568356,31764063:174376 -k1,12807:15842009,31764063:174376 -k1,12807:16675677,31764063:174376 -k1,12807:21075815,31764063:174376 -k1,12807:22118543,31764063:174376 -k1,12807:23629854,31764063:174377 -k1,12807:24551996,31764063:174376 -k1,12807:27937636,31764063:174376 -k1,12807:28763440,31764063:174376 -k1,12807:30129261,31764063:174376 -k1,12807:30769598,31764063:174376 -k1,12807:31299834,31764063:174376 -k1,12807:32583029,31764063:0 -) -(1,12808:6797234,32605551:25785795,513147,134348 -k1,12807:10007238,32605551:225494 -k1,12807:13381082,32605551:225494 -k1,12807:14891082,32605551:225494 -k1,12807:15732615,32605551:225495 -k1,12807:18302332,32605551:225494 -k1,12807:19620311,32605551:225494 -k1,12807:20607333,32605551:225494 -k1,12807:21445589,32605551:225494 -k1,12807:23166615,32605551:225494 -k1,12807:23747970,32605551:225495 -k1,12807:26370771,32605551:225494 -k1,12807:29024374,32605551:225494 -k1,12807:31082255,32605551:225494 -k1,12807:32583029,32605551:0 -) -(1,12808:6797234,33447039:25785795,513147,126483 -k1,12807:8738561,33447039:189550 -k1,12807:12084980,33447039:189550 -k1,12807:14193425,33447039:189551 -k1,12807:15402060,33447039:189550 -k1,12807:18355919,33447039:189550 -k1,12807:19204761,33447039:189550 -k1,12807:21837494,33447039:189551 -k1,12807:22558541,33447039:189550 -k1,12807:23814362,33447039:189550 -k1,12807:25288418,33447039:189550 -k1,12807:26248672,33447039:189551 -k1,12807:28209005,33447039:189550 -k1,12807:31015408,33447039:189550 -k1,12807:32583029,33447039:0 -) -(1,12808:6797234,34288527:25785795,513147,134348 -k1,12807:8637426,34288527:246356 -k1,12807:13077430,34288527:246355 -k1,12807:15021824,34288527:246356 -k1,12807:17587499,34288527:246356 -k1,12807:19227805,34288527:246355 -k1,12807:20449992,34288527:246356 -k1,12807:22259381,34288527:246355 -k1,12807:23859711,34288527:246356 -k1,12807:25822455,34288527:246356 -k1,12807:29348887,34288527:246355 -k1,12807:31162864,34288527:246356 -k1,12807:32583029,34288527:0 -) -(1,12808:6797234,35130015:25785795,513147,134348 -k1,12807:8192299,35130015:290783 -k1,12807:9230848,35130015:290783 -k1,12807:13171987,35130015:290784 -k1,12807:16776270,35130015:290783 -k1,12807:18139222,35130015:290783 -k1,12807:22062010,35130015:290783 -k1,12807:23035678,35130015:290783 -k1,12807:26643894,35130015:290784 -k1,12807:30170845,35130015:290783 -k1,12807:31089463,35130015:290783 -k1,12807:32583029,35130015:0 -) -(1,12808:6797234,35971503:25785795,513147,126483 -k1,12807:8403652,35971503:239337 -k1,12807:9511342,35971503:239338 -k1,12807:10854961,35971503:239337 -k1,12807:12028842,35971503:239338 -k1,12807:13287264,35971503:239337 -k1,12807:16177532,35971503:239337 -k1,12807:19290624,35971503:239338 -k1,12807:20814467,35971503:239337 -k1,12807:21585302,35971503:239338 -k1,12807:22483931,35971503:239337 -k1,12807:25340121,35971503:239337 -k1,12807:27906642,35971503:239338 -k1,12807:28805271,35971503:239337 -k1,12807:30638445,35971503:239338 -k1,12807:31563944,35971503:239337 -k1,12807:32583029,35971503:0 -) -(1,12808:6797234,36812991:25785795,505283,126483 -g1,12807:8236404,36812991 -g1,12807:11907730,36812991 -g1,12807:12722997,36812991 -g1,12807:13941311,36812991 -k1,12808:32583030,36812991:17276604 -g1,12808:32583030,36812991 -) -(1,12810:6797234,37654479:25785795,513147,134348 -h1,12809:6797234,37654479:983040,0,0 -k1,12809:9172929,37654479:195968 -k1,12809:12360616,37654479:195968 -k1,12809:14585579,37654479:195968 -k1,12809:16516941,37654479:195969 -(1,12809:16516941,37654479:0,452978,115847 -r1,12849:18985478,37654479:2468537,568825,115847 -k1,12809:16516941,37654479:-2468537 -) -(1,12809:16516941,37654479:2468537,452978,115847 -k1,12809:16516941,37654479:3277 -h1,12809:18982201,37654479:0,411205,112570 -) -k1,12809:19181446,37654479:195968 -k1,12809:20568859,37654479:195968 -(1,12809:20568859,37654479:0,452978,115847 -r1,12849:23740819,37654479:3171960,568825,115847 -k1,12809:20568859,37654479:-3171960 -) -(1,12809:20568859,37654479:3171960,452978,115847 -k1,12809:20568859,37654479:3277 -h1,12809:23737542,37654479:0,411205,112570 -) -k1,12809:23936787,37654479:195968 -k1,12809:25124315,37654479:195968 -k1,12809:26267934,37654479:195968 -k1,12809:26819763,37654479:195969 -k1,12809:28255672,37654479:195968 -k1,12809:31923737,37654479:195968 -k1,12809:32583029,37654479:0 -) -(1,12810:6797234,38495967:25785795,513147,126483 -k1,12809:8764052,38495967:268780 -k1,12809:9601028,38495967:268779 -k1,12809:10441937,38495967:268780 -k1,12809:12199039,38495967:268779 -k1,12809:13336171,38495967:268780 -k1,12809:14420218,38495967:268779 -k1,12809:15708083,38495967:268780 -k1,12809:19281843,38495967:268779 -k1,12809:20742068,38495967:268780 -k1,12809:22404798,38495967:268779 -k1,12809:23029438,38495967:268780 -k1,12809:24538158,38495967:268779 -k1,12809:28279035,38495967:268780 -k1,12809:29207106,38495967:268779 -k1,12809:31173924,38495967:268780 -k1,12809:32010900,38495967:268779 -k1,12809:32583029,38495967:0 -) -(1,12810:6797234,39337455:25785795,513147,126483 -k1,12809:8263224,39337455:269303 -k1,12809:11788355,39337455:269302 -k1,12809:12589155,39337455:269303 -k1,12809:16104455,39337455:269302 -k1,12809:17025186,39337455:269303 -k1,12809:18426295,39337455:269302 -k1,12809:21453353,39337455:269303 -k1,12809:23402998,39337455:269302 -k1,12809:24358463,39337455:269303 -k1,12809:24983625,39337455:269302 -k1,12809:26492869,39337455:269303 -k1,12809:30234268,39337455:269302 -k1,12809:31451222,39337455:269303 -k1,12809:32583029,39337455:0 -) -(1,12810:6797234,40178943:25785795,513147,126483 -k1,12809:7662582,40178943:206056 -k1,12809:8887723,40178943:206056 -k1,12809:10806235,40178943:206056 -k1,12809:14293023,40178943:206056 -k1,12809:17718863,40178943:206056 -k1,12809:20859622,40178943:206057 -k1,12809:22013329,40178943:206056 -k1,12809:23238470,40178943:206056 -$1,12809:23238470,40178943 -$1,12809:23706397,40178943 -k1,12809:25805788,40178943:206056 -k1,12809:29057957,40178943:206056 -k1,12809:29915441,40178943:206056 -k1,12809:30869263,40178943:206056 -k1,12809:32583029,40178943:0 -) -(1,12810:6797234,41020431:25785795,513147,126483 -k1,12809:8008152,41020431:191833 -k1,12809:11818228,41020431:191833 -k1,12809:14190445,41020431:191834 -k1,12809:15130044,41020431:191833 -k1,12809:16256420,41020431:191833 -k1,12809:17064291,41020431:191833 -k1,12809:19841519,41020431:191833 -k1,12809:20692645,41020431:191834 -k1,12809:21903563,41020431:191833 -k1,12809:24052956,41020431:191833 -k1,12809:25314337,41020431:191833 -k1,12809:29513042,41020431:191834 -k1,12809:30364167,41020431:191833 -k1,12809:31575085,41020431:191833 -k1,12810:32583029,41020431:0 -) -(1,12810:6797234,41861919:25785795,513147,126483 -k1,12809:10288992,41861919:214958 -k1,12809:12017176,41861919:214958 -k1,12809:13179785,41861919:214958 -k1,12809:14413828,41861919:214958 -k1,12809:15993901,41861919:214958 -k1,12809:17405546,41861919:214958 -k1,12809:20612224,41861919:214959 -k1,12809:21919667,41861919:214958 -k1,12809:22490485,41861919:214958 -k1,12809:25811194,41861919:214958 -k1,12809:27391267,41861919:214958 -k1,12809:28234060,41861919:214958 -k1,12809:30141158,41861919:214958 -k1,12809:32227169,41861919:214958 -k1,12809:32583029,41861919:0 -) -(1,12810:6797234,42703407:25785795,513147,134348 -k1,12809:10770588,42703407:167023 -k1,12809:12129056,42703407:167023 -k1,12809:14476462,42703407:167023 -k1,12809:15391252,42703407:167024 -k1,12809:17071501,42703407:167023 -k1,12809:18688180,42703407:167023 -k1,12809:19321164,42703407:167023 -k1,12809:20276585,42703407:167023 -k1,12809:22581392,42703407:167023 -k1,12809:23104275,42703407:167023 -k1,12809:25065675,42703407:167024 -k1,12809:27762388,42703407:167023 -k1,12809:28588703,42703407:167023 -k1,12809:31378477,42703407:167023 -k1,12810:32583029,42703407:0 -) -(1,12810:6797234,43544895:25785795,513147,126483 -k1,12809:8409269,43544895:142062 -k1,12809:9835837,43544895:142062 -k1,12809:12927674,43544895:142062 -k1,12809:13601232,43544895:142061 -k1,12809:16373254,43544895:142062 -k1,12809:17890917,43544895:142062 -k1,12809:18649017,43544895:142062 -k1,12809:19947789,43544895:142062 -k1,12809:22948531,43544895:142062 -k1,12809:24684428,43544895:142061 -k1,12809:26394111,43544895:142062 -k1,12809:27555258,43544895:142062 -k1,12809:28937261,43544895:142062 -k1,12809:32583029,43544895:0 -) -(1,12810:6797234,44386383:25785795,513147,126483 -g1,12809:7679348,44386383 -g1,12809:10408267,44386383 -g1,12809:11983097,44386383 -g1,12809:13339036,44386383 -g1,12809:16396945,44386383 -g1,12809:17255466,44386383 -g1,12809:20328449,44386383 -g1,12809:21059175,44386383 -g1,12809:21917696,44386383 -k1,12810:32583029,44386383:7841387 -g1,12810:32583029,44386383 -) -(1,12812:6797234,45227871:25785795,513147,126483 -h1,12811:6797234,45227871:983040,0,0 -k1,12811:8862223,45227871:252919 -k1,12811:11830953,45227871:252918 -k1,12811:13102957,45227871:252919 -k1,12811:15531670,45227871:252918 -k1,12811:16652941,45227871:252919 -k1,12811:18436125,45227871:252918 -k1,12811:19459747,45227871:252919 -k1,12811:22428477,45227871:252918 -k1,12811:23629047,45227871:252919 -k1,12811:24901050,45227871:252918 -k1,12811:28434701,45227871:252919 -k1,12811:30367962,45227871:252918 -k1,12811:31812326,45227871:252919 -k1,12811:32583029,45227871:0 -) -] -g1,12849:32583029,45354354 -) -] -(1,12849:32583029,45706769:0,0,0 -g1,12849:32583029,45706769 -) -) -] -(1,12849:6630773,47279633:25952256,0,0 -h1,12849:6630773,47279633:25952256,0,0 -) -] -(1,12849:4262630,4025873:0,0,0 -[1,12849:-473656,4025873:0,0,0 -(1,12849:-473656,-710413:0,0,0 -(1,12849:-473656,-710413:0,0,0 -g1,12849:-473656,-710413 -) -g1,12849:-473656,-710413 -) -] -) -] -!28075 -}219 -Input:1925:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1926:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1927:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1928:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1929:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!482 -{220 -[1,12858:4262630,47279633:28320399,43253760,0 -(1,12858:4262630,4025873:0,0,0 -[1,12858:-473656,4025873:0,0,0 -(1,12858:-473656,-710413:0,0,0 -(1,12858:-473656,-644877:0,0,0 -k1,12858:-473656,-644877:-65536 ) -(1,12858:-473656,4736287:0,0,0 -k1,12858:-473656,4736287:5209943 ) -g1,12858:-473656,-710413 ) ] +[1,12229:3078558,4812305:0,0,0 +(1,12229:3078558,49800853:0,16384,2228224 +g1,12229:29030814,49800853 +g1,12229:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,12229:36151628,51504789:16384,1179648,0 ) -[1,12858:6630773,47279633:25952256,43253760,0 -[1,12858:6630773,4812305:25952256,786432,0 -(1,12858:6630773,4812305:25952256,505283,134348 -(1,12858:6630773,4812305:25952256,505283,134348 -g1,12858:3078558,4812305 -[1,12858:3078558,4812305:0,0,0 -(1,12858:3078558,2439708:0,1703936,0 -k1,12858:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,12858:2537886,2439708:1179648,16384,0 -) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,12858:3078558,1915420:16384,1179648,0 -) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 ) ] ) +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,12229:37855564,49800853:1179648,16384,0 +) +) +k1,12229:3078556,49800853:-34777008 +) +] +g1,12229:6630773,4812305 +k1,12229:19540057,4812305:11713907 +g1,12229:21162728,4812305 +g1,12229:21985204,4812305 +g1,12229:24539797,4812305 +g1,12229:25949476,4812305 +g1,12229:28728857,4812305 +g1,12229:29852144,4812305 ) ) ] -[1,12858:3078558,4812305:0,0,0 -(1,12858:3078558,2439708:0,1703936,0 -g1,12858:29030814,2439708 -g1,12858:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,12858:36151628,1915420:16384,1179648,0 +[1,12229:6630773,45706769:25952256,40108032,0 +(1,12229:6630773,45706769:25952256,40108032,0 +(1,12229:6630773,45706769:0,0,0 +g1,12229:6630773,45706769 +) +[1,12229:6630773,45706769:25952256,40108032,0 +v1,12150:6630773,6254097:0,393216,0 +(1,12157:6630773,7377677:25952256,1516796,196608 +g1,12157:6630773,7377677 +g1,12157:6630773,7377677 +g1,12157:6434165,7377677 +(1,12157:6434165,7377677:0,1516796,196608 +r1,12229:32779637,7377677:26345472,1713404,196608 +k1,12157:6434165,7377677:-26345472 +) +(1,12157:6434165,7377677:26345472,1516796,196608 +[1,12157:6630773,7377677:25952256,1320188,0 +(1,12152:6630773,6481928:25952256,424439,86428 +(1,12151:6630773,6481928:0,0,0 +g1,12151:6630773,6481928 +g1,12151:6630773,6481928 +g1,12151:6303093,6481928 +(1,12151:6303093,6481928:0,0,0 +) +g1,12151:6630773,6481928 +) +k1,12152:6630773,6481928:0 +g1,12152:9286405,6481928 +g1,12152:9950313,6481928 +g1,12152:11610083,6481928 +g1,12152:13269853,6481928 +g1,12152:13933761,6481928 +g1,12152:14929623,6481928 +g1,12152:15925485,6481928 +g1,12152:16589393,6481928 +h1,12152:17917209,6481928:0,0,0 +k1,12152:32583029,6481928:14665820 +g1,12152:32583029,6481928 +) +(1,12156:6630773,7297855:25952256,424439,79822 +(1,12154:6630773,7297855:0,0,0 +g1,12154:6630773,7297855 +g1,12154:6630773,7297855 +g1,12154:6303093,7297855 +(1,12154:6303093,7297855:0,0,0 +) +g1,12154:6630773,7297855 +) +g1,12156:7626635,7297855 +g1,12156:8954451,7297855 +h1,12156:11942036,7297855:0,0,0 +k1,12156:32583028,7297855:20640992 +g1,12156:32583028,7297855 +) +] +) +g1,12157:32583029,7377677 +g1,12157:6630773,7377677 +g1,12157:6630773,7377677 +g1,12157:32583029,7377677 +g1,12157:32583029,7377677 +) +h1,12157:6630773,7574285:0,0,0 +(1,12161:6630773,8439365:25952256,505283,134348 +h1,12160:6630773,8439365:983040,0,0 +g1,12160:8642072,8439365 +g1,12160:10865053,8439365 +g1,12160:13735529,8439365 +g1,12160:15945403,8439365 +g1,12160:17012984,8439365 +g1,12160:18316495,8439365 +g1,12160:19952929,8439365 +g1,12160:20508018,8439365 +g1,12160:22731654,8439365 +g1,12160:24908760,8439365 +g1,12160:25794151,8439365 +g1,12160:26764083,8439365 +k1,12161:32583029,8439365:2572948 +g1,12161:32583029,8439365 +) +v1,12163:6630773,9124220:0,393216,0 +(1,12170:6630773,10254406:25952256,1523402,196608 +g1,12170:6630773,10254406 +g1,12170:6630773,10254406 +g1,12170:6434165,10254406 +(1,12170:6434165,10254406:0,1523402,196608 +r1,12229:32779637,10254406:26345472,1720010,196608 +k1,12170:6434165,10254406:-26345472 +) +(1,12170:6434165,10254406:26345472,1523402,196608 +[1,12170:6630773,10254406:25952256,1326794,0 +(1,12165:6630773,9358657:25952256,431045,112852 +(1,12164:6630773,9358657:0,0,0 +g1,12164:6630773,9358657 +g1,12164:6630773,9358657 +g1,12164:6303093,9358657 +(1,12164:6303093,9358657:0,0,0 +) +g1,12164:6630773,9358657 +) +k1,12165:6630773,9358657:0 +g1,12165:9286405,9358657 +g1,12165:9950313,9358657 +g1,12165:12937899,9358657 +g1,12165:13601807,9358657 +g1,12165:14929623,9358657 +g1,12165:15925485,9358657 +g1,12165:16589393,9358657 +g1,12165:17585255,9358657 +g1,12165:21236748,9358657 +g1,12165:21900656,9358657 +g1,12165:23228472,9358657 +g1,12165:24888242,9358657 +g1,12165:25552150,9358657 +g1,12165:26548012,9358657 +g1,12165:27543874,9358657 +g1,12165:28207782,9358657 +h1,12165:29535598,9358657:0,0,0 +k1,12165:32583029,9358657:3047431 +g1,12165:32583029,9358657 +) +(1,12169:6630773,10174584:25952256,424439,79822 +(1,12167:6630773,10174584:0,0,0 +g1,12167:6630773,10174584 +g1,12167:6630773,10174584 +g1,12167:6303093,10174584 +(1,12167:6303093,10174584:0,0,0 +) +g1,12167:6630773,10174584 +) +g1,12169:7626635,10174584 +g1,12169:8954451,10174584 +g1,12169:13269852,10174584 +g1,12169:17585253,10174584 +g1,12169:21900654,10174584 +g1,12169:26216055,10174584 +h1,12169:30199502,10174584:0,0,0 +k1,12169:32583029,10174584:2383527 +g1,12169:32583029,10174584 +) +] +) +g1,12170:32583029,10254406 +g1,12170:6630773,10254406 +g1,12170:6630773,10254406 +g1,12170:32583029,10254406 +g1,12170:32583029,10254406 +) +h1,12170:6630773,10451014:0,0,0 +(1,12174:6630773,11316094:25952256,513147,126483 +h1,12173:6630773,11316094:983040,0,0 +k1,12173:9288834,11316094:195873 +k1,12173:10281625,11316094:195873 +k1,12173:12771258,11316094:195873 +k1,12173:15175694,11316094:195873 +k1,12173:17382212,11316094:195873 +k1,12173:18525736,11316094:195873 +$1,12173:18525736,11316094 +$1,12173:19028397,11316094 +k1,12173:19224270,11316094:195873 +k1,12173:20288495,11316094:195873 +k1,12173:21588650,11316094:195873 +k1,12173:23061820,11316094:195873 +k1,12173:23613553,11316094:195873 +k1,12173:24977933,11316094:195873 +(1,12173:25185027,11316094:0,452978,115847 +r1,12229:28708699,11316094:3523672,568825,115847 +k1,12173:25185027,11316094:-3523672 +) +(1,12173:25185027,11316094:3523672,452978,115847 +g1,12173:26946863,11316094 +g1,12173:27650287,11316094 +h1,12173:28705422,11316094:0,411205,112570 +) +k1,12173:29111666,11316094:195873 +k1,12173:30592045,11316094:195873 +k1,12173:32583029,11316094:0 +) +(1,12174:6630773,12181174:25952256,513147,134348 +k1,12173:8121343,12181174:206064 +k1,12173:9346492,12181174:206064 +k1,12173:10349474,12181174:206064 +k1,12173:13708475,12181174:206064 +k1,12173:15303902,12181174:206064 +k1,12173:17528475,12181174:206064 +k1,12173:19014456,12181174:206063 +k1,12173:20239605,12181174:206064 +k1,12173:22812829,12181174:206064 +k1,12173:23678185,12181174:206064 +k1,12173:24240109,12181174:206064 +k1,12173:28016574,12181174:206064 +k1,12173:30137600,12181174:206064 +k1,12173:31297213,12181174:206064 +k1,12173:32583029,12181174:0 +) +(1,12174:6630773,13046254:25952256,513147,134348 +g1,12173:8027345,13046254 +g1,12173:8582434,13046254 +g1,12173:10469870,13046254 +g1,12173:13320030,13046254 +g1,12173:14538344,13046254 +g1,12173:16417916,13046254 +g1,12173:17564796,13046254 +$1,12173:17564796,13046254 +g1,12173:18249517,13046254 +g1,12173:18999774,13046254 +$1,12173:19986091,13046254 +g1,12173:20185320,13046254 +g1,12173:23613508,13046254 +k1,12174:32583029,13046254:6940526 +g1,12174:32583029,13046254 +) +v1,12176:6630773,13731109:0,393216,0 +(1,12185:6630773,17496067:25952256,4158174,196608 +g1,12185:6630773,17496067 +g1,12185:6630773,17496067 +g1,12185:6434165,17496067 +(1,12185:6434165,17496067:0,4158174,196608 +r1,12229:32779637,17496067:26345472,4354782,196608 +k1,12185:6434165,17496067:-26345472 +) +(1,12185:6434165,17496067:26345472,4158174,196608 +[1,12185:6630773,17496067:25952256,3961566,0 +(1,12178:6630773,13965546:25952256,431045,112852 +(1,12177:6630773,13965546:0,0,0 +g1,12177:6630773,13965546 +g1,12177:6630773,13965546 +g1,12177:6303093,13965546 +(1,12177:6303093,13965546:0,0,0 +) +g1,12177:6630773,13965546 +) +g1,12178:8290543,13965546 +g1,12178:9286405,13965546 +g1,12178:12273991,13965546 +g1,12178:12937899,13965546 +g1,12178:14265715,13965546 +g1,12178:15261577,13965546 +g1,12178:15925485,13965546 +g1,12178:16921347,13965546 +g1,12178:20572840,13965546 +g1,12178:21236748,13965546 +h1,12178:22232610,13965546:0,0,0 +k1,12178:32583029,13965546:10350419 +g1,12178:32583029,13965546 +) +(1,12179:6630773,14650401:25952256,0,0 +h1,12179:6630773,14650401:0,0,0 +h1,12179:6630773,14650401:0,0,0 +k1,12179:32583029,14650401:25952256 +g1,12179:32583029,14650401 +) +(1,12180:6630773,15335256:25952256,431045,106246 +h1,12180:6630773,15335256:0,0,0 +g1,12180:9286405,15335256 +g1,12180:10282267,15335256 +g1,12180:14597668,15335256 +g1,12180:15261576,15335256 +k1,12180:15261576,15335256:0 +h1,12180:16921346,15335256:0,0,0 +k1,12180:32583029,15335256:15661683 +g1,12180:32583029,15335256 +) +(1,12181:6630773,16020111:25952256,424439,106246 +h1,12181:6630773,16020111:0,0,0 +g1,12181:6962727,16020111 +g1,12181:7294681,16020111 +g1,12181:7626635,16020111 +g1,12181:7958589,16020111 +g1,12181:8290543,16020111 +g1,12181:8622497,16020111 +g1,12181:8954451,16020111 +g1,12181:9286405,16020111 +g1,12181:9618359,16020111 +g1,12181:9950313,16020111 +g1,12181:10282267,16020111 +g1,12181:10614221,16020111 +g1,12181:10946175,16020111 +g1,12181:11278129,16020111 +g1,12181:11610083,16020111 +g1,12181:11942037,16020111 +g1,12181:12273991,16020111 +g1,12181:12605945,16020111 +g1,12181:12937899,16020111 +g1,12181:13269853,16020111 +g1,12181:13601807,16020111 +g1,12181:13933761,16020111 +g1,12181:14597669,16020111 +g1,12181:15261577,16020111 +g1,12181:17917209,16020111 +g1,12181:18581117,16020111 +g1,12181:20572841,16020111 +g1,12181:22232611,16020111 +g1,12181:22896519,16020111 +g1,12181:23892381,16020111 +g1,12181:24888243,16020111 +g1,12181:25552151,16020111 +h1,12181:27211921,16020111:0,0,0 +k1,12181:32583029,16020111:5371108 +g1,12181:32583029,16020111 +) +(1,12182:6630773,16704966:25952256,424439,106246 +h1,12182:6630773,16704966:0,0,0 +g1,12182:9950313,16704966 +g1,12182:11610083,16704966 +g1,12182:12273991,16704966 +g1,12182:15261577,16704966 +g1,12182:16921347,16704966 +g1,12182:17585255,16704966 +h1,12182:18913071,16704966:0,0,0 +k1,12182:32583029,16704966:13669958 +g1,12182:32583029,16704966 +) +(1,12183:6630773,17389821:25952256,424439,106246 +h1,12183:6630773,17389821:0,0,0 +g1,12183:9618359,17389821 +g1,12183:10282267,17389821 +g1,12183:11942037,17389821 +g1,12183:12605945,17389821 +g1,12183:13269853,17389821 +g1,12183:15925485,17389821 +g1,12183:16589393,17389821 +g1,12183:18249163,17389821 +g1,12183:19908933,17389821 +g1,12183:20572841,17389821 +g1,12183:21568703,17389821 +g1,12183:22564565,17389821 +g1,12183:23228473,17389821 +h1,12183:24888243,17389821:0,0,0 +k1,12183:32583029,17389821:7694786 +g1,12183:32583029,17389821 +) +] +) +g1,12185:32583029,17496067 +g1,12185:6630773,17496067 +g1,12185:6630773,17496067 +g1,12185:32583029,17496067 +g1,12185:32583029,17496067 +) +h1,12185:6630773,17692675:0,0,0 +(1,12188:6630773,31772195:25952256,14013984,0 +k1,12188:12599879,31772195:5969106 +h1,12187:12599879,31772195:0,0,0 +(1,12187:12599879,31772195:14014044,14013984,0 +(1,12187:12599879,31772195:14014019,14014019,0 +(1,12187:12599879,31772195:14014019,14014019,0 +(1,12187:12599879,31772195:0,14014019,0 +(1,12187:12599879,31772195:0,18945146,0 +(1,12187:12599879,31772195:18945146,18945146,0 +) +k1,12187:12599879,31772195:-18945146 +) +) +g1,12187:26613898,31772195 +) +) +) +g1,12188:26613923,31772195 +k1,12188:32583029,31772195:5969106 +) +(1,12194:6630773,33889013:25952256,564462,139132 +(1,12194:6630773,33889013:2450326,534184,12975 +g1,12194:6630773,33889013 +g1,12194:9081099,33889013 +) +g1,12194:13850548,33889013 +g1,12194:15850314,33889013 +g1,12194:20178574,33889013 +g1,12194:21745802,33889013 +k1,12194:32583029,33889013:7500199 +g1,12194:32583029,33889013 +) +(1,12198:6630773,35147309:25952256,513147,138281 +k1,12197:7293529,35147309:184999 +k1,12197:8346880,35147309:184999 +k1,12197:10007093,35147309:184998 +k1,12197:10547952,35147309:184999 +k1,12197:12870735,35147309:184999 +k1,12197:15656203,35147309:184999 +k1,12197:17521544,35147309:184998 +k1,12197:18574895,35147309:184999 +k1,12197:19864176,35147309:184999 +k1,12197:21435917,35147309:184999 +k1,12197:22456500,35147309:184999 +k1,12197:23660583,35147309:184998 +k1,12197:28469147,35147309:184999 +$1,12197:28469147,35147309 +$1,12197:28937074,35147309 +k1,12197:31015408,35147309:184999 +k1,12197:32583029,35147309:0 +) +(1,12198:6630773,36012389:25952256,505283,134348 +k1,12197:7846553,36012389:196695 +k1,12197:10399267,36012389:196695 +k1,12197:14551061,36012389:196696 +k1,12197:15817304,36012389:196695 +k1,12197:17033084,36012389:196695 +k1,12197:18577199,36012389:196695 +k1,12197:20660020,36012389:196695 +k1,12197:21875801,36012389:196696 +k1,12197:23987458,36012389:196695 +k1,12197:26040133,36012389:196695 +k1,12197:26888256,36012389:196695 +k1,12197:28104036,36012389:196695 +k1,12197:29836241,36012389:196696 +k1,12197:30715821,36012389:196695 +k1,12197:31563944,36012389:196695 +k1,12197:32583029,36012389:0 +) +(1,12198:6630773,36877469:25952256,513147,134348 +k1,12197:7982730,36877469:277822 +k1,12197:8919844,36877469:277822 +k1,12197:9553527,36877469:277823 +k1,12197:11526110,36877469:277822 +k1,12197:13484275,36877469:277822 +k1,12197:14421389,36877469:277822 +$1,12197:14421389,36877469 +$1,12197:14924050,36877469 +k1,12197:15375543,36877469:277823 +k1,12197:17436600,36877469:277822 +k1,12197:20301128,36877469:277822 +k1,12197:21972901,36877469:277822 +k1,12197:26496146,36877469:277823 +k1,12197:27793053,36877469:277822 +k1,12197:30845014,36877469:277822 +k1,12197:32583029,36877469:0 +) +(1,12198:6630773,37742549:25952256,513147,126483 +k1,12197:8053143,37742549:230925 +k1,12197:11127675,37742549:230925 +k1,12197:14308375,37742549:230925 +k1,12197:15530860,37742549:230925 +k1,12197:16377823,37742549:230925 +k1,12197:18210448,37742549:230925 +k1,12197:20138755,37742549:230925 +k1,12197:23578323,37742549:230925 +k1,12197:25376869,37742549:230925 +k1,12197:26626879,37742549:230925 +k1,12197:28511277,37742549:230925 +k1,12197:32583029,37742549:0 +) +(1,12198:6630773,38607629:25952256,513147,126483 +k1,12197:8775766,38607629:258867 +k1,12197:10053718,38607629:258867 +k1,12197:11552526,38607629:258867 +k1,12197:15457161,38607629:258867 +k1,12197:16343863,38607629:258867 +k1,12197:17621815,38607629:258867 +k1,12197:20542100,38607629:258868 +k1,12197:22843069,38607629:258867 +k1,12197:23970288,38607629:258867 +k1,12197:25321640,38607629:258867 +k1,12197:28340883,38607629:258867 +k1,12197:30610395,38607629:258867 +k1,12197:31816913,38607629:258867 +k1,12197:32583029,38607629:0 +) +(1,12198:6630773,39472709:25952256,505283,126483 +g1,12197:10441036,39472709 +(1,12197:10441036,39472709:0,414482,115847 +r1,12229:10799302,39472709:358266,530329,115847 +k1,12197:10441036,39472709:-358266 +) +(1,12197:10441036,39472709:358266,414482,115847 +k1,12197:10441036,39472709:3277 +h1,12197:10796025,39472709:0,411205,112570 +) +g1,12197:11172201,39472709 +g1,12197:12390515,39472709 +g1,12197:15363883,39472709 +(1,12197:15363883,39472709:0,414482,115847 +r1,12229:16777284,39472709:1413401,530329,115847 +k1,12197:15363883,39472709:-1413401 +) +(1,12197:15363883,39472709:1413401,414482,115847 +k1,12197:15363883,39472709:3277 +h1,12197:16774007,39472709:0,411205,112570 +) +g1,12197:17150183,39472709 +g1,12197:18540857,39472709 +(1,12197:18540857,39472709:0,452978,115847 +r1,12229:19250835,39472709:709978,568825,115847 +k1,12197:18540857,39472709:-709978 +) +(1,12197:18540857,39472709:709978,452978,115847 +k1,12197:18540857,39472709:3277 +h1,12197:19247558,39472709:0,411205,112570 +) +g1,12197:19623734,39472709 +g1,12197:20842048,39472709 +g1,12197:23884884,39472709 +k1,12198:32583029,39472709:5574699 +g1,12198:32583029,39472709 +) +v1,12200:6630773,40157564:0,393216,0 +(1,12225:6630773,45510161:25952256,5745813,196608 +g1,12225:6630773,45510161 +g1,12225:6630773,45510161 +g1,12225:6434165,45510161 +(1,12225:6434165,45510161:0,5745813,196608 +r1,12229:32779637,45510161:26345472,5942421,196608 +k1,12225:6434165,45510161:-26345472 +) +(1,12225:6434165,45510161:26345472,5745813,196608 +[1,12225:6630773,45510161:25952256,5549205,0 +(1,12202:6630773,40385395:25952256,424439,106246 +(1,12201:6630773,40385395:0,0,0 +g1,12201:6630773,40385395 +g1,12201:6630773,40385395 +g1,12201:6303093,40385395 +(1,12201:6303093,40385395:0,0,0 +) +g1,12201:6630773,40385395 +) +k1,12202:6630773,40385395:0 +g1,12202:9286405,40385395 +g1,12202:9950313,40385395 +g1,12202:10946175,40385395 +g1,12202:12605945,40385395 +g1,12202:13269853,40385395 +g1,12202:14265715,40385395 +g1,12202:15261577,40385395 +g1,12202:15925485,40385395 +h1,12202:16589393,40385395:0,0,0 +k1,12202:32583029,40385395:15993636 +g1,12202:32583029,40385395 +) +(1,12206:6630773,41106101:25952256,424439,79822 +(1,12204:6630773,41106101:0,0,0 +g1,12204:6630773,41106101 +g1,12204:6630773,41106101 +g1,12204:6303093,41106101 +(1,12204:6303093,41106101:0,0,0 +) +g1,12204:6630773,41106101 +) +g1,12206:7626635,41106101 +g1,12206:8954451,41106101 +h1,12206:11942036,41106101:0,0,0 +k1,12206:32583028,41106101:20640992 +g1,12206:32583028,41106101 +) +(1,12208:6630773,41826808:25952256,424439,106246 +(1,12207:6630773,41826808:0,0,0 +g1,12207:6630773,41826808 +g1,12207:6630773,41826808 +g1,12207:6303093,41826808 +(1,12207:6303093,41826808:0,0,0 +) +g1,12207:6630773,41826808 +) +k1,12208:6630773,41826808:0 +g1,12208:9286405,41826808 +g1,12208:9950313,41826808 +g1,12208:10946175,41826808 +g1,12208:12605945,41826808 +g1,12208:13269853,41826808 +g1,12208:14265715,41826808 +g1,12208:15261577,41826808 +g1,12208:15925485,41826808 +g1,12208:16921347,41826808 +g1,12208:20572840,41826808 +g1,12208:21236748,41826808 +h1,12208:23228472,41826808:0,0,0 +k1,12208:32583029,41826808:9354557 +g1,12208:32583029,41826808 +) +(1,12212:6630773,42547514:25952256,424439,79822 +(1,12210:6630773,42547514:0,0,0 +g1,12210:6630773,42547514 +g1,12210:6630773,42547514 +g1,12210:6303093,42547514 +(1,12210:6303093,42547514:0,0,0 +) +g1,12210:6630773,42547514 +) +g1,12212:7626635,42547514 +g1,12212:8954451,42547514 +k1,12212:8954451,42547514:0 +h1,12212:12937898,42547514:0,0,0 +k1,12212:32583030,42547514:19645132 +g1,12212:32583030,42547514 +) +(1,12214:6630773,43268220:25952256,424439,106246 +(1,12213:6630773,43268220:0,0,0 +g1,12213:6630773,43268220 +g1,12213:6630773,43268220 +g1,12213:6303093,43268220 +(1,12213:6303093,43268220:0,0,0 +) +g1,12213:6630773,43268220 +) +k1,12214:6630773,43268220:0 +g1,12214:9286405,43268220 +g1,12214:9950313,43268220 +g1,12214:10946175,43268220 +g1,12214:12605945,43268220 +g1,12214:13269853,43268220 +g1,12214:14265715,43268220 +g1,12214:15261577,43268220 +g1,12214:15925485,43268220 +g1,12214:16921347,43268220 +g1,12214:20572840,43268220 +g1,12214:21236748,43268220 +h1,12214:23228472,43268220:0,0,0 +k1,12214:32583029,43268220:9354557 +g1,12214:32583029,43268220 +) +(1,12218:6630773,43988926:25952256,424439,79822 +(1,12216:6630773,43988926:0,0,0 +g1,12216:6630773,43988926 +g1,12216:6630773,43988926 +g1,12216:6303093,43988926 +(1,12216:6303093,43988926:0,0,0 +) +g1,12216:6630773,43988926 +) +g1,12218:7626635,43988926 +g1,12218:8954451,43988926 +h1,12218:11942036,43988926:0,0,0 +k1,12218:32583028,43988926:20640992 +g1,12218:32583028,43988926 +) +(1,12220:6630773,44709633:25952256,424439,106246 +(1,12219:6630773,44709633:0,0,0 +g1,12219:6630773,44709633 +g1,12219:6630773,44709633 +g1,12219:6303093,44709633 +(1,12219:6303093,44709633:0,0,0 +) +g1,12219:6630773,44709633 +) +k1,12220:6630773,44709633:0 +g1,12220:9286405,44709633 +g1,12220:9950313,44709633 +g1,12220:11610083,44709633 +g1,12220:12937899,44709633 +g1,12220:14597669,44709633 +g1,12220:15261577,44709633 +g1,12220:16257439,44709633 +g1,12220:17253301,44709633 +g1,12220:17917209,44709633 +g1,12220:18913071,44709633 +g1,12220:22564564,44709633 +g1,12220:23228472,44709633 +h1,12220:25220196,44709633:0,0,0 +k1,12220:32583029,44709633:7362833 +g1,12220:32583029,44709633 +) +(1,12224:6630773,45430339:25952256,424439,79822 +(1,12222:6630773,45430339:0,0,0 +g1,12222:6630773,45430339 +g1,12222:6630773,45430339 +g1,12222:6303093,45430339 +(1,12222:6303093,45430339:0,0,0 +) +g1,12222:6630773,45430339 +) +g1,12224:7626635,45430339 +g1,12224:8954451,45430339 +g1,12224:13269852,45430339 +k1,12224:13269852,45430339:0 +h1,12224:17253299,45430339:0,0,0 +k1,12224:32583029,45430339:15329730 +g1,12224:32583029,45430339 +) +] +) +g1,12225:32583029,45510161 +g1,12225:6630773,45510161 +g1,12225:6630773,45510161 +g1,12225:32583029,45510161 +g1,12225:32583029,45510161 +) +h1,12225:6630773,45706769:0,0,0 +] +(1,12229:32583029,45706769:0,0,0 +g1,12229:32583029,45706769 +) +) +] +(1,12229:6630773,47279633:25952256,0,0 +h1,12229:6630773,47279633:25952256,0,0 +) +] +(1,12229:4262630,4025873:0,0,0 +[1,12229:-473656,4025873:0,0,0 +(1,12229:-473656,-710413:0,0,0 +(1,12229:-473656,-710413:0,0,0 +g1,12229:-473656,-710413 +) +g1,12229:-473656,-710413 +) +] +) +] +!22111 +}197 +Input:1819:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1820:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1821:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1822:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1823:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1824:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!576 +{198 +[1,12302:4262630,47279633:28320399,43253760,0 +(1,12302:4262630,4025873:0,0,0 +[1,12302:-473656,4025873:0,0,0 +(1,12302:-473656,-710413:0,0,0 +(1,12302:-473656,-644877:0,0,0 +k1,12302:-473656,-644877:-65536 +) +(1,12302:-473656,4736287:0,0,0 +k1,12302:-473656,4736287:5209943 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +g1,12302:-473656,-710413 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,12858:37855564,2439708:1179648,16384,0 +[1,12302:6630773,47279633:25952256,43253760,0 +[1,12302:6630773,4812305:25952256,786432,0 +(1,12302:6630773,4812305:25952256,505283,11795 +(1,12302:6630773,4812305:25952256,505283,11795 +g1,12302:3078558,4812305 +[1,12302:3078558,4812305:0,0,0 +(1,12302:3078558,2439708:0,1703936,0 +k1,12302:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,12302:2537886,2439708:1179648,16384,0 ) +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,12302:3078558,1915420:16384,1179648,0 ) -k1,12858:3078556,2439708:-34777008 -) -] -[1,12858:3078558,4812305:0,0,0 -(1,12858:3078558,49800853:0,16384,2228224 -k1,12858:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,12858:2537886,49800853:1179648,16384,0 -) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,12858:3078558,51504789:16384,1179648,0 -) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] ) ) ) ] -[1,12858:3078558,4812305:0,0,0 -(1,12858:3078558,49800853:0,16384,2228224 -g1,12858:29030814,49800853 -g1,12858:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,12858:36151628,51504789:16384,1179648,0 -) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 -) -] -) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,12858:37855564,49800853:1179648,16384,0 -) -) -k1,12858:3078556,49800853:-34777008 -) -] -g1,12858:6630773,4812305 -g1,12858:6630773,4812305 -g1,12858:8843268,4812305 -g1,12858:10880782,4812305 -g1,12858:13281365,4812305 -k1,12858:31387653,4812305:18106288 -) -) -] -[1,12858:6630773,45706769:25952256,40108032,0 -(1,12858:6630773,45706769:25952256,40108032,0 -(1,12858:6630773,45706769:0,0,0 -g1,12858:6630773,45706769 -) -[1,12858:6630773,45706769:25952256,40108032,0 -v1,12849:6630773,6254097:0,393216,0 -(1,12849:6630773,30496397:25952256,24635516,0 -g1,12849:6630773,30496397 -g1,12849:6303093,30496397 -r1,12858:6401397,30496397:98304,24635516,0 -g1,12849:6600626,30496397 -g1,12849:6797234,30496397 -[1,12849:6797234,30496397:25785795,24635516,0 -(1,12812:6797234,6374028:25785795,513147,134348 -k1,12811:9725735,6374028:212689 -k1,12811:10597717,6374028:212690 -k1,12811:11829491,6374028:212689 -k1,12811:14885788,6374028:212690 -k1,12811:16705420,6374028:212689 -k1,12811:17865761,6374028:212690 -k1,12811:19281691,6374028:212689 -k1,12811:22383863,6374028:212690 -k1,12811:23787997,6374028:212689 -k1,12811:25019772,6374028:212690 -k1,12811:27688095,6374028:212689 -k1,12811:28560077,6374028:212690 -k1,12811:31629480,6374028:212689 -k1,12811:32583029,6374028:0 -) -(1,12812:6797234,7215516:25785795,513147,134348 -g1,12811:8100745,7215516 -g1,12811:10503950,7215516 -g1,12811:11469295,7215516 -g1,12811:13365251,7215516 -g1,12811:15575125,7215516 -g1,12811:17341975,7215516 -g1,12811:18560289,7215516 -g1,12811:21749926,7215516 -g1,12811:22608447,7215516 -g1,12811:23163536,7215516 -g1,12811:25075221,7215516 -g1,12811:27262157,7215516 -k1,12812:32583029,7215516:3187675 -g1,12812:32583029,7215516 -) -v1,12814:6797234,8405982:0,393216,0 -(1,12820:6797234,10059726:25785795,2046960,196608 -g1,12820:6797234,10059726 -g1,12820:6797234,10059726 -g1,12820:6600626,10059726 -(1,12820:6600626,10059726:0,2046960,196608 -r1,12858:32779637,10059726:26179011,2243568,196608 -k1,12820:6600625,10059726:-26179012 -) -(1,12820:6600626,10059726:26179011,2046960,196608 -[1,12820:6797234,10059726:25785795,1850352,0 -(1,12816:6797234,8619892:25785795,410518,101187 -(1,12815:6797234,8619892:0,0,0 -g1,12815:6797234,8619892 -g1,12815:6797234,8619892 -g1,12815:6469554,8619892 -(1,12815:6469554,8619892:0,0,0 -) -g1,12815:6797234,8619892 -) -g1,12816:11855565,8619892 -g1,12816:12804003,8619892 -g1,12816:23869103,8619892 -h1,12816:27346706,8619892:0,0,0 -k1,12816:32583029,8619892:5236323 -g1,12816:32583029,8619892 -) -(1,12817:6797234,9286070:25785795,410518,101187 -h1,12817:6797234,9286070:0,0,0 -g1,12817:10907128,9286070 -g1,12817:11855566,9286070 -g1,12817:22920666,9286070 -g1,12817:24817540,9286070 -h1,12817:27030560,9286070:0,0,0 -k1,12817:32583029,9286070:5552469 -g1,12817:32583029,9286070 -) -(1,12818:6797234,9952248:25785795,410518,107478 -h1,12818:6797234,9952248:0,0,0 -g1,12818:12804002,9952248 -g1,12818:13752440,9952248 -k1,12818:13752440,9952248:0 -h1,12818:19443063,9952248:0,0,0 -k1,12818:32583029,9952248:13139966 -g1,12818:32583029,9952248 -) -] -) -g1,12820:32583029,10059726 -g1,12820:6797234,10059726 -g1,12820:6797234,10059726 -g1,12820:32583029,10059726 -g1,12820:32583029,10059726 -) -h1,12820:6797234,10256334:0,0,0 -(1,12824:6797234,11622110:25785795,513147,126483 -h1,12823:6797234,11622110:983040,0,0 -k1,12823:8516550,11622110:248688 -k1,12823:10048483,11622110:248738 -k1,12823:12473016,11622110:248738 -k1,12823:13253252,11622110:248739 -k1,12823:16710633,11622110:248738 -k1,12823:18814040,11622110:248738 -k1,12823:19872148,11622110:248738 -k1,12823:21139971,11622110:248738 -k1,12823:24575069,11622110:248738 -k1,12823:27459010,11622110:248738 -k1,12823:28726833,11622110:248738 -k1,12823:30655914,11622110:248738 -k1,12823:31563944,11622110:248738 -k1,12823:32583029,11622110:0 -) -(1,12824:6797234,12463598:25785795,513147,126483 -k1,12823:8215969,12463598:178794 -k1,12823:11866860,12463598:178794 -k1,12823:13237099,12463598:178794 -k1,12823:14434978,12463598:178794 -k1,12823:16294115,12463598:178794 -k1,12823:17420561,12463598:178795 -k1,12823:18618440,12463598:178794 -k1,12823:22077966,12463598:178794 -k1,12823:25393313,12463598:178794 -k1,12823:27139728,12463598:178794 -k1,12823:28337607,12463598:178794 -k1,12823:32583029,12463598:0 -) -(1,12824:6797234,13305086:25785795,505283,126483 -k1,12823:7498992,13305086:214170 -k1,12823:8996371,13305086:214184 -k1,12823:12696416,13305086:214185 -k1,12823:15626413,13305086:214185 -k1,12823:16372095,13305086:214185 -k1,12823:19794922,13305086:214184 -k1,12823:21863776,13305086:214185 -k1,12823:22887331,13305086:214185 -k1,12823:26310159,13305086:214185 -$1,12823:26310159,13305086 -$1,12823:26630630,13305086 -k1,12823:28911820,13305086:214184 -k1,12823:29808890,13305086:214185 -k1,12823:32583029,13305086:0 -) -(1,12824:6797234,14146574:25785795,513147,134348 -k1,12823:8214653,14146574:225974 -k1,12823:9459712,14146574:225974 -$1,12823:9459712,14146574 -$1,12823:9780183,14146574 -k1,12823:10006156,14146574:225973 -k1,12823:14013557,14146574:225974 -k1,12823:15633482,14146574:225974 -k1,12823:18830858,14146574:225974 -k1,12823:21512466,14146574:225974 -k1,12823:22397731,14146574:225973 -k1,12823:25306749,14146574:225974 -k1,12823:26926674,14146574:225974 -k1,12823:27508508,14146574:225974 -k1,12823:28834175,14146574:225973 -k1,12823:29711577,14146574:225974 -(1,12823:29711577,14146574:0,452978,115847 -r1,12858:31124978,14146574:1413401,568825,115847 -k1,12823:29711577,14146574:-1413401 -) -(1,12823:29711577,14146574:1413401,452978,115847 -k1,12823:29711577,14146574:3277 -h1,12823:31121701,14146574:0,411205,112570 -) -k1,12823:31350952,14146574:225974 -k1,12823:32583029,14146574:0 -) -(1,12824:6797234,14988062:25785795,505283,134348 -k1,12823:9340293,14988062:264372 -h1,12823:10310881,14988062:0,0,0 -k1,12823:10575254,14988062:264373 -k1,12823:11648996,14988062:264372 -k1,12823:13411521,14988062:264372 -h1,12823:14606898,14988062:0,0,0 -k1,12823:15252034,14988062:264372 -k1,12823:16558429,14988062:264373 -k1,12823:17178661,14988062:264372 -k1,12823:20177850,14988062:264372 -k1,12823:21633667,14988062:264372 -k1,12823:22766392,14988062:264373 -k1,12823:25715774,14988062:264372 -k1,12823:26741674,14988062:264372 -k1,12823:28178486,14988062:264373 -k1,12823:29461943,14988062:264372 -k1,12823:32115102,14988062:264372 -$1,12823:32115102,14988062 -$1,12823:32583029,14988062 -k1,12824:32583029,14988062:0 -) -(1,12824:6797234,15829550:25785795,473825,7863 -k1,12824:32583028,15829550:22896312 -g1,12824:32583028,15829550 -) -v1,12826:6797234,17020016:0,393216,0 -(1,12838:6797234,21234138:25785795,4607338,196608 -g1,12838:6797234,21234138 -g1,12838:6797234,21234138 -g1,12838:6600626,21234138 -(1,12838:6600626,21234138:0,4607338,196608 -r1,12858:32779637,21234138:26179011,4803946,196608 -k1,12838:6600625,21234138:-26179012 -) -(1,12838:6600626,21234138:26179011,4607338,196608 -[1,12838:6797234,21234138:25785795,4410730,0 -(1,12828:6797234,17227634:25785795,404226,101187 -(1,12827:6797234,17227634:0,0,0 -g1,12827:6797234,17227634 -g1,12827:6797234,17227634 -g1,12827:6469554,17227634 -(1,12827:6469554,17227634:0,0,0 -) -g1,12827:6797234,17227634 -) -g1,12828:9642545,17227634 -g1,12828:10590983,17227634 -h1,12828:10907129,17227634:0,0,0 -k1,12828:32583029,17227634:21675900 -g1,12828:32583029,17227634 -) -(1,12829:6797234,17893812:25785795,404226,101187 -h1,12829:6797234,17893812:0,0,0 -g1,12829:9326400,17893812 -g1,12829:10274838,17893812 -g1,12829:15649315,17893812 -g1,12829:16281607,17893812 -g1,12829:19443064,17893812 -g1,12829:20075356,17893812 -h1,12829:23869104,17893812:0,0,0 -k1,12829:32583029,17893812:8713925 -g1,12829:32583029,17893812 -) -(1,12830:6797234,18559990:25785795,410518,107478 -h1,12830:6797234,18559990:0,0,0 -g1,12830:9326400,18559990 -g1,12830:10274838,18559990 -g1,12830:10907130,18559990 -g1,12830:11539422,18559990 -g1,12830:13120151,18559990 -g1,12830:13752443,18559990 -g1,12830:16597755,18559990 -g1,12830:17546192,18559990 -g1,12830:18178484,18559990 -g1,12830:24501398,18559990 -g1,12830:27979001,18559990 -g1,12830:28611293,18559990 -h1,12830:30508167,18559990:0,0,0 -k1,12830:32583029,18559990:2074862 -g1,12830:32583029,18559990 -) -(1,12831:6797234,19226168:25785795,410518,107478 -h1,12831:6797234,19226168:0,0,0 -k1,12831:10257567,19226168:298876 -k1,12831:11504881,19226168:298877 -k1,12831:19075108,19226168:298876 -k1,12831:20322423,19226168:298877 -k1,12831:22202027,19226168:298876 -k1,12831:23765487,19226168:298877 -k1,12831:25012800,19226168:298876 -k1,12831:31634591,19226168:298877 -k1,12831:31634591,19226168:0 -h1,12831:32583029,19226168:0,0,0 -k1,12831:32583029,19226168:0 -k1,12831:32583029,19226168:0 -) -(1,12832:6797234,19892346:25785795,410518,107478 -h1,12832:6797234,19892346:0,0,0 -g1,12832:7113380,19892346 -g1,12832:7429526,19892346 -g1,12832:7745672,19892346 -g1,12832:8061818,19892346 -g1,12832:11539421,19892346 -g1,12832:12804004,19892346 -g1,12832:17862335,19892346 -g1,12832:19126919,19892346 -g1,12832:20707648,19892346 -g1,12832:23236814,19892346 -g1,12832:24501397,19892346 -g1,12832:29559728,19892346 -h1,12832:30508165,19892346:0,0,0 -k1,12832:32583029,19892346:2074864 -g1,12832:32583029,19892346 -) -(1,12837:6797234,20558524:25785795,404226,101187 -(1,12834:6797234,20558524:0,0,0 -g1,12834:6797234,20558524 -g1,12834:6797234,20558524 -g1,12834:6469554,20558524 -(1,12834:6469554,20558524:0,0,0 -) -g1,12834:6797234,20558524 -) -g1,12837:7745671,20558524 -g1,12837:9642545,20558524 -g1,12837:10274837,20558524 -g1,12837:11855566,20558524 -g1,12837:13436295,20558524 -g1,12837:15017024,20558524 -g1,12837:15649316,20558524 -h1,12837:17230044,20558524:0,0,0 -k1,12837:32583029,20558524:15352985 -g1,12837:32583029,20558524 -) -(1,12837:6797234,21224702:25785795,404226,9436 -h1,12837:6797234,21224702:0,0,0 -g1,12837:7745671,21224702 -g1,12837:10274837,21224702 -g1,12837:10907129,21224702 -g1,12837:12487858,21224702 -g1,12837:13752441,21224702 -g1,12837:16281607,21224702 -g1,12837:16913899,21224702 -k1,12837:16913899,21224702:0 -h1,12837:19443064,21224702:0,0,0 -k1,12837:32583029,21224702:13139965 -g1,12837:32583029,21224702 -) -] -) -g1,12838:32583029,21234138 -g1,12838:6797234,21234138 -g1,12838:6797234,21234138 -g1,12838:32583029,21234138 -g1,12838:32583029,21234138 -) -h1,12838:6797234,21430746:0,0,0 -(1,12842:6797234,22796522:25785795,513147,126483 -h1,12841:6797234,22796522:983040,0,0 -k1,12841:9387934,22796522:226816 -k1,12841:12276168,22796522:226817 -k1,12841:13034481,22796522:226816 -k1,12841:14208948,22796522:226816 -k1,12841:14791624,22796522:226816 -k1,12841:16831167,22796522:226817 -k1,12841:19045690,22796522:226816 -k1,12841:20984962,22796522:226816 -k1,12841:22605730,22796522:226817 -k1,12841:25528042,22796522:226816 -(1,12841:25528042,22796522:0,452978,115847 -r1,12858:26941443,22796522:1413401,568825,115847 -k1,12841:25528042,22796522:-1413401 -) -(1,12841:25528042,22796522:1413401,452978,115847 -k1,12841:25528042,22796522:3277 -h1,12841:26938166,22796522:0,411205,112570 -) -k1,12841:27168259,22796522:226816 -k1,12841:28467244,22796522:226816 -k1,12841:29713146,22796522:226817 -k1,12841:31593435,22796522:226816 -k1,12842:32583029,22796522:0 -) -(1,12842:6797234,23638010:25785795,513147,126483 -k1,12841:9278209,23638010:273067 -k1,12841:10655557,23638010:273066 -k1,12841:11676390,23638010:273067 -k1,12841:14321204,23638010:273066 -k1,12841:15245699,23638010:273067 -k1,12841:17220735,23638010:273066 -k1,12841:19481509,23638010:273067 -k1,12841:20442048,23638010:273066 -k1,12841:24301245,23638010:273067 -k1,12841:25521962,23638010:273066 -k1,12841:27680500,23638010:273067 -k1,12841:31234298,23638010:273066 -k1,12842:32583029,23638010:0 -) -(1,12842:6797234,24479498:25785795,505283,134348 -k1,12841:8888249,24479498:180641 -k1,12841:10260335,24479498:180641 -k1,12841:11949615,24479498:180641 -k1,12841:16753821,24479498:180641 -k1,12841:19778069,24479498:180641 -k1,12841:21565652,24479498:180640 -k1,12841:24792406,24479498:180641 -k1,12841:26077329,24479498:180641 -k1,12841:27005736,24479498:180641 -k1,12841:30158435,24479498:180641 -k1,12841:31021961,24479498:180641 -k1,12842:32583029,24479498:0 -) -(1,12842:6797234,25320986:25785795,505283,126483 -k1,12842:32583028,25320986:23751556 -g1,12842:32583028,25320986 -) -(1,12844:6797234,26162474:25785795,513147,134348 -h1,12843:6797234,26162474:983040,0,0 -k1,12843:9926031,26162474:201959 -k1,12843:11412495,26162474:201958 -k1,12843:12633539,26162474:201959 -k1,12843:16091326,26162474:201958 -k1,12843:18148609,26162474:201959 -k1,12843:20393980,26162474:201958 -k1,12843:21989890,26162474:201959 -k1,12843:23210933,26162474:201958 -k1,12843:25571648,26162474:201959 -k1,12843:26440762,26162474:201958 -(1,12843:26440762,26162474:0,452978,115847 -r1,12858:29612722,26162474:3171960,568825,115847 -k1,12843:26440762,26162474:-3171960 -) -(1,12843:26440762,26162474:3171960,452978,115847 -k1,12843:26440762,26162474:3277 -h1,12843:29609445,26162474:0,411205,112570 -) -k1,12843:29814681,26162474:201959 -k1,12843:31714677,26162474:201958 -k1,12843:32583029,26162474:0 -) -(1,12844:6797234,27003962:25785795,513147,115847 -g1,12843:7931006,27003962 -(1,12843:7931006,27003962:0,452978,115847 -r1,12858:12509815,27003962:4578809,568825,115847 -k1,12843:7931006,27003962:-4578809 -) -(1,12843:7931006,27003962:4578809,452978,115847 -g1,12843:11099690,27003962 -g1,12843:12154826,27003962 -h1,12843:12506538,27003962:0,411205,112570 -) -g1,12843:12709044,27003962 -g1,12843:15235456,27003962 -g1,12843:16101841,27003962 -(1,12843:16101841,27003962:0,452978,115847 -r1,12858:20680650,27003962:4578809,568825,115847 -k1,12843:16101841,27003962:-4578809 -) -(1,12843:16101841,27003962:4578809,452978,115847 -g1,12843:19270525,27003962 -g1,12843:20325661,27003962 -h1,12843:20677373,27003962:0,411205,112570 -) -g1,12843:20879879,27003962 -g1,12843:21695146,27003962 -g1,12843:22992103,27003962 -k1,12844:32583029,27003962:7921069 -g1,12844:32583029,27003962 -) -(1,12846:6797234,27845450:25785795,513147,134348 -h1,12845:6797234,27845450:983040,0,0 -k1,12845:10229464,27845450:243248 -k1,12845:11491797,27845450:243248 -k1,12845:14396461,27845450:243247 -k1,12845:16495033,27845450:243248 -k1,12845:17463109,27845450:243248 -k1,12845:18392519,27845450:243248 -k1,12845:19287194,27845450:243247 -k1,12845:20721887,27845450:243248 -k1,12845:23555773,27845450:243248 -k1,12845:24818106,27845450:243248 -k1,12845:27928553,27845450:243247 -k1,12845:28703298,27845450:243248 -k1,12845:32583029,27845450:0 -) -(1,12846:6797234,28686938:25785795,513147,134348 -g1,12845:8855719,28686938 -g1,12845:10497395,28686938 -g1,12845:11095083,28686938 -g1,12845:12684331,28686938 -g1,12845:14689077,28686938 -g1,12845:15244166,28686938 -g1,12845:18533418,28686938 -k1,12846:32583029,28686938:12684496 -g1,12846:32583029,28686938 -) -(1,12848:6797234,29528426:25785795,505283,134348 -h1,12847:6797234,29528426:983040,0,0 -k1,12847:9151622,29528426:222502 -(1,12847:9151622,29528426:0,459977,115847 -r1,12858:15137277,29528426:5985655,575824,115847 -k1,12847:9151622,29528426:-5985655 -) -(1,12847:9151622,29528426:5985655,459977,115847 -k1,12847:9151622,29528426:3277 -h1,12847:15134000,29528426:0,411205,112570 -) -k1,12847:15359780,29528426:222503 -k1,12847:16773727,29528426:222502 -(1,12847:16773727,29528426:0,459977,115847 -r1,12858:22055958,29528426:5282231,575824,115847 -k1,12847:16773727,29528426:-5282231 -) -(1,12847:16773727,29528426:5282231,459977,115847 -k1,12847:16773727,29528426:3277 -h1,12847:22052681,29528426:0,411205,112570 -) -k1,12847:22278461,29528426:222503 -k1,12847:23152391,29528426:222502 -k1,12847:25743364,29528426:222502 -k1,12847:26984952,29528426:222503 -k1,12847:27622274,29528426:222479 -k1,12847:29804302,29528426:222502 -k1,12847:32583029,29528426:0 -) -(1,12848:6797234,30369914:25785795,505283,126483 -g1,12847:7757991,30369914 -g1,12847:8976305,30369914 -g1,12847:10275228,30369914 -(1,12847:10275228,30369914:0,459977,115847 -r1,12858:13798900,30369914:3523672,575824,115847 -k1,12847:10275228,30369914:-3523672 -) -(1,12847:10275228,30369914:3523672,459977,115847 -k1,12847:10275228,30369914:3277 -h1,12847:13795623,30369914:0,411205,112570 -) -k1,12848:32583030,30369914:18610460 -g1,12848:32583030,30369914 -) -] -g1,12849:32583029,30496397 -) -h1,12849:6630773,30496397:0,0,0 -(1,12852:6630773,31862173:25952256,513147,134348 -h1,12851:6630773,31862173:983040,0,0 -k1,12851:10158738,31862173:146963 -(1,12851:10158738,31862173:0,452978,115847 -r1,12858:13330698,31862173:3171960,568825,115847 -k1,12851:10158738,31862173:-3171960 -) -(1,12851:10158738,31862173:3171960,452978,115847 -k1,12851:10158738,31862173:3277 -h1,12851:13327421,31862173:0,411205,112570 -) -k1,12851:13477661,31862173:146963 -k1,12851:15047410,31862173:146962 -k1,12851:16213458,31862173:146963 -k1,12851:18072877,31862173:146963 -k1,12851:20207547,31862173:146963 -k1,12851:23034933,31862173:146963 -k1,12851:24575847,31862173:146963 -k1,12851:26006004,31862173:146962 -k1,12851:27542330,31862173:146963 -k1,12851:28636944,31862173:146963 -k1,12851:29802992,31862173:146963 -k1,12852:32583029,31862173:0 -) -(1,12852:6630773,32703661:25952256,505283,126483 -k1,12851:8269008,32703661:198409 -k1,12851:11309057,32703661:198408 -k1,12851:12158894,32703661:198409 -k1,12851:15145205,32703661:198409 -k1,12851:19127006,32703661:198408 -k1,12851:20143304,32703661:198409 -(1,12851:20143304,32703661:0,452978,115847 -r1,12858:23315264,32703661:3171960,568825,115847 -k1,12851:20143304,32703661:-3171960 -) -(1,12851:20143304,32703661:3171960,452978,115847 -k1,12851:20143304,32703661:3277 -h1,12851:23311987,32703661:0,411205,112570 -) -k1,12851:23513673,32703661:198409 -k1,12851:26090383,32703661:198408 -k1,12851:27571987,32703661:198409 -k1,12851:29159759,32703661:198409 -k1,12851:30044329,32703661:198408 -k1,12851:32124932,32703661:198409 -k1,12851:32583029,32703661:0 -) -(1,12852:6630773,33545149:25952256,513147,126483 -k1,12851:8851132,33545149:208404 -k1,12851:13211898,33545149:208405 -k1,12851:14611747,33545149:208404 -k1,12851:19077370,33545149:208404 -k1,12851:19937203,33545149:208405 -k1,12851:22156252,33545149:208404 -k1,12851:23023948,33545149:208404 -k1,12851:24251437,33545149:208404 -k1,12851:28466713,33545149:208405 -k1,12851:31516758,33545149:208404 -k1,12851:32583029,33545149:0 -) -(1,12852:6630773,34386637:25952256,513147,134348 -k1,12851:9267243,34386637:230643 -k1,12851:10113924,34386637:230643 -k1,12851:11363652,34386637:230643 -k1,12851:14029612,34386637:230642 -k1,12851:15823289,34386637:230643 -k1,12851:16681767,34386637:230643 -k1,12851:17931495,34386637:230643 -k1,12851:19529219,34386637:230643 -k1,12851:20419154,34386637:230643 -k1,12851:21667571,34386637:230643 -k1,12851:22557506,34386637:230643 -k1,12851:24813866,34386637:230642 -k1,12851:26235954,34386637:230643 -k1,12851:28158737,34386637:230643 -k1,12851:30091350,34386637:230643 -k1,12851:32583029,34386637:0 -) -(1,12852:6630773,35228125:25952256,513147,126483 -k1,12851:9348251,35228125:263155 -(1,12851:9348251,35228125:0,452978,115847 -r1,12858:12520211,35228125:3171960,568825,115847 -k1,12851:9348251,35228125:-3171960 -) -(1,12851:9348251,35228125:3171960,452978,115847 -k1,12851:9348251,35228125:3277 -h1,12851:12516934,35228125:0,411205,112570 -) -k1,12851:12783367,35228125:263156 -k1,12851:15561138,35228125:263155 -k1,12851:16440331,35228125:263155 -k1,12851:19369491,35228125:263155 -k1,12851:20284075,35228125:263156 -k1,12851:21566315,35228125:263155 -k1,12851:25282562,35228125:263155 -k1,12851:28591830,35228125:263155 -k1,12851:29514278,35228125:263156 -k1,12851:30796518,35228125:263155 -k1,12852:32583029,35228125:0 -) -(1,12852:6630773,36069613:25952256,513147,126483 -k1,12851:8737201,36069613:242584 -k1,12851:11189659,36069613:242584 -k1,12851:14711665,36069613:242584 -k1,12851:17885019,36069613:242584 -k1,12851:19324290,36069613:242584 -k1,12851:20850069,36069613:242584 -k1,12851:22482016,36069613:242584 -k1,12851:24346616,36069613:242584 -k1,12851:25336966,36069613:242584 -k1,12851:27617720,36069613:242584 -k1,12851:28476342,36069613:242584 -k1,12851:29074786,36069613:242584 -k1,12851:30706733,36069613:242584 -k1,12851:32583029,36069613:0 -) -(1,12852:6630773,36911101:25952256,513147,134348 -k1,12851:8261964,36911101:237240 -k1,12851:11212395,36911101:237240 -k1,12851:13185029,36911101:237241 -k1,12851:14441354,36911101:237240 -k1,12851:16332067,36911101:237240 -k1,12851:18637623,36911101:237240 -k1,12851:19822515,36911101:237241 -k1,12851:21078840,36911101:237240 -k1,12851:25081779,36911101:237240 -k1,12851:28160660,36911101:237240 -k1,12851:29084063,36911101:237241 -k1,12851:29937341,36911101:237240 -k1,12851:31193666,36911101:237240 -k1,12851:32583029,36911101:0 -) -(1,12852:6630773,37752589:25952256,513147,126483 -k1,12851:8440221,37752589:296222 -k1,12851:9684095,37752589:296223 -k1,12851:10999402,37752589:296222 -k1,12851:12156768,37752589:296223 -k1,12851:12808850,37752589:296222 -k1,12851:15978827,37752589:296223 -k1,12851:18786389,37752589:296222 -k1,12851:19614109,37752589:296223 -k1,12851:20976602,37752589:296222 -k1,12851:23571173,37752589:296223 -k1,12851:25058840,37752589:296222 -k1,12851:28582056,37752589:296223 -k1,12851:31591469,37752589:296222 -k1,12851:32583029,37752589:0 -) -(1,12852:6630773,38594077:25952256,505283,134348 -k1,12851:9500431,38594077:254771 -k1,12851:11158983,38594077:254771 -k1,12851:15179453,38594077:254771 -k1,12851:18275865,38594077:254771 -k1,12851:19146674,38594077:254771 -k1,12851:20420531,38594077:254772 -k1,12851:21958497,38594077:254771 -k1,12851:23602631,38594077:254771 -k1,12851:24961684,38594077:254771 -k1,12851:25964221,38594077:254771 -k1,12851:28074972,38594077:254771 -k1,12851:31900144,38594077:254771 -k1,12851:32583029,38594077:0 -) -(1,12852:6630773,39435565:25952256,513147,134348 -g1,12851:9227964,39435565 -g1,12851:10499362,39435565 -g1,12851:12078779,39435565 -g1,12851:13900024,39435565 -g1,12851:16080406,39435565 -g1,12851:16895673,39435565 -g1,12851:18298143,39435565 -g1,12851:20821934,39435565 -g1,12851:22765076,39435565 -g1,12851:23580343,39435565 -g1,12851:24798657,39435565 -g1,12851:27433204,39435565 -k1,12852:32583029,39435565:3379698 -g1,12852:32583029,39435565 -) -v1,12854:6630773,40801341:0,393216,0 -(1,12855:6630773,44696744:25952256,4288619,0 -g1,12855:6630773,44696744 -g1,12855:6303093,44696744 -r1,12858:6401397,44696744:98304,4288619,0 -g1,12855:6600626,44696744 -g1,12855:6797234,44696744 -[1,12855:6797234,44696744:25785795,4288619,0 -(1,12855:6797234,41196444:25785795,788319,218313 -(1,12854:6797234,41196444:0,788319,218313 -r1,12858:7917113,41196444:1119879,1006632,218313 -k1,12854:6797234,41196444:-1119879 -) -(1,12854:6797234,41196444:1119879,788319,218313 -) -k1,12854:8168543,41196444:251430 -k1,12854:8496223,41196444:327680 -k1,12854:11145616,41196444:251431 -(1,12854:11145616,41196444:0,452978,115847 -r1,12858:14317576,41196444:3171960,568825,115847 -k1,12854:11145616,41196444:-3171960 -) -(1,12854:11145616,41196444:3171960,452978,115847 -k1,12854:11145616,41196444:3277 -h1,12854:14314299,41196444:0,411205,112570 -) -k1,12854:14569006,41196444:251430 -k1,12854:15351933,41196444:251430 -k1,12854:17802751,41196444:251430 -k1,12854:19655882,41196444:251431 -k1,12854:22431759,41196444:251430 -k1,12854:23342481,41196444:251430 -k1,12854:25092719,41196444:251430 -k1,12854:29967715,41196444:251431 -k1,12854:30870573,41196444:251430 -k1,12854:32583029,41196444:0 -) -(1,12855:6797234,42037932:25785795,513147,134348 -k1,12854:9473615,42037932:184702 -k1,12854:10700340,42037932:184703 -k1,12854:12577182,42037932:184702 -k1,12854:14478273,42037932:184703 -k1,12854:15322267,42037932:184702 -k1,12854:17824977,42037932:184702 -k1,12854:20534127,42037932:184703 -k1,12854:21250326,42037932:184702 -k1,12854:24857974,42037932:184703 -k1,12854:25804204,42037932:184702 -k1,12854:27762311,42037932:184703 -k1,12854:30730982,42037932:184702 -k1,12855:32583029,42037932:0 -) -(1,12855:6797234,42879420:25785795,505283,134348 -k1,12854:8213654,42879420:270851 -k1,12854:9769011,42879420:270851 -k1,12854:11506557,42879420:270850 -k1,12854:14509604,42879420:270851 -k1,12854:15799540,42879420:270851 -k1,12854:19107329,42879420:270851 -k1,12854:21388825,42879420:270851 -k1,12854:22851120,42879420:270850 -k1,12854:24399268,42879420:270851 -k1,12854:26482845,42879420:270851 -k1,12854:27381531,42879420:270851 -k1,12854:29354351,42879420:270850 -k1,12854:31322584,42879420:270851 -k1,12854:32051532,42879420:270851 -k1,12854:32583029,42879420:0 -) -(1,12855:6797234,43720908:25785795,505283,134348 -k1,12854:10148922,43720908:242660 -k1,12854:11043010,43720908:242660 -k1,12854:14017867,43720908:242661 -k1,12854:15279612,43720908:242660 -k1,12854:18559210,43720908:242660 -k1,12854:20812515,43720908:242660 -k1,12854:22449126,43720908:242660 -(1,12854:22449126,43720908:0,452978,115847 -r1,12858:25621086,43720908:3171960,568825,115847 -k1,12854:22449126,43720908:-3171960 -) -(1,12854:22449126,43720908:3171960,452978,115847 -k1,12854:22449126,43720908:3277 -h1,12854:25617809,43720908:0,411205,112570 -) -k1,12854:25863746,43720908:242660 -k1,12854:27297852,43720908:242661 -k1,12854:28632997,43720908:242660 -k1,12854:30572384,43720908:242660 -k1,12854:32583029,43720908:0 -) -(1,12855:6797234,44562396:25785795,513147,134348 -g1,12854:7682625,44562396 -g1,12854:9271217,44562396 -g1,12854:11178970,44562396 -g1,12854:12325850,44562396 -g1,12854:12880939,44562396 -g1,12854:16986114,44562396 -k1,12855:32583029,44562396:12968921 -g1,12855:32583029,44562396 -) -] -g1,12855:32583029,44696744 -) -h1,12855:6630773,44696744:0,0,0 -] -(1,12858:32583029,45706769:0,0,0 -g1,12858:32583029,45706769 -) -) -] -(1,12858:6630773,47279633:25952256,0,0 -h1,12858:6630773,47279633:25952256,0,0 -) -] -(1,12858:4262630,4025873:0,0,0 -[1,12858:-473656,4025873:0,0,0 -(1,12858:-473656,-710413:0,0,0 -(1,12858:-473656,-710413:0,0,0 -g1,12858:-473656,-710413 -) -g1,12858:-473656,-710413 -) -] -) -] -!27886 -}220 -Input:1930:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1931:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1932:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1933:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1934:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1935:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1936:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1937:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1938:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1939:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1940:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1941:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1942:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1943:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1944:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1422 -{221 -[1,12921:4262630,47279633:28320399,43253760,0 -(1,12921:4262630,4025873:0,0,0 -[1,12921:-473656,4025873:0,0,0 -(1,12921:-473656,-710413:0,0,0 -(1,12921:-473656,-644877:0,0,0 -k1,12921:-473656,-644877:-65536 +[1,12302:3078558,4812305:0,0,0 +(1,12302:3078558,2439708:0,1703936,0 +g1,12302:29030814,2439708 +g1,12302:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,12302:36151628,1915420:16384,1179648,0 ) -(1,12921:-473656,4736287:0,0,0 -k1,12921:-473656,4736287:5209943 -) -g1,12921:-473656,-710413 +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] ) -[1,12921:6630773,47279633:25952256,43253760,0 -[1,12921:6630773,4812305:25952256,786432,0 -(1,12921:6630773,4812305:25952256,513147,126483 -(1,12921:6630773,4812305:25952256,513147,126483 -g1,12921:3078558,4812305 -[1,12921:3078558,4812305:0,0,0 -(1,12921:3078558,2439708:0,1703936,0 -k1,12921:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,12921:2537886,2439708:1179648,16384,0 +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,12302:37855564,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,12921:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +k1,12302:3078556,2439708:-34777008 +) +] +[1,12302:3078558,4812305:0,0,0 +(1,12302:3078558,49800853:0,16384,2228224 +k1,12302:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,12302:2537886,49800853:1179648,16384,0 +) +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,12302:3078558,51504789:16384,1179648,0 +) +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 ) ] ) ) ) ] -[1,12921:3078558,4812305:0,0,0 -(1,12921:3078558,2439708:0,1703936,0 -g1,12921:29030814,2439708 -g1,12921:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,12921:36151628,1915420:16384,1179648,0 +[1,12302:3078558,4812305:0,0,0 +(1,12302:3078558,49800853:0,16384,2228224 +g1,12302:29030814,49800853 +g1,12302:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,12302:36151628,51504789:16384,1179648,0 +) +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 +) +] +) +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,12302:37855564,49800853:1179648,16384,0 +) +) +k1,12302:3078556,49800853:-34777008 +) +] +g1,12302:6630773,4812305 +g1,12302:6630773,4812305 +g1,12302:10836873,4812305 +k1,12302:31387653,4812305:20550780 +) +) +] +[1,12302:6630773,45706769:25952256,40108032,0 +(1,12302:6630773,45706769:25952256,40108032,0 +(1,12302:6630773,45706769:0,0,0 +g1,12302:6630773,45706769 +) +[1,12302:6630773,45706769:25952256,40108032,0 +v1,12229:6630773,6254097:0,393216,0 +(1,12230:6630773,12744438:25952256,6883557,0 +g1,12230:6630773,12744438 +g1,12230:6237557,12744438 +r1,12302:6368629,12744438:131072,6883557,0 +g1,12230:6567858,12744438 +g1,12230:6764466,12744438 +[1,12230:6764466,12744438:25818563,6883557,0 +(1,12230:6764466,6562395:25818563,701514,196608 +(1,12229:6764466,6562395:0,701514,196608 +r1,12302:8010564,6562395:1246098,898122,196608 +k1,12229:6764466,6562395:-1246098 +) +(1,12229:6764466,6562395:1246098,701514,196608 +) +k1,12229:8164443,6562395:153879 +k1,12229:8492123,6562395:327680 +k1,12229:9273836,6562395:153878 +k1,12229:10949461,6562395:153879 +k1,12229:11762632,6562395:153879 +k1,12229:15827699,6562395:153878 +k1,12229:18954946,6562395:153879 +$1,12229:18954946,6562395 +$1,12229:19380275,6562395 +k1,12229:21757791,6562395:153879 +k1,12229:23103114,6562395:153878 +$1,12229:23103114,6562395 +$1,12229:23423585,6562395 +k1,12229:25801101,6562395:153879 +k1,12229:26946540,6562395:153879 +k1,12229:30309061,6562395:153878 +k1,12229:31224468,6562395:153879 +k1,12230:32583029,6562395:0 +) +(1,12230:6764466,7427475:25818563,513147,134348 +k1,12229:9500321,7427475:254007 +k1,12229:11321948,7427475:254006 +k1,12229:12595040,7427475:254007 +k1,12229:15735252,7427475:254006 +k1,12229:17727274,7427475:254007 +k1,12229:18928932,7427475:254007 +k1,12229:20339648,7427475:254006 +k1,12229:22486335,7427475:254007 +k1,12229:23423226,7427475:254006 +k1,12229:24842463,7427475:254007 +k1,12229:27870608,7427475:254006 +k1,12229:29143700,7427475:254007 +k1,12229:32583029,7427475:0 +) +(1,12230:6764466,8292555:25818563,513147,126483 +k1,12229:8704808,8292555:202327 +k1,12229:11757952,8292555:202328 +k1,12229:12316139,8292555:202327 +k1,12229:16818284,8292555:202328 +k1,12229:20422585,8292555:202327 +k1,12229:22478927,8292555:202328 +k1,12229:23700339,8292555:202327 +k1,12229:25640682,8292555:202328 +k1,12229:26502301,8292555:202327 +k1,12229:27060489,8292555:202328 +k1,12229:29550678,8292555:202327 +k1,12229:32583029,8292555:0 +) +(1,12230:6764466,9157635:25818563,513147,126483 +k1,12229:8494288,9157635:216596 +k1,12229:9397047,9157635:216597 +k1,12229:12766580,9157635:216596 +k1,12229:13666062,9157635:216597 +k1,12229:14901743,9157635:216596 +k1,12229:16856355,9157635:216597 +k1,12229:20281594,9157635:216596 +k1,12229:21885587,9157635:216596 +k1,12229:22868300,9157635:216597 +k1,12229:26559615,9157635:216596 +k1,12229:28662338,9157635:216597 +k1,12229:29898019,9157635:216596 +k1,12230:32583029,9157635:0 +) +(1,12230:6764466,10022715:25818563,513147,134348 +k1,12229:8226423,10022715:194491 +k1,12229:9080205,10022715:194490 +k1,12229:10084066,10022715:194491 +k1,12229:12049339,10022715:194490 +k1,12229:12903122,10022715:194491 +k1,12229:16779425,10022715:194490 +k1,12229:18165361,10022715:194491 +k1,12229:19793779,10022715:194490 +k1,12229:22579564,10022715:194491 +k1,12229:23535582,10022715:194490 +k1,12229:24749158,10022715:194491 +k1,12229:27787255,10022715:194490 +k1,12229:31105192,10022715:194491 +k1,12230:32583029,10022715:0 +) +(1,12230:6764466,10887795:25818563,505283,138281 +k1,12229:10300570,10887795:280275 +k1,12229:11599931,10887795:280276 +$1,12229:11599931,10887795 +$1,12229:12067858,10887795 +k1,12229:14571770,10887795:280275 +k1,12229:19475610,10887795:280275 +k1,12229:20407314,10887795:280276 +k1,12229:22384316,10887795:280275 +k1,12229:25637959,10887795:280275 +$1,12229:25637959,10887795 +$1,12229:26063288,10887795 +k1,12229:28567201,10887795:280276 +k1,12229:30038921,10887795:280275 +$1,12229:30038921,10887795 +$1,12229:30359392,10887795 +k1,12229:32583029,10887795:0 +) +(1,12230:6764466,11752875:25818563,505283,134348 +k1,12229:8577961,11752875:283229 +k1,12229:9512618,11752875:283229 +k1,12229:10543613,11752875:283229 +k1,12229:12981666,11752875:283229 +k1,12229:14100479,11752875:283229 +k1,12229:16119101,11752875:283229 +(1,12229:16119101,11752875:0,435480,115847 +r1,12302:18939350,11752875:2820249,551327,115847 +k1,12229:16119101,11752875:-2820249 +) +(1,12229:16119101,11752875:2820249,435480,115847 +g1,12229:17880937,11752875 +g1,12229:18584361,11752875 +h1,12229:18936073,11752875:0,411205,112570 +) +k1,12229:19222580,11752875:283230 +k1,12229:20697254,11752875:283229 +(1,12229:20697254,11752875:0,452978,115847 +r1,12302:22814080,11752875:2116826,568825,115847 +k1,12229:20697254,11752875:-2116826 +) +(1,12229:20697254,11752875:2116826,452978,115847 +g1,12229:21755667,11752875 +g1,12229:22459091,11752875 +h1,12229:22810803,11752875:0,411205,112570 +) +k1,12229:23097309,11752875:283229 +k1,12229:25078576,11752875:283229 +k1,12229:27451748,11752875:283229 +(1,12229:27451748,11752875:0,452978,115847 +r1,12302:29920285,11752875:2468537,568825,115847 +k1,12229:27451748,11752875:-2468537 +) +(1,12229:27451748,11752875:2468537,452978,115847 +k1,12229:27451748,11752875:3277 +h1,12229:29917008,11752875:0,411205,112570 +) +k1,12229:30203514,11752875:283229 +k1,12229:31169628,11752875:283229 +(1,12229:31169628,11752875:0,452978,115847 +r1,12302:32583029,11752875:1413401,568825,115847 +k1,12229:31169628,11752875:-1413401 +) +(1,12229:31169628,11752875:1413401,452978,115847 +k1,12229:31169628,11752875:3277 +h1,12229:32579752,11752875:0,411205,112570 +) +k1,12229:32583029,11752875:0 +) +(1,12230:6764466,12617955:25818563,513147,126483 +g1,12229:10933866,12617955 +g1,12229:13007425,12617955 +g1,12229:16511635,12617955 +g1,12229:18224090,12617955 +g1,12229:20433964,12617955 +g1,12229:21624753,12617955 +g1,12229:22843067,12617955 +k1,12230:32583029,12617955:6970411 +g1,12230:32583029,12617955 +) +] +g1,12230:32583029,12744438 +) +h1,12230:6630773,12744438:0,0,0 +(1,12232:6630773,14861256:25952256,564462,139132 +(1,12232:6630773,14861256:2450326,534184,12975 +g1,12232:6630773,14861256 +g1,12232:9081099,14861256 +) +g1,12232:12765599,14861256 +g1,12232:14765365,14861256 +g1,12232:19093625,14861256 +g1,12232:20660853,14861256 +k1,12232:32583029,14861256:7350253 +g1,12232:32583029,14861256 +) +(1,12236:6630773,16119552:25952256,513147,126483 +k1,12235:7984293,16119552:156833 +k1,12235:10447337,16119552:156832 +k1,12235:14668057,16119552:156833 +k1,12235:16392510,16119552:156832 +k1,12235:17833849,16119552:156833 +k1,12235:18606720,16119552:156833 +k1,12235:19782637,16119552:156832 +k1,12235:22693948,16119552:156833 +k1,12235:25129468,16119552:156833 +k1,12235:25817797,16119552:156832 +k1,12235:26626058,16119552:156833 +k1,12235:28806642,16119552:156832 +k1,12235:29982560,16119552:156833 +k1,12235:32583029,16119552:0 +) +(1,12236:6630773,16984632:25952256,513147,138281 +k1,12235:11415884,16984632:161546 +k1,12235:12228859,16984632:161547 +k1,12235:12746265,16984632:161546 +k1,12235:15045595,16984632:161546 +$1,12235:15045595,16984632 +$1,12235:15513522,16984632 +k1,12235:17568404,16984632:161547 +k1,12235:18412835,16984632:161546 +k1,12235:19921801,16984632:161546 +k1,12235:21969474,16984632:161547 +k1,12235:23287730,16984632:161546 +k1,12235:24108569,16984632:161547 +k1,12235:25289200,16984632:161546 +k1,12235:26800132,16984632:161546 +k1,12235:27620971,16984632:161547 +k1,12235:28801602,16984632:161546 +k1,12235:32583029,16984632:0 +) +(1,12236:6630773,17849712:25952256,513147,126483 +k1,12235:8777295,17849712:231560 +k1,12235:10883186,17849712:231561 +k1,12235:14045516,17849712:231560 +k1,12235:15268636,17849712:231560 +k1,12235:18805178,17849712:231561 +k1,12235:19688166,17849712:231560 +k1,12235:20938811,17849712:231560 +k1,12235:23181017,17849712:231561 +k1,12235:24028615,17849712:231560 +k1,12235:25279260,17849712:231560 +k1,12235:27406778,17849712:231561 +k1,12235:28297630,17849712:231560 +k1,12235:32583029,17849712:0 +) +(1,12236:6630773,18714792:25952256,513147,134348 +g1,12235:9760772,18714792 +g1,12235:11473227,18714792 +g1,12235:12288494,18714792 +g1,12235:14521305,18714792 +g1,12235:16476244,18714792 +g1,12235:17326901,18714792 +g1,12235:19550537,18714792 +g1,12235:23487284,18714792 +g1,12235:25080464,18714792 +g1,12235:28363817,18714792 +k1,12236:32583029,18714792:2523796 +g1,12236:32583029,18714792 +) +v1,12238:6630773,19399647:0,393216,0 +(1,12257:6630773,23786935:25952256,4780504,196608 +g1,12257:6630773,23786935 +g1,12257:6630773,23786935 +g1,12257:6434165,23786935 +(1,12257:6434165,23786935:0,4780504,196608 +r1,12302:32779637,23786935:26345472,4977112,196608 +k1,12257:6434165,23786935:-26345472 +) +(1,12257:6434165,23786935:26345472,4780504,196608 +[1,12257:6630773,23786935:25952256,4583896,0 +(1,12240:6630773,19627478:25952256,424439,106246 +(1,12239:6630773,19627478:0,0,0 +g1,12239:6630773,19627478 +g1,12239:6630773,19627478 +g1,12239:6303093,19627478 +(1,12239:6303093,19627478:0,0,0 +) +g1,12239:6630773,19627478 +) +k1,12240:6630773,19627478:0 +g1,12240:9286405,19627478 +g1,12240:9950313,19627478 +g1,12240:11942037,19627478 +g1,12240:13601807,19627478 +g1,12240:14265715,19627478 +g1,12240:15261577,19627478 +g1,12240:16257439,19627478 +g1,12240:16921347,19627478 +h1,12240:17585255,19627478:0,0,0 +k1,12240:32583029,19627478:14997774 +g1,12240:32583029,19627478 +) +(1,12244:6630773,20443405:25952256,424439,79822 +(1,12242:6630773,20443405:0,0,0 +g1,12242:6630773,20443405 +g1,12242:6630773,20443405 +g1,12242:6303093,20443405 +(1,12242:6303093,20443405:0,0,0 +) +g1,12242:6630773,20443405 +) +g1,12244:7626635,20443405 +g1,12244:8954451,20443405 +k1,12244:8954451,20443405:0 +h1,12244:11942036,20443405:0,0,0 +k1,12244:32583028,20443405:20640992 +g1,12244:32583028,20443405 +) +(1,12246:6630773,21259332:25952256,424439,106246 +(1,12245:6630773,21259332:0,0,0 +g1,12245:6630773,21259332 +g1,12245:6630773,21259332 +g1,12245:6303093,21259332 +(1,12245:6303093,21259332:0,0,0 +) +g1,12245:6630773,21259332 +) +k1,12246:6630773,21259332:0 +g1,12246:9286405,21259332 +g1,12246:9950313,21259332 +g1,12246:11942037,21259332 +g1,12246:13601807,21259332 +g1,12246:14265715,21259332 +g1,12246:15261577,21259332 +g1,12246:16257439,21259332 +g1,12246:16921347,21259332 +h1,12246:17585255,21259332:0,0,0 +k1,12246:32583029,21259332:14997774 +g1,12246:32583029,21259332 +) +(1,12250:6630773,22075259:25952256,424439,79822 +(1,12248:6630773,22075259:0,0,0 +g1,12248:6630773,22075259 +g1,12248:6630773,22075259 +g1,12248:6303093,22075259 +(1,12248:6303093,22075259:0,0,0 +) +g1,12248:6630773,22075259 +) +g1,12250:7626635,22075259 +g1,12250:8954451,22075259 +k1,12250:8954451,22075259:0 +h1,12250:11942036,22075259:0,0,0 +k1,12250:32583028,22075259:20640992 +g1,12250:32583028,22075259 +) +(1,12252:6630773,22891186:25952256,424439,106246 +(1,12251:6630773,22891186:0,0,0 +g1,12251:6630773,22891186 +g1,12251:6630773,22891186 +g1,12251:6303093,22891186 +(1,12251:6303093,22891186:0,0,0 +) +g1,12251:6630773,22891186 +) +k1,12252:6630773,22891186:0 +g1,12252:9286405,22891186 +g1,12252:9950313,22891186 +g1,12252:11942037,22891186 +g1,12252:13601807,22891186 +g1,12252:14265715,22891186 +g1,12252:15261577,22891186 +g1,12252:16257439,22891186 +g1,12252:16921347,22891186 +g1,12252:17917209,22891186 +g1,12252:21568702,22891186 +g1,12252:22232610,22891186 +h1,12252:24224334,22891186:0,0,0 +k1,12252:32583029,22891186:8358695 +g1,12252:32583029,22891186 +) +(1,12256:6630773,23707113:25952256,424439,79822 +(1,12254:6630773,23707113:0,0,0 +g1,12254:6630773,23707113 +g1,12254:6630773,23707113 +g1,12254:6303093,23707113 +(1,12254:6303093,23707113:0,0,0 +) +g1,12254:6630773,23707113 +) +g1,12256:7626635,23707113 +g1,12256:8954451,23707113 +h1,12256:11610082,23707113:0,0,0 +k1,12256:32583030,23707113:20972948 +g1,12256:32583030,23707113 +) +] +) +g1,12257:32583029,23786935 +g1,12257:6630773,23786935 +g1,12257:6630773,23786935 +g1,12257:32583029,23786935 +g1,12257:32583029,23786935 +) +h1,12257:6630773,23983543:0,0,0 +v1,12261:6630773,24848623:0,393216,0 +(1,12295:6630773,41232700:25952256,16777293,0 +g1,12295:6630773,41232700 +g1,12295:6237557,41232700 +r1,12302:6368629,41232700:131072,16777293,0 +g1,12295:6567858,41232700 +g1,12295:6764466,41232700 +[1,12295:6764466,41232700:25818563,16777293,0 +(1,12262:6764466,25209800:25818563,754393,260573 +(1,12261:6764466,25209800:0,754393,260573 +r1,12302:8010564,25209800:1246098,1014966,260573 +k1,12261:6764466,25209800:-1246098 +) +(1,12261:6764466,25209800:1246098,754393,260573 +) +k1,12261:8291204,25209800:280640 +k1,12261:8618884,25209800:327680 +k1,12261:11605506,25209800:280640 +k1,12261:14911943,25209800:280640 +k1,12261:16338808,25209800:280640 +(1,12261:16338808,25209800:0,452978,115847 +r1,12302:18807345,25209800:2468537,568825,115847 +k1,12261:16338808,25209800:-2468537 +) +(1,12261:16338808,25209800:2468537,452978,115847 +k1,12261:16338808,25209800:3277 +h1,12261:18804068,25209800:0,411205,112570 +) +k1,12261:19087985,25209800:280640 +k1,12261:20560070,25209800:280640 +k1,12261:24326570,25209800:280640 +k1,12261:27633007,25209800:280640 +k1,12261:29059872,25209800:280640 +(1,12261:29059872,25209800:0,452978,115847 +r1,12302:31528409,25209800:2468537,568825,115847 +k1,12261:29059872,25209800:-2468537 +) +(1,12261:29059872,25209800:2468537,452978,115847 +k1,12261:29059872,25209800:3277 +h1,12261:31525132,25209800:0,411205,112570 +) +k1,12261:31809049,25209800:280640 +k1,12262:32583029,25209800:0 +) +(1,12262:6764466,26074880:25818563,513147,134348 +k1,12261:8530521,26074880:197778 +k1,12261:9543567,26074880:197778 +k1,12261:14135534,26074880:197778 +k1,12261:16187982,26074880:197779 +k1,12261:17195130,26074880:197778 +k1,12261:17748768,26074880:197778 +k1,12261:19819565,26074880:197778 +k1,12261:21036428,26074880:197778 +k1,12261:21893498,26074880:197778 +k1,12261:23110361,26074880:197778 +k1,12261:27263238,26074880:197779 +k1,12261:28927712,26074880:197778 +k1,12261:31395657,26074880:197778 +k1,12261:32051532,26074880:197778 +k1,12261:32583029,26074880:0 +) +(1,12262:6764466,26939960:25818563,513147,126483 +k1,12261:9616640,26939960:222214 +k1,12261:10490282,26939960:222214 +k1,12261:12971521,26939960:222213 +k1,12261:15079206,26939960:222214 +k1,12261:16320505,26939960:222214 +k1,12261:17411071,26939960:222214 +k1,12261:18624845,26939960:222214 +k1,12261:22058322,26939960:222213 +k1,12261:23070245,26939960:222214 +k1,12261:23770216,26939960:222214 +k1,12261:24860782,26939960:222214 +k1,12261:26074555,26939960:222213 +k1,12261:29508033,26939960:222214 +k1,12261:30346285,26939960:222214 +k1,12262:32583029,26939960:0 +) +(1,12262:6764466,27805040:25818563,513147,134348 +k1,12261:7980533,27805040:225818 +k1,12261:12492406,27805040:225818 +k1,12261:15648994,27805040:225818 +k1,12261:16822464,27805040:225819 +k1,12261:18514978,27805040:225818 +k1,12261:20263853,27805040:225818 +k1,12261:21358023,27805040:225818 +k1,12261:23114107,27805040:225818 +k1,12261:23991353,27805040:225818 +k1,12261:25032439,27805040:225818 +k1,12261:26461499,27805040:225819 +k1,12261:29793724,27805040:225818 +k1,12261:30497299,27805040:225818 +k1,12261:31591469,27805040:225818 +k1,12261:32583029,27805040:0 +) +(1,12262:6764466,28670120:25818563,513147,134348 +k1,12261:9142493,28670120:210751 +k1,12261:9966006,28670120:210751 +k1,12261:13107527,28670120:210751 +k1,12261:14265929,28670120:210751 +$1,12261:14265929,28670120 +k1,12261:14936974,28670120:203118 +k1,12261:15708290,28670120:203119 +$1,12261:17093066,28670120 +k1,12261:17477487,28670120:210751 +k1,12261:18556590,28670120:210751 +k1,12261:20297607,28670120:210751 +k1,12261:21159786,28670120:210751 +k1,12261:22636693,28670120:210751 +k1,12261:23866529,28670120:210751 +k1,12261:26677749,28670120:210751 +k1,12261:27836151,28670120:210751 +k1,12261:29498524,28670120:210751 +k1,12261:30728360,28670120:210751 +k1,12261:32583029,28670120:0 +) +(1,12262:6764466,29535200:25818563,485622,95027 +g1,12261:7773065,29535200 +$1,12261:7773065,29535200 +g1,12261:9165575,29535200 +g1,12261:9915832,29535200 +$1,12261:11699067,29535200 +k1,12262:32583029,29535200:20710292 +g1,12262:32583029,29535200 +) +v1,12264:6764466,30220055:0,393216,0 +(1,12277:6764466,32975489:25818563,3148650,196608 +g1,12277:6764466,32975489 +g1,12277:6764466,32975489 +g1,12277:6567858,32975489 +(1,12277:6567858,32975489:0,3148650,196608 +r1,12302:32779637,32975489:26211779,3345258,196608 +k1,12277:6567857,32975489:-26211780 +) +(1,12277:6567858,32975489:26211779,3148650,196608 +[1,12277:6764466,32975489:25818563,2952042,0 +(1,12266:6764466,30447886:25818563,424439,106246 +(1,12265:6764466,30447886:0,0,0 +g1,12265:6764466,30447886 +g1,12265:6764466,30447886 +g1,12265:6436786,30447886 +(1,12265:6436786,30447886:0,0,0 +) +g1,12265:6764466,30447886 +) +k1,12266:6764466,30447886:0 +g1,12266:9420098,30447886 +g1,12266:10084006,30447886 +g1,12266:12407684,30447886 +g1,12266:14067454,30447886 +g1,12266:14731362,30447886 +g1,12266:15727224,30447886 +g1,12266:16723086,30447886 +g1,12266:17386994,30447886 +h1,12266:18050902,30447886:0,0,0 +k1,12266:32583029,30447886:14532127 +g1,12266:32583029,30447886 +) +(1,12270:6764466,31263813:25818563,424439,79822 +(1,12268:6764466,31263813:0,0,0 +g1,12268:6764466,31263813 +g1,12268:6764466,31263813 +g1,12268:6436786,31263813 +(1,12268:6436786,31263813:0,0,0 +) +g1,12268:6764466,31263813 +) +g1,12270:7760328,31263813 +g1,12270:9088144,31263813 +k1,12270:9088144,31263813:0 +h1,12270:12075729,31263813:0,0,0 +k1,12270:32583029,31263813:20507300 +g1,12270:32583029,31263813 +) +(1,12272:6764466,32079740:25818563,424439,106246 +(1,12271:6764466,32079740:0,0,0 +g1,12271:6764466,32079740 +g1,12271:6764466,32079740 +g1,12271:6436786,32079740 +(1,12271:6436786,32079740:0,0,0 +) +g1,12271:6764466,32079740 +) +k1,12272:6764466,32079740:0 +g1,12272:9420098,32079740 +g1,12272:10084006,32079740 +g1,12272:12407684,32079740 +g1,12272:14067454,32079740 +g1,12272:14731362,32079740 +g1,12272:15727224,32079740 +g1,12272:16723086,32079740 +g1,12272:17386994,32079740 +g1,12272:18382856,32079740 +g1,12272:22034349,32079740 +g1,12272:22698257,32079740 +h1,12272:24689981,32079740:0,0,0 +k1,12272:32583029,32079740:7893048 +g1,12272:32583029,32079740 +) +(1,12276:6764466,32895667:25818563,424439,79822 +(1,12274:6764466,32895667:0,0,0 +g1,12274:6764466,32895667 +g1,12274:6764466,32895667 +g1,12274:6436786,32895667 +(1,12274:6436786,32895667:0,0,0 +) +g1,12274:6764466,32895667 +) +g1,12276:7760328,32895667 +g1,12276:9088144,32895667 +h1,12276:11743775,32895667:0,0,0 +k1,12276:32583029,32895667:20839254 +g1,12276:32583029,32895667 +) +] +) +g1,12277:32583029,32975489 +g1,12277:6764466,32975489 +g1,12277:6764466,32975489 +g1,12277:32583029,32975489 +g1,12277:32583029,32975489 +) +h1,12277:6764466,33172097:0,0,0 +(1,12281:6764466,34037177:25818563,513147,126483 +h1,12280:6764466,34037177:983040,0,0 +k1,12280:8904310,34037177:203255 +k1,12280:10132548,34037177:203255 +k1,12280:12191128,34037177:203256 +k1,12280:13678889,34037177:203255 +k1,12280:14498182,34037177:203255 +k1,12280:15720522,34037177:203255 +k1,12280:17290858,34037177:203255 +k1,12280:18153406,34037177:203256 +k1,12280:18712521,34037177:203255 +k1,12280:22274496,34037177:203255 +k1,12280:26259178,34037177:203255 +k1,12280:27608659,34037177:203256 +k1,12280:28830999,34037177:203255 +k1,12280:31563944,34037177:203255 +k1,12280:32583029,34037177:0 +) +(1,12281:6764466,34902257:25818563,513147,134348 +k1,12280:9926884,34902257:231648 +k1,12280:10774570,34902257:231648 +k1,12280:12025302,34902257:231647 +k1,12280:13429389,34902257:231648 +k1,12280:15010423,34902257:231648 +k1,12280:16985329,34902257:231648 +k1,12280:18592578,34902257:231648 +k1,12280:19440263,34902257:231647 +k1,12280:21166132,34902257:231648 +k1,12280:22778624,34902257:231648 +k1,12280:23541769,34902257:231648 +k1,12280:24839688,34902257:231648 +k1,12280:26090420,34902257:231647 +k1,12280:27689149,34902257:231648 +k1,12280:28868448,34902257:231648 +k1,12280:32583029,34902257:0 +) +(1,12281:6764466,35767337:25818563,505283,7863 +k1,12281:32583029,35767337:21533164 +g1,12281:32583029,35767337 +) +(1,12283:6764466,36632417:25818563,513147,138281 +h1,12282:6764466,36632417:983040,0,0 +k1,12282:9714757,36632417:184016 +k1,12282:13349898,36632417:184015 +k1,12282:13889774,36632417:184016 +$1,12282:13889774,36632417 +$1,12282:14357701,36632417 +k1,12282:16435052,36632417:184016 +k1,12282:18186689,36632417:184016 +k1,12282:18726564,36632417:184015 +k1,12282:21511049,36632417:184016 +k1,12282:22311103,36632417:184016 +k1,12282:22850978,36632417:184015 +k1,12282:24226439,36632417:184016 +k1,12282:25069747,36632417:184016 +k1,12282:29164952,36632417:184016 +k1,12282:30217319,36632417:184015 +k1,12282:31931601,36632417:184016 +k1,12282:32583029,36632417:0 +) +(1,12283:6764466,37497497:25818563,513147,134348 +k1,12282:8218710,37497497:148111 +k1,12282:10437760,37497497:148112 +k1,12282:13176509,37497497:148111 +k1,12282:13680480,37497497:148111 +k1,12282:16934343,37497497:148112 +k1,12282:17765339,37497497:148111 +k1,12282:21719781,37497497:148111 +k1,12282:23059338,37497497:148112 +k1,12282:23738946,37497497:148111 +k1,12282:26633671,37497497:148111 +k1,12282:27973228,37497497:148112 +k1,12282:28737377,37497497:148111 +k1,12282:29904573,37497497:148111 +k1,12282:31419766,37497497:148112 +k1,12282:32227169,37497497:148111 +k1,12282:32583029,37497497:0 +) +(1,12283:6764466,38362577:25818563,513147,134348 +k1,12282:8818670,38362577:181185 +k1,12282:10720175,38362577:181185 +k1,12282:12266475,38362577:181185 +k1,12282:14333132,38362577:181186 +k1,12282:15533402,38362577:181185 +k1,12282:16246084,38362577:181185 +k1,12282:17086561,38362577:181185 +k1,12282:19884599,38362577:181185 +k1,12282:21107806,38362577:181185 +k1,12282:21644851,38362577:181185 +k1,12282:24931787,38362577:181185 +k1,12282:26304418,38362577:181186 +k1,12282:27353955,38362577:181185 +k1,12282:29065406,38362577:181185 +k1,12282:29898019,38362577:181185 +k1,12282:32583029,38362577:0 +) +(1,12283:6764466,39227657:25818563,505283,126483 +g1,12282:7982780,39227657 +g1,12282:10960736,39227657 +g1,12282:12840308,39227657 +g1,12282:13801065,39227657 +k1,12283:32583030,39227657:18209836 +g1,12283:32583030,39227657 +) +v1,12285:6764466,39912512:0,393216,0 +(1,12292:6764466,41036092:25818563,1516796,196608 +g1,12292:6764466,41036092 +g1,12292:6764466,41036092 +g1,12292:6567858,41036092 +(1,12292:6567858,41036092:0,1516796,196608 +r1,12302:32779637,41036092:26211779,1713404,196608 +k1,12292:6567857,41036092:-26211780 +) +(1,12292:6567858,41036092:26211779,1516796,196608 +[1,12292:6764466,41036092:25818563,1320188,0 +(1,12287:6764466,40140343:25818563,424439,106246 +(1,12286:6764466,40140343:0,0,0 +g1,12286:6764466,40140343 +g1,12286:6764466,40140343 +g1,12286:6436786,40140343 +(1,12286:6436786,40140343:0,0,0 +) +g1,12286:6764466,40140343 +) +k1,12287:6764466,40140343:0 +g1,12287:9420098,40140343 +g1,12287:10084006,40140343 +g1,12287:11079868,40140343 +g1,12287:12739638,40140343 +g1,12287:13403546,40140343 +g1,12287:14399408,40140343 +g1,12287:15395270,40140343 +g1,12287:16059178,40140343 +g1,12287:17055040,40140343 +g1,12287:17718948,40140343 +h1,12287:18050902,40140343:0,0,0 +k1,12287:32583029,40140343:14532127 +g1,12287:32583029,40140343 +) +(1,12291:6764466,40956270:25818563,424439,79822 +(1,12289:6764466,40956270:0,0,0 +g1,12289:6764466,40956270 +g1,12289:6764466,40956270 +g1,12289:6436786,40956270 +(1,12289:6436786,40956270:0,0,0 +) +g1,12289:6764466,40956270 +) +g1,12291:7760328,40956270 +g1,12291:9088144,40956270 +h1,12291:11743775,40956270:0,0,0 +k1,12291:32583029,40956270:20839254 +g1,12291:32583029,40956270 +) +] +) +g1,12292:32583029,41036092 +g1,12292:6764466,41036092 +g1,12292:6764466,41036092 +g1,12292:32583029,41036092 +g1,12292:32583029,41036092 +) +h1,12292:6764466,41232700:0,0,0 +] +g1,12295:32583029,41232700 +) +h1,12295:6630773,41232700:0,0,0 +(1,12297:6630773,43349518:25952256,564462,12975 +(1,12297:6630773,43349518:2450326,534184,12975 +g1,12297:6630773,43349518 +g1,12297:9081099,43349518 +) +g1,12297:12986914,43349518 +g1,12297:15427868,43349518 +g1,12297:17427634,43349518 +g1,12297:18053372,43349518 +k1,12297:32583029,43349518:10236000 +g1,12297:32583029,43349518 +) +(1,12301:6630773,44607814:25952256,505283,134348 +k1,12300:8288715,44607814:172896 +k1,12300:10955910,44607814:172895 +k1,12300:14399053,44607814:172896 +k1,12300:15676231,44607814:172896 +k1,12300:17224728,44607814:172896 +k1,12300:18145389,44607814:172895 +k1,12300:21471222,44607814:172896 +k1,12300:22405646,44607814:172896 +k1,12300:25201293,44607814:172896 +k1,12300:28670649,44607814:172895 +k1,12300:29741388,44607814:172896 +k1,12301:32583029,44607814:0 +) +(1,12301:6630773,45472894:25952256,513147,134348 +k1,12300:9587393,45472894:162165 +k1,12300:13019805,45472894:162165 +k1,12300:13841263,45472894:162166 +k1,12300:16819510,45472894:162165 +k1,12300:20134612,45472894:162165 +k1,12300:21058305,45472894:162165 +k1,12300:25284358,45472894:162166 +k1,12300:26438083,45472894:162165 +k1,12300:28363166,45472894:162165 +k1,12300:32583029,45472894:0 +) +] +(1,12302:32583029,45706769:0,0,0 +g1,12302:32583029,45706769 +) +) +] +(1,12302:6630773,47279633:25952256,0,0 +h1,12302:6630773,47279633:25952256,0,0 +) +] +(1,12302:4262630,4025873:0,0,0 +[1,12302:-473656,4025873:0,0,0 +(1,12302:-473656,-710413:0,0,0 +(1,12302:-473656,-710413:0,0,0 +g1,12302:-473656,-710413 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +g1,12302:-473656,-710413 +) +] +) +] +!27418 +}198 +Input:1825:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1826:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1827:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1828:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1829:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1830:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1831:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1832:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1833:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1834:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1835:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1046 +{199 +[1,12342:4262630,47279633:28320399,43253760,0 +(1,12342:4262630,4025873:0,0,0 +[1,12342:-473656,4025873:0,0,0 +(1,12342:-473656,-710413:0,0,0 +(1,12342:-473656,-644877:0,0,0 +k1,12342:-473656,-644877:-65536 +) +(1,12342:-473656,4736287:0,0,0 +k1,12342:-473656,4736287:5209943 +) +g1,12342:-473656,-710413 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,12921:37855564,2439708:1179648,16384,0 +[1,12342:6630773,47279633:25952256,43253760,0 +[1,12342:6630773,4812305:25952256,786432,0 +(1,12342:6630773,4812305:25952256,513147,126483 +(1,12342:6630773,4812305:25952256,513147,126483 +g1,12342:3078558,4812305 +[1,12342:3078558,4812305:0,0,0 +(1,12342:3078558,2439708:0,1703936,0 +k1,12342:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,12342:2537886,2439708:1179648,16384,0 ) +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,12342:3078558,1915420:16384,1179648,0 ) -k1,12921:3078556,2439708:-34777008 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] -[1,12921:3078558,4812305:0,0,0 -(1,12921:3078558,49800853:0,16384,2228224 -k1,12921:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,12921:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,12921:3078558,51504789:16384,1179648,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 ) ] +[1,12342:3078558,4812305:0,0,0 +(1,12342:3078558,2439708:0,1703936,0 +g1,12342:29030814,2439708 +g1,12342:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,12342:36151628,1915420:16384,1179648,0 ) +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) +] +) +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,12342:37855564,2439708:1179648,16384,0 +) +) +k1,12342:3078556,2439708:-34777008 ) ] -[1,12921:3078558,4812305:0,0,0 -(1,12921:3078558,49800853:0,16384,2228224 -g1,12921:29030814,49800853 -g1,12921:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,12921:36151628,51504789:16384,1179648,0 +[1,12342:3078558,4812305:0,0,0 +(1,12342:3078558,49800853:0,16384,2228224 +k1,12342:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,12342:2537886,49800853:1179648,16384,0 ) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 -) -] +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,12342:3078558,51504789:16384,1179648,0 ) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,12921:37855564,49800853:1179648,16384,0 +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 +) +] +) +) +) +] +[1,12342:3078558,4812305:0,0,0 +(1,12342:3078558,49800853:0,16384,2228224 +g1,12342:29030814,49800853 +g1,12342:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,12342:36151628,51504789:16384,1179648,0 +) +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 +) +] +) +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,12342:37855564,49800853:1179648,16384,0 +) +) +k1,12342:3078556,49800853:-34777008 +) +] +g1,12342:6630773,4812305 +k1,12342:19540057,4812305:11713907 +g1,12342:21162728,4812305 +g1,12342:21985204,4812305 +g1,12342:24539797,4812305 +g1,12342:25949476,4812305 +g1,12342:28728857,4812305 +g1,12342:29852144,4812305 +) +) +] +[1,12342:6630773,45706769:25952256,40108032,0 +(1,12342:6630773,45706769:25952256,40108032,0 +(1,12342:6630773,45706769:0,0,0 +g1,12342:6630773,45706769 +) +[1,12342:6630773,45706769:25952256,40108032,0 +(1,12301:6630773,6254097:25952256,505283,134348 +k1,12300:9645607,6254097:183679 +k1,12300:11209475,6254097:183680 +k1,12300:13129858,6254097:183679 +k1,12300:15005678,6254097:183680 +k1,12300:18485163,6254097:183679 +k1,12300:20062794,6254097:183680 +k1,12300:21553916,6254097:183679 +k1,12300:24231896,6254097:183680 +k1,12300:27685822,6254097:183679 +k1,12300:29319158,6254097:183680 +k1,12300:30118875,6254097:183679 +k1,12300:32583029,6254097:0 +) +(1,12301:6630773,7119177:25952256,505283,95026 +g1,12300:7481430,7119177 +k1,12301:32583029,7119177:19818086 +g1,12301:32583029,7119177 +) +(1,12303:6630773,7984257:25952256,513147,126483 +h1,12302:6630773,7984257:983040,0,0 +k1,12302:8318489,7984257:234783 +k1,12302:9084768,7984257:234782 +k1,12302:11949511,7984257:234783 +k1,12302:12835721,7984257:234782 +k1,12302:15858406,7984257:234783 +k1,12302:17159460,7984257:234783 +k1,12302:18769843,7984257:234782 +k1,12302:24040412,7984257:234783 +k1,12302:26191467,7984257:234782 +k1,12302:27993871,7984257:234783 +k1,12302:28584513,7984257:234782 +k1,12302:31417799,7984257:234783 +k1,12303:32583029,7984257:0 +) +(1,12303:6630773,8849337:25952256,513147,102891 +k1,12302:9666494,8849337:206532 +k1,12302:10945195,8849337:206532 +k1,12302:12437543,8849337:206532 +k1,12302:14211696,8849337:206532 +k1,12302:15437313,8849337:206532 +k1,12302:18173535,8849337:206532 +$1,12302:18173535,8849337 +$1,12302:18494006,8849337 +k1,12302:18874209,8849337:206533 +$1,12302:18874209,8849337 +$1,12302:19319198,8849337 +k1,12302:19525730,8849337:206532 +k1,12302:20923707,8849337:206532 +k1,12302:22832209,8849337:206532 +k1,12302:27324140,8849337:206532 +k1,12302:28158507,8849337:206532 +k1,12302:29816661,8849337:206532 +k1,12302:31563944,8849337:206532 +k1,12302:32583029,8849337:0 +) +(1,12303:6630773,9714417:25952256,513147,126483 +k1,12302:10379359,9714417:262726 +k1,12302:12036036,9714417:262726 +k1,12302:14184234,9714417:262727 +k1,12302:17209303,9714417:262726 +k1,12302:19482674,9714417:262726 +k1,12302:20736960,9714417:262726 +k1,12302:23600811,9714417:262727 +k1,12302:28220371,9714417:262726 +k1,12302:29502182,9714417:262726 +k1,12303:32583029,9714417:0 +) +(1,12303:6630773,10579497:25952256,505283,134348 +k1,12302:8031102,10579497:264590 +k1,12302:9230236,10579497:264591 +k1,12302:10256354,10579497:264590 +k1,12302:11540030,10579497:264591 +k1,12302:16428185,10579497:264590 +k1,12302:20094749,10579497:264590 +k1,12302:24314438,10579497:264591 +k1,12302:27814540,10579497:264590 +(1,12302:27814540,10579497:0,414482,115847 +r1,12342:28172806,10579497:358266,530329,115847 +k1,12302:27814540,10579497:-358266 +) +(1,12302:27814540,10579497:358266,414482,115847 +k1,12302:27814540,10579497:3277 +h1,12302:28169529,10579497:0,411205,112570 +) +k1,12302:28437397,10579497:264591 +k1,12302:31563944,10579497:264590 +k1,12302:32583029,10579497:0 +) +(1,12303:6630773,11444577:25952256,513147,134348 +k1,12302:9304548,11444577:187994 +k1,12302:10151835,11444577:187995 +k1,12302:12350474,11444577:187994 +k1,12302:13189897,11444577:187995 +k1,12302:14125657,11444577:187994 +k1,12302:16488137,11444577:187995 +k1,12302:17359016,11444577:187994 +k1,12302:18335409,11444577:187995 +k1,12302:22002054,11444577:187994 +k1,12302:23209134,11444577:187995 +k1,12302:25410394,11444577:187994 +k1,12302:26257681,11444577:187995 +k1,12302:27464760,11444577:187994 +k1,12302:29630632,11444577:187995 +k1,12302:32583029,11444577:0 +) +(1,12303:6630773,12309657:25952256,0,0 +g1,12302:6630773,12309657 +k1,12303:32583029,12309657:25952256 +g1,12303:32583029,12309657 +) +v1,12305:6630773,12994512:0,393216,0 +(1,12319:6630773,16434801:25952256,3833505,196608 +g1,12319:6630773,16434801 +g1,12319:6630773,16434801 +g1,12319:6434165,16434801 +(1,12319:6434165,16434801:0,3833505,196608 +r1,12342:32779637,16434801:26345472,4030113,196608 +k1,12319:6434165,16434801:-26345472 +) +(1,12319:6434165,16434801:26345472,3833505,196608 +[1,12319:6630773,16434801:25952256,3636897,0 +(1,12307:6630773,13222343:25952256,424439,79822 +(1,12306:6630773,13222343:0,0,0 +g1,12306:6630773,13222343 +g1,12306:6630773,13222343 +g1,12306:6303093,13222343 +(1,12306:6303093,13222343:0,0,0 +) +g1,12306:6630773,13222343 +) +k1,12307:6630773,13222343:0 +h1,12307:9286405,13222343:0,0,0 +k1,12307:32583029,13222343:23296624 +g1,12307:32583029,13222343 +) +(1,12311:6630773,14038270:25952256,424439,79822 +(1,12309:6630773,14038270:0,0,0 +g1,12309:6630773,14038270 +g1,12309:6630773,14038270 +g1,12309:6303093,14038270 +(1,12309:6303093,14038270:0,0,0 +) +g1,12309:6630773,14038270 +) +g1,12311:7626635,14038270 +g1,12311:8954451,14038270 +g1,12311:12605944,14038270 +g1,12311:12937898,14038270 +g1,12311:16257437,14038270 +g1,12311:19908930,14038270 +g1,12311:23560423,14038270 +g1,12311:23892377,14038270 +h1,12311:26879962,14038270:0,0,0 +k1,12311:32583029,14038270:5703067 +g1,12311:32583029,14038270 +) +(1,12313:6630773,14854197:25952256,424439,86428 +(1,12312:6630773,14854197:0,0,0 +g1,12312:6630773,14854197 +g1,12312:6630773,14854197 +g1,12312:6303093,14854197 +(1,12312:6303093,14854197:0,0,0 +) +g1,12312:6630773,14854197 +) +k1,12313:6630773,14854197:0 +g1,12313:9286405,14854197 +g1,12313:9950313,14854197 +g1,12313:11278129,14854197 +g1,12313:12937899,14854197 +g1,12313:13601807,14854197 +g1,12313:14929623,14854197 +g1,12313:15925485,14854197 +g1,12313:16589393,14854197 +h1,12313:17253301,14854197:0,0,0 +k1,12313:32583029,14854197:15329728 +g1,12313:32583029,14854197 +) +(1,12318:6630773,15670124:25952256,424439,79822 +(1,12315:6630773,15670124:0,0,0 +g1,12315:6630773,15670124 +g1,12315:6630773,15670124 +g1,12315:6303093,15670124 +(1,12315:6303093,15670124:0,0,0 +) +g1,12315:6630773,15670124 +) +g1,12318:7626635,15670124 +g1,12318:7958589,15670124 +g1,12318:9286405,15670124 +g1,12318:12605944,15670124 +g1,12318:12937898,15670124 +g1,12318:15925483,15670124 +g1,12318:16257437,15670124 +g1,12318:19245022,15670124 +g1,12318:22564561,15670124 +g1,12318:25884100,15670124 +g1,12318:29203639,15670124 +h1,12318:32191224,15670124:0,0,0 +k1,12318:32583029,15670124:391805 +g1,12318:32583029,15670124 +) +(1,12318:6630773,16354979:25952256,424439,79822 +h1,12318:6630773,16354979:0,0,0 +g1,12318:7626635,16354979 +g1,12318:7958589,16354979 +g1,12318:9286405,16354979 +g1,12318:12605944,16354979 +g1,12318:15925483,16354979 +g1,12318:16257437,16354979 +h1,12318:18913068,16354979:0,0,0 +k1,12318:32583029,16354979:13669961 +g1,12318:32583029,16354979 +) +] +) +g1,12319:32583029,16434801 +g1,12319:6630773,16434801 +g1,12319:6630773,16434801 +g1,12319:32583029,16434801 +g1,12319:32583029,16434801 +) +h1,12319:6630773,16631409:0,0,0 +v1,12323:6630773,17496489:0,393216,0 +(1,12324:6630773,18736937:25952256,1633664,0 +g1,12324:6630773,18736937 +g1,12324:6237557,18736937 +r1,12342:6368629,18736937:131072,1633664,0 +g1,12324:6567858,18736937 +g1,12324:6764466,18736937 +[1,12324:6764466,18736937:25818563,1633664,0 +(1,12324:6764466,17768966:25818563,665693,196608 +(1,12323:6764466,17768966:0,665693,196608 +r1,12342:8010564,17768966:1246098,862301,196608 +k1,12323:6764466,17768966:-1246098 +) +(1,12323:6764466,17768966:1246098,665693,196608 +) +k1,12323:8253462,17768966:242898 +k1,12323:9571391,17768966:327680 +k1,12323:11064062,17768966:242899 +k1,12323:12326045,17768966:242898 +k1,12323:15560662,17768966:242898 +k1,12323:16419599,17768966:242899 +k1,12323:19271485,17768966:242898 +h1,12323:20814203,17768966:0,0,0 +k1,12323:21230771,17768966:242898 +h1,12323:22773489,17768966:0,0,0 +k1,12323:23016388,17768966:242899 +k1,12323:24450731,17768966:242898 +h1,12323:25993449,17768966:0,0,0 +k1,12323:26236347,17768966:242898 +k1,12323:27130674,17768966:242899 +k1,12323:28188840,17768966:242898 +k1,12323:32583029,17768966:0 +) +(1,12324:6764466,18634046:25818563,513147,102891 +g1,12323:8818364,18634046 +g1,12323:9826963,18634046 +g1,12323:12788535,18634046 +g1,12323:17273163,18634046 +g1,12323:18965958,18634046 +g1,12323:19851349,18634046 +g1,12323:23021325,18634046 +g1,12323:23626877,18634046 +g1,12323:24259299,18634046 +g1,12323:25141413,18634046 +k1,12324:32583029,18634046:4669443 +g1,12324:32583029,18634046 +) +] +g1,12324:32583029,18736937 +) +h1,12324:6630773,18736937:0,0,0 +v1,12327:6630773,19602017:0,393216,0 +(1,12329:6630773,28687598:25952256,9478797,0 +g1,12329:6630773,28687598 +g1,12329:6237557,28687598 +r1,12342:6368629,28687598:131072,9478797,0 +g1,12329:6567858,28687598 +g1,12329:6764466,28687598 +[1,12329:6764466,28687598:25818563,9478797,0 +(1,12329:6764466,19910315:25818563,701514,196608 +(1,12327:6764466,19910315:0,701514,196608 +r1,12342:8010564,19910315:1246098,898122,196608 +k1,12327:6764466,19910315:-1246098 +) +(1,12327:6764466,19910315:1246098,701514,196608 +) +k1,12327:8164368,19910315:153804 +k1,12327:8492048,19910315:327680 +k1,12327:8492048,19910315:0 +k1,12327:8645852,19910315:153804 +k1,12328:9269549,19910315:153804 +k1,12328:9954849,19910315:153803 +k1,12328:13559779,19910315:153804 +k1,12328:14365011,19910315:153804 +k1,12328:17251011,19910315:153804 +k1,12328:18931149,19910315:153804 +k1,12328:21579253,19910315:153804 +k1,12328:25003304,19910315:153804 +k1,12328:25816399,19910315:153803 +k1,12328:28786285,19910315:153804 +k1,12328:29701617,19910315:153804 +k1,12328:31923737,19910315:153804 +k1,12328:32583029,19910315:0 +) +(1,12329:6764466,20775395:25818563,505283,126483 +k1,12328:7301861,20775395:181535 +k1,12328:11703259,20775395:181535 +k1,12328:14329941,20775395:181534 +k1,12328:16005042,20775395:181535 +k1,12328:16872739,20775395:181535 +k1,12328:17410134,20775395:181535 +k1,12328:21915078,20775395:181534 +k1,12328:26334171,20775395:181535 +k1,12328:29466792,20775395:181535 +k1,12328:32583029,20775395:0 +) +(1,12329:6764466,21640475:25818563,505283,134348 +k1,12328:7594539,21640475:143911 +k1,12328:10891386,21640475:143910 +k1,12328:11796825,21640475:143911 +k1,12328:12355523,21640475:143855 +k1,12328:13690879,21640475:143911 +k1,12328:15536759,21640475:143910 +k1,12328:18756930,21640475:143911 +k1,12328:21973169,21640475:143911 +k1,12328:23108639,21640475:143910 +k1,12328:25457181,21640475:143911 +k1,12328:28105222,21640475:143910 +k1,12328:31194321,21640475:143911 +k1,12328:32583029,21640475:0 +) +(1,12329:6764466,22505555:25818563,513147,7863 +k1,12328:11249531,22505555:265202 +k1,12328:13359572,22505555:265203 +k1,12328:14284066,22505555:265202 +k1,12328:17365350,22505555:265202 +k1,12328:18915059,22505555:265203 +k1,12328:22066467,22505555:265202 +k1,12328:24825969,22505555:265202 +k1,12328:27181115,22505555:265203 +k1,12328:30097248,22505555:265202 +k1,12328:32583029,22505555:0 +) +(1,12329:6764466,23370635:25818563,505283,134348 +k1,12328:10435137,23370635:275251 +k1,12328:12133176,23370635:275252 +k1,12328:12764287,23370635:275251 +k1,12328:14440697,23370635:275251 +k1,12328:16396292,23370635:275252 +k1,12328:17956049,23370635:275251 +k1,12328:21805634,23370635:275251 +k1,12328:23999780,23370635:275252 +k1,12328:24891069,23370635:275251 +k1,12328:26185405,23370635:275251 +k1,12328:28305494,23370635:275251 +k1,12328:29449098,23370635:275252 +k1,12328:31386342,23370635:275251 +k1,12328:32583029,23370635:0 +) +(1,12329:6764466,24235715:25818563,513147,134348 +k1,12328:8651107,24235715:165666 +k1,12328:10054747,24235715:165665 +k1,12328:10879705,24235715:165666 +k1,12328:15362227,24235715:165665 +k1,12328:17709587,24235715:165666 +k1,12328:18894337,24235715:165665 +k1,12328:20740346,24235715:165666 +k1,12328:21565304,24235715:165666 +k1,12328:22750054,24235715:165665 +k1,12328:24361444,24235715:165666 +k1,12328:25058606,24235715:165665 +k1,12328:25875700,24235715:165666 +k1,12328:27394028,24235715:165665 +k1,12328:28578779,24235715:165666 +k1,12328:32583029,24235715:0 +) +(1,12329:6764466,25100795:25818563,513147,134348 +k1,12328:7634644,25100795:187293 +k1,12328:10023946,25100795:187292 +k1,12328:12464367,25100795:187293 +k1,12328:15535243,25100795:187292 +k1,12328:16657079,25100795:187293 +k1,12328:17503663,25100795:187292 +k1,12328:19475501,25100795:187293 +k1,12328:21230415,25100795:187293 +k1,12328:22436792,25100795:187292 +k1,12328:23820772,25100795:187293 +k1,12328:25433472,25100795:187292 +k1,12328:27280137,25100795:187293 +k1,12328:28126721,25100795:187292 +k1,12328:29333099,25100795:187293 +k1,12328:32583029,25100795:0 +) +(1,12329:6764466,25965875:25818563,505283,134348 +k1,12328:9990602,25965875:291434 +k1,12328:10898073,25965875:291433 +k1,12328:12886889,25965875:291434 +k1,12328:14876361,25965875:291434 +k1,12328:16036146,25965875:291433 +k1,12328:17794931,25965875:291434 +k1,12328:18737793,25965875:291434 +k1,12328:21045770,25965875:291434 +k1,12328:21693063,25965875:291433 +k1,12328:25455939,25965875:291434 +k1,12328:27482766,25965875:291434 +k1,12328:28793284,25965875:291433 +k1,12328:30738191,25965875:291434 +k1,12328:32583029,25965875:0 +) +(1,12329:6764466,26830955:25818563,513147,134348 +k1,12328:7648945,26830955:225187 +k1,12328:12909919,26830955:225188 +k1,12328:15319421,26830955:225187 +k1,12328:16412961,26830955:225188 +k1,12328:17742430,26830955:225187 +k1,12328:19060103,26830955:225188 +(1,12328:19060103,26830955:0,452978,115847 +r1,12342:22583775,26830955:3523672,568825,115847 +k1,12328:19060103,26830955:-3523672 +) +(1,12328:19060103,26830955:3523672,452978,115847 +k1,12328:19060103,26830955:3277 +h1,12328:22580498,26830955:0,411205,112570 +) +k1,12328:22808962,26830955:225187 +k1,12328:24428100,26830955:225187 +k1,12328:25423991,26830955:225188 +k1,12328:28445599,26830955:225187 +k1,12328:30900977,26830955:225188 +k1,12328:31812326,26830955:225187 +k1,12328:32583029,26830955:0 +) +(1,12329:6764466,27696035:25818563,505283,134348 +k1,12328:9979608,27696035:142814 +k1,12328:10773850,27696035:142814 +k1,12328:12486906,27696035:142813 +k1,12328:13648805,27696035:142814 +k1,12328:16859359,27696035:142814 +k1,12328:17653601,27696035:142814 +k1,12328:18815500,27696035:142814 +k1,12328:20611787,27696035:142814 +k1,12328:22442807,27696035:142813 +k1,12328:23201659,27696035:142814 +k1,12328:24363558,27696035:142814 +k1,12328:27948978,27696035:142814 +k1,12328:32583029,27696035:0 +) +(1,12329:6764466,28561115:25818563,355205,126483 +k1,12329:32583029,28561115:22704948 +g1,12329:32583029,28561115 +) +] +g1,12329:32583029,28687598 +) +h1,12329:6630773,28687598:0,0,0 +v1,12332:6630773,29552678:0,393216,0 +(1,12333:6630773,35924399:25952256,6764937,0 +g1,12333:6630773,35924399 +g1,12333:6237557,35924399 +r1,12342:6368629,35924399:131072,6764937,0 +g1,12333:6567858,35924399 +g1,12333:6764466,35924399 +[1,12333:6764466,35924399:25818563,6764937,0 +(1,12333:6764466,29860976:25818563,701514,196608 +(1,12332:6764466,29860976:0,701514,196608 +r1,12342:8863446,29860976:2098980,898122,196608 +k1,12332:6764466,29860976:-2098980 +) +(1,12332:6764466,29860976:2098980,701514,196608 +) +k1,12332:9001914,29860976:138468 +k1,12332:10319843,29860976:327680 +k1,12332:12894284,29860976:138468 +k1,12332:14051837,29860976:138468 +k1,12332:17376665,29860976:138468 +(1,12332:17376665,29860976:0,452978,115847 +r1,12342:20196914,29860976:2820249,568825,115847 +k1,12332:17376665,29860976:-2820249 +) +(1,12332:17376665,29860976:2820249,452978,115847 +k1,12332:17376665,29860976:3277 +h1,12332:20193637,29860976:0,411205,112570 +) +k1,12332:20335381,29860976:138467 +k1,12332:21235377,29860976:138468 +k1,12332:22979477,29860976:138468 +k1,12332:25349446,29860976:138468 +k1,12332:27417294,29860976:138468 +k1,12332:29683716,29860976:138468 +k1,12332:32583029,29860976:0 +) +(1,12333:6764466,30726056:25818563,505283,134348 +k1,12332:7666435,30726056:250541 +k1,12332:8936061,30726056:250541 +k1,12332:11197247,30726056:250541 +k1,12332:14413292,30726056:250541 +k1,12332:16837007,30726056:250541 +k1,12332:18106634,30726056:250542 +k1,12332:21091337,30726056:250541 +k1,12332:22414047,30726056:250541 +k1,12332:23994969,30726056:250541 +k1,12332:27300798,30726056:250541 +(1,12332:27300798,30726056:0,452978,115847 +r1,12342:32583029,30726056:5282231,568825,115847 +k1,12332:27300798,30726056:-5282231 +) +(1,12332:27300798,30726056:5282231,452978,115847 +k1,12332:27300798,30726056:3277 +h1,12332:32579752,30726056:0,411205,112570 +) +k1,12332:32583029,30726056:0 +) +(1,12333:6764466,31591136:25818563,513147,134348 +k1,12332:10995032,31591136:293818 +k1,12332:13331607,31591136:293818 +k1,12332:15077048,31591136:293819 +k1,12332:16470560,31591136:293818 +k1,12332:17415806,31591136:293818 +(1,12332:17415806,31591136:0,452978,115847 +r1,12342:20236055,31591136:2820249,568825,115847 +k1,12332:17415806,31591136:-2820249 +) +(1,12332:17415806,31591136:2820249,452978,115847 +k1,12332:17415806,31591136:3277 +h1,12332:20232778,31591136:0,411205,112570 +) +k1,12332:20703543,31591136:293818 +k1,12332:22699331,31591136:293818 +k1,12332:25121103,31591136:293818 +k1,12332:28314235,31591136:293819 +k1,12332:29259481,31591136:293818 +k1,12332:30572384,31591136:293818 +k1,12332:32583029,31591136:0 +) +(1,12333:6764466,32456216:25818563,513147,126483 +k1,12332:9908686,32456216:178716 +k1,12332:11548855,32456216:178716 +k1,12332:14139951,32456216:178716 +(1,12332:14139951,32456216:0,452978,115847 +r1,12342:19422182,32456216:5282231,568825,115847 +k1,12332:14139951,32456216:-5282231 +) +(1,12332:14139951,32456216:5282231,452978,115847 +k1,12332:14139951,32456216:3277 +h1,12332:19418905,32456216:0,411205,112570 +) +k1,12332:19774569,32456216:178717 +k1,12332:22706452,32456216:178716 +k1,12332:23646696,32456216:178716 +(1,12332:23646696,32456216:0,452978,115847 +r1,12342:31039198,32456216:7392502,568825,115847 +k1,12332:23646696,32456216:-7392502 +) +(1,12332:23646696,32456216:7392502,452978,115847 +g1,12332:27870515,32456216 +h1,12332:31035921,32456216:0,411205,112570 +) +k1,12332:31391584,32456216:178716 +k1,12332:32583029,32456216:0 +) +(1,12333:6764466,33321296:25818563,513147,126483 +k1,12332:8385670,33321296:187276 +k1,12332:10985325,33321296:187275 +(1,12332:10985325,33321296:0,452978,115847 +r1,12342:16267556,33321296:5282231,568825,115847 +k1,12332:10985325,33321296:-5282231 +) +(1,12332:10985325,33321296:5282231,452978,115847 +k1,12332:10985325,33321296:3277 +h1,12332:16264279,33321296:0,411205,112570 +) +k1,12332:16628502,33321296:187276 +k1,12332:19568944,33321296:187275 +k1,12332:20517748,33321296:187276 +(1,12332:20517748,33321296:0,452978,115847 +r1,12342:23337997,33321296:2820249,568825,115847 +k1,12332:20517748,33321296:-2820249 +) +(1,12332:20517748,33321296:2820249,452978,115847 +k1,12332:20517748,33321296:3277 +h1,12332:23334720,33321296:0,411205,112570 +) +k1,12332:23525273,33321296:187276 +k1,12332:24903993,33321296:187275 +k1,12332:27851645,33321296:187276 +k1,12332:29058005,33321296:187275 +k1,12332:31577707,33321296:187276 +k1,12333:32583029,33321296:0 +) +(1,12333:6764466,34186376:25818563,513147,134348 +k1,12332:8430190,34186376:284880 +k1,12332:9734154,34186376:284879 +k1,12332:12579526,34186376:284880 +k1,12332:14599799,34186376:284880 +k1,12332:15240538,34186376:284879 +k1,12332:18287761,34186376:284880 +k1,12332:21644969,34186376:284880 +k1,12332:22545886,34186376:284879 +k1,12332:23849851,34186376:284880 +k1,12332:25234425,34186376:284880 +k1,12332:26170732,34186376:284879 +(1,12332:26170732,34186376:0,452978,115847 +r1,12342:29694404,34186376:3523672,568825,115847 +k1,12332:26170732,34186376:-3523672 +) +(1,12332:26170732,34186376:3523672,452978,115847 +k1,12332:26170732,34186376:3277 +h1,12332:29691127,34186376:0,411205,112570 +) +k1,12332:30152954,34186376:284880 +k1,12332:32583029,34186376:0 +) +(1,12333:6764466,35051456:25818563,513147,134348 +k1,12332:8023870,35051456:240319 +k1,12332:10437362,35051456:240318 +k1,12332:11869126,35051456:240319 +k1,12332:14419589,35051456:240319 +k1,12332:15990289,35051456:240319 +(1,12332:15990289,35051456:0,452978,115847 +r1,12342:19162249,35051456:3171960,568825,115847 +k1,12332:15990289,35051456:-3171960 +) +(1,12332:15990289,35051456:3171960,452978,115847 +k1,12332:15990289,35051456:3277 +h1,12332:19158972,35051456:0,411205,112570 +) +k1,12332:19402567,35051456:240318 +k1,12332:21752490,35051456:240319 +k1,12332:23011894,35051456:240319 +k1,12332:26647632,35051456:240318 +k1,12332:27547243,35051456:240319 +k1,12332:32583029,35051456:0 +) +(1,12333:6764466,35916536:25818563,505283,7863 +g1,12332:9779777,35916536 +g1,12332:10595044,35916536 +k1,12333:32583029,35916536:21399472 +g1,12333:32583029,35916536 +) +] +g1,12333:32583029,35924399 +) +h1,12333:6630773,35924399:0,0,0 +(1,12335:6630773,38755559:25952256,32768,229376 +(1,12335:6630773,38755559:0,32768,229376 +(1,12335:6630773,38755559:5505024,32768,229376 +r1,12342:12135797,38755559:5505024,262144,229376 +) +k1,12335:6630773,38755559:-5505024 +) +(1,12335:6630773,38755559:25952256,32768,0 +r1,12342:32583029,38755559:25952256,32768,0 +) +) +(1,12335:6630773,40387411:25952256,606339,161218 +(1,12335:6630773,40387411:1974731,575668,0 +g1,12335:6630773,40387411 +g1,12335:8605504,40387411 +) +g1,12335:12866393,40387411 +k1,12335:32583029,40387411:16097476 +g1,12335:32583029,40387411 +) +(1,12340:6630773,41645707:25952256,513147,134348 +k1,12339:7472801,41645707:214193 +k1,12339:10353000,41645707:214194 +k1,12339:11218621,41645707:214193 +k1,12339:14009034,41645707:214193 +k1,12339:16233873,41645707:214194 +k1,12339:18015687,41645707:214193 +k1,12339:18585740,41645707:214193 +k1,12339:22201908,41645707:214194 +k1,12339:26371199,41645707:214193 +k1,12339:27453744,41645707:214193 +k1,12339:28772220,41645707:214194 +k1,12339:30572384,41645707:214193 +k1,12339:32583029,41645707:0 +) +(1,12340:6630773,42510787:25952256,513147,134348 +k1,12339:8347925,42510787:149531 +k1,12339:9268160,42510787:149532 +k1,12339:11908714,42510787:149531 +k1,12339:12992788,42510787:149531 +k1,12339:13825205,42510787:149532 +k1,12339:17061482,42510787:149531 +k1,12339:17870305,42510787:149531 +k1,12339:20204152,42510787:149532 +k1,12339:21307232,42510787:149531 +k1,12339:22556457,42510787:149531 +k1,12339:23909230,42510787:149532 +k1,12339:27133055,42510787:149531 +k1,12339:32583029,42510787:0 +) +(1,12340:6630773,43375867:25952256,505283,134348 +k1,12339:9896909,43375867:170215 +k1,12339:11263810,43375867:170214 +k1,12339:13350298,43375867:170215 +k1,12339:14624795,43375867:170215 +k1,12339:15542775,43375867:170214 +k1,12339:17290442,43375867:170215 +k1,12339:19316636,43375867:170214 +k1,12339:20880802,43375867:170215 +k1,12339:24988420,43375867:170215 +k1,12339:25841519,43375867:170214 +k1,12339:28471956,43375867:170215 +k1,12339:32583029,43375867:0 +) +(1,12340:6630773,44240947:25952256,513147,134348 +k1,12339:7526432,44240947:267824 +k1,12339:8813340,44240947:267823 +k1,12339:11322495,44240947:267824 +k1,12339:13131070,44240947:267824 +k1,12339:14165010,44240947:267824 +k1,12339:16349106,44240947:267823 +k1,12339:17608490,44240947:267824 +k1,12339:19643820,44240947:267824 +k1,12339:21479265,44240947:267824 +k1,12339:22766173,44240947:267823 +k1,12339:24916846,44240947:267824 +k1,12339:26119213,44240947:267824 +k1,12339:27046329,44240947:267824 +k1,12339:29498467,44240947:267823 +k1,12339:32124932,44240947:267824 +k1,12339:32583029,44240947:0 +) +(1,12340:6630773,45106027:25952256,513147,134348 +k1,12339:9478353,45106027:217620 +k1,12339:10643625,45106027:217621 +k1,12339:11217105,45106027:217620 +k1,12339:13129487,45106027:217621 +k1,12339:15027450,45106027:217620 +k1,12339:15896498,45106027:217620 +k1,12339:16861885,45106027:217621 +k1,12339:19080319,45106027:217620 +k1,12339:20948136,45106027:217620 +k1,12339:22608204,45106027:217621 +k1,12339:24489783,45106027:217620 +k1,12339:25335239,45106027:217621 +k1,12339:26571944,45106027:217620 +k1,12339:29055144,45106027:217620 +k1,12339:30639846,45106027:217621 +k1,12339:31516758,45106027:217620 +k1,12339:32583029,45106027:0 +) +] +(1,12342:32583029,45706769:0,0,0 +g1,12342:32583029,45706769 +) +) +] +(1,12342:6630773,47279633:25952256,0,0 +h1,12342:6630773,47279633:25952256,0,0 +) +] +(1,12342:4262630,4025873:0,0,0 +[1,12342:-473656,4025873:0,0,0 +(1,12342:-473656,-710413:0,0,0 +(1,12342:-473656,-710413:0,0,0 +g1,12342:-473656,-710413 +) +g1,12342:-473656,-710413 +) +] +) +] +!26535 +}199 +Input:1836:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1837:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1838:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1839:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1840:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1841:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!576 +{200 +[1,12412:4262630,47279633:28320399,43253760,0 +(1,12412:4262630,4025873:0,0,0 +[1,12412:-473656,4025873:0,0,0 +(1,12412:-473656,-710413:0,0,0 +(1,12412:-473656,-644877:0,0,0 +k1,12412:-473656,-644877:-65536 ) +(1,12412:-473656,4736287:0,0,0 +k1,12412:-473656,4736287:5209943 ) -k1,12921:3078556,49800853:-34777008 +g1,12412:-473656,-710413 ) -] -g1,12921:6630773,4812305 -k1,12921:19540057,4812305:11713907 -g1,12921:21162728,4812305 -g1,12921:21985204,4812305 -g1,12921:24539797,4812305 -g1,12921:25949476,4812305 -g1,12921:28728857,4812305 -g1,12921:29852144,4812305 -) -) -] -[1,12921:6630773,45706769:25952256,40108032,0 -(1,12921:6630773,45706769:25952256,40108032,0 -(1,12921:6630773,45706769:0,0,0 -g1,12921:6630773,45706769 -) -[1,12921:6630773,45706769:25952256,40108032,0 -v1,12858:6630773,6254097:0,393216,0 -(1,12859:6630773,9337582:25952256,3476701,0 -g1,12859:6630773,9337582 -g1,12859:6303093,9337582 -r1,12921:6401397,9337582:98304,3476701,0 -g1,12859:6600626,9337582 -g1,12859:6797234,9337582 -[1,12859:6797234,9337582:25785795,3476701,0 -(1,12859:6797234,6686635:25785795,825754,196608 -(1,12858:6797234,6686635:0,825754,196608 -r1,12921:7890375,6686635:1093141,1022362,196608 -k1,12858:6797234,6686635:-1093141 -) -(1,12858:6797234,6686635:1093141,825754,196608 -) -k1,12858:8263001,6686635:372626 -k1,12858:9989219,6686635:327680 -k1,12858:12585481,6686635:372625 -k1,12858:14693500,6686635:372626 -k1,12858:16532822,6686635:372626 -(1,12858:16532822,6686635:0,459977,115847 -r1,12921:17594511,6686635:1061689,575824,115847 -k1,12858:16532822,6686635:-1061689 -) -(1,12858:16532822,6686635:1061689,459977,115847 -k1,12858:16532822,6686635:3277 -h1,12858:17591234,6686635:0,411205,112570 -) -k1,12858:17967136,6686635:372625 -k1,12858:19531207,6686635:372626 -(1,12858:19531207,6686635:0,459977,115847 -r1,12921:20592896,6686635:1061689,575824,115847 -k1,12858:19531207,6686635:-1061689 -) -(1,12858:19531207,6686635:1061689,459977,115847 -k1,12858:19531207,6686635:3277 -h1,12858:20589619,6686635:0,411205,112570 -) -k1,12858:20965522,6686635:372626 -k1,12858:22357232,6686635:372625 -k1,12858:25390620,6686635:372626 -k1,12858:28475781,6686635:372626 -k1,12858:29499834,6686635:372625 -k1,12858:31274930,6686635:372626 -k1,12858:32583029,6686635:0 -) -(1,12859:6797234,7528123:25785795,513147,134348 -k1,12858:9483391,7528123:324239 -k1,12858:10420393,7528123:324240 -k1,12858:11316761,7528123:324239 -k1,12858:12213129,7528123:324239 -k1,12858:13507956,7528123:324239 -k1,12858:14802784,7528123:324240 -k1,12858:16097611,7528123:324239 -k1,12858:17613295,7528123:324239 -k1,12858:18734452,7528123:324239 -k1,12858:20687917,7528123:324240 -k1,12858:22820950,7528123:324239 -k1,12858:24164274,7528123:324239 -k1,12858:25876566,7528123:324239 -k1,12858:27698959,7528123:324240 -k1,12858:28970849,7528123:324239 -k1,12858:30314173,7528123:324239 -k1,12858:32583029,7528123:0 -) -(1,12859:6797234,8369611:25785795,513147,134348 -k1,12858:9555738,8369611:304181 -k1,12858:10807569,8369611:304180 -k1,12858:12924476,8369611:304181 -k1,12858:15546665,8369611:304181 -k1,12858:17793332,8369611:304180 -(1,12858:17793332,8369611:0,452978,115847 -r1,12921:23427275,8369611:5633943,568825,115847 -k1,12858:17793332,8369611:-5633943 -) -(1,12858:17793332,8369611:5633943,452978,115847 -k1,12858:17793332,8369611:3277 -h1,12858:23423998,8369611:0,411205,112570 -) -k1,12858:24112220,8369611:304181 -k1,12858:26808465,8369611:304181 -k1,12858:28131730,8369611:304180 -k1,12858:31622271,8369611:304181 -k1,12859:32583029,8369611:0 -) -(1,12859:6797234,9211099:25785795,513147,126483 -g1,12858:8883900,9211099 -(1,12858:8883900,9211099:0,452978,115847 -r1,12921:13110996,9211099:4227096,568825,115847 -k1,12858:8883900,9211099:-4227096 -) -(1,12858:8883900,9211099:4227096,452978,115847 -k1,12858:8883900,9211099:3277 -h1,12858:13107719,9211099:0,411205,112570 -) -g1,12858:13310225,9211099 -g1,12858:14700899,9211099 -(1,12858:14700899,9211099:0,459977,115847 -r1,12921:18927995,9211099:4227096,575824,115847 -k1,12858:14700899,9211099:-4227096 -) -(1,12858:14700899,9211099:4227096,459977,115847 -k1,12858:14700899,9211099:3277 -h1,12858:18924718,9211099:0,411205,112570 -) -g1,12858:19127224,9211099 -g1,12858:21422294,9211099 -g1,12858:22918481,9211099 -g1,12858:24109270,9211099 -g1,12858:25688687,9211099 -g1,12858:26612744,9211099 -k1,12859:32583029,9211099:2880918 -g1,12859:32583029,9211099 -) -] -g1,12859:32583029,9337582 -) -h1,12859:6630773,9337582:0,0,0 -(1,12861:6630773,11428842:25952256,564462,139132 -(1,12861:6630773,11428842:2450326,534184,0 -g1,12861:6630773,11428842 -g1,12861:9081099,11428842 -) -g1,12861:12446963,11428842 -g1,12861:13416569,11428842 -g1,12861:16941751,11428842 -k1,12861:32583029,11428842:12800227 -g1,12861:32583029,11428842 -) -(1,12867:6630773,12663546:25952256,505283,134348 -k1,12865:7789750,12663546:205428 -k1,12865:9087664,12663546:205429 -k1,12865:10690975,12663546:205428 -k1,12865:11915488,12663546:205428 -(1,12865:11915488,12663546:0,414482,115847 -r1,12921:16142584,12663546:4227096,530329,115847 -k1,12865:11915488,12663546:-4227096 -) -(1,12865:11915488,12663546:4227096,414482,115847 -k1,12865:11915488,12663546:3277 -h1,12865:16139307,12663546:0,411205,112570 -) -k1,12865:16348013,12663546:205429 -k1,12865:17942804,12663546:205428 -k1,12865:19256446,12663546:205428 -k1,12865:21384700,12663546:205428 -k1,12865:23474289,12663546:205429 -k1,12865:25824710,12663546:205428 -k1,12865:26646176,12663546:205428 -k1,12865:28459203,12663546:205429 -k1,12865:31189078,12663546:205428 -k1,12865:32583029,12663546:0 -) -(1,12867:6630773,13505034:25952256,513147,115847 -g1,12865:9592345,13505034 -g1,12865:13683757,13505034 -g1,12865:14510821,13505034 -g1,12865:16406777,13505034 -g1,12865:18169040,13505034 -(1,12865:18169040,13505034:0,414482,115847 -r1,12921:19934153,13505034:1765113,530329,115847 -k1,12865:18169040,13505034:-1765113 -) -(1,12865:18169040,13505034:1765113,414482,115847 -k1,12865:18169040,13505034:3277 -h1,12865:19930876,13505034:0,411205,112570 -) -g1,12865:20133382,13505034 -g1,12865:20864108,13505034 -g1,12865:21419197,13505034 -g1,12865:23512416,13505034 -g1,12865:25105596,13505034 -g1,12865:26201358,13505034 -k1,12867:32583029,13505034:4415591 -g1,12867:32583029,13505034 -) -(1,12869:6630773,14346522:25952256,513147,134348 -h1,12868:6630773,14346522:983040,0,0 -k1,12868:9011084,14346522:200584 -k1,12868:10311362,14346522:200584 -k1,12868:11043443,14346522:200584 -k1,12868:13468973,14346522:200583 -k1,12868:14688642,14346522:200584 -k1,12868:16542699,14346522:200584 -k1,12868:17429445,14346522:200584 -k1,12868:18649114,14346522:200584 -k1,12868:20006408,14346522:200584 -k1,12868:21154643,14346522:200584 -k1,12868:23167953,14346522:200584 -k1,12868:26858983,14346522:200583 -k1,12868:28435168,14346522:200584 -k1,12868:29654837,14346522:200584 -k1,12868:31923737,14346522:200584 -k1,12868:32583029,14346522:0 -) -(1,12869:6630773,15188010:25952256,513147,11795 -k1,12868:7824788,15188010:174930 -k1,12868:10841360,15188010:174931 -k1,12868:12207735,15188010:174930 -k1,12868:13772029,15188010:174931 -k1,12868:15823255,15188010:174930 -k1,12868:16989746,15188010:174931 -k1,12868:20100689,15188010:174930 -k1,12868:21909433,15188010:174931 -k1,12868:25658697,15188010:174930 -k1,12868:27118134,15188010:174931 -k1,12868:28496305,15188010:174930 -k1,12868:29202733,15188010:174931 -k1,12868:30148366,15188010:174930 -k1,12868:32583029,15188010:0 -) -(1,12869:6630773,16029498:25952256,505283,126483 -g1,12868:7361499,16029498 -g1,12868:8845234,16029498 -(1,12868:8845234,16029498:0,414482,115847 -r1,12921:10610347,16029498:1765113,530329,115847 -k1,12868:8845234,16029498:-1765113 -) -(1,12868:8845234,16029498:1765113,414482,115847 -k1,12868:8845234,16029498:3277 -h1,12868:10607070,16029498:0,411205,112570 -) -g1,12868:10983246,16029498 -g1,12868:12201560,16029498 -g1,12868:16166488,16029498 -g1,12868:19050727,16029498 -g1,12868:19781453,16029498 -g1,12868:20336542,16029498 -(1,12868:20336542,16029498:0,459977,115847 -r1,12921:22453367,16029498:2116825,575824,115847 -k1,12868:20336542,16029498:-2116825 -) -(1,12868:20336542,16029498:2116825,459977,115847 -k1,12868:20336542,16029498:3277 -h1,12868:22450090,16029498:0,411205,112570 -) -k1,12869:32583029,16029498:9955992 -g1,12869:32583029,16029498 -) -v1,12871:6630773,17219964:0,393216,0 -(1,12891:6630773,22811391:25952256,5984643,196608 -g1,12891:6630773,22811391 -g1,12891:6630773,22811391 -g1,12891:6434165,22811391 -(1,12891:6434165,22811391:0,5984643,196608 -r1,12921:32779637,22811391:26345472,6181251,196608 -k1,12891:6434165,22811391:-26345472 -) -(1,12891:6434165,22811391:26345472,5984643,196608 -[1,12891:6630773,22811391:25952256,5788035,0 -(1,12873:6630773,17427582:25952256,404226,101187 -(1,12872:6630773,17427582:0,0,0 -g1,12872:6630773,17427582 -g1,12872:6630773,17427582 -g1,12872:6303093,17427582 -(1,12872:6303093,17427582:0,0,0 -) -g1,12872:6630773,17427582 -) -k1,12873:6630773,17427582:0 -h1,12873:12321396,17427582:0,0,0 -k1,12873:32583028,17427582:20261632 -g1,12873:32583028,17427582 -) -(1,12874:6630773,18093760:25952256,410518,101187 -h1,12874:6630773,18093760:0,0,0 -k1,12874:6630773,18093760:0 -h1,12874:16115144,18093760:0,0,0 -k1,12874:32583029,18093760:16467885 -g1,12874:32583029,18093760 -) -(1,12878:6630773,18759938:25952256,404226,76021 -(1,12876:6630773,18759938:0,0,0 -g1,12876:6630773,18759938 -g1,12876:6630773,18759938 -g1,12876:6303093,18759938 -(1,12876:6303093,18759938:0,0,0 -) -g1,12876:6630773,18759938 -) -g1,12878:7579210,18759938 -g1,12878:8843793,18759938 -h1,12878:10424521,18759938:0,0,0 -k1,12878:32583029,18759938:22158508 -g1,12878:32583029,18759938 -) -(1,12880:6630773,20081476:25952256,410518,101187 -(1,12879:6630773,20081476:0,0,0 -g1,12879:6630773,20081476 -g1,12879:6630773,20081476 -g1,12879:6303093,20081476 -(1,12879:6303093,20081476:0,0,0 -) -g1,12879:6630773,20081476 -) -k1,12880:6630773,20081476:0 -h1,12880:15798998,20081476:0,0,0 -k1,12880:32583030,20081476:16784032 -g1,12880:32583030,20081476 -) -(1,12884:6630773,20747654:25952256,404226,76021 -(1,12882:6630773,20747654:0,0,0 -g1,12882:6630773,20747654 -g1,12882:6630773,20747654 -g1,12882:6303093,20747654 -(1,12882:6303093,20747654:0,0,0 -) -g1,12882:6630773,20747654 -) -g1,12884:7579210,20747654 -g1,12884:8843793,20747654 -h1,12884:10108376,20747654:0,0,0 -k1,12884:32583028,20747654:22474652 -g1,12884:32583028,20747654 -) -(1,12886:6630773,22069192:25952256,410518,101187 -(1,12885:6630773,22069192:0,0,0 -g1,12885:6630773,22069192 -g1,12885:6630773,22069192 -g1,12885:6303093,22069192 -(1,12885:6303093,22069192:0,0,0 -) -g1,12885:6630773,22069192 -) -k1,12886:6630773,22069192:0 -h1,12886:14850561,22069192:0,0,0 -k1,12886:32583029,22069192:17732468 -g1,12886:32583029,22069192 -) -(1,12890:6630773,22735370:25952256,404226,76021 -(1,12888:6630773,22735370:0,0,0 -g1,12888:6630773,22735370 -g1,12888:6630773,22735370 -g1,12888:6303093,22735370 -(1,12888:6303093,22735370:0,0,0 -) -g1,12888:6630773,22735370 -) -g1,12890:7579210,22735370 -g1,12890:8843793,22735370 -g1,12890:10108376,22735370 -g1,12890:11372959,22735370 -g1,12890:12637542,22735370 -g1,12890:13902125,22735370 -g1,12890:15166708,22735370 -h1,12890:16115145,22735370:0,0,0 -k1,12890:32583029,22735370:16467884 -g1,12890:32583029,22735370 -) -] -) -g1,12891:32583029,22811391 -g1,12891:6630773,22811391 -g1,12891:6630773,22811391 -g1,12891:32583029,22811391 -g1,12891:32583029,22811391 -) -h1,12891:6630773,23007999:0,0,0 -(1,12895:6630773,24373775:25952256,513147,134348 -h1,12894:6630773,24373775:983040,0,0 -k1,12894:8740751,24373775:173389 -k1,12894:9601614,24373775:173390 -k1,12894:10794088,24373775:173389 -k1,12894:12955185,24373775:173390 -k1,12894:13744612,24373775:173389 -k1,12894:16142949,24373775:173390 -k1,12894:17335423,24373775:173389 -k1,12894:19162286,24373775:173390 -k1,12894:20573650,24373775:173389 -k1,12894:21433202,24373775:173390 -k1,12894:22554242,24373775:173389 -k1,12894:24540358,24373775:173390 -k1,12894:28204194,24373775:173389 -k1,12894:29396669,24373775:173390 -k1,12894:32583029,24373775:0 -) -(1,12895:6630773,25215263:25952256,513147,134348 -k1,12894:7392383,25215263:230113 -k1,12894:8907003,25215263:230114 -k1,12894:10005468,25215263:230113 -k1,12894:11328067,25215263:230114 -k1,12894:11914040,25215263:230113 -k1,12894:14038143,25215263:230113 -k1,12894:14954419,25215263:230114 -k1,12894:16203617,25215263:230113 -k1,12894:20199429,25215263:230113 -k1,12894:23114553,25215263:230114 -k1,12894:24104884,25215263:230113 -k1,12894:26070391,25215263:230114 -k1,12894:26656364,25215263:230113 -k1,12894:28780467,25215263:230113 -k1,12894:31337764,25215263:230114 -k1,12894:32227169,25215263:230113 -k1,12894:32583029,25215263:0 -) -(1,12895:6630773,26056751:25952256,513147,126483 -g1,12894:9450131,26056751 -g1,12894:11800907,26056751 -g1,12894:12355996,26056751 -g1,12894:15317568,26056751 -g1,12894:17504504,26056751 -g1,12894:19791055,26056751 -g1,12894:20521781,26056751 -g1,12894:22199502,26056751 -g1,12894:23966352,26056751 -g1,12894:24936284,26056751 -g1,12894:28440494,26056751 -k1,12895:32583029,26056751:1425412 -g1,12895:32583029,26056751 -) -v1,12897:6630773,27247217:0,393216,0 -(1,12901:6630773,27562314:25952256,708313,196608 -g1,12901:6630773,27562314 -g1,12901:6630773,27562314 -g1,12901:6434165,27562314 -(1,12901:6434165,27562314:0,708313,196608 -r1,12921:32779637,27562314:26345472,904921,196608 -k1,12901:6434165,27562314:-26345472 -) -(1,12901:6434165,27562314:26345472,708313,196608 -[1,12901:6630773,27562314:25952256,511705,0 -(1,12899:6630773,27461127:25952256,410518,101187 -(1,12898:6630773,27461127:0,0,0 -g1,12898:6630773,27461127 -g1,12898:6630773,27461127 -g1,12898:6303093,27461127 -(1,12898:6303093,27461127:0,0,0 -) -g1,12898:6630773,27461127 -) -g1,12899:7895356,27461127 -g1,12899:8843794,27461127 -g1,12899:11689105,27461127 -g1,12899:12321397,27461127 -g1,12899:14534417,27461127 -g1,12899:16115146,27461127 -g1,12899:16747438,27461127 -h1,12899:20857332,27461127:0,0,0 -k1,12899:32583029,27461127:11725697 -g1,12899:32583029,27461127 -) -] -) -g1,12901:32583029,27562314 -g1,12901:6630773,27562314 -g1,12901:6630773,27562314 -g1,12901:32583029,27562314 -g1,12901:32583029,27562314 -) -h1,12901:6630773,27758922:0,0,0 -(1,12905:6630773,29124698:25952256,513147,134348 -h1,12904:6630773,29124698:983040,0,0 -g1,12904:11178971,29124698 -g1,12904:12985798,29124698 -g1,12904:14176587,29124698 -g1,12904:17167650,29124698 -g1,12904:17982917,29124698 -g1,12904:19201231,29124698 -g1,12904:21053933,29124698 -g1,12904:22491137,29124698 -g1,12904:23376528,29124698 -g1,12904:24523408,29124698 -g1,12904:26535363,29124698 -k1,12905:32583029,29124698:2557219 -g1,12905:32583029,29124698 -) -v1,12907:6630773,30315164:0,393216,0 -(1,12911:6630773,30630261:25952256,708313,196608 -g1,12911:6630773,30630261 -g1,12911:6630773,30630261 -g1,12911:6434165,30630261 -(1,12911:6434165,30630261:0,708313,196608 -r1,12921:32779637,30630261:26345472,904921,196608 -k1,12911:6434165,30630261:-26345472 -) -(1,12911:6434165,30630261:26345472,708313,196608 -[1,12911:6630773,30630261:25952256,511705,0 -(1,12909:6630773,30529074:25952256,410518,101187 -(1,12908:6630773,30529074:0,0,0 -g1,12908:6630773,30529074 -g1,12908:6630773,30529074 -g1,12908:6303093,30529074 -(1,12908:6303093,30529074:0,0,0 -) -g1,12908:6630773,30529074 -) -k1,12909:6630773,30529074:0 -g1,12909:9792231,30529074 -g1,12909:11689105,30529074 -g1,12909:12321397,30529074 -h1,12909:12953689,30529074:0,0,0 -k1,12909:32583029,30529074:19629340 -g1,12909:32583029,30529074 -) -] -) -g1,12911:32583029,30630261 -g1,12911:6630773,30630261 -g1,12911:6630773,30630261 -g1,12911:32583029,30630261 -g1,12911:32583029,30630261 -) -h1,12911:6630773,30826869:0,0,0 -(1,12914:6630773,45430677:25952256,14013984,0 -k1,12914:12599879,45430677:5969106 -h1,12913:12599879,45430677:0,0,0 -(1,12913:12599879,45430677:14014044,14013984,0 -(1,12913:12599879,45430677:14014019,14014019,0 -(1,12913:12599879,45430677:14014019,14014019,0 -(1,12913:12599879,45430677:0,14014019,0 -(1,12913:12599879,45430677:0,18945146,0 -(1,12913:12599879,45430677:18945146,18945146,0 +] ) -k1,12913:12599879,45430677:-18945146 +[1,12412:6630773,47279633:25952256,43253760,0 +[1,12412:6630773,4812305:25952256,786432,0 +(1,12412:6630773,4812305:25952256,505283,11795 +(1,12412:6630773,4812305:25952256,505283,11795 +g1,12412:3078558,4812305 +[1,12412:3078558,4812305:0,0,0 +(1,12412:3078558,2439708:0,1703936,0 +k1,12412:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,12412:2537886,2439708:1179648,16384,0 ) +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,12412:3078558,1915420:16384,1179648,0 ) -g1,12913:26613898,45430677 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) +] ) ) -g1,12914:26613923,45430677 -k1,12914:32583029,45430677:5969106 ) ] -(1,12921:32583029,45706769:0,0,0 -g1,12921:32583029,45706769 +[1,12412:3078558,4812305:0,0,0 +(1,12412:3078558,2439708:0,1703936,0 +g1,12412:29030814,2439708 +g1,12412:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,12412:36151628,1915420:16384,1179648,0 ) +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] -(1,12921:6630773,47279633:25952256,0,0 -h1,12921:6630773,47279633:25952256,0,0 +) +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,12412:37855564,2439708:1179648,16384,0 +) +) +k1,12412:3078556,2439708:-34777008 ) ] -(1,12921:4262630,4025873:0,0,0 -[1,12921:-473656,4025873:0,0,0 -(1,12921:-473656,-710413:0,0,0 -(1,12921:-473656,-710413:0,0,0 -g1,12921:-473656,-710413 +[1,12412:3078558,4812305:0,0,0 +(1,12412:3078558,49800853:0,16384,2228224 +k1,12412:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,12412:2537886,49800853:1179648,16384,0 ) -g1,12921:-473656,-710413 +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,12412:3078558,51504789:16384,1179648,0 +) +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 ) ] ) +) +) ] -!18587 -}221 -Input:1945:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1946:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1947:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1948:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1949:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1950:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1951:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1952:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1953:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1954:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1955:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +[1,12412:3078558,4812305:0,0,0 +(1,12412:3078558,49800853:0,16384,2228224 +g1,12412:29030814,49800853 +g1,12412:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,12412:36151628,51504789:16384,1179648,0 +) +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 +) +] +) +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,12412:37855564,49800853:1179648,16384,0 +) +) +k1,12412:3078556,49800853:-34777008 +) +] +g1,12412:6630773,4812305 +g1,12412:6630773,4812305 +g1,12412:10410889,4812305 +k1,12412:31387653,4812305:20976764 +) +) +] +[1,12412:6630773,45706769:25952256,40108032,0 +(1,12412:6630773,45706769:25952256,40108032,0 +(1,12412:6630773,45706769:0,0,0 +g1,12412:6630773,45706769 +) +[1,12412:6630773,45706769:25952256,40108032,0 +(1,12340:6630773,6254097:25952256,513147,134348 +k1,12339:8610222,6254097:244056 +k1,12339:12965351,6254097:244056 +k1,12339:16870903,6254097:244056 +k1,12339:19031232,6254097:244056 +k1,12339:20266848,6254097:244056 +k1,12339:22278410,6254097:244056 +k1,12339:24090087,6254097:244056 +k1,12339:25353228,6254097:244056 +k1,12339:27607929,6254097:244056 +k1,12339:31069803,6254097:244056 +k1,12339:32583029,6254097:0 +) +(1,12340:6630773,7119177:25952256,505283,134348 +g1,12339:9827619,7119177 +g1,12339:11045933,7119177 +g1,12339:13255807,7119177 +g1,12339:15690469,7119177 +g1,12339:16505736,7119177 +g1,12339:18738547,7119177 +k1,12340:32583029,7119177:11754539 +g1,12340:32583029,7119177 +) +v1,12342:6630773,7804032:0,393216,0 +(1,12362:6630773,12882781:25952256,5471965,196608 +g1,12362:6630773,12882781 +g1,12362:6630773,12882781 +g1,12362:6434165,12882781 +(1,12362:6434165,12882781:0,5471965,196608 +r1,12412:32779637,12882781:26345472,5668573,196608 +k1,12362:6434165,12882781:-26345472 +) +(1,12362:6434165,12882781:26345472,5471965,196608 +[1,12362:6630773,12882781:25952256,5275357,0 +(1,12344:6630773,8031863:25952256,424439,106246 +(1,12343:6630773,8031863:0,0,0 +g1,12343:6630773,8031863 +g1,12343:6630773,8031863 +g1,12343:6303093,8031863 +(1,12343:6303093,8031863:0,0,0 +) +g1,12343:6630773,8031863 +) +k1,12344:6630773,8031863:0 +g1,12344:9618359,8031863 +g1,12344:10282267,8031863 +h1,12344:12937898,8031863:0,0,0 +k1,12344:32583030,8031863:19645132 +g1,12344:32583030,8031863 +) +(1,12349:6630773,8847790:25952256,424439,79822 +(1,12346:6630773,8847790:0,0,0 +g1,12346:6630773,8847790 +g1,12346:6630773,8847790 +g1,12346:6303093,8847790 +(1,12346:6303093,8847790:0,0,0 +) +g1,12346:6630773,8847790 +) +k1,12349:7550448,8847790:255767 +k1,12349:7806215,8847790:255767 +k1,12349:9057844,8847790:255767 +k1,12349:10309473,8847790:255767 +k1,12349:11561102,8847790:255767 +k1,12349:12812731,8847790:255767 +k1,12349:14064360,8847790:255767 +k1,12349:15315989,8847790:255767 +k1,12349:16567618,8847790:255767 +k1,12349:17819247,8847790:255767 +k1,12349:19070877,8847790:255768 +k1,12349:20322506,8847790:255767 +k1,12349:21574135,8847790:255767 +k1,12349:22825764,8847790:255767 +k1,12349:24077393,8847790:255767 +k1,12349:25329022,8847790:255767 +k1,12349:26580651,8847790:255767 +k1,12349:27832280,8847790:255767 +k1,12349:29083909,8847790:255767 +k1,12349:30335538,8847790:255767 +k1,12349:31587167,8847790:255767 +h1,12349:32583029,8847790:0,0,0 +k1,12349:32583029,8847790:0 +k1,12349:32583029,8847790:0 +) +(1,12349:6630773,9532645:25952256,424439,86428 +h1,12349:6630773,9532645:0,0,0 +g1,12349:7626635,9532645 +g1,12349:9286405,9532645 +g1,12349:10614221,9532645 +g1,12349:11942037,9532645 +g1,12349:13269853,9532645 +g1,12349:14597669,9532645 +g1,12349:15925485,9532645 +g1,12349:17253301,9532645 +h1,12349:18249163,9532645:0,0,0 +k1,12349:32583029,9532645:14333866 +g1,12349:32583029,9532645 +) +(1,12351:6630773,10348572:25952256,424439,106246 +(1,12350:6630773,10348572:0,0,0 +g1,12350:6630773,10348572 +g1,12350:6630773,10348572 +g1,12350:6303093,10348572 +(1,12350:6303093,10348572:0,0,0 +) +g1,12350:6630773,10348572 +) +k1,12351:6630773,10348572:0 +g1,12351:9618359,10348572 +g1,12351:10282267,10348572 +g1,12351:13269853,10348572 +g1,12351:14929623,10348572 +g1,12351:15593531,10348572 +h1,12351:16589393,10348572:0,0,0 +k1,12351:32583029,10348572:15993636 +g1,12351:32583029,10348572 +) +(1,12355:6630773,11164499:25952256,424439,86428 +(1,12353:6630773,11164499:0,0,0 +g1,12353:6630773,11164499 +g1,12353:6630773,11164499 +g1,12353:6303093,11164499 +(1,12353:6303093,11164499:0,0,0 +) +g1,12353:6630773,11164499 +) +g1,12355:7626635,11164499 +g1,12355:7958589,11164499 +g1,12355:9286405,11164499 +g1,12355:10614221,11164499 +g1,12355:11942037,11164499 +g1,12355:13269853,11164499 +g1,12355:14597669,11164499 +g1,12355:15925485,11164499 +g1,12355:17253301,11164499 +g1,12355:18581117,11164499 +g1,12355:19908933,11164499 +g1,12355:21236749,11164499 +g1,12355:22564565,11164499 +g1,12355:23892381,11164499 +h1,12355:24888243,11164499:0,0,0 +k1,12355:32583029,11164499:7694786 +g1,12355:32583029,11164499 +) +(1,12357:6630773,11980426:25952256,424439,106246 +(1,12356:6630773,11980426:0,0,0 +g1,12356:6630773,11980426 +g1,12356:6630773,11980426 +g1,12356:6303093,11980426 +(1,12356:6303093,11980426:0,0,0 +) +g1,12356:6630773,11980426 +) +k1,12357:6630773,11980426:0 +g1,12357:9618359,11980426 +g1,12357:10282267,11980426 +g1,12357:13269853,11980426 +g1,12357:14929623,11980426 +g1,12357:15593531,11980426 +g1,12357:16921347,11980426 +g1,12357:19576979,11980426 +g1,12357:20240887,11980426 +h1,12357:21900657,11980426:0,0,0 +k1,12357:32583029,11980426:10682372 +g1,12357:32583029,11980426 +) +(1,12361:6630773,12796353:25952256,424439,86428 +(1,12359:6630773,12796353:0,0,0 +g1,12359:6630773,12796353 +g1,12359:6630773,12796353 +g1,12359:6303093,12796353 +(1,12359:6303093,12796353:0,0,0 +) +g1,12359:6630773,12796353 +) +g1,12361:7626635,12796353 +g1,12361:7958589,12796353 +g1,12361:9286405,12796353 +g1,12361:10614221,12796353 +g1,12361:11942037,12796353 +g1,12361:13269853,12796353 +g1,12361:14597669,12796353 +g1,12361:15925485,12796353 +g1,12361:17253301,12796353 +g1,12361:18581117,12796353 +g1,12361:19908933,12796353 +g1,12361:21236749,12796353 +g1,12361:22564565,12796353 +g1,12361:23892381,12796353 +h1,12361:24888243,12796353:0,0,0 +k1,12361:32583029,12796353:7694786 +g1,12361:32583029,12796353 +) +] +) +g1,12362:32583029,12882781 +g1,12362:6630773,12882781 +g1,12362:6630773,12882781 +g1,12362:32583029,12882781 +g1,12362:32583029,12882781 +) +h1,12362:6630773,13079389:0,0,0 +(1,12366:6630773,13944469:25952256,513147,134348 +h1,12365:6630773,13944469:983040,0,0 +k1,12365:8535845,13944469:294197 +k1,12365:11541266,13944469:294197 +k1,12365:16871249,13944469:294197 +k1,12365:20087696,13944469:294197 +k1,12365:20913390,13944469:294197 +k1,12365:23184809,13944469:294198 +k1,12365:25177044,13944469:294197 +k1,12365:26339593,13944469:294197 +k1,12365:28164056,13944469:294197 +k1,12365:29109681,13944469:294197 +k1,12365:31224468,13944469:294197 +k1,12366:32583029,13944469:0 +) +(1,12366:6630773,14809549:25952256,513147,134348 +k1,12365:8096337,14809549:200719 +k1,12365:8956348,14809549:200719 +k1,12365:13402488,14809549:200718 +k1,12365:14874605,14809549:200719 +k1,12365:16568890,14809549:200719 +k1,12365:18136690,14809549:200719 +k1,12365:18868906,14809549:200719 +k1,12365:22066586,14809549:200719 +k1,12365:25742023,14809549:200718 +k1,12365:26594170,14809549:200719 +k1,12365:30964945,14809549:200719 +k1,12365:32583029,14809549:0 +) +(1,12366:6630773,15674629:25952256,505283,134348 +k1,12365:7479698,15674629:232887 +k1,12365:8483288,15674629:232887 +k1,12365:12325243,15674629:232887 +k1,12365:13241014,15674629:232886 +k1,12365:16284740,15674629:232887 +k1,12365:19044040,15674629:232887 +k1,12365:19928355,15674629:232887 +k1,12365:23096600,15674629:232887 +k1,12365:23945525,15674629:232887 +k1,12365:24534272,15674629:232887 +k1,12365:27039947,15674629:232886 +k1,12365:29877235,15674629:232887 +k1,12365:31202607,15674629:232887 +k1,12365:31966991,15674629:232887 +k1,12365:32583029,15674629:0 +) +(1,12366:6630773,16539709:25952256,505283,134348 +k1,12365:11327665,16539709:187360 +k1,12365:12166454,16539709:187361 +k1,12365:15069626,16539709:187360 +k1,12365:18082898,16539709:187360 +k1,12365:18886297,16539709:187361 +k1,12365:22354389,16539709:187360 +k1,12365:25587862,16539709:187360 +k1,12365:27510616,16539709:187361 +k1,12365:30671344,16539709:187360 +k1,12366:32583029,16539709:0 +) +(1,12366:6630773,17404789:25952256,505283,7863 +k1,12366:32583029,17404789:23365550 +g1,12366:32583029,17404789 +) +v1,12368:6630773,18269869:0,393216,0 +(1,12385:6630773,28549440:25952256,10672787,0 +g1,12385:6630773,28549440 +g1,12385:6237557,28549440 +r1,12412:6368629,28549440:131072,10672787,0 +g1,12385:6567858,28549440 +g1,12385:6764466,28549440 +[1,12385:6764466,28549440:25818563,10672787,0 +(1,12369:6764466,18684411:25818563,807758,219026 +(1,12368:6764466,18684411:0,807758,219026 +r1,12412:7908217,18684411:1143751,1026784,219026 +k1,12368:6764466,18684411:-1143751 +) +(1,12368:6764466,18684411:1143751,807758,219026 +) +g1,12368:8107446,18684411 +g1,12368:8435126,18684411 +g1,12368:10143649,18684411 +g1,12368:11007413,18684411 +g1,12368:13562006,18684411 +g1,12368:16327625,18684411 +g1,12368:18159356,18684411 +g1,12368:19977324,18684411 +g1,12368:20546176,18684411 +g1,12368:22161638,18684411 +k1,12368:32583029,18684411:8148602 +g1,12369:32583029,18684411 +) +(1,12369:6764466,19549491:25818563,513147,134348 +k1,12368:7800496,19549491:218141 +k1,12368:11108660,19549491:218141 +k1,12368:11942840,19549491:218142 +k1,12368:14439668,19549491:218141 +h1,12368:15410256,19549491:0,0,0 +k1,12368:15628397,19549491:218141 +k1,12368:16655908,19549491:218141 +k1,12368:18372203,19549491:218142 +h1,12368:19169121,19549491:0,0,0 +k1,12368:19560932,19549491:218141 +k1,12368:21168436,19549491:218141 +k1,12368:23593174,19549491:218141 +k1,12368:24802875,19549491:218141 +k1,12368:28364664,19549491:218142 +k1,12368:30096031,19549491:218141 +k1,12368:30965600,19549491:218141 +k1,12368:32583029,19549491:0 +) +(1,12369:6764466,20414571:25818563,513147,134348 +k1,12368:8062253,20414571:141077 +k1,12368:11944781,20414571:141078 +k1,12368:13142298,20414571:141077 +k1,12368:14660942,20414571:141077 +k1,12368:15631049,20414571:141077 +k1,12368:18051469,20414571:141078 +k1,12368:18548406,20414571:141077 +k1,12368:20769596,20414571:141077 +k1,12368:21569965,20414571:141077 +k1,12368:23245241,20414571:141078 +k1,12368:24254670,20414571:141077 +k1,12368:25926013,20414571:141077 +k1,12368:26718518,20414571:141077 +k1,12368:29591792,20414571:141078 +k1,12368:30088729,20414571:141077 +k1,12368:32583029,20414571:0 +) +(1,12369:6764466,21279651:25818563,513147,126483 +k1,12368:7890093,21279651:191084 +k1,12368:8740468,21279651:191083 +k1,12368:11180748,21279651:191084 +k1,12368:12023260,21279651:191084 +k1,12368:13306828,21279651:191083 +k1,12368:14891863,21279651:191084 +k1,12368:16102031,21279651:191083 +k1,12368:19507656,21279651:191084 +k1,12368:22445354,21279651:191084 +(1,12368:22652448,21279651:0,452978,115847 +r1,12412:23714138,21279651:1061690,568825,115847 +k1,12368:22652448,21279651:-1061690 +) +(1,12368:22652448,21279651:1061690,452978,115847 +g1,12368:23359149,21279651 +h1,12368:23710861,21279651:0,411205,112570 +) +k1,12368:24285985,21279651:191083 +k1,12368:25965392,21279651:191084 +k1,12368:27024828,21279651:191084 +k1,12368:29495253,21279651:191083 +k1,12368:31048831,21279651:191084 +k1,12368:32583029,21279651:0 +) +(1,12369:6764466,22144731:25818563,513147,134348 +k1,12368:8537634,22144731:205547 +k1,12368:10132544,22144731:205547 +k1,12368:12214388,22144731:205548 +(1,12368:12214388,22144731:0,414482,115847 +r1,12412:13627789,22144731:1413401,530329,115847 +k1,12368:12214388,22144731:-1413401 +) +(1,12368:12214388,22144731:1413401,414482,115847 +k1,12368:12214388,22144731:3277 +h1,12368:13624512,22144731:0,411205,112570 +) +k1,12368:13833336,22144731:205547 +k1,12368:16797293,22144731:205547 +k1,12368:17618878,22144731:205547 +k1,12368:18412939,22144731:205548 +k1,12368:20492816,22144731:205547 +k1,12368:22087726,22144731:205547 +k1,12368:24554920,22144731:205547 +k1,12368:25419760,22144731:205548 +k1,12368:28438768,22144731:205547 +k1,12368:31635378,22144731:205547 +k1,12368:32583029,22144731:0 +) +(1,12369:6764466,23009811:25818563,513147,134348 +k1,12368:8326547,23009811:253982 +k1,12368:10942446,23009811:253981 +k1,12368:11809190,23009811:253982 +k1,12368:14825515,23009811:253982 +k1,12368:17276263,23009811:253981 +k1,12368:18216407,23009811:253982 +k1,12368:21560411,23009811:253981 +k1,12368:22430431,23009811:253982 +k1,12368:23703498,23009811:253982 +k1,12368:28783550,23009811:253981 +k1,12368:31821501,23009811:253982 +k1,12368:32583029,23009811:0 +) +(1,12369:6764466,23874891:25818563,505283,134348 +g1,12368:9608728,23874891 +(1,12368:9608728,23874891:0,452978,115847 +r1,12412:13132400,23874891:3523672,568825,115847 +k1,12368:9608728,23874891:-3523672 +) +(1,12368:9608728,23874891:3523672,452978,115847 +k1,12368:9608728,23874891:3277 +h1,12368:13129123,23874891:0,411205,112570 +) +k1,12369:32583028,23874891:19069864 +g1,12369:32583028,23874891 +) +v1,12371:6764466,24559746:0,393216,0 +(1,12382:6764466,28352832:25818563,4186302,196608 +g1,12382:6764466,28352832 +g1,12382:6764466,28352832 +g1,12382:6567858,28352832 +(1,12382:6567858,28352832:0,4186302,196608 +r1,12412:32779637,28352832:26211779,4382910,196608 +k1,12382:6567857,28352832:-26211780 +) +(1,12382:6567858,28352832:26211779,4186302,196608 +[1,12382:6764466,28352832:25818563,3989694,0 +(1,12373:6764466,24787577:25818563,424439,106246 +(1,12372:6764466,24787577:0,0,0 +g1,12372:6764466,24787577 +g1,12372:6764466,24787577 +g1,12372:6436786,24787577 +(1,12372:6436786,24787577:0,0,0 +) +g1,12372:6764466,24787577 +) +k1,12373:6764466,24787577:0 +g1,12373:11411822,24787577 +g1,12373:12075730,24787577 +g1,12373:16723086,24787577 +g1,12373:18382856,24787577 +g1,12373:19046764,24787577 +g1,12373:20374580,24787577 +h1,12373:20706534,24787577:0,0,0 +k1,12373:32583029,24787577:11876495 +g1,12373:32583029,24787577 +) +(1,12381:6764466,25603504:25818563,424439,106246 +(1,12375:6764466,25603504:0,0,0 +g1,12375:6764466,25603504 +g1,12375:6764466,25603504 +g1,12375:6436786,25603504 +(1,12375:6436786,25603504:0,0,0 +) +g1,12375:6764466,25603504 +) +g1,12381:7760328,25603504 +g1,12381:8092282,25603504 +g1,12381:8424236,25603504 +g1,12381:8756190,25603504 +g1,12381:10747914,25603504 +h1,12381:12075730,25603504:0,0,0 +k1,12381:32583030,25603504:20507300 +g1,12381:32583030,25603504 +) +(1,12381:6764466,26288359:25818563,407923,9908 +h1,12381:6764466,26288359:0,0,0 +g1,12381:7760328,26288359 +g1,12381:8756190,26288359 +g1,12381:9088144,26288359 +g1,12381:9420098,26288359 +g1,12381:9752052,26288359 +g1,12381:10747914,26288359 +g1,12381:11079868,26288359 +g1,12381:11411822,26288359 +h1,12381:12075730,26288359:0,0,0 +k1,12381:32583030,26288359:20507300 +g1,12381:32583030,26288359 +) +(1,12381:6764466,26973214:25818563,407923,9908 +h1,12381:6764466,26973214:0,0,0 +g1,12381:7760328,26973214 +g1,12381:8756190,26973214 +g1,12381:9088144,26973214 +g1,12381:9420098,26973214 +g1,12381:9752052,26973214 +g1,12381:10747914,26973214 +g1,12381:11079868,26973214 +g1,12381:11411822,26973214 +h1,12381:12075730,26973214:0,0,0 +k1,12381:32583030,26973214:20507300 +g1,12381:32583030,26973214 +) +(1,12381:6764466,27658069:25818563,407923,9908 +h1,12381:6764466,27658069:0,0,0 +g1,12381:7760328,27658069 +g1,12381:8756190,27658069 +g1,12381:9088144,27658069 +g1,12381:9420098,27658069 +g1,12381:9752052,27658069 +g1,12381:10747914,27658069 +g1,12381:11079868,27658069 +g1,12381:11411822,27658069 +h1,12381:12075730,27658069:0,0,0 +k1,12381:32583030,27658069:20507300 +g1,12381:32583030,27658069 +) +(1,12381:6764466,28342924:25818563,407923,9908 +h1,12381:6764466,28342924:0,0,0 +g1,12381:7760328,28342924 +g1,12381:8756190,28342924 +g1,12381:9088144,28342924 +g1,12381:9420098,28342924 +g1,12381:9752052,28342924 +g1,12381:10747914,28342924 +g1,12381:11079868,28342924 +g1,12381:11411822,28342924 +h1,12381:12075730,28342924:0,0,0 +k1,12381:32583030,28342924:20507300 +g1,12381:32583030,28342924 +) +] +) +g1,12382:32583029,28352832 +g1,12382:6764466,28352832 +g1,12382:6764466,28352832 +g1,12382:32583029,28352832 +g1,12382:32583029,28352832 +) +h1,12382:6764466,28549440:0,0,0 +] +g1,12385:32583029,28549440 +) +h1,12385:6630773,28549440:0,0,0 +v1,12388:6630773,29414520:0,393216,0 +(1,12398:6630773,31803438:25952256,2782134,0 +g1,12398:6630773,31803438 +g1,12398:6237557,31803438 +r1,12412:6368629,31803438:131072,2782134,0 +g1,12398:6567858,31803438 +g1,12398:6764466,31803438 +[1,12398:6764466,31803438:25818563,2782134,0 +(1,12389:6764466,29722818:25818563,701514,196608 +(1,12388:6764466,29722818:0,701514,196608 +r1,12412:8863446,29722818:2098980,898122,196608 +k1,12388:6764466,29722818:-2098980 +) +(1,12388:6764466,29722818:2098980,701514,196608 +) +k1,12388:9074582,29722818:211136 +k1,12388:10392511,29722818:327680 +k1,12388:13075665,29722818:211136 +k1,12388:14305887,29722818:211137 +k1,12388:19343094,29722818:211136 +k1,12388:20221386,29722818:211136 +(1,12388:20221386,29722818:0,452978,115847 +r1,12412:23041635,29722818:2820249,568825,115847 +k1,12388:20221386,29722818:-2820249 +) +(1,12388:20221386,29722818:2820249,452978,115847 +k1,12388:20221386,29722818:3277 +h1,12388:23038358,29722818:0,411205,112570 +) +k1,12388:23252771,29722818:211136 +k1,12388:24655352,29722818:211136 +k1,12388:27176632,29722818:211136 +k1,12388:28684727,29722818:211137 +k1,12388:29914948,29722818:211136 +k1,12388:31622271,29722818:211136 +k1,12389:32583029,29722818:0 +) +(1,12389:6764466,30587898:25818563,505283,126483 +g1,12388:8084361,30587898 +g1,12388:8815087,30587898 +g1,12388:12319297,30587898 +g1,12388:13169954,30587898 +g1,12388:14653689,30587898 +g1,12388:15468956,30587898 +g1,12388:16687270,30587898 +g1,12388:19547916,30587898 +g1,12388:23683893,30587898 +k1,12389:32583029,30587898:6870141 +g1,12389:32583029,30587898 +) +v1,12391:6764466,31272753:0,393216,0 +(1,12395:6764466,31606830:25818563,727293,196608 +g1,12395:6764466,31606830 +g1,12395:6764466,31606830 +g1,12395:6567858,31606830 +(1,12395:6567858,31606830:0,727293,196608 +r1,12412:32779637,31606830:26211779,923901,196608 +k1,12395:6567857,31606830:-26211780 +) +(1,12395:6567858,31606830:26211779,727293,196608 +[1,12395:6764466,31606830:25818563,530685,0 +(1,12393:6764466,31500584:25818563,424439,106246 +(1,12392:6764466,31500584:0,0,0 +g1,12392:6764466,31500584 +g1,12392:6764466,31500584 +g1,12392:6436786,31500584 +(1,12392:6436786,31500584:0,0,0 +) +g1,12392:6764466,31500584 +) +k1,12393:6764466,31500584:0 +g1,12393:11411822,31500584 +g1,12393:12075730,31500584 +g1,12393:16059178,31500584 +g1,12393:17718948,31500584 +g1,12393:18382856,31500584 +g1,12393:19710672,31500584 +h1,12393:20042626,31500584:0,0,0 +k1,12393:32583029,31500584:12540403 +g1,12393:32583029,31500584 +) +] +) +g1,12395:32583029,31606830 +g1,12395:6764466,31606830 +g1,12395:6764466,31606830 +g1,12395:32583029,31606830 +g1,12395:32583029,31606830 +) +h1,12395:6764466,31803438:0,0,0 +] +g1,12398:32583029,31803438 +) +h1,12398:6630773,31803438:0,0,0 +(1,12401:6630773,34634598:25952256,32768,229376 +(1,12401:6630773,34634598:0,32768,229376 +(1,12401:6630773,34634598:5505024,32768,229376 +r1,12412:12135797,34634598:5505024,262144,229376 +) +k1,12401:6630773,34634598:-5505024 +) +(1,12401:6630773,34634598:25952256,32768,0 +r1,12412:32583029,34634598:25952256,32768,0 +) +) +(1,12401:6630773,36266450:25952256,606339,14155 +(1,12401:6630773,36266450:1974731,568590,14155 +g1,12401:6630773,36266450 +g1,12401:8605504,36266450 +) +k1,12401:32583030,36266450:19510592 +g1,12401:32583030,36266450 +) +(1,12404:6630773,37524746:25952256,505283,126483 +k1,12403:8249512,37524746:153354 +k1,12403:11871031,37524746:153354 +k1,12403:15449296,37524746:153354 +k1,12403:16794095,37524746:153354 +k1,12403:21852819,37524746:153354 +k1,12403:24091529,37524746:153354 +k1,12403:28114129,37524746:153354 +k1,12403:29458928,37524746:153354 +k1,12403:32583029,37524746:0 +) +(1,12404:6630773,38389826:25952256,513147,126483 +k1,12403:9661158,38389826:245760 +k1,12403:10854569,38389826:245760 +k1,12403:12119414,38389826:245760 +k1,12403:15744210,38389826:245760 +k1,12403:16649262,38389826:245760 +k1,12403:17914106,38389826:245759 +k1,12403:20386779,38389826:245760 +k1,12403:24113156,38389826:245760 +k1,12403:26994119,38389826:245760 +k1,12403:28836336,38389826:245760 +k1,12403:29741388,38389826:245760 +k1,12403:32583029,38389826:0 +) +(1,12404:6630773,39254906:25952256,513147,134348 +k1,12403:7840896,39254906:218563 +k1,12403:10843427,39254906:218562 +k1,12403:11678028,39254906:218563 +k1,12403:13330518,39254906:218562 +k1,12403:14137594,39254906:218563 +k1,12403:15552843,39254906:218562 +k1,12403:18533749,39254906:218563 +k1,12403:21536936,39254906:218562 +k1,12403:22747059,39254906:218563 +k1,12403:25554293,39254906:218562 +k1,12403:26534384,39254906:218563 +k1,12403:29180400,39254906:218562 +k1,12403:32583029,39254906:0 +) +(1,12404:6630773,40119986:25952256,513147,134348 +k1,12403:7506287,40119986:224086 +k1,12403:8086233,40119986:224086 +k1,12403:10183339,40119986:224087 +k1,12403:13276591,40119986:224086 +k1,12403:15275392,40119986:224086 +k1,12403:18510202,40119986:224086 +k1,12403:21188612,40119986:224087 +k1,12403:21944195,40119986:224086 +k1,12403:24022950,40119986:224086 +k1,12403:25056406,40119986:224086 +k1,12403:26299577,40119986:224086 +k1,12403:28445835,40119986:224087 +k1,12403:30680566,40119986:224086 +k1,12403:31563944,40119986:224086 +k1,12403:32583029,40119986:0 +) +(1,12404:6630773,40985066:25952256,513147,134348 +k1,12403:11130713,40985066:254518 +k1,12403:16290601,40985066:254518 +k1,12403:19329743,40985066:254517 +k1,12403:20575821,40985066:254518 +k1,12403:22685008,40985066:254518 +k1,12403:23748896,40985066:254518 +k1,12403:25022499,40985066:254518 +k1,12403:28006592,40985066:254518 +k1,12403:28943994,40985066:254517 +k1,12403:30650134,40985066:254518 +k1,12403:31563944,40985066:254518 +k1,12403:32583029,40985066:0 +) +(1,12404:6630773,41850146:25952256,513147,126483 +k1,12403:11047972,41850146:171777 +k1,12403:12411194,41850146:171777 +k1,12403:16808077,41850146:171777 +k1,12403:18192925,41850146:171777 +k1,12403:20912087,41850146:171778 +k1,12403:21845392,41850146:171777 +k1,12403:26088921,41850146:171777 +k1,12403:27654649,41850146:171777 +k1,12403:30398714,41850146:171777 +k1,12404:32583029,41850146:0 +k1,12404:32583029,41850146:0 +) +] +(1,12412:32583029,45706769:0,0,0 +g1,12412:32583029,45706769 +) +) +] +(1,12412:6630773,47279633:25952256,0,0 +h1,12412:6630773,47279633:25952256,0,0 +) +] +(1,12412:4262630,4025873:0,0,0 +[1,12412:-473656,4025873:0,0,0 +(1,12412:-473656,-710413:0,0,0 +(1,12412:-473656,-710413:0,0,0 +g1,12412:-473656,-710413 +) +g1,12412:-473656,-710413 +) +] +) +] +!24442 +}200 +Input:1842:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1843:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1844:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1845:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1846:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1847:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1848:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1849:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1850:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1851:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1852:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1046 -{222 -[1,12976:4262630,47279633:28320399,43253760,0 -(1,12976:4262630,4025873:0,0,0 -[1,12976:-473656,4025873:0,0,0 -(1,12976:-473656,-710413:0,0,0 -(1,12976:-473656,-644877:0,0,0 -k1,12976:-473656,-644877:-65536 +{201 +[1,12485:4262630,47279633:28320399,43253760,0 +(1,12485:4262630,4025873:0,0,0 +[1,12485:-473656,4025873:0,0,0 +(1,12485:-473656,-710413:0,0,0 +(1,12485:-473656,-644877:0,0,0 +k1,12485:-473656,-644877:-65536 ) -(1,12976:-473656,4736287:0,0,0 -k1,12976:-473656,4736287:5209943 +(1,12485:-473656,4736287:0,0,0 +k1,12485:-473656,4736287:5209943 ) -g1,12976:-473656,-710413 +g1,12485:-473656,-710413 ) ] ) -[1,12976:6630773,47279633:25952256,43253760,0 -[1,12976:6630773,4812305:25952256,786432,0 -(1,12976:6630773,4812305:25952256,505283,134348 -(1,12976:6630773,4812305:25952256,505283,134348 -g1,12976:3078558,4812305 -[1,12976:3078558,4812305:0,0,0 -(1,12976:3078558,2439708:0,1703936,0 -k1,12976:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,12976:2537886,2439708:1179648,16384,0 +[1,12485:6630773,47279633:25952256,43253760,0 +[1,12485:6630773,4812305:25952256,786432,0 +(1,12485:6630773,4812305:25952256,513147,126483 +(1,12485:6630773,4812305:25952256,513147,126483 +g1,12485:3078558,4812305 +[1,12485:3078558,4812305:0,0,0 +(1,12485:3078558,2439708:0,1703936,0 +k1,12485:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,12485:2537886,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,12976:3078558,1915420:16384,1179648,0 +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,12485:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] ) ) ) ] -[1,12976:3078558,4812305:0,0,0 -(1,12976:3078558,2439708:0,1703936,0 -g1,12976:29030814,2439708 -g1,12976:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,12976:36151628,1915420:16384,1179648,0 +[1,12485:3078558,4812305:0,0,0 +(1,12485:3078558,2439708:0,1703936,0 +g1,12485:29030814,2439708 +g1,12485:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,12485:36151628,1915420:16384,1179648,0 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,12976:37855564,2439708:1179648,16384,0 +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,12485:37855564,2439708:1179648,16384,0 ) ) -k1,12976:3078556,2439708:-34777008 +k1,12485:3078556,2439708:-34777008 ) ] -[1,12976:3078558,4812305:0,0,0 -(1,12976:3078558,49800853:0,16384,2228224 -k1,12976:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,12976:2537886,49800853:1179648,16384,0 +[1,12485:3078558,4812305:0,0,0 +(1,12485:3078558,49800853:0,16384,2228224 +k1,12485:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,12485:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,12976:3078558,51504789:16384,1179648,0 +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,12485:3078558,51504789:16384,1179648,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 ) ] ) ) ) ] -[1,12976:3078558,4812305:0,0,0 -(1,12976:3078558,49800853:0,16384,2228224 -g1,12976:29030814,49800853 -g1,12976:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,12976:36151628,51504789:16384,1179648,0 +[1,12485:3078558,4812305:0,0,0 +(1,12485:3078558,49800853:0,16384,2228224 +g1,12485:29030814,49800853 +g1,12485:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,12485:36151628,51504789:16384,1179648,0 +) +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 +) +] +) +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,12485:37855564,49800853:1179648,16384,0 ) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 +) +k1,12485:3078556,49800853:-34777008 +) +] +g1,12485:6630773,4812305 +k1,12485:19540057,4812305:11713907 +g1,12485:21162728,4812305 +g1,12485:21985204,4812305 +g1,12485:24539797,4812305 +g1,12485:25949476,4812305 +g1,12485:28728857,4812305 +g1,12485:29852144,4812305 +) +) +] +[1,12485:6630773,45706769:25952256,40108032,0 +(1,12485:6630773,45706769:25952256,40108032,0 +(1,12485:6630773,45706769:0,0,0 +g1,12485:6630773,45706769 +) +[1,12485:6630773,45706769:25952256,40108032,0 +(1,12405:6630773,6254097:25952256,555811,12975 +(1,12405:6630773,6254097:2450326,525533,12975 +g1,12405:6630773,6254097 +g1,12405:9081099,6254097 +) +g1,12405:12750460,6254097 +$1,12405:12750460,6254097 +$1,12405:13239948,6254097 +k1,12405:32583028,6254097:19343080 +g1,12405:32583028,6254097 +) +(1,12410:6630773,7512393:25952256,513147,134348 +k1,12409:9666434,7512393:245793 +(1,12409:9666434,7512393:0,452978,115847 +r1,12485:11431547,7512393:1765113,568825,115847 +k1,12409:9666434,7512393:-1765113 +) +(1,12409:9666434,7512393:1765113,452978,115847 +k1,12409:9666434,7512393:3277 +h1,12409:11428270,7512393:0,411205,112570 +) +k1,12409:11677339,7512393:245792 +k1,12409:13027414,7512393:245793 +k1,12409:14020973,7512393:245793 +k1,12409:16134541,7512393:245792 +k1,12409:17774285,7512393:245793 +k1,12409:19192517,7512393:245793 +k1,12409:21746488,7512393:245793 +k1,12409:22651572,7512393:245792 +k1,12409:23916450,7512393:245793 +k1,12409:25815716,7512393:245793 +k1,12409:28074774,7512393:245792 +k1,12409:29006729,7512393:245793 +k1,12409:32583029,7512393:0 +) +(1,12410:6630773,8377473:25952256,513147,126483 +k1,12409:7474315,8377473:215707 +k1,12409:8709107,8377473:215707 +k1,12409:10291895,8377473:215707 +k1,12409:11166894,8377473:215707 +k1,12409:12401686,8377473:215707 +k1,12409:16085558,8377473:215707 +k1,12409:18808017,8377473:215707 +k1,12409:21651717,8377473:215706 +k1,12409:22735776,8377473:215707 +k1,12409:23766751,8377473:215707 +k1,12409:25048729,8377473:215707 +k1,12409:26794702,8377473:215707 +k1,12409:27661837,8377473:215707 +k1,12409:30307619,8377473:215707 +k1,12409:32583029,8377473:0 +) +(1,12410:6630773,9242553:25952256,513147,134348 +g1,12409:10232631,9242553 +g1,12409:11118022,9242553 +g1,12409:12520492,9242553 +g1,12409:15174044,9242553 +g1,12409:15904770,9242553 +g1,12409:17123084,9242553 +g1,12409:19587893,9242553 +g1,12409:21117503,9242553 +g1,12409:22270281,9242553 +g1,12409:23561995,9242553 +g1,12409:25150587,9242553 +g1,12409:26284359,9242553 +(1,12409:26284359,9242553:0,414482,115847 +r1,12485:27697760,9242553:1413401,530329,115847 +k1,12409:26284359,9242553:-1413401 +) +(1,12409:26284359,9242553:1413401,414482,115847 +k1,12409:26284359,9242553:3277 +h1,12409:27694483,9242553:0,411205,112570 +) +k1,12410:32583029,9242553:4711599 +g1,12410:32583029,9242553 +) +v1,12412:6630773,9927408:0,393216,0 +(1,12419:6630773,11057594:25952256,1523402,196608 +g1,12419:6630773,11057594 +g1,12419:6630773,11057594 +g1,12419:6434165,11057594 +(1,12419:6434165,11057594:0,1523402,196608 +r1,12485:32779637,11057594:26345472,1720010,196608 +k1,12419:6434165,11057594:-26345472 +) +(1,12419:6434165,11057594:26345472,1523402,196608 +[1,12419:6630773,11057594:25952256,1326794,0 +(1,12414:6630773,10161845:25952256,431045,106246 +(1,12413:6630773,10161845:0,0,0 +g1,12413:6630773,10161845 +g1,12413:6630773,10161845 +g1,12413:6303093,10161845 +(1,12413:6303093,10161845:0,0,0 +) +g1,12413:6630773,10161845 +) +k1,12414:6630773,10161845:0 +g1,12414:8622497,10161845 +g1,12414:9286405,10161845 +g1,12414:13269853,10161845 +g1,12414:13933761,10161845 +g1,12414:14597669,10161845 +h1,12414:17917209,10161845:0,0,0 +k1,12414:32583029,10161845:14665820 +g1,12414:32583029,10161845 +) +(1,12418:6630773,10977772:25952256,424439,79822 +(1,12416:6630773,10977772:0,0,0 +g1,12416:6630773,10977772 +g1,12416:6630773,10977772 +g1,12416:6303093,10977772 +(1,12416:6303093,10977772:0,0,0 +) +g1,12416:6630773,10977772 +) +g1,12418:7626635,10977772 +g1,12418:8954451,10977772 +h1,12418:11942036,10977772:0,0,0 +k1,12418:32583028,10977772:20640992 +g1,12418:32583028,10977772 +) +] +) +g1,12419:32583029,11057594 +g1,12419:6630773,11057594 +g1,12419:6630773,11057594 +g1,12419:32583029,11057594 +g1,12419:32583029,11057594 +) +h1,12419:6630773,11254202:0,0,0 +(1,12423:6630773,12119282:25952256,513147,134348 +h1,12422:6630773,12119282:983040,0,0 +k1,12422:8382026,12119282:298320 +k1,12422:9211843,12119282:298320 +k1,12422:10795979,12119282:298320 +k1,12422:13724258,12119282:298319 +k1,12422:14674006,12119282:298320 +k1,12422:16409531,12119282:298320 +k1,12422:17063711,12119282:298320 +k1,12422:18751394,12119282:298320 +k1,12422:20926010,12119282:298320 +k1,12422:22114309,12119282:298320 +k1,12422:22768489,12119282:298320 +k1,12422:25361223,12119282:298319 +k1,12422:26345705,12119282:298320 +k1,12422:27663110,12119282:298320 +k1,12422:29337031,12119282:298320 +k1,12422:32583029,12119282:0 +) +(1,12423:6630773,12984362:25952256,513147,126483 +k1,12422:8610414,12984362:196406 +k1,12422:9825905,12984362:196406 +k1,12422:11411675,12984362:196407 +k1,12422:13484377,12984362:196406 +k1,12422:14570762,12984362:196406 +k1,12422:17061583,12984362:196406 +k1,12422:19960039,12984362:196407 +k1,12422:21532046,12984362:196406 +k1,12422:22900891,12984362:196406 +k1,12422:25984158,12984362:196406 +k1,12422:27199650,12984362:196407 +k1,12422:30174783,12984362:196406 +k1,12422:32051532,12984362:196406 +k1,12422:32583029,12984362:0 +) +(1,12423:6630773,13849442:25952256,513147,134348 +g1,12422:10134983,13849442 +g1,12422:10985640,13849442 +g1,12422:12469375,13849442 +g1,12422:13327896,13849442 +g1,12422:15954579,13849442 +g1,12422:17172893,13849442 +g1,12422:18544561,13849442 +g1,12422:21456981,13849442 +g1,12422:25415355,13849442 +g1,12422:26300746,13849442 +k1,12423:32583029,13849442:3800435 +g1,12423:32583029,13849442 +) +v1,12425:6630773,14534297:0,393216,0 +(1,12434:6630773,16957673:25952256,2816592,196608 +g1,12434:6630773,16957673 +g1,12434:6630773,16957673 +g1,12434:6434165,16957673 +(1,12434:6434165,16957673:0,2816592,196608 +r1,12485:32779637,16957673:26345472,3013200,196608 +k1,12434:6434165,16957673:-26345472 +) +(1,12434:6434165,16957673:26345472,2816592,196608 +[1,12434:6630773,16957673:25952256,2619984,0 +(1,12427:6630773,14762128:25952256,424439,79822 +(1,12426:6630773,14762128:0,0,0 +g1,12426:6630773,14762128 +g1,12426:6630773,14762128 +g1,12426:6303093,14762128 +(1,12426:6303093,14762128:0,0,0 +) +g1,12426:6630773,14762128 +) +k1,12427:6630773,14762128:0 +h1,12427:9618359,14762128:0,0,0 +k1,12427:32583029,14762128:22964670 +g1,12427:32583029,14762128 +) +(1,12433:6630773,15578055:25952256,424439,106246 +(1,12429:6630773,15578055:0,0,0 +g1,12429:6630773,15578055 +g1,12429:6630773,15578055 +g1,12429:6303093,15578055 +(1,12429:6303093,15578055:0,0,0 +) +g1,12429:6630773,15578055 +) +g1,12433:7626635,15578055 +g1,12433:7958589,15578055 +g1,12433:8290543,15578055 +g1,12433:8622497,15578055 +g1,12433:8954451,15578055 +g1,12433:9286405,15578055 +g1,12433:9618359,15578055 +g1,12433:9950313,15578055 +g1,12433:10282267,15578055 +g1,12433:10614221,15578055 +g1,12433:10946175,15578055 +g1,12433:12937899,15578055 +g1,12433:13269853,15578055 +g1,12433:13601807,15578055 +g1,12433:13933761,15578055 +g1,12433:14265715,15578055 +g1,12433:14597669,15578055 +h1,12433:15925485,15578055:0,0,0 +k1,12433:32583029,15578055:16657544 +g1,12433:32583029,15578055 +) +(1,12433:6630773,16262910:25952256,424439,106246 +h1,12433:6630773,16262910:0,0,0 +g1,12433:7626635,16262910 +g1,12433:9618359,16262910 +g1,12433:12937898,16262910 +h1,12433:15925483,16262910:0,0,0 +k1,12433:32583029,16262910:16657546 +g1,12433:32583029,16262910 +) +(1,12433:6630773,16947765:25952256,424439,9908 +h1,12433:6630773,16947765:0,0,0 +g1,12433:7626635,16947765 +g1,12433:9286405,16947765 +g1,12433:9618359,16947765 +g1,12433:12937898,16947765 +h1,12433:15925483,16947765:0,0,0 +k1,12433:32583029,16947765:16657546 +g1,12433:32583029,16947765 +) +] +) +g1,12434:32583029,16957673 +g1,12434:6630773,16957673 +g1,12434:6630773,16957673 +g1,12434:32583029,16957673 +g1,12434:32583029,16957673 +) +h1,12434:6630773,17154281:0,0,0 +(1,12438:6630773,18019361:25952256,513147,102891 +h1,12437:6630773,18019361:983040,0,0 +k1,12437:9650618,18019361:253570 +k1,12437:10923272,18019361:253569 +k1,12437:12566205,18019361:253570 +k1,12437:14696071,18019361:253570 +k1,12437:15632525,18019361:253569 +k1,12437:17973417,18019361:253570 +k1,12437:20929036,18019361:253570 +k1,12437:22832802,18019361:253569 +k1,12437:24528819,18019361:253570 +k1,12437:25954828,18019361:253570 +k1,12437:28828526,18019361:253569 +k1,12437:31563944,18019361:253570 +k1,12437:32583029,18019361:0 +) +(1,12438:6630773,18884441:25952256,513147,126483 +k1,12437:9605393,18884441:195893 +k1,12437:11481629,18884441:195893 +k1,12437:12209019,18884441:195893 +k1,12437:12760772,18884441:195893 +k1,12437:15043987,18884441:195893 +k1,12437:15899171,18884441:195892 +k1,12437:19141177,18884441:195893 +k1,12437:19996362,18884441:195893 +k1,12437:22858260,18884441:195893 +k1,12437:26865072,18884441:195893 +k1,12437:29696168,18884441:195893 +k1,12437:32583029,18884441:0 +) +(1,12438:6630773,19749521:25952256,513147,134348 +k1,12437:7842332,19749521:258010 +k1,12437:9498226,19749521:258011 +k1,12437:10848721,19749521:258010 +(1,12437:10848721,19749521:0,452978,115847 +r1,12485:13317258,19749521:2468537,568825,115847 +k1,12437:10848721,19749521:-2468537 +) +(1,12437:10848721,19749521:2468537,452978,115847 +k1,12437:10848721,19749521:3277 +h1,12437:13313981,19749521:0,411205,112570 +) +k1,12437:13575268,19749521:258010 +k1,12437:16923302,19749521:258011 +k1,12437:19036636,19749521:258010 +k1,12437:19946074,19749521:258010 +k1,12437:22133465,19749521:258011 +k1,12437:22747335,19749521:258010 +k1,12437:24394053,19749521:258010 +k1,12437:26629941,19749521:258011 +k1,12437:27547243,19749521:258010 +k1,12437:32583029,19749521:0 +) +(1,12438:6630773,20614601:25952256,513147,115847 +k1,12437:8794653,20614601:153235 +k1,12437:10948703,20614601:153236 +k1,12437:12669559,20614601:153235 +k1,12437:13841879,20614601:153235 +k1,12437:16351134,20614601:153236 +k1,12437:20285796,20614601:153235 +k1,12437:21630476,20614601:153235 +(1,12437:21630476,20614601:0,452978,115847 +r1,12485:24450725,20614601:2820249,568825,115847 +k1,12437:21630476,20614601:-2820249 +) +(1,12437:21630476,20614601:2820249,452978,115847 +k1,12437:21630476,20614601:3277 +h1,12437:24447448,20614601:0,411205,112570 +) +k1,12437:24603960,20614601:153235 +k1,12437:25408624,20614601:153236 +k1,12437:27954578,20614601:153235 +k1,12437:28565910,20614601:153235 +k1,12437:29986612,20614601:153236 +k1,12437:30495707,20614601:153235 +k1,12437:32583029,20614601:0 +) +(1,12438:6630773,21479681:25952256,513147,134348 +g1,12437:8223953,21479681 +g1,12437:10077966,21479681 +g1,12437:12990386,21479681 +g1,12437:14421692,21479681 +g1,12437:16119074,21479681 +h1,12437:16915992,21479681:0,0,0 +g1,12437:17115221,21479681 +g1,12437:18262101,21479681 +g1,12437:20578798,21479681 +g1,12437:22600583,21479681 +g1,12437:23214655,21479681 +k1,12438:32583029,21479681:6254103 +g1,12438:32583029,21479681 +) +v1,12440:6630773,22164536:0,393216,0 +(1,12452:6630773,26642477:25952256,4871157,196608 +g1,12452:6630773,26642477 +g1,12452:6630773,26642477 +g1,12452:6434165,26642477 +(1,12452:6434165,26642477:0,4871157,196608 +r1,12485:32779637,26642477:26345472,5067765,196608 +k1,12452:6434165,26642477:-26345472 +) +(1,12452:6434165,26642477:26345472,4871157,196608 +[1,12452:6630773,26642477:25952256,4674549,0 +(1,12442:6630773,22392367:25952256,424439,106246 +(1,12441:6630773,22392367:0,0,0 +g1,12441:6630773,22392367 +g1,12441:6630773,22392367 +g1,12441:6303093,22392367 +(1,12441:6303093,22392367:0,0,0 +) +g1,12441:6630773,22392367 +) +g1,12442:8954451,22392367 +g1,12442:9950313,22392367 +g1,12442:15925485,22392367 +g1,12442:17585255,22392367 +g1,12442:18249163,22392367 +k1,12442:18249163,22392367:0 +h1,12442:18913071,22392367:0,0,0 +k1,12442:32583029,22392367:13669958 +g1,12442:32583029,22392367 +) +(1,12443:6630773,23077222:25952256,424439,86428 +h1,12443:6630773,23077222:0,0,0 +g1,12443:6962727,23077222 +g1,12443:7294681,23077222 +g1,12443:7626635,23077222 +g1,12443:7958589,23077222 +g1,12443:8290543,23077222 +g1,12443:8622497,23077222 +g1,12443:8954451,23077222 +g1,12443:9286405,23077222 +g1,12443:9618359,23077222 +g1,12443:9950313,23077222 +g1,12443:10282267,23077222 +g1,12443:10614221,23077222 +g1,12443:10946175,23077222 +g1,12443:11278129,23077222 +g1,12443:11610083,23077222 +g1,12443:11942037,23077222 +g1,12443:12273991,23077222 +g1,12443:15261576,23077222 +g1,12443:15925484,23077222 +g1,12443:19245024,23077222 +g1,12443:19908932,23077222 +g1,12443:21900656,23077222 +g1,12443:23560426,23077222 +g1,12443:24224334,23077222 +g1,12443:26548012,23077222 +g1,12443:28207782,23077222 +h1,12443:30199506,23077222:0,0,0 +k1,12443:32583029,23077222:2383523 +g1,12443:32583029,23077222 +) +(1,12444:6630773,23762077:25952256,424439,106246 +h1,12444:6630773,23762077:0,0,0 +k1,12444:6630773,23762077:0 +h1,12444:10282266,23762077:0,0,0 +k1,12444:32583030,23762077:22300764 +g1,12444:32583030,23762077 +) +(1,12451:6630773,24578004:25952256,398014,8257 +(1,12446:6630773,24578004:0,0,0 +g1,12446:6630773,24578004 +g1,12446:6630773,24578004 +g1,12446:6303093,24578004 +(1,12446:6303093,24578004:0,0,0 +) +g1,12446:6630773,24578004 +) +g1,12451:7626635,24578004 +g1,12451:7958589,24578004 +g1,12451:8290543,24578004 +g1,12451:8622497,24578004 +g1,12451:8954451,24578004 +g1,12451:9286405,24578004 +g1,12451:9618359,24578004 +g1,12451:9950313,24578004 +g1,12451:10282267,24578004 +g1,12451:10614221,24578004 +g1,12451:10946175,24578004 +g1,12451:11278129,24578004 +g1,12451:11942037,24578004 +g1,12451:12273991,24578004 +g1,12451:12605945,24578004 +g1,12451:12937899,24578004 +g1,12451:13269853,24578004 +g1,12451:13601807,24578004 +g1,12451:13933761,24578004 +g1,12451:14265715,24578004 +g1,12451:14597669,24578004 +g1,12451:15261577,24578004 +g1,12451:15593531,24578004 +g1,12451:15925485,24578004 +g1,12451:16257439,24578004 +g1,12451:16589393,24578004 +g1,12451:16921347,24578004 +g1,12451:17253301,24578004 +g1,12451:17585255,24578004 +g1,12451:17917209,24578004 +g1,12451:18249163,24578004 +h1,12451:18581117,24578004:0,0,0 +k1,12451:32583029,24578004:14001912 +g1,12451:32583029,24578004 +) +(1,12451:6630773,25262859:25952256,407923,9908 +h1,12451:6630773,25262859:0,0,0 +g1,12451:7626635,25262859 +g1,12451:8290543,25262859 +g1,12451:11942036,25262859 +g1,12451:15261575,25262859 +h1,12451:18581114,25262859:0,0,0 +k1,12451:32583029,25262859:14001915 +g1,12451:32583029,25262859 +) +(1,12451:6630773,25947714:25952256,407923,9908 +h1,12451:6630773,25947714:0,0,0 +g1,12451:7626635,25947714 +g1,12451:8290543,25947714 +g1,12451:11942036,25947714 +g1,12451:15261575,25947714 +h1,12451:18581114,25947714:0,0,0 +k1,12451:32583029,25947714:14001915 +g1,12451:32583029,25947714 +) +(1,12451:6630773,26632569:25952256,407923,9908 +h1,12451:6630773,26632569:0,0,0 +g1,12451:7626635,26632569 +g1,12451:8290543,26632569 +g1,12451:11942036,26632569 +g1,12451:15261575,26632569 +h1,12451:18581114,26632569:0,0,0 +k1,12451:32583029,26632569:14001915 +g1,12451:32583029,26632569 +) +] +) +g1,12452:32583029,26642477 +g1,12452:6630773,26642477 +g1,12452:6630773,26642477 +g1,12452:32583029,26642477 +g1,12452:32583029,26642477 +) +h1,12452:6630773,26839085:0,0,0 +v1,12456:6630773,27704165:0,393216,0 +(1,12457:6630773,28976070:25952256,1665121,0 +g1,12457:6630773,28976070 +g1,12457:6237557,28976070 +r1,12485:6368629,28976070:131072,1665121,0 +g1,12457:6567858,28976070 +g1,12457:6764466,28976070 +[1,12457:6764466,28976070:25818563,1665121,0 +(1,12457:6764466,27976642:25818563,665693,196608 +(1,12456:6764466,27976642:0,665693,196608 +r1,12485:8010564,27976642:1246098,862301,196608 +k1,12456:6764466,27976642:-1246098 +) +(1,12456:6764466,27976642:1246098,665693,196608 +) +k1,12456:8254036,27976642:243472 +k1,12456:9571965,27976642:327680 +k1,12456:12021380,27976642:243473 +k1,12456:13283937,27976642:243472 +k1,12456:15023597,27976642:243473 +k1,12456:15883107,27976642:243472 +k1,12456:17145665,27976642:243473 +k1,12456:19359805,27976642:243472 +k1,12456:23540026,27976642:243473 +k1,12456:25638822,27976642:243472 +k1,12456:29896375,27976642:243473 +k1,12456:30495707,27976642:243472 +k1,12456:32583029,27976642:0 +) +(1,12457:6764466,28841722:25818563,505283,134348 +g1,12456:8357646,28841722 +g1,12456:9453408,28841722 +g1,12456:12365828,28841722 +g1,12456:13756502,28841722 +g1,12456:15389659,28841722 +g1,12456:19019698,28841722 +g1,12456:20238012,28841722 +k1,12457:32583029,28841722:8360428 +g1,12457:32583029,28841722 +) +] +g1,12457:32583029,28976070 +) +h1,12457:6630773,28976070:0,0,0 +(1,12460:6630773,29841150:25952256,513147,115847 +h1,12459:6630773,29841150:983040,0,0 +k1,12459:9619605,29841150:231077 +(1,12459:9619605,29841150:0,452978,115847 +r1,12485:11384718,29841150:1765113,568825,115847 +k1,12459:9619605,29841150:-1765113 +) +(1,12459:9619605,29841150:1765113,452978,115847 +k1,12459:9619605,29841150:3277 +h1,12459:11381441,29841150:0,411205,112570 +) +k1,12459:11615795,29841150:231077 +k1,12459:14187817,29841150:231076 +k1,12459:15610339,29841150:231077 +k1,12459:18557228,29841150:231077 +k1,12459:19735956,29841150:231077 +$1,12459:19735956,29841150 +$1,12459:20180945,29841150 +k1,12459:20412022,29841150:231077 +k1,12459:21662183,29841150:231076 +k1,12459:25373877,29841150:231077 +k1,12459:29059357,29841150:231077 +(1,12459:29059357,29841150:0,452978,115847 +r1,12485:32583029,29841150:3523672,568825,115847 +k1,12459:29059357,29841150:-3523672 +) +(1,12459:29059357,29841150:3523672,452978,115847 +k1,12459:29059357,29841150:3277 +h1,12459:32579752,29841150:0,411205,112570 +) +k1,12459:32583029,29841150:0 +) +(1,12460:6630773,30706230:25952256,513147,138281 +g1,12459:8115818,30706230 +g1,12459:11433250,30706230 +g1,12459:12651564,30706230 +$1,12459:12651564,30706230 +$1,12459:12972035,30706230 +g1,12459:15238270,30706230 +$1,12459:15238270,30706230 +$1,12459:15706197,30706230 +g1,12459:17972432,30706230 +g1,12459:19363106,30706230 +g1,12459:22999698,30706230 +g1,12459:25625725,30706230 +g1,12459:26772605,30706230 +g1,12459:27990919,30706230 +k1,12460:32583029,30706230:1702628 +g1,12460:32583029,30706230 +) +v1,12462:6630773,31391085:0,393216,0 +(1,12479:6630773,39299907:25952256,8302038,196608 +g1,12479:6630773,39299907 +g1,12479:6630773,39299907 +g1,12479:6434165,39299907 +(1,12479:6434165,39299907:0,8302038,196608 +r1,12485:32779637,39299907:26345472,8498646,196608 +k1,12479:6434165,39299907:-26345472 +) +(1,12479:6434165,39299907:26345472,8302038,196608 +[1,12479:6630773,39299907:25952256,8105430,0 +(1,12464:6630773,31625522:25952256,431045,106246 +(1,12463:6630773,31625522:0,0,0 +g1,12463:6630773,31625522 +g1,12463:6630773,31625522 +g1,12463:6303093,31625522 +(1,12463:6303093,31625522:0,0,0 +) +g1,12463:6630773,31625522 +) +k1,12464:6630773,31625522:0 +g1,12464:10282266,31625522 +g1,12464:10946174,31625522 +g1,12464:14929622,31625522 +g1,12464:15593530,31625522 +g1,12464:16257438,31625522 +h1,12464:19576978,31625522:0,0,0 +k1,12464:32583029,31625522:13006051 +g1,12464:32583029,31625522 +) +(1,12478:6630773,32441449:25952256,398014,0 +(1,12466:6630773,32441449:0,0,0 +g1,12466:6630773,32441449 +g1,12466:6630773,32441449 +g1,12466:6303093,32441449 +(1,12466:6303093,32441449:0,0,0 +) +g1,12466:6630773,32441449 +) +h1,12478:7294681,32441449:0,0,0 +k1,12478:32583029,32441449:25288348 +g1,12478:32583029,32441449 +) +(1,12478:6630773,33126304:25952256,424439,106246 +h1,12478:6630773,33126304:0,0,0 +g1,12478:7626635,33126304 +g1,12478:7958589,33126304 +g1,12478:11278129,33126304 +g1,12478:16257439,33126304 +h1,12478:19908932,33126304:0,0,0 +k1,12478:32583029,33126304:12674097 +g1,12478:32583029,33126304 +) +(1,12478:6630773,33811159:25952256,398014,0 +h1,12478:6630773,33811159:0,0,0 +h1,12478:7294681,33811159:0,0,0 +k1,12478:32583029,33811159:25288348 +g1,12478:32583029,33811159 +) +(1,12478:6630773,34496014:25952256,431045,106246 +h1,12478:6630773,34496014:0,0,0 +g1,12478:7626635,34496014 +g1,12478:9618359,34496014 +g1,12478:9950313,34496014 +g1,12478:13601806,34496014 +g1,12478:14929622,34496014 +h1,12478:17917207,34496014:0,0,0 +k1,12478:32583029,34496014:14665822 +g1,12478:32583029,34496014 +) +(1,12478:6630773,35180869:25952256,431045,106246 +h1,12478:6630773,35180869:0,0,0 +g1,12478:7626635,35180869 +g1,12478:8290543,35180869 +g1,12478:8954451,35180869 +g1,12478:11278129,35180869 +g1,12478:12273991,35180869 +g1,12478:12937899,35180869 +g1,12478:14265715,35180869 +g1,12478:16921347,35180869 +g1,12478:17585255,35180869 +k1,12478:17585255,35180869:0 +h1,12478:20240887,35180869:0,0,0 +k1,12478:32583029,35180869:12342142 +g1,12478:32583029,35180869 +) +(1,12478:6630773,35865724:25952256,424439,106246 +h1,12478:6630773,35865724:0,0,0 +g1,12478:7626635,35865724 +g1,12478:11610082,35865724 +g1,12478:15593529,35865724 +g1,12478:17253299,35865724 +g1,12478:21236746,35865724 +g1,12478:22232608,35865724 +g1,12478:23560424,35865724 +g1,12478:25552148,35865724 +g1,12478:26548010,35865724 +h1,12478:26879964,35865724:0,0,0 +k1,12478:32583029,35865724:5703065 +g1,12478:32583029,35865724 +) +(1,12478:6630773,36550579:25952256,431045,106246 +h1,12478:6630773,36550579:0,0,0 +g1,12478:7626635,36550579 +g1,12478:8622497,36550579 +g1,12478:11278129,36550579 +g1,12478:14929622,36550579 +h1,12478:17917207,36550579:0,0,0 +k1,12478:32583029,36550579:14665822 +g1,12478:32583029,36550579 +) +(1,12478:6630773,37235434:25952256,407923,9908 +h1,12478:6630773,37235434:0,0,0 +g1,12478:7626635,37235434 +g1,12478:7958589,37235434 +g1,12478:11278128,37235434 +h1,12478:14265713,37235434:0,0,0 +k1,12478:32583029,37235434:18317316 +g1,12478:32583029,37235434 +) +(1,12478:6630773,37920289:25952256,424439,106246 +h1,12478:6630773,37920289:0,0,0 +g1,12478:7626635,37920289 +g1,12478:9950313,37920289 +h1,12478:13269852,37920289:0,0,0 +k1,12478:32583028,37920289:19313176 +g1,12478:32583028,37920289 +) +(1,12478:6630773,38605144:25952256,398014,6605 +h1,12478:6630773,38605144:0,0,0 +g1,12478:7626635,38605144 +g1,12478:7958589,38605144 +g1,12478:8290543,38605144 +g1,12478:8622497,38605144 +g1,12478:8954451,38605144 +g1,12478:9286405,38605144 +g1,12478:9618359,38605144 +h1,12478:10614221,38605144:0,0,0 +k1,12478:32583029,38605144:21968808 +g1,12478:32583029,38605144 +) +(1,12478:6630773,39289999:25952256,407923,9908 +h1,12478:6630773,39289999:0,0,0 +g1,12478:7626635,39289999 +h1,12478:10614220,39289999:0,0,0 +k1,12478:32583028,39289999:21968808 +g1,12478:32583028,39289999 +) +] +) +g1,12479:32583029,39299907 +g1,12479:6630773,39299907 +g1,12479:6630773,39299907 +g1,12479:32583029,39299907 +g1,12479:32583029,39299907 +) +h1,12479:6630773,39496515:0,0,0 +(1,12483:6630773,40361595:25952256,505283,134348 +h1,12482:6630773,40361595:983040,0,0 +k1,12482:9735482,40361595:134617 +k1,12482:10738452,40361595:134618 +k1,12482:13078356,40361595:134617 +k1,12482:14385413,40361595:134618 +k1,12482:17140159,40361595:134617 +k1,12482:19582954,40361595:134617 +k1,12482:20403734,40361595:134618 +k1,12482:24114651,40361595:134617 +k1,12482:25405978,40361595:134617 +k1,12482:26192024,40361595:134618 +k1,12482:29607373,40361595:134617 +(1,12482:29607373,40361595:0,414482,115847 +r1,12485:29965639,40361595:358266,530329,115847 +k1,12482:29607373,40361595:-358266 +) +(1,12482:29607373,40361595:358266,414482,115847 +k1,12482:29607373,40361595:3277 +h1,12482:29962362,40361595:0,411205,112570 +) +k1,12482:30100257,40361595:134618 +k1,12482:31426319,40361595:134617 +k1,12482:32583029,40361595:0 +) +(1,12483:6630773,41226675:25952256,513147,134348 +k1,12482:7459133,41226675:176932 +k1,12482:10916797,41226675:176932 +(1,12482:10916797,41226675:0,414482,115847 +r1,12485:11275063,41226675:358266,530329,115847 +k1,12482:10916797,41226675:-358266 +) +(1,12482:10916797,41226675:358266,414482,115847 +k1,12482:10916797,41226675:3277 +h1,12482:11271786,41226675:0,411205,112570 +) +k1,12482:11625665,41226675:176932 +k1,12482:16061126,41226675:176931 +k1,12482:17106410,41226675:176932 +k1,12482:18387624,41226675:176932 +k1,12482:20001761,41226675:176932 +k1,12482:20534553,41226675:176932 +k1,12482:22100848,41226675:176932 +k1,12482:24154076,41226675:176932 +k1,12482:25017170,41226675:176932 +k1,12482:28266429,41226675:176931 +k1,12482:29094789,41226675:176932 +(1,12482:29094789,41226675:0,452978,115847 +r1,12485:30508190,41226675:1413401,568825,115847 +k1,12482:29094789,41226675:-1413401 +) +(1,12482:29094789,41226675:1413401,452978,115847 +k1,12482:29094789,41226675:3277 +h1,12482:30504913,41226675:0,411205,112570 +) +k1,12482:30858792,41226675:176932 +k1,12482:32227169,41226675:176932 +k1,12482:32583029,41226675:0 +) +(1,12483:6630773,42091755:25952256,513147,134348 +k1,12482:8718594,42091755:174825 +k1,12482:11441459,42091755:174825 +k1,12482:12267713,42091755:174826 +k1,12482:15723270,42091755:174825 +(1,12482:15723270,42091755:0,459977,115847 +r1,12485:18191807,42091755:2468537,575824,115847 +k1,12482:15723270,42091755:-2468537 +) +(1,12482:15723270,42091755:2468537,459977,115847 +k1,12482:15723270,42091755:3277 +h1,12482:18188530,42091755:0,411205,112570 +) +k1,12482:18540302,42091755:174825 +k1,12482:19911814,42091755:174825 +k1,12482:23158967,42091755:174825 +k1,12482:25539080,42091755:174826 +k1,12482:26365333,42091755:174825 +(1,12482:26365333,42091755:0,459977,115847 +r1,12485:28833870,42091755:2468537,575824,115847 +k1,12482:26365333,42091755:-2468537 +) +(1,12482:26365333,42091755:2468537,459977,115847 +k1,12482:26365333,42091755:3277 +h1,12482:28830593,42091755:0,411205,112570 +) +k1,12482:29008695,42091755:174825 +k1,12482:32583029,42091755:0 +) +(1,12483:6630773,42956835:25952256,513147,126483 +k1,12482:8700836,42956835:184592 +k1,12482:11727070,42956835:184593 +k1,12482:13479283,42956835:184592 +(1,12482:13479283,42956835:0,452978,115847 +r1,12485:14892684,42956835:1413401,568825,115847 +k1,12482:13479283,42956835:-1413401 +) +(1,12482:13479283,42956835:1413401,452978,115847 +k1,12482:13479283,42956835:3277 +h1,12482:14889407,42956835:0,411205,112570 +) +k1,12482:15077276,42956835:184592 +k1,12482:16253428,42956835:184592 +k1,12482:17089449,42956835:184593 +k1,12482:18021807,42956835:184592 +k1,12482:19893296,42956835:184592 +k1,12482:21269334,42956835:184593 +k1,12482:22069964,42956835:184592 +k1,12482:24140027,42956835:184592 +k1,12482:25733643,42956835:184592 +k1,12482:28123523,42956835:184593 +k1,12482:29327200,42956835:184592 +k1,12482:32583029,42956835:0 +) +(1,12483:6630773,43821915:25952256,513147,134348 +k1,12482:7435307,43821915:153106 +k1,12482:8607499,43821915:153107 +k1,12482:9834740,43821915:153106 +k1,12482:10647138,43821915:153106 +k1,12482:11819330,43821915:153107 +k1,12482:13403742,43821915:153106 +(1,12482:13610836,43821915:0,414482,115847 +r1,12485:13969102,43821915:358266,530329,115847 +k1,12482:13610836,43821915:-358266 +) +(1,12482:13610836,43821915:358266,414482,115847 +g1,12482:13965825,43821915 +h1,12482:13965825,43821915:0,411205,112570 +) +k1,12482:14329302,43821915:153106 +k1,12482:15473969,43821915:153107 +k1,12482:18500829,43821915:153106 +k1,12482:21669246,43821915:153106 +k1,12482:23013798,43821915:153107 +k1,12482:24910817,43821915:153106 +k1,12482:25715351,43821915:153106 +k1,12482:26887543,43821915:153107 +k1,12482:28576158,43821915:153106 +k1,12482:32583029,43821915:0 +) +(1,12483:6630773,44686995:25952256,513147,126483 +k1,12482:9881308,44686995:235224 +k1,12482:10744367,44686995:235224 +k1,12482:11998675,44686995:235223 +k1,12482:13600980,44686995:235224 +k1,12482:14495496,44686995:235224 +k1,12482:18385007,44686995:235224 +k1,12482:19429600,44686995:235223 +k1,12482:23404308,44686995:235224 +k1,12482:24171029,44686995:235224 +k1,12482:26150166,44686995:235224 +k1,12482:27194759,44686995:235223 +k1,12482:29211907,44686995:235224 +k1,12482:30638576,44686995:235224 +k1,12482:32583029,44686995:0 +) +(1,12483:6630773,45552075:25952256,513147,134348 +k1,12482:8003884,45552075:181666 +k1,12482:9652245,45552075:181665 +k1,12482:12675552,45552075:181666 +k1,12482:15046120,45552075:181665 +k1,12482:15879214,45552075:181666 +k1,12482:17079965,45552075:181666 +k1,12482:18797139,45552075:181665 +k1,12482:19638097,45552075:181666 +k1,12482:20838847,45552075:181665 +k1,12482:22625490,45552075:181666 +k1,12482:24003843,45552075:181666 +k1,12482:25681695,45552075:181665 +k1,12482:27731792,45552075:181666 +k1,12482:28444954,45552075:181665 +k1,12482:31931601,45552075:181666 +k1,12482:32583029,45552075:0 +) +] +(1,12485:32583029,45706769:0,0,0 +g1,12485:32583029,45706769 +) +) +] +(1,12485:6630773,47279633:25952256,0,0 +h1,12485:6630773,47279633:25952256,0,0 +) +] +(1,12485:4262630,4025873:0,0,0 +[1,12485:-473656,4025873:0,0,0 +(1,12485:-473656,-710413:0,0,0 +(1,12485:-473656,-710413:0,0,0 +g1,12485:-473656,-710413 +) +g1,12485:-473656,-710413 +) +] +) +] +!30768 +}201 +Input:1853:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1854:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1855:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1856:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1857:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1858:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1859:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1860:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1861:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1862:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1863:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1864:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1865:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1866:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1328 +{202 +[1,12543:4262630,47279633:28320399,43253760,0 +(1,12543:4262630,4025873:0,0,0 +[1,12543:-473656,4025873:0,0,0 +(1,12543:-473656,-710413:0,0,0 +(1,12543:-473656,-644877:0,0,0 +k1,12543:-473656,-644877:-65536 +) +(1,12543:-473656,4736287:0,0,0 +k1,12543:-473656,4736287:5209943 +) +g1,12543:-473656,-710413 ) ] ) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,12976:37855564,49800853:1179648,16384,0 +[1,12543:6630773,47279633:25952256,43253760,0 +[1,12543:6630773,4812305:25952256,786432,0 +(1,12543:6630773,4812305:25952256,513147,134348 +(1,12543:6630773,4812305:25952256,513147,134348 +g1,12543:3078558,4812305 +[1,12543:3078558,4812305:0,0,0 +(1,12543:3078558,2439708:0,1703936,0 +k1,12543:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,12543:2537886,2439708:1179648,16384,0 ) +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,12543:3078558,1915420:16384,1179648,0 ) -k1,12976:3078556,49800853:-34777008 -) -] -g1,12976:6630773,4812305 -g1,12976:6630773,4812305 -g1,12976:8843268,4812305 -g1,12976:10880782,4812305 -g1,12976:13281365,4812305 -k1,12976:31387653,4812305:18106288 -) -) -] -[1,12976:6630773,45706769:25952256,40108032,0 -(1,12976:6630773,45706769:25952256,40108032,0 -(1,12976:6630773,45706769:0,0,0 -g1,12976:6630773,45706769 -) -[1,12976:6630773,45706769:25952256,40108032,0 -(1,12921:6630773,6254097:25952256,505283,134348 -h1,12920:6630773,6254097:983040,0,0 -k1,12920:8524492,6254097:282844 -k1,12920:11241914,6254097:282759 -k1,12920:12393110,6254097:282844 -k1,12920:13667514,6254097:282844 -k1,12920:16108458,6254097:282843 -k1,12920:19602566,6254097:282844 -k1,12920:20501448,6254097:282844 -k1,12920:22965985,6254097:282843 -k1,12920:27040742,6254097:282844 -k1,12920:28515030,6254097:282843 -(1,12920:28515030,6254097:0,452978,115847 -r1,12976:30983567,6254097:2468537,568825,115847 -k1,12920:28515030,6254097:-2468537 -) -(1,12920:28515030,6254097:2468537,452978,115847 -k1,12920:28515030,6254097:3277 -h1,12920:30980290,6254097:0,411205,112570 -) -k1,12920:31266411,6254097:282844 -k1,12921:32583029,6254097:0 -) -(1,12921:6630773,7095585:25952256,505283,134348 -k1,12920:8515587,7095585:228064 -k1,12920:9762735,7095585:228063 -k1,12920:11592499,7095585:228064 -k1,12920:15253994,7095585:228064 -k1,12920:17814483,7095585:228063 -k1,12920:20832415,7095585:228064 -(1,12920:20832415,7095585:0,452978,115847 -r1,12976:24004375,7095585:3171960,568825,115847 -k1,12920:20832415,7095585:-3171960 -) -(1,12920:20832415,7095585:3171960,452978,115847 -k1,12920:20832415,7095585:3277 -h1,12920:24001098,7095585:0,411205,112570 -) -k1,12920:24232439,7095585:228064 -k1,12920:25564784,7095585:228063 -k1,12920:26540614,7095585:228064 -k1,12920:28281904,7095585:228064 -k1,12920:29161395,7095585:228063 -k1,12920:31593435,7095585:228064 -k1,12921:32583029,7095585:0 -) -(1,12921:6630773,7937073:25952256,513147,138281 -k1,12920:9330201,7937073:195297 -k1,12920:12745282,7937073:195297 -k1,12920:14137266,7937073:195297 -k1,12920:16598143,7937073:195297 -k1,12920:19755012,7937073:195297 -k1,12920:21141754,7937073:195297 -k1,12920:25960616,7937073:195297 -$1,12920:25960616,7937073 -$1,12920:26428543,7937073 -k1,12920:28847477,7937073:195297 -k1,12920:31821501,7937073:195297 -k1,12921:32583029,7937073:0 -) -(1,12921:6630773,8778561:25952256,513147,126483 -(1,12920:6630773,8778561:0,452978,115847 -r1,12976:9802733,8778561:3171960,568825,115847 -k1,12920:6630773,8778561:-3171960 -) -(1,12920:6630773,8778561:3171960,452978,115847 -k1,12920:6630773,8778561:3277 -h1,12920:9799456,8778561:0,411205,112570 -) -k1,12920:10060742,8778561:258009 -k1,12920:11510196,8778561:258009 -k1,12920:15386448,8778561:258009 -k1,12920:16928962,8778561:258008 -k1,12920:18662186,8778561:258009 -k1,12920:20392789,8778561:258009 -k1,12920:21333683,8778561:258009 -k1,12920:22401062,8778561:258009 -k1,12920:24507186,8778561:258009 -k1,12920:27208376,8778561:258008 -k1,12920:28082423,8778561:258009 -k1,12920:29111135,8778561:258009 -k1,12920:31923737,8778561:258009 -k1,12920:32583029,8778561:0 -) -(1,12921:6630773,9620049:25952256,505283,134348 -k1,12920:9703943,9620049:245291 -k1,12920:12739101,9620049:245290 -(1,12920:12739101,9620049:0,452978,115847 -r1,12976:14504214,9620049:1765113,568825,115847 -k1,12920:12739101,9620049:-1765113 -) -(1,12920:12739101,9620049:1765113,452978,115847 -k1,12920:12739101,9620049:3277 -h1,12920:14500937,9620049:0,411205,112570 -) -k1,12920:14749505,9620049:245291 -k1,12920:15526292,9620049:245290 -k1,12920:16127443,9620049:245291 -k1,12920:19015145,9620049:245290 -k1,12920:20069806,9620049:245291 -(1,12920:20069806,9620049:0,452978,115847 -r1,12976:21483207,9620049:1413401,568825,115847 -k1,12920:20069806,9620049:-1413401 -) -(1,12920:20069806,9620049:1413401,452978,115847 -k1,12920:20069806,9620049:3277 -h1,12920:21479930,9620049:0,411205,112570 -) -k1,12920:21728497,9620049:245290 -k1,12920:23258294,9620049:245291 -k1,12920:25844530,9620049:245290 -k1,12920:26860524,9620049:245291 -k1,12920:29065340,9620049:245290 -k1,12920:30595137,9620049:245291 -k1,12920:31601955,9620049:245290 -k1,12921:32583029,9620049:0 -) -(1,12921:6630773,10461537:25952256,513147,126483 -g1,12920:8327500,10461537 -g1,12920:10224767,10461537 -g1,12920:12774117,10461537 -g1,12920:15598718,10461537 -g1,12920:16817032,10461537 -g1,12920:19175017,10461537 -g1,12920:20041402,10461537 -(1,12920:20041402,10461537:0,452978,115847 -r1,12976:22509939,10461537:2468537,568825,115847 -k1,12920:20041402,10461537:-2468537 -) -(1,12920:20041402,10461537:2468537,452978,115847 -k1,12920:20041402,10461537:3277 -h1,12920:22506662,10461537:0,411205,112570 -) -k1,12921:32583029,10461537:9899420 -g1,12921:32583029,10461537 -) -v1,12923:6630773,11652003:0,393216,0 -(1,12937:6630773,17302815:25952256,6044028,196608 -g1,12937:6630773,17302815 -g1,12937:6630773,17302815 -g1,12937:6434165,17302815 -(1,12937:6434165,17302815:0,6044028,196608 -r1,12976:32779637,17302815:26345472,6240636,196608 -k1,12937:6434165,17302815:-26345472 -) -(1,12937:6434165,17302815:26345472,6044028,196608 -[1,12937:6630773,17302815:25952256,5847420,0 -(1,12925:6630773,11865913:25952256,410518,76021 -(1,12924:6630773,11865913:0,0,0 -g1,12924:6630773,11865913 -g1,12924:6630773,11865913 -g1,12924:6303093,11865913 -(1,12924:6303093,11865913:0,0,0 -) -g1,12924:6630773,11865913 -) -k1,12925:6630773,11865913:0 -h1,12925:9792229,11865913:0,0,0 -k1,12925:32583029,11865913:22790800 -g1,12925:32583029,11865913 -) -(1,12936:6630773,12532091:25952256,410518,101187 -(1,12927:6630773,12532091:0,0,0 -g1,12927:6630773,12532091 -g1,12927:6630773,12532091 -g1,12927:6303093,12532091 -(1,12927:6303093,12532091:0,0,0 -) -g1,12927:6630773,12532091 -) -g1,12936:7579210,12532091 -g1,12936:10424521,12532091 -g1,12936:11372958,12532091 -g1,12936:14218269,12532091 -h1,12936:15798997,12532091:0,0,0 -k1,12936:32583029,12532091:16784032 -g1,12936:32583029,12532091 -) -(1,12936:6630773,13198269:25952256,379060,0 -h1,12936:6630773,13198269:0,0,0 -h1,12936:7263064,13198269:0,0,0 -k1,12936:32583028,13198269:25319964 -g1,12936:32583028,13198269 -) -(1,12936:6630773,13864447:25952256,379060,101187 -h1,12936:6630773,13864447:0,0,0 -g1,12936:7579210,13864447 -g1,12936:10740667,13864447 -h1,12936:12321395,13864447:0,0,0 -k1,12936:32583029,13864447:20261634 -g1,12936:32583029,13864447 -) -(1,12936:6630773,14530625:25952256,410518,101187 -h1,12936:6630773,14530625:0,0,0 -g1,12936:7579210,14530625 -g1,12936:7895356,14530625 -g1,12936:8211502,14530625 -g1,12936:8527648,14530625 -g1,12936:8843794,14530625 -g1,12936:9159940,14530625 -g1,12936:9476086,14530625 -g1,12936:9792232,14530625 -g1,12936:10108378,14530625 -g1,12936:10424524,14530625 -g1,12936:10740670,14530625 -g1,12936:11689107,14530625 -g1,12936:12953690,14530625 -g1,12936:13902127,14530625 -g1,12936:15482856,14530625 -g1,12936:16431293,14530625 -g1,12936:17063585,14530625 -g1,12936:18960459,14530625 -g1,12936:19276605,14530625 -g1,12936:19592751,14530625 -g1,12936:19908897,14530625 -k1,12936:19908897,14530625:0 -h1,12936:21805771,14530625:0,0,0 -k1,12936:32583029,14530625:10777258 -g1,12936:32583029,14530625 -) -(1,12936:6630773,15196803:25952256,388497,101187 -h1,12936:6630773,15196803:0,0,0 -g1,12936:7579210,15196803 -g1,12936:9476084,15196803 -g1,12936:9792230,15196803 -g1,12936:10108376,15196803 -g1,12936:10424522,15196803 -g1,12936:10740668,15196803 -g1,12936:11056814,15196803 -g1,12936:11689106,15196803 -g1,12936:13902126,15196803 -g1,12936:14218272,15196803 -g1,12936:16431292,15196803 -g1,12936:16747438,15196803 -g1,12936:18960458,15196803 -g1,12936:19592750,15196803 -g1,12936:22121916,15196803 -h1,12936:23070353,15196803:0,0,0 -k1,12936:32583029,15196803:9512676 -g1,12936:32583029,15196803 -) -(1,12936:6630773,15862981:25952256,404226,9436 -h1,12936:6630773,15862981:0,0,0 -g1,12936:7579210,15862981 -g1,12936:10740667,15862981 -g1,12936:11689104,15862981 -g1,12936:13902124,15862981 -g1,12936:14218270,15862981 -g1,12936:14534416,15862981 -h1,12936:16115144,15862981:0,0,0 -k1,12936:32583029,15862981:16467885 -g1,12936:32583029,15862981 -) -(1,12936:6630773,16529159:25952256,379060,0 -h1,12936:6630773,16529159:0,0,0 -g1,12936:7579210,16529159 -k1,12936:7579210,16529159:0 -h1,12936:8527648,16529159:0,0,0 -k1,12936:32583028,16529159:24055380 -g1,12936:32583028,16529159 -) -(1,12936:6630773,17195337:25952256,410518,107478 -h1,12936:6630773,17195337:0,0,0 -g1,12936:7579210,17195337 -g1,12936:10108376,17195337 -g1,12936:12321396,17195337 -g1,12936:12637542,17195337 -g1,12936:13269834,17195337 -g1,12936:15166709,17195337 -g1,12936:17063583,17195337 -g1,12936:18644312,17195337 -g1,12936:20225041,17195337 -g1,12936:21489625,17195337 -g1,12936:23070354,17195337 -g1,12936:24334938,17195337 -g1,12936:25599521,17195337 -g1,12936:26231813,17195337 -g1,12936:26864105,17195337 -h1,12936:27180251,17195337:0,0,0 -k1,12936:32583029,17195337:5402778 -g1,12936:32583029,17195337 -) -] -) -g1,12937:32583029,17302815 -g1,12937:6630773,17302815 -g1,12937:6630773,17302815 -g1,12937:32583029,17302815 -g1,12937:32583029,17302815 -) -h1,12937:6630773,17499423:0,0,0 -v1,12941:6630773,19389487:0,393216,0 -(1,12942:6630773,24143994:25952256,5147723,0 -g1,12942:6630773,24143994 -g1,12942:6303093,24143994 -r1,12976:6401397,24143994:98304,5147723,0 -g1,12942:6600626,24143994 -g1,12942:6797234,24143994 -[1,12942:6797234,24143994:25785795,5147723,0 -(1,12942:6797234,19810071:25785795,813800,267386 -(1,12941:6797234,19810071:0,813800,267386 -r1,12976:8134168,19810071:1336934,1081186,267386 -k1,12941:6797234,19810071:-1336934 -) -(1,12941:6797234,19810071:1336934,813800,267386 -) -k1,12941:8350493,19810071:216325 -k1,12941:8678173,19810071:327680 -k1,12941:10091185,19810071:216325 -k1,12941:12903391,19810071:216325 -k1,12941:14632941,19810071:216324 -k1,12941:15796917,19810071:216325 -k1,12941:18000949,19810071:216325 -k1,12941:19235048,19810071:216325 -k1,12941:20642818,19810071:216325 -k1,12941:23293788,19810071:216307 -k1,12941:27311856,19810071:216325 -k1,12941:28890675,19810071:216325 -k1,12941:31266411,19810071:216325 -k1,12942:32583029,19810071:0 -) -(1,12942:6797234,20651559:25785795,513147,134348 -k1,12941:9125018,20651559:185412 -k1,12941:11142817,20651559:185412 -k1,12941:12829004,20651559:185413 -k1,12941:15776759,20651559:185412 -k1,12941:18767767,20651559:185412 -k1,12941:21269877,20651559:185412 -k1,12941:22114582,20651559:185413 -k1,12941:23995410,20651559:185412 -k1,12941:24840114,20651559:185412 -k1,12941:27670559,20651559:185412 -k1,12941:30143179,20651559:185413 -k1,12941:32196367,20651559:185412 -k1,12941:32583029,20651559:0 -) -(1,12942:6797234,21493047:25785795,513147,134348 -k1,12941:7606166,21493047:209278 -k1,12941:9006890,21493047:209279 -k1,12941:10028814,21493047:209278 -k1,12941:10865927,21493047:209278 -k1,12941:14568929,21493047:209278 -k1,12941:17197142,21493047:209279 -k1,12941:18425505,21493047:209278 -k1,12941:20659845,21493047:209278 -k1,12941:21970128,21493047:209278 -k1,12941:22988777,21493047:209279 -k1,12941:27784920,21493047:209278 -k1,12941:29066367,21493047:209278 -k1,12941:32583029,21493047:0 -) -(1,12942:6797234,22334535:25785795,513147,134348 -k1,12941:8139477,22334535:237961 -k1,12941:9125204,22334535:237961 -k1,12941:12572463,22334535:237961 -k1,12941:13758075,22334535:237961 -k1,12941:17659499,22334535:237961 -k1,12941:20490064,22334535:237961 -k1,12941:22194721,22334535:237961 -k1,12941:24752001,22334535:237961 -k1,12941:25641390,22334535:237961 -k1,12941:28641694,22334535:237961 -k1,12942:32583029,22334535:0 -) -(1,12942:6797234,23176023:25785795,513147,126483 -k1,12941:7953642,23176023:237593 -k1,12941:10630486,23176023:237594 -k1,12941:12254165,23176023:237593 -k1,12941:12878420,23176023:237593 -k1,12941:13647511,23176023:237594 -k1,12941:16172311,23176023:237593 -k1,12941:19908871,23176023:237593 -k1,12941:20797892,23176023:237593 -k1,12941:22901951,23176023:237594 -k1,12941:25222278,23176023:237593 -k1,12941:28466663,23176023:237593 -k1,12941:30146704,23176023:237594 -k1,12941:31770383,23176023:237593 -k1,12941:32583029,23176023:0 -) -(1,12942:6797234,24017511:25785795,513147,126483 -g1,12941:8015548,24017511 -g1,12941:10480357,24017511 -g1,12941:12192812,24017511 -g1,12941:13153569,24017511 -g1,12941:14774929,24017511 -g1,12941:16165603,24017511 -k1,12942:32583029,24017511:15085079 -g1,12942:32583029,24017511 -) -] -g1,12942:32583029,24143994 -) -h1,12942:6630773,24143994:0,0,0 -v1,12946:6630773,26034058:0,393216,0 -(1,12947:6630773,33313029:25952256,7672187,0 -g1,12947:6630773,33313029 -g1,12947:6303093,33313029 -r1,12976:6401397,33313029:98304,7672187,0 -g1,12947:6600626,33313029 -g1,12947:6797234,33313029 -[1,12947:6797234,33313029:25785795,7672187,0 -(1,12947:6797234,26454642:25785795,813800,267386 -(1,12946:6797234,26454642:0,813800,267386 -r1,12976:8134168,26454642:1336934,1081186,267386 -k1,12946:6797234,26454642:-1336934 -) -(1,12946:6797234,26454642:1336934,813800,267386 -) -k1,12946:8369142,26454642:234974 -k1,12946:8696822,26454642:327680 -k1,12946:10128482,26454642:234973 -k1,12946:13325028,26454642:234974 -k1,12946:15073228,26454642:234974 -k1,12946:17087504,26454642:234974 -k1,12946:18341562,26454642:234973 -k1,12946:21622649,26454642:234974 -k1,12946:24636350,26454642:234974 -k1,12946:25632852,26454642:234974 -(1,12946:25632852,26454642:0,459977,115847 -r1,12976:27749677,26454642:2116825,575824,115847 -k1,12946:25632852,26454642:-2116825 -) -(1,12946:25632852,26454642:2116825,459977,115847 -k1,12946:25632852,26454642:3277 -h1,12946:27746400,26454642:0,411205,112570 -) -k1,12946:27984650,26454642:234973 -k1,12946:29411069,26454642:234974 -(1,12946:29411069,26454642:0,452978,115847 -r1,12976:32583029,26454642:3171960,568825,115847 -k1,12946:29411069,26454642:-3171960 -) -(1,12946:29411069,26454642:3171960,452978,115847 -k1,12946:29411069,26454642:3277 -h1,12946:32579752,26454642:0,411205,112570 -) -k1,12946:32583029,26454642:0 -) -(1,12947:6797234,27296130:25785795,513147,126483 -k1,12946:9377920,27296130:208938 -k1,12946:10238286,27296130:208938 -k1,12946:11217927,27296130:208938 -k1,12946:13861519,27296130:208929 -k1,12946:16058164,27296130:208938 -k1,12946:17128245,27296130:208938 -k1,12946:18533870,27296130:208938 -k1,12946:21008389,27296130:208939 -k1,12946:22730553,27296130:208938 -k1,12946:23555529,27296130:208938 -k1,12946:24179300,27296130:208928 -k1,12946:24919735,27296130:208938 -k1,12946:27891017,27296130:208939 -k1,12946:28751383,27296130:208938 -k1,12946:30244827,27296130:208938 -k1,12946:31966991,27296130:208938 -k1,12946:32583029,27296130:0 -) -(1,12947:6797234,28137618:25785795,513147,134348 -k1,12946:8648445,28137618:159071 -k1,12946:10509486,28137618:159071 -k1,12946:13740885,28137618:159071 -k1,12946:15573746,28137618:159071 -k1,12946:18495160,28137618:159071 -k1,12946:20096678,28137618:159071 -k1,12946:20871787,28137618:159071 -k1,12946:21764861,28137618:159071 -k1,12946:23120619,28137618:159071 -k1,12946:25718940,28137618:159071 -(1,12946:25718940,28137618:0,414482,115847 -r1,12976:31001171,28137618:5282231,530329,115847 -k1,12946:25718940,28137618:-5282231 -) -(1,12946:25718940,28137618:5282231,414482,115847 -k1,12946:25718940,28137618:3277 -h1,12946:30997894,28137618:0,411205,112570 -) -k1,12946:31160242,28137618:159071 -k1,12946:32583029,28137618:0 -) -(1,12947:6797234,28979106:25785795,513147,95026 -k1,12946:7982868,28979106:166549 -k1,12946:9455549,28979106:166548 -k1,12946:11084206,28979106:166549 -k1,12946:11910047,28979106:166549 -k1,12946:13095681,28979106:166549 -k1,12946:15156219,28979106:166548 -k1,12946:18349221,28979106:166549 -k1,12946:19167198,28979106:166549 -k1,12946:20081513,28979106:166549 -k1,12946:20603921,28979106:166548 -k1,12946:23265426,28979106:166549 -k1,12946:24118137,28979106:166549 -k1,12946:27263953,28979106:166549 -k1,12946:28378152,28979106:166548 -k1,12946:31923737,28979106:166549 -k1,12946:32583029,28979106:0 -) -(1,12947:6797234,29820594:25785795,513147,134348 -k1,12946:10603236,29820594:194968 -k1,12946:11989648,29820594:194967 -k1,12946:14366310,29820594:194968 -k1,12946:15220569,29820594:194967 -k1,12946:16924176,29820594:194968 -k1,12946:21030333,29820594:194968 -k1,12946:23737950,29820594:194967 -(1,12946:23737950,29820594:0,414482,115847 -r1,12976:26909910,29820594:3171960,530329,115847 -k1,12946:23737950,29820594:-3171960 -) -(1,12946:23737950,29820594:3171960,414482,115847 -k1,12946:23737950,29820594:3277 -h1,12946:26906633,29820594:0,411205,112570 -) -k1,12946:27104878,29820594:194968 -k1,12946:28722632,29820594:194967 -k1,12946:29603762,29820594:194968 -k1,12946:32583029,29820594:0 -) -(1,12947:6797234,30662082:25785795,513147,134348 -k1,12946:8025466,30662082:209147 -k1,12946:9972628,30662082:209147 -k1,12946:10841067,30662082:209147 -k1,12946:11816331,30662082:209148 -k1,12946:13991558,30662082:209147 -k1,12946:15270253,30662082:209147 -k1,12946:17214793,30662082:209147 -k1,12946:18110102,30662082:209147 -k1,12946:21351600,30662082:209147 -k1,12946:22845253,30662082:209147 -k1,12946:24073485,30662082:209147 -k1,12946:25647748,30662082:209148 -k1,12946:26516187,30662082:209147 -k1,12946:27744419,30662082:209147 -k1,12946:31234298,30662082:209147 -k1,12947:32583029,30662082:0 -) -(1,12947:6797234,31503570:25785795,513147,134348 -k1,12946:8891764,31503570:184156 -k1,12946:9607417,31503570:184156 -k1,12946:11519102,31503570:184156 -k1,12946:12354686,31503570:184156 -k1,12946:14132678,31503570:184156 -k1,12946:17490743,31503570:184156 -k1,12946:18878140,31503570:184156 -k1,12946:21633273,31503570:184156 -k1,12946:23366045,31503570:184156 -k1,12946:24569286,31503570:184156 -k1,12946:28364476,31503570:184156 -k1,12946:31391584,31503570:184156 -k1,12946:32583029,31503570:0 -) -(1,12947:6797234,32345058:25785795,513147,138281 -k1,12946:11189040,32345058:166700 -k1,12946:12641555,32345058:166699 -k1,12946:13827340,32345058:166700 -k1,12946:17130593,32345058:166700 -$1,12946:17130593,32345058 -$1,12946:17598520,32345058 -k1,12946:20162527,32345058:166700 -k1,12946:21520671,32345058:166699 -k1,12946:23289071,32345058:166700 -k1,12946:27231300,32345058:166700 -k1,12946:28728381,32345058:166700 -k1,12946:29914165,32345058:166699 -k1,12946:31923737,32345058:166700 -k1,12946:32583029,32345058:0 -) -(1,12947:6797234,33186546:25785795,505283,126483 -g1,12946:8015548,33186546 -g1,12946:9736523,33186546 -g1,12946:12116135,33186546 -g1,12946:13063130,33186546 -k1,12947:32583029,33186546:15756166 -g1,12947:32583029,33186546 -) -] -g1,12947:32583029,33313029 -) -h1,12947:6630773,33313029:0,0,0 -(1,12950:6630773,34678805:25952256,513147,134348 -h1,12949:6630773,34678805:983040,0,0 -k1,12949:9032558,34678805:222058 -k1,12949:10856316,34678805:222058 -k1,12949:16090567,34678805:222057 -k1,12949:17550600,34678805:222058 -k1,12949:18431950,34678805:222058 -k1,12949:20835702,34678805:222058 -k1,12949:21413619,34678805:222057 -k1,12949:24398020,34678805:222058 -k1,12949:26885658,34678805:222058 -k1,12949:28055367,34678805:222058 -k1,12949:28633284,34678805:222057 -k1,12949:30738191,34678805:222058 -k1,12949:32583029,34678805:0 -) -(1,12950:6630773,35520293:25952256,513147,134348 -g1,12949:7489294,35520293 -g1,12949:9676230,35520293 -g1,12949:10893233,35520293 -g1,12949:11623959,35520293 -g1,12949:12584716,35520293 -g1,12949:14965639,35520293 -g1,12949:15579711,35520293 -g1,12949:17861674,35520293 -(1,12949:17861674,35520293:0,414482,115847 -r1,12976:21033634,35520293:3171960,530329,115847 -k1,12949:17861674,35520293:-3171960 -) -(1,12949:17861674,35520293:3171960,414482,115847 -k1,12949:17861674,35520293:3277 -h1,12949:21030357,35520293:0,411205,112570 -) -g1,12949:21406533,35520293 -g1,12949:23491233,35520293 -g1,12949:24558814,35520293 -g1,12949:26155926,35520293 -g1,12949:27730756,35520293 -k1,12950:32583029,35520293:3096563 -g1,12950:32583029,35520293 -) -v1,12952:6630773,36710759:0,393216,0 -(1,12961:6630773,39018098:25952256,2700555,196608 -g1,12961:6630773,39018098 -g1,12961:6630773,39018098 -g1,12961:6434165,39018098 -(1,12961:6434165,39018098:0,2700555,196608 -r1,12976:32779637,39018098:26345472,2897163,196608 -k1,12961:6434165,39018098:-26345472 -) -(1,12961:6434165,39018098:26345472,2700555,196608 -[1,12961:6630773,39018098:25952256,2503947,0 -(1,12954:6630773,36918377:25952256,404226,101187 -(1,12953:6630773,36918377:0,0,0 -g1,12953:6630773,36918377 -g1,12953:6630773,36918377 -g1,12953:6303093,36918377 -(1,12953:6303093,36918377:0,0,0 -) -g1,12953:6630773,36918377 -) -k1,12954:6630773,36918377:0 -h1,12954:12953687,36918377:0,0,0 -k1,12954:32583029,36918377:19629342 -g1,12954:32583029,36918377 -) -(1,12960:6630773,37584555:25952256,410518,31456 -(1,12956:6630773,37584555:0,0,0 -g1,12956:6630773,37584555 -g1,12956:6630773,37584555 -g1,12956:6303093,37584555 -(1,12956:6303093,37584555:0,0,0 -) -g1,12956:6630773,37584555 -) -g1,12960:7579210,37584555 -h1,12960:10740667,37584555:0,0,0 -k1,12960:32583029,37584555:21842362 -g1,12960:32583029,37584555 -) -(1,12960:6630773,38250733:25952256,404226,6290 -h1,12960:6630773,38250733:0,0,0 -g1,12960:7579210,38250733 -g1,12960:7895356,38250733 -g1,12960:8211502,38250733 -g1,12960:8527648,38250733 -g1,12960:8843794,38250733 -g1,12960:9159940,38250733 -g1,12960:9476086,38250733 -g1,12960:9792232,38250733 -g1,12960:10108378,38250733 -g1,12960:13269835,38250733 -g1,12960:13585981,38250733 -g1,12960:13902127,38250733 -g1,12960:14218273,38250733 -g1,12960:14534419,38250733 -g1,12960:14850565,38250733 -g1,12960:15166711,38250733 -g1,12960:15482857,38250733 -g1,12960:15799003,38250733 -g1,12960:16115149,38250733 -g1,12960:16431295,38250733 -h1,12960:18644315,38250733:0,0,0 -k1,12960:32583029,38250733:13938714 -g1,12960:32583029,38250733 -) -(1,12960:6630773,38916911:25952256,404226,101187 -h1,12960:6630773,38916911:0,0,0 -g1,12960:7579210,38916911 -g1,12960:13269833,38916911 -g1,12960:13585979,38916911 -g1,12960:13902125,38916911 -g1,12960:14218271,38916911 -g1,12960:14534417,38916911 -g1,12960:14850563,38916911 -h1,12960:18644311,38916911:0,0,0 -k1,12960:32583029,38916911:13938718 -g1,12960:32583029,38916911 -) -] -) -g1,12961:32583029,39018098 -g1,12961:6630773,39018098 -g1,12961:6630773,39018098 -g1,12961:32583029,39018098 -g1,12961:32583029,39018098 -) -h1,12961:6630773,39214706:0,0,0 -(1,12965:6630773,40580482:25952256,513147,134348 -h1,12964:6630773,40580482:983040,0,0 -k1,12964:8978054,40580482:167554 -k1,12964:11228341,40580482:167553 -k1,12964:11927392,40580482:167554 -k1,12964:13029488,40580482:167553 -k1,12964:13848470,40580482:167554 -k1,12964:14371884,40580482:167554 -k1,12964:16698193,40580482:167553 -k1,12964:19840426,40580482:167554 -k1,12964:21985856,40580482:167553 -k1,12964:22812702,40580482:167554 -k1,12964:24993522,40580482:167554 -k1,12964:26507185,40580482:167553 -k1,12964:28068690,40580482:167554 -k1,12964:29255328,40580482:167553 -k1,12964:30729015,40580482:167554 -k1,12964:32583029,40580482:0 -) -(1,12965:6630773,41421970:25952256,513147,134348 -k1,12964:8969205,41421970:179676 -(1,12964:8969205,41421970:0,452978,115847 -r1,12976:12141165,41421970:3171960,568825,115847 -k1,12964:8969205,41421970:-3171960 -) -(1,12964:8969205,41421970:3171960,452978,115847 -k1,12964:8969205,41421970:3277 -h1,12964:12137888,41421970:0,411205,112570 -) -k1,12964:12320841,41421970:179676 -k1,12964:14423344,41421970:179677 -k1,12964:15622105,41421970:179676 -k1,12964:17539796,41421970:179676 -k1,12964:18378764,41421970:179676 -k1,12964:19577526,41421970:179677 -k1,12964:22452698,41421970:179676 -k1,12964:24145600,41421970:179676 -k1,12964:26023314,41421970:179676 -k1,12964:27222076,41421970:179677 -k1,12964:31167451,41421970:179676 -k1,12965:32583029,41421970:0 -) -(1,12965:6630773,42263458:25952256,513147,115847 -k1,12964:8161784,42263458:222257 -k1,12964:8915537,42263458:222256 -k1,12964:9908497,42263458:222257 -k1,12964:13467846,42263458:222256 -k1,12964:15584093,42263458:222257 -k1,12964:18363565,42263458:222257 -k1,12964:19979772,42263458:222256 -(1,12964:19979772,42263458:0,459977,115847 -r1,12976:22800021,42263458:2820249,575824,115847 -k1,12964:19979772,42263458:-2820249 -) -(1,12964:19979772,42263458:2820249,459977,115847 -k1,12964:19979772,42263458:3277 -h1,12964:22796744,42263458:0,411205,112570 -) -k1,12964:23229372,42263458:222257 -k1,12964:24643073,42263458:222256 -k1,12964:25884415,42263458:222257 -k1,12964:28348002,42263458:222256 -k1,12964:30424273,42263458:222257 -k1,12965:32583029,42263458:0 -) -(1,12965:6630773,43104946:25952256,513147,134348 -(1,12964:6630773,43104946:0,452978,115847 -r1,12976:9099310,43104946:2468537,568825,115847 -k1,12964:6630773,43104946:-2468537 -) -(1,12964:6630773,43104946:2468537,452978,115847 -k1,12964:6630773,43104946:3277 -h1,12964:9096033,43104946:0,411205,112570 -) -k1,12964:9461185,43104946:188205 -k1,12964:11572216,43104946:188205 -k1,12964:12779505,43104946:188204 -k1,12964:14705725,43104946:188205 -k1,12964:15553222,43104946:188205 -k1,12964:16760512,43104946:188205 -k1,12964:19644212,43104946:188204 -k1,12964:21345643,43104946:188205 -k1,12964:23231886,43104946:188205 -k1,12964:24439176,43104946:188205 -k1,12964:28393079,43104946:188204 -k1,12964:31092624,43104946:188205 -k1,12964:31812326,43104946:188205 -k1,12964:32583029,43104946:0 -) -(1,12965:6630773,43946434:25952256,513147,115847 -g1,12964:9337409,43946434 -g1,12964:11430628,43946434 -g1,12964:14187072,43946434 -g1,12964:15780252,43946434 -(1,12964:15780252,43946434:0,452978,115847 -r1,12976:18952212,43946434:3171960,568825,115847 -k1,12964:15780252,43946434:-3171960 -) -(1,12964:15780252,43946434:3171960,452978,115847 -k1,12964:15780252,43946434:3277 -h1,12964:18948935,43946434:0,411205,112570 -) -k1,12965:32583029,43946434:13250053 -g1,12965:32583029,43946434 -) -(1,12967:6630773,44787922:25952256,505283,126483 -h1,12966:6630773,44787922:983040,0,0 -g1,12966:8282935,44787922 -g1,12966:9013661,44787922 -g1,12966:10498706,44787922 -g1,12966:13327895,44787922 -g1,12966:14178552,44787922 -g1,12966:16198371,44787922 -g1,12966:17416685,44787922 -g1,12966:20247185,44787922 -g1,12966:21097842,44787922 -g1,12966:22044837,44787922 -g1,12966:23757292,44787922 -g1,12966:24572559,44787922 -g1,12966:25790873,44787922 -g1,12966:27089796,44787922 -g1,12966:27940453,44787922 -(1,12966:27940453,44787922:0,452978,115847 -r1,12976:29705566,44787922:1765113,568825,115847 -k1,12966:27940453,44787922:-1765113 -) -(1,12966:27940453,44787922:1765113,452978,115847 -k1,12966:27940453,44787922:3277 -h1,12966:29702289,44787922:0,411205,112570 -) -g1,12966:29904795,44787922 -g1,12966:30786909,44787922 -(1,12966:30786909,44787922:0,452978,115847 -r1,12976:32200310,44787922:1413401,568825,115847 -k1,12966:30786909,44787922:-1413401 -) -(1,12966:30786909,44787922:1413401,452978,115847 -k1,12966:30786909,44787922:3277 -h1,12966:32197033,44787922:0,411205,112570 -) -k1,12967:32583029,44787922:209049 -g1,12967:32583029,44787922 -) -v1,12969:6630773,45978388:0,393216,0 -] -(1,12976:32583029,45706769:0,0,0 -g1,12976:32583029,45706769 -) -) -] -(1,12976:6630773,47279633:25952256,0,0 -h1,12976:6630773,47279633:25952256,0,0 -) -] -(1,12976:4262630,4025873:0,0,0 -[1,12976:-473656,4025873:0,0,0 -(1,12976:-473656,-710413:0,0,0 -(1,12976:-473656,-710413:0,0,0 -g1,12976:-473656,-710413 -) -g1,12976:-473656,-710413 -) -] -) -] -!29215 -}222 -Input:1956:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1957:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1958:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1959:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1960:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1961:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1962:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1963:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1964:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1965:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!952 -{223 -[1,13033:4262630,47279633:28320399,43253760,0 -(1,13033:4262630,4025873:0,0,0 -[1,13033:-473656,4025873:0,0,0 -(1,13033:-473656,-710413:0,0,0 -(1,13033:-473656,-644877:0,0,0 -k1,13033:-473656,-644877:-65536 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) -(1,13033:-473656,4736287:0,0,0 -k1,13033:-473656,4736287:5209943 +] +) +) +) +] +[1,12543:3078558,4812305:0,0,0 +(1,12543:3078558,2439708:0,1703936,0 +g1,12543:29030814,2439708 +g1,12543:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,12543:36151628,1915420:16384,1179648,0 ) -g1,13033:-473656,-710413 +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] ) -[1,13033:6630773,47279633:25952256,43253760,0 -[1,13033:6630773,4812305:25952256,786432,0 -(1,13033:6630773,4812305:25952256,513147,126483 -(1,13033:6630773,4812305:25952256,513147,126483 -g1,13033:3078558,4812305 -[1,13033:3078558,4812305:0,0,0 -(1,13033:3078558,2439708:0,1703936,0 -k1,13033:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,13033:2537886,2439708:1179648,16384,0 +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,12543:37855564,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,13033:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +k1,12543:3078556,2439708:-34777008 +) +] +[1,12543:3078558,4812305:0,0,0 +(1,12543:3078558,49800853:0,16384,2228224 +k1,12543:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,12543:2537886,49800853:1179648,16384,0 +) +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,12543:3078558,51504789:16384,1179648,0 +) +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 ) ] ) ) ) ] -[1,13033:3078558,4812305:0,0,0 -(1,13033:3078558,2439708:0,1703936,0 -g1,13033:29030814,2439708 -g1,13033:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,13033:36151628,1915420:16384,1179648,0 +[1,12543:3078558,4812305:0,0,0 +(1,12543:3078558,49800853:0,16384,2228224 +g1,12543:29030814,49800853 +g1,12543:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,12543:36151628,51504789:16384,1179648,0 +) +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 +) +] +) +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,12543:37855564,49800853:1179648,16384,0 +) +) +k1,12543:3078556,49800853:-34777008 +) +] +g1,12543:6630773,4812305 +g1,12543:6630773,4812305 +g1,12543:8691224,4812305 +g1,12543:10768059,4812305 +g1,12543:11570219,4812305 +g1,12543:12219025,4812305 +k1,12543:31387653,4812305:19168628 +) +) +] +[1,12543:6630773,45706769:25952256,40108032,0 +(1,12543:6630773,45706769:25952256,40108032,0 +(1,12543:6630773,45706769:0,0,0 +g1,12543:6630773,45706769 +) +[1,12543:6630773,45706769:25952256,40108032,0 +(1,12483:6630773,6254097:25952256,513147,134348 +k1,12482:8110707,6254097:195428 +k1,12482:10335130,6254097:195428 +k1,12482:11580445,6254097:195428 +k1,12482:14054561,6254097:195429 +h1,12482:15423608,6254097:0,0,0 +k1,12482:15619036,6254097:195428 +k1,12482:16623834,6254097:195428 +k1,12482:18317415,6254097:195428 +h1,12482:19512792,6254097:0,0,0 +k1,12482:19708220,6254097:195428 +k1,12482:20851299,6254097:195428 +k1,12482:23164195,6254097:195428 +k1,12482:24168993,6254097:195428 +k1,12482:25383507,6254097:195429 +k1,12482:26671420,6254097:195428 +k1,12482:27526140,6254097:195428 +k1,12482:29709275,6254097:195428 +k1,12482:32583029,6254097:0 +) +(1,12483:6630773,7119177:25952256,513147,134348 +g1,12482:8021447,7119177 +g1,12482:10499363,7119177 +h1,12482:11469951,7119177:0,0,0 +g1,12482:11669180,7119177 +g1,12482:12677779,7119177 +g1,12482:14375161,7119177 +h1,12482:15570538,7119177:0,0,0 +g1,12482:15769767,7119177 +g1,12482:16916647,7119177 +g1,12482:20107595,7119177 +g1,12482:20966116,7119177 +g1,12482:22673984,7119177 +g1,12482:23965698,7119177 +g1,12482:24780965,7119177 +g1,12482:26967901,7119177 +k1,12483:32583029,7119177:3506835 +g1,12483:32583029,7119177 +) +v1,12485:6630773,7804032:0,393216,0 +(1,12489:6630773,8144715:25952256,733899,196608 +g1,12489:6630773,8144715 +g1,12489:6630773,8144715 +g1,12489:6434165,8144715 +(1,12489:6434165,8144715:0,733899,196608 +r1,12543:32779637,8144715:26345472,930507,196608 +k1,12489:6434165,8144715:-26345472 +) +(1,12489:6434165,8144715:26345472,733899,196608 +[1,12489:6630773,8144715:25952256,537291,0 +(1,12487:6630773,8038469:25952256,431045,106246 +(1,12486:6630773,8038469:0,0,0 +g1,12486:6630773,8038469 +g1,12486:6630773,8038469 +g1,12486:6303093,8038469 +(1,12486:6303093,8038469:0,0,0 +) +g1,12486:6630773,8038469 +) +k1,12487:6630773,8038469:0 +g1,12487:12273990,8038469 +g1,12487:12937898,8038469 +g1,12487:13601806,8038469 +g1,12487:15593530,8038469 +g1,12487:16257438,8038469 +g1,12487:18249162,8038469 +g1,12487:19908932,8038469 +g1,12487:20572840,8038469 +h1,12487:22232610,8038469:0,0,0 +k1,12487:32583029,8038469:10350419 +g1,12487:32583029,8038469 +) +] +) +g1,12489:32583029,8144715 +g1,12489:6630773,8144715 +g1,12489:6630773,8144715 +g1,12489:32583029,8144715 +g1,12489:32583029,8144715 +) +h1,12489:6630773,8341323:0,0,0 +v1,12493:6630773,9206403:0,393216,0 +(1,12507:6630773,23237869:25952256,14424682,0 +g1,12507:6630773,23237869 +g1,12507:6237557,23237869 +r1,12543:6368629,23237869:131072,14424682,0 +g1,12507:6567858,23237869 +g1,12507:6764466,23237869 +[1,12507:6764466,23237869:25818563,14424682,0 +(1,12494:6764466,9478880:25818563,665693,196608 +(1,12493:6764466,9478880:0,665693,196608 +r1,12543:8010564,9478880:1246098,862301,196608 +k1,12493:6764466,9478880:-1246098 +) +(1,12493:6764466,9478880:1246098,665693,196608 +) +k1,12493:8244182,9478880:233618 +k1,12493:9562111,9478880:327680 +k1,12493:12915897,9478880:233617 +(1,12493:12915897,9478880:0,452978,115847 +r1,12543:14681010,9478880:1765113,568825,115847 +k1,12493:12915897,9478880:-1765113 +) +(1,12493:12915897,9478880:1765113,452978,115847 +k1,12493:12915897,9478880:3277 +h1,12493:14677733,9478880:0,411205,112570 +) +k1,12493:14914628,9478880:233618 +k1,12493:16339690,9478880:233617 +(1,12493:16339690,9478880:0,452978,115847 +r1,12543:19863362,9478880:3523672,568825,115847 +k1,12493:16339690,9478880:-3523672 +) +(1,12493:16339690,9478880:3523672,452978,115847 +k1,12493:16339690,9478880:3277 +h1,12493:19860085,9478880:0,411205,112570 +) +k1,12493:20096980,9478880:233618 +k1,12493:22341242,9478880:233617 +k1,12493:22989668,9478880:233583 +k1,12493:25686784,9478880:233618 +k1,12493:27204907,9478880:233617 +k1,12493:29136563,9478880:233618 +k1,12493:31105573,9478880:233617 +k1,12493:31753999,9478880:233583 +k1,12494:32583029,9478880:0 +) +(1,12494:6764466,10343960:25818563,505283,134348 +k1,12493:10334033,10343960:258688 +k1,12493:11571175,10343960:258689 +k1,12493:16146720,10343960:258688 +k1,12493:19355839,10343960:258688 +k1,12493:20423897,10343960:258688 +k1,12493:21701671,10343960:258689 +k1,12493:24195792,10343960:258688 +k1,12493:25725878,10343960:258688 +k1,12493:28164950,10343960:258689 +k1,12493:29171404,10343960:258688 +k1,12493:31298523,10343960:258688 +k1,12494:32583029,10343960:0 +) +(1,12494:6764466,11209040:25818563,513147,126483 +(1,12493:6764466,11209040:0,452978,115847 +r1,12543:9233003,11209040:2468537,568825,115847 +k1,12493:6764466,11209040:-2468537 +) +(1,12493:6764466,11209040:2468537,452978,115847 +k1,12493:6764466,11209040:3277 +h1,12493:9229726,11209040:0,411205,112570 +) +k1,12493:9483429,11209040:250426 +k1,12493:12518479,11209040:250425 +k1,12493:13584173,11209040:250426 +k1,12493:14900870,11209040:250426 +k1,12493:18666646,11209040:250425 +k1,12493:21212143,11209040:250426 +k1,12493:22228684,11209040:250425 +k1,12493:23498195,11209040:250426 +k1,12493:27555607,11209040:250426 +k1,12493:30945862,11209040:250425 +k1,12493:31812326,11209040:250426 +k1,12494:32583029,11209040:0 +) +(1,12494:6764466,12074120:25818563,513147,134348 +k1,12493:7416766,12074120:237457 +k1,12493:9787458,12074120:237495 +k1,12493:11405797,12074120:237495 +k1,12493:12174789,12074120:237495 +k1,12493:14574972,12074120:237495 +k1,12493:16941732,12074120:237495 +k1,12493:18198312,12074120:237495 +k1,12493:19802888,12074120:237495 +k1,12493:20988035,12074120:237496 +k1,12493:23911851,12074120:237495 +k1,12493:26439174,12074120:237495 +k1,12493:27822894,12074120:237495 +k1,12493:29804302,12074120:237495 +k1,12493:32583029,12074120:0 +) +(1,12494:6764466,12939200:25818563,513147,134348 +k1,12493:7782299,12939200:256305 +k1,12493:8453390,12939200:256248 +k1,12493:11735492,12939200:256305 +k1,12493:16415477,12939200:256305 +k1,12493:19755906,12939200:256305 +k1,12493:21707627,12939200:256305 +k1,12493:22781821,12939200:256305 +k1,12493:24432077,12939200:256305 +k1,12493:25820189,12939200:256305 +k1,12493:26491280,12939200:256248 +k1,12493:28707111,12939200:256305 +k1,12493:29831768,12939200:256305 +k1,12493:31192355,12939200:256305 +k1,12493:32583029,12939200:0 +) +(1,12494:6764466,13804280:25818563,513147,134348 +k1,12493:8035952,13804280:252401 +k1,12493:10131225,13804280:252401 +k1,12493:11042918,13804280:252401 +k1,12493:12066022,13804280:252401 +k1,12493:14873016,13804280:252401 +k1,12493:16392883,13804280:252401 +k1,12493:17001144,13804280:252401 +k1,12493:19938556,13804280:252402 +k1,12493:21008846,13804280:252401 +k1,12493:24351270,13804280:252401 +k1,12493:25219709,13804280:252401 +k1,12493:27750797,13804280:252401 +h1,12493:28721385,13804280:0,0,0 +k1,12493:28973786,13804280:252401 +k1,12493:30035557,13804280:252401 +k1,12493:31786111,13804280:252401 +h1,12493:32583029,13804280:0,0,0 +k1,12493:32583029,13804280:0 +) +(1,12494:6764466,14669360:25818563,513147,134348 +k1,12493:7941478,14669360:229361 +k1,12493:9668337,14669360:229361 +k1,12493:10766049,14669360:229360 +k1,12493:12099692,14669360:229361 +k1,12493:13837036,14669360:229361 +k1,12493:15333863,14669360:229361 +k1,12493:16582309,14669360:229361 +k1,12493:19743094,14669360:229360 +k1,12493:20631747,14669360:229361 +k1,12493:21631811,14669360:229361 +k1,12493:23820698,14669360:229361 +k1,12493:25444010,14669360:229361 +k1,12493:28127693,14669360:229360 +(1,12493:28127693,14669360:0,452978,115847 +r1,12543:29892806,14669360:1765113,568825,115847 +k1,12493:28127693,14669360:-1765113 +) +(1,12493:28127693,14669360:1765113,452978,115847 +k1,12493:28127693,14669360:3277 +h1,12493:29889529,14669360:0,411205,112570 +) +k1,12493:30295837,14669360:229361 +k1,12493:31478747,14669360:229361 +k1,12493:32583029,14669360:0 +) +(1,12494:6764466,15534440:25818563,513147,115847 +k1,12493:8048823,15534440:191872 +(1,12493:8048823,15534440:0,452978,115847 +r1,12543:10517360,15534440:2468537,568825,115847 +k1,12493:8048823,15534440:-2468537 +) +(1,12493:8048823,15534440:2468537,452978,115847 +k1,12493:8048823,15534440:3277 +h1,12493:10514083,15534440:0,411205,112570 +) +k1,12493:10709231,15534440:191871 +k1,12493:12092548,15534440:191872 +(1,12493:12092548,15534440:0,452978,115847 +r1,12543:16319644,15534440:4227096,568825,115847 +k1,12493:12092548,15534440:-4227096 +) +(1,12493:12092548,15534440:4227096,452978,115847 +k1,12493:12092548,15534440:3277 +h1,12493:16316367,15534440:0,411205,112570 +) +k1,12493:16511515,15534440:191871 +k1,12493:17354815,15534440:191872 +k1,12493:19750662,15534440:191871 +k1,12493:22217944,15534440:191872 +k1,12493:26390473,15534440:191872 +k1,12493:27857019,15534440:191871 +k1,12493:29067976,15534440:191872 +k1,12493:30756034,15534440:191871 +k1,12493:31563944,15534440:191872 +k1,12493:32583029,15534440:0 +) +(1,12494:6764466,16399520:25818563,505283,126483 +g1,12493:8934363,16399520 +g1,12493:11002023,16399520 +g1,12493:11852680,16399520 +g1,12493:14725123,16399520 +g1,12493:16472968,16399520 +g1,12493:17203694,16399520 +g1,12493:19891325,16399520 +g1,12493:22869281,16399520 +g1,12493:23830038,16399520 +(1,12493:23830038,16399520:0,452978,115847 +r1,12543:25595151,16399520:1765113,568825,115847 +k1,12493:23830038,16399520:-1765113 +) +(1,12493:23830038,16399520:1765113,452978,115847 +k1,12493:23830038,16399520:3277 +h1,12493:25591874,16399520:0,411205,112570 +) +k1,12494:32583029,16399520:6814208 +g1,12494:32583029,16399520 +) +v1,12496:6764466,17084375:0,393216,0 +(1,12503:6764466,19446593:25818563,2755434,196608 +g1,12503:6764466,19446593 +g1,12503:6764466,19446593 +g1,12503:6567858,19446593 +(1,12503:6567858,19446593:0,2755434,196608 +r1,12543:32779637,19446593:26211779,2952042,196608 +k1,12503:6567857,19446593:-26211780 +) +(1,12503:6567858,19446593:26211779,2755434,196608 +[1,12503:6764466,19446593:25818563,2558826,0 +(1,12498:6764466,17312206:25818563,424439,79822 +(1,12497:6764466,17312206:0,0,0 +g1,12497:6764466,17312206 +g1,12497:6764466,17312206 +g1,12497:6436786,17312206 +(1,12497:6436786,17312206:0,0,0 +) +g1,12497:6764466,17312206 +) +g1,12498:7428374,17312206 +g1,12498:8424236,17312206 +k1,12498:8424236,17312206:0 +h1,12498:11411822,17312206:0,0,0 +k1,12498:32583030,17312206:21171208 +g1,12498:32583030,17312206 +) +(1,12499:6764466,17997061:25818563,424439,79822 +h1,12499:6764466,17997061:0,0,0 +k1,12499:6764466,17997061:0 +h1,12499:9420098,17997061:0,0,0 +k1,12499:32583030,17997061:23162932 +g1,12499:32583030,17997061 +) +(1,12500:6764466,18681916:25818563,424439,79822 +h1,12500:6764466,18681916:0,0,0 +k1,12500:6764466,18681916:0 +h1,12500:11079867,18681916:0,0,0 +k1,12500:32583029,18681916:21503162 +g1,12500:32583029,18681916 +) +(1,12501:6764466,19366771:25818563,424439,79822 +h1,12501:6764466,19366771:0,0,0 +k1,12501:6764466,19366771:0 +h1,12501:8756190,19366771:0,0,0 +k1,12501:32583030,19366771:23826840 +g1,12501:32583030,19366771 +) +] +) +g1,12503:32583029,19446593 +g1,12503:6764466,19446593 +g1,12503:6764466,19446593 +g1,12503:32583029,19446593 +g1,12503:32583029,19446593 +) +h1,12503:6764466,19643201:0,0,0 +(1,12507:6764466,20508281:25818563,513147,126483 +h1,12506:6764466,20508281:983040,0,0 +k1,12506:10690426,20508281:214656 +(1,12506:10690426,20508281:0,452978,115847 +r1,12543:13158963,20508281:2468537,568825,115847 +k1,12506:10690426,20508281:-2468537 +) +(1,12506:10690426,20508281:2468537,452978,115847 +k1,12506:10690426,20508281:3277 +h1,12506:13155686,20508281:0,411205,112570 +) +k1,12506:13547288,20508281:214655 +(1,12506:13547288,20508281:0,452978,115847 +r1,12543:17774384,20508281:4227096,568825,115847 +k1,12506:13547288,20508281:-4227096 +) +(1,12506:13547288,20508281:4227096,452978,115847 +k1,12506:13547288,20508281:3277 +h1,12506:17771107,20508281:0,411205,112570 +) +k1,12506:17989040,20508281:214656 +k1,12506:19395141,20508281:214656 +(1,12506:19395141,20508281:0,452978,115847 +r1,12543:21160254,20508281:1765113,568825,115847 +k1,12506:19395141,20508281:-1765113 +) +(1,12506:19395141,20508281:1765113,452978,115847 +k1,12506:19395141,20508281:3277 +h1,12506:21156977,20508281:0,411205,112570 +) +k1,12506:21374909,20508281:214655 +k1,12506:22581125,20508281:214656 +k1,12506:24149754,20508281:214655 +k1,12506:27221124,20508281:214656 +k1,12506:29017164,20508281:214656 +k1,12506:30516325,20508281:214655 +k1,12506:31835263,20508281:214656 +k1,12506:32583029,20508281:0 +) +(1,12507:6764466,21373361:25818563,505283,134348 +k1,12506:8465002,21373361:187310 +k1,12506:10350350,21373361:187310 +k1,12506:11406012,21373361:187310 +k1,12506:12584882,21373361:187310 +k1,12506:13388231,21373361:187311 +k1,12506:15462978,21373361:187310 +k1,12506:17472844,21373361:187310 +k1,12506:18679239,21373361:187310 +k1,12506:20255912,21373361:187310 +k1,12506:23583052,21373361:187310 +k1,12506:24386400,21373361:187310 +k1,12506:25344413,21373361:187310 +k1,12506:27491250,21373361:187311 +k1,12506:29888434,21373361:187310 +k1,12506:31406125,21373361:187310 +k1,12506:32051532,21373361:187310 +k1,12506:32583029,21373361:0 +) +(1,12507:6764466,22238441:25818563,505283,134348 +k1,12506:10466535,22238441:176232 +k1,12506:13427393,22238441:176233 +k1,12506:14622710,22238441:176232 +k1,12506:17730367,22238441:176232 +k1,12506:19918554,22238441:176232 +k1,12506:20839931,22238441:176233 +k1,12506:21667591,22238441:176232 +k1,12506:24277830,22238441:176232 +k1,12506:25473147,22238441:176232 +k1,12506:27038743,22238441:176233 +k1,12506:30168683,22238441:176232 +k1,12506:32583029,22238441:0 +) +(1,12507:6764466,23103521:25818563,513147,134348 +g1,12506:8531316,23103521 +g1,12506:9749630,23103521 +g1,12506:11908385,23103521 +g1,12506:13805652,23103521 +g1,12506:17442900,23103521 +g1,12506:20528990,23103521 +g1,12506:23512844,23103521 +g1,12506:24703633,23103521 +g1,12506:25969133,23103521 +k1,12507:32583029,23103521:3656256 +g1,12507:32583029,23103521 +) +] +g1,12507:32583029,23237869 +) +h1,12507:6630773,23237869:0,0,0 +(1,12509:6630773,25354687:25952256,555811,139133 +(1,12509:6630773,25354687:2450326,534184,12975 +g1,12509:6630773,25354687 +g1,12509:9081099,25354687 +) +g1,12509:12629350,25354687 +$1,12509:12629350,25354687 +$1,12509:13144791,25354687 +g1,12509:13369711,25354687 +g1,12509:14936939,25354687 +g1,12509:19309895,25354687 +$1,12509:19309895,25354687 +$1,12509:19813801,25354687 +k1,12509:32583029,25354687:12769228 +g1,12509:32583029,25354687 +) +(1,12515:6630773,26612983:25952256,513147,126483 +k1,12514:7773109,26612983:188787 +k1,12514:9054382,26612983:188788 +k1,12514:10262254,26612983:188787 +k1,12514:12104514,26612983:188787 +k1,12514:15319099,26612983:188788 +k1,12514:16194048,26612983:188787 +k1,12514:17330486,26612983:188787 +k1,12514:20529998,26612983:188788 +$1,12514:20529998,26612983 +$1,12514:20974987,26612983 +k1,12514:21163774,26612983:188787 +k1,12514:22424730,26612983:188787 +k1,12514:25510865,26612983:188788 +k1,12514:28089095,26612983:188787 +k1,12514:29296967,26612983:188787 +k1,12514:30578240,26612983:188788 +k1,12514:31426319,26612983:188787 +k1,12514:32583029,26612983:0 +) +(1,12515:6630773,27478063:25952256,513147,134348 +g1,12514:7489294,27478063 +g1,12514:9385250,27478063 +g1,12514:12369104,27478063 +g1,12514:13329861,27478063 +g1,12514:15956544,27478063 +g1,12514:17347218,27478063 +k1,12515:32583029,27478063:11989813 +g1,12515:32583029,27478063 +) +v1,12517:6630773,28162918:0,393216,0 +(1,12530:6630773,30924958:25952256,3155256,196608 +g1,12530:6630773,30924958 +g1,12530:6630773,30924958 +g1,12530:6434165,30924958 +(1,12530:6434165,30924958:0,3155256,196608 +r1,12543:32779637,30924958:26345472,3351864,196608 +k1,12530:6434165,30924958:-26345472 +) +(1,12530:6434165,30924958:26345472,3155256,196608 +[1,12530:6630773,30924958:25952256,2958648,0 +(1,12519:6630773,28397355:25952256,431045,106246 +(1,12518:6630773,28397355:0,0,0 +g1,12518:6630773,28397355 +g1,12518:6630773,28397355 +g1,12518:6303093,28397355 +(1,12518:6303093,28397355:0,0,0 +) +g1,12518:6630773,28397355 +) +k1,12519:6630773,28397355:0 +g1,12519:8622497,28397355 +g1,12519:9286405,28397355 +g1,12519:13269853,28397355 +g1,12519:13933761,28397355 +g1,12519:14597669,28397355 +g1,12519:18249163,28397355 +g1,12519:20572841,28397355 +g1,12519:21236749,28397355 +h1,12519:24556288,28397355:0,0,0 +k1,12519:32583029,28397355:8026741 +g1,12519:32583029,28397355 +) +(1,12523:6630773,29213282:25952256,424439,79822 +(1,12521:6630773,29213282:0,0,0 +g1,12521:6630773,29213282 +g1,12521:6630773,29213282 +g1,12521:6303093,29213282 +(1,12521:6303093,29213282:0,0,0 +) +g1,12521:6630773,29213282 +) +g1,12523:7626635,29213282 +g1,12523:8954451,29213282 +h1,12523:11942036,29213282:0,0,0 +k1,12523:32583028,29213282:20640992 +g1,12523:32583028,29213282 +) +(1,12525:6630773,30029209:25952256,431045,106246 +(1,12524:6630773,30029209:0,0,0 +g1,12524:6630773,30029209 +g1,12524:6630773,30029209 +g1,12524:6303093,30029209 +(1,12524:6303093,30029209:0,0,0 +) +g1,12524:6630773,30029209 +) +k1,12525:6630773,30029209:0 +g1,12525:8622497,30029209 +g1,12525:9286405,30029209 +g1,12525:13269853,30029209 +g1,12525:13933761,30029209 +g1,12525:14597669,30029209 +g1,12525:18249163,30029209 +g1,12525:20572841,30029209 +g1,12525:21236749,30029209 +h1,12525:24888242,30029209:0,0,0 +k1,12525:32583029,30029209:7694787 +g1,12525:32583029,30029209 +) +(1,12529:6630773,30845136:25952256,424439,79822 +(1,12527:6630773,30845136:0,0,0 +g1,12527:6630773,30845136 +g1,12527:6630773,30845136 +g1,12527:6303093,30845136 +(1,12527:6303093,30845136:0,0,0 +) +g1,12527:6630773,30845136 +) +g1,12529:7626635,30845136 +g1,12529:8954451,30845136 +h1,12529:11942036,30845136:0,0,0 +k1,12529:32583028,30845136:20640992 +g1,12529:32583028,30845136 +) +] +) +g1,12530:32583029,30924958 +g1,12530:6630773,30924958 +g1,12530:6630773,30924958 +g1,12530:32583029,30924958 +g1,12530:32583029,30924958 +) +h1,12530:6630773,31121566:0,0,0 +(1,12534:6630773,31986646:25952256,513147,115847 +h1,12533:6630773,31986646:983040,0,0 +k1,12533:10655031,31986646:251350 +(1,12533:10655031,31986646:0,452978,115847 +r1,12543:14178703,31986646:3523672,568825,115847 +k1,12533:10655031,31986646:-3523672 +) +(1,12533:10655031,31986646:3523672,452978,115847 +k1,12533:10655031,31986646:3277 +h1,12533:14175426,31986646:0,411205,112570 +) +k1,12533:14603724,31986646:251351 +k1,12533:17945097,31986646:251350 +k1,12533:20225443,31986646:251351 +k1,12533:21762609,31986646:251350 +k1,12533:24025914,31986646:251350 +k1,12533:25296350,31986646:251351 +k1,12533:27572762,31986646:251350 +k1,12533:28483405,31986646:251351 +k1,12533:31189078,31986646:251350 +k1,12533:32583029,31986646:0 +) +(1,12534:6630773,32851726:25952256,513147,126483 +g1,12533:7849087,32851726 +g1,12533:9701789,32851726 +g1,12533:11985063,32851726 +g1,12533:12870454,32851726 +g1,12533:15145208,32851726 +g1,12533:16292088,32851726 +(1,12533:16292088,32851726:0,452978,115847 +r1,12543:18057201,32851726:1765113,568825,115847 +k1,12533:16292088,32851726:-1765113 +) +(1,12533:16292088,32851726:1765113,452978,115847 +k1,12533:16292088,32851726:3277 +h1,12533:18053924,32851726:0,411205,112570 +) +k1,12534:32583029,32851726:14352158 +g1,12534:32583029,32851726 +) +v1,12536:6630773,33716806:0,393216,0 +(1,12537:6630773,36718871:25952256,3395281,0 +g1,12537:6630773,36718871 +g1,12537:6237557,36718871 +r1,12543:6368629,36718871:131072,3395281,0 +g1,12537:6567858,36718871 +g1,12537:6764466,36718871 +[1,12537:6764466,36718871:25818563,3395281,0 +(1,12537:6764466,33989283:25818563,665693,196608 +(1,12536:6764466,33989283:0,665693,196608 +r1,12543:8010564,33989283:1246098,862301,196608 +k1,12536:6764466,33989283:-1246098 +) +(1,12536:6764466,33989283:1246098,665693,196608 +) +k1,12536:8202620,33989283:192056 +k1,12536:9520549,33989283:327680 +k1,12536:11885780,33989283:192057 +k1,12536:13096921,33989283:192056 +k1,12536:15849470,33989283:192057 +k1,12536:16657564,33989283:192056 +k1,12536:17868706,33989283:192057 +k1,12536:21711117,33989283:192056 +k1,12536:25839922,33989283:192057 +k1,12536:28060973,33989283:192056 +k1,12536:29325199,33989283:192057 +k1,12536:30847636,33989283:192056 +k1,12536:32583029,33989283:0 +) +(1,12537:6764466,34854363:25818563,513147,126483 +k1,12536:11834461,34854363:164625 +k1,12536:14957381,34854363:164625 +k1,12536:16542827,34854363:164625 +k1,12536:18200362,34854363:164625 +k1,12536:19384072,34854363:164625 +k1,12536:23355684,34854363:164626 +k1,12536:25558479,34854363:164625 +k1,12536:26339142,34854363:164625 +k1,12536:27522852,34854363:164625 +k1,12536:30466204,34854363:164625 +(1,12536:30466204,34854363:0,452978,115847 +r1,12543:32583029,34854363:2116825,568825,115847 +k1,12536:30466204,34854363:-2116825 +) +(1,12536:30466204,34854363:2116825,452978,115847 +k1,12536:30466204,34854363:3277 +h1,12536:32579752,34854363:0,411205,112570 +) +k1,12536:32583029,34854363:0 +) +(1,12537:6764466,35719443:25818563,513147,134348 +k1,12536:8750207,35719443:242483 +k1,12536:12354687,35719443:242483 +k1,12536:13406540,35719443:242483 +k1,12536:14668108,35719443:242483 +k1,12536:17538585,35719443:242483 +k1,12536:18972513,35719443:242483 +k1,12536:20545377,35719443:242483 +k1,12536:21892142,35719443:242483 +k1,12536:23002977,35719443:242483 +k1,12536:25449436,35719443:242483 +k1,12536:29498905,35719443:242483 +k1,12536:31563944,35719443:242483 +k1,12536:32583029,35719443:0 +) +(1,12537:6764466,36584523:25818563,513147,134348 +g1,12536:9418018,36584523 +g1,12536:11130473,36584523 +g1,12536:12277353,36584523 +g1,12536:15948024,36584523 +g1,12536:16806545,36584523 +g1,12536:18024859,36584523 +g1,12536:21704705,36584523 +g1,12536:23471555,36584523 +g1,12536:24689869,36584523 +g1,12536:27667825,36584523 +k1,12537:32583029,36584523:2782007 +g1,12537:32583029,36584523 +) +] +g1,12537:32583029,36718871 +) +h1,12537:6630773,36718871:0,0,0 +(1,12540:6630773,39550031:25952256,32768,229376 +(1,12540:6630773,39550031:0,32768,229376 +(1,12540:6630773,39550031:5505024,32768,229376 +r1,12543:12135797,39550031:5505024,262144,229376 +) +k1,12540:6630773,39550031:-5505024 +) +(1,12540:6630773,39550031:25952256,32768,0 +r1,12543:32583029,39550031:25952256,32768,0 +) +) +(1,12540:6630773,41181883:25952256,615776,161218 +(1,12540:6630773,41181883:1974731,582746,14155 +g1,12540:6630773,41181883 +g1,12540:8605504,41181883 +) +g1,12540:11257353,41181883 +g1,12540:13884036,41181883 +g1,12540:14899320,41181883 +k1,12540:32583030,41181883:17141072 +g1,12540:32583030,41181883 +) +(1,12543:6630773,42440179:25952256,513147,134348 +k1,12542:8097910,42440179:270450 +k1,12542:10701442,42440179:270450 +k1,12542:13956402,42440179:270450 +k1,12542:14878280,42440179:270450 +k1,12542:17136437,42440179:270450 +k1,12542:19341509,42440179:270449 +k1,12542:20227997,42440179:270450 +k1,12542:20913219,42440179:270379 +k1,12542:21715166,42440179:270450 +k1,12542:22637044,42440179:270450 +k1,12542:25610198,42440179:270449 +k1,12542:26899733,42440179:270450 +k1,12542:29092354,42440179:270450 +k1,12542:31297427,42440179:270450 +k1,12542:32227169,42440179:270450 +k1,12542:32583029,42440179:0 +) +(1,12543:6630773,43305259:25952256,513147,134348 +k1,12542:8803511,43305259:185031 +k1,12542:10556163,43305259:185031 +k1,12542:11760279,43305259:185031 +k1,12542:15260776,43305259:185031 +k1,12542:16105099,43305259:185031 +k1,12542:17309216,43305259:185032 +k1,12542:19206703,43305259:185031 +k1,12542:21553111,43305259:185031 +k1,12542:22225716,43305259:185017 +k1,12542:24398454,43305259:185031 +k1,12542:26518108,43305259:185031 +k1,12542:29398635,43305259:185031 +k1,12542:32583029,43305259:0 +) +(1,12543:6630773,44170339:25952256,513147,126483 +k1,12542:9452356,44170339:199488 +k1,12542:10007704,44170339:199488 +k1,12542:13816915,44170339:199488 +k1,12542:14675695,44170339:199488 +k1,12542:15894268,44170339:199488 +k1,12542:18081463,44170339:199488 +k1,12542:18932379,44170339:199488 +k1,12542:19993010,44170339:199488 +k1,12542:20878660,44170339:199488 +k1,12542:21434008,44170339:199488 +k1,12542:23621203,44170339:199488 +(1,12542:23621203,44170339:0,459977,115847 +r1,12543:26089740,44170339:2468537,575824,115847 +k1,12542:23621203,44170339:-2468537 +) +(1,12542:23621203,44170339:2468537,459977,115847 +k1,12542:23621203,44170339:3277 +h1,12542:26086463,44170339:0,411205,112570 +) +k1,12542:26289228,44170339:199488 +k1,12542:27680161,44170339:199488 +k1,12542:28235509,44170339:199488 +k1,12542:29824360,44170339:199488 +k1,12542:31900144,44170339:199488 +k1,12542:32583029,44170339:0 +) +(1,12543:6630773,45035419:25952256,513147,7863 +k1,12542:9179770,45035419:240819 +k1,12542:10814541,45035419:240820 +k1,12542:12074445,45035419:240819 +k1,12542:13704628,45035419:240820 +k1,12542:14628332,45035419:240819 +k1,12542:18940904,45035419:240820 +k1,12542:19833151,45035419:240819 +k1,12542:21959442,45035419:240820 +k1,12542:22851689,45035419:240819 +k1,12542:23779982,45035419:240820 +k1,12542:25039886,45035419:240819 +k1,12542:27442083,45035419:240820 +k1,12542:29557232,45035419:240819 +k1,12542:32583029,45035419:0 +) +] +(1,12543:32583029,45706769:0,0,0 +g1,12543:32583029,45706769 +) +) +] +(1,12543:6630773,47279633:25952256,0,0 +h1,12543:6630773,47279633:25952256,0,0 +) +] +(1,12543:4262630,4025873:0,0,0 +[1,12543:-473656,4025873:0,0,0 +(1,12543:-473656,-710413:0,0,0 +(1,12543:-473656,-710413:0,0,0 +g1,12543:-473656,-710413 +) +g1,12543:-473656,-710413 +) +] +) +] +!27538 +}202 +Input:1867:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1868:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1869:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1870:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1871:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1872:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1873:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1874:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1875:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1876:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1877:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1046 +{203 +[1,12578:4262630,47279633:28320399,43253760,0 +(1,12578:4262630,4025873:0,0,0 +[1,12578:-473656,4025873:0,0,0 +(1,12578:-473656,-710413:0,0,0 +(1,12578:-473656,-644877:0,0,0 +k1,12578:-473656,-644877:-65536 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +(1,12578:-473656,4736287:0,0,0 +k1,12578:-473656,4736287:5209943 +) +g1,12578:-473656,-710413 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,13033:37855564,2439708:1179648,16384,0 +[1,12578:6630773,47279633:25952256,43253760,0 +[1,12578:6630773,4812305:25952256,786432,0 +(1,12578:6630773,4812305:25952256,513147,126483 +(1,12578:6630773,4812305:25952256,513147,126483 +g1,12578:3078558,4812305 +[1,12578:3078558,4812305:0,0,0 +(1,12578:3078558,2439708:0,1703936,0 +k1,12578:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,12578:2537886,2439708:1179648,16384,0 ) +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,12578:3078558,1915420:16384,1179648,0 ) -k1,13033:3078556,2439708:-34777008 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] -[1,13033:3078558,4812305:0,0,0 -(1,13033:3078558,49800853:0,16384,2228224 -k1,13033:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,13033:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,13033:3078558,51504789:16384,1179648,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 +) +] +[1,12578:3078558,4812305:0,0,0 +(1,12578:3078558,2439708:0,1703936,0 +g1,12578:29030814,2439708 +g1,12578:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,12578:36151628,1915420:16384,1179648,0 +) +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] ) +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,12578:37855564,2439708:1179648,16384,0 ) ) +k1,12578:3078556,2439708:-34777008 +) ] -[1,13033:3078558,4812305:0,0,0 -(1,13033:3078558,49800853:0,16384,2228224 -g1,13033:29030814,49800853 -g1,13033:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,13033:36151628,51504789:16384,1179648,0 -) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 -) -] -) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,13033:37855564,49800853:1179648,16384,0 -) -) -k1,13033:3078556,49800853:-34777008 -) -] -g1,13033:6630773,4812305 -k1,13033:19540057,4812305:11713907 -g1,13033:21162728,4812305 -g1,13033:21985204,4812305 -g1,13033:24539797,4812305 -g1,13033:25949476,4812305 -g1,13033:28728857,4812305 -g1,13033:29852144,4812305 -) -) -] -[1,13033:6630773,45706769:25952256,40108032,0 -(1,13033:6630773,45706769:25952256,40108032,0 -(1,13033:6630773,45706769:0,0,0 -g1,13033:6630773,45706769 -) -[1,13033:6630773,45706769:25952256,40108032,0 -v1,12976:6630773,6254097:0,393216,0 -(1,12976:6630773,8567728:25952256,2706847,196608 -g1,12976:6630773,8567728 -g1,12976:6630773,8567728 -g1,12976:6434165,8567728 -(1,12976:6434165,8567728:0,2706847,196608 -r1,13033:32779637,8567728:26345472,2903455,196608 -k1,12976:6434165,8567728:-26345472 -) -(1,12976:6434165,8567728:26345472,2706847,196608 -[1,12976:6630773,8567728:25952256,2510239,0 -(1,12971:6630773,6468007:25952256,410518,101187 -(1,12970:6630773,6468007:0,0,0 -g1,12970:6630773,6468007 -g1,12970:6630773,6468007 -g1,12970:6303093,6468007 -(1,12970:6303093,6468007:0,0,0 -) -g1,12970:6630773,6468007 -) -g1,12971:9159939,6468007 -g1,12971:10108377,6468007 -g1,12971:12953688,6468007 -g1,12971:13585980,6468007 -g1,12971:15799000,6468007 -g1,12971:17379729,6468007 -g1,12971:18012021,6468007 -k1,12971:18012021,6468007:0 -h1,12971:22121915,6468007:0,0,0 -k1,12971:32583029,6468007:10461114 -g1,12971:32583029,6468007 -) -(1,12972:6630773,7134185:25952256,404226,101187 -h1,12972:6630773,7134185:0,0,0 -g1,12972:6946919,7134185 -g1,12972:7263065,7134185 -g1,12972:7579211,7134185 -g1,12972:7895357,7134185 -g1,12972:8211503,7134185 -g1,12972:8527649,7134185 -g1,12972:8843795,7134185 -g1,12972:9159941,7134185 -g1,12972:9476087,7134185 -g1,12972:9792233,7134185 -g1,12972:10108379,7134185 -g1,12972:10424525,7134185 -g1,12972:10740671,7134185 -g1,12972:11056817,7134185 -g1,12972:14218274,7134185 -g1,12972:14850566,7134185 -g1,12972:18328169,7134185 -g1,12972:18960461,7134185 -h1,12972:24334938,7134185:0,0,0 -k1,12972:32583029,7134185:8248091 -g1,12972:32583029,7134185 -) -(1,12973:6630773,7800363:25952256,410518,101187 -h1,12973:6630773,7800363:0,0,0 -g1,12973:8843793,7800363 -g1,12973:9159939,7800363 -g1,12973:10108377,7800363 -g1,12973:12953688,7800363 -g1,12973:13585980,7800363 -g1,12973:15799000,7800363 -g1,12973:17379729,7800363 -g1,12973:18012021,7800363 -k1,12973:18012021,7800363:0 -h1,12973:22121915,7800363:0,0,0 -k1,12973:32583029,7800363:10461114 -g1,12973:32583029,7800363 -) -(1,12974:6630773,8466541:25952256,404226,101187 -h1,12974:6630773,8466541:0,0,0 -g1,12974:6946919,8466541 -g1,12974:7263065,8466541 -g1,12974:7579211,8466541 -g1,12974:7895357,8466541 -g1,12974:8211503,8466541 -g1,12974:8527649,8466541 -g1,12974:8843795,8466541 -g1,12974:9159941,8466541 -g1,12974:9476087,8466541 -g1,12974:9792233,8466541 -g1,12974:10108379,8466541 -g1,12974:10424525,8466541 -g1,12974:10740671,8466541 -g1,12974:11056817,8466541 -g1,12974:14218274,8466541 -g1,12974:14850566,8466541 -g1,12974:18328169,8466541 -g1,12974:18960461,8466541 -h1,12974:22438063,8466541:0,0,0 -k1,12974:32583029,8466541:10144966 -g1,12974:32583029,8466541 -) -] -) -g1,12976:32583029,8567728 -g1,12976:6630773,8567728 -g1,12976:6630773,8567728 -g1,12976:32583029,8567728 -g1,12976:32583029,8567728 -) -h1,12976:6630773,8764336:0,0,0 -(1,12980:6630773,10120760:25952256,513147,126483 -h1,12979:6630773,10120760:983040,0,0 -k1,12979:12333180,10120760:262263 -k1,12979:13254735,10120760:262263 -k1,12979:14648805,10120760:262263 -k1,12979:17465661,10120760:262263 -k1,12979:18828929,10120760:262263 -k1,12979:19742620,10120760:262263 -k1,12979:21357546,10120760:262263 -k1,12979:22887275,10120760:262263 -k1,12979:25653669,10120760:262263 -k1,12979:27612659,10120760:262263 -k1,12979:31391584,10120760:262263 -k1,12979:32583029,10120760:0 -) -(1,12980:6630773,10962248:25952256,513147,126483 -k1,12979:8515077,10962248:173159 -k1,12979:10868619,10962248:173159 -k1,12979:12108049,10962248:173159 -k1,12979:13028974,10962248:173159 -k1,12979:16244314,10962248:173159 -k1,12979:16883434,10962248:173159 -k1,12979:19491230,10962248:173133 -k1,12979:21530199,10962248:173159 -k1,12979:24465701,10962248:173159 -k1,12979:26812034,10962248:173159 -k1,12979:27601231,10962248:173159 -k1,12979:29208318,10962248:173159 -k1,12979:29796294,10962248:173133 -k1,12979:31160898,10962248:173159 -k1,12979:32583029,10962248:0 -) -(1,12980:6630773,11803736:25952256,513147,134348 -k1,12979:7578630,11803736:264972 -k1,12979:9002213,11803736:264906 -k1,12979:10961946,11803736:264972 -k1,12979:12246003,11803736:264972 -k1,12979:15273318,11803736:264972 -k1,12979:17254678,11803736:264972 -k1,12979:18178943,11803736:264973 -k1,12979:20139331,11803736:264972 -k1,12979:21063595,11803736:264972 -k1,12979:23799930,11803736:264972 -k1,12979:25751799,11803736:264972 -k1,12979:27213458,11803736:264972 -k1,12979:31923737,11803736:264972 -k1,12979:32583029,11803736:0 -) -(1,12980:6630773,12645224:25952256,505283,134348 -k1,12979:9274346,12645224:208910 -k1,12979:10292636,12645224:208920 -k1,12979:12920490,12645224:208920 -k1,12979:14413916,12645224:208920 -k1,12979:15614396,12645224:208920 -k1,12979:16889587,12645224:208920 -k1,12979:20592231,12645224:208920 -k1,12979:21933613,12645224:208920 -k1,12979:24514280,12645224:208919 -k1,12979:25532570,12645224:208920 -k1,12979:27626961,12645224:208920 -k1,12979:29221967,12645224:208920 -k1,12979:29962384,12645224:208920 -k1,12979:31858201,12645224:208920 -k1,12979:32583029,12645224:0 -) -(1,12980:6630773,13486712:25952256,513147,126483 -g1,12979:7849087,13486712 -g1,12979:10810659,13486712 -g1,12979:13183062,13486712 -g1,12979:14373851,13486712 -g1,12979:15639351,13486712 -g1,12979:19353931,13486712 -g1,12979:23853633,13486712 -g1,12979:25519558,13486712 -g1,12979:27416825,13486712 -k1,12980:32583029,13486712:2230191 -g1,12980:32583029,13486712 -) -(1,12982:6630773,14328200:25952256,513147,115847 -h1,12981:6630773,14328200:983040,0,0 -k1,12981:8390337,14328200:148689 -(1,12981:8390337,14328200:0,459977,115847 -r1,13033:10858874,14328200:2468537,575824,115847 -k1,12981:8390337,14328200:-2468537 -) -(1,12981:8390337,14328200:2468537,459977,115847 -k1,12981:8390337,14328200:3277 -h1,12981:10855597,14328200:0,411205,112570 -) -k1,12981:11007562,14328200:148688 -k1,12981:12024603,14328200:148689 -k1,12981:13686517,14328200:148688 -(1,12981:13686517,14328200:0,452978,115847 -r1,13033:19672172,14328200:5985655,568825,115847 -k1,12981:13686517,14328200:-5985655 -) -(1,12981:13686517,14328200:5985655,452978,115847 -k1,12981:13686517,14328200:3277 -h1,12981:19668895,14328200:0,411205,112570 -) -k1,12981:19994531,14328200:148689 -k1,12981:21560107,14328200:148688 -k1,12981:24670368,14328200:148689 -k1,12981:25766707,14328200:148688 -k1,12981:29108310,14328200:148689 -k1,12981:32583029,14328200:0 -) -(1,12982:6630773,15169688:25952256,513147,134348 -k1,12981:7842205,15169688:219872 -k1,12981:9639529,15169688:219872 -k1,12981:12148575,15169688:219873 -(1,12981:12148575,15169688:0,435480,115847 -r1,13033:14265400,15169688:2116825,551327,115847 -k1,12981:12148575,15169688:-2116825 -) -(1,12981:12148575,15169688:2116825,435480,115847 -k1,12981:12148575,15169688:3277 -h1,12981:14262123,15169688:0,411205,112570 -) -k1,12981:14485272,15169688:219872 -k1,12981:16700715,15169688:219872 -k1,12981:17378684,15169688:219872 -k1,12981:18284719,15169688:219873 -k1,12981:19523676,15169688:219872 -k1,12981:22031410,15169688:219872 -k1,12981:22934167,15169688:219872 -k1,12981:26306976,15169688:219872 -k1,12981:27718294,15169688:219873 -k1,12981:29042448,15169688:219872 -k1,12981:30010086,15169688:219872 -k1,12981:32583029,15169688:0 -) -(1,12982:6630773,16011176:25952256,513147,134348 -k1,12981:8442691,16011176:244297 -k1,12981:9706073,16011176:244297 -k1,12981:13103307,16011176:244297 -k1,12981:16309176,16011176:244297 -k1,12981:18814465,16011176:244297 -k1,12981:20100784,16011176:244297 -k1,12981:21548323,16011176:244298 -k1,12981:24097521,16011176:244297 -k1,12981:25996602,16011176:244297 -k1,12981:26772396,16011176:244297 -k1,12981:27826063,16011176:244297 -k1,12981:29274256,16011176:244297 -k1,12981:30466204,16011176:244297 -(1,12981:30466204,16011176:0,435480,115847 -r1,13033:32583029,16011176:2116825,551327,115847 -k1,12981:30466204,16011176:-2116825 -) -(1,12981:30466204,16011176:2116825,435480,115847 -k1,12981:30466204,16011176:3277 -h1,12981:32579752,16011176:0,411205,112570 -) -k1,12981:32583029,16011176:0 -) -(1,12982:6630773,16852664:25952256,513147,134348 -k1,12981:7435859,16852664:189048 -k1,12981:8643992,16852664:189048 -k1,12981:11823447,16852664:189047 -k1,12981:13751821,16852664:189048 -k1,12981:15416084,16852664:189048 -k1,12981:16264424,16852664:189048 -k1,12981:17472557,16852664:189048 -k1,12981:19195802,16852664:189047 -(1,12981:19195802,16852664:0,435480,115847 -r1,13033:21312627,16852664:2116825,551327,115847 -k1,12981:19195802,16852664:-2116825 -) -(1,12981:19195802,16852664:2116825,435480,115847 -k1,12981:19195802,16852664:3277 -h1,12981:21309350,16852664:0,411205,112570 -) -k1,12981:21501675,16852664:189048 -k1,12981:22342151,16852664:189048 -(1,12981:22342151,16852664:0,435480,115847 -r1,13033:24458976,16852664:2116825,551327,115847 -k1,12981:22342151,16852664:-2116825 -) -(1,12981:22342151,16852664:2116825,435480,115847 -k1,12981:22342151,16852664:3277 -h1,12981:24455699,16852664:0,411205,112570 -) -k1,12981:24648024,16852664:189048 -k1,12981:25368569,16852664:189048 -k1,12981:25913476,16852664:189047 -k1,12981:27293969,16852664:189048 -k1,12981:30886302,16852664:189048 -k1,12981:32583029,16852664:0 -) -(1,12982:6630773,17694152:25952256,505283,134348 -g1,12981:10304721,17694152 -g1,12981:14263095,17694152 -g1,12981:16751497,17694152 -(1,12981:16751497,17694152:0,435480,115847 -r1,13033:18868322,17694152:2116825,551327,115847 -k1,12981:16751497,17694152:-2116825 -) -(1,12981:16751497,17694152:2116825,435480,115847 -k1,12981:16751497,17694152:3277 -h1,12981:18865045,17694152:0,411205,112570 -) -k1,12982:32583029,17694152:13541037 -g1,12982:32583029,17694152 -) -v1,12984:6630773,19050576:0,393216,0 -(1,12985:6630773,25495924:25952256,6838564,0 -g1,12985:6630773,25495924 -g1,12985:6303093,25495924 -r1,13033:6401397,25495924:98304,6838564,0 -g1,12985:6600626,25495924 -g1,12985:6797234,25495924 -[1,12985:6797234,25495924:25785795,6838564,0 -(1,12985:6797234,19471160:25785795,813800,267386 -(1,12984:6797234,19471160:0,813800,267386 -r1,13033:8134168,19471160:1336934,1081186,267386 -k1,12984:6797234,19471160:-1336934 -) -(1,12984:6797234,19471160:1336934,813800,267386 -) -k1,12984:8353714,19471160:219546 -k1,12984:8681394,19471160:327680 -k1,12984:11654106,19471160:219545 -k1,12984:12865212,19471160:219546 -k1,12984:15916568,19471160:219545 -k1,12984:16822276,19471160:219546 -k1,12984:19775328,19471160:219545 -k1,12984:21279380,19471160:219546 -k1,12984:22490485,19471160:219545 -k1,12984:26501944,19471160:219546 -k1,12984:27483017,19471160:219545 -k1,12984:30728360,19471160:219546 -k1,12984:32583029,19471160:0 -) -(1,12985:6797234,20312648:25785795,513147,115847 -k1,12984:7873789,20312648:267185 -k1,12984:9160059,20312648:267185 -k1,12984:11913026,20312648:267186 -k1,12984:12839503,20312648:267185 -k1,12984:14899098,20312648:267185 -k1,12984:15782321,20312648:267185 -k1,12984:16405366,20312648:267185 -k1,12984:18740212,20312648:267185 -k1,12984:22836011,20312648:267186 -k1,12984:25798692,20312648:267185 -(1,12984:25798692,20312648:0,452978,115847 -r1,13033:31784347,20312648:5985655,568825,115847 -k1,12984:25798692,20312648:-5985655 -) -(1,12984:25798692,20312648:5985655,452978,115847 -k1,12984:25798692,20312648:3277 -h1,12984:31781070,20312648:0,411205,112570 -) -k1,12984:32051532,20312648:267185 -k1,12984:32583029,20312648:0 -) -(1,12985:6797234,21154136:25785795,513147,115847 -k1,12984:8045795,21154136:229476 -k1,12984:10540851,21154136:229476 -k1,12984:11386365,21154136:229476 -k1,12984:12030654,21154136:229446 -k1,12984:13207781,21154136:229476 -k1,12984:16774350,21154136:229476 -k1,12984:19401788,21154136:229476 -k1,12984:23337980,21154136:229476 -(1,12984:23337980,21154136:0,452978,115847 -r1,13033:27213364,21154136:3875384,568825,115847 -k1,12984:23337980,21154136:-3875384 -) -(1,12984:23337980,21154136:3875384,452978,115847 -k1,12984:23337980,21154136:3277 -h1,12984:27210087,21154136:0,411205,112570 -) -k1,12984:27442840,21154136:229476 -k1,12984:29978528,21154136:229476 -k1,12984:31227089,21154136:229476 -k1,12985:32583029,21154136:0 -) -(1,12985:6797234,21995624:25785795,513147,126483 -k1,12984:8809902,21995624:194044 -k1,12984:10517172,21995624:194044 -k1,12984:11327254,21995624:194044 -k1,12984:13273075,21995624:194044 -k1,12984:14625790,21995624:194038 -k1,12984:18579634,21995624:194044 -k1,12984:19965123,21995624:194044 -(1,12984:19965123,21995624:0,452978,115847 -r1,13033:25247354,21995624:5282231,568825,115847 -k1,12984:19965123,21995624:-5282231 -) -(1,12984:19965123,21995624:5282231,452978,115847 -k1,12984:19965123,21995624:3277 -h1,12984:25244077,21995624:0,411205,112570 -) -k1,12984:25441398,21995624:194044 -k1,12984:28294238,21995624:194044 -k1,12984:29507367,21995624:194044 -k1,12984:31966991,21995624:194044 -k1,12985:32583029,21995624:0 -) -(1,12985:6797234,22837112:25785795,513147,126483 -k1,12984:7508217,22837112:184074 -k1,12984:10775760,22837112:184074 -k1,12984:13331582,22837112:184074 -k1,12984:14325026,22837112:184074 -k1,12984:15528186,22837112:184075 -k1,12984:17451586,22837112:184074 -k1,12984:18294952,22837112:184074 -k1,12984:20373016,22837112:184074 -k1,12984:22349500,22837112:184074 -k1,12984:23258402,22837112:184074 -k1,12984:23900573,22837112:184074 -k1,12984:24616144,22837112:184074 -k1,12984:26932761,22837112:184075 -k1,12984:27768263,22837112:184074 -k1,12984:30095364,22837112:184074 -k1,12984:31563944,22837112:184074 -k1,12984:32583029,22837112:0 -) -(1,12985:6797234,23678600:25785795,513147,134348 -k1,12984:9735809,23678600:209000 -k1,12984:10560848,23678600:209001 -k1,12984:11862333,23678600:209000 -k1,12984:13937143,23678600:209000 -k1,12984:15165228,23678600:209000 -k1,12984:18198175,23678600:209001 -k1,12984:19928921,23678600:209000 -k1,12984:20797213,23678600:209000 -k1,12984:24743731,23678600:209000 -k1,12984:25900383,23678600:209001 -k1,12984:29302297,23678600:209000 -k1,12984:32583029,23678600:0 -) -(1,12985:6797234,24520088:25785795,513147,134348 -k1,12984:10253048,24520088:236030 -k1,12984:12116993,24520088:236031 -k1,12984:13004451,24520088:236030 -k1,12984:15481158,24520088:236031 -k1,12984:16736273,24520088:236030 -k1,12984:18711629,24520088:236030 -k1,12984:19606952,24520088:236031 -k1,12984:21736972,24520088:236030 -k1,12984:23765412,24520088:236030 -k1,12984:24532940,24520088:236031 -k1,12984:27847196,24520088:236030 -k1,12984:28699265,24520088:236031 -k1,12984:31213982,24520088:236030 -h1,12984:32583029,24520088:0,0,0 -k1,12984:32583029,24520088:0 -) -(1,12985:6797234,25361576:25785795,505283,134348 -g1,12984:7805833,25361576 -g1,12984:9503215,25361576 -h1,12984:10300133,25361576:0,0,0 -k1,12985:32583029,25361576:21902132 -g1,12985:32583029,25361576 -) -] -g1,12985:32583029,25495924 -) -h1,12985:6630773,25495924:0,0,0 -v1,12988:6630773,27191975:0,393216,0 -(1,13001:6630773,32078567:25952256,5279808,196608 -g1,13001:6630773,32078567 -g1,13001:6630773,32078567 -g1,13001:6434165,32078567 -(1,13001:6434165,32078567:0,5279808,196608 -r1,13033:32779637,32078567:26345472,5476416,196608 -k1,13001:6434165,32078567:-26345472 -) -(1,13001:6434165,32078567:26345472,5279808,196608 -[1,13001:6630773,32078567:25952256,5083200,0 -(1,12990:6630773,27405885:25952256,410518,107478 -(1,12989:6630773,27405885:0,0,0 -g1,12989:6630773,27405885 -g1,12989:6630773,27405885 -g1,12989:6303093,27405885 -(1,12989:6303093,27405885:0,0,0 -) -g1,12989:6630773,27405885 -) -k1,12990:6630773,27405885:0 -k1,12990:6630773,27405885:0 -h1,12990:22754203,27405885:0,0,0 -k1,12990:32583029,27405885:9828826 -g1,12990:32583029,27405885 -) -(1,13000:6630773,28072063:25952256,388497,9436 -(1,12992:6630773,28072063:0,0,0 -g1,12992:6630773,28072063 -g1,12992:6630773,28072063 -g1,12992:6303093,28072063 -(1,12992:6303093,28072063:0,0,0 -) -g1,12992:6630773,28072063 -) -g1,13000:7579210,28072063 -g1,13000:7895356,28072063 -g1,13000:8211502,28072063 -g1,13000:8843794,28072063 -g1,13000:9476086,28072063 -g1,13000:10108378,28072063 -g1,13000:10740670,28072063 -h1,13000:11056816,28072063:0,0,0 -k1,13000:32583028,28072063:21526212 -g1,13000:32583028,28072063 -) -(1,13000:6630773,28738241:25952256,388497,9436 -h1,13000:6630773,28738241:0,0,0 -g1,13000:7579210,28738241 -g1,13000:8211502,28738241 -g1,13000:8843794,28738241 -g1,13000:9476086,28738241 -g1,13000:10108378,28738241 -g1,13000:10740670,28738241 -h1,13000:11056816,28738241:0,0,0 -k1,13000:32583028,28738241:21526212 -g1,13000:32583028,28738241 -) -(1,13000:6630773,29404419:25952256,388497,9436 -h1,13000:6630773,29404419:0,0,0 -g1,13000:7579210,29404419 -g1,13000:8211502,29404419 -g1,13000:8843794,29404419 -g1,13000:9476086,29404419 -g1,13000:10108378,29404419 -g1,13000:10740670,29404419 -h1,13000:11056816,29404419:0,0,0 -k1,13000:32583028,29404419:21526212 -g1,13000:32583028,29404419 -) -(1,13000:6630773,30070597:25952256,388497,9436 -h1,13000:6630773,30070597:0,0,0 -g1,13000:7579210,30070597 -g1,13000:8211502,30070597 -g1,13000:8843794,30070597 -g1,13000:9476086,30070597 -g1,13000:10108378,30070597 -g1,13000:10740670,30070597 -h1,13000:11056816,30070597:0,0,0 -k1,13000:32583028,30070597:21526212 -g1,13000:32583028,30070597 -) -(1,13000:6630773,30736775:25952256,388497,9436 -h1,13000:6630773,30736775:0,0,0 -g1,13000:7579210,30736775 -g1,13000:8211502,30736775 -g1,13000:8843794,30736775 -g1,13000:9476086,30736775 -g1,13000:10108378,30736775 -g1,13000:10740670,30736775 -h1,13000:11056816,30736775:0,0,0 -k1,13000:32583028,30736775:21526212 -g1,13000:32583028,30736775 -) -(1,13000:6630773,31402953:25952256,388497,9436 -h1,13000:6630773,31402953:0,0,0 -g1,13000:7579210,31402953 -g1,13000:8211502,31402953 -g1,13000:8843794,31402953 -g1,13000:9476086,31402953 -g1,13000:10108378,31402953 -g1,13000:10740670,31402953 -h1,13000:11056816,31402953:0,0,0 -k1,13000:32583028,31402953:21526212 -g1,13000:32583028,31402953 -) -(1,13000:6630773,32069131:25952256,388497,9436 -h1,13000:6630773,32069131:0,0,0 -g1,13000:7579210,32069131 -g1,13000:8211502,32069131 -g1,13000:8843794,32069131 -g1,13000:9476086,32069131 -g1,13000:10108378,32069131 -g1,13000:10740670,32069131 -h1,13000:11056816,32069131:0,0,0 -k1,13000:32583028,32069131:21526212 -g1,13000:32583028,32069131 -) -] -) -g1,13001:32583029,32078567 -g1,13001:6630773,32078567 -g1,13001:6630773,32078567 -g1,13001:32583029,32078567 -g1,13001:32583029,32078567 -) -h1,13001:6630773,32275175:0,0,0 -v1,13005:6630773,33971225:0,393216,0 -(1,13033:6630773,45510161:25952256,11932152,196608 -g1,13033:6630773,45510161 -g1,13033:6630773,45510161 -g1,13033:6434165,45510161 -(1,13033:6434165,45510161:0,11932152,196608 -r1,13033:32779637,45510161:26345472,12128760,196608 -k1,13033:6434165,45510161:-26345472 -) -(1,13033:6434165,45510161:26345472,11932152,196608 -[1,13033:6630773,45510161:25952256,11735544,0 -(1,13007:6630773,34185135:25952256,410518,101187 -(1,13006:6630773,34185135:0,0,0 -g1,13006:6630773,34185135 -g1,13006:6630773,34185135 -g1,13006:6303093,34185135 -(1,13006:6303093,34185135:0,0,0 -) -g1,13006:6630773,34185135 -) -k1,13007:6630773,34185135:0 -h1,13007:11689104,34185135:0,0,0 -k1,13007:32583028,34185135:20893924 -g1,13007:32583028,34185135 -) -(1,13032:6630773,34851313:25952256,379060,0 -(1,13009:6630773,34851313:0,0,0 -g1,13009:6630773,34851313 -g1,13009:6630773,34851313 -g1,13009:6303093,34851313 -(1,13009:6303093,34851313:0,0,0 -) -g1,13009:6630773,34851313 -) -h1,13032:7263064,34851313:0,0,0 -k1,13032:32583028,34851313:25319964 -g1,13032:32583028,34851313 -) -(1,13032:6630773,35517491:25952256,404226,7863 -h1,13032:6630773,35517491:0,0,0 -g1,13032:7579210,35517491 -h1,13032:9159938,35517491:0,0,0 -k1,13032:32583030,35517491:23423092 -g1,13032:32583030,35517491 -) -(1,13032:6630773,36183669:25952256,410518,101187 -h1,13032:6630773,36183669:0,0,0 -k1,13032:7473828,36183669:210764 -k1,13032:10846049,36183669:210764 -k1,13032:11372959,36183669:210764 -k1,13032:13164451,36183669:210764 -k1,13032:13691361,36183669:210764 -k1,13032:15798999,36183669:210764 -k1,13032:17274346,36183669:210764 -k1,13032:17801256,36183669:210764 -k1,13032:22121914,36183669:210764 -k1,13032:25177989,36183669:210764 -k1,13032:25704899,36183669:210764 -k1,13032:29077120,36183669:210764 -k1,13032:29604030,36183669:210764 -h1,13032:34978507,36183669:0,0,0 -k1,13032:34978507,36183669:0 -k1,13032:34978507,36183669:0 -) -(1,13032:6630773,36849847:25952256,379060,0 -h1,13032:6630773,36849847:0,0,0 -h1,13032:7263064,36849847:0,0,0 -k1,13032:32583028,36849847:25319964 -g1,13032:32583028,36849847 -) -(1,13032:6630773,37516025:25952256,404226,6290 -h1,13032:6630773,37516025:0,0,0 -g1,13032:7579210,37516025 -h1,13032:10740667,37516025:0,0,0 -k1,13032:32583029,37516025:21842362 -g1,13032:32583029,37516025 -) -(1,13032:6630773,38182203:25952256,404226,82312 -h1,13032:6630773,38182203:0,0,0 -g1,13032:7579210,38182203 -g1,13032:7895356,38182203 -g1,13032:8211502,38182203 -g1,13032:8527648,38182203 -g1,13032:9792231,38182203 -g1,13032:10108377,38182203 -g1,13032:10424523,38182203 -g1,13032:10740669,38182203 -g1,13032:11056815,38182203 -g1,13032:12005252,38182203 -g1,13032:14218272,38182203 -g1,13032:14534418,38182203 -g1,13032:14850564,38182203 -g1,13032:15166710,38182203 -g1,13032:15482856,38182203 -g1,13032:16431293,38182203 -g1,13032:16747439,38182203 -g1,13032:17063585,38182203 -g1,13032:17379731,38182203 -h1,13032:18328168,38182203:0,0,0 -k1,13032:32583029,38182203:14254861 -g1,13032:32583029,38182203 -) -(1,13032:6630773,38848381:25952256,388497,9436 -h1,13032:6630773,38848381:0,0,0 -g1,13032:7579210,38848381 -g1,13032:9792230,38848381 -g1,13032:12005250,38848381 -g1,13032:14218270,38848381 -g1,13032:14534416,38848381 -g1,13032:16431290,38848381 -g1,13032:16747436,38848381 -h1,13032:18328164,38848381:0,0,0 -k1,13032:32583029,38848381:14254865 -g1,13032:32583029,38848381 -) -(1,13032:6630773,39514559:25952256,379060,0 -h1,13032:6630773,39514559:0,0,0 -h1,13032:7263064,39514559:0,0,0 -k1,13032:32583028,39514559:25319964 -g1,13032:32583028,39514559 -) -(1,13032:6630773,40180737:25952256,410518,7863 -h1,13032:6630773,40180737:0,0,0 -g1,13032:7579210,40180737 -h1,13032:11689104,40180737:0,0,0 -k1,13032:32583028,40180737:20893924 -g1,13032:32583028,40180737 -) -(1,13032:6630773,40846915:25952256,404226,76021 -h1,13032:6630773,40846915:0,0,0 -g1,13032:7579210,40846915 -g1,13032:7895356,40846915 -g1,13032:8211502,40846915 -g1,13032:8527648,40846915 -g1,13032:8843794,40846915 -g1,13032:9159940,40846915 -g1,13032:9476086,40846915 -g1,13032:9792232,40846915 -g1,13032:10108378,40846915 -g1,13032:10424524,40846915 -g1,13032:10740670,40846915 -g1,13032:11056816,40846915 -g1,13032:11372962,40846915 -g1,13032:14218273,40846915 -g1,13032:15799002,40846915 -g1,13032:17695876,40846915 -g1,13032:18328168,40846915 -g1,13032:20225042,40846915 -k1,13032:20225042,40846915:0 -h1,13032:22754207,40846915:0,0,0 -k1,13032:32583029,40846915:9828822 -g1,13032:32583029,40846915 -) -(1,13032:6630773,41513093:25952256,404226,101187 -h1,13032:6630773,41513093:0,0,0 -g1,13032:7579210,41513093 -g1,13032:11372958,41513093 -g1,13032:11689104,41513093 -g1,13032:14218270,41513093 -g1,13032:14534416,41513093 -g1,13032:14850562,41513093 -g1,13032:15166708,41513093 -g1,13032:15482854,41513093 -g1,13032:17695874,41513093 -g1,13032:18012020,41513093 -g1,13032:20225040,41513093 -g1,13032:20541186,41513093 -g1,13032:21173478,41513093 -g1,13032:23070352,41513093 -h1,13032:24018789,41513093:0,0,0 -k1,13032:32583029,41513093:8564240 -g1,13032:32583029,41513093 -) -(1,13032:6630773,42179271:25952256,388497,101187 -h1,13032:6630773,42179271:0,0,0 -g1,13032:7579210,42179271 -g1,13032:9792230,42179271 -g1,13032:10108376,42179271 -g1,13032:10424522,42179271 -g1,13032:10740668,42179271 -g1,13032:11056814,42179271 -g1,13032:11372960,42179271 -g1,13032:11689106,42179271 -g1,13032:12005252,42179271 -g1,13032:14218272,42179271 -g1,13032:14534418,42179271 -g1,13032:14850564,42179271 -g1,13032:15166710,42179271 -g1,13032:15482856,42179271 -g1,13032:17695876,42179271 -g1,13032:18012022,42179271 -g1,13032:18328168,42179271 -g1,13032:20225042,42179271 -g1,13032:20541188,42179271 -g1,13032:20857334,42179271 -g1,13032:21173480,42179271 -h1,13032:22754208,42179271:0,0,0 -k1,13032:32583029,42179271:9828821 -g1,13032:32583029,42179271 -) -(1,13032:6630773,42845449:25952256,388497,101187 -h1,13032:6630773,42845449:0,0,0 -g1,13032:7579210,42845449 -g1,13032:9792230,42845449 -g1,13032:10108376,42845449 -g1,13032:10424522,42845449 -g1,13032:10740668,42845449 -g1,13032:11056814,42845449 -g1,13032:11372960,42845449 -g1,13032:14218271,42845449 -g1,13032:14534417,42845449 -g1,13032:14850563,42845449 -g1,13032:15166709,42845449 -g1,13032:15482855,42845449 -g1,13032:17695875,42845449 -g1,13032:18012021,42845449 -g1,13032:20225041,42845449 -g1,13032:23070352,42845449 -h1,13032:24018789,42845449:0,0,0 -k1,13032:32583029,42845449:8564240 -g1,13032:32583029,42845449 -) -(1,13032:6630773,43511627:25952256,388497,101187 -h1,13032:6630773,43511627:0,0,0 -g1,13032:7579210,43511627 -g1,13032:9792230,43511627 -g1,13032:10108376,43511627 -g1,13032:10424522,43511627 -g1,13032:10740668,43511627 -g1,13032:11056814,43511627 -g1,13032:11372960,43511627 -g1,13032:11689106,43511627 -g1,13032:14218272,43511627 -g1,13032:14534418,43511627 -g1,13032:14850564,43511627 -g1,13032:15166710,43511627 -g1,13032:15482856,43511627 -g1,13032:17695876,43511627 -g1,13032:18012022,43511627 -g1,13032:20225042,43511627 -g1,13032:23070353,43511627 -h1,13032:24018790,43511627:0,0,0 -k1,13032:32583029,43511627:8564239 -g1,13032:32583029,43511627 -) -(1,13032:6630773,44177805:25952256,388497,101187 -h1,13032:6630773,44177805:0,0,0 -g1,13032:7579210,44177805 -g1,13032:9792230,44177805 -g1,13032:10108376,44177805 -g1,13032:10424522,44177805 -g1,13032:10740668,44177805 -g1,13032:11056814,44177805 -g1,13032:11372960,44177805 -g1,13032:14218271,44177805 -g1,13032:14534417,44177805 -g1,13032:14850563,44177805 -g1,13032:15166709,44177805 -g1,13032:15482855,44177805 -g1,13032:17695875,44177805 -g1,13032:18012021,44177805 -g1,13032:20225041,44177805 -g1,13032:23070352,44177805 -h1,13032:24018789,44177805:0,0,0 -k1,13032:32583029,44177805:8564240 -g1,13032:32583029,44177805 -) -(1,13032:6630773,44843983:25952256,388497,101187 -h1,13032:6630773,44843983:0,0,0 -g1,13032:7579210,44843983 -g1,13032:9792230,44843983 -g1,13032:10108376,44843983 -g1,13032:10424522,44843983 -g1,13032:10740668,44843983 -g1,13032:11056814,44843983 -g1,13032:11372960,44843983 -g1,13032:11689106,44843983 -g1,13032:12005252,44843983 -g1,13032:14218272,44843983 -g1,13032:14534418,44843983 -g1,13032:14850564,44843983 -g1,13032:15166710,44843983 -g1,13032:15482856,44843983 -g1,13032:17695876,44843983 -g1,13032:18012022,44843983 -g1,13032:18328168,44843983 -g1,13032:20225042,44843983 -g1,13032:20541188,44843983 -g1,13032:20857334,44843983 -g1,13032:21173480,44843983 -h1,13032:22754208,44843983:0,0,0 -k1,13032:32583029,44843983:9828821 -g1,13032:32583029,44843983 -) -(1,13032:6630773,45510161:25952256,379060,0 -h1,13032:6630773,45510161:0,0,0 -g1,13032:7579210,45510161 -k1,13032:7579210,45510161:0 -h1,13032:8527648,45510161:0,0,0 -k1,13032:32583028,45510161:24055380 -g1,13032:32583028,45510161 -) -] -) -g1,13033:32583029,45510161 -g1,13033:6630773,45510161 -g1,13033:6630773,45510161 -g1,13033:32583029,45510161 -g1,13033:32583029,45510161 -) -] -(1,13033:32583029,45706769:0,0,0 -g1,13033:32583029,45706769 -) -) -] -(1,13033:6630773,47279633:25952256,0,0 -h1,13033:6630773,47279633:25952256,0,0 -) -] -(1,13033:4262630,4025873:0,0,0 -[1,13033:-473656,4025873:0,0,0 -(1,13033:-473656,-710413:0,0,0 -(1,13033:-473656,-710413:0,0,0 -g1,13033:-473656,-710413 -) -g1,13033:-473656,-710413 -) -] -) -] -!29904 -}223 -Input:1966:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1967:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1968:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1969:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1970:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1971:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1972:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1973:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1974:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1975:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!952 -{224 -[1,13092:4262630,47279633:28320399,43253760,0 -(1,13092:4262630,4025873:0,0,0 -[1,13092:-473656,4025873:0,0,0 -(1,13092:-473656,-710413:0,0,0 -(1,13092:-473656,-644877:0,0,0 -k1,13092:-473656,-644877:-65536 +[1,12578:3078558,4812305:0,0,0 +(1,12578:3078558,49800853:0,16384,2228224 +k1,12578:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,12578:2537886,49800853:1179648,16384,0 +) +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,12578:3078558,51504789:16384,1179648,0 +) +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 +) +] +) +) +) +] +[1,12578:3078558,4812305:0,0,0 +(1,12578:3078558,49800853:0,16384,2228224 +g1,12578:29030814,49800853 +g1,12578:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,12578:36151628,51504789:16384,1179648,0 +) +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 +) +] +) +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,12578:37855564,49800853:1179648,16384,0 +) +) +k1,12578:3078556,49800853:-34777008 +) +] +g1,12578:6630773,4812305 +k1,12578:19540057,4812305:11713907 +g1,12578:21162728,4812305 +g1,12578:21985204,4812305 +g1,12578:24539797,4812305 +g1,12578:25949476,4812305 +g1,12578:28728857,4812305 +g1,12578:29852144,4812305 +) +) +] +[1,12578:6630773,45706769:25952256,40108032,0 +(1,12578:6630773,45706769:25952256,40108032,0 +(1,12578:6630773,45706769:0,0,0 +g1,12578:6630773,45706769 +) +[1,12578:6630773,45706769:25952256,40108032,0 +(1,12543:6630773,6254097:25952256,513147,134348 +k1,12542:7489531,6254097:242720 +k1,12542:8147051,6254097:242677 +k1,12542:10400416,6254097:242720 +k1,12542:10998996,6254097:242720 +k1,12542:13229424,6254097:242721 +k1,12542:14159617,6254097:242720 +k1,12542:16535534,6254097:242720 +k1,12542:18159098,6254097:242720 +k1,12542:20361345,6254097:242721 +k1,12542:23306114,6254097:242720 +k1,12542:24567919,6254097:242720 +k1,12542:26373673,6254097:242720 +k1,12542:27635479,6254097:242721 +k1,12542:29865906,6254097:242720 +k1,12542:32583029,6254097:0 +) +(1,12543:6630773,7119177:25952256,513147,134348 +k1,12542:7922768,7119177:192301 +k1,12542:9306515,7119177:192302 +k1,12542:10517901,7119177:192301 +k1,12542:12553074,7119177:192301 +k1,12542:13404667,7119177:192301 +k1,12542:15531592,7119177:192302 +k1,12542:16742978,7119177:192301 +k1,12542:19096656,7119177:192301 +k1,12542:20117988,7119177:192302 +k1,12542:22615190,7119177:192301 +k1,12542:24010732,7119177:192301 +k1,12542:26190740,7119177:192301 +k1,12542:28614543,7119177:192302 +k1,12542:31591469,7119177:192301 +k1,12542:32583029,7119177:0 +) +(1,12543:6630773,7984257:25952256,513147,134348 +g1,12542:9787642,7984257 +g1,12542:10614706,7984257 +g1,12542:11833020,7984257 +g1,12542:14648446,7984257 +g1,12542:15716027,7984257 +g1,12542:17575938,7984257 +g1,12542:18794252,7984257 +g1,12542:21146994,7984257 +g1,12542:24330733,7984257 +g1,12542:26043188,7984257 +g1,12542:26929890,7984257 +g1,12542:29447127,7984257 +g1,12542:30297784,7984257 +k1,12543:32583029,7984257:722211 +g1,12543:32583029,7984257 +) +(1,12558:6630773,12706949:25952256,3867448,0 +k1,12558:7763531,12706949:1132758 +(1,12544:7763531,12706949:0,0,0 +g1,12544:7763531,12706949 +g1,12544:7763531,12706949 +g1,12544:7435851,12706949 +(1,12544:7435851,12706949:0,0,0 +) +g1,12544:7763531,12706949 +) +(1,12556:7763531,12706949:23686741,3867448,0 +g1,12556:10665772,12706949 +(1,12556:10665772,9467955:0,0,0 +(1,12556:10665772,9467955:0,0,0 +g1,12546:10665772,9467955 +(1,12547:10665772,9467955:0,0,0 +(1,12547:10665772,9467955:0,0,0 +g1,12547:10665772,9467955 +g1,12547:10665772,9467955 +g1,12547:10665772,9467955 +g1,12547:10665772,9467955 +g1,12547:10665772,9467955 +(1,12547:10665772,9467955:0,0,0 +(1,12547:10665772,9467955:5385094,461832,113835 +(1,12547:10665772,9467955:5385094,461832,113835 +g1,12547:12566775,9467955 +) +g1,12547:16050866,9467955 +) +) +g1,12547:10665772,9467955 +g1,12547:10665772,9467955 +) +) +g1,12547:10665772,9467955 +g1,12548:10665772,9467955 +(1,12548:10665772,9467955:0,0,0 +(1,12548:10665772,9467955:0,0,0 +g1,12548:10665772,9467955 +g1,12548:10665772,9467955 +g1,12548:10665772,9467955 +g1,12548:10665772,9467955 +g1,12548:10665772,9467955 +(1,12548:10665772,9467955:0,0,0 +(1,12548:10665772,9467955:3574334,454754,7077 +(1,12548:10665772,9467955:3574334,454754,7077 +) +g1,12548:14240106,9467955 +) +) +g1,12548:10665772,9467955 +g1,12548:10665772,9467955 +) +) +(1,12549:10665772,9467955:0,0,0 +(1,12549:10665772,9467955:0,0,0 +g1,12549:10665772,9467955 +g1,12549:10665772,9467955 +g1,12549:10665772,9467955 +g1,12549:10665772,9467955 +g1,12549:10665772,9467955 +(1,12549:10665772,9467955:0,0,0 +(1,12549:10665772,9467955:4207806,461832,120913 +(1,12549:10665772,9467955:4207806,461832,120913 +g1,12549:12534925,9467955 +) +g1,12549:14873578,9467955 +) +) +g1,12549:10665772,9467955 +g1,12549:10665772,9467955 +) +) +g1,12549:10665772,9467955 +(1,12550:10665772,9467955:0,0,0 +(1,12550:10665772,9467955:0,0,0 +g1,12550:10665772,9467955 +g1,12550:10665772,9467955 +g1,12550:10665772,9467955 +g1,12550:10665772,9467955 +g1,12550:10665772,9467955 +(1,12550:10665772,9467955:0,0,0 +(1,12550:10665772,9467955:3387360,461832,113835 +(1,12550:10665772,9467955:3387360,461832,113835 +g1,12550:12301355,9467955 +) +g1,12550:14053132,9467955 +) +) +g1,12550:10665772,9467955 +g1,12550:10665772,9467955 +) +) +g1,12550:10665772,9467955 +(1,12551:10665772,9467955:0,0,0 +(1,12551:10665772,9467955:0,0,0 +g1,12551:10665772,9467955 +g1,12551:10665772,9467955 +g1,12551:10665772,9467955 +g1,12551:10665772,9467955 +g1,12551:10665772,9467955 +(1,12551:10665772,9467955:0,0,0 +(1,12551:10665772,9467955:4229039,454754,113835 +(1,12551:10665772,9467955:4229039,454754,113835 +g1,12551:12481841,9467955 +) +g1,12551:14894811,9467955 +) +) +g1,12551:10665772,9467955 +g1,12551:10665772,9467955 +) +) +g1,12551:10665772,9467955 +g1,12552:10665772,9467955 +g1,12552:10665772,9467955 +g1,12552:10665772,9467955 +g1,12552:10665772,9467955 +g1,12552:10665772,9467955 +g1,12552:10665772,9467955 +g1,12553:10665772,9467955 +g1,12553:10665772,9467955 +g1,12553:10665772,9467955 +g1,12553:10665772,9467955 +g1,12553:10665772,9467955 +g1,12553:10665772,9467955 +g1,12554:10665772,9467955 +g1,12554:10665772,9467955 +g1,12554:10665772,9467955 +g1,12554:10665772,9467955 +g1,12554:10665772,9467955 +g1,12554:10665772,9467955 +g1,12555:10665772,9467955 +g1,12555:10665772,9467955 +g1,12555:10665772,9467955 +g1,12555:10665772,9467955 +g1,12555:10665772,9467955 +g1,12555:10665772,9467955 +g1,12556:10665772,9467955 +g1,12556:10665772,9467955 +) +g1,12556:10665772,9467955 +) +) +g1,12558:31450272,12706949 +k1,12558:32583029,12706949:1132757 +) +(1,12561:6630773,14227389:25952256,513147,138281 +h1,12560:6630773,14227389:983040,0,0 +k1,12560:10061909,14227389:186449 +k1,12560:11239917,14227389:186448 +k1,12560:14516389,14227389:186449 +k1,12560:16438230,14227389:186448 +k1,12560:18612386,14227389:186449 +k1,12560:21672589,14227389:186449 +k1,12560:23352603,14227389:186448 +k1,12560:24225214,14227389:186449 +h1,12560:24225214,14227389:0,0,0 +k1,12560:25028479,14227389:388323 +k1,12560:25831745,14227389:388324 +k1,12560:26433136,14227389:186449 +k1,12560:28505055,14227389:186448 +k1,12560:29559856,14227389:186449 +k1,12560:31158605,14227389:186448 +k1,12560:32031216,14227389:186449 +$1,12560:32031216,14227389 +$1,12560:32583029,14227389 +k1,12561:32583029,14227389:0 +) +(1,12561:6630773,15092469:25952256,513147,134348 +k1,12560:7394158,15092469:231888 +k1,12560:10704272,15092469:231888 +k1,12560:11697689,15092469:231889 +$1,12560:11697689,15092469 +$1,12560:12200350,15092469 +k1,12560:12605908,15092469:231888 +k1,12560:13791345,15092469:231888 +k1,12560:15115718,15092469:231888 +k1,12560:16297878,15092469:231888 +k1,12560:21349939,15092469:231888 +k1,12560:22773273,15092469:231889 +k1,12560:24038664,15092469:231888 +k1,12560:29552098,15092469:231888 +k1,12560:30435414,15092469:231888 +k1,12560:32583029,15092469:0 +) +(1,12561:6630773,15957549:25952256,530548,134348 +k1,12560:7564616,15957549:167727 +k1,12560:9575215,15957549:167727 +k1,12560:10394370,15957549:167727 +k1,12560:11581182,15957549:167727 +k1,12560:12823044,15957549:167727 +k1,12560:14182216,15957549:167727 +k1,12560:15885452,15957549:167727 +k1,12560:16712471,15957549:167727 +k1,12560:17899283,15957549:167727 +k1,12560:19498316,15957549:167727 +h1,12560:19705410,15957549:0,0,0 +k1,12560:20668842,15957549:167726 +k1,12560:24633070,15957549:167727 +h1,12560:24840164,15957549:0,0,0 +k1,12560:27264207,15957549:349331 +k1,12560:28028480,15957549:349331 +k1,12560:30651683,15957549:167727 +k1,12560:32583029,15957549:0 +) +(1,12561:6630773,16822629:25952256,513147,134348 +k1,12560:9727786,16822629:223259 +k1,12560:10942605,16822629:223259 +k1,12560:12679091,16822629:223260 +k1,12560:13518388,16822629:223259 +k1,12560:16503990,16822629:223259 +k1,12560:19600347,16822629:223259 +k1,12560:21758229,16822629:223259 +k1,12560:22640780,16822629:223259 +k1,12560:25355719,16822629:223260 +k1,12560:28277095,16822629:223259 +k1,12560:29691799,16822629:223259 +k1,12560:31436804,16822629:223259 +k1,12560:32583029,16822629:0 +) +(1,12561:6630773,17687709:25952256,513147,134348 +$1,12560:6951244,17687709 +k1,12560:8735735,17687709:206384 +k1,12560:10138807,17687709:206385 +k1,12560:12429236,17687709:206384 +k1,12560:13294912,17687709:206384 +k1,12560:15489003,17687709:206384 +k1,12560:18569142,17687709:206385 +k1,12560:19307023,17687709:206384 +k1,12560:22794139,17687709:206384 +k1,12560:26625319,17687709:206384 +k1,12560:28265632,17687709:206385 +k1,12560:28886852,17687709:206377 +k1,12560:30284681,17687709:206384 +k1,12561:32583029,17687709:0 +) +(1,12561:6630773,18552789:25952256,505283,134348 +k1,12560:8018498,18552789:248054 +k1,12560:12839653,18552789:248053 +k1,12560:16348778,18552789:248054 +k1,12560:19680956,18552789:248054 +k1,12560:22863712,18552789:248054 +k1,12560:24620404,18552789:248053 +k1,12560:25960943,18552789:248054 +k1,12560:26740494,18552789:248054 +k1,12560:28054818,18552789:248053 +k1,12560:31391584,18552789:248054 +k1,12560:32583029,18552789:0 +) +(1,12561:6630773,19417869:25952256,513147,134348 +k1,12560:9045502,19417869:183228 +k1,12560:12139183,19417869:183227 +k1,12560:14474613,19417869:183228 +k1,12560:15676925,19417869:183227 +k1,12560:17481514,19417869:183228 +k1,12560:19748786,19417869:183227 +k1,12560:20583442,19417869:183228 +k1,12560:22448324,19417869:183228 +k1,12560:23650636,19417869:183227 +k1,12560:27443587,19417869:183228 +k1,12560:28286106,19417869:183227 +k1,12560:30866641,19417869:183228 +k1,12560:32583029,19417869:0 +) +(1,12561:6630773,20282949:25952256,513147,134348 +k1,12560:7513018,20282949:222953 +k1,12560:10227651,20282949:222954 +k1,12560:11268493,20282949:222953 +k1,12560:13093147,20282949:222954 +k1,12560:15308394,20282949:222953 +k1,12560:16147385,20282949:222953 +k1,12560:16958852,20282949:222954 +k1,12560:19169512,20282949:222953 +k1,12560:22266220,20282949:222954 +k1,12560:23480733,20282949:222953 +k1,12560:25993514,20282949:222953 +k1,12560:27407913,20282949:222954 +k1,12560:28735148,20282949:222953 +k1,12560:29705868,20282949:222954 +k1,12560:31966991,20282949:222953 +k1,12560:32583029,20282949:0 +) +(1,12561:6630773,21148029:25952256,513147,134348 +k1,12560:9785424,21148029:139340 +k1,12560:10974650,21148029:139339 +k1,12560:13392677,21148029:139340 +h1,12560:14761724,21148029:0,0,0 +k1,12560:14901063,21148029:139339 +k1,12560:15849773,21148029:139340 +k1,12560:17487265,21148029:139339 +h1,12560:18682642,21148029:0,0,0 +k1,12560:18821982,21148029:139340 +k1,12560:19908972,21148029:139339 +k1,12560:20404172,21148029:139340 +k1,12560:23098760,21148029:139339 +k1,12560:26609927,21148029:139340 +k1,12560:27408558,21148029:139339 +k1,12560:29535605,21148029:139340 +k1,12561:32583029,21148029:0 +k1,12561:32583029,21148029:0 +) +(1,12563:6630773,22013109:25952256,513147,134348 +h1,12562:6630773,22013109:983040,0,0 +k1,12562:10852537,22013109:275841 +k1,12562:12783162,22013109:275841 +k1,12562:13590499,22013109:275840 +k1,12562:15558480,22013109:275841 +k1,12562:18833904,22013109:275841 +k1,12562:22217462,22013109:275841 +k1,12562:23440954,22013109:275841 +k1,12562:25429250,22013109:275840 +k1,12562:27692798,22013109:275841 +k1,12562:30201451,22013109:275841 +k1,12562:32583029,22013109:0 +) +(1,12563:6630773,22878189:25952256,513147,134348 +k1,12562:7498633,22878189:251822 +k1,12562:10822783,22878189:251822 +k1,12562:14158729,22878189:251822 +k1,12562:15026589,22878189:251822 +k1,12562:16880111,22878189:251822 +k1,12562:18829315,22878189:251822 +k1,12562:20100223,22878189:251823 +k1,12562:22170669,22878189:251822 +k1,12562:25330979,22878189:251822 +k1,12562:27763839,22878189:251822 +k1,12562:30696084,22878189:251822 +k1,12562:31563944,22878189:251822 +k1,12562:32583029,22878189:0 +) +(1,12563:6630773,23743269:25952256,505283,134348 +k1,12562:9912653,23743269:144672 +k1,12562:11217311,23743269:144671 +k1,12562:11978021,23743269:144672 +k1,12562:13141778,23743269:144672 +k1,12562:15902647,23743269:144672 +k1,12562:18384987,23743269:144671 +k1,12562:21314284,23743269:144672 +(1,12562:21314284,23743269:0,452978,115847 +r1,12578:24486244,23743269:3171960,568825,115847 +k1,12562:21314284,23743269:-3171960 +) +(1,12562:21314284,23743269:3171960,452978,115847 +k1,12562:21314284,23743269:3277 +h1,12562:24482967,23743269:0,411205,112570 +) +k1,12562:24804586,23743269:144672 +(1,12562:24804586,23743269:0,452978,115847 +r1,12578:27273123,23743269:2468537,568825,115847 +k1,12562:24804586,23743269:-2468537 +) +(1,12562:24804586,23743269:2468537,452978,115847 +k1,12562:24804586,23743269:3277 +h1,12562:27269846,23743269:0,411205,112570 +) +k1,12562:27417795,23743269:144672 +k1,12562:28753911,23743269:144671 +(1,12562:28753911,23743269:0,452978,115847 +r1,12578:30870736,23743269:2116825,568825,115847 +k1,12562:28753911,23743269:-2116825 +) +(1,12562:28753911,23743269:2116825,452978,115847 +k1,12562:28753911,23743269:3277 +h1,12562:30867459,23743269:0,411205,112570 +) +k1,12562:31189078,23743269:144672 +k1,12562:32583029,23743269:0 +) +(1,12563:6630773,24608349:25952256,505283,115847 +k1,12562:9133002,24608349:270728 +k1,12562:11105700,24608349:270728 +k1,12562:14161053,24608349:270728 +k1,12562:15925347,24608349:270728 +k1,12562:16882236,24608349:270727 +(1,12562:16882236,24608349:0,459977,115847 +r1,12578:18999061,24608349:2116825,575824,115847 +k1,12562:16882236,24608349:-2116825 +) +(1,12562:16882236,24608349:2116825,459977,115847 +k1,12562:16882236,24608349:3277 +h1,12562:18995784,24608349:0,411205,112570 +) +k1,12562:19443459,24608349:270728 +(1,12562:19443459,24608349:0,452978,115847 +r1,12578:23318843,24608349:3875384,568825,115847 +k1,12562:19443459,24608349:-3875384 +) +(1,12562:19443459,24608349:3875384,452978,115847 +k1,12562:19443459,24608349:3277 +h1,12562:23315566,24608349:0,411205,112570 +) +k1,12562:23763241,24608349:270728 +(1,12562:23763241,24608349:0,459977,115847 +r1,12578:26583490,24608349:2820249,575824,115847 +k1,12562:23763241,24608349:-2820249 +) +(1,12562:23763241,24608349:2820249,459977,115847 +k1,12562:23763241,24608349:3277 +h1,12562:26580213,24608349:0,411205,112570 +) +k1,12562:27027888,24608349:270728 +(1,12562:27027888,24608349:0,452978,115847 +r1,12578:30199848,24608349:3171960,568825,115847 +k1,12562:27027888,24608349:-3171960 +) +(1,12562:27027888,24608349:3171960,452978,115847 +k1,12562:27027888,24608349:3277 +h1,12562:30196571,24608349:0,411205,112570 +) +k1,12562:30644246,24608349:270728 +(1,12562:30644246,24608349:0,452978,115847 +r1,12578:32409359,24608349:1765113,568825,115847 +k1,12562:30644246,24608349:-1765113 +) +(1,12562:30644246,24608349:1765113,452978,115847 +k1,12562:30644246,24608349:3277 +h1,12562:32406082,24608349:0,411205,112570 +) +k1,12563:32583029,24608349:0 +) +(1,12563:6630773,25473429:25952256,505283,126483 +(1,12562:6630773,25473429:0,452978,115847 +r1,12578:8395886,25473429:1765113,568825,115847 +k1,12562:6630773,25473429:-1765113 +) +(1,12562:6630773,25473429:1765113,452978,115847 +k1,12562:6630773,25473429:3277 +h1,12562:8392609,25473429:0,411205,112570 +) +k1,12562:8680879,25473429:284993 +k1,12562:11253079,25473429:284993 +k1,12562:12823888,25473429:284993 +k1,12562:16066521,25473429:284993 +k1,12562:19710235,25473429:284994 +k1,12562:22779853,25473429:284993 +k1,12562:24401780,25473429:284993 +k1,12562:25434539,25473429:284993 +k1,12562:28677172,25473429:284993 +k1,12562:31896867,25473429:284993 +k1,12562:32583029,25473429:0 +) +(1,12563:6630773,26338509:25952256,513147,134348 +k1,12562:8813340,26338509:194860 +k1,12562:9695672,26338509:194859 +k1,12562:12180360,26338509:194860 +k1,12562:13366779,26338509:194859 +k1,12562:15944528,26338509:194860 +k1,12562:17707009,26338509:194860 +k1,12562:19457037,26338509:194859 +(1,12562:19457037,26338509:0,452978,115847 +r1,12578:20870438,26338509:1413401,568825,115847 +k1,12562:19457037,26338509:-1413401 +) +(1,12562:19457037,26338509:1413401,452978,115847 +k1,12562:19457037,26338509:3277 +h1,12562:20867161,26338509:0,411205,112570 +) +k1,12562:21238968,26338509:194860 +k1,12562:23130555,26338509:194860 +k1,12562:24516859,26338509:194859 +k1,12562:26413689,26338509:194860 +k1,12562:30536121,26338509:194859 +k1,12562:31835263,26338509:194860 +k1,12562:32583029,26338509:0 +) +(1,12563:6630773,27203589:25952256,505283,134348 +k1,12562:9024557,27203589:189808 +k1,12562:9897250,27203589:189808 +k1,12562:13295702,27203589:189809 +k1,12562:19122262,27203589:189808 +k1,12562:21010108,27203589:189808 +k1,12562:23671935,27203589:189809 +k1,12562:28382417,27203589:189808 +k1,12562:29591310,27203589:189808 +k1,12562:32583029,27203589:0 +) +(1,12563:6630773,28068669:25952256,513147,134348 +k1,12562:7420088,28068669:173277 +k1,12562:8796606,28068669:173277 +k1,12562:11387506,28068669:173277 +k1,12562:12665066,28068669:173278 +k1,12562:13586109,28068669:173277 +k1,12562:16337572,28068669:173277 +k1,12562:17162277,28068669:173277 +k1,12562:18354639,28068669:173277 +k1,12562:20462539,28068669:173277 +k1,12562:21295108,28068669:173277 +k1,12562:23184773,28068669:173277 +k1,12562:24017343,28068669:173278 +k1,12562:26508628,28068669:173277 +k1,12562:27748176,28068669:173277 +k1,12562:31011476,28068669:173277 +k1,12563:32583029,28068669:0 +k1,12563:32583029,28068669:0 +) +v1,12565:6630773,28933749:0,393216,0 +(1,12566:6630773,32828850:25952256,4288317,0 +g1,12566:6630773,32828850 +g1,12566:6237557,32828850 +r1,12578:6368629,32828850:131072,4288317,0 +g1,12566:6567858,32828850 +g1,12566:6764466,32828850 +[1,12566:6764466,32828850:25818563,4288317,0 +(1,12566:6764466,29242047:25818563,701514,196608 +(1,12565:6764466,29242047:0,701514,196608 +r1,12578:8010564,29242047:1246098,898122,196608 +k1,12565:6764466,29242047:-1246098 +) +(1,12565:6764466,29242047:1246098,701514,196608 +) +k1,12565:8234070,29242047:223506 +k1,12565:8561750,29242047:327680 +k1,12565:10627473,29242047:223506 +k1,12565:12838685,29242047:223505 +k1,12565:15352019,29242047:223506 +k1,12565:16191563,29242047:223506 +k1,12565:16829888,29242047:223482 +k1,12565:18044953,29242047:223505 +k1,12565:19415994,29242047:223506 +k1,12565:22779330,29242047:223506 +k1,12565:24194281,29242047:223506 +k1,12565:26755456,29242047:223506 +k1,12565:27334822,29242047:223506 +k1,12565:29068277,29242047:223505 +k1,12565:29951075,29242047:223506 +k1,12565:31193666,29242047:223506 +k1,12565:32583029,29242047:0 +) +(1,12566:6764466,30107127:25818563,513147,126483 +k1,12565:7669871,30107127:253977 +k1,12565:9809319,30107127:253977 +k1,12565:11082381,30107127:253977 +k1,12565:13324066,30107127:253978 +k1,12565:14785216,30107127:253977 +k1,12565:15900336,30107127:253977 +k1,12565:16840475,30107127:253977 +k1,12565:18373059,30107127:253977 +k1,12565:19313198,30107127:253977 +k1,12565:22461246,30107127:253978 +k1,12565:23906668,30107127:253977 +k1,12565:26804367,30107127:253977 +k1,12565:28525040,30107127:253977 +k1,12565:32583029,30107127:0 +) +(1,12566:6764466,30972207:25818563,513147,134348 +k1,12565:9114234,30972207:176594 +k1,12565:9950120,30972207:176594 +k1,12565:14694574,30972207:176595 +k1,12565:17834051,30972207:176594 +k1,12565:19213886,30972207:176594 +k1,12565:20494762,30972207:176594 +k1,12565:22387090,30972207:176595 +k1,12565:23582769,30972207:176594 +k1,12565:25028140,30972207:176594 +k1,12565:25864026,30972207:176594 +k1,12565:27737348,30972207:176595 +k1,12565:30203770,30972207:176594 +k1,12565:32124932,30972207:176594 +k1,12565:32583029,30972207:0 +) +(1,12566:6764466,31837287:25818563,513147,134348 +k1,12565:8964416,31837287:187995 +k1,12565:11958662,31837287:187994 +k1,12565:13338102,31837287:187995 +k1,12565:14992793,31837287:187995 +k1,12565:18040123,31837287:187994 +k1,12565:19867173,31837287:187995 +k1,12565:20671205,31837287:187994 +k1,12565:21878285,31837287:187995 +k1,12565:24595970,31837287:187995 +k1,12565:25443256,31837287:187994 +k1,12565:26650336,31837287:187995 +k1,12565:28227694,31837287:187995 +k1,12565:29031726,31837287:187994 +k1,12565:30238806,31837287:187995 +k1,12566:32583029,31837287:0 +) +(1,12566:6764466,32702367:25818563,505283,126483 +g1,12565:7378538,32702367 +k1,12566:32583028,32702367:21646540 +g1,12566:32583028,32702367 +) +] +g1,12566:32583029,32828850 +) +h1,12566:6630773,32828850:0,0,0 +(1,12570:6630773,35660010:25952256,32768,229376 +(1,12570:6630773,35660010:0,32768,229376 +(1,12570:6630773,35660010:5505024,32768,229376 +r1,12578:12135797,35660010:5505024,262144,229376 +) +k1,12570:6630773,35660010:-5505024 +) +(1,12570:6630773,35660010:25952256,32768,0 +r1,12578:32583029,35660010:25952256,32768,0 +) +) +(1,12570:6630773,37291862:25952256,606339,161218 +(1,12570:6630773,37291862:1974731,568590,0 +g1,12570:6630773,37291862 +g1,12570:8605504,37291862 +) +g1,12570:11418572,37291862 +g1,12570:13932009,37291862 +k1,12570:32583029,37291862:15782902 +g1,12570:32583029,37291862 +) +(1,12576:6630773,38550158:25952256,513147,126483 +k1,12575:9575372,38550158:154731 +(1,12575:9575372,38550158:0,452978,115847 +r1,12578:10988773,38550158:1413401,568825,115847 +k1,12575:9575372,38550158:-1413401 +) +(1,12575:9575372,38550158:1413401,452978,115847 +k1,12575:9575372,38550158:3277 +h1,12575:10985496,38550158:0,411205,112570 +) +k1,12575:11143505,38550158:154732 +k1,12575:11829733,38550158:154731 +k1,12575:13497691,38550158:154732 +k1,12575:14303850,38550158:154731 +k1,12575:15146054,38550158:154731 +k1,12575:17113512,38550158:154732 +k1,12575:19759922,38550158:154731 +k1,12575:20392410,38550158:154731 +k1,12575:21566227,38550158:154732 +k1,12575:25486657,38550158:154731 +k1,12575:28152729,38550158:154732 +k1,12575:28838957,38550158:154731 +k1,12575:32583029,38550158:0 +) +(1,12576:6630773,39415238:25952256,513147,134348 +k1,12575:7821408,39415238:171550 +k1,12575:8680431,39415238:171550 +k1,12575:9383478,39415238:171550 +k1,12575:9910888,39415238:171550 +k1,12575:13572886,39415238:171551 +k1,12575:14222193,39415238:171550 +k1,12575:15412828,39415238:171550 +k1,12575:19350077,39415238:171550 +k1,12575:22032967,39415238:171550 +k1,12575:22736014,39415238:171550 +k1,12575:23263424,39415238:171550 +k1,12575:25502635,39415238:171550 +k1,12575:26693271,39415238:171551 +k1,12575:27552294,39415238:171550 +k1,12575:28255341,39415238:171550 +k1,12575:29197594,39415238:171550 +k1,12575:31923737,39415238:171550 +k1,12575:32583029,39415238:0 +) +(1,12576:6630773,40280318:25952256,513147,134348 +k1,12575:9500179,40280318:215198 +k1,12575:12564211,40280318:215182 +k1,12575:13395446,40280318:215197 +k1,12575:15470556,40280318:215198 +k1,12575:17702297,40280318:215198 +k1,12575:20852197,40280318:215198 +k1,12575:22722179,40280318:215198 +k1,12575:23468874,40280318:215198 +k1,12575:26156744,40280318:215197 +k1,12575:29100206,40280318:215198 +k1,12575:29974696,40280318:215198 +k1,12575:32583029,40280318:0 +) +(1,12576:6630773,41145398:25952256,513147,134348 +k1,12575:9681474,41145398:235930 +k1,12575:11293004,41145398:235929 +k1,12575:12180362,41145398:235930 +k1,12575:13435376,41145398:235929 +k1,12575:15193052,41145398:235930 +k1,12575:16088273,41145398:235929 +k1,12575:20061721,41145398:235930 +k1,12575:22249312,41145398:235929 +k1,12575:23136670,41145398:235930 +k1,12575:24143302,41145398:235929 +k1,12575:27363742,41145398:235930 +k1,12575:28251099,41145398:235929 +k1,12575:30474736,41145398:235930 +k1,12575:32583029,41145398:0 +) +(1,12576:6630773,42010478:25952256,513147,134348 +k1,12575:11315811,42010478:164364 +k1,12575:13431837,42010478:164364 +k1,12575:17479209,42010478:164364 +k1,12575:19816747,42010478:164364 +k1,12575:20928762,42010478:164364 +k1,12575:22614873,42010478:164365 +k1,12575:23438529,42010478:164364 +k1,12575:27340411,42010478:164364 +k1,12575:28452426,42010478:164364 +k1,12575:30329246,42010478:164364 +k1,12576:32583029,42010478:0 +) +(1,12576:6630773,42875558:25952256,513147,134348 +k1,12575:8085625,42875558:214911 +k1,12575:11346649,42875558:214911 +k1,12575:12665843,42875558:214912 +k1,12575:14347450,42875558:214911 +k1,12575:15178399,42875558:214911 +k1,12575:16412395,42875558:214911 +k1,12575:17994388,42875558:214912 +k1,12575:18868591,42875558:214911 +k1,12575:22400279,42875558:214911 +k1,12575:23806635,42875558:214911 +k1,12575:26629879,42875558:214911 +k1,12575:27592557,42875558:214912 +k1,12575:30981377,42875558:214911 +k1,12575:31812326,42875558:214911 +k1,12575:32583029,42875558:0 +) +(1,12576:6630773,43740638:25952256,513147,134348 +k1,12575:9222086,43740638:156650 +k1,12575:11118105,43740638:156693 +k1,12575:11902632,43740638:156692 +k1,12575:13262566,43740638:156693 +k1,12575:15834260,43740638:156692 +k1,12575:18293888,43740638:156693 +k1,12575:21352515,43740638:156693 +k1,12575:23943828,43740638:156650 +k1,12575:26168836,43740638:156692 +k1,12575:26681389,43740638:156693 +k1,12575:28029526,43740638:156692 +k1,12575:28845511,43740638:156693 +k1,12575:32583029,43740638:0 +) +(1,12576:6630773,44605718:25952256,513147,126483 +g1,12575:8684671,44605718 +g1,12575:9693270,44605718 +g1,12575:10911584,44605718 +g1,12575:12937957,44605718 +g1,12575:15772389,44605718 +g1,12575:17568075,44605718 +g1,12575:18426596,44605718 +k1,12576:32583029,44605718:10998253 +g1,12576:32583029,44605718 +) +] +(1,12578:32583029,45706769:0,0,0 +g1,12578:32583029,45706769 +) +) +] +(1,12578:6630773,47279633:25952256,0,0 +h1,12578:6630773,47279633:25952256,0,0 +) +] +(1,12578:4262630,4025873:0,0,0 +[1,12578:-473656,4025873:0,0,0 +(1,12578:-473656,-710413:0,0,0 +(1,12578:-473656,-710413:0,0,0 +g1,12578:-473656,-710413 +) +g1,12578:-473656,-710413 +) +] +) +] +!27468 +}203 +Input:1878:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1879:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1880:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1881:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1882:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1883:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1884:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1885:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1886:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1887:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1888:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1889:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1890:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1891:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1892:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1893:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1894:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1895:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1704 +{204 +[1,12634:4262630,47279633:28320399,43253760,0 +(1,12634:4262630,4025873:0,0,0 +[1,12634:-473656,4025873:0,0,0 +(1,12634:-473656,-710413:0,0,0 +(1,12634:-473656,-644877:0,0,0 +k1,12634:-473656,-644877:-65536 ) -(1,13092:-473656,4736287:0,0,0 -k1,13092:-473656,4736287:5209943 +(1,12634:-473656,4736287:0,0,0 +k1,12634:-473656,4736287:5209943 ) -g1,13092:-473656,-710413 +g1,12634:-473656,-710413 ) ] ) -[1,13092:6630773,47279633:25952256,43253760,0 -[1,13092:6630773,4812305:25952256,786432,0 -(1,13092:6630773,4812305:25952256,505283,134348 -(1,13092:6630773,4812305:25952256,505283,134348 -g1,13092:3078558,4812305 -[1,13092:3078558,4812305:0,0,0 -(1,13092:3078558,2439708:0,1703936,0 -k1,13092:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,13092:2537886,2439708:1179648,16384,0 +[1,12634:6630773,47279633:25952256,43253760,0 +[1,12634:6630773,4812305:25952256,786432,0 +(1,12634:6630773,4812305:25952256,505283,134348 +(1,12634:6630773,4812305:25952256,505283,134348 +g1,12634:3078558,4812305 +[1,12634:3078558,4812305:0,0,0 +(1,12634:3078558,2439708:0,1703936,0 +k1,12634:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,12634:2537886,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,13092:3078558,1915420:16384,1179648,0 +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,12634:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] ) ) ) ] -[1,13092:3078558,4812305:0,0,0 -(1,13092:3078558,2439708:0,1703936,0 -g1,13092:29030814,2439708 -g1,13092:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,13092:36151628,1915420:16384,1179648,0 +[1,12634:3078558,4812305:0,0,0 +(1,12634:3078558,2439708:0,1703936,0 +g1,12634:29030814,2439708 +g1,12634:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,12634:36151628,1915420:16384,1179648,0 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,13092:37855564,2439708:1179648,16384,0 +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,12634:37855564,2439708:1179648,16384,0 ) ) -k1,13092:3078556,2439708:-34777008 +k1,12634:3078556,2439708:-34777008 ) ] -[1,13092:3078558,4812305:0,0,0 -(1,13092:3078558,49800853:0,16384,2228224 -k1,13092:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,13092:2537886,49800853:1179648,16384,0 +[1,12634:3078558,4812305:0,0,0 +(1,12634:3078558,49800853:0,16384,2228224 +k1,12634:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,12634:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,13092:3078558,51504789:16384,1179648,0 +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,12634:3078558,51504789:16384,1179648,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 ) ] ) ) ) ] -[1,13092:3078558,4812305:0,0,0 -(1,13092:3078558,49800853:0,16384,2228224 -g1,13092:29030814,49800853 -g1,13092:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,13092:36151628,51504789:16384,1179648,0 -) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 -) -] -) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,13092:37855564,49800853:1179648,16384,0 -) -) -k1,13092:3078556,49800853:-34777008 -) -] -g1,13092:6630773,4812305 -g1,13092:6630773,4812305 -g1,13092:8843268,4812305 -g1,13092:10880782,4812305 -g1,13092:13281365,4812305 -k1,13092:31387653,4812305:18106288 -) -) -] -[1,13092:6630773,45706769:25952256,40108032,0 -(1,13092:6630773,45706769:25952256,40108032,0 -(1,13092:6630773,45706769:0,0,0 -g1,13092:6630773,45706769 -) -[1,13092:6630773,45706769:25952256,40108032,0 -v1,13033:6630773,6254097:0,393216,0 -(1,13033:6630773,9233906:25952256,3373025,196608 -g1,13033:6630773,9233906 -g1,13033:6630773,9233906 -g1,13033:6434165,9233906 -(1,13033:6434165,9233906:0,3373025,196608 -r1,13092:32779637,9233906:26345472,3569633,196608 -k1,13033:6434165,9233906:-26345472 -) -(1,13033:6434165,9233906:26345472,3373025,196608 -[1,13033:6630773,9233906:25952256,3176417,0 -(1,13032:6630773,6468007:25952256,410518,107478 -h1,13032:6630773,6468007:0,0,0 -g1,13032:7579210,6468007 -g1,13032:10108376,6468007 -g1,13032:12321396,6468007 -g1,13032:12637542,6468007 -g1,13032:13269834,6468007 -g1,13032:15166709,6468007 -g1,13032:17063583,6468007 -g1,13032:18644312,6468007 -g1,13032:20225041,6468007 -g1,13032:21489625,6468007 -g1,13032:23070354,6468007 -g1,13032:24334938,6468007 -g1,13032:25599521,6468007 -g1,13032:26231813,6468007 -g1,13032:26864105,6468007 -h1,13032:27180251,6468007:0,0,0 -k1,13032:32583029,6468007:5402778 -g1,13032:32583029,6468007 -) -(1,13032:6630773,7134185:25952256,379060,0 -h1,13032:6630773,7134185:0,0,0 -h1,13032:7263064,7134185:0,0,0 -k1,13032:32583028,7134185:25319964 -g1,13032:32583028,7134185 -) -(1,13032:6630773,7800363:25952256,410518,107478 -h1,13032:6630773,7800363:0,0,0 -g1,13032:7579210,7800363 -g1,13032:10424521,7800363 -g1,13032:13269832,7800363 -g1,13032:15482852,7800363 -g1,13032:17379726,7800363 -g1,13032:18328163,7800363 -g1,13032:19276600,7800363 -g1,13032:21805766,7800363 -g1,13032:22754203,7800363 -h1,13032:24967223,7800363:0,0,0 -k1,13032:32583029,7800363:7615806 -g1,13032:32583029,7800363 -) -(1,13032:6630773,8466541:25952256,404226,107478 -h1,13032:6630773,8466541:0,0,0 -g1,13032:7579210,8466541 -g1,13032:10424521,8466541 -g1,13032:13902124,8466541 -g1,13032:14218270,8466541 -g1,13032:19276601,8466541 -g1,13032:22754204,8466541 -g1,13032:23070350,8466541 -h1,13032:24967224,8466541:0,0,0 -k1,13032:32583029,8466541:7615805 -g1,13032:32583029,8466541 -) -(1,13032:6630773,9132719:25952256,404226,101187 -h1,13032:6630773,9132719:0,0,0 -g1,13032:7579210,9132719 -g1,13032:11689104,9132719 -g1,13032:12005250,9132719 -g1,13032:13585979,9132719 -g1,13032:14534416,9132719 -g1,13032:15166708,9132719 -g1,13032:16431291,9132719 -g1,13032:17379728,9132719 -g1,13032:18644311,9132719 -g1,13032:18960457,9132719 -g1,13032:21805769,9132719 -g1,13032:22438061,9132719 -k1,13032:22438061,9132719:0 -h1,13032:24651081,9132719:0,0,0 -k1,13032:32583029,9132719:7931948 -g1,13032:32583029,9132719 -) -] -) -g1,13033:32583029,9233906 -g1,13033:6630773,9233906 -g1,13033:6630773,9233906 -g1,13033:32583029,9233906 -g1,13033:32583029,9233906 -) -h1,13033:6630773,9430514:0,0,0 -(1,13037:6630773,10729909:25952256,513147,115847 -h1,13036:6630773,10729909:983040,0,0 -k1,13036:8522510,10729909:280862 -(1,13036:8522510,10729909:0,459977,115847 -r1,13092:10639335,10729909:2116825,575824,115847 -k1,13036:8522510,10729909:-2116825 -) -(1,13036:8522510,10729909:2116825,459977,115847 -k1,13036:8522510,10729909:3277 -h1,13036:10636058,10729909:0,411205,112570 -) -k1,13036:10920197,10729909:280862 -k1,13036:12069411,10729909:280862 -k1,13036:13863499,10729909:280862 -(1,13036:13863499,10729909:0,452978,115847 -r1,13092:17738883,10729909:3875384,568825,115847 -k1,13036:13863499,10729909:-3875384 -) -(1,13036:13863499,10729909:3875384,452978,115847 -k1,13036:13863499,10729909:3277 -h1,13036:17735606,10729909:0,411205,112570 -) -k1,13036:18193415,10729909:280862 -k1,13036:19891165,10729909:280862 -k1,13036:23133599,10729909:280862 -k1,13036:24362112,10729909:280862 -k1,13036:27835888,10729909:280862 -k1,13036:31591469,10729909:280862 -k1,13036:32583029,10729909:0 -) -(1,13037:6630773,11571397:25952256,513147,126483 -k1,13036:8477679,11571397:269454 -k1,13036:12249376,11571397:269453 -k1,13036:13204992,11571397:269454 -k1,13036:14578728,11571397:269454 -k1,13036:15595947,11571397:269453 -k1,13036:18438344,11571397:269454 -k1,13036:20275419,11571397:269454 -k1,13036:21563958,11571397:269454 -k1,13036:24794983,11571397:269453 -k1,13036:27325429,11571397:269454 -k1,13036:28791570,11571397:269454 -k1,13036:30426138,11571397:269453 -k1,13036:31227089,11571397:269454 -k1,13037:32583029,11571397:0 -) -(1,13037:6630773,12412885:25952256,513147,126483 -k1,13036:9457190,12412885:210875 -k1,13036:10319492,12412885:210874 -k1,13036:11278133,12412885:210875 -k1,13036:13082843,12412885:210874 -k1,13036:14710606,12412885:210875 -k1,13036:17967594,12412885:210875 -k1,13036:19126119,12412885:210874 -k1,13036:20356079,12412885:210875 -k1,13036:21715145,12412885:210875 -k1,13036:25070436,12412885:210874 -k1,13036:26743419,12412885:210875 -k1,13036:27945853,12412885:210874 -k1,13036:31821501,12412885:210875 -k1,13036:32583029,12412885:0 -) -(1,13037:6630773,13254373:25952256,513147,134348 -g1,13036:7849087,13254373 -g1,13036:9413431,13254373 -g1,13036:10271952,13254373 -g1,13036:11490266,13254373 -g1,13036:14443973,13254373 -g1,13036:16303884,13254373 -g1,13036:17694558,13254373 -g1,13036:18960058,13254373 -g1,13036:21118813,13254373 -g1,13036:22265693,13254373 -k1,13037:32583029,13254373:6406147 -g1,13037:32583029,13254373 -) -v1,13039:6630773,14378458:0,393216,0 -(1,13052:6630773,19265050:25952256,5279808,196608 -g1,13052:6630773,19265050 -g1,13052:6630773,19265050 -g1,13052:6434165,19265050 -(1,13052:6434165,19265050:0,5279808,196608 -r1,13092:32779637,19265050:26345472,5476416,196608 -k1,13052:6434165,19265050:-26345472 -) -(1,13052:6434165,19265050:26345472,5279808,196608 -[1,13052:6630773,19265050:25952256,5083200,0 -(1,13041:6630773,14592368:25952256,410518,107478 -(1,13040:6630773,14592368:0,0,0 -g1,13040:6630773,14592368 -g1,13040:6630773,14592368 -g1,13040:6303093,14592368 -(1,13040:6303093,14592368:0,0,0 -) -g1,13040:6630773,14592368 -) -k1,13041:6630773,14592368:0 -k1,13041:6630773,14592368:0 -h1,13041:20857329,14592368:0,0,0 -k1,13041:32583029,14592368:11725700 -g1,13041:32583029,14592368 -) -(1,13051:6630773,15258546:25952256,404226,82312 -(1,13043:6630773,15258546:0,0,0 -g1,13043:6630773,15258546 -g1,13043:6630773,15258546 -g1,13043:6303093,15258546 -(1,13043:6303093,15258546:0,0,0 -) -g1,13043:6630773,15258546 -) -g1,13051:7579210,15258546 -g1,13051:7895356,15258546 -g1,13051:8211502,15258546 -g1,13051:9792231,15258546 -g1,13051:11372960,15258546 -g1,13051:12953689,15258546 -g1,13051:14534418,15258546 -k1,13051:14534418,15258546:0 -h1,13051:15799001,15258546:0,0,0 -k1,13051:32583029,15258546:16784028 -g1,13051:32583029,15258546 -) -(1,13051:6630773,15924724:25952256,388497,9436 -h1,13051:6630773,15924724:0,0,0 -g1,13051:7579210,15924724 -g1,13051:8211502,15924724 -g1,13051:8527648,15924724 -g1,13051:8843794,15924724 -g1,13051:9159940,15924724 -g1,13051:9792232,15924724 -g1,13051:10108378,15924724 -g1,13051:10424524,15924724 -g1,13051:10740670,15924724 -g1,13051:11372962,15924724 -g1,13051:11689108,15924724 -g1,13051:12005254,15924724 -g1,13051:12321400,15924724 -g1,13051:12953692,15924724 -g1,13051:13269838,15924724 -g1,13051:13585984,15924724 -g1,13051:13902130,15924724 -g1,13051:14534422,15924724 -g1,13051:14850568,15924724 -g1,13051:15166714,15924724 -g1,13051:15482860,15924724 -h1,13051:15799006,15924724:0,0,0 -k1,13051:32583030,15924724:16784024 -g1,13051:32583030,15924724 -) -(1,13051:6630773,16590902:25952256,388497,9436 -h1,13051:6630773,16590902:0,0,0 -g1,13051:7579210,16590902 -g1,13051:8211502,16590902 -g1,13051:8527648,16590902 -g1,13051:8843794,16590902 -g1,13051:9159940,16590902 -g1,13051:9792232,16590902 -g1,13051:10108378,16590902 -g1,13051:10424524,16590902 -g1,13051:10740670,16590902 -g1,13051:11372962,16590902 -g1,13051:11689108,16590902 -g1,13051:12005254,16590902 -g1,13051:12321400,16590902 -g1,13051:12953692,16590902 -g1,13051:13269838,16590902 -g1,13051:13585984,16590902 -g1,13051:13902130,16590902 -g1,13051:14534422,16590902 -g1,13051:14850568,16590902 -g1,13051:15166714,16590902 -g1,13051:15482860,16590902 -h1,13051:15799006,16590902:0,0,0 -k1,13051:32583030,16590902:16784024 -g1,13051:32583030,16590902 -) -(1,13051:6630773,17257080:25952256,388497,9436 -h1,13051:6630773,17257080:0,0,0 -g1,13051:7579210,17257080 -g1,13051:8211502,17257080 -g1,13051:8527648,17257080 -g1,13051:8843794,17257080 -g1,13051:9159940,17257080 -g1,13051:9792232,17257080 -g1,13051:10108378,17257080 -g1,13051:10424524,17257080 -g1,13051:10740670,17257080 -g1,13051:11372962,17257080 -g1,13051:11689108,17257080 -g1,13051:12005254,17257080 -g1,13051:12321400,17257080 -g1,13051:12953692,17257080 -g1,13051:13269838,17257080 -g1,13051:13585984,17257080 -g1,13051:13902130,17257080 -g1,13051:14534422,17257080 -g1,13051:14850568,17257080 -g1,13051:15166714,17257080 -g1,13051:15482860,17257080 -h1,13051:15799006,17257080:0,0,0 -k1,13051:32583030,17257080:16784024 -g1,13051:32583030,17257080 -) -(1,13051:6630773,17923258:25952256,388497,9436 -h1,13051:6630773,17923258:0,0,0 -g1,13051:7579210,17923258 -g1,13051:8211502,17923258 -g1,13051:8527648,17923258 -g1,13051:8843794,17923258 -g1,13051:9159940,17923258 -g1,13051:9792232,17923258 -g1,13051:10108378,17923258 -g1,13051:10424524,17923258 -g1,13051:10740670,17923258 -g1,13051:11372962,17923258 -g1,13051:11689108,17923258 -g1,13051:12005254,17923258 -g1,13051:12321400,17923258 -g1,13051:12953692,17923258 -g1,13051:13269838,17923258 -g1,13051:13585984,17923258 -g1,13051:13902130,17923258 -g1,13051:14534422,17923258 -g1,13051:14850568,17923258 -g1,13051:15166714,17923258 -g1,13051:15482860,17923258 -h1,13051:15799006,17923258:0,0,0 -k1,13051:32583030,17923258:16784024 -g1,13051:32583030,17923258 -) -(1,13051:6630773,18589436:25952256,388497,9436 -h1,13051:6630773,18589436:0,0,0 -g1,13051:7579210,18589436 -g1,13051:8211502,18589436 -g1,13051:8527648,18589436 -g1,13051:8843794,18589436 -g1,13051:9159940,18589436 -g1,13051:9792232,18589436 -g1,13051:10108378,18589436 -g1,13051:10424524,18589436 -g1,13051:10740670,18589436 -g1,13051:11372962,18589436 -g1,13051:11689108,18589436 -g1,13051:12005254,18589436 -g1,13051:12321400,18589436 -g1,13051:12953692,18589436 -g1,13051:13269838,18589436 -g1,13051:13585984,18589436 -g1,13051:13902130,18589436 -g1,13051:14534422,18589436 -g1,13051:14850568,18589436 -g1,13051:15166714,18589436 -g1,13051:15482860,18589436 -h1,13051:15799006,18589436:0,0,0 -k1,13051:32583030,18589436:16784024 -g1,13051:32583030,18589436 -) -(1,13051:6630773,19255614:25952256,388497,9436 -h1,13051:6630773,19255614:0,0,0 -g1,13051:7579210,19255614 -g1,13051:8211502,19255614 -g1,13051:8527648,19255614 -g1,13051:8843794,19255614 -g1,13051:9792231,19255614 -g1,13051:10108377,19255614 -g1,13051:10424523,19255614 -g1,13051:11372960,19255614 -g1,13051:11689106,19255614 -g1,13051:12005252,19255614 -g1,13051:12953689,19255614 -g1,13051:13269835,19255614 -g1,13051:13585981,19255614 -g1,13051:14534418,19255614 -g1,13051:14850564,19255614 -g1,13051:15166710,19255614 -k1,13051:15166710,19255614:0 -h1,13051:15799001,19255614:0,0,0 -k1,13051:32583029,19255614:16784028 -g1,13051:32583029,19255614 -) -] -) -g1,13052:32583029,19265050 -g1,13052:6630773,19265050 -g1,13052:6630773,19265050 -g1,13052:32583029,19265050 -g1,13052:32583029,19265050 -) -h1,13052:6630773,19461658:0,0,0 -v1,13056:6630773,21043650:0,393216,0 -(1,13084:6630773,36014663:25952256,15364229,196608 -g1,13084:6630773,36014663 -g1,13084:6630773,36014663 -g1,13084:6434165,36014663 -(1,13084:6434165,36014663:0,15364229,196608 -r1,13092:32779637,36014663:26345472,15560837,196608 -k1,13084:6434165,36014663:-26345472 -) -(1,13084:6434165,36014663:26345472,15364229,196608 -[1,13084:6630773,36014663:25952256,15167621,0 -(1,13058:6630773,21257560:25952256,410518,101187 -(1,13057:6630773,21257560:0,0,0 -g1,13057:6630773,21257560 -g1,13057:6630773,21257560 -g1,13057:6303093,21257560 -(1,13057:6303093,21257560:0,0,0 -) -g1,13057:6630773,21257560 -) -k1,13058:6630773,21257560:0 -h1,13058:11372958,21257560:0,0,0 -k1,13058:32583030,21257560:21210072 -g1,13058:32583030,21257560 -) -(1,13083:6630773,21923738:25952256,379060,0 -(1,13060:6630773,21923738:0,0,0 -g1,13060:6630773,21923738 -g1,13060:6630773,21923738 -g1,13060:6303093,21923738 -(1,13060:6303093,21923738:0,0,0 -) -g1,13060:6630773,21923738 -) -h1,13083:7263064,21923738:0,0,0 -k1,13083:32583028,21923738:25319964 -g1,13083:32583028,21923738 -) -(1,13083:6630773,22589916:25952256,404226,7863 -h1,13083:6630773,22589916:0,0,0 -g1,13083:7579210,22589916 -h1,13083:9159938,22589916:0,0,0 -k1,13083:32583030,22589916:23423092 -g1,13083:32583030,22589916 -) -(1,13083:6630773,23256094:25952256,410518,101187 -h1,13083:6630773,23256094:0,0,0 -k1,13083:7473828,23256094:210764 -k1,13083:10846049,23256094:210764 -k1,13083:11372959,23256094:210764 -k1,13083:13164451,23256094:210764 -k1,13083:13691361,23256094:210764 -k1,13083:15798999,23256094:210764 -k1,13083:17274346,23256094:210764 -k1,13083:17801256,23256094:210764 -k1,13083:22121914,23256094:210764 -k1,13083:25177989,23256094:210764 -k1,13083:25704899,23256094:210764 -k1,13083:29077120,23256094:210764 -k1,13083:29604030,23256094:210764 -h1,13083:33081632,23256094:0,0,0 -k1,13083:33081632,23256094:0 -k1,13083:33081632,23256094:0 -) -(1,13083:6630773,23922272:25952256,379060,0 -h1,13083:6630773,23922272:0,0,0 -h1,13083:7263064,23922272:0,0,0 -k1,13083:32583028,23922272:25319964 -g1,13083:32583028,23922272 -) -(1,13083:6630773,24588450:25952256,404226,6290 -h1,13083:6630773,24588450:0,0,0 -g1,13083:7579210,24588450 -h1,13083:10740667,24588450:0,0,0 -k1,13083:32583029,24588450:21842362 -g1,13083:32583029,24588450 -) -(1,13083:6630773,25254628:25952256,404226,82312 -h1,13083:6630773,25254628:0,0,0 -g1,13083:7579210,25254628 -g1,13083:7895356,25254628 -g1,13083:8211502,25254628 -g1,13083:8527648,25254628 -g1,13083:9792231,25254628 -g1,13083:10108377,25254628 -g1,13083:10424523,25254628 -g1,13083:10740669,25254628 -g1,13083:11056815,25254628 -g1,13083:12005252,25254628 -g1,13083:14218272,25254628 -g1,13083:14534418,25254628 -g1,13083:14850564,25254628 -g1,13083:15166710,25254628 -g1,13083:15482856,25254628 -g1,13083:16431293,25254628 -g1,13083:16747439,25254628 -g1,13083:17063585,25254628 -g1,13083:17379731,25254628 -h1,13083:18328168,25254628:0,0,0 -k1,13083:32583029,25254628:14254861 -g1,13083:32583029,25254628 -) -(1,13083:6630773,25920806:25952256,388497,9436 -h1,13083:6630773,25920806:0,0,0 -g1,13083:7579210,25920806 -g1,13083:9792230,25920806 -g1,13083:12005250,25920806 -g1,13083:14218270,25920806 -g1,13083:14534416,25920806 -g1,13083:16431290,25920806 -g1,13083:16747436,25920806 -h1,13083:18328164,25920806:0,0,0 -k1,13083:32583029,25920806:14254865 -g1,13083:32583029,25920806 -) -(1,13083:6630773,26586984:25952256,379060,0 -h1,13083:6630773,26586984:0,0,0 -h1,13083:7263064,26586984:0,0,0 -k1,13083:32583028,26586984:25319964 -g1,13083:32583028,26586984 -) -(1,13083:6630773,27253162:25952256,410518,7863 -h1,13083:6630773,27253162:0,0,0 -g1,13083:7579210,27253162 -h1,13083:11689104,27253162:0,0,0 -k1,13083:32583028,27253162:20893924 -g1,13083:32583028,27253162 -) -(1,13083:6630773,27919340:25952256,404226,76021 -h1,13083:6630773,27919340:0,0,0 -g1,13083:7579210,27919340 -g1,13083:7895356,27919340 -g1,13083:8211502,27919340 -g1,13083:8527648,27919340 -g1,13083:8843794,27919340 -g1,13083:9159940,27919340 -g1,13083:9476086,27919340 -g1,13083:9792232,27919340 -g1,13083:10108378,27919340 -g1,13083:10424524,27919340 -g1,13083:10740670,27919340 -g1,13083:11056816,27919340 -g1,13083:11372962,27919340 -g1,13083:14218273,27919340 -g1,13083:15799002,27919340 -g1,13083:17695876,27919340 -g1,13083:18328168,27919340 -g1,13083:20225042,27919340 -k1,13083:20225042,27919340:0 -h1,13083:22754207,27919340:0,0,0 -k1,13083:32583029,27919340:9828822 -g1,13083:32583029,27919340 -) -(1,13083:6630773,28585518:25952256,404226,101187 -h1,13083:6630773,28585518:0,0,0 -g1,13083:7579210,28585518 -g1,13083:11372958,28585518 -g1,13083:11689104,28585518 -g1,13083:12005250,28585518 -g1,13083:14218270,28585518 -g1,13083:14534416,28585518 -g1,13083:14850562,28585518 -g1,13083:15166708,28585518 -g1,13083:15482854,28585518 -g1,13083:17695874,28585518 -g1,13083:18012020,28585518 -g1,13083:20225040,28585518 -g1,13083:20541186,28585518 -g1,13083:21173478,28585518 -g1,13083:23070352,28585518 -h1,13083:24018789,28585518:0,0,0 -k1,13083:32583029,28585518:8564240 -g1,13083:32583029,28585518 -) -(1,13083:6630773,29251696:25952256,388497,101187 -h1,13083:6630773,29251696:0,0,0 -g1,13083:7579210,29251696 -g1,13083:9792230,29251696 -g1,13083:10108376,29251696 -g1,13083:10424522,29251696 -g1,13083:10740668,29251696 -g1,13083:11056814,29251696 -g1,13083:11372960,29251696 -g1,13083:11689106,29251696 -g1,13083:12005252,29251696 -g1,13083:14218272,29251696 -g1,13083:14534418,29251696 -g1,13083:14850564,29251696 -g1,13083:15166710,29251696 -g1,13083:15482856,29251696 -g1,13083:17695876,29251696 -g1,13083:18012022,29251696 -g1,13083:18328168,29251696 -g1,13083:20225042,29251696 -g1,13083:23070353,29251696 -h1,13083:24018790,29251696:0,0,0 -k1,13083:32583029,29251696:8564239 -g1,13083:32583029,29251696 -) -(1,13083:6630773,29917874:25952256,388497,101187 -h1,13083:6630773,29917874:0,0,0 -g1,13083:7579210,29917874 -g1,13083:9792230,29917874 -g1,13083:10108376,29917874 -g1,13083:10424522,29917874 -g1,13083:10740668,29917874 -g1,13083:11056814,29917874 -g1,13083:11372960,29917874 -g1,13083:11689106,29917874 -g1,13083:12005252,29917874 -g1,13083:14218272,29917874 -g1,13083:14534418,29917874 -g1,13083:14850564,29917874 -g1,13083:15166710,29917874 -g1,13083:15482856,29917874 -g1,13083:17695876,29917874 -g1,13083:18012022,29917874 -g1,13083:18328168,29917874 -g1,13083:20225042,29917874 -g1,13083:23070353,29917874 -h1,13083:24018790,29917874:0,0,0 -k1,13083:32583029,29917874:8564239 -g1,13083:32583029,29917874 -) -(1,13083:6630773,30584052:25952256,388497,101187 -h1,13083:6630773,30584052:0,0,0 -g1,13083:7579210,30584052 -g1,13083:9792230,30584052 -g1,13083:10108376,30584052 -g1,13083:10424522,30584052 -g1,13083:10740668,30584052 -g1,13083:11056814,30584052 -g1,13083:11372960,30584052 -g1,13083:11689106,30584052 -g1,13083:14218272,30584052 -g1,13083:14534418,30584052 -g1,13083:14850564,30584052 -g1,13083:15166710,30584052 -g1,13083:15482856,30584052 -g1,13083:17695876,30584052 -g1,13083:18012022,30584052 -g1,13083:20225042,30584052 -g1,13083:23070353,30584052 -h1,13083:24018790,30584052:0,0,0 -k1,13083:32583029,30584052:8564239 -g1,13083:32583029,30584052 -) -(1,13083:6630773,31250230:25952256,388497,101187 -h1,13083:6630773,31250230:0,0,0 -g1,13083:7579210,31250230 -g1,13083:9792230,31250230 -g1,13083:10108376,31250230 -g1,13083:10424522,31250230 -g1,13083:10740668,31250230 -g1,13083:11056814,31250230 -g1,13083:11372960,31250230 -g1,13083:11689106,31250230 -g1,13083:14218272,31250230 -g1,13083:14534418,31250230 -g1,13083:14850564,31250230 -g1,13083:15166710,31250230 -g1,13083:15482856,31250230 -g1,13083:17695876,31250230 -g1,13083:18012022,31250230 -g1,13083:20225042,31250230 -g1,13083:23070353,31250230 -h1,13083:24018790,31250230:0,0,0 -k1,13083:32583029,31250230:8564239 -g1,13083:32583029,31250230 -) -(1,13083:6630773,31916408:25952256,388497,101187 -h1,13083:6630773,31916408:0,0,0 -g1,13083:7579210,31916408 -g1,13083:9792230,31916408 -g1,13083:10108376,31916408 -g1,13083:10424522,31916408 -g1,13083:10740668,31916408 -g1,13083:11056814,31916408 -g1,13083:11372960,31916408 -g1,13083:11689106,31916408 -g1,13083:14218272,31916408 -g1,13083:14534418,31916408 -g1,13083:14850564,31916408 -g1,13083:15166710,31916408 -g1,13083:15482856,31916408 -g1,13083:17695876,31916408 -g1,13083:18012022,31916408 -g1,13083:20225042,31916408 -g1,13083:23070353,31916408 -h1,13083:24018790,31916408:0,0,0 -k1,13083:32583029,31916408:8564239 -g1,13083:32583029,31916408 -) -(1,13083:6630773,32582586:25952256,379060,0 -h1,13083:6630773,32582586:0,0,0 -g1,13083:7579210,32582586 -k1,13083:7579210,32582586:0 -h1,13083:8527648,32582586:0,0,0 -k1,13083:32583028,32582586:24055380 -g1,13083:32583028,32582586 -) -(1,13083:6630773,33248764:25952256,410518,107478 -h1,13083:6630773,33248764:0,0,0 -g1,13083:7579210,33248764 -g1,13083:10108376,33248764 -g1,13083:12321396,33248764 -g1,13083:12637542,33248764 -g1,13083:13269834,33248764 -g1,13083:15166709,33248764 -g1,13083:17063583,33248764 -g1,13083:18644312,33248764 -g1,13083:20225041,33248764 -g1,13083:21489625,33248764 -g1,13083:23070354,33248764 -g1,13083:24334938,33248764 -g1,13083:25599521,33248764 -g1,13083:26231813,33248764 -g1,13083:26864105,33248764 -h1,13083:27180251,33248764:0,0,0 -k1,13083:32583029,33248764:5402778 -g1,13083:32583029,33248764 -) -(1,13083:6630773,33914942:25952256,379060,0 -h1,13083:6630773,33914942:0,0,0 -h1,13083:7263064,33914942:0,0,0 -k1,13083:32583028,33914942:25319964 -g1,13083:32583028,33914942 -) -(1,13083:6630773,34581120:25952256,410518,107478 -h1,13083:6630773,34581120:0,0,0 -g1,13083:7579210,34581120 -g1,13083:10424521,34581120 -g1,13083:13269832,34581120 -g1,13083:15482852,34581120 -g1,13083:17379726,34581120 -g1,13083:18328163,34581120 -g1,13083:19276600,34581120 -g1,13083:21805766,34581120 -g1,13083:22754203,34581120 -h1,13083:24967223,34581120:0,0,0 -k1,13083:32583029,34581120:7615806 -g1,13083:32583029,34581120 -) -(1,13083:6630773,35247298:25952256,404226,107478 -h1,13083:6630773,35247298:0,0,0 -g1,13083:7579210,35247298 -g1,13083:10424521,35247298 -g1,13083:13902124,35247298 -g1,13083:14218270,35247298 -g1,13083:19276601,35247298 -g1,13083:22754204,35247298 -g1,13083:23070350,35247298 -h1,13083:24967224,35247298:0,0,0 -k1,13083:32583029,35247298:7615805 -g1,13083:32583029,35247298 -) -(1,13083:6630773,35913476:25952256,404226,101187 -h1,13083:6630773,35913476:0,0,0 -g1,13083:7579210,35913476 -g1,13083:11689104,35913476 -g1,13083:12005250,35913476 -g1,13083:13585979,35913476 -g1,13083:14534416,35913476 -g1,13083:15166708,35913476 -g1,13083:16431291,35913476 -g1,13083:17379728,35913476 -g1,13083:18644311,35913476 -g1,13083:18960457,35913476 -g1,13083:21805769,35913476 -g1,13083:22438061,35913476 -k1,13083:22438061,35913476:0 -h1,13083:24651081,35913476:0,0,0 -k1,13083:32583029,35913476:7931948 -g1,13083:32583029,35913476 -) -] -) -g1,13084:32583029,36014663 -g1,13084:6630773,36014663 -g1,13084:6630773,36014663 -g1,13084:32583029,36014663 -g1,13084:32583029,36014663 -) -h1,13084:6630773,36211271:0,0,0 -v1,13088:6630773,37968573:0,393216,0 -(1,13089:6630773,41882910:25952256,4307553,0 -g1,13089:6630773,41882910 -g1,13089:6303093,41882910 -r1,13092:6401397,41882910:98304,4307553,0 -g1,13089:6600626,41882910 -g1,13089:6797234,41882910 -[1,13089:6797234,41882910:25785795,4307553,0 -(1,13089:6797234,38401111:25785795,825754,196608 -(1,13088:6797234,38401111:0,825754,196608 -r1,13092:8834093,38401111:2036859,1022362,196608 -k1,13088:6797234,38401111:-2036859 -) -(1,13088:6797234,38401111:2036859,825754,196608 -) -k1,13088:9033301,38401111:199208 -k1,13088:10759519,38401111:327680 -k1,13088:13350790,38401111:199207 -k1,13088:14880379,38401111:199208 -k1,13088:17075158,38401111:199208 -k1,13088:18293450,38401111:199207 -k1,13088:19640849,38401111:199208 -k1,13088:21302164,38401111:199207 -k1,13088:22187534,38401111:199208 -k1,13088:25366009,38401111:199208 -k1,13088:26181254,38401111:199207 -(1,13088:26181254,38401111:0,452978,115847 -r1,13092:30056638,38401111:3875384,568825,115847 -k1,13088:26181254,38401111:-3875384 -) -(1,13088:26181254,38401111:3875384,452978,115847 -k1,13088:26181254,38401111:3277 -h1,13088:30053361,38401111:0,411205,112570 -) -k1,13088:30255846,38401111:199208 -k1,13088:32583029,38401111:0 -) -(1,13089:6797234,39242599:25785795,513147,115847 -k1,13088:7678617,39242599:222091 -k1,13088:8919794,39242599:222092 -k1,13088:10448018,39242599:222091 -k1,13088:11826819,39242599:222091 -k1,13088:12735073,39242599:222092 -k1,13088:13573202,39242599:222091 -(1,13088:13573202,39242599:0,452978,115847 -r1,13092:19558857,39242599:5985655,568825,115847 -k1,13088:13573202,39242599:-5985655 -) -(1,13088:13573202,39242599:5985655,452978,115847 -k1,13088:13573202,39242599:3277 -h1,13088:19555580,39242599:0,411205,112570 -) -k1,13088:19780948,39242599:222091 -k1,13088:22112644,39242599:222092 -k1,13088:23353820,39242599:222091 -k1,13088:26795695,39242599:222091 -k1,13088:29549443,39242599:222092 -k1,13088:30790619,39242599:222091 -k1,13088:32583029,39242599:0 -) -(1,13089:6797234,40084087:25785795,513147,134348 -k1,13088:7657635,40084087:201109 -k1,13088:9752734,40084087:201109 -(1,13088:9752734,40084087:0,414482,115847 -r1,13092:11517847,40084087:1765113,530329,115847 -k1,13088:9752734,40084087:-1765113 -) -(1,13088:9752734,40084087:1765113,414482,115847 -k1,13088:9752734,40084087:3277 -h1,13088:11514570,40084087:0,411205,112570 -) -k1,13088:11718956,40084087:201109 -k1,13088:12644893,40084087:201109 -k1,13088:14130508,40084087:201109 -k1,13088:15350702,40084087:201109 -k1,13088:16743255,40084087:201108 -k1,13088:18679757,40084087:201109 -(1,13088:18679757,40084087:0,452978,115847 -r1,13092:22555141,40084087:3875384,568825,115847 -k1,13088:18679757,40084087:-3875384 -) -(1,13088:18679757,40084087:3875384,452978,115847 -k1,13088:18679757,40084087:3277 -h1,13088:22551864,40084087:0,411205,112570 -) -k1,13088:22756250,40084087:201109 -k1,13088:25730843,40084087:201109 -k1,13088:29236933,40084087:201109 -k1,13088:30089470,40084087:201109 -k1,13088:31575085,40084087:201109 -k1,13089:32583029,40084087:0 -) -(1,13089:6797234,40925575:25785795,513147,126483 -k1,13088:9037151,40925575:243035 -k1,13088:11135510,40925575:243035 -k1,13088:12772496,40925575:243035 -(1,13088:12772496,40925575:0,452978,115847 -r1,13092:18758151,40925575:5985655,568825,115847 -k1,13088:12772496,40925575:-5985655 -) -(1,13088:12772496,40925575:5985655,452978,115847 -k1,13088:12772496,40925575:3277 -h1,13088:18754874,40925575:0,411205,112570 -) -k1,13088:19174856,40925575:243035 -k1,13088:22270673,40925575:243035 -k1,13088:23810666,40925575:243035 -(1,13088:23810666,40925575:0,452978,115847 -r1,13092:28037762,40925575:4227096,568825,115847 -k1,13088:23810666,40925575:-4227096 -) -(1,13088:23810666,40925575:4227096,452978,115847 -k1,13088:23810666,40925575:3277 -h1,13088:28034485,40925575:0,411205,112570 -) -k1,13088:28280797,40925575:243035 -k1,13088:29055329,40925575:243035 -k1,13088:30317449,40925575:243035 -k1,13088:32583029,40925575:0 -) -(1,13089:6797234,41767063:25785795,513147,115847 -g1,13088:7944114,41767063 -g1,13088:10650750,41767063 -g1,13088:13074271,41767063 -g1,13088:14464945,41767063 -g1,13088:16362212,41767063 -(1,13088:16362212,41767063:0,452978,115847 -r1,13092:21644443,41767063:5282231,568825,115847 -k1,13088:16362212,41767063:-5282231 -) -(1,13088:16362212,41767063:5282231,452978,115847 -k1,13088:16362212,41767063:3277 -h1,13088:21641166,41767063:0,411205,112570 -) -g1,13088:21843672,41767063 -g1,13088:23811718,41767063 -g1,13088:24758713,41767063 -g1,13088:26559642,41767063 -k1,13089:32583029,41767063:3872495 -g1,13089:32583029,41767063 -) -] -g1,13089:32583029,41882910 -) -h1,13089:6630773,41882910:0,0,0 -(1,13092:6630773,43182305:25952256,513147,126483 -h1,13091:6630773,43182305:983040,0,0 -k1,13091:8491281,43182305:249633 -k1,13091:9759998,43182305:249632 -k1,13091:11376712,43182305:249633 -k1,13091:12285637,43182305:249633 -k1,13091:15670511,43182305:249632 -k1,13091:17300332,43182305:249633 -k1,13091:19679229,43182305:249632 -k1,13091:21708164,43182305:249633 -k1,13091:22976882,43182305:249633 -k1,13091:26507246,43182305:249632 -k1,13091:29802992,43182305:249633 -k1,13092:32583029,43182305:0 -) -(1,13092:6630773,44023793:25952256,513147,134348 -k1,13091:8882039,44023793:245209 -k1,13091:9786540,44023793:245209 -k1,13091:12622387,44023793:245209 -k1,13091:13886681,44023793:245209 -k1,13091:17740958,44023793:245209 -k1,13091:20074799,44023793:245209 -k1,13091:20851505,44023793:245209 -k1,13091:24590438,44023793:245209 -k1,13091:25518532,44023793:245209 -k1,13091:27003682,44023793:245209 -k1,13091:27736433,44023793:245163 -k1,13091:30743985,44023793:245209 -k1,13091:31923737,44023793:245209 -k1,13091:32583029,44023793:0 -) -(1,13092:6630773,44865281:25952256,513147,126483 -k1,13091:9819874,44865281:227529 -k1,13091:12185843,44865281:227529 -k1,13091:13935118,44865281:227529 -k1,13091:14518507,44865281:227529 -k1,13091:17508379,44865281:227529 -k1,13091:18670451,44865281:227529 -k1,13091:19557272,44865281:227529 -k1,13091:22414761,44865281:227529 -k1,13091:25786707,44865281:227529 -k1,13091:28288991,44865281:227529 -k1,13091:31773659,44865281:227529 -k1,13091:32583029,44865281:0 -) -(1,13092:6630773,45706769:25952256,513147,126483 -k1,13091:7862033,45706769:212175 -k1,13091:9776179,45706769:212176 -k1,13091:11768312,45706769:212175 -k1,13091:12795756,45706769:212176 -k1,13091:14074202,45706769:212175 -k1,13091:16065679,45706769:212175 -k1,13091:17296940,45706769:212176 -k1,13091:19074770,45706769:212175 -k1,13091:22065673,45706769:212176 -k1,13091:23039376,45706769:212175 -(1,13091:23039376,45706769:0,452978,115847 -r1,13092:25507913,45706769:2468537,568825,115847 -k1,13091:23039376,45706769:-2468537 -) -(1,13091:23039376,45706769:2468537,452978,115847 -k1,13091:23039376,45706769:3277 -h1,13091:25504636,45706769:0,411205,112570 -) -k1,13091:25720088,45706769:212175 -k1,13091:26618426,45706769:212176 -k1,13091:28033842,45706769:212175 -k1,13091:29811673,45706769:212176 -k1,13091:31516758,45706769:212175 -k1,13091:32583029,45706769:0 -) -] -(1,13092:32583029,45706769:0,0,0 -g1,13092:32583029,45706769 -) -) -] -(1,13092:6630773,47279633:25952256,0,0 -h1,13092:6630773,47279633:25952256,0,0 -) -] -(1,13092:4262630,4025873:0,0,0 -[1,13092:-473656,4025873:0,0,0 -(1,13092:-473656,-710413:0,0,0 -(1,13092:-473656,-710413:0,0,0 -g1,13092:-473656,-710413 -) -g1,13092:-473656,-710413 -) -] -) -] -!31813 -}224 -Input:1976:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1977:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1978:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1979:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1980:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1981:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1982:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1983:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1984:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1985:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1986:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1987:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1988:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1989:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1990:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1991:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1992:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1993:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1994:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1798 -{225 -[1,13142:4262630,47279633:28320399,43253760,0 -(1,13142:4262630,4025873:0,0,0 -[1,13142:-473656,4025873:0,0,0 -(1,13142:-473656,-710413:0,0,0 -(1,13142:-473656,-644877:0,0,0 -k1,13142:-473656,-644877:-65536 -) -(1,13142:-473656,4736287:0,0,0 -k1,13142:-473656,4736287:5209943 -) -g1,13142:-473656,-710413 -) -] +[1,12634:3078558,4812305:0,0,0 +(1,12634:3078558,49800853:0,16384,2228224 +g1,12634:29030814,49800853 +g1,12634:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,12634:36151628,51504789:16384,1179648,0 +) +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 +) +] +) +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,12634:37855564,49800853:1179648,16384,0 +) +) +k1,12634:3078556,49800853:-34777008 +) +] +g1,12634:6630773,4812305 +g1,12634:6630773,4812305 +g1,12634:8843268,4812305 +g1,12634:10880782,4812305 +g1,12634:13281365,4812305 +k1,12634:31387653,4812305:18106288 +) +) +] +[1,12634:6630773,45706769:25952256,40108032,0 +(1,12634:6630773,45706769:25952256,40108032,0 +(1,12634:6630773,45706769:0,0,0 +g1,12634:6630773,45706769 +) +[1,12634:6630773,45706769:25952256,40108032,0 +v1,12578:6630773,6254097:0,393216,0 +(1,12579:6630773,7614702:25952256,1753821,0 +g1,12579:6630773,7614702 +g1,12579:6237557,7614702 +r1,12634:6368629,7614702:131072,1753821,0 +g1,12579:6567858,7614702 +g1,12579:6764466,7614702 +[1,12579:6764466,7614702:25818563,1753821,0 +(1,12579:6764466,6615274:25818563,754393,260573 +(1,12578:6764466,6615274:0,754393,260573 +r1,12634:8010564,6615274:1246098,1014966,260573 +k1,12578:6764466,6615274:-1246098 +) +(1,12578:6764466,6615274:1246098,754393,260573 +) +k1,12578:8210482,6615274:199918 +k1,12578:8538162,6615274:327680 +k1,12578:9215837,6615274:199918 +k1,12578:10586228,6615274:199918 +k1,12578:11601413,6615274:199917 +k1,12578:12867602,6615274:199918 +k1,12578:15164017,6615274:199918 +k1,12578:18623040,6615274:199918 +k1,12578:19842043,6615274:199918 +k1,12578:23228321,6615274:199918 +k1,12578:26063441,6615274:199917 +k1,12578:28883488,6615274:199918 +k1,12578:31391584,6615274:199918 +k1,12578:32583029,6615274:0 +) +(1,12579:6764466,7480354:25818563,513147,134348 +g1,12578:9361657,7480354 +g1,12578:10243771,7480354 +g1,12578:11773381,7480354 +g1,12578:13352798,7480354 +g1,12578:14656309,7480354 +g1,12578:15603304,7480354 +g1,12578:18326324,7480354 +g1,12578:20705936,7480354 +g1,12578:22887629,7480354 +g1,12578:25504481,7480354 +h1,12578:25902940,7480354:0,0,0 +g1,12578:26102169,7480354 +g1,12578:27110768,7480354 +g1,12578:28808150,7480354 +h1,12578:29605068,7480354:0,0,0 +k1,12579:32583029,7480354:2804291 +g1,12579:32583029,7480354 +) +] +g1,12579:32583029,7614702 +) +h1,12579:6630773,7614702:0,0,0 +(1,12582:6630773,8479782:25952256,513147,134348 +h1,12581:6630773,8479782:983040,0,0 +k1,12581:8987556,8479782:177056 +k1,12581:11471480,8479782:177057 +k1,12581:14264733,8479782:177056 +k1,12581:16009411,8479782:177057 +k1,12581:17205552,8479782:177056 +k1,12581:20137087,8479782:177057 +k1,12581:22592830,8479782:177056 +k1,12581:25406400,8479782:177057 +k1,12581:26234884,8479782:177056 +k1,12581:28072623,8479782:177057 +k1,12581:28605539,8479782:177056 +k1,12581:30595322,8479782:177057 +k1,12581:32583029,8479782:0 +) +(1,12582:6630773,9344862:25952256,513147,126483 +k1,12581:7714250,9344862:222334 +k1,12581:9514037,9344862:222335 +k1,12581:11130322,9344862:222334 +k1,12581:14048152,9344862:222334 +(1,12581:14048152,9344862:0,452978,115847 +r1,12634:15461553,9344862:1413401,568825,115847 +k1,12581:14048152,9344862:-1413401 +) +(1,12581:14048152,9344862:1413401,452978,115847 +k1,12581:14048152,9344862:3277 +h1,12581:15458276,9344862:0,411205,112570 +) +k1,12581:15683888,9344862:222335 +k1,12581:17825116,9344862:222334 +k1,12581:19066535,9344862:222334 +k1,12581:22334982,9344862:222334 +k1,12581:24394947,9344862:222335 +k1,12581:27658807,9344862:222334 +k1,12581:29429757,9344862:222334 +k1,12581:30183589,9344862:222335 +k1,12581:31021961,9344862:222334 +k1,12582:32583029,9344862:0 +) +(1,12582:6630773,10209942:25952256,513147,134348 +k1,12581:8270964,10209942:210851 +k1,12581:9875766,10209942:210851 +k1,12581:11105702,10209942:210851 +k1,12581:13251176,10209942:210851 +k1,12581:14121319,10209942:210851 +k1,12581:16034140,10209942:210851 +k1,12581:17961379,10209942:210851 +k1,12581:18831522,10209942:210851 +k1,12581:21534052,10209942:210851 +k1,12581:22936348,10209942:210851 +k1,12581:24166284,10209942:210851 +k1,12581:25986044,10209942:210851 +k1,12581:27683907,10209942:210851 +k1,12581:29443374,10209942:210851 +k1,12581:30185722,10209942:210851 +k1,12581:32583029,10209942:0 +) +(1,12582:6630773,11075022:25952256,513147,134348 +k1,12581:7462442,11075022:180241 +(1,12581:7462442,11075022:0,452978,115847 +r1,12634:8875843,11075022:1413401,568825,115847 +k1,12581:7462442,11075022:-1413401 +) +(1,12581:7462442,11075022:1413401,452978,115847 +k1,12581:7462442,11075022:3277 +h1,12581:8872566,11075022:0,411205,112570 +) +k1,12581:9229755,11075022:180242 +k1,12581:10606683,11075022:180241 +k1,12581:13403122,11075022:180242 +k1,12581:16251334,11075022:180241 +k1,12581:17807176,11075022:180241 +k1,12581:19006503,11075022:180242 +k1,12581:20841528,11075022:180241 +k1,12581:22623470,11075022:180242 +k1,12581:26108692,11075022:180241 +k1,12581:27802160,11075022:180242 +k1,12581:29798404,11075022:180241 +k1,12581:32583029,11075022:0 +) +(1,12582:6630773,11940102:25952256,505283,126483 +k1,12581:8046744,11940102:224526 +k1,12581:9737966,11940102:224526 +k1,12581:12836246,11940102:224526 +k1,12581:15902413,11940102:224526 +k1,12581:17318385,11940102:224527 +k1,12581:21308610,11940102:224526 +k1,12581:24374777,11940102:224526 +k1,12581:25590863,11940102:224526 +k1,12581:28573799,11940102:224526 +k1,12581:30684451,11940102:224526 +k1,12582:32583029,11940102:0 +) +(1,12582:6630773,12805182:25952256,473825,7863 +g1,12581:9108034,12805182 +k1,12582:32583028,12805182:23301324 +g1,12582:32583028,12805182 +) +(1,12603:6630773,18520209:25952256,4986268,0 +k1,12603:7879722,18520209:1248949 +(1,12583:7879722,18520209:0,0,0 +g1,12583:7879722,18520209 +g1,12583:7879722,18520209 +g1,12583:7552042,18520209 +(1,12583:7552042,18520209:0,0,0 +) +g1,12583:7879722,18520209 +) +(1,12601:7879722,18520209:23454359,4986268,0 +g1,12601:10996008,18520209 +(1,12601:10996008,14162395:0,0,0 +(1,12601:10996008,14162395:0,0,0 +g1,12585:10996008,14162395 +(1,12586:10996008,14162395:0,0,0 +(1,12586:10996008,14162395:0,0,0 +g1,12586:10996008,14162395 +g1,12586:10996008,14162395 +g1,12586:10996008,14162395 +g1,12586:10996008,14162395 +g1,12586:10996008,14162395 +(1,12586:10996008,14162395:0,0,0 +(1,12586:10996008,14162395:4940249,454754,104590 +(1,12586:10996008,14162395:4940249,454754,104590 +g1,12586:12927092,14162395 +$1,12586:12927092,14162395 +$1,12586:13534611,14162395 +g1,12586:13713918,14162395 +(1,12586:13713918,14162395:0,414307,104590 +r1,12634:15936257,14162395:2222339,518897,104590 +k1,12586:13713918,14162395:-2222339 +) +(1,12586:13713918,14162395:2222339,414307,104590 +k1,12586:13713918,14162395:3277 +h1,12586:15932980,14162395:0,370085,101313 +) +) +g1,12586:15936257,14162395 +) +) +g1,12586:10996008,14162395 +g1,12586:10996008,14162395 +) +) +g1,12586:10996008,14162395 +(1,12587:10996008,14162395:0,0,0 +(1,12587:10996008,14162395:0,0,0 +g1,12587:10996008,14162395 +g1,12587:10996008,14162395 +g1,12587:10996008,14162395 +g1,12587:10996008,14162395 +g1,12587:10996008,14162395 +(1,12587:10996008,14162395:0,0,0 +(1,12587:10996008,14162395:5813184,454754,104590 +(1,12587:10996008,14162395:5813184,454754,104590 +g1,12587:14749649,14162395 +$1,12587:14749649,14162395 +$1,12587:15357168,14162395 +g1,12587:15536475,14162395 +(1,12587:15536475,14162395:0,408008,104590 +r1,12634:16809192,14162395:1272717,512598,104590 +k1,12587:15536475,14162395:-1272717 +) +(1,12587:15536475,14162395:1272717,408008,104590 +k1,12587:15536475,14162395:3277 +h1,12587:16805915,14162395:0,370085,101313 +) +) +g1,12587:16809192,14162395 +) +) +g1,12587:10996008,14162395 +g1,12587:10996008,14162395 +) +) +g1,12587:10996008,14162395 +(1,12588:10996008,14162395:0,0,0 +(1,12588:10996008,14162395:0,0,0 +g1,12588:10996008,14162395 +g1,12588:10996008,14162395 +g1,12588:10996008,14162395 +g1,12588:10996008,14162395 +g1,12588:10996008,14162395 +(1,12588:10996008,14162395:0,0,0 +(1,12588:10996008,14162395:5356075,454754,120913 +(1,12588:10996008,14162395:5356075,454754,120913 +g1,12588:13342918,14162395 +$1,12588:13342918,14162395 +$1,12588:13950437,14162395 +g1,12588:14129744,14162395 +(1,12588:14129744,14162395:0,408008,110889 +r1,12634:16352083,14162395:2222339,518897,110889 +k1,12588:14129744,14162395:-2222339 +) +(1,12588:14129744,14162395:2222339,408008,110889 +k1,12588:14129744,14162395:3277 +h1,12588:16348806,14162395:0,370085,101313 +) +) +g1,12588:16352083,14162395 +) +) +g1,12588:10996008,14162395 +g1,12588:10996008,14162395 +) +) +g1,12588:10996008,14162395 +(1,12589:10996008,14162395:0,0,0 +(1,12589:10996008,14162395:0,0,0 +g1,12589:10996008,14162395 +g1,12589:10996008,14162395 +g1,12589:10996008,14162395 +g1,12589:10996008,14162395 +g1,12589:10996008,14162395 +(1,12589:10996008,14162395:0,0,0 +(1,12589:10996008,14162395:1272717,408008,104590 +(1,12589:10996008,14162395:1272717,408008,104590 +(1,12589:10996008,14162395:0,408008,104590 +r1,12634:12268725,14162395:1272717,512598,104590 +k1,12589:10996008,14162395:-1272717 +) +(1,12589:10996008,14162395:1272717,408008,104590 +k1,12589:10996008,14162395:3277 +h1,12589:12265448,14162395:0,370085,101313 +) +) +g1,12589:12268725,14162395 +) +) +g1,12589:10996008,14162395 +g1,12589:10996008,14162395 ) -[1,13142:6630773,47279633:25952256,43253760,0 -[1,13142:6630773,4812305:25952256,786432,0 -(1,13142:6630773,4812305:25952256,513147,126483 -(1,13142:6630773,4812305:25952256,513147,126483 -g1,13142:3078558,4812305 -[1,13142:3078558,4812305:0,0,0 -(1,13142:3078558,2439708:0,1703936,0 -k1,13142:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,13142:2537886,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,13142:3078558,1915420:16384,1179648,0 +g1,12589:10996008,14162395 +(1,12590:10996008,14162395:0,0,0 +(1,12590:10996008,14162395:0,0,0 +g1,12590:10996008,14162395 +g1,12590:10996008,14162395 +g1,12590:10996008,14162395 +g1,12590:10996008,14162395 +g1,12590:10996008,14162395 +(1,12590:10996008,14162395:0,0,0 +(1,12590:10996008,14162395:2550076,454754,120913 +(1,12590:10996008,14162395:2550076,454754,120913 +(1,12590:10996008,14162395:0,408008,104590 +r1,12634:11635643,14162395:639635,512598,104590 +k1,12590:10996008,14162395:-639635 +) +(1,12590:10996008,14162395:639635,408008,104590 +k1,12590:10996008,14162395:3277 +h1,12590:11632366,14162395:0,370085,101313 +) +g1,12590:11814950,14162395 +) +g1,12590:13546084,14162395 +) +) +g1,12590:10996008,14162395 +g1,12590:10996008,14162395 +) +) +g1,12590:10996008,14162395 +(1,12591:10996008,14162395:0,0,0 +(1,12591:10996008,14162395:0,0,0 +g1,12591:10996008,14162395 +g1,12591:10996008,14162395 +g1,12591:10996008,14162395 +g1,12591:10996008,14162395 +g1,12591:10996008,14162395 +(1,12591:10996008,14162395:0,0,0 +(1,12591:10996008,14162395:2855420,408008,104590 +(1,12591:10996008,14162395:2855420,408008,104590 +(1,12591:10996008,14162395:0,408008,104590 +r1,12634:13851428,14162395:2855420,512598,104590 +k1,12591:10996008,14162395:-2855420 +) +(1,12591:10996008,14162395:2855420,408008,104590 +k1,12591:10996008,14162395:3277 +h1,12591:13848151,14162395:0,370085,101313 +) +) +g1,12591:13851428,14162395 +) +) +g1,12591:10996008,14162395 +g1,12591:10996008,14162395 +) +) +g1,12591:10996008,14162395 +(1,12592:10996008,14162395:0,0,0 +(1,12592:10996008,14162395:0,0,0 +g1,12592:10996008,14162395 +g1,12592:10996008,14162395 +g1,12592:10996008,14162395 +g1,12592:10996008,14162395 +g1,12592:10996008,14162395 +(1,12592:10996008,14162395:0,0,0 +(1,12592:10996008,14162395:2222339,408008,104590 +(1,12592:10996008,14162395:2222339,408008,104590 +(1,12592:10996008,14162395:0,408008,104590 +r1,12634:13218347,14162395:2222339,512598,104590 +k1,12592:10996008,14162395:-2222339 +) +(1,12592:10996008,14162395:2222339,408008,104590 +k1,12592:10996008,14162395:3277 +h1,12592:13215070,14162395:0,370085,101313 +) +) +g1,12592:13218347,14162395 +) +) +g1,12592:10996008,14162395 +g1,12592:10996008,14162395 +) +) +g1,12592:10996008,14162395 +(1,12593:10996008,14162395:0,0,0 +(1,12593:10996008,14162395:0,0,0 +g1,12593:10996008,14162395 +g1,12593:10996008,14162395 +g1,12593:10996008,14162395 +g1,12593:10996008,14162395 +g1,12593:10996008,14162395 +(1,12593:10996008,14162395:0,0,0 +(1,12593:10996008,14162395:1905798,408008,104590 +(1,12593:10996008,14162395:1905798,408008,104590 +(1,12593:10996008,14162395:0,408008,104590 +r1,12634:12901806,14162395:1905798,512598,104590 +k1,12593:10996008,14162395:-1905798 +) +(1,12593:10996008,14162395:1905798,408008,104590 +k1,12593:10996008,14162395:3277 +h1,12593:12898529,14162395:0,370085,101313 +) +) +g1,12593:12901806,14162395 +) +) +g1,12593:10996008,14162395 +g1,12593:10996008,14162395 +) +) +g1,12593:10996008,14162395 +g1,12594:10996008,14162395 +g1,12594:10996008,14162395 +g1,12594:10996008,14162395 +g1,12594:10996008,14162395 +g1,12594:10996008,14162395 +g1,12594:10996008,14162395 +g1,12595:10996008,14162395 +g1,12595:10996008,14162395 +g1,12595:10996008,14162395 +g1,12595:10996008,14162395 +g1,12595:10996008,14162395 +g1,12595:10996008,14162395 +g1,12596:10996008,14162395 +g1,12596:10996008,14162395 +g1,12596:10996008,14162395 +g1,12596:10996008,14162395 +g1,12596:10996008,14162395 +g1,12596:10996008,14162395 +g1,12597:10996008,14162395 +g1,12597:10996008,14162395 +g1,12597:10996008,14162395 +g1,12597:10996008,14162395 +g1,12597:10996008,14162395 +g1,12597:10996008,14162395 +g1,12598:10996008,14162395 +g1,12598:10996008,14162395 +g1,12598:10996008,14162395 +g1,12598:10996008,14162395 +g1,12598:10996008,14162395 +g1,12598:10996008,14162395 +g1,12599:10996008,14162395 +g1,12599:10996008,14162395 +g1,12599:10996008,14162395 +g1,12599:10996008,14162395 +g1,12599:10996008,14162395 +g1,12599:10996008,14162395 +g1,12600:10996008,14162395 +g1,12600:10996008,14162395 +g1,12600:10996008,14162395 +g1,12600:10996008,14162395 +g1,12600:10996008,14162395 +g1,12600:10996008,14162395 +g1,12601:10996008,14162395 +g1,12601:10996008,14162395 +) +g1,12601:10996008,14162395 +) +) +g1,12603:31334081,18520209 +k1,12603:32583029,18520209:1248948 +) +(1,12607:6630773,20040649:25952256,513147,126483 +h1,12605:6630773,20040649:983040,0,0 +k1,12605:9060614,20040649:250114 +k1,12605:13382479,20040649:250113 +k1,12605:14624153,20040649:250114 +k1,12605:16912436,20040649:250113 +k1,12605:17778588,20040649:250114 +k1,12605:18384561,20040649:250113 +k1,12605:20024038,20040649:250114 +k1,12605:22324117,20040649:250113 +k1,12605:23730941,20040649:250114 +k1,12605:25348135,20040649:250113 +k1,12605:26281134,20040649:250114 +k1,12605:28254844,20040649:250113 +k1,12605:29561398,20040649:250114 +k1,12605:31189078,20040649:250113 +k1,12605:32583029,20040649:0 +) +(1,12607:6630773,20905729:25952256,513147,126483 +k1,12605:8880565,20905729:239147 +k1,12605:10067362,20905729:239146 +k1,12605:11773205,20905729:239147 +k1,12605:14886106,20905729:239147 +k1,12605:16316697,20905729:239146 +k1,12605:20321543,20905729:239147 +k1,12605:23402330,20905729:239146 +k1,12605:24257515,20905729:239147 +k1,12605:27338303,20905729:239147 +k1,12605:28260334,20905729:239146 +k1,12605:31386342,20905729:239147 +k1,12605:32583029,20905729:0 +) +(1,12607:6630773,21770809:25952256,513147,7863 +k1,12605:8795908,21770809:177428 +k1,12605:11516787,21770809:177427 +k1,12605:12225712,21770809:177428 +k1,12605:13916366,21770809:177428 +k1,12605:14745222,21770809:177428 +k1,12605:17454305,21770809:177427 +k1,12605:19517204,21770809:177428 +k1,12605:22536273,21770809:177428 +k1,12605:23329739,21770809:177428 +k1,12605:24526251,21770809:177427 +k1,12605:26093042,21770809:177428 +k1,12605:28146766,21770809:177428 +k1,12605:29315754,21770809:177428 +k1,12605:30144609,21770809:177427 +k1,12605:31069803,21770809:177428 +k1,12605:32583029,21770809:0 +) +(1,12607:6630773,22635889:25952256,505283,126483 +k1,12605:7999930,22635889:177712 +k1,12605:8793679,22635889:177711 +k1,12605:10856862,22635889:177712 +k1,12605:12443597,22635889:177711 +k1,12605:14477289,22635889:177712 +k1,12606:17528754,22635889:177711 +k1,12606:18389351,22635889:177712 +k1,12606:22506432,22635889:177712 +k1,12606:23875588,22635889:177711 +k1,12606:25751338,22635889:177712 +k1,12606:29694748,22635889:177711 +k1,12606:31202841,22635889:177712 +k1,12606:32583029,22635889:0 +) +(1,12607:6630773,23500969:25952256,505283,126483 +g1,12606:10138915,23500969 +g1,12606:10989572,23500969 +g1,12606:12207886,23500969 +g1,12606:15543668,23500969 +k1,12607:32583029,23500969:13991937 +g1,12607:32583029,23500969 +) +v1,12609:6630773,24366049:0,393216,0 +(1,12610:6630773,29999175:25952256,6026342,0 +g1,12610:6630773,29999175 +g1,12610:6237557,29999175 +r1,12634:6368629,29999175:131072,6026342,0 +g1,12610:6567858,29999175 +g1,12610:6764466,29999175 +[1,12610:6764466,29999175:25818563,6026342,0 +(1,12610:6764466,24674347:25818563,701514,196608 +(1,12609:6764466,24674347:0,701514,196608 +r1,12634:8010564,24674347:1246098,898122,196608 +k1,12609:6764466,24674347:-1246098 +) +(1,12609:6764466,24674347:1246098,701514,196608 +) +k1,12609:8160347,24674347:149783 +k1,12609:8488027,24674347:327680 +k1,12609:11168809,24674347:149782 +k1,12609:12310152,24674347:149783 +k1,12609:16837085,24674347:149783 +k1,12609:19211160,24674347:149783 +k1,12609:20874168,24674347:149782 +k1,12609:21675379,24674347:149783 +k1,12609:23278751,24674347:149783 +k1,12609:24447619,24674347:149783 +k1,12609:26744360,24674347:149782 +k1,12609:28588904,24674347:149783 +k1,12609:29390115,24674347:149783 +k1,12609:32583029,24674347:0 +) +(1,12610:6764466,25539427:25818563,513147,134348 +k1,12609:9844003,25539427:185467 +k1,12609:11727507,25539427:185466 +k1,12609:13847597,25539427:185467 +k1,12609:14388924,25539427:185467 +k1,12609:16562098,25539427:185467 +k1,12609:17398992,25539427:185466 +k1,12609:21656211,25539427:185467 +k1,12609:23126184,25539427:185467 +k1,12609:24303211,25539427:185467 +k1,12609:25554948,25539427:185466 +k1,12609:28034175,25539427:185467 +k1,12609:32095441,25539427:185467 +k1,12609:32583029,25539427:0 +) +(1,12610:6764466,26404507:25818563,513147,134348 +k1,12609:9727961,26404507:224745 +k1,12609:11319786,26404507:224744 +k1,12609:12076028,26404507:224745 +k1,12609:14235396,26404507:224745 +k1,12609:14816001,26404507:224745 +k1,12609:17028452,26404507:224744 +k1,12609:18988590,26404507:224745 +k1,12609:19620969,26404507:224745 +k1,12609:20528599,26404507:224745 +k1,12609:23627097,26404507:224744 +k1,12609:25862487,26404507:224745 +k1,12609:27371738,26404507:224745 +k1,12609:28588043,26404507:224745 +k1,12609:30264409,26404507:224744 +k1,12609:30845014,26404507:224745 +k1,12609:32583029,26404507:0 +) +(1,12610:6764466,27269587:25818563,513147,126483 +k1,12609:10207564,27269587:214139 +k1,12609:11989324,27269587:214139 +k1,12609:15517618,27269587:214138 +k1,12609:18494100,27269587:214139 +k1,12609:21524321,27269587:214139 +k1,12609:22397752,27269587:214139 +k1,12609:25804804,27269587:214138 +k1,12609:30865986,27269587:214139 +k1,12609:32583029,27269587:0 +) +(1,12610:6764466,28134667:25818563,513147,134348 +k1,12609:8974088,28134667:221915 +k1,12609:9883476,28134667:221915 +k1,12609:13131188,28134667:221915 +k1,12609:16141005,28134667:221915 +k1,12609:17382005,28134667:221915 +k1,12609:20223394,28134667:221915 +k1,12609:21517477,28134667:221914 +k1,12609:22355430,28134667:221915 +k1,12609:24179045,28134667:221915 +k1,12609:26098342,28134667:221915 +k1,12609:27700445,28134667:221915 +k1,12609:28913920,28134667:221915 +k1,12609:31896867,28134667:221915 +k1,12609:32583029,28134667:0 +) +(1,12610:6764466,28999747:25818563,513147,134348 +k1,12609:7720025,28999747:184856 +k1,12609:10977209,28999747:184856 +k1,12609:11813494,28999747:184857 +k1,12609:15279082,28999747:184856 +(1,12609:15279082,28999747:0,452978,122846 +r1,12634:17747619,28999747:2468537,575824,122846 +k1,12609:15279082,28999747:-2468537 +) +(1,12609:15279082,28999747:2468537,452978,122846 +k1,12609:15279082,28999747:3277 +h1,12609:17744342,28999747:0,411205,112570 +) +k1,12609:18106145,28999747:184856 +k1,12609:19051219,28999747:184856 +k1,12609:21675325,28999747:184856 +(1,12609:21675325,28999747:0,452978,122846 +r1,12634:24143862,28999747:2468537,575824,122846 +k1,12609:21675325,28999747:-2468537 +) +(1,12609:21675325,28999747:2468537,452978,122846 +k1,12609:21675325,28999747:3277 +h1,12609:24140585,28999747:0,411205,112570 +) +k1,12609:24328719,28999747:184857 +k1,12609:25988790,28999747:184856 +k1,12609:26529506,28999747:184856 +k1,12609:28394705,28999747:184856 +k1,12609:29246718,28999747:184857 +(1,12609:29246718,28999747:0,435480,115847 +r1,12634:29604984,28999747:358266,551327,115847 +k1,12609:29246718,28999747:-358266 +) +(1,12609:29246718,28999747:358266,435480,115847 +k1,12609:29246718,28999747:3277 +h1,12609:29601707,28999747:0,411205,112570 +) +k1,12609:29789840,28999747:184856 +k1,12609:31166141,28999747:184856 +k1,12609:32583029,28999747:0 +) +(1,12610:6764466,29864827:25818563,513147,134348 +g1,12609:7778963,29864827 +g1,12609:9044463,29864827 +g1,12609:11022994,29864827 +g1,12609:12241308,29864827 +g1,12609:15273658,29864827 +g1,12609:17460594,29864827 +k1,12610:32583029,29864827:14261292 +g1,12610:32583029,29864827 +) +] +g1,12610:32583029,29999175 +) +h1,12610:6630773,29999175:0,0,0 +(1,12612:6630773,32115993:25952256,555811,147783 +(1,12612:6630773,32115993:2450326,525533,0 +g1,12612:6630773,32115993 +g1,12612:9081099,32115993 +) +k1,12612:32583029,32115993:19501678 +g1,12612:32583029,32115993 +) +(1,12616:6630773,33374289:25952256,505283,134348 +k1,12615:7552695,33374289:294087 +k1,12615:9050023,33374289:294087 +k1,12615:11622797,33374289:294087 +k1,12615:12785235,33374289:294086 +k1,12615:15857393,33374289:294087 +k1,12615:17886873,33374289:294087 +k1,12615:19200045,33374289:294087 +(1,12615:19200045,33374289:0,414482,115847 +r1,12634:20613446,33374289:1413401,530329,115847 +k1,12615:19200045,33374289:-1413401 +) +(1,12615:19200045,33374289:1413401,414482,115847 +k1,12615:19200045,33374289:3277 +h1,12615:20610169,33374289:0,411205,112570 +) +k1,12615:20907533,33374289:294087 +k1,12615:22590983,33374289:294087 +k1,12615:23993284,33374289:294087 +k1,12615:26172841,33374289:294086 +k1,12615:29168977,33374289:294087 +k1,12615:30114492,33374289:294087 +(1,12615:30114492,33374289:0,452978,115847 +r1,12634:32583029,33374289:2468537,568825,115847 +k1,12615:30114492,33374289:-2468537 +) +(1,12615:30114492,33374289:2468537,452978,115847 +k1,12615:30114492,33374289:3277 +h1,12615:32579752,33374289:0,411205,112570 +) +k1,12615:32583029,33374289:0 +) +(1,12616:6630773,34239369:25952256,505283,7863 +k1,12616:32583028,34239369:22936944 +g1,12616:32583028,34239369 +) +(1,12618:6630773,35104449:25952256,513147,138281 +h1,12617:6630773,35104449:983040,0,0 +k1,12617:8751670,35104449:184308 +k1,12617:9623451,35104449:184308 +k1,12617:10163619,35104449:184308 +k1,12617:12472604,35104449:184308 +k1,12617:14469638,35104449:184308 +k1,12617:16641654,35104449:184309 +$1,12617:16641654,35104449 +k1,12617:17375527,35104449:182060 +k1,12617:18125784,35104449:182060 +k1,12617:18746611,35104449:112923 +k1,12617:19128233,35104449:112924 +k1,12617:19639615,35104449:112923 +k1,12617:20320736,35104449:112924 +k1,12617:20877993,35104449:112923 +k1,12617:21259615,35104449:112924 +$1,12617:21762276,35104449 +k1,12617:21946584,35104449:184308 +k1,12617:24049786,35104449:184308 +$1,12617:24049786,35104449 +$1,12617:24601599,35104449 +k1,12617:24785907,35104449:184308 +k1,12617:28933832,35104449:184308 +k1,12617:29769568,35104449:184308 +k1,12617:32583029,35104449:0 +) +(1,12618:6630773,35969529:25952256,513147,126483 +k1,12617:9517110,35969529:225575 +(1,12617:9724204,35969529:0,452978,115847 +r1,12634:11137605,35969529:1413401,568825,115847 +k1,12617:9724204,35969529:-1413401 +) +(1,12617:9724204,35969529:1413401,452978,115847 +k1,12617:9724204,35969529:3277 +h1,12617:11134328,35969529:0,411205,112570 +) +k1,12617:11570275,35969529:225576 +k1,12617:12987295,35969529:225575 +$1,12617:12987295,35969529 +$1,12617:13489956,35969529 +k1,12617:13715532,35969529:225576 +k1,12617:14592535,35969529:225575 +k1,12617:16654430,35969529:225576 +k1,12617:18746470,35969529:225575 +(1,12617:18953564,35969529:0,452978,115847 +r1,12634:20718677,35969529:1765113,568825,115847 +k1,12617:18953564,35969529:-1765113 +) +(1,12617:18953564,35969529:1765113,452978,115847 +k1,12617:18953564,35969529:3277 +h1,12617:20715400,35969529:0,411205,112570 +) +k1,12617:21325016,35969529:225575 +k1,12617:23069061,35969529:225576 +k1,12617:23650496,35969529:225575 +k1,12617:25863779,35969529:225576 +k1,12617:26620851,35969529:225575 +k1,12617:30414862,35969529:225576 +k1,12617:31256475,35969529:225575 +k1,12617:31896867,35969529:225549 +k1,12617:32583029,35969529:0 +) +(1,12618:6630773,36834609:25952256,530548,132808 +h1,12617:6630773,36834609:0,0,0 +k1,12617:8637246,36834609:346703 +k1,12617:9398891,36834609:346703 +k1,12617:10160535,36834609:346702 +k1,12617:10922180,36834609:346703 +k1,12617:13337027,36834609:166465 +k1,12617:14457042,36834609:166466 +k1,12617:16014181,36834609:166465 +k1,12617:17199731,36834609:166465 +k1,12617:19078652,36834609:166465 +k1,12617:21232824,36834609:166465 +k1,12617:22085451,36834609:166465 +(1,12617:22085451,36834609:0,459977,115847 +r1,12634:23147140,36834609:1061689,575824,115847 +k1,12617:22085451,36834609:-1061689 +) +(1,12617:22085451,36834609:1061689,459977,115847 +k1,12617:22085451,36834609:3277 +h1,12617:23143863,36834609:0,411205,112570 +) +k1,12617:23313605,36834609:166465 +k1,12617:24043025,36834609:166466 +k1,12617:27555758,36834609:166465 +k1,12617:28669874,36834609:166465 +k1,12617:32583029,36834609:0 +) +(1,12618:6630773,37699689:25952256,505283,95026 +k1,12618:32583028,37699689:24414780 +g1,12618:32583028,37699689 +) +v1,12620:6630773,38384544:0,393216,0 +(1,12628:6630773,40199585:25952256,2208257,196608 +g1,12628:6630773,40199585 +g1,12628:6630773,40199585 +g1,12628:6434165,40199585 +(1,12628:6434165,40199585:0,2208257,196608 +r1,12634:32779637,40199585:26345472,2404865,196608 +k1,12628:6434165,40199585:-26345472 +) +(1,12628:6434165,40199585:26345472,2208257,196608 +[1,12628:6630773,40199585:25952256,2011649,0 +(1,12622:6630773,38618981:25952256,431045,106246 +(1,12621:6630773,38618981:0,0,0 +g1,12621:6630773,38618981 +g1,12621:6630773,38618981 +g1,12621:6303093,38618981 +(1,12621:6303093,38618981:0,0,0 +) +g1,12621:6630773,38618981 +) +g1,12622:7958589,38618981 +g1,12622:8954451,38618981 +g1,12622:11610083,38618981 +g1,12622:12273991,38618981 +g1,12622:12937899,38618981 +g1,12622:13601807,38618981 +g1,12622:15925485,38618981 +h1,12622:19245025,38618981:0,0,0 +k1,12622:32583029,38618981:13338004 +g1,12622:32583029,38618981 +) +(1,12623:6630773,39303836:25952256,431045,79822 +h1,12623:6630773,39303836:0,0,0 +k1,12623:6630773,39303836:0 +h1,12623:9950313,39303836:0,0,0 +k1,12623:32583029,39303836:22632716 +g1,12623:32583029,39303836 +) +(1,12627:6630773,40119763:25952256,424439,79822 +(1,12625:6630773,40119763:0,0,0 +g1,12625:6630773,40119763 +g1,12625:6630773,40119763 +g1,12625:6303093,40119763 +(1,12625:6303093,40119763:0,0,0 +) +g1,12625:6630773,40119763 +) +g1,12627:7626635,40119763 +g1,12627:8954451,40119763 +h1,12627:10282267,40119763:0,0,0 +k1,12627:32583029,40119763:22300762 +g1,12627:32583029,40119763 +) +] +) +g1,12628:32583029,40199585 +g1,12628:6630773,40199585 +g1,12628:6630773,40199585 +g1,12628:32583029,40199585 +g1,12628:32583029,40199585 +) +h1,12628:6630773,40396193:0,0,0 +(1,12632:6630773,41261273:25952256,513147,134348 +h1,12631:6630773,41261273:983040,0,0 +k1,12631:9021245,41261273:210745 +k1,12631:10616110,41261273:210745 +k1,12631:12182140,41261273:210745 +k1,12631:12924382,41261273:210745 +k1,12631:16158303,41261273:210745 +k1,12631:17028340,41261273:210745 +k1,12631:18258170,41261273:210745 +k1,12631:19330058,41261273:210745 +k1,12631:20664090,41261273:210745 +k1,12631:24944621,41261273:210745 +k1,12631:25814658,41261273:210745 +k1,12631:27044488,41261273:210745 +k1,12631:29067959,41261273:210745 +k1,12631:31266411,41261273:210745 +k1,12632:32583029,41261273:0 +) +(1,12632:6630773,42126353:25952256,513147,134348 +k1,12631:9058466,42126353:275491 +k1,12631:10847182,42126353:275490 +k1,12631:14576420,42126353:275491 +k1,12631:16462785,42126353:275490 +k1,12631:17389704,42126353:275491 +k1,12631:19403210,42126353:275491 +k1,12631:22499370,42126353:275490 +k1,12631:23402696,42126353:275491 +k1,12631:24092953,42126353:275414 +k1,12631:24826541,42126353:275491 +k1,12631:25633528,42126353:275490 +k1,12631:27510719,42126353:275491 +k1,12631:30563625,42126353:275490 +k1,12631:31490544,42126353:275491 +k1,12631:32583029,42126353:0 +) +(1,12632:6630773,42991433:25952256,513147,126483 +k1,12631:8405051,42991433:166680 +k1,12631:9223159,42991433:166680 +k1,12631:10593079,42991433:166679 +k1,12631:12116354,42991433:166680 +k1,12631:13236583,42991433:166680 +k1,12631:15063945,42991433:166680 +k1,12631:16628508,42991433:166680 +k1,12631:18170788,42991433:166679 +k1,12631:19494178,42991433:166680 +k1,12631:20320150,42991433:166680 +k1,12631:21505915,42991433:166680 +k1,12631:23035089,42991433:166680 +k1,12631:24809366,42991433:166679 +k1,12631:27820964,42991433:166680 +k1,12631:31202185,42991433:166680 +k1,12631:32583029,42991433:0 +) +(1,12632:6630773,43856513:25952256,513147,126483 +k1,12631:9408088,43856513:176846 +k1,12631:10446077,43856513:176846 +k1,12631:13223393,43856513:176847 +k1,12631:14677536,43856513:176846 +k1,12631:16866337,43856513:176846 +k1,12631:17788327,43856513:176846 +k1,12631:18616602,43856513:176847 +k1,12631:20817855,43856513:176846 +k1,12631:22325082,43856513:176846 +k1,12631:24285163,43856513:176846 +k1,12631:25481095,43856513:176847 +k1,12631:28552011,43856513:176846 +k1,12631:31015408,43856513:176846 +k1,12631:32583029,43856513:0 +) +(1,12632:6630773,44721593:25952256,505283,134348 +g1,12631:8568017,44721593 +g1,12631:11612164,44721593 +k1,12632:32583029,44721593:17258250 +g1,12632:32583029,44721593 +) +] +(1,12634:32583029,45706769:0,0,0 +g1,12634:32583029,45706769 +) +) +] +(1,12634:6630773,47279633:25952256,0,0 +h1,12634:6630773,47279633:25952256,0,0 +) +] +(1,12634:4262630,4025873:0,0,0 +[1,12634:-473656,4025873:0,0,0 +(1,12634:-473656,-710413:0,0,0 +(1,12634:-473656,-710413:0,0,0 +g1,12634:-473656,-710413 +) +g1,12634:-473656,-710413 +) +] +) +] +!31254 +}204 +Input:1896:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1897:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!200 +{205 +[1,12680:4262630,47279633:28320399,43253760,0 +(1,12680:4262630,4025873:0,0,0 +[1,12680:-473656,4025873:0,0,0 +(1,12680:-473656,-710413:0,0,0 +(1,12680:-473656,-644877:0,0,0 +k1,12680:-473656,-644877:-65536 +) +(1,12680:-473656,4736287:0,0,0 +k1,12680:-473656,4736287:5209943 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +g1,12680:-473656,-710413 ) ] ) +[1,12680:6630773,47279633:25952256,43253760,0 +[1,12680:6630773,4812305:25952256,786432,0 +(1,12680:6630773,4812305:25952256,513147,126483 +(1,12680:6630773,4812305:25952256,513147,126483 +g1,12680:3078558,4812305 +[1,12680:3078558,4812305:0,0,0 +(1,12680:3078558,2439708:0,1703936,0 +k1,12680:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,12680:2537886,2439708:1179648,16384,0 ) +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,12680:3078558,1915420:16384,1179648,0 +) +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] -[1,13142:3078558,4812305:0,0,0 -(1,13142:3078558,2439708:0,1703936,0 -g1,13142:29030814,2439708 -g1,13142:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,13142:36151628,1915420:16384,1179648,0 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +) ) ] +[1,12680:3078558,4812305:0,0,0 +(1,12680:3078558,2439708:0,1703936,0 +g1,12680:29030814,2439708 +g1,12680:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,12680:36151628,1915420:16384,1179648,0 ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,13142:37855564,2439708:1179648,16384,0 +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) +] ) -k1,13142:3078556,2439708:-34777008 +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,12680:37855564,2439708:1179648,16384,0 ) -] -[1,13142:3078558,4812305:0,0,0 -(1,13142:3078558,49800853:0,16384,2228224 -k1,13142:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,13142:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,13142:3078558,51504789:16384,1179648,0 +k1,12680:3078556,2439708:-34777008 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 -) -] -) -) -) -] -[1,13142:3078558,4812305:0,0,0 -(1,13142:3078558,49800853:0,16384,2228224 -g1,13142:29030814,49800853 -g1,13142:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,13142:36151628,51504789:16384,1179648,0 -) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 -) -] -) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,13142:37855564,49800853:1179648,16384,0 -) -) -k1,13142:3078556,49800853:-34777008 -) -] -g1,13142:6630773,4812305 -k1,13142:19540057,4812305:11713907 -g1,13142:21162728,4812305 -g1,13142:21985204,4812305 -g1,13142:24539797,4812305 -g1,13142:25949476,4812305 -g1,13142:28728857,4812305 -g1,13142:29852144,4812305 -) -) -] -[1,13142:6630773,45706769:25952256,40108032,0 -(1,13142:6630773,45706769:25952256,40108032,0 -(1,13142:6630773,45706769:0,0,0 -g1,13142:6630773,45706769 -) -[1,13142:6630773,45706769:25952256,40108032,0 -(1,13092:6630773,6254097:25952256,513147,7863 -k1,13091:8136236,6254097:176393 -k1,13091:9706579,6254097:176392 -k1,13091:10902057,6254097:176393 -k1,13091:13179534,6254097:176393 -k1,13091:14015218,6254097:176392 -k1,13091:17384525,6254097:176393 -k1,13091:19454908,6254097:176393 -k1,13091:21597381,6254097:176393 -k1,13091:22970460,6254097:176392 -k1,13091:25300366,6254097:176393 -k1,13091:28522872,6254097:176393 -k1,13091:30774789,6254097:176392 -k1,13091:31563944,6254097:176393 -k1,13091:32583029,6254097:0 -) -(1,13092:6630773,7095585:25952256,513147,134348 -k1,13091:9153417,7095585:199393 -k1,13091:10012103,7095585:199394 -k1,13091:11230581,7095585:199393 -k1,13091:14420382,7095585:199393 -k1,13091:16185430,7095585:199393 -k1,13091:18612393,7095585:199394 -k1,13091:22476559,7095585:199393 -k1,13091:23303787,7095585:199393 -k1,13091:25205150,7095585:199393 -k1,13091:27533153,7095585:199394 -k1,13091:29281162,7095585:199393 -k1,13091:32051532,7095585:199393 -k1,13091:32583029,7095585:0 -) -(1,13092:6630773,7937073:25952256,513147,126483 -k1,13091:8212375,7937073:251221 -k1,13091:9482682,7937073:251222 -k1,13091:11203220,7937073:251221 -k1,13091:14280353,7937073:251221 -k1,13091:17609801,7937073:251222 -k1,13091:18622550,7937073:251221 -k1,13091:19892856,7937073:251221 -k1,13091:21856534,7937073:251222 -k1,13091:24095462,7937073:251221 -k1,13091:24878180,7937073:251221 -k1,13091:28688007,7937073:251222 -k1,13091:30206694,7937073:251221 -k1,13092:32583029,7937073:0 -) -(1,13092:6630773,8778561:25952256,513147,126483 -g1,13091:8594231,8778561 -g1,13091:9444888,8778561 -g1,13091:10391883,8778561 -g1,13091:12550638,8778561 -g1,13091:13697518,8778561 -g1,13091:16294054,8778561 -g1,13091:20795722,8778561 -g1,13091:21646379,8778561 -g1,13091:22864693,8778561 -g1,13091:25217435,8778561 -g1,13091:27404371,8778561 -k1,13092:32583029,8778561:4317515 -g1,13092:32583029,8778561 -) -(1,13095:6630773,9620049:25952256,505283,126483 -h1,13093:6630773,9620049:983040,0,0 -k1,13093:10890375,9620049:193093 -k1,13093:12274912,9620049:193092 -k1,13093:13976644,9620049:193093 -k1,13093:18615044,9620049:193093 -k1,13093:19799697,9620049:193093 -k1,13093:23122133,9620049:193092 -k1,13093:23931264,9620049:193093 -k1,13093:25911524,9620049:193093 -k1,13093:26866145,9620049:193093 -k1,13093:29918573,9620049:193092 -k1,13093:31303111,9620049:193093 -k1,13095:32583029,9620049:0 -) -(1,13095:6630773,10461537:25952256,505283,126483 -g1,13093:7743574,10461537 -g1,13093:9950826,10461537 -g1,13093:11341500,10461537 -g1,13093:14075006,10461537 -g1,13093:16455929,10461537 -k1,13095:32583029,10461537:16127100 -g1,13095:32583029,10461537 -) -(1,13096:6630773,12552797:25952256,564462,139132 -(1,13096:6630773,12552797:2450326,534184,12975 -g1,13096:6630773,12552797 -g1,13096:9081099,12552797 -) -g1,13096:12446963,12552797 -g1,13096:13416569,12552797 -g1,13096:17776549,12552797 -k1,13096:32583029,12552797:11452872 -g1,13096:32583029,12552797 -) -(1,13104:6630773,13787501:25952256,513147,126483 -k1,13102:8550060,13787501:136052 -k1,13102:9041973,13787501:136053 -k1,13102:10990751,13787501:136052 -k1,13102:13114511,13787501:136053 -k1,13102:15918534,13787501:136052 -k1,13102:17521283,13787501:136053 -k1,13102:21423034,13787501:136052 -k1,13102:23783379,13787501:136053 -k1,13102:25110876,13787501:136052 -k1,13102:28817330,13787501:136053 -k1,13102:32583029,13787501:0 -) -(1,13104:6630773,14628989:25952256,513147,126483 -k1,13102:9781088,14628989:135004 -k1,13102:10784444,14628989:135004 -k1,13102:12256382,14628989:135004 -k1,13102:13491081,14628989:135005 -k1,13102:14084182,14628989:135004 -k1,13102:16750842,14628989:135004 -k1,13102:17501884,14628989:135004 -k1,13102:21055246,14628989:135004 -k1,13102:24668246,14628989:135004 -k1,13102:25999938,14628989:135005 -k1,13102:28678394,14628989:135004 -k1,13102:30897443,14628989:135004 -k1,13102:31563944,14628989:135004 -k1,13102:32583029,14628989:0 -) -(1,13104:6630773,15470477:25952256,513147,126483 -k1,13102:8426677,15470477:142431 -k1,13102:9516760,15470477:142432 -k1,13102:10425307,15470477:142431 -k1,13102:12380465,15470477:142432 -k1,13102:14840904,15470477:142431 -k1,13102:16348450,15470477:142431 -k1,13102:17177044,15470477:142432 -k1,13102:20737178,15470477:142431 -k1,13102:21495648,15470477:142432 -k1,13102:24392557,15470477:142431 -k1,13102:27317648,15470477:142432 -k1,13102:29008695,15470477:142431 -k1,13102:32583029,15470477:0 -) -(1,13104:6630773,16311965:25952256,513147,126483 -k1,13102:7817781,16311965:167923 -k1,13102:9371791,16311965:167924 -k1,13102:10199006,16311965:167923 -k1,13102:12921522,16311965:167923 -k1,13102:13620943,16311965:167924 -k1,13102:14807951,16311965:167923 -k1,13102:17054021,16311965:167923 -k1,13102:17881236,16311965:167923 -k1,13102:19068245,16311965:167924 -k1,13102:23001867,16311965:167923 -k1,13102:26599289,16311965:167923 -k1,13102:27585102,16311965:167924 -k1,13102:28772110,16311965:167923 -k1,13102:32583029,16311965:0 -) -(1,13104:6630773,17153453:25952256,513147,134348 -k1,13102:9386007,17153453:197364 -k1,13102:10602456,17153453:197364 -k1,13102:12626965,17153453:197365 -k1,13102:13633699,17153453:197364 -k1,13102:16228370,17153453:197364 -k1,13102:19087151,17153453:197364 -k1,13102:19816013,17153453:197365 -k1,13102:21881808,17153453:197364 -k1,13102:23275859,17153453:197364 -k1,13102:25065093,17153453:197364 -k1,13102:28107375,17153453:197364 -k1,13102:28964032,17153453:197365 -k1,13102:32051532,17153453:197362 -k1,13102:32583029,17153453:0 -) -(1,13104:6630773,17994941:25952256,513147,126483 -k1,13102:7402272,17994941:155461 -k1,13102:8576817,17994941:155460 -k1,13102:11563433,17994941:155461 -k1,13102:12378186,17994941:155461 -k1,13102:13552732,17994941:155461 -k1,13102:16598985,17994941:155460 -k1,13102:17945891,17994941:155461 -k1,13102:19120437,17994941:155461 -k1,13102:23721204,17994941:155460 -k1,13102:24535957,17994941:155461 -k1,13102:25710503,17994941:155461 -k1,13102:28039138,17994941:155461 -k1,13102:28853890,17994941:155460 -k1,13102:30028436,17994941:155461 -k1,13102:32583029,17994941:0 -) -(1,13104:6630773,18836429:25952256,505283,134348 -g1,13102:8105988,18836429 -g1,13102:10153332,18836429 -g1,13102:12327161,18836429 -k1,13104:32583029,18836429:20255868 -g1,13104:32583029,18836429 -) -(1,13105:6630773,20927689:25952256,555811,139132 -(1,13105:6630773,20927689:2450326,527696,0 -g1,13105:6630773,20927689 -g1,13105:9081099,20927689 -) -g1,13105:11511961,20927689 -g1,13105:14234786,20927689 -g1,13105:15802014,20927689 -k1,13105:32583029,20927689:13537704 -g1,13105:32583029,20927689 -) -(1,13108:6630773,22162393:25952256,513147,134348 -k1,13107:7776888,22162393:192566 -k1,13107:11387158,22162393:192567 -k1,13107:13277762,22162393:192566 -k1,13107:16782518,22162393:192566 -k1,13107:19863257,22162393:192567 -k1,13107:22345651,22162393:192566 -k1,13107:23154255,22162393:192566 -k1,13107:24844975,22162393:192567 -h1,13107:26040352,22162393:0,0,0 -k1,13107:26232918,22162393:192566 -k1,13107:27709990,22162393:192566 -k1,13107:29715283,22162393:192567 -k1,13107:31895556,22162393:192566 -k1,13107:32583029,22162393:0 -) -(1,13108:6630773,23003881:25952256,513147,134348 -k1,13107:9106887,23003881:186286 -k1,13107:11664921,23003881:186286 -k1,13107:12917478,23003881:186286 -k1,13107:14479365,23003881:186286 -k1,13107:15684736,23003881:186286 -k1,13107:18044196,23003881:186286 -k1,13107:18889774,23003881:186286 -k1,13107:20095144,23003881:186285 -k1,13107:20968903,23003881:186286 -k1,13107:22227358,23003881:186286 -k1,13107:23699460,23003881:186286 -k1,13107:24904831,23003881:186286 -k1,13107:26480480,23003881:186286 -k1,13107:27318194,23003881:186286 -k1,13107:29389951,23003881:186286 -k1,13107:30595322,23003881:186286 -k1,13107:32583029,23003881:0 -) -(1,13108:6630773,23845369:25952256,513147,102891 -k1,13107:8028328,23845369:190382 -k1,13107:9079853,23845369:190382 -k1,13107:11070509,23845369:190382 -k1,13107:12545397,23845369:190382 -k1,13107:13754864,23845369:190382 -k1,13107:15044940,23845369:190382 -k1,13107:15766819,23845369:190382 -k1,13107:17243017,23845369:190382 -k1,13107:19645239,23845369:190382 -k1,13107:20601737,23845369:190382 -k1,13107:21811204,23845369:190382 -k1,13107:25808572,23845369:190382 -k1,13107:28297302,23845369:190382 -k1,13107:29139112,23845369:190382 -k1,13107:32583029,23845369:0 -) -(1,13108:6630773,24686857:25952256,513147,134348 -k1,13107:7889097,24686857:239239 -k1,13107:9781808,24686857:239238 -k1,13107:10708520,24686857:239239 -k1,13107:11479256,24686857:239239 -k1,13107:14858324,24686857:239238 -k1,13107:15713601,24686857:239239 -k1,13107:16971925,24686857:239239 -k1,13107:20099336,24686857:239239 -k1,13107:22471771,24686857:239238 -k1,13107:25108972,24686857:239239 -(1,13107:25108972,24686857:0,452978,115847 -r1,13142:27929221,24686857:2820249,568825,115847 -k1,13107:25108972,24686857:-2820249 -) -(1,13107:25108972,24686857:2820249,452978,115847 -k1,13107:25108972,24686857:3277 -h1,13107:27925944,24686857:0,411205,112570 -) -k1,13107:28168460,24686857:239239 -k1,13107:30453732,24686857:239238 -k1,13107:31224468,24686857:239239 -k1,13108:32583029,24686857:0 -) -(1,13108:6630773,25528345:25952256,513147,134348 -k1,13107:8356757,25528345:241594 -k1,13107:9249778,25528345:241593 -k1,13107:12935289,25528345:241594 -k1,13107:14195967,25528345:241593 -k1,13107:15125034,25528345:241594 -k1,13107:16760578,25528345:241593 -k1,13107:19573149,25528345:241594 -k1,13107:20466171,25528345:241594 -k1,13107:21726849,25528345:241593 -k1,13107:23241808,25528345:241594 -k1,13107:25943623,25528345:241593 -k1,13107:28612671,25528345:241594 -k1,13107:30556234,25528345:241593 -k1,13107:31563944,25528345:241594 -k1,13107:32583029,25528345:0 -) -(1,13108:6630773,26369833:25952256,513147,134348 -k1,13107:10263910,26369833:230508 -k1,13107:11145846,26369833:230508 -k1,13107:11732213,26369833:230507 -k1,13107:13245916,26369833:230508 -k1,13107:14749789,26369833:230508 -k1,13107:15933846,26369833:230508 -k1,13107:17268636,26369833:230508 -k1,13107:19761447,26369833:230508 -k1,13107:22754297,26369833:230507 -k1,13107:26561105,26369833:230508 -k1,13107:29772190,26369833:230508 -k1,13107:32583029,26369833:0 -) -(1,13108:6630773,27211321:25952256,513147,134348 -g1,13107:8151863,27211321 -g1,13107:9010384,27211321 -g1,13107:10228698,27211321 -g1,13107:11817290,27211321 -g1,13107:12778047,27211321 -g1,13107:15404730,27211321 -g1,13107:15959819,27211321 -g1,13107:17442243,27211321 -g1,13107:20713800,27211321 -g1,13107:21564457,27211321 -g1,13107:23892295,27211321 -g1,13107:27372256,27211321 -(1,13107:27372256,27211321:0,452978,115847 -r1,13142:29489081,27211321:2116825,568825,115847 -k1,13107:27372256,27211321:-2116825 -) -(1,13107:27372256,27211321:2116825,452978,115847 -k1,13107:27372256,27211321:3277 -h1,13107:29485804,27211321:0,411205,112570 -) -k1,13108:32583029,27211321:2920278 -g1,13108:32583029,27211321 -) -(1,13129:6630773,33420565:25952256,5359170,0 -k1,13129:6761220,33420565:130447 -(1,13109:6761220,33420565:0,0,0 -g1,13109:6761220,33420565 -g1,13109:6761220,33420565 -g1,13109:6433540,33420565 -(1,13109:6433540,33420565:0,0,0 -) -g1,13109:6761220,33420565 -) -(1,13127:6761220,33420565:25691363,5359170,0 -g1,13127:8758081,33420565 -(1,13127:8758081,29062780:0,0,0 -(1,13127:8758081,29062780:0,0,0 -g1,13111:8758081,29062780 -(1,13112:8758081,29062780:0,0,0 -(1,13112:8758081,29062780:0,0,0 -g1,13112:8758081,29062780 -g1,13112:8758081,29062780 -g1,13112:8758081,29062780 -g1,13112:8758081,29062780 -g1,13112:8758081,29062780 -(1,13112:8758081,29062780:0,0,0 -(1,13112:8758081,29062780:1751777,454754,7077 -(1,13112:8758081,29062780:1751777,454754,7077 -) -g1,13112:10509858,29062780 -) -) -g1,13112:8758081,29062780 -g1,13112:8758081,29062780 -) -) -g1,13112:8758081,29062780 -(1,13113:8758081,29062780:0,0,0 -(1,13113:8758081,29062780:0,0,0 -g1,13113:8758081,29062780 -g1,13113:8758081,29062780 -g1,13113:8758081,29062780 -g1,13113:8758081,29062780 -g1,13113:8758081,29062780 -(1,13113:8758081,29062780:0,0,0 -(1,13113:8758081,29062780:3574334,454754,7077 -(1,13113:8758081,29062780:3574334,454754,7077 -) -g1,13113:12332415,29062780 -) -) -g1,13113:8758081,29062780 -g1,13113:8758081,29062780 -) -) -(1,13114:8758081,29062780:0,0,0 -(1,13114:8758081,29062780:0,0,0 -g1,13114:8758081,29062780 -g1,13114:8758081,29062780 -g1,13114:8758081,29062780 -g1,13114:8758081,29062780 -g1,13114:8758081,29062780 -(1,13114:8758081,29062780:0,0,0 -(1,13114:8758081,29062780:1272717,408008,104590 -(1,13114:8758081,29062780:1272717,408008,104590 -(1,13114:8758081,29062780:0,408008,104590 -r1,13142:10030798,29062780:1272717,512598,104590 -k1,13114:8758081,29062780:-1272717 -) -(1,13114:8758081,29062780:1272717,408008,104590 -k1,13114:8758081,29062780:3277 -h1,13114:10027521,29062780:0,370085,101313 -) -) -g1,13114:10030798,29062780 -) -) -g1,13114:8758081,29062780 -g1,13114:8758081,29062780 -) -) -g1,13114:8758081,29062780 -(1,13115:8758081,29062780:0,0,0 -(1,13115:8758081,29062780:0,0,0 -g1,13115:8758081,29062780 -g1,13115:8758081,29062780 -g1,13115:8758081,29062780 -g1,13115:8758081,29062780 -g1,13115:8758081,29062780 -(1,13115:8758081,29062780:0,0,0 -(1,13115:8758081,29062780:5422007,454754,120913 -(1,13115:8758081,29062780:5422007,454754,120913 -(1,13115:8758081,29062780:0,408008,104590 -r1,13142:9397716,29062780:639635,512598,104590 -k1,13115:8758081,29062780:-639635 -) -(1,13115:8758081,29062780:639635,408008,104590 -k1,13115:8758081,29062780:3277 -h1,13115:9394439,29062780:0,370085,101313 -) -g1,13115:9577023,29062780 -g1,13115:11487464,29062780 -$1,13115:11487464,29062780 -$1,13115:12094983,29062780 -g1,13115:12274290,29062780 -(1,13115:12274290,29062780:0,408008,110889 -r1,13142:14180088,29062780:1905798,518897,110889 -k1,13115:12274290,29062780:-1905798 -) -(1,13115:12274290,29062780:1905798,408008,110889 -k1,13115:12274290,29062780:3277 -h1,13115:14176811,29062780:0,370085,101313 -) -) -g1,13115:14180088,29062780 -) -) -g1,13115:8758081,29062780 -g1,13115:8758081,29062780 -) -) -g1,13115:8758081,29062780 -(1,13116:8758081,29062780:0,0,0 -(1,13116:8758081,29062780:0,0,0 -g1,13116:8758081,29062780 -g1,13116:8758081,29062780 -g1,13116:8758081,29062780 -g1,13116:8758081,29062780 -g1,13116:8758081,29062780 -(1,13116:8758081,29062780:0,0,0 -(1,13116:8758081,29062780:2538879,408008,104590 -(1,13116:8758081,29062780:2538879,408008,104590 -(1,13116:8758081,29062780:0,408008,104590 -r1,13142:11296960,29062780:2538879,512598,104590 -k1,13116:8758081,29062780:-2538879 -) -(1,13116:8758081,29062780:2538879,408008,104590 -k1,13116:8758081,29062780:3277 -h1,13116:11293683,29062780:0,370085,101313 -) -) -g1,13116:11296960,29062780 -) -) -g1,13116:8758081,29062780 -g1,13116:8758081,29062780 -) -) -g1,13116:8758081,29062780 -(1,13117:8758081,29062780:0,0,0 -(1,13117:8758081,29062780:0,0,0 -g1,13117:8758081,29062780 -g1,13117:8758081,29062780 -g1,13117:8758081,29062780 -g1,13117:8758081,29062780 -g1,13117:8758081,29062780 -(1,13117:8758081,29062780:0,0,0 -(1,13117:8758081,29062780:6272072,454754,104590 -(1,13117:8758081,29062780:6272072,454754,104590 -g1,13117:10089904,29062780 -g1,13117:12020988,29062780 -$1,13117:12020988,29062780 -$1,13117:12628507,29062780 -g1,13117:12807814,29062780 -(1,13117:12807814,29062780:0,414307,104590 -r1,13142:15030153,29062780:2222339,518897,104590 -k1,13117:12807814,29062780:-2222339 -) -(1,13117:12807814,29062780:2222339,414307,104590 -k1,13117:12807814,29062780:3277 -h1,13117:15026876,29062780:0,370085,101313 -) -) -g1,13117:15030153,29062780 -) -) -g1,13117:8758081,29062780 -g1,13117:8758081,29062780 -) -) -g1,13117:8758081,29062780 -(1,13118:8758081,29062780:0,0,0 -(1,13118:8758081,29062780:0,0,0 -g1,13118:8758081,29062780 -g1,13118:8758081,29062780 -g1,13118:8758081,29062780 -g1,13118:8758081,29062780 -g1,13118:8758081,29062780 -(1,13118:8758081,29062780:0,0,0 -(1,13118:8758081,29062780:5839726,454754,104590 -(1,13118:8758081,29062780:5839726,454754,104590 -g1,13118:10089904,29062780 -g1,13118:12538264,29062780 -$1,13118:12538264,29062780 -$1,13118:13145783,29062780 -g1,13118:13325090,29062780 -(1,13118:13325090,29062780:0,408008,104590 -r1,13142:14597807,29062780:1272717,512598,104590 -k1,13118:13325090,29062780:-1272717 -) -(1,13118:13325090,29062780:1272717,408008,104590 -k1,13118:13325090,29062780:3277 -h1,13118:14594530,29062780:0,370085,101313 -) -) -g1,13118:14597807,29062780 -) -) -g1,13118:8758081,29062780 -g1,13118:8758081,29062780 -) -) -g1,13118:8758081,29062780 -(1,13119:8758081,29062780:0,0,0 -(1,13119:8758081,29062780:0,0,0 -g1,13119:8758081,29062780 -g1,13119:8758081,29062780 -g1,13119:8758081,29062780 -g1,13119:8758081,29062780 -g1,13119:8758081,29062780 -(1,13119:8758081,29062780:0,0,0 -(1,13119:8758081,29062780:2550076,454754,120913 -(1,13119:8758081,29062780:2550076,454754,120913 -(1,13119:8758081,29062780:0,408008,104590 -r1,13142:9397716,29062780:639635,512598,104590 -k1,13119:8758081,29062780:-639635 -) -(1,13119:8758081,29062780:639635,408008,104590 -k1,13119:8758081,29062780:3277 -h1,13119:9394439,29062780:0,370085,101313 -) -g1,13119:9577023,29062780 -) -g1,13119:11308157,29062780 -) -) -g1,13119:8758081,29062780 -g1,13119:8758081,29062780 -) -) -g1,13119:8758081,29062780 -g1,13120:8758081,29062780 -g1,13120:8758081,29062780 -g1,13120:8758081,29062780 -g1,13120:8758081,29062780 -g1,13120:8758081,29062780 -g1,13120:8758081,29062780 -g1,13121:8758081,29062780 -g1,13121:8758081,29062780 -g1,13121:8758081,29062780 -g1,13121:8758081,29062780 -g1,13121:8758081,29062780 -g1,13121:8758081,29062780 -g1,13122:8758081,29062780 -g1,13122:8758081,29062780 -g1,13122:8758081,29062780 -g1,13122:8758081,29062780 -g1,13122:8758081,29062780 -g1,13122:8758081,29062780 -g1,13123:8758081,29062780 -g1,13123:8758081,29062780 -g1,13123:8758081,29062780 -g1,13123:8758081,29062780 -g1,13123:8758081,29062780 -g1,13123:8758081,29062780 -g1,13124:8758081,29062780 -g1,13124:8758081,29062780 -g1,13124:8758081,29062780 -g1,13124:8758081,29062780 -g1,13124:8758081,29062780 -g1,13124:8758081,29062780 -g1,13125:8758081,29062780 -g1,13125:8758081,29062780 -g1,13125:8758081,29062780 -g1,13125:8758081,29062780 -g1,13125:8758081,29062780 -g1,13125:8758081,29062780 -g1,13126:8758081,29062780 -g1,13126:8758081,29062780 -g1,13126:8758081,29062780 -g1,13126:8758081,29062780 -g1,13126:8758081,29062780 -g1,13126:8758081,29062780 -g1,13127:8758081,29062780 -g1,13127:8758081,29062780 -) -g1,13127:8758081,29062780 -) -) -g1,13129:32452583,33420565 -k1,13129:32583029,33420565:130446 -) -v1,13132:6630773,34912242:0,393216,0 -(1,13133:6630773,37966157:25952256,3447131,0 -g1,13133:6630773,37966157 -g1,13133:6303093,37966157 -r1,13142:6401397,37966157:98304,3447131,0 -g1,13133:6600626,37966157 -g1,13133:6797234,37966157 -[1,13133:6797234,37966157:25785795,3447131,0 -(1,13133:6797234,35307345:25785795,788319,218313 -(1,13132:6797234,35307345:0,788319,218313 -r1,13142:7917113,35307345:1119879,1006632,218313 -k1,13132:6797234,35307345:-1119879 -) -(1,13132:6797234,35307345:1119879,788319,218313 -) -k1,13132:8190251,35307345:273138 -k1,13132:8517931,35307345:327680 -k1,13132:10722416,35307345:273139 -k1,13132:11683027,35307345:273138 -k1,13132:14245993,35307345:273138 -k1,13132:16869252,35307345:273138 -k1,13132:18536342,35307345:273139 -k1,13132:20511450,35307345:273138 -k1,13132:23810385,35307345:273138 -k1,13132:25651144,35307345:273138 -k1,13132:27358211,35307345:273139 -k1,13132:28046118,35307345:273064 -k1,13132:29510701,35307345:273138 -k1,13132:32583029,35307345:0 -) -(1,13133:6797234,36148833:25785795,505283,134348 -k1,13132:9859111,36148833:151423 -k1,13132:12297741,36148833:151423 -k1,13132:13734980,36148833:151423 -k1,13132:16258152,36148833:151424 -(1,13132:16258152,36148833:0,452978,115847 -r1,13142:17671553,36148833:1413401,568825,115847 -k1,13132:16258152,36148833:-1413401 -) -(1,13132:16258152,36148833:1413401,452978,115847 -k1,13132:16258152,36148833:3277 -h1,13132:17668276,36148833:0,411205,112570 -) -k1,13132:17822976,36148833:151423 -k1,13132:19165844,36148833:151423 -(1,13132:19165844,36148833:0,452978,115847 -r1,13142:20579245,36148833:1413401,568825,115847 -k1,13132:19165844,36148833:-1413401 -) -(1,13132:19165844,36148833:1413401,452978,115847 -k1,13132:19165844,36148833:3277 -h1,13132:20575968,36148833:0,411205,112570 -) -k1,13132:20730668,36148833:151423 -k1,13132:24009469,36148833:151423 -k1,13132:24788727,36148833:151423 -k1,13132:26632291,36148833:151424 -k1,13132:28481096,36148833:151423 -k1,13132:29651604,36148833:151423 -k1,13132:32583029,36148833:0 -) -(1,13133:6797234,36990321:25785795,513147,134348 -k1,13132:7691951,36990321:235425 -k1,13132:8946462,36990321:235426 -k1,13132:11141413,36990321:235425 -k1,13132:11908335,36990321:235425 -k1,13132:15079774,36990321:235426 -k1,13132:16506644,36990321:235425 -k1,13132:17808340,36990321:235425 -k1,13132:20173030,36990321:235425 -k1,13132:21174572,36990321:235426 -k1,13132:22429082,36990321:235425 -k1,13132:25378353,36990321:235425 -k1,13132:28398404,36990321:235426 -k1,13132:29625389,36990321:235425 -k1,13132:32583029,36990321:0 -) -(1,13133:6797234,37831809:25785795,513147,134348 -g1,13132:8068632,37831809 -g1,13132:9186676,37831809 -g1,13132:12370415,37831809 -g1,13132:13101141,37831809 -g1,13132:16053537,37831809 -g1,13132:17014294,37831809 -g1,13132:18815223,37831809 -g1,13132:22086780,37831809 -k1,13133:32583029,37831809:7412125 -g1,13133:32583029,37831809 -) -] -g1,13133:32583029,37966157 -) -h1,13133:6630773,37966157:0,0,0 -v1,13136:6630773,39327797:0,393216,0 -(1,13137:6630773,45706769:25952256,6772188,0 -g1,13137:6630773,45706769 -g1,13137:6303093,45706769 -r1,13142:6401397,45706769:98304,6772188,0 -g1,13137:6600626,45706769 -g1,13137:6797234,45706769 -[1,13137:6797234,45706769:25785795,6772188,0 -(1,13137:6797234,39689870:25785795,755289,196608 -(1,13136:6797234,39689870:0,755289,196608 -r1,13142:8134168,39689870:1336934,951897,196608 -k1,13136:6797234,39689870:-1336934 -) -(1,13136:6797234,39689870:1336934,755289,196608 -) -k1,13136:8419339,39689870:285171 -k1,13136:8747019,39689870:327680 -k1,13136:11430152,39689870:285171 -(1,13136:11430152,39689870:0,452978,115847 -r1,13142:14250401,39689870:2820249,568825,115847 -k1,13136:11430152,39689870:-2820249 -) -(1,13136:11430152,39689870:2820249,452978,115847 -k1,13136:11430152,39689870:3277 -h1,13136:14247124,39689870:0,411205,112570 -) -k1,13136:14535573,39689870:285172 -k1,13136:17585053,39689870:285171 -k1,13136:18889309,39689870:285171 -k1,13136:20274174,39689870:285171 -k1,13136:22126966,39689870:285171 -k1,13136:23431222,39689870:285171 -k1,13136:25704101,39689870:285172 -k1,13136:26676745,39689870:285171 -k1,13136:29095113,39689870:285171 -k1,13136:32124932,39689870:285171 -k1,13136:32583029,39689870:0 -) -(1,13137:6797234,40531358:25785795,513147,126483 -k1,13136:8435381,40531358:273032 -k1,13136:9469940,40531358:273031 -k1,13136:12182222,40531358:273032 -k1,13136:15426001,40531358:273032 -k1,13136:16330799,40531358:273031 -k1,13136:17073724,40531358:273032 -k1,13136:18776752,40531358:273032 -k1,13136:21504107,40531358:273032 -(1,13136:21504107,40531358:0,452978,122846 -r1,13142:24676067,40531358:3171960,575824,122846 -k1,13136:21504107,40531358:-3171960 -) -(1,13136:21504107,40531358:3171960,452978,122846 -k1,13136:21504107,40531358:3277 -h1,13136:24672790,40531358:0,411205,112570 -) -k1,13136:24949098,40531358:273031 -k1,13136:25873558,40531358:273032 -k1,13136:28350566,40531358:273032 -k1,13136:29642682,40531358:273031 -k1,13136:31015408,40531358:273032 -k1,13136:32583029,40531358:0 -) -(1,13137:6797234,41372846:25785795,513147,134348 -k1,13136:8071236,41372846:254917 -k1,13136:10313860,41372846:254917 -k1,13136:11256250,41372846:254917 -k1,13136:13644364,41372846:254917 -k1,13136:15095968,41372846:254917 -k1,13136:17616465,41372846:254917 -(1,13136:17616465,41372846:0,452978,115847 -r1,13142:20436714,41372846:2820249,568825,115847 -k1,13136:17616465,41372846:-2820249 -) -(1,13136:17616465,41372846:2820249,452978,115847 -k1,13136:17616465,41372846:3277 -h1,13136:20433437,41372846:0,411205,112570 -) -k1,13136:20691630,41372846:254916 -k1,13136:23400870,41372846:254917 -k1,13136:25582545,41372846:254917 -k1,13136:26523624,41372846:254917 -k1,13136:28167249,41372846:254917 -k1,13136:29108328,41372846:254917 -k1,13136:30382330,41372846:254917 -k1,13137:32583029,41372846:0 -) -(1,13137:6797234,42214334:25785795,513147,134348 -k1,13136:7687682,42214334:202975 -k1,13136:9850183,42214334:202975 -k1,13136:12755207,42214334:202975 -k1,13136:13314042,42214334:202975 -k1,13136:16140423,42214334:202975 -k1,13136:18502154,42214334:202975 -(1,13136:18502154,42214334:0,452978,115847 -r1,13142:19915555,42214334:1413401,568825,115847 -k1,13136:18502154,42214334:-1413401 -) -(1,13136:18502154,42214334:1413401,452978,115847 -k1,13136:18502154,42214334:3277 -h1,13136:19912278,42214334:0,411205,112570 -) -k1,13136:20118529,42214334:202974 -k1,13136:21004389,42214334:202975 -k1,13136:21563224,42214334:202975 -k1,13136:26174806,42214334:202975 -k1,13136:27044937,42214334:202975 -(1,13136:27044937,42214334:0,452978,122846 -r1,13142:30216897,42214334:3171960,575824,122846 -k1,13136:27044937,42214334:-3171960 -) -(1,13136:27044937,42214334:3171960,452978,122846 -k1,13136:27044937,42214334:3277 -h1,13136:30213620,42214334:0,411205,112570 -) -k1,13136:30419872,42214334:202975 -k1,13136:31931601,42214334:202975 -k1,13136:32583029,42214334:0 -) -(1,13137:6797234,43055822:25785795,513147,115847 -k1,13136:9260866,43055822:259656 -k1,13136:10539606,43055822:259655 -k1,13136:11898956,43055822:259656 -k1,13136:12690109,43055822:259656 -k1,13136:15907404,43055822:259655 -k1,13136:18695439,43055822:259656 -k1,13136:19614387,43055822:259656 -k1,13136:21250954,43055822:259656 -k1,13136:23964932,43055822:259655 -(1,13136:23964932,43055822:0,452978,115847 -r1,13142:26785181,43055822:2820249,568825,115847 -k1,13136:23964932,43055822:-2820249 -) -(1,13136:23964932,43055822:2820249,452978,115847 -k1,13136:23964932,43055822:3277 -h1,13136:26781904,43055822:0,411205,112570 -) -k1,13136:27044837,43055822:259656 -k1,13136:28408775,43055822:259656 -k1,13136:29416196,43055822:259655 -k1,13136:31189078,43055822:259656 -k1,13136:32583029,43055822:0 -) -(1,13137:6797234,43897310:25785795,513147,134348 -k1,13136:9288767,43897310:173525 -k1,13136:11174748,43897310:173525 -k1,13136:12742223,43897310:173524 -k1,13136:14667525,43897310:173525 -k1,13136:17603393,43897310:173525 -k1,13136:20735213,43897310:173525 -k1,13136:22625780,43897310:173524 -k1,13136:25709759,43897310:173525 -k1,13136:27844121,43897310:173525 -k1,13136:32583029,43897310:0 -) -(1,13137:6797234,44738798:25785795,513147,134348 -k1,13136:7709996,44738798:253470 -k1,13136:10417789,44738798:253470 -(1,13136:10417789,44738798:0,452978,115847 -r1,13142:13238038,44738798:2820249,568825,115847 -k1,13136:10417789,44738798:-2820249 -) -(1,13136:10417789,44738798:2820249,452978,115847 -k1,13136:10417789,44738798:3277 -h1,13136:13234761,44738798:0,411205,112570 -) -k1,13136:13491507,44738798:253469 -k1,13136:15029483,44738798:253470 -k1,13136:16635616,44738798:253470 -k1,13136:20127875,44738798:253470 -k1,13136:21040637,44738798:253470 -k1,13136:24048584,44738798:253469 -k1,13136:27348167,44738798:253470 -k1,13136:29299675,44738798:253470 -k1,13136:32583029,44738798:0 -) -(1,13137:6797234,45580286:25785795,505283,126483 -g1,13136:8015548,45580286 -g1,13136:10851946,45580286 -k1,13137:32583029,45580286:20457718 -g1,13137:32583029,45580286 -) -] -g1,13137:32583029,45706769 -) -h1,13137:6630773,45706769:0,0,0 -] -(1,13142:32583029,45706769:0,0,0 -g1,13142:32583029,45706769 -) -) -] -(1,13142:6630773,47279633:25952256,0,0 -h1,13142:6630773,47279633:25952256,0,0 -) -] -(1,13142:4262630,4025873:0,0,0 -[1,13142:-473656,4025873:0,0,0 -(1,13142:-473656,-710413:0,0,0 -(1,13142:-473656,-710413:0,0,0 -g1,13142:-473656,-710413 -) -g1,13142:-473656,-710413 -) -] -) -] -!30210 -}225 -Input:1995:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1996:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1997:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1998:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1999:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2000:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2001:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2002:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2003:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2004:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2005:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2006:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2007:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1234 -{226 -[1,13218:4262630,47279633:28320399,43253760,0 -(1,13218:4262630,4025873:0,0,0 -[1,13218:-473656,4025873:0,0,0 -(1,13218:-473656,-710413:0,0,0 -(1,13218:-473656,-644877:0,0,0 -k1,13218:-473656,-644877:-65536 +] +[1,12680:3078558,4812305:0,0,0 +(1,12680:3078558,49800853:0,16384,2228224 +k1,12680:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,12680:2537886,49800853:1179648,16384,0 ) -(1,13218:-473656,4736287:0,0,0 -k1,13218:-473656,4736287:5209943 +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,12680:3078558,51504789:16384,1179648,0 ) -g1,13218:-473656,-710413 +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 ) ] ) -[1,13218:6630773,47279633:25952256,43253760,0 -[1,13218:6630773,4812305:25952256,786432,0 -(1,13218:6630773,4812305:25952256,505283,134348 -(1,13218:6630773,4812305:25952256,505283,134348 -g1,13218:3078558,4812305 -[1,13218:3078558,4812305:0,0,0 -(1,13218:3078558,2439708:0,1703936,0 -k1,13218:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,13218:2537886,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,13218:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +] +[1,12680:3078558,4812305:0,0,0 +(1,12680:3078558,49800853:0,16384,2228224 +g1,12680:29030814,49800853 +g1,12680:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,12680:36151628,51504789:16384,1179648,0 +) +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 ) ] ) +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,12680:37855564,49800853:1179648,16384,0 +) ) +k1,12680:3078556,49800853:-34777008 ) ] -[1,13218:3078558,4812305:0,0,0 -(1,13218:3078558,2439708:0,1703936,0 -g1,13218:29030814,2439708 -g1,13218:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,13218:36151628,1915420:16384,1179648,0 +g1,12680:6630773,4812305 +k1,12680:19540057,4812305:11713907 +g1,12680:21162728,4812305 +g1,12680:21985204,4812305 +g1,12680:24539797,4812305 +g1,12680:25949476,4812305 +g1,12680:28728857,4812305 +g1,12680:29852144,4812305 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 ) ] +[1,12680:6630773,45706769:25952256,40108032,0 +(1,12680:6630773,45706769:25952256,40108032,0 +(1,12680:6630773,45706769:0,0,0 +g1,12680:6630773,45706769 ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,13218:37855564,2439708:1179648,16384,0 +[1,12680:6630773,45706769:25952256,40108032,0 +v1,12634:6630773,6254097:0,393216,0 +(1,12638:6630773,6594780:25952256,733899,196608 +g1,12638:6630773,6594780 +g1,12638:6630773,6594780 +g1,12638:6434165,6594780 +(1,12638:6434165,6594780:0,733899,196608 +r1,12680:32779637,6594780:26345472,930507,196608 +k1,12638:6434165,6594780:-26345472 +) +(1,12638:6434165,6594780:26345472,733899,196608 +[1,12638:6630773,6594780:25952256,537291,0 +(1,12636:6630773,6488534:25952256,431045,106246 +(1,12635:6630773,6488534:0,0,0 +g1,12635:6630773,6488534 +g1,12635:6630773,6488534 +g1,12635:6303093,6488534 +(1,12635:6303093,6488534:0,0,0 +) +g1,12635:6630773,6488534 +) +k1,12636:6630773,6488534:0 +g1,12636:9950313,6488534 +g1,12636:11942037,6488534 +g1,12636:12605945,6488534 +h1,12636:13269853,6488534:0,0,0 +k1,12636:32583029,6488534:19313176 +g1,12636:32583029,6488534 +) +] +) +g1,12638:32583029,6594780 +g1,12638:6630773,6594780 +g1,12638:6630773,6594780 +g1,12638:32583029,6594780 +g1,12638:32583029,6594780 +) +h1,12638:6630773,6791388:0,0,0 +(1,12641:6630773,20870908:25952256,14013984,0 +k1,12641:12599879,20870908:5969106 +h1,12640:12599879,20870908:0,0,0 +(1,12640:12599879,20870908:14014044,14013984,0 +(1,12640:12599879,20870908:14014019,14014019,0 +(1,12640:12599879,20870908:14014019,14014019,0 +(1,12640:12599879,20870908:0,14014019,0 +(1,12640:12599879,20870908:0,18945146,0 +(1,12640:12599879,20870908:18945146,18945146,0 +) +k1,12640:12599879,20870908:-18945146 +) +) +g1,12640:26613898,20870908 +) +) +) +g1,12641:26613923,20870908 +k1,12641:32583029,20870908:5969106 +) +(1,12648:6630773,21735988:25952256,513147,134348 +h1,12647:6630773,21735988:983040,0,0 +k1,12647:8505404,21735988:263756 +k1,12647:9788245,21735988:263756 +k1,12647:11419082,21735988:263756 +k1,12647:12342129,21735988:263755 +k1,12647:12961745,21735988:263756 +k1,12647:16715948,21735988:263756 +k1,12647:19069647,21735988:263756 +(1,12647:19069647,21735988:0,452978,115847 +r1,12680:22241607,21735988:3171960,568825,115847 +k1,12647:19069647,21735988:-3171960 +) +(1,12647:19069647,21735988:3171960,452978,115847 +k1,12647:19069647,21735988:3277 +h1,12647:22238330,21735988:0,411205,112570 +) +k1,12647:22505363,21735988:263756 +k1,12647:24163070,21735988:263756 +k1,12647:25445910,21735988:263755 +k1,12647:27422122,21735988:263756 +k1,12647:29673585,21735988:263756 +k1,12647:31896867,21735988:263756 +k1,12647:32583029,21735988:0 +) +(1,12648:6630773,22601068:25952256,513147,134348 +k1,12647:9953650,22601068:250549 +k1,12647:10735696,22601068:250549 +k1,12647:12587945,22601068:250549 +k1,12647:14815716,22601068:250550 +k1,12647:15752427,22601068:250549 +k1,12647:16461073,22601068:250549 +k1,12647:19471998,22601068:250549 +k1,12647:20078407,22601068:250549 +k1,12647:21894611,22601068:250549 +k1,12647:22804453,22601068:250550 +k1,12647:26335734,22601068:250549 +k1,12647:29632396,22601068:250549 +k1,12647:31074390,22601068:250549 +k1,12647:32583029,22601068:0 +) +(1,12648:6630773,23466148:25952256,513147,126483 +k1,12647:8965542,23466148:223854 +k1,12647:12605132,23466148:223854 +k1,12647:14113492,23466148:223854 +k1,12647:15023507,23466148:223853 +k1,12647:15778858,23466148:223854 +k1,12647:17021797,23466148:223854 +k1,12647:18612732,23466148:223854 +k1,12647:19784237,23466148:223854 +k1,12647:21609791,23466148:223854 +k1,12647:22248463,23466148:223829 +k1,12647:25671785,23466148:223854 +k1,12647:26914723,23466148:223853 +k1,12647:28818920,23466148:223854 +k1,12647:31821501,23466148:223854 +k1,12648:32583029,23466148:0 +) +(1,12648:6630773,24331228:25952256,505283,126483 +(1,12647:6630773,24331228:0,452978,115847 +r1,12680:9802733,24331228:3171960,568825,115847 +k1,12647:6630773,24331228:-3171960 +) +(1,12647:6630773,24331228:3171960,452978,115847 +k1,12647:6630773,24331228:3277 +h1,12647:9799456,24331228:0,411205,112570 +) +g1,12647:10001962,24331228 +g1,12647:10732688,24331228 +g1,12647:13282038,24331228 +g1,12647:15179305,24331228 +g1,12647:16246886,24331228 +g1,12647:17545809,24331228 +g1,12647:18948279,24331228 +g1,12647:21601831,24331228 +g1,12647:22413822,24331228 +g1,12647:23632136,24331228 +g1,12647:24246208,24331228 +k1,12648:32583029,24331228:5761911 +g1,12648:32583029,24331228 +) +v1,12650:6630773,25016083:0,393216,0 +(1,12674:6630773,37815228:25952256,13192361,196608 +g1,12674:6630773,37815228 +g1,12674:6630773,37815228 +g1,12674:6434165,37815228 +(1,12674:6434165,37815228:0,13192361,196608 +r1,12680:32779637,37815228:26345472,13388969,196608 +k1,12674:6434165,37815228:-26345472 +) +(1,12674:6434165,37815228:26345472,13192361,196608 +[1,12674:6630773,37815228:25952256,12995753,0 +(1,12652:6630773,25250520:25952256,431045,106246 +(1,12651:6630773,25250520:0,0,0 +g1,12651:6630773,25250520 +g1,12651:6630773,25250520 +g1,12651:6303093,25250520 +(1,12651:6303093,25250520:0,0,0 +) +g1,12651:6630773,25250520 +) +k1,12652:6630773,25250520:0 +h1,12652:10614221,25250520:0,0,0 +k1,12652:32583029,25250520:21968808 +g1,12652:32583029,25250520 +) +(1,12673:6630773,26066447:25952256,398014,0 +(1,12654:6630773,26066447:0,0,0 +g1,12654:6630773,26066447 +g1,12654:6630773,26066447 +g1,12654:6303093,26066447 +(1,12654:6303093,26066447:0,0,0 +) +g1,12654:6630773,26066447 +) +h1,12673:7294681,26066447:0,0,0 +k1,12673:32583029,26066447:25288348 +g1,12673:32583029,26066447 +) +(1,12673:6630773,26751302:25952256,424439,8257 +h1,12673:6630773,26751302:0,0,0 +g1,12673:7626635,26751302 +h1,12673:9286405,26751302:0,0,0 +k1,12673:32583029,26751302:23296624 +g1,12673:32583029,26751302 +) +(1,12673:6630773,27436157:25952256,431045,106246 +h1,12673:6630773,27436157:0,0,0 +g1,12673:7626635,27436157 +g1,12673:11278128,27436157 +g1,12673:11942036,27436157 +g1,12673:13601806,27436157 +g1,12673:14265714,27436157 +g1,12673:14929622,27436157 +g1,12673:15593530,27436157 +g1,12673:17917208,27436157 +g1,12673:19576978,27436157 +g1,12673:20240886,27436157 +h1,12673:21900656,27436157:0,0,0 +k1,12673:32583029,27436157:10682373 +g1,12673:32583029,27436157 +) +(1,12673:6630773,28121012:25952256,398014,0 +h1,12673:6630773,28121012:0,0,0 +h1,12673:7294681,28121012:0,0,0 +k1,12673:32583029,28121012:25288348 +g1,12673:32583029,28121012 +) +(1,12673:6630773,28805867:25952256,424439,6605 +h1,12673:6630773,28805867:0,0,0 +g1,12673:7626635,28805867 +h1,12673:10946174,28805867:0,0,0 +k1,12673:32583030,28805867:21636856 +g1,12673:32583030,28805867 +) +(1,12673:6630773,29490722:25952256,424439,86428 +h1,12673:6630773,29490722:0,0,0 +g1,12673:7626635,29490722 +g1,12673:7958589,29490722 +g1,12673:8290543,29490722 +g1,12673:8622497,29490722 +g1,12673:8954451,29490722 +g1,12673:10282267,29490722 +g1,12673:10614221,29490722 +g1,12673:10946175,29490722 +g1,12673:11278129,29490722 +g1,12673:11610083,29490722 +g1,12673:11942037,29490722 +g1,12673:12937899,29490722 +g1,12673:13269853,29490722 +g1,12673:15593531,29490722 +g1,12673:15925485,29490722 +g1,12673:16257439,29490722 +g1,12673:16589393,29490722 +g1,12673:16921347,29490722 +g1,12673:17253301,29490722 +g1,12673:18249163,29490722 +g1,12673:18581117,29490722 +g1,12673:18913071,29490722 +g1,12673:19245025,29490722 +g1,12673:19576979,29490722 +h1,12673:20572841,29490722:0,0,0 +k1,12673:32583029,29490722:12010188 +g1,12673:32583029,29490722 +) +(1,12673:6630773,30175577:25952256,407923,9908 +h1,12673:6630773,30175577:0,0,0 +g1,12673:7626635,30175577 +g1,12673:10282267,30175577 +g1,12673:10614221,30175577 +g1,12673:12937899,30175577 +g1,12673:13269853,30175577 +g1,12673:15593531,30175577 +g1,12673:15925485,30175577 +g1,12673:16257439,30175577 +g1,12673:18249163,30175577 +g1,12673:18581117,30175577 +h1,12673:20572841,30175577:0,0,0 +k1,12673:32583029,30175577:12010188 +g1,12673:32583029,30175577 +) +(1,12673:6630773,30860432:25952256,398014,0 +h1,12673:6630773,30860432:0,0,0 +h1,12673:7294681,30860432:0,0,0 +k1,12673:32583029,30860432:25288348 +g1,12673:32583029,30860432 +) +(1,12673:6630773,31545287:25952256,431045,8257 +h1,12673:6630773,31545287:0,0,0 +g1,12673:7626635,31545287 +h1,12673:11942036,31545287:0,0,0 +k1,12673:32583028,31545287:20640992 +g1,12673:32583028,31545287 +) +(1,12673:6630773,32230142:25952256,424439,79822 +h1,12673:6630773,32230142:0,0,0 +g1,12673:7626635,32230142 +g1,12673:7958589,32230142 +g1,12673:8290543,32230142 +g1,12673:8622497,32230142 +g1,12673:8954451,32230142 +g1,12673:9286405,32230142 +g1,12673:9618359,32230142 +g1,12673:9950313,32230142 +g1,12673:10282267,32230142 +g1,12673:10614221,32230142 +g1,12673:10946175,32230142 +g1,12673:11278129,32230142 +g1,12673:11610083,32230142 +g1,12673:14597668,32230142 +g1,12673:16257438,32230142 +g1,12673:18249162,32230142 +g1,12673:18913070,32230142 +g1,12673:20904794,32230142 +k1,12673:20904794,32230142:0 +h1,12673:23560426,32230142:0,0,0 +k1,12673:32583029,32230142:9022603 +g1,12673:32583029,32230142 +) +(1,12673:6630773,32914997:25952256,424439,106246 +h1,12673:6630773,32914997:0,0,0 +g1,12673:7626635,32914997 +g1,12673:11610082,32914997 +g1,12673:14597667,32914997 +g1,12673:14929621,32914997 +g1,12673:15261575,32914997 +g1,12673:15593529,32914997 +g1,12673:15925483,32914997 +g1,12673:18249161,32914997 +g1,12673:18581115,32914997 +g1,12673:20904793,32914997 +g1,12673:21236747,32914997 +g1,12673:21568701,32914997 +g1,12673:23892379,32914997 +h1,12673:24224333,32914997:0,0,0 +k1,12673:32583029,32914997:8358696 +g1,12673:32583029,32914997 +) +(1,12673:6630773,33599852:25952256,424439,106246 +h1,12673:6630773,33599852:0,0,0 +g1,12673:7626635,33599852 +g1,12673:9618359,33599852 +g1,12673:9950313,33599852 +g1,12673:10282267,33599852 +g1,12673:10614221,33599852 +g1,12673:10946175,33599852 +g1,12673:11278129,33599852 +g1,12673:11610083,33599852 +g1,12673:11942037,33599852 +g1,12673:12273991,33599852 +g1,12673:14597669,33599852 +g1,12673:14929623,33599852 +g1,12673:15261577,33599852 +g1,12673:15593531,33599852 +g1,12673:15925485,33599852 +g1,12673:18249163,33599852 +g1,12673:18581117,33599852 +g1,12673:18913071,33599852 +g1,12673:20904795,33599852 +g1,12673:23892381,33599852 +h1,12673:24888243,33599852:0,0,0 +k1,12673:32583029,33599852:7694786 +g1,12673:32583029,33599852 +) +(1,12673:6630773,34284707:25952256,398014,0 +h1,12673:6630773,34284707:0,0,0 +g1,12673:7626635,34284707 +k1,12673:7626635,34284707:0 +h1,12673:8622497,34284707:0,0,0 +k1,12673:32583029,34284707:23960532 +g1,12673:32583029,34284707 +) +(1,12673:6630773,34969562:25952256,431045,112852 +h1,12673:6630773,34969562:0,0,0 +g1,12673:7626635,34969562 +g1,12673:10282267,34969562 +g1,12673:12605945,34969562 +g1,12673:12937899,34969562 +g1,12673:13601807,34969562 +g1,12673:15593531,34969562 +g1,12673:17585255,34969562 +g1,12673:19245025,34969562 +g1,12673:20904795,34969562 +g1,12673:22232611,34969562 +g1,12673:23892381,34969562 +g1,12673:25220197,34969562 +g1,12673:26548013,34969562 +g1,12673:27211921,34969562 +g1,12673:27875829,34969562 +h1,12673:28207783,34969562:0,0,0 +k1,12673:32583029,34969562:4375246 +g1,12673:32583029,34969562 +) +(1,12673:6630773,35654417:25952256,398014,0 +h1,12673:6630773,35654417:0,0,0 +h1,12673:7294681,35654417:0,0,0 +k1,12673:32583029,35654417:25288348 +g1,12673:32583029,35654417 +) +(1,12673:6630773,36339272:25952256,431045,112852 +h1,12673:6630773,36339272:0,0,0 +g1,12673:7626635,36339272 +g1,12673:10614220,36339272 +g1,12673:13601805,36339272 +g1,12673:15925483,36339272 +g1,12673:17917207,36339272 +g1,12673:18913069,36339272 +g1,12673:19908931,36339272 +g1,12673:22564563,36339272 +g1,12673:23560425,36339272 +h1,12673:25884103,36339272:0,0,0 +k1,12673:32583029,36339272:6698926 +g1,12673:32583029,36339272 +) +(1,12673:6630773,37024127:25952256,424439,112852 +h1,12673:6630773,37024127:0,0,0 +g1,12673:7626635,37024127 +g1,12673:10614220,37024127 +g1,12673:14265713,37024127 +g1,12673:14597667,37024127 +g1,12673:19908930,37024127 +g1,12673:23560423,37024127 +g1,12673:23892377,37024127 +h1,12673:25884101,37024127:0,0,0 +k1,12673:32583029,37024127:6698928 +g1,12673:32583029,37024127 +) +(1,12673:6630773,37708982:25952256,424439,106246 +h1,12673:6630773,37708982:0,0,0 +g1,12673:7626635,37708982 +g1,12673:11942036,37708982 +g1,12673:13933760,37708982 +g1,12673:14929622,37708982 +g1,12673:15593530,37708982 +g1,12673:16921346,37708982 +g1,12673:17917208,37708982 +g1,12673:19245024,37708982 +g1,12673:19576978,37708982 +g1,12673:22564564,37708982 +k1,12673:22564564,37708982:0 +h1,12673:25220196,37708982:0,0,0 +k1,12673:32583029,37708982:7362833 +g1,12673:32583029,37708982 +) +] +) +g1,12674:32583029,37815228 +g1,12674:6630773,37815228 +g1,12674:6630773,37815228 +g1,12674:32583029,37815228 +g1,12674:32583029,37815228 +) +h1,12674:6630773,38011836:0,0,0 +(1,12678:6630773,38876916:25952256,513147,126483 +h1,12677:6630773,38876916:983040,0,0 +k1,12677:9293803,38876916:206741 +k1,12677:10887286,38876916:206741 +k1,12677:11706789,38876916:206741 +k1,12677:12932614,38876916:206740 +k1,12677:15787665,38876916:206741 +k1,12677:16653698,38876916:206741 +k1,12677:17879524,38876916:206741 +k1,12677:21250343,38876916:206741 +k1,12677:23735771,38876916:206741 +k1,12677:24704039,38876916:206740 +k1,12677:27363137,38876916:206741 +k1,12677:29512365,38876916:206741 +k1,12677:31714677,38876916:206741 +k1,12677:32583029,38876916:0 +) +(1,12678:6630773,39741996:25952256,530548,132808 +k1,12677:8207924,39741996:137325 +h1,12677:8207924,39741996:0,0,0 +k1,12677:10153706,39741996:286012 +k1,12677:10854659,39741996:286011 +k1,12677:11555613,39741996:286012 +k1,12677:12256566,39741996:286011 +k1,12677:14468604,39741996:137326 +k1,12677:15288814,39741996:137325 +k1,12677:16445224,39741996:137325 +k1,12677:20603184,39741996:137326 +k1,12677:21399801,39741996:137325 +k1,12677:22556211,39741996:137325 +k1,12677:24681244,39741996:137326 +k1,12677:26704695,39741996:137325 +k1,12677:28213033,39741996:137325 +k1,12677:29369444,39741996:137326 +k1,12677:30896132,39741996:137325 +k1,12677:32583029,39741996:0 +) +(1,12678:6630773,40607076:25952256,513147,126483 +k1,12677:8754139,40607076:180879 +k1,12677:12759699,40607076:180879 +k1,12677:13808931,40607076:180880 +k1,12677:15255966,40607076:180879 +k1,12677:16455930,40607076:180879 +k1,12677:19713069,40607076:180879 +k1,12677:22698235,40607076:180880 +k1,12677:24070559,40607076:180879 +k1,12677:26611389,40607076:180879 +k1,12677:27451560,40607076:180879 +k1,12677:28651525,40607076:180880 +k1,12677:31900144,40607076:180879 +k1,12677:32583029,40607076:0 +) +(1,12678:6630773,41472156:25952256,513147,11795 +k1,12677:10122466,41472156:211616 +k1,12677:12969284,41472156:211615 +k1,12677:17252652,41472156:211616 +k1,12677:18655712,41472156:211615 +k1,12677:19886413,41472156:211616 +k1,12677:21810484,41472156:211615 +k1,12677:23364277,41472156:211616 +k1,12677:25518379,41472156:211615 +k1,12677:30236906,41472156:211616 +k1,12677:31316873,41472156:211615 +k1,12677:32583029,41472156:0 +) +(1,12678:6630773,42337236:25952256,513147,134348 +k1,12677:7882213,42337236:232355 +k1,12677:11160681,42337236:232355 +k1,12677:12052327,42337236:232354 +k1,12677:13303767,42337236:232355 +k1,12677:15523829,42337236:232355 +k1,12677:19367218,42337236:232355 +k1,12677:20791018,42337236:232355 +k1,12677:22532012,42337236:232355 +k1,12677:25590278,42337236:232354 +k1,12677:27193646,42337236:232355 +k1,12677:32049566,42337236:232355 +$1,12677:32049566,42337236 +$1,12677:32370037,42337236 +k1,12678:32583029,42337236:0 +) +(1,12678:6630773,43202316:25952256,513147,134348 +k1,12677:8529725,43202316:203536 +k1,12677:9477750,43202316:203536 +k1,12677:10700371,43202316:203536 +k1,12677:12086832,43202316:203536 +k1,12677:12949660,43202316:203536 +k1,12677:14172281,43202316:203536 +k1,12677:17366225,43202316:203536 +k1,12677:19224545,43202316:203536 +k1,12677:19959578,43202316:203536 +k1,12677:23970100,43202316:203536 +k1,12677:24983006,43202316:203536 +k1,12677:27642176,43202316:203536 +k1,12677:28505004,43202316:203536 +k1,12677:31391584,43202316:203536 +k1,12677:32583029,43202316:0 +) +(1,12678:6630773,44067396:25952256,615216,95026 +g1,12677:8983515,44067396 +g1,12677:12463476,44067396 +g1,12677:13321997,44067396 +g1,12677:18041244,44067396 +$1,12677:18248338,44067396 +(1,12677:18742479,43792115:311689,339935,0 +) +$1,12677:19054168,44067396 +k1,12678:32583029,44067396:13148097 +g1,12678:32583029,44067396 +) +(1,12680:6630773,44932476:25952256,513147,126484 +h1,12679:6630773,44932476:983040,0,0 +k1,12679:8387836,44932476:296266 +k1,12679:9552455,44932476:296267 +k1,12679:11859366,44932476:296266 +k1,12679:12807060,44932476:296266 +k1,12679:14122411,44932476:296266 +k1,12679:16406385,44932476:296267 +k1,12679:20687240,44932476:296266 +k1,12679:21851858,44932476:296266 +k1,12679:23252406,44932476:296266 +k1,12679:24879054,44932476:296267 +k1,12679:27473668,44932476:296266 +$1,12679:27473668,44932476 +$1,12679:27981572,44932476 +k1,12679:28277838,44932476:296266 +k1,12679:29765550,44932476:296267 +$1,12679:29765550,44932476 +$1,12679:30209884,44932476 +k1,12679:30506150,44932476:296266 +k1,12679:31563944,44932476:296266 +k1,12679:32583029,44932476:0 +) +] +(1,12680:32583029,45706769:0,0,0 +g1,12680:32583029,45706769 +) +) +] +(1,12680:6630773,47279633:25952256,0,0 +h1,12680:6630773,47279633:25952256,0,0 +) +] +(1,12680:4262630,4025873:0,0,0 +[1,12680:-473656,4025873:0,0,0 +(1,12680:-473656,-710413:0,0,0 +(1,12680:-473656,-710413:0,0,0 +g1,12680:-473656,-710413 +) +g1,12680:-473656,-710413 +) +] +) +] +!19929 +}205 +Input:1898:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1899:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1900:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1901:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1902:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1903:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1904:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1905:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1906:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1907:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1908:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1909:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1140 +{206 +[1,12778:4262630,47279633:28320399,43253760,0 +(1,12778:4262630,4025873:0,0,0 +[1,12778:-473656,4025873:0,0,0 +(1,12778:-473656,-710413:0,0,0 +(1,12778:-473656,-644877:0,0,0 +k1,12778:-473656,-644877:-65536 ) +(1,12778:-473656,4736287:0,0,0 +k1,12778:-473656,4736287:5209943 ) -k1,13218:3078556,2439708:-34777008 +g1,12778:-473656,-710413 ) ] -[1,13218:3078558,4812305:0,0,0 -(1,13218:3078558,49800853:0,16384,2228224 -k1,13218:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,13218:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,13218:3078558,51504789:16384,1179648,0 +[1,12778:6630773,47279633:25952256,43253760,0 +[1,12778:6630773,4812305:25952256,786432,0 +(1,12778:6630773,4812305:25952256,505283,134348 +(1,12778:6630773,4812305:25952256,505283,134348 +g1,12778:3078558,4812305 +[1,12778:3078558,4812305:0,0,0 +(1,12778:3078558,2439708:0,1703936,0 +k1,12778:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,12778:2537886,2439708:1179648,16384,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,12778:3078558,1915420:16384,1179648,0 +) +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] ) ) ) ] -[1,13218:3078558,4812305:0,0,0 -(1,13218:3078558,49800853:0,16384,2228224 -g1,13218:29030814,49800853 -g1,13218:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,13218:36151628,51504789:16384,1179648,0 +[1,12778:3078558,4812305:0,0,0 +(1,12778:3078558,2439708:0,1703936,0 +g1,12778:29030814,2439708 +g1,12778:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,12778:36151628,1915420:16384,1179648,0 ) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] ) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,13218:37855564,49800853:1179648,16384,0 -) +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,12778:37855564,2439708:1179648,16384,0 ) -k1,13218:3078556,49800853:-34777008 -) -] -g1,13218:6630773,4812305 -g1,13218:6630773,4812305 -g1,13218:8843268,4812305 -g1,13218:10880782,4812305 -g1,13218:13281365,4812305 -k1,13218:31387653,4812305:18106288 -) -) -] -[1,13218:6630773,45706769:25952256,40108032,0 -(1,13218:6630773,45706769:25952256,40108032,0 -(1,13218:6630773,45706769:0,0,0 -g1,13218:6630773,45706769 -) -[1,13218:6630773,45706769:25952256,40108032,0 -(1,13140:6630773,6254097:25952256,513147,134348 -h1,13139:6630773,6254097:983040,0,0 -g1,13139:8855064,6254097 -g1,13139:10073378,6254097 -g1,13139:11656727,6254097 -g1,13139:14517373,6254097 -g1,13139:15584954,6254097 -g1,13139:18349262,6254097 -g1,13139:19567576,6254097 -g1,13139:21754512,6254097 -g1,13139:22641214,6254097 -g1,13139:24799969,6254097 -(1,13139:24799969,6254097:0,459977,115847 -r1,13218:25861658,6254097:1061689,575824,115847 -k1,13139:24799969,6254097:-1061689 -) -(1,13139:24799969,6254097:1061689,459977,115847 -k1,13139:24799969,6254097:3277 -h1,13139:25858381,6254097:0,411205,112570 -) -g1,13139:26060887,6254097 -g1,13139:27827737,6254097 -g1,13139:29525119,6254097 -h1,13139:30720496,6254097:0,0,0 -k1,13140:32583029,6254097:1688863 -g1,13140:32583029,6254097 -) -v1,13142:6630773,7362755:0,393216,0 -(1,13171:6630773,20996885:25952256,14027346,196608 -g1,13171:6630773,20996885 -g1,13171:6630773,20996885 -g1,13171:6434165,20996885 -(1,13171:6434165,20996885:0,14027346,196608 -r1,13218:32779637,20996885:26345472,14223954,196608 -k1,13171:6434165,20996885:-26345472 -) -(1,13171:6434165,20996885:26345472,14027346,196608 -[1,13171:6630773,20996885:25952256,13830738,0 -(1,13144:6630773,7576665:25952256,410518,101187 -(1,13143:6630773,7576665:0,0,0 -g1,13143:6630773,7576665 -g1,13143:6630773,7576665 -g1,13143:6303093,7576665 -(1,13143:6303093,7576665:0,0,0 -) -g1,13143:6630773,7576665 -) -g1,13144:7895356,7576665 -g1,13144:8843794,7576665 -g1,13144:11689105,7576665 -g1,13144:12321397,7576665 -g1,13144:14534417,7576665 -g1,13144:16115146,7576665 -g1,13144:16747438,7576665 -h1,13144:20857332,7576665:0,0,0 -k1,13144:32583029,7576665:11725697 -g1,13144:32583029,7576665 -) -(1,13145:6630773,8242843:25952256,410518,76021 -h1,13145:6630773,8242843:0,0,0 -k1,13145:6630773,8242843:0 -h1,13145:9792229,8242843:0,0,0 -k1,13145:32583029,8242843:22790800 -g1,13145:32583029,8242843 -) -(1,13156:6630773,8909021:25952256,410518,101187 -(1,13147:6630773,8909021:0,0,0 -g1,13147:6630773,8909021 -g1,13147:6630773,8909021 -g1,13147:6303093,8909021 -(1,13147:6303093,8909021:0,0,0 -) -g1,13147:6630773,8909021 -) -g1,13156:7579210,8909021 -g1,13156:10424521,8909021 -g1,13156:11372958,8909021 -g1,13156:14218269,8909021 -h1,13156:15798997,8909021:0,0,0 -k1,13156:32583029,8909021:16784032 -g1,13156:32583029,8909021 -) -(1,13156:6630773,9575199:25952256,379060,0 -h1,13156:6630773,9575199:0,0,0 -h1,13156:7263064,9575199:0,0,0 -k1,13156:32583028,9575199:25319964 -g1,13156:32583028,9575199 -) -(1,13156:6630773,10241377:25952256,379060,101187 -h1,13156:6630773,10241377:0,0,0 -g1,13156:7579210,10241377 -g1,13156:10740667,10241377 -h1,13156:12321395,10241377:0,0,0 -k1,13156:32583029,10241377:20261634 -g1,13156:32583029,10241377 -) -(1,13156:6630773,10907555:25952256,410518,101187 -h1,13156:6630773,10907555:0,0,0 -g1,13156:7579210,10907555 -g1,13156:7895356,10907555 -g1,13156:8211502,10907555 -g1,13156:8527648,10907555 -g1,13156:8843794,10907555 -g1,13156:9159940,10907555 -g1,13156:9476086,10907555 -g1,13156:9792232,10907555 -g1,13156:10108378,10907555 -g1,13156:10424524,10907555 -g1,13156:10740670,10907555 -g1,13156:11689107,10907555 -g1,13156:12953690,10907555 -g1,13156:13902127,10907555 -g1,13156:15482856,10907555 -g1,13156:16431293,10907555 -g1,13156:17063585,10907555 -g1,13156:18960459,10907555 -g1,13156:19276605,10907555 -g1,13156:19592751,10907555 -g1,13156:19908897,10907555 -k1,13156:19908897,10907555:0 -h1,13156:21805771,10907555:0,0,0 -k1,13156:32583029,10907555:10777258 -g1,13156:32583029,10907555 -) -(1,13156:6630773,11573733:25952256,388497,101187 -h1,13156:6630773,11573733:0,0,0 -g1,13156:7579210,11573733 -g1,13156:9476084,11573733 -g1,13156:9792230,11573733 -g1,13156:10108376,11573733 -g1,13156:10424522,11573733 -g1,13156:10740668,11573733 -g1,13156:11056814,11573733 -g1,13156:11689106,11573733 -g1,13156:13902126,11573733 -g1,13156:14218272,11573733 -g1,13156:16431292,11573733 -g1,13156:16747438,11573733 -g1,13156:18960458,11573733 -g1,13156:19592750,11573733 -g1,13156:22121916,11573733 -h1,13156:23070353,11573733:0,0,0 -k1,13156:32583029,11573733:9512676 -g1,13156:32583029,11573733 -) -(1,13156:6630773,12239911:25952256,404226,9436 -h1,13156:6630773,12239911:0,0,0 -g1,13156:7579210,12239911 -g1,13156:10740667,12239911 -g1,13156:11689104,12239911 -g1,13156:13902124,12239911 -g1,13156:14218270,12239911 -g1,13156:14534416,12239911 -h1,13156:16115144,12239911:0,0,0 -k1,13156:32583029,12239911:16467885 -g1,13156:32583029,12239911 -) -(1,13156:6630773,12906089:25952256,379060,0 -h1,13156:6630773,12906089:0,0,0 -g1,13156:7579210,12906089 -k1,13156:7579210,12906089:0 -h1,13156:8527648,12906089:0,0,0 -k1,13156:32583028,12906089:24055380 -g1,13156:32583028,12906089 -) -(1,13156:6630773,13572267:25952256,410518,107478 -h1,13156:6630773,13572267:0,0,0 -g1,13156:7579210,13572267 -g1,13156:10108376,13572267 -g1,13156:12321396,13572267 -g1,13156:12637542,13572267 -g1,13156:13269834,13572267 -g1,13156:15166709,13572267 -g1,13156:17063583,13572267 -g1,13156:18644312,13572267 -g1,13156:20225041,13572267 -g1,13156:21489625,13572267 -g1,13156:23070354,13572267 -g1,13156:24334938,13572267 -g1,13156:25599521,13572267 -g1,13156:26231813,13572267 -g1,13156:26864105,13572267 -h1,13156:27180251,13572267:0,0,0 -k1,13156:32583029,13572267:5402778 -g1,13156:32583029,13572267 -) -(1,13158:6630773,14893805:25952256,410518,107478 -(1,13157:6630773,14893805:0,0,0 -g1,13157:6630773,14893805 -g1,13157:6630773,14893805 -g1,13157:6303093,14893805 -(1,13157:6303093,14893805:0,0,0 -) -g1,13157:6630773,14893805 -) -g1,13158:8211502,14893805 -g1,13158:9159940,14893805 -g1,13158:12953689,14893805 -g1,13158:15482855,14893805 -g1,13158:16115147,14893805 -g1,13158:19908895,14893805 -g1,13158:20541187,14893805 -g1,13158:21489625,14893805 -g1,13158:22121917,14893805 -h1,13158:24018791,14893805:0,0,0 -k1,13158:32583029,14893805:8564238 -g1,13158:32583029,14893805 -) -(1,13159:6630773,15559983:25952256,410518,76021 -h1,13159:6630773,15559983:0,0,0 -k1,13159:6630773,15559983:0 -h1,13159:10108375,15559983:0,0,0 -k1,13159:32583029,15559983:22474654 -g1,13159:32583029,15559983 -) -(1,13170:6630773,16226161:25952256,410518,101187 -(1,13161:6630773,16226161:0,0,0 -g1,13161:6630773,16226161 -g1,13161:6630773,16226161 -g1,13161:6303093,16226161 -(1,13161:6303093,16226161:0,0,0 -) -g1,13161:6630773,16226161 -) -g1,13170:7579210,16226161 -g1,13170:10424521,16226161 -g1,13170:11372958,16226161 -g1,13170:14218269,16226161 -h1,13170:15798997,16226161:0,0,0 -k1,13170:32583029,16226161:16784032 -g1,13170:32583029,16226161 -) -(1,13170:6630773,16892339:25952256,379060,0 -h1,13170:6630773,16892339:0,0,0 -h1,13170:7263064,16892339:0,0,0 -k1,13170:32583028,16892339:25319964 -g1,13170:32583028,16892339 -) -(1,13170:6630773,17558517:25952256,404226,107478 -h1,13170:6630773,17558517:0,0,0 -g1,13170:7579210,17558517 -g1,13170:10740667,17558517 -g1,13170:14534415,17558517 -g1,13170:15166707,17558517 -h1,13170:15798998,17558517:0,0,0 -k1,13170:32583030,17558517:16784032 -g1,13170:32583030,17558517 -) -(1,13170:6630773,18224695:25952256,410518,101187 -h1,13170:6630773,18224695:0,0,0 -g1,13170:7579210,18224695 -g1,13170:7895356,18224695 -g1,13170:8211502,18224695 -g1,13170:8527648,18224695 -g1,13170:8843794,18224695 -g1,13170:9159940,18224695 -g1,13170:9476086,18224695 -g1,13170:9792232,18224695 -g1,13170:10108378,18224695 -g1,13170:10424524,18224695 -g1,13170:10740670,18224695 -g1,13170:11689107,18224695 -g1,13170:12953690,18224695 -g1,13170:13902127,18224695 -g1,13170:15482856,18224695 -g1,13170:16431293,18224695 -g1,13170:17063585,18224695 -g1,13170:18960459,18224695 -g1,13170:19276605,18224695 -g1,13170:19592751,18224695 -g1,13170:19908897,18224695 -k1,13170:19908897,18224695:0 -h1,13170:21805771,18224695:0,0,0 -k1,13170:32583029,18224695:10777258 -g1,13170:32583029,18224695 -) -(1,13170:6630773,18890873:25952256,388497,101187 -h1,13170:6630773,18890873:0,0,0 -g1,13170:7579210,18890873 -g1,13170:9476084,18890873 -g1,13170:9792230,18890873 -g1,13170:10108376,18890873 -g1,13170:10424522,18890873 -g1,13170:10740668,18890873 -g1,13170:11056814,18890873 -g1,13170:11689106,18890873 -g1,13170:13902126,18890873 -g1,13170:16431292,18890873 -g1,13170:16747438,18890873 -g1,13170:18960458,18890873 -g1,13170:19592750,18890873 -g1,13170:22121916,18890873 -h1,13170:23070353,18890873:0,0,0 -k1,13170:32583029,18890873:9512676 -g1,13170:32583029,18890873 -) -(1,13170:6630773,19557051:25952256,404226,9436 -h1,13170:6630773,19557051:0,0,0 -g1,13170:7579210,19557051 -g1,13170:10740667,19557051 -g1,13170:11689104,19557051 -g1,13170:13902124,19557051 -h1,13170:16115144,19557051:0,0,0 -k1,13170:32583029,19557051:16467885 -g1,13170:32583029,19557051 -) -(1,13170:6630773,20223229:25952256,379060,0 -h1,13170:6630773,20223229:0,0,0 -g1,13170:7579210,20223229 -k1,13170:7579210,20223229:0 -h1,13170:8527648,20223229:0,0,0 -k1,13170:32583028,20223229:24055380 -g1,13170:32583028,20223229 -) -(1,13170:6630773,20889407:25952256,410518,107478 -h1,13170:6630773,20889407:0,0,0 -g1,13170:7579210,20889407 -g1,13170:10108376,20889407 -g1,13170:12321396,20889407 -g1,13170:12637542,20889407 -g1,13170:13269834,20889407 -g1,13170:15166709,20889407 -g1,13170:17063583,20889407 -g1,13170:18644312,20889407 -g1,13170:20225041,20889407 -g1,13170:21489625,20889407 -g1,13170:23070354,20889407 -g1,13170:24334938,20889407 -g1,13170:25599521,20889407 -g1,13170:26231813,20889407 -g1,13170:26864105,20889407 -h1,13170:27180251,20889407:0,0,0 -k1,13170:32583029,20889407:5402778 -g1,13170:32583029,20889407 -) -] -) -g1,13171:32583029,20996885 -g1,13171:6630773,20996885 -g1,13171:6630773,20996885 -g1,13171:32583029,20996885 -g1,13171:32583029,20996885 -) -h1,13171:6630773,21193493:0,0,0 -v1,13175:6630773,22919941:0,393216,0 -(1,13176:6630773,24320450:25952256,1793725,0 -g1,13176:6630773,24320450 -g1,13176:6303093,24320450 -r1,13218:6401397,24320450:98304,1793725,0 -g1,13176:6600626,24320450 -g1,13176:6797234,24320450 -[1,13176:6797234,24320450:25785795,1793725,0 -(1,13176:6797234,23352479:25785795,825754,196608 -(1,13175:6797234,23352479:0,825754,196608 -r1,13218:7890375,23352479:1093141,1022362,196608 -k1,13175:6797234,23352479:-1093141 -) -(1,13175:6797234,23352479:1093141,825754,196608 -) -k1,13175:8098158,23352479:207783 -k1,13175:9824376,23352479:327680 -k1,13175:11568977,23352479:207782 -(1,13175:11568977,23352479:0,459977,115847 -r1,13218:14389226,23352479:2820249,575824,115847 -k1,13175:11568977,23352479:-2820249 -) -(1,13175:11568977,23352479:2820249,459977,115847 -k1,13175:11568977,23352479:3277 -h1,13175:14385949,23352479:0,411205,112570 -) -k1,13175:14597009,23352479:207783 -k1,13175:15996236,23352479:207782 -(1,13175:15996236,23352479:0,459977,115847 -r1,13218:19168196,23352479:3171960,575824,115847 -k1,13175:15996236,23352479:-3171960 -) -(1,13175:15996236,23352479:3171960,459977,115847 -k1,13175:15996236,23352479:3277 -h1,13175:19164919,23352479:0,411205,112570 -) -k1,13175:19549649,23352479:207783 -k1,13175:21631762,23352479:207783 -k1,13175:23011983,23352479:207782 -k1,13175:24649762,23352479:207783 -k1,13175:26600802,23352479:207782 -k1,13175:27424623,23352479:207783 -k1,13175:28651490,23352479:207782 -k1,13175:31931601,23352479:207783 -k1,13176:32583029,23352479:0 -) -(1,13176:6797234,24193967:25785795,505283,126483 -(1,13175:6797234,24193967:0,459977,115847 -r1,13218:9265771,24193967:2468537,575824,115847 -k1,13175:6797234,24193967:-2468537 -) -(1,13175:6797234,24193967:2468537,459977,115847 -k1,13175:6797234,24193967:3277 -h1,13175:9262494,24193967:0,411205,112570 -) -g1,13175:9638670,24193967 -g1,13175:11471712,24193967 -g1,13175:13372911,24193967 -g1,13175:16525848,24193967 -g1,13175:18200292,24193967 -g1,13175:19909471,24193967 -g1,13175:22745869,24193967 -g1,13175:23561136,24193967 -(1,13175:23561136,24193967:0,459977,115847 -r1,13218:24974537,24193967:1413401,575824,115847 -k1,13175:23561136,24193967:-1413401 -) -(1,13175:23561136,24193967:1413401,459977,115847 -k1,13175:23561136,24193967:3277 -h1,13175:24971260,24193967:0,411205,112570 -) -g1,13175:25173766,24193967 -g1,13175:28554113,24193967 -g1,13175:29404770,24193967 -(1,13175:29404770,24193967:0,459977,115847 -r1,13218:30466459,24193967:1061689,575824,115847 -k1,13175:29404770,24193967:-1061689 -) -(1,13175:29404770,24193967:1061689,459977,115847 -k1,13175:29404770,24193967:3277 -h1,13175:30463182,24193967:0,411205,112570 -) -k1,13176:32583029,24193967:1789545 -g1,13176:32583029,24193967 -) -] -g1,13176:32583029,24320450 -) -h1,13176:6630773,24320450:0,0,0 -(1,13179:6630773,25604418:25952256,513147,134348 -h1,13178:6630773,25604418:983040,0,0 -k1,13178:8451424,25604418:209776 -k1,13178:9680286,25604418:209777 -k1,13178:11860730,25604418:209776 -k1,13178:13925831,25604418:209777 -k1,13178:15003959,25604418:209776 -k1,13178:17932825,25604418:209777 -k1,13178:19161686,25604418:209776 -k1,13178:22443790,25604418:209776 -k1,13178:24858854,25604418:209777 -k1,13178:25720058,25604418:209776 -(1,13178:25720058,25604418:0,459977,115847 -r1,13218:28188595,25604418:2468537,575824,115847 -k1,13178:25720058,25604418:-2468537 -) -(1,13178:25720058,25604418:2468537,459977,115847 -k1,13178:25720058,25604418:3277 -h1,13178:28185318,25604418:0,411205,112570 -) -k1,13178:28572042,25604418:209777 -k1,13178:30162662,25604418:209776 -k1,13178:30903936,25604418:209777 -k1,13178:31469572,25604418:209776 -k1,13179:32583029,25604418:0 -) -(1,13179:6630773,26445906:25952256,513147,126483 -k1,13178:8706684,26445906:237626 -k1,13178:10210465,26445906:237625 -k1,13178:11520260,26445906:237626 -k1,13178:12705537,26445906:237626 -k1,13178:15604580,26445906:237626 -k1,13178:16493633,26445906:237625 -k1,13178:17418732,26445906:237626 -k1,13178:18675443,26445906:237626 -k1,13178:20566541,26445906:237625 -k1,13178:22791874,26445906:237626 -k1,13178:23680928,26445906:237626 -k1,13178:24274413,26445906:237625 -k1,13178:26592152,26445906:237626 -k1,13178:27489070,26445906:237626 -k1,13178:28745781,26445906:237626 -k1,13178:30372769,26445906:237625 -k1,13178:31478747,26445906:237626 -k1,13178:32583029,26445906:0 -) -(1,13179:6630773,27287394:25952256,505283,134348 -g1,13178:8267207,27287394 -g1,13178:8822296,27287394 -g1,13178:11533520,27287394 -g1,13178:14805077,27287394 -g1,13178:15655734,27287394 -g1,13178:19135695,27287394 -(1,13178:19135695,27287394:0,452978,115847 -r1,13218:21252520,27287394:2116825,568825,115847 -k1,13178:19135695,27287394:-2116825 -) -(1,13178:19135695,27287394:2116825,452978,115847 -k1,13178:19135695,27287394:3277 -h1,13178:21249243,27287394:0,411205,112570 -) -k1,13179:32583029,27287394:11156839 -g1,13179:32583029,27287394 -) -v1,13181:6630773,28396053:0,393216,0 -(1,13196:6630773,34713043:25952256,6710206,196608 -g1,13196:6630773,34713043 -g1,13196:6630773,34713043 -g1,13196:6434165,34713043 -(1,13196:6434165,34713043:0,6710206,196608 -r1,13218:32779637,34713043:26345472,6906814,196608 -k1,13196:6434165,34713043:-26345472 -) -(1,13196:6434165,34713043:26345472,6710206,196608 -[1,13196:6630773,34713043:25952256,6513598,0 -(1,13183:6630773,28609963:25952256,410518,101187 -(1,13182:6630773,28609963:0,0,0 -g1,13182:6630773,28609963 -g1,13182:6630773,28609963 -g1,13182:6303093,28609963 -(1,13182:6303093,28609963:0,0,0 -) -g1,13182:6630773,28609963 -) -g1,13183:8211502,28609963 -g1,13183:9159940,28609963 -g1,13183:12953689,28609963 -g1,13183:15166709,28609963 -g1,13183:15799001,28609963 -g1,13183:18012021,28609963 -g1,13183:19592750,28609963 -g1,13183:21805771,28609963 -h1,13183:23386499,28609963:0,0,0 -k1,13183:32583029,28609963:9196530 -g1,13183:32583029,28609963 -) -(1,13184:6630773,29276141:25952256,410518,76021 -h1,13184:6630773,29276141:0,0,0 -k1,13184:6630773,29276141:0 -h1,13184:10108375,29276141:0,0,0 -k1,13184:32583029,29276141:22474654 -g1,13184:32583029,29276141 -) -(1,13195:6630773,29942319:25952256,410518,101187 -(1,13186:6630773,29942319:0,0,0 -g1,13186:6630773,29942319 -g1,13186:6630773,29942319 -g1,13186:6303093,29942319 -(1,13186:6303093,29942319:0,0,0 -) -g1,13186:6630773,29942319 -) -g1,13195:7579210,29942319 -g1,13195:10424521,29942319 -g1,13195:11372958,29942319 -g1,13195:14218269,29942319 -h1,13195:15798997,29942319:0,0,0 -k1,13195:32583029,29942319:16784032 -g1,13195:32583029,29942319 -) -(1,13195:6630773,30608497:25952256,379060,0 -h1,13195:6630773,30608497:0,0,0 -h1,13195:7263064,30608497:0,0,0 -k1,13195:32583028,30608497:25319964 -g1,13195:32583028,30608497 -) -(1,13195:6630773,31274675:25952256,379060,101187 -h1,13195:6630773,31274675:0,0,0 -g1,13195:7579210,31274675 -g1,13195:10740667,31274675 -h1,13195:12321395,31274675:0,0,0 -k1,13195:32583029,31274675:20261634 -g1,13195:32583029,31274675 -) -(1,13195:6630773,31940853:25952256,410518,101187 -h1,13195:6630773,31940853:0,0,0 -g1,13195:7579210,31940853 -g1,13195:7895356,31940853 -g1,13195:8211502,31940853 -g1,13195:8527648,31940853 -g1,13195:8843794,31940853 -g1,13195:9159940,31940853 -g1,13195:9476086,31940853 -g1,13195:9792232,31940853 -g1,13195:10108378,31940853 -g1,13195:10424524,31940853 -g1,13195:10740670,31940853 -g1,13195:11689107,31940853 -g1,13195:12953690,31940853 -g1,13195:13902127,31940853 -g1,13195:15482856,31940853 -g1,13195:16431293,31940853 -g1,13195:17063585,31940853 -g1,13195:18960459,31940853 -g1,13195:19276605,31940853 -g1,13195:19592751,31940853 -g1,13195:19908897,31940853 -k1,13195:19908897,31940853:0 -h1,13195:21805771,31940853:0,0,0 -k1,13195:32583029,31940853:10777258 -g1,13195:32583029,31940853 -) -(1,13195:6630773,32607031:25952256,388497,101187 -h1,13195:6630773,32607031:0,0,0 -g1,13195:7579210,32607031 -g1,13195:9476084,32607031 -g1,13195:9792230,32607031 -g1,13195:10108376,32607031 -g1,13195:10424522,32607031 -g1,13195:10740668,32607031 -g1,13195:11056814,32607031 -g1,13195:11689106,32607031 -g1,13195:13902126,32607031 -g1,13195:14218272,32607031 -g1,13195:16431292,32607031 -g1,13195:16747438,32607031 -g1,13195:18960458,32607031 -g1,13195:22121915,32607031 -h1,13195:23070352,32607031:0,0,0 -k1,13195:32583029,32607031:9512677 -g1,13195:32583029,32607031 -) -(1,13195:6630773,33273209:25952256,404226,9436 -h1,13195:6630773,33273209:0,0,0 -g1,13195:7579210,33273209 -g1,13195:10740667,33273209 -g1,13195:11689104,33273209 -g1,13195:12005250,33273209 -g1,13195:13902124,33273209 -g1,13195:14218270,33273209 -g1,13195:14534416,33273209 -h1,13195:16115144,33273209:0,0,0 -k1,13195:32583029,33273209:16467885 -g1,13195:32583029,33273209 -) -(1,13195:6630773,33939387:25952256,379060,0 -h1,13195:6630773,33939387:0,0,0 -g1,13195:7579210,33939387 -k1,13195:7579210,33939387:0 -h1,13195:8527648,33939387:0,0,0 -k1,13195:32583028,33939387:24055380 -g1,13195:32583028,33939387 -) -(1,13195:6630773,34605565:25952256,410518,107478 -h1,13195:6630773,34605565:0,0,0 -g1,13195:7579210,34605565 -g1,13195:10108376,34605565 -g1,13195:12321396,34605565 -g1,13195:12637542,34605565 -g1,13195:13269834,34605565 -g1,13195:15166709,34605565 -g1,13195:17063583,34605565 -g1,13195:18644312,34605565 -g1,13195:20225041,34605565 -g1,13195:21489625,34605565 -g1,13195:23070354,34605565 -g1,13195:24334938,34605565 -g1,13195:25599521,34605565 -g1,13195:26231813,34605565 -g1,13195:26864105,34605565 -h1,13195:27180251,34605565:0,0,0 -k1,13195:32583029,34605565:5402778 -g1,13195:32583029,34605565 -) -] -) -g1,13196:32583029,34713043 -g1,13196:6630773,34713043 -g1,13196:6630773,34713043 -g1,13196:32583029,34713043 -g1,13196:32583029,34713043 -) -h1,13196:6630773,34909651:0,0,0 -v1,13200:6630773,36636099:0,393216,0 -(1,13212:6630773,44816017:25952256,8573134,0 -g1,13212:6630773,44816017 -g1,13212:6303093,44816017 -r1,13218:6401397,44816017:98304,8573134,0 -g1,13212:6600626,44816017 -g1,13212:6797234,44816017 -[1,13212:6797234,44816017:25785795,8573134,0 -(1,13201:6797234,37068637:25785795,825754,196608 -(1,13200:6797234,37068637:0,825754,196608 -r1,13218:8834093,37068637:2036859,1022362,196608 -k1,13200:6797234,37068637:-2036859 -) -(1,13200:6797234,37068637:2036859,825754,196608 -) -k1,13200:9000827,37068637:166734 -k1,13200:10727045,37068637:327680 -k1,13200:12677015,37068637:166735 -k1,13200:14961873,37068637:166734 -k1,13200:16880384,37068637:166734 -k1,13200:20521838,37068637:166735 -k1,13200:22082523,37068637:166734 -k1,13200:23637965,37068637:166734 -k1,13200:26046687,37068637:166735 -k1,13200:28098892,37068637:166734 -k1,13200:28797123,37068637:166734 -k1,13200:30030129,37068637:166735 -k1,13200:31215948,37068637:166734 -k1,13200:32583029,37068637:0 -) -(1,13201:6797234,37910125:25785795,513147,134348 -k1,13200:8539139,37910125:170352 -k1,13200:11036675,37910125:170353 -k1,13200:11866319,37910125:170352 -k1,13200:14020447,37910125:170353 -k1,13200:15209884,37910125:170352 -k1,13200:17274227,37910125:170353 -k1,13200:19236989,37910125:170352 -k1,13200:20354993,37910125:170353 -k1,13200:22410816,37910125:170352 -k1,13200:23232597,37910125:170353 -k1,13200:25483062,37910125:170352 -k1,13200:26672500,37910125:170353 -k1,13200:28405886,37910125:170352 -k1,13200:29034336,37910125:170353 -k1,13200:30308970,37910125:170352 -k1,13200:31227089,37910125:170353 -k1,13201:32583029,37910125:0 -) -(1,13201:6797234,38751613:25785795,513147,134348 -k1,13200:9359254,38751613:222385 -k1,13200:10233068,38751613:222386 -k1,13200:11547938,38751613:222385 -k1,13200:14044423,38751613:222386 -k1,13200:18037094,38751613:222385 -k1,13200:19207131,38751613:222386 -k1,13200:21770462,38751613:222385 -k1,13200:25137920,38751613:222385 -k1,13200:27321799,38751613:222386 -k1,13200:28662228,38751613:222385 -k1,13200:29903699,38751613:222386 -k1,13200:31622271,38751613:222385 -k1,13201:32583029,38751613:0 -) -(1,13201:6797234,39593101:25785795,505283,134348 -k1,13200:8280593,39593101:189023 -k1,13200:9661061,39593101:189023 -k1,13200:13293346,39593101:189023 -k1,13200:14779327,39593101:189023 -(1,13200:14779327,39593101:0,459977,115847 -r1,13218:18654711,39593101:3875384,575824,115847 -k1,13200:14779327,39593101:-3875384 -) -(1,13200:14779327,39593101:3875384,459977,115847 -k1,13200:14779327,39593101:3277 -h1,13200:18651434,39593101:0,411205,112570 -) -k1,13200:18843734,39593101:189023 -k1,13200:20224203,39593101:189024 -(1,13200:20224203,39593101:0,459977,115847 -r1,13218:24099587,39593101:3875384,575824,115847 -k1,13200:20224203,39593101:-3875384 -) -(1,13200:20224203,39593101:3875384,459977,115847 -k1,13200:20224203,39593101:3277 -h1,13200:24096310,39593101:0,411205,112570 -) -k1,13200:24288610,39593101:189023 -k1,13200:27097762,39593101:189023 -k1,13200:28305870,39593101:189023 -k1,13200:30148366,39593101:189023 -k1,13200:32583029,39593101:0 -) -(1,13201:6797234,40434589:25785795,513147,134348 -k1,13200:8613361,40434589:250472 -k1,13200:11685812,40434589:250471 -k1,13200:13008453,40434589:250472 -k1,13200:14278009,40434589:250471 -k1,13200:15215954,40434589:250472 -k1,13200:17454132,40434589:250471 -k1,13200:19994432,40434589:250472 -k1,13200:21236463,40434589:250471 -k1,13200:22553206,40434589:250472 -k1,13200:25714131,40434589:250471 -k1,13200:27218307,40434589:250472 -k1,13200:28573060,40434589:250471 -k1,13200:29916017,40434589:250472 -(1,13200:29916017,40434589:0,452978,115847 -r1,13218:31681130,40434589:1765113,568825,115847 -k1,13200:29916017,40434589:-1765113 -) -(1,13200:29916017,40434589:1765113,452978,115847 -k1,13200:29916017,40434589:3277 -h1,13200:31677853,40434589:0,411205,112570 -) -k1,13200:31931601,40434589:250471 -k1,13200:32583029,40434589:0 -) -(1,13201:6797234,41276077:25785795,513147,134348 -g1,13200:9364934,41276077 -g1,13200:10030124,41276077 -g1,13200:11361160,41276077 -g1,13200:14514097,41276077 -g1,13200:16456584,41276077 -g1,13200:19291016,41276077 -g1,13200:20509330,41276077 -g1,13200:21880998,41276077 -k1,13201:32583029,41276077:8238533 -g1,13201:32583029,41276077 -) -v1,13203:6797234,42466543:0,393216,0 -(1,13209:6797234,44095121:25785795,2021794,196608 -g1,13209:6797234,44095121 -g1,13209:6797234,44095121 -g1,13209:6600626,44095121 -(1,13209:6600626,44095121:0,2021794,196608 -r1,13218:32779637,44095121:26179011,2218402,196608 -k1,13209:6600625,44095121:-26179012 -) -(1,13209:6600626,44095121:26179011,2021794,196608 -[1,13209:6797234,44095121:25785795,1825186,0 -(1,13205:6797234,42680453:25785795,410518,107478 -(1,13204:6797234,42680453:0,0,0 -g1,13204:6797234,42680453 -g1,13204:6797234,42680453 -g1,13204:6469554,42680453 -(1,13204:6469554,42680453:0,0,0 -) -g1,13204:6797234,42680453 -) -g1,13205:8377963,42680453 -g1,13205:9326401,42680453 -g1,13205:13120150,42680453 -g1,13205:15333170,42680453 -g1,13205:15965462,42680453 -g1,13205:20707648,42680453 -h1,13205:22920668,42680453:0,0,0 -k1,13205:32583029,42680453:9662361 -g1,13205:32583029,42680453 -) -(1,13206:6797234,43346631:25785795,410518,76021 -h1,13206:6797234,43346631:0,0,0 -k1,13206:6797234,43346631:0 -h1,13206:10274836,43346631:0,0,0 -k1,13206:32583028,43346631:22308192 -g1,13206:32583028,43346631 -) -(1,13207:6797234,44012809:25785795,410518,82312 -h1,13207:6797234,44012809:0,0,0 -g1,13207:11855565,44012809 -h1,13207:13436293,44012809:0,0,0 -k1,13207:32583029,44012809:19146736 -g1,13207:32583029,44012809 -) -] -) -g1,13209:32583029,44095121 -g1,13209:6797234,44095121 -g1,13209:6797234,44095121 -g1,13209:32583029,44095121 -g1,13209:32583029,44095121 -) -h1,13209:6797234,44291729:0,0,0 -] -g1,13212:32583029,44816017 -) -h1,13212:6630773,44816017:0,0,0 -v1,13215:6630773,46099985:0,393216,0 -] -(1,13218:32583029,45706769:0,0,0 -g1,13218:32583029,45706769 -) -) -] -(1,13218:6630773,47279633:25952256,0,0 -h1,13218:6630773,47279633:25952256,0,0 -) -] -(1,13218:4262630,4025873:0,0,0 -[1,13218:-473656,4025873:0,0,0 -(1,13218:-473656,-710413:0,0,0 -(1,13218:-473656,-710413:0,0,0 -g1,13218:-473656,-710413 ) -g1,13218:-473656,-710413 +k1,12778:3078556,2439708:-34777008 ) ] +[1,12778:3078558,4812305:0,0,0 +(1,12778:3078558,49800853:0,16384,2228224 +k1,12778:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,12778:2537886,49800853:1179648,16384,0 ) -] -!28019 -}226 -Input:2008:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2009:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2010:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2011:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2012:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2013:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2014:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2015:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2016:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2017:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2018:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2019:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2020:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2021:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2022:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2023:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1516 -{227 -[1,13279:4262630,47279633:28320399,43253760,0 -(1,13279:4262630,4025873:0,0,0 -[1,13279:-473656,4025873:0,0,0 -(1,13279:-473656,-710413:0,0,0 -(1,13279:-473656,-644877:0,0,0 -k1,13279:-473656,-644877:-65536 +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,12778:3078558,51504789:16384,1179648,0 +) +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 +) +] +) +) +) +] +[1,12778:3078558,4812305:0,0,0 +(1,12778:3078558,49800853:0,16384,2228224 +g1,12778:29030814,49800853 +g1,12778:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,12778:36151628,51504789:16384,1179648,0 +) +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 +) +] +) +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,12778:37855564,49800853:1179648,16384,0 +) +) +k1,12778:3078556,49800853:-34777008 +) +] +g1,12778:6630773,4812305 +g1,12778:6630773,4812305 +g1,12778:8843268,4812305 +g1,12778:10880782,4812305 +g1,12778:13281365,4812305 +k1,12778:31387653,4812305:18106288 +) +) +] +[1,12778:6630773,45706769:25952256,40108032,0 +(1,12778:6630773,45706769:25952256,40108032,0 +(1,12778:6630773,45706769:0,0,0 +g1,12778:6630773,45706769 +) +[1,12778:6630773,45706769:25952256,40108032,0 +(1,12680:6630773,6254097:25952256,513147,138281 +k1,12679:9846410,6254097:169524 +k1,12679:13029935,6254097:169524 +$1,12679:13029935,6254097 +k1,12679:13763808,6254097:182060 +k1,12679:14514065,6254097:182060 +k1,12679:16547537,6254097:80499 +k1,12679:17196234,6254097:80500 +$1,12679:19083671,6254097 +k1,12679:19426865,6254097:169524 +k1,12679:21396663,6254097:169524 +k1,12679:22585272,6254097:169524 +k1,12679:24832943,6254097:169524 +k1,12679:25661759,6254097:169524 +k1,12679:26850368,6254097:169524 +k1,12679:29870053,6254097:169524 +k1,12679:30907929,6254097:169524 +k1,12679:32583029,6254097:0 +) +(1,12680:6630773,7119177:25952256,513147,134348 +k1,12679:8662842,7119177:216722 +k1,12679:9660099,7119177:216723 +k1,12679:11120694,7119177:216722 +k1,12679:14394016,7119177:216722 +k1,12679:15895245,7119177:216723 +k1,12679:18925428,7119177:216722 +k1,12679:21802912,7119177:216722 +k1,12679:23641650,7119177:216722 +k1,12679:24606139,7119177:216723 +k1,12679:26243026,7119177:216722 +k1,12679:28157786,7119177:216722 +k1,12679:30240974,7119177:216723 +k1,12679:30989193,7119177:216722 +k1,12679:32583029,7119177:0 +) +(1,12680:6630773,7984257:25952256,513147,134348 +k1,12679:8198412,7984257:186795 +k1,12679:11143617,7984257:186795 +k1,12679:12614918,7984257:186795 +k1,12679:13670065,7984257:186795 +k1,12679:16037243,7984257:186795 +k1,12679:17290309,7984257:186795 +k1,12679:20192916,7984257:186795 +k1,12679:21398795,7984257:186794 +k1,12679:23265933,7984257:186795 +k1,12679:24112020,7984257:186795 +$1,12679:24112020,7984257 +$1,12679:24619924,7984257 +k1,12679:24806719,7984257:186795 +k1,12679:26065683,7984257:186795 +k1,12679:28579661,7984257:186795 +k1,12679:29700999,7984257:186795 +$1,12679:29700999,7984257 +k1,12679:30390963,7984257:182060 +k1,12679:31141220,7984257:182060 +$1,12679:31539679,7984257 +k1,12679:31900144,7984257:186795 +k1,12679:32583029,7984257:0 +) +(1,12680:6630773,8849337:25952256,513147,138281 +g1,12679:7446040,8849337 +g1,12679:9347239,8849337 +g1,12679:11675077,8849337 +g1,12679:12561779,8849337 +g1,12679:13780093,8849337 +g1,12679:15967029,8849337 +$1,12679:15967029,8849337 +g1,12679:16700902,8849337 +g1,12679:17451159,8849337 +g1,12679:18041141,8849337 +g1,12679:18455487,8849337 +$1,12679:18958148,8849337 +k1,12680:32583029,8849337:13451211 +g1,12680:32583029,8849337 +) +(1,12682:6630773,9714417:25952256,505283,126483 +h1,12681:6630773,9714417:983040,0,0 +k1,12681:10739771,9714417:191256 +k1,12681:11547066,9714417:191257 +k1,12681:12153158,9714417:191249 +k1,12681:14836093,9714417:191256 +k1,12681:16046435,9714417:191257 +k1,12681:19104891,9714417:191256 +k1,12681:19827645,9714417:191257 +k1,12681:22148166,9714417:191256 +k1,12681:25345559,9714417:191257 +k1,12681:28468896,9714417:191256 +k1,12681:29384981,9714417:191257 +k1,12681:30595322,9714417:191256 +k1,12681:32583029,9714417:0 +) +(1,12682:6630773,10579497:25952256,530548,134348 +k1,12681:8604002,10579497:260773 +k1,12681:10720099,10579497:260773 +k1,12681:12085154,10579497:260773 +k1,12681:13093693,10579497:260773 +k1,12681:16922902,10579497:260774 +k1,12681:17869837,10579497:260773 +h1,12681:17869837,10579497:0,0,0 +k1,12681:20072730,10579497:543123 +k1,12681:21030795,10579497:543123 +k1,12681:25091188,10579497:260773 +k1,12681:25707821,10579497:260773 +k1,12681:28440612,10579497:260773 +(1,12681:28440612,10579497:0,435480,115847 +r1,12778:29502302,10579497:1061690,551327,115847 +k1,12681:28440612,10579497:-1061690 +) +(1,12681:28440612,10579497:1061690,435480,115847 +g1,12681:29147313,10579497 +h1,12681:29499025,10579497:0,411205,112570 +) +k1,12681:29763075,10579497:260773 +k1,12681:31516758,10579497:260773 +k1,12681:32583029,10579497:0 +) +(1,12682:6630773,11444577:25952256,513147,134348 +k1,12681:9089079,11444577:217630 +k1,12681:10325794,11444577:217630 +k1,12681:12704801,11444577:217630 +k1,12681:13751461,11444577:217630 +k1,12681:16403098,11444577:217630 +k1,12681:17639813,11444577:217630 +k1,12681:20724642,11444577:217629 +k1,12681:22509893,11444577:217630 +k1,12681:23746608,11444577:217630 +k1,12681:26718716,11444577:217630 +k1,12681:29097723,11444577:217630 +k1,12681:30183705,11444577:217630 +k1,12681:31931601,11444577:217630 +k1,12681:32583029,11444577:0 +) +(1,12682:6630773,12309657:25952256,530548,134348 +k1,12681:9067933,12309657:178134 +k1,12681:9704163,12309657:178133 +k1,12681:10568459,12309657:178134 +h1,12681:10568459,12309657:0,0,0 +k1,12681:12599234,12309657:371005 +k1,12681:13385182,12309657:371006 +k1,12681:15830899,12309657:371005 +k1,12681:16616846,12309657:371005 +k1,12681:17209922,12309657:178134 +k1,12681:18278035,12309657:178134 +k1,12681:19244566,12309657:178133 +k1,12681:22727681,12309657:178134 +h1,12681:22727681,12309657:0,0,0 +k1,12681:24758456,12309657:371005 +k1,12681:25544404,12309657:371006 +k1,12681:27990121,12309657:371005 +k1,12681:28776068,12309657:371005 +k1,12681:29749908,12309657:178134 +k1,12681:32583029,12309657:0 +) +(1,12682:6630773,13174737:25952256,513147,138281 +g1,12681:7446040,13174737 +g1,12681:8664354,13174737 +g1,12681:10798206,13174737 +g1,12681:11656727,13174737 +g1,12681:12211816,13174737 +g1,12681:14889617,13174737 +g1,12681:16257353,13174737 +g1,12681:18884036,13174737 +g1,12681:21641791,13174737 +g1,12681:22860105,13174737 +g1,12681:24933664,13174737 +$1,12681:25140758,13174737 +g1,12681:25825479,13174737 +g1,12681:26575736,13174737 +$1,12681:26974195,13174737 +g1,12681:27347094,13174737 +$1,12681:27347094,13174737 +g1,12681:28080967,13174737 +g1,12681:28831224,13174737 +$1,12681:29229683,13174737 +k1,12682:32583029,13174737:2972582 +g1,12682:32583029,13174737 +) +(1,12684:6630773,14039817:25952256,513147,126483 +h1,12683:6630773,14039817:983040,0,0 +k1,12683:9193464,14039817:171938 +k1,12683:11020187,14039817:171939 +k1,12683:11723622,14039817:171938 +k1,12683:12704930,14039817:171938 +k1,12683:15592680,14039817:171938 +k1,12683:16712270,14039817:171939 +k1,12683:17903293,14039817:171938 +k1,12683:20942431,14039817:171938 +k1,12683:21730408,14039817:171939 +k1,12683:22921431,14039817:171938 +k1,12683:26257447,14039817:171938 +k1,12683:27804986,14039817:171938 +k1,12683:28747628,14039817:171939 +k1,12683:31635378,14039817:171938 +k1,12683:32583029,14039817:0 +) +(1,12684:6630773,14904897:25952256,505283,126483 +g1,12683:7849087,14904897 +k1,12684:32583029,14904897:22862234 +g1,12684:32583029,14904897 +) +v1,12686:6630773,15589752:0,393216,0 +(1,12710:6630773,28388897:25952256,13192361,196608 +g1,12710:6630773,28388897 +g1,12710:6630773,28388897 +g1,12710:6434165,28388897 +(1,12710:6434165,28388897:0,13192361,196608 +r1,12778:32779637,28388897:26345472,13388969,196608 +k1,12710:6434165,28388897:-26345472 +) +(1,12710:6434165,28388897:26345472,13192361,196608 +[1,12710:6630773,28388897:25952256,12995753,0 +(1,12688:6630773,15824189:25952256,431045,106246 +(1,12687:6630773,15824189:0,0,0 +g1,12687:6630773,15824189 +g1,12687:6630773,15824189 +g1,12687:6303093,15824189 +(1,12687:6303093,15824189:0,0,0 +) +g1,12687:6630773,15824189 +) +g1,12688:7958589,15824189 +g1,12688:8954451,15824189 +g1,12688:11610083,15824189 +g1,12688:12273991,15824189 +g1,12688:14265715,15824189 +g1,12688:14929623,15824189 +g1,12688:15925485,15824189 +g1,12688:17585255,15824189 +g1,12688:18249163,15824189 +h1,12688:19908933,15824189:0,0,0 +k1,12688:32583029,15824189:12674096 +g1,12688:32583029,15824189 +) +(1,12689:6630773,16509044:25952256,431045,106246 +h1,12689:6630773,16509044:0,0,0 +k1,12689:6630773,16509044:0 +h1,12689:10614221,16509044:0,0,0 +k1,12689:32583029,16509044:21968808 +g1,12689:32583029,16509044 +) +(1,12709:6630773,17324971:25952256,398014,0 +(1,12691:6630773,17324971:0,0,0 +g1,12691:6630773,17324971 +g1,12691:6630773,17324971 +g1,12691:6303093,17324971 +(1,12691:6303093,17324971:0,0,0 +) +g1,12691:6630773,17324971 +) +h1,12709:7294681,17324971:0,0,0 +k1,12709:32583029,17324971:25288348 +g1,12709:32583029,17324971 +) +(1,12709:6630773,18009826:25952256,424439,8257 +h1,12709:6630773,18009826:0,0,0 +g1,12709:7626635,18009826 +h1,12709:9286405,18009826:0,0,0 +k1,12709:32583029,18009826:23296624 +g1,12709:32583029,18009826 +) +(1,12709:6630773,18694681:25952256,431045,106246 +h1,12709:6630773,18694681:0,0,0 +g1,12709:7626635,18694681 +g1,12709:11278128,18694681 +g1,12709:11942036,18694681 +g1,12709:13601806,18694681 +g1,12709:14265714,18694681 +g1,12709:16257438,18694681 +g1,12709:16921346,18694681 +g1,12709:17917208,18694681 +g1,12709:19576978,18694681 +g1,12709:20240886,18694681 +h1,12709:21900656,18694681:0,0,0 +k1,12709:32583029,18694681:10682373 +g1,12709:32583029,18694681 +) +(1,12709:6630773,19379536:25952256,398014,0 +h1,12709:6630773,19379536:0,0,0 +h1,12709:7294681,19379536:0,0,0 +k1,12709:32583029,19379536:25288348 +g1,12709:32583029,19379536 +) +(1,12709:6630773,20064391:25952256,424439,6605 +h1,12709:6630773,20064391:0,0,0 +g1,12709:7626635,20064391 +h1,12709:10946174,20064391:0,0,0 +k1,12709:32583030,20064391:21636856 +g1,12709:32583030,20064391 +) +(1,12709:6630773,20749246:25952256,424439,86428 +h1,12709:6630773,20749246:0,0,0 +g1,12709:7626635,20749246 +g1,12709:7958589,20749246 +g1,12709:8290543,20749246 +g1,12709:8622497,20749246 +g1,12709:8954451,20749246 +g1,12709:10282267,20749246 +g1,12709:10614221,20749246 +g1,12709:10946175,20749246 +g1,12709:11278129,20749246 +g1,12709:11610083,20749246 +g1,12709:11942037,20749246 +g1,12709:12937899,20749246 +g1,12709:13269853,20749246 +g1,12709:15593531,20749246 +g1,12709:15925485,20749246 +g1,12709:16257439,20749246 +g1,12709:16589393,20749246 +g1,12709:16921347,20749246 +g1,12709:17253301,20749246 +g1,12709:18249163,20749246 +g1,12709:18581117,20749246 +g1,12709:18913071,20749246 +g1,12709:19245025,20749246 +g1,12709:19576979,20749246 +h1,12709:20572841,20749246:0,0,0 +k1,12709:32583029,20749246:12010188 +g1,12709:32583029,20749246 +) +(1,12709:6630773,21434101:25952256,407923,9908 +h1,12709:6630773,21434101:0,0,0 +g1,12709:7626635,21434101 +g1,12709:10282267,21434101 +g1,12709:12937899,21434101 +g1,12709:13269853,21434101 +g1,12709:15593531,21434101 +g1,12709:15925485,21434101 +g1,12709:16257439,21434101 +g1,12709:18249163,21434101 +g1,12709:18581117,21434101 +h1,12709:20572841,21434101:0,0,0 +k1,12709:32583029,21434101:12010188 +g1,12709:32583029,21434101 +) +(1,12709:6630773,22118956:25952256,398014,0 +h1,12709:6630773,22118956:0,0,0 +h1,12709:7294681,22118956:0,0,0 +k1,12709:32583029,22118956:25288348 +g1,12709:32583029,22118956 +) +(1,12709:6630773,22803811:25952256,431045,8257 +h1,12709:6630773,22803811:0,0,0 +g1,12709:7626635,22803811 +h1,12709:11942036,22803811:0,0,0 +k1,12709:32583028,22803811:20640992 +g1,12709:32583028,22803811 +) +(1,12709:6630773,23488666:25952256,424439,79822 +h1,12709:6630773,23488666:0,0,0 +g1,12709:7626635,23488666 +g1,12709:7958589,23488666 +g1,12709:8290543,23488666 +g1,12709:8622497,23488666 +g1,12709:8954451,23488666 +g1,12709:9286405,23488666 +g1,12709:9618359,23488666 +g1,12709:12605944,23488666 +g1,12709:14265714,23488666 +g1,12709:16257438,23488666 +g1,12709:16921346,23488666 +g1,12709:18913070,23488666 +k1,12709:18913070,23488666:0 +h1,12709:21568702,23488666:0,0,0 +k1,12709:32583029,23488666:11014327 +g1,12709:32583029,23488666 +) +(1,12709:6630773,24173521:25952256,424439,106246 +h1,12709:6630773,24173521:0,0,0 +g1,12709:7626635,24173521 +g1,12709:9618359,24173521 +g1,12709:9950313,24173521 +g1,12709:10282267,24173521 +g1,12709:12605945,24173521 +g1,12709:12937899,24173521 +g1,12709:13269853,24173521 +g1,12709:13601807,24173521 +g1,12709:13933761,24173521 +g1,12709:16257439,24173521 +g1,12709:16589393,24173521 +g1,12709:16921347,24173521 +g1,12709:18913071,24173521 +g1,12709:19245025,24173521 +g1,12709:19576979,24173521 +g1,12709:21900657,24173521 +h1,12709:22896519,24173521:0,0,0 +k1,12709:32583029,24173521:9686510 +g1,12709:32583029,24173521 +) +(1,12709:6630773,24858376:25952256,398014,0 +h1,12709:6630773,24858376:0,0,0 +g1,12709:7626635,24858376 +k1,12709:7626635,24858376:0 +h1,12709:8622497,24858376:0,0,0 +k1,12709:32583029,24858376:23960532 +g1,12709:32583029,24858376 +) +(1,12709:6630773,25543231:25952256,431045,112852 +h1,12709:6630773,25543231:0,0,0 +g1,12709:7626635,25543231 +g1,12709:10282267,25543231 +g1,12709:12605945,25543231 +g1,12709:12937899,25543231 +g1,12709:13601807,25543231 +g1,12709:15593531,25543231 +g1,12709:17585255,25543231 +g1,12709:19245025,25543231 +g1,12709:20904795,25543231 +g1,12709:22232611,25543231 +g1,12709:23892381,25543231 +g1,12709:25220197,25543231 +g1,12709:26548013,25543231 +g1,12709:27211921,25543231 +g1,12709:27875829,25543231 +h1,12709:28207783,25543231:0,0,0 +k1,12709:32583029,25543231:4375246 +g1,12709:32583029,25543231 +) +(1,12709:6630773,26228086:25952256,398014,0 +h1,12709:6630773,26228086:0,0,0 +h1,12709:7294681,26228086:0,0,0 +k1,12709:32583029,26228086:25288348 +g1,12709:32583029,26228086 +) +(1,12709:6630773,26912941:25952256,431045,112852 +h1,12709:6630773,26912941:0,0,0 +g1,12709:7626635,26912941 +g1,12709:10614220,26912941 +g1,12709:13601805,26912941 +g1,12709:15925483,26912941 +g1,12709:17917207,26912941 +g1,12709:18913069,26912941 +g1,12709:19908931,26912941 +g1,12709:22564563,26912941 +g1,12709:23560425,26912941 +h1,12709:25884103,26912941:0,0,0 +k1,12709:32583029,26912941:6698926 +g1,12709:32583029,26912941 +) +(1,12709:6630773,27597796:25952256,424439,112852 +h1,12709:6630773,27597796:0,0,0 +g1,12709:7626635,27597796 +g1,12709:10614220,27597796 +g1,12709:14265713,27597796 +g1,12709:14597667,27597796 +g1,12709:19908930,27597796 +g1,12709:23560423,27597796 +g1,12709:23892377,27597796 +h1,12709:25884101,27597796:0,0,0 +k1,12709:32583029,27597796:6698928 +g1,12709:32583029,27597796 +) +(1,12709:6630773,28282651:25952256,424439,106246 +h1,12709:6630773,28282651:0,0,0 +g1,12709:7626635,28282651 +g1,12709:11942036,28282651 +g1,12709:13933760,28282651 +g1,12709:14929622,28282651 +g1,12709:15593530,28282651 +g1,12709:16921346,28282651 +g1,12709:17917208,28282651 +g1,12709:19245024,28282651 +g1,12709:19576978,28282651 +g1,12709:22564564,28282651 +g1,12709:23228472,28282651 +k1,12709:23228472,28282651:0 +h1,12709:25552150,28282651:0,0,0 +k1,12709:32583029,28282651:7030879 +g1,12709:32583029,28282651 +) +] +) +g1,12710:32583029,28388897 +g1,12710:6630773,28388897 +g1,12710:6630773,28388897 +g1,12710:32583029,28388897 +g1,12710:32583029,28388897 +) +h1,12710:6630773,28585505:0,0,0 +(1,12714:6630773,29450585:25952256,513147,138281 +h1,12713:6630773,29450585:983040,0,0 +k1,12713:8962967,29450585:152467 +k1,12713:11905302,29450585:152467 +k1,12713:12717060,29450585:152466 +k1,12713:13888612,29450585:152467 +k1,12713:16282410,29450585:152467 +k1,12713:18147333,29450585:152467 +k1,12713:20287506,29450585:152466 +k1,12713:20971470,29450585:152467 +$1,12713:20971470,29450585 +k1,12713:21705343,29450585:182060 +k1,12713:22455600,29450585:182060 +$1,12713:24343037,29450585 +k1,12713:24669174,29450585:152467 +k1,12713:26013086,29450585:152467 +k1,12713:27733173,29450585:152466 +k1,12713:28904725,29450585:152467 +k1,12713:32124932,29450585:152467 +k1,12713:32583029,29450585:0 +) +(1,12714:6630773,30315665:25952256,513147,134348 +k1,12713:7916415,30315665:181360 +k1,12713:8845540,30315665:181359 +k1,12713:10466726,30315665:181360 +k1,12713:11932592,30315665:181360 +k1,12713:12572048,30315665:181359 +k1,12713:13284905,30315665:181360 +k1,12713:17159219,30315665:181360 +k1,12713:18026740,30315665:181359 +k1,12713:19227185,30315665:181360 +k1,12713:21887117,30315665:181360 +k1,12713:23236983,30315665:181359 +k1,12713:24911253,30315665:181360 +k1,12713:26158884,30315665:181360 +k1,12713:28325329,30315665:181359 +k1,12713:29525774,30315665:181360 +k1,12713:32583029,30315665:0 +) +(1,12714:6630773,31180745:25952256,513147,126483 +g1,12713:7489294,31180745 +g1,12713:8707608,31180745 +g1,12713:12738072,31180745 +g1,12713:15572504,31180745 +(1,12713:15572504,31180745:0,452978,115847 +r1,12778:16985905,31180745:1413401,568825,115847 +k1,12713:15572504,31180745:-1413401 +) +(1,12713:15572504,31180745:1413401,452978,115847 +k1,12713:15572504,31180745:3277 +h1,12713:16982628,31180745:0,411205,112570 +) +g1,12713:17185134,31180745 +g1,12713:18575808,31180745 +(1,12713:18575808,31180745:0,452978,115847 +r1,12778:20340921,31180745:1765113,568825,115847 +k1,12713:18575808,31180745:-1765113 +) +(1,12713:18575808,31180745:1765113,452978,115847 +k1,12713:18575808,31180745:3277 +h1,12713:20337644,31180745:0,411205,112570 +) +k1,12714:32583029,31180745:12068438 +g1,12714:32583029,31180745 +) +v1,12716:6630773,32045825:0,393216,0 +(1,12778:6630773,43488657:25952256,11836048,0 +g1,12778:6630773,43488657 +g1,12778:6237557,43488657 +r1,12778:6368629,43488657:131072,11836048,0 +g1,12778:6567858,43488657 +g1,12778:6764466,43488657 +[1,12778:6764466,43488657:25818563,11836048,0 +(1,12717:6764466,32318302:25818563,665693,196608 +(1,12716:6764466,32318302:0,665693,196608 +r1,12778:8010564,32318302:1246098,862301,196608 +k1,12716:6764466,32318302:-1246098 +) +(1,12716:6764466,32318302:1246098,665693,196608 +) +k1,12716:8290200,32318302:279636 +k1,12716:9608129,32318302:327680 +k1,12716:11141470,32318302:279637 +k1,12716:12553568,32318302:279636 +k1,12716:14163586,32318302:279637 +k1,12716:15130695,32318302:279636 +k1,12716:15766192,32318302:279637 +k1,12716:20625484,32318302:279636 +k1,12716:24651814,32318302:279637 +k1,12716:25287310,32318302:279636 +k1,12716:28329290,32318302:279637 +k1,12716:30421652,32318302:279636 +k1,12716:32583029,32318302:0 +) +(1,12717:6764466,33183382:25818563,615216,138281 +k1,12716:7498339,33183382:182060 +k1,12716:8248596,33183382:182060 +k1,12716:8866957,33183382:110457 +k1,12716:9246112,33183382:110457 +k1,12716:9755028,33183382:110457 +k1,12716:10433682,33183382:110457 +(1,12716:10878016,33281696:311689,334430,0 +) +k1,12716:11300162,33183382:110457 +k1,12716:11679317,33183382:110457 +k1,12716:12292435,33183382:110457 +k1,12716:12971089,33183382:110457 +(1,12716:13415423,33281696:311689,339935,0 +) +k1,12716:13837569,33183382:110457 +k1,12716:14216724,33183382:110457 +(1,12716:14719385,32908101:311689,339935,0 +) +$1,12716:15031074,33183382 +k1,12716:15387928,33183382:183184 +k1,12716:16767798,33183382:183183 +k1,12716:19646478,33183382:183184 +k1,12716:21342887,33183382:183183 +k1,12716:22057568,33183382:183184 +k1,12716:23259836,33183382:183183 +k1,12716:25096493,33183382:183184 +k1,12716:25965838,33183382:183183 +k1,12716:27096673,33183382:183184 +k1,12716:29092582,33183382:183183 +k1,12717:32583029,33183382:0 +) +(1,12717:6764466,34048462:25818563,513147,126483 +(1,12716:6764466,34048462:0,452978,115847 +r1,12778:8177867,34048462:1413401,568825,115847 +k1,12716:6764466,34048462:-1413401 +) +(1,12716:6764466,34048462:1413401,452978,115847 +k1,12716:6764466,34048462:3277 +h1,12716:8174590,34048462:0,411205,112570 +) +k1,12716:8601144,34048462:249607 +k1,12716:9804301,34048462:249608 +k1,12716:11429509,34048462:249607 +k1,12716:13209383,34048462:249608 +k1,12716:14110418,34048462:249607 +k1,12716:15813614,34048462:249607 +k1,12716:17082307,34048462:249608 +k1,12716:21142833,34048462:249607 +k1,12716:22051732,34048462:249607 +k1,12716:23320425,34048462:249608 +k1,12716:25731409,34048462:249607 +k1,12716:27177704,34048462:249608 +k1,12716:29887533,34048462:249607 +k1,12717:32583029,34048462:0 +) +(1,12717:6764466,34913542:25818563,513147,134348 +(1,12716:6764466,34913542:0,452978,115847 +r1,12778:7826155,34913542:1061689,568825,115847 +k1,12716:6764466,34913542:-1061689 +) +(1,12716:6764466,34913542:1061689,452978,115847 +k1,12716:6764466,34913542:3277 +h1,12716:7822878,34913542:0,411205,112570 +) +k1,12716:8064144,34913542:237989 +k1,12716:8833630,34913542:237989 +k1,12716:10584845,34913542:237989 +k1,12716:11474261,34913542:237988 +k1,12716:14010598,34913542:237989 +k1,12716:15036985,34913542:237989 +k1,12716:18347302,34913542:237989 +k1,12716:20152912,34913542:237989 +k1,12716:22128916,34913542:237989 +k1,12716:25956967,34913542:237989 +k1,12716:26881117,34913542:237988 +k1,12716:28440967,34913542:237989 +k1,12716:29338248,34913542:237989 +k1,12716:30595322,34913542:237989 +k1,12716:32583029,34913542:0 +) +(1,12717:6764466,35778622:25818563,513147,134348 +k1,12716:9706760,35778622:225171 +k1,12716:12444580,35778622:225170 +k1,12716:13458149,35778622:225171 +k1,12716:16755648,35778622:225171 +k1,12716:17512315,35778622:225170 +k1,12716:20798673,35778622:225171 +k1,12716:24672889,35778622:225171 +k1,12716:26089504,35778622:225170 +k1,12716:27333760,35778622:225171 +k1,12716:29401803,35778622:225171 +k1,12716:30158470,35778622:225170 +k1,12716:31896867,35778622:225171 +k1,12716:32583029,35778622:0 +) +(1,12717:6764466,36643702:25818563,505283,126483 +g1,12716:8156450,36643702 +g1,12716:8971717,36643702 +g1,12716:10374187,36643702 +g1,12716:11940497,36643702 +g1,12716:14554728,36643702 +g1,12716:18519656,36643702 +k1,12717:32583029,36643702:11378363 +g1,12717:32583029,36643702 +) +v1,12719:6764466,37328557:0,393216,0 +(1,12726:6764466,39697381:25818563,2762040,196608 +g1,12726:6764466,39697381 +g1,12726:6764466,39697381 +g1,12726:6567858,39697381 +(1,12726:6567858,39697381:0,2762040,196608 +r1,12778:32779637,39697381:26211779,2958648,196608 +k1,12726:6567857,39697381:-26211780 +) +(1,12726:6567858,39697381:26211779,2762040,196608 +[1,12726:6764466,39697381:25818563,2565432,0 +(1,12721:6764466,37562994:25818563,431045,106246 +(1,12720:6764466,37562994:0,0,0 +g1,12720:6764466,37562994 +g1,12720:6764466,37562994 +g1,12720:6436786,37562994 +(1,12720:6436786,37562994:0,0,0 +) +g1,12720:6764466,37562994 +) +g1,12721:8092282,37562994 +g1,12721:9088144,37562994 +g1,12721:11743776,37562994 +g1,12721:12407684,37562994 +g1,12721:14399408,37562994 +g1,12721:15063316,37562994 +g1,12721:19046764,37562994 +g1,12721:20706534,37562994 +g1,12721:21370442,37562994 +h1,12721:23030212,37562994:0,0,0 +k1,12721:32583029,37562994:9552817 +g1,12721:32583029,37562994 +) +(1,12722:6764466,38247849:25818563,431045,106246 +h1,12722:6764466,38247849:0,0,0 +g1,12722:10084006,38247849 +g1,12722:12075730,38247849 +g1,12722:12739638,38247849 +h1,12722:13403546,38247849:0,0,0 +k1,12722:32583030,38247849:19179484 +g1,12722:32583030,38247849 +) +(1,12723:6764466,38932704:25818563,431045,106246 +h1,12723:6764466,38932704:0,0,0 +k1,12723:6764466,38932704:0 +h1,12723:10747914,38932704:0,0,0 +k1,12723:32583030,38932704:21835116 +g1,12723:32583030,38932704 +) +(1,12724:6764466,39617559:25818563,431045,79822 +h1,12724:6764466,39617559:0,0,0 +k1,12724:6764466,39617559:0 +h1,12724:10084006,39617559:0,0,0 +k1,12724:32583030,39617559:22499024 +g1,12724:32583030,39617559 +) +] +) +g1,12726:32583029,39697381 +g1,12726:6764466,39697381 +g1,12726:6764466,39697381 +g1,12726:32583029,39697381 +g1,12726:32583029,39697381 +) +h1,12726:6764466,39893989:0,0,0 +(1,12730:6764466,40759069:25818563,513147,134348 +h1,12729:6764466,40759069:983040,0,0 +k1,12729:9126919,40759069:182726 +k1,12729:11563429,40759069:182727 +k1,12729:12433628,40759069:182726 +k1,12729:14351747,40759069:182726 +k1,12729:15305176,40759069:182726 +k1,12729:18981627,40759069:182727 +k1,12729:22737376,40759069:182726 +k1,12729:24024384,40759069:182726 +k1,12729:24954876,40759069:182726 +k1,12729:27969414,40759069:182727 +k1,12729:29887533,40759069:182726 +k1,12730:32583029,40759069:0 +) +(1,12730:6764466,41624149:25818563,513147,134348 +(1,12729:6764466,41624149:0,452978,115847 +r1,12778:8881291,41624149:2116825,568825,115847 +k1,12729:6764466,41624149:-2116825 +) +(1,12729:6764466,41624149:2116825,452978,115847 +k1,12729:6764466,41624149:3277 +h1,12729:8878014,41624149:0,411205,112570 +) +k1,12729:9247854,41624149:192893 +k1,12729:13298851,41624149:192893 +k1,12729:14151036,41624149:192893 +k1,12729:17106273,41624149:192894 +k1,12729:19754800,41624149:192893 +k1,12729:21051975,41624149:192893 +k1,12729:21992634,41624149:192893 +k1,12729:24977361,41624149:192893 +k1,12729:25931783,41624149:192894 +k1,12729:29267783,41624149:192893 +k1,12729:30146838,41624149:192893 +k1,12729:31358816,41624149:192893 +k1,12730:32583029,41624149:0 +) +(1,12730:6764466,42489229:25818563,505283,134348 +k1,12729:8171305,42489229:176728 +k1,12729:11420360,42489229:176727 +k1,12729:12248516,42489229:176728 +(1,12729:12248516,42489229:0,452978,115847 +r1,12778:14365341,42489229:2116825,568825,115847 +k1,12729:12248516,42489229:-2116825 +) +(1,12729:12248516,42489229:2116825,452978,115847 +k1,12729:12248516,42489229:3277 +h1,12729:14362064,42489229:0,411205,112570 +) +k1,12729:14542068,42489229:176727 +k1,12729:15737881,42489229:176728 +k1,12729:20538173,42489229:176727 +k1,12729:23224275,42489229:176728 +k1,12729:25631193,42489229:176728 +k1,12729:27661934,42489229:176727 +k1,12729:28466497,42489229:176728 +k1,12729:29846465,42489229:176727 +k1,12729:31563944,42489229:176728 +k1,12729:32583029,42489229:0 +) +(1,12730:6764466,43354309:25818563,513147,134348 +g1,12729:9726038,43354309 +g1,12729:11768139,43354309 +g1,12729:12626660,43354309 +g1,12729:13844974,43354309 +g1,12729:17617226,43354309 +g1,12729:18808015,43354309 +g1,12729:21188282,43354309 +g1,12729:24067934,43354309 +g1,12729:24883201,43354309 +g1,12729:26101515,43354309 +k1,12730:32583029,43354309:3317436 +g1,12730:32583029,43354309 +) +] +g1,12778:32583029,43488657 +) +] +(1,12778:32583029,45706769:0,0,0 +g1,12778:32583029,45706769 +) +) +] +(1,12778:6630773,47279633:25952256,0,0 +h1,12778:6630773,47279633:25952256,0,0 +) +] +(1,12778:4262630,4025873:0,0,0 +[1,12778:-473656,4025873:0,0,0 +(1,12778:-473656,-710413:0,0,0 +(1,12778:-473656,-710413:0,0,0 +g1,12778:-473656,-710413 +) +g1,12778:-473656,-710413 +) +] +) +] +!27898 +}206 +Input:1910:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1911:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1912:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1913:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1914:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1915:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1916:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1917:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1918:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1919:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1920:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1921:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1922:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1923:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1924:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1925:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1926:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1927:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1928:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1929:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1930:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1931:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1932:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1933:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!2268 +{207 +[1,12808:4262630,47279633:28320399,43253760,0 +(1,12808:4262630,4025873:0,0,0 +[1,12808:-473656,4025873:0,0,0 +(1,12808:-473656,-710413:0,0,0 +(1,12808:-473656,-644877:0,0,0 +k1,12808:-473656,-644877:-65536 ) -(1,13279:-473656,4736287:0,0,0 -k1,13279:-473656,4736287:5209943 +(1,12808:-473656,4736287:0,0,0 +k1,12808:-473656,4736287:5209943 ) -g1,13279:-473656,-710413 +g1,12808:-473656,-710413 ) ] ) -[1,13279:6630773,47279633:25952256,43253760,0 -[1,13279:6630773,4812305:25952256,786432,0 -(1,13279:6630773,4812305:25952256,513147,126483 -(1,13279:6630773,4812305:25952256,513147,126483 -g1,13279:3078558,4812305 -[1,13279:3078558,4812305:0,0,0 -(1,13279:3078558,2439708:0,1703936,0 -k1,13279:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,13279:2537886,2439708:1179648,16384,0 +[1,12808:6630773,47279633:25952256,43253760,0 +[1,12808:6630773,4812305:25952256,786432,0 +(1,12808:6630773,4812305:25952256,513147,126483 +(1,12808:6630773,4812305:25952256,513147,126483 +g1,12808:3078558,4812305 +[1,12808:3078558,4812305:0,0,0 +(1,12808:3078558,2439708:0,1703936,0 +k1,12808:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,12808:2537886,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,13279:3078558,1915420:16384,1179648,0 +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,12808:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] ) ) ) ] -[1,13279:3078558,4812305:0,0,0 -(1,13279:3078558,2439708:0,1703936,0 -g1,13279:29030814,2439708 -g1,13279:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,13279:36151628,1915420:16384,1179648,0 +[1,12808:3078558,4812305:0,0,0 +(1,12808:3078558,2439708:0,1703936,0 +g1,12808:29030814,2439708 +g1,12808:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,12808:36151628,1915420:16384,1179648,0 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,13279:37855564,2439708:1179648,16384,0 +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,12808:37855564,2439708:1179648,16384,0 ) ) -k1,13279:3078556,2439708:-34777008 +k1,12808:3078556,2439708:-34777008 ) ] -[1,13279:3078558,4812305:0,0,0 -(1,13279:3078558,49800853:0,16384,2228224 -k1,13279:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,13279:2537886,49800853:1179648,16384,0 +[1,12808:3078558,4812305:0,0,0 +(1,12808:3078558,49800853:0,16384,2228224 +k1,12808:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,12808:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,13279:3078558,51504789:16384,1179648,0 +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,12808:3078558,51504789:16384,1179648,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 ) ] ) ) ) ] -[1,13279:3078558,4812305:0,0,0 -(1,13279:3078558,49800853:0,16384,2228224 -g1,13279:29030814,49800853 -g1,13279:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,13279:36151628,51504789:16384,1179648,0 +[1,12808:3078558,4812305:0,0,0 +(1,12808:3078558,49800853:0,16384,2228224 +g1,12808:29030814,49800853 +g1,12808:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,12808:36151628,51504789:16384,1179648,0 ) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 ) ] ) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,13279:37855564,49800853:1179648,16384,0 +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,12808:37855564,49800853:1179648,16384,0 ) ) -k1,13279:3078556,49800853:-34777008 +k1,12808:3078556,49800853:-34777008 ) ] -g1,13279:6630773,4812305 -k1,13279:19540057,4812305:11713907 -g1,13279:21162728,4812305 -g1,13279:21985204,4812305 -g1,13279:24539797,4812305 -g1,13279:25949476,4812305 -g1,13279:28728857,4812305 -g1,13279:29852144,4812305 -) -) -] -[1,13279:6630773,45706769:25952256,40108032,0 -(1,13279:6630773,45706769:25952256,40108032,0 -(1,13279:6630773,45706769:0,0,0 -g1,13279:6630773,45706769 -) -[1,13279:6630773,45706769:25952256,40108032,0 -v1,13218:6630773,6254097:0,393216,0 -(1,13218:6630773,11672961:25952256,5812080,0 -g1,13218:6630773,11672961 -g1,13218:6303093,11672961 -r1,13279:6401397,11672961:98304,5812080,0 -g1,13218:6600626,11672961 -g1,13218:6797234,11672961 -[1,13218:6797234,11672961:25785795,5812080,0 -(1,13216:6797234,6616170:25785795,755289,196608 -(1,13215:6797234,6616170:0,755289,196608 -r1,13279:8134168,6616170:1336934,951897,196608 -k1,13215:6797234,6616170:-1336934 -) -(1,13215:6797234,6616170:1336934,755289,196608 -) -k1,13215:8301761,6616170:167593 -k1,13215:8629441,6616170:327680 -k1,13215:9424870,6616170:167594 -k1,13215:10611548,6616170:167593 -k1,13215:13608987,6616170:167594 -k1,13215:14435872,6616170:167593 -k1,13215:17274713,6616170:167594 -k1,13215:21208005,6616170:167593 -k1,13215:24390910,6616170:167594 -k1,13215:25241388,6616170:167593 -k1,13215:27107020,6616170:167594 -k1,13215:29010006,6616170:167593 -k1,13215:32583029,6616170:0 -) -(1,13216:6797234,7457658:25785795,505283,134348 -g1,13215:10486910,7457658 -g1,13215:12421532,7457658 -(1,13215:12421532,7457658:0,452978,115847 -r1,13279:15241781,7457658:2820249,568825,115847 -k1,13215:12421532,7457658:-2820249 -) -(1,13215:12421532,7457658:2820249,452978,115847 -k1,13215:12421532,7457658:3277 -h1,13215:15238504,7457658:0,411205,112570 -) -g1,13215:15441010,7457658 -g1,13215:17686273,7457658 -g1,13215:18416999,7457658 -g1,13215:20486626,7457658 -g1,13215:21337283,7457658 -g1,13215:24296888,7457658 -g1,13215:26814125,7457658 -g1,13215:28407305,7457658 -(1,13215:28407305,7457658:0,452978,115847 -r1,13279:30875842,7457658:2468537,568825,115847 -k1,13215:28407305,7457658:-2468537 -) -(1,13215:28407305,7457658:2468537,452978,115847 -k1,13215:28407305,7457658:3277 -h1,13215:30872565,7457658:0,411205,112570 -) -k1,13216:32583029,7457658:1533517 -g1,13216:32583029,7457658 -) -(1,13218:6797234,8299146:25785795,513147,134348 -h1,13217:6797234,8299146:983040,0,0 -k1,13217:10448073,8299146:269837 -(1,13217:10448073,8299146:0,452978,115847 -r1,13279:13268322,8299146:2820249,568825,115847 -k1,13217:10448073,8299146:-2820249 -) -(1,13217:10448073,8299146:2820249,452978,115847 -k1,13217:10448073,8299146:3277 -h1,13217:13265045,8299146:0,411205,112570 -) -k1,13217:13538158,8299146:269836 -k1,13217:14339492,8299146:269837 -k1,13217:17369705,8299146:269837 -k1,13217:21122124,8299146:269836 -k1,13217:23089999,8299146:269837 -k1,13217:25095229,8299146:269837 -k1,13217:27352772,8299146:269836 -k1,13217:29557232,8299146:269837 -k1,13217:32583029,8299146:0 -) -(1,13218:6797234,9140634:25785795,513147,134348 -k1,13217:8491941,9140634:300756 -k1,13217:10544473,9140634:300755 -k1,13217:12973838,9140634:300756 -k1,13217:17059297,9140634:300755 -k1,13217:17829946,9140634:300756 -k1,13217:19803836,9140634:300756 -k1,13217:20875294,9140634:300755 -k1,13217:24403043,9140634:300756 -k1,13217:25939152,9140634:300755 -k1,13217:27937946,9140634:300756 -k1,13217:30173325,9140634:300756 -k1,13217:31005577,9140634:300755 -k1,13217:32583029,9140634:0 -) -(1,13218:6797234,9982122:25785795,505283,126483 -k1,13217:7809568,9982122:250806 -k1,13217:11241492,9982122:250806 -k1,13217:16355726,9982122:250807 -k1,13217:17292694,9982122:250806 -k1,13217:18562585,9982122:250806 -k1,13217:22134100,9982122:250806 -k1,13217:25593549,9982122:250806 -k1,13217:28890469,9982122:250807 -k1,13217:30132835,9982122:250806 -k1,13217:31896867,9982122:250806 -k1,13217:32583029,9982122:0 -) -(1,13218:6797234,10823610:25785795,513147,134348 -k1,13217:8005122,10823610:188803 -k1,13217:10672497,10823610:188803 -k1,13217:12871945,10823610:188803 -k1,13217:14008399,10823610:188803 -k1,13217:15216287,10823610:188803 -k1,13217:18586208,10823610:188803 -k1,13217:22576754,10823610:188803 -k1,13217:25478092,10823610:188803 -k1,13217:26614546,10823610:188803 -k1,13217:28737972,10823610:188803 -k1,13217:29945860,10823610:188803 -k1,13217:32583029,10823610:0 -) -(1,13218:6797234,11665098:25785795,505283,7863 -k1,13218:32583029,11665098:23624418 -g1,13218:32583029,11665098 -) -] -g1,13218:32583029,11672961 -) -h1,13218:6630773,11672961:0,0,0 -v1,13221:6630773,12947819:0,393216,0 -(1,13222:6630773,17710191:25952256,5155588,0 -g1,13222:6630773,17710191 -g1,13222:6303093,17710191 -r1,13279:6401397,17710191:98304,5155588,0 -g1,13222:6600626,17710191 -g1,13222:6797234,17710191 -[1,13222:6797234,17710191:25785795,5155588,0 -(1,13222:6797234,13368403:25785795,813800,267386 -(1,13221:6797234,13368403:0,813800,267386 -r1,13279:8134168,13368403:1336934,1081186,267386 -k1,13221:6797234,13368403:-1336934 -) -(1,13221:6797234,13368403:1336934,813800,267386 -) -k1,13221:8428993,13368403:294825 -k1,13221:8756673,13368403:327680 -k1,13221:10513605,13368403:294824 -k1,13221:11827515,13368403:294825 -k1,13221:13511702,13368403:294824 -k1,13221:14798087,13368403:294825 -k1,13221:17131082,13368403:294825 -k1,13221:18041944,13368403:294824 -k1,13221:19355854,13368403:294825 -k1,13221:21638385,13368403:294824 -k1,13221:22620683,13368403:294825 -k1,13221:24875034,13368403:294825 -k1,13221:27643187,13368403:294824 -k1,13221:29222518,13368403:294825 -k1,13221:30536427,13368403:294824 -k1,13221:31923737,13368403:294825 -k1,13221:32583029,13368403:0 -) -(1,13222:6797234,14209891:25785795,513147,126483 -k1,13221:9765285,14209891:183426 -k1,13221:11094937,14209891:183427 -(1,13221:11094937,14209891:0,452978,115847 -r1,13279:13915186,14209891:2820249,568825,115847 -k1,13221:11094937,14209891:-2820249 -) -(1,13221:11094937,14209891:2820249,452978,115847 -k1,13221:11094937,14209891:3277 -h1,13221:13911909,14209891:0,411205,112570 -) -k1,13221:14098612,14209891:183426 -k1,13221:15473483,14209891:183426 -k1,13221:17999167,14209891:183427 -k1,13221:22576782,14209891:183426 -k1,13221:23569578,14209891:183426 -k1,13221:24772090,14209891:183427 -k1,13221:25642989,14209891:183426 -k1,13221:27999589,14209891:183426 -k1,13221:29287298,14209891:183427 -k1,13221:30218490,14209891:183426 -k1,13221:32583029,14209891:0 -) -(1,13222:6797234,15051379:25785795,513147,126483 -k1,13221:8198441,15051379:209762 -k1,13221:12255166,15051379:209762 -k1,13221:14042380,15051379:209762 -k1,13221:17971965,15051379:209762 -k1,13221:18841019,15051379:209762 -k1,13221:20069866,15051379:209762 -k1,13221:23109473,15051379:209762 -k1,13221:24002120,15051379:209762 -k1,13221:25278153,15051379:209762 -k1,13221:26147207,15051379:209762 -k1,13221:27376054,15051379:209762 -k1,13221:29239289,15051379:209762 -k1,13221:30838414,15051379:209762 -k1,13221:31664214,15051379:209762 -k1,13221:32583029,15051379:0 -) -(1,13222:6797234,15892867:25785795,505283,134348 -k1,13221:12104722,15892867:227792 -k1,13221:15267216,15892867:227792 -k1,13221:15953105,15892867:227792 -k1,13221:18361280,15892867:227792 -k1,13221:19336838,15892867:227792 -k1,13221:20982175,15892867:227793 -k1,13221:21826005,15892867:227792 -k1,13221:23710547,15892867:227792 -k1,13221:25222845,15892867:227792 -k1,13221:28021614,15892867:227792 -k1,13221:28900834,15892867:227792 -k1,13221:30147711,15892867:227792 -k1,13221:32583029,15892867:0 -) -(1,13222:6797234,16734355:25785795,513147,134348 -k1,13221:8369879,16734355:183282 -k1,13221:10130614,16734355:183283 -k1,13221:11827122,16734355:183282 -k1,13221:13029489,16734355:183282 -k1,13221:15200479,16734355:183283 -k1,13221:16071234,16734355:183282 -k1,13221:18214042,16734355:183282 -k1,13221:19604498,16734355:183283 -k1,13221:22137901,16734355:183282 -k1,13221:23453645,16734355:183282 -k1,13221:24703199,16734355:183283 -k1,13221:25634247,16734355:183282 -k1,13221:28593634,16734355:183282 -k1,13221:29392955,16734355:183283 -k1,13221:30595322,16734355:183282 -k1,13221:32583029,16734355:0 -) -(1,13222:6797234,17575843:25785795,513147,134348 -g1,13221:7683936,17575843 -g1,13221:10172993,17575843 -g1,13221:13150949,17575843 -g1,13221:14111706,17575843 -(1,13221:14111706,17575843:0,452978,115847 -r1,13279:16931955,17575843:2820249,568825,115847 -k1,13221:14111706,17575843:-2820249 -) -(1,13221:14111706,17575843:2820249,452978,115847 -k1,13221:14111706,17575843:3277 -h1,13221:16928678,17575843:0,411205,112570 -) -g1,13221:17131184,17575843 -g1,13221:19373170,17575843 -g1,13221:20591484,17575843 -g1,13221:22073908,17575843 -g1,13221:23662500,17575843 -g1,13221:24853289,17575843 -g1,13221:27257805,17575843 -g1,13221:28143196,17575843 -g1,13221:29113128,17575843 -k1,13222:32583029,17575843:223903 -g1,13222:32583029,17575843 -) -] -g1,13222:32583029,17710191 -) -h1,13222:6630773,17710191:0,0,0 -(1,13227:6630773,18985049:25952256,513147,134348 -h1,13226:6630773,18985049:983040,0,0 -k1,13226:10928187,18985049:321345 -k1,13226:13920779,18985049:321345 -k1,13226:17732571,18985049:321345 -k1,13226:19909896,18985049:321345 -k1,13226:20847279,18985049:321345 -k1,13226:22187709,18985049:321345 -k1,13226:25101002,18985049:321345 -k1,13226:28281027,18985049:321345 -k1,13226:30169993,18985049:321345 -k1,13226:32583029,18985049:0 -) -(1,13227:6630773,19826537:25952256,513147,126483 -k1,13226:7531401,19826537:249200 -k1,13226:9430799,19826537:249201 -k1,13226:12366320,19826537:249200 -k1,13226:15107200,19826537:249201 -k1,13226:15972438,19826537:249200 -k1,13226:17240724,19826537:249201 -k1,13226:20558320,19826537:249200 -k1,13226:23666200,19826537:249200 -k1,13226:25483022,19826537:249201 -k1,13226:27382419,19826537:249200 -k1,13226:30317941,19826537:249201 -k1,13226:31218569,19826537:249200 -k1,13227:32583029,19826537:0 -) -(1,13227:6630773,20668025:25952256,505283,126483 -k1,13226:8141276,20668025:248935 -k1,13226:10708219,20668025:248935 -k1,13226:11640039,20668025:248935 -k1,13226:12505012,20668025:248935 -k1,13226:14220643,20668025:248935 -k1,13226:17658560,20668025:248935 -k1,13226:18438993,20668025:248936 -k1,13226:22889441,20668025:248935 -k1,13226:23754414,20668025:248935 -k1,13226:25437277,20668025:248935 -k1,13226:26605027,20668025:248935 -k1,13226:29259133,20668025:248935 -(1,13226:29259133,20668025:0,452978,115847 -r1,13279:31375958,20668025:2116825,568825,115847 -k1,13226:29259133,20668025:-2116825 -) -(1,13226:29259133,20668025:2116825,452978,115847 -k1,13226:29259133,20668025:3277 -h1,13226:31372681,20668025:0,411205,112570 -) -k1,13226:31624893,20668025:248935 -k1,13227:32583029,20668025:0 -) -(1,13227:6630773,21509513:25952256,513147,134348 -k1,13226:7846349,21509513:225327 -k1,13226:10752754,21509513:225327 -k1,13226:14785067,21509513:225327 -k1,13226:17736692,21509513:225327 -k1,13226:19532236,21509513:225301 -k1,13226:20443725,21509513:225327 -k1,13226:21688137,21509513:225327 -k1,13226:24744619,21509513:225327 -k1,13226:27869914,21509513:225327 -k1,13226:29244087,21509513:225327 -k1,13226:30128706,21509513:225327 -k1,13227:32583029,21509513:0 -) -(1,13227:6630773,22351001:25952256,513147,134348 -(1,13226:6630773,22351001:0,452978,115847 -r1,13279:8747598,22351001:2116825,568825,115847 -k1,13226:6630773,22351001:-2116825 -) -(1,13226:6630773,22351001:2116825,452978,115847 -k1,13226:6630773,22351001:3277 -h1,13226:8744321,22351001:0,411205,112570 -) -k1,13226:8907072,22351001:159474 -k1,13226:10634167,22351001:159474 -k1,13226:12227569,22351001:159474 -k1,13226:12801847,22351001:159435 -k1,13226:13492818,22351001:159474 -k1,13226:16282252,22351001:159474 -k1,13226:17835677,22351001:159474 -(1,13226:17835677,22351001:0,452978,115847 -r1,13279:19249078,22351001:1413401,568825,115847 -k1,13226:17835677,22351001:-1413401 -) -(1,13226:17835677,22351001:1413401,452978,115847 -k1,13226:17835677,22351001:3277 -h1,13226:19245801,22351001:0,411205,112570 -) -k1,13226:19408552,22351001:159474 -k1,13226:20759471,22351001:159474 -(1,13226:20759471,22351001:0,452978,122846 -r1,13279:21821160,22351001:1061689,575824,122846 -k1,13226:20759471,22351001:-1061689 -) -(1,13226:20759471,22351001:1061689,452978,122846 -k1,13226:20759471,22351001:3277 -h1,13226:21817883,22351001:0,411205,112570 -) -k1,13226:21980634,22351001:159474 -k1,13226:23331553,22351001:159474 -k1,13226:24647043,22351001:159435 -k1,13226:25338014,22351001:159474 -k1,13226:28587511,22351001:159474 -k1,13226:29556355,22351001:159474 -k1,13226:31213982,22351001:159474 -h1,13226:32409359,22351001:0,0,0 -k1,13227:32583029,22351001:0 -k1,13227:32583029,22351001:0 -) -(1,13246:6630773,28078836:25952256,4986239,0 -k1,13246:6761220,28078836:130447 -(1,13228:6761220,28078836:0,0,0 -g1,13228:6761220,28078836 -g1,13228:6761220,28078836 -g1,13228:6433540,28078836 -(1,13228:6433540,28078836:0,0,0 -) -g1,13228:6761220,28078836 -) -(1,13244:6761220,28078836:25691363,4986239,0 -g1,13244:8758081,28078836 -(1,13244:8758081,24093982:0,0,0 -(1,13244:8758081,24093982:0,0,0 -g1,13230:8758081,24093982 -(1,13231:8758081,24093982:0,0,0 -(1,13231:8758081,24093982:0,0,0 -g1,13231:8758081,24093982 -g1,13231:8758081,24093982 -g1,13231:8758081,24093982 -g1,13231:8758081,24093982 -g1,13231:8758081,24093982 -(1,13231:8758081,24093982:0,0,0 -(1,13231:8758081,24093982:1751777,454754,7077 -(1,13231:8758081,24093982:1751777,454754,7077 -) -g1,13231:10509858,24093982 -) -) -g1,13231:8758081,24093982 -g1,13231:8758081,24093982 -) -) -g1,13231:8758081,24093982 -(1,13232:8758081,24093982:0,0,0 -(1,13232:8758081,24093982:0,0,0 -g1,13232:8758081,24093982 -g1,13232:8758081,24093982 -g1,13232:8758081,24093982 -g1,13232:8758081,24093982 -g1,13232:8758081,24093982 -(1,13232:8758081,24093982:0,0,0 -(1,13232:8758081,24093982:3574334,454754,7077 -(1,13232:8758081,24093982:3574334,454754,7077 -) -g1,13232:12332415,24093982 -) -) -g1,13232:8758081,24093982 -g1,13232:8758081,24093982 -) -) -(1,13233:8758081,24093982:0,0,0 -(1,13233:8758081,24093982:0,0,0 -g1,13233:8758081,24093982 -g1,13233:8758081,24093982 -g1,13233:8758081,24093982 -g1,13233:8758081,24093982 -g1,13233:8758081,24093982 -(1,13233:8758081,24093982:0,0,0 -(1,13233:8758081,24093982:1272717,408008,104590 -(1,13233:8758081,24093982:1272717,408008,104590 -(1,13233:8758081,24093982:0,408008,104590 -r1,13279:10030798,24093982:1272717,512598,104590 -k1,13233:8758081,24093982:-1272717 -) -(1,13233:8758081,24093982:1272717,408008,104590 -k1,13233:8758081,24093982:3277 -h1,13233:10027521,24093982:0,370085,101313 -) -) -g1,13233:10030798,24093982 -) -) -g1,13233:8758081,24093982 -g1,13233:8758081,24093982 -) -) -g1,13233:8758081,24093982 -(1,13234:8758081,24093982:0,0,0 -(1,13234:8758081,24093982:0,0,0 -g1,13234:8758081,24093982 -g1,13234:8758081,24093982 -g1,13234:8758081,24093982 -g1,13234:8758081,24093982 -g1,13234:8758081,24093982 -(1,13234:8758081,24093982:0,0,0 -(1,13234:8758081,24093982:5422007,454754,120913 -(1,13234:8758081,24093982:5422007,454754,120913 -(1,13234:8758081,24093982:0,408008,104590 -r1,13279:9397716,24093982:639635,512598,104590 -k1,13234:8758081,24093982:-639635 -) -(1,13234:8758081,24093982:639635,408008,104590 -k1,13234:8758081,24093982:3277 -h1,13234:9394439,24093982:0,370085,101313 -) -g1,13234:9577023,24093982 -g1,13234:11487464,24093982 -$1,13234:11487464,24093982 -$1,13234:12094983,24093982 -g1,13234:12274290,24093982 -(1,13234:12274290,24093982:0,408008,110889 -r1,13279:14180088,24093982:1905798,518897,110889 -k1,13234:12274290,24093982:-1905798 -) -(1,13234:12274290,24093982:1905798,408008,110889 -k1,13234:12274290,24093982:3277 -h1,13234:14176811,24093982:0,370085,101313 -) -) -g1,13234:14180088,24093982 -) -) -g1,13234:8758081,24093982 -g1,13234:8758081,24093982 -) -) -g1,13234:8758081,24093982 -(1,13235:8758081,24093982:0,0,0 -(1,13235:8758081,24093982:0,0,0 -g1,13235:8758081,24093982 -g1,13235:8758081,24093982 -g1,13235:8758081,24093982 -g1,13235:8758081,24093982 -g1,13235:8758081,24093982 -(1,13235:8758081,24093982:0,0,0 -(1,13235:8758081,24093982:1905798,408008,104590 -(1,13235:8758081,24093982:1905798,408008,104590 -(1,13235:8758081,24093982:0,408008,104590 -r1,13279:10663879,24093982:1905798,512598,104590 -k1,13235:8758081,24093982:-1905798 -) -(1,13235:8758081,24093982:1905798,408008,104590 -k1,13235:8758081,24093982:3277 -h1,13235:10660602,24093982:0,370085,101313 -) -) -g1,13235:10663879,24093982 -) -) -g1,13235:8758081,24093982 -g1,13235:8758081,24093982 -) -) -g1,13235:8758081,24093982 -(1,13236:8758081,24093982:0,0,0 -(1,13236:8758081,24093982:0,0,0 -g1,13236:8758081,24093982 -g1,13236:8758081,24093982 -g1,13236:8758081,24093982 -g1,13236:8758081,24093982 -g1,13236:8758081,24093982 -(1,13236:8758081,24093982:0,0,0 -(1,13236:8758081,24093982:6252997,454754,104590 -(1,13236:8758081,24093982:6252997,454754,104590 -g1,13236:10089904,24093982 -g1,13236:12634995,24093982 -$1,13236:12634995,24093982 -$1,13236:13242514,24093982 -g1,13236:13421821,24093982 -(1,13236:13421821,24093982:0,373362,104590 -r1,13279:15011078,24093982:1589257,477952,104590 -k1,13236:13421821,24093982:-1589257 -) -(1,13236:13421821,24093982:1589257,373362,104590 -k1,13236:13421821,24093982:3277 -h1,13236:15007801,24093982:0,370085,101313 -) -) -g1,13236:15011078,24093982 -) -) -g1,13236:8758081,24093982 -g1,13236:8758081,24093982 -) -) -g1,13236:8758081,24093982 -(1,13237:8758081,24093982:0,0,0 -(1,13237:8758081,24093982:0,0,0 -g1,13237:8758081,24093982 -g1,13237:8758081,24093982 -g1,13237:8758081,24093982 -g1,13237:8758081,24093982 -g1,13237:8758081,24093982 -(1,13237:8758081,24093982:0,0,0 -(1,13237:8758081,24093982:2550076,454754,120913 -(1,13237:8758081,24093982:2550076,454754,120913 -(1,13237:8758081,24093982:0,408008,104590 -r1,13279:9397716,24093982:639635,512598,104590 -k1,13237:8758081,24093982:-639635 -) -(1,13237:8758081,24093982:639635,408008,104590 -k1,13237:8758081,24093982:3277 -h1,13237:9394439,24093982:0,370085,101313 -) -g1,13237:9577023,24093982 -) -g1,13237:11308157,24093982 -) -) -g1,13237:8758081,24093982 -g1,13237:8758081,24093982 -) -) -g1,13237:8758081,24093982 -g1,13238:8758081,24093982 -g1,13238:8758081,24093982 -g1,13238:8758081,24093982 -g1,13238:8758081,24093982 -g1,13238:8758081,24093982 -g1,13238:8758081,24093982 -g1,13239:8758081,24093982 -g1,13239:8758081,24093982 -g1,13239:8758081,24093982 -g1,13239:8758081,24093982 -g1,13239:8758081,24093982 -g1,13239:8758081,24093982 -g1,13240:8758081,24093982 -g1,13240:8758081,24093982 -g1,13240:8758081,24093982 -g1,13240:8758081,24093982 -g1,13240:8758081,24093982 -g1,13240:8758081,24093982 -g1,13241:8758081,24093982 -g1,13241:8758081,24093982 -g1,13241:8758081,24093982 -g1,13241:8758081,24093982 -g1,13241:8758081,24093982 -g1,13241:8758081,24093982 -g1,13242:8758081,24093982 -g1,13242:8758081,24093982 -g1,13242:8758081,24093982 -g1,13242:8758081,24093982 -g1,13242:8758081,24093982 -g1,13242:8758081,24093982 -g1,13243:8758081,24093982 -g1,13243:8758081,24093982 -g1,13243:8758081,24093982 -g1,13243:8758081,24093982 -g1,13243:8758081,24093982 -g1,13243:8758081,24093982 -g1,13244:8758081,24093982 -g1,13244:8758081,24093982 -) -g1,13244:8758081,24093982 -) -) -g1,13246:32452583,28078836 -k1,13246:32583029,28078836:130446 -) -(1,13250:6630773,29462036:25952256,513147,134348 -h1,13249:6630773,29462036:983040,0,0 -k1,13249:8906182,29462036:250347 -k1,13249:10175614,29462036:250347 -k1,13249:11810081,29462036:250347 -k1,13249:14721845,29462036:250347 -k1,13249:15840544,29462036:250347 -k1,13249:18655970,29462036:250347 -k1,13249:19925403,29462036:250348 -k1,13249:22163457,29462036:250347 -k1,13249:23101277,29462036:250347 -k1,13249:25311150,29462036:250347 -(1,13249:25311150,29462036:0,459977,115847 -r1,13279:26372839,29462036:1061689,575824,115847 -k1,13249:25311150,29462036:-1061689 -) -(1,13249:25311150,29462036:1061689,459977,115847 -k1,13249:25311150,29462036:3277 -h1,13249:26369562,29462036:0,411205,112570 -) -k1,13249:26623186,29462036:250347 -k1,13249:28441154,29462036:250347 -k1,13249:30189654,29462036:250347 -h1,13249:31385031,29462036:0,0,0 -k1,13249:31635378,29462036:250347 -k1,13249:32583029,29462036:0 -) -(1,13250:6630773,30303524:25952256,513147,134348 -k1,13249:7212514,30303524:225881 -k1,13249:11011417,30303524:225880 -k1,13249:14727745,30303524:225881 -k1,13249:15431383,30303524:225881 -k1,13249:16343426,30303524:225881 -k1,13249:18644831,30303524:225880 -k1,13249:20442265,30303524:225881 -k1,13249:21477516,30303524:225881 -k1,13249:24021405,30303524:225881 -k1,13249:25238846,30303524:225881 -k1,13249:27670013,30303524:225880 -k1,13249:30454420,30303524:225881 -k1,13249:32583029,30303524:0 -) -(1,13250:6630773,31145012:25952256,513147,126483 -k1,13249:10167790,31145012:256285 -(1,13249:10167790,31145012:0,414482,115847 -r1,13279:11932903,31145012:1765113,530329,115847 -k1,13249:10167790,31145012:-1765113 -) -(1,13249:10167790,31145012:1765113,414482,115847 -k1,13249:10167790,31145012:3277 -h1,13249:11929626,31145012:0,411205,112570 -) -k1,13249:12362857,31145012:256284 -k1,13249:13638227,31145012:256285 -k1,13249:17215220,31145012:256284 -k1,13249:18158978,31145012:256285 -k1,13249:20402969,31145012:256284 -k1,13249:21791716,31145012:256285 -k1,13249:22795766,31145012:256284 -k1,13249:26402907,31145012:256285 -k1,13249:27125152,31145012:256284 -k1,13249:30185067,31145012:256285 -k1,13250:32583029,31145012:0 -) -(1,13250:6630773,31986500:25952256,513147,126483 -(1,13249:6630773,31986500:0,452978,115847 -r1,13279:8747598,31986500:2116825,568825,115847 -k1,13249:6630773,31986500:-2116825 -) -(1,13249:6630773,31986500:2116825,452978,115847 -k1,13249:6630773,31986500:3277 -h1,13249:8744321,31986500:0,411205,112570 -) -k1,13249:8966313,31986500:218715 -k1,13249:9946555,31986500:218714 -k1,13249:12430850,31986500:218715 -k1,13249:14561905,31986500:218714 -k1,13249:15432048,31986500:218715 -k1,13249:16669847,31986500:218714 -k1,13249:19308807,31986500:218715 -k1,13249:19883381,31986500:218714 -k1,13249:21684135,31986500:218715 -k1,13249:22562141,31986500:218714 -k1,13249:23799941,31986500:218715 -k1,13249:26336663,31986500:218714 -k1,13249:28069915,31986500:218715 -k1,13249:29480074,31986500:218714 -k1,13249:30717874,31986500:218715 -k1,13250:32583029,31986500:0 -) -(1,13250:6630773,32827988:25952256,505283,134348 -g1,13249:9801404,32827988 -g1,13249:11156688,32827988 -k1,13250:32583028,32827988:18206556 -g1,13250:32583028,32827988 -) -v1,13252:6630773,33927536:0,393216,0 -(1,13273:6630773,44235303:25952256,10700983,196608 -g1,13273:6630773,44235303 -g1,13273:6630773,44235303 -g1,13273:6434165,44235303 -(1,13273:6434165,44235303:0,10700983,196608 -r1,13279:32779637,44235303:26345472,10897591,196608 -k1,13273:6434165,44235303:-26345472 -) -(1,13273:6434165,44235303:26345472,10700983,196608 -[1,13273:6630773,44235303:25952256,10504375,0 -(1,13254:6630773,34141446:25952256,410518,101187 -(1,13253:6630773,34141446:0,0,0 -g1,13253:6630773,34141446 -g1,13253:6630773,34141446 -g1,13253:6303093,34141446 -(1,13253:6303093,34141446:0,0,0 -) -g1,13253:6630773,34141446 -) -g1,13254:7895356,34141446 -g1,13254:8843794,34141446 -g1,13254:11372959,34141446 -g1,13254:12005251,34141446 -g1,13254:13902125,34141446 -g1,13254:14534417,34141446 -g1,13254:18328167,34141446 -g1,13254:19908896,34141446 -g1,13254:20541188,34141446 -h1,13254:22121916,34141446:0,0,0 -k1,13254:32583029,34141446:10461113 -g1,13254:32583029,34141446 -) -(1,13255:6630773,34807624:25952256,410518,101187 -h1,13255:6630773,34807624:0,0,0 -g1,13255:8211502,34807624 -g1,13255:9159940,34807624 -k1,13255:9159940,34807624:0 -h1,13255:12005251,34807624:0,0,0 -k1,13255:32583029,34807624:20577778 -g1,13255:32583029,34807624 -) -(1,13272:6630773,35473802:25952256,388497,9436 -(1,13257:6630773,35473802:0,0,0 -g1,13257:6630773,35473802 -g1,13257:6630773,35473802 -g1,13257:6303093,35473802 -(1,13257:6303093,35473802:0,0,0 -) -g1,13257:6630773,35473802 -) -g1,13272:7579210,35473802 -g1,13272:9792230,35473802 -g1,13272:10108376,35473802 -h1,13272:13269833,35473802:0,0,0 -k1,13272:32583029,35473802:19313196 -g1,13272:32583029,35473802 -) -(1,13272:6630773,36139980:25952256,404226,101187 -h1,13272:6630773,36139980:0,0,0 -g1,13272:7579210,36139980 -g1,13272:9159939,36139980 -g1,13272:9792231,36139980 -g1,13272:11689105,36139980 -g1,13272:12321397,36139980 -h1,13272:15482854,36139980:0,0,0 -k1,13272:32583030,36139980:17100176 -g1,13272:32583030,36139980 -) -(1,13272:6630773,36806158:25952256,379060,0 -h1,13272:6630773,36806158:0,0,0 -h1,13272:7263064,36806158:0,0,0 -k1,13272:32583028,36806158:25319964 -g1,13272:32583028,36806158 -) -(1,13272:6630773,37472336:25952256,410518,101187 -h1,13272:6630773,37472336:0,0,0 -g1,13272:7579210,37472336 -g1,13272:7895356,37472336 -g1,13272:8211502,37472336 -g1,13272:8527648,37472336 -g1,13272:8843794,37472336 -g1,13272:9159940,37472336 -g1,13272:9476086,37472336 -g1,13272:9792232,37472336 -g1,13272:10108378,37472336 -g1,13272:10424524,37472336 -g1,13272:10740670,37472336 -g1,13272:11056816,37472336 -g1,13272:11372962,37472336 -g1,13272:11689108,37472336 -g1,13272:12637545,37472336 -g1,13272:13902128,37472336 -g1,13272:14850565,37472336 -g1,13272:15799002,37472336 -g1,13272:16115148,37472336 -g1,13272:16431294,37472336 -g1,13272:17695877,37472336 -g1,13272:18012023,37472336 -g1,13272:18328169,37472336 -g1,13272:18644315,37472336 -h1,13272:19592752,37472336:0,0,0 -k1,13272:32583029,37472336:12990277 -g1,13272:32583029,37472336 -) -(1,13272:6630773,38138514:25952256,404226,101187 -h1,13272:6630773,38138514:0,0,0 -g1,13272:7579210,38138514 -g1,13272:8211502,38138514 -g1,13272:10108376,38138514 -g1,13272:10424522,38138514 -g1,13272:10740668,38138514 -g1,13272:11056814,38138514 -g1,13272:11372960,38138514 -g1,13272:11689106,38138514 -g1,13272:12005252,38138514 -g1,13272:12637544,38138514 -g1,13272:12953690,38138514 -g1,13272:13269836,38138514 -g1,13272:13585982,38138514 -g1,13272:13902128,38138514 -g1,13272:15799002,38138514 -g1,13272:17695876,38138514 -h1,13272:19592750,38138514:0,0,0 -k1,13272:32583029,38138514:12990279 -g1,13272:32583029,38138514 -) -(1,13272:6630773,38804692:25952256,388497,9436 -h1,13272:6630773,38804692:0,0,0 -g1,13272:7579210,38804692 -g1,13272:9792230,38804692 -g1,13272:10108376,38804692 -g1,13272:10424522,38804692 -g1,13272:10740668,38804692 -g1,13272:11056814,38804692 -g1,13272:11372960,38804692 -g1,13272:11689106,38804692 -g1,13272:12005252,38804692 -g1,13272:12321398,38804692 -g1,13272:12637544,38804692 -g1,13272:12953690,38804692 -g1,13272:13269836,38804692 -g1,13272:13585982,38804692 -g1,13272:13902128,38804692 -g1,13272:14218274,38804692 -g1,13272:14534420,38804692 -g1,13272:14850566,38804692 -g1,13272:15166712,38804692 -g1,13272:15482858,38804692 -g1,13272:15799004,38804692 -g1,13272:17695878,38804692 -h1,13272:19592752,38804692:0,0,0 -k1,13272:32583029,38804692:12990277 -g1,13272:32583029,38804692 -) -(1,13272:6630773,39470870:25952256,404226,101187 -h1,13272:6630773,39470870:0,0,0 -g1,13272:7579210,39470870 -g1,13272:8211502,39470870 -g1,13272:11689105,39470870 -g1,13272:12005251,39470870 -g1,13272:12637543,39470870 -g1,13272:12953689,39470870 -g1,13272:13269835,39470870 -g1,13272:13585981,39470870 -g1,13272:15799001,39470870 -g1,13272:17695875,39470870 -h1,13272:19592749,39470870:0,0,0 -k1,13272:32583029,39470870:12990280 -g1,13272:32583029,39470870 -) -(1,13272:6630773,40137048:25952256,379060,0 -h1,13272:6630773,40137048:0,0,0 -h1,13272:7263064,40137048:0,0,0 -k1,13272:32583028,40137048:25319964 -g1,13272:32583028,40137048 -) -(1,13272:6630773,40803226:25952256,388497,101187 -h1,13272:6630773,40803226:0,0,0 -g1,13272:7579210,40803226 -g1,13272:9476084,40803226 -g1,13272:9792230,40803226 -h1,13272:12953687,40803226:0,0,0 -k1,13272:32583029,40803226:19629342 -g1,13272:32583029,40803226 -) -(1,13272:6630773,41469404:25952256,404226,101187 -h1,13272:6630773,41469404:0,0,0 -g1,13272:7579210,41469404 -g1,13272:9159939,41469404 -g1,13272:9792231,41469404 -h1,13272:12953688,41469404:0,0,0 -k1,13272:32583028,41469404:19629340 -g1,13272:32583028,41469404 -) -(1,13272:6630773,42135582:25952256,379060,0 -h1,13272:6630773,42135582:0,0,0 -h1,13272:7263064,42135582:0,0,0 -k1,13272:32583028,42135582:25319964 -g1,13272:32583028,42135582 -) -(1,13272:6630773,42801760:25952256,410518,101187 -h1,13272:6630773,42801760:0,0,0 -g1,13272:7579210,42801760 -g1,13272:7895356,42801760 -g1,13272:8211502,42801760 -g1,13272:8527648,42801760 -g1,13272:8843794,42801760 -g1,13272:9159940,42801760 -g1,13272:9476086,42801760 -g1,13272:9792232,42801760 -g1,13272:10108378,42801760 -g1,13272:10424524,42801760 -g1,13272:10740670,42801760 -g1,13272:11056816,42801760 -g1,13272:11372962,42801760 -g1,13272:11689108,42801760 -g1,13272:12637545,42801760 -g1,13272:13902128,42801760 -g1,13272:14850565,42801760 -g1,13272:15799002,42801760 -g1,13272:16115148,42801760 -g1,13272:16431294,42801760 -g1,13272:17695877,42801760 -g1,13272:18012023,42801760 -g1,13272:18328169,42801760 -g1,13272:18644315,42801760 -h1,13272:19592752,42801760:0,0,0 -k1,13272:32583029,42801760:12990277 -g1,13272:32583029,42801760 -) -(1,13272:6630773,43467938:25952256,388497,9436 -h1,13272:6630773,43467938:0,0,0 -g1,13272:7579210,43467938 -g1,13272:9792230,43467938 -g1,13272:10108376,43467938 -g1,13272:10424522,43467938 -g1,13272:10740668,43467938 -g1,13272:11056814,43467938 -g1,13272:11372960,43467938 -g1,13272:11689106,43467938 -g1,13272:12005252,43467938 -g1,13272:12321398,43467938 -g1,13272:12637544,43467938 -g1,13272:12953690,43467938 -g1,13272:13269836,43467938 -g1,13272:13585982,43467938 -g1,13272:13902128,43467938 -g1,13272:14218274,43467938 -g1,13272:14534420,43467938 -g1,13272:14850566,43467938 -g1,13272:15166712,43467938 -g1,13272:15482858,43467938 -g1,13272:15799004,43467938 -g1,13272:17695878,43467938 -h1,13272:19592752,43467938:0,0,0 -k1,13272:32583029,43467938:12990277 -g1,13272:32583029,43467938 -) -(1,13272:6630773,44134116:25952256,404226,101187 -h1,13272:6630773,44134116:0,0,0 -g1,13272:7579210,44134116 -g1,13272:8211502,44134116 -g1,13272:11689105,44134116 -g1,13272:12005251,44134116 -g1,13272:12637543,44134116 -g1,13272:12953689,44134116 -g1,13272:13269835,44134116 -g1,13272:13585981,44134116 -g1,13272:13902127,44134116 -g1,13272:15799001,44134116 -g1,13272:17695875,44134116 -h1,13272:19592749,44134116:0,0,0 -k1,13272:32583029,44134116:12990280 -g1,13272:32583029,44134116 -) -] -) -g1,13273:32583029,44235303 -g1,13273:6630773,44235303 -g1,13273:6630773,44235303 -g1,13273:32583029,44235303 -g1,13273:32583029,44235303 -) -h1,13273:6630773,44431911:0,0,0 -(1,13277:6630773,45706769:25952256,505283,134348 -h1,13276:6630773,45706769:983040,0,0 -g1,13276:8766591,45706769 -g1,13276:10058305,45706769 -(1,13276:10058305,45706769:0,452978,115847 -r1,13279:13230265,45706769:3171960,568825,115847 -k1,13276:10058305,45706769:-3171960 -) -(1,13276:10058305,45706769:3171960,452978,115847 -k1,13276:10058305,45706769:3277 -h1,13276:13226988,45706769:0,411205,112570 -) -g1,13276:13429494,45706769 -g1,13276:14438093,45706769 -g1,13276:16104018,45706769 -g1,13276:17322332,45706769 -g1,13276:19956879,45706769 -g1,13276:21347553,45706769 -g1,13276:24183951,45706769 -k1,13277:32583029,45706769:5907399 -g1,13277:32583029,45706769 -) -] -(1,13279:32583029,45706769:0,0,0 -g1,13279:32583029,45706769 -) -) -] -(1,13279:6630773,47279633:25952256,0,0 -h1,13279:6630773,47279633:25952256,0,0 -) -] -(1,13279:4262630,4025873:0,0,0 -[1,13279:-473656,4025873:0,0,0 -(1,13279:-473656,-710413:0,0,0 -(1,13279:-473656,-710413:0,0,0 -g1,13279:-473656,-710413 -) -g1,13279:-473656,-710413 -) -] -) -] -!33262 -}227 -Input:2024:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2025:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2026:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2027:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!388 -{228 -[1,13381:4262630,47279633:28320399,43253760,0 -(1,13381:4262630,4025873:0,0,0 -[1,13381:-473656,4025873:0,0,0 -(1,13381:-473656,-710413:0,0,0 -(1,13381:-473656,-644877:0,0,0 -k1,13381:-473656,-644877:-65536 +g1,12808:6630773,4812305 +k1,12808:19540057,4812305:11713907 +g1,12808:21162728,4812305 +g1,12808:21985204,4812305 +g1,12808:24539797,4812305 +g1,12808:25949476,4812305 +g1,12808:28728857,4812305 +g1,12808:29852144,4812305 +) +) +] +[1,12808:6630773,45706769:25952256,40108032,0 +(1,12808:6630773,45706769:25952256,40108032,0 +(1,12808:6630773,45706769:0,0,0 +g1,12808:6630773,45706769 +) +[1,12808:6630773,45706769:25952256,40108032,0 +v1,12778:6630773,6254097:0,393216,0 +(1,12778:6630773,30539451:25952256,24678570,0 +g1,12778:6630773,30539451 +g1,12778:6237557,30539451 +r1,12808:6368629,30539451:131072,24678570,0 +g1,12778:6567858,30539451 +g1,12778:6764466,30539451 +[1,12778:6764466,30539451:25818563,24678570,0 +v1,12732:6764466,6254097:0,393216,0 +(1,12738:6764466,7938066:25818563,2077185,196608 +g1,12738:6764466,7938066 +g1,12738:6764466,7938066 +g1,12738:6567858,7938066 +(1,12738:6567858,7938066:0,2077185,196608 +r1,12808:32779637,7938066:26211779,2273793,196608 +k1,12738:6567857,7938066:-26211780 +) +(1,12738:6567858,7938066:26211779,2077185,196608 +[1,12738:6764466,7938066:25818563,1880577,0 +(1,12734:6764466,6488534:25818563,431045,106246 +(1,12733:6764466,6488534:0,0,0 +g1,12733:6764466,6488534 +g1,12733:6764466,6488534 +g1,12733:6436786,6488534 +(1,12733:6436786,6488534:0,0,0 +) +g1,12733:6764466,6488534 +) +g1,12734:8424236,6488534 +g1,12734:9420098,6488534 +g1,12734:12075730,6488534 +g1,12734:12739638,6488534 +g1,12734:16723086,6488534 +g1,12734:18050902,6488534 +g1,12734:19710672,6488534 +g1,12734:20374580,6488534 +h1,12734:22034350,6488534:0,0,0 +k1,12734:32583029,6488534:10548679 +g1,12734:32583029,6488534 +) +(1,12735:6764466,7173389:25818563,431045,106246 +h1,12735:6764466,7173389:0,0,0 +k1,12735:6764466,7173389:0 +h1,12735:11079868,7173389:0,0,0 +k1,12735:32583028,7173389:21503160 +g1,12735:32583028,7173389 +) +(1,12736:6764466,7858244:25818563,431045,79822 +h1,12736:6764466,7858244:0,0,0 +k1,12736:6764466,7858244:0 +h1,12736:10415960,7858244:0,0,0 +k1,12736:32583028,7858244:22167068 +g1,12736:32583028,7858244 +) +] +) +g1,12738:32583029,7938066 +g1,12738:6764466,7938066 +g1,12738:6764466,7938066 +g1,12738:32583029,7938066 +g1,12738:32583029,7938066 +) +h1,12738:6764466,8134674:0,0,0 +(1,12742:6764466,8999754:25818563,513147,134348 +h1,12741:6764466,8999754:983040,0,0 +k1,12741:8908725,8999754:207670 +k1,12741:10220677,8999754:207670 +k1,12741:11714163,8999754:207670 +k1,12741:14682210,8999754:207671 +k1,12741:16062319,8999754:207670 +k1,12741:18257696,8999754:207670 +k1,12741:19483140,8999754:207670 +k1,12741:21426203,8999754:207670 +(1,12741:21426203,8999754:0,452978,115847 +r1,12808:23894740,8999754:2468537,568825,115847 +k1,12741:21426203,8999754:-2468537 +) +(1,12741:21426203,8999754:2468537,452978,115847 +k1,12741:21426203,8999754:3277 +h1,12741:23891463,8999754:0,411205,112570 +) +k1,12741:24276080,8999754:207670 +k1,12741:25135178,8999754:207670 +k1,12741:26534294,8999754:207671 +k1,12741:29332602,8999754:207670 +k1,12741:30696982,8999754:207670 +k1,12741:31563944,8999754:207670 +k1,12741:32583029,8999754:0 +) +(1,12742:6764466,9864834:25818563,505283,126483 +k1,12741:9246270,9864834:163796 +k1,12741:12409650,9864834:163797 +k1,12741:13592531,9864834:163796 +k1,12741:15145691,9864834:163797 +k1,12741:17206754,9864834:163796 +k1,12741:18812997,9864834:163796 +k1,12741:19995879,9864834:163797 +k1,12741:22035315,9864834:163796 +k1,12741:22669005,9864834:163797 +k1,12741:23364298,9864834:163796 +k1,12741:26737392,9864834:163796 +k1,12741:27517227,9864834:163797 +k1,12741:28884264,9864834:163796 +k1,12741:30415142,9864834:163797 +k1,12741:31230366,9864834:163796 +k1,12741:32583029,9864834:0 +) +(1,12742:6764466,10729914:25818563,513147,102891 +k1,12741:8208641,10729914:176709 +k1,12741:12739562,10729914:176709 +k1,12741:13935355,10729914:176708 +k1,12741:16190211,10729914:176709 +k1,12741:17026212,10729914:176709 +k1,12741:18222006,10729914:176709 +k1,12741:21585075,10729914:176709 +k1,12741:24396987,10729914:176709 +k1,12741:25592780,10729914:176708 +k1,12741:27757196,10729914:176709 +k1,12741:30981329,10729914:176709 +k1,12741:32583029,10729914:0 +) +(1,12742:6764466,11594994:25818563,513147,126483 +k1,12741:10721038,11594994:181043 +k1,12741:11368042,11594994:181043 +k1,12741:12929273,11594994:181043 +k1,12741:14214599,11594994:181044 +k1,12741:15143408,11594994:181043 +k1,12741:18914513,11594994:181043 +k1,12741:19781718,11594994:181043 +k1,12741:23805137,11594994:181043 +k1,12741:27576242,11594994:181043 +k1,12741:28443448,11594994:181044 +k1,12741:28980351,11594994:181043 +k1,12741:30595322,11594994:181043 +k1,12741:32583029,11594994:0 +) +(1,12742:6764466,12460074:25818563,505283,7863 +g1,12741:7824838,12460074 +g1,12741:9043152,12460074 +g1,12741:10895854,12460074 +g1,12741:13082790,12460074 +g1,12741:14675970,12460074 +g1,12741:18102192,12460074 +k1,12742:32583029,12460074:12464294 +g1,12742:32583029,12460074 +) +v1,12744:6764466,13144929:0,393216,0 +(1,12748:6764466,13465794:25818563,714081,196608 +g1,12748:6764466,13465794 +g1,12748:6764466,13465794 +g1,12748:6567858,13465794 +(1,12748:6567858,13465794:0,714081,196608 +r1,12808:32779637,13465794:26211779,910689,196608 +k1,12748:6567857,13465794:-26211780 +) +(1,12748:6567858,13465794:26211779,714081,196608 +[1,12748:6764466,13465794:25818563,517473,0 +(1,12746:6764466,13379366:25818563,431045,86428 +(1,12745:6764466,13379366:0,0,0 +g1,12745:6764466,13379366 +g1,12745:6764466,13379366 +g1,12745:6436786,13379366 +(1,12745:6436786,13379366:0,0,0 +) +g1,12745:6764466,13379366 +) +k1,12746:6764466,13379366:0 +g1,12746:10415960,13379366 +h1,12746:11743776,13379366:0,0,0 +k1,12746:32583028,13379366:20839252 +g1,12746:32583028,13379366 +) +] +) +g1,12748:32583029,13465794 +g1,12748:6764466,13465794 +g1,12748:6764466,13465794 +g1,12748:32583029,13465794 +g1,12748:32583029,13465794 +) +h1,12748:6764466,13662402:0,0,0 +(1,12752:6764466,14527482:25818563,505283,134348 +h1,12751:6764466,14527482:983040,0,0 +k1,12751:9712758,14527482:132865 +k1,12751:10528509,14527482:132866 +k1,12751:12311571,14527482:132865 +k1,12751:14762445,14527482:132866 +k1,12751:15999592,14527482:132865 +k1,12751:17418274,14527482:132866 +k1,12751:18298905,14527482:132865 +k1,12751:21612888,14527482:132865 +k1,12751:22361792,14527482:132866 +k1,12751:22850517,14527482:132865 +k1,12751:24856402,14527482:132866 +k1,12751:26088961,14527482:132865 +k1,12751:26873255,14527482:132866 +(1,12751:26873255,14527482:0,452978,115847 +r1,12808:29341792,14527482:2468537,568825,115847 +k1,12751:26873255,14527482:-2468537 +) +(1,12751:26873255,14527482:2468537,452978,115847 +k1,12751:26873255,14527482:3277 +h1,12751:29338515,14527482:0,411205,112570 +) +k1,12751:29648327,14527482:132865 +k1,12751:32583029,14527482:0 +) +(1,12752:6764466,15392562:25818563,513147,134348 +g1,12751:7711461,15392562 +g1,12751:10294234,15392562 +g1,12751:11179625,15392562 +g1,12751:12397939,15392562 +g1,12751:14336494,15392562 +g1,12751:15195015,15392562 +g1,12751:16413329,15392562 +g1,12751:20015187,15392562 +k1,12752:32583029,15392562:9938538 +g1,12752:32583029,15392562 +) +v1,12754:6764466,16077417:0,393216,0 +(1,12759:6764466,17083137:25818563,1398936,196608 +g1,12759:6764466,17083137 +g1,12759:6764466,17083137 +g1,12759:6567858,17083137 +(1,12759:6567858,17083137:0,1398936,196608 +r1,12808:32779637,17083137:26211779,1595544,196608 +k1,12759:6567857,17083137:-26211780 +) +(1,12759:6567858,17083137:26211779,1398936,196608 +[1,12759:6764466,17083137:25818563,1202328,0 +(1,12756:6764466,16311854:25818563,431045,86428 +(1,12755:6764466,16311854:0,0,0 +g1,12755:6764466,16311854 +g1,12755:6764466,16311854 +g1,12755:6436786,16311854 +(1,12755:6436786,16311854:0,0,0 +) +g1,12755:6764466,16311854 +) +k1,12756:6764466,16311854:0 +g1,12756:10415960,16311854 +g1,12756:12075730,16311854 +h1,12756:13735500,16311854:0,0,0 +k1,12756:32583028,16311854:18847528 +g1,12756:32583028,16311854 +) +(1,12757:6764466,16996709:25818563,431045,86428 +h1,12757:6764466,16996709:0,0,0 +g1,12757:10415960,16996709 +g1,12757:12407684,16996709 +h1,12757:13735500,16996709:0,0,0 +k1,12757:32583028,16996709:18847528 +g1,12757:32583028,16996709 +) +] +) +g1,12759:32583029,17083137 +g1,12759:6764466,17083137 +g1,12759:6764466,17083137 +g1,12759:32583029,17083137 +g1,12759:32583029,17083137 +) +h1,12759:6764466,17279745:0,0,0 +(1,12766:6764466,18144825:25818563,513147,134348 +h1,12763:6764466,18144825:983040,0,0 +k1,12765:8889908,18144825:188853 +k1,12765:10183042,18144825:188852 +k1,12765:11464380,18144825:188853 +k1,12765:14415576,18144825:188853 +k1,12765:16877218,18144825:188853 +k1,12765:17717498,18144825:188852 +k1,12765:20121468,18144825:188853 +k1,12765:21329406,18144825:188853 +k1,12765:23453537,18144825:188853 +k1,12765:25803766,18144825:188852 +k1,12765:29730137,18144825:188853 +k1,12765:31773659,18144825:188853 +k1,12765:32583029,18144825:0 +) +(1,12766:6764466,19009905:25818563,513147,138281 +$1,12765:7232393,19009905 +k1,12765:9711167,19009905:255137 +k1,12765:10649189,19009905:255137 +k1,12765:14711312,19009905:255137 +k1,12765:17239238,19009905:255137 +k1,12765:19031195,19009905:255138 +k1,12765:20734678,19009905:255137 +k1,12765:22145814,19009905:255081 +k1,12765:25289123,19009905:255137 +k1,12765:26746846,19009905:255137 +k1,12765:30820766,19009905:255137 +k1,12766:32583029,19009905:0 +) +(1,12766:6764466,19874985:25818563,513147,126483 +k1,12765:8739920,19874985:169282 +k1,12765:10100648,19874985:169283 +k1,12765:11337482,19874985:169252 +k1,12765:14779633,19874985:169283 +k1,12765:18767698,19874985:169282 +k1,12765:22085330,19874985:169282 +k1,12765:22822810,19874985:169283 +k1,12765:24375557,19874985:169282 +k1,12765:28007762,19874985:169283 +k1,12765:30942663,19874985:169282 +k1,12766:32583029,19874985:0 +) +(1,12766:6764466,20740065:25818563,513147,134348 +k1,12765:8765816,20740065:195178 +k1,12765:10245500,20740065:195178 +k1,12765:13123067,20740065:195178 +k1,12765:14337330,20740065:195178 +k1,12765:17365629,20740065:195178 +k1,12765:21167908,20740065:195177 +k1,12765:23217755,20740065:195178 +k1,12765:24222303,20740065:195178 +k1,12765:25436566,20740065:195178 +k1,12765:28117525,20740065:195178 +k1,12765:28971995,20740065:195178 +k1,12765:32583029,20740065:0 +) +(1,12766:6764466,21605145:25818563,513147,102891 +k1,12765:7548432,21605145:167928 +k1,12765:8735445,21605145:167928 +k1,12765:10615829,21605145:167928 +k1,12765:12945134,21605145:167928 +k1,12765:13740898,21605145:167929 +k1,12765:14927911,21605145:167928 +k1,12765:16462920,21605145:167928 +k1,12765:17290140,21605145:167928 +k1,12765:18614092,21605145:167897 +k1,12765:19973465,21605145:167928 +k1,12765:21382645,21605145:167928 +k1,12765:21906433,21605145:167928 +k1,12765:24426448,21605145:167928 +k1,12765:26274720,21605145:167929 +k1,12765:26974145,21605145:167928 +k1,12765:29213011,21605145:167928 +k1,12765:30572384,21605145:167928 +k1,12765:32583029,21605145:0 +) +(1,12766:6764466,22470225:25818563,505283,134348 +k1,12765:9738188,22470225:194995 +k1,12765:11037464,22470225:194994 +k1,12765:11980225,22470225:194995 +k1,12765:14031199,22470225:194994 +k1,12765:16735568,22470225:194995 +k1,12765:17613448,22470225:194995 +k1,12765:20636976,22470225:194994 +k1,12765:21448009,22470225:194995 +k1,12765:23528475,22470225:194995 +k1,12765:25090550,22470225:194994 +k1,12765:26935742,22470225:194995 +k1,12765:29785599,22470225:194994 +k1,12765:30512091,22470225:194995 +k1,12765:32583029,22470225:0 +) +(1,12766:6764466,23335305:25818563,513147,126483 +k1,12765:9992773,23335305:158601 +k1,12765:11099024,23335305:158600 +k1,12765:12724321,23335305:158601 +k1,12765:13950463,23335305:158560 +k1,12765:15300509,23335305:158601 +k1,12765:16615125,23335305:158561 +k1,12765:17765285,23335305:158600 +k1,12765:20702613,23335305:158601 +k1,12765:21622742,23335305:158601 +(1,12765:21622742,23335305:0,452978,115847 +r1,12808:24091279,23335305:2468537,568825,115847 +k1,12765:21622742,23335305:-2468537 +) +(1,12765:21622742,23335305:2468537,452978,115847 +k1,12765:21622742,23335305:3277 +h1,12765:24088002,23335305:0,411205,112570 +) +k1,12765:24423549,23335305:158600 +k1,12765:25773595,23335305:158601 +k1,12765:26741566,23335305:158601 +k1,12765:28408806,23335305:158601 +k1,12765:29897787,23335305:158600 +k1,12765:30817916,23335305:158601 +(1,12765:30817916,23335305:0,452978,115847 +r1,12808:32583029,23335305:1765113,568825,115847 +k1,12765:30817916,23335305:-1765113 +) +(1,12765:30817916,23335305:1765113,452978,115847 +k1,12765:30817916,23335305:3277 +h1,12765:32579752,23335305:0,411205,112570 +) +k1,12765:32583029,23335305:0 +) +(1,12766:6764466,24200385:25818563,505283,115847 +g1,12765:8155140,24200385 +(1,12765:8155140,24200385:0,452978,115847 +r1,12808:9920253,24200385:1765113,568825,115847 +k1,12765:8155140,24200385:-1765113 +) +(1,12765:8155140,24200385:1765113,452978,115847 +k1,12765:8155140,24200385:3277 +h1,12765:9916976,24200385:0,411205,112570 +) +k1,12766:32583029,24200385:22662776 +g1,12766:32583029,24200385 +) +v1,12768:6764466,24885240:0,393216,0 +(1,12773:6764466,25890960:25818563,1398936,196608 +g1,12773:6764466,25890960 +g1,12773:6764466,25890960 +g1,12773:6567858,25890960 +(1,12773:6567858,25890960:0,1398936,196608 +r1,12808:32779637,25890960:26211779,1595544,196608 +k1,12773:6567857,25890960:-26211780 +) +(1,12773:6567858,25890960:26211779,1398936,196608 +[1,12773:6764466,25890960:25818563,1202328,0 +(1,12770:6764466,25119677:25818563,431045,86428 +(1,12769:6764466,25119677:0,0,0 +g1,12769:6764466,25119677 +g1,12769:6764466,25119677 +g1,12769:6436786,25119677 +(1,12769:6436786,25119677:0,0,0 +) +g1,12769:6764466,25119677 +) +k1,12770:6764466,25119677:0 +g1,12770:9752052,25119677 +g1,12770:11411822,25119677 +g1,12770:13071592,25119677 +h1,12770:14731362,25119677:0,0,0 +k1,12770:32583030,25119677:17851668 +g1,12770:32583030,25119677 +) +(1,12771:6764466,25804532:25818563,431045,86428 +h1,12771:6764466,25804532:0,0,0 +g1,12771:9752052,25804532 +g1,12771:11411822,25804532 +g1,12771:13071592,25804532 +h1,12771:14731362,25804532:0,0,0 +k1,12771:32583030,25804532:17851668 +g1,12771:32583030,25804532 +) +] +) +g1,12773:32583029,25890960 +g1,12773:6764466,25890960 +g1,12773:6764466,25890960 +g1,12773:32583029,25890960 +g1,12773:32583029,25890960 +) +h1,12773:6764466,26087568:0,0,0 +(1,12777:6764466,26952648:25818563,505283,126483 +h1,12776:6764466,26952648:983040,0,0 +k1,12776:9640317,26952648:287834 +k1,12776:11098624,26952648:287834 +k1,12776:12861673,26952648:287834 +k1,12776:14267551,26952648:287834 +k1,12776:15574470,26952648:287834 +k1,12776:17358491,26952648:287834 +k1,12776:18262363,26952648:287834 +k1,12776:19569283,26952648:287835 +k1,12776:22158086,26952648:287834 +k1,12776:24474915,26952648:287834 +k1,12776:25933222,26952648:287834 +k1,12776:27353518,26952648:287834 +k1,12776:28389118,26952648:287834 +k1,12776:29985706,26952648:287834 +k1,12776:31298523,26952648:287834 +k1,12776:32583029,26952648:0 +) +(1,12777:6764466,27817728:25818563,505283,134348 +k1,12776:8656209,27817728:195016 +k1,12776:10506010,27817728:195017 +k1,12776:12973815,27817728:195016 +k1,12776:13984099,27817728:195016 +k1,12776:15245387,27817728:195017 +k1,12776:18955754,27817728:195016 +k1,12776:20863881,27817728:195016 +k1,12776:21868268,27817728:195017 +k1,12776:23948755,27817728:195016 +k1,12776:24675269,27817728:195017 +k1,12776:25889370,27817728:195016 +k1,12776:28019664,27817728:195016 +k1,12776:30376058,27817728:195017 +k1,12776:31966991,27817728:195016 +k1,12776:32583029,27817728:0 +) +(1,12777:6764466,28682808:25818563,513147,138281 +k1,12776:7980869,28682808:197318 +k1,12776:10336943,28682808:197318 +$1,12776:10336943,28682808 +$1,12776:10804870,28682808 +k1,12776:13069194,28682808:197318 +k1,12776:14334092,28682808:197316 +k1,12776:15722855,28682808:197318 +k1,12776:17076226,28682808:197316 +k1,12776:20493328,28682808:197318 +k1,12776:21638297,28682808:197318 +k1,12776:22854700,28682808:197318 +k1,12776:25814361,28682808:197318 +k1,12776:28329687,28682808:197318 +k1,12776:29718450,28682808:197318 +k1,12776:32583029,28682808:0 +) +(1,12777:6764466,29547888:25818563,513147,126483 +k1,12776:8896165,29547888:246228 +k1,12776:11130100,29547888:246228 +k1,12776:11907825,29547888:246228 +k1,12776:14582818,29547888:246229 +k1,12776:15590574,29547888:246228 +k1,12776:17288424,29547888:246228 +k1,12776:18193944,29547888:246228 +k1,12776:19459257,29547888:246228 +k1,12776:21360269,29547888:246228 +k1,12776:24052956,29547888:246228 +k1,12776:24927020,29547888:246229 +k1,12776:27839253,29547888:246228 +k1,12776:29255954,29547888:246228 +k1,12776:30634644,29547888:246228 +k1,12776:32583029,29547888:0 +) +(1,12777:6764466,30412968:25818563,513147,126483 +g1,12776:8248201,30412968 +g1,12776:9466515,30412968 +g1,12776:10838183,30412968 +g1,12776:13799755,30412968 +g1,12776:18140204,30412968 +g1,12776:18998725,30412968 +g1,12776:20217039,30412968 +g1,12776:23447963,30412968 +g1,12776:27220215,30412968 +g1,12776:28411004,30412968 +k1,12777:32583029,30412968:693374 +g1,12777:32583029,30412968 +) +] +g1,12778:32583029,30539451 +) +h1,12778:6630773,30539451:0,0,0 +(1,12781:6630773,31404531:25952256,513147,134348 +h1,12780:6630773,31404531:983040,0,0 +k1,12780:11164094,31404531:191561 +k1,12780:14140281,31404531:191562 +k1,12780:15611760,31404531:191561 +k1,12780:17197928,31404531:191562 +k1,12780:19420450,31404531:191561 +k1,12780:20263440,31404531:191562 +k1,12780:23217344,31404531:191561 +k1,12780:27336479,31404531:191562 +k1,12780:28187332,31404531:191561 +k1,12780:30091350,31404531:191562 +k1,12781:32583029,31404531:0 +) +(1,12781:6630773,32269611:25952256,505283,115847 +(1,12780:6630773,32269611:0,452978,115847 +r1,12808:8747598,32269611:2116825,568825,115847 +k1,12780:6630773,32269611:-2116825 +) +(1,12780:6630773,32269611:2116825,452978,115847 +k1,12780:6630773,32269611:3277 +h1,12780:8744321,32269611:0,411205,112570 +) +k1,12780:8913083,32269611:165485 +k1,12780:11419513,32269611:165484 +k1,12780:12604083,32269611:165485 +k1,12780:19019080,32269611:165484 +k1,12780:21445557,32269611:165485 +(1,12780:21445557,32269611:0,459977,115847 +r1,12808:23562382,32269611:2116825,575824,115847 +k1,12780:21445557,32269611:-2116825 +) +(1,12780:21445557,32269611:2116825,459977,115847 +k1,12780:21445557,32269611:3277 +h1,12780:23559105,32269611:0,411205,112570 +) +k1,12780:23727866,32269611:165484 +k1,12780:25084796,32269611:165485 +k1,12780:26038678,32269611:165484 +k1,12780:27652509,32269611:165485 +(1,12780:27652509,32269611:0,459977,115847 +r1,12808:32583029,32269611:4930520,575824,115847 +k1,12780:27652509,32269611:-4930520 +) +(1,12780:27652509,32269611:4930520,459977,115847 +k1,12780:27652509,32269611:3277 +h1,12780:32579752,32269611:0,411205,112570 +) +k1,12780:32583029,32269611:0 +) +(1,12781:6630773,33134691:25952256,513147,115847 +k1,12780:9021088,33134691:379670 +k1,12780:10419843,33134691:379670 +k1,12780:13845627,33134691:379671 +k1,12780:15172948,33134691:379670 +k1,12780:16571703,33134691:379670 +k1,12780:18663829,33134691:379670 +k1,12780:21031206,33134691:379670 +k1,12780:25195581,33134691:379671 +(1,12780:25195581,33134691:0,459977,115847 +r1,12808:28015830,33134691:2820249,575824,115847 +k1,12780:25195581,33134691:-2820249 +) +(1,12780:25195581,33134691:2820249,459977,115847 +k1,12780:25195581,33134691:3277 +h1,12780:28012553,33134691:0,411205,112570 +) +k1,12780:28395500,33134691:379670 +k1,12780:29966615,33134691:379670 +k1,12780:31134683,33134691:379670 +k1,12781:32583029,33134691:0 +) +(1,12781:6630773,33999771:25952256,513147,115847 +(1,12780:6630773,33999771:0,459977,115847 +r1,12808:11913004,33999771:5282231,575824,115847 +k1,12780:6630773,33999771:-5282231 +) +(1,12780:6630773,33999771:5282231,459977,115847 +k1,12780:6630773,33999771:3277 +h1,12780:11909727,33999771:0,411205,112570 +) +k1,12780:12171668,33999771:258664 +k1,12780:14634308,33999771:258664 +k1,12780:15912056,33999771:258663 +k1,12780:17883176,33999771:258664 +k1,12780:20326155,33999771:258664 +k1,12780:21776264,33999771:258664 +(1,12780:21776264,33999771:0,452978,115847 +r1,12808:24244801,33999771:2468537,568825,115847 +k1,12780:21776264,33999771:-2468537 +) +(1,12780:21776264,33999771:2468537,452978,115847 +k1,12780:21776264,33999771:3277 +h1,12780:24241524,33999771:0,411205,112570 +) +k1,12780:24503465,33999771:258664 +k1,12780:25953573,33999771:258663 +k1,12780:27000635,33999771:258664 +k1,12780:28707645,33999771:258664 +(1,12780:28707645,33999771:0,452978,115847 +r1,12808:32583029,33999771:3875384,568825,115847 +k1,12780:28707645,33999771:-3875384 +) +(1,12780:28707645,33999771:3875384,452978,115847 +k1,12780:28707645,33999771:3277 +h1,12780:32579752,33999771:0,411205,112570 +) +k1,12780:32583029,33999771:0 +) +(1,12781:6630773,34864851:25952256,513147,134348 +k1,12780:7942949,34864851:293091 +k1,12780:12859606,34864851:293092 +k1,12780:16046767,34864851:293091 +k1,12780:17229838,34864851:293092 +k1,12780:21183770,34864851:293091 +k1,12780:22849841,34864851:293092 +k1,12780:26447913,34864851:293091 +k1,12780:28254231,34864851:293092 +k1,12780:31591469,34864851:293091 +k1,12781:32583029,34864851:0 +) +(1,12781:6630773,35729931:25952256,505283,134348 +(1,12780:6630773,35729931:0,452978,122846 +r1,12808:9802733,35729931:3171960,575824,122846 +k1,12780:6630773,35729931:-3171960 +) +(1,12780:6630773,35729931:3171960,452978,122846 +k1,12780:6630773,35729931:3277 +h1,12780:9799456,35729931:0,411205,112570 +) +k1,12780:10252326,35729931:275923 +(1,12780:10252326,35729931:0,459977,115847 +r1,12808:13424286,35729931:3171960,575824,115847 +k1,12780:10252326,35729931:-3171960 +) +(1,12780:10252326,35729931:3171960,459977,115847 +k1,12780:10252326,35729931:3277 +h1,12780:13421009,35729931:0,411205,112570 +) +k1,12780:13873879,35729931:275923 +(1,12780:13873879,35729931:0,452978,115847 +r1,12808:16342416,35729931:2468537,568825,115847 +k1,12780:13873879,35729931:-2468537 +) +(1,12780:13873879,35729931:2468537,452978,115847 +k1,12780:13873879,35729931:3277 +h1,12780:16339139,35729931:0,411205,112570 +) +k1,12780:16792009,35729931:275923 +(1,12780:16792009,35729931:0,459977,115847 +r1,12808:21370817,35729931:4578808,575824,115847 +k1,12780:16792009,35729931:-4578808 +) +(1,12780:16792009,35729931:4578808,459977,115847 +k1,12780:16792009,35729931:3277 +h1,12780:21367540,35729931:0,411205,112570 +) +k1,12780:21646741,35729931:275924 +k1,12780:23114109,35729931:275923 +(1,12780:23114109,35729931:0,452978,115847 +r1,12808:28044629,35729931:4930520,568825,115847 +k1,12780:23114109,35729931:-4930520 +) +(1,12780:23114109,35729931:4930520,452978,115847 +k1,12780:23114109,35729931:3277 +h1,12780:28041352,35729931:0,411205,112570 +) +k1,12780:28494222,35729931:275923 +k1,12780:29966832,35729931:275923 +k1,12780:32583029,35729931:0 +) +(1,12781:6630773,36595011:25952256,513147,134348 +g1,12780:8698433,36595011 +g1,12780:10888646,36595011 +g1,12780:12418256,36595011 +g1,12780:14309625,36595011 +g1,12780:15168146,36595011 +g1,12780:17064102,36595011 +g1,12780:20047956,36595011 +g1,12780:20934658,36595011 +g1,12780:21749925,36595011 +g1,12780:22968239,36595011 +g1,12780:25155175,36595011 +g1,12780:27289027,36595011 +k1,12781:32583029,36595011:2173833 +g1,12781:32583029,36595011 +) +] +(1,12808:32583029,45706769:0,0,0 +g1,12808:32583029,45706769 +) +) +] +(1,12808:6630773,47279633:25952256,0,0 +h1,12808:6630773,47279633:25952256,0,0 +) +] +(1,12808:4262630,4025873:0,0,0 +[1,12808:-473656,4025873:0,0,0 +(1,12808:-473656,-710413:0,0,0 +(1,12808:-473656,-710413:0,0,0 +g1,12808:-473656,-710413 +) +g1,12808:-473656,-710413 +) +] +) +] +!25641 +}207 +Input:1934:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1935:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1936:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1937:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1938:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1939:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1940:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1941:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1942:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1943:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1944:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1945:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1946:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1947:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1948:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1949:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1950:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1951:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1952:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1953:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1954:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1986 +{208 +[1,13017:4262630,47279633:28320399,43253760,0 +(1,13017:4262630,4025873:0,0,0 +[1,13017:-473656,4025873:0,0,0 +(1,13017:-473656,-710413:0,0,0 +(1,13017:-473656,-644877:0,0,0 +k1,13017:-473656,-644877:-65536 ) -(1,13381:-473656,4736287:0,0,0 -k1,13381:-473656,4736287:5209943 +(1,13017:-473656,4736287:0,0,0 +k1,13017:-473656,4736287:5209943 ) -g1,13381:-473656,-710413 +g1,13017:-473656,-710413 ) ] ) -[1,13381:6630773,47279633:25952256,43253760,0 -[1,13381:6630773,4812305:25952256,786432,0 -(1,13381:6630773,4812305:25952256,505283,134348 -(1,13381:6630773,4812305:25952256,505283,134348 -g1,13381:3078558,4812305 -[1,13381:3078558,4812305:0,0,0 -(1,13381:3078558,2439708:0,1703936,0 -k1,13381:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,13381:2537886,2439708:1179648,16384,0 +[1,13017:6630773,47279633:25952256,43253760,0 +[1,13017:6630773,4812305:25952256,786432,0 +(1,13017:6630773,4812305:25952256,505283,134348 +(1,13017:6630773,4812305:25952256,505283,134348 +g1,13017:3078558,4812305 +[1,13017:3078558,4812305:0,0,0 +(1,13017:3078558,2439708:0,1703936,0 +k1,13017:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,13017:2537886,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,13381:3078558,1915420:16384,1179648,0 +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,13017:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] ) ) ) ] -[1,13381:3078558,4812305:0,0,0 -(1,13381:3078558,2439708:0,1703936,0 -g1,13381:29030814,2439708 -g1,13381:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,13381:36151628,1915420:16384,1179648,0 +[1,13017:3078558,4812305:0,0,0 +(1,13017:3078558,2439708:0,1703936,0 +g1,13017:29030814,2439708 +g1,13017:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,13017:36151628,1915420:16384,1179648,0 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,13381:37855564,2439708:1179648,16384,0 +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,13017:37855564,2439708:1179648,16384,0 ) ) -k1,13381:3078556,2439708:-34777008 +k1,13017:3078556,2439708:-34777008 ) ] -[1,13381:3078558,4812305:0,0,0 -(1,13381:3078558,49800853:0,16384,2228224 -k1,13381:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,13381:2537886,49800853:1179648,16384,0 +[1,13017:3078558,4812305:0,0,0 +(1,13017:3078558,49800853:0,16384,2228224 +k1,13017:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,13017:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,13381:3078558,51504789:16384,1179648,0 +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,13017:3078558,51504789:16384,1179648,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 ) ] ) ) ) ] -[1,13381:3078558,4812305:0,0,0 -(1,13381:3078558,49800853:0,16384,2228224 -g1,13381:29030814,49800853 -g1,13381:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,13381:36151628,51504789:16384,1179648,0 +[1,13017:3078558,4812305:0,0,0 +(1,13017:3078558,49800853:0,16384,2228224 +g1,13017:29030814,49800853 +g1,13017:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,13017:36151628,51504789:16384,1179648,0 ) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 ) ] ) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,13381:37855564,49800853:1179648,16384,0 +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,13017:37855564,49800853:1179648,16384,0 ) ) -k1,13381:3078556,49800853:-34777008 +k1,13017:3078556,49800853:-34777008 ) ] -g1,13381:6630773,4812305 -g1,13381:6630773,4812305 -g1,13381:8843268,4812305 -g1,13381:10880782,4812305 -g1,13381:13281365,4812305 -k1,13381:31387653,4812305:18106288 -) -) -] -[1,13381:6630773,45706769:25952256,40108032,0 -(1,13381:6630773,45706769:25952256,40108032,0 -(1,13381:6630773,45706769:0,0,0 -g1,13381:6630773,45706769 -) -[1,13381:6630773,45706769:25952256,40108032,0 -v1,13279:6630773,6254097:0,393216,0 -(1,13325:6630773,31206962:25952256,25346081,196608 -g1,13325:6630773,31206962 -g1,13325:6630773,31206962 -g1,13325:6434165,31206962 -(1,13325:6434165,31206962:0,25346081,196608 -r1,13381:32779637,31206962:26345472,25542689,196608 -k1,13325:6434165,31206962:-26345472 -) -(1,13325:6434165,31206962:26345472,25346081,196608 -[1,13325:6630773,31206962:25952256,25149473,0 -(1,13281:6630773,6468007:25952256,410518,101187 -(1,13280:6630773,6468007:0,0,0 -g1,13280:6630773,6468007 -g1,13280:6630773,6468007 -g1,13280:6303093,6468007 -(1,13280:6303093,6468007:0,0,0 -) -g1,13280:6630773,6468007 -) -k1,13281:6630773,6468007:0 -h1,13281:10424521,6468007:0,0,0 -k1,13281:32583029,6468007:22158508 -g1,13281:32583029,6468007 -) -(1,13301:6630773,7134185:25952256,379060,0 -(1,13283:6630773,7134185:0,0,0 -g1,13283:6630773,7134185 -g1,13283:6630773,7134185 -g1,13283:6303093,7134185 -(1,13283:6303093,7134185:0,0,0 -) -g1,13283:6630773,7134185 -) -h1,13301:7263064,7134185:0,0,0 -k1,13301:32583028,7134185:25319964 -g1,13301:32583028,7134185 -) -(1,13301:6630773,7800363:25952256,404226,7863 -h1,13301:6630773,7800363:0,0,0 -g1,13301:7579210,7800363 -h1,13301:9159938,7800363:0,0,0 -k1,13301:32583030,7800363:23423092 -g1,13301:32583030,7800363 -) -(1,13301:6630773,8466541:25952256,410518,101187 -h1,13301:6630773,8466541:0,0,0 -g1,13301:7579210,8466541 -g1,13301:11056813,8466541 -g1,13301:11689105,8466541 -g1,13301:13269834,8466541 -g1,13301:13902126,8466541 -g1,13301:15799000,8466541 -g1,13301:16431292,8466541 -g1,13301:20225041,8466541 -g1,13301:21805770,8466541 -g1,13301:22438062,8466541 -h1,13301:24018790,8466541:0,0,0 -k1,13301:32583029,8466541:8564239 -g1,13301:32583029,8466541 -) -(1,13301:6630773,9132719:25952256,379060,0 -h1,13301:6630773,9132719:0,0,0 -h1,13301:7263064,9132719:0,0,0 -k1,13301:32583028,9132719:25319964 -g1,13301:32583028,9132719 -) -(1,13301:6630773,9798897:25952256,404226,6290 -h1,13301:6630773,9798897:0,0,0 -g1,13301:7579210,9798897 -h1,13301:10740667,9798897:0,0,0 -k1,13301:32583029,9798897:21842362 -g1,13301:32583029,9798897 -) -(1,13301:6630773,10465075:25952256,404226,82312 -h1,13301:6630773,10465075:0,0,0 -g1,13301:7579210,10465075 -g1,13301:7895356,10465075 -g1,13301:8211502,10465075 -g1,13301:8527648,10465075 -g1,13301:8843794,10465075 -g1,13301:10108377,10465075 -g1,13301:10424523,10465075 -g1,13301:10740669,10465075 -g1,13301:11056815,10465075 -g1,13301:11372961,10465075 -g1,13301:11689107,10465075 -g1,13301:12637544,10465075 -g1,13301:12953690,10465075 -g1,13301:15166710,10465075 -g1,13301:15482856,10465075 -g1,13301:15799002,10465075 -g1,13301:16115148,10465075 -g1,13301:16431294,10465075 -g1,13301:16747440,10465075 -g1,13301:17695877,10465075 -g1,13301:18012023,10465075 -g1,13301:18328169,10465075 -g1,13301:18644315,10465075 -g1,13301:18960461,10465075 -h1,13301:19908898,10465075:0,0,0 -k1,13301:32583029,10465075:12674131 -g1,13301:32583029,10465075 -) -(1,13301:6630773,11131253:25952256,388497,9436 -h1,13301:6630773,11131253:0,0,0 -g1,13301:7579210,11131253 -g1,13301:10108376,11131253 -g1,13301:10424522,11131253 -g1,13301:12637542,11131253 -g1,13301:12953688,11131253 -g1,13301:15166708,11131253 -g1,13301:15482854,11131253 -g1,13301:15799000,11131253 -g1,13301:17695874,11131253 -g1,13301:18012020,11131253 -h1,13301:19908894,11131253:0,0,0 -k1,13301:32583029,11131253:12674135 -g1,13301:32583029,11131253 -) -(1,13301:6630773,11797431:25952256,379060,0 -h1,13301:6630773,11797431:0,0,0 -h1,13301:7263064,11797431:0,0,0 -k1,13301:32583028,11797431:25319964 -g1,13301:32583028,11797431 -) -(1,13301:6630773,12463609:25952256,410518,7863 -h1,13301:6630773,12463609:0,0,0 -g1,13301:7579210,12463609 -h1,13301:11689104,12463609:0,0,0 -k1,13301:32583028,12463609:20893924 -g1,13301:32583028,12463609 -) -(1,13301:6630773,13129787:25952256,404226,76021 -h1,13301:6630773,13129787:0,0,0 -g1,13301:7579210,13129787 -g1,13301:7895356,13129787 -g1,13301:8211502,13129787 -g1,13301:8527648,13129787 -g1,13301:8843794,13129787 -g1,13301:9159940,13129787 -g1,13301:9476086,13129787 -g1,13301:9792232,13129787 -g1,13301:10108378,13129787 -g1,13301:10424524,13129787 -g1,13301:10740670,13129787 -g1,13301:11056816,13129787 -g1,13301:11372962,13129787 -g1,13301:14218273,13129787 -g1,13301:15799002,13129787 -g1,13301:17695876,13129787 -g1,13301:18328168,13129787 -g1,13301:20225042,13129787 -k1,13301:20225042,13129787:0 -h1,13301:22754207,13129787:0,0,0 -k1,13301:32583029,13129787:9828822 -g1,13301:32583029,13129787 -) -(1,13301:6630773,13795965:25952256,404226,101187 -h1,13301:6630773,13795965:0,0,0 -g1,13301:7579210,13795965 -g1,13301:11372958,13795965 -g1,13301:11689104,13795965 -g1,13301:14218270,13795965 -g1,13301:14534416,13795965 -g1,13301:14850562,13795965 -g1,13301:17695873,13795965 -g1,13301:18012019,13795965 -g1,13301:18328165,13795965 -g1,13301:20225039,13795965 -g1,13301:20541185,13795965 -g1,13301:20857331,13795965 -g1,13301:21173477,13795965 -h1,13301:22754205,13795965:0,0,0 -k1,13301:32583029,13795965:9828824 -g1,13301:32583029,13795965 -) -(1,13301:6630773,14462143:25952256,404226,101187 -h1,13301:6630773,14462143:0,0,0 -g1,13301:7579210,14462143 -g1,13301:9476084,14462143 -g1,13301:9792230,14462143 -g1,13301:10108376,14462143 -g1,13301:10424522,14462143 -g1,13301:10740668,14462143 -g1,13301:11056814,14462143 -g1,13301:11372960,14462143 -g1,13301:11689106,14462143 -g1,13301:14218272,14462143 -g1,13301:14534418,14462143 -g1,13301:14850564,14462143 -g1,13301:15166710,14462143 -g1,13301:17695876,14462143 -g1,13301:18012022,14462143 -g1,13301:18328168,14462143 -g1,13301:20225042,14462143 -g1,13301:20541188,14462143 -g1,13301:20857334,14462143 -g1,13301:21173480,14462143 -h1,13301:22754208,14462143:0,0,0 -k1,13301:32583029,14462143:9828821 -g1,13301:32583029,14462143 -) -(1,13301:6630773,15128321:25952256,404226,101187 -h1,13301:6630773,15128321:0,0,0 -g1,13301:7579210,15128321 -g1,13301:11056813,15128321 -g1,13301:11372959,15128321 -g1,13301:11689105,15128321 -g1,13301:14218271,15128321 -g1,13301:14534417,15128321 -g1,13301:14850563,15128321 -g1,13301:15166709,15128321 -g1,13301:17695875,15128321 -g1,13301:18012021,15128321 -g1,13301:18328167,15128321 -g1,13301:20225041,15128321 -g1,13301:20541187,15128321 -g1,13301:20857333,15128321 -g1,13301:21173479,15128321 -h1,13301:22754207,15128321:0,0,0 -k1,13301:32583029,15128321:9828822 -g1,13301:32583029,15128321 -) -(1,13301:6630773,15794499:25952256,379060,0 -h1,13301:6630773,15794499:0,0,0 -h1,13301:7263064,15794499:0,0,0 -k1,13301:32583028,15794499:25319964 -g1,13301:32583028,15794499 -) -(1,13301:6630773,16460677:25952256,410518,107478 -h1,13301:6630773,16460677:0,0,0 -g1,13301:7579210,16460677 -g1,13301:10424521,16460677 -g1,13301:13269832,16460677 -g1,13301:15482852,16460677 -g1,13301:17379726,16460677 -g1,13301:18328163,16460677 -g1,13301:19276600,16460677 -g1,13301:21805766,16460677 -g1,13301:22754203,16460677 -h1,13301:24967223,16460677:0,0,0 -k1,13301:32583029,16460677:7615806 -g1,13301:32583029,16460677 -) -(1,13301:6630773,17126855:25952256,404226,107478 -h1,13301:6630773,17126855:0,0,0 -g1,13301:7579210,17126855 -g1,13301:10424521,17126855 -g1,13301:13902124,17126855 -g1,13301:14218270,17126855 -g1,13301:19276601,17126855 -g1,13301:22754204,17126855 -g1,13301:23070350,17126855 -h1,13301:24967224,17126855:0,0,0 -k1,13301:32583029,17126855:7615805 -g1,13301:32583029,17126855 -) -(1,13301:6630773,17793033:25952256,404226,101187 -h1,13301:6630773,17793033:0,0,0 -g1,13301:7579210,17793033 -g1,13301:11689104,17793033 -g1,13301:13585978,17793033 -g1,13301:14534415,17793033 -g1,13301:15166707,17793033 -g1,13301:16431290,17793033 -g1,13301:17379727,17793033 -g1,13301:18644310,17793033 -g1,13301:18960456,17793033 -g1,13301:21805768,17793033 -k1,13301:21805768,17793033:0 -h1,13301:24651079,17793033:0,0,0 -k1,13301:32583029,17793033:7931950 -g1,13301:32583029,17793033 -) -(1,13303:6630773,19114571:25952256,410518,101187 -(1,13302:6630773,19114571:0,0,0 -g1,13302:6630773,19114571 -g1,13302:6630773,19114571 -g1,13302:6303093,19114571 -(1,13302:6303093,19114571:0,0,0 -) -g1,13302:6630773,19114571 -) -k1,13303:6630773,19114571:0 -h1,13303:10740667,19114571:0,0,0 -k1,13303:32583029,19114571:21842362 -g1,13303:32583029,19114571 -) -(1,13324:6630773,19780749:25952256,379060,0 -(1,13305:6630773,19780749:0,0,0 -g1,13305:6630773,19780749 -g1,13305:6630773,19780749 -g1,13305:6303093,19780749 -(1,13305:6303093,19780749:0,0,0 -) -g1,13305:6630773,19780749 -) -h1,13324:7263064,19780749:0,0,0 -k1,13324:32583028,19780749:25319964 -g1,13324:32583028,19780749 -) -(1,13324:6630773,20446927:25952256,404226,7863 -h1,13324:6630773,20446927:0,0,0 -g1,13324:7579210,20446927 -h1,13324:9159938,20446927:0,0,0 -k1,13324:32583030,20446927:23423092 -g1,13324:32583030,20446927 -) -(1,13324:6630773,21113105:25952256,410518,101187 -h1,13324:6630773,21113105:0,0,0 -g1,13324:7579210,21113105 -g1,13324:11056813,21113105 -g1,13324:11689105,21113105 -g1,13324:13269834,21113105 -g1,13324:13902126,21113105 -g1,13324:17695875,21113105 -g1,13324:19276604,21113105 -g1,13324:19908896,21113105 -h1,13324:21489624,21113105:0,0,0 -k1,13324:32583029,21113105:11093405 -g1,13324:32583029,21113105 -) -(1,13324:6630773,21779283:25952256,379060,0 -h1,13324:6630773,21779283:0,0,0 -h1,13324:7263064,21779283:0,0,0 -k1,13324:32583028,21779283:25319964 -g1,13324:32583028,21779283 -) -(1,13324:6630773,22445461:25952256,404226,6290 -h1,13324:6630773,22445461:0,0,0 -g1,13324:7579210,22445461 -h1,13324:10740667,22445461:0,0,0 -k1,13324:32583029,22445461:21842362 -g1,13324:32583029,22445461 -) -(1,13324:6630773,23111639:25952256,404226,82312 -h1,13324:6630773,23111639:0,0,0 -g1,13324:7579210,23111639 -g1,13324:7895356,23111639 -g1,13324:8211502,23111639 -g1,13324:8527648,23111639 -g1,13324:8843794,23111639 -g1,13324:10108377,23111639 -g1,13324:10424523,23111639 -g1,13324:10740669,23111639 -g1,13324:11056815,23111639 -g1,13324:11372961,23111639 -g1,13324:11689107,23111639 -g1,13324:12637544,23111639 -g1,13324:12953690,23111639 -g1,13324:15166710,23111639 -g1,13324:15482856,23111639 -g1,13324:15799002,23111639 -g1,13324:16115148,23111639 -g1,13324:16431294,23111639 -g1,13324:16747440,23111639 -g1,13324:17695877,23111639 -g1,13324:18012023,23111639 -g1,13324:18328169,23111639 -g1,13324:18644315,23111639 -g1,13324:18960461,23111639 -h1,13324:19908898,23111639:0,0,0 -k1,13324:32583029,23111639:12674131 -g1,13324:32583029,23111639 -) -(1,13324:6630773,23777817:25952256,388497,9436 -h1,13324:6630773,23777817:0,0,0 -g1,13324:7579210,23777817 -g1,13324:10108376,23777817 -g1,13324:10424522,23777817 -g1,13324:12637542,23777817 -g1,13324:12953688,23777817 -g1,13324:15166708,23777817 -g1,13324:15482854,23777817 -g1,13324:15799000,23777817 -g1,13324:17695874,23777817 -g1,13324:18012020,23777817 -h1,13324:19908894,23777817:0,0,0 -k1,13324:32583029,23777817:12674135 -g1,13324:32583029,23777817 -) -(1,13324:6630773,24443995:25952256,379060,0 -h1,13324:6630773,24443995:0,0,0 -h1,13324:7263064,24443995:0,0,0 -k1,13324:32583028,24443995:25319964 -g1,13324:32583028,24443995 -) -(1,13324:6630773,25110173:25952256,410518,7863 -h1,13324:6630773,25110173:0,0,0 -g1,13324:7579210,25110173 -h1,13324:11689104,25110173:0,0,0 -k1,13324:32583028,25110173:20893924 -g1,13324:32583028,25110173 -) -(1,13324:6630773,25776351:25952256,404226,76021 -h1,13324:6630773,25776351:0,0,0 -g1,13324:7579210,25776351 -g1,13324:7895356,25776351 -g1,13324:8211502,25776351 -g1,13324:8527648,25776351 -g1,13324:8843794,25776351 -g1,13324:9159940,25776351 -g1,13324:9476086,25776351 -g1,13324:9792232,25776351 -g1,13324:10108378,25776351 -g1,13324:10424524,25776351 -g1,13324:10740670,25776351 -g1,13324:11056816,25776351 -g1,13324:11372962,25776351 -g1,13324:14218273,25776351 -g1,13324:15799002,25776351 -g1,13324:17695876,25776351 -g1,13324:18328168,25776351 -g1,13324:20225042,25776351 -k1,13324:20225042,25776351:0 -h1,13324:22754207,25776351:0,0,0 -k1,13324:32583029,25776351:9828822 -g1,13324:32583029,25776351 -) -(1,13324:6630773,26442529:25952256,404226,101187 -h1,13324:6630773,26442529:0,0,0 -g1,13324:7579210,26442529 -g1,13324:11372958,26442529 -g1,13324:11689104,26442529 -g1,13324:14218270,26442529 -g1,13324:14534416,26442529 -g1,13324:14850562,26442529 -g1,13324:15166708,26442529 -g1,13324:17695874,26442529 -g1,13324:18012020,26442529 -g1,13324:18328166,26442529 -g1,13324:20225040,26442529 -g1,13324:20541186,26442529 -g1,13324:20857332,26442529 -g1,13324:23070352,26442529 -h1,13324:23386498,26442529:0,0,0 -k1,13324:32583029,26442529:9196531 -g1,13324:32583029,26442529 -) -(1,13324:6630773,27108707:25952256,404226,101187 -h1,13324:6630773,27108707:0,0,0 -g1,13324:7579210,27108707 -g1,13324:11056813,27108707 -g1,13324:11372959,27108707 -g1,13324:11689105,27108707 -g1,13324:14218271,27108707 -g1,13324:14534417,27108707 -g1,13324:14850563,27108707 -g1,13324:15166709,27108707 -g1,13324:17695875,27108707 -g1,13324:18012021,27108707 -g1,13324:18328167,27108707 -g1,13324:20225041,27108707 -g1,13324:20541187,27108707 -g1,13324:23070353,27108707 -h1,13324:24018790,27108707:0,0,0 -k1,13324:32583029,27108707:8564239 -g1,13324:32583029,27108707 -) -(1,13324:6630773,27774885:25952256,379060,0 -h1,13324:6630773,27774885:0,0,0 -g1,13324:7579210,27774885 -k1,13324:7579210,27774885:0 -h1,13324:8527648,27774885:0,0,0 -k1,13324:32583028,27774885:24055380 -g1,13324:32583028,27774885 -) -(1,13324:6630773,28441063:25952256,410518,107478 -h1,13324:6630773,28441063:0,0,0 -g1,13324:7579210,28441063 -g1,13324:10108376,28441063 -g1,13324:12321396,28441063 -g1,13324:12637542,28441063 -g1,13324:13269834,28441063 -g1,13324:15166709,28441063 -g1,13324:17063583,28441063 -g1,13324:18644312,28441063 -g1,13324:20225041,28441063 -g1,13324:21489625,28441063 -g1,13324:23070354,28441063 -g1,13324:24334938,28441063 -g1,13324:25599521,28441063 -g1,13324:26231813,28441063 -g1,13324:26864105,28441063 -h1,13324:27180251,28441063:0,0,0 -k1,13324:32583029,28441063:5402778 -g1,13324:32583029,28441063 -) -(1,13324:6630773,29107241:25952256,379060,0 -h1,13324:6630773,29107241:0,0,0 -h1,13324:7263064,29107241:0,0,0 -k1,13324:32583028,29107241:25319964 -g1,13324:32583028,29107241 -) -(1,13324:6630773,29773419:25952256,410518,107478 -h1,13324:6630773,29773419:0,0,0 -g1,13324:7579210,29773419 -g1,13324:10424521,29773419 -g1,13324:13269832,29773419 -g1,13324:15482852,29773419 -g1,13324:17379726,29773419 -g1,13324:18328163,29773419 -g1,13324:19276600,29773419 -g1,13324:21805766,29773419 -g1,13324:22754203,29773419 -h1,13324:24967223,29773419:0,0,0 -k1,13324:32583029,29773419:7615806 -g1,13324:32583029,29773419 -) -(1,13324:6630773,30439597:25952256,404226,107478 -h1,13324:6630773,30439597:0,0,0 -g1,13324:7579210,30439597 -g1,13324:10424521,30439597 -g1,13324:13902124,30439597 -g1,13324:14218270,30439597 -g1,13324:19276601,30439597 -g1,13324:22754204,30439597 -g1,13324:23070350,30439597 -h1,13324:24967224,30439597:0,0,0 -k1,13324:32583029,30439597:7615805 -g1,13324:32583029,30439597 -) -(1,13324:6630773,31105775:25952256,404226,101187 -h1,13324:6630773,31105775:0,0,0 -g1,13324:7579210,31105775 -g1,13324:11689104,31105775 -g1,13324:13585978,31105775 -g1,13324:14534415,31105775 -g1,13324:15166707,31105775 -g1,13324:16431290,31105775 -g1,13324:17379727,31105775 -g1,13324:18644310,31105775 -g1,13324:18960456,31105775 -g1,13324:21805768,31105775 -k1,13324:21805768,31105775:0 -h1,13324:24018788,31105775:0,0,0 -k1,13324:32583029,31105775:8564241 -g1,13324:32583029,31105775 -) -] -) -g1,13325:32583029,31206962 -g1,13325:6630773,31206962 -g1,13325:6630773,31206962 -g1,13325:32583029,31206962 -g1,13325:32583029,31206962 -) -h1,13325:6630773,31403570:0,0,0 -(1,13329:6630773,32559630:25952256,513147,134348 -h1,13328:6630773,32559630:983040,0,0 -k1,13328:8316394,32559630:224824 -k1,13328:9409570,32559630:224824 -k1,13328:11071599,32559630:224824 -k1,13328:11652283,32559630:224824 -k1,13328:13750126,32559630:224824 -k1,13328:15962657,32559630:224824 -k1,13328:17581432,32559630:224824 -k1,13328:21033249,32559630:224824 -k1,13328:23100945,32559630:224824 -k1,13328:25884295,32559630:224824 -k1,13328:29389851,32559630:224824 -(1,13328:29389851,32559630:0,414482,115847 -r1,13381:31154964,32559630:1765113,530329,115847 -k1,13328:29389851,32559630:-1765113 -) -(1,13328:29389851,32559630:1765113,414482,115847 -k1,13328:29389851,32559630:3277 -h1,13328:31151687,32559630:0,411205,112570 -) -k1,13328:31379788,32559630:224824 -k1,13328:32583029,32559630:0 -) -(1,13329:6630773,33401118:25952256,513147,126483 -k1,13328:7963382,33401118:200147 -k1,13328:8911295,33401118:200147 -k1,13328:10878948,33401118:200147 -k1,13328:11765257,33401118:200147 -k1,13328:12984489,33401118:200147 -k1,13328:14786336,33401118:200147 -k1,13328:17672804,33401118:200147 -k1,13328:19860657,33401118:200146 -k1,13328:20712232,33401118:200147 -k1,13328:21660145,33401118:200147 -k1,13328:24826451,33401118:200147 -k1,13328:25678026,33401118:200147 -k1,13328:28205356,33401118:200147 -k1,13328:29064795,33401118:200147 -k1,13328:30421652,33401118:200147 -k1,13328:32583029,33401118:0 -) -(1,13329:6630773,34242606:25952256,505283,126483 -k1,13328:7772249,34242606:273124 -k1,13328:9482577,34242606:273123 -k1,13328:10928140,34242606:273124 -k1,13328:13318731,34242606:273123 -k1,13328:15909863,34242606:273124 -k1,13328:16799025,34242606:273124 -k1,13328:17428008,34242606:273123 -k1,13328:18694658,34242606:273124 -k1,13328:20159226,34242606:273123 -k1,13328:22170365,34242606:273124 -k1,13328:24082544,34242606:273124 -(1,13328:24082544,34242606:0,452978,115847 -r1,13381:25847657,34242606:1765113,568825,115847 -k1,13328:24082544,34242606:-1765113 -) -(1,13328:24082544,34242606:1765113,452978,115847 -k1,13328:24082544,34242606:3277 -h1,13328:25844380,34242606:0,411205,112570 -) -k1,13328:26120780,34242606:273123 -k1,13328:27585349,34242606:273124 -(1,13328:27585349,34242606:0,414482,115847 -r1,13381:29350462,34242606:1765113,530329,115847 -k1,13328:27585349,34242606:-1765113 -) -(1,13328:27585349,34242606:1765113,414482,115847 -k1,13328:27585349,34242606:3277 -h1,13328:29347185,34242606:0,411205,112570 -) -k1,13328:29797255,34242606:273123 -k1,13328:31450567,34242606:273124 -k1,13328:32583029,34242606:0 -) -(1,13329:6630773,35084094:25952256,513147,126483 -k1,13328:9126209,35084094:242964 -k1,13328:10388257,35084094:242963 -k1,13328:12457709,35084094:242964 -k1,13328:13359965,35084094:242964 -k1,13328:14622014,35084094:242964 -k1,13328:17620111,35084094:242963 -k1,13328:20107028,35084094:242964 -k1,13328:20977827,35084094:242964 -k1,13328:22239876,35084094:242964 -k1,13328:23866959,35084094:242963 -k1,13328:26771340,35084094:242964 -k1,13328:27882656,35084094:242964 -k1,13328:29150603,35084094:242964 -k1,13328:30678072,35084094:242963 -k1,13328:32227169,35084094:242964 -k1,13328:32583029,35084094:0 -) -(1,13329:6630773,35925582:25952256,505283,115847 -k1,13328:9969431,35925582:270262 -k1,13328:12309975,35925582:270262 -k1,13328:13111734,35925582:270262 -k1,13328:14959448,35925582:270262 -k1,13328:16421155,35925582:270262 -k1,13328:18203989,35925582:270263 -(1,13328:18203989,35925582:0,452978,115847 -r1,13381:19969102,35925582:1765113,568825,115847 -k1,13328:18203989,35925582:-1765113 -) -(1,13328:18203989,35925582:1765113,452978,115847 -k1,13328:18203989,35925582:3277 -h1,13328:19965825,35925582:0,411205,112570 -) -k1,13328:20239364,35925582:270262 -k1,13328:21041123,35925582:270262 -k1,13328:24086835,35925582:270262 -k1,13328:25043259,35925582:270262 -k1,13328:27881877,35925582:270262 -k1,13328:31253303,35925582:270262 -k1,13328:32583029,35925582:0 -) -(1,13329:6630773,36767070:25952256,513147,126483 -k1,13328:11146382,36767070:262978 -k1,13328:11765220,36767070:262978 -k1,13328:14561820,36767070:262978 -k1,13328:16895080,36767070:262978 -k1,13328:17689555,36767070:262978 -k1,13328:19529985,36767070:262978 -k1,13328:24493861,36767070:262978 -k1,13328:25704490,36767070:262978 -k1,13328:26323328,36767070:262978 -k1,13328:28574013,36767070:262978 -k1,13328:30230942,36767070:262978 -k1,13328:32583029,36767070:0 -) -(1,13329:6630773,37608558:25952256,485622,11795 -k1,13329:32583029,37608558:24622530 -g1,13329:32583029,37608558 -) -v1,13331:6630773,38589308:0,393216,0 -(1,13381:6630773,45510161:25952256,7314069,196608 -g1,13381:6630773,45510161 -g1,13381:6630773,45510161 -g1,13381:6434165,45510161 -(1,13381:6434165,45510161:0,7314069,196608 -r1,13381:32779637,45510161:26345472,7510677,196608 -k1,13381:6434165,45510161:-26345472 -) -(1,13381:6434165,45510161:26345472,7314069,196608 -[1,13381:6630773,45510161:25952256,7117461,0 -(1,13333:6630773,38803218:25952256,410518,9436 -(1,13332:6630773,38803218:0,0,0 -g1,13332:6630773,38803218 -g1,13332:6630773,38803218 -g1,13332:6303093,38803218 -(1,13332:6303093,38803218:0,0,0 -) -g1,13332:6630773,38803218 -) -g1,13333:8211502,38803218 -k1,13333:8211502,38803218:0 -h1,13333:8843794,38803218:0,0,0 -k1,13333:32583030,38803218:23739236 -g1,13333:32583030,38803218 -) -(1,13334:6630773,39469396:25952256,410518,101187 -h1,13334:6630773,39469396:0,0,0 -g1,13334:6946919,39469396 -g1,13334:7263065,39469396 -k1,13334:7263065,39469396:0 -h1,13334:10108377,39469396:0,0,0 -k1,13334:32583029,39469396:22474652 -g1,13334:32583029,39469396 -) -(1,13335:6630773,40135574:25952256,404226,101187 -h1,13335:6630773,40135574:0,0,0 -g1,13335:6946919,40135574 -g1,13335:7263065,40135574 -g1,13335:7579211,40135574 -g1,13335:7895357,40135574 -g1,13335:8211503,40135574 -g1,13335:8527649,40135574 -g1,13335:8843795,40135574 -g1,13335:10740669,40135574 -g1,13335:11372961,40135574 -g1,13335:12953690,40135574 -g1,13335:13585982,40135574 -g1,13335:15482856,40135574 -g1,13335:16115148,40135574 -g1,13335:19592752,40135574 -g1,13335:20225044,40135574 -g1,13335:23702648,40135574 -g1,13335:24334940,40135574 -k1,13335:24334940,40135574:0 -h1,13335:27812543,40135574:0,0,0 -k1,13335:32583029,40135574:4770486 -g1,13335:32583029,40135574 -) -(1,13357:6630773,40745728:25952256,388497,9436 -(1,13337:6630773,40745728:0,0,0 -g1,13337:6630773,40745728 -g1,13337:6630773,40745728 -g1,13337:6303093,40745728 -(1,13337:6303093,40745728:0,0,0 -) -g1,13337:6630773,40745728 -) -g1,13357:7579210,40745728 -g1,13357:9792230,40745728 -g1,13357:10108376,40745728 -h1,13357:13269833,40745728:0,0,0 -k1,13357:32583029,40745728:19313196 -g1,13357:32583029,40745728 -) -(1,13357:6630773,41411906:25952256,404226,101187 -h1,13357:6630773,41411906:0,0,0 -g1,13357:7579210,41411906 -g1,13357:9159939,41411906 -g1,13357:9792231,41411906 -g1,13357:11689105,41411906 -g1,13357:12321397,41411906 -h1,13357:15482854,41411906:0,0,0 -k1,13357:32583030,41411906:17100176 -g1,13357:32583030,41411906 -) -(1,13357:6630773,42078084:25952256,379060,0 -h1,13357:6630773,42078084:0,0,0 -h1,13357:7263064,42078084:0,0,0 -k1,13357:32583028,42078084:25319964 -g1,13357:32583028,42078084 -) -(1,13357:6630773,42744262:25952256,410518,101187 -h1,13357:6630773,42744262:0,0,0 -g1,13357:7579210,42744262 -g1,13357:7895356,42744262 -g1,13357:8211502,42744262 -g1,13357:8527648,42744262 -g1,13357:8843794,42744262 -g1,13357:9159940,42744262 -g1,13357:9476086,42744262 -g1,13357:9792232,42744262 -g1,13357:10108378,42744262 -g1,13357:10424524,42744262 -g1,13357:10740670,42744262 -g1,13357:11056816,42744262 -g1,13357:11372962,42744262 -g1,13357:11689108,42744262 -g1,13357:12637545,42744262 -g1,13357:13902128,42744262 -g1,13357:14850565,42744262 -g1,13357:15799002,42744262 -g1,13357:16115148,42744262 -g1,13357:16431294,42744262 -g1,13357:17695877,42744262 -g1,13357:18012023,42744262 -g1,13357:18328169,42744262 -g1,13357:18644315,42744262 -h1,13357:19592752,42744262:0,0,0 -k1,13357:32583029,42744262:12990277 -g1,13357:32583029,42744262 -) -(1,13357:6630773,43410440:25952256,404226,101187 -h1,13357:6630773,43410440:0,0,0 -g1,13357:7579210,43410440 -g1,13357:8211502,43410440 -g1,13357:10108376,43410440 -g1,13357:10424522,43410440 -g1,13357:10740668,43410440 -g1,13357:11056814,43410440 -g1,13357:11372960,43410440 -g1,13357:11689106,43410440 -g1,13357:12005252,43410440 -g1,13357:12637544,43410440 -g1,13357:12953690,43410440 -g1,13357:13269836,43410440 -g1,13357:13585982,43410440 -g1,13357:13902128,43410440 -g1,13357:15799002,43410440 -g1,13357:17695876,43410440 -h1,13357:19592750,43410440:0,0,0 -k1,13357:32583029,43410440:12990279 -g1,13357:32583029,43410440 -) -(1,13357:6630773,44076618:25952256,388497,9436 -h1,13357:6630773,44076618:0,0,0 -g1,13357:7579210,44076618 -g1,13357:9792230,44076618 -g1,13357:10108376,44076618 -g1,13357:10424522,44076618 -g1,13357:10740668,44076618 -g1,13357:11056814,44076618 -g1,13357:11372960,44076618 -g1,13357:11689106,44076618 -g1,13357:12005252,44076618 -g1,13357:12321398,44076618 -g1,13357:12637544,44076618 -g1,13357:12953690,44076618 -g1,13357:13269836,44076618 -g1,13357:13585982,44076618 -g1,13357:13902128,44076618 -g1,13357:14218274,44076618 -g1,13357:14534420,44076618 -g1,13357:14850566,44076618 -g1,13357:15166712,44076618 -g1,13357:15482858,44076618 -g1,13357:15799004,44076618 -g1,13357:17695878,44076618 -h1,13357:19592752,44076618:0,0,0 -k1,13357:32583029,44076618:12990277 -g1,13357:32583029,44076618 -) -(1,13357:6630773,44742796:25952256,404226,101187 -h1,13357:6630773,44742796:0,0,0 -g1,13357:7579210,44742796 -g1,13357:8211502,44742796 -g1,13357:11689105,44742796 -g1,13357:12005251,44742796 -g1,13357:12637543,44742796 -g1,13357:12953689,44742796 -g1,13357:13269835,44742796 -g1,13357:13585981,44742796 -g1,13357:15799001,44742796 -g1,13357:17695875,44742796 -h1,13357:19592749,44742796:0,0,0 -k1,13357:32583029,44742796:12990280 -g1,13357:32583029,44742796 -) -(1,13357:6630773,45408974:25952256,404226,101187 -h1,13357:6630773,45408974:0,0,0 -g1,13357:7579210,45408974 -g1,13357:8211502,45408974 -g1,13357:11689105,45408974 -g1,13357:12005251,45408974 -g1,13357:12637543,45408974 -g1,13357:12953689,45408974 -g1,13357:13269835,45408974 -g1,13357:13585981,45408974 -g1,13357:15799001,45408974 -g1,13357:17695875,45408974 -h1,13357:19592749,45408974:0,0,0 -k1,13357:32583029,45408974:12990280 -g1,13357:32583029,45408974 -) -] -) -g1,13381:32583029,45510161 -g1,13381:6630773,45510161 -g1,13381:6630773,45510161 -g1,13381:32583029,45510161 -g1,13381:32583029,45510161 -) -] -(1,13381:32583029,45706769:0,0,0 -g1,13381:32583029,45706769 -) -) -] -(1,13381:6630773,47279633:25952256,0,0 -h1,13381:6630773,47279633:25952256,0,0 -) -] -(1,13381:4262630,4025873:0,0,0 -[1,13381:-473656,4025873:0,0,0 -(1,13381:-473656,-710413:0,0,0 -(1,13381:-473656,-710413:0,0,0 -g1,13381:-473656,-710413 -) -g1,13381:-473656,-710413 -) -] -) -] -!28804 -}228 -Input:2028:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2029:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2030:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2031:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2032:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2033:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2034:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2035:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2036:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2037:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2038:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2039:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2040:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1234 -{229 -[1,13432:4262630,47279633:28320399,43253760,0 -(1,13432:4262630,4025873:0,0,0 -[1,13432:-473656,4025873:0,0,0 -(1,13432:-473656,-710413:0,0,0 -(1,13432:-473656,-644877:0,0,0 -k1,13432:-473656,-644877:-65536 +g1,13017:6630773,4812305 +g1,13017:6630773,4812305 +g1,13017:8843268,4812305 +g1,13017:10880782,4812305 +g1,13017:13281365,4812305 +k1,13017:31387653,4812305:18106288 +) +) +] +[1,13017:6630773,45706769:25952256,40108032,0 +(1,13017:6630773,45706769:25952256,40108032,0 +(1,13017:6630773,45706769:0,0,0 +g1,13017:6630773,45706769 +) +[1,13017:6630773,45706769:25952256,40108032,0 +(1,12808:6630773,14314365:25952256,8715628,0 +k1,12808:7835237,14314365:1204464 +(1,12782:7835237,14314365:0,0,0 +g1,12782:7835237,14314365 +g1,12782:7835237,14314365 +g1,12782:7507557,14314365 +(1,12782:7507557,14314365:0,0,0 +) +g1,12782:7835237,14314365 +) +(1,12806:7835237,14314365:23543329,8715628,0 +g1,12806:10951523,14314365 +(1,12806:10951523,8091871:0,0,0 +(1,12806:10951523,8091871:0,0,0 +g1,12784:10951523,8091871 +(1,12785:10951523,8091871:0,0,0 +(1,12785:10951523,8091871:0,0,0 +g1,12785:10951523,8091871 +g1,12785:10951523,8091871 +g1,12785:10951523,8091871 +g1,12785:10951523,8091871 +g1,12785:10951523,8091871 +(1,12785:10951523,8091871:0,0,0 +(1,12785:10951523,8091871:4940249,454754,104590 +(1,12785:10951523,8091871:4940249,454754,104590 +g1,12785:12882607,8091871 +$1,12785:12882607,8091871 +$1,12785:13490126,8091871 +g1,12785:13669433,8091871 +(1,12785:13669433,8091871:0,414307,104590 +r1,13017:15891772,8091871:2222339,518897,104590 +k1,12785:13669433,8091871:-2222339 +) +(1,12785:13669433,8091871:2222339,414307,104590 +k1,12785:13669433,8091871:3277 +h1,12785:15888495,8091871:0,370085,101313 +) +) +g1,12785:15891772,8091871 +) +) +g1,12785:10951523,8091871 +g1,12785:10951523,8091871 +) +) +g1,12785:10951523,8091871 +(1,12786:10951523,8091871:0,0,0 +(1,12786:10951523,8091871:0,0,0 +g1,12786:10951523,8091871 +g1,12786:10951523,8091871 +g1,12786:10951523,8091871 +g1,12786:10951523,8091871 +g1,12786:10951523,8091871 +(1,12786:10951523,8091871:0,0,0 +(1,12786:10951523,8091871:5813184,454754,104590 +(1,12786:10951523,8091871:5813184,454754,104590 +g1,12786:14705164,8091871 +$1,12786:14705164,8091871 +$1,12786:15312683,8091871 +g1,12786:15491990,8091871 +(1,12786:15491990,8091871:0,408008,104590 +r1,13017:16764707,8091871:1272717,512598,104590 +k1,12786:15491990,8091871:-1272717 +) +(1,12786:15491990,8091871:1272717,408008,104590 +k1,12786:15491990,8091871:3277 +h1,12786:16761430,8091871:0,370085,101313 +) +) +g1,12786:16764707,8091871 +) +) +g1,12786:10951523,8091871 +g1,12786:10951523,8091871 +) +) +g1,12786:10951523,8091871 +(1,12787:10951523,8091871:0,0,0 +(1,12787:10951523,8091871:0,0,0 +g1,12787:10951523,8091871 +g1,12787:10951523,8091871 +g1,12787:10951523,8091871 +g1,12787:10951523,8091871 +g1,12787:10951523,8091871 +(1,12787:10951523,8091871:0,0,0 +(1,12787:10951523,8091871:5356075,454754,120913 +(1,12787:10951523,8091871:5356075,454754,120913 +g1,12787:13298433,8091871 +$1,12787:13298433,8091871 +$1,12787:13905952,8091871 +g1,12787:14085259,8091871 +(1,12787:14085259,8091871:0,408008,110889 +r1,13017:16307598,8091871:2222339,518897,110889 +k1,12787:14085259,8091871:-2222339 +) +(1,12787:14085259,8091871:2222339,408008,110889 +k1,12787:14085259,8091871:3277 +h1,12787:16304321,8091871:0,370085,101313 +) +) +g1,12787:16307598,8091871 +) +) +g1,12787:10951523,8091871 +g1,12787:10951523,8091871 +) +) +g1,12787:10951523,8091871 +(1,12788:10951523,8091871:0,0,0 +(1,12788:10951523,8091871:0,0,0 +g1,12788:10951523,8091871 +g1,12788:10951523,8091871 +g1,12788:10951523,8091871 +g1,12788:10951523,8091871 +g1,12788:10951523,8091871 +(1,12788:10951523,8091871:0,0,0 +(1,12788:10951523,8091871:1272717,408008,104590 +(1,12788:10951523,8091871:1272717,408008,104590 +(1,12788:10951523,8091871:0,408008,104590 +r1,13017:12224240,8091871:1272717,512598,104590 +k1,12788:10951523,8091871:-1272717 +) +(1,12788:10951523,8091871:1272717,408008,104590 +k1,12788:10951523,8091871:3277 +h1,12788:12220963,8091871:0,370085,101313 +) +) +g1,12788:12224240,8091871 +) +) +g1,12788:10951523,8091871 +g1,12788:10951523,8091871 +) +) +g1,12788:10951523,8091871 +(1,12789:10951523,8091871:0,0,0 +(1,12789:10951523,8091871:0,0,0 +g1,12789:10951523,8091871 +g1,12789:10951523,8091871 +g1,12789:10951523,8091871 +g1,12789:10951523,8091871 +g1,12789:10951523,8091871 +(1,12789:10951523,8091871:0,0,0 +(1,12789:10951523,8091871:2550076,454754,120913 +(1,12789:10951523,8091871:2550076,454754,120913 +(1,12789:10951523,8091871:0,408008,104590 +r1,13017:11591158,8091871:639635,512598,104590 +k1,12789:10951523,8091871:-639635 +) +(1,12789:10951523,8091871:639635,408008,104590 +k1,12789:10951523,8091871:3277 +h1,12789:11587881,8091871:0,370085,101313 +) +g1,12789:11770465,8091871 +) +g1,12789:13501599,8091871 +) +) +g1,12789:10951523,8091871 +g1,12789:10951523,8091871 +) +) +g1,12789:10951523,8091871 +(1,12790:10951523,8091871:0,0,0 +(1,12790:10951523,8091871:0,0,0 +g1,12790:10951523,8091871 +g1,12790:10951523,8091871 +g1,12790:10951523,8091871 +g1,12790:10951523,8091871 +g1,12790:10951523,8091871 +(1,12790:10951523,8091871:0,0,0 +(1,12790:10951523,8091871:2538879,414307,104590 +(1,12790:10951523,8091871:2538879,414307,104590 +(1,12790:10951523,8091871:0,414307,104590 +r1,13017:13490402,8091871:2538879,518897,104590 +k1,12790:10951523,8091871:-2538879 +) +(1,12790:10951523,8091871:2538879,414307,104590 +k1,12790:10951523,8091871:3277 +h1,12790:13487125,8091871:0,370085,101313 +) +) +g1,12790:13490402,8091871 +) +) +g1,12790:10951523,8091871 +g1,12790:10951523,8091871 +) +) +g1,12790:10951523,8091871 +(1,12791:10951523,8091871:0,0,0 +(1,12791:10951523,8091871:0,0,0 +g1,12791:10951523,8091871 +g1,12791:10951523,8091871 +g1,12791:10951523,8091871 +g1,12791:10951523,8091871 +g1,12791:10951523,8091871 +(1,12791:10951523,8091871:0,0,0 +(1,12791:10951523,8091871:3488501,408008,104590 +(1,12791:10951523,8091871:3488501,408008,104590 +(1,12791:10951523,8091871:0,408008,104590 +r1,13017:14440024,8091871:3488501,512598,104590 +k1,12791:10951523,8091871:-3488501 +) +(1,12791:10951523,8091871:3488501,408008,104590 +k1,12791:10951523,8091871:3277 +h1,12791:14436747,8091871:0,370085,101313 ) -(1,13432:-473656,4736287:0,0,0 -k1,13432:-473656,4736287:5209943 ) -g1,13432:-473656,-710413 +g1,12791:14440024,8091871 +) +) +g1,12791:10951523,8091871 +g1,12791:10951523,8091871 +) +) +g1,12791:10951523,8091871 +(1,12792:10951523,8091871:0,0,0 +(1,12792:10951523,8091871:0,0,0 +g1,12792:10951523,8091871 +g1,12792:10951523,8091871 +g1,12792:10951523,8091871 +g1,12792:10951523,8091871 +g1,12792:10951523,8091871 +(1,12792:10951523,8091871:0,0,0 +(1,12792:10951523,8091871:1905798,414307,104590 +(1,12792:10951523,8091871:1905798,414307,104590 +(1,12792:10951523,8091871:0,414307,104590 +r1,13017:12857321,8091871:1905798,518897,104590 +k1,12792:10951523,8091871:-1905798 +) +(1,12792:10951523,8091871:1905798,414307,104590 +k1,12792:10951523,8091871:3277 +h1,12792:12854044,8091871:0,370085,101313 +) +) +g1,12792:12857321,8091871 +) +) +g1,12792:10951523,8091871 +g1,12792:10951523,8091871 +) +) +g1,12792:10951523,8091871 +(1,12793:10951523,8091871:0,0,0 +(1,12793:10951523,8091871:0,0,0 +g1,12793:10951523,8091871 +g1,12793:10951523,8091871 +g1,12793:10951523,8091871 +g1,12793:10951523,8091871 +g1,12793:10951523,8091871 +(1,12793:10951523,8091871:0,0,0 +(1,12793:10951523,8091871:3514124,408008,104590 +(1,12793:10951523,8091871:3514124,408008,104590 +(1,12793:10951523,8091871:0,408008,104590 +r1,13017:12540780,8091871:1589257,512598,104590 +k1,12793:10951523,8091871:-1589257 +) +(1,12793:10951523,8091871:1589257,408008,104590 +k1,12793:10951523,8091871:3277 +h1,12793:12537503,8091871:0,370085,101313 +) +g1,12793:12876390,8091871 +(1,12793:12876390,8091871:0,408008,104590 +r1,13017:14465647,8091871:1589257,512598,104590 +k1,12793:12876390,8091871:-1589257 +) +(1,12793:12876390,8091871:1589257,408008,104590 +k1,12793:12876390,8091871:3277 +h1,12793:14462370,8091871:0,370085,101313 +) +) +g1,12793:14465647,8091871 +) +) +g1,12793:10951523,8091871 +g1,12793:10951523,8091871 +) +) +g1,12793:10951523,8091871 +(1,12794:10951523,8091871:0,0,0 +(1,12794:10951523,8091871:0,0,0 +g1,12794:10951523,8091871 +g1,12794:10951523,8091871 +g1,12794:10951523,8091871 +g1,12794:10951523,8091871 +g1,12794:10951523,8091871 +(1,12794:10951523,8091871:0,0,0 +(1,12794:10951523,8091871:2855420,408008,104590 +(1,12794:10951523,8091871:2855420,408008,104590 +(1,12794:10951523,8091871:0,408008,104590 +r1,13017:13806943,8091871:2855420,512598,104590 +k1,12794:10951523,8091871:-2855420 +) +(1,12794:10951523,8091871:2855420,408008,104590 +k1,12794:10951523,8091871:3277 +h1,12794:13803666,8091871:0,370085,101313 +) +) +g1,12794:13806943,8091871 +) +) +g1,12794:10951523,8091871 +g1,12794:10951523,8091871 +) +) +g1,12794:10951523,8091871 +(1,12795:10951523,8091871:0,0,0 +(1,12795:10951523,8091871:0,0,0 +g1,12795:10951523,8091871 +g1,12795:10951523,8091871 +g1,12795:10951523,8091871 +g1,12795:10951523,8091871 +g1,12795:10951523,8091871 +(1,12795:10951523,8091871:0,0,0 +(1,12795:10951523,8091871:6040272,454754,113835 +(1,12795:10951523,8091871:6040272,454754,113835 +g1,12795:12422545,8091871 +g1,12795:13982630,8091871 +$1,12795:13982630,8091871 +$1,12795:14590149,8091871 +g1,12795:14769456,8091871 +(1,12795:14769456,8091871:0,408008,104590 +r1,13017:16991795,8091871:2222339,512598,104590 +k1,12795:14769456,8091871:-2222339 +) +(1,12795:14769456,8091871:2222339,408008,104590 +k1,12795:14769456,8091871:3277 +h1,12795:16988518,8091871:0,370085,101313 +) +) +g1,12795:16991795,8091871 +) +) +g1,12795:10951523,8091871 +g1,12795:10951523,8091871 +) +) +g1,12795:10951523,8091871 +g1,12796:10951523,8091871 +g1,12796:10951523,8091871 +g1,12796:10951523,8091871 +g1,12796:10951523,8091871 +g1,12796:10951523,8091871 +g1,12796:10951523,8091871 +g1,12797:10951523,8091871 +g1,12797:10951523,8091871 +g1,12797:10951523,8091871 +g1,12797:10951523,8091871 +g1,12797:10951523,8091871 +g1,12797:10951523,8091871 +g1,12798:10951523,8091871 +g1,12798:10951523,8091871 +g1,12798:10951523,8091871 +g1,12798:10951523,8091871 +g1,12798:10951523,8091871 +g1,12798:10951523,8091871 +g1,12799:10951523,8091871 +g1,12799:10951523,8091871 +g1,12799:10951523,8091871 +g1,12799:10951523,8091871 +g1,12799:10951523,8091871 +g1,12799:10951523,8091871 +g1,12800:10951523,8091871 +g1,12800:10951523,8091871 +g1,12800:10951523,8091871 +g1,12800:10951523,8091871 +g1,12800:10951523,8091871 +g1,12800:10951523,8091871 +g1,12801:10951523,8091871 +g1,12801:10951523,8091871 +g1,12801:10951523,8091871 +g1,12801:10951523,8091871 +g1,12801:10951523,8091871 +g1,12801:10951523,8091871 +g1,12802:10951523,8091871 +g1,12802:10951523,8091871 +g1,12802:10951523,8091871 +g1,12802:10951523,8091871 +g1,12802:10951523,8091871 +g1,12802:10951523,8091871 +g1,12803:10951523,8091871 +g1,12803:10951523,8091871 +g1,12803:10951523,8091871 +g1,12803:10951523,8091871 +g1,12803:10951523,8091871 +g1,12803:10951523,8091871 +g1,12804:10951523,8091871 +g1,12804:10951523,8091871 +g1,12804:10951523,8091871 +g1,12804:10951523,8091871 +g1,12804:10951523,8091871 +g1,12804:10951523,8091871 +g1,12805:10951523,8091871 +g1,12805:10951523,8091871 +g1,12805:10951523,8091871 +g1,12805:10951523,8091871 +g1,12805:10951523,8091871 +g1,12805:10951523,8091871 +g1,12806:10951523,8091871 +g1,12806:10951523,8091871 +) +g1,12806:10951523,8091871 +) +) +g1,12808:31378566,14314365 +k1,12808:32583029,14314365:1204463 +) +v1,12811:6630773,15834805:0,393216,0 +(1,12812:6630773,17963925:25952256,2522336,0 +g1,12812:6630773,17963925 +g1,12812:6237557,17963925 +r1,13017:6368629,17963925:131072,2522336,0 +g1,12812:6567858,17963925 +g1,12812:6764466,17963925 +[1,12812:6764466,17963925:25818563,2522336,0 +(1,12812:6764466,16107282:25818563,665693,196608 +(1,12811:6764466,16107282:0,665693,196608 +r1,13017:8010564,16107282:1246098,862301,196608 +k1,12811:6764466,16107282:-1246098 +) +(1,12811:6764466,16107282:1246098,665693,196608 +) +k1,12811:8157011,16107282:146447 +k1,12811:9474940,16107282:327680 +k1,12811:13146569,16107282:146447 +k1,12811:15899383,16107282:146447 +k1,12811:17439781,16107282:146447 +k1,12811:19282954,16107282:146446 +k1,12811:22643942,16107282:146447 +k1,12811:23981834,16107282:146447 +k1,12811:27118689,16107282:146447 +k1,12811:30049761,16107282:146447 +k1,12811:30957736,16107282:146447 +k1,12812:32583029,16107282:0 +) +(1,12812:6764466,16972362:25818563,513147,134348 +k1,12811:7939105,16972362:184390 +k1,12811:9632134,16972362:184390 +k1,12811:14642594,16972362:184389 +k1,12811:16018429,16972362:184390 +k1,12811:17295304,16972362:184390 +k1,12811:19118749,16972362:184390 +k1,12811:19954566,16972362:184389 +k1,12811:22507427,16972362:184390 +(1,12811:22507427,16972362:0,459977,115847 +r1,13017:23569116,16972362:1061689,575824,115847 +k1,12811:22507427,16972362:-1061689 +) +(1,12811:22507427,16972362:1061689,459977,115847 +k1,12811:22507427,16972362:3277 +h1,12811:23565839,16972362:0,411205,112570 +) +k1,12811:23753506,16972362:184390 +k1,12811:25650352,16972362:184390 +k1,12811:27690066,16972362:184390 +k1,12811:28557340,16972362:184389 +k1,12811:30729437,16972362:184390 +k1,12811:31931601,16972362:184390 +k1,12811:32583029,16972362:0 +) +(1,12812:6764466,17837442:25818563,513147,126483 +g1,12811:8665665,17837442 +g1,12811:10254257,17837442 +g1,12811:11112778,17837442 +g1,12811:12770838,17837442 +k1,12812:32583029,17837442:17195338 +g1,12812:32583029,17837442 +) +] +g1,12812:32583029,17963925 +) +h1,12812:6630773,17963925:0,0,0 +v1,12814:6630773,18829005:0,393216,0 +(1,13017:6630773,36395984:25952256,17960195,0 +g1,13017:6630773,36395984 +g1,13017:6237557,36395984 +r1,13017:6368629,36395984:131072,17960195,0 +g1,13017:6567858,36395984 +g1,13017:6764466,36395984 +[1,13017:6764466,36395984:25818563,17960195,0 +(1,12816:6764466,19137303:25818563,701514,196608 +(1,12814:6764466,19137303:0,701514,196608 +r1,13017:8010564,19137303:1246098,898122,196608 +k1,12814:6764466,19137303:-1246098 +) +(1,12814:6764466,19137303:1246098,701514,196608 +) +k1,12814:8286626,19137303:276062 +k1,12814:8614306,19137303:327680 +k1,12814:8614306,19137303:0 +k1,12815:10087054,19137303:276061 +k1,12815:12652944,19137303:276062 +k1,12815:15707733,19137303:276062 +k1,12815:16745323,19137303:276062 +k1,12815:19009091,19137303:276061 +k1,12815:21219776,19137303:276062 +k1,12815:24521635,19137303:276062 +k1,12815:27169445,19137303:276062 +k1,12815:28464591,19137303:276061 +k1,12815:29830517,19137303:276062 +k1,12816:32583029,19137303:0 +) +(1,12816:6764466,20002383:25818563,513147,134348 +k1,12815:8386670,20002383:181067 +k1,12815:11548313,20002383:181066 +k1,12815:12748465,20002383:181067 +k1,12815:14318895,20002383:181067 +k1,12815:15151389,20002383:181066 +k1,12815:17217927,20002383:181067 +k1,12815:18418079,20002383:181067 +k1,12815:20586852,20002383:181066 +k1,12815:21975092,20002383:181067 +k1,12815:22843631,20002383:181066 +k1,12815:23849796,20002383:181067 +k1,12815:25717104,20002383:181067 +k1,12815:28829595,20002383:181066 +k1,12815:32227169,20002383:181067 +k1,12815:32583029,20002383:0 +) +(1,12816:6764466,20867463:25818563,513147,134348 +k1,12815:9083598,20867463:201664 +k1,12815:10452457,20867463:201663 +k1,12815:11281956,20867463:201664 +k1,12815:13085320,20867463:201664 +k1,12815:14984365,20867463:201663 +k1,12815:16205114,20867463:201664 +k1,12815:17961947,20867463:201664 +k1,12815:18822902,20867463:201663 +k1,12815:20043651,20867463:201664 +k1,12815:22535142,20867463:201663 +k1,12815:25515533,20867463:201664 +k1,12815:26478725,20867463:201664 +k1,12815:28668095,20867463:201663 +k1,12815:29557232,20867463:201664 +k1,12815:32583029,20867463:0 +) +(1,12816:6764466,21732543:25818563,513147,134348 +k1,12815:8995561,21732543:187682 +k1,12815:9799281,21732543:187682 +k1,12815:11724978,21732543:187682 +k1,12815:13306611,21732543:187682 +k1,12815:14513378,21732543:187682 +k1,12815:16439075,21732543:187682 +k1,12815:17286048,21732543:187681 +k1,12815:18492815,21732543:187682 +k1,12815:21568669,21732543:187682 +k1,12815:24451847,21732543:187682 +(1,12815:24658941,21732543:0,452978,115847 +r1,13017:26072342,21732543:1413401,568825,115847 +k1,12815:24658941,21732543:-1413401 +) +(1,12815:24658941,21732543:1413401,452978,115847 +k1,12815:24658941,21732543:3277 +h1,12815:26069065,21732543:0,411205,112570 +) +k1,12815:26260024,21732543:187682 +k1,12815:27063744,21732543:187682 +k1,12815:28454667,21732543:187682 +k1,12815:31510860,21732543:187682 +k1,12815:32583029,21732543:0 +) +(1,12816:6764466,22597623:25818563,513147,115847 +k1,12815:7558002,22597623:262039 +k1,12815:8886312,22597623:262039 +k1,12815:11531240,22597623:262039 +k1,12815:13360900,22597623:262039 +k1,12815:14037719,22597623:261976 +k1,12815:15854927,22597623:262039 +(1,12815:15854927,22597623:0,452978,115847 +r1,13017:17971752,22597623:2116825,568825,115847 +k1,12815:15854927,22597623:-2116825 +) +(1,12815:15854927,22597623:2116825,452978,115847 +k1,12815:15854927,22597623:3277 +h1,12815:17968475,22597623:0,411205,112570 +) +k1,12815:18407461,22597623:262039 +k1,12815:19866187,22597623:262039 +k1,12815:22890569,22597623:262039 +k1,12815:26178405,22597623:262039 +k1,12815:29530467,22597623:262039 +k1,12815:31821501,22597623:262039 +k1,12816:32583029,22597623:0 +) +(1,12816:6764466,23462703:25818563,513147,134348 +k1,12815:8239954,23462703:168045 +k1,12815:10611975,23462703:168045 +k1,12815:12432183,23462703:168045 +k1,12815:13259521,23462703:168046 +k1,12815:14446651,23462703:168045 +k1,12815:16574222,23462703:168045 +k1,12815:17425152,23462703:168045 +k1,12815:18408465,23462703:168045 +k1,12815:21803503,23462703:168045 +k1,12815:25773292,23462703:168046 +k1,12815:27132782,23462703:168045 +k1,12815:30728360,23462703:168045 +k1,12815:32583029,23462703:0 +) +(1,12816:6764466,24327783:25818563,513147,126483 +k1,12815:7845274,24327783:271438 +k1,12815:9929438,24327783:271438 +k1,12815:12033263,24327783:271438 +k1,12815:13296261,24327783:271438 +k1,12815:16330042,24327783:271438 +k1,12815:21340388,24327783:271438 +k1,12815:22271118,24327783:271438 +k1,12815:24239283,24327783:271438 +k1,12815:27295346,24327783:271438 +k1,12815:29452255,24327783:271438 +k1,12815:30715253,24327783:271438 +k1,12815:32583029,24327783:0 +) +(1,12816:6764466,25192863:25818563,513147,134348 +g1,12815:10325692,25192863 +g1,12815:11334291,25192863 +g1,12815:12552605,25192863 +g1,12815:14307003,25192863 +g1,12815:15165524,25192863 +g1,12815:16383838,25192863 +g1,12815:19471239,25192863 +g1,12815:21803665,25192863 +g1,12815:23259875,25192863 +g1,12815:25737791,25192863 +h1,12815:26708379,25192863:0,0,0 +g1,12815:26907608,25192863 +g1,12815:27916207,25192863 +g1,12815:29613589,25192863 +h1,12815:30808966,25192863:0,0,0 +k1,12816:32583029,25192863:1393299 +g1,12816:32583029,25192863 +) +v1,12818:6764466,25877718:0,393216,0 +(1,12833:6764466,30009468:25818563,4524966,196608 +g1,12833:6764466,30009468 +g1,12833:6764466,30009468 +g1,12833:6567858,30009468 +(1,12833:6567858,30009468:0,4524966,196608 +r1,13017:32779637,30009468:26211779,4721574,196608 +k1,12833:6567857,30009468:-26211780 +) +(1,12833:6567858,30009468:26211779,4524966,196608 +[1,12833:6764466,30009468:25818563,4328358,0 +(1,12820:6764466,26112155:25818563,431045,79822 +(1,12819:6764466,26112155:0,0,0 +g1,12819:6764466,26112155 +g1,12819:6764466,26112155 +g1,12819:6436786,26112155 +(1,12819:6436786,26112155:0,0,0 +) +g1,12819:6764466,26112155 +) +k1,12820:6764466,26112155:0 +h1,12820:10084006,26112155:0,0,0 +k1,12820:32583030,26112155:22499024 +g1,12820:32583030,26112155 +) +(1,12824:6764466,26928082:25818563,424439,79822 +(1,12822:6764466,26928082:0,0,0 +g1,12822:6764466,26928082 +g1,12822:6764466,26928082 +g1,12822:6436786,26928082 +(1,12822:6436786,26928082:0,0,0 +) +g1,12822:6764466,26928082 +) +g1,12824:7760328,26928082 +g1,12824:9088144,26928082 +h1,12824:10415960,26928082:0,0,0 +k1,12824:32583028,26928082:22167068 +g1,12824:32583028,26928082 +) +(1,12826:6764466,27744009:25818563,431045,79822 +(1,12825:6764466,27744009:0,0,0 +g1,12825:6764466,27744009 +g1,12825:6764466,27744009 +g1,12825:6436786,27744009 +(1,12825:6436786,27744009:0,0,0 +) +g1,12825:6764466,27744009 +) +k1,12826:6764466,27744009:0 +h1,12826:10084006,27744009:0,0,0 +k1,12826:32583030,27744009:22499024 +g1,12826:32583030,27744009 +) +(1,12832:6764466,28559936:25818563,431045,79822 +(1,12828:6764466,28559936:0,0,0 +g1,12828:6764466,28559936 +g1,12828:6764466,28559936 +g1,12828:6436786,28559936 +(1,12828:6436786,28559936:0,0,0 +) +g1,12828:6764466,28559936 +) +g1,12832:7760328,28559936 +g1,12832:8092282,28559936 +g1,12832:9420098,28559936 +g1,12832:14399407,28559936 +g1,12832:14731361,28559936 +g1,12832:18714808,28559936 +g1,12832:19046762,28559936 +g1,12832:19378716,28559936 +g1,12832:19710670,28559936 +g1,12832:20042624,28559936 +g1,12832:23362163,28559936 +g1,12832:23694117,28559936 +g1,12832:24026071,28559936 +g1,12832:24358025,28559936 +g1,12832:24689979,28559936 +g1,12832:25021933,28559936 +g1,12832:25353887,28559936 +h1,12832:27345611,28559936:0,0,0 +k1,12832:32583029,28559936:5237418 +g1,12832:32583029,28559936 +) +(1,12832:6764466,29244791:25818563,431045,112852 +h1,12832:6764466,29244791:0,0,0 +g1,12832:7760328,29244791 +g1,12832:8092282,29244791 +g1,12832:9420098,29244791 +g1,12832:14731361,29244791 +g1,12832:17718946,29244791 +g1,12832:18050900,29244791 +g1,12832:18382854,29244791 +g1,12832:18714808,29244791 +g1,12832:19046762,29244791 +g1,12832:19378716,29244791 +g1,12832:19710670,29244791 +g1,12832:20042624,29244791 +g1,12832:21702394,29244791 +g1,12832:22034348,29244791 +g1,12832:22366302,29244791 +g1,12832:22698256,29244791 +g1,12832:23030210,29244791 +g1,12832:23362164,29244791 +g1,12832:23694118,29244791 +g1,12832:24026072,29244791 +g1,12832:24358026,29244791 +g1,12832:24689980,29244791 +g1,12832:25021934,29244791 +g1,12832:25353888,29244791 +h1,12832:29669289,29244791:0,0,0 +k1,12832:32583029,29244791:2913740 +g1,12832:32583029,29244791 +) +(1,12832:6764466,29929646:25818563,424439,79822 +h1,12832:6764466,29929646:0,0,0 +g1,12832:7760328,29929646 +g1,12832:8092282,29929646 +g1,12832:9420098,29929646 +g1,12832:12739637,29929646 +g1,12832:13071591,29929646 +g1,12832:13403545,29929646 +g1,12832:13735499,29929646 +g1,12832:14067453,29929646 +g1,12832:14399407,29929646 +g1,12832:14731361,29929646 +g1,12832:17055039,29929646 +g1,12832:17386993,29929646 +g1,12832:17718947,29929646 +g1,12832:18050901,29929646 +g1,12832:18382855,29929646 +g1,12832:18714809,29929646 +g1,12832:19046763,29929646 +g1,12832:19378717,29929646 +g1,12832:19710671,29929646 +g1,12832:20042625,29929646 +g1,12832:22698257,29929646 +g1,12832:23030211,29929646 +g1,12832:23362165,29929646 +g1,12832:23694119,29929646 +g1,12832:24026073,29929646 +g1,12832:24358027,29929646 +g1,12832:24689981,29929646 +g1,12832:25021935,29929646 +g1,12832:25353889,29929646 +h1,12832:27677567,29929646:0,0,0 +k1,12832:32583029,29929646:4905462 +g1,12832:32583029,29929646 +) +] +) +g1,12833:32583029,30009468 +g1,12833:6764466,30009468 +g1,12833:6764466,30009468 +g1,12833:32583029,30009468 +g1,12833:32583029,30009468 +) +h1,12833:6764466,30206076:0,0,0 +(1,12837:6764466,31071156:25818563,513147,134348 +h1,12836:6764466,31071156:983040,0,0 +k1,12836:8980000,31071156:278945 +k1,12836:11105094,31071156:278945 +k1,12836:12914305,31071156:278945 +k1,12836:13844678,31071156:278945 +k1,12836:17056359,31071156:278945 +k1,12836:19703775,31071156:278945 +k1,12836:21001805,31071156:278945 +k1,12836:24212175,31071156:278945 +k1,12836:25150412,31071156:278945 +k1,12836:27126084,31071156:278945 +k1,12836:30293201,31071156:278945 +k1,12836:32583029,31071156:0 +) +(1,12837:6764466,31936236:25818563,513147,134348 +k1,12836:8660477,31936236:197973 +k1,12836:10593844,31936236:197974 +k1,12836:11206659,31936236:197972 +k1,12836:15505221,31936236:197974 +k1,12836:16331029,31936236:197973 +k1,12836:19333943,31936236:197973 +k1,12836:21229955,31936236:197974 +k1,12836:24408505,31936236:197973 +k1,12836:26594186,31936236:197974 +k1,12836:28726782,31936236:197973 +k1,12836:29540794,31936236:197974 +k1,12836:31900144,31936236:197973 +k1,12836:32583029,31936236:0 +) +(1,12837:6764466,32801316:25818563,513147,134348 +k1,12836:9564218,32801316:219600 +k1,12836:11453675,32801316:219600 +k1,12836:12692361,32801316:219601 +k1,12836:14442227,32801316:219600 +k1,12836:15313255,32801316:219600 +k1,12836:18651713,32801316:219600 +k1,12836:21075289,32801316:219600 +k1,12836:23692196,32801316:219600 +k1,12836:26865505,32801316:219601 +k1,12836:28652726,32801316:219600 +k1,12836:30511381,32801316:219600 +k1,12836:31835263,32801316:219600 +k1,12836:32583029,32801316:0 +) +(1,12837:6764466,33666396:25818563,513147,134348 +k1,12836:9081070,33666396:165712 +k1,12836:10064671,33666396:165712 +k1,12836:11624334,33666396:165712 +k1,12836:12921853,33666396:165712 +k1,12836:14789534,33666396:165711 +k1,12836:15370056,33666396:165679 +k1,12836:17495294,33666396:165712 +k1,12836:18529358,33666396:165712 +k1,12836:19799352,33666396:165712 +k1,12836:21057549,33666396:165712 +(1,12836:21057549,33666396:0,452978,115847 +r1,13017:22822662,33666396:1765113,568825,115847 +k1,12836:21057549,33666396:-1765113 +) +(1,12836:21057549,33666396:1765113,452978,115847 +k1,12836:21057549,33666396:3277 +h1,12836:22819385,33666396:0,411205,112570 +) +k1,12836:22988374,33666396:165712 +k1,12836:23805513,33666396:165711 +k1,12836:26339696,33666396:165712 +k1,12836:28318134,33666396:165712 +k1,12836:29301735,33666396:165712 +k1,12836:30670688,33666396:165712 +k1,12836:32583029,33666396:0 +) +(1,12837:6764466,34531476:25818563,505283,134348 +k1,12836:7646157,34531476:195529 +k1,12836:8197545,34531476:195528 +k1,12836:9781782,34531476:195529 +k1,12836:11377160,34531476:195529 +k1,12836:12441040,34531476:195528 +k1,12836:13736263,34531476:195529 +(1,12836:13736263,34531476:0,452978,115847 +r1,13017:15501376,34531476:1765113,568825,115847 +k1,12836:13736263,34531476:-1765113 +) +(1,12836:13736263,34531476:1765113,452978,115847 +k1,12836:13736263,34531476:3277 +h1,12836:15498099,34531476:0,411205,112570 +) +k1,12836:15696905,34531476:195529 +k1,12836:17286384,34531476:195528 +k1,12836:19894949,34531476:195529 +k1,12836:21374984,34531476:195529 +k1,12836:23873448,34531476:195529 +k1,12836:25088061,34531476:195528 +k1,12836:27442346,34531476:195529 +k1,12836:28289303,34531476:195529 +k1,12836:29463284,34531476:195528 +k1,12836:30429516,34531476:195529 +k1,12836:32583029,34531476:0 +) +(1,12837:6764466,35396556:25818563,513147,126483 +k1,12836:8338903,35396556:147718 +k1,12836:9145913,35396556:147718 +k1,12836:10312716,35396556:147718 +k1,12836:13391858,35396556:147717 +k1,12836:14206732,35396556:147718 +(1,12836:14206732,35396556:0,459977,115847 +r1,13017:15268421,35396556:1061689,575824,115847 +k1,12836:14206732,35396556:-1061689 +) +(1,12836:14206732,35396556:1061689,459977,115847 +k1,12836:14206732,35396556:3277 +h1,12836:15265144,35396556:0,411205,112570 +) +k1,12836:15589809,35396556:147718 +k1,12836:17351023,35396556:147718 +k1,12836:18184903,35396556:147718 +k1,12836:19103324,35396556:147718 +k1,12836:22086129,35396556:147718 +k1,12836:23102199,35396556:147718 +k1,12836:24636658,35396556:147717 +k1,12836:25400414,35396556:147718 +k1,12836:27335299,35396556:147718 +k1,12836:28655456,35396556:147718 +k1,12836:32583029,35396556:0 +) +(1,12837:6764466,36261636:25818563,513147,134348 +k1,12836:7601972,36261636:178214 +k1,12836:8799271,36261636:178214 +(1,12836:8799271,36261636:0,459977,115847 +r1,13017:9860960,36261636:1061689,575824,115847 +k1,12836:8799271,36261636:-1061689 +) +(1,12836:8799271,36261636:1061689,459977,115847 +k1,12836:8799271,36261636:3277 +h1,12836:9857683,36261636:0,411205,112570 +) +k1,12836:10039173,36261636:178213 +k1,12836:12176913,36261636:178214 +k1,12836:13546572,36261636:178214 +k1,12836:15337627,36261636:178214 +k1,12836:16167269,36261636:178214 +k1,12836:17364567,36261636:178213 +k1,12836:19590781,36261636:178214 +k1,12836:20788080,36261636:178214 +k1,12836:22301918,36261636:178214 +k1,12836:23139424,36261636:178214 +k1,12836:26329016,36261636:178213 +k1,12836:27526315,36261636:178214 +k1,12836:30922347,36261636:178214 +k1,12837:32583029,36261636:0 +k1,12837:32583029,36261636:0 +) +] +g1,13017:32583029,36395984 +) +] +(1,13017:32583029,45706769:0,0,0 +g1,13017:32583029,45706769 +) +) +] +(1,13017:6630773,47279633:25952256,0,0 +h1,13017:6630773,47279633:25952256,0,0 +) +] +(1,13017:4262630,4025873:0,0,0 +[1,13017:-473656,4025873:0,0,0 +(1,13017:-473656,-710413:0,0,0 +(1,13017:-473656,-710413:0,0,0 +g1,13017:-473656,-710413 +) +g1,13017:-473656,-710413 +) +] +) +] +!30194 +}208 +!12 +{209 +[1,13017:4262630,47279633:28320399,43253760,0 +(1,13017:4262630,4025873:0,0,0 +[1,13017:-473656,4025873:0,0,0 +(1,13017:-473656,-710413:0,0,0 +(1,13017:-473656,-644877:0,0,0 +k1,13017:-473656,-644877:-65536 +) +(1,13017:-473656,4736287:0,0,0 +k1,13017:-473656,4736287:5209943 +) +g1,13017:-473656,-710413 ) ] ) -[1,13432:6630773,47279633:25952256,43253760,0 -[1,13432:6630773,4812305:25952256,786432,0 -(1,13432:6630773,4812305:25952256,513147,126483 -(1,13432:6630773,4812305:25952256,513147,126483 -g1,13432:3078558,4812305 -[1,13432:3078558,4812305:0,0,0 -(1,13432:3078558,2439708:0,1703936,0 -k1,13432:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,13432:2537886,2439708:1179648,16384,0 +[1,13017:6630773,47279633:25952256,43253760,0 +[1,13017:6630773,4812305:25952256,786432,0 +(1,13017:6630773,4812305:25952256,513147,126483 +(1,13017:6630773,4812305:25952256,513147,126483 +g1,13017:3078558,4812305 +[1,13017:3078558,4812305:0,0,0 +(1,13017:3078558,2439708:0,1703936,0 +k1,13017:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,13017:2537886,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,13432:3078558,1915420:16384,1179648,0 +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,13017:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] ) ) ) ] -[1,13432:3078558,4812305:0,0,0 -(1,13432:3078558,2439708:0,1703936,0 -g1,13432:29030814,2439708 -g1,13432:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,13432:36151628,1915420:16384,1179648,0 +[1,13017:3078558,4812305:0,0,0 +(1,13017:3078558,2439708:0,1703936,0 +g1,13017:29030814,2439708 +g1,13017:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,13017:36151628,1915420:16384,1179648,0 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,13432:37855564,2439708:1179648,16384,0 +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,13017:37855564,2439708:1179648,16384,0 ) ) -k1,13432:3078556,2439708:-34777008 +k1,13017:3078556,2439708:-34777008 ) ] -[1,13432:3078558,4812305:0,0,0 -(1,13432:3078558,49800853:0,16384,2228224 -k1,13432:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,13432:2537886,49800853:1179648,16384,0 +[1,13017:3078558,4812305:0,0,0 +(1,13017:3078558,49800853:0,16384,2228224 +k1,13017:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,13017:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,13432:3078558,51504789:16384,1179648,0 +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,13017:3078558,51504789:16384,1179648,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 ) ] ) ) ) ] -[1,13432:3078558,4812305:0,0,0 -(1,13432:3078558,49800853:0,16384,2228224 -g1,13432:29030814,49800853 -g1,13432:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,13432:36151628,51504789:16384,1179648,0 -) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 -) -] -) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,13432:37855564,49800853:1179648,16384,0 -) -) -k1,13432:3078556,49800853:-34777008 -) -] -g1,13432:6630773,4812305 -k1,13432:19540057,4812305:11713907 -g1,13432:21162728,4812305 -g1,13432:21985204,4812305 -g1,13432:24539797,4812305 -g1,13432:25949476,4812305 -g1,13432:28728857,4812305 -g1,13432:29852144,4812305 -) -) -] -[1,13432:6630773,45706769:25952256,40108032,0 -(1,13432:6630773,45706769:25952256,40108032,0 -(1,13432:6630773,45706769:0,0,0 -g1,13432:6630773,45706769 -) -[1,13432:6630773,45706769:25952256,40108032,0 -v1,13381:6630773,6254097:0,393216,0 -(1,13381:6630773,26537424:25952256,20676543,196608 -g1,13381:6630773,26537424 -g1,13381:6630773,26537424 -g1,13381:6434165,26537424 -(1,13381:6434165,26537424:0,20676543,196608 -r1,13432:32779637,26537424:26345472,20873151,196608 -k1,13381:6434165,26537424:-26345472 -) -(1,13381:6434165,26537424:26345472,20676543,196608 -[1,13381:6630773,26537424:25952256,20479935,0 -(1,13357:6630773,6461715:25952256,404226,101187 -h1,13357:6630773,6461715:0,0,0 -g1,13357:7579210,6461715 -g1,13357:8211502,6461715 -g1,13357:11689105,6461715 -g1,13357:12005251,6461715 -g1,13357:12637543,6461715 -g1,13357:12953689,6461715 -g1,13357:13269835,6461715 -g1,13357:13585981,6461715 -g1,13357:15799001,6461715 -g1,13357:17695875,6461715 -h1,13357:19592749,6461715:0,0,0 -k1,13357:32583029,6461715:12990280 -g1,13357:32583029,6461715 -) -(1,13357:6630773,7127893:25952256,379060,0 -h1,13357:6630773,7127893:0,0,0 -h1,13357:7263064,7127893:0,0,0 -k1,13357:32583028,7127893:25319964 -g1,13357:32583028,7127893 -) -(1,13357:6630773,7794071:25952256,388497,101187 -h1,13357:6630773,7794071:0,0,0 -g1,13357:7579210,7794071 -g1,13357:9476084,7794071 -g1,13357:9792230,7794071 -h1,13357:12953687,7794071:0,0,0 -k1,13357:32583029,7794071:19629342 -g1,13357:32583029,7794071 -) -(1,13357:6630773,8460249:25952256,404226,101187 -h1,13357:6630773,8460249:0,0,0 -g1,13357:7579210,8460249 -g1,13357:9159939,8460249 -g1,13357:9792231,8460249 -h1,13357:12953688,8460249:0,0,0 -k1,13357:32583028,8460249:19629340 -g1,13357:32583028,8460249 -) -(1,13357:6630773,9126427:25952256,379060,0 -h1,13357:6630773,9126427:0,0,0 -h1,13357:7263064,9126427:0,0,0 -k1,13357:32583028,9126427:25319964 -g1,13357:32583028,9126427 -) -(1,13357:6630773,9792605:25952256,410518,101187 -h1,13357:6630773,9792605:0,0,0 -g1,13357:7579210,9792605 -g1,13357:7895356,9792605 -g1,13357:8211502,9792605 -g1,13357:8527648,9792605 -g1,13357:8843794,9792605 -g1,13357:9159940,9792605 -g1,13357:9476086,9792605 -g1,13357:9792232,9792605 -g1,13357:10108378,9792605 -g1,13357:10424524,9792605 -g1,13357:10740670,9792605 -g1,13357:11056816,9792605 -g1,13357:11372962,9792605 -g1,13357:11689108,9792605 -g1,13357:12637545,9792605 -g1,13357:13902128,9792605 -g1,13357:14850565,9792605 -g1,13357:15799002,9792605 -g1,13357:16115148,9792605 -g1,13357:16431294,9792605 -g1,13357:17695877,9792605 -g1,13357:18012023,9792605 -g1,13357:18328169,9792605 -g1,13357:18644315,9792605 -h1,13357:19592752,9792605:0,0,0 -k1,13357:32583029,9792605:12990277 -g1,13357:32583029,9792605 -) -(1,13357:6630773,10458783:25952256,388497,9436 -h1,13357:6630773,10458783:0,0,0 -g1,13357:7579210,10458783 -g1,13357:9792230,10458783 -g1,13357:10108376,10458783 -g1,13357:10424522,10458783 -g1,13357:10740668,10458783 -g1,13357:11056814,10458783 -g1,13357:11372960,10458783 -g1,13357:11689106,10458783 -g1,13357:12005252,10458783 -g1,13357:12321398,10458783 -g1,13357:12637544,10458783 -g1,13357:12953690,10458783 -g1,13357:13269836,10458783 -g1,13357:13585982,10458783 -g1,13357:13902128,10458783 -g1,13357:14218274,10458783 -g1,13357:14534420,10458783 -g1,13357:14850566,10458783 -g1,13357:15166712,10458783 -g1,13357:15482858,10458783 -g1,13357:15799004,10458783 -g1,13357:17695878,10458783 -h1,13357:19592752,10458783:0,0,0 -k1,13357:32583029,10458783:12990277 -g1,13357:32583029,10458783 -) -(1,13357:6630773,11124961:25952256,404226,101187 -h1,13357:6630773,11124961:0,0,0 -g1,13357:7579210,11124961 -g1,13357:8211502,11124961 -g1,13357:10108376,11124961 -g1,13357:10424522,11124961 -g1,13357:10740668,11124961 -g1,13357:11056814,11124961 -g1,13357:11372960,11124961 -g1,13357:11689106,11124961 -g1,13357:12005252,11124961 -g1,13357:12637544,11124961 -g1,13357:12953690,11124961 -g1,13357:13269836,11124961 -g1,13357:13585982,11124961 -g1,13357:13902128,11124961 -g1,13357:14218274,11124961 -g1,13357:15799003,11124961 -g1,13357:17695877,11124961 -h1,13357:19592751,11124961:0,0,0 -k1,13357:32583029,11124961:12990278 -g1,13357:32583029,11124961 -) -(1,13357:6630773,11791139:25952256,404226,101187 -h1,13357:6630773,11791139:0,0,0 -g1,13357:7579210,11791139 -g1,13357:8211502,11791139 -g1,13357:11689105,11791139 -g1,13357:12005251,11791139 -g1,13357:12637543,11791139 -g1,13357:12953689,11791139 -g1,13357:13269835,11791139 -g1,13357:13585981,11791139 -g1,13357:13902127,11791139 -g1,13357:14218273,11791139 -g1,13357:14534419,11791139 -g1,13357:15799002,11791139 -g1,13357:17695876,11791139 -h1,13357:19592750,11791139:0,0,0 -k1,13357:32583029,11791139:12990279 -g1,13357:32583029,11791139 -) -(1,13357:6630773,12457317:25952256,404226,101187 -h1,13357:6630773,12457317:0,0,0 -g1,13357:7579210,12457317 -g1,13357:8211502,12457317 -g1,13357:11689105,12457317 -g1,13357:12005251,12457317 -g1,13357:12637543,12457317 -g1,13357:12953689,12457317 -g1,13357:13269835,12457317 -g1,13357:13585981,12457317 -g1,13357:13902127,12457317 -g1,13357:14218273,12457317 -g1,13357:14534419,12457317 -g1,13357:15799002,12457317 -g1,13357:17695876,12457317 -h1,13357:19592750,12457317:0,0,0 -k1,13357:32583029,12457317:12990279 -g1,13357:32583029,12457317 -) -(1,13357:6630773,13123495:25952256,404226,101187 -h1,13357:6630773,13123495:0,0,0 -g1,13357:7579210,13123495 -g1,13357:8211502,13123495 -g1,13357:11689105,13123495 -g1,13357:12005251,13123495 -g1,13357:12637543,13123495 -g1,13357:12953689,13123495 -g1,13357:13269835,13123495 -g1,13357:15799001,13123495 -g1,13357:17695875,13123495 -h1,13357:19592749,13123495:0,0,0 -k1,13357:32583029,13123495:12990280 -g1,13357:32583029,13123495 -) -(1,13359:6630773,14445033:25952256,410518,101187 -(1,13358:6630773,14445033:0,0,0 -g1,13358:6630773,14445033 -g1,13358:6630773,14445033 -g1,13358:6303093,14445033 -(1,13358:6303093,14445033:0,0,0 -) -g1,13358:6630773,14445033 -) -k1,13359:6630773,14445033:0 -h1,13359:10740667,14445033:0,0,0 -k1,13359:32583029,14445033:21842362 -g1,13359:32583029,14445033 -) -(1,13380:6630773,15111211:25952256,379060,0 -(1,13361:6630773,15111211:0,0,0 -g1,13361:6630773,15111211 -g1,13361:6630773,15111211 -g1,13361:6303093,15111211 -(1,13361:6303093,15111211:0,0,0 -) -g1,13361:6630773,15111211 -) -h1,13380:7263064,15111211:0,0,0 -k1,13380:32583028,15111211:25319964 -g1,13380:32583028,15111211 -) -(1,13380:6630773,15777389:25952256,404226,7863 -h1,13380:6630773,15777389:0,0,0 -g1,13380:7579210,15777389 -h1,13380:9159938,15777389:0,0,0 -k1,13380:32583030,15777389:23423092 -g1,13380:32583030,15777389 -) -(1,13380:6630773,16443567:25952256,410518,101187 -h1,13380:6630773,16443567:0,0,0 -g1,13380:7579210,16443567 -g1,13380:11056813,16443567 -g1,13380:11689105,16443567 -g1,13380:13269834,16443567 -g1,13380:13902126,16443567 -g1,13380:17695875,16443567 -g1,13380:19276604,16443567 -g1,13380:19908896,16443567 -h1,13380:21489624,16443567:0,0,0 -k1,13380:32583029,16443567:11093405 -g1,13380:32583029,16443567 -) -(1,13380:6630773,17109745:25952256,379060,0 -h1,13380:6630773,17109745:0,0,0 -h1,13380:7263064,17109745:0,0,0 -k1,13380:32583028,17109745:25319964 -g1,13380:32583028,17109745 -) -(1,13380:6630773,17775923:25952256,404226,6290 -h1,13380:6630773,17775923:0,0,0 -g1,13380:7579210,17775923 -h1,13380:10740667,17775923:0,0,0 -k1,13380:32583029,17775923:21842362 -g1,13380:32583029,17775923 -) -(1,13380:6630773,18442101:25952256,404226,82312 -h1,13380:6630773,18442101:0,0,0 -g1,13380:7579210,18442101 -g1,13380:7895356,18442101 -g1,13380:8211502,18442101 -g1,13380:8527648,18442101 -g1,13380:8843794,18442101 -g1,13380:10108377,18442101 -g1,13380:10424523,18442101 -g1,13380:10740669,18442101 -g1,13380:11056815,18442101 -g1,13380:11372961,18442101 -g1,13380:11689107,18442101 -g1,13380:12637544,18442101 -g1,13380:12953690,18442101 -g1,13380:15166710,18442101 -g1,13380:15482856,18442101 -g1,13380:15799002,18442101 -g1,13380:16115148,18442101 -g1,13380:16431294,18442101 -g1,13380:16747440,18442101 -g1,13380:17695877,18442101 -g1,13380:18012023,18442101 -g1,13380:18328169,18442101 -g1,13380:18644315,18442101 -g1,13380:18960461,18442101 -h1,13380:19908898,18442101:0,0,0 -k1,13380:32583029,18442101:12674131 -g1,13380:32583029,18442101 -) -(1,13380:6630773,19108279:25952256,388497,9436 -h1,13380:6630773,19108279:0,0,0 -g1,13380:7579210,19108279 -g1,13380:10108376,19108279 -g1,13380:10424522,19108279 -g1,13380:12637542,19108279 -g1,13380:12953688,19108279 -g1,13380:15166708,19108279 -g1,13380:15482854,19108279 -g1,13380:15799000,19108279 -g1,13380:17695874,19108279 -g1,13380:18012020,19108279 -h1,13380:19908894,19108279:0,0,0 -k1,13380:32583029,19108279:12674135 -g1,13380:32583029,19108279 -) -(1,13380:6630773,19774457:25952256,379060,0 -h1,13380:6630773,19774457:0,0,0 -h1,13380:7263064,19774457:0,0,0 -k1,13380:32583028,19774457:25319964 -g1,13380:32583028,19774457 -) -(1,13380:6630773,20440635:25952256,410518,7863 -h1,13380:6630773,20440635:0,0,0 -g1,13380:7579210,20440635 -h1,13380:11689104,20440635:0,0,0 -k1,13380:32583028,20440635:20893924 -g1,13380:32583028,20440635 -) -(1,13380:6630773,21106813:25952256,404226,76021 -h1,13380:6630773,21106813:0,0,0 -g1,13380:7579210,21106813 -g1,13380:7895356,21106813 -g1,13380:8211502,21106813 -g1,13380:8527648,21106813 -g1,13380:8843794,21106813 -g1,13380:9159940,21106813 -g1,13380:9476086,21106813 -g1,13380:9792232,21106813 -g1,13380:10108378,21106813 -g1,13380:10424524,21106813 -g1,13380:10740670,21106813 -g1,13380:11056816,21106813 -g1,13380:11372962,21106813 -g1,13380:14218273,21106813 -g1,13380:15799002,21106813 -g1,13380:17695876,21106813 -g1,13380:18328168,21106813 -g1,13380:20225042,21106813 -k1,13380:20225042,21106813:0 -h1,13380:22754207,21106813:0,0,0 -k1,13380:32583029,21106813:9828822 -g1,13380:32583029,21106813 -) -(1,13380:6630773,21772991:25952256,404226,101187 -h1,13380:6630773,21772991:0,0,0 -g1,13380:7579210,21772991 -g1,13380:11372958,21772991 -g1,13380:11689104,21772991 -g1,13380:14218270,21772991 -g1,13380:14534416,21772991 -g1,13380:14850562,21772991 -g1,13380:15166708,21772991 -g1,13380:17695874,21772991 -g1,13380:18012020,21772991 -g1,13380:18328166,21772991 -g1,13380:20225040,21772991 -g1,13380:20541186,21772991 -g1,13380:20857332,21772991 -g1,13380:23070352,21772991 -h1,13380:23386498,21772991:0,0,0 -k1,13380:32583029,21772991:9196531 -g1,13380:32583029,21772991 -) -(1,13380:6630773,22439169:25952256,404226,101187 -h1,13380:6630773,22439169:0,0,0 -g1,13380:7579210,22439169 -g1,13380:11056813,22439169 -g1,13380:11372959,22439169 -g1,13380:11689105,22439169 -g1,13380:14218271,22439169 -g1,13380:14534417,22439169 -g1,13380:14850563,22439169 -g1,13380:15166709,22439169 -g1,13380:17695875,22439169 -g1,13380:18012021,22439169 -g1,13380:18328167,22439169 -g1,13380:20225041,22439169 -g1,13380:20541187,22439169 -g1,13380:23070353,22439169 -h1,13380:24018790,22439169:0,0,0 -k1,13380:32583029,22439169:8564239 -g1,13380:32583029,22439169 -) -(1,13380:6630773,23105347:25952256,379060,0 -h1,13380:6630773,23105347:0,0,0 -g1,13380:7579210,23105347 -k1,13380:7579210,23105347:0 -h1,13380:8527648,23105347:0,0,0 -k1,13380:32583028,23105347:24055380 -g1,13380:32583028,23105347 -) -(1,13380:6630773,23771525:25952256,410518,107478 -h1,13380:6630773,23771525:0,0,0 -g1,13380:7579210,23771525 -g1,13380:10108376,23771525 -g1,13380:12321396,23771525 -g1,13380:12637542,23771525 -g1,13380:13269834,23771525 -g1,13380:15166709,23771525 -g1,13380:17063583,23771525 -g1,13380:18644312,23771525 -g1,13380:20225041,23771525 -g1,13380:21489625,23771525 -g1,13380:23070354,23771525 -g1,13380:24334938,23771525 -g1,13380:25599521,23771525 -g1,13380:26231813,23771525 -g1,13380:26864105,23771525 -h1,13380:27180251,23771525:0,0,0 -k1,13380:32583029,23771525:5402778 -g1,13380:32583029,23771525 -) -(1,13380:6630773,24437703:25952256,379060,0 -h1,13380:6630773,24437703:0,0,0 -h1,13380:7263064,24437703:0,0,0 -k1,13380:32583028,24437703:25319964 -g1,13380:32583028,24437703 -) -(1,13380:6630773,25103881:25952256,410518,107478 -h1,13380:6630773,25103881:0,0,0 -g1,13380:7579210,25103881 -g1,13380:10424521,25103881 -g1,13380:13269832,25103881 -g1,13380:15482852,25103881 -g1,13380:17379726,25103881 -g1,13380:18328163,25103881 -g1,13380:19276600,25103881 -g1,13380:21805766,25103881 -g1,13380:22754203,25103881 -h1,13380:24967223,25103881:0,0,0 -k1,13380:32583029,25103881:7615806 -g1,13380:32583029,25103881 -) -(1,13380:6630773,25770059:25952256,404226,107478 -h1,13380:6630773,25770059:0,0,0 -g1,13380:7579210,25770059 -g1,13380:10424521,25770059 -g1,13380:13902124,25770059 -g1,13380:14218270,25770059 -g1,13380:19276601,25770059 -g1,13380:22754204,25770059 -g1,13380:23070350,25770059 -h1,13380:24967224,25770059:0,0,0 -k1,13380:32583029,25770059:7615805 -g1,13380:32583029,25770059 -) -(1,13380:6630773,26436237:25952256,404226,101187 -h1,13380:6630773,26436237:0,0,0 -g1,13380:7579210,26436237 -g1,13380:11689104,26436237 -g1,13380:13585978,26436237 -g1,13380:14534415,26436237 -g1,13380:15166707,26436237 -g1,13380:16431290,26436237 -g1,13380:17379727,26436237 -g1,13380:18644310,26436237 -g1,13380:18960456,26436237 -g1,13380:21805768,26436237 -k1,13380:21805768,26436237:0 -h1,13380:24018788,26436237:0,0,0 -k1,13380:32583029,26436237:8564241 -g1,13380:32583029,26436237 -) -] -) -g1,13381:32583029,26537424 -g1,13381:6630773,26537424 -g1,13381:6630773,26537424 -g1,13381:32583029,26537424 -g1,13381:32583029,26537424 -) -h1,13381:6630773,26734032:0,0,0 -v1,13385:6630773,28624096:0,393216,0 -(1,13399:6630773,34789293:25952256,6558413,0 -g1,13399:6630773,34789293 -g1,13399:6303093,34789293 -r1,13432:6401397,34789293:98304,6558413,0 -g1,13399:6600626,34789293 -g1,13399:6797234,34789293 -[1,13399:6797234,34789293:25785795,6558413,0 -(1,13386:6797234,29056634:25785795,825754,196608 -(1,13385:6797234,29056634:0,825754,196608 -r1,13432:7890375,29056634:1093141,1022362,196608 -k1,13385:6797234,29056634:-1093141 -) -(1,13385:6797234,29056634:1093141,825754,196608 -) -k1,13385:8065520,29056634:175145 -k1,13385:9791738,29056634:327680 -k1,13385:12300620,29056634:175145 -k1,13385:13772723,29056634:175145 -k1,13385:14966953,29056634:175145 -k1,13385:17897232,29056634:175145 -k1,13385:20060083,29056634:175144 -k1,13385:23066383,29056634:175145 -k1,13385:23857566,29056634:175145 -k1,13385:25051796,29056634:175145 -k1,13385:26723128,29056634:175145 -k1,13385:28766704,29056634:175145 -k1,13385:31015408,29056634:175145 -k1,13385:32583029,29056634:0 -) -(1,13386:6797234,29898122:25785795,505283,126483 -g1,13385:8740376,29898122 -g1,13385:9555643,29898122 -g1,13385:10773957,29898122 -g1,13385:12145625,29898122 -g1,13385:15099332,29898122 -g1,13385:18463950,29898122 -g1,13385:21135197,29898122 -(1,13385:21135197,29898122:0,452978,115847 -r1,13432:24658869,29898122:3523672,568825,115847 -k1,13385:21135197,29898122:-3523672 -) -(1,13385:21135197,29898122:3523672,452978,115847 -k1,13385:21135197,29898122:3277 -h1,13385:24655592,29898122:0,411205,112570 -) -g1,13385:24858098,29898122 -g1,13385:25588824,29898122 -k1,13386:32583029,29898122:3711507 -g1,13386:32583029,29898122 -) -v1,13388:6797234,31088588:0,393216,0 -(1,13396:6797234,34068397:25785795,3373025,196608 -g1,13396:6797234,34068397 -g1,13396:6797234,34068397 -g1,13396:6600626,34068397 -(1,13396:6600626,34068397:0,3373025,196608 -r1,13432:32779637,34068397:26179011,3569633,196608 -k1,13396:6600625,34068397:-26179012 -) -(1,13396:6600626,34068397:26179011,3373025,196608 -[1,13396:6797234,34068397:25785795,3176417,0 -(1,13390:6797234,31302498:25785795,410518,9436 -(1,13389:6797234,31302498:0,0,0 -g1,13389:6797234,31302498 -g1,13389:6797234,31302498 -g1,13389:6469554,31302498 -(1,13389:6469554,31302498:0,0,0 -) -g1,13389:6797234,31302498 -) -g1,13390:8377963,31302498 -k1,13390:8377963,31302498:0 -h1,13390:9010255,31302498:0,0,0 -k1,13390:32583029,31302498:23572774 -g1,13390:32583029,31302498 -) -(1,13391:6797234,31968676:25785795,410518,101187 -h1,13391:6797234,31968676:0,0,0 -g1,13391:7113380,31968676 -g1,13391:7429526,31968676 -k1,13391:7429526,31968676:0 -h1,13391:10274838,31968676:0,0,0 -k1,13391:32583030,31968676:22308192 -g1,13391:32583030,31968676 -) -(1,13392:6797234,32634854:25785795,404226,101187 -h1,13392:6797234,32634854:0,0,0 -g1,13392:7113380,32634854 -g1,13392:7429526,32634854 -g1,13392:7745672,32634854 -g1,13392:8061818,32634854 -g1,13392:8377964,32634854 -g1,13392:8694110,32634854 -g1,13392:9010256,32634854 -g1,13392:10907130,32634854 -g1,13392:11539422,32634854 -g1,13392:15017025,32634854 -g1,13392:15649317,32634854 -g1,13392:17230046,32634854 -g1,13392:17862338,32634854 -k1,13392:17862338,32634854:0 -h1,13392:19759212,32634854:0,0,0 -k1,13392:32583029,32634854:12823817 -g1,13392:32583029,32634854 -) -(1,13393:6797234,33301032:25785795,404226,101187 -h1,13393:6797234,33301032:0,0,0 -g1,13393:7113380,33301032 -g1,13393:7429526,33301032 -g1,13393:7745672,33301032 -g1,13393:8061818,33301032 -g1,13393:8377964,33301032 -g1,13393:8694110,33301032 -g1,13393:9010256,33301032 -g1,13393:9326402,33301032 -g1,13393:9642548,33301032 -g1,13393:9958694,33301032 -g1,13393:10274840,33301032 -g1,13393:10590986,33301032 -g1,13393:10907132,33301032 -g1,13393:11223278,33301032 -g1,13393:11539424,33301032 -g1,13393:11855570,33301032 -g1,13393:12171716,33301032 -g1,13393:12487862,33301032 -g1,13393:12804008,33301032 -g1,13393:13120154,33301032 -g1,13393:15017028,33301032 -g1,13393:15649320,33301032 -g1,13393:17230049,33301032 -g1,13393:17862341,33301032 -g1,13393:19759215,33301032 -g1,13393:20391507,33301032 -g1,13393:23869111,33301032 -g1,13393:24501403,33301032 -g1,13393:27979007,33301032 -g1,13393:28611299,33301032 -k1,13393:28611299,33301032:0 -h1,13393:32405048,33301032:0,0,0 -k1,13393:32583029,33301032:177981 -g1,13393:32583029,33301032 -) -(1,13394:6797234,33967210:25785795,410518,101187 -h1,13394:6797234,33967210:0,0,0 -k1,13394:6797234,33967210:0 -h1,13394:10907128,33967210:0,0,0 -k1,13394:32583028,33967210:21675900 -g1,13394:32583028,33967210 -) -] -) -g1,13396:32583029,34068397 -g1,13396:6797234,34068397 -g1,13396:6797234,34068397 -g1,13396:32583029,34068397 -g1,13396:32583029,34068397 -) -h1,13396:6797234,34265005:0,0,0 -] -g1,13399:32583029,34789293 -) -h1,13399:6630773,34789293:0,0,0 -(1,13403:6630773,36155069:25952256,513147,126483 -h1,13401:6630773,36155069:983040,0,0 -k1,13401:10899632,36155069:165650 -(1,13401:10899632,36155069:0,452978,115847 -r1,13432:13719881,36155069:2820249,568825,115847 -k1,13401:10899632,36155069:-2820249 -) -(1,13401:10899632,36155069:2820249,452978,115847 -k1,13401:10899632,36155069:3277 -h1,13401:13716604,36155069:0,411205,112570 -) -k1,13401:13885531,36155069:165650 -k1,13401:15242627,36155069:165651 -(1,13401:15242627,36155069:0,452978,115847 -r1,13432:17359452,36155069:2116825,568825,115847 -k1,13401:15242627,36155069:-2116825 -) -(1,13401:15242627,36155069:2116825,452978,115847 -k1,13401:15242627,36155069:3277 -h1,13401:17356175,36155069:0,411205,112570 -) -k1,13401:17525102,36155069:165650 -k1,13401:18682312,36155069:165650 -k1,13401:22667400,36155069:165650 -k1,13401:25741538,36155069:165650 -k1,13401:26593351,36155069:165651 -k1,13401:28139189,36155069:165650 -k1,13401:30734914,36155069:165650 -k1,13401:32583029,36155069:0 -) -(1,13403:6630773,36996557:25952256,513147,134348 -k1,13401:8976306,36996557:135659 -k1,13401:11525002,36996557:135660 -k1,13401:13691622,36996557:135659 -k1,13401:14478710,36996557:135660 -k1,13401:18018964,36996557:135659 -k1,13401:20938592,36996557:135659 -k1,13401:23632778,36996557:135660 -k1,13401:25470407,36996557:135659 -k1,13401:28631864,36996557:135660 -k1,13401:29450408,36996557:135659 -k1,13401:32583029,36996557:0 -) -(1,13403:6630773,37838045:25952256,513147,126483 -g1,13401:7922487,37838045 -g1,13401:8781008,37838045 -g1,13401:11651484,37838045 -g1,13401:15050181,37838045 -g1,13402:15050181,37838045 -k1,13403:32583029,37838045:17532848 -g1,13403:32583029,37838045 -) -(1,13404:6630773,40645613:25952256,32768,229376 -(1,13404:6630773,40645613:0,32768,229376 -(1,13404:6630773,40645613:5505024,32768,229376 -r1,13432:12135797,40645613:5505024,262144,229376 -) -k1,13404:6630773,40645613:-5505024 -) -(1,13404:6630773,40645613:25952256,32768,0 -r1,13432:32583029,40645613:25952256,32768,0 -) -) -(1,13404:6630773,42249941:25952256,606339,14155 -(1,13404:6630773,42249941:1974731,582746,14155 -g1,13404:6630773,42249941 -g1,13404:8605504,42249941 -) -g1,13404:13567104,42249941 -g1,13404:16080541,42249941 -k1,13404:32583029,42249941:13634370 -g1,13404:32583029,42249941 -) -(1,13409:6630773,43484645:25952256,513147,126483 -k1,13408:8745474,43484645:142067 -k1,13408:11205550,43484645:142068 -k1,13408:13063350,43484645:142067 -k1,13408:14224503,43484645:142068 -k1,13408:18106054,43484645:142067 -k1,13408:18907414,43484645:142068 -k1,13408:21894399,43484645:142067 -k1,13408:25575411,43484645:142068 -k1,13408:28785218,43484645:142067 -k1,13408:32583029,43484645:0 -) -(1,13409:6630773,44326133:25952256,513147,122846 -k1,13408:8631240,44326133:187741 -k1,13408:11310661,44326133:187742 -k1,13408:13210858,44326133:187741 -k1,13408:14792550,44326133:187741 -k1,13408:17675788,44326133:187742 -(1,13408:17675788,44326133:0,452978,122846 -r1,13432:19440901,44326133:1765113,575824,122846 -k1,13408:17675788,44326133:-1765113 -) -(1,13408:17675788,44326133:1765113,452978,122846 -k1,13408:17675788,44326133:3277 -h1,13408:19437624,44326133:0,411205,112570 -) -k1,13408:19628642,44326133:187741 -k1,13408:20807943,44326133:187741 -k1,13408:22645882,44326133:187742 -k1,13408:25308262,44326133:187741 -k1,13408:26687448,44326133:187741 -k1,13408:28556844,44326133:187742 -k1,13408:29763670,44326133:187741 -k1,13408:32583029,44326133:0 -) -(1,13409:6630773,45167621:25952256,513147,7863 -g1,13408:10611429,45167621 -g1,13408:11462086,45167621 -g1,13408:12409081,45167621 -g1,13408:15196982,45167621 -g1,13408:16082373,45167621 -g1,13408:17560209,45167621 -g1,13408:18445600,45167621 -g1,13408:19663914,45167621 -g1,13408:21076870,45167621 -k1,13409:32583029,45167621:8636993 -g1,13409:32583029,45167621 -) -] -(1,13432:32583029,45706769:0,0,0 -g1,13432:32583029,45706769 -) -) -] -(1,13432:6630773,47279633:25952256,0,0 -h1,13432:6630773,47279633:25952256,0,0 -) -] -(1,13432:4262630,4025873:0,0,0 -[1,13432:-473656,4025873:0,0,0 -(1,13432:-473656,-710413:0,0,0 -(1,13432:-473656,-710413:0,0,0 -g1,13432:-473656,-710413 -) -g1,13432:-473656,-710413 -) -] -) -] -!24722 -}229 -Input:2041:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2042:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2043:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2044:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2045:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2046:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2047:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!670 -{230 -[1,13490:4262630,47279633:28320399,43253760,0 -(1,13490:4262630,4025873:0,0,0 -[1,13490:-473656,4025873:0,0,0 -(1,13490:-473656,-710413:0,0,0 -(1,13490:-473656,-644877:0,0,0 -k1,13490:-473656,-644877:-65536 +[1,13017:3078558,4812305:0,0,0 +(1,13017:3078558,49800853:0,16384,2228224 +g1,13017:29030814,49800853 +g1,13017:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,13017:36151628,51504789:16384,1179648,0 +) +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 +) +] +) +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,13017:37855564,49800853:1179648,16384,0 +) +) +k1,13017:3078556,49800853:-34777008 +) +] +g1,13017:6630773,4812305 +k1,13017:19540057,4812305:11713907 +g1,13017:21162728,4812305 +g1,13017:21985204,4812305 +g1,13017:24539797,4812305 +g1,13017:25949476,4812305 +g1,13017:28728857,4812305 +g1,13017:29852144,4812305 +) +) +] +[1,13017:6630773,45706769:25952256,40108032,0 +(1,13017:6630773,45706769:25952256,40108032,0 +(1,13017:6630773,45706769:0,0,0 +g1,13017:6630773,45706769 +) +[1,13017:6630773,45706769:25952256,40108032,0 +v1,13017:6630773,6254097:0,393216,0 +(1,13017:6630773,45706769:25952256,39845888,0 +g1,13017:6630773,45706769 +g1,13017:6237557,45706769 +r1,13017:6368629,45706769:131072,39845888,0 +g1,13017:6567858,45706769 +g1,13017:6764466,45706769 +[1,13017:6764466,45706769:25818563,39845888,0 +v1,12839:6764466,6254097:0,393216,0 +(1,12864:6764466,19738097:25818563,13877216,196608 +g1,12864:6764466,19738097 +g1,12864:6764466,19738097 +g1,12864:6567858,19738097 +(1,12864:6567858,19738097:0,13877216,196608 +r1,13017:32779637,19738097:26211779,14073824,196608 +k1,12864:6567857,19738097:-26211780 +) +(1,12864:6567858,19738097:26211779,13877216,196608 +[1,12864:6764466,19738097:25818563,13680608,0 +(1,12841:6764466,6488534:25818563,431045,112852 +(1,12840:6764466,6488534:0,0,0 +g1,12840:6764466,6488534 +g1,12840:6764466,6488534 +g1,12840:6436786,6488534 +(1,12840:6436786,6488534:0,0,0 +) +g1,12840:6764466,6488534 +) +k1,12841:6764466,6488534:0 +g1,12841:9752052,6488534 +g1,12841:12407684,6488534 +g1,12841:13071592,6488534 +g1,12841:15063316,6488534 +g1,12841:18382855,6488534 +g1,12841:19046763,6488534 +g1,12841:21370441,6488534 +g1,12841:24026073,6488534 +g1,12841:24689981,6488534 +h1,12841:25353889,6488534:0,0,0 +k1,12841:32583029,6488534:7229140 +g1,12841:32583029,6488534 +) +(1,12863:6764466,7304461:25818563,431045,79822 +(1,12843:6764466,7304461:0,0,0 +g1,12843:6764466,7304461 +g1,12843:6764466,7304461 +g1,12843:6436786,7304461 +(1,12843:6436786,7304461:0,0,0 +) +g1,12843:6764466,7304461 +) +g1,12863:7760328,7304461 +g1,12863:8092282,7304461 +g1,12863:8756190,7304461 +g1,12863:13071591,7304461 +g1,12863:13735499,7304461 +g1,12863:15727223,7304461 +g1,12863:17055039,7304461 +g1,12863:19046763,7304461 +g1,12863:21370441,7304461 +h1,12863:22698257,7304461:0,0,0 +k1,12863:32583029,7304461:9884772 +g1,12863:32583029,7304461 +) +(1,12863:6764466,7989316:25818563,431045,79822 +h1,12863:6764466,7989316:0,0,0 +g1,12863:7760328,7989316 +g1,12863:8092282,7989316 +g1,12863:8756190,7989316 +g1,12863:12075729,7989316 +g1,12863:12407683,7989316 +g1,12863:12739637,7989316 +g1,12863:13071591,7989316 +g1,12863:13735499,7989316 +g1,12863:15727223,7989316 +g1,12863:17055039,7989316 +g1,12863:19378717,7989316 +g1,12863:21038487,7989316 +g1,12863:23030211,7989316 +h1,12863:24026073,7989316:0,0,0 +k1,12863:32583029,7989316:8556956 +g1,12863:32583029,7989316 +) +(1,12863:6764466,8674171:25818563,431045,79822 +h1,12863:6764466,8674171:0,0,0 +g1,12863:7760328,8674171 +g1,12863:8092282,8674171 +g1,12863:8756190,8674171 +g1,12863:11411822,8674171 +g1,12863:11743776,8674171 +g1,12863:12075730,8674171 +g1,12863:12407684,8674171 +g1,12863:12739638,8674171 +g1,12863:13071592,8674171 +g1,12863:13735500,8674171 +g1,12863:15727224,8674171 +g1,12863:17055040,8674171 +g1,12863:19378718,8674171 +g1,12863:21038488,8674171 +g1,12863:22366304,8674171 +h1,12863:23362166,8674171:0,0,0 +k1,12863:32583029,8674171:9220863 +g1,12863:32583029,8674171 +) +(1,12863:6764466,9359026:25818563,431045,33029 +h1,12863:6764466,9359026:0,0,0 +g1,12863:7760328,9359026 +g1,12863:8092282,9359026 +g1,12863:8756190,9359026 +g1,12863:10415960,9359026 +g1,12863:10747914,9359026 +g1,12863:11079868,9359026 +g1,12863:11411822,9359026 +g1,12863:11743776,9359026 +g1,12863:12075730,9359026 +g1,12863:12407684,9359026 +g1,12863:12739638,9359026 +g1,12863:13071592,9359026 +g1,12863:13735500,9359026 +g1,12863:15063316,9359026 +h1,12863:15395270,9359026:0,0,0 +k1,12863:32583030,9359026:17187760 +g1,12863:32583030,9359026 +) +(1,12863:6764466,10043881:25818563,431045,79822 +h1,12863:6764466,10043881:0,0,0 +g1,12863:7760328,10043881 +g1,12863:8092282,10043881 +g1,12863:8756190,10043881 +g1,12863:13735499,10043881 +g1,12863:15727223,10043881 +g1,12863:17055039,10043881 +g1,12863:19378717,10043881 +g1,12863:21370441,10043881 +g1,12863:23362165,10043881 +h1,12863:24358027,10043881:0,0,0 +k1,12863:32583029,10043881:8225002 +g1,12863:32583029,10043881 +) +(1,12863:6764466,10728736:25818563,431045,112852 +h1,12863:6764466,10728736:0,0,0 +g1,12863:7760328,10728736 +g1,12863:8092282,10728736 +g1,12863:8756190,10728736 +g1,12863:11079868,10728736 +g1,12863:11411822,10728736 +g1,12863:11743776,10728736 +g1,12863:12075730,10728736 +g1,12863:12407684,10728736 +g1,12863:12739638,10728736 +g1,12863:13071592,10728736 +g1,12863:13735500,10728736 +g1,12863:15063316,10728736 +g1,12863:17055040,10728736 +g1,12863:17718948,10728736 +h1,12863:18050902,10728736:0,0,0 +k1,12863:32583029,10728736:14532127 +g1,12863:32583029,10728736 +) +(1,12863:6764466,11413591:25818563,431045,106246 +h1,12863:6764466,11413591:0,0,0 +g1,12863:7760328,11413591 +g1,12863:8092282,11413591 +g1,12863:8756190,11413591 +g1,12863:9752052,11413591 +g1,12863:10084006,11413591 +g1,12863:10415960,11413591 +g1,12863:10747914,11413591 +g1,12863:11079868,11413591 +g1,12863:11411822,11413591 +g1,12863:11743776,11413591 +g1,12863:12075730,11413591 +g1,12863:12407684,11413591 +g1,12863:12739638,11413591 +g1,12863:13071592,11413591 +g1,12863:15063316,11413591 +g1,12863:16059178,11413591 +h1,12863:16391132,11413591:0,0,0 +k1,12863:32583029,11413591:16191897 +g1,12863:32583029,11413591 +) +(1,12863:6764466,12098446:25818563,431045,106246 +h1,12863:6764466,12098446:0,0,0 +g1,12863:7760328,12098446 +g1,12863:8092282,12098446 +g1,12863:8424236,12098446 +g1,12863:9752052,12098446 +g1,12863:10747914,12098446 +g1,12863:11079868,12098446 +g1,12863:11411822,12098446 +g1,12863:12075730,12098446 +g1,12863:13403546,12098446 +g1,12863:15727224,12098446 +g1,12863:17386994,12098446 +g1,12863:19710672,12098446 +g1,12863:21702396,12098446 +h1,12863:22698258,12098446:0,0,0 +k1,12863:32583029,12098446:9884771 +g1,12863:32583029,12098446 +) +(1,12863:6764466,12783301:25818563,431045,106246 +h1,12863:6764466,12783301:0,0,0 +g1,12863:7760328,12783301 +g1,12863:8092282,12783301 +g1,12863:8424236,12783301 +g1,12863:9752052,12783301 +g1,12863:12075730,12783301 +g1,12863:13403546,12783301 +g1,12863:15395270,12783301 +g1,12863:17055040,12783301 +h1,12863:18382856,12783301:0,0,0 +k1,12863:32583029,12783301:14200173 +g1,12863:32583029,12783301 +) +(1,12863:6764466,13468156:25818563,431045,106246 +h1,12863:6764466,13468156:0,0,0 +g1,12863:7760328,13468156 +g1,12863:8092282,13468156 +g1,12863:8424236,13468156 +g1,12863:9752052,13468156 +g1,12863:12075730,13468156 +g1,12863:13403546,13468156 +g1,12863:15395270,13468156 +g1,12863:16059178,13468156 +h1,12863:16391132,13468156:0,0,0 +k1,12863:32583029,13468156:16191897 +g1,12863:32583029,13468156 +) +(1,12863:6764466,14153011:25818563,431045,33029 +h1,12863:6764466,14153011:0,0,0 +g1,12863:7760328,14153011 +g1,12863:8092282,14153011 +g1,12863:8424236,14153011 +g1,12863:9752052,14153011 +g1,12863:11079868,14153011 +g1,12863:11411822,14153011 +g1,12863:12075730,14153011 +g1,12863:13403546,14153011 +k1,12863:13403546,14153011:0 +h1,12863:15063316,14153011:0,0,0 +k1,12863:32583028,14153011:17519712 +g1,12863:32583028,14153011 +) +(1,12863:6764466,14837866:25818563,431045,33029 +h1,12863:6764466,14837866:0,0,0 +g1,12863:7760328,14837866 +g1,12863:8092282,14837866 +g1,12863:8424236,14837866 +g1,12863:9752052,14837866 +g1,12863:11411822,14837866 +g1,12863:12075730,14837866 +g1,12863:13403546,14837866 +h1,12863:13735500,14837866:0,0,0 +k1,12863:32583028,14837866:18847528 +g1,12863:32583028,14837866 +) +(1,12863:6764466,15522721:25818563,431045,33029 +h1,12863:6764466,15522721:0,0,0 +g1,12863:7760328,15522721 +g1,12863:8092282,15522721 +g1,12863:8756190,15522721 +g1,12863:12739637,15522721 +g1,12863:13071591,15522721 +g1,12863:13735499,15522721 +g1,12863:15063315,15522721 +h1,12863:15727223,15522721:0,0,0 +k1,12863:32583029,15522721:16855806 +g1,12863:32583029,15522721 +) +(1,12863:6764466,16207576:25818563,431045,79822 +h1,12863:6764466,16207576:0,0,0 +g1,12863:7760328,16207576 +g1,12863:8092282,16207576 +g1,12863:8756190,16207576 +g1,12863:11411822,16207576 +g1,12863:11743776,16207576 +g1,12863:12075730,16207576 +g1,12863:12407684,16207576 +g1,12863:12739638,16207576 +g1,12863:13071592,16207576 +g1,12863:13735500,16207576 +g1,12863:15727224,16207576 +h1,12863:17718948,16207576:0,0,0 +k1,12863:32583029,16207576:14864081 +g1,12863:32583029,16207576 +) +(1,12863:6764466,16892431:25818563,431045,112852 +h1,12863:6764466,16892431:0,0,0 +g1,12863:7760328,16892431 +g1,12863:8092282,16892431 +g1,12863:8756190,16892431 +g1,12863:10415960,16892431 +g1,12863:10747914,16892431 +g1,12863:11079868,16892431 +g1,12863:11411822,16892431 +g1,12863:11743776,16892431 +g1,12863:12075730,16892431 +g1,12863:12407684,16892431 +g1,12863:12739638,16892431 +g1,12863:13071592,16892431 +g1,12863:13735500,16892431 +g1,12863:16723085,16892431 +g1,12863:20374578,16892431 +g1,12863:21038486,16892431 +g1,12863:22698256,16892431 +g1,12863:23362164,16892431 +g1,12863:24026072,16892431 +g1,12863:24689980,16892431 +g1,12863:27013658,16892431 +g1,12863:28673428,16892431 +g1,12863:29337336,16892431 +h1,12863:30997106,16892431:0,0,0 +k1,12863:32583029,16892431:1585923 +g1,12863:32583029,16892431 +) +(1,12863:6764466,17577286:25818563,431045,112852 +h1,12863:6764466,17577286:0,0,0 +g1,12863:7760328,17577286 +g1,12863:8092282,17577286 +g1,12863:8756190,17577286 +g1,12863:10747914,17577286 +g1,12863:11079868,17577286 +g1,12863:11411822,17577286 +g1,12863:11743776,17577286 +g1,12863:12075730,17577286 +g1,12863:12407684,17577286 +g1,12863:12739638,17577286 +g1,12863:13071592,17577286 +g1,12863:16059177,17577286 +g1,12863:19046763,17577286 +g1,12863:22366303,17577286 +g1,12863:22698257,17577286 +g1,12863:25685842,17577286 +g1,12863:27345612,17577286 +g1,12863:28009520,17577286 +g1,12863:28673428,17577286 +g1,12863:29337336,17577286 +h1,12863:30997106,17577286:0,0,0 +k1,12863:32583029,17577286:1585923 +g1,12863:32583029,17577286 +) +(1,12863:6764466,18262141:25818563,431045,33029 +h1,12863:6764466,18262141:0,0,0 +g1,12863:7760328,18262141 +g1,12863:8092282,18262141 +g1,12863:8756190,18262141 +g1,12863:10747914,18262141 +g1,12863:11079868,18262141 +g1,12863:11411822,18262141 +g1,12863:11743776,18262141 +g1,12863:12075730,18262141 +g1,12863:12407684,18262141 +g1,12863:12739638,18262141 +g1,12863:13071592,18262141 +g1,12863:18050901,18262141 +g1,12863:19046763,18262141 +g1,12863:20706533,18262141 +g1,12863:21702395,18262141 +g1,12863:22034349,18262141 +g1,12863:22698257,18262141 +h1,12863:26017796,18262141:0,0,0 +k1,12863:32583029,18262141:6565233 +g1,12863:32583029,18262141 +) +(1,12863:6764466,18946996:25818563,431045,79822 +h1,12863:6764466,18946996:0,0,0 +g1,12863:7760328,18946996 +g1,12863:8092282,18946996 +g1,12863:8424236,18946996 +g1,12863:9752052,18946996 +g1,12863:11411822,18946996 +g1,12863:12075730,18946996 +g1,12863:13403546,18946996 +g1,12863:15727224,18946996 +g1,12863:16391132,18946996 +g1,12863:17386994,18946996 +g1,12863:18050902,18946996 +g1,12863:19046764,18946996 +g1,12863:20042626,18946996 +h1,12863:21038488,18946996:0,0,0 +k1,12863:32583029,18946996:11544541 +g1,12863:32583029,18946996 +) +(1,12863:6764466,19631851:25818563,431045,106246 +h1,12863:6764466,19631851:0,0,0 +g1,12863:7760328,19631851 +g1,12863:8092282,19631851 +g1,12863:8424236,19631851 +g1,12863:9752052,19631851 +g1,12863:12075730,19631851 +g1,12863:13403546,19631851 +g1,12863:15727224,19631851 +g1,12863:16391132,19631851 +g1,12863:17055040,19631851 +g1,12863:17718948,19631851 +g1,12863:18382856,19631851 +g1,12863:19046764,19631851 +h1,12863:20042626,19631851:0,0,0 +k1,12863:32583029,19631851:12540403 +g1,12863:32583029,19631851 +) +] +) +g1,12864:32583029,19738097 +g1,12864:6764466,19738097 +g1,12864:6764466,19738097 +g1,12864:32583029,19738097 +g1,12864:32583029,19738097 +) +h1,12864:6764466,19934705:0,0,0 +(1,12868:6764466,20956042:25818563,513147,115847 +h1,12867:6764466,20956042:983040,0,0 +k1,12867:9934130,20956042:244137 +(1,12867:9934130,20956042:0,452978,115847 +r1,13017:11347531,20956042:1413401,568825,115847 +k1,12867:9934130,20956042:-1413401 +) +(1,12867:9934130,20956042:1413401,452978,115847 +k1,12867:9934130,20956042:3277 +h1,12867:11344254,20956042:0,411205,112570 +) +k1,12867:11591667,20956042:244136 +k1,12867:12704156,20956042:244137 +k1,12867:14214448,20956042:244136 +k1,12867:15477670,20956042:244137 +k1,12867:18417302,20956042:244136 +k1,12867:19761133,20956042:244137 +k1,12867:21289775,20956042:244136 +k1,12867:24312639,20956042:244137 +k1,12867:25575860,20956042:244136 +k1,12867:27500340,20956042:244137 +k1,12867:28612828,20956042:244136 +k1,12867:30668380,20956042:244137 +k1,12867:31563944,20956042:244136 +k1,12868:32583029,20956042:0 +) +(1,12868:6764466,21821122:25818563,505283,134348 +(1,12867:6764466,21821122:0,459977,115847 +r1,13017:7826155,21821122:1061689,575824,115847 +k1,12867:6764466,21821122:-1061689 +) +(1,12867:6764466,21821122:1061689,459977,115847 +k1,12867:6764466,21821122:3277 +h1,12867:7822878,21821122:0,411205,112570 +) +g1,12867:8025384,21821122 +k1,12868:32583029,21821122:22424448 +g1,12868:32583029,21821122 +) +v1,12870:6764466,22584106:0,393216,0 +(1,12877:6764466,23747322:25818563,1556432,196608 +g1,12877:6764466,23747322 +g1,12877:6764466,23747322 +g1,12877:6567858,23747322 +(1,12877:6567858,23747322:0,1556432,196608 +r1,13017:32779637,23747322:26211779,1753040,196608 +k1,12877:6567857,23747322:-26211780 +) +(1,12877:6567858,23747322:26211779,1556432,196608 +[1,12877:6764466,23747322:25818563,1359824,0 +(1,12872:6764466,22818543:25818563,431045,79822 +(1,12871:6764466,22818543:0,0,0 +g1,12871:6764466,22818543 +g1,12871:6764466,22818543 +g1,12871:6436786,22818543 +(1,12871:6436786,22818543:0,0,0 +) +g1,12871:6764466,22818543 +) +k1,12872:6764466,22818543:0 +h1,12872:11079868,22818543:0,0,0 +k1,12872:32583028,22818543:21503160 +g1,12872:32583028,22818543 +) +(1,12876:6764466,23634470:25818563,431045,112852 +(1,12874:6764466,23634470:0,0,0 +g1,12874:6764466,23634470 +g1,12874:6764466,23634470 +g1,12874:6436786,23634470 +(1,12874:6436786,23634470:0,0,0 +) +g1,12874:6764466,23634470 +) +g1,12876:7760328,23634470 +g1,12876:8092282,23634470 +g1,12876:11079867,23634470 +g1,12876:14731360,23634470 +g1,12876:15395268,23634470 +g1,12876:17055038,23634470 +g1,12876:17718946,23634470 +g1,12876:18382854,23634470 +g1,12876:19046762,23634470 +g1,12876:21370440,23634470 +g1,12876:23030210,23634470 +g1,12876:23694118,23634470 +h1,12876:25353888,23634470:0,0,0 +k1,12876:32583029,23634470:7229141 +g1,12876:32583029,23634470 +) +] +) +g1,12877:32583029,23747322 +g1,12877:6764466,23747322 +g1,12877:6764466,23747322 +g1,12877:32583029,23747322 +g1,12877:32583029,23747322 +) +h1,12877:6764466,23943930:0,0,0 +(1,12881:6764466,24965267:25818563,513147,126483 +h1,12880:6764466,24965267:983040,0,0 +k1,12880:8937109,24965267:236054 +k1,12880:12478145,24965267:236055 +k1,12880:14089800,24965267:236054 +k1,12880:15712596,24965267:236054 +k1,12880:16561412,24965267:236054 +k1,12880:17816552,24965267:236055 +k1,12880:20211362,24965267:236054 +k1,12880:21114572,24965267:236054 +(1,12880:21114572,24965267:0,452978,115847 +r1,13017:23583109,24965267:2468537,568825,115847 +k1,12880:21114572,24965267:-2468537 +) +(1,12880:21114572,24965267:2468537,452978,115847 +k1,12880:21114572,24965267:3277 +h1,12880:23579832,24965267:0,411205,112570 +) +k1,12880:23819163,24965267:236054 +k1,12880:25246663,24965267:236055 +(1,12880:25246663,24965267:0,452978,115847 +r1,13017:28418623,24965267:3171960,568825,115847 +k1,12880:25246663,24965267:-3171960 +) +(1,12880:25246663,24965267:3171960,452978,115847 +k1,12880:25246663,24965267:3277 +h1,12880:28415346,24965267:0,411205,112570 +) +k1,12880:28654677,24965267:236054 +k1,12880:29576893,24965267:236054 +k1,12880:32583029,24965267:0 +) +(1,12881:6764466,25830347:25818563,505283,126483 +k1,12880:10068962,25830347:241343 +k1,12880:11071832,25830347:241342 +(1,12880:11071832,25830347:0,452978,115847 +r1,13017:13540369,25830347:2468537,568825,115847 +k1,12880:11071832,25830347:-2468537 +) +(1,12880:11071832,25830347:2468537,452978,115847 +k1,12880:11071832,25830347:3277 +h1,12880:13537092,25830347:0,411205,112570 +) +k1,12880:13955382,25830347:241343 +k1,12880:17131426,25830347:241342 +k1,12880:18839465,25830347:241343 +(1,12880:18839465,25830347:0,452978,115847 +r1,13017:21308002,25830347:2468537,568825,115847 +k1,12880:18839465,25830347:-2468537 +) +(1,12880:18839465,25830347:2468537,452978,115847 +k1,12880:18839465,25830347:3277 +h1,12880:21304725,25830347:0,411205,112570 +) +k1,12880:21549344,25830347:241342 +k1,12880:22982132,25830347:241343 +(1,12880:22982132,25830347:0,452978,115847 +r1,13017:26154092,25830347:3171960,568825,115847 +k1,12880:22982132,25830347:-3171960 +) +(1,12880:22982132,25830347:3171960,452978,115847 +k1,12880:22982132,25830347:3277 +h1,12880:26150815,25830347:0,411205,112570 +) +k1,12880:26395434,25830347:241342 +k1,12880:28647422,25830347:241343 +k1,12880:31575085,25830347:241342 +k1,12881:32583029,25830347:0 +) +(1,12881:6764466,26695427:25818563,513147,134348 +k1,12880:8582240,26695427:149227 +k1,12880:11114356,26695427:149227 +k1,12880:12831204,26695427:149227 +(1,12880:12831204,26695427:0,452978,115847 +r1,13017:14244605,26695427:1413401,568825,115847 +k1,12880:12831204,26695427:-1413401 +) +(1,12880:12831204,26695427:1413401,452978,115847 +k1,12880:12831204,26695427:3277 +h1,12880:14241328,26695427:0,411205,112570 +) +k1,12880:14567502,26695427:149227 +k1,12880:18078725,26695427:149226 +k1,12880:21454945,26695427:149227 +k1,12880:25201443,26695427:149227 +k1,12880:28304378,26695427:149227 +k1,12880:29519876,26695427:149227 +k1,12880:32583029,26695427:0 +) +(1,12881:6764466,27560507:25818563,513147,134348 +k1,12880:7819912,27560507:293918 +k1,12880:9132914,27560507:293917 +k1,12880:12398234,27560507:293918 +(1,12880:12398234,27560507:0,452978,115847 +r1,13017:14866771,27560507:2468537,568825,115847 +k1,12880:12398234,27560507:-2468537 +) +(1,12880:12398234,27560507:2468537,452978,115847 +k1,12880:12398234,27560507:3277 +h1,12880:14863494,27560507:0,411205,112570 +) +k1,12880:15160689,27560507:293918 +k1,12880:18412902,27560507:293918 +k1,12880:20869507,27560507:293917 +k1,12880:21814853,27560507:293918 +k1,12880:23127856,27560507:293918 +k1,12880:27349347,27560507:293918 +k1,12880:28302556,27560507:293917 +k1,12880:30293201,27560507:293918 +k1,12880:32583029,27560507:0 +) +(1,12881:6764466,28425587:25818563,513147,134348 +g1,12880:8733822,28425587 +g1,12880:9584479,28425587 +g1,12880:10531474,28425587 +g1,12880:12380900,28425587 +g1,12880:15885110,28425587 +g1,12880:18061560,28425587 +g1,12880:19703236,28425587 +g1,12880:20553893,28425587 +g1,12880:21772207,28425587 +g1,12880:25899009,28425587 +g1,12880:26757530,28425587 +g1,12880:28944466,28425587 +g1,12880:29831168,28425587 +k1,12881:32583029,28425587:288363 +g1,12881:32583029,28425587 +) +(1,12883:6764466,29368796:25818563,513147,134348 +h1,12882:6764466,29368796:983040,0,0 +k1,12882:9191559,29368796:247366 +k1,12882:10994094,29368796:247366 +k1,12882:11900753,29368796:247367 +k1,12882:13167204,29368796:247366 +k1,12882:15374096,29368796:247366 +k1,12882:18400189,29368796:247366 +k1,12882:19409084,29368796:247367 +(1,12882:19409084,29368796:0,452978,115847 +r1,13017:21877621,29368796:2468537,568825,115847 +k1,12882:19409084,29368796:-2468537 +) +(1,12882:19409084,29368796:2468537,452978,115847 +k1,12882:19409084,29368796:3277 +h1,12882:21874344,29368796:0,411205,112570 +) +k1,12882:22124987,29368796:247366 +k1,12882:23865263,29368796:247366 +k1,12882:25178900,29368796:247366 +k1,12882:27798014,29368796:247366 +k1,12882:28854751,29368796:247367 +k1,12882:30121202,29368796:247366 +k1,12882:31923737,29368796:247366 +k1,12882:32583029,29368796:0 +) +(1,12883:6764466,30233876:25818563,513147,134348 +g1,12882:7982780,30233876 +g1,12882:10169716,30233876 +g1,12882:11056418,30233876 +g1,12882:13388844,30233876 +g1,12882:15277591,30233876 +g1,12882:16265218,30233876 +g1,12882:19395872,30233876 +g1,12882:21088011,30233876 +k1,12883:32583029,30233876:8949600 +g1,12883:32583029,30233876 +) +v1,12885:6764466,30996859:0,393216,0 +(1,12899:6764466,36954060:25818563,6350417,196608 +g1,12899:6764466,36954060 +g1,12899:6764466,36954060 +g1,12899:6567858,36954060 +(1,12899:6567858,36954060:0,6350417,196608 +r1,13017:32779637,36954060:26211779,6547025,196608 +k1,12899:6567857,36954060:-26211780 +) +(1,12899:6567858,36954060:26211779,6350417,196608 +[1,12899:6764466,36954060:25818563,6153809,0 +(1,12887:6764466,31231296:25818563,431045,79822 +(1,12886:6764466,31231296:0,0,0 +g1,12886:6764466,31231296 +g1,12886:6764466,31231296 +g1,12886:6436786,31231296 +(1,12886:6436786,31231296:0,0,0 +) +g1,12886:6764466,31231296 +) +k1,12887:6764466,31231296:0 +h1,12887:10084006,31231296:0,0,0 +k1,12887:32583030,31231296:22499024 +g1,12887:32583030,31231296 +) +(1,12898:6764466,32047223:25818563,431045,106246 +(1,12889:6764466,32047223:0,0,0 +g1,12889:6764466,32047223 +g1,12889:6764466,32047223 +g1,12889:6436786,32047223 +(1,12889:6436786,32047223:0,0,0 +) +g1,12889:6764466,32047223 +) +g1,12898:7760328,32047223 +g1,12898:10747913,32047223 +g1,12898:11743775,32047223 +g1,12898:14731360,32047223 +h1,12898:16391130,32047223:0,0,0 +k1,12898:32583029,32047223:16191899 +g1,12898:32583029,32047223 +) +(1,12898:6764466,32732078:25818563,398014,0 +h1,12898:6764466,32732078:0,0,0 +h1,12898:7428374,32732078:0,0,0 +k1,12898:32583030,32732078:25154656 +g1,12898:32583030,32732078 +) +(1,12898:6764466,33416933:25818563,424439,106246 +h1,12898:6764466,33416933:0,0,0 +g1,12898:7760328,33416933 +g1,12898:11079867,33416933 +h1,12898:12407683,33416933:0,0,0 +k1,12898:32583029,33416933:20175346 +g1,12898:32583029,33416933 +) +(1,12898:6764466,34101788:25818563,431045,106246 +h1,12898:6764466,34101788:0,0,0 +g1,12898:7760328,34101788 +g1,12898:8092282,34101788 +g1,12898:8424236,34101788 +g1,12898:8756190,34101788 +g1,12898:9088144,34101788 +g1,12898:9420098,34101788 +g1,12898:9752052,34101788 +g1,12898:10084006,34101788 +g1,12898:10415960,34101788 +g1,12898:10747914,34101788 +g1,12898:11079868,34101788 +g1,12898:12075730,34101788 +g1,12898:13403546,34101788 +g1,12898:14399408,34101788 +g1,12898:16059178,34101788 +g1,12898:17055040,34101788 +g1,12898:17718948,34101788 +g1,12898:19710672,34101788 +g1,12898:20042626,34101788 +g1,12898:20374580,34101788 +k1,12898:20374580,34101788:0 +h1,12898:22366304,34101788:0,0,0 +k1,12898:32583029,34101788:10216725 +g1,12898:32583029,34101788 +) +(1,12898:6764466,34786643:25818563,424439,106246 +h1,12898:6764466,34786643:0,0,0 +g1,12898:7760328,34786643 +g1,12898:9752052,34786643 +g1,12898:10084006,34786643 +g1,12898:10415960,34786643 +g1,12898:10747914,34786643 +g1,12898:11079868,34786643 +g1,12898:11411822,34786643 +g1,12898:12075730,34786643 +g1,12898:12407684,34786643 +g1,12898:14399408,34786643 +g1,12898:17055040,34786643 +g1,12898:17386994,34786643 +g1,12898:19710672,34786643 +g1,12898:22698258,34786643 +h1,12898:23694120,34786643:0,0,0 +k1,12898:32583029,34786643:8888909 +g1,12898:32583029,34786643 +) +(1,12898:6764466,35471498:25818563,424439,9908 +h1,12898:6764466,35471498:0,0,0 +g1,12898:7760328,35471498 +g1,12898:11079867,35471498 +g1,12898:12075729,35471498 +g1,12898:12407683,35471498 +g1,12898:14399407,35471498 +g1,12898:14731361,35471498 +g1,12898:15063315,35471498 +h1,12898:16723085,35471498:0,0,0 +k1,12898:32583029,35471498:15859944 +g1,12898:32583029,35471498 +) +(1,12898:6764466,36156353:25818563,398014,0 +h1,12898:6764466,36156353:0,0,0 +g1,12898:7760328,36156353 +k1,12898:7760328,36156353:0 +h1,12898:8756190,36156353:0,0,0 +k1,12898:32583030,36156353:23826840 +g1,12898:32583030,36156353 +) +(1,12898:6764466,36841208:25818563,431045,112852 +h1,12898:6764466,36841208:0,0,0 +g1,12898:7760328,36841208 +g1,12898:10415960,36841208 +g1,12898:12739638,36841208 +g1,12898:13071592,36841208 +g1,12898:13735500,36841208 +g1,12898:15727224,36841208 +g1,12898:17718948,36841208 +g1,12898:19378718,36841208 +g1,12898:21038488,36841208 +g1,12898:22366304,36841208 +g1,12898:24026074,36841208 +g1,12898:25353890,36841208 +g1,12898:26681706,36841208 +g1,12898:27345614,36841208 +g1,12898:28009522,36841208 +h1,12898:28341476,36841208:0,0,0 +k1,12898:32583029,36841208:4241553 +g1,12898:32583029,36841208 +) +] +) +g1,12899:32583029,36954060 +g1,12899:6764466,36954060 +g1,12899:6764466,36954060 +g1,12899:32583029,36954060 +g1,12899:32583029,36954060 +) +h1,12899:6764466,37150668:0,0,0 +v1,12903:6764466,37991780:0,393216,0 +(1,12910:6764466,39121966:25818563,1523402,196608 +g1,12910:6764466,39121966 +g1,12910:6764466,39121966 +g1,12910:6567858,39121966 +(1,12910:6567858,39121966:0,1523402,196608 +r1,13017:32779637,39121966:26211779,1720010,196608 +k1,12910:6567857,39121966:-26211780 +) +(1,12910:6567858,39121966:26211779,1523402,196608 +[1,12910:6764466,39121966:25818563,1326794,0 +(1,12905:6764466,38226217:25818563,431045,79822 +(1,12904:6764466,38226217:0,0,0 +g1,12904:6764466,38226217 +g1,12904:6764466,38226217 +g1,12904:6436786,38226217 +(1,12904:6436786,38226217:0,0,0 +) +g1,12904:6764466,38226217 +) +k1,12905:6764466,38226217:0 +k1,12905:6764466,38226217:0 +h1,12905:12407684,38226217:0,0,0 +k1,12905:32583028,38226217:20175344 +g1,12905:32583028,38226217 +) +(1,12909:6764466,39042144:25818563,431045,79822 +(1,12907:6764466,39042144:0,0,0 +g1,12907:6764466,39042144 +g1,12907:6764466,39042144 +g1,12907:6436786,39042144 +(1,12907:6436786,39042144:0,0,0 +) +g1,12907:6764466,39042144 +) +g1,12909:7760328,39042144 +g1,12909:9088144,39042144 +g1,12909:11743776,39042144 +g1,12909:12075730,39042144 +g1,12909:12407684,39042144 +g1,12909:12739638,39042144 +g1,12909:13071592,39042144 +g1,12909:13403546,39042144 +h1,12909:17386993,39042144:0,0,0 +k1,12909:32583029,39042144:15196036 +g1,12909:32583029,39042144 +) +] +) +g1,12910:32583029,39121966 +g1,12910:6764466,39121966 +g1,12910:6764466,39121966 +g1,12910:32583029,39121966 +g1,12910:32583029,39121966 +) +h1,12910:6764466,39318574:0,0,0 +v1,12914:6764466,40159686:0,393216,0 +(1,12927:6764466,45432032:25818563,5665562,196608 +g1,12927:6764466,45432032 +g1,12927:6764466,45432032 +g1,12927:6567858,45432032 +(1,12927:6567858,45432032:0,5665562,196608 +r1,13017:32779637,45432032:26211779,5862170,196608 +k1,12927:6567857,45432032:-26211780 +) +(1,12927:6567858,45432032:26211779,5665562,196608 +[1,12927:6764466,45432032:25818563,5468954,0 +(1,12916:6764466,40394123:25818563,431045,79822 +(1,12915:6764466,40394123:0,0,0 +g1,12915:6764466,40394123 +g1,12915:6764466,40394123 +g1,12915:6436786,40394123 +(1,12915:6436786,40394123:0,0,0 +) +g1,12915:6764466,40394123 +) +k1,12916:6764466,40394123:0 +k1,12916:6764466,40394123:0 +h1,12916:11743776,40394123:0,0,0 +k1,12916:32583028,40394123:20839252 +g1,12916:32583028,40394123 +) +(1,12926:6764466,41210050:25818563,431045,9908 +(1,12918:6764466,41210050:0,0,0 +g1,12918:6764466,41210050 +g1,12918:6764466,41210050 +g1,12918:6436786,41210050 +(1,12918:6436786,41210050:0,0,0 +) +g1,12918:6764466,41210050 +) +g1,12926:7760328,41210050 +g1,12926:10415960,41210050 +g1,12926:13071592,41210050 +g1,12926:14399408,41210050 +g1,12926:19046763,41210050 +g1,12926:19710671,41210050 +g1,12926:21370441,41210050 +g1,12926:22366303,41210050 +g1,12926:22698257,41210050 +g1,12926:23362165,41210050 +h1,12926:26681704,41210050:0,0,0 +k1,12926:32583029,41210050:5901325 +g1,12926:32583029,41210050 +) +(1,12926:6764466,41894905:25818563,431045,33029 +h1,12926:6764466,41894905:0,0,0 +g1,12926:7760328,41894905 +g1,12926:8092282,41894905 +g1,12926:8756190,41894905 +g1,12926:9752052,41894905 +g1,12926:10084006,41894905 +g1,12926:10415960,41894905 +g1,12926:10747914,41894905 +g1,12926:11079868,41894905 +g1,12926:11743776,41894905 +g1,12926:13071592,41894905 +g1,12926:13403546,41894905 +g1,12926:14067454,41894905 +h1,12926:14731362,41894905:0,0,0 +k1,12926:32583030,41894905:17851668 +g1,12926:32583030,41894905 +) +(1,12926:6764466,42579760:25818563,431045,106246 +h1,12926:6764466,42579760:0,0,0 +g1,12926:7760328,42579760 +g1,12926:8092282,42579760 +g1,12926:8756190,42579760 +g1,12926:10084006,42579760 +g1,12926:11079868,42579760 +g1,12926:11743776,42579760 +g1,12926:13071592,42579760 +g1,12926:13403546,42579760 +g1,12926:15395270,42579760 +h1,12926:17055040,42579760:0,0,0 +k1,12926:32583029,42579760:15527989 +g1,12926:32583029,42579760 +) +(1,12926:6764466,43264615:25818563,431045,106246 +h1,12926:6764466,43264615:0,0,0 +g1,12926:7760328,43264615 +g1,12926:8092282,43264615 +g1,12926:8756190,43264615 +g1,12926:10415960,43264615 +g1,12926:11743776,43264615 +g1,12926:13071592,43264615 +g1,12926:13403546,43264615 +g1,12926:15395270,43264615 +h1,12926:16391132,43264615:0,0,0 +k1,12926:32583029,43264615:16191897 +g1,12926:32583029,43264615 +) +(1,12926:6764466,43949470:25818563,431045,33029 +h1,12926:6764466,43949470:0,0,0 +g1,12926:7760328,43949470 +g1,12926:8092282,43949470 +g1,12926:8756190,43949470 +g1,12926:9420098,43949470 +g1,12926:11743776,43949470 +g1,12926:13071592,43949470 +g1,12926:13403546,43949470 +g1,12926:15063316,43949470 +h1,12926:15727224,43949470:0,0,0 +k1,12926:32583028,43949470:16855804 +g1,12926:32583028,43949470 +) +(1,12926:6764466,44634325:25818563,431045,79822 +h1,12926:6764466,44634325:0,0,0 +g1,12926:7760328,44634325 +g1,12926:8092282,44634325 +g1,12926:8756190,44634325 +g1,12926:11079868,44634325 +g1,12926:11743776,44634325 +g1,12926:13071592,44634325 +g1,12926:13403546,44634325 +g1,12926:16391132,44634325 +h1,12926:17055040,44634325:0,0,0 +k1,12926:32583029,44634325:15527989 +g1,12926:32583029,44634325 +) +(1,12926:6764466,45319180:25818563,431045,112852 +h1,12926:6764466,45319180:0,0,0 +k1,12926:7649677,45319180:221303 +k1,12926:7870980,45319180:221303 +k1,12926:8424237,45319180:221303 +k1,12926:10969218,45319180:221303 +k1,12926:14842014,45319180:221303 +k1,12926:16059179,45319180:221303 +k1,12926:17940252,45319180:221303 +k1,12926:21149140,45319180:221303 +k1,12926:22034351,45319180:221303 +k1,12926:24911285,45319180:221303 +k1,12926:27788219,45319180:221303 +k1,12926:31329061,45319180:221303 +h1,12926:32988831,45319180:0,0,0 +k1,12926:32988831,45319180:0 +k1,12926:32988831,45319180:0 +) +] +) +g1,12927:32583029,45432032 +g1,12927:6764466,45432032 +g1,12927:6764466,45432032 +g1,12927:32583029,45432032 +g1,12927:32583029,45432032 +) +h1,12927:6764466,45628640:0,0,0 +] +g1,13017:32583029,45706769 +) +] +(1,13017:32583029,45706769:0,0,0 +g1,13017:32583029,45706769 +) +) +] +(1,13017:6630773,47279633:25952256,0,0 +h1,13017:6630773,47279633:25952256,0,0 +) +] +(1,13017:4262630,4025873:0,0,0 +[1,13017:-473656,4025873:0,0,0 +(1,13017:-473656,-710413:0,0,0 +(1,13017:-473656,-710413:0,0,0 +g1,13017:-473656,-710413 +) +g1,13017:-473656,-710413 +) +] +) +] +!32715 +}209 +Input:1955:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1956:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1957:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1958:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1959:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1960:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1961:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1962:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1963:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1964:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1965:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1046 +{210 +[1,13062:4262630,47279633:28320399,43253760,0 +(1,13062:4262630,4025873:0,0,0 +[1,13062:-473656,4025873:0,0,0 +(1,13062:-473656,-710413:0,0,0 +(1,13062:-473656,-644877:0,0,0 +k1,13062:-473656,-644877:-65536 ) -(1,13490:-473656,4736287:0,0,0 -k1,13490:-473656,4736287:5209943 +(1,13062:-473656,4736287:0,0,0 +k1,13062:-473656,4736287:5209943 ) -g1,13490:-473656,-710413 +g1,13062:-473656,-710413 ) ] ) -[1,13490:6630773,47279633:25952256,43253760,0 -[1,13490:6630773,4812305:25952256,786432,0 -(1,13490:6630773,4812305:25952256,505283,11795 -(1,13490:6630773,4812305:25952256,505283,11795 -g1,13490:3078558,4812305 -[1,13490:3078558,4812305:0,0,0 -(1,13490:3078558,2439708:0,1703936,0 -k1,13490:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,13490:2537886,2439708:1179648,16384,0 +[1,13062:6630773,47279633:25952256,43253760,0 +[1,13062:6630773,4812305:25952256,786432,0 +(1,13062:6630773,4812305:25952256,505283,134348 +(1,13062:6630773,4812305:25952256,505283,134348 +g1,13062:3078558,4812305 +[1,13062:3078558,4812305:0,0,0 +(1,13062:3078558,2439708:0,1703936,0 +k1,13062:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,13062:2537886,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,13490:3078558,1915420:16384,1179648,0 +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,13062:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] ) ) ) ] -[1,13490:3078558,4812305:0,0,0 -(1,13490:3078558,2439708:0,1703936,0 -g1,13490:29030814,2439708 -g1,13490:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,13490:36151628,1915420:16384,1179648,0 +[1,13062:3078558,4812305:0,0,0 +(1,13062:3078558,2439708:0,1703936,0 +g1,13062:29030814,2439708 +g1,13062:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,13062:36151628,1915420:16384,1179648,0 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,13490:37855564,2439708:1179648,16384,0 +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,13062:37855564,2439708:1179648,16384,0 ) ) -k1,13490:3078556,2439708:-34777008 +k1,13062:3078556,2439708:-34777008 ) ] -[1,13490:3078558,4812305:0,0,0 -(1,13490:3078558,49800853:0,16384,2228224 -k1,13490:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,13490:2537886,49800853:1179648,16384,0 +[1,13062:3078558,4812305:0,0,0 +(1,13062:3078558,49800853:0,16384,2228224 +k1,13062:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,13062:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,13490:3078558,51504789:16384,1179648,0 +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,13062:3078558,51504789:16384,1179648,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 ) ] ) ) ) ] -[1,13490:3078558,4812305:0,0,0 -(1,13490:3078558,49800853:0,16384,2228224 -g1,13490:29030814,49800853 -g1,13490:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,13490:36151628,51504789:16384,1179648,0 +[1,13062:3078558,4812305:0,0,0 +(1,13062:3078558,49800853:0,16384,2228224 +g1,13062:29030814,49800853 +g1,13062:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,13062:36151628,51504789:16384,1179648,0 +) +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 +) +] +) +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,13062:37855564,49800853:1179648,16384,0 +) +) +k1,13062:3078556,49800853:-34777008 +) +] +g1,13062:6630773,4812305 +g1,13062:6630773,4812305 +g1,13062:8843268,4812305 +g1,13062:10880782,4812305 +g1,13062:13281365,4812305 +k1,13062:31387653,4812305:18106288 ) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 ) ] +[1,13062:6630773,45706769:25952256,40108032,0 +(1,13062:6630773,45706769:25952256,40108032,0 +(1,13062:6630773,45706769:0,0,0 +g1,13062:6630773,45706769 ) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,13490:37855564,49800853:1179648,16384,0 +[1,13062:6630773,45706769:25952256,40108032,0 +v1,13017:6630773,6254097:0,393216,0 +(1,13017:6630773,42237791:25952256,36376910,0 +g1,13017:6630773,42237791 +g1,13017:6237557,42237791 +r1,13062:6368629,42237791:131072,36376910,0 +g1,13017:6567858,42237791 +g1,13017:6764466,42237791 +[1,13017:6764466,42237791:25818563,36376910,0 +(1,12931:6764466,6374028:25818563,513147,134348 +h1,12930:6764466,6374028:983040,0,0 +k1,12930:9126523,6374028:182330 +k1,12930:10864023,6374028:182331 +k1,12930:11705645,6374028:182330 +k1,12930:12907061,6374028:182331 +k1,12930:16079799,6374028:182330 +k1,12930:18551958,6374028:182331 +k1,12930:21436337,6374028:182330 +k1,12930:22428038,6374028:182331 +k1,12930:23629453,6374028:182330 +k1,12930:25366953,6374028:182331 +k1,12930:26208575,6374028:182330 +k1,12930:27409991,6374028:182331 +k1,12930:29580028,6374028:182330 +k1,12930:30449832,6374028:182331 +k1,12931:32583029,6374028:0 +) +(1,12931:6764466,7239108:25818563,505283,134348 +(1,12930:6764466,7239108:0,452978,115847 +r1,13062:9936426,7239108:3171960,568825,115847 +k1,12930:6764466,7239108:-3171960 +) +(1,12930:6764466,7239108:3171960,452978,115847 +k1,12930:6764466,7239108:3277 +h1,12930:9933149,7239108:0,411205,112570 +) +g1,12930:10135655,7239108 +g1,12930:10866381,7239108 +g1,12930:11421470,7239108 +g1,12930:13927566,7239108 +g1,12930:16581118,7239108 +g1,12930:18174298,7239108 +g1,12930:21044774,7239108 +k1,12931:32583029,7239108:6625676 +g1,12931:32583029,7239108 +) +v1,12933:6764466,7923963:0,393216,0 +(1,12940:6764466,9080573:25818563,1549826,196608 +g1,12940:6764466,9080573 +g1,12940:6764466,9080573 +g1,12940:6567858,9080573 +(1,12940:6567858,9080573:0,1549826,196608 +r1,13062:32779637,9080573:26211779,1746434,196608 +k1,12940:6567857,9080573:-26211780 +) +(1,12940:6567858,9080573:26211779,1549826,196608 +[1,12940:6764466,9080573:25818563,1353218,0 +(1,12935:6764466,8158400:25818563,431045,106246 +(1,12934:6764466,8158400:0,0,0 +g1,12934:6764466,8158400 +g1,12934:6764466,8158400 +g1,12934:6436786,8158400 +(1,12934:6436786,8158400:0,0,0 +) +g1,12934:6764466,8158400 +) +k1,12935:6764466,8158400:0 +k1,12935:6764466,8158400:0 +h1,12935:13071592,8158400:0,0,0 +k1,12935:32583028,8158400:19511436 +g1,12935:32583028,8158400 +) +(1,12939:6764466,8974327:25818563,424439,106246 +(1,12937:6764466,8974327:0,0,0 +g1,12937:6764466,8974327 +g1,12937:6764466,8974327 +g1,12937:6436786,8974327 +(1,12937:6436786,8974327:0,0,0 +) +g1,12937:6764466,8974327 +) +g1,12939:7760328,8974327 +g1,12939:9088144,8974327 +h1,12939:13071591,8974327:0,0,0 +k1,12939:32583029,8974327:19511438 +g1,12939:32583029,8974327 +) +] +) +g1,12940:32583029,9080573 +g1,12940:6764466,9080573 +g1,12940:6764466,9080573 +g1,12940:32583029,9080573 +g1,12940:32583029,9080573 +) +h1,12940:6764466,9277181:0,0,0 +(1,12944:6764466,10142261:25818563,513147,134348 +h1,12943:6764466,10142261:983040,0,0 +k1,12943:10733851,10142261:201720 +k1,12943:12220076,10142261:201719 +k1,12943:14118523,10142261:201720 +k1,12943:16610070,10142261:201719 +k1,12943:19183538,10142261:201720 +k1,12943:22612251,10142261:201720 +k1,12943:26620956,10142261:201719 +k1,12943:27926958,10142261:201720 +k1,12943:28876443,10142261:201719 +k1,12943:30432137,10142261:201720 +k1,12943:32583029,10142261:0 +) +(1,12944:6764466,11007341:25818563,513147,126483 +k1,12943:7885001,11007341:172884 +k1,12943:10892972,11007341:172884 +k1,12943:12763894,11007341:172884 +k1,12943:13805129,11007341:172883 +k1,12943:15526629,11007341:172884 +k1,12943:16350941,11007341:172884 +k1,12943:18818896,11007341:172884 +k1,12943:20010865,11007341:172884 +k1,12943:22356923,11007341:172884 +k1,12943:24097428,11007341:172884 +k1,12943:25289397,11007341:172884 +k1,12943:26149753,11007341:172883 +k1,12943:26938675,11007341:172884 +k1,12943:27467419,11007341:172884 +k1,12943:30402646,11007341:172884 +k1,12943:32583029,11007341:0 +) +(1,12944:6764466,11872421:25818563,505283,134348 +k1,12943:7620366,11872421:173015 +k1,12943:8444809,11872421:173015 +k1,12943:12051255,11872421:173015 +k1,12943:15451263,11872421:173015 +k1,12943:17146024,11872421:173015 +k1,12943:18001925,11872421:173016 +k1,12943:22742799,11872421:173015 +k1,12943:24187212,11872421:173015 +k1,12943:25727308,11872421:173015 +k1,12943:26431820,11872421:173015 +k1,12943:28792427,11872421:173015 +k1,12943:32583029,11872421:0 +) +(1,12944:6764466,12737501:25818563,505283,134348 +k1,12943:7572197,12737501:156303 +k1,12943:9336098,12737501:156303 +k1,12943:10683847,12737501:156304 +k1,12943:13312823,12737501:156303 +k1,12943:14000623,12737501:156303 +k1,12943:15854964,12737501:156303 +k1,12943:18268983,12737501:156304 +k1,12943:20751814,12737501:156303 +k1,12943:21559545,12737501:156303 +k1,12943:24053517,12737501:156303 +k1,12943:29846573,12737501:156304 +k1,12943:31021961,12737501:156303 +k1,12944:32583029,12737501:0 +) +(1,12944:6764466,13602581:25818563,505283,134348 +k1,12943:8842903,13602581:217870 +k1,12943:11071418,13602581:217870 +k1,12943:13299277,13602581:217870 +k1,12943:14536232,13602581:217870 +k1,12943:16153951,13602581:217870 +k1,12943:17976798,13602581:217870 +k1,12943:19896638,13602581:217870 +k1,12943:20982861,13602581:217871 +k1,12943:22293216,13602581:217870 +(1,12943:22293216,13602581:0,452978,115847 +r1,13062:24058329,13602581:1765113,568825,115847 +k1,12943:22293216,13602581:-1765113 +) +(1,12943:22293216,13602581:1765113,452978,115847 +k1,12943:22293216,13602581:3277 +h1,12943:24055052,13602581:0,411205,112570 +) +k1,12943:24276199,13602581:217870 +k1,12943:25145497,13602581:217870 +k1,12943:26750109,13602581:217870 +k1,12943:27580741,13602581:217870 +k1,12943:28817696,13602581:217870 +k1,12943:31966991,13602581:217870 +k1,12943:32583029,13602581:0 +) +(1,12944:6764466,14467661:25818563,513147,126483 +g1,12943:7319555,14467661 +g1,12943:10695969,14467661 +g1,12943:12306844,14467661 +g1,12943:13697518,14467661 +g1,12943:15350336,14467661 +g1,12943:16162327,14467661 +g1,12943:17518266,14467661 +g1,12943:20340901,14467661 +g1,12943:21226292,14467661 +k1,12944:32583029,14467661:8521650 +g1,12944:32583029,14467661 +) +v1,12946:6764466,15152516:0,393216,0 +(1,12963:6764466,23137858:25818563,8378558,196608 +g1,12963:6764466,23137858 +g1,12963:6764466,23137858 +g1,12963:6567858,23137858 +(1,12963:6567858,23137858:0,8378558,196608 +r1,13062:32779637,23137858:26211779,8575166,196608 +k1,12963:6567857,23137858:-26211780 +) +(1,12963:6567858,23137858:26211779,8378558,196608 +[1,12963:6764466,23137858:25818563,8181950,0 +(1,12948:6764466,15386953:25818563,431045,112852 +(1,12947:6764466,15386953:0,0,0 +g1,12947:6764466,15386953 +g1,12947:6764466,15386953 +g1,12947:6436786,15386953 +(1,12947:6436786,15386953:0,0,0 +) +g1,12947:6764466,15386953 +) +k1,12948:6764466,15386953:0 +g1,12948:12739638,15386953 +g1,12948:15395270,15386953 +g1,12948:16059178,15386953 +g1,12948:18050902,15386953 +g1,12948:21370441,15386953 +g1,12948:22034349,15386953 +g1,12948:24358027,15386953 +g1,12948:27013659,15386953 +g1,12948:27677567,15386953 +h1,12948:28341475,15386953:0,0,0 +k1,12948:32583029,15386953:4241554 +g1,12948:32583029,15386953 +) +(1,12962:6764466,16202880:25818563,431045,112852 +(1,12950:6764466,16202880:0,0,0 +g1,12950:6764466,16202880 +g1,12950:6764466,16202880 +g1,12950:6436786,16202880 +(1,12950:6436786,16202880:0,0,0 +) +g1,12950:6764466,16202880 +) +g1,12962:7760328,16202880 +g1,12962:8092282,16202880 +g1,12962:8756190,16202880 +g1,12962:10415960,16202880 +g1,12962:10747914,16202880 +g1,12962:11079868,16202880 +g1,12962:11411822,16202880 +g1,12962:11743776,16202880 +g1,12962:12075730,16202880 +g1,12962:12407684,16202880 +g1,12962:12739638,16202880 +g1,12962:13071592,16202880 +g1,12962:13735500,16202880 +g1,12962:16723085,16202880 +g1,12962:20374578,16202880 +g1,12962:21038486,16202880 +g1,12962:22698256,16202880 +g1,12962:23362164,16202880 +g1,12962:24026072,16202880 +g1,12962:24689980,16202880 +g1,12962:27013658,16202880 +g1,12962:28673428,16202880 +g1,12962:29337336,16202880 +h1,12962:30997106,16202880:0,0,0 +k1,12962:32583029,16202880:1585923 +g1,12962:32583029,16202880 +) +(1,12962:6764466,16887735:25818563,431045,112852 +h1,12962:6764466,16887735:0,0,0 +g1,12962:7760328,16887735 +g1,12962:8092282,16887735 +g1,12962:8756190,16887735 +g1,12962:10747914,16887735 +g1,12962:11079868,16887735 +g1,12962:11411822,16887735 +g1,12962:11743776,16887735 +g1,12962:12075730,16887735 +g1,12962:12407684,16887735 +g1,12962:12739638,16887735 +g1,12962:13071592,16887735 +g1,12962:16059177,16887735 +g1,12962:19046763,16887735 +g1,12962:22366303,16887735 +g1,12962:22698257,16887735 +g1,12962:25685842,16887735 +g1,12962:27345612,16887735 +g1,12962:28009520,16887735 +g1,12962:28673428,16887735 +g1,12962:29337336,16887735 +h1,12962:30997106,16887735:0,0,0 +k1,12962:32583029,16887735:1585923 +g1,12962:32583029,16887735 +) +(1,12962:6764466,17572590:25818563,431045,79822 +h1,12962:6764466,17572590:0,0,0 +g1,12962:7760328,17572590 +g1,12962:8092282,17572590 +g1,12962:8756190,17572590 +g1,12962:12075729,17572590 +g1,12962:12407683,17572590 +g1,12962:12739637,17572590 +g1,12962:13071591,17572590 +g1,12962:13735499,17572590 +g1,12962:15727223,17572590 +g1,12962:17055039,17572590 +g1,12962:19378717,17572590 +g1,12962:21038487,17572590 +g1,12962:23030211,17572590 +h1,12962:24026073,17572590:0,0,0 +k1,12962:32583029,17572590:8556956 +g1,12962:32583029,17572590 +) +(1,12962:6764466,18257445:25818563,431045,86428 +h1,12962:6764466,18257445:0,0,0 +g1,12962:7760328,18257445 +g1,12962:8092282,18257445 +g1,12962:8756190,18257445 +g1,12962:13071591,18257445 +g1,12962:13735499,18257445 +g1,12962:15063315,18257445 +g1,12962:17055039,18257445 +g1,12962:18714809,18257445 +g1,12962:21038487,18257445 +g1,12962:22698257,18257445 +h1,12962:23694119,18257445:0,0,0 +k1,12962:32583029,18257445:8888910 +g1,12962:32583029,18257445 +) +(1,12962:6764466,18942300:25818563,431045,112852 +h1,12962:6764466,18942300:0,0,0 +g1,12962:7760328,18942300 +g1,12962:8092282,18942300 +g1,12962:8756190,18942300 +g1,12962:11411822,18942300 +g1,12962:11743776,18942300 +g1,12962:12075730,18942300 +g1,12962:12407684,18942300 +g1,12962:12739638,18942300 +g1,12962:13071592,18942300 +g1,12962:13735500,18942300 +g1,12962:15727224,18942300 +g1,12962:17386994,18942300 +g1,12962:19378718,18942300 +g1,12962:21370442,18942300 +h1,12962:23030212,18942300:0,0,0 +k1,12962:32583029,18942300:9552817 +g1,12962:32583029,18942300 +) +(1,12962:6764466,19627155:25818563,431045,112852 +h1,12962:6764466,19627155:0,0,0 +g1,12962:7760328,19627155 +g1,12962:8092282,19627155 +g1,12962:8756190,19627155 +g1,12962:10747914,19627155 +g1,12962:11079868,19627155 +g1,12962:11411822,19627155 +g1,12962:11743776,19627155 +g1,12962:12075730,19627155 +g1,12962:12407684,19627155 +g1,12962:12739638,19627155 +g1,12962:13071592,19627155 +g1,12962:13735500,19627155 +g1,12962:15063316,19627155 +h1,12962:16391132,19627155:0,0,0 +k1,12962:32583029,19627155:16191897 +g1,12962:32583029,19627155 +) +(1,12962:6764466,20312010:25818563,431045,79822 +h1,12962:6764466,20312010:0,0,0 +g1,12962:7760328,20312010 +g1,12962:8092282,20312010 +g1,12962:8756190,20312010 +g1,12962:9752052,20312010 +g1,12962:10084006,20312010 +g1,12962:10415960,20312010 +g1,12962:10747914,20312010 +g1,12962:11079868,20312010 +g1,12962:11411822,20312010 +g1,12962:11743776,20312010 +g1,12962:12075730,20312010 +g1,12962:12407684,20312010 +g1,12962:12739638,20312010 +g1,12962:13071592,20312010 +g1,12962:13735500,20312010 +g1,12962:15063316,20312010 +g1,12962:17055040,20312010 +g1,12962:17718948,20312010 +g1,12962:18714810,20312010 +h1,12962:19046764,20312010:0,0,0 +k1,12962:32583029,20312010:13536265 +g1,12962:32583029,20312010 +) +(1,12962:6764466,20996865:25818563,431045,106246 +h1,12962:6764466,20996865:0,0,0 +g1,12962:7760328,20996865 +g1,12962:8092282,20996865 +g1,12962:8756190,20996865 +g1,12962:12075729,20996865 +g1,12962:12407683,20996865 +g1,12962:12739637,20996865 +g1,12962:13071591,20996865 +g1,12962:13735499,20996865 +g1,12962:15063315,20996865 +h1,12962:16723085,20996865:0,0,0 +k1,12962:32583029,20996865:15859944 +g1,12962:32583029,20996865 +) +(1,12962:6764466,21681720:25818563,431045,112852 +h1,12962:6764466,21681720:0,0,0 +g1,12962:7760328,21681720 +g1,12962:8092282,21681720 +g1,12962:8756190,21681720 +g1,12962:13735499,21681720 +g1,12962:15063315,21681720 +h1,12962:16723085,21681720:0,0,0 +k1,12962:32583029,21681720:15859944 +g1,12962:32583029,21681720 +) +(1,12962:6764466,22366575:25818563,431045,79822 +h1,12962:6764466,22366575:0,0,0 +g1,12962:7760328,22366575 +g1,12962:8092282,22366575 +g1,12962:8756190,22366575 +g1,12962:12407683,22366575 +g1,12962:12739637,22366575 +g1,12962:13071591,22366575 +g1,12962:13735499,22366575 +g1,12962:15727223,22366575 +g1,12962:17055039,22366575 +g1,12962:19046763,22366575 +g1,12962:20706533,22366575 +g1,12962:21370441,22366575 +h1,12962:22366303,22366575:0,0,0 +k1,12962:32583029,22366575:10216726 +g1,12962:32583029,22366575 +) +(1,12962:6764466,23051430:25818563,431045,86428 +h1,12962:6764466,23051430:0,0,0 +g1,12962:7760328,23051430 +g1,12962:8092282,23051430 +g1,12962:8756190,23051430 +g1,12962:13071591,23051430 +g1,12962:13735499,23051430 +g1,12962:15063315,23051430 +g1,12962:17055039,23051430 +g1,12962:18714809,23051430 +g1,12962:21038487,23051430 +g1,12962:23694119,23051430 +h1,12962:24689981,23051430:0,0,0 +k1,12962:32583029,23051430:7893048 +g1,12962:32583029,23051430 +) +] +) +g1,12963:32583029,23137858 +g1,12963:6764466,23137858 +g1,12963:6764466,23137858 +g1,12963:32583029,23137858 +g1,12963:32583029,23137858 +) +h1,12963:6764466,23334466:0,0,0 +(1,12967:6764466,24199546:25818563,513147,134348 +h1,12966:6764466,24199546:983040,0,0 +k1,12966:9567675,24199546:215192 +k1,12966:10651219,24199546:215192 +k1,12966:12589353,24199546:215192 +k1,12966:13823630,24199546:215192 +k1,12966:16970247,24199546:215192 +k1,12966:17844731,24199546:215192 +k1,12966:19079009,24199546:215193 +k1,12966:21253727,24199546:215192 +k1,12966:22660364,24199546:215192 +k1,12966:23894641,24199546:215192 +k1,12966:26178149,24199546:215192 +k1,12966:27052633,24199546:215192 +k1,12966:30395203,24199546:215192 +k1,12966:31478747,24199546:215192 +k1,12966:32583029,24199546:0 +) +(1,12967:6764466,25064626:25818563,513147,134348 +g1,12966:9102135,25064626 +g1,12966:11505340,25064626 +g1,12966:13343624,25064626 +g1,12966:15278246,25064626 +g1,12966:16496560,25064626 +g1,12966:18416764,25064626 +g1,12966:19030836,25064626 +g1,12966:20816036,25064626 +g1,12966:21962916,25064626 +g1,12966:24785551,25064626 +k1,12967:32583029,25064626:4409267 +g1,12967:32583029,25064626 +) +v1,12969:6764466,25749481:0,393216,0 +(1,12976:6764466,26879667:25818563,1523402,196608 +g1,12976:6764466,26879667 +g1,12976:6764466,26879667 +g1,12976:6567858,26879667 +(1,12976:6567858,26879667:0,1523402,196608 +r1,13062:32779637,26879667:26211779,1720010,196608 +k1,12976:6567857,26879667:-26211780 +) +(1,12976:6567858,26879667:26211779,1523402,196608 +[1,12976:6764466,26879667:25818563,1326794,0 +(1,12971:6764466,25983918:25818563,431045,112852 +(1,12970:6764466,25983918:0,0,0 +g1,12970:6764466,25983918 +g1,12970:6764466,25983918 +g1,12970:6436786,25983918 +(1,12970:6436786,25983918:0,0,0 +) +g1,12970:6764466,25983918 +) +k1,12971:6764466,25983918:0 +h1,12971:15395269,25983918:0,0,0 +k1,12971:32583029,25983918:17187760 +g1,12971:32583029,25983918 +) +(1,12975:6764466,26799845:25818563,424439,79822 +(1,12973:6764466,26799845:0,0,0 +g1,12973:6764466,26799845 +g1,12973:6764466,26799845 +g1,12973:6436786,26799845 +(1,12973:6436786,26799845:0,0,0 +) +g1,12973:6764466,26799845 +) +g1,12975:7760328,26799845 +g1,12975:9088144,26799845 +h1,12975:12075729,26799845:0,0,0 +k1,12975:32583029,26799845:20507300 +g1,12975:32583029,26799845 +) +] +) +g1,12976:32583029,26879667 +g1,12976:6764466,26879667 +g1,12976:6764466,26879667 +g1,12976:32583029,26879667 +g1,12976:32583029,26879667 +) +h1,12976:6764466,27076275:0,0,0 +(1,12980:6764466,27941355:25818563,513147,126483 +h1,12979:6764466,27941355:983040,0,0 +k1,12979:8978008,27941355:276953 +k1,12979:10359243,27941355:276953 +k1,12979:11922011,27941355:276952 +k1,12979:14567435,27941355:276953 +k1,12979:15863473,27941355:276953 +k1,12979:19071851,27941355:276953 +k1,12979:20008096,27941355:276953 +k1,12979:23477962,27941355:276952 +k1,12979:26882293,27941355:276953 +k1,12979:28355933,27941355:276953 +(1,12979:28355933,27941355:0,459977,115847 +r1,13062:32583029,27941355:4227096,575824,115847 +k1,12979:28355933,27941355:-4227096 +) +(1,12979:28355933,27941355:4227096,459977,115847 +k1,12979:28355933,27941355:3277 +h1,12979:32579752,27941355:0,411205,112570 +) +k1,12979:32583029,27941355:0 +) +(1,12980:6764466,28806435:25818563,513147,134348 +k1,12979:10066497,28806435:255918 +k1,12979:10938453,28806435:255918 +k1,12979:12213456,28806435:255918 +k1,12979:15459782,28806435:255918 +k1,12979:16707261,28806435:255919 +k1,12979:21161415,28806435:255918 +k1,12979:22178861,28806435:255918 +k1,12979:25480892,28806435:255918 +k1,12979:26684461,28806435:255918 +k1,12979:27959464,28806435:255918 +k1,12979:32583029,28806435:0 +) +(1,12980:6764466,29671515:25818563,505283,134348 +k1,12979:9824396,29671515:216323 +k1,12979:12151634,29671515:216323 +k1,12979:14543752,29671515:216323 +k1,12979:15951520,29671515:216323 +k1,12979:18496337,29671515:216323 +k1,12979:21932444,29671515:216323 +k1,12979:23838284,29671515:216322 +k1,12979:24670645,29671515:216323 +k1,12979:25906053,29671515:216323 +k1,12979:28110083,29671515:216323 +k1,12979:30285932,29671515:216323 +(1,12979:30285932,29671515:0,459977,115847 +r1,13062:31347621,29671515:1061689,575824,115847 +k1,12979:30285932,29671515:-1061689 +) +(1,12979:30285932,29671515:1061689,459977,115847 +k1,12979:30285932,29671515:3277 +h1,12979:31344344,29671515:0,411205,112570 +) +k1,12979:31563944,29671515:216323 +k1,12979:32583029,29671515:0 +) +(1,12980:6764466,30536595:25818563,505283,7863 +g1,12979:10190688,30536595 +g1,12979:13436030,30536595 +g1,12979:14626819,30536595 +g1,12979:15892319,30536595 +k1,12980:32583029,30536595:13758629 +g1,12980:32583029,30536595 +) +v1,12982:6764466,31221450:0,393216,0 +(1,13014:6764466,42041183:25818563,11212949,196608 +g1,13014:6764466,42041183 +g1,13014:6764466,42041183 +g1,13014:6567858,42041183 +(1,13014:6567858,42041183:0,11212949,196608 +r1,13062:32779637,42041183:26211779,11409557,196608 +k1,13014:6567857,42041183:-26211780 +) +(1,13014:6567858,42041183:26211779,11212949,196608 +[1,13014:6764466,42041183:25818563,11016341,0 +(1,12984:6764466,31455887:25818563,431045,79822 +(1,12983:6764466,31455887:0,0,0 +g1,12983:6764466,31455887 +g1,12983:6764466,31455887 +g1,12983:6436786,31455887 +(1,12983:6436786,31455887:0,0,0 +) +g1,12983:6764466,31455887 +) +k1,12984:6764466,31455887:0 +h1,12984:9752052,31455887:0,0,0 +k1,12984:32583028,31455887:22830976 +g1,12984:32583028,31455887 +) +(1,12989:6764466,32271814:25818563,424439,106246 +(1,12986:6764466,32271814:0,0,0 +g1,12986:6764466,32271814 +g1,12986:6764466,32271814 +g1,12986:6436786,32271814 +(1,12986:6436786,32271814:0,0,0 +) +g1,12986:6764466,32271814 +) +g1,12989:7760328,32271814 +g1,12989:11743775,32271814 +g1,12989:12075729,32271814 +g1,12989:12407683,32271814 +g1,12989:12739637,32271814 +g1,12989:13071591,32271814 +g1,12989:13403545,32271814 +g1,12989:13735499,32271814 +h1,12989:15395269,32271814:0,0,0 +k1,12989:32583029,32271814:17187760 +g1,12989:32583029,32271814 +) +(1,12989:6764466,32956669:25818563,407923,9908 +h1,12989:6764466,32956669:0,0,0 +g1,12989:7760328,32956669 +g1,12989:8092282,32956669 +g1,12989:11743775,32956669 +g1,12989:12075729,32956669 +g1,12989:12407683,32956669 +g1,12989:12739637,32956669 +h1,12989:15395268,32956669:0,0,0 +k1,12989:32583028,32956669:17187760 +g1,12989:32583028,32956669 +) +(1,12991:6764466,33772596:25818563,431045,79822 +(1,12990:6764466,33772596:0,0,0 +g1,12990:6764466,33772596 +g1,12990:6764466,33772596 +g1,12990:6436786,33772596 +(1,12990:6436786,33772596:0,0,0 +) +g1,12990:6764466,33772596 +) +k1,12991:6764466,33772596:0 +h1,12991:13735499,33772596:0,0,0 +k1,12991:32583029,33772596:18847530 +g1,12991:32583029,33772596 +) +(1,12996:6764466,34588523:25818563,424439,79822 +(1,12993:6764466,34588523:0,0,0 +g1,12993:6764466,34588523 +g1,12993:6764466,34588523 +g1,12993:6436786,34588523 +(1,12993:6436786,34588523:0,0,0 +) +g1,12993:6764466,34588523 +) +g1,12996:7760328,34588523 +g1,12996:8092282,34588523 +g1,12996:10084006,34588523 +g1,12996:11411822,34588523 +g1,12996:13403546,34588523 +g1,12996:15727224,34588523 +h1,12996:17055040,34588523:0,0,0 +k1,12996:32583029,34588523:15527989 +g1,12996:32583029,34588523 +) +(1,12996:6764466,35273378:25818563,424439,106246 +h1,12996:6764466,35273378:0,0,0 +g1,12996:7760328,35273378 +g1,12996:8092282,35273378 +g1,12996:8756190,35273378 +g1,12996:11411822,35273378 +g1,12996:14731361,35273378 +g1,12996:16059177,35273378 +g1,12996:18050901,35273378 +g1,12996:22698256,35273378 +h1,12996:25021934,35273378:0,0,0 +k1,12996:32583029,35273378:7561095 +g1,12996:32583029,35273378 +) +(1,12998:6764466,36089305:25818563,431045,106246 +(1,12997:6764466,36089305:0,0,0 +g1,12997:6764466,36089305 +g1,12997:6764466,36089305 +g1,12997:6436786,36089305 +(1,12997:6436786,36089305:0,0,0 +) +g1,12997:6764466,36089305 +) +k1,12998:6764466,36089305:0 +k1,12998:6764466,36089305:0 +h1,12998:17386993,36089305:0,0,0 +k1,12998:32583029,36089305:15196036 +g1,12998:32583029,36089305 +) +(1,13004:6764466,36905232:25818563,424439,79822 +(1,13000:6764466,36905232:0,0,0 +g1,13000:6764466,36905232 +g1,13000:6764466,36905232 +g1,13000:6436786,36905232 +(1,13000:6436786,36905232:0,0,0 +) +g1,13000:6764466,36905232 +) +g1,13004:7760328,36905232 +g1,13004:8092282,36905232 +g1,13004:8424236,36905232 +g1,13004:8756190,36905232 +g1,13004:9088144,36905232 +g1,13004:9420098,36905232 +g1,13004:9752052,36905232 +g1,13004:10084006,36905232 +g1,13004:10415960,36905232 +g1,13004:10747914,36905232 +g1,13004:11079868,36905232 +g1,13004:11411822,36905232 +g1,13004:11743776,36905232 +g1,13004:12075730,36905232 +g1,13004:12407684,36905232 +g1,13004:15395269,36905232 +g1,13004:17055039,36905232 +g1,13004:19046763,36905232 +g1,13004:19378717,36905232 +g1,13004:19710671,36905232 +g1,13004:20374579,36905232 +g1,13004:22366303,36905232 +g1,13004:22698257,36905232 +g1,13004:23030211,36905232 +g1,13004:23362165,36905232 +g1,13004:23694119,36905232 +k1,13004:23694119,36905232:0 +h1,13004:26349751,36905232:0,0,0 +k1,13004:32583029,36905232:6233278 +g1,13004:32583029,36905232 +) +(1,13004:6764466,37590087:25818563,424439,106246 +h1,13004:6764466,37590087:0,0,0 +g1,13004:7760328,37590087 +g1,13004:11743775,37590087 +g1,13004:15395268,37590087 +g1,13004:15727222,37590087 +g1,13004:19046761,37590087 +g1,13004:22366300,37590087 +k1,13004:22366300,37590087:0 +h1,13004:26349747,37590087:0,0,0 +k1,13004:32583029,37590087:6233282 +g1,13004:32583029,37590087 +) +(1,13004:6764466,38274942:25818563,424439,106246 +h1,13004:6764466,38274942:0,0,0 +g1,13004:7760328,38274942 +g1,13004:9752052,38274942 +g1,13004:10084006,38274942 +g1,13004:10415960,38274942 +g1,13004:10747914,38274942 +g1,13004:11079868,38274942 +g1,13004:11411822,38274942 +g1,13004:11743776,38274942 +g1,13004:12075730,38274942 +g1,13004:12407684,38274942 +g1,13004:15395269,38274942 +g1,13004:15727223,38274942 +g1,13004:19046762,38274942 +g1,13004:19378716,38274942 +g1,13004:22366301,38274942 +k1,13004:22366301,38274942:0 +h1,13004:26349748,38274942:0,0,0 +k1,13004:32583029,38274942:6233281 +g1,13004:32583029,38274942 +) +(1,13006:6764466,39090869:25818563,431045,106246 +(1,13005:6764466,39090869:0,0,0 +g1,13005:6764466,39090869 +g1,13005:6764466,39090869 +g1,13005:6436786,39090869 +(1,13005:6436786,39090869:0,0,0 +) +g1,13005:6764466,39090869 +) +k1,13006:6764466,39090869:0 +k1,13006:6764466,39090869:0 +h1,13006:16723085,39090869:0,0,0 +k1,13006:32583029,39090869:15859944 +g1,13006:32583029,39090869 +) +(1,13013:6764466,39906796:25818563,424439,86428 +(1,13008:6764466,39906796:0,0,0 +g1,13008:6764466,39906796 +g1,13008:6764466,39906796 +g1,13008:6436786,39906796 +(1,13008:6436786,39906796:0,0,0 +) +g1,13008:6764466,39906796 +) +g1,13013:7760328,39906796 +g1,13013:8092282,39906796 +g1,13013:9420098,39906796 +g1,13013:11411822,39906796 +g1,13013:13071592,39906796 +g1,13013:15727224,39906796 +g1,13013:17718948,39906796 +g1,13013:19710672,39906796 +g1,13013:21702396,39906796 +g1,13013:24026074,39906796 +h1,13013:25021936,39906796:0,0,0 +k1,13013:32583029,39906796:7561093 +g1,13013:32583029,39906796 +) +(1,13013:6764466,40591651:25818563,431045,86428 +h1,13013:6764466,40591651:0,0,0 +g1,13013:7760328,40591651 +g1,13013:8092282,40591651 +g1,13013:8756190,40591651 +g1,13013:11411822,40591651 +g1,13013:17055039,40591651 +g1,13013:18050901,40591651 +h1,13013:18382855,40591651:0,0,0 +k1,13013:32583029,40591651:14200174 +g1,13013:32583029,40591651 +) +(1,13013:6764466,41276506:25818563,431045,106246 +h1,13013:6764466,41276506:0,0,0 +g1,13013:7760328,41276506 +g1,13013:8092282,41276506 +g1,13013:8424236,41276506 +g1,13013:9752052,41276506 +g1,13013:10415960,41276506 +g1,13013:11743776,41276506 +g1,13013:13735500,41276506 +g1,13013:18382855,41276506 +h1,13013:20706533,41276506:0,0,0 +k1,13013:32583029,41276506:11876496 +g1,13013:32583029,41276506 +) +(1,13013:6764466,41961361:25818563,431045,79822 +h1,13013:6764466,41961361:0,0,0 +g1,13013:7760328,41961361 +g1,13013:8092282,41961361 +g1,13013:8424236,41961361 +g1,13013:9752052,41961361 +g1,13013:10415960,41961361 +g1,13013:11743776,41961361 +g1,13013:13735500,41961361 +g1,13013:17386993,41961361 +g1,13013:19378717,41961361 +g1,13013:21702395,41961361 +g1,13013:22698257,41961361 +g1,13013:25021935,41961361 +k1,13013:25021935,41961361:0 +h1,13013:28341475,41961361:0,0,0 +k1,13013:32583029,41961361:4241554 +g1,13013:32583029,41961361 +) +] +) +g1,13014:32583029,42041183 +g1,13014:6764466,42041183 +g1,13014:6764466,42041183 +g1,13014:32583029,42041183 +g1,13014:32583029,42041183 +) +h1,13014:6764466,42237791:0,0,0 +] +g1,13017:32583029,42237791 +) +h1,13017:6630773,42237791:0,0,0 +v1,13020:6630773,43102871:0,393216,0 +(1,13062:6630773,45267812:25952256,2558157,0 +g1,13062:6630773,45267812 +g1,13062:6237557,45267812 +r1,13062:6368629,45267812:131072,2558157,0 +g1,13062:6567858,45267812 +g1,13062:6764466,45267812 +[1,13062:6764466,45267812:25818563,2558157,0 +(1,13021:6764466,43411169:25818563,701514,196608 +(1,13020:6764466,43411169:0,701514,196608 +r1,13062:8863446,43411169:2098980,898122,196608 +k1,13020:6764466,43411169:-2098980 +) +(1,13020:6764466,43411169:2098980,701514,196608 +) +k1,13020:9131789,43411169:268343 +k1,13020:10858007,43411169:327680 +k1,13020:11944240,43411169:268344 +k1,13020:12983286,43411169:268343 +k1,13020:15913047,43411169:268344 +k1,13020:16840682,43411169:268343 +k1,13020:18128111,43411169:268344 +k1,13020:19488939,43411169:268343 +k1,13020:20416574,43411169:268343 +k1,13020:22695563,43411169:268344 +k1,13020:25935964,43411169:268343 +k1,13020:27771929,43411169:268344 +k1,13020:29059357,43411169:268343 +(1,13020:29059357,43411169:0,452978,115847 +r1,13062:32583029,43411169:3523672,568825,115847 +k1,13020:29059357,43411169:-3523672 +) +(1,13020:29059357,43411169:3523672,452978,115847 +k1,13020:29059357,43411169:3277 +h1,13020:32579752,43411169:0,411205,112570 +) +k1,13020:32583029,43411169:0 +) +(1,13021:6764466,44276249:25818563,513147,134348 +k1,13020:9100572,44276249:202909 +k1,13020:10171834,44276249:202910 +k1,13020:11566188,44276249:202909 +k1,13020:12235059,44276249:202910 +k1,13020:13457053,44276249:202909 +k1,13020:15358001,44276249:202910 +k1,13020:17128531,44276249:202909 +k1,13020:17687301,44276249:202910 +k1,13020:19702936,44276249:202909 +k1,13020:23222623,44276249:202910 +k1,13020:24113005,44276249:202909 +k1,13020:26932768,44276249:202910 +k1,13020:31015408,44276249:202909 +k1,13020:32583029,44276249:0 +) +(1,13021:6764466,45141329:25818563,513147,126483 +k1,13020:7342822,45141329:222496 +k1,13020:10323074,45141329:222497 +k1,13020:12225913,45141329:222496 +k1,13020:15210753,45141329:222497 +k1,13020:17000870,45141329:222496 +k1,13020:18242451,45141329:222496 +k1,13020:20185923,45141329:222497 +k1,13020:22002255,45141329:222496 +k1,13020:22712316,45141329:222473 +k1,13020:24174753,45141329:222496 +k1,13020:27869347,45141329:222497 +k1,13020:28751135,45141329:222496 +k1,13020:30393797,45141329:222497 +k1,13020:31563944,45141329:222496 +k1,13020:32583029,45141329:0 +) +] +g1,13062:32583029,45267812 +) +] +(1,13062:32583029,45706769:0,0,0 +g1,13062:32583029,45706769 +) +) +] +(1,13062:6630773,47279633:25952256,0,0 +h1,13062:6630773,47279633:25952256,0,0 +) +] +(1,13062:4262630,4025873:0,0,0 +[1,13062:-473656,4025873:0,0,0 +(1,13062:-473656,-710413:0,0,0 +(1,13062:-473656,-710413:0,0,0 +g1,13062:-473656,-710413 +) +g1,13062:-473656,-710413 +) +] +) +] +!30955 +}210 +!12 +{211 +[1,13062:4262630,47279633:28320399,43253760,0 +(1,13062:4262630,4025873:0,0,0 +[1,13062:-473656,4025873:0,0,0 +(1,13062:-473656,-710413:0,0,0 +(1,13062:-473656,-644877:0,0,0 +k1,13062:-473656,-644877:-65536 ) +(1,13062:-473656,4736287:0,0,0 +k1,13062:-473656,4736287:5209943 ) -k1,13490:3078556,49800853:-34777008 +g1,13062:-473656,-710413 ) ] -g1,13490:6630773,4812305 -g1,13490:6630773,4812305 -g1,13490:10592424,4812305 -g1,13490:12629938,4812305 -g1,13490:15030521,4812305 -k1,13490:31387652,4812305:16357131 ) +[1,13062:6630773,47279633:25952256,43253760,0 +[1,13062:6630773,4812305:25952256,786432,0 +(1,13062:6630773,4812305:25952256,513147,126483 +(1,13062:6630773,4812305:25952256,513147,126483 +g1,13062:3078558,4812305 +[1,13062:3078558,4812305:0,0,0 +(1,13062:3078558,2439708:0,1703936,0 +k1,13062:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,13062:2537886,2439708:1179648,16384,0 ) -] -[1,13490:6630773,45706769:25952256,40108032,0 -(1,13490:6630773,45706769:25952256,40108032,0 -(1,13490:6630773,45706769:0,0,0 -g1,13490:6630773,45706769 +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,13062:3078558,1915420:16384,1179648,0 ) -[1,13490:6630773,45706769:25952256,40108032,0 -(1,13432:6630773,12449685:25952256,6850948,0 -k1,13432:7801963,12449685:1171190 -(1,13410:7801963,12449685:0,0,0 -g1,13410:7801963,12449685 -g1,13410:7801963,12449685 -g1,13410:7474283,12449685 -(1,13410:7474283,12449685:0,0,0 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) -g1,13410:7801963,12449685 +] ) -(1,13430:7801963,12449685:23609877,6850948,0 -g1,13430:11073767,12449685 -(1,13430:11073767,6227191:0,0,0 -(1,13430:11073767,6227191:0,0,0 -g1,13412:11073767,6227191 -(1,13413:11073767,6227191:0,0,0 -(1,13413:11073767,6227191:0,0,0 -g1,13413:11073767,6227191 -g1,13413:11073767,6227191 -g1,13413:11073767,6227191 -g1,13413:11073767,6227191 -g1,13413:11073767,6227191 -(1,13413:11073767,6227191:0,0,0 -(1,13413:11073767,6227191:4940249,454754,104590 -(1,13413:11073767,6227191:4940249,454754,104590 -g1,13413:13004851,6227191 -$1,13413:13004851,6227191 -$1,13413:13612370,6227191 -g1,13413:13791677,6227191 -(1,13413:13791677,6227191:0,414307,104590 -r1,13490:16014016,6227191:2222339,518897,104590 -k1,13413:13791677,6227191:-2222339 ) -(1,13413:13791677,6227191:2222339,414307,104590 -k1,13413:13791677,6227191:3277 -h1,13413:16010739,6227191:0,370085,101313 ) +] +[1,13062:3078558,4812305:0,0,0 +(1,13062:3078558,2439708:0,1703936,0 +g1,13062:29030814,2439708 +g1,13062:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,13062:36151628,1915420:16384,1179648,0 ) -g1,13413:16014016,6227191 +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) +] ) -g1,13413:11073767,6227191 -g1,13413:11073767,6227191 +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,13062:37855564,2439708:1179648,16384,0 ) ) -g1,13413:11073767,6227191 -(1,13414:11073767,6227191:0,0,0 -(1,13414:11073767,6227191:0,0,0 -g1,13414:11073767,6227191 -g1,13414:11073767,6227191 -g1,13414:11073767,6227191 -g1,13414:11073767,6227191 -g1,13414:11073767,6227191 -(1,13414:11073767,6227191:0,0,0 -(1,13414:11073767,6227191:5813184,454754,104590 -(1,13414:11073767,6227191:5813184,454754,104590 -g1,13414:14827408,6227191 -$1,13414:14827408,6227191 -$1,13414:15434927,6227191 -g1,13414:15614234,6227191 -(1,13414:15614234,6227191:0,408008,104590 -r1,13490:16886951,6227191:1272717,512598,104590 -k1,13414:15614234,6227191:-1272717 -) -(1,13414:15614234,6227191:1272717,408008,104590 -k1,13414:15614234,6227191:3277 -h1,13414:16883674,6227191:0,370085,101313 -) -) -g1,13414:16886951,6227191 -) -) -g1,13414:11073767,6227191 -g1,13414:11073767,6227191 -) -) -g1,13414:11073767,6227191 -(1,13415:11073767,6227191:0,0,0 -(1,13415:11073767,6227191:0,0,0 -g1,13415:11073767,6227191 -g1,13415:11073767,6227191 -g1,13415:11073767,6227191 -g1,13415:11073767,6227191 -g1,13415:11073767,6227191 -(1,13415:11073767,6227191:0,0,0 -(1,13415:11073767,6227191:5356075,454754,120913 -(1,13415:11073767,6227191:5356075,454754,120913 -g1,13415:13420677,6227191 -$1,13415:13420677,6227191 -$1,13415:14028196,6227191 -g1,13415:14207503,6227191 -(1,13415:14207503,6227191:0,408008,110889 -r1,13490:16429842,6227191:2222339,518897,110889 -k1,13415:14207503,6227191:-2222339 -) -(1,13415:14207503,6227191:2222339,408008,110889 -k1,13415:14207503,6227191:3277 -h1,13415:16426565,6227191:0,370085,101313 -) -) -g1,13415:16429842,6227191 -) -) -g1,13415:11073767,6227191 -g1,13415:11073767,6227191 -) -) -g1,13415:11073767,6227191 -(1,13416:11073767,6227191:0,0,0 -(1,13416:11073767,6227191:0,0,0 -g1,13416:11073767,6227191 -g1,13416:11073767,6227191 -g1,13416:11073767,6227191 -g1,13416:11073767,6227191 -g1,13416:11073767,6227191 -(1,13416:11073767,6227191:0,0,0 -(1,13416:11073767,6227191:6124221,454754,104590 -(1,13416:11073767,6227191:6124221,454754,104590 -g1,13416:14505364,6227191 -$1,13416:14505364,6227191 -$1,13416:15112883,6227191 -g1,13416:15292190,6227191 -(1,13416:15292190,6227191:0,414307,104590 -r1,13490:17197988,6227191:1905798,518897,104590 -k1,13416:15292190,6227191:-1905798 -) -(1,13416:15292190,6227191:1905798,414307,104590 -k1,13416:15292190,6227191:3277 -h1,13416:17194711,6227191:0,370085,101313 -) -) -g1,13416:17197988,6227191 -) -) -g1,13416:11073767,6227191 -g1,13416:11073767,6227191 -) -) -(1,13417:11073767,6227191:0,0,0 -(1,13417:11073767,6227191:0,0,0 -g1,13417:11073767,6227191 -g1,13417:11073767,6227191 -g1,13417:11073767,6227191 -g1,13417:11073767,6227191 -g1,13417:11073767,6227191 -(1,13417:11073767,6227191:0,0,0 -(1,13417:11073767,6227191:1589257,408008,110889 -(1,13417:11073767,6227191:1589257,408008,110889 -(1,13417:11073767,6227191:0,408008,110889 -r1,13490:12663024,6227191:1589257,518897,110889 -k1,13417:11073767,6227191:-1589257 -) -(1,13417:11073767,6227191:1589257,408008,110889 -k1,13417:11073767,6227191:3277 -h1,13417:12659747,6227191:0,370085,101313 -) -) -g1,13417:12663024,6227191 -) -) -g1,13417:11073767,6227191 -g1,13417:11073767,6227191 +k1,13062:3078556,2439708:-34777008 ) +] +[1,13062:3078558,4812305:0,0,0 +(1,13062:3078558,49800853:0,16384,2228224 +k1,13062:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,13062:2537886,49800853:1179648,16384,0 ) -g1,13417:11073767,6227191 -(1,13418:11073767,6227191:0,0,0 -(1,13418:11073767,6227191:0,0,0 -g1,13418:11073767,6227191 -g1,13418:11073767,6227191 -g1,13418:11073767,6227191 -g1,13418:11073767,6227191 -g1,13418:11073767,6227191 -(1,13418:11073767,6227191:0,0,0 -(1,13418:11073767,6227191:2866617,454754,120913 -(1,13418:11073767,6227191:2866617,454754,120913 -(1,13418:11073767,6227191:0,408008,110889 -r1,13490:12029943,6227191:956176,518897,110889 -k1,13418:11073767,6227191:-956176 -) -(1,13418:11073767,6227191:956176,408008,110889 -k1,13418:11073767,6227191:3277 -h1,13418:12026666,6227191:0,370085,101313 -) -g1,13418:12209250,6227191 -) -g1,13418:13940384,6227191 -) -) -g1,13418:11073767,6227191 -g1,13418:11073767,6227191 -) -) -g1,13418:11073767,6227191 -(1,13419:11073767,6227191:0,0,0 -(1,13419:11073767,6227191:0,0,0 -g1,13419:11073767,6227191 -g1,13419:11073767,6227191 -g1,13419:11073767,6227191 -g1,13419:11073767,6227191 -g1,13419:11073767,6227191 -(1,13419:11073767,6227191:0,0,0 -(1,13419:11073767,6227191:2855420,408008,104590 -(1,13419:11073767,6227191:2855420,408008,104590 -(1,13419:11073767,6227191:0,408008,104590 -r1,13490:13929187,6227191:2855420,512598,104590 -k1,13419:11073767,6227191:-2855420 -) -(1,13419:11073767,6227191:2855420,408008,104590 -k1,13419:11073767,6227191:3277 -h1,13419:13925910,6227191:0,370085,101313 -) -) -g1,13419:13929187,6227191 -) -) -g1,13419:11073767,6227191 -g1,13419:11073767,6227191 -) -) -g1,13419:11073767,6227191 -(1,13420:11073767,6227191:0,0,0 -(1,13420:11073767,6227191:0,0,0 -g1,13420:11073767,6227191 -g1,13420:11073767,6227191 -g1,13420:11073767,6227191 -g1,13420:11073767,6227191 -g1,13420:11073767,6227191 -(1,13420:11073767,6227191:0,0,0 -(1,13420:11073767,6227191:2222339,408008,104590 -(1,13420:11073767,6227191:2222339,408008,104590 -(1,13420:11073767,6227191:0,408008,104590 -r1,13490:13296106,6227191:2222339,512598,104590 -k1,13420:11073767,6227191:-2222339 -) -(1,13420:11073767,6227191:2222339,408008,104590 -k1,13420:11073767,6227191:3277 -h1,13420:13292829,6227191:0,370085,101313 -) -) -g1,13420:13296106,6227191 -) -) -g1,13420:11073767,6227191 -g1,13420:11073767,6227191 -) -) -g1,13420:11073767,6227191 -(1,13421:11073767,6227191:0,0,0 -(1,13421:11073767,6227191:0,0,0 -g1,13421:11073767,6227191 -g1,13421:11073767,6227191 -g1,13421:11073767,6227191 -g1,13421:11073767,6227191 -g1,13421:11073767,6227191 -(1,13421:11073767,6227191:0,0,0 -(1,13421:11073767,6227191:1905798,408008,104590 -(1,13421:11073767,6227191:1905798,408008,104590 -(1,13421:11073767,6227191:0,408008,104590 -r1,13490:12979565,6227191:1905798,512598,104590 -k1,13421:11073767,6227191:-1905798 -) -(1,13421:11073767,6227191:1905798,408008,104590 -k1,13421:11073767,6227191:3277 -h1,13421:12976288,6227191:0,370085,101313 -) -) -g1,13421:12979565,6227191 -) -) -g1,13421:11073767,6227191 -g1,13421:11073767,6227191 -) -) -g1,13421:11073767,6227191 -g1,13422:11073767,6227191 -g1,13422:11073767,6227191 -g1,13422:11073767,6227191 -g1,13422:11073767,6227191 -g1,13422:11073767,6227191 -g1,13422:11073767,6227191 -g1,13423:11073767,6227191 -g1,13423:11073767,6227191 -g1,13423:11073767,6227191 -g1,13423:11073767,6227191 -g1,13423:11073767,6227191 -g1,13423:11073767,6227191 -g1,13424:11073767,6227191 -g1,13424:11073767,6227191 -g1,13424:11073767,6227191 -g1,13424:11073767,6227191 -g1,13424:11073767,6227191 -g1,13424:11073767,6227191 -g1,13425:11073767,6227191 -g1,13425:11073767,6227191 -g1,13425:11073767,6227191 -g1,13425:11073767,6227191 -g1,13425:11073767,6227191 -g1,13425:11073767,6227191 -g1,13426:11073767,6227191 -g1,13426:11073767,6227191 -g1,13426:11073767,6227191 -g1,13426:11073767,6227191 -g1,13426:11073767,6227191 -g1,13426:11073767,6227191 -g1,13427:11073767,6227191 -g1,13427:11073767,6227191 -g1,13427:11073767,6227191 -g1,13427:11073767,6227191 -g1,13427:11073767,6227191 -g1,13427:11073767,6227191 -g1,13428:11073767,6227191 -g1,13428:11073767,6227191 -g1,13428:11073767,6227191 -g1,13428:11073767,6227191 -g1,13428:11073767,6227191 -g1,13428:11073767,6227191 -g1,13429:11073767,6227191 -g1,13429:11073767,6227191 -g1,13429:11073767,6227191 -g1,13429:11073767,6227191 -g1,13429:11073767,6227191 -g1,13429:11073767,6227191 -g1,13430:11073767,6227191 -g1,13430:11073767,6227191 -) -g1,13430:11073767,6227191 -) -) -g1,13432:31411840,12449685 -k1,13432:32583029,12449685:1171189 -) -(1,13435:6630773,13946533:25952256,513147,134348 -h1,13434:6630773,13946533:983040,0,0 -k1,13434:8837116,13946533:181281 -k1,13434:10037482,13946533:181281 -k1,13434:12773355,13946533:181280 -k1,13434:13613928,13946533:181281 -k1,13434:14814294,13946533:181281 -(1,13434:14814294,13946533:0,414482,115847 -r1,13490:19041390,13946533:4227096,530329,115847 -k1,13434:14814294,13946533:-4227096 -) -(1,13434:14814294,13946533:4227096,414482,115847 -k1,13434:14814294,13946533:3277 -h1,13434:19038113,13946533:0,411205,112570 -) -k1,13434:19222671,13946533:181281 -k1,13434:20793314,13946533:181280 -k1,13434:21909138,13946533:181281 -k1,13434:23945743,13946533:181281 -k1,13434:26612805,13946533:181281 -h1,13434:28155523,13946533:0,0,0 -k1,13434:28336803,13946533:181280 -k1,13434:29327454,13946533:181281 -k1,13434:31006888,13946533:181281 -h1,13434:32202265,13946533:0,0,0 -k1,13434:32583029,13946533:0 -) -(1,13435:6630773,14788021:25952256,513147,134348 -k1,13434:7857662,14788021:207804 -k1,13434:10421485,14788021:207804 -k1,13434:14410715,14788021:207803 -k1,13434:15150016,14788021:207804 -k1,13434:16424091,14788021:207804 -k1,13434:16987755,14788021:207804 -k1,13434:18779563,14788021:207803 -k1,13434:23677123,14788021:207804 -k1,13434:24571089,14788021:207804 -k1,13434:26593585,14788021:207804 -k1,13434:28190751,14788021:207803 -k1,13434:31015408,14788021:207804 -k1,13434:32583029,14788021:0 -) -(1,13435:6630773,15629509:25952256,505283,126483 -g1,13434:7461769,15629509 -g1,13434:9041842,15629509 -g1,13434:10448244,15629509 -g1,13434:12690230,15629509 -g1,13434:13505497,15629509 -g1,13434:14723811,15629509 -g1,13434:20451657,15629509 -g1,13434:21928183,15629509 -k1,13435:32583029,15629509:8625851 -g1,13435:32583029,15629509 -) -(1,13437:6630773,16470997:25952256,505283,126483 -h1,13436:6630773,16470997:983040,0,0 -k1,13436:8949327,16470997:293492 -k1,13436:11057511,16470997:293492 -k1,13436:12914037,16470997:293492 -k1,13436:14946199,16470997:293492 -k1,13436:17669766,16470997:293492 -k1,13436:18319119,16470997:293493 -k1,13436:20509878,16470997:293492 -k1,13436:24363941,16470997:293492 -k1,13436:25285268,16470997:293492 -k1,13436:26597845,16470997:293492 -k1,13436:29552754,16470997:293492 -k1,13436:31714677,16470997:293492 -k1,13436:32583029,16470997:0 -) -(1,13437:6630773,17312485:25952256,513147,126483 -k1,13436:7545328,17312485:227082 -k1,13436:8791495,17312485:227082 -k1,13436:10672051,17312485:227083 -k1,13436:12886840,17312485:227082 -k1,13436:13800084,17312485:227082 -k1,13436:16056161,17312485:227082 -k1,13436:17355412,17312485:227082 -k1,13436:18450846,17312485:227082 -k1,13436:21076547,17312485:227083 -k1,13436:21659489,17312485:227082 -k1,13436:26247337,17312485:227082 -k1,13436:30255846,17312485:227082 -k1,13436:32583029,17312485:0 -) -(1,13437:6630773,18153973:25952256,513147,134348 -k1,13436:7569950,18153973:279885 -k1,13436:8868921,18153973:279886 -k1,13436:11678496,18153973:279885 -k1,13436:12586216,18153973:279885 -k1,13436:15532107,18153973:279886 -k1,13436:16463420,18153973:279885 -k1,13436:17762391,18153973:279886 -k1,13436:20029983,18153973:279885 -k1,13436:22853320,18153973:279885 -k1,13436:24001558,18153973:279886 -k1,13436:25811709,18153973:279885 -k1,13436:26743022,18153973:279885 -k1,13436:28460113,18153973:279886 -k1,13436:29510701,18153973:279885 -k1,13436:32583029,18153973:0 -) -(1,13437:6630773,18995461:25952256,513147,134348 -k1,13436:9345987,18995461:156688 -(1,13436:9345987,18995461:0,459977,115847 -r1,13490:11462812,18995461:2116825,575824,115847 -k1,13436:9345987,18995461:-2116825 -) -(1,13436:9345987,18995461:2116825,459977,115847 -k1,13436:9345987,18995461:3277 -h1,13436:11459535,18995461:0,411205,112570 -) -k1,13436:11619500,18995461:156688 -k1,13436:13699015,18995461:156689 -k1,13436:14874788,18995461:156688 -k1,13436:16638419,18995461:156688 -k1,13436:20576534,18995461:156688 -k1,13436:21384650,18995461:156688 -k1,13436:22289104,18995461:156688 -k1,13436:26939597,18995461:156689 -k1,13436:29361865,18995461:156688 -k1,13436:30466204,18995461:156688 -(1,13436:30466204,18995461:0,459977,115847 -r1,13490:32583029,18995461:2116825,575824,115847 -k1,13436:30466204,18995461:-2116825 -) -(1,13436:30466204,18995461:2116825,459977,115847 -k1,13436:30466204,18995461:3277 -h1,13436:32579752,18995461:0,411205,112570 -) -k1,13436:32583029,18995461:0 -) -(1,13437:6630773,19836949:25952256,505283,122846 -g1,13436:7361499,19836949 -(1,13436:7361499,19836949:0,452978,122846 -r1,13490:10181748,19836949:2820249,575824,122846 -k1,13436:7361499,19836949:-2820249 -) -(1,13436:7361499,19836949:2820249,452978,122846 -k1,13436:7361499,19836949:3277 -h1,13436:10178471,19836949:0,411205,112570 -) -g1,13436:10380977,19836949 -g1,13436:11263091,19836949 -g1,13436:13818339,19836949 -k1,13437:32583029,19836949:14809592 -g1,13437:32583029,19836949 -) -v1,13439:6630773,21027415:0,393216,0 -(1,13458:6630773,30002826:25952256,9368627,196608 -g1,13458:6630773,30002826 -g1,13458:6630773,30002826 -g1,13458:6434165,30002826 -(1,13458:6434165,30002826:0,9368627,196608 -r1,13490:32779637,30002826:26345472,9565235,196608 -k1,13458:6434165,30002826:-26345472 -) -(1,13458:6434165,30002826:26345472,9368627,196608 -[1,13458:6630773,30002826:25952256,9172019,0 -(1,13441:6630773,21241325:25952256,410518,107478 -(1,13440:6630773,21241325:0,0,0 -g1,13440:6630773,21241325 -g1,13440:6630773,21241325 -g1,13440:6303093,21241325 -(1,13440:6303093,21241325:0,0,0 -) -g1,13440:6630773,21241325 -) -g1,13441:8211502,21241325 -g1,13441:9159940,21241325 -g1,13441:12321397,21241325 -g1,13441:12953689,21241325 -g1,13441:15166709,21241325 -g1,13441:16747438,21241325 -g1,13441:17379730,21241325 -g1,13441:21805770,21241325 -g1,13441:24018790,21241325 -g1,13441:24651082,21241325 -h1,13441:28760976,21241325:0,0,0 -k1,13441:32583029,21241325:3822053 -g1,13441:32583029,21241325 -) -(1,13442:6630773,21907503:25952256,410518,76021 -h1,13442:6630773,21907503:0,0,0 -k1,13442:6630773,21907503:0 -h1,13442:10108375,21907503:0,0,0 -k1,13442:32583029,21907503:22474654 -g1,13442:32583029,21907503 -) -(1,13457:6630773,22573681:25952256,410518,101187 -(1,13444:6630773,22573681:0,0,0 -g1,13444:6630773,22573681 -g1,13444:6630773,22573681 -g1,13444:6303093,22573681 -(1,13444:6303093,22573681:0,0,0 -) -g1,13444:6630773,22573681 -) -g1,13457:7579210,22573681 -g1,13457:10424521,22573681 -g1,13457:11372958,22573681 -g1,13457:14218269,22573681 -h1,13457:15798997,22573681:0,0,0 -k1,13457:32583029,22573681:16784032 -g1,13457:32583029,22573681 -) -(1,13457:6630773,23239859:25952256,379060,0 -h1,13457:6630773,23239859:0,0,0 -h1,13457:7263064,23239859:0,0,0 -k1,13457:32583028,23239859:25319964 -g1,13457:32583028,23239859 -) -(1,13457:6630773,23906037:25952256,404226,107478 -h1,13457:6630773,23906037:0,0,0 -g1,13457:7579210,23906037 -g1,13457:9792230,23906037 -g1,13457:14218270,23906037 -g1,13457:16115144,23906037 -h1,13457:17063581,23906037:0,0,0 -k1,13457:32583029,23906037:15519448 -g1,13457:32583029,23906037 -) -(1,13457:6630773,24572215:25952256,379060,0 -h1,13457:6630773,24572215:0,0,0 -h1,13457:7263064,24572215:0,0,0 -k1,13457:32583028,24572215:25319964 -g1,13457:32583028,24572215 -) -(1,13457:6630773,25238393:25952256,379060,101187 -h1,13457:6630773,25238393:0,0,0 -g1,13457:7579210,25238393 -g1,13457:10740667,25238393 -h1,13457:12321395,25238393:0,0,0 -k1,13457:32583029,25238393:20261634 -g1,13457:32583029,25238393 -) -(1,13457:6630773,25904571:25952256,379060,0 -h1,13457:6630773,25904571:0,0,0 -h1,13457:7263064,25904571:0,0,0 -k1,13457:32583028,25904571:25319964 -g1,13457:32583028,25904571 -) -(1,13457:6630773,26570749:25952256,410518,101187 -h1,13457:6630773,26570749:0,0,0 -g1,13457:7579210,26570749 -g1,13457:9476084,26570749 -g1,13457:11372958,26570749 -g1,13457:15482852,26570749 -g1,13457:17695872,26570749 -g1,13457:18644309,26570749 -h1,13457:20225037,26570749:0,0,0 -k1,13457:32583029,26570749:12357992 -g1,13457:32583029,26570749 -) -(1,13457:6630773,27236927:25952256,379060,0 -h1,13457:6630773,27236927:0,0,0 -h1,13457:7263064,27236927:0,0,0 -k1,13457:32583028,27236927:25319964 -g1,13457:32583028,27236927 -) -(1,13457:6630773,27903105:25952256,379060,0 -h1,13457:6630773,27903105:0,0,0 -h1,13457:7263064,27903105:0,0,0 -k1,13457:32583028,27903105:25319964 -g1,13457:32583028,27903105 -) -(1,13457:6630773,28569283:25952256,410518,6290 -h1,13457:6630773,28569283:0,0,0 -g1,13457:7579210,28569283 -g1,13457:7895356,28569283 -g1,13457:8211502,28569283 -g1,13457:8527648,28569283 -g1,13457:8843794,28569283 -g1,13457:9159940,28569283 -g1,13457:9476086,28569283 -g1,13457:10424523,28569283 -g1,13457:13269834,28569283 -g1,13457:15482854,28569283 -g1,13457:16431291,28569283 -g1,13457:18644311,28569283 -h1,13457:19592748,28569283:0,0,0 -k1,13457:32583029,28569283:12990281 -g1,13457:32583029,28569283 -) -(1,13457:6630773,29235461:25952256,388497,9436 -h1,13457:6630773,29235461:0,0,0 -g1,13457:7579210,29235461 -g1,13457:9159939,29235461 -g1,13457:9476085,29235461 -g1,13457:9792231,29235461 -g1,13457:10108377,29235461 -g1,13457:10424523,29235461 -g1,13457:10740669,29235461 -g1,13457:11056815,29235461 -g1,13457:11372961,29235461 -g1,13457:11689107,29235461 -g1,13457:12005253,29235461 -g1,13457:12321399,29235461 -g1,13457:12637545,29235461 -g1,13457:12953691,29235461 -g1,13457:13269837,29235461 -g1,13457:13585983,29235461 -g1,13457:13902129,29235461 -g1,13457:14218275,29235461 -g1,13457:14534421,29235461 -g1,13457:14850567,29235461 -g1,13457:15166713,29235461 -g1,13457:15482859,29235461 -g1,13457:16431296,29235461 -g1,13457:16747442,29235461 -g1,13457:17063588,29235461 -g1,13457:17379734,29235461 -g1,13457:17695880,29235461 -h1,13457:19592754,29235461:0,0,0 -k1,13457:32583029,29235461:12990275 -g1,13457:32583029,29235461 -) -(1,13457:6630773,29901639:25952256,388497,101187 -h1,13457:6630773,29901639:0,0,0 -g1,13457:7579210,29901639 -g1,13457:9476084,29901639 -g1,13457:9792230,29901639 -g1,13457:10424522,29901639 -g1,13457:10740668,29901639 -g1,13457:11056814,29901639 -g1,13457:13269834,29901639 -g1,13457:13585980,29901639 -g1,13457:13902126,29901639 -g1,13457:14218272,29901639 -g1,13457:14534418,29901639 -g1,13457:14850564,29901639 -g1,13457:15166710,29901639 -g1,13457:15482856,29901639 -g1,13457:16431293,29901639 -g1,13457:16747439,29901639 -g1,13457:17063585,29901639 -g1,13457:17379731,29901639 -g1,13457:17695877,29901639 -g1,13457:18012023,29901639 -h1,13457:19592751,29901639:0,0,0 -k1,13457:32583029,29901639:12990278 -g1,13457:32583029,29901639 -) -] -) -g1,13458:32583029,30002826 -g1,13458:6630773,30002826 -g1,13458:6630773,30002826 -g1,13458:32583029,30002826 -g1,13458:32583029,30002826 -) -h1,13458:6630773,30199434:0,0,0 -(1,13462:6630773,31565210:25952256,513147,126483 -h1,13461:6630773,31565210:983040,0,0 -k1,13461:8963974,31565210:153474 -k1,13461:11765758,31565210:153474 -k1,13461:13486853,31565210:153474 -k1,13461:14659412,31565210:153474 -(1,13461:14659412,31565210:0,452978,115847 -r1,13490:17127949,31565210:2468537,568825,115847 -k1,13461:14659412,31565210:-2468537 -) -(1,13461:14659412,31565210:2468537,452978,115847 -k1,13461:14659412,31565210:3277 -h1,13461:17124672,31565210:0,411205,112570 -) -k1,13461:17281424,31565210:153475 -k1,13461:19889221,31565210:153474 -k1,13461:20990346,31565210:153474 -k1,13461:22552143,31565210:153428 -k1,13461:23723392,31565210:153475 -k1,13461:24977871,31565210:153474 -k1,13461:26823485,31565210:153474 -k1,13461:30493621,31565210:153474 -k1,13461:31298523,31565210:153474 -k1,13461:32583029,31565210:0 -) -(1,13462:6630773,32406698:25952256,513147,134348 -k1,13461:7750685,32406698:172261 -k1,13461:8851564,32406698:172234 -k1,13461:10215269,32406698:172260 -k1,13461:11147748,32406698:172261 -k1,13461:13759259,32406698:172261 -k1,13461:14740890,32406698:172261 -k1,13461:18650668,32406698:172260 -k1,13461:20014374,32406698:172261 -k1,13461:20718132,32406698:172261 -k1,13461:24272706,32406698:172261 -k1,13461:25131128,32406698:172260 -k1,13461:25659249,32406698:172261 -k1,13461:30557967,32406698:172261 -k1,13461:32583029,32406698:0 -) -(1,13462:6630773,33248186:25952256,513147,134348 -k1,13461:7394973,33248186:232703 -k1,13461:10340211,33248186:232703 -k1,13461:13934911,33248186:232703 -k1,13461:14976984,33248186:232703 -k1,13461:16228772,33248186:232703 -k1,13461:21089628,33248186:232703 -k1,13461:21981623,33248186:232703 -k1,13461:23233411,33248186:232703 -k1,13461:25453821,33248186:232703 -k1,13461:26877969,33248186:232703 -k1,13461:28673706,33248186:232703 -k1,13461:29859958,33248186:232703 -k1,13461:31490544,33248186:232703 -k1,13462:32583029,33248186:0 -) -(1,13462:6630773,34089674:25952256,473825,134348 -(1,13461:6630773,34089674:0,452978,115847 -r1,13490:7692462,34089674:1061689,568825,115847 -k1,13461:6630773,34089674:-1061689 -) -(1,13461:6630773,34089674:1061689,452978,115847 -k1,13461:6630773,34089674:3277 -h1,13461:7689185,34089674:0,411205,112570 -) -g1,13461:7891691,34089674 -g1,13461:8777082,34089674 -g1,13461:9747014,34089674 -g1,13461:13018571,34089674 -g1,13461:13869228,34089674 -g1,13461:16457900,34089674 -g1,13461:17427832,34089674 -$1,13461:17427832,34089674 -$1,13461:17872821,34089674 -k1,13462:32583029,34089674:13132101 -g1,13462:32583029,34089674 -) -v1,13464:6630773,35280140:0,393216,0 -(1,13484:6630773,44928020:25952256,10041096,196608 -g1,13484:6630773,44928020 -g1,13484:6630773,44928020 -g1,13484:6434165,44928020 -(1,13484:6434165,44928020:0,10041096,196608 -r1,13490:32779637,44928020:26345472,10237704,196608 -k1,13484:6434165,44928020:-26345472 -) -(1,13484:6434165,44928020:26345472,10041096,196608 -[1,13484:6630773,44928020:25952256,9844488,0 -(1,13466:6630773,35494050:25952256,410518,82312 -(1,13465:6630773,35494050:0,0,0 -g1,13465:6630773,35494050 -g1,13465:6630773,35494050 -g1,13465:6303093,35494050 -(1,13465:6303093,35494050:0,0,0 -) -g1,13465:6630773,35494050 -) -k1,13466:6630773,35494050:0 -g1,13466:10424521,35494050 -g1,13466:12005250,35494050 -g1,13466:12637542,35494050 -h1,13466:13902125,35494050:0,0,0 -k1,13466:32583029,35494050:18680904 -g1,13466:32583029,35494050 -) -(1,13483:6630773,36160228:25952256,410518,101187 -(1,13468:6630773,36160228:0,0,0 -g1,13468:6630773,36160228 -g1,13468:6630773,36160228 -g1,13468:6303093,36160228 -(1,13468:6303093,36160228:0,0,0 -) -g1,13468:6630773,36160228 -) -g1,13483:7579210,36160228 -g1,13483:10424521,36160228 -g1,13483:11372958,36160228 -g1,13483:14218269,36160228 -h1,13483:15798997,36160228:0,0,0 -k1,13483:32583029,36160228:16784032 -g1,13483:32583029,36160228 -) -(1,13483:6630773,36826406:25952256,379060,0 -h1,13483:6630773,36826406:0,0,0 -h1,13483:7263064,36826406:0,0,0 -k1,13483:32583028,36826406:25319964 -g1,13483:32583028,36826406 -) -(1,13483:6630773,37492584:25952256,404226,107478 -h1,13483:6630773,37492584:0,0,0 -g1,13483:7579210,37492584 -g1,13483:9792230,37492584 -g1,13483:14218270,37492584 -g1,13483:16115144,37492584 -h1,13483:17063581,37492584:0,0,0 -k1,13483:32583029,37492584:15519448 -g1,13483:32583029,37492584 -) -(1,13483:6630773,38158762:25952256,379060,0 -h1,13483:6630773,38158762:0,0,0 -h1,13483:7263064,38158762:0,0,0 -k1,13483:32583028,38158762:25319964 -g1,13483:32583028,38158762 -) -(1,13483:6630773,38824940:25952256,379060,101187 -h1,13483:6630773,38824940:0,0,0 -g1,13483:7579210,38824940 -g1,13483:10740667,38824940 -h1,13483:12321395,38824940:0,0,0 -k1,13483:32583029,38824940:20261634 -g1,13483:32583029,38824940 -) -(1,13483:6630773,39491118:25952256,379060,0 -h1,13483:6630773,39491118:0,0,0 -h1,13483:7263064,39491118:0,0,0 -k1,13483:32583028,39491118:25319964 -g1,13483:32583028,39491118 -) -(1,13483:6630773,40157296:25952256,410518,101187 -h1,13483:6630773,40157296:0,0,0 -g1,13483:7579210,40157296 -g1,13483:9476084,40157296 -g1,13483:11372958,40157296 -g1,13483:15482852,40157296 -g1,13483:17695872,40157296 -g1,13483:18644309,40157296 -h1,13483:20225037,40157296:0,0,0 -k1,13483:32583029,40157296:12357992 -g1,13483:32583029,40157296 -) -(1,13483:6630773,40823474:25952256,379060,0 -h1,13483:6630773,40823474:0,0,0 -h1,13483:7263064,40823474:0,0,0 -k1,13483:32583028,40823474:25319964 -g1,13483:32583028,40823474 -) -(1,13483:6630773,41489652:25952256,379060,0 -h1,13483:6630773,41489652:0,0,0 -h1,13483:7263064,41489652:0,0,0 -k1,13483:32583028,41489652:25319964 -g1,13483:32583028,41489652 -) -(1,13483:6630773,42155830:25952256,410518,76021 -h1,13483:6630773,42155830:0,0,0 -g1,13483:7579210,42155830 -g1,13483:7895356,42155830 -g1,13483:8211502,42155830 -g1,13483:8527648,42155830 -g1,13483:8843794,42155830 -g1,13483:9159940,42155830 -g1,13483:9476086,42155830 -g1,13483:10424523,42155830 -g1,13483:13269834,42155830 -g1,13483:15482854,42155830 -g1,13483:16431291,42155830 -g1,13483:18644311,42155830 -g1,13483:19908894,42155830 -g1,13483:20225040,42155830 -g1,13483:20541186,42155830 -g1,13483:20857332,42155830 -g1,13483:21173478,42155830 -g1,13483:21489624,42155830 -g1,13483:22121916,42155830 -g1,13483:22438062,42155830 -g1,13483:22754208,42155830 -g1,13483:23070354,42155830 -k1,13483:23070354,42155830:0 -h1,13483:24967228,42155830:0,0,0 -k1,13483:32583029,42155830:7615801 -g1,13483:32583029,42155830 -) -(1,13483:6630773,42822008:25952256,388497,9436 -h1,13483:6630773,42822008:0,0,0 -g1,13483:7579210,42822008 -g1,13483:9159939,42822008 -g1,13483:9476085,42822008 -g1,13483:9792231,42822008 -g1,13483:10108377,42822008 -g1,13483:10424523,42822008 -g1,13483:10740669,42822008 -g1,13483:11056815,42822008 -g1,13483:11372961,42822008 -g1,13483:11689107,42822008 -g1,13483:12005253,42822008 -g1,13483:12321399,42822008 -g1,13483:12637545,42822008 -g1,13483:12953691,42822008 -g1,13483:13269837,42822008 -g1,13483:13585983,42822008 -g1,13483:13902129,42822008 -g1,13483:14218275,42822008 -g1,13483:14534421,42822008 -g1,13483:14850567,42822008 -g1,13483:15166713,42822008 -g1,13483:15482859,42822008 -g1,13483:16431296,42822008 -g1,13483:16747442,42822008 -g1,13483:17063588,42822008 -g1,13483:17379734,42822008 -g1,13483:17695880,42822008 -h1,13483:19592754,42822008:0,0,0 -k1,13483:32583029,42822008:12990275 -g1,13483:32583029,42822008 -) -(1,13483:6630773,43488186:25952256,388497,101187 -h1,13483:6630773,43488186:0,0,0 -g1,13483:7579210,43488186 -g1,13483:9476084,43488186 -g1,13483:9792230,43488186 -g1,13483:10424522,43488186 -g1,13483:10740668,43488186 -g1,13483:11056814,43488186 -g1,13483:13269834,43488186 -g1,13483:13585980,43488186 -g1,13483:13902126,43488186 -g1,13483:14218272,43488186 -g1,13483:14534418,43488186 -g1,13483:14850564,43488186 -g1,13483:15166710,43488186 -g1,13483:15482856,43488186 -g1,13483:16431293,43488186 -g1,13483:16747439,43488186 -g1,13483:17063585,43488186 -g1,13483:17379731,43488186 -g1,13483:17695877,43488186 -g1,13483:18012023,43488186 -g1,13483:19908897,43488186 -g1,13483:22121917,43488186 -g1,13483:22754209,43488186 -g1,13483:25283375,43488186 -h1,13483:26231812,43488186:0,0,0 -k1,13483:32583029,43488186:6351217 -g1,13483:32583029,43488186 -) -(1,13483:6630773,44154364:25952256,379060,0 -h1,13483:6630773,44154364:0,0,0 -g1,13483:7579210,44154364 -k1,13483:7579210,44154364:0 -h1,13483:8527648,44154364:0,0,0 -k1,13483:32583028,44154364:24055380 -g1,13483:32583028,44154364 -) -(1,13483:6630773,44820542:25952256,410518,107478 -h1,13483:6630773,44820542:0,0,0 -g1,13483:7579210,44820542 -g1,13483:10108376,44820542 -g1,13483:12321396,44820542 -g1,13483:12637542,44820542 -g1,13483:13269834,44820542 -g1,13483:15166709,44820542 -g1,13483:17063583,44820542 -g1,13483:18644312,44820542 -g1,13483:20225041,44820542 -g1,13483:21489625,44820542 -g1,13483:23070354,44820542 -g1,13483:24334938,44820542 -g1,13483:25599521,44820542 -g1,13483:26231813,44820542 -g1,13483:26864105,44820542 -h1,13483:27180251,44820542:0,0,0 -k1,13483:32583029,44820542:5402778 -g1,13483:32583029,44820542 -) -] -) -g1,13484:32583029,44928020 -g1,13484:6630773,44928020 -g1,13484:6630773,44928020 -g1,13484:32583029,44928020 -g1,13484:32583029,44928020 -) -h1,13484:6630773,45124628:0,0,0 -] -(1,13490:32583029,45706769:0,0,0 -g1,13490:32583029,45706769 -) -) -] -(1,13490:6630773,47279633:25952256,0,0 -h1,13490:6630773,47279633:25952256,0,0 -) -] -(1,13490:4262630,4025873:0,0,0 -[1,13490:-473656,4025873:0,0,0 -(1,13490:-473656,-710413:0,0,0 -(1,13490:-473656,-710413:0,0,0 -g1,13490:-473656,-710413 -) -g1,13490:-473656,-710413 -) -] -) -] -!31177 -}230 -!12 -{231 -[1,13554:4262630,47279633:28320399,43253760,0 -(1,13554:4262630,4025873:0,0,0 -[1,13554:-473656,4025873:0,0,0 -(1,13554:-473656,-710413:0,0,0 -(1,13554:-473656,-644877:0,0,0 -k1,13554:-473656,-644877:-65536 +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,13062:3078558,51504789:16384,1179648,0 +) +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 +) +] +) +) +) +] +[1,13062:3078558,4812305:0,0,0 +(1,13062:3078558,49800853:0,16384,2228224 +g1,13062:29030814,49800853 +g1,13062:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,13062:36151628,51504789:16384,1179648,0 +) +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 +) +] +) +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,13062:37855564,49800853:1179648,16384,0 +) +) +k1,13062:3078556,49800853:-34777008 +) +] +g1,13062:6630773,4812305 +k1,13062:19540057,4812305:11713907 +g1,13062:21162728,4812305 +g1,13062:21985204,4812305 +g1,13062:24539797,4812305 +g1,13062:25949476,4812305 +g1,13062:28728857,4812305 +g1,13062:29852144,4812305 +) +) +] +[1,13062:6630773,45706769:25952256,40108032,0 +(1,13062:6630773,45706769:25952256,40108032,0 +(1,13062:6630773,45706769:0,0,0 +g1,13062:6630773,45706769 +) +[1,13062:6630773,45706769:25952256,40108032,0 +v1,13062:6630773,6254097:0,393216,0 +(1,13062:6630773,45706769:25952256,39845888,0 +g1,13062:6630773,45706769 +g1,13062:6237557,45706769 +r1,13062:6368629,45706769:131072,39845888,0 +g1,13062:6567858,45706769 +g1,13062:6764466,45706769 +[1,13062:6764466,45706769:25818563,39845888,0 +(1,13021:6764466,6374028:25818563,513147,126483 +k1,13020:8747384,6374028:284880 +k1,13020:10554010,6374028:284880 +k1,13020:11786541,6374028:284880 +k1,13020:13090505,6374028:284879 +k1,13020:16205230,6374028:284880 +k1,13020:17149402,6374028:284880 +k1,13020:18204985,6374028:284880 +k1,13020:20860958,6374028:284880 +k1,13020:21805130,6374028:284880 +k1,13020:22860712,6374028:284879 +k1,13020:26911291,6374028:284880 +k1,13020:29881181,6374028:284880 +k1,13020:32051532,6374028:284880 +k1,13020:32583029,6374028:0 +) +(1,13021:6764466,7239108:25818563,513147,134348 +k1,13020:9230968,7239108:179295 +k1,13020:10069556,7239108:179296 +k1,13020:12692033,7239108:179295 +k1,13020:13487367,7239108:179296 +k1,13020:14437365,7239108:179295 +k1,13020:18399399,7239108:179296 +k1,13020:19206529,7239108:179295 +k1,13020:22190766,7239108:179296 +k1,13020:24068099,7239108:179295 +k1,13020:26429089,7239108:179296 +k1,13020:27556035,7239108:179295 +k1,13020:31015408,7239108:179296 +k1,13020:32583029,7239108:0 +) +(1,13021:6764466,8104188:25818563,513147,134348 +k1,13020:7352542,8104188:232216 +k1,13020:10992630,8104188:232216 +k1,13020:11986374,8104188:232216 +k1,13020:15621875,8104188:232216 +k1,13020:17026530,8104188:232216 +k1,13020:21134545,8104188:232216 +k1,13020:22049646,8104188:232216 +k1,13020:23052565,8104188:232216 +k1,13020:26830279,8104188:232216 +k1,13020:28253940,8104188:232216 +k1,13020:28842016,8104188:232216 +k1,13020:32227169,8104188:232216 +k1,13020:32583029,8104188:0 +) +(1,13021:6764466,8969268:25818563,513147,126483 +k1,13020:8258312,8969268:253905 +k1,13020:11984314,8969268:253905 +k1,13020:12897511,8969268:253905 +k1,13020:14308127,8969268:253906 +k1,13020:15509683,8969268:253905 +k1,13020:16782673,8969268:253905 +k1,13020:18734616,8969268:253905 +k1,13020:20120983,8969268:253905 +k1,13020:21566333,8969268:253905 +k1,13020:22767889,8969268:253905 +k1,13020:26301872,8969268:253906 +k1,13020:28123398,8969268:253905 +k1,13020:29396388,8969268:253905 +k1,13020:30957736,8969268:253905 +k1,13021:32583029,8969268:0 +) +(1,13021:6764466,9834348:25818563,513147,134348 +k1,13020:8476004,9834348:217317 +k1,13020:9321157,9834348:217318 +k1,13020:11230614,9834348:217317 +k1,13020:13318984,9834348:217317 +k1,13020:14404653,9834348:217317 +k1,13020:15958905,9834348:217318 +k1,13020:17724838,9834348:217317 +k1,13020:18593583,9834348:217317 +k1,13020:20002345,9834348:217317 +k1,13020:20685624,9834348:217318 +k1,13020:21922026,9834348:217317 +k1,13020:24855155,9834348:217317 +k1,13020:26020123,9834348:217317 +k1,13020:26593301,9834348:217318 +k1,13020:30091350,9834348:217317 +k1,13020:32583029,9834348:0 +) +(1,13021:6764466,10699428:25818563,505283,126483 +k1,13020:8743653,10699428:287047 +k1,13020:10732671,10699428:287048 +k1,13020:12873732,10699428:287047 +k1,13020:14654346,10699428:287048 +k1,13020:15627555,10699428:287047 +k1,13020:19271357,10699428:287048 +k1,13020:22088094,10699428:287047 +k1,13020:25822991,10699428:287048 +k1,13020:26737873,10699428:287047 +k1,13020:28726891,10699428:287048 +k1,13020:30884991,10699428:287047 +k1,13020:32583029,10699428:0 +) +(1,13021:6764466,11564508:25818563,513147,134348 +k1,13020:10344648,11564508:176897 +k1,13020:11540629,11564508:176896 +k1,13020:15816803,11564508:176897 +k1,13020:16652992,11564508:176897 +k1,13020:21055650,11564508:176896 +k1,13020:22100899,11564508:176897 +k1,13020:23614730,11564508:176897 +k1,13020:24539393,11564508:176897 +k1,13020:27927553,11564508:176896 +k1,13020:28755878,11564508:176897 +k1,13020:30124220,11564508:176897 +k1,13020:30767077,11564508:176896 +k1,13020:31299834,11564508:176897 +k1,13020:32583029,11564508:0 +) +(1,13021:6764466,12429588:25818563,513147,134348 +k1,13020:9976991,12429588:228015 +k1,13020:13353356,12429588:228015 +k1,13020:14865876,12429588:228014 +k1,13020:15709929,12429588:228015 +k1,13020:18282167,12429588:228015 +k1,13020:19602667,12429588:228015 +k1,13020:20592209,12429588:228014 +k1,13020:21432986,12429588:228015 +k1,13020:23156533,12429588:228015 +k1,13020:23740408,12429588:228015 +k1,13020:26365729,12429588:228014 +k1,13020:29021853,12429588:228015 +k1,13020:31082255,12429588:228015 +k1,13020:32583029,12429588:0 +) +(1,13021:6764466,13294668:25818563,513147,126483 +k1,13020:8708314,13294668:192071 +k1,13020:12057254,13294668:192071 +k1,13020:14168219,13294668:192071 +k1,13020:15379374,13294668:192070 +k1,13020:18335754,13294668:192071 +k1,13020:19187117,13294668:192071 +k1,13020:21822370,13294668:192071 +k1,13020:22545938,13294668:192071 +k1,13020:23804280,13294668:192071 +k1,13020:25280856,13294668:192070 +k1,13020:26243630,13294668:192071 +k1,13020:28206484,13294668:192071 +k1,13020:31015408,13294668:192071 +k1,13020:32583029,13294668:0 +) +(1,13021:6764466,14159748:25818563,513147,134348 +k1,13020:8607637,14159748:249335 +k1,13020:13050620,14159748:249334 +k1,13020:14997993,14159748:249335 +k1,13020:17566646,14159748:249334 +k1,13020:19209932,14159748:249335 +k1,13020:20435097,14159748:249334 +k1,13020:22247466,14159748:249335 +k1,13020:23850774,14159748:249334 +k1,13020:25816497,14159748:249335 +k1,13020:29345908,14159748:249334 +k1,13020:31162864,14159748:249335 +k1,13020:32583029,14159748:0 +) +(1,13021:6764466,15024828:25818563,513147,134348 +k1,13020:8162808,15024828:294060 +k1,13020:9204634,15024828:294060 +k1,13020:13149049,15024828:294060 +k1,13020:16756609,15024828:294060 +k1,13020:18122838,15024828:294060 +k1,13020:22048903,15024828:294060 +k1,13020:23025848,15024828:294060 +k1,13020:26637340,15024828:294060 +k1,13020:30167568,15024828:294060 +k1,13020:31089463,15024828:294060 +k1,13020:32583029,15024828:0 +) +(1,13021:6764466,15889908:25818563,513147,126483 +k1,13020:8373069,15889908:241522 +k1,13020:9482943,15889908:241522 +k1,13020:10828747,15889908:241522 +k1,13020:12004812,15889908:241522 +k1,13020:13265419,15889908:241522 +k1,13020:16157872,15889908:241522 +k1,13020:19273148,15889908:241522 +k1,13020:20799175,15889908:241521 +k1,13020:21572194,15889908:241522 +k1,13020:22473008,15889908:241522 +k1,13020:25331383,15889908:241522 +k1,13020:27900088,15889908:241522 +k1,13020:28800902,15889908:241522 +k1,13020:30636260,15889908:241522 +k1,13020:31563944,15889908:241522 +k1,13020:32583029,15889908:0 +) +(1,13021:6764466,16754988:25818563,505283,126483 +g1,13020:8203636,16754988 +g1,13020:11874962,16754988 +g1,13020:12690229,16754988 +g1,13020:13908543,16754988 +k1,13021:32583030,16754988:17309372 +g1,13021:32583030,16754988 +) +(1,13023:6764466,17652998:25818563,513147,134348 +h1,13022:6764466,17652998:983040,0,0 +k1,13022:9142892,17652998:198699 +k1,13022:12333310,17652998:198699 +k1,13022:14561003,17652998:198698 +k1,13022:16495095,17652998:198699 +(1,13022:16495095,17652998:0,452978,115847 +r1,13062:18963632,17652998:2468537,568825,115847 +k1,13022:16495095,17652998:-2468537 +) +(1,13022:16495095,17652998:2468537,452978,115847 +k1,13022:16495095,17652998:3277 +h1,13022:18960355,17652998:0,411205,112570 +) +k1,13022:19162331,17652998:198699 +k1,13022:20552475,17652998:198699 +(1,13022:20552475,17652998:0,452978,115847 +r1,13062:23724435,17652998:3171960,568825,115847 +k1,13022:20552475,17652998:-3171960 +) +(1,13022:20552475,17652998:3171960,452978,115847 +k1,13022:20552475,17652998:3277 +h1,13022:23721158,17652998:0,411205,112570 +) +k1,13022:23923134,17652998:198699 +k1,13022:25113393,17652998:198699 +k1,13022:26259742,17652998:198698 +k1,13022:26814301,17652998:198699 +k1,13022:28252941,17652998:198699 +k1,13022:31923737,17652998:198699 +k1,13022:32583029,17652998:0 +) +(1,13023:6764466,18518078:25818563,513147,126483 +k1,13022:8733332,18518078:270828 +k1,13022:9572356,18518078:270827 +k1,13022:10415313,18518078:270828 +k1,13022:12174463,18518078:270827 +k1,13022:13313643,18518078:270828 +k1,13022:14399738,18518078:270827 +k1,13022:15689651,18518078:270828 +k1,13022:19265459,18518078:270827 +k1,13022:20727732,18518078:270828 +k1,13022:22392510,18518078:270827 +k1,13022:23019198,18518078:270828 +k1,13022:24529966,18518078:270827 +k1,13022:28272891,18518078:270828 +k1,13022:29203010,18518078:270827 +k1,13022:31171876,18518078:270828 +k1,13022:32010900,18518078:270827 +k1,13022:32583029,18518078:0 +) +(1,13023:6764466,19383158:25818563,513147,126483 +k1,13022:8232976,19383158:271823 +k1,13022:11760628,19383158:271823 +k1,13022:12563948,19383158:271823 +k1,13022:16081770,19383158:271824 +k1,13022:17005021,19383158:271823 +k1,13022:18408651,19383158:271823 +k1,13022:21438229,19383158:271823 +k1,13022:23390395,19383158:271823 +k1,13022:24348380,19383158:271823 +k1,13022:24976064,19383158:271824 +k1,13022:26487828,19383158:271823 +k1,13022:30231748,19383158:271823 +k1,13022:31451222,19383158:271823 +k1,13022:32583029,19383158:0 +) +(1,13023:6764466,20248238:25818563,513147,126483 +k1,13022:7632545,20248238:208787 +k1,13022:8860417,20248238:208787 +k1,13022:10781659,20248238:208786 +k1,13022:14271178,20248238:208787 +k1,13022:17699749,20248238:208787 +k1,13022:20843238,20248238:208787 +k1,13022:21999675,20248238:208786 +k1,13022:23227547,20248238:208787 +$1,13022:23227547,20248238 +$1,13022:23695474,20248238 +k1,13022:25797596,20248238:208787 +k1,13022:29052496,20248238:208787 +k1,13022:29912710,20248238:208786 +k1,13022:30869263,20248238:208787 +k1,13022:32583029,20248238:0 +) +(1,13023:6764466,21113318:25818563,513147,126483 +k1,13022:7977725,21113318:194174 +k1,13022:11790142,21113318:194174 +k1,13022:14164698,21113318:194173 +k1,13022:15106638,21113318:194174 +k1,13022:16235355,21113318:194174 +k1,13022:17045567,21113318:194174 +k1,13022:19825135,21113318:194173 +k1,13022:20678601,21113318:194174 +k1,13022:21891860,21113318:194174 +k1,13022:24043594,21113318:194174 +k1,13022:25307316,21113318:194174 +k1,13022:29508360,21113318:194173 +k1,13022:30361826,21113318:194174 +k1,13022:31575085,21113318:194174 +k1,13023:32583029,21113318:0 +) +(1,13023:6764466,21978398:25818563,513147,126483 +k1,13022:10258565,21978398:217299 +k1,13022:11989089,21978398:217298 +k1,13022:13154039,21978398:217299 +k1,13022:14390423,21978398:217299 +k1,13022:15972836,21978398:217298 +k1,13022:17386822,21978398:217299 +k1,13022:20595840,21978398:217299 +k1,13022:21905623,21978398:217298 +k1,13022:22478782,21978398:217299 +k1,13022:25801831,21978398:217298 +k1,13022:27384245,21978398:217299 +k1,13022:28229379,21978398:217299 +k1,13022:30138817,21978398:217298 +k1,13022:32227169,21978398:217299 +k1,13022:32583029,21978398:0 +) +(1,13023:6764466,22843478:25818563,513147,134348 +k1,13022:10740161,22843478:169364 +k1,13022:12100969,22843478:169363 +k1,13022:14450716,22843478:169364 +k1,13022:15367846,22843478:169364 +k1,13022:17050436,22843478:169364 +k1,13022:18669455,22843478:169363 +k1,13022:19304780,22843478:169364 +k1,13022:20262542,22843478:169364 +k1,13022:22569689,22843478:169363 +k1,13022:23094913,22843478:169364 +k1,13022:25058653,22843478:169364 +k1,13022:27757707,22843478:169364 +k1,13022:28586362,22843478:169363 +k1,13022:31378477,22843478:169364 +k1,13023:32583029,22843478:0 +) +(1,13023:6764466,23708558:25818563,513147,126483 +k1,13022:8379021,23708558:144582 +k1,13022:9808110,23708558:144583 +k1,13022:12902467,23708558:144582 +k1,13022:13578547,23708558:144583 +k1,13022:16353089,23708558:144582 +k1,13022:17873273,23708558:144583 +k1,13022:18633893,23708558:144582 +k1,13022:19935186,23708558:144583 +k1,13022:22938448,23708558:144582 +k1,13022:24676867,23708558:144583 +k1,13022:26389070,23708558:144582 +k1,13022:27552738,23708558:144583 +k1,13022:28937261,23708558:144582 +k1,13022:32583029,23708558:0 +) +(1,13023:6764466,24573638:25818563,513147,126483 +g1,13022:7646580,24573638 +g1,13022:10375499,24573638 +g1,13022:11950329,24573638 +g1,13022:13306268,24573638 +g1,13022:16364177,24573638 +g1,13022:17222698,24573638 +g1,13022:20295681,24573638 +g1,13022:21026407,24573638 +g1,13022:21884928,24573638 +k1,13023:32583029,24573638:7874155 +g1,13023:32583029,24573638 +) +(1,13025:6764466,25471649:25818563,513147,126483 +h1,13024:6764466,25471649:983040,0,0 +k1,13024:8831975,25471649:255439 +k1,13024:11803226,25471649:255439 +k1,13024:13077750,25471649:255439 +k1,13024:15508985,25471649:255440 +k1,13024:16632776,25471649:255439 +k1,13024:18418481,25471649:255439 +k1,13024:19444623,25471649:255439 +k1,13024:22415874,25471649:255439 +k1,13024:23618964,25471649:255439 +k1,13024:24893489,25471649:255440 +k1,13024:28429660,25471649:255439 +k1,13024:30365442,25471649:255439 +k1,13024:31812326,25471649:255439 +k1,13024:32583029,25471649:0 +) +(1,13025:6764466,26336729:25818563,513147,134348 +k1,13024:9695488,26336729:215210 +k1,13024:10569990,26336729:215210 +k1,13024:11804285,26336729:215210 +k1,13024:14863102,26336729:215210 +k1,13024:16685255,26336729:215210 +k1,13024:17848116,26336729:215210 +k1,13024:19266568,26336729:215211 +k1,13024:22371260,26336729:215210 +k1,13024:23777915,26336729:215210 +k1,13024:25012210,26336729:215210 +k1,13024:27683054,26336729:215210 +k1,13024:28557556,26336729:215210 +k1,13024:31629480,26336729:215210 +k1,13024:32583029,26336729:0 +) +(1,13025:6764466,27201809:25818563,513147,134348 +g1,13024:8067977,27201809 +g1,13024:10471182,27201809 +g1,13024:11436527,27201809 +g1,13024:13332483,27201809 +g1,13024:15542357,27201809 +g1,13024:17309207,27201809 +g1,13024:18527521,27201809 +g1,13024:21717158,27201809 +g1,13024:22575679,27201809 +g1,13024:23130768,27201809 +g1,13024:25042453,27201809 +g1,13024:27229389,27201809 +k1,13025:32583029,27201809:3220443 +g1,13025:32583029,27201809 +) +v1,13027:6764466,27919594:0,393216,0 +(1,13033:6764466,29636593:25818563,2110215,196608 +g1,13033:6764466,29636593 +g1,13033:6764466,29636593 +g1,13033:6567858,29636593 +(1,13033:6567858,29636593:0,2110215,196608 +r1,13062:32779637,29636593:26211779,2306823,196608 +k1,13033:6567857,29636593:-26211780 +) +(1,13033:6567858,29636593:26211779,2110215,196608 +[1,13033:6764466,29636593:25818563,1913607,0 +(1,13029:6764466,28154031:25818563,431045,106246 +(1,13028:6764466,28154031:0,0,0 +g1,13028:6764466,28154031 +g1,13028:6764466,28154031 +g1,13028:6436786,28154031 +(1,13028:6436786,28154031:0,0,0 +) +g1,13028:6764466,28154031 +) +g1,13029:12075729,28154031 +g1,13029:13071591,28154031 +g1,13029:24689980,28154031 +h1,13029:28341473,28154031:0,0,0 +k1,13029:32583029,28154031:4241556 +g1,13029:32583029,28154031 +) +(1,13030:6764466,28838886:25818563,431045,106246 +h1,13030:6764466,28838886:0,0,0 +g1,13030:11079867,28838886 +g1,13030:12075729,28838886 +g1,13030:23694118,28838886 +g1,13030:25685842,28838886 +h1,13030:28009520,28838886:0,0,0 +k1,13030:32583029,28838886:4573509 +g1,13030:32583029,28838886 +) +(1,13031:6764466,29523741:25818563,431045,112852 +h1,13031:6764466,29523741:0,0,0 +g1,13031:13071591,29523741 +g1,13031:14067453,29523741 +k1,13031:14067453,29523741:0 +h1,13031:20042625,29523741:0,0,0 +k1,13031:32583029,29523741:12540404 +g1,13031:32583029,29523741 +) +] +) +g1,13033:32583029,29636593 +g1,13033:6764466,29636593 +g1,13033:6764466,29636593 +g1,13033:32583029,29636593 +g1,13033:32583029,29636593 +) +h1,13033:6764466,29833201:0,0,0 +(1,13037:6764466,30764142:25818563,513147,126483 +h1,13036:6764466,30764142:983040,0,0 +k1,13036:8486301,30764142:251207 +k1,13036:10020755,30764142:251259 +k1,13036:12447808,30764142:251258 +k1,13036:13230564,30764142:251259 +k1,13036:16690466,30764142:251259 +k1,13036:18796394,30764142:251259 +k1,13036:19857023,30764142:251259 +k1,13036:21127367,30764142:251259 +k1,13036:24564986,30764142:251259 +k1,13036:27451447,30764142:251258 +k1,13036:28721791,30764142:251259 +k1,13036:30653393,30764142:251259 +k1,13036:31563944,30764142:251259 +k1,13036:32583029,30764142:0 +) +(1,13037:6764466,31629222:25818563,513147,126483 +k1,13036:8186180,31629222:181773 +k1,13036:11840050,31629222:181773 +k1,13036:13213268,31629222:181773 +k1,13036:14414126,31629222:181773 +k1,13036:16276242,31629222:181773 +k1,13036:17405666,31629222:181773 +k1,13036:18606524,31629222:181773 +k1,13036:22069029,31629222:181773 +k1,13036:25387355,31629222:181773 +k1,13036:27136749,31629222:181773 +k1,13036:28337607,31629222:181773 +k1,13036:32583029,31629222:0 +) +(1,13037:6764466,32494302:25818563,505283,126483 +k1,13036:7469200,32494302:217146 +k1,13036:8969559,32494302:217164 +k1,13036:12672583,32494302:217164 +k1,13036:15605559,32494302:217164 +k1,13036:16354220,32494302:217164 +k1,13036:19780026,32494302:217163 +k1,13036:21851859,32494302:217164 +k1,13036:22878393,32494302:217164 +k1,13036:26304200,32494302:217164 +$1,13036:26304200,32494302 +$1,13036:26624671,32494302 +k1,13036:28908841,32494302:217164 +k1,13036:29808890,32494302:217164 +k1,13036:32583029,32494302:0 +) +(1,13037:6764466,33359382:25818563,513147,134348 +k1,13036:8184225,33359382:228314 +k1,13036:9431625,33359382:228315 +$1,13036:9431625,33359382 +$1,13036:9752096,33359382 +k1,13036:9980410,33359382:228314 +k1,13036:13990151,33359382:228314 +k1,13036:15612417,33359382:228315 +k1,13036:18812133,33359382:228314 +k1,13036:21496082,33359382:228315 +k1,13036:22383688,33359382:228314 +k1,13036:25295046,33359382:228314 +k1,13036:26917312,33359382:228315 +k1,13036:27501486,33359382:228314 +k1,13036:28829494,33359382:228314 +k1,13036:29709237,33359382:228315 +(1,13036:29709237,33359382:0,452978,115847 +r1,13062:31122638,33359382:1413401,568825,115847 +k1,13036:29709237,33359382:-1413401 +) +(1,13036:29709237,33359382:1413401,452978,115847 +k1,13036:29709237,33359382:3277 +h1,13036:31119361,33359382:0,411205,112570 +) +k1,13036:31350952,33359382:228314 +k1,13036:32583029,33359382:0 +) +(1,13037:6764466,34224462:25818563,505283,134348 +k1,13036:9309710,34224462:266557 +h1,13036:10280298,34224462:0,0,0 +k1,13036:10546855,34224462:266557 +k1,13036:11622781,34224462:266556 +k1,13036:13387491,34224462:266557 +h1,13036:14582868,34224462:0,0,0 +k1,13036:15230189,34224462:266557 +k1,13036:16538768,34224462:266557 +k1,13036:17161185,34224462:266557 +k1,13036:20162558,34224462:266556 +k1,13036:21620560,34224462:266557 +k1,13036:22755469,34224462:266557 +k1,13036:25707036,34224462:266557 +k1,13036:26735121,34224462:266557 +k1,13036:28174116,34224462:266556 +k1,13036:29459758,34224462:266557 +k1,13036:32115102,34224462:266557 +$1,13036:32115102,34224462 +$1,13036:32583029,34224462 +k1,13037:32583029,34224462:0 +) +(1,13037:6764466,35089542:25818563,473825,7863 +k1,13037:32583028,35089542:22929080 +g1,13037:32583028,35089542 +) +v1,13039:6764466,35807327:0,393216,0 +(1,13051:6764466,40970123:25818563,5556012,196608 +g1,13051:6764466,40970123 +g1,13051:6764466,40970123 +g1,13051:6567858,40970123 +(1,13051:6567858,40970123:0,5556012,196608 +r1,13062:32779637,40970123:26211779,5752620,196608 +k1,13051:6567857,40970123:-26211780 +) +(1,13051:6567858,40970123:26211779,5556012,196608 +[1,13051:6764466,40970123:25818563,5359404,0 +(1,13041:6764466,36035158:25818563,424439,106246 +(1,13040:6764466,36035158:0,0,0 +g1,13040:6764466,36035158 +g1,13040:6764466,36035158 +g1,13040:6436786,36035158 +(1,13040:6436786,36035158:0,0,0 +) +g1,13040:6764466,36035158 +) +g1,13041:9752051,36035158 +g1,13041:10747913,36035158 +h1,13041:11079867,36035158:0,0,0 +k1,13041:32583029,36035158:21503162 +g1,13041:32583029,36035158 +) +(1,13042:6764466,36720013:25818563,424439,106246 +h1,13042:6764466,36720013:0,0,0 +g1,13042:9420098,36720013 +g1,13042:10415960,36720013 +g1,13042:16059177,36720013 +g1,13042:16723085,36720013 +g1,13042:20042624,36720013 +g1,13042:20706532,36720013 +h1,13042:24689979,36720013:0,0,0 +k1,13042:32583029,36720013:7893050 +g1,13042:32583029,36720013 +) +(1,13043:6764466,37404868:25818563,431045,112852 +h1,13043:6764466,37404868:0,0,0 +g1,13043:9420098,37404868 +g1,13043:10415960,37404868 +g1,13043:11079868,37404868 +g1,13043:11743776,37404868 +g1,13043:13403546,37404868 +g1,13043:14067454,37404868 +g1,13043:17055040,37404868 +g1,13043:18050902,37404868 +g1,13043:18714810,37404868 +g1,13043:25353889,37404868 +g1,13043:29005382,37404868 +g1,13043:29669290,37404868 +h1,13043:31661014,37404868:0,0,0 +k1,13043:32583029,37404868:922015 +g1,13043:32583029,37404868 +) +(1,13044:6764466,38089723:25818563,431045,112852 +h1,13044:6764466,38089723:0,0,0 +k1,13044:11164162,38089723:1080156 +k1,13044:13240181,38089723:1080157 +k1,13044:21955278,38089723:1080156 +k1,13044:24031296,38089723:1080156 +k1,13044:26771223,38089723:1080157 +k1,13044:29179195,38089723:1080156 +k1,13044:31255213,38089723:1080156 +k1,13044:32583029,38089723:0 +) +(1,13044:6764466,38774578:25818563,431045,106246 +g1,13044:12739637,38774578 +k1,13044:12739637,38774578:0 +h1,13044:13735499,38774578:0,0,0 +k1,13044:32583029,38774578:18847530 +g1,13044:32583029,38774578 +) +(1,13045:6764466,39459433:25818563,431045,112852 +h1,13045:6764466,39459433:0,0,0 +g1,13045:7096420,39459433 +g1,13045:7428374,39459433 +g1,13045:7760328,39459433 +g1,13045:8092282,39459433 +g1,13045:11743775,39459433 +g1,13045:13071591,39459433 +g1,13045:18382854,39459433 +g1,13045:19710670,39459433 +g1,13045:21370440,39459433 +g1,13045:24026072,39459433 +g1,13045:25353888,39459433 +g1,13045:30665151,39459433 +h1,13045:31661013,39459433:0,0,0 +k1,13045:32583029,39459433:922016 +g1,13045:32583029,39459433 +) +(1,13050:6764466,40275360:25818563,424439,106246 +(1,13047:6764466,40275360:0,0,0 +g1,13047:6764466,40275360 +g1,13047:6764466,40275360 +g1,13047:6436786,40275360 +(1,13047:6436786,40275360:0,0,0 +) +g1,13047:6764466,40275360 +) +g1,13050:7760328,40275360 +g1,13050:9752052,40275360 +g1,13050:10415960,40275360 +g1,13050:12075730,40275360 +g1,13050:13735500,40275360 +g1,13050:15395270,40275360 +g1,13050:16059178,40275360 +h1,13050:17718948,40275360:0,0,0 +k1,13050:32583029,40275360:14864081 +g1,13050:32583029,40275360 +) +(1,13050:6764466,40960215:25818563,424439,9908 +h1,13050:6764466,40960215:0,0,0 +g1,13050:7760328,40960215 +g1,13050:10415960,40960215 +g1,13050:11079868,40960215 +g1,13050:12739638,40960215 +g1,13050:14067454,40960215 +g1,13050:16723086,40960215 +g1,13050:17386994,40960215 +k1,13050:17386994,40960215:0 +h1,13050:20042626,40960215:0,0,0 +k1,13050:32583029,40960215:12540403 +g1,13050:32583029,40960215 +) +] +) +g1,13051:32583029,40970123 +g1,13051:6764466,40970123 +g1,13051:6764466,40970123 +g1,13051:32583029,40970123 +g1,13051:32583029,40970123 +) +h1,13051:6764466,41166731:0,0,0 +(1,13055:6764466,42097672:25818563,513147,126483 +h1,13054:6764466,42097672:983040,0,0 +k1,13054:9357507,42097672:229157 +k1,13054:12248081,42097672:229157 +k1,13054:13008735,42097672:229157 +k1,13054:14185542,42097672:229156 +k1,13054:14770559,42097672:229157 +k1,13054:16812442,42097672:229157 +k1,13054:19029306,42097672:229157 +k1,13054:20970919,42097672:229157 +k1,13054:22594027,42097672:229157 +k1,13054:25518680,42097672:229157 +(1,13054:25518680,42097672:0,452978,115847 +r1,13062:26932081,42097672:1413401,568825,115847 +k1,13054:25518680,42097672:-1413401 +) +(1,13054:25518680,42097672:1413401,452978,115847 +k1,13054:25518680,42097672:3277 +h1,13054:26928804,42097672:0,411205,112570 +) +k1,13054:27161237,42097672:229156 +k1,13054:28462563,42097672:229157 +k1,13054:29710805,42097672:229157 +k1,13054:31593435,42097672:229157 +k1,13055:32583029,42097672:0 +) +(1,13055:6764466,42962752:25818563,513147,126483 +k1,13054:9106723,42962752:134349 +k1,13054:10345353,42962752:134348 +k1,13054:11227468,42962752:134349 +k1,13054:13733565,42962752:134349 +k1,13054:14519341,42962752:134348 +k1,13054:16355660,42962752:134349 +k1,13054:18477716,42962752:134349 +k1,13054:19299537,42962752:134348 +k1,13054:23020016,42962752:134349 +k1,13054:24102016,42962752:134349 +k1,13054:26121835,42962752:134348 +k1,13054:29536916,42962752:134349 +k1,13054:32583029,42962752:0 +) +(1,13055:6764466,43827832:25818563,505283,134348 +g1,13054:8155140,43827832 +g1,13054:9863008,43827832 +g1,13054:14685802,43827832 +g1,13054:17728638,43827832 +g1,13054:19534810,43827832 +g1,13054:22780152,43827832 +g1,13054:24083663,43827832 +g1,13054:25030658,43827832 +g1,13054:28201945,43827832 +g1,13054:29084059,43827832 +k1,13055:32583029,43827832:116657 +g1,13055:32583029,43827832 +) +(1,13057:6764466,44725842:25818563,513147,134348 +h1,13056:6764466,44725842:983040,0,0 +k1,13056:9895993,44725842:204689 +k1,13056:11385188,44725842:204689 +k1,13056:12608963,44725842:204690 +k1,13056:16069481,44725842:204689 +k1,13056:18129494,44725842:204689 +k1,13056:20377596,44725842:204689 +k1,13056:21976236,44725842:204689 +k1,13056:23200010,44725842:204689 +k1,13056:25563456,44725842:204690 +k1,13056:26435301,44725842:204689 +(1,13056:26435301,44725842:0,452978,115847 +r1,13062:29607261,44725842:3171960,568825,115847 +k1,13056:26435301,44725842:-3171960 +) +(1,13056:26435301,44725842:3171960,452978,115847 +k1,13056:26435301,44725842:3277 +h1,13056:29603984,44725842:0,411205,112570 +) +k1,13056:29811950,44725842:204689 +k1,13056:31714677,44725842:204689 +k1,13056:32583029,44725842:0 +) +(1,13057:6764466,45590922:25818563,513147,115847 +g1,13056:7898238,45590922 +(1,13056:7898238,45590922:0,452978,115847 +r1,13062:12477047,45590922:4578809,568825,115847 +k1,13056:7898238,45590922:-4578809 +) +(1,13056:7898238,45590922:4578809,452978,115847 +g1,13056:11066922,45590922 +g1,13056:12122058,45590922 +h1,13056:12473770,45590922:0,411205,112570 +) +g1,13056:12676276,45590922 +g1,13056:15202688,45590922 +g1,13056:16069073,45590922 +(1,13056:16069073,45590922:0,452978,115847 +r1,13062:20647882,45590922:4578809,568825,115847 +k1,13056:16069073,45590922:-4578809 +) +(1,13056:16069073,45590922:4578809,452978,115847 +g1,13056:19237757,45590922 +g1,13056:20292893,45590922 +h1,13056:20644605,45590922:0,411205,112570 +) +g1,13056:20847111,45590922 +g1,13056:21662378,45590922 +g1,13056:22959335,45590922 +k1,13057:32583029,45590922:7953837 +g1,13057:32583029,45590922 +) +] +g1,13062:32583029,45706769 +) +] +(1,13062:32583029,45706769:0,0,0 +g1,13062:32583029,45706769 +) +) +] +(1,13062:6630773,47279633:25952256,0,0 +h1,13062:6630773,47279633:25952256,0,0 +) +] +(1,13062:4262630,4025873:0,0,0 +[1,13062:-473656,4025873:0,0,0 +(1,13062:-473656,-710413:0,0,0 +(1,13062:-473656,-710413:0,0,0 +g1,13062:-473656,-710413 +) +g1,13062:-473656,-710413 +) +] +) +] +!28733 +}211 +Input:1966:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1967:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1968:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1969:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1970:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1971:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1972:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1973:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1974:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1975:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1976:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1977:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1978:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1979:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1328 +{212 +[1,13120:4262630,47279633:28320399,43253760,0 +(1,13120:4262630,4025873:0,0,0 +[1,13120:-473656,4025873:0,0,0 +(1,13120:-473656,-710413:0,0,0 +(1,13120:-473656,-644877:0,0,0 +k1,13120:-473656,-644877:-65536 ) -(1,13554:-473656,4736287:0,0,0 -k1,13554:-473656,4736287:5209943 +(1,13120:-473656,4736287:0,0,0 +k1,13120:-473656,4736287:5209943 ) -g1,13554:-473656,-710413 +g1,13120:-473656,-710413 ) ] ) -[1,13554:6630773,47279633:25952256,43253760,0 -[1,13554:6630773,4812305:25952256,786432,0 -(1,13554:6630773,4812305:25952256,513147,126483 -(1,13554:6630773,4812305:25952256,513147,126483 -g1,13554:3078558,4812305 -[1,13554:3078558,4812305:0,0,0 -(1,13554:3078558,2439708:0,1703936,0 -k1,13554:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,13554:2537886,2439708:1179648,16384,0 +[1,13120:6630773,47279633:25952256,43253760,0 +[1,13120:6630773,4812305:25952256,786432,0 +(1,13120:6630773,4812305:25952256,505283,134348 +(1,13120:6630773,4812305:25952256,505283,134348 +g1,13120:3078558,4812305 +[1,13120:3078558,4812305:0,0,0 +(1,13120:3078558,2439708:0,1703936,0 +k1,13120:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,13120:2537886,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,13554:3078558,1915420:16384,1179648,0 +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,13120:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] ) ) ) ] -[1,13554:3078558,4812305:0,0,0 -(1,13554:3078558,2439708:0,1703936,0 -g1,13554:29030814,2439708 -g1,13554:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,13554:36151628,1915420:16384,1179648,0 +[1,13120:3078558,4812305:0,0,0 +(1,13120:3078558,2439708:0,1703936,0 +g1,13120:29030814,2439708 +g1,13120:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,13120:36151628,1915420:16384,1179648,0 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,13554:37855564,2439708:1179648,16384,0 +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,13120:37855564,2439708:1179648,16384,0 ) ) -k1,13554:3078556,2439708:-34777008 +k1,13120:3078556,2439708:-34777008 ) ] -[1,13554:3078558,4812305:0,0,0 -(1,13554:3078558,49800853:0,16384,2228224 -k1,13554:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,13554:2537886,49800853:1179648,16384,0 +[1,13120:3078558,4812305:0,0,0 +(1,13120:3078558,49800853:0,16384,2228224 +k1,13120:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,13120:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,13554:3078558,51504789:16384,1179648,0 +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,13120:3078558,51504789:16384,1179648,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 ) ] ) ) ) ] -[1,13554:3078558,4812305:0,0,0 -(1,13554:3078558,49800853:0,16384,2228224 -g1,13554:29030814,49800853 -g1,13554:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,13554:36151628,51504789:16384,1179648,0 -) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 +[1,13120:3078558,4812305:0,0,0 +(1,13120:3078558,49800853:0,16384,2228224 +g1,13120:29030814,49800853 +g1,13120:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,13120:36151628,51504789:16384,1179648,0 +) +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 ) ] ) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,13554:37855564,49800853:1179648,16384,0 +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,13120:37855564,49800853:1179648,16384,0 ) ) -k1,13554:3078556,49800853:-34777008 +k1,13120:3078556,49800853:-34777008 ) ] -g1,13554:6630773,4812305 -k1,13554:19540057,4812305:11713907 -g1,13554:21162728,4812305 -g1,13554:21985204,4812305 -g1,13554:24539797,4812305 -g1,13554:25949476,4812305 -g1,13554:28728857,4812305 -g1,13554:29852144,4812305 -) -) +g1,13120:6630773,4812305 +g1,13120:6630773,4812305 +g1,13120:8843268,4812305 +g1,13120:10880782,4812305 +g1,13120:13281365,4812305 +k1,13120:31387653,4812305:18106288 +) +) ] -[1,13554:6630773,45706769:25952256,40108032,0 -(1,13554:6630773,45706769:25952256,40108032,0 -(1,13554:6630773,45706769:0,0,0 -g1,13554:6630773,45706769 -) -[1,13554:6630773,45706769:25952256,40108032,0 -(1,13488:6630773,6254097:25952256,513147,134348 -h1,13487:6630773,6254097:983040,0,0 -k1,13487:10244546,6254097:232771 -(1,13487:10244546,6254097:0,452978,115847 -r1,13554:12361371,6254097:2116825,568825,115847 -k1,13487:10244546,6254097:-2116825 -) -(1,13487:10244546,6254097:2116825,452978,115847 -k1,13487:10244546,6254097:3277 -h1,13487:12358094,6254097:0,411205,112570 +[1,13120:6630773,45706769:25952256,40108032,0 +(1,13120:6630773,45706769:25952256,40108032,0 +(1,13120:6630773,45706769:0,0,0 +g1,13120:6630773,45706769 ) -k1,13487:12594141,6254097:232770 -k1,13487:13513074,6254097:232771 -k1,13487:14693496,6254097:232771 -k1,13487:18939691,6254097:232770 -k1,13487:20363907,6254097:232771 -k1,13487:23547108,6254097:232770 -k1,13487:26803055,6254097:232771 -k1,13487:28817095,6254097:232771 -k1,13487:30003414,6254097:232770 -k1,13487:31896867,6254097:232771 -k1,13487:32583029,6254097:0 -) -(1,13488:6630773,7095585:25952256,513147,126483 -g1,13487:8685326,7095585 -g1,13487:9903640,7095585 -g1,13487:12614864,7095585 -g1,13487:13473385,7095585 -k1,13488:32583029,7095585:16041904 -g1,13488:32583029,7095585 -) -v1,13490:6630773,8193957:0,393216,0 -(1,13494:6630773,8509054:25952256,708313,196608 -g1,13494:6630773,8509054 -g1,13494:6630773,8509054 -g1,13494:6434165,8509054 -(1,13494:6434165,8509054:0,708313,196608 -r1,13554:32779637,8509054:26345472,904921,196608 -k1,13494:6434165,8509054:-26345472 -) -(1,13494:6434165,8509054:26345472,708313,196608 -[1,13494:6630773,8509054:25952256,511705,0 -(1,13492:6630773,8407867:25952256,410518,101187 -(1,13491:6630773,8407867:0,0,0 -g1,13491:6630773,8407867 -g1,13491:6630773,8407867 -g1,13491:6303093,8407867 -(1,13491:6303093,8407867:0,0,0 -) -g1,13491:6630773,8407867 -) -k1,13492:6630773,8407867:0 -g1,13492:10108376,8407867 -g1,13492:12005250,8407867 -g1,13492:12637542,8407867 -h1,13492:13269834,8407867:0,0,0 -k1,13492:32583030,8407867:19313196 -g1,13492:32583030,8407867 -) -] -) -g1,13494:32583029,8509054 -g1,13494:6630773,8509054 -g1,13494:6630773,8509054 -g1,13494:32583029,8509054 -g1,13494:32583029,8509054 -) -h1,13494:6630773,8705662:0,0,0 -(1,13497:6630773,23217377:25952256,14013984,0 -k1,13497:12599879,23217377:5969106 -h1,13496:12599879,23217377:0,0,0 -(1,13496:12599879,23217377:14014044,14013984,0 -(1,13496:12599879,23217377:14014019,14014019,0 -(1,13496:12599879,23217377:14014019,14014019,0 -(1,13496:12599879,23217377:0,14014019,0 -(1,13496:12599879,23217377:0,18945146,0 -(1,13496:12599879,23217377:18945146,18945146,0 -) -k1,13496:12599879,23217377:-18945146 -) -) -g1,13496:26613898,23217377 -) -) -) -g1,13497:26613923,23217377 -k1,13497:32583029,23217377:5969106 -) -(1,13504:6630773,24058865:25952256,513147,126483 -h1,13503:6630773,24058865:983040,0,0 -k1,13503:8806830,24058865:239468 -k1,13503:10150580,24058865:239468 -k1,13503:12594025,24058865:239469 -k1,13503:15595836,24058865:239468 -k1,13503:19762877,24058865:239468 -k1,13503:22770586,24058865:239468 -k1,13503:23696216,24058865:239468 -k1,13503:27025708,24058865:239469 -k1,13503:28212827,24058865:239468 -k1,13503:30265021,24058865:239468 -k1,13503:32583029,24058865:0 -) -(1,13504:6630773,24900353:25952256,505283,134348 -g1,13503:8062079,24900353 -g1,13503:10539995,24900353 -h1,13503:11510583,24900353:0,0,0 -g1,13503:11709812,24900353 -g1,13503:12718411,24900353 -g1,13503:14415793,24900353 -h1,13503:15611170,24900353:0,0,0 -k1,13504:32583029,24900353:16591095 -g1,13504:32583029,24900353 -) -v1,13506:6630773,25998725:0,393216,0 -(1,13554:6630773,45510161:25952256,19904652,196608 -g1,13554:6630773,45510161 -g1,13554:6630773,45510161 -g1,13554:6434165,45510161 -(1,13554:6434165,45510161:0,19904652,196608 -r1,13554:32779637,45510161:26345472,20101260,196608 -k1,13554:6434165,45510161:-26345472 -) -(1,13554:6434165,45510161:26345472,19904652,196608 -[1,13554:6630773,45510161:25952256,19708044,0 -(1,13508:6630773,26212635:25952256,410518,76021 -(1,13507:6630773,26212635:0,0,0 -g1,13507:6630773,26212635 -g1,13507:6630773,26212635 -g1,13507:6303093,26212635 -(1,13507:6303093,26212635:0,0,0 -) -g1,13507:6630773,26212635 -) -k1,13508:6630773,26212635:0 -h1,13508:10108375,26212635:0,0,0 -k1,13508:32583029,26212635:22474654 -g1,13508:32583029,26212635 -) -(1,13512:6630773,26878813:25952256,404226,107478 -(1,13510:6630773,26878813:0,0,0 -g1,13510:6630773,26878813 -g1,13510:6630773,26878813 -g1,13510:6303093,26878813 -(1,13510:6303093,26878813:0,0,0 -) -g1,13510:6630773,26878813 -) -g1,13512:7579210,26878813 -g1,13512:8843793,26878813 -g1,13512:10740667,26878813 -h1,13512:12005250,26878813:0,0,0 -k1,13512:32583030,26878813:20577780 -g1,13512:32583030,26878813 -) -(1,13514:6630773,28200351:25952256,410518,101187 -(1,13513:6630773,28200351:0,0,0 -g1,13513:6630773,28200351 -g1,13513:6630773,28200351 -g1,13513:6303093,28200351 -(1,13513:6303093,28200351:0,0,0 -) -g1,13513:6630773,28200351 -) -k1,13514:6630773,28200351:0 -h1,13514:10740667,28200351:0,0,0 -k1,13514:32583029,28200351:21842362 -g1,13514:32583029,28200351 -) -(1,13539:6630773,28866529:25952256,379060,0 -(1,13516:6630773,28866529:0,0,0 -g1,13516:6630773,28866529 -g1,13516:6630773,28866529 -g1,13516:6303093,28866529 -(1,13516:6303093,28866529:0,0,0 -) -g1,13516:6630773,28866529 -) -h1,13539:7263064,28866529:0,0,0 -k1,13539:32583028,28866529:25319964 -g1,13539:32583028,28866529 -) -(1,13539:6630773,29532707:25952256,404226,7863 -h1,13539:6630773,29532707:0,0,0 -g1,13539:7579210,29532707 -h1,13539:9159938,29532707:0,0,0 -k1,13539:32583030,29532707:23423092 -g1,13539:32583030,29532707 -) -(1,13539:6630773,30198885:25952256,410518,107478 -h1,13539:6630773,30198885:0,0,0 -g1,13539:7579210,30198885 -g1,13539:11372958,30198885 -g1,13539:12005250,30198885 -g1,13539:13902124,30198885 -g1,13539:14534416,30198885 -g1,13539:16747436,30198885 -g1,13539:18960456,30198885 -g1,13539:19592748,30198885 -g1,13539:24018788,30198885 -g1,13539:25599517,30198885 -g1,13539:26231809,30198885 -h1,13539:30341703,30198885:0,0,0 -k1,13539:32583029,30198885:2241326 -g1,13539:32583029,30198885 -) -(1,13539:6630773,30865063:25952256,379060,0 -h1,13539:6630773,30865063:0,0,0 -h1,13539:7263064,30865063:0,0,0 -k1,13539:32583028,30865063:25319964 -g1,13539:32583028,30865063 -) -(1,13539:6630773,31531241:25952256,410518,7863 -h1,13539:6630773,31531241:0,0,0 -g1,13539:7579210,31531241 -h1,13539:11689104,31531241:0,0,0 -k1,13539:32583028,31531241:20893924 -g1,13539:32583028,31531241 -) -(1,13539:6630773,32197419:25952256,404226,76021 -h1,13539:6630773,32197419:0,0,0 -g1,13539:7579210,32197419 -g1,13539:7895356,32197419 -g1,13539:8211502,32197419 -g1,13539:8527648,32197419 -g1,13539:8843794,32197419 -g1,13539:9159940,32197419 -g1,13539:9476086,32197419 -g1,13539:9792232,32197419 -g1,13539:10108378,32197419 -g1,13539:10424524,32197419 -g1,13539:10740670,32197419 -g1,13539:11056816,32197419 -g1,13539:11372962,32197419 -g1,13539:14218273,32197419 -g1,13539:15799002,32197419 -g1,13539:17695876,32197419 -g1,13539:18328168,32197419 -g1,13539:20225042,32197419 -k1,13539:20225042,32197419:0 -h1,13539:22754207,32197419:0,0,0 -k1,13539:32583029,32197419:9828822 -g1,13539:32583029,32197419 -) -(1,13539:6630773,32863597:25952256,404226,101187 -h1,13539:6630773,32863597:0,0,0 -g1,13539:7579210,32863597 -g1,13539:11372958,32863597 -g1,13539:11689104,32863597 -g1,13539:14218270,32863597 -g1,13539:14534416,32863597 -g1,13539:14850562,32863597 -g1,13539:15166708,32863597 -g1,13539:17695874,32863597 -g1,13539:18012020,32863597 -g1,13539:20225040,32863597 -g1,13539:20541186,32863597 -g1,13539:21173478,32863597 -g1,13539:23070352,32863597 -h1,13539:24018789,32863597:0,0,0 -k1,13539:32583029,32863597:8564240 -g1,13539:32583029,32863597 -) -(1,13539:6630773,33529775:25952256,388497,101187 -h1,13539:6630773,33529775:0,0,0 -g1,13539:7579210,33529775 -g1,13539:9792230,33529775 -g1,13539:10108376,33529775 -g1,13539:10424522,33529775 -g1,13539:10740668,33529775 -g1,13539:11056814,33529775 -g1,13539:11372960,33529775 -g1,13539:11689106,33529775 -g1,13539:14218272,33529775 -g1,13539:14534418,33529775 -g1,13539:14850564,33529775 -g1,13539:15166710,33529775 -g1,13539:17695876,33529775 -g1,13539:18012022,33529775 -g1,13539:18328168,33529775 -g1,13539:20225042,33529775 -g1,13539:20541188,33529775 -g1,13539:20857334,33529775 -g1,13539:21173480,33529775 -h1,13539:22754208,33529775:0,0,0 -k1,13539:32583029,33529775:9828821 -g1,13539:32583029,33529775 -) -(1,13539:6630773,34195953:25952256,388497,101187 -h1,13539:6630773,34195953:0,0,0 -g1,13539:7579210,34195953 -g1,13539:9792230,34195953 -g1,13539:10108376,34195953 -g1,13539:10424522,34195953 -g1,13539:10740668,34195953 -g1,13539:11056814,34195953 -g1,13539:11372960,34195953 -g1,13539:14218271,34195953 -g1,13539:14534417,34195953 -g1,13539:14850563,34195953 -g1,13539:15166709,34195953 -g1,13539:17695875,34195953 -g1,13539:18012021,34195953 -g1,13539:20225041,34195953 -g1,13539:23070352,34195953 -h1,13539:24018789,34195953:0,0,0 -k1,13539:32583029,34195953:8564240 -g1,13539:32583029,34195953 -) -(1,13539:6630773,34862131:25952256,388497,101187 -h1,13539:6630773,34862131:0,0,0 -g1,13539:7579210,34862131 -g1,13539:9792230,34862131 -g1,13539:10108376,34862131 -g1,13539:10424522,34862131 -g1,13539:10740668,34862131 -g1,13539:11056814,34862131 -g1,13539:11372960,34862131 -g1,13539:14218271,34862131 -g1,13539:14534417,34862131 -g1,13539:14850563,34862131 -g1,13539:15166709,34862131 -g1,13539:17695875,34862131 -g1,13539:18012021,34862131 -g1,13539:20225041,34862131 -g1,13539:23070352,34862131 -h1,13539:24018789,34862131:0,0,0 -k1,13539:32583029,34862131:8564240 -g1,13539:32583029,34862131 -) -(1,13539:6630773,35528309:25952256,388497,101187 -h1,13539:6630773,35528309:0,0,0 -g1,13539:7579210,35528309 -g1,13539:9792230,35528309 -g1,13539:10108376,35528309 -g1,13539:10424522,35528309 -g1,13539:10740668,35528309 -g1,13539:11056814,35528309 -g1,13539:11372960,35528309 -g1,13539:14218271,35528309 -g1,13539:14534417,35528309 -g1,13539:14850563,35528309 -g1,13539:15166709,35528309 -g1,13539:17695875,35528309 -g1,13539:18012021,35528309 -g1,13539:20225041,35528309 -g1,13539:23070352,35528309 -h1,13539:24018789,35528309:0,0,0 -k1,13539:32583029,35528309:8564240 -g1,13539:32583029,35528309 -) -(1,13539:6630773,36194487:25952256,388497,101187 -h1,13539:6630773,36194487:0,0,0 -g1,13539:7579210,36194487 -g1,13539:9792230,36194487 -g1,13539:10108376,36194487 -g1,13539:10424522,36194487 -g1,13539:10740668,36194487 -g1,13539:11056814,36194487 -g1,13539:11372960,36194487 -g1,13539:11689106,36194487 -g1,13539:14218272,36194487 -g1,13539:14534418,36194487 -g1,13539:14850564,36194487 -g1,13539:15166710,36194487 -g1,13539:17695876,36194487 -g1,13539:18012022,36194487 -g1,13539:18328168,36194487 -g1,13539:20225042,36194487 -g1,13539:20541188,36194487 -g1,13539:20857334,36194487 -g1,13539:21173480,36194487 -h1,13539:22754208,36194487:0,0,0 -k1,13539:32583029,36194487:9828821 -g1,13539:32583029,36194487 -) -(1,13539:6630773,36860665:25952256,379060,0 -h1,13539:6630773,36860665:0,0,0 -g1,13539:7579210,36860665 -k1,13539:7579210,36860665:0 -h1,13539:8527648,36860665:0,0,0 -k1,13539:32583028,36860665:24055380 -g1,13539:32583028,36860665 -) -(1,13539:6630773,37526843:25952256,410518,107478 -h1,13539:6630773,37526843:0,0,0 -g1,13539:7579210,37526843 -g1,13539:10108376,37526843 -g1,13539:12321396,37526843 -g1,13539:12637542,37526843 -g1,13539:13269834,37526843 -g1,13539:15166709,37526843 -g1,13539:17063583,37526843 -g1,13539:18644312,37526843 -g1,13539:20225041,37526843 -g1,13539:21489625,37526843 -g1,13539:23070354,37526843 -g1,13539:24334938,37526843 -g1,13539:25599521,37526843 -g1,13539:26231813,37526843 -g1,13539:26864105,37526843 -h1,13539:27180251,37526843:0,0,0 -k1,13539:32583029,37526843:5402778 -g1,13539:32583029,37526843 -) -(1,13539:6630773,38193021:25952256,379060,0 -h1,13539:6630773,38193021:0,0,0 -h1,13539:7263064,38193021:0,0,0 -k1,13539:32583028,38193021:25319964 -g1,13539:32583028,38193021 -) -(1,13539:6630773,38859199:25952256,410518,101187 -h1,13539:6630773,38859199:0,0,0 -g1,13539:7579210,38859199 -g1,13539:11372958,38859199 -g1,13539:14534415,38859199 -g1,13539:15798998,38859199 -g1,13539:19908892,38859199 -g1,13539:22121912,38859199 -g1,13539:24018786,38859199 -g1,13539:24967223,38859199 -g1,13539:25915660,38859199 -h1,13539:28760971,38859199:0,0,0 -k1,13539:32583029,38859199:3822058 -g1,13539:32583029,38859199 -) -(1,13539:6630773,39525377:25952256,379060,0 -h1,13539:6630773,39525377:0,0,0 -h1,13539:7263064,39525377:0,0,0 -k1,13539:32583028,39525377:25319964 -g1,13539:32583028,39525377 -) -(1,13539:6630773,40191555:25952256,410518,107478 -h1,13539:6630773,40191555:0,0,0 -g1,13539:7579210,40191555 -g1,13539:7895356,40191555 -g1,13539:8211502,40191555 -g1,13539:8527648,40191555 -g1,13539:8843794,40191555 -g1,13539:10424523,40191555 -g1,13539:13585980,40191555 -g1,13539:16115146,40191555 -g1,13539:16431292,40191555 -g1,13539:17379729,40191555 -g1,13539:18328166,40191555 -g1,13539:18644312,40191555 -g1,13539:21173478,40191555 -g1,13539:22121915,40191555 -h1,13539:24334935,40191555:0,0,0 -k1,13539:32583029,40191555:8248094 -g1,13539:32583029,40191555 -) -(1,13539:6630773,40857733:25952256,410518,107478 -h1,13539:6630773,40857733:0,0,0 -g1,13539:7579210,40857733 -g1,13539:10424521,40857733 -g1,13539:13585978,40857733 -g1,13539:13902124,40857733 -g1,13539:16115144,40857733 -g1,13539:16431290,40857733 -g1,13539:17379727,40857733 -g1,13539:18328164,40857733 -g1,13539:18644310,40857733 -g1,13539:21173476,40857733 -g1,13539:22121913,40857733 -h1,13539:24334933,40857733:0,0,0 -k1,13539:32583029,40857733:8248096 -g1,13539:32583029,40857733 -) -(1,13539:6630773,41523911:25952256,379060,7863 -h1,13539:6630773,41523911:0,0,0 -g1,13539:7579210,41523911 -g1,13539:9159939,41523911 -h1,13539:9792230,41523911:0,0,0 -k1,13539:32583030,41523911:22790800 -g1,13539:32583030,41523911 -) -(1,13539:6630773,42190089:25952256,379060,0 -h1,13539:6630773,42190089:0,0,0 -h1,13539:7263064,42190089:0,0,0 -k1,13539:32583028,42190089:25319964 -g1,13539:32583028,42190089 -) -(1,13539:6630773,42856267:25952256,410518,107478 -h1,13539:6630773,42856267:0,0,0 -g1,13539:7579210,42856267 -g1,13539:9792230,42856267 -g1,13539:10740667,42856267 -g1,13539:12953687,42856267 -g1,13539:15482853,42856267 -g1,13539:19276601,42856267 -h1,13539:19592747,42856267:0,0,0 -k1,13539:32583029,42856267:12990282 -g1,13539:32583029,42856267 -) -(1,13541:6630773,44177805:25952256,410518,76021 -(1,13540:6630773,44177805:0,0,0 -g1,13540:6630773,44177805 -g1,13540:6630773,44177805 -g1,13540:6303093,44177805 -(1,13540:6303093,44177805:0,0,0 -) -g1,13540:6630773,44177805 -) -k1,13541:6630773,44177805:0 -k1,13541:6630773,44177805:0 -h1,13541:13269833,44177805:0,0,0 -k1,13541:32583029,44177805:19313196 -g1,13541:32583029,44177805 -) -(1,13546:6630773,44843983:25952256,388497,9436 -(1,13543:6630773,44843983:0,0,0 -g1,13543:6630773,44843983 -g1,13543:6630773,44843983 -g1,13543:6303093,44843983 -(1,13543:6303093,44843983:0,0,0 -) -g1,13543:6630773,44843983 -) -g1,13546:7579210,44843983 -g1,13546:7895356,44843983 -g1,13546:8211502,44843983 -g1,13546:8527648,44843983 -g1,13546:8843794,44843983 -g1,13546:9159940,44843983 -g1,13546:9476086,44843983 -g1,13546:9792232,44843983 -g1,13546:10108378,44843983 -g1,13546:10424524,44843983 -g1,13546:11056816,44843983 -g1,13546:11372962,44843983 -g1,13546:11689108,44843983 -g1,13546:12005254,44843983 -g1,13546:12321400,44843983 -g1,13546:12637546,44843983 -g1,13546:12953692,44843983 -g1,13546:13269838,44843983 -g1,13546:13585984,44843983 -g1,13546:13902130,44843983 -g1,13546:14534422,44843983 -g1,13546:14850568,44843983 -g1,13546:15166714,44843983 -g1,13546:15482860,44843983 -g1,13546:15799006,44843983 -g1,13546:16115152,44843983 -g1,13546:16431298,44843983 -g1,13546:16747444,44843983 -g1,13546:17063590,44843983 -g1,13546:17379736,44843983 -g1,13546:18012028,44843983 -g1,13546:18328174,44843983 -g1,13546:18644320,44843983 -g1,13546:18960466,44843983 -g1,13546:19276612,44843983 -g1,13546:19592758,44843983 -g1,13546:19908904,44843983 -g1,13546:20225050,44843983 -g1,13546:20541196,44843983 -g1,13546:20857342,44843983 -g1,13546:21489634,44843983 -g1,13546:21805780,44843983 -g1,13546:22121926,44843983 -g1,13546:22438072,44843983 -g1,13546:22754218,44843983 -g1,13546:23070364,44843983 -g1,13546:23386510,44843983 -g1,13546:23702656,44843983 -g1,13546:24018802,44843983 -g1,13546:24334948,44843983 -g1,13546:24967240,44843983 -g1,13546:25283386,44843983 -g1,13546:25599532,44843983 -g1,13546:25915678,44843983 -g1,13546:26231824,44843983 -g1,13546:26547970,44843983 -g1,13546:26864116,44843983 -g1,13546:27180262,44843983 -g1,13546:27496408,44843983 -g1,13546:27812554,44843983 -h1,13546:28128700,44843983:0,0,0 -k1,13546:32583029,44843983:4454329 -g1,13546:32583029,44843983 -) -(1,13546:6630773,45510161:25952256,388497,9436 -h1,13546:6630773,45510161:0,0,0 -g1,13546:7579210,45510161 -g1,13546:11056813,45510161 -g1,13546:14534416,45510161 -g1,13546:14850562,45510161 -g1,13546:18012019,45510161 -g1,13546:21489622,45510161 -g1,13546:24967225,45510161 -k1,13546:24967225,45510161:0 -h1,13546:28128682,45510161:0,0,0 -k1,13546:32583029,45510161:4454347 -g1,13546:32583029,45510161 -) -] -) -g1,13554:32583029,45510161 -g1,13554:6630773,45510161 -g1,13554:6630773,45510161 -g1,13554:32583029,45510161 -g1,13554:32583029,45510161 -) -] -(1,13554:32583029,45706769:0,0,0 -g1,13554:32583029,45706769 -) -) -] -(1,13554:6630773,47279633:25952256,0,0 -h1,13554:6630773,47279633:25952256,0,0 -) -] -(1,13554:4262630,4025873:0,0,0 -[1,13554:-473656,4025873:0,0,0 -(1,13554:-473656,-710413:0,0,0 -(1,13554:-473656,-710413:0,0,0 -g1,13554:-473656,-710413 -) -g1,13554:-473656,-710413 -) -] -) -] -!20150 -}231 -Input:2048:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2049:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2050:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2051:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2052:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2053:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2054:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2055:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2056:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!858 -{232 -[1,13605:4262630,47279633:28320399,43253760,0 -(1,13605:4262630,4025873:0,0,0 -[1,13605:-473656,4025873:0,0,0 -(1,13605:-473656,-710413:0,0,0 -(1,13605:-473656,-644877:0,0,0 -k1,13605:-473656,-644877:-65536 +[1,13120:6630773,45706769:25952256,40108032,0 +v1,13062:6630773,6254097:0,393216,0 +(1,13062:6630773,9095751:25952256,3234870,0 +g1,13062:6630773,9095751 +g1,13062:6237557,9095751 +r1,13120:6368629,9095751:131072,3234870,0 +g1,13062:6567858,9095751 +g1,13062:6764466,9095751 +[1,13062:6764466,9095751:25818563,3234870,0 +(1,13059:6764466,6374028:25818563,513147,134348 +h1,13058:6764466,6374028:983040,0,0 +k1,13058:10199426,6374028:245978 +k1,13058:11464490,6374028:245979 +k1,13058:14371885,6374028:245978 +k1,13058:16473188,6374028:245979 +k1,13058:17443994,6374028:245978 +k1,13058:18376135,6374028:245979 +k1,13058:19273541,6374028:245978 +k1,13058:20710964,6374028:245978 +k1,13058:23547581,6374028:245979 +k1,13058:24812644,6374028:245978 +k1,13058:27925823,6374028:245979 +k1,13058:28703298,6374028:245978 +k1,13058:32583029,6374028:0 +) +(1,13059:6764466,7239108:25818563,513147,134348 +g1,13058:8822951,7239108 +g1,13058:10464627,7239108 +g1,13058:11062315,7239108 +g1,13058:12651563,7239108 +g1,13058:14656309,7239108 +g1,13058:15211398,7239108 +g1,13058:18500650,7239108 +k1,13059:32583029,7239108:12717264 +g1,13059:32583029,7239108 +) +(1,13061:6764466,8104188:25818563,505283,134348 +h1,13060:6764466,8104188:983040,0,0 +k1,13060:9122496,8104188:226144 +(1,13060:9122496,8104188:0,459977,115847 +r1,13120:15108151,8104188:5985655,575824,115847 +k1,13060:9122496,8104188:-5985655 +) +(1,13060:9122496,8104188:5985655,459977,115847 +k1,13060:9122496,8104188:3277 +h1,13060:15104874,8104188:0,411205,112570 +) +k1,13060:15334294,8104188:226143 +k1,13060:16751883,8104188:226144 +(1,13060:16751883,8104188:0,459977,115847 +r1,13120:22034114,8104188:5282231,575824,115847 +k1,13060:16751883,8104188:-5282231 +) +(1,13060:16751883,8104188:5282231,459977,115847 +k1,13060:16751883,8104188:3277 +h1,13060:22030837,8104188:0,411205,112570 +) +k1,13060:22260258,8104188:226144 +k1,13060:23137829,8104188:226143 +k1,13060:25732444,8104188:226144 +k1,13060:26977673,8104188:226144 +k1,13060:27618632,8104188:226116 +k1,13060:29804302,8104188:226144 +k1,13060:32583029,8104188:0 +) +(1,13061:6764466,8969268:25818563,505283,126483 +g1,13060:7725223,8969268 +g1,13060:8943537,8969268 +g1,13060:10242460,8969268 +(1,13060:10242460,8969268:0,459977,115847 +r1,13120:13766132,8969268:3523672,575824,115847 +k1,13060:10242460,8969268:-3523672 +) +(1,13060:10242460,8969268:3523672,459977,115847 +k1,13060:10242460,8969268:3277 +h1,13060:13762855,8969268:0,411205,112570 +) +k1,13061:32583030,8969268:18643228 +g1,13061:32583030,8969268 +) +] +g1,13062:32583029,9095751 +) +h1,13062:6630773,9095751:0,0,0 +(1,13065:6630773,9960831:25952256,513147,134348 +h1,13064:6630773,9960831:983040,0,0 +k1,13064:10158738,9960831:146963 +(1,13064:10158738,9960831:0,452978,115847 +r1,13120:13330698,9960831:3171960,568825,115847 +k1,13064:10158738,9960831:-3171960 +) +(1,13064:10158738,9960831:3171960,452978,115847 +k1,13064:10158738,9960831:3277 +h1,13064:13327421,9960831:0,411205,112570 +) +k1,13064:13477661,9960831:146963 +k1,13064:15047410,9960831:146962 +k1,13064:16213458,9960831:146963 +k1,13064:18072877,9960831:146963 +k1,13064:20207547,9960831:146963 +k1,13064:23034933,9960831:146963 +k1,13064:24575847,9960831:146963 +k1,13064:26006004,9960831:146962 +k1,13064:27542330,9960831:146963 +k1,13064:28636944,9960831:146963 +k1,13064:29802992,9960831:146963 +k1,13065:32583029,9960831:0 +) +(1,13065:6630773,10825911:25952256,505283,126483 +k1,13064:8269008,10825911:198409 +k1,13064:11309057,10825911:198408 +k1,13064:12158894,10825911:198409 +k1,13064:15145205,10825911:198409 +k1,13064:19127006,10825911:198408 +k1,13064:20143304,10825911:198409 +(1,13064:20143304,10825911:0,452978,115847 +r1,13120:23315264,10825911:3171960,568825,115847 +k1,13064:20143304,10825911:-3171960 +) +(1,13064:20143304,10825911:3171960,452978,115847 +k1,13064:20143304,10825911:3277 +h1,13064:23311987,10825911:0,411205,112570 +) +k1,13064:23513673,10825911:198409 +k1,13064:26090383,10825911:198408 +k1,13064:27571987,10825911:198409 +k1,13064:29159759,10825911:198409 +k1,13064:30044329,10825911:198408 +k1,13064:32124932,10825911:198409 +k1,13064:32583029,10825911:0 +) +(1,13065:6630773,11690991:25952256,513147,126483 +k1,13064:8851132,11690991:208404 +k1,13064:13211898,11690991:208405 +k1,13064:14611747,11690991:208404 +k1,13064:19077370,11690991:208404 +k1,13064:19937203,11690991:208405 +k1,13064:22156252,11690991:208404 +k1,13064:23023948,11690991:208404 +k1,13064:24251437,11690991:208404 +k1,13064:28466713,11690991:208405 +k1,13064:31516758,11690991:208404 +k1,13064:32583029,11690991:0 +) +(1,13065:6630773,12556071:25952256,513147,134348 +k1,13064:9267243,12556071:230643 +k1,13064:10113924,12556071:230643 +k1,13064:11363652,12556071:230643 +k1,13064:14029612,12556071:230642 +k1,13064:15823289,12556071:230643 +k1,13064:16681767,12556071:230643 +k1,13064:17931495,12556071:230643 +k1,13064:19529219,12556071:230643 +k1,13064:20419154,12556071:230643 +k1,13064:21667571,12556071:230643 +k1,13064:22557506,12556071:230643 +k1,13064:24813866,12556071:230642 +k1,13064:26235954,12556071:230643 +k1,13064:28158737,12556071:230643 +k1,13064:30091350,12556071:230643 +k1,13064:32583029,12556071:0 +) +(1,13065:6630773,13421151:25952256,513147,126483 +k1,13064:9348251,13421151:263155 +(1,13064:9348251,13421151:0,452978,115847 +r1,13120:12520211,13421151:3171960,568825,115847 +k1,13064:9348251,13421151:-3171960 +) +(1,13064:9348251,13421151:3171960,452978,115847 +k1,13064:9348251,13421151:3277 +h1,13064:12516934,13421151:0,411205,112570 +) +k1,13064:12783367,13421151:263156 +k1,13064:15561138,13421151:263155 +k1,13064:16440331,13421151:263155 +k1,13064:19369491,13421151:263155 +k1,13064:20284075,13421151:263156 +k1,13064:21566315,13421151:263155 +k1,13064:25282562,13421151:263155 +k1,13064:28591830,13421151:263155 +k1,13064:29514278,13421151:263156 +k1,13064:30796518,13421151:263155 +k1,13065:32583029,13421151:0 +) +(1,13065:6630773,14286231:25952256,513147,126483 +k1,13064:8737201,14286231:242584 +k1,13064:11189659,14286231:242584 +k1,13064:14711665,14286231:242584 +k1,13064:17885019,14286231:242584 +k1,13064:19324290,14286231:242584 +k1,13064:20850069,14286231:242584 +k1,13064:22482016,14286231:242584 +k1,13064:24346616,14286231:242584 +k1,13064:25336966,14286231:242584 +k1,13064:27617720,14286231:242584 +k1,13064:28476342,14286231:242584 +k1,13064:29074786,14286231:242584 +k1,13064:30706733,14286231:242584 +k1,13064:32583029,14286231:0 +) +(1,13065:6630773,15151311:25952256,513147,134348 +k1,13064:8261964,15151311:237240 +k1,13064:11212395,15151311:237240 +k1,13064:13185029,15151311:237241 +k1,13064:14441354,15151311:237240 +k1,13064:16332067,15151311:237240 +k1,13064:18637623,15151311:237240 +k1,13064:19822515,15151311:237241 +k1,13064:21078840,15151311:237240 +k1,13064:25081779,15151311:237240 +k1,13064:28160660,15151311:237240 +k1,13064:29084063,15151311:237241 +k1,13064:29937341,15151311:237240 +k1,13064:31193666,15151311:237240 +k1,13064:32583029,15151311:0 +) +(1,13065:6630773,16016391:25952256,513147,126483 +k1,13064:8440221,16016391:296222 +k1,13064:9684095,16016391:296223 +k1,13064:10999402,16016391:296222 +k1,13064:12156768,16016391:296223 +k1,13064:12808850,16016391:296222 +k1,13064:15978827,16016391:296223 +k1,13064:18786389,16016391:296222 +k1,13064:19614109,16016391:296223 +k1,13064:20976602,16016391:296222 +k1,13064:23571173,16016391:296223 +k1,13064:25058840,16016391:296222 +k1,13064:28582056,16016391:296223 +k1,13064:31591469,16016391:296222 +k1,13064:32583029,16016391:0 +) +(1,13065:6630773,16881471:25952256,505283,134348 +k1,13064:9500431,16881471:254771 +k1,13064:11158983,16881471:254771 +k1,13064:15179453,16881471:254771 +k1,13064:18275865,16881471:254771 +k1,13064:19146674,16881471:254771 +k1,13064:20420531,16881471:254772 +k1,13064:21958497,16881471:254771 +k1,13064:23602631,16881471:254771 +k1,13064:24961684,16881471:254771 +k1,13064:25964221,16881471:254771 +k1,13064:28074972,16881471:254771 +k1,13064:31900144,16881471:254771 +k1,13064:32583029,16881471:0 +) +(1,13065:6630773,17746551:25952256,513147,134348 +g1,13064:9227964,17746551 +g1,13064:10499362,17746551 +g1,13064:12078779,17746551 +g1,13064:13900024,17746551 +g1,13064:16080406,17746551 +g1,13064:16895673,17746551 +g1,13064:18298143,17746551 +g1,13064:20821934,17746551 +g1,13064:22765076,17746551 +g1,13064:23580343,17746551 +g1,13064:24798657,17746551 +g1,13064:27433204,17746551 +k1,13065:32583029,17746551:3379698 +g1,13065:32583029,17746551 +) +v1,13067:6630773,18611631:0,393216,0 +(1,13068:6630773,22620841:25952256,4402426,0 +g1,13068:6630773,22620841 +g1,13068:6237557,22620841 +r1,13120:6368629,22620841:131072,4402426,0 +g1,13068:6567858,22620841 +g1,13068:6764466,22620841 +[1,13068:6764466,22620841:25818563,4402426,0 +(1,13068:6764466,19026173:25818563,807758,219026 +(1,13067:6764466,19026173:0,807758,219026 +r1,13120:7908217,19026173:1143751,1026784,219026 +k1,13067:6764466,19026173:-1143751 +) +(1,13067:6764466,19026173:1143751,807758,219026 +) +k1,13067:8160456,19026173:252239 +k1,13067:8488136,19026173:327680 +k1,13067:11138337,19026173:252239 +(1,13067:11138337,19026173:0,452978,115847 +r1,13120:14310297,19026173:3171960,568825,115847 +k1,13067:11138337,19026173:-3171960 +) +(1,13067:11138337,19026173:3171960,452978,115847 +k1,13067:11138337,19026173:3277 +h1,13067:14307020,19026173:0,411205,112570 +) +k1,13067:14562536,19026173:252239 +k1,13067:15346272,19026173:252239 +k1,13067:17797899,19026173:252239 +k1,13067:19651838,19026173:252239 +k1,13067:22428524,19026173:252239 +k1,13067:23340055,19026173:252239 +k1,13067:25091102,19026173:252239 +k1,13067:29966906,19026173:252239 +k1,13067:30870573,19026173:252239 +k1,13067:32583029,19026173:0 +) +(1,13068:6764466,19891253:25818563,513147,134348 +k1,13067:9443578,19891253:187433 +k1,13067:10673033,19891253:187433 +k1,13067:12552606,19891253:187433 +k1,13067:14456427,19891253:187433 +k1,13067:15303152,19891253:187433 +k1,13067:17808593,19891253:187433 +k1,13067:20520474,19891253:187434 +k1,13067:21239404,19891253:187433 +k1,13067:24849782,19891253:187433 +k1,13067:25798743,19891253:187433 +k1,13067:27759580,19891253:187433 +k1,13067:30730982,19891253:187433 +k1,13068:32583029,19891253:0 +) +(1,13068:6764466,20756333:25818563,505283,134348 +k1,13067:8183226,20756333:273191 +k1,13067:9740924,20756333:273192 +k1,13067:11480811,20756333:273191 +k1,13067:14486198,20756333:273191 +k1,13067:15778475,20756333:273192 +k1,13067:19088604,20756333:273191 +k1,13067:21372441,20756333:273192 +k1,13067:22837077,20756333:273191 +k1,13067:24387565,20756333:273191 +k1,13067:26473483,20756333:273192 +k1,13067:27374509,20756333:273191 +k1,13067:29349670,20756333:273191 +k1,13067:31320244,20756333:273192 +k1,13067:32051532,20756333:273191 +k1,13067:32583029,20756333:0 +) +(1,13068:6764466,21621413:25818563,505283,134348 +k1,13067:10041483,21621413:167989 +k1,13067:10860900,21621413:167989 +k1,13067:13761085,21621413:167989 +k1,13067:14948159,21621413:167989 +k1,13067:18153086,21621413:167989 +k1,13067:20331720,21621413:167989 +k1,13067:21893660,21621413:167989 +(1,13067:21893660,21621413:0,452978,115847 +r1,13120:25065620,21621413:3171960,568825,115847 +k1,13067:21893660,21621413:-3171960 +) +(1,13067:21893660,21621413:3171960,452978,115847 +k1,13067:21893660,21621413:3277 +h1,13067:25062343,21621413:0,411205,112570 +) +k1,13067:25233609,21621413:167989 +k1,13067:26593043,21621413:167989 +k1,13067:27853517,21621413:167989 +k1,13067:29718233,21621413:167989 +k1,13067:31896867,21621413:167989 +k1,13067:32583029,21621413:0 +) +(1,13068:6764466,22486493:25818563,513147,134348 +g1,13067:8353058,22486493 +g1,13067:10260811,22486493 +g1,13067:11407691,22486493 +g1,13067:11962780,22486493 +g1,13067:16067955,22486493 +k1,13068:32583029,22486493:13887080 +g1,13068:32583029,22486493 +) +] +g1,13068:32583029,22620841 +) +h1,13068:6630773,22620841:0,0,0 +v1,13071:6630773,23485921:0,393216,0 +(1,13072:6630773,26480121:25952256,3387416,0 +g1,13072:6630773,26480121 +g1,13072:6237557,26480121 +r1,13120:6368629,26480121:131072,3387416,0 +g1,13072:6567858,26480121 +g1,13072:6764466,26480121 +[1,13072:6764466,26480121:25818563,3387416,0 +(1,13072:6764466,23758398:25818563,665693,196608 +(1,13071:6764466,23758398:0,665693,196608 +r1,13120:8010564,23758398:1246098,862301,196608 +k1,13071:6764466,23758398:-1246098 +) +(1,13071:6764466,23758398:1246098,665693,196608 +) +k1,13071:8373174,23758398:362610 +k1,13071:10099392,23758398:327680 +k1,13071:12685639,23758398:362610 +k1,13071:14783642,23758398:362610 +k1,13071:16612948,23758398:362610 +(1,13071:16612948,23758398:0,459977,115847 +r1,13120:17674637,23758398:1061689,575824,115847 +k1,13071:16612948,23758398:-1061689 +) +(1,13071:16612948,23758398:1061689,459977,115847 +k1,13071:16612948,23758398:3277 +h1,13071:17671360,23758398:0,411205,112570 +) +k1,13071:18037247,23758398:362610 +k1,13071:19591302,23758398:362610 +(1,13071:19591302,23758398:0,459977,115847 +r1,13120:20652991,23758398:1061689,575824,115847 +k1,13071:19591302,23758398:-1061689 +) +(1,13071:19591302,23758398:1061689,459977,115847 +k1,13071:19591302,23758398:3277 +h1,13071:20649714,23758398:0,411205,112570 +) +k1,13071:21015600,23758398:362609 +k1,13071:22397295,23758398:362610 +k1,13071:25420667,23758398:362610 +k1,13071:28495812,23758398:362610 +k1,13071:29509850,23758398:362610 +k1,13071:31274930,23758398:362610 +k1,13071:32583029,23758398:0 +) +(1,13072:6764466,24623478:25818563,513147,134348 +k1,13071:9452671,24623478:326287 +k1,13071:10391720,24623478:326287 +k1,13071:11290137,24623478:326288 +k1,13071:12188553,24623478:326287 +k1,13071:13485428,24623478:326287 +k1,13071:14782303,24623478:326287 +k1,13071:16079179,24623478:326288 +k1,13071:17596911,24623478:326287 +k1,13071:18720116,24623478:326287 +k1,13071:20675629,24623478:326288 +k1,13071:22810710,24623478:326287 +k1,13071:24156082,24623478:326287 +k1,13071:25870422,24623478:326287 +k1,13071:27694862,24623478:326287 +k1,13071:28968801,24623478:326288 +k1,13071:30314173,24623478:326287 +k1,13071:32583029,24623478:0 +) +(1,13072:6764466,25488558:25818563,513147,134348 +k1,13071:9526611,25488558:307822 +k1,13071:10782083,25488558:307821 +k1,13071:12902631,25488558:307822 +k1,13071:15528460,25488558:307821 +k1,13071:17778769,25488558:307822 +(1,13071:17778769,25488558:0,452978,115847 +r1,13120:23412712,25488558:5633943,568825,115847 +k1,13071:17778769,25488558:-5633943 +) +(1,13071:17778769,25488558:5633943,452978,115847 +k1,13071:17778769,25488558:3277 +h1,13071:23409435,25488558:0,411205,112570 +) +k1,13071:24101297,25488558:307821 +k1,13071:26801183,25488558:307822 +k1,13071:28128089,25488558:307821 +k1,13071:31622271,25488558:307822 +k1,13072:32583029,25488558:0 +) +(1,13072:6764466,26353638:25818563,513147,126483 +g1,13071:8851132,26353638 +(1,13071:8851132,26353638:0,452978,115847 +r1,13120:13078228,26353638:4227096,568825,115847 +k1,13071:8851132,26353638:-4227096 +) +(1,13071:8851132,26353638:4227096,452978,115847 +k1,13071:8851132,26353638:3277 +h1,13071:13074951,26353638:0,411205,112570 +) +g1,13071:13277457,26353638 +g1,13071:14668131,26353638 +(1,13071:14668131,26353638:0,459977,115847 +r1,13120:18895227,26353638:4227096,575824,115847 +k1,13071:14668131,26353638:-4227096 +) +(1,13071:14668131,26353638:4227096,459977,115847 +k1,13071:14668131,26353638:3277 +h1,13071:18891950,26353638:0,411205,112570 +) +g1,13071:19094456,26353638 +g1,13071:21389526,26353638 +g1,13071:22885713,26353638 +g1,13071:24076502,26353638 +g1,13071:25655919,26353638 +g1,13071:26579976,26353638 +k1,13072:32583029,26353638:2913686 +g1,13072:32583029,26353638 +) +] +g1,13072:32583029,26480121 +) +h1,13072:6630773,26480121:0,0,0 +(1,13074:6630773,28596939:25952256,564462,139132 +(1,13074:6630773,28596939:2450326,534184,0 +g1,13074:6630773,28596939 +g1,13074:9081099,28596939 +) +g1,13074:12446963,28596939 +g1,13074:13416569,28596939 +g1,13074:16941751,28596939 +k1,13074:32583029,28596939:12800227 +g1,13074:32583029,28596939 +) +(1,13080:6630773,29855235:25952256,505283,134348 +k1,13078:7789750,29855235:205428 +k1,13078:9087664,29855235:205429 +k1,13078:10690975,29855235:205428 +k1,13078:11915488,29855235:205428 +(1,13078:11915488,29855235:0,414482,115847 +r1,13120:16142584,29855235:4227096,530329,115847 +k1,13078:11915488,29855235:-4227096 +) +(1,13078:11915488,29855235:4227096,414482,115847 +k1,13078:11915488,29855235:3277 +h1,13078:16139307,29855235:0,411205,112570 +) +k1,13078:16348013,29855235:205429 +k1,13078:17942804,29855235:205428 +k1,13078:19256446,29855235:205428 +k1,13078:21384700,29855235:205428 +k1,13078:23474289,29855235:205429 +k1,13078:25824710,29855235:205428 +k1,13078:26646176,29855235:205428 +k1,13078:28459203,29855235:205429 +k1,13078:31189078,29855235:205428 +k1,13078:32583029,29855235:0 +) +(1,13080:6630773,30720315:25952256,513147,115847 +g1,13078:9592345,30720315 +g1,13078:13683757,30720315 +g1,13078:14510821,30720315 +g1,13078:16406777,30720315 +g1,13078:18169040,30720315 +(1,13078:18169040,30720315:0,414482,115847 +r1,13120:19934153,30720315:1765113,530329,115847 +k1,13078:18169040,30720315:-1765113 +) +(1,13078:18169040,30720315:1765113,414482,115847 +k1,13078:18169040,30720315:3277 +h1,13078:19930876,30720315:0,411205,112570 +) +g1,13078:20133382,30720315 +g1,13078:20864108,30720315 +g1,13078:21419197,30720315 +g1,13078:23512416,30720315 +g1,13078:25105596,30720315 +g1,13078:26201358,30720315 +k1,13080:32583029,30720315:4415591 +g1,13080:32583029,30720315 +) +(1,13082:6630773,31585395:25952256,513147,134348 +h1,13081:6630773,31585395:983040,0,0 +k1,13081:9011084,31585395:200584 +k1,13081:10311362,31585395:200584 +k1,13081:11043443,31585395:200584 +k1,13081:13468973,31585395:200583 +k1,13081:14688642,31585395:200584 +k1,13081:16542699,31585395:200584 +k1,13081:17429445,31585395:200584 +k1,13081:18649114,31585395:200584 +k1,13081:20006408,31585395:200584 +k1,13081:21154643,31585395:200584 +k1,13081:23167953,31585395:200584 +k1,13081:26858983,31585395:200583 +k1,13081:28435168,31585395:200584 +k1,13081:29654837,31585395:200584 +k1,13081:31923737,31585395:200584 +k1,13081:32583029,31585395:0 +) +(1,13082:6630773,32450475:25952256,513147,11795 +k1,13081:7824788,32450475:174930 +k1,13081:10841360,32450475:174931 +k1,13081:12207735,32450475:174930 +k1,13081:13772029,32450475:174931 +k1,13081:15823255,32450475:174930 +k1,13081:16989746,32450475:174931 +k1,13081:20100689,32450475:174930 +k1,13081:21909433,32450475:174931 +k1,13081:25658697,32450475:174930 +k1,13081:27118134,32450475:174931 +k1,13081:28496305,32450475:174930 +k1,13081:29202733,32450475:174931 +k1,13081:30148366,32450475:174930 +k1,13081:32583029,32450475:0 +) +(1,13082:6630773,33315555:25952256,505283,126483 +g1,13081:7361499,33315555 +g1,13081:8845234,33315555 +(1,13081:8845234,33315555:0,414482,115847 +r1,13120:10610347,33315555:1765113,530329,115847 +k1,13081:8845234,33315555:-1765113 +) +(1,13081:8845234,33315555:1765113,414482,115847 +k1,13081:8845234,33315555:3277 +h1,13081:10607070,33315555:0,411205,112570 +) +g1,13081:10983246,33315555 +g1,13081:12201560,33315555 +g1,13081:16166488,33315555 +g1,13081:19050727,33315555 +g1,13081:19781453,33315555 +g1,13081:20336542,33315555 +(1,13081:20336542,33315555:0,459977,115847 +r1,13120:22453367,33315555:2116825,575824,115847 +k1,13081:20336542,33315555:-2116825 +) +(1,13081:20336542,33315555:2116825,459977,115847 +k1,13081:20336542,33315555:3277 +h1,13081:22450090,33315555:0,411205,112570 +) +k1,13082:32583029,33315555:9955992 +g1,13082:32583029,33315555 +) +v1,13084:6630773,34000410:0,393216,0 +(1,13104:6630773,39072553:25952256,5465359,196608 +g1,13104:6630773,39072553 +g1,13104:6630773,39072553 +g1,13104:6434165,39072553 +(1,13104:6434165,39072553:0,5465359,196608 +r1,13120:32779637,39072553:26345472,5661967,196608 +k1,13104:6434165,39072553:-26345472 +) +(1,13104:6434165,39072553:26345472,5465359,196608 +[1,13104:6630773,39072553:25952256,5268751,0 +(1,13086:6630773,34228241:25952256,424439,106246 +(1,13085:6630773,34228241:0,0,0 +g1,13085:6630773,34228241 +g1,13085:6630773,34228241 +g1,13085:6303093,34228241 +(1,13085:6303093,34228241:0,0,0 +) +g1,13085:6630773,34228241 +) +k1,13086:6630773,34228241:0 +h1,13086:12605944,34228241:0,0,0 +k1,13086:32583028,34228241:19977084 +g1,13086:32583028,34228241 +) +(1,13087:6630773,34913096:25952256,431045,106246 +h1,13087:6630773,34913096:0,0,0 +k1,13087:6630773,34913096:0 +h1,13087:16589391,34913096:0,0,0 +k1,13087:32583029,34913096:15993638 +g1,13087:32583029,34913096 +) +(1,13091:6630773,35729023:25952256,424439,79822 +(1,13089:6630773,35729023:0,0,0 +g1,13089:6630773,35729023 +g1,13089:6630773,35729023 +g1,13089:6303093,35729023 +(1,13089:6303093,35729023:0,0,0 +) +g1,13089:6630773,35729023 +) +g1,13091:7626635,35729023 +g1,13091:8954451,35729023 +h1,13091:10614221,35729023:0,0,0 +k1,13091:32583029,35729023:21968808 +g1,13091:32583029,35729023 +) +(1,13093:6630773,36544950:25952256,431045,106246 +(1,13092:6630773,36544950:0,0,0 +g1,13092:6630773,36544950 +g1,13092:6630773,36544950 +g1,13092:6303093,36544950 +(1,13092:6303093,36544950:0,0,0 +) +g1,13092:6630773,36544950 +) +k1,13093:6630773,36544950:0 +h1,13093:16257437,36544950:0,0,0 +k1,13093:32583029,36544950:16325592 +g1,13093:32583029,36544950 +) +(1,13097:6630773,37360877:25952256,424439,79822 +(1,13095:6630773,37360877:0,0,0 +g1,13095:6630773,37360877 +g1,13095:6630773,37360877 +g1,13095:6303093,37360877 +(1,13095:6303093,37360877:0,0,0 +) +g1,13095:6630773,37360877 +) +g1,13097:7626635,37360877 +g1,13097:8954451,37360877 +h1,13097:10282267,37360877:0,0,0 +k1,13097:32583029,37360877:22300762 +g1,13097:32583029,37360877 +) +(1,13099:6630773,38176804:25952256,431045,106246 +(1,13098:6630773,38176804:0,0,0 +g1,13098:6630773,38176804 +g1,13098:6630773,38176804 +g1,13098:6303093,38176804 +(1,13098:6303093,38176804:0,0,0 +) +g1,13098:6630773,38176804 +) +k1,13099:6630773,38176804:0 +h1,13099:15261576,38176804:0,0,0 +k1,13099:32583028,38176804:17321452 +g1,13099:32583028,38176804 +) +(1,13103:6630773,38992731:25952256,424439,79822 +(1,13101:6630773,38992731:0,0,0 +g1,13101:6630773,38992731 +g1,13101:6630773,38992731 +g1,13101:6303093,38992731 +(1,13101:6303093,38992731:0,0,0 +) +g1,13101:6630773,38992731 +) +g1,13103:7626635,38992731 +g1,13103:8954451,38992731 +g1,13103:10282267,38992731 +g1,13103:11610083,38992731 +g1,13103:12937899,38992731 +g1,13103:14265715,38992731 +g1,13103:15593531,38992731 +h1,13103:16589393,38992731:0,0,0 +k1,13103:32583029,38992731:15993636 +g1,13103:32583029,38992731 +) +] +) +g1,13104:32583029,39072553 +g1,13104:6630773,39072553 +g1,13104:6630773,39072553 +g1,13104:32583029,39072553 +g1,13104:32583029,39072553 +) +h1,13104:6630773,39269161:0,0,0 +(1,13108:6630773,40134241:25952256,513147,134348 +h1,13107:6630773,40134241:983040,0,0 +k1,13107:8740751,40134241:173389 +k1,13107:9601614,40134241:173390 +k1,13107:10794088,40134241:173389 +k1,13107:12955185,40134241:173390 +k1,13107:13744612,40134241:173389 +k1,13107:16142949,40134241:173390 +k1,13107:17335423,40134241:173389 +k1,13107:19162286,40134241:173390 +k1,13107:20573650,40134241:173389 +k1,13107:21433202,40134241:173390 +k1,13107:22554242,40134241:173389 +k1,13107:24540358,40134241:173390 +k1,13107:28204194,40134241:173389 +k1,13107:29396669,40134241:173390 +k1,13107:32583029,40134241:0 +) +(1,13108:6630773,40999321:25952256,513147,134348 +k1,13107:7392383,40999321:230113 +k1,13107:8907003,40999321:230114 +k1,13107:10005468,40999321:230113 +k1,13107:11328067,40999321:230114 +k1,13107:11914040,40999321:230113 +k1,13107:14038143,40999321:230113 +k1,13107:14954419,40999321:230114 +k1,13107:16203617,40999321:230113 +k1,13107:20199429,40999321:230113 +k1,13107:23114553,40999321:230114 +k1,13107:24104884,40999321:230113 +k1,13107:26070391,40999321:230114 +k1,13107:26656364,40999321:230113 +k1,13107:28780467,40999321:230113 +k1,13107:31337764,40999321:230114 +k1,13107:32227169,40999321:230113 +k1,13107:32583029,40999321:0 +) +(1,13108:6630773,41864401:25952256,513147,126483 +g1,13107:9450131,41864401 +g1,13107:11800907,41864401 +g1,13107:12355996,41864401 +g1,13107:15317568,41864401 +g1,13107:17504504,41864401 +g1,13107:19791055,41864401 +g1,13107:20521781,41864401 +g1,13107:22199502,41864401 +g1,13107:23966352,41864401 +g1,13107:24936284,41864401 +g1,13107:28440494,41864401 +k1,13108:32583029,41864401:1425412 +g1,13108:32583029,41864401 +) +v1,13110:6630773,42549256:0,393216,0 +(1,13114:6630773,42889939:25952256,733899,196608 +g1,13114:6630773,42889939 +g1,13114:6630773,42889939 +g1,13114:6434165,42889939 +(1,13114:6434165,42889939:0,733899,196608 +r1,13120:32779637,42889939:26345472,930507,196608 +k1,13114:6434165,42889939:-26345472 +) +(1,13114:6434165,42889939:26345472,733899,196608 +[1,13114:6630773,42889939:25952256,537291,0 +(1,13112:6630773,42783693:25952256,431045,106246 +(1,13111:6630773,42783693:0,0,0 +g1,13111:6630773,42783693 +g1,13111:6630773,42783693 +g1,13111:6303093,42783693 +(1,13111:6303093,42783693:0,0,0 +) +g1,13111:6630773,42783693 +) +g1,13112:7958589,42783693 +g1,13112:8954451,42783693 +g1,13112:11942037,42783693 +g1,13112:12605945,42783693 +g1,13112:14929623,42783693 +g1,13112:16589393,42783693 +g1,13112:17253301,42783693 +h1,13112:21568702,42783693:0,0,0 +k1,13112:32583029,42783693:11014327 +g1,13112:32583029,42783693 +) +] +) +g1,13114:32583029,42889939 +g1,13114:6630773,42889939 +g1,13114:6630773,42889939 +g1,13114:32583029,42889939 +g1,13114:32583029,42889939 +) +h1,13114:6630773,43086547:0,0,0 +(1,13118:6630773,43951627:25952256,513147,134348 +h1,13117:6630773,43951627:983040,0,0 +g1,13117:11178971,43951627 +g1,13117:12985798,43951627 +g1,13117:14176587,43951627 +g1,13117:17167650,43951627 +g1,13117:17982917,43951627 +g1,13117:19201231,43951627 +g1,13117:21053933,43951627 +g1,13117:22491137,43951627 +g1,13117:23376528,43951627 +g1,13117:24523408,43951627 +g1,13117:26535363,43951627 +k1,13118:32583029,43951627:2557219 +g1,13118:32583029,43951627 +) +] +(1,13120:32583029,45706769:0,0,0 +g1,13120:32583029,45706769 +) +) +] +(1,13120:6630773,47279633:25952256,0,0 +h1,13120:6630773,47279633:25952256,0,0 +) +] +(1,13120:4262630,4025873:0,0,0 +[1,13120:-473656,4025873:0,0,0 +(1,13120:-473656,-710413:0,0,0 +(1,13120:-473656,-710413:0,0,0 +g1,13120:-473656,-710413 +) +g1,13120:-473656,-710413 +) +] +) +] +!28590 +}212 +Input:1980:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1981:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1982:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1983:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1984:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1985:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1986:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1987:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1988:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1989:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!952 +{213 +[1,13160:4262630,47279633:28320399,43253760,0 +(1,13160:4262630,4025873:0,0,0 +[1,13160:-473656,4025873:0,0,0 +(1,13160:-473656,-710413:0,0,0 +(1,13160:-473656,-644877:0,0,0 +k1,13160:-473656,-644877:-65536 ) -(1,13605:-473656,4736287:0,0,0 -k1,13605:-473656,4736287:5209943 +(1,13160:-473656,4736287:0,0,0 +k1,13160:-473656,4736287:5209943 ) -g1,13605:-473656,-710413 +g1,13160:-473656,-710413 ) ] ) -[1,13605:6630773,47279633:25952256,43253760,0 -[1,13605:6630773,4812305:25952256,786432,0 -(1,13605:6630773,4812305:25952256,505283,134348 -(1,13605:6630773,4812305:25952256,505283,134348 -g1,13605:3078558,4812305 -[1,13605:3078558,4812305:0,0,0 -(1,13605:3078558,2439708:0,1703936,0 -k1,13605:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,13605:2537886,2439708:1179648,16384,0 +[1,13160:6630773,47279633:25952256,43253760,0 +[1,13160:6630773,4812305:25952256,786432,0 +(1,13160:6630773,4812305:25952256,513147,126483 +(1,13160:6630773,4812305:25952256,513147,126483 +g1,13160:3078558,4812305 +[1,13160:3078558,4812305:0,0,0 +(1,13160:3078558,2439708:0,1703936,0 +k1,13160:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,13160:2537886,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,13605:3078558,1915420:16384,1179648,0 +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,13160:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] ) ) ) ] -[1,13605:3078558,4812305:0,0,0 -(1,13605:3078558,2439708:0,1703936,0 -g1,13605:29030814,2439708 -g1,13605:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,13605:36151628,1915420:16384,1179648,0 +[1,13160:3078558,4812305:0,0,0 +(1,13160:3078558,2439708:0,1703936,0 +g1,13160:29030814,2439708 +g1,13160:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,13160:36151628,1915420:16384,1179648,0 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,13605:37855564,2439708:1179648,16384,0 +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,13160:37855564,2439708:1179648,16384,0 ) ) -k1,13605:3078556,2439708:-34777008 +k1,13160:3078556,2439708:-34777008 ) ] -[1,13605:3078558,4812305:0,0,0 -(1,13605:3078558,49800853:0,16384,2228224 -k1,13605:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,13605:2537886,49800853:1179648,16384,0 +[1,13160:3078558,4812305:0,0,0 +(1,13160:3078558,49800853:0,16384,2228224 +k1,13160:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,13160:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,13605:3078558,51504789:16384,1179648,0 +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,13160:3078558,51504789:16384,1179648,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 ) ] ) ) ) ] -[1,13605:3078558,4812305:0,0,0 -(1,13605:3078558,49800853:0,16384,2228224 -g1,13605:29030814,49800853 -g1,13605:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,13605:36151628,51504789:16384,1179648,0 -) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 +[1,13160:3078558,4812305:0,0,0 +(1,13160:3078558,49800853:0,16384,2228224 +g1,13160:29030814,49800853 +g1,13160:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,13160:36151628,51504789:16384,1179648,0 +) +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 ) ] ) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,13605:37855564,49800853:1179648,16384,0 +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,13160:37855564,49800853:1179648,16384,0 ) ) -k1,13605:3078556,49800853:-34777008 +k1,13160:3078556,49800853:-34777008 ) ] -g1,13605:6630773,4812305 -g1,13605:6630773,4812305 -g1,13605:10153333,4812305 -g1,13605:13588730,4812305 -k1,13605:31387652,4812305:17798922 -) -) -] -[1,13605:6630773,45706769:25952256,40108032,0 -(1,13605:6630773,45706769:25952256,40108032,0 -(1,13605:6630773,45706769:0,0,0 -g1,13605:6630773,45706769 -) -[1,13605:6630773,45706769:25952256,40108032,0 -v1,13554:6630773,6254097:0,393216,0 -(1,13554:6630773,7809799:25952256,1948918,196608 -g1,13554:6630773,7809799 -g1,13554:6630773,7809799 -g1,13554:6434165,7809799 -(1,13554:6434165,7809799:0,1948918,196608 -r1,13605:32779637,7809799:26345472,2145526,196608 -k1,13554:6434165,7809799:-26345472 -) -(1,13554:6434165,7809799:26345472,1948918,196608 -[1,13554:6630773,7809799:25952256,1752310,0 -(1,13548:6630773,6468007:25952256,410518,76021 -(1,13547:6630773,6468007:0,0,0 -g1,13547:6630773,6468007 -g1,13547:6630773,6468007 -g1,13547:6303093,6468007 -(1,13547:6303093,6468007:0,0,0 -) -g1,13547:6630773,6468007 -) -k1,13548:6630773,6468007:0 -k1,13548:6630773,6468007:0 -h1,13548:12321396,6468007:0,0,0 -k1,13548:32583028,6468007:20261632 -g1,13548:32583028,6468007 -) -(1,13553:6630773,7134185:25952256,388497,9436 -(1,13550:6630773,7134185:0,0,0 -g1,13550:6630773,7134185 -g1,13550:6630773,7134185 -g1,13550:6303093,7134185 -(1,13550:6303093,7134185:0,0,0 -) -g1,13550:6630773,7134185 -) -g1,13553:7579210,7134185 -g1,13553:7895356,7134185 -g1,13553:8211502,7134185 -g1,13553:8527648,7134185 -g1,13553:9159940,7134185 -g1,13553:9476086,7134185 -g1,13553:9792232,7134185 -g1,13553:10108378,7134185 -g1,13553:10740670,7134185 -g1,13553:11056816,7134185 -g1,13553:11372962,7134185 -g1,13553:11689108,7134185 -g1,13553:12321400,7134185 -g1,13553:12637546,7134185 -g1,13553:12953692,7134185 -g1,13553:13269838,7134185 -g1,13553:13902130,7134185 -g1,13553:14218276,7134185 -g1,13553:14534422,7134185 -g1,13553:14850568,7134185 -g1,13553:15482860,7134185 -g1,13553:15799006,7134185 -g1,13553:16115152,7134185 -g1,13553:16431298,7134185 -h1,13553:16747444,7134185:0,0,0 -k1,13553:32583029,7134185:15835585 -g1,13553:32583029,7134185 -) -(1,13553:6630773,7800363:25952256,388497,9436 -h1,13553:6630773,7800363:0,0,0 -g1,13553:7579210,7800363 -g1,13553:9159939,7800363 -g1,13553:10740668,7800363 -g1,13553:12321397,7800363 -g1,13553:13902126,7800363 -g1,13553:15482855,7800363 -h1,13553:16747438,7800363:0,0,0 -k1,13553:32583029,7800363:15835591 -g1,13553:32583029,7800363 -) -] -) -g1,13554:32583029,7809799 -g1,13554:6630773,7809799 -g1,13554:6630773,7809799 -g1,13554:32583029,7809799 -g1,13554:32583029,7809799 -) -h1,13554:6630773,8006407:0,0,0 -v1,13558:6630773,9635852:0,393216,0 -(1,13591:6630773,26202382:25952256,16959746,0 -g1,13591:6630773,26202382 -g1,13591:6303093,26202382 -r1,13605:6401397,26202382:98304,16959746,0 -g1,13591:6600626,26202382 -g1,13591:6797234,26202382 -[1,13591:6797234,26202382:25785795,16959746,0 -(1,13559:6797234,9997925:25785795,755289,196608 -(1,13558:6797234,9997925:0,755289,196608 -r1,13605:8134168,9997925:1336934,951897,196608 -k1,13558:6797234,9997925:-1336934 -) -(1,13558:6797234,9997925:1336934,755289,196608 -) -k1,13558:8349823,9997925:215655 -k1,13558:8677503,9997925:327680 -k1,13558:9370916,9997925:215656 -k1,13558:10454923,9997925:215655 -k1,13558:11763064,9997925:215656 -(1,13558:11763064,9997925:0,452978,115847 -r1,13605:13528177,9997925:1765113,568825,115847 -k1,13558:11763064,9997925:-1765113 -) -(1,13558:11763064,9997925:1765113,452978,115847 -k1,13558:11763064,9997925:3277 -h1,13558:13524900,9997925:0,411205,112570 -) -k1,13558:13743832,9997925:215655 -k1,13558:14642373,9997925:215656 -(1,13558:14642373,9997925:0,452978,115847 -r1,13605:17110910,9997925:2468537,568825,115847 -k1,13558:14642373,9997925:-2468537 -) -(1,13558:14642373,9997925:2468537,452978,115847 -k1,13558:14642373,9997925:3277 -h1,13558:17107633,9997925:0,411205,112570 -) -k1,13558:17326565,9997925:215655 -k1,13558:18410573,9997925:215656 -k1,13558:19730510,9997925:215655 -k1,13558:20971149,9997925:215656 -k1,13558:22471310,9997925:215655 -k1,13558:24341750,9997925:215656 -k1,13558:25548965,9997925:215655 -k1,13558:27456761,9997925:215656 -k1,13558:31189078,9997925:215655 -k1,13558:32583029,9997925:0 -) -(1,13559:6797234,10839413:25785795,513147,134348 -k1,13558:9273605,10839413:151809 -k1,13558:10076843,10839413:151810 -k1,13558:12041378,10839413:151809 -k1,13558:14180895,10839413:151810 -k1,13558:15524149,10839413:151809 -k1,13558:16872646,10839413:151810 -k1,13558:19803182,10839413:151809 -k1,13558:21914517,10839413:151809 -k1,13558:22597824,10839413:151810 -k1,13558:23408925,10839413:151809 -k1,13558:23916595,10839413:151810 -k1,13558:26830747,10839413:151809 -k1,13558:28537726,10839413:151810 -k1,13558:29880980,10839413:151809 -k1,13558:32583029,10839413:0 -) -(1,13559:6797234,11680901:25785795,513147,126483 -k1,13558:8752688,11680901:263314 -k1,13558:11969710,11680901:263314 -k1,13558:13299295,11680901:263314 -k1,13558:15968437,11680901:263315 -k1,13558:16847789,11680901:263314 -k1,13558:18923829,11680901:263314 -k1,13558:21678822,11680901:263314 -k1,13558:23292178,11680901:263314 -k1,13558:24214784,11680901:263314 -k1,13558:26174825,11680901:263314 -k1,13558:27913355,11680901:263315 -k1,13558:28828097,11680901:263314 -k1,13558:29906679,11680901:263314 -k1,13558:31563944,11680901:263314 -k1,13558:32583029,11680901:0 -) -(1,13559:6797234,12522389:25785795,513147,126483 -k1,13558:9559729,12522389:150230 -k1,13558:14399714,12522389:150229 -k1,13558:17004267,12522389:150230 -k1,13558:18841393,12522389:150229 -(1,13558:18841393,12522389:0,452978,115847 -r1,13605:20254794,12522389:1413401,568825,115847 -k1,13558:18841393,12522389:-1413401 -) -(1,13558:18841393,12522389:1413401,452978,115847 -k1,13558:18841393,12522389:3277 -h1,13558:20251517,12522389:0,411205,112570 -) -k1,13558:20405024,12522389:150230 -k1,13558:23257303,12522389:150230 -k1,13558:24426617,12522389:150229 -k1,13558:27062628,12522389:150230 -k1,13558:27872149,12522389:150229 -k1,13558:31069803,12522389:150230 -k1,13558:32583029,12522389:0 -) -(1,13559:6797234,13363877:25785795,513147,134348 -g1,13558:8187908,13363877 -(1,13558:8187908,13363877:0,452978,122846 -r1,13605:11359868,13363877:3171960,575824,122846 -k1,13558:8187908,13363877:-3171960 -) -(1,13558:8187908,13363877:3171960,452978,122846 -k1,13558:8187908,13363877:3277 -h1,13558:11356591,13363877:0,411205,112570 -) -g1,13558:11559097,13363877 -g1,13558:12777411,13363877 -g1,13558:15396885,13363877 -g1,13558:16278999,13363877 -g1,13558:17544499,13363877 -g1,13558:18359766,13363877 -g1,13558:20815400,13363877 -g1,13558:21370489,13363877 -k1,13559:32583029,13363877:8426605 -g1,13559:32583029,13363877 -) -v1,13561:6797234,14554343:0,393216,0 -(1,13589:6797234,25481486:25785795,11320359,196608 -g1,13589:6797234,25481486 -g1,13589:6797234,25481486 -g1,13589:6600626,25481486 -(1,13589:6600626,25481486:0,11320359,196608 -r1,13605:32779637,25481486:26179011,11516967,196608 -k1,13589:6600625,25481486:-26179012 -) -(1,13589:6600626,25481486:26179011,11320359,196608 -[1,13589:6797234,25481486:25785795,11123751,0 -(1,13563:6797234,14768253:25785795,410518,76021 -(1,13562:6797234,14768253:0,0,0 -g1,13562:6797234,14768253 -g1,13562:6797234,14768253 -g1,13562:6469554,14768253 -(1,13562:6469554,14768253:0,0,0 -) -g1,13562:6797234,14768253 -) -k1,13563:6797234,14768253:0 -h1,13563:10274836,14768253:0,0,0 -k1,13563:32583028,14768253:22308192 -g1,13563:32583028,14768253 -) -(1,13576:6797234,15434431:25785795,410518,76021 -(1,13565:6797234,15434431:0,0,0 -g1,13565:6797234,15434431 -g1,13565:6797234,15434431 -g1,13565:6469554,15434431 -(1,13565:6469554,15434431:0,0,0 -) -g1,13565:6797234,15434431 -) -g1,13576:7745671,15434431 -g1,13576:8061817,15434431 -g1,13576:9326400,15434431 -g1,13576:14068586,15434431 -g1,13576:14384732,15434431 -g1,13576:14700878,15434431 -g1,13576:15017024,15434431 -g1,13576:15333170,15434431 -g1,13576:15649316,15434431 -g1,13576:19443064,15434431 -g1,13576:19759210,15434431 -g1,13576:20075356,15434431 -g1,13576:20391502,15434431 -g1,13576:20707648,15434431 -g1,13576:21023794,15434431 -g1,13576:21339940,15434431 -g1,13576:21656086,15434431 -g1,13576:21972232,15434431 -h1,13576:26714417,15434431:0,0,0 -k1,13576:32583029,15434431:5868612 -g1,13576:32583029,15434431 -) -(1,13576:6797234,16100609:25785795,410518,76021 -h1,13576:6797234,16100609:0,0,0 -g1,13576:7745671,16100609 -g1,13576:8061817,16100609 -g1,13576:9326400,16100609 -g1,13576:12487857,16100609 -g1,13576:12804003,16100609 -g1,13576:13120149,16100609 -g1,13576:13436295,16100609 -g1,13576:13752441,16100609 -g1,13576:14068587,16100609 -g1,13576:14384733,16100609 -g1,13576:14700879,16100609 -g1,13576:15017025,16100609 -g1,13576:15333171,16100609 -g1,13576:15649317,16100609 -g1,13576:16913900,16100609 -g1,13576:17230046,16100609 -g1,13576:17546192,16100609 -g1,13576:17862338,16100609 -g1,13576:18178484,16100609 -g1,13576:18494630,16100609 -g1,13576:18810776,16100609 -g1,13576:19126922,16100609 -g1,13576:19443068,16100609 -g1,13576:19759214,16100609 -g1,13576:20075360,16100609 -g1,13576:20391506,16100609 -g1,13576:20707652,16100609 -g1,13576:21023798,16100609 -g1,13576:21339944,16100609 -g1,13576:21656090,16100609 -g1,13576:21972236,16100609 -h1,13576:23869110,16100609:0,0,0 -k1,13576:32583029,16100609:8713919 -g1,13576:32583029,16100609 -) -(1,13576:6797234,16766787:25785795,410518,101187 -h1,13576:6797234,16766787:0,0,0 -g1,13576:7745671,16766787 -g1,13576:8061817,16766787 -g1,13576:9326400,16766787 -g1,13576:10907129,16766787 -g1,13576:11223275,16766787 -g1,13576:11539421,16766787 -g1,13576:11855567,16766787 -g1,13576:12171713,16766787 -g1,13576:12487859,16766787 -g1,13576:12804005,16766787 -g1,13576:13120151,16766787 -g1,13576:13436297,16766787 -g1,13576:13752443,16766787 -g1,13576:14068589,16766787 -g1,13576:14384735,16766787 -g1,13576:14700881,16766787 -g1,13576:15017027,16766787 -g1,13576:15333173,16766787 -g1,13576:15649319,16766787 -g1,13576:18494630,16766787 -g1,13576:18810776,16766787 -g1,13576:19126922,16766787 -g1,13576:19443068,16766787 -g1,13576:19759214,16766787 -g1,13576:20075360,16766787 -g1,13576:20391506,16766787 -g1,13576:20707652,16766787 -g1,13576:21023798,16766787 -g1,13576:21339944,16766787 -g1,13576:21656090,16766787 -g1,13576:21972236,16766787 -h1,13576:27979004,16766787:0,0,0 -k1,13576:32583029,16766787:4604025 -g1,13576:32583029,16766787 -) -(1,13576:6797234,17432965:25785795,404226,76021 -h1,13576:6797234,17432965:0,0,0 -g1,13576:7745671,17432965 -g1,13576:9326400,17432965 -g1,13576:12804003,17432965 -g1,13576:13120149,17432965 -g1,13576:13436295,17432965 -g1,13576:13752441,17432965 -g1,13576:14068587,17432965 -g1,13576:14384733,17432965 -g1,13576:14700879,17432965 -g1,13576:15017025,17432965 -g1,13576:15333171,17432965 -g1,13576:15649317,17432965 -g1,13576:17546191,17432965 -g1,13576:17862337,17432965 -g1,13576:18178483,17432965 -g1,13576:18494629,17432965 -g1,13576:18810775,17432965 -g1,13576:19126921,17432965 -g1,13576:19443067,17432965 -g1,13576:19759213,17432965 -g1,13576:20075359,17432965 -g1,13576:20391505,17432965 -g1,13576:20707651,17432965 -g1,13576:21023797,17432965 -g1,13576:21339943,17432965 -g1,13576:21656089,17432965 -g1,13576:21972235,17432965 -h1,13576:26714420,17432965:0,0,0 -k1,13576:32583029,17432965:5868609 -g1,13576:32583029,17432965 -) -(1,13576:6797234,18099143:25785795,404226,107478 -h1,13576:6797234,18099143:0,0,0 -g1,13576:7745671,18099143 -g1,13576:9326400,18099143 -g1,13576:11539420,18099143 -g1,13576:11855566,18099143 -g1,13576:12171712,18099143 -g1,13576:12487858,18099143 -g1,13576:12804004,18099143 -g1,13576:13120150,18099143 -g1,13576:13436296,18099143 -g1,13576:13752442,18099143 -g1,13576:14068588,18099143 -g1,13576:14384734,18099143 -g1,13576:14700880,18099143 -g1,13576:15017026,18099143 -g1,13576:15333172,18099143 -g1,13576:15649318,18099143 -g1,13576:18810775,18099143 -g1,13576:19126921,18099143 -g1,13576:19443067,18099143 -g1,13576:19759213,18099143 -g1,13576:20075359,18099143 -g1,13576:20391505,18099143 -g1,13576:20707651,18099143 -g1,13576:21023797,18099143 -g1,13576:21339943,18099143 -g1,13576:21656089,18099143 -g1,13576:21972235,18099143 -h1,13576:26714420,18099143:0,0,0 -k1,13576:32583029,18099143:5868609 -g1,13576:32583029,18099143 -) -(1,13576:6797234,18765321:25785795,410518,101187 -h1,13576:6797234,18765321:0,0,0 -g1,13576:7745671,18765321 -g1,13576:9326400,18765321 -g1,13576:13752440,18765321 -g1,13576:14068586,18765321 -g1,13576:14384732,18765321 -g1,13576:14700878,18765321 -g1,13576:15017024,18765321 -g1,13576:15333170,18765321 -g1,13576:15649316,18765321 -g1,13576:18810773,18765321 -g1,13576:19126919,18765321 -g1,13576:19443065,18765321 -g1,13576:19759211,18765321 -g1,13576:20075357,18765321 -g1,13576:20391503,18765321 -g1,13576:20707649,18765321 -g1,13576:21023795,18765321 -g1,13576:21339941,18765321 -g1,13576:21656087,18765321 -g1,13576:21972233,18765321 -h1,13576:22920670,18765321:0,0,0 -k1,13576:32583029,18765321:9662359 -g1,13576:32583029,18765321 -) -(1,13576:6797234,19431499:25785795,404226,107478 -h1,13576:6797234,19431499:0,0,0 -g1,13576:7745671,19431499 -g1,13576:9326400,19431499 -g1,13576:13120148,19431499 -g1,13576:13436294,19431499 -g1,13576:13752440,19431499 -g1,13576:14068586,19431499 -g1,13576:14384732,19431499 -g1,13576:14700878,19431499 -g1,13576:15017024,19431499 -g1,13576:15333170,19431499 -g1,13576:15649316,19431499 -g1,13576:19126919,19431499 -g1,13576:19443065,19431499 -g1,13576:19759211,19431499 -g1,13576:20075357,19431499 -g1,13576:20391503,19431499 -g1,13576:20707649,19431499 -g1,13576:21023795,19431499 -g1,13576:21339941,19431499 -g1,13576:21656087,19431499 -g1,13576:21972233,19431499 -h1,13576:24185253,19431499:0,0,0 -k1,13576:32583029,19431499:8397776 -g1,13576:32583029,19431499 -) -(1,13576:6797234,20097677:25785795,410518,76021 -h1,13576:6797234,20097677:0,0,0 -g1,13576:7745671,20097677 -g1,13576:9326400,20097677 -g1,13576:11539420,20097677 -g1,13576:11855566,20097677 -g1,13576:12171712,20097677 -g1,13576:12487858,20097677 -g1,13576:12804004,20097677 -g1,13576:13120150,20097677 -g1,13576:13436296,20097677 -g1,13576:13752442,20097677 -g1,13576:14068588,20097677 -g1,13576:14384734,20097677 -g1,13576:14700880,20097677 -g1,13576:15017026,20097677 -g1,13576:15333172,20097677 -g1,13576:15649318,20097677 -g1,13576:18810775,20097677 -g1,13576:19126921,20097677 -g1,13576:19443067,20097677 -g1,13576:19759213,20097677 -g1,13576:20075359,20097677 -g1,13576:20391505,20097677 -g1,13576:20707651,20097677 -g1,13576:21023797,20097677 -g1,13576:21339943,20097677 -g1,13576:21656089,20097677 -g1,13576:21972235,20097677 -h1,13576:24185255,20097677:0,0,0 -k1,13576:32583029,20097677:8397774 -g1,13576:32583029,20097677 -) -(1,13576:6797234,20763855:25785795,410518,76021 -h1,13576:6797234,20763855:0,0,0 -g1,13576:7745671,20763855 -g1,13576:9326400,20763855 -g1,13576:11539420,20763855 -g1,13576:11855566,20763855 -g1,13576:12171712,20763855 -g1,13576:12487858,20763855 -g1,13576:12804004,20763855 -g1,13576:13120150,20763855 -g1,13576:13436296,20763855 -g1,13576:13752442,20763855 -g1,13576:14068588,20763855 -g1,13576:14384734,20763855 -g1,13576:14700880,20763855 -g1,13576:15017026,20763855 -g1,13576:15333172,20763855 -g1,13576:15649318,20763855 -g1,13576:18494629,20763855 -g1,13576:18810775,20763855 -g1,13576:19126921,20763855 -g1,13576:19443067,20763855 -g1,13576:19759213,20763855 -g1,13576:20075359,20763855 -g1,13576:20391505,20763855 -g1,13576:20707651,20763855 -g1,13576:21023797,20763855 -g1,13576:21339943,20763855 -g1,13576:21656089,20763855 -g1,13576:21972235,20763855 -h1,13576:24817546,20763855:0,0,0 -k1,13576:32583029,20763855:7765483 -g1,13576:32583029,20763855 -) -(1,13576:6797234,21430033:25785795,404226,76021 -h1,13576:6797234,21430033:0,0,0 -g1,13576:7745671,21430033 -g1,13576:9326400,21430033 -g1,13576:12171711,21430033 -g1,13576:12487857,21430033 -g1,13576:12804003,21430033 -g1,13576:13120149,21430033 -g1,13576:13436295,21430033 -g1,13576:13752441,21430033 -g1,13576:14068587,21430033 -g1,13576:14384733,21430033 -g1,13576:14700879,21430033 -g1,13576:15017025,21430033 -g1,13576:15333171,21430033 -g1,13576:15649317,21430033 -g1,13576:19443065,21430033 -g1,13576:19759211,21430033 -g1,13576:20075357,21430033 -g1,13576:20391503,21430033 -g1,13576:20707649,21430033 -g1,13576:21023795,21430033 -g1,13576:21339941,21430033 -g1,13576:21656087,21430033 -g1,13576:21972233,21430033 -h1,13576:24817544,21430033:0,0,0 -k1,13576:32583029,21430033:7765485 -g1,13576:32583029,21430033 -) -(1,13578:6797234,22751571:25785795,410518,107478 -(1,13577:6797234,22751571:0,0,0 -g1,13577:6797234,22751571 -g1,13577:6797234,22751571 -g1,13577:6469554,22751571 -(1,13577:6469554,22751571:0,0,0 -) -g1,13577:6797234,22751571 -) -h1,13578:11223274,22751571:0,0,0 -k1,13578:32583030,22751571:21359756 -g1,13578:32583030,22751571 -) -(1,13582:6797234,23417749:25785795,404226,76021 -(1,13580:6797234,23417749:0,0,0 -g1,13580:6797234,23417749 -g1,13580:6797234,23417749 -g1,13580:6469554,23417749 -(1,13580:6469554,23417749:0,0,0 -) -g1,13580:6797234,23417749 -) -g1,13582:7745671,23417749 -g1,13582:9010254,23417749 -h1,13582:10274837,23417749:0,0,0 -k1,13582:32583029,23417749:22308192 -g1,13582:32583029,23417749 -) -(1,13584:6797234,24739287:25785795,410518,31456 -(1,13583:6797234,24739287:0,0,0 -g1,13583:6797234,24739287 -g1,13583:6797234,24739287 -g1,13583:6469554,24739287 -(1,13583:6469554,24739287:0,0,0 -) -g1,13583:6797234,24739287 -) -h1,13584:9642546,24739287:0,0,0 -k1,13584:32583030,24739287:22940484 -g1,13584:32583030,24739287 -) -(1,13588:6797234,25405465:25785795,404226,76021 -(1,13586:6797234,25405465:0,0,0 -g1,13586:6797234,25405465 -g1,13586:6797234,25405465 -g1,13586:6469554,25405465 -(1,13586:6469554,25405465:0,0,0 -) -g1,13586:6797234,25405465 -) -g1,13588:7745671,25405465 -g1,13588:9010254,25405465 -h1,13588:9326400,25405465:0,0,0 -k1,13588:32583028,25405465:23256628 -g1,13588:32583028,25405465 -) -] -) -g1,13589:32583029,25481486 -g1,13589:6797234,25481486 -g1,13589:6797234,25481486 -g1,13589:32583029,25481486 -g1,13589:32583029,25481486 -) -h1,13589:6797234,25678094:0,0,0 -] -g1,13591:32583029,26202382 -) -h1,13591:6630773,26202382:0,0,0 -(1,13594:6630773,27437849:25952256,513147,134348 -h1,13593:6630773,27437849:983040,0,0 -k1,13593:10539883,27437849:197806 -(1,13593:10539883,27437849:0,452978,115847 -r1,13605:13360132,27437849:2820249,568825,115847 -k1,13593:10539883,27437849:-2820249 -) -(1,13593:10539883,27437849:2820249,452978,115847 -k1,13593:10539883,27437849:3277 -h1,13593:13356855,27437849:0,411205,112570 -) -k1,13593:13557938,27437849:197806 -k1,13593:14947190,27437849:197807 -(1,13593:14947190,27437849:0,452978,115847 -r1,13605:17064015,27437849:2116825,568825,115847 -k1,13593:14947190,27437849:-2116825 -) -(1,13593:14947190,27437849:2116825,452978,115847 -k1,13593:14947190,27437849:3277 -h1,13593:17060738,27437849:0,411205,112570 -) -k1,13593:17435491,27437849:197806 -k1,13593:20723320,27437849:197806 -k1,13593:21868777,27437849:197806 -(1,13593:21868777,27437849:0,452978,115847 -r1,13605:23282178,27437849:1413401,568825,115847 -k1,13593:21868777,27437849:-1413401 -) -(1,13593:21868777,27437849:1413401,452978,115847 -k1,13593:21868777,27437849:3277 -h1,13593:23278901,27437849:0,411205,112570 -) -k1,13593:23479985,27437849:197807 -k1,13593:24293829,27437849:197806 -k1,13593:26770322,27437849:197806 -h1,13593:28313040,27437849:0,0,0 -k1,13593:28510846,27437849:197806 -k1,13593:29518023,27437849:197807 -k1,13593:31213982,27437849:197806 -h1,13593:32409359,27437849:0,0,0 -k1,13593:32583029,27437849:0 -) -(1,13594:6630773,28279337:25952256,513147,122846 -g1,13593:7934284,28279337 -g1,13593:8881279,28279337 -g1,13593:10366324,28279337 -g1,13593:12078779,28279337 -g1,13593:13671959,28279337 -g1,13593:16189196,28279337 -g1,13593:18100881,28279337 -g1,13593:19694061,28279337 -(1,13593:19694061,28279337:0,452978,122846 -r1,13605:21459174,28279337:1765113,575824,122846 -k1,13593:19694061,28279337:-1765113 -) -(1,13593:19694061,28279337:1765113,452978,122846 -k1,13593:19694061,28279337:3277 -h1,13593:21455897,28279337:0,411205,112570 -) -k1,13594:32583029,28279337:10950185 -g1,13594:32583029,28279337 -) -(1,13597:6630773,31086905:25952256,32768,229376 -(1,13597:6630773,31086905:0,32768,229376 -(1,13597:6630773,31086905:5505024,32768,229376 -r1,13605:12135797,31086905:5505024,262144,229376 -) -k1,13597:6630773,31086905:-5505024 -) -(1,13597:6630773,31086905:25952256,32768,0 -r1,13605:32583029,31086905:25952256,32768,0 -) -) -(1,13597:6630773,32691233:25952256,606339,161218 -(1,13597:6630773,32691233:1974731,582746,14155 -g1,13597:6630773,32691233 -g1,13597:8605504,32691233 -) -g1,13597:12965483,32691233 -k1,13597:32583029,32691233:15456534 -g1,13597:32583029,32691233 -) -(1,13603:6630773,33925937:25952256,513147,134348 -k1,13602:9662941,33925937:242300 -(1,13602:9662941,33925937:0,452978,115847 -r1,13605:11428054,33925937:1765113,568825,115847 -k1,13602:9662941,33925937:-1765113 -) -(1,13602:9662941,33925937:1765113,452978,115847 -k1,13602:9662941,33925937:3277 -h1,13602:11424777,33925937:0,411205,112570 -) -k1,13602:11670354,33925937:242300 -k1,13602:12444151,33925937:242300 -k1,13602:13605266,33925937:242300 -k1,13602:17219393,33925937:242300 -k1,13602:18409345,33925937:242301 -k1,13602:20586268,33925937:242300 -k1,13602:24078498,33925937:242300 -k1,13602:26812477,33925937:242300 -k1,13602:27814995,33925937:242300 -k1,13602:31351135,33925937:242300 -k1,13602:32051532,33925937:242300 -k1,13602:32583029,33925937:0 -) -(1,13603:6630773,34767425:25952256,505283,134348 -k1,13602:8927941,34767425:302252 -k1,13602:12480123,34767425:302252 -k1,13602:13385306,34767425:302252 -k1,13602:14673219,34767425:302252 -k1,13602:18628447,34767425:302251 -k1,13602:20938722,34767425:302252 -k1,13602:23251619,34767425:302252 -k1,13602:24545431,34767425:302252 -k1,13602:26585698,34767425:302252 -k1,13602:30024503,34767425:302252 -k1,13602:32583029,34767425:0 -) -(1,13603:6630773,35608913:25952256,513147,134348 -k1,13602:8972475,35608913:407079 -k1,13602:10398639,35608913:407079 -k1,13602:12793426,35608913:407080 -k1,13602:13851933,35608913:407079 -k1,13602:15822046,35608913:407079 -k1,13602:17609969,35608913:407079 -k1,13602:18548545,35608913:407079 -k1,13602:21717967,35608913:407079 -k1,13602:23692668,35608913:407080 -k1,13602:25118832,35608913:407079 -k1,13602:27394998,35608913:407079 -k1,13602:28461369,35608913:407079 -k1,13602:29887533,35608913:407079 -k1,13602:32583029,35608913:0 -) -(1,13603:6630773,36450401:25952256,513147,134348 -k1,13602:8570579,36450401:241768 -k1,13602:12839534,36450401:241768 -k1,13602:16984626,36450401:241768 -k1,13602:17885686,36450401:241768 -k1,13602:19259261,36450401:241768 -k1,13602:21626363,36450401:241769 -k1,13602:22859691,36450401:241768 -k1,13602:24914185,36450401:241768 -k1,13602:27647632,36450401:241768 -k1,13602:28517235,36450401:241768 -k1,13602:31563944,36450401:241768 -k1,13602:32583029,36450401:0 -) -(1,13603:6630773,37291889:25952256,505283,126483 -k1,13602:12342301,37291889:200606 -k1,13602:15332774,37291889:200605 -k1,13602:17046606,37291889:200606 -k1,13602:17863249,37291889:200605 -k1,13602:21217447,37291889:200606 -k1,13602:22609498,37291889:200606 -k1,13602:23829188,37291889:200605 -k1,13602:27227296,37291889:200606 -k1,13602:30217769,37291889:200605 -k1,13602:31931601,37291889:200606 -k1,13602:32583029,37291889:0 -) -(1,13603:6630773,38133377:25952256,505283,134348 -g1,13602:9499283,38133377 -g1,13602:11948363,38133377 -g1,13602:13139152,38133377 -g1,13602:16588311,38133377 -g1,13602:19105548,38133377 -g1,13602:19920815,38133377 -g1,13602:21628683,38133377 -k1,13603:32583029,38133377:7169642 -g1,13603:32583029,38133377 -) -(1,13605:6630773,38974865:25952256,513147,134348 -h1,13604:6630773,38974865:983040,0,0 -k1,13604:9660502,38974865:271974 -k1,13604:12977935,38974865:271975 -k1,13604:16691204,38974865:271974 -k1,13604:18463952,38974865:271974 -k1,13604:19683578,38974865:271975 -k1,13604:22211957,38974865:271974 -k1,13604:25530044,38974865:271974 -k1,13604:26749669,38974865:271974 -k1,13604:28040729,38974865:271975 -k1,13604:31923737,38974865:271974 -k1,13604:32583029,38974865:0 -) -(1,13605:6630773,39816353:25952256,513147,126483 -k1,13604:8646963,39816353:203464 -k1,13604:11342106,39816353:203464 -k1,13604:12161608,39816353:203464 -k1,13604:13384157,39816353:203464 -k1,13604:14954702,39816353:203464 -k1,13604:15817458,39816353:203464 -k1,13604:19270852,39816353:203464 -k1,13604:21965995,39816353:203464 -k1,13604:23188544,39816353:203464 -k1,13604:26438121,39816353:203464 -k1,13604:27633145,39816353:203464 -k1,13604:30628443,39816353:203464 -k1,13604:31593435,39816353:203464 -k1,13605:32583029,39816353:0 -) -(1,13605:6630773,40657841:25952256,505283,126483 -k1,13604:10915779,40657841:198181 -k1,13604:12155982,40657841:198181 -k1,13604:15399620,40657841:198180 -k1,13604:18714038,40657841:198181 -k1,13604:21958332,40657841:198181 -k1,13604:23260795,40657841:198181 -k1,13604:25588241,40657841:198181 -k1,13604:26534187,40657841:198180 -k1,13604:29697872,40657841:198181 -k1,13604:31966991,40657841:198181 -k1,13604:32583029,40657841:0 -) -(1,13605:6630773,41499329:25952256,513147,134348 -k1,13604:10205172,41499329:219611 -k1,13604:14337282,41499329:219611 -k1,13604:16254275,41499329:219611 -k1,13604:18392780,41499329:219611 -k1,13604:21106037,41499329:219612 -k1,13604:22135018,41499329:219611 -k1,13604:24786670,41499329:219611 -k1,13604:26694488,41499329:219611 -k1,13604:29730181,41499329:219611 -k1,13604:31343743,41499329:219611 -k1,13605:32583029,41499329:0 -) -(1,13605:6630773,42340817:25952256,505283,134348 -k1,13604:8079529,42340817:222577 -k1,13604:11550069,42340817:222576 -k1,13604:15175275,42340817:222577 -k1,13604:18321413,42340817:222577 -k1,13604:20481233,42340817:222576 -k1,13604:21988316,42340817:222577 -k1,13604:24595747,42340817:222576 -k1,13604:29141734,42340817:222577 -k1,13604:32583029,42340817:0 -) -(1,13605:6630773,43182305:25952256,513147,134348 -k1,13604:8185156,43182305:269877 -k1,13604:9446593,43182305:269877 -k1,13604:11256566,43182305:269877 -k1,13604:12474094,43182305:269877 -k1,13604:13940659,43182305:269878 -k1,13604:17200288,43182305:269877 -k1,13604:18512187,43182305:269877 -k1,13604:23802122,43182305:269877 -k1,13604:26863833,43182305:269877 -k1,13604:29692236,43182305:269877 -k1,13604:32583029,43182305:0 -) -(1,13605:6630773,44023793:25952256,513147,134348 -k1,13604:8512639,44023793:184484 -k1,13604:10395160,44023793:184483 -k1,13604:11598729,44023793:184484 -k1,13604:14894207,44023793:184484 -k1,13604:16435942,44023793:184484 -k1,13604:17271853,44023793:184483 -k1,13604:20303221,44023793:184484 -k1,13604:21948503,44023793:184484 -k1,13604:22903690,44023793:184484 -k1,13604:25345888,44023793:184483 -k1,13604:26521932,44023793:184484 -k1,13604:29631943,44023793:184484 -k1,13604:32583029,44023793:0 -) -(1,13605:6630773,44865281:25952256,513147,134348 -k1,13604:9488849,44865281:234014 -k1,13604:13164158,44865281:234014 -k1,13604:15912788,44865281:234014 -k1,13604:16798229,44865281:234013 -k1,13604:19661547,44865281:234014 -k1,13604:20666264,44865281:234014 -k1,13604:22736597,44865281:234014 -k1,13604:24767608,44865281:234014 -k1,13604:25949273,44865281:234014 -k1,13604:27202371,44865281:234013 -k1,13604:29447030,44865281:234014 -k1,13604:30340336,44865281:234014 -k1,13604:31593435,44865281:234014 -k1,13605:32583029,44865281:0 -) -(1,13605:6630773,45706769:25952256,513147,134348 -k1,13604:9623500,45706769:158295 -k1,13604:10433222,45706769:158294 -k1,13604:11339283,45706769:158295 -k1,13604:14807800,45706769:158294 -k1,13604:15321955,45706769:158295 -k1,13604:17277247,45706769:158295 -k1,13604:20740522,45706769:158294 -k1,13604:23659849,45706769:158295 -k1,13604:24579672,45706769:158295 -k1,13604:25757051,45706769:158294 -k1,13604:27469860,45706769:158295 -k1,13604:28255989,45706769:158294 -k1,13604:29865906,45706769:158295 -k1,13604:32583029,45706769:0 -) -] -(1,13605:32583029,45706769:0,0,0 -g1,13605:32583029,45706769 -) -) -] -(1,13605:6630773,47279633:25952256,0,0 -h1,13605:6630773,47279633:25952256,0,0 -) -] -(1,13605:4262630,4025873:0,0,0 -[1,13605:-473656,4025873:0,0,0 -(1,13605:-473656,-710413:0,0,0 -(1,13605:-473656,-710413:0,0,0 -g1,13605:-473656,-710413 -) -g1,13605:-473656,-710413 -) -] -) -] -!30168 -}232 -Input:2057:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2058:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2059:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2060:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2061:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2062:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2063:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2064:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2065:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2066:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2067:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2068:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2069:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2070:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2071:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2072:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2073:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2074:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2075:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2076:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2077:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2078:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2079:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2080:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2081:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!2362 -{233 -[1,13658:4262630,47279633:28320399,43253760,0 -(1,13658:4262630,4025873:0,0,0 -[1,13658:-473656,4025873:0,0,0 -(1,13658:-473656,-710413:0,0,0 -(1,13658:-473656,-644877:0,0,0 -k1,13658:-473656,-644877:-65536 +g1,13160:6630773,4812305 +k1,13160:19540057,4812305:11713907 +g1,13160:21162728,4812305 +g1,13160:21985204,4812305 +g1,13160:24539797,4812305 +g1,13160:25949476,4812305 +g1,13160:28728857,4812305 +g1,13160:29852144,4812305 +) +) +] +[1,13160:6630773,45706769:25952256,40108032,0 +(1,13160:6630773,45706769:25952256,40108032,0 +(1,13160:6630773,45706769:0,0,0 +g1,13160:6630773,45706769 +) +[1,13160:6630773,45706769:25952256,40108032,0 +v1,13120:6630773,6254097:0,393216,0 +(1,13124:6630773,6594780:25952256,733899,196608 +g1,13124:6630773,6594780 +g1,13124:6630773,6594780 +g1,13124:6434165,6594780 +(1,13124:6434165,6594780:0,733899,196608 +r1,13160:32779637,6594780:26345472,930507,196608 +k1,13124:6434165,6594780:-26345472 +) +(1,13124:6434165,6594780:26345472,733899,196608 +[1,13124:6630773,6594780:25952256,537291,0 +(1,13122:6630773,6488534:25952256,431045,106246 +(1,13121:6630773,6488534:0,0,0 +g1,13121:6630773,6488534 +g1,13121:6630773,6488534 +g1,13121:6303093,6488534 +(1,13121:6303093,6488534:0,0,0 +) +g1,13121:6630773,6488534 +) +k1,13122:6630773,6488534:0 +g1,13122:9950313,6488534 +g1,13122:11942037,6488534 +g1,13122:12605945,6488534 +h1,13122:13269853,6488534:0,0,0 +k1,13122:32583029,6488534:19313176 +g1,13122:32583029,6488534 +) +] +) +g1,13124:32583029,6594780 +g1,13124:6630773,6594780 +g1,13124:6630773,6594780 +g1,13124:32583029,6594780 +g1,13124:32583029,6594780 +) +h1,13124:6630773,6791388:0,0,0 +(1,13127:6630773,20870908:25952256,14013984,0 +k1,13127:12599879,20870908:5969106 +h1,13126:12599879,20870908:0,0,0 +(1,13126:12599879,20870908:14014044,14013984,0 +(1,13126:12599879,20870908:14014019,14014019,0 +(1,13126:12599879,20870908:14014019,14014019,0 +(1,13126:12599879,20870908:0,14014019,0 +(1,13126:12599879,20870908:0,18945146,0 +(1,13126:12599879,20870908:18945146,18945146,0 +) +k1,13126:12599879,20870908:-18945146 +) +) +g1,13126:26613898,20870908 +) +) +) +g1,13127:26613923,20870908 +k1,13127:32583029,20870908:5969106 +) +(1,13134:6630773,21735988:25952256,505283,134348 +h1,13133:6630773,21735988:983040,0,0 +k1,13133:8524492,21735988:282844 +k1,13133:11241914,21735988:282759 +k1,13133:12393110,21735988:282844 +k1,13133:13667514,21735988:282844 +k1,13133:16108458,21735988:282843 +k1,13133:19602566,21735988:282844 +k1,13133:20501448,21735988:282844 +k1,13133:22965985,21735988:282843 +k1,13133:27040742,21735988:282844 +k1,13133:28515030,21735988:282843 +(1,13133:28515030,21735988:0,452978,115847 +r1,13160:30983567,21735988:2468537,568825,115847 +k1,13133:28515030,21735988:-2468537 +) +(1,13133:28515030,21735988:2468537,452978,115847 +k1,13133:28515030,21735988:3277 +h1,13133:30980290,21735988:0,411205,112570 +) +k1,13133:31266411,21735988:282844 +k1,13134:32583029,21735988:0 +) +(1,13134:6630773,22601068:25952256,505283,134348 +k1,13133:8515587,22601068:228064 +k1,13133:9762735,22601068:228063 +k1,13133:11592499,22601068:228064 +k1,13133:15253994,22601068:228064 +k1,13133:17814483,22601068:228063 +k1,13133:20832415,22601068:228064 +(1,13133:20832415,22601068:0,452978,115847 +r1,13160:24004375,22601068:3171960,568825,115847 +k1,13133:20832415,22601068:-3171960 +) +(1,13133:20832415,22601068:3171960,452978,115847 +k1,13133:20832415,22601068:3277 +h1,13133:24001098,22601068:0,411205,112570 +) +k1,13133:24232439,22601068:228064 +k1,13133:25564784,22601068:228063 +k1,13133:26540614,22601068:228064 +k1,13133:28281904,22601068:228064 +k1,13133:29161395,22601068:228063 +k1,13133:31593435,22601068:228064 +k1,13134:32583029,22601068:0 +) +(1,13134:6630773,23466148:25952256,513147,138281 +k1,13133:9330201,23466148:195297 +k1,13133:12745282,23466148:195297 +k1,13133:14137266,23466148:195297 +k1,13133:16598143,23466148:195297 +k1,13133:19755012,23466148:195297 +k1,13133:21141754,23466148:195297 +k1,13133:25960616,23466148:195297 +$1,13133:25960616,23466148 +$1,13133:26428543,23466148 +k1,13133:28847477,23466148:195297 +k1,13133:31821501,23466148:195297 +k1,13134:32583029,23466148:0 +) +(1,13134:6630773,24331228:25952256,513147,126483 +(1,13133:6630773,24331228:0,452978,115847 +r1,13160:9802733,24331228:3171960,568825,115847 +k1,13133:6630773,24331228:-3171960 +) +(1,13133:6630773,24331228:3171960,452978,115847 +k1,13133:6630773,24331228:3277 +h1,13133:9799456,24331228:0,411205,112570 +) +k1,13133:10060742,24331228:258009 +k1,13133:11510196,24331228:258009 +k1,13133:15386448,24331228:258009 +k1,13133:16928962,24331228:258008 +k1,13133:18662186,24331228:258009 +k1,13133:20392789,24331228:258009 +k1,13133:21333683,24331228:258009 +k1,13133:22401062,24331228:258009 +k1,13133:24507186,24331228:258009 +k1,13133:27208376,24331228:258008 +k1,13133:28082423,24331228:258009 +k1,13133:29111135,24331228:258009 +k1,13133:31923737,24331228:258009 +k1,13133:32583029,24331228:0 +) +(1,13134:6630773,25196308:25952256,505283,134348 +k1,13133:9703943,25196308:245291 +k1,13133:12739101,25196308:245290 +(1,13133:12739101,25196308:0,452978,115847 +r1,13160:14504214,25196308:1765113,568825,115847 +k1,13133:12739101,25196308:-1765113 +) +(1,13133:12739101,25196308:1765113,452978,115847 +k1,13133:12739101,25196308:3277 +h1,13133:14500937,25196308:0,411205,112570 +) +k1,13133:14749505,25196308:245291 +k1,13133:15526292,25196308:245290 +k1,13133:16127443,25196308:245291 +k1,13133:19015145,25196308:245290 +k1,13133:20069806,25196308:245291 +(1,13133:20069806,25196308:0,452978,115847 +r1,13160:21483207,25196308:1413401,568825,115847 +k1,13133:20069806,25196308:-1413401 +) +(1,13133:20069806,25196308:1413401,452978,115847 +k1,13133:20069806,25196308:3277 +h1,13133:21479930,25196308:0,411205,112570 +) +k1,13133:21728497,25196308:245290 +k1,13133:23258294,25196308:245291 +k1,13133:25844530,25196308:245290 +k1,13133:26860524,25196308:245291 +k1,13133:29065340,25196308:245290 +k1,13133:30595137,25196308:245291 +k1,13133:31601955,25196308:245290 +k1,13134:32583029,25196308:0 +) +(1,13134:6630773,26061388:25952256,513147,126483 +g1,13133:8327500,26061388 +g1,13133:10224767,26061388 +g1,13133:12774117,26061388 +g1,13133:15598718,26061388 +g1,13133:16817032,26061388 +g1,13133:19175017,26061388 +g1,13133:20041402,26061388 +(1,13133:20041402,26061388:0,452978,115847 +r1,13160:22509939,26061388:2468537,568825,115847 +k1,13133:20041402,26061388:-2468537 +) +(1,13133:20041402,26061388:2468537,452978,115847 +k1,13133:20041402,26061388:3277 +h1,13133:22506662,26061388:0,411205,112570 +) +k1,13134:32583029,26061388:9899420 +g1,13134:32583029,26061388 +) +v1,13136:6630773,26746243:0,393216,0 +(1,13150:6630773,32703444:25952256,6350417,196608 +g1,13150:6630773,32703444 +g1,13150:6630773,32703444 +g1,13150:6434165,32703444 +(1,13150:6434165,32703444:0,6350417,196608 +r1,13160:32779637,32703444:26345472,6547025,196608 +k1,13150:6434165,32703444:-26345472 +) +(1,13150:6434165,32703444:26345472,6350417,196608 +[1,13150:6630773,32703444:25952256,6153809,0 +(1,13138:6630773,26980680:25952256,431045,79822 +(1,13137:6630773,26980680:0,0,0 +g1,13137:6630773,26980680 +g1,13137:6630773,26980680 +g1,13137:6303093,26980680 +(1,13137:6303093,26980680:0,0,0 +) +g1,13137:6630773,26980680 +) +k1,13138:6630773,26980680:0 +h1,13138:9950313,26980680:0,0,0 +k1,13138:32583029,26980680:22632716 +g1,13138:32583029,26980680 +) +(1,13149:6630773,27796607:25952256,431045,106246 +(1,13140:6630773,27796607:0,0,0 +g1,13140:6630773,27796607 +g1,13140:6630773,27796607 +g1,13140:6303093,27796607 +(1,13140:6303093,27796607:0,0,0 +) +g1,13140:6630773,27796607 +) +g1,13149:7626635,27796607 +g1,13149:10614220,27796607 +g1,13149:11610082,27796607 +g1,13149:14597667,27796607 +h1,13149:16257437,27796607:0,0,0 +k1,13149:32583029,27796607:16325592 +g1,13149:32583029,27796607 +) +(1,13149:6630773,28481462:25952256,398014,0 +h1,13149:6630773,28481462:0,0,0 +h1,13149:7294681,28481462:0,0,0 +k1,13149:32583029,28481462:25288348 +g1,13149:32583029,28481462 +) +(1,13149:6630773,29166317:25952256,398014,106246 +h1,13149:6630773,29166317:0,0,0 +g1,13149:7626635,29166317 +g1,13149:10946174,29166317 +h1,13149:12605944,29166317:0,0,0 +k1,13149:32583028,29166317:19977084 +g1,13149:32583028,29166317 +) +(1,13149:6630773,29851172:25952256,431045,106246 +h1,13149:6630773,29851172:0,0,0 +g1,13149:7626635,29851172 +g1,13149:7958589,29851172 +g1,13149:8290543,29851172 +g1,13149:8622497,29851172 +g1,13149:8954451,29851172 +g1,13149:9286405,29851172 +g1,13149:9618359,29851172 +g1,13149:9950313,29851172 +g1,13149:10282267,29851172 +g1,13149:10614221,29851172 +g1,13149:10946175,29851172 +g1,13149:11942037,29851172 +g1,13149:13269853,29851172 +g1,13149:14265715,29851172 +g1,13149:15925485,29851172 +g1,13149:16921347,29851172 +g1,13149:17585255,29851172 +g1,13149:19576979,29851172 +g1,13149:19908933,29851172 +g1,13149:20240887,29851172 +g1,13149:20572841,29851172 +k1,13149:20572841,29851172:0 +h1,13149:22564565,29851172:0,0,0 +k1,13149:32583029,29851172:10018464 +g1,13149:32583029,29851172 +) +(1,13149:6630773,30536027:25952256,407923,106246 +h1,13149:6630773,30536027:0,0,0 +g1,13149:7626635,30536027 +g1,13149:9618359,30536027 +g1,13149:9950313,30536027 +g1,13149:10282267,30536027 +g1,13149:10614221,30536027 +g1,13149:10946175,30536027 +g1,13149:11278129,30536027 +g1,13149:11942037,30536027 +g1,13149:14265715,30536027 +g1,13149:14597669,30536027 +g1,13149:16921347,30536027 +g1,13149:17253301,30536027 +g1,13149:19576979,30536027 +g1,13149:20240887,30536027 +g1,13149:22896519,30536027 +h1,13149:23892381,30536027:0,0,0 +k1,13149:32583029,30536027:8690648 +g1,13149:32583029,30536027 +) +(1,13149:6630773,31220882:25952256,424439,9908 +h1,13149:6630773,31220882:0,0,0 +g1,13149:7626635,31220882 +g1,13149:10946174,31220882 +g1,13149:11942036,31220882 +g1,13149:14265714,31220882 +g1,13149:14597668,31220882 +g1,13149:14929622,31220882 +h1,13149:16589392,31220882:0,0,0 +k1,13149:32583029,31220882:15993637 +g1,13149:32583029,31220882 +) +(1,13149:6630773,31905737:25952256,398014,0 +h1,13149:6630773,31905737:0,0,0 +g1,13149:7626635,31905737 +k1,13149:7626635,31905737:0 +h1,13149:8622497,31905737:0,0,0 +k1,13149:32583029,31905737:23960532 +g1,13149:32583029,31905737 +) +(1,13149:6630773,32590592:25952256,431045,112852 +h1,13149:6630773,32590592:0,0,0 +g1,13149:7626635,32590592 +g1,13149:10282267,32590592 +g1,13149:12605945,32590592 +g1,13149:12937899,32590592 +g1,13149:13601807,32590592 +g1,13149:15593531,32590592 +g1,13149:17585255,32590592 +g1,13149:19245025,32590592 +g1,13149:20904795,32590592 +g1,13149:22232611,32590592 +g1,13149:23892381,32590592 +g1,13149:25220197,32590592 +g1,13149:26548013,32590592 +g1,13149:27211921,32590592 +g1,13149:27875829,32590592 +h1,13149:28207783,32590592:0,0,0 +k1,13149:32583029,32590592:4375246 +g1,13149:32583029,32590592 +) +] +) +g1,13150:32583029,32703444 +g1,13150:6630773,32703444 +g1,13150:6630773,32703444 +g1,13150:32583029,32703444 +g1,13150:32583029,32703444 +) +h1,13150:6630773,32900052:0,0,0 +v1,13154:6630773,33765132:0,393216,0 +(1,13155:6630773,38578192:25952256,5206276,0 +g1,13155:6630773,38578192 +g1,13155:6237557,38578192 +r1,13160:6368629,38578192:131072,5206276,0 +g1,13155:6567858,38578192 +g1,13155:6764466,38578192 +[1,13155:6764466,38578192:25818563,5206276,0 +(1,13155:6764466,34126309:25818563,754393,260573 +(1,13154:6764466,34126309:0,754393,260573 +r1,13160:8010564,34126309:1246098,1014966,260573 +k1,13154:6764466,34126309:-1246098 +) +(1,13154:6764466,34126309:1246098,754393,260573 +) +k1,13154:8237190,34126309:226626 +k1,13154:8564870,34126309:327680 +k1,13154:9988183,34126309:226626 +k1,13154:12810690,34126309:226626 +k1,13154:14550542,34126309:226626 +k1,13154:15724819,34126309:226626 +k1,13154:17939152,34126309:226626 +k1,13154:19183552,34126309:226626 +k1,13154:20601623,34126309:226626 +k1,13154:23262885,34126309:226599 +k1,13154:27291254,34126309:226626 +k1,13154:28880374,34126309:226626 +k1,13154:31266411,34126309:226626 +k1,13155:32583029,34126309:0 +) +(1,13155:6764466,34991389:25818563,513147,134348 +k1,13154:9094981,34991389:188143 +k1,13154:11115511,34991389:188143 +k1,13154:12804428,34991389:188143 +k1,13154:15754914,34991389:188143 +k1,13154:18748653,34991389:188143 +k1,13154:21253493,34991389:188142 +k1,13154:22100928,34991389:188143 +k1,13154:23984487,34991389:188143 +k1,13154:24831922,34991389:188143 +k1,13154:27665098,34991389:188143 +k1,13154:30140448,34991389:188143 +k1,13154:32196367,34991389:188143 +k1,13154:32583029,34991389:0 +) +(1,13155:6764466,35856469:25818563,513147,134348 +k1,13154:7576129,35856469:212009 +k1,13154:8979583,35856469:212009 +k1,13154:10004238,35856469:212009 +k1,13154:10844082,35856469:212009 +k1,13154:14549815,35856469:212009 +k1,13154:17180758,35856469:212009 +k1,13154:18411851,35856469:212008 +k1,13154:20648922,35856469:212009 +k1,13154:21961936,35856469:212009 +k1,13154:22983315,35856469:212009 +k1,13154:27782189,35856469:212009 +k1,13154:29066367,35856469:212009 +k1,13154:32583029,35856469:0 +) +(1,13155:6764466,36721549:25818563,513147,134348 +k1,13154:8109986,36721549:241238 +k1,13154:9098990,36721549:241238 +k1,13154:12549525,36721549:241237 +k1,13154:13738414,36721549:241238 +k1,13154:17643115,36721549:241238 +k1,13154:20476957,36721549:241238 +k1,13154:22184891,36721549:241238 +k1,13154:24745447,36721549:241237 +k1,13154:25638113,36721549:241238 +k1,13154:28641694,36721549:241238 +k1,13155:32583029,36721549:0 +) +(1,13155:6764466,37586629:25818563,513147,126483 +k1,13154:7923395,37586629:240114 +k1,13154:10602759,37586629:240114 +k1,13154:12228959,37586629:240114 +k1,13154:12855735,37586629:240114 +k1,13154:13627346,37586629:240114 +k1,13154:16154667,37586629:240114 +k1,13154:19893747,37586629:240113 +k1,13154:20785289,37586629:240114 +k1,13154:22891868,37586629:240114 +k1,13154:25214716,37586629:240114 +k1,13154:28461622,37586629:240114 +k1,13154:30144183,37586629:240114 +k1,13154:31770383,37586629:240114 +k1,13154:32583029,37586629:0 +) +(1,13155:6764466,38451709:25818563,513147,126483 +g1,13154:7982780,38451709 +g1,13154:10447589,38451709 +g1,13154:12160044,38451709 +g1,13154:13120801,38451709 +g1,13154:14742161,38451709 +g1,13154:16132835,38451709 +k1,13155:32583029,38451709:15117847 +g1,13155:32583029,38451709 +) +] +g1,13155:32583029,38578192 +) +h1,13155:6630773,38578192:0,0,0 +v1,13159:6630773,39443272:0,393216,0 +(1,13160:6630773,45129277:25952256,6079221,0 +g1,13160:6630773,45129277 +g1,13160:6237557,45129277 +r1,13160:6368629,45129277:131072,6079221,0 +g1,13160:6567858,45129277 +g1,13160:6764466,45129277 +[1,13160:6764466,45129277:25818563,6079221,0 +(1,13160:6764466,39804449:25818563,754393,260573 +(1,13159:6764466,39804449:0,754393,260573 +r1,13160:8010564,39804449:1246098,1014966,260573 +k1,13159:6764466,39804449:-1246098 +) +(1,13159:6764466,39804449:1246098,754393,260573 +) +k1,13159:8256774,39804449:246210 +k1,13159:8584454,39804449:327680 +k1,13159:10027352,39804449:246211 +k1,13159:13235134,39804449:246210 +k1,13159:14994571,39804449:246211 +k1,13159:17020083,39804449:246210 +k1,13159:18285379,39804449:246211 +k1,13159:21577702,39804449:246210 +k1,13159:24602640,39804449:246211 +k1,13159:25610378,39804449:246210 +(1,13159:25610378,39804449:0,459977,115847 +r1,13160:27727203,39804449:2116825,575824,115847 +k1,13159:25610378,39804449:-2116825 +) +(1,13159:25610378,39804449:2116825,459977,115847 +k1,13159:25610378,39804449:3277 +h1,13159:27723926,39804449:0,411205,112570 +) +k1,13159:27973414,39804449:246211 +k1,13159:29411069,39804449:246210 +(1,13159:29411069,39804449:0,452978,115847 +r1,13160:32583029,39804449:3171960,568825,115847 +k1,13159:29411069,39804449:-3171960 +) +(1,13159:29411069,39804449:3171960,452978,115847 +k1,13159:29411069,39804449:3277 +h1,13159:32579752,39804449:0,411205,112570 +) +k1,13159:32583029,39804449:0 +) +(1,13160:6764466,40669529:25818563,513147,126483 +k1,13159:9347200,40669529:210986 +k1,13159:10209615,40669529:210987 +k1,13159:11191304,40669529:210986 +k1,13159:13836942,40669529:210975 +k1,13159:16035635,40669529:210986 +k1,13159:17107765,40669529:210987 +k1,13159:18515438,40669529:210986 +k1,13159:20992005,40669529:210987 +k1,13159:22716217,40669529:210986 +k1,13159:23543241,40669529:210986 +k1,13159:24169059,40669529:210975 +k1,13159:24911542,40669529:210986 +k1,13159:27884872,40669529:210987 +k1,13159:28747286,40669529:210986 +k1,13159:30242779,40669529:210987 +k1,13159:31966991,40669529:210986 +k1,13159:32583029,40669529:0 +) +(1,13160:6764466,41534609:25818563,513147,134348 +k1,13159:8618656,41534609:162050 +k1,13159:10482676,41534609:162050 +k1,13159:13717054,41534609:162050 +k1,13159:15552894,41534609:162050 +k1,13159:18477287,41534609:162050 +k1,13159:20081783,41534609:162049 +k1,13159:20859871,41534609:162050 +k1,13159:21755924,41534609:162050 +k1,13159:23114661,41534609:162050 +k1,13159:25715961,41534609:162050 +(1,13159:25715961,41534609:0,414482,115847 +r1,13160:30998192,41534609:5282231,530329,115847 +k1,13159:25715961,41534609:-5282231 +) +(1,13159:25715961,41534609:5282231,414482,115847 +k1,13159:25715961,41534609:3277 +h1,13159:30994915,41534609:0,411205,112570 +) +k1,13159:31160242,41534609:162050 +k1,13159:32583029,41534609:0 +) +(1,13160:6764466,42399689:25818563,513147,95026 +k1,13159:7952284,42399689:168733 +k1,13159:9427151,42399689:168734 +k1,13159:11057992,42399689:168733 +k1,13159:11886017,42399689:168733 +k1,13159:13073835,42399689:168733 +k1,13159:15136559,42399689:168734 +k1,13159:18331745,42399689:168733 +k1,13159:19151906,42399689:168733 +k1,13159:20068405,42399689:168733 +k1,13159:20592999,42399689:168734 +k1,13159:23256688,42399689:168733 +k1,13159:24111583,42399689:168733 +k1,13159:27259583,42399689:168733 +k1,13159:28375968,42399689:168734 +k1,13159:31923737,42399689:168733 +k1,13159:32583029,42399689:0 +) +(1,13160:6764466,43264769:25818563,513147,134348 +k1,13159:10573744,43264769:198244 +k1,13159:11963434,43264769:198245 +k1,13159:14343372,43264769:198244 +k1,13159:15200909,43264769:198245 +k1,13159:16907792,43264769:198244 +k1,13159:21017225,43264769:198244 +k1,13159:23728120,43264769:198245 +(1,13159:23728120,43264769:0,414482,115847 +r1,13160:26900080,43264769:3171960,530329,115847 +k1,13159:23728120,43264769:-3171960 +) +(1,13159:23728120,43264769:3171960,414482,115847 +k1,13159:23728120,43264769:3277 +h1,13159:26896803,43264769:0,411205,112570 +) +k1,13159:27098324,43264769:198244 +k1,13159:28719356,43264769:198245 +k1,13159:29603762,43264769:198244 +k1,13159:32583029,43264769:0 +) +(1,13160:6764466,44129849:25818563,513147,134348 +k1,13159:7994883,44129849:211332 +k1,13159:9944229,44129849:211331 +k1,13159:10814853,44129849:211332 +k1,13159:11792301,44129849:211332 +k1,13159:13969712,44129849:211331 +k1,13159:15250592,44129849:211332 +k1,13159:17197317,44129849:211332 +k1,13159:18094810,44129849:211331 +k1,13159:21338493,44129849:211332 +k1,13159:22834331,44129849:211332 +k1,13159:24064747,44129849:211331 +k1,13159:25641194,44129849:211332 +k1,13159:26511818,44129849:211332 +k1,13159:27742234,44129849:211331 +k1,13159:31234298,44129849:211332 +k1,13160:32583029,44129849:0 +) +(1,13160:6764466,44994929:25818563,513147,134348 +k1,13159:8861727,44994929:186887 +k1,13159:9580110,44994929:186886 +k1,13159:11494526,44994929:186887 +k1,13159:12332841,44994929:186887 +k1,13159:14113563,44994929:186886 +k1,13159:17474359,44994929:186887 +k1,13159:18864487,44994929:186887 +k1,13159:21622350,44994929:186886 +k1,13159:23357853,44994929:186887 +k1,13159:24563825,44994929:186887 +k1,13159:28361745,44994929:186886 +k1,13159:31391584,44994929:186887 +k1,13159:32583029,44994929:0 +) +] +g1,13160:32583029,45129277 +) +] +(1,13160:32583029,45706769:0,0,0 +g1,13160:32583029,45706769 +) +) +] +(1,13160:6630773,47279633:25952256,0,0 +h1,13160:6630773,47279633:25952256,0,0 +) +] +(1,13160:4262630,4025873:0,0,0 +[1,13160:-473656,4025873:0,0,0 +(1,13160:-473656,-710413:0,0,0 +(1,13160:-473656,-710413:0,0,0 +g1,13160:-473656,-710413 +) +g1,13160:-473656,-710413 +) +] +) +] +!22007 +}213 +Input:1990:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1991:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1992:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1993:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1994:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1995:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1996:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1997:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1998:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1999:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2000:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2001:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2002:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2003:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2004:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2005:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2006:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1610 +{214 +[1,13246:4262630,47279633:28320399,43253760,0 +(1,13246:4262630,4025873:0,0,0 +[1,13246:-473656,4025873:0,0,0 +(1,13246:-473656,-710413:0,0,0 +(1,13246:-473656,-644877:0,0,0 +k1,13246:-473656,-644877:-65536 ) -(1,13658:-473656,4736287:0,0,0 -k1,13658:-473656,4736287:5209943 +(1,13246:-473656,4736287:0,0,0 +k1,13246:-473656,4736287:5209943 ) -g1,13658:-473656,-710413 +g1,13246:-473656,-710413 ) ] ) -[1,13658:6630773,47279633:25952256,43253760,0 -[1,13658:6630773,4812305:25952256,786432,0 -(1,13658:6630773,4812305:25952256,513147,126483 -(1,13658:6630773,4812305:25952256,513147,126483 -g1,13658:3078558,4812305 -[1,13658:3078558,4812305:0,0,0 -(1,13658:3078558,2439708:0,1703936,0 -k1,13658:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,13658:2537886,2439708:1179648,16384,0 +[1,13246:6630773,47279633:25952256,43253760,0 +[1,13246:6630773,4812305:25952256,786432,0 +(1,13246:6630773,4812305:25952256,505283,134348 +(1,13246:6630773,4812305:25952256,505283,134348 +g1,13246:3078558,4812305 +[1,13246:3078558,4812305:0,0,0 +(1,13246:3078558,2439708:0,1703936,0 +k1,13246:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,13246:2537886,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,13658:3078558,1915420:16384,1179648,0 +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,13246:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] ) ) ) ] -[1,13658:3078558,4812305:0,0,0 -(1,13658:3078558,2439708:0,1703936,0 -g1,13658:29030814,2439708 -g1,13658:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,13658:36151628,1915420:16384,1179648,0 +[1,13246:3078558,4812305:0,0,0 +(1,13246:3078558,2439708:0,1703936,0 +g1,13246:29030814,2439708 +g1,13246:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,13246:36151628,1915420:16384,1179648,0 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,13658:37855564,2439708:1179648,16384,0 +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,13246:37855564,2439708:1179648,16384,0 ) ) -k1,13658:3078556,2439708:-34777008 +k1,13246:3078556,2439708:-34777008 ) ] -[1,13658:3078558,4812305:0,0,0 -(1,13658:3078558,49800853:0,16384,2228224 -k1,13658:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,13658:2537886,49800853:1179648,16384,0 +[1,13246:3078558,4812305:0,0,0 +(1,13246:3078558,49800853:0,16384,2228224 +k1,13246:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,13246:2537886,49800853:1179648,16384,0 +) +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,13246:3078558,51504789:16384,1179648,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,13658:3078558,51504789:16384,1179648,0 +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 +) +] ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 -) -] -) -) -) -] -[1,13658:3078558,4812305:0,0,0 -(1,13658:3078558,49800853:0,16384,2228224 -g1,13658:29030814,49800853 -g1,13658:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,13658:36151628,51504789:16384,1179648,0 -) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 -) -] -) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,13658:37855564,49800853:1179648,16384,0 -) -) -k1,13658:3078556,49800853:-34777008 -) -] -g1,13658:6630773,4812305 -k1,13658:19540057,4812305:11713907 -g1,13658:21162728,4812305 -g1,13658:21985204,4812305 -g1,13658:24539797,4812305 -g1,13658:25949476,4812305 -g1,13658:28728857,4812305 -g1,13658:29852144,4812305 -) -) -] -[1,13658:6630773,45706769:25952256,40108032,0 -(1,13658:6630773,45706769:25952256,40108032,0 -(1,13658:6630773,45706769:0,0,0 -g1,13658:6630773,45706769 -) -[1,13658:6630773,45706769:25952256,40108032,0 -(1,13605:6630773,6254097:25952256,505283,134348 -k1,13604:7884073,6254097:234215 -k1,13604:10834101,6254097:234216 -k1,13604:13860150,6254097:234215 -k1,13604:14710404,6254097:234216 -k1,13604:15963704,6254097:234215 -k1,13604:18952397,6254097:234215 -k1,13604:21903736,6254097:234216 -k1,13604:22669448,6254097:234215 -k1,13604:24416889,6254097:234215 -k1,13604:25337267,6254097:234216 -k1,13604:26590567,6254097:234215 -k1,13604:29303355,6254097:234216 -k1,13604:31391584,6254097:234215 -k1,13604:32583029,6254097:0 -) -(1,13605:6630773,7095585:25952256,513147,126483 -k1,13604:8050189,7095585:216175 -k1,13604:10711512,7095585:216175 -k1,13604:11459185,7095585:216176 -k1,13604:14459985,7095585:216175 -k1,13604:15832870,7095585:216175 -k1,13604:17474453,7095585:216175 -k1,13604:19203855,7095585:216176 -k1,13604:22066374,7095585:216175 -k1,13604:23479236,7095585:216175 -k1,13604:27389675,7095585:216175 -k1,13604:28137347,7095585:216175 -k1,13604:29638029,7095585:216176 -k1,13604:31367430,7095585:216175 -k1,13604:31939465,7095585:216175 -k1,13605:32583029,7095585:0 -) -(1,13605:6630773,7937073:25952256,513147,134348 -k1,13604:8028437,7937073:177384 -k1,13604:10691602,7937073:177384 -k1,13604:11528278,7937073:177384 -k1,13604:14753086,7937073:177384 -k1,13604:15949555,7937073:177384 -k1,13604:19237933,7937073:177384 -k1,13604:20547780,7937073:177385 -k1,13604:23582534,7937073:177384 -k1,13604:25027384,7937073:177384 -k1,13604:25560628,7937073:177384 -k1,13604:28350277,7937073:177384 -k1,13604:29812167,7937073:177384 -k1,13604:32583029,7937073:0 -) -(1,13605:6630773,8778561:25952256,513147,126483 -k1,13604:7628836,8778561:250297 -k1,13604:10929179,8778561:250297 -k1,13604:13628556,8778561:250297 -k1,13604:14506688,8778561:250297 -k1,13604:15953672,8778561:250297 -k1,13604:17222398,8778561:250297 -k1,13604:18341048,8778561:250298 -k1,13604:19993815,8778561:250297 -k1,13604:22961235,8778561:250297 -k1,13604:24909570,8778561:250297 -k1,13604:26178952,8778561:250297 -k1,13604:30697609,8778561:250297 -k1,13604:31563944,8778561:250297 -k1,13604:32583029,8778561:0 -) -(1,13605:6630773,9620049:25952256,513147,134348 -k1,13604:7518685,9620049:200439 -k1,13604:8250621,9620049:200439 -k1,13604:10803147,9620049:200439 -k1,13604:12446034,9620049:200440 -k1,13604:13002333,9620049:200439 -k1,13604:15400850,9620049:200439 -k1,13604:18847943,9620049:200439 -k1,13604:19731267,9620049:200439 -k1,13604:21629744,9620049:200439 -k1,13604:22639554,9620049:200440 -k1,13604:26793125,9620049:200439 -k1,13604:28094569,9620049:200439 -k1,13604:29804958,9620049:200439 -k1,13604:32583029,9620049:0 -) -(1,13605:6630773,10461537:25952256,513147,126483 -k1,13604:8347765,10461537:203766 -k1,13604:8907392,10461537:203767 -k1,13604:11309236,10461537:203766 -k1,13604:14709849,10461537:203767 -k1,13604:17399396,10461537:203766 -k1,13604:18262454,10461537:203766 -k1,13604:21687316,10461537:203767 -k1,13604:22518917,10461537:203766 -k1,13604:23741768,10461537:203766 -k1,13604:25251668,10461537:203767 -k1,13604:26996185,10461537:203766 -k1,13604:28068304,10461537:203767 -k1,13604:30559277,10461537:203766 -k1,13604:32583029,10461537:0 -) -(1,13605:6630773,11303025:25952256,505283,134348 -k1,13604:8392240,11303025:177462 -k1,13604:11789486,11303025:177462 -k1,13604:12582986,11303025:177462 -k1,13604:13779533,11303025:177462 -k1,13604:16198326,11303025:177462 -k1,13604:17916539,11303025:177462 -k1,13604:18962353,11303025:177462 -k1,13604:19955084,11303025:177463 -k1,13604:21198817,11303025:177462 -k1,13604:23400031,11303025:177462 -k1,13604:25631391,11303025:177462 -k1,13604:28854966,11303025:177462 -k1,13604:30223873,11303025:177462 -k1,13604:31931601,11303025:177462 -k1,13604:32583029,11303025:0 -) -(1,13605:6630773,12144513:25952256,513147,134348 -k1,13604:8229742,12144513:212227 -k1,13604:9389620,12144513:212227 -k1,13604:12364190,12144513:212227 -k1,13604:14144694,12144513:212227 -k1,13604:15016213,12144513:212227 -k1,13604:18242442,12144513:212228 -k1,13604:20267395,12144513:212227 -k1,13604:22262857,12144513:212227 -k1,13604:26428216,12144513:212227 -k1,13604:28171364,12144513:212227 -k1,13604:29402676,12144513:212227 -k1,13604:30921036,12144513:212227 -k1,13604:32583029,12144513:0 -) -(1,13605:6630773,12986001:25952256,513147,134348 -k1,13604:7509693,12986001:227492 -k1,13604:8552452,12986001:227491 -k1,13604:9311441,12986001:227492 -k1,13604:10190361,12986001:227492 -k1,13604:11324215,12986001:227491 -k1,13604:14314050,12986001:227492 -k1,13604:17020114,12986001:227492 -k1,13604:19258251,12986001:227492 -k1,13604:20677187,12986001:227491 -k1,13604:21370640,12986001:227492 -k1,13604:22801373,12986001:227492 -k1,13604:24314680,12986001:227491 -k1,13604:26073093,12986001:227492 -k1,13604:28358415,12986001:227492 -k1,13604:29237334,12986001:227491 -k1,13604:29820686,12986001:227492 -k1,13604:32583029,12986001:0 -) -(1,13605:6630773,13827489:25952256,505283,134348 -k1,13604:11458090,13827489:202441 -k1,13604:14945194,13827489:202440 -k1,13604:17021965,13827489:202441 -k1,13604:18909991,13827489:202440 -k1,13604:21399639,13827489:202441 -k1,13604:23163802,13827489:202440 -k1,13604:24438412,13827489:202441 -k1,13604:25707123,13827489:202440 -k1,13604:28212499,13827489:202441 -k1,13604:30104457,13827489:202440 -k1,13604:32583029,13827489:0 -) -(1,13605:6630773,14668977:25952256,505283,134348 -k1,13604:8791495,14668977:150077 -k1,13604:9933133,14668977:150078 -k1,13604:10699248,14668977:150077 -k1,13604:12601102,14668977:150077 -k1,13604:14448562,14668977:150078 -k1,13604:16731181,14668977:150077 -k1,13604:18072703,14668977:150077 -k1,13604:18838819,14668977:150078 -k1,13604:20681036,14668977:150077 -k1,13604:22528496,14668977:150078 -k1,13604:25753522,14668977:150077 -k1,13604:27007881,14668977:150077 -k1,13604:27905725,14668977:150078 -k1,13604:30847636,14668977:150077 -k1,13604:32583029,14668977:0 -) -(1,13605:6630773,15510465:25952256,505283,134348 -g1,13604:8685982,15510465 -g1,13604:11834986,15510465 -g1,13604:12717100,15510465 -g1,13604:15961787,15510465 -k1,13605:32583029,15510465:11427514 -g1,13605:32583029,15510465 -) -(1,13628:6630773,23216657:25952256,6850948,0 -k1,13628:7879722,23216657:1248949 -(1,13606:7879722,23216657:0,0,0 -g1,13606:7879722,23216657 -g1,13606:7879722,23216657 -g1,13606:7552042,23216657 -(1,13606:7552042,23216657:0,0,0 -) -g1,13606:7879722,23216657 -) -(1,13626:7879722,23216657:23454359,6850948,0 -g1,13626:10996008,23216657 -(1,13626:10996008,16994163:0,0,0 -(1,13626:10996008,16994163:0,0,0 -g1,13608:10996008,16994163 -(1,13609:10996008,16994163:0,0,0 -(1,13609:10996008,16994163:0,0,0 -g1,13609:10996008,16994163 -g1,13609:10996008,16994163 -g1,13609:10996008,16994163 -g1,13609:10996008,16994163 -g1,13609:10996008,16994163 -(1,13609:10996008,16994163:0,0,0 -(1,13609:10996008,16994163:4940249,454754,104590 -(1,13609:10996008,16994163:4940249,454754,104590 -g1,13609:12927092,16994163 -$1,13609:12927092,16994163 -$1,13609:13534611,16994163 -g1,13609:13713918,16994163 -(1,13609:13713918,16994163:0,414307,104590 -r1,13658:15936257,16994163:2222339,518897,104590 -k1,13609:13713918,16994163:-2222339 -) -(1,13609:13713918,16994163:2222339,414307,104590 -k1,13609:13713918,16994163:3277 -h1,13609:15932980,16994163:0,370085,101313 -) -) -g1,13609:15936257,16994163 -) -) -g1,13609:10996008,16994163 -g1,13609:10996008,16994163 -) -) -g1,13609:10996008,16994163 -(1,13610:10996008,16994163:0,0,0 -(1,13610:10996008,16994163:0,0,0 -g1,13610:10996008,16994163 -g1,13610:10996008,16994163 -g1,13610:10996008,16994163 -g1,13610:10996008,16994163 -g1,13610:10996008,16994163 -(1,13610:10996008,16994163:0,0,0 -(1,13610:10996008,16994163:5813184,454754,104590 -(1,13610:10996008,16994163:5813184,454754,104590 -g1,13610:14749649,16994163 -$1,13610:14749649,16994163 -$1,13610:15357168,16994163 -g1,13610:15536475,16994163 -(1,13610:15536475,16994163:0,408008,104590 -r1,13658:16809192,16994163:1272717,512598,104590 -k1,13610:15536475,16994163:-1272717 -) -(1,13610:15536475,16994163:1272717,408008,104590 -k1,13610:15536475,16994163:3277 -h1,13610:16805915,16994163:0,370085,101313 -) -) -g1,13610:16809192,16994163 -) -) -g1,13610:10996008,16994163 -g1,13610:10996008,16994163 -) -) -g1,13610:10996008,16994163 -(1,13611:10996008,16994163:0,0,0 -(1,13611:10996008,16994163:0,0,0 -g1,13611:10996008,16994163 -g1,13611:10996008,16994163 -g1,13611:10996008,16994163 -g1,13611:10996008,16994163 -g1,13611:10996008,16994163 -(1,13611:10996008,16994163:0,0,0 -(1,13611:10996008,16994163:5356075,454754,120913 -(1,13611:10996008,16994163:5356075,454754,120913 -g1,13611:13342918,16994163 -$1,13611:13342918,16994163 -$1,13611:13950437,16994163 -g1,13611:14129744,16994163 -(1,13611:14129744,16994163:0,408008,110889 -r1,13658:16352083,16994163:2222339,518897,110889 -k1,13611:14129744,16994163:-2222339 -) -(1,13611:14129744,16994163:2222339,408008,110889 -k1,13611:14129744,16994163:3277 -h1,13611:16348806,16994163:0,370085,101313 -) -) -g1,13611:16352083,16994163 -) -) -g1,13611:10996008,16994163 -g1,13611:10996008,16994163 -) -) -g1,13611:10996008,16994163 -(1,13612:10996008,16994163:0,0,0 -(1,13612:10996008,16994163:0,0,0 -g1,13612:10996008,16994163 -g1,13612:10996008,16994163 -g1,13612:10996008,16994163 -g1,13612:10996008,16994163 -g1,13612:10996008,16994163 -(1,13612:10996008,16994163:0,0,0 -(1,13612:10996008,16994163:4692323,373362,120913 -(1,13612:10996008,16994163:4692323,373362,120913 -g1,13612:13312248,16994163 -$1,13612:13312248,16994163 -$1,13612:13919767,16994163 -g1,13612:14099074,16994163 -(1,13612:14099074,16994163:0,373362,104590 -r1,13658:15688331,16994163:1589257,477952,104590 -k1,13612:14099074,16994163:-1589257 -) -(1,13612:14099074,16994163:1589257,373362,104590 -k1,13612:14099074,16994163:3277 -h1,13612:15685054,16994163:0,370085,101313 -) -) -g1,13612:15688331,16994163 -) -) -g1,13612:10996008,16994163 -g1,13612:10996008,16994163 -) -) -(1,13613:10996008,16994163:0,0,0 -(1,13613:10996008,16994163:0,0,0 -g1,13613:10996008,16994163 -g1,13613:10996008,16994163 -g1,13613:10996008,16994163 -g1,13613:10996008,16994163 -g1,13613:10996008,16994163 -(1,13613:10996008,16994163:0,0,0 -(1,13613:10996008,16994163:1589257,408008,104590 -(1,13613:10996008,16994163:1589257,408008,104590 -(1,13613:10996008,16994163:0,408008,104590 -r1,13658:12585265,16994163:1589257,512598,104590 -k1,13613:10996008,16994163:-1589257 -) -(1,13613:10996008,16994163:1589257,408008,104590 -k1,13613:10996008,16994163:3277 -h1,13613:12581988,16994163:0,370085,101313 -) -) -g1,13613:12585265,16994163 -) -) -g1,13613:10996008,16994163 -g1,13613:10996008,16994163 ) ) -g1,13613:10996008,16994163 -(1,13614:10996008,16994163:0,0,0 -(1,13614:10996008,16994163:0,0,0 -g1,13614:10996008,16994163 -g1,13614:10996008,16994163 -g1,13614:10996008,16994163 -g1,13614:10996008,16994163 -g1,13614:10996008,16994163 -(1,13614:10996008,16994163:0,0,0 -(1,13614:10996008,16994163:2866617,454754,120913 -(1,13614:10996008,16994163:2866617,454754,120913 -(1,13614:10996008,16994163:0,408008,104590 -r1,13658:11952184,16994163:956176,512598,104590 -k1,13614:10996008,16994163:-956176 -) -(1,13614:10996008,16994163:956176,408008,104590 -k1,13614:10996008,16994163:3277 -h1,13614:11948907,16994163:0,370085,101313 -) -g1,13614:12131491,16994163 -) -g1,13614:13862625,16994163 -) -) -g1,13614:10996008,16994163 -g1,13614:10996008,16994163 -) -) -g1,13614:10996008,16994163 -(1,13615:10996008,16994163:0,0,0 -(1,13615:10996008,16994163:0,0,0 -g1,13615:10996008,16994163 -g1,13615:10996008,16994163 -g1,13615:10996008,16994163 -g1,13615:10996008,16994163 -g1,13615:10996008,16994163 -(1,13615:10996008,16994163:0,0,0 -(1,13615:10996008,16994163:2855420,408008,104590 -(1,13615:10996008,16994163:2855420,408008,104590 -(1,13615:10996008,16994163:0,408008,104590 -r1,13658:13851428,16994163:2855420,512598,104590 -k1,13615:10996008,16994163:-2855420 -) -(1,13615:10996008,16994163:2855420,408008,104590 -k1,13615:10996008,16994163:3277 -h1,13615:13848151,16994163:0,370085,101313 -) -) -g1,13615:13851428,16994163 -) -) -g1,13615:10996008,16994163 -g1,13615:10996008,16994163 -) -) -g1,13615:10996008,16994163 -(1,13616:10996008,16994163:0,0,0 -(1,13616:10996008,16994163:0,0,0 -g1,13616:10996008,16994163 -g1,13616:10996008,16994163 -g1,13616:10996008,16994163 -g1,13616:10996008,16994163 -g1,13616:10996008,16994163 -(1,13616:10996008,16994163:0,0,0 -(1,13616:10996008,16994163:2222339,408008,104590 -(1,13616:10996008,16994163:2222339,408008,104590 -(1,13616:10996008,16994163:0,408008,104590 -r1,13658:13218347,16994163:2222339,512598,104590 -k1,13616:10996008,16994163:-2222339 -) -(1,13616:10996008,16994163:2222339,408008,104590 -k1,13616:10996008,16994163:3277 -h1,13616:13215070,16994163:0,370085,101313 -) -) -g1,13616:13218347,16994163 -) -) -g1,13616:10996008,16994163 -g1,13616:10996008,16994163 -) -) -g1,13616:10996008,16994163 -(1,13617:10996008,16994163:0,0,0 -(1,13617:10996008,16994163:0,0,0 -g1,13617:10996008,16994163 -g1,13617:10996008,16994163 -g1,13617:10996008,16994163 -g1,13617:10996008,16994163 -g1,13617:10996008,16994163 -(1,13617:10996008,16994163:0,0,0 -(1,13617:10996008,16994163:1905798,408008,104590 -(1,13617:10996008,16994163:1905798,408008,104590 -(1,13617:10996008,16994163:0,408008,104590 -r1,13658:12901806,16994163:1905798,512598,104590 -k1,13617:10996008,16994163:-1905798 -) -(1,13617:10996008,16994163:1905798,408008,104590 -k1,13617:10996008,16994163:3277 -h1,13617:12898529,16994163:0,370085,101313 -) -) -g1,13617:12901806,16994163 -) -) -g1,13617:10996008,16994163 -g1,13617:10996008,16994163 -) -) -g1,13617:10996008,16994163 -g1,13618:10996008,16994163 -g1,13618:10996008,16994163 -g1,13618:10996008,16994163 -g1,13618:10996008,16994163 -g1,13618:10996008,16994163 -g1,13618:10996008,16994163 -g1,13619:10996008,16994163 -g1,13619:10996008,16994163 -g1,13619:10996008,16994163 -g1,13619:10996008,16994163 -g1,13619:10996008,16994163 -g1,13619:10996008,16994163 -g1,13620:10996008,16994163 -g1,13620:10996008,16994163 -g1,13620:10996008,16994163 -g1,13620:10996008,16994163 -g1,13620:10996008,16994163 -g1,13620:10996008,16994163 -g1,13621:10996008,16994163 -g1,13621:10996008,16994163 -g1,13621:10996008,16994163 -g1,13621:10996008,16994163 -g1,13621:10996008,16994163 -g1,13621:10996008,16994163 -g1,13622:10996008,16994163 -g1,13622:10996008,16994163 -g1,13622:10996008,16994163 -g1,13622:10996008,16994163 -g1,13622:10996008,16994163 -g1,13622:10996008,16994163 -g1,13623:10996008,16994163 -g1,13623:10996008,16994163 -g1,13623:10996008,16994163 -g1,13623:10996008,16994163 -g1,13623:10996008,16994163 -g1,13623:10996008,16994163 -g1,13624:10996008,16994163 -g1,13624:10996008,16994163 -g1,13624:10996008,16994163 -g1,13624:10996008,16994163 -g1,13624:10996008,16994163 -g1,13624:10996008,16994163 -g1,13625:10996008,16994163 -g1,13625:10996008,16994163 -g1,13625:10996008,16994163 -g1,13625:10996008,16994163 -g1,13625:10996008,16994163 -g1,13625:10996008,16994163 -g1,13626:10996008,16994163 -g1,13626:10996008,16994163 -) -g1,13626:10996008,16994163 -) -) -g1,13628:31334081,23216657 -k1,13628:32583029,23216657:1248948 -) -(1,13631:6630773,24713505:25952256,513147,134348 -h1,13630:6630773,24713505:983040,0,0 -k1,13630:8961378,24713505:305543 -k1,13630:12292719,24713505:305544 -k1,13630:13545913,24713505:305543 -k1,13630:15736927,24713505:305543 -k1,13630:20667347,24713505:305544 -k1,13630:24414185,24713505:305543 -k1,13630:26220502,24713505:305543 -k1,13630:27473697,24713505:305544 -k1,13630:31166796,24713505:305543 -k1,13631:32583029,24713505:0 -) -(1,13631:6630773,25554993:25952256,513147,134348 -k1,13630:8233464,25554993:293937 -k1,13630:11005973,25554993:293937 -k1,13630:13484224,25554993:293936 -k1,13630:14192909,25554993:293842 -k1,13630:17247222,25554993:293937 -k1,13630:17897018,25554993:293936 -k1,13630:21828858,25554993:293937 -k1,13630:23070446,25554993:293937 -k1,13630:26587444,25554993:293937 -k1,13630:27900466,25554993:293937 -k1,13630:30889898,25554993:293936 -k1,13630:31835263,25554993:293937 -k1,13630:32583029,25554993:0 -) -(1,13631:6630773,26396481:25952256,513147,134348 -k1,13630:8592593,26396481:249364 -k1,13630:11522380,26396481:249364 -k1,13630:13165696,26396481:249365 -k1,13630:14434145,26396481:249364 -k1,13630:17379005,26396481:249364 -k1,13630:21003473,26396481:249364 -k1,13630:22271922,26396481:249364 -k1,13630:24999859,26396481:249365 -k1,13630:27433538,26396481:249364 -k1,13630:29557232,26396481:249364 -k1,13630:32583029,26396481:0 -) -(1,13631:6630773,27237969:25952256,513147,134348 -k1,13630:7624532,27237969:225022 -k1,13630:8611083,27237969:225023 -k1,13630:9855190,27237969:225022 -k1,13630:11818228,27237969:225023 -k1,13630:12702542,27237969:225022 -k1,13630:16656564,27237969:225023 -k1,13630:19790074,27237969:225022 -k1,13630:21206541,27237969:225022 -k1,13630:23525439,27237969:225023 -k1,13630:24769546,27237969:225022 -k1,13630:26375413,27237969:225023 -k1,13630:28168056,27237969:225022 -k1,13630:29412164,27237969:225023 -k1,13630:31923737,27237969:225022 -k1,13630:32583029,27237969:0 -) -(1,13631:6630773,28079457:25952256,513147,134348 -k1,13630:9629773,28079457:211754 -k1,13630:11032972,28079457:211754 -k1,13630:14387833,28079457:211754 -k1,13630:17111582,28079457:211754 -k1,13630:19801908,28079457:211754 -k1,13630:22197977,28079457:211754 -k1,13630:23606418,28079457:211754 -k1,13630:27657271,28079457:211754 -k1,13630:30894822,28079457:211754 -k1,13631:32583029,28079457:0 -) -(1,13631:6630773,28920945:25952256,505283,122846 -k1,13630:8105324,28920945:165797 -k1,13630:8887160,28920945:165798 -k1,13630:9467767,28920945:165764 -k1,13630:10625124,28920945:165797 -(1,13630:10625124,28920945:0,452978,115847 -r1,13658:13797084,28920945:3171960,568825,115847 -k1,13630:10625124,28920945:-3171960 -) -(1,13630:10625124,28920945:3171960,452978,115847 -k1,13630:10625124,28920945:3277 -h1,13630:13793807,28920945:0,411205,112570 -) -k1,13630:14136552,28920945:165798 -(1,13630:14136552,28920945:0,459977,115847 -r1,13658:18363648,28920945:4227096,575824,115847 -k1,13630:14136552,28920945:-4227096 -) -(1,13630:14136552,28920945:4227096,459977,115847 -k1,13630:14136552,28920945:3277 -h1,13630:18360371,28920945:0,411205,112570 -) -k1,13630:18703115,28920945:165797 -(1,13630:18703115,28920945:0,452978,122846 -r1,13658:23281923,28920945:4578808,575824,122846 -k1,13630:18703115,28920945:-4578808 -) -(1,13630:18703115,28920945:4578808,452978,122846 -k1,13630:18703115,28920945:3277 -h1,13630:23278646,28920945:0,411205,112570 -) -k1,13630:23621390,28920945:165797 -(1,13630:23621390,28920945:0,452978,115847 -r1,13658:26793350,28920945:3171960,568825,115847 -k1,13630:23621390,28920945:-3171960 -) -(1,13630:23621390,28920945:3171960,452978,115847 -k1,13630:23621390,28920945:3277 -h1,13630:26790073,28920945:0,411205,112570 -) -k1,13630:27132818,28920945:165798 -(1,13630:27132818,28920945:0,459977,115847 -r1,13658:29601355,28920945:2468537,575824,115847 -k1,13630:27132818,28920945:-2468537 -) -(1,13630:27132818,28920945:2468537,459977,115847 -k1,13630:27132818,28920945:3277 -h1,13630:29598078,28920945:0,411205,112570 -) -k1,13630:29940822,28920945:165797 -(1,13630:29940822,28920945:0,459977,115847 -r1,13658:32409359,28920945:2468537,575824,115847 -k1,13630:29940822,28920945:-2468537 -) -(1,13630:29940822,28920945:2468537,459977,115847 -k1,13630:29940822,28920945:3277 -h1,13630:32406082,28920945:0,411205,112570 -) -k1,13631:32583029,28920945:0 -) -(1,13631:6630773,29762433:25952256,505283,122846 -(1,13630:6630773,29762433:0,452978,122846 -r1,13658:10857869,29762433:4227096,575824,122846 -k1,13630:6630773,29762433:-4227096 -) -(1,13630:6630773,29762433:4227096,452978,122846 -k1,13630:6630773,29762433:3277 -h1,13630:10854592,29762433:0,411205,112570 -) -k1,13630:11245608,29762433:214069 -(1,13630:11245608,29762433:0,452978,122846 -r1,13658:14417568,29762433:3171960,575824,122846 -k1,13630:11245608,29762433:-3171960 -) -(1,13630:11245608,29762433:3171960,452978,122846 -k1,13630:11245608,29762433:3277 -h1,13630:14414291,29762433:0,411205,112570 -) -k1,13630:14805308,29762433:214070 -(1,13630:14805308,29762433:0,452978,115847 -r1,13658:18328980,29762433:3523672,568825,115847 -k1,13630:14805308,29762433:-3523672 -) -(1,13630:14805308,29762433:3523672,452978,115847 -k1,13630:14805308,29762433:3277 -h1,13630:18325703,29762433:0,411205,112570 -) -k1,13630:18716719,29762433:214069 -k1,13630:20122233,29762433:214069 -(1,13630:20122233,29762433:0,452978,115847 -r1,13658:23997617,29762433:3875384,568825,115847 -k1,13630:20122233,29762433:-3875384 -) -(1,13630:20122233,29762433:3875384,452978,115847 -k1,13630:20122233,29762433:3277 -h1,13630:23994340,29762433:0,411205,112570 -) -k1,13630:24385356,29762433:214069 -k1,13630:27389294,29762433:214070 -(1,13630:27389294,29762433:0,459977,115847 -r1,13658:31264678,29762433:3875384,575824,115847 -k1,13630:27389294,29762433:-3875384 -) -(1,13630:27389294,29762433:3875384,459977,115847 -k1,13630:27389294,29762433:3277 -h1,13630:31261401,29762433:0,411205,112570 -) -k1,13630:31478747,29762433:214069 -k1,13630:32583029,29762433:0 -) -(1,13631:6630773,30603921:25952256,513147,134348 -k1,13630:7607026,30603921:228487 -k1,13630:9348738,30603921:228486 -k1,13630:10228653,30603921:228487 -k1,13630:12417976,30603921:228486 -k1,13630:13929658,30603921:228487 -k1,13630:15818826,30603921:228486 -k1,13630:16945156,30603921:228487 -k1,13630:18870370,30603921:228487 -k1,13630:22124653,30603921:228486 -k1,13630:23457422,30603921:228487 -k1,13630:24433674,30603921:228486 -k1,13630:26175387,30603921:228487 -k1,13630:28101911,30603921:228486 -k1,13630:30265021,30603921:228487 -k1,13630:32583029,30603921:0 -) -(1,13631:6630773,31445409:25952256,513147,134348 -g1,13630:8223953,31445409 -(1,13630:8223953,31445409:0,452978,115847 -r1,13658:9285642,31445409:1061689,568825,115847 -k1,13630:8223953,31445409:-1061689 -) -(1,13630:8223953,31445409:1061689,452978,115847 -k1,13630:8223953,31445409:3277 -h1,13630:9282365,31445409:0,411205,112570 -) -g1,13630:9484871,31445409 -g1,13630:10366985,31445409 -(1,13630:10366985,31445409:0,452978,115847 -r1,13658:11780386,31445409:1413401,568825,115847 -k1,13630:10366985,31445409:-1413401 -) -(1,13630:10366985,31445409:1413401,452978,115847 -k1,13630:10366985,31445409:3277 -h1,13630:11777109,31445409:0,411205,112570 -) -g1,13630:12153285,31445409 -g1,13630:14487677,31445409 -g1,13630:16508807,31445409 -g1,13630:17727121,31445409 -g1,13630:21156620,31445409 -g1,13630:22743902,31445409 -g1,13630:24771585,31445409 -g1,13630:25918465,31445409 -k1,13631:32583029,31445409:4373425 -g1,13631:32583029,31445409 -) -(1,13633:6630773,32286897:25952256,513147,126483 -h1,13632:6630773,32286897:983040,0,0 -k1,13632:8426968,32286897:185320 -k1,13632:9631374,32286897:185321 -k1,13632:11183775,32286897:185320 -k1,13632:12036252,32286897:185321 -(1,13632:12036252,32286897:0,452978,115847 -r1,13658:13801365,32286897:1765113,568825,115847 -k1,13632:12036252,32286897:-1765113 -) -(1,13632:12036252,32286897:1765113,452978,115847 -k1,13632:12036252,32286897:3277 -h1,13632:13798088,32286897:0,411205,112570 -) -k1,13632:13986685,32286897:185320 -k1,13632:15191091,32286897:185321 -k1,13632:19397045,32286897:185320 -k1,13632:20241658,32286897:185321 -k1,13632:21446063,32286897:185320 -k1,13632:23619091,32286897:185321 -k1,13632:24455839,32286897:185320 -k1,13632:25388926,32286897:185321 -k1,13632:27286702,32286897:185320 -k1,13632:29545582,32286897:185321 -k1,13632:31298523,32286897:185320 -k1,13632:32583029,32286897:0 -) -(1,13633:6630773,33128385:25952256,513147,134348 -k1,13632:8429463,33128385:285464 -k1,13632:9662578,33128385:285464 -k1,13632:11760768,33128385:285464 -k1,13632:14537910,33128385:285463 -k1,13632:15776923,33128385:285464 -k1,13632:17194849,33128385:285464 -k1,13632:18572798,33128385:285464 -k1,13632:19544424,33128385:285464 -k1,13632:20600591,33128385:285464 -k1,13632:23547471,33128385:285463 -k1,13632:25767558,33128385:285464 -k1,13632:27072107,33128385:285464 -k1,13632:32583029,33128385:0 -) -(1,13633:6630773,33969873:25952256,505283,134348 -k1,13632:9652930,33969873:232289 -k1,13632:13197408,33969873:232288 -k1,13632:16022301,33969873:232289 -k1,13632:18732505,33969873:232288 -k1,13632:19580832,33969873:232289 -k1,13632:23962860,33969873:232288 -k1,13632:25386594,33969873:232289 -k1,13632:28946145,33969873:232288 -k1,13632:30375121,33969873:232289 -k1,13633:32583029,33969873:0 -) -(1,13633:6630773,34811361:25952256,513147,134348 -g1,13632:9158496,34811361 -g1,13632:13168644,34811361 -g1,13632:13899370,34811361 -g1,13632:15793360,34811361 -k1,13633:32583029,34811361:15854470 -g1,13633:32583029,34811361 -) -(1,13634:6630773,35652849:25952256,0,0 -h1,13634:6630773,35652849:983040,0,0 -k1,13634:32583029,35652849:24969216 -g1,13634:32583029,35652849 -) -(1,13636:16125732,36682469:16457297,964084,570224 -(1,13636:16125732,36682469:6962339,964084,570224 -h1,13636:16125732,36682469:0,0,0 -g1,13636:16759335,36682469 -g1,13636:17509592,36682469 -(1,13636:17509592,36682469:1646264,964084,479774 -(1,13636:17509592,36682469:1646264,964084,479774 -h1,13636:17509592,36682469:78643,0,0 -[1,13636:17588235,36682469:1488978,964084,479774 -(1,13636:17588235,36223668:1488978,505283,95027 -) -(1,13636:17588235,37154379:1488978,505283,7864 -k1,13636:17962118,37154379:373883 -k1,13636:19077213,37154379:373883 -) -] -h1,13636:19077213,36682469:78643,0,0 -) -) -g1,13636:19337916,36682469 -g1,13636:20088173,36682469 -(1,13636:20088173,36682469:2999898,964084,570224 -(1,13636:20088173,36682469:2999898,964084,570224 -h1,13636:20088173,36682469:78643,0,0 -[1,13636:20166816,36682469:2842612,964084,570224 -(1,13636:20166816,36223668:2842612,505283,103819 -k1,13636:20324523,36223668:157707 -(1,13636:20851432,36321982:971374,248644,5505 -) -k1,13636:23009428,36223668:157707 -) -(1,13636:20166816,37154379:2842612,505283,98314 -(1,13636:20693725,37252693:427295,331678,0 -) -g1,13636:21266668,37154379 -g1,13636:21980513,37154379 -) -] -h1,13636:23009428,36682469:78643,0,0 -) -) -) -(1,13636:31198253,36682469:1384776,505283,95026 -(1,13636:31198253,36682469:1384776,505283,95026 -) -) -) -(1,13639:6630773,38224592:25952256,513147,126483 -h1,13638:6630773,38224592:983040,0,0 -k1,13638:9111608,38224592:301108 -k1,13638:12108212,38224592:301108 -k1,13638:14092285,38224592:301108 -k1,13638:15181791,38224592:301108 -k1,13638:17220914,38224592:301108 -k1,13638:19089643,38224592:301108 -k1,13638:22343803,38224592:301108 -k1,13638:23836356,38224592:301108 -k1,13638:26986314,38224592:301108 -k1,13638:29120464,38224592:301108 -k1,13638:30989193,38224592:301108 -k1,13638:32583029,38224592:0 -) -(1,13639:6630773,39066080:25952256,513147,134348 -k1,13638:9729069,39066080:250756 -k1,13638:11171269,39066080:250755 -k1,13638:13472647,39066080:250756 -k1,13638:15698311,39066080:251064 -k1,13638:16436603,39066080:250704 -k1,13638:20526457,39066080:250755 -k1,13638:23472709,39066080:250756 -k1,13638:28147144,39066080:250755 -k1,13638:29416985,39066080:250756 -k1,13639:32583029,39066080:0 -) -(1,13639:6630773,39907568:25952256,505283,126483 -k1,13638:9256586,39907568:280935 -k1,13638:12327390,39907568:280936 -k1,13638:13139822,39907568:280935 -k1,13638:16204727,39907568:280936 -k1,13638:17101700,39907568:280935 -k1,13638:17797397,39907568:280854 -k1,13638:19964458,39907568:280935 -k1,13638:21264478,39907568:280935 -k1,13638:23283429,39907568:280936 -(1,13638:23283429,39907568:0,452978,115847 -r1,13658:26807101,39907568:3523672,568825,115847 -k1,13638:23283429,39907568:-3523672 -) -(1,13638:23283429,39907568:3523672,452978,115847 -k1,13638:23283429,39907568:3277 -h1,13638:26803824,39907568:0,411205,112570 -) -k1,13638:27088036,39907568:280935 -k1,13638:27088036,39907568:0 -k1,13638:27542642,39907568:280936 -k1,13638:28777126,39907568:280935 -k1,13638:30190524,39907568:280936 -k1,13638:31563944,39907568:280935 -k1,13639:32583029,39907568:0 -) -(1,13639:6630773,40749056:25952256,505283,115847 -(1,13638:6630773,40749056:0,452978,115847 -r1,13658:9802733,40749056:3171960,568825,115847 -k1,13638:6630773,40749056:-3171960 -) -(1,13638:6630773,40749056:3171960,452978,115847 -k1,13638:6630773,40749056:3277 -h1,13638:9799456,40749056:0,411205,112570 -) -g1,13638:10001962,40749056 -g1,13638:11590554,40749056 -k1,13639:32583028,40749056:19884260 -g1,13639:32583028,40749056 -) -v1,13641:6630773,41939522:0,393216,0 -(1,13649:6630773,43555517:25952256,2009211,196608 -g1,13649:6630773,43555517 -g1,13649:6630773,43555517 -g1,13649:6434165,43555517 -(1,13649:6434165,43555517:0,2009211,196608 -r1,13658:32779637,43555517:26345472,2205819,196608 -k1,13649:6434165,43555517:-26345472 -) -(1,13649:6434165,43555517:26345472,2009211,196608 -[1,13649:6630773,43555517:25952256,1812603,0 -(1,13643:6630773,42147140:25952256,404226,101187 -(1,13642:6630773,42147140:0,0,0 -g1,13642:6630773,42147140 -g1,13642:6630773,42147140 -g1,13642:6303093,42147140 -(1,13642:6303093,42147140:0,0,0 -) -g1,13642:6630773,42147140 -) -k1,13643:6630773,42147140:0 -h1,13643:11372958,42147140:0,0,0 -k1,13643:32583030,42147140:21210072 -g1,13643:32583030,42147140 -) -(1,13644:6630773,42813318:25952256,404226,101187 -h1,13644:6630773,42813318:0,0,0 -k1,13644:6630773,42813318:0 -h1,13644:11689103,42813318:0,0,0 -k1,13644:32583029,42813318:20893926 -g1,13644:32583029,42813318 -) -(1,13648:6630773,43479496:25952256,404226,76021 -(1,13646:6630773,43479496:0,0,0 -g1,13646:6630773,43479496 -g1,13646:6630773,43479496 -g1,13646:6303093,43479496 -(1,13646:6303093,43479496:0,0,0 -) -g1,13646:6630773,43479496 -) -g1,13648:7579210,43479496 -g1,13648:8843793,43479496 -g1,13648:11056813,43479496 -g1,13648:11372959,43479496 -g1,13648:13585979,43479496 -g1,13648:13902125,43479496 -h1,13648:16115145,43479496:0,0,0 -k1,13648:32583029,43479496:16467884 -g1,13648:32583029,43479496 -) -] -) -g1,13649:32583029,43555517 -g1,13649:6630773,43555517 -g1,13649:6630773,43555517 -g1,13649:32583029,43555517 -g1,13649:32583029,43555517 -) -h1,13649:6630773,43752125:0,0,0 -v1,13653:6630773,45466879:0,393216,0 -] -(1,13658:32583029,45706769:0,0,0 -g1,13658:32583029,45706769 -) -) -] -(1,13658:6630773,47279633:25952256,0,0 -h1,13658:6630773,47279633:25952256,0,0 +] +[1,13246:3078558,4812305:0,0,0 +(1,13246:3078558,49800853:0,16384,2228224 +g1,13246:29030814,49800853 +g1,13246:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,13246:36151628,51504789:16384,1179648,0 +) +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 +) +] +) +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,13246:37855564,49800853:1179648,16384,0 +) +) +k1,13246:3078556,49800853:-34777008 +) +] +g1,13246:6630773,4812305 +g1,13246:6630773,4812305 +g1,13246:8843268,4812305 +g1,13246:10880782,4812305 +g1,13246:13281365,4812305 +k1,13246:31387653,4812305:18106288 +) +) +] +[1,13246:6630773,45706769:25952256,40108032,0 +(1,13246:6630773,45706769:25952256,40108032,0 +(1,13246:6630773,45706769:0,0,0 +g1,13246:6630773,45706769 +) +[1,13246:6630773,45706769:25952256,40108032,0 +v1,13160:6630773,6254097:0,393216,0 +(1,13160:6630773,7365591:25952256,1504710,0 +g1,13160:6630773,7365591 +g1,13160:6237557,7365591 +r1,13246:6368629,7365591:131072,1504710,0 +g1,13160:6567858,7365591 +g1,13160:6764466,7365591 +[1,13160:6764466,7365591:25818563,1504710,0 +(1,13160:6764466,6374028:25818563,513147,138281 +k1,13159:11159251,6374028:169679 +k1,13159:12614745,6374028:169678 +k1,13159:13803509,6374028:169679 +k1,13159:17109741,6374028:169679 +$1,13159:17109741,6374028 +$1,13159:17577668,6374028 +k1,13159:20144653,6374028:169678 +k1,13159:21505777,6374028:169679 +k1,13159:23277155,6374028:169678 +k1,13159:27222363,6374028:169679 +k1,13159:28722423,6374028:169679 +k1,13159:29911186,6374028:169678 +k1,13159:31923737,6374028:169679 +k1,13159:32583029,6374028:0 +) +(1,13160:6764466,7239108:25818563,505283,126483 +g1,13159:7982780,7239108 +g1,13159:9703755,7239108 +g1,13159:12083367,7239108 +g1,13159:13030362,7239108 +k1,13160:32583029,7239108:15788934 +g1,13160:32583029,7239108 +) +] +g1,13160:32583029,7365591 +) +h1,13160:6630773,7365591:0,0,0 +(1,13163:6630773,8230671:25952256,513147,134348 +h1,13162:6630773,8230671:983040,0,0 +k1,13162:9032558,8230671:222058 +k1,13162:10856316,8230671:222058 +k1,13162:16090567,8230671:222057 +k1,13162:17550600,8230671:222058 +k1,13162:18431950,8230671:222058 +k1,13162:20835702,8230671:222058 +k1,13162:21413619,8230671:222057 +k1,13162:24398020,8230671:222058 +k1,13162:26885658,8230671:222058 +k1,13162:28055367,8230671:222058 +k1,13162:28633284,8230671:222057 +k1,13162:30738191,8230671:222058 +k1,13162:32583029,8230671:0 +) +(1,13163:6630773,9095751:25952256,513147,134348 +g1,13162:7489294,9095751 +g1,13162:9676230,9095751 +g1,13162:10893233,9095751 +g1,13162:11623959,9095751 +g1,13162:12584716,9095751 +g1,13162:14965639,9095751 +g1,13162:15579711,9095751 +g1,13162:17861674,9095751 +(1,13162:17861674,9095751:0,414482,115847 +r1,13246:21033634,9095751:3171960,530329,115847 +k1,13162:17861674,9095751:-3171960 +) +(1,13162:17861674,9095751:3171960,414482,115847 +k1,13162:17861674,9095751:3277 +h1,13162:21030357,9095751:0,411205,112570 +) +g1,13162:21406533,9095751 +g1,13162:23491233,9095751 +g1,13162:24558814,9095751 +g1,13162:26155926,9095751 +g1,13162:27730756,9095751 +k1,13163:32583029,9095751:3096563 +g1,13163:32583029,9095751 +) +v1,13165:6630773,9780606:0,393216,0 +(1,13174:6630773,12300320:25952256,2912930,196608 +g1,13174:6630773,12300320 +g1,13174:6630773,12300320 +g1,13174:6434165,12300320 +(1,13174:6434165,12300320:0,2912930,196608 +r1,13246:32779637,12300320:26345472,3109538,196608 +k1,13174:6434165,12300320:-26345472 +) +(1,13174:6434165,12300320:26345472,2912930,196608 +[1,13174:6630773,12300320:25952256,2716322,0 +(1,13167:6630773,10008437:25952256,424439,106246 +(1,13166:6630773,10008437:0,0,0 +g1,13166:6630773,10008437 +g1,13166:6630773,10008437 +g1,13166:6303093,10008437 +(1,13166:6303093,10008437:0,0,0 +) +g1,13166:6630773,10008437 +) +k1,13167:6630773,10008437:0 +h1,13167:13269852,10008437:0,0,0 +k1,13167:32583028,10008437:19313176 +g1,13167:32583028,10008437 +) +(1,13173:6630773,10824364:25952256,431045,33029 +(1,13169:6630773,10824364:0,0,0 +g1,13169:6630773,10824364 +g1,13169:6630773,10824364 +g1,13169:6303093,10824364 +(1,13169:6303093,10824364:0,0,0 +) +g1,13169:6630773,10824364 +) +g1,13173:7626635,10824364 +h1,13173:10946174,10824364:0,0,0 +k1,13173:32583030,10824364:21636856 +g1,13173:32583030,10824364 +) +(1,13173:6630773,11509219:25952256,424439,6605 +h1,13173:6630773,11509219:0,0,0 +g1,13173:7626635,11509219 +g1,13173:7958589,11509219 +g1,13173:8290543,11509219 +g1,13173:8622497,11509219 +g1,13173:8954451,11509219 +g1,13173:9286405,11509219 +g1,13173:9618359,11509219 +g1,13173:9950313,11509219 +g1,13173:10282267,11509219 +g1,13173:13601806,11509219 +g1,13173:13933760,11509219 +g1,13173:14265714,11509219 +g1,13173:14597668,11509219 +g1,13173:14929622,11509219 +g1,13173:15261576,11509219 +g1,13173:15593530,11509219 +g1,13173:15925484,11509219 +g1,13173:16257438,11509219 +g1,13173:16589392,11509219 +g1,13173:16921346,11509219 +h1,13173:19245024,11509219:0,0,0 +k1,13173:32583029,11509219:13338005 +g1,13173:32583029,11509219 +) +(1,13173:6630773,12194074:25952256,424439,106246 +h1,13173:6630773,12194074:0,0,0 +g1,13173:7626635,12194074 +g1,13173:13601806,12194074 +g1,13173:13933760,12194074 +g1,13173:14265714,12194074 +g1,13173:14597668,12194074 +g1,13173:14929622,12194074 +g1,13173:15261576,12194074 +h1,13173:19245023,12194074:0,0,0 +k1,13173:32583029,12194074:13338006 +g1,13173:32583029,12194074 +) +] +) +g1,13174:32583029,12300320 +g1,13174:6630773,12300320 +g1,13174:6630773,12300320 +g1,13174:32583029,12300320 +g1,13174:32583029,12300320 +) +h1,13174:6630773,12496928:0,0,0 +(1,13178:6630773,13362008:25952256,513147,134348 +h1,13177:6630773,13362008:983040,0,0 +k1,13177:8978054,13362008:167554 +k1,13177:11228341,13362008:167553 +k1,13177:11927392,13362008:167554 +k1,13177:13029488,13362008:167553 +k1,13177:13848470,13362008:167554 +k1,13177:14371884,13362008:167554 +k1,13177:16698193,13362008:167553 +k1,13177:19840426,13362008:167554 +k1,13177:21985856,13362008:167553 +k1,13177:22812702,13362008:167554 +k1,13177:24993522,13362008:167554 +k1,13177:26507185,13362008:167553 +k1,13177:28068690,13362008:167554 +k1,13177:29255328,13362008:167553 +k1,13177:30729015,13362008:167554 +k1,13177:32583029,13362008:0 +) +(1,13178:6630773,14227088:25952256,513147,134348 +k1,13177:8969205,14227088:179676 +(1,13177:8969205,14227088:0,452978,115847 +r1,13246:12141165,14227088:3171960,568825,115847 +k1,13177:8969205,14227088:-3171960 +) +(1,13177:8969205,14227088:3171960,452978,115847 +k1,13177:8969205,14227088:3277 +h1,13177:12137888,14227088:0,411205,112570 +) +k1,13177:12320841,14227088:179676 +k1,13177:14423344,14227088:179677 +k1,13177:15622105,14227088:179676 +k1,13177:17539796,14227088:179676 +k1,13177:18378764,14227088:179676 +k1,13177:19577526,14227088:179677 +k1,13177:22452698,14227088:179676 +k1,13177:24145600,14227088:179676 +k1,13177:26023314,14227088:179676 +k1,13177:27222076,14227088:179677 +k1,13177:31167451,14227088:179676 +k1,13178:32583029,14227088:0 +) +(1,13178:6630773,15092168:25952256,513147,115847 +k1,13177:8161784,15092168:222257 +k1,13177:8915537,15092168:222256 +k1,13177:9908497,15092168:222257 +k1,13177:13467846,15092168:222256 +k1,13177:15584093,15092168:222257 +k1,13177:18363565,15092168:222257 +k1,13177:19979772,15092168:222256 +(1,13177:19979772,15092168:0,459977,115847 +r1,13246:22800021,15092168:2820249,575824,115847 +k1,13177:19979772,15092168:-2820249 +) +(1,13177:19979772,15092168:2820249,459977,115847 +k1,13177:19979772,15092168:3277 +h1,13177:22796744,15092168:0,411205,112570 +) +k1,13177:23229372,15092168:222257 +k1,13177:24643073,15092168:222256 +k1,13177:25884415,15092168:222257 +k1,13177:28348002,15092168:222256 +k1,13177:30424273,15092168:222257 +k1,13178:32583029,15092168:0 +) +(1,13178:6630773,15957248:25952256,513147,134348 +(1,13177:6630773,15957248:0,452978,115847 +r1,13246:9099310,15957248:2468537,568825,115847 +k1,13177:6630773,15957248:-2468537 +) +(1,13177:6630773,15957248:2468537,452978,115847 +k1,13177:6630773,15957248:3277 +h1,13177:9096033,15957248:0,411205,112570 +) +k1,13177:9461185,15957248:188205 +k1,13177:11572216,15957248:188205 +k1,13177:12779505,15957248:188204 +k1,13177:14705725,15957248:188205 +k1,13177:15553222,15957248:188205 +k1,13177:16760512,15957248:188205 +k1,13177:19644212,15957248:188204 +k1,13177:21345643,15957248:188205 +k1,13177:23231886,15957248:188205 +k1,13177:24439176,15957248:188205 +k1,13177:28393079,15957248:188204 +k1,13177:31092624,15957248:188205 +k1,13177:31812326,15957248:188205 +k1,13177:32583029,15957248:0 +) +(1,13178:6630773,16822328:25952256,513147,115847 +g1,13177:9337409,16822328 +g1,13177:11430628,16822328 +g1,13177:14187072,16822328 +g1,13177:15780252,16822328 +(1,13177:15780252,16822328:0,452978,115847 +r1,13246:18952212,16822328:3171960,568825,115847 +k1,13177:15780252,16822328:-3171960 +) +(1,13177:15780252,16822328:3171960,452978,115847 +k1,13177:15780252,16822328:3277 +h1,13177:18948935,16822328:0,411205,112570 +) +k1,13178:32583029,16822328:13250053 +g1,13178:32583029,16822328 +) +(1,13180:6630773,17687408:25952256,505283,126483 +h1,13179:6630773,17687408:983040,0,0 +g1,13179:8282935,17687408 +g1,13179:9013661,17687408 +g1,13179:10498706,17687408 +g1,13179:13327895,17687408 +g1,13179:14178552,17687408 +g1,13179:16198371,17687408 +g1,13179:17416685,17687408 +g1,13179:20247185,17687408 +g1,13179:21097842,17687408 +g1,13179:22044837,17687408 +g1,13179:23757292,17687408 +g1,13179:24572559,17687408 +g1,13179:25790873,17687408 +g1,13179:27089796,17687408 +g1,13179:27940453,17687408 +(1,13179:27940453,17687408:0,452978,115847 +r1,13246:29705566,17687408:1765113,568825,115847 +k1,13179:27940453,17687408:-1765113 +) +(1,13179:27940453,17687408:1765113,452978,115847 +k1,13179:27940453,17687408:3277 +h1,13179:29702289,17687408:0,411205,112570 +) +g1,13179:29904795,17687408 +g1,13179:30786909,17687408 +(1,13179:30786909,17687408:0,452978,115847 +r1,13246:32200310,17687408:1413401,568825,115847 +k1,13179:30786909,17687408:-1413401 +) +(1,13179:30786909,17687408:1413401,452978,115847 +k1,13179:30786909,17687408:3277 +h1,13179:32197033,17687408:0,411205,112570 +) +k1,13180:32583029,17687408:209049 +g1,13180:32583029,17687408 +) +v1,13182:6630773,18372263:0,393216,0 +(1,13189:6630773,20767511:25952256,2788464,196608 +g1,13189:6630773,20767511 +g1,13189:6630773,20767511 +g1,13189:6434165,20767511 +(1,13189:6434165,20767511:0,2788464,196608 +r1,13246:32779637,20767511:26345472,2985072,196608 +k1,13189:6434165,20767511:-26345472 +) +(1,13189:6434165,20767511:26345472,2788464,196608 +[1,13189:6630773,20767511:25952256,2591856,0 +(1,13184:6630773,18606700:25952256,431045,106246 +(1,13183:6630773,18606700:0,0,0 +g1,13183:6630773,18606700 +g1,13183:6630773,18606700 +g1,13183:6303093,18606700 +(1,13183:6303093,18606700:0,0,0 +) +g1,13183:6630773,18606700 +) +g1,13184:9286405,18606700 +g1,13184:10282267,18606700 +g1,13184:13269853,18606700 +g1,13184:13933761,18606700 +g1,13184:16257439,18606700 +g1,13184:17917209,18606700 +g1,13184:18581117,18606700 +k1,13184:18581117,18606700:0 +h1,13184:22896518,18606700:0,0,0 +k1,13184:32583029,18606700:9686511 +g1,13184:32583029,18606700 +) +(1,13185:6630773,19291555:25952256,424439,106246 +h1,13185:6630773,19291555:0,0,0 +g1,13185:6962727,19291555 +g1,13185:7294681,19291555 +g1,13185:7626635,19291555 +g1,13185:7958589,19291555 +g1,13185:8290543,19291555 +g1,13185:8622497,19291555 +g1,13185:8954451,19291555 +g1,13185:9286405,19291555 +g1,13185:9618359,19291555 +g1,13185:9950313,19291555 +g1,13185:10282267,19291555 +g1,13185:10614221,19291555 +g1,13185:10946175,19291555 +g1,13185:11278129,19291555 +g1,13185:14597668,19291555 +g1,13185:15261576,19291555 +g1,13185:18913070,19291555 +g1,13185:19576978,19291555 +h1,13185:25220195,19291555:0,0,0 +k1,13185:32583029,19291555:7362834 +g1,13185:32583029,19291555 +) +(1,13186:6630773,19976410:25952256,431045,106246 +h1,13186:6630773,19976410:0,0,0 +g1,13186:8954451,19976410 +g1,13186:9286405,19976410 +g1,13186:10282267,19976410 +g1,13186:13269853,19976410 +g1,13186:13933761,19976410 +g1,13186:16257439,19976410 +g1,13186:17917209,19976410 +g1,13186:18581117,19976410 +k1,13186:18581117,19976410:0 +h1,13186:22896518,19976410:0,0,0 +k1,13186:32583029,19976410:9686511 +g1,13186:32583029,19976410 +) +(1,13187:6630773,20661265:25952256,424439,106246 +h1,13187:6630773,20661265:0,0,0 +g1,13187:6962727,20661265 +g1,13187:7294681,20661265 +g1,13187:7626635,20661265 +g1,13187:7958589,20661265 +g1,13187:8290543,20661265 +g1,13187:8622497,20661265 +g1,13187:8954451,20661265 +g1,13187:9286405,20661265 +g1,13187:9618359,20661265 +g1,13187:9950313,20661265 +g1,13187:10282267,20661265 +g1,13187:10614221,20661265 +g1,13187:10946175,20661265 +g1,13187:11278129,20661265 +g1,13187:14597668,20661265 +g1,13187:15261576,20661265 +g1,13187:18913070,20661265 +g1,13187:19576978,20661265 +h1,13187:23228471,20661265:0,0,0 +k1,13187:32583029,20661265:9354558 +g1,13187:32583029,20661265 +) +] +) +g1,13189:32583029,20767511 +g1,13189:6630773,20767511 +g1,13189:6630773,20767511 +g1,13189:32583029,20767511 +g1,13189:32583029,20767511 +) +h1,13189:6630773,20964119:0,0,0 +(1,13193:6630773,21829199:25952256,513147,126483 +h1,13192:6630773,21829199:983040,0,0 +k1,13192:12333180,21829199:262263 +k1,13192:13254735,21829199:262263 +k1,13192:14648805,21829199:262263 +k1,13192:17465661,21829199:262263 +k1,13192:18828929,21829199:262263 +k1,13192:19742620,21829199:262263 +k1,13192:21357546,21829199:262263 +k1,13192:22887275,21829199:262263 +k1,13192:25653669,21829199:262263 +k1,13192:27612659,21829199:262263 +k1,13192:31391584,21829199:262263 +k1,13192:32583029,21829199:0 +) +(1,13193:6630773,22694279:25952256,513147,126483 +k1,13192:8515077,22694279:173159 +k1,13192:10868619,22694279:173159 +k1,13192:12108049,22694279:173159 +k1,13192:13028974,22694279:173159 +k1,13192:16244314,22694279:173159 +k1,13192:16883434,22694279:173159 +k1,13192:19491230,22694279:173133 +k1,13192:21530199,22694279:173159 +k1,13192:24465701,22694279:173159 +k1,13192:26812034,22694279:173159 +k1,13192:27601231,22694279:173159 +k1,13192:29208318,22694279:173159 +k1,13192:29796294,22694279:173133 +k1,13192:31160898,22694279:173159 +k1,13192:32583029,22694279:0 +) +(1,13193:6630773,23559359:25952256,513147,134348 +k1,13192:7578630,23559359:264972 +k1,13192:9002213,23559359:264906 +k1,13192:10961946,23559359:264972 +k1,13192:12246003,23559359:264972 +k1,13192:15273318,23559359:264972 +k1,13192:17254678,23559359:264972 +k1,13192:18178943,23559359:264973 +k1,13192:20139331,23559359:264972 +k1,13192:21063595,23559359:264972 +k1,13192:23799930,23559359:264972 +k1,13192:25751799,23559359:264972 +k1,13192:27213458,23559359:264972 +k1,13192:31923737,23559359:264972 +k1,13192:32583029,23559359:0 +) +(1,13193:6630773,24424439:25952256,505283,134348 +k1,13192:9274346,24424439:208910 +k1,13192:10292636,24424439:208920 +k1,13192:12920490,24424439:208920 +k1,13192:14413916,24424439:208920 +k1,13192:15614396,24424439:208920 +k1,13192:16889587,24424439:208920 +k1,13192:20592231,24424439:208920 +k1,13192:21933613,24424439:208920 +k1,13192:24514280,24424439:208919 +k1,13192:25532570,24424439:208920 +k1,13192:27626961,24424439:208920 +k1,13192:29221967,24424439:208920 +k1,13192:29962384,24424439:208920 +k1,13192:31858201,24424439:208920 +k1,13192:32583029,24424439:0 +) +(1,13193:6630773,25289519:25952256,513147,126483 +g1,13192:7849087,25289519 +g1,13192:10810659,25289519 +g1,13192:13183062,25289519 +g1,13192:14373851,25289519 +g1,13192:15639351,25289519 +g1,13192:19353931,25289519 +g1,13192:23853633,25289519 +g1,13192:25519558,25289519 +g1,13192:27416825,25289519 +k1,13193:32583029,25289519:2230191 +g1,13193:32583029,25289519 +) +(1,13195:6630773,26154599:25952256,513147,115847 +h1,13194:6630773,26154599:983040,0,0 +k1,13194:8390337,26154599:148689 +(1,13194:8390337,26154599:0,459977,115847 +r1,13246:10858874,26154599:2468537,575824,115847 +k1,13194:8390337,26154599:-2468537 +) +(1,13194:8390337,26154599:2468537,459977,115847 +k1,13194:8390337,26154599:3277 +h1,13194:10855597,26154599:0,411205,112570 +) +k1,13194:11007562,26154599:148688 +k1,13194:12024603,26154599:148689 +k1,13194:13686517,26154599:148688 +(1,13194:13686517,26154599:0,452978,115847 +r1,13246:19672172,26154599:5985655,568825,115847 +k1,13194:13686517,26154599:-5985655 +) +(1,13194:13686517,26154599:5985655,452978,115847 +k1,13194:13686517,26154599:3277 +h1,13194:19668895,26154599:0,411205,112570 +) +k1,13194:19994531,26154599:148689 +k1,13194:21560107,26154599:148688 +k1,13194:24670368,26154599:148689 +k1,13194:25766707,26154599:148688 +k1,13194:29108310,26154599:148689 +k1,13194:32583029,26154599:0 +) +(1,13195:6630773,27019679:25952256,513147,134348 +k1,13194:7842205,27019679:219872 +k1,13194:9639529,27019679:219872 +k1,13194:12148575,27019679:219873 +(1,13194:12148575,27019679:0,435480,115847 +r1,13246:14265400,27019679:2116825,551327,115847 +k1,13194:12148575,27019679:-2116825 +) +(1,13194:12148575,27019679:2116825,435480,115847 +k1,13194:12148575,27019679:3277 +h1,13194:14262123,27019679:0,411205,112570 +) +k1,13194:14485272,27019679:219872 +k1,13194:16700715,27019679:219872 +k1,13194:17378684,27019679:219872 +k1,13194:18284719,27019679:219873 +k1,13194:19523676,27019679:219872 +k1,13194:22031410,27019679:219872 +k1,13194:22934167,27019679:219872 +k1,13194:26306976,27019679:219872 +k1,13194:27718294,27019679:219873 +k1,13194:29042448,27019679:219872 +k1,13194:30010086,27019679:219872 +k1,13194:32583029,27019679:0 +) +(1,13195:6630773,27884759:25952256,513147,134348 +k1,13194:8442691,27884759:244297 +k1,13194:9706073,27884759:244297 +k1,13194:13103307,27884759:244297 +k1,13194:16309176,27884759:244297 +k1,13194:18814465,27884759:244297 +k1,13194:20100784,27884759:244297 +k1,13194:21548323,27884759:244298 +k1,13194:24097521,27884759:244297 +k1,13194:25996602,27884759:244297 +k1,13194:26772396,27884759:244297 +k1,13194:27826063,27884759:244297 +k1,13194:29274256,27884759:244297 +k1,13194:30466204,27884759:244297 +(1,13194:30466204,27884759:0,435480,115847 +r1,13246:32583029,27884759:2116825,551327,115847 +k1,13194:30466204,27884759:-2116825 +) +(1,13194:30466204,27884759:2116825,435480,115847 +k1,13194:30466204,27884759:3277 +h1,13194:32579752,27884759:0,411205,112570 +) +k1,13194:32583029,27884759:0 +) +(1,13195:6630773,28749839:25952256,513147,134348 +k1,13194:7435859,28749839:189048 +k1,13194:8643992,28749839:189048 +k1,13194:11823447,28749839:189047 +k1,13194:13751821,28749839:189048 +k1,13194:15416084,28749839:189048 +k1,13194:16264424,28749839:189048 +k1,13194:17472557,28749839:189048 +k1,13194:19195802,28749839:189047 +(1,13194:19195802,28749839:0,435480,115847 +r1,13246:21312627,28749839:2116825,551327,115847 +k1,13194:19195802,28749839:-2116825 +) +(1,13194:19195802,28749839:2116825,435480,115847 +k1,13194:19195802,28749839:3277 +h1,13194:21309350,28749839:0,411205,112570 +) +k1,13194:21501675,28749839:189048 +k1,13194:22342151,28749839:189048 +(1,13194:22342151,28749839:0,435480,115847 +r1,13246:24458976,28749839:2116825,551327,115847 +k1,13194:22342151,28749839:-2116825 +) +(1,13194:22342151,28749839:2116825,435480,115847 +k1,13194:22342151,28749839:3277 +h1,13194:24455699,28749839:0,411205,112570 +) +k1,13194:24648024,28749839:189048 +k1,13194:25368569,28749839:189048 +k1,13194:25913476,28749839:189047 +k1,13194:27293969,28749839:189048 +k1,13194:30886302,28749839:189048 +k1,13194:32583029,28749839:0 +) +(1,13195:6630773,29614919:25952256,505283,134348 +g1,13194:10304721,29614919 +g1,13194:14263095,29614919 +g1,13194:16751497,29614919 +(1,13194:16751497,29614919:0,435480,115847 +r1,13246:18868322,29614919:2116825,551327,115847 +k1,13194:16751497,29614919:-2116825 +) +(1,13194:16751497,29614919:2116825,435480,115847 +k1,13194:16751497,29614919:3277 +h1,13194:18865045,29614919:0,411205,112570 +) +k1,13195:32583029,29614919:13541037 +g1,13195:32583029,29614919 +) +v1,13197:6630773,30479999:0,393216,0 +(1,13198:6630773,37031084:25952256,6944301,0 +g1,13198:6630773,37031084 +g1,13198:6237557,37031084 +r1,13246:6368629,37031084:131072,6944301,0 +g1,13198:6567858,37031084 +g1,13198:6764466,37031084 +[1,13198:6764466,37031084:25818563,6944301,0 +(1,13198:6764466,30841176:25818563,754393,260573 +(1,13197:6764466,30841176:0,754393,260573 +r1,13246:8010564,30841176:1246098,1014966,260573 +k1,13197:6764466,30841176:-1246098 +) +(1,13197:6764466,30841176:1246098,754393,260573 +) +k1,13197:8241346,30841176:230782 +k1,13197:8569026,30841176:327680 +k1,13197:11552976,30841176:230783 +k1,13197:12775318,30841176:230782 +k1,13197:15837911,30841176:230782 +k1,13197:16754855,30841176:230782 +k1,13197:19719145,30841176:230783 +k1,13197:21234433,30841176:230782 +k1,13197:22456775,30841176:230782 +k1,13197:26479470,30841176:230782 +k1,13197:27471781,30841176:230783 +k1,13197:30728360,30841176:230782 +k1,13197:32583029,30841176:0 +) +(1,13198:6764466,31706256:25818563,513147,115847 +k1,13197:7844000,31706256:270164 +k1,13197:9133249,31706256:270164 +k1,13197:11889194,31706256:270164 +k1,13197:12818650,31706256:270164 +k1,13197:14881224,31706256:270164 +k1,13197:15767427,31706256:270165 +k1,13197:16393451,31706256:270164 +k1,13197:18731276,31706256:270164 +k1,13197:22830053,31706256:270164 +k1,13197:25795713,31706256:270164 +(1,13197:25795713,31706256:0,452978,115847 +r1,13246:31781368,31706256:5985655,568825,115847 +k1,13197:25795713,31706256:-5985655 +) +(1,13197:25795713,31706256:5985655,452978,115847 +k1,13197:25795713,31706256:3277 +h1,13197:31778091,31706256:0,411205,112570 +) +k1,13197:32051532,31706256:270164 +k1,13197:32583029,31706256:0 +) +(1,13198:6764466,32571336:25818563,513147,115847 +k1,13197:8016006,32571336:232455 +k1,13197:10514041,32571336:232455 +k1,13197:11362535,32571336:232456 +k1,13197:12009800,32571336:232422 +k1,13197:13189906,32571336:232455 +k1,13197:16759454,32571336:232455 +k1,13197:19389871,32571336:232455 +k1,13197:23329042,32571336:232455 +(1,13197:23329042,32571336:0,452978,115847 +r1,13246:27204426,32571336:3875384,568825,115847 +k1,13197:23329042,32571336:-3875384 +) +(1,13197:23329042,32571336:3875384,452978,115847 +k1,13197:23329042,32571336:3277 +h1,13197:27201149,32571336:0,411205,112570 +) +k1,13197:27436882,32571336:232456 +k1,13197:29975549,32571336:232455 +k1,13197:31227089,32571336:232455 +k1,13198:32583029,32571336:0 +) +(1,13198:6764466,33436416:25818563,513147,126483 +k1,13197:8780113,33436416:197023 +k1,13197:10490361,33436416:197022 +k1,13197:11303422,33436416:197023 +k1,13197:13252221,33436416:197022 +k1,13197:14607919,33436416:197021 +k1,13197:18564741,33436416:197022 +k1,13197:19953209,33436416:197023 +(1,13197:19953209,33436416:0,452978,115847 +r1,13246:25235440,33436416:5282231,568825,115847 +k1,13197:19953209,33436416:-5282231 +) +(1,13197:19953209,33436416:5282231,452978,115847 +k1,13197:19953209,33436416:3277 +h1,13197:25232163,33436416:0,411205,112570 +) +k1,13197:25432462,33436416:197022 +k1,13197:28288281,33436416:197023 +k1,13197:29504388,33436416:197022 +k1,13197:31966991,33436416:197023 +k1,13198:32583029,33436416:0 +) +(1,13198:6764466,34301496:25818563,513147,126483 +k1,13197:7477497,34301496:186122 +k1,13197:10747088,34301496:186122 +k1,13197:13304958,34301496:186122 +k1,13197:14300450,34301496:186122 +k1,13197:15505658,34301496:186123 +k1,13197:17431106,34301496:186122 +k1,13197:18276520,34301496:186122 +k1,13197:20356632,34301496:186122 +k1,13197:22335164,34301496:186122 +k1,13197:23246114,34301496:186122 +k1,13197:23890333,34301496:186122 +k1,13197:24607952,34301496:186122 +k1,13197:26926617,34301496:186123 +k1,13197:27764167,34301496:186122 +k1,13197:30093316,34301496:186122 +k1,13197:31563944,34301496:186122 +k1,13197:32583029,34301496:0 +) +(1,13198:6764466,35166576:25818563,513147,134348 +k1,13197:9706020,35166576:211979 +k1,13197:10534037,35166576:211979 +k1,13197:11838502,35166576:211980 +k1,13197:13916291,35166576:211979 +k1,13197:15147355,35166576:211979 +k1,13197:18183280,35166576:211979 +k1,13197:19917005,35166576:211979 +k1,13197:20788276,35166576:211979 +k1,13197:24737774,35166576:211980 +k1,13197:25897404,35166576:211979 +k1,13197:29302297,35166576:211979 +k1,13197:32583029,35166576:0 +) +(1,13198:6764466,36031656:25818563,513147,134348 +k1,13197:10222801,36031656:238551 +k1,13197:12089266,36031656:238551 +k1,13197:12979245,36031656:238551 +k1,13197:15458472,36031656:238551 +k1,13197:16716108,36031656:238551 +k1,13197:18693985,36031656:238551 +k1,13197:19591828,36031656:238551 +k1,13197:21724369,36031656:238551 +k1,13197:23755330,36031656:238551 +k1,13197:24525378,36031656:238551 +k1,13197:27842155,36031656:238551 +k1,13197:28696744,36031656:238551 +k1,13197:31213982,36031656:238551 +h1,13197:32583029,36031656:0,0,0 +k1,13197:32583029,36031656:0 +) +(1,13198:6764466,36896736:25818563,505283,134348 +g1,13197:7773065,36896736 +g1,13197:9470447,36896736 +h1,13197:10267365,36896736:0,0,0 +k1,13198:32583029,36896736:21934900 +g1,13198:32583029,36896736 +) +] +g1,13198:32583029,37031084 +) +h1,13198:6630773,37031084:0,0,0 +v1,13201:6630773,37715939:0,393216,0 +(1,13214:6630773,42885341:25952256,5562618,196608 +g1,13214:6630773,42885341 +g1,13214:6630773,42885341 +g1,13214:6434165,42885341 +(1,13214:6434165,42885341:0,5562618,196608 +r1,13246:32779637,42885341:26345472,5759226,196608 +k1,13214:6434165,42885341:-26345472 +) +(1,13214:6434165,42885341:26345472,5562618,196608 +[1,13214:6630773,42885341:25952256,5366010,0 +(1,13203:6630773,37950376:25952256,431045,112852 +(1,13202:6630773,37950376:0,0,0 +g1,13202:6630773,37950376 +g1,13202:6630773,37950376 +g1,13202:6303093,37950376 +(1,13202:6303093,37950376:0,0,0 +) +g1,13202:6630773,37950376 +) +k1,13203:6630773,37950376:0 +k1,13203:6630773,37950376:0 +h1,13203:23560424,37950376:0,0,0 +k1,13203:32583029,37950376:9022605 +g1,13203:32583029,37950376 +) +(1,13213:6630773,38766303:25952256,407923,9908 +(1,13205:6630773,38766303:0,0,0 +g1,13205:6630773,38766303 +g1,13205:6630773,38766303 +g1,13205:6303093,38766303 +(1,13205:6303093,38766303:0,0,0 +) +g1,13205:6630773,38766303 +) +g1,13213:7626635,38766303 +g1,13213:7958589,38766303 +g1,13213:8290543,38766303 +g1,13213:8954451,38766303 +g1,13213:9618359,38766303 +g1,13213:10282267,38766303 +g1,13213:10946175,38766303 +h1,13213:11278129,38766303:0,0,0 +k1,13213:32583029,38766303:21304900 +g1,13213:32583029,38766303 +) +(1,13213:6630773,39451158:25952256,407923,9908 +h1,13213:6630773,39451158:0,0,0 +g1,13213:7626635,39451158 +g1,13213:8290543,39451158 +g1,13213:8954451,39451158 +g1,13213:9618359,39451158 +g1,13213:10282267,39451158 +g1,13213:10946175,39451158 +h1,13213:11278129,39451158:0,0,0 +k1,13213:32583029,39451158:21304900 +g1,13213:32583029,39451158 +) +(1,13213:6630773,40136013:25952256,407923,9908 +h1,13213:6630773,40136013:0,0,0 +g1,13213:7626635,40136013 +g1,13213:8290543,40136013 +g1,13213:8954451,40136013 +g1,13213:9618359,40136013 +g1,13213:10282267,40136013 +g1,13213:10946175,40136013 +h1,13213:11278129,40136013:0,0,0 +k1,13213:32583029,40136013:21304900 +g1,13213:32583029,40136013 +) +(1,13213:6630773,40820868:25952256,407923,9908 +h1,13213:6630773,40820868:0,0,0 +g1,13213:7626635,40820868 +g1,13213:8290543,40820868 +g1,13213:8954451,40820868 +g1,13213:9618359,40820868 +g1,13213:10282267,40820868 +g1,13213:10946175,40820868 +h1,13213:11278129,40820868:0,0,0 +k1,13213:32583029,40820868:21304900 +g1,13213:32583029,40820868 +) +(1,13213:6630773,41505723:25952256,407923,9908 +h1,13213:6630773,41505723:0,0,0 +g1,13213:7626635,41505723 +g1,13213:8290543,41505723 +g1,13213:8954451,41505723 +g1,13213:9618359,41505723 +g1,13213:10282267,41505723 +g1,13213:10946175,41505723 +h1,13213:11278129,41505723:0,0,0 +k1,13213:32583029,41505723:21304900 +g1,13213:32583029,41505723 +) +(1,13213:6630773,42190578:25952256,407923,9908 +h1,13213:6630773,42190578:0,0,0 +g1,13213:7626635,42190578 +g1,13213:8290543,42190578 +g1,13213:8954451,42190578 +g1,13213:9618359,42190578 +g1,13213:10282267,42190578 +g1,13213:10946175,42190578 +h1,13213:11278129,42190578:0,0,0 +k1,13213:32583029,42190578:21304900 +g1,13213:32583029,42190578 +) +(1,13213:6630773,42875433:25952256,407923,9908 +h1,13213:6630773,42875433:0,0,0 +g1,13213:7626635,42875433 +g1,13213:8290543,42875433 +g1,13213:8954451,42875433 +g1,13213:9618359,42875433 +g1,13213:10282267,42875433 +g1,13213:10946175,42875433 +h1,13213:11278129,42875433:0,0,0 +k1,13213:32583029,42875433:21304900 +g1,13213:32583029,42875433 +) +] +) +g1,13214:32583029,42885341 +g1,13214:6630773,42885341 +g1,13214:6630773,42885341 +g1,13214:32583029,42885341 +g1,13214:32583029,42885341 +) +h1,13214:6630773,43081949:0,0,0 +v1,13218:6630773,43766804:0,393216,0 +(1,13246:6630773,45510161:25952256,2136573,196608 +g1,13246:6630773,45510161 +g1,13246:6630773,45510161 +g1,13246:6434165,45510161 +(1,13246:6434165,45510161:0,2136573,196608 +r1,13246:32779637,45510161:26345472,2333181,196608 +k1,13246:6434165,45510161:-26345472 +) +(1,13246:6434165,45510161:26345472,2136573,196608 +[1,13246:6630773,45510161:25952256,1939965,0 +(1,13220:6630773,44001241:25952256,431045,106246 +(1,13219:6630773,44001241:0,0,0 +g1,13219:6630773,44001241 +g1,13219:6630773,44001241 +g1,13219:6303093,44001241 +(1,13219:6303093,44001241:0,0,0 +) +g1,13219:6630773,44001241 +) +k1,13220:6630773,44001241:0 +h1,13220:11942036,44001241:0,0,0 +k1,13220:32583028,44001241:20640992 +g1,13220:32583028,44001241 +) +(1,13245:6630773,44817049:25952256,398014,0 +(1,13222:6630773,44817049:0,0,0 +g1,13222:6630773,44817049 +g1,13222:6630773,44817049 +g1,13222:6303093,44817049 +(1,13222:6303093,44817049:0,0,0 +) +g1,13222:6630773,44817049 +) +h1,13245:7294681,44817049:0,0,0 +k1,13245:32583029,44817049:25288348 +g1,13245:32583029,44817049 +) +(1,13245:6630773,45501904:25952256,424439,8257 +h1,13245:6630773,45501904:0,0,0 +g1,13245:7626635,45501904 +h1,13245:9286405,45501904:0,0,0 +k1,13245:32583029,45501904:23296624 +g1,13245:32583029,45501904 +) +] +) +g1,13246:32583029,45510161 +g1,13246:6630773,45510161 +g1,13246:6630773,45510161 +g1,13246:32583029,45510161 +g1,13246:32583029,45510161 +) +] +(1,13246:32583029,45706769:0,0,0 +g1,13246:32583029,45706769 +) +) +] +(1,13246:6630773,47279633:25952256,0,0 +h1,13246:6630773,47279633:25952256,0,0 ) ] -(1,13658:4262630,4025873:0,0,0 -[1,13658:-473656,4025873:0,0,0 -(1,13658:-473656,-710413:0,0,0 -(1,13658:-473656,-710413:0,0,0 -g1,13658:-473656,-710413 +(1,13246:4262630,4025873:0,0,0 +[1,13246:-473656,4025873:0,0,0 +(1,13246:-473656,-710413:0,0,0 +(1,13246:-473656,-710413:0,0,0 +g1,13246:-473656,-710413 ) -g1,13658:-473656,-710413 +g1,13246:-473656,-710413 ) ] ) ] -!32563 -}233 -Input:2082:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2083:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2084:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2085:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2086:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!482 -{234 -[1,13757:4262630,47279633:28320399,43253760,0 -(1,13757:4262630,4025873:0,0,0 -[1,13757:-473656,4025873:0,0,0 -(1,13757:-473656,-710413:0,0,0 -(1,13757:-473656,-644877:0,0,0 -k1,13757:-473656,-644877:-65536 +!31757 +}214 +Input:2007:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2008:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!200 +{215 +[1,13301:4262630,47279633:28320399,43253760,0 +(1,13301:4262630,4025873:0,0,0 +[1,13301:-473656,4025873:0,0,0 +(1,13301:-473656,-710413:0,0,0 +(1,13301:-473656,-644877:0,0,0 +k1,13301:-473656,-644877:-65536 ) -(1,13757:-473656,4736287:0,0,0 -k1,13757:-473656,4736287:5209943 +(1,13301:-473656,4736287:0,0,0 +k1,13301:-473656,4736287:5209943 ) -g1,13757:-473656,-710413 +g1,13301:-473656,-710413 ) ] ) -[1,13757:6630773,47279633:25952256,43253760,0 -[1,13757:6630773,4812305:25952256,786432,0 -(1,13757:6630773,4812305:25952256,505283,134348 -(1,13757:6630773,4812305:25952256,505283,134348 -g1,13757:3078558,4812305 -[1,13757:3078558,4812305:0,0,0 -(1,13757:3078558,2439708:0,1703936,0 -k1,13757:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,13757:2537886,2439708:1179648,16384,0 +[1,13301:6630773,47279633:25952256,43253760,0 +[1,13301:6630773,4812305:25952256,786432,0 +(1,13301:6630773,4812305:25952256,513147,126483 +(1,13301:6630773,4812305:25952256,513147,126483 +g1,13301:3078558,4812305 +[1,13301:3078558,4812305:0,0,0 +(1,13301:3078558,2439708:0,1703936,0 +k1,13301:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,13301:2537886,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,13757:3078558,1915420:16384,1179648,0 +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,13301:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] ) ) ) ] -[1,13757:3078558,4812305:0,0,0 -(1,13757:3078558,2439708:0,1703936,0 -g1,13757:29030814,2439708 -g1,13757:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,13757:36151628,1915420:16384,1179648,0 +[1,13301:3078558,4812305:0,0,0 +(1,13301:3078558,2439708:0,1703936,0 +g1,13301:29030814,2439708 +g1,13301:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,13301:36151628,1915420:16384,1179648,0 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,13757:37855564,2439708:1179648,16384,0 +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,13301:37855564,2439708:1179648,16384,0 ) ) -k1,13757:3078556,2439708:-34777008 +k1,13301:3078556,2439708:-34777008 ) ] -[1,13757:3078558,4812305:0,0,0 -(1,13757:3078558,49800853:0,16384,2228224 -k1,13757:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,13757:2537886,49800853:1179648,16384,0 +[1,13301:3078558,4812305:0,0,0 +(1,13301:3078558,49800853:0,16384,2228224 +k1,13301:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,13301:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,13757:3078558,51504789:16384,1179648,0 +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,13301:3078558,51504789:16384,1179648,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 ) ] ) ) -) -] -[1,13757:3078558,4812305:0,0,0 -(1,13757:3078558,49800853:0,16384,2228224 -g1,13757:29030814,49800853 -g1,13757:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,13757:36151628,51504789:16384,1179648,0 -) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 -) -] -) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,13757:37855564,49800853:1179648,16384,0 -) -) -k1,13757:3078556,49800853:-34777008 -) -] -g1,13757:6630773,4812305 -g1,13757:6630773,4812305 -g1,13757:10153333,4812305 -g1,13757:13588730,4812305 -k1,13757:31387652,4812305:17798922 -) -) -] -[1,13757:6630773,45706769:25952256,40108032,0 -(1,13757:6630773,45706769:25952256,40108032,0 -(1,13757:6630773,45706769:0,0,0 -g1,13757:6630773,45706769 -) -[1,13757:6630773,45706769:25952256,40108032,0 -v1,13658:6630773,6254097:0,393216,0 -(1,13658:6630773,7210206:25952256,1349325,196608 -g1,13658:6630773,7210206 -g1,13658:6630773,7210206 -g1,13658:6434165,7210206 -(1,13658:6434165,7210206:0,1349325,196608 -r1,13757:32779637,7210206:26345472,1545933,196608 -k1,13658:6434165,7210206:-26345472 -) -(1,13658:6434165,7210206:26345472,1349325,196608 -[1,13658:6630773,7210206:25952256,1152717,0 -(1,13655:6630773,6468007:25952256,410518,101187 -(1,13654:6630773,6468007:0,0,0 -g1,13654:6630773,6468007 -g1,13654:6630773,6468007 -g1,13654:6303093,6468007 -(1,13654:6303093,6468007:0,0,0 -) -g1,13654:6630773,6468007 -) -g1,13655:8211502,6468007 -g1,13655:9159940,6468007 -g1,13655:12005251,6468007 -g1,13655:12637543,6468007 -g1,13655:17379728,6468007 -g1,13655:18644311,6468007 -g1,13655:19908894,6468007 -g1,13655:21489623,6468007 -g1,13655:22121915,6468007 -k1,13655:22121915,6468007:0 -h1,13655:25283372,6468007:0,0,0 -k1,13655:32583029,6468007:7299657 -g1,13655:32583029,6468007 -) -(1,13656:6630773,7134185:25952256,404226,76021 -h1,13656:6630773,7134185:0,0,0 -g1,13656:6946919,7134185 -g1,13656:7263065,7134185 -g1,13656:7579211,7134185 -g1,13656:7895357,7134185 -g1,13656:8211503,7134185 -g1,13656:8527649,7134185 -g1,13656:8843795,7134185 -g1,13656:9159941,7134185 -g1,13656:9476087,7134185 -g1,13656:9792233,7134185 -g1,13656:10108379,7134185 -g1,13656:10424525,7134185 -g1,13656:12637545,7134185 -g1,13656:13269837,7134185 -g1,13656:15166711,7134185 -g1,13656:16115148,7134185 -h1,13656:19276605,7134185:0,0,0 -k1,13656:32583029,7134185:13306424 -g1,13656:32583029,7134185 -) -] -) -g1,13658:32583029,7210206 -g1,13658:6630773,7210206 -g1,13658:6630773,7210206 -g1,13658:32583029,7210206 -g1,13658:32583029,7210206 -) -h1,13658:6630773,7406814:0,0,0 -(1,13662:6630773,8722599:25952256,513147,126483 -h1,13661:6630773,8722599:983040,0,0 -k1,13661:8806830,8722599:239468 -k1,13661:10150580,8722599:239468 -k1,13661:12594025,8722599:239469 -k1,13661:15595836,8722599:239468 -k1,13661:19762877,8722599:239468 -k1,13661:22770586,8722599:239468 -k1,13661:23696216,8722599:239468 -k1,13661:27025708,8722599:239469 -k1,13661:28212827,8722599:239468 -k1,13661:30265021,8722599:239468 -k1,13661:32583029,8722599:0 -) -(1,13662:6630773,9564087:25952256,505283,134348 -g1,13661:8062079,9564087 -g1,13661:10539995,9564087 -h1,13661:11510583,9564087:0,0,0 -g1,13661:11709812,9564087 -g1,13661:12718411,9564087 -g1,13661:14415793,9564087 -h1,13661:15611170,9564087:0,0,0 -k1,13662:32583029,9564087:16591095 -g1,13662:32583029,9564087 -) -v1,13664:6630773,10704562:0,393216,0 -(1,13708:6630773,30281201:25952256,19969855,196608 -g1,13708:6630773,30281201 -g1,13708:6630773,30281201 -g1,13708:6434165,30281201 -(1,13708:6434165,30281201:0,19969855,196608 -r1,13757:32779637,30281201:26345472,20166463,196608 -k1,13708:6434165,30281201:-26345472 -) -(1,13708:6434165,30281201:26345472,19969855,196608 -[1,13708:6630773,30281201:25952256,19773247,0 -(1,13666:6630773,10918472:25952256,410518,76021 -(1,13665:6630773,10918472:0,0,0 -g1,13665:6630773,10918472 -g1,13665:6630773,10918472 -g1,13665:6303093,10918472 -(1,13665:6303093,10918472:0,0,0 -) -g1,13665:6630773,10918472 -) -k1,13666:6630773,10918472:0 -h1,13666:10108375,10918472:0,0,0 -k1,13666:32583029,10918472:22474654 -g1,13666:32583029,10918472 -) -(1,13670:6630773,11584650:25952256,404226,76021 -(1,13668:6630773,11584650:0,0,0 -g1,13668:6630773,11584650 -g1,13668:6630773,11584650 -g1,13668:6303093,11584650 -(1,13668:6303093,11584650:0,0,0 -) -g1,13668:6630773,11584650 -) -g1,13670:7579210,11584650 -g1,13670:8843793,11584650 -h1,13670:10424521,11584650:0,0,0 -k1,13670:32583029,11584650:22158508 -g1,13670:32583029,11584650 -) -(1,13672:6630773,12906188:25952256,410518,101187 -(1,13671:6630773,12906188:0,0,0 -g1,13671:6630773,12906188 -g1,13671:6630773,12906188 -g1,13671:6303093,12906188 -(1,13671:6303093,12906188:0,0,0 -) -g1,13671:6630773,12906188 -) -k1,13672:6630773,12906188:0 -h1,13672:10740667,12906188:0,0,0 -k1,13672:32583029,12906188:21842362 -g1,13672:32583029,12906188 -) -(1,13689:6630773,13572366:25952256,379060,0 -(1,13674:6630773,13572366:0,0,0 -g1,13674:6630773,13572366 -g1,13674:6630773,13572366 -g1,13674:6303093,13572366 -(1,13674:6303093,13572366:0,0,0 -) -g1,13674:6630773,13572366 -) -h1,13689:7263064,13572366:0,0,0 -k1,13689:32583028,13572366:25319964 -g1,13689:32583028,13572366 -) -(1,13689:6630773,14238544:25952256,404226,82312 -h1,13689:6630773,14238544:0,0,0 -g1,13689:7579210,14238544 -g1,13689:10424521,14238544 -g1,13689:12005250,14238544 -g1,13689:12637542,14238544 -g1,13689:17379728,14238544 -g1,13689:18644311,14238544 -h1,13689:19276602,14238544:0,0,0 -k1,13689:32583029,14238544:13306427 -g1,13689:32583029,14238544 -) -(1,13689:6630773,14904722:25952256,379060,0 -h1,13689:6630773,14904722:0,0,0 -h1,13689:7263064,14904722:0,0,0 -k1,13689:32583028,14904722:25319964 -g1,13689:32583028,14904722 -) -(1,13689:6630773,15570900:25952256,379060,6290 -h1,13689:6630773,15570900:0,0,0 -g1,13689:7579210,15570900 -h1,13689:11056812,15570900:0,0,0 -k1,13689:32583028,15570900:21526216 -g1,13689:32583028,15570900 -) -(1,13689:6630773,16237078:25952256,404226,76021 -h1,13689:6630773,16237078:0,0,0 -g1,13689:7579210,16237078 -g1,13689:7895356,16237078 -g1,13689:8211502,16237078 -g1,13689:8527648,16237078 -g1,13689:8843794,16237078 -g1,13689:11689105,16237078 -g1,13689:13269834,16237078 -g1,13689:15166708,16237078 -g1,13689:15799000,16237078 -g1,13689:17695874,16237078 -k1,13689:17695874,16237078:0 -h1,13689:20225039,16237078:0,0,0 -k1,13689:32583029,16237078:12357990 -g1,13689:32583029,16237078 -) -(1,13689:6630773,16903256:25952256,388497,9436 -h1,13689:6630773,16903256:0,0,0 -g1,13689:7579210,16903256 -g1,13689:8527647,16903256 -g1,13689:11689104,16903256 -g1,13689:12005250,16903256 -g1,13689:15166707,16903256 -g1,13689:15482853,16903256 -g1,13689:17695873,16903256 -g1,13689:20541184,16903256 -h1,13689:21489621,16903256:0,0,0 -k1,13689:32583029,16903256:11093408 -g1,13689:32583029,16903256 -) -(1,13689:6630773,17569434:25952256,388497,9436 -h1,13689:6630773,17569434:0,0,0 -g1,13689:7579210,17569434 -g1,13689:8211502,17569434 -g1,13689:8527648,17569434 -g1,13689:11689105,17569434 -g1,13689:12005251,17569434 -g1,13689:15166708,17569434 -g1,13689:15482854,17569434 -g1,13689:15799000,17569434 -g1,13689:17695874,17569434 -g1,13689:20541185,17569434 -h1,13689:21489622,17569434:0,0,0 -k1,13689:32583029,17569434:11093407 -g1,13689:32583029,17569434 -) -(1,13689:6630773,18235612:25952256,379060,0 -h1,13689:6630773,18235612:0,0,0 -g1,13689:7579210,18235612 -k1,13689:7579210,18235612:0 -h1,13689:8527648,18235612:0,0,0 -k1,13689:32583028,18235612:24055380 -g1,13689:32583028,18235612 -) -(1,13689:6630773,18901790:25952256,410518,107478 -h1,13689:6630773,18901790:0,0,0 -g1,13689:7579210,18901790 -g1,13689:10108376,18901790 -g1,13689:12321396,18901790 -g1,13689:12637542,18901790 -g1,13689:13269834,18901790 -g1,13689:15166709,18901790 -g1,13689:17063583,18901790 -g1,13689:18644312,18901790 -g1,13689:20225041,18901790 -g1,13689:21489625,18901790 -g1,13689:23070354,18901790 -g1,13689:24334938,18901790 -g1,13689:25599521,18901790 -g1,13689:26231813,18901790 -g1,13689:26864105,18901790 -h1,13689:27180251,18901790:0,0,0 -k1,13689:32583029,18901790:5402778 -g1,13689:32583029,18901790 -) -(1,13689:6630773,19567968:25952256,379060,0 -h1,13689:6630773,19567968:0,0,0 -h1,13689:7263064,19567968:0,0,0 -k1,13689:32583028,19567968:25319964 -g1,13689:32583028,19567968 -) -(1,13689:6630773,20234146:25952256,410518,107478 -h1,13689:6630773,20234146:0,0,0 -g1,13689:7579210,20234146 -g1,13689:10424521,20234146 -g1,13689:13269832,20234146 -g1,13689:15482852,20234146 -g1,13689:17379726,20234146 -g1,13689:18328163,20234146 -g1,13689:19276600,20234146 -g1,13689:21805766,20234146 -g1,13689:22754203,20234146 -h1,13689:24967223,20234146:0,0,0 -k1,13689:32583029,20234146:7615806 -g1,13689:32583029,20234146 -) -(1,13689:6630773,20900324:25952256,379060,0 -h1,13689:6630773,20900324:0,0,0 -h1,13689:7263064,20900324:0,0,0 -k1,13689:32583028,20900324:25319964 -g1,13689:32583028,20900324 -) -(1,13689:6630773,21566502:25952256,410518,107478 -h1,13689:6630773,21566502:0,0,0 -g1,13689:7579210,21566502 -g1,13689:9792230,21566502 -g1,13689:10740667,21566502 -g1,13689:14218270,21566502 -g1,13689:15166707,21566502 -g1,13689:19276601,21566502 -h1,13689:19592747,21566502:0,0,0 -k1,13689:32583029,21566502:12990282 -g1,13689:32583029,21566502 -) -(1,13689:6630773,22232680:25952256,404226,107478 -h1,13689:6630773,22232680:0,0,0 -g1,13689:7579210,22232680 -g1,13689:10424521,22232680 -g1,13689:14218269,22232680 -g1,13689:17695872,22232680 -k1,13689:17695872,22232680:0 -h1,13689:20541183,22232680:0,0,0 -k1,13689:32583029,22232680:12041846 -g1,13689:32583029,22232680 -) -(1,13691:6630773,23554218:25952256,410518,76021 -(1,13690:6630773,23554218:0,0,0 -g1,13690:6630773,23554218 -g1,13690:6630773,23554218 -g1,13690:6303093,23554218 -(1,13690:6303093,23554218:0,0,0 -) -g1,13690:6630773,23554218 -) -k1,13691:6630773,23554218:0 -h1,13691:11372958,23554218:0,0,0 -k1,13691:32583030,23554218:21210072 -g1,13691:32583030,23554218 -) -(1,13698:6630773,24220396:25952256,404226,76021 -(1,13693:6630773,24220396:0,0,0 -g1,13693:6630773,24220396 -g1,13693:6630773,24220396 -g1,13693:6303093,24220396 -(1,13693:6303093,24220396:0,0,0 -) -g1,13693:6630773,24220396 -) -g1,13698:7579210,24220396 -g1,13698:7895356,24220396 -g1,13698:9159939,24220396 -g1,13698:9476085,24220396 -g1,13698:12953688,24220396 -g1,13698:13269834,24220396 -g1,13698:16747437,24220396 -g1,13698:17063583,24220396 -g1,13698:20541186,24220396 -g1,13698:20857332,24220396 -g1,13698:21173478,24220396 -g1,13698:24334935,24220396 -g1,13698:28128683,24220396 -g1,13698:28444829,24220396 -g1,13698:28760975,24220396 -h1,13698:31606286,24220396:0,0,0 -k1,13698:32583029,24220396:976743 -g1,13698:32583029,24220396 -) -(1,13698:6630773,24886574:25952256,404226,76021 -h1,13698:6630773,24886574:0,0,0 -g1,13698:7579210,24886574 -g1,13698:7895356,24886574 -g1,13698:9159939,24886574 -g1,13698:9476085,24886574 -g1,13698:12953688,24886574 -g1,13698:16747436,24886574 -g1,13698:17063582,24886574 -g1,13698:17379728,24886574 -g1,13698:20541185,24886574 -g1,13698:20857331,24886574 -g1,13698:24334934,24886574 -g1,13698:24651080,24886574 -g1,13698:24967226,24886574 -g1,13698:28128683,24886574 -g1,13698:28444829,24886574 -k1,13698:28444829,24886574:0 -h1,13698:31606286,24886574:0,0,0 -k1,13698:32583029,24886574:976743 -g1,13698:32583029,24886574 -) -(1,13698:6630773,25552752:25952256,404226,82312 -h1,13698:6630773,25552752:0,0,0 -g1,13698:7579210,25552752 -k1,13698:7579210,25552752:0 -h1,13698:12005249,25552752:0,0,0 -k1,13698:32583029,25552752:20577780 -g1,13698:32583029,25552752 -) -(1,13698:6630773,26218930:25952256,404226,76021 -h1,13698:6630773,26218930:0,0,0 -g1,13698:7579210,26218930 -g1,13698:8843793,26218930 -h1,13698:12321395,26218930:0,0,0 -k1,13698:32583029,26218930:20261634 -g1,13698:32583029,26218930 -) -(1,13700:6630773,27540468:25952256,410518,76021 -(1,13699:6630773,27540468:0,0,0 -g1,13699:6630773,27540468 -g1,13699:6630773,27540468 -g1,13699:6303093,27540468 -(1,13699:6303093,27540468:0,0,0 -) -g1,13699:6630773,27540468 -) -k1,13700:6630773,27540468:0 -h1,13700:10424521,27540468:0,0,0 -k1,13700:32583029,27540468:22158508 -g1,13700:32583029,27540468 -) -(1,13707:6630773,28206646:25952256,404226,76021 -(1,13702:6630773,28206646:0,0,0 -g1,13702:6630773,28206646 -g1,13702:6630773,28206646 -g1,13702:6303093,28206646 -(1,13702:6303093,28206646:0,0,0 -) -g1,13702:6630773,28206646 -) -g1,13707:7579210,28206646 -g1,13707:7895356,28206646 -g1,13707:9159939,28206646 -g1,13707:9476085,28206646 -g1,13707:12005251,28206646 -g1,13707:12321397,28206646 -g1,13707:14850563,28206646 -g1,13707:17695874,28206646 -g1,13707:20541185,28206646 -g1,13707:23386496,28206646 -g1,13707:26231807,28206646 -g1,13707:29077118,28206646 -h1,13707:31606283,28206646:0,0,0 -k1,13707:32583029,28206646:976746 -g1,13707:32583029,28206646 -) -(1,13707:6630773,28872824:25952256,404226,76021 -h1,13707:6630773,28872824:0,0,0 -g1,13707:7579210,28872824 -g1,13707:7895356,28872824 -g1,13707:9159939,28872824 -g1,13707:12005250,28872824 -g1,13707:14850561,28872824 -g1,13707:17695872,28872824 -h1,13707:20225037,28872824:0,0,0 -k1,13707:32583029,28872824:12357992 -g1,13707:32583029,28872824 -) -(1,13707:6630773,29539002:25952256,404226,82312 -h1,13707:6630773,29539002:0,0,0 -g1,13707:7579210,29539002 -k1,13707:7579210,29539002:0 -h1,13707:12005249,29539002:0,0,0 -k1,13707:32583029,29539002:20577780 -g1,13707:32583029,29539002 -) -(1,13707:6630773,30205180:25952256,404226,76021 -h1,13707:6630773,30205180:0,0,0 -g1,13707:7579210,30205180 -g1,13707:8843793,30205180 -g1,13707:11372959,30205180 -h1,13707:13585979,30205180:0,0,0 -k1,13707:32583029,30205180:18997050 -g1,13707:32583029,30205180 -) -] -) -g1,13708:32583029,30281201 -g1,13708:6630773,30281201 -g1,13708:6630773,30281201 -g1,13708:32583029,30281201 -g1,13708:32583029,30281201 -) -h1,13708:6630773,30477809:0,0,0 -v1,13712:6630773,32267892:0,393216,0 -(1,13757:6630773,45706769:25952256,13832093,0 -g1,13757:6630773,45706769 -g1,13757:6303093,45706769 -r1,13757:6401397,45706769:98304,13832093,0 -g1,13757:6600626,45706769 -g1,13757:6797234,45706769 -[1,13757:6797234,45706769:25785795,13832093,0 -(1,13713:6797234,32629965:25785795,755289,196608 -(1,13712:6797234,32629965:0,755289,196608 -r1,13757:8134168,32629965:1336934,951897,196608 -k1,13712:6797234,32629965:-1336934 -) -(1,13712:6797234,32629965:1336934,755289,196608 -) -k1,13712:8307662,32629965:173494 -k1,13712:8635342,32629965:327680 -k1,13712:9286593,32629965:173494 -k1,13712:10328439,32629965:173494 -k1,13712:11594418,32629965:173494 -(1,13712:11594418,32629965:0,452978,115847 -r1,13757:13359531,32629965:1765113,568825,115847 -k1,13712:11594418,32629965:-1765113 -) -(1,13712:11594418,32629965:1765113,452978,115847 -k1,13712:11594418,32629965:3277 -h1,13712:13356254,32629965:0,411205,112570 -) -k1,13712:13533025,32629965:173494 -k1,13712:14389404,32629965:173494 -(1,13712:14389404,32629965:0,452978,115847 -r1,13757:16857941,32629965:2468537,568825,115847 -k1,13712:14389404,32629965:-2468537 -) -(1,13712:14389404,32629965:2468537,452978,115847 -k1,13712:14389404,32629965:3277 -h1,13712:16854664,32629965:0,411205,112570 -) -k1,13712:17031435,32629965:173494 -k1,13712:18073281,32629965:173494 -k1,13712:19351057,32629965:173494 -k1,13712:20549534,32629965:173494 -k1,13712:22007534,32629965:173494 -k1,13712:23835812,32629965:173494 -k1,13712:25000866,32629965:173494 -k1,13712:28691022,32629965:173494 -k1,13712:30258467,32629965:173494 -k1,13712:32583029,32629965:0 -) -(1,13713:6797234,33471453:25785795,513147,134348 -k1,13712:7615591,33471453:166929 -k1,13712:9595246,33471453:166929 -k1,13712:11749882,33471453:166929 -k1,13712:13108256,33471453:166929 -k1,13712:16967483,33471453:166929 -k1,13712:19122119,33471453:166929 -k1,13712:20480493,33471453:166929 -k1,13712:21844110,33471453:166930 -k1,13712:24789766,33471453:166929 -k1,13712:26916221,33471453:166929 -k1,13712:27614647,33471453:166929 -k1,13712:28440868,33471453:166929 -k1,13712:30162966,33471453:166929 -(1,13712:30162966,33471453:0,452978,115847 -r1,13757:31224655,33471453:1061689,568825,115847 -k1,13712:30162966,33471453:-1061689 -) -(1,13712:30162966,33471453:1061689,452978,115847 -k1,13712:30162966,33471453:3277 -h1,13712:31221378,33471453:0,411205,112570 -) -k1,13712:31391584,33471453:166929 -k1,13712:32583029,33471453:0 -) -(1,13713:6797234,34312941:25785795,505283,7863 -k1,13712:9674768,34312941:175485 -k1,13712:11542393,34312941:175485 -k1,13712:13001073,34312941:175485 -k1,13712:16130266,34312941:175485 -k1,13712:17497196,34312941:175485 -k1,13712:19290110,34312941:175485 -k1,13712:21671536,34312941:175484 -k1,13712:23197063,34312941:175485 -k1,13712:26326256,34312941:175485 -k1,13712:27493301,34312941:175485 -k1,13712:29890457,34312941:175485 -k1,13712:30717370,34312941:175485 -k1,13712:31911940,34312941:175485 -k1,13713:32583029,34312941:0 -) -(1,13713:6797234,35154429:25785795,505283,134348 -k1,13712:9135584,35154429:184182 -k1,13712:14009521,35154429:184181 -k1,13712:16648026,35154429:184182 -k1,13712:18519105,35154429:184182 -(1,13712:18519105,35154429:0,452978,115847 -r1,13757:20987642,35154429:2468537,568825,115847 -k1,13712:18519105,35154429:-2468537 -) -(1,13712:18519105,35154429:2468537,452978,115847 -k1,13712:18519105,35154429:3277 -h1,13712:20984365,35154429:0,411205,112570 -) -k1,13712:21171824,35154429:184182 -k1,13712:24718002,35154429:184181 -k1,13712:27019652,35154429:184182 -k1,13712:30157542,35154429:184182 -k1,13712:32583029,35154429:0 -) -(1,13713:6797234,35995917:25785795,513147,134348 -k1,13712:9730842,35995917:216485 -k1,13712:12632992,35995917:216485 -k1,13712:14040922,35995917:216485 -(1,13712:14040922,35995917:0,459977,115847 -r1,13757:16861171,35995917:2820249,575824,115847 -k1,13712:14040922,35995917:-2820249 -) -(1,13712:14040922,35995917:2820249,459977,115847 -k1,13712:14040922,35995917:3277 -h1,13712:16857894,35995917:0,411205,112570 -) -k1,13712:17077657,35995917:216486 -k1,13712:21454367,35995917:216485 -k1,13712:25684932,35995917:216485 -k1,13712:27295368,35995917:216485 -k1,13712:29629321,35995917:216485 -k1,13712:32583029,35995917:0 -) -(1,13713:6797234,36837405:25785795,513147,134348 -g1,13712:8390414,36837405 -g1,13712:12396629,36837405 -g1,13712:13405228,36837405 -g1,13712:14623542,36837405 -g1,13712:17584458,36837405 -g1,13712:18442979,36837405 -g1,13712:19661293,36837405 -g1,13712:22472787,36837405 -k1,13713:32583029,36837405:6825578 -g1,13713:32583029,36837405 -) -v1,13715:6797234,38027871:0,393216,0 -(1,13731:6797234,44985873:25785795,7351218,196608 -g1,13731:6797234,44985873 -g1,13731:6797234,44985873 -g1,13731:6600626,44985873 -(1,13731:6600626,44985873:0,7351218,196608 -r1,13757:32779637,44985873:26179011,7547826,196608 -k1,13731:6600625,44985873:-26179012 -) -(1,13731:6600626,44985873:26179011,7351218,196608 -[1,13731:6797234,44985873:25785795,7154610,0 -(1,13717:6797234,38241781:25785795,410518,82312 -(1,13716:6797234,38241781:0,0,0 -g1,13716:6797234,38241781 -g1,13716:6797234,38241781 -g1,13716:6469554,38241781 -(1,13716:6469554,38241781:0,0,0 -) -g1,13716:6797234,38241781 -) -k1,13717:6797234,38241781:0 -g1,13717:9958691,38241781 -g1,13717:13120148,38241781 -g1,13717:13752440,38241781 -h1,13717:14384732,38241781:0,0,0 -k1,13717:32583028,38241781:18198296 -g1,13717:32583028,38241781 -) -(1,13730:6797234,38907959:25785795,410518,9436 -(1,13719:6797234,38907959:0,0,0 -g1,13719:6797234,38907959 -g1,13719:6797234,38907959 -g1,13719:6469554,38907959 -(1,13719:6469554,38907959:0,0,0 -) -g1,13719:6797234,38907959 -) -g1,13730:7745671,38907959 -g1,13730:9326400,38907959 -g1,13730:10274837,38907959 -h1,13730:10590983,38907959:0,0,0 -k1,13730:32583029,38907959:21992046 -g1,13730:32583029,38907959 -) -(1,13730:6797234,39574137:25785795,410518,31456 -h1,13730:6797234,39574137:0,0,0 -g1,13730:7745671,39574137 -g1,13730:8061817,39574137 -g1,13730:8694109,39574137 -g1,13730:9326401,39574137 -g1,13730:9642547,39574137 -g1,13730:9958693,39574137 -g1,13730:10274839,39574137 -g1,13730:10590985,39574137 -g1,13730:10907131,39574137 -g1,13730:11223277,39574137 -g1,13730:11539423,39574137 -g1,13730:11855569,39574137 -g1,13730:12171715,39574137 -g1,13730:14068589,39574137 -g1,13730:15017026,39574137 -h1,13730:15649317,39574137:0,0,0 -k1,13730:32583029,39574137:16933712 -g1,13730:32583029,39574137 -) -(1,13730:6797234,40240315:25785795,404226,82312 -h1,13730:6797234,40240315:0,0,0 -g1,13730:7745671,40240315 -g1,13730:8061817,40240315 -g1,13730:8377963,40240315 -g1,13730:9642546,40240315 -g1,13730:12171712,40240315 -g1,13730:15333169,40240315 -g1,13730:16597752,40240315 -h1,13730:19759209,40240315:0,0,0 -k1,13730:32583029,40240315:12823820 -g1,13730:32583029,40240315 -) -(1,13730:6797234,40906493:25785795,410518,31456 -h1,13730:6797234,40906493:0,0,0 -g1,13730:7745671,40906493 -g1,13730:8061817,40906493 -g1,13730:8694109,40906493 -g1,13730:11539420,40906493 -g1,13730:11855566,40906493 -g1,13730:12171712,40906493 -g1,13730:14068586,40906493 -g1,13730:15017023,40906493 -h1,13730:15333169,40906493:0,0,0 -k1,13730:32583029,40906493:17249860 -g1,13730:32583029,40906493 -) -(1,13730:6797234,41572671:25785795,410518,101187 -h1,13730:6797234,41572671:0,0,0 -g1,13730:7745671,41572671 -g1,13730:8061817,41572671 -g1,13730:8694109,41572671 -g1,13730:10274838,41572671 -g1,13730:10590984,41572671 -g1,13730:10907130,41572671 -g1,13730:11223276,41572671 -g1,13730:11539422,41572671 -g1,13730:11855568,41572671 -g1,13730:12171714,41572671 -g1,13730:12804006,41572671 -g1,13730:15017026,41572671 -h1,13730:17862337,41572671:0,0,0 -k1,13730:32583029,41572671:14720692 -g1,13730:32583029,41572671 -) -(1,13730:6797234,42238849:25785795,410518,107478 -h1,13730:6797234,42238849:0,0,0 -k1,13730:7640289,42238849:210764 -k1,13730:7851053,42238849:210764 -k1,13730:8377963,42238849:210764 -k1,13730:9853310,42238849:210764 -k1,13730:10064074,42238849:210764 -k1,13730:10274838,42238849:210764 -k1,13730:10485602,42238849:210764 -k1,13730:10696366,42238849:210764 -k1,13730:10907130,42238849:210764 -k1,13730:11117894,42238849:210764 -k1,13730:11644804,42238849:210764 -k1,13730:14384733,42238849:210764 -k1,13730:18073099,42238849:210764 -k1,13730:18600009,42238849:210764 -k1,13730:20075356,42238849:210764 -k1,13730:20602266,42238849:210764 -k1,13730:25239070,42238849:210764 -k1,13730:26398271,42238849:210764 -k1,13730:27557472,42238849:210764 -k1,13730:29032819,42238849:210764 -k1,13730:29559729,42238849:210764 -k1,13730:32931950,42238849:210764 -k1,13730:35039588,42238849:210764 -k1,13730:35566498,42238849:210764 -k1,13730:37357990,42238849:210764 -k1,13730:38201045,42238849:210764 -k1,13730:38411809,42238849:210764 -k1,13730:38622573,42238849:210764 -k1,13730:38833337,42238849:210764 -k1,13730:39044101,42238849:210764 -k1,13730:39254865,42238849:210764 -k1,13730:42627086,42238849:210764 -k1,13730:45683161,42238849:210764 -k1,13730:46210071,42238849:210764 -k1,13730:48317709,42238849:210764 -k1,13730:52638367,42238849:210764 -h1,13730:53586804,42238849:0,0,0 -k1,13730:53586804,42238849:0 -k1,13730:53586804,42238849:0 -) -(1,13730:6797234,42905027:25785795,410518,31456 -h1,13730:6797234,42905027:0,0,0 -g1,13730:7745671,42905027 -g1,13730:8061817,42905027 -g1,13730:8694109,42905027 -g1,13730:12804003,42905027 -g1,13730:14700877,42905027 -g1,13730:15965460,42905027 -h1,13730:18810771,42905027:0,0,0 -k1,13730:32583029,42905027:13772258 -g1,13730:32583029,42905027 -) -(1,13730:6797234,43571205:25785795,404226,82312 -h1,13730:6797234,43571205:0,0,0 -g1,13730:7745671,43571205 -g1,13730:8061817,43571205 -g1,13730:8377963,43571205 -g1,13730:9642546,43571205 -g1,13730:12171712,43571205 -g1,13730:15333169,43571205 -g1,13730:16597752,43571205 -h1,13730:18494626,43571205:0,0,0 -k1,13730:32583029,43571205:14088403 -g1,13730:32583029,43571205 -) -(1,13730:6797234,44237383:25785795,410518,31456 -h1,13730:6797234,44237383:0,0,0 -g1,13730:7745671,44237383 -g1,13730:8061817,44237383 -g1,13730:8694109,44237383 -g1,13730:11223275,44237383 -g1,13730:11539421,44237383 -g1,13730:11855567,44237383 -g1,13730:12171713,44237383 -g1,13730:14068587,44237383 -g1,13730:15017024,44237383 -h1,13730:15333170,44237383:0,0,0 -k1,13730:32583030,44237383:17249860 -g1,13730:32583030,44237383 -) -(1,13730:6797234,44903561:25785795,404226,82312 -h1,13730:6797234,44903561:0,0,0 -g1,13730:7745671,44903561 -g1,13730:8061817,44903561 -g1,13730:8694109,44903561 -g1,13730:11223275,44903561 -g1,13730:14384732,44903561 -g1,13730:15649315,44903561 -h1,13730:17230043,44903561:0,0,0 -k1,13730:32583029,44903561:15352986 -g1,13730:32583029,44903561 -) -] -) -g1,13731:32583029,44985873 -g1,13731:6797234,44985873 -g1,13731:6797234,44985873 -g1,13731:32583029,44985873 -g1,13731:32583029,44985873 -) -h1,13731:6797234,45182481:0,0,0 -] -g1,13757:32583029,45706769 -) -] -(1,13757:32583029,45706769:0,0,0 -g1,13757:32583029,45706769 -) -) -] -(1,13757:6630773,47279633:25952256,0,0 -h1,13757:6630773,47279633:25952256,0,0 -) -] -(1,13757:4262630,4025873:0,0,0 -[1,13757:-473656,4025873:0,0,0 -(1,13757:-473656,-710413:0,0,0 -(1,13757:-473656,-710413:0,0,0 -g1,13757:-473656,-710413 -) -g1,13757:-473656,-710413 -) -] -) -] -!26652 -}234 -Input:2087:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2088:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2089:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!294 -{235 -[1,13773:4262630,47279633:28320399,43253760,0 -(1,13773:4262630,4025873:0,0,0 -[1,13773:-473656,4025873:0,0,0 -(1,13773:-473656,-710413:0,0,0 -(1,13773:-473656,-644877:0,0,0 -k1,13773:-473656,-644877:-65536 -) -(1,13773:-473656,4736287:0,0,0 -k1,13773:-473656,4736287:5209943 -) -g1,13773:-473656,-710413 +) +] +[1,13301:3078558,4812305:0,0,0 +(1,13301:3078558,49800853:0,16384,2228224 +g1,13301:29030814,49800853 +g1,13301:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,13301:36151628,51504789:16384,1179648,0 +) +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 +) +] +) +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,13301:37855564,49800853:1179648,16384,0 +) +) +k1,13301:3078556,49800853:-34777008 +) +] +g1,13301:6630773,4812305 +k1,13301:19540057,4812305:11713907 +g1,13301:21162728,4812305 +g1,13301:21985204,4812305 +g1,13301:24539797,4812305 +g1,13301:25949476,4812305 +g1,13301:28728857,4812305 +g1,13301:29852144,4812305 +) +) +] +[1,13301:6630773,45706769:25952256,40108032,0 +(1,13301:6630773,45706769:25952256,40108032,0 +(1,13301:6630773,45706769:0,0,0 +g1,13301:6630773,45706769 +) +[1,13301:6630773,45706769:25952256,40108032,0 +v1,13246:6630773,6254097:0,393216,0 +(1,13246:6630773,19607025:25952256,13746144,196608 +g1,13246:6630773,19607025 +g1,13246:6630773,19607025 +g1,13246:6434165,19607025 +(1,13246:6434165,19607025:0,13746144,196608 +r1,13301:32779637,19607025:26345472,13942752,196608 +k1,13246:6434165,19607025:-26345472 +) +(1,13246:6434165,19607025:26345472,13746144,196608 +[1,13246:6630773,19607025:25952256,13549536,0 +(1,13245:6630773,6488534:25952256,431045,106246 +h1,13245:6630773,6488534:0,0,0 +k1,13245:7515984,6488534:221303 +k1,13245:11056826,6488534:221303 +k1,13245:11610083,6488534:221303 +k1,13245:13491156,6488534:221303 +k1,13245:14044413,6488534:221303 +k1,13245:16257440,6488534:221303 +k1,13245:17806559,6488534:221303 +k1,13245:18359816,6488534:221303 +k1,13245:22896520,6488534:221303 +k1,13245:26105408,6488534:221303 +k1,13245:26658665,6488534:221303 +k1,13245:30199507,6488534:221303 +k1,13245:30752764,6488534:221303 +h1,13245:36395981,6488534:0,0,0 +k1,13245:36395981,6488534:0 +k1,13245:36395981,6488534:0 +) +(1,13245:6630773,7173389:25952256,398014,0 +h1,13245:6630773,7173389:0,0,0 +h1,13245:7294681,7173389:0,0,0 +k1,13245:32583029,7173389:25288348 +g1,13245:32583029,7173389 +) +(1,13245:6630773,7858244:25952256,424439,6605 +h1,13245:6630773,7858244:0,0,0 +g1,13245:7626635,7858244 +h1,13245:10946174,7858244:0,0,0 +k1,13245:32583030,7858244:21636856 +g1,13245:32583030,7858244 +) +(1,13245:6630773,8543099:25952256,424439,86428 +h1,13245:6630773,8543099:0,0,0 +g1,13245:7626635,8543099 +g1,13245:7958589,8543099 +g1,13245:8290543,8543099 +g1,13245:8622497,8543099 +g1,13245:9950313,8543099 +g1,13245:10282267,8543099 +g1,13245:10614221,8543099 +g1,13245:10946175,8543099 +g1,13245:11278129,8543099 +g1,13245:12273991,8543099 +g1,13245:14597669,8543099 +g1,13245:14929623,8543099 +g1,13245:15261577,8543099 +g1,13245:15593531,8543099 +g1,13245:15925485,8543099 +g1,13245:16921347,8543099 +g1,13245:17253301,8543099 +g1,13245:17585255,8543099 +g1,13245:17917209,8543099 +h1,13245:18913071,8543099:0,0,0 +k1,13245:32583029,8543099:13669958 +g1,13245:32583029,8543099 +) +(1,13245:6630773,9227954:25952256,407923,9908 +h1,13245:6630773,9227954:0,0,0 +g1,13245:7626635,9227954 +g1,13245:9950313,9227954 +g1,13245:12273991,9227954 +g1,13245:14597669,9227954 +g1,13245:14929623,9227954 +g1,13245:16921347,9227954 +g1,13245:17253301,9227954 +h1,13245:18913071,9227954:0,0,0 +k1,13245:32583029,9227954:13669958 +g1,13245:32583029,9227954 +) +(1,13245:6630773,9912809:25952256,398014,0 +h1,13245:6630773,9912809:0,0,0 +h1,13245:7294681,9912809:0,0,0 +k1,13245:32583029,9912809:25288348 +g1,13245:32583029,9912809 +) +(1,13245:6630773,10597664:25952256,431045,8257 +h1,13245:6630773,10597664:0,0,0 +g1,13245:7626635,10597664 +h1,13245:11942036,10597664:0,0,0 +k1,13245:32583028,10597664:20640992 +g1,13245:32583028,10597664 +) +(1,13245:6630773,11282519:25952256,424439,79822 +h1,13245:6630773,11282519:0,0,0 +g1,13245:7626635,11282519 +g1,13245:7958589,11282519 +g1,13245:8290543,11282519 +g1,13245:8622497,11282519 +g1,13245:8954451,11282519 +g1,13245:9286405,11282519 +g1,13245:9618359,11282519 +g1,13245:9950313,11282519 +g1,13245:10282267,11282519 +g1,13245:10614221,11282519 +g1,13245:10946175,11282519 +g1,13245:11278129,11282519 +g1,13245:11610083,11282519 +g1,13245:14597668,11282519 +g1,13245:16257438,11282519 +g1,13245:18249162,11282519 +g1,13245:18913070,11282519 +g1,13245:20904794,11282519 +k1,13245:20904794,11282519:0 +h1,13245:23560426,11282519:0,0,0 +k1,13245:32583029,11282519:9022603 +g1,13245:32583029,11282519 +) +(1,13245:6630773,11967374:25952256,424439,106246 +h1,13245:6630773,11967374:0,0,0 +g1,13245:7626635,11967374 +g1,13245:11610082,11967374 +g1,13245:11942036,11967374 +g1,13245:14597668,11967374 +g1,13245:14929622,11967374 +g1,13245:15261576,11967374 +g1,13245:15593530,11967374 +g1,13245:15925484,11967374 +g1,13245:18249162,11967374 +g1,13245:18581116,11967374 +g1,13245:20904794,11967374 +g1,13245:21236748,11967374 +g1,13245:21900656,11967374 +g1,13245:23892380,11967374 +h1,13245:24888242,11967374:0,0,0 +k1,13245:32583029,11967374:7694787 +g1,13245:32583029,11967374 +) +(1,13245:6630773,12652229:25952256,407923,106246 +h1,13245:6630773,12652229:0,0,0 +g1,13245:7626635,12652229 +g1,13245:9950313,12652229 +g1,13245:10282267,12652229 +g1,13245:10614221,12652229 +g1,13245:10946175,12652229 +g1,13245:11278129,12652229 +g1,13245:11610083,12652229 +g1,13245:11942037,12652229 +g1,13245:12273991,12652229 +g1,13245:14597669,12652229 +g1,13245:14929623,12652229 +g1,13245:15261577,12652229 +g1,13245:15593531,12652229 +g1,13245:15925485,12652229 +g1,13245:18249163,12652229 +g1,13245:18581117,12652229 +g1,13245:18913071,12652229 +g1,13245:20904795,12652229 +g1,13245:21236749,12652229 +g1,13245:21568703,12652229 +g1,13245:21900657,12652229 +h1,13245:23560427,12652229:0,0,0 +k1,13245:32583029,12652229:9022602 +g1,13245:32583029,12652229 +) +(1,13245:6630773,13337084:25952256,407923,106246 +h1,13245:6630773,13337084:0,0,0 +g1,13245:7626635,13337084 +g1,13245:9950313,13337084 +g1,13245:10282267,13337084 +g1,13245:10614221,13337084 +g1,13245:10946175,13337084 +g1,13245:11278129,13337084 +g1,13245:11610083,13337084 +g1,13245:14597668,13337084 +g1,13245:14929622,13337084 +g1,13245:15261576,13337084 +g1,13245:15593530,13337084 +g1,13245:15925484,13337084 +g1,13245:18249162,13337084 +g1,13245:18581116,13337084 +g1,13245:20904794,13337084 +g1,13245:23892380,13337084 +h1,13245:24888242,13337084:0,0,0 +k1,13245:32583029,13337084:7694787 +g1,13245:32583029,13337084 +) +(1,13245:6630773,14021939:25952256,407923,106246 +h1,13245:6630773,14021939:0,0,0 +g1,13245:7626635,14021939 +g1,13245:9950313,14021939 +g1,13245:10282267,14021939 +g1,13245:10614221,14021939 +g1,13245:10946175,14021939 +g1,13245:11278129,14021939 +g1,13245:11610083,14021939 +g1,13245:11942037,14021939 +g1,13245:14597669,14021939 +g1,13245:14929623,14021939 +g1,13245:15261577,14021939 +g1,13245:15593531,14021939 +g1,13245:15925485,14021939 +g1,13245:18249163,14021939 +g1,13245:18581117,14021939 +g1,13245:20904795,14021939 +g1,13245:23892381,14021939 +h1,13245:24888243,14021939:0,0,0 +k1,13245:32583029,14021939:7694786 +g1,13245:32583029,14021939 +) +(1,13245:6630773,14706794:25952256,407923,106246 +h1,13245:6630773,14706794:0,0,0 +g1,13245:7626635,14706794 +g1,13245:9950313,14706794 +g1,13245:10282267,14706794 +g1,13245:10614221,14706794 +g1,13245:10946175,14706794 +g1,13245:11278129,14706794 +g1,13245:11610083,14706794 +g1,13245:14597668,14706794 +g1,13245:14929622,14706794 +g1,13245:15261576,14706794 +g1,13245:15593530,14706794 +g1,13245:15925484,14706794 +g1,13245:18249162,14706794 +g1,13245:18581116,14706794 +g1,13245:20904794,14706794 +g1,13245:23892380,14706794 +h1,13245:24888242,14706794:0,0,0 +k1,13245:32583029,14706794:7694787 +g1,13245:32583029,14706794 +) +(1,13245:6630773,15391649:25952256,407923,106246 +h1,13245:6630773,15391649:0,0,0 +g1,13245:7626635,15391649 +g1,13245:9950313,15391649 +g1,13245:10282267,15391649 +g1,13245:10614221,15391649 +g1,13245:10946175,15391649 +g1,13245:11278129,15391649 +g1,13245:11610083,15391649 +g1,13245:11942037,15391649 +g1,13245:12273991,15391649 +g1,13245:14597669,15391649 +g1,13245:14929623,15391649 +g1,13245:15261577,15391649 +g1,13245:15593531,15391649 +g1,13245:15925485,15391649 +g1,13245:18249163,15391649 +g1,13245:18581117,15391649 +g1,13245:18913071,15391649 +g1,13245:20904795,15391649 +g1,13245:21236749,15391649 +g1,13245:21568703,15391649 +g1,13245:21900657,15391649 +h1,13245:23560427,15391649:0,0,0 +k1,13245:32583029,15391649:9022602 +g1,13245:32583029,15391649 +) +(1,13245:6630773,16076504:25952256,398014,0 +h1,13245:6630773,16076504:0,0,0 +g1,13245:7626635,16076504 +k1,13245:7626635,16076504:0 +h1,13245:8622497,16076504:0,0,0 +k1,13245:32583029,16076504:23960532 +g1,13245:32583029,16076504 +) +(1,13245:6630773,16761359:25952256,431045,112852 +h1,13245:6630773,16761359:0,0,0 +g1,13245:7626635,16761359 +g1,13245:10282267,16761359 +g1,13245:12605945,16761359 +g1,13245:12937899,16761359 +g1,13245:13601807,16761359 +g1,13245:15593531,16761359 +g1,13245:17585255,16761359 +g1,13245:19245025,16761359 +g1,13245:20904795,16761359 +g1,13245:22232611,16761359 +g1,13245:23892381,16761359 +g1,13245:25220197,16761359 +g1,13245:26548013,16761359 +g1,13245:27211921,16761359 +g1,13245:27875829,16761359 +h1,13245:28207783,16761359:0,0,0 +k1,13245:32583029,16761359:4375246 +g1,13245:32583029,16761359 +) +(1,13245:6630773,17446214:25952256,398014,0 +h1,13245:6630773,17446214:0,0,0 +h1,13245:7294681,17446214:0,0,0 +k1,13245:32583029,17446214:25288348 +g1,13245:32583029,17446214 +) +(1,13245:6630773,18131069:25952256,431045,112852 +h1,13245:6630773,18131069:0,0,0 +g1,13245:7626635,18131069 +g1,13245:10614220,18131069 +g1,13245:13601805,18131069 +g1,13245:15925483,18131069 +g1,13245:17917207,18131069 +g1,13245:18913069,18131069 +g1,13245:19908931,18131069 +g1,13245:22564563,18131069 +g1,13245:23560425,18131069 +h1,13245:25884103,18131069:0,0,0 +k1,13245:32583029,18131069:6698926 +g1,13245:32583029,18131069 +) +(1,13245:6630773,18815924:25952256,424439,112852 +h1,13245:6630773,18815924:0,0,0 +g1,13245:7626635,18815924 +g1,13245:10614220,18815924 +g1,13245:14265713,18815924 +g1,13245:14597667,18815924 +g1,13245:19908930,18815924 +g1,13245:23560423,18815924 +g1,13245:23892377,18815924 +h1,13245:25884101,18815924:0,0,0 +k1,13245:32583029,18815924:6698928 +g1,13245:32583029,18815924 +) +(1,13245:6630773,19500779:25952256,424439,106246 +h1,13245:6630773,19500779:0,0,0 +g1,13245:7626635,19500779 +g1,13245:11942036,19500779 +g1,13245:12273990,19500779 +g1,13245:13933760,19500779 +g1,13245:14929622,19500779 +g1,13245:15593530,19500779 +g1,13245:16921346,19500779 +g1,13245:17917208,19500779 +g1,13245:19245024,19500779 +g1,13245:19576978,19500779 +g1,13245:22564564,19500779 +g1,13245:23228472,19500779 +k1,13245:23228472,19500779:0 +h1,13245:25552150,19500779:0,0,0 +k1,13245:32583029,19500779:7030879 +g1,13245:32583029,19500779 +) +] +) +g1,13246:32583029,19607025 +g1,13246:6630773,19607025 +g1,13246:6630773,19607025 +g1,13246:32583029,19607025 +g1,13246:32583029,19607025 +) +h1,13246:6630773,19803633:0,0,0 +(1,13250:6630773,20668713:25952256,513147,115847 +h1,13249:6630773,20668713:983040,0,0 +k1,13249:8522510,20668713:280862 +(1,13249:8522510,20668713:0,459977,115847 +r1,13301:10639335,20668713:2116825,575824,115847 +k1,13249:8522510,20668713:-2116825 +) +(1,13249:8522510,20668713:2116825,459977,115847 +k1,13249:8522510,20668713:3277 +h1,13249:10636058,20668713:0,411205,112570 +) +k1,13249:10920197,20668713:280862 +k1,13249:12069411,20668713:280862 +k1,13249:13863499,20668713:280862 +(1,13249:13863499,20668713:0,452978,115847 +r1,13301:17738883,20668713:3875384,568825,115847 +k1,13249:13863499,20668713:-3875384 +) +(1,13249:13863499,20668713:3875384,452978,115847 +k1,13249:13863499,20668713:3277 +h1,13249:17735606,20668713:0,411205,112570 +) +k1,13249:18193415,20668713:280862 +k1,13249:19891165,20668713:280862 +k1,13249:23133599,20668713:280862 +k1,13249:24362112,20668713:280862 +k1,13249:27835888,20668713:280862 +k1,13249:31591469,20668713:280862 +k1,13249:32583029,20668713:0 +) +(1,13250:6630773,21533793:25952256,513147,126483 +k1,13249:8477679,21533793:269454 +k1,13249:12249376,21533793:269453 +k1,13249:13204992,21533793:269454 +k1,13249:14578728,21533793:269454 +k1,13249:15595947,21533793:269453 +k1,13249:18438344,21533793:269454 +k1,13249:20275419,21533793:269454 +k1,13249:21563958,21533793:269454 +k1,13249:24794983,21533793:269453 +k1,13249:27325429,21533793:269454 +k1,13249:28791570,21533793:269454 +k1,13249:30426138,21533793:269453 +k1,13249:31227089,21533793:269454 +k1,13250:32583029,21533793:0 +) +(1,13250:6630773,22398873:25952256,513147,126483 +k1,13249:9457190,22398873:210875 +k1,13249:10319492,22398873:210874 +k1,13249:11278133,22398873:210875 +k1,13249:13082843,22398873:210874 +k1,13249:14710606,22398873:210875 +k1,13249:17967594,22398873:210875 +k1,13249:19126119,22398873:210874 +k1,13249:20356079,22398873:210875 +k1,13249:21715145,22398873:210875 +k1,13249:25070436,22398873:210874 +k1,13249:26743419,22398873:210875 +k1,13249:27945853,22398873:210874 +k1,13249:31821501,22398873:210875 +k1,13249:32583029,22398873:0 +) +(1,13250:6630773,23263953:25952256,513147,134348 +g1,13249:7849087,23263953 +g1,13249:9413431,23263953 +g1,13249:10271952,23263953 +g1,13249:11490266,23263953 +g1,13249:14443973,23263953 +g1,13249:16303884,23263953 +g1,13249:17694558,23263953 +g1,13249:18960058,23263953 +g1,13249:21118813,23263953 +g1,13249:22265693,23263953 +k1,13250:32583029,23263953:6406147 +g1,13250:32583029,23263953 +) +v1,13252:6630773,23948808:0,393216,0 +(1,13265:6630773,29118210:25952256,5562618,196608 +g1,13265:6630773,29118210 +g1,13265:6630773,29118210 +g1,13265:6434165,29118210 +(1,13265:6434165,29118210:0,5562618,196608 +r1,13301:32779637,29118210:26345472,5759226,196608 +k1,13265:6434165,29118210:-26345472 +) +(1,13265:6434165,29118210:26345472,5562618,196608 +[1,13265:6630773,29118210:25952256,5366010,0 +(1,13254:6630773,24183245:25952256,431045,112852 +(1,13253:6630773,24183245:0,0,0 +g1,13253:6630773,24183245 +g1,13253:6630773,24183245 +g1,13253:6303093,24183245 +(1,13253:6303093,24183245:0,0,0 +) +g1,13253:6630773,24183245 +) +k1,13254:6630773,24183245:0 +k1,13254:6630773,24183245:0 +h1,13254:21568700,24183245:0,0,0 +k1,13254:32583029,24183245:11014329 +g1,13254:32583029,24183245 +) +(1,13264:6630773,24999172:25952256,424439,86428 +(1,13256:6630773,24999172:0,0,0 +g1,13256:6630773,24999172 +g1,13256:6630773,24999172 +g1,13256:6303093,24999172 +(1,13256:6303093,24999172:0,0,0 +) +g1,13256:6630773,24999172 +) +g1,13264:7626635,24999172 +g1,13264:7958589,24999172 +g1,13264:8290543,24999172 +g1,13264:9950313,24999172 +g1,13264:11610083,24999172 +g1,13264:13269853,24999172 +g1,13264:14929623,24999172 +k1,13264:14929623,24999172:0 +h1,13264:16257439,24999172:0,0,0 +k1,13264:32583029,24999172:16325590 +g1,13264:32583029,24999172 +) +(1,13264:6630773,25684027:25952256,407923,9908 +h1,13264:6630773,25684027:0,0,0 +g1,13264:7626635,25684027 +g1,13264:8290543,25684027 +g1,13264:8622497,25684027 +g1,13264:8954451,25684027 +g1,13264:9286405,25684027 +g1,13264:9950313,25684027 +g1,13264:10282267,25684027 +g1,13264:10614221,25684027 +g1,13264:10946175,25684027 +g1,13264:11610083,25684027 +g1,13264:11942037,25684027 +g1,13264:12273991,25684027 +g1,13264:12605945,25684027 +g1,13264:13269853,25684027 +g1,13264:13601807,25684027 +g1,13264:13933761,25684027 +g1,13264:14265715,25684027 +g1,13264:14929623,25684027 +g1,13264:15261577,25684027 +g1,13264:15593531,25684027 +g1,13264:15925485,25684027 +h1,13264:16257439,25684027:0,0,0 +k1,13264:32583029,25684027:16325590 +g1,13264:32583029,25684027 +) +(1,13264:6630773,26368882:25952256,407923,9908 +h1,13264:6630773,26368882:0,0,0 +g1,13264:7626635,26368882 +g1,13264:8290543,26368882 +g1,13264:8622497,26368882 +g1,13264:8954451,26368882 +g1,13264:9286405,26368882 +g1,13264:9950313,26368882 +g1,13264:10282267,26368882 +g1,13264:10614221,26368882 +g1,13264:10946175,26368882 +g1,13264:11610083,26368882 +g1,13264:11942037,26368882 +g1,13264:12273991,26368882 +g1,13264:12605945,26368882 +g1,13264:13269853,26368882 +g1,13264:13601807,26368882 +g1,13264:13933761,26368882 +g1,13264:14265715,26368882 +g1,13264:14929623,26368882 +g1,13264:15261577,26368882 +g1,13264:15593531,26368882 +g1,13264:15925485,26368882 +h1,13264:16257439,26368882:0,0,0 +k1,13264:32583029,26368882:16325590 +g1,13264:32583029,26368882 +) +(1,13264:6630773,27053737:25952256,407923,9908 +h1,13264:6630773,27053737:0,0,0 +g1,13264:7626635,27053737 +g1,13264:8290543,27053737 +g1,13264:8622497,27053737 +g1,13264:8954451,27053737 +g1,13264:9286405,27053737 +g1,13264:9950313,27053737 +g1,13264:10282267,27053737 +g1,13264:10614221,27053737 +g1,13264:10946175,27053737 +g1,13264:11610083,27053737 +g1,13264:11942037,27053737 +g1,13264:12273991,27053737 +g1,13264:12605945,27053737 +g1,13264:13269853,27053737 +g1,13264:13601807,27053737 +g1,13264:13933761,27053737 +g1,13264:14265715,27053737 +g1,13264:14929623,27053737 +g1,13264:15261577,27053737 +g1,13264:15593531,27053737 +g1,13264:15925485,27053737 +h1,13264:16257439,27053737:0,0,0 +k1,13264:32583029,27053737:16325590 +g1,13264:32583029,27053737 +) +(1,13264:6630773,27738592:25952256,407923,9908 +h1,13264:6630773,27738592:0,0,0 +g1,13264:7626635,27738592 +g1,13264:8290543,27738592 +g1,13264:8622497,27738592 +g1,13264:8954451,27738592 +g1,13264:9286405,27738592 +g1,13264:9950313,27738592 +g1,13264:10282267,27738592 +g1,13264:10614221,27738592 +g1,13264:10946175,27738592 +g1,13264:11610083,27738592 +g1,13264:11942037,27738592 +g1,13264:12273991,27738592 +g1,13264:12605945,27738592 +g1,13264:13269853,27738592 +g1,13264:13601807,27738592 +g1,13264:13933761,27738592 +g1,13264:14265715,27738592 +g1,13264:14929623,27738592 +g1,13264:15261577,27738592 +g1,13264:15593531,27738592 +g1,13264:15925485,27738592 +h1,13264:16257439,27738592:0,0,0 +k1,13264:32583029,27738592:16325590 +g1,13264:32583029,27738592 +) +(1,13264:6630773,28423447:25952256,407923,9908 +h1,13264:6630773,28423447:0,0,0 +g1,13264:7626635,28423447 +g1,13264:8290543,28423447 +g1,13264:8622497,28423447 +g1,13264:8954451,28423447 +g1,13264:9286405,28423447 +g1,13264:9950313,28423447 +g1,13264:10282267,28423447 +g1,13264:10614221,28423447 +g1,13264:10946175,28423447 +g1,13264:11610083,28423447 +g1,13264:11942037,28423447 +g1,13264:12273991,28423447 +g1,13264:12605945,28423447 +g1,13264:13269853,28423447 +g1,13264:13601807,28423447 +g1,13264:13933761,28423447 +g1,13264:14265715,28423447 +g1,13264:14929623,28423447 +g1,13264:15261577,28423447 +g1,13264:15593531,28423447 +g1,13264:15925485,28423447 +h1,13264:16257439,28423447:0,0,0 +k1,13264:32583029,28423447:16325590 +g1,13264:32583029,28423447 +) +(1,13264:6630773,29108302:25952256,407923,9908 +h1,13264:6630773,29108302:0,0,0 +g1,13264:7626635,29108302 +g1,13264:8290543,29108302 +g1,13264:8622497,29108302 +g1,13264:8954451,29108302 +g1,13264:9950313,29108302 +g1,13264:10282267,29108302 +g1,13264:10614221,29108302 +g1,13264:11610083,29108302 +g1,13264:11942037,29108302 +g1,13264:12273991,29108302 +g1,13264:13269853,29108302 +g1,13264:13601807,29108302 +g1,13264:13933761,29108302 +g1,13264:14929623,29108302 +g1,13264:15261577,29108302 +g1,13264:15593531,29108302 +k1,13264:15593531,29108302:0 +h1,13264:16257439,29108302:0,0,0 +k1,13264:32583029,29108302:16325590 +g1,13264:32583029,29108302 +) +] +) +g1,13265:32583029,29118210 +g1,13265:6630773,29118210 +g1,13265:6630773,29118210 +g1,13265:32583029,29118210 +g1,13265:32583029,29118210 +) +h1,13265:6630773,29314818:0,0,0 +v1,13269:6630773,29999673:0,393216,0 +(1,13297:6630773,45510161:25952256,15903704,196608 +g1,13297:6630773,45510161 +g1,13297:6630773,45510161 +g1,13297:6434165,45510161 +(1,13297:6434165,45510161:0,15903704,196608 +r1,13301:32779637,45510161:26345472,16100312,196608 +k1,13297:6434165,45510161:-26345472 +) +(1,13297:6434165,45510161:26345472,15903704,196608 +[1,13297:6630773,45510161:25952256,15707096,0 +(1,13271:6630773,30234110:25952256,431045,106246 +(1,13270:6630773,30234110:0,0,0 +g1,13270:6630773,30234110 +g1,13270:6630773,30234110 +g1,13270:6303093,30234110 +(1,13270:6303093,30234110:0,0,0 +) +g1,13270:6630773,30234110 +) +k1,13271:6630773,30234110:0 +h1,13271:11610082,30234110:0,0,0 +k1,13271:32583030,30234110:20972948 +g1,13271:32583030,30234110 +) +(1,13296:6630773,31021960:25952256,398014,0 +(1,13273:6630773,31021960:0,0,0 +g1,13273:6630773,31021960 +g1,13273:6630773,31021960 +g1,13273:6303093,31021960 +(1,13273:6303093,31021960:0,0,0 +) +g1,13273:6630773,31021960 +) +h1,13296:7294681,31021960:0,0,0 +k1,13296:32583029,31021960:25288348 +g1,13296:32583029,31021960 +) +(1,13296:6630773,31706815:25952256,424439,8257 +h1,13296:6630773,31706815:0,0,0 +g1,13296:7626635,31706815 +h1,13296:9286405,31706815:0,0,0 +k1,13296:32583029,31706815:23296624 +g1,13296:32583029,31706815 +) +(1,13296:6630773,32391670:25952256,431045,106246 +h1,13296:6630773,32391670:0,0,0 +k1,13296:7515984,32391670:221303 +k1,13296:11056826,32391670:221303 +k1,13296:11610083,32391670:221303 +k1,13296:13491156,32391670:221303 +k1,13296:14044413,32391670:221303 +k1,13296:16257440,32391670:221303 +k1,13296:17806559,32391670:221303 +k1,13296:18359816,32391670:221303 +k1,13296:22896520,32391670:221303 +k1,13296:26105408,32391670:221303 +k1,13296:26658665,32391670:221303 +k1,13296:30199507,32391670:221303 +k1,13296:30752764,32391670:221303 +h1,13296:34404257,32391670:0,0,0 +k1,13296:34404257,32391670:0 +k1,13296:34404257,32391670:0 +) +(1,13296:6630773,33076525:25952256,398014,0 +h1,13296:6630773,33076525:0,0,0 +h1,13296:7294681,33076525:0,0,0 +k1,13296:32583029,33076525:25288348 +g1,13296:32583029,33076525 +) +(1,13296:6630773,33761380:25952256,424439,6605 +h1,13296:6630773,33761380:0,0,0 +g1,13296:7626635,33761380 +h1,13296:10946174,33761380:0,0,0 +k1,13296:32583030,33761380:21636856 +g1,13296:32583030,33761380 +) +(1,13296:6630773,34446235:25952256,424439,86428 +h1,13296:6630773,34446235:0,0,0 +g1,13296:7626635,34446235 +g1,13296:7958589,34446235 +g1,13296:8290543,34446235 +g1,13296:8622497,34446235 +g1,13296:9950313,34446235 +g1,13296:10282267,34446235 +g1,13296:10614221,34446235 +g1,13296:10946175,34446235 +g1,13296:11278129,34446235 +g1,13296:12273991,34446235 +g1,13296:14597669,34446235 +g1,13296:14929623,34446235 +g1,13296:15261577,34446235 +g1,13296:15593531,34446235 +g1,13296:15925485,34446235 +g1,13296:16921347,34446235 +g1,13296:17253301,34446235 +g1,13296:17585255,34446235 +g1,13296:17917209,34446235 +h1,13296:18913071,34446235:0,0,0 +k1,13296:32583029,34446235:13669958 +g1,13296:32583029,34446235 +) +(1,13296:6630773,35131090:25952256,407923,9908 +h1,13296:6630773,35131090:0,0,0 +g1,13296:7626635,35131090 +g1,13296:9950313,35131090 +g1,13296:12273991,35131090 +g1,13296:14597669,35131090 +g1,13296:14929623,35131090 +g1,13296:16921347,35131090 +g1,13296:17253301,35131090 +h1,13296:18913071,35131090:0,0,0 +k1,13296:32583029,35131090:13669958 +g1,13296:32583029,35131090 +) +(1,13296:6630773,35815945:25952256,398014,0 +h1,13296:6630773,35815945:0,0,0 +h1,13296:7294681,35815945:0,0,0 +k1,13296:32583029,35815945:25288348 +g1,13296:32583029,35815945 +) +(1,13296:6630773,36500800:25952256,431045,8257 +h1,13296:6630773,36500800:0,0,0 +g1,13296:7626635,36500800 +h1,13296:11942036,36500800:0,0,0 +k1,13296:32583028,36500800:20640992 +g1,13296:32583028,36500800 +) +(1,13296:6630773,37185655:25952256,424439,79822 +h1,13296:6630773,37185655:0,0,0 +g1,13296:7626635,37185655 +g1,13296:7958589,37185655 +g1,13296:8290543,37185655 +g1,13296:8622497,37185655 +g1,13296:8954451,37185655 +g1,13296:9286405,37185655 +g1,13296:9618359,37185655 +g1,13296:9950313,37185655 +g1,13296:10282267,37185655 +g1,13296:10614221,37185655 +g1,13296:10946175,37185655 +g1,13296:11278129,37185655 +g1,13296:11610083,37185655 +g1,13296:14597668,37185655 +g1,13296:16257438,37185655 +g1,13296:18249162,37185655 +g1,13296:18913070,37185655 +g1,13296:20904794,37185655 +k1,13296:20904794,37185655:0 +h1,13296:23560426,37185655:0,0,0 +k1,13296:32583029,37185655:9022603 +g1,13296:32583029,37185655 +) +(1,13296:6630773,37870510:25952256,424439,106246 +h1,13296:6630773,37870510:0,0,0 +g1,13296:7626635,37870510 +g1,13296:11610082,37870510 +g1,13296:11942036,37870510 +g1,13296:12273990,37870510 +g1,13296:14597668,37870510 +g1,13296:14929622,37870510 +g1,13296:15261576,37870510 +g1,13296:15593530,37870510 +g1,13296:15925484,37870510 +g1,13296:18249162,37870510 +g1,13296:18581116,37870510 +g1,13296:20904794,37870510 +g1,13296:21236748,37870510 +g1,13296:21900656,37870510 +g1,13296:23892380,37870510 +h1,13296:24888242,37870510:0,0,0 +k1,13296:32583029,37870510:7694787 +g1,13296:32583029,37870510 +) +(1,13296:6630773,38555365:25952256,407923,106246 +h1,13296:6630773,38555365:0,0,0 +g1,13296:7626635,38555365 +g1,13296:9950313,38555365 +g1,13296:10282267,38555365 +g1,13296:10614221,38555365 +g1,13296:10946175,38555365 +g1,13296:11278129,38555365 +g1,13296:11610083,38555365 +g1,13296:11942037,38555365 +g1,13296:12273991,38555365 +g1,13296:14597669,38555365 +g1,13296:14929623,38555365 +g1,13296:15261577,38555365 +g1,13296:15593531,38555365 +g1,13296:15925485,38555365 +g1,13296:18249163,38555365 +g1,13296:18581117,38555365 +g1,13296:18913071,38555365 +g1,13296:20904795,38555365 +g1,13296:23892381,38555365 +h1,13296:24888243,38555365:0,0,0 +k1,13296:32583029,38555365:7694786 +g1,13296:32583029,38555365 +) +(1,13296:6630773,39240220:25952256,407923,106246 +h1,13296:6630773,39240220:0,0,0 +g1,13296:7626635,39240220 +g1,13296:9950313,39240220 +g1,13296:10282267,39240220 +g1,13296:10614221,39240220 +g1,13296:10946175,39240220 +g1,13296:11278129,39240220 +g1,13296:11610083,39240220 +g1,13296:11942037,39240220 +g1,13296:12273991,39240220 +g1,13296:14597669,39240220 +g1,13296:14929623,39240220 +g1,13296:15261577,39240220 +g1,13296:15593531,39240220 +g1,13296:15925485,39240220 +g1,13296:18249163,39240220 +g1,13296:18581117,39240220 +g1,13296:18913071,39240220 +g1,13296:20904795,39240220 +g1,13296:23892381,39240220 +h1,13296:24888243,39240220:0,0,0 +k1,13296:32583029,39240220:7694786 +g1,13296:32583029,39240220 +) +(1,13296:6630773,39925075:25952256,407923,106246 +h1,13296:6630773,39925075:0,0,0 +g1,13296:7626635,39925075 +g1,13296:9950313,39925075 +g1,13296:10282267,39925075 +g1,13296:10614221,39925075 +g1,13296:10946175,39925075 +g1,13296:11278129,39925075 +g1,13296:11610083,39925075 +g1,13296:11942037,39925075 +g1,13296:14597669,39925075 +g1,13296:14929623,39925075 +g1,13296:15261577,39925075 +g1,13296:15593531,39925075 +g1,13296:15925485,39925075 +g1,13296:18249163,39925075 +g1,13296:18581117,39925075 +g1,13296:20904795,39925075 +g1,13296:23892381,39925075 +h1,13296:24888243,39925075:0,0,0 +k1,13296:32583029,39925075:7694786 +g1,13296:32583029,39925075 +) +(1,13296:6630773,40609930:25952256,407923,106246 +h1,13296:6630773,40609930:0,0,0 +g1,13296:7626635,40609930 +g1,13296:9950313,40609930 +g1,13296:10282267,40609930 +g1,13296:10614221,40609930 +g1,13296:10946175,40609930 +g1,13296:11278129,40609930 +g1,13296:11610083,40609930 +g1,13296:11942037,40609930 +g1,13296:14597669,40609930 +g1,13296:14929623,40609930 +g1,13296:15261577,40609930 +g1,13296:15593531,40609930 +g1,13296:15925485,40609930 +g1,13296:18249163,40609930 +g1,13296:18581117,40609930 +g1,13296:20904795,40609930 +g1,13296:23892381,40609930 +h1,13296:24888243,40609930:0,0,0 +k1,13296:32583029,40609930:7694786 +g1,13296:32583029,40609930 +) +(1,13296:6630773,41294785:25952256,407923,106246 +h1,13296:6630773,41294785:0,0,0 +g1,13296:7626635,41294785 +g1,13296:9950313,41294785 +g1,13296:10282267,41294785 +g1,13296:10614221,41294785 +g1,13296:10946175,41294785 +g1,13296:11278129,41294785 +g1,13296:11610083,41294785 +g1,13296:11942037,41294785 +g1,13296:14597669,41294785 +g1,13296:14929623,41294785 +g1,13296:15261577,41294785 +g1,13296:15593531,41294785 +g1,13296:15925485,41294785 +g1,13296:18249163,41294785 +g1,13296:18581117,41294785 +g1,13296:20904795,41294785 +g1,13296:23892381,41294785 +h1,13296:24888243,41294785:0,0,0 +k1,13296:32583029,41294785:7694786 +g1,13296:32583029,41294785 +) +(1,13296:6630773,41979640:25952256,398014,0 +h1,13296:6630773,41979640:0,0,0 +g1,13296:7626635,41979640 +k1,13296:7626635,41979640:0 +h1,13296:8622497,41979640:0,0,0 +k1,13296:32583029,41979640:23960532 +g1,13296:32583029,41979640 +) +(1,13296:6630773,42664495:25952256,431045,112852 +h1,13296:6630773,42664495:0,0,0 +g1,13296:7626635,42664495 +g1,13296:10282267,42664495 +g1,13296:12605945,42664495 +g1,13296:12937899,42664495 +g1,13296:13601807,42664495 +g1,13296:15593531,42664495 +g1,13296:17585255,42664495 +g1,13296:19245025,42664495 +g1,13296:20904795,42664495 +g1,13296:22232611,42664495 +g1,13296:23892381,42664495 +g1,13296:25220197,42664495 +g1,13296:26548013,42664495 +g1,13296:27211921,42664495 +g1,13296:27875829,42664495 +h1,13296:28207783,42664495:0,0,0 +k1,13296:32583029,42664495:4375246 +g1,13296:32583029,42664495 +) +(1,13296:6630773,43349350:25952256,398014,0 +h1,13296:6630773,43349350:0,0,0 +h1,13296:7294681,43349350:0,0,0 +k1,13296:32583029,43349350:25288348 +g1,13296:32583029,43349350 +) +(1,13296:6630773,44034205:25952256,431045,112852 +h1,13296:6630773,44034205:0,0,0 +g1,13296:7626635,44034205 +g1,13296:10614220,44034205 +g1,13296:13601805,44034205 +g1,13296:15925483,44034205 +g1,13296:17917207,44034205 +g1,13296:18913069,44034205 +g1,13296:19908931,44034205 +g1,13296:22564563,44034205 +g1,13296:23560425,44034205 +h1,13296:25884103,44034205:0,0,0 +k1,13296:32583029,44034205:6698926 +g1,13296:32583029,44034205 +) +(1,13296:6630773,44719060:25952256,424439,112852 +h1,13296:6630773,44719060:0,0,0 +g1,13296:7626635,44719060 +g1,13296:10614220,44719060 +g1,13296:14265713,44719060 +g1,13296:14597667,44719060 +g1,13296:19908930,44719060 +g1,13296:23560423,44719060 +g1,13296:23892377,44719060 +h1,13296:25884101,44719060:0,0,0 +k1,13296:32583029,44719060:6698928 +g1,13296:32583029,44719060 +) +(1,13296:6630773,45403915:25952256,424439,106246 +h1,13296:6630773,45403915:0,0,0 +g1,13296:7626635,45403915 +g1,13296:11942036,45403915 +g1,13296:12273990,45403915 +g1,13296:13933760,45403915 +g1,13296:14929622,45403915 +g1,13296:15593530,45403915 +g1,13296:16921346,45403915 +g1,13296:17917208,45403915 +g1,13296:19245024,45403915 +g1,13296:19576978,45403915 +g1,13296:22564564,45403915 +g1,13296:23228472,45403915 +k1,13296:23228472,45403915:0 +h1,13296:25552150,45403915:0,0,0 +k1,13296:32583029,45403915:7030879 +g1,13296:32583029,45403915 +) +] +) +g1,13297:32583029,45510161 +g1,13297:6630773,45510161 +g1,13297:6630773,45510161 +g1,13297:32583029,45510161 +g1,13297:32583029,45510161 +) +h1,13297:6630773,45706769:0,0,0 +] +(1,13301:32583029,45706769:0,0,0 +g1,13301:32583029,45706769 +) +) +] +(1,13301:6630773,47279633:25952256,0,0 +h1,13301:6630773,47279633:25952256,0,0 +) +] +(1,13301:4262630,4025873:0,0,0 +[1,13301:-473656,4025873:0,0,0 +(1,13301:-473656,-710413:0,0,0 +(1,13301:-473656,-710413:0,0,0 +g1,13301:-473656,-710413 +) +g1,13301:-473656,-710413 +) +] +) +] +!32265 +}215 +Input:2009:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2010:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2011:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2012:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2013:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2014:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2015:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2016:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2017:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2018:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2019:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2020:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2021:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2022:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2023:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2024:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2025:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2026:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2027:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1798 +{216 +[1,13346:4262630,47279633:28320399,43253760,0 +(1,13346:4262630,4025873:0,0,0 +[1,13346:-473656,4025873:0,0,0 +(1,13346:-473656,-710413:0,0,0 +(1,13346:-473656,-644877:0,0,0 +k1,13346:-473656,-644877:-65536 +) +(1,13346:-473656,4736287:0,0,0 +k1,13346:-473656,4736287:5209943 +) +g1,13346:-473656,-710413 ) ] ) -[1,13773:6630773,47279633:25952256,43253760,0 -[1,13773:6630773,4812305:25952256,786432,0 -(1,13773:6630773,4812305:25952256,513147,126483 -(1,13773:6630773,4812305:25952256,513147,126483 -g1,13773:3078558,4812305 -[1,13773:3078558,4812305:0,0,0 -(1,13773:3078558,2439708:0,1703936,0 -k1,13773:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,13773:2537886,2439708:1179648,16384,0 +[1,13346:6630773,47279633:25952256,43253760,0 +[1,13346:6630773,4812305:25952256,786432,0 +(1,13346:6630773,4812305:25952256,505283,134348 +(1,13346:6630773,4812305:25952256,505283,134348 +g1,13346:3078558,4812305 +[1,13346:3078558,4812305:0,0,0 +(1,13346:3078558,2439708:0,1703936,0 +k1,13346:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,13346:2537886,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,13773:3078558,1915420:16384,1179648,0 +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,13346:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] ) ) ) ] -[1,13773:3078558,4812305:0,0,0 -(1,13773:3078558,2439708:0,1703936,0 -g1,13773:29030814,2439708 -g1,13773:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,13773:36151628,1915420:16384,1179648,0 +[1,13346:3078558,4812305:0,0,0 +(1,13346:3078558,2439708:0,1703936,0 +g1,13346:29030814,2439708 +g1,13346:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,13346:36151628,1915420:16384,1179648,0 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,13773:37855564,2439708:1179648,16384,0 +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,13346:37855564,2439708:1179648,16384,0 ) ) -k1,13773:3078556,2439708:-34777008 +k1,13346:3078556,2439708:-34777008 ) ] -[1,13773:3078558,4812305:0,0,0 -(1,13773:3078558,49800853:0,16384,2228224 -k1,13773:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,13773:2537886,49800853:1179648,16384,0 +[1,13346:3078558,4812305:0,0,0 +(1,13346:3078558,49800853:0,16384,2228224 +k1,13346:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,13346:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,13773:3078558,51504789:16384,1179648,0 +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,13346:3078558,51504789:16384,1179648,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 ) ] ) ) ) ] -[1,13773:3078558,4812305:0,0,0 -(1,13773:3078558,49800853:0,16384,2228224 -g1,13773:29030814,49800853 -g1,13773:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,13773:36151628,51504789:16384,1179648,0 +[1,13346:3078558,4812305:0,0,0 +(1,13346:3078558,49800853:0,16384,2228224 +g1,13346:29030814,49800853 +g1,13346:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,13346:36151628,51504789:16384,1179648,0 ) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 ) ] ) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,13773:37855564,49800853:1179648,16384,0 +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,13346:37855564,49800853:1179648,16384,0 ) ) -k1,13773:3078556,49800853:-34777008 +k1,13346:3078556,49800853:-34777008 ) ] -g1,13773:6630773,4812305 -k1,13773:19540057,4812305:11713907 -g1,13773:21162728,4812305 -g1,13773:21985204,4812305 -g1,13773:24539797,4812305 -g1,13773:25949476,4812305 -g1,13773:28728857,4812305 -g1,13773:29852144,4812305 -) -) -] -[1,13773:6630773,45706769:25952256,40108032,0 -(1,13773:6630773,45706769:25952256,40108032,0 -(1,13773:6630773,45706769:0,0,0 -g1,13773:6630773,45706769 -) -[1,13773:6630773,45706769:25952256,40108032,0 -v1,13757:6630773,6254097:0,393216,0 -(1,13757:6630773,16622873:25952256,10761992,0 -g1,13757:6630773,16622873 -g1,13757:6303093,16622873 -r1,13773:6401397,16622873:98304,10761992,0 -g1,13757:6600626,16622873 -g1,13757:6797234,16622873 -[1,13757:6797234,16622873:25785795,10761992,0 -v1,13735:6797234,6254097:0,393216,0 -(1,13755:6797234,15901977:25785795,10041096,196608 -g1,13755:6797234,15901977 -g1,13755:6797234,15901977 -g1,13755:6600626,15901977 -(1,13755:6600626,15901977:0,10041096,196608 -r1,13773:32779637,15901977:26179011,10237704,196608 -k1,13755:6600625,15901977:-26179012 -) -(1,13755:6600626,15901977:26179011,10041096,196608 -[1,13755:6797234,15901977:25785795,9844488,0 -(1,13737:6797234,6468007:25785795,410518,31456 -(1,13736:6797234,6468007:0,0,0 -g1,13736:6797234,6468007 -g1,13736:6797234,6468007 -g1,13736:6469554,6468007 -(1,13736:6469554,6468007:0,0,0 -) -g1,13736:6797234,6468007 -) -h1,13737:10907128,6468007:0,0,0 -k1,13737:32583028,6468007:21675900 -g1,13737:32583028,6468007 -) -(1,13754:6797234,7134185:25785795,410518,31456 -(1,13739:6797234,7134185:0,0,0 -g1,13739:6797234,7134185 -g1,13739:6797234,7134185 -g1,13739:6469554,7134185 -(1,13739:6469554,7134185:0,0,0 -) -g1,13739:6797234,7134185 -) -g1,13754:7745671,7134185 -h1,13754:9958691,7134185:0,0,0 -k1,13754:32583029,7134185:22624338 -g1,13754:32583029,7134185 -) -(1,13754:6797234,7800363:25785795,404226,76021 -h1,13754:6797234,7800363:0,0,0 -g1,13754:7745671,7800363 -g1,13754:9010254,7800363 -h1,13754:10274837,7800363:0,0,0 -k1,13754:32583029,7800363:22308192 -g1,13754:32583029,7800363 -) -(1,13754:6797234,8466541:25785795,379060,0 -h1,13754:6797234,8466541:0,0,0 -h1,13754:7429525,8466541:0,0,0 -k1,13754:32583029,8466541:25153504 -g1,13754:32583029,8466541 -) -(1,13754:6797234,9132719:25785795,410518,31456 -h1,13754:6797234,9132719:0,0,0 -g1,13754:7745671,9132719 -h1,13754:10274836,9132719:0,0,0 -k1,13754:32583028,9132719:22308192 -g1,13754:32583028,9132719 -) -(1,13754:6797234,9798897:25785795,404226,76021 -h1,13754:6797234,9798897:0,0,0 -g1,13754:7745671,9798897 -g1,13754:9010254,9798897 -h1,13754:9326400,9798897:0,0,0 -k1,13754:32583028,9798897:23256628 -g1,13754:32583028,9798897 -) -(1,13754:6797234,10465075:25785795,379060,0 -h1,13754:6797234,10465075:0,0,0 -h1,13754:7429525,10465075:0,0,0 -k1,13754:32583029,10465075:25153504 -g1,13754:32583029,10465075 -) -(1,13754:6797234,11131253:25785795,410518,31456 -h1,13754:6797234,11131253:0,0,0 -g1,13754:7745671,11131253 -h1,13754:9958691,11131253:0,0,0 -k1,13754:32583029,11131253:22624338 -g1,13754:32583029,11131253 -) -(1,13754:6797234,11797431:25785795,404226,76021 -h1,13754:6797234,11797431:0,0,0 -g1,13754:7745671,11797431 -g1,13754:9010254,11797431 -k1,13754:9010254,11797431:0 -h1,13754:12804002,11797431:0,0,0 -k1,13754:32583030,11797431:19779028 -g1,13754:32583030,11797431 -) -(1,13754:6797234,12463609:25785795,379060,0 -h1,13754:6797234,12463609:0,0,0 -h1,13754:7429525,12463609:0,0,0 -k1,13754:32583029,12463609:25153504 -g1,13754:32583029,12463609 -) -(1,13754:6797234,13129787:25785795,410518,101187 -h1,13754:6797234,13129787:0,0,0 -g1,13754:7745671,13129787 -h1,13754:10590982,13129787:0,0,0 -k1,13754:32583030,13129787:21992048 -g1,13754:32583030,13129787 -) -(1,13754:6797234,13795965:25785795,404226,76021 -h1,13754:6797234,13795965:0,0,0 -g1,13754:7745671,13795965 -g1,13754:9010254,13795965 -h1,13754:9326400,13795965:0,0,0 -k1,13754:32583028,13795965:23256628 -g1,13754:32583028,13795965 -) -(1,13754:6797234,14462143:25785795,379060,0 -h1,13754:6797234,14462143:0,0,0 -h1,13754:7429525,14462143:0,0,0 -k1,13754:32583029,14462143:25153504 -g1,13754:32583029,14462143 -) -(1,13754:6797234,15128321:25785795,410518,107478 -h1,13754:6797234,15128321:0,0,0 -g1,13754:7745671,15128321 -h1,13754:11539419,15128321:0,0,0 -k1,13754:32583029,15128321:21043610 -g1,13754:32583029,15128321 -) -(1,13754:6797234,15794499:25785795,404226,107478 -h1,13754:6797234,15794499:0,0,0 -g1,13754:7745671,15794499 -g1,13754:9010254,15794499 -h1,13754:12487856,15794499:0,0,0 -k1,13754:32583028,15794499:20095172 -g1,13754:32583028,15794499 -) -] -) -g1,13755:32583029,15901977 -g1,13755:6797234,15901977 -g1,13755:6797234,15901977 -g1,13755:32583029,15901977 -g1,13755:32583029,15901977 -) -h1,13755:6797234,16098585:0,0,0 -] -g1,13757:32583029,16622873 -) -h1,13757:6630773,16622873:0,0,0 -(1,13760:6630773,17988649:25952256,513147,134348 -h1,13759:6630773,17988649:983040,0,0 -k1,13759:10232881,17988649:221106 -(1,13759:10232881,17988649:0,452978,115847 -r1,13773:13053130,17988649:2820249,568825,115847 -k1,13759:10232881,17988649:-2820249 -) -(1,13759:10232881,17988649:2820249,452978,115847 -k1,13759:10232881,17988649:3277 -h1,13759:13049853,17988649:0,411205,112570 -) -k1,13759:13447907,17988649:221107 -k1,13759:16759036,17988649:221106 -k1,13759:17927794,17988649:221107 -(1,13759:17927794,17988649:0,452978,115847 -r1,13773:19341195,17988649:1413401,568825,115847 -k1,13759:17927794,17988649:-1413401 -) -(1,13759:17927794,17988649:1413401,452978,115847 -k1,13759:17927794,17988649:3277 -h1,13759:19337918,17988649:0,411205,112570 -) -k1,13759:19562301,17988649:221106 -k1,13759:20399445,17988649:221106 -k1,13759:22899239,17988649:221107 -h1,13759:24441957,17988649:0,0,0 -k1,13759:24663063,17988649:221106 -k1,13759:25693539,17988649:221106 -k1,13759:27412799,17988649:221107 -h1,13759:28608176,17988649:0,0,0 -k1,13759:29002952,17988649:221106 -k1,13759:30328341,17988649:221107 -k1,13759:31297213,17988649:221106 -k1,13759:32583029,17988649:0 -) -(1,13760:6630773,18830137:25952256,513147,122846 -g1,13759:8343228,18830137 -g1,13759:9936408,18830137 -g1,13759:12453645,18830137 -g1,13759:14365330,18830137 -g1,13759:15958510,18830137 -(1,13759:15958510,18830137:0,452978,122846 -r1,13773:17723623,18830137:1765113,575824,122846 -k1,13759:15958510,18830137:-1765113 -) -(1,13759:15958510,18830137:1765113,452978,122846 -k1,13759:15958510,18830137:3277 -h1,13759:17720346,18830137:0,411205,112570 -) -k1,13760:32583029,18830137:14685736 -g1,13760:32583029,18830137 -) -(1,13763:6630773,21637705:25952256,32768,229376 -(1,13763:6630773,21637705:0,32768,229376 -(1,13763:6630773,21637705:5505024,32768,229376 -r1,13773:12135797,21637705:5505024,262144,229376 -) -k1,13763:6630773,21637705:-5505024 -) -(1,13763:6630773,21637705:25952256,32768,0 -r1,13773:32583029,21637705:25952256,32768,0 -) -) -(1,13763:6630773,23242033:25952256,606339,161218 -(1,13763:6630773,23242033:2464678,582746,14155 -g1,13763:6630773,23242033 -g1,13763:9095451,23242033 -) -g1,13763:12170400,23242033 -g1,13763:13880103,23242033 -g1,13763:15984595,23242033 -k1,13763:32583029,23242033:12437422 -g1,13763:32583029,23242033 -) -(1,13766:6630773,24476737:25952256,513147,126483 -k1,13765:8132148,24476737:304688 -k1,13765:10174851,24476737:304688 -k1,13765:13488297,24476737:304688 -k1,13765:16085433,24476737:304687 -k1,13765:17957742,24476737:304688 -k1,13765:19281515,24476737:304688 -k1,13765:20837285,24476737:304688 -k1,13765:22655199,24476737:304688 -k1,13765:23721415,24476737:304688 -k1,13765:27325184,24476737:304687 -k1,13765:28281300,24476737:304688 -k1,13765:30171959,24476737:304688 -k1,13765:32583029,24476737:0 -) -(1,13766:6630773,25318225:25952256,513147,134348 -k1,13765:9075178,25318225:199142 -k1,13765:12564227,25318225:199142 -k1,13765:13119229,25318225:199142 -k1,13765:15237922,25318225:199143 -k1,13765:16096356,25318225:199142 -k1,13765:17541993,25318225:199142 -k1,13765:19471941,25318225:199142 -k1,13765:20878256,25318225:199142 -k1,13765:22590624,25318225:199142 -k1,13765:23475928,25318225:199142 -k1,13765:24030930,25318225:199142 -k1,13765:26531042,25318225:199143 -k1,13765:28488515,25318225:199142 -k1,13765:29339085,25318225:199142 -k1,13765:31124198,25318225:199142 -k1,13766:32583029,25318225:0 -) -(1,13766:6630773,26159713:25952256,513147,126483 -k1,13765:8373235,26159713:191880 -k1,13765:10810378,26159713:191880 -k1,13765:12615754,26159713:191880 -k1,13765:13826719,26159713:191880 -k1,13765:15749405,26159713:191880 -k1,13765:18191136,26159713:191880 -k1,13765:19887067,26159713:191880 -k1,13765:22798037,26159713:191881 -k1,13765:23751445,26159713:191880 -k1,13765:24299185,26159713:191880 -k1,13765:25594691,26159713:191880 -k1,13765:26445863,26159713:191880 -k1,13765:28938712,26159713:191880 -k1,13765:31089463,26159713:191880 -k1,13765:32583029,26159713:0 -) -(1,13766:6630773,27001201:25952256,505283,134348 -k1,13765:7545303,27001201:228368 -k1,13765:9276411,27001201:228367 -k1,13765:12054785,27001201:228368 -k1,13765:12899190,27001201:228367 -k1,13765:15231264,27001201:228368 -k1,13765:16142517,27001201:228368 -k1,13765:18572894,27001201:228367 -k1,13765:21431877,27001201:228368 -k1,13765:22732414,27001201:228368 -k1,13765:23979866,27001201:228367 -k1,13765:26643552,27001201:228368 -k1,13765:28609934,27001201:228367 -k1,13765:31955194,27001201:228368 -k1,13765:32583029,27001201:0 -) -(1,13766:6630773,27842689:25952256,513147,126483 -g1,13765:11096396,27842689 -g1,13765:13545476,27842689 -g1,13765:14736265,27842689 -g1,13765:17961291,27842689 -g1,13765:19445026,27842689 -g1,13765:22313536,27842689 -g1,13765:24923835,27842689 -g1,13765:26314509,27842689 -g1,13765:28814707,27842689 -k1,13766:32583029,27842689:1523059 -g1,13766:32583029,27842689 -) -(1,13768:6630773,28684177:25952256,513147,134348 -h1,13767:6630773,28684177:983040,0,0 -k1,13767:9379517,28684177:220365 -k1,13767:10259174,28684177:220365 -k1,13767:11498623,28684177:220364 -k1,13767:13706695,28684177:220365 -k1,13767:14944834,28684177:220365 -k1,13767:16859960,28684177:220365 -k1,13767:18935648,28684177:220364 -k1,13767:19842175,28684177:220365 -k1,13767:23054259,28684177:220365 -k1,13767:25894753,28684177:220365 -k1,13767:29161230,28684177:220364 -k1,13767:30329246,28684177:220365 -k1,13768:32583029,28684177:0 -) -(1,13768:6630773,29525665:25952256,513147,126483 -k1,13767:8451363,29525665:250347 -k1,13767:9986217,29525665:250348 -k1,13767:11228124,29525665:250347 -k1,13767:15609206,29525665:250348 -k1,13767:16475591,29525665:250347 -k1,13767:17745024,29525665:250348 -k1,13767:19192058,29525665:250347 -k1,13767:21445842,29525665:250348 -k1,13767:24110535,29525665:250347 -k1,13767:24976921,29525665:250348 -k1,13767:26246353,29525665:250347 -k1,13767:27863782,29525665:250348 -k1,13767:28773421,29525665:250347 -k1,13767:32583029,29525665:0 -) -(1,13768:6630773,30367153:25952256,513147,134348 -k1,13767:9165453,30367153:216672 -k1,13767:10528350,30367153:216672 -k1,13767:11764107,30367153:216672 -k1,13767:14696591,30367153:216672 -k1,13767:15572555,30367153:216672 -k1,13767:18381831,30367153:216672 -k1,13767:21686560,30367153:216673 -k1,13767:22586117,30367153:216672 -k1,13767:23415551,30367153:216672 -k1,13767:25127755,30367153:216672 -k1,13767:28518991,30367153:216672 -k1,13767:31161806,30367153:216672 -k1,13767:31734338,30367153:216672 -k1,13768:32583029,30367153:0 -) -(1,13768:6630773,31208641:25952256,513147,134348 -k1,13767:10091124,31208641:264816 -k1,13767:12991143,31208641:264816 -k1,13767:14428398,31208641:264816 -k1,13767:17534854,31208641:264815 -k1,13767:18485832,31208641:264816 -k1,13767:19366686,31208641:264816 -k1,13767:20650587,31208641:264816 -k1,13767:22282484,31208641:264816 -k1,13767:23206592,31208641:264816 -k1,13767:25284134,31208641:264816 -k1,13767:29039396,31208641:264815 -k1,13767:29932047,31208641:264816 -k1,13767:31215948,31208641:264816 -k1,13767:32583029,31208641:0 -) -(1,13768:6630773,32050129:25952256,513147,134348 -k1,13767:7565972,32050129:275907 -k1,13767:11745202,32050129:275906 -k1,13767:12680401,32050129:275907 -k1,13767:15411942,32050129:275907 -k1,13767:17338045,32050129:275906 -k1,13767:19056399,32050129:275907 -k1,13767:19904435,32050129:275907 -k1,13767:23461073,32050129:275906 -k1,13767:26783093,32050129:275907 -k1,13767:27868369,32050129:275906 -k1,13767:30168683,32050129:275907 -k1,13767:32583029,32050129:0 -) -(1,13768:6630773,32891617:25952256,513147,7863 -g1,13767:9499283,32891617 -g1,13767:12304223,32891617 -g1,13767:13162744,32891617 -g1,13767:14381058,32891617 -k1,13768:32583029,32891617:16638937 -g1,13768:32583029,32891617 -) -(1,13770:6630773,33733105:25952256,513147,126483 -h1,13769:6630773,33733105:983040,0,0 -k1,13769:10049841,33733105:161273 -k1,13769:11563777,33733105:161273 -k1,13769:12928291,33733105:161273 -k1,13769:13445424,33733105:161273 -k1,13769:14961982,33733105:161273 -k1,13769:17339683,33733105:161273 -k1,13769:18692402,33733105:161274 -k1,13769:22134407,33733105:161273 -k1,13769:25341793,33733105:161273 -k1,13769:26978281,33733105:161273 -k1,13769:27948924,33733105:161273 -k1,13769:30861398,33733105:161273 -k1,13770:32583029,33733105:0 -) -(1,13770:6630773,34574593:25952256,513147,126483 -k1,13769:7708512,34574593:143196 -k1,13769:9043153,34574593:143196 -k1,13769:10205434,34574593:143196 -k1,13769:12791812,34574593:143196 -k1,13769:15200588,34574593:143196 -k1,13769:15959822,34574593:143196 -k1,13769:17122103,34574593:143196 -k1,13769:19418813,34574593:143197 -k1,13769:21431096,34574593:143196 -k1,13769:22765737,34574593:143196 -k1,13769:25523164,34574593:143196 -k1,13769:26325652,34574593:143196 -k1,13769:27487933,34574593:143196 -k1,13769:30668067,34574593:143196 -k1,13769:32583029,34574593:0 -) -(1,13770:6630773,35416081:25952256,513147,134348 -k1,13769:9121032,35416081:215504 -k1,13769:11598183,35416081:215504 -k1,13769:12429725,35416081:215504 -k1,13769:14434362,35416081:215504 -k1,13769:15539845,35416081:215504 -k1,13769:19261526,35416081:215505 -k1,13769:21702633,35416081:215504 -k1,13769:23923539,35416081:215504 -k1,13769:24900571,35416081:215504 -k1,13769:27594647,35416081:215504 -k1,13769:28493036,35416081:215504 -k1,13769:30870573,35416081:215504 -k1,13769:32583029,35416081:0 -) -(1,13770:6630773,36257569:25952256,513147,126483 -k1,13769:8457043,36257569:153791 -k1,13769:9680382,36257569:153791 -k1,13769:11214361,36257569:153791 -k1,13769:12359712,36257569:153791 -k1,13769:15539300,36257569:153791 -k1,13769:16977597,36257569:153791 -k1,13769:18122948,36257569:153791 -k1,13769:21381179,36257569:153791 -k1,13769:22731657,36257569:153791 -k1,13769:25597328,36257569:153791 -k1,13769:28174640,36257569:153791 -k1,13769:29319991,36257569:153791 -k1,13769:32583029,36257569:0 -) -(1,13770:6630773,37099057:25952256,505283,134348 -k1,13769:8793520,37099057:176351 -k1,13769:10664633,37099057:176352 -k1,13769:11602512,37099057:176351 -k1,13769:14267265,37099057:176351 -k1,13769:16922188,37099057:176351 -k1,13769:18267047,37099057:176352 -k1,13769:21464608,37099057:176351 -k1,13769:25126819,37099057:176351 -k1,13769:27265973,37099057:176351 -k1,13769:28070160,37099057:176352 -k1,13769:29896708,37099057:176351 -k1,13769:32583029,37099057:0 -) -(1,13770:6630773,37940545:25952256,513147,134348 -k1,13769:9034699,37940545:154075 -k1,13769:10207859,37940545:154075 -k1,13769:13383143,37940545:154074 -k1,13769:14528778,37940545:154075 -k1,13769:18759848,37940545:154075 -k1,13769:22218904,37940545:154075 -k1,13769:24056599,37940545:154075 -k1,13769:28287668,37940545:154074 -k1,13769:29726249,37940545:154075 -k1,13769:31400759,37940545:154075 -k1,13770:32583029,37940545:0 -) -(1,13770:6630773,38782033:25952256,513147,126483 -k1,13769:8073829,38782033:214256 -k1,13769:11865695,38782033:214256 -k1,13769:12692713,38782033:214256 -k1,13769:13926053,38782033:214255 -k1,13769:16103112,38782033:214256 -k1,13769:17359390,38782033:214256 -k1,13769:20408733,38782033:214256 -k1,13769:21907495,38782033:214256 -k1,13769:23140836,38782033:214256 -k1,13769:25053130,38782033:214256 -k1,13769:25950270,38782033:214255 -k1,13769:27470659,38782033:214256 -k1,13769:30818191,38782033:214256 -k1,13769:31563944,38782033:214256 -k1,13769:32583029,38782033:0 -) -(1,13770:6630773,39623521:25952256,513147,126483 -k1,13769:8496179,39623521:211933 -k1,13769:9655763,39623521:211933 -k1,13769:10886782,39623521:211934 -k1,13769:12271154,39623521:211933 -k1,13769:15746780,39623521:211933 -k1,13769:17700005,39623521:211933 -k1,13769:20492747,39623521:211934 -k1,13769:21317442,39623521:211933 -k1,13769:22548460,39623521:211933 -k1,13769:24219224,39623521:211933 -k1,13769:26350052,39623521:211934 -k1,13769:27942173,39623521:211933 -k1,13769:29145666,39623521:211933 -k1,13769:32583029,39623521:0 -) -(1,13770:6630773,40465009:25952256,505283,7863 -k1,13769:8169340,40465009:157723 -k1,13769:11574372,40465009:157723 -k1,13769:14205424,40465009:157723 -k1,13769:15647653,40465009:157723 -k1,13769:16824461,40465009:157723 -k1,13769:18723476,40465009:157723 -k1,13769:19412697,40465009:157724 -k1,13769:22155160,40465009:157723 -k1,13769:22940718,40465009:157723 -k1,13769:24790581,40465009:157723 -k1,13769:26645686,40465009:157723 -k1,13769:29005419,40465009:157723 -k1,13769:32583029,40465009:0 -) -(1,13770:6630773,41306497:25952256,513147,134348 -k1,13769:7846794,41306497:224461 -k1,13769:10806071,41306497:224460 -k1,13769:11839902,41306497:224461 -k1,13769:14105154,41306497:224461 -k1,13769:16068940,41306497:224460 -k1,13769:19930649,41306497:224461 -k1,13769:21102761,41306497:224461 -k1,13769:23988638,41306497:224460 -k1,13769:24864527,41306497:224461 -k1,13769:26108073,41306497:224461 -k1,13769:28573864,41306497:224460 -k1,13769:31931601,41306497:224461 -k1,13769:32583029,41306497:0 -) -(1,13770:6630773,42147985:25952256,513147,7863 -g1,13769:8973029,42147985 -g1,13769:10456764,42147985 -g1,13769:11675078,42147985 -g1,13769:13615599,42147985 -g1,13769:14474120,42147985 -g1,13769:15692434,42147985 -g1,13769:17197796,42147985 -g1,13769:20530301,42147985 -g1,13769:21261027,42147985 -g1,13769:22746072,42147985 -g1,13769:25356371,42147985 -g1,13769:26168362,42147985 -g1,13769:27386676,42147985 -k1,13770:32583029,42147985:3233550 -g1,13770:32583029,42147985 -) -(1,13772:6630773,42989473:25952256,513147,134348 -h1,13771:6630773,42989473:983040,0,0 -k1,13771:10041743,42989473:153175 -k1,13771:11186479,42989473:153176 -k1,13771:12852880,42989473:153175 -k1,13771:13622094,42989473:153176 -k1,13771:16842354,42989473:153175 -k1,13771:19571750,42989473:153176 -k1,13771:21118876,42989473:153175 -k1,13771:24678613,42989473:153176 -k1,13771:25483216,42989473:153175 -k1,13771:27222363,42989473:153176 -k1,13771:30171959,42989473:153175 -k1,13771:32583029,42989473:0 -) -(1,13772:6630773,43830961:25952256,513147,126483 -k1,13771:9153035,43830961:276999 -k1,13771:10987825,43830961:276999 -k1,13771:12256383,43830961:276998 -k1,13771:13819198,43830961:276999 -k1,13771:14843963,43830961:276999 -k1,13771:16634188,43830961:276999 -k1,13771:17858837,43830961:276998 -k1,13771:22461868,43830961:276999 -k1,13771:23354905,43830961:276999 -k1,13771:25517375,43830961:276999 -k1,13771:27161454,43830961:276998 -k1,13771:31683875,43830961:276999 -k1,13772:32583029,43830961:0 -) -(1,13772:6630773,44672449:25952256,513147,126483 -k1,13771:9000857,44672449:236887 -k1,13771:9889173,44672449:236888 -k1,13771:10873826,44672449:236887 -k1,13771:14352124,44672449:236887 -k1,13771:17032194,44672449:236888 -k1,13771:18288166,44672449:236887 -k1,13771:20314186,44672449:236887 -k1,13771:21210365,44672449:236887 -k1,13771:21803113,44672449:236888 -k1,13771:23959550,44672449:236887 -k1,13771:25709663,44672449:236887 -k1,13771:26597979,44672449:236888 -k1,13771:30861398,44672449:236887 -k1,13772:32583029,44672449:0 -) -(1,13772:6630773,45513937:25952256,513147,126483 -k1,13771:9450384,45513937:270260 -k1,13771:11904959,45513937:270260 -k1,13771:14451285,45513937:270261 -k1,13771:16971396,45513937:270260 -k1,13771:18345938,45513937:270260 -k1,13771:19363964,45513937:270260 -k1,13771:21147451,45513937:270261 -k1,13771:22103873,45513937:270260 -k1,13771:24692141,45513937:270260 -k1,13771:25613829,45513937:270260 -k1,13771:26631856,45513937:270261 -k1,13771:27589589,45513937:270260 -k1,13771:28511277,45513937:270260 -k1,13771:32583029,45513937:0 -) -] -(1,13773:32583029,45706769:0,0,0 -g1,13773:32583029,45706769 -) -) -] -(1,13773:6630773,47279633:25952256,0,0 -h1,13773:6630773,47279633:25952256,0,0 -) -] -(1,13773:4262630,4025873:0,0,0 -[1,13773:-473656,4025873:0,0,0 -(1,13773:-473656,-710413:0,0,0 -(1,13773:-473656,-710413:0,0,0 -g1,13773:-473656,-710413 -) -g1,13773:-473656,-710413 -) -] -) -] -!22776 -}235 -Input:2090:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2091:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2092:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2093:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2094:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2095:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2096:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2097:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2098:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2099:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2100:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2101:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2102:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2103:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2104:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2105:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2106:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2107:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2108:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2109:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1892 -{236 -[1,13824:4262630,47279633:28320399,43253760,0 -(1,13824:4262630,4025873:0,0,0 -[1,13824:-473656,4025873:0,0,0 -(1,13824:-473656,-710413:0,0,0 -(1,13824:-473656,-644877:0,0,0 -k1,13824:-473656,-644877:-65536 +g1,13346:6630773,4812305 +g1,13346:6630773,4812305 +g1,13346:8843268,4812305 +g1,13346:10880782,4812305 +g1,13346:13281365,4812305 +k1,13346:31387653,4812305:18106288 +) +) +] +[1,13346:6630773,45706769:25952256,40108032,0 +(1,13346:6630773,45706769:25952256,40108032,0 +(1,13346:6630773,45706769:0,0,0 +g1,13346:6630773,45706769 +) +[1,13346:6630773,45706769:25952256,40108032,0 +v1,13301:6630773,6254097:0,393216,0 +(1,13302:6630773,10138562:25952256,4277681,0 +g1,13302:6630773,10138562 +g1,13302:6237557,10138562 +r1,13346:6368629,10138562:131072,4277681,0 +g1,13302:6567858,10138562 +g1,13302:6764466,10138562 +[1,13302:6764466,10138562:25818563,4277681,0 +(1,13302:6764466,6562395:25818563,701514,196608 +(1,13301:6764466,6562395:0,701514,196608 +r1,13346:8863446,6562395:2098980,898122,196608 +k1,13301:6764466,6562395:-2098980 +) +(1,13301:6764466,6562395:2098980,701514,196608 +) +k1,13301:9059985,6562395:196539 +k1,13301:10786203,6562395:327680 +k1,13301:13374806,6562395:196539 +k1,13301:14901727,6562395:196540 +k1,13301:17093837,6562395:196539 +k1,13301:18309461,6562395:196539 +k1,13301:19654191,6562395:196539 +k1,13301:21312838,6562395:196539 +k1,13301:22195539,6562395:196539 +k1,13301:25371346,6562395:196540 +k1,13301:26183923,6562395:196539 +(1,13301:26183923,6562395:0,452978,115847 +r1,13346:30059307,6562395:3875384,568825,115847 +k1,13301:26183923,6562395:-3875384 +) +(1,13301:26183923,6562395:3875384,452978,115847 +k1,13301:26183923,6562395:3277 +h1,13301:30056030,6562395:0,411205,112570 +) +k1,13301:30255846,6562395:196539 +k1,13301:32583029,6562395:0 +) +(1,13302:6764466,7427475:25818563,513147,115847 +k1,13301:7648580,7427475:224822 +k1,13301:8892487,7427475:224822 +k1,13301:10423442,7427475:224822 +k1,13301:11804974,7427475:224822 +k1,13301:12715958,7427475:224822 +k1,13301:13556818,7427475:224822 +(1,13301:13556818,7427475:0,452978,115847 +r1,13346:19542473,7427475:5985655,568825,115847 +k1,13301:13556818,7427475:-5985655 +) +(1,13301:13556818,7427475:5985655,452978,115847 +k1,13301:13556818,7427475:3277 +h1,13301:19539196,7427475:0,411205,112570 +) +k1,13301:19767295,7427475:224822 +k1,13301:22101721,7427475:224822 +k1,13301:23345628,7427475:224822 +k1,13301:26790234,7427475:224822 +k1,13301:29546712,7427475:224822 +k1,13301:30790619,7427475:224822 +k1,13301:32583029,7427475:0 +) +(1,13302:6764466,8292555:25818563,513147,134348 +k1,13301:7627388,8292555:203630 +k1,13301:9725007,8292555:203629 +(1,13301:9725007,8292555:0,414482,115847 +r1,13346:11490120,8292555:1765113,530329,115847 +k1,13301:9725007,8292555:-1765113 +) +(1,13301:9725007,8292555:1765113,414482,115847 +k1,13301:9725007,8292555:3277 +h1,13301:11486843,8292555:0,411205,112570 +) +k1,13301:11693750,8292555:203630 +k1,13301:12622207,8292555:203629 +k1,13301:14110343,8292555:203630 +k1,13301:15333057,8292555:203629 +k1,13301:16728132,8292555:203630 +k1,13301:18667154,8292555:203629 +(1,13301:18667154,8292555:0,452978,115847 +r1,13346:22542538,8292555:3875384,568825,115847 +k1,13301:18667154,8292555:-3875384 +) +(1,13301:18667154,8292555:3875384,452978,115847 +k1,13301:18667154,8292555:3277 +h1,13301:22539261,8292555:0,411205,112570 +) +k1,13301:22746168,8292555:203630 +k1,13301:25723281,8292555:203629 +k1,13301:29231892,8292555:203630 +k1,13301:30086949,8292555:203629 +k1,13301:31575085,8292555:203630 +k1,13302:32583029,8292555:0 +) +(1,13302:6764466,9157635:25818563,513147,126483 +k1,13301:9008024,9157635:246676 +k1,13301:11110024,9157635:246676 +k1,13301:12750651,9157635:246676 +(1,13301:12750651,9157635:0,452978,115847 +r1,13346:18736306,9157635:5985655,568825,115847 +k1,13301:12750651,9157635:-5985655 +) +(1,13301:12750651,9157635:5985655,452978,115847 +k1,13301:12750651,9157635:3277 +h1,13301:18733029,9157635:0,411205,112570 +) +k1,13301:19156652,9157635:246676 +k1,13301:22256109,9157635:246675 +k1,13301:23799743,9157635:246676 +(1,13301:23799743,9157635:0,452978,115847 +r1,13346:28026839,9157635:4227096,568825,115847 +k1,13301:23799743,9157635:-4227096 +) +(1,13301:23799743,9157635:4227096,452978,115847 +k1,13301:23799743,9157635:3277 +h1,13301:28023562,9157635:0,411205,112570 +) +k1,13301:28273515,9157635:246676 +k1,13301:29051688,9157635:246676 +k1,13301:30317449,9157635:246676 +k1,13301:32583029,9157635:0 +) +(1,13302:6764466,10022715:25818563,513147,115847 +g1,13301:7911346,10022715 +g1,13301:10617982,10022715 +g1,13301:13041503,10022715 +g1,13301:14432177,10022715 +g1,13301:16329444,10022715 +(1,13301:16329444,10022715:0,452978,115847 +r1,13346:21611675,10022715:5282231,568825,115847 +k1,13301:16329444,10022715:-5282231 +) +(1,13301:16329444,10022715:5282231,452978,115847 +k1,13301:16329444,10022715:3277 +h1,13301:21608398,10022715:0,411205,112570 +) +g1,13301:21810904,10022715 +g1,13301:23778950,10022715 +g1,13301:24725945,10022715 +g1,13301:26526874,10022715 +k1,13302:32583029,10022715:3905263 +g1,13302:32583029,10022715 +) +] +g1,13302:32583029,10138562 +) +h1,13302:6630773,10138562:0,0,0 +(1,13305:6630773,11003642:25952256,513147,126483 +h1,13304:6630773,11003642:983040,0,0 +k1,13304:8491281,11003642:249633 +k1,13304:9759998,11003642:249632 +k1,13304:11376712,11003642:249633 +k1,13304:12285637,11003642:249633 +k1,13304:15670511,11003642:249632 +k1,13304:17300332,11003642:249633 +k1,13304:19679229,11003642:249632 +k1,13304:21708164,11003642:249633 +k1,13304:22976882,11003642:249633 +k1,13304:26507246,11003642:249632 +k1,13304:29802992,11003642:249633 +k1,13305:32583029,11003642:0 +) +(1,13305:6630773,11868722:25952256,513147,134348 +k1,13304:8882039,11868722:245209 +k1,13304:9786540,11868722:245209 +k1,13304:12622387,11868722:245209 +k1,13304:13886681,11868722:245209 +k1,13304:17740958,11868722:245209 +k1,13304:20074799,11868722:245209 +k1,13304:20851505,11868722:245209 +k1,13304:24590438,11868722:245209 +k1,13304:25518532,11868722:245209 +k1,13304:27003682,11868722:245209 +k1,13304:27736433,11868722:245163 +k1,13304:30743985,11868722:245209 +k1,13304:31923737,11868722:245209 +k1,13304:32583029,11868722:0 +) +(1,13305:6630773,12733802:25952256,513147,126483 +k1,13304:9819874,12733802:227529 +k1,13304:12185843,12733802:227529 +k1,13304:13935118,12733802:227529 +k1,13304:14518507,12733802:227529 +k1,13304:17508379,12733802:227529 +k1,13304:18670451,12733802:227529 +k1,13304:19557272,12733802:227529 +k1,13304:22414761,12733802:227529 +k1,13304:25786707,12733802:227529 +k1,13304:28288991,12733802:227529 +k1,13304:31773659,12733802:227529 +k1,13304:32583029,12733802:0 +) +(1,13305:6630773,13598882:25952256,513147,126483 +k1,13304:7862033,13598882:212175 +k1,13304:9776179,13598882:212176 +k1,13304:11768312,13598882:212175 +k1,13304:12795756,13598882:212176 +k1,13304:14074202,13598882:212175 +k1,13304:16065679,13598882:212175 +k1,13304:17296940,13598882:212176 +k1,13304:19074770,13598882:212175 +k1,13304:22065673,13598882:212176 +k1,13304:23039376,13598882:212175 +(1,13304:23039376,13598882:0,452978,115847 +r1,13346:25507913,13598882:2468537,568825,115847 +k1,13304:23039376,13598882:-2468537 +) +(1,13304:23039376,13598882:2468537,452978,115847 +k1,13304:23039376,13598882:3277 +h1,13304:25504636,13598882:0,411205,112570 +) +k1,13304:25720088,13598882:212175 +k1,13304:26618426,13598882:212176 +k1,13304:28033842,13598882:212175 +k1,13304:29811673,13598882:212176 +k1,13304:31516758,13598882:212175 +k1,13304:32583029,13598882:0 +) +(1,13305:6630773,14463962:25952256,513147,7863 +k1,13304:8136236,14463962:176393 +k1,13304:9706579,14463962:176392 +k1,13304:10902057,14463962:176393 +k1,13304:13179534,14463962:176393 +k1,13304:14015218,14463962:176392 +k1,13304:17384525,14463962:176393 +k1,13304:19454908,14463962:176393 +k1,13304:21597381,14463962:176393 +k1,13304:22970460,14463962:176392 +k1,13304:25300366,14463962:176393 +k1,13304:28522872,14463962:176393 +k1,13304:30774789,14463962:176392 +k1,13304:31563944,14463962:176393 +k1,13304:32583029,14463962:0 +) +(1,13305:6630773,15329042:25952256,513147,134348 +k1,13304:9153417,15329042:199393 +k1,13304:10012103,15329042:199394 +k1,13304:11230581,15329042:199393 +k1,13304:14420382,15329042:199393 +k1,13304:16185430,15329042:199393 +k1,13304:18612393,15329042:199394 +k1,13304:22476559,15329042:199393 +k1,13304:23303787,15329042:199393 +k1,13304:25205150,15329042:199393 +k1,13304:27533153,15329042:199394 +k1,13304:29281162,15329042:199393 +k1,13304:32051532,15329042:199393 +k1,13304:32583029,15329042:0 +) +(1,13305:6630773,16194122:25952256,513147,126483 +k1,13304:8212375,16194122:251221 +k1,13304:9482682,16194122:251222 +k1,13304:11203220,16194122:251221 +k1,13304:14280353,16194122:251221 +k1,13304:17609801,16194122:251222 +k1,13304:18622550,16194122:251221 +k1,13304:19892856,16194122:251221 +k1,13304:21856534,16194122:251222 +k1,13304:24095462,16194122:251221 +k1,13304:24878180,16194122:251221 +k1,13304:28688007,16194122:251222 +k1,13304:30206694,16194122:251221 +k1,13305:32583029,16194122:0 +) +(1,13305:6630773,17059202:25952256,513147,126483 +g1,13304:8594231,17059202 +g1,13304:9444888,17059202 +g1,13304:10391883,17059202 +g1,13304:12550638,17059202 +g1,13304:13697518,17059202 +g1,13304:16294054,17059202 +g1,13304:20795722,17059202 +g1,13304:21646379,17059202 +g1,13304:22864693,17059202 +g1,13304:25217435,17059202 +g1,13304:27404371,17059202 +k1,13305:32583029,17059202:4317515 +g1,13305:32583029,17059202 +) +(1,13308:6630773,17924282:25952256,505283,126483 +h1,13306:6630773,17924282:983040,0,0 +k1,13306:10890375,17924282:193093 +k1,13306:12274912,17924282:193092 +k1,13306:13976644,17924282:193093 +k1,13306:18615044,17924282:193093 +k1,13306:19799697,17924282:193093 +k1,13306:23122133,17924282:193092 +k1,13306:23931264,17924282:193093 +k1,13306:25911524,17924282:193093 +k1,13306:26866145,17924282:193093 +k1,13306:29918573,17924282:193092 +k1,13306:31303111,17924282:193093 +k1,13308:32583029,17924282:0 +) +(1,13308:6630773,18789362:25952256,505283,126483 +g1,13306:7743574,18789362 +g1,13306:9950826,18789362 +g1,13306:11341500,18789362 +g1,13306:14075006,18789362 +g1,13306:16455929,18789362 +k1,13308:32583029,18789362:16127100 +g1,13308:32583029,18789362 +) +(1,13309:6630773,20906180:25952256,564462,139132 +(1,13309:6630773,20906180:2450326,534184,12975 +g1,13309:6630773,20906180 +g1,13309:9081099,20906180 +) +g1,13309:12446963,20906180 +g1,13309:13416569,20906180 +g1,13309:17776549,20906180 +k1,13309:32583029,20906180:11452872 +g1,13309:32583029,20906180 +) +(1,13317:6630773,22164476:25952256,513147,126483 +k1,13315:8550060,22164476:136052 +k1,13315:9041973,22164476:136053 +k1,13315:10990751,22164476:136052 +k1,13315:13114511,22164476:136053 +k1,13315:15918534,22164476:136052 +k1,13315:17521283,22164476:136053 +k1,13315:21423034,22164476:136052 +k1,13315:23783379,22164476:136053 +k1,13315:25110876,22164476:136052 +k1,13315:28817330,22164476:136053 +k1,13315:32583029,22164476:0 +) +(1,13317:6630773,23029556:25952256,513147,126483 +k1,13315:9781088,23029556:135004 +k1,13315:10784444,23029556:135004 +k1,13315:12256382,23029556:135004 +k1,13315:13491081,23029556:135005 +k1,13315:14084182,23029556:135004 +k1,13315:16750842,23029556:135004 +k1,13315:17501884,23029556:135004 +k1,13315:21055246,23029556:135004 +k1,13315:24668246,23029556:135004 +k1,13315:25999938,23029556:135005 +k1,13315:28678394,23029556:135004 +k1,13315:30897443,23029556:135004 +k1,13315:31563944,23029556:135004 +k1,13315:32583029,23029556:0 +) +(1,13317:6630773,23894636:25952256,513147,126483 +k1,13315:8426677,23894636:142431 +k1,13315:9516760,23894636:142432 +k1,13315:10425307,23894636:142431 +k1,13315:12380465,23894636:142432 +k1,13315:14840904,23894636:142431 +k1,13315:16348450,23894636:142431 +k1,13315:17177044,23894636:142432 +k1,13315:20737178,23894636:142431 +k1,13315:21495648,23894636:142432 +k1,13315:24392557,23894636:142431 +k1,13315:27317648,23894636:142432 +k1,13315:29008695,23894636:142431 +k1,13315:32583029,23894636:0 +) +(1,13317:6630773,24759716:25952256,513147,126483 +k1,13315:7817781,24759716:167923 +k1,13315:9371791,24759716:167924 +k1,13315:10199006,24759716:167923 +k1,13315:12921522,24759716:167923 +k1,13315:13620943,24759716:167924 +k1,13315:14807951,24759716:167923 +k1,13315:17054021,24759716:167923 +k1,13315:17881236,24759716:167923 +k1,13315:19068245,24759716:167924 +k1,13315:23001867,24759716:167923 +k1,13315:26599289,24759716:167923 +k1,13315:27585102,24759716:167924 +k1,13315:28772110,24759716:167923 +k1,13315:32583029,24759716:0 +) +(1,13317:6630773,25624796:25952256,513147,134348 +k1,13315:9386007,25624796:197364 +k1,13315:10602456,25624796:197364 +k1,13315:12626965,25624796:197365 +k1,13315:13633699,25624796:197364 +k1,13315:16228370,25624796:197364 +k1,13315:19087151,25624796:197364 +k1,13315:19816013,25624796:197365 +k1,13315:21881808,25624796:197364 +k1,13315:23275859,25624796:197364 +k1,13315:25065093,25624796:197364 +k1,13315:28107375,25624796:197364 +k1,13315:28964032,25624796:197365 +k1,13315:32051532,25624796:197362 +k1,13315:32583029,25624796:0 +) +(1,13317:6630773,26489876:25952256,513147,126483 +k1,13315:7402272,26489876:155461 +k1,13315:8576817,26489876:155460 +k1,13315:11563433,26489876:155461 +k1,13315:12378186,26489876:155461 +k1,13315:13552732,26489876:155461 +k1,13315:16598985,26489876:155460 +k1,13315:17945891,26489876:155461 +k1,13315:19120437,26489876:155461 +k1,13315:23721204,26489876:155460 +k1,13315:24535957,26489876:155461 +k1,13315:25710503,26489876:155461 +k1,13315:28039138,26489876:155461 +k1,13315:28853890,26489876:155460 +k1,13315:30028436,26489876:155461 +k1,13315:32583029,26489876:0 +) +(1,13317:6630773,27354956:25952256,505283,134348 +g1,13315:8105988,27354956 +g1,13315:10153332,27354956 +g1,13315:12327161,27354956 +k1,13317:32583029,27354956:20255868 +g1,13317:32583029,27354956 +) +(1,13318:6630773,29471774:25952256,555811,139132 +(1,13318:6630773,29471774:2450326,527696,0 +g1,13318:6630773,29471774 +g1,13318:9081099,29471774 +) +g1,13318:11511961,29471774 +g1,13318:14234786,29471774 +g1,13318:15802014,29471774 +k1,13318:32583029,29471774:13537704 +g1,13318:32583029,29471774 +) +(1,13321:6630773,30730070:25952256,513147,134348 +k1,13320:7776888,30730070:192566 +k1,13320:11387158,30730070:192567 +k1,13320:13277762,30730070:192566 +k1,13320:16782518,30730070:192566 +k1,13320:19863257,30730070:192567 +k1,13320:22345651,30730070:192566 +k1,13320:23154255,30730070:192566 +k1,13320:24844975,30730070:192567 +h1,13320:26040352,30730070:0,0,0 +k1,13320:26232918,30730070:192566 +k1,13320:27709990,30730070:192566 +k1,13320:29715283,30730070:192567 +k1,13320:31895556,30730070:192566 +k1,13320:32583029,30730070:0 +) +(1,13321:6630773,31595150:25952256,513147,134348 +k1,13320:9106887,31595150:186286 +k1,13320:11664921,31595150:186286 +k1,13320:12917478,31595150:186286 +k1,13320:14479365,31595150:186286 +k1,13320:15684736,31595150:186286 +k1,13320:18044196,31595150:186286 +k1,13320:18889774,31595150:186286 +k1,13320:20095144,31595150:186285 +k1,13320:20968903,31595150:186286 +k1,13320:22227358,31595150:186286 +k1,13320:23699460,31595150:186286 +k1,13320:24904831,31595150:186286 +k1,13320:26480480,31595150:186286 +k1,13320:27318194,31595150:186286 +k1,13320:29389951,31595150:186286 +k1,13320:30595322,31595150:186286 +k1,13320:32583029,31595150:0 +) +(1,13321:6630773,32460230:25952256,513147,102891 +k1,13320:8028328,32460230:190382 +k1,13320:9079853,32460230:190382 +k1,13320:11070509,32460230:190382 +k1,13320:12545397,32460230:190382 +k1,13320:13754864,32460230:190382 +k1,13320:15044940,32460230:190382 +k1,13320:15766819,32460230:190382 +k1,13320:17243017,32460230:190382 +k1,13320:19645239,32460230:190382 +k1,13320:20601737,32460230:190382 +k1,13320:21811204,32460230:190382 +k1,13320:25808572,32460230:190382 +k1,13320:28297302,32460230:190382 +k1,13320:29139112,32460230:190382 +k1,13320:32583029,32460230:0 +) +(1,13321:6630773,33325310:25952256,513147,134348 +k1,13320:7889097,33325310:239239 +k1,13320:9781808,33325310:239238 +k1,13320:10708520,33325310:239239 +k1,13320:11479256,33325310:239239 +k1,13320:14858324,33325310:239238 +k1,13320:15713601,33325310:239239 +k1,13320:16971925,33325310:239239 +k1,13320:20099336,33325310:239239 +k1,13320:22471771,33325310:239238 +k1,13320:25108972,33325310:239239 +(1,13320:25108972,33325310:0,452978,115847 +r1,13346:27929221,33325310:2820249,568825,115847 +k1,13320:25108972,33325310:-2820249 +) +(1,13320:25108972,33325310:2820249,452978,115847 +k1,13320:25108972,33325310:3277 +h1,13320:27925944,33325310:0,411205,112570 +) +k1,13320:28168460,33325310:239239 +k1,13320:30453732,33325310:239238 +k1,13320:31224468,33325310:239239 +k1,13321:32583029,33325310:0 +) +(1,13321:6630773,34190390:25952256,513147,134348 +k1,13320:8356757,34190390:241594 +k1,13320:9249778,34190390:241593 +k1,13320:12935289,34190390:241594 +k1,13320:14195967,34190390:241593 +k1,13320:15125034,34190390:241594 +k1,13320:16760578,34190390:241593 +k1,13320:19573149,34190390:241594 +k1,13320:20466171,34190390:241594 +k1,13320:21726849,34190390:241593 +k1,13320:23241808,34190390:241594 +k1,13320:25943623,34190390:241593 +k1,13320:28612671,34190390:241594 +k1,13320:30556234,34190390:241593 +k1,13320:31563944,34190390:241594 +k1,13320:32583029,34190390:0 +) +(1,13321:6630773,35055470:25952256,513147,134348 +k1,13320:10263910,35055470:230508 +k1,13320:11145846,35055470:230508 +k1,13320:11732213,35055470:230507 +k1,13320:13245916,35055470:230508 +k1,13320:14749789,35055470:230508 +k1,13320:15933846,35055470:230508 +k1,13320:17268636,35055470:230508 +k1,13320:19761447,35055470:230508 +k1,13320:22754297,35055470:230507 +k1,13320:26561105,35055470:230508 +k1,13320:29772190,35055470:230508 +k1,13320:32583029,35055470:0 +) +(1,13321:6630773,35920550:25952256,513147,134348 +g1,13320:8151863,35920550 +g1,13320:9010384,35920550 +g1,13320:10228698,35920550 +g1,13320:11817290,35920550 +g1,13320:12778047,35920550 +g1,13320:15404730,35920550 +g1,13320:15959819,35920550 +g1,13320:17442243,35920550 +g1,13320:20713800,35920550 +g1,13320:21564457,35920550 +g1,13320:23892295,35920550 +g1,13320:27372256,35920550 +(1,13320:27372256,35920550:0,452978,115847 +r1,13346:29489081,35920550:2116825,568825,115847 +k1,13320:27372256,35920550:-2116825 +) +(1,13320:27372256,35920550:2116825,452978,115847 +k1,13320:27372256,35920550:3277 +h1,13320:29485804,35920550:0,411205,112570 +) +k1,13321:32583029,35920550:2920278 +g1,13321:32583029,35920550 +) +(1,13342:6630773,42134964:25952256,5359170,0 +k1,13342:6761220,42134964:130447 +(1,13322:6761220,42134964:0,0,0 +g1,13322:6761220,42134964 +g1,13322:6761220,42134964 +g1,13322:6433540,42134964 +(1,13322:6433540,42134964:0,0,0 +) +g1,13322:6761220,42134964 +) +(1,13340:6761220,42134964:25691363,5359170,0 +g1,13340:8758081,42134964 +(1,13340:8758081,37777179:0,0,0 +(1,13340:8758081,37777179:0,0,0 +g1,13324:8758081,37777179 +(1,13325:8758081,37777179:0,0,0 +(1,13325:8758081,37777179:0,0,0 +g1,13325:8758081,37777179 +g1,13325:8758081,37777179 +g1,13325:8758081,37777179 +g1,13325:8758081,37777179 +g1,13325:8758081,37777179 +(1,13325:8758081,37777179:0,0,0 +(1,13325:8758081,37777179:1751777,454754,7077 +(1,13325:8758081,37777179:1751777,454754,7077 +) +g1,13325:10509858,37777179 +) +) +g1,13325:8758081,37777179 +g1,13325:8758081,37777179 +) +) +g1,13325:8758081,37777179 +(1,13326:8758081,37777179:0,0,0 +(1,13326:8758081,37777179:0,0,0 +g1,13326:8758081,37777179 +g1,13326:8758081,37777179 +g1,13326:8758081,37777179 +g1,13326:8758081,37777179 +g1,13326:8758081,37777179 +(1,13326:8758081,37777179:0,0,0 +(1,13326:8758081,37777179:3574334,454754,7077 +(1,13326:8758081,37777179:3574334,454754,7077 +) +g1,13326:12332415,37777179 +) +) +g1,13326:8758081,37777179 +g1,13326:8758081,37777179 +) +) +(1,13327:8758081,37777179:0,0,0 +(1,13327:8758081,37777179:0,0,0 +g1,13327:8758081,37777179 +g1,13327:8758081,37777179 +g1,13327:8758081,37777179 +g1,13327:8758081,37777179 +g1,13327:8758081,37777179 +(1,13327:8758081,37777179:0,0,0 +(1,13327:8758081,37777179:1272717,408008,104590 +(1,13327:8758081,37777179:1272717,408008,104590 +(1,13327:8758081,37777179:0,408008,104590 +r1,13346:10030798,37777179:1272717,512598,104590 +k1,13327:8758081,37777179:-1272717 +) +(1,13327:8758081,37777179:1272717,408008,104590 +k1,13327:8758081,37777179:3277 +h1,13327:10027521,37777179:0,370085,101313 +) +) +g1,13327:10030798,37777179 +) +) +g1,13327:8758081,37777179 +g1,13327:8758081,37777179 +) +) +g1,13327:8758081,37777179 +(1,13328:8758081,37777179:0,0,0 +(1,13328:8758081,37777179:0,0,0 +g1,13328:8758081,37777179 +g1,13328:8758081,37777179 +g1,13328:8758081,37777179 +g1,13328:8758081,37777179 +g1,13328:8758081,37777179 +(1,13328:8758081,37777179:0,0,0 +(1,13328:8758081,37777179:5422007,454754,120913 +(1,13328:8758081,37777179:5422007,454754,120913 +(1,13328:8758081,37777179:0,408008,104590 +r1,13346:9397716,37777179:639635,512598,104590 +k1,13328:8758081,37777179:-639635 +) +(1,13328:8758081,37777179:639635,408008,104590 +k1,13328:8758081,37777179:3277 +h1,13328:9394439,37777179:0,370085,101313 +) +g1,13328:9577023,37777179 +g1,13328:11487464,37777179 +$1,13328:11487464,37777179 +$1,13328:12094983,37777179 +g1,13328:12274290,37777179 +(1,13328:12274290,37777179:0,408008,110889 +r1,13346:14180088,37777179:1905798,518897,110889 +k1,13328:12274290,37777179:-1905798 +) +(1,13328:12274290,37777179:1905798,408008,110889 +k1,13328:12274290,37777179:3277 +h1,13328:14176811,37777179:0,370085,101313 +) +) +g1,13328:14180088,37777179 +) +) +g1,13328:8758081,37777179 +g1,13328:8758081,37777179 +) +) +g1,13328:8758081,37777179 +(1,13329:8758081,37777179:0,0,0 +(1,13329:8758081,37777179:0,0,0 +g1,13329:8758081,37777179 +g1,13329:8758081,37777179 +g1,13329:8758081,37777179 +g1,13329:8758081,37777179 +g1,13329:8758081,37777179 +(1,13329:8758081,37777179:0,0,0 +(1,13329:8758081,37777179:2538879,408008,104590 +(1,13329:8758081,37777179:2538879,408008,104590 +(1,13329:8758081,37777179:0,408008,104590 +r1,13346:11296960,37777179:2538879,512598,104590 +k1,13329:8758081,37777179:-2538879 +) +(1,13329:8758081,37777179:2538879,408008,104590 +k1,13329:8758081,37777179:3277 +h1,13329:11293683,37777179:0,370085,101313 +) +) +g1,13329:11296960,37777179 +) +) +g1,13329:8758081,37777179 +g1,13329:8758081,37777179 +) +) +g1,13329:8758081,37777179 +(1,13330:8758081,37777179:0,0,0 +(1,13330:8758081,37777179:0,0,0 +g1,13330:8758081,37777179 +g1,13330:8758081,37777179 +g1,13330:8758081,37777179 +g1,13330:8758081,37777179 +g1,13330:8758081,37777179 +(1,13330:8758081,37777179:0,0,0 +(1,13330:8758081,37777179:6272072,454754,104590 +(1,13330:8758081,37777179:6272072,454754,104590 +g1,13330:10089904,37777179 +g1,13330:12020988,37777179 +$1,13330:12020988,37777179 +$1,13330:12628507,37777179 +g1,13330:12807814,37777179 +(1,13330:12807814,37777179:0,414307,104590 +r1,13346:15030153,37777179:2222339,518897,104590 +k1,13330:12807814,37777179:-2222339 +) +(1,13330:12807814,37777179:2222339,414307,104590 +k1,13330:12807814,37777179:3277 +h1,13330:15026876,37777179:0,370085,101313 +) +) +g1,13330:15030153,37777179 +) +) +g1,13330:8758081,37777179 +g1,13330:8758081,37777179 +) +) +g1,13330:8758081,37777179 +(1,13331:8758081,37777179:0,0,0 +(1,13331:8758081,37777179:0,0,0 +g1,13331:8758081,37777179 +g1,13331:8758081,37777179 +g1,13331:8758081,37777179 +g1,13331:8758081,37777179 +g1,13331:8758081,37777179 +(1,13331:8758081,37777179:0,0,0 +(1,13331:8758081,37777179:5839726,454754,104590 +(1,13331:8758081,37777179:5839726,454754,104590 +g1,13331:10089904,37777179 +g1,13331:12538264,37777179 +$1,13331:12538264,37777179 +$1,13331:13145783,37777179 +g1,13331:13325090,37777179 +(1,13331:13325090,37777179:0,408008,104590 +r1,13346:14597807,37777179:1272717,512598,104590 +k1,13331:13325090,37777179:-1272717 +) +(1,13331:13325090,37777179:1272717,408008,104590 +k1,13331:13325090,37777179:3277 +h1,13331:14594530,37777179:0,370085,101313 +) +) +g1,13331:14597807,37777179 +) +) +g1,13331:8758081,37777179 +g1,13331:8758081,37777179 +) +) +g1,13331:8758081,37777179 +(1,13332:8758081,37777179:0,0,0 +(1,13332:8758081,37777179:0,0,0 +g1,13332:8758081,37777179 +g1,13332:8758081,37777179 +g1,13332:8758081,37777179 +g1,13332:8758081,37777179 +g1,13332:8758081,37777179 +(1,13332:8758081,37777179:0,0,0 +(1,13332:8758081,37777179:2550076,454754,120913 +(1,13332:8758081,37777179:2550076,454754,120913 +(1,13332:8758081,37777179:0,408008,104590 +r1,13346:9397716,37777179:639635,512598,104590 +k1,13332:8758081,37777179:-639635 +) +(1,13332:8758081,37777179:639635,408008,104590 +k1,13332:8758081,37777179:3277 +h1,13332:9394439,37777179:0,370085,101313 +) +g1,13332:9577023,37777179 +) +g1,13332:11308157,37777179 +) +) +g1,13332:8758081,37777179 +g1,13332:8758081,37777179 +) +) +g1,13332:8758081,37777179 +g1,13333:8758081,37777179 +g1,13333:8758081,37777179 +g1,13333:8758081,37777179 +g1,13333:8758081,37777179 +g1,13333:8758081,37777179 +g1,13333:8758081,37777179 +g1,13334:8758081,37777179 +g1,13334:8758081,37777179 +g1,13334:8758081,37777179 +g1,13334:8758081,37777179 +g1,13334:8758081,37777179 +g1,13334:8758081,37777179 +g1,13335:8758081,37777179 +g1,13335:8758081,37777179 +g1,13335:8758081,37777179 +g1,13335:8758081,37777179 +g1,13335:8758081,37777179 +g1,13335:8758081,37777179 +g1,13336:8758081,37777179 +g1,13336:8758081,37777179 +g1,13336:8758081,37777179 +g1,13336:8758081,37777179 +g1,13336:8758081,37777179 +g1,13336:8758081,37777179 +g1,13337:8758081,37777179 +g1,13337:8758081,37777179 +g1,13337:8758081,37777179 +g1,13337:8758081,37777179 +g1,13337:8758081,37777179 +g1,13337:8758081,37777179 +g1,13338:8758081,37777179 +g1,13338:8758081,37777179 +g1,13338:8758081,37777179 +g1,13338:8758081,37777179 +g1,13338:8758081,37777179 +g1,13338:8758081,37777179 +g1,13339:8758081,37777179 +g1,13339:8758081,37777179 +g1,13339:8758081,37777179 +g1,13339:8758081,37777179 +g1,13339:8758081,37777179 +g1,13339:8758081,37777179 +g1,13340:8758081,37777179 +g1,13340:8758081,37777179 +) +g1,13340:8758081,37777179 +) +) +g1,13342:32452583,42134964 +k1,13342:32583029,42134964:130446 +) +v1,13345:6630773,43655404:0,393216,0 +(1,13346:6630773,45069374:25952256,1807186,0 +g1,13346:6630773,45069374 +g1,13346:6237557,45069374 +r1,13346:6368629,45069374:131072,1807186,0 +g1,13346:6567858,45069374 +g1,13346:6764466,45069374 +[1,13346:6764466,45069374:25818563,1807186,0 +(1,13346:6764466,44069946:25818563,807758,219026 +(1,13345:6764466,44069946:0,807758,219026 +r1,13346:7908217,44069946:1143751,1026784,219026 +k1,13345:6764466,44069946:-1143751 +) +(1,13345:6764466,44069946:1143751,807758,219026 +) +k1,13345:8182097,44069946:273880 +k1,13345:8509777,44069946:327680 +k1,13345:10715002,44069946:273879 +k1,13345:11676355,44069946:273880 +k1,13345:14240063,44069946:273880 +k1,13345:16864063,44069946:273879 +k1,13345:18531894,44069946:273880 +k1,13345:20507744,44069946:273880 +k1,13345:23807420,44069946:273879 +k1,13345:25648921,44069946:273880 +k1,13345:27356729,44069946:273880 +k1,13345:28045376,44069946:273804 +k1,13345:29510701,44069946:273880 +k1,13345:32583029,44069946:0 +) +(1,13346:6764466,44935026:25818563,505283,134348 +k1,13345:9829074,44935026:154154 +k1,13345:12270435,44935026:154154 +k1,13345:13710404,44935026:154153 +k1,13345:16236306,44935026:154154 +(1,13345:16236306,44935026:0,452978,115847 +r1,13346:17649707,44935026:1413401,568825,115847 +k1,13345:16236306,44935026:-1413401 +) +(1,13345:16236306,44935026:1413401,452978,115847 +k1,13345:16236306,44935026:3277 +h1,13345:17646430,44935026:0,411205,112570 +) +k1,13345:17803861,44935026:154154 +k1,13345:19149460,44935026:154154 +(1,13345:19149460,44935026:0,452978,115847 +r1,13346:20562861,44935026:1413401,568825,115847 +k1,13345:19149460,44935026:-1413401 +) +(1,13345:19149460,44935026:1413401,452978,115847 +k1,13345:19149460,44935026:3277 +h1,13345:20559584,44935026:0,411205,112570 +) +k1,13345:20717015,44935026:154154 +k1,13345:23998547,44935026:154154 +k1,13345:24780535,44935026:154153 +k1,13345:26626829,44935026:154154 +k1,13345:28478365,44935026:154154 +k1,13345:29651604,44935026:154154 +k1,13345:32583029,44935026:0 +) +] +g1,13346:32583029,45069374 +) +] +(1,13346:32583029,45706769:0,0,0 +g1,13346:32583029,45706769 +) +) +] +(1,13346:6630773,47279633:25952256,0,0 +h1,13346:6630773,47279633:25952256,0,0 +) +] +(1,13346:4262630,4025873:0,0,0 +[1,13346:-473656,4025873:0,0,0 +(1,13346:-473656,-710413:0,0,0 +(1,13346:-473656,-710413:0,0,0 +g1,13346:-473656,-710413 +) +g1,13346:-473656,-710413 +) +] +) +] +!30217 +}216 +Input:2028:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2029:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2030:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2031:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2032:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2033:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2034:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2035:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2036:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2037:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2038:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2039:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2040:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2041:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2042:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2043:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2044:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2045:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1704 +{217 +[1,13425:4262630,47279633:28320399,43253760,0 +(1,13425:4262630,4025873:0,0,0 +[1,13425:-473656,4025873:0,0,0 +(1,13425:-473656,-710413:0,0,0 +(1,13425:-473656,-644877:0,0,0 +k1,13425:-473656,-644877:-65536 ) -(1,13824:-473656,4736287:0,0,0 -k1,13824:-473656,4736287:5209943 +(1,13425:-473656,4736287:0,0,0 +k1,13425:-473656,4736287:5209943 ) -g1,13824:-473656,-710413 +g1,13425:-473656,-710413 ) ] ) -[1,13824:6630773,47279633:25952256,43253760,0 -[1,13824:6630773,4812305:25952256,786432,0 -(1,13824:6630773,4812305:25952256,505283,134348 -(1,13824:6630773,4812305:25952256,505283,134348 -g1,13824:3078558,4812305 -[1,13824:3078558,4812305:0,0,0 -(1,13824:3078558,2439708:0,1703936,0 -k1,13824:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,13824:2537886,2439708:1179648,16384,0 +[1,13425:6630773,47279633:25952256,43253760,0 +[1,13425:6630773,4812305:25952256,786432,0 +(1,13425:6630773,4812305:25952256,513147,126483 +(1,13425:6630773,4812305:25952256,513147,126483 +g1,13425:3078558,4812305 +[1,13425:3078558,4812305:0,0,0 +(1,13425:3078558,2439708:0,1703936,0 +k1,13425:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,13425:2537886,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,13824:3078558,1915420:16384,1179648,0 +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,13425:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] ) ) ) ] -[1,13824:3078558,4812305:0,0,0 -(1,13824:3078558,2439708:0,1703936,0 -g1,13824:29030814,2439708 -g1,13824:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,13824:36151628,1915420:16384,1179648,0 +[1,13425:3078558,4812305:0,0,0 +(1,13425:3078558,2439708:0,1703936,0 +g1,13425:29030814,2439708 +g1,13425:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,13425:36151628,1915420:16384,1179648,0 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,13824:37855564,2439708:1179648,16384,0 +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,13425:37855564,2439708:1179648,16384,0 ) ) -k1,13824:3078556,2439708:-34777008 +k1,13425:3078556,2439708:-34777008 ) ] -[1,13824:3078558,4812305:0,0,0 -(1,13824:3078558,49800853:0,16384,2228224 -k1,13824:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,13824:2537886,49800853:1179648,16384,0 +[1,13425:3078558,4812305:0,0,0 +(1,13425:3078558,49800853:0,16384,2228224 +k1,13425:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,13425:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,13824:3078558,51504789:16384,1179648,0 +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,13425:3078558,51504789:16384,1179648,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 -) -] -) -) -) -] -[1,13824:3078558,4812305:0,0,0 -(1,13824:3078558,49800853:0,16384,2228224 -g1,13824:29030814,49800853 -g1,13824:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,13824:36151628,51504789:16384,1179648,0 -) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 -) -] -) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,13824:37855564,49800853:1179648,16384,0 -) -) -k1,13824:3078556,49800853:-34777008 -) -] -g1,13824:6630773,4812305 -g1,13824:6630773,4812305 -g1,13824:9008419,4812305 -g1,13824:10418098,4812305 -g1,13824:12080746,4812305 -g1,13824:15516143,4812305 -k1,13824:31387652,4812305:15871509 -) -) -] -[1,13824:6630773,45706769:25952256,40108032,0 -(1,13824:6630773,45706769:25952256,40108032,0 -(1,13824:6630773,45706769:0,0,0 -g1,13824:6630773,45706769 -) -[1,13824:6630773,45706769:25952256,40108032,0 -(1,13772:6630773,6254097:25952256,513147,134348 -k1,13771:9156764,6254097:215847 -k1,13771:10024040,6254097:215848 -k1,13771:12734187,6254097:215847 -k1,13771:15949618,6254097:215848 -k1,13771:16793300,6254097:215847 -k1,13771:18212389,6254097:215848 -k1,13771:19795317,6254097:215847 -k1,13771:22261015,6254097:215847 -k1,13771:23997298,6254097:215848 -k1,13771:25232230,6254097:215847 -k1,13771:26683432,6254097:215848 -k1,13771:27558571,6254097:215847 -k1,13771:31325160,6254097:215848 -k1,13771:32227169,6254097:215847 -k1,13771:32583029,6254097:0 -) -(1,13772:6630773,7095585:25952256,505283,134348 -g1,13771:8571294,7095585 -g1,13771:10055029,7095585 -g1,13771:12680401,7095585 -g1,13771:15879213,7095585 -g1,13771:16434302,7095585 -g1,13771:20464766,7095585 -g1,13771:22823406,7095585 -k1,13772:32583029,7095585:6744312 -g1,13772:32583029,7095585 -) -(1,13774:6630773,7937073:25952256,513147,126483 -h1,13773:6630773,7937073:983040,0,0 -k1,13773:10211551,7937073:322983 -k1,13773:11526094,7937073:322983 -k1,13773:15154058,7937073:322983 -k1,13773:16990267,7937073:322983 -k1,13773:17999412,7937073:322983 -k1,13773:20733466,7937073:322984 -k1,13773:23128042,7937073:322983 -k1,13773:24067063,7937073:322983 -k1,13773:25997644,7937073:322983 -k1,13773:27006789,7937073:322983 -k1,13773:30419795,7937073:322983 -k1,13773:31358816,7937073:322983 -k1,13774:32583029,7937073:0 -) -(1,13774:6630773,8778561:25952256,513147,134348 -k1,13773:8133548,8778561:235309 -h1,13773:9676266,8778561:0,0,0 -k1,13773:9911575,8778561:235309 -k1,13773:10956254,8778561:235309 -k1,13773:12689716,8778561:235309 -h1,13773:13885093,8778561:0,0,0 -k1,13773:14294072,8778561:235309 -k1,13773:17319250,8778561:235310 -(1,13773:17319250,8778561:0,452978,115847 -r1,13824:20139499,8778561:2820249,568825,115847 -k1,13773:17319250,8778561:-2820249 -) -(1,13773:17319250,8778561:2820249,452978,115847 -k1,13773:17319250,8778561:3277 -h1,13773:20136222,8778561:0,411205,112570 -) -k1,13773:20374808,8778561:235309 -k1,13773:21141614,8778561:235309 -k1,13773:22890149,8778561:235309 -k1,13773:24073109,8778561:235309 -k1,13773:28460779,8778561:235309 -k1,13773:29887533,8778561:235309 -k1,13774:32583029,8778561:0 -) -(1,13774:6630773,9620049:25952256,513147,134348 -(1,13773:6630773,9620049:0,452978,115847 -r1,13824:11913004,9620049:5282231,568825,115847 -k1,13773:6630773,9620049:-5282231 -) -(1,13773:6630773,9620049:5282231,452978,115847 -k1,13773:6630773,9620049:3277 -h1,13773:11909727,9620049:0,411205,112570 -) -k1,13773:12117692,9620049:204688 -k1,13773:13270031,9620049:204688 -k1,13773:16876039,9620049:204689 -k1,13773:17842255,9620049:204688 -k1,13773:19981566,9620049:204688 -k1,13773:20542114,9620049:204688 -k1,13773:22430422,9620049:204688 -k1,13773:24554660,9620049:204688 -k1,13773:25322303,9620049:204689 -k1,13773:27446541,9620049:204688 -k1,13773:29570123,9620049:204688 -k1,13773:30793896,9620049:204688 -k1,13773:32583029,9620049:0 -) -(1,13774:6630773,10461537:25952256,513147,134348 -k1,13773:7853869,10461537:231536 -k1,13773:11349097,10461537:231535 -k1,13773:12342161,10461537:231536 -k1,13773:14155735,10461537:231535 -k1,13773:16512604,10461537:231536 -k1,13773:21028229,10461537:231536 -k1,13773:24049632,10461537:231535 -(1,13773:24049632,10461537:0,452978,115847 -r1,13824:29331863,10461537:5282231,568825,115847 -k1,13773:24049632,10461537:-5282231 -) -(1,13773:24049632,10461537:5282231,452978,115847 -k1,13773:24049632,10461537:3277 -h1,13773:29328586,10461537:0,411205,112570 -) -k1,13773:29563399,10461537:231536 -k1,13773:30895939,10461537:231535 -k1,13773:31483335,10461537:231536 -k1,13774:32583029,10461537:0 -) -(1,13774:6630773,11303025:25952256,513147,102891 -k1,13773:8725657,11303025:175334 -k1,13773:10281835,11303025:175334 -k1,13773:13267352,11303025:175333 -k1,13773:14885133,11303025:175334 -k1,13773:16344973,11303025:175334 -k1,13773:17388659,11303025:175334 -k1,13773:19077218,11303025:175333 -k1,13773:20200203,11303025:175334 -k1,13773:22363244,11303025:175334 -k1,13773:23226051,11303025:175334 -k1,13773:26427181,11303025:175333 -k1,13773:29692538,11303025:175334 -k1,13773:31896867,11303025:175334 -k1,13773:32583029,11303025:0 -) -(1,13774:6630773,12144513:25952256,505283,134348 -k1,13773:7256741,12144513:167871 -k1,13773:8800214,12144513:167872 -k1,13773:11346387,12144513:167871 -(1,13773:11346387,12144513:0,452978,115847 -r1,13824:13814924,12144513:2468537,568825,115847 -k1,13773:11346387,12144513:-2468537 -) -(1,13773:11346387,12144513:2468537,452978,115847 -k1,13773:11346387,12144513:3277 -h1,13773:13811647,12144513:0,411205,112570 -) -k1,13773:13982795,12144513:167871 -k1,13773:16458845,12144513:167872 -k1,13773:17312878,12144513:167871 -k1,13773:20883378,12144513:167871 -k1,13773:21702677,12144513:167871 -k1,13773:25481583,12144513:167872 -(1,13773:25481583,12144513:0,414482,115847 -r1,13824:25839849,12144513:358266,530329,115847 -k1,13773:25481583,12144513:-358266 -) -(1,13773:25481583,12144513:358266,414482,115847 -k1,13773:25481583,12144513:3277 -h1,13773:25836572,12144513:0,411205,112570 -) -k1,13773:26007720,12144513:167871 -k1,13773:27367036,12144513:167871 -(1,13773:27367036,12144513:0,414482,115847 -r1,13824:27725302,12144513:358266,530329,115847 -k1,13773:27367036,12144513:-358266 -) -(1,13773:27367036,12144513:358266,414482,115847 -k1,13773:27367036,12144513:3277 -h1,13773:27722025,12144513:0,411205,112570 -) -k1,13773:28066844,12144513:167872 -k1,13773:31593435,12144513:167871 -k1,13774:32583029,12144513:0 -) -(1,13774:6630773,12986001:25952256,513147,134348 -k1,13773:9643967,12986001:178762 -k1,13773:11538462,12986001:178762 -k1,13773:12175320,12986001:178761 -k1,13773:14984042,12986001:178762 -k1,13773:15814232,12986001:178762 -k1,13773:18638027,12986001:178762 -k1,13773:19835873,12986001:178761 -k1,13773:22610516,12986001:178762 -k1,13773:23736929,12986001:178762 -k1,13773:26401472,12986001:178762 -k1,13773:27239525,12986001:178761 -k1,13773:29207420,12986001:178762 -k1,13773:30577627,12986001:178762 -k1,13773:32583029,12986001:0 -) -(1,13774:6630773,13827489:25952256,513147,134348 -k1,13773:7830245,13827489:180387 -k1,13773:10707438,13827489:180386 -k1,13773:11570710,13827489:180387 -k1,13773:14647788,13827489:180387 -k1,13773:17395876,13827489:180387 -k1,13773:17932123,13827489:180387 -k1,13773:20591081,13827489:180386 -k1,13773:22113645,13827489:180387 -k1,13773:23490719,13827489:180387 -(1,13773:23490719,13827489:0,452978,115847 -r1,13824:25607544,13827489:2116825,568825,115847 -k1,13773:23490719,13827489:-2116825 -) -(1,13773:23490719,13827489:2116825,452978,115847 -k1,13773:23490719,13827489:3277 -h1,13773:25604267,13827489:0,411205,112570 -) -k1,13773:25787930,13827489:180386 -k1,13773:28422640,13827489:180387 -k1,13773:31931601,13827489:180387 -k1,13773:32583029,13827489:0 -) -(1,13774:6630773,14668977:25952256,513147,126483 -g1,13773:8531972,14668977 -g1,13773:9418674,14668977 -g1,13773:12643700,14668977 -g1,13773:15793360,14668977 -g1,13773:16348449,14668977 -g1,13773:17824975,14668977 -g1,13773:18683496,14668977 -g1,13773:19901810,14668977 -k1,13774:32583029,14668977:9228127 -g1,13774:32583029,14668977 -) -(1,13793:6630773,20502624:25952256,4986268,0 -k1,13793:7621778,20502624:991005 -(1,13775:7621778,20502624:0,0,0 -g1,13775:7621778,20502624 -g1,13775:7621778,20502624 -g1,13775:7294098,20502624 -(1,13775:7294098,20502624:0,0,0 -) -g1,13775:7621778,20502624 -) -(1,13791:7621778,20502624:23970247,4986268,0 -g1,13791:9499564,20502624 -(1,13791:9499564,16704220:0,0,0 -(1,13791:9499564,16704220:0,0,0 -g1,13777:9499564,16704220 -(1,13778:9499564,16704220:0,0,0 -(1,13778:9499564,16704220:0,0,0 -g1,13778:9499564,16704220 -g1,13778:9499564,16704220 -g1,13778:9499564,16704220 -g1,13778:9499564,16704220 -g1,13778:9499564,16704220 -(1,13778:9499564,16704220:0,0,0 -(1,13778:9499564,16704220:2386891,454754,104590 -(1,13778:9499564,16704220:2386891,454754,104590 -g1,13778:10776534,16704220 -$1,13778:10776534,16704220 -$1,13778:11384053,16704220 -g1,13778:11563360,16704220 -(1,13778:11563360,16704220:0,373362,104590 -r1,13824:11886455,16704220:323095,477952,104590 -k1,13778:11563360,16704220:-323095 -) -(1,13778:11563360,16704220:323095,373362,104590 -k1,13778:11563360,16704220:3277 -h1,13778:11883178,16704220:0,370085,101313 -) -) -g1,13778:11886455,16704220 -) -) -g1,13778:9499564,16704220 -g1,13778:9499564,16704220 -) -) -g1,13778:9499564,16704220 -g1,13779:9499564,16704220 -(1,13779:9499564,16704220:0,0,0 -(1,13779:9499564,16704220:0,0,0 -g1,13779:9499564,16704220 -g1,13779:9499564,16704220 -g1,13779:9499564,16704220 -g1,13779:9499564,16704220 -g1,13779:9499564,16704220 -(1,13779:9499564,16704220:0,0,0 -(1,13779:9499564,16704220:2386891,454754,104590 -(1,13779:9499564,16704220:2386891,454754,104590 -g1,13779:10776534,16704220 -$1,13779:10776534,16704220 -$1,13779:11384053,16704220 -g1,13779:11563360,16704220 -(1,13779:11563360,16704220:0,373362,104590 -r1,13824:11886455,16704220:323095,477952,104590 -k1,13779:11563360,16704220:-323095 -) -(1,13779:11563360,16704220:323095,373362,104590 -k1,13779:11563360,16704220:3277 -h1,13779:11883178,16704220:0,370085,101313 -) -) -g1,13779:11886455,16704220 -) -) -g1,13779:9499564,16704220 -g1,13779:9499564,16704220 -) -) -(1,13780:9499564,16704220:0,0,0 -(1,13780:9499564,16704220:0,0,0 -g1,13780:9499564,16704220 -g1,13780:9499564,16704220 -g1,13780:9499564,16704220 -g1,13780:9499564,16704220 -g1,13780:9499564,16704220 -(1,13780:9499564,16704220:0,0,0 -(1,13780:9499564,16704220:4754664,408008,104590 -(1,13780:9499564,16704220:4754664,408008,104590 -(1,13780:9499564,16704220:0,408008,104590 -r1,13824:14254228,16704220:4754664,512598,104590 -k1,13780:9499564,16704220:-4754664 -) -(1,13780:9499564,16704220:4754664,408008,104590 -k1,13780:9499564,16704220:3277 -h1,13780:14250951,16704220:0,370085,101313 -) -) -g1,13780:14254228,16704220 -) -) -g1,13780:9499564,16704220 -g1,13780:9499564,16704220 -) -) -g1,13780:9499564,16704220 -(1,13781:9499564,16704220:0,0,0 -(1,13781:9499564,16704220:0,0,0 -g1,13781:9499564,16704220 -g1,13781:9499564,16704220 -g1,13781:9499564,16704220 -g1,13781:9499564,16704220 -g1,13781:9499564,16704220 -(1,13781:9499564,16704220:0,0,0 -(1,13781:9499564,16704220:5341339,454754,120913 -(1,13781:9499564,16704220:5341339,454754,120913 -(1,13781:9499564,16704220:0,408008,104590 -r1,13824:13621146,16704220:4121582,512598,104590 -k1,13781:9499564,16704220:-4121582 -) -(1,13781:9499564,16704220:4121582,408008,104590 -k1,13781:9499564,16704220:3277 -h1,13781:13617869,16704220:0,370085,101313 -) -g1,13781:13800453,16704220 -) -g1,13781:14840903,16704220 -) -) -g1,13781:9499564,16704220 -g1,13781:9499564,16704220 -) -) -g1,13781:9499564,16704220 -(1,13782:9499564,16704220:0,0,0 -(1,13782:9499564,16704220:0,0,0 -g1,13782:9499564,16704220 -g1,13782:9499564,16704220 -g1,13782:9499564,16704220 -g1,13782:9499564,16704220 -g1,13782:9499564,16704220 -(1,13782:9499564,16704220:0,0,0 -(1,13782:9499564,16704220:2855420,408008,104590 -(1,13782:9499564,16704220:2855420,408008,104590 -(1,13782:9499564,16704220:0,408008,104590 -r1,13824:12354984,16704220:2855420,512598,104590 -k1,13782:9499564,16704220:-2855420 -) -(1,13782:9499564,16704220:2855420,408008,104590 -k1,13782:9499564,16704220:3277 -h1,13782:12351707,16704220:0,370085,101313 -) -) -g1,13782:12354984,16704220 -) -) -g1,13782:9499564,16704220 -g1,13782:9499564,16704220 -) -) -g1,13782:9499564,16704220 -(1,13783:9499564,16704220:0,0,0 -(1,13783:9499564,16704220:0,0,0 -g1,13783:9499564,16704220 -g1,13783:9499564,16704220 -g1,13783:9499564,16704220 -g1,13783:9499564,16704220 -g1,13783:9499564,16704220 -(1,13783:9499564,16704220:0,0,0 -(1,13783:9499564,16704220:2538879,414307,104590 -(1,13783:9499564,16704220:2538879,414307,104590 -(1,13783:9499564,16704220:0,414307,104590 -r1,13824:12038443,16704220:2538879,518897,104590 -k1,13783:9499564,16704220:-2538879 -) -(1,13783:9499564,16704220:2538879,414307,104590 -k1,13783:9499564,16704220:3277 -h1,13783:12035166,16704220:0,370085,101313 -) -) -g1,13783:12038443,16704220 -) -) -g1,13783:9499564,16704220 -g1,13783:9499564,16704220 -) -) -(1,13784:9499564,16704220:0,0,0 -(1,13784:9499564,16704220:0,0,0 -g1,13784:9499564,16704220 -g1,13784:9499564,16704220 -g1,13784:9499564,16704220 -g1,13784:9499564,16704220 -g1,13784:9499564,16704220 -(1,13784:9499564,16704220:0,0,0 -(1,13784:9499564,16704220:3488501,408008,104590 -(1,13784:9499564,16704220:3488501,408008,104590 -(1,13784:9499564,16704220:0,408008,104590 -r1,13824:12988065,16704220:3488501,512598,104590 -k1,13784:9499564,16704220:-3488501 -) -(1,13784:9499564,16704220:3488501,408008,104590 -k1,13784:9499564,16704220:3277 -h1,13784:12984788,16704220:0,370085,101313 -) -) -g1,13784:12988065,16704220 -) -) -g1,13784:9499564,16704220 -g1,13784:9499564,16704220 -) -) -g1,13784:9499564,16704220 -g1,13785:9499564,16704220 -g1,13785:9499564,16704220 -g1,13785:9499564,16704220 -g1,13785:9499564,16704220 -g1,13785:9499564,16704220 -g1,13785:9499564,16704220 -g1,13786:9499564,16704220 -g1,13786:9499564,16704220 -g1,13786:9499564,16704220 -g1,13786:9499564,16704220 -g1,13786:9499564,16704220 -g1,13786:9499564,16704220 -g1,13787:9499564,16704220 -g1,13787:9499564,16704220 -g1,13787:9499564,16704220 -g1,13787:9499564,16704220 -g1,13787:9499564,16704220 -g1,13787:9499564,16704220 -g1,13788:9499564,16704220 -g1,13788:9499564,16704220 -g1,13788:9499564,16704220 -g1,13788:9499564,16704220 -g1,13788:9499564,16704220 -g1,13788:9499564,16704220 -g1,13789:9499564,16704220 -g1,13789:9499564,16704220 -g1,13789:9499564,16704220 -g1,13789:9499564,16704220 -g1,13789:9499564,16704220 -g1,13789:9499564,16704220 -g1,13790:9499564,16704220 -g1,13790:9499564,16704220 -g1,13790:9499564,16704220 -g1,13790:9499564,16704220 -g1,13790:9499564,16704220 -g1,13790:9499564,16704220 -g1,13791:9499564,16704220 -g1,13791:9499564,16704220 -) -g1,13791:9499564,16704220 -) -) -g1,13793:31592025,20502624 -k1,13793:32583029,20502624:991004 -) -v1,13796:6630773,22348450:0,393216,0 -(1,13814:6630773,29980687:25952256,8025453,196608 -g1,13814:6630773,29980687 -g1,13814:6630773,29980687 -g1,13814:6434165,29980687 -(1,13814:6434165,29980687:0,8025453,196608 -r1,13824:32779637,29980687:26345472,8222061,196608 -k1,13814:6434165,29980687:-26345472 -) -(1,13814:6434165,29980687:26345472,8025453,196608 -[1,13814:6630773,29980687:25952256,7828845,0 -(1,13798:6630773,22562360:25952256,410518,101187 -(1,13797:6630773,22562360:0,0,0 -g1,13797:6630773,22562360 -g1,13797:6630773,22562360 -g1,13797:6303093,22562360 -(1,13797:6303093,22562360:0,0,0 -) -g1,13797:6630773,22562360 -) -g1,13798:7895356,22562360 -g1,13798:8843794,22562360 -g1,13798:13902126,22562360 -g1,13798:14534418,22562360 -g1,13798:18328167,22562360 -g1,13798:18960459,22562360 -g1,13798:19592751,22562360 -h1,13798:22754208,22562360:0,0,0 -k1,13798:32583029,22562360:9828821 -g1,13798:32583029,22562360 -) -(1,13799:6630773,23228538:25952256,410518,101187 -h1,13799:6630773,23228538:0,0,0 -k1,13799:6630773,23228538:0 -h1,13799:9792229,23228538:0,0,0 -k1,13799:32583029,23228538:22790800 -g1,13799:32583029,23228538 -) -(1,13809:6630773,23894716:25952256,404226,7863 -(1,13801:6630773,23894716:0,0,0 -g1,13801:6630773,23894716 -g1,13801:6630773,23894716 -g1,13801:6303093,23894716 -(1,13801:6303093,23894716:0,0,0 -) -g1,13801:6630773,23894716 -) -g1,13809:7579210,23894716 -h1,13809:9159938,23894716:0,0,0 -k1,13809:32583030,23894716:23423092 -g1,13809:32583030,23894716 -) -(1,13809:6630773,24560894:25952256,410518,101187 -h1,13809:6630773,24560894:0,0,0 -g1,13809:7579210,24560894 -g1,13809:12637541,24560894 -g1,13809:13269833,24560894 -g1,13809:17063582,24560894 -g1,13809:17695874,24560894 -g1,13809:18328166,24560894 -h1,13809:21489623,24560894:0,0,0 -k1,13809:32583029,24560894:11093406 -g1,13809:32583029,24560894 -) -(1,13809:6630773,25227072:25952256,379060,0 -h1,13809:6630773,25227072:0,0,0 -h1,13809:7263064,25227072:0,0,0 -k1,13809:32583028,25227072:25319964 -g1,13809:32583028,25227072 -) -(1,13809:6630773,25893250:25952256,404226,107478 -h1,13809:6630773,25893250:0,0,0 -g1,13809:7579210,25893250 -g1,13809:10740667,25893250 -g1,13809:13902124,25893250 -g1,13809:14218270,25893250 -g1,13809:16115144,25893250 -g1,13809:19276601,25893250 -g1,13809:19592747,25893250 -g1,13809:22121913,25893250 -g1,13809:25283370,25893250 -g1,13809:26547953,25893250 -h1,13809:30025555,25893250:0,0,0 -k1,13809:32583029,25893250:2557474 -g1,13809:32583029,25893250 -) -(1,13809:6630773,26559428:25952256,410518,107478 -h1,13809:6630773,26559428:0,0,0 -g1,13809:7579210,26559428 -g1,13809:11056813,26559428 -g1,13809:13585979,26559428 -g1,13809:14534416,26559428 -g1,13809:17063582,26559428 -g1,13809:18960456,26559428 -h1,13809:21489621,26559428:0,0,0 -k1,13809:32583029,26559428:11093408 -g1,13809:32583029,26559428 -) -(1,13809:6630773,27225606:25952256,404226,76021 -h1,13809:6630773,27225606:0,0,0 -g1,13809:7579210,27225606 -g1,13809:10740667,27225606 -g1,13809:13902124,27225606 -g1,13809:16115144,27225606 -h1,13809:18644309,27225606:0,0,0 -k1,13809:32583029,27225606:13938720 -g1,13809:32583029,27225606 -) -(1,13809:6630773,27891784:25952256,388497,9436 -h1,13809:6630773,27891784:0,0,0 -g1,13809:7579210,27891784 -g1,13809:9159939,27891784 -h1,13809:11689104,27891784:0,0,0 -k1,13809:32583028,27891784:20893924 -g1,13809:32583028,27891784 -) -(1,13811:6630773,29213322:25952256,410518,101187 -(1,13810:6630773,29213322:0,0,0 -g1,13810:6630773,29213322 -g1,13810:6630773,29213322 -g1,13810:6303093,29213322 -(1,13810:6303093,29213322:0,0,0 -) -g1,13810:6630773,29213322 -) -k1,13811:6630773,29213322:0 -g1,13811:9792231,29213322 -g1,13811:11372960,29213322 -g1,13811:12005252,29213322 -h1,13811:13269835,29213322:0,0,0 -k1,13811:32583029,29213322:19313194 -g1,13811:32583029,29213322 -) -(1,13812:6630773,29879500:25952256,410518,101187 -h1,13812:6630773,29879500:0,0,0 -g1,13812:9476085,29879500 -g1,13812:10108377,29879500 -g1,13812:13902126,29879500 -g1,13812:14534418,29879500 -g1,13812:15166710,29879500 -h1,13812:18328167,29879500:0,0,0 -k1,13812:32583029,29879500:14254862 -g1,13812:32583029,29879500 -) -] -) -g1,13814:32583029,29980687 -g1,13814:6630773,29980687 -g1,13814:6630773,29980687 -g1,13814:32583029,29980687 -g1,13814:32583029,29980687 -) -h1,13814:6630773,30177295:0,0,0 -(1,13817:6630773,44781103:25952256,14013984,0 -k1,13817:12599879,44781103:5969106 -h1,13816:12599879,44781103:0,0,0 -(1,13816:12599879,44781103:14014044,14013984,0 -(1,13816:12599879,44781103:14014019,14014019,0 -(1,13816:12599879,44781103:14014019,14014019,0 -(1,13816:12599879,44781103:0,14014019,0 -(1,13816:12599879,44781103:0,18945146,0 -(1,13816:12599879,44781103:18945146,18945146,0 -) -k1,13816:12599879,44781103:-18945146 -) -) -g1,13816:26613898,44781103 -) -) -) -g1,13817:26613923,44781103 -k1,13817:32583029,44781103:5969106 -) -(1,13824:6630773,45622591:25952256,513147,134348 -h1,13823:6630773,45622591:983040,0,0 -k1,13823:10593006,45622591:189325 -(1,13823:10593006,45622591:0,452978,115847 -r1,13824:12358119,45622591:1765113,568825,115847 -k1,13823:10593006,45622591:-1765113 -) -(1,13823:10593006,45622591:1765113,452978,115847 -k1,13823:10593006,45622591:3277 -h1,13823:12354842,45622591:0,411205,112570 -) -k1,13823:12547444,45622591:189325 -k1,13823:13754544,45622591:189326 -k1,13823:14299729,45622591:189325 -k1,13823:18062077,45622591:189325 -k1,13823:20586450,45622591:189325 -k1,13823:22511169,45622591:189326 -k1,13823:24194715,45622591:189325 -k1,13823:26492333,45622591:189325 -k1,13823:27481853,45622591:189325 -k1,13823:29052023,45622591:189326 -k1,13823:32051532,45622591:189325 -k1,13823:32583029,45622591:0 +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 ) ] -(1,13824:32583029,45706769:0,0,0 -g1,13824:32583029,45706769 ) ) -] -(1,13824:6630773,47279633:25952256,0,0 -h1,13824:6630773,47279633:25952256,0,0 ) ] -(1,13824:4262630,4025873:0,0,0 -[1,13824:-473656,4025873:0,0,0 -(1,13824:-473656,-710413:0,0,0 -(1,13824:-473656,-710413:0,0,0 -g1,13824:-473656,-710413 -) -g1,13824:-473656,-710413 +[1,13425:3078558,4812305:0,0,0 +(1,13425:3078558,49800853:0,16384,2228224 +g1,13425:29030814,49800853 +g1,13425:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,13425:36151628,51504789:16384,1179648,0 ) -] +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 +) +] +) +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,13425:37855564,49800853:1179648,16384,0 ) -] -!22499 -}236 -Input:2110:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2111:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2112:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2113:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2114:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2115:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2116:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2117:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2118:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2119:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2120:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2121:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2122:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1234 -{237 -[1,13896:4262630,47279633:28320399,43253760,0 -(1,13896:4262630,4025873:0,0,0 -[1,13896:-473656,4025873:0,0,0 -(1,13896:-473656,-710413:0,0,0 -(1,13896:-473656,-644877:0,0,0 -k1,13896:-473656,-644877:-65536 ) -(1,13896:-473656,4736287:0,0,0 -k1,13896:-473656,4736287:5209943 +k1,13425:3078556,49800853:-34777008 +) +] +g1,13425:6630773,4812305 +k1,13425:19540057,4812305:11713907 +g1,13425:21162728,4812305 +g1,13425:21985204,4812305 +g1,13425:24539797,4812305 +g1,13425:25949476,4812305 +g1,13425:28728857,4812305 +g1,13425:29852144,4812305 +) +) +] +[1,13425:6630773,45706769:25952256,40108032,0 +(1,13425:6630773,45706769:25952256,40108032,0 +(1,13425:6630773,45706769:0,0,0 +g1,13425:6630773,45706769 +) +[1,13425:6630773,45706769:25952256,40108032,0 +v1,13346:6630773,6254097:0,393216,0 +(1,13346:6630773,7373456:25952256,1512575,0 +g1,13346:6630773,7373456 +g1,13346:6237557,7373456 +r1,13425:6368629,7373456:131072,1512575,0 +g1,13346:6567858,7373456 +g1,13346:6764466,7373456 +[1,13346:6764466,7373456:25818563,1512575,0 +(1,13346:6764466,6374028:25818563,513147,134348 +k1,13345:7661704,6374028:237946 +k1,13345:8918735,6374028:237946 +k1,13345:11116207,6374028:237946 +k1,13345:11885650,6374028:237946 +k1,13345:15059609,6374028:237946 +k1,13345:16489000,6374028:237946 +k1,13345:17793216,6374028:237945 +k1,13345:20160427,6374028:237946 +k1,13345:21164489,6374028:237946 +k1,13345:22421520,6374028:237946 +k1,13345:25373312,6374028:237946 +k1,13345:28395883,6374028:237946 +k1,13345:29625389,6374028:237946 +k1,13345:32583029,6374028:0 +) +(1,13346:6764466,7239108:25818563,513147,134348 +g1,13345:8035864,7239108 +g1,13345:9153908,7239108 +g1,13345:12337647,7239108 +g1,13345:13068373,7239108 +g1,13345:16020769,7239108 +g1,13345:16981526,7239108 +g1,13345:18782455,7239108 +g1,13345:22054012,7239108 +k1,13346:32583029,7239108:7444893 +g1,13346:32583029,7239108 +) +] +g1,13346:32583029,7373456 +) +h1,13346:6630773,7373456:0,0,0 +v1,13349:6630773,8238536:0,393216,0 +(1,13350:6630773,14728877:25952256,6883557,0 +g1,13350:6630773,14728877 +g1,13350:6237557,14728877 +r1,13425:6368629,14728877:131072,6883557,0 +g1,13350:6567858,14728877 +g1,13350:6764466,14728877 +[1,13350:6764466,14728877:25818563,6883557,0 +(1,13350:6764466,8546834:25818563,701514,196608 +(1,13349:6764466,8546834:0,701514,196608 +r1,13425:8010564,8546834:1246098,898122,196608 +k1,13349:6764466,8546834:-1246098 +) +(1,13349:6764466,8546834:1246098,701514,196608 +) +k1,13349:8306036,8546834:295472 +k1,13349:8633716,8546834:327680 +k1,13349:11327149,8546834:295471 +(1,13349:11327149,8546834:0,452978,115847 +r1,13425:14147398,8546834:2820249,568825,115847 +k1,13349:11327149,8546834:-2820249 +) +(1,13349:11327149,8546834:2820249,452978,115847 +k1,13349:11327149,8546834:3277 +h1,13349:14144121,8546834:0,411205,112570 +) +k1,13349:14442870,8546834:295472 +k1,13349:17502650,8546834:295471 +k1,13349:18817207,8546834:295472 +k1,13349:20212372,8546834:295471 +k1,13349:22075465,8546834:295472 +k1,13349:23390021,8546834:295471 +k1,13349:25673200,8546834:295472 +k1,13349:26656144,8546834:295471 +k1,13349:29084813,8546834:295472 +k1,13349:32124932,8546834:295471 +k1,13349:32583029,8546834:0 +) +(1,13350:6764466,9411914:25818563,513147,126483 +k1,13349:8405133,9411914:275552 +k1,13349:9442214,9411914:275553 +k1,13349:12157016,9411914:275552 +k1,13349:15403315,9411914:275552 +k1,13349:16310635,9411914:275553 +k1,13349:17056080,9411914:275552 +k1,13349:18761628,9411914:275552 +k1,13349:21491504,9411914:275553 +(1,13349:21491504,9411914:0,452978,122846 +r1,13425:24663464,9411914:3171960,575824,122846 +k1,13349:21491504,9411914:-3171960 +) +(1,13349:21491504,9411914:3171960,452978,122846 +k1,13349:21491504,9411914:3277 +h1,13349:24660187,9411914:0,411205,112570 +) +k1,13349:24939016,9411914:275552 +k1,13349:25865996,9411914:275552 +k1,13349:28345524,9411914:275552 +k1,13349:29640162,9411914:275553 +k1,13349:31015408,9411914:275552 +k1,13349:32583029,9411914:0 +) +(1,13350:6764466,10276994:25818563,513147,134348 +k1,13349:8040989,10276994:257438 +k1,13349:10286133,10276994:257437 +k1,13349:11231044,10276994:257438 +k1,13349:13621678,10276994:257437 +k1,13349:15075803,10276994:257438 +k1,13349:17598820,10276994:257437 +(1,13349:17598820,10276994:0,452978,115847 +r1,13425:20419069,10276994:2820249,568825,115847 +k1,13349:17598820,10276994:-2820249 +) +(1,13349:17598820,10276994:2820249,452978,115847 +k1,13349:17598820,10276994:3277 +h1,13349:20415792,10276994:0,411205,112570 +) +k1,13349:20676507,10276994:257438 +k1,13349:23388267,10276994:257437 +k1,13349:25572463,10276994:257438 +k1,13349:26516062,10276994:257437 +k1,13349:28162208,10276994:257438 +k1,13349:29105807,10276994:257437 +k1,13349:30382330,10276994:257438 +k1,13350:32583029,10276994:0 +) +(1,13350:6764466,11142074:25818563,513147,134348 +k1,13349:7657435,11142074:205496 +k1,13349:9822456,11142074:205495 +k1,13349:12730001,11142074:205496 +k1,13349:13291356,11142074:205495 +k1,13349:16120258,11142074:205496 +k1,13349:18484509,11142074:205495 +(1,13349:18484509,11142074:0,452978,115847 +r1,13425:19897910,11142074:1413401,568825,115847 +k1,13349:18484509,11142074:-1413401 +) +(1,13349:18484509,11142074:1413401,452978,115847 +k1,13349:18484509,11142074:3277 +h1,13349:19894633,11142074:0,411205,112570 +) +k1,13349:20103406,11142074:205496 +k1,13349:20991786,11142074:205495 +k1,13349:21553142,11142074:205496 +k1,13349:26167244,11142074:205495 +k1,13349:27039896,11142074:205496 +(1,13349:27039896,11142074:0,452978,122846 +r1,13425:30211856,11142074:3171960,575824,122846 +k1,13349:27039896,11142074:-3171960 +) +(1,13349:27039896,11142074:3171960,452978,122846 +k1,13349:27039896,11142074:3277 +h1,13349:30208579,11142074:0,411205,112570 +) +k1,13349:30417351,11142074:205495 +k1,13349:31931601,11142074:205496 +k1,13349:32583029,11142074:0 +) +(1,13350:6764466,12007154:25818563,513147,115847 +k1,13349:9230618,12007154:262176 +k1,13349:10511880,12007154:262177 +k1,13349:11873750,12007154:262176 +k1,13349:12667423,12007154:262176 +k1,13349:15887240,12007154:262177 +k1,13349:18677795,12007154:262176 +k1,13349:19599263,12007154:262176 +k1,13349:21238350,12007154:262176 +k1,13349:23954850,12007154:262177 +(1,13349:23954850,12007154:0,452978,115847 +r1,13425:26775099,12007154:2820249,568825,115847 +k1,13349:23954850,12007154:-2820249 +) +(1,13349:23954850,12007154:2820249,452978,115847 +k1,13349:23954850,12007154:3277 +h1,13349:26771822,12007154:0,411205,112570 +) +k1,13349:27037275,12007154:262176 +k1,13349:28403733,12007154:262176 +k1,13349:29413676,12007154:262177 +k1,13349:31189078,12007154:262176 +k1,13349:32583029,12007154:0 +) +(1,13350:6764466,12872234:25818563,513147,134348 +k1,13349:9259640,12872234:177166 +k1,13349:11149261,12872234:177165 +k1,13349:12720378,12872234:177166 +k1,13349:14649321,12872234:177166 +k1,13349:17588829,12872234:177165 +k1,13349:20724290,12872234:177166 +k1,13349:22618499,12872234:177166 +k1,13349:25706118,12872234:177165 +k1,13349:27844121,12872234:177166 +k1,13349:32583029,12872234:0 +) +(1,13350:6764466,13737314:25818563,513147,134348 +k1,13349:7680505,13737314:256747 +k1,13349:10391574,13737314:256746 +(1,13349:10391574,13737314:0,452978,115847 +r1,13425:13211823,13737314:2820249,568825,115847 +k1,13349:10391574,13737314:-2820249 +) +(1,13349:10391574,13737314:2820249,452978,115847 +k1,13349:10391574,13737314:3277 +h1,13349:13208546,13737314:0,411205,112570 +) +k1,13349:13468570,13737314:256747 +k1,13349:15009822,13737314:256746 +k1,13349:16619232,13737314:256747 +k1,13349:20114768,13737314:256747 +k1,13349:21030806,13737314:256746 +k1,13349:24042031,13737314:256747 +k1,13349:27344890,13737314:256746 +k1,13349:29299675,13737314:256747 +k1,13349:32583029,13737314:0 +) +(1,13350:6764466,14602394:25818563,505283,126483 +g1,13349:7982780,14602394 +g1,13349:10819178,14602394 +k1,13350:32583029,14602394:20490486 +g1,13350:32583029,14602394 +) +] +g1,13350:32583029,14728877 +) +h1,13350:6630773,14728877:0,0,0 +(1,13353:6630773,15593957:25952256,513147,134348 +h1,13352:6630773,15593957:983040,0,0 +g1,13352:8855064,15593957 +g1,13352:10073378,15593957 +g1,13352:11656727,15593957 +g1,13352:14517373,15593957 +g1,13352:15584954,15593957 +g1,13352:18349262,15593957 +g1,13352:19567576,15593957 +g1,13352:21754512,15593957 +g1,13352:22641214,15593957 +g1,13352:24799969,15593957 +(1,13352:24799969,15593957:0,459977,115847 +r1,13425:25861658,15593957:1061689,575824,115847 +k1,13352:24799969,15593957:-1061689 +) +(1,13352:24799969,15593957:1061689,459977,115847 +k1,13352:24799969,15593957:3277 +h1,13352:25858381,15593957:0,411205,112570 +) +g1,13352:26060887,15593957 +g1,13352:27827737,15593957 +g1,13352:29525119,15593957 +h1,13352:30720496,15593957:0,0,0 +k1,13353:32583029,15593957:1688863 +g1,13353:32583029,15593957 +) +v1,13355:6630773,16278812:0,393216,0 +(1,13384:6630773,30031562:25952256,14145966,196608 +g1,13384:6630773,30031562 +g1,13384:6630773,30031562 +g1,13384:6434165,30031562 +(1,13384:6434165,30031562:0,14145966,196608 +r1,13425:32779637,30031562:26345472,14342574,196608 +k1,13384:6434165,30031562:-26345472 +) +(1,13384:6434165,30031562:26345472,14145966,196608 +[1,13384:6630773,30031562:25952256,13949358,0 +(1,13357:6630773,16513249:25952256,431045,106246 +(1,13356:6630773,16513249:0,0,0 +g1,13356:6630773,16513249 +g1,13356:6630773,16513249 +g1,13356:6303093,16513249 +(1,13356:6303093,16513249:0,0,0 +) +g1,13356:6630773,16513249 +) +g1,13357:7958589,16513249 +g1,13357:8954451,16513249 +g1,13357:11942037,16513249 +g1,13357:12605945,16513249 +g1,13357:14929623,16513249 +g1,13357:16589393,16513249 +g1,13357:17253301,16513249 +h1,13357:21568702,16513249:0,0,0 +k1,13357:32583029,16513249:11014327 +g1,13357:32583029,16513249 +) +(1,13358:6630773,17198104:25952256,431045,79822 +h1,13358:6630773,17198104:0,0,0 +k1,13358:6630773,17198104:0 +h1,13358:9950313,17198104:0,0,0 +k1,13358:32583029,17198104:22632716 +g1,13358:32583029,17198104 +) +(1,13369:6630773,18014031:25952256,431045,106246 +(1,13360:6630773,18014031:0,0,0 +g1,13360:6630773,18014031 +g1,13360:6630773,18014031 +g1,13360:6303093,18014031 +(1,13360:6303093,18014031:0,0,0 +) +g1,13360:6630773,18014031 +) +g1,13369:7626635,18014031 +g1,13369:10614220,18014031 +g1,13369:11610082,18014031 +g1,13369:14597667,18014031 +h1,13369:16257437,18014031:0,0,0 +k1,13369:32583029,18014031:16325592 +g1,13369:32583029,18014031 +) +(1,13369:6630773,18698886:25952256,398014,0 +h1,13369:6630773,18698886:0,0,0 +h1,13369:7294681,18698886:0,0,0 +k1,13369:32583029,18698886:25288348 +g1,13369:32583029,18698886 +) +(1,13369:6630773,19383741:25952256,398014,106246 +h1,13369:6630773,19383741:0,0,0 +g1,13369:7626635,19383741 +g1,13369:10946174,19383741 +h1,13369:12605944,19383741:0,0,0 +k1,13369:32583028,19383741:19977084 +g1,13369:32583028,19383741 +) +(1,13369:6630773,20068596:25952256,431045,106246 +h1,13369:6630773,20068596:0,0,0 +g1,13369:7626635,20068596 +g1,13369:7958589,20068596 +g1,13369:8290543,20068596 +g1,13369:8622497,20068596 +g1,13369:8954451,20068596 +g1,13369:9286405,20068596 +g1,13369:9618359,20068596 +g1,13369:9950313,20068596 +g1,13369:10282267,20068596 +g1,13369:10614221,20068596 +g1,13369:10946175,20068596 +g1,13369:11942037,20068596 +g1,13369:13269853,20068596 +g1,13369:14265715,20068596 +g1,13369:15925485,20068596 +g1,13369:16921347,20068596 +g1,13369:17585255,20068596 +g1,13369:19576979,20068596 +g1,13369:19908933,20068596 +g1,13369:20240887,20068596 +g1,13369:20572841,20068596 +k1,13369:20572841,20068596:0 +h1,13369:22564565,20068596:0,0,0 +k1,13369:32583029,20068596:10018464 +g1,13369:32583029,20068596 +) +(1,13369:6630773,20753451:25952256,407923,106246 +h1,13369:6630773,20753451:0,0,0 +g1,13369:7626635,20753451 +g1,13369:9618359,20753451 +g1,13369:9950313,20753451 +g1,13369:10282267,20753451 +g1,13369:10614221,20753451 +g1,13369:10946175,20753451 +g1,13369:11278129,20753451 +g1,13369:11942037,20753451 +g1,13369:14265715,20753451 +g1,13369:14597669,20753451 +g1,13369:16921347,20753451 +g1,13369:17253301,20753451 +g1,13369:19576979,20753451 +g1,13369:20240887,20753451 +g1,13369:22896519,20753451 +h1,13369:23892381,20753451:0,0,0 +k1,13369:32583029,20753451:8690648 +g1,13369:32583029,20753451 +) +(1,13369:6630773,21438306:25952256,424439,9908 +h1,13369:6630773,21438306:0,0,0 +g1,13369:7626635,21438306 +g1,13369:10946174,21438306 +g1,13369:11942036,21438306 +g1,13369:14265714,21438306 +g1,13369:14597668,21438306 +g1,13369:14929622,21438306 +h1,13369:16589392,21438306:0,0,0 +k1,13369:32583029,21438306:15993637 +g1,13369:32583029,21438306 +) +(1,13369:6630773,22123161:25952256,398014,0 +h1,13369:6630773,22123161:0,0,0 +g1,13369:7626635,22123161 +k1,13369:7626635,22123161:0 +h1,13369:8622497,22123161:0,0,0 +k1,13369:32583029,22123161:23960532 +g1,13369:32583029,22123161 +) +(1,13369:6630773,22808016:25952256,431045,112852 +h1,13369:6630773,22808016:0,0,0 +g1,13369:7626635,22808016 +g1,13369:10282267,22808016 +g1,13369:12605945,22808016 +g1,13369:12937899,22808016 +g1,13369:13601807,22808016 +g1,13369:15593531,22808016 +g1,13369:17585255,22808016 +g1,13369:19245025,22808016 +g1,13369:20904795,22808016 +g1,13369:22232611,22808016 +g1,13369:23892381,22808016 +g1,13369:25220197,22808016 +g1,13369:26548013,22808016 +g1,13369:27211921,22808016 +g1,13369:27875829,22808016 +h1,13369:28207783,22808016:0,0,0 +k1,13369:32583029,22808016:4375246 +g1,13369:32583029,22808016 +) +(1,13371:6630773,23623943:25952256,431045,112852 +(1,13370:6630773,23623943:0,0,0 +g1,13370:6630773,23623943 +g1,13370:6630773,23623943 +g1,13370:6303093,23623943 +(1,13370:6303093,23623943:0,0,0 +) +g1,13370:6630773,23623943 +) +g1,13371:8290543,23623943 +g1,13371:9286405,23623943 +g1,13371:13269853,23623943 +g1,13371:15925485,23623943 +g1,13371:16589393,23623943 +g1,13371:20572841,23623943 +g1,13371:21236749,23623943 +g1,13371:22232611,23623943 +g1,13371:22896519,23623943 +h1,13371:24888243,23623943:0,0,0 +k1,13371:32583029,23623943:7694786 +g1,13371:32583029,23623943 +) +(1,13372:6630773,24308798:25952256,431045,79822 +h1,13372:6630773,24308798:0,0,0 +k1,13372:6630773,24308798:0 +h1,13372:10282267,24308798:0,0,0 +k1,13372:32583029,24308798:22300762 +g1,13372:32583029,24308798 +) +(1,13383:6630773,25124725:25952256,431045,106246 +(1,13374:6630773,25124725:0,0,0 +g1,13374:6630773,25124725 +g1,13374:6630773,25124725 +g1,13374:6303093,25124725 +(1,13374:6303093,25124725:0,0,0 +) +g1,13374:6630773,25124725 +) +g1,13383:7626635,25124725 +g1,13383:10614220,25124725 +g1,13383:11610082,25124725 +g1,13383:14597667,25124725 +h1,13383:16257437,25124725:0,0,0 +k1,13383:32583029,25124725:16325592 +g1,13383:32583029,25124725 +) +(1,13383:6630773,25809580:25952256,398014,0 +h1,13383:6630773,25809580:0,0,0 +h1,13383:7294681,25809580:0,0,0 +k1,13383:32583029,25809580:25288348 +g1,13383:32583029,25809580 +) +(1,13383:6630773,26494435:25952256,424439,112852 +h1,13383:6630773,26494435:0,0,0 +g1,13383:7626635,26494435 +g1,13383:10946174,26494435 +g1,13383:14929621,26494435 +g1,13383:15593529,26494435 +h1,13383:16257437,26494435:0,0,0 +k1,13383:32583029,26494435:16325592 +g1,13383:32583029,26494435 +) +(1,13383:6630773,27179290:25952256,431045,106246 +h1,13383:6630773,27179290:0,0,0 +g1,13383:7626635,27179290 +g1,13383:7958589,27179290 +g1,13383:8290543,27179290 +g1,13383:8622497,27179290 +g1,13383:8954451,27179290 +g1,13383:9286405,27179290 +g1,13383:9618359,27179290 +g1,13383:9950313,27179290 +g1,13383:10282267,27179290 +g1,13383:10614221,27179290 +g1,13383:10946175,27179290 +g1,13383:11942037,27179290 +g1,13383:13269853,27179290 +g1,13383:14265715,27179290 +g1,13383:15925485,27179290 +g1,13383:16921347,27179290 +g1,13383:17585255,27179290 +g1,13383:19576979,27179290 +g1,13383:19908933,27179290 +g1,13383:20240887,27179290 +g1,13383:20572841,27179290 +k1,13383:20572841,27179290:0 +h1,13383:22564565,27179290:0,0,0 +k1,13383:32583029,27179290:10018464 +g1,13383:32583029,27179290 +) +(1,13383:6630773,27864145:25952256,407923,106246 +h1,13383:6630773,27864145:0,0,0 +g1,13383:7626635,27864145 +g1,13383:9618359,27864145 +g1,13383:9950313,27864145 +g1,13383:10282267,27864145 +g1,13383:10614221,27864145 +g1,13383:10946175,27864145 +g1,13383:11278129,27864145 +g1,13383:11942037,27864145 +g1,13383:14265715,27864145 +g1,13383:16921347,27864145 +g1,13383:17253301,27864145 +g1,13383:19576979,27864145 +g1,13383:20240887,27864145 +g1,13383:22896519,27864145 +h1,13383:23892381,27864145:0,0,0 +k1,13383:32583029,27864145:8690648 +g1,13383:32583029,27864145 +) +(1,13383:6630773,28549000:25952256,424439,9908 +h1,13383:6630773,28549000:0,0,0 +g1,13383:7626635,28549000 +g1,13383:10946174,28549000 +g1,13383:11942036,28549000 +g1,13383:14265714,28549000 +h1,13383:16589392,28549000:0,0,0 +k1,13383:32583029,28549000:15993637 +g1,13383:32583029,28549000 +) +(1,13383:6630773,29233855:25952256,398014,0 +h1,13383:6630773,29233855:0,0,0 +g1,13383:7626635,29233855 +k1,13383:7626635,29233855:0 +h1,13383:8622497,29233855:0,0,0 +k1,13383:32583029,29233855:23960532 +g1,13383:32583029,29233855 +) +(1,13383:6630773,29918710:25952256,431045,112852 +h1,13383:6630773,29918710:0,0,0 +g1,13383:7626635,29918710 +g1,13383:10282267,29918710 +g1,13383:12605945,29918710 +g1,13383:12937899,29918710 +g1,13383:13601807,29918710 +g1,13383:15593531,29918710 +g1,13383:17585255,29918710 +g1,13383:19245025,29918710 +g1,13383:20904795,29918710 +g1,13383:22232611,29918710 +g1,13383:23892381,29918710 +g1,13383:25220197,29918710 +g1,13383:26548013,29918710 +g1,13383:27211921,29918710 +g1,13383:27875829,29918710 +h1,13383:28207783,29918710:0,0,0 +k1,13383:32583029,29918710:4375246 +g1,13383:32583029,29918710 +) +] +) +g1,13384:32583029,30031562 +g1,13384:6630773,30031562 +g1,13384:6630773,30031562 +g1,13384:32583029,30031562 +g1,13384:32583029,30031562 +) +h1,13384:6630773,30228170:0,0,0 +v1,13388:6630773,31093250:0,393216,0 +(1,13389:6630773,32357290:25952256,1657256,0 +g1,13389:6630773,32357290 +g1,13389:6237557,32357290 +r1,13425:6368629,32357290:131072,1657256,0 +g1,13389:6567858,32357290 +g1,13389:6764466,32357290 +[1,13389:6764466,32357290:25818563,1657256,0 +(1,13389:6764466,31365727:25818563,665693,196608 +(1,13388:6764466,31365727:0,665693,196608 +r1,13425:8010564,31365727:1246098,862301,196608 +k1,13388:6764466,31365727:-1246098 +) +(1,13388:6764466,31365727:1246098,665693,196608 +) +k1,13388:8208331,31365727:197767 +k1,13388:9934549,31365727:327680 +k1,13388:11669135,31365727:197767 +(1,13388:11669135,31365727:0,459977,115847 +r1,13425:14489384,31365727:2820249,575824,115847 +k1,13388:11669135,31365727:-2820249 +) +(1,13388:11669135,31365727:2820249,459977,115847 +k1,13388:11669135,31365727:3277 +h1,13388:14486107,31365727:0,411205,112570 +) +k1,13388:14687150,31365727:197766 +k1,13388:16076362,31365727:197767 +(1,13388:16076362,31365727:0,459977,115847 +r1,13425:19248322,31365727:3171960,575824,115847 +k1,13388:16076362,31365727:-3171960 +) +(1,13388:16076362,31365727:3171960,459977,115847 +k1,13388:16076362,31365727:3277 +h1,13388:19245045,31365727:0,411205,112570 +) +k1,13388:19619759,31365727:197767 +k1,13388:21691856,31365727:197767 +k1,13388:23062062,31365727:197767 +k1,13388:24689825,31365727:197767 +k1,13388:26630849,31365727:197766 +k1,13388:27444654,31365727:197767 +k1,13388:28661506,31365727:197767 +k1,13388:31931601,31365727:197767 +k1,13389:32583029,31365727:0 +) +(1,13389:6764466,32230807:25818563,505283,126483 +(1,13388:6764466,32230807:0,459977,115847 +r1,13425:9233003,32230807:2468537,575824,115847 +k1,13388:6764466,32230807:-2468537 +) +(1,13388:6764466,32230807:2468537,459977,115847 +k1,13388:6764466,32230807:3277 +h1,13388:9229726,32230807:0,411205,112570 +) +g1,13388:9605902,32230807 +g1,13388:11438944,32230807 +g1,13388:13340143,32230807 +g1,13388:16493080,32230807 +g1,13388:18167524,32230807 +g1,13388:19876703,32230807 +g1,13388:22713101,32230807 +g1,13388:23528368,32230807 +(1,13388:23528368,32230807:0,459977,115847 +r1,13425:24941769,32230807:1413401,575824,115847 +k1,13388:23528368,32230807:-1413401 +) +(1,13388:23528368,32230807:1413401,459977,115847 +k1,13388:23528368,32230807:3277 +h1,13388:24938492,32230807:0,411205,112570 +) +g1,13388:25140998,32230807 +g1,13388:28521345,32230807 +g1,13388:29372002,32230807 +(1,13388:29372002,32230807:0,459977,115847 +r1,13425:30433691,32230807:1061689,575824,115847 +k1,13388:29372002,32230807:-1061689 +) +(1,13388:29372002,32230807:1061689,459977,115847 +k1,13388:29372002,32230807:3277 +h1,13388:30430414,32230807:0,411205,112570 +) +k1,13389:32583029,32230807:1822313 +g1,13389:32583029,32230807 +) +] +g1,13389:32583029,32357290 +) +h1,13389:6630773,32357290:0,0,0 +(1,13392:6630773,33222370:25952256,513147,134348 +h1,13391:6630773,33222370:983040,0,0 +k1,13391:8451424,33222370:209776 +k1,13391:9680286,33222370:209777 +k1,13391:11860730,33222370:209776 +k1,13391:13925831,33222370:209777 +k1,13391:15003959,33222370:209776 +k1,13391:17932825,33222370:209777 +k1,13391:19161686,33222370:209776 +k1,13391:22443790,33222370:209776 +k1,13391:24858854,33222370:209777 +k1,13391:25720058,33222370:209776 +(1,13391:25720058,33222370:0,459977,115847 +r1,13425:28188595,33222370:2468537,575824,115847 +k1,13391:25720058,33222370:-2468537 +) +(1,13391:25720058,33222370:2468537,459977,115847 +k1,13391:25720058,33222370:3277 +h1,13391:28185318,33222370:0,411205,112570 +) +k1,13391:28572042,33222370:209777 +k1,13391:30162662,33222370:209776 +k1,13391:30903936,33222370:209777 +k1,13391:31469572,33222370:209776 +k1,13392:32583029,33222370:0 +) +(1,13392:6630773,34087450:25952256,513147,126483 +k1,13391:8706684,34087450:237626 +k1,13391:10210465,34087450:237625 +k1,13391:11520260,34087450:237626 +k1,13391:12705537,34087450:237626 +k1,13391:15604580,34087450:237626 +k1,13391:16493633,34087450:237625 +k1,13391:17418732,34087450:237626 +k1,13391:18675443,34087450:237626 +k1,13391:20566541,34087450:237625 +k1,13391:22791874,34087450:237626 +k1,13391:23680928,34087450:237626 +k1,13391:24274413,34087450:237625 +k1,13391:26592152,34087450:237626 +k1,13391:27489070,34087450:237626 +k1,13391:28745781,34087450:237626 +k1,13391:30372769,34087450:237625 +k1,13391:31478747,34087450:237626 +k1,13391:32583029,34087450:0 +) +(1,13392:6630773,34952530:25952256,505283,134348 +g1,13391:8267207,34952530 +g1,13391:8822296,34952530 +g1,13391:11533520,34952530 +g1,13391:14805077,34952530 +g1,13391:15655734,34952530 +g1,13391:19135695,34952530 +(1,13391:19135695,34952530:0,452978,115847 +r1,13425:21252520,34952530:2116825,568825,115847 +k1,13391:19135695,34952530:-2116825 +) +(1,13391:19135695,34952530:2116825,452978,115847 +k1,13391:19135695,34952530:3277 +h1,13391:21249243,34952530:0,411205,112570 +) +k1,13392:32583029,34952530:11156839 +g1,13392:32583029,34952530 +) +v1,13394:6630773,35637385:0,393216,0 +(1,13409:6630773,42279441:25952256,7035272,196608 +g1,13409:6630773,42279441 +g1,13409:6630773,42279441 +g1,13409:6434165,42279441 +(1,13409:6434165,42279441:0,7035272,196608 +r1,13425:32779637,42279441:26345472,7231880,196608 +k1,13409:6434165,42279441:-26345472 +) +(1,13409:6434165,42279441:26345472,7035272,196608 +[1,13409:6630773,42279441:25952256,6838664,0 +(1,13396:6630773,35871822:25952256,431045,106246 +(1,13395:6630773,35871822:0,0,0 +g1,13395:6630773,35871822 +g1,13395:6630773,35871822 +g1,13395:6303093,35871822 +(1,13395:6303093,35871822:0,0,0 +) +g1,13395:6630773,35871822 +) +g1,13396:8290543,35871822 +g1,13396:9286405,35871822 +g1,13396:13269853,35871822 +g1,13396:15593531,35871822 +g1,13396:16257439,35871822 +g1,13396:18581117,35871822 +g1,13396:20240887,35871822 +g1,13396:22564565,35871822 +h1,13396:24224335,35871822:0,0,0 +k1,13396:32583029,35871822:8358694 +g1,13396:32583029,35871822 +) +(1,13397:6630773,36556677:25952256,431045,79822 +h1,13397:6630773,36556677:0,0,0 +k1,13397:6630773,36556677:0 +h1,13397:10282267,36556677:0,0,0 +k1,13397:32583029,36556677:22300762 +g1,13397:32583029,36556677 +) +(1,13408:6630773,37372604:25952256,431045,106246 +(1,13399:6630773,37372604:0,0,0 +g1,13399:6630773,37372604 +g1,13399:6630773,37372604 +g1,13399:6303093,37372604 +(1,13399:6303093,37372604:0,0,0 +) +g1,13399:6630773,37372604 +) +g1,13408:7626635,37372604 +g1,13408:10614220,37372604 +g1,13408:11610082,37372604 +g1,13408:14597667,37372604 +h1,13408:16257437,37372604:0,0,0 +k1,13408:32583029,37372604:16325592 +g1,13408:32583029,37372604 +) +(1,13408:6630773,38057459:25952256,398014,0 +h1,13408:6630773,38057459:0,0,0 +h1,13408:7294681,38057459:0,0,0 +k1,13408:32583029,38057459:25288348 +g1,13408:32583029,38057459 +) +(1,13408:6630773,38742314:25952256,398014,106246 +h1,13408:6630773,38742314:0,0,0 +g1,13408:7626635,38742314 +g1,13408:10946174,38742314 +h1,13408:12605944,38742314:0,0,0 +k1,13408:32583028,38742314:19977084 +g1,13408:32583028,38742314 +) +(1,13408:6630773,39427169:25952256,431045,106246 +h1,13408:6630773,39427169:0,0,0 +g1,13408:7626635,39427169 +g1,13408:7958589,39427169 +g1,13408:8290543,39427169 +g1,13408:8622497,39427169 +g1,13408:8954451,39427169 +g1,13408:9286405,39427169 +g1,13408:9618359,39427169 +g1,13408:9950313,39427169 +g1,13408:10282267,39427169 +g1,13408:10614221,39427169 +g1,13408:10946175,39427169 +g1,13408:11942037,39427169 +g1,13408:13269853,39427169 +g1,13408:14265715,39427169 +g1,13408:15925485,39427169 +g1,13408:16921347,39427169 +g1,13408:17585255,39427169 +g1,13408:19576979,39427169 +g1,13408:19908933,39427169 +g1,13408:20240887,39427169 +g1,13408:20572841,39427169 +k1,13408:20572841,39427169:0 +h1,13408:22564565,39427169:0,0,0 +k1,13408:32583029,39427169:10018464 +g1,13408:32583029,39427169 +) +(1,13408:6630773,40112024:25952256,407923,106246 +h1,13408:6630773,40112024:0,0,0 +g1,13408:7626635,40112024 +g1,13408:9618359,40112024 +g1,13408:9950313,40112024 +g1,13408:10282267,40112024 +g1,13408:10614221,40112024 +g1,13408:10946175,40112024 +g1,13408:11278129,40112024 +g1,13408:11942037,40112024 +g1,13408:14265715,40112024 +g1,13408:14597669,40112024 +g1,13408:16921347,40112024 +g1,13408:17253301,40112024 +g1,13408:19576979,40112024 +g1,13408:22896519,40112024 +h1,13408:23892381,40112024:0,0,0 +k1,13408:32583029,40112024:8690648 +g1,13408:32583029,40112024 +) +(1,13408:6630773,40796879:25952256,424439,9908 +h1,13408:6630773,40796879:0,0,0 +g1,13408:7626635,40796879 +g1,13408:10946174,40796879 +g1,13408:11942036,40796879 +g1,13408:12273990,40796879 +g1,13408:14265714,40796879 +g1,13408:14597668,40796879 +g1,13408:14929622,40796879 +h1,13408:16589392,40796879:0,0,0 +k1,13408:32583029,40796879:15993637 +g1,13408:32583029,40796879 +) +(1,13408:6630773,41481734:25952256,398014,0 +h1,13408:6630773,41481734:0,0,0 +g1,13408:7626635,41481734 +k1,13408:7626635,41481734:0 +h1,13408:8622497,41481734:0,0,0 +k1,13408:32583029,41481734:23960532 +g1,13408:32583029,41481734 +) +(1,13408:6630773,42166589:25952256,431045,112852 +h1,13408:6630773,42166589:0,0,0 +g1,13408:7626635,42166589 +g1,13408:10282267,42166589 +g1,13408:12605945,42166589 +g1,13408:12937899,42166589 +g1,13408:13601807,42166589 +g1,13408:15593531,42166589 +g1,13408:17585255,42166589 +g1,13408:19245025,42166589 +g1,13408:20904795,42166589 +g1,13408:22232611,42166589 +g1,13408:23892381,42166589 +g1,13408:25220197,42166589 +g1,13408:26548013,42166589 +g1,13408:27211921,42166589 +g1,13408:27875829,42166589 +h1,13408:28207783,42166589:0,0,0 +k1,13408:32583029,42166589:4375246 +g1,13408:32583029,42166589 +) +] +) +g1,13409:32583029,42279441 +g1,13409:6630773,42279441 +g1,13409:6630773,42279441 +g1,13409:32583029,42279441 +g1,13409:32583029,42279441 +) +h1,13409:6630773,42476049:0,0,0 +v1,13413:6630773,43341129:0,393216,0 +(1,13425:6630773,45513935:25952256,2566022,0 +g1,13425:6630773,45513935 +g1,13425:6237557,45513935 +r1,13425:6368629,45513935:131072,2566022,0 +g1,13425:6567858,45513935 +g1,13425:6764466,45513935 +[1,13425:6764466,45513935:25818563,2566022,0 +(1,13414:6764466,43649427:25818563,701514,196608 +(1,13413:6764466,43649427:0,701514,196608 +r1,13425:8863446,43649427:2098980,898122,196608 +k1,13413:6764466,43649427:-2098980 +) +(1,13413:6764466,43649427:2098980,701514,196608 +) +k1,13413:9027734,43649427:164288 +k1,13413:10753952,43649427:327680 +k1,13413:12701475,43649427:164288 +k1,13413:14983888,43649427:164289 +k1,13413:16899953,43649427:164288 +k1,13413:20538960,43649427:164288 +k1,13413:22097199,43649427:164288 +k1,13413:23650196,43649427:164289 +k1,13413:26056471,43649427:164288 +k1,13413:28106230,43649427:164288 +k1,13413:28802015,43649427:164288 +k1,13413:30032575,43649427:164289 +k1,13413:31215948,43649427:164288 +k1,13413:32583029,43649427:0 +) +(1,13414:6764466,44514507:25818563,513147,134348 +k1,13413:8508419,44514507:172400 +k1,13413:11008003,44514507:172401 +k1,13413:11839695,44514507:172400 +k1,13413:13995871,44514507:172401 +k1,13413:15187356,44514507:172400 +k1,13413:17253747,44514507:172401 +k1,13413:19218557,44514507:172400 +k1,13413:20338609,44514507:172401 +k1,13413:22396480,44514507:172400 +k1,13413:23220309,44514507:172401 +k1,13413:25472822,44514507:172400 +k1,13413:26664308,44514507:172401 +k1,13413:28399742,44514507:172400 +k1,13413:29030240,44514507:172401 +k1,13413:30306922,44514507:172400 +k1,13413:31227089,44514507:172401 +k1,13414:32583029,44514507:0 +) +(1,13414:6764466,45379587:25818563,513147,134348 +k1,13413:9239105,45379587:135004 +k1,13413:10025537,45379587:135004 +k1,13413:11253026,45379587:135004 +k1,13413:13662129,45379587:135004 +k1,13413:17567419,45379587:135004 +k1,13413:18650074,45379587:135004 +k1,13413:21126025,45379587:135005 +k1,13413:24406102,45379587:135004 +k1,13413:26502599,45379587:135004 +k1,13413:27755647,45379587:135004 +k1,13413:28909736,45379587:135004 +k1,13413:30540927,45379587:135004 +k1,13413:32583029,45379587:0 +) +] +g1,13425:32583029,45513935 +) +] +(1,13425:32583029,45706769:0,0,0 +g1,13425:32583029,45706769 +) +) +] +(1,13425:6630773,47279633:25952256,0,0 +h1,13425:6630773,47279633:25952256,0,0 +) +] +(1,13425:4262630,4025873:0,0,0 +[1,13425:-473656,4025873:0,0,0 +(1,13425:-473656,-710413:0,0,0 +(1,13425:-473656,-710413:0,0,0 +g1,13425:-473656,-710413 +) +g1,13425:-473656,-710413 +) +] +) +] +!31530 +}217 +Input:2046:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2047:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2048:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2049:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2050:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2051:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2052:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2053:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2054:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2055:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2056:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2057:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2058:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2059:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2060:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2061:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2062:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2063:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1704 +{218 +[1,13486:4262630,47279633:28320399,43253760,0 +(1,13486:4262630,4025873:0,0,0 +[1,13486:-473656,4025873:0,0,0 +(1,13486:-473656,-710413:0,0,0 +(1,13486:-473656,-644877:0,0,0 +k1,13486:-473656,-644877:-65536 +) +(1,13486:-473656,4736287:0,0,0 +k1,13486:-473656,4736287:5209943 ) -g1,13896:-473656,-710413 +g1,13486:-473656,-710413 ) ] ) -[1,13896:6630773,47279633:25952256,43253760,0 -[1,13896:6630773,4812305:25952256,786432,0 -(1,13896:6630773,4812305:25952256,513147,126483 -(1,13896:6630773,4812305:25952256,513147,126483 -g1,13896:3078558,4812305 -[1,13896:3078558,4812305:0,0,0 -(1,13896:3078558,2439708:0,1703936,0 -k1,13896:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,13896:2537886,2439708:1179648,16384,0 +[1,13486:6630773,47279633:25952256,43253760,0 +[1,13486:6630773,4812305:25952256,786432,0 +(1,13486:6630773,4812305:25952256,505283,134348 +(1,13486:6630773,4812305:25952256,505283,134348 +g1,13486:3078558,4812305 +[1,13486:3078558,4812305:0,0,0 +(1,13486:3078558,2439708:0,1703936,0 +k1,13486:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,13486:2537886,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,13896:3078558,1915420:16384,1179648,0 +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,13486:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] ) ) ) ] -[1,13896:3078558,4812305:0,0,0 -(1,13896:3078558,2439708:0,1703936,0 -g1,13896:29030814,2439708 -g1,13896:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,13896:36151628,1915420:16384,1179648,0 +[1,13486:3078558,4812305:0,0,0 +(1,13486:3078558,2439708:0,1703936,0 +g1,13486:29030814,2439708 +g1,13486:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,13486:36151628,1915420:16384,1179648,0 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,13896:37855564,2439708:1179648,16384,0 +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,13486:37855564,2439708:1179648,16384,0 ) ) -k1,13896:3078556,2439708:-34777008 +k1,13486:3078556,2439708:-34777008 ) ] -[1,13896:3078558,4812305:0,0,0 -(1,13896:3078558,49800853:0,16384,2228224 -k1,13896:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,13896:2537886,49800853:1179648,16384,0 +[1,13486:3078558,4812305:0,0,0 +(1,13486:3078558,49800853:0,16384,2228224 +k1,13486:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,13486:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,13896:3078558,51504789:16384,1179648,0 +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,13486:3078558,51504789:16384,1179648,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 ) ] ) ) ) ] -[1,13896:3078558,4812305:0,0,0 -(1,13896:3078558,49800853:0,16384,2228224 -g1,13896:29030814,49800853 -g1,13896:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,13896:36151628,51504789:16384,1179648,0 +[1,13486:3078558,4812305:0,0,0 +(1,13486:3078558,49800853:0,16384,2228224 +g1,13486:29030814,49800853 +g1,13486:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,13486:36151628,51504789:16384,1179648,0 ) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 ) ] ) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,13896:37855564,49800853:1179648,16384,0 +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,13486:37855564,49800853:1179648,16384,0 ) ) -k1,13896:3078556,49800853:-34777008 -) -] -g1,13896:6630773,4812305 -k1,13896:19540057,4812305:11713907 -g1,13896:21162728,4812305 -g1,13896:21985204,4812305 -g1,13896:24539797,4812305 -g1,13896:25949476,4812305 -g1,13896:28728857,4812305 -g1,13896:29852144,4812305 -) -) -] -[1,13896:6630773,45706769:25952256,40108032,0 -(1,13896:6630773,45706769:25952256,40108032,0 -(1,13896:6630773,45706769:0,0,0 -g1,13896:6630773,45706769 -) -[1,13896:6630773,45706769:25952256,40108032,0 -(1,13824:6630773,6254097:25952256,513147,126483 -k1,13823:8812372,6254097:229937 -k1,13823:11244318,6254097:229936 -k1,13823:12125683,6254097:229937 -k1,13823:13640125,6254097:229936 -k1,13823:14537218,6254097:229937 -(1,13823:14537218,6254097:0,452978,122846 -r1,13896:16302331,6254097:1765113,575824,122846 -k1,13823:14537218,6254097:-1765113 -) -(1,13823:14537218,6254097:1765113,452978,122846 -k1,13823:14537218,6254097:3277 -h1,13823:16299054,6254097:0,411205,112570 -) -k1,13823:16532268,6254097:229937 -k1,13823:18156155,6254097:229936 -(1,13823:18156155,6254097:0,459977,115847 -r1,13896:20624692,6254097:2468537,575824,115847 -k1,13823:18156155,6254097:-2468537 -) -(1,13823:18156155,6254097:2468537,459977,115847 -k1,13823:18156155,6254097:3277 -h1,13823:20621415,6254097:0,411205,112570 -) -k1,13823:21028299,6254097:229937 -(1,13823:21028299,6254097:0,459977,115847 -r1,13896:23145124,6254097:2116825,575824,115847 -k1,13823:21028299,6254097:-2116825 -) -(1,13823:21028299,6254097:2116825,459977,115847 -k1,13823:21028299,6254097:3277 -h1,13823:23141847,6254097:0,411205,112570 -) -k1,13823:23375060,6254097:229936 -k1,13823:24796442,6254097:229937 -(1,13823:24796442,6254097:0,452978,115847 -r1,13896:26209843,6254097:1413401,568825,115847 -k1,13823:24796442,6254097:-1413401 -) -(1,13823:24796442,6254097:1413401,452978,115847 -k1,13823:24796442,6254097:3277 -h1,13823:26206566,6254097:0,411205,112570 -) -k1,13823:26439779,6254097:229936 -k1,13823:28798325,6254097:229937 -k1,13823:32583029,6254097:0 -) -(1,13824:6630773,7095585:25952256,513147,126483 -k1,13823:10213189,7095585:223696 -k1,13823:14047919,7095585:223696 -k1,13823:16559478,7095585:223697 -k1,13823:20080290,7095585:223696 -k1,13823:20986871,7095585:223696 -k1,13823:22229652,7095585:223696 -k1,13823:24441710,7095585:223696 -k1,13823:25324698,7095585:223696 -k1,13823:26567480,7095585:223697 -k1,13823:28285397,7095585:223696 -k1,13823:29898456,7095585:223696 -k1,13823:31635378,7095585:223696 -k1,13823:32583029,7095585:0 -) -(1,13824:6630773,7937073:25952256,513147,134348 -k1,13823:8921771,7937073:182705 -k1,13823:10301163,7937073:182705 -k1,13823:11869954,7937073:182705 -k1,13823:12711951,7937073:182705 -k1,13823:13582129,7937073:182705 -k1,13823:15259055,7937073:182705 -k1,13823:16124644,7937073:182704 -k1,13823:17373620,7937073:182705 -k1,13823:19069551,7937073:182705 -k1,13823:20199907,7937073:182705 -k1,13823:23575526,7937073:182705 -k1,13823:27523930,7937073:182705 -k1,13823:30548276,7937073:182705 -k1,13823:31835263,7937073:182705 -k1,13823:32583029,7937073:0 -) -(1,13824:6630773,8778561:25952256,505283,134348 -g1,13823:10091073,8778561 -g1,13823:12848828,8778561 -g1,13823:16328789,8778561 -(1,13823:16328789,8778561:0,452978,115847 -r1,13896:19852461,8778561:3523672,568825,115847 -k1,13823:16328789,8778561:-3523672 -) -(1,13823:16328789,8778561:3523672,452978,115847 -k1,13823:16328789,8778561:3277 -h1,13823:19849184,8778561:0,411205,112570 -) -k1,13824:32583029,8778561:12556898 -g1,13824:32583029,8778561 -) -(1,13847:6630773,16484753:25952256,6850948,0 -k1,13847:7763884,16484753:1133111 -(1,13825:7763884,16484753:0,0,0 -g1,13825:7763884,16484753 -g1,13825:7763884,16484753 -g1,13825:7436204,16484753 -(1,13825:7436204,16484753:0,0,0 -) -g1,13825:7763884,16484753 -) -(1,13845:7763884,16484753:23686035,6850948,0 -g1,13845:11035688,16484753 -(1,13845:11035688,10262259:0,0,0 -(1,13845:11035688,10262259:0,0,0 -g1,13827:11035688,10262259 -(1,13828:11035688,10262259:0,0,0 -(1,13828:11035688,10262259:0,0,0 -g1,13828:11035688,10262259 -g1,13828:11035688,10262259 -g1,13828:11035688,10262259 -g1,13828:11035688,10262259 -g1,13828:11035688,10262259 -(1,13828:11035688,10262259:0,0,0 -(1,13828:11035688,10262259:4940249,454754,104590 -(1,13828:11035688,10262259:4940249,454754,104590 -g1,13828:12966772,10262259 -$1,13828:12966772,10262259 -$1,13828:13574291,10262259 -g1,13828:13753598,10262259 -(1,13828:13753598,10262259:0,414307,104590 -r1,13896:15975937,10262259:2222339,518897,104590 -k1,13828:13753598,10262259:-2222339 -) -(1,13828:13753598,10262259:2222339,414307,104590 -k1,13828:13753598,10262259:3277 -h1,13828:15972660,10262259:0,370085,101313 -) -) -g1,13828:15975937,10262259 -) -) -g1,13828:11035688,10262259 -g1,13828:11035688,10262259 -) -) -g1,13828:11035688,10262259 -(1,13829:11035688,10262259:0,0,0 -(1,13829:11035688,10262259:0,0,0 -g1,13829:11035688,10262259 -g1,13829:11035688,10262259 -g1,13829:11035688,10262259 -g1,13829:11035688,10262259 -g1,13829:11035688,10262259 -(1,13829:11035688,10262259:0,0,0 -(1,13829:11035688,10262259:5813184,454754,104590 -(1,13829:11035688,10262259:5813184,454754,104590 -g1,13829:14789329,10262259 -$1,13829:14789329,10262259 -$1,13829:15396848,10262259 -g1,13829:15576155,10262259 -(1,13829:15576155,10262259:0,408008,104590 -r1,13896:16848872,10262259:1272717,512598,104590 -k1,13829:15576155,10262259:-1272717 -) -(1,13829:15576155,10262259:1272717,408008,104590 -k1,13829:15576155,10262259:3277 -h1,13829:16845595,10262259:0,370085,101313 -) -) -g1,13829:16848872,10262259 -) -) -g1,13829:11035688,10262259 -g1,13829:11035688,10262259 -) -) -g1,13829:11035688,10262259 -(1,13830:11035688,10262259:0,0,0 -(1,13830:11035688,10262259:0,0,0 -g1,13830:11035688,10262259 -g1,13830:11035688,10262259 -g1,13830:11035688,10262259 -g1,13830:11035688,10262259 -g1,13830:11035688,10262259 -(1,13830:11035688,10262259:0,0,0 -(1,13830:11035688,10262259:5356075,454754,120913 -(1,13830:11035688,10262259:5356075,454754,120913 -g1,13830:13382598,10262259 -$1,13830:13382598,10262259 -$1,13830:13990117,10262259 -g1,13830:14169424,10262259 -(1,13830:14169424,10262259:0,408008,110889 -r1,13896:16391763,10262259:2222339,518897,110889 -k1,13830:14169424,10262259:-2222339 -) -(1,13830:14169424,10262259:2222339,408008,110889 -k1,13830:14169424,10262259:3277 -h1,13830:16388486,10262259:0,370085,101313 -) -) -g1,13830:16391763,10262259 -) -) -g1,13830:11035688,10262259 -g1,13830:11035688,10262259 -) -) -g1,13830:11035688,10262259 -(1,13831:11035688,10262259:0,0,0 -(1,13831:11035688,10262259:0,0,0 -g1,13831:11035688,10262259 -g1,13831:11035688,10262259 -g1,13831:11035688,10262259 -g1,13831:11035688,10262259 -g1,13831:11035688,10262259 -(1,13831:11035688,10262259:0,0,0 -(1,13831:11035688,10262259:6124221,454754,104590 -(1,13831:11035688,10262259:6124221,454754,104590 -g1,13831:14467285,10262259 -$1,13831:14467285,10262259 -$1,13831:15074804,10262259 -g1,13831:15254111,10262259 -(1,13831:15254111,10262259:0,414307,104590 -r1,13896:17159909,10262259:1905798,518897,104590 -k1,13831:15254111,10262259:-1905798 -) -(1,13831:15254111,10262259:1905798,414307,104590 -k1,13831:15254111,10262259:3277 -h1,13831:17156632,10262259:0,370085,101313 -) -) -g1,13831:17159909,10262259 -) -) -g1,13831:11035688,10262259 -g1,13831:11035688,10262259 -) -) -(1,13832:11035688,10262259:0,0,0 -(1,13832:11035688,10262259:0,0,0 -g1,13832:11035688,10262259 -g1,13832:11035688,10262259 -g1,13832:11035688,10262259 -g1,13832:11035688,10262259 -g1,13832:11035688,10262259 -(1,13832:11035688,10262259:0,0,0 -(1,13832:11035688,10262259:2222339,408008,104590 -(1,13832:11035688,10262259:2222339,408008,104590 -(1,13832:11035688,10262259:0,408008,104590 -r1,13896:13258027,10262259:2222339,512598,104590 -k1,13832:11035688,10262259:-2222339 -) -(1,13832:11035688,10262259:2222339,408008,104590 -k1,13832:11035688,10262259:3277 -h1,13832:13254750,10262259:0,370085,101313 -) -) -g1,13832:13258027,10262259 +k1,13486:3078556,49800853:-34777008 ) +] +g1,13486:6630773,4812305 +g1,13486:6630773,4812305 +g1,13486:8843268,4812305 +g1,13486:10880782,4812305 +g1,13486:13281365,4812305 +k1,13486:31387653,4812305:18106288 +) +) +] +[1,13486:6630773,45706769:25952256,40108032,0 +(1,13486:6630773,45706769:25952256,40108032,0 +(1,13486:6630773,45706769:0,0,0 +g1,13486:6630773,45706769 +) +[1,13486:6630773,45706769:25952256,40108032,0 +v1,13425:6630773,6254097:0,393216,0 +(1,13425:6630773,10668362:25952256,4807481,0 +g1,13425:6630773,10668362 +g1,13425:6237557,10668362 +r1,13486:6368629,10668362:131072,4807481,0 +g1,13425:6567858,10668362 +g1,13425:6764466,10668362 +[1,13425:6764466,10668362:25818563,4807481,0 +(1,13414:6764466,6366164:25818563,505283,134348 +k1,13413:8121082,6366164:165171 +k1,13413:11729516,6366164:165172 +k1,13413:13191645,6366164:165171 +(1,13413:13191645,6366164:0,459977,115847 +r1,13486:17067029,6366164:3875384,575824,115847 +k1,13413:13191645,6366164:-3875384 +) +(1,13413:13191645,6366164:3875384,459977,115847 +k1,13413:13191645,6366164:3277 +h1,13413:17063752,6366164:0,411205,112570 +) +k1,13413:17232201,6366164:165172 +k1,13413:18588817,6366164:165171 +(1,13413:18588817,6366164:0,459977,115847 +r1,13486:22464201,6366164:3875384,575824,115847 +k1,13413:18588817,6366164:-3875384 +) +(1,13413:18588817,6366164:3875384,459977,115847 +k1,13413:18588817,6366164:3277 +h1,13413:22460924,6366164:0,411205,112570 +) +k1,13413:22629372,6366164:165171 +k1,13413:25414673,6366164:165172 +k1,13413:26598929,6366164:165171 +k1,13413:28417573,6366164:165171 +k1,13413:31017374,6366164:165138 +k1,13413:32583029,6366164:0 +) +(1,13414:6764466,7231244:25818563,513147,134348 +k1,13413:9781914,7231244:195468 +k1,13413:11049551,7231244:195468 +k1,13413:12264104,7231244:195468 +k1,13413:13147045,7231244:195468 +k1,13413:15330220,7231244:195468 +k1,13413:17815516,7231244:195468 +k1,13413:19002544,7231244:195468 +k1,13413:20264284,7231244:195469 +k1,13413:23370206,7231244:195468 +k1,13413:24819378,7231244:195468 +k1,13413:26119128,7231244:195468 +k1,13413:27407081,7231244:195468 +(1,13413:27407081,7231244:0,452978,115847 +r1,13486:29172194,7231244:1765113,568825,115847 +k1,13413:27407081,7231244:-1765113 +) +(1,13413:27407081,7231244:1765113,452978,115847 +k1,13413:27407081,7231244:3277 +h1,13413:29168917,7231244:0,411205,112570 +) +k1,13413:29367662,7231244:195468 +k1,13413:30214558,7231244:195468 +k1,13413:32583029,7231244:0 +) +(1,13414:6764466,8096324:25818563,513147,134348 +g1,13413:7429656,8096324 +g1,13413:8760692,8096324 +g1,13413:11913629,8096324 +g1,13413:13856116,8096324 +g1,13413:16690548,8096324 +g1,13413:17908862,8096324 +g1,13413:19280530,8096324 +k1,13414:32583029,8096324:10839001 +g1,13414:32583029,8096324 +) +v1,13416:6764466,8781179:0,393216,0 +(1,13422:6764466,10471754:25818563,2083791,196608 +g1,13422:6764466,10471754 +g1,13422:6764466,10471754 +g1,13422:6567858,10471754 +(1,13422:6567858,10471754:0,2083791,196608 +r1,13486:32779637,10471754:26211779,2280399,196608 +k1,13422:6567857,10471754:-26211780 +) +(1,13422:6567858,10471754:26211779,2083791,196608 +[1,13422:6764466,10471754:25818563,1887183,0 +(1,13418:6764466,9015616:25818563,431045,112852 +(1,13417:6764466,9015616:0,0,0 +g1,13417:6764466,9015616 +g1,13417:6764466,9015616 +g1,13417:6436786,9015616 +(1,13417:6436786,9015616:0,0,0 +) +g1,13417:6764466,9015616 +) +g1,13418:8424236,9015616 +g1,13418:9420098,9015616 +g1,13418:13403546,9015616 +g1,13418:15727224,9015616 +g1,13418:16391132,9015616 +g1,13418:21370442,9015616 +h1,13418:23694120,9015616:0,0,0 +k1,13418:32583029,9015616:8888909 +g1,13418:32583029,9015616 +) +(1,13419:6764466,9700471:25818563,431045,79822 +h1,13419:6764466,9700471:0,0,0 +k1,13419:6764466,9700471:0 +h1,13419:10415960,9700471:0,0,0 +k1,13419:32583028,9700471:22167068 +g1,13419:32583028,9700471 +) +(1,13420:6764466,10385326:25818563,431045,86428 +h1,13420:6764466,10385326:0,0,0 +g1,13420:12075729,10385326 +h1,13420:13735499,10385326:0,0,0 +k1,13420:32583029,10385326:18847530 +g1,13420:32583029,10385326 +) +] +) +g1,13422:32583029,10471754 +g1,13422:6764466,10471754 +g1,13422:6764466,10471754 +g1,13422:32583029,10471754 +g1,13422:32583029,10471754 +) +h1,13422:6764466,10668362:0,0,0 +] +g1,13425:32583029,10668362 +) +h1,13425:6630773,10668362:0,0,0 +v1,13428:6630773,11533442:0,393216,0 +(1,13431:6630773,17040083:25952256,5899857,0 +g1,13431:6630773,17040083 +g1,13431:6237557,17040083 +r1,13486:6368629,17040083:131072,5899857,0 +g1,13431:6567858,17040083 +g1,13431:6764466,17040083 +[1,13431:6764466,17040083:25818563,5899857,0 +(1,13429:6764466,11841740:25818563,701514,196608 +(1,13428:6764466,11841740:0,701514,196608 +r1,13486:8010564,11841740:1246098,898122,196608 +k1,13428:6764466,11841740:-1246098 +) +(1,13428:6764466,11841740:1246098,701514,196608 +) +k1,13428:8189394,11841740:178830 +k1,13428:8517074,11841740:327680 +k1,13428:9323739,11841740:178830 +k1,13428:10521655,11841740:178831 +k1,13428:13530330,11841740:178830 +k1,13428:14368452,11841740:178830 +k1,13428:17218529,11841740:178830 +k1,13428:21163058,11841740:178830 +k1,13428:24357199,11841740:178830 +k1,13428:25218915,11841740:178831 +k1,13428:27095783,11841740:178830 +k1,13428:29010006,11841740:178830 +k1,13428:32583029,11841740:0 +) +(1,13429:6764466,12706820:25818563,505283,134348 +g1,13428:10454142,12706820 +g1,13428:12388764,12706820 +(1,13428:12388764,12706820:0,452978,115847 +r1,13486:15209013,12706820:2820249,568825,115847 +k1,13428:12388764,12706820:-2820249 +) +(1,13428:12388764,12706820:2820249,452978,115847 +k1,13428:12388764,12706820:3277 +h1,13428:15205736,12706820:0,411205,112570 +) +g1,13428:15408242,12706820 +g1,13428:17653505,12706820 +g1,13428:18384231,12706820 +g1,13428:20453858,12706820 +g1,13428:21304515,12706820 +g1,13428:24264120,12706820 +g1,13428:26781357,12706820 +g1,13428:28374537,12706820 +(1,13428:28374537,12706820:0,452978,115847 +r1,13486:30843074,12706820:2468537,568825,115847 +k1,13428:28374537,12706820:-2468537 +) +(1,13428:28374537,12706820:2468537,452978,115847 +k1,13428:28374537,12706820:3277 +h1,13428:30839797,12706820:0,411205,112570 +) +k1,13429:32583029,12706820:1566285 +g1,13429:32583029,12706820 +) +(1,13431:6764466,13571900:25818563,513147,134348 +h1,13430:6764466,13571900:983040,0,0 +k1,13430:10418946,13571900:273478 +(1,13430:10418946,13571900:0,452978,115847 +r1,13486:13239195,13571900:2820249,568825,115847 +k1,13430:10418946,13571900:-2820249 +) +(1,13430:10418946,13571900:2820249,452978,115847 +k1,13430:10418946,13571900:3277 +h1,13430:13235918,13571900:0,411205,112570 +) +k1,13430:13512672,13571900:273477 +k1,13430:14317647,13571900:273478 +k1,13430:17351500,13571900:273477 +k1,13430:21107561,13571900:273478 +k1,13430:23079076,13571900:273477 +k1,13430:25087947,13571900:273478 +k1,13430:27349131,13571900:273477 +k1,13430:29557232,13571900:273478 +k1,13430:32583029,13571900:0 +) +(1,13431:6764466,14436980:25818563,513147,134348 +k1,13430:8461903,14436980:303486 +k1,13430:10517166,14436980:303486 +k1,13430:12949262,14436980:303487 +k1,13430:17037452,14436980:303486 +k1,13430:17810831,14436980:303486 +k1,13430:19787452,14436980:303487 +k1,13430:20861641,14436980:303486 +k1,13430:24392120,14436980:303486 +k1,13430:25930960,14436980:303486 +k1,13430:27932484,14436980:303486 +k1,13430:30170594,14436980:303487 +k1,13430:31005577,14436980:303486 +k1,13430:32583029,14436980:0 +) +(1,13431:6764466,15302060:25818563,505283,126483 +k1,13430:7780077,15302060:254083 +k1,13430:11215278,15302060:254083 +k1,13430:16332788,15302060:254083 +k1,13430:17273033,15302060:254083 +k1,13430:18546201,15302060:254083 +k1,13430:22120993,15302060:254083 +k1,13430:25583719,15302060:254083 +k1,13430:28883915,15302060:254083 +k1,13430:30129558,15302060:254083 +k1,13430:31896867,15302060:254083 +k1,13430:32583029,15302060:0 +) +(1,13431:6764466,16167140:25818563,513147,134348 +k1,13430:7975333,16167140:191782 +k1,13430:10645687,16167140:191782 +k1,13430:12848114,16167140:191782 +k1,13430:13987547,16167140:191782 +k1,13430:15198414,16167140:191782 +k1,13430:18571313,16167140:191781 +k1,13430:22564838,16167140:191782 +k1,13430:25469155,16167140:191782 +k1,13430:26608588,16167140:191782 +k1,13430:28734993,16167140:191782 +k1,13430:29945860,16167140:191782 +k1,13430:32583029,16167140:0 +) +(1,13431:6764466,17032220:25818563,505283,7863 +k1,13431:32583029,17032220:23657186 +g1,13431:32583029,17032220 +) +] +g1,13431:32583029,17040083 +) +h1,13431:6630773,17040083:0,0,0 +v1,13434:6630773,17905163:0,393216,0 +(1,13435:6630773,22726088:25952256,5214141,0 +g1,13435:6630773,22726088 +g1,13435:6237557,22726088 +r1,13486:6368629,22726088:131072,5214141,0 +g1,13435:6567858,22726088 +g1,13435:6764466,22726088 +[1,13435:6764466,22726088:25818563,5214141,0 +(1,13435:6764466,18266340:25818563,754393,260573 +(1,13434:6764466,18266340:0,754393,260573 +r1,13486:8010564,18266340:1246098,1014966,260573 +k1,13434:6764466,18266340:-1246098 +) +(1,13434:6764466,18266340:1246098,754393,260573 +) +k1,13434:8313629,18266340:303065 +k1,13434:8641309,18266340:327680 +k1,13434:10406482,18266340:303065 +k1,13434:11728632,18266340:303065 +k1,13434:13421059,18266340:303064 +k1,13434:14715684,18266340:303065 +k1,13434:17056919,18266340:303065 +k1,13434:17976022,18266340:303065 +k1,13434:19298172,18266340:303065 +k1,13434:21588944,18266340:303065 +k1,13434:22579482,18266340:303065 +k1,13434:24842073,18266340:303065 +k1,13434:27618466,18266340:303064 +k1,13434:29206037,18266340:303065 +k1,13434:30528187,18266340:303065 +k1,13434:31923737,18266340:303065 +k1,13434:32583029,18266340:0 +) +(1,13435:6764466,19131420:25818563,513147,126483 +k1,13434:9735248,19131420:186157 +k1,13434:11067630,19131420:186157 +(1,13434:11067630,19131420:0,452978,115847 +r1,13486:13887879,19131420:2820249,568825,115847 +k1,13434:11067630,19131420:-2820249 +) +(1,13434:11067630,19131420:2820249,452978,115847 +k1,13434:11067630,19131420:3277 +h1,13434:13884602,19131420:0,411205,112570 +) +k1,13434:14074036,19131420:186157 +k1,13434:15451638,19131420:186157 +k1,13434:17980052,19131420:186157 +k1,13434:22560398,19131420:186157 +k1,13434:23555925,19131420:186157 +k1,13434:24761167,19131420:186157 +k1,13434:25634797,19131420:186157 +k1,13434:27994128,19131420:186157 +k1,13434:29284567,19131420:186157 +k1,13434:30218490,19131420:186157 +k1,13434:32583029,19131420:0 +) +(1,13435:6764466,19996500:25818563,513147,126483 +k1,13434:8168014,19996500:212103 +k1,13434:12227079,19996500:212102 +k1,13434:14016634,19996500:212103 +k1,13434:17948559,19996500:212102 +k1,13434:18819954,19996500:212103 +k1,13434:20051141,19996500:212102 +k1,13434:23093089,19996500:212103 +k1,13434:23988077,19996500:212103 +k1,13434:25266450,19996500:212102 +k1,13434:26137845,19996500:212103 +k1,13434:27369032,19996500:212102 +k1,13434:29234608,19996500:212103 +k1,13434:30836073,19996500:212102 +k1,13434:31664214,19996500:212103 +k1,13434:32583029,19996500:0 +) +(1,13435:6764466,20861580:25818563,505283,134348 +k1,13434:12074685,20861580:230523 +k1,13434:15239910,20861580:230523 +k1,13434:15928529,20861580:230522 +k1,13434:18339435,20861580:230523 +k1,13434:19317724,20861580:230523 +k1,13434:20965791,20861580:230523 +k1,13434:21812351,20861580:230522 +k1,13434:23699624,20861580:230523 +k1,13434:25214653,20861580:230523 +k1,13434:28016153,20861580:230523 +k1,13434:28898103,20861580:230522 +k1,13434:30147711,20861580:230523 +k1,13434:32583029,20861580:0 +) +(1,13435:6764466,21726660:25818563,513147,134348 +k1,13434:8339296,21726660:185467 +k1,13434:10102215,21726660:185467 +k1,13434:11800908,21726660:185467 +k1,13434:13005459,21726660:185466 +k1,13434:15178633,21726660:185467 +k1,13434:16051573,21726660:185467 +k1,13434:18196566,21726660:185467 +k1,13434:19589206,21726660:185467 +k1,13434:22124794,21726660:185467 +k1,13434:23442723,21726660:185467 +k1,13434:24694461,21726660:185467 +k1,13434:25627693,21726660:185466 +k1,13434:28589265,21726660:185467 +k1,13434:29390770,21726660:185467 +k1,13434:30595322,21726660:185467 +k1,13434:32583029,21726660:0 +) +(1,13435:6764466,22591740:25818563,513147,134348 +g1,13434:7651168,22591740 +g1,13434:10140225,22591740 +g1,13434:13118181,22591740 +g1,13434:14078938,22591740 +(1,13434:14078938,22591740:0,452978,115847 +r1,13486:16899187,22591740:2820249,568825,115847 +k1,13434:14078938,22591740:-2820249 +) +(1,13434:14078938,22591740:2820249,452978,115847 +k1,13434:14078938,22591740:3277 +h1,13434:16895910,22591740:0,411205,112570 +) +g1,13434:17098416,22591740 +g1,13434:19340402,22591740 +g1,13434:20558716,22591740 +g1,13434:22041140,22591740 +g1,13434:23629732,22591740 +g1,13434:24820521,22591740 +g1,13434:27225037,22591740 +g1,13434:28110428,22591740 +g1,13434:29080360,22591740 +k1,13435:32583029,22591740:256671 +g1,13435:32583029,22591740 +) +] +g1,13435:32583029,22726088 +) +h1,13435:6630773,22726088:0,0,0 +(1,13440:6630773,23591168:25952256,513147,134348 +h1,13439:6630773,23591168:983040,0,0 +k1,13439:10928187,23591168:321345 +k1,13439:13920779,23591168:321345 +k1,13439:17732571,23591168:321345 +k1,13439:19909896,23591168:321345 +k1,13439:20847279,23591168:321345 +k1,13439:22187709,23591168:321345 +k1,13439:25101002,23591168:321345 +k1,13439:28281027,23591168:321345 +k1,13439:30169993,23591168:321345 +k1,13439:32583029,23591168:0 +) +(1,13440:6630773,24456248:25952256,513147,126483 +k1,13439:7531401,24456248:249200 +k1,13439:9430799,24456248:249201 +k1,13439:12366320,24456248:249200 +k1,13439:15107200,24456248:249201 +k1,13439:15972438,24456248:249200 +k1,13439:17240724,24456248:249201 +k1,13439:20558320,24456248:249200 +k1,13439:23666200,24456248:249200 +k1,13439:25483022,24456248:249201 +k1,13439:27382419,24456248:249200 +k1,13439:30317941,24456248:249201 +k1,13439:31218569,24456248:249200 +k1,13440:32583029,24456248:0 +) +(1,13440:6630773,25321328:25952256,505283,126483 +k1,13439:8141276,25321328:248935 +k1,13439:10708219,25321328:248935 +k1,13439:11640039,25321328:248935 +k1,13439:12505012,25321328:248935 +k1,13439:14220643,25321328:248935 +k1,13439:17658560,25321328:248935 +k1,13439:18438993,25321328:248936 +k1,13439:22889441,25321328:248935 +k1,13439:23754414,25321328:248935 +k1,13439:25437277,25321328:248935 +k1,13439:26605027,25321328:248935 +k1,13439:29259133,25321328:248935 +(1,13439:29259133,25321328:0,452978,115847 +r1,13486:31375958,25321328:2116825,568825,115847 +k1,13439:29259133,25321328:-2116825 +) +(1,13439:29259133,25321328:2116825,452978,115847 +k1,13439:29259133,25321328:3277 +h1,13439:31372681,25321328:0,411205,112570 +) +k1,13439:31624893,25321328:248935 +k1,13440:32583029,25321328:0 +) +(1,13440:6630773,26186408:25952256,513147,134348 +k1,13439:7846349,26186408:225327 +k1,13439:10752754,26186408:225327 +k1,13439:14785067,26186408:225327 +k1,13439:17736692,26186408:225327 +k1,13439:19532236,26186408:225301 +k1,13439:20443725,26186408:225327 +k1,13439:21688137,26186408:225327 +k1,13439:24744619,26186408:225327 +k1,13439:27869914,26186408:225327 +k1,13439:29244087,26186408:225327 +k1,13439:30128706,26186408:225327 +k1,13440:32583029,26186408:0 +) +(1,13440:6630773,27051488:25952256,513147,134348 +(1,13439:6630773,27051488:0,452978,115847 +r1,13486:8747598,27051488:2116825,568825,115847 +k1,13439:6630773,27051488:-2116825 +) +(1,13439:6630773,27051488:2116825,452978,115847 +k1,13439:6630773,27051488:3277 +h1,13439:8744321,27051488:0,411205,112570 +) +k1,13439:8907072,27051488:159474 +k1,13439:10634167,27051488:159474 +k1,13439:12227569,27051488:159474 +k1,13439:12801847,27051488:159435 +k1,13439:13492818,27051488:159474 +k1,13439:16282252,27051488:159474 +k1,13439:17835677,27051488:159474 +(1,13439:17835677,27051488:0,452978,115847 +r1,13486:19249078,27051488:1413401,568825,115847 +k1,13439:17835677,27051488:-1413401 +) +(1,13439:17835677,27051488:1413401,452978,115847 +k1,13439:17835677,27051488:3277 +h1,13439:19245801,27051488:0,411205,112570 +) +k1,13439:19408552,27051488:159474 +k1,13439:20759471,27051488:159474 +(1,13439:20759471,27051488:0,452978,122846 +r1,13486:21821160,27051488:1061689,575824,122846 +k1,13439:20759471,27051488:-1061689 +) +(1,13439:20759471,27051488:1061689,452978,122846 +k1,13439:20759471,27051488:3277 +h1,13439:21817883,27051488:0,411205,112570 +) +k1,13439:21980634,27051488:159474 +k1,13439:23331553,27051488:159474 +k1,13439:24647043,27051488:159435 +k1,13439:25338014,27051488:159474 +k1,13439:28587511,27051488:159474 +k1,13439:29556355,27051488:159474 +k1,13439:31213982,27051488:159474 +h1,13439:32409359,27051488:0,0,0 +k1,13440:32583029,27051488:0 +k1,13440:32583029,27051488:0 +) +(1,13459:6630773,32708606:25952256,4986239,0 +k1,13459:6761220,32708606:130447 +(1,13441:6761220,32708606:0,0,0 +g1,13441:6761220,32708606 +g1,13441:6761220,32708606 +g1,13441:6433540,32708606 +(1,13441:6433540,32708606:0,0,0 +) +g1,13441:6761220,32708606 +) +(1,13457:6761220,32708606:25691363,4986239,0 +g1,13457:8758081,32708606 +(1,13457:8758081,28723752:0,0,0 +(1,13457:8758081,28723752:0,0,0 +g1,13443:8758081,28723752 +(1,13444:8758081,28723752:0,0,0 +(1,13444:8758081,28723752:0,0,0 +g1,13444:8758081,28723752 +g1,13444:8758081,28723752 +g1,13444:8758081,28723752 +g1,13444:8758081,28723752 +g1,13444:8758081,28723752 +(1,13444:8758081,28723752:0,0,0 +(1,13444:8758081,28723752:1751777,454754,7077 +(1,13444:8758081,28723752:1751777,454754,7077 +) +g1,13444:10509858,28723752 +) +) +g1,13444:8758081,28723752 +g1,13444:8758081,28723752 +) +) +g1,13444:8758081,28723752 +(1,13445:8758081,28723752:0,0,0 +(1,13445:8758081,28723752:0,0,0 +g1,13445:8758081,28723752 +g1,13445:8758081,28723752 +g1,13445:8758081,28723752 +g1,13445:8758081,28723752 +g1,13445:8758081,28723752 +(1,13445:8758081,28723752:0,0,0 +(1,13445:8758081,28723752:3574334,454754,7077 +(1,13445:8758081,28723752:3574334,454754,7077 +) +g1,13445:12332415,28723752 +) +) +g1,13445:8758081,28723752 +g1,13445:8758081,28723752 +) +) +(1,13446:8758081,28723752:0,0,0 +(1,13446:8758081,28723752:0,0,0 +g1,13446:8758081,28723752 +g1,13446:8758081,28723752 +g1,13446:8758081,28723752 +g1,13446:8758081,28723752 +g1,13446:8758081,28723752 +(1,13446:8758081,28723752:0,0,0 +(1,13446:8758081,28723752:1272717,408008,104590 +(1,13446:8758081,28723752:1272717,408008,104590 +(1,13446:8758081,28723752:0,408008,104590 +r1,13486:10030798,28723752:1272717,512598,104590 +k1,13446:8758081,28723752:-1272717 +) +(1,13446:8758081,28723752:1272717,408008,104590 +k1,13446:8758081,28723752:3277 +h1,13446:10027521,28723752:0,370085,101313 +) +) +g1,13446:10030798,28723752 +) +) +g1,13446:8758081,28723752 +g1,13446:8758081,28723752 +) +) +g1,13446:8758081,28723752 +(1,13447:8758081,28723752:0,0,0 +(1,13447:8758081,28723752:0,0,0 +g1,13447:8758081,28723752 +g1,13447:8758081,28723752 +g1,13447:8758081,28723752 +g1,13447:8758081,28723752 +g1,13447:8758081,28723752 +(1,13447:8758081,28723752:0,0,0 +(1,13447:8758081,28723752:5422007,454754,120913 +(1,13447:8758081,28723752:5422007,454754,120913 +(1,13447:8758081,28723752:0,408008,104590 +r1,13486:9397716,28723752:639635,512598,104590 +k1,13447:8758081,28723752:-639635 +) +(1,13447:8758081,28723752:639635,408008,104590 +k1,13447:8758081,28723752:3277 +h1,13447:9394439,28723752:0,370085,101313 +) +g1,13447:9577023,28723752 +g1,13447:11487464,28723752 +$1,13447:11487464,28723752 +$1,13447:12094983,28723752 +g1,13447:12274290,28723752 +(1,13447:12274290,28723752:0,408008,110889 +r1,13486:14180088,28723752:1905798,518897,110889 +k1,13447:12274290,28723752:-1905798 +) +(1,13447:12274290,28723752:1905798,408008,110889 +k1,13447:12274290,28723752:3277 +h1,13447:14176811,28723752:0,370085,101313 +) +) +g1,13447:14180088,28723752 +) +) +g1,13447:8758081,28723752 +g1,13447:8758081,28723752 +) +) +g1,13447:8758081,28723752 +(1,13448:8758081,28723752:0,0,0 +(1,13448:8758081,28723752:0,0,0 +g1,13448:8758081,28723752 +g1,13448:8758081,28723752 +g1,13448:8758081,28723752 +g1,13448:8758081,28723752 +g1,13448:8758081,28723752 +(1,13448:8758081,28723752:0,0,0 +(1,13448:8758081,28723752:1905798,408008,104590 +(1,13448:8758081,28723752:1905798,408008,104590 +(1,13448:8758081,28723752:0,408008,104590 +r1,13486:10663879,28723752:1905798,512598,104590 +k1,13448:8758081,28723752:-1905798 +) +(1,13448:8758081,28723752:1905798,408008,104590 +k1,13448:8758081,28723752:3277 +h1,13448:10660602,28723752:0,370085,101313 +) +) +g1,13448:10663879,28723752 +) +) +g1,13448:8758081,28723752 +g1,13448:8758081,28723752 +) +) +g1,13448:8758081,28723752 +(1,13449:8758081,28723752:0,0,0 +(1,13449:8758081,28723752:0,0,0 +g1,13449:8758081,28723752 +g1,13449:8758081,28723752 +g1,13449:8758081,28723752 +g1,13449:8758081,28723752 +g1,13449:8758081,28723752 +(1,13449:8758081,28723752:0,0,0 +(1,13449:8758081,28723752:6252997,454754,104590 +(1,13449:8758081,28723752:6252997,454754,104590 +g1,13449:10089904,28723752 +g1,13449:12634995,28723752 +$1,13449:12634995,28723752 +$1,13449:13242514,28723752 +g1,13449:13421821,28723752 +(1,13449:13421821,28723752:0,373362,104590 +r1,13486:15011078,28723752:1589257,477952,104590 +k1,13449:13421821,28723752:-1589257 +) +(1,13449:13421821,28723752:1589257,373362,104590 +k1,13449:13421821,28723752:3277 +h1,13449:15007801,28723752:0,370085,101313 +) +) +g1,13449:15011078,28723752 +) +) +g1,13449:8758081,28723752 +g1,13449:8758081,28723752 +) +) +g1,13449:8758081,28723752 +(1,13450:8758081,28723752:0,0,0 +(1,13450:8758081,28723752:0,0,0 +g1,13450:8758081,28723752 +g1,13450:8758081,28723752 +g1,13450:8758081,28723752 +g1,13450:8758081,28723752 +g1,13450:8758081,28723752 +(1,13450:8758081,28723752:0,0,0 +(1,13450:8758081,28723752:2550076,454754,120913 +(1,13450:8758081,28723752:2550076,454754,120913 +(1,13450:8758081,28723752:0,408008,104590 +r1,13486:9397716,28723752:639635,512598,104590 +k1,13450:8758081,28723752:-639635 +) +(1,13450:8758081,28723752:639635,408008,104590 +k1,13450:8758081,28723752:3277 +h1,13450:9394439,28723752:0,370085,101313 +) +g1,13450:9577023,28723752 +) +g1,13450:11308157,28723752 +) +) +g1,13450:8758081,28723752 +g1,13450:8758081,28723752 +) +) +g1,13450:8758081,28723752 +g1,13451:8758081,28723752 +g1,13451:8758081,28723752 +g1,13451:8758081,28723752 +g1,13451:8758081,28723752 +g1,13451:8758081,28723752 +g1,13451:8758081,28723752 +g1,13452:8758081,28723752 +g1,13452:8758081,28723752 +g1,13452:8758081,28723752 +g1,13452:8758081,28723752 +g1,13452:8758081,28723752 +g1,13452:8758081,28723752 +g1,13453:8758081,28723752 +g1,13453:8758081,28723752 +g1,13453:8758081,28723752 +g1,13453:8758081,28723752 +g1,13453:8758081,28723752 +g1,13453:8758081,28723752 +g1,13454:8758081,28723752 +g1,13454:8758081,28723752 +g1,13454:8758081,28723752 +g1,13454:8758081,28723752 +g1,13454:8758081,28723752 +g1,13454:8758081,28723752 +g1,13455:8758081,28723752 +g1,13455:8758081,28723752 +g1,13455:8758081,28723752 +g1,13455:8758081,28723752 +g1,13455:8758081,28723752 +g1,13455:8758081,28723752 +g1,13456:8758081,28723752 +g1,13456:8758081,28723752 +g1,13456:8758081,28723752 +g1,13456:8758081,28723752 +g1,13456:8758081,28723752 +g1,13456:8758081,28723752 +g1,13457:8758081,28723752 +g1,13457:8758081,28723752 +) +g1,13457:8758081,28723752 +) +) +g1,13459:32452583,32708606 +k1,13459:32583029,32708606:130446 +) +(1,13463:6630773,34044681:25952256,513147,134348 +h1,13462:6630773,34044681:983040,0,0 +k1,13462:8906182,34044681:250347 +k1,13462:10175614,34044681:250347 +k1,13462:11810081,34044681:250347 +k1,13462:14721845,34044681:250347 +k1,13462:15840544,34044681:250347 +k1,13462:18655970,34044681:250347 +k1,13462:19925403,34044681:250348 +k1,13462:22163457,34044681:250347 +k1,13462:23101277,34044681:250347 +k1,13462:25311150,34044681:250347 +(1,13462:25311150,34044681:0,459977,115847 +r1,13486:26372839,34044681:1061689,575824,115847 +k1,13462:25311150,34044681:-1061689 +) +(1,13462:25311150,34044681:1061689,459977,115847 +k1,13462:25311150,34044681:3277 +h1,13462:26369562,34044681:0,411205,112570 +) +k1,13462:26623186,34044681:250347 +k1,13462:28441154,34044681:250347 +k1,13462:30189654,34044681:250347 +h1,13462:31385031,34044681:0,0,0 +k1,13462:31635378,34044681:250347 +k1,13462:32583029,34044681:0 +) +(1,13463:6630773,34909761:25952256,513147,134348 +k1,13462:7212514,34909761:225881 +k1,13462:11011417,34909761:225880 +k1,13462:14727745,34909761:225881 +k1,13462:15431383,34909761:225881 +k1,13462:16343426,34909761:225881 +k1,13462:18644831,34909761:225880 +k1,13462:20442265,34909761:225881 +k1,13462:21477516,34909761:225881 +k1,13462:24021405,34909761:225881 +k1,13462:25238846,34909761:225881 +k1,13462:27670013,34909761:225880 +k1,13462:30454420,34909761:225881 +k1,13462:32583029,34909761:0 +) +(1,13463:6630773,35774841:25952256,513147,126483 +k1,13462:10167790,35774841:256285 +(1,13462:10167790,35774841:0,414482,115847 +r1,13486:11932903,35774841:1765113,530329,115847 +k1,13462:10167790,35774841:-1765113 +) +(1,13462:10167790,35774841:1765113,414482,115847 +k1,13462:10167790,35774841:3277 +h1,13462:11929626,35774841:0,411205,112570 +) +k1,13462:12362857,35774841:256284 +k1,13462:13638227,35774841:256285 +k1,13462:17215220,35774841:256284 +k1,13462:18158978,35774841:256285 +k1,13462:20402969,35774841:256284 +k1,13462:21791716,35774841:256285 +k1,13462:22795766,35774841:256284 +k1,13462:26402907,35774841:256285 +k1,13462:27125152,35774841:256284 +k1,13462:30185067,35774841:256285 +k1,13463:32583029,35774841:0 +) +(1,13463:6630773,36639921:25952256,513147,126483 +(1,13462:6630773,36639921:0,452978,115847 +r1,13486:8747598,36639921:2116825,568825,115847 +k1,13462:6630773,36639921:-2116825 +) +(1,13462:6630773,36639921:2116825,452978,115847 +k1,13462:6630773,36639921:3277 +h1,13462:8744321,36639921:0,411205,112570 +) +k1,13462:8966313,36639921:218715 +k1,13462:9946555,36639921:218714 +k1,13462:12430850,36639921:218715 +k1,13462:14561905,36639921:218714 +k1,13462:15432048,36639921:218715 +k1,13462:16669847,36639921:218714 +k1,13462:19308807,36639921:218715 +k1,13462:19883381,36639921:218714 +k1,13462:21684135,36639921:218715 +k1,13462:22562141,36639921:218714 +k1,13462:23799941,36639921:218715 +k1,13462:26336663,36639921:218714 +k1,13462:28069915,36639921:218715 +k1,13462:29480074,36639921:218714 +k1,13462:30717874,36639921:218715 +k1,13463:32583029,36639921:0 +) +(1,13463:6630773,37505001:25952256,505283,134348 +g1,13462:9801404,37505001 +g1,13462:11156688,37505001 +k1,13463:32583028,37505001:18206556 +g1,13463:32583028,37505001 +) +v1,13465:6630773,38189856:0,393216,0 +(1,13486:6630773,45510161:25952256,7713521,196608 +g1,13486:6630773,45510161 +g1,13486:6630773,45510161 +g1,13486:6434165,45510161 +(1,13486:6434165,45510161:0,7713521,196608 +r1,13486:32779637,45510161:26345472,7910129,196608 +k1,13486:6434165,45510161:-26345472 +) +(1,13486:6434165,45510161:26345472,7713521,196608 +[1,13486:6630773,45510161:25952256,7516913,0 +(1,13467:6630773,38424293:25952256,431045,106246 +(1,13466:6630773,38424293:0,0,0 +g1,13466:6630773,38424293 +g1,13466:6630773,38424293 +g1,13466:6303093,38424293 +(1,13466:6303093,38424293:0,0,0 +) +g1,13466:6630773,38424293 +) +g1,13467:7958589,38424293 +g1,13467:8954451,38424293 +g1,13467:11610083,38424293 +g1,13467:12273991,38424293 +g1,13467:14265715,38424293 +g1,13467:14929623,38424293 +g1,13467:18913071,38424293 +g1,13467:20572841,38424293 +g1,13467:21236749,38424293 +h1,13467:22896519,38424293:0,0,0 +k1,13467:32583029,38424293:9686510 +g1,13467:32583029,38424293 +) +(1,13468:6630773,39109148:25952256,431045,106246 +h1,13468:6630773,39109148:0,0,0 +g1,13468:8290543,39109148 +g1,13468:9286405,39109148 +k1,13468:9286405,39109148:0 +h1,13468:12273991,39109148:0,0,0 +k1,13468:32583029,39109148:20309038 +g1,13468:32583029,39109148 +) +(1,13485:6630773,39925075:25952256,407923,9908 +(1,13470:6630773,39925075:0,0,0 +g1,13470:6630773,39925075 +g1,13470:6630773,39925075 +g1,13470:6303093,39925075 +(1,13470:6303093,39925075:0,0,0 +) +g1,13470:6630773,39925075 +) +g1,13485:7626635,39925075 +g1,13485:9950313,39925075 +g1,13485:10282267,39925075 +h1,13485:13601806,39925075:0,0,0 +k1,13485:32583030,39925075:18981224 +g1,13485:32583030,39925075 +) +(1,13485:6630773,40609930:25952256,424439,106246 +h1,13485:6630773,40609930:0,0,0 +g1,13485:7626635,40609930 +g1,13485:9286405,40609930 +g1,13485:9950313,40609930 +g1,13485:11942037,40609930 +g1,13485:12605945,40609930 +h1,13485:15925484,40609930:0,0,0 +k1,13485:32583029,40609930:16657545 +g1,13485:32583029,40609930 +) +(1,13485:6630773,41294785:25952256,398014,0 +h1,13485:6630773,41294785:0,0,0 +h1,13485:7294681,41294785:0,0,0 +k1,13485:32583029,41294785:25288348 +g1,13485:32583029,41294785 +) +(1,13485:6630773,41979640:25952256,431045,106246 +h1,13485:6630773,41979640:0,0,0 +g1,13485:7626635,41979640 +g1,13485:7958589,41979640 +g1,13485:8290543,41979640 +g1,13485:8622497,41979640 +g1,13485:8954451,41979640 +g1,13485:9286405,41979640 +g1,13485:9618359,41979640 +g1,13485:9950313,41979640 +g1,13485:10282267,41979640 +g1,13485:10614221,41979640 +g1,13485:10946175,41979640 +g1,13485:11278129,41979640 +g1,13485:11610083,41979640 +g1,13485:11942037,41979640 +g1,13485:12937899,41979640 +g1,13485:14265715,41979640 +g1,13485:15261577,41979640 +g1,13485:16257439,41979640 +g1,13485:16589393,41979640 +g1,13485:16921347,41979640 +g1,13485:18249163,41979640 +g1,13485:18581117,41979640 +g1,13485:18913071,41979640 +g1,13485:19245025,41979640 +h1,13485:20240887,41979640:0,0,0 +k1,13485:32583029,41979640:12342142 +g1,13485:32583029,41979640 +) +(1,13485:6630773,42664495:25952256,424439,106246 +h1,13485:6630773,42664495:0,0,0 +g1,13485:7626635,42664495 +g1,13485:8290543,42664495 +g1,13485:10282267,42664495 +g1,13485:10614221,42664495 +g1,13485:10946175,42664495 +g1,13485:11278129,42664495 +g1,13485:11610083,42664495 +g1,13485:11942037,42664495 +g1,13485:12273991,42664495 +g1,13485:12937899,42664495 +g1,13485:13269853,42664495 +g1,13485:13601807,42664495 +g1,13485:13933761,42664495 +g1,13485:14265715,42664495 +g1,13485:16257439,42664495 +g1,13485:18249163,42664495 +h1,13485:20240887,42664495:0,0,0 +k1,13485:32583029,42664495:12342142 +g1,13485:32583029,42664495 +) +(1,13485:6630773,43349350:25952256,407923,9908 +h1,13485:6630773,43349350:0,0,0 +g1,13485:7626635,43349350 +g1,13485:9950313,43349350 +g1,13485:10282267,43349350 +g1,13485:10614221,43349350 +g1,13485:10946175,43349350 +g1,13485:11278129,43349350 +g1,13485:11610083,43349350 +g1,13485:11942037,43349350 +g1,13485:12273991,43349350 +g1,13485:12605945,43349350 +g1,13485:12937899,43349350 +g1,13485:13269853,43349350 +g1,13485:13601807,43349350 +g1,13485:13933761,43349350 +g1,13485:14265715,43349350 +g1,13485:14597669,43349350 +g1,13485:14929623,43349350 +g1,13485:15261577,43349350 +g1,13485:15593531,43349350 +g1,13485:15925485,43349350 +g1,13485:16257439,43349350 +g1,13485:18249163,43349350 +h1,13485:20240887,43349350:0,0,0 +k1,13485:32583029,43349350:12342142 +g1,13485:32583029,43349350 +) +(1,13485:6630773,44034205:25952256,424439,106246 +h1,13485:6630773,44034205:0,0,0 +g1,13485:7626635,44034205 +g1,13485:8290543,44034205 +g1,13485:11942036,44034205 +g1,13485:12273990,44034205 +g1,13485:12937898,44034205 +g1,13485:13269852,44034205 +g1,13485:13601806,44034205 +g1,13485:13933760,44034205 +g1,13485:16257438,44034205 +g1,13485:18249162,44034205 +h1,13485:20240886,44034205:0,0,0 +k1,13485:32583029,44034205:12342143 +g1,13485:32583029,44034205 +) +(1,13485:6630773,44719060:25952256,398014,0 +h1,13485:6630773,44719060:0,0,0 +h1,13485:7294681,44719060:0,0,0 +k1,13485:32583029,44719060:25288348 +g1,13485:32583029,44719060 +) +(1,13485:6630773,45403915:25952256,407923,106246 +h1,13485:6630773,45403915:0,0,0 +g1,13485:7626635,45403915 +g1,13485:9618359,45403915 +g1,13485:9950313,45403915 +h1,13485:13269852,45403915:0,0,0 +k1,13485:32583028,45403915:19313176 +g1,13485:32583028,45403915 +) +] +) +g1,13486:32583029,45510161 +g1,13486:6630773,45510161 +g1,13486:6630773,45510161 +g1,13486:32583029,45510161 +g1,13486:32583029,45510161 +) +] +(1,13486:32583029,45706769:0,0,0 +g1,13486:32583029,45706769 +) +) +] +(1,13486:6630773,47279633:25952256,0,0 +h1,13486:6630773,47279633:25952256,0,0 +) +] +(1,13486:4262630,4025873:0,0,0 +[1,13486:-473656,4025873:0,0,0 +(1,13486:-473656,-710413:0,0,0 +(1,13486:-473656,-710413:0,0,0 +g1,13486:-473656,-710413 +) +g1,13486:-473656,-710413 +) +] +) +] +!33872 +}218 +Input:2064:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2065:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2066:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2067:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2068:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!482 +{219 +[1,13594:4262630,47279633:28320399,43253760,0 +(1,13594:4262630,4025873:0,0,0 +[1,13594:-473656,4025873:0,0,0 +(1,13594:-473656,-710413:0,0,0 +(1,13594:-473656,-644877:0,0,0 +k1,13594:-473656,-644877:-65536 ) -g1,13832:11035688,10262259 -g1,13832:11035688,10262259 +(1,13594:-473656,4736287:0,0,0 +k1,13594:-473656,4736287:5209943 ) +g1,13594:-473656,-710413 ) -g1,13832:11035688,10262259 -(1,13833:11035688,10262259:0,0,0 -(1,13833:11035688,10262259:0,0,0 -g1,13833:11035688,10262259 -g1,13833:11035688,10262259 -g1,13833:11035688,10262259 -g1,13833:11035688,10262259 -g1,13833:11035688,10262259 -(1,13833:11035688,10262259:0,0,0 -(1,13833:11035688,10262259:3499698,454754,120913 -(1,13833:11035688,10262259:3499698,454754,120913 -(1,13833:11035688,10262259:0,408008,104590 -r1,13896:12624945,10262259:1589257,512598,104590 -k1,13833:11035688,10262259:-1589257 -) -(1,13833:11035688,10262259:1589257,408008,104590 -k1,13833:11035688,10262259:3277 -h1,13833:12621668,10262259:0,370085,101313 -) -g1,13833:12804252,10262259 -) -g1,13833:14535386,10262259 -) -) -g1,13833:11035688,10262259 -g1,13833:11035688,10262259 -) -) -g1,13833:11035688,10262259 -(1,13834:11035688,10262259:0,0,0 -(1,13834:11035688,10262259:0,0,0 -g1,13834:11035688,10262259 -g1,13834:11035688,10262259 -g1,13834:11035688,10262259 -g1,13834:11035688,10262259 -g1,13834:11035688,10262259 -(1,13834:11035688,10262259:0,0,0 -(1,13834:11035688,10262259:2855420,408008,104590 -(1,13834:11035688,10262259:2855420,408008,104590 -(1,13834:11035688,10262259:0,408008,104590 -r1,13896:13891108,10262259:2855420,512598,104590 -k1,13834:11035688,10262259:-2855420 -) -(1,13834:11035688,10262259:2855420,408008,104590 -k1,13834:11035688,10262259:3277 -h1,13834:13887831,10262259:0,370085,101313 -) -) -g1,13834:13891108,10262259 -) -) -g1,13834:11035688,10262259 -g1,13834:11035688,10262259 -) -) -g1,13834:11035688,10262259 -(1,13835:11035688,10262259:0,0,0 -(1,13835:11035688,10262259:0,0,0 -g1,13835:11035688,10262259 -g1,13835:11035688,10262259 -g1,13835:11035688,10262259 -g1,13835:11035688,10262259 -g1,13835:11035688,10262259 -(1,13835:11035688,10262259:0,0,0 -(1,13835:11035688,10262259:2538879,414307,104590 -(1,13835:11035688,10262259:2538879,414307,104590 -(1,13835:11035688,10262259:0,414307,104590 -r1,13896:13574567,10262259:2538879,518897,104590 -k1,13835:11035688,10262259:-2538879 -) -(1,13835:11035688,10262259:2538879,414307,104590 -k1,13835:11035688,10262259:3277 -h1,13835:13571290,10262259:0,370085,101313 -) -) -g1,13835:13574567,10262259 -) -) -g1,13835:11035688,10262259 -g1,13835:11035688,10262259 -) -) -(1,13836:11035688,10262259:0,0,0 -(1,13836:11035688,10262259:0,0,0 -g1,13836:11035688,10262259 -g1,13836:11035688,10262259 -g1,13836:11035688,10262259 -g1,13836:11035688,10262259 -g1,13836:11035688,10262259 -(1,13836:11035688,10262259:0,0,0 -(1,13836:11035688,10262259:3488501,408008,104590 -(1,13836:11035688,10262259:3488501,408008,104590 -(1,13836:11035688,10262259:0,408008,104590 -r1,13896:14524189,10262259:3488501,512598,104590 -k1,13836:11035688,10262259:-3488501 -) -(1,13836:11035688,10262259:3488501,408008,104590 -k1,13836:11035688,10262259:3277 -h1,13836:14520912,10262259:0,370085,101313 -) -) -g1,13836:14524189,10262259 -) -) -g1,13836:11035688,10262259 -g1,13836:11035688,10262259 -) -) -g1,13836:11035688,10262259 -g1,13837:11035688,10262259 -g1,13837:11035688,10262259 -g1,13837:11035688,10262259 -g1,13837:11035688,10262259 -g1,13837:11035688,10262259 -g1,13837:11035688,10262259 -g1,13838:11035688,10262259 -g1,13838:11035688,10262259 -g1,13838:11035688,10262259 -g1,13838:11035688,10262259 -g1,13838:11035688,10262259 -g1,13838:11035688,10262259 -g1,13839:11035688,10262259 -g1,13839:11035688,10262259 -g1,13839:11035688,10262259 -g1,13839:11035688,10262259 -g1,13839:11035688,10262259 -g1,13839:11035688,10262259 -g1,13840:11035688,10262259 -g1,13840:11035688,10262259 -g1,13840:11035688,10262259 -g1,13840:11035688,10262259 -g1,13840:11035688,10262259 -g1,13840:11035688,10262259 -g1,13841:11035688,10262259 -g1,13841:11035688,10262259 -g1,13841:11035688,10262259 -g1,13841:11035688,10262259 -g1,13841:11035688,10262259 -g1,13841:11035688,10262259 -g1,13842:11035688,10262259 -g1,13842:11035688,10262259 -g1,13842:11035688,10262259 -g1,13842:11035688,10262259 -g1,13842:11035688,10262259 -g1,13842:11035688,10262259 -g1,13843:11035688,10262259 -g1,13843:11035688,10262259 -g1,13843:11035688,10262259 -g1,13843:11035688,10262259 -g1,13843:11035688,10262259 -g1,13843:11035688,10262259 -g1,13844:11035688,10262259 -g1,13844:11035688,10262259 -g1,13844:11035688,10262259 -g1,13844:11035688,10262259 -g1,13844:11035688,10262259 -g1,13844:11035688,10262259 -g1,13845:11035688,10262259 -g1,13845:11035688,10262259 -) -g1,13845:11035688,10262259 -) -) -g1,13847:31449919,16484753 -k1,13847:32583029,16484753:1133110 -) -v1,13850:6630773,18330579:0,393216,0 -(1,13863:6630773,23217171:25952256,5279808,196608 -g1,13863:6630773,23217171 -g1,13863:6630773,23217171 -g1,13863:6434165,23217171 -(1,13863:6434165,23217171:0,5279808,196608 -r1,13896:32779637,23217171:26345472,5476416,196608 -k1,13863:6434165,23217171:-26345472 -) -(1,13863:6434165,23217171:26345472,5279808,196608 -[1,13863:6630773,23217171:25952256,5083200,0 -(1,13852:6630773,18544489:25952256,410518,101187 -(1,13851:6630773,18544489:0,0,0 -g1,13851:6630773,18544489 -g1,13851:6630773,18544489 -g1,13851:6303093,18544489 -(1,13851:6303093,18544489:0,0,0 -) -g1,13851:6630773,18544489 -) -g1,13852:8211502,18544489 -g1,13852:9159940,18544489 -g1,13852:12637542,18544489 -g1,13852:13269834,18544489 -g1,13852:15482854,18544489 -g1,13852:17063583,18544489 -g1,13852:17695875,18544489 -h1,13852:19276603,18544489:0,0,0 -k1,13852:32583029,18544489:13306426 -g1,13852:32583029,18544489 -) -(1,13853:6630773,19210667:25952256,410518,101187 -h1,13853:6630773,19210667:0,0,0 -k1,13853:6630773,19210667:0 -h1,13853:10108375,19210667:0,0,0 -k1,13853:32583029,19210667:22474654 -g1,13853:32583029,19210667 -) -(1,13862:6630773,19876845:25952256,404226,7863 -(1,13855:6630773,19876845:0,0,0 -g1,13855:6630773,19876845 -g1,13855:6630773,19876845 -g1,13855:6303093,19876845 -(1,13855:6303093,19876845:0,0,0 -) -g1,13855:6630773,19876845 -) -g1,13862:7579210,19876845 -h1,13862:9159938,19876845:0,0,0 -k1,13862:32583030,19876845:23423092 -g1,13862:32583030,19876845 -) -(1,13862:6630773,20543023:25952256,410518,101187 -h1,13862:6630773,20543023:0,0,0 -g1,13862:7579210,20543023 -g1,13862:12005250,20543023 -g1,13862:12637542,20543023 -g1,13862:14218271,20543023 -g1,13862:14850563,20543023 -g1,13862:17063583,20543023 -g1,13862:18644312,20543023 -g1,13862:19276604,20543023 -h1,13862:20857332,20543023:0,0,0 -k1,13862:32583029,20543023:11725697 -g1,13862:32583029,20543023 -) -(1,13862:6630773,21209201:25952256,379060,0 -h1,13862:6630773,21209201:0,0,0 -h1,13862:7263064,21209201:0,0,0 -k1,13862:32583028,21209201:25319964 -g1,13862:32583028,21209201 -) -(1,13862:6630773,21875379:25952256,410518,9436 -h1,13862:6630773,21875379:0,0,0 -g1,13862:7579210,21875379 -g1,13862:9792230,21875379 -g1,13862:10740667,21875379 -g1,13862:15166707,21875379 -h1,13862:15798998,21875379:0,0,0 -k1,13862:32583030,21875379:16784032 -g1,13862:32583030,21875379 -) -(1,13862:6630773,22541557:25952256,410518,101187 -h1,13862:6630773,22541557:0,0,0 -g1,13862:7579210,22541557 -g1,13862:11056813,22541557 -g1,13862:13269833,22541557 -g1,13862:14218270,22541557 -g1,13862:18012018,22541557 -h1,13862:19276601,22541557:0,0,0 -k1,13862:32583029,22541557:13306428 -g1,13862:32583029,22541557 -) -(1,13862:6630773,23207735:25952256,404226,9436 -h1,13862:6630773,23207735:0,0,0 -g1,13862:7579210,23207735 -g1,13862:10424521,23207735 -g1,13862:13269832,23207735 -g1,13862:15482852,23207735 -h1,13862:17063580,23207735:0,0,0 -k1,13862:32583029,23207735:15519449 -g1,13862:32583029,23207735 -) -] -) -g1,13863:32583029,23217171 -g1,13863:6630773,23217171 -g1,13863:6630773,23217171 -g1,13863:32583029,23217171 -g1,13863:32583029,23217171 -) -h1,13863:6630773,23413779:0,0,0 -v1,13867:6630773,25303843:0,393216,0 -(1,13868:6630773,30007704:25952256,5097077,0 -g1,13868:6630773,30007704 -g1,13868:6303093,30007704 -r1,13896:6401397,30007704:98304,5097077,0 -g1,13868:6600626,30007704 -g1,13868:6797234,30007704 -[1,13868:6797234,30007704:25785795,5097077,0 -(1,13868:6797234,25665916:25785795,755289,196608 -(1,13867:6797234,25665916:0,755289,196608 -r1,13896:8134168,25665916:1336934,951897,196608 -k1,13867:6797234,25665916:-1336934 -) -(1,13867:6797234,25665916:1336934,755289,196608 -) -k1,13867:8326129,25665916:191961 -k1,13867:8653809,25665916:327680 -k1,13867:11102175,25665916:191961 -k1,13867:13779916,25665916:191960 -k1,13867:17634029,25665916:191961 -k1,13867:18477418,25665916:191961 -k1,13867:20058742,25665916:191961 -k1,13867:22978967,25665916:191961 -k1,13867:25056399,25665916:191961 -k1,13867:26063627,25665916:191960 -k1,13867:28685663,25665916:191961 -k1,13867:31923737,25665916:191961 -k1,13867:32583029,25665916:0 -) -(1,13868:6797234,26507404:25785795,513147,134348 -k1,13867:9282313,26507404:210324 -k1,13867:13230154,26507404:210323 -k1,13867:14631923,26507404:210324 -k1,13867:16614996,26507404:210324 -k1,13867:17816879,26507404:210323 -k1,13867:19881872,26507404:210324 -k1,13867:20901566,26507404:210324 -k1,13867:22130974,26507404:210323 -k1,13867:23433783,26507404:210324 -k1,13867:24303398,26507404:210323 -k1,13867:26763573,26507404:210324 -k1,13867:27625325,26507404:210324 -k1,13867:30504929,26507404:210323 -k1,13867:31734338,26507404:210324 -k1,13868:32583029,26507404:0 -) -(1,13868:6797234,27348892:25785795,505283,134348 -k1,13867:9533264,27348892:167674 -k1,13867:10892382,27348892:167673 -k1,13867:12526752,27348892:167674 -k1,13867:15522304,27348892:167673 -k1,13867:17981117,27348892:167674 -k1,13867:19787845,27348892:167673 -k1,13867:20947079,27348892:167674 -k1,13867:23675900,27348892:167674 -k1,13867:26161581,27348892:167673 -k1,13867:27822821,27348892:167674 -k1,13867:28676656,27348892:167673 -k1,13867:30375219,27348892:167642 -k1,13867:31734338,27348892:167674 -k1,13868:32583029,27348892:0 -) -(1,13868:6797234,28190380:25785795,513147,126483 -k1,13867:8543235,28190380:160030 -k1,13867:11487891,28190380:160031 -k1,13867:12879998,28190380:160030 -k1,13867:14856032,28190380:160031 -k1,13867:16816991,28190380:160030 -k1,13867:18168467,28190380:160031 -k1,13867:21584981,28190380:160030 -k1,13867:23134375,28190380:160031 -k1,13867:25848998,28190380:160030 -k1,13867:27773219,28190380:159992 -k1,13867:30608429,28190380:160030 -k1,13867:32583029,28190380:0 -) -(1,13868:6797234,29031868:25785795,513147,126483 -k1,13867:8831308,29031868:159744 -k1,13867:11775677,29031868:159744 -k1,13867:12926981,29031868:159744 -k1,13867:15452575,29031868:159744 -k1,13867:16631404,29031868:159744 -k1,13867:18617635,29031868:159743 -k1,13867:19436671,29031868:159744 -k1,13867:20799656,29031868:159744 -k1,13867:22541439,29031868:159744 -k1,13867:23892628,29031868:159744 -k1,13867:28253885,29031868:159744 -k1,13867:29029667,29031868:159744 -k1,13867:32583029,29031868:0 -) -(1,13868:6797234,29873356:25785795,505283,134348 -g1,13867:10068791,29873356 -k1,13868:32583029,29873356:19430114 -g1,13868:32583029,29873356 -) -] -g1,13868:32583029,30007704 -) -h1,13868:6630773,30007704:0,0,0 -(1,13870:6630773,32815272:25952256,32768,229376 -(1,13870:6630773,32815272:0,32768,229376 -(1,13870:6630773,32815272:5505024,32768,229376 -r1,13896:12135797,32815272:5505024,262144,229376 -) -k1,13870:6630773,32815272:-5505024 -) -(1,13870:6630773,32815272:25952256,32768,0 -r1,13896:32583029,32815272:25952256,32768,0 -) -) -(1,13870:6630773,34419600:25952256,615776,9436 -(1,13870:6630773,34419600:2464678,573309,0 -g1,13870:6630773,34419600 -g1,13870:9095451,34419600 -) -g1,13870:11747300,34419600 -k1,13870:32583029,34419600:17280270 -g1,13870:32583029,34419600 -) -(1,13873:6630773,35654304:25952256,513147,134348 -k1,13872:8805199,35654304:243080 -k1,13872:12095702,35654304:243079 -k1,13872:13832348,35654304:243080 -k1,13872:14761589,35654304:243079 -(1,13872:14761589,35654304:0,414482,115847 -r1,13896:16526703,35654304:1765114,530329,115847 -k1,13872:14761589,35654304:-1765114 -) -(1,13872:14761589,35654304:1765114,414482,115847 -g1,13872:15468290,35654304 -g1,13872:15820002,35654304 -g1,13872:16171714,35654304 -h1,13872:16523426,35654304:0,411205,112570 -) -k1,13872:16769783,35654304:243080 -k1,13872:18004422,35654304:243079 -k1,13872:20304022,35654304:243080 -k1,13872:22060327,35654304:243079 -k1,13872:22919445,35654304:243080 -k1,13872:23751037,35654304:243079 -k1,13872:25460813,35654304:243080 -k1,13872:26319930,35654304:243079 -k1,13872:28550717,35654304:243080 -k1,13872:30728420,35654304:243080 -k1,13872:31657661,35654304:243079 -k1,13873:32583029,35654304:0 -) -(1,13873:6630773,36495792:25952256,513147,134348 -k1,13872:9861143,36495792:237341 -k1,13872:10714522,36495792:237341 -k1,13872:13706341,36495792:237341 -k1,13872:16552671,36495792:237342 -k1,13872:17449304,36495792:237341 -k1,13872:18889886,36495792:237341 -k1,13872:21544850,36495792:237341 -k1,13872:22973636,36495792:237341 -k1,13872:23827015,36495792:237341 -k1,13872:26588804,36495792:237342 -k1,13872:28524183,36495792:237341 -k1,13872:30496917,36495792:237341 -k1,13872:32168186,36495792:237341 -k1,13873:32583029,36495792:0 -) -(1,13873:6630773,37337280:25952256,505283,115847 -(1,13872:6630773,37337280:0,452978,115847 -r1,13896:8747598,37337280:2116825,568825,115847 -k1,13872:6630773,37337280:-2116825 -) -(1,13872:6630773,37337280:2116825,452978,115847 -k1,13872:6630773,37337280:3277 -h1,13872:8744321,37337280:0,411205,112570 -) -g1,13872:8946827,37337280 -k1,13873:32583030,37337280:20677908 -g1,13873:32583030,37337280 -) -(1,13875:6630773,38178768:25952256,513147,134348 -h1,13874:6630773,38178768:983040,0,0 -k1,13874:8216603,38178768:187947 -k1,13874:8936058,38178768:187958 -k1,13874:12404748,38178768:187958 -k1,13874:13784151,38178768:187958 -k1,13874:16273078,38178768:187958 -k1,13874:17077073,38178768:187957 -k1,13874:18595412,38178768:187958 -k1,13874:19241467,38178768:187958 -k1,13874:21265088,38178768:187958 -k1,13874:23795303,38178768:187958 -k1,13874:26446759,38178768:187958 -k1,13874:27286145,38178768:187958 -k1,13874:27829963,38178768:187958 -k1,13874:30006283,38178768:187958 -k1,13874:31478747,38178768:187958 -k1,13874:32583029,38178768:0 -) -(1,13875:6630773,39020256:25952256,513147,134348 -k1,13874:7651431,39020256:272892 -k1,13874:11188671,39020256:272892 -k1,13874:12112990,39020256:272891 -k1,13874:14129795,39020256:272892 -k1,13874:16895021,39020256:272892 -k1,13874:18561864,39020256:272892 -k1,13874:20536726,39020256:272892 -k1,13874:23885877,39020256:272891 -k1,13874:27505037,39020256:272892 -k1,13874:29709275,39020256:272892 -k1,13874:32583029,39020256:0 -) -(1,13875:6630773,39861744:25952256,513147,134348 -k1,13874:7877249,39861744:254916 -k1,13874:10421994,39861744:254917 -k1,13874:11336202,39861744:254916 -k1,13874:13146287,39861744:254916 -(1,13874:13146287,39861744:0,459977,115847 -r1,13896:15614824,39861744:2468537,575824,115847 -k1,13874:13146287,39861744:-2468537 -) -(1,13874:13146287,39861744:2468537,459977,115847 -k1,13874:13146287,39861744:3277 -h1,13874:15611547,39861744:0,411205,112570 -) -k1,13874:15869741,39861744:254917 -k1,13874:17316102,39861744:254916 -k1,13874:19353597,39861744:254916 -(1,13874:19353597,39861744:0,452978,115847 -r1,13896:20766998,39861744:1413401,568825,115847 -k1,13874:19353597,39861744:-1413401 -) -(1,13874:19353597,39861744:1413401,452978,115847 -k1,13874:19353597,39861744:3277 -h1,13874:20763721,39861744:0,411205,112570 -) -k1,13874:21021914,39861744:254916 -k1,13874:22468276,39861744:254917 -k1,13874:23827474,39861744:254916 -k1,13874:24830156,39861744:254916 -k1,13874:29098498,39861744:254917 -k1,13874:30544859,39861744:254916 -k1,13874:32583029,39861744:0 -) -(1,13875:6630773,40703232:25952256,513147,134348 -g1,13874:9598243,40703232 -g1,13874:10448900,40703232 -g1,13874:12937957,40703232 -g1,13874:13796478,40703232 -g1,13874:15697677,40703232 -k1,13875:32583029,40703232:14478870 -g1,13875:32583029,40703232 -) -v1,13877:6630773,41893698:0,393216,0 -(1,13890:6630773,44831231:25952256,3330749,196608 -g1,13890:6630773,44831231 -g1,13890:6630773,44831231 -g1,13890:6434165,44831231 -(1,13890:6434165,44831231:0,3330749,196608 -r1,13896:32779637,44831231:26345472,3527357,196608 -k1,13890:6434165,44831231:-26345472 -) -(1,13890:6434165,44831231:26345472,3330749,196608 -[1,13890:6630773,44831231:25952256,3134141,0 -(1,13879:6630773,42101316:25952256,404226,101187 -(1,13878:6630773,42101316:0,0,0 -g1,13878:6630773,42101316 -g1,13878:6630773,42101316 -g1,13878:6303093,42101316 -(1,13878:6303093,42101316:0,0,0 -) -g1,13878:6630773,42101316 -) -k1,13879:6630773,42101316:0 -g1,13879:9159938,42101316 -g1,13879:9792230,42101316 -h1,13879:10424521,42101316:0,0,0 -k1,13879:32583029,42101316:22158508 -g1,13879:32583029,42101316 -) -(1,13883:6630773,42767494:25952256,410518,76021 -(1,13881:6630773,42767494:0,0,0 -g1,13881:6630773,42767494 -g1,13881:6630773,42767494 -g1,13881:6303093,42767494 -(1,13881:6303093,42767494:0,0,0 -) -g1,13881:6630773,42767494 -) -g1,13883:7579210,42767494 -g1,13883:8843793,42767494 -h1,13883:11689104,42767494:0,0,0 -k1,13883:32583028,42767494:20893924 -g1,13883:32583028,42767494 -) -(1,13885:6630773,44089032:25952256,404226,101187 -(1,13884:6630773,44089032:0,0,0 -g1,13884:6630773,44089032 -g1,13884:6630773,44089032 -g1,13884:6303093,44089032 -(1,13884:6303093,44089032:0,0,0 -) -g1,13884:6630773,44089032 -) -k1,13885:6630773,44089032:0 -g1,13885:8843793,44089032 -g1,13885:9476085,44089032 -h1,13885:10108376,44089032:0,0,0 -k1,13885:32583028,44089032:22474652 -g1,13885:32583028,44089032 -) -(1,13889:6630773,44755210:25952256,404226,76021 -(1,13887:6630773,44755210:0,0,0 -g1,13887:6630773,44755210 -g1,13887:6630773,44755210 -g1,13887:6303093,44755210 -(1,13887:6303093,44755210:0,0,0 -) -g1,13887:6630773,44755210 -) -g1,13889:7579210,44755210 -g1,13889:8843793,44755210 -h1,13889:10740667,44755210:0,0,0 -k1,13889:32583029,44755210:21842362 -g1,13889:32583029,44755210 -) -] -) -g1,13890:32583029,44831231 -g1,13890:6630773,44831231 -g1,13890:6630773,44831231 -g1,13890:32583029,44831231 -g1,13890:32583029,44831231 -) -h1,13890:6630773,45027839:0,0,0 ] -(1,13896:32583029,45706769:0,0,0 -g1,13896:32583029,45706769 ) +[1,13594:6630773,47279633:25952256,43253760,0 +[1,13594:6630773,4812305:25952256,786432,0 +(1,13594:6630773,4812305:25952256,513147,126483 +(1,13594:6630773,4812305:25952256,513147,126483 +g1,13594:3078558,4812305 +[1,13594:3078558,4812305:0,0,0 +(1,13594:3078558,2439708:0,1703936,0 +k1,13594:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,13594:2537886,2439708:1179648,16384,0 ) -] -(1,13896:6630773,47279633:25952256,0,0 -h1,13896:6630773,47279633:25952256,0,0 +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,13594:3078558,1915420:16384,1179648,0 +) +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] -(1,13896:4262630,4025873:0,0,0 -[1,13896:-473656,4025873:0,0,0 -(1,13896:-473656,-710413:0,0,0 -(1,13896:-473656,-710413:0,0,0 -g1,13896:-473656,-710413 ) -g1,13896:-473656,-710413 ) -] ) ] -!28154 -}237 -Input:2123:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2124:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2125:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2126:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2127:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2128:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2129:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2130:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2131:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2132:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2133:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2134:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2135:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2136:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2137:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2138:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1516 -{238 -[1,14065:4262630,47279633:28320399,43253760,0 -(1,14065:4262630,4025873:0,0,0 -[1,14065:-473656,4025873:0,0,0 -(1,14065:-473656,-710413:0,0,0 -(1,14065:-473656,-644877:0,0,0 -k1,14065:-473656,-644877:-65536 -) -(1,14065:-473656,4736287:0,0,0 -k1,14065:-473656,4736287:5209943 +[1,13594:3078558,4812305:0,0,0 +(1,13594:3078558,2439708:0,1703936,0 +g1,13594:29030814,2439708 +g1,13594:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,13594:36151628,1915420:16384,1179648,0 ) -g1,14065:-473656,-710413 +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] ) -[1,14065:6630773,47279633:25952256,43253760,0 -[1,14065:6630773,4812305:25952256,786432,0 -(1,14065:6630773,4812305:25952256,513147,126483 -(1,14065:6630773,4812305:25952256,513147,126483 -g1,14065:3078558,4812305 -[1,14065:3078558,4812305:0,0,0 -(1,14065:3078558,2439708:0,1703936,0 -k1,14065:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,14065:2537886,2439708:1179648,16384,0 +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,13594:37855564,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,14065:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +k1,13594:3078556,2439708:-34777008 ) ] +[1,13594:3078558,4812305:0,0,0 +(1,13594:3078558,49800853:0,16384,2228224 +k1,13594:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,13594:2537886,49800853:1179648,16384,0 ) +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,13594:3078558,51504789:16384,1179648,0 ) +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 +) +] +) +) +) +] +[1,13594:3078558,4812305:0,0,0 +(1,13594:3078558,49800853:0,16384,2228224 +g1,13594:29030814,49800853 +g1,13594:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,13594:36151628,51504789:16384,1179648,0 +) +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 +) +] +) +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,13594:37855564,49800853:1179648,16384,0 +) +) +k1,13594:3078556,49800853:-34777008 +) +] +g1,13594:6630773,4812305 +k1,13594:19540057,4812305:11713907 +g1,13594:21162728,4812305 +g1,13594:21985204,4812305 +g1,13594:24539797,4812305 +g1,13594:25949476,4812305 +g1,13594:28728857,4812305 +g1,13594:29852144,4812305 +) +) +] +[1,13594:6630773,45706769:25952256,40108032,0 +(1,13594:6630773,45706769:25952256,40108032,0 +(1,13594:6630773,45706769:0,0,0 +g1,13594:6630773,45706769 +) +[1,13594:6630773,45706769:25952256,40108032,0 +v1,13486:6630773,6254097:0,393216,0 +(1,13486:6630773,9327594:25952256,3466713,196608 +g1,13486:6630773,9327594 +g1,13486:6630773,9327594 +g1,13486:6434165,9327594 +(1,13486:6434165,9327594:0,3466713,196608 +r1,13594:32779637,9327594:26345472,3663321,196608 +k1,13486:6434165,9327594:-26345472 +) +(1,13486:6434165,9327594:26345472,3466713,196608 +[1,13486:6630773,9327594:25952256,3270105,0 +(1,13485:6630773,6481928:25952256,424439,106246 +h1,13485:6630773,6481928:0,0,0 +g1,13485:7626635,6481928 +g1,13485:9286405,6481928 +g1,13485:9950313,6481928 +h1,13485:13269852,6481928:0,0,0 +k1,13485:32583028,6481928:19313176 +g1,13485:32583028,6481928 +) +(1,13485:6630773,7166783:25952256,398014,0 +h1,13485:6630773,7166783:0,0,0 +h1,13485:7294681,7166783:0,0,0 +k1,13485:32583029,7166783:25288348 +g1,13485:32583029,7166783 +) +(1,13485:6630773,7851638:25952256,431045,106246 +h1,13485:6630773,7851638:0,0,0 +g1,13485:7626635,7851638 +g1,13485:7958589,7851638 +g1,13485:8290543,7851638 +g1,13485:8622497,7851638 +g1,13485:8954451,7851638 +g1,13485:9286405,7851638 +g1,13485:9618359,7851638 +g1,13485:9950313,7851638 +g1,13485:10282267,7851638 +g1,13485:10614221,7851638 +g1,13485:10946175,7851638 +g1,13485:11278129,7851638 +g1,13485:11610083,7851638 +g1,13485:11942037,7851638 +g1,13485:12937899,7851638 +g1,13485:14265715,7851638 +g1,13485:15261577,7851638 +g1,13485:16257439,7851638 +g1,13485:16589393,7851638 +g1,13485:16921347,7851638 +g1,13485:18249163,7851638 +g1,13485:18581117,7851638 +g1,13485:18913071,7851638 +g1,13485:19245025,7851638 +h1,13485:20240887,7851638:0,0,0 +k1,13485:32583029,7851638:12342142 +g1,13485:32583029,7851638 +) +(1,13485:6630773,8536493:25952256,407923,9908 +h1,13485:6630773,8536493:0,0,0 +g1,13485:7626635,8536493 +g1,13485:9950313,8536493 +g1,13485:10282267,8536493 +g1,13485:10614221,8536493 +g1,13485:10946175,8536493 +g1,13485:11278129,8536493 +g1,13485:11610083,8536493 +g1,13485:11942037,8536493 +g1,13485:12273991,8536493 +g1,13485:12605945,8536493 +g1,13485:12937899,8536493 +g1,13485:13269853,8536493 +g1,13485:13601807,8536493 +g1,13485:13933761,8536493 +g1,13485:14265715,8536493 +g1,13485:14597669,8536493 +g1,13485:14929623,8536493 +g1,13485:15261577,8536493 +g1,13485:15593531,8536493 +g1,13485:15925485,8536493 +g1,13485:16257439,8536493 +g1,13485:18249163,8536493 +h1,13485:20240887,8536493:0,0,0 +k1,13485:32583029,8536493:12342142 +g1,13485:32583029,8536493 +) +(1,13485:6630773,9221348:25952256,424439,106246 +h1,13485:6630773,9221348:0,0,0 +g1,13485:7626635,9221348 +g1,13485:8290543,9221348 +g1,13485:11942036,9221348 +g1,13485:12273990,9221348 +g1,13485:12937898,9221348 +g1,13485:13269852,9221348 +g1,13485:13601806,9221348 +g1,13485:13933760,9221348 +g1,13485:14265714,9221348 +g1,13485:16257438,9221348 +g1,13485:18249162,9221348 +h1,13485:20240886,9221348:0,0,0 +k1,13485:32583029,9221348:12342143 +g1,13485:32583029,9221348 +) +] +) +g1,13486:32583029,9327594 +g1,13486:6630773,9327594 +g1,13486:6630773,9327594 +g1,13486:32583029,9327594 +g1,13486:32583029,9327594 +) +h1,13486:6630773,9524202:0,0,0 +(1,13490:6630773,10389282:25952256,505283,134348 +h1,13489:6630773,10389282:983040,0,0 +g1,13489:8766591,10389282 +g1,13489:10058305,10389282 +(1,13489:10058305,10389282:0,452978,115847 +r1,13594:13230265,10389282:3171960,568825,115847 +k1,13489:10058305,10389282:-3171960 +) +(1,13489:10058305,10389282:3171960,452978,115847 +k1,13489:10058305,10389282:3277 +h1,13489:13226988,10389282:0,411205,112570 +) +g1,13489:13429494,10389282 +g1,13489:14438093,10389282 +g1,13489:16104018,10389282 +g1,13489:17322332,10389282 +g1,13489:19956879,10389282 +g1,13489:21347553,10389282 +g1,13489:24183951,10389282 +k1,13490:32583029,10389282:5907399 +g1,13490:32583029,10389282 +) +v1,13492:6630773,11074137:0,393216,0 +(1,13538:6630773,36462816:25952256,25781895,196608 +g1,13538:6630773,36462816 +g1,13538:6630773,36462816 +g1,13538:6434165,36462816 +(1,13538:6434165,36462816:0,25781895,196608 +r1,13594:32779637,36462816:26345472,25978503,196608 +k1,13538:6434165,36462816:-26345472 +) +(1,13538:6434165,36462816:26345472,25781895,196608 +[1,13538:6630773,36462816:25952256,25585287,0 +(1,13494:6630773,11308574:25952256,431045,106246 +(1,13493:6630773,11308574:0,0,0 +g1,13493:6630773,11308574 +g1,13493:6630773,11308574 +g1,13493:6303093,11308574 +(1,13493:6303093,11308574:0,0,0 +) +g1,13493:6630773,11308574 +) +k1,13494:6630773,11308574:0 +h1,13494:10614221,11308574:0,0,0 +k1,13494:32583029,11308574:21968808 +g1,13494:32583029,11308574 +) +(1,13514:6630773,12124501:25952256,398014,0 +(1,13496:6630773,12124501:0,0,0 +g1,13496:6630773,12124501 +g1,13496:6630773,12124501 +g1,13496:6303093,12124501 +(1,13496:6303093,12124501:0,0,0 +) +g1,13496:6630773,12124501 +) +h1,13514:7294681,12124501:0,0,0 +k1,13514:32583029,12124501:25288348 +g1,13514:32583029,12124501 +) +(1,13514:6630773,12809356:25952256,424439,8257 +h1,13514:6630773,12809356:0,0,0 +g1,13514:7626635,12809356 +h1,13514:9286405,12809356:0,0,0 +k1,13514:32583029,12809356:23296624 +g1,13514:32583029,12809356 +) +(1,13514:6630773,13494211:25952256,431045,106246 +h1,13514:6630773,13494211:0,0,0 +g1,13514:7626635,13494211 +g1,13514:11278128,13494211 +g1,13514:11942036,13494211 +g1,13514:13601806,13494211 +g1,13514:14265714,13494211 +g1,13514:16257438,13494211 +g1,13514:16921346,13494211 +g1,13514:20904793,13494211 +g1,13514:22564563,13494211 +g1,13514:23228471,13494211 +h1,13514:24888241,13494211:0,0,0 +k1,13514:32583029,13494211:7694788 +g1,13514:32583029,13494211 +) +(1,13514:6630773,14179066:25952256,398014,0 +h1,13514:6630773,14179066:0,0,0 +h1,13514:7294681,14179066:0,0,0 +k1,13514:32583029,14179066:25288348 +g1,13514:32583029,14179066 +) +(1,13514:6630773,14863921:25952256,424439,6605 +h1,13514:6630773,14863921:0,0,0 +g1,13514:7626635,14863921 +h1,13514:10946174,14863921:0,0,0 +k1,13514:32583030,14863921:21636856 +g1,13514:32583030,14863921 +) +(1,13514:6630773,15548776:25952256,424439,86428 +h1,13514:6630773,15548776:0,0,0 +g1,13514:7626635,15548776 +g1,13514:7958589,15548776 +g1,13514:8290543,15548776 +g1,13514:8622497,15548776 +g1,13514:8954451,15548776 +g1,13514:10282267,15548776 +g1,13514:10614221,15548776 +g1,13514:10946175,15548776 +g1,13514:11278129,15548776 +g1,13514:11610083,15548776 +g1,13514:11942037,15548776 +g1,13514:12937899,15548776 +g1,13514:13269853,15548776 +g1,13514:15593531,15548776 +g1,13514:15925485,15548776 +g1,13514:16257439,15548776 +g1,13514:16589393,15548776 +g1,13514:16921347,15548776 +g1,13514:17253301,15548776 +g1,13514:18249163,15548776 +g1,13514:18581117,15548776 +g1,13514:18913071,15548776 +g1,13514:19245025,15548776 +g1,13514:19576979,15548776 +h1,13514:20572841,15548776:0,0,0 +k1,13514:32583029,15548776:12010188 +g1,13514:32583029,15548776 +) +(1,13514:6630773,16233631:25952256,407923,9908 +h1,13514:6630773,16233631:0,0,0 +g1,13514:7626635,16233631 +g1,13514:10282267,16233631 +g1,13514:10614221,16233631 +g1,13514:12937899,16233631 +g1,13514:13269853,16233631 +g1,13514:15593531,16233631 +g1,13514:15925485,16233631 +g1,13514:16257439,16233631 +g1,13514:18249163,16233631 +g1,13514:18581117,16233631 +h1,13514:20572841,16233631:0,0,0 +k1,13514:32583029,16233631:12010188 +g1,13514:32583029,16233631 +) +(1,13514:6630773,16918486:25952256,398014,0 +h1,13514:6630773,16918486:0,0,0 +h1,13514:7294681,16918486:0,0,0 +k1,13514:32583029,16918486:25288348 +g1,13514:32583029,16918486 +) +(1,13514:6630773,17603341:25952256,431045,8257 +h1,13514:6630773,17603341:0,0,0 +g1,13514:7626635,17603341 +h1,13514:11942036,17603341:0,0,0 +k1,13514:32583028,17603341:20640992 +g1,13514:32583028,17603341 +) +(1,13514:6630773,18288196:25952256,424439,79822 +h1,13514:6630773,18288196:0,0,0 +g1,13514:7626635,18288196 +g1,13514:7958589,18288196 +g1,13514:8290543,18288196 +g1,13514:8622497,18288196 +g1,13514:8954451,18288196 +g1,13514:9286405,18288196 +g1,13514:9618359,18288196 +g1,13514:9950313,18288196 +g1,13514:10282267,18288196 +g1,13514:10614221,18288196 +g1,13514:10946175,18288196 +g1,13514:11278129,18288196 +g1,13514:11610083,18288196 +g1,13514:14597668,18288196 +g1,13514:16257438,18288196 +g1,13514:18249162,18288196 +g1,13514:18913070,18288196 +g1,13514:20904794,18288196 +k1,13514:20904794,18288196:0 +h1,13514:23560426,18288196:0,0,0 +k1,13514:32583029,18288196:9022603 +g1,13514:32583029,18288196 +) +(1,13514:6630773,18973051:25952256,424439,106246 +h1,13514:6630773,18973051:0,0,0 +g1,13514:7626635,18973051 +g1,13514:11610082,18973051 +g1,13514:11942036,18973051 +g1,13514:14597668,18973051 +g1,13514:14929622,18973051 +g1,13514:15261576,18973051 +g1,13514:18249161,18973051 +g1,13514:18581115,18973051 +g1,13514:18913069,18973051 +g1,13514:20904793,18973051 +g1,13514:21236747,18973051 +g1,13514:21568701,18973051 +g1,13514:21900655,18973051 +h1,13514:23560425,18973051:0,0,0 +k1,13514:32583029,18973051:9022604 +g1,13514:32583029,18973051 +) +(1,13514:6630773,19657906:25952256,424439,106246 +h1,13514:6630773,19657906:0,0,0 +g1,13514:7626635,19657906 +g1,13514:9618359,19657906 +g1,13514:9950313,19657906 +g1,13514:10282267,19657906 +g1,13514:10614221,19657906 +g1,13514:10946175,19657906 +g1,13514:11278129,19657906 +g1,13514:11610083,19657906 +g1,13514:11942037,19657906 +g1,13514:14597669,19657906 +g1,13514:14929623,19657906 +g1,13514:15261577,19657906 +g1,13514:15593531,19657906 +g1,13514:18249163,19657906 +g1,13514:18581117,19657906 +g1,13514:18913071,19657906 +g1,13514:20904795,19657906 +g1,13514:21236749,19657906 +g1,13514:21568703,19657906 +g1,13514:21900657,19657906 +h1,13514:23560427,19657906:0,0,0 +k1,13514:32583029,19657906:9022602 +g1,13514:32583029,19657906 +) +(1,13514:6630773,20342761:25952256,424439,106246 +h1,13514:6630773,20342761:0,0,0 +g1,13514:7626635,20342761 +g1,13514:11278128,20342761 +g1,13514:11610082,20342761 +g1,13514:11942036,20342761 +g1,13514:14597668,20342761 +g1,13514:14929622,20342761 +g1,13514:15261576,20342761 +g1,13514:15593530,20342761 +g1,13514:18249162,20342761 +g1,13514:18581116,20342761 +g1,13514:18913070,20342761 +g1,13514:20904794,20342761 +g1,13514:21236748,20342761 +g1,13514:21568702,20342761 +g1,13514:21900656,20342761 +h1,13514:23560426,20342761:0,0,0 +k1,13514:32583029,20342761:9022603 +g1,13514:32583029,20342761 +) +(1,13514:6630773,21027616:25952256,398014,0 +h1,13514:6630773,21027616:0,0,0 +h1,13514:7294681,21027616:0,0,0 +k1,13514:32583029,21027616:25288348 +g1,13514:32583029,21027616 +) +(1,13514:6630773,21712471:25952256,431045,112852 +h1,13514:6630773,21712471:0,0,0 +g1,13514:7626635,21712471 +g1,13514:10614220,21712471 +g1,13514:13601805,21712471 +g1,13514:15925483,21712471 +g1,13514:17917207,21712471 +g1,13514:18913069,21712471 +g1,13514:19908931,21712471 +g1,13514:22564563,21712471 +g1,13514:23560425,21712471 +h1,13514:25884103,21712471:0,0,0 +k1,13514:32583029,21712471:6698926 +g1,13514:32583029,21712471 +) +(1,13514:6630773,22397326:25952256,424439,112852 +h1,13514:6630773,22397326:0,0,0 +g1,13514:7626635,22397326 +g1,13514:10614220,22397326 +g1,13514:14265713,22397326 +g1,13514:14597667,22397326 +g1,13514:19908930,22397326 +g1,13514:23560423,22397326 +g1,13514:23892377,22397326 +h1,13514:25884101,22397326:0,0,0 +k1,13514:32583029,22397326:6698928 +g1,13514:32583029,22397326 +) +(1,13514:6630773,23082181:25952256,424439,106246 +h1,13514:6630773,23082181:0,0,0 +g1,13514:7626635,23082181 +g1,13514:11942036,23082181 +g1,13514:13933760,23082181 +g1,13514:14929622,23082181 +g1,13514:15593530,23082181 +g1,13514:16921346,23082181 +g1,13514:17917208,23082181 +g1,13514:19245024,23082181 +g1,13514:19576978,23082181 +g1,13514:22564564,23082181 +k1,13514:22564564,23082181:0 +h1,13514:25552150,23082181:0,0,0 +k1,13514:32583029,23082181:7030879 +g1,13514:32583029,23082181 +) +(1,13516:6630773,23898108:25952256,431045,106246 +(1,13515:6630773,23898108:0,0,0 +g1,13515:6630773,23898108 +g1,13515:6630773,23898108 +g1,13515:6303093,23898108 +(1,13515:6303093,23898108:0,0,0 +) +g1,13515:6630773,23898108 +) +k1,13516:6630773,23898108:0 +h1,13516:10946175,23898108:0,0,0 +k1,13516:32583029,23898108:21636854 +g1,13516:32583029,23898108 +) +(1,13537:6630773,24714035:25952256,398014,0 +(1,13518:6630773,24714035:0,0,0 +g1,13518:6630773,24714035 +g1,13518:6630773,24714035 +g1,13518:6303093,24714035 +(1,13518:6303093,24714035:0,0,0 +) +g1,13518:6630773,24714035 +) +h1,13537:7294681,24714035:0,0,0 +k1,13537:32583029,24714035:25288348 +g1,13537:32583029,24714035 +) +(1,13537:6630773,25398890:25952256,424439,8257 +h1,13537:6630773,25398890:0,0,0 +g1,13537:7626635,25398890 +h1,13537:9286405,25398890:0,0,0 +k1,13537:32583029,25398890:23296624 +g1,13537:32583029,25398890 +) +(1,13537:6630773,26083745:25952256,431045,106246 +h1,13537:6630773,26083745:0,0,0 +g1,13537:7626635,26083745 +g1,13537:11278128,26083745 +g1,13537:11942036,26083745 +g1,13537:13601806,26083745 +g1,13537:14265714,26083745 +g1,13537:18249161,26083745 +g1,13537:19908931,26083745 +g1,13537:20572839,26083745 +h1,13537:22232609,26083745:0,0,0 +k1,13537:32583029,26083745:10350420 +g1,13537:32583029,26083745 +) +(1,13537:6630773,26768600:25952256,398014,0 +h1,13537:6630773,26768600:0,0,0 +h1,13537:7294681,26768600:0,0,0 +k1,13537:32583029,26768600:25288348 +g1,13537:32583029,26768600 +) +(1,13537:6630773,27453455:25952256,424439,6605 +h1,13537:6630773,27453455:0,0,0 +g1,13537:7626635,27453455 +h1,13537:10946174,27453455:0,0,0 +k1,13537:32583030,27453455:21636856 +g1,13537:32583030,27453455 +) +(1,13537:6630773,28138310:25952256,424439,86428 +h1,13537:6630773,28138310:0,0,0 +g1,13537:7626635,28138310 +g1,13537:7958589,28138310 +g1,13537:8290543,28138310 +g1,13537:8622497,28138310 +g1,13537:8954451,28138310 +g1,13537:10282267,28138310 +g1,13537:10614221,28138310 +g1,13537:10946175,28138310 +g1,13537:11278129,28138310 +g1,13537:11610083,28138310 +g1,13537:11942037,28138310 +g1,13537:12937899,28138310 +g1,13537:13269853,28138310 +g1,13537:15593531,28138310 +g1,13537:15925485,28138310 +g1,13537:16257439,28138310 +g1,13537:16589393,28138310 +g1,13537:16921347,28138310 +g1,13537:17253301,28138310 +g1,13537:18249163,28138310 +g1,13537:18581117,28138310 +g1,13537:18913071,28138310 +g1,13537:19245025,28138310 +g1,13537:19576979,28138310 +h1,13537:20572841,28138310:0,0,0 +k1,13537:32583029,28138310:12010188 +g1,13537:32583029,28138310 +) +(1,13537:6630773,28823165:25952256,407923,9908 +h1,13537:6630773,28823165:0,0,0 +g1,13537:7626635,28823165 +g1,13537:10282267,28823165 +g1,13537:10614221,28823165 +g1,13537:12937899,28823165 +g1,13537:13269853,28823165 +g1,13537:15593531,28823165 +g1,13537:15925485,28823165 +g1,13537:16257439,28823165 +g1,13537:18249163,28823165 +g1,13537:18581117,28823165 +h1,13537:20572841,28823165:0,0,0 +k1,13537:32583029,28823165:12010188 +g1,13537:32583029,28823165 +) +(1,13537:6630773,29508020:25952256,398014,0 +h1,13537:6630773,29508020:0,0,0 +h1,13537:7294681,29508020:0,0,0 +k1,13537:32583029,29508020:25288348 +g1,13537:32583029,29508020 +) +(1,13537:6630773,30192875:25952256,431045,8257 +h1,13537:6630773,30192875:0,0,0 +g1,13537:7626635,30192875 +h1,13537:11942036,30192875:0,0,0 +k1,13537:32583028,30192875:20640992 +g1,13537:32583028,30192875 +) +(1,13537:6630773,30877730:25952256,424439,79822 +h1,13537:6630773,30877730:0,0,0 +g1,13537:7626635,30877730 +g1,13537:7958589,30877730 +g1,13537:8290543,30877730 +g1,13537:8622497,30877730 +g1,13537:8954451,30877730 +g1,13537:9286405,30877730 +g1,13537:9618359,30877730 +g1,13537:9950313,30877730 +g1,13537:10282267,30877730 +g1,13537:10614221,30877730 +g1,13537:10946175,30877730 +g1,13537:11278129,30877730 +g1,13537:11610083,30877730 +g1,13537:14597668,30877730 +g1,13537:16257438,30877730 +g1,13537:18249162,30877730 +g1,13537:18913070,30877730 +g1,13537:20904794,30877730 +k1,13537:20904794,30877730:0 +h1,13537:23560426,30877730:0,0,0 +k1,13537:32583029,30877730:9022603 +g1,13537:32583029,30877730 +) +(1,13537:6630773,31562585:25952256,424439,106246 +h1,13537:6630773,31562585:0,0,0 +g1,13537:7626635,31562585 +g1,13537:11610082,31562585 +g1,13537:11942036,31562585 +g1,13537:14597668,31562585 +g1,13537:14929622,31562585 +g1,13537:15261576,31562585 +g1,13537:15593530,31562585 +g1,13537:18249162,31562585 +g1,13537:18581116,31562585 +g1,13537:18913070,31562585 +g1,13537:20904794,31562585 +g1,13537:21236748,31562585 +g1,13537:21568702,31562585 +g1,13537:23892380,31562585 +h1,13537:24224334,31562585:0,0,0 +k1,13537:32583029,31562585:8358695 +g1,13537:32583029,31562585 +) +(1,13537:6630773,32247440:25952256,424439,106246 +h1,13537:6630773,32247440:0,0,0 +g1,13537:7626635,32247440 +g1,13537:11278128,32247440 +g1,13537:11610082,32247440 +g1,13537:11942036,32247440 +g1,13537:14597668,32247440 +g1,13537:14929622,32247440 +g1,13537:15261576,32247440 +g1,13537:15593530,32247440 +g1,13537:18249162,32247440 +g1,13537:18581116,32247440 +g1,13537:18913070,32247440 +g1,13537:20904794,32247440 +g1,13537:21236748,32247440 +g1,13537:23892380,32247440 +h1,13537:24888242,32247440:0,0,0 +k1,13537:32583029,32247440:7694787 +g1,13537:32583029,32247440 +) +(1,13537:6630773,32932295:25952256,398014,0 +h1,13537:6630773,32932295:0,0,0 +g1,13537:7626635,32932295 +k1,13537:7626635,32932295:0 +h1,13537:8622497,32932295:0,0,0 +k1,13537:32583029,32932295:23960532 +g1,13537:32583029,32932295 +) +(1,13537:6630773,33617150:25952256,431045,112852 +h1,13537:6630773,33617150:0,0,0 +g1,13537:7626635,33617150 +g1,13537:10282267,33617150 +g1,13537:12605945,33617150 +g1,13537:12937899,33617150 +g1,13537:13601807,33617150 +g1,13537:15593531,33617150 +g1,13537:17585255,33617150 +g1,13537:19245025,33617150 +g1,13537:20904795,33617150 +g1,13537:22232611,33617150 +g1,13537:23892381,33617150 +g1,13537:25220197,33617150 +g1,13537:26548013,33617150 +g1,13537:27211921,33617150 +g1,13537:27875829,33617150 +h1,13537:28207783,33617150:0,0,0 +k1,13537:32583029,33617150:4375246 +g1,13537:32583029,33617150 +) +(1,13537:6630773,34302005:25952256,398014,0 +h1,13537:6630773,34302005:0,0,0 +h1,13537:7294681,34302005:0,0,0 +k1,13537:32583029,34302005:25288348 +g1,13537:32583029,34302005 +) +(1,13537:6630773,34986860:25952256,431045,112852 +h1,13537:6630773,34986860:0,0,0 +g1,13537:7626635,34986860 +g1,13537:10614220,34986860 +g1,13537:13601805,34986860 +g1,13537:15925483,34986860 +g1,13537:17917207,34986860 +g1,13537:18913069,34986860 +g1,13537:19908931,34986860 +g1,13537:22564563,34986860 +g1,13537:23560425,34986860 +h1,13537:25884103,34986860:0,0,0 +k1,13537:32583029,34986860:6698926 +g1,13537:32583029,34986860 +) +(1,13537:6630773,35671715:25952256,424439,112852 +h1,13537:6630773,35671715:0,0,0 +g1,13537:7626635,35671715 +g1,13537:10614220,35671715 +g1,13537:14265713,35671715 +g1,13537:14597667,35671715 +g1,13537:19908930,35671715 +g1,13537:23560423,35671715 +g1,13537:23892377,35671715 +h1,13537:25884101,35671715:0,0,0 +k1,13537:32583029,35671715:6698928 +g1,13537:32583029,35671715 +) +(1,13537:6630773,36356570:25952256,424439,106246 +h1,13537:6630773,36356570:0,0,0 +g1,13537:7626635,36356570 +g1,13537:11942036,36356570 +g1,13537:13933760,36356570 +g1,13537:14929622,36356570 +g1,13537:15593530,36356570 +g1,13537:16921346,36356570 +g1,13537:17917208,36356570 +g1,13537:19245024,36356570 +g1,13537:19576978,36356570 +g1,13537:22564564,36356570 +k1,13537:22564564,36356570:0 +h1,13537:24888242,36356570:0,0,0 +k1,13537:32583029,36356570:7694787 +g1,13537:32583029,36356570 +) +] +) +g1,13538:32583029,36462816 +g1,13538:6630773,36462816 +g1,13538:6630773,36462816 +g1,13538:32583029,36462816 +g1,13538:32583029,36462816 +) +h1,13538:6630773,36659424:0,0,0 +(1,13542:6630773,37524504:25952256,513147,134348 +h1,13541:6630773,37524504:983040,0,0 +k1,13541:8316394,37524504:224824 +k1,13541:9409570,37524504:224824 +k1,13541:11071599,37524504:224824 +k1,13541:11652283,37524504:224824 +k1,13541:13750126,37524504:224824 +k1,13541:15962657,37524504:224824 +k1,13541:17581432,37524504:224824 +k1,13541:21033249,37524504:224824 +k1,13541:23100945,37524504:224824 +k1,13541:25884295,37524504:224824 +k1,13541:29389851,37524504:224824 +(1,13541:29389851,37524504:0,414482,115847 +r1,13594:31154964,37524504:1765113,530329,115847 +k1,13541:29389851,37524504:-1765113 +) +(1,13541:29389851,37524504:1765113,414482,115847 +k1,13541:29389851,37524504:3277 +h1,13541:31151687,37524504:0,411205,112570 +) +k1,13541:31379788,37524504:224824 +k1,13541:32583029,37524504:0 +) +(1,13542:6630773,38389584:25952256,513147,126483 +k1,13541:7963382,38389584:200147 +k1,13541:8911295,38389584:200147 +k1,13541:10878948,38389584:200147 +k1,13541:11765257,38389584:200147 +k1,13541:12984489,38389584:200147 +k1,13541:14786336,38389584:200147 +k1,13541:17672804,38389584:200147 +k1,13541:19860657,38389584:200146 +k1,13541:20712232,38389584:200147 +k1,13541:21660145,38389584:200147 +k1,13541:24826451,38389584:200147 +k1,13541:25678026,38389584:200147 +k1,13541:28205356,38389584:200147 +k1,13541:29064795,38389584:200147 +k1,13541:30421652,38389584:200147 +k1,13541:32583029,38389584:0 +) +(1,13542:6630773,39254664:25952256,505283,126483 +k1,13541:7772249,39254664:273124 +k1,13541:9482577,39254664:273123 +k1,13541:10928140,39254664:273124 +k1,13541:13318731,39254664:273123 +k1,13541:15909863,39254664:273124 +k1,13541:16799025,39254664:273124 +k1,13541:17428008,39254664:273123 +k1,13541:18694658,39254664:273124 +k1,13541:20159226,39254664:273123 +k1,13541:22170365,39254664:273124 +k1,13541:24082544,39254664:273124 +(1,13541:24082544,39254664:0,452978,115847 +r1,13594:25847657,39254664:1765113,568825,115847 +k1,13541:24082544,39254664:-1765113 +) +(1,13541:24082544,39254664:1765113,452978,115847 +k1,13541:24082544,39254664:3277 +h1,13541:25844380,39254664:0,411205,112570 +) +k1,13541:26120780,39254664:273123 +k1,13541:27585349,39254664:273124 +(1,13541:27585349,39254664:0,414482,115847 +r1,13594:29350462,39254664:1765113,530329,115847 +k1,13541:27585349,39254664:-1765113 +) +(1,13541:27585349,39254664:1765113,414482,115847 +k1,13541:27585349,39254664:3277 +h1,13541:29347185,39254664:0,411205,112570 +) +k1,13541:29797255,39254664:273123 +k1,13541:31450567,39254664:273124 +k1,13541:32583029,39254664:0 +) +(1,13542:6630773,40119744:25952256,513147,126483 +k1,13541:9126209,40119744:242964 +k1,13541:10388257,40119744:242963 +k1,13541:12457709,40119744:242964 +k1,13541:13359965,40119744:242964 +k1,13541:14622014,40119744:242964 +k1,13541:17620111,40119744:242963 +k1,13541:20107028,40119744:242964 +k1,13541:20977827,40119744:242964 +k1,13541:22239876,40119744:242964 +k1,13541:23866959,40119744:242963 +k1,13541:26771340,40119744:242964 +k1,13541:27882656,40119744:242964 +k1,13541:29150603,40119744:242964 +k1,13541:30678072,40119744:242963 +k1,13541:32227169,40119744:242964 +k1,13541:32583029,40119744:0 +) +(1,13542:6630773,40984824:25952256,505283,115847 +k1,13541:9969431,40984824:270262 +k1,13541:12309975,40984824:270262 +k1,13541:13111734,40984824:270262 +k1,13541:14959448,40984824:270262 +k1,13541:16421155,40984824:270262 +k1,13541:18203989,40984824:270263 +(1,13541:18203989,40984824:0,452978,115847 +r1,13594:19969102,40984824:1765113,568825,115847 +k1,13541:18203989,40984824:-1765113 +) +(1,13541:18203989,40984824:1765113,452978,115847 +k1,13541:18203989,40984824:3277 +h1,13541:19965825,40984824:0,411205,112570 +) +k1,13541:20239364,40984824:270262 +k1,13541:21041123,40984824:270262 +k1,13541:24086835,40984824:270262 +k1,13541:25043259,40984824:270262 +k1,13541:27881877,40984824:270262 +k1,13541:31253303,40984824:270262 +k1,13541:32583029,40984824:0 +) +(1,13542:6630773,41849904:25952256,513147,126483 +k1,13541:11146382,41849904:262978 +k1,13541:11765220,41849904:262978 +k1,13541:14561820,41849904:262978 +k1,13541:16895080,41849904:262978 +k1,13541:17689555,41849904:262978 +k1,13541:19529985,41849904:262978 +k1,13541:24493861,41849904:262978 +k1,13541:25704490,41849904:262978 +k1,13541:26323328,41849904:262978 +k1,13541:28574013,41849904:262978 +k1,13541:30230942,41849904:262978 +k1,13541:32583029,41849904:0 +) +(1,13542:6630773,42714984:25952256,485622,11795 +k1,13542:32583029,42714984:24622530 +g1,13542:32583029,42714984 +) +v1,13544:6630773,43399839:0,393216,0 +(1,13594:6630773,45510161:25952256,2503538,196608 +g1,13594:6630773,45510161 +g1,13594:6630773,45510161 +g1,13594:6434165,45510161 +(1,13594:6434165,45510161:0,2503538,196608 +r1,13594:32779637,45510161:26345472,2700146,196608 +k1,13594:6434165,45510161:-26345472 +) +(1,13594:6434165,45510161:26345472,2503538,196608 +[1,13594:6630773,45510161:25952256,2306930,0 +(1,13546:6630773,43634276:25952256,431045,9908 +(1,13545:6630773,43634276:0,0,0 +g1,13545:6630773,43634276 +g1,13545:6630773,43634276 +g1,13545:6303093,43634276 +(1,13545:6303093,43634276:0,0,0 +) +g1,13545:6630773,43634276 +) +g1,13546:8290543,43634276 +k1,13546:8290543,43634276:0 +h1,13546:8954451,43634276:0,0,0 +k1,13546:32583029,43634276:23628578 +g1,13546:32583029,43634276 +) +(1,13547:6630773,44319131:25952256,431045,106246 +h1,13547:6630773,44319131:0,0,0 +g1,13547:6962727,44319131 +g1,13547:7294681,44319131 +k1,13547:7294681,44319131:0 +h1,13547:10282267,44319131:0,0,0 +k1,13547:32583029,44319131:22300762 +g1,13547:32583029,44319131 +) +(1,13548:6630773,45003986:25952256,424439,106246 +h1,13548:6630773,45003986:0,0,0 +g1,13548:6962727,45003986 +g1,13548:7294681,45003986 +g1,13548:7626635,45003986 +g1,13548:7958589,45003986 +g1,13548:8290543,45003986 +g1,13548:8622497,45003986 +g1,13548:8954451,45003986 +g1,13548:10946175,45003986 +g1,13548:11610083,45003986 +g1,13548:13269853,45003986 +g1,13548:13933761,45003986 +g1,13548:15925485,45003986 +g1,13548:16589393,45003986 +g1,13548:20240887,45003986 +g1,13548:20904795,45003986 +g1,13548:24556289,45003986 +g1,13548:25220197,45003986 +k1,13548:25220197,45003986:0 +h1,13548:28871691,45003986:0,0,0 +k1,13548:32583029,45003986:3711338 +g1,13548:32583029,45003986 +) +(1,13570:6630773,45500253:25952256,407923,9908 +(1,13550:6630773,45500253:0,0,0 +g1,13550:6630773,45500253 +g1,13550:6630773,45500253 +g1,13550:6303093,45500253 +(1,13550:6303093,45500253:0,0,0 +) +g1,13550:6630773,45500253 +) +g1,13570:7626635,45500253 +g1,13570:9950313,45500253 +g1,13570:10282267,45500253 +h1,13570:13601806,45500253:0,0,0 +k1,13570:32583030,45500253:18981224 +g1,13570:32583030,45500253 +) +] +) +g1,13594:32583029,45510161 +g1,13594:6630773,45510161 +g1,13594:6630773,45510161 +g1,13594:32583029,45510161 +g1,13594:32583029,45510161 +) +] +(1,13594:32583029,45706769:0,0,0 +g1,13594:32583029,45706769 +) +) +] +(1,13594:6630773,47279633:25952256,0,0 +h1,13594:6630773,47279633:25952256,0,0 +) +] +(1,13594:4262630,4025873:0,0,0 +[1,13594:-473656,4025873:0,0,0 +(1,13594:-473656,-710413:0,0,0 +(1,13594:-473656,-710413:0,0,0 +g1,13594:-473656,-710413 +) +g1,13594:-473656,-710413 +) +] +) +] +!28939 +}219 +Input:2069:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2070:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2071:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2072:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!388 +{220 +[1,13623:4262630,47279633:28320399,43253760,0 +(1,13623:4262630,4025873:0,0,0 +[1,13623:-473656,4025873:0,0,0 +(1,13623:-473656,-710413:0,0,0 +(1,13623:-473656,-644877:0,0,0 +k1,13623:-473656,-644877:-65536 ) -] -[1,14065:3078558,4812305:0,0,0 -(1,14065:3078558,2439708:0,1703936,0 -g1,14065:29030814,2439708 -g1,14065:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,14065:36151628,1915420:16384,1179648,0 +(1,13623:-473656,4736287:0,0,0 +k1,13623:-473656,4736287:5209943 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +g1,13623:-473656,-710413 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,14065:37855564,2439708:1179648,16384,0 +[1,13623:6630773,47279633:25952256,43253760,0 +[1,13623:6630773,4812305:25952256,786432,0 +(1,13623:6630773,4812305:25952256,505283,134348 +(1,13623:6630773,4812305:25952256,505283,134348 +g1,13623:3078558,4812305 +[1,13623:3078558,4812305:0,0,0 +(1,13623:3078558,2439708:0,1703936,0 +k1,13623:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,13623:2537886,2439708:1179648,16384,0 ) +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,13623:3078558,1915420:16384,1179648,0 ) -k1,14065:3078556,2439708:-34777008 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] -[1,14065:3078558,4812305:0,0,0 -(1,14065:3078558,49800853:0,16384,2228224 -k1,14065:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,14065:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,14065:3078558,51504789:16384,1179648,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 ) ] +[1,13623:3078558,4812305:0,0,0 +(1,13623:3078558,2439708:0,1703936,0 +g1,13623:29030814,2439708 +g1,13623:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,13623:36151628,1915420:16384,1179648,0 ) -) +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] -[1,14065:3078558,4812305:0,0,0 -(1,14065:3078558,49800853:0,16384,2228224 -g1,14065:29030814,49800853 -g1,14065:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,14065:36151628,51504789:16384,1179648,0 -) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 -) -] -) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,14065:37855564,49800853:1179648,16384,0 -) -) -k1,14065:3078556,49800853:-34777008 ) -] -g1,14065:6630773,4812305 -g1,14065:6630773,4812305 -g1,14065:8691224,4812305 -g1,14065:11722264,4812305 -k1,14065:31387652,4812305:19665388 -) -) -] -[1,14065:6630773,45706769:25952256,40108032,0 -(1,14065:6630773,45706769:25952256,40108032,0 -(1,14065:6630773,45706769:0,0,0 -g1,14065:6630773,45706769 -) -[1,14065:6630773,45706769:25952256,40108032,0 -(1,13894:6630773,6254097:25952256,513147,134348 -h1,13893:6630773,6254097:983040,0,0 -k1,13893:9117512,6254097:197566 -k1,13893:10446884,6254097:197565 -k1,13893:12346420,6254097:197566 -k1,13893:12958827,6254097:197564 -k1,13893:15115919,6254097:197566 -k1,13893:18187239,6254097:197566 -k1,13893:19489087,6254097:197566 -k1,13893:20434418,6254097:197565 -k1,13893:23406778,6254097:197566 -k1,13893:24255772,6254097:197566 -k1,13893:27294979,6254097:197566 -k1,13893:28683989,6254097:197565 -k1,13893:29629321,6254097:197566 -k1,13893:32583029,6254097:0 -) -(1,13894:6630773,7095585:25952256,513147,134348 -k1,13893:7446948,7095585:156883 -k1,13893:8927658,7095585:156883 -k1,13893:10275986,7095585:156883 -k1,13893:12914717,7095585:156883 -k1,13893:17592274,7095585:156883 -k1,13893:18768242,7095585:156883 -k1,13893:20231257,7095585:156882 -k1,13893:22200866,7095585:156883 -k1,13893:24345456,7095585:156883 -k1,13893:25189812,7095585:156883 -k1,13893:28008112,7095585:156883 -k1,13893:29732616,7095585:156883 -k1,13893:31387652,7095585:156883 -h1,13893:32583029,7095585:0,0,0 -k1,13893:32583029,7095585:0 -) -(1,13894:6630773,7937073:25952256,513147,7863 -g1,13893:7934284,7937073 -g1,13893:8881279,7937073 -g1,13893:12002758,7937073 -g1,13893:12888149,7937073 -k1,13894:32583030,7937073:17205824 -g1,13894:32583030,7937073 -) -v1,13896:6630773,9127539:0,393216,0 -(1,13901:6630773,10108814:25952256,1374491,196608 -g1,13901:6630773,10108814 -g1,13901:6630773,10108814 -g1,13901:6434165,10108814 -(1,13901:6434165,10108814:0,1374491,196608 -r1,14065:32779637,10108814:26345472,1571099,196608 -k1,13901:6434165,10108814:-26345472 -) -(1,13901:6434165,10108814:26345472,1374491,196608 -[1,13901:6630773,10108814:25952256,1177883,0 -(1,13898:6630773,9341449:25952256,410518,101187 -(1,13897:6630773,9341449:0,0,0 -g1,13897:6630773,9341449 -g1,13897:6630773,9341449 -g1,13897:6303093,9341449 -(1,13897:6303093,9341449:0,0,0 -) -g1,13897:6630773,9341449 -) -g1,13898:10108376,9341449 -g1,13898:11056814,9341449 -g1,13898:12637543,9341449 -g1,13898:13269835,9341449 -g1,13898:13902127,9341449 -g1,13898:14534419,9341449 -h1,13898:16115147,9341449:0,0,0 -k1,13898:32583029,9341449:16467882 -g1,13898:32583029,9341449 -) -(1,13899:6630773,10007627:25952256,410518,101187 -h1,13899:6630773,10007627:0,0,0 -g1,13899:7895356,10007627 -g1,13899:8843794,10007627 -g1,13899:13585979,10007627 -h1,13899:16747436,10007627:0,0,0 -k1,13899:32583029,10007627:15835593 -g1,13899:32583029,10007627 -) -] -) -g1,13901:32583029,10108814 -g1,13901:6630773,10108814 -g1,13901:6630773,10108814 -g1,13901:32583029,10108814 -g1,13901:32583029,10108814 -) -h1,13901:6630773,10305422:0,0,0 -(1,13905:6630773,11671198:25952256,513147,134348 -h1,13904:6630773,11671198:983040,0,0 -k1,13904:8409966,11671198:168318 -k1,13904:10270424,11671198:168318 -k1,13904:13769282,11671198:168318 -k1,13904:15180164,11671198:168319 -k1,13904:18819924,11671198:168318 -k1,13904:19647534,11671198:168318 -k1,13904:23800441,11671198:168318 -k1,13904:26286767,11671198:168318 -k1,13904:28732461,11671198:168318 -k1,13904:29256640,11671198:168319 -k1,13904:30339186,11671198:168318 -k1,13904:32020075,11671198:168318 -k1,13904:32583029,11671198:0 -) -(1,13905:6630773,12512686:25952256,513147,126483 -k1,13904:8330631,12512686:187287 -k1,13904:9327288,12512686:187287 -k1,13904:10533661,12512686:187288 -k1,13904:11795083,12512686:187287 -k1,13904:13588657,12512686:187287 -k1,13904:15075523,12512686:187287 -k1,13904:15922103,12512686:187288 -h1,13904:15922103,12512686:0,0,0 -k1,13904:16711666,12512686:187287 -k1,13904:17890513,12512686:187287 -k1,13904:19764697,12512686:187287 -k1,13904:20696473,12512686:187287 -k1,13904:22379293,12512686:187288 -k1,13904:23723290,12512686:187287 -k1,13904:25423148,12512686:187287 -k1,13904:27232451,12512686:187287 -k1,13904:28167505,12512686:187288 -k1,13904:30760619,12512686:187287 -k1,13904:31563944,12512686:187287 -k1,13904:32583029,12512686:0 -) -(1,13905:6630773,13354174:25952256,513147,134348 -g1,13904:7863505,13354174 -g1,13904:8722026,13354174 -g1,13904:10908962,13354174 -g1,13904:14155615,13354174 -g1,13904:15041006,13354174 -g1,13904:16010938,13354174 -g1,13904:19650152,13354174 -g1,13904:22022555,13354174 -g1,13904:22837822,13354174 -(1,13904:22837822,13354174:0,414482,115847 -r1,14065:23196088,13354174:358266,530329,115847 -k1,13904:22837822,13354174:-358266 -) -(1,13904:22837822,13354174:358266,414482,115847 -g1,13904:23192811,13354174 -h1,13904:23192811,13354174:0,411205,112570 -) -g1,13904:23395317,13354174 -g1,13904:24126043,13354174 -g1,13904:28296754,13354174 -k1,13905:32583029,13354174:571039 -g1,13905:32583029,13354174 -) -v1,13907:6630773,14544640:0,393216,0 -(1,13926:6630773,19469889:25952256,5318465,196608 -g1,13926:6630773,19469889 -g1,13926:6630773,19469889 -g1,13926:6434165,19469889 -(1,13926:6434165,19469889:0,5318465,196608 -r1,14065:32779637,19469889:26345472,5515073,196608 -k1,13926:6434165,19469889:-26345472 -) -(1,13926:6434165,19469889:26345472,5318465,196608 -[1,13926:6630773,19469889:25952256,5121857,0 -(1,13909:6630773,14752258:25952256,404226,101187 -(1,13908:6630773,14752258:0,0,0 -g1,13908:6630773,14752258 -g1,13908:6630773,14752258 -g1,13908:6303093,14752258 -(1,13908:6303093,14752258:0,0,0 -) -g1,13908:6630773,14752258 -) -k1,13909:6630773,14752258:0 -g1,13909:9159939,14752258 -g1,13909:9792231,14752258 -g1,13909:10424523,14752258 -h1,13909:11056814,14752258:0,0,0 -k1,13909:32583030,14752258:21526216 -g1,13909:32583030,14752258 -) -(1,13913:6630773,15418436:25952256,410518,76021 -(1,13911:6630773,15418436:0,0,0 -g1,13911:6630773,15418436 -g1,13911:6630773,15418436 -g1,13911:6303093,15418436 -(1,13911:6303093,15418436:0,0,0 -) -g1,13911:6630773,15418436 -) -g1,13913:7579210,15418436 -g1,13913:8843793,15418436 -h1,13913:11689104,15418436:0,0,0 -k1,13913:32583028,15418436:20893924 -g1,13913:32583028,15418436 -) -(1,13915:6630773,16739974:25952256,404226,101187 -(1,13914:6630773,16739974:0,0,0 -g1,13914:6630773,16739974 -g1,13914:6630773,16739974 -g1,13914:6303093,16739974 -(1,13914:6303093,16739974:0,0,0 -) -g1,13914:6630773,16739974 -) -k1,13915:6630773,16739974:0 -g1,13915:8843794,16739974 -g1,13915:9476086,16739974 -g1,13915:10108378,16739974 -h1,13915:10740669,16739974:0,0,0 -k1,13915:32583029,16739974:21842360 -g1,13915:32583029,16739974 -) -(1,13919:6630773,17406152:25952256,404226,76021 -(1,13917:6630773,17406152:0,0,0 -g1,13917:6630773,17406152 -g1,13917:6630773,17406152 -g1,13917:6303093,17406152 -(1,13917:6303093,17406152:0,0,0 -) -g1,13917:6630773,17406152 -) -g1,13919:7579210,17406152 -g1,13919:8843793,17406152 -h1,13919:10740667,17406152:0,0,0 -k1,13919:32583029,17406152:21842362 -g1,13919:32583029,17406152 -) -(1,13921:6630773,18727690:25952256,404226,101187 -(1,13920:6630773,18727690:0,0,0 -g1,13920:6630773,18727690 -g1,13920:6630773,18727690 -g1,13920:6303093,18727690 -(1,13920:6303093,18727690:0,0,0 -) -g1,13920:6630773,18727690 -) -k1,13921:6630773,18727690:0 -g1,13921:12005251,18727690 -g1,13921:12637543,18727690 -g1,13921:13269835,18727690 -h1,13921:13902126,18727690:0,0,0 -k1,13921:32583030,18727690:18680904 -g1,13921:32583030,18727690 -) -(1,13925:6630773,19393868:25952256,404226,76021 -(1,13923:6630773,19393868:0,0,0 -g1,13923:6630773,19393868 -g1,13923:6630773,19393868 -g1,13923:6303093,19393868 -(1,13923:6303093,19393868:0,0,0 -) -g1,13923:6630773,19393868 -) -g1,13925:7579210,19393868 -g1,13925:8843793,19393868 -h1,13925:10424521,19393868:0,0,0 -k1,13925:32583029,19393868:22158508 -g1,13925:32583029,19393868 -) -] -) -g1,13926:32583029,19469889 -g1,13926:6630773,19469889 -g1,13926:6630773,19469889 -g1,13926:32583029,19469889 -g1,13926:32583029,19469889 -) -h1,13926:6630773,19666497:0,0,0 -v1,13930:6630773,21556561:0,393216,0 -(1,14065:6630773,42015556:25952256,20852211,0 -g1,14065:6630773,42015556 -g1,14065:6303093,42015556 -r1,14065:6401397,42015556:98304,20852211,0 -g1,14065:6600626,42015556 -g1,14065:6797234,42015556 -[1,14065:6797234,42015556:25785795,20852211,0 -(1,13931:6797234,21918634:25785795,755289,196608 -(1,13930:6797234,21918634:0,755289,196608 -r1,14065:8134168,21918634:1336934,951897,196608 -k1,13930:6797234,21918634:-1336934 -) -(1,13930:6797234,21918634:1336934,755289,196608 -) -k1,13930:8303606,21918634:169438 -k1,13930:8631286,21918634:327680 -k1,13930:10517767,21918634:169438 -k1,13930:12804673,21918634:169438 -k1,13930:13641267,21918634:169438 -k1,13930:14225519,21918634:169409 -k1,13930:17268711,21918634:169438 -k1,13930:18542431,21918634:169438 -k1,13930:19459635,21918634:169438 -k1,13930:22838371,21918634:169438 -k1,13930:23623847,21918634:169438 -k1,13930:26799421,21918634:169438 -k1,13930:29303907,21918634:169438 -k1,13930:30823387,21918634:169438 -k1,13930:32583029,21918634:0 -) -(1,13931:6797234,22760122:25785795,513147,134348 -k1,13930:7651659,22760122:195133 -k1,13930:11716039,22760122:195134 -k1,13930:12902732,22760122:195133 -k1,13930:15727825,22760122:195133 -k1,13930:16870610,22760122:195134 -k1,13930:20113167,22760122:195133 -k1,13930:21126189,22760122:195133 -k1,13930:22715274,22760122:195134 -k1,13930:24612377,22760122:195133 -k1,13930:27213992,22760122:195133 -k1,13930:29415183,22760122:195134 -k1,13930:31900144,22760122:195133 -k1,13930:32583029,22760122:0 -) -(1,13931:6797234,23601610:25785795,513147,134348 -k1,13930:9318498,23601610:213086 -k1,13930:10190875,23601610:213085 -k1,13930:12417227,23601610:213086 -k1,13930:14050477,23601610:213085 -k1,13930:15255123,23601610:213086 -k1,13930:17008304,23601610:213085 -k1,13930:18412835,23601610:213086 -k1,13930:19730202,23601610:213085 -k1,13930:20691054,23601610:213086 -k1,13930:23254260,23601610:213085 -k1,13930:24861297,23601610:213086 -k1,13930:26093467,23601610:213085 -k1,13930:27861722,23601610:213086 -k1,13930:31955194,23601610:213085 -k1,13930:32583029,23601610:0 -) -(1,13931:6797234,24443098:25785795,513147,134348 -k1,13930:7965539,24443098:149220 -k1,13930:9481841,24443098:149221 -k1,13930:10290353,24443098:149220 -k1,13930:13313328,24443098:149221 -k1,13930:15117332,24443098:149220 -k1,13930:15798050,24443098:149221 -k1,13930:16717973,24443098:149220 -k1,13930:20094187,24443098:149221 -k1,13930:21672747,24443098:149220 -k1,13930:22481260,24443098:149221 -k1,13930:26073086,24443098:149220 -k1,13930:26578166,24443098:149220 -k1,13930:29270839,24443098:149221 -k1,13930:32583029,24443098:0 -) -(1,13931:6797234,25284586:25785795,505283,126483 -g1,13930:7352323,25284586 -g1,13930:9539259,25284586 -g1,13930:11132439,25284586 -g1,13930:12141038,25284586 -g1,13930:16105966,25284586 -g1,13930:18148067,25284586 -g1,13930:19156666,25284586 -g1,13930:20144293,25284586 -k1,13931:32583029,25284586:11231563 -g1,13931:32583029,25284586 -) -(1,13933:6797234,26126074:25785795,513147,134348 -h1,13932:6797234,26126074:983040,0,0 -k1,13932:8898051,26126074:215346 -k1,13932:11719764,26126074:215346 -k1,13932:13894636,26126074:215346 -k1,13932:14769274,26126074:215346 -k1,13932:16539789,26126074:215346 -(1,13932:16539789,26126074:0,459977,115847 -r1,14065:19008326,26126074:2468537,575824,115847 -k1,13932:16539789,26126074:-2468537 -) -(1,13932:16539789,26126074:2468537,459977,115847 -k1,13932:16539789,26126074:3277 -h1,13932:19005049,26126074:0,411205,112570 -) -k1,13932:19223672,26126074:215346 -k1,13932:20543300,26126074:215346 -k1,13932:21506411,26126074:215345 -k1,13932:24071878,26126074:215346 -k1,13932:25048752,26126074:215346 -k1,13932:25619958,26126074:215346 -k1,13932:26934998,26126074:215346 -k1,13932:27801772,26126074:215346 -(1,13932:27801772,26126074:0,459977,115847 -r1,14065:30973732,26126074:3171960,575824,115847 -k1,13932:27801772,26126074:-3171960 -) -(1,13932:27801772,26126074:3171960,459977,115847 -k1,13932:27801772,26126074:3277 -h1,13932:30970455,26126074:0,411205,112570 -) -k1,13932:31189078,26126074:215346 -k1,13932:32583029,26126074:0 -) -(1,13933:6797234,26967562:25785795,513147,134348 -k1,13932:7830690,26967562:224086 -k1,13932:11631077,26967562:224087 -k1,13932:14623404,26967562:224086 -k1,13932:15533652,26967562:224086 -k1,13932:16113598,26967562:224086 -k1,13932:18957814,26967562:224087 -k1,13932:21159777,26967562:224086 -k1,13932:22043155,26967562:224086 -k1,13932:24280508,26967562:224087 -k1,13932:25924759,26967562:224086 -k1,13932:26680342,26967562:224086 -k1,13932:29254549,26967562:224086 -k1,13932:30240164,26967562:224087 -k1,13932:31483335,26967562:224086 -k1,13933:32583029,26967562:0 -) -(1,13933:6797234,27809050:25785795,505283,134348 -(1,13932:6797234,27809050:0,452978,115847 -r1,14065:9969194,27809050:3171960,568825,115847 -k1,13932:6797234,27809050:-3171960 -) -(1,13932:6797234,27809050:3171960,452978,115847 -k1,13932:6797234,27809050:3277 -h1,13932:9965917,27809050:0,411205,112570 -) -k1,13932:10301351,27809050:158487 -k1,13932:11656524,27809050:158486 -k1,13932:13136872,27809050:158487 -k1,13932:17050571,27809050:158486 -k1,13932:18448999,27809050:158487 -k1,13932:21793845,27809050:158486 -k1,13932:22568370,27809050:158487 -k1,13932:23745942,27809050:158487 -k1,13932:25400615,27809050:158486 -k1,13932:27427533,27809050:158487 -k1,13932:30046896,27809050:158486 -k1,13932:30976086,27809050:158487 -k1,13932:32583029,27809050:0 -) -(1,13933:6797234,28650538:25785795,513147,134348 -k1,13932:7752230,28650538:268834 -k1,13932:9040148,28650538:268833 -k1,13932:12381310,28650538:268834 -k1,13932:14855431,28650538:268834 -k1,13932:15775692,28650538:268833 -(1,13932:15775692,28650538:0,452978,115847 -r1,14065:21409635,28650538:5633943,568825,115847 -k1,13932:15775692,28650538:-5633943 -) -(1,13932:15775692,28650538:5633943,452978,115847 -k1,13932:15775692,28650538:3277 -h1,13932:21406358,28650538:0,411205,112570 -) -k1,13932:21678469,28650538:268834 -k1,13932:22478799,28650538:268833 -k1,13932:23406925,28650538:268834 -k1,13932:25689025,28650538:268834 -k1,13932:27551694,28650538:268833 -k1,13932:29408465,28650538:268834 -k1,13932:32583029,28650538:0 -) -(1,13933:6797234,29492026:25785795,513147,134348 -k1,13932:7570020,29492026:241289 -k1,13932:8877580,29492026:241289 -k1,13932:12399601,29492026:241289 -k1,13932:14034841,29492026:241289 -(1,13932:14034841,29492026:0,452978,115847 -r1,14065:16503378,29492026:2468537,568825,115847 -k1,13932:14034841,29492026:-2468537 -) -(1,13932:14034841,29492026:2468537,452978,115847 -k1,13932:14034841,29492026:3277 -h1,13932:16500101,29492026:0,411205,112570 -) -k1,13932:16744667,29492026:241289 -k1,13932:19294134,29492026:241289 -k1,13932:20194714,29492026:241288 -k1,13932:22449269,29492026:241289 -k1,13932:24284394,29492026:241289 -k1,13932:25550666,29492026:241289 -k1,13932:26739606,29492026:241289 -k1,13932:29642312,29492026:241289 -k1,13932:30902686,29492026:241289 -k1,13932:32583029,29492026:0 -) -(1,13933:6797234,30333514:25785795,505283,126483 -g1,13932:9775190,30333514 -g1,13932:10735947,30333514 -(1,13932:10735947,30333514:0,459977,115847 -r1,14065:17776738,30333514:7040791,575824,115847 -k1,13932:10735947,30333514:-7040791 -) -(1,13932:10735947,30333514:7040791,459977,115847 -k1,13932:10735947,30333514:3277 -h1,13932:17773461,30333514:0,411205,112570 -) -k1,13933:32583029,30333514:14425527 -g1,13933:32583029,30333514 -) -v1,13935:6797234,31523980:0,393216,0 -(1,13957:6797234,37802225:25785795,6671461,196608 -g1,13957:6797234,37802225 -g1,13957:6797234,37802225 -g1,13957:6600626,37802225 -(1,13957:6600626,37802225:0,6671461,196608 -r1,14065:32779637,37802225:26179011,6868069,196608 -k1,13957:6600625,37802225:-26179012 -) -(1,13957:6600626,37802225:26179011,6671461,196608 -[1,13957:6797234,37802225:25785795,6474853,0 -(1,13937:6797234,31737890:25785795,410518,76021 -(1,13936:6797234,31737890:0,0,0 -g1,13936:6797234,31737890 -g1,13936:6797234,31737890 -g1,13936:6469554,31737890 -(1,13936:6469554,31737890:0,0,0 -) -g1,13936:6797234,31737890 -) -k1,13937:6797234,31737890:0 -k1,13937:6797234,31737890:0 -h1,13937:11855565,31737890:0,0,0 -k1,13937:32583029,31737890:20727464 -g1,13937:32583029,31737890 -) -(1,13941:6797234,32404068:25785795,410518,76021 -(1,13939:6797234,32404068:0,0,0 -g1,13939:6797234,32404068 -g1,13939:6797234,32404068 -g1,13939:6469554,32404068 -(1,13939:6469554,32404068:0,0,0 -) -g1,13939:6797234,32404068 -) -g1,13941:7745671,32404068 -g1,13941:9010254,32404068 -h1,13941:11855565,32404068:0,0,0 -k1,13941:32583029,32404068:20727464 -g1,13941:32583029,32404068 -) -(1,13943:6797234,33725606:25785795,410518,76021 -(1,13942:6797234,33725606:0,0,0 -g1,13942:6797234,33725606 -g1,13942:6797234,33725606 -g1,13942:6469554,33725606 -(1,13942:6469554,33725606:0,0,0 -) -g1,13942:6797234,33725606 -) -k1,13943:6797234,33725606:0 -k1,13943:6797234,33725606:0 -h1,13943:11539420,33725606:0,0,0 -k1,13943:32583028,33725606:21043608 -g1,13943:32583028,33725606 -) -(1,13947:6797234,34391784:25785795,404226,76021 -(1,13945:6797234,34391784:0,0,0 -g1,13945:6797234,34391784 -g1,13945:6797234,34391784 -g1,13945:6469554,34391784 -(1,13945:6469554,34391784:0,0,0 -) -g1,13945:6797234,34391784 -) -g1,13947:7745671,34391784 -g1,13947:9010254,34391784 -h1,13947:10907128,34391784:0,0,0 -k1,13947:32583028,34391784:21675900 -g1,13947:32583028,34391784 -) -(1,13949:6797234,35713322:25785795,410518,107478 -(1,13948:6797234,35713322:0,0,0 -g1,13948:6797234,35713322 -g1,13948:6797234,35713322 -g1,13948:6469554,35713322 -(1,13948:6469554,35713322:0,0,0 -) -g1,13948:6797234,35713322 -) -k1,13949:6797234,35713322:0 -k1,13949:6797234,35713322:0 -h1,13949:12171711,35713322:0,0,0 -k1,13949:32583029,35713322:20411318 -g1,13949:32583029,35713322 -) -(1,13953:6797234,36379500:25785795,404226,76021 -(1,13951:6797234,36379500:0,0,0 -g1,13951:6797234,36379500 -g1,13951:6797234,36379500 -g1,13951:6469554,36379500 -(1,13951:6469554,36379500:0,0,0 -) -g1,13951:6797234,36379500 -) -g1,13953:7745671,36379500 -g1,13953:9010254,36379500 -h1,13953:9326400,36379500:0,0,0 -k1,13953:32583028,36379500:23256628 -g1,13953:32583028,36379500 -) -(1,13955:6797234,37701038:25785795,410518,101187 -(1,13954:6797234,37701038:0,0,0 -g1,13954:6797234,37701038 -g1,13954:6797234,37701038 -g1,13954:6469554,37701038 -(1,13954:6469554,37701038:0,0,0 -) -g1,13954:6797234,37701038 -) -g1,13955:7429526,37701038 -k1,13955:7429526,37701038:0 -h1,13955:15333168,37701038:0,0,0 -k1,13955:32583028,37701038:17249860 -g1,13955:32583028,37701038 -) -] -) -g1,13957:32583029,37802225 -g1,13957:6797234,37802225 -g1,13957:6797234,37802225 -g1,13957:32583029,37802225 -g1,13957:32583029,37802225 -) -h1,13957:6797234,37998833:0,0,0 -(1,13961:6797234,39364609:25785795,513147,134348 -h1,13960:6797234,39364609:983040,0,0 -k1,13960:8479330,39364609:211468 -k1,13960:10678518,39364609:211481 -k1,13960:13433450,39364609:211480 -k1,13960:16957121,39364609:211481 -k1,13960:17524461,39364609:211480 -k1,13960:19723649,39364609:211481 -k1,13960:21329080,39364609:211480 -k1,13960:22349931,39364609:211481 -k1,13960:26327110,39364609:211480 -k1,13960:28381463,39364609:211481 -k1,13960:29402313,39364609:211480 -k1,13960:30632879,39364609:211481 -k1,13960:32051532,39364609:211480 -k1,13960:32583029,39364609:0 -) -(1,13961:6797234,40206097:25785795,513147,134348 -k1,13960:10439695,40206097:143494 -k1,13960:12589246,40206097:143494 -k1,13960:14199435,40206097:143493 -k1,13960:14808890,40206097:143494 -k1,13960:15410481,40206097:143494 -k1,13960:16085472,40206097:143494 -k1,13960:16584826,40206097:143494 -k1,13960:18268415,40206097:143493 -k1,13960:20371435,40206097:143494 -k1,13960:21174221,40206097:143494 -k1,13960:22872884,40206097:143494 -(1,13960:22872884,40206097:0,459977,115847 -r1,14065:25341421,40206097:2468537,575824,115847 -k1,13960:22872884,40206097:-2468537 -) -(1,13960:22872884,40206097:2468537,459977,115847 -k1,13960:22872884,40206097:3277 -h1,13960:25338144,40206097:0,411205,112570 -) -k1,13960:25484915,40206097:143494 -k1,13960:26993523,40206097:143493 -k1,13960:28727576,40206097:143494 -k1,13960:29937341,40206097:143494 -k1,13960:32583029,40206097:0 -) -(1,13961:6797234,41047585:25785795,505283,134348 -k1,13960:8783259,41047585:211310 -h1,13960:8783259,41047585:0,0,0 -k1,13960:9597585,41047585:419144 -k1,13960:10411912,41047585:419145 -k1,13960:11018404,41047585:211310 -k1,13960:14229296,41047585:211309 -k1,13960:14796466,41047585:211310 -k1,13960:16995483,41047585:211310 -k1,13960:18600743,41047585:211309 -k1,13960:20187654,41047585:211310 -k1,13960:21169666,41047585:211309 -k1,13960:24248176,41047585:211310 -k1,13960:28025300,41047585:211310 -$1,13960:28025300,41047585 -k1,13960:28692123,41047585:204139 -k1,13960:29464459,41047585:204139 -[1,13960:29464459,41047585:502661,458096,7864 -(1,13960:29935006,41039721:0,450232,0 -) -(1,13960:29464459,41047585:502661,355205,7864 -) -] -$1,13960:29967120,41047585 -k1,13960:30559194,41047585:211310 -h1,13960:30559194,41047585:0,0,0 -k1,13960:31373520,41047585:419144 -k1,13960:32187847,41047585:419145 -k1,13960:32583029,41047585:0 -) -(1,13961:6797234,41889073:25785795,513147,126483 -k1,13960:7678228,41889073:198109 -k1,13960:8664735,41889073:198109 -k1,13960:12167826,41889073:198110 -h1,13960:12167826,41889073:0,0,0 -k1,13960:12955968,41889073:392960 -k1,13960:13744111,41889073:392961 -k1,13960:14906254,41889073:198109 -k1,13960:18103946,41889073:198109 -k1,13960:19072759,41889073:198110 -k1,13960:21276925,41889073:198109 -k1,13960:23462741,41889073:198109 -k1,13960:24945356,41889073:198109 -k1,13960:27314017,41889073:198109 -k1,13960:28259893,41889073:198110 -k1,13960:30170458,41889073:198109 -k1,13960:31019995,41889073:198109 -k1,13961:32583029,41889073:0 -k1,13961:32583029,41889073:0 -) -] -g1,14065:32583029,42015556 -) -] -(1,14065:32583029,45706769:0,0,0 -g1,14065:32583029,45706769 -) -) -] -(1,14065:6630773,47279633:25952256,0,0 -h1,14065:6630773,47279633:25952256,0,0 -) -] -(1,14065:4262630,4025873:0,0,0 -[1,14065:-473656,4025873:0,0,0 -(1,14065:-473656,-710413:0,0,0 -(1,14065:-473656,-710413:0,0,0 -g1,14065:-473656,-710413 -) -g1,14065:-473656,-710413 -) -] -) -] -!24346 -}238 -Input:2139:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2140:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2141:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2142:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!388 -{239 -[1,14068:4262630,47279633:28320399,43253760,0 -(1,14068:4262630,4025873:0,0,0 -[1,14068:-473656,4025873:0,0,0 -(1,14068:-473656,-710413:0,0,0 -(1,14068:-473656,-644877:0,0,0 -k1,14068:-473656,-644877:-65536 +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,13623:37855564,2439708:1179648,16384,0 ) -(1,14068:-473656,4736287:0,0,0 -k1,14068:-473656,4736287:5209943 ) -g1,14068:-473656,-710413 +k1,13623:3078556,2439708:-34777008 ) ] +[1,13623:3078558,4812305:0,0,0 +(1,13623:3078558,49800853:0,16384,2228224 +k1,13623:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,13623:2537886,49800853:1179648,16384,0 ) -[1,14068:6630773,47279633:25952256,43253760,0 -[1,14068:6630773,4812305:25952256,786432,0 -(1,14068:6630773,4812305:25952256,513147,126483 -(1,14068:6630773,4812305:25952256,513147,126483 -g1,14068:3078558,4812305 -[1,14068:3078558,4812305:0,0,0 -(1,14068:3078558,2439708:0,1703936,0 -k1,14068:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,14068:2537886,2439708:1179648,16384,0 -) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,14068:3078558,1915420:16384,1179648,0 +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,13623:3078558,51504789:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 +) +] +) +) +) +] +[1,13623:3078558,4812305:0,0,0 +(1,13623:3078558,49800853:0,16384,2228224 +g1,13623:29030814,49800853 +g1,13623:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,13623:36151628,51504789:16384,1179648,0 +) +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 +) +] +) +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,13623:37855564,49800853:1179648,16384,0 +) +) +k1,13623:3078556,49800853:-34777008 +) +] +g1,13623:6630773,4812305 +g1,13623:6630773,4812305 +g1,13623:8843268,4812305 +g1,13623:10880782,4812305 +g1,13623:13281365,4812305 +k1,13623:31387653,4812305:18106288 +) +) +] +[1,13623:6630773,45706769:25952256,40108032,0 +(1,13623:6630773,45706769:25952256,40108032,0 +(1,13623:6630773,45706769:0,0,0 +g1,13623:6630773,45706769 +) +[1,13623:6630773,45706769:25952256,40108032,0 +v1,13594:6630773,6254097:0,393216,0 +(1,13594:6630773,31505098:25952256,25644217,196608 +g1,13594:6630773,31505098 +g1,13594:6630773,31505098 +g1,13594:6434165,31505098 +(1,13594:6434165,31505098:0,25644217,196608 +r1,13623:32779637,31505098:26345472,25840825,196608 +k1,13594:6434165,31505098:-26345472 +) +(1,13594:6434165,31505098:26345472,25644217,196608 +[1,13594:6630773,31505098:25952256,25447609,0 +(1,13570:6630773,6481928:25952256,424439,106246 +h1,13570:6630773,6481928:0,0,0 +g1,13570:7626635,6481928 +g1,13570:9286405,6481928 +g1,13570:9950313,6481928 +g1,13570:11942037,6481928 +g1,13570:12605945,6481928 +h1,13570:15925484,6481928:0,0,0 +k1,13570:32583029,6481928:16657545 +g1,13570:32583029,6481928 +) +(1,13570:6630773,7166783:25952256,398014,0 +h1,13570:6630773,7166783:0,0,0 +h1,13570:7294681,7166783:0,0,0 +k1,13570:32583029,7166783:25288348 +g1,13570:32583029,7166783 +) +(1,13570:6630773,7851638:25952256,431045,106246 +h1,13570:6630773,7851638:0,0,0 +g1,13570:7626635,7851638 +g1,13570:7958589,7851638 +g1,13570:8290543,7851638 +g1,13570:8622497,7851638 +g1,13570:8954451,7851638 +g1,13570:9286405,7851638 +g1,13570:9618359,7851638 +g1,13570:9950313,7851638 +g1,13570:10282267,7851638 +g1,13570:10614221,7851638 +g1,13570:10946175,7851638 +g1,13570:11278129,7851638 +g1,13570:11610083,7851638 +g1,13570:11942037,7851638 +g1,13570:12937899,7851638 +g1,13570:14265715,7851638 +g1,13570:15261577,7851638 +g1,13570:16257439,7851638 +g1,13570:16589393,7851638 +g1,13570:16921347,7851638 +g1,13570:18249163,7851638 +g1,13570:18581117,7851638 +g1,13570:18913071,7851638 +g1,13570:19245025,7851638 +h1,13570:20240887,7851638:0,0,0 +k1,13570:32583029,7851638:12342142 +g1,13570:32583029,7851638 +) +(1,13570:6630773,8536493:25952256,424439,106246 +h1,13570:6630773,8536493:0,0,0 +g1,13570:7626635,8536493 +g1,13570:8290543,8536493 +g1,13570:10282267,8536493 +g1,13570:10614221,8536493 +g1,13570:10946175,8536493 +g1,13570:11278129,8536493 +g1,13570:11610083,8536493 +g1,13570:11942037,8536493 +g1,13570:12273991,8536493 +g1,13570:12937899,8536493 +g1,13570:13269853,8536493 +g1,13570:13601807,8536493 +g1,13570:13933761,8536493 +g1,13570:14265715,8536493 +g1,13570:16257439,8536493 +g1,13570:18249163,8536493 +h1,13570:20240887,8536493:0,0,0 +k1,13570:32583029,8536493:12342142 +g1,13570:32583029,8536493 +) +(1,13570:6630773,9221348:25952256,407923,9908 +h1,13570:6630773,9221348:0,0,0 +g1,13570:7626635,9221348 +g1,13570:9950313,9221348 +g1,13570:10282267,9221348 +g1,13570:10614221,9221348 +g1,13570:10946175,9221348 +g1,13570:11278129,9221348 +g1,13570:11610083,9221348 +g1,13570:11942037,9221348 +g1,13570:12273991,9221348 +g1,13570:12605945,9221348 +g1,13570:12937899,9221348 +g1,13570:13269853,9221348 +g1,13570:13601807,9221348 +g1,13570:13933761,9221348 +g1,13570:14265715,9221348 +g1,13570:14597669,9221348 +g1,13570:14929623,9221348 +g1,13570:15261577,9221348 +g1,13570:15593531,9221348 +g1,13570:15925485,9221348 +g1,13570:16257439,9221348 +g1,13570:18249163,9221348 +h1,13570:20240887,9221348:0,0,0 +k1,13570:32583029,9221348:12342142 +g1,13570:32583029,9221348 +) +(1,13570:6630773,9906203:25952256,424439,106246 +h1,13570:6630773,9906203:0,0,0 +g1,13570:7626635,9906203 +g1,13570:8290543,9906203 +g1,13570:11942036,9906203 +g1,13570:12273990,9906203 +g1,13570:12937898,9906203 +g1,13570:13269852,9906203 +g1,13570:13601806,9906203 +g1,13570:13933760,9906203 +g1,13570:16257438,9906203 +g1,13570:18249162,9906203 +h1,13570:20240886,9906203:0,0,0 +k1,13570:32583029,9906203:12342143 +g1,13570:32583029,9906203 +) +(1,13570:6630773,10591058:25952256,424439,106246 +h1,13570:6630773,10591058:0,0,0 +g1,13570:7626635,10591058 +g1,13570:8290543,10591058 +g1,13570:11942036,10591058 +g1,13570:12273990,10591058 +g1,13570:12937898,10591058 +g1,13570:13269852,10591058 +g1,13570:13601806,10591058 +g1,13570:13933760,10591058 +g1,13570:16257438,10591058 +g1,13570:18249162,10591058 +h1,13570:20240886,10591058:0,0,0 +k1,13570:32583029,10591058:12342143 +g1,13570:32583029,10591058 +) +(1,13570:6630773,11275913:25952256,424439,106246 +h1,13570:6630773,11275913:0,0,0 +g1,13570:7626635,11275913 +g1,13570:8290543,11275913 +g1,13570:11942036,11275913 +g1,13570:12273990,11275913 +g1,13570:12937898,11275913 +g1,13570:13269852,11275913 +g1,13570:13601806,11275913 +g1,13570:13933760,11275913 +g1,13570:16257438,11275913 +g1,13570:18249162,11275913 +h1,13570:20240886,11275913:0,0,0 +k1,13570:32583029,11275913:12342143 +g1,13570:32583029,11275913 +) +(1,13570:6630773,11960768:25952256,398014,0 +h1,13570:6630773,11960768:0,0,0 +h1,13570:7294681,11960768:0,0,0 +k1,13570:32583029,11960768:25288348 +g1,13570:32583029,11960768 +) +(1,13570:6630773,12645623:25952256,407923,106246 +h1,13570:6630773,12645623:0,0,0 +g1,13570:7626635,12645623 +g1,13570:9618359,12645623 +g1,13570:9950313,12645623 +h1,13570:13269852,12645623:0,0,0 +k1,13570:32583028,12645623:19313176 +g1,13570:32583028,12645623 +) +(1,13570:6630773,13330478:25952256,424439,106246 +h1,13570:6630773,13330478:0,0,0 +g1,13570:7626635,13330478 +g1,13570:9286405,13330478 +g1,13570:9950313,13330478 +h1,13570:13269852,13330478:0,0,0 +k1,13570:32583028,13330478:19313176 +g1,13570:32583028,13330478 +) +(1,13570:6630773,14015333:25952256,398014,0 +h1,13570:6630773,14015333:0,0,0 +h1,13570:7294681,14015333:0,0,0 +k1,13570:32583029,14015333:25288348 +g1,13570:32583029,14015333 +) +(1,13570:6630773,14700188:25952256,431045,106246 +h1,13570:6630773,14700188:0,0,0 +g1,13570:7626635,14700188 +g1,13570:7958589,14700188 +g1,13570:8290543,14700188 +g1,13570:8622497,14700188 +g1,13570:8954451,14700188 +g1,13570:9286405,14700188 +g1,13570:9618359,14700188 +g1,13570:9950313,14700188 +g1,13570:10282267,14700188 +g1,13570:10614221,14700188 +g1,13570:10946175,14700188 +g1,13570:11278129,14700188 +g1,13570:11610083,14700188 +g1,13570:11942037,14700188 +g1,13570:12937899,14700188 +g1,13570:14265715,14700188 +g1,13570:15261577,14700188 +g1,13570:16257439,14700188 +g1,13570:16589393,14700188 +g1,13570:16921347,14700188 +g1,13570:18249163,14700188 +g1,13570:18581117,14700188 +g1,13570:18913071,14700188 +g1,13570:19245025,14700188 +h1,13570:20240887,14700188:0,0,0 +k1,13570:32583029,14700188:12342142 +g1,13570:32583029,14700188 +) +(1,13570:6630773,15385043:25952256,407923,9908 +h1,13570:6630773,15385043:0,0,0 +g1,13570:7626635,15385043 +g1,13570:9950313,15385043 +g1,13570:10282267,15385043 +g1,13570:10614221,15385043 +g1,13570:10946175,15385043 +g1,13570:11278129,15385043 +g1,13570:11610083,15385043 +g1,13570:11942037,15385043 +g1,13570:12273991,15385043 +g1,13570:12605945,15385043 +g1,13570:12937899,15385043 +g1,13570:13269853,15385043 +g1,13570:13601807,15385043 +g1,13570:13933761,15385043 +g1,13570:14265715,15385043 +g1,13570:14597669,15385043 +g1,13570:14929623,15385043 +g1,13570:15261577,15385043 +g1,13570:15593531,15385043 +g1,13570:15925485,15385043 +g1,13570:16257439,15385043 +g1,13570:18249163,15385043 +h1,13570:20240887,15385043:0,0,0 +k1,13570:32583029,15385043:12342142 +g1,13570:32583029,15385043 +) +(1,13570:6630773,16069898:25952256,424439,106246 +h1,13570:6630773,16069898:0,0,0 +g1,13570:7626635,16069898 +g1,13570:8290543,16069898 +g1,13570:10282267,16069898 +g1,13570:10614221,16069898 +g1,13570:10946175,16069898 +g1,13570:11278129,16069898 +g1,13570:11610083,16069898 +g1,13570:11942037,16069898 +g1,13570:12273991,16069898 +g1,13570:12937899,16069898 +g1,13570:13269853,16069898 +g1,13570:13601807,16069898 +g1,13570:13933761,16069898 +g1,13570:14265715,16069898 +g1,13570:14597669,16069898 +g1,13570:16257439,16069898 +g1,13570:18249163,16069898 +h1,13570:20240887,16069898:0,0,0 +k1,13570:32583029,16069898:12342142 +g1,13570:32583029,16069898 +) +(1,13570:6630773,16754753:25952256,424439,106246 +h1,13570:6630773,16754753:0,0,0 +g1,13570:7626635,16754753 +g1,13570:8290543,16754753 +g1,13570:11942036,16754753 +g1,13570:12273990,16754753 +g1,13570:12937898,16754753 +g1,13570:13269852,16754753 +g1,13570:13601806,16754753 +g1,13570:13933760,16754753 +g1,13570:14265714,16754753 +g1,13570:14597668,16754753 +g1,13570:14929622,16754753 +g1,13570:16257438,16754753 +g1,13570:18249162,16754753 +h1,13570:20240886,16754753:0,0,0 +k1,13570:32583029,16754753:12342143 +g1,13570:32583029,16754753 +) +(1,13570:6630773,17439608:25952256,424439,106246 +h1,13570:6630773,17439608:0,0,0 +g1,13570:7626635,17439608 +g1,13570:8290543,17439608 +g1,13570:11942036,17439608 +g1,13570:12273990,17439608 +g1,13570:12937898,17439608 +g1,13570:13269852,17439608 +g1,13570:13601806,17439608 +g1,13570:13933760,17439608 +g1,13570:14265714,17439608 +g1,13570:14597668,17439608 +g1,13570:14929622,17439608 +g1,13570:16257438,17439608 +g1,13570:18249162,17439608 +h1,13570:20240886,17439608:0,0,0 +k1,13570:32583029,17439608:12342143 +g1,13570:32583029,17439608 +) +(1,13570:6630773,18124463:25952256,424439,106246 +h1,13570:6630773,18124463:0,0,0 +g1,13570:7626635,18124463 +g1,13570:8290543,18124463 +g1,13570:11942036,18124463 +g1,13570:12273990,18124463 +g1,13570:12937898,18124463 +g1,13570:13269852,18124463 +g1,13570:13601806,18124463 +g1,13570:16257438,18124463 +g1,13570:18249162,18124463 +h1,13570:20240886,18124463:0,0,0 +k1,13570:32583029,18124463:12342143 +g1,13570:32583029,18124463 +) +(1,13572:6630773,18940390:25952256,431045,106246 +(1,13571:6630773,18940390:0,0,0 +g1,13571:6630773,18940390 +g1,13571:6630773,18940390 +g1,13571:6303093,18940390 +(1,13571:6303093,18940390:0,0,0 +) +g1,13571:6630773,18940390 +) +k1,13572:6630773,18940390:0 +h1,13572:10946175,18940390:0,0,0 +k1,13572:32583029,18940390:21636854 +g1,13572:32583029,18940390 +) +(1,13593:6630773,19756317:25952256,398014,0 +(1,13574:6630773,19756317:0,0,0 +g1,13574:6630773,19756317 +g1,13574:6630773,19756317 +g1,13574:6303093,19756317 +(1,13574:6303093,19756317:0,0,0 +) +g1,13574:6630773,19756317 +) +h1,13593:7294681,19756317:0,0,0 +k1,13593:32583029,19756317:25288348 +g1,13593:32583029,19756317 +) +(1,13593:6630773,20441172:25952256,424439,8257 +h1,13593:6630773,20441172:0,0,0 +g1,13593:7626635,20441172 +h1,13593:9286405,20441172:0,0,0 +k1,13593:32583029,20441172:23296624 +g1,13593:32583029,20441172 +) +(1,13593:6630773,21126027:25952256,431045,106246 +h1,13593:6630773,21126027:0,0,0 +g1,13593:7626635,21126027 +g1,13593:11278128,21126027 +g1,13593:11942036,21126027 +g1,13593:13601806,21126027 +g1,13593:14265714,21126027 +g1,13593:18249161,21126027 +g1,13593:19908931,21126027 +g1,13593:20572839,21126027 +h1,13593:22232609,21126027:0,0,0 +k1,13593:32583029,21126027:10350420 +g1,13593:32583029,21126027 +) +(1,13593:6630773,21810882:25952256,398014,0 +h1,13593:6630773,21810882:0,0,0 +h1,13593:7294681,21810882:0,0,0 +k1,13593:32583029,21810882:25288348 +g1,13593:32583029,21810882 +) +(1,13593:6630773,22495737:25952256,424439,6605 +h1,13593:6630773,22495737:0,0,0 +g1,13593:7626635,22495737 +h1,13593:10946174,22495737:0,0,0 +k1,13593:32583030,22495737:21636856 +g1,13593:32583030,22495737 +) +(1,13593:6630773,23180592:25952256,424439,86428 +h1,13593:6630773,23180592:0,0,0 +g1,13593:7626635,23180592 +g1,13593:7958589,23180592 +g1,13593:8290543,23180592 +g1,13593:8622497,23180592 +g1,13593:8954451,23180592 +g1,13593:10282267,23180592 +g1,13593:10614221,23180592 +g1,13593:10946175,23180592 +g1,13593:11278129,23180592 +g1,13593:11610083,23180592 +g1,13593:11942037,23180592 +g1,13593:12937899,23180592 +g1,13593:13269853,23180592 +g1,13593:15593531,23180592 +g1,13593:15925485,23180592 +g1,13593:16257439,23180592 +g1,13593:16589393,23180592 +g1,13593:16921347,23180592 +g1,13593:17253301,23180592 +g1,13593:18249163,23180592 +g1,13593:18581117,23180592 +g1,13593:18913071,23180592 +g1,13593:19245025,23180592 +g1,13593:19576979,23180592 +h1,13593:20572841,23180592:0,0,0 +k1,13593:32583029,23180592:12010188 +g1,13593:32583029,23180592 +) +(1,13593:6630773,23865447:25952256,407923,9908 +h1,13593:6630773,23865447:0,0,0 +g1,13593:7626635,23865447 +g1,13593:10282267,23865447 +g1,13593:10614221,23865447 +g1,13593:12937899,23865447 +g1,13593:13269853,23865447 +g1,13593:15593531,23865447 +g1,13593:15925485,23865447 +g1,13593:16257439,23865447 +g1,13593:18249163,23865447 +g1,13593:18581117,23865447 +h1,13593:20572841,23865447:0,0,0 +k1,13593:32583029,23865447:12010188 +g1,13593:32583029,23865447 +) +(1,13593:6630773,24550302:25952256,398014,0 +h1,13593:6630773,24550302:0,0,0 +h1,13593:7294681,24550302:0,0,0 +k1,13593:32583029,24550302:25288348 +g1,13593:32583029,24550302 +) +(1,13593:6630773,25235157:25952256,431045,8257 +h1,13593:6630773,25235157:0,0,0 +g1,13593:7626635,25235157 +h1,13593:11942036,25235157:0,0,0 +k1,13593:32583028,25235157:20640992 +g1,13593:32583028,25235157 +) +(1,13593:6630773,25920012:25952256,424439,79822 +h1,13593:6630773,25920012:0,0,0 +g1,13593:7626635,25920012 +g1,13593:7958589,25920012 +g1,13593:8290543,25920012 +g1,13593:8622497,25920012 +g1,13593:8954451,25920012 +g1,13593:9286405,25920012 +g1,13593:9618359,25920012 +g1,13593:9950313,25920012 +g1,13593:10282267,25920012 +g1,13593:10614221,25920012 +g1,13593:10946175,25920012 +g1,13593:11278129,25920012 +g1,13593:11610083,25920012 +g1,13593:14597668,25920012 +g1,13593:16257438,25920012 +g1,13593:18249162,25920012 +g1,13593:18913070,25920012 +g1,13593:20904794,25920012 +k1,13593:20904794,25920012:0 +h1,13593:23560426,25920012:0,0,0 +k1,13593:32583029,25920012:9022603 +g1,13593:32583029,25920012 +) +(1,13593:6630773,26604867:25952256,424439,106246 +h1,13593:6630773,26604867:0,0,0 +g1,13593:7626635,26604867 +g1,13593:11610082,26604867 +g1,13593:11942036,26604867 +g1,13593:14597668,26604867 +g1,13593:14929622,26604867 +g1,13593:15261576,26604867 +g1,13593:15593530,26604867 +g1,13593:18249162,26604867 +g1,13593:18581116,26604867 +g1,13593:18913070,26604867 +g1,13593:20904794,26604867 +g1,13593:21236748,26604867 +g1,13593:21568702,26604867 +g1,13593:23892380,26604867 +h1,13593:24224334,26604867:0,0,0 +k1,13593:32583029,26604867:8358695 +g1,13593:32583029,26604867 +) +(1,13593:6630773,27289722:25952256,424439,106246 +h1,13593:6630773,27289722:0,0,0 +g1,13593:7626635,27289722 +g1,13593:11278128,27289722 +g1,13593:11610082,27289722 +g1,13593:11942036,27289722 +g1,13593:14597668,27289722 +g1,13593:14929622,27289722 +g1,13593:15261576,27289722 +g1,13593:15593530,27289722 +g1,13593:18249162,27289722 +g1,13593:18581116,27289722 +g1,13593:18913070,27289722 +g1,13593:20904794,27289722 +g1,13593:21236748,27289722 +g1,13593:23892380,27289722 +h1,13593:24888242,27289722:0,0,0 +k1,13593:32583029,27289722:7694787 +g1,13593:32583029,27289722 +) +(1,13593:6630773,27974577:25952256,398014,0 +h1,13593:6630773,27974577:0,0,0 +g1,13593:7626635,27974577 +k1,13593:7626635,27974577:0 +h1,13593:8622497,27974577:0,0,0 +k1,13593:32583029,27974577:23960532 +g1,13593:32583029,27974577 +) +(1,13593:6630773,28659432:25952256,431045,112852 +h1,13593:6630773,28659432:0,0,0 +g1,13593:7626635,28659432 +g1,13593:10282267,28659432 +g1,13593:12605945,28659432 +g1,13593:12937899,28659432 +g1,13593:13601807,28659432 +g1,13593:15593531,28659432 +g1,13593:17585255,28659432 +g1,13593:19245025,28659432 +g1,13593:20904795,28659432 +g1,13593:22232611,28659432 +g1,13593:23892381,28659432 +g1,13593:25220197,28659432 +g1,13593:26548013,28659432 +g1,13593:27211921,28659432 +g1,13593:27875829,28659432 +h1,13593:28207783,28659432:0,0,0 +k1,13593:32583029,28659432:4375246 +g1,13593:32583029,28659432 +) +(1,13593:6630773,29344287:25952256,398014,0 +h1,13593:6630773,29344287:0,0,0 +h1,13593:7294681,29344287:0,0,0 +k1,13593:32583029,29344287:25288348 +g1,13593:32583029,29344287 +) +(1,13593:6630773,30029142:25952256,431045,112852 +h1,13593:6630773,30029142:0,0,0 +g1,13593:7626635,30029142 +g1,13593:10614220,30029142 +g1,13593:13601805,30029142 +g1,13593:15925483,30029142 +g1,13593:17917207,30029142 +g1,13593:18913069,30029142 +g1,13593:19908931,30029142 +g1,13593:22564563,30029142 +g1,13593:23560425,30029142 +h1,13593:25884103,30029142:0,0,0 +k1,13593:32583029,30029142:6698926 +g1,13593:32583029,30029142 +) +(1,13593:6630773,30713997:25952256,424439,112852 +h1,13593:6630773,30713997:0,0,0 +g1,13593:7626635,30713997 +g1,13593:10614220,30713997 +g1,13593:14265713,30713997 +g1,13593:14597667,30713997 +g1,13593:19908930,30713997 +g1,13593:23560423,30713997 +g1,13593:23892377,30713997 +h1,13593:25884101,30713997:0,0,0 +k1,13593:32583029,30713997:6698928 +g1,13593:32583029,30713997 +) +(1,13593:6630773,31398852:25952256,424439,106246 +h1,13593:6630773,31398852:0,0,0 +g1,13593:7626635,31398852 +g1,13593:11942036,31398852 +g1,13593:13933760,31398852 +g1,13593:14929622,31398852 +g1,13593:15593530,31398852 +g1,13593:16921346,31398852 +g1,13593:17917208,31398852 +g1,13593:19245024,31398852 +g1,13593:19576978,31398852 +g1,13593:22564564,31398852 +k1,13593:22564564,31398852:0 +h1,13593:24888242,31398852:0,0,0 +k1,13593:32583029,31398852:7694787 +g1,13593:32583029,31398852 +) +] +) +g1,13594:32583029,31505098 +g1,13594:6630773,31505098 +g1,13594:6630773,31505098 +g1,13594:32583029,31505098 +g1,13594:32583029,31505098 +) +h1,13594:6630773,31701706:0,0,0 +v1,13598:6630773,32566786:0,393216,0 +(1,13612:6630773,37665909:25952256,5492339,0 +g1,13612:6630773,37665909 +g1,13612:6237557,37665909 +r1,13623:6368629,37665909:131072,5492339,0 +g1,13612:6567858,37665909 +g1,13612:6764466,37665909 +[1,13612:6764466,37665909:25818563,5492339,0 +(1,13599:6764466,32839263:25818563,665693,196608 +(1,13598:6764466,32839263:0,665693,196608 +r1,13623:8010564,32839263:1246098,862301,196608 +k1,13598:6764466,32839263:-1246098 +) +(1,13598:6764466,32839263:1246098,665693,196608 +) +k1,13598:8175693,32839263:165129 +k1,13598:9901911,32839263:327680 +k1,13598:12400777,32839263:165129 +k1,13598:13862864,32839263:165129 +k1,13598:15047079,32839263:165130 +k1,13598:17967342,32839263:165129 +k1,13598:20120178,32839263:165129 +k1,13598:23116462,32839263:165129 +k1,13598:23897629,32839263:165129 +k1,13598:25081843,32839263:165129 +k1,13598:26743160,32839263:165130 +k1,13598:28776720,32839263:165129 +k1,13598:31015408,32839263:165129 +k1,13598:32583029,32839263:0 +) +(1,13599:6764466,33704343:25818563,505283,126483 +g1,13598:8707608,33704343 +g1,13598:9522875,33704343 +g1,13598:10741189,33704343 +g1,13598:12112857,33704343 +g1,13598:15066564,33704343 +g1,13598:18431182,33704343 +g1,13598:21102429,33704343 +(1,13598:21102429,33704343:0,452978,115847 +r1,13623:24626101,33704343:3523672,568825,115847 +k1,13598:21102429,33704343:-3523672 +) +(1,13598:21102429,33704343:3523672,452978,115847 +k1,13598:21102429,33704343:3277 +h1,13598:24622824,33704343:0,411205,112570 +) +g1,13598:24825330,33704343 +g1,13598:25556056,33704343 +k1,13599:32583029,33704343:3744275 +g1,13599:32583029,33704343 +) +v1,13601:6764466,34389198:0,393216,0 +(1,13609:6764466,37469301:25818563,3473319,196608 +g1,13609:6764466,37469301 +g1,13609:6764466,37469301 +g1,13609:6567858,37469301 +(1,13609:6567858,37469301:0,3473319,196608 +r1,13623:32779637,37469301:26211779,3669927,196608 +k1,13609:6567857,37469301:-26211780 +) +(1,13609:6567858,37469301:26211779,3473319,196608 +[1,13609:6764466,37469301:25818563,3276711,0 +(1,13603:6764466,34623635:25818563,431045,9908 +(1,13602:6764466,34623635:0,0,0 +g1,13602:6764466,34623635 +g1,13602:6764466,34623635 +g1,13602:6436786,34623635 +(1,13602:6436786,34623635:0,0,0 +) +g1,13602:6764466,34623635 +) +g1,13603:8424236,34623635 +k1,13603:8424236,34623635:0 +h1,13603:9088144,34623635:0,0,0 +k1,13603:32583028,34623635:23494884 +g1,13603:32583028,34623635 +) +(1,13604:6764466,35308490:25818563,431045,106246 +h1,13604:6764466,35308490:0,0,0 +g1,13604:7096420,35308490 +g1,13604:7428374,35308490 +k1,13604:7428374,35308490:0 +h1,13604:10415960,35308490:0,0,0 +k1,13604:32583028,35308490:22167068 +g1,13604:32583028,35308490 +) +(1,13605:6764466,35993345:25818563,424439,106246 +h1,13605:6764466,35993345:0,0,0 +g1,13605:7096420,35993345 +g1,13605:7428374,35993345 +g1,13605:7760328,35993345 +g1,13605:8092282,35993345 +g1,13605:8424236,35993345 +g1,13605:8756190,35993345 +g1,13605:9088144,35993345 +g1,13605:11079868,35993345 +g1,13605:11743776,35993345 +g1,13605:15395270,35993345 +g1,13605:16059178,35993345 +g1,13605:17718948,35993345 +g1,13605:18382856,35993345 +k1,13605:18382856,35993345:0 +h1,13605:20374580,35993345:0,0,0 +k1,13605:32583029,35993345:12208449 +g1,13605:32583029,35993345 +) +(1,13606:6764466,36678200:25818563,424439,106246 +h1,13606:6764466,36678200:0,0,0 +k1,13606:7060763,36678200:296297 +k1,13606:7357060,36678200:296297 +k1,13606:7653357,36678200:296297 +k1,13606:7949654,36678200:296297 +k1,13606:8245951,36678200:296297 +k1,13606:8542248,36678200:296297 +k1,13606:8838545,36678200:296297 +k1,13606:9134842,36678200:296297 +k1,13606:9431139,36678200:296297 +k1,13606:9727436,36678200:296297 +k1,13606:10023733,36678200:296297 +k1,13606:10320030,36678200:296297 +k1,13606:10616327,36678200:296297 +k1,13606:10912624,36678200:296297 +k1,13606:11208920,36678200:296296 +k1,13606:11505217,36678200:296297 +k1,13606:11801514,36678200:296297 +k1,13606:12097811,36678200:296297 +k1,13606:12394108,36678200:296297 +k1,13606:12690405,36678200:296297 +k1,13606:14646472,36678200:296297 +k1,13606:15274723,36678200:296297 +k1,13606:16898836,36678200:296297 +k1,13606:17527087,36678200:296297 +k1,13606:19483154,36678200:296297 +k1,13606:20111405,36678200:296297 +k1,13606:23727242,36678200:296297 +k1,13606:24355493,36678200:296297 +k1,13606:27971330,36678200:296297 +k1,13606:28599581,36678200:296297 +k1,13606:28599581,36678200:0 +h1,13606:32583029,36678200:0,0,0 +k1,13606:32583029,36678200:0 +k1,13606:32583029,36678200:0 +) +(1,13607:6764466,37363055:25818563,431045,106246 +h1,13607:6764466,37363055:0,0,0 +k1,13607:6764466,37363055:0 +h1,13607:11079868,37363055:0,0,0 +k1,13607:32583028,37363055:21503160 +g1,13607:32583028,37363055 +) +] +) +g1,13609:32583029,37469301 +g1,13609:6764466,37469301 +g1,13609:6764466,37469301 +g1,13609:32583029,37469301 +g1,13609:32583029,37469301 +) +h1,13609:6764466,37665909:0,0,0 +] +g1,13612:32583029,37665909 +) +h1,13612:6630773,37665909:0,0,0 +(1,13616:6630773,38530989:25952256,513147,126483 +h1,13614:6630773,38530989:983040,0,0 +k1,13614:10899632,38530989:165650 +(1,13614:10899632,38530989:0,452978,115847 +r1,13623:13719881,38530989:2820249,568825,115847 +k1,13614:10899632,38530989:-2820249 +) +(1,13614:10899632,38530989:2820249,452978,115847 +k1,13614:10899632,38530989:3277 +h1,13614:13716604,38530989:0,411205,112570 +) +k1,13614:13885531,38530989:165650 +k1,13614:15242627,38530989:165651 +(1,13614:15242627,38530989:0,452978,115847 +r1,13623:17359452,38530989:2116825,568825,115847 +k1,13614:15242627,38530989:-2116825 +) +(1,13614:15242627,38530989:2116825,452978,115847 +k1,13614:15242627,38530989:3277 +h1,13614:17356175,38530989:0,411205,112570 +) +k1,13614:17525102,38530989:165650 +k1,13614:18682312,38530989:165650 +k1,13614:22667400,38530989:165650 +k1,13614:25741538,38530989:165650 +k1,13614:26593351,38530989:165651 +k1,13614:28139189,38530989:165650 +k1,13614:30734914,38530989:165650 +k1,13614:32583029,38530989:0 +) +(1,13616:6630773,39396069:25952256,513147,134348 +k1,13614:8976306,39396069:135659 +k1,13614:11525002,39396069:135660 +k1,13614:13691622,39396069:135659 +k1,13614:14478710,39396069:135660 +k1,13614:18018964,39396069:135659 +k1,13614:20938592,39396069:135659 +k1,13614:23632778,39396069:135660 +k1,13614:25470407,39396069:135659 +k1,13614:28631864,39396069:135660 +k1,13614:29450408,39396069:135659 +k1,13614:32583029,39396069:0 +) +(1,13616:6630773,40261149:25952256,513147,126483 +g1,13614:7922487,40261149 +g1,13614:8781008,40261149 +g1,13614:11651484,40261149 +g1,13614:15050181,40261149 +g1,13615:15050181,40261149 +k1,13616:32583029,40261149:17532848 +g1,13616:32583029,40261149 +) +] +(1,13623:32583029,45706769:0,0,0 +g1,13623:32583029,45706769 +) +) +] +(1,13623:6630773,47279633:25952256,0,0 +h1,13623:6630773,47279633:25952256,0,0 +) +] +(1,13623:4262630,4025873:0,0,0 +[1,13623:-473656,4025873:0,0,0 +(1,13623:-473656,-710413:0,0,0 +(1,13623:-473656,-710413:0,0,0 +g1,13623:-473656,-710413 +) +g1,13623:-473656,-710413 +) +] ) ] +!26347 +}220 +Input:2073:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2074:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2075:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2076:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2077:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2078:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2079:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2080:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2081:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2082:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2083:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2084:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2085:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2086:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2087:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1422 +{221 +[1,13697:4262630,47279633:28320399,43253760,0 +(1,13697:4262630,4025873:0,0,0 +[1,13697:-473656,4025873:0,0,0 +(1,13697:-473656,-710413:0,0,0 +(1,13697:-473656,-644877:0,0,0 +k1,13697:-473656,-644877:-65536 ) +(1,13697:-473656,4736287:0,0,0 +k1,13697:-473656,4736287:5209943 ) +g1,13697:-473656,-710413 ) ] -[1,14068:3078558,4812305:0,0,0 -(1,14068:3078558,2439708:0,1703936,0 -g1,14068:29030814,2439708 -g1,14068:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,14068:36151628,1915420:16384,1179648,0 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +[1,13697:6630773,47279633:25952256,43253760,0 +[1,13697:6630773,4812305:25952256,786432,0 +(1,13697:6630773,4812305:25952256,513147,126483 +(1,13697:6630773,4812305:25952256,513147,126483 +g1,13697:3078558,4812305 +[1,13697:3078558,4812305:0,0,0 +(1,13697:3078558,2439708:0,1703936,0 +k1,13697:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,13697:2537886,2439708:1179648,16384,0 ) -] +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,13697:3078558,1915420:16384,1179648,0 +) +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,14068:37855564,2439708:1179648,16384,0 +] ) ) -k1,14068:3078556,2439708:-34777008 ) ] -[1,14068:3078558,4812305:0,0,0 -(1,14068:3078558,49800853:0,16384,2228224 -k1,14068:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,14068:2537886,49800853:1179648,16384,0 -) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,14068:3078558,51504789:16384,1179648,0 +[1,13697:3078558,4812305:0,0,0 +(1,13697:3078558,2439708:0,1703936,0 +g1,13697:29030814,2439708 +g1,13697:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,13697:36151628,1915420:16384,1179648,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] ) +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,13697:37855564,2439708:1179648,16384,0 ) ) +k1,13697:3078556,2439708:-34777008 +) ] -[1,14068:3078558,4812305:0,0,0 -(1,14068:3078558,49800853:0,16384,2228224 -g1,14068:29030814,49800853 -g1,14068:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,14068:36151628,51504789:16384,1179648,0 +[1,13697:3078558,4812305:0,0,0 +(1,13697:3078558,49800853:0,16384,2228224 +k1,13697:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,13697:2537886,49800853:1179648,16384,0 ) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,13697:3078558,51504789:16384,1179648,0 ) -] +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 ) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,14068:37855564,49800853:1179648,16384,0 +] ) ) -k1,14068:3078556,49800853:-34777008 ) ] -g1,14068:6630773,4812305 -k1,14068:19540057,4812305:11713907 -g1,14068:21162728,4812305 -g1,14068:21985204,4812305 -g1,14068:24539797,4812305 -g1,14068:25949476,4812305 -g1,14068:28728857,4812305 -g1,14068:29852144,4812305 +[1,13697:3078558,4812305:0,0,0 +(1,13697:3078558,49800853:0,16384,2228224 +g1,13697:29030814,49800853 +g1,13697:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,13697:36151628,51504789:16384,1179648,0 ) +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 ) ] -[1,14068:6630773,45706769:25952256,40108032,0 -(1,14068:6630773,45706769:25952256,40108032,0 -(1,14068:6630773,45706769:0,0,0 -g1,14068:6630773,45706769 ) -[1,14068:6630773,45706769:25952256,40108032,0 -v1,14065:6630773,6254097:0,393216,0 -(1,14065:6630773,43091728:25952256,37230847,0 -g1,14065:6630773,43091728 -g1,14065:6303093,43091728 -r1,14068:6401397,43091728:98304,37230847,0 -g1,14065:6600626,43091728 -g1,14065:6797234,43091728 -[1,14065:6797234,43091728:25785795,37230847,0 -v1,13963:6797234,6254097:0,393216,0 -(1,13994:6797234,15154778:25785795,9293897,196608 -g1,13994:6797234,15154778 -g1,13994:6797234,15154778 -g1,13994:6600626,15154778 -(1,13994:6600626,15154778:0,9293897,196608 -r1,14068:32779637,15154778:26179011,9490505,196608 -k1,13994:6600625,15154778:-26179012 -) -(1,13994:6600626,15154778:26179011,9293897,196608 -[1,13994:6797234,15154778:25785795,9097289,0 -(1,13965:6797234,6461715:25785795,404226,101187 -(1,13964:6797234,6461715:0,0,0 -g1,13964:6797234,6461715 -g1,13964:6797234,6461715 -g1,13964:6469554,6461715 -(1,13964:6469554,6461715:0,0,0 -) -g1,13964:6797234,6461715 -) -k1,13965:6797234,6461715:0 -g1,13965:9326399,6461715 -g1,13965:9958691,6461715 -h1,13965:10590983,6461715:0,0,0 -k1,13965:32583029,6461715:21992046 -g1,13965:32583029,6461715 -) -(1,13969:6797234,7127893:25785795,410518,76021 -(1,13967:6797234,7127893:0,0,0 -g1,13967:6797234,7127893 -g1,13967:6797234,7127893 -g1,13967:6469554,7127893 -(1,13967:6469554,7127893:0,0,0 -) -g1,13967:6797234,7127893 -) -g1,13969:7745671,7127893 -g1,13969:9010254,7127893 -h1,13969:11855565,7127893:0,0,0 -k1,13969:32583029,7127893:20727464 -g1,13969:32583029,7127893 -) -(1,13971:6797234,8449431:25785795,404226,101187 -(1,13970:6797234,8449431:0,0,0 -g1,13970:6797234,8449431 -g1,13970:6797234,8449431 -g1,13970:6469554,8449431 -(1,13970:6469554,8449431:0,0,0 -) -g1,13970:6797234,8449431 -) -k1,13971:6797234,8449431:0 -g1,13971:9010254,8449431 -g1,13971:9642546,8449431 -h1,13971:10274838,8449431:0,0,0 -k1,13971:32583030,8449431:22308192 -g1,13971:32583030,8449431 -) -(1,13975:6797234,9115609:25785795,404226,76021 -(1,13973:6797234,9115609:0,0,0 -g1,13973:6797234,9115609 -g1,13973:6797234,9115609 -g1,13973:6469554,9115609 -(1,13973:6469554,9115609:0,0,0 -) -g1,13973:6797234,9115609 -) -g1,13975:7745671,9115609 -g1,13975:9010254,9115609 -h1,13975:10907128,9115609:0,0,0 -k1,13975:32583028,9115609:21675900 -g1,13975:32583028,9115609 -) -(1,13977:6797234,10437147:25785795,404226,101187 -(1,13976:6797234,10437147:0,0,0 -g1,13976:6797234,10437147 -g1,13976:6797234,10437147 -g1,13976:6469554,10437147 -(1,13976:6469554,10437147:0,0,0 -) -g1,13976:6797234,10437147 -) -k1,13977:6797234,10437147:0 -g1,13977:12171711,10437147 -g1,13977:12804003,10437147 -h1,13977:13436295,10437147:0,0,0 -k1,13977:32583029,10437147:19146734 -g1,13977:32583029,10437147 -) -(1,13981:6797234,11103325:25785795,404226,76021 -(1,13979:6797234,11103325:0,0,0 -g1,13979:6797234,11103325 -g1,13979:6797234,11103325 -g1,13979:6469554,11103325 -(1,13979:6469554,11103325:0,0,0 -) -g1,13979:6797234,11103325 -) -g1,13981:7745671,11103325 -g1,13981:9010254,11103325 -h1,13981:10274837,11103325:0,0,0 -k1,13981:32583029,11103325:22308192 -g1,13981:32583029,11103325 -) -(1,13983:6797234,12424863:25785795,404226,101187 -(1,13982:6797234,12424863:0,0,0 -g1,13982:6797234,12424863 -g1,13982:6797234,12424863 -g1,13982:6469554,12424863 -(1,13982:6469554,12424863:0,0,0 -) -g1,13982:6797234,12424863 -) -k1,13983:6797234,12424863:0 -g1,13983:12171711,12424863 -g1,13983:12804003,12424863 -h1,13983:13436295,12424863:0,0,0 -k1,13983:32583029,12424863:19146734 -g1,13983:32583029,12424863 -) -(1,13987:6797234,13091041:25785795,404226,76021 -(1,13985:6797234,13091041:0,0,0 -g1,13985:6797234,13091041 -g1,13985:6797234,13091041 -g1,13985:6469554,13091041 -(1,13985:6469554,13091041:0,0,0 -) -g1,13985:6797234,13091041 -) -g1,13987:7745671,13091041 -g1,13987:9010254,13091041 -h1,13987:10590982,13091041:0,0,0 -k1,13987:32583030,13091041:21992048 -g1,13987:32583030,13091041 -) -(1,13989:6797234,14412579:25785795,404226,101187 -(1,13988:6797234,14412579:0,0,0 -g1,13988:6797234,14412579 -g1,13988:6797234,14412579 -g1,13988:6469554,14412579 -(1,13988:6469554,14412579:0,0,0 -) -g1,13988:6797234,14412579 -) -k1,13989:6797234,14412579:0 -g1,13989:12171711,14412579 -g1,13989:12804003,14412579 -h1,13989:13436294,14412579:0,0,0 -k1,13989:32583030,14412579:19146736 -g1,13989:32583030,14412579 -) -(1,13993:6797234,15078757:25785795,404226,76021 -(1,13991:6797234,15078757:0,0,0 -g1,13991:6797234,15078757 -g1,13991:6797234,15078757 -g1,13991:6469554,15078757 -(1,13991:6469554,15078757:0,0,0 -) -g1,13991:6797234,15078757 -) -g1,13993:7745671,15078757 -g1,13993:9010254,15078757 -h1,13993:10590982,15078757:0,0,0 -k1,13993:32583030,15078757:21992048 -g1,13993:32583030,15078757 -) -] -) -g1,13994:32583029,15154778 -g1,13994:6797234,15154778 -g1,13994:6797234,15154778 -g1,13994:32583029,15154778 -g1,13994:32583029,15154778 -) -h1,13994:6797234,15351386:0,0,0 -(1,13998:6797234,16717162:25785795,513147,134348 -h1,13997:6797234,16717162:983040,0,0 -k1,13997:9132639,16717162:155678 -k1,13997:10968660,16717162:155678 -k1,13997:13903065,16717162:155678 -k1,13997:14820271,16717162:155678 -(1,13997:14820271,16717162:0,452978,122846 -r1,14068:17640520,16717162:2820249,575824,122846 -k1,13997:14820271,16717162:-2820249 -) -(1,13997:14820271,16717162:2820249,452978,122846 -k1,13997:14820271,16717162:3277 -h1,13997:17637243,16717162:0,411205,112570 -) -k1,13997:17796198,16717162:155678 -k1,13997:18761246,16717162:155678 -k1,13997:19272784,16717162:155678 -k1,13997:21301481,16717162:155678 -k1,13997:24000611,16717162:155678 -k1,13997:24687786,16717162:155678 -k1,13997:25909735,16717162:155678 -k1,13997:28194678,16717162:155678 -k1,13997:28922485,16717162:155678 -k1,13997:30097248,16717162:155678 -k1,13997:32583029,16717162:0 -) -(1,13998:6797234,17558650:25785795,513147,126483 -k1,13997:7673904,17558650:217378 -k1,13997:10765036,17558650:217378 -k1,13997:11598452,17558650:217378 -k1,13997:12834914,17558650:217377 -k1,13997:15030169,17558650:217378 -k1,13997:15906839,17558650:217378 -k1,13997:19171641,17558650:217378 -k1,13997:20461188,17558650:217378 -k1,13997:23005749,17558650:217378 -k1,13997:24242211,17558650:217377 -k1,13997:26945370,17558650:217378 -k1,13997:27822040,17558650:217378 -k1,13997:31966991,17558650:217378 -k1,13997:32583029,17558650:0 -) -(1,13998:6797234,18400138:25785795,513147,134348 -k1,13997:8040288,18400138:223969 -k1,13997:10981381,18400138:223970 -k1,13997:12247372,18400138:223969 -k1,13997:14495748,18400138:223969 -k1,13997:17201565,18400138:223969 -k1,13997:17883632,18400138:223970 -k1,13997:19600511,18400138:223969 -k1,13997:21835125,18400138:223969 -k1,13997:23078179,18400138:223969 -k1,13997:25787930,18400138:223970 -k1,13997:26671191,18400138:223969 -k1,13997:29518566,18400138:223969 -k1,13997:32583029,18400138:0 -) -(1,13998:6797234,19241626:25785795,513147,134348 -k1,13997:9540804,19241626:215191 -k1,13997:10415286,19241626:215190 -k1,13997:12007388,19241626:215191 -k1,13997:12680675,19241626:215190 -k1,13997:13427363,19241626:215191 -k1,13997:15539821,19241626:215191 -k1,13997:16406439,19241626:215190 -k1,13997:18239059,19241626:215191 -k1,13997:20441956,19241626:215190 -k1,13997:23530901,19241626:215191 -k1,13997:24362130,19241626:215191 -k1,13997:26867148,19241626:215190 -k1,13997:27741631,19241626:215191 -k1,13997:29511990,19241626:215190 -(1,13997:29511990,19241626:0,452978,115847 -r1,14068:30925391,19241626:1413401,568825,115847 -k1,13997:29511990,19241626:-1413401 -) -(1,13997:29511990,19241626:1413401,452978,115847 -k1,13997:29511990,19241626:3277 -h1,13997:30922114,19241626:0,411205,112570 -) -k1,13997:31140582,19241626:215191 -k1,13997:32583029,19241626:0 -) -(1,13998:6797234,20083114:25785795,505283,126483 -g1,13997:7612501,20083114 -g1,13997:10293578,20083114 -g1,13997:11178969,20083114 -(1,13997:11178969,20083114:0,452978,122846 -r1,14068:13999218,20083114:2820249,575824,122846 -k1,13997:11178969,20083114:-2820249 -) -(1,13997:11178969,20083114:2820249,452978,122846 -k1,13997:11178969,20083114:3277 -h1,13997:13995941,20083114:0,411205,112570 -) -g1,13997:14198447,20083114 -g1,13997:18244639,20083114 -g1,13997:20784814,20083114 -g1,13997:22003128,20083114 -g1,13997:25041377,20083114 -g1,13997:26920949,20083114 -g1,13997:27929548,20083114 -k1,13998:32583029,20083114:3155983 -g1,13998:32583029,20083114 -) -v1,14000:6797234,21273580:0,393216,0 -(1,14043:6797234,34155985:25785795,13275621,196608 -g1,14043:6797234,34155985 -g1,14043:6797234,34155985 -g1,14043:6600626,34155985 -(1,14043:6600626,34155985:0,13275621,196608 -r1,14068:32779637,34155985:26179011,13472229,196608 -k1,14043:6600625,34155985:-26179012 -) -(1,14043:6600626,34155985:26179011,13275621,196608 -[1,14043:6797234,34155985:25785795,13079013,0 -(1,14002:6797234,21487490:25785795,410518,107478 -(1,14001:6797234,21487490:0,0,0 -g1,14001:6797234,21487490 -g1,14001:6797234,21487490 -g1,14001:6469554,21487490 -(1,14001:6469554,21487490:0,0,0 -) -g1,14001:6797234,21487490 -) -k1,14002:6797234,21487490:0 -k1,14002:6797234,21487490:0 -h1,14002:12171711,21487490:0,0,0 -k1,14002:32583029,21487490:20411318 -g1,14002:32583029,21487490 -) -(1,14006:6797234,22153668:25785795,404226,76021 -(1,14004:6797234,22153668:0,0,0 -g1,14004:6797234,22153668 -g1,14004:6797234,22153668 -g1,14004:6469554,22153668 -(1,14004:6469554,22153668:0,0,0 -) -g1,14004:6797234,22153668 -) -g1,14006:7745671,22153668 -g1,14006:9010254,22153668 -h1,14006:9326400,22153668:0,0,0 -k1,14006:32583028,22153668:23256628 -g1,14006:32583028,22153668 -) -(1,14008:6797234,23475206:25785795,404226,107478 -(1,14007:6797234,23475206:0,0,0 -g1,14007:6797234,23475206 -g1,14007:6797234,23475206 -g1,14007:6469554,23475206 -(1,14007:6469554,23475206:0,0,0 -) -g1,14007:6797234,23475206 -) -k1,14008:6797234,23475206:0 -g1,14008:9642545,23475206 -g1,14008:10274837,23475206 -h1,14008:10907129,23475206:0,0,0 -k1,14008:32583029,23475206:21675900 -g1,14008:32583029,23475206 -) -(1,14012:6797234,24141384:25785795,404226,76021 -(1,14010:6797234,24141384:0,0,0 -g1,14010:6797234,24141384 -g1,14010:6797234,24141384 -g1,14010:6469554,24141384 -(1,14010:6469554,24141384:0,0,0 -) -g1,14010:6797234,24141384 -) -g1,14012:7745671,24141384 -g1,14012:9010254,24141384 -h1,14012:9326400,24141384:0,0,0 -k1,14012:32583028,24141384:23256628 -g1,14012:32583028,24141384 -) -(1,14014:6797234,25462922:25785795,404226,107478 -(1,14013:6797234,25462922:0,0,0 -g1,14013:6797234,25462922 -g1,14013:6797234,25462922 -g1,14013:6469554,25462922 -(1,14013:6469554,25462922:0,0,0 -) -g1,14013:6797234,25462922 -) -k1,14014:6797234,25462922:0 -g1,14014:9642545,25462922 -g1,14014:10274837,25462922 -h1,14014:10907129,25462922:0,0,0 -k1,14014:32583029,25462922:21675900 -g1,14014:32583029,25462922 -) -(1,14018:6797234,26129100:25785795,404226,76021 -(1,14016:6797234,26129100:0,0,0 -g1,14016:6797234,26129100 -g1,14016:6797234,26129100 -g1,14016:6469554,26129100 -(1,14016:6469554,26129100:0,0,0 -) -g1,14016:6797234,26129100 -) -g1,14018:7745671,26129100 -g1,14018:9010254,26129100 -h1,14018:9326400,26129100:0,0,0 -k1,14018:32583028,26129100:23256628 -g1,14018:32583028,26129100 -) -(1,14020:6797234,27450638:25785795,404226,107478 -(1,14019:6797234,27450638:0,0,0 -g1,14019:6797234,27450638 -g1,14019:6797234,27450638 -g1,14019:6469554,27450638 -(1,14019:6469554,27450638:0,0,0 -) -g1,14019:6797234,27450638 -) -k1,14020:6797234,27450638:0 -g1,14020:9642545,27450638 -g1,14020:10274837,27450638 -h1,14020:10907128,27450638:0,0,0 -k1,14020:32583028,27450638:21675900 -g1,14020:32583028,27450638 -) -(1,14024:6797234,28116816:25785795,404226,76021 -(1,14022:6797234,28116816:0,0,0 -g1,14022:6797234,28116816 -g1,14022:6797234,28116816 -g1,14022:6469554,28116816 -(1,14022:6469554,28116816:0,0,0 -) -g1,14022:6797234,28116816 -) -g1,14024:7745671,28116816 -g1,14024:9010254,28116816 -h1,14024:9326400,28116816:0,0,0 -k1,14024:32583028,28116816:23256628 -g1,14024:32583028,28116816 -) -(1,14026:6797234,29438354:25785795,404226,107478 -(1,14025:6797234,29438354:0,0,0 -g1,14025:6797234,29438354 -g1,14025:6797234,29438354 -g1,14025:6469554,29438354 -(1,14025:6469554,29438354:0,0,0 -) -g1,14025:6797234,29438354 -) -k1,14026:6797234,29438354:0 -g1,14026:10274837,29438354 -g1,14026:10907129,29438354 -g1,14026:11855567,29438354 -g1,14026:12487859,29438354 -g1,14026:13120151,29438354 -h1,14026:14068588,29438354:0,0,0 -k1,14026:32583028,29438354:18514440 -g1,14026:32583028,29438354 -) -(1,14030:6797234,30104532:25785795,404226,76021 -(1,14028:6797234,30104532:0,0,0 -g1,14028:6797234,30104532 -g1,14028:6797234,30104532 -g1,14028:6469554,30104532 -(1,14028:6469554,30104532:0,0,0 -) -g1,14028:6797234,30104532 -) -g1,14030:7745671,30104532 -g1,14030:9010254,30104532 -h1,14030:9326400,30104532:0,0,0 -k1,14030:32583028,30104532:23256628 -g1,14030:32583028,30104532 -) -(1,14032:6797234,31426070:25785795,404226,107478 -(1,14031:6797234,31426070:0,0,0 -g1,14031:6797234,31426070 -g1,14031:6797234,31426070 -g1,14031:6469554,31426070 -(1,14031:6469554,31426070:0,0,0 -) -g1,14031:6797234,31426070 -) -k1,14032:6797234,31426070:0 -g1,14032:11223274,31426070 -g1,14032:11855566,31426070 -h1,14032:12804003,31426070:0,0,0 -k1,14032:32583029,31426070:19779026 -g1,14032:32583029,31426070 -) -(1,14036:6797234,32092248:25785795,404226,76021 -(1,14034:6797234,32092248:0,0,0 -g1,14034:6797234,32092248 -g1,14034:6797234,32092248 -g1,14034:6469554,32092248 -(1,14034:6469554,32092248:0,0,0 -) -g1,14034:6797234,32092248 -) -g1,14036:7745671,32092248 -g1,14036:9010254,32092248 -h1,14036:9326400,32092248:0,0,0 -k1,14036:32583028,32092248:23256628 -g1,14036:32583028,32092248 -) -(1,14038:6797234,33413786:25785795,404226,107478 -(1,14037:6797234,33413786:0,0,0 -g1,14037:6797234,33413786 -g1,14037:6797234,33413786 -g1,14037:6469554,33413786 -(1,14037:6469554,33413786:0,0,0 -) -g1,14037:6797234,33413786 -) -k1,14038:6797234,33413786:0 -g1,14038:11223274,33413786 -g1,14038:11855566,33413786 -g1,14038:12804004,33413786 -g1,14038:13436296,33413786 -g1,14038:14068588,33413786 -h1,14038:15017025,33413786:0,0,0 -k1,14038:32583029,33413786:17566004 -g1,14038:32583029,33413786 -) -(1,14042:6797234,34079964:25785795,404226,76021 -(1,14040:6797234,34079964:0,0,0 -g1,14040:6797234,34079964 -g1,14040:6797234,34079964 -g1,14040:6469554,34079964 -(1,14040:6469554,34079964:0,0,0 -) -g1,14040:6797234,34079964 -) -g1,14042:7745671,34079964 -g1,14042:9010254,34079964 -h1,14042:9326400,34079964:0,0,0 -k1,14042:32583028,34079964:23256628 -g1,14042:32583028,34079964 -) -] -) -g1,14043:32583029,34155985 -g1,14043:6797234,34155985 -g1,14043:6797234,34155985 -g1,14043:32583029,34155985 -g1,14043:32583029,34155985 -) -h1,14043:6797234,34352593:0,0,0 -(1,14047:6797234,35718369:25785795,513147,134348 -h1,14046:6797234,35718369:983040,0,0 -k1,14046:8755526,35718369:157363 -k1,14046:12002912,35718369:157363 -k1,14046:14189271,35718369:157364 -(1,14046:14189271,35718369:0,452978,122846 -r1,14068:17009520,35718369:2820249,575824,122846 -k1,14046:14189271,35718369:-2820249 -) -(1,14046:14189271,35718369:2820249,452978,122846 -k1,14046:14189271,35718369:3277 -h1,14046:17006243,35718369:0,411205,112570 -) -k1,14046:17166883,35718369:157363 -k1,14046:19695994,35718369:157363 -k1,14046:20504785,35718369:157363 -k1,14046:21018008,35718369:157363 -k1,14046:23048391,35718369:157364 -k1,14046:25749206,35718369:157363 -k1,14046:27098014,35718369:157363 -k1,14046:27906805,35718369:157363 -k1,14046:28420029,35718369:157364 -k1,14046:29570918,35718369:157363 -k1,14046:30387573,35718369:157363 -k1,14047:32583029,35718369:0 -) -(1,14047:6797234,36559857:25785795,513147,126483 -k1,14046:7875800,36559857:187276 -k1,14046:10616359,36559857:187276 -k1,14046:14305878,36559857:187275 -k1,14046:15322184,36559857:187276 -k1,14046:16609154,36559857:187276 -(1,14046:16609154,36559857:0,452978,122846 -r1,14068:19429403,36559857:2820249,575824,122846 -k1,14046:16609154,36559857:-2820249 -) -(1,14046:16609154,36559857:2820249,452978,122846 -k1,14046:16609154,36559857:3277 -h1,14046:19426126,36559857:0,411205,112570 -) -k1,14046:19616679,36559857:187276 -k1,14046:20613324,36559857:187275 -k1,14046:22252222,36559857:187276 -k1,14046:25062904,36559857:187276 -k1,14046:25909472,36559857:187276 -k1,14046:26452608,36559857:187276 -k1,14046:27633409,36559857:187275 -k1,14046:28479977,36559857:187276 -k1,14046:31714677,36559857:187276 -k1,14046:32583029,36559857:0 -) -(1,14047:6797234,37401345:25785795,513147,115847 -k1,14046:8073052,37401345:171536 -k1,14046:9337074,37401345:171537 -(1,14046:9337074,37401345:0,452978,115847 -r1,14068:12157323,37401345:2820249,568825,115847 -k1,14046:9337074,37401345:-2820249 -) -(1,14046:9337074,37401345:2820249,452978,115847 -k1,14046:9337074,37401345:3277 -h1,14046:12154046,37401345:0,411205,112570 -) -k1,14046:12502529,37401345:171536 -k1,14046:13491955,37401345:171537 -k1,14046:16358987,37401345:171536 -(1,14046:16358987,37401345:0,452978,115847 -r1,14068:21992930,37401345:5633943,568825,115847 -k1,14046:16358987,37401345:-5633943 -) -(1,14046:16358987,37401345:5633943,452978,115847 -k1,14046:16358987,37401345:3277 -h1,14046:21989653,37401345:0,411205,112570 -) -k1,14046:22164467,37401345:171537 -k1,14046:22867500,37401345:171536 -k1,14046:24105308,37401345:171537 -k1,14046:27787608,37401345:171536 -k1,14046:28827497,37401345:171537 -k1,14046:30284849,37401345:171536 -k1,14046:31931601,37401345:171537 -k1,14046:32583029,37401345:0 -) -(1,14047:6797234,38242833:25785795,513147,115847 -g1,14046:8088948,38242833 -(1,14046:8088948,38242833:0,452978,115847 -r1,14068:10909197,38242833:2820249,568825,115847 -k1,14046:8088948,38242833:-2820249 -) -(1,14046:8088948,38242833:2820249,452978,115847 -k1,14046:8088948,38242833:3277 -h1,14046:10905920,38242833:0,411205,112570 -) -g1,14046:11108426,38242833 -g1,14046:12701606,38242833 -g1,14046:13256695,38242833 -g1,14046:14449450,38242833 -g1,14046:15307971,38242833 -k1,14047:32583029,38242833:14227634 -g1,14047:32583029,38242833 -) -v1,14049:6797234,39433299:0,393216,0 -(1,14062:6797234,42370832:25785795,3330749,196608 -g1,14062:6797234,42370832 -g1,14062:6797234,42370832 -g1,14062:6600626,42370832 -(1,14062:6600626,42370832:0,3330749,196608 -r1,14068:32779637,42370832:26179011,3527357,196608 -k1,14062:6600625,42370832:-26179012 -) -(1,14062:6600626,42370832:26179011,3330749,196608 -[1,14062:6797234,42370832:25785795,3134141,0 -(1,14051:6797234,39640917:25785795,404226,107478 -(1,14050:6797234,39640917:0,0,0 -g1,14050:6797234,39640917 -g1,14050:6797234,39640917 -g1,14050:6469554,39640917 -(1,14050:6469554,39640917:0,0,0 -) -g1,14050:6797234,39640917 -) -k1,14051:6797234,39640917:0 -g1,14051:11223274,39640917 -g1,14051:11855566,39640917 -g1,14051:12804004,39640917 -g1,14051:13436296,39640917 -g1,14051:14068588,39640917 -g1,14051:15017026,39640917 -g1,14051:15649318,39640917 -g1,14051:16281610,39640917 -g1,14051:17546193,39640917 -h1,14051:19759213,39640917:0,0,0 -k1,14051:32583029,39640917:12823816 -g1,14051:32583029,39640917 -) -(1,14055:6797234,40307095:25785795,404226,76021 -(1,14053:6797234,40307095:0,0,0 -g1,14053:6797234,40307095 -g1,14053:6797234,40307095 -g1,14053:6469554,40307095 -(1,14053:6469554,40307095:0,0,0 -) -g1,14053:6797234,40307095 -) -g1,14055:7745671,40307095 -g1,14055:9010254,40307095 -g1,14055:9642546,40307095 -g1,14055:10274838,40307095 -h1,14055:10590984,40307095:0,0,0 -k1,14055:32583028,40307095:21992044 -g1,14055:32583028,40307095 -) -(1,14057:6797234,41628633:25785795,404226,101187 -(1,14056:6797234,41628633:0,0,0 -g1,14056:6797234,41628633 -g1,14056:6797234,41628633 -g1,14056:6469554,41628633 -(1,14056:6469554,41628633:0,0,0 -) -g1,14056:6797234,41628633 -) -k1,14057:6797234,41628633:0 -g1,14057:11223274,41628633 -g1,14057:11855566,41628633 -g1,14057:12804004,41628633 -g1,14057:13436296,41628633 -g1,14057:14068588,41628633 -g1,14057:15017026,41628633 -g1,14057:15649318,41628633 -g1,14057:16281610,41628633 -g1,14057:17546193,41628633 -h1,14057:22288378,41628633:0,0,0 -k1,14057:32583029,41628633:10294651 -g1,14057:32583029,41628633 -) -(1,14061:6797234,42294811:25785795,404226,76021 -(1,14059:6797234,42294811:0,0,0 -g1,14059:6797234,42294811 -g1,14059:6797234,42294811 -g1,14059:6469554,42294811 -(1,14059:6469554,42294811:0,0,0 -) -g1,14059:6797234,42294811 -) -g1,14061:7745671,42294811 -g1,14061:9010254,42294811 -g1,14061:9326400,42294811 -g1,14061:10907129,42294811 -g1,14061:12804003,42294811 -h1,14061:14384731,42294811:0,0,0 -k1,14061:32583029,42294811:18198298 -g1,14061:32583029,42294811 -) -] -) -g1,14062:32583029,42370832 -g1,14062:6797234,42370832 -g1,14062:6797234,42370832 -g1,14062:32583029,42370832 -g1,14062:32583029,42370832 -) -h1,14062:6797234,42567440:0,0,0 -] -g1,14065:32583029,43091728 -) -h1,14065:6630773,43091728:0,0,0 -(1,14068:6630773,44457504:25952256,513147,126483 -h1,14067:6630773,44457504:983040,0,0 -k1,14067:8502898,44457504:261250 -k1,14067:9783233,44457504:261250 -k1,14067:13036203,44457504:261251 -k1,14067:13913491,44457504:261250 -k1,14067:16929219,44457504:261250 -k1,14067:19799457,44457504:261250 -k1,14067:20929059,44457504:261250 -k1,14067:22902765,44457504:261250 -k1,14067:25288693,44457504:261251 -k1,14067:28041622,44457504:261250 -k1,14067:29896708,44457504:261250 -k1,14067:32583029,44457504:0 -) -(1,14068:6630773,45298992:25952256,513147,134348 -k1,14067:8281800,45298992:164015 -k1,14067:9550097,45298992:164015 -k1,14067:10461877,45298992:164014 -k1,14067:12426821,45298992:164015 -k1,14067:16159271,45298992:164015 -k1,14067:18058679,45298992:164015 -k1,14067:19241779,45298992:164015 -k1,14067:21059266,45298992:164014 -k1,14067:23480996,45298992:164015 -k1,14067:25080905,45298992:164015 -k1,14067:25904212,45298992:164015 -k1,14067:27008013,45298992:164015 -k1,14067:28328737,45298992:164014 -k1,14067:29597034,45298992:164015 -k1,14067:31490544,45298992:164015 -k1,14067:32583029,45298992:0 -) -] -(1,14068:32583029,45706769:0,0,0 -g1,14068:32583029,45706769 -) -) -] -(1,14068:6630773,47279633:25952256,0,0 -h1,14068:6630773,47279633:25952256,0,0 -) -] -(1,14068:4262630,4025873:0,0,0 -[1,14068:-473656,4025873:0,0,0 -(1,14068:-473656,-710413:0,0,0 -(1,14068:-473656,-710413:0,0,0 -g1,14068:-473656,-710413 -) -g1,14068:-473656,-710413 -) -] -) -] -!24607 -}239 -Input:2143:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2144:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2145:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2146:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!388 -{240 -[1,14139:4262630,47279633:28320399,43253760,0 -(1,14139:4262630,4025873:0,0,0 -[1,14139:-473656,4025873:0,0,0 -(1,14139:-473656,-710413:0,0,0 -(1,14139:-473656,-644877:0,0,0 -k1,14139:-473656,-644877:-65536 +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,13697:37855564,49800853:1179648,16384,0 ) -(1,14139:-473656,4736287:0,0,0 -k1,14139:-473656,4736287:5209943 ) -g1,14139:-473656,-710413 +k1,13697:3078556,49800853:-34777008 ) ] +g1,13697:6630773,4812305 +k1,13697:19540057,4812305:11713907 +g1,13697:21162728,4812305 +g1,13697:21985204,4812305 +g1,13697:24539797,4812305 +g1,13697:25949476,4812305 +g1,13697:28728857,4812305 +g1,13697:29852144,4812305 +) +) +] +[1,13697:6630773,45706769:25952256,40108032,0 +(1,13697:6630773,45706769:25952256,40108032,0 +(1,13697:6630773,45706769:0,0,0 +g1,13697:6630773,45706769 +) +[1,13697:6630773,45706769:25952256,40108032,0 +(1,13617:6630773,6254097:25952256,32768,229376 +(1,13617:6630773,6254097:0,32768,229376 +(1,13617:6630773,6254097:5505024,32768,229376 +r1,13697:12135797,6254097:5505024,262144,229376 +) +k1,13617:6630773,6254097:-5505024 ) -[1,14139:6630773,47279633:25952256,43253760,0 -[1,14139:6630773,4812305:25952256,786432,0 -(1,14139:6630773,4812305:25952256,513147,126483 -(1,14139:6630773,4812305:25952256,513147,126483 -g1,14139:3078558,4812305 -[1,14139:3078558,4812305:0,0,0 -(1,14139:3078558,2439708:0,1703936,0 -k1,14139:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,14139:2537886,2439708:1179648,16384,0 +(1,13617:6630773,6254097:25952256,32768,0 +r1,13697:32583029,6254097:25952256,32768,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,14139:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 -) -] +(1,13617:6630773,7885949:25952256,606339,14155 +(1,13617:6630773,7885949:1974731,582746,14155 +g1,13617:6630773,7885949 +g1,13617:8605504,7885949 +) +g1,13617:13567104,7885949 +g1,13617:16080541,7885949 +k1,13617:32583029,7885949:13634370 +g1,13617:32583029,7885949 +) +(1,13622:6630773,9144245:25952256,513147,126483 +k1,13621:8745474,9144245:142067 +k1,13621:11205550,9144245:142068 +k1,13621:13063350,9144245:142067 +k1,13621:14224503,9144245:142068 +k1,13621:18106054,9144245:142067 +k1,13621:18907414,9144245:142068 +k1,13621:21894399,9144245:142067 +k1,13621:25575411,9144245:142068 +k1,13621:28785218,9144245:142067 +k1,13621:32583029,9144245:0 +) +(1,13622:6630773,10009325:25952256,513147,122846 +k1,13621:8631240,10009325:187741 +k1,13621:11310661,10009325:187742 +k1,13621:13210858,10009325:187741 +k1,13621:14792550,10009325:187741 +k1,13621:17675788,10009325:187742 +(1,13621:17675788,10009325:0,452978,122846 +r1,13697:19440901,10009325:1765113,575824,122846 +k1,13621:17675788,10009325:-1765113 +) +(1,13621:17675788,10009325:1765113,452978,122846 +k1,13621:17675788,10009325:3277 +h1,13621:19437624,10009325:0,411205,112570 +) +k1,13621:19628642,10009325:187741 +k1,13621:20807943,10009325:187741 +k1,13621:22645882,10009325:187742 +k1,13621:25308262,10009325:187741 +k1,13621:26687448,10009325:187741 +k1,13621:28556844,10009325:187742 +k1,13621:29763670,10009325:187741 +k1,13621:32583029,10009325:0 +) +(1,13622:6630773,10874405:25952256,513147,7863 +g1,13621:10611429,10874405 +g1,13621:11462086,10874405 +g1,13621:12409081,10874405 +g1,13621:15196982,10874405 +g1,13621:16082373,10874405 +g1,13621:17560209,10874405 +g1,13621:18445600,10874405 +g1,13621:19663914,10874405 +g1,13621:21076870,10874405 +k1,13622:32583029,10874405:8636993 +g1,13622:32583029,10874405 +) +(1,13645:6630773,18360512:25952256,6850948,0 +k1,13645:7801963,18360512:1171190 +(1,13623:7801963,18360512:0,0,0 +g1,13623:7801963,18360512 +g1,13623:7801963,18360512 +g1,13623:7474283,18360512 +(1,13623:7474283,18360512:0,0,0 +) +g1,13623:7801963,18360512 +) +(1,13643:7801963,18360512:23609877,6850948,0 +g1,13643:11073767,18360512 +(1,13643:11073767,12138018:0,0,0 +(1,13643:11073767,12138018:0,0,0 +g1,13625:11073767,12138018 +(1,13626:11073767,12138018:0,0,0 +(1,13626:11073767,12138018:0,0,0 +g1,13626:11073767,12138018 +g1,13626:11073767,12138018 +g1,13626:11073767,12138018 +g1,13626:11073767,12138018 +g1,13626:11073767,12138018 +(1,13626:11073767,12138018:0,0,0 +(1,13626:11073767,12138018:4940249,454754,104590 +(1,13626:11073767,12138018:4940249,454754,104590 +g1,13626:13004851,12138018 +$1,13626:13004851,12138018 +$1,13626:13612370,12138018 +g1,13626:13791677,12138018 +(1,13626:13791677,12138018:0,414307,104590 +r1,13697:16014016,12138018:2222339,518897,104590 +k1,13626:13791677,12138018:-2222339 +) +(1,13626:13791677,12138018:2222339,414307,104590 +k1,13626:13791677,12138018:3277 +h1,13626:16010739,12138018:0,370085,101313 +) +) +g1,13626:16014016,12138018 +) +) +g1,13626:11073767,12138018 +g1,13626:11073767,12138018 +) +) +g1,13626:11073767,12138018 +(1,13627:11073767,12138018:0,0,0 +(1,13627:11073767,12138018:0,0,0 +g1,13627:11073767,12138018 +g1,13627:11073767,12138018 +g1,13627:11073767,12138018 +g1,13627:11073767,12138018 +g1,13627:11073767,12138018 +(1,13627:11073767,12138018:0,0,0 +(1,13627:11073767,12138018:5813184,454754,104590 +(1,13627:11073767,12138018:5813184,454754,104590 +g1,13627:14827408,12138018 +$1,13627:14827408,12138018 +$1,13627:15434927,12138018 +g1,13627:15614234,12138018 +(1,13627:15614234,12138018:0,408008,104590 +r1,13697:16886951,12138018:1272717,512598,104590 +k1,13627:15614234,12138018:-1272717 +) +(1,13627:15614234,12138018:1272717,408008,104590 +k1,13627:15614234,12138018:3277 +h1,13627:16883674,12138018:0,370085,101313 +) +) +g1,13627:16886951,12138018 +) +) +g1,13627:11073767,12138018 +g1,13627:11073767,12138018 +) +) +g1,13627:11073767,12138018 +(1,13628:11073767,12138018:0,0,0 +(1,13628:11073767,12138018:0,0,0 +g1,13628:11073767,12138018 +g1,13628:11073767,12138018 +g1,13628:11073767,12138018 +g1,13628:11073767,12138018 +g1,13628:11073767,12138018 +(1,13628:11073767,12138018:0,0,0 +(1,13628:11073767,12138018:5356075,454754,120913 +(1,13628:11073767,12138018:5356075,454754,120913 +g1,13628:13420677,12138018 +$1,13628:13420677,12138018 +$1,13628:14028196,12138018 +g1,13628:14207503,12138018 +(1,13628:14207503,12138018:0,408008,110889 +r1,13697:16429842,12138018:2222339,518897,110889 +k1,13628:14207503,12138018:-2222339 +) +(1,13628:14207503,12138018:2222339,408008,110889 +k1,13628:14207503,12138018:3277 +h1,13628:16426565,12138018:0,370085,101313 +) +) +g1,13628:16429842,12138018 +) +) +g1,13628:11073767,12138018 +g1,13628:11073767,12138018 +) +) +g1,13628:11073767,12138018 +(1,13629:11073767,12138018:0,0,0 +(1,13629:11073767,12138018:0,0,0 +g1,13629:11073767,12138018 +g1,13629:11073767,12138018 +g1,13629:11073767,12138018 +g1,13629:11073767,12138018 +g1,13629:11073767,12138018 +(1,13629:11073767,12138018:0,0,0 +(1,13629:11073767,12138018:6124221,454754,104590 +(1,13629:11073767,12138018:6124221,454754,104590 +g1,13629:14505364,12138018 +$1,13629:14505364,12138018 +$1,13629:15112883,12138018 +g1,13629:15292190,12138018 +(1,13629:15292190,12138018:0,414307,104590 +r1,13697:17197988,12138018:1905798,518897,104590 +k1,13629:15292190,12138018:-1905798 +) +(1,13629:15292190,12138018:1905798,414307,104590 +k1,13629:15292190,12138018:3277 +h1,13629:17194711,12138018:0,370085,101313 +) +) +g1,13629:17197988,12138018 +) +) +g1,13629:11073767,12138018 +g1,13629:11073767,12138018 +) +) +(1,13630:11073767,12138018:0,0,0 +(1,13630:11073767,12138018:0,0,0 +g1,13630:11073767,12138018 +g1,13630:11073767,12138018 +g1,13630:11073767,12138018 +g1,13630:11073767,12138018 +g1,13630:11073767,12138018 +(1,13630:11073767,12138018:0,0,0 +(1,13630:11073767,12138018:1589257,408008,110889 +(1,13630:11073767,12138018:1589257,408008,110889 +(1,13630:11073767,12138018:0,408008,110889 +r1,13697:12663024,12138018:1589257,518897,110889 +k1,13630:11073767,12138018:-1589257 +) +(1,13630:11073767,12138018:1589257,408008,110889 +k1,13630:11073767,12138018:3277 +h1,13630:12659747,12138018:0,370085,101313 +) +) +g1,13630:12663024,12138018 +) +) +g1,13630:11073767,12138018 +g1,13630:11073767,12138018 +) ) +g1,13630:11073767,12138018 +(1,13631:11073767,12138018:0,0,0 +(1,13631:11073767,12138018:0,0,0 +g1,13631:11073767,12138018 +g1,13631:11073767,12138018 +g1,13631:11073767,12138018 +g1,13631:11073767,12138018 +g1,13631:11073767,12138018 +(1,13631:11073767,12138018:0,0,0 +(1,13631:11073767,12138018:2866617,454754,120913 +(1,13631:11073767,12138018:2866617,454754,120913 +(1,13631:11073767,12138018:0,408008,110889 +r1,13697:12029943,12138018:956176,518897,110889 +k1,13631:11073767,12138018:-956176 +) +(1,13631:11073767,12138018:956176,408008,110889 +k1,13631:11073767,12138018:3277 +h1,13631:12026666,12138018:0,370085,101313 +) +g1,13631:12209250,12138018 +) +g1,13631:13940384,12138018 +) +) +g1,13631:11073767,12138018 +g1,13631:11073767,12138018 +) +) +g1,13631:11073767,12138018 +(1,13632:11073767,12138018:0,0,0 +(1,13632:11073767,12138018:0,0,0 +g1,13632:11073767,12138018 +g1,13632:11073767,12138018 +g1,13632:11073767,12138018 +g1,13632:11073767,12138018 +g1,13632:11073767,12138018 +(1,13632:11073767,12138018:0,0,0 +(1,13632:11073767,12138018:2855420,408008,104590 +(1,13632:11073767,12138018:2855420,408008,104590 +(1,13632:11073767,12138018:0,408008,104590 +r1,13697:13929187,12138018:2855420,512598,104590 +k1,13632:11073767,12138018:-2855420 +) +(1,13632:11073767,12138018:2855420,408008,104590 +k1,13632:11073767,12138018:3277 +h1,13632:13925910,12138018:0,370085,101313 +) +) +g1,13632:13929187,12138018 +) +) +g1,13632:11073767,12138018 +g1,13632:11073767,12138018 +) +) +g1,13632:11073767,12138018 +(1,13633:11073767,12138018:0,0,0 +(1,13633:11073767,12138018:0,0,0 +g1,13633:11073767,12138018 +g1,13633:11073767,12138018 +g1,13633:11073767,12138018 +g1,13633:11073767,12138018 +g1,13633:11073767,12138018 +(1,13633:11073767,12138018:0,0,0 +(1,13633:11073767,12138018:2222339,408008,104590 +(1,13633:11073767,12138018:2222339,408008,104590 +(1,13633:11073767,12138018:0,408008,104590 +r1,13697:13296106,12138018:2222339,512598,104590 +k1,13633:11073767,12138018:-2222339 +) +(1,13633:11073767,12138018:2222339,408008,104590 +k1,13633:11073767,12138018:3277 +h1,13633:13292829,12138018:0,370085,101313 +) +) +g1,13633:13296106,12138018 +) +) +g1,13633:11073767,12138018 +g1,13633:11073767,12138018 +) +) +g1,13633:11073767,12138018 +(1,13634:11073767,12138018:0,0,0 +(1,13634:11073767,12138018:0,0,0 +g1,13634:11073767,12138018 +g1,13634:11073767,12138018 +g1,13634:11073767,12138018 +g1,13634:11073767,12138018 +g1,13634:11073767,12138018 +(1,13634:11073767,12138018:0,0,0 +(1,13634:11073767,12138018:1905798,408008,104590 +(1,13634:11073767,12138018:1905798,408008,104590 +(1,13634:11073767,12138018:0,408008,104590 +r1,13697:12979565,12138018:1905798,512598,104590 +k1,13634:11073767,12138018:-1905798 +) +(1,13634:11073767,12138018:1905798,408008,104590 +k1,13634:11073767,12138018:3277 +h1,13634:12976288,12138018:0,370085,101313 +) +) +g1,13634:12979565,12138018 +) +) +g1,13634:11073767,12138018 +g1,13634:11073767,12138018 +) +) +g1,13634:11073767,12138018 +g1,13635:11073767,12138018 +g1,13635:11073767,12138018 +g1,13635:11073767,12138018 +g1,13635:11073767,12138018 +g1,13635:11073767,12138018 +g1,13635:11073767,12138018 +g1,13636:11073767,12138018 +g1,13636:11073767,12138018 +g1,13636:11073767,12138018 +g1,13636:11073767,12138018 +g1,13636:11073767,12138018 +g1,13636:11073767,12138018 +g1,13637:11073767,12138018 +g1,13637:11073767,12138018 +g1,13637:11073767,12138018 +g1,13637:11073767,12138018 +g1,13637:11073767,12138018 +g1,13637:11073767,12138018 +g1,13638:11073767,12138018 +g1,13638:11073767,12138018 +g1,13638:11073767,12138018 +g1,13638:11073767,12138018 +g1,13638:11073767,12138018 +g1,13638:11073767,12138018 +g1,13639:11073767,12138018 +g1,13639:11073767,12138018 +g1,13639:11073767,12138018 +g1,13639:11073767,12138018 +g1,13639:11073767,12138018 +g1,13639:11073767,12138018 +g1,13640:11073767,12138018 +g1,13640:11073767,12138018 +g1,13640:11073767,12138018 +g1,13640:11073767,12138018 +g1,13640:11073767,12138018 +g1,13640:11073767,12138018 +g1,13641:11073767,12138018 +g1,13641:11073767,12138018 +g1,13641:11073767,12138018 +g1,13641:11073767,12138018 +g1,13641:11073767,12138018 +g1,13641:11073767,12138018 +g1,13642:11073767,12138018 +g1,13642:11073767,12138018 +g1,13642:11073767,12138018 +g1,13642:11073767,12138018 +g1,13642:11073767,12138018 +g1,13642:11073767,12138018 +g1,13643:11073767,12138018 +g1,13643:11073767,12138018 +) +g1,13643:11073767,12138018 +) +) +g1,13645:31411840,18360512 +k1,13645:32583029,18360512:1171189 +) +(1,13648:6630773,19787353:25952256,513147,134348 +h1,13647:6630773,19787353:983040,0,0 +k1,13647:8837116,19787353:181281 +k1,13647:10037482,19787353:181281 +k1,13647:12773355,19787353:181280 +k1,13647:13613928,19787353:181281 +k1,13647:14814294,19787353:181281 +(1,13647:14814294,19787353:0,414482,115847 +r1,13697:19041390,19787353:4227096,530329,115847 +k1,13647:14814294,19787353:-4227096 +) +(1,13647:14814294,19787353:4227096,414482,115847 +k1,13647:14814294,19787353:3277 +h1,13647:19038113,19787353:0,411205,112570 +) +k1,13647:19222671,19787353:181281 +k1,13647:20793314,19787353:181280 +k1,13647:21909138,19787353:181281 +k1,13647:23945743,19787353:181281 +k1,13647:26612805,19787353:181281 +h1,13647:28155523,19787353:0,0,0 +k1,13647:28336803,19787353:181280 +k1,13647:29327454,19787353:181281 +k1,13647:31006888,19787353:181281 +h1,13647:32202265,19787353:0,0,0 +k1,13647:32583029,19787353:0 +) +(1,13648:6630773,20652433:25952256,513147,134348 +k1,13647:7857662,20652433:207804 +k1,13647:10421485,20652433:207804 +k1,13647:14410715,20652433:207803 +k1,13647:15150016,20652433:207804 +k1,13647:16424091,20652433:207804 +k1,13647:16987755,20652433:207804 +k1,13647:18779563,20652433:207803 +k1,13647:23677123,20652433:207804 +k1,13647:24571089,20652433:207804 +k1,13647:26593585,20652433:207804 +k1,13647:28190751,20652433:207803 +k1,13647:31015408,20652433:207804 +k1,13647:32583029,20652433:0 +) +(1,13648:6630773,21517513:25952256,505283,126483 +g1,13647:7461769,21517513 +g1,13647:9041842,21517513 +g1,13647:10448244,21517513 +g1,13647:12690230,21517513 +g1,13647:13505497,21517513 +g1,13647:14723811,21517513 +g1,13647:20451657,21517513 +g1,13647:21928183,21517513 +k1,13648:32583029,21517513:8625851 +g1,13648:32583029,21517513 +) +(1,13650:6630773,22382593:25952256,505283,126483 +h1,13649:6630773,22382593:983040,0,0 +k1,13649:8949327,22382593:293492 +k1,13649:11057511,22382593:293492 +k1,13649:12914037,22382593:293492 +k1,13649:14946199,22382593:293492 +k1,13649:17669766,22382593:293492 +k1,13649:18319119,22382593:293493 +k1,13649:20509878,22382593:293492 +k1,13649:24363941,22382593:293492 +k1,13649:25285268,22382593:293492 +k1,13649:26597845,22382593:293492 +k1,13649:29552754,22382593:293492 +k1,13649:31714677,22382593:293492 +k1,13649:32583029,22382593:0 +) +(1,13650:6630773,23247673:25952256,513147,126483 +k1,13649:7545328,23247673:227082 +k1,13649:8791495,23247673:227082 +k1,13649:10672051,23247673:227083 +k1,13649:12886840,23247673:227082 +k1,13649:13800084,23247673:227082 +k1,13649:16056161,23247673:227082 +k1,13649:17355412,23247673:227082 +k1,13649:18450846,23247673:227082 +k1,13649:21076547,23247673:227083 +k1,13649:21659489,23247673:227082 +k1,13649:26247337,23247673:227082 +k1,13649:30255846,23247673:227082 +k1,13649:32583029,23247673:0 +) +(1,13650:6630773,24112753:25952256,513147,134348 +k1,13649:7569950,24112753:279885 +k1,13649:8868921,24112753:279886 +k1,13649:11678496,24112753:279885 +k1,13649:12586216,24112753:279885 +k1,13649:15532107,24112753:279886 +k1,13649:16463420,24112753:279885 +k1,13649:17762391,24112753:279886 +k1,13649:20029983,24112753:279885 +k1,13649:22853320,24112753:279885 +k1,13649:24001558,24112753:279886 +k1,13649:25811709,24112753:279885 +k1,13649:26743022,24112753:279885 +k1,13649:28460113,24112753:279886 +k1,13649:29510701,24112753:279885 +k1,13649:32583029,24112753:0 +) +(1,13650:6630773,24977833:25952256,513147,134348 +k1,13649:9345987,24977833:156688 +(1,13649:9345987,24977833:0,459977,115847 +r1,13697:11462812,24977833:2116825,575824,115847 +k1,13649:9345987,24977833:-2116825 +) +(1,13649:9345987,24977833:2116825,459977,115847 +k1,13649:9345987,24977833:3277 +h1,13649:11459535,24977833:0,411205,112570 +) +k1,13649:11619500,24977833:156688 +k1,13649:13699015,24977833:156689 +k1,13649:14874788,24977833:156688 +k1,13649:16638419,24977833:156688 +k1,13649:20576534,24977833:156688 +k1,13649:21384650,24977833:156688 +k1,13649:22289104,24977833:156688 +k1,13649:26939597,24977833:156689 +k1,13649:29361865,24977833:156688 +k1,13649:30466204,24977833:156688 +(1,13649:30466204,24977833:0,459977,115847 +r1,13697:32583029,24977833:2116825,575824,115847 +k1,13649:30466204,24977833:-2116825 +) +(1,13649:30466204,24977833:2116825,459977,115847 +k1,13649:30466204,24977833:3277 +h1,13649:32579752,24977833:0,411205,112570 +) +k1,13649:32583029,24977833:0 +) +(1,13650:6630773,25842913:25952256,505283,122846 +g1,13649:7361499,25842913 +(1,13649:7361499,25842913:0,452978,122846 +r1,13697:10181748,25842913:2820249,575824,122846 +k1,13649:7361499,25842913:-2820249 +) +(1,13649:7361499,25842913:2820249,452978,122846 +k1,13649:7361499,25842913:3277 +h1,13649:10178471,25842913:0,411205,112570 +) +g1,13649:10380977,25842913 +g1,13649:11263091,25842913 +g1,13649:13818339,25842913 +k1,13650:32583029,25842913:14809592 +g1,13650:32583029,25842913 +) +v1,13652:6630773,26527768:0,393216,0 +(1,13671:6630773,35902638:25952256,9768086,196608 +g1,13671:6630773,35902638 +g1,13671:6630773,35902638 +g1,13671:6434165,35902638 +(1,13671:6434165,35902638:0,9768086,196608 +r1,13697:32779637,35902638:26345472,9964694,196608 +k1,13671:6434165,35902638:-26345472 +) +(1,13671:6434165,35902638:26345472,9768086,196608 +[1,13671:6630773,35902638:25952256,9571478,0 +(1,13654:6630773,26762205:25952256,431045,112852 +(1,13653:6630773,26762205:0,0,0 +g1,13653:6630773,26762205 +g1,13653:6630773,26762205 +g1,13653:6303093,26762205 +(1,13653:6303093,26762205:0,0,0 +) +g1,13653:6630773,26762205 +) +g1,13654:8290543,26762205 +g1,13654:9286405,26762205 +g1,13654:12605945,26762205 +g1,13654:13269853,26762205 +g1,13654:15593531,26762205 +g1,13654:17253301,26762205 +g1,13654:17917209,26762205 +g1,13654:22564564,26762205 +g1,13654:24888242,26762205 +g1,13654:25552150,26762205 +h1,13654:29867551,26762205:0,0,0 +k1,13654:32583029,26762205:2715478 +g1,13654:32583029,26762205 +) +(1,13655:6630773,27447060:25952256,431045,79822 +h1,13655:6630773,27447060:0,0,0 +k1,13655:6630773,27447060:0 +h1,13655:10282267,27447060:0,0,0 +k1,13655:32583029,27447060:22300762 +g1,13655:32583029,27447060 +) +(1,13670:6630773,28262987:25952256,431045,106246 +(1,13657:6630773,28262987:0,0,0 +g1,13657:6630773,28262987 +g1,13657:6630773,28262987 +g1,13657:6303093,28262987 +(1,13657:6303093,28262987:0,0,0 +) +g1,13657:6630773,28262987 +) +g1,13670:7626635,28262987 +g1,13670:10614220,28262987 +g1,13670:11610082,28262987 +g1,13670:14597667,28262987 +h1,13670:16257437,28262987:0,0,0 +k1,13670:32583029,28262987:16325592 +g1,13670:32583029,28262987 +) +(1,13670:6630773,28947842:25952256,398014,0 +h1,13670:6630773,28947842:0,0,0 +h1,13670:7294681,28947842:0,0,0 +k1,13670:32583029,28947842:25288348 +g1,13670:32583029,28947842 +) +(1,13670:6630773,29632697:25952256,424439,112852 +h1,13670:6630773,29632697:0,0,0 +g1,13670:7626635,29632697 +g1,13670:9950313,29632697 +g1,13670:14597668,29632697 +g1,13670:16589392,29632697 +h1,13670:17585254,29632697:0,0,0 +k1,13670:32583029,29632697:14997775 +g1,13670:32583029,29632697 +) +(1,13670:6630773,30317552:25952256,398014,0 +h1,13670:6630773,30317552:0,0,0 +h1,13670:7294681,30317552:0,0,0 +k1,13670:32583029,30317552:25288348 +g1,13670:32583029,30317552 +) +(1,13670:6630773,31002407:25952256,398014,106246 +h1,13670:6630773,31002407:0,0,0 +g1,13670:7626635,31002407 +g1,13670:10946174,31002407 +h1,13670:12605944,31002407:0,0,0 +k1,13670:32583028,31002407:19977084 +g1,13670:32583028,31002407 +) +(1,13670:6630773,31687262:25952256,398014,0 +h1,13670:6630773,31687262:0,0,0 +h1,13670:7294681,31687262:0,0,0 +k1,13670:32583029,31687262:25288348 +g1,13670:32583029,31687262 +) +(1,13670:6630773,32372117:25952256,431045,106246 +h1,13670:6630773,32372117:0,0,0 +g1,13670:7626635,32372117 +g1,13670:9618359,32372117 +g1,13670:11610083,32372117 +g1,13670:15925484,32372117 +g1,13670:18249162,32372117 +g1,13670:19245024,32372117 +h1,13670:20904794,32372117:0,0,0 +k1,13670:32583029,32372117:11678235 +g1,13670:32583029,32372117 +) +(1,13670:6630773,33056972:25952256,398014,0 +h1,13670:6630773,33056972:0,0,0 +h1,13670:7294681,33056972:0,0,0 +k1,13670:32583029,33056972:25288348 +g1,13670:32583029,33056972 +) +(1,13670:6630773,33741827:25952256,398014,0 +h1,13670:6630773,33741827:0,0,0 +h1,13670:7294681,33741827:0,0,0 +k1,13670:32583029,33741827:25288348 +g1,13670:32583029,33741827 +) +(1,13670:6630773,34426682:25952256,431045,6605 +h1,13670:6630773,34426682:0,0,0 +g1,13670:7626635,34426682 +g1,13670:7958589,34426682 +g1,13670:8290543,34426682 +g1,13670:8622497,34426682 +g1,13670:8954451,34426682 +g1,13670:9286405,34426682 +g1,13670:9618359,34426682 +g1,13670:10614221,34426682 +g1,13670:13601806,34426682 +g1,13670:15925484,34426682 +g1,13670:16921346,34426682 +g1,13670:19245024,34426682 +h1,13670:20240886,34426682:0,0,0 +k1,13670:32583029,34426682:12342143 +g1,13670:32583029,34426682 +) +(1,13670:6630773,35111537:25952256,407923,9908 +h1,13670:6630773,35111537:0,0,0 +g1,13670:7626635,35111537 +g1,13670:9286405,35111537 +g1,13670:9618359,35111537 +g1,13670:9950313,35111537 +g1,13670:10282267,35111537 +g1,13670:10614221,35111537 +g1,13670:10946175,35111537 +g1,13670:11278129,35111537 +g1,13670:11610083,35111537 +g1,13670:11942037,35111537 +g1,13670:12273991,35111537 +g1,13670:12605945,35111537 +g1,13670:12937899,35111537 +g1,13670:13269853,35111537 +g1,13670:13601807,35111537 +g1,13670:13933761,35111537 +g1,13670:14265715,35111537 +g1,13670:14597669,35111537 +g1,13670:14929623,35111537 +g1,13670:15261577,35111537 +g1,13670:15593531,35111537 +g1,13670:15925485,35111537 +g1,13670:16921347,35111537 +g1,13670:17253301,35111537 +g1,13670:17585255,35111537 +g1,13670:17917209,35111537 +g1,13670:18249163,35111537 +h1,13670:20240887,35111537:0,0,0 +k1,13670:32583029,35111537:12342142 +g1,13670:32583029,35111537 +) +(1,13670:6630773,35796392:25952256,407923,106246 +h1,13670:6630773,35796392:0,0,0 +g1,13670:7626635,35796392 +g1,13670:9618359,35796392 +g1,13670:9950313,35796392 +g1,13670:10614221,35796392 +g1,13670:10946175,35796392 +g1,13670:11278129,35796392 +g1,13670:13601807,35796392 +g1,13670:13933761,35796392 +g1,13670:14265715,35796392 +g1,13670:14597669,35796392 +g1,13670:14929623,35796392 +g1,13670:15261577,35796392 +g1,13670:15593531,35796392 +g1,13670:15925485,35796392 +g1,13670:16921347,35796392 +g1,13670:17253301,35796392 +g1,13670:17585255,35796392 +g1,13670:17917209,35796392 +g1,13670:18249163,35796392 +g1,13670:18581117,35796392 +h1,13670:20240887,35796392:0,0,0 +k1,13670:32583029,35796392:12342142 +g1,13670:32583029,35796392 +) +] +) +g1,13671:32583029,35902638 +g1,13671:6630773,35902638 +g1,13671:6630773,35902638 +g1,13671:32583029,35902638 +g1,13671:32583029,35902638 +) +h1,13671:6630773,36099246:0,0,0 +(1,13675:6630773,36964326:25952256,513147,126483 +h1,13674:6630773,36964326:983040,0,0 +k1,13674:8963974,36964326:153474 +k1,13674:11765758,36964326:153474 +k1,13674:13486853,36964326:153474 +k1,13674:14659412,36964326:153474 +(1,13674:14659412,36964326:0,452978,115847 +r1,13697:17127949,36964326:2468537,568825,115847 +k1,13674:14659412,36964326:-2468537 +) +(1,13674:14659412,36964326:2468537,452978,115847 +k1,13674:14659412,36964326:3277 +h1,13674:17124672,36964326:0,411205,112570 +) +k1,13674:17281424,36964326:153475 +k1,13674:19889221,36964326:153474 +k1,13674:20990346,36964326:153474 +k1,13674:22552143,36964326:153428 +k1,13674:23723392,36964326:153475 +k1,13674:24977871,36964326:153474 +k1,13674:26823485,36964326:153474 +k1,13674:30493621,36964326:153474 +k1,13674:31298523,36964326:153474 +k1,13674:32583029,36964326:0 +) +(1,13675:6630773,37829406:25952256,513147,134348 +k1,13674:7750685,37829406:172261 +k1,13674:8851564,37829406:172234 +k1,13674:10215269,37829406:172260 +k1,13674:11147748,37829406:172261 +k1,13674:13759259,37829406:172261 +k1,13674:14740890,37829406:172261 +k1,13674:18650668,37829406:172260 +k1,13674:20014374,37829406:172261 +k1,13674:20718132,37829406:172261 +k1,13674:24272706,37829406:172261 +k1,13674:25131128,37829406:172260 +k1,13674:25659249,37829406:172261 +k1,13674:30557967,37829406:172261 +k1,13674:32583029,37829406:0 +) +(1,13675:6630773,38694486:25952256,513147,134348 +k1,13674:7394973,38694486:232703 +k1,13674:10340211,38694486:232703 +k1,13674:13934911,38694486:232703 +k1,13674:14976984,38694486:232703 +k1,13674:16228772,38694486:232703 +k1,13674:21089628,38694486:232703 +k1,13674:21981623,38694486:232703 +k1,13674:23233411,38694486:232703 +k1,13674:25453821,38694486:232703 +k1,13674:26877969,38694486:232703 +k1,13674:28673706,38694486:232703 +k1,13674:29859958,38694486:232703 +k1,13674:31490544,38694486:232703 +k1,13675:32583029,38694486:0 +) +(1,13675:6630773,39559566:25952256,473825,134348 +(1,13674:6630773,39559566:0,452978,115847 +r1,13697:7692462,39559566:1061689,568825,115847 +k1,13674:6630773,39559566:-1061689 +) +(1,13674:6630773,39559566:1061689,452978,115847 +k1,13674:6630773,39559566:3277 +h1,13674:7689185,39559566:0,411205,112570 +) +g1,13674:7891691,39559566 +g1,13674:8777082,39559566 +g1,13674:9747014,39559566 +g1,13674:13018571,39559566 +g1,13674:13869228,39559566 +g1,13674:16457900,39559566 +g1,13674:17427832,39559566 +$1,13674:17427832,39559566 +$1,13674:17872821,39559566 +k1,13675:32583029,39559566:13132101 +g1,13675:32583029,39559566 +) +v1,13677:6630773,40244421:0,393216,0 +(1,13697:6630773,45510161:25952256,5658956,196608 +g1,13697:6630773,45510161 +g1,13697:6630773,45510161 +g1,13697:6434165,45510161 +(1,13697:6434165,45510161:0,5658956,196608 +r1,13697:32779637,45510161:26345472,5855564,196608 +k1,13697:6434165,45510161:-26345472 +) +(1,13697:6434165,45510161:26345472,5658956,196608 +[1,13697:6630773,45510161:25952256,5462348,0 +(1,13679:6630773,40478858:25952256,431045,86428 +(1,13678:6630773,40478858:0,0,0 +g1,13678:6630773,40478858 +g1,13678:6630773,40478858 +g1,13678:6303093,40478858 +(1,13678:6303093,40478858:0,0,0 +) +g1,13678:6630773,40478858 +) +k1,13679:6630773,40478858:0 +g1,13679:10614221,40478858 +g1,13679:12273991,40478858 +g1,13679:12937899,40478858 +h1,13679:14265715,40478858:0,0,0 +k1,13679:32583029,40478858:18317314 +g1,13679:32583029,40478858 +) +(1,13696:6630773,41294785:25952256,431045,106246 +(1,13681:6630773,41294785:0,0,0 +g1,13681:6630773,41294785 +g1,13681:6630773,41294785 +g1,13681:6303093,41294785 +(1,13681:6303093,41294785:0,0,0 +) +g1,13681:6630773,41294785 +) +g1,13696:7626635,41294785 +g1,13696:10614220,41294785 +g1,13696:11610082,41294785 +g1,13696:14597667,41294785 +h1,13696:16257437,41294785:0,0,0 +k1,13696:32583029,41294785:16325592 +g1,13696:32583029,41294785 +) +(1,13696:6630773,41979640:25952256,398014,0 +h1,13696:6630773,41979640:0,0,0 +h1,13696:7294681,41979640:0,0,0 +k1,13696:32583029,41979640:25288348 +g1,13696:32583029,41979640 +) +(1,13696:6630773,42664495:25952256,424439,112852 +h1,13696:6630773,42664495:0,0,0 +g1,13696:7626635,42664495 +g1,13696:9950313,42664495 +g1,13696:14597668,42664495 +g1,13696:16589392,42664495 +h1,13696:17585254,42664495:0,0,0 +k1,13696:32583029,42664495:14997775 +g1,13696:32583029,42664495 +) +(1,13696:6630773,43349350:25952256,398014,0 +h1,13696:6630773,43349350:0,0,0 +h1,13696:7294681,43349350:0,0,0 +k1,13696:32583029,43349350:25288348 +g1,13696:32583029,43349350 +) +(1,13696:6630773,44034205:25952256,398014,106246 +h1,13696:6630773,44034205:0,0,0 +g1,13696:7626635,44034205 +g1,13696:10946174,44034205 +h1,13696:12605944,44034205:0,0,0 +k1,13696:32583028,44034205:19977084 +g1,13696:32583028,44034205 +) +(1,13696:6630773,44719060:25952256,398014,0 +h1,13696:6630773,44719060:0,0,0 +h1,13696:7294681,44719060:0,0,0 +k1,13696:32583029,44719060:25288348 +g1,13696:32583029,44719060 +) +(1,13696:6630773,45403915:25952256,431045,106246 +h1,13696:6630773,45403915:0,0,0 +g1,13696:7626635,45403915 +g1,13696:9618359,45403915 +g1,13696:11610083,45403915 +g1,13696:15925484,45403915 +g1,13696:18249162,45403915 +g1,13696:19245024,45403915 +h1,13696:20904794,45403915:0,0,0 +k1,13696:32583029,45403915:11678235 +g1,13696:32583029,45403915 +) +] +) +g1,13697:32583029,45510161 +g1,13697:6630773,45510161 +g1,13697:6630773,45510161 +g1,13697:32583029,45510161 +g1,13697:32583029,45510161 +) +] +(1,13697:32583029,45706769:0,0,0 +g1,13697:32583029,45706769 +) +) +] +(1,13697:6630773,47279633:25952256,0,0 +h1,13697:6630773,47279633:25952256,0,0 +) +] +(1,13697:4262630,4025873:0,0,0 +[1,13697:-473656,4025873:0,0,0 +(1,13697:-473656,-710413:0,0,0 +(1,13697:-473656,-710413:0,0,0 +g1,13697:-473656,-710413 ) +g1,13697:-473656,-710413 +) +] +) +] +!29813 +}221 +Input:2088:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!106 +{222 +[1,13767:4262630,47279633:28320399,43253760,0 +(1,13767:4262630,4025873:0,0,0 +[1,13767:-473656,4025873:0,0,0 +(1,13767:-473656,-710413:0,0,0 +(1,13767:-473656,-644877:0,0,0 +k1,13767:-473656,-644877:-65536 ) -] -[1,14139:3078558,4812305:0,0,0 -(1,14139:3078558,2439708:0,1703936,0 -g1,14139:29030814,2439708 -g1,14139:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,14139:36151628,1915420:16384,1179648,0 +(1,13767:-473656,4736287:0,0,0 +k1,13767:-473656,4736287:5209943 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +g1,13767:-473656,-710413 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,14139:37855564,2439708:1179648,16384,0 +[1,13767:6630773,47279633:25952256,43253760,0 +[1,13767:6630773,4812305:25952256,786432,0 +(1,13767:6630773,4812305:25952256,505283,11795 +(1,13767:6630773,4812305:25952256,505283,11795 +g1,13767:3078558,4812305 +[1,13767:3078558,4812305:0,0,0 +(1,13767:3078558,2439708:0,1703936,0 +k1,13767:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,13767:2537886,2439708:1179648,16384,0 ) +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,13767:3078558,1915420:16384,1179648,0 ) -k1,14139:3078556,2439708:-34777008 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] -[1,14139:3078558,4812305:0,0,0 -(1,14139:3078558,49800853:0,16384,2228224 -k1,14139:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,14139:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,14139:3078558,51504789:16384,1179648,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 ) ] +[1,13767:3078558,4812305:0,0,0 +(1,13767:3078558,2439708:0,1703936,0 +g1,13767:29030814,2439708 +g1,13767:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,13767:36151628,1915420:16384,1179648,0 ) -) +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] -[1,14139:3078558,4812305:0,0,0 -(1,14139:3078558,49800853:0,16384,2228224 -g1,14139:29030814,49800853 -g1,14139:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,14139:36151628,51504789:16384,1179648,0 ) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,13767:37855564,2439708:1179648,16384,0 ) -] ) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,14139:37855564,49800853:1179648,16384,0 +k1,13767:3078556,2439708:-34777008 +) +] +[1,13767:3078558,4812305:0,0,0 +(1,13767:3078558,49800853:0,16384,2228224 +k1,13767:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,13767:2537886,49800853:1179648,16384,0 ) +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,13767:3078558,51504789:16384,1179648,0 ) -k1,14139:3078556,49800853:-34777008 +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 ) ] -g1,14139:6630773,4812305 -g1,14139:6630773,4812305 -g1,14139:8691224,4812305 -g1,14139:11722264,4812305 -k1,14139:31387652,4812305:19665388 -) -) -] -[1,14139:6630773,45706769:25952256,40108032,0 -(1,14139:6630773,45706769:25952256,40108032,0 -(1,14139:6630773,45706769:0,0,0 -g1,14139:6630773,45706769 -) -[1,14139:6630773,45706769:25952256,40108032,0 -(1,14068:6630773,6254097:25952256,513147,134348 -k1,14067:7437047,6254097:146982 -k1,14067:10330644,6254097:146983 -(1,14067:10330644,6254097:0,414482,115847 -r1,14139:10688910,6254097:358266,530329,115847 -k1,14067:10330644,6254097:-358266 -) -(1,14067:10330644,6254097:358266,414482,115847 -k1,14067:10330644,6254097:3277 -h1,14067:10685633,6254097:0,411205,112570 -) -k1,14067:10835892,6254097:146982 -k1,14067:12174319,6254097:146982 -k1,14067:15218649,6254097:146983 -k1,14067:17326468,6254097:146982 -k1,14067:18239566,6254097:146982 -k1,14067:21579463,6254097:146983 -k1,14067:23318315,6254097:146982 -k1,14067:25566381,6254097:146982 -k1,14067:26904809,6254097:146983 -k1,14067:30847636,6254097:146982 -k1,14067:32583029,6254097:0 -) -(1,14068:6630773,7095585:25952256,513147,134348 -k1,14067:9883591,7095585:175903 -(1,14067:9883591,7095585:0,414482,115847 -r1,14139:10241857,7095585:358266,530329,115847 -k1,14067:9883591,7095585:-358266 -) -(1,14067:9883591,7095585:358266,414482,115847 -k1,14067:9883591,7095585:3277 -h1,14067:10238580,7095585:0,411205,112570 -) -k1,14067:10417760,7095585:175903 -k1,14067:11785108,7095585:175903 -(1,14067:11785108,7095585:0,414482,115847 -r1,14139:12143374,7095585:358266,530329,115847 -k1,14067:11785108,7095585:-358266 -) -(1,14067:11785108,7095585:358266,414482,115847 -k1,14067:11785108,7095585:3277 -h1,14067:12140097,7095585:0,411205,112570 -) -k1,14067:12492947,7095585:175903 -k1,14067:13865537,7095585:175903 -k1,14067:16125486,7095585:175904 -k1,14067:20502902,7095585:175903 -k1,14067:21294843,7095585:175903 -k1,14067:22904674,7095585:175903 -k1,14067:23495397,7095585:175880 -k1,14067:25683255,7095585:175903 -k1,14067:28742087,7095585:175903 -k1,14067:29679518,7095585:175903 -k1,14067:31923737,7095585:175903 -k1,14067:32583029,7095585:0 -) -(1,14068:6630773,7937073:25952256,505283,134348 -k1,14067:10874066,7937073:215450 -k1,14067:11814343,7937073:215449 -k1,14067:12487890,7937073:215450 -k1,14067:13234836,7937073:215449 -k1,14067:14736102,7937073:215450 -k1,14067:17581511,7937073:215449 -k1,14067:18448389,7937073:215450 -k1,14067:21097845,7937073:215449 -k1,14067:23005435,7937073:215450 -k1,14067:27016729,7937073:215449 -k1,14067:27993707,7937073:215450 -k1,14067:31563944,7937073:215449 -k1,14067:32583029,7937073:0 -) -(1,14068:6630773,8778561:25952256,513147,126483 -g1,14067:7922487,8778561 -g1,14067:8788872,8778561 -(1,14067:8788872,8778561:0,414482,115847 -r1,14139:9147138,8778561:358266,530329,115847 -k1,14067:8788872,8778561:-358266 -) -(1,14067:8788872,8778561:358266,414482,115847 -k1,14067:8788872,8778561:3277 -h1,14067:9143861,8778561:0,411205,112570 -) -g1,14067:9346367,8778561 -g1,14067:10737041,8778561 -k1,14068:32583028,8778561:17818144 -g1,14068:32583028,8778561 -) -(1,14070:6630773,9620049:25952256,513147,126483 -h1,14069:6630773,9620049:983040,0,0 -k1,14069:9083487,9620049:272987 -k1,14069:11009947,9620049:272987 -k1,14069:13924691,9620049:272988 -k1,14069:14883840,9620049:272987 -k1,14069:16104478,9620049:272987 -k1,14069:19653610,9620049:272987 -k1,14069:23003512,9620049:272987 -k1,14069:24268059,9620049:272987 -k1,14069:26054273,9620049:272988 -k1,14069:27274911,9620049:272987 -k1,14069:29535605,9620049:272987 -k1,14069:32583029,9620049:0 -) -(1,14070:6630773,10461537:25952256,513147,134348 -k1,14069:8938653,10461537:212694 -k1,14069:9507207,10461537:212694 -k1,14069:12437024,10461537:212694 -k1,14069:15291474,10461537:212694 -k1,14069:16495728,10461537:212694 -k1,14069:20298485,10461537:212695 -k1,14069:23628071,10461537:212694 -k1,14069:24492193,10461537:212694 -k1,14069:27248339,10461537:212694 -k1,14069:29718748,10461537:212694 -k1,14069:31714677,10461537:212694 -k1,14069:32583029,10461537:0 -) -(1,14070:6630773,11303025:25952256,513147,134348 -k1,14069:8544928,11303025:176140 -k1,14069:9491772,11303025:176141 -k1,14069:12944057,11303025:176140 -k1,14069:16194492,11303025:176141 -k1,14069:17655138,11303025:176140 -k1,14069:19600096,11303025:176141 -k1,14069:20524002,11303025:176140 -k1,14069:24290205,11303025:176141 -k1,14069:25152507,11303025:176140 -k1,14069:27066663,11303025:176141 -k1,14069:28564664,11303025:176140 -k1,14069:29400097,11303025:176141 -k1,14069:30595322,11303025:176140 -k1,14069:32583029,11303025:0 -) -(1,14070:6630773,12144513:25952256,513147,126483 -k1,14069:9330856,12144513:156631 -k1,14069:10355838,12144513:156630 -k1,14069:12042735,12144513:156631 -k1,14069:12850794,12144513:156631 -k1,14069:15906081,12144513:156630 -k1,14069:16520809,12144513:156631 -k1,14069:17438968,12144513:156631 -k1,14069:19663914,12144513:156630 -k1,14069:20479837,12144513:156631 -k1,14069:21655553,12144513:156631 -k1,14069:24272405,12144513:156630 -k1,14069:27124532,12144513:156631 -(1,14069:27124532,12144513:0,452978,115847 -r1,14139:28186221,12144513:1061689,568825,115847 -k1,14069:27124532,12144513:-1061689 -) -(1,14069:27124532,12144513:1061689,452978,115847 -k1,14069:27124532,12144513:3277 -h1,14069:28182944,12144513:0,411205,112570 -) -k1,14069:28516522,12144513:156631 -k1,14069:29869839,12144513:156630 -k1,14069:31410590,12144513:156631 -k1,14069:32583029,12144513:0 -) -(1,14070:6630773,12986001:25952256,513147,126483 -k1,14069:9790085,12986001:167593 -k1,14069:11918515,12986001:167593 -k1,14069:14959863,12986001:167594 -k1,14069:16075107,12986001:167593 -k1,14069:18560708,12986001:167593 -k1,14069:20122252,12986001:167593 -k1,14069:21665446,12986001:167593 -k1,14069:22989749,12986001:167593 -k1,14069:26923042,12986001:167594 -k1,14069:29775645,12986001:167593 -k1,14069:31422386,12986001:167593 -k1,14070:32583029,12986001:0 -) -(1,14070:6630773,13827489:25952256,513147,134348 -k1,14069:8739015,13827489:182139 -k1,14069:10067380,13827489:182140 -k1,14069:12119917,13827489:182139 -k1,14069:13321142,13827489:182140 -k1,14069:17268980,13827489:182139 -k1,14069:19962459,13827489:182139 -k1,14069:21277061,13827489:182140 -k1,14069:22206966,13827489:182139 -k1,14069:25597748,13827489:182139 -k1,14069:26589258,13827489:182140 -k1,14069:27790482,13827489:182139 -k1,14069:28768229,13827489:182140 -k1,14069:30648406,13827489:182139 -k1,14069:32583029,13827489:0 -) -(1,14070:6630773,14668977:25952256,513147,126483 -k1,14069:7823965,14668977:174107 -k1,14069:9985779,14668977:174107 -k1,14069:10811314,14668977:174107 -k1,14069:12548455,14668977:174107 -k1,14069:13350397,14668977:174107 -k1,14069:14543589,14668977:174107 -k1,14069:16023829,14668977:174107 -k1,14069:17565018,14668977:174108 -k1,14069:19607556,14668977:174107 -k1,14069:20650015,14668977:174107 -k1,14069:22354388,14668977:174107 -k1,14069:23179923,14668977:174107 -k1,14069:26251377,14668977:174107 -k1,14069:28723832,14668977:174107 -k1,14069:29917024,14668977:174107 -k1,14069:32583029,14668977:0 -) -(1,14070:6630773,15510465:25952256,513147,126483 -k1,14069:7440294,15510465:150229 -k1,14069:8609607,15510465:150228 -k1,14069:9932275,15510465:150229 -k1,14069:12924144,15510465:150228 -k1,14069:14341839,15510465:150229 -k1,14069:16000707,15510465:150229 -k1,14069:17689720,15510465:150228 -k1,14069:20369639,15510465:150229 -k1,14069:23621687,15510465:150229 -k1,14069:25152103,15510465:150228 -k1,14069:27258582,15510465:150229 -k1,14069:28156576,15510465:150228 -k1,14069:31896867,15510465:150229 -k1,14069:32583029,15510465:0 -) -(1,14070:6630773,16351953:25952256,505283,126483 -k1,14069:7995596,16351953:192384 -k1,14069:10890684,16351953:192383 -k1,14069:14848767,16351953:192384 -k1,14069:17882792,16351953:192384 -k1,14069:18691214,16351953:192384 -k1,14069:19902682,16351953:192383 -k1,14069:22256443,16351953:192384 -k1,14069:23076662,16351953:192384 -k1,14069:24288131,16351953:192384 -k1,14069:26721845,16351953:192383 -k1,14069:28454980,16351953:192384 -(1,14069:28454980,16351953:0,452978,122846 -r1,14139:30220093,16351953:1765113,575824,122846 -k1,14069:28454980,16351953:-1765113 -) -(1,14069:28454980,16351953:1765113,452978,122846 -k1,14069:28454980,16351953:3277 -h1,14069:30216816,16351953:0,411205,112570 -) -k1,14069:30412477,16351953:192384 -k1,14069:32583029,16351953:0 -) -(1,14070:6630773,17193441:25952256,513147,126483 -k1,14069:7624845,17193441:246306 -k1,14069:11461213,17193441:246306 -k1,14069:12393681,17193441:246306 -k1,14069:13961848,17193441:246306 -k1,14069:14867446,17193441:246306 -k1,14069:16132837,17193441:246306 -k1,14069:18366850,17193441:246306 -k1,14069:21330279,17193441:246306 -k1,14069:22768030,17193441:246306 -k1,14069:27239442,17193441:246306 -k1,14069:28978658,17193441:246306 -k1,14069:30291235,17193441:246306 -k1,14069:32583029,17193441:0 -) -(1,14070:6630773,18034929:25952256,505283,134348 -g1,14069:10056995,18034929 -g1,14069:13738807,18034929 -g1,14069:16208859,18034929 -g1,14069:17900998,18034929 -g1,14069:19119312,18034929 -g1,14069:22758526,18034929 -g1,14069:25163042,18034929 -g1,14069:26048433,18034929 -g1,14069:27036060,18034929 -k1,14070:32583029,18034929:2300971 -g1,14070:32583029,18034929 -) -v1,14072:6630773,19195363:0,393216,0 -(1,14077:6630773,20176637:25952256,1374490,196608 -g1,14077:6630773,20176637 -g1,14077:6630773,20176637 -g1,14077:6434165,20176637 -(1,14077:6434165,20176637:0,1374490,196608 -r1,14139:32779637,20176637:26345472,1571098,196608 -k1,14077:6434165,20176637:-26345472 -) -(1,14077:6434165,20176637:26345472,1374490,196608 -[1,14077:6630773,20176637:25952256,1177882,0 -(1,14074:6630773,19402981:25952256,404226,101187 -(1,14073:6630773,19402981:0,0,0 -g1,14073:6630773,19402981 -g1,14073:6630773,19402981 -g1,14073:6303093,19402981 -(1,14073:6303093,19402981:0,0,0 -) -g1,14073:6630773,19402981 -) -g1,14074:7263065,19402981 -g1,14074:7895357,19402981 -g1,14074:9476086,19402981 -g1,14074:10108378,19402981 -h1,14074:11056815,19402981:0,0,0 -k1,14074:32583029,19402981:21526214 -g1,14074:32583029,19402981 -) -(1,14075:6630773,20069159:25952256,404226,107478 -h1,14075:6630773,20069159:0,0,0 -g1,14075:7263065,20069159 -g1,14075:7895357,20069159 -g1,14075:10108377,20069159 -g1,14075:10740669,20069159 -h1,14075:11689106,20069159:0,0,0 -k1,14075:32583030,20069159:20893924 -g1,14075:32583030,20069159 -) -] -) -g1,14077:32583029,20176637 -g1,14077:6630773,20176637 -g1,14077:6630773,20176637 -g1,14077:32583029,20176637 -g1,14077:32583029,20176637 -) -h1,14077:6630773,20373245:0,0,0 -(1,14081:6630773,21708988:25952256,513147,134348 -h1,14080:6630773,21708988:983040,0,0 -k1,14080:8200926,21708988:172270 -k1,14080:10916674,21708988:172296 -k1,14080:13173016,21708988:172297 -k1,14080:15357268,21708988:172297 -k1,14080:18916465,21708988:172296 -k1,14080:20657039,21708988:172297 -k1,14080:21776986,21708988:172296 -k1,14080:25198558,21708988:172297 -k1,14080:28836398,21708988:172296 -k1,14080:31025238,21708988:172297 -k1,14080:32583029,21708988:0 -) -(1,14081:6630773,22550476:25952256,513147,134348 -k1,14080:8571221,22550476:258794 -k1,14080:13161945,22550476:258794 -k1,14080:14989016,22550476:258794 -k1,14080:15907102,22550476:258794 -k1,14080:18810930,22550476:258795 -k1,14080:22117148,22550476:258794 -k1,14080:24261413,22550476:258794 -k1,14080:25467858,22550476:258794 -k1,14080:28412973,22550476:258794 -k1,14080:32583029,22550476:0 -) -(1,14081:6630773,23391964:25952256,505283,134348 -k1,14080:9267001,23391964:217294 -k1,14080:11205269,23391964:217293 -k1,14080:13451558,23391964:217294 -k1,14080:14860296,23391964:217293 -k1,14080:16181872,23391964:217294 -k1,14080:19028470,23391964:217294 -k1,14080:21421558,23391964:217293 -k1,14080:22456741,23391964:217294 -k1,14080:24113861,23391964:217294 -k1,14080:26360149,23391964:217293 -k1,14080:29324057,23391964:217294 -(1,14080:29324057,23391964:0,414482,115847 -r1,14139:29682323,23391964:358266,530329,115847 -k1,14080:29324057,23391964:-358266 -) -(1,14080:29324057,23391964:358266,414482,115847 -k1,14080:29324057,23391964:3277 -h1,14080:29679046,23391964:0,411205,112570 -) -k1,14080:29899616,23391964:217293 -k1,14080:31837885,23391964:217294 -k1,14080:32583029,23391964:0 -) -(1,14081:6630773,24233452:25952256,513147,134348 -k1,14080:8368636,24233452:170242 -k1,14080:10657003,24233452:170243 -k1,14080:11478673,24233452:170242 -k1,14080:14546262,24233452:170242 -k1,14080:17248161,24233452:170243 -k1,14080:18184519,24233452:170242 -k1,14080:19373846,24233452:170242 -k1,14080:23009632,24233452:170242 -k1,14080:25022747,24233452:170243 -k1,14080:25809027,24233452:170242 -k1,14080:26335129,24233452:170242 -k1,14080:27595236,24233452:170243 -k1,14080:30421652,24233452:170242 -k1,14081:32583029,24233452:0 -k1,14081:32583029,24233452:0 -) -v1,14083:6630773,25393886:0,393216,0 -(1,14087:6630773,25686962:25952256,686292,196608 -g1,14087:6630773,25686962 -g1,14087:6630773,25686962 -g1,14087:6434165,25686962 -(1,14087:6434165,25686962:0,686292,196608 -r1,14139:32779637,25686962:26345472,882900,196608 -k1,14087:6434165,25686962:-26345472 -) -(1,14087:6434165,25686962:26345472,686292,196608 -[1,14087:6630773,25686962:25952256,489684,0 -(1,14085:6630773,25585775:25952256,388497,101187 -(1,14084:6630773,25585775:0,0,0 -g1,14084:6630773,25585775 -g1,14084:6630773,25585775 -g1,14084:6303093,25585775 -(1,14084:6303093,25585775:0,0,0 -) -g1,14084:6630773,25585775 -) -g1,14085:7263065,25585775 -g1,14085:7895357,25585775 -g1,14085:8843794,25585775 -g1,14085:9476086,25585775 -g1,14085:10424523,25585775 -g1,14085:11056815,25585775 -g1,14085:12005252,25585775 -g1,14085:12637544,25585775 -g1,14085:14534418,25585775 -g1,14085:15166710,25585775 -g1,14085:17063584,25585775 -g1,14085:17695876,25585775 -g1,14085:19592750,25585775 -g1,14085:20225042,25585775 -h1,14085:22754207,25585775:0,0,0 -k1,14085:32583029,25585775:9828822 -g1,14085:32583029,25585775 -) -] -) -g1,14087:32583029,25686962 -g1,14087:6630773,25686962 -g1,14087:6630773,25686962 -g1,14087:32583029,25686962 -g1,14087:32583029,25686962 -) -h1,14087:6630773,25883570:0,0,0 -(1,14091:6630773,27219313:25952256,505283,126483 -h1,14090:6630773,27219313:983040,0,0 -g1,14090:9039221,27219313 -g1,14090:9986216,27219313 -g1,14090:12904534,27219313 -g1,14090:13865291,27219313 -g1,14090:14420380,27219313 -g1,14090:16974973,27219313 -k1,14091:32583029,27219313:12129405 -g1,14091:32583029,27219313 -) -v1,14093:6630773,28379747:0,393216,0 -(1,14097:6630773,28672823:25952256,686292,196608 -g1,14097:6630773,28672823 -g1,14097:6630773,28672823 -g1,14097:6434165,28672823 -(1,14097:6434165,28672823:0,686292,196608 -r1,14139:32779637,28672823:26345472,882900,196608 -k1,14097:6434165,28672823:-26345472 -) -(1,14097:6434165,28672823:26345472,686292,196608 -[1,14097:6630773,28672823:25952256,489684,0 -(1,14095:6630773,28571636:25952256,388497,101187 -(1,14094:6630773,28571636:0,0,0 -g1,14094:6630773,28571636 -g1,14094:6630773,28571636 -g1,14094:6303093,28571636 -(1,14094:6303093,28571636:0,0,0 -) -g1,14094:6630773,28571636 -) -g1,14095:7263065,28571636 -g1,14095:7895357,28571636 -g1,14095:8843794,28571636 -g1,14095:9476086,28571636 -g1,14095:10424523,28571636 -g1,14095:11056815,28571636 -h1,14095:11689106,28571636:0,0,0 -k1,14095:32583030,28571636:20893924 -g1,14095:32583030,28571636 -) -] -) -g1,14097:32583029,28672823 -g1,14097:6630773,28672823 -g1,14097:6630773,28672823 -g1,14097:32583029,28672823 -g1,14097:32583029,28672823 -) -h1,14097:6630773,28869431:0,0,0 -(1,14101:6630773,30205174:25952256,513147,126483 -h1,14100:6630773,30205174:983040,0,0 -k1,14100:9578146,30205174:181098 -k1,14100:10778328,30205174:181097 -k1,14100:12947133,30205174:181098 -k1,14100:13779658,30205174:181097 -k1,14100:14708522,30205174:181098 -k1,14100:17721430,30205174:181097 -k1,14100:19395438,30205174:181098 -k1,14100:20642807,30205174:181098 -k1,14100:23161573,30205174:181097 -k1,14100:24108787,30205174:181098 -k1,14100:26919844,30205174:181097 -k1,14100:30566486,30205174:181098 -k1,14100:32583029,30205174:0 -) -(1,14101:6630773,31046662:25952256,505283,126483 -g1,14100:7698354,31046662 -g1,14100:9001865,31046662 -g1,14100:11912974,31046662 -g1,14100:13131288,31046662 -g1,14100:15685881,31046662 -g1,14100:18574708,31046662 -g1,14100:20167888,31046662 -k1,14101:32583029,31046662:8387298 -g1,14101:32583029,31046662 -) -v1,14103:6630773,32207096:0,393216,0 -(1,14108:6630773,33182079:25952256,1368199,196608 -g1,14108:6630773,33182079 -g1,14108:6630773,33182079 -g1,14108:6434165,33182079 -(1,14108:6434165,33182079:0,1368199,196608 -r1,14139:32779637,33182079:26345472,1564807,196608 -k1,14108:6434165,33182079:-26345472 -) -(1,14108:6434165,33182079:26345472,1368199,196608 -[1,14108:6630773,33182079:25952256,1171591,0 -(1,14105:6630773,32414714:25952256,404226,101187 -(1,14104:6630773,32414714:0,0,0 -g1,14104:6630773,32414714 -g1,14104:6630773,32414714 -g1,14104:6303093,32414714 -(1,14104:6303093,32414714:0,0,0 -) -g1,14104:6630773,32414714 -) -g1,14105:7263065,32414714 -g1,14105:7895357,32414714 -g1,14105:8843794,32414714 -g1,14105:9476086,32414714 -g1,14105:10740669,32414714 -g1,14105:11372961,32414714 -h1,14105:12321398,32414714:0,0,0 -k1,14105:32583030,32414714:20261632 -g1,14105:32583030,32414714 -) -(1,14106:6630773,33080892:25952256,388497,101187 -h1,14106:6630773,33080892:0,0,0 -g1,14106:7263065,33080892 -g1,14106:7895357,33080892 -g1,14106:8843794,33080892 -g1,14106:9476086,33080892 -g1,14106:10424523,33080892 -g1,14106:11056815,33080892 -g1,14106:12005252,33080892 -g1,14106:12637544,33080892 -h1,14106:14218272,33080892:0,0,0 -k1,14106:32583028,33080892:18364756 -g1,14106:32583028,33080892 -) -] -) -g1,14108:32583029,33182079 -g1,14108:6630773,33182079 -g1,14108:6630773,33182079 -g1,14108:32583029,33182079 -g1,14108:32583029,33182079 -) -h1,14108:6630773,33378687:0,0,0 -(1,14112:6630773,34714430:25952256,513147,134348 -h1,14111:6630773,34714430:983040,0,0 -g1,14111:9275150,34714430 -g1,14111:10493464,34714430 -g1,14111:11865132,34714430 -g1,14111:14052068,34714430 -g1,14111:17125051,34714430 -g1,14111:19179604,34714430 -g1,14111:20370393,34714430 -g1,14111:24048273,34714430 -g1,14111:25351784,34714430 -g1,14111:26298779,34714430 -g1,14111:27937834,34714430 -g1,14111:29872456,34714430 -(1,14111:29872456,34714430:0,452978,115847 -r1,14139:32340993,34714430:2468537,568825,115847 -k1,14111:29872456,34714430:-2468537 -) -(1,14111:29872456,34714430:2468537,452978,115847 -k1,14111:29872456,34714430:3277 -h1,14111:32337716,34714430:0,411205,112570 -) -k1,14112:32583029,34714430:242036 -g1,14112:32583029,34714430 -) -v1,14114:6630773,35874864:0,393216,0 -(1,14139:6630773,45510161:25952256,10028513,196608 -g1,14139:6630773,45510161 -g1,14139:6630773,45510161 -g1,14139:6434165,45510161 -(1,14139:6434165,45510161:0,10028513,196608 -r1,14139:32779637,45510161:26345472,10225121,196608 -k1,14139:6434165,45510161:-26345472 -) -(1,14139:6434165,45510161:26345472,10028513,196608 -[1,14139:6630773,45510161:25952256,9831905,0 -(1,14116:6630773,36082482:25952256,404226,101187 -(1,14115:6630773,36082482:0,0,0 -g1,14115:6630773,36082482 -g1,14115:6630773,36082482 -g1,14115:6303093,36082482 -(1,14115:6303093,36082482:0,0,0 -) -g1,14115:6630773,36082482 -) -k1,14116:6630773,36082482:0 -g1,14116:9159938,36082482 -g1,14116:9792230,36082482 -g1,14116:10740667,36082482 -g1,14116:11372959,36082482 -g1,14116:12637542,36082482 -g1,14116:13269834,36082482 -h1,14116:14534417,36082482:0,0,0 -k1,14116:32583029,36082482:18048612 -g1,14116:32583029,36082482 -) -(1,14138:6630773,36748660:25952256,404226,101187 -(1,14118:6630773,36748660:0,0,0 -g1,14118:6630773,36748660 -g1,14118:6630773,36748660 -g1,14118:6303093,36748660 -(1,14118:6303093,36748660:0,0,0 -) -g1,14118:6630773,36748660 -) -g1,14138:7579210,36748660 -g1,14138:8211502,36748660 -g1,14138:8843794,36748660 -g1,14138:9792231,36748660 -g1,14138:10424523,36748660 -g1,14138:11689106,36748660 -g1,14138:12321398,36748660 -h1,14138:13269835,36748660:0,0,0 -k1,14138:32583029,36748660:19313194 -g1,14138:32583029,36748660 -) -(1,14138:6630773,37414838:25952256,404226,82312 -h1,14138:6630773,37414838:0,0,0 -g1,14138:7579210,37414838 -k1,14138:7579210,37414838:0 -h1,14138:13269832,37414838:0,0,0 -k1,14138:32583028,37414838:19313196 -g1,14138:32583028,37414838 -) -(1,14138:6630773,38081016:25952256,404226,101187 -h1,14138:6630773,38081016:0,0,0 -g1,14138:7579210,38081016 -g1,14138:10108376,38081016 -g1,14138:11372959,38081016 -g1,14138:12637542,38081016 -h1,14138:13585979,38081016:0,0,0 -k1,14138:32583029,38081016:18997050 -g1,14138:32583029,38081016 -) -(1,14138:6630773,38747194:25952256,410518,82312 -h1,14138:6630773,38747194:0,0,0 -g1,14138:7579210,38747194 -k1,14138:7579210,38747194:0 -h1,14138:12637540,38747194:0,0,0 -k1,14138:32583028,38747194:19945488 -g1,14138:32583028,38747194 -) -(1,14138:6630773,39413372:25952256,388497,9436 -h1,14138:6630773,39413372:0,0,0 -g1,14138:7579210,39413372 -g1,14138:7895356,39413372 -g1,14138:8211502,39413372 -g1,14138:8527648,39413372 -g1,14138:9476085,39413372 -g1,14138:10424522,39413372 -g1,14138:11372959,39413372 -h1,14138:12953687,39413372:0,0,0 -k1,14138:32583029,39413372:19629342 -g1,14138:32583029,39413372 -) -(1,14138:6630773,40079550:25952256,388497,101187 -h1,14138:6630773,40079550:0,0,0 -g1,14138:7579210,40079550 -g1,14138:8211502,40079550 -g1,14138:8527648,40079550 -g1,14138:8843794,40079550 -g1,14138:9476086,40079550 -g1,14138:9792232,40079550 -g1,14138:10424524,40079550 -g1,14138:10740670,40079550 -g1,14138:11372962,40079550 -g1,14138:11689108,40079550 -g1,14138:12005254,40079550 -g1,14138:12321400,40079550 -g1,14138:12637546,40079550 -h1,14138:12953692,40079550:0,0,0 -k1,14138:32583028,40079550:19629336 -g1,14138:32583028,40079550 -) -(1,14138:6630773,40745728:25952256,388497,9436 -h1,14138:6630773,40745728:0,0,0 -g1,14138:7579210,40745728 -g1,14138:8527647,40745728 -g1,14138:8843793,40745728 -g1,14138:9476085,40745728 -g1,14138:9792231,40745728 -g1,14138:10424523,40745728 -g1,14138:10740669,40745728 -g1,14138:11372961,40745728 -g1,14138:11689107,40745728 -g1,14138:12005253,40745728 -g1,14138:12321399,40745728 -g1,14138:12637545,40745728 -h1,14138:12953691,40745728:0,0,0 -k1,14138:32583029,40745728:19629338 -g1,14138:32583029,40745728 -) -(1,14138:6630773,41411906:25952256,388497,9436 -h1,14138:6630773,41411906:0,0,0 -g1,14138:7579210,41411906 -g1,14138:8527647,41411906 -g1,14138:8843793,41411906 -g1,14138:9476085,41411906 -g1,14138:9792231,41411906 -g1,14138:10424523,41411906 -g1,14138:10740669,41411906 -g1,14138:11372961,41411906 -g1,14138:11689107,41411906 -g1,14138:12005253,41411906 -g1,14138:12321399,41411906 -g1,14138:12637545,41411906 -h1,14138:12953691,41411906:0,0,0 -k1,14138:32583029,41411906:19629338 -g1,14138:32583029,41411906 -) -(1,14138:6630773,42078084:25952256,388497,9436 -h1,14138:6630773,42078084:0,0,0 -g1,14138:7579210,42078084 -g1,14138:8527647,42078084 -g1,14138:8843793,42078084 -g1,14138:9476085,42078084 -g1,14138:9792231,42078084 -g1,14138:10424523,42078084 -g1,14138:10740669,42078084 -g1,14138:11372961,42078084 -g1,14138:11689107,42078084 -g1,14138:12005253,42078084 -g1,14138:12321399,42078084 -g1,14138:12637545,42078084 -h1,14138:12953691,42078084:0,0,0 -k1,14138:32583029,42078084:19629338 -g1,14138:32583029,42078084 -) -(1,14138:6630773,42744262:25952256,404226,82312 -h1,14138:6630773,42744262:0,0,0 -g1,14138:7579210,42744262 -k1,14138:7579210,42744262:0 -h1,14138:13902123,42744262:0,0,0 -k1,14138:32583029,42744262:18680906 -g1,14138:32583029,42744262 -) -(1,14138:6630773,43410440:25952256,404226,76021 -h1,14138:6630773,43410440:0,0,0 -g1,14138:7579210,43410440 -g1,14138:8843793,43410440 -g1,14138:10424522,43410440 -g1,14138:10740668,43410440 -g1,14138:11056814,43410440 -g1,14138:11372960,43410440 -g1,14138:12953689,43410440 -g1,14138:13269835,43410440 -g1,14138:13585981,43410440 -g1,14138:13902127,43410440 -g1,14138:15482856,43410440 -g1,14138:15799002,43410440 -g1,14138:16115148,43410440 -g1,14138:16431294,43410440 -h1,14138:18644314,43410440:0,0,0 -k1,14138:32583029,43410440:13938715 -g1,14138:32583029,43410440 -) -(1,14138:6630773,44076618:25952256,404226,82312 -h1,14138:6630773,44076618:0,0,0 -g1,14138:7579210,44076618 -k1,14138:7579210,44076618:0 -h1,14138:12005249,44076618:0,0,0 -k1,14138:32583029,44076618:20577780 -g1,14138:32583029,44076618 -) -(1,14138:6630773,44742796:25952256,404226,76021 -h1,14138:6630773,44742796:0,0,0 -g1,14138:7579210,44742796 -g1,14138:8843793,44742796 -g1,14138:9476085,44742796 -g1,14138:10108377,44742796 -g1,14138:10740669,44742796 -h1,14138:11056815,44742796:0,0,0 -k1,14138:32583029,44742796:21526214 -g1,14138:32583029,44742796 -) -(1,14138:6630773,45408974:25952256,404226,101187 -h1,14138:6630773,45408974:0,0,0 -g1,14138:7579210,45408974 -k1,14138:7579210,45408974:0 -h1,14138:13269832,45408974:0,0,0 -k1,14138:32583028,45408974:19313196 -g1,14138:32583028,45408974 -) -] -) -g1,14139:32583029,45510161 -g1,14139:6630773,45510161 -g1,14139:6630773,45510161 -g1,14139:32583029,45510161 -g1,14139:32583029,45510161 -) -] -(1,14139:32583029,45706769:0,0,0 -g1,14139:32583029,45706769 -) -) -] -(1,14139:6630773,47279633:25952256,0,0 -h1,14139:6630773,47279633:25952256,0,0 -) -] -(1,14139:4262630,4025873:0,0,0 -[1,14139:-473656,4025873:0,0,0 -(1,14139:-473656,-710413:0,0,0 -(1,14139:-473656,-710413:0,0,0 -g1,14139:-473656,-710413 -) -g1,14139:-473656,-710413 -) -] -) -] -!27405 -}240 -Input:2147:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!106 -{241 -[1,14221:4262630,47279633:28320399,43253760,0 -(1,14221:4262630,4025873:0,0,0 -[1,14221:-473656,4025873:0,0,0 -(1,14221:-473656,-710413:0,0,0 -(1,14221:-473656,-644877:0,0,0 -k1,14221:-473656,-644877:-65536 ) -(1,14221:-473656,4736287:0,0,0 -k1,14221:-473656,4736287:5209943 ) -g1,14221:-473656,-710413 +) +] +[1,13767:3078558,4812305:0,0,0 +(1,13767:3078558,49800853:0,16384,2228224 +g1,13767:29030814,49800853 +g1,13767:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,13767:36151628,51504789:16384,1179648,0 +) +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 +) +] +) +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,13767:37855564,49800853:1179648,16384,0 +) +) +k1,13767:3078556,49800853:-34777008 +) +] +g1,13767:6630773,4812305 +g1,13767:6630773,4812305 +g1,13767:10592424,4812305 +g1,13767:12629938,4812305 +g1,13767:15030521,4812305 +k1,13767:31387652,4812305:16357131 +) +) +] +[1,13767:6630773,45706769:25952256,40108032,0 +(1,13767:6630773,45706769:25952256,40108032,0 +(1,13767:6630773,45706769:0,0,0 +g1,13767:6630773,45706769 +) +[1,13767:6630773,45706769:25952256,40108032,0 +v1,13697:6630773,6254097:0,393216,0 +(1,13697:6630773,10677485:25952256,4816604,196608 +g1,13697:6630773,10677485 +g1,13697:6630773,10677485 +g1,13697:6434165,10677485 +(1,13697:6434165,10677485:0,4816604,196608 +r1,13767:32779637,10677485:26345472,5013212,196608 +k1,13697:6434165,10677485:-26345472 +) +(1,13697:6434165,10677485:26345472,4816604,196608 +[1,13697:6630773,10677485:25952256,4619996,0 +(1,13696:6630773,6455503:25952256,398014,0 +h1,13696:6630773,6455503:0,0,0 +h1,13696:7294681,6455503:0,0,0 +k1,13696:32583029,6455503:25288348 +g1,13696:32583029,6455503 +) +(1,13696:6630773,7140358:25952256,398014,0 +h1,13696:6630773,7140358:0,0,0 +h1,13696:7294681,7140358:0,0,0 +k1,13696:32583029,7140358:25288348 +g1,13696:32583029,7140358 +) +(1,13696:6630773,7825213:25952256,431045,79822 +h1,13696:6630773,7825213:0,0,0 +g1,13696:7626635,7825213 +g1,13696:7958589,7825213 +g1,13696:8290543,7825213 +g1,13696:8622497,7825213 +g1,13696:8954451,7825213 +g1,13696:9286405,7825213 +g1,13696:9618359,7825213 +g1,13696:10614221,7825213 +g1,13696:13601806,7825213 +g1,13696:15925484,7825213 +g1,13696:16921346,7825213 +g1,13696:19245024,7825213 +g1,13696:20572840,7825213 +g1,13696:20904794,7825213 +g1,13696:21236748,7825213 +g1,13696:21568702,7825213 +g1,13696:21900656,7825213 +g1,13696:22232610,7825213 +g1,13696:22896518,7825213 +g1,13696:23228472,7825213 +g1,13696:23560426,7825213 +g1,13696:23892380,7825213 +k1,13696:23892380,7825213:0 +h1,13696:25884104,7825213:0,0,0 +k1,13696:32583029,7825213:6698925 +g1,13696:32583029,7825213 +) +(1,13696:6630773,8510068:25952256,407923,9908 +h1,13696:6630773,8510068:0,0,0 +g1,13696:7626635,8510068 +g1,13696:9286405,8510068 +g1,13696:9618359,8510068 +g1,13696:9950313,8510068 +g1,13696:10282267,8510068 +g1,13696:10614221,8510068 +g1,13696:10946175,8510068 +g1,13696:11278129,8510068 +g1,13696:11610083,8510068 +g1,13696:11942037,8510068 +g1,13696:12273991,8510068 +g1,13696:12605945,8510068 +g1,13696:12937899,8510068 +g1,13696:13269853,8510068 +g1,13696:13601807,8510068 +g1,13696:13933761,8510068 +g1,13696:14265715,8510068 +g1,13696:14597669,8510068 +g1,13696:14929623,8510068 +g1,13696:15261577,8510068 +g1,13696:15593531,8510068 +g1,13696:15925485,8510068 +g1,13696:16921347,8510068 +g1,13696:17253301,8510068 +g1,13696:17585255,8510068 +g1,13696:17917209,8510068 +g1,13696:18249163,8510068 +h1,13696:20240887,8510068:0,0,0 +k1,13696:32583029,8510068:12342142 +g1,13696:32583029,8510068 +) +(1,13696:6630773,9194923:25952256,407923,106246 +h1,13696:6630773,9194923:0,0,0 +g1,13696:7626635,9194923 +g1,13696:9618359,9194923 +g1,13696:9950313,9194923 +g1,13696:10614221,9194923 +g1,13696:10946175,9194923 +g1,13696:11278129,9194923 +g1,13696:13601807,9194923 +g1,13696:13933761,9194923 +g1,13696:14265715,9194923 +g1,13696:14597669,9194923 +g1,13696:14929623,9194923 +g1,13696:15261577,9194923 +g1,13696:15593531,9194923 +g1,13696:15925485,9194923 +g1,13696:16921347,9194923 +g1,13696:17253301,9194923 +g1,13696:17585255,9194923 +g1,13696:17917209,9194923 +g1,13696:18249163,9194923 +g1,13696:18581117,9194923 +g1,13696:20572841,9194923 +g1,13696:22896519,9194923 +g1,13696:23560427,9194923 +g1,13696:26216059,9194923 +h1,13696:27211921,9194923:0,0,0 +k1,13696:32583029,9194923:5371108 +g1,13696:32583029,9194923 +) +(1,13696:6630773,9879778:25952256,398014,0 +h1,13696:6630773,9879778:0,0,0 +g1,13696:7626635,9879778 +k1,13696:7626635,9879778:0 +h1,13696:8622497,9879778:0,0,0 +k1,13696:32583029,9879778:23960532 +g1,13696:32583029,9879778 +) +(1,13696:6630773,10564633:25952256,431045,112852 +h1,13696:6630773,10564633:0,0,0 +g1,13696:7626635,10564633 +g1,13696:10282267,10564633 +g1,13696:12605945,10564633 +g1,13696:12937899,10564633 +g1,13696:13601807,10564633 +g1,13696:15593531,10564633 +g1,13696:17585255,10564633 +g1,13696:19245025,10564633 +g1,13696:20904795,10564633 +g1,13696:22232611,10564633 +g1,13696:23892381,10564633 +g1,13696:25220197,10564633 +g1,13696:26548013,10564633 +g1,13696:27211921,10564633 +g1,13696:27875829,10564633 +h1,13696:28207783,10564633:0,0,0 +k1,13696:32583029,10564633:4375246 +g1,13696:32583029,10564633 +) +] +) +g1,13697:32583029,10677485 +g1,13697:6630773,10677485 +g1,13697:6630773,10677485 +g1,13697:32583029,10677485 +g1,13697:32583029,10677485 +) +h1,13697:6630773,10874093:0,0,0 +(1,13701:6630773,11739173:25952256,513147,134348 +h1,13700:6630773,11739173:983040,0,0 +k1,13700:10244546,11739173:232771 +(1,13700:10244546,11739173:0,452978,115847 +r1,13767:12361371,11739173:2116825,568825,115847 +k1,13700:10244546,11739173:-2116825 +) +(1,13700:10244546,11739173:2116825,452978,115847 +k1,13700:10244546,11739173:3277 +h1,13700:12358094,11739173:0,411205,112570 +) +k1,13700:12594141,11739173:232770 +k1,13700:13513074,11739173:232771 +k1,13700:14693496,11739173:232771 +k1,13700:18939691,11739173:232770 +k1,13700:20363907,11739173:232771 +k1,13700:23547108,11739173:232770 +k1,13700:26803055,11739173:232771 +k1,13700:28817095,11739173:232771 +k1,13700:30003414,11739173:232770 +k1,13700:31896867,11739173:232771 +k1,13700:32583029,11739173:0 +) +(1,13701:6630773,12604253:25952256,513147,126483 +g1,13700:8685326,12604253 +g1,13700:9903640,12604253 +g1,13700:12614864,12604253 +g1,13700:13473385,12604253 +k1,13701:32583029,12604253:16041904 +g1,13701:32583029,12604253 +) +v1,13703:6630773,13289108:0,393216,0 +(1,13707:6630773,13629791:25952256,733899,196608 +g1,13707:6630773,13629791 +g1,13707:6630773,13629791 +g1,13707:6434165,13629791 +(1,13707:6434165,13629791:0,733899,196608 +r1,13767:32779637,13629791:26345472,930507,196608 +k1,13707:6434165,13629791:-26345472 +) +(1,13707:6434165,13629791:26345472,733899,196608 +[1,13707:6630773,13629791:25952256,537291,0 +(1,13705:6630773,13523545:25952256,431045,106246 +(1,13704:6630773,13523545:0,0,0 +g1,13704:6630773,13523545 +g1,13704:6630773,13523545 +g1,13704:6303093,13523545 +(1,13704:6303093,13523545:0,0,0 +) +g1,13704:6630773,13523545 +) +k1,13705:6630773,13523545:0 +g1,13705:10282267,13523545 +g1,13705:12273991,13523545 +g1,13705:12937899,13523545 +h1,13705:13601807,13523545:0,0,0 +k1,13705:32583029,13523545:18981222 +g1,13705:32583029,13523545 +) +] +) +g1,13707:32583029,13629791 +g1,13707:6630773,13629791 +g1,13707:6630773,13629791 +g1,13707:32583029,13629791 +g1,13707:32583029,13629791 +) +h1,13707:6630773,13826399:0,0,0 +(1,13710:6630773,27905919:25952256,14013984,0 +k1,13710:12599879,27905919:5969106 +h1,13709:12599879,27905919:0,0,0 +(1,13709:12599879,27905919:14014044,14013984,0 +(1,13709:12599879,27905919:14014019,14014019,0 +(1,13709:12599879,27905919:14014019,14014019,0 +(1,13709:12599879,27905919:0,14014019,0 +(1,13709:12599879,27905919:0,18945146,0 +(1,13709:12599879,27905919:18945146,18945146,0 +) +k1,13709:12599879,27905919:-18945146 +) +) +g1,13709:26613898,27905919 +) +) +) +g1,13710:26613923,27905919 +k1,13710:32583029,27905919:5969106 +) +(1,13717:6630773,28770999:25952256,513147,126483 +h1,13716:6630773,28770999:983040,0,0 +k1,13716:8806830,28770999:239468 +k1,13716:10150580,28770999:239468 +k1,13716:12594025,28770999:239469 +k1,13716:15595836,28770999:239468 +k1,13716:19762877,28770999:239468 +k1,13716:22770586,28770999:239468 +k1,13716:23696216,28770999:239468 +k1,13716:27025708,28770999:239469 +k1,13716:28212827,28770999:239468 +k1,13716:30265021,28770999:239468 +k1,13716:32583029,28770999:0 +) +(1,13717:6630773,29636079:25952256,505283,134348 +g1,13716:8062079,29636079 +g1,13716:10539995,29636079 +h1,13716:11510583,29636079:0,0,0 +g1,13716:11709812,29636079 +g1,13716:12718411,29636079 +g1,13716:14415793,29636079 +h1,13716:15611170,29636079:0,0,0 +k1,13717:32583029,29636079:16591095 +g1,13717:32583029,29636079 +) +v1,13719:6630773,30320934:0,393216,0 +(1,13767:6630773,45443394:25952256,15515676,196608 +g1,13767:6630773,45443394 +g1,13767:6630773,45443394 +g1,13767:6434165,45443394 +(1,13767:6434165,45443394:0,15515676,196608 +r1,13767:32779637,45443394:26345472,15712284,196608 +k1,13767:6434165,45443394:-26345472 +) +(1,13767:6434165,45443394:26345472,15515676,196608 +[1,13767:6630773,45443394:25952256,15319068,0 +(1,13721:6630773,30555371:25952256,431045,79822 +(1,13720:6630773,30555371:0,0,0 +g1,13720:6630773,30555371 +g1,13720:6630773,30555371 +g1,13720:6303093,30555371 +(1,13720:6303093,30555371:0,0,0 +) +g1,13720:6630773,30555371 +) +k1,13721:6630773,30555371:0 +h1,13721:10282267,30555371:0,0,0 +k1,13721:32583029,30555371:22300762 +g1,13721:32583029,30555371 +) +(1,13725:6630773,31371298:25952256,424439,112852 +(1,13723:6630773,31371298:0,0,0 +g1,13723:6630773,31371298 +g1,13723:6630773,31371298 +g1,13723:6303093,31371298 +(1,13723:6303093,31371298:0,0,0 +) +g1,13723:6630773,31371298 +) +g1,13725:7626635,31371298 +g1,13725:8954451,31371298 +g1,13725:10946175,31371298 +h1,13725:12273991,31371298:0,0,0 +k1,13725:32583029,31371298:20309038 +g1,13725:32583029,31371298 +) +(1,13727:6630773,32187225:25952256,431045,106246 +(1,13726:6630773,32187225:0,0,0 +g1,13726:6630773,32187225 +g1,13726:6630773,32187225 +g1,13726:6303093,32187225 +(1,13726:6303093,32187225:0,0,0 +) +g1,13726:6630773,32187225 +) +k1,13727:6630773,32187225:0 +h1,13727:10946175,32187225:0,0,0 +k1,13727:32583029,32187225:21636854 +g1,13727:32583029,32187225 +) +(1,13752:6630773,33003152:25952256,398014,0 +(1,13729:6630773,33003152:0,0,0 +g1,13729:6630773,33003152 +g1,13729:6630773,33003152 +g1,13729:6303093,33003152 +(1,13729:6303093,33003152:0,0,0 +) +g1,13729:6630773,33003152 +) +h1,13752:7294681,33003152:0,0,0 +k1,13752:32583029,33003152:25288348 +g1,13752:32583029,33003152 +) +(1,13752:6630773,33688007:25952256,424439,8257 +h1,13752:6630773,33688007:0,0,0 +g1,13752:7626635,33688007 +h1,13752:9286405,33688007:0,0,0 +k1,13752:32583029,33688007:23296624 +g1,13752:32583029,33688007 +) +(1,13752:6630773,34372862:25952256,431045,112852 +h1,13752:6630773,34372862:0,0,0 +g1,13752:7626635,34372862 +g1,13752:11610082,34372862 +g1,13752:12273990,34372862 +g1,13752:14265714,34372862 +g1,13752:14929622,34372862 +g1,13752:17253300,34372862 +g1,13752:19576978,34372862 +g1,13752:20240886,34372862 +g1,13752:24888241,34372862 +g1,13752:26548011,34372862 +g1,13752:27211919,34372862 +h1,13752:31527320,34372862:0,0,0 +k1,13752:32583029,34372862:1055709 +g1,13752:32583029,34372862 +) +(1,13752:6630773,35057717:25952256,398014,0 +h1,13752:6630773,35057717:0,0,0 +h1,13752:7294681,35057717:0,0,0 +k1,13752:32583029,35057717:25288348 +g1,13752:32583029,35057717 +) +(1,13752:6630773,35742572:25952256,431045,8257 +h1,13752:6630773,35742572:0,0,0 +g1,13752:7626635,35742572 +h1,13752:11942036,35742572:0,0,0 +k1,13752:32583028,35742572:20640992 +g1,13752:32583028,35742572 +) +(1,13752:6630773,36427427:25952256,424439,79822 +h1,13752:6630773,36427427:0,0,0 +g1,13752:7626635,36427427 +g1,13752:7958589,36427427 +g1,13752:8290543,36427427 +g1,13752:8622497,36427427 +g1,13752:8954451,36427427 +g1,13752:9286405,36427427 +g1,13752:9618359,36427427 +g1,13752:9950313,36427427 +g1,13752:10282267,36427427 +g1,13752:10614221,36427427 +g1,13752:10946175,36427427 +g1,13752:11278129,36427427 +g1,13752:11610083,36427427 +g1,13752:14597668,36427427 +g1,13752:16257438,36427427 +g1,13752:18249162,36427427 +g1,13752:18913070,36427427 +g1,13752:20904794,36427427 +k1,13752:20904794,36427427:0 +h1,13752:23560426,36427427:0,0,0 +k1,13752:32583029,36427427:9022603 +g1,13752:32583029,36427427 +) +(1,13752:6630773,37112282:25952256,424439,106246 +h1,13752:6630773,37112282:0,0,0 +g1,13752:7626635,37112282 +g1,13752:11610082,37112282 +g1,13752:11942036,37112282 +g1,13752:14597668,37112282 +g1,13752:14929622,37112282 +g1,13752:15261576,37112282 +g1,13752:15593530,37112282 +g1,13752:18249162,37112282 +g1,13752:18581116,37112282 +g1,13752:20904794,37112282 +g1,13752:21236748,37112282 +g1,13752:21900656,37112282 +g1,13752:23892380,37112282 +h1,13752:24888242,37112282:0,0,0 +k1,13752:32583029,37112282:7694787 +g1,13752:32583029,37112282 +) +(1,13752:6630773,37797137:25952256,407923,106246 +h1,13752:6630773,37797137:0,0,0 +g1,13752:7626635,37797137 +g1,13752:9950313,37797137 +g1,13752:10282267,37797137 +g1,13752:10614221,37797137 +g1,13752:10946175,37797137 +g1,13752:11278129,37797137 +g1,13752:11610083,37797137 +g1,13752:11942037,37797137 +g1,13752:14597669,37797137 +g1,13752:14929623,37797137 +g1,13752:15261577,37797137 +g1,13752:15593531,37797137 +g1,13752:18249163,37797137 +g1,13752:18581117,37797137 +g1,13752:18913071,37797137 +g1,13752:20904795,37797137 +g1,13752:21236749,37797137 +g1,13752:21568703,37797137 +g1,13752:21900657,37797137 +h1,13752:23560427,37797137:0,0,0 +k1,13752:32583029,37797137:9022602 +g1,13752:32583029,37797137 +) +(1,13752:6630773,38481992:25952256,407923,106246 +h1,13752:6630773,38481992:0,0,0 +g1,13752:7626635,38481992 +g1,13752:9950313,38481992 +g1,13752:10282267,38481992 +g1,13752:10614221,38481992 +g1,13752:10946175,38481992 +g1,13752:11278129,38481992 +g1,13752:11610083,38481992 +g1,13752:14597668,38481992 +g1,13752:14929622,38481992 +g1,13752:15261576,38481992 +g1,13752:15593530,38481992 +g1,13752:18249162,38481992 +g1,13752:18581116,38481992 +g1,13752:20904794,38481992 +g1,13752:23892380,38481992 +h1,13752:24888242,38481992:0,0,0 +k1,13752:32583029,38481992:7694787 +g1,13752:32583029,38481992 +) +(1,13752:6630773,39166847:25952256,407923,106246 +h1,13752:6630773,39166847:0,0,0 +g1,13752:7626635,39166847 +g1,13752:9950313,39166847 +g1,13752:10282267,39166847 +g1,13752:10614221,39166847 +g1,13752:10946175,39166847 +g1,13752:11278129,39166847 +g1,13752:11610083,39166847 +g1,13752:14597668,39166847 +g1,13752:14929622,39166847 +g1,13752:15261576,39166847 +g1,13752:15593530,39166847 +g1,13752:18249162,39166847 +g1,13752:18581116,39166847 +g1,13752:20904794,39166847 +g1,13752:23892380,39166847 +h1,13752:24888242,39166847:0,0,0 +k1,13752:32583029,39166847:7694787 +g1,13752:32583029,39166847 +) +(1,13752:6630773,39851702:25952256,407923,106246 +h1,13752:6630773,39851702:0,0,0 +g1,13752:7626635,39851702 +g1,13752:9950313,39851702 +g1,13752:10282267,39851702 +g1,13752:10614221,39851702 +g1,13752:10946175,39851702 +g1,13752:11278129,39851702 +g1,13752:11610083,39851702 +g1,13752:14597668,39851702 +g1,13752:14929622,39851702 +g1,13752:15261576,39851702 +g1,13752:15593530,39851702 +g1,13752:18249162,39851702 +g1,13752:18581116,39851702 +g1,13752:20904794,39851702 +g1,13752:23892380,39851702 +h1,13752:24888242,39851702:0,0,0 +k1,13752:32583029,39851702:7694787 +g1,13752:32583029,39851702 +) +(1,13752:6630773,40536557:25952256,407923,106246 +h1,13752:6630773,40536557:0,0,0 +g1,13752:7626635,40536557 +g1,13752:9950313,40536557 +g1,13752:10282267,40536557 +g1,13752:10614221,40536557 +g1,13752:10946175,40536557 +g1,13752:11278129,40536557 +g1,13752:11610083,40536557 +g1,13752:11942037,40536557 +g1,13752:14597669,40536557 +g1,13752:14929623,40536557 +g1,13752:15261577,40536557 +g1,13752:15593531,40536557 +g1,13752:18249163,40536557 +g1,13752:18581117,40536557 +g1,13752:18913071,40536557 +g1,13752:20904795,40536557 +g1,13752:21236749,40536557 +g1,13752:21568703,40536557 +g1,13752:21900657,40536557 +h1,13752:23560427,40536557:0,0,0 +k1,13752:32583029,40536557:9022602 +g1,13752:32583029,40536557 +) +(1,13752:6630773,41221412:25952256,398014,0 +h1,13752:6630773,41221412:0,0,0 +g1,13752:7626635,41221412 +k1,13752:7626635,41221412:0 +h1,13752:8622497,41221412:0,0,0 +k1,13752:32583029,41221412:23960532 +g1,13752:32583029,41221412 +) +(1,13752:6630773,41906267:25952256,431045,112852 +h1,13752:6630773,41906267:0,0,0 +g1,13752:7626635,41906267 +g1,13752:10282267,41906267 +g1,13752:12605945,41906267 +g1,13752:12937899,41906267 +g1,13752:13601807,41906267 +g1,13752:15593531,41906267 +g1,13752:17585255,41906267 +g1,13752:19245025,41906267 +g1,13752:20904795,41906267 +g1,13752:22232611,41906267 +g1,13752:23892381,41906267 +g1,13752:25220197,41906267 +g1,13752:26548013,41906267 +g1,13752:27211921,41906267 +g1,13752:27875829,41906267 +h1,13752:28207783,41906267:0,0,0 +k1,13752:32583029,41906267:4375246 +g1,13752:32583029,41906267 +) +(1,13752:6630773,42591122:25952256,398014,0 +h1,13752:6630773,42591122:0,0,0 +h1,13752:7294681,42591122:0,0,0 +k1,13752:32583029,42591122:25288348 +g1,13752:32583029,42591122 +) +(1,13752:6630773,43275977:25952256,431045,106246 +h1,13752:6630773,43275977:0,0,0 +g1,13752:7626635,43275977 +g1,13752:11610082,43275977 +g1,13752:14929621,43275977 +g1,13752:16257437,43275977 +g1,13752:20572838,43275977 +g1,13752:22896516,43275977 +g1,13752:24888240,43275977 +g1,13752:25884102,43275977 +g1,13752:26879964,43275977 +h1,13752:29867549,43275977:0,0,0 +k1,13752:32583029,43275977:2715480 +g1,13752:32583029,43275977 +) +(1,13752:6630773,43960832:25952256,398014,0 +h1,13752:6630773,43960832:0,0,0 +h1,13752:7294681,43960832:0,0,0 +k1,13752:32583029,43960832:25288348 +g1,13752:32583029,43960832 +) +(1,13752:6630773,44645687:25952256,431045,112852 +h1,13752:6630773,44645687:0,0,0 +g1,13752:7626635,44645687 +g1,13752:7958589,44645687 +g1,13752:8290543,44645687 +g1,13752:8622497,44645687 +g1,13752:8954451,44645687 +g1,13752:10614221,44645687 +g1,13752:13933760,44645687 +g1,13752:16589392,44645687 +g1,13752:16921346,44645687 +g1,13752:17917208,44645687 +g1,13752:18913070,44645687 +g1,13752:19245024,44645687 +g1,13752:21900656,44645687 +g1,13752:22896518,44645687 +h1,13752:25220196,44645687:0,0,0 +k1,13752:32583029,44645687:7362833 +g1,13752:32583029,44645687 +) +(1,13752:6630773,45330542:25952256,431045,112852 +h1,13752:6630773,45330542:0,0,0 +g1,13752:7626635,45330542 +g1,13752:10614220,45330542 +g1,13752:13933759,45330542 +g1,13752:14265713,45330542 +g1,13752:16589391,45330542 +g1,13752:16921345,45330542 +g1,13752:17917207,45330542 +g1,13752:18913069,45330542 +g1,13752:19245023,45330542 +g1,13752:21900655,45330542 +g1,13752:22896517,45330542 +h1,13752:25220195,45330542:0,0,0 +k1,13752:32583029,45330542:7362834 +g1,13752:32583029,45330542 +) +] +) +g1,13767:32583029,45443394 +g1,13767:6630773,45443394 +g1,13767:6630773,45443394 +g1,13767:32583029,45443394 +g1,13767:32583029,45443394 +) +] +(1,13767:32583029,45706769:0,0,0 +g1,13767:32583029,45706769 +) +) +] +(1,13767:6630773,47279633:25952256,0,0 +h1,13767:6630773,47279633:25952256,0,0 +) +] +(1,13767:4262630,4025873:0,0,0 +[1,13767:-473656,4025873:0,0,0 +(1,13767:-473656,-710413:0,0,0 +(1,13767:-473656,-710413:0,0,0 +g1,13767:-473656,-710413 +) +g1,13767:-473656,-710413 +) +] +) +] +!20847 +}222 +Input:2089:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2090:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2091:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2092:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2093:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2094:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2095:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2096:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2097:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!858 +{223 +[1,13818:4262630,47279633:28320399,43253760,0 +(1,13818:4262630,4025873:0,0,0 +[1,13818:-473656,4025873:0,0,0 +(1,13818:-473656,-710413:0,0,0 +(1,13818:-473656,-644877:0,0,0 +k1,13818:-473656,-644877:-65536 +) +(1,13818:-473656,4736287:0,0,0 +k1,13818:-473656,4736287:5209943 +) +g1,13818:-473656,-710413 ) ] ) -[1,14221:6630773,47279633:25952256,43253760,0 -[1,14221:6630773,4812305:25952256,786432,0 -(1,14221:6630773,4812305:25952256,513147,126483 -(1,14221:6630773,4812305:25952256,513147,126483 -g1,14221:3078558,4812305 -[1,14221:3078558,4812305:0,0,0 -(1,14221:3078558,2439708:0,1703936,0 -k1,14221:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,14221:2537886,2439708:1179648,16384,0 +[1,13818:6630773,47279633:25952256,43253760,0 +[1,13818:6630773,4812305:25952256,786432,0 +(1,13818:6630773,4812305:25952256,513147,126483 +(1,13818:6630773,4812305:25952256,513147,126483 +g1,13818:3078558,4812305 +[1,13818:3078558,4812305:0,0,0 +(1,13818:3078558,2439708:0,1703936,0 +k1,13818:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,13818:2537886,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,14221:3078558,1915420:16384,1179648,0 +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,13818:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] ) ) ) ] -[1,14221:3078558,4812305:0,0,0 -(1,14221:3078558,2439708:0,1703936,0 -g1,14221:29030814,2439708 -g1,14221:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,14221:36151628,1915420:16384,1179648,0 +[1,13818:3078558,4812305:0,0,0 +(1,13818:3078558,2439708:0,1703936,0 +g1,13818:29030814,2439708 +g1,13818:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,13818:36151628,1915420:16384,1179648,0 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,14221:37855564,2439708:1179648,16384,0 +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,13818:37855564,2439708:1179648,16384,0 ) ) -k1,14221:3078556,2439708:-34777008 +k1,13818:3078556,2439708:-34777008 ) ] -[1,14221:3078558,4812305:0,0,0 -(1,14221:3078558,49800853:0,16384,2228224 -k1,14221:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,14221:2537886,49800853:1179648,16384,0 +[1,13818:3078558,4812305:0,0,0 +(1,13818:3078558,49800853:0,16384,2228224 +k1,13818:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,13818:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,14221:3078558,51504789:16384,1179648,0 +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,13818:3078558,51504789:16384,1179648,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 ) ] ) ) ) ] -[1,14221:3078558,4812305:0,0,0 -(1,14221:3078558,49800853:0,16384,2228224 -g1,14221:29030814,49800853 -g1,14221:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,14221:36151628,51504789:16384,1179648,0 +[1,13818:3078558,4812305:0,0,0 +(1,13818:3078558,49800853:0,16384,2228224 +g1,13818:29030814,49800853 +g1,13818:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,13818:36151628,51504789:16384,1179648,0 ) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 ) ] ) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,14221:37855564,49800853:1179648,16384,0 -) +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,13818:37855564,49800853:1179648,16384,0 ) -k1,14221:3078556,49800853:-34777008 -) -] -g1,14221:6630773,4812305 -k1,14221:19540057,4812305:11713907 -g1,14221:21162728,4812305 -g1,14221:21985204,4812305 -g1,14221:24539797,4812305 -g1,14221:25949476,4812305 -g1,14221:28728857,4812305 -g1,14221:29852144,4812305 -) -) -] -[1,14221:6630773,45706769:25952256,40108032,0 -(1,14221:6630773,45706769:25952256,40108032,0 -(1,14221:6630773,45706769:0,0,0 -g1,14221:6630773,45706769 -) -[1,14221:6630773,45706769:25952256,40108032,0 -v1,14139:6630773,6254097:0,393216,0 -(1,14139:6630773,9176758:25952256,3315877,196608 -g1,14139:6630773,9176758 -g1,14139:6630773,9176758 -g1,14139:6434165,9176758 -(1,14139:6434165,9176758:0,3315877,196608 -r1,14221:32779637,9176758:26345472,3512485,196608 -k1,14139:6434165,9176758:-26345472 -) -(1,14139:6434165,9176758:26345472,3315877,196608 -[1,14139:6630773,9176758:25952256,3119269,0 -(1,14138:6630773,6461715:25952256,404226,76021 -h1,14138:6630773,6461715:0,0,0 -g1,14138:7579210,6461715 -g1,14138:8843793,6461715 -h1,14138:9159939,6461715:0,0,0 -k1,14138:32583029,6461715:23423090 -g1,14138:32583029,6461715 -) -(1,14138:6630773,7127893:25952256,404226,101187 -h1,14138:6630773,7127893:0,0,0 -g1,14138:7579210,7127893 -k1,14138:7579210,7127893:0 -h1,14138:12953686,7127893:0,0,0 -k1,14138:32583030,7127893:19629344 -g1,14138:32583030,7127893 -) -(1,14138:6630773,7794071:25952256,404226,76021 -h1,14138:6630773,7794071:0,0,0 -g1,14138:7579210,7794071 -g1,14138:8843793,7794071 -h1,14138:9159939,7794071:0,0,0 -k1,14138:32583029,7794071:23423090 -g1,14138:32583029,7794071 -) -(1,14138:6630773,8460249:25952256,404226,82312 -h1,14138:6630773,8460249:0,0,0 -g1,14138:7579210,8460249 -k1,14138:7579210,8460249:0 -h1,14138:14218269,8460249:0,0,0 -k1,14138:32583029,8460249:18364760 -g1,14138:32583029,8460249 -) -(1,14138:6630773,9126427:25952256,404226,50331 -h1,14138:6630773,9126427:0,0,0 -g1,14138:7579210,9126427 -g1,14138:12005250,9126427 -k1,14138:12005250,9126427:0 -h1,14138:15798998,9126427:0,0,0 -k1,14138:32583030,9126427:16784032 -g1,14138:32583030,9126427 -) -] -) -g1,14139:32583029,9176758 -g1,14139:6630773,9176758 -g1,14139:6630773,9176758 -g1,14139:32583029,9176758 -g1,14139:32583029,9176758 -) -h1,14139:6630773,9373366:0,0,0 -v1,14143:6630773,10894208:0,393216,0 -(1,14148:6630773,11869191:25952256,1368199,196608 -g1,14148:6630773,11869191 -g1,14148:6630773,11869191 -g1,14148:6434165,11869191 -(1,14148:6434165,11869191:0,1368199,196608 -r1,14221:32779637,11869191:26345472,1564807,196608 -k1,14148:6434165,11869191:-26345472 -) -(1,14148:6434165,11869191:26345472,1368199,196608 -[1,14148:6630773,11869191:25952256,1171591,0 -(1,14145:6630773,11101826:25952256,404226,101187 -(1,14144:6630773,11101826:0,0,0 -g1,14144:6630773,11101826 -g1,14144:6630773,11101826 -g1,14144:6303093,11101826 -(1,14144:6303093,11101826:0,0,0 -) -g1,14144:6630773,11101826 -) -g1,14145:7263065,11101826 -g1,14145:7895357,11101826 -g1,14145:8843794,11101826 -g1,14145:9476086,11101826 -g1,14145:10740669,11101826 -g1,14145:11372961,11101826 -h1,14145:12321398,11101826:0,0,0 -k1,14145:32583030,11101826:20261632 -g1,14145:32583030,11101826 -) -(1,14146:6630773,11768004:25952256,388497,101187 -h1,14146:6630773,11768004:0,0,0 -g1,14146:7263065,11768004 -g1,14146:7895357,11768004 -g1,14146:8843794,11768004 -g1,14146:9476086,11768004 -g1,14146:10424523,11768004 -g1,14146:11056815,11768004 -g1,14146:12005252,11768004 -g1,14146:12637544,11768004 -g1,14146:14534418,11768004 -g1,14146:15166710,11768004 -h1,14146:16747438,11768004:0,0,0 -k1,14146:32583029,11768004:15835591 -g1,14146:32583029,11768004 -) -] -) -g1,14148:32583029,11869191 -g1,14148:6630773,11869191 -g1,14148:6630773,11869191 -g1,14148:32583029,11869191 -g1,14148:32583029,11869191 -) -h1,14148:6630773,12065799:0,0,0 -v1,14152:6630773,13586640:0,393216,0 -(1,14177:6630773,26501971:25952256,13308547,196608 -g1,14177:6630773,26501971 -g1,14177:6630773,26501971 -g1,14177:6434165,26501971 -(1,14177:6434165,26501971:0,13308547,196608 -r1,14221:32779637,26501971:26345472,13505155,196608 -k1,14177:6434165,26501971:-26345472 -) -(1,14177:6434165,26501971:26345472,13308547,196608 -[1,14177:6630773,26501971:25952256,13111939,0 -(1,14154:6630773,13794258:25952256,404226,101187 -(1,14153:6630773,13794258:0,0,0 -g1,14153:6630773,13794258 -g1,14153:6630773,13794258 -g1,14153:6303093,13794258 -(1,14153:6303093,13794258:0,0,0 -) -g1,14153:6630773,13794258 -) -k1,14154:6630773,13794258:0 -g1,14154:9159938,13794258 -g1,14154:9792230,13794258 -g1,14154:10740667,13794258 -g1,14154:11372959,13794258 -g1,14154:12637542,13794258 -g1,14154:13269834,13794258 -h1,14154:14534417,13794258:0,0,0 -k1,14154:32583029,13794258:18048612 -g1,14154:32583029,13794258 -) -(1,14176:6630773,14460436:25952256,404226,101187 -(1,14156:6630773,14460436:0,0,0 -g1,14156:6630773,14460436 -g1,14156:6630773,14460436 -g1,14156:6303093,14460436 -(1,14156:6303093,14460436:0,0,0 -) -g1,14156:6630773,14460436 -) -g1,14176:7579210,14460436 -g1,14176:8211502,14460436 -g1,14176:8843794,14460436 -g1,14176:9792231,14460436 -g1,14176:10424523,14460436 -g1,14176:11689106,14460436 -g1,14176:12321398,14460436 -h1,14176:13269835,14460436:0,0,0 -k1,14176:32583029,14460436:19313194 -g1,14176:32583029,14460436 -) -(1,14176:6630773,15126614:25952256,404226,82312 -h1,14176:6630773,15126614:0,0,0 -g1,14176:7579210,15126614 -k1,14176:7579210,15126614:0 -h1,14176:13269832,15126614:0,0,0 -k1,14176:32583028,15126614:19313196 -g1,14176:32583028,15126614 -) -(1,14176:6630773,15792792:25952256,404226,101187 -h1,14176:6630773,15792792:0,0,0 -g1,14176:7579210,15792792 -g1,14176:10108376,15792792 -g1,14176:11372959,15792792 -g1,14176:12637542,15792792 -h1,14176:13585979,15792792:0,0,0 -k1,14176:32583029,15792792:18997050 -g1,14176:32583029,15792792 -) -(1,14176:6630773,16458970:25952256,410518,82312 -h1,14176:6630773,16458970:0,0,0 -g1,14176:7579210,16458970 -k1,14176:7579210,16458970:0 -h1,14176:12637540,16458970:0,0,0 -k1,14176:32583028,16458970:19945488 -g1,14176:32583028,16458970 -) -(1,14176:6630773,17125148:25952256,388497,9436 -h1,14176:6630773,17125148:0,0,0 -g1,14176:7579210,17125148 -g1,14176:7895356,17125148 -g1,14176:8211502,17125148 -g1,14176:8527648,17125148 -g1,14176:9476085,17125148 -g1,14176:10424522,17125148 -g1,14176:11372959,17125148 -g1,14176:13269833,17125148 -h1,14176:14850561,17125148:0,0,0 -k1,14176:32583029,17125148:17732468 -g1,14176:32583029,17125148 -) -(1,14176:6630773,17791326:25952256,388497,101187 -h1,14176:6630773,17791326:0,0,0 -g1,14176:7579210,17791326 -g1,14176:8211502,17791326 -g1,14176:8527648,17791326 -g1,14176:8843794,17791326 -g1,14176:9476086,17791326 -g1,14176:9792232,17791326 -g1,14176:10424524,17791326 -g1,14176:10740670,17791326 -g1,14176:11372962,17791326 -g1,14176:11689108,17791326 -g1,14176:12005254,17791326 -g1,14176:12321400,17791326 -g1,14176:12637546,17791326 -g1,14176:13269838,17791326 -g1,14176:13585984,17791326 -g1,14176:13902130,17791326 -g1,14176:14218276,17791326 -g1,14176:14534422,17791326 -h1,14176:14850568,17791326:0,0,0 -k1,14176:32583028,17791326:17732460 -g1,14176:32583028,17791326 -) -(1,14176:6630773,18457504:25952256,388497,9436 -h1,14176:6630773,18457504:0,0,0 -g1,14176:7579210,18457504 -g1,14176:8527647,18457504 -g1,14176:8843793,18457504 -g1,14176:9476085,18457504 -g1,14176:9792231,18457504 -g1,14176:10424523,18457504 -g1,14176:10740669,18457504 -g1,14176:11372961,18457504 -g1,14176:11689107,18457504 -g1,14176:12005253,18457504 -g1,14176:12321399,18457504 -g1,14176:12637545,18457504 -g1,14176:13269837,18457504 -g1,14176:13585983,18457504 -g1,14176:13902129,18457504 -g1,14176:14218275,18457504 -g1,14176:14534421,18457504 -h1,14176:14850567,18457504:0,0,0 -k1,14176:32583029,18457504:17732462 -g1,14176:32583029,18457504 -) -(1,14176:6630773,19123682:25952256,388497,9436 -h1,14176:6630773,19123682:0,0,0 -g1,14176:7579210,19123682 -g1,14176:8527647,19123682 -g1,14176:8843793,19123682 -g1,14176:9476085,19123682 -g1,14176:9792231,19123682 -g1,14176:10424523,19123682 -g1,14176:10740669,19123682 -g1,14176:11372961,19123682 -g1,14176:11689107,19123682 -g1,14176:12005253,19123682 -g1,14176:12321399,19123682 -g1,14176:12637545,19123682 -g1,14176:13269837,19123682 -g1,14176:13585983,19123682 -g1,14176:13902129,19123682 -g1,14176:14218275,19123682 -g1,14176:14534421,19123682 -h1,14176:14850567,19123682:0,0,0 -k1,14176:32583029,19123682:17732462 -g1,14176:32583029,19123682 -) -(1,14176:6630773,19789860:25952256,388497,9436 -h1,14176:6630773,19789860:0,0,0 -g1,14176:7579210,19789860 -g1,14176:8527647,19789860 -g1,14176:8843793,19789860 -g1,14176:9476085,19789860 -g1,14176:9792231,19789860 -g1,14176:10424523,19789860 -g1,14176:10740669,19789860 -g1,14176:11372961,19789860 -g1,14176:11689107,19789860 -g1,14176:12005253,19789860 -g1,14176:12321399,19789860 -g1,14176:12637545,19789860 -g1,14176:13269837,19789860 -g1,14176:13585983,19789860 -g1,14176:13902129,19789860 -g1,14176:14218275,19789860 -g1,14176:14534421,19789860 -h1,14176:14850567,19789860:0,0,0 -k1,14176:32583029,19789860:17732462 -g1,14176:32583029,19789860 -) -(1,14176:6630773,20456038:25952256,404226,82312 -h1,14176:6630773,20456038:0,0,0 -g1,14176:7579210,20456038 -k1,14176:7579210,20456038:0 -h1,14176:13902123,20456038:0,0,0 -k1,14176:32583029,20456038:18680906 -g1,14176:32583029,20456038 -) -(1,14176:6630773,21122216:25952256,404226,76021 -h1,14176:6630773,21122216:0,0,0 -g1,14176:7579210,21122216 -g1,14176:8843793,21122216 -g1,14176:10424522,21122216 -g1,14176:10740668,21122216 -g1,14176:11056814,21122216 -g1,14176:11372960,21122216 -g1,14176:12953689,21122216 -g1,14176:13269835,21122216 -g1,14176:13585981,21122216 -g1,14176:13902127,21122216 -g1,14176:15482856,21122216 -g1,14176:15799002,21122216 -g1,14176:16115148,21122216 -g1,14176:16431294,21122216 -g1,14176:18960460,21122216 -h1,14176:21173480,21122216:0,0,0 -k1,14176:32583029,21122216:11409549 -g1,14176:32583029,21122216 -) -(1,14176:6630773,21788394:25952256,404226,82312 -h1,14176:6630773,21788394:0,0,0 -g1,14176:7579210,21788394 -k1,14176:7579210,21788394:0 -h1,14176:12005249,21788394:0,0,0 -k1,14176:32583029,21788394:20577780 -g1,14176:32583029,21788394 -) -(1,14176:6630773,22454572:25952256,404226,76021 -h1,14176:6630773,22454572:0,0,0 -g1,14176:7579210,22454572 -g1,14176:8843793,22454572 -g1,14176:9476085,22454572 -g1,14176:10108377,22454572 -g1,14176:10740669,22454572 -g1,14176:11372961,22454572 -h1,14176:11689107,22454572:0,0,0 -k1,14176:32583029,22454572:20893922 -g1,14176:32583029,22454572 -) -(1,14176:6630773,23120750:25952256,404226,101187 -h1,14176:6630773,23120750:0,0,0 -g1,14176:7579210,23120750 -k1,14176:7579210,23120750:0 -h1,14176:13269832,23120750:0,0,0 -k1,14176:32583028,23120750:19313196 -g1,14176:32583028,23120750 -) -(1,14176:6630773,23786928:25952256,404226,76021 -h1,14176:6630773,23786928:0,0,0 -g1,14176:7579210,23786928 -g1,14176:8843793,23786928 -h1,14176:9159939,23786928:0,0,0 -k1,14176:32583029,23786928:23423090 -g1,14176:32583029,23786928 -) -(1,14176:6630773,24453106:25952256,404226,101187 -h1,14176:6630773,24453106:0,0,0 -g1,14176:7579210,24453106 -k1,14176:7579210,24453106:0 -h1,14176:12953686,24453106:0,0,0 -k1,14176:32583030,24453106:19629344 -g1,14176:32583030,24453106 -) -(1,14176:6630773,25119284:25952256,404226,76021 -h1,14176:6630773,25119284:0,0,0 -g1,14176:7579210,25119284 -g1,14176:8843793,25119284 -h1,14176:9159939,25119284:0,0,0 -k1,14176:32583029,25119284:23423090 -g1,14176:32583029,25119284 -) -(1,14176:6630773,25785462:25952256,404226,82312 -h1,14176:6630773,25785462:0,0,0 -g1,14176:7579210,25785462 -k1,14176:7579210,25785462:0 -h1,14176:14218269,25785462:0,0,0 -k1,14176:32583029,25785462:18364760 -g1,14176:32583029,25785462 -) -(1,14176:6630773,26451640:25952256,404226,50331 -h1,14176:6630773,26451640:0,0,0 -g1,14176:7579210,26451640 -g1,14176:12005250,26451640 -k1,14176:12005250,26451640:0 -h1,14176:15798998,26451640:0,0,0 -k1,14176:32583030,26451640:16784032 -g1,14176:32583030,26451640 -) -] -) -g1,14177:32583029,26501971 -g1,14177:6630773,26501971 -g1,14177:6630773,26501971 -g1,14177:32583029,26501971 -g1,14177:32583029,26501971 -) -h1,14177:6630773,26698579:0,0,0 -(1,14181:6630773,27967399:25952256,513147,126483 -h1,14180:6630773,27967399:983040,0,0 -k1,14180:9000369,27967399:189869 -(1,14180:9000369,27967399:0,424981,115847 -r1,14221:9358635,27967399:358266,540828,115847 -k1,14180:9000369,27967399:-358266 -) -(1,14180:9000369,27967399:358266,424981,115847 -k1,14180:9000369,27967399:3277 -h1,14180:9355358,27967399:0,411205,112570 -) -k1,14180:9548505,27967399:189870 -k1,14180:12484988,27967399:189869 -k1,14180:15435233,27967399:189869 -k1,14180:15980963,27967399:189870 -k1,14180:18526196,27967399:189869 -k1,14180:21405663,27967399:189869 -k1,14180:22246960,27967399:189869 -k1,14180:23921220,27967399:189870 -k1,14180:25130174,27967399:189869 -k1,14180:27059369,27967399:189869 -k1,14180:27908531,27967399:189870 -k1,14180:29117485,27967399:189869 -k1,14180:32583029,27967399:0 -) -(1,14181:6630773,28808887:25952256,513147,7863 -g1,14180:8672874,28808887 -g1,14180:11630513,28808887 -g1,14180:12445780,28808887 -g1,14180:13000869,28808887 -k1,14181:32583028,28808887:16865036 -g1,14181:32583028,28808887 -) -v1,14183:6630773,29902397:0,393216,0 -(1,14188:6630773,30877380:25952256,1368199,196608 -g1,14188:6630773,30877380 -g1,14188:6630773,30877380 -g1,14188:6434165,30877380 -(1,14188:6434165,30877380:0,1368199,196608 -r1,14221:32779637,30877380:26345472,1564807,196608 -k1,14188:6434165,30877380:-26345472 -) -(1,14188:6434165,30877380:26345472,1368199,196608 -[1,14188:6630773,30877380:25952256,1171591,0 -(1,14185:6630773,30110015:25952256,404226,101187 -(1,14184:6630773,30110015:0,0,0 -g1,14184:6630773,30110015 -g1,14184:6630773,30110015 -g1,14184:6303093,30110015 -(1,14184:6303093,30110015:0,0,0 -) -g1,14184:6630773,30110015 -) -g1,14185:7263065,30110015 -g1,14185:7895357,30110015 -g1,14185:9159940,30110015 -g1,14185:9792232,30110015 -g1,14185:10740669,30110015 -g1,14185:11372961,30110015 -h1,14185:12953690,30110015:0,0,0 -k1,14185:32583030,30110015:19629340 -g1,14185:32583030,30110015 -) -(1,14186:6630773,30776193:25952256,388497,101187 -h1,14186:6630773,30776193:0,0,0 -g1,14186:7263065,30776193 -g1,14186:7895357,30776193 -g1,14186:8843794,30776193 -g1,14186:9476086,30776193 -g1,14186:10424523,30776193 -g1,14186:11056815,30776193 -g1,14186:12005252,30776193 -g1,14186:12637544,30776193 -g1,14186:14534418,30776193 -g1,14186:15166710,30776193 -g1,14186:17063584,30776193 -g1,14186:17695876,30776193 -h1,14186:19276604,30776193:0,0,0 -k1,14186:32583029,30776193:13306425 -g1,14186:32583029,30776193 -) -] -) -g1,14188:32583029,30877380 -g1,14188:6630773,30877380 -g1,14188:6630773,30877380 -g1,14188:32583029,30877380 -g1,14188:32583029,30877380 -) -h1,14188:6630773,31073988:0,0,0 -v1,14192:6630773,32594830:0,393216,0 -(1,14217:6630773,45510161:25952256,13308547,196608 -g1,14217:6630773,45510161 -g1,14217:6630773,45510161 -g1,14217:6434165,45510161 -(1,14217:6434165,45510161:0,13308547,196608 -r1,14221:32779637,45510161:26345472,13505155,196608 -k1,14217:6434165,45510161:-26345472 -) -(1,14217:6434165,45510161:26345472,13308547,196608 -[1,14217:6630773,45510161:25952256,13111939,0 -(1,14194:6630773,32802448:25952256,404226,101187 -(1,14193:6630773,32802448:0,0,0 -g1,14193:6630773,32802448 -g1,14193:6630773,32802448 -g1,14193:6303093,32802448 -(1,14193:6303093,32802448:0,0,0 -) -g1,14193:6630773,32802448 -) -k1,14194:6630773,32802448:0 -g1,14194:9159938,32802448 -g1,14194:9792230,32802448 -g1,14194:11056813,32802448 -g1,14194:11689105,32802448 -g1,14194:12637542,32802448 -g1,14194:13269834,32802448 -h1,14194:15166709,32802448:0,0,0 -k1,14194:32583029,32802448:17416320 -g1,14194:32583029,32802448 -) -(1,14216:6630773,33468626:25952256,404226,101187 -(1,14196:6630773,33468626:0,0,0 -g1,14196:6630773,33468626 -g1,14196:6630773,33468626 -g1,14196:6303093,33468626 -(1,14196:6303093,33468626:0,0,0 -) -g1,14196:6630773,33468626 -) -g1,14216:7579210,33468626 -g1,14216:8211502,33468626 -g1,14216:8843794,33468626 -g1,14216:10108377,33468626 -g1,14216:10740669,33468626 -g1,14216:11689106,33468626 -g1,14216:12321398,33468626 -h1,14216:13902126,33468626:0,0,0 -k1,14216:32583030,33468626:18680904 -g1,14216:32583030,33468626 -) -(1,14216:6630773,34134804:25952256,404226,82312 -h1,14216:6630773,34134804:0,0,0 -g1,14216:7579210,34134804 -k1,14216:7579210,34134804:0 -h1,14216:13269832,34134804:0,0,0 -k1,14216:32583028,34134804:19313196 -g1,14216:32583028,34134804 -) -(1,14216:6630773,34800982:25952256,404226,101187 -h1,14216:6630773,34800982:0,0,0 -g1,14216:7579210,34800982 -g1,14216:10108376,34800982 -g1,14216:11372959,34800982 -g1,14216:12637542,34800982 -h1,14216:13585979,34800982:0,0,0 -k1,14216:32583029,34800982:18997050 -g1,14216:32583029,34800982 -) -(1,14216:6630773,35467160:25952256,410518,82312 -h1,14216:6630773,35467160:0,0,0 -g1,14216:7579210,35467160 -k1,14216:7579210,35467160:0 -h1,14216:12637540,35467160:0,0,0 -k1,14216:32583028,35467160:19945488 -g1,14216:32583028,35467160 -) -(1,14216:6630773,36133338:25952256,388497,9436 -h1,14216:6630773,36133338:0,0,0 -g1,14216:7579210,36133338 -g1,14216:7895356,36133338 -g1,14216:8211502,36133338 -g1,14216:8527648,36133338 -g1,14216:9476085,36133338 -g1,14216:10424522,36133338 -g1,14216:11372959,36133338 -g1,14216:13269833,36133338 -g1,14216:15166707,36133338 -h1,14216:16747435,36133338:0,0,0 -k1,14216:32583029,36133338:15835594 -g1,14216:32583029,36133338 -) -(1,14216:6630773,36799516:25952256,388497,101187 -h1,14216:6630773,36799516:0,0,0 -g1,14216:7579210,36799516 -g1,14216:8211502,36799516 -g1,14216:8527648,36799516 -g1,14216:8843794,36799516 -g1,14216:9476086,36799516 -g1,14216:9792232,36799516 -g1,14216:10424524,36799516 -g1,14216:10740670,36799516 -g1,14216:11372962,36799516 -g1,14216:11689108,36799516 -g1,14216:12005254,36799516 -g1,14216:12321400,36799516 -g1,14216:12637546,36799516 -g1,14216:13269838,36799516 -g1,14216:13585984,36799516 -g1,14216:13902130,36799516 -g1,14216:14218276,36799516 -g1,14216:14534422,36799516 -g1,14216:15166714,36799516 -g1,14216:15482860,36799516 -g1,14216:15799006,36799516 -g1,14216:16115152,36799516 -g1,14216:16431298,36799516 -h1,14216:16747444,36799516:0,0,0 -k1,14216:32583029,36799516:15835585 -g1,14216:32583029,36799516 -) -(1,14216:6630773,37465694:25952256,388497,9436 -h1,14216:6630773,37465694:0,0,0 -g1,14216:7579210,37465694 -g1,14216:8527647,37465694 -g1,14216:8843793,37465694 -g1,14216:9476085,37465694 -g1,14216:9792231,37465694 -g1,14216:10424523,37465694 -g1,14216:10740669,37465694 -g1,14216:11372961,37465694 -g1,14216:11689107,37465694 -g1,14216:12005253,37465694 -g1,14216:12321399,37465694 -g1,14216:12637545,37465694 -g1,14216:13269837,37465694 -g1,14216:13585983,37465694 -g1,14216:13902129,37465694 -g1,14216:14218275,37465694 -g1,14216:14534421,37465694 -g1,14216:15166713,37465694 -g1,14216:15482859,37465694 -g1,14216:15799005,37465694 -g1,14216:16115151,37465694 -g1,14216:16431297,37465694 -h1,14216:16747443,37465694:0,0,0 -k1,14216:32583029,37465694:15835586 -g1,14216:32583029,37465694 -) -(1,14216:6630773,38131872:25952256,388497,9436 -h1,14216:6630773,38131872:0,0,0 -g1,14216:7579210,38131872 -g1,14216:8527647,38131872 -g1,14216:8843793,38131872 -g1,14216:9476085,38131872 -g1,14216:9792231,38131872 -g1,14216:10424523,38131872 -g1,14216:10740669,38131872 -g1,14216:11372961,38131872 -g1,14216:11689107,38131872 -g1,14216:12005253,38131872 -g1,14216:12321399,38131872 -g1,14216:12637545,38131872 -g1,14216:13269837,38131872 -g1,14216:13585983,38131872 -g1,14216:13902129,38131872 -g1,14216:14218275,38131872 -g1,14216:14534421,38131872 -g1,14216:15166713,38131872 -g1,14216:15482859,38131872 -g1,14216:15799005,38131872 -g1,14216:16115151,38131872 -g1,14216:16431297,38131872 -h1,14216:16747443,38131872:0,0,0 -k1,14216:32583029,38131872:15835586 -g1,14216:32583029,38131872 -) -(1,14216:6630773,38798050:25952256,388497,9436 -h1,14216:6630773,38798050:0,0,0 -g1,14216:7579210,38798050 -g1,14216:8527647,38798050 -g1,14216:8843793,38798050 -g1,14216:9476085,38798050 -g1,14216:9792231,38798050 -g1,14216:10424523,38798050 -g1,14216:10740669,38798050 -g1,14216:11372961,38798050 -g1,14216:11689107,38798050 -g1,14216:12005253,38798050 -g1,14216:12321399,38798050 -g1,14216:12637545,38798050 -g1,14216:13269837,38798050 -g1,14216:13585983,38798050 -g1,14216:13902129,38798050 -g1,14216:14218275,38798050 -g1,14216:14534421,38798050 -g1,14216:15166713,38798050 -g1,14216:15482859,38798050 -g1,14216:15799005,38798050 -g1,14216:16115151,38798050 -g1,14216:16431297,38798050 -h1,14216:16747443,38798050:0,0,0 -k1,14216:32583029,38798050:15835586 -g1,14216:32583029,38798050 -) -(1,14216:6630773,39464228:25952256,404226,82312 -h1,14216:6630773,39464228:0,0,0 -g1,14216:7579210,39464228 -k1,14216:7579210,39464228:0 -h1,14216:13902123,39464228:0,0,0 -k1,14216:32583029,39464228:18680906 -g1,14216:32583029,39464228 -) -(1,14216:6630773,40130406:25952256,404226,76021 -h1,14216:6630773,40130406:0,0,0 -g1,14216:7579210,40130406 -g1,14216:8843793,40130406 -g1,14216:10424522,40130406 -g1,14216:10740668,40130406 -g1,14216:11056814,40130406 -g1,14216:11372960,40130406 -g1,14216:12953689,40130406 -g1,14216:13269835,40130406 -g1,14216:13585981,40130406 -g1,14216:13902127,40130406 -g1,14216:15482856,40130406 -g1,14216:15799002,40130406 -g1,14216:16115148,40130406 -g1,14216:16431294,40130406 -g1,14216:18960460,40130406 -g1,14216:21489626,40130406 -h1,14216:23702646,40130406:0,0,0 -k1,14216:32583029,40130406:8880383 -g1,14216:32583029,40130406 -) -(1,14216:6630773,40796584:25952256,404226,82312 -h1,14216:6630773,40796584:0,0,0 -g1,14216:7579210,40796584 -k1,14216:7579210,40796584:0 -h1,14216:12005249,40796584:0,0,0 -k1,14216:32583029,40796584:20577780 -g1,14216:32583029,40796584 -) -(1,14216:6630773,41462762:25952256,404226,76021 -h1,14216:6630773,41462762:0,0,0 -g1,14216:7579210,41462762 -g1,14216:8843793,41462762 -g1,14216:9476085,41462762 -g1,14216:10108377,41462762 -g1,14216:10740669,41462762 -g1,14216:11372961,41462762 -g1,14216:12005253,41462762 -h1,14216:12321399,41462762:0,0,0 -k1,14216:32583029,41462762:20261630 -g1,14216:32583029,41462762 -) -(1,14216:6630773,42128940:25952256,404226,101187 -h1,14216:6630773,42128940:0,0,0 -g1,14216:7579210,42128940 -k1,14216:7579210,42128940:0 -h1,14216:13269832,42128940:0,0,0 -k1,14216:32583028,42128940:19313196 -g1,14216:32583028,42128940 -) -(1,14216:6630773,42795118:25952256,404226,76021 -h1,14216:6630773,42795118:0,0,0 -g1,14216:7579210,42795118 -g1,14216:8843793,42795118 -h1,14216:9159939,42795118:0,0,0 -k1,14216:32583029,42795118:23423090 -g1,14216:32583029,42795118 -) -(1,14216:6630773,43461296:25952256,404226,101187 -h1,14216:6630773,43461296:0,0,0 -g1,14216:7579210,43461296 -k1,14216:7579210,43461296:0 -h1,14216:12953686,43461296:0,0,0 -k1,14216:32583030,43461296:19629344 -g1,14216:32583030,43461296 -) -(1,14216:6630773,44127474:25952256,404226,76021 -h1,14216:6630773,44127474:0,0,0 -g1,14216:7579210,44127474 -g1,14216:8843793,44127474 -h1,14216:9159939,44127474:0,0,0 -k1,14216:32583029,44127474:23423090 -g1,14216:32583029,44127474 -) -(1,14216:6630773,44793652:25952256,404226,82312 -h1,14216:6630773,44793652:0,0,0 -g1,14216:7579210,44793652 -k1,14216:7579210,44793652:0 -h1,14216:14218269,44793652:0,0,0 -k1,14216:32583029,44793652:18364760 -g1,14216:32583029,44793652 -) -(1,14216:6630773,45459830:25952256,404226,50331 -h1,14216:6630773,45459830:0,0,0 -g1,14216:7579210,45459830 -g1,14216:12005250,45459830 -k1,14216:12005250,45459830:0 -h1,14216:15798998,45459830:0,0,0 -k1,14216:32583030,45459830:16784032 -g1,14216:32583030,45459830 -) -] -) -g1,14217:32583029,45510161 -g1,14217:6630773,45510161 -g1,14217:6630773,45510161 -g1,14217:32583029,45510161 -g1,14217:32583029,45510161 -) -h1,14217:6630773,45706769:0,0,0 -] -(1,14221:32583029,45706769:0,0,0 -g1,14221:32583029,45706769 -) -) -] -(1,14221:6630773,47279633:25952256,0,0 -h1,14221:6630773,47279633:25952256,0,0 -) -] -(1,14221:4262630,4025873:0,0,0 -[1,14221:-473656,4025873:0,0,0 -(1,14221:-473656,-710413:0,0,0 -(1,14221:-473656,-710413:0,0,0 -g1,14221:-473656,-710413 -) -g1,14221:-473656,-710413 -) -] -) -] -!26099 -}241 -Input:2148:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2149:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2150:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2151:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2152:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!482 -{242 -[1,14291:4262630,47279633:28320399,43253760,0 -(1,14291:4262630,4025873:0,0,0 -[1,14291:-473656,4025873:0,0,0 -(1,14291:-473656,-710413:0,0,0 -(1,14291:-473656,-644877:0,0,0 -k1,14291:-473656,-644877:-65536 ) -(1,14291:-473656,4736287:0,0,0 -k1,14291:-473656,4736287:5209943 +k1,13818:3078556,49800853:-34777008 +) +] +g1,13818:6630773,4812305 +k1,13818:19540057,4812305:11713907 +g1,13818:21162728,4812305 +g1,13818:21985204,4812305 +g1,13818:24539797,4812305 +g1,13818:25949476,4812305 +g1,13818:28728857,4812305 +g1,13818:29852144,4812305 +) +) +] +[1,13818:6630773,45706769:25952256,40108032,0 +(1,13818:6630773,45706769:25952256,40108032,0 +(1,13818:6630773,45706769:0,0,0 +g1,13818:6630773,45706769 +) +[1,13818:6630773,45706769:25952256,40108032,0 +v1,13767:6630773,6254097:0,393216,0 +(1,13767:6630773,12468539:25952256,6607658,196608 +g1,13767:6630773,12468539 +g1,13767:6630773,12468539 +g1,13767:6434165,12468539 +(1,13767:6434165,12468539:0,6607658,196608 +r1,13818:32779637,12468539:26345472,6804266,196608 +k1,13767:6434165,12468539:-26345472 +) +(1,13767:6434165,12468539:26345472,6607658,196608 +[1,13767:6630773,12468539:25952256,6411050,0 +(1,13752:6630773,6455503:25952256,398014,8257 +h1,13752:6630773,6455503:0,0,0 +g1,13752:7626635,6455503 +g1,13752:9286405,6455503 +h1,13752:9950313,6455503:0,0,0 +k1,13752:32583029,6455503:22632716 +g1,13752:32583029,6455503 +) +(1,13752:6630773,7140358:25952256,398014,0 +h1,13752:6630773,7140358:0,0,0 +h1,13752:7294681,7140358:0,0,0 +k1,13752:32583029,7140358:25288348 +g1,13752:32583029,7140358 +) +(1,13752:6630773,7825213:25952256,431045,112852 +h1,13752:6630773,7825213:0,0,0 +g1,13752:7626635,7825213 +g1,13752:9950313,7825213 +g1,13752:10946175,7825213 +g1,13752:13269853,7825213 +g1,13752:15925485,7825213 +g1,13752:19908932,7825213 +h1,13752:20240886,7825213:0,0,0 +k1,13752:32583029,7825213:12342143 +g1,13752:32583029,7825213 +) +(1,13754:6630773,8641140:25952256,431045,79822 +(1,13753:6630773,8641140:0,0,0 +g1,13753:6630773,8641140 +g1,13753:6630773,8641140 +g1,13753:6303093,8641140 +(1,13753:6303093,8641140:0,0,0 +) +g1,13753:6630773,8641140 +) +k1,13754:6630773,8641140:0 +k1,13754:6630773,8641140:0 +h1,13754:13601806,8641140:0,0,0 +k1,13754:32583030,8641140:18981224 +g1,13754:32583030,8641140 +) +(1,13759:6630773,9457067:25952256,407923,9908 +(1,13756:6630773,9457067:0,0,0 +g1,13756:6630773,9457067 +g1,13756:6630773,9457067 +g1,13756:6303093,9457067 +(1,13756:6303093,9457067:0,0,0 +) +g1,13756:6630773,9457067 +) +g1,13759:7626635,9457067 +g1,13759:7958589,9457067 +g1,13759:8290543,9457067 +g1,13759:8622497,9457067 +g1,13759:8954451,9457067 +g1,13759:9286405,9457067 +g1,13759:9618359,9457067 +g1,13759:9950313,9457067 +g1,13759:10282267,9457067 +g1,13759:10614221,9457067 +g1,13759:11278129,9457067 +g1,13759:11610083,9457067 +g1,13759:11942037,9457067 +g1,13759:12273991,9457067 +g1,13759:12605945,9457067 +g1,13759:12937899,9457067 +g1,13759:13269853,9457067 +g1,13759:13601807,9457067 +g1,13759:13933761,9457067 +g1,13759:14265715,9457067 +g1,13759:14929623,9457067 +g1,13759:15261577,9457067 +g1,13759:15593531,9457067 +g1,13759:15925485,9457067 +g1,13759:16257439,9457067 +g1,13759:16589393,9457067 +g1,13759:16921347,9457067 +g1,13759:17253301,9457067 +g1,13759:17585255,9457067 +g1,13759:17917209,9457067 +g1,13759:18581117,9457067 +g1,13759:18913071,9457067 +g1,13759:19245025,9457067 +g1,13759:19576979,9457067 +g1,13759:19908933,9457067 +g1,13759:20240887,9457067 +g1,13759:20572841,9457067 +g1,13759:20904795,9457067 +g1,13759:21236749,9457067 +g1,13759:21568703,9457067 +g1,13759:22232611,9457067 +g1,13759:22564565,9457067 +g1,13759:22896519,9457067 +g1,13759:23228473,9457067 +g1,13759:23560427,9457067 +g1,13759:23892381,9457067 +g1,13759:24224335,9457067 +g1,13759:24556289,9457067 +g1,13759:24888243,9457067 +g1,13759:25220197,9457067 +g1,13759:25884105,9457067 +g1,13759:26216059,9457067 +g1,13759:26548013,9457067 +g1,13759:26879967,9457067 +g1,13759:27211921,9457067 +g1,13759:27543875,9457067 +g1,13759:27875829,9457067 +g1,13759:28207783,9457067 +g1,13759:28539737,9457067 +g1,13759:28871691,9457067 +h1,13759:29203645,9457067:0,0,0 +k1,13759:32583029,9457067:3379384 +g1,13759:32583029,9457067 +) +(1,13759:6630773,10141922:25952256,407923,9908 +h1,13759:6630773,10141922:0,0,0 +g1,13759:7626635,10141922 +g1,13759:11278128,10141922 +g1,13759:14929621,10141922 +g1,13759:15261575,10141922 +g1,13759:18581114,10141922 +g1,13759:22232607,10141922 +g1,13759:25884100,10141922 +k1,13759:25884100,10141922:0 +h1,13759:29203639,10141922:0,0,0 +k1,13759:32583029,10141922:3379390 +g1,13759:32583029,10141922 +) +(1,13761:6630773,10957849:25952256,431045,79822 +(1,13760:6630773,10957849:0,0,0 +g1,13760:6630773,10957849 +g1,13760:6630773,10957849 +g1,13760:6303093,10957849 +(1,13760:6303093,10957849:0,0,0 +) +g1,13760:6630773,10957849 +) +k1,13761:6630773,10957849:0 +k1,13761:6630773,10957849:0 +h1,13761:12605945,10957849:0,0,0 +k1,13761:32583029,10957849:19977084 +g1,13761:32583029,10957849 +) +(1,13766:6630773,11773776:25952256,407923,9908 +(1,13763:6630773,11773776:0,0,0 +g1,13763:6630773,11773776 +g1,13763:6630773,11773776 +g1,13763:6303093,11773776 +(1,13763:6303093,11773776:0,0,0 +) +g1,13763:6630773,11773776 +) +g1,13766:7626635,11773776 +g1,13766:7958589,11773776 +g1,13766:8290543,11773776 +g1,13766:8622497,11773776 +g1,13766:9286405,11773776 +g1,13766:9618359,11773776 +g1,13766:9950313,11773776 +g1,13766:10282267,11773776 +g1,13766:10946175,11773776 +g1,13766:11278129,11773776 +g1,13766:11610083,11773776 +g1,13766:11942037,11773776 +g1,13766:12605945,11773776 +g1,13766:12937899,11773776 +g1,13766:13269853,11773776 +g1,13766:13601807,11773776 +g1,13766:14265715,11773776 +g1,13766:14597669,11773776 +g1,13766:14929623,11773776 +g1,13766:15261577,11773776 +g1,13766:15925485,11773776 +g1,13766:16257439,11773776 +g1,13766:16589393,11773776 +g1,13766:16921347,11773776 +h1,13766:17253301,11773776:0,0,0 +k1,13766:32583029,11773776:15329728 +g1,13766:32583029,11773776 +) +(1,13766:6630773,12458631:25952256,407923,9908 +h1,13766:6630773,12458631:0,0,0 +g1,13766:7626635,12458631 +g1,13766:9286405,12458631 +g1,13766:10946175,12458631 +g1,13766:12605945,12458631 +g1,13766:14265715,12458631 +g1,13766:15925485,12458631 +h1,13766:17253301,12458631:0,0,0 +k1,13766:32583029,12458631:15329728 +g1,13766:32583029,12458631 +) +] +) +g1,13767:32583029,12468539 +g1,13767:6630773,12468539 +g1,13767:6630773,12468539 +g1,13767:32583029,12468539 +g1,13767:32583029,12468539 +) +h1,13767:6630773,12665147:0,0,0 +v1,13771:6630773,13530227:0,393216,0 +(1,13804:6630773,28737897:25952256,15600886,0 +g1,13804:6630773,28737897 +g1,13804:6237557,28737897 +r1,13818:6368629,28737897:131072,15600886,0 +g1,13804:6567858,28737897 +g1,13804:6764466,28737897 +[1,13804:6764466,28737897:25818563,15600886,0 +(1,13772:6764466,13838525:25818563,701514,196608 +(1,13771:6764466,13838525:0,701514,196608 +r1,13818:8010564,13838525:1246098,898122,196608 +k1,13771:6764466,13838525:-1246098 +) +(1,13771:6764466,13838525:1246098,701514,196608 +) +k1,13771:8234460,13838525:223896 +k1,13771:8562140,13838525:327680 +k1,13771:9263792,13838525:223895 +k1,13771:10356040,13838525:223896 +k1,13771:11672421,13838525:223896 +(1,13771:11672421,13838525:0,452978,115847 +r1,13818:13437534,13838525:1765113,568825,115847 +k1,13771:11672421,13838525:-1765113 +) +(1,13771:11672421,13838525:1765113,452978,115847 +k1,13771:11672421,13838525:3277 +h1,13771:13434257,13838525:0,411205,112570 +) +k1,13771:13661430,13838525:223896 +k1,13771:14568210,13838525:223895 +(1,13771:14568210,13838525:0,452978,115847 +r1,13818:17036747,13838525:2468537,568825,115847 +k1,13771:14568210,13838525:-2468537 +) +(1,13771:14568210,13838525:2468537,452978,115847 +k1,13771:14568210,13838525:3277 +h1,13771:17033470,13838525:0,411205,112570 +) +k1,13771:17260643,13838525:223896 +k1,13771:18352891,13838525:223896 +k1,13771:19681069,13838525:223896 +k1,13771:20929947,13838525:223895 +k1,13771:22438349,13838525:223896 +k1,13771:24317029,13838525:223896 +k1,13771:25532485,13838525:223896 +k1,13771:27448520,13838525:223895 +k1,13771:31189078,13838525:223896 +k1,13771:32583029,13838525:0 +) +(1,13772:6764466,14703605:25818563,513147,134348 +k1,13771:9243178,14703605:154150 +k1,13771:10048756,14703605:154150 +k1,13771:12015632,14703605:154150 +k1,13771:14157489,14703605:154150 +k1,13771:15503084,14703605:154150 +k1,13771:16853921,14703605:154150 +k1,13771:19786798,14703605:154150 +k1,13771:21900474,14703605:154150 +k1,13771:22586121,14703605:154150 +k1,13771:23399563,14703605:154150 +k1,13771:23909573,14703605:154150 +k1,13771:26826066,14703605:154150 +k1,13771:28535385,14703605:154150 +k1,13771:29880980,14703605:154150 +k1,13771:32583029,14703605:0 +) +(1,13772:6764466,15568685:25818563,513147,126483 +k1,13771:8722261,15568685:265655 +k1,13771:11941623,15568685:265654 +k1,13771:13273549,15568685:265655 +k1,13771:15945031,15568685:265655 +k1,13771:16826724,15568685:265655 +k1,13771:18905104,15568685:265654 +k1,13771:21662438,15568685:265655 +k1,13771:23278135,15568685:265655 +k1,13771:24203081,15568685:265654 +k1,13771:26165463,15568685:265655 +k1,13771:27906333,15568685:265655 +k1,13771:28823416,15568685:265655 +k1,13771:29904338,15568685:265654 +k1,13771:31563944,15568685:265655 +k1,13771:32583029,15568685:0 +) +(1,13772:6764466,16433765:25818563,513147,126483 +k1,13771:9530237,16433765:153506 +k1,13771:14373500,16433765:153507 +k1,13771:16981329,16433765:153506 +k1,13771:18821733,16433765:153507 +(1,13771:18821733,16433765:0,452978,115847 +r1,13818:20235134,16433765:1413401,568825,115847 +k1,13771:18821733,16433765:-1413401 +) +(1,13771:18821733,16433765:1413401,452978,115847 +k1,13771:18821733,16433765:3277 +h1,13771:20231857,16433765:0,411205,112570 +) +k1,13771:20388640,16433765:153506 +k1,13771:23244195,16433765:153506 +k1,13771:24416787,16433765:153507 +k1,13771:27056074,16433765:153506 +k1,13771:27868873,16433765:153507 +k1,13771:31069803,16433765:153506 +k1,13771:32583029,16433765:0 +) +(1,13772:6764466,17298845:25818563,513147,134348 +g1,13771:8155140,17298845 +(1,13771:8155140,17298845:0,452978,122846 +r1,13818:11327100,17298845:3171960,575824,122846 +k1,13771:8155140,17298845:-3171960 +) +(1,13771:8155140,17298845:3171960,452978,122846 +k1,13771:8155140,17298845:3277 +h1,13771:11323823,17298845:0,411205,112570 +) +g1,13771:11526329,17298845 +g1,13771:12744643,17298845 +g1,13771:15364117,17298845 +g1,13771:16246231,17298845 +g1,13771:17511731,17298845 +g1,13771:18326998,17298845 +g1,13771:20782632,17298845 +g1,13771:21337721,17298845 +k1,13772:32583029,17298845:8459373 +g1,13772:32583029,17298845 +) +v1,13774:6764466,17983700:0,393216,0 +(1,13802:6764466,28541289:25818563,10950805,196608 +g1,13802:6764466,28541289 +g1,13802:6764466,28541289 +g1,13802:6567858,28541289 +(1,13802:6567858,28541289:0,10950805,196608 +r1,13818:32779637,28541289:26211779,11147413,196608 +k1,13802:6567857,28541289:-26211780 +) +(1,13802:6567858,28541289:26211779,10950805,196608 +[1,13802:6764466,28541289:25818563,10754197,0 +(1,13776:6764466,18218137:25818563,431045,79822 +(1,13775:6764466,18218137:0,0,0 +g1,13775:6764466,18218137 +g1,13775:6764466,18218137 +g1,13775:6436786,18218137 +(1,13775:6436786,18218137:0,0,0 +) +g1,13775:6764466,18218137 +) +k1,13776:6764466,18218137:0 +h1,13776:10415960,18218137:0,0,0 +k1,13776:32583028,18218137:22167068 +g1,13776:32583028,18218137 +) +(1,13789:6764466,19034064:25818563,431045,79822 +(1,13778:6764466,19034064:0,0,0 +g1,13778:6764466,19034064 +g1,13778:6764466,19034064 +g1,13778:6436786,19034064 +(1,13778:6436786,19034064:0,0,0 +) +g1,13778:6764466,19034064 +) +g1,13789:7760328,19034064 +g1,13789:8092282,19034064 +g1,13789:9420098,19034064 +g1,13789:14399407,19034064 +g1,13789:14731361,19034064 +g1,13789:15063315,19034064 +g1,13789:15395269,19034064 +g1,13789:15727223,19034064 +g1,13789:16059177,19034064 +g1,13789:20042624,19034064 +g1,13789:20374578,19034064 +g1,13789:20706532,19034064 +g1,13789:21038486,19034064 +g1,13789:21370440,19034064 +g1,13789:21702394,19034064 +g1,13789:22034348,19034064 +g1,13789:22366302,19034064 +g1,13789:22698256,19034064 +h1,13789:27677565,19034064:0,0,0 +k1,13789:32583029,19034064:4905464 +g1,13789:32583029,19034064 +) +(1,13789:6764466,19718919:25818563,431045,79822 +h1,13789:6764466,19718919:0,0,0 +g1,13789:7760328,19718919 +g1,13789:8092282,19718919 +g1,13789:9420098,19718919 +g1,13789:12739637,19718919 +g1,13789:13071591,19718919 +g1,13789:13403545,19718919 +g1,13789:13735499,19718919 +g1,13789:14067453,19718919 +g1,13789:14399407,19718919 +g1,13789:14731361,19718919 +g1,13789:15063315,19718919 +g1,13789:15395269,19718919 +g1,13789:15727223,19718919 +g1,13789:16059177,19718919 +g1,13789:17386993,19718919 +g1,13789:17718947,19718919 +g1,13789:18050901,19718919 +g1,13789:18382855,19718919 +g1,13789:18714809,19718919 +g1,13789:19046763,19718919 +g1,13789:19378717,19718919 +g1,13789:19710671,19718919 +g1,13789:20042625,19718919 +g1,13789:20374579,19718919 +g1,13789:20706533,19718919 +g1,13789:21038487,19718919 +g1,13789:21370441,19718919 +g1,13789:21702395,19718919 +g1,13789:22034349,19718919 +g1,13789:22366303,19718919 +g1,13789:22698257,19718919 +h1,13789:24689981,19718919:0,0,0 +k1,13789:32583029,19718919:7893048 +g1,13789:32583029,19718919 +) +(1,13789:6764466,20403774:25818563,431045,106246 +h1,13789:6764466,20403774:0,0,0 +g1,13789:7760328,20403774 +g1,13789:8092282,20403774 +g1,13789:9420098,20403774 +g1,13789:11079868,20403774 +g1,13789:11411822,20403774 +g1,13789:11743776,20403774 +g1,13789:12075730,20403774 +g1,13789:12407684,20403774 +g1,13789:12739638,20403774 +g1,13789:13071592,20403774 +g1,13789:13403546,20403774 +g1,13789:13735500,20403774 +g1,13789:14067454,20403774 +g1,13789:14399408,20403774 +g1,13789:14731362,20403774 +g1,13789:15063316,20403774 +g1,13789:15395270,20403774 +g1,13789:15727224,20403774 +g1,13789:16059178,20403774 +g1,13789:19046763,20403774 +g1,13789:19378717,20403774 +g1,13789:19710671,20403774 +g1,13789:20042625,20403774 +g1,13789:20374579,20403774 +g1,13789:20706533,20403774 +g1,13789:21038487,20403774 +g1,13789:21370441,20403774 +g1,13789:21702395,20403774 +g1,13789:22034349,20403774 +g1,13789:22366303,20403774 +g1,13789:22698257,20403774 +h1,13789:29005381,20403774:0,0,0 +k1,13789:32583029,20403774:3577648 +g1,13789:32583029,20403774 +) +(1,13789:6764466,21088629:25818563,424439,79822 +h1,13789:6764466,21088629:0,0,0 +g1,13789:7760328,21088629 +g1,13789:9420098,21088629 +g1,13789:13071591,21088629 +g1,13789:13403545,21088629 +g1,13789:13735499,21088629 +g1,13789:14067453,21088629 +g1,13789:14399407,21088629 +g1,13789:14731361,21088629 +g1,13789:15063315,21088629 +g1,13789:15395269,21088629 +g1,13789:15727223,21088629 +g1,13789:16059177,21088629 +g1,13789:18050901,21088629 +g1,13789:18382855,21088629 +g1,13789:18714809,21088629 +g1,13789:19046763,21088629 +g1,13789:19378717,21088629 +g1,13789:19710671,21088629 +g1,13789:20042625,21088629 +g1,13789:20374579,21088629 +g1,13789:20706533,21088629 +g1,13789:21038487,21088629 +g1,13789:21370441,21088629 +g1,13789:21702395,21088629 +g1,13789:22034349,21088629 +g1,13789:22366303,21088629 +g1,13789:22698257,21088629 +h1,13789:27677566,21088629:0,0,0 +k1,13789:32583029,21088629:4905463 +g1,13789:32583029,21088629 +) +(1,13789:6764466,21773484:25818563,424439,112852 +h1,13789:6764466,21773484:0,0,0 +g1,13789:7760328,21773484 +g1,13789:9420098,21773484 +g1,13789:11743776,21773484 +g1,13789:12075730,21773484 +g1,13789:12407684,21773484 +g1,13789:12739638,21773484 +g1,13789:13071592,21773484 +g1,13789:13403546,21773484 +g1,13789:13735500,21773484 +g1,13789:14067454,21773484 +g1,13789:14399408,21773484 +g1,13789:14731362,21773484 +g1,13789:15063316,21773484 +g1,13789:15395270,21773484 +g1,13789:15727224,21773484 +g1,13789:16059178,21773484 +g1,13789:19378717,21773484 +g1,13789:19710671,21773484 +g1,13789:20042625,21773484 +g1,13789:20374579,21773484 +g1,13789:20706533,21773484 +g1,13789:21038487,21773484 +g1,13789:21370441,21773484 +g1,13789:21702395,21773484 +g1,13789:22034349,21773484 +g1,13789:22366303,21773484 +g1,13789:22698257,21773484 +h1,13789:27677566,21773484:0,0,0 +k1,13789:32583029,21773484:4905463 +g1,13789:32583029,21773484 +) +(1,13789:6764466,22458339:25818563,431045,106246 +h1,13789:6764466,22458339:0,0,0 +g1,13789:7760328,22458339 +g1,13789:9420098,22458339 +g1,13789:14067453,22458339 +g1,13789:14399407,22458339 +g1,13789:14731361,22458339 +g1,13789:15063315,22458339 +g1,13789:15395269,22458339 +g1,13789:15727223,22458339 +g1,13789:16059177,22458339 +g1,13789:19378716,22458339 +g1,13789:19710670,22458339 +g1,13789:20042624,22458339 +g1,13789:20374578,22458339 +g1,13789:20706532,22458339 +g1,13789:21038486,22458339 +g1,13789:21370440,22458339 +g1,13789:21702394,22458339 +g1,13789:22034348,22458339 +g1,13789:22366302,22458339 +g1,13789:22698256,22458339 +h1,13789:23694118,22458339:0,0,0 +k1,13789:32583029,22458339:8888911 +g1,13789:32583029,22458339 +) +(1,13789:6764466,23143194:25818563,424439,112852 +h1,13789:6764466,23143194:0,0,0 +g1,13789:7760328,23143194 +g1,13789:9420098,23143194 +g1,13789:13403545,23143194 +g1,13789:13735499,23143194 +g1,13789:14067453,23143194 +g1,13789:14399407,23143194 +g1,13789:14731361,23143194 +g1,13789:15063315,23143194 +g1,13789:15395269,23143194 +g1,13789:15727223,23143194 +g1,13789:16059177,23143194 +g1,13789:19710670,23143194 +g1,13789:20042624,23143194 +g1,13789:20374578,23143194 +g1,13789:20706532,23143194 +g1,13789:21038486,23143194 +g1,13789:21370440,23143194 +g1,13789:21702394,23143194 +g1,13789:22034348,23143194 +g1,13789:22366302,23143194 +g1,13789:22698256,23143194 +h1,13789:25021934,23143194:0,0,0 +k1,13789:32583029,23143194:7561095 +g1,13789:32583029,23143194 +) +(1,13789:6764466,23828049:25818563,431045,79822 +h1,13789:6764466,23828049:0,0,0 +g1,13789:7760328,23828049 +g1,13789:9420098,23828049 +g1,13789:11743776,23828049 +g1,13789:12075730,23828049 +g1,13789:12407684,23828049 +g1,13789:12739638,23828049 +g1,13789:13071592,23828049 +g1,13789:13403546,23828049 +g1,13789:13735500,23828049 +g1,13789:14067454,23828049 +g1,13789:14399408,23828049 +g1,13789:14731362,23828049 +g1,13789:15063316,23828049 +g1,13789:15395270,23828049 +g1,13789:15727224,23828049 +g1,13789:16059178,23828049 +g1,13789:19378717,23828049 +g1,13789:19710671,23828049 +g1,13789:20042625,23828049 +g1,13789:20374579,23828049 +g1,13789:20706533,23828049 +g1,13789:21038487,23828049 +g1,13789:21370441,23828049 +g1,13789:21702395,23828049 +g1,13789:22034349,23828049 +g1,13789:22366303,23828049 +g1,13789:22698257,23828049 +h1,13789:25021935,23828049:0,0,0 +k1,13789:32583029,23828049:7561094 +g1,13789:32583029,23828049 +) +(1,13789:6764466,24512904:25818563,431045,79822 +h1,13789:6764466,24512904:0,0,0 +g1,13789:7760328,24512904 +g1,13789:9420098,24512904 +g1,13789:11743776,24512904 +g1,13789:12075730,24512904 +g1,13789:12407684,24512904 +g1,13789:12739638,24512904 +g1,13789:13071592,24512904 +g1,13789:13403546,24512904 +g1,13789:13735500,24512904 +g1,13789:14067454,24512904 +g1,13789:14399408,24512904 +g1,13789:14731362,24512904 +g1,13789:15063316,24512904 +g1,13789:15395270,24512904 +g1,13789:15727224,24512904 +g1,13789:16059178,24512904 +g1,13789:19046763,24512904 +g1,13789:19378717,24512904 +g1,13789:19710671,24512904 +g1,13789:20042625,24512904 +g1,13789:20374579,24512904 +g1,13789:20706533,24512904 +g1,13789:21038487,24512904 +g1,13789:21370441,24512904 +g1,13789:21702395,24512904 +g1,13789:22034349,24512904 +g1,13789:22366303,24512904 +g1,13789:22698257,24512904 +h1,13789:25685842,24512904:0,0,0 +k1,13789:32583029,24512904:6897187 +g1,13789:32583029,24512904 +) +(1,13789:6764466,25197759:25818563,424439,79822 +h1,13789:6764466,25197759:0,0,0 +g1,13789:7760328,25197759 +g1,13789:9420098,25197759 +g1,13789:12407683,25197759 +g1,13789:12739637,25197759 +g1,13789:13071591,25197759 +g1,13789:13403545,25197759 +g1,13789:13735499,25197759 +g1,13789:14067453,25197759 +g1,13789:14399407,25197759 +g1,13789:14731361,25197759 +g1,13789:15063315,25197759 +g1,13789:15395269,25197759 +g1,13789:15727223,25197759 +g1,13789:16059177,25197759 +g1,13789:20042624,25197759 +g1,13789:20374578,25197759 +g1,13789:20706532,25197759 +g1,13789:21038486,25197759 +g1,13789:21370440,25197759 +g1,13789:21702394,25197759 +g1,13789:22034348,25197759 +g1,13789:22366302,25197759 +g1,13789:22698256,25197759 +h1,13789:25685841,25197759:0,0,0 +k1,13789:32583029,25197759:6897188 +g1,13789:32583029,25197759 +) +(1,13791:6764466,26013686:25818563,431045,112852 +(1,13790:6764466,26013686:0,0,0 +g1,13790:6764466,26013686 +g1,13790:6764466,26013686 +g1,13790:6436786,26013686 +(1,13790:6436786,26013686:0,0,0 +) +g1,13790:6764466,26013686 +) +h1,13791:11411821,26013686:0,0,0 +k1,13791:32583029,26013686:21171208 +g1,13791:32583029,26013686 +) +(1,13795:6764466,26829613:25818563,424439,79822 +(1,13793:6764466,26829613:0,0,0 +g1,13793:6764466,26829613 +g1,13793:6764466,26829613 +g1,13793:6436786,26829613 +(1,13793:6436786,26829613:0,0,0 +) +g1,13793:6764466,26829613 +) +g1,13795:7760328,26829613 +g1,13795:9088144,26829613 +h1,13795:10415960,26829613:0,0,0 +k1,13795:32583028,26829613:22167068 +g1,13795:32583028,26829613 +) +(1,13797:6764466,27645540:25818563,431045,33029 +(1,13796:6764466,27645540:0,0,0 +g1,13796:6764466,27645540 +g1,13796:6764466,27645540 +g1,13796:6436786,27645540 +(1,13796:6436786,27645540:0,0,0 +) +g1,13796:6764466,27645540 +) +h1,13797:9752052,27645540:0,0,0 +k1,13797:32583028,27645540:22830976 +g1,13797:32583028,27645540 +) +(1,13801:6764466,28461467:25818563,424439,79822 +(1,13799:6764466,28461467:0,0,0 +g1,13799:6764466,28461467 +g1,13799:6764466,28461467 +g1,13799:6436786,28461467 +(1,13799:6436786,28461467:0,0,0 +) +g1,13799:6764466,28461467 +) +g1,13801:7760328,28461467 +g1,13801:9088144,28461467 +h1,13801:9420098,28461467:0,0,0 +k1,13801:32583030,28461467:23162932 +g1,13801:32583030,28461467 +) +] +) +g1,13802:32583029,28541289 +g1,13802:6764466,28541289 +g1,13802:6764466,28541289 +g1,13802:32583029,28541289 +g1,13802:32583029,28541289 +) +h1,13802:6764466,28737897:0,0,0 +] +g1,13804:32583029,28737897 +) +h1,13804:6630773,28737897:0,0,0 +(1,13807:6630773,29602977:25952256,513147,134348 +h1,13806:6630773,29602977:983040,0,0 +k1,13806:10539883,29602977:197806 +(1,13806:10539883,29602977:0,452978,115847 +r1,13818:13360132,29602977:2820249,568825,115847 +k1,13806:10539883,29602977:-2820249 +) +(1,13806:10539883,29602977:2820249,452978,115847 +k1,13806:10539883,29602977:3277 +h1,13806:13356855,29602977:0,411205,112570 +) +k1,13806:13557938,29602977:197806 +k1,13806:14947190,29602977:197807 +(1,13806:14947190,29602977:0,452978,115847 +r1,13818:17064015,29602977:2116825,568825,115847 +k1,13806:14947190,29602977:-2116825 +) +(1,13806:14947190,29602977:2116825,452978,115847 +k1,13806:14947190,29602977:3277 +h1,13806:17060738,29602977:0,411205,112570 +) +k1,13806:17435491,29602977:197806 +k1,13806:20723320,29602977:197806 +k1,13806:21868777,29602977:197806 +(1,13806:21868777,29602977:0,452978,115847 +r1,13818:23282178,29602977:1413401,568825,115847 +k1,13806:21868777,29602977:-1413401 +) +(1,13806:21868777,29602977:1413401,452978,115847 +k1,13806:21868777,29602977:3277 +h1,13806:23278901,29602977:0,411205,112570 +) +k1,13806:23479985,29602977:197807 +k1,13806:24293829,29602977:197806 +k1,13806:26770322,29602977:197806 +h1,13806:28313040,29602977:0,0,0 +k1,13806:28510846,29602977:197806 +k1,13806:29518023,29602977:197807 +k1,13806:31213982,29602977:197806 +h1,13806:32409359,29602977:0,0,0 +k1,13806:32583029,29602977:0 +) +(1,13807:6630773,30468057:25952256,513147,122846 +g1,13806:7934284,30468057 +g1,13806:8881279,30468057 +g1,13806:10366324,30468057 +g1,13806:12078779,30468057 +g1,13806:13671959,30468057 +g1,13806:16189196,30468057 +g1,13806:18100881,30468057 +g1,13806:19694061,30468057 +(1,13806:19694061,30468057:0,452978,122846 +r1,13818:21459174,30468057:1765113,575824,122846 +k1,13806:19694061,30468057:-1765113 +) +(1,13806:19694061,30468057:1765113,452978,122846 +k1,13806:19694061,30468057:3277 +h1,13806:21455897,30468057:0,411205,112570 +) +k1,13807:32583029,30468057:10950185 +g1,13807:32583029,30468057 +) +(1,13810:6630773,33299217:25952256,32768,229376 +(1,13810:6630773,33299217:0,32768,229376 +(1,13810:6630773,33299217:5505024,32768,229376 +r1,13818:12135797,33299217:5505024,262144,229376 +) +k1,13810:6630773,33299217:-5505024 +) +(1,13810:6630773,33299217:25952256,32768,0 +r1,13818:32583029,33299217:25952256,32768,0 +) +) +(1,13810:6630773,34931069:25952256,606339,161218 +(1,13810:6630773,34931069:1974731,582746,14155 +g1,13810:6630773,34931069 +g1,13810:8605504,34931069 +) +g1,13810:12965483,34931069 +k1,13810:32583029,34931069:15456534 +g1,13810:32583029,34931069 +) +(1,13816:6630773,36189365:25952256,513147,134348 +k1,13815:9662941,36189365:242300 +(1,13815:9662941,36189365:0,452978,115847 +r1,13818:11428054,36189365:1765113,568825,115847 +k1,13815:9662941,36189365:-1765113 +) +(1,13815:9662941,36189365:1765113,452978,115847 +k1,13815:9662941,36189365:3277 +h1,13815:11424777,36189365:0,411205,112570 +) +k1,13815:11670354,36189365:242300 +k1,13815:12444151,36189365:242300 +k1,13815:13605266,36189365:242300 +k1,13815:17219393,36189365:242300 +k1,13815:18409345,36189365:242301 +k1,13815:20586268,36189365:242300 +k1,13815:24078498,36189365:242300 +k1,13815:26812477,36189365:242300 +k1,13815:27814995,36189365:242300 +k1,13815:31351135,36189365:242300 +k1,13815:32051532,36189365:242300 +k1,13815:32583029,36189365:0 +) +(1,13816:6630773,37054445:25952256,505283,134348 +k1,13815:8927941,37054445:302252 +k1,13815:12480123,37054445:302252 +k1,13815:13385306,37054445:302252 +k1,13815:14673219,37054445:302252 +k1,13815:18628447,37054445:302251 +k1,13815:20938722,37054445:302252 +k1,13815:23251619,37054445:302252 +k1,13815:24545431,37054445:302252 +k1,13815:26585698,37054445:302252 +k1,13815:30024503,37054445:302252 +k1,13815:32583029,37054445:0 +) +(1,13816:6630773,37919525:25952256,513147,134348 +k1,13815:8972475,37919525:407079 +k1,13815:10398639,37919525:407079 +k1,13815:12793426,37919525:407080 +k1,13815:13851933,37919525:407079 +k1,13815:15822046,37919525:407079 +k1,13815:17609969,37919525:407079 +k1,13815:18548545,37919525:407079 +k1,13815:21717967,37919525:407079 +k1,13815:23692668,37919525:407080 +k1,13815:25118832,37919525:407079 +k1,13815:27394998,37919525:407079 +k1,13815:28461369,37919525:407079 +k1,13815:29887533,37919525:407079 +k1,13815:32583029,37919525:0 +) +(1,13816:6630773,38784605:25952256,513147,134348 +k1,13815:8570579,38784605:241768 +k1,13815:12839534,38784605:241768 +k1,13815:16984626,38784605:241768 +k1,13815:17885686,38784605:241768 +k1,13815:19259261,38784605:241768 +k1,13815:21626363,38784605:241769 +k1,13815:22859691,38784605:241768 +k1,13815:24914185,38784605:241768 +k1,13815:27647632,38784605:241768 +k1,13815:28517235,38784605:241768 +k1,13815:31563944,38784605:241768 +k1,13815:32583029,38784605:0 +) +(1,13816:6630773,39649685:25952256,505283,126483 +k1,13815:12342301,39649685:200606 +k1,13815:15332774,39649685:200605 +k1,13815:17046606,39649685:200606 +k1,13815:17863249,39649685:200605 +k1,13815:21217447,39649685:200606 +k1,13815:22609498,39649685:200606 +k1,13815:23829188,39649685:200605 +k1,13815:27227296,39649685:200606 +k1,13815:30217769,39649685:200605 +k1,13815:31931601,39649685:200606 +k1,13815:32583029,39649685:0 +) +(1,13816:6630773,40514765:25952256,505283,134348 +g1,13815:9499283,40514765 +g1,13815:11948363,40514765 +g1,13815:13139152,40514765 +g1,13815:16588311,40514765 +g1,13815:19105548,40514765 +g1,13815:19920815,40514765 +g1,13815:21628683,40514765 +k1,13816:32583029,40514765:7169642 +g1,13816:32583029,40514765 +) +(1,13818:6630773,41379845:25952256,513147,134348 +h1,13817:6630773,41379845:983040,0,0 +k1,13817:9660502,41379845:271974 +k1,13817:12977935,41379845:271975 +k1,13817:16691204,41379845:271974 +k1,13817:18463952,41379845:271974 +k1,13817:19683578,41379845:271975 +k1,13817:22211957,41379845:271974 +k1,13817:25530044,41379845:271974 +k1,13817:26749669,41379845:271974 +k1,13817:28040729,41379845:271975 +k1,13817:31923737,41379845:271974 +k1,13817:32583029,41379845:0 +) +(1,13818:6630773,42244925:25952256,513147,126483 +k1,13817:8646963,42244925:203464 +k1,13817:11342106,42244925:203464 +k1,13817:12161608,42244925:203464 +k1,13817:13384157,42244925:203464 +k1,13817:14954702,42244925:203464 +k1,13817:15817458,42244925:203464 +k1,13817:19270852,42244925:203464 +k1,13817:21965995,42244925:203464 +k1,13817:23188544,42244925:203464 +k1,13817:26438121,42244925:203464 +k1,13817:27633145,42244925:203464 +k1,13817:30628443,42244925:203464 +k1,13817:31593435,42244925:203464 +k1,13818:32583029,42244925:0 +) +(1,13818:6630773,43110005:25952256,505283,126483 +k1,13817:10915779,43110005:198181 +k1,13817:12155982,43110005:198181 +k1,13817:15399620,43110005:198180 +k1,13817:18714038,43110005:198181 +k1,13817:21958332,43110005:198181 +k1,13817:23260795,43110005:198181 +k1,13817:25588241,43110005:198181 +k1,13817:26534187,43110005:198180 +k1,13817:29697872,43110005:198181 +k1,13817:31966991,43110005:198181 +k1,13817:32583029,43110005:0 +) +(1,13818:6630773,43975085:25952256,513147,134348 +k1,13817:10205172,43975085:219611 +k1,13817:14337282,43975085:219611 +k1,13817:16254275,43975085:219611 +k1,13817:18392780,43975085:219611 +k1,13817:21106037,43975085:219612 +k1,13817:22135018,43975085:219611 +k1,13817:24786670,43975085:219611 +k1,13817:26694488,43975085:219611 +k1,13817:29730181,43975085:219611 +k1,13817:31343743,43975085:219611 +k1,13818:32583029,43975085:0 +) +(1,13818:6630773,44840165:25952256,505283,134348 +k1,13817:8079529,44840165:222577 +k1,13817:11550069,44840165:222576 +k1,13817:15175275,44840165:222577 +k1,13817:18321413,44840165:222577 +k1,13817:20481233,44840165:222576 +k1,13817:21988316,44840165:222577 +k1,13817:24595747,44840165:222576 +k1,13817:29141734,44840165:222577 +k1,13817:32583029,44840165:0 +) +(1,13818:6630773,45705245:25952256,513147,134348 +k1,13817:8185156,45705245:269877 +k1,13817:9446593,45705245:269877 +k1,13817:11256566,45705245:269877 +k1,13817:12474094,45705245:269877 +k1,13817:13940659,45705245:269878 +k1,13817:17200288,45705245:269877 +k1,13817:18512187,45705245:269877 +k1,13817:23802122,45705245:269877 +k1,13817:26863833,45705245:269877 +k1,13817:29692236,45705245:269877 +k1,13817:32583029,45705245:0 +) +] +(1,13818:32583029,45706769:0,0,0 +g1,13818:32583029,45706769 +) +) +] +(1,13818:6630773,47279633:25952256,0,0 +h1,13818:6630773,47279633:25952256,0,0 +) +] +(1,13818:4262630,4025873:0,0,0 +[1,13818:-473656,4025873:0,0,0 +(1,13818:-473656,-710413:0,0,0 +(1,13818:-473656,-710413:0,0,0 +g1,13818:-473656,-710413 +) +g1,13818:-473656,-710413 +) +] +) +] +!32156 +}223 +Input:2098:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2099:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2100:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2101:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2102:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2103:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2104:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2105:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2106:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2107:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2108:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2109:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2110:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2111:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2112:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2113:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2114:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2115:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2116:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2117:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2118:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2119:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2120:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2121:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2122:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!2362 +{224 +[1,13866:4262630,47279633:28320399,43253760,0 +(1,13866:4262630,4025873:0,0,0 +[1,13866:-473656,4025873:0,0,0 +(1,13866:-473656,-710413:0,0,0 +(1,13866:-473656,-644877:0,0,0 +k1,13866:-473656,-644877:-65536 +) +(1,13866:-473656,4736287:0,0,0 +k1,13866:-473656,4736287:5209943 ) -g1,14291:-473656,-710413 +g1,13866:-473656,-710413 ) ] ) -[1,14291:6630773,47279633:25952256,43253760,0 -[1,14291:6630773,4812305:25952256,786432,0 -(1,14291:6630773,4812305:25952256,513147,126483 -(1,14291:6630773,4812305:25952256,513147,126483 -g1,14291:3078558,4812305 -[1,14291:3078558,4812305:0,0,0 -(1,14291:3078558,2439708:0,1703936,0 -k1,14291:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,14291:2537886,2439708:1179648,16384,0 +[1,13866:6630773,47279633:25952256,43253760,0 +[1,13866:6630773,4812305:25952256,786432,0 +(1,13866:6630773,4812305:25952256,505283,134348 +(1,13866:6630773,4812305:25952256,505283,134348 +g1,13866:3078558,4812305 +[1,13866:3078558,4812305:0,0,0 +(1,13866:3078558,2439708:0,1703936,0 +k1,13866:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,13866:2537886,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,14291:3078558,1915420:16384,1179648,0 +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,13866:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] ) ) ) ] -[1,14291:3078558,4812305:0,0,0 -(1,14291:3078558,2439708:0,1703936,0 -g1,14291:29030814,2439708 -g1,14291:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,14291:36151628,1915420:16384,1179648,0 +[1,13866:3078558,4812305:0,0,0 +(1,13866:3078558,2439708:0,1703936,0 +g1,13866:29030814,2439708 +g1,13866:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,13866:36151628,1915420:16384,1179648,0 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,14291:37855564,2439708:1179648,16384,0 +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,13866:37855564,2439708:1179648,16384,0 ) ) -k1,14291:3078556,2439708:-34777008 +k1,13866:3078556,2439708:-34777008 ) ] -[1,14291:3078558,4812305:0,0,0 -(1,14291:3078558,49800853:0,16384,2228224 -k1,14291:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,14291:2537886,49800853:1179648,16384,0 +[1,13866:3078558,4812305:0,0,0 +(1,13866:3078558,49800853:0,16384,2228224 +k1,13866:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,13866:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,14291:3078558,51504789:16384,1179648,0 +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,13866:3078558,51504789:16384,1179648,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 +) +] +) +) +) +] +[1,13866:3078558,4812305:0,0,0 +(1,13866:3078558,49800853:0,16384,2228224 +g1,13866:29030814,49800853 +g1,13866:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,13866:36151628,51504789:16384,1179648,0 +) +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 +) +] +) +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,13866:37855564,49800853:1179648,16384,0 +) +) +k1,13866:3078556,49800853:-34777008 +) +] +g1,13866:6630773,4812305 +g1,13866:6630773,4812305 +g1,13866:10153333,4812305 +g1,13866:13588730,4812305 +k1,13866:31387652,4812305:17798922 +) +) +] +[1,13866:6630773,45706769:25952256,40108032,0 +(1,13866:6630773,45706769:25952256,40108032,0 +(1,13866:6630773,45706769:0,0,0 +g1,13866:6630773,45706769 +) +[1,13866:6630773,45706769:25952256,40108032,0 +(1,13818:6630773,6254097:25952256,513147,134348 +k1,13817:8512639,6254097:184484 +k1,13817:10395160,6254097:184483 +k1,13817:11598729,6254097:184484 +k1,13817:14894207,6254097:184484 +k1,13817:16435942,6254097:184484 +k1,13817:17271853,6254097:184483 +k1,13817:20303221,6254097:184484 +k1,13817:21948503,6254097:184484 +k1,13817:22903690,6254097:184484 +k1,13817:25345888,6254097:184483 +k1,13817:26521932,6254097:184484 +k1,13817:29631943,6254097:184484 +k1,13817:32583029,6254097:0 +) +(1,13818:6630773,7119177:25952256,513147,134348 +k1,13817:9488849,7119177:234014 +k1,13817:13164158,7119177:234014 +k1,13817:15912788,7119177:234014 +k1,13817:16798229,7119177:234013 +k1,13817:19661547,7119177:234014 +k1,13817:20666264,7119177:234014 +k1,13817:22736597,7119177:234014 +k1,13817:24767608,7119177:234014 +k1,13817:25949273,7119177:234014 +k1,13817:27202371,7119177:234013 +k1,13817:29447030,7119177:234014 +k1,13817:30340336,7119177:234014 +k1,13817:31593435,7119177:234014 +k1,13818:32583029,7119177:0 +) +(1,13818:6630773,7984257:25952256,513147,134348 +k1,13817:9623500,7984257:158295 +k1,13817:10433222,7984257:158294 +k1,13817:11339283,7984257:158295 +k1,13817:14807800,7984257:158294 +k1,13817:15321955,7984257:158295 +k1,13817:17277247,7984257:158295 +k1,13817:20740522,7984257:158294 +k1,13817:23659849,7984257:158295 +k1,13817:24579672,7984257:158295 +k1,13817:25757051,7984257:158294 +k1,13817:27469860,7984257:158295 +k1,13817:28255989,7984257:158294 +k1,13817:29865906,7984257:158295 +k1,13817:32583029,7984257:0 +) +(1,13818:6630773,8849337:25952256,505283,134348 +k1,13817:7884073,8849337:234215 +k1,13817:10834101,8849337:234216 +k1,13817:13860150,8849337:234215 +k1,13817:14710404,8849337:234216 +k1,13817:15963704,8849337:234215 +k1,13817:18952397,8849337:234215 +k1,13817:21903736,8849337:234216 +k1,13817:22669448,8849337:234215 +k1,13817:24416889,8849337:234215 +k1,13817:25337267,8849337:234216 +k1,13817:26590567,8849337:234215 +k1,13817:29303355,8849337:234216 +k1,13817:31391584,8849337:234215 +k1,13817:32583029,8849337:0 +) +(1,13818:6630773,9714417:25952256,513147,126483 +k1,13817:8050189,9714417:216175 +k1,13817:10711512,9714417:216175 +k1,13817:11459185,9714417:216176 +k1,13817:14459985,9714417:216175 +k1,13817:15832870,9714417:216175 +k1,13817:17474453,9714417:216175 +k1,13817:19203855,9714417:216176 +k1,13817:22066374,9714417:216175 +k1,13817:23479236,9714417:216175 +k1,13817:27389675,9714417:216175 +k1,13817:28137347,9714417:216175 +k1,13817:29638029,9714417:216176 +k1,13817:31367430,9714417:216175 +k1,13817:31939465,9714417:216175 +k1,13818:32583029,9714417:0 +) +(1,13818:6630773,10579497:25952256,513147,134348 +k1,13817:8028437,10579497:177384 +k1,13817:10691602,10579497:177384 +k1,13817:11528278,10579497:177384 +k1,13817:14753086,10579497:177384 +k1,13817:15949555,10579497:177384 +k1,13817:19237933,10579497:177384 +k1,13817:20547780,10579497:177385 +k1,13817:23582534,10579497:177384 +k1,13817:25027384,10579497:177384 +k1,13817:25560628,10579497:177384 +k1,13817:28350277,10579497:177384 +k1,13817:29812167,10579497:177384 +k1,13817:32583029,10579497:0 +) +(1,13818:6630773,11444577:25952256,513147,126483 +k1,13817:7628836,11444577:250297 +k1,13817:10929179,11444577:250297 +k1,13817:13628556,11444577:250297 +k1,13817:14506688,11444577:250297 +k1,13817:15953672,11444577:250297 +k1,13817:17222398,11444577:250297 +k1,13817:18341048,11444577:250298 +k1,13817:19993815,11444577:250297 +k1,13817:22961235,11444577:250297 +k1,13817:24909570,11444577:250297 +k1,13817:26178952,11444577:250297 +k1,13817:30697609,11444577:250297 +k1,13817:31563944,11444577:250297 +k1,13817:32583029,11444577:0 +) +(1,13818:6630773,12309657:25952256,513147,134348 +k1,13817:7518685,12309657:200439 +k1,13817:8250621,12309657:200439 +k1,13817:10803147,12309657:200439 +k1,13817:12446034,12309657:200440 +k1,13817:13002333,12309657:200439 +k1,13817:15400850,12309657:200439 +k1,13817:18847943,12309657:200439 +k1,13817:19731267,12309657:200439 +k1,13817:21629744,12309657:200439 +k1,13817:22639554,12309657:200440 +k1,13817:26793125,12309657:200439 +k1,13817:28094569,12309657:200439 +k1,13817:29804958,12309657:200439 +k1,13817:32583029,12309657:0 +) +(1,13818:6630773,13174737:25952256,513147,126483 +k1,13817:8347765,13174737:203766 +k1,13817:8907392,13174737:203767 +k1,13817:11309236,13174737:203766 +k1,13817:14709849,13174737:203767 +k1,13817:17399396,13174737:203766 +k1,13817:18262454,13174737:203766 +k1,13817:21687316,13174737:203767 +k1,13817:22518917,13174737:203766 +k1,13817:23741768,13174737:203766 +k1,13817:25251668,13174737:203767 +k1,13817:26996185,13174737:203766 +k1,13817:28068304,13174737:203767 +k1,13817:30559277,13174737:203766 +k1,13817:32583029,13174737:0 +) +(1,13818:6630773,14039817:25952256,505283,134348 +k1,13817:8392240,14039817:177462 +k1,13817:11789486,14039817:177462 +k1,13817:12582986,14039817:177462 +k1,13817:13779533,14039817:177462 +k1,13817:16198326,14039817:177462 +k1,13817:17916539,14039817:177462 +k1,13817:18962353,14039817:177462 +k1,13817:19955084,14039817:177463 +k1,13817:21198817,14039817:177462 +k1,13817:23400031,14039817:177462 +k1,13817:25631391,14039817:177462 +k1,13817:28854966,14039817:177462 +k1,13817:30223873,14039817:177462 +k1,13817:31931601,14039817:177462 +k1,13817:32583029,14039817:0 +) +(1,13818:6630773,14904897:25952256,513147,134348 +k1,13817:8229742,14904897:212227 +k1,13817:9389620,14904897:212227 +k1,13817:12364190,14904897:212227 +k1,13817:14144694,14904897:212227 +k1,13817:15016213,14904897:212227 +k1,13817:18242442,14904897:212228 +k1,13817:20267395,14904897:212227 +k1,13817:22262857,14904897:212227 +k1,13817:26428216,14904897:212227 +k1,13817:28171364,14904897:212227 +k1,13817:29402676,14904897:212227 +k1,13817:30921036,14904897:212227 +k1,13817:32583029,14904897:0 +) +(1,13818:6630773,15769977:25952256,513147,134348 +k1,13817:7509693,15769977:227492 +k1,13817:8552452,15769977:227491 +k1,13817:9311441,15769977:227492 +k1,13817:10190361,15769977:227492 +k1,13817:11324215,15769977:227491 +k1,13817:14314050,15769977:227492 +k1,13817:17020114,15769977:227492 +k1,13817:19258251,15769977:227492 +k1,13817:20677187,15769977:227491 +k1,13817:21370640,15769977:227492 +k1,13817:22801373,15769977:227492 +k1,13817:24314680,15769977:227491 +k1,13817:26073093,15769977:227492 +k1,13817:28358415,15769977:227492 +k1,13817:29237334,15769977:227491 +k1,13817:29820686,15769977:227492 +k1,13817:32583029,15769977:0 +) +(1,13818:6630773,16635057:25952256,505283,134348 +k1,13817:11458090,16635057:202441 +k1,13817:14945194,16635057:202440 +k1,13817:17021965,16635057:202441 +k1,13817:18909991,16635057:202440 +k1,13817:21399639,16635057:202441 +k1,13817:23163802,16635057:202440 +k1,13817:24438412,16635057:202441 +k1,13817:25707123,16635057:202440 +k1,13817:28212499,16635057:202441 +k1,13817:30104457,16635057:202440 +k1,13817:32583029,16635057:0 +) +(1,13818:6630773,17500137:25952256,505283,134348 +k1,13817:8791495,17500137:150077 +k1,13817:9933133,17500137:150078 +k1,13817:10699248,17500137:150077 +k1,13817:12601102,17500137:150077 +k1,13817:14448562,17500137:150078 +k1,13817:16731181,17500137:150077 +k1,13817:18072703,17500137:150077 +k1,13817:18838819,17500137:150078 +k1,13817:20681036,17500137:150077 +k1,13817:22528496,17500137:150078 +k1,13817:25753522,17500137:150077 +k1,13817:27007881,17500137:150077 +k1,13817:27905725,17500137:150078 +k1,13817:30847636,17500137:150077 +k1,13817:32583029,17500137:0 +) +(1,13818:6630773,18365217:25952256,505283,134348 +g1,13817:8685982,18365217 +g1,13817:11834986,18365217 +g1,13817:12717100,18365217 +g1,13817:15961787,18365217 +k1,13818:32583029,18365217:11427514 +g1,13818:32583029,18365217 +) +(1,13841:6630773,25809264:25952256,6850948,0 +k1,13841:7879722,25809264:1248949 +(1,13819:7879722,25809264:0,0,0 +g1,13819:7879722,25809264 +g1,13819:7879722,25809264 +g1,13819:7552042,25809264 +(1,13819:7552042,25809264:0,0,0 +) +g1,13819:7879722,25809264 +) +(1,13839:7879722,25809264:23454359,6850948,0 +g1,13839:10996008,25809264 +(1,13839:10996008,19586770:0,0,0 +(1,13839:10996008,19586770:0,0,0 +g1,13821:10996008,19586770 +(1,13822:10996008,19586770:0,0,0 +(1,13822:10996008,19586770:0,0,0 +g1,13822:10996008,19586770 +g1,13822:10996008,19586770 +g1,13822:10996008,19586770 +g1,13822:10996008,19586770 +g1,13822:10996008,19586770 +(1,13822:10996008,19586770:0,0,0 +(1,13822:10996008,19586770:4940249,454754,104590 +(1,13822:10996008,19586770:4940249,454754,104590 +g1,13822:12927092,19586770 +$1,13822:12927092,19586770 +$1,13822:13534611,19586770 +g1,13822:13713918,19586770 +(1,13822:13713918,19586770:0,414307,104590 +r1,13866:15936257,19586770:2222339,518897,104590 +k1,13822:13713918,19586770:-2222339 +) +(1,13822:13713918,19586770:2222339,414307,104590 +k1,13822:13713918,19586770:3277 +h1,13822:15932980,19586770:0,370085,101313 +) +) +g1,13822:15936257,19586770 +) +) +g1,13822:10996008,19586770 +g1,13822:10996008,19586770 +) +) +g1,13822:10996008,19586770 +(1,13823:10996008,19586770:0,0,0 +(1,13823:10996008,19586770:0,0,0 +g1,13823:10996008,19586770 +g1,13823:10996008,19586770 +g1,13823:10996008,19586770 +g1,13823:10996008,19586770 +g1,13823:10996008,19586770 +(1,13823:10996008,19586770:0,0,0 +(1,13823:10996008,19586770:5813184,454754,104590 +(1,13823:10996008,19586770:5813184,454754,104590 +g1,13823:14749649,19586770 +$1,13823:14749649,19586770 +$1,13823:15357168,19586770 +g1,13823:15536475,19586770 +(1,13823:15536475,19586770:0,408008,104590 +r1,13866:16809192,19586770:1272717,512598,104590 +k1,13823:15536475,19586770:-1272717 +) +(1,13823:15536475,19586770:1272717,408008,104590 +k1,13823:15536475,19586770:3277 +h1,13823:16805915,19586770:0,370085,101313 +) +) +g1,13823:16809192,19586770 +) +) +g1,13823:10996008,19586770 +g1,13823:10996008,19586770 +) +) +g1,13823:10996008,19586770 +(1,13824:10996008,19586770:0,0,0 +(1,13824:10996008,19586770:0,0,0 +g1,13824:10996008,19586770 +g1,13824:10996008,19586770 +g1,13824:10996008,19586770 +g1,13824:10996008,19586770 +g1,13824:10996008,19586770 +(1,13824:10996008,19586770:0,0,0 +(1,13824:10996008,19586770:5356075,454754,120913 +(1,13824:10996008,19586770:5356075,454754,120913 +g1,13824:13342918,19586770 +$1,13824:13342918,19586770 +$1,13824:13950437,19586770 +g1,13824:14129744,19586770 +(1,13824:14129744,19586770:0,408008,110889 +r1,13866:16352083,19586770:2222339,518897,110889 +k1,13824:14129744,19586770:-2222339 +) +(1,13824:14129744,19586770:2222339,408008,110889 +k1,13824:14129744,19586770:3277 +h1,13824:16348806,19586770:0,370085,101313 +) +) +g1,13824:16352083,19586770 +) +) +g1,13824:10996008,19586770 +g1,13824:10996008,19586770 +) +) +g1,13824:10996008,19586770 +(1,13825:10996008,19586770:0,0,0 +(1,13825:10996008,19586770:0,0,0 +g1,13825:10996008,19586770 +g1,13825:10996008,19586770 +g1,13825:10996008,19586770 +g1,13825:10996008,19586770 +g1,13825:10996008,19586770 +(1,13825:10996008,19586770:0,0,0 +(1,13825:10996008,19586770:4692323,373362,120913 +(1,13825:10996008,19586770:4692323,373362,120913 +g1,13825:13312248,19586770 +$1,13825:13312248,19586770 +$1,13825:13919767,19586770 +g1,13825:14099074,19586770 +(1,13825:14099074,19586770:0,373362,104590 +r1,13866:15688331,19586770:1589257,477952,104590 +k1,13825:14099074,19586770:-1589257 +) +(1,13825:14099074,19586770:1589257,373362,104590 +k1,13825:14099074,19586770:3277 +h1,13825:15685054,19586770:0,370085,101313 +) +) +g1,13825:15688331,19586770 +) +) +g1,13825:10996008,19586770 +g1,13825:10996008,19586770 +) +) +(1,13826:10996008,19586770:0,0,0 +(1,13826:10996008,19586770:0,0,0 +g1,13826:10996008,19586770 +g1,13826:10996008,19586770 +g1,13826:10996008,19586770 +g1,13826:10996008,19586770 +g1,13826:10996008,19586770 +(1,13826:10996008,19586770:0,0,0 +(1,13826:10996008,19586770:1589257,408008,104590 +(1,13826:10996008,19586770:1589257,408008,104590 +(1,13826:10996008,19586770:0,408008,104590 +r1,13866:12585265,19586770:1589257,512598,104590 +k1,13826:10996008,19586770:-1589257 +) +(1,13826:10996008,19586770:1589257,408008,104590 +k1,13826:10996008,19586770:3277 +h1,13826:12581988,19586770:0,370085,101313 +) +) +g1,13826:12585265,19586770 +) +) +g1,13826:10996008,19586770 +g1,13826:10996008,19586770 ) -] ) +g1,13826:10996008,19586770 +(1,13827:10996008,19586770:0,0,0 +(1,13827:10996008,19586770:0,0,0 +g1,13827:10996008,19586770 +g1,13827:10996008,19586770 +g1,13827:10996008,19586770 +g1,13827:10996008,19586770 +g1,13827:10996008,19586770 +(1,13827:10996008,19586770:0,0,0 +(1,13827:10996008,19586770:2866617,454754,120913 +(1,13827:10996008,19586770:2866617,454754,120913 +(1,13827:10996008,19586770:0,408008,104590 +r1,13866:11952184,19586770:956176,512598,104590 +k1,13827:10996008,19586770:-956176 +) +(1,13827:10996008,19586770:956176,408008,104590 +k1,13827:10996008,19586770:3277 +h1,13827:11948907,19586770:0,370085,101313 +) +g1,13827:12131491,19586770 +) +g1,13827:13862625,19586770 +) +) +g1,13827:10996008,19586770 +g1,13827:10996008,19586770 +) +) +g1,13827:10996008,19586770 +(1,13828:10996008,19586770:0,0,0 +(1,13828:10996008,19586770:0,0,0 +g1,13828:10996008,19586770 +g1,13828:10996008,19586770 +g1,13828:10996008,19586770 +g1,13828:10996008,19586770 +g1,13828:10996008,19586770 +(1,13828:10996008,19586770:0,0,0 +(1,13828:10996008,19586770:2855420,408008,104590 +(1,13828:10996008,19586770:2855420,408008,104590 +(1,13828:10996008,19586770:0,408008,104590 +r1,13866:13851428,19586770:2855420,512598,104590 +k1,13828:10996008,19586770:-2855420 +) +(1,13828:10996008,19586770:2855420,408008,104590 +k1,13828:10996008,19586770:3277 +h1,13828:13848151,19586770:0,370085,101313 +) +) +g1,13828:13851428,19586770 +) +) +g1,13828:10996008,19586770 +g1,13828:10996008,19586770 +) +) +g1,13828:10996008,19586770 +(1,13829:10996008,19586770:0,0,0 +(1,13829:10996008,19586770:0,0,0 +g1,13829:10996008,19586770 +g1,13829:10996008,19586770 +g1,13829:10996008,19586770 +g1,13829:10996008,19586770 +g1,13829:10996008,19586770 +(1,13829:10996008,19586770:0,0,0 +(1,13829:10996008,19586770:2222339,408008,104590 +(1,13829:10996008,19586770:2222339,408008,104590 +(1,13829:10996008,19586770:0,408008,104590 +r1,13866:13218347,19586770:2222339,512598,104590 +k1,13829:10996008,19586770:-2222339 +) +(1,13829:10996008,19586770:2222339,408008,104590 +k1,13829:10996008,19586770:3277 +h1,13829:13215070,19586770:0,370085,101313 +) +) +g1,13829:13218347,19586770 +) +) +g1,13829:10996008,19586770 +g1,13829:10996008,19586770 +) +) +g1,13829:10996008,19586770 +(1,13830:10996008,19586770:0,0,0 +(1,13830:10996008,19586770:0,0,0 +g1,13830:10996008,19586770 +g1,13830:10996008,19586770 +g1,13830:10996008,19586770 +g1,13830:10996008,19586770 +g1,13830:10996008,19586770 +(1,13830:10996008,19586770:0,0,0 +(1,13830:10996008,19586770:1905798,408008,104590 +(1,13830:10996008,19586770:1905798,408008,104590 +(1,13830:10996008,19586770:0,408008,104590 +r1,13866:12901806,19586770:1905798,512598,104590 +k1,13830:10996008,19586770:-1905798 +) +(1,13830:10996008,19586770:1905798,408008,104590 +k1,13830:10996008,19586770:3277 +h1,13830:12898529,19586770:0,370085,101313 +) +) +g1,13830:12901806,19586770 +) +) +g1,13830:10996008,19586770 +g1,13830:10996008,19586770 +) +) +g1,13830:10996008,19586770 +g1,13831:10996008,19586770 +g1,13831:10996008,19586770 +g1,13831:10996008,19586770 +g1,13831:10996008,19586770 +g1,13831:10996008,19586770 +g1,13831:10996008,19586770 +g1,13832:10996008,19586770 +g1,13832:10996008,19586770 +g1,13832:10996008,19586770 +g1,13832:10996008,19586770 +g1,13832:10996008,19586770 +g1,13832:10996008,19586770 +g1,13833:10996008,19586770 +g1,13833:10996008,19586770 +g1,13833:10996008,19586770 +g1,13833:10996008,19586770 +g1,13833:10996008,19586770 +g1,13833:10996008,19586770 +g1,13834:10996008,19586770 +g1,13834:10996008,19586770 +g1,13834:10996008,19586770 +g1,13834:10996008,19586770 +g1,13834:10996008,19586770 +g1,13834:10996008,19586770 +g1,13835:10996008,19586770 +g1,13835:10996008,19586770 +g1,13835:10996008,19586770 +g1,13835:10996008,19586770 +g1,13835:10996008,19586770 +g1,13835:10996008,19586770 +g1,13836:10996008,19586770 +g1,13836:10996008,19586770 +g1,13836:10996008,19586770 +g1,13836:10996008,19586770 +g1,13836:10996008,19586770 +g1,13836:10996008,19586770 +g1,13837:10996008,19586770 +g1,13837:10996008,19586770 +g1,13837:10996008,19586770 +g1,13837:10996008,19586770 +g1,13837:10996008,19586770 +g1,13837:10996008,19586770 +g1,13838:10996008,19586770 +g1,13838:10996008,19586770 +g1,13838:10996008,19586770 +g1,13838:10996008,19586770 +g1,13838:10996008,19586770 +g1,13838:10996008,19586770 +g1,13839:10996008,19586770 +g1,13839:10996008,19586770 +) +g1,13839:10996008,19586770 +) +) +g1,13841:31334081,25809264 +k1,13841:32583029,25809264:1248948 +) +(1,13844:6630773,27067559:25952256,513147,134348 +h1,13843:6630773,27067559:983040,0,0 +k1,13843:8961378,27067559:305543 +k1,13843:12292719,27067559:305544 +k1,13843:13545913,27067559:305543 +k1,13843:15736927,27067559:305543 +k1,13843:20667347,27067559:305544 +k1,13843:24414185,27067559:305543 +k1,13843:26220502,27067559:305543 +k1,13843:27473697,27067559:305544 +k1,13843:31166796,27067559:305543 +k1,13844:32583029,27067559:0 +) +(1,13844:6630773,27932639:25952256,513147,134348 +k1,13843:8233464,27932639:293937 +k1,13843:11005973,27932639:293937 +k1,13843:13484224,27932639:293936 +k1,13843:14192909,27932639:293842 +k1,13843:17247222,27932639:293937 +k1,13843:17897018,27932639:293936 +k1,13843:21828858,27932639:293937 +k1,13843:23070446,27932639:293937 +k1,13843:26587444,27932639:293937 +k1,13843:27900466,27932639:293937 +k1,13843:30889898,27932639:293936 +k1,13843:31835263,27932639:293937 +k1,13843:32583029,27932639:0 +) +(1,13844:6630773,28797719:25952256,513147,134348 +k1,13843:8592593,28797719:249364 +k1,13843:11522380,28797719:249364 +k1,13843:13165696,28797719:249365 +k1,13843:14434145,28797719:249364 +k1,13843:17379005,28797719:249364 +k1,13843:21003473,28797719:249364 +k1,13843:22271922,28797719:249364 +k1,13843:24999859,28797719:249365 +k1,13843:27433538,28797719:249364 +k1,13843:29557232,28797719:249364 +k1,13843:32583029,28797719:0 +) +(1,13844:6630773,29662799:25952256,513147,134348 +k1,13843:7624532,29662799:225022 +k1,13843:8611083,29662799:225023 +k1,13843:9855190,29662799:225022 +k1,13843:11818228,29662799:225023 +k1,13843:12702542,29662799:225022 +k1,13843:16656564,29662799:225023 +k1,13843:19790074,29662799:225022 +k1,13843:21206541,29662799:225022 +k1,13843:23525439,29662799:225023 +k1,13843:24769546,29662799:225022 +k1,13843:26375413,29662799:225023 +k1,13843:28168056,29662799:225022 +k1,13843:29412164,29662799:225023 +k1,13843:31923737,29662799:225022 +k1,13843:32583029,29662799:0 +) +(1,13844:6630773,30527879:25952256,513147,134348 +k1,13843:9629773,30527879:211754 +k1,13843:11032972,30527879:211754 +k1,13843:14387833,30527879:211754 +k1,13843:17111582,30527879:211754 +k1,13843:19801908,30527879:211754 +k1,13843:22197977,30527879:211754 +k1,13843:23606418,30527879:211754 +k1,13843:27657271,30527879:211754 +k1,13843:30894822,30527879:211754 +k1,13844:32583029,30527879:0 +) +(1,13844:6630773,31392959:25952256,505283,122846 +k1,13843:8105324,31392959:165797 +k1,13843:8887160,31392959:165798 +k1,13843:9467767,31392959:165764 +k1,13843:10625124,31392959:165797 +(1,13843:10625124,31392959:0,452978,115847 +r1,13866:13797084,31392959:3171960,568825,115847 +k1,13843:10625124,31392959:-3171960 +) +(1,13843:10625124,31392959:3171960,452978,115847 +k1,13843:10625124,31392959:3277 +h1,13843:13793807,31392959:0,411205,112570 +) +k1,13843:14136552,31392959:165798 +(1,13843:14136552,31392959:0,459977,115847 +r1,13866:18363648,31392959:4227096,575824,115847 +k1,13843:14136552,31392959:-4227096 +) +(1,13843:14136552,31392959:4227096,459977,115847 +k1,13843:14136552,31392959:3277 +h1,13843:18360371,31392959:0,411205,112570 +) +k1,13843:18703115,31392959:165797 +(1,13843:18703115,31392959:0,452978,122846 +r1,13866:23281923,31392959:4578808,575824,122846 +k1,13843:18703115,31392959:-4578808 +) +(1,13843:18703115,31392959:4578808,452978,122846 +k1,13843:18703115,31392959:3277 +h1,13843:23278646,31392959:0,411205,112570 +) +k1,13843:23621390,31392959:165797 +(1,13843:23621390,31392959:0,452978,115847 +r1,13866:26793350,31392959:3171960,568825,115847 +k1,13843:23621390,31392959:-3171960 +) +(1,13843:23621390,31392959:3171960,452978,115847 +k1,13843:23621390,31392959:3277 +h1,13843:26790073,31392959:0,411205,112570 +) +k1,13843:27132818,31392959:165798 +(1,13843:27132818,31392959:0,459977,115847 +r1,13866:29601355,31392959:2468537,575824,115847 +k1,13843:27132818,31392959:-2468537 +) +(1,13843:27132818,31392959:2468537,459977,115847 +k1,13843:27132818,31392959:3277 +h1,13843:29598078,31392959:0,411205,112570 +) +k1,13843:29940822,31392959:165797 +(1,13843:29940822,31392959:0,459977,115847 +r1,13866:32409359,31392959:2468537,575824,115847 +k1,13843:29940822,31392959:-2468537 +) +(1,13843:29940822,31392959:2468537,459977,115847 +k1,13843:29940822,31392959:3277 +h1,13843:32406082,31392959:0,411205,112570 +) +k1,13844:32583029,31392959:0 +) +(1,13844:6630773,32258039:25952256,505283,122846 +(1,13843:6630773,32258039:0,452978,122846 +r1,13866:10857869,32258039:4227096,575824,122846 +k1,13843:6630773,32258039:-4227096 +) +(1,13843:6630773,32258039:4227096,452978,122846 +k1,13843:6630773,32258039:3277 +h1,13843:10854592,32258039:0,411205,112570 +) +k1,13843:11245608,32258039:214069 +(1,13843:11245608,32258039:0,452978,122846 +r1,13866:14417568,32258039:3171960,575824,122846 +k1,13843:11245608,32258039:-3171960 +) +(1,13843:11245608,32258039:3171960,452978,122846 +k1,13843:11245608,32258039:3277 +h1,13843:14414291,32258039:0,411205,112570 +) +k1,13843:14805308,32258039:214070 +(1,13843:14805308,32258039:0,452978,115847 +r1,13866:18328980,32258039:3523672,568825,115847 +k1,13843:14805308,32258039:-3523672 +) +(1,13843:14805308,32258039:3523672,452978,115847 +k1,13843:14805308,32258039:3277 +h1,13843:18325703,32258039:0,411205,112570 +) +k1,13843:18716719,32258039:214069 +k1,13843:20122233,32258039:214069 +(1,13843:20122233,32258039:0,452978,115847 +r1,13866:23997617,32258039:3875384,568825,115847 +k1,13843:20122233,32258039:-3875384 +) +(1,13843:20122233,32258039:3875384,452978,115847 +k1,13843:20122233,32258039:3277 +h1,13843:23994340,32258039:0,411205,112570 +) +k1,13843:24385356,32258039:214069 +k1,13843:27389294,32258039:214070 +(1,13843:27389294,32258039:0,459977,115847 +r1,13866:31264678,32258039:3875384,575824,115847 +k1,13843:27389294,32258039:-3875384 +) +(1,13843:27389294,32258039:3875384,459977,115847 +k1,13843:27389294,32258039:3277 +h1,13843:31261401,32258039:0,411205,112570 +) +k1,13843:31478747,32258039:214069 +k1,13843:32583029,32258039:0 +) +(1,13844:6630773,33123119:25952256,513147,134348 +k1,13843:7607026,33123119:228487 +k1,13843:9348738,33123119:228486 +k1,13843:10228653,33123119:228487 +k1,13843:12417976,33123119:228486 +k1,13843:13929658,33123119:228487 +k1,13843:15818826,33123119:228486 +k1,13843:16945156,33123119:228487 +k1,13843:18870370,33123119:228487 +k1,13843:22124653,33123119:228486 +k1,13843:23457422,33123119:228487 +k1,13843:24433674,33123119:228486 +k1,13843:26175387,33123119:228487 +k1,13843:28101911,33123119:228486 +k1,13843:30265021,33123119:228487 +k1,13843:32583029,33123119:0 +) +(1,13844:6630773,33988199:25952256,513147,134348 +g1,13843:8223953,33988199 +(1,13843:8223953,33988199:0,452978,115847 +r1,13866:9285642,33988199:1061689,568825,115847 +k1,13843:8223953,33988199:-1061689 +) +(1,13843:8223953,33988199:1061689,452978,115847 +k1,13843:8223953,33988199:3277 +h1,13843:9282365,33988199:0,411205,112570 +) +g1,13843:9484871,33988199 +g1,13843:10366985,33988199 +(1,13843:10366985,33988199:0,452978,115847 +r1,13866:11780386,33988199:1413401,568825,115847 +k1,13843:10366985,33988199:-1413401 +) +(1,13843:10366985,33988199:1413401,452978,115847 +k1,13843:10366985,33988199:3277 +h1,13843:11777109,33988199:0,411205,112570 +) +g1,13843:12153285,33988199 +g1,13843:14487677,33988199 +g1,13843:16508807,33988199 +g1,13843:17727121,33988199 +g1,13843:21156620,33988199 +g1,13843:22743902,33988199 +g1,13843:24771585,33988199 +g1,13843:25918465,33988199 +k1,13844:32583029,33988199:4373425 +g1,13844:32583029,33988199 +) +(1,13846:6630773,34853279:25952256,513147,126483 +h1,13845:6630773,34853279:983040,0,0 +k1,13845:8426968,34853279:185320 +k1,13845:9631374,34853279:185321 +k1,13845:11183775,34853279:185320 +k1,13845:12036252,34853279:185321 +(1,13845:12036252,34853279:0,452978,115847 +r1,13866:13801365,34853279:1765113,568825,115847 +k1,13845:12036252,34853279:-1765113 +) +(1,13845:12036252,34853279:1765113,452978,115847 +k1,13845:12036252,34853279:3277 +h1,13845:13798088,34853279:0,411205,112570 +) +k1,13845:13986685,34853279:185320 +k1,13845:15191091,34853279:185321 +k1,13845:19397045,34853279:185320 +k1,13845:20241658,34853279:185321 +k1,13845:21446063,34853279:185320 +k1,13845:23619091,34853279:185321 +k1,13845:24455839,34853279:185320 +k1,13845:25388926,34853279:185321 +k1,13845:27286702,34853279:185320 +k1,13845:29545582,34853279:185321 +k1,13845:31298523,34853279:185320 +k1,13845:32583029,34853279:0 +) +(1,13846:6630773,35718359:25952256,513147,134348 +k1,13845:8429463,35718359:285464 +k1,13845:9662578,35718359:285464 +k1,13845:11760768,35718359:285464 +k1,13845:14537910,35718359:285463 +k1,13845:15776923,35718359:285464 +k1,13845:17194849,35718359:285464 +k1,13845:18572798,35718359:285464 +k1,13845:19544424,35718359:285464 +k1,13845:20600591,35718359:285464 +k1,13845:23547471,35718359:285463 +k1,13845:25767558,35718359:285464 +k1,13845:27072107,35718359:285464 +k1,13845:32583029,35718359:0 +) +(1,13846:6630773,36583439:25952256,505283,134348 +k1,13845:9652930,36583439:232289 +k1,13845:13197408,36583439:232288 +k1,13845:16022301,36583439:232289 +k1,13845:18732505,36583439:232288 +k1,13845:19580832,36583439:232289 +k1,13845:23962860,36583439:232288 +k1,13845:25386594,36583439:232289 +k1,13845:28946145,36583439:232288 +k1,13845:30375121,36583439:232289 +k1,13846:32583029,36583439:0 +) +(1,13846:6630773,37448519:25952256,513147,134348 +g1,13845:9158496,37448519 +g1,13845:13168644,37448519 +g1,13845:13899370,37448519 +g1,13845:15793360,37448519 +k1,13846:32583029,37448519:15854470 +g1,13846:32583029,37448519 +) +(1,13847:6630773,38313599:25952256,0,0 +h1,13847:6630773,38313599:983040,0,0 +k1,13847:32583029,38313599:24969216 +g1,13847:32583029,38313599 +) +(1,13849:16125732,39343219:16457297,964084,570224 +(1,13849:16125732,39343219:6962339,964084,570224 +h1,13849:16125732,39343219:0,0,0 +g1,13849:16759335,39343219 +g1,13849:17509592,39343219 +(1,13849:17509592,39343219:1646264,964084,479774 +(1,13849:17509592,39343219:1646264,964084,479774 +h1,13849:17509592,39343219:78643,0,0 +[1,13849:17588235,39343219:1488978,964084,479774 +(1,13849:17588235,38884418:1488978,505283,95027 +) +(1,13849:17588235,39815129:1488978,505283,7864 +k1,13849:17962118,39815129:373883 +k1,13849:19077213,39815129:373883 +) +] +h1,13849:19077213,39343219:78643,0,0 +) +) +g1,13849:19337916,39343219 +g1,13849:20088173,39343219 +(1,13849:20088173,39343219:2999898,964084,570224 +(1,13849:20088173,39343219:2999898,964084,570224 +h1,13849:20088173,39343219:78643,0,0 +[1,13849:20166816,39343219:2842612,964084,570224 +(1,13849:20166816,38884418:2842612,505283,103819 +k1,13849:20324523,38884418:157707 +(1,13849:20851432,38982732:971374,248644,5505 +) +k1,13849:23009428,38884418:157707 +) +(1,13849:20166816,39815129:2842612,505283,98314 +(1,13849:20693725,39913443:427295,331678,0 +) +g1,13849:21266668,39815129 +g1,13849:21980513,39815129 +) +] +h1,13849:23009428,39343219:78643,0,0 +) +) +) +(1,13849:31198253,39343219:1384776,505283,95026 +(1,13849:31198253,39343219:1384776,505283,95026 +) +) +) +(1,13852:6630773,40728055:25952256,513147,126483 +h1,13851:6630773,40728055:983040,0,0 +k1,13851:9111608,40728055:301108 +k1,13851:12108212,40728055:301108 +k1,13851:14092285,40728055:301108 +k1,13851:15181791,40728055:301108 +k1,13851:17220914,40728055:301108 +k1,13851:19089643,40728055:301108 +k1,13851:22343803,40728055:301108 +k1,13851:23836356,40728055:301108 +k1,13851:26986314,40728055:301108 +k1,13851:29120464,40728055:301108 +k1,13851:30989193,40728055:301108 +k1,13851:32583029,40728055:0 +) +(1,13852:6630773,41593135:25952256,513147,134348 +k1,13851:9729069,41593135:250756 +k1,13851:11171269,41593135:250755 +k1,13851:13472647,41593135:250756 +k1,13851:15698311,41593135:251064 +k1,13851:16436603,41593135:250704 +k1,13851:20526457,41593135:250755 +k1,13851:23472709,41593135:250756 +k1,13851:28147144,41593135:250755 +k1,13851:29416985,41593135:250756 +k1,13852:32583029,41593135:0 +) +(1,13852:6630773,42458215:25952256,505283,126483 +k1,13851:9256586,42458215:280935 +k1,13851:12327390,42458215:280936 +k1,13851:13139822,42458215:280935 +k1,13851:16204727,42458215:280936 +k1,13851:17101700,42458215:280935 +k1,13851:17797397,42458215:280854 +k1,13851:19964458,42458215:280935 +k1,13851:21264478,42458215:280935 +k1,13851:23283429,42458215:280936 +(1,13851:23283429,42458215:0,452978,115847 +r1,13866:26807101,42458215:3523672,568825,115847 +k1,13851:23283429,42458215:-3523672 +) +(1,13851:23283429,42458215:3523672,452978,115847 +k1,13851:23283429,42458215:3277 +h1,13851:26803824,42458215:0,411205,112570 +) +k1,13851:27088036,42458215:280935 +k1,13851:27088036,42458215:0 +k1,13851:27542642,42458215:280936 +k1,13851:28777126,42458215:280935 +k1,13851:30190524,42458215:280936 +k1,13851:31563944,42458215:280935 +k1,13852:32583029,42458215:0 +) +(1,13852:6630773,43323295:25952256,505283,115847 +(1,13851:6630773,43323295:0,452978,115847 +r1,13866:9802733,43323295:3171960,568825,115847 +k1,13851:6630773,43323295:-3171960 +) +(1,13851:6630773,43323295:3171960,452978,115847 +k1,13851:6630773,43323295:3277 +h1,13851:9799456,43323295:0,411205,112570 +) +g1,13851:10001962,43323295 +g1,13851:11590554,43323295 +k1,13852:32583028,43323295:19884260 +g1,13852:32583028,43323295 ) +v1,13854:6630773,44008150:0,393216,0 +(1,13862:6630773,45510161:25952256,1895227,196608 +g1,13862:6630773,45510161 +g1,13862:6630773,45510161 +g1,13862:6434165,45510161 +(1,13862:6434165,45510161:0,1895227,196608 +r1,13866:32779637,45510161:26345472,2091835,196608 +k1,13862:6434165,45510161:-26345472 +) +(1,13862:6434165,45510161:26345472,1895227,196608 +[1,13862:6630773,45510161:25952256,1698619,0 +(1,13856:6630773,44235981:25952256,424439,106246 +(1,13855:6630773,44235981:0,0,0 +g1,13855:6630773,44235981 +g1,13855:6630773,44235981 +g1,13855:6303093,44235981 +(1,13855:6303093,44235981:0,0,0 +) +g1,13855:6630773,44235981 +) +k1,13856:6630773,44235981:0 +h1,13856:11610082,44235981:0,0,0 +k1,13856:32583030,44235981:20972948 +g1,13856:32583030,44235981 +) +(1,13857:6630773,44920836:25952256,424439,106246 +h1,13857:6630773,44920836:0,0,0 +k1,13857:6630773,44920836:0 +h1,13857:11942036,44920836:0,0,0 +k1,13857:32583028,44920836:20640992 +g1,13857:32583028,44920836 +) +(1,13861:6630773,45430339:25952256,424439,79822 +(1,13859:6630773,45430339:0,0,0 +g1,13859:6630773,45430339 +g1,13859:6630773,45430339 +g1,13859:6303093,45430339 +(1,13859:6303093,45430339:0,0,0 +) +g1,13859:6630773,45430339 +) +g1,13861:7626635,45430339 +g1,13861:8954451,45430339 +g1,13861:11278129,45430339 +g1,13861:11610083,45430339 +g1,13861:13933761,45430339 +g1,13861:14265715,45430339 +h1,13861:16589393,45430339:0,0,0 +k1,13861:32583029,45430339:15993636 +g1,13861:32583029,45430339 +) +] +) +g1,13862:32583029,45510161 +g1,13862:6630773,45510161 +g1,13862:6630773,45510161 +g1,13862:32583029,45510161 +g1,13862:32583029,45510161 +) +h1,13862:6630773,45706769:0,0,0 +] +(1,13866:32583029,45706769:0,0,0 +g1,13866:32583029,45706769 +) +) +] +(1,13866:6630773,47279633:25952256,0,0 +h1,13866:6630773,47279633:25952256,0,0 ) ] -[1,14291:3078558,4812305:0,0,0 -(1,14291:3078558,49800853:0,16384,2228224 -g1,14291:29030814,49800853 -g1,14291:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,14291:36151628,51504789:16384,1179648,0 +(1,13866:4262630,4025873:0,0,0 +[1,13866:-473656,4025873:0,0,0 +(1,13866:-473656,-710413:0,0,0 +(1,13866:-473656,-710413:0,0,0 +g1,13866:-473656,-710413 ) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 +g1,13866:-473656,-710413 ) ] ) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,14291:37855564,49800853:1179648,16384,0 -) -) -k1,14291:3078556,49800853:-34777008 -) ] -g1,14291:6630773,4812305 -g1,14291:6630773,4812305 -g1,14291:8691224,4812305 -g1,14291:11722264,4812305 -k1,14291:31387652,4812305:19665388 -) -) -] -[1,14291:6630773,45706769:25952256,40108032,0 -(1,14291:6630773,45706769:25952256,40108032,0 -(1,14291:6630773,45706769:0,0,0 -g1,14291:6630773,45706769 -) -[1,14291:6630773,45706769:25952256,40108032,0 -v1,14221:6630773,6254097:0,393216,0 -(1,14232:6630773,11255956:25952256,5395075,0 -g1,14232:6630773,11255956 -g1,14232:6303093,11255956 -r1,14291:6401397,11255956:98304,5395075,0 -g1,14232:6600626,11255956 -g1,14232:6797234,11255956 -[1,14232:6797234,11255956:25785795,5395075,0 -(1,14222:6797234,6686635:25785795,825754,196608 -(1,14221:6797234,6686635:0,825754,196608 -r1,14291:8834093,6686635:2036859,1022362,196608 -k1,14221:6797234,6686635:-2036859 -) -(1,14221:6797234,6686635:2036859,825754,196608 -) -k1,14221:9086524,6686635:252431 -k1,14221:10812742,6686635:327680 -k1,14221:12107195,6686635:252431 -k1,14221:15106240,6686635:252431 -(1,14221:15106240,6686635:0,424981,115847 -r1,14291:15464506,6686635:358266,540828,115847 -k1,14221:15106240,6686635:-358266 -) -(1,14221:15106240,6686635:358266,424981,115847 -k1,14221:15106240,6686635:3277 -h1,14221:15461229,6686635:0,411205,112570 -) -k1,14221:15716937,6686635:252431 -k1,14221:16620796,6686635:252431 -k1,14221:19096208,6686635:252431 -k1,14221:20034801,6686635:252431 -k1,14221:23299922,6686635:252431 -k1,14221:24340751,6686635:252431 -k1,14221:25899315,6686635:252431 -k1,14221:28794158,6686635:252431 -k1,14221:31226972,6686635:252431 -k1,14221:32227169,6686635:252431 -k1,14221:32583029,6686635:0 -) -(1,14222:6797234,7528123:25785795,513147,134348 -k1,14221:9486891,7528123:146205 -k1,14221:11027047,7528123:146205 -k1,14221:11982621,7528123:146204 -k1,14221:16098342,7528123:146205 -k1,14221:19126820,7528123:146205 -k1,14221:20292110,7528123:146205 -k1,14221:22281187,7528123:146205 -k1,14221:23086684,7528123:146205 -k1,14221:26547699,7528123:146204 -k1,14221:28390631,7528123:146205 -k1,14221:29709275,7528123:146205 -k1,14221:32583029,7528123:0 -) -(1,14222:6797234,8369611:25785795,505283,115847 -g1,14221:8390414,8369611 -(1,14221:8390414,8369611:0,452978,115847 -r1,14291:10858951,8369611:2468537,568825,115847 -k1,14221:8390414,8369611:-2468537 -) -(1,14221:8390414,8369611:2468537,452978,115847 -k1,14221:8390414,8369611:3277 -h1,14221:10855674,8369611:0,411205,112570 -) -k1,14222:32583029,8369611:21550408 -g1,14222:32583029,8369611 -) -v1,14224:6797234,9560077:0,393216,0 -(1,14229:6797234,10535060:25785795,1368199,196608 -g1,14229:6797234,10535060 -g1,14229:6797234,10535060 -g1,14229:6600626,10535060 -(1,14229:6600626,10535060:0,1368199,196608 -r1,14291:32779637,10535060:26179011,1564807,196608 -k1,14229:6600625,10535060:-26179012 -) -(1,14229:6600626,10535060:26179011,1368199,196608 -[1,14229:6797234,10535060:25785795,1171591,0 -(1,14226:6797234,9767695:25785795,404226,101187 -(1,14225:6797234,9767695:0,0,0 -g1,14225:6797234,9767695 -g1,14225:6797234,9767695 -g1,14225:6469554,9767695 -(1,14225:6469554,9767695:0,0,0 -) -g1,14225:6797234,9767695 -) -g1,14226:7429526,9767695 -g1,14226:8061818,9767695 -g1,14226:9326401,9767695 -g1,14226:9958693,9767695 -g1,14226:10907130,9767695 -g1,14226:11539422,9767695 -h1,14226:13120151,9767695:0,0,0 -k1,14226:32583029,9767695:19462878 -g1,14226:32583029,9767695 -) -(1,14227:6797234,10433873:25785795,404226,101187 -h1,14227:6797234,10433873:0,0,0 -g1,14227:7429526,10433873 -g1,14227:8061818,10433873 -g1,14227:9326401,10433873 -g1,14227:9958693,10433873 -g1,14227:10907130,10433873 -g1,14227:11539422,10433873 -h1,14227:13120151,10433873:0,0,0 -k1,14227:32583029,10433873:19462878 -g1,14227:32583029,10433873 -) -] -) -g1,14229:32583029,10535060 -g1,14229:6797234,10535060 -g1,14229:6797234,10535060 -g1,14229:32583029,10535060 -g1,14229:32583029,10535060 -) -h1,14229:6797234,10731668:0,0,0 -] -g1,14232:32583029,11255956 -) -h1,14232:6630773,11255956:0,0,0 -(1,14235:6630773,12535877:25952256,513147,134348 -h1,14234:6630773,12535877:983040,0,0 -k1,14234:10666494,12535877:191379 -(1,14234:10666494,12535877:0,452978,115847 -r1,14291:12079895,12535877:1413401,568825,115847 -k1,14234:10666494,12535877:-1413401 -) -(1,14234:10666494,12535877:1413401,452978,115847 -k1,14234:10666494,12535877:3277 -h1,14234:12076618,12535877:0,411205,112570 -) -k1,14234:12271274,12535877:191379 -k1,14234:13566935,12535877:191379 -k1,14234:15044130,12535877:191379 -k1,14234:15983275,12535877:191379 -k1,14234:17687880,12535877:191379 -k1,14234:18565421,12535877:191379 -k1,14234:19112661,12535877:191380 -k1,14234:21994293,12535877:191379 -k1,14234:23133323,12535877:191379 -k1,14234:26305279,12535877:191379 -k1,14234:27872259,12535877:191379 -k1,14234:29755778,12535877:191379 -k1,14234:30606449,12535877:191379 -k1,14234:31563944,12535877:191379 -k1,14234:32583029,12535877:0 -) -(1,14235:6630773,13377365:25952256,513147,126483 -g1,14234:9459962,13377365 -g1,14234:13124735,13377365 -g1,14234:15166836,13377365 -g1,14234:15982103,13377365 -g1,14234:16537192,13377365 -k1,14235:32583029,13377365:13328714 -g1,14235:32583029,13377365 -) -v1,14237:6630773,14481977:0,393216,0 -(1,14241:6630773,14790782:25952256,702021,196608 -g1,14241:6630773,14790782 -g1,14241:6630773,14790782 -g1,14241:6434165,14790782 -(1,14241:6434165,14790782:0,702021,196608 -r1,14291:32779637,14790782:26345472,898629,196608 -k1,14241:6434165,14790782:-26345472 -) -(1,14241:6434165,14790782:26345472,702021,196608 -[1,14241:6630773,14790782:25952256,505413,0 -(1,14239:6630773,14689595:25952256,404226,101187 -(1,14238:6630773,14689595:0,0,0 -g1,14238:6630773,14689595 -g1,14238:6630773,14689595 -g1,14238:6303093,14689595 -(1,14238:6303093,14689595:0,0,0 -) -g1,14238:6630773,14689595 -) -g1,14239:7263065,14689595 -g1,14239:7895357,14689595 -g1,14239:8843794,14689595 -g1,14239:9476086,14689595 -g1,14239:10424523,14689595 -g1,14239:11056815,14689595 -g1,14239:12005252,14689595 -g1,14239:13585981,14689595 -h1,14239:14218272,14689595:0,0,0 -k1,14239:32583028,14689595:18364756 -g1,14239:32583028,14689595 -) -] -) -g1,14241:32583029,14790782 -g1,14241:6630773,14790782 -g1,14241:6630773,14790782 -g1,14241:32583029,14790782 -g1,14241:32583029,14790782 -) -h1,14241:6630773,14987390:0,0,0 -v1,14245:6630773,16530435:0,393216,0 -(1,14269:6630773,28779588:25952256,12642369,196608 -g1,14269:6630773,28779588 -g1,14269:6630773,28779588 -g1,14269:6434165,28779588 -(1,14269:6434165,28779588:0,12642369,196608 -r1,14291:32779637,28779588:26345472,12838977,196608 -k1,14269:6434165,28779588:-26345472 -) -(1,14269:6434165,28779588:26345472,12642369,196608 -[1,14269:6630773,28779588:25952256,12445761,0 -(1,14247:6630773,16738053:25952256,404226,101187 -(1,14246:6630773,16738053:0,0,0 -g1,14246:6630773,16738053 -g1,14246:6630773,16738053 -g1,14246:6303093,16738053 -(1,14246:6303093,16738053:0,0,0 -) -g1,14246:6630773,16738053 -) -k1,14247:6630773,16738053:0 -g1,14247:9159938,16738053 -g1,14247:9792230,16738053 -g1,14247:10740667,16738053 -g1,14247:11372959,16738053 -g1,14247:12321396,16738053 -g1,14247:12953688,16738053 -g1,14247:13902125,16738053 -g1,14247:15482854,16738053 -h1,14247:16431291,16738053:0,0,0 -k1,14247:32583029,16738053:16151738 -g1,14247:32583029,16738053 -) -(1,14268:6630773,17404231:25952256,404226,101187 -(1,14249:6630773,17404231:0,0,0 -g1,14249:6630773,17404231 -g1,14249:6630773,17404231 -g1,14249:6303093,17404231 -(1,14249:6303093,17404231:0,0,0 -) -g1,14249:6630773,17404231 -) -g1,14268:7579210,17404231 -g1,14268:8211502,17404231 -g1,14268:8843794,17404231 -g1,14268:9792231,17404231 -g1,14268:10424523,17404231 -g1,14268:11372960,17404231 -g1,14268:12005252,17404231 -g1,14268:12953689,17404231 -g1,14268:14534418,17404231 -h1,14268:15166709,17404231:0,0,0 -k1,14268:32583029,17404231:17416320 -g1,14268:32583029,17404231 -) -(1,14268:6630773,18070409:25952256,404226,82312 -h1,14268:6630773,18070409:0,0,0 -g1,14268:7579210,18070409 -k1,14268:7579210,18070409:0 -h1,14268:13269832,18070409:0,0,0 -k1,14268:32583028,18070409:19313196 -g1,14268:32583028,18070409 -) -(1,14268:6630773,18736587:25952256,404226,101187 -h1,14268:6630773,18736587:0,0,0 -g1,14268:7579210,18736587 -g1,14268:10108376,18736587 -g1,14268:11372959,18736587 -h1,14268:12321396,18736587:0,0,0 -k1,14268:32583028,18736587:20261632 -g1,14268:32583028,18736587 -) -(1,14268:6630773,19402765:25952256,410518,82312 -h1,14268:6630773,19402765:0,0,0 -g1,14268:7579210,19402765 -k1,14268:7579210,19402765:0 -h1,14268:12637540,19402765:0,0,0 -k1,14268:32583028,19402765:19945488 -g1,14268:32583028,19402765 -) -(1,14268:6630773,20068943:25952256,388497,0 -h1,14268:6630773,20068943:0,0,0 -g1,14268:7579210,20068943 -g1,14268:7895356,20068943 -g1,14268:8211502,20068943 -g1,14268:8527648,20068943 -g1,14268:9476085,20068943 -g1,14268:10424522,20068943 -h1,14268:12005250,20068943:0,0,0 -k1,14268:32583030,20068943:20577780 -g1,14268:32583030,20068943 -) -(1,14268:6630773,20735121:25952256,388497,101187 -h1,14268:6630773,20735121:0,0,0 -g1,14268:7579210,20735121 -g1,14268:8211502,20735121 -g1,14268:8527648,20735121 -g1,14268:8843794,20735121 -g1,14268:9476086,20735121 -g1,14268:9792232,20735121 -g1,14268:10424524,20735121 -g1,14268:10740670,20735121 -g1,14268:11056816,20735121 -g1,14268:11372962,20735121 -g1,14268:11689108,20735121 -h1,14268:12005254,20735121:0,0,0 -k1,14268:32583030,20735121:20577776 -g1,14268:32583030,20735121 -) -(1,14268:6630773,21401299:25952256,388497,9436 -h1,14268:6630773,21401299:0,0,0 -g1,14268:7579210,21401299 -g1,14268:8527647,21401299 -g1,14268:8843793,21401299 -g1,14268:9476085,21401299 -g1,14268:9792231,21401299 -g1,14268:10424523,21401299 -g1,14268:10740669,21401299 -g1,14268:11056815,21401299 -g1,14268:11372961,21401299 -g1,14268:11689107,21401299 -h1,14268:12005253,21401299:0,0,0 -k1,14268:32583029,21401299:20577776 -g1,14268:32583029,21401299 -) -(1,14268:6630773,22067477:25952256,388497,9436 -h1,14268:6630773,22067477:0,0,0 -g1,14268:7579210,22067477 -g1,14268:8527647,22067477 -g1,14268:8843793,22067477 -g1,14268:9476085,22067477 -g1,14268:9792231,22067477 -g1,14268:10424523,22067477 -g1,14268:10740669,22067477 -g1,14268:11056815,22067477 -g1,14268:11372961,22067477 -g1,14268:11689107,22067477 -h1,14268:12005253,22067477:0,0,0 -k1,14268:32583029,22067477:20577776 -g1,14268:32583029,22067477 -) -(1,14268:6630773,22733655:25952256,404226,82312 -h1,14268:6630773,22733655:0,0,0 -g1,14268:7579210,22733655 -k1,14268:7579210,22733655:0 -h1,14268:13902123,22733655:0,0,0 -k1,14268:32583029,22733655:18680906 -g1,14268:32583029,22733655 -) -(1,14268:6630773,23399833:25952256,404226,76021 -h1,14268:6630773,23399833:0,0,0 -g1,14268:7579210,23399833 -g1,14268:8843793,23399833 -g1,14268:10424522,23399833 -g1,14268:10740668,23399833 -g1,14268:11056814,23399833 -g1,14268:11372960,23399833 -g1,14268:12953689,23399833 -g1,14268:13269835,23399833 -g1,14268:13585981,23399833 -g1,14268:13902127,23399833 -h1,14268:16115147,23399833:0,0,0 -k1,14268:32583029,23399833:16467882 -g1,14268:32583029,23399833 -) -(1,14268:6630773,24066011:25952256,404226,82312 -h1,14268:6630773,24066011:0,0,0 -g1,14268:7579210,24066011 -k1,14268:7579210,24066011:0 -h1,14268:12005249,24066011:0,0,0 -k1,14268:32583029,24066011:20577780 -g1,14268:32583029,24066011 -) -(1,14268:6630773,24732189:25952256,404226,76021 -h1,14268:6630773,24732189:0,0,0 -g1,14268:7579210,24732189 -g1,14268:8843793,24732189 -g1,14268:9476085,24732189 -g1,14268:10108377,24732189 -h1,14268:10424523,24732189:0,0,0 -k1,14268:32583029,24732189:22158506 -g1,14268:32583029,24732189 -) -(1,14268:6630773,25398367:25952256,404226,101187 -h1,14268:6630773,25398367:0,0,0 -g1,14268:7579210,25398367 -k1,14268:7579210,25398367:0 -h1,14268:13269832,25398367:0,0,0 -k1,14268:32583028,25398367:19313196 -g1,14268:32583028,25398367 -) -(1,14268:6630773,26064545:25952256,404226,76021 -h1,14268:6630773,26064545:0,0,0 -g1,14268:7579210,26064545 -g1,14268:8843793,26064545 -h1,14268:9159939,26064545:0,0,0 -k1,14268:32583029,26064545:23423090 -g1,14268:32583029,26064545 -) -(1,14268:6630773,26730723:25952256,404226,101187 -h1,14268:6630773,26730723:0,0,0 -g1,14268:7579210,26730723 -k1,14268:7579210,26730723:0 -h1,14268:12953686,26730723:0,0,0 -k1,14268:32583030,26730723:19629344 -g1,14268:32583030,26730723 -) -(1,14268:6630773,27396901:25952256,404226,76021 -h1,14268:6630773,27396901:0,0,0 -g1,14268:7579210,27396901 -g1,14268:8843793,27396901 -h1,14268:9159939,27396901:0,0,0 -k1,14268:32583029,27396901:23423090 -g1,14268:32583029,27396901 -) -(1,14268:6630773,28063079:25952256,404226,82312 -h1,14268:6630773,28063079:0,0,0 -g1,14268:7579210,28063079 -k1,14268:7579210,28063079:0 -h1,14268:14218269,28063079:0,0,0 -k1,14268:32583029,28063079:18364760 -g1,14268:32583029,28063079 -) -(1,14268:6630773,28729257:25952256,404226,50331 -h1,14268:6630773,28729257:0,0,0 -g1,14268:7579210,28729257 -g1,14268:12005250,28729257 -k1,14268:12005250,28729257:0 -h1,14268:15798998,28729257:0,0,0 -k1,14268:32583030,28729257:16784032 -g1,14268:32583030,28729257 -) -] -) -g1,14269:32583029,28779588 -g1,14269:6630773,28779588 -g1,14269:6630773,28779588 -g1,14269:32583029,28779588 -g1,14269:32583029,28779588 -) -h1,14269:6630773,28976196:0,0,0 -v1,14273:6630773,30694551:0,393216,0 -(1,14288:6630773,41060896:25952256,10759561,0 -g1,14288:6630773,41060896 -g1,14288:6303093,41060896 -r1,14291:6401397,41060896:98304,10759561,0 -g1,14288:6600626,41060896 -g1,14288:6797234,41060896 -[1,14288:6797234,41060896:25785795,10759561,0 -(1,14274:6797234,31127089:25785795,825754,196608 -(1,14273:6797234,31127089:0,825754,196608 -r1,14291:7890375,31127089:1093141,1022362,196608 -k1,14273:6797234,31127089:-1093141 -) -(1,14273:6797234,31127089:1093141,825754,196608 -) -k1,14273:8073976,31127089:183601 -k1,14273:9800194,31127089:327680 -k1,14273:12419768,31127089:183601 -k1,14273:13622455,31127089:183602 -k1,14273:16797775,31127089:183601 -k1,14273:18849807,31127089:183601 -k1,14273:20768801,31127089:183601 -k1,14273:21971488,31127089:183602 -(1,14273:21971488,31127089:0,452978,115847 -r1,14291:23033177,31127089:1061689,568825,115847 -k1,14273:21971488,31127089:-1061689 -) -(1,14273:21971488,31127089:1061689,452978,115847 -k1,14273:21971488,31127089:3277 -h1,14273:23029900,31127089:0,411205,112570 -) -k1,14273:23216778,31127089:183601 -k1,14273:24789742,31127089:183601 -k1,14273:25907886,31127089:183601 -k1,14273:27659109,31127089:183602 -k1,14273:28431223,31127089:183601 -k1,14273:30172615,31127089:183601 -k1,14274:32583029,31127089:0 -) -(1,14274:6797234,31968577:25785795,513147,126483 -k1,14273:8893130,31968577:260233 -k1,14273:10172447,31968577:260232 -k1,14273:11525165,31968577:260233 -k1,14273:12444689,31968577:260232 -k1,14273:15467265,31968577:260233 -k1,14273:17715204,31968577:260232 -k1,14273:20849191,31968577:260233 -k1,14273:21725461,31968577:260232 -k1,14273:24594027,31968577:260233 -k1,14273:26003105,31968577:260232 -k1,14273:27960065,31968577:260233 -k1,14273:31212016,31968577:260232 -k1,14273:32583029,31968577:0 -) -(1,14274:6797234,32810065:25785795,513147,134348 -k1,14273:8425450,32810065:169385 -k1,14273:9925217,32810065:169386 -k1,14273:13250816,32810065:169385 -k1,14273:14229572,32810065:169386 -k1,14273:15418042,32810065:169385 -k1,14273:17240900,32810065:169385 -k1,14273:19396682,32810065:169386 -k1,14273:20217495,32810065:169385 -k1,14273:22029212,32810065:169385 -k1,14273:23657429,32810065:169386 -k1,14273:28481836,32810065:169385 -k1,14273:29310514,32810065:169386 -k1,14273:30498984,32810065:169385 -k1,14273:32583029,32810065:0 -) -(1,14274:6797234,33651553:25785795,513147,126483 -k1,14273:7645875,33651553:189349 -k1,14273:9822932,33651553:189350 -k1,14273:13059705,33651553:189349 -k1,14273:15102412,33651553:189349 -k1,14273:16101131,33651553:189349 -k1,14273:17309566,33651553:189350 -k1,14273:19341787,33651553:189349 -k1,14273:22594289,33651553:189349 -k1,14273:23399677,33651553:189350 -k1,14273:24608111,33651553:189349 -k1,14273:27232113,33651553:189339 -k1,14273:29491090,33651553:189350 -k1,14273:30986572,33651553:189349 -k1,14273:32583029,33651553:0 -) -(1,14274:6797234,34493041:25785795,513147,134348 -k1,14273:8069984,34493041:206479 -k1,14273:9825080,34493041:206480 -k1,14273:12349567,34493041:206479 -k1,14273:13547607,34493041:206480 -k1,14273:15492101,34493041:206479 -k1,14273:17411037,34493041:206480 -k1,14273:18233554,34493041:206479 -k1,14273:19891656,34493041:206480 -k1,14273:21638886,34493041:206479 -k1,14273:22473200,34493041:206479 -k1,14273:23035540,34493041:206480 -k1,14273:25483350,34493041:206479 -k1,14273:27218785,34493041:206480 -k1,14273:29040071,34493041:206479 -k1,14273:30698173,34493041:206480 -k1,14273:31563944,34493041:206479 -k1,14273:32583029,34493041:0 -) -(1,14274:6797234,35334529:25785795,513147,134348 -k1,14273:9358446,35334529:243204 -k1,14273:11337044,35334529:243205 -k1,14273:11936108,35334529:243204 -k1,14273:16502722,35334529:243204 -k1,14273:20730516,35334529:243205 -k1,14273:23249785,35334529:243204 -k1,14273:25173332,35334529:243204 -k1,14273:26746917,35334529:243204 -k1,14273:28977829,35334529:243205 -k1,14273:31246095,35334529:243204 -k1,14273:32583029,35334529:0 -) -(1,14274:6797234,36176017:25785795,513147,126483 -g1,14273:8775765,36176017 -g1,14273:9994079,36176017 -g1,14273:13960973,36176017 -g1,14273:15727823,36176017 -g1,14273:16697755,36176017 -g1,14273:19451577,36176017 -g1,14273:20310098,36176017 -k1,14274:32583029,36176017:9445052 -g1,14274:32583029,36176017 -) -v1,14277:6797234,37366483:0,393216,0 -(1,14285:6797234,40340000:25785795,3366733,196608 -g1,14285:6797234,40340000 -g1,14285:6797234,40340000 -g1,14285:6600626,40340000 -(1,14285:6600626,40340000:0,3366733,196608 -r1,14291:32779637,40340000:26179011,3563341,196608 -k1,14285:6600625,40340000:-26179012 -) -(1,14285:6600626,40340000:26179011,3366733,196608 -[1,14285:6797234,40340000:25785795,3170125,0 -(1,14279:6797234,37574101:25785795,404226,101187 -(1,14278:6797234,37574101:0,0,0 -g1,14278:6797234,37574101 -g1,14278:6797234,37574101 -g1,14278:6469554,37574101 -(1,14278:6469554,37574101:0,0,0 -) -g1,14278:6797234,37574101 -) -k1,14279:6797234,37574101:0 -h1,14279:9642545,37574101:0,0,0 -k1,14279:32583029,37574101:22940484 -g1,14279:32583029,37574101 -) -(1,14280:6797234,38240279:25785795,404226,101187 -h1,14280:6797234,38240279:0,0,0 -g1,14280:11539419,38240279 -g1,14280:12171711,38240279 -g1,14280:12804003,38240279 -g1,14280:13436295,38240279 -g1,14280:14068587,38240279 -g1,14280:14700879,38240279 -g1,14280:15649317,38240279 -g1,14280:17230046,38240279 -g1,14280:17862338,38240279 -h1,14280:19443066,38240279:0,0,0 -k1,14280:32583029,38240279:13139963 -g1,14280:32583029,38240279 -) -(1,14281:6797234,38906457:25785795,404226,101187 -h1,14281:6797234,38906457:0,0,0 -g1,14281:11539419,38906457 -g1,14281:12171711,38906457 -g1,14281:13120148,38906457 -g1,14281:13752440,38906457 -g1,14281:14384732,38906457 -g1,14281:15017024,38906457 -g1,14281:16913899,38906457 -g1,14281:18494628,38906457 -g1,14281:19126920,38906457 -h1,14281:20707648,38906457:0,0,0 -k1,14281:32583029,38906457:11875381 -g1,14281:32583029,38906457 -) -(1,14282:6797234,39572635:25785795,404226,101187 -h1,14282:6797234,39572635:0,0,0 -g1,14282:11539419,39572635 -g1,14282:12171711,39572635 -g1,14282:12804003,39572635 -g1,14282:13436295,39572635 -g1,14282:14068587,39572635 -g1,14282:14700879,39572635 -g1,14282:15333171,39572635 -g1,14282:15965463,39572635 -g1,14282:16597755,39572635 -g1,14282:18178484,39572635 -g1,14282:18810776,39572635 -g1,14282:19443068,39572635 -g1,14282:20075360,39572635 -g1,14282:21656089,39572635 -g1,14282:22604527,39572635 -g1,14282:24185256,39572635 -g1,14282:24817548,39572635 -h1,14282:26398276,39572635:0,0,0 -k1,14282:32583029,39572635:6184753 -g1,14282:32583029,39572635 -) -(1,14283:6797234,40238813:25785795,404226,101187 -h1,14283:6797234,40238813:0,0,0 -g1,14283:11539419,40238813 -g1,14283:12171711,40238813 -g1,14283:12804003,40238813 -g1,14283:13436295,40238813 -g1,14283:14068587,40238813 -g1,14283:14700879,40238813 -g1,14283:15333171,40238813 -g1,14283:15965463,40238813 -g1,14283:16597755,40238813 -g1,14283:18178484,40238813 -g1,14283:18810776,40238813 -g1,14283:19443068,40238813 -g1,14283:20075360,40238813 -g1,14283:21656089,40238813 -g1,14283:22604527,40238813 -g1,14283:24185256,40238813 -g1,14283:24817548,40238813 -h1,14283:26398276,40238813:0,0,0 -k1,14283:32583029,40238813:6184753 -g1,14283:32583029,40238813 -) -] -) -g1,14285:32583029,40340000 -g1,14285:6797234,40340000 -g1,14285:6797234,40340000 -g1,14285:32583029,40340000 -g1,14285:32583029,40340000 -) -h1,14285:6797234,40536608:0,0,0 -] -g1,14288:32583029,41060896 -) -h1,14288:6630773,41060896:0,0,0 -(1,14291:6630773,42340817:25952256,513147,134348 -h1,14290:6630773,42340817:983040,0,0 -k1,14290:10211202,42340817:180421 -k1,14290:11050914,42340817:180420 -k1,14290:13455627,42340817:180421 -k1,14290:14252085,42340817:180420 -k1,14290:18371875,42340817:180421 -k1,14290:20287688,42340817:180420 -k1,14290:24208248,42340817:180420 -k1,14290:26807603,42340817:180421 -k1,14290:28481590,42340817:180421 -k1,14290:29348172,42340817:180420 -k1,14290:32583029,42340817:0 -) -(1,14291:6630773,43182305:25952256,513147,126483 -k1,14290:7454669,43182305:141011 -k1,14290:10380306,43182305:141012 -k1,14290:13729304,43182305:141011 -k1,14290:16043490,43182305:141012 -k1,14290:16800539,43182305:141011 -k1,14290:17960635,43182305:141011 -k1,14290:19631913,43182305:141012 -k1,14290:20424352,43182305:141011 -k1,14290:23353266,43182305:141012 -k1,14290:26721270,43182305:141011 -k1,14290:28469225,43182305:141012 -k1,14290:30626779,43182305:141011 -k1,14291:32583029,43182305:0 -) -(1,14291:6630773,44023793:25952256,513147,134348 -k1,14290:7796518,44023793:175496 -k1,14290:8588052,44023793:175496 -k1,14290:10272187,44023793:175496 -k1,14290:12903317,44023793:175496 -k1,14290:13738105,44023793:175496 -k1,14290:16770315,44023793:175496 -k1,14290:17573646,44023793:175496 -k1,14290:19242708,44023793:175496 -k1,14290:19774064,44023793:175496 -k1,14290:22211863,44023793:175496 -k1,14290:25149702,44023793:175496 -k1,14290:27426282,44023793:175496 -k1,14290:28593338,44023793:175496 -k1,14290:30728360,44023793:175496 -k1,14290:32583029,44023793:0 -) -(1,14291:6630773,44865281:25952256,513147,134348 -k1,14290:7646066,44865281:205923 -k1,14290:10614333,44865281:205924 -k1,14290:12427199,44865281:205923 -k1,14290:14649666,44865281:205924 -k1,14290:17531424,44865281:205923 -k1,14290:20076983,44865281:205924 -k1,14290:22113982,44865281:205923 -k1,14290:23002790,44865281:205923 -k1,14290:24274985,44865281:205924 -k1,14290:25012405,44865281:205923 -k1,14290:25574189,44865281:205924 -k1,14290:28558183,44865281:205923 -k1,14290:29423399,44865281:205924 -k1,14290:30400025,44865281:205923 -k1,14291:32583029,44865281:0 -) -(1,14291:6630773,45706769:25952256,513147,134348 -k1,14290:8613456,45706769:169957 -k1,14290:9253305,45706769:169956 -k1,14290:9954759,45706769:169957 -k1,14290:12616394,45706769:169956 -k1,14290:13472513,45706769:169957 -k1,14290:14964331,45706769:169957 -k1,14290:15793579,45706769:169956 -k1,14290:16982621,45706769:169957 -k1,14290:19241209,45706769:169956 -k1,14290:20070458,45706769:169957 -k1,14290:21259500,45706769:169957 -k1,14290:25038524,45706769:169956 -k1,14290:27063150,45706769:169957 -k1,14290:28042476,45706769:169956 -k1,14290:29231518,45706769:169957 -k1,14290:32583029,45706769:0 -) -] -(1,14291:32583029,45706769:0,0,0 -g1,14291:32583029,45706769 -) -) -] -(1,14291:6630773,47279633:25952256,0,0 -h1,14291:6630773,47279633:25952256,0,0 -) -] -(1,14291:4262630,4025873:0,0,0 -[1,14291:-473656,4025873:0,0,0 -(1,14291:-473656,-710413:0,0,0 -(1,14291:-473656,-710413:0,0,0 -g1,14291:-473656,-710413 -) -g1,14291:-473656,-710413 -) -] -) -] -!25786 -}242 -Input:2153:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2154:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2155:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2156:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2157:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2158:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2159:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2160:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2161:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2162:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2163:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2164:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2165:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2166:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2167:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1422 -{243 -[1,14583:4262630,47279633:28320399,43253760,0 -(1,14583:4262630,4025873:0,0,0 -[1,14583:-473656,4025873:0,0,0 -(1,14583:-473656,-710413:0,0,0 -(1,14583:-473656,-644877:0,0,0 -k1,14583:-473656,-644877:-65536 +!33976 +}224 +Input:2123:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2124:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2125:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2126:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2127:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!482 +{225 +[1,13970:4262630,47279633:28320399,43253760,0 +(1,13970:4262630,4025873:0,0,0 +[1,13970:-473656,4025873:0,0,0 +(1,13970:-473656,-710413:0,0,0 +(1,13970:-473656,-644877:0,0,0 +k1,13970:-473656,-644877:-65536 ) -(1,14583:-473656,4736287:0,0,0 -k1,14583:-473656,4736287:5209943 +(1,13970:-473656,4736287:0,0,0 +k1,13970:-473656,4736287:5209943 ) -g1,14583:-473656,-710413 +g1,13970:-473656,-710413 ) ] ) -[1,14583:6630773,47279633:25952256,43253760,0 -[1,14583:6630773,4812305:25952256,786432,0 -(1,14583:6630773,4812305:25952256,513147,126483 -(1,14583:6630773,4812305:25952256,513147,126483 -g1,14583:3078558,4812305 -[1,14583:3078558,4812305:0,0,0 -(1,14583:3078558,2439708:0,1703936,0 -k1,14583:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,14583:2537886,2439708:1179648,16384,0 +[1,13970:6630773,47279633:25952256,43253760,0 +[1,13970:6630773,4812305:25952256,786432,0 +(1,13970:6630773,4812305:25952256,513147,126483 +(1,13970:6630773,4812305:25952256,513147,126483 +g1,13970:3078558,4812305 +[1,13970:3078558,4812305:0,0,0 +(1,13970:3078558,2439708:0,1703936,0 +k1,13970:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,13970:2537886,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,14583:3078558,1915420:16384,1179648,0 +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,13970:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] ) ) ) ] -[1,14583:3078558,4812305:0,0,0 -(1,14583:3078558,2439708:0,1703936,0 -g1,14583:29030814,2439708 -g1,14583:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,14583:36151628,1915420:16384,1179648,0 +[1,13970:3078558,4812305:0,0,0 +(1,13970:3078558,2439708:0,1703936,0 +g1,13970:29030814,2439708 +g1,13970:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,13970:36151628,1915420:16384,1179648,0 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,14583:37855564,2439708:1179648,16384,0 +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,13970:37855564,2439708:1179648,16384,0 ) ) -k1,14583:3078556,2439708:-34777008 +k1,13970:3078556,2439708:-34777008 ) ] -[1,14583:3078558,4812305:0,0,0 -(1,14583:3078558,49800853:0,16384,2228224 -k1,14583:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,14583:2537886,49800853:1179648,16384,0 +[1,13970:3078558,4812305:0,0,0 +(1,13970:3078558,49800853:0,16384,2228224 +k1,13970:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,13970:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,14583:3078558,51504789:16384,1179648,0 +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,13970:3078558,51504789:16384,1179648,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 ) ] ) ) ) ] -[1,14583:3078558,4812305:0,0,0 -(1,14583:3078558,49800853:0,16384,2228224 -g1,14583:29030814,49800853 -g1,14583:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,14583:36151628,51504789:16384,1179648,0 -) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 -) -] -) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,14583:37855564,49800853:1179648,16384,0 -) -) -k1,14583:3078556,49800853:-34777008 -) -] -g1,14583:6630773,4812305 -k1,14583:19540057,4812305:11713907 -g1,14583:21162728,4812305 -g1,14583:21985204,4812305 -g1,14583:24539797,4812305 -g1,14583:25949476,4812305 -g1,14583:28728857,4812305 -g1,14583:29852144,4812305 -) -) -] -[1,14583:6630773,45706769:25952256,40108032,0 -(1,14583:6630773,45706769:25952256,40108032,0 -(1,14583:6630773,45706769:0,0,0 -g1,14583:6630773,45706769 -) -[1,14583:6630773,45706769:25952256,40108032,0 -(1,14291:6630773,6254097:25952256,513147,134348 -k1,14290:7469199,6254097:179134 -k1,14290:10792750,6254097:179134 -k1,14290:14617652,6254097:179134 -k1,14290:15448214,6254097:179134 -k1,14290:19797403,6254097:179133 -k1,14290:21768291,6254097:179134 -k1,14290:22575260,6254097:179134 -k1,14290:24816137,6254097:179114 -k1,14290:30243394,6254097:179134 -k1,14290:32583029,6254097:0 -) -(1,14291:6630773,7095585:25952256,513147,126483 -k1,14290:8749265,7095585:257925 -k1,14290:9658618,7095585:257925 -k1,14290:10664309,7095585:257925 -k1,14290:14012257,7095585:257925 -k1,14290:15031710,7095585:257925 -k1,14290:17620751,7095585:257925 -k1,14290:20960835,7095585:257926 -k1,14290:21878052,7095585:257925 -k1,14290:23742920,7095585:257925 -k1,14290:25843717,7095585:257925 -k1,14290:26863170,7095585:257925 -k1,14290:29189411,7095585:257925 -k1,14290:30114492,7095585:257925 -(1,14290:30114492,7095585:0,452978,115847 -r1,14583:32583029,7095585:2468537,568825,115847 -k1,14290:30114492,7095585:-2468537 -) -(1,14290:30114492,7095585:2468537,452978,115847 -k1,14290:30114492,7095585:3277 -h1,14290:32579752,7095585:0,411205,112570 -) -k1,14290:32583029,7095585:0 -) -(1,14291:6630773,7937073:25952256,513147,126483 -k1,14290:8938895,7937073:298133 -k1,14290:10256113,7937073:298133 -k1,14290:13271369,7937073:298133 -k1,14290:16974753,7937073:298133 -k1,14290:19085612,7937073:298133 -k1,14290:23652105,7937073:298133 -k1,14290:25663905,7937073:298034 -k1,14290:28280046,7937073:298133 -k1,14290:29569739,7937073:298133 -k1,14290:31469572,7937073:298133 -k1,14291:32583029,7937073:0 -) -(1,14291:6630773,8778561:25952256,513147,134348 -k1,14290:9240810,8778561:205521 -k1,14290:10959557,8778561:205521 -k1,14290:12559028,8778561:205520 -k1,14290:14153912,8778561:205521 -k1,14290:15927054,8778561:205521 -k1,14290:20071944,8778561:205521 -k1,14290:21468910,8778561:205521 -k1,14290:24103850,8778561:205520 -k1,14290:26044764,8778561:205521 -k1,14290:29990425,8778561:205521 -k1,14290:32583029,8778561:0 -) -(1,14291:6630773,9620049:25952256,505283,134348 -k1,14290:7519878,9620049:202943 -k1,14290:11924334,9620049:202943 -k1,14290:12743316,9620049:202944 -k1,14290:15856713,9620049:202943 -k1,14290:17979860,9620049:202943 -k1,14290:19374248,9620049:202943 -k1,14290:21679585,9620049:202943 -k1,14290:23756858,9620049:202943 -k1,14290:25132241,9620049:202944 -k1,14290:28245638,9620049:202943 -k1,14290:29541066,9620049:202943 -k1,14290:31252648,9620049:202943 -k1,14290:32583029,9620049:0 -) -(1,14291:6630773,10461537:25952256,513147,134348 -k1,14290:10319532,10461537:286130 -k1,14290:11257090,10461537:286130 -k1,14290:12562305,10461537:286130 -k1,14290:14836142,10461537:286130 -k1,14290:17665725,10461537:286131 -k1,14290:20035900,10461537:286130 -k1,14290:20973458,10461537:286130 -k1,14290:23928869,10461537:286130 -k1,14290:26554634,10461537:286130 -k1,14290:28032209,10461537:286130 -k1,14290:32583029,10461537:0 -) -(1,14291:6630773,11303025:25952256,513147,126483 -k1,14290:8429409,11303025:234947 -k1,14290:9855800,11303025:234946 -k1,14290:12585047,11303025:234947 -k1,14290:15094748,11303025:234946 -k1,14290:18022569,11303025:234947 -k1,14290:20575523,11303025:234946 -k1,14290:22285685,11303025:234947 -k1,14290:25233166,11303025:234946 -k1,14290:27170083,11303025:234947 -k1,14290:30981329,11303025:234946 -k1,14290:32583029,11303025:0 -) -(1,14291:6630773,12144513:25952256,513147,134348 -k1,14290:7469197,12144513:179132 -k1,14290:9287383,12144513:179131 -k1,14290:11863822,12144513:179132 -k1,14290:12694382,12144513:179132 -k1,14290:16066428,12144513:179132 -k1,14290:19329684,12144513:179132 -k1,14290:21383145,12144513:179131 -k1,14290:24964906,12144513:179132 -k1,14290:26174919,12144513:179132 -k1,14290:28719900,12144513:179131 -k1,14290:29918117,12144513:179132 -k1,14290:31923737,12144513:179132 -k1,14290:32583029,12144513:0 -) -(1,14291:6630773,12986001:25952256,505283,7863 -g1,14290:8033243,12986001 -k1,14291:32583029,12986001:22794076 -g1,14291:32583029,12986001 -) -v1,14293:6630773,14336065:0,393216,0 -(1,14319:6630773,30982797:25952256,17039948,0 -g1,14319:6630773,30982797 -g1,14319:6303093,30982797 -r1,14583:6401397,30982797:98304,17039948,0 -g1,14319:6600626,30982797 -g1,14319:6797234,30982797 -[1,14319:6797234,30982797:25785795,17039948,0 -(1,14294:6797234,14756649:25785795,813800,267386 -(1,14293:6797234,14756649:0,813800,267386 -r1,14583:8134168,14756649:1336934,1081186,267386 -k1,14293:6797234,14756649:-1336934 -) -(1,14293:6797234,14756649:1336934,813800,267386 -) -k1,14293:8310680,14756649:176512 -k1,14293:8638360,14756649:327680 -k1,14293:9229693,14756649:176490 -k1,14293:10538667,14756649:176512 -k1,14293:12763179,14756649:176512 -k1,14293:14071498,14756649:176512 -k1,14293:18219492,14756649:176512 -k1,14293:20638646,14756649:176512 -k1,14293:22802865,14756649:176512 -k1,14293:25696500,14756649:176512 -k1,14293:27339708,14756649:176512 -k1,14293:29214258,14756649:176512 -k1,14293:30409855,14756649:176512 -k1,14293:32583029,14756649:0 -) -(1,14294:6797234,15598137:25785795,513147,126483 -k1,14293:7722646,15598137:266120 -k1,14293:9007851,15598137:266120 -k1,14293:9961443,15598137:266119 -k1,14293:11219123,15598137:266120 -k1,14293:12551514,15598137:266120 -k1,14293:17122039,15598137:266120 -k1,14293:17858052,15598137:266120 -k1,14293:18655668,15598137:266119 -k1,14293:19907449,15598137:266120 -k1,14293:24323309,15598137:266120 -k1,14293:25205467,15598137:266120 -k1,14293:26457248,15598137:266120 -k1,14293:28072098,15598137:266119 -k1,14293:28937872,15598137:266120 -k1,14293:31305732,15598137:266120 -k1,14293:32583029,15598137:0 -) -(1,14294:6797234,16439625:25785795,513147,134348 -k1,14293:9199128,16439625:200540 -k1,14293:10445623,16439625:200540 -k1,14293:14438731,16439625:200540 -k1,14293:15835958,16439625:200540 -k1,14293:17638199,16439625:200541 -k1,14293:20789825,16439625:200540 -k1,14293:22181810,16439625:200540 -k1,14293:25897046,16439625:200540 -k1,14293:28601717,16439625:200540 -k1,14293:29333754,16439625:200540 -k1,14293:32583029,16439625:0 -) -(1,14294:6797234,17281113:25785795,513147,134348 -g1,14293:7944114,17281113 -g1,14293:10799517,17281113 -g1,14293:15111785,17281113 -g1,14293:17629022,17281113 -g1,14293:19112757,17281113 -g1,14293:20303546,17281113 -g1,14293:22974793,17281113 -g1,14293:26882704,17281113 -k1,14294:32583029,17281113:3683782 -g1,14294:32583029,17281113 -) -(1,14296:6797234,18122601:25785795,513147,134348 -h1,14295:6797234,18122601:983040,0,0 -k1,14295:10058961,18122601:214303 -k1,14295:12591272,18122601:214303 -k1,14295:13951799,18122601:214302 -k1,14295:15910015,18122601:214303 -k1,14295:17992749,18122601:214303 -k1,14295:18858480,18122601:214303 -k1,14295:20462145,18122601:214302 -k1,14295:22244069,18122601:214303 -k1,14295:23229075,18122601:214303 -k1,14295:27052446,18122601:214303 -k1,14295:29121417,18122601:214302 -k1,14295:30145090,18122601:214303 -k1,14295:30715253,18122601:214303 -k1,14296:32583029,18122601:0 -) -(1,14296:6797234,18964089:25785795,513147,134348 -k1,14295:8245088,18964089:209879 -k1,14295:11111141,18964089:209879 -k1,14295:13409652,18964089:209879 -k1,14295:15799914,18964089:209879 -k1,14295:16757559,18964089:209879 -k1,14295:19638686,18964089:209880 -k1,14295:20476400,18964089:209879 -k1,14295:22152975,18964089:209879 -k1,14295:24060236,18964089:209879 -k1,14295:26683151,18964089:209879 -k1,14295:28735902,18964089:209879 -k1,14295:29937341,18964089:209879 -k1,14295:32583029,18964089:0 -) -(1,14296:6797234,19805577:25785795,505283,134348 -k1,14295:8776880,19805577:290128 -k1,14295:13060117,19805577:290128 -k1,14295:17560277,19805577:290127 -k1,14295:19134911,19805577:290128 -k1,14295:21762708,19805577:290128 -k1,14295:23071921,19805577:290128 -k1,14295:25834067,19805577:290128 -k1,14295:27636765,19805577:290127 -k1,14295:28918453,19805577:290128 -k1,14295:31966991,19805577:290128 -k1,14295:32583029,19805577:0 -) -(1,14296:6797234,20647065:25785795,513147,134348 -k1,14295:8051047,20647065:234728 -k1,14295:10447152,20647065:234728 -k1,14295:12200349,20647065:234728 -k1,14295:14753085,20647065:234728 -k1,14295:15979373,20647065:234728 -k1,14295:17280373,20647065:234729 -k1,14295:21819506,20647065:234728 -k1,14295:22740396,20647065:234728 -k1,14295:23994209,20647065:234728 -k1,14295:27054849,20647065:234728 -k1,14295:28857198,20647065:234728 -k1,14295:30111011,20647065:234728 -k1,14295:32583029,20647065:0 -) -(1,14296:6797234,21488553:25785795,505283,134348 -k1,14295:9221345,21488553:167051 -k1,14295:10901622,21488553:167051 -k1,14295:12806688,21488553:167051 -k1,14295:16614919,21488553:167051 -k1,14295:18791959,21488553:167051 -k1,14295:19978096,21488553:167052 -k1,14295:23362965,21488553:167051 -k1,14295:25546559,21488553:167051 -k1,14295:28852785,21488553:167051 -k1,14295:30528475,21488553:167051 -k1,14296:32583029,21488553:0 -) -(1,14296:6797234,22330041:25785795,513147,134348 -g1,14295:8015548,22330041 -g1,14295:11952295,22330041 -g1,14295:13342969,22330041 -g1,14295:16822930,22330041 -k1,14296:32583029,22330041:12540315 -g1,14296:32583029,22330041 -) -v1,14298:6797234,23520507:0,393216,0 -(1,14303:6797234,24427857:25785795,1300566,196608 -g1,14303:6797234,24427857 -g1,14303:6797234,24427857 -g1,14303:6600626,24427857 -(1,14303:6600626,24427857:0,1300566,196608 -r1,14583:32779637,24427857:26179011,1497174,196608 -k1,14303:6600625,24427857:-26179012 -) -(1,14303:6600626,24427857:26179011,1300566,196608 -[1,14303:6797234,24427857:25785795,1103958,0 -(1,14300:6797234,23660492:25785795,336593,101187 -(1,14299:6797234,23660492:0,0,0 -g1,14299:6797234,23660492 -g1,14299:6797234,23660492 -g1,14299:6469554,23660492 -(1,14299:6469554,23660492:0,0,0 -) -g1,14299:6797234,23660492 -) -g1,14300:7429526,23660492 -g1,14300:8061818,23660492 -g1,14300:8694110,23660492 -g1,14300:9326402,23660492 -g1,14300:9958694,23660492 -g1,14300:10590986,23660492 -g1,14300:11855570,23660492 -g1,14300:12487862,23660492 -g1,14300:13752446,23660492 -g1,14300:14384738,23660492 -h1,14300:15333176,23660492:0,0,0 -k1,14300:32583028,23660492:17249852 -g1,14300:32583028,23660492 -) -(1,14301:6797234,24326670:25785795,336593,101187 -h1,14301:6797234,24326670:0,0,0 -g1,14301:7429526,24326670 -g1,14301:8061818,24326670 -g1,14301:8694110,24326670 -g1,14301:9326402,24326670 -g1,14301:9958694,24326670 -g1,14301:10590986,24326670 -g1,14301:11223278,24326670 -g1,14301:11855570,24326670 -g1,14301:13120154,24326670 -g1,14301:13752446,24326670 -g1,14301:15017030,24326670 -g1,14301:15649322,24326670 -h1,14301:17230052,24326670:0,0,0 -k1,14301:32583029,24326670:15352977 -g1,14301:32583029,24326670 -) -] -) -g1,14303:32583029,24427857 -g1,14303:6797234,24427857 -g1,14303:6797234,24427857 -g1,14303:32583029,24427857 -g1,14303:32583029,24427857 -) -h1,14303:6797234,24624465:0,0,0 -(1,14307:6797234,25990241:25785795,513147,126483 -h1,14306:6797234,25990241:983040,0,0 -k1,14306:8556472,25990241:148363 -k1,14306:11336106,25990241:148363 -k1,14306:12135898,25990241:148364 -k1,14306:14028174,25990241:148363 -k1,14306:16205532,25990241:148363 -k1,14306:17372980,25990241:148363 -k1,14306:19839352,25990241:148364 -k1,14306:21856146,25990241:148363 -k1,14306:22996069,25990241:148363 -k1,14306:27448837,25990241:148363 -k1,14306:29063897,25990241:148364 -k1,14306:29678221,25990241:148363 -k1,14306:30892855,25990241:148363 -k1,14306:32583029,25990241:0 -) -(1,14307:6797234,26831729:25785795,505283,134348 -g1,14306:9314471,26831729 -g1,14306:10787065,26831729 -g1,14306:13966871,26831729 -g1,14306:14932216,26831729 -g1,14306:17761405,26831729 -k1,14307:32583029,26831729:10645015 -g1,14307:32583029,26831729 -) -v1,14309:6797234,28022195:0,393216,0 -(1,14316:6797234,30261901:25785795,2632922,196608 -g1,14316:6797234,30261901 -g1,14316:6797234,30261901 -g1,14316:6600626,30261901 -(1,14316:6600626,30261901:0,2632922,196608 -r1,14583:32779637,30261901:26179011,2829530,196608 -k1,14316:6600625,30261901:-26179012 -) -(1,14316:6600626,30261901:26179011,2632922,196608 -[1,14316:6797234,30261901:25785795,2436314,0 -(1,14311:6797234,28162180:25785795,336593,101187 -(1,14310:6797234,28162180:0,0,0 -g1,14310:6797234,28162180 -g1,14310:6797234,28162180 -g1,14310:6469554,28162180 -(1,14310:6469554,28162180:0,0,0 -) -g1,14310:6797234,28162180 -) -g1,14311:7429526,28162180 -g1,14311:8061818,28162180 -g1,14311:8694110,28162180 -g1,14311:9326402,28162180 -g1,14311:9958694,28162180 -g1,14311:10590986,28162180 -g1,14311:11223278,28162180 -g1,14311:11855570,28162180 -g1,14311:13120154,28162180 -g1,14311:13752446,28162180 -g1,14311:15017030,28162180 -g1,14311:15649322,28162180 -h1,14311:16597760,28162180:0,0,0 -k1,14311:32583029,28162180:15985269 -g1,14311:32583029,28162180 -) -(1,14312:6797234,28828358:25785795,404226,101187 -h1,14312:6797234,28828358:0,0,0 -g1,14312:7429526,28828358 -g1,14312:8061818,28828358 -g1,14312:9010255,28828358 -g1,14312:9642547,28828358 -g1,14312:10274839,28828358 -g1,14312:10907131,28828358 -h1,14312:12171714,28828358:0,0,0 -k1,14312:32583030,28828358:20411316 -g1,14312:32583030,28828358 -) -(1,14313:6797234,29494536:25785795,336593,101187 -h1,14313:6797234,29494536:0,0,0 -g1,14313:7429526,29494536 -g1,14313:8061818,29494536 -g1,14313:8694110,29494536 -g1,14313:9326402,29494536 -g1,14313:9958694,29494536 -g1,14313:10590986,29494536 -g1,14313:11223278,29494536 -g1,14313:11855570,29494536 -h1,14313:12804008,29494536:0,0,0 -k1,14313:32583028,29494536:19779020 -g1,14313:32583028,29494536 -) -(1,14314:6797234,30160714:25785795,336593,101187 -h1,14314:6797234,30160714:0,0,0 -g1,14314:7429526,30160714 -g1,14314:8061818,30160714 -g1,14314:8694110,30160714 -g1,14314:9326402,30160714 -g1,14314:9958694,30160714 -g1,14314:10590986,30160714 -h1,14314:10907132,30160714:0,0,0 -k1,14314:32583028,30160714:21675896 -g1,14314:32583028,30160714 -) -] -) -g1,14316:32583029,30261901 -g1,14316:6797234,30261901 -g1,14316:6797234,30261901 -g1,14316:32583029,30261901 -g1,14316:32583029,30261901 -) -h1,14316:6797234,30458509:0,0,0 -] -g1,14319:32583029,30982797 -) -h1,14319:6630773,30982797:0,0,0 -(1,14322:6630773,32332861:25952256,505283,134348 -h1,14321:6630773,32332861:983040,0,0 -k1,14321:8727510,32332861:295808 -k1,14321:10463145,32332861:295809 -k1,14321:11374991,32332861:295808 -k1,14321:14088423,32332861:295809 -h1,14321:14486882,32332861:0,0,0 -k1,14321:14956360,32332861:295808 -k1,14321:17414857,32332861:295809 -k1,14321:21073973,32332861:295808 -k1,14321:21985819,32332861:295808 -k1,14321:23300713,32332861:295809 -k1,14321:24011267,32332861:295711 -k1,14321:27149372,32332861:295809 -k1,14321:27976677,32332861:295808 -k1,14321:29043189,32332861:295809 -k1,14321:31298523,32332861:295808 -k1,14321:32583029,32332861:0 -) -(1,14322:6630773,33174349:25952256,513147,134348 -k1,14321:7954491,33174349:219436 -k1,14321:8921694,33174349:219437 -k1,14321:11179300,33174349:219436 -k1,14321:12590181,33174349:219436 -k1,14321:16996712,33174349:219436 -k1,14321:19147495,33174349:219437 -k1,14321:22240685,33174349:219436 -k1,14321:23451681,33174349:219436 -k1,14321:24956933,33174349:219436 -k1,14321:27639868,33174349:219437 -k1,14321:30149132,33174349:219436 -k1,14321:31027860,33174349:219436 -k1,14322:32583029,33174349:0 -) -(1,14322:6630773,34015837:25952256,459977,115847 -(1,14321:6630773,34015837:0,459977,115847 -r1,14583:9802733,34015837:3171960,575824,115847 -k1,14321:6630773,34015837:-3171960 -) -(1,14321:6630773,34015837:3171960,459977,115847 -k1,14321:6630773,34015837:3277 -h1,14321:9799456,34015837:0,411205,112570 -) -k1,14322:32583029,34015837:22606626 -g1,14322:32583029,34015837 -) -v1,14324:6630773,35190590:0,393216,0 -(1,14331:6630773,36140407:25952256,1343033,196608 -g1,14331:6630773,36140407 -g1,14331:6630773,36140407 -g1,14331:6434165,36140407 -(1,14331:6434165,36140407:0,1343033,196608 -r1,14583:32779637,36140407:26345472,1539641,196608 -k1,14331:6434165,36140407:-26345472 -) -(1,14331:6434165,36140407:26345472,1343033,196608 -[1,14331:6630773,36140407:25952256,1146425,0 -(1,14326:6630773,35398208:25952256,404226,101187 -(1,14325:6630773,35398208:0,0,0 -g1,14325:6630773,35398208 -g1,14325:6630773,35398208 -g1,14325:6303093,35398208 -(1,14325:6303093,35398208:0,0,0 -) -g1,14325:6630773,35398208 -) -k1,14326:6630773,35398208:0 -g1,14326:9159938,35398208 -g1,14326:9792230,35398208 -h1,14326:10424521,35398208:0,0,0 -k1,14326:32583029,35398208:22158508 -g1,14326:32583029,35398208 -) -(1,14330:6630773,36064386:25952256,410518,76021 -(1,14328:6630773,36064386:0,0,0 -g1,14328:6630773,36064386 -g1,14328:6630773,36064386 -g1,14328:6303093,36064386 -(1,14328:6303093,36064386:0,0,0 -) -g1,14328:6630773,36064386 -) -g1,14330:7579210,36064386 -g1,14330:8843793,36064386 -h1,14330:11689104,36064386:0,0,0 -k1,14330:32583028,36064386:20893924 -g1,14330:32583028,36064386 -) -] -) -g1,14331:32583029,36140407 -g1,14331:6630773,36140407 -g1,14331:6630773,36140407 -g1,14331:32583029,36140407 -g1,14331:32583029,36140407 -) -h1,14331:6630773,36337015:0,0,0 -v1,14335:6630773,38020345:0,393216,0 -(1,14343:6630773,39525715:25952256,1898586,196608 -g1,14343:6630773,39525715 -g1,14343:6630773,39525715 -g1,14343:6434165,39525715 -(1,14343:6434165,39525715:0,1898586,196608 -r1,14583:32779637,39525715:26345472,2095194,196608 -k1,14343:6434165,39525715:-26345472 -) -(1,14343:6434165,39525715:26345472,1898586,196608 -[1,14343:6630773,39525715:25952256,1701978,0 -(1,14337:6630773,38117338:25952256,293601,101187 -(1,14336:6630773,38117338:0,0,0 -g1,14336:6630773,38117338 -g1,14336:6630773,38117338 -g1,14336:6303093,38117338 -(1,14336:6303093,38117338:0,0,0 -) -g1,14336:6630773,38117338 -) -g1,14337:7263065,38117338 -g1,14337:8211503,38117338 -g1,14337:8843795,38117338 -g1,14337:9476087,38117338 -h1,14337:9792233,38117338:0,0,0 -k1,14337:32583029,38117338:22790796 -g1,14337:32583029,38117338 -) -(1,14338:6630773,38783516:25952256,404226,76021 -h1,14338:6630773,38783516:0,0,0 -k1,14338:6630773,38783516:0 -h1,14338:9159938,38783516:0,0,0 -k1,14338:32583030,38783516:23423092 -g1,14338:32583030,38783516 -) -(1,14342:6630773,39449694:25952256,410518,76021 -(1,14340:6630773,39449694:0,0,0 -g1,14340:6630773,39449694 -g1,14340:6630773,39449694 -g1,14340:6303093,39449694 -(1,14340:6303093,39449694:0,0,0 -) -g1,14340:6630773,39449694 -) -g1,14342:7579210,39449694 -g1,14342:8843793,39449694 -h1,14342:11689104,39449694:0,0,0 -k1,14342:32583028,39449694:20893924 -g1,14342:32583028,39449694 -) -] -) -g1,14343:32583029,39525715 -g1,14343:6630773,39525715 -g1,14343:6630773,39525715 -g1,14343:32583029,39525715 -g1,14343:32583029,39525715 -) -h1,14343:6630773,39722323:0,0,0 -(1,14347:6630773,41072387:25952256,513147,126483 -h1,14346:6630773,41072387:983040,0,0 -k1,14346:9659889,41072387:213689 -k1,14346:10405076,41072387:213690 -k1,14346:11428135,41072387:213689 -k1,14346:14096148,41072387:213690 -(1,14346:14096148,41072387:0,459977,115847 -r1,14583:18323244,41072387:4227096,575824,115847 -k1,14346:14096148,41072387:-4227096 -) -(1,14346:14096148,41072387:4227096,459977,115847 -k1,14346:14096148,41072387:3277 -h1,14346:18319967,41072387:0,411205,112570 -) -k1,14346:18536933,41072387:213689 -k1,14346:19366660,41072387:213689 -k1,14346:21014278,41072387:213690 -k1,14346:21816480,41072387:213689 -k1,14346:23102339,41072387:213690 -k1,14346:24184380,41072387:213689 -k1,14346:25502351,41072387:213689 -k1,14346:27516970,41072387:213690 -k1,14346:28922104,41072387:213689 -k1,14346:30154879,41072387:213690 -k1,14346:31923737,41072387:213689 -k1,14346:32583029,41072387:0 -) -(1,14347:6630773,41913875:25952256,505283,134348 -g1,14346:7600705,41913875 -g1,14346:9759460,41913875 -g1,14346:11352640,41913875 -(1,14346:11352640,41913875:0,452978,115847 -r1,14583:14876312,41913875:3523672,568825,115847 -k1,14346:11352640,41913875:-3523672 -) -(1,14346:11352640,41913875:3523672,452978,115847 -k1,14346:11352640,41913875:3277 -h1,14346:14873035,41913875:0,411205,112570 -) -k1,14347:32583030,41913875:17533048 -g1,14347:32583030,41913875 -) -v1,14349:6630773,43088628:0,393216,0 -(1,14356:6630773,44044737:25952256,1349325,196608 -g1,14356:6630773,44044737 -g1,14356:6630773,44044737 -g1,14356:6434165,44044737 -(1,14356:6434165,44044737:0,1349325,196608 -r1,14583:32779637,44044737:26345472,1545933,196608 -k1,14356:6434165,44044737:-26345472 -) -(1,14356:6434165,44044737:26345472,1349325,196608 -[1,14356:6630773,44044737:25952256,1152717,0 -(1,14351:6630773,43302538:25952256,410518,82312 -(1,14350:6630773,43302538:0,0,0 -g1,14350:6630773,43302538 -g1,14350:6630773,43302538 -g1,14350:6303093,43302538 -(1,14350:6303093,43302538:0,0,0 -) -g1,14350:6630773,43302538 -) -k1,14351:6630773,43302538:0 -g1,14351:10424521,43302538 -h1,14351:13585978,43302538:0,0,0 -k1,14351:32583030,43302538:18997052 -g1,14351:32583030,43302538 -) -(1,14355:6630773,43968716:25952256,404226,76021 -(1,14353:6630773,43968716:0,0,0 -g1,14353:6630773,43968716 -g1,14353:6630773,43968716 -g1,14353:6303093,43968716 -(1,14353:6303093,43968716:0,0,0 -) -g1,14353:6630773,43968716 -) -g1,14355:7579210,43968716 -g1,14355:8843793,43968716 -h1,14355:10108376,43968716:0,0,0 -k1,14355:32583028,43968716:22474652 -g1,14355:32583028,43968716 +[1,13970:3078558,4812305:0,0,0 +(1,13970:3078558,49800853:0,16384,2228224 +g1,13970:29030814,49800853 +g1,13970:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,13970:36151628,51504789:16384,1179648,0 ) -] +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 +) +] +) +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,13970:37855564,49800853:1179648,16384,0 ) -g1,14356:32583029,44044737 -g1,14356:6630773,44044737 -g1,14356:6630773,44044737 -g1,14356:32583029,44044737 -g1,14356:32583029,44044737 ) -h1,14356:6630773,44241345:0,0,0 -v1,14360:6630773,46099985:0,393216,0 -] -(1,14583:32583029,45706769:0,0,0 -g1,14583:32583029,45706769 -) -) -] -(1,14583:6630773,47279633:25952256,0,0 -h1,14583:6630773,47279633:25952256,0,0 -) -] -(1,14583:4262630,4025873:0,0,0 -[1,14583:-473656,4025873:0,0,0 -(1,14583:-473656,-710413:0,0,0 -(1,14583:-473656,-710413:0,0,0 -g1,14583:-473656,-710413 +k1,13970:3078556,49800853:-34777008 +) +] +g1,13970:6630773,4812305 +k1,13970:19540057,4812305:11713907 +g1,13970:21162728,4812305 +g1,13970:21985204,4812305 +g1,13970:24539797,4812305 +g1,13970:25949476,4812305 +g1,13970:28728857,4812305 +g1,13970:29852144,4812305 +) +) +] +[1,13970:6630773,45706769:25952256,40108032,0 +(1,13970:6630773,45706769:25952256,40108032,0 +(1,13970:6630773,45706769:0,0,0 +g1,13970:6630773,45706769 +) +[1,13970:6630773,45706769:25952256,40108032,0 +v1,13866:6630773,6254097:0,393216,0 +(1,13871:6630773,7253211:25952256,1392330,196608 +g1,13871:6630773,7253211 +g1,13871:6630773,7253211 +g1,13871:6434165,7253211 +(1,13871:6434165,7253211:0,1392330,196608 +r1,13970:32779637,7253211:26345472,1588938,196608 +k1,13871:6434165,7253211:-26345472 +) +(1,13871:6434165,7253211:26345472,1392330,196608 +[1,13871:6630773,7253211:25952256,1195722,0 +(1,13868:6630773,6488534:25952256,431045,106246 +(1,13867:6630773,6488534:0,0,0 +g1,13867:6630773,6488534 +g1,13867:6630773,6488534 +g1,13867:6303093,6488534 +(1,13867:6303093,6488534:0,0,0 +) +g1,13867:6630773,6488534 +) +g1,13868:8290543,6488534 +g1,13868:9286405,6488534 +g1,13868:12273991,6488534 +g1,13868:12937899,6488534 +g1,13868:17917208,6488534 +g1,13868:19245024,6488534 +g1,13868:20572840,6488534 +g1,13868:22232610,6488534 +g1,13868:22896518,6488534 +k1,13868:22896518,6488534:0 +h1,13868:26216057,6488534:0,0,0 +k1,13868:32583029,6488534:6366972 +g1,13868:32583029,6488534 +) +(1,13869:6630773,7173389:25952256,424439,79822 +h1,13869:6630773,7173389:0,0,0 +g1,13869:6962727,7173389 +g1,13869:7294681,7173389 +g1,13869:7626635,7173389 +g1,13869:7958589,7173389 +g1,13869:8290543,7173389 +g1,13869:8622497,7173389 +g1,13869:8954451,7173389 +g1,13869:9286405,7173389 +g1,13869:9618359,7173389 +g1,13869:9950313,7173389 +g1,13869:10282267,7173389 +g1,13869:10614221,7173389 +g1,13869:12937899,7173389 +g1,13869:13601807,7173389 +g1,13869:15593531,7173389 +g1,13869:16589393,7173389 +h1,13869:19908932,7173389:0,0,0 +k1,13869:32583029,7173389:12674097 +g1,13869:32583029,7173389 +) +] +) +g1,13871:32583029,7253211 +g1,13871:6630773,7253211 +g1,13871:6630773,7253211 +g1,13871:32583029,7253211 +g1,13871:32583029,7253211 +) +h1,13871:6630773,7449819:0,0,0 +(1,13875:6630773,8314899:25952256,513147,126483 +h1,13874:6630773,8314899:983040,0,0 +k1,13874:8806830,8314899:239468 +k1,13874:10150580,8314899:239468 +k1,13874:12594025,8314899:239469 +k1,13874:15595836,8314899:239468 +k1,13874:19762877,8314899:239468 +k1,13874:22770586,8314899:239468 +k1,13874:23696216,8314899:239468 +k1,13874:27025708,8314899:239469 +k1,13874:28212827,8314899:239468 +k1,13874:30265021,8314899:239468 +k1,13874:32583029,8314899:0 +) +(1,13875:6630773,9179979:25952256,505283,134348 +g1,13874:8062079,9179979 +g1,13874:10539995,9179979 +h1,13874:11510583,9179979:0,0,0 +g1,13874:11709812,9179979 +g1,13874:12718411,9179979 +g1,13874:14415793,9179979 +h1,13874:15611170,9179979:0,0,0 +k1,13875:32583029,9179979:16591095 +g1,13875:32583029,9179979 +) +v1,13877:6630773,9864834:0,393216,0 +(1,13921:6630773,28902827:25952256,19431209,196608 +g1,13921:6630773,28902827 +g1,13921:6630773,28902827 +g1,13921:6434165,28902827 +(1,13921:6434165,28902827:0,19431209,196608 +r1,13970:32779637,28902827:26345472,19627817,196608 +k1,13921:6434165,28902827:-26345472 +) +(1,13921:6434165,28902827:26345472,19431209,196608 +[1,13921:6630773,28902827:25952256,19234601,0 +(1,13879:6630773,10099271:25952256,431045,79822 +(1,13878:6630773,10099271:0,0,0 +g1,13878:6630773,10099271 +g1,13878:6630773,10099271 +g1,13878:6303093,10099271 +(1,13878:6303093,10099271:0,0,0 +) +g1,13878:6630773,10099271 +) +k1,13879:6630773,10099271:0 +h1,13879:10282267,10099271:0,0,0 +k1,13879:32583029,10099271:22300762 +g1,13879:32583029,10099271 +) +(1,13883:6630773,10915198:25952256,424439,79822 +(1,13881:6630773,10915198:0,0,0 +g1,13881:6630773,10915198 +g1,13881:6630773,10915198 +g1,13881:6303093,10915198 +(1,13881:6303093,10915198:0,0,0 +) +g1,13881:6630773,10915198 +) +g1,13883:7626635,10915198 +g1,13883:8954451,10915198 +h1,13883:10614221,10915198:0,0,0 +k1,13883:32583029,10915198:21968808 +g1,13883:32583029,10915198 +) +(1,13885:6630773,11731125:25952256,431045,106246 +(1,13884:6630773,11731125:0,0,0 +g1,13884:6630773,11731125 +g1,13884:6630773,11731125 +g1,13884:6303093,11731125 +(1,13884:6303093,11731125:0,0,0 +) +g1,13884:6630773,11731125 +) +k1,13885:6630773,11731125:0 +h1,13885:10946175,11731125:0,0,0 +k1,13885:32583029,11731125:21636854 +g1,13885:32583029,11731125 +) +(1,13902:6630773,12547052:25952256,398014,0 +(1,13887:6630773,12547052:0,0,0 +g1,13887:6630773,12547052 +g1,13887:6630773,12547052 +g1,13887:6303093,12547052 +(1,13887:6303093,12547052:0,0,0 +) +g1,13887:6630773,12547052 +) +h1,13902:7294681,12547052:0,0,0 +k1,13902:32583029,12547052:25288348 +g1,13902:32583029,12547052 +) +(1,13902:6630773,13231907:25952256,424439,86428 +h1,13902:6630773,13231907:0,0,0 +g1,13902:7626635,13231907 +g1,13902:10614220,13231907 +g1,13902:12273990,13231907 +g1,13902:12937898,13231907 +g1,13902:17917207,13231907 +g1,13902:19245023,13231907 +h1,13902:19908931,13231907:0,0,0 +k1,13902:32583029,13231907:12674098 +g1,13902:32583029,13231907 +) +(1,13902:6630773,13916762:25952256,398014,0 +h1,13902:6630773,13916762:0,0,0 +h1,13902:7294681,13916762:0,0,0 +k1,13902:32583029,13916762:25288348 +g1,13902:32583029,13916762 +) +(1,13902:6630773,14601617:25952256,398014,6605 +h1,13902:6630773,14601617:0,0,0 +g1,13902:7626635,14601617 +h1,13902:11278128,14601617:0,0,0 +k1,13902:32583028,14601617:21304900 +g1,13902:32583028,14601617 +) +(1,13902:6630773,15286472:25952256,424439,79822 +h1,13902:6630773,15286472:0,0,0 +g1,13902:7626635,15286472 +g1,13902:7958589,15286472 +g1,13902:8290543,15286472 +g1,13902:8622497,15286472 +g1,13902:8954451,15286472 +g1,13902:11942036,15286472 +g1,13902:13601806,15286472 +g1,13902:15593530,15286472 +g1,13902:16257438,15286472 +g1,13902:18249162,15286472 +k1,13902:18249162,15286472:0 +h1,13902:20904794,15286472:0,0,0 +k1,13902:32583029,15286472:11678235 +g1,13902:32583029,15286472 +) +(1,13902:6630773,15971327:25952256,407923,9908 +h1,13902:6630773,15971327:0,0,0 +g1,13902:7626635,15971327 +g1,13902:8622497,15971327 +g1,13902:11942036,15971327 +g1,13902:12273990,15971327 +g1,13902:15593529,15971327 +g1,13902:15925483,15971327 +g1,13902:18249161,15971327 +g1,13902:21236747,15971327 +h1,13902:22232609,15971327:0,0,0 +k1,13902:32583029,15971327:10350420 +g1,13902:32583029,15971327 +) +(1,13902:6630773,16656182:25952256,407923,9908 +h1,13902:6630773,16656182:0,0,0 +g1,13902:7626635,16656182 +g1,13902:8290543,16656182 +g1,13902:8622497,16656182 +g1,13902:11942037,16656182 +g1,13902:12273991,16656182 +g1,13902:15593531,16656182 +g1,13902:15925485,16656182 +g1,13902:16257439,16656182 +g1,13902:18249163,16656182 +g1,13902:21236749,16656182 +h1,13902:22232611,16656182:0,0,0 +k1,13902:32583029,16656182:10350418 +g1,13902:32583029,16656182 +) +(1,13902:6630773,17341037:25952256,398014,0 +h1,13902:6630773,17341037:0,0,0 +g1,13902:7626635,17341037 +k1,13902:7626635,17341037:0 +h1,13902:8622497,17341037:0,0,0 +k1,13902:32583029,17341037:23960532 +g1,13902:32583029,17341037 +) +(1,13902:6630773,18025892:25952256,431045,112852 +h1,13902:6630773,18025892:0,0,0 +g1,13902:7626635,18025892 +g1,13902:10282267,18025892 +g1,13902:12605945,18025892 +g1,13902:12937899,18025892 +g1,13902:13601807,18025892 +g1,13902:15593531,18025892 +g1,13902:17585255,18025892 +g1,13902:19245025,18025892 +g1,13902:20904795,18025892 +g1,13902:22232611,18025892 +g1,13902:23892381,18025892 +g1,13902:25220197,18025892 +g1,13902:26548013,18025892 +g1,13902:27211921,18025892 +g1,13902:27875829,18025892 +h1,13902:28207783,18025892:0,0,0 +k1,13902:32583029,18025892:4375246 +g1,13902:32583029,18025892 +) +(1,13902:6630773,18710747:25952256,398014,0 +h1,13902:6630773,18710747:0,0,0 +h1,13902:7294681,18710747:0,0,0 +k1,13902:32583029,18710747:25288348 +g1,13902:32583029,18710747 +) +(1,13902:6630773,19395602:25952256,431045,112852 +h1,13902:6630773,19395602:0,0,0 +g1,13902:7626635,19395602 +g1,13902:10614220,19395602 +g1,13902:13601805,19395602 +g1,13902:15925483,19395602 +g1,13902:17917207,19395602 +g1,13902:18913069,19395602 +g1,13902:19908931,19395602 +g1,13902:22564563,19395602 +g1,13902:23560425,19395602 +h1,13902:25884103,19395602:0,0,0 +k1,13902:32583029,19395602:6698926 +g1,13902:32583029,19395602 +) +(1,13902:6630773,20080457:25952256,398014,0 +h1,13902:6630773,20080457:0,0,0 +h1,13902:7294681,20080457:0,0,0 +k1,13902:32583029,20080457:25288348 +g1,13902:32583029,20080457 +) +(1,13902:6630773,20765312:25952256,431045,112852 +h1,13902:6630773,20765312:0,0,0 +g1,13902:7626635,20765312 +g1,13902:9950313,20765312 +g1,13902:10946175,20765312 +g1,13902:14597668,20765312 +g1,13902:15593530,20765312 +g1,13902:19908931,20765312 +h1,13902:20240885,20765312:0,0,0 +k1,13902:32583029,20765312:12342144 +g1,13902:32583029,20765312 +) +(1,13902:6630773,21450167:25952256,424439,112852 +h1,13902:6630773,21450167:0,0,0 +g1,13902:7626635,21450167 +g1,13902:10614220,21450167 +g1,13902:14597667,21450167 +g1,13902:18249160,21450167 +k1,13902:18249160,21450167:0 +h1,13902:21236746,21450167:0,0,0 +k1,13902:32583029,21450167:11346283 +g1,13902:32583029,21450167 +) +(1,13904:6630773,22266094:25952256,431045,79822 +(1,13903:6630773,22266094:0,0,0 +g1,13903:6630773,22266094 +g1,13903:6630773,22266094 +g1,13903:6303093,22266094 +(1,13903:6303093,22266094:0,0,0 +) +g1,13903:6630773,22266094 +) +k1,13904:6630773,22266094:0 +h1,13904:11610082,22266094:0,0,0 +k1,13904:32583030,22266094:20972948 +g1,13904:32583030,22266094 +) +(1,13911:6630773,23082021:25952256,424439,79822 +(1,13906:6630773,23082021:0,0,0 +g1,13906:6630773,23082021 +g1,13906:6630773,23082021 +g1,13906:6303093,23082021 +(1,13906:6303093,23082021:0,0,0 +) +g1,13906:6630773,23082021 +) +k1,13911:7608495,23082021:313814 +k1,13911:7922308,23082021:313813 +k1,13911:9231984,23082021:313814 +k1,13911:9545798,23082021:313814 +k1,13911:13179151,23082021:313814 +k1,13911:13492964,23082021:313813 +k1,13911:17126317,23082021:313814 +k1,13911:17440131,23082021:313814 +k1,13911:21073484,23082021:313814 +k1,13911:21387297,23082021:313813 +k1,13911:21701111,23082021:313814 +k1,13911:25002510,23082021:313814 +k1,13911:28967817,23082021:313814 +k1,13911:29281630,23082021:313813 +k1,13911:29595444,23082021:313814 +h1,13911:32583029,23082021:0,0,0 +k1,13911:32583029,23082021:0 +k1,13911:32583029,23082021:0 +) +(1,13911:6630773,23766876:25952256,424439,79822 +h1,13911:6630773,23766876:0,0,0 +k1,13911:7608495,23766876:313814 +k1,13911:7922308,23766876:313813 +k1,13911:9231984,23766876:313814 +k1,13911:9545798,23766876:313814 +k1,13911:13179151,23766876:313814 +k1,13911:17144457,23766876:313813 +k1,13911:17458271,23766876:313814 +k1,13911:17772085,23766876:313814 +k1,13911:21073484,23766876:313814 +k1,13911:21387297,23766876:313813 +k1,13911:25020650,23766876:313814 +k1,13911:25334464,23766876:313814 +k1,13911:25648278,23766876:313814 +k1,13911:28949676,23766876:313813 +k1,13911:29263490,23766876:313814 +k1,13911:29263490,23766876:0 +h1,13911:32583029,23766876:0,0,0 +k1,13911:32583029,23766876:0 +k1,13911:32583029,23766876:0 +) +(1,13911:6630773,24451731:25952256,424439,86428 +h1,13911:6630773,24451731:0,0,0 +g1,13911:7626635,24451731 +k1,13911:7626635,24451731:0 +h1,13911:12273990,24451731:0,0,0 +k1,13911:32583030,24451731:20309040 +g1,13911:32583030,24451731 +) +(1,13911:6630773,25136586:25952256,424439,79822 +h1,13911:6630773,25136586:0,0,0 +g1,13911:7626635,25136586 +g1,13911:8954451,25136586 +h1,13911:12605944,25136586:0,0,0 +k1,13911:32583028,25136586:19977084 +g1,13911:32583028,25136586 +) +(1,13913:6630773,25952513:25952256,431045,79822 +(1,13912:6630773,25952513:0,0,0 +g1,13912:6630773,25952513 +g1,13912:6630773,25952513 +g1,13912:6303093,25952513 +(1,13912:6303093,25952513:0,0,0 +) +g1,13912:6630773,25952513 +) +k1,13913:6630773,25952513:0 +h1,13913:10614221,25952513:0,0,0 +k1,13913:32583029,25952513:21968808 +g1,13913:32583029,25952513 +) +(1,13920:6630773,26768440:25952256,424439,79822 +(1,13915:6630773,26768440:0,0,0 +g1,13915:6630773,26768440 +g1,13915:6630773,26768440 +g1,13915:6303093,26768440 +(1,13915:6303093,26768440:0,0,0 +) +g1,13915:6630773,26768440 +) +k1,13920:7603960,26768440:309279 +k1,13920:7913238,26768440:309278 +k1,13920:9218379,26768440:309279 +k1,13920:9527658,26768440:309279 +k1,13920:12160614,26768440:309278 +k1,13920:12469893,26768440:309279 +k1,13920:15102850,26768440:309279 +k1,13920:18067759,26768440:309278 +k1,13920:21032669,26768440:309279 +k1,13920:23997579,26768440:309279 +k1,13920:26962488,26768440:309278 +k1,13920:29927398,26768440:309279 +h1,13920:32583029,26768440:0,0,0 +k1,13920:32583029,26768440:0 +k1,13920:32583029,26768440:0 +) +(1,13920:6630773,27453295:25952256,424439,79822 +h1,13920:6630773,27453295:0,0,0 +g1,13920:7626635,27453295 +g1,13920:7958589,27453295 +g1,13920:9286405,27453295 +g1,13920:12273990,27453295 +g1,13920:15261575,27453295 +g1,13920:18249160,27453295 +h1,13920:20904791,27453295:0,0,0 +k1,13920:32583029,27453295:11678238 +g1,13920:32583029,27453295 +) +(1,13920:6630773,28138150:25952256,424439,86428 +h1,13920:6630773,28138150:0,0,0 +g1,13920:7626635,28138150 +k1,13920:7626635,28138150:0 +h1,13920:12273990,28138150:0,0,0 +k1,13920:32583030,28138150:20309040 +g1,13920:32583030,28138150 +) +(1,13920:6630773,28823005:25952256,424439,79822 +h1,13920:6630773,28823005:0,0,0 +g1,13920:7626635,28823005 +g1,13920:8954451,28823005 +g1,13920:11610083,28823005 +h1,13920:13933761,28823005:0,0,0 +k1,13920:32583029,28823005:18649268 +g1,13920:32583029,28823005 +) +] +) +g1,13921:32583029,28902827 +g1,13921:6630773,28902827 +g1,13921:6630773,28902827 +g1,13921:32583029,28902827 +g1,13921:32583029,28902827 +) +h1,13921:6630773,29099435:0,0,0 +v1,13925:6630773,29964515:0,393216,0 +(1,13970:6630773,42780163:25952256,13208864,0 +g1,13970:6630773,42780163 +g1,13970:6237557,42780163 +r1,13970:6368629,42780163:131072,13208864,0 +g1,13970:6567858,42780163 +g1,13970:6764466,42780163 +[1,13970:6764466,42780163:25818563,13208864,0 +(1,13926:6764466,30272813:25818563,701514,196608 +(1,13925:6764466,30272813:0,701514,196608 +r1,13970:8010564,30272813:1246098,898122,196608 +k1,13925:6764466,30272813:-1246098 +) +(1,13925:6764466,30272813:1246098,701514,196608 +) +k1,13925:8192298,30272813:181734 +k1,13925:8519978,30272813:327680 +k1,13925:9179470,30272813:181735 +k1,13925:10229556,30272813:181734 +k1,13925:11503775,30272813:181734 +(1,13925:11503775,30272813:0,452978,115847 +r1,13970:13268888,30272813:1765113,568825,115847 +k1,13925:11503775,30272813:-1765113 +) +(1,13925:11503775,30272813:1765113,452978,115847 +k1,13925:11503775,30272813:3277 +h1,13925:13265611,30272813:0,411205,112570 +) +k1,13925:13450622,30272813:181734 +k1,13925:14315242,30272813:181735 +(1,13925:14315242,30272813:0,452978,115847 +r1,13970:16783779,30272813:2468537,568825,115847 +k1,13925:14315242,30272813:-2468537 +) +(1,13925:14315242,30272813:2468537,452978,115847 +k1,13925:14315242,30272813:3277 +h1,13925:16780502,30272813:0,411205,112570 +) +k1,13925:16965513,30272813:181734 +k1,13925:18015599,30272813:181734 +k1,13925:19301615,30272813:181734 +k1,13925:20508333,30272813:181735 +k1,13925:21974573,30272813:181734 +k1,13925:23811091,30272813:181734 +k1,13925:24984385,30272813:181734 +k1,13925:28682782,30272813:181735 +k1,13925:30258467,30272813:181734 +k1,13925:32583029,30272813:0 +) +(1,13926:6764466,31137893:25818563,513147,134348 +k1,13925:7585164,31137893:169270 +k1,13925:9567159,31137893:169269 +k1,13925:11724136,31137893:169270 +k1,13925:13084851,31137893:169270 +k1,13925:16946418,31137893:169269 +k1,13925:19103395,31137893:169270 +k1,13925:20464109,31137893:169269 +k1,13925:21830066,31137893:169270 +k1,13925:24778063,31137893:169270 +k1,13925:26906858,31137893:169269 +k1,13925:27607625,31137893:169270 +k1,13925:28436187,31137893:169270 +k1,13925:30160625,31137893:169269 +(1,13925:30160625,31137893:0,452978,115847 +r1,13970:31222314,31137893:1061689,568825,115847 +k1,13925:30160625,31137893:-1061689 +) +(1,13925:30160625,31137893:1061689,452978,115847 +k1,13925:30160625,31137893:3277 +h1,13925:31219037,31137893:0,411205,112570 +) +k1,13925:31391584,31137893:169270 +k1,13925:32583029,31137893:0 +) +(1,13926:6764466,32002973:25818563,505283,7863 +k1,13925:9644521,32002973:178006 +k1,13925:11514666,32002973:178005 +k1,13925:12975867,32002973:178006 +k1,13925:16107580,32002973:178005 +k1,13925:17477031,32002973:178006 +k1,13925:19272465,32002973:178005 +k1,13925:21656413,32002973:178006 +k1,13925:23184460,32002973:178005 +k1,13925:26316174,32002973:178006 +k1,13925:27485739,32002973:178005 +k1,13925:29885416,32002973:178006 +k1,13925:30714849,32002973:178005 +k1,13925:31911940,32002973:178006 +k1,13926:32583029,32002973:0 +) +(1,13926:6764466,32868053:25818563,505283,134348 +k1,13925:9106912,32868053:188278 +k1,13925:13984945,32868053:188277 +k1,13925:16627546,32868053:188278 +k1,13925:18502721,32868053:188278 +(1,13925:18502721,32868053:0,452978,115847 +r1,13970:20971258,32868053:2468537,568825,115847 +k1,13925:18502721,32868053:-2468537 +) +(1,13925:18502721,32868053:2468537,452978,115847 +k1,13925:18502721,32868053:3277 +h1,13925:20967981,32868053:0,411205,112570 +) +k1,13925:21159536,32868053:188278 +k1,13925:24709810,32868053:188277 +k1,13925:27015556,32868053:188278 +k1,13925:30157542,32868053:188278 +k1,13925:32583029,32868053:0 +) +(1,13926:6764466,33733133:25818563,513147,134348 +k1,13925:9702170,33733133:220581 +k1,13925:12608416,33733133:220581 +k1,13925:14020442,33733133:220581 +(1,13925:14020442,33733133:0,459977,115847 +r1,13970:16840691,33733133:2820249,575824,115847 +k1,13925:14020442,33733133:-2820249 +) +(1,13925:14020442,33733133:2820249,459977,115847 +k1,13925:14020442,33733133:3277 +h1,13925:16837414,33733133:0,411205,112570 +) +k1,13925:17061273,33733133:220582 +k1,13925:21442079,33733133:220581 +k1,13925:25676740,33733133:220581 +k1,13925:27291272,33733133:220581 +k1,13925:29629321,33733133:220581 +k1,13925:32583029,33733133:0 +) +(1,13926:6764466,34598213:25818563,513147,134348 +g1,13925:8357646,34598213 +g1,13925:12363861,34598213 +g1,13925:13372460,34598213 +g1,13925:14590774,34598213 +g1,13925:17551690,34598213 +g1,13925:18410211,34598213 +g1,13925:19628525,34598213 +g1,13925:22440019,34598213 +k1,13926:32583029,34598213:6858346 +g1,13926:32583029,34598213 +) +v1,13928:6764466,35283068:0,393216,0 +(1,13944:6764466,42583555:25818563,7693703,196608 +g1,13944:6764466,42583555 +g1,13944:6764466,42583555 +g1,13944:6567858,42583555 +(1,13944:6567858,42583555:0,7693703,196608 +r1,13970:32779637,42583555:26211779,7890311,196608 +k1,13944:6567857,42583555:-26211780 +) +(1,13944:6567858,42583555:26211779,7693703,196608 +[1,13944:6764466,42583555:25818563,7497095,0 +(1,13930:6764466,35517505:25818563,431045,86428 +(1,13929:6764466,35517505:0,0,0 +g1,13929:6764466,35517505 +g1,13929:6764466,35517505 +g1,13929:6436786,35517505 +(1,13929:6436786,35517505:0,0,0 +) +g1,13929:6764466,35517505 +) +k1,13930:6764466,35517505:0 +g1,13930:10084006,35517505 +g1,13930:13403545,35517505 +g1,13930:14067453,35517505 +h1,13930:14731361,35517505:0,0,0 +k1,13930:32583029,35517505:17851668 +g1,13930:32583029,35517505 +) +(1,13943:6764466,36333432:25818563,431045,9908 +(1,13932:6764466,36333432:0,0,0 +g1,13932:6764466,36333432 +g1,13932:6764466,36333432 +g1,13932:6436786,36333432 +(1,13932:6436786,36333432:0,0,0 +) +g1,13932:6764466,36333432 +) +g1,13943:7760328,36333432 +g1,13943:9420098,36333432 +g1,13943:10415960,36333432 +h1,13943:10747914,36333432:0,0,0 +k1,13943:32583030,36333432:21835116 +g1,13943:32583030,36333432 +) +(1,13943:6764466,37018287:25818563,431045,33029 +h1,13943:6764466,37018287:0,0,0 +g1,13943:7760328,37018287 +g1,13943:8092282,37018287 +g1,13943:8756190,37018287 +g1,13943:9420098,37018287 +g1,13943:9752052,37018287 +g1,13943:10084006,37018287 +g1,13943:10415960,37018287 +g1,13943:10747914,37018287 +g1,13943:11079868,37018287 +g1,13943:11411822,37018287 +g1,13943:11743776,37018287 +g1,13943:12075730,37018287 +g1,13943:12407684,37018287 +g1,13943:14399408,37018287 +g1,13943:15395270,37018287 +h1,13943:16059178,37018287:0,0,0 +k1,13943:32583029,37018287:16523851 +g1,13943:32583029,37018287 +) +(1,13943:6764466,37703142:25818563,424439,86428 +h1,13943:6764466,37703142:0,0,0 +g1,13943:7760328,37703142 +g1,13943:8092282,37703142 +g1,13943:8424236,37703142 +g1,13943:9752052,37703142 +g1,13943:12407684,37703142 +g1,13943:15727223,37703142 +g1,13943:17055039,37703142 +h1,13943:20374578,37703142:0,0,0 +k1,13943:32583029,37703142:12208451 +g1,13943:32583029,37703142 +) +(1,13943:6764466,38387997:25818563,431045,33029 +h1,13943:6764466,38387997:0,0,0 +g1,13943:7760328,38387997 +g1,13943:8092282,38387997 +g1,13943:8756190,38387997 +g1,13943:11743775,38387997 +g1,13943:12075729,38387997 +g1,13943:12407683,38387997 +g1,13943:14399407,38387997 +g1,13943:15395269,38387997 +h1,13943:15727223,38387997:0,0,0 +k1,13943:32583029,38387997:16855806 +g1,13943:32583029,38387997 +) +(1,13943:6764466,39072852:25818563,431045,106246 +h1,13943:6764466,39072852:0,0,0 +g1,13943:7760328,39072852 +g1,13943:8092282,39072852 +g1,13943:8756190,39072852 +g1,13943:10415960,39072852 +g1,13943:10747914,39072852 +g1,13943:11079868,39072852 +g1,13943:11411822,39072852 +g1,13943:11743776,39072852 +g1,13943:12075730,39072852 +g1,13943:12407684,39072852 +g1,13943:13071592,39072852 +g1,13943:15395270,39072852 +h1,13943:18382855,39072852:0,0,0 +k1,13943:32583029,39072852:14200174 +g1,13943:32583029,39072852 +) +(1,13943:6764466,39757707:25818563,431045,112852 +h1,13943:6764466,39757707:0,0,0 +k1,13943:7649677,39757707:221303 +k1,13943:7870980,39757707:221303 +k1,13943:8424237,39757707:221303 +k1,13943:9973356,39757707:221303 +k1,13943:10194659,39757707:221303 +k1,13943:10415962,39757707:221303 +k1,13943:10637265,39757707:221303 +k1,13943:10858568,39757707:221303 +k1,13943:11079871,39757707:221303 +k1,13943:11301174,39757707:221303 +k1,13943:11854431,39757707:221303 +k1,13943:14731365,39757707:221303 +k1,13943:18604161,39757707:221303 +k1,13943:19157418,39757707:221303 +k1,13943:20706537,39757707:221303 +k1,13943:21259794,39757707:221303 +k1,13943:26128452,39757707:221303 +k1,13943:27345617,39757707:221303 +k1,13943:28562782,39757707:221303 +k1,13943:30111901,39757707:221303 +k1,13943:30665158,39757707:221303 +k1,13943:34206000,39757707:221303 +k1,13943:36419027,39757707:221303 +k1,13943:36972284,39757707:221303 +k1,13943:38853357,39757707:221303 +k1,13943:39738568,39757707:221303 +k1,13943:39959871,39757707:221303 +k1,13943:40181174,39757707:221303 +k1,13943:40402477,39757707:221303 +k1,13943:40623780,39757707:221303 +k1,13943:40845083,39757707:221303 +k1,13943:44385925,39757707:221303 +k1,13943:47594813,39757707:221303 +k1,13943:48148070,39757707:221303 +k1,13943:50361097,39757707:221303 +k1,13943:54897801,39757707:221303 +h1,13943:55893663,39757707:0,0,0 +k1,13943:55893663,39757707:0 +k1,13943:55893663,39757707:0 +) +(1,13943:6764466,40442562:25818563,431045,33029 +h1,13943:6764466,40442562:0,0,0 +g1,13943:7760328,40442562 +g1,13943:8092282,40442562 +g1,13943:8756190,40442562 +g1,13943:13071591,40442562 +g1,13943:15063315,40442562 +g1,13943:16391131,40442562 +h1,13943:19378716,40442562:0,0,0 +k1,13943:32583029,40442562:13204313 +g1,13943:32583029,40442562 +) +(1,13943:6764466,41127417:25818563,424439,86428 +h1,13943:6764466,41127417:0,0,0 +g1,13943:7760328,41127417 +g1,13943:8092282,41127417 +g1,13943:8424236,41127417 +g1,13943:9752052,41127417 +g1,13943:12407684,41127417 +g1,13943:15727223,41127417 +g1,13943:17055039,41127417 +h1,13943:19046763,41127417:0,0,0 +k1,13943:32583029,41127417:13536266 +g1,13943:32583029,41127417 +) +(1,13943:6764466,41812272:25818563,431045,33029 +h1,13943:6764466,41812272:0,0,0 +g1,13943:7760328,41812272 +g1,13943:8092282,41812272 +g1,13943:8756190,41812272 +g1,13943:11411822,41812272 +g1,13943:11743776,41812272 +g1,13943:12075730,41812272 +g1,13943:12407684,41812272 +g1,13943:14399408,41812272 +g1,13943:15395270,41812272 +h1,13943:15727224,41812272:0,0,0 +k1,13943:32583028,41812272:16855804 +g1,13943:32583028,41812272 +) +(1,13943:6764466,42497127:25818563,424439,86428 +h1,13943:6764466,42497127:0,0,0 +g1,13943:7760328,42497127 +g1,13943:8092282,42497127 +g1,13943:8756190,42497127 +g1,13943:11411822,42497127 +g1,13943:14731361,42497127 +g1,13943:16059177,42497127 +h1,13943:17718947,42497127:0,0,0 +k1,13943:32583029,42497127:14864082 +g1,13943:32583029,42497127 +) +] +) +g1,13944:32583029,42583555 +g1,13944:6764466,42583555 +g1,13944:6764466,42583555 +g1,13944:32583029,42583555 +g1,13944:32583029,42583555 +) +h1,13944:6764466,42780163:0,0,0 +] +g1,13970:32583029,42780163 +) +] +(1,13970:32583029,45706769:0,0,0 +g1,13970:32583029,45706769 +) +) +] +(1,13970:6630773,47279633:25952256,0,0 +h1,13970:6630773,47279633:25952256,0,0 +) +] +(1,13970:4262630,4025873:0,0,0 +[1,13970:-473656,4025873:0,0,0 +(1,13970:-473656,-710413:0,0,0 +(1,13970:-473656,-710413:0,0,0 +g1,13970:-473656,-710413 +) +g1,13970:-473656,-710413 +) +] +) +] +!27018 +}225 +Input:2128:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2129:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2130:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!294 +{226 +[1,13986:4262630,47279633:28320399,43253760,0 +(1,13986:4262630,4025873:0,0,0 +[1,13986:-473656,4025873:0,0,0 +(1,13986:-473656,-710413:0,0,0 +(1,13986:-473656,-644877:0,0,0 +k1,13986:-473656,-644877:-65536 +) +(1,13986:-473656,4736287:0,0,0 +k1,13986:-473656,4736287:5209943 ) -g1,14583:-473656,-710413 +g1,13986:-473656,-710413 ) ] ) -] -!24200 -}243 -!12 -{244 -[1,14583:4262630,47279633:28320399,43253760,0 -(1,14583:4262630,4025873:0,0,0 -[1,14583:-473656,4025873:0,0,0 -(1,14583:-473656,-710413:0,0,0 -(1,14583:-473656,-644877:0,0,0 -k1,14583:-473656,-644877:-65536 +[1,13986:6630773,47279633:25952256,43253760,0 +[1,13986:6630773,4812305:25952256,786432,0 +(1,13986:6630773,4812305:25952256,505283,134348 +(1,13986:6630773,4812305:25952256,505283,134348 +g1,13986:3078558,4812305 +[1,13986:3078558,4812305:0,0,0 +(1,13986:3078558,2439708:0,1703936,0 +k1,13986:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,13986:2537886,2439708:1179648,16384,0 ) -(1,14583:-473656,4736287:0,0,0 -k1,14583:-473656,4736287:5209943 +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,13986:3078558,1915420:16384,1179648,0 ) -g1,14583:-473656,-710413 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] ) -[1,14583:6630773,47279633:25952256,43253760,0 -[1,14583:6630773,4812305:25952256,786432,0 -(1,14583:6630773,4812305:25952256,513147,126483 -(1,14583:6630773,4812305:25952256,513147,126483 -g1,14583:3078558,4812305 -[1,14583:3078558,4812305:0,0,0 -(1,14583:3078558,2439708:0,1703936,0 -k1,14583:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,14583:2537886,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,14583:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +] +[1,13986:3078558,4812305:0,0,0 +(1,13986:3078558,2439708:0,1703936,0 +g1,13986:29030814,2439708 +g1,13986:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,13986:36151628,1915420:16384,1179648,0 +) +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] ) +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,13986:37855564,2439708:1179648,16384,0 ) ) +k1,13986:3078556,2439708:-34777008 +) ] -[1,14583:3078558,4812305:0,0,0 -(1,14583:3078558,2439708:0,1703936,0 -g1,14583:29030814,2439708 -g1,14583:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,14583:36151628,1915420:16384,1179648,0 +[1,13986:3078558,4812305:0,0,0 +(1,13986:3078558,49800853:0,16384,2228224 +k1,13986:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,13986:2537886,49800853:1179648,16384,0 +) +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,13986:3078558,51504789:16384,1179648,0 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,14583:37855564,2439708:1179648,16384,0 ) ) -k1,14583:3078556,2439708:-34777008 +] +[1,13986:3078558,4812305:0,0,0 +(1,13986:3078558,49800853:0,16384,2228224 +g1,13986:29030814,49800853 +g1,13986:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,13986:36151628,51504789:16384,1179648,0 +) +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 ) ] -[1,14583:3078558,4812305:0,0,0 -(1,14583:3078558,49800853:0,16384,2228224 -k1,14583:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,14583:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,14583:3078558,51504789:16384,1179648,0 +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,13986:37855564,49800853:1179648,16384,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 +) +k1,13986:3078556,49800853:-34777008 ) ] +g1,13986:6630773,4812305 +g1,13986:6630773,4812305 +g1,13986:9008419,4812305 +g1,13986:10418098,4812305 +g1,13986:12080746,4812305 +g1,13986:15516143,4812305 +k1,13986:31387652,4812305:15871509 +) +) +] +[1,13986:6630773,45706769:25952256,40108032,0 +(1,13986:6630773,45706769:25952256,40108032,0 +(1,13986:6630773,45706769:0,0,0 +g1,13986:6630773,45706769 +) +[1,13986:6630773,45706769:25952256,40108032,0 +v1,13970:6630773,6254097:0,393216,0 +(1,13970:6630773,16517036:25952256,10656155,0 +g1,13970:6630773,16517036 +g1,13970:6237557,16517036 +r1,13986:6368629,16517036:131072,10656155,0 +g1,13970:6567858,16517036 +g1,13970:6764466,16517036 +[1,13970:6764466,16517036:25818563,10656155,0 +v1,13948:6764466,6254097:0,393216,0 +(1,13968:6764466,16320428:25818563,10459547,196608 +g1,13968:6764466,16320428 +g1,13968:6764466,16320428 +g1,13968:6567858,16320428 +(1,13968:6567858,16320428:0,10459547,196608 +r1,13986:32779637,16320428:26211779,10656155,196608 +k1,13968:6567857,16320428:-26211780 +) +(1,13968:6567858,16320428:26211779,10459547,196608 +[1,13968:6764466,16320428:25818563,10262939,0 +(1,13950:6764466,6488534:25818563,431045,33029 +(1,13949:6764466,6488534:0,0,0 +g1,13949:6764466,6488534 +g1,13949:6764466,6488534 +g1,13949:6436786,6488534 +(1,13949:6436786,6488534:0,0,0 +) +g1,13949:6764466,6488534 +) +h1,13950:11079867,6488534:0,0,0 +k1,13950:32583029,6488534:21503162 +g1,13950:32583029,6488534 +) +(1,13967:6764466,7304461:25818563,431045,33029 +(1,13952:6764466,7304461:0,0,0 +g1,13952:6764466,7304461 +g1,13952:6764466,7304461 +g1,13952:6436786,7304461 +(1,13952:6436786,7304461:0,0,0 +) +g1,13952:6764466,7304461 +) +g1,13967:7760328,7304461 +h1,13967:10084006,7304461:0,0,0 +k1,13967:32583030,7304461:22499024 +g1,13967:32583030,7304461 +) +(1,13967:6764466,7989316:25818563,424439,79822 +h1,13967:6764466,7989316:0,0,0 +g1,13967:7760328,7989316 +g1,13967:9088144,7989316 +h1,13967:10415960,7989316:0,0,0 +k1,13967:32583028,7989316:22167068 +g1,13967:32583028,7989316 +) +(1,13967:6764466,8674171:25818563,398014,0 +h1,13967:6764466,8674171:0,0,0 +h1,13967:7428374,8674171:0,0,0 +k1,13967:32583030,8674171:25154656 +g1,13967:32583030,8674171 +) +(1,13967:6764466,9359026:25818563,431045,33029 +h1,13967:6764466,9359026:0,0,0 +g1,13967:7760328,9359026 +h1,13967:10415959,9359026:0,0,0 +k1,13967:32583029,9359026:22167070 +g1,13967:32583029,9359026 +) +(1,13967:6764466,10043881:25818563,424439,79822 +h1,13967:6764466,10043881:0,0,0 +g1,13967:7760328,10043881 +g1,13967:9088144,10043881 +h1,13967:9420098,10043881:0,0,0 +k1,13967:32583030,10043881:23162932 +g1,13967:32583030,10043881 +) +(1,13967:6764466,10728736:25818563,398014,0 +h1,13967:6764466,10728736:0,0,0 +h1,13967:7428374,10728736:0,0,0 +k1,13967:32583030,10728736:25154656 +g1,13967:32583030,10728736 +) +(1,13967:6764466,11413591:25818563,431045,33029 +h1,13967:6764466,11413591:0,0,0 +g1,13967:7760328,11413591 +h1,13967:10084006,11413591:0,0,0 +k1,13967:32583030,11413591:22499024 +g1,13967:32583030,11413591 +) +(1,13967:6764466,12098446:25818563,424439,79822 +h1,13967:6764466,12098446:0,0,0 +g1,13967:7760328,12098446 +g1,13967:9088144,12098446 +k1,13967:9088144,12098446:0 +h1,13967:13071591,12098446:0,0,0 +k1,13967:32583029,12098446:19511438 +g1,13967:32583029,12098446 +) +(1,13967:6764466,12783301:25818563,398014,0 +h1,13967:6764466,12783301:0,0,0 +h1,13967:7428374,12783301:0,0,0 +k1,13967:32583030,12783301:25154656 +g1,13967:32583030,12783301 +) +(1,13967:6764466,13468156:25818563,431045,106246 +h1,13967:6764466,13468156:0,0,0 +g1,13967:7760328,13468156 +h1,13967:10747913,13468156:0,0,0 +k1,13967:32583029,13468156:21835116 +g1,13967:32583029,13468156 +) +(1,13967:6764466,14153011:25818563,424439,79822 +h1,13967:6764466,14153011:0,0,0 +g1,13967:7760328,14153011 +g1,13967:9088144,14153011 +h1,13967:9420098,14153011:0,0,0 +k1,13967:32583030,14153011:23162932 +g1,13967:32583030,14153011 +) +(1,13967:6764466,14837866:25818563,398014,0 +h1,13967:6764466,14837866:0,0,0 +h1,13967:7428374,14837866:0,0,0 +k1,13967:32583030,14837866:25154656 +g1,13967:32583030,14837866 +) +(1,13967:6764466,15522721:25818563,431045,112852 +h1,13967:6764466,15522721:0,0,0 +g1,13967:7760328,15522721 +h1,13967:11743775,15522721:0,0,0 +k1,13967:32583029,15522721:20839254 +g1,13967:32583029,15522721 +) +(1,13967:6764466,16207576:25818563,424439,112852 +h1,13967:6764466,16207576:0,0,0 +g1,13967:7760328,16207576 +g1,13967:9088144,16207576 +h1,13967:12739637,16207576:0,0,0 +k1,13967:32583029,16207576:19843392 +g1,13967:32583029,16207576 +) +] +) +g1,13968:32583029,16320428 +g1,13968:6764466,16320428 +g1,13968:6764466,16320428 +g1,13968:32583029,16320428 +g1,13968:32583029,16320428 +) +h1,13968:6764466,16517036:0,0,0 +] +g1,13970:32583029,16517036 +) +h1,13970:6630773,16517036:0,0,0 +(1,13973:6630773,17382116:25952256,513147,134348 +h1,13972:6630773,17382116:983040,0,0 +k1,13972:10232881,17382116:221106 +(1,13972:10232881,17382116:0,452978,115847 +r1,13986:13053130,17382116:2820249,568825,115847 +k1,13972:10232881,17382116:-2820249 +) +(1,13972:10232881,17382116:2820249,452978,115847 +k1,13972:10232881,17382116:3277 +h1,13972:13049853,17382116:0,411205,112570 +) +k1,13972:13447907,17382116:221107 +k1,13972:16759036,17382116:221106 +k1,13972:17927794,17382116:221107 +(1,13972:17927794,17382116:0,452978,115847 +r1,13986:19341195,17382116:1413401,568825,115847 +k1,13972:17927794,17382116:-1413401 +) +(1,13972:17927794,17382116:1413401,452978,115847 +k1,13972:17927794,17382116:3277 +h1,13972:19337918,17382116:0,411205,112570 +) +k1,13972:19562301,17382116:221106 +k1,13972:20399445,17382116:221106 +k1,13972:22899239,17382116:221107 +h1,13972:24441957,17382116:0,0,0 +k1,13972:24663063,17382116:221106 +k1,13972:25693539,17382116:221106 +k1,13972:27412799,17382116:221107 +h1,13972:28608176,17382116:0,0,0 +k1,13972:29002952,17382116:221106 +k1,13972:30328341,17382116:221107 +k1,13972:31297213,17382116:221106 +k1,13972:32583029,17382116:0 +) +(1,13973:6630773,18247196:25952256,513147,122846 +g1,13972:8343228,18247196 +g1,13972:9936408,18247196 +g1,13972:12453645,18247196 +g1,13972:14365330,18247196 +g1,13972:15958510,18247196 +(1,13972:15958510,18247196:0,452978,122846 +r1,13986:17723623,18247196:1765113,575824,122846 +k1,13972:15958510,18247196:-1765113 +) +(1,13972:15958510,18247196:1765113,452978,122846 +k1,13972:15958510,18247196:3277 +h1,13972:17720346,18247196:0,411205,112570 +) +k1,13973:32583029,18247196:14685736 +g1,13973:32583029,18247196 +) +(1,13976:6630773,21078356:25952256,32768,229376 +(1,13976:6630773,21078356:0,32768,229376 +(1,13976:6630773,21078356:5505024,32768,229376 +r1,13986:12135797,21078356:5505024,262144,229376 +) +k1,13976:6630773,21078356:-5505024 +) +(1,13976:6630773,21078356:25952256,32768,0 +r1,13986:32583029,21078356:25952256,32768,0 +) +) +(1,13976:6630773,22710208:25952256,606339,161218 +(1,13976:6630773,22710208:2464678,582746,14155 +g1,13976:6630773,22710208 +g1,13976:9095451,22710208 +) +g1,13976:12170400,22710208 +g1,13976:13880103,22710208 +g1,13976:15984595,22710208 +k1,13976:32583029,22710208:12437422 +g1,13976:32583029,22710208 +) +(1,13979:6630773,23968504:25952256,513147,126483 +k1,13978:8132148,23968504:304688 +k1,13978:10174851,23968504:304688 +k1,13978:13488297,23968504:304688 +k1,13978:16085433,23968504:304687 +k1,13978:17957742,23968504:304688 +k1,13978:19281515,23968504:304688 +k1,13978:20837285,23968504:304688 +k1,13978:22655199,23968504:304688 +k1,13978:23721415,23968504:304688 +k1,13978:27325184,23968504:304687 +k1,13978:28281300,23968504:304688 +k1,13978:30171959,23968504:304688 +k1,13978:32583029,23968504:0 +) +(1,13979:6630773,24833584:25952256,513147,134348 +k1,13978:9075178,24833584:199142 +k1,13978:12564227,24833584:199142 +k1,13978:13119229,24833584:199142 +k1,13978:15237922,24833584:199143 +k1,13978:16096356,24833584:199142 +k1,13978:17541993,24833584:199142 +k1,13978:19471941,24833584:199142 +k1,13978:20878256,24833584:199142 +k1,13978:22590624,24833584:199142 +k1,13978:23475928,24833584:199142 +k1,13978:24030930,24833584:199142 +k1,13978:26531042,24833584:199143 +k1,13978:28488515,24833584:199142 +k1,13978:29339085,24833584:199142 +k1,13978:31124198,24833584:199142 +k1,13979:32583029,24833584:0 +) +(1,13979:6630773,25698664:25952256,513147,126483 +k1,13978:8373235,25698664:191880 +k1,13978:10810378,25698664:191880 +k1,13978:12615754,25698664:191880 +k1,13978:13826719,25698664:191880 +k1,13978:15749405,25698664:191880 +k1,13978:18191136,25698664:191880 +k1,13978:19887067,25698664:191880 +k1,13978:22798037,25698664:191881 +k1,13978:23751445,25698664:191880 +k1,13978:24299185,25698664:191880 +k1,13978:25594691,25698664:191880 +k1,13978:26445863,25698664:191880 +k1,13978:28938712,25698664:191880 +k1,13978:31089463,25698664:191880 +k1,13978:32583029,25698664:0 +) +(1,13979:6630773,26563744:25952256,505283,134348 +k1,13978:7545303,26563744:228368 +k1,13978:9276411,26563744:228367 +k1,13978:12054785,26563744:228368 +k1,13978:12899190,26563744:228367 +k1,13978:15231264,26563744:228368 +k1,13978:16142517,26563744:228368 +k1,13978:18572894,26563744:228367 +k1,13978:21431877,26563744:228368 +k1,13978:22732414,26563744:228368 +k1,13978:23979866,26563744:228367 +k1,13978:26643552,26563744:228368 +k1,13978:28609934,26563744:228367 +k1,13978:31955194,26563744:228368 +k1,13978:32583029,26563744:0 +) +(1,13979:6630773,27428824:25952256,513147,126483 +g1,13978:11096396,27428824 +g1,13978:13545476,27428824 +g1,13978:14736265,27428824 +g1,13978:17961291,27428824 +g1,13978:19445026,27428824 +g1,13978:22313536,27428824 +g1,13978:24923835,27428824 +g1,13978:26314509,27428824 +g1,13978:28814707,27428824 +k1,13979:32583029,27428824:1523059 +g1,13979:32583029,27428824 +) +(1,13981:6630773,28293904:25952256,513147,134348 +h1,13980:6630773,28293904:983040,0,0 +k1,13980:9379517,28293904:220365 +k1,13980:10259174,28293904:220365 +k1,13980:11498623,28293904:220364 +k1,13980:13706695,28293904:220365 +k1,13980:14944834,28293904:220365 +k1,13980:16859960,28293904:220365 +k1,13980:18935648,28293904:220364 +k1,13980:19842175,28293904:220365 +k1,13980:23054259,28293904:220365 +k1,13980:25894753,28293904:220365 +k1,13980:29161230,28293904:220364 +k1,13980:30329246,28293904:220365 +k1,13981:32583029,28293904:0 +) +(1,13981:6630773,29158984:25952256,513147,126483 +k1,13980:8451363,29158984:250347 +k1,13980:9986217,29158984:250348 +k1,13980:11228124,29158984:250347 +k1,13980:15609206,29158984:250348 +k1,13980:16475591,29158984:250347 +k1,13980:17745024,29158984:250348 +k1,13980:19192058,29158984:250347 +k1,13980:21445842,29158984:250348 +k1,13980:24110535,29158984:250347 +k1,13980:24976921,29158984:250348 +k1,13980:26246353,29158984:250347 +k1,13980:27863782,29158984:250348 +k1,13980:28773421,29158984:250347 +k1,13980:32583029,29158984:0 +) +(1,13981:6630773,30024064:25952256,513147,134348 +k1,13980:9165453,30024064:216672 +k1,13980:10528350,30024064:216672 +k1,13980:11764107,30024064:216672 +k1,13980:14696591,30024064:216672 +k1,13980:15572555,30024064:216672 +k1,13980:18381831,30024064:216672 +k1,13980:21686560,30024064:216673 +k1,13980:22586117,30024064:216672 +k1,13980:23415551,30024064:216672 +k1,13980:25127755,30024064:216672 +k1,13980:28518991,30024064:216672 +k1,13980:31161806,30024064:216672 +k1,13980:31734338,30024064:216672 +k1,13981:32583029,30024064:0 +) +(1,13981:6630773,30889144:25952256,513147,134348 +k1,13980:10091124,30889144:264816 +k1,13980:12991143,30889144:264816 +k1,13980:14428398,30889144:264816 +k1,13980:17534854,30889144:264815 +k1,13980:18485832,30889144:264816 +k1,13980:19366686,30889144:264816 +k1,13980:20650587,30889144:264816 +k1,13980:22282484,30889144:264816 +k1,13980:23206592,30889144:264816 +k1,13980:25284134,30889144:264816 +k1,13980:29039396,30889144:264815 +k1,13980:29932047,30889144:264816 +k1,13980:31215948,30889144:264816 +k1,13980:32583029,30889144:0 +) +(1,13981:6630773,31754224:25952256,513147,134348 +k1,13980:7565972,31754224:275907 +k1,13980:11745202,31754224:275906 +k1,13980:12680401,31754224:275907 +k1,13980:15411942,31754224:275907 +k1,13980:17338045,31754224:275906 +k1,13980:19056399,31754224:275907 +k1,13980:19904435,31754224:275907 +k1,13980:23461073,31754224:275906 +k1,13980:26783093,31754224:275907 +k1,13980:27868369,31754224:275906 +k1,13980:30168683,31754224:275907 +k1,13980:32583029,31754224:0 +) +(1,13981:6630773,32619304:25952256,513147,7863 +g1,13980:9499283,32619304 +g1,13980:12304223,32619304 +g1,13980:13162744,32619304 +g1,13980:14381058,32619304 +k1,13981:32583029,32619304:16638937 +g1,13981:32583029,32619304 +) +(1,13983:6630773,33484384:25952256,513147,126483 +h1,13982:6630773,33484384:983040,0,0 +k1,13982:10049841,33484384:161273 +k1,13982:11563777,33484384:161273 +k1,13982:12928291,33484384:161273 +k1,13982:13445424,33484384:161273 +k1,13982:14961982,33484384:161273 +k1,13982:17339683,33484384:161273 +k1,13982:18692402,33484384:161274 +k1,13982:22134407,33484384:161273 +k1,13982:25341793,33484384:161273 +k1,13982:26978281,33484384:161273 +k1,13982:27948924,33484384:161273 +k1,13982:30861398,33484384:161273 +k1,13983:32583029,33484384:0 +) +(1,13983:6630773,34349464:25952256,513147,126483 +k1,13982:7708512,34349464:143196 +k1,13982:9043153,34349464:143196 +k1,13982:10205434,34349464:143196 +k1,13982:12791812,34349464:143196 +k1,13982:15200588,34349464:143196 +k1,13982:15959822,34349464:143196 +k1,13982:17122103,34349464:143196 +k1,13982:19418813,34349464:143197 +k1,13982:21431096,34349464:143196 +k1,13982:22765737,34349464:143196 +k1,13982:25523164,34349464:143196 +k1,13982:26325652,34349464:143196 +k1,13982:27487933,34349464:143196 +k1,13982:30668067,34349464:143196 +k1,13982:32583029,34349464:0 +) +(1,13983:6630773,35214544:25952256,513147,134348 +k1,13982:9121032,35214544:215504 +k1,13982:11598183,35214544:215504 +k1,13982:12429725,35214544:215504 +k1,13982:14434362,35214544:215504 +k1,13982:15539845,35214544:215504 +k1,13982:19261526,35214544:215505 +k1,13982:21702633,35214544:215504 +k1,13982:23923539,35214544:215504 +k1,13982:24900571,35214544:215504 +k1,13982:27594647,35214544:215504 +k1,13982:28493036,35214544:215504 +k1,13982:30870573,35214544:215504 +k1,13982:32583029,35214544:0 +) +(1,13983:6630773,36079624:25952256,513147,126483 +k1,13982:8457043,36079624:153791 +k1,13982:9680382,36079624:153791 +k1,13982:11214361,36079624:153791 +k1,13982:12359712,36079624:153791 +k1,13982:15539300,36079624:153791 +k1,13982:16977597,36079624:153791 +k1,13982:18122948,36079624:153791 +k1,13982:21381179,36079624:153791 +k1,13982:22731657,36079624:153791 +k1,13982:25597328,36079624:153791 +k1,13982:28174640,36079624:153791 +k1,13982:29319991,36079624:153791 +k1,13982:32583029,36079624:0 +) +(1,13983:6630773,36944704:25952256,505283,134348 +k1,13982:8793520,36944704:176351 +k1,13982:10664633,36944704:176352 +k1,13982:11602512,36944704:176351 +k1,13982:14267265,36944704:176351 +k1,13982:16922188,36944704:176351 +k1,13982:18267047,36944704:176352 +k1,13982:21464608,36944704:176351 +k1,13982:25126819,36944704:176351 +k1,13982:27265973,36944704:176351 +k1,13982:28070160,36944704:176352 +k1,13982:29896708,36944704:176351 +k1,13982:32583029,36944704:0 +) +(1,13983:6630773,37809784:25952256,513147,134348 +k1,13982:9034699,37809784:154075 +k1,13982:10207859,37809784:154075 +k1,13982:13383143,37809784:154074 +k1,13982:14528778,37809784:154075 +k1,13982:18759848,37809784:154075 +k1,13982:22218904,37809784:154075 +k1,13982:24056599,37809784:154075 +k1,13982:28287668,37809784:154074 +k1,13982:29726249,37809784:154075 +k1,13982:31400759,37809784:154075 +k1,13983:32583029,37809784:0 +) +(1,13983:6630773,38674864:25952256,513147,126483 +k1,13982:8073829,38674864:214256 +k1,13982:11865695,38674864:214256 +k1,13982:12692713,38674864:214256 +k1,13982:13926053,38674864:214255 +k1,13982:16103112,38674864:214256 +k1,13982:17359390,38674864:214256 +k1,13982:20408733,38674864:214256 +k1,13982:21907495,38674864:214256 +k1,13982:23140836,38674864:214256 +k1,13982:25053130,38674864:214256 +k1,13982:25950270,38674864:214255 +k1,13982:27470659,38674864:214256 +k1,13982:30818191,38674864:214256 +k1,13982:31563944,38674864:214256 +k1,13982:32583029,38674864:0 +) +(1,13983:6630773,39539944:25952256,513147,126483 +k1,13982:8496179,39539944:211933 +k1,13982:9655763,39539944:211933 +k1,13982:10886782,39539944:211934 +k1,13982:12271154,39539944:211933 +k1,13982:15746780,39539944:211933 +k1,13982:17700005,39539944:211933 +k1,13982:20492747,39539944:211934 +k1,13982:21317442,39539944:211933 +k1,13982:22548460,39539944:211933 +k1,13982:24219224,39539944:211933 +k1,13982:26350052,39539944:211934 +k1,13982:27942173,39539944:211933 +k1,13982:29145666,39539944:211933 +k1,13982:32583029,39539944:0 +) +(1,13983:6630773,40405024:25952256,505283,7863 +k1,13982:8169340,40405024:157723 +k1,13982:11574372,40405024:157723 +k1,13982:14205424,40405024:157723 +k1,13982:15647653,40405024:157723 +k1,13982:16824461,40405024:157723 +k1,13982:18723476,40405024:157723 +k1,13982:19412697,40405024:157724 +k1,13982:22155160,40405024:157723 +k1,13982:22940718,40405024:157723 +k1,13982:24790581,40405024:157723 +k1,13982:26645686,40405024:157723 +k1,13982:29005419,40405024:157723 +k1,13982:32583029,40405024:0 +) +(1,13983:6630773,41270104:25952256,513147,134348 +k1,13982:7846794,41270104:224461 +k1,13982:10806071,41270104:224460 +k1,13982:11839902,41270104:224461 +k1,13982:14105154,41270104:224461 +k1,13982:16068940,41270104:224460 +k1,13982:19930649,41270104:224461 +k1,13982:21102761,41270104:224461 +k1,13982:23988638,41270104:224460 +k1,13982:24864527,41270104:224461 +k1,13982:26108073,41270104:224461 +k1,13982:28573864,41270104:224460 +k1,13982:31931601,41270104:224461 +k1,13982:32583029,41270104:0 +) +(1,13983:6630773,42135184:25952256,513147,7863 +g1,13982:8973029,42135184 +g1,13982:10456764,42135184 +g1,13982:11675078,42135184 +g1,13982:13615599,42135184 +g1,13982:14474120,42135184 +g1,13982:15692434,42135184 +g1,13982:17197796,42135184 +g1,13982:20530301,42135184 +g1,13982:21261027,42135184 +g1,13982:22746072,42135184 +g1,13982:25356371,42135184 +g1,13982:26168362,42135184 +g1,13982:27386676,42135184 +k1,13983:32583029,42135184:3233550 +g1,13983:32583029,42135184 +) +(1,13985:6630773,43000264:25952256,513147,134348 +h1,13984:6630773,43000264:983040,0,0 +k1,13984:10041743,43000264:153175 +k1,13984:11186479,43000264:153176 +k1,13984:12852880,43000264:153175 +k1,13984:13622094,43000264:153176 +k1,13984:16842354,43000264:153175 +k1,13984:19571750,43000264:153176 +k1,13984:21118876,43000264:153175 +k1,13984:24678613,43000264:153176 +k1,13984:25483216,43000264:153175 +k1,13984:27222363,43000264:153176 +k1,13984:30171959,43000264:153175 +k1,13984:32583029,43000264:0 +) +(1,13985:6630773,43865344:25952256,513147,126483 +k1,13984:9153035,43865344:276999 +k1,13984:10987825,43865344:276999 +k1,13984:12256383,43865344:276998 +k1,13984:13819198,43865344:276999 +k1,13984:14843963,43865344:276999 +k1,13984:16634188,43865344:276999 +k1,13984:17858837,43865344:276998 +k1,13984:22461868,43865344:276999 +k1,13984:23354905,43865344:276999 +k1,13984:25517375,43865344:276999 +k1,13984:27161454,43865344:276998 +k1,13984:31683875,43865344:276999 +k1,13985:32583029,43865344:0 +) +(1,13985:6630773,44730424:25952256,513147,126483 +k1,13984:9000857,44730424:236887 +k1,13984:9889173,44730424:236888 +k1,13984:10873826,44730424:236887 +k1,13984:14352124,44730424:236887 +k1,13984:17032194,44730424:236888 +k1,13984:18288166,44730424:236887 +k1,13984:20314186,44730424:236887 +k1,13984:21210365,44730424:236887 +k1,13984:21803113,44730424:236888 +k1,13984:23959550,44730424:236887 +k1,13984:25709663,44730424:236887 +k1,13984:26597979,44730424:236888 +k1,13984:30861398,44730424:236887 +k1,13985:32583029,44730424:0 +) +(1,13985:6630773,45595504:25952256,513147,126483 +k1,13984:9450384,45595504:270260 +k1,13984:11904959,45595504:270260 +k1,13984:14451285,45595504:270261 +k1,13984:16971396,45595504:270260 +k1,13984:18345938,45595504:270260 +k1,13984:19363964,45595504:270260 +k1,13984:21147451,45595504:270261 +k1,13984:22103873,45595504:270260 +k1,13984:24692141,45595504:270260 +k1,13984:25613829,45595504:270260 +k1,13984:26631856,45595504:270261 +k1,13984:27589589,45595504:270260 +k1,13984:28511277,45595504:270260 +k1,13984:32583029,45595504:0 +) +] +(1,13986:32583029,45706769:0,0,0 +g1,13986:32583029,45706769 +) +) +] +(1,13986:6630773,47279633:25952256,0,0 +h1,13986:6630773,47279633:25952256,0,0 +) +] +(1,13986:4262630,4025873:0,0,0 +[1,13986:-473656,4025873:0,0,0 +(1,13986:-473656,-710413:0,0,0 +(1,13986:-473656,-710413:0,0,0 +g1,13986:-473656,-710413 +) +g1,13986:-473656,-710413 +) +] +) +] +!22759 +}226 +Input:2131:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2132:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2133:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2134:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2135:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2136:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2137:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2138:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2139:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2140:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2141:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2142:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2143:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2144:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2145:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2146:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2147:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2148:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2149:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2150:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1892 +{227 +[1,14037:4262630,47279633:28320399,43253760,0 +(1,14037:4262630,4025873:0,0,0 +[1,14037:-473656,4025873:0,0,0 +(1,14037:-473656,-710413:0,0,0 +(1,14037:-473656,-644877:0,0,0 +k1,14037:-473656,-644877:-65536 ) +(1,14037:-473656,4736287:0,0,0 +k1,14037:-473656,4736287:5209943 ) -) -] -[1,14583:3078558,4812305:0,0,0 -(1,14583:3078558,49800853:0,16384,2228224 -g1,14583:29030814,49800853 -g1,14583:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,14583:36151628,51504789:16384,1179648,0 -) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 -) -] -) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,14583:37855564,49800853:1179648,16384,0 -) -) -k1,14583:3078556,49800853:-34777008 -) -] -g1,14583:6630773,4812305 -g1,14583:6630773,4812305 -g1,14583:8691224,4812305 -g1,14583:11722264,4812305 -k1,14583:31387652,4812305:19665388 -) -) -] -[1,14583:6630773,45706769:25952256,40108032,0 -(1,14583:6630773,45706769:25952256,40108032,0 -(1,14583:6630773,45706769:0,0,0 -g1,14583:6630773,45706769 -) -[1,14583:6630773,45706769:25952256,40108032,0 -v1,14583:6630773,6254097:0,393216,0 -(1,14583:6630773,45706769:25952256,39845888,0 -g1,14583:6630773,45706769 -g1,14583:6303093,45706769 -r1,14583:6401397,45706769:98304,39845888,0 -g1,14583:6600626,45706769 -g1,14583:6797234,45706769 -[1,14583:6797234,45706769:25785795,39845888,0 -(1,14361:6797234,6616170:25785795,755289,196608 -(1,14360:6797234,6616170:0,755289,196608 -r1,14583:8134168,6616170:1336934,951897,196608 -k1,14360:6797234,6616170:-1336934 -) -(1,14360:6797234,6616170:1336934,755289,196608 -) -k1,14360:8385113,6616170:250945 -k1,14360:8712793,6616170:327680 -k1,14360:8712793,6616170:0 -k1,14360:13302927,6616170:257549 -k1,14360:14237463,6616170:257549 -k1,14360:16541701,6616170:257549 -k1,14360:19929199,6616170:250945 -k1,14360:22708523,6616170:250945 -k1,14360:24162709,6616170:250945 -k1,14360:24945151,6616170:250945 -k1,14360:25551956,6616170:250945 -k1,14360:27384939,6616170:250944 -k1,14360:29458440,6616170:250945 -k1,14360:30728470,6616170:250945 -k1,14360:31394206,6616170:250893 -k1,14361:32583029,6616170:0 -) -(1,14361:6797234,7457658:25785795,513147,134348 -k1,14360:9038675,7457658:201305 -k1,14360:9698076,7457658:201304 -k1,14360:10430878,7457658:201305 -k1,14360:13580647,7457658:201304 -k1,14360:14433380,7457658:201305 -k1,14360:17303966,7457658:201305 -k1,14360:18835651,7457658:201304 -k1,14360:21910710,7457658:201305 -k1,14360:23216296,7457658:201304 -k1,14360:24165367,7457658:201305 -k1,14360:28553766,7457658:201304 -k1,14360:31896867,7457658:201305 -k1,14360:32583029,7457658:0 -) -(1,14361:6797234,8299146:25785795,513147,134348 -k1,14360:8147137,8299146:218096 -k1,14360:10067203,8299146:218096 -k1,14360:10700122,8299146:218076 -k1,14360:13381716,8299146:218096 -k1,14360:14704094,8299146:218096 -k1,14360:15669956,8299146:218096 -k1,14360:17699467,8299146:218096 -k1,14360:18533600,8299146:218095 -k1,14360:21593337,8299146:218096 -k1,14360:24792010,8299146:218096 -k1,14360:26507604,8299146:218096 -k1,14360:28107853,8299146:218095 -k1,14360:28857446,8299146:218096 -k1,14360:30278783,8299146:218096 -k1,14360:32583029,8299146:0 -) -(1,14361:6797234,9140634:25785795,513147,126483 -k1,14360:8073613,9140634:234357 -k1,14360:11143056,9140634:234356 -k1,14360:11843374,9140634:234357 -k1,14360:12946083,9140634:234357 -k1,14360:14729055,9140634:234356 -k1,14360:15614840,9140634:234357 -k1,14360:16536670,9140634:234357 -k1,14360:19002527,9140634:234356 -k1,14360:21999227,9140634:234357 -k1,14360:24551592,9140634:234357 -k1,14360:25437376,9140634:234356 -k1,14360:26690818,9140634:234357 -k1,14360:28578648,9140634:234357 -k1,14360:30376038,9140634:234356 -k1,14360:31478747,9140634:234357 -k1,14360:32583029,9140634:0 -) -(1,14361:6797234,9982122:25785795,513147,134348 -k1,14360:8656162,9982122:244121 -k1,14360:9256144,9982122:244122 -(1,14360:9256144,9982122:0,459977,115847 -r1,14583:10317833,9982122:1061689,575824,115847 -k1,14360:9256144,9982122:-1061689 -) -(1,14360:9256144,9982122:1061689,459977,115847 -k1,14360:9256144,9982122:3277 -h1,14360:10314556,9982122:0,411205,112570 -) -k1,14360:10561954,9982122:244121 -k1,14360:12220997,9982122:244121 -k1,14360:13749624,9982122:244121 -k1,14360:15798608,9982122:244122 -k1,14360:18601255,9982122:244121 -k1,14360:19201236,9982122:244121 -k1,14360:20438883,9982122:244121 -k1,14360:21342297,9982122:244122 -k1,14360:23574125,9982122:244121 -k1,14360:26865670,9982122:244121 -k1,14360:27907364,9982122:244121 -k1,14360:29019838,9982122:244122 -k1,14360:30368241,9982122:244121 -k1,14360:32227169,9982122:244121 -k1,14360:32583029,9982122:0 -) -(1,14361:6797234,10823610:25785795,513147,134348 -g1,14360:9691959,10823610 -g1,14360:11175694,10823610 -g1,14360:13753225,10823610 -g1,14360:15109164,10823610 -g1,14360:15991278,10823610 -g1,14360:17840704,10823610 -g1,14360:20913687,10823610 -g1,14360:21799078,10823610 -k1,14361:32583029,10823610:7207651 -g1,14361:32583029,10823610 -) -(1,14363:6797234,11693367:25785795,513147,126483 -h1,14362:6797234,11693367:983040,0,0 -k1,14362:9176408,11693367:199447 -k1,14362:10468341,11693367:199448 -k1,14362:11334944,11693367:199447 -(1,14362:11334944,11693367:0,459977,115847 -r1,14583:12396633,11693367:1061689,575824,115847 -k1,14362:11334944,11693367:-1061689 -) -(1,14362:11334944,11693367:1061689,459977,115847 -k1,14362:11334944,11693367:3277 -h1,14362:12393356,11693367:0,411205,112570 -) -k1,14362:12596081,11693367:199448 -k1,14362:14428686,11693367:199447 -k1,14362:15575785,11693367:199448 -k1,14362:18492355,11693367:199447 -k1,14362:20079200,11693367:199448 -k1,14362:20634507,11693367:199447 -k1,14362:21827481,11693367:199448 -k1,14362:22686220,11693367:199447 -k1,14362:24873375,11693367:199448 -k1,14362:27946576,11693367:199447 -k1,14362:28677521,11693367:199448 -k1,14362:31966991,11693367:199447 -k1,14362:32583029,11693367:0 -) -(1,14363:6797234,12534855:25785795,485622,134348 -g1,14362:9275150,12534855 -h1,14362:10644197,12534855:0,0,0 -g1,14362:10843426,12534855 -g1,14362:11852025,12534855 -g1,14362:13549407,12534855 -h1,14362:14744784,12534855:0,0,0 -k1,14363:32583030,12534855:17664576 -g1,14363:32583030,12534855 -) -v1,14365:6797234,13781860:0,393216,0 -(1,14384:6797234,22738396:25785795,9349752,196608 -g1,14384:6797234,22738396 -g1,14384:6797234,22738396 -g1,14384:6600626,22738396 -(1,14384:6600626,22738396:0,9349752,196608 -r1,14583:32779637,22738396:26179011,9546360,196608 -k1,14384:6600625,22738396:-26179012 -) -(1,14384:6600626,22738396:26179011,9349752,196608 -[1,14384:6797234,22738396:25785795,9153144,0 -(1,14367:6797234,13995770:25785795,410518,101187 -(1,14366:6797234,13995770:0,0,0 -g1,14366:6797234,13995770 -g1,14366:6797234,13995770 -g1,14366:6469554,13995770 -(1,14366:6469554,13995770:0,0,0 -) -g1,14366:6797234,13995770 -) -g1,14367:9326400,13995770 -g1,14367:10274838,13995770 -g1,14367:14384733,13995770 -g1,14367:15017025,13995770 -g1,14367:16913900,13995770 -g1,14367:17546192,13995770 -g1,14367:18178484,13995770 -g1,14367:20391505,13995770 -g1,14367:21023797,13995770 -g1,14367:21656089,13995770 -g1,14367:22288381,13995770 -k1,14367:22288381,13995770:0 -h1,14367:25449837,13995770:0,0,0 -k1,14367:32583029,13995770:7133192 -g1,14367:32583029,13995770 -) -(1,14368:6797234,14661948:25785795,404226,76021 -h1,14368:6797234,14661948:0,0,0 -g1,14368:9010254,14661948 -g1,14368:9958692,14661948 -k1,14368:9958692,14661948:0 -h1,14368:11855566,14661948:0,0,0 -k1,14368:32583030,14661948:20727464 -g1,14368:32583030,14661948 -) -(1,14369:6797234,15328126:25785795,410518,101187 -h1,14369:6797234,15328126:0,0,0 -g1,14369:9642545,15328126 -g1,14369:10590983,15328126 -g1,14369:12804004,15328126 -g1,14369:13436296,15328126 -g1,14369:14068588,15328126 -g1,14369:14700880,15328126 -g1,14369:15333172,15328126 -g1,14369:15965464,15328126 -g1,14369:16913902,15328126 -g1,14369:17546194,15328126 -g1,14369:18178486,15328126 -g1,14369:18810778,15328126 -g1,14369:19443070,15328126 -g1,14369:20391508,15328126 -g1,14369:21023800,15328126 -g1,14369:21656092,15328126 -g1,14369:22288384,15328126 -g1,14369:22920676,15328126 -g1,14369:23552968,15328126 -g1,14369:24185260,15328126 -h1,14369:25449844,15328126:0,0,0 -k1,14369:32583029,15328126:7133185 -g1,14369:32583029,15328126 -) -(1,14370:6797234,15994304:25785795,410518,76021 -h1,14370:6797234,15994304:0,0,0 -g1,14370:8061817,15994304 -g1,14370:10907128,15994304 -g1,14370:11855565,15994304 -g1,14370:15017022,15994304 -h1,14370:15333168,15994304:0,0,0 -k1,14370:32583028,15994304:17249860 -g1,14370:32583028,15994304 -) -(1,14371:6797234,16660482:25785795,410518,101187 -h1,14371:6797234,16660482:0,0,0 -g1,14371:7113380,16660482 -g1,14371:9326400,16660482 -g1,14371:10274838,16660482 -g1,14371:13436296,16660482 -g1,14371:18810773,16660482 -g1,14371:20391502,16660482 -g1,14371:21023794,16660482 -h1,14371:24185251,16660482:0,0,0 -k1,14371:32583029,16660482:8397778 -g1,14371:32583029,16660482 -) -(1,14372:6797234,17326660:25785795,404226,76021 -h1,14372:6797234,17326660:0,0,0 -g1,14372:7113380,17326660 -h1,14372:7429526,17326660:0,0,0 -k1,14372:32583030,17326660:25153504 -g1,14372:32583030,17326660 -) -(1,14373:6797234,17992838:25785795,404226,82312 -h1,14373:6797234,17992838:0,0,0 -g1,14373:10590983,17992838 -g1,14373:13752440,17992838 -g1,14373:14384732,17992838 -h1,14373:15017024,17992838:0,0,0 -k1,14373:32583028,17992838:17566004 -g1,14373:32583028,17992838 -) -(1,14383:6797234,18659016:25785795,410518,9436 -(1,14375:6797234,18659016:0,0,0 -g1,14375:6797234,18659016 -g1,14375:6797234,18659016 -g1,14375:6469554,18659016 -(1,14375:6469554,18659016:0,0,0 -) -g1,14375:6797234,18659016 -) -g1,14383:7745671,18659016 -g1,14383:9326400,18659016 -g1,14383:10274837,18659016 -h1,14383:10590983,18659016:0,0,0 -k1,14383:32583029,18659016:21992046 -g1,14383:32583029,18659016 -) -(1,14383:6797234,19325194:25785795,410518,31456 -h1,14383:6797234,19325194:0,0,0 -g1,14383:7745671,19325194 -g1,14383:8061817,19325194 -g1,14383:8694109,19325194 -g1,14383:10590983,19325194 -g1,14383:11539420,19325194 -h1,14383:12171711,19325194:0,0,0 -k1,14383:32583029,19325194:20411318 -g1,14383:32583029,19325194 -) -(1,14383:6797234,19991372:25785795,404226,82312 -h1,14383:6797234,19991372:0,0,0 -g1,14383:7745671,19991372 -g1,14383:8061817,19991372 -g1,14383:8377963,19991372 -g1,14383:9642546,19991372 -g1,14383:12171712,19991372 -g1,14383:15333169,19991372 -g1,14383:16597752,19991372 -h1,14383:17862335,19991372:0,0,0 -k1,14383:32583029,19991372:14720694 -g1,14383:32583029,19991372 -) -(1,14383:6797234,20657550:25785795,410518,31456 -h1,14383:6797234,20657550:0,0,0 -g1,14383:7745671,20657550 -g1,14383:8061817,20657550 -g1,14383:8694109,20657550 -g1,14383:10590983,20657550 -g1,14383:11539420,20657550 -h1,14383:12171711,20657550:0,0,0 -k1,14383:32583029,20657550:20411318 -g1,14383:32583029,20657550 -) -(1,14383:6797234,21323728:25785795,404226,82312 -h1,14383:6797234,21323728:0,0,0 -g1,14383:7745671,21323728 -g1,14383:8061817,21323728 -g1,14383:8377963,21323728 -g1,14383:9642546,21323728 -g1,14383:12171712,21323728 -g1,14383:15333169,21323728 -g1,14383:16597752,21323728 -h1,14383:17862335,21323728:0,0,0 -k1,14383:32583029,21323728:14720694 -g1,14383:32583029,21323728 -) -(1,14383:6797234,21989906:25785795,410518,31456 -h1,14383:6797234,21989906:0,0,0 -g1,14383:7745671,21989906 -g1,14383:8061817,21989906 -g1,14383:8694109,21989906 -g1,14383:10590983,21989906 -g1,14383:11539420,21989906 -h1,14383:12171711,21989906:0,0,0 -k1,14383:32583029,21989906:20411318 -g1,14383:32583029,21989906 -) -(1,14383:6797234,22656084:25785795,404226,82312 -h1,14383:6797234,22656084:0,0,0 -g1,14383:7745671,22656084 -g1,14383:8061817,22656084 -g1,14383:8377963,22656084 -g1,14383:9642546,22656084 -g1,14383:12171712,22656084 -g1,14383:15333169,22656084 -g1,14383:16597752,22656084 -h1,14383:17862335,22656084:0,0,0 -k1,14383:32583029,22656084:14720694 -g1,14383:32583029,22656084 -) -] -) -g1,14384:32583029,22738396 -g1,14384:6797234,22738396 -g1,14384:6797234,22738396 -g1,14384:32583029,22738396 -g1,14384:32583029,22738396 -) -h1,14384:6797234,22935004:0,0,0 -(1,14388:6797234,24385588:25785795,505283,126483 -h1,14387:6797234,24385588:983040,0,0 -k1,14387:9045053,24385588:446890 -k1,14387:11260760,24385588:446890 -k1,14387:12455416,24385588:446890 -k1,14387:15914996,24385588:446890 -k1,14387:16717746,24385588:446890 -k1,14387:20641321,24385588:446890 -k1,14387:24794927,24385588:446890 -k1,14387:25773314,24385588:446890 -k1,14387:29004173,24385588:446890 -k1,14387:30845014,24385588:446890 -k1,14388:32583029,24385588:0 -) -(1,14388:6797234,25227076:25785795,513147,126483 -(1,14387:6797234,25227076:0,459977,115847 -r1,14583:11024330,25227076:4227096,575824,115847 -k1,14387:6797234,25227076:-4227096 -) -(1,14387:6797234,25227076:4227096,459977,115847 -k1,14387:6797234,25227076:3277 -h1,14387:11021053,25227076:0,411205,112570 -) -k1,14387:11478274,25227076:280274 -k1,14387:12228440,25227076:280273 -k1,14387:13040211,25227076:280274 -k1,14387:15297705,25227076:280273 -k1,14387:17276017,25227076:280274 -k1,14387:20430045,25227076:280274 -k1,14387:21701878,25227076:280273 -k1,14387:23690676,25227076:280274 -k1,14387:27897866,25227076:280273 -k1,14387:28939668,25227076:280274 -k1,14387:30239026,25227076:280273 -k1,14387:31900144,25227076:280274 -k1,14387:32583029,25227076:0 -) -(1,14388:6797234,26068564:25785795,513147,134348 -k1,14387:8455797,26068564:246262 -k1,14387:10269681,26068564:246263 -k1,14387:11742122,26068564:246262 -k1,14387:13475396,26068564:246262 -k1,14387:15200807,26068564:246263 -(1,14387:15200807,26068564:0,459977,115847 -r1,14583:19427903,26068564:4227096,575824,115847 -k1,14387:15200807,26068564:-4227096 -) -(1,14387:15200807,26068564:4227096,459977,115847 -k1,14387:15200807,26068564:3277 -h1,14387:19424626,26068564:0,411205,112570 -) -k1,14387:19674165,26068564:246262 -k1,14387:20788779,26068564:246262 -k1,14387:22139323,26068564:246262 -k1,14387:24778305,26068564:246263 -k1,14387:25380427,26068564:246262 -k1,14387:28601368,26068564:246262 -k1,14387:30713441,26068564:246263 -k1,14387:32227169,26068564:246262 -k1,14387:32583029,26068564:0 -) -(1,14388:6797234,26910052:25785795,513147,7863 -k1,14388:32583029,26910052:23068672 -g1,14388:32583029,26910052 -) -v1,14390:6797234,28157056:0,393216,0 -(1,14404:6797234,33703534:25785795,5939694,196608 -g1,14404:6797234,33703534 -g1,14404:6797234,33703534 -g1,14404:6600626,33703534 -(1,14404:6600626,33703534:0,5939694,196608 -r1,14583:32779637,33703534:26179011,6136302,196608 -k1,14404:6600625,33703534:-26179012 -) -(1,14404:6600626,33703534:26179011,5939694,196608 -[1,14404:6797234,33703534:25785795,5743086,0 -(1,14392:6797234,28364674:25785795,404226,107478 -(1,14391:6797234,28364674:0,0,0 -g1,14391:6797234,28364674 -g1,14391:6797234,28364674 -g1,14391:6469554,28364674 -(1,14391:6469554,28364674:0,0,0 -) -g1,14391:6797234,28364674 -) -g1,14392:9958691,28364674 -g1,14392:10907129,28364674 -g1,14392:11855566,28364674 -g1,14392:12487858,28364674 -h1,14392:13120149,28364674:0,0,0 -k1,14392:32583029,28364674:19462880 -g1,14392:32583029,28364674 -) -(1,14393:6797234,29030852:25785795,410518,107478 -h1,14393:6797234,29030852:0,0,0 -g1,14393:15017022,29030852 -g1,14393:16597751,29030852 -g1,14393:17230043,29030852 -h1,14393:19759208,29030852:0,0,0 -k1,14393:32583029,29030852:12823821 -g1,14393:32583029,29030852 -) -(1,14403:6797234,29697030:25785795,379060,0 -(1,14395:6797234,29697030:0,0,0 -g1,14395:6797234,29697030 -g1,14395:6797234,29697030 -g1,14395:6469554,29697030 -(1,14395:6469554,29697030:0,0,0 -) -g1,14395:6797234,29697030 -) -h1,14403:7429525,29697030:0,0,0 -k1,14403:32583029,29697030:25153504 -g1,14403:32583029,29697030 -) -(1,14403:6797234,30363208:25785795,404226,7863 -h1,14403:6797234,30363208:0,0,0 -g1,14403:7745671,30363208 -h1,14403:9326399,30363208:0,0,0 -k1,14403:32583029,30363208:23256630 -g1,14403:32583029,30363208 -) -(1,14403:6797234,31029386:25785795,410518,107478 -h1,14403:6797234,31029386:0,0,0 -g1,14403:7745671,31029386 -g1,14403:11223274,31029386 -g1,14403:11855566,31029386 -g1,14403:19126917,31029386 -g1,14403:20707646,31029386 -g1,14403:21339938,31029386 -h1,14403:23869103,31029386:0,0,0 -k1,14403:32583029,31029386:8713926 -g1,14403:32583029,31029386 -) -(1,14403:6797234,31695564:25785795,379060,0 -h1,14403:6797234,31695564:0,0,0 -h1,14403:7429525,31695564:0,0,0 -k1,14403:32583029,31695564:25153504 -g1,14403:32583029,31695564 -) -(1,14403:6797234,32361742:25785795,410518,7863 -h1,14403:6797234,32361742:0,0,0 -g1,14403:7745671,32361742 -h1,14403:11855565,32361742:0,0,0 -k1,14403:32583029,32361742:20727464 -g1,14403:32583029,32361742 -) -(1,14403:6797234,33027920:25785795,404226,101187 -h1,14403:6797234,33027920:0,0,0 -g1,14403:7745671,33027920 -g1,14403:11539419,33027920 -g1,14403:11855565,33027920 -g1,14403:12171711,33027920 -g1,14403:12487857,33027920 -g1,14403:12804003,33027920 -g1,14403:13120149,33027920 -g1,14403:13436295,33027920 -g1,14403:13752441,33027920 -g1,14403:14068587,33027920 -g1,14403:14384733,33027920 -g1,14403:14700879,33027920 -g1,14403:15017025,33027920 -h1,14403:15333171,33027920:0,0,0 -k1,14403:32583029,33027920:17249858 -g1,14403:32583029,33027920 -) -(1,14403:6797234,33694098:25785795,388497,9436 -h1,14403:6797234,33694098:0,0,0 -g1,14403:7745671,33694098 -g1,14403:8061817,33694098 -g1,14403:8377963,33694098 -g1,14403:8694109,33694098 -g1,14403:9010255,33694098 -g1,14403:9326401,33694098 -g1,14403:11539421,33694098 -g1,14403:11855567,33694098 -g1,14403:12171713,33694098 -g1,14403:12487859,33694098 -g1,14403:12804005,33694098 -g1,14403:13120151,33694098 -g1,14403:13436297,33694098 -h1,14403:15333171,33694098:0,0,0 -k1,14403:32583029,33694098:17249858 -g1,14403:32583029,33694098 -) -] -) -g1,14404:32583029,33703534 -g1,14404:6797234,33703534 -g1,14404:6797234,33703534 -g1,14404:32583029,33703534 -g1,14404:32583029,33703534 -) -h1,14404:6797234,33900142:0,0,0 -(1,14408:6797234,35350726:25785795,513147,134348 -h1,14407:6797234,35350726:983040,0,0 -k1,14407:8754913,35350726:156750 -k1,14407:10566448,35350726:156751 -k1,14407:11714758,35350726:156750 -k1,14407:13623285,35350726:156750 -k1,14407:16805832,35350726:156750 -k1,14407:17910234,35350726:156751 -k1,14407:19086069,35350726:156750 -k1,14407:23498727,35350726:156750 -k1,14407:24314769,35350726:156750 -k1,14407:27446199,35350726:156751 -k1,14407:29799060,35350726:156750 -k1,14407:32583029,35350726:0 -) -(1,14408:6797234,36192214:25785795,513147,134348 -k1,14407:7674219,36192214:260947 -k1,14407:9369095,36192214:260948 -k1,14407:10044824,36192214:260886 -k1,14407:11497216,36192214:260947 -k1,14407:14316690,36192214:260948 -k1,14407:17649965,36192214:260947 -k1,14407:20995037,36192214:260948 -k1,14407:21714081,36192214:260947 -k1,14407:22506526,36192214:260948 -k1,14407:27779667,36192214:260947 -k1,14407:28692043,36192214:260948 -k1,14407:30595322,36192214:260947 -k1,14407:32583029,36192214:0 -) -(1,14408:6797234,37033702:25785795,513147,134348 -k1,14407:9932614,37033702:261626 -k1,14407:15830992,37033702:261626 -k1,14407:16778781,37033702:261627 -k1,14407:19410189,37033702:261626 -k1,14407:20625364,37033702:261626 -k1,14407:21991272,37033702:261626 -k1,14407:23345383,37033702:261626 -k1,14407:26632806,37033702:261626 -k1,14407:28040658,37033702:261627 -(1,14407:28040658,37033702:0,452978,115847 -r1,14583:30509195,37033702:2468537,568825,115847 -k1,14407:28040658,37033702:-2468537 -) -(1,14407:28040658,37033702:2468537,452978,115847 -k1,14407:28040658,37033702:3277 -h1,14407:30505918,37033702:0,411205,112570 -) -k1,14407:30770821,37033702:261626 -k1,14407:31683875,37033702:261626 -k1,14408:32583029,37033702:0 -) -(1,14408:6797234,37875190:25785795,513147,134348 -k1,14407:9251861,37875190:204121 -k1,14407:9811843,37875190:204122 -k1,14407:12559416,37875190:204121 -k1,14407:13449699,37875190:204121 -k1,14407:15053669,37875190:204121 -k1,14407:16449236,37875190:204122 -k1,14407:18087285,37875190:204121 -k1,14407:19383891,37875190:204121 -(1,14407:19383891,37875190:0,459977,115847 -r1,14583:23610987,37875190:4227096,575824,115847 -k1,14407:19383891,37875190:-4227096 -) -(1,14407:19383891,37875190:4227096,459977,115847 -k1,14407:19383891,37875190:3277 -h1,14407:23607710,37875190:0,411205,112570 -) -k1,14407:23815108,37875190:204121 -k1,14407:24670658,37875190:204122 -k1,14407:27267498,37875190:204121 -k1,14407:27929716,37875190:204121 -k1,14407:28785265,37875190:204121 -k1,14407:29760090,37875190:204122 -k1,14407:31923737,37875190:204121 -k1,14407:32583029,37875190:0 -) -(1,14408:6797234,38716678:25785795,513147,134348 -g1,14407:8551632,38716678 -(1,14407:8551632,38716678:0,459977,115847 -r1,14583:11020169,38716678:2468537,575824,115847 -k1,14407:8551632,38716678:-2468537 -) -(1,14407:8551632,38716678:2468537,459977,115847 -k1,14407:8551632,38716678:3277 -h1,14407:11016892,38716678:0,411205,112570 -) -g1,14407:11393068,38716678 -g1,14407:13646195,38716678 -g1,14407:14793075,38716678 -g1,14407:16926927,38716678 -g1,14407:17482016,38716678 -k1,14408:32583029,38716678:12939636 -g1,14408:32583029,38716678 -) -v1,14410:6797234,39963683:0,393216,0 -(1,14424:6797234,45510161:25785795,5939694,196608 -g1,14424:6797234,45510161 -g1,14424:6797234,45510161 -g1,14424:6600626,45510161 -(1,14424:6600626,45510161:0,5939694,196608 -r1,14583:32779637,45510161:26179011,6136302,196608 -k1,14424:6600625,45510161:-26179012 -) -(1,14424:6600626,45510161:26179011,5939694,196608 -[1,14424:6797234,45510161:25785795,5743086,0 -(1,14412:6797234,40171301:25785795,404226,107478 -(1,14411:6797234,40171301:0,0,0 -g1,14411:6797234,40171301 -g1,14411:6797234,40171301 -g1,14411:6469554,40171301 -(1,14411:6469554,40171301:0,0,0 -) -g1,14411:6797234,40171301 -) -g1,14412:9958691,40171301 -g1,14412:10907129,40171301 -g1,14412:14384732,40171301 -g1,14412:15965461,40171301 -g1,14412:17230044,40171301 -g1,14412:17862336,40171301 -h1,14412:19126919,40171301:0,0,0 -k1,14412:32583029,40171301:13456110 -g1,14412:32583029,40171301 -) -(1,14413:6797234,40837479:25785795,410518,107478 -h1,14413:6797234,40837479:0,0,0 -g1,14413:15017022,40837479 -g1,14413:16597751,40837479 -g1,14413:17230043,40837479 -h1,14413:19759208,40837479:0,0,0 -k1,14413:32583029,40837479:12823821 -g1,14413:32583029,40837479 -) -(1,14423:6797234,41503657:25785795,379060,0 -(1,14415:6797234,41503657:0,0,0 -g1,14415:6797234,41503657 -g1,14415:6797234,41503657 -g1,14415:6469554,41503657 -(1,14415:6469554,41503657:0,0,0 -) -g1,14415:6797234,41503657 -) -h1,14423:7429525,41503657:0,0,0 -k1,14423:32583029,41503657:25153504 -g1,14423:32583029,41503657 -) -(1,14423:6797234,42169835:25785795,404226,7863 -h1,14423:6797234,42169835:0,0,0 -g1,14423:7745671,42169835 -h1,14423:9326399,42169835:0,0,0 -k1,14423:32583029,42169835:23256630 -g1,14423:32583029,42169835 -) -(1,14423:6797234,42836013:25785795,410518,107478 -h1,14423:6797234,42836013:0,0,0 -g1,14423:7745671,42836013 -g1,14423:11223274,42836013 -g1,14423:11855566,42836013 -g1,14423:19126917,42836013 -g1,14423:20707646,42836013 -g1,14423:21339938,42836013 -h1,14423:23869103,42836013:0,0,0 -k1,14423:32583029,42836013:8713926 -g1,14423:32583029,42836013 -) -(1,14423:6797234,43502191:25785795,379060,0 -h1,14423:6797234,43502191:0,0,0 -h1,14423:7429525,43502191:0,0,0 -k1,14423:32583029,43502191:25153504 -g1,14423:32583029,43502191 -) -(1,14423:6797234,44168369:25785795,410518,7863 -h1,14423:6797234,44168369:0,0,0 -g1,14423:7745671,44168369 -h1,14423:11855565,44168369:0,0,0 -k1,14423:32583029,44168369:20727464 -g1,14423:32583029,44168369 -) -(1,14423:6797234,44834547:25785795,404226,101187 -h1,14423:6797234,44834547:0,0,0 -g1,14423:7745671,44834547 -g1,14423:11539419,44834547 -g1,14423:11855565,44834547 -g1,14423:12171711,44834547 -g1,14423:12487857,44834547 -g1,14423:12804003,44834547 -g1,14423:13120149,44834547 -g1,14423:13436295,44834547 -g1,14423:13752441,44834547 -g1,14423:14068587,44834547 -g1,14423:14384733,44834547 -g1,14423:14700879,44834547 -g1,14423:15017025,44834547 -h1,14423:15333171,44834547:0,0,0 -k1,14423:32583029,44834547:17249858 -g1,14423:32583029,44834547 -) -(1,14423:6797234,45500725:25785795,388497,9436 -h1,14423:6797234,45500725:0,0,0 -g1,14423:7745671,45500725 -g1,14423:8061817,45500725 -g1,14423:8377963,45500725 -g1,14423:8694109,45500725 -g1,14423:9010255,45500725 -g1,14423:9326401,45500725 -g1,14423:11539421,45500725 -g1,14423:11855567,45500725 -g1,14423:12171713,45500725 -g1,14423:12487859,45500725 -g1,14423:12804005,45500725 -g1,14423:13120151,45500725 -g1,14423:13436297,45500725 -h1,14423:15333171,45500725:0,0,0 -k1,14423:32583029,45500725:17249858 -g1,14423:32583029,45500725 -) -] -) -g1,14424:32583029,45510161 -g1,14424:6797234,45510161 -g1,14424:6797234,45510161 -g1,14424:32583029,45510161 -g1,14424:32583029,45510161 -) -h1,14424:6797234,45706769:0,0,0 -] -g1,14583:32583029,45706769 -) -] -(1,14583:32583029,45706769:0,0,0 -g1,14583:32583029,45706769 -) -) -] -(1,14583:6630773,47279633:25952256,0,0 -h1,14583:6630773,47279633:25952256,0,0 -) -] -(1,14583:4262630,4025873:0,0,0 -[1,14583:-473656,4025873:0,0,0 -(1,14583:-473656,-710413:0,0,0 -(1,14583:-473656,-710413:0,0,0 -g1,14583:-473656,-710413 -) -g1,14583:-473656,-710413 -) -] -) -] -!26459 -}244 -!12 -{245 -[1,14583:4262630,47279633:28320399,43253760,0 -(1,14583:4262630,4025873:0,0,0 -[1,14583:-473656,4025873:0,0,0 -(1,14583:-473656,-710413:0,0,0 -(1,14583:-473656,-644877:0,0,0 -k1,14583:-473656,-644877:-65536 -) -(1,14583:-473656,4736287:0,0,0 -k1,14583:-473656,4736287:5209943 -) -g1,14583:-473656,-710413 +g1,14037:-473656,-710413 ) ] ) -[1,14583:6630773,47279633:25952256,43253760,0 -[1,14583:6630773,4812305:25952256,786432,0 -(1,14583:6630773,4812305:25952256,513147,126483 -(1,14583:6630773,4812305:25952256,513147,126483 -g1,14583:3078558,4812305 -[1,14583:3078558,4812305:0,0,0 -(1,14583:3078558,2439708:0,1703936,0 -k1,14583:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,14583:2537886,2439708:1179648,16384,0 +[1,14037:6630773,47279633:25952256,43253760,0 +[1,14037:6630773,4812305:25952256,786432,0 +(1,14037:6630773,4812305:25952256,513147,126483 +(1,14037:6630773,4812305:25952256,513147,126483 +g1,14037:3078558,4812305 +[1,14037:3078558,4812305:0,0,0 +(1,14037:3078558,2439708:0,1703936,0 +k1,14037:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,14037:2537886,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,14583:3078558,1915420:16384,1179648,0 +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,14037:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] ) ) ) ] -[1,14583:3078558,4812305:0,0,0 -(1,14583:3078558,2439708:0,1703936,0 -g1,14583:29030814,2439708 -g1,14583:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,14583:36151628,1915420:16384,1179648,0 +[1,14037:3078558,4812305:0,0,0 +(1,14037:3078558,2439708:0,1703936,0 +g1,14037:29030814,2439708 +g1,14037:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,14037:36151628,1915420:16384,1179648,0 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,14583:37855564,2439708:1179648,16384,0 +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,14037:37855564,2439708:1179648,16384,0 ) ) -k1,14583:3078556,2439708:-34777008 +k1,14037:3078556,2439708:-34777008 ) ] -[1,14583:3078558,4812305:0,0,0 -(1,14583:3078558,49800853:0,16384,2228224 -k1,14583:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,14583:2537886,49800853:1179648,16384,0 +[1,14037:3078558,4812305:0,0,0 +(1,14037:3078558,49800853:0,16384,2228224 +k1,14037:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,14037:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,14583:3078558,51504789:16384,1179648,0 +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,14037:3078558,51504789:16384,1179648,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 +) +] +) +) +) +] +[1,14037:3078558,4812305:0,0,0 +(1,14037:3078558,49800853:0,16384,2228224 +g1,14037:29030814,49800853 +g1,14037:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,14037:36151628,51504789:16384,1179648,0 +) +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 +) +] +) +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,14037:37855564,49800853:1179648,16384,0 +) +) +k1,14037:3078556,49800853:-34777008 +) +] +g1,14037:6630773,4812305 +k1,14037:19540057,4812305:11713907 +g1,14037:21162728,4812305 +g1,14037:21985204,4812305 +g1,14037:24539797,4812305 +g1,14037:25949476,4812305 +g1,14037:28728857,4812305 +g1,14037:29852144,4812305 +) +) +] +[1,14037:6630773,45706769:25952256,40108032,0 +(1,14037:6630773,45706769:25952256,40108032,0 +(1,14037:6630773,45706769:0,0,0 +g1,14037:6630773,45706769 +) +[1,14037:6630773,45706769:25952256,40108032,0 +(1,13985:6630773,6254097:25952256,513147,134348 +k1,13984:9156764,6254097:215847 +k1,13984:10024040,6254097:215848 +k1,13984:12734187,6254097:215847 +k1,13984:15949618,6254097:215848 +k1,13984:16793300,6254097:215847 +k1,13984:18212389,6254097:215848 +k1,13984:19795317,6254097:215847 +k1,13984:22261015,6254097:215847 +k1,13984:23997298,6254097:215848 +k1,13984:25232230,6254097:215847 +k1,13984:26683432,6254097:215848 +k1,13984:27558571,6254097:215847 +k1,13984:31325160,6254097:215848 +k1,13984:32227169,6254097:215847 +k1,13984:32583029,6254097:0 +) +(1,13985:6630773,7119177:25952256,505283,134348 +g1,13984:8571294,7119177 +g1,13984:10055029,7119177 +g1,13984:12680401,7119177 +g1,13984:15879213,7119177 +g1,13984:16434302,7119177 +g1,13984:20464766,7119177 +g1,13984:22823406,7119177 +k1,13985:32583029,7119177:6744312 +g1,13985:32583029,7119177 +) +(1,13987:6630773,7984257:25952256,513147,126483 +h1,13986:6630773,7984257:983040,0,0 +k1,13986:10211551,7984257:322983 +k1,13986:11526094,7984257:322983 +k1,13986:15154058,7984257:322983 +k1,13986:16990267,7984257:322983 +k1,13986:17999412,7984257:322983 +k1,13986:20733466,7984257:322984 +k1,13986:23128042,7984257:322983 +k1,13986:24067063,7984257:322983 +k1,13986:25997644,7984257:322983 +k1,13986:27006789,7984257:322983 +k1,13986:30419795,7984257:322983 +k1,13986:31358816,7984257:322983 +k1,13987:32583029,7984257:0 +) +(1,13987:6630773,8849337:25952256,513147,134348 +k1,13986:8133548,8849337:235309 +h1,13986:9676266,8849337:0,0,0 +k1,13986:9911575,8849337:235309 +k1,13986:10956254,8849337:235309 +k1,13986:12689716,8849337:235309 +h1,13986:13885093,8849337:0,0,0 +k1,13986:14294072,8849337:235309 +k1,13986:17319250,8849337:235310 +(1,13986:17319250,8849337:0,452978,115847 +r1,14037:20139499,8849337:2820249,568825,115847 +k1,13986:17319250,8849337:-2820249 +) +(1,13986:17319250,8849337:2820249,452978,115847 +k1,13986:17319250,8849337:3277 +h1,13986:20136222,8849337:0,411205,112570 +) +k1,13986:20374808,8849337:235309 +k1,13986:21141614,8849337:235309 +k1,13986:22890149,8849337:235309 +k1,13986:24073109,8849337:235309 +k1,13986:28460779,8849337:235309 +k1,13986:29887533,8849337:235309 +k1,13987:32583029,8849337:0 +) +(1,13987:6630773,9714417:25952256,513147,134348 +(1,13986:6630773,9714417:0,452978,115847 +r1,14037:11913004,9714417:5282231,568825,115847 +k1,13986:6630773,9714417:-5282231 +) +(1,13986:6630773,9714417:5282231,452978,115847 +k1,13986:6630773,9714417:3277 +h1,13986:11909727,9714417:0,411205,112570 +) +k1,13986:12117692,9714417:204688 +k1,13986:13270031,9714417:204688 +k1,13986:16876039,9714417:204689 +k1,13986:17842255,9714417:204688 +k1,13986:19981566,9714417:204688 +k1,13986:20542114,9714417:204688 +k1,13986:22430422,9714417:204688 +k1,13986:24554660,9714417:204688 +k1,13986:25322303,9714417:204689 +k1,13986:27446541,9714417:204688 +k1,13986:29570123,9714417:204688 +k1,13986:30793896,9714417:204688 +k1,13986:32583029,9714417:0 +) +(1,13987:6630773,10579497:25952256,513147,134348 +k1,13986:7853869,10579497:231536 +k1,13986:11349097,10579497:231535 +k1,13986:12342161,10579497:231536 +k1,13986:14155735,10579497:231535 +k1,13986:16512604,10579497:231536 +k1,13986:21028229,10579497:231536 +k1,13986:24049632,10579497:231535 +(1,13986:24049632,10579497:0,452978,115847 +r1,14037:29331863,10579497:5282231,568825,115847 +k1,13986:24049632,10579497:-5282231 +) +(1,13986:24049632,10579497:5282231,452978,115847 +k1,13986:24049632,10579497:3277 +h1,13986:29328586,10579497:0,411205,112570 +) +k1,13986:29563399,10579497:231536 +k1,13986:30895939,10579497:231535 +k1,13986:31483335,10579497:231536 +k1,13987:32583029,10579497:0 +) +(1,13987:6630773,11444577:25952256,513147,102891 +k1,13986:8725657,11444577:175334 +k1,13986:10281835,11444577:175334 +k1,13986:13267352,11444577:175333 +k1,13986:14885133,11444577:175334 +k1,13986:16344973,11444577:175334 +k1,13986:17388659,11444577:175334 +k1,13986:19077218,11444577:175333 +k1,13986:20200203,11444577:175334 +k1,13986:22363244,11444577:175334 +k1,13986:23226051,11444577:175334 +k1,13986:26427181,11444577:175333 +k1,13986:29692538,11444577:175334 +k1,13986:31896867,11444577:175334 +k1,13986:32583029,11444577:0 +) +(1,13987:6630773,12309657:25952256,505283,134348 +k1,13986:7256741,12309657:167871 +k1,13986:8800214,12309657:167872 +k1,13986:11346387,12309657:167871 +(1,13986:11346387,12309657:0,452978,115847 +r1,14037:13814924,12309657:2468537,568825,115847 +k1,13986:11346387,12309657:-2468537 +) +(1,13986:11346387,12309657:2468537,452978,115847 +k1,13986:11346387,12309657:3277 +h1,13986:13811647,12309657:0,411205,112570 +) +k1,13986:13982795,12309657:167871 +k1,13986:16458845,12309657:167872 +k1,13986:17312878,12309657:167871 +k1,13986:20883378,12309657:167871 +k1,13986:21702677,12309657:167871 +k1,13986:25481583,12309657:167872 +(1,13986:25481583,12309657:0,414482,115847 +r1,14037:25839849,12309657:358266,530329,115847 +k1,13986:25481583,12309657:-358266 +) +(1,13986:25481583,12309657:358266,414482,115847 +k1,13986:25481583,12309657:3277 +h1,13986:25836572,12309657:0,411205,112570 +) +k1,13986:26007720,12309657:167871 +k1,13986:27367036,12309657:167871 +(1,13986:27367036,12309657:0,414482,115847 +r1,14037:27725302,12309657:358266,530329,115847 +k1,13986:27367036,12309657:-358266 +) +(1,13986:27367036,12309657:358266,414482,115847 +k1,13986:27367036,12309657:3277 +h1,13986:27722025,12309657:0,411205,112570 +) +k1,13986:28066844,12309657:167872 +k1,13986:31593435,12309657:167871 +k1,13987:32583029,12309657:0 +) +(1,13987:6630773,13174737:25952256,513147,134348 +k1,13986:9643967,13174737:178762 +k1,13986:11538462,13174737:178762 +k1,13986:12175320,13174737:178761 +k1,13986:14984042,13174737:178762 +k1,13986:15814232,13174737:178762 +k1,13986:18638027,13174737:178762 +k1,13986:19835873,13174737:178761 +k1,13986:22610516,13174737:178762 +k1,13986:23736929,13174737:178762 +k1,13986:26401472,13174737:178762 +k1,13986:27239525,13174737:178761 +k1,13986:29207420,13174737:178762 +k1,13986:30577627,13174737:178762 +k1,13986:32583029,13174737:0 +) +(1,13987:6630773,14039817:25952256,513147,134348 +k1,13986:7830245,14039817:180387 +k1,13986:10707438,14039817:180386 +k1,13986:11570710,14039817:180387 +k1,13986:14647788,14039817:180387 +k1,13986:17395876,14039817:180387 +k1,13986:17932123,14039817:180387 +k1,13986:20591081,14039817:180386 +k1,13986:22113645,14039817:180387 +k1,13986:23490719,14039817:180387 +(1,13986:23490719,14039817:0,452978,115847 +r1,14037:25607544,14039817:2116825,568825,115847 +k1,13986:23490719,14039817:-2116825 +) +(1,13986:23490719,14039817:2116825,452978,115847 +k1,13986:23490719,14039817:3277 +h1,13986:25604267,14039817:0,411205,112570 +) +k1,13986:25787930,14039817:180386 +k1,13986:28422640,14039817:180387 +k1,13986:31931601,14039817:180387 +k1,13986:32583029,14039817:0 +) +(1,13987:6630773,14904897:25952256,513147,126483 +g1,13986:8531972,14904897 +g1,13986:9418674,14904897 +g1,13986:12643700,14904897 +g1,13986:15793360,14904897 +g1,13986:16348449,14904897 +g1,13986:17824975,14904897 +g1,13986:18683496,14904897 +g1,13986:19901810,14904897 +k1,13987:32583029,14904897:9228127 +g1,13987:32583029,14904897 +) +(1,14006:6630773,20738544:25952256,4986268,0 +k1,14006:7621778,20738544:991005 +(1,13988:7621778,20738544:0,0,0 +g1,13988:7621778,20738544 +g1,13988:7621778,20738544 +g1,13988:7294098,20738544 +(1,13988:7294098,20738544:0,0,0 +) +g1,13988:7621778,20738544 +) +(1,14004:7621778,20738544:23970247,4986268,0 +g1,14004:9499564,20738544 +(1,14004:9499564,16940140:0,0,0 +(1,14004:9499564,16940140:0,0,0 +g1,13990:9499564,16940140 +(1,13991:9499564,16940140:0,0,0 +(1,13991:9499564,16940140:0,0,0 +g1,13991:9499564,16940140 +g1,13991:9499564,16940140 +g1,13991:9499564,16940140 +g1,13991:9499564,16940140 +g1,13991:9499564,16940140 +(1,13991:9499564,16940140:0,0,0 +(1,13991:9499564,16940140:2386891,454754,104590 +(1,13991:9499564,16940140:2386891,454754,104590 +g1,13991:10776534,16940140 +$1,13991:10776534,16940140 +$1,13991:11384053,16940140 +g1,13991:11563360,16940140 +(1,13991:11563360,16940140:0,373362,104590 +r1,14037:11886455,16940140:323095,477952,104590 +k1,13991:11563360,16940140:-323095 +) +(1,13991:11563360,16940140:323095,373362,104590 +k1,13991:11563360,16940140:3277 +h1,13991:11883178,16940140:0,370085,101313 +) +) +g1,13991:11886455,16940140 +) +) +g1,13991:9499564,16940140 +g1,13991:9499564,16940140 +) +) +g1,13991:9499564,16940140 +g1,13992:9499564,16940140 +(1,13992:9499564,16940140:0,0,0 +(1,13992:9499564,16940140:0,0,0 +g1,13992:9499564,16940140 +g1,13992:9499564,16940140 +g1,13992:9499564,16940140 +g1,13992:9499564,16940140 +g1,13992:9499564,16940140 +(1,13992:9499564,16940140:0,0,0 +(1,13992:9499564,16940140:2386891,454754,104590 +(1,13992:9499564,16940140:2386891,454754,104590 +g1,13992:10776534,16940140 +$1,13992:10776534,16940140 +$1,13992:11384053,16940140 +g1,13992:11563360,16940140 +(1,13992:11563360,16940140:0,373362,104590 +r1,14037:11886455,16940140:323095,477952,104590 +k1,13992:11563360,16940140:-323095 +) +(1,13992:11563360,16940140:323095,373362,104590 +k1,13992:11563360,16940140:3277 +h1,13992:11883178,16940140:0,370085,101313 +) +) +g1,13992:11886455,16940140 +) +) +g1,13992:9499564,16940140 +g1,13992:9499564,16940140 +) +) +(1,13993:9499564,16940140:0,0,0 +(1,13993:9499564,16940140:0,0,0 +g1,13993:9499564,16940140 +g1,13993:9499564,16940140 +g1,13993:9499564,16940140 +g1,13993:9499564,16940140 +g1,13993:9499564,16940140 +(1,13993:9499564,16940140:0,0,0 +(1,13993:9499564,16940140:4754664,408008,104590 +(1,13993:9499564,16940140:4754664,408008,104590 +(1,13993:9499564,16940140:0,408008,104590 +r1,14037:14254228,16940140:4754664,512598,104590 +k1,13993:9499564,16940140:-4754664 +) +(1,13993:9499564,16940140:4754664,408008,104590 +k1,13993:9499564,16940140:3277 +h1,13993:14250951,16940140:0,370085,101313 +) +) +g1,13993:14254228,16940140 +) +) +g1,13993:9499564,16940140 +g1,13993:9499564,16940140 +) +) +g1,13993:9499564,16940140 +(1,13994:9499564,16940140:0,0,0 +(1,13994:9499564,16940140:0,0,0 +g1,13994:9499564,16940140 +g1,13994:9499564,16940140 +g1,13994:9499564,16940140 +g1,13994:9499564,16940140 +g1,13994:9499564,16940140 +(1,13994:9499564,16940140:0,0,0 +(1,13994:9499564,16940140:5341339,454754,120913 +(1,13994:9499564,16940140:5341339,454754,120913 +(1,13994:9499564,16940140:0,408008,104590 +r1,14037:13621146,16940140:4121582,512598,104590 +k1,13994:9499564,16940140:-4121582 +) +(1,13994:9499564,16940140:4121582,408008,104590 +k1,13994:9499564,16940140:3277 +h1,13994:13617869,16940140:0,370085,101313 +) +g1,13994:13800453,16940140 +) +g1,13994:14840903,16940140 +) +) +g1,13994:9499564,16940140 +g1,13994:9499564,16940140 +) +) +g1,13994:9499564,16940140 +(1,13995:9499564,16940140:0,0,0 +(1,13995:9499564,16940140:0,0,0 +g1,13995:9499564,16940140 +g1,13995:9499564,16940140 +g1,13995:9499564,16940140 +g1,13995:9499564,16940140 +g1,13995:9499564,16940140 +(1,13995:9499564,16940140:0,0,0 +(1,13995:9499564,16940140:2855420,408008,104590 +(1,13995:9499564,16940140:2855420,408008,104590 +(1,13995:9499564,16940140:0,408008,104590 +r1,14037:12354984,16940140:2855420,512598,104590 +k1,13995:9499564,16940140:-2855420 +) +(1,13995:9499564,16940140:2855420,408008,104590 +k1,13995:9499564,16940140:3277 +h1,13995:12351707,16940140:0,370085,101313 +) +) +g1,13995:12354984,16940140 +) +) +g1,13995:9499564,16940140 +g1,13995:9499564,16940140 +) +) +g1,13995:9499564,16940140 +(1,13996:9499564,16940140:0,0,0 +(1,13996:9499564,16940140:0,0,0 +g1,13996:9499564,16940140 +g1,13996:9499564,16940140 +g1,13996:9499564,16940140 +g1,13996:9499564,16940140 +g1,13996:9499564,16940140 +(1,13996:9499564,16940140:0,0,0 +(1,13996:9499564,16940140:2538879,414307,104590 +(1,13996:9499564,16940140:2538879,414307,104590 +(1,13996:9499564,16940140:0,414307,104590 +r1,14037:12038443,16940140:2538879,518897,104590 +k1,13996:9499564,16940140:-2538879 +) +(1,13996:9499564,16940140:2538879,414307,104590 +k1,13996:9499564,16940140:3277 +h1,13996:12035166,16940140:0,370085,101313 +) +) +g1,13996:12038443,16940140 +) +) +g1,13996:9499564,16940140 +g1,13996:9499564,16940140 +) +) +(1,13997:9499564,16940140:0,0,0 +(1,13997:9499564,16940140:0,0,0 +g1,13997:9499564,16940140 +g1,13997:9499564,16940140 +g1,13997:9499564,16940140 +g1,13997:9499564,16940140 +g1,13997:9499564,16940140 +(1,13997:9499564,16940140:0,0,0 +(1,13997:9499564,16940140:3488501,408008,104590 +(1,13997:9499564,16940140:3488501,408008,104590 +(1,13997:9499564,16940140:0,408008,104590 +r1,14037:12988065,16940140:3488501,512598,104590 +k1,13997:9499564,16940140:-3488501 +) +(1,13997:9499564,16940140:3488501,408008,104590 +k1,13997:9499564,16940140:3277 +h1,13997:12984788,16940140:0,370085,101313 +) +) +g1,13997:12988065,16940140 +) +) +g1,13997:9499564,16940140 +g1,13997:9499564,16940140 +) +) +g1,13997:9499564,16940140 +g1,13998:9499564,16940140 +g1,13998:9499564,16940140 +g1,13998:9499564,16940140 +g1,13998:9499564,16940140 +g1,13998:9499564,16940140 +g1,13998:9499564,16940140 +g1,13999:9499564,16940140 +g1,13999:9499564,16940140 +g1,13999:9499564,16940140 +g1,13999:9499564,16940140 +g1,13999:9499564,16940140 +g1,13999:9499564,16940140 +g1,14000:9499564,16940140 +g1,14000:9499564,16940140 +g1,14000:9499564,16940140 +g1,14000:9499564,16940140 +g1,14000:9499564,16940140 +g1,14000:9499564,16940140 +g1,14001:9499564,16940140 +g1,14001:9499564,16940140 +g1,14001:9499564,16940140 +g1,14001:9499564,16940140 +g1,14001:9499564,16940140 +g1,14001:9499564,16940140 +g1,14002:9499564,16940140 +g1,14002:9499564,16940140 +g1,14002:9499564,16940140 +g1,14002:9499564,16940140 +g1,14002:9499564,16940140 +g1,14002:9499564,16940140 +g1,14003:9499564,16940140 +g1,14003:9499564,16940140 +g1,14003:9499564,16940140 +g1,14003:9499564,16940140 +g1,14003:9499564,16940140 +g1,14003:9499564,16940140 +g1,14004:9499564,16940140 +g1,14004:9499564,16940140 +) +g1,14004:9499564,16940140 +) +) +g1,14006:31592025,20738544 +k1,14006:32583029,20738544:991004 +) +v1,14009:6630773,22078759:0,393216,0 +(1,14027:6630773,29530136:25952256,7844593,196608 +g1,14027:6630773,29530136 +g1,14027:6630773,29530136 +g1,14027:6434165,29530136 +(1,14027:6434165,29530136:0,7844593,196608 +r1,14037:32779637,29530136:26345472,8041201,196608 +k1,14027:6434165,29530136:-26345472 +) +(1,14027:6434165,29530136:26345472,7844593,196608 +[1,14027:6630773,29530136:25952256,7647985,0 +(1,14011:6630773,22313196:25952256,431045,106246 +(1,14010:6630773,22313196:0,0,0 +g1,14010:6630773,22313196 +g1,14010:6630773,22313196 +g1,14010:6303093,22313196 +(1,14010:6303093,22313196:0,0,0 +) +g1,14010:6630773,22313196 +) +g1,14011:7958589,22313196 +g1,14011:8954451,22313196 +g1,14011:14265714,22313196 +g1,14011:14929622,22313196 +g1,14011:18913070,22313196 +g1,14011:19576978,22313196 +g1,14011:20240886,22313196 +h1,14011:23560426,22313196:0,0,0 +k1,14011:32583029,22313196:9022603 +g1,14011:32583029,22313196 +) +(1,14012:6630773,22998051:25952256,431045,106246 +h1,14012:6630773,22998051:0,0,0 +k1,14012:6630773,22998051:0 +h1,14012:9950313,22998051:0,0,0 +k1,14012:32583029,22998051:22632716 +g1,14012:32583029,22998051 +) +(1,14022:6630773,23813978:25952256,424439,8257 +(1,14014:6630773,23813978:0,0,0 +g1,14014:6630773,23813978 +g1,14014:6630773,23813978 +g1,14014:6303093,23813978 +(1,14014:6303093,23813978:0,0,0 +) +g1,14014:6630773,23813978 +) +g1,14022:7626635,23813978 +h1,14022:9286405,23813978:0,0,0 +k1,14022:32583029,23813978:23296624 +g1,14022:32583029,23813978 +) +(1,14022:6630773,24498833:25952256,431045,106246 +h1,14022:6630773,24498833:0,0,0 +g1,14022:7626635,24498833 +g1,14022:12937898,24498833 +g1,14022:13601806,24498833 +g1,14022:17585253,24498833 +g1,14022:18249161,24498833 +g1,14022:18913069,24498833 +h1,14022:22232608,24498833:0,0,0 +k1,14022:32583029,24498833:10350421 +g1,14022:32583029,24498833 +) +(1,14022:6630773,25183688:25952256,398014,0 +h1,14022:6630773,25183688:0,0,0 +h1,14022:7294681,25183688:0,0,0 +k1,14022:32583029,25183688:25288348 +g1,14022:32583029,25183688 +) +(1,14022:6630773,25868543:25952256,424439,112852 +h1,14022:6630773,25868543:0,0,0 +g1,14022:7626635,25868543 +g1,14022:10946174,25868543 +g1,14022:14265713,25868543 +g1,14022:14597667,25868543 +g1,14022:16589391,25868543 +g1,14022:19908930,25868543 +g1,14022:20240884,25868543 +g1,14022:22896516,25868543 +g1,14022:26216055,25868543 +g1,14022:27543871,25868543 +h1,14022:31195364,25868543:0,0,0 +k1,14022:32583029,25868543:1387665 +g1,14022:32583029,25868543 +) +(1,14022:6630773,26553398:25952256,431045,112852 +h1,14022:6630773,26553398:0,0,0 +g1,14022:7626635,26553398 +g1,14022:11278128,26553398 +g1,14022:13933760,26553398 +g1,14022:14929622,26553398 +g1,14022:17585254,26553398 +g1,14022:19576978,26553398 +h1,14022:22232609,26553398:0,0,0 +k1,14022:32583029,26553398:10350420 +g1,14022:32583029,26553398 +) +(1,14022:6630773,27238253:25952256,424439,79822 +h1,14022:6630773,27238253:0,0,0 +g1,14022:7626635,27238253 +g1,14022:10946174,27238253 +g1,14022:14265713,27238253 +g1,14022:16589391,27238253 +h1,14022:19245022,27238253:0,0,0 +k1,14022:32583029,27238253:13338007 +g1,14022:32583029,27238253 +) +(1,14022:6630773,27923108:25952256,407923,9908 +h1,14022:6630773,27923108:0,0,0 +g1,14022:7626635,27923108 +g1,14022:9286405,27923108 +h1,14022:11942036,27923108:0,0,0 +k1,14022:32583028,27923108:20640992 +g1,14022:32583028,27923108 +) +(1,14024:6630773,28739035:25952256,431045,106246 +(1,14023:6630773,28739035:0,0,0 +g1,14023:6630773,28739035 +g1,14023:6630773,28739035 +g1,14023:6303093,28739035 +(1,14023:6303093,28739035:0,0,0 +) +g1,14023:6630773,28739035 +) +k1,14024:6630773,28739035:0 +g1,14024:9950313,28739035 +g1,14024:11610083,28739035 +g1,14024:12273991,28739035 +h1,14024:13601807,28739035:0,0,0 +k1,14024:32583029,28739035:18981222 +g1,14024:32583029,28739035 +) +(1,14025:6630773,29423890:25952256,431045,106246 +h1,14025:6630773,29423890:0,0,0 +g1,14025:9618359,29423890 +g1,14025:10282267,29423890 +g1,14025:14265715,29423890 +g1,14025:14929623,29423890 +g1,14025:15593531,29423890 +h1,14025:18913071,29423890:0,0,0 +k1,14025:32583029,29423890:13669958 +g1,14025:32583029,29423890 +) +] +) +g1,14027:32583029,29530136 +g1,14027:6630773,29530136 +g1,14027:6630773,29530136 +g1,14027:32583029,29530136 +g1,14027:32583029,29530136 +) +h1,14027:6630773,29726744:0,0,0 +(1,14030:6630773,43806264:25952256,14013984,0 +k1,14030:12599879,43806264:5969106 +h1,14029:12599879,43806264:0,0,0 +(1,14029:12599879,43806264:14014044,14013984,0 +(1,14029:12599879,43806264:14014019,14014019,0 +(1,14029:12599879,43806264:14014019,14014019,0 +(1,14029:12599879,43806264:0,14014019,0 +(1,14029:12599879,43806264:0,18945146,0 +(1,14029:12599879,43806264:18945146,18945146,0 +) +k1,14029:12599879,43806264:-18945146 +) +) +g1,14029:26613898,43806264 +) +) +) +g1,14030:26613923,43806264 +k1,14030:32583029,43806264:5969106 +) +(1,14037:6630773,44671344:25952256,513147,134348 +h1,14036:6630773,44671344:983040,0,0 +k1,14036:10593006,44671344:189325 +(1,14036:10593006,44671344:0,452978,115847 +r1,14037:12358119,44671344:1765113,568825,115847 +k1,14036:10593006,44671344:-1765113 +) +(1,14036:10593006,44671344:1765113,452978,115847 +k1,14036:10593006,44671344:3277 +h1,14036:12354842,44671344:0,411205,112570 +) +k1,14036:12547444,44671344:189325 +k1,14036:13754544,44671344:189326 +k1,14036:14299729,44671344:189325 +k1,14036:18062077,44671344:189325 +k1,14036:20586450,44671344:189325 +k1,14036:22511169,44671344:189326 +k1,14036:24194715,44671344:189325 +k1,14036:26492333,44671344:189325 +k1,14036:27481853,44671344:189325 +k1,14036:29052023,44671344:189326 +k1,14036:32051532,44671344:189325 +k1,14036:32583029,44671344:0 +) +(1,14037:6630773,45536424:25952256,513147,126483 +k1,14036:8812372,45536424:229937 +k1,14036:11244318,45536424:229936 +k1,14036:12125683,45536424:229937 +k1,14036:13640125,45536424:229936 +k1,14036:14537218,45536424:229937 +(1,14036:14537218,45536424:0,452978,122846 +r1,14037:16302331,45536424:1765113,575824,122846 +k1,14036:14537218,45536424:-1765113 +) +(1,14036:14537218,45536424:1765113,452978,122846 +k1,14036:14537218,45536424:3277 +h1,14036:16299054,45536424:0,411205,112570 +) +k1,14036:16532268,45536424:229937 +k1,14036:18156155,45536424:229936 +(1,14036:18156155,45536424:0,459977,115847 +r1,14037:20624692,45536424:2468537,575824,115847 +k1,14036:18156155,45536424:-2468537 +) +(1,14036:18156155,45536424:2468537,459977,115847 +k1,14036:18156155,45536424:3277 +h1,14036:20621415,45536424:0,411205,112570 +) +k1,14036:21028299,45536424:229937 +(1,14036:21028299,45536424:0,459977,115847 +r1,14037:23145124,45536424:2116825,575824,115847 +k1,14036:21028299,45536424:-2116825 +) +(1,14036:21028299,45536424:2116825,459977,115847 +k1,14036:21028299,45536424:3277 +h1,14036:23141847,45536424:0,411205,112570 +) +k1,14036:23375060,45536424:229936 +k1,14036:24796442,45536424:229937 +(1,14036:24796442,45536424:0,452978,115847 +r1,14037:26209843,45536424:1413401,568825,115847 +k1,14036:24796442,45536424:-1413401 +) +(1,14036:24796442,45536424:1413401,452978,115847 +k1,14036:24796442,45536424:3277 +h1,14036:26206566,45536424:0,411205,112570 +) +k1,14036:26439779,45536424:229936 +k1,14036:28798325,45536424:229937 +k1,14036:32583029,45536424:0 ) ] +(1,14037:32583029,45706769:0,0,0 +g1,14037:32583029,45706769 ) ) +] +(1,14037:6630773,47279633:25952256,0,0 +h1,14037:6630773,47279633:25952256,0,0 ) ] -[1,14583:3078558,4812305:0,0,0 -(1,14583:3078558,49800853:0,16384,2228224 -g1,14583:29030814,49800853 -g1,14583:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,14583:36151628,51504789:16384,1179648,0 -) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 -) -] -) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,14583:37855564,49800853:1179648,16384,0 +(1,14037:4262630,4025873:0,0,0 +[1,14037:-473656,4025873:0,0,0 +(1,14037:-473656,-710413:0,0,0 +(1,14037:-473656,-710413:0,0,0 +g1,14037:-473656,-710413 ) +g1,14037:-473656,-710413 +) +] +) +] +!24038 +}227 +Input:2151:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2152:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2153:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2154:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2155:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2156:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2157:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2158:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2159:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2160:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2161:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2162:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2163:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1234 +{228 +[1,14109:4262630,47279633:28320399,43253760,0 +(1,14109:4262630,4025873:0,0,0 +[1,14109:-473656,4025873:0,0,0 +(1,14109:-473656,-710413:0,0,0 +(1,14109:-473656,-644877:0,0,0 +k1,14109:-473656,-644877:-65536 ) -k1,14583:3078556,49800853:-34777008 -) -] -g1,14583:6630773,4812305 -k1,14583:19540057,4812305:11713907 -g1,14583:21162728,4812305 -g1,14583:21985204,4812305 -g1,14583:24539797,4812305 -g1,14583:25949476,4812305 -g1,14583:28728857,4812305 -g1,14583:29852144,4812305 -) -) -] -[1,14583:6630773,45706769:25952256,40108032,0 -(1,14583:6630773,45706769:25952256,40108032,0 -(1,14583:6630773,45706769:0,0,0 -g1,14583:6630773,45706769 -) -[1,14583:6630773,45706769:25952256,40108032,0 -v1,14583:6630773,6254097:0,393216,0 -(1,14583:6630773,45706769:25952256,39845888,0 -g1,14583:6630773,45706769 -g1,14583:6303093,45706769 -r1,14583:6401397,45706769:98304,39845888,0 -g1,14583:6600626,45706769 -g1,14583:6797234,45706769 -[1,14583:6797234,45706769:25785795,39845888,0 -(1,14428:6797234,6374028:25785795,513147,134348 -h1,14427:6797234,6374028:983040,0,0 -k1,14427:9031911,6374028:209615 -k1,14427:10260610,6374028:209614 -k1,14427:12776437,6374028:209615 -k1,14427:16060345,6374028:209614 -k1,14427:16929252,6374028:209615 -k1,14427:20521835,6374028:209615 -k1,14427:21087309,6374028:209614 -k1,14427:23840376,6374028:209615 -k1,14427:25317457,6374028:209615 -k1,14427:25882931,6374028:209614 -k1,14427:28132026,6374028:209615 -k1,14427:29209992,6374028:209614 -k1,14427:30894822,6374028:209615 -k1,14428:32583029,6374028:0 -) -(1,14428:6797234,7215516:25785795,513147,115847 -k1,14427:8309285,7215516:203297 -k1,14427:11297206,7215516:203296 -(1,14427:11297206,7215516:0,452978,115847 -r1,14583:16227726,7215516:4930520,568825,115847 -k1,14427:11297206,7215516:-4930520 -) -(1,14427:11297206,7215516:4930520,452978,115847 -k1,14427:11297206,7215516:3277 -h1,14427:16224449,7215516:0,411205,112570 -) -k1,14427:16431023,7215516:203297 -k1,14427:17825764,7215516:203296 -(1,14427:17825764,7215516:0,459977,115847 -r1,14583:20646013,7215516:2820249,575824,115847 -k1,14427:17825764,7215516:-2820249 -) -(1,14427:17825764,7215516:2820249,459977,115847 -k1,14427:17825764,7215516:3277 -h1,14427:20642736,7215516:0,411205,112570 -) -k1,14427:21022980,7215516:203297 -k1,14427:22422963,7215516:203296 -k1,14427:23932393,7215516:203297 -k1,14427:24794981,7215516:203296 -k1,14427:26695005,7215516:203297 -k1,14427:29682926,7215516:203296 -k1,14427:32227169,7215516:203297 -k1,14427:32583029,7215516:0 -) -(1,14428:6797234,8057004:25785795,513147,134348 -k1,14427:9977303,8057004:205390 -k1,14427:12160569,8057004:205389 -k1,14427:15727956,8057004:205390 -k1,14427:16952431,8057004:205390 -k1,14427:21085394,8057004:205390 -k1,14427:21950075,8057004:205389 -k1,14427:23174550,8057004:205390 -k1,14427:25923392,8057004:205390 -k1,14427:26814943,8057004:205389 -k1,14427:30213247,8057004:205390 -k1,14427:32583029,8057004:0 -) -(1,14428:6797234,8898492:25785795,513147,134348 -k1,14427:8737316,8898492:250564 -(1,14427:8737316,8898492:0,459977,115847 -r1,14583:11557565,8898492:2820249,575824,115847 -k1,14427:8737316,8898492:-2820249 -) -(1,14427:8737316,8898492:2820249,459977,115847 -k1,14427:8737316,8898492:3277 -h1,14427:11554288,8898492:0,411205,112570 -) -k1,14427:11808130,8898492:250565 -k1,14427:14399640,8898492:250564 -k1,14427:15006065,8898492:250565 -k1,14427:17129648,8898492:250564 -k1,14427:20354892,8898492:250565 -k1,14427:22471266,8898492:250564 -k1,14427:24115782,8898492:250565 -k1,14427:25385431,8898492:250564 -k1,14427:28179448,8898492:250565 -k1,14427:31635378,8898492:250564 -k1,14427:32583029,8898492:0 -) -(1,14428:6797234,9739980:25785795,473825,134348 -k1,14428:32583029,9739980:23039836 -g1,14428:32583029,9739980 -) -v1,14430:6797234,10938579:0,393216,0 -(1,14444:6797234,14573748:25785795,4028385,196608 -g1,14444:6797234,14573748 -g1,14444:6797234,14573748 -g1,14444:6600626,14573748 -(1,14444:6600626,14573748:0,4028385,196608 -r1,14583:32779637,14573748:26179011,4224993,196608 -k1,14444:6600625,14573748:-26179012 -) -(1,14444:6600626,14573748:26179011,4028385,196608 -[1,14444:6797234,14573748:25785795,3831777,0 -(1,14432:6797234,11152489:25785795,410518,107478 -(1,14431:6797234,11152489:0,0,0 -g1,14431:6797234,11152489 -g1,14431:6797234,11152489 -g1,14431:6469554,11152489 -(1,14431:6469554,11152489:0,0,0 -) -g1,14431:6797234,11152489 -) -g1,14432:12171711,11152489 -g1,14432:13120149,11152489 -g1,14432:15965460,11152489 -g1,14432:16597752,11152489 -h1,14432:17230043,11152489:0,0,0 -k1,14432:32583029,11152489:15352986 -g1,14432:32583029,11152489 -) -(1,14433:6797234,11818667:25785795,410518,107478 -h1,14433:6797234,11818667:0,0,0 -h1,14433:11855565,11818667:0,0,0 -k1,14433:32583029,11818667:20727464 -g1,14433:32583029,11818667 -) -(1,14437:6797234,12484845:25785795,404226,101187 -(1,14435:6797234,12484845:0,0,0 -g1,14435:6797234,12484845 -g1,14435:6797234,12484845 -g1,14435:6469554,12484845 -(1,14435:6469554,12484845:0,0,0 -) -g1,14435:6797234,12484845 -) -g1,14437:7745671,12484845 -g1,14437:9010254,12484845 -g1,14437:9958691,12484845 -g1,14437:10590983,12484845 -h1,14437:11223274,12484845:0,0,0 -k1,14437:32583030,12484845:21359756 -g1,14437:32583030,12484845 -) -(1,14439:6797234,13806383:25785795,410518,107478 -(1,14438:6797234,13806383:0,0,0 -g1,14438:6797234,13806383 -g1,14438:6797234,13806383 -g1,14438:6469554,13806383 -(1,14438:6469554,13806383:0,0,0 -) -g1,14438:6797234,13806383 -) -k1,14439:6797234,13806383:0 -h1,14439:15649313,13806383:0,0,0 -k1,14439:32583029,13806383:16933716 -g1,14439:32583029,13806383 -) -(1,14443:6797234,14472561:25785795,379060,101187 -(1,14441:6797234,14472561:0,0,0 -g1,14441:6797234,14472561 -g1,14441:6797234,14472561 -g1,14441:6469554,14472561 -(1,14441:6469554,14472561:0,0,0 -) -g1,14441:6797234,14472561 -) -g1,14443:7745671,14472561 -g1,14443:8377963,14472561 -g1,14443:9010255,14472561 -h1,14443:9326401,14472561:0,0,0 -k1,14443:32583029,14472561:23256628 -g1,14443:32583029,14472561 -) -] -) -g1,14444:32583029,14573748 -g1,14444:6797234,14573748 -g1,14444:6797234,14573748 -g1,14444:32583029,14573748 -g1,14444:32583029,14573748 -) -h1,14444:6797234,14770356:0,0,0 -(1,14448:6797234,16148331:25785795,513147,134348 -h1,14447:6797234,16148331:983040,0,0 -k1,14447:8418677,16148331:168510 -k1,14447:9118685,16148331:168511 -k1,14447:10573011,16148331:168510 -k1,14447:13371481,16148331:168510 -k1,14447:14191420,16148331:168511 -k1,14447:15569724,16148331:168510 -k1,14447:18281686,16148331:168510 -k1,14447:20740024,16148331:168510 -k1,14447:22302486,16148331:168511 -k1,14447:24925319,16148331:168510 -(1,14447:24925319,16148331:0,452978,115847 -r1,14583:27745568,16148331:2820249,568825,115847 -k1,14447:24925319,16148331:-2820249 -) -(1,14447:24925319,16148331:2820249,452978,115847 -k1,14447:24925319,16148331:3277 -h1,14447:27742291,16148331:0,411205,112570 -) -k1,14447:28087748,16148331:168510 -k1,14447:28884094,16148331:168511 -k1,14447:30071689,16148331:168510 -k1,14448:32583029,16148331:0 -) -(1,14448:6797234,16989819:25785795,513147,134348 -k1,14447:8675495,16989819:239206 -k1,14447:11631824,16989819:239206 -k1,14447:12226891,16989819:239207 -k1,14447:13538266,16989819:239206 -k1,14447:14881754,16989819:239206 -k1,14447:17419308,16989819:239206 -k1,14447:19514495,16989819:239207 -k1,14447:20772786,16989819:239206 -k1,14447:23905407,16989819:239206 -k1,14447:25444192,16989819:239206 -k1,14447:27047859,16989819:239207 -k1,14447:27969950,16989819:239206 -k1,14447:29228241,16989819:239206 -k1,14447:32583029,16989819:0 -) -(1,14448:6797234,17831307:25785795,513147,134348 -k1,14447:8276634,17831307:179821 -k1,14447:9904144,17831307:179820 -k1,14447:10743257,17831307:179821 -k1,14447:11942163,17831307:179821 -k1,14447:14613006,17831307:179820 -k1,14447:17336279,17831307:179821 -k1,14447:18132138,17831307:179821 -k1,14447:19331044,17831307:179821 -k1,14447:23448267,17831307:179820 -k1,14447:26345211,17831307:179821 -k1,14447:27478581,17831307:179821 -k1,14447:28762683,17831307:179820 -k1,14447:30228320,17831307:179821 -k1,14447:32583029,17831307:0 -) -(1,14448:6797234,18672795:25785795,505283,134348 -k1,14447:8871142,18672795:231036 -k1,14447:9788340,18672795:231036 -k1,14447:11123658,18672795:231036 -k1,14447:12102461,18672795:231037 -k1,14447:13773323,18672795:231036 -k1,14447:16046461,18672795:231036 -k1,14447:16905332,18672795:231036 -k1,14447:18828508,18672795:231036 -k1,14447:20756926,18672795:231036 -k1,14447:22007047,18672795:231036 -k1,14447:23310252,18672795:231036 -k1,14447:28164854,18672795:231037 -k1,14447:29047318,18672795:231036 -k1,14447:30297439,18672795:231036 -k1,14447:31478747,18672795:231036 -k1,14447:32583029,18672795:0 -) -(1,14448:6797234,19514283:25785795,505283,134348 -g1,14447:7744229,19514283 -g1,14447:10614705,19514283 -g1,14447:11886103,19514283 -g1,14447:15065909,19514283 -g1,14447:15723235,19514283 -g1,14447:17968498,19514283 -g1,14447:19186812,19514283 -g1,14447:21470086,19514283 -k1,14448:32583029,19514283:8773308 -g1,14448:32583029,19514283 -) -v1,14450:6797234,20712882:0,393216,0 -(1,14482:6797234,30311199:25785795,9991533,196608 -g1,14482:6797234,30311199 -g1,14482:6797234,30311199 -g1,14482:6600626,30311199 -(1,14482:6600626,30311199:0,9991533,196608 -r1,14583:32779637,30311199:26179011,10188141,196608 -k1,14482:6600625,30311199:-26179012 -) -(1,14482:6600626,30311199:26179011,9991533,196608 -[1,14482:6797234,30311199:25785795,9794925,0 -(1,14452:6797234,20926792:25785795,410518,101187 -(1,14451:6797234,20926792:0,0,0 -g1,14451:6797234,20926792 -g1,14451:6797234,20926792 -g1,14451:6469554,20926792 -(1,14451:6469554,20926792:0,0,0 -) -g1,14451:6797234,20926792 -) -g1,14452:10274837,20926792 -g1,14452:11223275,20926792 -g1,14452:11855567,20926792 -g1,14452:12487859,20926792 -g1,14452:13436296,20926792 -g1,14452:14068588,20926792 -h1,14452:14700879,20926792:0,0,0 -k1,14452:32583029,20926792:17882150 -g1,14452:32583029,20926792 -) -(1,14453:6797234,21592970:25785795,410518,101187 -h1,14453:6797234,21592970:0,0,0 -g1,14453:12804002,21592970 -g1,14453:13436294,21592970 -g1,14453:14068586,21592970 -g1,14453:14700878,21592970 -g1,14453:15333170,21592970 -h1,14453:16281607,21592970:0,0,0 -k1,14453:32583029,21592970:16301422 -g1,14453:32583029,21592970 -) -(1,14457:6797234,22259148:25785795,388497,101187 -(1,14455:6797234,22259148:0,0,0 -g1,14455:6797234,22259148 -g1,14455:6797234,22259148 -g1,14455:6469554,22259148 -(1,14455:6469554,22259148:0,0,0 -) -g1,14455:6797234,22259148 -) -g1,14457:7745671,22259148 -g1,14457:8377963,22259148 -g1,14457:9010255,22259148 -g1,14457:9958692,22259148 -g1,14457:10590984,22259148 -g1,14457:11539421,22259148 -g1,14457:12171713,22259148 -h1,14457:12804004,22259148:0,0,0 -k1,14457:32583028,22259148:19779024 -g1,14457:32583028,22259148 -) -(1,14459:6797234,23580686:25785795,410518,101187 -(1,14458:6797234,23580686:0,0,0 -g1,14458:6797234,23580686 -g1,14458:6797234,23580686 -g1,14458:6469554,23580686 -(1,14458:6469554,23580686:0,0,0 -) -g1,14458:6797234,23580686 -) -k1,14459:6797234,23580686:0 -g1,14459:12804002,23580686 -g1,14459:13436294,23580686 -g1,14459:14068586,23580686 -g1,14459:14700878,23580686 -g1,14459:15333170,23580686 -h1,14459:16281607,23580686:0,0,0 -k1,14459:32583029,23580686:16301422 -g1,14459:32583029,23580686 -) -(1,14463:6797234,24246864:25785795,388497,101187 -(1,14461:6797234,24246864:0,0,0 -g1,14461:6797234,24246864 -g1,14461:6797234,24246864 -g1,14461:6469554,24246864 -(1,14461:6469554,24246864:0,0,0 -) -g1,14461:6797234,24246864 -) -g1,14463:7745671,24246864 -g1,14463:8377963,24246864 -g1,14463:9010255,24246864 -h1,14463:9642546,24246864:0,0,0 -k1,14463:32583030,24246864:22940484 -g1,14463:32583030,24246864 -) -(1,14465:6797234,25568402:25785795,410518,101187 -(1,14464:6797234,25568402:0,0,0 -g1,14464:6797234,25568402 -g1,14464:6797234,25568402 -g1,14464:6469554,25568402 -(1,14464:6469554,25568402:0,0,0 -) -g1,14464:6797234,25568402 -) -k1,14465:6797234,25568402:0 -g1,14465:12804002,25568402 -g1,14465:13436294,25568402 -g1,14465:14068586,25568402 -h1,14465:15017023,25568402:0,0,0 -k1,14465:32583029,25568402:17566006 -g1,14465:32583029,25568402 -) -(1,14469:6797234,26234580:25785795,388497,101187 -(1,14467:6797234,26234580:0,0,0 -g1,14467:6797234,26234580 -g1,14467:6797234,26234580 -g1,14467:6469554,26234580 -(1,14467:6469554,26234580:0,0,0 -) -g1,14467:6797234,26234580 -) -g1,14469:7745671,26234580 -g1,14469:8377963,26234580 -g1,14469:9010255,26234580 -h1,14469:9642546,26234580:0,0,0 -k1,14469:32583030,26234580:22940484 -g1,14469:32583030,26234580 -) -(1,14471:6797234,27556118:25785795,410518,101187 -(1,14470:6797234,27556118:0,0,0 -g1,14470:6797234,27556118 -g1,14470:6797234,27556118 -g1,14470:6469554,27556118 -(1,14470:6469554,27556118:0,0,0 -) -g1,14470:6797234,27556118 -) -k1,14471:6797234,27556118:0 -g1,14471:12804002,27556118 -g1,14471:13436294,27556118 -g1,14471:14068586,27556118 -h1,14471:14700877,27556118:0,0,0 -k1,14471:32583029,27556118:17882152 -g1,14471:32583029,27556118 -) -(1,14475:6797234,28222296:25785795,388497,0 -(1,14473:6797234,28222296:0,0,0 -g1,14473:6797234,28222296 -g1,14473:6797234,28222296 -g1,14473:6469554,28222296 -(1,14473:6469554,28222296:0,0,0 -) -g1,14473:6797234,28222296 -) -g1,14475:7745671,28222296 -g1,14475:8377963,28222296 -g1,14475:9010255,28222296 -g1,14475:9958692,28222296 -g1,14475:10590984,28222296 -h1,14475:11223275,28222296:0,0,0 -k1,14475:32583029,28222296:21359754 -g1,14475:32583029,28222296 -) -(1,14477:6797234,29543834:25785795,410518,101187 -(1,14476:6797234,29543834:0,0,0 -g1,14476:6797234,29543834 -g1,14476:6797234,29543834 -g1,14476:6469554,29543834 -(1,14476:6469554,29543834:0,0,0 -) -g1,14476:6797234,29543834 -) -k1,14477:6797234,29543834:0 -g1,14477:12804002,29543834 -g1,14477:13436294,29543834 -g1,14477:14068586,29543834 -g1,14477:14700878,29543834 -g1,14477:15333170,29543834 -h1,14477:15965461,29543834:0,0,0 -k1,14477:32583029,29543834:16617568 -g1,14477:32583029,29543834 -) -(1,14481:6797234,30210012:25785795,388497,101187 -(1,14479:6797234,30210012:0,0,0 -g1,14479:6797234,30210012 -g1,14479:6797234,30210012 -g1,14479:6469554,30210012 -(1,14479:6469554,30210012:0,0,0 -) -g1,14479:6797234,30210012 -) -g1,14481:7745671,30210012 -g1,14481:8377963,30210012 -g1,14481:9010255,30210012 -g1,14481:9642547,30210012 -g1,14481:10274839,30210012 -g1,14481:11223276,30210012 -g1,14481:11855568,30210012 -h1,14481:12487859,30210012:0,0,0 -k1,14481:32583029,30210012:20095170 -g1,14481:32583029,30210012 -) -] -) -g1,14482:32583029,30311199 -g1,14482:6797234,30311199 -g1,14482:6797234,30311199 -g1,14482:32583029,30311199 -g1,14482:32583029,30311199 -) -h1,14482:6797234,30507807:0,0,0 -(1,14486:6797234,31885782:25785795,513147,134348 -h1,14485:6797234,31885782:983040,0,0 -k1,14485:8562650,31885782:337387 -k1,14485:11660552,31885782:337526 -k1,14485:15078270,31885782:337526 -k1,14485:18441593,31885782:337526 -k1,14485:19726770,31885782:337526 -k1,14485:22052002,31885782:337525 -k1,14485:25394354,31885782:337526 -k1,14485:30078883,31885782:337526 -k1,14485:32168186,31885782:337526 -k1,14486:32583029,31885782:0 -) -(1,14486:6797234,32727270:25785795,513147,126483 -k1,14485:8733117,32727270:224738 -k1,14485:10090317,32727270:224738 -k1,14485:12161204,32727270:224738 -k1,14485:13916208,32727270:224738 -k1,14485:14792374,32727270:224738 -k1,14485:16243291,32727270:224738 -k1,14485:18455736,32727270:224738 -k1,14485:21554228,32727270:224738 -k1,14485:22395004,32727270:224738 -k1,14485:24128381,32727270:224738 -k1,14485:26688167,32727270:224738 -k1,14485:27954927,32727270:224738 -k1,14485:31014752,32727270:224738 -k1,14486:32583029,32727270:0 -) -(1,14486:6797234,33568758:25785795,505283,126483 -g1,14485:8396312,33568758 -g1,14485:10583248,33568758 -g1,14485:13613632,33568758 -g1,14485:14344358,33568758 -g1,14485:17173547,33568758 -g1,14485:18766727,33568758 -g1,14485:19380799,33568758 -g1,14485:22034351,33568758 -(1,14485:22034351,33568758:0,452978,115847 -r1,14583:24151176,33568758:2116825,568825,115847 -k1,14485:22034351,33568758:-2116825 -) -(1,14485:22034351,33568758:2116825,452978,115847 -k1,14485:22034351,33568758:3277 -h1,14485:24147899,33568758:0,411205,112570 -) -k1,14486:32583029,33568758:8258183 -g1,14486:32583029,33568758 -) -(1,14488:6797234,34414312:25785795,513147,126483 -h1,14487:6797234,34414312:983040,0,0 -k1,14487:8492123,34414312:224261 -k1,14487:10803731,34414312:224286 -k1,14487:11687310,34414312:224287 -k1,14487:14348225,34414312:224286 -k1,14487:18183545,34414312:224286 -k1,14487:19512113,34414312:224286 -k1,14487:20484166,34414312:224287 -k1,14487:23091341,34414312:224286 -k1,14487:24883248,34414312:224286 -k1,14487:25463394,34414312:224286 -k1,14487:27675388,34414312:224287 -k1,14487:30616797,34414312:224286 -k1,14487:31196943,34414312:224286 -k1,14487:32583029,34414312:0 -) -(1,14488:6797234,35255800:25785795,513147,126483 -g1,14487:7655755,35255800 -g1,14487:10659925,35255800 -g1,14487:12050599,35255800 -g1,14487:13268913,35255800 -g1,14487:14857505,35255800 -g1,14487:16004385,35255800 -g1,14487:17222699,35255800 -g1,14487:21187627,35255800 -k1,14488:32583029,35255800:8380091 -g1,14488:32583029,35255800 -) -v1,14490:6797234,36454399:0,393216,0 -(1,14507:6797234,44005703:25785795,7944520,196608 -g1,14507:6797234,44005703 -g1,14507:6797234,44005703 -g1,14507:6600626,44005703 -(1,14507:6600626,44005703:0,7944520,196608 -r1,14583:32779637,44005703:26179011,8141128,196608 -k1,14507:6600625,44005703:-26179012 -) -(1,14507:6600626,44005703:26179011,7944520,196608 -[1,14507:6797234,44005703:25785795,7747912,0 -(1,14492:6797234,36668309:25785795,410518,101187 -(1,14491:6797234,36668309:0,0,0 -g1,14491:6797234,36668309 -g1,14491:6797234,36668309 -g1,14491:6469554,36668309 -(1,14491:6469554,36668309:0,0,0 -) -g1,14491:6797234,36668309 -) -g1,14492:9958691,36668309 -g1,14492:10907129,36668309 -g1,14492:15017024,36668309 -g1,14492:15649316,36668309 -g1,14492:19759211,36668309 -g1,14492:21972232,36668309 -g1,14492:23552962,36668309 -k1,14492:23552962,36668309:0 -h1,14492:24817545,36668309:0,0,0 -k1,14492:32583029,36668309:7765484 -g1,14492:32583029,36668309 -) -(1,14493:6797234,37334487:25785795,404226,101187 -h1,14493:6797234,37334487:0,0,0 -g1,14493:7113380,37334487 -g1,14493:7429526,37334487 -g1,14493:7745672,37334487 -g1,14493:8061818,37334487 -g1,14493:8377964,37334487 -g1,14493:8694110,37334487 -g1,14493:9010256,37334487 -g1,14493:9326402,37334487 -g1,14493:9642548,37334487 -g1,14493:9958694,37334487 -g1,14493:10274840,37334487 -g1,14493:10590986,37334487 -g1,14493:10907132,37334487 -g1,14493:11223278,37334487 -g1,14493:11539424,37334487 -g1,14493:11855570,37334487 -g1,14493:12171716,37334487 -g1,14493:12487862,37334487 -g1,14493:12804008,37334487 -g1,14493:13120154,37334487 -g1,14493:13436300,37334487 -g1,14493:13752446,37334487 -g1,14493:14068592,37334487 -g1,14493:14384738,37334487 -g1,14493:15017030,37334487 -g1,14493:15649322,37334487 -g1,14493:20391509,37334487 -g1,14493:23552967,37334487 -h1,14493:24501404,37334487:0,0,0 -k1,14493:32583029,37334487:8081625 -g1,14493:32583029,37334487 -) -(1,14494:6797234,38000665:25785795,410518,6290 -h1,14494:6797234,38000665:0,0,0 -h1,14494:9642545,38000665:0,0,0 -k1,14494:32583029,38000665:22940484 -g1,14494:32583029,38000665 -) -(1,14506:6797234,38666843:25785795,379060,0 -(1,14496:6797234,38666843:0,0,0 -g1,14496:6797234,38666843 -g1,14496:6797234,38666843 -g1,14496:6469554,38666843 -(1,14496:6469554,38666843:0,0,0 -) -g1,14496:6797234,38666843 -) -g1,14506:7745671,38666843 -g1,14506:8061817,38666843 -g1,14506:8377963,38666843 -g1,14506:8694109,38666843 -g1,14506:9010255,38666843 -g1,14506:9642547,38666843 -g1,14506:9958693,38666843 -g1,14506:10274839,38666843 -g1,14506:10590985,38666843 -g1,14506:10907131,38666843 -h1,14506:11223277,38666843:0,0,0 -k1,14506:32583029,38666843:21359752 -g1,14506:32583029,38666843 -) -(1,14506:6797234,39333021:25785795,404226,101187 -h1,14506:6797234,39333021:0,0,0 -g1,14506:7745671,39333021 -g1,14506:8377963,39333021 -g1,14506:9642546,39333021 -h1,14506:11223274,39333021:0,0,0 -k1,14506:32583030,39333021:21359756 -g1,14506:32583030,39333021 -) -(1,14506:6797234,39999199:25785795,404226,101187 -h1,14506:6797234,39999199:0,0,0 -g1,14506:7745671,39999199 -g1,14506:8377963,39999199 -g1,14506:9642546,39999199 -h1,14506:11223274,39999199:0,0,0 -k1,14506:32583030,39999199:21359756 -g1,14506:32583030,39999199 -) -(1,14506:6797234,40665377:25785795,404226,101187 -h1,14506:6797234,40665377:0,0,0 -g1,14506:7745671,40665377 -g1,14506:8377963,40665377 -g1,14506:9642546,40665377 -h1,14506:11223274,40665377:0,0,0 -k1,14506:32583030,40665377:21359756 -g1,14506:32583030,40665377 -) -(1,14506:6797234,41331555:25785795,404226,101187 -h1,14506:6797234,41331555:0,0,0 -g1,14506:7745671,41331555 -g1,14506:8377963,41331555 -g1,14506:9642546,41331555 -h1,14506:11223274,41331555:0,0,0 -k1,14506:32583030,41331555:21359756 -g1,14506:32583030,41331555 -) -(1,14506:6797234,41997733:25785795,404226,9436 -h1,14506:6797234,41997733:0,0,0 -g1,14506:7745671,41997733 -g1,14506:8377963,41997733 -g1,14506:8694109,41997733 -g1,14506:9642546,41997733 -h1,14506:11223274,41997733:0,0,0 -k1,14506:32583030,41997733:21359756 -g1,14506:32583030,41997733 -) -(1,14506:6797234,42663911:25785795,404226,9436 -h1,14506:6797234,42663911:0,0,0 -g1,14506:7745671,42663911 -g1,14506:8377963,42663911 -g1,14506:8694109,42663911 -g1,14506:9642546,42663911 -h1,14506:11223274,42663911:0,0,0 -k1,14506:32583030,42663911:21359756 -g1,14506:32583030,42663911 -) -(1,14506:6797234,43330089:25785795,404226,6290 -h1,14506:6797234,43330089:0,0,0 -g1,14506:7745671,43330089 -g1,14506:8377963,43330089 -g1,14506:8694109,43330089 -g1,14506:9642546,43330089 -h1,14506:11223274,43330089:0,0,0 -k1,14506:32583030,43330089:21359756 -g1,14506:32583030,43330089 -) -(1,14506:6797234,43996267:25785795,404226,9436 -h1,14506:6797234,43996267:0,0,0 -g1,14506:7745671,43996267 -g1,14506:8377963,43996267 -g1,14506:8694109,43996267 -g1,14506:9642546,43996267 -h1,14506:11223274,43996267:0,0,0 -k1,14506:32583030,43996267:21359756 -g1,14506:32583030,43996267 -) -] -) -g1,14507:32583029,44005703 -g1,14507:6797234,44005703 -g1,14507:6797234,44005703 -g1,14507:32583029,44005703 -g1,14507:32583029,44005703 -) -h1,14507:6797234,44202311:0,0,0 -(1,14511:6797234,45580286:25785795,513147,126483 -h1,14510:6797234,45580286:983040,0,0 -g1,14510:9176190,45580286 -g1,14510:11640999,45580286 -g1,14510:14801800,45580286 -g1,14510:16717417,45580286 -g1,14510:19827100,45580286 -g1,14510:20642367,45580286 -k1,14511:32583029,45580286:10674506 -g1,14511:32583029,45580286 -) -] -g1,14583:32583029,45706769 -) -] -(1,14583:32583029,45706769:0,0,0 -g1,14583:32583029,45706769 -) -) -] -(1,14583:6630773,47279633:25952256,0,0 -h1,14583:6630773,47279633:25952256,0,0 -) -] -(1,14583:4262630,4025873:0,0,0 -[1,14583:-473656,4025873:0,0,0 -(1,14583:-473656,-710413:0,0,0 -(1,14583:-473656,-710413:0,0,0 -g1,14583:-473656,-710413 -) -g1,14583:-473656,-710413 -) -] -) -] -!24776 -}245 -!12 -{246 -[1,14589:4262630,47279633:28320399,43253760,0 -(1,14589:4262630,4025873:0,0,0 -[1,14589:-473656,4025873:0,0,0 -(1,14589:-473656,-710413:0,0,0 -(1,14589:-473656,-644877:0,0,0 -k1,14589:-473656,-644877:-65536 -) -(1,14589:-473656,4736287:0,0,0 -k1,14589:-473656,4736287:5209943 +(1,14109:-473656,4736287:0,0,0 +k1,14109:-473656,4736287:5209943 ) -g1,14589:-473656,-710413 +g1,14109:-473656,-710413 ) ] ) -[1,14589:6630773,47279633:25952256,43253760,0 -[1,14589:6630773,4812305:25952256,786432,0 -(1,14589:6630773,4812305:25952256,513147,126483 -(1,14589:6630773,4812305:25952256,513147,126483 -g1,14589:3078558,4812305 -[1,14589:3078558,4812305:0,0,0 -(1,14589:3078558,2439708:0,1703936,0 -k1,14589:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,14589:2537886,2439708:1179648,16384,0 +[1,14109:6630773,47279633:25952256,43253760,0 +[1,14109:6630773,4812305:25952256,786432,0 +(1,14109:6630773,4812305:25952256,513147,126483 +(1,14109:6630773,4812305:25952256,513147,126483 +g1,14109:3078558,4812305 +[1,14109:3078558,4812305:0,0,0 +(1,14109:3078558,2439708:0,1703936,0 +k1,14109:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,14109:2537886,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,14589:3078558,1915420:16384,1179648,0 +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,14109:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] ) ) ) ] -[1,14589:3078558,4812305:0,0,0 -(1,14589:3078558,2439708:0,1703936,0 -g1,14589:29030814,2439708 -g1,14589:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,14589:36151628,1915420:16384,1179648,0 +[1,14109:3078558,4812305:0,0,0 +(1,14109:3078558,2439708:0,1703936,0 +g1,14109:29030814,2439708 +g1,14109:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,14109:36151628,1915420:16384,1179648,0 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,14589:37855564,2439708:1179648,16384,0 +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,14109:37855564,2439708:1179648,16384,0 ) ) -k1,14589:3078556,2439708:-34777008 +k1,14109:3078556,2439708:-34777008 ) ] -[1,14589:3078558,4812305:0,0,0 -(1,14589:3078558,49800853:0,16384,2228224 -k1,14589:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,14589:2537886,49800853:1179648,16384,0 +[1,14109:3078558,4812305:0,0,0 +(1,14109:3078558,49800853:0,16384,2228224 +k1,14109:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,14109:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,14589:3078558,51504789:16384,1179648,0 +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,14109:3078558,51504789:16384,1179648,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 ) ] ) ) ) ] -[1,14589:3078558,4812305:0,0,0 -(1,14589:3078558,49800853:0,16384,2228224 -g1,14589:29030814,49800853 -g1,14589:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,14589:36151628,51504789:16384,1179648,0 +[1,14109:3078558,4812305:0,0,0 +(1,14109:3078558,49800853:0,16384,2228224 +g1,14109:29030814,49800853 +g1,14109:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,14109:36151628,51504789:16384,1179648,0 +) +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 +) +] +) +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,14109:37855564,49800853:1179648,16384,0 +) +) +k1,14109:3078556,49800853:-34777008 +) +] +g1,14109:6630773,4812305 +g1,14109:6630773,4812305 +g1,14109:8691224,4812305 +g1,14109:11722264,4812305 +k1,14109:31387652,4812305:19665388 ) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 -) -] -) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,14589:37855564,49800853:1179648,16384,0 -) -) -k1,14589:3078556,49800853:-34777008 -) -] -g1,14589:6630773,4812305 -g1,14589:6630773,4812305 -g1,14589:8691224,4812305 -g1,14589:11722264,4812305 -k1,14589:31387652,4812305:19665388 -) -) -] -[1,14589:6630773,45706769:25952256,40108032,0 -(1,14589:6630773,45706769:25952256,40108032,0 -(1,14589:6630773,45706769:0,0,0 -g1,14589:6630773,45706769 -) -[1,14589:6630773,45706769:25952256,40108032,0 -v1,14583:6630773,6254097:0,393216,0 -(1,14583:6630773,39700922:25952256,33840041,0 -g1,14583:6630773,39700922 -g1,14583:6303093,39700922 -r1,14589:6401397,39700922:98304,33840041,0 -g1,14583:6600626,39700922 -g1,14583:6797234,39700922 -[1,14583:6797234,39700922:25785795,33840041,0 -v1,14513:6797234,6254097:0,393216,0 -(1,14522:6797234,8561436:25785795,2700555,196608 -g1,14522:6797234,8561436 -g1,14522:6797234,8561436 -g1,14522:6600626,8561436 -(1,14522:6600626,8561436:0,2700555,196608 -r1,14589:32779637,8561436:26179011,2897163,196608 -k1,14522:6600625,8561436:-26179012 -) -(1,14522:6600626,8561436:26179011,2700555,196608 -[1,14522:6797234,8561436:25785795,2503947,0 -(1,14515:6797234,6461715:25785795,404226,101187 -(1,14514:6797234,6461715:0,0,0 -g1,14514:6797234,6461715 -g1,14514:6797234,6461715 -g1,14514:6469554,6461715 -(1,14514:6469554,6461715:0,0,0 -) -g1,14514:6797234,6461715 -) -k1,14515:6797234,6461715:0 -h1,14515:13120148,6461715:0,0,0 -k1,14515:32583028,6461715:19462880 -g1,14515:32583028,6461715 -) -(1,14521:6797234,7127893:25785795,410518,31456 -(1,14517:6797234,7127893:0,0,0 -g1,14517:6797234,7127893 -g1,14517:6797234,7127893 -g1,14517:6469554,7127893 -(1,14517:6469554,7127893:0,0,0 -) -g1,14517:6797234,7127893 -) -g1,14521:7745671,7127893 -h1,14521:10907128,7127893:0,0,0 -k1,14521:32583028,7127893:21675900 -g1,14521:32583028,7127893 -) -(1,14521:6797234,7794071:25785795,404226,6290 -h1,14521:6797234,7794071:0,0,0 -g1,14521:7745671,7794071 -g1,14521:8061817,7794071 -g1,14521:8377963,7794071 -g1,14521:8694109,7794071 -g1,14521:9010255,7794071 -g1,14521:9326401,7794071 -g1,14521:9642547,7794071 -g1,14521:9958693,7794071 -g1,14521:10274839,7794071 -g1,14521:13436296,7794071 -g1,14521:13752442,7794071 -g1,14521:14068588,7794071 -g1,14521:14384734,7794071 -g1,14521:14700880,7794071 -g1,14521:15017026,7794071 -g1,14521:15333172,7794071 -g1,14521:15649318,7794071 -g1,14521:15965464,7794071 -g1,14521:16281610,7794071 -g1,14521:16597756,7794071 -h1,14521:18810776,7794071:0,0,0 -k1,14521:32583029,7794071:13772253 -g1,14521:32583029,7794071 -) -(1,14521:6797234,8460249:25785795,404226,101187 -h1,14521:6797234,8460249:0,0,0 -g1,14521:7745671,8460249 -g1,14521:13436294,8460249 -g1,14521:13752440,8460249 -g1,14521:14068586,8460249 -g1,14521:14384732,8460249 -g1,14521:14700878,8460249 -g1,14521:15017024,8460249 -h1,14521:18810772,8460249:0,0,0 -k1,14521:32583029,8460249:13772257 -g1,14521:32583029,8460249 -) -] -) -g1,14522:32583029,8561436 -g1,14522:6797234,8561436 -g1,14522:6797234,8561436 -g1,14522:32583029,8561436 -g1,14522:32583029,8561436 -) -h1,14522:6797234,8758044:0,0,0 -(1,14526:6797234,10123820:25785795,513147,134348 -h1,14525:6797234,10123820:983040,0,0 -k1,14525:8468502,10123820:200640 -k1,14525:10656850,10123820:200641 -k1,14525:12944813,10123820:200641 -k1,14525:14093105,10123820:200641 -k1,14525:14649606,10123820:200641 -k1,14525:16837954,10123820:200641 -k1,14525:17986246,10123820:200641 -k1,14525:18542747,10123820:200641 -k1,14525:21366794,10123820:200641 -k1,14525:24223609,10123820:200641 -k1,14525:26512882,10123820:200641 -k1,14525:28107474,10123820:200641 -k1,14525:29117485,10123820:200641 -k1,14525:32583029,10123820:0 -) -(1,14526:6797234,10965308:25785795,426639,7863 -k1,14526:32583029,10965308:24099554 -g1,14526:32583029,10965308 -) -v1,14528:6797234,12155774:0,393216,0 -(1,14551:6797234,23770731:25785795,12008173,196608 -g1,14551:6797234,23770731 -g1,14551:6797234,23770731 -g1,14551:6600626,23770731 -(1,14551:6600626,23770731:0,12008173,196608 -r1,14589:32779637,23770731:26179011,12204781,196608 -k1,14551:6600625,23770731:-26179012 -) -(1,14551:6600626,23770731:26179011,12008173,196608 -[1,14551:6797234,23770731:25785795,11811565,0 -(1,14530:6797234,12369684:25785795,410518,82312 -(1,14529:6797234,12369684:0,0,0 -g1,14529:6797234,12369684 -g1,14529:6797234,12369684 -g1,14529:6469554,12369684 -(1,14529:6469554,12369684:0,0,0 -) -g1,14529:6797234,12369684 -) -k1,14530:6797234,12369684:0 -g1,14530:11539420,12369684 -g1,14530:12171712,12369684 -g1,14530:12804004,12369684 -g1,14530:13752442,12369684 -h1,14530:16913899,12369684:0,0,0 -k1,14530:32583029,12369684:15669130 -g1,14530:32583029,12369684 -) -(1,14550:6797234,13035862:25785795,404226,101187 -(1,14532:6797234,13035862:0,0,0 -g1,14532:6797234,13035862 -g1,14532:6797234,13035862 -g1,14532:6469554,13035862 -(1,14532:6469554,13035862:0,0,0 -) -g1,14532:6797234,13035862 -) -g1,14550:7745671,13035862 -g1,14550:8061817,13035862 -g1,14550:8377963,13035862 -g1,14550:12171711,13035862 -g1,14550:13752440,13035862 -h1,14550:15649314,13035862:0,0,0 -k1,14550:32583030,13035862:16933716 -g1,14550:32583030,13035862 -) -(1,14550:6797234,13702040:25785795,388497,0 -h1,14550:6797234,13702040:0,0,0 -g1,14550:7745671,13702040 -g1,14550:8377963,13702040 -g1,14550:8694109,13702040 -g1,14550:9010255,13702040 -g1,14550:9326401,13702040 -g1,14550:9642547,13702040 -g1,14550:9958693,13702040 -g1,14550:10274839,13702040 -g1,14550:10590985,13702040 -g1,14550:10907131,13702040 -g1,14550:11223277,13702040 -g1,14550:11539423,13702040 -g1,14550:12171715,13702040 -g1,14550:12487861,13702040 -g1,14550:12804007,13702040 -g1,14550:13120153,13702040 -g1,14550:13752445,13702040 -g1,14550:14068591,13702040 -g1,14550:14384737,13702040 -g1,14550:14700883,13702040 -g1,14550:15017029,13702040 -g1,14550:15333175,13702040 -h1,14550:15649321,13702040:0,0,0 -k1,14550:32583029,13702040:16933708 -g1,14550:32583029,13702040 -) -(1,14550:6797234,14368218:25785795,388497,9436 -h1,14550:6797234,14368218:0,0,0 -g1,14550:7745671,14368218 -g1,14550:8377963,14368218 -g1,14550:8694109,14368218 -g1,14550:9010255,14368218 -g1,14550:9326401,14368218 -g1,14550:9642547,14368218 -g1,14550:9958693,14368218 -g1,14550:10274839,14368218 -g1,14550:10590985,14368218 -g1,14550:10907131,14368218 -g1,14550:11223277,14368218 -g1,14550:11539423,14368218 -g1,14550:12171715,14368218 -g1,14550:12487861,14368218 -g1,14550:12804007,14368218 -g1,14550:13120153,14368218 -g1,14550:13752445,14368218 -g1,14550:14068591,14368218 -g1,14550:14384737,14368218 -g1,14550:14700883,14368218 -g1,14550:15017029,14368218 -g1,14550:15333175,14368218 -h1,14550:15649321,14368218:0,0,0 -k1,14550:32583029,14368218:16933708 -g1,14550:32583029,14368218 -) -(1,14550:6797234,15034396:25785795,388497,9436 -h1,14550:6797234,15034396:0,0,0 -g1,14550:7745671,15034396 -g1,14550:8377963,15034396 -g1,14550:8694109,15034396 -g1,14550:9010255,15034396 -g1,14550:9326401,15034396 -g1,14550:9642547,15034396 -g1,14550:9958693,15034396 -g1,14550:10274839,15034396 -g1,14550:10590985,15034396 -g1,14550:10907131,15034396 -g1,14550:11223277,15034396 -g1,14550:11539423,15034396 -g1,14550:12171715,15034396 -g1,14550:12487861,15034396 -g1,14550:12804007,15034396 -g1,14550:13120153,15034396 -g1,14550:13752445,15034396 -g1,14550:14068591,15034396 -g1,14550:14384737,15034396 -g1,14550:14700883,15034396 -g1,14550:15017029,15034396 -g1,14550:15333175,15034396 -h1,14550:15649321,15034396:0,0,0 -k1,14550:32583029,15034396:16933708 -g1,14550:32583029,15034396 -) -(1,14550:6797234,15700574:25785795,388497,9436 -h1,14550:6797234,15700574:0,0,0 -g1,14550:7745671,15700574 -g1,14550:8377963,15700574 -g1,14550:8694109,15700574 -g1,14550:9010255,15700574 -g1,14550:9326401,15700574 -g1,14550:9642547,15700574 -g1,14550:9958693,15700574 -g1,14550:10274839,15700574 -g1,14550:10590985,15700574 -g1,14550:10907131,15700574 -g1,14550:11223277,15700574 -g1,14550:11539423,15700574 -g1,14550:12171715,15700574 -g1,14550:12487861,15700574 -g1,14550:12804007,15700574 -g1,14550:13120153,15700574 -g1,14550:13752445,15700574 -g1,14550:14068591,15700574 -g1,14550:14384737,15700574 -g1,14550:14700883,15700574 -g1,14550:15017029,15700574 -g1,14550:15333175,15700574 -h1,14550:15649321,15700574:0,0,0 -k1,14550:32583029,15700574:16933708 -g1,14550:32583029,15700574 -) -(1,14550:6797234,16366752:25785795,388497,9436 -h1,14550:6797234,16366752:0,0,0 -g1,14550:7745671,16366752 -g1,14550:8377963,16366752 -g1,14550:8694109,16366752 -g1,14550:9010255,16366752 -g1,14550:9326401,16366752 -g1,14550:9642547,16366752 -g1,14550:9958693,16366752 -g1,14550:10274839,16366752 -g1,14550:10590985,16366752 -g1,14550:10907131,16366752 -g1,14550:11223277,16366752 -g1,14550:11539423,16366752 -g1,14550:12171715,16366752 -g1,14550:12487861,16366752 -g1,14550:12804007,16366752 -g1,14550:13120153,16366752 -g1,14550:13752445,16366752 -g1,14550:14068591,16366752 -g1,14550:14384737,16366752 -g1,14550:14700883,16366752 -g1,14550:15017029,16366752 -g1,14550:15333175,16366752 -h1,14550:15649321,16366752:0,0,0 -k1,14550:32583029,16366752:16933708 -g1,14550:32583029,16366752 -) -(1,14550:6797234,17032930:25785795,388497,9436 -h1,14550:6797234,17032930:0,0,0 -g1,14550:7745671,17032930 -g1,14550:8377963,17032930 -g1,14550:8694109,17032930 -g1,14550:9010255,17032930 -g1,14550:9326401,17032930 -g1,14550:9642547,17032930 -g1,14550:9958693,17032930 -g1,14550:10274839,17032930 -g1,14550:10590985,17032930 -g1,14550:10907131,17032930 -g1,14550:11223277,17032930 -g1,14550:11539423,17032930 -g1,14550:12171715,17032930 -g1,14550:12487861,17032930 -g1,14550:12804007,17032930 -g1,14550:13120153,17032930 -g1,14550:13752445,17032930 -g1,14550:14068591,17032930 -g1,14550:14384737,17032930 -g1,14550:14700883,17032930 -g1,14550:15017029,17032930 -g1,14550:15333175,17032930 -h1,14550:15649321,17032930:0,0,0 -k1,14550:32583029,17032930:16933708 -g1,14550:32583029,17032930 -) -(1,14550:6797234,17699108:25785795,388497,9436 -h1,14550:6797234,17699108:0,0,0 -g1,14550:7745671,17699108 -g1,14550:8377963,17699108 -g1,14550:8694109,17699108 -g1,14550:9010255,17699108 -g1,14550:9326401,17699108 -g1,14550:9642547,17699108 -g1,14550:9958693,17699108 -g1,14550:10274839,17699108 -g1,14550:10590985,17699108 -g1,14550:10907131,17699108 -g1,14550:11223277,17699108 -g1,14550:11539423,17699108 -g1,14550:12171715,17699108 -g1,14550:12487861,17699108 -g1,14550:12804007,17699108 -g1,14550:13120153,17699108 -g1,14550:13752445,17699108 -g1,14550:14068591,17699108 -g1,14550:14384737,17699108 -g1,14550:14700883,17699108 -g1,14550:15017029,17699108 -g1,14550:15333175,17699108 -h1,14550:15649321,17699108:0,0,0 -k1,14550:32583029,17699108:16933708 -g1,14550:32583029,17699108 -) -(1,14550:6797234,18365286:25785795,388497,9436 -h1,14550:6797234,18365286:0,0,0 -g1,14550:7745671,18365286 -g1,14550:8377963,18365286 -g1,14550:8694109,18365286 -g1,14550:9010255,18365286 -g1,14550:9326401,18365286 -g1,14550:9642547,18365286 -g1,14550:9958693,18365286 -g1,14550:10274839,18365286 -g1,14550:10590985,18365286 -g1,14550:10907131,18365286 -g1,14550:11223277,18365286 -g1,14550:11539423,18365286 -g1,14550:12171715,18365286 -g1,14550:12487861,18365286 -g1,14550:12804007,18365286 -g1,14550:13120153,18365286 -g1,14550:13752445,18365286 -g1,14550:14068591,18365286 -g1,14550:14384737,18365286 -g1,14550:14700883,18365286 -g1,14550:15017029,18365286 -g1,14550:15333175,18365286 -h1,14550:15649321,18365286:0,0,0 -k1,14550:32583029,18365286:16933708 -g1,14550:32583029,18365286 -) -(1,14550:6797234,19031464:25785795,404226,107478 -h1,14550:6797234,19031464:0,0,0 -g1,14550:7745671,19031464 -k1,14550:7745671,19031464:0 -h1,14550:12487856,19031464:0,0,0 -k1,14550:32583028,19031464:20095172 -g1,14550:32583028,19031464 -) -(1,14550:6797234,19697642:25785795,404226,76021 -h1,14550:6797234,19697642:0,0,0 -g1,14550:7745671,19697642 -g1,14550:9010254,19697642 -g1,14550:9642546,19697642 -g1,14550:10274838,19697642 -h1,14550:10590984,19697642:0,0,0 -k1,14550:32583028,19697642:21992044 -g1,14550:32583028,19697642 -) -(1,14550:6797234,20363820:25785795,404226,82312 -h1,14550:6797234,20363820:0,0,0 -g1,14550:7745671,20363820 -k1,14550:7745671,20363820:0 -h1,14550:13436293,20363820:0,0,0 -k1,14550:32583029,20363820:19146736 -g1,14550:32583029,20363820 -) -(1,14550:6797234,21029998:25785795,410518,82312 -h1,14550:6797234,21029998:0,0,0 -g1,14550:7745671,21029998 -k1,14550:7745671,21029998:0 -h1,14550:14068584,21029998:0,0,0 -k1,14550:32583028,21029998:18514444 -g1,14550:32583028,21029998 -) -(1,14550:6797234,21696176:25785795,404226,76021 -h1,14550:6797234,21696176:0,0,0 -g1,14550:7745671,21696176 -g1,14550:9010254,21696176 -h1,14550:14384731,21696176:0,0,0 -k1,14550:32583029,21696176:18198298 -g1,14550:32583029,21696176 -) -(1,14550:6797234,22362354:25785795,379060,0 -h1,14550:6797234,22362354:0,0,0 -h1,14550:7429525,22362354:0,0,0 -k1,14550:32583029,22362354:25153504 -g1,14550:32583029,22362354 -) -(1,14550:6797234,23028532:25785795,410518,82312 -h1,14550:6797234,23028532:0,0,0 -g1,14550:7745671,23028532 -k1,14550:7745671,23028532:0 -h1,14550:14068584,23028532:0,0,0 -k1,14550:32583028,23028532:18514444 -g1,14550:32583028,23028532 -) -(1,14550:6797234,23694710:25785795,404226,76021 -h1,14550:6797234,23694710:0,0,0 -g1,14550:7745671,23694710 -g1,14550:9010254,23694710 -h1,14550:14384731,23694710:0,0,0 -k1,14550:32583029,23694710:18198298 -g1,14550:32583029,23694710 -) -] -) -g1,14551:32583029,23770731 -g1,14551:6797234,23770731 -g1,14551:6797234,23770731 -g1,14551:32583029,23770731 -g1,14551:32583029,23770731 -) -h1,14551:6797234,23967339:0,0,0 -(1,14555:6797234,25333115:25785795,513147,134348 -h1,14554:6797234,25333115:983040,0,0 -k1,14554:8552592,25333115:284730 -k1,14554:10825114,25333115:284815 -k1,14554:13197252,25333115:284816 -k1,14554:14429719,25333115:284816 -k1,14554:15070394,25333115:284815 -k1,14554:17342917,25333115:284816 -k1,14554:18575384,25333115:284816 -k1,14554:19216059,25333115:284815 -k1,14554:22124281,25333115:284816 -k1,14554:25065271,25333115:284816 -k1,14554:27438718,25333115:284815 -k1,14554:29117485,25333115:284816 -k1,14554:32583029,25333115:0 -) -(1,14555:6797234,26174603:25785795,426639,7863 -k1,14555:32583029,26174603:24099554 -g1,14555:32583029,26174603 -) -v1,14557:6797234,27365069:0,393216,0 -(1,14580:6797234,38980026:25785795,12008173,196608 -g1,14580:6797234,38980026 -g1,14580:6797234,38980026 -g1,14580:6600626,38980026 -(1,14580:6600626,38980026:0,12008173,196608 -r1,14589:32779637,38980026:26179011,12204781,196608 -k1,14580:6600625,38980026:-26179012 -) -(1,14580:6600626,38980026:26179011,12008173,196608 -[1,14580:6797234,38980026:25785795,11811565,0 -(1,14559:6797234,27578979:25785795,410518,82312 -(1,14558:6797234,27578979:0,0,0 -g1,14558:6797234,27578979 -g1,14558:6797234,27578979 -g1,14558:6469554,27578979 -(1,14558:6469554,27578979:0,0,0 -) -g1,14558:6797234,27578979 -) -k1,14559:6797234,27578979:0 -g1,14559:11539420,27578979 -g1,14559:12171712,27578979 -g1,14559:12804004,27578979 -g1,14559:13752442,27578979 -h1,14559:16913899,27578979:0,0,0 -k1,14559:32583029,27578979:15669130 -g1,14559:32583029,27578979 -) -(1,14579:6797234,28245157:25785795,404226,101187 -(1,14561:6797234,28245157:0,0,0 -g1,14561:6797234,28245157 -g1,14561:6797234,28245157 -g1,14561:6469554,28245157 -(1,14561:6469554,28245157:0,0,0 -) -g1,14561:6797234,28245157 -) -g1,14579:7745671,28245157 -g1,14579:8061817,28245157 -g1,14579:8377963,28245157 -g1,14579:12171711,28245157 -g1,14579:13752440,28245157 -g1,14579:15965460,28245157 -h1,14579:19443062,28245157:0,0,0 -k1,14579:32583029,28245157:13139967 -g1,14579:32583029,28245157 -) -(1,14579:6797234,28911335:25785795,388497,0 -h1,14579:6797234,28911335:0,0,0 -g1,14579:7745671,28911335 -g1,14579:8377963,28911335 -g1,14579:8694109,28911335 -g1,14579:9010255,28911335 -g1,14579:9326401,28911335 -g1,14579:9642547,28911335 -g1,14579:9958693,28911335 -g1,14579:10274839,28911335 -g1,14579:10590985,28911335 -g1,14579:10907131,28911335 -g1,14579:11223277,28911335 -g1,14579:11539423,28911335 -g1,14579:12171715,28911335 -g1,14579:12487861,28911335 -g1,14579:12804007,28911335 -g1,14579:13120153,28911335 -g1,14579:13752445,28911335 -g1,14579:14068591,28911335 -g1,14579:14384737,28911335 -g1,14579:14700883,28911335 -g1,14579:15017029,28911335 -g1,14579:15333175,28911335 -g1,14579:15965467,28911335 -g1,14579:16281613,28911335 -g1,14579:16597759,28911335 -g1,14579:16913905,28911335 -g1,14579:17230051,28911335 -g1,14579:17546197,28911335 -g1,14579:17862343,28911335 -g1,14579:18178489,28911335 -g1,14579:18494635,28911335 -g1,14579:18810781,28911335 -g1,14579:19126927,28911335 -h1,14579:19443073,28911335:0,0,0 -k1,14579:32583029,28911335:13139956 -g1,14579:32583029,28911335 -) -(1,14579:6797234,29577513:25785795,388497,9436 -h1,14579:6797234,29577513:0,0,0 -g1,14579:7745671,29577513 -g1,14579:8377963,29577513 -g1,14579:8694109,29577513 -g1,14579:9010255,29577513 -g1,14579:9326401,29577513 -g1,14579:9642547,29577513 -g1,14579:9958693,29577513 -g1,14579:10274839,29577513 -g1,14579:10590985,29577513 -g1,14579:10907131,29577513 -g1,14579:11223277,29577513 -g1,14579:11539423,29577513 -g1,14579:12171715,29577513 -g1,14579:12487861,29577513 -g1,14579:12804007,29577513 -g1,14579:13120153,29577513 -g1,14579:13752445,29577513 -g1,14579:14068591,29577513 -g1,14579:14384737,29577513 -g1,14579:14700883,29577513 -g1,14579:15017029,29577513 -g1,14579:15333175,29577513 -g1,14579:15965467,29577513 -g1,14579:16281613,29577513 -g1,14579:16597759,29577513 -g1,14579:16913905,29577513 -g1,14579:17230051,29577513 -g1,14579:17546197,29577513 -g1,14579:17862343,29577513 -g1,14579:18178489,29577513 -g1,14579:18494635,29577513 -g1,14579:18810781,29577513 -g1,14579:19126927,29577513 -h1,14579:19443073,29577513:0,0,0 -k1,14579:32583029,29577513:13139956 -g1,14579:32583029,29577513 -) -(1,14579:6797234,30243691:25785795,388497,9436 -h1,14579:6797234,30243691:0,0,0 -g1,14579:7745671,30243691 -g1,14579:8377963,30243691 -g1,14579:8694109,30243691 -g1,14579:9010255,30243691 -g1,14579:9326401,30243691 -g1,14579:9642547,30243691 -g1,14579:9958693,30243691 -g1,14579:10274839,30243691 -g1,14579:10590985,30243691 -g1,14579:10907131,30243691 -g1,14579:11223277,30243691 -g1,14579:11539423,30243691 -g1,14579:12171715,30243691 -g1,14579:12487861,30243691 -g1,14579:12804007,30243691 -g1,14579:13120153,30243691 -g1,14579:13752445,30243691 -g1,14579:14068591,30243691 -g1,14579:14384737,30243691 -g1,14579:14700883,30243691 -g1,14579:15017029,30243691 -g1,14579:15333175,30243691 -g1,14579:15965467,30243691 -g1,14579:16281613,30243691 -g1,14579:16597759,30243691 -g1,14579:16913905,30243691 -g1,14579:17230051,30243691 -g1,14579:17546197,30243691 -g1,14579:17862343,30243691 -g1,14579:18178489,30243691 -g1,14579:18494635,30243691 -g1,14579:18810781,30243691 -g1,14579:19126927,30243691 -h1,14579:19443073,30243691:0,0,0 -k1,14579:32583029,30243691:13139956 -g1,14579:32583029,30243691 -) -(1,14579:6797234,30909869:25785795,388497,9436 -h1,14579:6797234,30909869:0,0,0 -g1,14579:7745671,30909869 -g1,14579:8377963,30909869 -g1,14579:8694109,30909869 -g1,14579:9010255,30909869 -g1,14579:9326401,30909869 -g1,14579:9642547,30909869 -g1,14579:9958693,30909869 -g1,14579:10274839,30909869 -g1,14579:10590985,30909869 -g1,14579:10907131,30909869 -g1,14579:11223277,30909869 -g1,14579:11539423,30909869 -g1,14579:12171715,30909869 -g1,14579:12487861,30909869 -g1,14579:12804007,30909869 -g1,14579:13120153,30909869 -g1,14579:13752445,30909869 -g1,14579:14068591,30909869 -g1,14579:14384737,30909869 -g1,14579:14700883,30909869 -g1,14579:15017029,30909869 -g1,14579:15333175,30909869 -g1,14579:15965467,30909869 -g1,14579:16281613,30909869 -g1,14579:16597759,30909869 -g1,14579:16913905,30909869 -g1,14579:17230051,30909869 -g1,14579:17546197,30909869 -g1,14579:17862343,30909869 -g1,14579:18178489,30909869 -g1,14579:18494635,30909869 -g1,14579:18810781,30909869 -g1,14579:19126927,30909869 -h1,14579:19443073,30909869:0,0,0 -k1,14579:32583029,30909869:13139956 -g1,14579:32583029,30909869 -) -(1,14579:6797234,31576047:25785795,388497,9436 -h1,14579:6797234,31576047:0,0,0 -g1,14579:7745671,31576047 -g1,14579:8377963,31576047 -g1,14579:8694109,31576047 -g1,14579:9010255,31576047 -g1,14579:9326401,31576047 -g1,14579:9642547,31576047 -g1,14579:9958693,31576047 -g1,14579:10274839,31576047 -g1,14579:10590985,31576047 -g1,14579:10907131,31576047 -g1,14579:11223277,31576047 -g1,14579:11539423,31576047 -g1,14579:12171715,31576047 -g1,14579:12487861,31576047 -g1,14579:12804007,31576047 -g1,14579:13120153,31576047 -g1,14579:13752445,31576047 -g1,14579:14068591,31576047 -g1,14579:14384737,31576047 -g1,14579:14700883,31576047 -g1,14579:15017029,31576047 -g1,14579:15333175,31576047 -g1,14579:15965467,31576047 -g1,14579:16281613,31576047 -g1,14579:16597759,31576047 -g1,14579:16913905,31576047 -g1,14579:17230051,31576047 -g1,14579:17546197,31576047 -g1,14579:17862343,31576047 -g1,14579:18178489,31576047 -g1,14579:18494635,31576047 -g1,14579:18810781,31576047 -g1,14579:19126927,31576047 -h1,14579:19443073,31576047:0,0,0 -k1,14579:32583029,31576047:13139956 -g1,14579:32583029,31576047 -) -(1,14579:6797234,32242225:25785795,388497,9436 -h1,14579:6797234,32242225:0,0,0 -g1,14579:7745671,32242225 -g1,14579:8377963,32242225 -g1,14579:8694109,32242225 -g1,14579:9010255,32242225 -g1,14579:9326401,32242225 -g1,14579:9642547,32242225 -g1,14579:9958693,32242225 -g1,14579:10274839,32242225 -g1,14579:10590985,32242225 -g1,14579:10907131,32242225 -g1,14579:11223277,32242225 -g1,14579:11539423,32242225 -g1,14579:12171715,32242225 -g1,14579:12487861,32242225 -g1,14579:12804007,32242225 -g1,14579:13120153,32242225 -g1,14579:13752445,32242225 -g1,14579:14068591,32242225 -g1,14579:14384737,32242225 -g1,14579:14700883,32242225 -g1,14579:15017029,32242225 -g1,14579:15333175,32242225 -g1,14579:15965467,32242225 -g1,14579:16281613,32242225 -g1,14579:16597759,32242225 -g1,14579:16913905,32242225 -g1,14579:17230051,32242225 -g1,14579:17546197,32242225 -g1,14579:17862343,32242225 -g1,14579:18178489,32242225 -g1,14579:18494635,32242225 -g1,14579:18810781,32242225 -g1,14579:19126927,32242225 -h1,14579:19443073,32242225:0,0,0 -k1,14579:32583029,32242225:13139956 -g1,14579:32583029,32242225 -) -(1,14579:6797234,32908403:25785795,388497,9436 -h1,14579:6797234,32908403:0,0,0 -g1,14579:7745671,32908403 -g1,14579:8377963,32908403 -g1,14579:8694109,32908403 -g1,14579:9010255,32908403 -g1,14579:9326401,32908403 -g1,14579:9642547,32908403 -g1,14579:9958693,32908403 -g1,14579:10274839,32908403 -g1,14579:10590985,32908403 -g1,14579:10907131,32908403 -g1,14579:11223277,32908403 -g1,14579:11539423,32908403 -g1,14579:12171715,32908403 -g1,14579:12487861,32908403 -g1,14579:12804007,32908403 -g1,14579:13120153,32908403 -g1,14579:13752445,32908403 -g1,14579:14068591,32908403 -g1,14579:14384737,32908403 -g1,14579:14700883,32908403 -g1,14579:15017029,32908403 -g1,14579:15333175,32908403 -g1,14579:15965467,32908403 -g1,14579:16281613,32908403 -g1,14579:16597759,32908403 -g1,14579:16913905,32908403 -g1,14579:17230051,32908403 -g1,14579:17546197,32908403 -g1,14579:17862343,32908403 -g1,14579:18178489,32908403 -g1,14579:18494635,32908403 -g1,14579:18810781,32908403 -g1,14579:19126927,32908403 -h1,14579:19443073,32908403:0,0,0 -k1,14579:32583029,32908403:13139956 -g1,14579:32583029,32908403 -) -(1,14579:6797234,33574581:25785795,388497,9436 -h1,14579:6797234,33574581:0,0,0 -g1,14579:7745671,33574581 -g1,14579:8377963,33574581 -g1,14579:8694109,33574581 -g1,14579:9010255,33574581 -g1,14579:9326401,33574581 -g1,14579:9642547,33574581 -g1,14579:9958693,33574581 -g1,14579:10274839,33574581 -g1,14579:10590985,33574581 -g1,14579:10907131,33574581 -g1,14579:11223277,33574581 -g1,14579:11539423,33574581 -g1,14579:12171715,33574581 -g1,14579:12487861,33574581 -g1,14579:12804007,33574581 -g1,14579:13120153,33574581 -g1,14579:13752445,33574581 -g1,14579:14068591,33574581 -g1,14579:14384737,33574581 -g1,14579:14700883,33574581 -g1,14579:15017029,33574581 -g1,14579:15333175,33574581 -g1,14579:15965467,33574581 -g1,14579:16281613,33574581 -g1,14579:16597759,33574581 -g1,14579:16913905,33574581 -g1,14579:17230051,33574581 -g1,14579:17546197,33574581 -g1,14579:17862343,33574581 -g1,14579:18178489,33574581 -g1,14579:18494635,33574581 -g1,14579:18810781,33574581 -g1,14579:19126927,33574581 -h1,14579:19443073,33574581:0,0,0 -k1,14579:32583029,33574581:13139956 -g1,14579:32583029,33574581 -) -(1,14579:6797234,34240759:25785795,404226,107478 -h1,14579:6797234,34240759:0,0,0 -g1,14579:7745671,34240759 -k1,14579:7745671,34240759:0 -h1,14579:12487856,34240759:0,0,0 -k1,14579:32583028,34240759:20095172 -g1,14579:32583028,34240759 -) -(1,14579:6797234,34906937:25785795,404226,76021 -h1,14579:6797234,34906937:0,0,0 -g1,14579:7745671,34906937 -g1,14579:9010254,34906937 -g1,14579:9642546,34906937 -g1,14579:10274838,34906937 -g1,14579:10907130,34906937 -h1,14579:11223276,34906937:0,0,0 -k1,14579:32583028,34906937:21359752 -g1,14579:32583028,34906937 -) -(1,14579:6797234,35573115:25785795,404226,82312 -h1,14579:6797234,35573115:0,0,0 -g1,14579:7745671,35573115 -k1,14579:7745671,35573115:0 -h1,14579:13436293,35573115:0,0,0 -k1,14579:32583029,35573115:19146736 -g1,14579:32583029,35573115 -) -(1,14579:6797234,36239293:25785795,410518,82312 -h1,14579:6797234,36239293:0,0,0 -g1,14579:7745671,36239293 -k1,14579:7745671,36239293:0 -h1,14579:14068584,36239293:0,0,0 -k1,14579:32583028,36239293:18514444 -g1,14579:32583028,36239293 -) -(1,14579:6797234,36905471:25785795,404226,76021 -h1,14579:6797234,36905471:0,0,0 -g1,14579:7745671,36905471 -g1,14579:9010254,36905471 -h1,14579:14384731,36905471:0,0,0 -k1,14579:32583029,36905471:18198298 -g1,14579:32583029,36905471 -) -(1,14579:6797234,37571649:25785795,379060,0 -h1,14579:6797234,37571649:0,0,0 -h1,14579:7429525,37571649:0,0,0 -k1,14579:32583029,37571649:25153504 -g1,14579:32583029,37571649 -) -(1,14579:6797234,38237827:25785795,410518,82312 -h1,14579:6797234,38237827:0,0,0 -g1,14579:7745671,38237827 -k1,14579:7745671,38237827:0 -h1,14579:14068584,38237827:0,0,0 -k1,14579:32583028,38237827:18514444 -g1,14579:32583028,38237827 -) -(1,14579:6797234,38904005:25785795,404226,76021 -h1,14579:6797234,38904005:0,0,0 -g1,14579:7745671,38904005 -g1,14579:9010254,38904005 -h1,14579:14384731,38904005:0,0,0 -k1,14579:32583029,38904005:18198298 -g1,14579:32583029,38904005 -) -] -) -g1,14580:32583029,38980026 -g1,14580:6797234,38980026 -g1,14580:6797234,38980026 -g1,14580:32583029,38980026 -g1,14580:32583029,38980026 -) -h1,14580:6797234,39176634:0,0,0 -] -g1,14583:32583029,39700922 -) -h1,14583:6630773,39700922:0,0,0 -] -(1,14589:32583029,45706769:0,0,0 -g1,14589:32583029,45706769 -) -) -] -(1,14589:6630773,47279633:25952256,0,0 -h1,14589:6630773,47279633:25952256,0,0 -) -] -(1,14589:4262630,4025873:0,0,0 -[1,14589:-473656,4025873:0,0,0 -(1,14589:-473656,-710413:0,0,0 -(1,14589:-473656,-710413:0,0,0 -g1,14589:-473656,-710413 -) -g1,14589:-473656,-710413 -) -] ) ] -!28705 -}246 +[1,14109:6630773,45706769:25952256,40108032,0 +(1,14109:6630773,45706769:25952256,40108032,0 +(1,14109:6630773,45706769:0,0,0 +g1,14109:6630773,45706769 +) +[1,14109:6630773,45706769:25952256,40108032,0 +(1,14037:6630773,6254097:25952256,513147,126483 +k1,14036:10213189,6254097:223696 +k1,14036:14047919,6254097:223696 +k1,14036:16559478,6254097:223697 +k1,14036:20080290,6254097:223696 +k1,14036:20986871,6254097:223696 +k1,14036:22229652,6254097:223696 +k1,14036:24441710,6254097:223696 +k1,14036:25324698,6254097:223696 +k1,14036:26567480,6254097:223697 +k1,14036:28285397,6254097:223696 +k1,14036:29898456,6254097:223696 +k1,14036:31635378,6254097:223696 +k1,14036:32583029,6254097:0 +) +(1,14037:6630773,7119177:25952256,513147,134348 +k1,14036:8921771,7119177:182705 +k1,14036:10301163,7119177:182705 +k1,14036:11869954,7119177:182705 +k1,14036:12711951,7119177:182705 +k1,14036:13582129,7119177:182705 +k1,14036:15259055,7119177:182705 +k1,14036:16124644,7119177:182704 +k1,14036:17373620,7119177:182705 +k1,14036:19069551,7119177:182705 +k1,14036:20199907,7119177:182705 +k1,14036:23575526,7119177:182705 +k1,14036:27523930,7119177:182705 +k1,14036:30548276,7119177:182705 +k1,14036:31835263,7119177:182705 +k1,14036:32583029,7119177:0 +) +(1,14037:6630773,7984257:25952256,505283,134348 +g1,14036:10091073,7984257 +g1,14036:12848828,7984257 +g1,14036:16328789,7984257 +(1,14036:16328789,7984257:0,452978,115847 +r1,14109:19852461,7984257:3523672,568825,115847 +k1,14036:16328789,7984257:-3523672 +) +(1,14036:16328789,7984257:3523672,452978,115847 +k1,14036:16328789,7984257:3277 +h1,14036:19849184,7984257:0,411205,112570 +) +k1,14037:32583029,7984257:12556898 +g1,14037:32583029,7984257 +) +(1,14060:6630773,15690449:25952256,6850948,0 +k1,14060:7763884,15690449:1133111 +(1,14038:7763884,15690449:0,0,0 +g1,14038:7763884,15690449 +g1,14038:7763884,15690449 +g1,14038:7436204,15690449 +(1,14038:7436204,15690449:0,0,0 +) +g1,14038:7763884,15690449 +) +(1,14058:7763884,15690449:23686035,6850948,0 +g1,14058:11035688,15690449 +(1,14058:11035688,9467955:0,0,0 +(1,14058:11035688,9467955:0,0,0 +g1,14040:11035688,9467955 +(1,14041:11035688,9467955:0,0,0 +(1,14041:11035688,9467955:0,0,0 +g1,14041:11035688,9467955 +g1,14041:11035688,9467955 +g1,14041:11035688,9467955 +g1,14041:11035688,9467955 +g1,14041:11035688,9467955 +(1,14041:11035688,9467955:0,0,0 +(1,14041:11035688,9467955:4940249,454754,104590 +(1,14041:11035688,9467955:4940249,454754,104590 +g1,14041:12966772,9467955 +$1,14041:12966772,9467955 +$1,14041:13574291,9467955 +g1,14041:13753598,9467955 +(1,14041:13753598,9467955:0,414307,104590 +r1,14109:15975937,9467955:2222339,518897,104590 +k1,14041:13753598,9467955:-2222339 +) +(1,14041:13753598,9467955:2222339,414307,104590 +k1,14041:13753598,9467955:3277 +h1,14041:15972660,9467955:0,370085,101313 +) +) +g1,14041:15975937,9467955 +) +) +g1,14041:11035688,9467955 +g1,14041:11035688,9467955 +) +) +g1,14041:11035688,9467955 +(1,14042:11035688,9467955:0,0,0 +(1,14042:11035688,9467955:0,0,0 +g1,14042:11035688,9467955 +g1,14042:11035688,9467955 +g1,14042:11035688,9467955 +g1,14042:11035688,9467955 +g1,14042:11035688,9467955 +(1,14042:11035688,9467955:0,0,0 +(1,14042:11035688,9467955:5813184,454754,104590 +(1,14042:11035688,9467955:5813184,454754,104590 +g1,14042:14789329,9467955 +$1,14042:14789329,9467955 +$1,14042:15396848,9467955 +g1,14042:15576155,9467955 +(1,14042:15576155,9467955:0,408008,104590 +r1,14109:16848872,9467955:1272717,512598,104590 +k1,14042:15576155,9467955:-1272717 +) +(1,14042:15576155,9467955:1272717,408008,104590 +k1,14042:15576155,9467955:3277 +h1,14042:16845595,9467955:0,370085,101313 +) +) +g1,14042:16848872,9467955 +) +) +g1,14042:11035688,9467955 +g1,14042:11035688,9467955 +) +) +g1,14042:11035688,9467955 +(1,14043:11035688,9467955:0,0,0 +(1,14043:11035688,9467955:0,0,0 +g1,14043:11035688,9467955 +g1,14043:11035688,9467955 +g1,14043:11035688,9467955 +g1,14043:11035688,9467955 +g1,14043:11035688,9467955 +(1,14043:11035688,9467955:0,0,0 +(1,14043:11035688,9467955:5356075,454754,120913 +(1,14043:11035688,9467955:5356075,454754,120913 +g1,14043:13382598,9467955 +$1,14043:13382598,9467955 +$1,14043:13990117,9467955 +g1,14043:14169424,9467955 +(1,14043:14169424,9467955:0,408008,110889 +r1,14109:16391763,9467955:2222339,518897,110889 +k1,14043:14169424,9467955:-2222339 +) +(1,14043:14169424,9467955:2222339,408008,110889 +k1,14043:14169424,9467955:3277 +h1,14043:16388486,9467955:0,370085,101313 +) +) +g1,14043:16391763,9467955 +) +) +g1,14043:11035688,9467955 +g1,14043:11035688,9467955 +) +) +g1,14043:11035688,9467955 +(1,14044:11035688,9467955:0,0,0 +(1,14044:11035688,9467955:0,0,0 +g1,14044:11035688,9467955 +g1,14044:11035688,9467955 +g1,14044:11035688,9467955 +g1,14044:11035688,9467955 +g1,14044:11035688,9467955 +(1,14044:11035688,9467955:0,0,0 +(1,14044:11035688,9467955:6124221,454754,104590 +(1,14044:11035688,9467955:6124221,454754,104590 +g1,14044:14467285,9467955 +$1,14044:14467285,9467955 +$1,14044:15074804,9467955 +g1,14044:15254111,9467955 +(1,14044:15254111,9467955:0,414307,104590 +r1,14109:17159909,9467955:1905798,518897,104590 +k1,14044:15254111,9467955:-1905798 +) +(1,14044:15254111,9467955:1905798,414307,104590 +k1,14044:15254111,9467955:3277 +h1,14044:17156632,9467955:0,370085,101313 +) +) +g1,14044:17159909,9467955 +) +) +g1,14044:11035688,9467955 +g1,14044:11035688,9467955 +) +) +(1,14045:11035688,9467955:0,0,0 +(1,14045:11035688,9467955:0,0,0 +g1,14045:11035688,9467955 +g1,14045:11035688,9467955 +g1,14045:11035688,9467955 +g1,14045:11035688,9467955 +g1,14045:11035688,9467955 +(1,14045:11035688,9467955:0,0,0 +(1,14045:11035688,9467955:2222339,408008,104590 +(1,14045:11035688,9467955:2222339,408008,104590 +(1,14045:11035688,9467955:0,408008,104590 +r1,14109:13258027,9467955:2222339,512598,104590 +k1,14045:11035688,9467955:-2222339 +) +(1,14045:11035688,9467955:2222339,408008,104590 +k1,14045:11035688,9467955:3277 +h1,14045:13254750,9467955:0,370085,101313 +) +) +g1,14045:13258027,9467955 +) +) +g1,14045:11035688,9467955 +g1,14045:11035688,9467955 +) +) +g1,14045:11035688,9467955 +(1,14046:11035688,9467955:0,0,0 +(1,14046:11035688,9467955:0,0,0 +g1,14046:11035688,9467955 +g1,14046:11035688,9467955 +g1,14046:11035688,9467955 +g1,14046:11035688,9467955 +g1,14046:11035688,9467955 +(1,14046:11035688,9467955:0,0,0 +(1,14046:11035688,9467955:3499698,454754,120913 +(1,14046:11035688,9467955:3499698,454754,120913 +(1,14046:11035688,9467955:0,408008,104590 +r1,14109:12624945,9467955:1589257,512598,104590 +k1,14046:11035688,9467955:-1589257 +) +(1,14046:11035688,9467955:1589257,408008,104590 +k1,14046:11035688,9467955:3277 +h1,14046:12621668,9467955:0,370085,101313 +) +g1,14046:12804252,9467955 +) +g1,14046:14535386,9467955 +) +) +g1,14046:11035688,9467955 +g1,14046:11035688,9467955 +) +) +g1,14046:11035688,9467955 +(1,14047:11035688,9467955:0,0,0 +(1,14047:11035688,9467955:0,0,0 +g1,14047:11035688,9467955 +g1,14047:11035688,9467955 +g1,14047:11035688,9467955 +g1,14047:11035688,9467955 +g1,14047:11035688,9467955 +(1,14047:11035688,9467955:0,0,0 +(1,14047:11035688,9467955:2855420,408008,104590 +(1,14047:11035688,9467955:2855420,408008,104590 +(1,14047:11035688,9467955:0,408008,104590 +r1,14109:13891108,9467955:2855420,512598,104590 +k1,14047:11035688,9467955:-2855420 +) +(1,14047:11035688,9467955:2855420,408008,104590 +k1,14047:11035688,9467955:3277 +h1,14047:13887831,9467955:0,370085,101313 +) +) +g1,14047:13891108,9467955 +) +) +g1,14047:11035688,9467955 +g1,14047:11035688,9467955 +) +) +g1,14047:11035688,9467955 +(1,14048:11035688,9467955:0,0,0 +(1,14048:11035688,9467955:0,0,0 +g1,14048:11035688,9467955 +g1,14048:11035688,9467955 +g1,14048:11035688,9467955 +g1,14048:11035688,9467955 +g1,14048:11035688,9467955 +(1,14048:11035688,9467955:0,0,0 +(1,14048:11035688,9467955:2538879,414307,104590 +(1,14048:11035688,9467955:2538879,414307,104590 +(1,14048:11035688,9467955:0,414307,104590 +r1,14109:13574567,9467955:2538879,518897,104590 +k1,14048:11035688,9467955:-2538879 +) +(1,14048:11035688,9467955:2538879,414307,104590 +k1,14048:11035688,9467955:3277 +h1,14048:13571290,9467955:0,370085,101313 +) +) +g1,14048:13574567,9467955 +) +) +g1,14048:11035688,9467955 +g1,14048:11035688,9467955 +) +) +(1,14049:11035688,9467955:0,0,0 +(1,14049:11035688,9467955:0,0,0 +g1,14049:11035688,9467955 +g1,14049:11035688,9467955 +g1,14049:11035688,9467955 +g1,14049:11035688,9467955 +g1,14049:11035688,9467955 +(1,14049:11035688,9467955:0,0,0 +(1,14049:11035688,9467955:3488501,408008,104590 +(1,14049:11035688,9467955:3488501,408008,104590 +(1,14049:11035688,9467955:0,408008,104590 +r1,14109:14524189,9467955:3488501,512598,104590 +k1,14049:11035688,9467955:-3488501 +) +(1,14049:11035688,9467955:3488501,408008,104590 +k1,14049:11035688,9467955:3277 +h1,14049:14520912,9467955:0,370085,101313 +) +) +g1,14049:14524189,9467955 +) +) +g1,14049:11035688,9467955 +g1,14049:11035688,9467955 +) +) +g1,14049:11035688,9467955 +g1,14050:11035688,9467955 +g1,14050:11035688,9467955 +g1,14050:11035688,9467955 +g1,14050:11035688,9467955 +g1,14050:11035688,9467955 +g1,14050:11035688,9467955 +g1,14051:11035688,9467955 +g1,14051:11035688,9467955 +g1,14051:11035688,9467955 +g1,14051:11035688,9467955 +g1,14051:11035688,9467955 +g1,14051:11035688,9467955 +g1,14052:11035688,9467955 +g1,14052:11035688,9467955 +g1,14052:11035688,9467955 +g1,14052:11035688,9467955 +g1,14052:11035688,9467955 +g1,14052:11035688,9467955 +g1,14053:11035688,9467955 +g1,14053:11035688,9467955 +g1,14053:11035688,9467955 +g1,14053:11035688,9467955 +g1,14053:11035688,9467955 +g1,14053:11035688,9467955 +g1,14054:11035688,9467955 +g1,14054:11035688,9467955 +g1,14054:11035688,9467955 +g1,14054:11035688,9467955 +g1,14054:11035688,9467955 +g1,14054:11035688,9467955 +g1,14055:11035688,9467955 +g1,14055:11035688,9467955 +g1,14055:11035688,9467955 +g1,14055:11035688,9467955 +g1,14055:11035688,9467955 +g1,14055:11035688,9467955 +g1,14056:11035688,9467955 +g1,14056:11035688,9467955 +g1,14056:11035688,9467955 +g1,14056:11035688,9467955 +g1,14056:11035688,9467955 +g1,14056:11035688,9467955 +g1,14057:11035688,9467955 +g1,14057:11035688,9467955 +g1,14057:11035688,9467955 +g1,14057:11035688,9467955 +g1,14057:11035688,9467955 +g1,14057:11035688,9467955 +g1,14058:11035688,9467955 +g1,14058:11035688,9467955 +) +g1,14058:11035688,9467955 +) +) +g1,14060:31449919,15690449 +k1,14060:32583029,15690449:1133110 +) +v1,14063:6630773,17030664:0,393216,0 +(1,14076:6630773,22200066:25952256,5562618,196608 +g1,14076:6630773,22200066 +g1,14076:6630773,22200066 +g1,14076:6434165,22200066 +(1,14076:6434165,22200066:0,5562618,196608 +r1,14109:32779637,22200066:26345472,5759226,196608 +k1,14076:6434165,22200066:-26345472 +) +(1,14076:6434165,22200066:26345472,5562618,196608 +[1,14076:6630773,22200066:25952256,5366010,0 +(1,14065:6630773,17265101:25952256,431045,106246 +(1,14064:6630773,17265101:0,0,0 +g1,14064:6630773,17265101 +g1,14064:6630773,17265101 +g1,14064:6303093,17265101 +(1,14064:6303093,17265101:0,0,0 +) +g1,14064:6630773,17265101 +) +g1,14065:8290543,17265101 +g1,14065:9286405,17265101 +g1,14065:12937899,17265101 +g1,14065:13601807,17265101 +g1,14065:15925485,17265101 +g1,14065:17585255,17265101 +g1,14065:18249163,17265101 +h1,14065:19908933,17265101:0,0,0 +k1,14065:32583029,17265101:12674096 +g1,14065:32583029,17265101 +) +(1,14066:6630773,17949956:25952256,431045,106246 +h1,14066:6630773,17949956:0,0,0 +k1,14066:6630773,17949956:0 +h1,14066:10282267,17949956:0,0,0 +k1,14066:32583029,17949956:22300762 +g1,14066:32583029,17949956 +) +(1,14075:6630773,18765883:25952256,424439,8257 +(1,14068:6630773,18765883:0,0,0 +g1,14068:6630773,18765883 +g1,14068:6630773,18765883 +g1,14068:6303093,18765883 +(1,14068:6303093,18765883:0,0,0 +) +g1,14068:6630773,18765883 +) +g1,14075:7626635,18765883 +h1,14075:9286405,18765883:0,0,0 +k1,14075:32583029,18765883:23296624 +g1,14075:32583029,18765883 +) +(1,14075:6630773,19450738:25952256,431045,106246 +h1,14075:6630773,19450738:0,0,0 +g1,14075:7626635,19450738 +g1,14075:12273990,19450738 +g1,14075:12937898,19450738 +g1,14075:14597668,19450738 +g1,14075:15261576,19450738 +g1,14075:17585254,19450738 +g1,14075:19245024,19450738 +g1,14075:19908932,19450738 +h1,14075:21568702,19450738:0,0,0 +k1,14075:32583029,19450738:11014327 +g1,14075:32583029,19450738 +) +(1,14075:6630773,20135593:25952256,398014,0 +h1,14075:6630773,20135593:0,0,0 +h1,14075:7294681,20135593:0,0,0 +k1,14075:32583029,20135593:25288348 +g1,14075:32583029,20135593 +) +(1,14075:6630773,20820448:25952256,431045,9908 +h1,14075:6630773,20820448:0,0,0 +g1,14075:7626635,20820448 +g1,14075:9950313,20820448 +g1,14075:10946175,20820448 +g1,14075:15593530,20820448 +h1,14075:16257438,20820448:0,0,0 +k1,14075:32583029,20820448:16325591 +g1,14075:32583029,20820448 +) +(1,14075:6630773,21505303:25952256,431045,106246 +h1,14075:6630773,21505303:0,0,0 +g1,14075:7626635,21505303 +g1,14075:11278128,21505303 +g1,14075:13601806,21505303 +g1,14075:14597668,21505303 +g1,14075:18581115,21505303 +h1,14075:19908931,21505303:0,0,0 +k1,14075:32583029,21505303:12674098 +g1,14075:32583029,21505303 +) +(1,14075:6630773,22190158:25952256,424439,9908 +h1,14075:6630773,22190158:0,0,0 +g1,14075:7626635,22190158 +g1,14075:10614220,22190158 +g1,14075:13601805,22190158 +g1,14075:15925483,22190158 +h1,14075:17585253,22190158:0,0,0 +k1,14075:32583029,22190158:14997776 +g1,14075:32583029,22190158 +) +] +) +g1,14076:32583029,22200066 +g1,14076:6630773,22200066 +g1,14076:6630773,22200066 +g1,14076:32583029,22200066 +g1,14076:32583029,22200066 +) +h1,14076:6630773,22396674:0,0,0 +v1,14080:6630773,23261754:0,393216,0 +(1,14081:6630773,28029800:25952256,5161262,0 +g1,14081:6630773,28029800 +g1,14081:6237557,28029800 +r1,14109:6368629,28029800:131072,5161262,0 +g1,14081:6567858,28029800 +g1,14081:6764466,28029800 +[1,14081:6764466,28029800:25818563,5161262,0 +(1,14081:6764466,23570052:25818563,701514,196608 +(1,14080:6764466,23570052:0,701514,196608 +r1,14109:8010564,23570052:1246098,898122,196608 +k1,14080:6764466,23570052:-1246098 +) +(1,14080:6764466,23570052:1246098,701514,196608 +) +k1,14080:8213762,23570052:203198 +k1,14080:8541442,23570052:327680 +k1,14080:11001044,23570052:203197 +k1,14080:13690023,23570052:203198 +k1,14080:17555372,23570052:203197 +k1,14080:18409998,23570052:203198 +k1,14080:20002558,23570052:203197 +k1,14080:22934020,23570052:203198 +k1,14080:25022688,23570052:203197 +k1,14080:26041154,23570052:203198 +k1,14080:28674426,23570052:203197 +k1,14080:31923737,23570052:203198 +k1,14080:32583029,23570052:0 +) +(1,14081:6764466,24435132:25818563,513147,134348 +k1,14080:9251885,24435132:212664 +k1,14080:13202067,24435132:212664 +k1,14080:14606177,24435132:212665 +k1,14080:16591590,24435132:212664 +k1,14080:17795814,24435132:212664 +k1,14080:19863147,24435132:212664 +k1,14080:20885182,24435132:212665 +k1,14080:22116931,24435132:212664 +k1,14080:23422080,24435132:212664 +k1,14080:24294036,24435132:212664 +k1,14080:26756551,24435132:212664 +k1,14080:27620644,24435132:212665 +k1,14080:30502589,24435132:212664 +k1,14080:31734338,24435132:212664 +k1,14081:32583029,24435132:0 +) +(1,14081:6764466,25300212:25818563,505283,134348 +k1,14080:9503016,25300212:170194 +k1,14080:10864655,25300212:170194 +k1,14080:12501545,25300212:170194 +k1,14080:15499618,25300212:170194 +k1,14080:17960951,25300212:170194 +k1,14080:19770200,25300212:170194 +k1,14080:20931954,25300212:170194 +k1,14080:23663295,25300212:170194 +k1,14080:26151497,25300212:170194 +k1,14080:27815257,25300212:170194 +k1,14080:28671613,25300212:170194 +k1,14080:30372699,25300212:170165 +k1,14080:31734338,25300212:170194 +k1,14081:32583029,25300212:0 +) +(1,14081:6764466,26165292:25818563,513147,126483 +k1,14080:8513446,26165292:163009 +k1,14080:11461080,26165292:163009 +k1,14080:12856166,26165292:163009 +k1,14080:14835178,26165292:163009 +k1,14080:16799116,26165292:163009 +k1,14080:18153571,26165292:163010 +k1,14080:21573064,26165292:163009 +k1,14080:23125436,26165292:163009 +k1,14080:25843038,26165292:163009 +k1,14080:27770240,26165292:162973 +k1,14080:30608429,26165292:163009 +k1,14080:32583029,26165292:0 +) +(1,14081:6764466,27030372:25818563,513147,126483 +k1,14080:8801271,27030372:162475 +k1,14080:11748370,27030372:162474 +k1,14080:12902405,27030372:162475 +k1,14080:15430729,27030372:162474 +k1,14080:16612289,27030372:162475 +k1,14080:18601251,27030372:162474 +k1,14080:19423018,27030372:162475 +k1,14080:20788734,27030372:162475 +k1,14080:22533247,27030372:162474 +k1,14080:23887167,27030372:162475 +k1,14080:28251154,27030372:162474 +k1,14080:29029667,27030372:162475 +k1,14080:32583029,27030372:0 +) +(1,14081:6764466,27895452:25818563,505283,134348 +g1,14080:10036023,27895452 +k1,14081:32583029,27895452:19462882 +g1,14081:32583029,27895452 +) +] +g1,14081:32583029,28029800 +) +h1,14081:6630773,28029800:0,0,0 +(1,14083:6630773,30860960:25952256,32768,229376 +(1,14083:6630773,30860960:0,32768,229376 +(1,14083:6630773,30860960:5505024,32768,229376 +r1,14109:12135797,30860960:5505024,262144,229376 +) +k1,14083:6630773,30860960:-5505024 +) +(1,14083:6630773,30860960:25952256,32768,0 +r1,14109:32583029,30860960:25952256,32768,0 +) +) +(1,14083:6630773,32492812:25952256,615776,9436 +(1,14083:6630773,32492812:2464678,573309,0 +g1,14083:6630773,32492812 +g1,14083:9095451,32492812 +) +g1,14083:11747300,32492812 +k1,14083:32583029,32492812:17280270 +g1,14083:32583029,32492812 +) +(1,14086:6630773,33751108:25952256,513147,134348 +k1,14085:8805199,33751108:243080 +k1,14085:12095702,33751108:243079 +k1,14085:13832348,33751108:243080 +k1,14085:14761589,33751108:243079 +(1,14085:14761589,33751108:0,414482,115847 +r1,14109:16526703,33751108:1765114,530329,115847 +k1,14085:14761589,33751108:-1765114 +) +(1,14085:14761589,33751108:1765114,414482,115847 +g1,14085:15468290,33751108 +g1,14085:15820002,33751108 +g1,14085:16171714,33751108 +h1,14085:16523426,33751108:0,411205,112570 +) +k1,14085:16769783,33751108:243080 +k1,14085:18004422,33751108:243079 +k1,14085:20304022,33751108:243080 +k1,14085:22060327,33751108:243079 +k1,14085:22919445,33751108:243080 +k1,14085:23751037,33751108:243079 +k1,14085:25460813,33751108:243080 +k1,14085:26319930,33751108:243079 +k1,14085:28550717,33751108:243080 +k1,14085:30728420,33751108:243080 +k1,14085:31657661,33751108:243079 +k1,14086:32583029,33751108:0 +) +(1,14086:6630773,34616188:25952256,513147,134348 +k1,14085:9861143,34616188:237341 +k1,14085:10714522,34616188:237341 +k1,14085:13706341,34616188:237341 +k1,14085:16552671,34616188:237342 +k1,14085:17449304,34616188:237341 +k1,14085:18889886,34616188:237341 +k1,14085:21544850,34616188:237341 +k1,14085:22973636,34616188:237341 +k1,14085:23827015,34616188:237341 +k1,14085:26588804,34616188:237342 +k1,14085:28524183,34616188:237341 +k1,14085:30496917,34616188:237341 +k1,14085:32168186,34616188:237341 +k1,14086:32583029,34616188:0 +) +(1,14086:6630773,35481268:25952256,505283,115847 +(1,14085:6630773,35481268:0,452978,115847 +r1,14109:8747598,35481268:2116825,568825,115847 +k1,14085:6630773,35481268:-2116825 +) +(1,14085:6630773,35481268:2116825,452978,115847 +k1,14085:6630773,35481268:3277 +h1,14085:8744321,35481268:0,411205,112570 +) +g1,14085:8946827,35481268 +k1,14086:32583030,35481268:20677908 +g1,14086:32583030,35481268 +) +(1,14088:6630773,36346348:25952256,513147,134348 +h1,14087:6630773,36346348:983040,0,0 +k1,14087:8216603,36346348:187947 +k1,14087:8936058,36346348:187958 +k1,14087:12404748,36346348:187958 +k1,14087:13784151,36346348:187958 +k1,14087:16273078,36346348:187958 +k1,14087:17077073,36346348:187957 +k1,14087:18595412,36346348:187958 +k1,14087:19241467,36346348:187958 +k1,14087:21265088,36346348:187958 +k1,14087:23795303,36346348:187958 +k1,14087:26446759,36346348:187958 +k1,14087:27286145,36346348:187958 +k1,14087:27829963,36346348:187958 +k1,14087:30006283,36346348:187958 +k1,14087:31478747,36346348:187958 +k1,14087:32583029,36346348:0 +) +(1,14088:6630773,37211428:25952256,513147,134348 +k1,14087:7651431,37211428:272892 +k1,14087:11188671,37211428:272892 +k1,14087:12112990,37211428:272891 +k1,14087:14129795,37211428:272892 +k1,14087:16895021,37211428:272892 +k1,14087:18561864,37211428:272892 +k1,14087:20536726,37211428:272892 +k1,14087:23885877,37211428:272891 +k1,14087:27505037,37211428:272892 +k1,14087:29709275,37211428:272892 +k1,14087:32583029,37211428:0 +) +(1,14088:6630773,38076508:25952256,513147,134348 +k1,14087:7877249,38076508:254916 +k1,14087:10421994,38076508:254917 +k1,14087:11336202,38076508:254916 +k1,14087:13146287,38076508:254916 +(1,14087:13146287,38076508:0,459977,115847 +r1,14109:15614824,38076508:2468537,575824,115847 +k1,14087:13146287,38076508:-2468537 +) +(1,14087:13146287,38076508:2468537,459977,115847 +k1,14087:13146287,38076508:3277 +h1,14087:15611547,38076508:0,411205,112570 +) +k1,14087:15869741,38076508:254917 +k1,14087:17316102,38076508:254916 +k1,14087:19353597,38076508:254916 +(1,14087:19353597,38076508:0,452978,115847 +r1,14109:20766998,38076508:1413401,568825,115847 +k1,14087:19353597,38076508:-1413401 +) +(1,14087:19353597,38076508:1413401,452978,115847 +k1,14087:19353597,38076508:3277 +h1,14087:20763721,38076508:0,411205,112570 +) +k1,14087:21021914,38076508:254916 +k1,14087:22468276,38076508:254917 +k1,14087:23827474,38076508:254916 +k1,14087:24830156,38076508:254916 +k1,14087:29098498,38076508:254917 +k1,14087:30544859,38076508:254916 +k1,14087:32583029,38076508:0 +) +(1,14088:6630773,38941588:25952256,513147,134348 +g1,14087:9598243,38941588 +g1,14087:10448900,38941588 +g1,14087:12937957,38941588 +g1,14087:13796478,38941588 +g1,14087:15697677,38941588 +k1,14088:32583029,38941588:14478870 +g1,14088:32583029,38941588 +) +v1,14090:6630773,39626443:0,393216,0 +(1,14103:6630773,42381877:25952256,3148650,196608 +g1,14103:6630773,42381877 +g1,14103:6630773,42381877 +g1,14103:6434165,42381877 +(1,14103:6434165,42381877:0,3148650,196608 +r1,14109:32779637,42381877:26345472,3345258,196608 +k1,14103:6434165,42381877:-26345472 +) +(1,14103:6434165,42381877:26345472,3148650,196608 +[1,14103:6630773,42381877:25952256,2952042,0 +(1,14092:6630773,39854274:25952256,424439,106246 +(1,14091:6630773,39854274:0,0,0 +g1,14091:6630773,39854274 +g1,14091:6630773,39854274 +g1,14091:6303093,39854274 +(1,14091:6303093,39854274:0,0,0 +) +g1,14091:6630773,39854274 +) +k1,14092:6630773,39854274:0 +g1,14092:9286405,39854274 +g1,14092:9950313,39854274 +h1,14092:10614221,39854274:0,0,0 +k1,14092:32583029,39854274:21968808 +g1,14092:32583029,39854274 +) +(1,14096:6630773,40670201:25952256,431045,79822 +(1,14094:6630773,40670201:0,0,0 +g1,14094:6630773,40670201 +g1,14094:6630773,40670201 +g1,14094:6303093,40670201 +(1,14094:6303093,40670201:0,0,0 +) +g1,14094:6630773,40670201 +) +g1,14096:7626635,40670201 +g1,14096:8954451,40670201 +h1,14096:11942036,40670201:0,0,0 +k1,14096:32583028,40670201:20640992 +g1,14096:32583028,40670201 +) +(1,14098:6630773,41486128:25952256,424439,106246 +(1,14097:6630773,41486128:0,0,0 +g1,14097:6630773,41486128 +g1,14097:6630773,41486128 +g1,14097:6303093,41486128 +(1,14097:6303093,41486128:0,0,0 +) +g1,14097:6630773,41486128 +) +k1,14098:6630773,41486128:0 +g1,14098:8954451,41486128 +g1,14098:9618359,41486128 +h1,14098:10282267,41486128:0,0,0 +k1,14098:32583029,41486128:22300762 +g1,14098:32583029,41486128 +) +(1,14102:6630773,42302055:25952256,424439,79822 +(1,14100:6630773,42302055:0,0,0 +g1,14100:6630773,42302055 +g1,14100:6630773,42302055 +g1,14100:6303093,42302055 +(1,14100:6303093,42302055:0,0,0 +) +g1,14100:6630773,42302055 +) +g1,14102:7626635,42302055 +g1,14102:8954451,42302055 +h1,14102:10946175,42302055:0,0,0 +k1,14102:32583029,42302055:21636854 +g1,14102:32583029,42302055 +) +] +) +g1,14103:32583029,42381877 +g1,14103:6630773,42381877 +g1,14103:6630773,42381877 +g1,14103:32583029,42381877 +g1,14103:32583029,42381877 +) +h1,14103:6630773,42578485:0,0,0 +(1,14107:6630773,43443565:25952256,513147,134348 +h1,14106:6630773,43443565:983040,0,0 +k1,14106:9117512,43443565:197566 +k1,14106:10446884,43443565:197565 +k1,14106:12346420,43443565:197566 +k1,14106:12958827,43443565:197564 +k1,14106:15115919,43443565:197566 +k1,14106:18187239,43443565:197566 +k1,14106:19489087,43443565:197566 +k1,14106:20434418,43443565:197565 +k1,14106:23406778,43443565:197566 +k1,14106:24255772,43443565:197566 +k1,14106:27294979,43443565:197566 +k1,14106:28683989,43443565:197565 +k1,14106:29629321,43443565:197566 +k1,14106:32583029,43443565:0 +) +(1,14107:6630773,44308645:25952256,513147,134348 +k1,14106:7446948,44308645:156883 +k1,14106:8927658,44308645:156883 +k1,14106:10275986,44308645:156883 +k1,14106:12914717,44308645:156883 +k1,14106:17592274,44308645:156883 +k1,14106:18768242,44308645:156883 +k1,14106:20231257,44308645:156882 +k1,14106:22200866,44308645:156883 +k1,14106:24345456,44308645:156883 +k1,14106:25189812,44308645:156883 +k1,14106:28008112,44308645:156883 +k1,14106:29732616,44308645:156883 +k1,14106:31387652,44308645:156883 +h1,14106:32583029,44308645:0,0,0 +k1,14106:32583029,44308645:0 +) +(1,14107:6630773,45173725:25952256,513147,7863 +g1,14106:7934284,45173725 +g1,14106:8881279,45173725 +g1,14106:12002758,45173725 +g1,14106:12888149,45173725 +k1,14107:32583030,45173725:17205824 +g1,14107:32583030,45173725 +) +] +(1,14109:32583029,45706769:0,0,0 +g1,14109:32583029,45706769 +) +) +] +(1,14109:6630773,47279633:25952256,0,0 +h1,14109:6630773,47279633:25952256,0,0 +) +] +(1,14109:4262630,4025873:0,0,0 +[1,14109:-473656,4025873:0,0,0 +(1,14109:-473656,-710413:0,0,0 +(1,14109:-473656,-710413:0,0,0 +g1,14109:-473656,-710413 +) +g1,14109:-473656,-710413 +) +] +) +] +!27682 +}228 +Input:2164:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2165:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2166:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2167:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2168:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2169:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2170:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -251715,4579 +243797,5066 @@ Input:2176:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConso Input:2177:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2178:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2179:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2180:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1234 -{247 -[1,14649:4262630,47279633:28320399,43253760,0 -(1,14649:4262630,4025873:0,0,0 -[1,14649:-473656,4025873:0,0,0 -(1,14649:-473656,-710413:0,0,0 -(1,14649:-473656,-644877:0,0,0 -k1,14649:-473656,-644877:-65536 +!1516 +{229 +[1,14278:4262630,47279633:28320399,43253760,0 +(1,14278:4262630,4025873:0,0,0 +[1,14278:-473656,4025873:0,0,0 +(1,14278:-473656,-710413:0,0,0 +(1,14278:-473656,-644877:0,0,0 +k1,14278:-473656,-644877:-65536 ) -(1,14649:-473656,4736287:0,0,0 -k1,14649:-473656,4736287:5209943 +(1,14278:-473656,4736287:0,0,0 +k1,14278:-473656,4736287:5209943 ) -g1,14649:-473656,-710413 +g1,14278:-473656,-710413 ) ] ) -[1,14649:6630773,47279633:25952256,43253760,0 -[1,14649:6630773,4812305:25952256,786432,0 -(1,14649:6630773,4812305:25952256,513147,126483 -(1,14649:6630773,4812305:25952256,513147,126483 -g1,14649:3078558,4812305 -[1,14649:3078558,4812305:0,0,0 -(1,14649:3078558,2439708:0,1703936,0 -k1,14649:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,14649:2537886,2439708:1179648,16384,0 +[1,14278:6630773,47279633:25952256,43253760,0 +[1,14278:6630773,4812305:25952256,786432,0 +(1,14278:6630773,4812305:25952256,513147,126483 +(1,14278:6630773,4812305:25952256,513147,126483 +g1,14278:3078558,4812305 +[1,14278:3078558,4812305:0,0,0 +(1,14278:3078558,2439708:0,1703936,0 +k1,14278:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,14278:2537886,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,14649:3078558,1915420:16384,1179648,0 +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,14278:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] ) ) ) ] -[1,14649:3078558,4812305:0,0,0 -(1,14649:3078558,2439708:0,1703936,0 -g1,14649:29030814,2439708 -g1,14649:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,14649:36151628,1915420:16384,1179648,0 +[1,14278:3078558,4812305:0,0,0 +(1,14278:3078558,2439708:0,1703936,0 +g1,14278:29030814,2439708 +g1,14278:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,14278:36151628,1915420:16384,1179648,0 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,14649:37855564,2439708:1179648,16384,0 +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,14278:37855564,2439708:1179648,16384,0 ) ) -k1,14649:3078556,2439708:-34777008 +k1,14278:3078556,2439708:-34777008 ) ] -[1,14649:3078558,4812305:0,0,0 -(1,14649:3078558,49800853:0,16384,2228224 -k1,14649:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,14649:2537886,49800853:1179648,16384,0 +[1,14278:3078558,4812305:0,0,0 +(1,14278:3078558,49800853:0,16384,2228224 +k1,14278:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,14278:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,14649:3078558,51504789:16384,1179648,0 +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,14278:3078558,51504789:16384,1179648,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 ) ] ) ) ) ] -[1,14649:3078558,4812305:0,0,0 -(1,14649:3078558,49800853:0,16384,2228224 -g1,14649:29030814,49800853 -g1,14649:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,14649:36151628,51504789:16384,1179648,0 +[1,14278:3078558,4812305:0,0,0 +(1,14278:3078558,49800853:0,16384,2228224 +g1,14278:29030814,49800853 +g1,14278:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,14278:36151628,51504789:16384,1179648,0 ) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 ) ] ) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,14649:37855564,49800853:1179648,16384,0 +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,14278:37855564,49800853:1179648,16384,0 ) ) -k1,14649:3078556,49800853:-34777008 +k1,14278:3078556,49800853:-34777008 +) +] +g1,14278:6630773,4812305 +k1,14278:19540057,4812305:11713907 +g1,14278:21162728,4812305 +g1,14278:21985204,4812305 +g1,14278:24539797,4812305 +g1,14278:25949476,4812305 +g1,14278:28728857,4812305 +g1,14278:29852144,4812305 +) +) +] +[1,14278:6630773,45706769:25952256,40108032,0 +(1,14278:6630773,45706769:25952256,40108032,0 +(1,14278:6630773,45706769:0,0,0 +g1,14278:6630773,45706769 +) +[1,14278:6630773,45706769:25952256,40108032,0 +v1,14109:6630773,6254097:0,393216,0 +(1,14114:6630773,7279635:25952256,1418754,196608 +g1,14114:6630773,7279635 +g1,14114:6630773,7279635 +g1,14114:6434165,7279635 +(1,14114:6434165,7279635:0,1418754,196608 +r1,14278:32779637,7279635:26345472,1615362,196608 +k1,14114:6434165,7279635:-26345472 +) +(1,14114:6434165,7279635:26345472,1418754,196608 +[1,14114:6630773,7279635:25952256,1222146,0 +(1,14111:6630773,6488534:25952256,431045,106246 +(1,14110:6630773,6488534:0,0,0 +g1,14110:6630773,6488534 +g1,14110:6630773,6488534 +g1,14110:6303093,6488534 +(1,14110:6303093,6488534:0,0,0 +) +g1,14110:6630773,6488534 +) +g1,14111:10282266,6488534 +g1,14111:11278128,6488534 +g1,14111:12937898,6488534 +g1,14111:13601806,6488534 +g1,14111:14265714,6488534 +g1,14111:14929622,6488534 +h1,14111:16589392,6488534:0,0,0 +k1,14111:32583029,6488534:15993637 +g1,14111:32583029,6488534 +) +(1,14112:6630773,7173389:25952256,431045,106246 +h1,14112:6630773,7173389:0,0,0 +g1,14112:7958589,7173389 +g1,14112:8954451,7173389 +g1,14112:13933760,7173389 +h1,14112:17253300,7173389:0,0,0 +k1,14112:32583029,7173389:15329729 +g1,14112:32583029,7173389 +) +] +) +g1,14114:32583029,7279635 +g1,14114:6630773,7279635 +g1,14114:6630773,7279635 +g1,14114:32583029,7279635 +g1,14114:32583029,7279635 +) +h1,14114:6630773,7476243:0,0,0 +(1,14118:6630773,8341323:25952256,513147,134348 +h1,14117:6630773,8341323:983040,0,0 +k1,14117:8409966,8341323:168318 +k1,14117:10270424,8341323:168318 +k1,14117:13769282,8341323:168318 +k1,14117:15180164,8341323:168319 +k1,14117:18819924,8341323:168318 +k1,14117:19647534,8341323:168318 +k1,14117:23800441,8341323:168318 +k1,14117:26286767,8341323:168318 +k1,14117:28732461,8341323:168318 +k1,14117:29256640,8341323:168319 +k1,14117:30339186,8341323:168318 +k1,14117:32020075,8341323:168318 +k1,14117:32583029,8341323:0 +) +(1,14118:6630773,9206403:25952256,513147,126483 +k1,14117:8329533,9206403:186189 +k1,14117:9325093,9206403:186190 +k1,14117:10530367,9206403:186189 +k1,14117:11790692,9206403:186190 +k1,14117:13583168,9206403:186189 +k1,14117:15068937,9206403:186190 +k1,14117:15914418,9206403:186189 +h1,14117:15914418,9206403:0,0,0 +k1,14117:16722644,9206403:186190 +k1,14117:17900393,9206403:186189 +k1,14117:19773479,9206403:186189 +k1,14117:20704158,9206403:186190 +k1,14117:22385879,9206403:186189 +k1,14117:23728779,9206403:186190 +k1,14117:25427539,9206403:186189 +k1,14117:27235745,9206403:186190 +k1,14117:28169700,9206403:186189 +k1,14117:30761717,9206403:186190 +k1,14117:31563944,9206403:186189 +k1,14117:32583029,9206403:0 +) +(1,14118:6630773,10071483:25952256,513147,134348 +g1,14117:7863505,10071483 +g1,14117:8722026,10071483 +g1,14117:10908962,10071483 +g1,14117:14155615,10071483 +g1,14117:15041006,10071483 +g1,14117:16010938,10071483 +g1,14117:19650152,10071483 +g1,14117:22022555,10071483 +g1,14117:22837822,10071483 +(1,14117:22837822,10071483:0,414482,115847 +r1,14278:23196088,10071483:358266,530329,115847 +k1,14117:22837822,10071483:-358266 +) +(1,14117:22837822,10071483:358266,414482,115847 +g1,14117:23192811,10071483 +h1,14117:23192811,10071483:0,411205,112570 +) +g1,14117:23395317,10071483 +g1,14117:24126043,10071483 +g1,14117:28296754,10071483 +k1,14118:32583029,10071483:571039 +g1,14118:32583029,10071483 +) +v1,14120:6630773,10756338:0,393216,0 +(1,14139:6630773,15143626:25952256,4780504,196608 +g1,14139:6630773,15143626 +g1,14139:6630773,15143626 +g1,14139:6434165,15143626 +(1,14139:6434165,15143626:0,4780504,196608 +r1,14278:32779637,15143626:26345472,4977112,196608 +k1,14139:6434165,15143626:-26345472 +) +(1,14139:6434165,15143626:26345472,4780504,196608 +[1,14139:6630773,15143626:25952256,4583896,0 +(1,14122:6630773,10984169:25952256,424439,106246 +(1,14121:6630773,10984169:0,0,0 +g1,14121:6630773,10984169 +g1,14121:6630773,10984169 +g1,14121:6303093,10984169 +(1,14121:6303093,10984169:0,0,0 +) +g1,14121:6630773,10984169 +) +k1,14122:6630773,10984169:0 +g1,14122:9286405,10984169 +g1,14122:9950313,10984169 +g1,14122:10614221,10984169 +h1,14122:11278129,10984169:0,0,0 +k1,14122:32583029,10984169:21304900 +g1,14122:32583029,10984169 +) +(1,14126:6630773,11800096:25952256,431045,79822 +(1,14124:6630773,11800096:0,0,0 +g1,14124:6630773,11800096 +g1,14124:6630773,11800096 +g1,14124:6303093,11800096 +(1,14124:6303093,11800096:0,0,0 +) +g1,14124:6630773,11800096 +) +g1,14126:7626635,11800096 +g1,14126:8954451,11800096 +h1,14126:11942036,11800096:0,0,0 +k1,14126:32583028,11800096:20640992 +g1,14126:32583028,11800096 +) +(1,14128:6630773,12616023:25952256,424439,106246 +(1,14127:6630773,12616023:0,0,0 +g1,14127:6630773,12616023 +g1,14127:6630773,12616023 +g1,14127:6303093,12616023 +(1,14127:6303093,12616023:0,0,0 +) +g1,14127:6630773,12616023 +) +k1,14128:6630773,12616023:0 +g1,14128:8954451,12616023 +g1,14128:9618359,12616023 +g1,14128:10282267,12616023 +h1,14128:10946175,12616023:0,0,0 +k1,14128:32583029,12616023:21636854 +g1,14128:32583029,12616023 +) +(1,14132:6630773,13431950:25952256,424439,79822 +(1,14130:6630773,13431950:0,0,0 +g1,14130:6630773,13431950 +g1,14130:6630773,13431950 +g1,14130:6303093,13431950 +(1,14130:6303093,13431950:0,0,0 +) +g1,14130:6630773,13431950 +) +g1,14132:7626635,13431950 +g1,14132:8954451,13431950 +h1,14132:10946175,13431950:0,0,0 +k1,14132:32583029,13431950:21636854 +g1,14132:32583029,13431950 +) +(1,14134:6630773,14247877:25952256,424439,106246 +(1,14133:6630773,14247877:0,0,0 +g1,14133:6630773,14247877 +g1,14133:6630773,14247877 +g1,14133:6303093,14247877 +(1,14133:6303093,14247877:0,0,0 +) +g1,14133:6630773,14247877 +) +k1,14134:6630773,14247877:0 +g1,14134:12273990,14247877 +g1,14134:12937898,14247877 +g1,14134:13601806,14247877 +h1,14134:14265714,14247877:0,0,0 +k1,14134:32583030,14247877:18317316 +g1,14134:32583030,14247877 +) +(1,14138:6630773,15063804:25952256,424439,79822 +(1,14136:6630773,15063804:0,0,0 +g1,14136:6630773,15063804 +g1,14136:6630773,15063804 +g1,14136:6303093,15063804 +(1,14136:6303093,15063804:0,0,0 +) +g1,14136:6630773,15063804 +) +g1,14138:7626635,15063804 +g1,14138:8954451,15063804 +h1,14138:10614221,15063804:0,0,0 +k1,14138:32583029,15063804:21968808 +g1,14138:32583029,15063804 +) +] +) +g1,14139:32583029,15143626 +g1,14139:6630773,15143626 +g1,14139:6630773,15143626 +g1,14139:32583029,15143626 +g1,14139:32583029,15143626 +) +h1,14139:6630773,15340234:0,0,0 +v1,14143:6630773,16205314:0,393216,0 +(1,14278:6630773,45131542:25952256,29319444,0 +g1,14278:6630773,45131542 +g1,14278:6237557,45131542 +r1,14278:6368629,45131542:131072,29319444,0 +g1,14278:6567858,45131542 +g1,14278:6764466,45131542 +[1,14278:6764466,45131542:25818563,29319444,0 +(1,14144:6764466,16513612:25818563,701514,196608 +(1,14143:6764466,16513612:0,701514,196608 +r1,14278:8010564,16513612:1246098,898122,196608 +k1,14143:6764466,16513612:-1246098 +) +(1,14143:6764466,16513612:1246098,701514,196608 +) +k1,14143:8189509,16513612:178945 +k1,14143:8517189,16513612:327680 +k1,14143:10413178,16513612:178946 +k1,14143:12709591,16513612:178945 +k1,14143:13555692,16513612:178945 +k1,14143:14149460,16513612:178925 +k1,14143:17202160,16513612:178946 +k1,14143:18485387,16513612:178945 +k1,14143:19412098,16513612:178945 +k1,14143:22800342,16513612:178946 +k1,14143:23595325,16513612:178945 +k1,14143:26780406,16513612:178945 +k1,14143:29294400,16513612:178946 +k1,14143:30823387,16513612:178945 +k1,14143:32583029,16513612:0 +) +(1,14144:6764466,17378692:25818563,513147,134348 +k1,14143:7621622,17378692:197864 +k1,14143:11688732,17378692:197864 +k1,14143:12878156,17378692:197864 +k1,14143:15705980,17378692:197864 +k1,14143:16851495,17378692:197864 +k1,14143:20096783,17378692:197864 +k1,14143:21112536,17378692:197864 +k1,14143:22704351,17378692:197864 +k1,14143:24604185,17378692:197864 +k1,14143:27208531,17378692:197864 +k1,14143:29412452,17378692:197864 +k1,14143:31900144,17378692:197864 +k1,14143:32583029,17378692:0 +) +(1,14144:6764466,18243772:25818563,513147,134348 +k1,14143:9288070,18243772:215426 +k1,14143:10162788,18243772:215426 +k1,14143:12391480,18243772:215426 +k1,14143:14027071,18243772:215426 +k1,14143:15234057,18243772:215426 +k1,14143:16989579,18243772:215426 +k1,14143:18396451,18243772:215427 +k1,14143:19716159,18243772:215426 +k1,14143:20679351,18243772:215426 +k1,14143:23244898,18243772:215426 +k1,14143:24854275,18243772:215426 +k1,14143:26088786,18243772:215426 +k1,14143:27859381,18243772:215426 +k1,14143:31955194,18243772:215426 +k1,14143:32583029,18243772:0 +) +(1,14144:6764466,19108852:25818563,513147,134348 +k1,14143:7935292,19108852:151741 +k1,14143:9454114,19108852:151741 +k1,14143:10265147,19108852:151741 +k1,14143:13290642,19108852:151741 +k1,14143:15097167,19108852:151741 +k1,14143:15780405,19108852:151741 +k1,14143:16702850,19108852:151742 +k1,14143:20081584,19108852:151741 +k1,14143:21662665,19108852:151741 +k1,14143:22473698,19108852:151741 +k1,14143:26068045,19108852:151741 +k1,14143:26575646,19108852:151741 +k1,14143:29270839,19108852:151741 +k1,14143:32583029,19108852:0 +) +(1,14144:6764466,19973932:25818563,505283,126483 +g1,14143:7319555,19973932 +g1,14143:9506491,19973932 +g1,14143:11099671,19973932 +g1,14143:12108270,19973932 +g1,14143:16073198,19973932 +g1,14143:18115299,19973932 +g1,14143:19123898,19973932 +g1,14143:20111525,19973932 +k1,14144:32583029,19973932:11264331 +g1,14144:32583029,19973932 +) +(1,14146:6764466,20839012:25818563,513147,134348 +h1,14145:6764466,20839012:983040,0,0 +k1,14145:8867624,20839012:217687 +k1,14145:11691677,20839012:217686 +k1,14145:13868890,20839012:217687 +k1,14145:14745868,20839012:217686 +k1,14145:16518724,20839012:217687 +(1,14145:16518724,20839012:0,459977,115847 +r1,14278:18987261,20839012:2468537,575824,115847 +k1,14145:16518724,20839012:-2468537 +) +(1,14145:16518724,20839012:2468537,459977,115847 +k1,14145:16518724,20839012:3277 +h1,14145:18983984,20839012:0,411205,112570 +) +k1,14145:19204947,20839012:217686 +k1,14145:20526916,20839012:217687 +k1,14145:21492368,20839012:217686 +k1,14145:24060176,20839012:217687 +k1,14145:25039390,20839012:217686 +k1,14145:25612937,20839012:217687 +k1,14145:26930317,20839012:217686 +k1,14145:27799432,20839012:217687 +(1,14145:27799432,20839012:0,459977,115847 +r1,14278:30971392,20839012:3171960,575824,115847 +k1,14145:27799432,20839012:-3171960 +) +(1,14145:27799432,20839012:3171960,459977,115847 +k1,14145:27799432,20839012:3277 +h1,14145:30968115,20839012:0,411205,112570 +) +k1,14145:31189078,20839012:217686 +k1,14145:32583029,20839012:0 +) +(1,14146:6764466,21704092:25818563,513147,134348 +k1,14145:7800263,21704092:226427 +k1,14145:11602990,21704092:226427 +k1,14145:14597658,21704092:226427 +k1,14145:15510246,21704092:226426 +k1,14145:16092533,21704092:226427 +k1,14145:18939089,21704092:226427 +k1,14145:21143393,21704092:226427 +k1,14145:22029112,21704092:226427 +k1,14145:24268805,21704092:226427 +k1,14145:25915397,21704092:226427 +k1,14145:26673320,21704092:226426 +k1,14145:29249868,21704092:226427 +k1,14145:30237823,21704092:226427 +k1,14145:31483335,21704092:226427 +k1,14146:32583029,21704092:0 +) +(1,14146:6764466,22569172:25818563,505283,134348 +(1,14145:6764466,22569172:0,452978,115847 +r1,14278:9936426,22569172:3171960,568825,115847 +k1,14145:6764466,22569172:-3171960 +) +(1,14145:6764466,22569172:3171960,452978,115847 +k1,14145:6764466,22569172:3277 +h1,14145:9933149,22569172:0,411205,112570 +) +k1,14145:10271313,22569172:161217 +k1,14145:11629217,22569172:161217 +k1,14145:13112296,22569172:161218 +k1,14145:17028726,22569172:161217 +k1,14145:18429884,22569172:161217 +k1,14145:21777461,22569172:161217 +k1,14145:22554717,22569172:161218 +k1,14145:23735019,22569172:161217 +k1,14145:25392423,22569172:161217 +k1,14145:27422071,22569172:161217 +k1,14145:30044166,22569172:161218 +k1,14145:30976086,22569172:161217 +k1,14145:32583029,22569172:0 +) +(1,14146:6764466,23434252:25818563,513147,134348 +k1,14145:7722441,23434252:271813 +k1,14145:9013338,23434252:271812 +k1,14145:12357479,23434252:271813 +k1,14145:14834578,23434252:271812 +k1,14145:15757819,23434252:271813 +(1,14145:15757819,23434252:0,452978,115847 +r1,14278:21391762,23434252:5633943,568825,115847 +k1,14145:15757819,23434252:-5633943 +) +(1,14145:15757819,23434252:5633943,452978,115847 +k1,14145:15757819,23434252:3277 +h1,14145:21388485,23434252:0,411205,112570 +) +k1,14145:21663574,23434252:271812 +k1,14145:22466884,23434252:271813 +k1,14145:23397988,23434252:271812 +k1,14145:25683067,23434252:271813 +k1,14145:27548715,23434252:271812 +k1,14145:29408465,23434252:271813 +k1,14145:32583029,23434252:0 +) +(1,14146:6764466,24299332:25818563,513147,134348 +k1,14145:7539773,24299332:243810 +k1,14145:8849853,24299332:243809 +k1,14145:12374395,24299332:243810 +k1,14145:14012155,24299332:243809 +(1,14145:14012155,24299332:0,452978,115847 +r1,14278:16480692,24299332:2468537,568825,115847 +k1,14145:14012155,24299332:-2468537 +) +(1,14145:14012155,24299332:2468537,452978,115847 +k1,14145:14012155,24299332:3277 +h1,14145:16477415,24299332:0,411205,112570 +) +k1,14145:16724502,24299332:243810 +k1,14145:19276489,24299332:243809 +k1,14145:20179591,24299332:243810 +k1,14145:22436666,24299332:243809 +k1,14145:24274312,24299332:243810 +k1,14145:25543104,24299332:243809 +k1,14145:26734565,24299332:243810 +k1,14145:29639791,24299332:243809 +k1,14145:30902686,24299332:243810 +k1,14145:32583029,24299332:0 +) +(1,14146:6764466,25164412:25818563,505283,126483 +g1,14145:9742422,25164412 +g1,14145:10703179,25164412 +(1,14145:10703179,25164412:0,459977,115847 +r1,14278:17743970,25164412:7040791,575824,115847 +k1,14145:10703179,25164412:-7040791 +) +(1,14145:10703179,25164412:7040791,459977,115847 +k1,14145:10703179,25164412:3277 +h1,14145:17740693,25164412:0,411205,112570 +) +k1,14146:32583029,25164412:14458295 +g1,14146:32583029,25164412 +) +v1,14148:6764466,25849267:0,393216,0 +(1,14170:6764466,31085512:25818563,5629461,196608 +g1,14170:6764466,31085512 +g1,14170:6764466,31085512 +g1,14170:6567858,31085512 +(1,14170:6567858,31085512:0,5629461,196608 +r1,14278:32779637,31085512:26211779,5826069,196608 +k1,14170:6567857,31085512:-26211780 +) +(1,14170:6567858,31085512:26211779,5629461,196608 +[1,14170:6764466,31085512:25818563,5432853,0 +(1,14150:6764466,26083704:25818563,431045,79822 +(1,14149:6764466,26083704:0,0,0 +g1,14149:6764466,26083704 +g1,14149:6764466,26083704 +g1,14149:6436786,26083704 +(1,14149:6436786,26083704:0,0,0 +) +g1,14149:6764466,26083704 +) +k1,14150:6764466,26083704:0 +k1,14150:6764466,26083704:0 +h1,14150:12075730,26083704:0,0,0 +k1,14150:32583030,26083704:20507300 +g1,14150:32583030,26083704 +) +(1,14154:6764466,26899631:25818563,431045,79822 +(1,14152:6764466,26899631:0,0,0 +g1,14152:6764466,26899631 +g1,14152:6764466,26899631 +g1,14152:6436786,26899631 +(1,14152:6436786,26899631:0,0,0 +) +g1,14152:6764466,26899631 +) +g1,14154:7760328,26899631 +g1,14154:9088144,26899631 +h1,14154:12075729,26899631:0,0,0 +k1,14154:32583029,26899631:20507300 +g1,14154:32583029,26899631 +) +(1,14156:6764466,27715558:25818563,431045,79822 +(1,14155:6764466,27715558:0,0,0 +g1,14155:6764466,27715558 +g1,14155:6764466,27715558 +g1,14155:6436786,27715558 +(1,14155:6436786,27715558:0,0,0 +) +g1,14155:6764466,27715558 +) +k1,14156:6764466,27715558:0 +k1,14156:6764466,27715558:0 +h1,14156:11743776,27715558:0,0,0 +k1,14156:32583028,27715558:20839252 +g1,14156:32583028,27715558 +) +(1,14160:6764466,28531485:25818563,424439,79822 +(1,14158:6764466,28531485:0,0,0 +g1,14158:6764466,28531485 +g1,14158:6764466,28531485 +g1,14158:6436786,28531485 +(1,14158:6436786,28531485:0,0,0 +) +g1,14158:6764466,28531485 +) +g1,14160:7760328,28531485 +g1,14160:9088144,28531485 +h1,14160:11079868,28531485:0,0,0 +k1,14160:32583028,28531485:21503160 +g1,14160:32583028,28531485 +) +(1,14162:6764466,29347412:25818563,431045,112852 +(1,14161:6764466,29347412:0,0,0 +g1,14161:6764466,29347412 +g1,14161:6764466,29347412 +g1,14161:6436786,29347412 +(1,14161:6436786,29347412:0,0,0 +) +g1,14161:6764466,29347412 +) +k1,14162:6764466,29347412:0 +k1,14162:6764466,29347412:0 +h1,14162:12407684,29347412:0,0,0 +k1,14162:32583028,29347412:20175344 +g1,14162:32583028,29347412 +) +(1,14166:6764466,30163339:25818563,424439,79822 +(1,14164:6764466,30163339:0,0,0 +g1,14164:6764466,30163339 +g1,14164:6764466,30163339 +g1,14164:6436786,30163339 +(1,14164:6436786,30163339:0,0,0 +) +g1,14164:6764466,30163339 +) +g1,14166:7760328,30163339 +g1,14166:9088144,30163339 +h1,14166:9420098,30163339:0,0,0 +k1,14166:32583030,30163339:23162932 +g1,14166:32583030,30163339 +) +(1,14168:6764466,30979266:25818563,431045,106246 +(1,14167:6764466,30979266:0,0,0 +g1,14167:6764466,30979266 +g1,14167:6764466,30979266 +g1,14167:6436786,30979266 +(1,14167:6436786,30979266:0,0,0 +) +g1,14167:6764466,30979266 +) +g1,14168:7428374,30979266 +k1,14168:7428374,30979266:0 +h1,14168:15727222,30979266:0,0,0 +k1,14168:32583030,30979266:16855808 +g1,14168:32583030,30979266 +) +] +) +g1,14170:32583029,31085512 +g1,14170:6764466,31085512 +g1,14170:6764466,31085512 +g1,14170:32583029,31085512 +g1,14170:32583029,31085512 +) +h1,14170:6764466,31282120:0,0,0 +(1,14174:6764466,32147200:25818563,513147,134348 +h1,14173:6764466,32147200:983040,0,0 +k1,14173:8449080,32147200:213986 +k1,14173:10650789,32147200:214002 +k1,14173:13408242,32147200:214001 +k1,14173:16934433,32147200:214001 +k1,14173:17504295,32147200:214002 +k1,14173:19706003,32147200:214001 +k1,14173:21313955,32147200:214001 +k1,14173:22337327,32147200:214002 +k1,14173:26317027,32147200:214001 +k1,14173:28373900,32147200:214001 +k1,14173:29397271,32147200:214001 +k1,14173:30630358,32147200:214002 +k1,14173:32051532,32147200:214001 +k1,14173:32583029,32147200:0 +) +(1,14174:6764466,33012280:25818563,513147,134348 +k1,14173:10409111,33012280:145678 +k1,14173:12560847,33012280:145679 +k1,14173:14173221,33012280:145678 +k1,14173:14784860,33012280:145678 +k1,14173:15388636,33012280:145679 +k1,14173:16065811,33012280:145678 +k1,14173:16567349,33012280:145678 +k1,14173:18253124,33012280:145679 +k1,14173:20358328,33012280:145678 +k1,14173:21163298,33012280:145678 +k1,14173:22864146,33012280:145679 +(1,14173:22864146,33012280:0,459977,115847 +r1,14278:25332683,33012280:2468537,575824,115847 +k1,14173:22864146,33012280:-2468537 +) +(1,14173:22864146,33012280:2468537,459977,115847 +k1,14173:22864146,33012280:3277 +h1,14173:25329406,33012280:0,411205,112570 +) +k1,14173:25478361,33012280:145678 +k1,14173:26989154,33012280:145678 +k1,14173:28725392,33012280:145679 +k1,14173:29937341,33012280:145678 +k1,14173:32583029,33012280:0 +) +(1,14174:6764466,33877360:25818563,509904,134348 +k1,14173:8743111,33877360:203930 +h1,14173:8743111,33877360:0,0,0 +k1,14173:9582787,33877360:424734 +k1,14173:10422462,33877360:424733 +k1,14173:11041334,33877360:203930 +k1,14173:14244848,33877360:203931 +k1,14173:14804638,33877360:203930 +k1,14173:16996275,33877360:203930 +k1,14173:18594156,33877360:203930 +k1,14173:20173688,33877360:203931 +k1,14173:21148321,33877360:203930 +k1,14173:24219451,33877360:203930 +k1,14173:27989195,33877360:203930 +$1,14173:27989195,33877360 +k1,14173:28642532,33877360:190653 +k1,14173:29401381,33877360:190652 +[1,14173:29401381,33877360:502661,458096,7864 +(1,14173:29871928,33869496:0,450232,0 +) +(1,14173:29401381,33877360:502661,355205,7864 +) +] +$1,14173:29904042,33877360 +k1,14173:30488736,33877360:203930 +h1,14173:30488736,33877360:0,0,0 +k1,14173:31328412,33877360:424734 +k1,14173:32168087,33877360:424733 +k1,14173:32583029,33877360:0 +) +(1,14174:6764466,34742440:25818563,513147,132808 +k1,14173:7640475,34742440:193124 +k1,14173:8621997,34742440:193124 +k1,14173:12120102,34742440:193124 +h1,14173:12120102,34742440:0,0,0 +k1,14173:12937271,34742440:402227 +k1,14173:13754441,34742440:402228 +k1,14173:14951120,34742440:193124 +k1,14173:18143827,34742440:193124 +k1,14173:19107654,34742440:193124 +k1,14173:21306835,34742440:193124 +k1,14173:23487666,34742440:193124 +k1,14173:24965296,34742440:193124 +k1,14173:27328973,34742440:193125 +k1,14173:28269863,34742440:193124 +k1,14173:30175443,34742440:193124 +k1,14173:31019995,34742440:193124 +k1,14174:32583029,34742440:0 +k1,14174:32583029,34742440:0 +) +v1,14176:6764466,35427295:0,393216,0 +(1,14207:6764466,43078291:25818563,8044212,196608 +g1,14207:6764466,43078291 +g1,14207:6764466,43078291 +g1,14207:6567858,43078291 +(1,14207:6567858,43078291:0,8044212,196608 +r1,14278:32779637,43078291:26211779,8240820,196608 +k1,14207:6567857,43078291:-26211780 +) +(1,14207:6567858,43078291:26211779,8044212,196608 +[1,14207:6764466,43078291:25818563,7847604,0 +(1,14178:6764466,35655126:25818563,424439,106246 +(1,14177:6764466,35655126:0,0,0 +g1,14177:6764466,35655126 +g1,14177:6764466,35655126 +g1,14177:6436786,35655126 +(1,14177:6436786,35655126:0,0,0 +) +g1,14177:6764466,35655126 +) +k1,14178:6764466,35655126:0 +g1,14178:9420098,35655126 +g1,14178:10084006,35655126 +h1,14178:10747914,35655126:0,0,0 +k1,14178:32583030,35655126:21835116 +g1,14178:32583030,35655126 +) +(1,14182:6764466,36471053:25818563,431045,79822 +(1,14180:6764466,36471053:0,0,0 +g1,14180:6764466,36471053 +g1,14180:6764466,36471053 +g1,14180:6436786,36471053 +(1,14180:6436786,36471053:0,0,0 +) +g1,14180:6764466,36471053 +) +g1,14182:7760328,36471053 +g1,14182:9088144,36471053 +h1,14182:12075729,36471053:0,0,0 +k1,14182:32583029,36471053:20507300 +g1,14182:32583029,36471053 +) +(1,14184:6764466,37286980:25818563,424439,106246 +(1,14183:6764466,37286980:0,0,0 +g1,14183:6764466,37286980 +g1,14183:6764466,37286980 +g1,14183:6436786,37286980 +(1,14183:6436786,37286980:0,0,0 +) +g1,14183:6764466,37286980 +) +k1,14184:6764466,37286980:0 +g1,14184:9088144,37286980 +g1,14184:9752052,37286980 +h1,14184:10415960,37286980:0,0,0 +k1,14184:32583028,37286980:22167068 +g1,14184:32583028,37286980 +) +(1,14188:6764466,38102907:25818563,424439,79822 +(1,14186:6764466,38102907:0,0,0 +g1,14186:6764466,38102907 +g1,14186:6764466,38102907 +g1,14186:6436786,38102907 +(1,14186:6436786,38102907:0,0,0 +) +g1,14186:6764466,38102907 +) +g1,14188:7760328,38102907 +g1,14188:9088144,38102907 +h1,14188:11079868,38102907:0,0,0 +k1,14188:32583028,38102907:21503160 +g1,14188:32583028,38102907 +) +(1,14190:6764466,38918834:25818563,424439,106246 +(1,14189:6764466,38918834:0,0,0 +g1,14189:6764466,38918834 +g1,14189:6764466,38918834 +g1,14189:6436786,38918834 +(1,14189:6436786,38918834:0,0,0 +) +g1,14189:6764466,38918834 +) +k1,14190:6764466,38918834:0 +g1,14190:12407683,38918834 +g1,14190:13071591,38918834 +h1,14190:13735499,38918834:0,0,0 +k1,14190:32583029,38918834:18847530 +g1,14190:32583029,38918834 +) +(1,14194:6764466,39734761:25818563,424439,79822 +(1,14192:6764466,39734761:0,0,0 +g1,14192:6764466,39734761 +g1,14192:6764466,39734761 +g1,14192:6436786,39734761 +(1,14192:6436786,39734761:0,0,0 +) +g1,14192:6764466,39734761 +) +g1,14194:7760328,39734761 +g1,14194:9088144,39734761 +h1,14194:10415960,39734761:0,0,0 +k1,14194:32583028,39734761:22167068 +g1,14194:32583028,39734761 +) +(1,14196:6764466,40550688:25818563,424439,106246 +(1,14195:6764466,40550688:0,0,0 +g1,14195:6764466,40550688 +g1,14195:6764466,40550688 +g1,14195:6436786,40550688 +(1,14195:6436786,40550688:0,0,0 +) +g1,14195:6764466,40550688 +) +k1,14196:6764466,40550688:0 +g1,14196:12407683,40550688 +g1,14196:13071591,40550688 +h1,14196:13735499,40550688:0,0,0 +k1,14196:32583029,40550688:18847530 +g1,14196:32583029,40550688 +) +(1,14200:6764466,41366615:25818563,424439,79822 +(1,14198:6764466,41366615:0,0,0 +g1,14198:6764466,41366615 +g1,14198:6764466,41366615 +g1,14198:6436786,41366615 +(1,14198:6436786,41366615:0,0,0 +) +g1,14198:6764466,41366615 +) +g1,14200:7760328,41366615 +g1,14200:9088144,41366615 +h1,14200:10747914,41366615:0,0,0 +k1,14200:32583030,41366615:21835116 +g1,14200:32583030,41366615 +) +(1,14202:6764466,42182542:25818563,424439,106246 +(1,14201:6764466,42182542:0,0,0 +g1,14201:6764466,42182542 +g1,14201:6764466,42182542 +g1,14201:6436786,42182542 +(1,14201:6436786,42182542:0,0,0 +) +g1,14201:6764466,42182542 +) +k1,14202:6764466,42182542:0 +g1,14202:12407683,42182542 +g1,14202:13071591,42182542 +h1,14202:13735499,42182542:0,0,0 +k1,14202:32583029,42182542:18847530 +g1,14202:32583029,42182542 +) +(1,14206:6764466,42998469:25818563,424439,79822 +(1,14204:6764466,42998469:0,0,0 +g1,14204:6764466,42998469 +g1,14204:6764466,42998469 +g1,14204:6436786,42998469 +(1,14204:6436786,42998469:0,0,0 +) +g1,14204:6764466,42998469 +) +g1,14206:7760328,42998469 +g1,14206:9088144,42998469 +h1,14206:10747914,42998469:0,0,0 +k1,14206:32583030,42998469:21835116 +g1,14206:32583030,42998469 +) +] +) +g1,14207:32583029,43078291 +g1,14207:6764466,43078291 +g1,14207:6764466,43078291 +g1,14207:32583029,43078291 +g1,14207:32583029,43078291 +) +h1,14207:6764466,43274899:0,0,0 +(1,14211:6764466,44139979:25818563,513147,134348 +h1,14210:6764466,44139979:983040,0,0 +k1,14210:9102212,44139979:158019 +k1,14210:10940573,44139979:158018 +k1,14210:13877319,44139979:158019 +k1,14210:14796865,44139979:158018 +(1,14210:14796865,44139979:0,452978,122846 +r1,14278:17617114,44139979:2820249,575824,122846 +k1,14210:14796865,44139979:-2820249 +) +(1,14210:14796865,44139979:2820249,452978,122846 +k1,14210:14796865,44139979:3277 +h1,14210:17613837,44139979:0,411205,112570 +) +k1,14210:17775133,44139979:158019 +k1,14210:18742521,44139979:158018 +k1,14210:19256400,44139979:158019 +k1,14210:21287438,44139979:158019 +k1,14210:23988908,44139979:158018 +k1,14210:24678424,44139979:158019 +k1,14210:25902713,44139979:158018 +k1,14210:28189997,44139979:158019 +k1,14210:28920144,44139979:158018 +k1,14210:30097248,44139979:158019 +k1,14210:32583029,44139979:0 +) +(1,14211:6764466,45005059:25818563,513147,126483 +k1,14210:7643656,45005059:219898 +k1,14210:10737309,45005059:219899 +k1,14210:11573245,45005059:219898 +k1,14210:12812229,45005059:219899 +k1,14210:15010004,45005059:219898 +k1,14210:15889195,45005059:219899 +k1,14210:19156517,45005059:219898 +k1,14210:20448585,45005059:219899 +k1,14210:22995666,45005059:219898 +k1,14210:24234650,45005059:219899 +k1,14210:26940329,45005059:219898 +k1,14210:27819520,45005059:219899 +k1,14210:31966991,45005059:219898 +k1,14210:32583029,45005059:0 +) +] +g1,14278:32583029,45131542 +) +] +(1,14278:32583029,45706769:0,0,0 +g1,14278:32583029,45706769 ) -] -g1,14649:6630773,4812305 -k1,14649:19540057,4812305:11713907 -g1,14649:21162728,4812305 -g1,14649:21985204,4812305 -g1,14649:24539797,4812305 -g1,14649:25949476,4812305 -g1,14649:28728857,4812305 -g1,14649:29852144,4812305 -) -) -] -[1,14649:6630773,45706769:25952256,40108032,0 -(1,14649:6630773,45706769:25952256,40108032,0 -(1,14649:6630773,45706769:0,0,0 -g1,14649:6630773,45706769 -) -[1,14649:6630773,45706769:25952256,40108032,0 -(1,14586:6630773,6254097:25952256,32768,229376 -(1,14586:6630773,6254097:0,32768,229376 -(1,14586:6630773,6254097:5505024,32768,229376 -r1,14649:12135797,6254097:5505024,262144,229376 -) -k1,14586:6630773,6254097:-5505024 -) -(1,14586:6630773,6254097:25952256,32768,0 -r1,14649:32583029,6254097:25952256,32768,0 -) -) -(1,14586:6630773,7858425:25952256,606339,9436 -(1,14586:6630773,7858425:2464678,582746,0 -g1,14586:6630773,7858425 -g1,14586:9095451,7858425 -) -g1,14586:11360375,7858425 -k1,14586:32583029,7858425:18895602 -g1,14586:32583029,7858425 -) -(1,14589:6630773,9093129:25952256,513147,134348 -k1,14588:10883142,9093129:233046 -k1,14588:12505551,9093129:233046 -k1,14588:15000244,9093129:233046 -k1,14588:15892582,9093129:233046 -k1,14588:18910253,9093129:233046 -k1,14588:23990341,9093129:233045 -k1,14588:26510594,9093129:233046 -k1,14588:28321092,9093129:233046 -k1,14588:29941535,9093129:233046 -k1,14588:31773659,9093129:233046 -k1,14588:32583029,9093129:0 -) -(1,14589:6630773,9934617:25952256,505283,134348 -k1,14588:7833621,9934617:183763 -k1,14588:9670857,9934617:183763 -k1,14588:14024675,9934617:183762 -k1,14588:16000192,9934617:183763 -k1,14588:20203278,9934617:183763 -k1,14588:21950075,9934617:183763 -k1,14588:23831876,9934617:183763 -k1,14588:27192823,9934617:183762 -k1,14588:28185956,9934617:183763 -k1,14588:30601220,9934617:183763 -k1,14589:32583029,9934617:0 -) -(1,14589:6630773,10776105:25952256,505283,126483 -k1,14588:9277712,10776105:245700 -k1,14588:11141497,10776105:245701 -k1,14588:11999959,10776105:245700 -k1,14588:13697281,10776105:245700 -k1,14588:15368389,10776105:245700 -k1,14588:17475968,10776105:245701 -k1,14588:18713228,10776105:245700 -k1,14588:20826704,10776105:245700 -k1,14588:23857029,10776105:245700 -k1,14588:28949773,10776105:245701 -k1,14588:30884991,10776105:245700 -k1,14588:32583029,10776105:0 -) -(1,14589:6630773,11617593:25952256,513147,126483 -k1,14588:7893703,11617593:196659 -k1,14588:11441217,11617593:196658 -k1,14588:13018064,11617593:196659 -k1,14588:14206282,11617593:196658 -k1,14588:16270717,11617593:196659 -k1,14588:17892783,11617593:196658 -k1,14588:20107951,11617593:196659 -k1,14588:21737226,11617593:196658 -k1,14588:22348725,11617593:196656 -k1,14588:25305759,11617593:196658 -k1,14588:27696563,11617593:196659 -k1,14588:30419634,11617593:196658 -k1,14588:31563944,11617593:196659 -k1,14588:32583029,11617593:0 -) -(1,14589:6630773,12459081:25952256,513147,126483 -k1,14588:9427253,12459081:241887 -k1,14588:10328433,12459081:241888 -k1,14588:11995728,12459081:241887 -k1,14588:14082453,12459081:241887 -k1,14588:15887375,12459081:241888 -k1,14588:17818780,12459081:241887 -k1,14588:20845293,12459081:241888 -k1,14588:25760552,12459081:241887 -k1,14588:27106721,12459081:241887 -k1,14588:28096375,12459081:241888 -k1,14588:31189078,12459081:241887 -k1,14588:32583029,12459081:0 -) -(1,14589:6630773,13300569:25952256,513147,102891 -g1,14588:8947470,13300569 -g1,14588:10959425,13300569 -g1,14588:13650333,13300569 -g1,14588:18117922,13300569 -g1,14588:20808830,13300569 -g1,14588:22199504,13300569 -g1,14588:24959880,13300569 -k1,14589:32583029,13300569:5131470 -g1,14589:32583029,13300569 -) -(1,14591:6630773,14142057:25952256,505283,126483 -h1,14590:6630773,14142057:983040,0,0 -k1,14590:9384378,14142057:167554 -k1,14590:11396769,14142057:167553 -k1,14590:12953686,14142057:167554 -k1,14590:14112800,14142057:167554 -k1,14590:15669716,14142057:167553 -k1,14590:18681533,14142057:167554 -k1,14590:19465125,14142057:167554 -k1,14590:21126244,14142057:167553 -k1,14590:21649658,14142057:167554 -k1,14590:23055187,14142057:167554 -k1,14590:24507246,14142057:167553 -k1,14590:26329584,14142057:167554 -k1,14590:27028635,14142057:167554 -k1,14590:28571789,14142057:167553 -k1,14590:29896053,14142057:167554 -k1,14591:32583029,14142057:0 -) -(1,14591:6630773,14983545:25952256,513147,126483 -k1,14590:8276735,14983545:204825 -k1,14590:11125283,14983545:204826 -k1,14590:11989400,14983545:204825 -k1,14590:14865472,14983545:204825 -k1,14590:18085609,14983545:204826 -k1,14590:21074403,14983545:204825 -k1,14590:21891990,14983545:204825 -k1,14590:23548437,14983545:204825 -k1,14590:25441470,14983545:204826 -k1,14590:26262333,14983545:204825 -k1,14590:28066236,14983545:204825 -k1,14590:29651906,14983545:204826 -k1,14590:31358816,14983545:204825 -k1,14591:32583029,14983545:0 -) -(1,14591:6630773,15825033:25952256,513147,126483 -k1,14590:8105879,15825033:207640 -k1,14590:11716148,15825033:207640 -k1,14590:13299388,15825033:207639 -k1,14590:14526113,15825033:207640 -k1,14590:16335453,15825033:207640 -k1,14590:18164454,15825033:207640 -k1,14590:20747118,15825033:207639 -k1,14590:21614050,15825033:207640 -k1,14590:25304929,15825033:207640 -k1,14590:28240833,15825033:207640 -k1,14590:29076307,15825033:207639 -k1,14590:30885647,15825033:207640 -k1,14590:32583029,15825033:0 -) -(1,14591:6630773,16666521:25952256,513147,134348 -k1,14590:8232363,16666521:176182 -k1,14590:10094132,16666521:176183 -k1,14590:11261874,16666521:176182 -k1,14590:12097349,16666521:176183 -k1,14590:14872034,16666521:176182 -k1,14590:17795485,16666521:176182 -k1,14590:19163113,16666521:176183 -k1,14590:21104180,16666521:176182 -k1,14590:24294364,16666521:176183 -k1,14590:26356017,16666521:176182 -k1,14590:29618946,16666521:176183 -k1,14590:31184491,16666521:176182 -k1,14591:32583029,16666521:0 -) -(1,14591:6630773,17508009:25952256,513147,134348 -k1,14590:8434652,17508009:187761 -k1,14590:9813859,17508009:187762 -k1,14590:12522790,17508009:187761 -k1,14590:13125383,17508009:187750 -k1,14590:14379415,17508009:187761 -k1,14590:15942778,17508009:187762 -k1,14590:18890915,17508009:187761 -k1,14590:21863302,17508009:187762 -k1,14590:22998714,17508009:187761 -k1,14590:24205560,17508009:187761 -k1,14590:26947915,17508009:187762 -k1,14590:28327121,17508009:187761 -k1,14590:32583029,17508009:0 -) -(1,14591:6630773,18349497:25952256,513147,134348 -k1,14590:7572816,18349497:282751 -k1,14590:11512476,18349497:282751 -k1,14590:12867396,18349497:282751 -k1,14590:14435962,18349497:282750 -k1,14590:15074573,18349497:282751 -k1,14590:18910686,18349497:282751 -k1,14590:20748606,18349497:282751 -k1,14590:21979008,18349497:282751 -k1,14590:23770398,18349497:282751 -k1,14590:26574318,18349497:282750 -(1,14590:26574318,18349497:0,452978,115847 -r1,14649:27987719,18349497:1413401,568825,115847 -k1,14590:26574318,18349497:-1413401 -) -(1,14590:26574318,18349497:1413401,452978,115847 -k1,14590:26574318,18349497:3277 -h1,14590:27984442,18349497:0,411205,112570 -) -k1,14590:28444140,18349497:282751 -k1,14590:31157621,18349497:282751 -k1,14590:32583029,18349497:0 -) -(1,14591:6630773,19190985:25952256,505283,134348 -k1,14590:8559833,19190985:243474 -k1,14590:10484961,19190985:243474 -k1,14590:12378632,19190985:243474 -k1,14590:15337264,19190985:243475 -k1,14590:19826160,19190985:243474 -k1,14590:20425494,19190985:243474 -(1,14590:20425494,19190985:0,414482,115847 -r1,14649:21135472,19190985:709978,530329,115847 -k1,14590:20425494,19190985:-709978 -) -(1,14590:20425494,19190985:709978,414482,115847 -k1,14590:20425494,19190985:3277 -h1,14590:21132195,19190985:0,411205,112570 -) -k1,14590:21378946,19190985:243474 -k1,14590:23581946,19190985:243474 -k1,14590:25318330,19190985:243474 -k1,14590:26628076,19190985:243475 -k1,14590:28401816,19190985:243474 -k1,14590:29296718,19190985:243474 -k1,14590:31157621,19190985:243474 -k1,14590:32583029,19190985:0 -) -(1,14591:6630773,20032473:25952256,513147,126483 -k1,14590:8881733,20032473:240315 -k1,14590:10069700,20032473:240316 -k1,14590:11761637,20032473:240315 -k1,14590:15743403,20032473:240316 -k1,14590:17055887,20032473:240315 -k1,14590:19623386,20032473:240316 -k1,14590:20219561,20032473:240315 -k1,14590:24447743,20032473:240316 -k1,14590:25347350,20032473:240315 -k1,14590:26760105,20032473:240316 -k1,14590:27659712,20032473:240315 -k1,14590:29388351,20032473:240316 -k1,14590:31227744,20032473:240315 -k1,14590:32583029,20032473:0 -) -(1,14591:6630773,20873961:25952256,505283,7863 -g1,14590:8098779,20873961 -g1,14590:9489453,20873961 -g1,14590:10871607,20873961 -k1,14591:32583029,20873961:20112344 -g1,14591:32583029,20873961 -) -(1,14593:6630773,21715449:25952256,513147,134348 -h1,14592:6630773,21715449:983040,0,0 -k1,14592:8816680,21715449:249318 -k1,14592:10554320,21715449:249317 -k1,14592:11565166,21715449:249318 -k1,14592:14386772,21715449:249318 -k1,14592:14991950,21715449:249318 -k1,14592:16666675,21715449:249317 -k1,14592:18760831,21715449:249318 -k1,14592:20577770,21715449:249318 -k1,14592:21182947,21715449:249317 -k1,14592:24052394,21715449:249318 -k1,14592:26453259,21715449:249318 -k1,14592:27462795,21715449:249318 -k1,14592:29216163,21715449:249317 -k1,14592:30635954,21715449:249318 -k1,14592:32583029,21715449:0 -) -(1,14593:6630773,22556937:25952256,505283,134348 -k1,14592:9356784,22556937:160932 -k1,14592:10802223,22556937:160933 -k1,14592:12133628,22556937:160932 -k1,14592:13824826,22556937:160932 -k1,14592:14637187,22556937:160933 -k1,14592:15890604,22556937:160932 -k1,14592:16407396,22556937:160932 -k1,14592:20275044,22556937:160932 -k1,14592:22303753,22556937:160933 -(1,14592:22303753,22556937:0,452978,115847 -r1,14649:23717154,22556937:1413401,568825,115847 -k1,14592:22303753,22556937:-1413401 -) -(1,14592:22303753,22556937:1413401,452978,115847 -k1,14592:22303753,22556937:3277 -h1,14592:23713877,22556937:0,411205,112570 -) -k1,14592:23878086,22556937:160932 -k1,14592:24721903,22556937:160932 -k1,14592:25238696,22556937:160933 -k1,14592:28876313,22556937:160932 -k1,14592:32583029,22556937:0 -) -(1,14593:6630773,23398425:25952256,505283,134348 -k1,14592:8684967,23398425:186418 -(1,14592:8684967,23398425:0,452978,115847 -r1,14649:11153504,23398425:2468537,568825,115847 -k1,14592:8684967,23398425:-2468537 -) -(1,14592:8684967,23398425:2468537,452978,115847 -k1,14592:8684967,23398425:3277 -h1,14592:11150227,23398425:0,411205,112570 -) -k1,14592:11339921,23398425:186417 -k1,14592:12717784,23398425:186418 -k1,14592:14188707,23398425:186417 -k1,14592:15545598,23398425:186418 -k1,14592:16836297,23398425:186417 -k1,14592:18409457,23398425:186418 -k1,14592:19431459,23398425:186418 -k1,14592:20636961,23398425:186417 -k1,14592:24226008,23398425:186418 -k1,14592:25792613,23398425:186417 -k1,14592:28027031,23398425:186418 -k1,14592:28974976,23398425:186417 -k1,14592:31563944,23398425:186418 -k1,14592:32583029,23398425:0 -) -(1,14593:6630773,24239913:25952256,513147,134348 -k1,14592:11538503,24239913:284165 -k1,14592:13210721,24239913:284165 -k1,14592:15323339,24239913:284164 -k1,14592:17001455,24239913:284165 -(1,14592:17001455,24239913:0,452978,115847 -r1,14649:19821704,24239913:2820249,568825,115847 -k1,14592:17001455,24239913:-2820249 -) -(1,14592:17001455,24239913:2820249,452978,115847 -k1,14592:17001455,24239913:3277 -h1,14592:19818427,24239913:0,411205,112570 -) -k1,14592:20279539,24239913:284165 -k1,14592:21760391,24239913:284165 -(1,14592:21760391,24239913:0,452978,115847 -r1,14649:24228928,24239913:2468537,568825,115847 -k1,14592:21760391,24239913:-2468537 -) -(1,14592:21760391,24239913:2468537,452978,115847 -k1,14592:21760391,24239913:3277 -h1,14592:24225651,24239913:0,411205,112570 -) -k1,14592:24513093,24239913:284165 -k1,14592:27251581,24239913:284165 -k1,14592:28483396,24239913:284164 -(1,14592:28483396,24239913:0,414482,115847 -r1,14649:29193374,24239913:709978,530329,115847 -k1,14592:28483396,24239913:-709978 -) -(1,14592:28483396,24239913:709978,414482,115847 -k1,14592:28483396,24239913:3277 -h1,14592:29190097,24239913:0,411205,112570 -) -k1,14592:29477539,24239913:284165 -k1,14592:32051532,24239913:284165 -k1,14592:32583029,24239913:0 -) -(1,14593:6630773,25081401:25952256,513147,134348 -k1,14592:9164675,25081401:166086 -k1,14592:10522206,25081401:166086 -k1,14592:13023995,25081401:166086 -k1,14592:14209166,25081401:166086 -k1,14592:17023562,25081401:166086 -k1,14592:20306540,25081401:166086 -k1,14592:21124053,25081401:166085 -k1,14592:22309224,25081401:166086 -k1,14592:23900718,25081401:166086 -k1,14592:25422089,25081401:166086 -k1,14592:26271060,25081401:166086 -(1,14592:26271060,25081401:0,452978,115847 -r1,14649:28387885,25081401:2116825,568825,115847 -k1,14592:26271060,25081401:-2116825 -) -(1,14592:26271060,25081401:2116825,452978,115847 -k1,14592:26271060,25081401:3277 -h1,14592:28384608,25081401:0,411205,112570 -) -k1,14592:28553971,25081401:166086 -k1,14592:29379349,25081401:166086 -k1,14592:30564520,25081401:166086 -k1,14593:32583029,25081401:0 -k1,14593:32583029,25081401:0 -) -v1,14595:6630773,26271867:0,393216,0 -(1,14604:6630773,28487455:25952256,2608804,196608 -g1,14604:6630773,28487455 -g1,14604:6630773,28487455 -g1,14604:6434165,28487455 -(1,14604:6434165,28487455:0,2608804,196608 -r1,14649:32779637,28487455:26345472,2805412,196608 -k1,14604:6434165,28487455:-26345472 -) -(1,14604:6434165,28487455:26345472,2608804,196608 -[1,14604:6630773,28487455:25952256,2412196,0 -(1,14597:6630773,26479485:25952256,404226,101187 -(1,14596:6630773,26479485:0,0,0 -g1,14596:6630773,26479485 -g1,14596:6630773,26479485 -g1,14596:6303093,26479485 -(1,14596:6303093,26479485:0,0,0 -) -g1,14596:6630773,26479485 -) -g1,14597:8527647,26479485 -g1,14597:9476085,26479485 -g1,14597:12321397,26479485 -g1,14597:14218271,26479485 -g1,14597:14850563,26479485 -g1,14597:16747438,26479485 -g1,14597:18960458,26479485 -g1,14597:19592750,26479485 -h1,14597:21173479,26479485:0,0,0 -k1,14597:32583029,26479485:11409550 -g1,14597:32583029,26479485 -) -(1,14598:6630773,27145663:25952256,404226,101187 -h1,14598:6630773,27145663:0,0,0 -k1,14598:6630773,27145663:0 -h1,14598:10424521,27145663:0,0,0 -k1,14598:32583029,27145663:22158508 -g1,14598:32583029,27145663 -) -(1,14603:6630773,27811841:25952256,404226,107478 -(1,14600:6630773,27811841:0,0,0 -g1,14600:6630773,27811841 -g1,14600:6630773,27811841 -g1,14600:6303093,27811841 -(1,14600:6303093,27811841:0,0,0 -) -g1,14600:6630773,27811841 -) -g1,14603:7579210,27811841 -g1,14603:7895356,27811841 -g1,14603:8211502,27811841 -g1,14603:8527648,27811841 -g1,14603:8843794,27811841 -g1,14603:9159940,27811841 -g1,14603:10424523,27811841 -g1,14603:11689106,27811841 -g1,14603:12953689,27811841 -g1,14603:14218272,27811841 -g1,14603:15482855,27811841 -g1,14603:16747438,27811841 -g1,14603:18012021,27811841 -g1,14603:19276604,27811841 -g1,14603:20541187,27811841 -h1,14603:21489624,27811841:0,0,0 -k1,14603:32583029,27811841:11093405 -g1,14603:32583029,27811841 -) -(1,14603:6630773,28478019:25952256,388497,9436 -h1,14603:6630773,28478019:0,0,0 -g1,14603:7579210,28478019 -g1,14603:9159939,28478019 -g1,14603:9476085,28478019 -g1,14603:9792231,28478019 -g1,14603:10424523,28478019 -g1,14603:10740669,28478019 -g1,14603:11056815,28478019 -g1,14603:11689107,28478019 -g1,14603:12005253,28478019 -g1,14603:12321399,28478019 -g1,14603:12953691,28478019 -g1,14603:13269837,28478019 -g1,14603:13585983,28478019 -g1,14603:14218275,28478019 -g1,14603:14534421,28478019 -g1,14603:14850567,28478019 -g1,14603:15482859,28478019 -g1,14603:15799005,28478019 -g1,14603:16115151,28478019 -g1,14603:16747443,28478019 -g1,14603:17063589,28478019 -g1,14603:17379735,28478019 -g1,14603:18012027,28478019 -g1,14603:18328173,28478019 -g1,14603:18644319,28478019 -g1,14603:19276611,28478019 -g1,14603:19592757,28478019 -g1,14603:19908903,28478019 -g1,14603:20541195,28478019 -g1,14603:20857341,28478019 -h1,14603:21489632,28478019:0,0,0 -k1,14603:32583029,28478019:11093397 -g1,14603:32583029,28478019 -) -] -) -g1,14604:32583029,28487455 -g1,14604:6630773,28487455 -g1,14604:6630773,28487455 -g1,14604:32583029,28487455 -g1,14604:32583029,28487455 -) -h1,14604:6630773,28684063:0,0,0 -(1,14608:6630773,30049839:25952256,513147,134348 -h1,14607:6630773,30049839:983040,0,0 -k1,14607:9086056,30049839:275556 -k1,14607:12293037,30049839:275556 -k1,14607:13227884,30049839:275555 -k1,14607:14522525,30049839:275556 -(1,14607:14522525,30049839:0,414482,115847 -r1,14649:15232503,30049839:709978,530329,115847 -k1,14607:14522525,30049839:-709978 -) -(1,14607:14522525,30049839:709978,414482,115847 -k1,14607:14522525,30049839:3277 -h1,14607:15229226,30049839:0,411205,112570 -) -k1,14607:15508059,30049839:275556 -k1,14607:17743141,30049839:275556 -k1,14607:18550194,30049839:275556 -k1,14607:21124097,30049839:275555 -k1,14607:22199848,30049839:275556 -k1,14607:24257983,30049839:275556 -k1,14607:25065036,30049839:275556 -(1,14607:25065036,30049839:0,452978,115847 -r1,14649:27533573,30049839:2468537,568825,115847 -k1,14607:25065036,30049839:-2468537 -) -(1,14607:25065036,30049839:2468537,452978,115847 -k1,14607:25065036,30049839:3277 -h1,14607:27530296,30049839:0,411205,112570 -) -k1,14607:27809129,30049839:275556 -k1,14607:29156853,30049839:275555 -k1,14607:30220807,30049839:275556 -k1,14607:32051532,30049839:275556 -k1,14608:32583029,30049839:0 -) -(1,14608:6630773,30891327:25952256,513147,115847 -(1,14607:6630773,30891327:0,414482,115847 -r1,14649:7340751,30891327:709978,530329,115847 -k1,14607:6630773,30891327:-709978 -) -(1,14607:6630773,30891327:709978,414482,115847 -k1,14607:6630773,30891327:3277 -h1,14607:7337474,30891327:0,411205,112570 -) -k1,14607:7716781,30891327:202360 -k1,14607:8389034,30891327:202360 -k1,14607:9122891,30891327:202360 -k1,14607:11527260,30891327:202359 -k1,14607:12381048,30891327:202360 -k1,14607:12939268,30891327:202360 -k1,14607:15761757,30891327:202360 -k1,14607:17941994,30891327:202360 -k1,14607:19538305,30891327:202360 -k1,14607:20759750,30891327:202360 -k1,14607:23628115,30891327:202360 -k1,14607:24489766,30891327:202359 -k1,14607:25848836,30891327:202360 -k1,14607:29160224,30891327:202360 -k1,14607:31521340,30891327:202360 -(1,14607:31521340,30891327:0,414482,115847 -r1,14649:32583029,30891327:1061689,530329,115847 -k1,14607:31521340,30891327:-1061689 -) -(1,14607:31521340,30891327:1061689,414482,115847 -k1,14607:31521340,30891327:3277 -h1,14607:32579752,30891327:0,411205,112570 -) -k1,14607:32583029,30891327:0 -) -(1,14608:6630773,31732815:25952256,513147,134348 -k1,14607:10204826,31732815:261863 -k1,14607:11485774,31732815:261863 -k1,14607:13173045,31732815:261863 -k1,14607:15294164,31732815:261863 -k1,14607:16242189,31732815:261863 -k1,14607:16859912,31732815:261863 -k1,14607:19741904,31732815:261863 -k1,14607:21981645,31732815:261864 -k1,14607:22902800,31732815:261863 -k1,14607:25177929,31732815:261863 -k1,14607:26011921,31732815:261863 -k1,14607:28196610,31732815:261863 -k1,14607:29946796,31732815:261863 -k1,14607:31400104,31732815:261863 -k1,14607:32583029,31732815:0 -) -(1,14608:6630773,32574303:25952256,513147,126483 -g1,14607:8255410,32574303 -g1,14607:9646084,32574303 -g1,14607:10864398,32574303 -g1,14607:12332404,32574303 -g1,14607:13190925,32574303 -g1,14607:14409239,32574303 -k1,14608:32583029,32574303:16314534 -g1,14608:32583029,32574303 -) -v1,14610:6630773,33764769:0,393216,0 -(1,14645:6630773,45330162:25952256,11958609,196608 -g1,14645:6630773,45330162 -g1,14645:6630773,45330162 -g1,14645:6434165,45330162 -(1,14645:6434165,45330162:0,11958609,196608 -r1,14649:32779637,45330162:26345472,12155217,196608 -k1,14645:6434165,45330162:-26345472 -) -(1,14645:6434165,45330162:26345472,11958609,196608 -[1,14645:6630773,45330162:25952256,11762001,0 -(1,14612:6630773,33972387:25952256,404226,101187 -(1,14611:6630773,33972387:0,0,0 -g1,14611:6630773,33972387 -g1,14611:6630773,33972387 -g1,14611:6303093,33972387 -(1,14611:6303093,33972387:0,0,0 -) -g1,14611:6630773,33972387 -) -k1,14612:6630773,33972387:0 -h1,14612:10108376,33972387:0,0,0 -k1,14612:32583028,33972387:22474652 -g1,14612:32583028,33972387 -) -(1,14616:6630773,34638565:25952256,404226,76021 -(1,14614:6630773,34638565:0,0,0 -g1,14614:6630773,34638565 -g1,14614:6630773,34638565 -g1,14614:6303093,34638565 -(1,14614:6303093,34638565:0,0,0 -) -g1,14614:6630773,34638565 -) -g1,14616:7579210,34638565 -g1,14616:8843793,34638565 -h1,14616:11689104,34638565:0,0,0 -k1,14616:32583028,34638565:20893924 -g1,14616:32583028,34638565 -) -(1,14618:6630773,35960103:25952256,404226,101187 -(1,14617:6630773,35960103:0,0,0 -g1,14617:6630773,35960103 -g1,14617:6630773,35960103 -g1,14617:6303093,35960103 -(1,14617:6303093,35960103:0,0,0 -) -g1,14617:6630773,35960103 -) -k1,14618:6630773,35960103:0 -h1,14618:10424521,35960103:0,0,0 -k1,14618:32583029,35960103:22158508 -g1,14618:32583029,35960103 -) -(1,14622:6630773,36626281:25952256,404226,76021 -(1,14620:6630773,36626281:0,0,0 -g1,14620:6630773,36626281 -g1,14620:6630773,36626281 -g1,14620:6303093,36626281 -(1,14620:6303093,36626281:0,0,0 -) -g1,14620:6630773,36626281 -) -g1,14622:7579210,36626281 -g1,14622:8843793,36626281 -h1,14622:10108376,36626281:0,0,0 -k1,14622:32583028,36626281:22474652 -g1,14622:32583028,36626281 -) -(1,14624:6630773,37947819:25952256,404226,101187 -(1,14623:6630773,37947819:0,0,0 -g1,14623:6630773,37947819 -g1,14623:6630773,37947819 -g1,14623:6303093,37947819 -(1,14623:6303093,37947819:0,0,0 -) -g1,14623:6630773,37947819 -) -k1,14624:6630773,37947819:0 -h1,14624:10424521,37947819:0,0,0 -k1,14624:32583029,37947819:22158508 -g1,14624:32583029,37947819 -) -(1,14628:6630773,38613997:25952256,404226,76021 -(1,14626:6630773,38613997:0,0,0 -g1,14626:6630773,38613997 -g1,14626:6630773,38613997 -g1,14626:6303093,38613997 -(1,14626:6303093,38613997:0,0,0 -) -g1,14626:6630773,38613997 -) -g1,14628:7579210,38613997 -g1,14628:8843793,38613997 -h1,14628:10108376,38613997:0,0,0 -k1,14628:32583028,38613997:22474652 -g1,14628:32583028,38613997 -) -(1,14630:6630773,39935535:25952256,404226,101187 -(1,14629:6630773,39935535:0,0,0 -g1,14629:6630773,39935535 -g1,14629:6630773,39935535 -g1,14629:6303093,39935535 -(1,14629:6303093,39935535:0,0,0 -) -g1,14629:6630773,39935535 -) -k1,14630:6630773,39935535:0 -h1,14630:9792230,39935535:0,0,0 -k1,14630:32583030,39935535:22790800 -g1,14630:32583030,39935535 -) -(1,14634:6630773,40601713:25952256,410518,76021 -(1,14632:6630773,40601713:0,0,0 -g1,14632:6630773,40601713 -g1,14632:6630773,40601713 -g1,14632:6303093,40601713 -(1,14632:6303093,40601713:0,0,0 -) -g1,14632:6630773,40601713 -) -g1,14634:7579210,40601713 -g1,14634:7895356,40601713 -g1,14634:11689105,40601713 -g1,14634:13902125,40601713 -g1,14634:15482854,40601713 -g1,14634:17063583,40601713 -g1,14634:18012020,40601713 -g1,14634:19908894,40601713 -g1,14634:20541186,40601713 -g1,14634:21173478,40601713 -g1,14634:21805770,40601713 -g1,14634:22438062,40601713 -g1,14634:23070354,40601713 -g1,14634:23702646,40601713 -g1,14634:24334938,40601713 -g1,14634:24967230,40601713 -g1,14634:25599522,40601713 -h1,14634:26231813,40601713:0,0,0 -k1,14634:32583029,40601713:6351216 -g1,14634:32583029,40601713 -) -(1,14636:6630773,41923251:25952256,404226,101187 -(1,14635:6630773,41923251:0,0,0 -g1,14635:6630773,41923251 -g1,14635:6630773,41923251 -g1,14635:6303093,41923251 -(1,14635:6303093,41923251:0,0,0 -) -g1,14635:6630773,41923251 -) -k1,14636:6630773,41923251:0 -h1,14636:12005250,41923251:0,0,0 -k1,14636:32583030,41923251:20577780 -g1,14636:32583030,41923251 -) -(1,14644:6630773,42589429:25952256,410518,101187 -(1,14638:6630773,42589429:0,0,0 -g1,14638:6630773,42589429 -g1,14638:6630773,42589429 -g1,14638:6303093,42589429 -(1,14638:6303093,42589429:0,0,0 -) -g1,14638:6630773,42589429 -) -g1,14644:7579210,42589429 -h1,14644:8843793,42589429:0,0,0 -k1,14644:32583029,42589429:23739236 -g1,14644:32583029,42589429 -) -(1,14644:6630773,43255607:25952256,404226,76021 -h1,14644:6630773,43255607:0,0,0 -g1,14644:7579210,43255607 -g1,14644:8843793,43255607 -g1,14644:11372959,43255607 -g1,14644:13902125,43255607 -g1,14644:14218271,43255607 -g1,14644:14534417,43255607 -h1,14644:16115145,43255607:0,0,0 -k1,14644:32583029,43255607:16467884 -g1,14644:32583029,43255607 -) -(1,14644:6630773,43921785:25952256,379060,0 -h1,14644:6630773,43921785:0,0,0 -h1,14644:7263064,43921785:0,0,0 -k1,14644:32583028,43921785:25319964 -g1,14644:32583028,43921785 -) -(1,14644:6630773,44587963:25952256,410518,31456 -h1,14644:6630773,44587963:0,0,0 -g1,14644:7579210,44587963 -h1,14644:9476084,44587963:0,0,0 -k1,14644:32583028,44587963:23106944 -g1,14644:32583028,44587963 -) -(1,14644:6630773,45254141:25952256,404226,76021 -h1,14644:6630773,45254141:0,0,0 -g1,14644:7579210,45254141 -g1,14644:8843793,45254141 -h1,14644:10108376,45254141:0,0,0 -k1,14644:32583028,45254141:22474652 -g1,14644:32583028,45254141 -) -] -) -g1,14645:32583029,45330162 -g1,14645:6630773,45330162 -g1,14645:6630773,45330162 -g1,14645:32583029,45330162 -g1,14645:32583029,45330162 -) -h1,14645:6630773,45526770:0,0,0 -] -(1,14649:32583029,45706769:0,0,0 -g1,14649:32583029,45706769 -) -) -] -(1,14649:6630773,47279633:25952256,0,0 -h1,14649:6630773,47279633:25952256,0,0 -) -] -(1,14649:4262630,4025873:0,0,0 -[1,14649:-473656,4025873:0,0,0 -(1,14649:-473656,-710413:0,0,0 -(1,14649:-473656,-710413:0,0,0 -g1,14649:-473656,-710413 -) -g1,14649:-473656,-710413 -) -] ) ] -!27287 -}247 +(1,14278:6630773,47279633:25952256,0,0 +h1,14278:6630773,47279633:25952256,0,0 +) +] +(1,14278:4262630,4025873:0,0,0 +[1,14278:-473656,4025873:0,0,0 +(1,14278:-473656,-710413:0,0,0 +(1,14278:-473656,-710413:0,0,0 +g1,14278:-473656,-710413 +) +g1,14278:-473656,-710413 +) +] +) +] +!28862 +}229 +Input:2180:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2181:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2182:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2183:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!294 -{248 -[1,14718:4262630,47279633:28320399,43253760,0 -(1,14718:4262630,4025873:0,0,0 -[1,14718:-473656,4025873:0,0,0 -(1,14718:-473656,-710413:0,0,0 -(1,14718:-473656,-644877:0,0,0 -k1,14718:-473656,-644877:-65536 +Input:2184:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2185:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2186:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!670 +{230 +[1,14296:4262630,47279633:28320399,43253760,0 +(1,14296:4262630,4025873:0,0,0 +[1,14296:-473656,4025873:0,0,0 +(1,14296:-473656,-710413:0,0,0 +(1,14296:-473656,-644877:0,0,0 +k1,14296:-473656,-644877:-65536 ) -(1,14718:-473656,4736287:0,0,0 -k1,14718:-473656,4736287:5209943 +(1,14296:-473656,4736287:0,0,0 +k1,14296:-473656,4736287:5209943 ) -g1,14718:-473656,-710413 +g1,14296:-473656,-710413 ) ] ) -[1,14718:6630773,47279633:25952256,43253760,0 -[1,14718:6630773,4812305:25952256,786432,0 -(1,14718:6630773,4812305:25952256,485622,11795 -(1,14718:6630773,4812305:25952256,485622,11795 -g1,14718:3078558,4812305 -[1,14718:3078558,4812305:0,0,0 -(1,14718:3078558,2439708:0,1703936,0 -k1,14718:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,14718:2537886,2439708:1179648,16384,0 +[1,14296:6630773,47279633:25952256,43253760,0 +[1,14296:6630773,4812305:25952256,786432,0 +(1,14296:6630773,4812305:25952256,513147,126483 +(1,14296:6630773,4812305:25952256,513147,126483 +g1,14296:3078558,4812305 +[1,14296:3078558,4812305:0,0,0 +(1,14296:3078558,2439708:0,1703936,0 +k1,14296:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,14296:2537886,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,14718:3078558,1915420:16384,1179648,0 +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,14296:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] ) ) ) ] -[1,14718:3078558,4812305:0,0,0 -(1,14718:3078558,2439708:0,1703936,0 -g1,14718:29030814,2439708 -g1,14718:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,14718:36151628,1915420:16384,1179648,0 +[1,14296:3078558,4812305:0,0,0 +(1,14296:3078558,2439708:0,1703936,0 +g1,14296:29030814,2439708 +g1,14296:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,14296:36151628,1915420:16384,1179648,0 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,14718:37855564,2439708:1179648,16384,0 +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,14296:37855564,2439708:1179648,16384,0 ) ) -k1,14718:3078556,2439708:-34777008 +k1,14296:3078556,2439708:-34777008 ) ] -[1,14718:3078558,4812305:0,0,0 -(1,14718:3078558,49800853:0,16384,2228224 -k1,14718:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,14718:2537886,49800853:1179648,16384,0 +[1,14296:3078558,4812305:0,0,0 +(1,14296:3078558,49800853:0,16384,2228224 +k1,14296:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,14296:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,14718:3078558,51504789:16384,1179648,0 +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,14296:3078558,51504789:16384,1179648,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 ) ] ) ) ) ] -[1,14718:3078558,4812305:0,0,0 -(1,14718:3078558,49800853:0,16384,2228224 -g1,14718:29030814,49800853 -g1,14718:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,14718:36151628,51504789:16384,1179648,0 +[1,14296:3078558,4812305:0,0,0 +(1,14296:3078558,49800853:0,16384,2228224 +g1,14296:29030814,49800853 +g1,14296:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,14296:36151628,51504789:16384,1179648,0 +) +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 +) +] +) +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,14296:37855564,49800853:1179648,16384,0 +) +) +k1,14296:3078556,49800853:-34777008 +) +] +g1,14296:6630773,4812305 +g1,14296:6630773,4812305 +g1,14296:8691224,4812305 +g1,14296:11722264,4812305 +k1,14296:31387652,4812305:19665388 +) +) +] +[1,14296:6630773,45706769:25952256,40108032,0 +(1,14296:6630773,45706769:25952256,40108032,0 +(1,14296:6630773,45706769:0,0,0 +g1,14296:6630773,45706769 +) +[1,14296:6630773,45706769:25952256,40108032,0 +v1,14278:6630773,6254097:0,393216,0 +(1,14278:6630773,27004178:25952256,21143297,0 +g1,14278:6630773,27004178 +g1,14278:6237557,27004178 +r1,14296:6368629,27004178:131072,21143297,0 +g1,14278:6567858,27004178 +g1,14278:6764466,27004178 +[1,14278:6764466,27004178:25818563,21143297,0 +(1,14211:6764466,6374028:25818563,513147,134348 +k1,14210:8010251,6374028:226700 +k1,14210:10954074,6374028:226700 +k1,14210:12222796,6374028:226700 +k1,14210:14473903,6374028:226700 +k1,14210:17182451,6374028:226700 +k1,14210:17867248,6374028:226700 +k1,14210:19586857,6374028:226699 +k1,14210:21824202,6374028:226700 +k1,14210:23069987,6374028:226700 +k1,14210:25782468,6374028:226700 +k1,14210:26668460,6374028:226700 +k1,14210:29518566,6374028:226700 +k1,14210:32583029,6374028:0 +) +(1,14211:6764466,7239108:25818563,513147,134348 +k1,14210:9510220,7239108:217375 +k1,14210:10386887,7239108:217375 +k1,14210:11981173,7239108:217375 +k1,14210:12656646,7239108:217376 +k1,14210:13405518,7239108:217375 +k1,14210:15520160,7239108:217375 +k1,14210:16388963,7239108:217375 +k1,14210:18223767,7239108:217375 +k1,14210:20428849,7239108:217375 +k1,14210:23519978,7239108:217375 +k1,14210:24353391,7239108:217375 +k1,14210:26860595,7239108:217376 +k1,14210:27737262,7239108:217375 +k1,14210:29509806,7239108:217375 +(1,14210:29509806,7239108:0,452978,115847 +r1,14296:30923207,7239108:1413401,568825,115847 +k1,14210:29509806,7239108:-1413401 +) +(1,14210:29509806,7239108:1413401,452978,115847 +k1,14210:29509806,7239108:3277 +h1,14210:30919930,7239108:0,411205,112570 +) +k1,14210:31140582,7239108:217375 +k1,14210:32583029,7239108:0 +) +(1,14211:6764466,8104188:25818563,505283,126483 +g1,14210:7579733,8104188 +g1,14210:10260810,8104188 +g1,14210:11146201,8104188 +(1,14210:11146201,8104188:0,452978,122846 +r1,14296:13966450,8104188:2820249,575824,122846 +k1,14210:11146201,8104188:-2820249 +) +(1,14210:11146201,8104188:2820249,452978,122846 +k1,14210:11146201,8104188:3277 +h1,14210:13963173,8104188:0,411205,112570 +) +g1,14210:14165679,8104188 +g1,14210:18211871,8104188 +g1,14210:20752046,8104188 +g1,14210:21970360,8104188 +g1,14210:25008609,8104188 +g1,14210:26888181,8104188 +g1,14210:27896780,8104188 +k1,14211:32583029,8104188:3188751 +g1,14211:32583029,8104188 +) +v1,14213:6764466,8789043:0,393216,0 +(1,14256:6764466,19710353:25818563,11314526,196608 +g1,14256:6764466,19710353 +g1,14256:6764466,19710353 +g1,14256:6567858,19710353 +(1,14256:6567858,19710353:0,11314526,196608 +r1,14296:32779637,19710353:26211779,11511134,196608 +k1,14256:6567857,19710353:-26211780 +) +(1,14256:6567858,19710353:26211779,11314526,196608 +[1,14256:6764466,19710353:25818563,11117918,0 +(1,14215:6764466,9023480:25818563,431045,112852 +(1,14214:6764466,9023480:0,0,0 +g1,14214:6764466,9023480 +g1,14214:6764466,9023480 +g1,14214:6436786,9023480 +(1,14214:6436786,9023480:0,0,0 +) +g1,14214:6764466,9023480 +) +k1,14215:6764466,9023480:0 +k1,14215:6764466,9023480:0 +h1,14215:12407684,9023480:0,0,0 +k1,14215:32583028,9023480:20175344 +g1,14215:32583028,9023480 +) +(1,14219:6764466,9839407:25818563,424439,79822 +(1,14217:6764466,9839407:0,0,0 +g1,14217:6764466,9839407 +g1,14217:6764466,9839407 +g1,14217:6436786,9839407 +(1,14217:6436786,9839407:0,0,0 +) +g1,14217:6764466,9839407 +) +g1,14219:7760328,9839407 +g1,14219:9088144,9839407 +h1,14219:9420098,9839407:0,0,0 +k1,14219:32583030,9839407:23162932 +g1,14219:32583030,9839407 +) +(1,14221:6764466,10655334:25818563,424439,112852 +(1,14220:6764466,10655334:0,0,0 +g1,14220:6764466,10655334 +g1,14220:6764466,10655334 +g1,14220:6436786,10655334 +(1,14220:6436786,10655334:0,0,0 +) +g1,14220:6764466,10655334 +) +k1,14221:6764466,10655334:0 +g1,14221:9752052,10655334 +g1,14221:10415960,10655334 +h1,14221:11079868,10655334:0,0,0 +k1,14221:32583028,10655334:21503160 +g1,14221:32583028,10655334 +) +(1,14225:6764466,11471261:25818563,424439,79822 +(1,14223:6764466,11471261:0,0,0 +g1,14223:6764466,11471261 +g1,14223:6764466,11471261 +g1,14223:6436786,11471261 +(1,14223:6436786,11471261:0,0,0 +) +g1,14223:6764466,11471261 +) +g1,14225:7760328,11471261 +g1,14225:9088144,11471261 +h1,14225:9420098,11471261:0,0,0 +k1,14225:32583030,11471261:23162932 +g1,14225:32583030,11471261 +) +(1,14227:6764466,12287188:25818563,424439,112852 +(1,14226:6764466,12287188:0,0,0 +g1,14226:6764466,12287188 +g1,14226:6764466,12287188 +g1,14226:6436786,12287188 +(1,14226:6436786,12287188:0,0,0 +) +g1,14226:6764466,12287188 +) +k1,14227:6764466,12287188:0 +g1,14227:9752052,12287188 +g1,14227:10415960,12287188 +h1,14227:11079868,12287188:0,0,0 +k1,14227:32583028,12287188:21503160 +g1,14227:32583028,12287188 +) +(1,14231:6764466,13103115:25818563,424439,79822 +(1,14229:6764466,13103115:0,0,0 +g1,14229:6764466,13103115 +g1,14229:6764466,13103115 +g1,14229:6436786,13103115 +(1,14229:6436786,13103115:0,0,0 +) +g1,14229:6764466,13103115 +) +g1,14231:7760328,13103115 +g1,14231:9088144,13103115 +h1,14231:9420098,13103115:0,0,0 +k1,14231:32583030,13103115:23162932 +g1,14231:32583030,13103115 +) +(1,14233:6764466,13919042:25818563,424439,112852 +(1,14232:6764466,13919042:0,0,0 +g1,14232:6764466,13919042 +g1,14232:6764466,13919042 +g1,14232:6436786,13919042 +(1,14232:6436786,13919042:0,0,0 +) +g1,14232:6764466,13919042 +) +k1,14233:6764466,13919042:0 +g1,14233:9752052,13919042 +g1,14233:10415960,13919042 +h1,14233:11079868,13919042:0,0,0 +k1,14233:32583028,13919042:21503160 +g1,14233:32583028,13919042 +) +(1,14237:6764466,14734969:25818563,424439,79822 +(1,14235:6764466,14734969:0,0,0 +g1,14235:6764466,14734969 +g1,14235:6764466,14734969 +g1,14235:6436786,14734969 +(1,14235:6436786,14734969:0,0,0 +) +g1,14235:6764466,14734969 +) +g1,14237:7760328,14734969 +g1,14237:9088144,14734969 +h1,14237:9420098,14734969:0,0,0 +k1,14237:32583030,14734969:23162932 +g1,14237:32583030,14734969 +) +(1,14239:6764466,15550896:25818563,424439,112852 +(1,14238:6764466,15550896:0,0,0 +g1,14238:6764466,15550896 +g1,14238:6764466,15550896 +g1,14238:6436786,15550896 +(1,14238:6436786,15550896:0,0,0 +) +g1,14238:6764466,15550896 +) +k1,14239:6764466,15550896:0 +g1,14239:10415960,15550896 +g1,14239:11079868,15550896 +g1,14239:12075730,15550896 +g1,14239:12739638,15550896 +g1,14239:13403546,15550896 +h1,14239:14399408,15550896:0,0,0 +k1,14239:32583028,15550896:18183620 +g1,14239:32583028,15550896 +) +(1,14243:6764466,16366823:25818563,424439,79822 +(1,14241:6764466,16366823:0,0,0 +g1,14241:6764466,16366823 +g1,14241:6764466,16366823 +g1,14241:6436786,16366823 +(1,14241:6436786,16366823:0,0,0 +) +g1,14241:6764466,16366823 +) +g1,14243:7760328,16366823 +g1,14243:9088144,16366823 +h1,14243:9420098,16366823:0,0,0 +k1,14243:32583030,16366823:23162932 +g1,14243:32583030,16366823 +) +(1,14245:6764466,17182750:25818563,424439,112852 +(1,14244:6764466,17182750:0,0,0 +g1,14244:6764466,17182750 +g1,14244:6764466,17182750 +g1,14244:6436786,17182750 +(1,14244:6436786,17182750:0,0,0 +) +g1,14244:6764466,17182750 +) +k1,14245:6764466,17182750:0 +g1,14245:11411822,17182750 +g1,14245:12075730,17182750 +h1,14245:13071592,17182750:0,0,0 +k1,14245:32583028,17182750:19511436 +g1,14245:32583028,17182750 +) +(1,14249:6764466,17998677:25818563,424439,79822 +(1,14247:6764466,17998677:0,0,0 +g1,14247:6764466,17998677 +g1,14247:6764466,17998677 +g1,14247:6436786,17998677 +(1,14247:6436786,17998677:0,0,0 +) +g1,14247:6764466,17998677 +) +g1,14249:7760328,17998677 +g1,14249:9088144,17998677 +h1,14249:9420098,17998677:0,0,0 +k1,14249:32583030,17998677:23162932 +g1,14249:32583030,17998677 +) +(1,14251:6764466,18814604:25818563,424439,112852 +(1,14250:6764466,18814604:0,0,0 +g1,14250:6764466,18814604 +g1,14250:6764466,18814604 +g1,14250:6436786,18814604 +(1,14250:6436786,18814604:0,0,0 +) +g1,14250:6764466,18814604 +) +k1,14251:6764466,18814604:0 +g1,14251:11411822,18814604 +g1,14251:12075730,18814604 +g1,14251:13071592,18814604 +g1,14251:13735500,18814604 +g1,14251:14399408,18814604 +h1,14251:15395270,18814604:0,0,0 +k1,14251:32583030,18814604:17187760 +g1,14251:32583030,18814604 +) +(1,14255:6764466,19630531:25818563,424439,79822 +(1,14253:6764466,19630531:0,0,0 +g1,14253:6764466,19630531 +g1,14253:6764466,19630531 +g1,14253:6436786,19630531 +(1,14253:6436786,19630531:0,0,0 +) +g1,14253:6764466,19630531 +) +g1,14255:7760328,19630531 +g1,14255:9088144,19630531 +h1,14255:9420098,19630531:0,0,0 +k1,14255:32583030,19630531:23162932 +g1,14255:32583030,19630531 +) +] +) +g1,14256:32583029,19710353 +g1,14256:6764466,19710353 +g1,14256:6764466,19710353 +g1,14256:32583029,19710353 +g1,14256:32583029,19710353 +) +h1,14256:6764466,19906961:0,0,0 +(1,14260:6764466,20772041:25818563,513147,134348 +h1,14259:6764466,20772041:983040,0,0 +k1,14259:8725099,20772041:159704 +k1,14259:11974826,20772041:159704 +k1,14259:14163524,20772041:159703 +(1,14259:14163524,20772041:0,452978,122846 +r1,14296:16983773,20772041:2820249,575824,122846 +k1,14259:14163524,20772041:-2820249 +) +(1,14259:14163524,20772041:2820249,452978,122846 +k1,14259:14163524,20772041:3277 +h1,14259:16980496,20772041:0,411205,112570 +) +k1,14259:17143477,20772041:159704 +k1,14259:19674929,20772041:159704 +k1,14259:20486061,20772041:159704 +k1,14259:21001624,20772041:159703 +k1,14259:23034347,20772041:159704 +k1,14259:25737503,20772041:159704 +k1,14259:27088652,20772041:159704 +k1,14259:27899784,20772041:159704 +k1,14259:28415347,20772041:159703 +k1,14259:29568577,20772041:159704 +k1,14259:30387573,20772041:159704 +k1,14260:32583029,20772041:0 +) +(1,14260:6764466,21637121:25818563,513147,126483 +k1,14259:7845372,21637121:189616 +k1,14259:10588272,21637121:189617 +k1,14259:14280132,21637121:189616 +k1,14259:15298778,21637121:189616 +k1,14259:16588089,21637121:189617 +(1,14259:16588089,21637121:0,452978,122846 +r1,14296:19408338,21637121:2820249,575824,122846 +k1,14259:16588089,21637121:-2820249 +) +(1,14259:16588089,21637121:2820249,452978,122846 +k1,14259:16588089,21637121:3277 +h1,14259:19405061,21637121:0,411205,112570 +) +k1,14259:19597954,21637121:189616 +k1,14259:20596940,21637121:189616 +k1,14259:22238179,21637121:189617 +k1,14259:25051201,21637121:189616 +k1,14259:25900110,21637121:189617 +k1,14259:26445586,21637121:189616 +k1,14259:27628728,21637121:189616 +k1,14259:28477637,21637121:189617 +k1,14259:31714677,21637121:189616 +k1,14259:32583029,21637121:0 +) +(1,14260:6764466,22502201:25818563,513147,115847 +k1,14259:8043015,22502201:174267 +k1,14259:9309767,22502201:174267 +(1,14259:9309767,22502201:0,452978,115847 +r1,14296:12130016,22502201:2820249,568825,115847 +k1,14259:9309767,22502201:-2820249 +) +(1,14259:9309767,22502201:2820249,452978,115847 +k1,14259:9309767,22502201:3277 +h1,14259:12126739,22502201:0,411205,112570 +) +k1,14259:12477953,22502201:174267 +k1,14259:13470110,22502201:174268 +k1,14259:16339873,22502201:174267 +(1,14259:16339873,22502201:0,452978,115847 +r1,14296:21973816,22502201:5633943,568825,115847 +k1,14259:16339873,22502201:-5633943 +) +(1,14259:16339873,22502201:5633943,452978,115847 +k1,14259:16339873,22502201:3277 +h1,14259:21970539,22502201:0,411205,112570 +) +k1,14259:22148083,22502201:174267 +k1,14259:22853847,22502201:174267 +k1,14259:24094385,22502201:174267 +k1,14259:27779416,22502201:174267 +k1,14259:28822036,22502201:174268 +k1,14259:30282119,22502201:174267 +k1,14259:31931601,22502201:174267 +k1,14259:32583029,22502201:0 +) +(1,14260:6764466,23367281:25818563,513147,115847 +g1,14259:8056180,23367281 +(1,14259:8056180,23367281:0,452978,115847 +r1,14296:10876429,23367281:2820249,568825,115847 +k1,14259:8056180,23367281:-2820249 +) +(1,14259:8056180,23367281:2820249,452978,115847 +k1,14259:8056180,23367281:3277 +h1,14259:10873152,23367281:0,411205,112570 +) +g1,14259:11075658,23367281 +g1,14259:12668838,23367281 +g1,14259:13223927,23367281 +g1,14259:14416682,23367281 +g1,14259:15275203,23367281 +k1,14260:32583029,23367281:14260402 +g1,14260:32583029,23367281 +) +v1,14262:6764466,24052136:0,393216,0 +(1,14275:6764466,26807570:25818563,3148650,196608 +g1,14275:6764466,26807570 +g1,14275:6764466,26807570 +g1,14275:6567858,26807570 +(1,14275:6567858,26807570:0,3148650,196608 +r1,14296:32779637,26807570:26211779,3345258,196608 +k1,14275:6567857,26807570:-26211780 +) +(1,14275:6567858,26807570:26211779,3148650,196608 +[1,14275:6764466,26807570:25818563,2952042,0 +(1,14264:6764466,24279967:25818563,424439,112852 +(1,14263:6764466,24279967:0,0,0 +g1,14263:6764466,24279967 +g1,14263:6764466,24279967 +g1,14263:6436786,24279967 +(1,14263:6436786,24279967:0,0,0 +) +g1,14263:6764466,24279967 +) +k1,14264:6764466,24279967:0 +g1,14264:11411822,24279967 +g1,14264:12075730,24279967 +g1,14264:13071592,24279967 +g1,14264:13735500,24279967 +g1,14264:14399408,24279967 +g1,14264:15395270,24279967 +g1,14264:16059178,24279967 +g1,14264:16723086,24279967 +g1,14264:18050902,24279967 +h1,14264:20374580,24279967:0,0,0 +k1,14264:32583029,24279967:12208449 +g1,14264:32583029,24279967 +) +(1,14268:6764466,25095894:25818563,424439,79822 +(1,14266:6764466,25095894:0,0,0 +g1,14266:6764466,25095894 +g1,14266:6764466,25095894 +g1,14266:6436786,25095894 +(1,14266:6436786,25095894:0,0,0 +) +g1,14266:6764466,25095894 +) +g1,14268:7760328,25095894 +g1,14268:9088144,25095894 +g1,14268:9752052,25095894 +g1,14268:10415960,25095894 +h1,14268:10747914,25095894:0,0,0 +k1,14268:32583030,25095894:21835116 +g1,14268:32583030,25095894 +) +(1,14270:6764466,25911821:25818563,424439,106246 +(1,14269:6764466,25911821:0,0,0 +g1,14269:6764466,25911821 +g1,14269:6764466,25911821 +g1,14269:6436786,25911821 +(1,14269:6436786,25911821:0,0,0 +) +g1,14269:6764466,25911821 +) +k1,14270:6764466,25911821:0 +g1,14270:11411822,25911821 +g1,14270:12075730,25911821 +g1,14270:13071592,25911821 +g1,14270:13735500,25911821 +g1,14270:14399408,25911821 +g1,14270:15395270,25911821 +g1,14270:16059178,25911821 +g1,14270:16723086,25911821 +g1,14270:18050902,25911821 +h1,14270:23030211,25911821:0,0,0 +k1,14270:32583029,25911821:9552818 +g1,14270:32583029,25911821 +) +(1,14274:6764466,26727748:25818563,424439,79822 +(1,14272:6764466,26727748:0,0,0 +g1,14272:6764466,26727748 +g1,14272:6764466,26727748 +g1,14272:6436786,26727748 +(1,14272:6436786,26727748:0,0,0 +) +g1,14272:6764466,26727748 +) +g1,14274:7760328,26727748 +g1,14274:9088144,26727748 +g1,14274:9420098,26727748 +g1,14274:11079868,26727748 +g1,14274:13071592,26727748 +h1,14274:14731362,26727748:0,0,0 +k1,14274:32583030,26727748:17851668 +g1,14274:32583030,26727748 +) +] +) +g1,14275:32583029,26807570 +g1,14275:6764466,26807570 +g1,14275:6764466,26807570 +g1,14275:32583029,26807570 +g1,14275:32583029,26807570 +) +h1,14275:6764466,27004178:0,0,0 +] +g1,14278:32583029,27004178 +) +h1,14278:6630773,27004178:0,0,0 +(1,14281:6630773,27869258:25952256,513147,126483 +h1,14280:6630773,27869258:983040,0,0 +k1,14280:8502898,27869258:261250 +k1,14280:9783233,27869258:261250 +k1,14280:13036203,27869258:261251 +k1,14280:13913491,27869258:261250 +k1,14280:16929219,27869258:261250 +k1,14280:19799457,27869258:261250 +k1,14280:20929059,27869258:261250 +k1,14280:22902765,27869258:261250 +k1,14280:25288693,27869258:261251 +k1,14280:28041622,27869258:261250 +k1,14280:29896708,27869258:261250 +k1,14280:32583029,27869258:0 +) +(1,14281:6630773,28734338:25952256,513147,134348 +k1,14280:8281800,28734338:164015 +k1,14280:9550097,28734338:164015 +k1,14280:10461877,28734338:164014 +k1,14280:12426821,28734338:164015 +k1,14280:16159271,28734338:164015 +k1,14280:18058679,28734338:164015 +k1,14280:19241779,28734338:164015 +k1,14280:21059266,28734338:164014 +k1,14280:23480996,28734338:164015 +k1,14280:25080905,28734338:164015 +k1,14280:25904212,28734338:164015 +k1,14280:27008013,28734338:164015 +k1,14280:28328737,28734338:164014 +k1,14280:29597034,28734338:164015 +k1,14280:31490544,28734338:164015 +k1,14280:32583029,28734338:0 +) +(1,14281:6630773,29599418:25952256,513147,134348 +k1,14280:7437047,29599418:146982 +k1,14280:10330644,29599418:146983 +(1,14280:10330644,29599418:0,414482,115847 +r1,14296:10688910,29599418:358266,530329,115847 +k1,14280:10330644,29599418:-358266 +) +(1,14280:10330644,29599418:358266,414482,115847 +k1,14280:10330644,29599418:3277 +h1,14280:10685633,29599418:0,411205,112570 +) +k1,14280:10835892,29599418:146982 +k1,14280:12174319,29599418:146982 +k1,14280:15218649,29599418:146983 +k1,14280:17326468,29599418:146982 +k1,14280:18239566,29599418:146982 +k1,14280:21579463,29599418:146983 +k1,14280:23318315,29599418:146982 +k1,14280:25566381,29599418:146982 +k1,14280:26904809,29599418:146983 +k1,14280:30847636,29599418:146982 +k1,14280:32583029,29599418:0 +) +(1,14281:6630773,30464498:25952256,513147,134348 +k1,14280:9883591,30464498:175903 +(1,14280:9883591,30464498:0,414482,115847 +r1,14296:10241857,30464498:358266,530329,115847 +k1,14280:9883591,30464498:-358266 +) +(1,14280:9883591,30464498:358266,414482,115847 +k1,14280:9883591,30464498:3277 +h1,14280:10238580,30464498:0,411205,112570 +) +k1,14280:10417760,30464498:175903 +k1,14280:11785108,30464498:175903 +(1,14280:11785108,30464498:0,414482,115847 +r1,14296:12143374,30464498:358266,530329,115847 +k1,14280:11785108,30464498:-358266 +) +(1,14280:11785108,30464498:358266,414482,115847 +k1,14280:11785108,30464498:3277 +h1,14280:12140097,30464498:0,411205,112570 +) +k1,14280:12492947,30464498:175903 +k1,14280:13865537,30464498:175903 +k1,14280:16125486,30464498:175904 +k1,14280:20502902,30464498:175903 +k1,14280:21294843,30464498:175903 +k1,14280:22904674,30464498:175903 +k1,14280:23495397,30464498:175880 +k1,14280:25683255,30464498:175903 +k1,14280:28742087,30464498:175903 +k1,14280:29679518,30464498:175903 +k1,14280:31923737,30464498:175903 +k1,14280:32583029,30464498:0 +) +(1,14281:6630773,31329578:25952256,505283,134348 +k1,14280:10874066,31329578:215450 +k1,14280:11814343,31329578:215449 +k1,14280:12487890,31329578:215450 +k1,14280:13234836,31329578:215449 +k1,14280:14736102,31329578:215450 +k1,14280:17581511,31329578:215449 +k1,14280:18448389,31329578:215450 +k1,14280:21097845,31329578:215449 +k1,14280:23005435,31329578:215450 +k1,14280:27016729,31329578:215449 +k1,14280:27993707,31329578:215450 +k1,14280:31563944,31329578:215449 +k1,14280:32583029,31329578:0 +) +(1,14281:6630773,32194658:25952256,513147,126483 +g1,14280:7922487,32194658 +g1,14280:8788872,32194658 +(1,14280:8788872,32194658:0,414482,115847 +r1,14296:9147138,32194658:358266,530329,115847 +k1,14280:8788872,32194658:-358266 +) +(1,14280:8788872,32194658:358266,414482,115847 +k1,14280:8788872,32194658:3277 +h1,14280:9143861,32194658:0,411205,112570 +) +g1,14280:9346367,32194658 +g1,14280:10737041,32194658 +k1,14281:32583028,32194658:17818144 +g1,14281:32583028,32194658 +) +(1,14283:6630773,33059738:25952256,513147,126483 +h1,14282:6630773,33059738:983040,0,0 +k1,14282:9083487,33059738:272987 +k1,14282:11009947,33059738:272987 +k1,14282:13924691,33059738:272988 +k1,14282:14883840,33059738:272987 +k1,14282:16104478,33059738:272987 +k1,14282:19653610,33059738:272987 +k1,14282:23003512,33059738:272987 +k1,14282:24268059,33059738:272987 +k1,14282:26054273,33059738:272988 +k1,14282:27274911,33059738:272987 +k1,14282:29535605,33059738:272987 +k1,14282:32583029,33059738:0 +) +(1,14283:6630773,33924818:25952256,513147,134348 +k1,14282:8938653,33924818:212694 +k1,14282:9507207,33924818:212694 +k1,14282:12437024,33924818:212694 +k1,14282:15291474,33924818:212694 +k1,14282:16495728,33924818:212694 +k1,14282:20298485,33924818:212695 +k1,14282:23628071,33924818:212694 +k1,14282:24492193,33924818:212694 +k1,14282:27248339,33924818:212694 +k1,14282:29718748,33924818:212694 +k1,14282:31714677,33924818:212694 +k1,14282:32583029,33924818:0 +) +(1,14283:6630773,34789898:25952256,513147,134348 +k1,14282:8544928,34789898:176140 +k1,14282:9491772,34789898:176141 +k1,14282:12944057,34789898:176140 +k1,14282:16194492,34789898:176141 +k1,14282:17655138,34789898:176140 +k1,14282:19600096,34789898:176141 +k1,14282:20524002,34789898:176140 +k1,14282:24290205,34789898:176141 +k1,14282:25152507,34789898:176140 +k1,14282:27066663,34789898:176141 +k1,14282:28564664,34789898:176140 +k1,14282:29400097,34789898:176141 +k1,14282:30595322,34789898:176140 +k1,14282:32583029,34789898:0 +) +(1,14283:6630773,35654978:25952256,513147,126483 +k1,14282:9330856,35654978:156631 +k1,14282:10355838,35654978:156630 +k1,14282:12042735,35654978:156631 +k1,14282:12850794,35654978:156631 +k1,14282:15906081,35654978:156630 +k1,14282:16520809,35654978:156631 +k1,14282:17438968,35654978:156631 +k1,14282:19663914,35654978:156630 +k1,14282:20479837,35654978:156631 +k1,14282:21655553,35654978:156631 +k1,14282:24272405,35654978:156630 +k1,14282:27124532,35654978:156631 +(1,14282:27124532,35654978:0,452978,115847 +r1,14296:28186221,35654978:1061689,568825,115847 +k1,14282:27124532,35654978:-1061689 +) +(1,14282:27124532,35654978:1061689,452978,115847 +k1,14282:27124532,35654978:3277 +h1,14282:28182944,35654978:0,411205,112570 +) +k1,14282:28516522,35654978:156631 +k1,14282:29869839,35654978:156630 +k1,14282:31410590,35654978:156631 +k1,14282:32583029,35654978:0 +) +(1,14283:6630773,36520058:25952256,513147,126483 +k1,14282:9790085,36520058:167593 +k1,14282:11918515,36520058:167593 +k1,14282:14959863,36520058:167594 +k1,14282:16075107,36520058:167593 +k1,14282:18560708,36520058:167593 +k1,14282:20122252,36520058:167593 +k1,14282:21665446,36520058:167593 +k1,14282:22989749,36520058:167593 +k1,14282:26923042,36520058:167594 +k1,14282:29775645,36520058:167593 +k1,14282:31422386,36520058:167593 +k1,14283:32583029,36520058:0 +) +(1,14283:6630773,37385138:25952256,513147,134348 +k1,14282:8739015,37385138:182139 +k1,14282:10067380,37385138:182140 +k1,14282:12119917,37385138:182139 +k1,14282:13321142,37385138:182140 +k1,14282:17268980,37385138:182139 +k1,14282:19962459,37385138:182139 +k1,14282:21277061,37385138:182140 +k1,14282:22206966,37385138:182139 +k1,14282:25597748,37385138:182139 +k1,14282:26589258,37385138:182140 +k1,14282:27790482,37385138:182139 +k1,14282:28768229,37385138:182140 +k1,14282:30648406,37385138:182139 +k1,14282:32583029,37385138:0 +) +(1,14283:6630773,38250218:25952256,513147,126483 +k1,14282:7823965,38250218:174107 +k1,14282:9985779,38250218:174107 +k1,14282:10811314,38250218:174107 +k1,14282:12548455,38250218:174107 +k1,14282:13350397,38250218:174107 +k1,14282:14543589,38250218:174107 +k1,14282:16023829,38250218:174107 +k1,14282:17565018,38250218:174108 +k1,14282:19607556,38250218:174107 +k1,14282:20650015,38250218:174107 +k1,14282:22354388,38250218:174107 +k1,14282:23179923,38250218:174107 +k1,14282:26251377,38250218:174107 +k1,14282:28723832,38250218:174107 +k1,14282:29917024,38250218:174107 +k1,14282:32583029,38250218:0 +) +(1,14283:6630773,39115298:25952256,513147,126483 +k1,14282:7440294,39115298:150229 +k1,14282:8609607,39115298:150228 +k1,14282:9932275,39115298:150229 +k1,14282:12924144,39115298:150228 +k1,14282:14341839,39115298:150229 +k1,14282:16000707,39115298:150229 +k1,14282:17689720,39115298:150228 +k1,14282:20369639,39115298:150229 +k1,14282:23621687,39115298:150229 +k1,14282:25152103,39115298:150228 +k1,14282:27258582,39115298:150229 +k1,14282:28156576,39115298:150228 +k1,14282:31896867,39115298:150229 +k1,14282:32583029,39115298:0 +) +(1,14283:6630773,39980378:25952256,505283,126483 +k1,14282:7995596,39980378:192384 +k1,14282:10890684,39980378:192383 +k1,14282:14848767,39980378:192384 +k1,14282:17882792,39980378:192384 +k1,14282:18691214,39980378:192384 +k1,14282:19902682,39980378:192383 +k1,14282:22256443,39980378:192384 +k1,14282:23076662,39980378:192384 +k1,14282:24288131,39980378:192384 +k1,14282:26721845,39980378:192383 +k1,14282:28454980,39980378:192384 +(1,14282:28454980,39980378:0,452978,122846 +r1,14296:30220093,39980378:1765113,575824,122846 +k1,14282:28454980,39980378:-1765113 +) +(1,14282:28454980,39980378:1765113,452978,122846 +k1,14282:28454980,39980378:3277 +h1,14282:30216816,39980378:0,411205,112570 +) +k1,14282:30412477,39980378:192384 +k1,14282:32583029,39980378:0 +) +(1,14283:6630773,40845458:25952256,513147,126483 +k1,14282:7624845,40845458:246306 +k1,14282:11461213,40845458:246306 +k1,14282:12393681,40845458:246306 +k1,14282:13961848,40845458:246306 +k1,14282:14867446,40845458:246306 +k1,14282:16132837,40845458:246306 +k1,14282:18366850,40845458:246306 +k1,14282:21330279,40845458:246306 +k1,14282:22768030,40845458:246306 +k1,14282:27239442,40845458:246306 +k1,14282:28978658,40845458:246306 +k1,14282:30291235,40845458:246306 +k1,14282:32583029,40845458:0 +) +(1,14283:6630773,41710538:25952256,505283,134348 +g1,14282:10056995,41710538 +g1,14282:13738807,41710538 +g1,14282:16208859,41710538 +g1,14282:17900998,41710538 +g1,14282:19119312,41710538 +g1,14282:22758526,41710538 +g1,14282:25163042,41710538 +g1,14282:26048433,41710538 +g1,14282:27036060,41710538 +k1,14283:32583029,41710538:2300971 +g1,14283:32583029,41710538 +) +v1,14285:6630773,42395393:0,393216,0 +(1,14290:6630773,43420931:25952256,1418754,196608 +g1,14290:6630773,43420931 +g1,14290:6630773,43420931 +g1,14290:6434165,43420931 +(1,14290:6434165,43420931:0,1418754,196608 +r1,14296:32779637,43420931:26345472,1615362,196608 +k1,14290:6434165,43420931:-26345472 +) +(1,14290:6434165,43420931:26345472,1418754,196608 +[1,14290:6630773,43420931:25952256,1222146,0 +(1,14287:6630773,42623224:25952256,424439,106246 +(1,14286:6630773,42623224:0,0,0 +g1,14286:6630773,42623224 +g1,14286:6630773,42623224 +g1,14286:6303093,42623224 +(1,14286:6303093,42623224:0,0,0 +) +g1,14286:6630773,42623224 +) +g1,14287:7294681,42623224 +g1,14287:7958589,42623224 +g1,14287:9618359,42623224 +g1,14287:10282267,42623224 +h1,14287:11278129,42623224:0,0,0 +k1,14287:32583029,42623224:21304900 +g1,14287:32583029,42623224 +) +(1,14288:6630773,43308079:25952256,424439,112852 +h1,14288:6630773,43308079:0,0,0 +g1,14288:7294681,43308079 +g1,14288:7958589,43308079 +g1,14288:10282267,43308079 +g1,14288:10946175,43308079 +h1,14288:11942037,43308079:0,0,0 +k1,14288:32583029,43308079:20640992 +g1,14288:32583029,43308079 +) +] +) +g1,14290:32583029,43420931 +g1,14290:6630773,43420931 +g1,14290:6630773,43420931 +g1,14290:32583029,43420931 +g1,14290:32583029,43420931 +) +h1,14290:6630773,43617539:0,0,0 +(1,14294:6630773,44482619:25952256,513147,134348 +h1,14293:6630773,44482619:983040,0,0 +k1,14293:8200926,44482619:172270 +k1,14293:10916674,44482619:172296 +k1,14293:13173016,44482619:172297 +k1,14293:15357268,44482619:172297 +k1,14293:18916465,44482619:172296 +k1,14293:20657039,44482619:172297 +k1,14293:21776986,44482619:172296 +k1,14293:25198558,44482619:172297 +k1,14293:28836398,44482619:172296 +k1,14293:31025238,44482619:172297 +k1,14293:32583029,44482619:0 +) +(1,14294:6630773,45347699:25952256,513147,134348 +k1,14293:8571221,45347699:258794 +k1,14293:13161945,45347699:258794 +k1,14293:14989016,45347699:258794 +k1,14293:15907102,45347699:258794 +k1,14293:18810930,45347699:258795 +k1,14293:22117148,45347699:258794 +k1,14293:24261413,45347699:258794 +k1,14293:25467858,45347699:258794 +k1,14293:28412973,45347699:258794 +k1,14293:32583029,45347699:0 +) +] +(1,14296:32583029,45706769:0,0,0 +g1,14296:32583029,45706769 +) +) +] +(1,14296:6630773,47279633:25952256,0,0 +h1,14296:6630773,47279633:25952256,0,0 +) +] +(1,14296:4262630,4025873:0,0,0 +[1,14296:-473656,4025873:0,0,0 +(1,14296:-473656,-710413:0,0,0 +(1,14296:-473656,-710413:0,0,0 +g1,14296:-473656,-710413 +) +g1,14296:-473656,-710413 +) +] +) +] +!29552 +}230 +Input:2187:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2188:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!200 +{231 +[1,14396:4262630,47279633:28320399,43253760,0 +(1,14396:4262630,4025873:0,0,0 +[1,14396:-473656,4025873:0,0,0 +(1,14396:-473656,-710413:0,0,0 +(1,14396:-473656,-644877:0,0,0 +k1,14396:-473656,-644877:-65536 +) +(1,14396:-473656,4736287:0,0,0 +k1,14396:-473656,4736287:5209943 ) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 +g1,14396:-473656,-710413 ) ] ) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,14718:37855564,49800853:1179648,16384,0 +[1,14396:6630773,47279633:25952256,43253760,0 +[1,14396:6630773,4812305:25952256,786432,0 +(1,14396:6630773,4812305:25952256,513147,126483 +(1,14396:6630773,4812305:25952256,513147,126483 +g1,14396:3078558,4812305 +[1,14396:3078558,4812305:0,0,0 +(1,14396:3078558,2439708:0,1703936,0 +k1,14396:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,14396:2537886,2439708:1179648,16384,0 ) +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,14396:3078558,1915420:16384,1179648,0 ) -k1,14718:3078556,49800853:-34777008 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] -g1,14718:6630773,4812305 -g1,14718:6630773,4812305 -g1,14718:8412041,4812305 -g1,14718:10364358,4812305 -k1,14718:31387652,4812305:21023294 -) -) -] -[1,14718:6630773,45706769:25952256,40108032,0 -(1,14718:6630773,45706769:25952256,40108032,0 -(1,14718:6630773,45706769:0,0,0 -g1,14718:6630773,45706769 ) -[1,14718:6630773,45706769:25952256,40108032,0 -(1,14649:6630773,6254097:25952256,513147,134348 -h1,14648:6630773,6254097:983040,0,0 -k1,14648:9345405,6254097:259653 -k1,14648:10539600,6254097:259652 -(1,14648:10539600,6254097:0,414482,115847 -r1,14718:12656425,6254097:2116825,530329,115847 -k1,14648:10539600,6254097:-2116825 ) -(1,14648:10539600,6254097:2116825,414482,115847 -k1,14648:10539600,6254097:3277 -h1,14648:12653148,6254097:0,411205,112570 ) -k1,14648:13089748,6254097:259653 -k1,14648:16107810,6254097:259652 -k1,14648:16983501,6254097:259653 -k1,14648:17831666,6254097:259652 -k1,14648:20793368,6254097:259653 -k1,14648:25771612,6254097:259652 -k1,14648:27420628,6254097:259653 -k1,14648:28627931,6254097:259652 -k1,14648:32583029,6254097:0 -) -(1,14649:6630773,7095585:25952256,513147,134348 -k1,14648:7979067,7095585:151607 -k1,14648:10292050,7095585:151606 -k1,14648:12024385,7095585:151607 -k1,14648:12835284,7095585:151607 -k1,14648:14724906,7095585:151607 -k1,14648:15721926,7095585:151606 -k1,14648:20147791,7095585:151607 -k1,14648:21122530,7095585:151607 -k1,14648:23729771,7095585:151607 -k1,14648:27489134,7095585:151606 -k1,14648:28326903,7095585:151607 -k1,14648:29757117,7095585:151607 -k1,14648:32583029,7095585:0 -) -(1,14649:6630773,7937073:25952256,505283,134348 -g1,14648:8989413,7937073 -g1,14648:10871607,7937073 -g1,14648:12062396,7937073 -g1,14648:13791891,7937073 -g1,14648:15689158,7937073 -g1,14648:17277750,7937073 -g1,14648:18468539,7937073 -k1,14649:32583029,7937073:11638540 -g1,14649:32583029,7937073 -) -v1,14651:6630773,9084993:0,393216,0 -(1,14684:6630773,25279501:25952256,16587724,196608 -g1,14684:6630773,25279501 -g1,14684:6630773,25279501 -g1,14684:6434165,25279501 -(1,14684:6434165,25279501:0,16587724,196608 -r1,14718:32779637,25279501:26345472,16784332,196608 -k1,14684:6434165,25279501:-26345472 -) -(1,14684:6434165,25279501:26345472,16587724,196608 -[1,14684:6630773,25279501:25952256,16391116,0 -(1,14653:6630773,9292611:25952256,404226,76021 -(1,14652:6630773,9292611:0,0,0 -g1,14652:6630773,9292611 -g1,14652:6630773,9292611 -g1,14652:6303093,9292611 -(1,14652:6303093,9292611:0,0,0 -) -g1,14652:6630773,9292611 -) -k1,14653:6630773,9292611:0 -h1,14653:10740666,9292611:0,0,0 -k1,14653:32583030,9292611:21842364 -g1,14653:32583030,9292611 -) -(1,14657:6630773,9958789:25952256,404226,76021 -(1,14655:6630773,9958789:0,0,0 -g1,14655:6630773,9958789 -g1,14655:6630773,9958789 -g1,14655:6303093,9958789 -(1,14655:6303093,9958789:0,0,0 -) -g1,14655:6630773,9958789 -) -g1,14657:7579210,9958789 -g1,14657:8843793,9958789 -h1,14657:10108376,9958789:0,0,0 -k1,14657:32583028,9958789:22474652 -g1,14657:32583028,9958789 -) -(1,14659:6630773,11280327:25952256,404226,101187 -(1,14658:6630773,11280327:0,0,0 -g1,14658:6630773,11280327 -g1,14658:6630773,11280327 -g1,14658:6303093,11280327 -(1,14658:6303093,11280327:0,0,0 -) -g1,14658:6630773,11280327 -) -k1,14659:6630773,11280327:0 -h1,14659:10740666,11280327:0,0,0 -k1,14659:32583030,11280327:21842364 -g1,14659:32583030,11280327 -) -(1,14683:6630773,11946505:25952256,404226,107478 -(1,14661:6630773,11946505:0,0,0 -g1,14661:6630773,11946505 -g1,14661:6630773,11946505 -g1,14661:6303093,11946505 -(1,14661:6303093,11946505:0,0,0 -) -g1,14661:6630773,11946505 -) -g1,14683:7579210,11946505 -g1,14683:7895356,11946505 -g1,14683:8211502,11946505 -g1,14683:8527648,11946505 -g1,14683:8843794,11946505 -g1,14683:9159940,11946505 -g1,14683:9476086,11946505 -g1,14683:10740669,11946505 -g1,14683:11056815,11946505 -g1,14683:12321398,11946505 -g1,14683:12637544,11946505 -g1,14683:13902127,11946505 -g1,14683:14218273,11946505 -g1,14683:15482856,11946505 -g1,14683:15799002,11946505 -g1,14683:17063585,11946505 -g1,14683:17379731,11946505 -g1,14683:18644314,11946505 -g1,14683:18960460,11946505 -g1,14683:20225043,11946505 -g1,14683:20541189,11946505 -g1,14683:21805772,11946505 -g1,14683:22121918,11946505 -g1,14683:23386501,11946505 -g1,14683:23702647,11946505 -g1,14683:24967230,11946505 -g1,14683:25283376,11946505 -g1,14683:26547959,11946505 -g1,14683:26864105,11946505 -h1,14683:27812542,11946505:0,0,0 -k1,14683:32583029,11946505:4770487 -g1,14683:32583029,11946505 -) -(1,14683:6630773,12612683:25952256,388497,9436 -h1,14683:6630773,12612683:0,0,0 -g1,14683:7579210,12612683 -g1,14683:9159939,12612683 -g1,14683:10740668,12612683 -g1,14683:12321397,12612683 -g1,14683:13902126,12612683 -g1,14683:15482855,12612683 -g1,14683:17063584,12612683 -g1,14683:18644313,12612683 -g1,14683:20225042,12612683 -g1,14683:21805771,12612683 -g1,14683:23386500,12612683 -g1,14683:24967229,12612683 -g1,14683:26547958,12612683 -h1,14683:27812541,12612683:0,0,0 -k1,14683:32583029,12612683:4770488 -g1,14683:32583029,12612683 -) -(1,14683:6630773,13278861:25952256,388497,9436 -h1,14683:6630773,13278861:0,0,0 -g1,14683:7579210,13278861 -g1,14683:9159939,13278861 -g1,14683:10740668,13278861 -g1,14683:12321397,13278861 -g1,14683:13902126,13278861 -g1,14683:15482855,13278861 -g1,14683:17063584,13278861 -g1,14683:18644313,13278861 -g1,14683:20225042,13278861 -g1,14683:21805771,13278861 -g1,14683:23386500,13278861 -g1,14683:24967229,13278861 -g1,14683:26547958,13278861 -h1,14683:27812541,13278861:0,0,0 -k1,14683:32583029,13278861:4770488 -g1,14683:32583029,13278861 -) -(1,14683:6630773,13945039:25952256,388497,9436 -h1,14683:6630773,13945039:0,0,0 -g1,14683:7579210,13945039 -g1,14683:9159939,13945039 -g1,14683:10740668,13945039 -g1,14683:12321397,13945039 -g1,14683:13902126,13945039 -g1,14683:15482855,13945039 -g1,14683:17063584,13945039 -g1,14683:18644313,13945039 -g1,14683:20225042,13945039 -g1,14683:21805771,13945039 -g1,14683:23386500,13945039 -g1,14683:24967229,13945039 -g1,14683:26547958,13945039 -h1,14683:27812541,13945039:0,0,0 -k1,14683:32583029,13945039:4770488 -g1,14683:32583029,13945039 -) -(1,14683:6630773,14611217:25952256,388497,9436 -h1,14683:6630773,14611217:0,0,0 -g1,14683:7579210,14611217 -g1,14683:9159939,14611217 -g1,14683:10740668,14611217 -g1,14683:12321397,14611217 -g1,14683:13902126,14611217 -g1,14683:15482855,14611217 -g1,14683:17063584,14611217 -g1,14683:18644313,14611217 -g1,14683:20225042,14611217 -g1,14683:21805771,14611217 -g1,14683:23386500,14611217 -g1,14683:24967229,14611217 -g1,14683:26547958,14611217 -h1,14683:27812541,14611217:0,0,0 -k1,14683:32583029,14611217:4770488 -g1,14683:32583029,14611217 -) -(1,14683:6630773,15277395:25952256,388497,9436 -h1,14683:6630773,15277395:0,0,0 -g1,14683:7579210,15277395 -g1,14683:9159939,15277395 -g1,14683:10740668,15277395 -g1,14683:12321397,15277395 -g1,14683:13902126,15277395 -g1,14683:15482855,15277395 -g1,14683:17063584,15277395 -g1,14683:18644313,15277395 -g1,14683:20225042,15277395 -g1,14683:21805771,15277395 -g1,14683:23386500,15277395 -g1,14683:24967229,15277395 -g1,14683:26547958,15277395 -h1,14683:27812541,15277395:0,0,0 -k1,14683:32583029,15277395:4770488 -g1,14683:32583029,15277395 -) -(1,14683:6630773,15943573:25952256,388497,9436 -h1,14683:6630773,15943573:0,0,0 -g1,14683:7579210,15943573 -g1,14683:9159939,15943573 -g1,14683:10740668,15943573 -g1,14683:12321397,15943573 -g1,14683:13902126,15943573 -g1,14683:15482855,15943573 -g1,14683:17063584,15943573 -g1,14683:18644313,15943573 -g1,14683:20225042,15943573 -g1,14683:21805771,15943573 -g1,14683:23386500,15943573 -g1,14683:24967229,15943573 -g1,14683:26547958,15943573 -h1,14683:27812541,15943573:0,0,0 -k1,14683:32583029,15943573:4770488 -g1,14683:32583029,15943573 -) -(1,14683:6630773,16609751:25952256,388497,9436 -h1,14683:6630773,16609751:0,0,0 -g1,14683:7579210,16609751 -g1,14683:9159939,16609751 -g1,14683:10740668,16609751 -g1,14683:12321397,16609751 -g1,14683:13902126,16609751 -g1,14683:15482855,16609751 -g1,14683:17063584,16609751 -g1,14683:18644313,16609751 -g1,14683:20225042,16609751 -g1,14683:21805771,16609751 -g1,14683:23386500,16609751 -g1,14683:24967229,16609751 -g1,14683:26547958,16609751 -h1,14683:27812541,16609751:0,0,0 -k1,14683:32583029,16609751:4770488 -g1,14683:32583029,16609751 -) -(1,14683:6630773,17275929:25952256,388497,9436 -h1,14683:6630773,17275929:0,0,0 -g1,14683:7579210,17275929 -g1,14683:9159939,17275929 -g1,14683:10740668,17275929 -g1,14683:12321397,17275929 -g1,14683:13902126,17275929 -g1,14683:15482855,17275929 -g1,14683:17063584,17275929 -g1,14683:18644313,17275929 -g1,14683:20225042,17275929 -g1,14683:21805771,17275929 -g1,14683:23386500,17275929 -g1,14683:24967229,17275929 -g1,14683:26547958,17275929 -h1,14683:27812541,17275929:0,0,0 -k1,14683:32583029,17275929:4770488 -g1,14683:32583029,17275929 -) -(1,14683:6630773,17942107:25952256,388497,9436 -h1,14683:6630773,17942107:0,0,0 -g1,14683:7579210,17942107 -g1,14683:9159939,17942107 -g1,14683:10740668,17942107 -g1,14683:12321397,17942107 -g1,14683:13902126,17942107 -g1,14683:15482855,17942107 -g1,14683:17063584,17942107 -g1,14683:18644313,17942107 -g1,14683:20225042,17942107 -g1,14683:21805771,17942107 -g1,14683:23386500,17942107 -g1,14683:24967229,17942107 -g1,14683:26547958,17942107 -h1,14683:27812541,17942107:0,0,0 -k1,14683:32583029,17942107:4770488 -g1,14683:32583029,17942107 -) -(1,14683:6630773,18608285:25952256,388497,9436 -h1,14683:6630773,18608285:0,0,0 -g1,14683:7579210,18608285 -g1,14683:9159939,18608285 -g1,14683:10740668,18608285 -g1,14683:12321397,18608285 -g1,14683:13902126,18608285 -g1,14683:15482855,18608285 -g1,14683:17063584,18608285 -g1,14683:18644313,18608285 -g1,14683:20225042,18608285 -g1,14683:21805771,18608285 -g1,14683:23386500,18608285 -g1,14683:24967229,18608285 -g1,14683:26547958,18608285 -h1,14683:27812541,18608285:0,0,0 -k1,14683:32583029,18608285:4770488 -g1,14683:32583029,18608285 -) -(1,14683:6630773,19274463:25952256,388497,9436 -h1,14683:6630773,19274463:0,0,0 -g1,14683:7579210,19274463 -g1,14683:9159939,19274463 -g1,14683:10740668,19274463 -g1,14683:12321397,19274463 -g1,14683:13902126,19274463 -g1,14683:15482855,19274463 -g1,14683:17063584,19274463 -g1,14683:18644313,19274463 -g1,14683:20225042,19274463 -g1,14683:21805771,19274463 -g1,14683:23386500,19274463 -g1,14683:24967229,19274463 -g1,14683:26547958,19274463 -h1,14683:27812541,19274463:0,0,0 -k1,14683:32583029,19274463:4770488 -g1,14683:32583029,19274463 -) -(1,14683:6630773,19940641:25952256,388497,9436 -h1,14683:6630773,19940641:0,0,0 -g1,14683:7579210,19940641 -g1,14683:9159939,19940641 -g1,14683:10740668,19940641 -g1,14683:12321397,19940641 -g1,14683:13902126,19940641 -g1,14683:15482855,19940641 -g1,14683:17063584,19940641 -g1,14683:18644313,19940641 -g1,14683:20225042,19940641 -g1,14683:21805771,19940641 -g1,14683:23386500,19940641 -g1,14683:24967229,19940641 -g1,14683:26547958,19940641 -h1,14683:27812541,19940641:0,0,0 -k1,14683:32583029,19940641:4770488 -g1,14683:32583029,19940641 -) -(1,14683:6630773,20606819:25952256,388497,9436 -h1,14683:6630773,20606819:0,0,0 -g1,14683:7579210,20606819 -g1,14683:9159939,20606819 -g1,14683:10740668,20606819 -g1,14683:12321397,20606819 -g1,14683:13902126,20606819 -g1,14683:15482855,20606819 -g1,14683:17063584,20606819 -g1,14683:18644313,20606819 -g1,14683:20225042,20606819 -g1,14683:21805771,20606819 -g1,14683:23386500,20606819 -g1,14683:24967229,20606819 -g1,14683:26547958,20606819 -h1,14683:27812541,20606819:0,0,0 -k1,14683:32583029,20606819:4770488 -g1,14683:32583029,20606819 -) -(1,14683:6630773,21272997:25952256,388497,9436 -h1,14683:6630773,21272997:0,0,0 -g1,14683:7579210,21272997 -g1,14683:9159939,21272997 -g1,14683:10740668,21272997 -g1,14683:12321397,21272997 -g1,14683:13902126,21272997 -g1,14683:15482855,21272997 -g1,14683:17063584,21272997 -g1,14683:18644313,21272997 -g1,14683:20225042,21272997 -g1,14683:21805771,21272997 -g1,14683:23386500,21272997 -g1,14683:24967229,21272997 -g1,14683:26547958,21272997 -h1,14683:27812541,21272997:0,0,0 -k1,14683:32583029,21272997:4770488 -g1,14683:32583029,21272997 -) -(1,14683:6630773,21939175:25952256,388497,9436 -h1,14683:6630773,21939175:0,0,0 -g1,14683:7579210,21939175 -g1,14683:9159939,21939175 -g1,14683:10740668,21939175 -g1,14683:12321397,21939175 -g1,14683:13902126,21939175 -g1,14683:15482855,21939175 -g1,14683:17063584,21939175 -g1,14683:18644313,21939175 -g1,14683:20225042,21939175 -g1,14683:21805771,21939175 -g1,14683:23386500,21939175 -g1,14683:24967229,21939175 -g1,14683:26547958,21939175 -h1,14683:27812541,21939175:0,0,0 -k1,14683:32583029,21939175:4770488 -g1,14683:32583029,21939175 -) -(1,14683:6630773,22605353:25952256,388497,9436 -h1,14683:6630773,22605353:0,0,0 -g1,14683:7579210,22605353 -g1,14683:9159939,22605353 -g1,14683:10740668,22605353 -g1,14683:12321397,22605353 -g1,14683:13902126,22605353 -g1,14683:15482855,22605353 -g1,14683:17063584,22605353 -g1,14683:18644313,22605353 -g1,14683:20225042,22605353 -g1,14683:21805771,22605353 -g1,14683:23386500,22605353 -g1,14683:24967229,22605353 -g1,14683:26547958,22605353 -h1,14683:27812541,22605353:0,0,0 -k1,14683:32583029,22605353:4770488 -g1,14683:32583029,22605353 -) -(1,14683:6630773,23271531:25952256,388497,9436 -h1,14683:6630773,23271531:0,0,0 -g1,14683:7579210,23271531 -g1,14683:9159939,23271531 -g1,14683:10740668,23271531 -g1,14683:12321397,23271531 -g1,14683:13902126,23271531 -g1,14683:15482855,23271531 -g1,14683:17063584,23271531 -g1,14683:18644313,23271531 -g1,14683:20225042,23271531 -g1,14683:21805771,23271531 -g1,14683:23386500,23271531 -g1,14683:24967229,23271531 -g1,14683:26547958,23271531 -h1,14683:27812541,23271531:0,0,0 -k1,14683:32583029,23271531:4770488 -g1,14683:32583029,23271531 -) -(1,14683:6630773,23937709:25952256,388497,9436 -h1,14683:6630773,23937709:0,0,0 -g1,14683:7579210,23937709 -g1,14683:9159939,23937709 -g1,14683:10740668,23937709 -g1,14683:12321397,23937709 -g1,14683:13902126,23937709 -g1,14683:15482855,23937709 -g1,14683:17063584,23937709 -g1,14683:18644313,23937709 -g1,14683:20225042,23937709 -g1,14683:21805771,23937709 -g1,14683:23386500,23937709 -g1,14683:24967229,23937709 -g1,14683:26547958,23937709 -h1,14683:27812541,23937709:0,0,0 -k1,14683:32583029,23937709:4770488 -g1,14683:32583029,23937709 -) -(1,14683:6630773,24603887:25952256,388497,9436 -h1,14683:6630773,24603887:0,0,0 -g1,14683:7579210,24603887 -g1,14683:9159939,24603887 -g1,14683:10740668,24603887 -g1,14683:12321397,24603887 -g1,14683:13902126,24603887 -g1,14683:15482855,24603887 -g1,14683:17063584,24603887 -g1,14683:18644313,24603887 -g1,14683:20225042,24603887 -g1,14683:21805771,24603887 -g1,14683:23386500,24603887 -g1,14683:24967229,24603887 -g1,14683:26547958,24603887 -h1,14683:27812541,24603887:0,0,0 -k1,14683:32583029,24603887:4770488 -g1,14683:32583029,24603887 -) -(1,14683:6630773,25270065:25952256,388497,9436 -h1,14683:6630773,25270065:0,0,0 -g1,14683:7579210,25270065 -g1,14683:9159939,25270065 -g1,14683:10740668,25270065 -g1,14683:12321397,25270065 -g1,14683:13902126,25270065 -g1,14683:15482855,25270065 -g1,14683:17063584,25270065 -g1,14683:18644313,25270065 -g1,14683:20225042,25270065 -g1,14683:21805771,25270065 -g1,14683:23386500,25270065 -g1,14683:24967229,25270065 -g1,14683:26547958,25270065 -h1,14683:27812541,25270065:0,0,0 -k1,14683:32583029,25270065:4770488 -g1,14683:32583029,25270065 -) -] -) -g1,14684:32583029,25279501 -g1,14684:6630773,25279501 -g1,14684:6630773,25279501 -g1,14684:32583029,25279501 -g1,14684:32583029,25279501 -) -h1,14684:6630773,25476109:0,0,0 -v1,14690:6630773,27105771:0,393216,0 -(1,14694:6630773,27414576:25952256,702021,196608 -g1,14694:6630773,27414576 -g1,14694:6630773,27414576 -g1,14694:6434165,27414576 -(1,14694:6434165,27414576:0,702021,196608 -r1,14718:32779637,27414576:26345472,898629,196608 -k1,14694:6434165,27414576:-26345472 -) -(1,14694:6434165,27414576:26345472,702021,196608 -[1,14694:6630773,27414576:25952256,505413,0 -(1,14692:6630773,27313389:25952256,404226,101187 -(1,14691:6630773,27313389:0,0,0 -g1,14691:6630773,27313389 -g1,14691:6630773,27313389 -g1,14691:6303093,27313389 -(1,14691:6303093,27313389:0,0,0 -) -g1,14691:6630773,27313389 -) -k1,14692:6630773,27313389:0 -h1,14692:10424521,27313389:0,0,0 -k1,14692:32583029,27313389:22158508 -g1,14692:32583029,27313389 -) -] -) -g1,14694:32583029,27414576 -g1,14694:6630773,27414576 -g1,14694:6630773,27414576 -g1,14694:32583029,27414576 -g1,14694:32583029,27414576 -) -h1,14694:6630773,27611184:0,0,0 -(1,14697:6630773,37242128:25952256,9083666,0 -k1,14697:10523651,37242128:3892878 -h1,14696:10523651,37242128:0,0,0 -(1,14696:10523651,37242128:18166500,9083666,0 -(1,14696:10523651,37242128:18167376,9083688,0 -(1,14696:10523651,37242128:18167376,9083688,0 -(1,14696:10523651,37242128:0,9083688,0 -(1,14696:10523651,37242128:0,14208860,0 -(1,14696:10523651,37242128:28417720,14208860,0 -) -k1,14696:10523651,37242128:-28417720 -) -) -g1,14696:28691027,37242128 -) -) -) -g1,14697:28690151,37242128 -k1,14697:32583029,37242128:3892878 -) -v1,14704:6630773,38565358:0,393216,0 -(1,14715:6630773,43542051:25952256,5369909,0 -g1,14715:6630773,43542051 -g1,14715:6303093,43542051 -r1,14718:6401397,43542051:98304,5369909,0 -g1,14715:6600626,43542051 -g1,14715:6797234,43542051 -[1,14715:6797234,43542051:25785795,5369909,0 -(1,14705:6797234,38997896:25785795,825754,196608 -(1,14704:6797234,38997896:0,825754,196608 -r1,14718:7890375,38997896:1093141,1022362,196608 -k1,14704:6797234,38997896:-1093141 -) -(1,14704:6797234,38997896:1093141,825754,196608 -) -k1,14704:8136571,38997896:246196 -k1,14704:9862789,38997896:327680 -k1,14704:12501049,38997896:246196 -k1,14704:13766329,38997896:246195 -k1,14704:16943950,38997896:246196 -k1,14704:17849438,38997896:246196 -k1,14704:19114719,38997896:246196 -(1,14704:19114719,38997896:0,414482,115847 -r1,14718:21231544,38997896:2116825,530329,115847 -k1,14704:19114719,38997896:-2116825 -) -(1,14704:19114719,38997896:2116825,414482,115847 -k1,14704:19114719,38997896:3277 -h1,14704:21228267,38997896:0,411205,112570 -) -k1,14704:21477739,38997896:246195 -k1,14704:23857132,38997896:246196 -k1,14704:25294773,38997896:246196 -k1,14704:28271854,38997896:246196 -k1,14704:29848430,38997896:246195 -k1,14704:31286071,38997896:246196 -k1,14704:32583029,38997896:0 -) -(1,14705:6797234,39839384:25785795,513147,134348 -k1,14704:7535668,39839384:280337 -k1,14704:9889565,39839384:280338 -k1,14704:10852787,39839384:280337 -k1,14704:12199395,39839384:280337 -k1,14704:14047353,39839384:280337 -k1,14704:15612197,39839384:280338 -k1,14704:16551826,39839384:280337 -k1,14704:17851248,39839384:280337 -k1,14704:20091112,39839384:280338 -(1,14704:20091112,39839384:0,414482,115847 -r1,14718:21856225,39839384:1765113,530329,115847 -k1,14704:20091112,39839384:-1765113 -) -(1,14704:20091112,39839384:1765113,414482,115847 -k1,14704:20091112,39839384:3277 -h1,14704:21852948,39839384:0,411205,112570 -) -k1,14704:22136562,39839384:280337 -k1,14704:23701405,39839384:280337 -k1,14704:24850094,39839384:280337 -k1,14704:27480553,39839384:280338 -k1,14704:29789885,39839384:280337 -k1,14704:32583029,39839384:0 -) -(1,14705:6797234,40680872:25785795,513147,126483 -g1,14704:9364934,40680872 -g1,14704:10989571,40680872 -g1,14704:13033638,40680872 -(1,14704:13033638,40680872:0,414482,115847 -r1,14718:15150463,40680872:2116825,530329,115847 -k1,14704:13033638,40680872:-2116825 -) -(1,14704:13033638,40680872:2116825,414482,115847 -k1,14704:13033638,40680872:3277 -h1,14704:15147186,40680872:0,411205,112570 -) -g1,14704:15523362,40680872 -g1,14704:18195264,40680872 -g1,14704:19053785,40680872 -g1,14704:20272099,40680872 -g1,14704:21860691,40680872 -g1,14704:23324765,40680872 -g1,14704:26282404,40680872 -g1,14704:27097671,40680872 -k1,14705:32583029,40680872:4896845 -g1,14705:32583029,40680872 -) -v1,14707:6797234,41871338:0,393216,0 -(1,14712:6797234,42821155:25785795,1343033,196608 -g1,14712:6797234,42821155 -g1,14712:6797234,42821155 -g1,14712:6600626,42821155 -(1,14712:6600626,42821155:0,1343033,196608 -r1,14718:32779637,42821155:26179011,1539641,196608 -k1,14712:6600625,42821155:-26179012 -) -(1,14712:6600626,42821155:26179011,1343033,196608 -[1,14712:6797234,42821155:25785795,1146425,0 -(1,14709:6797234,42078956:25785795,404226,76021 -(1,14708:6797234,42078956:0,0,0 -g1,14708:6797234,42078956 -g1,14708:6797234,42078956 -g1,14708:6469554,42078956 -(1,14708:6469554,42078956:0,0,0 -) -g1,14708:6797234,42078956 -) -k1,14709:6797234,42078956:0 -h1,14709:10274836,42078956:0,0,0 -k1,14709:32583028,42078956:22308192 -g1,14709:32583028,42078956 -) -(1,14710:6797234,42745134:25785795,404226,76021 -h1,14710:6797234,42745134:0,0,0 -k1,14710:6797234,42745134:0 -h1,14710:12487856,42745134:0,0,0 -k1,14710:32583028,42745134:20095172 -g1,14710:32583028,42745134 -) -] -) -g1,14712:32583029,42821155 -g1,14712:6797234,42821155 -g1,14712:6797234,42821155 -g1,14712:32583029,42821155 -g1,14712:32583029,42821155 -) -h1,14712:6797234,43017763:0,0,0 -] -g1,14715:32583029,43542051 -) -h1,14715:6630773,43542051:0,0,0 -(1,14718:6630773,44865281:25952256,513147,126483 -h1,14717:6630773,44865281:983040,0,0 -k1,14717:8487244,44865281:245596 -k1,14717:9751925,44865281:245596 -k1,14717:11381641,44865281:245596 -k1,14717:12799676,44865281:245596 -k1,14717:14541459,44865281:245596 -k1,14717:17261695,44865281:245597 -k1,14717:18679730,44865281:245596 -k1,14717:21687669,44865281:245596 -k1,14717:25595417,44865281:245596 -k1,14717:26492441,44865281:245596 -k1,14717:28163445,44865281:245596 -k1,14717:30253879,44865281:245596 -k1,14718:32583029,44865281:0 -) -(1,14718:6630773,45706769:25952256,513147,134348 -k1,14717:9475341,45706769:230337 -k1,14717:10697238,45706769:230337 -k1,14717:12614472,45706769:230337 -k1,14717:13472644,45706769:230337 -k1,14717:14722066,45706769:230337 -k1,14717:16258536,45706769:230337 -k1,14717:17645583,45706769:230337 -k1,14717:18744273,45706769:230338 -k1,14717:20067095,45706769:230337 -k1,14717:20653292,45706769:230337 -k1,14717:23245547,45706769:230337 -k1,14717:25902027,45706769:230337 -k1,14717:26783792,45706769:230337 -k1,14717:29431752,45706769:230337 -k1,14717:30681174,45706769:230337 -k1,14717:32583029,45706769:0 -) -] -(1,14718:32583029,45706769:0,0,0 -g1,14718:32583029,45706769 -) -) -] -(1,14718:6630773,47279633:25952256,0,0 -h1,14718:6630773,47279633:25952256,0,0 -) -] -(1,14718:4262630,4025873:0,0,0 -[1,14718:-473656,4025873:0,0,0 -(1,14718:-473656,-710413:0,0,0 -(1,14718:-473656,-710413:0,0,0 -g1,14718:-473656,-710413 -) -g1,14718:-473656,-710413 -) -] -) -] -!24594 -}248 -Input:2184:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2185:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2186:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2187:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2188:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2189:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2190:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2191:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!764 -{249 -[1,14774:4262630,47279633:28320399,43253760,0 -(1,14774:4262630,4025873:0,0,0 -[1,14774:-473656,4025873:0,0,0 -(1,14774:-473656,-710413:0,0,0 -(1,14774:-473656,-644877:0,0,0 -k1,14774:-473656,-644877:-65536 -) -(1,14774:-473656,4736287:0,0,0 -k1,14774:-473656,4736287:5209943 +] +[1,14396:3078558,4812305:0,0,0 +(1,14396:3078558,2439708:0,1703936,0 +g1,14396:29030814,2439708 +g1,14396:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,14396:36151628,1915420:16384,1179648,0 ) -g1,14774:-473656,-710413 +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] ) -[1,14774:6630773,47279633:25952256,43253760,0 -[1,14774:6630773,4812305:25952256,786432,0 -(1,14774:6630773,4812305:25952256,513147,126483 -(1,14774:6630773,4812305:25952256,513147,126483 -g1,14774:3078558,4812305 -[1,14774:3078558,4812305:0,0,0 -(1,14774:3078558,2439708:0,1703936,0 -k1,14774:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,14774:2537886,2439708:1179648,16384,0 +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,14396:37855564,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,14774:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +k1,14396:3078556,2439708:-34777008 ) ] +[1,14396:3078558,4812305:0,0,0 +(1,14396:3078558,49800853:0,16384,2228224 +k1,14396:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,14396:2537886,49800853:1179648,16384,0 ) +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,14396:3078558,51504789:16384,1179648,0 ) +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 ) ] -[1,14774:3078558,4812305:0,0,0 -(1,14774:3078558,2439708:0,1703936,0 -g1,14774:29030814,2439708 -g1,14774:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,14774:36151628,1915420:16384,1179648,0 -) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 -) -] -) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,14774:37855564,2439708:1179648,16384,0 ) ) -k1,14774:3078556,2439708:-34777008 ) ] -[1,14774:3078558,4812305:0,0,0 -(1,14774:3078558,49800853:0,16384,2228224 -k1,14774:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,14774:2537886,49800853:1179648,16384,0 +[1,14396:3078558,4812305:0,0,0 +(1,14396:3078558,49800853:0,16384,2228224 +g1,14396:29030814,49800853 +g1,14396:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,14396:36151628,51504789:16384,1179648,0 +) +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 +) +] +) +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,14396:37855564,49800853:1179648,16384,0 +) +) +k1,14396:3078556,49800853:-34777008 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,14774:3078558,51504789:16384,1179648,0 -) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 -) -] -) -) -) -] -[1,14774:3078558,4812305:0,0,0 -(1,14774:3078558,49800853:0,16384,2228224 -g1,14774:29030814,49800853 -g1,14774:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,14774:36151628,51504789:16384,1179648,0 -) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 -) -] -) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,14774:37855564,49800853:1179648,16384,0 -) -) -k1,14774:3078556,49800853:-34777008 -) -] -g1,14774:6630773,4812305 -k1,14774:19540057,4812305:11713907 -g1,14774:21162728,4812305 -g1,14774:21985204,4812305 -g1,14774:24539797,4812305 -g1,14774:25949476,4812305 -g1,14774:28728857,4812305 -g1,14774:29852144,4812305 -) -) -] -[1,14774:6630773,45706769:25952256,40108032,0 -(1,14774:6630773,45706769:25952256,40108032,0 -(1,14774:6630773,45706769:0,0,0 -g1,14774:6630773,45706769 -) -[1,14774:6630773,45706769:25952256,40108032,0 -(1,14718:6630773,6254097:25952256,513147,134348 -k1,14717:8470743,6254097:150452 -k1,14717:9237233,6254097:150452 -k1,14717:10406770,6254097:150452 -k1,14717:12798552,6254097:150451 -k1,14717:15933514,6254097:150452 -k1,14717:16952318,6254097:150452 -k1,14717:18195255,6254097:150452 -k1,14717:20113213,6254097:150452 -k1,14717:20826619,6254097:150452 -k1,14717:23388141,6254097:150452 -k1,14717:25279884,6254097:150451 -k1,14717:27142792,6254097:150452 -k1,14717:28054772,6254097:150452 -k1,14717:29699445,6254097:150452 -k1,14717:32583029,6254097:0 -) -(1,14718:6630773,7095585:25952256,513147,134348 -k1,14717:10337014,7095585:182370 -k1,14717:11467036,7095585:182371 -k1,14717:12668491,7095585:182370 -k1,14717:17754920,7095585:182370 -k1,14717:18293150,7095585:182370 -k1,14717:20929844,7095585:182371 -k1,14717:22059865,7095585:182370 -k1,14717:24127706,7095585:182370 -k1,14717:25329161,7095585:182370 -k1,14717:28279773,7095585:182371 -k1,14717:29616870,7095585:182353 -k1,14717:32583029,7095585:0 -) -(1,14718:6630773,7937073:25952256,513147,134348 -k1,14717:8117249,7937073:295031 -k1,14717:10318067,7937073:295031 -k1,14717:15343487,7937073:295031 -k1,14717:17373911,7937073:295031 -k1,14717:19643542,7937073:295031 -k1,14717:20470070,7937073:295031 -k1,14717:22451998,7937073:295031 -k1,14717:22451998,7937073:0 -k1,14717:22747029,7937073:295031 -k1,14717:25083506,7937073:295031 -k1,14717:29630513,7937073:295031 -k1,14717:30944629,7937073:295031 -k1,14718:32583029,7937073:0 -) -(1,14718:6630773,8778561:25952256,505283,134348 -g1,14717:8674840,8778561 -g1,14717:9742421,8778561 -g1,14717:13006769,8778561 -g1,14717:14225083,8778561 -g1,14717:18698570,8778561 -g1,14717:19513837,8778561 -g1,14717:22168700,8778561 -k1,14718:32583029,8778561:7956074 -g1,14718:32583029,8778561 -) -v1,14720:6630773,9902513:0,393216,0 -(1,14724:6630773,10186152:25952256,676855,196608 -g1,14724:6630773,10186152 -g1,14724:6630773,10186152 -g1,14724:6434165,10186152 -(1,14724:6434165,10186152:0,676855,196608 -r1,14774:32779637,10186152:26345472,873463,196608 -k1,14724:6434165,10186152:-26345472 -) -(1,14724:6434165,10186152:26345472,676855,196608 -[1,14724:6630773,10186152:25952256,480247,0 -(1,14722:6630773,10110131:25952256,404226,76021 -(1,14721:6630773,10110131:0,0,0 -g1,14721:6630773,10110131 -g1,14721:6630773,10110131 -g1,14721:6303093,10110131 -(1,14721:6303093,10110131:0,0,0 -) -g1,14721:6630773,10110131 -) -g1,14722:11372959,10110131 -g1,14722:12321397,10110131 -g1,14722:14850563,10110131 -g1,14722:15482855,10110131 -g1,14722:16747438,10110131 -g1,14722:17379730,10110131 -h1,14722:18328168,10110131:0,0,0 -k1,14722:32583029,10110131:14254861 -g1,14722:32583029,10110131 -) -] -) -g1,14724:32583029,10186152 -g1,14724:6630773,10186152 -g1,14724:6630773,10186152 -g1,14724:32583029,10186152 -g1,14724:32583029,10186152 -) -h1,14724:6630773,10382760:0,0,0 -(1,14728:6630773,11682021:25952256,505283,126483 -h1,14727:6630773,11682021:983040,0,0 -g1,14727:8766591,11682021 -g1,14727:9900363,11682021 -g1,14727:11118677,11682021 -g1,14727:14052068,11682021 -g1,14727:16724626,11682021 -g1,14727:17575283,11682021 -g1,14727:18172971,11682021 -g1,14727:20977256,11682021 -g1,14727:22195570,11682021 -g1,14727:25486788,11682021 -k1,14728:32583029,11682021:4106489 -g1,14728:32583029,11682021 -) -v1,14731:6630773,12805973:0,393216,0 -(1,14736:6630773,13780956:25952256,1368199,196608 -g1,14736:6630773,13780956 -g1,14736:6630773,13780956 -g1,14736:6434165,13780956 -(1,14736:6434165,13780956:0,1368199,196608 -r1,14774:32779637,13780956:26345472,1564807,196608 -k1,14736:6434165,13780956:-26345472 -) -(1,14736:6434165,13780956:26345472,1368199,196608 -[1,14736:6630773,13780956:25952256,1171591,0 -(1,14733:6630773,13013591:25952256,404226,82312 -(1,14732:6630773,13013591:0,0,0 -g1,14732:6630773,13013591 -g1,14732:6630773,13013591 -g1,14732:6303093,13013591 -(1,14732:6303093,13013591:0,0,0 -) -g1,14732:6630773,13013591 -) -g1,14733:10108376,13013591 -g1,14733:11056814,13013591 -g1,14733:17379728,13013591 -g1,14733:20225039,13013591 -g1,14733:20857331,13013591 -h1,14733:21489623,13013591:0,0,0 -k1,14733:32583029,13013591:11093406 -g1,14733:32583029,13013591 -) -(1,14734:6630773,13679769:25952256,404226,101187 -h1,14734:6630773,13679769:0,0,0 -k1,14734:6630773,13679769:0 -h1,14734:11689104,13679769:0,0,0 -k1,14734:32583028,13679769:20893924 -g1,14734:32583028,13679769 -) -] -) -g1,14736:32583029,13780956 -g1,14736:6630773,13780956 -g1,14736:6630773,13780956 -g1,14736:32583029,13780956 -g1,14736:32583029,13780956 -) -h1,14736:6630773,13977564:0,0,0 -(1,14739:6630773,29640318:25952256,15139444,0 -k1,14739:10523651,29640318:3892878 -h1,14738:10523651,29640318:0,0,0 -(1,14738:10523651,29640318:18166500,15139444,0 -(1,14738:10523651,29640318:18167376,15139481,0 -(1,14738:10523651,29640318:18167376,15139481,0 -(1,14738:10523651,29640318:0,15139481,0 -(1,14738:10523651,29640318:0,23681434,0 -(1,14738:10523651,29640318:28417720,23681434,0 -) -k1,14738:10523651,29640318:-28417720 -) -) -g1,14738:28691027,29640318 -) -) -) -g1,14739:28690151,29640318 -k1,14739:32583029,29640318:3892878 -) -(1,14746:6630773,30481806:25952256,513147,134348 -h1,14745:6630773,30481806:983040,0,0 -k1,14745:8363646,30481806:279940 -k1,14745:9175082,30481806:279939 -k1,14745:12888453,30481806:279940 -k1,14745:13819820,30481806:279939 -k1,14745:16468231,30481806:279940 -k1,14745:17767255,30481806:279939 -k1,14745:19602364,30481806:279940 -k1,14745:21073748,30481806:279939 -k1,14745:24285113,30481806:279940 -k1,14745:25224344,30481806:279939 -k1,14745:26523369,30481806:279940 -k1,14745:28762834,30481806:279939 -k1,14745:31821501,30481806:279940 -k1,14746:32583029,30481806:0 -) -(1,14746:6630773,31323294:25952256,513147,126483 -(1,14745:6630773,31323294:0,452978,115847 -r1,14774:8395886,31323294:1765113,568825,115847 -k1,14745:6630773,31323294:-1765113 -) -(1,14745:6630773,31323294:1765113,452978,115847 -k1,14745:6630773,31323294:3277 -h1,14745:8392609,31323294:0,411205,112570 -) -k1,14745:8829530,31323294:259974 -k1,14745:9775667,31323294:259975 -k1,14745:10903993,31323294:259974 -k1,14745:12500901,31323294:259974 -k1,14745:14309491,31323294:259974 -k1,14745:15220894,31323294:259975 -k1,14745:17684844,31323294:259974 -k1,14745:22046061,31323294:259974 -k1,14745:23259585,31323294:259975 -k1,14745:24623841,31323294:259974 -k1,14745:25908798,31323294:259974 -k1,14745:27453278,31323294:259974 -k1,14745:28732338,31323294:259975 -k1,14745:31923737,31323294:259974 -k1,14745:32583029,31323294:0 -) -(1,14746:6630773,32164782:25952256,513147,134348 -g1,14745:8033243,32164782 -g1,14745:10191998,32164782 -g1,14745:10922724,32164782 -g1,14745:13073615,32164782 -g1,14745:15474854,32164782 -g1,14745:16325511,32164782 -g1,14745:19412912,32164782 -g1,14745:21901969,32164782 -g1,14745:22760490,32164782 -g1,14745:25192531,32164782 -(1,14745:25192531,32164782:0,452978,115847 -r1,14774:25902509,32164782:709978,568825,115847 -k1,14745:25192531,32164782:-709978 -) -(1,14745:25192531,32164782:709978,452978,115847 -k1,14745:25192531,32164782:3277 -h1,14745:25899232,32164782:0,411205,112570 -) -g1,14745:26101738,32164782 -g1,14745:27492412,32164782 -(1,14745:27492412,32164782:0,452978,122846 -r1,14774:28554101,32164782:1061689,575824,122846 -k1,14745:27492412,32164782:-1061689 -) -(1,14745:27492412,32164782:1061689,452978,122846 -k1,14745:27492412,32164782:3277 -h1,14745:28550824,32164782:0,411205,112570 -) -k1,14746:32583029,32164782:3855258 -g1,14746:32583029,32164782 -) -v1,14748:6630773,33288733:0,393216,0 -(1,14768:6630773,40844947:25952256,7949430,196608 -g1,14768:6630773,40844947 -g1,14768:6630773,40844947 -g1,14768:6434165,40844947 -(1,14768:6434165,40844947:0,7949430,196608 -r1,14774:32779637,40844947:26345472,8146038,196608 -k1,14768:6434165,40844947:-26345472 -) -(1,14768:6434165,40844947:26345472,7949430,196608 -[1,14768:6630773,40844947:25952256,7752822,0 -(1,14750:6630773,33496351:25952256,404226,76021 -(1,14749:6630773,33496351:0,0,0 -g1,14749:6630773,33496351 -g1,14749:6630773,33496351 -g1,14749:6303093,33496351 -(1,14749:6303093,33496351:0,0,0 -) -g1,14749:6630773,33496351 -) -k1,14750:6630773,33496351:0 -h1,14750:12005249,33496351:0,0,0 -k1,14750:32583029,33496351:20577780 -g1,14750:32583029,33496351 -) -(1,14754:6630773,34162529:25952256,404226,76021 -(1,14752:6630773,34162529:0,0,0 -g1,14752:6630773,34162529 -g1,14752:6630773,34162529 -g1,14752:6303093,34162529 -(1,14752:6303093,34162529:0,0,0 -) -g1,14752:6630773,34162529 -) -g1,14754:7579210,34162529 -g1,14754:8843793,34162529 -h1,14754:10424521,34162529:0,0,0 -k1,14754:32583029,34162529:22158508 -g1,14754:32583029,34162529 -) -(1,14756:6630773,35484067:25952256,404226,107478 -(1,14755:6630773,35484067:0,0,0 -g1,14755:6630773,35484067 -g1,14755:6630773,35484067 -g1,14755:6303093,35484067 -(1,14755:6303093,35484067:0,0,0 -) -g1,14755:6630773,35484067 -) -k1,14756:6630773,35484067:0 -g1,14756:11689104,35484067 -g1,14756:14218270,35484067 -g1,14756:14850562,35484067 -g1,14756:16747437,35484067 -g1,14756:19908894,35484067 -g1,14756:20541186,35484067 -g1,14756:22754206,35484067 -g1,14756:25283372,35484067 -g1,14756:25915664,35484067 -h1,14756:26547956,35484067:0,0,0 -k1,14756:32583029,35484067:6035073 -g1,14756:32583029,35484067 -) -(1,14767:6630773,36150245:25952256,410518,82312 -(1,14758:6630773,36150245:0,0,0 -g1,14758:6630773,36150245 -g1,14758:6630773,36150245 -g1,14758:6303093,36150245 -(1,14758:6303093,36150245:0,0,0 -) -g1,14758:6630773,36150245 -) -g1,14767:7579210,36150245 -g1,14767:7895356,36150245 -g1,14767:8527648,36150245 -g1,14767:12637542,36150245 -g1,14767:16431291,36150245 -g1,14767:18960457,36150245 -g1,14767:20541186,36150245 -g1,14767:22121915,36150245 -g1,14767:23702644,36150245 -g1,14767:24651081,36150245 -g1,14767:26547955,36150245 -g1,14767:28128684,36150245 -g1,14767:30025558,36150245 -h1,14767:30973995,36150245:0,0,0 -k1,14767:32583029,36150245:1609034 -g1,14767:32583029,36150245 -) -(1,14767:6630773,36816423:25952256,410518,107478 -h1,14767:6630773,36816423:0,0,0 -g1,14767:7579210,36816423 -g1,14767:7895356,36816423 -g1,14767:8527648,36816423 -g1,14767:11056814,36816423 -g1,14767:11372960,36816423 -g1,14767:11689106,36816423 -g1,14767:12005252,36816423 -g1,14767:12637544,36816423 -g1,14767:13902127,36816423 -g1,14767:16431293,36816423 -g1,14767:17063585,36816423 -g1,14767:17695877,36816423 -g1,14767:18328169,36816423 -g1,14767:18960461,36816423 -g1,14767:19592753,36816423 -h1,14767:20541190,36816423:0,0,0 -k1,14767:32583029,36816423:12041839 -g1,14767:32583029,36816423 -) -(1,14767:6630773,37482601:25952256,410518,107478 -h1,14767:6630773,37482601:0,0,0 -g1,14767:7579210,37482601 -g1,14767:7895356,37482601 -g1,14767:8527648,37482601 -g1,14767:10108377,37482601 -g1,14767:10424523,37482601 -g1,14767:10740669,37482601 -g1,14767:11056815,37482601 -g1,14767:11372961,37482601 -g1,14767:11689107,37482601 -g1,14767:12005253,37482601 -g1,14767:12637545,37482601 -g1,14767:15482856,37482601 -g1,14767:17379730,37482601 -g1,14767:18012022,37482601 -g1,14767:23070354,37482601 -g1,14767:25915665,37482601 -g1,14767:26547957,37482601 -h1,14767:27180248,37482601:0,0,0 -k1,14767:32583029,37482601:5402781 -g1,14767:32583029,37482601 -) -(1,14767:6630773,38148779:25952256,410518,76021 -h1,14767:6630773,38148779:0,0,0 -g1,14767:7579210,38148779 -g1,14767:7895356,38148779 -g1,14767:8527648,38148779 -g1,14767:9792231,38148779 -g1,14767:10108377,38148779 -g1,14767:10424523,38148779 -g1,14767:10740669,38148779 -g1,14767:11056815,38148779 -g1,14767:11372961,38148779 -g1,14767:11689107,38148779 -g1,14767:12005253,38148779 -g1,14767:12637545,38148779 -g1,14767:14534419,38148779 -g1,14767:15799002,38148779 -g1,14767:17695876,38148779 -g1,14767:18328168,38148779 -g1,14767:19276605,38148779 -h1,14767:19908896,38148779:0,0,0 -k1,14767:32583029,38148779:12674133 -g1,14767:32583029,38148779 -) -(1,14767:6630773,38814957:25952256,410518,107478 -h1,14767:6630773,38814957:0,0,0 -g1,14767:7579210,38814957 -g1,14767:7895356,38814957 -g1,14767:8527648,38814957 -g1,14767:9792231,38814957 -g1,14767:10108377,38814957 -g1,14767:10424523,38814957 -g1,14767:10740669,38814957 -g1,14767:11056815,38814957 -g1,14767:11372961,38814957 -g1,14767:11689107,38814957 -g1,14767:12005253,38814957 -g1,14767:12637545,38814957 -g1,14767:14534419,38814957 -g1,14767:15799002,38814957 -g1,14767:17695876,38814957 -g1,14767:18328168,38814957 -g1,14767:18960460,38814957 -h1,14767:19276606,38814957:0,0,0 -k1,14767:32583029,38814957:13306423 -g1,14767:32583029,38814957 -) -(1,14767:6630773,39481135:25952256,410518,107478 -h1,14767:6630773,39481135:0,0,0 -g1,14767:7579210,39481135 -g1,14767:7895356,39481135 -g1,14767:8527648,39481135 -g1,14767:10108377,39481135 -g1,14767:10424523,39481135 -g1,14767:10740669,39481135 -g1,14767:11056815,39481135 -g1,14767:11372961,39481135 -g1,14767:11689107,39481135 -g1,14767:12005253,39481135 -g1,14767:12637545,39481135 -g1,14767:14534419,39481135 -g1,14767:15799002,39481135 -g1,14767:17695876,39481135 -g1,14767:18328168,39481135 -g1,14767:18960460,39481135 -h1,14767:19276606,39481135:0,0,0 -k1,14767:32583029,39481135:13306423 -g1,14767:32583029,39481135 -) -(1,14767:6630773,40147313:25952256,410518,31456 -h1,14767:6630773,40147313:0,0,0 -g1,14767:7579210,40147313 -g1,14767:7895356,40147313 -g1,14767:8527648,40147313 -g1,14767:10424522,40147313 -g1,14767:10740668,40147313 -g1,14767:11056814,40147313 -g1,14767:11372960,40147313 -g1,14767:11689106,40147313 -g1,14767:12005252,40147313 -g1,14767:12637544,40147313 -g1,14767:13902127,40147313 -h1,14767:14218273,40147313:0,0,0 -k1,14767:32583029,40147313:18364756 -g1,14767:32583029,40147313 -) -(1,14767:6630773,40813491:25952256,410518,31456 -h1,14767:6630773,40813491:0,0,0 -g1,14767:7579210,40813491 -g1,14767:7895356,40813491 -g1,14767:8527648,40813491 -g1,14767:10424522,40813491 -g1,14767:10740668,40813491 -g1,14767:11056814,40813491 -g1,14767:11372960,40813491 -g1,14767:11689106,40813491 -g1,14767:12005252,40813491 -g1,14767:12637544,40813491 -g1,14767:13902127,40813491 -h1,14767:14218273,40813491:0,0,0 -k1,14767:32583029,40813491:18364756 -g1,14767:32583029,40813491 -) -] -) -g1,14768:32583029,40844947 -g1,14768:6630773,40844947 -g1,14768:6630773,40844947 -g1,14768:32583029,40844947 -g1,14768:32583029,40844947 -) -h1,14768:6630773,41041555:0,0,0 -(1,14772:6630773,42340817:25952256,513147,115847 -h1,14771:6630773,42340817:983040,0,0 -k1,14771:8586425,42340817:154723 -k1,14771:10135099,42340817:154723 -k1,14771:11991792,42340817:154723 -k1,14771:12833988,42340817:154723 -k1,14771:15947006,42340817:154723 -k1,14771:18556051,42340817:154722 -(1,14771:18556051,42340817:0,452978,115847 -r1,14774:21728011,42340817:3171960,568825,115847 -k1,14771:18556051,42340817:-3171960 -) -(1,14771:18556051,42340817:3171960,452978,115847 -k1,14771:18556051,42340817:3277 -h1,14771:21724734,42340817:0,411205,112570 -) -k1,14771:21882734,42340817:154723 -k1,14771:22568954,42340817:154723 -k1,14771:25681317,42340817:154723 -k1,14771:28770742,42340817:154723 -k1,14771:30128706,42340817:154723 -k1,14771:32583029,42340817:0 -) -(1,14772:6630773,43182305:25952256,513147,134348 -k1,14771:7467186,43182305:220375 -k1,14771:8706646,43182305:220375 -k1,14771:10294102,43182305:220375 -k1,14771:11173769,43182305:220375 -k1,14771:12949313,43182305:220375 -(1,14771:12949313,43182305:0,452978,115847 -r1,14774:14011002,43182305:1061689,568825,115847 -k1,14771:12949313,43182305:-1061689 -) -(1,14771:12949313,43182305:1061689,452978,115847 -k1,14771:12949313,43182305:3277 -h1,14771:14007725,43182305:0,411205,112570 -) -k1,14771:14231377,43182305:220375 -k1,14771:15680552,43182305:220375 -k1,14771:18241872,43182305:220374 -k1,14771:19481332,43182305:220375 -(1,14771:19481332,43182305:0,452978,115847 -r1,14774:20543021,43182305:1061689,568825,115847 -k1,14771:19481332,43182305:-1061689 -) -(1,14771:19481332,43182305:1061689,452978,115847 -k1,14771:19481332,43182305:3277 -h1,14771:20539744,43182305:0,411205,112570 -) -k1,14771:20763396,43182305:220375 -k1,14771:22943297,43182305:220375 -k1,14771:25806739,43182305:220375 -k1,14771:26713276,43182305:220375 -k1,14771:30005979,43182305:220375 -k1,14771:31417799,43182305:220375 -k1,14772:32583029,43182305:0 -) -(1,14772:6630773,44023793:25952256,505283,126483 -k1,14771:8572458,44023793:268551 -k1,14771:9196868,44023793:268550 -k1,14771:12629497,44023793:268551 -k1,14771:13525883,44023793:268551 -k1,14771:15496403,44023793:268550 -k1,14771:17893563,44023793:268551 -k1,14771:18620211,44023793:268551 -k1,14771:21442044,44023793:268550 -k1,14771:24478836,44023793:268551 -k1,14771:25398815,44023793:268551 -(1,14771:25398815,44023793:0,452978,115847 -r1,14774:27867352,44023793:2468537,568825,115847 -k1,14771:25398815,44023793:-2468537 -) -(1,14771:25398815,44023793:2468537,452978,115847 -k1,14771:25398815,44023793:3277 -h1,14771:27864075,44023793:0,411205,112570 -) -k1,14771:28135902,44023793:268550 -k1,14771:31189078,44023793:268551 -k1,14771:32583029,44023793:0 -) -(1,14772:6630773,44865281:25952256,513147,134348 -k1,14771:9176918,44865281:221583 -k1,14771:10049929,44865281:221583 -k1,14771:11290598,44865281:221584 -k1,14771:14290908,44865281:221583 -k1,14771:16645688,44865281:221583 -k1,14771:17939440,44865281:221583 -k1,14771:21111454,44865281:221583 -k1,14771:21688897,44865281:221583 -k1,14771:24672824,44865281:221584 -k1,14771:27542717,44865281:221583 -k1,14771:29206747,44865281:221583 -(1,14771:29206747,44865281:0,452978,115847 -r1,14774:31675284,44865281:2468537,568825,115847 -k1,14771:29206747,44865281:-2468537 -) -(1,14771:29206747,44865281:2468537,452978,115847 -k1,14771:29206747,44865281:3277 -h1,14771:31672007,44865281:0,411205,112570 -) -k1,14771:31896867,44865281:221583 -k1,14771:32583029,44865281:0 -) -(1,14772:6630773,45706769:25952256,513147,7863 -g1,14771:7618400,45706769 -g1,14771:9117208,45706769 -k1,14772:32583029,45706769:21521368 -g1,14772:32583029,45706769 -) -] -(1,14774:32583029,45706769:0,0,0 -g1,14774:32583029,45706769 -) -) -] -(1,14774:6630773,47279633:25952256,0,0 -h1,14774:6630773,47279633:25952256,0,0 -) -] -(1,14774:4262630,4025873:0,0,0 -[1,14774:-473656,4025873:0,0,0 -(1,14774:-473656,-710413:0,0,0 -(1,14774:-473656,-710413:0,0,0 -g1,14774:-473656,-710413 -) -g1,14774:-473656,-710413 -) -] -) -] -!20908 -}249 -Input:2192:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2193:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2194:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2195:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2196:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2197:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2198:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2199:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2200:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!858 -{250 -[1,14837:4262630,47279633:28320399,43253760,0 -(1,14837:4262630,4025873:0,0,0 -[1,14837:-473656,4025873:0,0,0 -(1,14837:-473656,-710413:0,0,0 -(1,14837:-473656,-644877:0,0,0 -k1,14837:-473656,-644877:-65536 +] +g1,14396:6630773,4812305 +k1,14396:19540057,4812305:11713907 +g1,14396:21162728,4812305 +g1,14396:21985204,4812305 +g1,14396:24539797,4812305 +g1,14396:25949476,4812305 +g1,14396:28728857,4812305 +g1,14396:29852144,4812305 +) +) +] +[1,14396:6630773,45706769:25952256,40108032,0 +(1,14396:6630773,45706769:25952256,40108032,0 +(1,14396:6630773,45706769:0,0,0 +g1,14396:6630773,45706769 +) +[1,14396:6630773,45706769:25952256,40108032,0 +(1,14294:6630773,6254097:25952256,505283,134348 +k1,14293:9267001,6254097:217294 +k1,14293:11205269,6254097:217293 +k1,14293:13451558,6254097:217294 +k1,14293:14860296,6254097:217293 +k1,14293:16181872,6254097:217294 +k1,14293:19028470,6254097:217294 +k1,14293:21421558,6254097:217293 +k1,14293:22456741,6254097:217294 +k1,14293:24113861,6254097:217294 +k1,14293:26360149,6254097:217293 +k1,14293:29324057,6254097:217294 +(1,14293:29324057,6254097:0,414482,115847 +r1,14396:29682323,6254097:358266,530329,115847 +k1,14293:29324057,6254097:-358266 +) +(1,14293:29324057,6254097:358266,414482,115847 +k1,14293:29324057,6254097:3277 +h1,14293:29679046,6254097:0,411205,112570 +) +k1,14293:29899616,6254097:217293 +k1,14293:31837885,6254097:217294 +k1,14293:32583029,6254097:0 +) +(1,14294:6630773,7119177:25952256,513147,134348 +k1,14293:8368636,7119177:170242 +k1,14293:10657003,7119177:170243 +k1,14293:11478673,7119177:170242 +k1,14293:14546262,7119177:170242 +k1,14293:17248161,7119177:170243 +k1,14293:18184519,7119177:170242 +k1,14293:19373846,7119177:170242 +k1,14293:23009632,7119177:170242 +k1,14293:25022747,7119177:170243 +k1,14293:25809027,7119177:170242 +k1,14293:26335129,7119177:170242 +k1,14293:27595236,7119177:170243 +k1,14293:30421652,7119177:170242 +k1,14294:32583029,7119177:0 +k1,14294:32583029,7119177:0 +) +v1,14296:6630773,7804032:0,393216,0 +(1,14300:6630773,8121593:25952256,710777,196608 +g1,14300:6630773,8121593 +g1,14300:6630773,8121593 +g1,14300:6434165,8121593 +(1,14300:6434165,8121593:0,710777,196608 +r1,14396:32779637,8121593:26345472,907385,196608 +k1,14300:6434165,8121593:-26345472 +) +(1,14300:6434165,8121593:26345472,710777,196608 +[1,14300:6630773,8121593:25952256,514169,0 +(1,14298:6630773,8015347:25952256,407923,106246 +(1,14297:6630773,8015347:0,0,0 +g1,14297:6630773,8015347 +g1,14297:6630773,8015347 +g1,14297:6303093,8015347 +(1,14297:6303093,8015347:0,0,0 +) +g1,14297:6630773,8015347 +) +g1,14298:7294681,8015347 +g1,14298:7958589,8015347 +g1,14298:8954451,8015347 +g1,14298:9618359,8015347 +g1,14298:10614221,8015347 +g1,14298:11278129,8015347 +g1,14298:12273991,8015347 +g1,14298:12937899,8015347 +g1,14298:14929623,8015347 +g1,14298:15593531,8015347 +g1,14298:17585255,8015347 +g1,14298:18249163,8015347 +g1,14298:20240887,8015347 +g1,14298:20904795,8015347 +h1,14298:23560427,8015347:0,0,0 +k1,14298:32583029,8015347:9022602 +g1,14298:32583029,8015347 +) +] +) +g1,14300:32583029,8121593 +g1,14300:6630773,8121593 +g1,14300:6630773,8121593 +g1,14300:32583029,8121593 +g1,14300:32583029,8121593 +) +h1,14300:6630773,8318201:0,0,0 +(1,14304:6630773,9183281:25952256,505283,126483 +h1,14303:6630773,9183281:983040,0,0 +g1,14303:9039221,9183281 +g1,14303:9986216,9183281 +g1,14303:12904534,9183281 +g1,14303:13865291,9183281 +g1,14303:14420380,9183281 +g1,14303:16974973,9183281 +k1,14304:32583029,9183281:12129405 +g1,14304:32583029,9183281 +) +v1,14306:6630773,9868136:0,393216,0 +(1,14310:6630773,10185697:25952256,710777,196608 +g1,14310:6630773,10185697 +g1,14310:6630773,10185697 +g1,14310:6434165,10185697 +(1,14310:6434165,10185697:0,710777,196608 +r1,14396:32779637,10185697:26345472,907385,196608 +k1,14310:6434165,10185697:-26345472 +) +(1,14310:6434165,10185697:26345472,710777,196608 +[1,14310:6630773,10185697:25952256,514169,0 +(1,14308:6630773,10079451:25952256,407923,106246 +(1,14307:6630773,10079451:0,0,0 +g1,14307:6630773,10079451 +g1,14307:6630773,10079451 +g1,14307:6303093,10079451 +(1,14307:6303093,10079451:0,0,0 +) +g1,14307:6630773,10079451 +) +g1,14308:7294681,10079451 +g1,14308:7958589,10079451 +g1,14308:8954451,10079451 +g1,14308:9618359,10079451 +g1,14308:10614221,10079451 +g1,14308:11278129,10079451 +h1,14308:11942037,10079451:0,0,0 +k1,14308:32583029,10079451:20640992 +g1,14308:32583029,10079451 +) +] +) +g1,14310:32583029,10185697 +g1,14310:6630773,10185697 +g1,14310:6630773,10185697 +g1,14310:32583029,10185697 +g1,14310:32583029,10185697 +) +h1,14310:6630773,10382305:0,0,0 +(1,14314:6630773,11247385:25952256,513147,126483 +h1,14313:6630773,11247385:983040,0,0 +k1,14313:9578146,11247385:181098 +k1,14313:10778328,11247385:181097 +k1,14313:12947133,11247385:181098 +k1,14313:13779658,11247385:181097 +k1,14313:14708522,11247385:181098 +k1,14313:17721430,11247385:181097 +k1,14313:19395438,11247385:181098 +k1,14313:20642807,11247385:181098 +k1,14313:23161573,11247385:181097 +k1,14313:24108787,11247385:181098 +k1,14313:26919844,11247385:181097 +k1,14313:30566486,11247385:181098 +k1,14313:32583029,11247385:0 +) +(1,14314:6630773,12112465:25952256,505283,126483 +g1,14313:7698354,12112465 +g1,14313:9001865,12112465 +g1,14313:11912974,12112465 +g1,14313:13131288,12112465 +g1,14313:15685881,12112465 +g1,14313:18574708,12112465 +g1,14313:20167888,12112465 +k1,14314:32583029,12112465:8387298 +g1,14314:32583029,12112465 +) +v1,14316:6630773,12797320:0,393216,0 +(1,14321:6630773,13816252:25952256,1412148,196608 +g1,14321:6630773,13816252 +g1,14321:6630773,13816252 +g1,14321:6434165,13816252 +(1,14321:6434165,13816252:0,1412148,196608 +r1,14396:32779637,13816252:26345472,1608756,196608 +k1,14321:6434165,13816252:-26345472 +) +(1,14321:6434165,13816252:26345472,1412148,196608 +[1,14321:6630773,13816252:25952256,1215540,0 +(1,14318:6630773,13025151:25952256,424439,106246 +(1,14317:6630773,13025151:0,0,0 +g1,14317:6630773,13025151 +g1,14317:6630773,13025151 +g1,14317:6303093,13025151 +(1,14317:6303093,13025151:0,0,0 +) +g1,14317:6630773,13025151 +) +g1,14318:7294681,13025151 +g1,14318:7958589,13025151 +g1,14318:8954451,13025151 +g1,14318:9618359,13025151 +g1,14318:10946175,13025151 +g1,14318:11610083,13025151 +h1,14318:12605945,13025151:0,0,0 +k1,14318:32583029,13025151:19977084 +g1,14318:32583029,13025151 +) +(1,14319:6630773,13710006:25952256,407923,106246 +h1,14319:6630773,13710006:0,0,0 +g1,14319:7294681,13710006 +g1,14319:7958589,13710006 +g1,14319:8954451,13710006 +g1,14319:9618359,13710006 +g1,14319:10614221,13710006 +g1,14319:11278129,13710006 +g1,14319:12273991,13710006 +g1,14319:12937899,13710006 +h1,14319:14597669,13710006:0,0,0 +k1,14319:32583029,13710006:17985360 +g1,14319:32583029,13710006 +) +] +) +g1,14321:32583029,13816252 +g1,14321:6630773,13816252 +g1,14321:6630773,13816252 +g1,14321:32583029,13816252 +g1,14321:32583029,13816252 +) +h1,14321:6630773,14012860:0,0,0 +(1,14325:6630773,14877940:25952256,513147,134348 +h1,14324:6630773,14877940:983040,0,0 +g1,14324:9275150,14877940 +g1,14324:10493464,14877940 +g1,14324:11865132,14877940 +g1,14324:14052068,14877940 +g1,14324:17125051,14877940 +g1,14324:19179604,14877940 +g1,14324:20370393,14877940 +g1,14324:24048273,14877940 +g1,14324:25351784,14877940 +g1,14324:26298779,14877940 +g1,14324:27937834,14877940 +g1,14324:29872456,14877940 +(1,14324:29872456,14877940:0,452978,115847 +r1,14396:32340993,14877940:2468537,568825,115847 +k1,14324:29872456,14877940:-2468537 +) +(1,14324:29872456,14877940:2468537,452978,115847 +k1,14324:29872456,14877940:3277 +h1,14324:32337716,14877940:0,411205,112570 +) +k1,14325:32583029,14877940:242036 +g1,14325:32583029,14877940 +) +v1,14327:6630773,15562795:0,393216,0 +(1,14352:6630773,28986790:25952256,13817211,196608 +g1,14352:6630773,28986790 +g1,14352:6630773,28986790 +g1,14352:6434165,28986790 +(1,14352:6434165,28986790:0,13817211,196608 +r1,14396:32779637,28986790:26345472,14013819,196608 +k1,14352:6434165,28986790:-26345472 +) +(1,14352:6434165,28986790:26345472,13817211,196608 +[1,14352:6630773,28986790:25952256,13620603,0 +(1,14329:6630773,15790626:25952256,424439,106246 +(1,14328:6630773,15790626:0,0,0 +g1,14328:6630773,15790626 +g1,14328:6630773,15790626 +g1,14328:6303093,15790626 +(1,14328:6303093,15790626:0,0,0 +) +g1,14328:6630773,15790626 +) +k1,14329:6630773,15790626:0 +g1,14329:9286405,15790626 +g1,14329:9950313,15790626 +g1,14329:10946175,15790626 +g1,14329:11610083,15790626 +g1,14329:12937899,15790626 +g1,14329:13601807,15790626 +h1,14329:14929623,15790626:0,0,0 +k1,14329:32583029,15790626:17653406 +g1,14329:32583029,15790626 +) +(1,14351:6630773,16606553:25952256,424439,106246 +(1,14331:6630773,16606553:0,0,0 +g1,14331:6630773,16606553 +g1,14331:6630773,16606553 +g1,14331:6303093,16606553 +(1,14331:6303093,16606553:0,0,0 +) +g1,14331:6630773,16606553 +) +g1,14351:7626635,16606553 +g1,14351:8290543,16606553 +g1,14351:8954451,16606553 +g1,14351:9950313,16606553 +g1,14351:10614221,16606553 +g1,14351:11942037,16606553 +g1,14351:12605945,16606553 +h1,14351:13601807,16606553:0,0,0 +k1,14351:32583029,16606553:18981222 +g1,14351:32583029,16606553 +) +(1,14351:6630773,17291408:25952256,424439,86428 +h1,14351:6630773,17291408:0,0,0 +g1,14351:7626635,17291408 +k1,14351:7626635,17291408:0 +h1,14351:13601806,17291408:0,0,0 +k1,14351:32583030,17291408:18981224 +g1,14351:32583030,17291408 +) +(1,14351:6630773,17976263:25952256,424439,106246 +h1,14351:6630773,17976263:0,0,0 +g1,14351:7626635,17976263 +g1,14351:10282267,17976263 +g1,14351:11610083,17976263 +g1,14351:12937899,17976263 +h1,14351:13933761,17976263:0,0,0 +k1,14351:32583029,17976263:18649268 +g1,14351:32583029,17976263 +) +(1,14351:6630773,18661118:25952256,431045,86428 +h1,14351:6630773,18661118:0,0,0 +g1,14351:7626635,18661118 +k1,14351:7626635,18661118:0 +h1,14351:12937898,18661118:0,0,0 +k1,14351:32583030,18661118:19645132 +g1,14351:32583030,18661118 +) +(1,14351:6630773,19345973:25952256,407923,9908 +h1,14351:6630773,19345973:0,0,0 +g1,14351:7626635,19345973 +g1,14351:7958589,19345973 +g1,14351:8290543,19345973 +g1,14351:8622497,19345973 +g1,14351:9618359,19345973 +g1,14351:10614221,19345973 +g1,14351:11610083,19345973 +h1,14351:13269853,19345973:0,0,0 +k1,14351:32583029,19345973:19313176 +g1,14351:32583029,19345973 +) +(1,14351:6630773,20030828:25952256,407923,106246 +h1,14351:6630773,20030828:0,0,0 +g1,14351:7626635,20030828 +g1,14351:8290543,20030828 +g1,14351:8622497,20030828 +g1,14351:8954451,20030828 +g1,14351:9618359,20030828 +g1,14351:9950313,20030828 +g1,14351:10614221,20030828 +g1,14351:10946175,20030828 +g1,14351:11610083,20030828 +g1,14351:11942037,20030828 +g1,14351:12273991,20030828 +g1,14351:12605945,20030828 +g1,14351:12937899,20030828 +h1,14351:13269853,20030828:0,0,0 +k1,14351:32583029,20030828:19313176 +g1,14351:32583029,20030828 +) +(1,14351:6630773,20715683:25952256,407923,9908 +h1,14351:6630773,20715683:0,0,0 +g1,14351:7626635,20715683 +g1,14351:8622497,20715683 +g1,14351:8954451,20715683 +g1,14351:9618359,20715683 +g1,14351:9950313,20715683 +g1,14351:10614221,20715683 +g1,14351:10946175,20715683 +g1,14351:11610083,20715683 +g1,14351:11942037,20715683 +g1,14351:12273991,20715683 +g1,14351:12605945,20715683 +g1,14351:12937899,20715683 +h1,14351:13269853,20715683:0,0,0 +k1,14351:32583029,20715683:19313176 +g1,14351:32583029,20715683 +) +(1,14351:6630773,21400538:25952256,407923,9908 +h1,14351:6630773,21400538:0,0,0 +g1,14351:7626635,21400538 +g1,14351:8622497,21400538 +g1,14351:8954451,21400538 +g1,14351:9618359,21400538 +g1,14351:9950313,21400538 +g1,14351:10614221,21400538 +g1,14351:10946175,21400538 +g1,14351:11610083,21400538 +g1,14351:11942037,21400538 +g1,14351:12273991,21400538 +g1,14351:12605945,21400538 +g1,14351:12937899,21400538 +h1,14351:13269853,21400538:0,0,0 +k1,14351:32583029,21400538:19313176 +g1,14351:32583029,21400538 +) +(1,14351:6630773,22085393:25952256,407923,9908 +h1,14351:6630773,22085393:0,0,0 +g1,14351:7626635,22085393 +g1,14351:8622497,22085393 +g1,14351:8954451,22085393 +g1,14351:9618359,22085393 +g1,14351:9950313,22085393 +g1,14351:10614221,22085393 +g1,14351:10946175,22085393 +g1,14351:11610083,22085393 +g1,14351:11942037,22085393 +g1,14351:12273991,22085393 +g1,14351:12605945,22085393 +g1,14351:12937899,22085393 +h1,14351:13269853,22085393:0,0,0 +k1,14351:32583029,22085393:19313176 +g1,14351:32583029,22085393 +) +(1,14351:6630773,22770248:25952256,424439,86428 +h1,14351:6630773,22770248:0,0,0 +g1,14351:7626635,22770248 +k1,14351:7626635,22770248:0 +h1,14351:14265714,22770248:0,0,0 +k1,14351:32583030,22770248:18317316 +g1,14351:32583030,22770248 +) +(1,14351:6630773,23455103:25952256,424439,79822 +h1,14351:6630773,23455103:0,0,0 +g1,14351:7626635,23455103 +g1,14351:8954451,23455103 +g1,14351:10614221,23455103 +g1,14351:10946175,23455103 +g1,14351:11278129,23455103 +g1,14351:11610083,23455103 +g1,14351:13269853,23455103 +g1,14351:13601807,23455103 +g1,14351:13933761,23455103 +g1,14351:14265715,23455103 +g1,14351:15925485,23455103 +g1,14351:16257439,23455103 +g1,14351:16589393,23455103 +g1,14351:16921347,23455103 +h1,14351:19245025,23455103:0,0,0 +k1,14351:32583029,23455103:13338004 +g1,14351:32583029,23455103 +) +(1,14351:6630773,24139958:25952256,424439,86428 +h1,14351:6630773,24139958:0,0,0 +g1,14351:7626635,24139958 +k1,14351:7626635,24139958:0 +h1,14351:12273990,24139958:0,0,0 +k1,14351:32583030,24139958:20309040 +g1,14351:32583030,24139958 +) +(1,14351:6630773,24824813:25952256,424439,79822 +h1,14351:6630773,24824813:0,0,0 +g1,14351:7626635,24824813 +g1,14351:8954451,24824813 +g1,14351:9618359,24824813 +g1,14351:10282267,24824813 +g1,14351:10946175,24824813 +h1,14351:11278129,24824813:0,0,0 +k1,14351:32583029,24824813:21304900 +g1,14351:32583029,24824813 +) +(1,14351:6630773,25509668:25952256,424439,106246 +h1,14351:6630773,25509668:0,0,0 +g1,14351:7626635,25509668 +k1,14351:7626635,25509668:0 +h1,14351:13601806,25509668:0,0,0 +k1,14351:32583030,25509668:18981224 +g1,14351:32583030,25509668 +) +(1,14351:6630773,26194523:25952256,424439,79822 +h1,14351:6630773,26194523:0,0,0 +g1,14351:7626635,26194523 +g1,14351:8954451,26194523 +h1,14351:9286405,26194523:0,0,0 +k1,14351:32583029,26194523:23296624 +g1,14351:32583029,26194523 +) +(1,14351:6630773,26879378:25952256,424439,106246 +h1,14351:6630773,26879378:0,0,0 +g1,14351:7626635,26879378 +k1,14351:7626635,26879378:0 +h1,14351:13269852,26879378:0,0,0 +k1,14351:32583028,26879378:19313176 +g1,14351:32583028,26879378 +) +(1,14351:6630773,27564233:25952256,424439,79822 +h1,14351:6630773,27564233:0,0,0 +g1,14351:7626635,27564233 +g1,14351:8954451,27564233 +h1,14351:9286405,27564233:0,0,0 +k1,14351:32583029,27564233:23296624 +g1,14351:32583029,27564233 +) +(1,14351:6630773,28249088:25952256,424439,86428 +h1,14351:6630773,28249088:0,0,0 +g1,14351:7626635,28249088 +k1,14351:7626635,28249088:0 +h1,14351:14597668,28249088:0,0,0 +k1,14351:32583028,28249088:17985360 +g1,14351:32583028,28249088 +) +(1,14351:6630773,28933943:25952256,424439,52847 +h1,14351:6630773,28933943:0,0,0 +g1,14351:7626635,28933943 +g1,14351:12273990,28933943 +k1,14351:12273990,28933943:0 +h1,14351:16257437,28933943:0,0,0 +k1,14351:32583029,28933943:16325592 +g1,14351:32583029,28933943 +) +] +) +g1,14352:32583029,28986790 +g1,14352:6630773,28986790 +g1,14352:6630773,28986790 +g1,14352:32583029,28986790 +g1,14352:32583029,28986790 +) +h1,14352:6630773,29183398:0,0,0 +v1,14356:6630773,29868253:0,393216,0 +(1,14361:6630773,30887185:25952256,1412148,196608 +g1,14361:6630773,30887185 +g1,14361:6630773,30887185 +g1,14361:6434165,30887185 +(1,14361:6434165,30887185:0,1412148,196608 +r1,14396:32779637,30887185:26345472,1608756,196608 +k1,14361:6434165,30887185:-26345472 +) +(1,14361:6434165,30887185:26345472,1412148,196608 +[1,14361:6630773,30887185:25952256,1215540,0 +(1,14358:6630773,30096084:25952256,424439,106246 +(1,14357:6630773,30096084:0,0,0 +g1,14357:6630773,30096084 +g1,14357:6630773,30096084 +g1,14357:6303093,30096084 +(1,14357:6303093,30096084:0,0,0 +) +g1,14357:6630773,30096084 +) +g1,14358:7294681,30096084 +g1,14358:7958589,30096084 +g1,14358:8954451,30096084 +g1,14358:9618359,30096084 +g1,14358:10946175,30096084 +g1,14358:11610083,30096084 +h1,14358:12605945,30096084:0,0,0 +k1,14358:32583029,30096084:19977084 +g1,14358:32583029,30096084 +) +(1,14359:6630773,30780939:25952256,407923,106246 +h1,14359:6630773,30780939:0,0,0 +g1,14359:7294681,30780939 +g1,14359:7958589,30780939 +g1,14359:8954451,30780939 +g1,14359:9618359,30780939 +g1,14359:10614221,30780939 +g1,14359:11278129,30780939 +g1,14359:12273991,30780939 +g1,14359:12937899,30780939 +g1,14359:14929623,30780939 +g1,14359:15593531,30780939 +h1,14359:17253301,30780939:0,0,0 +k1,14359:32583029,30780939:15329728 +g1,14359:32583029,30780939 +) +] +) +g1,14361:32583029,30887185 +g1,14361:6630773,30887185 +g1,14361:6630773,30887185 +g1,14361:32583029,30887185 +g1,14361:32583029,30887185 +) +h1,14361:6630773,31083793:0,0,0 +v1,14365:6630773,31768648:0,393216,0 +(1,14390:6630773,45192643:25952256,13817211,196608 +g1,14390:6630773,45192643 +g1,14390:6630773,45192643 +g1,14390:6434165,45192643 +(1,14390:6434165,45192643:0,13817211,196608 +r1,14396:32779637,45192643:26345472,14013819,196608 +k1,14390:6434165,45192643:-26345472 +) +(1,14390:6434165,45192643:26345472,13817211,196608 +[1,14390:6630773,45192643:25952256,13620603,0 +(1,14367:6630773,31996479:25952256,424439,106246 +(1,14366:6630773,31996479:0,0,0 +g1,14366:6630773,31996479 +g1,14366:6630773,31996479 +g1,14366:6303093,31996479 +(1,14366:6303093,31996479:0,0,0 +) +g1,14366:6630773,31996479 +) +k1,14367:6630773,31996479:0 +g1,14367:9286405,31996479 +g1,14367:9950313,31996479 +g1,14367:10946175,31996479 +g1,14367:11610083,31996479 +g1,14367:12937899,31996479 +g1,14367:13601807,31996479 +h1,14367:14929623,31996479:0,0,0 +k1,14367:32583029,31996479:17653406 +g1,14367:32583029,31996479 +) +(1,14389:6630773,32812406:25952256,424439,106246 +(1,14369:6630773,32812406:0,0,0 +g1,14369:6630773,32812406 +g1,14369:6630773,32812406 +g1,14369:6303093,32812406 +(1,14369:6303093,32812406:0,0,0 +) +g1,14369:6630773,32812406 +) +g1,14389:7626635,32812406 +g1,14389:8290543,32812406 +g1,14389:8954451,32812406 +g1,14389:9950313,32812406 +g1,14389:10614221,32812406 +g1,14389:11942037,32812406 +g1,14389:12605945,32812406 +h1,14389:13601807,32812406:0,0,0 +k1,14389:32583029,32812406:18981222 +g1,14389:32583029,32812406 +) +(1,14389:6630773,33497261:25952256,424439,86428 +h1,14389:6630773,33497261:0,0,0 +g1,14389:7626635,33497261 +k1,14389:7626635,33497261:0 +h1,14389:13601806,33497261:0,0,0 +k1,14389:32583030,33497261:18981224 +g1,14389:32583030,33497261 +) +(1,14389:6630773,34182116:25952256,424439,106246 +h1,14389:6630773,34182116:0,0,0 +g1,14389:7626635,34182116 +g1,14389:10282267,34182116 +g1,14389:11610083,34182116 +g1,14389:12937899,34182116 +h1,14389:13933761,34182116:0,0,0 +k1,14389:32583029,34182116:18649268 +g1,14389:32583029,34182116 +) +(1,14389:6630773,34866971:25952256,431045,86428 +h1,14389:6630773,34866971:0,0,0 +g1,14389:7626635,34866971 +k1,14389:7626635,34866971:0 +h1,14389:12937898,34866971:0,0,0 +k1,14389:32583030,34866971:19645132 +g1,14389:32583030,34866971 +) +(1,14389:6630773,35551826:25952256,407923,9908 +h1,14389:6630773,35551826:0,0,0 +g1,14389:7626635,35551826 +g1,14389:7958589,35551826 +g1,14389:8290543,35551826 +g1,14389:8622497,35551826 +g1,14389:9618359,35551826 +g1,14389:10614221,35551826 +g1,14389:11610083,35551826 +g1,14389:13601807,35551826 +h1,14389:15261577,35551826:0,0,0 +k1,14389:32583029,35551826:17321452 +g1,14389:32583029,35551826 +) +(1,14389:6630773,36236681:25952256,407923,106246 +h1,14389:6630773,36236681:0,0,0 +g1,14389:7626635,36236681 +g1,14389:8290543,36236681 +g1,14389:8622497,36236681 +g1,14389:8954451,36236681 +g1,14389:9618359,36236681 +g1,14389:9950313,36236681 +g1,14389:10614221,36236681 +g1,14389:10946175,36236681 +g1,14389:11610083,36236681 +g1,14389:11942037,36236681 +g1,14389:12273991,36236681 +g1,14389:12605945,36236681 +g1,14389:12937899,36236681 +g1,14389:13601807,36236681 +g1,14389:13933761,36236681 +g1,14389:14265715,36236681 +g1,14389:14597669,36236681 +g1,14389:14929623,36236681 +h1,14389:15261577,36236681:0,0,0 +k1,14389:32583029,36236681:17321452 +g1,14389:32583029,36236681 +) +(1,14389:6630773,36921536:25952256,407923,9908 +h1,14389:6630773,36921536:0,0,0 +g1,14389:7626635,36921536 +g1,14389:8622497,36921536 +g1,14389:8954451,36921536 +g1,14389:9618359,36921536 +g1,14389:9950313,36921536 +g1,14389:10614221,36921536 +g1,14389:10946175,36921536 +g1,14389:11610083,36921536 +g1,14389:11942037,36921536 +g1,14389:12273991,36921536 +g1,14389:12605945,36921536 +g1,14389:12937899,36921536 +g1,14389:13601807,36921536 +g1,14389:13933761,36921536 +g1,14389:14265715,36921536 +g1,14389:14597669,36921536 +g1,14389:14929623,36921536 +h1,14389:15261577,36921536:0,0,0 +k1,14389:32583029,36921536:17321452 +g1,14389:32583029,36921536 +) +(1,14389:6630773,37606391:25952256,407923,9908 +h1,14389:6630773,37606391:0,0,0 +g1,14389:7626635,37606391 +g1,14389:8622497,37606391 +g1,14389:8954451,37606391 +g1,14389:9618359,37606391 +g1,14389:9950313,37606391 +g1,14389:10614221,37606391 +g1,14389:10946175,37606391 +g1,14389:11610083,37606391 +g1,14389:11942037,37606391 +g1,14389:12273991,37606391 +g1,14389:12605945,37606391 +g1,14389:12937899,37606391 +g1,14389:13601807,37606391 +g1,14389:13933761,37606391 +g1,14389:14265715,37606391 +g1,14389:14597669,37606391 +g1,14389:14929623,37606391 +h1,14389:15261577,37606391:0,0,0 +k1,14389:32583029,37606391:17321452 +g1,14389:32583029,37606391 +) +(1,14389:6630773,38291246:25952256,407923,9908 +h1,14389:6630773,38291246:0,0,0 +g1,14389:7626635,38291246 +g1,14389:8622497,38291246 +g1,14389:8954451,38291246 +g1,14389:9618359,38291246 +g1,14389:9950313,38291246 +g1,14389:10614221,38291246 +g1,14389:10946175,38291246 +g1,14389:11610083,38291246 +g1,14389:11942037,38291246 +g1,14389:12273991,38291246 +g1,14389:12605945,38291246 +g1,14389:12937899,38291246 +g1,14389:13601807,38291246 +g1,14389:13933761,38291246 +g1,14389:14265715,38291246 +g1,14389:14597669,38291246 +g1,14389:14929623,38291246 +h1,14389:15261577,38291246:0,0,0 +k1,14389:32583029,38291246:17321452 +g1,14389:32583029,38291246 +) +(1,14389:6630773,38976101:25952256,424439,86428 +h1,14389:6630773,38976101:0,0,0 +g1,14389:7626635,38976101 +k1,14389:7626635,38976101:0 +h1,14389:14265714,38976101:0,0,0 +k1,14389:32583030,38976101:18317316 +g1,14389:32583030,38976101 +) +(1,14389:6630773,39660956:25952256,424439,79822 +h1,14389:6630773,39660956:0,0,0 +g1,14389:7626635,39660956 +g1,14389:8954451,39660956 +g1,14389:10614221,39660956 +g1,14389:10946175,39660956 +g1,14389:11278129,39660956 +g1,14389:11610083,39660956 +g1,14389:13269853,39660956 +g1,14389:13601807,39660956 +g1,14389:13933761,39660956 +g1,14389:14265715,39660956 +g1,14389:15925485,39660956 +g1,14389:16257439,39660956 +g1,14389:16589393,39660956 +g1,14389:16921347,39660956 +g1,14389:19576979,39660956 +h1,14389:21900657,39660956:0,0,0 +k1,14389:32583029,39660956:10682372 +g1,14389:32583029,39660956 +) +(1,14389:6630773,40345811:25952256,424439,86428 +h1,14389:6630773,40345811:0,0,0 +g1,14389:7626635,40345811 +k1,14389:7626635,40345811:0 +h1,14389:12273990,40345811:0,0,0 +k1,14389:32583030,40345811:20309040 +g1,14389:32583030,40345811 +) +(1,14389:6630773,41030666:25952256,424439,79822 +h1,14389:6630773,41030666:0,0,0 +g1,14389:7626635,41030666 +g1,14389:8954451,41030666 +g1,14389:9618359,41030666 +g1,14389:10282267,41030666 +g1,14389:10946175,41030666 +g1,14389:11610083,41030666 +h1,14389:11942037,41030666:0,0,0 +k1,14389:32583029,41030666:20640992 +g1,14389:32583029,41030666 +) +(1,14389:6630773,41715521:25952256,424439,106246 +h1,14389:6630773,41715521:0,0,0 +g1,14389:7626635,41715521 +k1,14389:7626635,41715521:0 +h1,14389:13601806,41715521:0,0,0 +k1,14389:32583030,41715521:18981224 +g1,14389:32583030,41715521 +) +(1,14389:6630773,42400376:25952256,424439,79822 +h1,14389:6630773,42400376:0,0,0 +g1,14389:7626635,42400376 +g1,14389:8954451,42400376 +h1,14389:9286405,42400376:0,0,0 +k1,14389:32583029,42400376:23296624 +g1,14389:32583029,42400376 +) +(1,14389:6630773,43085231:25952256,424439,106246 +h1,14389:6630773,43085231:0,0,0 +g1,14389:7626635,43085231 +k1,14389:7626635,43085231:0 +h1,14389:13269852,43085231:0,0,0 +k1,14389:32583028,43085231:19313176 +g1,14389:32583028,43085231 +) +(1,14389:6630773,43770086:25952256,424439,79822 +h1,14389:6630773,43770086:0,0,0 +g1,14389:7626635,43770086 +g1,14389:8954451,43770086 +h1,14389:9286405,43770086:0,0,0 +k1,14389:32583029,43770086:23296624 +g1,14389:32583029,43770086 +) +(1,14389:6630773,44454941:25952256,424439,86428 +h1,14389:6630773,44454941:0,0,0 +g1,14389:7626635,44454941 +k1,14389:7626635,44454941:0 +h1,14389:14597668,44454941:0,0,0 +k1,14389:32583028,44454941:17985360 +g1,14389:32583028,44454941 +) +(1,14389:6630773,45139796:25952256,424439,52847 +h1,14389:6630773,45139796:0,0,0 +g1,14389:7626635,45139796 +g1,14389:12273990,45139796 +k1,14389:12273990,45139796:0 +h1,14389:16257437,45139796:0,0,0 +k1,14389:32583029,45139796:16325592 +g1,14389:32583029,45139796 +) +] +) +g1,14390:32583029,45192643 +g1,14390:6630773,45192643 +g1,14390:6630773,45192643 +g1,14390:32583029,45192643 +g1,14390:32583029,45192643 +) +h1,14390:6630773,45389251:0,0,0 +] +(1,14396:32583029,45706769:0,0,0 +g1,14396:32583029,45706769 +) +) +] +(1,14396:6630773,47279633:25952256,0,0 +h1,14396:6630773,47279633:25952256,0,0 +) +] +(1,14396:4262630,4025873:0,0,0 +[1,14396:-473656,4025873:0,0,0 +(1,14396:-473656,-710413:0,0,0 +(1,14396:-473656,-710413:0,0,0 +g1,14396:-473656,-710413 +) +g1,14396:-473656,-710413 +) +] +) +] +!27416 +}231 +Input:2189:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2190:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2191:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!294 +{232 +[1,14486:4262630,47279633:28320399,43253760,0 +(1,14486:4262630,4025873:0,0,0 +[1,14486:-473656,4025873:0,0,0 +(1,14486:-473656,-710413:0,0,0 +(1,14486:-473656,-644877:0,0,0 +k1,14486:-473656,-644877:-65536 ) -(1,14837:-473656,4736287:0,0,0 -k1,14837:-473656,4736287:5209943 +(1,14486:-473656,4736287:0,0,0 +k1,14486:-473656,4736287:5209943 ) -g1,14837:-473656,-710413 +g1,14486:-473656,-710413 ) ] ) -[1,14837:6630773,47279633:25952256,43253760,0 -[1,14837:6630773,4812305:25952256,786432,0 -(1,14837:6630773,4812305:25952256,505283,11795 -(1,14837:6630773,4812305:25952256,505283,11795 -g1,14837:3078558,4812305 -[1,14837:3078558,4812305:0,0,0 -(1,14837:3078558,2439708:0,1703936,0 -k1,14837:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,14837:2537886,2439708:1179648,16384,0 +[1,14486:6630773,47279633:25952256,43253760,0 +[1,14486:6630773,4812305:25952256,786432,0 +(1,14486:6630773,4812305:25952256,513147,126483 +(1,14486:6630773,4812305:25952256,513147,126483 +g1,14486:3078558,4812305 +[1,14486:3078558,4812305:0,0,0 +(1,14486:3078558,2439708:0,1703936,0 +k1,14486:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,14486:2537886,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,14837:3078558,1915420:16384,1179648,0 +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,14486:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] ) ) ) ] -[1,14837:3078558,4812305:0,0,0 -(1,14837:3078558,2439708:0,1703936,0 -g1,14837:29030814,2439708 -g1,14837:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,14837:36151628,1915420:16384,1179648,0 +[1,14486:3078558,4812305:0,0,0 +(1,14486:3078558,2439708:0,1703936,0 +g1,14486:29030814,2439708 +g1,14486:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,14486:36151628,1915420:16384,1179648,0 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,14837:37855564,2439708:1179648,16384,0 +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,14486:37855564,2439708:1179648,16384,0 ) ) -k1,14837:3078556,2439708:-34777008 +k1,14486:3078556,2439708:-34777008 ) ] -[1,14837:3078558,4812305:0,0,0 -(1,14837:3078558,49800853:0,16384,2228224 -k1,14837:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,14837:2537886,49800853:1179648,16384,0 +[1,14486:3078558,4812305:0,0,0 +(1,14486:3078558,49800853:0,16384,2228224 +k1,14486:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,14486:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,14837:3078558,51504789:16384,1179648,0 +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,14486:3078558,51504789:16384,1179648,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 ) ] ) ) ) ] -[1,14837:3078558,4812305:0,0,0 -(1,14837:3078558,49800853:0,16384,2228224 -g1,14837:29030814,49800853 -g1,14837:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,14837:36151628,51504789:16384,1179648,0 +[1,14486:3078558,4812305:0,0,0 +(1,14486:3078558,49800853:0,16384,2228224 +g1,14486:29030814,49800853 +g1,14486:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,14486:36151628,51504789:16384,1179648,0 ) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 +) +] +) +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,14486:37855564,49800853:1179648,16384,0 ) -] ) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,14837:37855564,49800853:1179648,16384,0 +k1,14486:3078556,49800853:-34777008 ) +] +g1,14486:6630773,4812305 +g1,14486:6630773,4812305 +g1,14486:8691224,4812305 +g1,14486:11722264,4812305 +k1,14486:31387652,4812305:19665388 +) +) +] +[1,14486:6630773,45706769:25952256,40108032,0 +(1,14486:6630773,45706769:25952256,40108032,0 +(1,14486:6630773,45706769:0,0,0 +g1,14486:6630773,45706769 +) +[1,14486:6630773,45706769:25952256,40108032,0 +(1,14394:6630773,6254097:25952256,513147,126483 +h1,14393:6630773,6254097:983040,0,0 +k1,14393:9000369,6254097:189869 +(1,14393:9000369,6254097:0,424981,115847 +r1,14486:9358635,6254097:358266,540828,115847 +k1,14393:9000369,6254097:-358266 +) +(1,14393:9000369,6254097:358266,424981,115847 +k1,14393:9000369,6254097:3277 +h1,14393:9355358,6254097:0,411205,112570 +) +k1,14393:9548505,6254097:189870 +k1,14393:12484988,6254097:189869 +k1,14393:15435233,6254097:189869 +k1,14393:15980963,6254097:189870 +k1,14393:18526196,6254097:189869 +k1,14393:21405663,6254097:189869 +k1,14393:22246960,6254097:189869 +k1,14393:23921220,6254097:189870 +k1,14393:25130174,6254097:189869 +k1,14393:27059369,6254097:189869 +k1,14393:27908531,6254097:189870 +k1,14393:29117485,6254097:189869 +k1,14393:32583029,6254097:0 +) +(1,14394:6630773,7119177:25952256,513147,7863 +g1,14393:8672874,7119177 +g1,14393:11630513,7119177 +g1,14393:12445780,7119177 +g1,14393:13000869,7119177 +k1,14394:32583028,7119177:16865036 +g1,14394:32583028,7119177 +) +v1,14396:6630773,7804032:0,393216,0 +(1,14401:6630773,8822964:25952256,1412148,196608 +g1,14401:6630773,8822964 +g1,14401:6630773,8822964 +g1,14401:6434165,8822964 +(1,14401:6434165,8822964:0,1412148,196608 +r1,14486:32779637,8822964:26345472,1608756,196608 +k1,14401:6434165,8822964:-26345472 +) +(1,14401:6434165,8822964:26345472,1412148,196608 +[1,14401:6630773,8822964:25952256,1215540,0 +(1,14398:6630773,8031863:25952256,424439,106246 +(1,14397:6630773,8031863:0,0,0 +g1,14397:6630773,8031863 +g1,14397:6630773,8031863 +g1,14397:6303093,8031863 +(1,14397:6303093,8031863:0,0,0 +) +g1,14397:6630773,8031863 +) +g1,14398:7294681,8031863 +g1,14398:7958589,8031863 +g1,14398:9286405,8031863 +g1,14398:9950313,8031863 +g1,14398:10946175,8031863 +g1,14398:11610083,8031863 +h1,14398:13269853,8031863:0,0,0 +k1,14398:32583029,8031863:19313176 +g1,14398:32583029,8031863 +) +(1,14399:6630773,8716718:25952256,407923,106246 +h1,14399:6630773,8716718:0,0,0 +g1,14399:7294681,8716718 +g1,14399:7958589,8716718 +g1,14399:8954451,8716718 +g1,14399:9618359,8716718 +g1,14399:10614221,8716718 +g1,14399:11278129,8716718 +g1,14399:12273991,8716718 +g1,14399:12937899,8716718 +g1,14399:14929623,8716718 +g1,14399:15593531,8716718 +g1,14399:17585255,8716718 +g1,14399:18249163,8716718 +h1,14399:19908933,8716718:0,0,0 +k1,14399:32583029,8716718:12674096 +g1,14399:32583029,8716718 +) +] +) +g1,14401:32583029,8822964 +g1,14401:6630773,8822964 +g1,14401:6630773,8822964 +g1,14401:32583029,8822964 +g1,14401:32583029,8822964 +) +h1,14401:6630773,9019572:0,0,0 +v1,14405:6630773,9704427:0,393216,0 +(1,14430:6630773,23128422:25952256,13817211,196608 +g1,14430:6630773,23128422 +g1,14430:6630773,23128422 +g1,14430:6434165,23128422 +(1,14430:6434165,23128422:0,13817211,196608 +r1,14486:32779637,23128422:26345472,14013819,196608 +k1,14430:6434165,23128422:-26345472 +) +(1,14430:6434165,23128422:26345472,13817211,196608 +[1,14430:6630773,23128422:25952256,13620603,0 +(1,14407:6630773,9932258:25952256,424439,106246 +(1,14406:6630773,9932258:0,0,0 +g1,14406:6630773,9932258 +g1,14406:6630773,9932258 +g1,14406:6303093,9932258 +(1,14406:6303093,9932258:0,0,0 +) +g1,14406:6630773,9932258 +) +k1,14407:6630773,9932258:0 +g1,14407:9286405,9932258 +g1,14407:9950313,9932258 +g1,14407:11278129,9932258 +g1,14407:11942037,9932258 +g1,14407:12937899,9932258 +g1,14407:13601807,9932258 +h1,14407:15593531,9932258:0,0,0 +k1,14407:32583029,9932258:16989498 +g1,14407:32583029,9932258 +) +(1,14429:6630773,10748185:25952256,424439,106246 +(1,14409:6630773,10748185:0,0,0 +g1,14409:6630773,10748185 +g1,14409:6630773,10748185 +g1,14409:6303093,10748185 +(1,14409:6303093,10748185:0,0,0 +) +g1,14409:6630773,10748185 +) +g1,14429:7626635,10748185 +g1,14429:8290543,10748185 +g1,14429:8954451,10748185 +g1,14429:10282267,10748185 +g1,14429:10946175,10748185 +g1,14429:11942037,10748185 +g1,14429:12605945,10748185 +h1,14429:14265715,10748185:0,0,0 +k1,14429:32583029,10748185:18317314 +g1,14429:32583029,10748185 +) +(1,14429:6630773,11433040:25952256,424439,86428 +h1,14429:6630773,11433040:0,0,0 +g1,14429:7626635,11433040 +k1,14429:7626635,11433040:0 +h1,14429:13601806,11433040:0,0,0 +k1,14429:32583030,11433040:18981224 +g1,14429:32583030,11433040 +) +(1,14429:6630773,12117895:25952256,424439,106246 +h1,14429:6630773,12117895:0,0,0 +g1,14429:7626635,12117895 +g1,14429:10282267,12117895 +g1,14429:11610083,12117895 +g1,14429:12937899,12117895 +h1,14429:13933761,12117895:0,0,0 +k1,14429:32583029,12117895:18649268 +g1,14429:32583029,12117895 +) +(1,14429:6630773,12802750:25952256,431045,86428 +h1,14429:6630773,12802750:0,0,0 +g1,14429:7626635,12802750 +k1,14429:7626635,12802750:0 +h1,14429:12937898,12802750:0,0,0 +k1,14429:32583030,12802750:19645132 +g1,14429:32583030,12802750 +) +(1,14429:6630773,13487605:25952256,407923,9908 +h1,14429:6630773,13487605:0,0,0 +g1,14429:7626635,13487605 +g1,14429:7958589,13487605 +g1,14429:8290543,13487605 +g1,14429:8622497,13487605 +g1,14429:9618359,13487605 +g1,14429:10614221,13487605 +g1,14429:11610083,13487605 +g1,14429:13601807,13487605 +g1,14429:15593531,13487605 +h1,14429:17253301,13487605:0,0,0 +k1,14429:32583029,13487605:15329728 +g1,14429:32583029,13487605 +) +(1,14429:6630773,14172460:25952256,407923,106246 +h1,14429:6630773,14172460:0,0,0 +g1,14429:7626635,14172460 +g1,14429:8290543,14172460 +g1,14429:8622497,14172460 +g1,14429:8954451,14172460 +g1,14429:9618359,14172460 +g1,14429:9950313,14172460 +g1,14429:10614221,14172460 +g1,14429:10946175,14172460 +g1,14429:11610083,14172460 +g1,14429:11942037,14172460 +g1,14429:12273991,14172460 +g1,14429:12605945,14172460 +g1,14429:12937899,14172460 +g1,14429:13601807,14172460 +g1,14429:13933761,14172460 +g1,14429:14265715,14172460 +g1,14429:14597669,14172460 +g1,14429:14929623,14172460 +g1,14429:15593531,14172460 +g1,14429:15925485,14172460 +g1,14429:16257439,14172460 +g1,14429:16589393,14172460 +g1,14429:16921347,14172460 +h1,14429:17253301,14172460:0,0,0 +k1,14429:32583029,14172460:15329728 +g1,14429:32583029,14172460 +) +(1,14429:6630773,14857315:25952256,407923,9908 +h1,14429:6630773,14857315:0,0,0 +g1,14429:7626635,14857315 +g1,14429:8622497,14857315 +g1,14429:8954451,14857315 +g1,14429:9618359,14857315 +g1,14429:9950313,14857315 +g1,14429:10614221,14857315 +g1,14429:10946175,14857315 +g1,14429:11610083,14857315 +g1,14429:11942037,14857315 +g1,14429:12273991,14857315 +g1,14429:12605945,14857315 +g1,14429:12937899,14857315 +g1,14429:13601807,14857315 +g1,14429:13933761,14857315 +g1,14429:14265715,14857315 +g1,14429:14597669,14857315 +g1,14429:14929623,14857315 +g1,14429:15593531,14857315 +g1,14429:15925485,14857315 +g1,14429:16257439,14857315 +g1,14429:16589393,14857315 +g1,14429:16921347,14857315 +h1,14429:17253301,14857315:0,0,0 +k1,14429:32583029,14857315:15329728 +g1,14429:32583029,14857315 +) +(1,14429:6630773,15542170:25952256,407923,9908 +h1,14429:6630773,15542170:0,0,0 +g1,14429:7626635,15542170 +g1,14429:8622497,15542170 +g1,14429:8954451,15542170 +g1,14429:9618359,15542170 +g1,14429:9950313,15542170 +g1,14429:10614221,15542170 +g1,14429:10946175,15542170 +g1,14429:11610083,15542170 +g1,14429:11942037,15542170 +g1,14429:12273991,15542170 +g1,14429:12605945,15542170 +g1,14429:12937899,15542170 +g1,14429:13601807,15542170 +g1,14429:13933761,15542170 +g1,14429:14265715,15542170 +g1,14429:14597669,15542170 +g1,14429:14929623,15542170 +g1,14429:15593531,15542170 +g1,14429:15925485,15542170 +g1,14429:16257439,15542170 +g1,14429:16589393,15542170 +g1,14429:16921347,15542170 +h1,14429:17253301,15542170:0,0,0 +k1,14429:32583029,15542170:15329728 +g1,14429:32583029,15542170 +) +(1,14429:6630773,16227025:25952256,407923,9908 +h1,14429:6630773,16227025:0,0,0 +g1,14429:7626635,16227025 +g1,14429:8622497,16227025 +g1,14429:8954451,16227025 +g1,14429:9618359,16227025 +g1,14429:9950313,16227025 +g1,14429:10614221,16227025 +g1,14429:10946175,16227025 +g1,14429:11610083,16227025 +g1,14429:11942037,16227025 +g1,14429:12273991,16227025 +g1,14429:12605945,16227025 +g1,14429:12937899,16227025 +g1,14429:13601807,16227025 +g1,14429:13933761,16227025 +g1,14429:14265715,16227025 +g1,14429:14597669,16227025 +g1,14429:14929623,16227025 +g1,14429:15593531,16227025 +g1,14429:15925485,16227025 +g1,14429:16257439,16227025 +g1,14429:16589393,16227025 +g1,14429:16921347,16227025 +h1,14429:17253301,16227025:0,0,0 +k1,14429:32583029,16227025:15329728 +g1,14429:32583029,16227025 +) +(1,14429:6630773,16911880:25952256,424439,86428 +h1,14429:6630773,16911880:0,0,0 +g1,14429:7626635,16911880 +k1,14429:7626635,16911880:0 +h1,14429:14265714,16911880:0,0,0 +k1,14429:32583030,16911880:18317316 +g1,14429:32583030,16911880 +) +(1,14429:6630773,17596735:25952256,424439,79822 +h1,14429:6630773,17596735:0,0,0 +g1,14429:7626635,17596735 +g1,14429:8954451,17596735 +g1,14429:10614221,17596735 +g1,14429:10946175,17596735 +g1,14429:11278129,17596735 +g1,14429:11610083,17596735 +g1,14429:13269853,17596735 +g1,14429:13601807,17596735 +g1,14429:13933761,17596735 +g1,14429:14265715,17596735 +g1,14429:15925485,17596735 +g1,14429:16257439,17596735 +g1,14429:16589393,17596735 +g1,14429:16921347,17596735 +g1,14429:19576979,17596735 +g1,14429:22232611,17596735 +h1,14429:24556289,17596735:0,0,0 +k1,14429:32583029,17596735:8026740 +g1,14429:32583029,17596735 +) +(1,14429:6630773,18281590:25952256,424439,86428 +h1,14429:6630773,18281590:0,0,0 +g1,14429:7626635,18281590 +k1,14429:7626635,18281590:0 +h1,14429:12273990,18281590:0,0,0 +k1,14429:32583030,18281590:20309040 +g1,14429:32583030,18281590 +) +(1,14429:6630773,18966445:25952256,424439,79822 +h1,14429:6630773,18966445:0,0,0 +g1,14429:7626635,18966445 +g1,14429:8954451,18966445 +g1,14429:9618359,18966445 +g1,14429:10282267,18966445 +g1,14429:10946175,18966445 +g1,14429:11610083,18966445 +g1,14429:12273991,18966445 +h1,14429:12605945,18966445:0,0,0 +k1,14429:32583029,18966445:19977084 +g1,14429:32583029,18966445 +) +(1,14429:6630773,19651300:25952256,424439,106246 +h1,14429:6630773,19651300:0,0,0 +g1,14429:7626635,19651300 +k1,14429:7626635,19651300:0 +h1,14429:13601806,19651300:0,0,0 +k1,14429:32583030,19651300:18981224 +g1,14429:32583030,19651300 +) +(1,14429:6630773,20336155:25952256,424439,79822 +h1,14429:6630773,20336155:0,0,0 +g1,14429:7626635,20336155 +g1,14429:8954451,20336155 +h1,14429:9286405,20336155:0,0,0 +k1,14429:32583029,20336155:23296624 +g1,14429:32583029,20336155 +) +(1,14429:6630773,21021010:25952256,424439,106246 +h1,14429:6630773,21021010:0,0,0 +g1,14429:7626635,21021010 +k1,14429:7626635,21021010:0 +h1,14429:13269852,21021010:0,0,0 +k1,14429:32583028,21021010:19313176 +g1,14429:32583028,21021010 +) +(1,14429:6630773,21705865:25952256,424439,79822 +h1,14429:6630773,21705865:0,0,0 +g1,14429:7626635,21705865 +g1,14429:8954451,21705865 +h1,14429:9286405,21705865:0,0,0 +k1,14429:32583029,21705865:23296624 +g1,14429:32583029,21705865 +) +(1,14429:6630773,22390720:25952256,424439,86428 +h1,14429:6630773,22390720:0,0,0 +g1,14429:7626635,22390720 +k1,14429:7626635,22390720:0 +h1,14429:14597668,22390720:0,0,0 +k1,14429:32583028,22390720:17985360 +g1,14429:32583028,22390720 +) +(1,14429:6630773,23075575:25952256,424439,52847 +h1,14429:6630773,23075575:0,0,0 +g1,14429:7626635,23075575 +g1,14429:12273990,23075575 +k1,14429:12273990,23075575:0 +h1,14429:16257437,23075575:0,0,0 +k1,14429:32583029,23075575:16325592 +g1,14429:32583029,23075575 +) +] +) +g1,14430:32583029,23128422 +g1,14430:6630773,23128422 +g1,14430:6630773,23128422 +g1,14430:32583029,23128422 +g1,14430:32583029,23128422 +) +h1,14430:6630773,23325030:0,0,0 +v1,14434:6630773,24190110:0,393216,0 +(1,14445:6630773,28128963:25952256,4332069,0 +g1,14445:6630773,28128963 +g1,14445:6237557,28128963 +r1,14486:6368629,28128963:131072,4332069,0 +g1,14445:6567858,28128963 +g1,14445:6764466,28128963 +[1,14445:6764466,28128963:25818563,4332069,0 +(1,14435:6764466,24498408:25818563,701514,196608 +(1,14434:6764466,24498408:0,701514,196608 +r1,14486:8863446,24498408:2098980,898122,196608 +k1,14434:6764466,24498408:-2098980 +) +(1,14434:6764466,24498408:2098980,701514,196608 +) +k1,14434:9113619,24498408:250173 +k1,14434:10839837,24498408:327680 +k1,14434:12132032,24498408:250173 +k1,14434:15128819,24498408:250173 +(1,14434:15128819,24498408:0,424981,115847 +r1,14486:15487085,24498408:358266,540828,115847 +k1,14434:15128819,24498408:-358266 +) +(1,14434:15128819,24498408:358266,424981,115847 +k1,14434:15128819,24498408:3277 +h1,14434:15483808,24498408:0,411205,112570 +) +k1,14434:15737258,24498408:250173 +k1,14434:16638859,24498408:250173 +k1,14434:19112013,24498408:250173 +k1,14434:20048349,24498408:250174 +k1,14434:23311212,24498408:250173 +k1,14434:24349783,24498408:250173 +k1,14434:25906089,24498408:250173 +k1,14434:28798674,24498408:250173 +k1,14434:31229230,24498408:250173 +k1,14434:32227169,24498408:250173 +k1,14434:32583029,24498408:0 +) +(1,14435:6764466,25363488:25818563,513147,134348 +k1,14434:9457102,25363488:149184 +k1,14434:11000236,25363488:149183 +k1,14434:11958790,25363488:149184 +k1,14434:16077490,25363488:149184 +k1,14434:19108947,25363488:149184 +k1,14434:20277215,25363488:149183 +k1,14434:22269271,25363488:149184 +k1,14434:23077747,25363488:149184 +k1,14434:26541742,25363488:149184 +k1,14434:28387652,25363488:149183 +k1,14434:29709275,25363488:149184 +k1,14434:32583029,25363488:0 +) +(1,14435:6764466,26228568:25818563,505283,115847 +g1,14434:8357646,26228568 +(1,14434:8357646,26228568:0,452978,115847 +r1,14486:10826183,26228568:2468537,568825,115847 +k1,14434:8357646,26228568:-2468537 +) +(1,14434:8357646,26228568:2468537,452978,115847 +k1,14434:8357646,26228568:3277 +h1,14434:10822906,26228568:0,411205,112570 +) +k1,14435:32583029,26228568:21583176 +g1,14435:32583029,26228568 +) +v1,14437:6764466,26913423:0,393216,0 +(1,14442:6764466,27932355:25818563,1412148,196608 +g1,14442:6764466,27932355 +g1,14442:6764466,27932355 +g1,14442:6567858,27932355 +(1,14442:6567858,27932355:0,1412148,196608 +r1,14486:32779637,27932355:26211779,1608756,196608 +k1,14442:6567857,27932355:-26211780 +) +(1,14442:6567858,27932355:26211779,1412148,196608 +[1,14442:6764466,27932355:25818563,1215540,0 +(1,14439:6764466,27141254:25818563,424439,106246 +(1,14438:6764466,27141254:0,0,0 +g1,14438:6764466,27141254 +g1,14438:6764466,27141254 +g1,14438:6436786,27141254 +(1,14438:6436786,27141254:0,0,0 +) +g1,14438:6764466,27141254 +) +g1,14439:7428374,27141254 +g1,14439:8092282,27141254 +g1,14439:9420098,27141254 +g1,14439:10084006,27141254 +g1,14439:11079868,27141254 +g1,14439:11743776,27141254 +h1,14439:13403546,27141254:0,0,0 +k1,14439:32583030,27141254:19179484 +g1,14439:32583030,27141254 +) +(1,14440:6764466,27826109:25818563,424439,106246 +h1,14440:6764466,27826109:0,0,0 +g1,14440:7428374,27826109 +g1,14440:8092282,27826109 +g1,14440:9420098,27826109 +g1,14440:10084006,27826109 +g1,14440:11079868,27826109 +g1,14440:11743776,27826109 +h1,14440:13403546,27826109:0,0,0 +k1,14440:32583030,27826109:19179484 +g1,14440:32583030,27826109 +) +] +) +g1,14442:32583029,27932355 +g1,14442:6764466,27932355 +g1,14442:6764466,27932355 +g1,14442:32583029,27932355 +g1,14442:32583029,27932355 +) +h1,14442:6764466,28128963:0,0,0 +] +g1,14445:32583029,28128963 +) +h1,14445:6630773,28128963:0,0,0 +(1,14448:6630773,28994043:25952256,513147,134348 +h1,14447:6630773,28994043:983040,0,0 +k1,14447:10666494,28994043:191379 +(1,14447:10666494,28994043:0,452978,115847 +r1,14486:12079895,28994043:1413401,568825,115847 +k1,14447:10666494,28994043:-1413401 +) +(1,14447:10666494,28994043:1413401,452978,115847 +k1,14447:10666494,28994043:3277 +h1,14447:12076618,28994043:0,411205,112570 +) +k1,14447:12271274,28994043:191379 +k1,14447:13566935,28994043:191379 +k1,14447:15044130,28994043:191379 +k1,14447:15983275,28994043:191379 +k1,14447:17687880,28994043:191379 +k1,14447:18565421,28994043:191379 +k1,14447:19112661,28994043:191380 +k1,14447:21994293,28994043:191379 +k1,14447:23133323,28994043:191379 +k1,14447:26305279,28994043:191379 +k1,14447:27872259,28994043:191379 +k1,14447:29755778,28994043:191379 +k1,14447:30606449,28994043:191379 +k1,14447:31563944,28994043:191379 +k1,14447:32583029,28994043:0 +) +(1,14448:6630773,29859123:25952256,513147,126483 +g1,14447:9459962,29859123 +g1,14447:13124735,29859123 +g1,14447:15166836,29859123 +g1,14447:15982103,29859123 +g1,14447:16537192,29859123 +k1,14448:32583029,29859123:13328714 +g1,14448:32583029,29859123 +) +v1,14450:6630773,30543978:0,393216,0 +(1,14454:6630773,30878055:25952256,727293,196608 +g1,14454:6630773,30878055 +g1,14454:6630773,30878055 +g1,14454:6434165,30878055 +(1,14454:6434165,30878055:0,727293,196608 +r1,14486:32779637,30878055:26345472,923901,196608 +k1,14454:6434165,30878055:-26345472 +) +(1,14454:6434165,30878055:26345472,727293,196608 +[1,14454:6630773,30878055:25952256,530685,0 +(1,14452:6630773,30771809:25952256,424439,106246 +(1,14451:6630773,30771809:0,0,0 +g1,14451:6630773,30771809 +g1,14451:6630773,30771809 +g1,14451:6303093,30771809 +(1,14451:6303093,30771809:0,0,0 +) +g1,14451:6630773,30771809 +) +g1,14452:7294681,30771809 +g1,14452:7958589,30771809 +g1,14452:8954451,30771809 +g1,14452:9618359,30771809 +g1,14452:10614221,30771809 +g1,14452:11278129,30771809 +g1,14452:12273991,30771809 +g1,14452:13933761,30771809 +h1,14452:14597669,30771809:0,0,0 +k1,14452:32583029,30771809:17985360 +g1,14452:32583029,30771809 +) +] +) +g1,14454:32583029,30878055 +g1,14454:6630773,30878055 +g1,14454:6630773,30878055 +g1,14454:32583029,30878055 +g1,14454:32583029,30878055 +) +h1,14454:6630773,31074663:0,0,0 +v1,14458:6630773,31759518:0,393216,0 +(1,14482:6630773,44498658:25952256,13132356,196608 +g1,14482:6630773,44498658 +g1,14482:6630773,44498658 +g1,14482:6434165,44498658 +(1,14482:6434165,44498658:0,13132356,196608 +r1,14486:32779637,44498658:26345472,13328964,196608 +k1,14482:6434165,44498658:-26345472 +) +(1,14482:6434165,44498658:26345472,13132356,196608 +[1,14482:6630773,44498658:25952256,12935748,0 +(1,14460:6630773,31987349:25952256,424439,106246 +(1,14459:6630773,31987349:0,0,0 +g1,14459:6630773,31987349 +g1,14459:6630773,31987349 +g1,14459:6303093,31987349 +(1,14459:6303093,31987349:0,0,0 +) +g1,14459:6630773,31987349 +) +k1,14460:6630773,31987349:0 +g1,14460:9286405,31987349 +g1,14460:9950313,31987349 +g1,14460:10946175,31987349 +g1,14460:11610083,31987349 +g1,14460:12605945,31987349 +g1,14460:13269853,31987349 +g1,14460:14265715,31987349 +g1,14460:15925485,31987349 +h1,14460:16921347,31987349:0,0,0 +k1,14460:32583029,31987349:15661682 +g1,14460:32583029,31987349 +) +(1,14481:6630773,32803276:25952256,424439,106246 +(1,14462:6630773,32803276:0,0,0 +g1,14462:6630773,32803276 +g1,14462:6630773,32803276 +g1,14462:6303093,32803276 +(1,14462:6303093,32803276:0,0,0 +) +g1,14462:6630773,32803276 +) +g1,14481:7626635,32803276 +g1,14481:8290543,32803276 +g1,14481:8954451,32803276 +g1,14481:9950313,32803276 +g1,14481:10614221,32803276 +g1,14481:11610083,32803276 +g1,14481:12273991,32803276 +g1,14481:13269853,32803276 +g1,14481:14929623,32803276 +h1,14481:15593531,32803276:0,0,0 +k1,14481:32583029,32803276:16989498 +g1,14481:32583029,32803276 +) +(1,14481:6630773,33488131:25952256,424439,86428 +h1,14481:6630773,33488131:0,0,0 +g1,14481:7626635,33488131 +k1,14481:7626635,33488131:0 +h1,14481:13601806,33488131:0,0,0 +k1,14481:32583030,33488131:18981224 +g1,14481:32583030,33488131 +) +(1,14481:6630773,34172986:25952256,424439,106246 +h1,14481:6630773,34172986:0,0,0 +g1,14481:7626635,34172986 +g1,14481:10282267,34172986 +g1,14481:11610083,34172986 +h1,14481:12605945,34172986:0,0,0 +k1,14481:32583029,34172986:19977084 +g1,14481:32583029,34172986 +) +(1,14481:6630773,34857841:25952256,431045,86428 +h1,14481:6630773,34857841:0,0,0 +g1,14481:7626635,34857841 +k1,14481:7626635,34857841:0 +h1,14481:12937898,34857841:0,0,0 +k1,14481:32583030,34857841:19645132 +g1,14481:32583030,34857841 +) +(1,14481:6630773,35542696:25952256,407923,0 +h1,14481:6630773,35542696:0,0,0 +g1,14481:7626635,35542696 +g1,14481:7958589,35542696 +g1,14481:8290543,35542696 +g1,14481:8622497,35542696 +g1,14481:9618359,35542696 +g1,14481:10614221,35542696 +h1,14481:12273991,35542696:0,0,0 +k1,14481:32583029,35542696:20309038 +g1,14481:32583029,35542696 +) +(1,14481:6630773,36227551:25952256,407923,106246 +h1,14481:6630773,36227551:0,0,0 +g1,14481:7626635,36227551 +g1,14481:8290543,36227551 +g1,14481:8622497,36227551 +g1,14481:8954451,36227551 +g1,14481:9618359,36227551 +g1,14481:9950313,36227551 +g1,14481:10614221,36227551 +g1,14481:10946175,36227551 +g1,14481:11278129,36227551 +g1,14481:11610083,36227551 +g1,14481:11942037,36227551 +h1,14481:12273991,36227551:0,0,0 +k1,14481:32583029,36227551:20309038 +g1,14481:32583029,36227551 +) +(1,14481:6630773,36912406:25952256,407923,9908 +h1,14481:6630773,36912406:0,0,0 +g1,14481:7626635,36912406 +g1,14481:8622497,36912406 +g1,14481:8954451,36912406 +g1,14481:9618359,36912406 +g1,14481:9950313,36912406 +g1,14481:10614221,36912406 +g1,14481:10946175,36912406 +g1,14481:11278129,36912406 +g1,14481:11610083,36912406 +g1,14481:11942037,36912406 +h1,14481:12273991,36912406:0,0,0 +k1,14481:32583029,36912406:20309038 +g1,14481:32583029,36912406 +) +(1,14481:6630773,37597261:25952256,407923,9908 +h1,14481:6630773,37597261:0,0,0 +g1,14481:7626635,37597261 +g1,14481:8622497,37597261 +g1,14481:8954451,37597261 +g1,14481:9618359,37597261 +g1,14481:9950313,37597261 +g1,14481:10614221,37597261 +g1,14481:10946175,37597261 +g1,14481:11278129,37597261 +g1,14481:11610083,37597261 +g1,14481:11942037,37597261 +h1,14481:12273991,37597261:0,0,0 +k1,14481:32583029,37597261:20309038 +g1,14481:32583029,37597261 +) +(1,14481:6630773,38282116:25952256,424439,86428 +h1,14481:6630773,38282116:0,0,0 +g1,14481:7626635,38282116 +k1,14481:7626635,38282116:0 +h1,14481:14265714,38282116:0,0,0 +k1,14481:32583030,38282116:18317316 +g1,14481:32583030,38282116 +) +(1,14481:6630773,38966971:25952256,424439,79822 +h1,14481:6630773,38966971:0,0,0 +g1,14481:7626635,38966971 +g1,14481:8954451,38966971 +g1,14481:10614221,38966971 +g1,14481:10946175,38966971 +g1,14481:11278129,38966971 +g1,14481:11610083,38966971 +g1,14481:13269853,38966971 +g1,14481:13601807,38966971 +g1,14481:13933761,38966971 +g1,14481:14265715,38966971 +h1,14481:16589393,38966971:0,0,0 +k1,14481:32583029,38966971:15993636 +g1,14481:32583029,38966971 +) +(1,14481:6630773,39651826:25952256,424439,86428 +h1,14481:6630773,39651826:0,0,0 +g1,14481:7626635,39651826 +k1,14481:7626635,39651826:0 +h1,14481:12273990,39651826:0,0,0 +k1,14481:32583030,39651826:20309040 +g1,14481:32583030,39651826 +) +(1,14481:6630773,40336681:25952256,424439,79822 +h1,14481:6630773,40336681:0,0,0 +g1,14481:7626635,40336681 +g1,14481:8954451,40336681 +g1,14481:9618359,40336681 +g1,14481:10282267,40336681 +h1,14481:10614221,40336681:0,0,0 +k1,14481:32583029,40336681:21968808 +g1,14481:32583029,40336681 +) +(1,14481:6630773,41021536:25952256,424439,106246 +h1,14481:6630773,41021536:0,0,0 +g1,14481:7626635,41021536 +k1,14481:7626635,41021536:0 +h1,14481:13601806,41021536:0,0,0 +k1,14481:32583030,41021536:18981224 +g1,14481:32583030,41021536 +) +(1,14481:6630773,41706391:25952256,424439,79822 +h1,14481:6630773,41706391:0,0,0 +g1,14481:7626635,41706391 +g1,14481:8954451,41706391 +h1,14481:9286405,41706391:0,0,0 +k1,14481:32583029,41706391:23296624 +g1,14481:32583029,41706391 +) +(1,14481:6630773,42391246:25952256,424439,106246 +h1,14481:6630773,42391246:0,0,0 +g1,14481:7626635,42391246 +k1,14481:7626635,42391246:0 +h1,14481:13269852,42391246:0,0,0 +k1,14481:32583028,42391246:19313176 +g1,14481:32583028,42391246 +) +(1,14481:6630773,43076101:25952256,424439,79822 +h1,14481:6630773,43076101:0,0,0 +g1,14481:7626635,43076101 +g1,14481:8954451,43076101 +h1,14481:9286405,43076101:0,0,0 +k1,14481:32583029,43076101:23296624 +g1,14481:32583029,43076101 +) +(1,14481:6630773,43760956:25952256,424439,86428 +h1,14481:6630773,43760956:0,0,0 +g1,14481:7626635,43760956 +k1,14481:7626635,43760956:0 +h1,14481:14597668,43760956:0,0,0 +k1,14481:32583028,43760956:17985360 +g1,14481:32583028,43760956 +) +(1,14481:6630773,44445811:25952256,424439,52847 +h1,14481:6630773,44445811:0,0,0 +g1,14481:7626635,44445811 +g1,14481:12273990,44445811 +k1,14481:12273990,44445811:0 +h1,14481:16257437,44445811:0,0,0 +k1,14481:32583029,44445811:16325592 +g1,14481:32583029,44445811 +) +] +) +g1,14482:32583029,44498658 +g1,14482:6630773,44498658 +g1,14482:6630773,44498658 +g1,14482:32583029,44498658 +g1,14482:32583029,44498658 +) +h1,14482:6630773,44695266:0,0,0 +] +(1,14486:32583029,45706769:0,0,0 +g1,14486:32583029,45706769 +) +) +] +(1,14486:6630773,47279633:25952256,0,0 +h1,14486:6630773,47279633:25952256,0,0 +) +] +(1,14486:4262630,4025873:0,0,0 +[1,14486:-473656,4025873:0,0,0 +(1,14486:-473656,-710413:0,0,0 +(1,14486:-473656,-710413:0,0,0 +g1,14486:-473656,-710413 +) +g1,14486:-473656,-710413 ) -k1,14837:3078556,49800853:-34777008 +] ) -] -g1,14837:6630773,4812305 -g1,14837:6630773,4812305 -g1,14837:10653372,4812305 -g1,14837:13512052,4812305 -k1,14837:31387652,4812305:17875600 -) -) -] -[1,14837:6630773,45706769:25952256,40108032,0 -(1,14837:6630773,45706769:25952256,40108032,0 -(1,14837:6630773,45706769:0,0,0 -g1,14837:6630773,45706769 -) -[1,14837:6630773,45706769:25952256,40108032,0 -v1,14774:6630773,6254097:0,393216,0 -(1,14804:6630773,22481443:25952256,16620562,196608 -g1,14804:6630773,22481443 -g1,14804:6630773,22481443 -g1,14804:6434165,22481443 -(1,14804:6434165,22481443:0,16620562,196608 -r1,14837:32779637,22481443:26345472,16817170,196608 -k1,14804:6434165,22481443:-26345472 -) -(1,14804:6434165,22481443:26345472,16620562,196608 -[1,14804:6630773,22481443:25952256,16423954,0 -(1,14776:6630773,6461715:25952256,404226,101187 -(1,14775:6630773,6461715:0,0,0 -g1,14775:6630773,6461715 -g1,14775:6630773,6461715 -g1,14775:6303093,6461715 -(1,14775:6303093,6461715:0,0,0 -) -g1,14775:6630773,6461715 -) -k1,14776:6630773,6461715:0 -h1,14776:12637541,6461715:0,0,0 -k1,14776:32583029,6461715:19945488 -g1,14776:32583029,6461715 -) -(1,14803:6630773,7127893:25952256,404226,7863 -(1,14778:6630773,7127893:0,0,0 -g1,14778:6630773,7127893 -g1,14778:6630773,7127893 -g1,14778:6303093,7127893 -(1,14778:6303093,7127893:0,0,0 -) -g1,14778:6630773,7127893 -) -g1,14803:7579210,7127893 -g1,14803:7895356,7127893 -h1,14803:9476084,7127893:0,0,0 -k1,14803:32583028,7127893:23106944 -g1,14803:32583028,7127893 -) -(1,14803:6630773,7794071:25952256,404226,82312 -h1,14803:6630773,7794071:0,0,0 -g1,14803:7579210,7794071 -g1,14803:7895356,7794071 -g1,14803:9792230,7794071 -g1,14803:10424522,7794071 -g1,14803:15482854,7794071 -g1,14803:18328165,7794071 -g1,14803:18960457,7794071 -h1,14803:19592748,7794071:0,0,0 -k1,14803:32583029,7794071:12990281 -g1,14803:32583029,7794071 -) -(1,14803:6630773,8460249:25952256,379060,0 -h1,14803:6630773,8460249:0,0,0 -h1,14803:7263064,8460249:0,0,0 -k1,14803:32583028,8460249:25319964 -g1,14803:32583028,8460249 -) -(1,14803:6630773,9126427:25952256,404226,101187 -h1,14803:6630773,9126427:0,0,0 -g1,14803:7579210,9126427 -g1,14803:7895356,9126427 -g1,14803:11689104,9126427 -h1,14803:15166706,9126427:0,0,0 -k1,14803:32583030,9126427:17416324 -g1,14803:32583030,9126427 -) -(1,14803:6630773,9792605:25952256,404226,6290 -h1,14803:6630773,9792605:0,0,0 -g1,14803:7579210,9792605 -g1,14803:7895356,9792605 -g1,14803:8211502,9792605 -g1,14803:8527648,9792605 -g1,14803:8843794,9792605 -g1,14803:11689105,9792605 -g1,14803:12005251,9792605 -g1,14803:12321397,9792605 -g1,14803:12637543,9792605 -g1,14803:12953689,9792605 -g1,14803:13269835,9792605 -g1,14803:13585981,9792605 -g1,14803:13902127,9792605 -g1,14803:14218273,9792605 -g1,14803:14534419,9792605 -g1,14803:14850565,9792605 -g1,14803:15166711,9792605 -g1,14803:15482857,9792605 -g1,14803:17379731,9792605 -g1,14803:17695877,9792605 -g1,14803:18012023,9792605 -g1,14803:18328169,9792605 -g1,14803:18644315,9792605 -g1,14803:18960461,9792605 -g1,14803:19276607,9792605 -g1,14803:19592753,9792605 -g1,14803:19908899,9792605 -g1,14803:20225045,9792605 -g1,14803:20541191,9792605 -g1,14803:20857337,9792605 -g1,14803:21173483,9792605 -h1,14803:24018794,9792605:0,0,0 -k1,14803:32583029,9792605:8564235 -g1,14803:32583029,9792605 -) -(1,14803:6630773,10458783:25952256,404226,9436 -h1,14803:6630773,10458783:0,0,0 -g1,14803:7579210,10458783 -g1,14803:7895356,10458783 -g1,14803:9476085,10458783 -g1,14803:9792231,10458783 -g1,14803:10108377,10458783 -g1,14803:13585980,10458783 -g1,14803:13902126,10458783 -g1,14803:14218272,10458783 -g1,14803:15799001,10458783 -g1,14803:16115147,10458783 -g1,14803:16431293,10458783 -g1,14803:17063585,10458783 -g1,14803:19908896,10458783 -g1,14803:20225042,10458783 -g1,14803:20541188,10458783 -g1,14803:22121917,10458783 -g1,14803:22438063,10458783 -g1,14803:22754209,10458783 -k1,14803:22754209,10458783:0 -h1,14803:26231812,10458783:0,0,0 -k1,14803:32583029,10458783:6351217 -g1,14803:32583029,10458783 -) -(1,14803:6630773,11124961:25952256,388497,82312 -h1,14803:6630773,11124961:0,0,0 -g1,14803:7579210,11124961 -g1,14803:7895356,11124961 -g1,14803:9159939,11124961 -g1,14803:13585979,11124961 -g1,14803:13902125,11124961 -g1,14803:14218271,11124961 -g1,14803:15482854,11124961 -g1,14803:17063583,11124961 -g1,14803:19908894,11124961 -g1,14803:20225040,11124961 -g1,14803:20541186,11124961 -g1,14803:21805769,11124961 -k1,14803:21805769,11124961:0 -h1,14803:26231809,11124961:0,0,0 -k1,14803:32583029,11124961:6351220 -g1,14803:32583029,11124961 -) -(1,14803:6630773,11791139:25952256,404226,9436 -h1,14803:6630773,11791139:0,0,0 -g1,14803:7579210,11791139 -g1,14803:7895356,11791139 -g1,14803:10108376,11791139 -g1,14803:13585979,11791139 -g1,14803:13902125,11791139 -g1,14803:14218271,11791139 -g1,14803:16431291,11791139 -g1,14803:17063583,11791139 -g1,14803:19908894,11791139 -g1,14803:20225040,11791139 -g1,14803:20541186,11791139 -g1,14803:22754206,11791139 -g1,14803:23386498,11791139 -h1,14803:26231809,11791139:0,0,0 -k1,14803:32583029,11791139:6351220 -g1,14803:32583029,11791139 -) -(1,14803:6630773,12457317:25952256,388497,9436 -h1,14803:6630773,12457317:0,0,0 -g1,14803:7579210,12457317 -g1,14803:7895356,12457317 -g1,14803:9476085,12457317 -g1,14803:9792231,12457317 -g1,14803:10108377,12457317 -g1,14803:10740669,12457317 -g1,14803:13585980,12457317 -g1,14803:13902126,12457317 -g1,14803:14218272,12457317 -g1,14803:15799001,12457317 -g1,14803:16115147,12457317 -g1,14803:16431293,12457317 -g1,14803:17063585,12457317 -g1,14803:19908896,12457317 -g1,14803:20225042,12457317 -g1,14803:20541188,12457317 -g1,14803:22121917,12457317 -g1,14803:22438063,12457317 -g1,14803:22754209,12457317 -g1,14803:23386501,12457317 -h1,14803:26231812,12457317:0,0,0 -k1,14803:32583029,12457317:6351217 -g1,14803:32583029,12457317 -) -(1,14803:6630773,13123495:25952256,404226,82312 -h1,14803:6630773,13123495:0,0,0 -g1,14803:7579210,13123495 -g1,14803:7895356,13123495 -g1,14803:9159939,13123495 -g1,14803:10740668,13123495 -g1,14803:13585979,13123495 -g1,14803:13902125,13123495 -g1,14803:14218271,13123495 -g1,14803:15482854,13123495 -g1,14803:17063583,13123495 -g1,14803:19908894,13123495 -g1,14803:20225040,13123495 -g1,14803:20541186,13123495 -g1,14803:21805769,13123495 -g1,14803:23386498,13123495 -h1,14803:26231809,13123495:0,0,0 -k1,14803:32583029,13123495:6351220 -g1,14803:32583029,13123495 -) -(1,14803:6630773,13789673:25952256,388497,9436 -h1,14803:6630773,13789673:0,0,0 -g1,14803:7579210,13789673 -g1,14803:7895356,13789673 -g1,14803:9476085,13789673 -g1,14803:9792231,13789673 -g1,14803:10108377,13789673 -g1,14803:10740669,13789673 -g1,14803:13585980,13789673 -g1,14803:13902126,13789673 -g1,14803:14218272,13789673 -g1,14803:15799001,13789673 -g1,14803:16115147,13789673 -g1,14803:16431293,13789673 -g1,14803:19908896,13789673 -g1,14803:20225042,13789673 -g1,14803:20541188,13789673 -g1,14803:22121917,13789673 -g1,14803:22438063,13789673 -g1,14803:22754209,13789673 -g1,14803:23386501,13789673 -h1,14803:26231812,13789673:0,0,0 -k1,14803:32583029,13789673:6351217 -g1,14803:32583029,13789673 -) -(1,14803:6630773,14455851:25952256,379060,82312 -h1,14803:6630773,14455851:0,0,0 -g1,14803:7579210,14455851 -g1,14803:7895356,14455851 -h1,14803:9159939,14455851:0,0,0 -k1,14803:32583029,14455851:23423090 -g1,14803:32583029,14455851 -) -(1,14803:6630773,15122029:25952256,404226,7863 -h1,14803:6630773,15122029:0,0,0 -g1,14803:7579210,15122029 -g1,14803:7895356,15122029 -g1,14803:8211502,15122029 -g1,14803:8527648,15122029 -g1,14803:8843794,15122029 -g1,14803:9159940,15122029 -g1,14803:13269834,15122029 -g1,14803:16431291,15122029 -g1,14803:20857331,15122029 -h1,14803:22121914,15122029:0,0,0 -k1,14803:32583029,15122029:10461115 -g1,14803:32583029,15122029 -) -(1,14803:6630773,15788207:25952256,388497,9436 -h1,14803:6630773,15788207:0,0,0 -g1,14803:7579210,15788207 -g1,14803:7895356,15788207 -g1,14803:8211502,15788207 -g1,14803:8527648,15788207 -g1,14803:8843794,15788207 -g1,14803:9159940,15788207 -g1,14803:11372960,15788207 -g1,14803:11689106,15788207 -g1,14803:12005252,15788207 -g1,14803:12321398,15788207 -g1,14803:12637544,15788207 -g1,14803:12953690,15788207 -g1,14803:13269836,15788207 -g1,14803:15482856,15788207 -g1,14803:15799002,15788207 -g1,14803:16115148,15788207 -g1,14803:16431294,15788207 -g1,14803:18644314,15788207 -g1,14803:18960460,15788207 -g1,14803:19276606,15788207 -g1,14803:19592752,15788207 -g1,14803:19908898,15788207 -g1,14803:20225044,15788207 -g1,14803:20541190,15788207 -g1,14803:20857336,15788207 -h1,14803:22754210,15788207:0,0,0 -k1,14803:32583029,15788207:9828819 -g1,14803:32583029,15788207 -) -(1,14803:6630773,16454385:25952256,388497,9436 -h1,14803:6630773,16454385:0,0,0 -g1,14803:7579210,16454385 -g1,14803:7895356,16454385 -g1,14803:8211502,16454385 -g1,14803:8527648,16454385 -g1,14803:9159940,16454385 -g1,14803:11056814,16454385 -g1,14803:11372960,16454385 -g1,14803:11689106,16454385 -g1,14803:12005252,16454385 -g1,14803:12321398,16454385 -g1,14803:12637544,16454385 -g1,14803:12953690,16454385 -g1,14803:13269836,16454385 -g1,14803:13585982,16454385 -g1,14803:13902128,16454385 -g1,14803:15166711,16454385 -g1,14803:15482857,16454385 -g1,14803:15799003,16454385 -g1,14803:16115149,16454385 -g1,14803:16431295,16454385 -g1,14803:16747441,16454385 -g1,14803:18328170,16454385 -g1,14803:18644316,16454385 -g1,14803:18960462,16454385 -g1,14803:19276608,16454385 -g1,14803:19592754,16454385 -g1,14803:19908900,16454385 -g1,14803:20225046,16454385 -g1,14803:20541192,16454385 -g1,14803:20857338,16454385 -h1,14803:22438066,16454385:0,0,0 -k1,14803:32583029,16454385:10144963 -g1,14803:32583029,16454385 -) -(1,14803:6630773,17120563:25952256,379060,0 -h1,14803:6630773,17120563:0,0,0 -h1,14803:7263064,17120563:0,0,0 -k1,14803:32583028,17120563:25319964 -g1,14803:32583028,17120563 -) -(1,14803:6630773,17786741:25952256,404226,107478 -h1,14803:6630773,17786741:0,0,0 -g1,14803:7579210,17786741 -g1,14803:7895356,17786741 -g1,14803:10740667,17786741 -g1,14803:12005250,17786741 -g1,14803:12953687,17786741 -h1,14803:13269833,17786741:0,0,0 -k1,14803:32583029,17786741:19313196 -g1,14803:32583029,17786741 -) -(1,14803:6630773,18452919:25952256,379060,0 -h1,14803:6630773,18452919:0,0,0 -h1,14803:7263064,18452919:0,0,0 -k1,14803:32583028,18452919:25319964 -g1,14803:32583028,18452919 -) -(1,14803:6630773,19119097:25952256,410518,101187 -h1,14803:6630773,19119097:0,0,0 -g1,14803:7579210,19119097 -g1,14803:7895356,19119097 -g1,14803:9792230,19119097 -g1,14803:13585978,19119097 -g1,14803:15166707,19119097 -g1,14803:16115144,19119097 -h1,14803:16431290,19119097:0,0,0 -k1,14803:32583029,19119097:16151739 -g1,14803:32583029,19119097 -) -(1,14803:6630773,19785275:25952256,410518,76021 -h1,14803:6630773,19785275:0,0,0 -g1,14803:7579210,19785275 -g1,14803:7895356,19785275 -g1,14803:8527648,19785275 -g1,14803:9792231,19785275 -g1,14803:10108377,19785275 -g1,14803:10740669,19785275 -g1,14803:12637543,19785275 -g1,14803:13902126,19785275 -g1,14803:15799000,19785275 -g1,14803:16431292,19785275 -g1,14803:17379729,19785275 -h1,14803:18012020,19785275:0,0,0 -k1,14803:32583029,19785275:14571009 -g1,14803:32583029,19785275 -) -(1,14803:6630773,20451453:25952256,410518,107478 -h1,14803:6630773,20451453:0,0,0 -g1,14803:7579210,20451453 -g1,14803:7895356,20451453 -g1,14803:8527648,20451453 -g1,14803:9792231,20451453 -g1,14803:10108377,20451453 -g1,14803:10740669,20451453 -g1,14803:12637543,20451453 -g1,14803:13902126,20451453 -g1,14803:15799000,20451453 -g1,14803:16431292,20451453 -g1,14803:17063584,20451453 -h1,14803:17379730,20451453:0,0,0 -k1,14803:32583029,20451453:15203299 -g1,14803:32583029,20451453 -) -(1,14803:6630773,21117631:25952256,410518,107478 -h1,14803:6630773,21117631:0,0,0 -g1,14803:7579210,21117631 -g1,14803:7895356,21117631 -g1,14803:8527648,21117631 -g1,14803:10108377,21117631 -g1,14803:10740669,21117631 -g1,14803:12637543,21117631 -g1,14803:13902126,21117631 -g1,14803:15799000,21117631 -g1,14803:16431292,21117631 -g1,14803:17063584,21117631 -h1,14803:17379730,21117631:0,0,0 -k1,14803:32583029,21117631:15203299 -g1,14803:32583029,21117631 -) -(1,14803:6630773,21783809:25952256,410518,31456 -h1,14803:6630773,21783809:0,0,0 -g1,14803:7579210,21783809 -g1,14803:7895356,21783809 -g1,14803:8527648,21783809 -g1,14803:10740668,21783809 -g1,14803:12005251,21783809 -h1,14803:12321397,21783809:0,0,0 -k1,14803:32583029,21783809:20261632 -g1,14803:32583029,21783809 -) -(1,14803:6630773,22449987:25952256,410518,31456 -h1,14803:6630773,22449987:0,0,0 -g1,14803:7579210,22449987 -g1,14803:7895356,22449987 -g1,14803:8527648,22449987 -g1,14803:10740668,22449987 -g1,14803:12005251,22449987 -h1,14803:12321397,22449987:0,0,0 -k1,14803:32583029,22449987:20261632 -g1,14803:32583029,22449987 -) -] -) -g1,14804:32583029,22481443 -g1,14804:6630773,22481443 -g1,14804:6630773,22481443 -g1,14804:32583029,22481443 -g1,14804:32583029,22481443 -) -h1,14804:6630773,22678051:0,0,0 -v1,14808:6630773,24568115:0,393216,0 -(1,14820:6630773,30586772:25952256,6411873,0 -g1,14820:6630773,30586772 -g1,14820:6303093,30586772 -r1,14837:6401397,30586772:98304,6411873,0 -g1,14820:6600626,30586772 -g1,14820:6797234,30586772 -[1,14820:6797234,30586772:25785795,6411873,0 -(1,14809:6797234,25000653:25785795,825754,196608 -(1,14808:6797234,25000653:0,825754,196608 -r1,14837:7890375,25000653:1093141,1022362,196608 -k1,14808:6797234,25000653:-1093141 -) -(1,14808:6797234,25000653:1093141,825754,196608 -) -k1,14808:8170184,25000653:279809 -k1,14808:9896402,25000653:327680 -k1,14808:12648229,25000653:279809 -(1,14808:12648229,25000653:0,452978,115847 -r1,14837:15820189,25000653:3171960,568825,115847 -k1,14808:12648229,25000653:-3171960 -) -(1,14808:12648229,25000653:3171960,452978,115847 -k1,14808:12648229,25000653:3277 -h1,14808:15816912,25000653:0,411205,112570 -) -k1,14808:16099998,25000653:279809 -k1,14808:17571252,25000653:279809 -(1,14808:17571252,25000653:0,452978,115847 -r1,14837:22501772,25000653:4930520,568825,115847 -k1,14808:17571252,25000653:-4930520 -) -(1,14808:17571252,25000653:4930520,452978,115847 -k1,14808:17571252,25000653:3277 -h1,14808:22498495,25000653:0,411205,112570 -) -k1,14808:22781582,25000653:279810 -k1,14808:24252836,25000653:279809 -k1,14808:26462025,25000653:279809 -k1,14808:29504177,25000653:279809 -k1,14808:31391584,25000653:279809 -k1,14808:32583029,25000653:0 -) -(1,14809:6797234,25842141:25785795,513147,134348 -k1,14808:12018422,25842141:160498 -k1,14808:12940447,25842141:160497 -k1,14808:15528399,25842141:160498 -k1,14808:18451239,25842141:160497 -k1,14808:22014366,25842141:160498 -k1,14808:22826292,25842141:160498 -k1,14808:24005874,25842141:160497 -k1,14808:26294981,25842141:160498 -k1,14808:30066512,25842141:160497 -k1,14808:30886302,25842141:160498 -k1,14808:32583029,25842141:0 -) -(1,14809:6797234,26683629:25785795,505283,7863 -k1,14809:32583029,26683629:22827500 -g1,14809:32583029,26683629 -) -(1,14811:6797234,27525117:25785795,513147,126483 -h1,14810:6797234,27525117:983040,0,0 -k1,14810:10367730,27525117:189494 -(1,14810:10367730,27525117:0,452978,115847 -r1,14837:12836267,27525117:2468537,568825,115847 -k1,14810:10367730,27525117:-2468537 -) -(1,14810:10367730,27525117:2468537,452978,115847 -k1,14810:10367730,27525117:3277 -h1,14810:12832990,27525117:0,411205,112570 -) -k1,14810:13025762,27525117:189495 -k1,14810:15206240,27525117:189494 -k1,14810:16414820,27525117:189495 -k1,14810:19366657,27525117:189494 -k1,14810:23657395,27525117:189495 -k1,14810:26074458,27525117:189494 -k1,14810:27283038,27525117:189495 -k1,14810:30206694,27525117:189494 -k1,14811:32583029,27525117:0 -) -(1,14811:6797234,28366605:25785795,505283,134348 -g1,14810:8430391,28366605 -g1,14810:9821065,28366605 -g1,14810:11297591,28366605 -g1,14810:12028317,28366605 -g1,14810:13036916,28366605 -g1,14810:14024543,28366605 -g1,14810:15554153,28366605 -g1,14810:18042555,28366605 -k1,14811:32583029,28366605:12941396 -g1,14811:32583029,28366605 -) -v1,14813:6797234,29557071:0,393216,0 -(1,14817:6797234,29865876:25785795,702021,196608 -g1,14817:6797234,29865876 -g1,14817:6797234,29865876 -g1,14817:6600626,29865876 -(1,14817:6600626,29865876:0,702021,196608 -r1,14837:32779637,29865876:26179011,898629,196608 -k1,14817:6600625,29865876:-26179012 -) -(1,14817:6600626,29865876:26179011,702021,196608 -[1,14817:6797234,29865876:25785795,505413,0 -(1,14815:6797234,29764689:25785795,404226,101187 -(1,14814:6797234,29764689:0,0,0 -g1,14814:6797234,29764689 -g1,14814:6797234,29764689 -g1,14814:6469554,29764689 -(1,14814:6469554,29764689:0,0,0 -) -g1,14814:6797234,29764689 -) -k1,14815:6797234,29764689:0 -h1,14815:12171710,29764689:0,0,0 -k1,14815:32583030,29764689:20411320 -g1,14815:32583030,29764689 -) -] -) -g1,14817:32583029,29865876 -g1,14817:6797234,29865876 -g1,14817:6797234,29865876 -g1,14817:32583029,29865876 -g1,14817:32583029,29865876 -) -h1,14817:6797234,30062484:0,0,0 -] -g1,14820:32583029,30586772 -) -h1,14820:6630773,30586772:0,0,0 -(1,14826:6630773,33918628:25952256,32768,229376 -(1,14826:6630773,33918628:0,32768,229376 -(1,14826:6630773,33918628:5505024,32768,229376 -r1,14837:12135797,33918628:5505024,262144,229376 -) -k1,14826:6630773,33918628:-5505024 -) -(1,14826:6630773,33918628:25952256,32768,0 -r1,14837:32583029,33918628:25952256,32768,0 -) -) -(1,14826:6630773,35522956:25952256,606339,14155 -(1,14826:6630773,35522956:2464678,582746,14155 -g1,14826:6630773,35522956 -g1,14826:9095451,35522956 -) -g1,14826:14141199,35522956 -k1,14826:32583029,35522956:14913896 -g1,14826:32583029,35522956 -) -(1,14829:6630773,36827784:25952256,564462,139132 -(1,14829:6630773,36827784:2899444,534184,12975 -g1,14829:6630773,36827784 -g1,14829:9530217,36827784 -) -g1,14829:14155486,36827784 -g1,14829:17349056,36827784 -g1,14829:18318662,36827784 -k1,14829:32583029,36827784:11155142 -g1,14829:32583029,36827784 -) -(1,14833:6630773,38062488:25952256,505283,126483 -k1,14832:10593407,38062488:158269 -k1,14832:13536301,38062488:158269 -k1,14832:15047234,38062488:158270 -k1,14832:16472969,38062488:158269 -k1,14832:19135369,38062488:158269 -k1,14832:21525139,38062488:158269 -k1,14832:24557163,38062488:158270 -k1,14832:27557073,38062488:158269 -k1,14832:32583029,38062488:0 -) -(1,14833:6630773,38903976:25952256,513147,134348 -k1,14832:7607494,38903976:290559 -k1,14832:9219913,38903976:290558 -k1,14832:10169764,38903976:290559 -k1,14832:10816182,38903976:290558 -k1,14832:12979760,38903976:290559 -k1,14832:15998582,38903976:290558 -k1,14832:16916976,38903976:290559 -k1,14832:19745088,38903976:290558 -k1,14832:20493744,38903976:290559 -k1,14832:21315799,38903976:290558 -k1,14832:23327333,38903976:290559 -k1,14832:24269319,38903976:290558 -k1,14832:25652363,38903976:290559 -k1,14832:29672575,38903976:290558 -k1,14832:32583029,38903976:0 -) -(1,14833:6630773,39745464:25952256,513147,126483 -k1,14832:7834810,39745464:256386 -k1,14832:11951922,39745464:256386 -k1,14832:13597671,39745464:256386 -k1,14832:16408650,39745464:256386 -k1,14832:17281074,39745464:256386 -k1,14832:18125973,39745464:256386 -k1,14832:20453298,39745464:256387 -k1,14832:21657335,39745464:256386 -k1,14832:24038398,39745464:256386 -k1,14832:26165837,39745464:256386 -k1,14832:27375772,39745464:256386 -k1,14832:28764620,39745464:256386 -k1,14832:30407748,39745464:256386 -k1,14832:31970267,39745464:256386 -k1,14832:32583029,39745464:0 -) -(1,14833:6630773,40586952:25952256,505283,126483 -k1,14832:10688841,40586952:182924 -k1,14832:13306411,40586952:182907 -k1,14832:14172220,40586952:182924 -k1,14832:17527087,40586952:182924 -k1,14832:18337845,40586952:182923 -k1,14832:19539854,40586952:182924 -k1,14832:21376251,40586952:182924 -k1,14832:22797150,40586952:182924 -k1,14832:23666235,40586952:182923 -(1,14832:23666235,40586952:0,452978,115847 -r1,14837:25431348,40586952:1765113,568825,115847 -k1,14832:23666235,40586952:-1765113 -) -(1,14832:23666235,40586952:1765113,452978,115847 -k1,14832:23666235,40586952:3277 -h1,14832:25428071,40586952:0,411205,112570 -) -k1,14832:25614272,40586952:182924 -k1,14832:26328693,40586952:182924 -k1,14832:26867477,40586952:182924 -k1,14832:29692812,40586952:182923 -k1,14832:31160242,40586952:182924 -k1,14832:32583029,40586952:0 -) -(1,14833:6630773,41428440:25952256,505283,126483 -g1,14832:9880703,41428440 -(1,14832:9880703,41428440:0,452978,115847 -r1,14837:11294104,41428440:1413401,568825,115847 -k1,14832:9880703,41428440:-1413401 -) -(1,14832:9880703,41428440:1413401,452978,115847 -k1,14832:9880703,41428440:3277 -h1,14832:11290827,41428440:0,411205,112570 -) -g1,14832:11667003,41428440 -(1,14832:11667003,41428440:0,452978,115847 -r1,14837:14487252,41428440:2820249,568825,115847 -k1,14832:11667003,41428440:-2820249 -) -(1,14832:11667003,41428440:2820249,452978,115847 -k1,14832:11667003,41428440:3277 -h1,14832:14483975,41428440:0,411205,112570 -) -g1,14832:14686481,41428440 -g1,14832:15417207,41428440 -g1,14832:15972296,41428440 -g1,14832:18813937,41428440 -g1,14832:20297672,41428440 -g1,14832:21919688,41428440 -g1,14832:25169618,41428440 -(1,14832:25169618,41428440:0,452978,115847 -r1,14837:26934731,41428440:1765113,568825,115847 -k1,14832:25169618,41428440:-1765113 -) -(1,14832:25169618,41428440:1765113,452978,115847 -k1,14832:25169618,41428440:3277 -h1,14832:26931454,41428440:0,411205,112570 -) -k1,14833:32583029,41428440:5474628 -g1,14833:32583029,41428440 -) -(1,14835:6630773,42269928:25952256,513147,134348 -h1,14834:6630773,42269928:983040,0,0 -k1,14834:11778700,42269928:360522 -k1,14834:14126929,42269928:360522 -k1,14834:17361206,42269928:360523 -k1,14834:18337766,42269928:360522 -k1,14834:20132216,42269928:360522 -k1,14834:20907419,42269928:360360 -k1,14834:23559735,42269928:360522 -k1,14834:24939343,42269928:360523 -k1,14834:26392350,42269928:360522 -k1,14834:27412164,42269928:360522 -k1,14834:30155575,42269928:360522 -k1,14834:32583029,42269928:0 -) -(1,14835:6630773,43111416:25952256,513147,126483 -(1,14834:6837867,43111416:0,452978,115847 -r1,14837:9306404,43111416:2468537,568825,115847 -k1,14834:6837867,43111416:-2468537 -) -(1,14834:6837867,43111416:2468537,452978,115847 -k1,14834:6837867,43111416:3277 -h1,14834:9303127,43111416:0,411205,112570 -) -k1,14834:9733765,43111416:220267 -k1,14834:10763402,43111416:220267 -k1,14834:12002754,43111416:220267 -k1,14834:15116435,43111416:220266 -k1,14834:16636281,43111416:220267 -k1,14834:18221008,43111416:220267 -k1,14834:19100567,43111416:220267 -k1,14834:20339919,43111416:220267 -k1,14834:22547893,43111416:220267 -k1,14834:25485282,43111416:220266 -k1,14834:26747571,43111416:220267 -k1,14834:27986923,43111416:220267 -k1,14834:29591310,43111416:220267 -k1,14834:32583029,43111416:0 -) -(1,14835:6630773,43952904:25952256,513147,134348 -k1,14834:7682862,43952904:183737 -k1,14834:8959083,43952904:183736 -k1,14834:10161905,43952904:183737 -k1,14834:13975026,43952904:183737 -(1,14834:13975026,43952904:0,452978,115847 -r1,14837:15388427,43952904:1413401,568825,115847 -k1,14834:13975026,43952904:-1413401 -) -(1,14834:13975026,43952904:1413401,452978,115847 -k1,14834:13975026,43952904:3277 -h1,14834:15385150,43952904:0,411205,112570 -) -k1,14834:15572164,43952904:183737 -k1,14834:17145263,43952904:183736 -k1,14834:18437214,43952904:183737 -k1,14834:21982948,43952904:183737 -k1,14834:23435462,43952904:183737 -k1,14834:28292570,43952904:183736 -k1,14834:29423958,43952904:183737 -k1,14834:31923737,43952904:183737 -k1,14834:32583029,43952904:0 -) -(1,14835:6630773,44794392:25952256,513147,126483 -g1,14834:8002441,44794392 -g1,14834:10512469,44794392 -g1,14834:11370990,44794392 -k1,14835:32583029,44794392:20039600 -g1,14835:32583029,44794392 -) -] -(1,14837:32583029,45706769:0,0,0 -g1,14837:32583029,45706769 -) -) -] -(1,14837:6630773,47279633:25952256,0,0 -h1,14837:6630773,47279633:25952256,0,0 -) -] -(1,14837:4262630,4025873:0,0,0 -[1,14837:-473656,4025873:0,0,0 -(1,14837:-473656,-710413:0,0,0 -(1,14837:-473656,-710413:0,0,0 -g1,14837:-473656,-710413 -) -g1,14837:-473656,-710413 -) -] -) -] -!26016 -}250 -!12 -{251 -[1,14929:4262630,47279633:28320399,43253760,0 -(1,14929:4262630,4025873:0,0,0 -[1,14929:-473656,4025873:0,0,0 -(1,14929:-473656,-710413:0,0,0 -(1,14929:-473656,-644877:0,0,0 -k1,14929:-473656,-644877:-65536 +] +!27147 +}232 +Input:2192:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2193:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2194:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!294 +{233 +[1,14537:4262630,47279633:28320399,43253760,0 +(1,14537:4262630,4025873:0,0,0 +[1,14537:-473656,4025873:0,0,0 +(1,14537:-473656,-710413:0,0,0 +(1,14537:-473656,-644877:0,0,0 +k1,14537:-473656,-644877:-65536 ) -(1,14929:-473656,4736287:0,0,0 -k1,14929:-473656,4736287:5209943 +(1,14537:-473656,4736287:0,0,0 +k1,14537:-473656,4736287:5209943 ) -g1,14929:-473656,-710413 +g1,14537:-473656,-710413 ) ] ) -[1,14929:6630773,47279633:25952256,43253760,0 -[1,14929:6630773,4812305:25952256,786432,0 -(1,14929:6630773,4812305:25952256,513147,126483 -(1,14929:6630773,4812305:25952256,513147,126483 -g1,14929:3078558,4812305 -[1,14929:3078558,4812305:0,0,0 -(1,14929:3078558,2439708:0,1703936,0 -k1,14929:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,14929:2537886,2439708:1179648,16384,0 +[1,14537:6630773,47279633:25952256,43253760,0 +[1,14537:6630773,4812305:25952256,786432,0 +(1,14537:6630773,4812305:25952256,513147,126483 +(1,14537:6630773,4812305:25952256,513147,126483 +g1,14537:3078558,4812305 +[1,14537:3078558,4812305:0,0,0 +(1,14537:3078558,2439708:0,1703936,0 +k1,14537:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,14537:2537886,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,14929:3078558,1915420:16384,1179648,0 +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,14537:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] ) ) ) ] -[1,14929:3078558,4812305:0,0,0 -(1,14929:3078558,2439708:0,1703936,0 -g1,14929:29030814,2439708 -g1,14929:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,14929:36151628,1915420:16384,1179648,0 +[1,14537:3078558,4812305:0,0,0 +(1,14537:3078558,2439708:0,1703936,0 +g1,14537:29030814,2439708 +g1,14537:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,14537:36151628,1915420:16384,1179648,0 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,14929:37855564,2439708:1179648,16384,0 +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,14537:37855564,2439708:1179648,16384,0 ) ) -k1,14929:3078556,2439708:-34777008 +k1,14537:3078556,2439708:-34777008 ) ] -[1,14929:3078558,4812305:0,0,0 -(1,14929:3078558,49800853:0,16384,2228224 -k1,14929:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,14929:2537886,49800853:1179648,16384,0 +[1,14537:3078558,4812305:0,0,0 +(1,14537:3078558,49800853:0,16384,2228224 +k1,14537:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,14537:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,14929:3078558,51504789:16384,1179648,0 +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,14537:3078558,51504789:16384,1179648,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 ) ] ) ) ) ] -[1,14929:3078558,4812305:0,0,0 -(1,14929:3078558,49800853:0,16384,2228224 -g1,14929:29030814,49800853 -g1,14929:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,14929:36151628,51504789:16384,1179648,0 -) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 -) -] -) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,14929:37855564,49800853:1179648,16384,0 -) -) -k1,14929:3078556,49800853:-34777008 -) -] -g1,14929:6630773,4812305 -k1,14929:19540057,4812305:11713907 -g1,14929:21162728,4812305 -g1,14929:21985204,4812305 -g1,14929:24539797,4812305 -g1,14929:25949476,4812305 -g1,14929:28728857,4812305 -g1,14929:29852144,4812305 -) -) -] -[1,14929:6630773,45706769:25952256,40108032,0 -(1,14929:6630773,45706769:25952256,40108032,0 -(1,14929:6630773,45706769:0,0,0 -g1,14929:6630773,45706769 -) -[1,14929:6630773,45706769:25952256,40108032,0 -v1,14837:6630773,6254097:0,393216,0 -(1,14900:6630773,42525696:25952256,36664815,196608 -g1,14900:6630773,42525696 -g1,14900:6630773,42525696 -g1,14900:6434165,42525696 -(1,14900:6434165,42525696:0,36664815,196608 -r1,14929:32779637,42525696:26345472,36861423,196608 -k1,14900:6434165,42525696:-26345472 -) -(1,14900:6434165,42525696:26345472,36664815,196608 -[1,14900:6630773,42525696:25952256,36468207,0 -(1,14839:6630773,6461715:25952256,404226,76021 -(1,14838:6630773,6461715:0,0,0 -g1,14838:6630773,6461715 -g1,14838:6630773,6461715 -g1,14838:6303093,6461715 -(1,14838:6303093,6461715:0,0,0 -) -g1,14838:6630773,6461715 -) -k1,14839:6630773,6461715:0 -h1,14839:9792230,6461715:0,0,0 -k1,14839:32583030,6461715:22790800 -g1,14839:32583030,6461715 -) -(1,14840:6630773,7127893:25952256,410518,107478 -h1,14840:6630773,7127893:0,0,0 -g1,14840:8211502,7127893 -g1,14840:9159940,7127893 -g1,14840:16431291,7127893 -g1,14840:20541185,7127893 -g1,14840:21173477,7127893 -g1,14840:21489623,7127893 -g1,14840:24334935,7127893 -g1,14840:25915664,7127893 -g1,14840:26547956,7127893 -h1,14840:28128684,7127893:0,0,0 -k1,14840:32583029,7127893:4454345 -g1,14840:32583029,7127893 -) -(1,14841:6630773,7794071:25952256,410518,76021 -h1,14841:6630773,7794071:0,0,0 -k1,14841:6630773,7794071:0 -h1,14841:10108375,7794071:0,0,0 -k1,14841:32583029,7794071:22474654 -g1,14841:32583029,7794071 -) -(1,14852:6630773,8460249:25952256,410518,101187 -(1,14843:6630773,8460249:0,0,0 -g1,14843:6630773,8460249 -g1,14843:6630773,8460249 -g1,14843:6303093,8460249 -(1,14843:6303093,8460249:0,0,0 -) -g1,14843:6630773,8460249 -) -g1,14852:7579210,8460249 -g1,14852:10424521,8460249 -g1,14852:11372958,8460249 -g1,14852:14218269,8460249 -h1,14852:15798997,8460249:0,0,0 -k1,14852:32583029,8460249:16784032 -g1,14852:32583029,8460249 -) -(1,14852:6630773,9126427:25952256,379060,0 -h1,14852:6630773,9126427:0,0,0 -h1,14852:7263064,9126427:0,0,0 -k1,14852:32583028,9126427:25319964 -g1,14852:32583028,9126427 -) -(1,14852:6630773,9792605:25952256,410518,101187 -h1,14852:6630773,9792605:0,0,0 -g1,14852:7579210,9792605 -g1,14852:7895356,9792605 -g1,14852:8211502,9792605 -g1,14852:8527648,9792605 -g1,14852:8843794,9792605 -g1,14852:9159940,9792605 -g1,14852:9476086,9792605 -g1,14852:9792232,9792605 -g1,14852:10108378,9792605 -g1,14852:10424524,9792605 -g1,14852:10740670,9792605 -g1,14852:11056816,9792605 -g1,14852:11372962,9792605 -g1,14852:11689108,9792605 -g1,14852:12637545,9792605 -g1,14852:12953691,9792605 -g1,14852:15166711,9792605 -g1,14852:17379731,9792605 -g1,14852:18012023,9792605 -g1,14852:19276606,9792605 -g1,14852:20225043,9792605 -g1,14852:21489626,9792605 -g1,14852:22438063,9792605 -g1,14852:22754209,9792605 -g1,14852:23070355,9792605 -g1,14852:23386501,9792605 -k1,14852:23386501,9792605:0 -h1,14852:25283375,9792605:0,0,0 -k1,14852:32583029,9792605:7299654 -g1,14852:32583029,9792605 -) -(1,14852:6630773,10458783:25952256,404226,101187 -h1,14852:6630773,10458783:0,0,0 -g1,14852:7579210,10458783 -g1,14852:11372958,10458783 -g1,14852:11689104,10458783 -g1,14852:12005250,10458783 -g1,14852:12637542,10458783 -g1,14852:15166708,10458783 -g1,14852:15482854,10458783 -g1,14852:15799000,10458783 -g1,14852:18012020,10458783 -g1,14852:18328166,10458783 -g1,14852:18644312,10458783 -g1,14852:18960458,10458783 -g1,14852:19276604,10458783 -g1,14852:19592750,10458783 -g1,14852:20225042,10458783 -g1,14852:20541188,10458783 -g1,14852:20857334,10458783 -g1,14852:21173480,10458783 -g1,14852:22438063,10458783 -g1,14852:23070355,10458783 -g1,14852:25599521,10458783 -h1,14852:26547958,10458783:0,0,0 -k1,14852:32583029,10458783:6035071 -g1,14852:32583029,10458783 -) -(1,14852:6630773,11124961:25952256,404226,101187 -h1,14852:6630773,11124961:0,0,0 -g1,14852:7579210,11124961 -g1,14852:10108376,11124961 -g1,14852:10424522,11124961 -g1,14852:10740668,11124961 -g1,14852:11056814,11124961 -g1,14852:11372960,11124961 -g1,14852:11689106,11124961 -g1,14852:12005252,11124961 -g1,14852:12637544,11124961 -g1,14852:15166710,11124961 -g1,14852:15482856,11124961 -g1,14852:15799002,11124961 -g1,14852:16115148,11124961 -g1,14852:16431294,11124961 -g1,14852:18012023,11124961 -g1,14852:18328169,11124961 -g1,14852:18644315,11124961 -g1,14852:18960461,11124961 -g1,14852:19276607,11124961 -g1,14852:19592753,11124961 -g1,14852:20225045,11124961 -g1,14852:20541191,11124961 -g1,14852:20857337,11124961 -g1,14852:21173483,11124961 -g1,14852:22438066,11124961 -g1,14852:23070358,11124961 -g1,14852:25599524,11124961 -h1,14852:26547961,11124961:0,0,0 -k1,14852:32583029,11124961:6035068 -g1,14852:32583029,11124961 -) -(1,14852:6630773,11791139:25952256,404226,6290 -h1,14852:6630773,11791139:0,0,0 -g1,14852:7579210,11791139 -g1,14852:10740667,11791139 -g1,14852:11056813,11791139 -g1,14852:11372959,11791139 -h1,14852:12321396,11791139:0,0,0 -k1,14852:32583028,11791139:20261632 -g1,14852:32583028,11791139 -) -(1,14852:6630773,12457317:25952256,379060,0 -h1,14852:6630773,12457317:0,0,0 -g1,14852:7579210,12457317 -k1,14852:7579210,12457317:0 -h1,14852:8527648,12457317:0,0,0 -k1,14852:32583028,12457317:24055380 -g1,14852:32583028,12457317 -) -(1,14852:6630773,13123495:25952256,410518,107478 -h1,14852:6630773,13123495:0,0,0 -g1,14852:7579210,13123495 -g1,14852:10108376,13123495 -g1,14852:12321396,13123495 -g1,14852:12637542,13123495 -g1,14852:13269834,13123495 -g1,14852:15166709,13123495 -g1,14852:17063583,13123495 -g1,14852:18644312,13123495 -g1,14852:20225041,13123495 -g1,14852:21489625,13123495 -g1,14852:23070354,13123495 -g1,14852:24334938,13123495 -g1,14852:25599521,13123495 -g1,14852:26231813,13123495 -g1,14852:26864105,13123495 -h1,14852:27180251,13123495:0,0,0 -k1,14852:32583029,13123495:5402778 -g1,14852:32583029,13123495 -) -(1,14854:6630773,14445033:25952256,410518,101187 -(1,14853:6630773,14445033:0,0,0 -g1,14853:6630773,14445033 -g1,14853:6630773,14445033 -g1,14853:6303093,14445033 -(1,14853:6303093,14445033:0,0,0 -) -g1,14853:6630773,14445033 -) -k1,14854:6630773,14445033:0 -h1,14854:10740667,14445033:0,0,0 -k1,14854:32583029,14445033:21842362 -g1,14854:32583029,14445033 -) -(1,14899:6630773,15111211:25952256,404226,107478 -(1,14856:6630773,15111211:0,0,0 -g1,14856:6630773,15111211 -g1,14856:6630773,15111211 -g1,14856:6303093,15111211 -(1,14856:6303093,15111211:0,0,0 -) -g1,14856:6630773,15111211 -) -g1,14899:7579210,15111211 -g1,14899:10424521,15111211 -g1,14899:14534415,15111211 -h1,14899:14850561,15111211:0,0,0 -k1,14899:32583029,15111211:17732468 -g1,14899:32583029,15111211 -) -(1,14899:6630773,15777389:25952256,379060,0 -h1,14899:6630773,15777389:0,0,0 -h1,14899:7263064,15777389:0,0,0 -k1,14899:32583028,15777389:25319964 -g1,14899:32583028,15777389 -) -(1,14899:6630773,16443567:25952256,404226,7863 -h1,14899:6630773,16443567:0,0,0 -g1,14899:7579210,16443567 -h1,14899:9159938,16443567:0,0,0 -k1,14899:32583030,16443567:23423092 -g1,14899:32583030,16443567 -) -(1,14899:6630773,17109745:25952256,410518,107478 -h1,14899:6630773,17109745:0,0,0 -g1,14899:7579210,17109745 -g1,14899:11056813,17109745 -g1,14899:11689105,17109745 -g1,14899:15798999,17109745 -g1,14899:16431291,17109745 -g1,14899:19276603,17109745 -g1,14899:20857332,17109745 -g1,14899:21489624,17109745 -h1,14899:23070352,17109745:0,0,0 -k1,14899:32583029,17109745:9512677 -g1,14899:32583029,17109745 -) -(1,14899:6630773,17775923:25952256,379060,0 -h1,14899:6630773,17775923:0,0,0 -h1,14899:7263064,17775923:0,0,0 -k1,14899:32583028,17775923:25319964 -g1,14899:32583028,17775923 -) -(1,14899:6630773,18442101:25952256,404226,6290 -h1,14899:6630773,18442101:0,0,0 -g1,14899:7579210,18442101 -h1,14899:10740667,18442101:0,0,0 -k1,14899:32583029,18442101:21842362 -g1,14899:32583029,18442101 -) -(1,14899:6630773,19108279:25952256,404226,82312 -h1,14899:6630773,19108279:0,0,0 -g1,14899:7579210,19108279 -g1,14899:7895356,19108279 -g1,14899:8211502,19108279 -g1,14899:8527648,19108279 -g1,14899:9792231,19108279 -g1,14899:10108377,19108279 -g1,14899:10424523,19108279 -g1,14899:10740669,19108279 -g1,14899:11056815,19108279 -g1,14899:12005252,19108279 -g1,14899:14218272,19108279 -g1,14899:14534418,19108279 -g1,14899:14850564,19108279 -g1,14899:15166710,19108279 -g1,14899:15482856,19108279 -g1,14899:16431293,19108279 -g1,14899:16747439,19108279 -g1,14899:17063585,19108279 -g1,14899:17379731,19108279 -h1,14899:18328168,19108279:0,0,0 -k1,14899:32583029,19108279:14254861 -g1,14899:32583029,19108279 -) -(1,14899:6630773,19774457:25952256,388497,9436 -h1,14899:6630773,19774457:0,0,0 -g1,14899:7579210,19774457 -g1,14899:9792230,19774457 -g1,14899:12005250,19774457 -g1,14899:12321396,19774457 -g1,14899:14218270,19774457 -g1,14899:14534416,19774457 -g1,14899:16431290,19774457 -g1,14899:16747436,19774457 -h1,14899:18328164,19774457:0,0,0 -k1,14899:32583029,19774457:14254865 -g1,14899:32583029,19774457 -) -(1,14899:6630773,20440635:25952256,379060,0 -h1,14899:6630773,20440635:0,0,0 -h1,14899:7263064,20440635:0,0,0 -k1,14899:32583028,20440635:25319964 -g1,14899:32583028,20440635 -) -(1,14899:6630773,21106813:25952256,410518,7863 -h1,14899:6630773,21106813:0,0,0 -g1,14899:7579210,21106813 -h1,14899:11689104,21106813:0,0,0 -k1,14899:32583028,21106813:20893924 -g1,14899:32583028,21106813 -) -(1,14899:6630773,21772991:25952256,404226,76021 -h1,14899:6630773,21772991:0,0,0 -g1,14899:7579210,21772991 -g1,14899:7895356,21772991 -g1,14899:8211502,21772991 -g1,14899:8527648,21772991 -g1,14899:8843794,21772991 -g1,14899:9159940,21772991 -g1,14899:9476086,21772991 -g1,14899:9792232,21772991 -g1,14899:10108378,21772991 -g1,14899:10424524,21772991 -g1,14899:10740670,21772991 -g1,14899:11056816,21772991 -g1,14899:11372962,21772991 -g1,14899:11689108,21772991 -g1,14899:12005254,21772991 -g1,14899:12321400,21772991 -g1,14899:12637546,21772991 -g1,14899:12953692,21772991 -g1,14899:13269838,21772991 -g1,14899:16115149,21772991 -g1,14899:17695878,21772991 -g1,14899:19592752,21772991 -g1,14899:20225044,21772991 -g1,14899:22121918,21772991 -k1,14899:22121918,21772991:0 -h1,14899:24651083,21772991:0,0,0 -k1,14899:32583029,21772991:7931946 -g1,14899:32583029,21772991 -) -(1,14899:6630773,22439169:25952256,404226,101187 -h1,14899:6630773,22439169:0,0,0 -g1,14899:7579210,22439169 -g1,14899:11372958,22439169 -g1,14899:11689104,22439169 -g1,14899:12005250,22439169 -g1,14899:12321396,22439169 -g1,14899:12637542,22439169 -g1,14899:12953688,22439169 -g1,14899:13269834,22439169 -g1,14899:13585980,22439169 -g1,14899:16115146,22439169 -g1,14899:16431292,22439169 -g1,14899:16747438,22439169 -g1,14899:17063584,22439169 -g1,14899:19592750,22439169 -g1,14899:19908896,22439169 -g1,14899:20225042,22439169 -g1,14899:22121916,22439169 -g1,14899:22438062,22439169 -g1,14899:22754208,22439169 -g1,14899:24967228,22439169 -h1,14899:25915665,22439169:0,0,0 -k1,14899:32583029,22439169:6667364 -g1,14899:32583029,22439169 -) -(1,14899:6630773,23105347:25952256,404226,101187 -h1,14899:6630773,23105347:0,0,0 -g1,14899:7579210,23105347 -g1,14899:13269833,23105347 -g1,14899:13585979,23105347 -g1,14899:16115145,23105347 -g1,14899:16431291,23105347 -g1,14899:16747437,23105347 -g1,14899:17063583,23105347 -g1,14899:19592749,23105347 -g1,14899:19908895,23105347 -g1,14899:20225041,23105347 -g1,14899:22121915,23105347 -g1,14899:22438061,23105347 -g1,14899:22754207,23105347 -g1,14899:24967227,23105347 -h1,14899:25915664,23105347:0,0,0 -k1,14899:32583029,23105347:6667365 -g1,14899:32583029,23105347 -) -(1,14899:6630773,23771525:25952256,404226,107478 -h1,14899:6630773,23771525:0,0,0 -g1,14899:7579210,23771525 -g1,14899:12953687,23771525 -g1,14899:13269833,23771525 -g1,14899:13585979,23771525 -g1,14899:16115145,23771525 -g1,14899:16431291,23771525 -g1,14899:16747437,23771525 -g1,14899:17063583,23771525 -g1,14899:19592749,23771525 -g1,14899:19908895,23771525 -g1,14899:20225041,23771525 -g1,14899:22121915,23771525 -g1,14899:22438061,23771525 -g1,14899:22754207,23771525 -g1,14899:24967227,23771525 -h1,14899:25915664,23771525:0,0,0 -k1,14899:32583029,23771525:6667365 -g1,14899:32583029,23771525 -) -(1,14899:6630773,24437703:25952256,379060,0 -h1,14899:6630773,24437703:0,0,0 -g1,14899:7579210,24437703 -k1,14899:7579210,24437703:0 -h1,14899:8527648,24437703:0,0,0 -k1,14899:32583028,24437703:24055380 -g1,14899:32583028,24437703 -) -(1,14899:6630773,25103881:25952256,410518,107478 -h1,14899:6630773,25103881:0,0,0 -g1,14899:7579210,25103881 -g1,14899:10108376,25103881 -g1,14899:12321396,25103881 -g1,14899:12637542,25103881 -g1,14899:13269834,25103881 -g1,14899:15166709,25103881 -g1,14899:17063583,25103881 -g1,14899:18644312,25103881 -g1,14899:20225041,25103881 -g1,14899:21489625,25103881 -g1,14899:23070354,25103881 -g1,14899:24334938,25103881 -g1,14899:25599521,25103881 -g1,14899:26231813,25103881 -g1,14899:26864105,25103881 -h1,14899:27180251,25103881:0,0,0 -k1,14899:32583029,25103881:5402778 -g1,14899:32583029,25103881 -) -(1,14899:6630773,25770059:25952256,379060,0 -h1,14899:6630773,25770059:0,0,0 -h1,14899:7263064,25770059:0,0,0 -k1,14899:32583028,25770059:25319964 -g1,14899:32583028,25770059 -) -(1,14899:6630773,26436237:25952256,410518,107478 -h1,14899:6630773,26436237:0,0,0 -g1,14899:7579210,26436237 -g1,14899:10424521,26436237 -g1,14899:13269832,26436237 -g1,14899:15482852,26436237 -g1,14899:17695872,26436237 -g1,14899:18644309,26436237 -g1,14899:19908892,26436237 -g1,14899:22438058,26436237 -g1,14899:23386495,26436237 -h1,14899:25599515,26436237:0,0,0 -k1,14899:32583029,26436237:6983514 -g1,14899:32583029,26436237 -) -(1,14899:6630773,27102415:25952256,404226,107478 -h1,14899:6630773,27102415:0,0,0 -g1,14899:7579210,27102415 -g1,14899:10424521,27102415 -g1,14899:13902124,27102415 -g1,14899:14218270,27102415 -g1,14899:19276601,27102415 -g1,14899:22754204,27102415 -g1,14899:23070350,27102415 -h1,14899:24967224,27102415:0,0,0 -k1,14899:32583029,27102415:7615805 -g1,14899:32583029,27102415 -) -(1,14899:6630773,27768593:25952256,404226,101187 -h1,14899:6630773,27768593:0,0,0 -g1,14899:7579210,27768593 -g1,14899:11689104,27768593 -g1,14899:12005250,27768593 -g1,14899:13585979,27768593 -g1,14899:14534416,27768593 -g1,14899:15166708,27768593 -g1,14899:16431291,27768593 -g1,14899:17695874,27768593 -g1,14899:18960457,27768593 -g1,14899:19276603,27768593 -g1,14899:22121915,27768593 -g1,14899:22754207,27768593 -k1,14899:22754207,27768593:0 -h1,14899:24967227,27768593:0,0,0 -k1,14899:32583029,27768593:7615802 -g1,14899:32583029,27768593 -) -(1,14899:6630773,28434771:25952256,379060,0 -h1,14899:6630773,28434771:0,0,0 -h1,14899:7263064,28434771:0,0,0 -k1,14899:32583028,28434771:25319964 -g1,14899:32583028,28434771 -) -(1,14899:6630773,29100949:25952256,379060,0 -h1,14899:6630773,29100949:0,0,0 -h1,14899:7263064,29100949:0,0,0 -k1,14899:32583028,29100949:25319964 -g1,14899:32583028,29100949 -) -(1,14899:6630773,29767127:25952256,404226,101187 -h1,14899:6630773,29767127:0,0,0 -g1,14899:7579210,29767127 -g1,14899:10424521,29767127 -g1,14899:14218269,29767127 -h1,14899:14534415,29767127:0,0,0 -k1,14899:32583029,29767127:18048614 -g1,14899:32583029,29767127 -) -(1,14899:6630773,30433305:25952256,379060,0 -h1,14899:6630773,30433305:0,0,0 -h1,14899:7263064,30433305:0,0,0 -k1,14899:32583028,30433305:25319964 -g1,14899:32583028,30433305 -) -(1,14899:6630773,31099483:25952256,404226,7863 -h1,14899:6630773,31099483:0,0,0 -g1,14899:7579210,31099483 -h1,14899:9159938,31099483:0,0,0 -k1,14899:32583030,31099483:23423092 -g1,14899:32583030,31099483 -) -(1,14899:6630773,31765661:25952256,410518,101187 -h1,14899:6630773,31765661:0,0,0 -g1,14899:7579210,31765661 -g1,14899:11056813,31765661 -g1,14899:11689105,31765661 -g1,14899:15482853,31765661 -g1,14899:16115145,31765661 -g1,14899:18960457,31765661 -g1,14899:20541186,31765661 -g1,14899:21173478,31765661 -h1,14899:22754206,31765661:0,0,0 -k1,14899:32583029,31765661:9828823 -g1,14899:32583029,31765661 -) -(1,14899:6630773,32431839:25952256,379060,0 -h1,14899:6630773,32431839:0,0,0 -h1,14899:7263064,32431839:0,0,0 -k1,14899:32583028,32431839:25319964 -g1,14899:32583028,32431839 -) -(1,14899:6630773,33098017:25952256,404226,6290 -h1,14899:6630773,33098017:0,0,0 -g1,14899:7579210,33098017 -h1,14899:10740667,33098017:0,0,0 -k1,14899:32583029,33098017:21842362 -g1,14899:32583029,33098017 -) -(1,14899:6630773,33764195:25952256,404226,82312 -h1,14899:6630773,33764195:0,0,0 -g1,14899:7579210,33764195 -g1,14899:7895356,33764195 -g1,14899:8211502,33764195 -g1,14899:8527648,33764195 -g1,14899:9792231,33764195 -g1,14899:10108377,33764195 -g1,14899:10424523,33764195 -g1,14899:10740669,33764195 -g1,14899:11056815,33764195 -g1,14899:12005252,33764195 -g1,14899:14218272,33764195 -g1,14899:14534418,33764195 -g1,14899:14850564,33764195 -g1,14899:15166710,33764195 -g1,14899:15482856,33764195 -g1,14899:16431293,33764195 -g1,14899:16747439,33764195 -g1,14899:17063585,33764195 -g1,14899:17379731,33764195 -h1,14899:18328168,33764195:0,0,0 -k1,14899:32583029,33764195:14254861 -g1,14899:32583029,33764195 -) -(1,14899:6630773,34430373:25952256,388497,9436 -h1,14899:6630773,34430373:0,0,0 -g1,14899:7579210,34430373 -g1,14899:9792230,34430373 -g1,14899:12005250,34430373 -g1,14899:14218270,34430373 -g1,14899:14534416,34430373 -g1,14899:16431290,34430373 -g1,14899:16747436,34430373 -h1,14899:18328164,34430373:0,0,0 -k1,14899:32583029,34430373:14254865 -g1,14899:32583029,34430373 -) -(1,14899:6630773,35096551:25952256,379060,0 -h1,14899:6630773,35096551:0,0,0 -h1,14899:7263064,35096551:0,0,0 -k1,14899:32583028,35096551:25319964 -g1,14899:32583028,35096551 -) -(1,14899:6630773,35762729:25952256,410518,7863 -h1,14899:6630773,35762729:0,0,0 -g1,14899:7579210,35762729 -h1,14899:11689104,35762729:0,0,0 -k1,14899:32583028,35762729:20893924 -g1,14899:32583028,35762729 -) -(1,14899:6630773,36428907:25952256,404226,76021 -h1,14899:6630773,36428907:0,0,0 -g1,14899:7579210,36428907 -g1,14899:7895356,36428907 -g1,14899:8211502,36428907 -g1,14899:8527648,36428907 -g1,14899:8843794,36428907 -g1,14899:9159940,36428907 -g1,14899:9476086,36428907 -g1,14899:9792232,36428907 -g1,14899:10108378,36428907 -g1,14899:10424524,36428907 -g1,14899:10740670,36428907 -g1,14899:11056816,36428907 -g1,14899:11372962,36428907 -g1,14899:11689108,36428907 -g1,14899:12005254,36428907 -g1,14899:12321400,36428907 -g1,14899:12637546,36428907 -g1,14899:12953692,36428907 -g1,14899:13269838,36428907 -g1,14899:16115149,36428907 -g1,14899:17695878,36428907 -g1,14899:19592752,36428907 -g1,14899:20225044,36428907 -g1,14899:22121918,36428907 -k1,14899:22121918,36428907:0 -h1,14899:24651083,36428907:0,0,0 -k1,14899:32583029,36428907:7931946 -g1,14899:32583029,36428907 -) -(1,14899:6630773,37095085:25952256,404226,101187 -h1,14899:6630773,37095085:0,0,0 -g1,14899:7579210,37095085 -g1,14899:11372958,37095085 -g1,14899:11689104,37095085 -g1,14899:12005250,37095085 -g1,14899:12321396,37095085 -g1,14899:12637542,37095085 -g1,14899:12953688,37095085 -g1,14899:13269834,37095085 -g1,14899:13585980,37095085 -g1,14899:16115146,37095085 -g1,14899:16431292,37095085 -g1,14899:16747438,37095085 -g1,14899:17063584,37095085 -g1,14899:19592750,37095085 -g1,14899:19908896,37095085 -g1,14899:20225042,37095085 -g1,14899:20541188,37095085 -g1,14899:22121917,37095085 -g1,14899:24967228,37095085 -h1,14899:25915665,37095085:0,0,0 -k1,14899:32583029,37095085:6667364 -g1,14899:32583029,37095085 -) -(1,14899:6630773,37761263:25952256,404226,101187 -h1,14899:6630773,37761263:0,0,0 -g1,14899:7579210,37761263 -g1,14899:13269833,37761263 -g1,14899:13585979,37761263 -g1,14899:16115145,37761263 -g1,14899:16431291,37761263 -g1,14899:16747437,37761263 -g1,14899:17063583,37761263 -g1,14899:19592749,37761263 -g1,14899:19908895,37761263 -g1,14899:20225041,37761263 -g1,14899:22121915,37761263 -g1,14899:22438061,37761263 -g1,14899:23070353,37761263 -g1,14899:24967227,37761263 -h1,14899:25915664,37761263:0,0,0 -k1,14899:32583029,37761263:6667365 -g1,14899:32583029,37761263 -) -(1,14899:6630773,38427441:25952256,404226,107478 -h1,14899:6630773,38427441:0,0,0 -g1,14899:7579210,38427441 -g1,14899:12953687,38427441 -g1,14899:13269833,38427441 -g1,14899:13585979,38427441 -g1,14899:16115145,38427441 -g1,14899:16431291,38427441 -g1,14899:16747437,38427441 -g1,14899:17063583,38427441 -g1,14899:19592749,38427441 -g1,14899:19908895,38427441 -g1,14899:20225041,38427441 -g1,14899:22121915,38427441 -g1,14899:22438061,38427441 -g1,14899:23070353,38427441 -g1,14899:24967227,38427441 -h1,14899:25915664,38427441:0,0,0 -k1,14899:32583029,38427441:6667365 -g1,14899:32583029,38427441 -) -(1,14899:6630773,39093619:25952256,379060,0 -h1,14899:6630773,39093619:0,0,0 -g1,14899:7579210,39093619 -k1,14899:7579210,39093619:0 -h1,14899:8527648,39093619:0,0,0 -k1,14899:32583028,39093619:24055380 -g1,14899:32583028,39093619 -) -(1,14899:6630773,39759797:25952256,410518,107478 -h1,14899:6630773,39759797:0,0,0 -g1,14899:7579210,39759797 -g1,14899:10108376,39759797 -g1,14899:12321396,39759797 -g1,14899:12637542,39759797 -g1,14899:13269834,39759797 -g1,14899:15166709,39759797 -g1,14899:17063583,39759797 -g1,14899:18644312,39759797 -g1,14899:20225041,39759797 -g1,14899:21489625,39759797 -g1,14899:23070354,39759797 -g1,14899:24334938,39759797 -g1,14899:25599521,39759797 -g1,14899:26231813,39759797 -g1,14899:26864105,39759797 -h1,14899:27180251,39759797:0,0,0 -k1,14899:32583029,39759797:5402778 -g1,14899:32583029,39759797 -) -(1,14899:6630773,40425975:25952256,379060,0 -h1,14899:6630773,40425975:0,0,0 -h1,14899:7263064,40425975:0,0,0 -k1,14899:32583028,40425975:25319964 -g1,14899:32583028,40425975 -) -(1,14899:6630773,41092153:25952256,410518,107478 -h1,14899:6630773,41092153:0,0,0 -g1,14899:7579210,41092153 -g1,14899:10424521,41092153 -g1,14899:13269832,41092153 -g1,14899:15482852,41092153 -g1,14899:17695872,41092153 -g1,14899:18644309,41092153 -g1,14899:19908892,41092153 -g1,14899:22438058,41092153 -g1,14899:23386495,41092153 -h1,14899:25599515,41092153:0,0,0 -k1,14899:32583029,41092153:6983514 -g1,14899:32583029,41092153 -) -(1,14899:6630773,41758331:25952256,404226,107478 -h1,14899:6630773,41758331:0,0,0 -g1,14899:7579210,41758331 -g1,14899:10424521,41758331 -g1,14899:13902124,41758331 -g1,14899:14218270,41758331 -g1,14899:19276601,41758331 -g1,14899:22754204,41758331 -g1,14899:23070350,41758331 -h1,14899:24967224,41758331:0,0,0 -k1,14899:32583029,41758331:7615805 -g1,14899:32583029,41758331 -) -(1,14899:6630773,42424509:25952256,404226,101187 -h1,14899:6630773,42424509:0,0,0 -g1,14899:7579210,42424509 -g1,14899:11689104,42424509 -g1,14899:12005250,42424509 -g1,14899:12321396,42424509 -g1,14899:13585979,42424509 -g1,14899:14534416,42424509 -g1,14899:15166708,42424509 -g1,14899:16431291,42424509 -g1,14899:17695874,42424509 -g1,14899:18960457,42424509 -g1,14899:19276603,42424509 -g1,14899:22121915,42424509 -g1,14899:22754207,42424509 -k1,14899:22754207,42424509:0 -h1,14899:24967227,42424509:0,0,0 -k1,14899:32583029,42424509:7615802 -g1,14899:32583029,42424509 -) -] -) -g1,14900:32583029,42525696 -g1,14900:6630773,42525696 -g1,14900:6630773,42525696 -g1,14900:32583029,42525696 -g1,14900:32583029,42525696 -) -h1,14900:6630773,42722304:0,0,0 -v1,14904:6630773,44437058:0,393216,0 -(1,14929:6630773,45317146:25952256,1273304,196608 -g1,14929:6630773,45317146 -g1,14929:6630773,45317146 -g1,14929:6434165,45317146 -(1,14929:6434165,45317146:0,1273304,196608 -r1,14929:32779637,45317146:26345472,1469912,196608 -k1,14929:6434165,45317146:-26345472 -) -(1,14929:6434165,45317146:26345472,1273304,196608 -[1,14929:6630773,45317146:25952256,1076696,0 -(1,14906:6630773,44650968:25952256,410518,107478 -(1,14905:6630773,44650968:0,0,0 -g1,14905:6630773,44650968 -g1,14905:6630773,44650968 -g1,14905:6303093,44650968 -(1,14905:6303093,44650968:0,0,0 -) -g1,14905:6630773,44650968 -) -g1,14906:8211502,44650968 -g1,14906:9159940,44650968 -g1,14906:17695874,44650968 -g1,14906:21805768,44650968 -g1,14906:22438060,44650968 -g1,14906:22754206,44650968 -g1,14906:25599518,44650968 -g1,14906:27180247,44650968 -g1,14906:27812539,44650968 -h1,14906:29393267,44650968:0,0,0 -k1,14906:32583029,44650968:3189762 -g1,14906:32583029,44650968 -) -(1,14907:6630773,45317146:25952256,410518,76021 -h1,14907:6630773,45317146:0,0,0 -k1,14907:6630773,45317146:0 -h1,14907:10108375,45317146:0,0,0 -k1,14907:32583029,45317146:22474654 -g1,14907:32583029,45317146 -) -] -) -g1,14929:32583029,45317146 -g1,14929:6630773,45317146 -g1,14929:6630773,45317146 -g1,14929:32583029,45317146 -g1,14929:32583029,45317146 -) -] -(1,14929:32583029,45706769:0,0,0 -g1,14929:32583029,45706769 -) -) -] -(1,14929:6630773,47279633:25952256,0,0 -h1,14929:6630773,47279633:25952256,0,0 -) -] -(1,14929:4262630,4025873:0,0,0 -[1,14929:-473656,4025873:0,0,0 -(1,14929:-473656,-710413:0,0,0 -(1,14929:-473656,-710413:0,0,0 -g1,14929:-473656,-710413 -) -g1,14929:-473656,-710413 -) -] -) -] -!27110 -}251 +[1,14537:3078558,4812305:0,0,0 +(1,14537:3078558,49800853:0,16384,2228224 +g1,14537:29030814,49800853 +g1,14537:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,14537:36151628,51504789:16384,1179648,0 +) +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 +) +] +) +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,14537:37855564,49800853:1179648,16384,0 +) +) +k1,14537:3078556,49800853:-34777008 +) +] +g1,14537:6630773,4812305 +k1,14537:19540057,4812305:11713907 +g1,14537:21162728,4812305 +g1,14537:21985204,4812305 +g1,14537:24539797,4812305 +g1,14537:25949476,4812305 +g1,14537:28728857,4812305 +g1,14537:29852144,4812305 +) +) +] +[1,14537:6630773,45706769:25952256,40108032,0 +(1,14537:6630773,45706769:25952256,40108032,0 +(1,14537:6630773,45706769:0,0,0 +g1,14537:6630773,45706769 +) +[1,14537:6630773,45706769:25952256,40108032,0 +v1,14486:6630773,6254097:0,393216,0 +(1,14501:6630773,15672014:25952256,9811133,0 +g1,14501:6630773,15672014 +g1,14501:6237557,15672014 +r1,14537:6368629,15672014:131072,9811133,0 +g1,14501:6567858,15672014 +g1,14501:6764466,15672014 +[1,14501:6764466,15672014:25818563,9811133,0 +(1,14487:6764466,6526574:25818563,665693,196608 +(1,14486:6764466,6526574:0,665693,196608 +r1,14537:8010564,6526574:1246098,862301,196608 +k1,14486:6764466,6526574:-1246098 +) +(1,14486:6764466,6526574:1246098,665693,196608 +) +k1,14486:8184920,6526574:174356 +k1,14486:9911138,6526574:327680 +k1,14486:12521467,6526574:174356 +k1,14486:13714908,6526574:174356 +k1,14486:16880983,6526574:174356 +k1,14486:18923770,6526574:174356 +k1,14486:20833519,6526574:174356 +k1,14486:22026959,6526574:174355 +(1,14486:22026959,6526574:0,452978,115847 +r1,14537:23088648,6526574:1061689,568825,115847 +k1,14486:22026959,6526574:-1061689 +) +(1,14486:22026959,6526574:1061689,452978,115847 +k1,14486:22026959,6526574:3277 +h1,14486:23085371,6526574:0,411205,112570 +) +k1,14486:23263004,6526574:174356 +k1,14486:24826723,6526574:174356 +k1,14486:25935622,6526574:174356 +k1,14486:27677599,6526574:174356 +k1,14486:28440468,6526574:174356 +k1,14486:30172615,6526574:174356 +k1,14487:32583029,6526574:0 +) +(1,14487:6764466,7391654:25818563,513147,126483 +k1,14486:8863092,7391654:262963 +k1,14486:10145140,7391654:262963 +k1,14486:11500589,7391654:262964 +k1,14486:12422844,7391654:262963 +k1,14486:15448150,7391654:262963 +k1,14486:17698820,7391654:262963 +k1,14486:20835537,7391654:262963 +k1,14486:21714538,7391654:262963 +k1,14486:24585835,7391654:262964 +k1,14486:25997644,7391654:262963 +k1,14486:27957334,7391654:262963 +k1,14486:31212016,7391654:262963 +k1,14486:32583029,7391654:0 +) +(1,14487:6764466,8256734:25818563,513147,134348 +k1,14486:8395203,8256734:171906 +k1,14486:9897490,8256734:171906 +k1,14486:13225610,8256734:171906 +k1,14486:14206886,8256734:171906 +k1,14486:15397877,8256734:171906 +k1,14486:17223256,8256734:171906 +k1,14486:19381558,8256734:171906 +k1,14486:20204892,8256734:171906 +k1,14486:22019130,8256734:171906 +k1,14486:23649867,8256734:171906 +k1,14486:28476795,8256734:171906 +k1,14486:29307993,8256734:171906 +k1,14486:30498984,8256734:171906 +k1,14486:32583029,8256734:0 +) +(1,14487:6764466,9121814:25818563,513147,126483 +k1,14486:7615628,9121814:191870 +k1,14486:9795204,9121814:191869 +k1,14486:13034498,9121814:191870 +k1,14486:15079726,9121814:191870 +k1,14486:16080966,9121814:191870 +k1,14486:17291920,9121814:191869 +k1,14486:19326662,9121814:191870 +k1,14486:22581685,9121814:191870 +k1,14486:23389592,9121814:191869 +k1,14486:24600547,9121814:191870 +k1,14486:27227073,9121814:191863 +k1,14486:29488569,9121814:191869 +k1,14486:30986572,9121814:191870 +k1,14486:32583029,9121814:0 +) +(1,14487:6764466,9986894:25818563,513147,134348 +k1,14486:8039264,9986894:208527 +k1,14486:9796408,9986894:208528 +k1,14486:12322943,9986894:208527 +k1,14486:13523031,9986894:208528 +k1,14486:15469573,9986894:208527 +k1,14486:17390557,9986894:208528 +k1,14486:18215122,9986894:208527 +k1,14486:19875272,9986894:208528 +k1,14486:21624550,9986894:208527 +k1,14486:22460912,9986894:208527 +k1,14486:23025300,9986894:208528 +k1,14486:25475158,9986894:208527 +k1,14486:27212641,9986894:208528 +k1,14486:29035975,9986894:208527 +k1,14486:30696125,9986894:208528 +k1,14486:31563944,9986894:208527 +k1,14486:32583029,9986894:0 +) +(1,14487:6764466,10851974:25818563,513147,134348 +k1,14486:9328955,10851974:246481 +k1,14486:11310829,10851974:246481 +k1,14486:11913170,10851974:246481 +k1,14486:16483061,10851974:246481 +k1,14486:20714132,10851974:246482 +k1,14486:23236678,10851974:246481 +k1,14486:25163502,10851974:246481 +k1,14486:26740364,10851974:246481 +k1,14486:28974552,10851974:246481 +k1,14486:31246095,10851974:246481 +k1,14486:32583029,10851974:0 +) +(1,14487:6764466,11717054:25818563,513147,126483 +g1,14486:8742997,11717054 +g1,14486:9961311,11717054 +g1,14486:13928205,11717054 +g1,14486:15695055,11717054 +g1,14486:16664987,11717054 +g1,14486:19418809,11717054 +g1,14486:20277330,11717054 +k1,14487:32583029,11717054:9477820 +g1,14487:32583029,11717054 +) +v1,14490:6764466,12401909:0,393216,0 +(1,14498:6764466,15475406:25818563,3466713,196608 +g1,14498:6764466,15475406 +g1,14498:6764466,15475406 +g1,14498:6567858,15475406 +(1,14498:6567858,15475406:0,3466713,196608 +r1,14537:32779637,15475406:26211779,3663321,196608 +k1,14498:6567857,15475406:-26211780 +) +(1,14498:6567858,15475406:26211779,3466713,196608 +[1,14498:6764466,15475406:25818563,3270105,0 +(1,14492:6764466,12629740:25818563,424439,106246 +(1,14491:6764466,12629740:0,0,0 +g1,14491:6764466,12629740 +g1,14491:6764466,12629740 +g1,14491:6436786,12629740 +(1,14491:6436786,12629740:0,0,0 +) +g1,14491:6764466,12629740 +) +k1,14492:6764466,12629740:0 +h1,14492:9752052,12629740:0,0,0 +k1,14492:32583028,12629740:22830976 +g1,14492:32583028,12629740 +) +(1,14493:6764466,13314595:25818563,424439,106246 +h1,14493:6764466,13314595:0,0,0 +g1,14493:11743776,13314595 +g1,14493:12407684,13314595 +g1,14493:13071592,13314595 +g1,14493:13735500,13314595 +g1,14493:14399408,13314595 +g1,14493:15063316,13314595 +g1,14493:16059178,13314595 +g1,14493:17718948,13314595 +g1,14493:18382856,13314595 +h1,14493:20042626,13314595:0,0,0 +k1,14493:32583029,13314595:12540403 +g1,14493:32583029,13314595 +) +(1,14494:6764466,13999450:25818563,424439,106246 +h1,14494:6764466,13999450:0,0,0 +g1,14494:11743776,13999450 +g1,14494:12407684,13999450 +g1,14494:13403546,13999450 +g1,14494:14067454,13999450 +g1,14494:14731362,13999450 +g1,14494:15395270,13999450 +g1,14494:17386994,13999450 +g1,14494:19046764,13999450 +g1,14494:19710672,13999450 +h1,14494:21370442,13999450:0,0,0 +k1,14494:32583029,13999450:11212587 +g1,14494:32583029,13999450 +) +(1,14495:6764466,14684305:25818563,424439,106246 +h1,14495:6764466,14684305:0,0,0 +g1,14495:11743776,14684305 +g1,14495:12407684,14684305 +g1,14495:13071592,14684305 +g1,14495:13735500,14684305 +g1,14495:14399408,14684305 +g1,14495:15063316,14684305 +g1,14495:15727224,14684305 +g1,14495:16391132,14684305 +g1,14495:17055040,14684305 +g1,14495:18714810,14684305 +g1,14495:19378718,14684305 +g1,14495:20042626,14684305 +g1,14495:20706534,14684305 +g1,14495:22366304,14684305 +g1,14495:23362166,14684305 +g1,14495:25021936,14684305 +g1,14495:25685844,14684305 +h1,14495:27345614,14684305:0,0,0 +k1,14495:32583029,14684305:5237415 +g1,14495:32583029,14684305 +) +(1,14496:6764466,15369160:25818563,424439,106246 +h1,14496:6764466,15369160:0,0,0 +g1,14496:11743776,15369160 +g1,14496:12407684,15369160 +g1,14496:13071592,15369160 +g1,14496:13735500,15369160 +g1,14496:14399408,15369160 +g1,14496:15063316,15369160 +g1,14496:15727224,15369160 +g1,14496:16391132,15369160 +g1,14496:17055040,15369160 +g1,14496:18714810,15369160 +g1,14496:19378718,15369160 +g1,14496:20042626,15369160 +g1,14496:20706534,15369160 +g1,14496:22366304,15369160 +g1,14496:23362166,15369160 +g1,14496:25021936,15369160 +g1,14496:25685844,15369160 +h1,14496:27345614,15369160:0,0,0 +k1,14496:32583029,15369160:5237415 +g1,14496:32583029,15369160 +) +] +) +g1,14498:32583029,15475406 +g1,14498:6764466,15475406 +g1,14498:6764466,15475406 +g1,14498:32583029,15475406 +g1,14498:32583029,15475406 +) +h1,14498:6764466,15672014:0,0,0 +] +g1,14501:32583029,15672014 +) +h1,14501:6630773,15672014:0,0,0 +(1,14504:6630773,16537094:25952256,513147,134348 +h1,14503:6630773,16537094:983040,0,0 +k1,14503:10211202,16537094:180421 +k1,14503:11050914,16537094:180420 +k1,14503:13455627,16537094:180421 +k1,14503:14252085,16537094:180420 +k1,14503:18371875,16537094:180421 +k1,14503:20287688,16537094:180420 +k1,14503:24208248,16537094:180420 +k1,14503:26807603,16537094:180421 +k1,14503:28481590,16537094:180421 +k1,14503:29348172,16537094:180420 +k1,14503:32583029,16537094:0 +) +(1,14504:6630773,17402174:25952256,513147,126483 +k1,14503:7454669,17402174:141011 +k1,14503:10380306,17402174:141012 +k1,14503:13729304,17402174:141011 +k1,14503:16043490,17402174:141012 +k1,14503:16800539,17402174:141011 +k1,14503:17960635,17402174:141011 +k1,14503:19631913,17402174:141012 +k1,14503:20424352,17402174:141011 +k1,14503:23353266,17402174:141012 +k1,14503:26721270,17402174:141011 +k1,14503:28469225,17402174:141012 +k1,14503:30626779,17402174:141011 +k1,14504:32583029,17402174:0 +) +(1,14504:6630773,18267254:25952256,513147,134348 +k1,14503:7796518,18267254:175496 +k1,14503:8588052,18267254:175496 +k1,14503:10272187,18267254:175496 +k1,14503:12903317,18267254:175496 +k1,14503:13738105,18267254:175496 +k1,14503:16770315,18267254:175496 +k1,14503:17573646,18267254:175496 +k1,14503:19242708,18267254:175496 +k1,14503:19774064,18267254:175496 +k1,14503:22211863,18267254:175496 +k1,14503:25149702,18267254:175496 +k1,14503:27426282,18267254:175496 +k1,14503:28593338,18267254:175496 +k1,14503:30728360,18267254:175496 +k1,14503:32583029,18267254:0 +) +(1,14504:6630773,19132334:25952256,513147,134348 +k1,14503:7646066,19132334:205923 +k1,14503:10614333,19132334:205924 +k1,14503:12427199,19132334:205923 +k1,14503:14649666,19132334:205924 +k1,14503:17531424,19132334:205923 +k1,14503:20076983,19132334:205924 +k1,14503:22113982,19132334:205923 +k1,14503:23002790,19132334:205923 +k1,14503:24274985,19132334:205924 +k1,14503:25012405,19132334:205923 +k1,14503:25574189,19132334:205924 +k1,14503:28558183,19132334:205923 +k1,14503:29423399,19132334:205924 +k1,14503:30400025,19132334:205923 +k1,14504:32583029,19132334:0 +) +(1,14504:6630773,19997414:25952256,513147,134348 +k1,14503:8613456,19997414:169957 +k1,14503:9253305,19997414:169956 +k1,14503:9954759,19997414:169957 +k1,14503:12616394,19997414:169956 +k1,14503:13472513,19997414:169957 +k1,14503:14964331,19997414:169957 +k1,14503:15793579,19997414:169956 +k1,14503:16982621,19997414:169957 +k1,14503:19241209,19997414:169956 +k1,14503:20070458,19997414:169957 +k1,14503:21259500,19997414:169957 +k1,14503:25038524,19997414:169956 +k1,14503:27063150,19997414:169957 +k1,14503:28042476,19997414:169956 +k1,14503:29231518,19997414:169957 +k1,14503:32583029,19997414:0 +) +(1,14504:6630773,20862494:25952256,513147,134348 +k1,14503:7469199,20862494:179134 +k1,14503:10792750,20862494:179134 +k1,14503:14617652,20862494:179134 +k1,14503:15448214,20862494:179134 +k1,14503:19797403,20862494:179133 +k1,14503:21768291,20862494:179134 +k1,14503:22575260,20862494:179134 +k1,14503:24816137,20862494:179114 +k1,14503:30243394,20862494:179134 +k1,14503:32583029,20862494:0 +) +(1,14504:6630773,21727574:25952256,513147,126483 +k1,14503:8749265,21727574:257925 +k1,14503:9658618,21727574:257925 +k1,14503:10664309,21727574:257925 +k1,14503:14012257,21727574:257925 +k1,14503:15031710,21727574:257925 +k1,14503:17620751,21727574:257925 +k1,14503:20960835,21727574:257926 +k1,14503:21878052,21727574:257925 +k1,14503:23742920,21727574:257925 +k1,14503:25843717,21727574:257925 +k1,14503:26863170,21727574:257925 +k1,14503:29189411,21727574:257925 +k1,14503:30114492,21727574:257925 +(1,14503:30114492,21727574:0,452978,115847 +r1,14537:32583029,21727574:2468537,568825,115847 +k1,14503:30114492,21727574:-2468537 +) +(1,14503:30114492,21727574:2468537,452978,115847 +k1,14503:30114492,21727574:3277 +h1,14503:32579752,21727574:0,411205,112570 +) +k1,14503:32583029,21727574:0 +) +(1,14504:6630773,22592654:25952256,513147,126483 +k1,14503:8938895,22592654:298133 +k1,14503:10256113,22592654:298133 +k1,14503:13271369,22592654:298133 +k1,14503:16974753,22592654:298133 +k1,14503:19085612,22592654:298133 +k1,14503:23652105,22592654:298133 +k1,14503:25663905,22592654:298034 +k1,14503:28280046,22592654:298133 +k1,14503:29569739,22592654:298133 +k1,14503:31469572,22592654:298133 +k1,14504:32583029,22592654:0 +) +(1,14504:6630773,23457734:25952256,513147,134348 +k1,14503:9240810,23457734:205521 +k1,14503:10959557,23457734:205521 +k1,14503:12559028,23457734:205520 +k1,14503:14153912,23457734:205521 +k1,14503:15927054,23457734:205521 +k1,14503:20071944,23457734:205521 +k1,14503:21468910,23457734:205521 +k1,14503:24103850,23457734:205520 +k1,14503:26044764,23457734:205521 +k1,14503:29990425,23457734:205521 +k1,14503:32583029,23457734:0 +) +(1,14504:6630773,24322814:25952256,505283,134348 +k1,14503:7519878,24322814:202943 +k1,14503:11924334,24322814:202943 +k1,14503:12743316,24322814:202944 +k1,14503:15856713,24322814:202943 +k1,14503:17979860,24322814:202943 +k1,14503:19374248,24322814:202943 +k1,14503:21679585,24322814:202943 +k1,14503:23756858,24322814:202943 +k1,14503:25132241,24322814:202944 +k1,14503:28245638,24322814:202943 +k1,14503:29541066,24322814:202943 +k1,14503:31252648,24322814:202943 +k1,14503:32583029,24322814:0 +) +(1,14504:6630773,25187894:25952256,513147,134348 +k1,14503:10319532,25187894:286130 +k1,14503:11257090,25187894:286130 +k1,14503:12562305,25187894:286130 +k1,14503:14836142,25187894:286130 +k1,14503:17665725,25187894:286131 +k1,14503:20035900,25187894:286130 +k1,14503:20973458,25187894:286130 +k1,14503:23928869,25187894:286130 +k1,14503:26554634,25187894:286130 +k1,14503:28032209,25187894:286130 +k1,14503:32583029,25187894:0 +) +(1,14504:6630773,26052974:25952256,513147,126483 +k1,14503:8429409,26052974:234947 +k1,14503:9855800,26052974:234946 +k1,14503:12585047,26052974:234947 +k1,14503:15094748,26052974:234946 +k1,14503:18022569,26052974:234947 +k1,14503:20575523,26052974:234946 +k1,14503:22285685,26052974:234947 +k1,14503:25233166,26052974:234946 +k1,14503:27170083,26052974:234947 +k1,14503:30981329,26052974:234946 +k1,14503:32583029,26052974:0 +) +(1,14504:6630773,26918054:25952256,513147,134348 +k1,14503:7469197,26918054:179132 +k1,14503:9287383,26918054:179131 +k1,14503:11863822,26918054:179132 +k1,14503:12694382,26918054:179132 +k1,14503:16066428,26918054:179132 +k1,14503:19329684,26918054:179132 +k1,14503:21383145,26918054:179131 +k1,14503:24964906,26918054:179132 +k1,14503:26174919,26918054:179132 +k1,14503:28719900,26918054:179131 +k1,14503:29918117,26918054:179132 +k1,14503:31923737,26918054:179132 +k1,14503:32583029,26918054:0 +) +(1,14504:6630773,27783134:25952256,505283,7863 +g1,14503:8033243,27783134 +k1,14504:32583029,27783134:22794076 +g1,14504:32583029,27783134 +) +v1,14506:6630773,28648214:0,393216,0 +(1,14532:6630773,43553741:25952256,15298743,0 +g1,14532:6630773,43553741 +g1,14532:6237557,43553741 +r1,14537:6368629,43553741:131072,15298743,0 +g1,14532:6567858,43553741 +g1,14532:6764466,43553741 +[1,14532:6764466,43553741:25818563,15298743,0 +(1,14507:6764466,29009391:25818563,754393,260573 +(1,14506:6764466,29009391:0,754393,260573 +r1,14537:8010564,29009391:1246098,1014966,260573 +k1,14506:6764466,29009391:-1246098 +) +(1,14506:6764466,29009391:1246098,754393,260573 +) +k1,14506:8197376,29009391:186812 +k1,14506:8525056,29009391:327680 +k1,14506:9126698,29009391:186799 +k1,14506:10445971,29009391:186811 +k1,14506:12680783,29009391:186812 +k1,14506:13999401,29009391:186811 +k1,14506:18157695,29009391:186812 +k1,14506:20587148,29009391:186811 +k1,14506:22761667,29009391:186812 +k1,14506:25665601,29009391:186811 +k1,14506:27319109,29009391:186812 +k1,14506:29203958,29009391:186811 +k1,14506:30409855,29009391:186812 +k1,14506:32583029,29009391:0 +) +(1,14507:6764466,29874471:25818563,513147,126483 +k1,14506:7692062,29874471:268304 +k1,14506:8979452,29874471:268305 +k1,14506:9935229,29874471:268304 +k1,14506:11195093,29874471:268304 +k1,14506:12529669,29874471:268305 +k1,14506:17102378,29874471:268304 +k1,14506:17840575,29874471:268304 +k1,14506:18640377,29874471:268305 +k1,14506:19894342,29874471:268304 +k1,14506:24312386,29874471:268304 +k1,14506:25196729,29874471:268305 +k1,14506:26450694,29874471:268304 +k1,14506:28067729,29874471:268304 +k1,14506:28935688,29874471:268305 +k1,14506:31305732,29874471:268304 +k1,14506:32583029,29874471:0 +) +(1,14507:6764466,30739551:25818563,513147,134348 +k1,14506:9169637,30739551:203817 +k1,14506:10419409,30739551:203817 +k1,14506:14415794,30739551:203817 +k1,14506:15816298,30739551:203817 +k1,14506:17621815,30739551:203817 +k1,14506:20776717,30739551:203816 +k1,14506:22171979,30739551:203817 +k1,14506:25890492,30739551:203817 +k1,14506:28598440,30739551:203817 +k1,14506:29333754,30739551:203817 +k1,14506:32583029,30739551:0 +) +(1,14507:6764466,31604631:25818563,513147,134348 +g1,14506:7911346,31604631 +g1,14506:10766749,31604631 +g1,14506:15079017,31604631 +g1,14506:17596254,31604631 +g1,14506:19079989,31604631 +g1,14506:20270778,31604631 +g1,14506:22942025,31604631 +g1,14506:26849936,31604631 +k1,14507:32583029,31604631:3716550 +g1,14507:32583029,31604631 +) +(1,14509:6764466,32469711:25818563,513147,134348 +h1,14508:6764466,32469711:983040,0,0 +k1,14508:10028713,32469711:216823 +k1,14508:12563545,32469711:216824 +k1,14508:13926593,32469711:216823 +k1,14508:15887330,32469711:216824 +k1,14508:17972584,32469711:216823 +k1,14508:18840835,32469711:216823 +k1,14508:20447022,32469711:216824 +k1,14508:22231466,32469711:216823 +k1,14508:23218992,32469711:216823 +k1,14508:27044884,32469711:216824 +k1,14508:29116376,32469711:216823 +k1,14508:30142570,32469711:216824 +k1,14508:30715253,32469711:216823 +k1,14509:32583029,32469711:0 +) +(1,14509:6764466,33334791:25818563,513147,134348 +k1,14508:8215051,33334791:212610 +k1,14508:11083835,33334791:212610 +k1,14508:13385076,33334791:212609 +k1,14508:15778069,33334791:212610 +k1,14508:16738445,33334791:212610 +k1,14508:19622302,33334791:212610 +k1,14508:20462746,33334791:212609 +k1,14508:22142052,33334791:212610 +k1,14508:24052044,33334791:212610 +k1,14508:26677690,33334791:212610 +k1,14508:28733171,33334791:212609 +k1,14508:29937341,33334791:212610 +k1,14508:32583029,33334791:0 +) +(1,14509:6764466,34199871:25818563,505283,134348 +k1,14508:8747389,34199871:293405 +k1,14508:13033902,34199871:293404 +k1,14508:17537340,34199871:293405 +k1,14508:19115250,34199871:293404 +k1,14508:21746324,34199871:293405 +k1,14508:23058814,34199871:293405 +k1,14508:25824236,34199871:293404 +k1,14508:27630212,34199871:293405 +k1,14508:28915176,34199871:293404 +k1,14508:31966991,34199871:293405 +k1,14508:32583029,34199871:0 +) +(1,14509:6764466,35064951:25818563,513147,134348 +k1,14508:8021010,35064951:237459 +k1,14508:10419846,35064951:237459 +k1,14508:12175773,35064951:237458 +k1,14508:14731240,35064951:237459 +k1,14508:15960259,35064951:237459 +k1,14508:17263989,35064951:237459 +k1,14508:21805852,35064951:237458 +k1,14508:22729473,35064951:237459 +k1,14508:23986017,35064951:237459 +k1,14508:27049388,35064951:237459 +k1,14508:28854467,35064951:237458 +k1,14508:30111011,35064951:237459 +k1,14508:32583029,35064951:0 +) +(1,14509:6764466,35930031:25818563,505283,134348 +k1,14508:9191854,35930031:170328 +k1,14508:10875408,35930031:170328 +k1,14508:12783751,35930031:170328 +k1,14508:16595259,35930031:170328 +k1,14508:18775575,35930031:170327 +k1,14508:19964988,35930031:170328 +k1,14508:23353134,35930031:170328 +k1,14508:25540005,35930031:170328 +k1,14508:28849508,35930031:170328 +k1,14508:30528475,35930031:170328 +k1,14509:32583029,35930031:0 +) +(1,14509:6764466,36795111:25818563,513147,134348 +g1,14508:7982780,36795111 +g1,14508:11919527,36795111 +g1,14508:13310201,36795111 +g1,14508:16790162,36795111 +k1,14509:32583029,36795111:12573083 +g1,14509:32583029,36795111 +) +v1,14511:6764466,37479966:0,393216,0 +(1,14516:6764466,38427883:25818563,1341133,196608 +g1,14516:6764466,38427883 +g1,14516:6764466,38427883 +g1,14516:6567858,38427883 +(1,14516:6567858,38427883:0,1341133,196608 +r1,14537:32779637,38427883:26211779,1537741,196608 +k1,14516:6567857,38427883:-26211780 +) +(1,14516:6567858,38427883:26211779,1341133,196608 +[1,14516:6764466,38427883:25818563,1144525,0 +(1,14513:6764466,37636782:25818563,353424,106246 +(1,14512:6764466,37636782:0,0,0 +g1,14512:6764466,37636782 +g1,14512:6764466,37636782 +g1,14512:6436786,37636782 +(1,14512:6436786,37636782:0,0,0 +) +g1,14512:6764466,37636782 +) +g1,14513:7428374,37636782 +g1,14513:8092282,37636782 +g1,14513:8756190,37636782 +g1,14513:9420098,37636782 +g1,14513:10084006,37636782 +g1,14513:10747914,37636782 +g1,14513:12075730,37636782 +g1,14513:12739638,37636782 +g1,14513:14067454,37636782 +g1,14513:14731362,37636782 +h1,14513:15727224,37636782:0,0,0 +k1,14513:32583028,37636782:16855804 +g1,14513:32583028,37636782 +) +(1,14514:6764466,38321637:25818563,353424,106246 +h1,14514:6764466,38321637:0,0,0 +g1,14514:7428374,38321637 +g1,14514:8092282,38321637 +g1,14514:8756190,38321637 +g1,14514:9420098,38321637 +g1,14514:10084006,38321637 +g1,14514:10747914,38321637 +g1,14514:11411822,38321637 +g1,14514:12075730,38321637 +g1,14514:13403546,38321637 +g1,14514:14067454,38321637 +g1,14514:15395270,38321637 +g1,14514:16059178,38321637 +h1,14514:17718948,38321637:0,0,0 +k1,14514:32583029,38321637:14864081 +g1,14514:32583029,38321637 +) +] +) +g1,14516:32583029,38427883 +g1,14516:6764466,38427883 +g1,14516:6764466,38427883 +g1,14516:32583029,38427883 +g1,14516:32583029,38427883 +) +h1,14516:6764466,38624491:0,0,0 +(1,14520:6764466,39489571:25818563,513147,126483 +h1,14519:6764466,39489571:983040,0,0 +k1,14519:8526225,39489571:150884 +k1,14519:11308380,39489571:150884 +k1,14519:12110692,39489571:150884 +k1,14519:14005488,39489571:150883 +k1,14519:16185367,39489571:150884 +k1,14519:17355336,39489571:150884 +k1,14519:19824228,39489571:150884 +k1,14519:21843543,39489571:150884 +k1,14519:22985987,39489571:150884 +k1,14519:27441275,39489571:150883 +k1,14519:29058855,39489571:150884 +k1,14519:29675700,39489571:150884 +k1,14519:30892855,39489571:150884 +k1,14519:32583029,39489571:0 +) +(1,14520:6764466,40354651:25818563,505283,134348 +g1,14519:9281703,40354651 +g1,14519:10754297,40354651 +g1,14519:13934103,40354651 +g1,14519:14899448,40354651 +g1,14519:17728637,40354651 +k1,14520:32583029,40354651:10677783 +g1,14520:32583029,40354651 +) +v1,14522:6764466,41039506:0,393216,0 +(1,14529:6764466,43357133:25818563,2710843,196608 +g1,14529:6764466,43357133 +g1,14529:6764466,43357133 +g1,14529:6567858,43357133 +(1,14529:6567858,43357133:0,2710843,196608 +r1,14537:32779637,43357133:26211779,2907451,196608 +k1,14529:6567857,43357133:-26211780 +) +(1,14529:6567858,43357133:26211779,2710843,196608 +[1,14529:6764466,43357133:25818563,2514235,0 +(1,14524:6764466,41196322:25818563,353424,106246 +(1,14523:6764466,41196322:0,0,0 +g1,14523:6764466,41196322 +g1,14523:6764466,41196322 +g1,14523:6436786,41196322 +(1,14523:6436786,41196322:0,0,0 +) +g1,14523:6764466,41196322 +) +g1,14524:7428374,41196322 +g1,14524:8092282,41196322 +g1,14524:8756190,41196322 +g1,14524:9420098,41196322 +g1,14524:10084006,41196322 +g1,14524:10747914,41196322 +g1,14524:11411822,41196322 +g1,14524:12075730,41196322 +g1,14524:13403546,41196322 +g1,14524:14067454,41196322 +g1,14524:15395270,41196322 +g1,14524:16059178,41196322 +h1,14524:17055040,41196322:0,0,0 +k1,14524:32583029,41196322:15527989 +g1,14524:32583029,41196322 +) +(1,14525:6764466,41881177:25818563,424439,106246 +h1,14525:6764466,41881177:0,0,0 +g1,14525:7428374,41881177 +g1,14525:8092282,41881177 +g1,14525:9088144,41881177 +g1,14525:9752052,41881177 +g1,14525:10415960,41881177 +g1,14525:11079868,41881177 +h1,14525:12407684,41881177:0,0,0 +k1,14525:32583028,41881177:20175344 +g1,14525:32583028,41881177 +) +(1,14526:6764466,42566032:25818563,353424,106246 +h1,14526:6764466,42566032:0,0,0 +g1,14526:7428374,42566032 +g1,14526:8092282,42566032 +g1,14526:8756190,42566032 +g1,14526:9420098,42566032 +g1,14526:10084006,42566032 +g1,14526:10747914,42566032 +g1,14526:11411822,42566032 +g1,14526:12075730,42566032 +h1,14526:13071592,42566032:0,0,0 +k1,14526:32583028,42566032:19511436 +g1,14526:32583028,42566032 +) +(1,14527:6764466,43250887:25818563,353424,106246 +h1,14527:6764466,43250887:0,0,0 +g1,14527:7428374,43250887 +g1,14527:8092282,43250887 +g1,14527:8756190,43250887 +g1,14527:9420098,43250887 +g1,14527:10084006,43250887 +g1,14527:10747914,43250887 +h1,14527:11079868,43250887:0,0,0 +k1,14527:32583028,43250887:21503160 +g1,14527:32583028,43250887 +) +] +) +g1,14529:32583029,43357133 +g1,14529:6764466,43357133 +g1,14529:6764466,43357133 +g1,14529:32583029,43357133 +g1,14529:32583029,43357133 +) +h1,14529:6764466,43553741:0,0,0 +] +g1,14532:32583029,43553741 +) +h1,14532:6630773,43553741:0,0,0 +(1,14535:6630773,44418821:25952256,505283,134348 +h1,14534:6630773,44418821:983040,0,0 +k1,14534:8727510,44418821:295808 +k1,14534:10463145,44418821:295809 +k1,14534:11374991,44418821:295808 +k1,14534:14088423,44418821:295809 +h1,14534:14486882,44418821:0,0,0 +k1,14534:14956360,44418821:295808 +k1,14534:17414857,44418821:295809 +k1,14534:21073973,44418821:295808 +k1,14534:21985819,44418821:295808 +k1,14534:23300713,44418821:295809 +k1,14534:24011267,44418821:295711 +k1,14534:27149372,44418821:295809 +k1,14534:27976677,44418821:295808 +k1,14534:29043189,44418821:295809 +k1,14534:31298523,44418821:295808 +k1,14534:32583029,44418821:0 +) +] +(1,14537:32583029,45706769:0,0,0 +g1,14537:32583029,45706769 +) +) +] +(1,14537:6630773,47279633:25952256,0,0 +h1,14537:6630773,47279633:25952256,0,0 +) +] +(1,14537:4262630,4025873:0,0,0 +[1,14537:-473656,4025873:0,0,0 +(1,14537:-473656,-710413:0,0,0 +(1,14537:-473656,-710413:0,0,0 +g1,14537:-473656,-710413 +) +g1,14537:-473656,-710413 +) +] +) +] +!27629 +}233 +Input:2195:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2196:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2197:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2198:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2199:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2200:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2201:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2202:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2203:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -256296,13751 +248865,16426 @@ Input:2205:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConso Input:2206:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2207:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2208:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2209:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2210:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2211:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2212:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2213:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1234 -{252 -[1,14984:4262630,47279633:28320399,43253760,0 -(1,14984:4262630,4025873:0,0,0 -[1,14984:-473656,4025873:0,0,0 -(1,14984:-473656,-710413:0,0,0 -(1,14984:-473656,-644877:0,0,0 -k1,14984:-473656,-644877:-65536 +!1328 +{234 +[1,14796:4262630,47279633:28320399,43253760,0 +(1,14796:4262630,4025873:0,0,0 +[1,14796:-473656,4025873:0,0,0 +(1,14796:-473656,-710413:0,0,0 +(1,14796:-473656,-644877:0,0,0 +k1,14796:-473656,-644877:-65536 ) -(1,14984:-473656,4736287:0,0,0 -k1,14984:-473656,4736287:5209943 +(1,14796:-473656,4736287:0,0,0 +k1,14796:-473656,4736287:5209943 ) -g1,14984:-473656,-710413 +g1,14796:-473656,-710413 ) ] ) -[1,14984:6630773,47279633:25952256,43253760,0 -[1,14984:6630773,4812305:25952256,786432,0 -(1,14984:6630773,4812305:25952256,505283,11795 -(1,14984:6630773,4812305:25952256,505283,11795 -g1,14984:3078558,4812305 -[1,14984:3078558,4812305:0,0,0 -(1,14984:3078558,2439708:0,1703936,0 -k1,14984:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,14984:2537886,2439708:1179648,16384,0 +[1,14796:6630773,47279633:25952256,43253760,0 +[1,14796:6630773,4812305:25952256,786432,0 +(1,14796:6630773,4812305:25952256,513147,126483 +(1,14796:6630773,4812305:25952256,513147,126483 +g1,14796:3078558,4812305 +[1,14796:3078558,4812305:0,0,0 +(1,14796:3078558,2439708:0,1703936,0 +k1,14796:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,14796:2537886,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,14984:3078558,1915420:16384,1179648,0 +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,14796:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] ) ) ) ] -[1,14984:3078558,4812305:0,0,0 -(1,14984:3078558,2439708:0,1703936,0 -g1,14984:29030814,2439708 -g1,14984:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,14984:36151628,1915420:16384,1179648,0 +[1,14796:3078558,4812305:0,0,0 +(1,14796:3078558,2439708:0,1703936,0 +g1,14796:29030814,2439708 +g1,14796:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,14796:36151628,1915420:16384,1179648,0 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,14984:37855564,2439708:1179648,16384,0 +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,14796:37855564,2439708:1179648,16384,0 ) ) -k1,14984:3078556,2439708:-34777008 +k1,14796:3078556,2439708:-34777008 ) ] -[1,14984:3078558,4812305:0,0,0 -(1,14984:3078558,49800853:0,16384,2228224 -k1,14984:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,14984:2537886,49800853:1179648,16384,0 +[1,14796:3078558,4812305:0,0,0 +(1,14796:3078558,49800853:0,16384,2228224 +k1,14796:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,14796:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,14984:3078558,51504789:16384,1179648,0 +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,14796:3078558,51504789:16384,1179648,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 ) ] ) ) ) ] -[1,14984:3078558,4812305:0,0,0 -(1,14984:3078558,49800853:0,16384,2228224 -g1,14984:29030814,49800853 -g1,14984:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,14984:36151628,51504789:16384,1179648,0 -) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 -) -] -) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,14984:37855564,49800853:1179648,16384,0 -) -) -k1,14984:3078556,49800853:-34777008 -) -] -g1,14984:6630773,4812305 -g1,14984:6630773,4812305 -g1,14984:10653372,4812305 -g1,14984:13512052,4812305 -k1,14984:31387652,4812305:17875600 -) -) -] -[1,14984:6630773,45706769:25952256,40108032,0 -(1,14984:6630773,45706769:25952256,40108032,0 -(1,14984:6630773,45706769:0,0,0 -g1,14984:6630773,45706769 -) -[1,14984:6630773,45706769:25952256,40108032,0 -v1,14929:6630773,6254097:0,393216,0 -(1,14929:6630773,15891159:25952256,10030278,196608 -g1,14929:6630773,15891159 -g1,14929:6630773,15891159 -g1,14929:6434165,15891159 -(1,14929:6434165,15891159:0,10030278,196608 -r1,14984:32779637,15891159:26345472,10226886,196608 -k1,14929:6434165,15891159:-26345472 -) -(1,14929:6434165,15891159:26345472,10030278,196608 -[1,14929:6630773,15891159:25952256,9833670,0 -(1,14918:6630773,6468007:25952256,410518,101187 -(1,14909:6630773,6468007:0,0,0 -g1,14909:6630773,6468007 -g1,14909:6630773,6468007 -g1,14909:6303093,6468007 -(1,14909:6303093,6468007:0,0,0 -) -g1,14909:6630773,6468007 -) -g1,14918:7579210,6468007 -g1,14918:10424521,6468007 -g1,14918:11372958,6468007 -g1,14918:14218269,6468007 -h1,14918:15798997,6468007:0,0,0 -k1,14918:32583029,6468007:16784032 -g1,14918:32583029,6468007 -) -(1,14918:6630773,7134185:25952256,379060,0 -h1,14918:6630773,7134185:0,0,0 -h1,14918:7263064,7134185:0,0,0 -k1,14918:32583028,7134185:25319964 -g1,14918:32583028,7134185 -) -(1,14918:6630773,7800363:25952256,410518,101187 -h1,14918:6630773,7800363:0,0,0 -g1,14918:7579210,7800363 -g1,14918:7895356,7800363 -g1,14918:8211502,7800363 -g1,14918:8527648,7800363 -g1,14918:8843794,7800363 -g1,14918:9159940,7800363 -g1,14918:9476086,7800363 -g1,14918:9792232,7800363 -g1,14918:10108378,7800363 -g1,14918:10424524,7800363 -g1,14918:10740670,7800363 -g1,14918:11056816,7800363 -g1,14918:11372962,7800363 -g1,14918:11689108,7800363 -g1,14918:12637545,7800363 -g1,14918:12953691,7800363 -g1,14918:15166711,7800363 -g1,14918:17379731,7800363 -g1,14918:18012023,7800363 -g1,14918:19276606,7800363 -g1,14918:20225043,7800363 -g1,14918:21489626,7800363 -g1,14918:22438063,7800363 -g1,14918:22754209,7800363 -g1,14918:23070355,7800363 -g1,14918:23386501,7800363 -k1,14918:23386501,7800363:0 -h1,14918:25283375,7800363:0,0,0 -k1,14918:32583029,7800363:7299654 -g1,14918:32583029,7800363 -) -(1,14918:6630773,8466541:25952256,404226,101187 -h1,14918:6630773,8466541:0,0,0 -g1,14918:7579210,8466541 -g1,14918:11372958,8466541 -g1,14918:11689104,8466541 -g1,14918:12005250,8466541 -g1,14918:12637542,8466541 -g1,14918:15166708,8466541 -g1,14918:15482854,8466541 -g1,14918:15799000,8466541 -g1,14918:18012020,8466541 -g1,14918:18328166,8466541 -g1,14918:18644312,8466541 -g1,14918:18960458,8466541 -g1,14918:19276604,8466541 -g1,14918:19592750,8466541 -g1,14918:20225042,8466541 -g1,14918:20541188,8466541 -g1,14918:20857334,8466541 -g1,14918:21173480,8466541 -g1,14918:22438063,8466541 -g1,14918:23070355,8466541 -g1,14918:25599521,8466541 -h1,14918:26547958,8466541:0,0,0 -k1,14918:32583029,8466541:6035071 -g1,14918:32583029,8466541 -) -(1,14918:6630773,9132719:25952256,404226,101187 -h1,14918:6630773,9132719:0,0,0 -g1,14918:7579210,9132719 -g1,14918:10108376,9132719 -g1,14918:10424522,9132719 -g1,14918:10740668,9132719 -g1,14918:11056814,9132719 -g1,14918:11372960,9132719 -g1,14918:11689106,9132719 -g1,14918:12005252,9132719 -g1,14918:12637544,9132719 -g1,14918:15166710,9132719 -g1,14918:15482856,9132719 -g1,14918:15799002,9132719 -g1,14918:16115148,9132719 -g1,14918:16431294,9132719 -g1,14918:18012023,9132719 -g1,14918:18328169,9132719 -g1,14918:18644315,9132719 -g1,14918:18960461,9132719 -g1,14918:19276607,9132719 -g1,14918:19592753,9132719 -g1,14918:20225045,9132719 -g1,14918:20541191,9132719 -g1,14918:20857337,9132719 -g1,14918:21173483,9132719 -g1,14918:22438066,9132719 -g1,14918:23070358,9132719 -g1,14918:25599524,9132719 -h1,14918:26547961,9132719:0,0,0 -k1,14918:32583029,9132719:6035068 -g1,14918:32583029,9132719 -) -(1,14918:6630773,9798897:25952256,404226,6290 -h1,14918:6630773,9798897:0,0,0 -g1,14918:7579210,9798897 -g1,14918:10740667,9798897 -g1,14918:11056813,9798897 -g1,14918:11372959,9798897 -h1,14918:12321396,9798897:0,0,0 -k1,14918:32583028,9798897:20261632 -g1,14918:32583028,9798897 -) -(1,14918:6630773,10465075:25952256,379060,0 -h1,14918:6630773,10465075:0,0,0 -g1,14918:7579210,10465075 -k1,14918:7579210,10465075:0 -h1,14918:8527648,10465075:0,0,0 -k1,14918:32583028,10465075:24055380 -g1,14918:32583028,10465075 -) -(1,14918:6630773,11131253:25952256,410518,107478 -h1,14918:6630773,11131253:0,0,0 -g1,14918:7579210,11131253 -g1,14918:10108376,11131253 -g1,14918:12321396,11131253 -g1,14918:12637542,11131253 -g1,14918:13269834,11131253 -g1,14918:15166709,11131253 -g1,14918:17063583,11131253 -g1,14918:18644312,11131253 -g1,14918:20225041,11131253 -g1,14918:21489625,11131253 -g1,14918:23070354,11131253 -g1,14918:24334938,11131253 -g1,14918:25599521,11131253 -g1,14918:26231813,11131253 -g1,14918:26864105,11131253 -h1,14918:27180251,11131253:0,0,0 -k1,14918:32583029,11131253:5402778 -g1,14918:32583029,11131253 -) -(1,14920:6630773,12452791:25952256,410518,101187 -(1,14919:6630773,12452791:0,0,0 -g1,14919:6630773,12452791 -g1,14919:6630773,12452791 -g1,14919:6303093,12452791 -(1,14919:6303093,12452791:0,0,0 -) -g1,14919:6630773,12452791 -) -k1,14920:6630773,12452791:0 -h1,14920:10740667,12452791:0,0,0 -k1,14920:32583029,12452791:21842362 -g1,14920:32583029,12452791 -) -(1,14928:6630773,13118969:25952256,410518,101187 -(1,14922:6630773,13118969:0,0,0 -g1,14922:6630773,13118969 -g1,14922:6630773,13118969 -g1,14922:6303093,13118969 -(1,14922:6303093,13118969:0,0,0 -) -g1,14922:6630773,13118969 -) -g1,14928:7579210,13118969 -g1,14928:7895356,13118969 -g1,14928:8211502,13118969 -g1,14928:8527648,13118969 -g1,14928:8843794,13118969 -g1,14928:9159940,13118969 -g1,14928:9476086,13118969 -g1,14928:9792232,13118969 -g1,14928:10108378,13118969 -g1,14928:10424524,13118969 -g1,14928:10740670,13118969 -g1,14928:11056816,13118969 -g1,14928:12005253,13118969 -g1,14928:14218273,13118969 -g1,14928:16431293,13118969 -g1,14928:17063585,13118969 -g1,14928:18328168,13118969 -g1,14928:19276605,13118969 -g1,14928:20541188,13118969 -g1,14928:21489625,13118969 -g1,14928:21805771,13118969 -g1,14928:22121917,13118969 -g1,14928:22438063,13118969 -k1,14928:22438063,13118969:0 -h1,14928:24334937,13118969:0,0,0 -k1,14928:32583029,13118969:8248092 -g1,14928:32583029,13118969 -) -(1,14928:6630773,13785147:25952256,404226,101187 -h1,14928:6630773,13785147:0,0,0 -g1,14928:7579210,13785147 -g1,14928:10108376,13785147 -g1,14928:10424522,13785147 -g1,14928:10740668,13785147 -g1,14928:11056814,13785147 -g1,14928:11372960,13785147 -g1,14928:12005252,13785147 -g1,14928:14218272,13785147 -g1,14928:14534418,13785147 -g1,14928:14850564,13785147 -g1,14928:17063584,13785147 -g1,14928:17379730,13785147 -g1,14928:17695876,13785147 -g1,14928:18012022,13785147 -g1,14928:18328168,13785147 -g1,14928:18644314,13785147 -g1,14928:19276606,13785147 -g1,14928:19592752,13785147 -g1,14928:19908898,13785147 -g1,14928:20225044,13785147 -g1,14928:21489627,13785147 -g1,14928:22121919,13785147 -g1,14928:24651085,13785147 -h1,14928:25599522,13785147:0,0,0 -k1,14928:32583029,13785147:6983507 -g1,14928:32583029,13785147 -) -(1,14928:6630773,14451325:25952256,404226,6290 -h1,14928:6630773,14451325:0,0,0 -g1,14928:7579210,14451325 -g1,14928:10740667,14451325 -h1,14928:11689104,14451325:0,0,0 -k1,14928:32583028,14451325:20893924 -g1,14928:32583028,14451325 -) -(1,14928:6630773,15117503:25952256,379060,0 -h1,14928:6630773,15117503:0,0,0 -g1,14928:7579210,15117503 -k1,14928:7579210,15117503:0 -h1,14928:8527648,15117503:0,0,0 -k1,14928:32583028,15117503:24055380 -g1,14928:32583028,15117503 -) -(1,14928:6630773,15783681:25952256,410518,107478 -h1,14928:6630773,15783681:0,0,0 -g1,14928:7579210,15783681 -g1,14928:10108376,15783681 -g1,14928:12321396,15783681 -g1,14928:12637542,15783681 -g1,14928:13269834,15783681 -g1,14928:15166709,15783681 -g1,14928:17063583,15783681 -g1,14928:18644312,15783681 -g1,14928:20225041,15783681 -g1,14928:21489625,15783681 -g1,14928:23070354,15783681 -g1,14928:24334938,15783681 -g1,14928:25599521,15783681 -g1,14928:26231813,15783681 -g1,14928:26864105,15783681 -h1,14928:27180251,15783681:0,0,0 -k1,14928:32583029,15783681:5402778 -g1,14928:32583029,15783681 -) -] -) -g1,14929:32583029,15891159 -g1,14929:6630773,15891159 -g1,14929:6630773,15891159 -g1,14929:32583029,15891159 -g1,14929:32583029,15891159 -) -h1,14929:6630773,16087767:0,0,0 -v1,14933:6630773,17977831:0,393216,0 -(1,14935:6630773,20227693:25952256,2643078,0 -g1,14935:6630773,20227693 -g1,14935:6303093,20227693 -r1,14984:6401397,20227693:98304,2643078,0 -g1,14935:6600626,20227693 -g1,14935:6797234,20227693 -[1,14935:6797234,20227693:25785795,2643078,0 -(1,14935:6797234,18410369:25785795,825754,196608 -(1,14933:6797234,18410369:0,825754,196608 -r1,14984:8834093,18410369:2036859,1022362,196608 -k1,14933:6797234,18410369:-2036859 -) -(1,14933:6797234,18410369:2036859,825754,196608 -) -k1,14933:9032028,18410369:197935 -k1,14933:10758246,18410369:327680 -k1,14933:13162122,18410369:197934 -k1,14933:14379142,18410369:197935 -k1,14933:17238494,18410369:197935 -k1,14933:19291753,18410369:197935 -k1,14933:20141115,18410369:197934 -k1,14933:21431535,18410369:197935 -(1,14933:21431535,18410369:0,452978,115847 -r1,14984:23196648,18410369:1765113,568825,115847 -k1,14933:21431535,18410369:-1765113 -) -(1,14933:21431535,18410369:1765113,452978,115847 -k1,14933:21431535,18410369:3277 -h1,14933:23193371,18410369:0,411205,112570 -) -k1,14933:23394583,18410369:197935 -k1,14933:25919701,18410369:197935 -k1,14933:26784791,18410369:197934 -(1,14933:26784791,18410369:0,452978,115847 -r1,14984:29605040,18410369:2820249,568825,115847 -k1,14933:26784791,18410369:-2820249 -) -(1,14933:26784791,18410369:2820249,452978,115847 -k1,14933:26784791,18410369:3277 -h1,14933:29601763,18410369:0,411205,112570 -) -k1,14933:29802975,18410369:197935 -k1,14933:31192355,18410369:197935 -k1,14933:32583029,18410369:0 -) -(1,14935:6797234,19251857:25785795,505283,115847 -k1,14933:7972052,19251857:155733 -k1,14933:9970657,19251857:155733 -k1,14933:10777819,19251857:155734 -k1,14933:11289412,19251857:155733 -k1,14933:13956485,19251857:155733 -k1,14933:16270974,19251857:155733 -(1,14933:16270974,19251857:0,459977,115847 -r1,14984:17684375,19251857:1413401,575824,115847 -k1,14933:16270974,19251857:-1413401 -) -(1,14933:16270974,19251857:1413401,459977,115847 -k1,14933:16270974,19251857:3277 -h1,14933:17681098,19251857:0,411205,112570 -) -k1,14933:18013779,19251857:155734 -k1,14934:18013779,19251857:0 -k1,14934:19318358,19251857:155733 -(1,14934:19318358,19251857:0,452978,115847 -r1,14984:21786895,19251857:2468537,568825,115847 -k1,14934:19318358,19251857:-2468537 -) -(1,14934:19318358,19251857:2468537,452978,115847 -k1,14934:19318358,19251857:3277 -h1,14934:21783618,19251857:0,411205,112570 -) -k1,14934:22116298,19251857:155733 -(1,14934:22116298,19251857:0,452978,115847 -r1,14984:26343394,19251857:4227096,568825,115847 -k1,14934:22116298,19251857:-4227096 -) -(1,14934:22116298,19251857:4227096,452978,115847 -k1,14934:22116298,19251857:3277 -h1,14934:26340117,19251857:0,411205,112570 -) -k1,14934:26672797,19251857:155733 -(1,14934:26672797,19251857:0,452978,115847 -r1,14984:29141334,19251857:2468537,568825,115847 -k1,14934:26672797,19251857:-2468537 -) -(1,14934:26672797,19251857:2468537,452978,115847 -k1,14934:26672797,19251857:3277 -h1,14934:29138057,19251857:0,411205,112570 -) -k1,14934:29470738,19251857:155734 -(1,14934:29470738,19251857:0,452978,115847 -r1,14984:31235851,19251857:1765113,568825,115847 -k1,14934:29470738,19251857:-1765113 -) -(1,14934:29470738,19251857:1765113,452978,115847 -k1,14934:29470738,19251857:3277 -h1,14934:31232574,19251857:0,411205,112570 -) -k1,14934:31391584,19251857:155733 -k1,14934:32583029,19251857:0 -) -(1,14935:6797234,20093345:25785795,513147,134348 -k1,14934:10201500,20093345:189725 -k1,14934:11050516,20093345:189724 -k1,14934:14193949,20093345:189725 -k1,14934:15035102,20093345:189725 -k1,14934:17593298,20093345:189725 -k1,14934:20072851,20093345:189725 -(1,14934:20072851,20093345:0,459977,115847 -r1,14984:21486252,20093345:1413401,575824,115847 -k1,14934:20072851,20093345:-1413401 -) -(1,14934:20072851,20093345:1413401,459977,115847 -k1,14934:20072851,20093345:3277 -h1,14934:21482975,20093345:0,411205,112570 -) -k1,14934:21849646,20093345:189724 -(1,14934:21849646,20093345:0,459977,115847 -r1,14984:23263047,20093345:1413401,575824,115847 -k1,14934:21849646,20093345:-1413401 -) -(1,14934:21849646,20093345:1413401,459977,115847 -k1,14934:21849646,20093345:3277 -h1,14934:23259770,20093345:0,411205,112570 -) -k1,14934:23452772,20093345:189725 -k1,14934:24833942,20093345:189725 -(1,14934:24833942,20093345:0,459977,115847 -r1,14984:26247343,20093345:1413401,575824,115847 -k1,14934:24833942,20093345:-1413401 -) -(1,14934:24833942,20093345:1413401,459977,115847 -k1,14934:24833942,20093345:3277 -h1,14934:26244066,20093345:0,411205,112570 -) -k1,14934:26610737,20093345:189724 -k1,14934:27923749,20093345:189725 -k1,14934:29493662,20093345:189725 -k1,14935:32583029,20093345:0 -k1,14935:32583029,20093345:0 -) -] -g1,14935:32583029,20227693 -) -h1,14935:6630773,20227693:0,0,0 -(1,14939:6630773,22843241:25952256,555811,139132 -(1,14939:6630773,22843241:2899444,534184,12975 -g1,14939:6630773,22843241 -g1,14939:9530217,22843241 -) -g1,14939:12966008,22843241 -g1,14939:17643903,22843241 -k1,14939:32583029,22843241:11970476 -g1,14939:32583029,22843241 -) -(1,14943:6630773,24077945:25952256,513147,134348 -k1,14942:9664219,24077945:237025 -k1,14942:13828817,24077945:237025 -k1,14942:16620435,24077945:237025 -k1,14942:18590194,24077945:236987 -k1,14942:19358716,24077945:237025 -k1,14942:21108968,24077945:237026 -k1,14942:21997421,24077945:237025 -k1,14942:24838847,24077945:237025 -k1,14942:25431732,24077945:237025 -k1,14942:27058120,24077945:237025 -k1,14942:28229688,24077945:237025 -k1,14942:29228241,24077945:237025 -k1,14942:32583029,24077945:0 -) -(1,14943:6630773,24919433:25952256,505283,126483 -k1,14942:9664971,24919433:192557 -k1,14942:11251478,24919433:192556 -k1,14942:13646045,24919433:192557 -k1,14942:15030046,24919433:192556 -k1,14942:17903681,24919433:192557 -k1,14942:20855958,24919433:192556 -k1,14942:22315981,24919433:192557 -k1,14942:25350178,24919433:192556 -k1,14942:29643978,24919433:192557 -k1,14942:30581023,24919433:192556 -k1,14942:31129440,24919433:192557 -k1,14942:32583029,24919433:0 -) -(1,14943:6630773,25760921:25952256,513147,134348 -k1,14942:8623832,25760921:154774 -k1,14942:9646958,25760921:154774 -k1,14942:13106713,25760921:154774 -k1,14942:14167850,25760921:154774 -k1,14942:14974052,25760921:154774 -k1,14942:17950806,25760921:154774 -k1,14942:19802308,25760921:154775 -k1,14942:23884655,25760921:154774 -k1,14942:24655467,25760921:154774 -k1,14942:27274395,25760921:154774 -k1,14942:28080597,25760921:154774 -k1,14942:30373155,25760921:154774 -k1,14942:32583029,25760921:0 -) -(1,14943:6630773,26602409:25952256,513147,126483 -k1,14942:9590644,26602409:140512 -k1,14942:13738027,26602409:140512 -k1,14942:16893850,26602409:140512 -k1,14942:18466979,26602409:140512 -k1,14942:19526307,26602409:140513 -k1,14942:22362315,26602409:140512 -(1,14942:22362315,26602409:0,452978,115847 -r1,14984:25182564,26602409:2820249,568825,115847 -k1,14942:22362315,26602409:-2820249 -) -(1,14942:22362315,26602409:2820249,452978,115847 -k1,14942:22362315,26602409:3277 -h1,14942:25179287,26602409:0,411205,112570 -) -k1,14942:25323076,26602409:140512 -k1,14942:28581791,26602409:140512 -k1,14942:29741388,26602409:140512 -k1,14942:32583029,26602409:0 -) -(1,14943:6630773,27443897:25952256,513147,134348 -g1,14942:10757575,27443897 -g1,14942:12148249,27443897 -g1,14942:14725780,27443897 -g1,14942:18152002,27443897 -g1,14942:21753860,27443897 -g1,14942:22900740,27443897 -g1,14942:26078580,27443897 -g1,14942:27469254,27443897 -k1,14943:32583029,27443897:2724988 -g1,14943:32583029,27443897 -) -v1,14945:6630773,28634363:0,393216,0 -(1,14952:6630773,30916536:25952256,2675389,196608 -g1,14952:6630773,30916536 -g1,14952:6630773,30916536 -g1,14952:6434165,30916536 -(1,14952:6434165,30916536:0,2675389,196608 -r1,14984:32779637,30916536:26345472,2871997,196608 -k1,14952:6434165,30916536:-26345472 -) -(1,14952:6434165,30916536:26345472,2675389,196608 -[1,14952:6630773,30916536:25952256,2478781,0 -(1,14947:6630773,28841981:25952256,404226,107478 -(1,14946:6630773,28841981:0,0,0 -g1,14946:6630773,28841981 -g1,14946:6630773,28841981 -g1,14946:6303093,28841981 -(1,14946:6303093,28841981:0,0,0 -) -g1,14946:6630773,28841981 -) -g1,14947:7579210,28841981 -g1,14947:8527648,28841981 -g1,14947:18012020,28841981 -k1,14947:18012020,28841981:0 -h1,14947:22438060,28841981:0,0,0 -k1,14947:32583029,28841981:10144969 -g1,14947:32583029,28841981 -) -(1,14948:6630773,29508159:25952256,404226,107478 -h1,14948:6630773,29508159:0,0,0 -g1,14948:6946919,29508159 -g1,14948:7263065,29508159 -g1,14948:7579211,29508159 -g1,14948:7895357,29508159 -g1,14948:8211503,29508159 -g1,14948:8527649,29508159 -g1,14948:8843795,29508159 -g1,14948:9159941,29508159 -g1,14948:9476087,29508159 -g1,14948:9792233,29508159 -g1,14948:10108379,29508159 -g1,14948:10424525,29508159 -g1,14948:10740671,29508159 -g1,14948:11056817,29508159 -g1,14948:11372963,29508159 -g1,14948:11689109,29508159 -g1,14948:12005255,29508159 -g1,14948:12321401,29508159 -g1,14948:12637547,29508159 -g1,14948:12953693,29508159 -g1,14948:18012025,29508159 -k1,14948:18012025,29508159:0 -h1,14948:23070356,29508159:0,0,0 -k1,14948:32583029,29508159:9512673 -g1,14948:32583029,29508159 -) -(1,14949:6630773,30174337:25952256,369623,82312 -h1,14949:6630773,30174337:0,0,0 -g1,14949:6946919,30174337 -g1,14949:7263065,30174337 -g1,14949:7579211,30174337 -g1,14949:7895357,30174337 -g1,14949:8211503,30174337 -g1,14949:8527649,30174337 -g1,14949:8843795,30174337 -g1,14949:9159941,30174337 -g1,14949:9476087,30174337 -g1,14949:9792233,30174337 -g1,14949:10108379,30174337 -g1,14949:10424525,30174337 -g1,14949:10740671,30174337 -g1,14949:12953691,30174337 -g1,14949:13585983,30174337 -k1,14949:13585983,30174337:0 -h1,14949:15166712,30174337:0,0,0 -k1,14949:32583028,30174337:17416316 -g1,14949:32583028,30174337 -) -(1,14950:6630773,30840515:25952256,404226,76021 -h1,14950:6630773,30840515:0,0,0 -g1,14950:6946919,30840515 -g1,14950:7263065,30840515 -g1,14950:7579211,30840515 -g1,14950:7895357,30840515 -g1,14950:8211503,30840515 -g1,14950:8527649,30840515 -g1,14950:8843795,30840515 -g1,14950:9159941,30840515 -g1,14950:9476087,30840515 -g1,14950:9792233,30840515 -g1,14950:10108379,30840515 -g1,14950:10424525,30840515 -g1,14950:10740671,30840515 -g1,14950:12637545,30840515 -g1,14950:13269837,30840515 -h1,14950:14850566,30840515:0,0,0 -k1,14950:32583030,30840515:17732464 -g1,14950:32583030,30840515 -) -] -) -g1,14952:32583029,30916536 -g1,14952:6630773,30916536 -g1,14952:6630773,30916536 -g1,14952:32583029,30916536 -g1,14952:32583029,30916536 -) -h1,14952:6630773,31113144:0,0,0 -(1,14957:6630773,32303610:25952256,513147,134348 -h1,14955:6630773,32303610:983040,0,0 -k1,14955:8581780,32303610:207749 -k1,14955:11361817,32303610:207749 -k1,14955:12588651,32303610:207749 -k1,14955:15575127,32303610:207749 -k1,14955:17742402,32303610:207749 -k1,14955:18818503,32303610:207749 -k1,14955:20130534,32303610:207749 -k1,14955:21363266,32303610:207749 -k1,14955:22590100,32303610:207749 -k1,14955:25494656,32303610:207749 -k1,14955:26361697,32303610:207749 -k1,14955:28021068,32303610:207749 -k1,14955:30740157,32303610:207749 -k1,14955:31563944,32303610:207749 -k1,14955:32583029,32303610:0 -) -(1,14957:6630773,32969788:25952256,505283,126483 -g1,14955:9671643,32969788 -g1,14955:13798445,32969788 -(1,14955:13798445,32969788:0,435480,115847 -r1,14984:14508423,32969788:709978,551327,115847 -k1,14955:13798445,32969788:-709978 -) -(1,14955:13798445,32969788:709978,435480,115847 -k1,14955:13798445,32969788:3277 -h1,14955:14505146,32969788:0,411205,112570 -) -g1,14955:14707652,32969788 -g1,14955:15558309,32969788 -(1,14955:15558309,32969788:0,424981,115847 -r1,14984:16268287,32969788:709978,540828,115847 -k1,14955:15558309,32969788:-709978 -) -(1,14955:15558309,32969788:709978,424981,115847 -k1,14955:15558309,32969788:3277 -h1,14955:16265010,32969788:0,411205,112570 -) -g1,14955:16641186,32969788 -k1,14957:32583029,32969788:15941843 -g1,14957:32583029,32969788 -) -v1,14957:6630773,34160254:0,393216,0 -(1,14978:6630773,42360626:25952256,8593588,196608 -g1,14978:6630773,42360626 -g1,14978:6630773,42360626 -g1,14978:6434165,42360626 -(1,14978:6434165,42360626:0,8593588,196608 -r1,14984:32779637,42360626:26345472,8790196,196608 -k1,14978:6434165,42360626:-26345472 -) -(1,14978:6434165,42360626:26345472,8593588,196608 -[1,14978:6630773,42360626:25952256,8396980,0 -(1,14959:6630773,34367872:25952256,404226,101187 -(1,14958:6630773,34367872:0,0,0 -g1,14958:6630773,34367872 -g1,14958:6630773,34367872 -g1,14958:6303093,34367872 -(1,14958:6303093,34367872:0,0,0 -) -g1,14958:6630773,34367872 -) -k1,14959:6630773,34367872:0 -h1,14959:9476084,34367872:0,0,0 -k1,14959:32583028,34367872:23106944 -g1,14959:32583028,34367872 -) -(1,14963:6630773,35034050:25952256,404226,101187 -(1,14961:6630773,35034050:0,0,0 -g1,14961:6630773,35034050 -g1,14961:6630773,35034050 -g1,14961:6303093,35034050 -(1,14961:6303093,35034050:0,0,0 -) -g1,14961:6630773,35034050 -) -g1,14963:7579210,35034050 -g1,14963:8843793,35034050 -h1,14963:11372958,35034050:0,0,0 -k1,14963:32583030,35034050:21210072 -g1,14963:32583030,35034050 -) -(1,14965:6630773,36355588:25952256,284164,101187 -(1,14964:6630773,36355588:0,0,0 -g1,14964:6630773,36355588 -g1,14964:6630773,36355588 -g1,14964:6303093,36355588 -(1,14964:6303093,36355588:0,0,0 -) -g1,14964:6630773,36355588 -) -h1,14965:7263064,36355588:0,0,0 -k1,14965:32583028,36355588:25319964 -g1,14965:32583028,36355588 -) -(1,14977:6630773,37021766:25952256,404226,101187 -(1,14967:6630773,37021766:0,0,0 -g1,14967:6630773,37021766 -g1,14967:6630773,37021766 -g1,14967:6303093,37021766 -(1,14967:6303093,37021766:0,0,0 -) -g1,14967:6630773,37021766 -) -g1,14977:7579210,37021766 -g1,14977:10424521,37021766 -g1,14977:13902124,37021766 -g1,14977:15166707,37021766 -g1,14977:16431290,37021766 -h1,14977:18012018,37021766:0,0,0 -k1,14977:32583029,37021766:14571011 -g1,14977:32583029,37021766 -) -(1,14977:6630773,37687944:25952256,404226,76021 -h1,14977:6630773,37687944:0,0,0 -g1,14977:7579210,37687944 -g1,14977:8843793,37687944 -g1,14977:12005250,37687944 -g1,14977:15166707,37687944 -g1,14977:18328164,37687944 -h1,14977:21173475,37687944:0,0,0 -k1,14977:32583029,37687944:11409554 -g1,14977:32583029,37687944 -) -(1,14977:6630773,38354122:25952256,379060,0 -h1,14977:6630773,38354122:0,0,0 -h1,14977:7263064,38354122:0,0,0 -k1,14977:32583028,38354122:25319964 -g1,14977:32583028,38354122 -) -(1,14977:6630773,39020300:25952256,404226,76021 -h1,14977:6630773,39020300:0,0,0 -g1,14977:7579210,39020300 -g1,14977:10424521,39020300 -g1,14977:11372958,39020300 -g1,14977:12005250,39020300 -g1,14977:12953687,39020300 -g1,14977:13585979,39020300 -g1,14977:14534416,39020300 -g1,14977:15166708,39020300 -h1,14977:16115145,39020300:0,0,0 -k1,14977:32583029,39020300:16467884 -g1,14977:32583029,39020300 -) -(1,14977:6630773,39686478:25952256,388497,9436 -h1,14977:6630773,39686478:0,0,0 -g1,14977:7579210,39686478 -g1,14977:7895356,39686478 -g1,14977:8211502,39686478 -g1,14977:8527648,39686478 -g1,14977:8843794,39686478 -g1,14977:9159940,39686478 -g1,14977:9476086,39686478 -g1,14977:9792232,39686478 -g1,14977:10108378,39686478 -g1,14977:10424524,39686478 -g1,14977:10740670,39686478 -g1,14977:11056816,39686478 -g1,14977:11372962,39686478 -g1,14977:11689108,39686478 -g1,14977:12005254,39686478 -g1,14977:12321400,39686478 -g1,14977:12637546,39686478 -g1,14977:12953692,39686478 -g1,14977:13269838,39686478 -g1,14977:13585984,39686478 -g1,14977:13902130,39686478 -g1,14977:15166713,39686478 -g1,14977:15482859,39686478 -g1,14977:15799005,39686478 -g1,14977:16115151,39686478 -g1,14977:16431297,39686478 -g1,14977:16747443,39686478 -g1,14977:17063589,39686478 -g1,14977:17379735,39686478 -g1,14977:17695881,39686478 -g1,14977:18960464,39686478 -g1,14977:19276610,39686478 -g1,14977:19592756,39686478 -g1,14977:19908902,39686478 -g1,14977:20225048,39686478 -g1,14977:20541194,39686478 -g1,14977:20857340,39686478 -g1,14977:21173486,39686478 -g1,14977:22438069,39686478 -g1,14977:22754215,39686478 -g1,14977:23070361,39686478 -g1,14977:23386507,39686478 -g1,14977:23702653,39686478 -g1,14977:24018799,39686478 -g1,14977:24334945,39686478 -g1,14977:24651091,39686478 -h1,14977:25599528,39686478:0,0,0 -k1,14977:32583029,39686478:6983501 -g1,14977:32583029,39686478 -) -(1,14977:6630773,40352656:25952256,404226,107478 -h1,14977:6630773,40352656:0,0,0 -g1,14977:7579210,40352656 -g1,14977:11689104,40352656 -g1,14977:12005250,40352656 -g1,14977:15166707,40352656 -g1,14977:18960455,40352656 -g1,14977:19276601,40352656 -g1,14977:22438058,40352656 -g1,14977:22754204,40352656 -h1,14977:25599515,40352656:0,0,0 -k1,14977:32583029,40352656:6983514 -g1,14977:32583029,40352656 -) -(1,14977:6630773,41018834:25952256,404226,101187 -h1,14977:6630773,41018834:0,0,0 -g1,14977:7579210,41018834 -g1,14977:11372958,41018834 -g1,14977:11689104,41018834 -g1,14977:15166707,41018834 -g1,14977:18960455,41018834 -g1,14977:22438058,41018834 -k1,14977:22438058,41018834:0 -h1,14977:25599515,41018834:0,0,0 -k1,14977:32583029,41018834:6983514 -g1,14977:32583029,41018834 -) -(1,14977:6630773,41685012:25952256,404226,107478 -h1,14977:6630773,41685012:0,0,0 -g1,14977:7579210,41685012 -g1,14977:11689104,41685012 -g1,14977:12005250,41685012 -g1,14977:15166707,41685012 -g1,14977:18960455,41685012 -g1,14977:22438058,41685012 -k1,14977:22438058,41685012:0 -h1,14977:25599515,41685012:0,0,0 -k1,14977:32583029,41685012:6983514 -g1,14977:32583029,41685012 -) -(1,14977:6630773,42351190:25952256,404226,9436 -h1,14977:6630773,42351190:0,0,0 -g1,14977:7579210,42351190 -g1,14977:11372958,42351190 -g1,14977:11689104,42351190 -g1,14977:12005250,42351190 -g1,14977:15166707,42351190 -g1,14977:18960455,42351190 -g1,14977:22438058,42351190 -g1,14977:22754204,42351190 -h1,14977:25599515,42351190:0,0,0 -k1,14977:32583029,42351190:6983514 -g1,14977:32583029,42351190 -) -] -) -g1,14978:32583029,42360626 -g1,14978:6630773,42360626 -g1,14978:6630773,42360626 -g1,14978:32583029,42360626 -g1,14978:32583029,42360626 -) -h1,14978:6630773,42557234:0,0,0 -(1,14982:6630773,43923010:25952256,513147,126483 -h1,14981:6630773,43923010:983040,0,0 -k1,14981:8508183,43923010:266535 -k1,14981:9793803,43923010:266535 -k1,14981:13224415,43923010:266534 -k1,14981:14510035,43923010:266535 -k1,14981:16310768,43923010:266535 -k1,14981:20306957,43923010:266535 -k1,14981:21232784,43923010:266535 -k1,14981:24554606,43923010:266534 -k1,14981:26012586,43923010:266535 -k1,14981:30208004,43923010:266535 -k1,14982:32583029,43923010:0 -) -(1,14982:6630773,44764498:25952256,513147,126483 -k1,14981:8438732,44764498:240338 -k1,14981:9670631,44764498:240339 -k1,14981:11512669,44764498:240338 -k1,14981:15455136,44764498:240338 -k1,14981:16354767,44764498:240339 -k1,14981:17614190,44764498:240338 -k1,14981:21826666,44764498:240339 -k1,14981:22726296,44764498:240338 -k1,14981:24418256,44764498:240338 -k1,14981:27500236,44764498:240339 -k1,14981:31337845,44764498:240338 -k1,14981:32583029,44764498:0 -) -(1,14982:6630773,45605986:25952256,505283,134348 -g1,14981:7481430,45605986 -g1,14981:10981052,45605986 -g1,14981:12199366,45605986 -g1,14981:15224507,45605986 -g1,14981:17583147,45605986 -k1,14982:32583029,45605986:10754460 -g1,14982:32583029,45605986 -) -] -(1,14984:32583029,45706769:0,0,0 -g1,14984:32583029,45706769 -) -) -] -(1,14984:6630773,47279633:25952256,0,0 -h1,14984:6630773,47279633:25952256,0,0 -) -] -(1,14984:4262630,4025873:0,0,0 -[1,14984:-473656,4025873:0,0,0 -(1,14984:-473656,-710413:0,0,0 -(1,14984:-473656,-710413:0,0,0 -g1,14984:-473656,-710413 -) -g1,14984:-473656,-710413 -) -] -) -] -!29938 -}252 -Input:2214:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2215:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!200 -{253 -[1,15034:4262630,47279633:28320399,43253760,0 -(1,15034:4262630,4025873:0,0,0 -[1,15034:-473656,4025873:0,0,0 -(1,15034:-473656,-710413:0,0,0 -(1,15034:-473656,-644877:0,0,0 -k1,15034:-473656,-644877:-65536 -) -(1,15034:-473656,4736287:0,0,0 -k1,15034:-473656,4736287:5209943 +[1,14796:3078558,4812305:0,0,0 +(1,14796:3078558,49800853:0,16384,2228224 +g1,14796:29030814,49800853 +g1,14796:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,14796:36151628,51504789:16384,1179648,0 ) -g1,15034:-473656,-710413 +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 ) ] ) -[1,15034:6630773,47279633:25952256,43253760,0 -[1,15034:6630773,4812305:25952256,786432,0 -(1,15034:6630773,4812305:25952256,513147,126483 -(1,15034:6630773,4812305:25952256,513147,126483 -g1,15034:3078558,4812305 -[1,15034:3078558,4812305:0,0,0 -(1,15034:3078558,2439708:0,1703936,0 -k1,15034:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,15034:2537886,2439708:1179648,16384,0 +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,14796:37855564,49800853:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,15034:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +k1,14796:3078556,49800853:-34777008 ) ] -) +g1,14796:6630773,4812305 +g1,14796:6630773,4812305 +g1,14796:8691224,4812305 +g1,14796:11722264,4812305 +k1,14796:31387652,4812305:19665388 ) ) ] -[1,15034:3078558,4812305:0,0,0 -(1,15034:3078558,2439708:0,1703936,0 -g1,15034:29030814,2439708 -g1,15034:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,15034:36151628,1915420:16384,1179648,0 +[1,14796:6630773,45706769:25952256,40108032,0 +(1,14796:6630773,45706769:25952256,40108032,0 +(1,14796:6630773,45706769:0,0,0 +g1,14796:6630773,45706769 +) +[1,14796:6630773,45706769:25952256,40108032,0 +(1,14535:6630773,6254097:25952256,513147,134348 +k1,14534:7954491,6254097:219436 +k1,14534:8921694,6254097:219437 +k1,14534:11179300,6254097:219436 +k1,14534:12590181,6254097:219436 +k1,14534:16996712,6254097:219436 +k1,14534:19147495,6254097:219437 +k1,14534:22240685,6254097:219436 +k1,14534:23451681,6254097:219436 +k1,14534:24956933,6254097:219436 +k1,14534:27639868,6254097:219437 +k1,14534:30149132,6254097:219436 +k1,14534:31027860,6254097:219436 +k1,14535:32583029,6254097:0 +) +(1,14535:6630773,7119177:25952256,459977,115847 +(1,14534:6630773,7119177:0,459977,115847 +r1,14796:9802733,7119177:3171960,575824,115847 +k1,14534:6630773,7119177:-3171960 +) +(1,14534:6630773,7119177:3171960,459977,115847 +k1,14534:6630773,7119177:3277 +h1,14534:9799456,7119177:0,411205,112570 +) +k1,14535:32583029,7119177:22606626 +g1,14535:32583029,7119177 +) +v1,14537:6630773,7804032:0,393216,0 +(1,14544:6630773,8927612:25952256,1516796,196608 +g1,14544:6630773,8927612 +g1,14544:6630773,8927612 +g1,14544:6434165,8927612 +(1,14544:6434165,8927612:0,1516796,196608 +r1,14796:32779637,8927612:26345472,1713404,196608 +k1,14544:6434165,8927612:-26345472 +) +(1,14544:6434165,8927612:26345472,1516796,196608 +[1,14544:6630773,8927612:25952256,1320188,0 +(1,14539:6630773,8031863:25952256,424439,106246 +(1,14538:6630773,8031863:0,0,0 +g1,14538:6630773,8031863 +g1,14538:6630773,8031863 +g1,14538:6303093,8031863 +(1,14538:6303093,8031863:0,0,0 +) +g1,14538:6630773,8031863 +) +k1,14539:6630773,8031863:0 +g1,14539:9286405,8031863 +g1,14539:9950313,8031863 +h1,14539:10614221,8031863:0,0,0 +k1,14539:32583029,8031863:21968808 +g1,14539:32583029,8031863 +) +(1,14543:6630773,8847790:25952256,431045,79822 +(1,14541:6630773,8847790:0,0,0 +g1,14541:6630773,8847790 +g1,14541:6630773,8847790 +g1,14541:6303093,8847790 +(1,14541:6303093,8847790:0,0,0 +) +g1,14541:6630773,8847790 +) +g1,14543:7626635,8847790 +g1,14543:8954451,8847790 +h1,14543:11942036,8847790:0,0,0 +k1,14543:32583028,8847790:20640992 +g1,14543:32583028,8847790 +) +] +) +g1,14544:32583029,8927612 +g1,14544:6630773,8927612 +g1,14544:6630773,8927612 +g1,14544:32583029,8927612 +g1,14544:32583029,8927612 +) +h1,14544:6630773,9124220:0,0,0 +v1,14548:6630773,9809075:0,393216,0 +(1,14556:6630773,11501353:25952256,2085494,196608 +g1,14556:6630773,11501353 +g1,14556:6630773,11501353 +g1,14556:6434165,11501353 +(1,14556:6434165,11501353:0,2085494,196608 +r1,14796:32779637,11501353:26345472,2282102,196608 +k1,14556:6434165,11501353:-26345472 +) +(1,14556:6434165,11501353:26345472,2085494,196608 +[1,14556:6630773,11501353:25952256,1888886,0 +(1,14550:6630773,9920749:25952256,308282,106246 +(1,14549:6630773,9920749:0,0,0 +g1,14549:6630773,9920749 +g1,14549:6630773,9920749 +g1,14549:6303093,9920749 +(1,14549:6303093,9920749:0,0,0 +) +g1,14549:6630773,9920749 +) +g1,14550:7294681,9920749 +g1,14550:8290543,9920749 +g1,14550:8954451,9920749 +g1,14550:9618359,9920749 +h1,14550:9950313,9920749:0,0,0 +k1,14550:32583029,9920749:22632716 +g1,14550:32583029,9920749 +) +(1,14551:6630773,10605604:25952256,424439,79822 +h1,14551:6630773,10605604:0,0,0 +k1,14551:6630773,10605604:0 +h1,14551:9286405,10605604:0,0,0 +k1,14551:32583029,10605604:23296624 +g1,14551:32583029,10605604 +) +(1,14555:6630773,11421531:25952256,431045,79822 +(1,14553:6630773,11421531:0,0,0 +g1,14553:6630773,11421531 +g1,14553:6630773,11421531 +g1,14553:6303093,11421531 +(1,14553:6303093,11421531:0,0,0 +) +g1,14553:6630773,11421531 +) +g1,14555:7626635,11421531 +g1,14555:8954451,11421531 +h1,14555:11942036,11421531:0,0,0 +k1,14555:32583028,11421531:20640992 +g1,14555:32583028,11421531 +) +] +) +g1,14556:32583029,11501353 +g1,14556:6630773,11501353 +g1,14556:6630773,11501353 +g1,14556:32583029,11501353 +g1,14556:32583029,11501353 +) +h1,14556:6630773,11697961:0,0,0 +(1,14560:6630773,12563041:25952256,513147,126483 +h1,14559:6630773,12563041:983040,0,0 +k1,14559:9659889,12563041:213689 +k1,14559:10405076,12563041:213690 +k1,14559:11428135,12563041:213689 +k1,14559:14096148,12563041:213690 +(1,14559:14096148,12563041:0,459977,115847 +r1,14796:18323244,12563041:4227096,575824,115847 +k1,14559:14096148,12563041:-4227096 +) +(1,14559:14096148,12563041:4227096,459977,115847 +k1,14559:14096148,12563041:3277 +h1,14559:18319967,12563041:0,411205,112570 +) +k1,14559:18536933,12563041:213689 +k1,14559:19366660,12563041:213689 +k1,14559:21014278,12563041:213690 +k1,14559:21816480,12563041:213689 +k1,14559:23102339,12563041:213690 +k1,14559:24184380,12563041:213689 +k1,14559:25502351,12563041:213689 +k1,14559:27516970,12563041:213690 +k1,14559:28922104,12563041:213689 +k1,14559:30154879,12563041:213690 +k1,14559:31923737,12563041:213689 +k1,14559:32583029,12563041:0 +) +(1,14560:6630773,13428121:25952256,505283,134348 +g1,14559:7600705,13428121 +g1,14559:9759460,13428121 +g1,14559:11352640,13428121 +(1,14559:11352640,13428121:0,452978,115847 +r1,14796:14876312,13428121:3523672,568825,115847 +k1,14559:11352640,13428121:-3523672 +) +(1,14559:11352640,13428121:3523672,452978,115847 +k1,14559:11352640,13428121:3277 +h1,14559:14873035,13428121:0,411205,112570 +) +k1,14560:32583030,13428121:17533048 +g1,14560:32583030,13428121 +) +v1,14562:6630773,14112976:0,393216,0 +(1,14569:6630773,15243162:25952256,1523402,196608 +g1,14569:6630773,15243162 +g1,14569:6630773,15243162 +g1,14569:6434165,15243162 +(1,14569:6434165,15243162:0,1523402,196608 +r1,14796:32779637,15243162:26345472,1720010,196608 +k1,14569:6434165,15243162:-26345472 +) +(1,14569:6434165,15243162:26345472,1523402,196608 +[1,14569:6630773,15243162:25952256,1326794,0 +(1,14564:6630773,14347413:25952256,431045,86428 +(1,14563:6630773,14347413:0,0,0 +g1,14563:6630773,14347413 +g1,14563:6630773,14347413 +g1,14563:6303093,14347413 +(1,14563:6303093,14347413:0,0,0 +) +g1,14563:6630773,14347413 +) +k1,14564:6630773,14347413:0 +g1,14564:10614220,14347413 +h1,14564:13933759,14347413:0,0,0 +k1,14564:32583029,14347413:18649270 +g1,14564:32583029,14347413 +) +(1,14568:6630773,15163340:25952256,424439,79822 +(1,14566:6630773,15163340:0,0,0 +g1,14566:6630773,15163340 +g1,14566:6630773,15163340 +g1,14566:6303093,15163340 +(1,14566:6303093,15163340:0,0,0 +) +g1,14566:6630773,15163340 +) +g1,14568:7626635,15163340 +g1,14568:8954451,15163340 +h1,14568:10282267,15163340:0,0,0 +k1,14568:32583029,15163340:22300762 +g1,14568:32583029,15163340 +) +] +) +g1,14569:32583029,15243162 +g1,14569:6630773,15243162 +g1,14569:6630773,15243162 +g1,14569:32583029,15243162 +g1,14569:32583029,15243162 +) +h1,14569:6630773,15439770:0,0,0 +v1,14573:6630773,16304850:0,393216,0 +(1,14796:6630773,45706769:25952256,29795135,0 +g1,14796:6630773,45706769 +g1,14796:6237557,45706769 +r1,14796:6368629,45706769:131072,29795135,0 +g1,14796:6567858,45706769 +g1,14796:6764466,45706769 +[1,14796:6764466,45706769:25818563,29795135,0 +(1,14574:6764466,16613148:25818563,701514,196608 +(1,14573:6764466,16613148:0,701514,196608 +r1,14796:8010564,16613148:1246098,898122,196608 +k1,14573:6764466,16613148:-1246098 +) +(1,14573:6764466,16613148:1246098,701514,196608 +) +k1,14573:8270960,16613148:260396 +k1,14573:8598640,16613148:327680 +k1,14573:8598640,16613148:0 +k1,14573:13198474,16613148:267249 +k1,14573:14142711,16613148:267250 +k1,14573:16456649,16613148:267249 +k1,14573:19853598,16613148:260396 +k1,14573:22642373,16613148:260396 +k1,14573:24106010,16613148:260396 +k1,14573:24897903,16613148:260396 +k1,14573:25514160,16613148:260397 +k1,14573:27356595,16613148:260396 +k1,14573:29439547,16613148:260396 +k1,14573:30719028,16613148:260396 +k1,14573:31394206,16613148:260335 +k1,14574:32583029,16613148:0 +) +(1,14574:6764466,17478228:25818563,513147,134348 +k1,14573:9008637,17478228:204035 +k1,14573:9670770,17478228:204036 +k1,14573:10406302,17478228:204035 +k1,14573:13558802,17478228:204035 +k1,14573:14414265,17478228:204035 +k1,14573:17287582,17478228:204036 +k1,14573:18821998,17478228:204035 +k1,14573:21899787,17478228:204035 +k1,14573:23208104,17478228:204035 +k1,14573:24159906,17478228:204036 +k1,14573:28551036,17478228:204035 +k1,14573:31896867,17478228:204035 +k1,14573:32583029,17478228:0 +) +(1,14574:6764466,18343308:25818563,513147,134348 +k1,14573:8116710,18343308:220437 +k1,14573:10039116,18343308:220436 +k1,14573:10674374,18343308:220415 +k1,14573:13358309,18343308:220437 +k1,14573:14683027,18343308:220436 +k1,14573:15651230,18343308:220437 +k1,14573:17683081,18343308:220436 +k1,14573:18519556,18343308:220437 +k1,14573:21581633,18343308:220436 +k1,14573:24782647,18343308:220437 +k1,14573:26500581,18343308:220436 +k1,14573:28103172,18343308:220437 +k1,14573:28855105,18343308:220436 +k1,14573:30278783,18343308:220437 +k1,14573:32583029,18343308:0 +) +(1,14574:6764466,19208388:25818563,513147,126483 +k1,14573:8043029,19208388:236541 +k1,14573:11114657,19208388:236541 +k1,14573:11817160,19208388:236542 +k1,14573:12922053,19208388:236541 +k1,14573:14707210,19208388:236541 +k1,14573:15595179,19208388:236541 +k1,14573:16519193,19208388:236541 +k1,14573:18987236,19208388:236542 +k1,14573:21986120,19208388:236541 +k1,14573:24540669,19208388:236541 +k1,14573:25428638,19208388:236541 +k1,14573:26684264,19208388:236541 +k1,14573:28574279,19208388:236542 +k1,14573:30373854,19208388:236541 +k1,14573:31478747,19208388:236541 +k1,14573:32583029,19208388:0 +) +(1,14574:6764466,20073468:25818563,513147,134348 +k1,14573:8625442,20073468:246169 +k1,14573:9227472,20073468:246170 +(1,14573:9227472,20073468:0,459977,115847 +r1,14796:10289161,20073468:1061689,575824,115847 +k1,14573:9227472,20073468:-1061689 +) +(1,14573:9227472,20073468:1061689,459977,115847 +k1,14573:9227472,20073468:3277 +h1,14573:10285884,20073468:0,411205,112570 +) +k1,14573:10535330,20073468:246169 +k1,14573:12196421,20073468:246169 +k1,14573:13727096,20073468:246169 +k1,14573:15778128,20073468:246170 +k1,14573:18582823,20073468:246169 +k1,14573:19184852,20073468:246169 +k1,14573:20424547,20073468:246169 +k1,14573:21330009,20073468:246170 +k1,14573:23563885,20073468:246169 +k1,14573:26857478,20073468:246169 +k1,14573:27901220,20073468:246169 +k1,14573:29015742,20073468:246170 +k1,14573:30366193,20073468:246169 +k1,14573:32227169,20073468:246169 +k1,14573:32583029,20073468:0 +) +(1,14574:6764466,20938548:25818563,513147,134348 +g1,14573:9659191,20938548 +g1,14573:11142926,20938548 +g1,14573:13720457,20938548 +g1,14573:15076396,20938548 +g1,14573:15958510,20938548 +g1,14573:17807936,20938548 +g1,14573:20880919,20938548 +g1,14573:21766310,20938548 +k1,14574:32583029,20938548:7240419 +g1,14574:32583029,20938548 +) +(1,14576:6764466,21803628:25818563,513147,126483 +h1,14575:6764466,21803628:983040,0,0 +k1,14575:9145825,21803628:201632 +k1,14575:10439942,21803628:201632 +k1,14575:11308730,21803628:201632 +(1,14575:11308730,21803628:0,459977,115847 +r1,14796:12370419,21803628:1061689,575824,115847 +k1,14575:11308730,21803628:-1061689 +) +(1,14575:11308730,21803628:1061689,459977,115847 +k1,14575:11308730,21803628:3277 +h1,14575:12367142,21803628:0,411205,112570 +) +k1,14575:12572051,21803628:201632 +k1,14575:14406841,21803628:201632 +k1,14575:15556124,21803628:201632 +k1,14575:18474879,21803628:201632 +k1,14575:20063908,21803628:201632 +k1,14575:20621400,21803628:201632 +k1,14575:21816558,21803628:201632 +k1,14575:22677482,21803628:201632 +k1,14575:24866821,21803628:201632 +k1,14575:27942207,21803628:201632 +k1,14575:28675336,21803628:201632 +k1,14575:31966991,21803628:201632 +k1,14575:32583029,21803628:0 +) +(1,14576:6764466,22668708:25818563,485622,134348 +g1,14575:9242382,22668708 +h1,14575:10611429,22668708:0,0,0 +g1,14575:10810658,22668708 +g1,14575:11819257,22668708 +g1,14575:13516639,22668708 +h1,14575:14712016,22668708:0,0,0 +k1,14576:32583030,22668708:17697344 +g1,14576:32583030,22668708 +) +v1,14578:6764466,23353563:0,393216,0 +(1,14597:6764466,32708615:25818563,9748268,196608 +g1,14597:6764466,32708615 +g1,14597:6764466,32708615 +g1,14597:6567858,32708615 +(1,14597:6567858,32708615:0,9748268,196608 +r1,14796:32779637,32708615:26211779,9944876,196608 +k1,14597:6567857,32708615:-26211780 +) +(1,14597:6567858,32708615:26211779,9748268,196608 +[1,14597:6764466,32708615:25818563,9551660,0 +(1,14580:6764466,23588000:25818563,431045,106246 +(1,14579:6764466,23588000:0,0,0 +g1,14579:6764466,23588000 +g1,14579:6764466,23588000 +g1,14579:6436786,23588000 +(1,14579:6436786,23588000:0,0,0 +) +g1,14579:6764466,23588000 +) +g1,14580:9420098,23588000 +g1,14580:10415960,23588000 +g1,14580:14731361,23588000 +g1,14580:15395269,23588000 +g1,14580:17386993,23588000 +g1,14580:18050901,23588000 +g1,14580:18714809,23588000 +g1,14580:21038487,23588000 +g1,14580:21702395,23588000 +g1,14580:22366303,23588000 +g1,14580:23030211,23588000 +k1,14580:23030211,23588000:0 +h1,14580:26349751,23588000:0,0,0 +k1,14580:32583029,23588000:6233278 +g1,14580:32583029,23588000 +) +(1,14581:6764466,24272855:25818563,424439,79822 +h1,14581:6764466,24272855:0,0,0 +g1,14581:9088144,24272855 +g1,14581:10084006,24272855 +k1,14581:10084006,24272855:0 +h1,14581:12075730,24272855:0,0,0 +k1,14581:32583030,24272855:20507300 +g1,14581:32583030,24272855 +) +(1,14582:6764466,24957710:25818563,431045,106246 +h1,14582:6764466,24957710:0,0,0 +g1,14582:9752051,24957710 +g1,14582:10747913,24957710 +g1,14582:13071591,24957710 +g1,14582:13735499,24957710 +g1,14582:14399407,24957710 +g1,14582:15063315,24957710 +g1,14582:15727223,24957710 +g1,14582:16391131,24957710 +g1,14582:17386993,24957710 +g1,14582:18050901,24957710 +g1,14582:18714809,24957710 +g1,14582:19378717,24957710 +g1,14582:20042625,24957710 +g1,14582:21038487,24957710 +g1,14582:21702395,24957710 +g1,14582:22366303,24957710 +g1,14582:23030211,24957710 +g1,14582:23694119,24957710 +g1,14582:24358027,24957710 +g1,14582:25021935,24957710 +h1,14582:26349751,24957710:0,0,0 +k1,14582:32583029,24957710:6233278 +g1,14582:32583029,24957710 +) +(1,14583:6764466,25642565:25818563,431045,79822 +h1,14583:6764466,25642565:0,0,0 +g1,14583:8092282,25642565 +g1,14583:11079867,25642565 +g1,14583:12075729,25642565 +g1,14583:15395268,25642565 +h1,14583:15727222,25642565:0,0,0 +k1,14583:32583030,25642565:16855808 +g1,14583:32583030,25642565 +) +(1,14584:6764466,26327420:25818563,431045,106246 +h1,14584:6764466,26327420:0,0,0 +g1,14584:7096420,26327420 +g1,14584:9420098,26327420 +g1,14584:10415960,26327420 +g1,14584:13735500,26327420 +g1,14584:19378717,26327420 +g1,14584:21038487,26327420 +g1,14584:21702395,26327420 +h1,14584:25021934,26327420:0,0,0 +k1,14584:32583029,26327420:7561095 +g1,14584:32583029,26327420 +) +(1,14585:6764466,27012275:25818563,424439,79822 +h1,14585:6764466,27012275:0,0,0 +g1,14585:7096420,27012275 +h1,14585:7428374,27012275:0,0,0 +k1,14585:32583030,27012275:25154656 +g1,14585:32583030,27012275 +) +(1,14586:6764466,27697130:25818563,424439,86428 +h1,14586:6764466,27697130:0,0,0 +g1,14586:10747914,27697130 +g1,14586:14067453,27697130 +g1,14586:14731361,27697130 +h1,14586:15395269,27697130:0,0,0 +k1,14586:32583029,27697130:17187760 +g1,14586:32583029,27697130 +) +(1,14596:6764466,28513057:25818563,431045,9908 +(1,14588:6764466,28513057:0,0,0 +g1,14588:6764466,28513057 +g1,14588:6764466,28513057 +g1,14588:6436786,28513057 +(1,14588:6436786,28513057:0,0,0 +) +g1,14588:6764466,28513057 +) +g1,14596:7760328,28513057 +g1,14596:9420098,28513057 +g1,14596:10415960,28513057 +h1,14596:10747914,28513057:0,0,0 +k1,14596:32583030,28513057:21835116 +g1,14596:32583030,28513057 +) +(1,14596:6764466,29197912:25818563,431045,33029 +h1,14596:6764466,29197912:0,0,0 +g1,14596:7760328,29197912 +g1,14596:8092282,29197912 +g1,14596:8756190,29197912 +g1,14596:10747914,29197912 +g1,14596:11743776,29197912 +h1,14596:12407684,29197912:0,0,0 +k1,14596:32583028,29197912:20175344 +g1,14596:32583028,29197912 +) +(1,14596:6764466,29882767:25818563,424439,86428 +h1,14596:6764466,29882767:0,0,0 +g1,14596:7760328,29882767 +g1,14596:8092282,29882767 +g1,14596:8424236,29882767 +g1,14596:9752052,29882767 +g1,14596:12407684,29882767 +g1,14596:15727223,29882767 +g1,14596:17055039,29882767 +h1,14596:18382855,29882767:0,0,0 +k1,14596:32583029,29882767:14200174 +g1,14596:32583029,29882767 +) +(1,14596:6764466,30567622:25818563,431045,33029 +h1,14596:6764466,30567622:0,0,0 +g1,14596:7760328,30567622 +g1,14596:8092282,30567622 +g1,14596:8756190,30567622 +g1,14596:10747914,30567622 +g1,14596:11743776,30567622 +h1,14596:12407684,30567622:0,0,0 +k1,14596:32583028,30567622:20175344 +g1,14596:32583028,30567622 +) +(1,14596:6764466,31252477:25818563,424439,86428 +h1,14596:6764466,31252477:0,0,0 +g1,14596:7760328,31252477 +g1,14596:8092282,31252477 +g1,14596:8424236,31252477 +g1,14596:9752052,31252477 +g1,14596:12407684,31252477 +g1,14596:15727223,31252477 +g1,14596:17055039,31252477 +h1,14596:18382855,31252477:0,0,0 +k1,14596:32583029,31252477:14200174 +g1,14596:32583029,31252477 +) +(1,14596:6764466,31937332:25818563,431045,33029 +h1,14596:6764466,31937332:0,0,0 +g1,14596:7760328,31937332 +g1,14596:8092282,31937332 +g1,14596:8756190,31937332 +g1,14596:10747914,31937332 +g1,14596:11743776,31937332 +h1,14596:12407684,31937332:0,0,0 +k1,14596:32583028,31937332:20175344 +g1,14596:32583028,31937332 +) +(1,14596:6764466,32622187:25818563,424439,86428 +h1,14596:6764466,32622187:0,0,0 +g1,14596:7760328,32622187 +g1,14596:8092282,32622187 +g1,14596:8424236,32622187 +g1,14596:9752052,32622187 +g1,14596:12407684,32622187 +g1,14596:15727223,32622187 +g1,14596:17055039,32622187 +h1,14596:18382855,32622187:0,0,0 +k1,14596:32583029,32622187:14200174 +g1,14596:32583029,32622187 +) +] +) +g1,14597:32583029,32708615 +g1,14597:6764466,32708615 +g1,14597:6764466,32708615 +g1,14597:32583029,32708615 +g1,14597:32583029,32708615 +) +h1,14597:6764466,32905223:0,0,0 +(1,14601:6764466,33770303:25818563,505283,126483 +h1,14600:6764466,33770303:983040,0,0 +k1,14600:9015562,33770303:450167 +k1,14600:11234546,33770303:450167 +k1,14600:12432478,33770303:450166 +k1,14600:15895335,33770303:450167 +k1,14600:16701362,33770303:450167 +k1,14600:20628214,33770303:450167 +k1,14600:24785097,33770303:450167 +k1,14600:25766760,33770303:450166 +k1,14600:29000896,33770303:450167 +k1,14600:30845014,33770303:450167 +k1,14601:32583029,33770303:0 +) +(1,14601:6764466,34635383:25818563,513147,126483 +(1,14600:6764466,34635383:0,459977,115847 +r1,14796:10991562,34635383:4227096,575824,115847 +k1,14600:6764466,34635383:-4227096 +) +(1,14600:6764466,34635383:4227096,459977,115847 +k1,14600:6764466,34635383:3277 +h1,14600:10988285,34635383:0,411205,112570 +) +k1,14600:11448236,34635383:283004 +k1,14600:12201134,34635383:283005 +k1,14600:13015635,34635383:283004 +k1,14600:15275860,34635383:283004 +k1,14600:17256902,34635383:283004 +k1,14600:20413661,34635383:283005 +k1,14600:21688225,34635383:283004 +k1,14600:23679753,34635383:283004 +k1,14600:27889674,34635383:283004 +k1,14600:28934207,34635383:283005 +k1,14600:30236296,34635383:283004 +k1,14600:31900144,34635383:283004 +k1,14600:32583029,34635383:0 +) +(1,14601:6764466,35500463:25818563,513147,134348 +k1,14600:8425550,35500463:248783 +k1,14600:10241954,35500463:248783 +k1,14600:11716916,35500463:248783 +k1,14600:13452711,35500463:248783 +k1,14600:15180642,35500463:248783 +(1,14600:15180642,35500463:0,459977,115847 +r1,14796:19407738,35500463:4227096,575824,115847 +k1,14600:15180642,35500463:-4227096 +) +(1,14600:15180642,35500463:4227096,459977,115847 +k1,14600:15180642,35500463:3277 +h1,14600:19404461,35500463:0,411205,112570 +) +k1,14600:19656521,35500463:248783 +k1,14600:20773655,35500463:248782 +k1,14600:22126720,35500463:248783 +k1,14600:24768222,35500463:248783 +k1,14600:25372865,35500463:248783 +k1,14600:28596327,35500463:248783 +k1,14600:30710920,35500463:248783 +k1,14600:32227169,35500463:248783 +k1,14600:32583029,35500463:0 +) +(1,14601:6764466,36365543:25818563,513147,7863 +k1,14601:32583029,36365543:23101440 +g1,14601:32583029,36365543 +) +v1,14603:6764466,37050398:0,393216,0 +(1,14617:6764466,42898049:25818563,6240867,196608 +g1,14617:6764466,42898049 +g1,14617:6764466,42898049 +g1,14617:6567858,42898049 +(1,14617:6567858,42898049:0,6240867,196608 +r1,14796:32779637,42898049:26211779,6437475,196608 +k1,14617:6567857,42898049:-26211780 +) +(1,14617:6567858,42898049:26211779,6240867,196608 +[1,14617:6764466,42898049:25818563,6044259,0 +(1,14605:6764466,37278229:25818563,424439,112852 +(1,14604:6764466,37278229:0,0,0 +g1,14604:6764466,37278229 +g1,14604:6764466,37278229 +g1,14604:6436786,37278229 +(1,14604:6436786,37278229:0,0,0 +) +g1,14604:6764466,37278229 +) +g1,14605:10084005,37278229 +g1,14605:11079867,37278229 +g1,14605:12075729,37278229 +g1,14605:12739637,37278229 +h1,14605:13403545,37278229:0,0,0 +k1,14605:32583029,37278229:19179484 +g1,14605:32583029,37278229 +) +(1,14606:6764466,37963084:25818563,431045,112852 +h1,14606:6764466,37963084:0,0,0 +g1,14606:15395268,37963084 +g1,14606:17055038,37963084 +g1,14606:17718946,37963084 +h1,14606:20374577,37963084:0,0,0 +k1,14606:32583029,37963084:12208452 +g1,14606:32583029,37963084 +) +(1,14616:6764466,38779011:25818563,398014,0 +(1,14608:6764466,38779011:0,0,0 +g1,14608:6764466,38779011 +g1,14608:6764466,38779011 +g1,14608:6436786,38779011 +(1,14608:6436786,38779011:0,0,0 +) +g1,14608:6764466,38779011 +) +h1,14616:7428374,38779011:0,0,0 +k1,14616:32583030,38779011:25154656 +g1,14616:32583030,38779011 +) +(1,14616:6764466,39463866:25818563,424439,8257 +h1,14616:6764466,39463866:0,0,0 +g1,14616:7760328,39463866 +h1,14616:9420098,39463866:0,0,0 +k1,14616:32583030,39463866:23162932 +g1,14616:32583030,39463866 +) +(1,14616:6764466,40148721:25818563,431045,112852 +h1,14616:6764466,40148721:0,0,0 +g1,14616:7760328,40148721 +g1,14616:11411821,40148721 +g1,14616:12075729,40148721 +g1,14616:19710669,40148721 +g1,14616:21370439,40148721 +g1,14616:22034347,40148721 +h1,14616:24689978,40148721:0,0,0 +k1,14616:32583029,40148721:7893051 +g1,14616:32583029,40148721 +) +(1,14616:6764466,40833576:25818563,398014,0 +h1,14616:6764466,40833576:0,0,0 +h1,14616:7428374,40833576:0,0,0 +k1,14616:32583030,40833576:25154656 +g1,14616:32583030,40833576 +) +(1,14616:6764466,41518431:25818563,431045,8257 +h1,14616:6764466,41518431:0,0,0 +g1,14616:7760328,41518431 +h1,14616:12075729,41518431:0,0,0 +k1,14616:32583029,41518431:20507300 +g1,14616:32583029,41518431 +) +(1,14616:6764466,42203286:25818563,424439,106246 +h1,14616:6764466,42203286:0,0,0 +g1,14616:7760328,42203286 +g1,14616:11743775,42203286 +g1,14616:12075729,42203286 +g1,14616:12407683,42203286 +g1,14616:12739637,42203286 +g1,14616:13071591,42203286 +g1,14616:13403545,42203286 +g1,14616:13735499,42203286 +g1,14616:14067453,42203286 +g1,14616:14399407,42203286 +g1,14616:14731361,42203286 +g1,14616:15063315,42203286 +g1,14616:15395269,42203286 +h1,14616:15727223,42203286:0,0,0 +k1,14616:32583029,42203286:16855806 +g1,14616:32583029,42203286 +) +(1,14616:6764466,42888141:25818563,407923,9908 +h1,14616:6764466,42888141:0,0,0 +g1,14616:7760328,42888141 +g1,14616:8092282,42888141 +g1,14616:8424236,42888141 +g1,14616:8756190,42888141 +g1,14616:9088144,42888141 +g1,14616:9420098,42888141 +g1,14616:11743776,42888141 +g1,14616:12075730,42888141 +g1,14616:12407684,42888141 +g1,14616:12739638,42888141 +g1,14616:13071592,42888141 +g1,14616:13403546,42888141 +g1,14616:13735500,42888141 +h1,14616:15727224,42888141:0,0,0 +k1,14616:32583028,42888141:16855804 +g1,14616:32583028,42888141 +) +] +) +g1,14617:32583029,42898049 +g1,14617:6764466,42898049 +g1,14617:6764466,42898049 +g1,14617:32583029,42898049 +g1,14617:32583029,42898049 +) +h1,14617:6764466,43094657:0,0,0 +(1,14621:6764466,43959737:25818563,513147,134348 +h1,14620:6764466,43959737:983040,0,0 +k1,14620:8725124,43959737:159729 +k1,14620:10539637,43959737:159729 +k1,14620:11690927,43959737:159730 +k1,14620:13602433,43959737:159729 +k1,14620:16787959,43959737:159729 +k1,14620:17895339,43959737:159729 +k1,14620:19074153,43959737:159729 +k1,14620:23489790,43959737:159729 +k1,14620:24308812,43959737:159730 +k1,14620:27443220,43959737:159729 +k1,14620:29799060,43959737:159729 +k1,14620:32583029,43959737:0 +) +(1,14621:6764466,44824817:25818563,513147,134348 +k1,14620:7534618,44824817:154114 +k1,14620:9122659,44824817:154113 +k1,14620:9691571,44824817:154069 +k1,14620:11037130,44824817:154114 +k1,14620:13749770,44824817:154114 +k1,14620:16976211,44824817:154113 +k1,14620:20214449,44824817:154114 +k1,14620:20826660,44824817:154114 +k1,14620:21512270,44824817:154113 +k1,14620:26678578,44824817:154114 +k1,14620:27484120,44824817:154114 +k1,14620:29280565,44824817:154113 +k1,14620:31422386,44824817:154114 +k1,14621:32583029,44824817:0 +) +(1,14621:6764466,45689897:25818563,513147,134348 +k1,14620:8856096,45689897:165527 +k1,14620:14658374,45689897:165526 +k1,14620:15510063,45689897:165527 +k1,14620:18045372,45689897:165527 +k1,14620:19164447,45689897:165526 +k1,14620:20434256,45689897:165527 +k1,14620:21692267,45689897:165526 +k1,14620:24883591,45689897:165527 +k1,14620:26195343,45689897:165527 +(1,14620:26195343,45689897:0,452978,115847 +r1,14796:28663880,45689897:2468537,568825,115847 +k1,14620:26195343,45689897:-2468537 +) +(1,14620:26195343,45689897:2468537,452978,115847 +k1,14620:26195343,45689897:3277 +h1,14620:28660603,45689897:0,411205,112570 +) +k1,14620:28829406,45689897:165526 +k1,14620:29646361,45689897:165527 +k1,14620:32583029,45689897:0 +) +] +g1,14796:32583029,45706769 +) +] +(1,14796:32583029,45706769:0,0,0 +g1,14796:32583029,45706769 +) +) +] +(1,14796:6630773,47279633:25952256,0,0 +h1,14796:6630773,47279633:25952256,0,0 +) +] +(1,14796:4262630,4025873:0,0,0 +[1,14796:-473656,4025873:0,0,0 +(1,14796:-473656,-710413:0,0,0 +(1,14796:-473656,-710413:0,0,0 +g1,14796:-473656,-710413 +) +g1,14796:-473656,-710413 +) +] +) +] +!27936 +}234 +!12 +{235 +[1,14796:4262630,47279633:28320399,43253760,0 +(1,14796:4262630,4025873:0,0,0 +[1,14796:-473656,4025873:0,0,0 +(1,14796:-473656,-710413:0,0,0 +(1,14796:-473656,-644877:0,0,0 +k1,14796:-473656,-644877:-65536 +) +(1,14796:-473656,4736287:0,0,0 +k1,14796:-473656,4736287:5209943 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +g1,14796:-473656,-710413 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,15034:37855564,2439708:1179648,16384,0 +[1,14796:6630773,47279633:25952256,43253760,0 +[1,14796:6630773,4812305:25952256,786432,0 +(1,14796:6630773,4812305:25952256,513147,126483 +(1,14796:6630773,4812305:25952256,513147,126483 +g1,14796:3078558,4812305 +[1,14796:3078558,4812305:0,0,0 +(1,14796:3078558,2439708:0,1703936,0 +k1,14796:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,14796:2537886,2439708:1179648,16384,0 ) +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,14796:3078558,1915420:16384,1179648,0 ) -k1,15034:3078556,2439708:-34777008 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] -[1,15034:3078558,4812305:0,0,0 -(1,15034:3078558,49800853:0,16384,2228224 -k1,15034:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,15034:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,15034:3078558,51504789:16384,1179648,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 ) ] +[1,14796:3078558,4812305:0,0,0 +(1,14796:3078558,2439708:0,1703936,0 +g1,14796:29030814,2439708 +g1,14796:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,14796:36151628,1915420:16384,1179648,0 ) -) +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] -[1,15034:3078558,4812305:0,0,0 -(1,15034:3078558,49800853:0,16384,2228224 -g1,15034:29030814,49800853 -g1,15034:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,15034:36151628,51504789:16384,1179648,0 -) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 -) -] -) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,15034:37855564,49800853:1179648,16384,0 -) -) -k1,15034:3078556,49800853:-34777008 -) -] -g1,15034:6630773,4812305 -k1,15034:19540057,4812305:11713907 -g1,15034:21162728,4812305 -g1,15034:21985204,4812305 -g1,15034:24539797,4812305 -g1,15034:25949476,4812305 -g1,15034:28728857,4812305 -g1,15034:29852144,4812305 -) -) -] -[1,15034:6630773,45706769:25952256,40108032,0 -(1,15034:6630773,45706769:25952256,40108032,0 -(1,15034:6630773,45706769:0,0,0 -g1,15034:6630773,45706769 -) -[1,15034:6630773,45706769:25952256,40108032,0 -v1,14984:6630773,6254097:0,393216,0 -(1,14995:6630773,9893792:25952256,4032911,196608 -g1,14995:6630773,9893792 -g1,14995:6630773,9893792 -g1,14995:6434165,9893792 -(1,14995:6434165,9893792:0,4032911,196608 -r1,15034:32779637,9893792:26345472,4229519,196608 -k1,14995:6434165,9893792:-26345472 -) -(1,14995:6434165,9893792:26345472,4032911,196608 -[1,14995:6630773,9893792:25952256,3836303,0 -(1,14986:6630773,6461715:25952256,404226,101187 -(1,14985:6630773,6461715:0,0,0 -g1,14985:6630773,6461715 -g1,14985:6630773,6461715 -g1,14985:6303093,6461715 -(1,14985:6303093,6461715:0,0,0 -) -g1,14985:6630773,6461715 -) -k1,14986:6630773,6461715:0 -h1,14986:10108376,6461715:0,0,0 -k1,14986:32583028,6461715:22474652 -g1,14986:32583028,6461715 -) -(1,14994:6630773,7127893:25952256,410518,101187 -(1,14988:6630773,7127893:0,0,0 -g1,14988:6630773,7127893 -g1,14988:6630773,7127893 -g1,14988:6303093,7127893 -(1,14988:6303093,7127893:0,0,0 -) -g1,14988:6630773,7127893 -) -g1,14994:7579210,7127893 -g1,14994:11056813,7127893 -g1,14994:12005250,7127893 -h1,14994:15482852,7127893:0,0,0 -k1,14994:32583028,7127893:17100176 -g1,14994:32583028,7127893 -) -(1,14994:6630773,7794071:25952256,388497,9436 -h1,14994:6630773,7794071:0,0,0 -g1,14994:7579210,7794071 -g1,14994:7895356,7794071 -g1,14994:8211502,7794071 -g1,14994:8527648,7794071 -g1,14994:8843794,7794071 -g1,14994:9159940,7794071 -g1,14994:9476086,7794071 -g1,14994:9792232,7794071 -g1,14994:10108378,7794071 -g1,14994:10424524,7794071 -g1,14994:10740670,7794071 -g1,14994:11056816,7794071 -g1,14994:11372962,7794071 -g1,14994:11689108,7794071 -g1,14994:12005254,7794071 -g1,14994:12321400,7794071 -g1,14994:12637546,7794071 -g1,14994:12953692,7794071 -g1,14994:13269838,7794071 -g1,14994:13585984,7794071 -g1,14994:13902130,7794071 -g1,14994:14218276,7794071 -g1,14994:14534422,7794071 -g1,14994:14850568,7794071 -g1,14994:15166714,7794071 -g1,14994:15482860,7794071 -g1,14994:15799006,7794071 -g1,14994:17063589,7794071 -g1,14994:17379735,7794071 -g1,14994:17695881,7794071 -g1,14994:18012027,7794071 -g1,14994:19276610,7794071 -g1,14994:19592756,7794071 -g1,14994:19908902,7794071 -g1,14994:20225048,7794071 -g1,14994:20541194,7794071 -g1,14994:21805777,7794071 -g1,14994:22121923,7794071 -g1,14994:22438069,7794071 -g1,14994:22754215,7794071 -g1,14994:23070361,7794071 -h1,14994:24018798,7794071:0,0,0 -k1,14994:32583029,7794071:8564231 -g1,14994:32583029,7794071 -) -(1,14994:6630773,8460249:25952256,404226,9436 -h1,14994:6630773,8460249:0,0,0 -g1,14994:7579210,8460249 -g1,14994:10424521,8460249 -g1,14994:13585978,8460249 -g1,14994:13902124,8460249 -g1,14994:14218270,8460249 -g1,14994:14534416,8460249 -g1,14994:14850562,8460249 -g1,14994:17063582,8460249 -g1,14994:19276602,8460249 -g1,14994:21805768,8460249 -h1,14994:24018788,8460249:0,0,0 -k1,14994:32583029,8460249:8564241 -g1,14994:32583029,8460249 -) -(1,14994:6630773,9126427:25952256,410518,101187 -h1,14994:6630773,9126427:0,0,0 -g1,14994:7579210,9126427 -g1,14994:11056813,9126427 -g1,14994:12005250,9126427 -g1,14994:14850561,9126427 -g1,14994:17063581,9126427 -g1,14994:19276601,9126427 -g1,14994:21805767,9126427 -h1,14994:24018787,9126427:0,0,0 -k1,14994:32583029,9126427:8564242 -g1,14994:32583029,9126427 -) -(1,14994:6630773,9792605:25952256,404226,101187 -h1,14994:6630773,9792605:0,0,0 -g1,14994:7579210,9792605 -g1,14994:11056813,9792605 -g1,14994:14534416,9792605 -g1,14994:14850562,9792605 -g1,14994:17063582,9792605 -g1,14994:19276602,9792605 -g1,14994:21805768,9792605 -h1,14994:24018788,9792605:0,0,0 -k1,14994:32583029,9792605:8564241 -g1,14994:32583029,9792605 -) -] -) -g1,14995:32583029,9893792 -g1,14995:6630773,9893792 -g1,14995:6630773,9893792 -g1,14995:32583029,9893792 -g1,14995:32583029,9893792 -) -h1,14995:6630773,10090400:0,0,0 -(1,15001:6630773,11456176:25952256,505283,126483 -h1,15000:6630773,11456176:983040,0,0 -k1,15000:10254658,11456176:242883 -(1,15000:10254658,11456176:0,452978,115847 -r1,15034:13074907,11456176:2820249,568825,115847 -k1,15000:10254658,11456176:-2820249 -) -(1,15000:10254658,11456176:2820249,452978,115847 -k1,15000:10254658,11456176:3277 -h1,15000:13071630,11456176:0,411205,112570 -) -k1,15000:13317790,11456176:242883 -k1,15000:16511104,11456176:242883 -k1,15000:17109847,11456176:242883 -k1,15000:18630026,11456176:242882 -k1,15000:20266860,11456176:242883 -k1,15000:21666453,11456176:242883 -k1,15000:24750977,11456176:242883 -k1,15000:28591131,11456176:242883 -k1,15000:30079154,11456176:242839 -k1,15000:31131407,11456176:242883 -k1,15000:32583029,11456176:0 -) -(1,15001:6630773,12297664:25952256,513147,134348 -g1,15000:8256065,12297664 -g1,15000:9826307,12297664 -g1,15000:12203953,12297664 -g1,15000:13350833,12297664 -g1,15000:14569147,12297664 -k1,15001:32583029,12297664:15143405 -g1,15001:32583029,12297664 -) -v1,15003:6630773,13488130:0,393216,0 -(1,15007:6630773,13796935:25952256,702021,196608 -g1,15007:6630773,13796935 -g1,15007:6630773,13796935 -g1,15007:6434165,13796935 -(1,15007:6434165,13796935:0,702021,196608 -r1,15034:32779637,13796935:26345472,898629,196608 -k1,15007:6434165,13796935:-26345472 -) -(1,15007:6434165,13796935:26345472,702021,196608 -[1,15007:6630773,13796935:25952256,505413,0 -(1,15005:6630773,13695748:25952256,404226,101187 -(1,15004:6630773,13695748:0,0,0 -g1,15004:6630773,13695748 -g1,15004:6630773,13695748 -g1,15004:6303093,13695748 -(1,15004:6303093,13695748:0,0,0 -) -g1,15004:6630773,13695748 -) -k1,15005:6630773,13695748:0 -h1,15005:9792230,13695748:0,0,0 -k1,15005:32583030,13695748:22790800 -g1,15005:32583030,13695748 -) -] -) -g1,15007:32583029,13796935 -g1,15007:6630773,13796935 -g1,15007:6630773,13796935 -g1,15007:32583029,13796935 -g1,15007:32583029,13796935 -) -h1,15007:6630773,13993543:0,0,0 -(1,15010:6630773,32750699:25952256,18167332,0 -k1,15010:10523651,32750699:3892878 -h1,15009:10523651,32750699:0,0,0 -(1,15009:10523651,32750699:18166500,18167332,0 -(1,15009:10523651,32750699:18167376,18167376,0 -(1,15009:10523651,32750699:18167376,18167376,0 -(1,15009:10523651,32750699:0,18167376,0 -(1,15009:10523651,32750699:0,28417720,0 -(1,15009:10523651,32750699:28417720,28417720,0 -) -k1,15009:10523651,32750699:-28417720 -) -) -g1,15009:28691027,32750699 -) -) -) -g1,15010:28690151,32750699 -k1,15010:32583029,32750699:3892878 -) -(1,15019:6630773,33592187:25952256,513147,134348 -h1,15018:6630773,33592187:983040,0,0 -k1,15018:10194858,33592187:183083 -(1,15018:10194858,33592187:0,452978,115847 -r1,15034:12311683,33592187:2116825,568825,115847 -k1,15018:10194858,33592187:-2116825 -) -(1,15018:10194858,33592187:2116825,452978,115847 -k1,15018:10194858,33592187:3277 -h1,15018:12308406,33592187:0,411205,112570 -) -k1,15018:12494765,33592187:183082 -k1,15018:15740345,33592187:183083 -k1,15018:16279287,33592187:183082 -k1,15018:17507014,33592187:183083 -k1,15018:18967393,33592187:183082 -k1,15018:19809768,33592187:183083 -k1,15018:22977360,33592187:183082 -k1,15018:27784008,33592187:183083 -k1,15018:28618518,33592187:183082 -k1,15018:29820686,33592187:183083 -k1,15018:32583029,33592187:0 -) -(1,15019:6630773,34433675:25952256,426639,126483 -k1,15019:32583028,34433675:21851012 -g1,15019:32583028,34433675 -) -v1,15021:6630773,35624141:0,393216,0 -(1,15025:6630773,35932946:25952256,702021,196608 -g1,15025:6630773,35932946 -g1,15025:6630773,35932946 -g1,15025:6434165,35932946 -(1,15025:6434165,35932946:0,702021,196608 -r1,15034:32779637,35932946:26345472,898629,196608 -k1,15025:6434165,35932946:-26345472 ) -(1,15025:6434165,35932946:26345472,702021,196608 -[1,15025:6630773,35932946:25952256,505413,0 -(1,15023:6630773,35831759:25952256,404226,101187 -(1,15022:6630773,35831759:0,0,0 -g1,15022:6630773,35831759 -g1,15022:6630773,35831759 -g1,15022:6303093,35831759 -(1,15022:6303093,35831759:0,0,0 +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,14796:37855564,2439708:1179648,16384,0 ) -g1,15022:6630773,35831759 ) -k1,15023:6630773,35831759:0 -h1,15023:9159939,35831759:0,0,0 -k1,15023:32583029,35831759:23423090 -g1,15023:32583029,35831759 +k1,14796:3078556,2439708:-34777008 ) ] +[1,14796:3078558,4812305:0,0,0 +(1,14796:3078558,49800853:0,16384,2228224 +k1,14796:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,14796:2537886,49800853:1179648,16384,0 ) -g1,15025:32583029,35932946 -g1,15025:6630773,35932946 -g1,15025:6630773,35932946 -g1,15025:32583029,35932946 -g1,15025:32583029,35932946 +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,14796:3078558,51504789:16384,1179648,0 +) +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 ) -h1,15025:6630773,36129554:0,0,0 ] -(1,15034:32583029,45706769:0,0,0 -g1,15034:32583029,45706769 ) ) -] -(1,15034:6630773,47279633:25952256,0,0 -h1,15034:6630773,47279633:25952256,0,0 ) ] -(1,15034:4262630,4025873:0,0,0 -[1,15034:-473656,4025873:0,0,0 -(1,15034:-473656,-710413:0,0,0 -(1,15034:-473656,-710413:0,0,0 -g1,15034:-473656,-710413 +[1,14796:3078558,4812305:0,0,0 +(1,14796:3078558,49800853:0,16384,2228224 +g1,14796:29030814,49800853 +g1,14796:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,14796:36151628,51504789:16384,1179648,0 ) -g1,15034:-473656,-710413 +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 ) ] ) -] -!11425 -}253 -Input:2216:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2217:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2218:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2219:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2220:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!482 -{254 -[1,15112:4262630,47279633:28320399,43253760,0 -(1,15112:4262630,4025873:0,0,0 -[1,15112:-473656,4025873:0,0,0 -(1,15112:-473656,-710413:0,0,0 -(1,15112:-473656,-644877:0,0,0 -k1,15112:-473656,-644877:-65536 +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,14796:37855564,49800853:1179648,16384,0 ) -(1,15112:-473656,4736287:0,0,0 -k1,15112:-473656,4736287:5209943 ) -g1,15112:-473656,-710413 +k1,14796:3078556,49800853:-34777008 +) +] +g1,14796:6630773,4812305 +k1,14796:19540057,4812305:11713907 +g1,14796:21162728,4812305 +g1,14796:21985204,4812305 +g1,14796:24539797,4812305 +g1,14796:25949476,4812305 +g1,14796:28728857,4812305 +g1,14796:29852144,4812305 +) +) +] +[1,14796:6630773,45706769:25952256,40108032,0 +(1,14796:6630773,45706769:25952256,40108032,0 +(1,14796:6630773,45706769:0,0,0 +g1,14796:6630773,45706769 +) +[1,14796:6630773,45706769:25952256,40108032,0 +v1,14796:6630773,6254097:0,393216,0 +(1,14796:6630773,45706769:25952256,39845888,0 +g1,14796:6630773,45706769 +g1,14796:6237557,45706769 +r1,14796:6368629,45706769:131072,39845888,0 +g1,14796:6567858,45706769 +g1,14796:6764466,45706769 +[1,14796:6764466,45706769:25818563,39845888,0 +(1,14621:6764466,6374028:25818563,513147,134348 +k1,14620:7372988,6374028:252662 +k1,14620:10169101,6374028:252661 +k1,14620:11107925,6374028:252662 +k1,14620:12760435,6374028:252661 +k1,14620:14204542,6374028:252662 +k1,14620:15891132,6374028:252662 +k1,14620:17236278,6374028:252661 +(1,14620:17236278,6374028:0,459977,115847 +r1,14796:21463374,6374028:4227096,575824,115847 +k1,14620:17236278,6374028:-4227096 +) +(1,14620:17236278,6374028:4227096,459977,115847 +k1,14620:17236278,6374028:3277 +h1,14620:21460097,6374028:0,411205,112570 +) +k1,14620:21716036,6374028:252662 +k1,14620:22620125,6374028:252661 +k1,14620:25265506,6374028:252662 +k1,14620:25976265,6374028:252662 +k1,14620:26880354,6374028:252661 +k1,14620:27903719,6374028:252662 +k1,14620:30115906,6374028:252661 +k1,14620:31027860,6374028:252662 +k1,14621:32583029,6374028:0 +) +(1,14621:6764466,7239108:25818563,513147,134348 +(1,14620:6764466,7239108:0,459977,115847 +r1,14796:9233003,7239108:2468537,575824,115847 +k1,14620:6764466,7239108:-2468537 +) +(1,14620:6764466,7239108:2468537,459977,115847 +k1,14620:6764466,7239108:3277 +h1,14620:9229726,7239108:0,411205,112570 +) +g1,14620:9605902,7239108 +g1,14620:11859029,7239108 +g1,14620:13005909,7239108 +g1,14620:15139761,7239108 +g1,14620:15694850,7239108 +k1,14621:32583029,7239108:14726802 +g1,14621:32583029,7239108 +) +v1,14623:6764466,8381303:0,393216,0 +(1,14637:6764466,14228954:25818563,6240867,196608 +g1,14637:6764466,14228954 +g1,14637:6764466,14228954 +g1,14637:6567858,14228954 +(1,14637:6567858,14228954:0,6240867,196608 +r1,14796:32779637,14228954:26211779,6437475,196608 +k1,14637:6567857,14228954:-26211780 +) +(1,14637:6567858,14228954:26211779,6240867,196608 +[1,14637:6764466,14228954:25818563,6044259,0 +(1,14625:6764466,8609134:25818563,424439,112852 +(1,14624:6764466,8609134:0,0,0 +g1,14624:6764466,8609134 +g1,14624:6764466,8609134 +g1,14624:6436786,8609134 +(1,14624:6436786,8609134:0,0,0 +) +g1,14624:6764466,8609134 +) +g1,14625:10084005,8609134 +g1,14625:11079867,8609134 +g1,14625:14731361,8609134 +g1,14625:16391131,8609134 +g1,14625:17718947,8609134 +g1,14625:18382855,8609134 +h1,14625:19710671,8609134:0,0,0 +k1,14625:32583029,8609134:12872358 +g1,14625:32583029,8609134 +) +(1,14626:6764466,9293989:25818563,431045,112852 +h1,14626:6764466,9293989:0,0,0 +g1,14626:15395268,9293989 +g1,14626:17055038,9293989 +g1,14626:17718946,9293989 +h1,14626:20374577,9293989:0,0,0 +k1,14626:32583029,9293989:12208452 +g1,14626:32583029,9293989 +) +(1,14636:6764466,10109916:25818563,398014,0 +(1,14628:6764466,10109916:0,0,0 +g1,14628:6764466,10109916 +g1,14628:6764466,10109916 +g1,14628:6436786,10109916 +(1,14628:6436786,10109916:0,0,0 +) +g1,14628:6764466,10109916 +) +h1,14636:7428374,10109916:0,0,0 +k1,14636:32583030,10109916:25154656 +g1,14636:32583030,10109916 +) +(1,14636:6764466,10794771:25818563,424439,8257 +h1,14636:6764466,10794771:0,0,0 +g1,14636:7760328,10794771 +h1,14636:9420098,10794771:0,0,0 +k1,14636:32583030,10794771:23162932 +g1,14636:32583030,10794771 +) +(1,14636:6764466,11479626:25818563,431045,112852 +h1,14636:6764466,11479626:0,0,0 +g1,14636:7760328,11479626 +g1,14636:11411821,11479626 +g1,14636:12075729,11479626 +g1,14636:19710669,11479626 +g1,14636:21370439,11479626 +g1,14636:22034347,11479626 +h1,14636:24689978,11479626:0,0,0 +k1,14636:32583029,11479626:7893051 +g1,14636:32583029,11479626 +) +(1,14636:6764466,12164481:25818563,398014,0 +h1,14636:6764466,12164481:0,0,0 +h1,14636:7428374,12164481:0,0,0 +k1,14636:32583030,12164481:25154656 +g1,14636:32583030,12164481 +) +(1,14636:6764466,12849336:25818563,431045,8257 +h1,14636:6764466,12849336:0,0,0 +g1,14636:7760328,12849336 +h1,14636:12075729,12849336:0,0,0 +k1,14636:32583029,12849336:20507300 +g1,14636:32583029,12849336 +) +(1,14636:6764466,13534191:25818563,424439,106246 +h1,14636:6764466,13534191:0,0,0 +g1,14636:7760328,13534191 +g1,14636:11743775,13534191 +g1,14636:12075729,13534191 +g1,14636:12407683,13534191 +g1,14636:12739637,13534191 +g1,14636:13071591,13534191 +g1,14636:13403545,13534191 +g1,14636:13735499,13534191 +g1,14636:14067453,13534191 +g1,14636:14399407,13534191 +g1,14636:14731361,13534191 +g1,14636:15063315,13534191 +g1,14636:15395269,13534191 +h1,14636:15727223,13534191:0,0,0 +k1,14636:32583029,13534191:16855806 +g1,14636:32583029,13534191 +) +(1,14636:6764466,14219046:25818563,407923,9908 +h1,14636:6764466,14219046:0,0,0 +g1,14636:7760328,14219046 +g1,14636:8092282,14219046 +g1,14636:8424236,14219046 +g1,14636:8756190,14219046 +g1,14636:9088144,14219046 +g1,14636:9420098,14219046 +g1,14636:11743776,14219046 +g1,14636:12075730,14219046 +g1,14636:12407684,14219046 +g1,14636:12739638,14219046 +g1,14636:13071592,14219046 +g1,14636:13403546,14219046 +g1,14636:13735500,14219046 +h1,14636:15727224,14219046:0,0,0 +k1,14636:32583028,14219046:16855804 +g1,14636:32583028,14219046 +) +] +) +g1,14637:32583029,14228954 +g1,14637:6764466,14228954 +g1,14637:6764466,14228954 +g1,14637:32583029,14228954 +g1,14637:32583029,14228954 +) +h1,14637:6764466,14425562:0,0,0 +(1,14641:6764466,16205322:25818563,513147,134348 +h1,14640:6764466,16205322:983040,0,0 +k1,14640:9001663,16205322:212135 +k1,14640:10232883,16205322:212135 +k1,14640:12751231,16205322:212136 +k1,14640:16037660,16205322:212135 +k1,14640:16909087,16205322:212135 +k1,14640:20504190,16205322:212135 +k1,14640:21072186,16205322:212136 +k1,14640:23827773,16205322:212135 +k1,14640:25307374,16205322:212135 +k1,14640:25875369,16205322:212135 +k1,14640:28126985,16205322:212136 +k1,14640:29207472,16205322:212135 +k1,14640:30894822,16205322:212135 +k1,14641:32583029,16205322:0 +) +(1,14641:6764466,17070402:25818563,513147,115847 +k1,14640:8279495,17070402:206275 +k1,14640:11270396,17070402:206276 +(1,14640:11270396,17070402:0,452978,115847 +r1,14796:16200916,17070402:4930520,568825,115847 +k1,14640:11270396,17070402:-4930520 +) +(1,14640:11270396,17070402:4930520,452978,115847 +k1,14640:11270396,17070402:3277 +h1,14640:16197639,17070402:0,411205,112570 +) +k1,14640:16407191,17070402:206275 +k1,14640:17804912,17070402:206276 +(1,14640:17804912,17070402:0,459977,115847 +r1,14796:20625161,17070402:2820249,575824,115847 +k1,14640:17804912,17070402:-2820249 +) +(1,14640:17804912,17070402:2820249,459977,115847 +k1,14640:17804912,17070402:3277 +h1,14640:20621884,17070402:0,411205,112570 +) +k1,14640:21005106,17070402:206275 +k1,14640:22408069,17070402:206276 +k1,14640:23920477,17070402:206275 +k1,14640:24786045,17070402:206276 +k1,14640:26689047,17070402:206275 +k1,14640:29679948,17070402:206276 +k1,14640:32227169,17070402:206275 +k1,14640:32583029,17070402:0 +) +(1,14641:6764466,17935482:25818563,513147,134348 +k1,14640:9947812,17935482:208667 +k1,14640:12134355,17935482:208666 +k1,14640:15705019,17935482:208667 +k1,14640:16932770,17935482:208666 +k1,14640:21069010,17935482:208667 +k1,14640:21936968,17935482:208666 +k1,14640:23164720,17935482:208667 +k1,14640:25916838,17935482:208666 +k1,14640:26811667,17935482:208667 +k1,14640:30213247,17935482:208666 +k1,14640:32583029,17935482:0 +) +(1,14641:6764466,18800562:25818563,513147,134348 +k1,14640:8707527,18800562:253543 +(1,14640:8707527,18800562:0,459977,115847 +r1,14796:11527776,18800562:2820249,575824,115847 +k1,14640:8707527,18800562:-2820249 +) +(1,14640:8707527,18800562:2820249,459977,115847 +k1,14640:8707527,18800562:3277 +h1,14640:11524499,18800562:0,411205,112570 +) +k1,14640:11781320,18800562:253544 +k1,14640:14375809,18800562:253543 +k1,14640:14985212,18800562:253543 +k1,14640:17111775,18800562:253544 +k1,14640:20339997,18800562:253543 +k1,14640:22459351,18800562:253544 +k1,14640:24106845,18800562:253543 +k1,14640:25379473,18800562:253543 +k1,14640:28176469,18800562:253544 +k1,14640:31635378,18800562:253543 +k1,14640:32583029,18800562:0 +) +(1,14641:6764466,19665642:25818563,473825,134348 +k1,14641:32583029,19665642:23072604 +g1,14641:32583029,19665642 +) +v1,14643:6764466,20807836:0,393216,0 +(1,14657:6764466,24281155:25818563,3866535,196608 +g1,14657:6764466,24281155 +g1,14657:6764466,24281155 +g1,14657:6567858,24281155 +(1,14657:6567858,24281155:0,3866535,196608 +r1,14796:32779637,24281155:26211779,4063143,196608 +k1,14657:6567857,24281155:-26211780 +) +(1,14657:6567858,24281155:26211779,3866535,196608 +[1,14657:6764466,24281155:25818563,3669927,0 +(1,14645:6764466,21042273:25818563,431045,112852 +(1,14644:6764466,21042273:0,0,0 +g1,14644:6764466,21042273 +g1,14644:6764466,21042273 +g1,14644:6436786,21042273 +(1,14644:6436786,21042273:0,0,0 +) +g1,14644:6764466,21042273 +) +g1,14645:12407683,21042273 +g1,14645:13403545,21042273 +g1,14645:16391131,21042273 +g1,14645:17055039,21042273 +h1,14645:17718947,21042273:0,0,0 +k1,14645:32583029,21042273:14864082 +g1,14645:32583029,21042273 +) +(1,14646:6764466,21727128:25818563,431045,112852 +h1,14646:6764466,21727128:0,0,0 +h1,14646:12075729,21727128:0,0,0 +k1,14646:32583029,21727128:20507300 +g1,14646:32583029,21727128 +) +(1,14650:6764466,22543055:25818563,424439,106246 +(1,14648:6764466,22543055:0,0,0 +g1,14648:6764466,22543055 +g1,14648:6764466,22543055 +g1,14648:6436786,22543055 +(1,14648:6436786,22543055:0,0,0 +) +g1,14648:6764466,22543055 +) +g1,14650:7760328,22543055 +g1,14650:9088144,22543055 +g1,14650:10084006,22543055 +g1,14650:10747914,22543055 +h1,14650:11411822,22543055:0,0,0 +k1,14650:32583030,22543055:21171208 +g1,14650:32583030,22543055 +) +(1,14652:6764466,23358982:25818563,431045,112852 +(1,14651:6764466,23358982:0,0,0 +g1,14651:6764466,23358982 +g1,14651:6764466,23358982 +g1,14651:6436786,23358982 +(1,14651:6436786,23358982:0,0,0 +) +g1,14651:6764466,23358982 +) +k1,14652:6764466,23358982:0 +h1,14652:16059176,23358982:0,0,0 +k1,14652:32583029,23358982:16523853 +g1,14652:32583029,23358982 +) +(1,14656:6764466,24174909:25818563,398014,106246 +(1,14654:6764466,24174909:0,0,0 +g1,14654:6764466,24174909 +g1,14654:6764466,24174909 +g1,14654:6436786,24174909 +(1,14654:6436786,24174909:0,0,0 +) +g1,14654:6764466,24174909 +) +g1,14656:7760328,24174909 +g1,14656:8424236,24174909 +g1,14656:9088144,24174909 +h1,14656:9420098,24174909:0,0,0 +k1,14656:32583030,24174909:23162932 +g1,14656:32583030,24174909 +) +] +) +g1,14657:32583029,24281155 +g1,14657:6764466,24281155 +g1,14657:6764466,24281155 +g1,14657:32583029,24281155 +g1,14657:32583029,24281155 +) +h1,14657:6764466,24477763:0,0,0 +(1,14661:6764466,26257523:25818563,513147,134348 +h1,14660:6764466,26257523:983040,0,0 +k1,14660:8388430,26257523:171031 +k1,14660:9090958,26257523:171031 +k1,14660:10547805,26257523:171031 +k1,14660:13348796,26257523:171031 +k1,14660:14171255,26257523:171031 +k1,14660:15552080,26257523:171031 +k1,14660:18266562,26257523:171030 +k1,14660:20727421,26257523:171031 +k1,14660:22292403,26257523:171031 +k1,14660:24917757,26257523:171031 +(1,14660:24917757,26257523:0,452978,115847 +r1,14796:27738006,26257523:2820249,568825,115847 +k1,14660:24917757,26257523:-2820249 +) +(1,14660:24917757,26257523:2820249,452978,115847 +k1,14660:24917757,26257523:3277 +h1,14660:27734729,26257523:0,411205,112570 +) +k1,14660:28082707,26257523:171031 +k1,14660:28881573,26257523:171031 +k1,14660:30071689,26257523:171031 +k1,14661:32583029,26257523:0 +) +(1,14661:6764466,27122603:25818563,513147,134348 +k1,14660:8645248,27122603:241727 +k1,14660:11604098,27122603:241727 +k1,14660:12201685,27122603:241727 +k1,14660:13515580,27122603:241726 +k1,14660:14861589,27122603:241727 +k1,14660:17401664,27122603:241727 +k1,14660:19499371,27122603:241727 +k1,14660:20760183,27122603:241727 +k1,14660:23895325,27122603:241727 +k1,14660:25436630,27122603:241726 +k1,14660:27042817,27122603:241727 +k1,14660:27967429,27122603:241727 +k1,14660:29228241,27122603:241727 +k1,14660:32583029,27122603:0 +) +(1,14661:6764466,27987683:25818563,513147,134348 +k1,14660:8246386,27987683:182341 +k1,14660:9876418,27987683:182342 +k1,14660:10718051,27987683:182341 +k1,14660:11919477,27987683:182341 +k1,14660:14592842,27987683:182342 +k1,14660:17318635,27987683:182341 +k1,14660:18117014,27987683:182341 +k1,14660:19318440,27987683:182341 +k1,14660:23438185,27987683:182342 +k1,14660:26337649,27987683:182341 +k1,14660:27473539,27987683:182341 +k1,14660:28760163,27987683:182342 +k1,14660:30228320,27987683:182341 +k1,14660:32583029,27987683:0 +) +(1,14661:6764466,28852763:25818563,505283,134348 +k1,14660:8840559,28852763:233221 +k1,14660:9759941,28852763:233220 +k1,14660:11097444,28852763:233221 +k1,14660:12078431,28852763:233221 +k1,14660:13751477,28852763:233220 +k1,14660:16026800,28852763:233221 +k1,14660:16887856,28852763:233221 +k1,14660:18813216,28852763:233220 +k1,14660:20743819,28852763:233221 +k1,14660:21996125,28852763:233221 +k1,14660:23301514,28852763:233220 +k1,14660:28158300,28852763:233221 +k1,14660:29042949,28852763:233221 +k1,14660:30295254,28852763:233220 +k1,14660:31478747,28852763:233221 +k1,14660:32583029,28852763:0 +) +(1,14661:6764466,29717843:25818563,505283,134348 +g1,14660:7711461,29717843 +g1,14660:10581937,29717843 +g1,14660:11853335,29717843 +g1,14660:15033141,29717843 +g1,14660:15690467,29717843 +g1,14660:17935730,29717843 +g1,14660:19154044,29717843 +g1,14660:21437318,29717843 +k1,14661:32583029,29717843:8806076 +g1,14661:32583029,29717843 +) +v1,14663:6764466,30860038:0,393216,0 +(1,14695:6764466,39228919:25818563,8762097,196608 +g1,14695:6764466,39228919 +g1,14695:6764466,39228919 +g1,14695:6567858,39228919 +(1,14695:6567858,39228919:0,8762097,196608 +r1,14796:32779637,39228919:26211779,8958705,196608 +k1,14695:6567857,39228919:-26211780 +) +(1,14695:6567858,39228919:26211779,8762097,196608 +[1,14695:6764466,39228919:25818563,8565489,0 +(1,14665:6764466,31094475:25818563,431045,106246 +(1,14664:6764466,31094475:0,0,0 +g1,14664:6764466,31094475 +g1,14664:6764466,31094475 +g1,14664:6436786,31094475 +(1,14664:6436786,31094475:0,0,0 +) +g1,14664:6764466,31094475 +) +g1,14665:10415959,31094475 +g1,14665:11411821,31094475 +g1,14665:12075729,31094475 +g1,14665:12739637,31094475 +g1,14665:13735499,31094475 +g1,14665:14399407,31094475 +h1,14665:15063315,31094475:0,0,0 +k1,14665:32583029,31094475:17519714 +g1,14665:32583029,31094475 +) +(1,14666:6764466,31779330:25818563,431045,106246 +h1,14666:6764466,31779330:0,0,0 +g1,14666:13071591,31779330 +g1,14666:13735499,31779330 +g1,14666:14399407,31779330 +g1,14666:15063315,31779330 +g1,14666:15727223,31779330 +h1,14666:16723085,31779330:0,0,0 +k1,14666:32583029,31779330:15859944 +g1,14666:32583029,31779330 +) +(1,14670:6764466,32595257:25818563,407923,106246 +(1,14668:6764466,32595257:0,0,0 +g1,14668:6764466,32595257 +g1,14668:6764466,32595257 +g1,14668:6436786,32595257 +(1,14668:6436786,32595257:0,0,0 +) +g1,14668:6764466,32595257 +) +g1,14670:7760328,32595257 +g1,14670:8424236,32595257 +g1,14670:9088144,32595257 +g1,14670:10084006,32595257 +g1,14670:10747914,32595257 +g1,14670:11743776,32595257 +g1,14670:12407684,32595257 +h1,14670:13071592,32595257:0,0,0 +k1,14670:32583028,32595257:19511436 +g1,14670:32583028,32595257 +) +(1,14672:6764466,33411184:25818563,431045,106246 +(1,14671:6764466,33411184:0,0,0 +g1,14671:6764466,33411184 +g1,14671:6764466,33411184 +g1,14671:6436786,33411184 +(1,14671:6436786,33411184:0,0,0 +) +g1,14671:6764466,33411184 +) +k1,14672:6764466,33411184:0 +g1,14672:13071591,33411184 +g1,14672:13735499,33411184 +g1,14672:14399407,33411184 +g1,14672:15063315,33411184 +g1,14672:15727223,33411184 +h1,14672:16723085,33411184:0,0,0 +k1,14672:32583029,33411184:15859944 +g1,14672:32583029,33411184 +) +(1,14676:6764466,34227111:25818563,407923,106246 +(1,14674:6764466,34227111:0,0,0 +g1,14674:6764466,34227111 +g1,14674:6764466,34227111 +g1,14674:6436786,34227111 +(1,14674:6436786,34227111:0,0,0 +) +g1,14674:6764466,34227111 +) +g1,14676:7760328,34227111 +g1,14676:8424236,34227111 +g1,14676:9088144,34227111 +h1,14676:9752052,34227111:0,0,0 +k1,14676:32583028,34227111:22830976 +g1,14676:32583028,34227111 +) +(1,14678:6764466,35043038:25818563,431045,106246 +(1,14677:6764466,35043038:0,0,0 +g1,14677:6764466,35043038 +g1,14677:6764466,35043038 +g1,14677:6436786,35043038 +(1,14677:6436786,35043038:0,0,0 +) +g1,14677:6764466,35043038 +) +k1,14678:6764466,35043038:0 +g1,14678:13071591,35043038 +g1,14678:13735499,35043038 +g1,14678:14399407,35043038 +h1,14678:15395269,35043038:0,0,0 +k1,14678:32583029,35043038:17187760 +g1,14678:32583029,35043038 +) +(1,14682:6764466,35858965:25818563,407923,106246 +(1,14680:6764466,35858965:0,0,0 +g1,14680:6764466,35858965 +g1,14680:6764466,35858965 +g1,14680:6436786,35858965 +(1,14680:6436786,35858965:0,0,0 +) +g1,14680:6764466,35858965 +) +g1,14682:7760328,35858965 +g1,14682:8424236,35858965 +g1,14682:9088144,35858965 +h1,14682:9752052,35858965:0,0,0 +k1,14682:32583028,35858965:22830976 +g1,14682:32583028,35858965 +) +(1,14684:6764466,36674892:25818563,431045,106246 +(1,14683:6764466,36674892:0,0,0 +g1,14683:6764466,36674892 +g1,14683:6764466,36674892 +g1,14683:6436786,36674892 +(1,14683:6436786,36674892:0,0,0 +) +g1,14683:6764466,36674892 +) +k1,14684:6764466,36674892:0 +g1,14684:13071591,36674892 +g1,14684:13735499,36674892 +g1,14684:14399407,36674892 +h1,14684:15063315,36674892:0,0,0 +k1,14684:32583029,36674892:17519714 +g1,14684:32583029,36674892 +) +(1,14688:6764466,37490819:25818563,407923,0 +(1,14686:6764466,37490819:0,0,0 +g1,14686:6764466,37490819 +g1,14686:6764466,37490819 +g1,14686:6436786,37490819 +(1,14686:6436786,37490819:0,0,0 +) +g1,14686:6764466,37490819 +) +g1,14688:7760328,37490819 +g1,14688:8424236,37490819 +g1,14688:9088144,37490819 +g1,14688:10084006,37490819 +g1,14688:10747914,37490819 +h1,14688:11411822,37490819:0,0,0 +k1,14688:32583030,37490819:21171208 +g1,14688:32583030,37490819 +) +(1,14690:6764466,38306746:25818563,431045,106246 +(1,14689:6764466,38306746:0,0,0 +g1,14689:6764466,38306746 +g1,14689:6764466,38306746 +g1,14689:6436786,38306746 +(1,14689:6436786,38306746:0,0,0 +) +g1,14689:6764466,38306746 +) +k1,14690:6764466,38306746:0 +g1,14690:13071591,38306746 +g1,14690:13735499,38306746 +g1,14690:14399407,38306746 +g1,14690:15063315,38306746 +g1,14690:15727223,38306746 +h1,14690:16391131,38306746:0,0,0 +k1,14690:32583029,38306746:16191898 +g1,14690:32583029,38306746 +) +(1,14694:6764466,39122673:25818563,407923,106246 +(1,14692:6764466,39122673:0,0,0 +g1,14692:6764466,39122673 +g1,14692:6764466,39122673 +g1,14692:6436786,39122673 +(1,14692:6436786,39122673:0,0,0 +) +g1,14692:6764466,39122673 +) +g1,14694:7760328,39122673 +g1,14694:8424236,39122673 +g1,14694:9088144,39122673 +g1,14694:9752052,39122673 +g1,14694:10415960,39122673 +g1,14694:11411822,39122673 +g1,14694:12075730,39122673 +h1,14694:12739638,39122673:0,0,0 +k1,14694:32583030,39122673:19843392 +g1,14694:32583030,39122673 +) +] +) +g1,14695:32583029,39228919 +g1,14695:6764466,39228919 +g1,14695:6764466,39228919 +g1,14695:32583029,39228919 +g1,14695:32583029,39228919 +) +h1,14695:6764466,39425527:0,0,0 +(1,14699:6764466,41205286:25818563,513147,134348 +h1,14698:6764466,41205286:983040,0,0 +k1,14698:8328366,41205286:135871 +k1,14698:11224677,41205286:135935 +k1,14698:14440803,41205286:135934 +k1,14698:17602534,41205286:135934 +k1,14698:18686119,41205286:135934 +k1,14698:20809761,41205286:135935 +k1,14698:23950521,41205286:135934 +k1,14698:28433458,41205286:135934 +k1,14698:30321170,41205286:135935 +k1,14698:30871884,41205286:135871 +k1,14698:32583029,41205286:0 +) +(1,14699:6764466,42070366:25818563,513147,126483 +k1,14698:8169066,42070366:272138 +k1,14698:10287353,42070366:272138 +k1,14698:12089758,42070366:272139 +k1,14698:13013324,42070366:272138 +k1,14698:14511641,42070366:272138 +k1,14698:16771486,42070366:272138 +k1,14698:19917378,42070366:272138 +k1,14698:20805554,42070366:272138 +k1,14698:22586332,42070366:272139 +k1,14698:25193518,42070366:272138 +k1,14698:26507678,42070366:272138 +k1,14698:29614903,42070366:272138 +k1,14698:32583029,42070366:0 +) +(1,14699:6764466,42935446:25818563,505283,126483 +g1,14698:8951402,42935446 +g1,14698:11981786,42935446 +g1,14698:12712512,42935446 +g1,14698:15541701,42935446 +g1,14698:17134881,42935446 +g1,14698:17748953,42935446 +g1,14698:20402505,42935446 +(1,14698:20402505,42935446:0,452978,115847 +r1,14796:22519330,42935446:2116825,568825,115847 +k1,14698:20402505,42935446:-2116825 +) +(1,14698:20402505,42935446:2116825,452978,115847 +k1,14698:20402505,42935446:3277 +h1,14698:22516053,42935446:0,411205,112570 +) +k1,14699:32583029,42935446:9890029 +g1,14699:32583029,42935446 +) +(1,14701:6764466,44257866:25818563,513147,126483 +h1,14700:6764466,44257866:983040,0,0 +k1,14700:8461873,44257866:226779 +k1,14700:10776002,44257866:226807 +k1,14700:11662101,44257866:226807 +k1,14700:14325538,44257866:226808 +k1,14700:18163379,44257866:226807 +k1,14700:19494468,44257866:226807 +k1,14700:20469041,44257866:226807 +k1,14700:23078737,44257866:226807 +k1,14700:24873165,44257866:226807 +k1,14700:25455832,44257866:226807 +k1,14700:27670346,44257866:226807 +k1,14700:30614276,44257866:226807 +k1,14700:31196943,44257866:226807 +k1,14700:32583029,44257866:0 +) +(1,14701:6764466,45122946:25818563,513147,126483 +g1,14700:7622987,45122946 +g1,14700:10627157,45122946 +g1,14700:12017831,45122946 +g1,14700:13236145,45122946 +g1,14700:14824737,45122946 +g1,14700:15971617,45122946 +g1,14700:17189931,45122946 +g1,14700:21154859,45122946 +k1,14701:32583029,45122946:8412859 +g1,14701:32583029,45122946 +) +] +g1,14796:32583029,45706769 +) +] +(1,14796:32583029,45706769:0,0,0 +g1,14796:32583029,45706769 +) +) +] +(1,14796:6630773,47279633:25952256,0,0 +h1,14796:6630773,47279633:25952256,0,0 +) +] +(1,14796:4262630,4025873:0,0,0 +[1,14796:-473656,4025873:0,0,0 +(1,14796:-473656,-710413:0,0,0 +(1,14796:-473656,-710413:0,0,0 +g1,14796:-473656,-710413 +) +g1,14796:-473656,-710413 +) +] +) +] +!24454 +}235 +!12 +{236 +[1,14796:4262630,47279633:28320399,43253760,0 +(1,14796:4262630,4025873:0,0,0 +[1,14796:-473656,4025873:0,0,0 +(1,14796:-473656,-710413:0,0,0 +(1,14796:-473656,-644877:0,0,0 +k1,14796:-473656,-644877:-65536 +) +(1,14796:-473656,4736287:0,0,0 +k1,14796:-473656,4736287:5209943 +) +g1,14796:-473656,-710413 ) ] ) -[1,15112:6630773,47279633:25952256,43253760,0 -[1,15112:6630773,4812305:25952256,786432,0 -(1,15112:6630773,4812305:25952256,505283,11795 -(1,15112:6630773,4812305:25952256,505283,11795 -g1,15112:3078558,4812305 -[1,15112:3078558,4812305:0,0,0 -(1,15112:3078558,2439708:0,1703936,0 -k1,15112:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,15112:2537886,2439708:1179648,16384,0 +[1,14796:6630773,47279633:25952256,43253760,0 +[1,14796:6630773,4812305:25952256,786432,0 +(1,14796:6630773,4812305:25952256,513147,126483 +(1,14796:6630773,4812305:25952256,513147,126483 +g1,14796:3078558,4812305 +[1,14796:3078558,4812305:0,0,0 +(1,14796:3078558,2439708:0,1703936,0 +k1,14796:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,14796:2537886,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,15112:3078558,1915420:16384,1179648,0 +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,14796:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] ) ) ) ] -[1,15112:3078558,4812305:0,0,0 -(1,15112:3078558,2439708:0,1703936,0 -g1,15112:29030814,2439708 -g1,15112:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,15112:36151628,1915420:16384,1179648,0 +[1,14796:3078558,4812305:0,0,0 +(1,14796:3078558,2439708:0,1703936,0 +g1,14796:29030814,2439708 +g1,14796:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,14796:36151628,1915420:16384,1179648,0 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,15112:37855564,2439708:1179648,16384,0 +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,14796:37855564,2439708:1179648,16384,0 ) ) -k1,15112:3078556,2439708:-34777008 +k1,14796:3078556,2439708:-34777008 ) ] -[1,15112:3078558,4812305:0,0,0 -(1,15112:3078558,49800853:0,16384,2228224 -k1,15112:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,15112:2537886,49800853:1179648,16384,0 +[1,14796:3078558,4812305:0,0,0 +(1,14796:3078558,49800853:0,16384,2228224 +k1,14796:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,14796:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,15112:3078558,51504789:16384,1179648,0 +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,14796:3078558,51504789:16384,1179648,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 +) +] +) +) +) +] +[1,14796:3078558,4812305:0,0,0 +(1,14796:3078558,49800853:0,16384,2228224 +g1,14796:29030814,49800853 +g1,14796:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,14796:36151628,51504789:16384,1179648,0 +) +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 +) +] +) +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,14796:37855564,49800853:1179648,16384,0 +) +) +k1,14796:3078556,49800853:-34777008 +) +] +g1,14796:6630773,4812305 +g1,14796:6630773,4812305 +g1,14796:8691224,4812305 +g1,14796:11722264,4812305 +k1,14796:31387652,4812305:19665388 +) +) +] +[1,14796:6630773,45706769:25952256,40108032,0 +(1,14796:6630773,45706769:25952256,40108032,0 +(1,14796:6630773,45706769:0,0,0 +g1,14796:6630773,45706769 +) +[1,14796:6630773,45706769:25952256,40108032,0 +v1,14796:6630773,6254097:0,393216,0 +(1,14796:6630773,45706769:25952256,39845888,0 +g1,14796:6630773,45706769 +g1,14796:6237557,45706769 +r1,14796:6368629,45706769:131072,39845888,0 +g1,14796:6567858,45706769 +g1,14796:6764466,45706769 +[1,14796:6764466,45706769:25818563,39845888,0 +v1,14703:6764466,6254097:0,393216,0 +(1,14720:6764466,14162919:25818563,8302038,196608 +g1,14720:6764466,14162919 +g1,14720:6764466,14162919 +g1,14720:6567858,14162919 +(1,14720:6567858,14162919:0,8302038,196608 +r1,14796:32779637,14162919:26211779,8498646,196608 +k1,14720:6567857,14162919:-26211780 +) +(1,14720:6567858,14162919:26211779,8302038,196608 +[1,14720:6764466,14162919:25818563,8105430,0 +(1,14705:6764466,6488534:25818563,431045,106246 +(1,14704:6764466,6488534:0,0,0 +g1,14704:6764466,6488534 +g1,14704:6764466,6488534 +g1,14704:6436786,6488534 +(1,14704:6436786,6488534:0,0,0 +) +g1,14704:6764466,6488534 +) +g1,14705:10084005,6488534 +g1,14705:11079867,6488534 +g1,14705:15395268,6488534 +g1,14705:16059176,6488534 +g1,14705:20374578,6488534 +g1,14705:22698256,6488534 +g1,14705:24358026,6488534 +k1,14705:24358026,6488534:0 +h1,14705:25685842,6488534:0,0,0 +k1,14705:32583029,6488534:6897187 +g1,14705:32583029,6488534 +) +(1,14706:6764466,7173389:25818563,424439,106246 +h1,14706:6764466,7173389:0,0,0 +g1,14706:7096420,7173389 +g1,14706:7428374,7173389 +g1,14706:7760328,7173389 +g1,14706:8092282,7173389 +g1,14706:8424236,7173389 +g1,14706:8756190,7173389 +g1,14706:9088144,7173389 +g1,14706:9420098,7173389 +g1,14706:9752052,7173389 +g1,14706:10084006,7173389 +g1,14706:10415960,7173389 +g1,14706:10747914,7173389 +g1,14706:11079868,7173389 +g1,14706:11411822,7173389 +g1,14706:11743776,7173389 +g1,14706:12075730,7173389 +g1,14706:12407684,7173389 +g1,14706:12739638,7173389 +g1,14706:13071592,7173389 +g1,14706:13403546,7173389 +g1,14706:13735500,7173389 +g1,14706:14067454,7173389 +g1,14706:14399408,7173389 +g1,14706:14731362,7173389 +g1,14706:15395270,7173389 +g1,14706:16059178,7173389 +g1,14706:21038488,7173389 +g1,14706:24358028,7173389 +h1,14706:25353890,7173389:0,0,0 +k1,14706:32583029,7173389:7229139 +g1,14706:32583029,7173389 +) +(1,14707:6764466,7858244:25818563,431045,6605 +h1,14707:6764466,7858244:0,0,0 +h1,14707:9752051,7858244:0,0,0 +k1,14707:32583029,7858244:22830978 +g1,14707:32583029,7858244 +) +(1,14719:6764466,8674171:25818563,398014,0 +(1,14709:6764466,8674171:0,0,0 +g1,14709:6764466,8674171 +g1,14709:6764466,8674171 +g1,14709:6436786,8674171 +(1,14709:6436786,8674171:0,0,0 +) +g1,14709:6764466,8674171 +) +g1,14719:7760328,8674171 +g1,14719:8092282,8674171 +g1,14719:8424236,8674171 +g1,14719:8756190,8674171 +g1,14719:9088144,8674171 +g1,14719:9752052,8674171 +g1,14719:10084006,8674171 +g1,14719:10415960,8674171 +g1,14719:10747914,8674171 +g1,14719:11079868,8674171 +h1,14719:11411822,8674171:0,0,0 +k1,14719:32583030,8674171:21171208 +g1,14719:32583030,8674171 +) +(1,14719:6764466,9359026:25818563,424439,106246 +h1,14719:6764466,9359026:0,0,0 +g1,14719:7760328,9359026 +g1,14719:8424236,9359026 +g1,14719:9752052,9359026 +h1,14719:11411822,9359026:0,0,0 +k1,14719:32583030,9359026:21171208 +g1,14719:32583030,9359026 +) +(1,14719:6764466,10043881:25818563,424439,106246 +h1,14719:6764466,10043881:0,0,0 +g1,14719:7760328,10043881 +g1,14719:8424236,10043881 +g1,14719:9752052,10043881 +h1,14719:11411822,10043881:0,0,0 +k1,14719:32583030,10043881:21171208 +g1,14719:32583030,10043881 +) +(1,14719:6764466,10728736:25818563,424439,106246 +h1,14719:6764466,10728736:0,0,0 +g1,14719:7760328,10728736 +g1,14719:8424236,10728736 +g1,14719:9752052,10728736 +h1,14719:11411822,10728736:0,0,0 +k1,14719:32583030,10728736:21171208 +g1,14719:32583030,10728736 +) +(1,14719:6764466,11413591:25818563,424439,106246 +h1,14719:6764466,11413591:0,0,0 +g1,14719:7760328,11413591 +g1,14719:8424236,11413591 +g1,14719:9752052,11413591 +h1,14719:11411822,11413591:0,0,0 +k1,14719:32583030,11413591:21171208 +g1,14719:32583030,11413591 +) +(1,14719:6764466,12098446:25818563,424439,9908 +h1,14719:6764466,12098446:0,0,0 +g1,14719:7760328,12098446 +g1,14719:8424236,12098446 +g1,14719:8756190,12098446 +g1,14719:9752052,12098446 +h1,14719:11411822,12098446:0,0,0 +k1,14719:32583030,12098446:21171208 +g1,14719:32583030,12098446 +) +(1,14719:6764466,12783301:25818563,424439,9908 +h1,14719:6764466,12783301:0,0,0 +g1,14719:7760328,12783301 +g1,14719:8424236,12783301 +g1,14719:8756190,12783301 +g1,14719:9752052,12783301 +h1,14719:11411822,12783301:0,0,0 +k1,14719:32583030,12783301:21171208 +g1,14719:32583030,12783301 +) +(1,14719:6764466,13468156:25818563,424439,6605 +h1,14719:6764466,13468156:0,0,0 +g1,14719:7760328,13468156 +g1,14719:8424236,13468156 +g1,14719:8756190,13468156 +g1,14719:9752052,13468156 +h1,14719:11411822,13468156:0,0,0 +k1,14719:32583030,13468156:21171208 +g1,14719:32583030,13468156 +) +(1,14719:6764466,14153011:25818563,424439,9908 +h1,14719:6764466,14153011:0,0,0 +g1,14719:7760328,14153011 +g1,14719:8424236,14153011 +g1,14719:8756190,14153011 +g1,14719:9752052,14153011 +h1,14719:11411822,14153011:0,0,0 +k1,14719:32583030,14153011:21171208 +g1,14719:32583030,14153011 +) +] +) +g1,14720:32583029,14162919 +g1,14720:6764466,14162919 +g1,14720:6764466,14162919 +g1,14720:32583029,14162919 +g1,14720:32583029,14162919 +) +h1,14720:6764466,14359527:0,0,0 +(1,14724:6764466,17589823:25818563,513147,126483 +h1,14723:6764466,17589823:983040,0,0 +g1,14723:9143422,17589823 +g1,14723:11608231,17589823 +g1,14723:14769032,17589823 +g1,14723:16684649,17589823 +g1,14723:19794332,17589823 +g1,14723:20609599,17589823 +k1,14724:32583029,17589823:10707274 +g1,14724:32583029,17589823 +) +v1,14726:6764466,19457287:0,393216,0 +(1,14735:6764466,21977001:25818563,2912930,196608 +g1,14735:6764466,21977001 +g1,14735:6764466,21977001 +g1,14735:6567858,21977001 +(1,14735:6567858,21977001:0,2912930,196608 +r1,14796:32779637,21977001:26211779,3109538,196608 +k1,14735:6567857,21977001:-26211780 +) +(1,14735:6567858,21977001:26211779,2912930,196608 +[1,14735:6764466,21977001:25818563,2716322,0 +(1,14728:6764466,19685118:25818563,424439,106246 +(1,14727:6764466,19685118:0,0,0 +g1,14727:6764466,19685118 +g1,14727:6764466,19685118 +g1,14727:6436786,19685118 +(1,14727:6436786,19685118:0,0,0 +) +g1,14727:6764466,19685118 +) +k1,14728:6764466,19685118:0 +h1,14728:13403545,19685118:0,0,0 +k1,14728:32583029,19685118:19179484 +g1,14728:32583029,19685118 +) +(1,14734:6764466,20501045:25818563,431045,33029 +(1,14730:6764466,20501045:0,0,0 +g1,14730:6764466,20501045 +g1,14730:6764466,20501045 +g1,14730:6436786,20501045 +(1,14730:6436786,20501045:0,0,0 +) +g1,14730:6764466,20501045 +) +g1,14734:7760328,20501045 +h1,14734:11079867,20501045:0,0,0 +k1,14734:32583029,20501045:21503162 +g1,14734:32583029,20501045 +) +(1,14734:6764466,21185900:25818563,424439,6605 +h1,14734:6764466,21185900:0,0,0 +g1,14734:7760328,21185900 +g1,14734:8092282,21185900 +g1,14734:8424236,21185900 +g1,14734:8756190,21185900 +g1,14734:9088144,21185900 +g1,14734:9420098,21185900 +g1,14734:9752052,21185900 +g1,14734:10084006,21185900 +g1,14734:10415960,21185900 +g1,14734:13735499,21185900 +g1,14734:14067453,21185900 +g1,14734:14399407,21185900 +g1,14734:14731361,21185900 +g1,14734:15063315,21185900 +g1,14734:15395269,21185900 +g1,14734:15727223,21185900 +g1,14734:16059177,21185900 +g1,14734:16391131,21185900 +g1,14734:16723085,21185900 +g1,14734:17055039,21185900 +h1,14734:19378717,21185900:0,0,0 +k1,14734:32583029,21185900:13204312 +g1,14734:32583029,21185900 +) +(1,14734:6764466,21870755:25818563,424439,106246 +h1,14734:6764466,21870755:0,0,0 +g1,14734:7760328,21870755 +g1,14734:13735499,21870755 +g1,14734:14067453,21870755 +g1,14734:14399407,21870755 +g1,14734:14731361,21870755 +g1,14734:15063315,21870755 +g1,14734:15395269,21870755 +h1,14734:19378716,21870755:0,0,0 +k1,14734:32583029,21870755:13204313 +g1,14734:32583029,21870755 +) +] +) +g1,14735:32583029,21977001 +g1,14735:6764466,21977001 +g1,14735:6764466,21977001 +g1,14735:32583029,21977001 +g1,14735:32583029,21977001 +) +h1,14735:6764466,22173609:0,0,0 +(1,14739:6764466,25403905:25818563,513147,134348 +h1,14738:6764466,25403905:983040,0,0 +k1,14738:8438252,25403905:203158 +k1,14738:10629121,25403905:203162 +k1,14738:12919605,25403905:203162 +k1,14738:14070417,25403905:203161 +k1,14738:14629439,25403905:203162 +k1,14738:16820308,25403905:203162 +k1,14738:17971121,25403905:203162 +k1,14738:18530143,25403905:203162 +k1,14738:21356711,25403905:203162 +k1,14738:24216046,25403905:203161 +k1,14738:26507840,25403905:203162 +k1,14738:28104953,25403905:203162 +k1,14738:29117485,25403905:203162 +k1,14738:32583029,25403905:0 +) +(1,14739:6764466,26268985:25818563,426639,7863 +k1,14739:32583029,26268985:24132322 +g1,14739:32583029,26268985 +) +v1,14741:6764466,28136448:0,393216,0 +(1,14764:6764466,40224314:25818563,12481082,196608 +g1,14764:6764466,40224314 +g1,14764:6764466,40224314 +g1,14764:6567858,40224314 +(1,14764:6567858,40224314:0,12481082,196608 +r1,14796:32779637,40224314:26211779,12677690,196608 +k1,14764:6567857,40224314:-26211780 +) +(1,14764:6567858,40224314:26211779,12481082,196608 +[1,14764:6764466,40224314:25818563,12284474,0 +(1,14743:6764466,28370885:25818563,431045,86428 +(1,14742:6764466,28370885:0,0,0 +g1,14742:6764466,28370885 +g1,14742:6764466,28370885 +g1,14742:6436786,28370885 +(1,14742:6436786,28370885:0,0,0 +) +g1,14742:6764466,28370885 +) +k1,14743:6764466,28370885:0 +g1,14743:11743775,28370885 +g1,14743:12407683,28370885 +g1,14743:13071591,28370885 +g1,14743:14067453,28370885 +h1,14743:17386992,28370885:0,0,0 +k1,14743:32583029,28370885:15196037 +g1,14743:32583029,28370885 +) +(1,14763:6764466,29186812:25818563,424439,106246 +(1,14745:6764466,29186812:0,0,0 +g1,14745:6764466,29186812 +g1,14745:6764466,29186812 +g1,14745:6436786,29186812 +(1,14745:6436786,29186812:0,0,0 +) +g1,14745:6764466,29186812 +) +g1,14763:7760328,29186812 +g1,14763:8092282,29186812 +g1,14763:8424236,29186812 +g1,14763:12407683,29186812 +g1,14763:14067453,29186812 +h1,14763:16059177,29186812:0,0,0 +k1,14763:32583029,29186812:16523852 +g1,14763:32583029,29186812 +) +(1,14763:6764466,29871667:25818563,407923,0 +h1,14763:6764466,29871667:0,0,0 +g1,14763:7760328,29871667 +g1,14763:8424236,29871667 +g1,14763:8756190,29871667 +g1,14763:9088144,29871667 +g1,14763:9420098,29871667 +g1,14763:9752052,29871667 +g1,14763:10084006,29871667 +g1,14763:10415960,29871667 +g1,14763:10747914,29871667 +g1,14763:11079868,29871667 +g1,14763:11411822,29871667 +g1,14763:11743776,29871667 +g1,14763:12407684,29871667 +g1,14763:12739638,29871667 +g1,14763:13071592,29871667 +g1,14763:13403546,29871667 +g1,14763:14067454,29871667 +g1,14763:14399408,29871667 +g1,14763:14731362,29871667 +g1,14763:15063316,29871667 +g1,14763:15395270,29871667 +g1,14763:15727224,29871667 +h1,14763:16059178,29871667:0,0,0 +k1,14763:32583029,29871667:16523851 +g1,14763:32583029,29871667 +) +(1,14763:6764466,30556522:25818563,407923,9908 +h1,14763:6764466,30556522:0,0,0 +g1,14763:7760328,30556522 +g1,14763:8424236,30556522 +g1,14763:8756190,30556522 +g1,14763:9088144,30556522 +g1,14763:9420098,30556522 +g1,14763:9752052,30556522 +g1,14763:10084006,30556522 +g1,14763:10415960,30556522 +g1,14763:10747914,30556522 +g1,14763:11079868,30556522 +g1,14763:11411822,30556522 +g1,14763:11743776,30556522 +g1,14763:12407684,30556522 +g1,14763:12739638,30556522 +g1,14763:13071592,30556522 +g1,14763:13403546,30556522 +g1,14763:14067454,30556522 +g1,14763:14399408,30556522 +g1,14763:14731362,30556522 +g1,14763:15063316,30556522 +g1,14763:15395270,30556522 +g1,14763:15727224,30556522 +h1,14763:16059178,30556522:0,0,0 +k1,14763:32583029,30556522:16523851 +g1,14763:32583029,30556522 +) +(1,14763:6764466,31241377:25818563,407923,9908 +h1,14763:6764466,31241377:0,0,0 +g1,14763:7760328,31241377 +g1,14763:8424236,31241377 +g1,14763:8756190,31241377 +g1,14763:9088144,31241377 +g1,14763:9420098,31241377 +g1,14763:9752052,31241377 +g1,14763:10084006,31241377 +g1,14763:10415960,31241377 +g1,14763:10747914,31241377 +g1,14763:11079868,31241377 +g1,14763:11411822,31241377 +g1,14763:11743776,31241377 +g1,14763:12407684,31241377 +g1,14763:12739638,31241377 +g1,14763:13071592,31241377 +g1,14763:13403546,31241377 +g1,14763:14067454,31241377 +g1,14763:14399408,31241377 +g1,14763:14731362,31241377 +g1,14763:15063316,31241377 +g1,14763:15395270,31241377 +g1,14763:15727224,31241377 +h1,14763:16059178,31241377:0,0,0 +k1,14763:32583029,31241377:16523851 +g1,14763:32583029,31241377 +) +(1,14763:6764466,31926232:25818563,407923,9908 +h1,14763:6764466,31926232:0,0,0 +g1,14763:7760328,31926232 +g1,14763:8424236,31926232 +g1,14763:8756190,31926232 +g1,14763:9088144,31926232 +g1,14763:9420098,31926232 +g1,14763:9752052,31926232 +g1,14763:10084006,31926232 +g1,14763:10415960,31926232 +g1,14763:10747914,31926232 +g1,14763:11079868,31926232 +g1,14763:11411822,31926232 +g1,14763:11743776,31926232 +g1,14763:12407684,31926232 +g1,14763:12739638,31926232 +g1,14763:13071592,31926232 +g1,14763:13403546,31926232 +g1,14763:14067454,31926232 +g1,14763:14399408,31926232 +g1,14763:14731362,31926232 +g1,14763:15063316,31926232 +g1,14763:15395270,31926232 +g1,14763:15727224,31926232 +h1,14763:16059178,31926232:0,0,0 +k1,14763:32583029,31926232:16523851 +g1,14763:32583029,31926232 +) +(1,14763:6764466,32611087:25818563,407923,9908 +h1,14763:6764466,32611087:0,0,0 +g1,14763:7760328,32611087 +g1,14763:8424236,32611087 +g1,14763:8756190,32611087 +g1,14763:9088144,32611087 +g1,14763:9420098,32611087 +g1,14763:9752052,32611087 +g1,14763:10084006,32611087 +g1,14763:10415960,32611087 +g1,14763:10747914,32611087 +g1,14763:11079868,32611087 +g1,14763:11411822,32611087 +g1,14763:11743776,32611087 +g1,14763:12407684,32611087 +g1,14763:12739638,32611087 +g1,14763:13071592,32611087 +g1,14763:13403546,32611087 +g1,14763:14067454,32611087 +g1,14763:14399408,32611087 +g1,14763:14731362,32611087 +g1,14763:15063316,32611087 +g1,14763:15395270,32611087 +g1,14763:15727224,32611087 +h1,14763:16059178,32611087:0,0,0 +k1,14763:32583029,32611087:16523851 +g1,14763:32583029,32611087 +) +(1,14763:6764466,33295942:25818563,407923,9908 +h1,14763:6764466,33295942:0,0,0 +g1,14763:7760328,33295942 +g1,14763:8424236,33295942 +g1,14763:8756190,33295942 +g1,14763:9088144,33295942 +g1,14763:9420098,33295942 +g1,14763:9752052,33295942 +g1,14763:10084006,33295942 +g1,14763:10415960,33295942 +g1,14763:10747914,33295942 +g1,14763:11079868,33295942 +g1,14763:11411822,33295942 +g1,14763:11743776,33295942 +g1,14763:12407684,33295942 +g1,14763:12739638,33295942 +g1,14763:13071592,33295942 +g1,14763:13403546,33295942 +g1,14763:14067454,33295942 +g1,14763:14399408,33295942 +g1,14763:14731362,33295942 +g1,14763:15063316,33295942 +g1,14763:15395270,33295942 +g1,14763:15727224,33295942 +h1,14763:16059178,33295942:0,0,0 +k1,14763:32583029,33295942:16523851 +g1,14763:32583029,33295942 +) +(1,14763:6764466,33980797:25818563,407923,9908 +h1,14763:6764466,33980797:0,0,0 +g1,14763:7760328,33980797 +g1,14763:8424236,33980797 +g1,14763:8756190,33980797 +g1,14763:9088144,33980797 +g1,14763:9420098,33980797 +g1,14763:9752052,33980797 +g1,14763:10084006,33980797 +g1,14763:10415960,33980797 +g1,14763:10747914,33980797 +g1,14763:11079868,33980797 +g1,14763:11411822,33980797 +g1,14763:11743776,33980797 +g1,14763:12407684,33980797 +g1,14763:12739638,33980797 +g1,14763:13071592,33980797 +g1,14763:13403546,33980797 +g1,14763:14067454,33980797 +g1,14763:14399408,33980797 +g1,14763:14731362,33980797 +g1,14763:15063316,33980797 +g1,14763:15395270,33980797 +g1,14763:15727224,33980797 +h1,14763:16059178,33980797:0,0,0 +k1,14763:32583029,33980797:16523851 +g1,14763:32583029,33980797 +) +(1,14763:6764466,34665652:25818563,407923,9908 +h1,14763:6764466,34665652:0,0,0 +g1,14763:7760328,34665652 +g1,14763:8424236,34665652 +g1,14763:8756190,34665652 +g1,14763:9088144,34665652 +g1,14763:9420098,34665652 +g1,14763:9752052,34665652 +g1,14763:10084006,34665652 +g1,14763:10415960,34665652 +g1,14763:10747914,34665652 +g1,14763:11079868,34665652 +g1,14763:11411822,34665652 +g1,14763:11743776,34665652 +g1,14763:12407684,34665652 +g1,14763:12739638,34665652 +g1,14763:13071592,34665652 +g1,14763:13403546,34665652 +g1,14763:14067454,34665652 +g1,14763:14399408,34665652 +g1,14763:14731362,34665652 +g1,14763:15063316,34665652 +g1,14763:15395270,34665652 +g1,14763:15727224,34665652 +h1,14763:16059178,34665652:0,0,0 +k1,14763:32583029,34665652:16523851 +g1,14763:32583029,34665652 +) +(1,14763:6764466,35350507:25818563,424439,112852 +h1,14763:6764466,35350507:0,0,0 +g1,14763:7760328,35350507 +k1,14763:7760328,35350507:0 +h1,14763:12739637,35350507:0,0,0 +k1,14763:32583029,35350507:19843392 +g1,14763:32583029,35350507 +) +(1,14763:6764466,36035362:25818563,424439,79822 +h1,14763:6764466,36035362:0,0,0 +g1,14763:7760328,36035362 +g1,14763:9088144,36035362 +g1,14763:9752052,36035362 +g1,14763:10415960,36035362 +h1,14763:10747914,36035362:0,0,0 +k1,14763:32583030,36035362:21835116 +g1,14763:32583030,36035362 +) +(1,14763:6764466,36720217:25818563,424439,86428 +h1,14763:6764466,36720217:0,0,0 +g1,14763:7760328,36720217 +k1,14763:7760328,36720217:0 +h1,14763:13735499,36720217:0,0,0 +k1,14763:32583029,36720217:18847530 +g1,14763:32583029,36720217 +) +(1,14763:6764466,37405072:25818563,431045,86428 +h1,14763:6764466,37405072:0,0,0 +g1,14763:7760328,37405072 +k1,14763:7760328,37405072:0 +h1,14763:14399407,37405072:0,0,0 +k1,14763:32583029,37405072:18183622 +g1,14763:32583029,37405072 +) +(1,14763:6764466,38089927:25818563,424439,79822 +h1,14763:6764466,38089927:0,0,0 +g1,14763:7760328,38089927 +g1,14763:9088144,38089927 +h1,14763:14731361,38089927:0,0,0 +k1,14763:32583029,38089927:17851668 +g1,14763:32583029,38089927 +) +(1,14763:6764466,38774782:25818563,398014,0 +h1,14763:6764466,38774782:0,0,0 +h1,14763:7428374,38774782:0,0,0 +k1,14763:32583030,38774782:25154656 +g1,14763:32583030,38774782 +) +(1,14763:6764466,39459637:25818563,431045,86428 +h1,14763:6764466,39459637:0,0,0 +g1,14763:7760328,39459637 +k1,14763:7760328,39459637:0 +h1,14763:14399407,39459637:0,0,0 +k1,14763:32583029,39459637:18183622 +g1,14763:32583029,39459637 +) +(1,14763:6764466,40144492:25818563,424439,79822 +h1,14763:6764466,40144492:0,0,0 +g1,14763:7760328,40144492 +g1,14763:9088144,40144492 +h1,14763:14731361,40144492:0,0,0 +k1,14763:32583029,40144492:17851668 +g1,14763:32583029,40144492 +) +] +) +g1,14764:32583029,40224314 +g1,14764:6764466,40224314 +g1,14764:6764466,40224314 +g1,14764:32583029,40224314 +g1,14764:32583029,40224314 +) +h1,14764:6764466,40420922:0,0,0 +(1,14768:6764466,43651218:25818563,513147,134348 +h1,14767:6764466,43651218:983040,0,0 +k1,14767:8522552,43651218:287458 +k1,14767:10797805,43651218:287546 +k1,14767:13172674,43651218:287547 +k1,14767:14407872,43651218:287547 +k1,14767:15051278,43651218:287546 +k1,14767:17326532,43651218:287547 +k1,14767:18561729,43651218:287546 +k1,14767:19205136,43651218:287547 +k1,14767:22116088,43651218:287546 +k1,14767:25059809,43651218:287547 +k1,14767:27435987,43651218:287546 +k1,14767:29117485,43651218:287547 +k1,14767:32583029,43651218:0 +) +(1,14768:6764466,44516298:25818563,426639,7863 +k1,14768:32583029,44516298:24132322 +g1,14768:32583029,44516298 +) +] +g1,14796:32583029,45706769 +) +] +(1,14796:32583029,45706769:0,0,0 +g1,14796:32583029,45706769 +) +) +] +(1,14796:6630773,47279633:25952256,0,0 +h1,14796:6630773,47279633:25952256,0,0 +) +] +(1,14796:4262630,4025873:0,0,0 +[1,14796:-473656,4025873:0,0,0 +(1,14796:-473656,-710413:0,0,0 +(1,14796:-473656,-710413:0,0,0 +g1,14796:-473656,-710413 +) +g1,14796:-473656,-710413 ) ] -) -) ) ] -[1,15112:3078558,4812305:0,0,0 -(1,15112:3078558,49800853:0,16384,2228224 -g1,15112:29030814,49800853 -g1,15112:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,15112:36151628,51504789:16384,1179648,0 +!22058 +}236 +Input:2209:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2210:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2211:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2212:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2213:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2214:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2215:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2216:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2217:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2218:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2219:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2220:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1140 +{237 +[1,14821:4262630,47279633:28320399,43253760,0 +(1,14821:4262630,4025873:0,0,0 +[1,14821:-473656,4025873:0,0,0 +(1,14821:-473656,-710413:0,0,0 +(1,14821:-473656,-644877:0,0,0 +k1,14821:-473656,-644877:-65536 ) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 +(1,14821:-473656,4736287:0,0,0 +k1,14821:-473656,4736287:5209943 +) +g1,14821:-473656,-710413 ) ] ) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,15112:37855564,49800853:1179648,16384,0 +[1,14821:6630773,47279633:25952256,43253760,0 +[1,14821:6630773,4812305:25952256,786432,0 +(1,14821:6630773,4812305:25952256,513147,126483 +(1,14821:6630773,4812305:25952256,513147,126483 +g1,14821:3078558,4812305 +[1,14821:3078558,4812305:0,0,0 +(1,14821:3078558,2439708:0,1703936,0 +k1,14821:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,14821:2537886,2439708:1179648,16384,0 ) +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,14821:3078558,1915420:16384,1179648,0 ) -k1,15112:3078556,49800853:-34777008 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] -g1,15112:6630773,4812305 -g1,15112:6630773,4812305 -g1,15112:10653372,4812305 -g1,15112:13512052,4812305 -k1,15112:31387652,4812305:17875600 -) -) -] -[1,15112:6630773,45706769:25952256,40108032,0 -(1,15112:6630773,45706769:25952256,40108032,0 -(1,15112:6630773,45706769:0,0,0 -g1,15112:6630773,45706769 -) -[1,15112:6630773,45706769:25952256,40108032,0 -(1,15028:6630773,16109226:25952256,10510489,0 -k1,15028:12599879,16109226:5969106 -h1,15027:12599879,16109226:0,0,0 -(1,15027:12599879,16109226:14014044,10510489,0 -(1,15027:12599879,16109226:14014019,10510515,0 -(1,15027:12599879,16109226:14014019,10510515,0 -(1,15027:12599879,16109226:0,10510515,0 -(1,15027:12599879,16109226:0,14208860,0 -(1,15027:12599879,16109226:18945146,14208860,0 -) -k1,15027:12599879,16109226:-18945146 -) -) -g1,15027:26613898,16109226 -) -) -) -g1,15028:26613923,16109226 -k1,15028:32583029,16109226:5969106 -) -(1,15035:6630773,16950714:25952256,513147,134348 -h1,15034:6630773,16950714:983040,0,0 -k1,15034:10383823,16950714:238354 -k1,15034:12272374,16950714:238354 -k1,15034:15462470,16950714:238354 -k1,15034:17308422,16950714:238354 -k1,15034:18206069,16950714:238355 -k1,15034:19463508,16950714:238354 -k1,15034:22543503,16950714:238354 -k1,15034:26709430,16950714:238354 -k1,15034:28139229,16950714:238354 -k1,15034:29886222,16950714:238354 -k1,15034:32583029,16950714:0 -) -(1,15035:6630773,17792202:25952256,505283,134348 -k1,15034:7877016,17792202:141961 -k1,15034:8766743,17792202:141961 -k1,15034:11700538,17792202:141961 -k1,15034:13577892,17792202:141961 -k1,15034:16300005,17792202:141961 -k1,15034:18855656,17792202:141961 -k1,15034:22087640,17792202:141961 -k1,15034:22845639,17792202:141961 -k1,15034:25405223,17792202:141961 -h1,15034:25803682,17792202:0,0,0 -k1,15034:25945643,17792202:141961 -k1,15034:26896974,17792202:141961 -k1,15034:28537088,17792202:141961 -h1,15034:29732465,17792202:0,0,0 -k1,15034:30048096,17792202:141961 -k1,15034:32583029,17792202:0 -) -(1,15035:6630773,18633690:25952256,513147,134348 -k1,15034:9910748,18633690:187987 -k1,15034:12581240,18633690:187988 -k1,15034:15182917,18633690:187987 -k1,15034:16095733,18633690:187988 -k1,15034:16969882,18633690:187987 -k1,15034:17809297,18633690:187987 -k1,15034:19713018,18633690:187988 -k1,15034:20359102,18633690:187987 -k1,15034:21941695,18633690:187987 -k1,15034:22781111,18633690:187988 -k1,15034:24246395,18633690:187987 -k1,15034:27276024,18633690:187988 -k1,15034:31391584,18633690:187987 -k1,15034:32583029,18633690:0 -) -(1,15035:6630773,19475178:25952256,505283,134348 -g1,15034:8338641,19475178 -k1,15035:32583030,19475178:21373912 -g1,15035:32583030,19475178 -) -v1,15037:6630773,20840954:0,393216,0 -(1,15038:6630773,24773792:25952256,4326054,0 -g1,15038:6630773,24773792 -g1,15038:6303093,24773792 -r1,15112:6401397,24773792:98304,4326054,0 -g1,15038:6600626,24773792 -g1,15038:6797234,24773792 -[1,15038:6797234,24773792:25785795,4326054,0 -(1,15038:6797234,21273492:25785795,825754,196608 -(1,15037:6797234,21273492:0,825754,196608 -r1,15112:7890375,21273492:1093141,1022362,196608 -k1,15037:6797234,21273492:-1093141 -) -(1,15037:6797234,21273492:1093141,825754,196608 -) -k1,15037:8157303,21273492:266928 -k1,15037:9883521,21273492:327680 -k1,15037:11192471,21273492:266928 -k1,15037:13709250,21273492:266928 -k1,15037:15167623,21273492:266928 -k1,15037:20037145,21273492:266928 -k1,15037:21867107,21273492:266928 -k1,15037:22489895,21273492:266928 -k1,15037:28780892,21273492:266928 -k1,15037:30152102,21273492:266928 -k1,15037:31166796,21273492:266928 -k1,15038:32583029,21273492:0 -) -(1,15038:6797234,22114980:25785795,513147,134348 -k1,15037:8289816,22114980:183828 -k1,15037:10168406,22114980:183829 -k1,15037:11636740,22114980:183828 -k1,15037:14474776,22114980:183828 -k1,15037:15190102,22114980:183829 -k1,15037:18678911,22114980:183828 -k1,15037:22898446,22114980:183828 -k1,15037:23733703,22114980:183829 -k1,15037:24936616,22114980:183828 -k1,15037:28526350,22114980:183828 -k1,15037:29369471,22114980:183829 -k1,15037:30572384,22114980:183828 -k1,15037:32583029,22114980:0 -) -(1,15038:6797234,22956468:25785795,513147,134348 -k1,15037:10269768,22956468:174107 -k1,15037:11397425,22956468:174108 -k1,15037:13184373,22956468:174107 -k1,15037:14044642,22956468:174107 -k1,15037:14989453,22956468:174108 -k1,15037:17724052,22956468:174107 -k1,15037:18549587,22956468:174107 -k1,15037:20740238,22956468:174108 -k1,15037:21933430,22956468:174107 -k1,15037:23962861,22956468:174107 -k1,15037:26691562,22956468:174108 -k1,15037:28601062,22956468:174107 -k1,15037:32583029,22956468:0 -) -(1,15038:6797234,23797956:25785795,513147,126483 -k1,15037:9013287,23797956:205408 -k1,15037:10166347,23797956:205409 -k1,15037:11390840,23797956:205408 -k1,15037:15271508,23797956:205409 -k1,15037:16136208,23797956:205408 -k1,15037:18257890,23797956:205409 -k1,15037:19654743,23797956:205408 -k1,15037:22023494,23797956:205408 -k1,15037:23649724,23797956:205409 -k1,15037:25638367,23797956:205408 -k1,15037:27336686,23797956:205409 -k1,15037:28561179,23797956:205408 -k1,15037:29859073,23797956:205409 -k1,15037:30723773,23797956:205408 -k1,15038:32583029,23797956:0 -) -(1,15038:6797234,24639444:25785795,513147,134348 -g1,15037:10517712,24639444 -g1,15037:12957617,24639444 -g1,15037:14175931,24639444 -g1,15037:17136847,24639444 -g1,15037:17995368,24639444 -g1,15037:19213682,24639444 -k1,15038:32583029,24639444:10487729 -g1,15038:32583029,24639444 -) -] -g1,15038:32583029,24773792 -) -h1,15038:6630773,24773792:0,0,0 -v1,15041:6630773,26139568:0,393216,0 -(1,15051:6630773,31141427:25952256,5395075,0 -g1,15051:6630773,31141427 -g1,15051:6303093,31141427 -r1,15112:6401397,31141427:98304,5395075,0 -g1,15051:6600626,31141427 -g1,15051:6797234,31141427 -[1,15051:6797234,31141427:25785795,5395075,0 -(1,15042:6797234,26572106:25785795,825754,196608 -(1,15041:6797234,26572106:0,825754,196608 -r1,15112:8834093,26572106:2036859,1022362,196608 -k1,15041:6797234,26572106:-2036859 -) -(1,15041:6797234,26572106:2036859,825754,196608 -) -k1,15041:9044680,26572106:210587 -k1,15041:10770898,26572106:327680 -k1,15041:11799375,26572106:210588 -k1,15041:12957613,26572106:210587 -k1,15041:14870171,26572106:210588 -k1,15041:16793214,26572106:210587 -k1,15041:19495481,26572106:210588 -k1,15041:20725153,26572106:210587 -k1,15041:22895267,26572106:210588 -k1,15041:25884581,26572106:210587 -k1,15041:26856697,26572106:210588 -k1,15041:29762780,26572106:210587 -(1,15041:29762780,26572106:0,452978,115847 -r1,15112:32583029,26572106:2820249,568825,115847 -k1,15041:29762780,26572106:-2820249 -) -(1,15041:29762780,26572106:2820249,452978,115847 -k1,15041:29762780,26572106:3277 -h1,15041:32579752,26572106:0,411205,112570 -) -k1,15041:32583029,26572106:0 -) -(1,15042:6797234,27413594:25785795,513147,134348 -k1,15041:7538165,27413594:209434 -k1,15041:10100343,27413594:209435 -k1,15041:11703728,27413594:209434 -k1,15041:14584409,27413594:209434 -k1,15041:18721416,27413594:209434 -k1,15041:20122296,27413594:209435 -k1,15041:22798505,27413594:209434 -k1,15041:23659367,27413594:209434 -k1,15041:24224662,27413594:209435 -k1,15041:25989265,27413594:209434 -k1,15041:26857991,27413594:209434 -k1,15041:28086510,27413594:209434 -k1,15041:29949418,27413594:209435 -k1,15041:31896867,27413594:209434 -k1,15041:32583029,27413594:0 -) -(1,15042:6797234,28255082:25785795,513147,115847 -g1,15041:8015548,28255082 -g1,15041:11083943,28255082 -g1,15041:12349443,28255082 -g1,15041:14931561,28255082 -g1,15041:16698411,28255082 -g1,15041:18452809,28255082 -(1,15041:18452809,28255082:0,452978,115847 -r1,15112:20569634,28255082:2116825,568825,115847 -k1,15041:18452809,28255082:-2116825 -) -(1,15041:18452809,28255082:2116825,452978,115847 -k1,15041:18452809,28255082:3277 -h1,15041:20566357,28255082:0,411205,112570 -) -k1,15042:32583029,28255082:11839725 -g1,15042:32583029,28255082 -) -v1,15044:6797234,29445548:0,393216,0 -(1,15049:6797234,30420531:25785795,1368199,196608 -g1,15049:6797234,30420531 -g1,15049:6797234,30420531 -g1,15049:6600626,30420531 -(1,15049:6600626,30420531:0,1368199,196608 -r1,15112:32779637,30420531:26179011,1564807,196608 -k1,15049:6600625,30420531:-26179012 -) -(1,15049:6600626,30420531:26179011,1368199,196608 -[1,15049:6797234,30420531:25785795,1171591,0 -(1,15046:6797234,29653166:25785795,404226,101187 -(1,15045:6797234,29653166:0,0,0 -g1,15045:6797234,29653166 -g1,15045:6797234,29653166 -g1,15045:6469554,29653166 -(1,15045:6469554,29653166:0,0,0 -) -g1,15045:6797234,29653166 -) -k1,15046:6797234,29653166:0 -h1,15046:9642545,29653166:0,0,0 -k1,15046:32583029,29653166:22940484 -g1,15046:32583029,29653166 -) -(1,15047:6797234,30319344:25785795,404226,101187 -h1,15047:6797234,30319344:0,0,0 -g1,15047:9326400,30319344 -g1,15047:12487857,30319344 -g1,15047:13120149,30319344 -h1,15047:13752441,30319344:0,0,0 -k1,15047:32583029,30319344:18830588 -g1,15047:32583029,30319344 -) -] -) -g1,15049:32583029,30420531 -g1,15049:6797234,30420531 -g1,15049:6797234,30420531 -g1,15049:32583029,30420531 -g1,15049:32583029,30420531 -) -h1,15049:6797234,30617139:0,0,0 -] -g1,15051:32583029,31141427 -) -h1,15051:6630773,31141427:0,0,0 -(1,15055:6630773,33756975:25952256,555811,147783 -(1,15055:6630773,33756975:2899444,534184,12975 -g1,15055:6630773,33756975 -g1,15055:9530217,33756975 -) -g1,15055:16068744,33756975 -k1,15055:32583029,33756975:13973847 -g1,15055:32583029,33756975 -) -(1,15060:6630773,34991679:25952256,513147,134348 -k1,15058:7976083,34991679:148623 -k1,15058:9301733,34991679:148623 -k1,15058:10109648,34991679:148623 -k1,15058:15862255,34991679:148623 -k1,15058:18225996,34991679:148624 -k1,15058:20210887,34991679:148572 -k1,15058:20891008,34991679:148624 -k1,15058:21691059,34991679:148623 -k1,15058:24642657,34991679:148623 -k1,15058:25407318,34991679:148623 -k1,15058:26457666,34991679:148573 -k1,15058:28394111,34991679:148623 -k1,15058:29561819,34991679:148623 -k1,15058:32583029,34991679:0 -) -(1,15060:6630773,35833167:25952256,513147,126483 -k1,15058:9461273,35833167:195297 -k1,15058:11253027,35833167:195297 -k1,15058:12107616,35833167:195297 -k1,15058:16548335,35833167:195297 -k1,15058:17940319,35833167:195297 -k1,15058:20146261,35833167:195297 -k1,15058:21289210,35833167:195298 -k1,15058:22503592,35833167:195297 -k1,15058:25585095,35833167:195297 -k1,15058:29036221,35833167:195297 -k1,15058:30223078,35833167:195297 -k1,15058:31931601,35833167:195297 -k1,15058:32583029,35833167:0 -) -(1,15060:6630773,36674655:25952256,513147,134348 -k1,15058:9555696,36674655:137021 -k1,15058:10048576,36674655:137020 -k1,15058:12889612,36674655:137021 -k1,15058:13685925,36674655:137021 -k1,15058:16483707,36674655:137020 -k1,15058:18780139,36674655:137021 -k1,15058:20513617,36674655:137021 -k1,15058:21309930,36674655:137021 -k1,15058:25692372,36674655:137020 -k1,15058:27026080,36674655:137021 -k1,15058:29241248,36674655:137021 -k1,15058:30037560,36674655:137020 -k1,15058:31193666,36674655:137021 -k1,15058:32583029,36674655:0 -) -(1,15060:6630773,37516143:25952256,513147,11795 -k1,15058:7999772,37516143:236537 -k1,15058:11144798,37516143:236538 -k1,15058:12929951,37516143:236537 -k1,15058:15827250,37516143:236537 -k1,15058:18111133,37516143:236538 -k1,15058:18879167,37516143:236537 -k1,15058:20717404,37516143:236537 -k1,15058:24829741,37516143:236538 -k1,15059:26108300,37516143:236537 -k1,15059:27766931,37516143:236500 -k1,15059:28871820,37516143:236537 -k1,15059:30596681,37516143:236538 -k1,15059:32227169,37516143:236537 -k1,15059:32583029,37516143:0 -) -(1,15060:6630773,38357631:25952256,513147,134348 -k1,15059:8888816,38357631:170721 -k1,15059:9718829,38357631:170721 -k1,15059:12880614,38357631:170722 -k1,15059:15210746,38357631:170721 -k1,15059:19626889,38357631:170721 -k1,15059:20751159,38357631:170721 -k1,15059:22054343,38357631:170722 -k1,15059:23491220,38357631:170721 -k1,15059:24609592,38357631:170721 -k1,15059:25799398,38357631:170721 -k1,15059:28805207,38357631:170722 -k1,15059:31966991,38357631:170721 -k1,15059:32583029,38357631:0 -) -(1,15060:6630773,39199119:25952256,513147,134348 -g1,15059:10213626,39199119 -g1,15059:13048058,39199119 -g1,15059:16752152,39199119 -g1,15059:19838242,39199119 -g1,15059:20653509,39199119 -g1,15059:23089482,39199119 -g1,15059:24856332,39199119 -g1,15059:26444924,39199119 -g1,15059:27578696,39199119 -(1,15059:27578696,39199119:0,452978,115847 -r1,15112:30398945,39199119:2820249,568825,115847 -k1,15059:27578696,39199119:-2820249 -) -(1,15059:27578696,39199119:2820249,452978,115847 -k1,15059:27578696,39199119:3277 -h1,15059:30395668,39199119:0,411205,112570 -) -k1,15060:32583029,39199119:2010414 -g1,15060:32583029,39199119 -) -v1,15062:6630773,40389585:0,393216,0 -(1,15066:6630773,40673224:25952256,676855,196608 -g1,15066:6630773,40673224 -g1,15066:6630773,40673224 -g1,15066:6434165,40673224 -(1,15066:6434165,40673224:0,676855,196608 -r1,15112:32779637,40673224:26345472,873463,196608 -k1,15066:6434165,40673224:-26345472 -) -(1,15066:6434165,40673224:26345472,676855,196608 -[1,15066:6630773,40673224:25952256,480247,0 -(1,15064:6630773,40597203:25952256,404226,76021 -(1,15063:6630773,40597203:0,0,0 -g1,15063:6630773,40597203 -g1,15063:6630773,40597203 -g1,15063:6303093,40597203 -(1,15063:6303093,40597203:0,0,0 -) -g1,15063:6630773,40597203 -) -g1,15064:7895356,40597203 -g1,15064:8843794,40597203 -k1,15064:8843794,40597203:0 -h1,15064:14534416,40597203:0,0,0 -k1,15064:32583028,40597203:18048612 -g1,15064:32583028,40597203 -) -] -) -g1,15066:32583029,40673224 -g1,15066:6630773,40673224 -g1,15066:6630773,40673224 -g1,15066:32583029,40673224 -g1,15066:32583029,40673224 -) -h1,15066:6630773,40869832:0,0,0 -(1,15070:6630773,42235608:25952256,513147,134348 -h1,15069:6630773,42235608:983040,0,0 -k1,15069:8777363,42235608:210001 -k1,15069:10091646,42235608:210001 -k1,15069:11326629,42235608:210000 -k1,15069:12821136,42235608:210001 -k1,15069:14050222,42235608:210001 -k1,15069:17038950,42235608:210001 -k1,15069:19208476,42235608:210000 -(1,15069:19208476,42235608:0,452978,115847 -r1,15112:20270165,42235608:1061689,568825,115847 -k1,15069:19208476,42235608:-1061689 -) -(1,15069:19208476,42235608:1061689,452978,115847 -k1,15069:19208476,42235608:3277 -h1,15069:20266888,42235608:0,411205,112570 -) -k1,15069:20480166,42235608:210001 -k1,15069:21221664,42235608:210001 -k1,15069:21787525,42235608:210001 -(1,15069:21787525,42235608:0,452978,115847 -r1,15112:23904350,42235608:2116825,568825,115847 -k1,15069:21787525,42235608:-2116825 -) -(1,15069:21787525,42235608:2116825,452978,115847 -k1,15069:21787525,42235608:3277 -h1,15069:23901073,42235608:0,411205,112570 -) -k1,15069:24288020,42235608:210000 -k1,15069:25891972,42235608:210001 -k1,15069:28170289,42235608:210001 -k1,15069:29327941,42235608:210001 -k1,15069:30694651,42235608:210000 -k1,15069:31563944,42235608:210001 -k1,15069:32583029,42235608:0 -) -(1,15070:6630773,43077096:25952256,505283,7863 -k1,15070:32583030,43077096:22103328 -g1,15070:32583030,43077096 -) -v1,15072:6630773,44267562:0,393216,0 -(1,15112:6630773,45141358:25952256,1267012,196608 -g1,15112:6630773,45141358 -g1,15112:6630773,45141358 -g1,15112:6434165,45141358 -(1,15112:6434165,45141358:0,1267012,196608 -r1,15112:32779637,45141358:26345472,1463620,196608 -k1,15112:6434165,45141358:-26345472 -) -(1,15112:6434165,45141358:26345472,1267012,196608 -[1,15112:6630773,45141358:25952256,1070404,0 -(1,15074:6630773,44475180:25952256,404226,76021 -(1,15073:6630773,44475180:0,0,0 -g1,15073:6630773,44475180 -g1,15073:6630773,44475180 -g1,15073:6303093,44475180 -(1,15073:6303093,44475180:0,0,0 -) -g1,15073:6630773,44475180 -) -k1,15074:6630773,44475180:0 -h1,15074:9792229,44475180:0,0,0 -k1,15074:32583029,44475180:22790800 -g1,15074:32583029,44475180 -) -(1,15078:6630773,45141358:25952256,404226,101187 -(1,15076:6630773,45141358:0,0,0 -g1,15076:6630773,45141358 -g1,15076:6630773,45141358 -g1,15076:6303093,45141358 -(1,15076:6303093,45141358:0,0,0 -) -g1,15076:6630773,45141358 -) -g1,15078:7579210,45141358 -g1,15078:8843793,45141358 -g1,15078:11689104,45141358 -h1,15078:13902124,45141358:0,0,0 -k1,15078:32583028,45141358:18680904 -g1,15078:32583028,45141358 +) +) ) ] +[1,14821:3078558,4812305:0,0,0 +(1,14821:3078558,2439708:0,1703936,0 +g1,14821:29030814,2439708 +g1,14821:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,14821:36151628,1915420:16384,1179648,0 ) -g1,15112:32583029,45141358 -g1,15112:6630773,45141358 -g1,15112:6630773,45141358 -g1,15112:32583029,45141358 -g1,15112:32583029,45141358 +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] -(1,15112:32583029,45706769:0,0,0 -g1,15112:32583029,45706769 +) +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,14821:37855564,2439708:1179648,16384,0 ) ) +k1,14821:3078556,2439708:-34777008 +) ] -(1,15112:6630773,47279633:25952256,0,0 -h1,15112:6630773,47279633:25952256,0,0 -) -] -(1,15112:4262630,4025873:0,0,0 -[1,15112:-473656,4025873:0,0,0 -(1,15112:-473656,-710413:0,0,0 -(1,15112:-473656,-710413:0,0,0 -g1,15112:-473656,-710413 +[1,14821:3078558,4812305:0,0,0 +(1,14821:3078558,49800853:0,16384,2228224 +k1,14821:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,14821:2537886,49800853:1179648,16384,0 +) +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,14821:3078558,51504789:16384,1179648,0 ) -g1,15112:-473656,-710413 +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 ) ] ) +) +) ] -!18933 -}254 +[1,14821:3078558,4812305:0,0,0 +(1,14821:3078558,49800853:0,16384,2228224 +g1,14821:29030814,49800853 +g1,14821:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,14821:36151628,51504789:16384,1179648,0 +) +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 +) +] +) +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,14821:37855564,49800853:1179648,16384,0 +) +) +k1,14821:3078556,49800853:-34777008 +) +] +g1,14821:6630773,4812305 +k1,14821:19540057,4812305:11713907 +g1,14821:21162728,4812305 +g1,14821:21985204,4812305 +g1,14821:24539797,4812305 +g1,14821:25949476,4812305 +g1,14821:28728857,4812305 +g1,14821:29852144,4812305 +) +) +] +[1,14821:6630773,45706769:25952256,40108032,0 +(1,14821:6630773,45706769:25952256,40108032,0 +(1,14821:6630773,45706769:0,0,0 +g1,14821:6630773,45706769 +) +[1,14821:6630773,45706769:25952256,40108032,0 +v1,14796:6630773,6254097:0,393216,0 +(1,14796:6630773,18538571:25952256,12677690,0 +g1,14796:6630773,18538571 +g1,14796:6237557,18538571 +r1,14821:6368629,18538571:131072,12677690,0 +g1,14796:6567858,18538571 +g1,14796:6764466,18538571 +[1,14796:6764466,18538571:25818563,12677690,0 +v1,14770:6764466,6254097:0,393216,0 +(1,14793:6764466,18341963:25818563,12481082,196608 +g1,14793:6764466,18341963 +g1,14793:6764466,18341963 +g1,14793:6567858,18341963 +(1,14793:6567858,18341963:0,12481082,196608 +r1,14821:32779637,18341963:26211779,12677690,196608 +k1,14793:6567857,18341963:-26211780 +) +(1,14793:6567858,18341963:26211779,12481082,196608 +[1,14793:6764466,18341963:25818563,12284474,0 +(1,14772:6764466,6488534:25818563,431045,86428 +(1,14771:6764466,6488534:0,0,0 +g1,14771:6764466,6488534 +g1,14771:6764466,6488534 +g1,14771:6436786,6488534 +(1,14771:6436786,6488534:0,0,0 +) +g1,14771:6764466,6488534 +) +k1,14772:6764466,6488534:0 +g1,14772:11743775,6488534 +g1,14772:12407683,6488534 +g1,14772:13071591,6488534 +g1,14772:14067453,6488534 +h1,14772:17386992,6488534:0,0,0 +k1,14772:32583029,6488534:15196037 +g1,14772:32583029,6488534 +) +(1,14792:6764466,7304461:25818563,424439,106246 +(1,14774:6764466,7304461:0,0,0 +g1,14774:6764466,7304461 +g1,14774:6764466,7304461 +g1,14774:6436786,7304461 +(1,14774:6436786,7304461:0,0,0 +) +g1,14774:6764466,7304461 +) +g1,14792:7760328,7304461 +g1,14792:8092282,7304461 +g1,14792:8424236,7304461 +g1,14792:12407683,7304461 +g1,14792:14067453,7304461 +g1,14792:16391131,7304461 +h1,14792:20042624,7304461:0,0,0 +k1,14792:32583029,7304461:12540405 +g1,14792:32583029,7304461 +) +(1,14792:6764466,7989316:25818563,407923,0 +h1,14792:6764466,7989316:0,0,0 +g1,14792:7760328,7989316 +g1,14792:8424236,7989316 +g1,14792:8756190,7989316 +g1,14792:9088144,7989316 +g1,14792:9420098,7989316 +g1,14792:9752052,7989316 +g1,14792:10084006,7989316 +g1,14792:10415960,7989316 +g1,14792:10747914,7989316 +g1,14792:11079868,7989316 +g1,14792:11411822,7989316 +g1,14792:11743776,7989316 +g1,14792:12407684,7989316 +g1,14792:12739638,7989316 +g1,14792:13071592,7989316 +g1,14792:13403546,7989316 +g1,14792:14067454,7989316 +g1,14792:14399408,7989316 +g1,14792:14731362,7989316 +g1,14792:15063316,7989316 +g1,14792:15395270,7989316 +g1,14792:15727224,7989316 +g1,14792:16391132,7989316 +g1,14792:16723086,7989316 +g1,14792:17055040,7989316 +g1,14792:17386994,7989316 +g1,14792:17718948,7989316 +g1,14792:18050902,7989316 +g1,14792:18382856,7989316 +g1,14792:18714810,7989316 +g1,14792:19046764,7989316 +g1,14792:19378718,7989316 +g1,14792:19710672,7989316 +h1,14792:20042626,7989316:0,0,0 +k1,14792:32583029,7989316:12540403 +g1,14792:32583029,7989316 +) +(1,14792:6764466,8674171:25818563,407923,9908 +h1,14792:6764466,8674171:0,0,0 +g1,14792:7760328,8674171 +g1,14792:8424236,8674171 +g1,14792:8756190,8674171 +g1,14792:9088144,8674171 +g1,14792:9420098,8674171 +g1,14792:9752052,8674171 +g1,14792:10084006,8674171 +g1,14792:10415960,8674171 +g1,14792:10747914,8674171 +g1,14792:11079868,8674171 +g1,14792:11411822,8674171 +g1,14792:11743776,8674171 +g1,14792:12407684,8674171 +g1,14792:12739638,8674171 +g1,14792:13071592,8674171 +g1,14792:13403546,8674171 +g1,14792:14067454,8674171 +g1,14792:14399408,8674171 +g1,14792:14731362,8674171 +g1,14792:15063316,8674171 +g1,14792:15395270,8674171 +g1,14792:15727224,8674171 +g1,14792:16391132,8674171 +g1,14792:16723086,8674171 +g1,14792:17055040,8674171 +g1,14792:17386994,8674171 +g1,14792:17718948,8674171 +g1,14792:18050902,8674171 +g1,14792:18382856,8674171 +g1,14792:18714810,8674171 +g1,14792:19046764,8674171 +g1,14792:19378718,8674171 +g1,14792:19710672,8674171 +h1,14792:20042626,8674171:0,0,0 +k1,14792:32583029,8674171:12540403 +g1,14792:32583029,8674171 +) +(1,14792:6764466,9359026:25818563,407923,9908 +h1,14792:6764466,9359026:0,0,0 +g1,14792:7760328,9359026 +g1,14792:8424236,9359026 +g1,14792:8756190,9359026 +g1,14792:9088144,9359026 +g1,14792:9420098,9359026 +g1,14792:9752052,9359026 +g1,14792:10084006,9359026 +g1,14792:10415960,9359026 +g1,14792:10747914,9359026 +g1,14792:11079868,9359026 +g1,14792:11411822,9359026 +g1,14792:11743776,9359026 +g1,14792:12407684,9359026 +g1,14792:12739638,9359026 +g1,14792:13071592,9359026 +g1,14792:13403546,9359026 +g1,14792:14067454,9359026 +g1,14792:14399408,9359026 +g1,14792:14731362,9359026 +g1,14792:15063316,9359026 +g1,14792:15395270,9359026 +g1,14792:15727224,9359026 +g1,14792:16391132,9359026 +g1,14792:16723086,9359026 +g1,14792:17055040,9359026 +g1,14792:17386994,9359026 +g1,14792:17718948,9359026 +g1,14792:18050902,9359026 +g1,14792:18382856,9359026 +g1,14792:18714810,9359026 +g1,14792:19046764,9359026 +g1,14792:19378718,9359026 +g1,14792:19710672,9359026 +h1,14792:20042626,9359026:0,0,0 +k1,14792:32583029,9359026:12540403 +g1,14792:32583029,9359026 +) +(1,14792:6764466,10043881:25818563,407923,9908 +h1,14792:6764466,10043881:0,0,0 +g1,14792:7760328,10043881 +g1,14792:8424236,10043881 +g1,14792:8756190,10043881 +g1,14792:9088144,10043881 +g1,14792:9420098,10043881 +g1,14792:9752052,10043881 +g1,14792:10084006,10043881 +g1,14792:10415960,10043881 +g1,14792:10747914,10043881 +g1,14792:11079868,10043881 +g1,14792:11411822,10043881 +g1,14792:11743776,10043881 +g1,14792:12407684,10043881 +g1,14792:12739638,10043881 +g1,14792:13071592,10043881 +g1,14792:13403546,10043881 +g1,14792:14067454,10043881 +g1,14792:14399408,10043881 +g1,14792:14731362,10043881 +g1,14792:15063316,10043881 +g1,14792:15395270,10043881 +g1,14792:15727224,10043881 +g1,14792:16391132,10043881 +g1,14792:16723086,10043881 +g1,14792:17055040,10043881 +g1,14792:17386994,10043881 +g1,14792:17718948,10043881 +g1,14792:18050902,10043881 +g1,14792:18382856,10043881 +g1,14792:18714810,10043881 +g1,14792:19046764,10043881 +g1,14792:19378718,10043881 +g1,14792:19710672,10043881 +h1,14792:20042626,10043881:0,0,0 +k1,14792:32583029,10043881:12540403 +g1,14792:32583029,10043881 +) +(1,14792:6764466,10728736:25818563,407923,9908 +h1,14792:6764466,10728736:0,0,0 +g1,14792:7760328,10728736 +g1,14792:8424236,10728736 +g1,14792:8756190,10728736 +g1,14792:9088144,10728736 +g1,14792:9420098,10728736 +g1,14792:9752052,10728736 +g1,14792:10084006,10728736 +g1,14792:10415960,10728736 +g1,14792:10747914,10728736 +g1,14792:11079868,10728736 +g1,14792:11411822,10728736 +g1,14792:11743776,10728736 +g1,14792:12407684,10728736 +g1,14792:12739638,10728736 +g1,14792:13071592,10728736 +g1,14792:13403546,10728736 +g1,14792:14067454,10728736 +g1,14792:14399408,10728736 +g1,14792:14731362,10728736 +g1,14792:15063316,10728736 +g1,14792:15395270,10728736 +g1,14792:15727224,10728736 +g1,14792:16391132,10728736 +g1,14792:16723086,10728736 +g1,14792:17055040,10728736 +g1,14792:17386994,10728736 +g1,14792:17718948,10728736 +g1,14792:18050902,10728736 +g1,14792:18382856,10728736 +g1,14792:18714810,10728736 +g1,14792:19046764,10728736 +g1,14792:19378718,10728736 +g1,14792:19710672,10728736 +h1,14792:20042626,10728736:0,0,0 +k1,14792:32583029,10728736:12540403 +g1,14792:32583029,10728736 +) +(1,14792:6764466,11413591:25818563,407923,9908 +h1,14792:6764466,11413591:0,0,0 +g1,14792:7760328,11413591 +g1,14792:8424236,11413591 +g1,14792:8756190,11413591 +g1,14792:9088144,11413591 +g1,14792:9420098,11413591 +g1,14792:9752052,11413591 +g1,14792:10084006,11413591 +g1,14792:10415960,11413591 +g1,14792:10747914,11413591 +g1,14792:11079868,11413591 +g1,14792:11411822,11413591 +g1,14792:11743776,11413591 +g1,14792:12407684,11413591 +g1,14792:12739638,11413591 +g1,14792:13071592,11413591 +g1,14792:13403546,11413591 +g1,14792:14067454,11413591 +g1,14792:14399408,11413591 +g1,14792:14731362,11413591 +g1,14792:15063316,11413591 +g1,14792:15395270,11413591 +g1,14792:15727224,11413591 +g1,14792:16391132,11413591 +g1,14792:16723086,11413591 +g1,14792:17055040,11413591 +g1,14792:17386994,11413591 +g1,14792:17718948,11413591 +g1,14792:18050902,11413591 +g1,14792:18382856,11413591 +g1,14792:18714810,11413591 +g1,14792:19046764,11413591 +g1,14792:19378718,11413591 +g1,14792:19710672,11413591 +h1,14792:20042626,11413591:0,0,0 +k1,14792:32583029,11413591:12540403 +g1,14792:32583029,11413591 +) +(1,14792:6764466,12098446:25818563,407923,9908 +h1,14792:6764466,12098446:0,0,0 +g1,14792:7760328,12098446 +g1,14792:8424236,12098446 +g1,14792:8756190,12098446 +g1,14792:9088144,12098446 +g1,14792:9420098,12098446 +g1,14792:9752052,12098446 +g1,14792:10084006,12098446 +g1,14792:10415960,12098446 +g1,14792:10747914,12098446 +g1,14792:11079868,12098446 +g1,14792:11411822,12098446 +g1,14792:11743776,12098446 +g1,14792:12407684,12098446 +g1,14792:12739638,12098446 +g1,14792:13071592,12098446 +g1,14792:13403546,12098446 +g1,14792:14067454,12098446 +g1,14792:14399408,12098446 +g1,14792:14731362,12098446 +g1,14792:15063316,12098446 +g1,14792:15395270,12098446 +g1,14792:15727224,12098446 +g1,14792:16391132,12098446 +g1,14792:16723086,12098446 +g1,14792:17055040,12098446 +g1,14792:17386994,12098446 +g1,14792:17718948,12098446 +g1,14792:18050902,12098446 +g1,14792:18382856,12098446 +g1,14792:18714810,12098446 +g1,14792:19046764,12098446 +g1,14792:19378718,12098446 +g1,14792:19710672,12098446 +h1,14792:20042626,12098446:0,0,0 +k1,14792:32583029,12098446:12540403 +g1,14792:32583029,12098446 +) +(1,14792:6764466,12783301:25818563,407923,9908 +h1,14792:6764466,12783301:0,0,0 +g1,14792:7760328,12783301 +g1,14792:8424236,12783301 +g1,14792:8756190,12783301 +g1,14792:9088144,12783301 +g1,14792:9420098,12783301 +g1,14792:9752052,12783301 +g1,14792:10084006,12783301 +g1,14792:10415960,12783301 +g1,14792:10747914,12783301 +g1,14792:11079868,12783301 +g1,14792:11411822,12783301 +g1,14792:11743776,12783301 +g1,14792:12407684,12783301 +g1,14792:12739638,12783301 +g1,14792:13071592,12783301 +g1,14792:13403546,12783301 +g1,14792:14067454,12783301 +g1,14792:14399408,12783301 +g1,14792:14731362,12783301 +g1,14792:15063316,12783301 +g1,14792:15395270,12783301 +g1,14792:15727224,12783301 +g1,14792:16391132,12783301 +g1,14792:16723086,12783301 +g1,14792:17055040,12783301 +g1,14792:17386994,12783301 +g1,14792:17718948,12783301 +g1,14792:18050902,12783301 +g1,14792:18382856,12783301 +g1,14792:18714810,12783301 +g1,14792:19046764,12783301 +g1,14792:19378718,12783301 +g1,14792:19710672,12783301 +h1,14792:20042626,12783301:0,0,0 +k1,14792:32583029,12783301:12540403 +g1,14792:32583029,12783301 +) +(1,14792:6764466,13468156:25818563,424439,112852 +h1,14792:6764466,13468156:0,0,0 +g1,14792:7760328,13468156 +k1,14792:7760328,13468156:0 +h1,14792:12739637,13468156:0,0,0 +k1,14792:32583029,13468156:19843392 +g1,14792:32583029,13468156 +) +(1,14792:6764466,14153011:25818563,424439,79822 +h1,14792:6764466,14153011:0,0,0 +g1,14792:7760328,14153011 +g1,14792:9088144,14153011 +g1,14792:9752052,14153011 +g1,14792:10415960,14153011 +g1,14792:11079868,14153011 +h1,14792:11411822,14153011:0,0,0 +k1,14792:32583030,14153011:21171208 +g1,14792:32583030,14153011 +) +(1,14792:6764466,14837866:25818563,424439,86428 +h1,14792:6764466,14837866:0,0,0 +g1,14792:7760328,14837866 +k1,14792:7760328,14837866:0 +h1,14792:13735499,14837866:0,0,0 +k1,14792:32583029,14837866:18847530 +g1,14792:32583029,14837866 +) +(1,14792:6764466,15522721:25818563,431045,86428 +h1,14792:6764466,15522721:0,0,0 +g1,14792:7760328,15522721 +k1,14792:7760328,15522721:0 +h1,14792:14399407,15522721:0,0,0 +k1,14792:32583029,15522721:18183622 +g1,14792:32583029,15522721 +) +(1,14792:6764466,16207576:25818563,424439,79822 +h1,14792:6764466,16207576:0,0,0 +g1,14792:7760328,16207576 +g1,14792:9088144,16207576 +h1,14792:14731361,16207576:0,0,0 +k1,14792:32583029,16207576:17851668 +g1,14792:32583029,16207576 +) +(1,14792:6764466,16892431:25818563,398014,0 +h1,14792:6764466,16892431:0,0,0 +h1,14792:7428374,16892431:0,0,0 +k1,14792:32583030,16892431:25154656 +g1,14792:32583030,16892431 +) +(1,14792:6764466,17577286:25818563,431045,86428 +h1,14792:6764466,17577286:0,0,0 +g1,14792:7760328,17577286 +k1,14792:7760328,17577286:0 +h1,14792:14399407,17577286:0,0,0 +k1,14792:32583029,17577286:18183622 +g1,14792:32583029,17577286 +) +(1,14792:6764466,18262141:25818563,424439,79822 +h1,14792:6764466,18262141:0,0,0 +g1,14792:7760328,18262141 +g1,14792:9088144,18262141 +h1,14792:14731361,18262141:0,0,0 +k1,14792:32583029,18262141:17851668 +g1,14792:32583029,18262141 +) +] +) +g1,14793:32583029,18341963 +g1,14793:6764466,18341963 +g1,14793:6764466,18341963 +g1,14793:32583029,18341963 +g1,14793:32583029,18341963 +) +h1,14793:6764466,18538571:0,0,0 +] +g1,14796:32583029,18538571 +) +h1,14796:6630773,18538571:0,0,0 +(1,14799:6630773,21369731:25952256,32768,229376 +(1,14799:6630773,21369731:0,32768,229376 +(1,14799:6630773,21369731:5505024,32768,229376 +r1,14821:12135797,21369731:5505024,262144,229376 +) +k1,14799:6630773,21369731:-5505024 +) +(1,14799:6630773,21369731:25952256,32768,0 +r1,14821:32583029,21369731:25952256,32768,0 +) +) +(1,14799:6630773,23001583:25952256,606339,9436 +(1,14799:6630773,23001583:2464678,582746,0 +g1,14799:6630773,23001583 +g1,14799:9095451,23001583 +) +g1,14799:11360375,23001583 +k1,14799:32583029,23001583:18895602 +g1,14799:32583029,23001583 +) +(1,14802:6630773,24259879:25952256,513147,134348 +k1,14801:10883142,24259879:233046 +k1,14801:12505551,24259879:233046 +k1,14801:15000244,24259879:233046 +k1,14801:15892582,24259879:233046 +k1,14801:18910253,24259879:233046 +k1,14801:23990341,24259879:233045 +k1,14801:26510594,24259879:233046 +k1,14801:28321092,24259879:233046 +k1,14801:29941535,24259879:233046 +k1,14801:31773659,24259879:233046 +k1,14801:32583029,24259879:0 +) +(1,14802:6630773,25124959:25952256,505283,134348 +k1,14801:7833621,25124959:183763 +k1,14801:9670857,25124959:183763 +k1,14801:14024675,25124959:183762 +k1,14801:16000192,25124959:183763 +k1,14801:20203278,25124959:183763 +k1,14801:21950075,25124959:183763 +k1,14801:23831876,25124959:183763 +k1,14801:27192823,25124959:183762 +k1,14801:28185956,25124959:183763 +k1,14801:30601220,25124959:183763 +k1,14802:32583029,25124959:0 +) +(1,14802:6630773,25990039:25952256,505283,126483 +k1,14801:9277712,25990039:245700 +k1,14801:11141497,25990039:245701 +k1,14801:11999959,25990039:245700 +k1,14801:13697281,25990039:245700 +k1,14801:15368389,25990039:245700 +k1,14801:17475968,25990039:245701 +k1,14801:18713228,25990039:245700 +k1,14801:20826704,25990039:245700 +k1,14801:23857029,25990039:245700 +k1,14801:28949773,25990039:245701 +k1,14801:30884991,25990039:245700 +k1,14801:32583029,25990039:0 +) +(1,14802:6630773,26855119:25952256,513147,126483 +k1,14801:7893703,26855119:196659 +k1,14801:11441217,26855119:196658 +k1,14801:13018064,26855119:196659 +k1,14801:14206282,26855119:196658 +k1,14801:16270717,26855119:196659 +k1,14801:17892783,26855119:196658 +k1,14801:20107951,26855119:196659 +k1,14801:21737226,26855119:196658 +k1,14801:22348725,26855119:196656 +k1,14801:25305759,26855119:196658 +k1,14801:27696563,26855119:196659 +k1,14801:30419634,26855119:196658 +k1,14801:31563944,26855119:196659 +k1,14801:32583029,26855119:0 +) +(1,14802:6630773,27720199:25952256,513147,126483 +k1,14801:9427253,27720199:241887 +k1,14801:10328433,27720199:241888 +k1,14801:11995728,27720199:241887 +k1,14801:14082453,27720199:241887 +k1,14801:15887375,27720199:241888 +k1,14801:17818780,27720199:241887 +k1,14801:20845293,27720199:241888 +k1,14801:25760552,27720199:241887 +k1,14801:27106721,27720199:241887 +k1,14801:28096375,27720199:241888 +k1,14801:31189078,27720199:241887 +k1,14801:32583029,27720199:0 +) +(1,14802:6630773,28585279:25952256,513147,102891 +g1,14801:8947470,28585279 +g1,14801:10959425,28585279 +g1,14801:13650333,28585279 +g1,14801:18117922,28585279 +g1,14801:20808830,28585279 +g1,14801:22199504,28585279 +g1,14801:24959880,28585279 +k1,14802:32583029,28585279:5131470 +g1,14802:32583029,28585279 +) +(1,14804:6630773,29450359:25952256,505283,126483 +h1,14803:6630773,29450359:983040,0,0 +k1,14803:9384378,29450359:167554 +k1,14803:11396769,29450359:167553 +k1,14803:12953686,29450359:167554 +k1,14803:14112800,29450359:167554 +k1,14803:15669716,29450359:167553 +k1,14803:18681533,29450359:167554 +k1,14803:19465125,29450359:167554 +k1,14803:21126244,29450359:167553 +k1,14803:21649658,29450359:167554 +k1,14803:23055187,29450359:167554 +k1,14803:24507246,29450359:167553 +k1,14803:26329584,29450359:167554 +k1,14803:27028635,29450359:167554 +k1,14803:28571789,29450359:167553 +k1,14803:29896053,29450359:167554 +k1,14804:32583029,29450359:0 +) +(1,14804:6630773,30315439:25952256,513147,126483 +k1,14803:8276735,30315439:204825 +k1,14803:11125283,30315439:204826 +k1,14803:11989400,30315439:204825 +k1,14803:14865472,30315439:204825 +k1,14803:18085609,30315439:204826 +k1,14803:21074403,30315439:204825 +k1,14803:21891990,30315439:204825 +k1,14803:23548437,30315439:204825 +k1,14803:25441470,30315439:204826 +k1,14803:26262333,30315439:204825 +k1,14803:28066236,30315439:204825 +k1,14803:29651906,30315439:204826 +k1,14803:31358816,30315439:204825 +k1,14804:32583029,30315439:0 +) +(1,14804:6630773,31180519:25952256,513147,126483 +k1,14803:8105879,31180519:207640 +k1,14803:11716148,31180519:207640 +k1,14803:13299388,31180519:207639 +k1,14803:14526113,31180519:207640 +k1,14803:16335453,31180519:207640 +k1,14803:18164454,31180519:207640 +k1,14803:20747118,31180519:207639 +k1,14803:21614050,31180519:207640 +k1,14803:25304929,31180519:207640 +k1,14803:28240833,31180519:207640 +k1,14803:29076307,31180519:207639 +k1,14803:30885647,31180519:207640 +k1,14803:32583029,31180519:0 +) +(1,14804:6630773,32045599:25952256,513147,134348 +k1,14803:8232363,32045599:176182 +k1,14803:10094132,32045599:176183 +k1,14803:11261874,32045599:176182 +k1,14803:12097349,32045599:176183 +k1,14803:14872034,32045599:176182 +k1,14803:17795485,32045599:176182 +k1,14803:19163113,32045599:176183 +k1,14803:21104180,32045599:176182 +k1,14803:24294364,32045599:176183 +k1,14803:26356017,32045599:176182 +k1,14803:29618946,32045599:176183 +k1,14803:31184491,32045599:176182 +k1,14804:32583029,32045599:0 +) +(1,14804:6630773,32910679:25952256,513147,134348 +k1,14803:8434652,32910679:187761 +k1,14803:9813859,32910679:187762 +k1,14803:12522790,32910679:187761 +k1,14803:13125383,32910679:187750 +k1,14803:14379415,32910679:187761 +k1,14803:15942778,32910679:187762 +k1,14803:18890915,32910679:187761 +k1,14803:21863302,32910679:187762 +k1,14803:22998714,32910679:187761 +k1,14803:24205560,32910679:187761 +k1,14803:26947915,32910679:187762 +k1,14803:28327121,32910679:187761 +k1,14803:32583029,32910679:0 +) +(1,14804:6630773,33775759:25952256,513147,134348 +k1,14803:7572816,33775759:282751 +k1,14803:11512476,33775759:282751 +k1,14803:12867396,33775759:282751 +k1,14803:14435962,33775759:282750 +k1,14803:15074573,33775759:282751 +k1,14803:18910686,33775759:282751 +k1,14803:20748606,33775759:282751 +k1,14803:21979008,33775759:282751 +k1,14803:23770398,33775759:282751 +k1,14803:26574318,33775759:282750 +(1,14803:26574318,33775759:0,452978,115847 +r1,14821:27987719,33775759:1413401,568825,115847 +k1,14803:26574318,33775759:-1413401 +) +(1,14803:26574318,33775759:1413401,452978,115847 +k1,14803:26574318,33775759:3277 +h1,14803:27984442,33775759:0,411205,112570 +) +k1,14803:28444140,33775759:282751 +k1,14803:31157621,33775759:282751 +k1,14803:32583029,33775759:0 +) +(1,14804:6630773,34640839:25952256,505283,134348 +k1,14803:8559833,34640839:243474 +k1,14803:10484961,34640839:243474 +k1,14803:12378632,34640839:243474 +k1,14803:15337264,34640839:243475 +k1,14803:19826160,34640839:243474 +k1,14803:20425494,34640839:243474 +(1,14803:20425494,34640839:0,414482,115847 +r1,14821:21135472,34640839:709978,530329,115847 +k1,14803:20425494,34640839:-709978 +) +(1,14803:20425494,34640839:709978,414482,115847 +k1,14803:20425494,34640839:3277 +h1,14803:21132195,34640839:0,411205,112570 +) +k1,14803:21378946,34640839:243474 +k1,14803:23581946,34640839:243474 +k1,14803:25318330,34640839:243474 +k1,14803:26628076,34640839:243475 +k1,14803:28401816,34640839:243474 +k1,14803:29296718,34640839:243474 +k1,14803:31157621,34640839:243474 +k1,14803:32583029,34640839:0 +) +(1,14804:6630773,35505919:25952256,513147,126483 +k1,14803:8881733,35505919:240315 +k1,14803:10069700,35505919:240316 +k1,14803:11761637,35505919:240315 +k1,14803:15743403,35505919:240316 +k1,14803:17055887,35505919:240315 +k1,14803:19623386,35505919:240316 +k1,14803:20219561,35505919:240315 +k1,14803:24447743,35505919:240316 +k1,14803:25347350,35505919:240315 +k1,14803:26760105,35505919:240316 +k1,14803:27659712,35505919:240315 +k1,14803:29388351,35505919:240316 +k1,14803:31227744,35505919:240315 +k1,14803:32583029,35505919:0 +) +(1,14804:6630773,36370999:25952256,505283,7863 +g1,14803:8098779,36370999 +g1,14803:9489453,36370999 +g1,14803:10871607,36370999 +k1,14804:32583029,36370999:20112344 +g1,14804:32583029,36370999 +) +(1,14806:6630773,37236079:25952256,513147,134348 +h1,14805:6630773,37236079:983040,0,0 +k1,14805:8816680,37236079:249318 +k1,14805:10554320,37236079:249317 +k1,14805:11565166,37236079:249318 +k1,14805:14386772,37236079:249318 +k1,14805:14991950,37236079:249318 +k1,14805:16666675,37236079:249317 +k1,14805:18760831,37236079:249318 +k1,14805:20577770,37236079:249318 +k1,14805:21182947,37236079:249317 +k1,14805:24052394,37236079:249318 +k1,14805:26453259,37236079:249318 +k1,14805:27462795,37236079:249318 +k1,14805:29216163,37236079:249317 +k1,14805:30635954,37236079:249318 +k1,14805:32583029,37236079:0 +) +(1,14806:6630773,38101159:25952256,505283,134348 +k1,14805:9356784,38101159:160932 +k1,14805:10802223,38101159:160933 +k1,14805:12133628,38101159:160932 +k1,14805:13824826,38101159:160932 +k1,14805:14637187,38101159:160933 +k1,14805:15890604,38101159:160932 +k1,14805:16407396,38101159:160932 +k1,14805:20275044,38101159:160932 +k1,14805:22303753,38101159:160933 +(1,14805:22303753,38101159:0,452978,115847 +r1,14821:23717154,38101159:1413401,568825,115847 +k1,14805:22303753,38101159:-1413401 +) +(1,14805:22303753,38101159:1413401,452978,115847 +k1,14805:22303753,38101159:3277 +h1,14805:23713877,38101159:0,411205,112570 +) +k1,14805:23878086,38101159:160932 +k1,14805:24721903,38101159:160932 +k1,14805:25238696,38101159:160933 +k1,14805:28876313,38101159:160932 +k1,14805:32583029,38101159:0 +) +(1,14806:6630773,38966239:25952256,505283,134348 +k1,14805:8684967,38966239:186418 +(1,14805:8684967,38966239:0,452978,115847 +r1,14821:11153504,38966239:2468537,568825,115847 +k1,14805:8684967,38966239:-2468537 +) +(1,14805:8684967,38966239:2468537,452978,115847 +k1,14805:8684967,38966239:3277 +h1,14805:11150227,38966239:0,411205,112570 +) +k1,14805:11339921,38966239:186417 +k1,14805:12717784,38966239:186418 +k1,14805:14188707,38966239:186417 +k1,14805:15545598,38966239:186418 +k1,14805:16836297,38966239:186417 +k1,14805:18409457,38966239:186418 +k1,14805:19431459,38966239:186418 +k1,14805:20636961,38966239:186417 +k1,14805:24226008,38966239:186418 +k1,14805:25792613,38966239:186417 +k1,14805:28027031,38966239:186418 +k1,14805:28974976,38966239:186417 +k1,14805:31563944,38966239:186418 +k1,14805:32583029,38966239:0 +) +(1,14806:6630773,39831319:25952256,513147,134348 +k1,14805:11538503,39831319:284165 +k1,14805:13210721,39831319:284165 +k1,14805:15323339,39831319:284164 +k1,14805:17001455,39831319:284165 +(1,14805:17001455,39831319:0,452978,115847 +r1,14821:19821704,39831319:2820249,568825,115847 +k1,14805:17001455,39831319:-2820249 +) +(1,14805:17001455,39831319:2820249,452978,115847 +k1,14805:17001455,39831319:3277 +h1,14805:19818427,39831319:0,411205,112570 +) +k1,14805:20279539,39831319:284165 +k1,14805:21760391,39831319:284165 +(1,14805:21760391,39831319:0,452978,115847 +r1,14821:24228928,39831319:2468537,568825,115847 +k1,14805:21760391,39831319:-2468537 +) +(1,14805:21760391,39831319:2468537,452978,115847 +k1,14805:21760391,39831319:3277 +h1,14805:24225651,39831319:0,411205,112570 +) +k1,14805:24513093,39831319:284165 +k1,14805:27251581,39831319:284165 +k1,14805:28483396,39831319:284164 +(1,14805:28483396,39831319:0,414482,115847 +r1,14821:29193374,39831319:709978,530329,115847 +k1,14805:28483396,39831319:-709978 +) +(1,14805:28483396,39831319:709978,414482,115847 +k1,14805:28483396,39831319:3277 +h1,14805:29190097,39831319:0,411205,112570 +) +k1,14805:29477539,39831319:284165 +k1,14805:32051532,39831319:284165 +k1,14805:32583029,39831319:0 +) +(1,14806:6630773,40696399:25952256,513147,134348 +k1,14805:9164675,40696399:166086 +k1,14805:10522206,40696399:166086 +k1,14805:13023995,40696399:166086 +k1,14805:14209166,40696399:166086 +k1,14805:17023562,40696399:166086 +k1,14805:20306540,40696399:166086 +k1,14805:21124053,40696399:166085 +k1,14805:22309224,40696399:166086 +k1,14805:23900718,40696399:166086 +k1,14805:25422089,40696399:166086 +k1,14805:26271060,40696399:166086 +(1,14805:26271060,40696399:0,452978,115847 +r1,14821:28387885,40696399:2116825,568825,115847 +k1,14805:26271060,40696399:-2116825 +) +(1,14805:26271060,40696399:2116825,452978,115847 +k1,14805:26271060,40696399:3277 +h1,14805:28384608,40696399:0,411205,112570 +) +k1,14805:28553971,40696399:166086 +k1,14805:29379349,40696399:166086 +k1,14805:30564520,40696399:166086 +k1,14806:32583029,40696399:0 +k1,14806:32583029,40696399:0 +) +v1,14808:6630773,41381254:0,393216,0 +(1,14817:6630773,43804630:25952256,2816592,196608 +g1,14817:6630773,43804630 +g1,14817:6630773,43804630 +g1,14817:6434165,43804630 +(1,14817:6434165,43804630:0,2816592,196608 +r1,14821:32779637,43804630:26345472,3013200,196608 +k1,14817:6434165,43804630:-26345472 +) +(1,14817:6434165,43804630:26345472,2816592,196608 +[1,14817:6630773,43804630:25952256,2619984,0 +(1,14810:6630773,41609085:25952256,424439,106246 +(1,14809:6630773,41609085:0,0,0 +g1,14809:6630773,41609085 +g1,14809:6630773,41609085 +g1,14809:6303093,41609085 +(1,14809:6303093,41609085:0,0,0 +) +g1,14809:6630773,41609085 +) +g1,14810:8622497,41609085 +g1,14810:9618359,41609085 +g1,14810:12605945,41609085 +g1,14810:14597669,41609085 +g1,14810:15261577,41609085 +g1,14810:17253301,41609085 +g1,14810:19576979,41609085 +g1,14810:20240887,41609085 +h1,14810:21900657,41609085:0,0,0 +k1,14810:32583029,41609085:10682372 +g1,14810:32583029,41609085 +) +(1,14811:6630773,42293940:25952256,424439,106246 +h1,14811:6630773,42293940:0,0,0 +k1,14811:6630773,42293940:0 +h1,14811:10614221,42293940:0,0,0 +k1,14811:32583029,42293940:21968808 +g1,14811:32583029,42293940 +) +(1,14816:6630773,43109867:25952256,424439,112852 +(1,14813:6630773,43109867:0,0,0 +g1,14813:6630773,43109867 +g1,14813:6630773,43109867 +g1,14813:6303093,43109867 +(1,14813:6303093,43109867:0,0,0 +) +g1,14813:6630773,43109867 +) +g1,14816:7626635,43109867 +g1,14816:7958589,43109867 +g1,14816:8290543,43109867 +g1,14816:8622497,43109867 +g1,14816:8954451,43109867 +g1,14816:9286405,43109867 +g1,14816:10614221,43109867 +g1,14816:11942037,43109867 +g1,14816:13269853,43109867 +g1,14816:14597669,43109867 +g1,14816:15925485,43109867 +g1,14816:17253301,43109867 +g1,14816:18581117,43109867 +g1,14816:19908933,43109867 +g1,14816:21236749,43109867 +h1,14816:22232611,43109867:0,0,0 +k1,14816:32583029,43109867:10350418 +g1,14816:32583029,43109867 +) +(1,14816:6630773,43794722:25952256,407923,9908 +h1,14816:6630773,43794722:0,0,0 +g1,14816:7626635,43794722 +g1,14816:9286405,43794722 +g1,14816:9618359,43794722 +g1,14816:9950313,43794722 +g1,14816:10614221,43794722 +g1,14816:10946175,43794722 +g1,14816:11278129,43794722 +g1,14816:11942037,43794722 +g1,14816:12273991,43794722 +g1,14816:12605945,43794722 +g1,14816:13269853,43794722 +g1,14816:13601807,43794722 +g1,14816:13933761,43794722 +g1,14816:14597669,43794722 +g1,14816:14929623,43794722 +g1,14816:15261577,43794722 +g1,14816:15925485,43794722 +g1,14816:16257439,43794722 +g1,14816:16589393,43794722 +g1,14816:17253301,43794722 +g1,14816:17585255,43794722 +g1,14816:17917209,43794722 +g1,14816:18581117,43794722 +g1,14816:18913071,43794722 +g1,14816:19245025,43794722 +g1,14816:19908933,43794722 +g1,14816:20240887,43794722 +g1,14816:20572841,43794722 +g1,14816:21236749,43794722 +g1,14816:21568703,43794722 +h1,14816:22232611,43794722:0,0,0 +k1,14816:32583029,43794722:10350418 +g1,14816:32583029,43794722 +) +] +) +g1,14817:32583029,43804630 +g1,14817:6630773,43804630 +g1,14817:6630773,43804630 +g1,14817:32583029,43804630 +g1,14817:32583029,43804630 +) +h1,14817:6630773,44001238:0,0,0 +(1,14821:6630773,44866318:25952256,513147,134348 +h1,14820:6630773,44866318:983040,0,0 +k1,14820:9086056,44866318:275556 +k1,14820:12293037,44866318:275556 +k1,14820:13227884,44866318:275555 +k1,14820:14522525,44866318:275556 +(1,14820:14522525,44866318:0,414482,115847 +r1,14821:15232503,44866318:709978,530329,115847 +k1,14820:14522525,44866318:-709978 +) +(1,14820:14522525,44866318:709978,414482,115847 +k1,14820:14522525,44866318:3277 +h1,14820:15229226,44866318:0,411205,112570 +) +k1,14820:15508059,44866318:275556 +k1,14820:17743141,44866318:275556 +k1,14820:18550194,44866318:275556 +k1,14820:21124097,44866318:275555 +k1,14820:22199848,44866318:275556 +k1,14820:24257983,44866318:275556 +k1,14820:25065036,44866318:275556 +(1,14820:25065036,44866318:0,452978,115847 +r1,14821:27533573,44866318:2468537,568825,115847 +k1,14820:25065036,44866318:-2468537 +) +(1,14820:25065036,44866318:2468537,452978,115847 +k1,14820:25065036,44866318:3277 +h1,14820:27530296,44866318:0,411205,112570 +) +k1,14820:27809129,44866318:275556 +k1,14820:29156853,44866318:275555 +k1,14820:30220807,44866318:275556 +k1,14820:32051532,44866318:275556 +k1,14821:32583029,44866318:0 +) +] +(1,14821:32583029,45706769:0,0,0 +g1,14821:32583029,45706769 +) +) +] +(1,14821:6630773,47279633:25952256,0,0 +h1,14821:6630773,47279633:25952256,0,0 +) +] +(1,14821:4262630,4025873:0,0,0 +[1,14821:-473656,4025873:0,0,0 +(1,14821:-473656,-710413:0,0,0 +(1,14821:-473656,-710413:0,0,0 +g1,14821:-473656,-710413 +) +g1,14821:-473656,-710413 +) +] +) +] +!31989 +}237 Input:2221:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2222:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!200 -{255 -[1,15138:4262630,47279633:28320399,43253760,0 -(1,15138:4262630,4025873:0,0,0 -[1,15138:-473656,4025873:0,0,0 -(1,15138:-473656,-710413:0,0,0 -(1,15138:-473656,-644877:0,0,0 -k1,15138:-473656,-644877:-65536 +!106 +{238 +[1,14917:4262630,47279633:28320399,43253760,0 +(1,14917:4262630,4025873:0,0,0 +[1,14917:-473656,4025873:0,0,0 +(1,14917:-473656,-710413:0,0,0 +(1,14917:-473656,-644877:0,0,0 +k1,14917:-473656,-644877:-65536 ) -(1,15138:-473656,4736287:0,0,0 -k1,15138:-473656,4736287:5209943 +(1,14917:-473656,4736287:0,0,0 +k1,14917:-473656,4736287:5209943 ) -g1,15138:-473656,-710413 +g1,14917:-473656,-710413 ) ] ) -[1,15138:6630773,47279633:25952256,43253760,0 -[1,15138:6630773,4812305:25952256,786432,0 -(1,15138:6630773,4812305:25952256,513147,126483 -(1,15138:6630773,4812305:25952256,513147,126483 -g1,15138:3078558,4812305 -[1,15138:3078558,4812305:0,0,0 -(1,15138:3078558,2439708:0,1703936,0 -k1,15138:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,15138:2537886,2439708:1179648,16384,0 +[1,14917:6630773,47279633:25952256,43253760,0 +[1,14917:6630773,4812305:25952256,786432,0 +(1,14917:6630773,4812305:25952256,485622,11795 +(1,14917:6630773,4812305:25952256,485622,11795 +g1,14917:3078558,4812305 +[1,14917:3078558,4812305:0,0,0 +(1,14917:3078558,2439708:0,1703936,0 +k1,14917:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,14917:2537886,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,15138:3078558,1915420:16384,1179648,0 +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,14917:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] ) ) ) ] -[1,15138:3078558,4812305:0,0,0 -(1,15138:3078558,2439708:0,1703936,0 -g1,15138:29030814,2439708 -g1,15138:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,15138:36151628,1915420:16384,1179648,0 +[1,14917:3078558,4812305:0,0,0 +(1,14917:3078558,2439708:0,1703936,0 +g1,14917:29030814,2439708 +g1,14917:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,14917:36151628,1915420:16384,1179648,0 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,15138:37855564,2439708:1179648,16384,0 +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,14917:37855564,2439708:1179648,16384,0 ) ) -k1,15138:3078556,2439708:-34777008 +k1,14917:3078556,2439708:-34777008 ) ] -[1,15138:3078558,4812305:0,0,0 -(1,15138:3078558,49800853:0,16384,2228224 -k1,15138:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,15138:2537886,49800853:1179648,16384,0 +[1,14917:3078558,4812305:0,0,0 +(1,14917:3078558,49800853:0,16384,2228224 +k1,14917:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,14917:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,15138:3078558,51504789:16384,1179648,0 +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,14917:3078558,51504789:16384,1179648,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 ) ] ) ) ) ] -[1,15138:3078558,4812305:0,0,0 -(1,15138:3078558,49800853:0,16384,2228224 -g1,15138:29030814,49800853 -g1,15138:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,15138:36151628,51504789:16384,1179648,0 -) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 +[1,14917:3078558,4812305:0,0,0 +(1,14917:3078558,49800853:0,16384,2228224 +g1,14917:29030814,49800853 +g1,14917:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,14917:36151628,51504789:16384,1179648,0 ) -] +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 +) +] +) +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,14917:37855564,49800853:1179648,16384,0 ) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,15138:37855564,49800853:1179648,16384,0 ) -) -k1,15138:3078556,49800853:-34777008 +k1,14917:3078556,49800853:-34777008 ) ] -g1,15138:6630773,4812305 -k1,15138:19540057,4812305:11713907 -g1,15138:21162728,4812305 -g1,15138:21985204,4812305 -g1,15138:24539797,4812305 -g1,15138:25949476,4812305 -g1,15138:28728857,4812305 -g1,15138:29852144,4812305 -) -) -] -[1,15138:6630773,45706769:25952256,40108032,0 -(1,15138:6630773,45706769:25952256,40108032,0 -(1,15138:6630773,45706769:0,0,0 -g1,15138:6630773,45706769 -) -[1,15138:6630773,45706769:25952256,40108032,0 -v1,15112:6630773,6254097:0,393216,0 -(1,15112:6630773,21203473:25952256,15342592,196608 -g1,15112:6630773,21203473 -g1,15112:6630773,21203473 -g1,15112:6434165,21203473 -(1,15112:6434165,21203473:0,15342592,196608 -r1,15138:32779637,21203473:26345472,15539200,196608 -k1,15112:6434165,21203473:-26345472 -) -(1,15112:6434165,21203473:26345472,15342592,196608 -[1,15112:6630773,21203473:25952256,15145984,0 -(1,15080:6630773,6461715:25952256,404226,76021 -(1,15079:6630773,6461715:0,0,0 -g1,15079:6630773,6461715 -g1,15079:6630773,6461715 -g1,15079:6303093,6461715 -(1,15079:6303093,6461715:0,0,0 -) -g1,15079:6630773,6461715 -) -k1,15080:6630773,6461715:0 -h1,15080:9159938,6461715:0,0,0 -k1,15080:32583030,6461715:23423092 -g1,15080:32583030,6461715 -) -(1,15084:6630773,7127893:25952256,404226,76021 -(1,15082:6630773,7127893:0,0,0 -g1,15082:6630773,7127893 -g1,15082:6630773,7127893 -g1,15082:6303093,7127893 -(1,15082:6303093,7127893:0,0,0 -) -g1,15082:6630773,7127893 -) -g1,15084:7579210,7127893 -g1,15084:8843793,7127893 -g1,15084:9792230,7127893 -g1,15084:10108376,7127893 -h1,15084:10424522,7127893:0,0,0 -k1,15084:32583030,7127893:22158508 -g1,15084:32583030,7127893 -) -(1,15086:6630773,8449431:25952256,404226,76021 -(1,15085:6630773,8449431:0,0,0 -g1,15085:6630773,8449431 -g1,15085:6630773,8449431 -g1,15085:6303093,8449431 -(1,15085:6303093,8449431:0,0,0 -) -g1,15085:6630773,8449431 -) -k1,15086:6630773,8449431:0 -h1,15086:10740666,8449431:0,0,0 -k1,15086:32583030,8449431:21842364 -g1,15086:32583030,8449431 -) -(1,15099:6630773,9115609:25952256,404226,76021 -(1,15088:6630773,9115609:0,0,0 -g1,15088:6630773,9115609 -g1,15088:6630773,9115609 -g1,15088:6303093,9115609 -(1,15088:6303093,9115609:0,0,0 -) -g1,15088:6630773,9115609 -) -g1,15099:7579210,9115609 -h1,15099:9159938,9115609:0,0,0 -k1,15099:32583030,9115609:23423092 -g1,15099:32583030,9115609 -) -(1,15099:6630773,9781787:25952256,404226,76021 -h1,15099:6630773,9781787:0,0,0 -g1,15099:7579210,9781787 -g1,15099:7895356,9781787 -g1,15099:9159939,9781787 -g1,15099:12005250,9781787 -g1,15099:12321396,9781787 -g1,15099:12637542,9781787 -g1,15099:12953688,9781787 -g1,15099:13269834,9781787 -g1,15099:13585980,9781787 -g1,15099:13902126,9781787 -g1,15099:14218272,9781787 -g1,15099:14534418,9781787 -g1,15099:14850564,9781787 -g1,15099:18644312,9781787 -g1,15099:18960458,9781787 -g1,15099:19276604,9781787 -g1,15099:19592750,9781787 -g1,15099:19908896,9781787 -g1,15099:20225042,9781787 -g1,15099:20541188,9781787 -g1,15099:24018791,9781787 -g1,15099:24334937,9781787 -g1,15099:24651083,9781787 -g1,15099:24967229,9781787 -g1,15099:25283375,9781787 -g1,15099:25599521,9781787 -g1,15099:25915667,9781787 -g1,15099:26231813,9781787 -h1,15099:28760978,9781787:0,0,0 -k1,15099:32583029,9781787:3822051 -g1,15099:32583029,9781787 -) -(1,15099:6630773,10447965:25952256,404226,107478 -h1,15099:6630773,10447965:0,0,0 -g1,15099:7579210,10447965 -g1,15099:7895356,10447965 -g1,15099:9159939,10447965 -g1,15099:12953687,10447965 -g1,15099:13269833,10447965 -g1,15099:13585979,10447965 -g1,15099:13902125,10447965 -g1,15099:14218271,10447965 -g1,15099:14534417,10447965 -g1,15099:14850563,10447965 -g1,15099:18012020,10447965 -g1,15099:18328166,10447965 -g1,15099:18644312,10447965 -g1,15099:18960458,10447965 -g1,15099:19276604,10447965 -g1,15099:19592750,10447965 -g1,15099:19908896,10447965 -g1,15099:20225042,10447965 -g1,15099:20541188,10447965 -g1,15099:24651082,10447965 -g1,15099:24967228,10447965 -g1,15099:25283374,10447965 -g1,15099:25599520,10447965 -g1,15099:25915666,10447965 -g1,15099:26231812,10447965 -h1,15099:28760977,10447965:0,0,0 -k1,15099:32583029,10447965:3822052 -g1,15099:32583029,10447965 -) -(1,15099:6630773,11114143:25952256,410518,107478 -h1,15099:6630773,11114143:0,0,0 -g1,15099:7579210,11114143 -g1,15099:7895356,11114143 -g1,15099:9159939,11114143 -g1,15099:12953687,11114143 -g1,15099:13269833,11114143 -g1,15099:13585979,11114143 -g1,15099:13902125,11114143 -g1,15099:14218271,11114143 -g1,15099:14534417,11114143 -g1,15099:14850563,11114143 -g1,15099:18012020,11114143 -g1,15099:18328166,11114143 -g1,15099:18644312,11114143 -g1,15099:18960458,11114143 -g1,15099:19276604,11114143 -g1,15099:19592750,11114143 -g1,15099:19908896,11114143 -g1,15099:20225042,11114143 -g1,15099:20541188,11114143 -g1,15099:22438062,11114143 -g1,15099:23386499,11114143 -g1,15099:26231810,11114143 -h1,15099:28760975,11114143:0,0,0 -k1,15099:32583029,11114143:3822054 -g1,15099:32583029,11114143 -) -(1,15099:6630773,11780321:25952256,404226,101187 -h1,15099:6630773,11780321:0,0,0 -g1,15099:7579210,11780321 -g1,15099:9159939,11780321 -g1,15099:11689105,11780321 -g1,15099:12005251,11780321 -g1,15099:12321397,11780321 -g1,15099:12637543,11780321 -g1,15099:12953689,11780321 -g1,15099:13269835,11780321 -g1,15099:13585981,11780321 -g1,15099:13902127,11780321 -g1,15099:14218273,11780321 -g1,15099:14534419,11780321 -g1,15099:14850565,11780321 -g1,15099:17695876,11780321 -g1,15099:18012022,11780321 -g1,15099:18328168,11780321 -g1,15099:18644314,11780321 -g1,15099:18960460,11780321 -g1,15099:19276606,11780321 -g1,15099:19592752,11780321 -g1,15099:19908898,11780321 -g1,15099:20225044,11780321 -g1,15099:20541190,11780321 -g1,15099:24651084,11780321 -g1,15099:24967230,11780321 -g1,15099:25283376,11780321 -g1,15099:25599522,11780321 -g1,15099:25915668,11780321 -g1,15099:26231814,11780321 -h1,15099:28444834,11780321:0,0,0 -k1,15099:32583029,11780321:4138195 -g1,15099:32583029,11780321 -) -(1,15099:6630773,12446499:25952256,404226,76021 -h1,15099:6630773,12446499:0,0,0 -g1,15099:7579210,12446499 -g1,15099:9159939,12446499 -g1,15099:12005250,12446499 -g1,15099:12321396,12446499 -g1,15099:12637542,12446499 -g1,15099:12953688,12446499 -g1,15099:13269834,12446499 -g1,15099:13585980,12446499 -g1,15099:13902126,12446499 -g1,15099:14218272,12446499 -g1,15099:14534418,12446499 -g1,15099:14850564,12446499 -g1,15099:17379730,12446499 -g1,15099:17695876,12446499 -g1,15099:18012022,12446499 -g1,15099:18328168,12446499 -g1,15099:18644314,12446499 -g1,15099:18960460,12446499 -g1,15099:19276606,12446499 -g1,15099:19592752,12446499 -g1,15099:19908898,12446499 -g1,15099:20225044,12446499 -g1,15099:20541190,12446499 -g1,15099:22754210,12446499 -g1,15099:23070356,12446499 -g1,15099:23386502,12446499 -g1,15099:23702648,12446499 -g1,15099:24018794,12446499 -g1,15099:24334940,12446499 -g1,15099:24651086,12446499 -g1,15099:24967232,12446499 -g1,15099:25283378,12446499 -g1,15099:25599524,12446499 -g1,15099:25915670,12446499 -g1,15099:26231816,12446499 -h1,15099:29709418,12446499:0,0,0 -k1,15099:32583029,12446499:2873611 -g1,15099:32583029,12446499 -) -(1,15099:6630773,13112677:25952256,404226,76021 -h1,15099:6630773,13112677:0,0,0 -g1,15099:7579210,13112677 -g1,15099:9159939,13112677 -h1,15099:11689104,13112677:0,0,0 -k1,15099:32583028,13112677:20893924 -g1,15099:32583028,13112677 -) -(1,15099:6630773,13778855:25952256,379060,0 -h1,15099:6630773,13778855:0,0,0 -h1,15099:7263064,13778855:0,0,0 -k1,15099:32583028,13778855:25319964 -g1,15099:32583028,13778855 -) -(1,15099:6630773,14445033:25952256,404226,76021 -h1,15099:6630773,14445033:0,0,0 -g1,15099:7579210,14445033 -h1,15099:9159938,14445033:0,0,0 -k1,15099:32583030,14445033:23423092 -g1,15099:32583030,14445033 -) -(1,15099:6630773,15111211:25952256,379060,7863 -h1,15099:6630773,15111211:0,0,0 -g1,15099:7579210,15111211 -h1,15099:8843793,15111211:0,0,0 -k1,15099:32583029,15111211:23739236 -g1,15099:32583029,15111211 -) -(1,15101:6630773,16432749:25952256,404226,76021 -(1,15100:6630773,16432749:0,0,0 -g1,15100:6630773,16432749 -g1,15100:6630773,16432749 -g1,15100:6303093,16432749 -(1,15100:6303093,16432749:0,0,0 -) -g1,15100:6630773,16432749 -) -k1,15101:6630773,16432749:0 -h1,15101:9476084,16432749:0,0,0 -k1,15101:32583028,16432749:23106944 -g1,15101:32583028,16432749 -) -(1,15111:6630773,17098927:25952256,404226,82312 -(1,15103:6630773,17098927:0,0,0 -g1,15103:6630773,17098927 -g1,15103:6630773,17098927 -g1,15103:6303093,17098927 -(1,15103:6303093,17098927:0,0,0 -) -g1,15103:6630773,17098927 -) -g1,15111:7579210,17098927 -g1,15111:7895356,17098927 -g1,15111:8211502,17098927 -g1,15111:8527648,17098927 -g1,15111:8843794,17098927 -g1,15111:9159940,17098927 -g1,15111:9476086,17098927 -g1,15111:9792232,17098927 -g1,15111:10108378,17098927 -g1,15111:10424524,17098927 -g1,15111:10740670,17098927 -g1,15111:11056816,17098927 -g1,15111:11372962,17098927 -g1,15111:11689108,17098927 -g1,15111:12005254,17098927 -g1,15111:12321400,17098927 -g1,15111:12637546,17098927 -g1,15111:14218275,17098927 -g1,15111:14534421,17098927 -g1,15111:14850567,17098927 -g1,15111:15166713,17098927 -g1,15111:15482859,17098927 -g1,15111:15799005,17098927 -k1,15111:15799005,17098927:0 -h1,15111:17063588,17098927:0,0,0 -k1,15111:32583029,17098927:15519441 -g1,15111:32583029,17098927 -) -(1,15111:6630773,17765105:25952256,404226,9436 -h1,15111:6630773,17765105:0,0,0 -g1,15111:7579210,17765105 -g1,15111:9792230,17765105 -g1,15111:10108376,17765105 -g1,15111:10424522,17765105 -g1,15111:10740668,17765105 -g1,15111:14218271,17765105 -h1,15111:17063582,17765105:0,0,0 -k1,15111:32583029,17765105:15519447 -g1,15111:32583029,17765105 -) -(1,15111:6630773,18431283:25952256,404226,9436 -h1,15111:6630773,18431283:0,0,0 -g1,15111:7579210,18431283 -g1,15111:10740667,18431283 -g1,15111:14218270,18431283 -g1,15111:14534416,18431283 -h1,15111:17063581,18431283:0,0,0 -k1,15111:32583029,18431283:15519448 -g1,15111:32583029,18431283 -) -(1,15111:6630773,19097461:25952256,404226,9436 -h1,15111:6630773,19097461:0,0,0 -g1,15111:7579210,19097461 -g1,15111:10424521,19097461 -g1,15111:10740667,19097461 -g1,15111:11056813,19097461 -g1,15111:11372959,19097461 -g1,15111:14218270,19097461 -k1,15111:14218270,19097461:0 -h1,15111:17063581,19097461:0,0,0 -k1,15111:32583029,19097461:15519448 -g1,15111:32583029,19097461 -) -(1,15111:6630773,19763639:25952256,404226,9436 -h1,15111:6630773,19763639:0,0,0 -g1,15111:7579210,19763639 -g1,15111:9792230,19763639 -g1,15111:10108376,19763639 -g1,15111:10424522,19763639 -g1,15111:10740668,19763639 -g1,15111:11056814,19763639 -g1,15111:14218271,19763639 -k1,15111:14218271,19763639:0 -h1,15111:17063582,19763639:0,0,0 -k1,15111:32583029,19763639:15519447 -g1,15111:32583029,19763639 -) -(1,15111:6630773,20429817:25952256,404226,107478 -h1,15111:6630773,20429817:0,0,0 -g1,15111:7579210,20429817 -g1,15111:10740667,20429817 -g1,15111:14218270,20429817 -k1,15111:14218270,20429817:0 -h1,15111:17063581,20429817:0,0,0 -k1,15111:32583029,20429817:15519448 -g1,15111:32583029,20429817 -) -(1,15111:6630773,21095995:25952256,404226,107478 -h1,15111:6630773,21095995:0,0,0 -g1,15111:7579210,21095995 -g1,15111:10108376,21095995 -g1,15111:10424522,21095995 -g1,15111:10740668,21095995 -g1,15111:11056814,21095995 -g1,15111:14218271,21095995 -k1,15111:14218271,21095995:0 -h1,15111:17063582,21095995:0,0,0 -k1,15111:32583029,21095995:15519447 -g1,15111:32583029,21095995 -) -] -) -g1,15112:32583029,21203473 -g1,15112:6630773,21203473 -g1,15112:6630773,21203473 -g1,15112:32583029,21203473 -g1,15112:32583029,21203473 -) -h1,15112:6630773,21400081:0,0,0 -(1,15116:6630773,22765857:25952256,513147,102891 -h1,15115:6630773,22765857:983040,0,0 -k1,15115:8612628,22765857:169785 -k1,15115:10498146,22765857:169785 -k1,15115:11687016,22765857:169785 -k1,15115:13352987,22765857:169784 -k1,15115:15393170,22765857:169785 -k1,15115:16214383,22765857:169785 -k1,15115:17970139,22765857:169785 -k1,15115:19312363,22765857:169785 -k1,15115:21790326,22765857:169785 -k1,15115:22951671,22765857:169785 -k1,15115:24427588,22765857:169784 -k1,15115:27569431,22765857:169785 -k1,15115:29306837,22765857:169785 -k1,15115:30495707,22765857:169785 -k1,15115:32583029,22765857:0 -) -(1,15116:6630773,23607345:25952256,513147,126483 -k1,15115:8011521,23607345:189303 -k1,15115:10359580,23607345:189303 -(1,15115:10359580,23607345:0,414482,115847 -r1,15138:10717846,23607345:358266,530329,115847 -k1,15115:10359580,23607345:-358266 -) -(1,15115:10359580,23607345:358266,414482,115847 -k1,15115:10359580,23607345:3277 -h1,15115:10714569,23607345:0,411205,112570 -) -k1,15115:10907149,23607345:189303 -k1,15115:12287897,23607345:189303 -(1,15115:12287897,23607345:0,414482,115847 -r1,15138:12646163,23607345:358266,530329,115847 -k1,15115:12287897,23607345:-358266 -) -(1,15115:12287897,23607345:358266,414482,115847 -k1,15115:12287897,23607345:3277 -h1,15115:12642886,23607345:0,411205,112570 -) -k1,15115:13009136,23607345:189303 -k1,15115:14151988,23607345:189303 -k1,15115:15969861,23607345:189303 -k1,15115:18203887,23607345:189303 -k1,15115:19044618,23607345:189303 -k1,15115:21780650,23607345:189303 -k1,15115:22694781,23607345:189303 -k1,15115:24168590,23607345:189303 -k1,15115:27348956,23607345:189303 -k1,15115:28347629,23607345:189303 -k1,15115:30003628,23607345:189303 -k1,15115:31591469,23607345:189303 -k1,15115:32583029,23607345:0 -) -(1,15116:6630773,24448833:25952256,505283,126483 -k1,15116:32583029,24448833:22056796 -g1,15116:32583029,24448833 -) -v1,15120:6630773,25639299:0,393216,0 -(1,15128:6630773,28612816:25952256,3366733,196608 -g1,15128:6630773,28612816 -g1,15128:6630773,28612816 -g1,15128:6434165,28612816 -(1,15128:6434165,28612816:0,3366733,196608 -r1,15138:32779637,28612816:26345472,3563341,196608 -k1,15128:6434165,28612816:-26345472 -) -(1,15128:6434165,28612816:26345472,3366733,196608 -[1,15128:6630773,28612816:25952256,3170125,0 -(1,15122:6630773,25846917:25952256,404226,82312 -(1,15121:6630773,25846917:0,0,0 -g1,15121:6630773,25846917 -g1,15121:6630773,25846917 -g1,15121:6303093,25846917 -(1,15121:6303093,25846917:0,0,0 -) -g1,15121:6630773,25846917 -) -g1,15122:7263065,25846917 -g1,15122:8211503,25846917 -g1,15122:10108378,25846917 -h1,15122:10740670,25846917:0,0,0 -k1,15122:32583030,25846917:21842360 -g1,15122:32583030,25846917 -) -(1,15123:6630773,26513095:25952256,404226,107478 -h1,15123:6630773,26513095:0,0,0 -g1,15123:7263065,26513095 -g1,15123:8211503,26513095 -g1,15123:10424524,26513095 -g1,15123:11372962,26513095 -g1,15123:12005254,26513095 -g1,15123:14218274,26513095 -g1,15123:15799003,26513095 -g1,15123:16747440,26513095 -g1,15123:18644314,26513095 -g1,15123:19592751,26513095 -g1,15123:20541188,26513095 -g1,15123:21805771,26513095 -k1,15123:21805771,26513095:9437 -h1,15123:22763645,26513095:0,0,0 -k1,15123:32583029,26513095:9819384 -g1,15123:32583029,26513095 -) -(1,15124:6630773,27179273:25952256,404226,101187 -h1,15124:6630773,27179273:0,0,0 -g1,15124:9159939,27179273 -g1,15124:10108377,27179273 -g1,15124:11689106,27179273 -g1,15124:12321398,27179273 -g1,15124:13902127,27179273 -g1,15124:15166710,27179273 -g1,15124:15799002,27179273 -k1,15124:15799002,27179273:0 -h1,15124:16431294,27179273:0,0,0 -k1,15124:32583029,27179273:16151735 -g1,15124:32583029,27179273 -) -(1,15125:6630773,27845451:25952256,404226,76021 -h1,15125:6630773,27845451:0,0,0 -g1,15125:6946919,27845451 -g1,15125:7263065,27845451 -g1,15125:7579211,27845451 -g1,15125:7895357,27845451 -g1,15125:8211503,27845451 -g1,15125:9792232,27845451 -g1,15125:10424524,27845451 -h1,15125:17063584,27845451:0,0,0 -k1,15125:32583029,27845451:15519445 -g1,15125:32583029,27845451 -) -(1,15126:6630773,28511629:25952256,404226,101187 -h1,15126:6630773,28511629:0,0,0 -g1,15126:9159939,28511629 -g1,15126:10108377,28511629 -g1,15126:14850562,28511629 -g1,15126:16115145,28511629 -g1,15126:16747437,28511629 -h1,15126:18012020,28511629:0,0,0 -k1,15126:32583029,28511629:14571009 -g1,15126:32583029,28511629 -) -] -) -g1,15128:32583029,28612816 -g1,15128:6630773,28612816 -g1,15128:6630773,28612816 -g1,15128:32583029,28612816 -g1,15128:32583029,28612816 -) -h1,15128:6630773,28809424:0,0,0 -] -(1,15138:32583029,45706769:0,0,0 -g1,15138:32583029,45706769 -) -) -] -(1,15138:6630773,47279633:25952256,0,0 -h1,15138:6630773,47279633:25952256,0,0 -) -] -(1,15138:4262630,4025873:0,0,0 -[1,15138:-473656,4025873:0,0,0 -(1,15138:-473656,-710413:0,0,0 -(1,15138:-473656,-710413:0,0,0 -g1,15138:-473656,-710413 -) -g1,15138:-473656,-710413 -) -] -) -] -!18723 -}255 +g1,14917:6630773,4812305 +g1,14917:6630773,4812305 +g1,14917:8412041,4812305 +g1,14917:10364358,4812305 +k1,14917:31387652,4812305:21023294 +) +) +] +[1,14917:6630773,45706769:25952256,40108032,0 +(1,14917:6630773,45706769:25952256,40108032,0 +(1,14917:6630773,45706769:0,0,0 +g1,14917:6630773,45706769 +) +[1,14917:6630773,45706769:25952256,40108032,0 +(1,14821:6630773,6254097:25952256,513147,115847 +(1,14820:6630773,6254097:0,414482,115847 +r1,14917:7340751,6254097:709978,530329,115847 +k1,14820:6630773,6254097:-709978 +) +(1,14820:6630773,6254097:709978,414482,115847 +k1,14820:6630773,6254097:3277 +h1,14820:7337474,6254097:0,411205,112570 +) +k1,14820:7716781,6254097:202360 +k1,14820:8389034,6254097:202360 +k1,14820:9122891,6254097:202360 +k1,14820:11527260,6254097:202359 +k1,14820:12381048,6254097:202360 +k1,14820:12939268,6254097:202360 +k1,14820:15761757,6254097:202360 +k1,14820:17941994,6254097:202360 +k1,14820:19538305,6254097:202360 +k1,14820:20759750,6254097:202360 +k1,14820:23628115,6254097:202360 +k1,14820:24489766,6254097:202359 +k1,14820:25848836,6254097:202360 +k1,14820:29160224,6254097:202360 +k1,14820:31521340,6254097:202360 +(1,14820:31521340,6254097:0,414482,115847 +r1,14917:32583029,6254097:1061689,530329,115847 +k1,14820:31521340,6254097:-1061689 +) +(1,14820:31521340,6254097:1061689,414482,115847 +k1,14820:31521340,6254097:3277 +h1,14820:32579752,6254097:0,411205,112570 +) +k1,14820:32583029,6254097:0 +) +(1,14821:6630773,7119177:25952256,513147,134348 +k1,14820:10204826,7119177:261863 +k1,14820:11485774,7119177:261863 +k1,14820:13173045,7119177:261863 +k1,14820:15294164,7119177:261863 +k1,14820:16242189,7119177:261863 +k1,14820:16859912,7119177:261863 +k1,14820:19741904,7119177:261863 +k1,14820:21981645,7119177:261864 +k1,14820:22902800,7119177:261863 +k1,14820:25177929,7119177:261863 +k1,14820:26011921,7119177:261863 +k1,14820:28196610,7119177:261863 +k1,14820:29946796,7119177:261863 +k1,14820:31400104,7119177:261863 +k1,14820:32583029,7119177:0 +) +(1,14821:6630773,7984257:25952256,513147,126483 +g1,14820:8255410,7984257 +g1,14820:9646084,7984257 +g1,14820:10864398,7984257 +g1,14820:12332404,7984257 +g1,14820:13190925,7984257 +g1,14820:14409239,7984257 +k1,14821:32583029,7984257:16314534 +g1,14821:32583029,7984257 +) +v1,14823:6630773,8669112:0,393216,0 +(1,14858:6630773,19059528:25952256,10783632,196608 +g1,14858:6630773,19059528 +g1,14858:6630773,19059528 +g1,14858:6434165,19059528 +(1,14858:6434165,19059528:0,10783632,196608 +r1,14917:32779637,19059528:26345472,10980240,196608 +k1,14858:6434165,19059528:-26345472 +) +(1,14858:6434165,19059528:26345472,10783632,196608 +[1,14858:6630773,19059528:25952256,10587024,0 +(1,14825:6630773,8896943:25952256,424439,106246 +(1,14824:6630773,8896943:0,0,0 +g1,14824:6630773,8896943 +g1,14824:6630773,8896943 +g1,14824:6303093,8896943 +(1,14824:6303093,8896943:0,0,0 +) +g1,14824:6630773,8896943 +) +k1,14825:6630773,8896943:0 +h1,14825:10282267,8896943:0,0,0 +k1,14825:32583029,8896943:22300762 +g1,14825:32583029,8896943 +) +(1,14829:6630773,9712870:25952256,424439,79822 +(1,14827:6630773,9712870:0,0,0 +g1,14827:6630773,9712870 +g1,14827:6630773,9712870 +g1,14827:6303093,9712870 +(1,14827:6303093,9712870:0,0,0 +) +g1,14827:6630773,9712870 +) +g1,14829:7626635,9712870 +g1,14829:8954451,9712870 +h1,14829:11942036,9712870:0,0,0 +k1,14829:32583028,9712870:20640992 +g1,14829:32583028,9712870 +) +(1,14831:6630773,10528797:25952256,424439,106246 +(1,14830:6630773,10528797:0,0,0 +g1,14830:6630773,10528797 +g1,14830:6630773,10528797 +g1,14830:6303093,10528797 +(1,14830:6303093,10528797:0,0,0 +) +g1,14830:6630773,10528797 +) +k1,14831:6630773,10528797:0 +h1,14831:10614221,10528797:0,0,0 +k1,14831:32583029,10528797:21968808 +g1,14831:32583029,10528797 +) +(1,14835:6630773,11344724:25952256,424439,79822 +(1,14833:6630773,11344724:0,0,0 +g1,14833:6630773,11344724 +g1,14833:6630773,11344724 +g1,14833:6303093,11344724 +(1,14833:6303093,11344724:0,0,0 +) +g1,14833:6630773,11344724 +) +g1,14835:7626635,11344724 +g1,14835:8954451,11344724 +h1,14835:10282267,11344724:0,0,0 +k1,14835:32583029,11344724:22300762 +g1,14835:32583029,11344724 +) +(1,14837:6630773,12160651:25952256,424439,106246 +(1,14836:6630773,12160651:0,0,0 +g1,14836:6630773,12160651 +g1,14836:6630773,12160651 +g1,14836:6303093,12160651 +(1,14836:6303093,12160651:0,0,0 +) +g1,14836:6630773,12160651 +) +k1,14837:6630773,12160651:0 +h1,14837:10614221,12160651:0,0,0 +k1,14837:32583029,12160651:21968808 +g1,14837:32583029,12160651 +) +(1,14841:6630773,12976578:25952256,424439,79822 +(1,14839:6630773,12976578:0,0,0 +g1,14839:6630773,12976578 +g1,14839:6630773,12976578 +g1,14839:6303093,12976578 +(1,14839:6303093,12976578:0,0,0 +) +g1,14839:6630773,12976578 +) +g1,14841:7626635,12976578 +g1,14841:8954451,12976578 +h1,14841:10282267,12976578:0,0,0 +k1,14841:32583029,12976578:22300762 +g1,14841:32583029,12976578 +) +(1,14843:6630773,13792505:25952256,424439,106246 +(1,14842:6630773,13792505:0,0,0 +g1,14842:6630773,13792505 +g1,14842:6630773,13792505 +g1,14842:6303093,13792505 +(1,14842:6303093,13792505:0,0,0 +) +g1,14842:6630773,13792505 +) +k1,14843:6630773,13792505:0 +h1,14843:9950313,13792505:0,0,0 +k1,14843:32583029,13792505:22632716 +g1,14843:32583029,13792505 +) +(1,14847:6630773,14608432:25952256,431045,79822 +(1,14845:6630773,14608432:0,0,0 +g1,14845:6630773,14608432 +g1,14845:6630773,14608432 +g1,14845:6303093,14608432 +(1,14845:6303093,14608432:0,0,0 +) +g1,14845:6630773,14608432 +) +g1,14847:7626635,14608432 +g1,14847:7958589,14608432 +g1,14847:11942037,14608432 +g1,14847:14265715,14608432 +g1,14847:15925485,14608432 +g1,14847:17585255,14608432 +g1,14847:18581117,14608432 +g1,14847:20572841,14608432 +g1,14847:21236749,14608432 +g1,14847:21900657,14608432 +g1,14847:22564565,14608432 +g1,14847:23228473,14608432 +g1,14847:23892381,14608432 +g1,14847:24556289,14608432 +g1,14847:25220197,14608432 +g1,14847:25884105,14608432 +g1,14847:26548013,14608432 +h1,14847:27211921,14608432:0,0,0 +k1,14847:32583029,14608432:5371108 +g1,14847:32583029,14608432 +) +(1,14849:6630773,15424359:25952256,424439,106246 +(1,14848:6630773,15424359:0,0,0 +g1,14848:6630773,15424359 +g1,14848:6630773,15424359 +g1,14848:6303093,15424359 +(1,14848:6303093,15424359:0,0,0 +) +g1,14848:6630773,15424359 +) +k1,14849:6630773,15424359:0 +h1,14849:12273990,15424359:0,0,0 +k1,14849:32583030,15424359:20309040 +g1,14849:32583030,15424359 +) +(1,14857:6630773,16240286:25952256,431045,106246 +(1,14851:6630773,16240286:0,0,0 +g1,14851:6630773,16240286 +g1,14851:6630773,16240286 +g1,14851:6303093,16240286 +(1,14851:6303093,16240286:0,0,0 +) +g1,14851:6630773,16240286 +) +g1,14857:7626635,16240286 +h1,14857:8954451,16240286:0,0,0 +k1,14857:32583029,16240286:23628578 +g1,14857:32583029,16240286 +) +(1,14857:6630773,16925141:25952256,424439,79822 +h1,14857:6630773,16925141:0,0,0 +g1,14857:7626635,16925141 +g1,14857:8954451,16925141 +g1,14857:11610083,16925141 +g1,14857:14265715,16925141 +g1,14857:14597669,16925141 +g1,14857:14929623,16925141 +h1,14857:16589393,16925141:0,0,0 +k1,14857:32583029,16925141:15993636 +g1,14857:32583029,16925141 +) +(1,14857:6630773,17609996:25952256,398014,0 +h1,14857:6630773,17609996:0,0,0 +h1,14857:7294681,17609996:0,0,0 +k1,14857:32583029,17609996:25288348 +g1,14857:32583029,17609996 +) +(1,14857:6630773,18294851:25952256,431045,33029 +h1,14857:6630773,18294851:0,0,0 +g1,14857:7626635,18294851 +h1,14857:9618359,18294851:0,0,0 +k1,14857:32583029,18294851:22964670 +g1,14857:32583029,18294851 +) +(1,14857:6630773,18979706:25952256,424439,79822 +h1,14857:6630773,18979706:0,0,0 +g1,14857:7626635,18979706 +g1,14857:8954451,18979706 +h1,14857:10282267,18979706:0,0,0 +k1,14857:32583029,18979706:22300762 +g1,14857:32583029,18979706 +) +] +) +g1,14858:32583029,19059528 +g1,14858:6630773,19059528 +g1,14858:6630773,19059528 +g1,14858:32583029,19059528 +g1,14858:32583029,19059528 +) +h1,14858:6630773,19256136:0,0,0 +(1,14862:6630773,20121216:25952256,513147,134348 +h1,14861:6630773,20121216:983040,0,0 +k1,14861:9345405,20121216:259653 +k1,14861:10539600,20121216:259652 +(1,14861:10539600,20121216:0,414482,115847 +r1,14917:12656425,20121216:2116825,530329,115847 +k1,14861:10539600,20121216:-2116825 +) +(1,14861:10539600,20121216:2116825,414482,115847 +k1,14861:10539600,20121216:3277 +h1,14861:12653148,20121216:0,411205,112570 +) +k1,14861:13089748,20121216:259653 +k1,14861:16107810,20121216:259652 +k1,14861:16983501,20121216:259653 +k1,14861:17831666,20121216:259652 +k1,14861:20793368,20121216:259653 +k1,14861:25771612,20121216:259652 +k1,14861:27420628,20121216:259653 +k1,14861:28627931,20121216:259652 +k1,14861:32583029,20121216:0 +) +(1,14862:6630773,20986296:25952256,513147,134348 +k1,14861:7979067,20986296:151607 +k1,14861:10292050,20986296:151606 +k1,14861:12024385,20986296:151607 +k1,14861:12835284,20986296:151607 +k1,14861:14724906,20986296:151607 +k1,14861:15721926,20986296:151606 +k1,14861:20147791,20986296:151607 +k1,14861:21122530,20986296:151607 +k1,14861:23729771,20986296:151607 +k1,14861:27489134,20986296:151606 +k1,14861:28326903,20986296:151607 +k1,14861:29757117,20986296:151607 +k1,14861:32583029,20986296:0 +) +(1,14862:6630773,21851376:25952256,505283,134348 +g1,14861:8989413,21851376 +g1,14861:10871607,21851376 +g1,14861:12062396,21851376 +g1,14861:13791891,21851376 +g1,14861:15689158,21851376 +g1,14861:17277750,21851376 +g1,14861:18468539,21851376 +k1,14862:32583029,21851376:11638540 +g1,14862:32583029,21851376 +) +v1,14864:6630773,22536231:0,393216,0 +(1,14897:6630773,38918851:25952256,16775836,196608 +g1,14897:6630773,38918851 +g1,14897:6630773,38918851 +g1,14897:6434165,38918851 +(1,14897:6434165,38918851:0,16775836,196608 +r1,14917:32779637,38918851:26345472,16972444,196608 +k1,14897:6434165,38918851:-26345472 +) +(1,14897:6434165,38918851:26345472,16775836,196608 +[1,14897:6630773,38918851:25952256,16579228,0 +(1,14866:6630773,22764062:25952256,424439,79822 +(1,14865:6630773,22764062:0,0,0 +g1,14865:6630773,22764062 +g1,14865:6630773,22764062 +g1,14865:6303093,22764062 +(1,14865:6303093,22764062:0,0,0 +) +g1,14865:6630773,22764062 +) +k1,14866:6630773,22764062:0 +h1,14866:10946174,22764062:0,0,0 +k1,14866:32583030,22764062:21636856 +g1,14866:32583030,22764062 +) +(1,14870:6630773,23579989:25952256,424439,79822 +(1,14868:6630773,23579989:0,0,0 +g1,14868:6630773,23579989 +g1,14868:6630773,23579989 +g1,14868:6303093,23579989 +(1,14868:6303093,23579989:0,0,0 +) +g1,14868:6630773,23579989 +) +g1,14870:7626635,23579989 +g1,14870:8954451,23579989 +h1,14870:10282267,23579989:0,0,0 +k1,14870:32583029,23579989:22300762 +g1,14870:32583029,23579989 +) +(1,14872:6630773,24395916:25952256,424439,106246 +(1,14871:6630773,24395916:0,0,0 +g1,14871:6630773,24395916 +g1,14871:6630773,24395916 +g1,14871:6303093,24395916 +(1,14871:6303093,24395916:0,0,0 +) +g1,14871:6630773,24395916 +) +k1,14872:6630773,24395916:0 +h1,14872:10946174,24395916:0,0,0 +k1,14872:32583030,24395916:21636856 +g1,14872:32583030,24395916 +) +(1,14896:6630773,25211843:25952256,424439,112852 +(1,14874:6630773,25211843:0,0,0 +g1,14874:6630773,25211843 +g1,14874:6630773,25211843 +g1,14874:6303093,25211843 +(1,14874:6303093,25211843:0,0,0 +) +g1,14874:6630773,25211843 +) +g1,14896:7626635,25211843 +g1,14896:7958589,25211843 +g1,14896:8290543,25211843 +g1,14896:8622497,25211843 +g1,14896:8954451,25211843 +g1,14896:9286405,25211843 +g1,14896:9618359,25211843 +g1,14896:10946175,25211843 +g1,14896:11278129,25211843 +g1,14896:12605945,25211843 +g1,14896:12937899,25211843 +g1,14896:14265715,25211843 +g1,14896:14597669,25211843 +g1,14896:15925485,25211843 +g1,14896:16257439,25211843 +g1,14896:17585255,25211843 +g1,14896:17917209,25211843 +g1,14896:19245025,25211843 +g1,14896:19576979,25211843 +g1,14896:20904795,25211843 +g1,14896:21236749,25211843 +g1,14896:22564565,25211843 +g1,14896:22896519,25211843 +g1,14896:24224335,25211843 +g1,14896:24556289,25211843 +g1,14896:25884105,25211843 +g1,14896:26216059,25211843 +g1,14896:27543875,25211843 +g1,14896:27875829,25211843 +h1,14896:28871691,25211843:0,0,0 +k1,14896:32583029,25211843:3711338 +g1,14896:32583029,25211843 +) +(1,14896:6630773,25896698:25952256,407923,9908 +h1,14896:6630773,25896698:0,0,0 +g1,14896:7626635,25896698 +g1,14896:9286405,25896698 +g1,14896:10946175,25896698 +g1,14896:12605945,25896698 +g1,14896:14265715,25896698 +g1,14896:15925485,25896698 +g1,14896:17585255,25896698 +g1,14896:19245025,25896698 +g1,14896:20904795,25896698 +g1,14896:22564565,25896698 +g1,14896:24224335,25896698 +g1,14896:25884105,25896698 +g1,14896:27543875,25896698 +h1,14896:28871691,25896698:0,0,0 +k1,14896:32583029,25896698:3711338 +g1,14896:32583029,25896698 +) +(1,14896:6630773,26581553:25952256,407923,9908 +h1,14896:6630773,26581553:0,0,0 +g1,14896:7626635,26581553 +g1,14896:9286405,26581553 +g1,14896:10946175,26581553 +g1,14896:12605945,26581553 +g1,14896:14265715,26581553 +g1,14896:15925485,26581553 +g1,14896:17585255,26581553 +g1,14896:19245025,26581553 +g1,14896:20904795,26581553 +g1,14896:22564565,26581553 +g1,14896:24224335,26581553 +g1,14896:25884105,26581553 +g1,14896:27543875,26581553 +h1,14896:28871691,26581553:0,0,0 +k1,14896:32583029,26581553:3711338 +g1,14896:32583029,26581553 +) +(1,14896:6630773,27266408:25952256,407923,9908 +h1,14896:6630773,27266408:0,0,0 +g1,14896:7626635,27266408 +g1,14896:9286405,27266408 +g1,14896:10946175,27266408 +g1,14896:12605945,27266408 +g1,14896:14265715,27266408 +g1,14896:15925485,27266408 +g1,14896:17585255,27266408 +g1,14896:19245025,27266408 +g1,14896:20904795,27266408 +g1,14896:22564565,27266408 +g1,14896:24224335,27266408 +g1,14896:25884105,27266408 +g1,14896:27543875,27266408 +h1,14896:28871691,27266408:0,0,0 +k1,14896:32583029,27266408:3711338 +g1,14896:32583029,27266408 +) +(1,14896:6630773,27951263:25952256,407923,9908 +h1,14896:6630773,27951263:0,0,0 +g1,14896:7626635,27951263 +g1,14896:9286405,27951263 +g1,14896:10946175,27951263 +g1,14896:12605945,27951263 +g1,14896:14265715,27951263 +g1,14896:15925485,27951263 +g1,14896:17585255,27951263 +g1,14896:19245025,27951263 +g1,14896:20904795,27951263 +g1,14896:22564565,27951263 +g1,14896:24224335,27951263 +g1,14896:25884105,27951263 +g1,14896:27543875,27951263 +h1,14896:28871691,27951263:0,0,0 +k1,14896:32583029,27951263:3711338 +g1,14896:32583029,27951263 +) +(1,14896:6630773,28636118:25952256,407923,9908 +h1,14896:6630773,28636118:0,0,0 +g1,14896:7626635,28636118 +g1,14896:9286405,28636118 +g1,14896:10946175,28636118 +g1,14896:12605945,28636118 +g1,14896:14265715,28636118 +g1,14896:15925485,28636118 +g1,14896:17585255,28636118 +g1,14896:19245025,28636118 +g1,14896:20904795,28636118 +g1,14896:22564565,28636118 +g1,14896:24224335,28636118 +g1,14896:25884105,28636118 +g1,14896:27543875,28636118 +h1,14896:28871691,28636118:0,0,0 +k1,14896:32583029,28636118:3711338 +g1,14896:32583029,28636118 +) +(1,14896:6630773,29320973:25952256,407923,9908 +h1,14896:6630773,29320973:0,0,0 +g1,14896:7626635,29320973 +g1,14896:9286405,29320973 +g1,14896:10946175,29320973 +g1,14896:12605945,29320973 +g1,14896:14265715,29320973 +g1,14896:15925485,29320973 +g1,14896:17585255,29320973 +g1,14896:19245025,29320973 +g1,14896:20904795,29320973 +g1,14896:22564565,29320973 +g1,14896:24224335,29320973 +g1,14896:25884105,29320973 +g1,14896:27543875,29320973 +h1,14896:28871691,29320973:0,0,0 +k1,14896:32583029,29320973:3711338 +g1,14896:32583029,29320973 +) +(1,14896:6630773,30005828:25952256,407923,9908 +h1,14896:6630773,30005828:0,0,0 +g1,14896:7626635,30005828 +g1,14896:9286405,30005828 +g1,14896:10946175,30005828 +g1,14896:12605945,30005828 +g1,14896:14265715,30005828 +g1,14896:15925485,30005828 +g1,14896:17585255,30005828 +g1,14896:19245025,30005828 +g1,14896:20904795,30005828 +g1,14896:22564565,30005828 +g1,14896:24224335,30005828 +g1,14896:25884105,30005828 +g1,14896:27543875,30005828 +h1,14896:28871691,30005828:0,0,0 +k1,14896:32583029,30005828:3711338 +g1,14896:32583029,30005828 +) +(1,14896:6630773,30690683:25952256,407923,9908 +h1,14896:6630773,30690683:0,0,0 +g1,14896:7626635,30690683 +g1,14896:9286405,30690683 +g1,14896:10946175,30690683 +g1,14896:12605945,30690683 +g1,14896:14265715,30690683 +g1,14896:15925485,30690683 +g1,14896:17585255,30690683 +g1,14896:19245025,30690683 +g1,14896:20904795,30690683 +g1,14896:22564565,30690683 +g1,14896:24224335,30690683 +g1,14896:25884105,30690683 +g1,14896:27543875,30690683 +h1,14896:28871691,30690683:0,0,0 +k1,14896:32583029,30690683:3711338 +g1,14896:32583029,30690683 +) +(1,14896:6630773,31375538:25952256,407923,9908 +h1,14896:6630773,31375538:0,0,0 +g1,14896:7626635,31375538 +g1,14896:9286405,31375538 +g1,14896:10946175,31375538 +g1,14896:12605945,31375538 +g1,14896:14265715,31375538 +g1,14896:15925485,31375538 +g1,14896:17585255,31375538 +g1,14896:19245025,31375538 +g1,14896:20904795,31375538 +g1,14896:22564565,31375538 +g1,14896:24224335,31375538 +g1,14896:25884105,31375538 +g1,14896:27543875,31375538 +h1,14896:28871691,31375538:0,0,0 +k1,14896:32583029,31375538:3711338 +g1,14896:32583029,31375538 +) +(1,14896:6630773,32060393:25952256,407923,9908 +h1,14896:6630773,32060393:0,0,0 +g1,14896:7626635,32060393 +g1,14896:9286405,32060393 +g1,14896:10946175,32060393 +g1,14896:12605945,32060393 +g1,14896:14265715,32060393 +g1,14896:15925485,32060393 +g1,14896:17585255,32060393 +g1,14896:19245025,32060393 +g1,14896:20904795,32060393 +g1,14896:22564565,32060393 +g1,14896:24224335,32060393 +g1,14896:25884105,32060393 +g1,14896:27543875,32060393 +h1,14896:28871691,32060393:0,0,0 +k1,14896:32583029,32060393:3711338 +g1,14896:32583029,32060393 +) +(1,14896:6630773,32745248:25952256,407923,9908 +h1,14896:6630773,32745248:0,0,0 +g1,14896:7626635,32745248 +g1,14896:9286405,32745248 +g1,14896:10946175,32745248 +g1,14896:12605945,32745248 +g1,14896:14265715,32745248 +g1,14896:15925485,32745248 +g1,14896:17585255,32745248 +g1,14896:19245025,32745248 +g1,14896:20904795,32745248 +g1,14896:22564565,32745248 +g1,14896:24224335,32745248 +g1,14896:25884105,32745248 +g1,14896:27543875,32745248 +h1,14896:28871691,32745248:0,0,0 +k1,14896:32583029,32745248:3711338 +g1,14896:32583029,32745248 +) +(1,14896:6630773,33430103:25952256,407923,9908 +h1,14896:6630773,33430103:0,0,0 +g1,14896:7626635,33430103 +g1,14896:9286405,33430103 +g1,14896:10946175,33430103 +g1,14896:12605945,33430103 +g1,14896:14265715,33430103 +g1,14896:15925485,33430103 +g1,14896:17585255,33430103 +g1,14896:19245025,33430103 +g1,14896:20904795,33430103 +g1,14896:22564565,33430103 +g1,14896:24224335,33430103 +g1,14896:25884105,33430103 +g1,14896:27543875,33430103 +h1,14896:28871691,33430103:0,0,0 +k1,14896:32583029,33430103:3711338 +g1,14896:32583029,33430103 +) +(1,14896:6630773,34114958:25952256,407923,9908 +h1,14896:6630773,34114958:0,0,0 +g1,14896:7626635,34114958 +g1,14896:9286405,34114958 +g1,14896:10946175,34114958 +g1,14896:12605945,34114958 +g1,14896:14265715,34114958 +g1,14896:15925485,34114958 +g1,14896:17585255,34114958 +g1,14896:19245025,34114958 +g1,14896:20904795,34114958 +g1,14896:22564565,34114958 +g1,14896:24224335,34114958 +g1,14896:25884105,34114958 +g1,14896:27543875,34114958 +h1,14896:28871691,34114958:0,0,0 +k1,14896:32583029,34114958:3711338 +g1,14896:32583029,34114958 +) +(1,14896:6630773,34799813:25952256,407923,9908 +h1,14896:6630773,34799813:0,0,0 +g1,14896:7626635,34799813 +g1,14896:9286405,34799813 +g1,14896:10946175,34799813 +g1,14896:12605945,34799813 +g1,14896:14265715,34799813 +g1,14896:15925485,34799813 +g1,14896:17585255,34799813 +g1,14896:19245025,34799813 +g1,14896:20904795,34799813 +g1,14896:22564565,34799813 +g1,14896:24224335,34799813 +g1,14896:25884105,34799813 +g1,14896:27543875,34799813 +h1,14896:28871691,34799813:0,0,0 +k1,14896:32583029,34799813:3711338 +g1,14896:32583029,34799813 +) +(1,14896:6630773,35484668:25952256,407923,9908 +h1,14896:6630773,35484668:0,0,0 +g1,14896:7626635,35484668 +g1,14896:9286405,35484668 +g1,14896:10946175,35484668 +g1,14896:12605945,35484668 +g1,14896:14265715,35484668 +g1,14896:15925485,35484668 +g1,14896:17585255,35484668 +g1,14896:19245025,35484668 +g1,14896:20904795,35484668 +g1,14896:22564565,35484668 +g1,14896:24224335,35484668 +g1,14896:25884105,35484668 +g1,14896:27543875,35484668 +h1,14896:28871691,35484668:0,0,0 +k1,14896:32583029,35484668:3711338 +g1,14896:32583029,35484668 +) +(1,14896:6630773,36169523:25952256,407923,9908 +h1,14896:6630773,36169523:0,0,0 +g1,14896:7626635,36169523 +g1,14896:9286405,36169523 +g1,14896:10946175,36169523 +g1,14896:12605945,36169523 +g1,14896:14265715,36169523 +g1,14896:15925485,36169523 +g1,14896:17585255,36169523 +g1,14896:19245025,36169523 +g1,14896:20904795,36169523 +g1,14896:22564565,36169523 +g1,14896:24224335,36169523 +g1,14896:25884105,36169523 +g1,14896:27543875,36169523 +h1,14896:28871691,36169523:0,0,0 +k1,14896:32583029,36169523:3711338 +g1,14896:32583029,36169523 +) +(1,14896:6630773,36854378:25952256,407923,9908 +h1,14896:6630773,36854378:0,0,0 +g1,14896:7626635,36854378 +g1,14896:9286405,36854378 +g1,14896:10946175,36854378 +g1,14896:12605945,36854378 +g1,14896:14265715,36854378 +g1,14896:15925485,36854378 +g1,14896:17585255,36854378 +g1,14896:19245025,36854378 +g1,14896:20904795,36854378 +g1,14896:22564565,36854378 +g1,14896:24224335,36854378 +g1,14896:25884105,36854378 +g1,14896:27543875,36854378 +h1,14896:28871691,36854378:0,0,0 +k1,14896:32583029,36854378:3711338 +g1,14896:32583029,36854378 +) +(1,14896:6630773,37539233:25952256,407923,9908 +h1,14896:6630773,37539233:0,0,0 +g1,14896:7626635,37539233 +g1,14896:9286405,37539233 +g1,14896:10946175,37539233 +g1,14896:12605945,37539233 +g1,14896:14265715,37539233 +g1,14896:15925485,37539233 +g1,14896:17585255,37539233 +g1,14896:19245025,37539233 +g1,14896:20904795,37539233 +g1,14896:22564565,37539233 +g1,14896:24224335,37539233 +g1,14896:25884105,37539233 +g1,14896:27543875,37539233 +h1,14896:28871691,37539233:0,0,0 +k1,14896:32583029,37539233:3711338 +g1,14896:32583029,37539233 +) +(1,14896:6630773,38224088:25952256,407923,9908 +h1,14896:6630773,38224088:0,0,0 +g1,14896:7626635,38224088 +g1,14896:9286405,38224088 +g1,14896:10946175,38224088 +g1,14896:12605945,38224088 +g1,14896:14265715,38224088 +g1,14896:15925485,38224088 +g1,14896:17585255,38224088 +g1,14896:19245025,38224088 +g1,14896:20904795,38224088 +g1,14896:22564565,38224088 +g1,14896:24224335,38224088 +g1,14896:25884105,38224088 +g1,14896:27543875,38224088 +h1,14896:28871691,38224088:0,0,0 +k1,14896:32583029,38224088:3711338 +g1,14896:32583029,38224088 +) +(1,14896:6630773,38908943:25952256,407923,9908 +h1,14896:6630773,38908943:0,0,0 +g1,14896:7626635,38908943 +g1,14896:9286405,38908943 +g1,14896:10946175,38908943 +g1,14896:12605945,38908943 +g1,14896:14265715,38908943 +g1,14896:15925485,38908943 +g1,14896:17585255,38908943 +g1,14896:19245025,38908943 +g1,14896:20904795,38908943 +g1,14896:22564565,38908943 +g1,14896:24224335,38908943 +g1,14896:25884105,38908943 +g1,14896:27543875,38908943 +h1,14896:28871691,38908943:0,0,0 +k1,14896:32583029,38908943:3711338 +g1,14896:32583029,38908943 +) +] +) +g1,14897:32583029,38918851 +g1,14897:6630773,38918851 +g1,14897:6630773,38918851 +g1,14897:32583029,38918851 +g1,14897:32583029,38918851 +) +h1,14897:6630773,39115459:0,0,0 +v1,14903:6630773,39800314:0,393216,0 +(1,14907:6630773,40134391:25952256,727293,196608 +g1,14907:6630773,40134391 +g1,14907:6630773,40134391 +g1,14907:6434165,40134391 +(1,14907:6434165,40134391:0,727293,196608 +r1,14917:32779637,40134391:26345472,923901,196608 +k1,14907:6434165,40134391:-26345472 +) +(1,14907:6434165,40134391:26345472,727293,196608 +[1,14907:6630773,40134391:25952256,530685,0 +(1,14905:6630773,40028145:25952256,424439,106246 +(1,14904:6630773,40028145:0,0,0 +g1,14904:6630773,40028145 +g1,14904:6630773,40028145 +g1,14904:6303093,40028145 +(1,14904:6303093,40028145:0,0,0 +) +g1,14904:6630773,40028145 +) +k1,14905:6630773,40028145:0 +h1,14905:10614220,40028145:0,0,0 +k1,14905:32583028,40028145:21968808 +g1,14905:32583028,40028145 +) +] +) +g1,14907:32583029,40134391 +g1,14907:6630773,40134391 +g1,14907:6630773,40134391 +g1,14907:32583029,40134391 +g1,14907:32583029,40134391 +) +h1,14907:6630773,40330999:0,0,0 +] +(1,14917:32583029,45706769:0,0,0 +g1,14917:32583029,45706769 +) +) +] +(1,14917:6630773,47279633:25952256,0,0 +h1,14917:6630773,47279633:25952256,0,0 +) +] +(1,14917:4262630,4025873:0,0,0 +[1,14917:-473656,4025873:0,0,0 +(1,14917:-473656,-710413:0,0,0 +(1,14917:-473656,-710413:0,0,0 +g1,14917:-473656,-710413 +) +g1,14917:-473656,-710413 +) +] +) +] +!26468 +}238 +Input:2222:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2223:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2224:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2225:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2226:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2227:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!482 -{256 -[1,15170:4262630,47279633:28320399,43253760,0 -(1,15170:4262630,4025873:0,0,0 -[1,15170:-473656,4025873:0,0,0 -(1,15170:-473656,-710413:0,0,0 -(1,15170:-473656,-644877:0,0,0 -k1,15170:-473656,-644877:-65536 +!576 +{239 +[1,14961:4262630,47279633:28320399,43253760,0 +(1,14961:4262630,4025873:0,0,0 +[1,14961:-473656,4025873:0,0,0 +(1,14961:-473656,-710413:0,0,0 +(1,14961:-473656,-644877:0,0,0 +k1,14961:-473656,-644877:-65536 ) -(1,15170:-473656,4736287:0,0,0 -k1,15170:-473656,4736287:5209943 +(1,14961:-473656,4736287:0,0,0 +k1,14961:-473656,4736287:5209943 ) -g1,15170:-473656,-710413 +g1,14961:-473656,-710413 ) ] ) -[1,15170:6630773,47279633:25952256,43253760,0 -[1,15170:6630773,4812305:25952256,786432,0 -(1,15170:6630773,4812305:25952256,505283,7863 -(1,15170:6630773,4812305:25952256,505283,7863 -g1,15170:3078558,4812305 -[1,15170:3078558,4812305:0,0,0 -(1,15170:3078558,2439708:0,1703936,0 -k1,15170:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,15170:2537886,2439708:1179648,16384,0 +[1,14961:6630773,47279633:25952256,43253760,0 +[1,14961:6630773,4812305:25952256,786432,0 +(1,14961:6630773,4812305:25952256,513147,126483 +(1,14961:6630773,4812305:25952256,513147,126483 +g1,14961:3078558,4812305 +[1,14961:3078558,4812305:0,0,0 +(1,14961:3078558,2439708:0,1703936,0 +k1,14961:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,14961:2537886,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,15170:3078558,1915420:16384,1179648,0 +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,14961:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] ) ) ) ] -[1,15170:3078558,4812305:0,0,0 -(1,15170:3078558,2439708:0,1703936,0 -g1,15170:29030814,2439708 -g1,15170:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,15170:36151628,1915420:16384,1179648,0 +[1,14961:3078558,4812305:0,0,0 +(1,14961:3078558,2439708:0,1703936,0 +g1,14961:29030814,2439708 +g1,14961:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,14961:36151628,1915420:16384,1179648,0 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,15170:37855564,2439708:1179648,16384,0 +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,14961:37855564,2439708:1179648,16384,0 ) ) -k1,15170:3078556,2439708:-34777008 +k1,14961:3078556,2439708:-34777008 ) ] -[1,15170:3078558,4812305:0,0,0 -(1,15170:3078558,49800853:0,16384,2228224 -k1,15170:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,15170:2537886,49800853:1179648,16384,0 +[1,14961:3078558,4812305:0,0,0 +(1,14961:3078558,49800853:0,16384,2228224 +k1,14961:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,14961:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,15170:3078558,51504789:16384,1179648,0 +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,14961:3078558,51504789:16384,1179648,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 ) ] ) ) ) ] -[1,15170:3078558,4812305:0,0,0 -(1,15170:3078558,49800853:0,16384,2228224 -g1,15170:29030814,49800853 -g1,15170:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,15170:36151628,51504789:16384,1179648,0 +[1,14961:3078558,4812305:0,0,0 +(1,14961:3078558,49800853:0,16384,2228224 +g1,14961:29030814,49800853 +g1,14961:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,14961:36151628,51504789:16384,1179648,0 ) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 ) ] ) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,15170:37855564,49800853:1179648,16384,0 +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,14961:37855564,49800853:1179648,16384,0 ) ) -k1,15170:3078556,49800853:-34777008 +k1,14961:3078556,49800853:-34777008 ) ] -g1,15170:6630773,4812305 -g1,15170:6630773,4812305 -g1,15170:10653372,4812305 -g1,15170:13512052,4812305 -k1,15170:31387652,4812305:17875600 +g1,14961:6630773,4812305 +k1,14961:19540057,4812305:11713907 +g1,14961:21162728,4812305 +g1,14961:21985204,4812305 +g1,14961:24539797,4812305 +g1,14961:25949476,4812305 +g1,14961:28728857,4812305 +g1,14961:29852144,4812305 ) ) ] -[1,15170:6630773,45706769:25952256,40108032,0 -(1,15170:6630773,45706769:25952256,40108032,0 -(1,15170:6630773,45706769:0,0,0 -g1,15170:6630773,45706769 +[1,14961:6630773,45706769:25952256,40108032,0 +(1,14961:6630773,45706769:25952256,40108032,0 +(1,14961:6630773,45706769:0,0,0 +g1,14961:6630773,45706769 ) -[1,15170:6630773,45706769:25952256,40108032,0 -(1,15131:6630773,23766069:25952256,18167332,0 -k1,15131:10523651,23766069:3892878 -h1,15130:10523651,23766069:0,0,0 -(1,15130:10523651,23766069:18166500,18167332,0 -(1,15130:10523651,23766069:18167376,18167376,0 -(1,15130:10523651,23766069:18167376,18167376,0 -(1,15130:10523651,23766069:0,18167376,0 -(1,15130:10523651,23766069:0,28417720,0 -(1,15130:10523651,23766069:28417720,28417720,0 +[1,14961:6630773,45706769:25952256,40108032,0 +(1,14910:6630773,14682403:25952256,9083666,0 +k1,14910:10523651,14682403:3892878 +h1,14909:10523651,14682403:0,0,0 +(1,14909:10523651,14682403:18166500,9083666,0 +(1,14909:10523651,14682403:18167376,9083688,0 +(1,14909:10523651,14682403:18167376,9083688,0 +(1,14909:10523651,14682403:0,9083688,0 +(1,14909:10523651,14682403:0,14208860,0 +(1,14909:10523651,14682403:28417720,14208860,0 ) -k1,15130:10523651,23766069:-28417720 -) -) -g1,15130:28691027,23766069 -) -) -) -g1,15131:28690151,23766069 -k1,15131:32583029,23766069:3892878 -) -v1,15138:6630773,25131845:0,393216,0 -(1,15139:6630773,29783618:25952256,5044989,0 -g1,15139:6630773,29783618 -g1,15139:6303093,29783618 -r1,15170:6401397,29783618:98304,5044989,0 -g1,15139:6600626,29783618 -g1,15139:6797234,29783618 -[1,15139:6797234,29783618:25785795,5044989,0 -(1,15139:6797234,25564383:25785795,825754,196608 -(1,15138:6797234,25564383:0,825754,196608 -r1,15170:8834093,25564383:2036859,1022362,196608 -k1,15138:6797234,25564383:-2036859 -) -(1,15138:6797234,25564383:2036859,825754,196608 -) -k1,15138:9016819,25564383:182726 -k1,15138:10743037,25564383:327680 -k1,15138:12321680,25564383:182726 -k1,15138:13893770,25564383:182727 -k1,15138:14885866,25564383:182726 -k1,15138:16087677,25564383:182726 -k1,15138:18008418,25564383:182726 -k1,15138:20352521,25564383:182726 -k1,15138:24652874,25564383:182726 -k1,15138:26573616,25564383:182727 -k1,15138:28917719,25564383:182726 -k1,15138:31391584,25564383:182726 -k1,15138:32583029,25564383:0 -) -(1,15139:6797234,26405871:25785795,513147,126483 -k1,15138:8687321,26405871:152072 -k1,15138:11325173,26405871:152071 -k1,15138:12136537,26405871:152072 -k1,15138:14224542,26405871:152071 -k1,15138:15844620,26405871:152072 -k1,15138:16609453,26405871:152071 -k1,15138:18213147,26405871:152072 -k1,15138:19024510,26405871:152071 -k1,15138:20195667,26405871:152072 -k1,15138:23234599,26405871:152071 -k1,15138:24002709,26405871:152072 -k1,15138:25173865,26405871:152071 -(1,15138:25173865,26405871:0,452978,115847 -r1,15170:27994114,26405871:2820249,568825,115847 -k1,15138:25173865,26405871:-2820249 -) -(1,15138:25173865,26405871:2820249,452978,115847 -k1,15138:25173865,26405871:3277 -h1,15138:27990837,26405871:0,411205,112570 -) -k1,15138:28146186,26405871:152072 -k1,15138:29687620,26405871:152071 -k1,15138:30947906,26405871:152072 -k1,15138:32583029,26405871:0 -) -(1,15139:6797234,27247359:25785795,513147,134348 -k1,15138:9795593,27247359:210457 -k1,15138:12518045,27247359:210457 -k1,15138:15389264,27247359:210457 -k1,15138:18151038,27247359:210457 -k1,15138:19309147,27247359:210458 -k1,15138:22354691,27247359:210457 -k1,15138:24300541,27247359:210457 -k1,15138:27206494,27247359:210457 -(1,15138:27206494,27247359:0,452978,115847 -r1,15170:28619895,27247359:1413401,568825,115847 -k1,15138:27206494,27247359:-1413401 -) -(1,15138:27206494,27247359:1413401,452978,115847 -k1,15138:27206494,27247359:3277 -h1,15138:28616618,27247359:0,411205,112570 -) -k1,15138:29004022,27247359:210457 -k1,15138:31490544,27247359:210457 -k1,15138:32583029,27247359:0 -) -(1,15139:6797234,28088847:25785795,513147,126483 -k1,15138:8456804,28088847:237439 -k1,15138:9345709,28088847:237477 -k1,15138:12386161,28088847:237477 -k1,15138:13954019,28088847:237477 -k1,15138:16393506,28088847:237477 -k1,15138:17650068,28088847:237477 -k1,15138:20774406,28088847:237477 -k1,15138:22003443,28088847:237477 -k1,15138:23634871,28088847:237477 -k1,15138:26196910,28088847:237477 -k1,15138:27085815,28088847:237477 -k1,15138:28774914,28088847:237477 -k1,15138:29671683,28088847:237477 -k1,15138:30928245,28088847:237477 -k1,15138:32583029,28088847:0 -) -(1,15139:6797234,28930335:25785795,513147,7863 -k1,15138:10026793,28930335:214248 -k1,15138:12327707,28930335:214248 -k1,15138:12897815,28930335:214248 -k1,15138:15816078,28930335:214248 -k1,15138:16689618,28930335:214248 -k1,15138:19564629,28930335:214249 -k1,15138:21063383,28930335:214248 -k1,15138:22960596,28930335:214248 -k1,15138:24442310,28930335:214248 -k1,15138:27160689,28930335:214248 -k1,15138:28394022,28930335:214248 -k1,15138:30263054,28930335:214248 -k1,15138:32583029,28930335:0 -) -(1,15139:6797234,29771823:25785795,513147,11795 -g1,15138:9838104,29771823 -g1,15138:11228778,29771823 -g1,15138:12520492,29771823 -g1,15138:14141852,29771823 -g1,15138:14992509,29771823 -g1,15138:16457894,29771823 -g1,15138:17987504,29771823 -g1,15138:20423477,29771823 -g1,15138:21641791,29771823 -g1,15138:24603363,29771823 -g1,15138:27689453,29771823 -k1,15139:32583029,29771823:3728346 -g1,15139:32583029,29771823 -) -] -g1,15139:32583029,29783618 -) -h1,15139:6630773,29783618:0,0,0 -(1,15143:6630773,32399166:25952256,555811,139132 -(1,15143:6630773,32399166:2899444,534184,12975 -g1,15143:6630773,32399166 -g1,15143:9530217,32399166 -) -g1,15143:12369827,32399166 -k1,15143:32583029,32399166:17244552 -g1,15143:32583029,32399166 -) -(1,15147:6630773,33633870:25952256,505283,134348 -k1,15146:7564115,33633870:305507 -k1,15146:10046073,33633870:305507 -k1,15146:13079843,33633870:305506 -k1,15146:14404435,33633870:305507 -k1,15146:15886969,33633870:305507 -k1,15146:16723973,33633870:305507 -k1,15146:17680907,33633870:305506 -k1,15146:19879094,33633870:305507 -k1,15146:24256353,33633870:305507 -k1,15146:25829326,33633870:305507 -k1,15146:28660590,33633870:305506 -k1,15146:31189078,33633870:305507 -k1,15146:32583029,33633870:0 -) -(1,15147:6630773,34475358:25952256,513147,134348 -k1,15146:9607500,34475358:253706 -k1,15146:12345676,34475358:253706 -k1,15146:16726184,34475358:253706 -k1,15146:18171336,34475358:253707 -k1,15146:21621888,34475358:253706 -k1,15146:26738365,34475358:253706 -k1,15146:30682403,34475358:253706 -k1,15146:31563944,34475358:253706 -k1,15146:32583029,34475358:0 -) -(1,15147:6630773,35316846:25952256,513147,134348 -k1,15146:8188396,35316846:173503 -k1,15146:11023316,35316846:173503 -k1,15146:12065171,35316846:173503 -k1,15146:13331159,35316846:173503 -k1,15146:16200158,35316846:173503 -(1,15146:16200158,35316846:0,452978,115847 -r1,15170:19020407,35316846:2820249,568825,115847 -k1,15146:16200158,35316846:-2820249 -) -(1,15146:16200158,35316846:2820249,452978,115847 -k1,15146:16200158,35316846:3277 -h1,15146:19017130,35316846:0,411205,112570 -) -k1,15146:19193910,35316846:173503 -k1,15146:20935034,35316846:173503 -k1,15146:22127622,35316846:173503 -k1,15146:24362863,35316846:173478 -k1,15146:27116518,35316846:173503 -k1,15146:29330156,35316846:173503 -k1,15146:30457208,35316846:173503 -k1,15146:31896867,35316846:173503 -k1,15146:32583029,35316846:0 -) -(1,15147:6630773,36158334:25952256,505283,126483 -k1,15146:8901249,36158334:241481 -k1,15146:10161814,36158334:241480 -(1,15146:10161814,36158334:0,452978,115847 -r1,15170:12982063,36158334:2820249,568825,115847 -k1,15146:10161814,36158334:-2820249 -) -(1,15146:10161814,36158334:2820249,452978,115847 -k1,15146:10161814,36158334:3277 -h1,15146:12978786,36158334:0,411205,112570 -) -k1,15146:13223544,36158334:241481 -k1,15146:14854387,36158334:241480 -k1,15146:16981339,36158334:241481 -k1,15146:19637166,36158334:241481 -k1,15146:22639022,36158334:241480 -k1,15146:26045237,36158334:241481 -k1,15146:26914552,36158334:241480 -k1,15146:28858003,36158334:241481 -k1,15146:30796865,36158334:241480 -k1,15146:31394206,36158334:241481 -k1,15147:32583029,36158334:0 -) -(1,15147:6630773,36999822:25952256,513147,126483 -k1,15146:7995506,36999822:253242 -k1,15146:8908040,36999822:253242 -k1,15146:12152345,36999822:253242 -k1,15146:15040789,36999822:253241 -k1,15146:16890488,36999822:253242 -k1,15146:17803022,36999822:253242 -k1,15146:22128016,36999822:253242 -k1,15146:24241825,36999822:253242 -k1,15146:25146495,36999822:253242 -k1,15146:26147502,36999822:253241 -k1,15146:27706877,36999822:253242 -k1,15146:31189078,36999822:253242 -k1,15146:32583029,36999822:0 -) -(1,15147:6630773,37841310:25952256,513147,126483 -g1,15146:9525498,37841310 -(1,15146:9525498,37841310:0,452978,115847 -r1,15170:10938899,37841310:1413401,568825,115847 -k1,15146:9525498,37841310:-1413401 -) -(1,15146:9525498,37841310:1413401,452978,115847 -k1,15146:9525498,37841310:3277 -h1,15146:10935622,37841310:0,411205,112570 -) -g1,15146:11138128,37841310 -g1,15146:13222828,37841310 -g1,15146:16278771,37841310 -g1,15146:18709501,37841310 -k1,15147:32583029,37841310:10915233 -g1,15147:32583029,37841310 -) -v1,15149:6630773,39031776:0,393216,0 -(1,15162:6630773,44010118:25952256,5371558,196608 -g1,15162:6630773,44010118 -g1,15162:6630773,44010118 -g1,15162:6434165,44010118 -(1,15162:6434165,44010118:0,5371558,196608 -r1,15170:32779637,44010118:26345472,5568166,196608 -k1,15162:6434165,44010118:-26345472 -) -(1,15162:6434165,44010118:26345472,5371558,196608 -[1,15162:6630773,44010118:25952256,5174950,0 -(1,15151:6630773,39239394:25952256,404226,76021 -(1,15150:6630773,39239394:0,0,0 -g1,15150:6630773,39239394 -g1,15150:6630773,39239394 -g1,15150:6303093,39239394 -(1,15150:6303093,39239394:0,0,0 -) -g1,15150:6630773,39239394 -) -g1,15151:7579210,39239394 -g1,15151:8527648,39239394 -k1,15151:8527648,39239394:0 -h1,15151:13585979,39239394:0,0,0 -k1,15151:32583029,39239394:18997050 -g1,15151:32583029,39239394 -) -(1,15152:6630773,39905572:25952256,404226,101187 -h1,15152:6630773,39905572:0,0,0 -k1,15152:6630773,39905572:0 -h1,15152:9476084,39905572:0,0,0 -k1,15152:32583028,39905572:23106944 -g1,15152:32583028,39905572 -) -(1,15161:6630773,40571750:25952256,379060,0 -(1,15154:6630773,40571750:0,0,0 -g1,15154:6630773,40571750 -g1,15154:6630773,40571750 -g1,15154:6303093,40571750 -(1,15154:6303093,40571750:0,0,0 -) -g1,15154:6630773,40571750 -) -h1,15161:7263064,40571750:0,0,0 -k1,15161:32583028,40571750:25319964 -g1,15161:32583028,40571750 -) -(1,15161:6630773,41237928:25952256,404226,7863 -h1,15161:6630773,41237928:0,0,0 -g1,15161:7579210,41237928 -h1,15161:9159938,41237928:0,0,0 -k1,15161:32583030,41237928:23423092 -g1,15161:32583030,41237928 -) -(1,15161:6630773,41904106:25952256,404226,76021 -h1,15161:6630773,41904106:0,0,0 -g1,15161:7579210,41904106 -g1,15161:10424521,41904106 -g1,15161:11056813,41904106 -h1,15161:13902124,41904106:0,0,0 -k1,15161:32583028,41904106:18680904 -g1,15161:32583028,41904106 -) -(1,15161:6630773,42570284:25952256,379060,0 -h1,15161:6630773,42570284:0,0,0 -h1,15161:7263064,42570284:0,0,0 -k1,15161:32583028,42570284:25319964 -g1,15161:32583028,42570284 -) -(1,15161:6630773,43236462:25952256,404226,101187 -h1,15161:6630773,43236462:0,0,0 -g1,15161:7579210,43236462 -g1,15161:10108376,43236462 -g1,15161:12321396,43236462 -g1,15161:12637542,43236462 -g1,15161:12953688,43236462 -g1,15161:13585980,43236462 -h1,15161:16115145,43236462:0,0,0 -k1,15161:32583029,43236462:16467884 -g1,15161:32583029,43236462 -) -(1,15161:6630773,43902640:25952256,410518,107478 -h1,15161:6630773,43902640:0,0,0 -g1,15161:7579210,43902640 -g1,15161:9792230,43902640 -g1,15161:10740667,43902640 -g1,15161:13585978,43902640 -h1,15161:14218269,43902640:0,0,0 -k1,15161:32583029,43902640:18364760 -g1,15161:32583029,43902640 -) -] -) -g1,15162:32583029,44010118 -g1,15162:6630773,44010118 -g1,15162:6630773,44010118 -g1,15162:32583029,44010118 -g1,15162:32583029,44010118 -) -h1,15162:6630773,44206726:0,0,0 -v1,15166:6630773,45921480:0,393216,0 -] -(1,15170:32583029,45706769:0,0,0 -g1,15170:32583029,45706769 -) -) -] -(1,15170:6630773,47279633:25952256,0,0 -h1,15170:6630773,47279633:25952256,0,0 -) -] -(1,15170:4262630,4025873:0,0,0 -[1,15170:-473656,4025873:0,0,0 -(1,15170:-473656,-710413:0,0,0 -(1,15170:-473656,-710413:0,0,0 -g1,15170:-473656,-710413 +k1,14909:10523651,14682403:-28417720 +) +) +g1,14909:28691027,14682403 +) +) +) +g1,14910:28690151,14682403 +k1,14910:32583029,14682403:3892878 +) +v1,14917:6630773,15547483:0,393216,0 +(1,14928:6630773,19424091:25952256,4269824,0 +g1,14928:6630773,19424091 +g1,14928:6237557,19424091 +r1,14961:6368629,19424091:131072,4269824,0 +g1,14928:6567858,19424091 +g1,14928:6764466,19424091 +[1,14928:6764466,19424091:25818563,4269824,0 +(1,14918:6764466,15819960:25818563,665693,196608 +(1,14917:6764466,15819960:0,665693,196608 +r1,14961:8010564,15819960:1246098,862301,196608 +k1,14917:6764466,15819960:-1246098 +) +(1,14917:6764466,15819960:1246098,665693,196608 +) +k1,14917:8193338,15819960:182774 +k1,14917:9919556,15819960:327680 +k1,14917:12494394,15819960:182774 +k1,14917:13696253,15819960:182774 +k1,14917:16810452,15819960:182774 +k1,14917:17652518,15819960:182774 +k1,14917:18854377,15819960:182774 +(1,14917:18854377,15819960:0,414482,115847 +r1,14961:20971202,15819960:2116825,530329,115847 +k1,14917:18854377,15819960:-2116825 +) +(1,14917:18854377,15819960:2116825,414482,115847 +k1,14917:18854377,15819960:3277 +h1,14917:20967925,15819960:0,411205,112570 +) +k1,14917:21153977,15819960:182775 +k1,14917:23469948,15819960:182774 +k1,14917:24844167,15819960:182774 +k1,14917:27757826,15819960:182774 +k1,14917:29270981,15819960:182774 +k1,14917:30645200,15819960:182774 +k1,14917:32124932,15819960:182774 +k1,14917:32583029,15819960:0 +) +(1,14918:6764466,16685040:25818563,513147,134348 +k1,14917:8984248,16685040:146223 +k1,14917:9813355,16685040:146222 +k1,14917:11025849,16685040:146223 +k1,14917:12739692,16685040:146222 +k1,14917:14170421,16685040:146223 +k1,14917:14975935,16685040:146222 +k1,14917:16141243,16685040:146223 +k1,14917:18246992,16685040:146223 +(1,14917:18246992,16685040:0,414482,115847 +r1,14961:20012105,16685040:1765113,530329,115847 +k1,14917:18246992,16685040:-1765113 +) +(1,14917:18246992,16685040:1765113,414482,115847 +k1,14917:18246992,16685040:3277 +h1,14917:20008828,16685040:0,411205,112570 +) +k1,14917:20158327,16685040:146222 +k1,14917:21589056,16685040:146223 +k1,14917:22603630,16685040:146222 +k1,14917:25099974,16685040:146223 +k1,14917:27275191,16685040:146222 +k1,14917:30214558,16685040:146223 +k1,14917:32583029,16685040:0 +) +(1,14918:6764466,17550120:25818563,513147,115847 +g1,14917:8389103,17550120 +g1,14917:10433170,17550120 +(1,14917:10433170,17550120:0,414482,115847 +r1,14961:12549995,17550120:2116825,530329,115847 +k1,14917:10433170,17550120:-2116825 +) +(1,14917:10433170,17550120:2116825,414482,115847 +k1,14917:10433170,17550120:3277 +h1,14917:12546718,17550120:0,411205,112570 +) +g1,14917:12922894,17550120 +g1,14917:15594796,17550120 +g1,14917:16453317,17550120 +g1,14917:17671631,17550120 +g1,14917:19260223,17550120 +g1,14917:20724297,17550120 +g1,14917:23681936,17550120 +g1,14917:24497203,17550120 +k1,14918:32583029,17550120:7497313 +g1,14918:32583029,17550120 +) +v1,14920:6764466,18234975:0,393216,0 +(1,14925:6764466,19227483:25818563,1385724,196608 +g1,14925:6764466,19227483 +g1,14925:6764466,19227483 +g1,14925:6567858,19227483 +(1,14925:6567858,19227483:0,1385724,196608 +r1,14961:32779637,19227483:26211779,1582332,196608 +k1,14925:6567857,19227483:-26211780 +) +(1,14925:6567858,19227483:26211779,1385724,196608 +[1,14925:6764466,19227483:25818563,1189116,0 +(1,14922:6764466,18462806:25818563,424439,79822 +(1,14921:6764466,18462806:0,0,0 +g1,14921:6764466,18462806 +g1,14921:6764466,18462806 +g1,14921:6436786,18462806 +(1,14921:6436786,18462806:0,0,0 +) +g1,14921:6764466,18462806 +) +k1,14922:6764466,18462806:0 +h1,14922:10415959,18462806:0,0,0 +k1,14922:32583029,18462806:22167070 +g1,14922:32583029,18462806 +) +(1,14923:6764466,19147661:25818563,424439,79822 +h1,14923:6764466,19147661:0,0,0 +k1,14923:6764466,19147661:0 +h1,14923:12739636,19147661:0,0,0 +k1,14923:32583028,19147661:19843392 +g1,14923:32583028,19147661 +) +] +) +g1,14925:32583029,19227483 +g1,14925:6764466,19227483 +g1,14925:6764466,19227483 +g1,14925:32583029,19227483 +g1,14925:32583029,19227483 +) +h1,14925:6764466,19424091:0,0,0 +] +g1,14928:32583029,19424091 +) +h1,14928:6630773,19424091:0,0,0 +(1,14931:6630773,20289171:25952256,513147,126483 +h1,14930:6630773,20289171:983040,0,0 +k1,14930:8487244,20289171:245596 +k1,14930:9751925,20289171:245596 +k1,14930:11381641,20289171:245596 +k1,14930:12799676,20289171:245596 +k1,14930:14541459,20289171:245596 +k1,14930:17261695,20289171:245597 +k1,14930:18679730,20289171:245596 +k1,14930:21687669,20289171:245596 +k1,14930:25595417,20289171:245596 +k1,14930:26492441,20289171:245596 +k1,14930:28163445,20289171:245596 +k1,14930:30253879,20289171:245596 +k1,14931:32583029,20289171:0 +) +(1,14931:6630773,21154251:25952256,513147,134348 +k1,14930:9475341,21154251:230337 +k1,14930:10697238,21154251:230337 +k1,14930:12614472,21154251:230337 +k1,14930:13472644,21154251:230337 +k1,14930:14722066,21154251:230337 +k1,14930:16258536,21154251:230337 +k1,14930:17645583,21154251:230337 +k1,14930:18744273,21154251:230338 +k1,14930:20067095,21154251:230337 +k1,14930:20653292,21154251:230337 +k1,14930:23245547,21154251:230337 +k1,14930:25902027,21154251:230337 +k1,14930:26783792,21154251:230337 +k1,14930:29431752,21154251:230337 +k1,14930:30681174,21154251:230337 +k1,14930:32583029,21154251:0 +) +(1,14931:6630773,22019331:25952256,513147,134348 +k1,14930:8470743,22019331:150452 +k1,14930:9237233,22019331:150452 +k1,14930:10406770,22019331:150452 +k1,14930:12798552,22019331:150451 +k1,14930:15933514,22019331:150452 +k1,14930:16952318,22019331:150452 +k1,14930:18195255,22019331:150452 +k1,14930:20113213,22019331:150452 +k1,14930:20826619,22019331:150452 +k1,14930:23388141,22019331:150452 +k1,14930:25279884,22019331:150451 +k1,14930:27142792,22019331:150452 +k1,14930:28054772,22019331:150452 +k1,14930:29699445,22019331:150452 +k1,14930:32583029,22019331:0 +) +(1,14931:6630773,22884411:25952256,513147,134348 +k1,14930:10337014,22884411:182370 +k1,14930:11467036,22884411:182371 +k1,14930:12668491,22884411:182370 +k1,14930:17754920,22884411:182370 +k1,14930:18293150,22884411:182370 +k1,14930:20929844,22884411:182371 +k1,14930:22059865,22884411:182370 +k1,14930:24127706,22884411:182370 +k1,14930:25329161,22884411:182370 +k1,14930:28279773,22884411:182371 +k1,14930:29616870,22884411:182353 +k1,14930:32583029,22884411:0 +) +(1,14931:6630773,23749491:25952256,513147,134348 +k1,14930:8117249,23749491:295031 +k1,14930:10318067,23749491:295031 +k1,14930:15343487,23749491:295031 +k1,14930:17373911,23749491:295031 +k1,14930:19643542,23749491:295031 +k1,14930:20470070,23749491:295031 +k1,14930:22451998,23749491:295031 +k1,14930:22451998,23749491:0 +k1,14930:22747029,23749491:295031 +k1,14930:25083506,23749491:295031 +k1,14930:29630513,23749491:295031 +k1,14930:30944629,23749491:295031 +k1,14931:32583029,23749491:0 +) +(1,14931:6630773,24614571:25952256,505283,134348 +g1,14930:8674840,24614571 +g1,14930:9742421,24614571 +g1,14930:13006769,24614571 +g1,14930:14225083,24614571 +g1,14930:18698570,24614571 +g1,14930:19513837,24614571 +g1,14930:22168700,24614571 +k1,14931:32583029,24614571:7956074 +g1,14931:32583029,24614571 +) +v1,14933:6630773,25299426:0,393216,0 +(1,14937:6630773,25607079:25952256,700869,196608 +g1,14937:6630773,25607079 +g1,14937:6630773,25607079 +g1,14937:6434165,25607079 +(1,14937:6434165,25607079:0,700869,196608 +r1,14961:32779637,25607079:26345472,897477,196608 +k1,14937:6434165,25607079:-26345472 +) +(1,14937:6434165,25607079:26345472,700869,196608 +[1,14937:6630773,25607079:25952256,504261,0 +(1,14935:6630773,25527257:25952256,424439,79822 +(1,14934:6630773,25527257:0,0,0 +g1,14934:6630773,25527257 +g1,14934:6630773,25527257 +g1,14934:6303093,25527257 +(1,14934:6303093,25527257:0,0,0 +) +g1,14934:6630773,25527257 +) +g1,14935:11610082,25527257 +g1,14935:12605944,25527257 +g1,14935:15261576,25527257 +g1,14935:15925484,25527257 +g1,14935:17253300,25527257 +g1,14935:17917208,25527257 +h1,14935:18913070,25527257:0,0,0 +k1,14935:32583029,25527257:13669959 +g1,14935:32583029,25527257 +) +] +) +g1,14937:32583029,25607079 +g1,14937:6630773,25607079 +g1,14937:6630773,25607079 +g1,14937:32583029,25607079 +g1,14937:32583029,25607079 +) +h1,14937:6630773,25803687:0,0,0 +(1,14941:6630773,26668767:25952256,505283,126483 +h1,14940:6630773,26668767:983040,0,0 +g1,14940:8766591,26668767 +g1,14940:9900363,26668767 +g1,14940:11118677,26668767 +g1,14940:14052068,26668767 +g1,14940:16724626,26668767 +g1,14940:17575283,26668767 +g1,14940:18172971,26668767 +g1,14940:20977256,26668767 +g1,14940:22195570,26668767 +g1,14940:25486788,26668767 +k1,14941:32583029,26668767:4106489 +g1,14941:32583029,26668767 +) +v1,14944:6630773,27353622:0,393216,0 +(1,14949:6630773,28372554:25952256,1412148,196608 +g1,14949:6630773,28372554 +g1,14949:6630773,28372554 +g1,14949:6434165,28372554 +(1,14949:6434165,28372554:0,1412148,196608 +r1,14961:32779637,28372554:26345472,1608756,196608 +k1,14949:6434165,28372554:-26345472 +) +(1,14949:6434165,28372554:26345472,1412148,196608 +[1,14949:6630773,28372554:25952256,1215540,0 +(1,14946:6630773,27581453:25952256,424439,86428 +(1,14945:6630773,27581453:0,0,0 +g1,14945:6630773,27581453 +g1,14945:6630773,27581453 +g1,14945:6303093,27581453 +(1,14945:6303093,27581453:0,0,0 +) +g1,14945:6630773,27581453 +) +g1,14946:10282266,27581453 +g1,14946:11278128,27581453 +g1,14946:17917207,27581453 +g1,14946:20904792,27581453 +g1,14946:21568700,27581453 +h1,14946:22232608,27581453:0,0,0 +k1,14946:32583029,27581453:10350421 +g1,14946:32583029,27581453 +) +(1,14947:6630773,28266308:25952256,424439,106246 +h1,14947:6630773,28266308:0,0,0 +k1,14947:6630773,28266308:0 +h1,14947:11942036,28266308:0,0,0 +k1,14947:32583028,28266308:20640992 +g1,14947:32583028,28266308 +) +] +) +g1,14949:32583029,28372554 +g1,14949:6630773,28372554 +g1,14949:6630773,28372554 +g1,14949:32583029,28372554 +g1,14949:32583029,28372554 +) +h1,14949:6630773,28569162:0,0,0 +(1,14952:6630773,43774142:25952256,15139444,0 +k1,14952:10523651,43774142:3892878 +h1,14951:10523651,43774142:0,0,0 +(1,14951:10523651,43774142:18166500,15139444,0 +(1,14951:10523651,43774142:18167376,15139481,0 +(1,14951:10523651,43774142:18167376,15139481,0 +(1,14951:10523651,43774142:0,15139481,0 +(1,14951:10523651,43774142:0,23681434,0 +(1,14951:10523651,43774142:28417720,23681434,0 +) +k1,14951:10523651,43774142:-28417720 +) +) +g1,14951:28691027,43774142 +) +) +) +g1,14952:28690151,43774142 +k1,14952:32583029,43774142:3892878 +) +(1,14959:6630773,44639222:25952256,513147,134348 +h1,14958:6630773,44639222:983040,0,0 +k1,14958:8363646,44639222:279940 +k1,14958:9175082,44639222:279939 +k1,14958:12888453,44639222:279940 +k1,14958:13819820,44639222:279939 +k1,14958:16468231,44639222:279940 +k1,14958:17767255,44639222:279939 +k1,14958:19602364,44639222:279940 +k1,14958:21073748,44639222:279939 +k1,14958:24285113,44639222:279940 +k1,14958:25224344,44639222:279939 +k1,14958:26523369,44639222:279940 +k1,14958:28762834,44639222:279939 +k1,14958:31821501,44639222:279940 +k1,14959:32583029,44639222:0 +) +] +(1,14961:32583029,45706769:0,0,0 +g1,14961:32583029,45706769 +) +) +] +(1,14961:6630773,47279633:25952256,0,0 +h1,14961:6630773,47279633:25952256,0,0 ) -g1,15170:-473656,-710413 -) -] -) -] -!14372 -}256 +] +(1,14961:4262630,4025873:0,0,0 +[1,14961:-473656,4025873:0,0,0 +(1,14961:-473656,-710413:0,0,0 +(1,14961:-473656,-710413:0,0,0 +g1,14961:-473656,-710413 +) +g1,14961:-473656,-710413 +) +] +) +] +!14667 +}239 Input:2228:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2229:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!200 -{257 -[1,15235:4262630,47279633:28320399,43253760,0 -(1,15235:4262630,4025873:0,0,0 -[1,15235:-473656,4025873:0,0,0 -(1,15235:-473656,-710413:0,0,0 -(1,15235:-473656,-644877:0,0,0 -k1,15235:-473656,-644877:-65536 +Input:2230:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2231:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2232:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2233:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2234:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2235:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2236:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2237:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2238:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2239:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1140 +{240 +[1,15046:4262630,47279633:28320399,43253760,0 +(1,15046:4262630,4025873:0,0,0 +[1,15046:-473656,4025873:0,0,0 +(1,15046:-473656,-710413:0,0,0 +(1,15046:-473656,-644877:0,0,0 +k1,15046:-473656,-644877:-65536 ) -(1,15235:-473656,4736287:0,0,0 -k1,15235:-473656,4736287:5209943 +(1,15046:-473656,4736287:0,0,0 +k1,15046:-473656,4736287:5209943 ) -g1,15235:-473656,-710413 +g1,15046:-473656,-710413 ) ] ) -[1,15235:6630773,47279633:25952256,43253760,0 -[1,15235:6630773,4812305:25952256,786432,0 -(1,15235:6630773,4812305:25952256,513147,126483 -(1,15235:6630773,4812305:25952256,513147,126483 -g1,15235:3078558,4812305 -[1,15235:3078558,4812305:0,0,0 -(1,15235:3078558,2439708:0,1703936,0 -k1,15235:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,15235:2537886,2439708:1179648,16384,0 +[1,15046:6630773,47279633:25952256,43253760,0 +[1,15046:6630773,4812305:25952256,786432,0 +(1,15046:6630773,4812305:25952256,485622,11795 +(1,15046:6630773,4812305:25952256,485622,11795 +g1,15046:3078558,4812305 +[1,15046:3078558,4812305:0,0,0 +(1,15046:3078558,2439708:0,1703936,0 +k1,15046:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,15046:2537886,2439708:1179648,16384,0 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,15235:3078558,1915420:16384,1179648,0 +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,15046:3078558,1915420:16384,1179648,0 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] ) ) ) ] -[1,15235:3078558,4812305:0,0,0 -(1,15235:3078558,2439708:0,1703936,0 -g1,15235:29030814,2439708 -g1,15235:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,15235:36151628,1915420:16384,1179648,0 +[1,15046:3078558,4812305:0,0,0 +(1,15046:3078558,2439708:0,1703936,0 +g1,15046:29030814,2439708 +g1,15046:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,15046:36151628,1915420:16384,1179648,0 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,15235:37855564,2439708:1179648,16384,0 +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,15046:37855564,2439708:1179648,16384,0 ) ) -k1,15235:3078556,2439708:-34777008 +k1,15046:3078556,2439708:-34777008 ) ] -[1,15235:3078558,4812305:0,0,0 -(1,15235:3078558,49800853:0,16384,2228224 -k1,15235:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,15235:2537886,49800853:1179648,16384,0 +[1,15046:3078558,4812305:0,0,0 +(1,15046:3078558,49800853:0,16384,2228224 +k1,15046:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,15046:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,15235:3078558,51504789:16384,1179648,0 +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,15046:3078558,51504789:16384,1179648,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 ) ] ) ) ) ] -[1,15235:3078558,4812305:0,0,0 -(1,15235:3078558,49800853:0,16384,2228224 -g1,15235:29030814,49800853 -g1,15235:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,15235:36151628,51504789:16384,1179648,0 +[1,15046:3078558,4812305:0,0,0 +(1,15046:3078558,49800853:0,16384,2228224 +g1,15046:29030814,49800853 +g1,15046:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,15046:36151628,51504789:16384,1179648,0 ) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 ) ] ) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,15235:37855564,49800853:1179648,16384,0 +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,15046:37855564,49800853:1179648,16384,0 ) ) -k1,15235:3078556,49800853:-34777008 +k1,15046:3078556,49800853:-34777008 ) ] -g1,15235:6630773,4812305 -k1,15235:19540057,4812305:11713907 -g1,15235:21162728,4812305 -g1,15235:21985204,4812305 -g1,15235:24539797,4812305 -g1,15235:25949476,4812305 -g1,15235:28728857,4812305 -g1,15235:29852144,4812305 +g1,15046:6630773,4812305 +g1,15046:6630773,4812305 +g1,15046:8412041,4812305 +g1,15046:10364358,4812305 +k1,15046:31387652,4812305:21023294 ) ) ] -[1,15235:6630773,45706769:25952256,40108032,0 -(1,15235:6630773,45706769:25952256,40108032,0 -(1,15235:6630773,45706769:0,0,0 -g1,15235:6630773,45706769 +[1,15046:6630773,45706769:25952256,40108032,0 +(1,15046:6630773,45706769:25952256,40108032,0 +(1,15046:6630773,45706769:0,0,0 +g1,15046:6630773,45706769 ) -[1,15235:6630773,45706769:25952256,40108032,0 -v1,15170:6630773,6254097:0,393216,0 -(1,15170:6630773,6562902:25952256,702021,196608 -g1,15170:6630773,6562902 -g1,15170:6630773,6562902 -g1,15170:6434165,6562902 -(1,15170:6434165,6562902:0,702021,196608 -r1,15235:32779637,6562902:26345472,898629,196608 -k1,15170:6434165,6562902:-26345472 +[1,15046:6630773,45706769:25952256,40108032,0 +(1,14959:6630773,6254097:25952256,513147,126483 +(1,14958:6630773,6254097:0,452978,115847 +r1,15046:8395886,6254097:1765113,568825,115847 +k1,14958:6630773,6254097:-1765113 ) -(1,15170:6434165,6562902:26345472,702021,196608 -[1,15170:6630773,6562902:25952256,505413,0 -(1,15168:6630773,6461715:25952256,404226,101187 -(1,15167:6630773,6461715:0,0,0 -g1,15167:6630773,6461715 -g1,15167:6630773,6461715 -g1,15167:6303093,6461715 -(1,15167:6303093,6461715:0,0,0 -) -g1,15167:6630773,6461715 -) -k1,15168:6630773,6461715:0 -h1,15168:9159939,6461715:0,0,0 -k1,15168:32583029,6461715:23423090 -g1,15168:32583029,6461715 -) -] -) -g1,15170:32583029,6562902 -g1,15170:6630773,6562902 -g1,15170:6630773,6562902 -g1,15170:32583029,6562902 -g1,15170:32583029,6562902 -) -h1,15170:6630773,6759510:0,0,0 -(1,15173:6630773,25516666:25952256,18167332,0 -k1,15173:10523651,25516666:3892878 -h1,15172:10523651,25516666:0,0,0 -(1,15172:10523651,25516666:18166500,18167332,0 -(1,15172:10523651,25516666:18167376,18167376,0 -(1,15172:10523651,25516666:18167376,18167376,0 -(1,15172:10523651,25516666:0,18167376,0 -(1,15172:10523651,25516666:0,28417720,0 -(1,15172:10523651,25516666:28417720,28417720,0 -) -k1,15172:10523651,25516666:-28417720 -) -) -g1,15172:28691027,25516666 -) -) -) -g1,15173:28690151,25516666 -k1,15173:32583029,25516666:3892878 -) -(1,15180:6630773,26358154:25952256,513147,134348 -h1,15179:6630773,26358154:983040,0,0 -k1,15179:8791057,26358154:223695 -k1,15179:10119034,26358154:223695 -k1,15179:11435214,26358154:223695 -(1,15179:11435214,26358154:0,452978,115847 -r1,15235:14255463,26358154:2820249,568825,115847 -k1,15179:11435214,26358154:-2820249 -) -(1,15179:11435214,26358154:2820249,452978,115847 -k1,15179:11435214,26358154:3277 -h1,15179:14252186,26358154:0,411205,112570 -) -k1,15179:14479158,26358154:223695 -k1,15179:15354281,26358154:223695 -k1,15179:17062366,26358154:223695 -k1,15179:18305146,26358154:223695 -k1,15179:21014622,26358154:223695 -k1,15179:21897609,26358154:223695 -k1,15179:24628056,26358154:223695 -k1,15179:25613279,26358154:223695 -k1,15179:28251320,26358154:223695 -k1,15179:30902469,26358154:223695 -k1,15179:31812326,26358154:223695 -k1,15179:32583029,26358154:0 -) -(1,15180:6630773,27199642:25952256,513147,134348 -g1,15179:9902330,27199642 -g1,15179:11120644,27199642 -g1,15179:13675892,27199642 -g1,15179:16360902,27199642 -g1,15179:17219423,27199642 -g1,15179:19925404,27199642 -g1,15179:20807518,27199642 -g1,15179:22025832,27199642 -g1,15179:24234395,27199642 -g1,15179:25046386,27199642 -g1,15179:27131086,27199642 -g1,15179:27981743,27199642 -g1,15179:29186294,27199642 -g1,15179:30404608,27199642 -k1,15180:32583029,27199642:764809 -g1,15180:32583029,27199642 -) -v1,15182:6630773,28390108:0,393216,0 -(1,15198:6630773,35268942:25952256,7272050,196608 -g1,15198:6630773,35268942 -g1,15198:6630773,35268942 -g1,15198:6434165,35268942 -(1,15198:6434165,35268942:0,7272050,196608 -r1,15235:32779637,35268942:26345472,7468658,196608 -k1,15198:6434165,35268942:-26345472 -) -(1,15198:6434165,35268942:26345472,7272050,196608 -[1,15198:6630773,35268942:25952256,7075442,0 -(1,15184:6630773,28597726:25952256,404226,82312 -(1,15183:6630773,28597726:0,0,0 -g1,15183:6630773,28597726 -g1,15183:6630773,28597726 -g1,15183:6303093,28597726 -(1,15183:6303093,28597726:0,0,0 -) -g1,15183:6630773,28597726 -) -k1,15184:6630773,28597726:0 -g1,15184:10108376,28597726 -g1,15184:10740668,28597726 -g1,15184:11372960,28597726 -h1,15184:12005252,28597726:0,0,0 -k1,15184:32583028,28597726:20577776 -g1,15184:32583028,28597726 -) -(1,15197:6630773,29263904:25952256,404226,107478 -(1,15186:6630773,29263904:0,0,0 -g1,15186:6630773,29263904 -g1,15186:6630773,29263904 -g1,15186:6303093,29263904 -(1,15186:6303093,29263904:0,0,0 -) -g1,15186:6630773,29263904 -) -g1,15197:7579210,29263904 -g1,15197:7895356,29263904 -g1,15197:8211502,29263904 -g1,15197:8527648,29263904 -g1,15197:8843794,29263904 -g1,15197:9159940,29263904 -g1,15197:9476086,29263904 -g1,15197:9792232,29263904 -g1,15197:10108378,29263904 -g1,15197:10424524,29263904 -g1,15197:12637544,29263904 -g1,15197:12953690,29263904 -g1,15197:13269836,29263904 -g1,15197:13585982,29263904 -g1,15197:13902128,29263904 -g1,15197:14218274,29263904 -g1,15197:14534420,29263904 -g1,15197:17695877,29263904 -g1,15197:18012023,29263904 -g1,15197:18328169,29263904 -g1,15197:18644315,29263904 -g1,15197:18960461,29263904 -g1,15197:19276607,29263904 -g1,15197:19592753,29263904 -g1,15197:19908899,29263904 -g1,15197:22754210,29263904 -g1,15197:23070356,29263904 -g1,15197:23386502,29263904 -g1,15197:23702648,29263904 -g1,15197:24018794,29263904 -g1,15197:24334940,29263904 -g1,15197:24651086,29263904 -g1,15197:24967232,29263904 -g1,15197:25283378,29263904 -g1,15197:25599524,29263904 -g1,15197:27812544,29263904 -g1,15197:28128690,29263904 -g1,15197:28444836,29263904 -g1,15197:28760982,29263904 -g1,15197:29077128,29263904 -g1,15197:29393274,29263904 -g1,15197:29709420,29263904 -h1,15197:32554731,29263904:0,0,0 -k1,15197:32583029,29263904:28298 -g1,15197:32583029,29263904 -) -(1,15197:6630773,29930082:25952256,388497,9436 -h1,15197:6630773,29930082:0,0,0 -g1,15197:7579210,29930082 -g1,15197:7895356,29930082 -g1,15197:8211502,29930082 -g1,15197:8527648,29930082 -g1,15197:8843794,29930082 -g1,15197:9159940,29930082 -g1,15197:9476086,29930082 -g1,15197:9792232,29930082 -g1,15197:10108378,29930082 -g1,15197:10424524,29930082 -g1,15197:10740670,29930082 -g1,15197:11056816,29930082 -g1,15197:11372962,29930082 -g1,15197:11689108,29930082 -g1,15197:12005254,29930082 -g1,15197:12637546,29930082 -g1,15197:12953692,29930082 -g1,15197:13269838,29930082 -g1,15197:13585984,29930082 -g1,15197:13902130,29930082 -g1,15197:14218276,29930082 -g1,15197:14534422,29930082 -g1,15197:14850568,29930082 -g1,15197:15166714,29930082 -g1,15197:15482860,29930082 -g1,15197:15799006,29930082 -g1,15197:16115152,29930082 -g1,15197:16431298,29930082 -g1,15197:16747444,29930082 -g1,15197:17063590,29930082 -g1,15197:17695882,29930082 -g1,15197:18012028,29930082 -g1,15197:18328174,29930082 -g1,15197:18644320,29930082 -g1,15197:18960466,29930082 -g1,15197:19276612,29930082 -g1,15197:19592758,29930082 -g1,15197:19908904,29930082 -g1,15197:20225050,29930082 -g1,15197:20541196,29930082 -g1,15197:20857342,29930082 -g1,15197:21173488,29930082 -g1,15197:21489634,29930082 -g1,15197:21805780,29930082 -g1,15197:22121926,29930082 -g1,15197:22754218,29930082 -g1,15197:23070364,29930082 -g1,15197:23386510,29930082 -g1,15197:23702656,29930082 -g1,15197:24018802,29930082 -g1,15197:24334948,29930082 -g1,15197:24651094,29930082 -g1,15197:24967240,29930082 -g1,15197:25283386,29930082 -g1,15197:25599532,29930082 -g1,15197:25915678,29930082 -g1,15197:26231824,29930082 -g1,15197:26547970,29930082 -g1,15197:26864116,29930082 -g1,15197:27180262,29930082 -g1,15197:27812554,29930082 -g1,15197:28128700,29930082 -g1,15197:28444846,29930082 -g1,15197:28760992,29930082 -g1,15197:29077138,29930082 -g1,15197:29393284,29930082 -g1,15197:29709430,29930082 -g1,15197:30025576,29930082 -g1,15197:30341722,29930082 -g1,15197:30657868,29930082 -g1,15197:30974014,29930082 -g1,15197:31290160,29930082 -g1,15197:31606306,29930082 -g1,15197:31922452,29930082 -g1,15197:32238598,29930082 -h1,15197:32554744,29930082:0,0,0 -k1,15197:32583029,29930082:28285 -g1,15197:32583029,29930082 -) -(1,15197:6630773,30596260:25952256,404226,107478 -h1,15197:6630773,30596260:0,0,0 -g1,15197:7579210,30596260 -g1,15197:7895356,30596260 -g1,15197:8211502,30596260 -g1,15197:8527648,30596260 -g1,15197:8843794,30596260 -g1,15197:9159940,30596260 -g1,15197:9476086,30596260 -g1,15197:9792232,30596260 -g1,15197:10108378,30596260 -g1,15197:12637544,30596260 -g1,15197:12953690,30596260 -g1,15197:13269836,30596260 -g1,15197:13585982,30596260 -g1,15197:13902128,30596260 -g1,15197:14218274,30596260 -g1,15197:17695877,30596260 -g1,15197:18012023,30596260 -g1,15197:18328169,30596260 -g1,15197:18644315,30596260 -g1,15197:18960461,30596260 -g1,15197:19276607,30596260 -g1,15197:19592753,30596260 -g1,15197:19908899,30596260 -g1,15197:20225045,30596260 -g1,15197:20541191,30596260 -g1,15197:22754211,30596260 -g1,15197:23070357,30596260 -g1,15197:23386503,30596260 -g1,15197:23702649,30596260 -g1,15197:24018795,30596260 -g1,15197:24334941,30596260 -g1,15197:24651087,30596260 -g1,15197:27812544,30596260 -g1,15197:28128690,30596260 -g1,15197:28444836,30596260 -g1,15197:28760982,30596260 -g1,15197:29077128,30596260 -g1,15197:29393274,30596260 -g1,15197:29709420,30596260 -g1,15197:30025566,30596260 -g1,15197:30341712,30596260 -h1,15197:32554732,30596260:0,0,0 -k1,15197:32583029,30596260:28297 -g1,15197:32583029,30596260 -) -(1,15197:6630773,31262438:25952256,388497,9436 -h1,15197:6630773,31262438:0,0,0 -g1,15197:7579210,31262438 -g1,15197:7895356,31262438 -g1,15197:8211502,31262438 -g1,15197:8527648,31262438 -g1,15197:8843794,31262438 -g1,15197:9159940,31262438 -g1,15197:9476086,31262438 -g1,15197:9792232,31262438 -g1,15197:10108378,31262438 -g1,15197:10424524,31262438 -g1,15197:10740670,31262438 -g1,15197:11056816,31262438 -g1,15197:11372962,31262438 -g1,15197:11689108,31262438 -g1,15197:12005254,31262438 -g1,15197:12637546,31262438 -g1,15197:12953692,31262438 -g1,15197:13269838,31262438 -g1,15197:13585984,31262438 -g1,15197:13902130,31262438 -g1,15197:14218276,31262438 -g1,15197:14534422,31262438 -g1,15197:14850568,31262438 -g1,15197:15166714,31262438 -g1,15197:15482860,31262438 -g1,15197:15799006,31262438 -g1,15197:16115152,31262438 -g1,15197:16431298,31262438 -g1,15197:16747444,31262438 -g1,15197:17063590,31262438 -g1,15197:17695882,31262438 -g1,15197:18012028,31262438 -g1,15197:18328174,31262438 -g1,15197:18644320,31262438 -g1,15197:18960466,31262438 -g1,15197:19276612,31262438 -g1,15197:19592758,31262438 -g1,15197:19908904,31262438 -g1,15197:20225050,31262438 -g1,15197:20541196,31262438 -g1,15197:20857342,31262438 -g1,15197:21173488,31262438 -g1,15197:21489634,31262438 -g1,15197:21805780,31262438 -g1,15197:22121926,31262438 -g1,15197:22754218,31262438 -g1,15197:23070364,31262438 -g1,15197:23386510,31262438 -g1,15197:23702656,31262438 -g1,15197:24018802,31262438 -g1,15197:24334948,31262438 -g1,15197:24651094,31262438 -g1,15197:24967240,31262438 -g1,15197:25283386,31262438 -g1,15197:25599532,31262438 -g1,15197:25915678,31262438 -g1,15197:26231824,31262438 -g1,15197:26547970,31262438 -g1,15197:26864116,31262438 -g1,15197:27180262,31262438 -g1,15197:27812554,31262438 -g1,15197:28128700,31262438 -g1,15197:28444846,31262438 -g1,15197:28760992,31262438 -g1,15197:29077138,31262438 -g1,15197:29393284,31262438 -g1,15197:29709430,31262438 -g1,15197:30025576,31262438 -g1,15197:30341722,31262438 -g1,15197:30657868,31262438 -g1,15197:30974014,31262438 -g1,15197:31290160,31262438 -g1,15197:31606306,31262438 -g1,15197:31922452,31262438 -g1,15197:32238598,31262438 -h1,15197:32554744,31262438:0,0,0 -k1,15197:32583029,31262438:28285 -g1,15197:32583029,31262438 -) -(1,15197:6630773,31928616:25952256,410518,101187 -h1,15197:6630773,31928616:0,0,0 -g1,15197:7579210,31928616 -g1,15197:9159939,31928616 -g1,15197:10108376,31928616 -g1,15197:12637542,31928616 -g1,15197:12953688,31928616 -g1,15197:13269834,31928616 -g1,15197:13585980,31928616 -g1,15197:13902126,31928616 -g1,15197:14218272,31928616 -g1,15197:14534418,31928616 -g1,15197:14850564,31928616 -g1,15197:15166710,31928616 -g1,15197:15482856,31928616 -g1,15197:17695876,31928616 -g1,15197:18012022,31928616 -g1,15197:18328168,31928616 -g1,15197:18644314,31928616 -g1,15197:18960460,31928616 -g1,15197:19276606,31928616 -g1,15197:19592752,31928616 -g1,15197:19908898,31928616 -g1,15197:20225044,31928616 -g1,15197:20541190,31928616 -g1,15197:20857336,31928616 -g1,15197:22754210,31928616 -g1,15197:23070356,31928616 -g1,15197:23386502,31928616 -g1,15197:23702648,31928616 -g1,15197:24018794,31928616 -g1,15197:24334940,31928616 -g1,15197:24651086,31928616 -g1,15197:24967232,31928616 -g1,15197:25283378,31928616 -g1,15197:25599524,31928616 -g1,15197:27812544,31928616 -g1,15197:28128690,31928616 -g1,15197:28444836,31928616 -g1,15197:28760982,31928616 -g1,15197:29077128,31928616 -g1,15197:29393274,31928616 -h1,15197:32554731,31928616:0,0,0 -k1,15197:32583029,31928616:28298 -g1,15197:32583029,31928616 -) -(1,15197:6630773,32594794:25952256,388497,9436 -h1,15197:6630773,32594794:0,0,0 -g1,15197:7579210,32594794 -g1,15197:7895356,32594794 -g1,15197:8211502,32594794 -g1,15197:8527648,32594794 -g1,15197:8843794,32594794 -g1,15197:9159940,32594794 -g1,15197:9476086,32594794 -g1,15197:9792232,32594794 -g1,15197:10108378,32594794 -g1,15197:10424524,32594794 -g1,15197:10740670,32594794 -g1,15197:11056816,32594794 -g1,15197:11372962,32594794 -g1,15197:11689108,32594794 -g1,15197:12005254,32594794 -g1,15197:12637546,32594794 -g1,15197:12953692,32594794 -g1,15197:13269838,32594794 -g1,15197:13585984,32594794 -g1,15197:13902130,32594794 -g1,15197:14218276,32594794 -g1,15197:14534422,32594794 -g1,15197:14850568,32594794 -g1,15197:15166714,32594794 -g1,15197:15482860,32594794 -g1,15197:15799006,32594794 -g1,15197:16115152,32594794 -g1,15197:16431298,32594794 -g1,15197:16747444,32594794 -g1,15197:17063590,32594794 -g1,15197:17695882,32594794 -g1,15197:18012028,32594794 -g1,15197:18328174,32594794 -g1,15197:18644320,32594794 -g1,15197:18960466,32594794 -g1,15197:19276612,32594794 -g1,15197:19592758,32594794 -g1,15197:19908904,32594794 -g1,15197:20225050,32594794 -g1,15197:20541196,32594794 -g1,15197:20857342,32594794 -g1,15197:21173488,32594794 -g1,15197:21489634,32594794 -g1,15197:21805780,32594794 -g1,15197:22121926,32594794 -g1,15197:22754218,32594794 -g1,15197:23070364,32594794 -g1,15197:23386510,32594794 -g1,15197:23702656,32594794 -g1,15197:24018802,32594794 -g1,15197:24334948,32594794 -g1,15197:24651094,32594794 -g1,15197:24967240,32594794 -g1,15197:25283386,32594794 -g1,15197:25599532,32594794 -g1,15197:25915678,32594794 -g1,15197:26231824,32594794 -g1,15197:26547970,32594794 -g1,15197:26864116,32594794 -g1,15197:27180262,32594794 -g1,15197:27812554,32594794 -g1,15197:28128700,32594794 -g1,15197:28444846,32594794 -g1,15197:28760992,32594794 -g1,15197:29077138,32594794 -g1,15197:29393284,32594794 -g1,15197:29709430,32594794 -g1,15197:30025576,32594794 -g1,15197:30341722,32594794 -g1,15197:30657868,32594794 -g1,15197:30974014,32594794 -g1,15197:31290160,32594794 -g1,15197:31606306,32594794 -g1,15197:31922452,32594794 -g1,15197:32238598,32594794 -h1,15197:32554744,32594794:0,0,0 -k1,15197:32583029,32594794:28285 -g1,15197:32583029,32594794 -) -(1,15197:6630773,33260972:25952256,404226,7863 -h1,15197:6630773,33260972:0,0,0 -g1,15197:7579210,33260972 -g1,15197:7895356,33260972 -g1,15197:8211502,33260972 -g1,15197:8527648,33260972 -g1,15197:8843794,33260972 -g1,15197:9159940,33260972 -g1,15197:9476086,33260972 -g1,15197:9792232,33260972 -g1,15197:10108378,33260972 -g1,15197:10424524,33260972 -g1,15197:10740670,33260972 -g1,15197:12637544,33260972 -g1,15197:12953690,33260972 -g1,15197:13269836,33260972 -g1,15197:13585982,33260972 -g1,15197:13902128,33260972 -g1,15197:14218274,33260972 -g1,15197:14534420,33260972 -g1,15197:14850566,33260972 -g1,15197:15166712,33260972 -g1,15197:15482858,33260972 -g1,15197:17695878,33260972 -g1,15197:18012024,33260972 -g1,15197:18328170,33260972 -g1,15197:18644316,33260972 -g1,15197:18960462,33260972 -g1,15197:19276608,33260972 -g1,15197:19592754,33260972 -g1,15197:19908900,33260972 -g1,15197:20225046,33260972 -g1,15197:20541192,33260972 -g1,15197:20857338,33260972 -g1,15197:22754212,33260972 -g1,15197:23070358,33260972 -g1,15197:23386504,33260972 -g1,15197:23702650,33260972 -g1,15197:24018796,33260972 -g1,15197:24334942,33260972 -g1,15197:24651088,33260972 -g1,15197:24967234,33260972 -g1,15197:25283380,33260972 -g1,15197:25599526,33260972 -g1,15197:25915672,33260972 -g1,15197:26231818,33260972 -g1,15197:27812547,33260972 -g1,15197:28128693,33260972 -g1,15197:28444839,33260972 -g1,15197:28760985,33260972 -g1,15197:29077131,33260972 -g1,15197:29393277,33260972 -g1,15197:29709423,33260972 -h1,15197:32554734,33260972:0,0,0 -k1,15197:32583029,33260972:28295 -g1,15197:32583029,33260972 -) -(1,15197:6630773,33927150:25952256,388497,9436 -h1,15197:6630773,33927150:0,0,0 -g1,15197:7579210,33927150 -g1,15197:7895356,33927150 -g1,15197:8211502,33927150 -g1,15197:8527648,33927150 -g1,15197:8843794,33927150 -g1,15197:9159940,33927150 -g1,15197:9476086,33927150 -g1,15197:9792232,33927150 -g1,15197:10108378,33927150 -g1,15197:10424524,33927150 -g1,15197:10740670,33927150 -g1,15197:11056816,33927150 -g1,15197:11372962,33927150 -g1,15197:11689108,33927150 -g1,15197:12005254,33927150 -g1,15197:12637546,33927150 -g1,15197:12953692,33927150 -g1,15197:13269838,33927150 -g1,15197:13585984,33927150 -g1,15197:13902130,33927150 -g1,15197:14218276,33927150 -g1,15197:14534422,33927150 -g1,15197:14850568,33927150 -g1,15197:15166714,33927150 -g1,15197:15482860,33927150 -g1,15197:15799006,33927150 -g1,15197:16115152,33927150 -g1,15197:16431298,33927150 -g1,15197:16747444,33927150 -g1,15197:17063590,33927150 -g1,15197:17695882,33927150 -g1,15197:18012028,33927150 -g1,15197:18328174,33927150 -g1,15197:18644320,33927150 -g1,15197:18960466,33927150 -g1,15197:19276612,33927150 -g1,15197:19592758,33927150 -g1,15197:19908904,33927150 -g1,15197:20225050,33927150 -g1,15197:20541196,33927150 -g1,15197:20857342,33927150 -g1,15197:21173488,33927150 -g1,15197:21489634,33927150 -g1,15197:21805780,33927150 -g1,15197:22121926,33927150 -g1,15197:22754218,33927150 -g1,15197:23070364,33927150 -g1,15197:23386510,33927150 -g1,15197:23702656,33927150 -g1,15197:24018802,33927150 -g1,15197:24334948,33927150 -g1,15197:24651094,33927150 -g1,15197:24967240,33927150 -g1,15197:25283386,33927150 -g1,15197:25599532,33927150 -g1,15197:25915678,33927150 -g1,15197:26231824,33927150 -g1,15197:26547970,33927150 -g1,15197:26864116,33927150 -g1,15197:27180262,33927150 -g1,15197:27812554,33927150 -g1,15197:28128700,33927150 -g1,15197:28444846,33927150 -g1,15197:28760992,33927150 -g1,15197:29077138,33927150 -g1,15197:29393284,33927150 -g1,15197:29709430,33927150 -g1,15197:30025576,33927150 -g1,15197:30341722,33927150 -g1,15197:30657868,33927150 -g1,15197:30974014,33927150 -g1,15197:31290160,33927150 -g1,15197:31606306,33927150 -g1,15197:31922452,33927150 -g1,15197:32238598,33927150 -h1,15197:32554744,33927150:0,0,0 -k1,15197:32583029,33927150:28285 -g1,15197:32583029,33927150 -) -(1,15197:6630773,34593328:25952256,404226,6290 -h1,15197:6630773,34593328:0,0,0 -g1,15197:7579210,34593328 -g1,15197:7895356,34593328 -g1,15197:8211502,34593328 -g1,15197:8527648,34593328 -g1,15197:8843794,34593328 -g1,15197:9159940,34593328 -g1,15197:9476086,34593328 -g1,15197:9792232,34593328 -g1,15197:10108378,34593328 -g1,15197:10424524,34593328 -h1,15197:12321398,34593328:0,0,0 -k1,15197:32583030,34593328:20261632 -g1,15197:32583030,34593328 -) -(1,15197:6630773,35259506:25952256,388497,9436 -h1,15197:6630773,35259506:0,0,0 -g1,15197:7579210,35259506 -g1,15197:7895356,35259506 -g1,15197:8211502,35259506 -g1,15197:8527648,35259506 -g1,15197:8843794,35259506 -g1,15197:9159940,35259506 -g1,15197:9476086,35259506 -g1,15197:9792232,35259506 -g1,15197:10108378,35259506 -g1,15197:10424524,35259506 -g1,15197:10740670,35259506 -g1,15197:11056816,35259506 -g1,15197:11372962,35259506 -g1,15197:11689108,35259506 -g1,15197:12005254,35259506 -h1,15197:12321400,35259506:0,0,0 -k1,15197:32583028,35259506:20261628 -g1,15197:32583028,35259506 -) -] -) -g1,15198:32583029,35268942 -g1,15198:6630773,35268942 -g1,15198:6630773,35268942 -g1,15198:32583029,35268942 -g1,15198:32583029,35268942 -) -h1,15198:6630773,35465550:0,0,0 -(1,15203:6630773,36656016:25952256,513147,134348 -h1,15201:6630773,36656016:983040,0,0 -k1,15201:8984915,36656016:174415 -k1,15201:11118857,36656016:174416 -k1,15201:14071999,36656016:174415 -k1,15201:15007943,36656016:174416 -(1,15201:15007943,36656016:0,452978,115847 -r1,15235:17828192,36656016:2820249,568825,115847 -k1,15201:15007943,36656016:-2820249 -) -(1,15201:15007943,36656016:2820249,452978,115847 -k1,15201:15007943,36656016:3277 -h1,15201:17824915,36656016:0,411205,112570 -) -k1,15201:18002607,36656016:174415 -k1,15201:20879072,36656016:174416 -k1,15201:23170955,36656016:174415 -k1,15201:24004663,36656016:174416 -k1,15201:25198163,36656016:174415 -k1,15201:27215451,36656016:174416 -k1,15201:28049158,36656016:174415 -k1,15201:29242659,36656016:174416 -k1,15201:32583029,36656016:0 -) -(1,15203:6630773,37322194:25952256,513147,134348 -g1,15201:8715473,37322194 -g1,15201:10926657,37322194 -g1,15201:13401296,37322194 -g1,15201:17856433,37322194 -g1,15201:19247107,37322194 -g1,15201:22144453,37322194 -k1,15203:32583029,37322194:10438576 -g1,15203:32583029,37322194 -) -v1,15203:6630773,38512660:0,393216,0 -(1,15218:6630773,44798192:25952256,6678748,196608 -g1,15218:6630773,44798192 -g1,15218:6630773,44798192 -g1,15218:6434165,44798192 -(1,15218:6434165,44798192:0,6678748,196608 -r1,15235:32779637,44798192:26345472,6875356,196608 -k1,15218:6434165,44798192:-26345472 -) -(1,15218:6434165,44798192:26345472,6678748,196608 -[1,15218:6630773,44798192:25952256,6482140,0 -(1,15205:6630773,38720278:25952256,404226,76021 -(1,15204:6630773,38720278:0,0,0 -g1,15204:6630773,38720278 -g1,15204:6630773,38720278 -g1,15204:6303093,38720278 -(1,15204:6303093,38720278:0,0,0 -) -g1,15204:6630773,38720278 -) -k1,15205:6630773,38720278:0 -h1,15205:8843793,38720278:0,0,0 -k1,15205:32583029,38720278:23739236 -g1,15205:32583029,38720278 -) -(1,15217:6630773,39386456:25952256,410518,6290 -(1,15207:6630773,39386456:0,0,0 -g1,15207:6630773,39386456 -g1,15207:6630773,39386456 -g1,15207:6303093,39386456 -(1,15207:6303093,39386456:0,0,0 -) -g1,15207:6630773,39386456 -) -g1,15217:7579210,39386456 -g1,15217:9159939,39386456 -g1,15217:10108376,39386456 -h1,15217:10424522,39386456:0,0,0 -k1,15217:32583030,39386456:22158508 -g1,15217:32583030,39386456 -) -(1,15217:6630773,40052634:25952256,410518,107478 -h1,15217:6630773,40052634:0,0,0 -g1,15217:7579210,40052634 -g1,15217:7895356,40052634 -g1,15217:8527648,40052634 -g1,15217:10424522,40052634 -g1,15217:10740668,40052634 -g1,15217:11056814,40052634 -g1,15217:11372960,40052634 -g1,15217:11689106,40052634 -g1,15217:12005252,40052634 -g1,15217:12637544,40052634 -g1,15217:13902127,40052634 -g1,15217:16115147,40052634 -g1,15217:17695876,40052634 -g1,15217:18644313,40052634 -g1,15217:19592750,40052634 -g1,15217:20541187,40052634 -g1,15217:21489624,40052634 -g1,15217:22754207,40052634 -g1,15217:24018790,40052634 -g1,15217:24967227,40052634 -g1,15217:25915664,40052634 -g1,15217:26864101,40052634 -g1,15217:28128684,40052634 -h1,15217:29077121,40052634:0,0,0 -k1,15217:32583029,40052634:3505908 -g1,15217:32583029,40052634 -) -(1,15217:6630773,40718812:25952256,410518,107478 -h1,15217:6630773,40718812:0,0,0 -g1,15217:7579210,40718812 -g1,15217:7895356,40718812 -g1,15217:8527648,40718812 -g1,15217:10740668,40718812 -g1,15217:11056814,40718812 -g1,15217:11372960,40718812 -g1,15217:11689106,40718812 -g1,15217:12005252,40718812 -g1,15217:12637544,40718812 -g1,15217:13902127,40718812 -g1,15217:16115147,40718812 -g1,15217:17379730,40718812 -g1,15217:18644313,40718812 -g1,15217:19908896,40718812 -g1,15217:21173479,40718812 -g1,15217:22438062,40718812 -g1,15217:23702645,40718812 -g1,15217:24967228,40718812 -g1,15217:26231811,40718812 -g1,15217:27496394,40718812 -g1,15217:28760977,40718812 -h1,15217:29709414,40718812:0,0,0 -k1,15217:32583029,40718812:2873615 -g1,15217:32583029,40718812 -) -(1,15217:6630773,41384990:25952256,410518,76021 -h1,15217:6630773,41384990:0,0,0 -g1,15217:7579210,41384990 -g1,15217:7895356,41384990 -g1,15217:8527648,41384990 -g1,15217:10424522,41384990 -g1,15217:10740668,41384990 -g1,15217:11056814,41384990 -g1,15217:11372960,41384990 -g1,15217:11689106,41384990 -g1,15217:12005252,41384990 -g1,15217:12637544,41384990 -g1,15217:13902127,41384990 -g1,15217:16115147,41384990 -g1,15217:16747439,41384990 -g1,15217:17695876,41384990 -g1,15217:18328168,41384990 -g1,15217:19276605,41384990 -g1,15217:20225042,41384990 -g1,15217:21173479,41384990 -g1,15217:21805771,41384990 -g1,15217:22754208,41384990 -g1,15217:23702645,41384990 -g1,15217:24334937,41384990 -h1,15217:25283374,41384990:0,0,0 -k1,15217:32583029,41384990:7299655 -g1,15217:32583029,41384990 -) -(1,15217:6630773,42051168:25952256,410518,76021 -h1,15217:6630773,42051168:0,0,0 -g1,15217:7579210,42051168 -g1,15217:7895356,42051168 -g1,15217:8527648,42051168 -g1,15217:10740668,42051168 -g1,15217:11056814,42051168 -g1,15217:11372960,42051168 -g1,15217:11689106,42051168 -g1,15217:12005252,42051168 -g1,15217:12637544,42051168 -g1,15217:13902127,42051168 -g1,15217:16115147,42051168 -g1,15217:18960458,42051168 -g1,15217:22754206,42051168 -g1,15217:26231809,42051168 -g1,15217:29077120,42051168 -h1,15217:30025557,42051168:0,0,0 -k1,15217:32583029,42051168:2557472 -g1,15217:32583029,42051168 -) -(1,15217:6630773,42717346:25952256,410518,101187 -h1,15217:6630773,42717346:0,0,0 -g1,15217:7579210,42717346 -g1,15217:7895356,42717346 -g1,15217:8527648,42717346 -g1,15217:10740668,42717346 -g1,15217:11056814,42717346 -g1,15217:11372960,42717346 -g1,15217:11689106,42717346 -g1,15217:12005252,42717346 -g1,15217:12637544,42717346 -g1,15217:13902127,42717346 -h1,15217:17063584,42717346:0,0,0 -k1,15217:32583029,42717346:15519445 -g1,15217:32583029,42717346 -) -(1,15217:6630773,43383524:25952256,410518,107478 -h1,15217:6630773,43383524:0,0,0 -g1,15217:7579210,43383524 -g1,15217:7895356,43383524 -g1,15217:8527648,43383524 -g1,15217:10108377,43383524 -g1,15217:10424523,43383524 -g1,15217:10740669,43383524 -g1,15217:11056815,43383524 -g1,15217:11372961,43383524 -g1,15217:11689107,43383524 -g1,15217:12005253,43383524 -g1,15217:12637545,43383524 -g1,15217:15482856,43383524 -g1,15217:18328167,43383524 -g1,15217:18960459,43383524 -h1,15217:21805770,43383524:0,0,0 -k1,15217:32583029,43383524:10777259 -g1,15217:32583029,43383524 -) -(1,15217:6630773,44049702:25952256,410518,31456 -h1,15217:6630773,44049702:0,0,0 -g1,15217:7579210,44049702 -g1,15217:7895356,44049702 -g1,15217:8527648,44049702 -g1,15217:12637542,44049702 -h1,15217:13902125,44049702:0,0,0 -k1,15217:32583029,44049702:18680904 -g1,15217:32583029,44049702 -) -(1,15217:6630773,44715880:25952256,404226,82312 -h1,15217:6630773,44715880:0,0,0 -g1,15217:7579210,44715880 -g1,15217:7895356,44715880 -g1,15217:8527648,44715880 -g1,15217:11056814,44715880 -g1,15217:14218271,44715880 -g1,15217:15482854,44715880 -h1,15217:18012019,44715880:0,0,0 -k1,15217:32583029,44715880:14571010 -g1,15217:32583029,44715880 -) -] -) -g1,15218:32583029,44798192 -g1,15218:6630773,44798192 -g1,15218:6630773,44798192 -g1,15218:32583029,44798192 -g1,15218:32583029,44798192 -) -h1,15218:6630773,44994800:0,0,0 -] -(1,15235:32583029,45706769:0,0,0 -g1,15235:32583029,45706769 -) -) -] -(1,15235:6630773,47279633:25952256,0,0 -h1,15235:6630773,47279633:25952256,0,0 -) -] -(1,15235:4262630,4025873:0,0,0 -[1,15235:-473656,4025873:0,0,0 -(1,15235:-473656,-710413:0,0,0 -(1,15235:-473656,-710413:0,0,0 -g1,15235:-473656,-710413 -) -g1,15235:-473656,-710413 -) -] -) -] -!29484 -}257 -!12 -{258 -[1,15243:4262630,47279633:28320399,43253760,0 -(1,15243:4262630,4025873:0,0,0 -[1,15243:-473656,4025873:0,0,0 -(1,15243:-473656,-710413:0,0,0 -(1,15243:-473656,-644877:0,0,0 -k1,15243:-473656,-644877:-65536 +(1,14958:6630773,6254097:1765113,452978,115847 +k1,14958:6630773,6254097:3277 +h1,14958:8392609,6254097:0,411205,112570 ) -(1,15243:-473656,4736287:0,0,0 -k1,15243:-473656,4736287:5209943 +k1,14958:8829530,6254097:259974 +k1,14958:9775667,6254097:259975 +k1,14958:10903993,6254097:259974 +k1,14958:12500901,6254097:259974 +k1,14958:14309491,6254097:259974 +k1,14958:15220894,6254097:259975 +k1,14958:17684844,6254097:259974 +k1,14958:22046061,6254097:259974 +k1,14958:23259585,6254097:259975 +k1,14958:24623841,6254097:259974 +k1,14958:25908798,6254097:259974 +k1,14958:27453278,6254097:259974 +k1,14958:28732338,6254097:259975 +k1,14958:31923737,6254097:259974 +k1,14958:32583029,6254097:0 +) +(1,14959:6630773,7119177:25952256,513147,134348 +g1,14958:8033243,7119177 +g1,14958:10191998,7119177 +g1,14958:10922724,7119177 +g1,14958:13073615,7119177 +g1,14958:15474854,7119177 +g1,14958:16325511,7119177 +g1,14958:19412912,7119177 +g1,14958:21901969,7119177 +g1,14958:22760490,7119177 +g1,14958:25192531,7119177 +(1,14958:25192531,7119177:0,452978,115847 +r1,15046:25902509,7119177:709978,568825,115847 +k1,14958:25192531,7119177:-709978 +) +(1,14958:25192531,7119177:709978,452978,115847 +k1,14958:25192531,7119177:3277 +h1,14958:25899232,7119177:0,411205,112570 +) +g1,14958:26101738,7119177 +g1,14958:27492412,7119177 +(1,14958:27492412,7119177:0,452978,122846 +r1,15046:28554101,7119177:1061689,575824,122846 +k1,14958:27492412,7119177:-1061689 +) +(1,14958:27492412,7119177:1061689,452978,122846 +k1,14958:27492412,7119177:3277 +h1,14958:28550824,7119177:0,411205,112570 +) +k1,14959:32583029,7119177:3855258 +g1,14959:32583029,7119177 +) +v1,14961:6630773,7804032:0,393216,0 +(1,14981:6630773,15306658:25952256,7895842,196608 +g1,14981:6630773,15306658 +g1,14981:6630773,15306658 +g1,14981:6434165,15306658 +(1,14981:6434165,15306658:0,7895842,196608 +r1,15046:32779637,15306658:26345472,8092450,196608 +k1,14981:6434165,15306658:-26345472 +) +(1,14981:6434165,15306658:26345472,7895842,196608 +[1,14981:6630773,15306658:25952256,7699234,0 +(1,14963:6630773,8031863:25952256,424439,79822 +(1,14962:6630773,8031863:0,0,0 +g1,14962:6630773,8031863 +g1,14962:6630773,8031863 +g1,14962:6303093,8031863 +(1,14962:6303093,8031863:0,0,0 +) +g1,14962:6630773,8031863 +) +k1,14963:6630773,8031863:0 +h1,14963:12273990,8031863:0,0,0 +k1,14963:32583030,8031863:20309040 +g1,14963:32583030,8031863 +) +(1,14967:6630773,8847790:25952256,424439,79822 +(1,14965:6630773,8847790:0,0,0 +g1,14965:6630773,8847790 +g1,14965:6630773,8847790 +g1,14965:6303093,8847790 +(1,14965:6303093,8847790:0,0,0 +) +g1,14965:6630773,8847790 +) +g1,14967:7626635,8847790 +g1,14967:8954451,8847790 +h1,14967:10614221,8847790:0,0,0 +k1,14967:32583029,8847790:21968808 +g1,14967:32583029,8847790 +) +(1,14969:6630773,9663717:25952256,424439,112852 +(1,14968:6630773,9663717:0,0,0 +g1,14968:6630773,9663717 +g1,14968:6630773,9663717 +g1,14968:6303093,9663717 +(1,14968:6303093,9663717:0,0,0 +) +g1,14968:6630773,9663717 +) +k1,14969:6630773,9663717:0 +g1,14969:11942036,9663717 +g1,14969:14597668,9663717 +g1,14969:15261576,9663717 +g1,14969:17253300,9663717 +g1,14969:20572839,9663717 +g1,14969:21236747,9663717 +g1,14969:23560425,9663717 +g1,14969:26216057,9663717 +g1,14969:26879965,9663717 +h1,14969:27543873,9663717:0,0,0 +k1,14969:32583029,9663717:5039156 +g1,14969:32583029,9663717 +) +(1,14980:6630773,10479644:25952256,431045,86428 +(1,14971:6630773,10479644:0,0,0 +g1,14971:6630773,10479644 +g1,14971:6630773,10479644 +g1,14971:6303093,10479644 +(1,14971:6303093,10479644:0,0,0 +) +g1,14971:6630773,10479644 +) +g1,14980:7626635,10479644 +g1,14980:7958589,10479644 +g1,14980:8622497,10479644 +g1,14980:12937898,10479644 +g1,14980:16921346,10479644 +g1,14980:19576978,10479644 +g1,14980:21236748,10479644 +g1,14980:22896518,10479644 +g1,14980:24556288,10479644 +g1,14980:25552150,10479644 +g1,14980:27543874,10479644 +g1,14980:29203644,10479644 +g1,14980:31195368,10479644 +h1,14980:32191230,10479644:0,0,0 +k1,14980:32583029,10479644:391799 +g1,14980:32583029,10479644 +) +(1,14980:6630773,11164499:25952256,431045,112852 +h1,14980:6630773,11164499:0,0,0 +g1,14980:7626635,11164499 +g1,14980:7958589,11164499 +g1,14980:8622497,11164499 +g1,14980:11278129,11164499 +g1,14980:11610083,11164499 +g1,14980:11942037,11164499 +g1,14980:12273991,11164499 +g1,14980:12937899,11164499 +g1,14980:14265715,11164499 +g1,14980:16921347,11164499 +g1,14980:17585255,11164499 +g1,14980:18249163,11164499 +g1,14980:18913071,11164499 +g1,14980:19576979,11164499 +g1,14980:20240887,11164499 +h1,14980:21236749,11164499:0,0,0 +k1,14980:32583029,11164499:11346280 +g1,14980:32583029,11164499 +) +(1,14980:6630773,11849354:25952256,431045,112852 +h1,14980:6630773,11849354:0,0,0 +g1,14980:7626635,11849354 +g1,14980:7958589,11849354 +g1,14980:8622497,11849354 +g1,14980:10282267,11849354 +g1,14980:10614221,11849354 +g1,14980:10946175,11849354 +g1,14980:11278129,11849354 +g1,14980:11610083,11849354 +g1,14980:11942037,11849354 +g1,14980:12273991,11849354 +g1,14980:12937899,11849354 +g1,14980:15925484,11849354 +g1,14980:17917208,11849354 +g1,14980:18581116,11849354 +g1,14980:23892379,11849354 +g1,14980:26879964,11849354 +g1,14980:27543872,11849354 +h1,14980:28207780,11849354:0,0,0 +k1,14980:32583029,11849354:4375249 +g1,14980:32583029,11849354 +) +(1,14980:6630773,12534209:25952256,431045,79822 +h1,14980:6630773,12534209:0,0,0 +g1,14980:7626635,12534209 +g1,14980:7958589,12534209 +g1,14980:8622497,12534209 +g1,14980:9950313,12534209 +g1,14980:10282267,12534209 +g1,14980:10614221,12534209 +g1,14980:10946175,12534209 +g1,14980:11278129,12534209 +g1,14980:11610083,12534209 +g1,14980:11942037,12534209 +g1,14980:12273991,12534209 +g1,14980:12937899,12534209 +g1,14980:14929623,12534209 +g1,14980:16257439,12534209 +g1,14980:18249163,12534209 +g1,14980:18913071,12534209 +g1,14980:19908933,12534209 +h1,14980:20572841,12534209:0,0,0 +k1,14980:32583029,12534209:12010188 +g1,14980:32583029,12534209 +) +(1,14980:6630773,13219064:25952256,431045,112852 +h1,14980:6630773,13219064:0,0,0 +g1,14980:7626635,13219064 +g1,14980:7958589,13219064 +g1,14980:8622497,13219064 +g1,14980:9950313,13219064 +g1,14980:10282267,13219064 +g1,14980:10614221,13219064 +g1,14980:10946175,13219064 +g1,14980:11278129,13219064 +g1,14980:11610083,13219064 +g1,14980:11942037,13219064 +g1,14980:12273991,13219064 +g1,14980:12937899,13219064 +g1,14980:14929623,13219064 +g1,14980:16257439,13219064 +g1,14980:18249163,13219064 +g1,14980:18913071,13219064 +g1,14980:19576979,13219064 +h1,14980:19908933,13219064:0,0,0 +k1,14980:32583029,13219064:12674096 +g1,14980:32583029,13219064 +) +(1,14980:6630773,13903919:25952256,431045,112852 +h1,14980:6630773,13903919:0,0,0 +g1,14980:7626635,13903919 +g1,14980:7958589,13903919 +g1,14980:8622497,13903919 +g1,14980:10282267,13903919 +g1,14980:10614221,13903919 +g1,14980:10946175,13903919 +g1,14980:11278129,13903919 +g1,14980:11610083,13903919 +g1,14980:11942037,13903919 +g1,14980:12273991,13903919 +g1,14980:12937899,13903919 +g1,14980:14929623,13903919 +g1,14980:16257439,13903919 +g1,14980:18249163,13903919 +g1,14980:18913071,13903919 +g1,14980:19576979,13903919 +h1,14980:19908933,13903919:0,0,0 +k1,14980:32583029,13903919:12674096 +g1,14980:32583029,13903919 +) +(1,14980:6630773,14588774:25952256,431045,33029 +h1,14980:6630773,14588774:0,0,0 +g1,14980:7626635,14588774 +g1,14980:7958589,14588774 +g1,14980:8622497,14588774 +g1,14980:10614221,14588774 +g1,14980:10946175,14588774 +g1,14980:11278129,14588774 +g1,14980:11610083,14588774 +g1,14980:11942037,14588774 +g1,14980:12273991,14588774 +g1,14980:12937899,14588774 +g1,14980:14265715,14588774 +h1,14980:14597669,14588774:0,0,0 +k1,14980:32583029,14588774:17985360 +g1,14980:32583029,14588774 +) +(1,14980:6630773,15273629:25952256,431045,33029 +h1,14980:6630773,15273629:0,0,0 +g1,14980:7626635,15273629 +g1,14980:7958589,15273629 +g1,14980:8622497,15273629 +g1,14980:10614221,15273629 +g1,14980:10946175,15273629 +g1,14980:11278129,15273629 +g1,14980:11610083,15273629 +g1,14980:11942037,15273629 +g1,14980:12273991,15273629 +g1,14980:12937899,15273629 +g1,14980:14265715,15273629 +h1,14980:14597669,15273629:0,0,0 +k1,14980:32583029,15273629:17985360 +g1,14980:32583029,15273629 +) +] +) +g1,14981:32583029,15306658 +g1,14981:6630773,15306658 +g1,14981:6630773,15306658 +g1,14981:32583029,15306658 +g1,14981:32583029,15306658 +) +h1,14981:6630773,15503266:0,0,0 +(1,14985:6630773,16368346:25952256,513147,115847 +h1,14984:6630773,16368346:983040,0,0 +k1,14984:8586425,16368346:154723 +k1,14984:10135099,16368346:154723 +k1,14984:11991792,16368346:154723 +k1,14984:12833988,16368346:154723 +k1,14984:15947006,16368346:154723 +k1,14984:18556051,16368346:154722 +(1,14984:18556051,16368346:0,452978,115847 +r1,15046:21728011,16368346:3171960,568825,115847 +k1,14984:18556051,16368346:-3171960 +) +(1,14984:18556051,16368346:3171960,452978,115847 +k1,14984:18556051,16368346:3277 +h1,14984:21724734,16368346:0,411205,112570 +) +k1,14984:21882734,16368346:154723 +k1,14984:22568954,16368346:154723 +k1,14984:25681317,16368346:154723 +k1,14984:28770742,16368346:154723 +k1,14984:30128706,16368346:154723 +k1,14984:32583029,16368346:0 +) +(1,14985:6630773,17233426:25952256,513147,134348 +k1,14984:7467186,17233426:220375 +k1,14984:8706646,17233426:220375 +k1,14984:10294102,17233426:220375 +k1,14984:11173769,17233426:220375 +k1,14984:12949313,17233426:220375 +(1,14984:12949313,17233426:0,452978,115847 +r1,15046:14011002,17233426:1061689,568825,115847 +k1,14984:12949313,17233426:-1061689 +) +(1,14984:12949313,17233426:1061689,452978,115847 +k1,14984:12949313,17233426:3277 +h1,14984:14007725,17233426:0,411205,112570 +) +k1,14984:14231377,17233426:220375 +k1,14984:15680552,17233426:220375 +k1,14984:18241872,17233426:220374 +k1,14984:19481332,17233426:220375 +(1,14984:19481332,17233426:0,452978,115847 +r1,15046:20543021,17233426:1061689,568825,115847 +k1,14984:19481332,17233426:-1061689 +) +(1,14984:19481332,17233426:1061689,452978,115847 +k1,14984:19481332,17233426:3277 +h1,14984:20539744,17233426:0,411205,112570 +) +k1,14984:20763396,17233426:220375 +k1,14984:22943297,17233426:220375 +k1,14984:25806739,17233426:220375 +k1,14984:26713276,17233426:220375 +k1,14984:30005979,17233426:220375 +k1,14984:31417799,17233426:220375 +k1,14985:32583029,17233426:0 +) +(1,14985:6630773,18098506:25952256,505283,126483 +k1,14984:8572458,18098506:268551 +k1,14984:9196868,18098506:268550 +k1,14984:12629497,18098506:268551 +k1,14984:13525883,18098506:268551 +k1,14984:15496403,18098506:268550 +k1,14984:17893563,18098506:268551 +k1,14984:18620211,18098506:268551 +k1,14984:21442044,18098506:268550 +k1,14984:24478836,18098506:268551 +k1,14984:25398815,18098506:268551 +(1,14984:25398815,18098506:0,452978,115847 +r1,15046:27867352,18098506:2468537,568825,115847 +k1,14984:25398815,18098506:-2468537 +) +(1,14984:25398815,18098506:2468537,452978,115847 +k1,14984:25398815,18098506:3277 +h1,14984:27864075,18098506:0,411205,112570 +) +k1,14984:28135902,18098506:268550 +k1,14984:31189078,18098506:268551 +k1,14984:32583029,18098506:0 +) +(1,14985:6630773,18963586:25952256,513147,134348 +k1,14984:9176918,18963586:221583 +k1,14984:10049929,18963586:221583 +k1,14984:11290598,18963586:221584 +k1,14984:14290908,18963586:221583 +k1,14984:16645688,18963586:221583 +k1,14984:17939440,18963586:221583 +k1,14984:21111454,18963586:221583 +k1,14984:21688897,18963586:221583 +k1,14984:24672824,18963586:221584 +k1,14984:27542717,18963586:221583 +k1,14984:29206747,18963586:221583 +(1,14984:29206747,18963586:0,452978,115847 +r1,15046:31675284,18963586:2468537,568825,115847 +k1,14984:29206747,18963586:-2468537 +) +(1,14984:29206747,18963586:2468537,452978,115847 +k1,14984:29206747,18963586:3277 +h1,14984:31672007,18963586:0,411205,112570 +) +k1,14984:31896867,18963586:221583 +k1,14984:32583029,18963586:0 +) +(1,14985:6630773,19828666:25952256,513147,7863 +g1,14984:7618400,19828666 +g1,14984:9117208,19828666 +k1,14985:32583029,19828666:21521368 +g1,14985:32583029,19828666 +) +v1,14987:6630773,20513521:0,393216,0 +(1,15017:6630773,37341973:25952256,17221668,196608 +g1,15017:6630773,37341973 +g1,15017:6630773,37341973 +g1,15017:6434165,37341973 +(1,15017:6434165,37341973:0,17221668,196608 +r1,15046:32779637,37341973:26345472,17418276,196608 +k1,15017:6434165,37341973:-26345472 +) +(1,15017:6434165,37341973:26345472,17221668,196608 +[1,15017:6630773,37341973:25952256,17025060,0 +(1,14989:6630773,20741352:25952256,424439,106246 +(1,14988:6630773,20741352:0,0,0 +g1,14988:6630773,20741352 +g1,14988:6630773,20741352 +g1,14988:6303093,20741352 +(1,14988:6303093,20741352:0,0,0 +) +g1,14988:6630773,20741352 +) +k1,14989:6630773,20741352:0 +h1,14989:12937898,20741352:0,0,0 +k1,14989:32583030,20741352:19645132 +g1,14989:32583030,20741352 +) +(1,15016:6630773,21557279:25952256,424439,8257 +(1,14991:6630773,21557279:0,0,0 +g1,14991:6630773,21557279 +g1,14991:6630773,21557279 +g1,14991:6303093,21557279 +(1,14991:6303093,21557279:0,0,0 +) +g1,14991:6630773,21557279 +) +g1,15016:7626635,21557279 +g1,15016:7958589,21557279 +h1,15016:9618359,21557279:0,0,0 +k1,15016:32583029,21557279:22964670 +g1,15016:32583029,21557279 +) +(1,15016:6630773,22242134:25952256,424439,86428 +h1,15016:6630773,22242134:0,0,0 +g1,15016:7626635,22242134 +g1,15016:7958589,22242134 +g1,15016:9950313,22242134 +g1,15016:10614221,22242134 +g1,15016:15925484,22242134 +g1,15016:18913069,22242134 +g1,15016:19576977,22242134 +h1,15016:20240885,22242134:0,0,0 +k1,15016:32583029,22242134:12342144 +g1,15016:32583029,22242134 +) +(1,15016:6630773,22926989:25952256,398014,0 +h1,15016:6630773,22926989:0,0,0 +h1,15016:7294681,22926989:0,0,0 +k1,15016:32583029,22926989:25288348 +g1,15016:32583029,22926989 +) +(1,15016:6630773,23611844:25952256,424439,106246 +h1,15016:6630773,23611844:0,0,0 +g1,15016:7626635,23611844 +g1,15016:7958589,23611844 +g1,15016:11942036,23611844 +h1,15016:15593529,23611844:0,0,0 +k1,15016:32583029,23611844:16989500 +g1,15016:32583029,23611844 +) +(1,15016:6630773,24296699:25952256,424439,6605 +h1,15016:6630773,24296699:0,0,0 +g1,15016:7626635,24296699 +g1,15016:7958589,24296699 +g1,15016:8290543,24296699 +g1,15016:8622497,24296699 +g1,15016:8954451,24296699 +g1,15016:11942036,24296699 +g1,15016:12273990,24296699 +g1,15016:12605944,24296699 +g1,15016:12937898,24296699 +g1,15016:13269852,24296699 +g1,15016:13601806,24296699 +g1,15016:13933760,24296699 +g1,15016:14265714,24296699 +g1,15016:14597668,24296699 +g1,15016:14929622,24296699 +g1,15016:15261576,24296699 +g1,15016:15593530,24296699 +g1,15016:15925484,24296699 +g1,15016:17917208,24296699 +g1,15016:18249162,24296699 +g1,15016:18581116,24296699 +g1,15016:18913070,24296699 +g1,15016:19245024,24296699 +g1,15016:19576978,24296699 +g1,15016:19908932,24296699 +g1,15016:20240886,24296699 +g1,15016:20572840,24296699 +g1,15016:20904794,24296699 +g1,15016:21236748,24296699 +g1,15016:21568702,24296699 +g1,15016:21900656,24296699 +h1,15016:24888241,24296699:0,0,0 +k1,15016:32583029,24296699:7694788 +g1,15016:32583029,24296699 +) +(1,15016:6630773,24981554:25952256,424439,9908 +h1,15016:6630773,24981554:0,0,0 +g1,15016:7626635,24981554 +g1,15016:7958589,24981554 +g1,15016:9618359,24981554 +g1,15016:9950313,24981554 +g1,15016:10282267,24981554 +g1,15016:13933760,24981554 +g1,15016:14265714,24981554 +g1,15016:14597668,24981554 +g1,15016:16257438,24981554 +g1,15016:16589392,24981554 +g1,15016:16921346,24981554 +g1,15016:17585254,24981554 +g1,15016:20572839,24981554 +g1,15016:20904793,24981554 +g1,15016:21236747,24981554 +g1,15016:22896517,24981554 +g1,15016:23228471,24981554 +g1,15016:23560425,24981554 +k1,15016:23560425,24981554:0 +h1,15016:27211918,24981554:0,0,0 +k1,15016:32583029,24981554:5371111 +g1,15016:32583029,24981554 +) +(1,15016:6630773,25666409:25952256,407923,86428 +h1,15016:6630773,25666409:0,0,0 +g1,15016:7626635,25666409 +g1,15016:7958589,25666409 +g1,15016:9286405,25666409 +g1,15016:13933760,25666409 +g1,15016:14265714,25666409 +g1,15016:14597668,25666409 +g1,15016:15925484,25666409 +g1,15016:17585254,25666409 +g1,15016:20572839,25666409 +g1,15016:20904793,25666409 +g1,15016:21236747,25666409 +g1,15016:22564563,25666409 +k1,15016:22564563,25666409:0 +h1,15016:27211918,25666409:0,0,0 +k1,15016:32583029,25666409:5371111 +g1,15016:32583029,25666409 +) +(1,15016:6630773,26351264:25952256,424439,9908 +h1,15016:6630773,26351264:0,0,0 +g1,15016:7626635,26351264 +g1,15016:7958589,26351264 +g1,15016:10282267,26351264 +g1,15016:13933760,26351264 +g1,15016:14265714,26351264 +g1,15016:14597668,26351264 +g1,15016:16921346,26351264 +g1,15016:17585254,26351264 +g1,15016:20572839,26351264 +g1,15016:20904793,26351264 +g1,15016:21236747,26351264 +g1,15016:23560425,26351264 +g1,15016:24224333,26351264 +h1,15016:27211918,26351264:0,0,0 +k1,15016:32583029,26351264:5371111 +g1,15016:32583029,26351264 +) +(1,15016:6630773,27036119:25952256,407923,9908 +h1,15016:6630773,27036119:0,0,0 +g1,15016:7626635,27036119 +g1,15016:7958589,27036119 +g1,15016:9618359,27036119 +g1,15016:9950313,27036119 +g1,15016:10282267,27036119 +g1,15016:10946175,27036119 +g1,15016:13933760,27036119 +g1,15016:14265714,27036119 +g1,15016:14597668,27036119 +g1,15016:16257438,27036119 +g1,15016:16589392,27036119 +g1,15016:16921346,27036119 +g1,15016:17585254,27036119 +g1,15016:20572839,27036119 +g1,15016:20904793,27036119 +g1,15016:21236747,27036119 +g1,15016:22896517,27036119 +g1,15016:23228471,27036119 +g1,15016:23560425,27036119 +g1,15016:24224333,27036119 +h1,15016:27211918,27036119:0,0,0 +k1,15016:32583029,27036119:5371111 +g1,15016:32583029,27036119 +) +(1,15016:6630773,27720974:25952256,424439,86428 +h1,15016:6630773,27720974:0,0,0 +g1,15016:7626635,27720974 +g1,15016:7958589,27720974 +g1,15016:9286405,27720974 +g1,15016:10946175,27720974 +g1,15016:13933760,27720974 +g1,15016:14265714,27720974 +g1,15016:14597668,27720974 +g1,15016:15925484,27720974 +g1,15016:17585254,27720974 +g1,15016:20572839,27720974 +g1,15016:20904793,27720974 +g1,15016:21236747,27720974 +g1,15016:22564563,27720974 +g1,15016:24224333,27720974 +h1,15016:27211918,27720974:0,0,0 +k1,15016:32583029,27720974:5371111 +g1,15016:32583029,27720974 +) +(1,15016:6630773,28405829:25952256,407923,9908 +h1,15016:6630773,28405829:0,0,0 +g1,15016:7626635,28405829 +g1,15016:7958589,28405829 +g1,15016:9618359,28405829 +g1,15016:9950313,28405829 +g1,15016:10282267,28405829 +g1,15016:10946175,28405829 +g1,15016:13933760,28405829 +g1,15016:14265714,28405829 +g1,15016:14597668,28405829 +g1,15016:16257438,28405829 +g1,15016:16589392,28405829 +g1,15016:16921346,28405829 +g1,15016:20572839,28405829 +g1,15016:20904793,28405829 +g1,15016:21236747,28405829 +g1,15016:22896517,28405829 +g1,15016:23228471,28405829 +g1,15016:23560425,28405829 +g1,15016:24224333,28405829 +h1,15016:27211918,28405829:0,0,0 +k1,15016:32583029,28405829:5371111 +g1,15016:32583029,28405829 +) +(1,15016:6630773,29090684:25952256,398014,86428 +h1,15016:6630773,29090684:0,0,0 +g1,15016:7626635,29090684 +g1,15016:7958589,29090684 +h1,15016:9286405,29090684:0,0,0 +k1,15016:32583029,29090684:23296624 +g1,15016:32583029,29090684 +) +(1,15016:6630773,29775539:25952256,424439,8257 +h1,15016:6630773,29775539:0,0,0 +g1,15016:7626635,29775539 +g1,15016:7958589,29775539 +g1,15016:8290543,29775539 +g1,15016:8622497,29775539 +g1,15016:8954451,29775539 +g1,15016:9286405,29775539 +g1,15016:13601806,29775539 +g1,15016:16921345,29775539 +g1,15016:21568700,29775539 +h1,15016:22896516,29775539:0,0,0 +k1,15016:32583029,29775539:9686513 +g1,15016:32583029,29775539 +) +(1,15016:6630773,30460394:25952256,407923,9908 +h1,15016:6630773,30460394:0,0,0 +g1,15016:7626635,30460394 +g1,15016:7958589,30460394 +g1,15016:8290543,30460394 +g1,15016:8622497,30460394 +g1,15016:8954451,30460394 +g1,15016:9286405,30460394 +g1,15016:11610083,30460394 +g1,15016:11942037,30460394 +g1,15016:12273991,30460394 +g1,15016:12605945,30460394 +g1,15016:12937899,30460394 +g1,15016:13269853,30460394 +g1,15016:13601807,30460394 +g1,15016:15925485,30460394 +g1,15016:16257439,30460394 +g1,15016:16589393,30460394 +g1,15016:16921347,30460394 +g1,15016:19245025,30460394 +g1,15016:19576979,30460394 +g1,15016:19908933,30460394 +g1,15016:20240887,30460394 +g1,15016:20572841,30460394 +g1,15016:20904795,30460394 +g1,15016:21236749,30460394 +g1,15016:21568703,30460394 +h1,15016:23560427,30460394:0,0,0 +k1,15016:32583029,30460394:9022602 +g1,15016:32583029,30460394 +) +(1,15016:6630773,31145249:25952256,407923,9908 +h1,15016:6630773,31145249:0,0,0 +g1,15016:7626635,31145249 +g1,15016:7958589,31145249 +g1,15016:8290543,31145249 +g1,15016:8622497,31145249 +g1,15016:9286405,31145249 +g1,15016:11278129,31145249 +g1,15016:11610083,31145249 +g1,15016:11942037,31145249 +g1,15016:12273991,31145249 +g1,15016:12605945,31145249 +g1,15016:12937899,31145249 +g1,15016:13269853,31145249 +g1,15016:13601807,31145249 +g1,15016:13933761,31145249 +g1,15016:14265715,31145249 +g1,15016:15593531,31145249 +g1,15016:15925485,31145249 +g1,15016:16257439,31145249 +g1,15016:16589393,31145249 +g1,15016:16921347,31145249 +g1,15016:17253301,31145249 +g1,15016:18913071,31145249 +g1,15016:19245025,31145249 +g1,15016:19576979,31145249 +g1,15016:19908933,31145249 +g1,15016:20240887,31145249 +g1,15016:20572841,31145249 +g1,15016:20904795,31145249 +g1,15016:21236749,31145249 +g1,15016:21568703,31145249 +h1,15016:23228473,31145249:0,0,0 +k1,15016:32583029,31145249:9354556 +g1,15016:32583029,31145249 +) +(1,15016:6630773,31830104:25952256,398014,0 +h1,15016:6630773,31830104:0,0,0 +h1,15016:7294681,31830104:0,0,0 +k1,15016:32583029,31830104:25288348 +g1,15016:32583029,31830104 +) +(1,15016:6630773,32514959:25952256,424439,112852 +h1,15016:6630773,32514959:0,0,0 +g1,15016:7626635,32514959 +g1,15016:7958589,32514959 +g1,15016:10946174,32514959 +g1,15016:12273990,32514959 +g1,15016:13269852,32514959 +h1,15016:13601806,32514959:0,0,0 +k1,15016:32583030,32514959:18981224 +g1,15016:32583030,32514959 +) +(1,15016:6630773,33199814:25952256,398014,0 +h1,15016:6630773,33199814:0,0,0 +h1,15016:7294681,33199814:0,0,0 +k1,15016:32583029,33199814:25288348 +g1,15016:32583029,33199814 +) +(1,15016:6630773,33884669:25952256,431045,106246 +h1,15016:6630773,33884669:0,0,0 +g1,15016:7626635,33884669 +g1,15016:7958589,33884669 +g1,15016:9950313,33884669 +g1,15016:13933760,33884669 +g1,15016:15593530,33884669 +g1,15016:16589392,33884669 +h1,15016:16921346,33884669:0,0,0 +k1,15016:32583029,33884669:15661683 +g1,15016:32583029,33884669 +) +(1,15016:6630773,34569524:25952256,431045,79822 +h1,15016:6630773,34569524:0,0,0 +g1,15016:7626635,34569524 +g1,15016:7958589,34569524 +g1,15016:8622497,34569524 +g1,15016:9950313,34569524 +g1,15016:10282267,34569524 +g1,15016:10946175,34569524 +g1,15016:12937899,34569524 +g1,15016:14265715,34569524 +g1,15016:16257439,34569524 +g1,15016:16921347,34569524 +g1,15016:17917209,34569524 +h1,15016:18581117,34569524:0,0,0 +k1,15016:32583029,34569524:14001912 +g1,15016:32583029,34569524 +) +(1,15016:6630773,35254379:25952256,431045,112852 +h1,15016:6630773,35254379:0,0,0 +g1,15016:7626635,35254379 +g1,15016:7958589,35254379 +g1,15016:8622497,35254379 +g1,15016:9950313,35254379 +g1,15016:10282267,35254379 +g1,15016:10946175,35254379 +g1,15016:12937899,35254379 +g1,15016:14265715,35254379 +g1,15016:16257439,35254379 +g1,15016:16921347,35254379 +g1,15016:17585255,35254379 +h1,15016:17917209,35254379:0,0,0 +k1,15016:32583029,35254379:14665820 +g1,15016:32583029,35254379 +) +(1,15016:6630773,35939234:25952256,431045,112852 +h1,15016:6630773,35939234:0,0,0 +g1,15016:7626635,35939234 +g1,15016:7958589,35939234 +g1,15016:8622497,35939234 +g1,15016:10282267,35939234 +g1,15016:10946175,35939234 +g1,15016:12937899,35939234 +g1,15016:14265715,35939234 +g1,15016:16257439,35939234 +g1,15016:16921347,35939234 +g1,15016:17585255,35939234 +h1,15016:17917209,35939234:0,0,0 +k1,15016:32583029,35939234:14665820 +g1,15016:32583029,35939234 +) +(1,15016:6630773,36624089:25952256,431045,33029 +h1,15016:6630773,36624089:0,0,0 +g1,15016:7626635,36624089 +g1,15016:7958589,36624089 +g1,15016:8622497,36624089 +g1,15016:10946175,36624089 +g1,15016:12273991,36624089 +h1,15016:12605945,36624089:0,0,0 +k1,15016:32583029,36624089:19977084 +g1,15016:32583029,36624089 +) +(1,15016:6630773,37308944:25952256,431045,33029 +h1,15016:6630773,37308944:0,0,0 +g1,15016:7626635,37308944 +g1,15016:7958589,37308944 +g1,15016:8622497,37308944 +g1,15016:10946175,37308944 +g1,15016:12273991,37308944 +h1,15016:12605945,37308944:0,0,0 +k1,15016:32583029,37308944:19977084 +g1,15016:32583029,37308944 +) +] +) +g1,15017:32583029,37341973 +g1,15017:6630773,37341973 +g1,15017:6630773,37341973 +g1,15017:32583029,37341973 +g1,15017:32583029,37341973 +) +h1,15017:6630773,37538581:0,0,0 +v1,15021:6630773,38403661:0,393216,0 +(1,15033:6630773,43351998:25952256,5341553,0 +g1,15033:6630773,43351998 +g1,15033:6237557,43351998 +r1,15046:6368629,43351998:131072,5341553,0 +g1,15033:6567858,43351998 +g1,15033:6764466,43351998 +[1,15033:6764466,43351998:25818563,5341553,0 +(1,15022:6764466,38676138:25818563,665693,196608 +(1,15021:6764466,38676138:0,665693,196608 +r1,15046:8010564,38676138:1246098,862301,196608 +k1,15021:6764466,38676138:-1246098 +) +(1,15021:6764466,38676138:1246098,665693,196608 +) +k1,15021:8277019,38676138:266455 +k1,15021:10003237,38676138:327680 +k1,15021:12741710,38676138:266455 +(1,15021:12741710,38676138:0,452978,115847 +r1,15046:15913670,38676138:3171960,568825,115847 +k1,15021:12741710,38676138:-3171960 +) +(1,15021:12741710,38676138:3171960,452978,115847 +k1,15021:12741710,38676138:3277 +h1,15021:15910393,38676138:0,411205,112570 +) +k1,15021:16180124,38676138:266454 +k1,15021:17638024,38676138:266455 +(1,15021:17638024,38676138:0,452978,115847 +r1,15046:22568544,38676138:4930520,568825,115847 +k1,15021:17638024,38676138:-4930520 +) +(1,15021:17638024,38676138:4930520,452978,115847 +k1,15021:17638024,38676138:3277 +h1,15021:22565267,38676138:0,411205,112570 +) +k1,15021:22834999,38676138:266455 +k1,15021:24292899,38676138:266455 +k1,15021:26488733,38676138:266454 +k1,15021:29517531,38676138:266455 +k1,15021:31391584,38676138:266455 +k1,15021:32583029,38676138:0 +) +(1,15022:6764466,39541218:25818563,513147,134348 +k1,15021:11988930,39541218:163774 +k1,15021:12914233,39541218:163775 +k1,15021:15505461,39541218:163774 +k1,15021:18431579,39541218:163775 +k1,15021:21997982,39541218:163774 +k1,15021:22813184,39541218:163774 +k1,15021:23996044,39541218:163775 +k1,15021:26288427,39541218:163774 +k1,15021:30063236,39541218:163775 +k1,15021:30886302,39541218:163774 +k1,15021:32583029,39541218:0 +) +(1,15022:6764466,40406298:25818563,505283,7863 +k1,15022:32583029,40406298:22860268 +g1,15022:32583029,40406298 +) +(1,15024:6764466,41271378:25818563,513147,126483 +h1,15023:6764466,41271378:983040,0,0 +k1,15023:10338603,41271378:193135 +(1,15023:10338603,41271378:0,452978,115847 +r1,15046:12807140,41271378:2468537,568825,115847 +k1,15023:10338603,41271378:-2468537 +) +(1,15023:10338603,41271378:2468537,452978,115847 +k1,15023:10338603,41271378:3277 +h1,15023:12803863,41271378:0,411205,112570 +) +k1,15023:13000276,41271378:193136 +k1,15023:15184395,41271378:193135 +k1,15023:16396615,41271378:193135 +k1,15023:19352094,41271378:193136 +k1,15023:23646472,41271378:193135 +k1,15023:26067176,41271378:193135 +k1,15023:27279397,41271378:193136 +k1,15023:30206694,41271378:193135 +k1,15024:32583029,41271378:0 +) +(1,15024:6764466,42136458:25818563,505283,134348 +g1,15023:8397623,42136458 +g1,15023:9788297,42136458 +g1,15023:11264823,42136458 +g1,15023:11995549,42136458 +g1,15023:13004148,42136458 +g1,15023:13991775,42136458 +g1,15023:15521385,42136458 +g1,15023:18009787,42136458 +k1,15024:32583029,42136458:12974164 +g1,15024:32583029,42136458 +) +v1,15026:6764466,42821313:0,393216,0 +(1,15030:6764466,43155390:25818563,727293,196608 +g1,15030:6764466,43155390 +g1,15030:6764466,43155390 +g1,15030:6567858,43155390 +(1,15030:6567858,43155390:0,727293,196608 +r1,15046:32779637,43155390:26211779,923901,196608 +k1,15030:6567857,43155390:-26211780 +) +(1,15030:6567858,43155390:26211779,727293,196608 +[1,15030:6764466,43155390:25818563,530685,0 +(1,15028:6764466,43049144:25818563,424439,106246 +(1,15027:6764466,43049144:0,0,0 +g1,15027:6764466,43049144 +g1,15027:6764466,43049144 +g1,15027:6436786,43049144 +(1,15027:6436786,43049144:0,0,0 +) +g1,15027:6764466,43049144 +) +k1,15028:6764466,43049144:0 +h1,15028:12407683,43049144:0,0,0 +k1,15028:32583029,43049144:20175346 +g1,15028:32583029,43049144 +) +] +) +g1,15030:32583029,43155390 +g1,15030:6764466,43155390 +g1,15030:6764466,43155390 +g1,15030:32583029,43155390 +g1,15030:32583029,43155390 +) +h1,15030:6764466,43351998:0,0,0 +] +g1,15033:32583029,43351998 +) +h1,15033:6630773,43351998:0,0,0 +] +(1,15046:32583029,45706769:0,0,0 +g1,15046:32583029,45706769 +) +) +] +(1,15046:6630773,47279633:25952256,0,0 +h1,15046:6630773,47279633:25952256,0,0 +) +] +(1,15046:4262630,4025873:0,0,0 +[1,15046:-473656,4025873:0,0,0 +(1,15046:-473656,-710413:0,0,0 +(1,15046:-473656,-710413:0,0,0 +g1,15046:-473656,-710413 ) -g1,15243:-473656,-710413 +g1,15046:-473656,-710413 ) ] ) -[1,15243:6630773,47279633:25952256,43253760,0 -[1,15243:6630773,4812305:25952256,786432,0 -(1,15243:6630773,4812305:25952256,505283,134348 -(1,15243:6630773,4812305:25952256,505283,134348 -g1,15243:3078558,4812305 -[1,15243:3078558,4812305:0,0,0 -(1,15243:3078558,2439708:0,1703936,0 -k1,15243:1358238,2439708:-1720320 -(1,11836:1358238,2439708:1720320,1703936,0 -(1,11836:1358238,2439708:1179648,16384,0 -r1,15243:2537886,2439708:1179648,16384,0 +] +!31375 +}240 +Input:2240:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2241:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!200 +{241 +[1,15113:4262630,47279633:28320399,43253760,0 +(1,15113:4262630,4025873:0,0,0 +[1,15113:-473656,4025873:0,0,0 +(1,15113:-473656,-710413:0,0,0 +(1,15113:-473656,-644877:0,0,0 +k1,15113:-473656,-644877:-65536 ) -g1,11836:3062174,2439708 -(1,11836:3062174,2439708:16384,1703936,0 -[1,11836:3062174,2439708:25952256,1703936,0 -(1,11836:3062174,1915420:25952256,1179648,0 -(1,11836:3062174,1915420:16384,1179648,0 -r1,15243:3078558,1915420:16384,1179648,0 +(1,15113:-473656,4736287:0,0,0 +k1,15113:-473656,4736287:5209943 ) -k1,11836:29014430,1915420:25935872 -g1,11836:29014430,1915420 +g1,15113:-473656,-710413 ) ] ) +[1,15113:6630773,47279633:25952256,43253760,0 +[1,15113:6630773,4812305:25952256,786432,0 +(1,15113:6630773,4812305:25952256,513147,126483 +(1,15113:6630773,4812305:25952256,513147,126483 +g1,15113:3078558,4812305 +[1,15113:3078558,4812305:0,0,0 +(1,15113:3078558,2439708:0,1703936,0 +k1,15113:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,15113:2537886,2439708:1179648,16384,0 +) +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,15113:3078558,1915420:16384,1179648,0 ) +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] -[1,15243:3078558,4812305:0,0,0 -(1,15243:3078558,2439708:0,1703936,0 -g1,15243:29030814,2439708 -g1,15243:36135244,2439708 -(1,11836:36135244,2439708:1720320,1703936,0 -(1,11836:36135244,2439708:16384,1703936,0 -[1,11836:36135244,2439708:25952256,1703936,0 -(1,11836:36135244,1915420:25952256,1179648,0 -(1,11836:36135244,1915420:16384,1179648,0 -r1,15243:36151628,1915420:16384,1179648,0 ) -k1,11836:62087500,1915420:25935872 -g1,11836:62087500,1915420 +) +) +] +[1,15113:3078558,4812305:0,0,0 +(1,15113:3078558,2439708:0,1703936,0 +g1,15113:29030814,2439708 +g1,15113:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,15113:36151628,1915420:16384,1179648,0 +) +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] ) -g1,11836:36675916,2439708 -(1,11836:36675916,2439708:1179648,16384,0 -r1,15243:37855564,2439708:1179648,16384,0 +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,15113:37855564,2439708:1179648,16384,0 ) ) -k1,15243:3078556,2439708:-34777008 +k1,15113:3078556,2439708:-34777008 ) ] -[1,15243:3078558,4812305:0,0,0 -(1,15243:3078558,49800853:0,16384,2228224 -k1,15243:1358238,49800853:-1720320 -(1,11836:1358238,49800853:1720320,16384,2228224 -(1,11836:1358238,49800853:1179648,16384,0 -r1,15243:2537886,49800853:1179648,16384,0 +[1,15113:3078558,4812305:0,0,0 +(1,15113:3078558,49800853:0,16384,2228224 +k1,15113:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,15113:2537886,49800853:1179648,16384,0 ) -g1,11836:3062174,49800853 -(1,11836:3062174,52029077:16384,1703936,0 -[1,11836:3062174,52029077:25952256,1703936,0 -(1,11836:3062174,51504789:25952256,1179648,0 -(1,11836:3062174,51504789:16384,1179648,0 -r1,15243:3078558,51504789:16384,1179648,0 +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,15113:3078558,51504789:16384,1179648,0 ) -k1,11836:29014430,51504789:25935872 -g1,11836:29014430,51504789 +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 ) ] ) ) ) ] -[1,15243:3078558,4812305:0,0,0 -(1,15243:3078558,49800853:0,16384,2228224 -g1,15243:29030814,49800853 -g1,15243:36135244,49800853 -(1,11836:36135244,49800853:1720320,16384,2228224 -(1,11836:36135244,52029077:16384,1703936,0 -[1,11836:36135244,52029077:25952256,1703936,0 -(1,11836:36135244,51504789:25952256,1179648,0 -(1,11836:36135244,51504789:16384,1179648,0 -r1,15243:36151628,51504789:16384,1179648,0 +[1,15113:3078558,4812305:0,0,0 +(1,15113:3078558,49800853:0,16384,2228224 +g1,15113:29030814,49800853 +g1,15113:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,15113:36151628,51504789:16384,1179648,0 ) -k1,11836:62087500,51504789:25935872 -g1,11836:62087500,51504789 +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 ) ] ) -g1,11836:36675916,49800853 -(1,11836:36675916,49800853:1179648,16384,0 -r1,15243:37855564,49800853:1179648,16384,0 +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,15113:37855564,49800853:1179648,16384,0 ) ) -k1,15243:3078556,49800853:-34777008 +k1,15113:3078556,49800853:-34777008 ) -] -g1,15243:6630773,4812305 -g1,15243:6630773,4812305 -g1,15243:9205682,4812305 -g1,15243:11846782,4812305 -k1,15243:31387652,4812305:19540870 -) -) -] -[1,15243:6630773,45706769:25952256,40108032,0 -(1,15243:6630773,45706769:25952256,40108032,0 -(1,15243:6630773,45706769:0,0,0 -g1,15243:6630773,45706769 -) -[1,15243:6630773,45706769:25952256,40108032,0 -(1,15232:6630773,6254097:25952256,32768,229376 -(1,15232:6630773,6254097:0,32768,229376 -(1,15232:6630773,6254097:5505024,32768,229376 -r1,15243:12135797,6254097:5505024,262144,229376 -) -k1,15232:6630773,6254097:-5505024 -) -(1,15232:6630773,6254097:25952256,32768,0 -r1,15243:32583029,6254097:25952256,32768,0 -) -) -(1,15232:6630773,7858425:25952256,606339,161218 -(1,15232:6630773,7858425:2464678,575668,0 -g1,15232:6630773,7858425 -g1,15232:9095451,7858425 -) -g1,15232:12303307,7858425 -k1,15232:32583029,7858425:17283416 -g1,15232:32583029,7858425 -) -(1,15235:6630773,9093129:25952256,513147,134348 -k1,15234:8257650,9093129:276835 -k1,15234:10522847,9093129:276835 -k1,15234:12025860,9093129:276834 -k1,15234:14215036,9093129:276835 -k1,15234:15301241,9093129:276835 -k1,15234:18605184,9093129:276835 -k1,15234:21857353,9093129:276834 -k1,15234:22490048,9093129:276835 -k1,15234:25252664,9093129:276835 -k1,15234:28687679,9093129:276835 -k1,15234:30155958,9093129:276834 -k1,15234:32168186,9093129:276835 -k1,15235:32583029,9093129:0 -) -(1,15235:6630773,9934617:25952256,513147,126483 -k1,15234:7817296,9934617:238872 -k1,15234:11221557,9934617:238872 -k1,15234:12451989,9934617:238872 -k1,15234:15889673,9934617:238872 -k1,15234:18882368,9934617:238872 -k1,15234:20770125,9934617:238871 -k1,15234:21613239,9934617:238872 -k1,15234:22586849,9934617:238951 -k1,15234:24626650,9934617:238872 -k1,15234:26056967,9934617:238872 -k1,15234:28689214,9934617:238872 -k1,15234:31658971,9934617:238872 -k1,15234:32583029,9934617:0 -) -(1,15235:6630773,10776105:25952256,513147,134348 -k1,15234:9264509,10776105:240361 -k1,15234:11816980,10776105:240361 -k1,15234:14666985,10776105:240361 -k1,15234:16098791,10776105:240361 -k1,15234:18295402,10776105:240361 -k1,15234:20510610,10776105:240608 -k1,15234:22583358,10776105:240361 -k1,15234:25815438,10776105:240361 -k1,15234:26715091,10776105:240361 -k1,15234:28867793,10776105:240361 -k1,15234:32583029,10776105:0 -) -(1,15235:6630773,11617593:25952256,505283,134348 -k1,15234:9936643,11617593:221746 -k1,15234:14552578,11617593:221746 -k1,15234:15390362,11617593:221746 -k1,15234:16026928,11617593:221723 -k1,15234:17240234,11617593:221746 -k1,15234:21400037,11617593:221745 -k1,15234:24352668,11617593:221746 -k1,15234:25937563,11617593:221746 -k1,15234:26608886,11617593:221746 -k1,15234:29897062,11617593:221746 -k1,15234:32093475,11617593:221813 -k1,15234:32583029,11617593:0 -) -(1,15235:6630773,12459081:25952256,513147,134348 -k1,15234:10101390,12459081:260008 -k1,15234:10977436,12459081:260008 -k1,15234:14267829,12459081:260008 -k1,15234:17300664,12459081:260007 -k1,15234:19322935,12459081:260008 -k1,15234:20032520,12459081:260008 -k1,15234:21072528,12459081:260129 -k1,15234:21861534,12459081:260130 -k1,15234:24200344,12459081:260008 -k1,15234:25651796,12459081:260007 -k1,15234:28581085,12459081:260008 -k1,15234:30642022,12459081:260008 -k1,15234:32093475,12459081:260008 -k1,15234:32583029,12459081:0 -) -(1,15235:6630773,13300569:25952256,505283,134348 -k1,15234:10124424,13300569:236512 -k1,15234:12196598,13300569:236511 -k1,15234:13032764,13300569:236512 -k1,15234:13718852,13300569:236511 -k1,15234:15695345,13300569:236512 -k1,15234:16536098,13300569:236511 -k1,15234:17507343,13300569:236586 -k1,15234:19718678,13300569:236735 -k1,15234:21549026,13300569:236512 -k1,15234:24791673,13300569:236511 -k1,15234:26940526,13300569:236512 -k1,15234:28168597,13300569:236511 -k1,15234:31189078,13300569:236512 -k1,15234:32583029,13300569:0 -) -(1,15235:6630773,14142057:25952256,513147,134348 -k1,15234:9339257,14142057:153235 -k1,15234:13432516,14142057:153235 -k1,15234:14245043,14142057:153235 -k1,15234:16740535,14142057:153235 -k1,15234:18610158,14142057:153235 -k1,15234:19422686,14142057:153236 -k1,15234:22276660,14142057:153235 -k1,15234:23045933,14142057:153235 -k1,15234:23787681,14142057:153235 -k1,15234:26921493,14142057:153235 -k1,15234:30027780,14142057:153235 -k1,15235:32583029,14142057:0 -) -(1,15235:6630773,14983545:25952256,513147,126483 -k1,15234:8480308,14983545:251767 -k1,15234:9391368,14983545:251768 -k1,15234:10662220,14983545:251767 -k1,15234:13698612,14983545:251767 -k1,15234:15983306,14983545:251767 -k1,15234:19408983,14983545:251768 -k1,15234:20276788,14983545:251767 -k1,15234:21731796,14983545:251767 -k1,15234:24574857,14983545:251767 -k1,15234:26516143,14983545:251768 -k1,15234:29759629,14983545:251767 -k1,15234:30670688,14983545:251767 -k1,15234:32583029,14983545:0 -) -(1,15235:6630773,15825033:25952256,513147,126483 -k1,15234:8217601,15825033:192877 -k1,15234:10270391,15825033:192878 -k1,15234:12289756,15825033:192877 -k1,15234:13474194,15825033:192878 -k1,15234:14854583,15825033:192877 -k1,15234:15497037,15825033:192877 -k1,15234:17210350,15825033:192878 -k1,15234:20144598,15825033:192877 -k1,15234:22138404,15825033:192877 -k1,15234:23522727,15825033:192878 -k1,15234:24734689,15825033:192877 -k1,15234:27017510,15825033:192878 -k1,15234:30189654,15825033:192877 -k1,15234:32583029,15825033:0 -) -(1,15235:6630773,16666521:25952256,513147,126483 -k1,15234:9254823,16666521:220845 -k1,15234:12206554,16666521:220846 -k1,15234:13790548,16666521:220845 -k1,15234:14422304,16666521:220845 -k1,15234:17709579,16666521:220845 -k1,15234:19121870,16666521:220846 -k1,15234:21323213,16666521:220845 -k1,15234:23518788,16666521:220975 -k1,15234:25333469,16666521:220845 -k1,15234:27951621,16666521:220845 -k1,15234:30084808,16666521:220846 -k1,15234:31297213,16666521:220845 -k1,15234:32583029,16666521:0 -) -(1,15235:6630773,17508009:25952256,513147,134348 -k1,15234:9620580,17508009:205838 -k1,15234:11394038,17508009:205837 -k1,15234:13485347,17508009:205838 -k1,15234:14047045,17508009:205838 -k1,15234:15386000,17508009:205837 -k1,15234:19360813,17508009:205838 -k1,15234:20514302,17508009:205838 -k1,15234:22995549,17508009:205837 -k1,15234:25603937,17508009:205838 -k1,15234:26801335,17508009:205838 -k1,15234:27910258,17508009:205837 -k1,15234:31983375,17508009:205838 -k1,15234:32583029,17508009:0 -) -(1,15235:6630773,18349497:25952256,505283,126483 -k1,15234:9254229,18349497:220251 -k1,15234:13297850,18349497:220251 -k1,15234:16140851,18349497:220250 -k1,15234:17724251,18349497:220251 -k1,15234:18394079,18349497:220251 -k1,15234:19394251,18349497:220293 -k1,15234:21693304,18349497:220251 -k1,15234:23105000,18349497:220251 -k1,15234:25994531,18349497:220250 -k1,15234:28189445,18349497:220314 -k1,15234:30433448,18349497:220251 -k1,15234:32583029,18349497:0 -) -(1,15235:6630773,19190985:25952256,505283,134348 -k1,15234:8160135,19190985:166213 -k1,15234:8775924,19190985:166212 -k1,15234:11746423,19190985:166213 -k1,15234:13887335,19190985:166312 -k1,15234:17142260,19190985:166213 -k1,15234:18294133,19190985:166212 -k1,15234:20298631,19190985:166213 -k1,15234:22377840,19190985:166213 -k1,15234:23907201,19190985:166212 -k1,15234:24696826,19190985:166378 -k1,15234:28524534,19190985:166212 -k1,15234:30702801,19190985:166312 -k1,15234:32583029,19190985:0 -) -(1,15235:6630773,20032473:25952256,513147,134348 -k1,15234:8820167,20032473:200376 -k1,15234:10230992,20032473:200375 -k1,15234:15136198,20032473:200376 -k1,15234:18572741,20032473:200375 -k1,15234:20997409,20032473:200376 -k1,15234:24002070,20032473:200375 -k1,15234:26177049,20032473:200379 -k1,15234:30433448,20032473:200376 -k1,15234:32583029,20032473:0 -) -(1,15235:6630773,20873961:25952256,505283,95026 -k1,15234:7453850,20873961:220146 -k1,15234:8033789,20873961:220146 -k1,15234:9464385,20873961:220146 -k1,15234:11542477,20873961:220146 -k1,15234:14607541,20873961:220146 -k1,15234:16019133,20873961:220147 -k1,15234:17928797,20873961:220146 -k1,15234:19949872,20873961:220146 -k1,15234:21361463,20873961:220146 -k1,15234:25344031,20873961:220146 -k1,15234:28167267,20873961:220146 -k1,15234:30559932,20873961:220146 -k1,15234:32583029,20873961:0 -) -(1,15235:6630773,21715449:25952256,505283,95026 -k1,15235:32583029,21715449:23977656 -g1,15235:32583029,21715449 -) -] -(1,15243:32583029,45706769:0,0,0 -g1,15243:32583029,45706769 -) -) -] -(1,15243:6630773,47279633:25952256,0,0 -h1,15243:6630773,47279633:25952256,0,0 -) -] -(1,15243:4262630,4025873:0,0,0 -[1,15243:-473656,4025873:0,0,0 -(1,15243:-473656,-710413:0,0,0 -(1,15243:-473656,-710413:0,0,0 -g1,15243:-473656,-710413 -) -g1,15243:-473656,-710413 -) -] -) -] -!11244 -}258 -!12 -{259 -[1,15243:4262630,47279633:28320399,43253760,0 -(1,15243:4262630,4025873:0,0,0 -[1,15243:-473656,4025873:0,0,0 -(1,15243:-473656,-710413:0,0,0 -(1,15243:-473656,-644877:0,0,0 -k1,15243:-473656,-644877:-65536 +] +g1,15113:6630773,4812305 +k1,15113:19540057,4812305:11713907 +g1,15113:21162728,4812305 +g1,15113:21985204,4812305 +g1,15113:24539797,4812305 +g1,15113:25949476,4812305 +g1,15113:28728857,4812305 +g1,15113:29852144,4812305 +) +) +] +[1,15113:6630773,45706769:25952256,40108032,0 +(1,15113:6630773,45706769:25952256,40108032,0 +(1,15113:6630773,45706769:0,0,0 +g1,15113:6630773,45706769 +) +[1,15113:6630773,45706769:25952256,40108032,0 +(1,15039:6630773,6254097:25952256,32768,229376 +(1,15039:6630773,6254097:0,32768,229376 +(1,15039:6630773,6254097:5505024,32768,229376 +r1,15113:12135797,6254097:5505024,262144,229376 +) +k1,15039:6630773,6254097:-5505024 +) +(1,15039:6630773,6254097:25952256,32768,0 +r1,15113:32583029,6254097:25952256,32768,0 +) +) +(1,15039:6630773,7885949:25952256,606339,14155 +(1,15039:6630773,7885949:2464678,582746,14155 +g1,15039:6630773,7885949 +g1,15039:9095451,7885949 +) +g1,15039:14141199,7885949 +k1,15039:32583029,7885949:14913896 +g1,15039:32583029,7885949 +) +(1,15042:6630773,9216335:25952256,564462,139132 +(1,15042:6630773,9216335:2899444,534184,12975 +g1,15042:6630773,9216335 +g1,15042:9530217,9216335 +) +g1,15042:14155486,9216335 +g1,15042:17349056,9216335 +g1,15042:18318662,9216335 +k1,15042:32583029,9216335:11155142 +g1,15042:32583029,9216335 +) +(1,15046:6630773,10474631:25952256,505283,126483 +k1,15045:10593407,10474631:158269 +k1,15045:13536301,10474631:158269 +k1,15045:15047234,10474631:158270 +k1,15045:16472969,10474631:158269 +k1,15045:19135369,10474631:158269 +k1,15045:21525139,10474631:158269 +k1,15045:24557163,10474631:158270 +k1,15045:27557073,10474631:158269 +k1,15045:32583029,10474631:0 +) +(1,15046:6630773,11339711:25952256,513147,134348 +k1,15045:7607494,11339711:290559 +k1,15045:9219913,11339711:290558 +k1,15045:10169764,11339711:290559 +k1,15045:10816182,11339711:290558 +k1,15045:12979760,11339711:290559 +k1,15045:15998582,11339711:290558 +k1,15045:16916976,11339711:290559 +k1,15045:19745088,11339711:290558 +k1,15045:20493744,11339711:290559 +k1,15045:21315799,11339711:290558 +k1,15045:23327333,11339711:290559 +k1,15045:24269319,11339711:290558 +k1,15045:25652363,11339711:290559 +k1,15045:29672575,11339711:290558 +k1,15045:32583029,11339711:0 +) +(1,15046:6630773,12204791:25952256,513147,126483 +k1,15045:7834810,12204791:256386 +k1,15045:11951922,12204791:256386 +k1,15045:13597671,12204791:256386 +k1,15045:16408650,12204791:256386 +k1,15045:17281074,12204791:256386 +k1,15045:18125973,12204791:256386 +k1,15045:20453298,12204791:256387 +k1,15045:21657335,12204791:256386 +k1,15045:24038398,12204791:256386 +k1,15045:26165837,12204791:256386 +k1,15045:27375772,12204791:256386 +k1,15045:28764620,12204791:256386 +k1,15045:30407748,12204791:256386 +k1,15045:31970267,12204791:256386 +k1,15045:32583029,12204791:0 +) +(1,15046:6630773,13069871:25952256,505283,126483 +k1,15045:10688841,13069871:182924 +k1,15045:13306411,13069871:182907 +k1,15045:14172220,13069871:182924 +k1,15045:17527087,13069871:182924 +k1,15045:18337845,13069871:182923 +k1,15045:19539854,13069871:182924 +k1,15045:21376251,13069871:182924 +k1,15045:22797150,13069871:182924 +k1,15045:23666235,13069871:182923 +(1,15045:23666235,13069871:0,452978,115847 +r1,15113:25431348,13069871:1765113,568825,115847 +k1,15045:23666235,13069871:-1765113 +) +(1,15045:23666235,13069871:1765113,452978,115847 +k1,15045:23666235,13069871:3277 +h1,15045:25428071,13069871:0,411205,112570 +) +k1,15045:25614272,13069871:182924 +k1,15045:26328693,13069871:182924 +k1,15045:26867477,13069871:182924 +k1,15045:29692812,13069871:182923 +k1,15045:31160242,13069871:182924 +k1,15045:32583029,13069871:0 +) +(1,15046:6630773,13934951:25952256,505283,126483 +g1,15045:9880703,13934951 +(1,15045:9880703,13934951:0,452978,115847 +r1,15113:11294104,13934951:1413401,568825,115847 +k1,15045:9880703,13934951:-1413401 +) +(1,15045:9880703,13934951:1413401,452978,115847 +k1,15045:9880703,13934951:3277 +h1,15045:11290827,13934951:0,411205,112570 +) +g1,15045:11667003,13934951 +(1,15045:11667003,13934951:0,452978,115847 +r1,15113:14487252,13934951:2820249,568825,115847 +k1,15045:11667003,13934951:-2820249 +) +(1,15045:11667003,13934951:2820249,452978,115847 +k1,15045:11667003,13934951:3277 +h1,15045:14483975,13934951:0,411205,112570 +) +g1,15045:14686481,13934951 +g1,15045:15417207,13934951 +g1,15045:15972296,13934951 +g1,15045:18813937,13934951 +g1,15045:20297672,13934951 +g1,15045:21919688,13934951 +g1,15045:25169618,13934951 +(1,15045:25169618,13934951:0,452978,115847 +r1,15113:26934731,13934951:1765113,568825,115847 +k1,15045:25169618,13934951:-1765113 +) +(1,15045:25169618,13934951:1765113,452978,115847 +k1,15045:25169618,13934951:3277 +h1,15045:26931454,13934951:0,411205,112570 +) +k1,15046:32583029,13934951:5474628 +g1,15046:32583029,13934951 +) +(1,15048:6630773,14800031:25952256,513147,134348 +h1,15047:6630773,14800031:983040,0,0 +k1,15047:11778700,14800031:360522 +k1,15047:14126929,14800031:360522 +k1,15047:17361206,14800031:360523 +k1,15047:18337766,14800031:360522 +k1,15047:20132216,14800031:360522 +k1,15047:20907419,14800031:360360 +k1,15047:23559735,14800031:360522 +k1,15047:24939343,14800031:360523 +k1,15047:26392350,14800031:360522 +k1,15047:27412164,14800031:360522 +k1,15047:30155575,14800031:360522 +k1,15047:32583029,14800031:0 +) +(1,15048:6630773,15665111:25952256,513147,126483 +(1,15047:6837867,15665111:0,452978,115847 +r1,15113:9306404,15665111:2468537,568825,115847 +k1,15047:6837867,15665111:-2468537 +) +(1,15047:6837867,15665111:2468537,452978,115847 +k1,15047:6837867,15665111:3277 +h1,15047:9303127,15665111:0,411205,112570 +) +k1,15047:9733765,15665111:220267 +k1,15047:10763402,15665111:220267 +k1,15047:12002754,15665111:220267 +k1,15047:15116435,15665111:220266 +k1,15047:16636281,15665111:220267 +k1,15047:18221008,15665111:220267 +k1,15047:19100567,15665111:220267 +k1,15047:20339919,15665111:220267 +k1,15047:22547893,15665111:220267 +k1,15047:25485282,15665111:220266 +k1,15047:26747571,15665111:220267 +k1,15047:27986923,15665111:220267 +k1,15047:29591310,15665111:220267 +k1,15047:32583029,15665111:0 +) +(1,15048:6630773,16530191:25952256,513147,134348 +k1,15047:7682862,16530191:183737 +k1,15047:8959083,16530191:183736 +k1,15047:10161905,16530191:183737 +k1,15047:13975026,16530191:183737 +(1,15047:13975026,16530191:0,452978,115847 +r1,15113:15388427,16530191:1413401,568825,115847 +k1,15047:13975026,16530191:-1413401 +) +(1,15047:13975026,16530191:1413401,452978,115847 +k1,15047:13975026,16530191:3277 +h1,15047:15385150,16530191:0,411205,112570 +) +k1,15047:15572164,16530191:183737 +k1,15047:17145263,16530191:183736 +k1,15047:18437214,16530191:183737 +k1,15047:21982948,16530191:183737 +k1,15047:23435462,16530191:183737 +k1,15047:28292570,16530191:183736 +k1,15047:29423958,16530191:183737 +k1,15047:31923737,16530191:183737 +k1,15047:32583029,16530191:0 +) +(1,15048:6630773,17395271:25952256,513147,126483 +g1,15047:8002441,17395271 +g1,15047:10512469,17395271 +g1,15047:11370990,17395271 +k1,15048:32583029,17395271:20039600 +g1,15048:32583029,17395271 +) +v1,15050:6630773,18080126:0,393216,0 +(1,15113:6630773,45417123:25952256,27730213,196608 +g1,15113:6630773,45417123 +g1,15113:6630773,45417123 +g1,15113:6434165,45417123 +(1,15113:6434165,45417123:0,27730213,196608 +r1,15113:32779637,45417123:26345472,27926821,196608 +k1,15113:6434165,45417123:-26345472 +) +(1,15113:6434165,45417123:26345472,27730213,196608 +[1,15113:6630773,45417123:25952256,27533605,0 +(1,15052:6630773,18307957:25952256,424439,79822 +(1,15051:6630773,18307957:0,0,0 +g1,15051:6630773,18307957 +g1,15051:6630773,18307957 +g1,15051:6303093,18307957 +(1,15051:6303093,18307957:0,0,0 +) +g1,15051:6630773,18307957 +) +k1,15052:6630773,18307957:0 +h1,15052:9950313,18307957:0,0,0 +k1,15052:32583029,18307957:22632716 +g1,15052:32583029,18307957 +) +(1,15053:6630773,18992812:25952256,431045,112852 +h1,15053:6630773,18992812:0,0,0 +g1,15053:8290543,18992812 +g1,15053:9286405,18992812 +g1,15053:16921346,18992812 +g1,15053:21236747,18992812 +g1,15053:21900655,18992812 +g1,15053:22232609,18992812 +g1,15053:25220195,18992812 +g1,15053:26879965,18992812 +g1,15053:27543873,18992812 +h1,15053:29203643,18992812:0,0,0 +k1,15053:32583029,18992812:3379386 +g1,15053:32583029,18992812 +) +(1,15054:6630773,19677667:25952256,431045,79822 +h1,15054:6630773,19677667:0,0,0 +k1,15054:6630773,19677667:0 +h1,15054:10282267,19677667:0,0,0 +k1,15054:32583029,19677667:22300762 +g1,15054:32583029,19677667 +) +(1,15065:6630773,20493594:25952256,431045,106246 +(1,15056:6630773,20493594:0,0,0 +g1,15056:6630773,20493594 +g1,15056:6630773,20493594 +g1,15056:6303093,20493594 +(1,15056:6303093,20493594:0,0,0 +) +g1,15056:6630773,20493594 +) +g1,15065:7626635,20493594 +g1,15065:10614220,20493594 +g1,15065:11610082,20493594 +g1,15065:14597667,20493594 +h1,15065:16257437,20493594:0,0,0 +k1,15065:32583029,20493594:16325592 +g1,15065:32583029,20493594 +) +(1,15065:6630773,21178449:25952256,398014,0 +h1,15065:6630773,21178449:0,0,0 +h1,15065:7294681,21178449:0,0,0 +k1,15065:32583029,21178449:25288348 +g1,15065:32583029,21178449 +) +(1,15065:6630773,21863304:25952256,431045,106246 +h1,15065:6630773,21863304:0,0,0 +g1,15065:7626635,21863304 +g1,15065:7958589,21863304 +g1,15065:8290543,21863304 +g1,15065:8622497,21863304 +g1,15065:8954451,21863304 +g1,15065:9286405,21863304 +g1,15065:9618359,21863304 +g1,15065:9950313,21863304 +g1,15065:10282267,21863304 +g1,15065:10614221,21863304 +g1,15065:10946175,21863304 +g1,15065:11278129,21863304 +g1,15065:11610083,21863304 +g1,15065:11942037,21863304 +g1,15065:12937899,21863304 +g1,15065:13269853,21863304 +g1,15065:15593531,21863304 +g1,15065:17917209,21863304 +g1,15065:18581117,21863304 +g1,15065:19908933,21863304 +g1,15065:20904795,21863304 +g1,15065:22232611,21863304 +g1,15065:23228473,21863304 +g1,15065:23560427,21863304 +g1,15065:23892381,21863304 +g1,15065:24224335,21863304 +k1,15065:24224335,21863304:0 +h1,15065:26216059,21863304:0,0,0 +k1,15065:32583029,21863304:6366970 +g1,15065:32583029,21863304 +) +(1,15065:6630773,22548159:25952256,424439,106246 +h1,15065:6630773,22548159:0,0,0 +g1,15065:7626635,22548159 +g1,15065:11610082,22548159 +g1,15065:11942036,22548159 +g1,15065:12273990,22548159 +g1,15065:12937898,22548159 +g1,15065:15593530,22548159 +g1,15065:15925484,22548159 +g1,15065:16257438,22548159 +g1,15065:18581116,22548159 +g1,15065:18913070,22548159 +g1,15065:19245024,22548159 +g1,15065:19576978,22548159 +g1,15065:19908932,22548159 +g1,15065:20240886,22548159 +g1,15065:20904794,22548159 +g1,15065:21236748,22548159 +g1,15065:21568702,22548159 +g1,15065:21900656,22548159 +g1,15065:23228472,22548159 +g1,15065:23892380,22548159 +g1,15065:26548012,22548159 +h1,15065:27543874,22548159:0,0,0 +k1,15065:32583029,22548159:5039155 +g1,15065:32583029,22548159 +) +(1,15065:6630773,23233014:25952256,424439,106246 +h1,15065:6630773,23233014:0,0,0 +g1,15065:7626635,23233014 +g1,15065:10282267,23233014 +g1,15065:10614221,23233014 +g1,15065:10946175,23233014 +g1,15065:11278129,23233014 +g1,15065:11610083,23233014 +g1,15065:11942037,23233014 +g1,15065:12273991,23233014 +g1,15065:12937899,23233014 +g1,15065:15593531,23233014 +g1,15065:15925485,23233014 +g1,15065:16257439,23233014 +g1,15065:16589393,23233014 +g1,15065:16921347,23233014 +g1,15065:18581117,23233014 +g1,15065:18913071,23233014 +g1,15065:19245025,23233014 +g1,15065:19576979,23233014 +g1,15065:19908933,23233014 +g1,15065:20240887,23233014 +g1,15065:20904795,23233014 +g1,15065:21236749,23233014 +g1,15065:21568703,23233014 +g1,15065:21900657,23233014 +g1,15065:23228473,23233014 +g1,15065:23892381,23233014 +g1,15065:26548013,23233014 +h1,15065:27543875,23233014:0,0,0 +k1,15065:32583029,23233014:5039154 +g1,15065:32583029,23233014 +) +(1,15065:6630773,23917869:25952256,424439,6605 +h1,15065:6630773,23917869:0,0,0 +g1,15065:7626635,23917869 +g1,15065:10946174,23917869 +g1,15065:11278128,23917869 +g1,15065:11610082,23917869 +h1,15065:12605944,23917869:0,0,0 +k1,15065:32583028,23917869:19977084 +g1,15065:32583028,23917869 +) +(1,15065:6630773,24602724:25952256,398014,0 +h1,15065:6630773,24602724:0,0,0 +g1,15065:7626635,24602724 +k1,15065:7626635,24602724:0 +h1,15065:8622497,24602724:0,0,0 +k1,15065:32583029,24602724:23960532 +g1,15065:32583029,24602724 +) +(1,15065:6630773,25287579:25952256,431045,112852 +h1,15065:6630773,25287579:0,0,0 +g1,15065:7626635,25287579 +g1,15065:10282267,25287579 +g1,15065:12605945,25287579 +g1,15065:12937899,25287579 +g1,15065:13601807,25287579 +g1,15065:15593531,25287579 +g1,15065:17585255,25287579 +g1,15065:19245025,25287579 +g1,15065:20904795,25287579 +g1,15065:22232611,25287579 +g1,15065:23892381,25287579 +g1,15065:25220197,25287579 +g1,15065:26548013,25287579 +g1,15065:27211921,25287579 +g1,15065:27875829,25287579 +h1,15065:28207783,25287579:0,0,0 +k1,15065:32583029,25287579:4375246 +g1,15065:32583029,25287579 +) +(1,15067:6630773,26103506:25952256,431045,106246 +(1,15066:6630773,26103506:0,0,0 +g1,15066:6630773,26103506 +g1,15066:6630773,26103506 +g1,15066:6303093,26103506 +(1,15066:6303093,26103506:0,0,0 +) +g1,15066:6630773,26103506 +) +k1,15067:6630773,26103506:0 +h1,15067:10946175,26103506:0,0,0 +k1,15067:32583029,26103506:21636854 +g1,15067:32583029,26103506 +) +(1,15112:6630773,26919433:25952256,424439,112852 +(1,15069:6630773,26919433:0,0,0 +g1,15069:6630773,26919433 +g1,15069:6630773,26919433 +g1,15069:6303093,26919433 +(1,15069:6303093,26919433:0,0,0 +) +g1,15069:6630773,26919433 +) +g1,15112:7626635,26919433 +g1,15112:10614220,26919433 +g1,15112:14929621,26919433 +h1,15112:15261575,26919433:0,0,0 +k1,15112:32583029,26919433:17321454 +g1,15112:32583029,26919433 +) +(1,15112:6630773,27604288:25952256,398014,0 +h1,15112:6630773,27604288:0,0,0 +h1,15112:7294681,27604288:0,0,0 +k1,15112:32583029,27604288:25288348 +g1,15112:32583029,27604288 +) +(1,15112:6630773,28289143:25952256,424439,8257 +h1,15112:6630773,28289143:0,0,0 +g1,15112:7626635,28289143 +h1,15112:9286405,28289143:0,0,0 +k1,15112:32583029,28289143:23296624 +g1,15112:32583029,28289143 +) +(1,15112:6630773,28973998:25952256,431045,112852 +h1,15112:6630773,28973998:0,0,0 +g1,15112:7626635,28973998 +g1,15112:11278128,28973998 +g1,15112:11942036,28973998 +g1,15112:16257437,28973998 +g1,15112:16921345,28973998 +g1,15112:19908931,28973998 +g1,15112:21568701,28973998 +g1,15112:22232609,28973998 +h1,15112:23892379,28973998:0,0,0 +k1,15112:32583029,28973998:8690650 +g1,15112:32583029,28973998 +) +(1,15112:6630773,29658853:25952256,398014,0 +h1,15112:6630773,29658853:0,0,0 +h1,15112:7294681,29658853:0,0,0 +k1,15112:32583029,29658853:25288348 +g1,15112:32583029,29658853 +) +(1,15112:6630773,30343708:25952256,424439,6605 +h1,15112:6630773,30343708:0,0,0 +g1,15112:7626635,30343708 +h1,15112:10946174,30343708:0,0,0 +k1,15112:32583030,30343708:21636856 +g1,15112:32583030,30343708 +) +(1,15112:6630773,31028563:25952256,424439,86428 +h1,15112:6630773,31028563:0,0,0 +g1,15112:7626635,31028563 +g1,15112:7958589,31028563 +g1,15112:8290543,31028563 +g1,15112:8622497,31028563 +g1,15112:9950313,31028563 +g1,15112:10282267,31028563 +g1,15112:10614221,31028563 +g1,15112:10946175,31028563 +g1,15112:11278129,31028563 +g1,15112:12273991,31028563 +g1,15112:14597669,31028563 +g1,15112:14929623,31028563 +g1,15112:15261577,31028563 +g1,15112:15593531,31028563 +g1,15112:15925485,31028563 +g1,15112:16921347,31028563 +g1,15112:17253301,31028563 +g1,15112:17585255,31028563 +g1,15112:17917209,31028563 +h1,15112:18913071,31028563:0,0,0 +k1,15112:32583029,31028563:13669958 +g1,15112:32583029,31028563 +) +(1,15112:6630773,31713418:25952256,407923,9908 +h1,15112:6630773,31713418:0,0,0 +g1,15112:7626635,31713418 +g1,15112:9950313,31713418 +g1,15112:12273991,31713418 +g1,15112:12605945,31713418 +g1,15112:14597669,31713418 +g1,15112:14929623,31713418 +g1,15112:16921347,31713418 +g1,15112:17253301,31713418 +h1,15112:18913071,31713418:0,0,0 +k1,15112:32583029,31713418:13669958 +g1,15112:32583029,31713418 +) +(1,15112:6630773,32398273:25952256,398014,0 +h1,15112:6630773,32398273:0,0,0 +h1,15112:7294681,32398273:0,0,0 +k1,15112:32583029,32398273:25288348 +g1,15112:32583029,32398273 +) +(1,15112:6630773,33083128:25952256,431045,8257 +h1,15112:6630773,33083128:0,0,0 +g1,15112:7626635,33083128 +h1,15112:11942036,33083128:0,0,0 +k1,15112:32583028,33083128:20640992 +g1,15112:32583028,33083128 +) +(1,15112:6630773,33767983:25952256,424439,79822 +h1,15112:6630773,33767983:0,0,0 +g1,15112:7626635,33767983 +g1,15112:7958589,33767983 +g1,15112:8290543,33767983 +g1,15112:8622497,33767983 +g1,15112:8954451,33767983 +g1,15112:9286405,33767983 +g1,15112:9618359,33767983 +g1,15112:9950313,33767983 +g1,15112:10282267,33767983 +g1,15112:10614221,33767983 +g1,15112:10946175,33767983 +g1,15112:11278129,33767983 +g1,15112:11610083,33767983 +g1,15112:11942037,33767983 +g1,15112:12273991,33767983 +g1,15112:12605945,33767983 +g1,15112:12937899,33767983 +g1,15112:13269853,33767983 +g1,15112:13601807,33767983 +g1,15112:16589392,33767983 +g1,15112:18249162,33767983 +g1,15112:20240886,33767983 +g1,15112:20904794,33767983 +g1,15112:22896518,33767983 +k1,15112:22896518,33767983:0 +h1,15112:25552150,33767983:0,0,0 +k1,15112:32583029,33767983:7030879 +g1,15112:32583029,33767983 +) +(1,15112:6630773,34452838:25952256,424439,106246 +h1,15112:6630773,34452838:0,0,0 +g1,15112:7626635,34452838 +g1,15112:11610082,34452838 +g1,15112:11942036,34452838 +g1,15112:12273990,34452838 +g1,15112:12605944,34452838 +g1,15112:12937898,34452838 +g1,15112:13269852,34452838 +g1,15112:13601806,34452838 +g1,15112:13933760,34452838 +g1,15112:16589392,34452838 +g1,15112:16921346,34452838 +g1,15112:17253300,34452838 +g1,15112:17585254,34452838 +g1,15112:20240886,34452838 +g1,15112:20572840,34452838 +g1,15112:20904794,34452838 +g1,15112:22896518,34452838 +g1,15112:23228472,34452838 +g1,15112:23560426,34452838 +g1,15112:25884104,34452838 +h1,15112:26879966,34452838:0,0,0 +k1,15112:32583029,34452838:5703063 +g1,15112:32583029,34452838 +) +(1,15112:6630773,35137693:25952256,424439,106246 +h1,15112:6630773,35137693:0,0,0 +g1,15112:7626635,35137693 +g1,15112:13601806,35137693 +g1,15112:13933760,35137693 +g1,15112:16589392,35137693 +g1,15112:16921346,35137693 +g1,15112:17253300,35137693 +g1,15112:17585254,35137693 +g1,15112:20240886,35137693 +g1,15112:20572840,35137693 +g1,15112:20904794,35137693 +g1,15112:22896518,35137693 +g1,15112:23228472,35137693 +g1,15112:23560426,35137693 +g1,15112:25884104,35137693 +h1,15112:26879966,35137693:0,0,0 +k1,15112:32583029,35137693:5703063 +g1,15112:32583029,35137693 +) +(1,15112:6630773,35822548:25952256,424439,112852 +h1,15112:6630773,35822548:0,0,0 +g1,15112:7626635,35822548 +g1,15112:13269852,35822548 +g1,15112:13601806,35822548 +g1,15112:13933760,35822548 +g1,15112:16589392,35822548 +g1,15112:16921346,35822548 +g1,15112:17253300,35822548 +g1,15112:17585254,35822548 +g1,15112:20240886,35822548 +g1,15112:20572840,35822548 +g1,15112:20904794,35822548 +g1,15112:22896518,35822548 +g1,15112:23228472,35822548 +g1,15112:23560426,35822548 +g1,15112:25884104,35822548 +h1,15112:26879966,35822548:0,0,0 +k1,15112:32583029,35822548:5703063 +g1,15112:32583029,35822548 +) +(1,15112:6630773,36507403:25952256,398014,0 +h1,15112:6630773,36507403:0,0,0 +g1,15112:7626635,36507403 +k1,15112:7626635,36507403:0 +h1,15112:8622497,36507403:0,0,0 +k1,15112:32583029,36507403:23960532 +g1,15112:32583029,36507403 +) +(1,15112:6630773,37192258:25952256,431045,112852 +h1,15112:6630773,37192258:0,0,0 +g1,15112:7626635,37192258 +g1,15112:10282267,37192258 +g1,15112:12605945,37192258 +g1,15112:12937899,37192258 +g1,15112:13601807,37192258 +g1,15112:15593531,37192258 +g1,15112:17585255,37192258 +g1,15112:19245025,37192258 +g1,15112:20904795,37192258 +g1,15112:22232611,37192258 +g1,15112:23892381,37192258 +g1,15112:25220197,37192258 +g1,15112:26548013,37192258 +g1,15112:27211921,37192258 +g1,15112:27875829,37192258 +h1,15112:28207783,37192258:0,0,0 +k1,15112:32583029,37192258:4375246 +g1,15112:32583029,37192258 +) +(1,15112:6630773,37877113:25952256,398014,0 +h1,15112:6630773,37877113:0,0,0 +h1,15112:7294681,37877113:0,0,0 +k1,15112:32583029,37877113:25288348 +g1,15112:32583029,37877113 +) +(1,15112:6630773,38561968:25952256,431045,112852 +h1,15112:6630773,38561968:0,0,0 +g1,15112:7626635,38561968 +g1,15112:10614220,38561968 +g1,15112:13601805,38561968 +g1,15112:15925483,38561968 +g1,15112:18249161,38561968 +g1,15112:19245023,38561968 +g1,15112:20572839,38561968 +g1,15112:23228471,38561968 +g1,15112:24224333,38561968 +h1,15112:26548011,38561968:0,0,0 +k1,15112:32583029,38561968:6035018 +g1,15112:32583029,38561968 +) +(1,15112:6630773,39246823:25952256,424439,112852 +h1,15112:6630773,39246823:0,0,0 +g1,15112:7626635,39246823 +g1,15112:10614220,39246823 +g1,15112:14265713,39246823 +g1,15112:14597667,39246823 +g1,15112:19908930,39246823 +g1,15112:23560423,39246823 +g1,15112:23892377,39246823 +h1,15112:25884101,39246823:0,0,0 +k1,15112:32583029,39246823:6698928 +g1,15112:32583029,39246823 +) +(1,15112:6630773,39931678:25952256,424439,106246 +h1,15112:6630773,39931678:0,0,0 +g1,15112:7626635,39931678 +g1,15112:11942036,39931678 +g1,15112:12273990,39931678 +g1,15112:13933760,39931678 +g1,15112:14929622,39931678 +g1,15112:15593530,39931678 +g1,15112:16921346,39931678 +g1,15112:18249162,39931678 +g1,15112:19576978,39931678 +g1,15112:19908932,39931678 +g1,15112:22896518,39931678 +g1,15112:23560426,39931678 +k1,15112:23560426,39931678:0 +h1,15112:25884104,39931678:0,0,0 +k1,15112:32583029,39931678:6698925 +g1,15112:32583029,39931678 +) +(1,15112:6630773,40616533:25952256,398014,0 +h1,15112:6630773,40616533:0,0,0 +h1,15112:7294681,40616533:0,0,0 +k1,15112:32583029,40616533:25288348 +g1,15112:32583029,40616533 +) +(1,15112:6630773,41301388:25952256,398014,0 +h1,15112:6630773,41301388:0,0,0 +h1,15112:7294681,41301388:0,0,0 +k1,15112:32583029,41301388:25288348 +g1,15112:32583029,41301388 +) +(1,15112:6630773,41986243:25952256,424439,106246 +h1,15112:6630773,41986243:0,0,0 +g1,15112:7626635,41986243 +g1,15112:10614220,41986243 +g1,15112:14597667,41986243 +h1,15112:14929621,41986243:0,0,0 +k1,15112:32583029,41986243:17653408 +g1,15112:32583029,41986243 +) +(1,15112:6630773,42671098:25952256,398014,0 +h1,15112:6630773,42671098:0,0,0 +h1,15112:7294681,42671098:0,0,0 +k1,15112:32583029,42671098:25288348 +g1,15112:32583029,42671098 +) +(1,15112:6630773,43355953:25952256,424439,8257 +h1,15112:6630773,43355953:0,0,0 +g1,15112:7626635,43355953 +h1,15112:9286405,43355953:0,0,0 +k1,15112:32583029,43355953:23296624 +g1,15112:32583029,43355953 +) +(1,15112:6630773,44040808:25952256,431045,106246 +h1,15112:6630773,44040808:0,0,0 +g1,15112:7626635,44040808 +g1,15112:11278128,44040808 +g1,15112:11942036,44040808 +g1,15112:15925483,44040808 +g1,15112:16589391,44040808 +g1,15112:19576977,44040808 +g1,15112:21236747,44040808 +g1,15112:21900655,44040808 +h1,15112:23560425,44040808:0,0,0 +k1,15112:32583029,44040808:9022604 +g1,15112:32583029,44040808 +) +(1,15112:6630773,44725663:25952256,398014,0 +h1,15112:6630773,44725663:0,0,0 +h1,15112:7294681,44725663:0,0,0 +k1,15112:32583029,44725663:25288348 +g1,15112:32583029,44725663 +) +(1,15112:6630773,45410518:25952256,424439,6605 +h1,15112:6630773,45410518:0,0,0 +g1,15112:7626635,45410518 +h1,15112:10946174,45410518:0,0,0 +k1,15112:32583030,45410518:21636856 +g1,15112:32583030,45410518 +) +] +) +g1,15113:32583029,45417123 +g1,15113:6630773,45417123 +g1,15113:6630773,45417123 +g1,15113:32583029,45417123 +g1,15113:32583029,45417123 +) +] +(1,15113:32583029,45706769:0,0,0 +g1,15113:32583029,45706769 +) +) +] +(1,15113:6630773,47279633:25952256,0,0 +h1,15113:6630773,47279633:25952256,0,0 +) +] +(1,15113:4262630,4025873:0,0,0 +[1,15113:-473656,4025873:0,0,0 +(1,15113:-473656,-710413:0,0,0 +(1,15113:-473656,-710413:0,0,0 +g1,15113:-473656,-710413 +) +g1,15113:-473656,-710413 +) +] +) +] +!25861 +}241 +Input:2242:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2243:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2244:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2245:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2246:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2247:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2248:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2249:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2250:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2251:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2252:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2253:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2254:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1234 +{242 +[1,15191:4262630,47279633:28320399,43253760,0 +(1,15191:4262630,4025873:0,0,0 +[1,15191:-473656,4025873:0,0,0 +(1,15191:-473656,-710413:0,0,0 +(1,15191:-473656,-644877:0,0,0 +k1,15191:-473656,-644877:-65536 ) -(1,15243:-473656,4736287:0,0,0 -k1,15243:-473656,4736287:5209943 +(1,15191:-473656,4736287:0,0,0 +k1,15191:-473656,4736287:5209943 ) -g1,15243:-473656,-710413 +g1,15191:-473656,-710413 ) ] ) -[1,15243:6630773,47279633:25952256,43253760,0 -[1,15243:6630773,4812305:25952256,786432,0 -(1,15243:6630773,4812305:25952256,0,0 -(1,15243:6630773,4812305:25952256,0,0 -g1,15243:3078558,4812305 -[1,15243:3078558,4812305:0,0,0 -(1,15243:3078558,2439708:0,1703936,0 -k1,15243:1358238,2439708:-1720320 -(1,15243:1358238,2439708:1720320,1703936,0 -(1,15243:1358238,2439708:1179648,16384,0 -r1,15243:2537886,2439708:1179648,16384,0 +[1,15191:6630773,47279633:25952256,43253760,0 +[1,15191:6630773,4812305:25952256,786432,0 +(1,15191:6630773,4812305:25952256,505283,7863 +(1,15191:6630773,4812305:25952256,505283,7863 +g1,15191:3078558,4812305 +[1,15191:3078558,4812305:0,0,0 +(1,15191:3078558,2439708:0,1703936,0 +k1,15191:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,15191:2537886,2439708:1179648,16384,0 ) -g1,15243:3062174,2439708 -(1,15243:3062174,2439708:16384,1703936,0 -[1,15243:3062174,2439708:25952256,1703936,0 -(1,15243:3062174,1915420:25952256,1179648,0 -(1,15243:3062174,1915420:16384,1179648,0 -r1,15243:3078558,1915420:16384,1179648,0 +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,15191:3078558,1915420:16384,1179648,0 ) -k1,15243:29014430,1915420:25935872 -g1,15243:29014430,1915420 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] ) ) ) ] -[1,15243:3078558,4812305:0,0,0 -(1,15243:3078558,2439708:0,1703936,0 -g1,15243:29030814,2439708 -g1,15243:36135244,2439708 -(1,15243:36135244,2439708:1720320,1703936,0 -(1,15243:36135244,2439708:16384,1703936,0 -[1,15243:36135244,2439708:25952256,1703936,0 -(1,15243:36135244,1915420:25952256,1179648,0 -(1,15243:36135244,1915420:16384,1179648,0 -r1,15243:36151628,1915420:16384,1179648,0 +[1,15191:3078558,4812305:0,0,0 +(1,15191:3078558,2439708:0,1703936,0 +g1,15191:29030814,2439708 +g1,15191:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,15191:36151628,1915420:16384,1179648,0 ) -k1,15243:62087500,1915420:25935872 -g1,15243:62087500,1915420 +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] ) -g1,15243:36675916,2439708 -(1,15243:36675916,2439708:1179648,16384,0 -r1,15243:37855564,2439708:1179648,16384,0 +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,15191:37855564,2439708:1179648,16384,0 ) ) -k1,15243:3078556,2439708:-34777008 +k1,15191:3078556,2439708:-34777008 ) ] -[1,15243:3078558,4812305:0,0,0 -(1,15243:3078558,49800853:0,16384,2228224 -k1,15243:1358238,49800853:-1720320 -(1,15243:1358238,49800853:1720320,16384,2228224 -(1,15243:1358238,49800853:1179648,16384,0 -r1,15243:2537886,49800853:1179648,16384,0 +[1,15191:3078558,4812305:0,0,0 +(1,15191:3078558,49800853:0,16384,2228224 +k1,15191:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,15191:2537886,49800853:1179648,16384,0 ) -g1,15243:3062174,49800853 -(1,15243:3062174,52029077:16384,1703936,0 -[1,15243:3062174,52029077:25952256,1703936,0 -(1,15243:3062174,51504789:25952256,1179648,0 -(1,15243:3062174,51504789:16384,1179648,0 -r1,15243:3078558,51504789:16384,1179648,0 +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,15191:3078558,51504789:16384,1179648,0 ) -k1,15243:29014430,51504789:25935872 -g1,15243:29014430,51504789 +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 ) ] -) -) -) +) +) +) ] -[1,15243:3078558,4812305:0,0,0 -(1,15243:3078558,49800853:0,16384,2228224 -g1,15243:29030814,49800853 -g1,15243:36135244,49800853 -(1,15243:36135244,49800853:1720320,16384,2228224 -(1,15243:36135244,52029077:16384,1703936,0 -[1,15243:36135244,52029077:25952256,1703936,0 -(1,15243:36135244,51504789:25952256,1179648,0 -(1,15243:36135244,51504789:16384,1179648,0 -r1,15243:36151628,51504789:16384,1179648,0 +[1,15191:3078558,4812305:0,0,0 +(1,15191:3078558,49800853:0,16384,2228224 +g1,15191:29030814,49800853 +g1,15191:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,15191:36151628,51504789:16384,1179648,0 +) +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 +) +] +) +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,15191:37855564,49800853:1179648,16384,0 +) +) +k1,15191:3078556,49800853:-34777008 +) +] +g1,15191:6630773,4812305 +g1,15191:6630773,4812305 +g1,15191:10653372,4812305 +g1,15191:13512052,4812305 +k1,15191:31387652,4812305:17875600 +) +) +] +[1,15191:6630773,45706769:25952256,40108032,0 +(1,15191:6630773,45706769:25952256,40108032,0 +(1,15191:6630773,45706769:0,0,0 +g1,15191:6630773,45706769 +) +[1,15191:6630773,45706769:25952256,40108032,0 +v1,15113:6630773,6254097:0,393216,0 +(1,15113:6630773,15491289:25952256,9630408,196608 +g1,15113:6630773,15491289 +g1,15113:6630773,15491289 +g1,15113:6434165,15491289 +(1,15113:6434165,15491289:0,9630408,196608 +r1,15191:32779637,15491289:26345472,9827016,196608 +k1,15113:6434165,15491289:-26345472 +) +(1,15113:6434165,15491289:26345472,9630408,196608 +[1,15113:6630773,15491289:25952256,9433800,0 +(1,15112:6630773,6481928:25952256,424439,86428 +h1,15112:6630773,6481928:0,0,0 +g1,15112:7626635,6481928 +g1,15112:7958589,6481928 +g1,15112:8290543,6481928 +g1,15112:8622497,6481928 +g1,15112:9950313,6481928 +g1,15112:10282267,6481928 +g1,15112:10614221,6481928 +g1,15112:10946175,6481928 +g1,15112:11278129,6481928 +g1,15112:12273991,6481928 +g1,15112:14597669,6481928 +g1,15112:14929623,6481928 +g1,15112:15261577,6481928 +g1,15112:15593531,6481928 +g1,15112:15925485,6481928 +g1,15112:16921347,6481928 +g1,15112:17253301,6481928 +g1,15112:17585255,6481928 +g1,15112:17917209,6481928 +h1,15112:18913071,6481928:0,0,0 +k1,15112:32583029,6481928:13669958 +g1,15112:32583029,6481928 +) +(1,15112:6630773,7166783:25952256,407923,9908 +h1,15112:6630773,7166783:0,0,0 +g1,15112:7626635,7166783 +g1,15112:9950313,7166783 +g1,15112:12273991,7166783 +g1,15112:14597669,7166783 +g1,15112:14929623,7166783 +g1,15112:16921347,7166783 +g1,15112:17253301,7166783 +h1,15112:18913071,7166783:0,0,0 +k1,15112:32583029,7166783:13669958 +g1,15112:32583029,7166783 +) +(1,15112:6630773,7851638:25952256,398014,0 +h1,15112:6630773,7851638:0,0,0 +h1,15112:7294681,7851638:0,0,0 +k1,15112:32583029,7851638:25288348 +g1,15112:32583029,7851638 +) +(1,15112:6630773,8536493:25952256,431045,8257 +h1,15112:6630773,8536493:0,0,0 +g1,15112:7626635,8536493 +h1,15112:11942036,8536493:0,0,0 +k1,15112:32583028,8536493:20640992 +g1,15112:32583028,8536493 +) +(1,15112:6630773,9221348:25952256,424439,79822 +h1,15112:6630773,9221348:0,0,0 +g1,15112:7626635,9221348 +g1,15112:7958589,9221348 +g1,15112:8290543,9221348 +g1,15112:8622497,9221348 +g1,15112:8954451,9221348 +g1,15112:9286405,9221348 +g1,15112:9618359,9221348 +g1,15112:9950313,9221348 +g1,15112:10282267,9221348 +g1,15112:10614221,9221348 +g1,15112:10946175,9221348 +g1,15112:11278129,9221348 +g1,15112:11610083,9221348 +g1,15112:11942037,9221348 +g1,15112:12273991,9221348 +g1,15112:12605945,9221348 +g1,15112:12937899,9221348 +g1,15112:13269853,9221348 +g1,15112:13601807,9221348 +g1,15112:16589392,9221348 +g1,15112:18249162,9221348 +g1,15112:20240886,9221348 +g1,15112:20904794,9221348 +g1,15112:22896518,9221348 +k1,15112:22896518,9221348:0 +h1,15112:25552150,9221348:0,0,0 +k1,15112:32583029,9221348:7030879 +g1,15112:32583029,9221348 +) +(1,15112:6630773,9906203:25952256,424439,106246 +h1,15112:6630773,9906203:0,0,0 +g1,15112:7626635,9906203 +g1,15112:11610082,9906203 +g1,15112:11942036,9906203 +g1,15112:12273990,9906203 +g1,15112:12605944,9906203 +g1,15112:12937898,9906203 +g1,15112:13269852,9906203 +g1,15112:13601806,9906203 +g1,15112:13933760,9906203 +g1,15112:16589392,9906203 +g1,15112:16921346,9906203 +g1,15112:17253300,9906203 +g1,15112:17585254,9906203 +g1,15112:20240886,9906203 +g1,15112:20572840,9906203 +g1,15112:20904794,9906203 +g1,15112:21236748,9906203 +g1,15112:22896518,9906203 +g1,15112:25884104,9906203 +h1,15112:26879966,9906203:0,0,0 +k1,15112:32583029,9906203:5703063 +g1,15112:32583029,9906203 +) +(1,15112:6630773,10591058:25952256,424439,106246 +h1,15112:6630773,10591058:0,0,0 +g1,15112:7626635,10591058 +g1,15112:13601806,10591058 +g1,15112:13933760,10591058 +g1,15112:16589392,10591058 +g1,15112:16921346,10591058 +g1,15112:17253300,10591058 +g1,15112:17585254,10591058 +g1,15112:20240886,10591058 +g1,15112:20572840,10591058 +g1,15112:20904794,10591058 +g1,15112:22896518,10591058 +g1,15112:23228472,10591058 +g1,15112:23892380,10591058 +g1,15112:25884104,10591058 +h1,15112:26879966,10591058:0,0,0 +k1,15112:32583029,10591058:5703063 +g1,15112:32583029,10591058 +) +(1,15112:6630773,11275913:25952256,424439,112852 +h1,15112:6630773,11275913:0,0,0 +g1,15112:7626635,11275913 +g1,15112:13269852,11275913 +g1,15112:13601806,11275913 +g1,15112:13933760,11275913 +g1,15112:16589392,11275913 +g1,15112:16921346,11275913 +g1,15112:17253300,11275913 +g1,15112:17585254,11275913 +g1,15112:20240886,11275913 +g1,15112:20572840,11275913 +g1,15112:20904794,11275913 +g1,15112:22896518,11275913 +g1,15112:23228472,11275913 +g1,15112:23892380,11275913 +g1,15112:25884104,11275913 +h1,15112:26879966,11275913:0,0,0 +k1,15112:32583029,11275913:5703063 +g1,15112:32583029,11275913 +) +(1,15112:6630773,11960768:25952256,398014,0 +h1,15112:6630773,11960768:0,0,0 +g1,15112:7626635,11960768 +k1,15112:7626635,11960768:0 +h1,15112:8622497,11960768:0,0,0 +k1,15112:32583029,11960768:23960532 +g1,15112:32583029,11960768 +) +(1,15112:6630773,12645623:25952256,431045,112852 +h1,15112:6630773,12645623:0,0,0 +g1,15112:7626635,12645623 +g1,15112:10282267,12645623 +g1,15112:12605945,12645623 +g1,15112:12937899,12645623 +g1,15112:13601807,12645623 +g1,15112:15593531,12645623 +g1,15112:17585255,12645623 +g1,15112:19245025,12645623 +g1,15112:20904795,12645623 +g1,15112:22232611,12645623 +g1,15112:23892381,12645623 +g1,15112:25220197,12645623 +g1,15112:26548013,12645623 +g1,15112:27211921,12645623 +g1,15112:27875829,12645623 +h1,15112:28207783,12645623:0,0,0 +k1,15112:32583029,12645623:4375246 +g1,15112:32583029,12645623 +) +(1,15112:6630773,13330478:25952256,398014,0 +h1,15112:6630773,13330478:0,0,0 +h1,15112:7294681,13330478:0,0,0 +k1,15112:32583029,13330478:25288348 +g1,15112:32583029,13330478 +) +(1,15112:6630773,14015333:25952256,431045,112852 +h1,15112:6630773,14015333:0,0,0 +g1,15112:7626635,14015333 +g1,15112:10614220,14015333 +g1,15112:13601805,14015333 +g1,15112:15925483,14015333 +g1,15112:18249161,14015333 +g1,15112:19245023,14015333 +g1,15112:20572839,14015333 +g1,15112:23228471,14015333 +g1,15112:24224333,14015333 +h1,15112:26548011,14015333:0,0,0 +k1,15112:32583029,14015333:6035018 +g1,15112:32583029,14015333 +) +(1,15112:6630773,14700188:25952256,424439,112852 +h1,15112:6630773,14700188:0,0,0 +g1,15112:7626635,14700188 +g1,15112:10614220,14700188 +g1,15112:14265713,14700188 +g1,15112:14597667,14700188 +g1,15112:19908930,14700188 +g1,15112:23560423,14700188 +g1,15112:23892377,14700188 +h1,15112:25884101,14700188:0,0,0 +k1,15112:32583029,14700188:6698928 +g1,15112:32583029,14700188 +) +(1,15112:6630773,15385043:25952256,424439,106246 +h1,15112:6630773,15385043:0,0,0 +g1,15112:7626635,15385043 +g1,15112:11942036,15385043 +g1,15112:12273990,15385043 +g1,15112:12605944,15385043 +g1,15112:13933760,15385043 +g1,15112:14929622,15385043 +g1,15112:15593530,15385043 +g1,15112:16921346,15385043 +g1,15112:18249162,15385043 +g1,15112:19576978,15385043 +g1,15112:19908932,15385043 +g1,15112:22896518,15385043 +g1,15112:23560426,15385043 +k1,15112:23560426,15385043:0 +h1,15112:25884104,15385043:0,0,0 +k1,15112:32583029,15385043:6698925 +g1,15112:32583029,15385043 +) +] +) +g1,15113:32583029,15491289 +g1,15113:6630773,15491289 +g1,15113:6630773,15491289 +g1,15113:32583029,15491289 +g1,15113:32583029,15491289 +) +h1,15113:6630773,15687897:0,0,0 +v1,15117:6630773,16372752:0,393216,0 +(1,15142:6630773,27386082:25952256,11406546,196608 +g1,15142:6630773,27386082 +g1,15142:6630773,27386082 +g1,15142:6434165,27386082 +(1,15142:6434165,27386082:0,11406546,196608 +r1,15191:32779637,27386082:26345472,11603154,196608 +k1,15142:6434165,27386082:-26345472 +) +(1,15142:6434165,27386082:26345472,11406546,196608 +[1,15142:6630773,27386082:25952256,11209938,0 +(1,15119:6630773,16607189:25952256,431045,112852 +(1,15118:6630773,16607189:0,0,0 +g1,15118:6630773,16607189 +g1,15118:6630773,16607189 +g1,15118:6303093,16607189 +(1,15118:6303093,16607189:0,0,0 +) +g1,15118:6630773,16607189 +) +g1,15119:8290543,16607189 +g1,15119:9286405,16607189 +g1,15119:18249162,16607189 +g1,15119:22564563,16607189 +g1,15119:23228471,16607189 +g1,15119:23560425,16607189 +g1,15119:26548011,16607189 +g1,15119:28207781,16607189 +g1,15119:28871689,16607189 +h1,15119:30531459,16607189:0,0,0 +k1,15119:32583029,16607189:2051570 +g1,15119:32583029,16607189 +) +(1,15120:6630773,17292044:25952256,431045,79822 +h1,15120:6630773,17292044:0,0,0 +k1,15120:6630773,17292044:0 +h1,15120:10282267,17292044:0,0,0 +k1,15120:32583029,17292044:22300762 +g1,15120:32583029,17292044 +) +(1,15131:6630773,18107971:25952256,431045,106246 +(1,15122:6630773,18107971:0,0,0 +g1,15122:6630773,18107971 +g1,15122:6630773,18107971 +g1,15122:6303093,18107971 +(1,15122:6303093,18107971:0,0,0 +) +g1,15122:6630773,18107971 +) +g1,15131:7626635,18107971 +g1,15131:10614220,18107971 +g1,15131:11610082,18107971 +g1,15131:14597667,18107971 +h1,15131:16257437,18107971:0,0,0 +k1,15131:32583029,18107971:16325592 +g1,15131:32583029,18107971 +) +(1,15131:6630773,18792826:25952256,398014,0 +h1,15131:6630773,18792826:0,0,0 +h1,15131:7294681,18792826:0,0,0 +k1,15131:32583029,18792826:25288348 +g1,15131:32583029,18792826 +) +(1,15131:6630773,19477681:25952256,431045,106246 +h1,15131:6630773,19477681:0,0,0 +g1,15131:7626635,19477681 +g1,15131:7958589,19477681 +g1,15131:8290543,19477681 +g1,15131:8622497,19477681 +g1,15131:8954451,19477681 +g1,15131:9286405,19477681 +g1,15131:9618359,19477681 +g1,15131:9950313,19477681 +g1,15131:10282267,19477681 +g1,15131:10614221,19477681 +g1,15131:10946175,19477681 +g1,15131:11278129,19477681 +g1,15131:11610083,19477681 +g1,15131:11942037,19477681 +g1,15131:12937899,19477681 +g1,15131:13269853,19477681 +g1,15131:15593531,19477681 +g1,15131:17917209,19477681 +g1,15131:18581117,19477681 +g1,15131:19908933,19477681 +g1,15131:20904795,19477681 +g1,15131:22232611,19477681 +g1,15131:23228473,19477681 +g1,15131:23560427,19477681 +g1,15131:23892381,19477681 +g1,15131:24224335,19477681 +k1,15131:24224335,19477681:0 +h1,15131:26216059,19477681:0,0,0 +k1,15131:32583029,19477681:6366970 +g1,15131:32583029,19477681 +) +(1,15131:6630773,20162536:25952256,424439,106246 +h1,15131:6630773,20162536:0,0,0 +g1,15131:7626635,20162536 +g1,15131:11610082,20162536 +g1,15131:11942036,20162536 +g1,15131:12273990,20162536 +g1,15131:12937898,20162536 +g1,15131:15593530,20162536 +g1,15131:15925484,20162536 +g1,15131:16257438,20162536 +g1,15131:18581116,20162536 +g1,15131:18913070,20162536 +g1,15131:19245024,20162536 +g1,15131:19576978,20162536 +g1,15131:19908932,20162536 +g1,15131:20240886,20162536 +g1,15131:20904794,20162536 +g1,15131:21236748,20162536 +g1,15131:21568702,20162536 +g1,15131:21900656,20162536 +g1,15131:23228472,20162536 +g1,15131:23892380,20162536 +g1,15131:26548012,20162536 +h1,15131:27543874,20162536:0,0,0 +k1,15131:32583029,20162536:5039155 +g1,15131:32583029,20162536 +) +(1,15131:6630773,20847391:25952256,424439,106246 +h1,15131:6630773,20847391:0,0,0 +g1,15131:7626635,20847391 +g1,15131:10282267,20847391 +g1,15131:10614221,20847391 +g1,15131:10946175,20847391 +g1,15131:11278129,20847391 +g1,15131:11610083,20847391 +g1,15131:11942037,20847391 +g1,15131:12273991,20847391 +g1,15131:12937899,20847391 +g1,15131:15593531,20847391 +g1,15131:15925485,20847391 +g1,15131:16257439,20847391 +g1,15131:16589393,20847391 +g1,15131:16921347,20847391 +g1,15131:18581117,20847391 +g1,15131:18913071,20847391 +g1,15131:19245025,20847391 +g1,15131:19576979,20847391 +g1,15131:19908933,20847391 +g1,15131:20240887,20847391 +g1,15131:20904795,20847391 +g1,15131:21236749,20847391 +g1,15131:21568703,20847391 +g1,15131:21900657,20847391 +g1,15131:23228473,20847391 +g1,15131:23892381,20847391 +g1,15131:26548013,20847391 +h1,15131:27543875,20847391:0,0,0 +k1,15131:32583029,20847391:5039154 +g1,15131:32583029,20847391 +) +(1,15131:6630773,21532246:25952256,424439,6605 +h1,15131:6630773,21532246:0,0,0 +g1,15131:7626635,21532246 +g1,15131:10946174,21532246 +g1,15131:11278128,21532246 +g1,15131:11610082,21532246 +h1,15131:12605944,21532246:0,0,0 +k1,15131:32583028,21532246:19977084 +g1,15131:32583028,21532246 +) +(1,15131:6630773,22217101:25952256,398014,0 +h1,15131:6630773,22217101:0,0,0 +g1,15131:7626635,22217101 +k1,15131:7626635,22217101:0 +h1,15131:8622497,22217101:0,0,0 +k1,15131:32583029,22217101:23960532 +g1,15131:32583029,22217101 +) +(1,15131:6630773,22901956:25952256,431045,112852 +h1,15131:6630773,22901956:0,0,0 +g1,15131:7626635,22901956 +g1,15131:10282267,22901956 +g1,15131:12605945,22901956 +g1,15131:12937899,22901956 +g1,15131:13601807,22901956 +g1,15131:15593531,22901956 +g1,15131:17585255,22901956 +g1,15131:19245025,22901956 +g1,15131:20904795,22901956 +g1,15131:22232611,22901956 +g1,15131:23892381,22901956 +g1,15131:25220197,22901956 +g1,15131:26548013,22901956 +g1,15131:27211921,22901956 +g1,15131:27875829,22901956 +h1,15131:28207783,22901956:0,0,0 +k1,15131:32583029,22901956:4375246 +g1,15131:32583029,22901956 +) +(1,15133:6630773,23717883:25952256,431045,106246 +(1,15132:6630773,23717883:0,0,0 +g1,15132:6630773,23717883 +g1,15132:6630773,23717883 +g1,15132:6303093,23717883 +(1,15132:6303093,23717883:0,0,0 +) +g1,15132:6630773,23717883 +) +k1,15133:6630773,23717883:0 +h1,15133:10946175,23717883:0,0,0 +k1,15133:32583029,23717883:21636854 +g1,15133:32583029,23717883 +) +(1,15141:6630773,24533810:25952256,431045,106246 +(1,15135:6630773,24533810:0,0,0 +g1,15135:6630773,24533810 +g1,15135:6630773,24533810 +g1,15135:6303093,24533810 +(1,15135:6303093,24533810:0,0,0 +) +g1,15135:6630773,24533810 +) +g1,15141:7626635,24533810 +g1,15141:7958589,24533810 +g1,15141:8290543,24533810 +g1,15141:8622497,24533810 +g1,15141:8954451,24533810 +g1,15141:9286405,24533810 +g1,15141:9618359,24533810 +g1,15141:9950313,24533810 +g1,15141:10282267,24533810 +g1,15141:10614221,24533810 +g1,15141:10946175,24533810 +g1,15141:11278129,24533810 +g1,15141:12273991,24533810 +g1,15141:14597669,24533810 +g1,15141:16921347,24533810 +g1,15141:17585255,24533810 +g1,15141:18913071,24533810 +g1,15141:19908933,24533810 +g1,15141:21236749,24533810 +g1,15141:22232611,24533810 +g1,15141:22564565,24533810 +g1,15141:22896519,24533810 +g1,15141:23228473,24533810 +k1,15141:23228473,24533810:0 +h1,15141:25220197,24533810:0,0,0 +k1,15141:32583029,24533810:7362832 +g1,15141:32583029,24533810 +) +(1,15141:6630773,25218665:25952256,424439,106246 +h1,15141:6630773,25218665:0,0,0 +g1,15141:7626635,25218665 +g1,15141:10282267,25218665 +g1,15141:10614221,25218665 +g1,15141:10946175,25218665 +g1,15141:11278129,25218665 +g1,15141:11610083,25218665 +g1,15141:12273991,25218665 +g1,15141:14597669,25218665 +g1,15141:14929623,25218665 +g1,15141:15261577,25218665 +g1,15141:17585255,25218665 +g1,15141:17917209,25218665 +g1,15141:18249163,25218665 +g1,15141:18581117,25218665 +g1,15141:18913071,25218665 +g1,15141:19245025,25218665 +g1,15141:19908933,25218665 +g1,15141:20240887,25218665 +g1,15141:20572841,25218665 +g1,15141:20904795,25218665 +g1,15141:22232611,25218665 +g1,15141:22896519,25218665 +g1,15141:25552151,25218665 +h1,15141:26548013,25218665:0,0,0 +k1,15141:32583029,25218665:6035016 +g1,15141:32583029,25218665 +) +(1,15141:6630773,25903520:25952256,424439,6605 +h1,15141:6630773,25903520:0,0,0 +g1,15141:7626635,25903520 +g1,15141:10946174,25903520 +h1,15141:11942036,25903520:0,0,0 +k1,15141:32583028,25903520:20640992 +g1,15141:32583028,25903520 +) +(1,15141:6630773,26588375:25952256,398014,0 +h1,15141:6630773,26588375:0,0,0 +g1,15141:7626635,26588375 +k1,15141:7626635,26588375:0 +h1,15141:8622497,26588375:0,0,0 +k1,15141:32583029,26588375:23960532 +g1,15141:32583029,26588375 +) +(1,15141:6630773,27273230:25952256,431045,112852 +h1,15141:6630773,27273230:0,0,0 +g1,15141:7626635,27273230 +g1,15141:10282267,27273230 +g1,15141:12605945,27273230 +g1,15141:12937899,27273230 +g1,15141:13601807,27273230 +g1,15141:15593531,27273230 +g1,15141:17585255,27273230 +g1,15141:19245025,27273230 +g1,15141:20904795,27273230 +g1,15141:22232611,27273230 +g1,15141:23892381,27273230 +g1,15141:25220197,27273230 +g1,15141:26548013,27273230 +g1,15141:27211921,27273230 +g1,15141:27875829,27273230 +h1,15141:28207783,27273230:0,0,0 +k1,15141:32583029,27273230:4375246 +g1,15141:32583029,27273230 +) +] +) +g1,15142:32583029,27386082 +g1,15142:6630773,27386082 +g1,15142:6630773,27386082 +g1,15142:32583029,27386082 +g1,15142:32583029,27386082 +) +h1,15142:6630773,27582690:0,0,0 +v1,15146:6630773,28447770:0,393216,0 +(1,15148:6630773,30620576:25952256,2566022,0 +g1,15148:6630773,30620576 +g1,15148:6237557,30620576 +r1,15191:6368629,30620576:131072,2566022,0 +g1,15148:6567858,30620576 +g1,15148:6764466,30620576 +[1,15148:6764466,30620576:25818563,2566022,0 +(1,15148:6764466,28756068:25818563,701514,196608 +(1,15146:6764466,28756068:0,701514,196608 +r1,15191:8863446,28756068:2098980,898122,196608 +k1,15146:6764466,28756068:-2098980 +) +(1,15146:6764466,28756068:2098980,701514,196608 +) +k1,15146:9058935,28756068:195489 +k1,15146:10785153,28756068:327680 +k1,15146:13186583,28756068:195488 +k1,15146:14401157,28756068:195489 +k1,15146:17258063,28756068:195489 +k1,15146:19308875,28756068:195488 +k1,15146:20155792,28756068:195489 +k1,15146:21443766,28756068:195489 +(1,15146:21443766,28756068:0,452978,115847 +r1,15191:23208879,28756068:1765113,568825,115847 +k1,15146:21443766,28756068:-1765113 +) +(1,15146:21443766,28756068:1765113,452978,115847 +k1,15146:21443766,28756068:3277 +h1,15146:23205602,28756068:0,411205,112570 +) +k1,15146:23404367,28756068:195488 +k1,15146:25927039,28756068:195489 +k1,15146:26789684,28756068:195489 +(1,15146:26789684,28756068:0,452978,115847 +r1,15191:29609933,28756068:2820249,568825,115847 +k1,15146:26789684,28756068:-2820249 +) +(1,15146:26789684,28756068:2820249,452978,115847 +k1,15146:26789684,28756068:3277 +h1,15146:29606656,28756068:0,411205,112570 +) +k1,15146:29805421,28756068:195488 +k1,15146:31192355,28756068:195489 +k1,15146:32583029,28756068:0 +) +(1,15148:6764466,29621148:25818563,505283,115847 +k1,15146:7942015,29621148:158464 +k1,15146:9943351,29621148:158464 +k1,15146:10753243,29621148:158464 +k1,15146:11267567,29621148:158464 +k1,15146:13937371,29621148:158464 +k1,15146:16254591,29621148:158464 +(1,15146:16254591,29621148:0,459977,115847 +r1,15191:17667992,29621148:1413401,575824,115847 +k1,15146:16254591,29621148:-1413401 +) +(1,15146:16254591,29621148:1413401,459977,115847 +k1,15146:16254591,29621148:3277 +h1,15146:17664715,29621148:0,411205,112570 +) +k1,15146:18000125,29621148:158463 +k1,15147:18000125,29621148:0 +k1,15147:19307435,29621148:158464 +(1,15147:19307435,29621148:0,452978,115847 +r1,15191:21775972,29621148:2468537,568825,115847 +k1,15147:19307435,29621148:-2468537 +) +(1,15147:19307435,29621148:2468537,452978,115847 +k1,15147:19307435,29621148:3277 +h1,15147:21772695,29621148:0,411205,112570 +) +k1,15147:22108106,29621148:158464 +(1,15147:22108106,29621148:0,452978,115847 +r1,15191:26335202,29621148:4227096,568825,115847 +k1,15147:22108106,29621148:-4227096 +) +(1,15147:22108106,29621148:4227096,452978,115847 +k1,15147:22108106,29621148:3277 +h1,15147:26331925,29621148:0,411205,112570 +) +k1,15147:26667336,29621148:158464 +(1,15147:26667336,29621148:0,452978,115847 +r1,15191:29135873,29621148:2468537,568825,115847 +k1,15147:26667336,29621148:-2468537 +) +(1,15147:26667336,29621148:2468537,452978,115847 +k1,15147:26667336,29621148:3277 +h1,15147:29132596,29621148:0,411205,112570 +) +k1,15147:29468007,29621148:158464 +(1,15147:29468007,29621148:0,452978,115847 +r1,15191:31233120,29621148:1765113,568825,115847 +k1,15147:29468007,29621148:-1765113 +) +(1,15147:29468007,29621148:1765113,452978,115847 +k1,15147:29468007,29621148:3277 +h1,15147:31229843,29621148:0,411205,112570 +) +k1,15147:31391584,29621148:158464 +k1,15147:32583029,29621148:0 +) +(1,15148:6764466,30486228:25818563,513147,134348 +k1,15147:10171462,30486228:192455 +k1,15147:11023210,30486228:192456 +k1,15147:14169373,30486228:192455 +k1,15147:15013257,30486228:192456 +k1,15147:17574183,30486228:192455 +k1,15147:20056466,30486228:192455 +(1,15147:20056466,30486228:0,459977,115847 +r1,15191:21469867,30486228:1413401,575824,115847 +k1,15147:20056466,30486228:-1413401 +) +(1,15147:20056466,30486228:1413401,459977,115847 +k1,15147:20056466,30486228:3277 +h1,15147:21466590,30486228:0,411205,112570 +) +k1,15147:21835993,30486228:192456 +(1,15147:21835993,30486228:0,459977,115847 +r1,15191:23249394,30486228:1413401,575824,115847 +k1,15147:21835993,30486228:-1413401 +) +(1,15147:21835993,30486228:1413401,459977,115847 +k1,15147:21835993,30486228:3277 +h1,15147:23246117,30486228:0,411205,112570 +) +k1,15147:23441849,30486228:192455 +k1,15147:24825750,30486228:192456 +(1,15147:24825750,30486228:0,459977,115847 +r1,15191:26239151,30486228:1413401,575824,115847 +k1,15147:24825750,30486228:-1413401 +) +(1,15147:24825750,30486228:1413401,459977,115847 +k1,15147:24825750,30486228:3277 +h1,15147:26235874,30486228:0,411205,112570 +) +k1,15147:26605276,30486228:192455 +k1,15147:27921019,30486228:192456 +k1,15147:29493662,30486228:192455 +k1,15148:32583029,30486228:0 +k1,15148:32583029,30486228:0 +) +] +g1,15148:32583029,30620576 +) +h1,15148:6630773,30620576:0,0,0 +(1,15152:6630773,32737394:25952256,555811,139132 +(1,15152:6630773,32737394:2899444,534184,12975 +g1,15152:6630773,32737394 +g1,15152:9530217,32737394 +) +g1,15152:12966008,32737394 +g1,15152:17643903,32737394 +k1,15152:32583029,32737394:11970476 +g1,15152:32583029,32737394 +) +(1,15156:6630773,33995690:25952256,513147,134348 +k1,15155:9664219,33995690:237025 +k1,15155:13828817,33995690:237025 +k1,15155:16620435,33995690:237025 +k1,15155:18590194,33995690:236987 +k1,15155:19358716,33995690:237025 +k1,15155:21108968,33995690:237026 +k1,15155:21997421,33995690:237025 +k1,15155:24838847,33995690:237025 +k1,15155:25431732,33995690:237025 +k1,15155:27058120,33995690:237025 +k1,15155:28229688,33995690:237025 +k1,15155:29228241,33995690:237025 +k1,15155:32583029,33995690:0 +) +(1,15156:6630773,34860770:25952256,505283,126483 +k1,15155:9664971,34860770:192557 +k1,15155:11251478,34860770:192556 +k1,15155:13646045,34860770:192557 +k1,15155:15030046,34860770:192556 +k1,15155:17903681,34860770:192557 +k1,15155:20855958,34860770:192556 +k1,15155:22315981,34860770:192557 +k1,15155:25350178,34860770:192556 +k1,15155:29643978,34860770:192557 +k1,15155:30581023,34860770:192556 +k1,15155:31129440,34860770:192557 +k1,15155:32583029,34860770:0 +) +(1,15156:6630773,35725850:25952256,513147,134348 +k1,15155:8623832,35725850:154774 +k1,15155:9646958,35725850:154774 +k1,15155:13106713,35725850:154774 +k1,15155:14167850,35725850:154774 +k1,15155:14974052,35725850:154774 +k1,15155:17950806,35725850:154774 +k1,15155:19802308,35725850:154775 +k1,15155:23884655,35725850:154774 +k1,15155:24655467,35725850:154774 +k1,15155:27274395,35725850:154774 +k1,15155:28080597,35725850:154774 +k1,15155:30373155,35725850:154774 +k1,15155:32583029,35725850:0 +) +(1,15156:6630773,36590930:25952256,513147,126483 +k1,15155:9590644,36590930:140512 +k1,15155:13738027,36590930:140512 +k1,15155:16893850,36590930:140512 +k1,15155:18466979,36590930:140512 +k1,15155:19526307,36590930:140513 +k1,15155:22362315,36590930:140512 +(1,15155:22362315,36590930:0,452978,115847 +r1,15191:25182564,36590930:2820249,568825,115847 +k1,15155:22362315,36590930:-2820249 +) +(1,15155:22362315,36590930:2820249,452978,115847 +k1,15155:22362315,36590930:3277 +h1,15155:25179287,36590930:0,411205,112570 +) +k1,15155:25323076,36590930:140512 +k1,15155:28581791,36590930:140512 +k1,15155:29741388,36590930:140512 +k1,15155:32583029,36590930:0 +) +(1,15156:6630773,37456010:25952256,513147,134348 +g1,15155:10757575,37456010 +g1,15155:12148249,37456010 +g1,15155:14725780,37456010 +g1,15155:18152002,37456010 +g1,15155:21753860,37456010 +g1,15155:22900740,37456010 +g1,15155:26078580,37456010 +g1,15155:27469254,37456010 +k1,15156:32583029,37456010:2724988 +g1,15156:32583029,37456010 +) +v1,15158:6630773,38140865:0,393216,0 +(1,15165:6630773,40503083:25952256,2755434,196608 +g1,15165:6630773,40503083 +g1,15165:6630773,40503083 +g1,15165:6434165,40503083 +(1,15165:6434165,40503083:0,2755434,196608 +r1,15191:32779637,40503083:26345472,2952042,196608 +k1,15165:6434165,40503083:-26345472 +) +(1,15165:6434165,40503083:26345472,2755434,196608 +[1,15165:6630773,40503083:25952256,2558826,0 +(1,15160:6630773,38368696:25952256,424439,112852 +(1,15159:6630773,38368696:0,0,0 +g1,15159:6630773,38368696 +g1,15159:6630773,38368696 +g1,15159:6303093,38368696 +(1,15159:6303093,38368696:0,0,0 +) +g1,15159:6630773,38368696 +) +g1,15160:7626635,38368696 +g1,15160:8622497,38368696 +g1,15160:18581116,38368696 +k1,15160:18581116,38368696:0 +h1,15160:23228471,38368696:0,0,0 +k1,15160:32583029,38368696:9354558 +g1,15160:32583029,38368696 +) +(1,15161:6630773,39053551:25952256,424439,112852 +h1,15161:6630773,39053551:0,0,0 +g1,15161:6962727,39053551 +g1,15161:7294681,39053551 +g1,15161:7626635,39053551 +g1,15161:7958589,39053551 +g1,15161:8290543,39053551 +g1,15161:8622497,39053551 +g1,15161:8954451,39053551 +g1,15161:9286405,39053551 +g1,15161:9618359,39053551 +g1,15161:9950313,39053551 +g1,15161:10282267,39053551 +g1,15161:10614221,39053551 +g1,15161:10946175,39053551 +g1,15161:11278129,39053551 +g1,15161:11610083,39053551 +g1,15161:11942037,39053551 +g1,15161:12273991,39053551 +g1,15161:12605945,39053551 +g1,15161:12937899,39053551 +g1,15161:13269853,39053551 +g1,15161:18581116,39053551 +k1,15161:18581116,39053551:0 +h1,15161:23892379,39053551:0,0,0 +k1,15161:32583029,39053551:8690650 +g1,15161:32583029,39053551 +) +(1,15162:6630773,39738406:25952256,388105,86428 +h1,15162:6630773,39738406:0,0,0 +g1,15162:6962727,39738406 +g1,15162:7294681,39738406 +g1,15162:7626635,39738406 +g1,15162:7958589,39738406 +g1,15162:8290543,39738406 +g1,15162:8622497,39738406 +g1,15162:8954451,39738406 +g1,15162:9286405,39738406 +g1,15162:9618359,39738406 +g1,15162:9950313,39738406 +g1,15162:10282267,39738406 +g1,15162:10614221,39738406 +g1,15162:10946175,39738406 +g1,15162:13269853,39738406 +g1,15162:13933761,39738406 +k1,15162:13933761,39738406:0 +h1,15162:15593531,39738406:0,0,0 +k1,15162:32583029,39738406:16989498 +g1,15162:32583029,39738406 +) +(1,15163:6630773,40423261:25952256,424439,79822 +h1,15163:6630773,40423261:0,0,0 +g1,15163:6962727,40423261 +g1,15163:7294681,40423261 +g1,15163:7626635,40423261 +g1,15163:7958589,40423261 +g1,15163:8290543,40423261 +g1,15163:8622497,40423261 +g1,15163:8954451,40423261 +g1,15163:9286405,40423261 +g1,15163:9618359,40423261 +g1,15163:9950313,40423261 +g1,15163:10282267,40423261 +g1,15163:10614221,40423261 +g1,15163:10946175,40423261 +g1,15163:12937899,40423261 +g1,15163:13601807,40423261 +h1,15163:15261577,40423261:0,0,0 +k1,15163:32583029,40423261:17321452 +g1,15163:32583029,40423261 +) +] +) +g1,15165:32583029,40503083 +g1,15165:6630773,40503083 +g1,15165:6630773,40503083 +g1,15165:32583029,40503083 +g1,15165:32583029,40503083 +) +h1,15165:6630773,40699691:0,0,0 +(1,15170:6630773,41384546:25952256,513147,134348 +h1,15168:6630773,41384546:983040,0,0 +k1,15168:8581780,41384546:207749 +k1,15168:11361817,41384546:207749 +k1,15168:12588651,41384546:207749 +k1,15168:15575127,41384546:207749 +k1,15168:17742402,41384546:207749 +k1,15168:18818503,41384546:207749 +k1,15168:20130534,41384546:207749 +k1,15168:21363266,41384546:207749 +k1,15168:22590100,41384546:207749 +k1,15168:25494656,41384546:207749 +k1,15168:26361697,41384546:207749 +k1,15168:28021068,41384546:207749 +k1,15168:30740157,41384546:207749 +k1,15168:31563944,41384546:207749 +k1,15168:32583029,41384546:0 +) +(1,15170:6630773,42069401:25952256,505283,126483 +g1,15168:9671643,42069401 +g1,15168:13798445,42069401 +(1,15168:13798445,42069401:0,435480,115847 +r1,15191:14508423,42069401:709978,551327,115847 +k1,15168:13798445,42069401:-709978 +) +(1,15168:13798445,42069401:709978,435480,115847 +k1,15168:13798445,42069401:3277 +h1,15168:14505146,42069401:0,411205,112570 +) +g1,15168:14707652,42069401 +g1,15168:15558309,42069401 +(1,15168:15558309,42069401:0,424981,115847 +r1,15191:16268287,42069401:709978,540828,115847 +k1,15168:15558309,42069401:-709978 +) +(1,15168:15558309,42069401:709978,424981,115847 +k1,15168:15558309,42069401:3277 +h1,15168:16265010,42069401:0,411205,112570 +) +g1,15168:16641186,42069401 +k1,15170:32583029,42069401:15941843 +g1,15170:32583029,42069401 +) +v1,15170:6630773,42754256:0,393216,0 +(1,15191:6630773,44613941:25952256,2252901,196608 +g1,15191:6630773,44613941 +g1,15191:6630773,44613941 +g1,15191:6434165,44613941 +(1,15191:6434165,44613941:0,2252901,196608 +r1,15191:32779637,44613941:26345472,2449509,196608 +k1,15191:6434165,44613941:-26345472 +) +(1,15191:6434165,44613941:26345472,2252901,196608 +[1,15191:6630773,44613941:25952256,2056293,0 +(1,15172:6630773,42982087:25952256,424439,106246 +(1,15171:6630773,42982087:0,0,0 +g1,15171:6630773,42982087 +g1,15171:6630773,42982087 +g1,15171:6303093,42982087 +(1,15171:6303093,42982087:0,0,0 +) +g1,15171:6630773,42982087 +) +k1,15172:6630773,42982087:0 +h1,15172:9618359,42982087:0,0,0 +k1,15172:32583029,42982087:22964670 +g1,15172:32583029,42982087 +) +(1,15176:6630773,43798014:25952256,424439,106246 +(1,15174:6630773,43798014:0,0,0 +g1,15174:6630773,43798014 +g1,15174:6630773,43798014 +g1,15174:6303093,43798014 +(1,15174:6303093,43798014:0,0,0 +) +g1,15174:6630773,43798014 +) +g1,15176:7626635,43798014 +g1,15176:8954451,43798014 +h1,15176:11610082,43798014:0,0,0 +k1,15176:32583030,43798014:20972948 +g1,15176:32583030,43798014 +) +(1,15178:6630773,44613941:25952256,298373,106246 +(1,15177:6630773,44613941:0,0,0 +g1,15177:6630773,44613941 +g1,15177:6630773,44613941 +g1,15177:6303093,44613941 +(1,15177:6303093,44613941:0,0,0 ) -k1,15243:62087500,51504789:25935872 -g1,15243:62087500,51504789 -) -] +g1,15177:6630773,44613941 ) -g1,15243:36675916,49800853 -(1,15243:36675916,49800853:1179648,16384,0 -r1,15243:37855564,49800853:1179648,16384,0 -) -) -k1,15243:3078556,49800853:-34777008 +h1,15178:7294681,44613941:0,0,0 +k1,15178:32583029,44613941:25288348 +g1,15178:32583029,44613941 +) +] +) +g1,15191:32583029,44613941 +g1,15191:6630773,44613941 +g1,15191:6630773,44613941 +g1,15191:32583029,44613941 +g1,15191:32583029,44613941 ) ] -g1,15243:6630773,4812305 +(1,15191:32583029,45706769:0,0,0 +g1,15191:32583029,45706769 ) ) ] -[1,15243:6630773,45706769:0,40108032,0 -(1,15243:6630773,45706769:0,40108032,0 -(1,15243:6630773,45706769:0,0,0 -g1,15243:6630773,45706769 +(1,15191:6630773,47279633:25952256,0,0 +h1,15191:6630773,47279633:25952256,0,0 ) -[1,15243:6630773,45706769:0,40108032,0 -h1,15243:6630773,6254097:0,0,0 ] -(1,15243:6630773,45706769:0,0,0 -g1,15243:6630773,45706769 +(1,15191:4262630,4025873:0,0,0 +[1,15191:-473656,4025873:0,0,0 +(1,15191:-473656,-710413:0,0,0 +(1,15191:-473656,-710413:0,0,0 +g1,15191:-473656,-710413 ) +g1,15191:-473656,-710413 ) ] -(1,15243:6630773,47279633:25952256,0,0 -h1,15243:6630773,47279633:25952256,0,0 ) ] -(1,15243:4262630,4025873:0,0,0 -[1,15243:-473656,4025873:0,0,0 -(1,15243:-473656,-710413:0,0,0 -(1,15243:-473656,-710413:0,0,0 -g1,15243:-473656,-710413 -) -g1,15243:-473656,-710413 -) -] -) -] -!3399 -}259 -!11 -{260 -[1,15258:4262630,47279633:28320399,43253760,11795 -(1,15258:4262630,4025873:0,0,0 -[1,15258:-473656,4025873:0,0,0 -(1,15258:-473656,-710413:0,0,0 -(1,15258:-473656,-644877:0,0,0 -k1,15258:-473656,-644877:-65536 +!32258 +}242 +Input:2255:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2256:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!200 +{243 +[1,15247:4262630,47279633:28320399,43253760,0 +(1,15247:4262630,4025873:0,0,0 +[1,15247:-473656,4025873:0,0,0 +(1,15247:-473656,-710413:0,0,0 +(1,15247:-473656,-644877:0,0,0 +k1,15247:-473656,-644877:-65536 ) -(1,15258:-473656,4736287:0,0,0 -k1,15258:-473656,4736287:5209943 +(1,15247:-473656,4736287:0,0,0 +k1,15247:-473656,4736287:5209943 ) -g1,15258:-473656,-710413 +g1,15247:-473656,-710413 ) ] ) -[1,15258:6630773,47279633:25952256,43253760,11795 -[1,15258:6630773,4812305:25952256,786432,0 -(1,15258:6630773,4812305:25952256,0,0 -(1,15258:6630773,4812305:25952256,0,0 -g1,15258:3078558,4812305 -[1,15258:3078558,4812305:0,0,0 -(1,15258:3078558,2439708:0,1703936,0 -k1,15258:1358238,2439708:-1720320 -(1,15243:1358238,2439708:1720320,1703936,0 -(1,15243:1358238,2439708:1179648,16384,0 -r1,15258:2537886,2439708:1179648,16384,0 +[1,15247:6630773,47279633:25952256,43253760,0 +[1,15247:6630773,4812305:25952256,786432,0 +(1,15247:6630773,4812305:25952256,513147,126483 +(1,15247:6630773,4812305:25952256,513147,126483 +g1,15247:3078558,4812305 +[1,15247:3078558,4812305:0,0,0 +(1,15247:3078558,2439708:0,1703936,0 +k1,15247:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,15247:2537886,2439708:1179648,16384,0 ) -g1,15243:3062174,2439708 -(1,15243:3062174,2439708:16384,1703936,0 -[1,15243:3062174,2439708:25952256,1703936,0 -(1,15243:3062174,1915420:25952256,1179648,0 -(1,15243:3062174,1915420:16384,1179648,0 -r1,15258:3078558,1915420:16384,1179648,0 +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,15247:3078558,1915420:16384,1179648,0 ) -k1,15243:29014430,1915420:25935872 -g1,15243:29014430,1915420 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] ) ) ) ] -[1,15258:3078558,4812305:0,0,0 -(1,15258:3078558,2439708:0,1703936,0 -g1,15258:29030814,2439708 -g1,15258:36135244,2439708 -(1,15243:36135244,2439708:1720320,1703936,0 -(1,15243:36135244,2439708:16384,1703936,0 -[1,15243:36135244,2439708:25952256,1703936,0 -(1,15243:36135244,1915420:25952256,1179648,0 -(1,15243:36135244,1915420:16384,1179648,0 -r1,15258:36151628,1915420:16384,1179648,0 +[1,15247:3078558,4812305:0,0,0 +(1,15247:3078558,2439708:0,1703936,0 +g1,15247:29030814,2439708 +g1,15247:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,15247:36151628,1915420:16384,1179648,0 ) -k1,15243:62087500,1915420:25935872 -g1,15243:62087500,1915420 +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] ) -g1,15243:36675916,2439708 -(1,15243:36675916,2439708:1179648,16384,0 -r1,15258:37855564,2439708:1179648,16384,0 +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,15247:37855564,2439708:1179648,16384,0 ) ) -k1,15258:3078556,2439708:-34777008 +k1,15247:3078556,2439708:-34777008 ) ] -[1,15258:3078558,4812305:0,0,0 -(1,15258:3078558,49800853:0,16384,2228224 -k1,15258:1358238,49800853:-1720320 -(1,15243:1358238,49800853:1720320,16384,2228224 -(1,15243:1358238,49800853:1179648,16384,0 -r1,15258:2537886,49800853:1179648,16384,0 +[1,15247:3078558,4812305:0,0,0 +(1,15247:3078558,49800853:0,16384,2228224 +k1,15247:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,15247:2537886,49800853:1179648,16384,0 ) -g1,15243:3062174,49800853 -(1,15243:3062174,52029077:16384,1703936,0 -[1,15243:3062174,52029077:25952256,1703936,0 -(1,15243:3062174,51504789:25952256,1179648,0 -(1,15243:3062174,51504789:16384,1179648,0 -r1,15258:3078558,51504789:16384,1179648,0 +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,15247:3078558,51504789:16384,1179648,0 ) -k1,15243:29014430,51504789:25935872 -g1,15243:29014430,51504789 +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 ) ] ) ) ) ] -[1,15258:3078558,4812305:0,0,0 -(1,15258:3078558,49800853:0,16384,2228224 -g1,15258:29030814,49800853 -g1,15258:36135244,49800853 -(1,15243:36135244,49800853:1720320,16384,2228224 -(1,15243:36135244,52029077:16384,1703936,0 -[1,15243:36135244,52029077:25952256,1703936,0 -(1,15243:36135244,51504789:25952256,1179648,0 -(1,15243:36135244,51504789:16384,1179648,0 -r1,15258:36151628,51504789:16384,1179648,0 +[1,15247:3078558,4812305:0,0,0 +(1,15247:3078558,49800853:0,16384,2228224 +g1,15247:29030814,49800853 +g1,15247:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,15247:36151628,51504789:16384,1179648,0 +) +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 +) +] +) +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,15247:37855564,49800853:1179648,16384,0 +) +) +k1,15247:3078556,49800853:-34777008 +) +] +g1,15247:6630773,4812305 +k1,15247:19540057,4812305:11713907 +g1,15247:21162728,4812305 +g1,15247:21985204,4812305 +g1,15247:24539797,4812305 +g1,15247:25949476,4812305 +g1,15247:28728857,4812305 +g1,15247:29852144,4812305 +) +) +] +[1,15247:6630773,45706769:25952256,40108032,0 +(1,15247:6630773,45706769:25952256,40108032,0 +(1,15247:6630773,45706769:0,0,0 +g1,15247:6630773,45706769 +) +[1,15247:6630773,45706769:25952256,40108032,0 +v1,15191:6630773,6254097:0,393216,0 +(1,15191:6630773,11970676:25952256,6109795,196608 +g1,15191:6630773,11970676 +g1,15191:6630773,11970676 +g1,15191:6434165,11970676 +(1,15191:6434165,11970676:0,6109795,196608 +r1,15247:32779637,11970676:26345472,6306403,196608 +k1,15191:6434165,11970676:-26345472 +) +(1,15191:6434165,11970676:26345472,6109795,196608 +[1,15191:6630773,11970676:25952256,5913187,0 +(1,15190:6630773,6481928:25952256,424439,106246 +(1,15180:6630773,6481928:0,0,0 +g1,15180:6630773,6481928 +g1,15180:6630773,6481928 +g1,15180:6303093,6481928 +(1,15180:6303093,6481928:0,0,0 +) +g1,15180:6630773,6481928 +) +g1,15190:7626635,6481928 +g1,15190:10614220,6481928 +g1,15190:14265713,6481928 +g1,15190:15593529,6481928 +g1,15190:16921345,6481928 +h1,15190:18581115,6481928:0,0,0 +k1,15190:32583029,6481928:14001914 +g1,15190:32583029,6481928 +) +(1,15190:6630773,7166783:25952256,424439,79822 +h1,15190:6630773,7166783:0,0,0 +g1,15190:7626635,7166783 +g1,15190:8954451,7166783 +g1,15190:12273990,7166783 +g1,15190:15593529,7166783 +g1,15190:18913068,7166783 +h1,15190:21900653,7166783:0,0,0 +k1,15190:32583029,7166783:10682376 +g1,15190:32583029,7166783 +) +(1,15190:6630773,7851638:25952256,398014,0 +h1,15190:6630773,7851638:0,0,0 +h1,15190:7294681,7851638:0,0,0 +k1,15190:32583029,7851638:25288348 +g1,15190:32583029,7851638 +) +(1,15190:6630773,8536493:25952256,424439,79822 +h1,15190:6630773,8536493:0,0,0 +g1,15190:7626635,8536493 +g1,15190:10614220,8536493 +g1,15190:11610082,8536493 +g1,15190:12273990,8536493 +g1,15190:13269852,8536493 +g1,15190:13933760,8536493 +g1,15190:14929622,8536493 +g1,15190:15593530,8536493 +h1,15190:16589392,8536493:0,0,0 +k1,15190:32583029,8536493:15993637 +g1,15190:32583029,8536493 +) +(1,15190:6630773,9221348:25952256,407923,9908 +h1,15190:6630773,9221348:0,0,0 +g1,15190:7626635,9221348 +g1,15190:7958589,9221348 +g1,15190:8290543,9221348 +g1,15190:8622497,9221348 +g1,15190:8954451,9221348 +g1,15190:9286405,9221348 +g1,15190:9618359,9221348 +g1,15190:9950313,9221348 +g1,15190:10282267,9221348 +g1,15190:10614221,9221348 +g1,15190:10946175,9221348 +g1,15190:11278129,9221348 +g1,15190:11610083,9221348 +g1,15190:11942037,9221348 +g1,15190:12273991,9221348 +g1,15190:12605945,9221348 +g1,15190:12937899,9221348 +g1,15190:13269853,9221348 +g1,15190:13601807,9221348 +g1,15190:13933761,9221348 +g1,15190:14265715,9221348 +g1,15190:15593531,9221348 +g1,15190:15925485,9221348 +g1,15190:16257439,9221348 +g1,15190:16589393,9221348 +g1,15190:16921347,9221348 +g1,15190:17253301,9221348 +g1,15190:17585255,9221348 +g1,15190:17917209,9221348 +g1,15190:18249163,9221348 +g1,15190:19576979,9221348 +g1,15190:19908933,9221348 +g1,15190:20240887,9221348 +g1,15190:20572841,9221348 +g1,15190:20904795,9221348 +g1,15190:21236749,9221348 +g1,15190:21568703,9221348 +g1,15190:21900657,9221348 +g1,15190:23228473,9221348 +g1,15190:23560427,9221348 +g1,15190:23892381,9221348 +g1,15190:24224335,9221348 +g1,15190:24556289,9221348 +g1,15190:24888243,9221348 +g1,15190:25220197,9221348 +g1,15190:25552151,9221348 +h1,15190:26548013,9221348:0,0,0 +k1,15190:32583029,9221348:6035016 +g1,15190:32583029,9221348 +) +(1,15190:6630773,9906203:25952256,424439,112852 +h1,15190:6630773,9906203:0,0,0 +g1,15190:7626635,9906203 +g1,15190:11942036,9906203 +g1,15190:12273990,9906203 +g1,15190:15593529,9906203 +g1,15190:19576976,9906203 +g1,15190:19908930,9906203 +g1,15190:23228469,9906203 +g1,15190:23560423,9906203 +h1,15190:26548008,9906203:0,0,0 +k1,15190:32583029,9906203:6035021 +g1,15190:32583029,9906203 +) +(1,15190:6630773,10591058:25952256,424439,106246 +h1,15190:6630773,10591058:0,0,0 +g1,15190:7626635,10591058 +g1,15190:11610082,10591058 +g1,15190:11942036,10591058 +g1,15190:15593529,10591058 +g1,15190:19576976,10591058 +g1,15190:23228469,10591058 +k1,15190:23228469,10591058:0 +h1,15190:26548008,10591058:0,0,0 +k1,15190:32583029,10591058:6035021 +g1,15190:32583029,10591058 +) +(1,15190:6630773,11275913:25952256,424439,112852 +h1,15190:6630773,11275913:0,0,0 +g1,15190:7626635,11275913 +g1,15190:11942036,11275913 +g1,15190:12273990,11275913 +g1,15190:15593529,11275913 +g1,15190:19576976,11275913 +g1,15190:23228469,11275913 +k1,15190:23228469,11275913:0 +h1,15190:26548008,11275913:0,0,0 +k1,15190:32583029,11275913:6035021 +g1,15190:32583029,11275913 +) +(1,15190:6630773,11960768:25952256,424439,9908 +h1,15190:6630773,11960768:0,0,0 +g1,15190:7626635,11960768 +g1,15190:11610082,11960768 +g1,15190:11942036,11960768 +g1,15190:12273990,11960768 +g1,15190:15593529,11960768 +g1,15190:19576976,11960768 +g1,15190:23228469,11960768 +g1,15190:23560423,11960768 +h1,15190:26548008,11960768:0,0,0 +k1,15190:32583029,11960768:6035021 +g1,15190:32583029,11960768 +) +] +) +g1,15191:32583029,11970676 +g1,15191:6630773,11970676 +g1,15191:6630773,11970676 +g1,15191:32583029,11970676 +g1,15191:32583029,11970676 +) +h1,15191:6630773,12167284:0,0,0 +(1,15195:6630773,13032364:25952256,513147,126483 +h1,15194:6630773,13032364:983040,0,0 +k1,15194:8508183,13032364:266535 +k1,15194:9793803,13032364:266535 +k1,15194:13224415,13032364:266534 +k1,15194:14510035,13032364:266535 +k1,15194:16310768,13032364:266535 +k1,15194:20306957,13032364:266535 +k1,15194:21232784,13032364:266535 +k1,15194:24554606,13032364:266534 +k1,15194:26012586,13032364:266535 +k1,15194:30208004,13032364:266535 +k1,15195:32583029,13032364:0 +) +(1,15195:6630773,13897444:25952256,513147,126483 +k1,15194:8438732,13897444:240338 +k1,15194:9670631,13897444:240339 +k1,15194:11512669,13897444:240338 +k1,15194:15455136,13897444:240338 +k1,15194:16354767,13897444:240339 +k1,15194:17614190,13897444:240338 +k1,15194:21826666,13897444:240339 +k1,15194:22726296,13897444:240338 +k1,15194:24418256,13897444:240338 +k1,15194:27500236,13897444:240339 +k1,15194:31337845,13897444:240338 +k1,15194:32583029,13897444:0 +) +(1,15195:6630773,14762524:25952256,505283,134348 +g1,15194:7481430,14762524 +g1,15194:10981052,14762524 +g1,15194:12199366,14762524 +g1,15194:15224507,14762524 +g1,15194:17583147,14762524 +k1,15195:32583029,14762524:10754460 +g1,15195:32583029,14762524 +) +v1,15197:6630773,15447379:0,393216,0 +(1,15208:6630773,19336803:25952256,4282640,196608 +g1,15208:6630773,19336803 +g1,15208:6630773,19336803 +g1,15208:6434165,19336803 +(1,15208:6434165,19336803:0,4282640,196608 +r1,15247:32779637,19336803:26345472,4479248,196608 +k1,15208:6434165,19336803:-26345472 +) +(1,15208:6434165,19336803:26345472,4282640,196608 +[1,15208:6630773,19336803:25952256,4086032,0 +(1,15199:6630773,15675210:25952256,424439,106246 +(1,15198:6630773,15675210:0,0,0 +g1,15198:6630773,15675210 +g1,15198:6630773,15675210 +g1,15198:6303093,15675210 +(1,15198:6303093,15675210:0,0,0 +) +g1,15198:6630773,15675210 +) +k1,15199:6630773,15675210:0 +h1,15199:10282267,15675210:0,0,0 +k1,15199:32583029,15675210:22300762 +g1,15199:32583029,15675210 +) +(1,15207:6630773,16491137:25952256,431045,106246 +(1,15201:6630773,16491137:0,0,0 +g1,15201:6630773,16491137 +g1,15201:6630773,16491137 +g1,15201:6303093,16491137 +(1,15201:6303093,16491137:0,0,0 +) +g1,15201:6630773,16491137 +) +g1,15207:7626635,16491137 +g1,15207:11278128,16491137 +g1,15207:12273990,16491137 +h1,15207:15925483,16491137:0,0,0 +k1,15207:32583029,16491137:16657546 +g1,15207:32583029,16491137 +) +(1,15207:6630773,17175992:25952256,407923,9908 +h1,15207:6630773,17175992:0,0,0 +g1,15207:7626635,17175992 +g1,15207:7958589,17175992 +g1,15207:8290543,17175992 +g1,15207:8622497,17175992 +g1,15207:8954451,17175992 +g1,15207:9286405,17175992 +g1,15207:9618359,17175992 +g1,15207:9950313,17175992 +g1,15207:10282267,17175992 +g1,15207:10614221,17175992 +g1,15207:10946175,17175992 +g1,15207:11278129,17175992 +g1,15207:11610083,17175992 +g1,15207:11942037,17175992 +g1,15207:12273991,17175992 +g1,15207:12605945,17175992 +g1,15207:12937899,17175992 +g1,15207:13269853,17175992 +g1,15207:13601807,17175992 +g1,15207:13933761,17175992 +g1,15207:14265715,17175992 +g1,15207:14597669,17175992 +g1,15207:14929623,17175992 +g1,15207:15261577,17175992 +g1,15207:15593531,17175992 +g1,15207:15925485,17175992 +g1,15207:16257439,17175992 +g1,15207:17585255,17175992 +g1,15207:17917209,17175992 +g1,15207:18249163,17175992 +g1,15207:18581117,17175992 +g1,15207:19908933,17175992 +g1,15207:20240887,17175992 +g1,15207:20572841,17175992 +g1,15207:20904795,17175992 +g1,15207:21236749,17175992 +g1,15207:22564565,17175992 +g1,15207:22896519,17175992 +g1,15207:23228473,17175992 +g1,15207:23560427,17175992 +g1,15207:23892381,17175992 +h1,15207:24888243,17175992:0,0,0 +k1,15207:32583029,17175992:7694786 +g1,15207:32583029,17175992 +) +(1,15207:6630773,17860847:25952256,424439,9908 +h1,15207:6630773,17860847:0,0,0 +g1,15207:7626635,17860847 +g1,15207:10614220,17860847 +g1,15207:13933759,17860847 +g1,15207:14265713,17860847 +g1,15207:14597667,17860847 +g1,15207:14929621,17860847 +g1,15207:15261575,17860847 +g1,15207:17585253,17860847 +g1,15207:19908931,17860847 +g1,15207:22564563,17860847 +h1,15207:24888241,17860847:0,0,0 +k1,15207:32583029,17860847:7694788 +g1,15207:32583029,17860847 +) +(1,15207:6630773,18545702:25952256,431045,106246 +h1,15207:6630773,18545702:0,0,0 +g1,15207:7626635,18545702 +g1,15207:11278128,18545702 +g1,15207:12273990,18545702 +g1,15207:15261575,18545702 +g1,15207:17585253,18545702 +g1,15207:19908931,18545702 +g1,15207:22564563,18545702 +h1,15207:24888241,18545702:0,0,0 +k1,15207:32583029,18545702:7694788 +g1,15207:32583029,18545702 +) +(1,15207:6630773,19230557:25952256,424439,106246 +h1,15207:6630773,19230557:0,0,0 +g1,15207:7626635,19230557 +g1,15207:11278128,19230557 +g1,15207:14929621,19230557 +g1,15207:15261575,19230557 +g1,15207:17585253,19230557 +g1,15207:19908931,19230557 +g1,15207:22564563,19230557 +h1,15207:24888241,19230557:0,0,0 +k1,15207:32583029,19230557:7694788 +g1,15207:32583029,19230557 +) +] +) +g1,15208:32583029,19336803 +g1,15208:6630773,19336803 +g1,15208:6630773,19336803 +g1,15208:32583029,19336803 +g1,15208:32583029,19336803 +) +h1,15208:6630773,19533411:0,0,0 +(1,15214:6630773,20398491:25952256,505283,126483 +h1,15213:6630773,20398491:983040,0,0 +k1,15213:10254658,20398491:242883 +(1,15213:10254658,20398491:0,452978,115847 +r1,15247:13074907,20398491:2820249,568825,115847 +k1,15213:10254658,20398491:-2820249 +) +(1,15213:10254658,20398491:2820249,452978,115847 +k1,15213:10254658,20398491:3277 +h1,15213:13071630,20398491:0,411205,112570 +) +k1,15213:13317790,20398491:242883 +k1,15213:16511104,20398491:242883 +k1,15213:17109847,20398491:242883 +k1,15213:18630026,20398491:242882 +k1,15213:20266860,20398491:242883 +k1,15213:21666453,20398491:242883 +k1,15213:24750977,20398491:242883 +k1,15213:28591131,20398491:242883 +k1,15213:30079154,20398491:242839 +k1,15213:31131407,20398491:242883 +k1,15213:32583029,20398491:0 +) +(1,15214:6630773,21263571:25952256,513147,134348 +g1,15213:8256065,21263571 +g1,15213:9826307,21263571 +g1,15213:12203953,21263571 +g1,15213:13350833,21263571 +g1,15213:14569147,21263571 +k1,15214:32583029,21263571:15143405 +g1,15214:32583029,21263571 +) +v1,15216:6630773,21948426:0,393216,0 +(1,15220:6630773,22282503:25952256,727293,196608 +g1,15220:6630773,22282503 +g1,15220:6630773,22282503 +g1,15220:6434165,22282503 +(1,15220:6434165,22282503:0,727293,196608 +r1,15247:32779637,22282503:26345472,923901,196608 +k1,15220:6434165,22282503:-26345472 +) +(1,15220:6434165,22282503:26345472,727293,196608 +[1,15220:6630773,22282503:25952256,530685,0 +(1,15218:6630773,22176257:25952256,424439,106246 +(1,15217:6630773,22176257:0,0,0 +g1,15217:6630773,22176257 +g1,15217:6630773,22176257 +g1,15217:6303093,22176257 +(1,15217:6303093,22176257:0,0,0 +) +g1,15217:6630773,22176257 +) +k1,15218:6630773,22176257:0 +h1,15218:9950313,22176257:0,0,0 +k1,15218:32583029,22176257:22632716 +g1,15218:32583029,22176257 +) +] +) +g1,15220:32583029,22282503 +g1,15220:6630773,22282503 +g1,15220:6630773,22282503 +g1,15220:32583029,22282503 +g1,15220:32583029,22282503 +) +h1,15220:6630773,22479111:0,0,0 +(1,15223:6630773,40711979:25952256,18167332,0 +k1,15223:10523651,40711979:3892878 +h1,15222:10523651,40711979:0,0,0 +(1,15222:10523651,40711979:18166500,18167332,0 +(1,15222:10523651,40711979:18167376,18167376,0 +(1,15222:10523651,40711979:18167376,18167376,0 +(1,15222:10523651,40711979:0,18167376,0 +(1,15222:10523651,40711979:0,28417720,0 +(1,15222:10523651,40711979:28417720,28417720,0 +) +k1,15222:10523651,40711979:-28417720 +) +) +g1,15222:28691027,40711979 +) +) +) +g1,15223:28690151,40711979 +k1,15223:32583029,40711979:3892878 +) +(1,15232:6630773,41577059:25952256,513147,134348 +h1,15231:6630773,41577059:983040,0,0 +k1,15231:10194858,41577059:183083 +(1,15231:10194858,41577059:0,452978,115847 +r1,15247:12311683,41577059:2116825,568825,115847 +k1,15231:10194858,41577059:-2116825 +) +(1,15231:10194858,41577059:2116825,452978,115847 +k1,15231:10194858,41577059:3277 +h1,15231:12308406,41577059:0,411205,112570 +) +k1,15231:12494765,41577059:183082 +k1,15231:15740345,41577059:183083 +k1,15231:16279287,41577059:183082 +k1,15231:17507014,41577059:183083 +k1,15231:18967393,41577059:183082 +k1,15231:19809768,41577059:183083 +k1,15231:22977360,41577059:183082 +k1,15231:27784008,41577059:183083 +k1,15231:28618518,41577059:183082 +k1,15231:29820686,41577059:183083 +k1,15231:32583029,41577059:0 +) +(1,15232:6630773,42442139:25952256,426639,126483 +k1,15232:32583028,42442139:21851012 +g1,15232:32583028,42442139 +) +v1,15234:6630773,43126994:0,393216,0 +(1,15238:6630773,43461071:25952256,727293,196608 +g1,15238:6630773,43461071 +g1,15238:6630773,43461071 +g1,15238:6434165,43461071 +(1,15238:6434165,43461071:0,727293,196608 +r1,15247:32779637,43461071:26345472,923901,196608 +k1,15238:6434165,43461071:-26345472 ) -k1,15243:62087500,51504789:25935872 -g1,15243:62087500,51504789 +(1,15238:6434165,43461071:26345472,727293,196608 +[1,15238:6630773,43461071:25952256,530685,0 +(1,15236:6630773,43354825:25952256,424439,106246 +(1,15235:6630773,43354825:0,0,0 +g1,15235:6630773,43354825 +g1,15235:6630773,43354825 +g1,15235:6303093,43354825 +(1,15235:6303093,43354825:0,0,0 ) -] -) -g1,15243:36675916,49800853 -(1,15243:36675916,49800853:1179648,16384,0 -r1,15258:37855564,49800853:1179648,16384,0 +g1,15235:6630773,43354825 ) -) -k1,15258:3078556,49800853:-34777008 +k1,15236:6630773,43354825:0 +h1,15236:9286405,43354825:0,0,0 +k1,15236:32583029,43354825:23296624 +g1,15236:32583029,43354825 ) ] -g1,15258:6630773,4812305 ) +g1,15238:32583029,43461071 +g1,15238:6630773,43461071 +g1,15238:6630773,43461071 +g1,15238:32583029,43461071 +g1,15238:32583029,43461071 ) +h1,15238:6630773,43657679:0,0,0 ] -[1,15258:6630773,45706769:25952256,40108032,0 -(1,15258:6630773,45706769:25952256,40108032,0 -(1,15258:6630773,45706769:0,0,0 -g1,15258:6630773,45706769 -) -[1,15258:6630773,45706769:25952256,40108032,0 -[1,15243:6630773,11663733:25952256,6064996,0 -(1,15243:6630773,6633157:25952256,1165492,28311 -h1,15243:6630773,6633157:0,0,0 -k1,15243:20096848,6633157:12486181 -k1,15243:32583029,6633157:12486181 +(1,15247:32583029,45706769:0,0,0 +g1,15247:32583029,45706769 ) -(1,15243:6630773,7333093:25952256,32768,229376 -(1,15243:6630773,7333093:0,32768,229376 -(1,15243:6630773,7333093:5505024,32768,229376 -r1,15258:12135797,7333093:5505024,262144,229376 ) -k1,15243:6630773,7333093:-5505024 -) -(1,15243:6630773,7333093:25952256,32768,0 -r1,15258:32583029,7333093:25952256,32768,0 -) -) -(1,15243:6630773,9128789:25952256,909509,241827 -h1,15243:6630773,9128789:0,0,0 -g1,15243:7798625,9128789 -g1,15243:14300845,9128789 -g1,15243:17421014,9128789 -k1,15243:27951142,9128789:4631888 -k1,15243:32583029,9128789:4631887 -) -(1,15243:6630773,9828725:25952256,32768,0 -(1,15243:6630773,9828725:5505024,32768,0 -r1,15258:12135797,9828725:5505024,32768,0 -) -k1,15243:22359413,9828725:10223616 -k1,15243:32583029,9828725:10223616 +] +(1,15247:6630773,47279633:25952256,0,0 +h1,15247:6630773,47279633:25952256,0,0 ) ] -(1,15245:6630773,14556498:25952256,131072,0 -r1,15258:32583029,14556498:25952256,131072,0 -g1,15245:32583029,14556498 -g1,15245:32583029,14556498 -) -(1,15247:6630773,15876399:25952256,513147,134348 -k1,15247:8596853,15876399:1966080 -k1,15246:12214495,15876399:238606 -k1,15246:15816408,15876399:238605 -k1,15246:16671052,15876399:238606 -k1,15246:18297711,15876399:238606 -k1,15246:19483967,15876399:238605 -k1,15246:22551107,15876399:238606 -k1,15246:23145573,15876399:238606 -k1,15246:24483872,15876399:238605 -k1,15246:25373906,15876399:238606 -k1,15246:25968372,15876399:238606 -k1,15246:29076143,15876399:238605 -k1,15246:29846246,15876399:238606 -k1,15246:32583029,15876399:1966080 -) -(1,15247:6630773,16717887:25952256,513147,134348 -k1,15247:8596853,16717887:1966080 -k1,15246:10057351,16717887:246116 -k1,15246:12436710,16717887:246162 -k1,15246:13954271,16717887:246163 -k1,15246:17315359,16717887:246162 -k1,15246:18093019,16717887:246163 -k1,15246:19623688,16717887:246163 -k1,15246:21084185,16717887:246115 -k1,15246:22431353,16717887:246163 -k1,15246:27629415,16717887:246162 -k1,15246:29256422,16717887:246163 -k1,15247:32583029,16717887:1966080 -) -(1,15247:6630773,17559375:25952256,513147,134348 -k1,15247:8596853,17559375:1966080 -k1,15246:12095619,17559375:207548 -k1,15246:14349201,17559375:207548 -k1,15246:14912609,17559375:207548 -k1,15246:15976713,17559375:207548 -k1,15246:16843554,17559375:207549 -k1,15246:19043396,17559375:207548 -k1,15246:21880904,17559375:207548 -k1,15246:22704490,17559375:207548 -k1,15246:24126412,17559375:207540 -k1,15246:25618466,17559375:207548 -k1,15246:26817574,17559375:207548 -k1,15246:28091393,17559375:207548 -k1,15246:28914979,17559375:207548 -k1,15246:32583029,17559375:1966080 -) -(1,15247:6630773,18400863:25952256,505283,134348 -g1,15247:8596853,18400863 -k1,15247:30616949,18400863:18673828 -g1,15247:32583029,18400863 -) -(1,15248:6630773,20028783:25952256,505283,95026 -k1,15248:25716823,20028783:19086050 -h1,15248:25716823,20028783:0,0,0 -g1,15248:28120028,20028783 -g1,15248:28769489,20028783 -g1,15248:30616949,20028783 -g1,15248:32583029,20028783 -) -(1,15249:6630773,20870271:25952256,485622,126483 -k1,15249:26098897,20870271:19468124 -h1,15248:26098897,20870271:0,0,0 -g1,15248:26657919,20870271 -g1,15248:29023112,20870271 -g1,15249:30616948,20870271 -g1,15249:32583028,20870271 -) -(1,15249:6630773,22104975:25952256,131072,0 -r1,15258:32583029,22104975:25952256,131072,0 -g1,15249:32583029,22104975 -g1,15249:34549109,22104975 -) -(1,15251:6630773,24912543:25952256,32768,229376 -(1,15251:6630773,24912543:0,32768,229376 -(1,15251:6630773,24912543:5505024,32768,229376 -r1,15258:12135797,24912543:5505024,262144,229376 -) -k1,15251:6630773,24912543:-5505024 -) -(1,15251:6630773,24912543:25952256,32768,0 -r1,15258:32583029,24912543:25952256,32768,0 -) -) -(1,15251:6630773,26516871:25952256,615776,151780 -(1,15251:6630773,26516871:1974731,582746,14155 -g1,15251:6630773,26516871 -g1,15251:8605504,26516871 -) -g1,15251:10904245,26516871 -g1,15251:11961996,26516871 -g1,15251:13695292,26516871 -k1,15251:32583029,26516871:15886712 -g1,15251:32583029,26516871 -) -(1,15254:6630773,27751575:25952256,513147,134348 -k1,15253:8347431,27751575:284041 -k1,15253:9046231,27751575:283957 -k1,15253:10521717,27751575:284041 -k1,15253:11824844,27751575:284042 -k1,15253:16663637,27751575:284041 -k1,15253:20020006,27751575:284041 -k1,15253:23214502,27751575:284042 -k1,15253:26443076,27751575:284041 -k1,15253:27488646,27751575:284042 -k1,15253:30245360,27751575:284041 -k1,15253:32583029,27751575:0 -) -(1,15254:6630773,28593063:25952256,513147,134348 -k1,15253:8577907,28593063:195357 -k1,15253:11799062,28593063:195358 -k1,15253:12942070,28593063:195357 -k1,15253:17373019,28593063:195357 -k1,15253:19131410,28593063:195357 -k1,15253:20523455,28593063:195358 -k1,15253:21133651,28593063:195353 -k1,15253:25110435,28593063:195357 -k1,15253:27976384,28593063:195357 -k1,15253:28527602,28593063:195358 -k1,15253:31648486,28593063:195357 -k1,15253:32583029,28593063:0 -) -(1,15254:6630773,29434551:25952256,513147,126483 -k1,15253:7499423,29434551:209358 -k1,15253:10734577,29434551:209357 -k1,15253:12135380,29434551:209358 -k1,15253:15421653,29434551:209358 -k1,15253:16915516,29434551:209357 -k1,15253:18806528,29434551:209358 -k1,15253:19782001,29434551:209357 -k1,15253:21010444,29434551:209358 -k1,15253:22940777,29434551:209358 -k1,15253:24539497,29434551:209357 -k1,15253:29004763,29434551:209358 -k1,15253:32583029,29434551:0 -) -(1,15254:6630773,30276039:25952256,513147,126483 -k1,15253:8643875,30276039:138772 -k1,15253:11808445,30276039:138773 -k1,15253:13422432,30276039:138772 -k1,15253:15457162,30276039:138773 -k1,15253:16787379,30276039:138772 -k1,15253:21507773,30276039:138772 -k1,15253:24579937,30276039:138773 -k1,15253:25443537,30276039:138772 -k1,15253:26198348,30276039:138773 -k1,15253:27318194,30276039:138772 -k1,15253:28883686,30276039:138773 -k1,15253:30402646,30276039:138772 -k1,15253:32583029,30276039:0 -) -(1,15254:6630773,31117527:25952256,513147,134348 -k1,15253:7538938,31117527:160399 -k1,15253:10712683,31117527:160400 -k1,15253:12915839,31117527:160399 -k1,15253:14768378,31117527:160399 -k1,15253:15588070,31117527:160400 -k1,15253:17257108,31117527:160399 -k1,15253:20855526,31117527:160399 -k1,15253:23071790,31117527:160400 -k1,15253:24251274,31117527:160399 -k1,15253:25504158,31117527:160399 -k1,15253:26323850,31117527:160400 -k1,15253:30201451,31117527:160399 -k1,15253:32583029,31117527:0 -) -(1,15254:6630773,31959015:25952256,505283,134348 -k1,15253:7498037,31959015:251226 -k1,15253:11478916,31959015:251225 -k1,15253:14814266,31959015:251226 -k1,15253:15693326,31959015:251225 -k1,15253:16963637,31959015:251226 -k1,15253:19620690,31959015:251226 -k1,15253:22289538,31959015:251225 -k1,15253:22753704,31959015:251174 -k1,15253:25674210,31959015:251225 -k1,15253:26944521,31959015:251226 -k1,15253:28478941,31959015:251225 -k1,15253:30814212,31959015:251226 -k1,15254:32583029,31959015:0 -) -(1,15254:6630773,32800503:25952256,505283,134348 -k1,15253:8780891,32800503:212874 -k1,15253:9755293,32800503:212874 -k1,15253:10987252,32800503:212874 -k1,15253:12801826,32800503:212874 -k1,15253:15514898,32800503:212873 -k1,15253:19457426,32800503:212874 -k1,15253:20085129,32800503:212860 -k1,15253:23370331,32800503:212874 -k1,15253:26493659,32800503:212874 -k1,15253:28873809,32800503:212874 -k1,15253:29699445,32800503:212874 -k1,15253:32583029,32800503:0 -) -(1,15254:6630773,33641991:25952256,513147,134348 -k1,15253:9333931,33641991:208858 -k1,15253:12815002,33641991:208858 -k1,15253:14180570,33641991:208858 -k1,15253:16434152,33641991:208859 -k1,15253:17255772,33641991:208858 -k1,15253:18483715,33641991:208858 -k1,15253:21265516,33641991:208858 -k1,15253:22133666,33641991:208858 -k1,15253:25022291,33641991:208858 -k1,15253:25847188,33641991:208859 -k1,15253:28398303,33641991:208858 -k1,15253:30175438,33641991:208858 -k1,15253:31714677,33641991:208858 -k1,15253:32583029,33641991:0 -) -(1,15254:6630773,34483479:25952256,505283,134348 -k1,15253:8022168,34483479:287113 -k1,15253:11901965,34483479:287113 -k1,15253:13578442,34483479:287114 -k1,15253:14481593,34483479:287113 -k1,15253:15357219,34483479:287113 -k1,15253:17518662,34483479:287113 -k1,15253:22378877,34483479:287113 -k1,15253:25927062,34483479:287114 -k1,15253:29124629,34483479:287113 -k1,15253:31563944,34483479:287113 -k1,15254:32583029,34483479:0 -) -(1,15254:6630773,35324967:25952256,513147,134348 -k1,15253:7278587,35324967:232971 -k1,15253:10353887,35324967:233004 -k1,15253:11653162,35324967:233004 -k1,15253:13261768,35324967:233005 -k1,15253:14256300,35324967:233004 -k1,15253:16676897,35324967:233005 -k1,15253:18193096,35324967:233004 -k1,15253:20981350,35324967:233005 -k1,15253:21865782,35324967:233004 -k1,15253:22556884,35324967:233005 -k1,15253:23862057,35324967:233004 -k1,15253:24856590,35324967:233005 -k1,15253:28606256,35324967:233004 -k1,15253:30122456,35324967:233005 -k1,15253:31923737,35324967:233004 -k1,15253:32583029,35324967:0 -) -(1,15254:6630773,36166455:25952256,513147,134348 -k1,15253:10966881,36166455:156877 -k1,15253:14609617,36166455:156876 -k1,15253:19046650,36166455:156877 -k1,15253:22276509,36166455:156876 -k1,15253:23716581,36166455:156877 -k1,15253:27706659,36166455:156877 -k1,15253:28811186,36166455:156876 -k1,15253:30357426,36166455:156877 -k1,15254:32583029,36166455:0 -) -(1,15254:6630773,37007943:25952256,513147,134348 -k1,15253:9239157,37007943:191416 -k1,15253:11205288,37007943:191416 -k1,15253:12009466,37007943:191416 -k1,15253:13219967,37007943:191416 -k1,15253:15755606,37007943:191416 -k1,15253:17611636,37007943:191416 -k1,15253:18462344,37007943:191416 -k1,15253:22785805,37007943:191416 -k1,15253:23636514,37007943:191417 -k1,15253:25261858,37007943:191416 -k1,15253:25868109,37007943:191408 -k1,15253:27125796,37007943:191416 -k1,15253:30092006,37007943:191416 -k1,15253:32583029,37007943:0 -) -(1,15254:6630773,37849431:25952256,513147,134348 -k1,15253:8343733,37849431:216773 -k1,15253:9661511,37849431:216773 -k1,15253:11388233,37849431:216772 -k1,15253:12624091,37849431:216773 -k1,15253:15426915,37849431:216773 -k1,15253:17875189,37849431:216773 -k1,15253:18751253,37849431:216772 -k1,15253:19987111,37849431:216773 -k1,15253:21402538,37849431:216773 -k1,15253:24179147,37849431:216773 -k1,15253:27306373,37849431:216772 -k1,15253:28139184,37849431:216773 -k1,15253:29375042,37849431:216773 -k1,15253:32583029,37849431:0 -) -(1,15254:6630773,38690919:25952256,513147,126483 -k1,15253:8281543,38690919:175555 -k1,15253:11867591,38690919:175554 -k1,15253:17275540,38690919:175555 -k1,15253:18845045,38690919:175554 -k1,15253:22069990,38690919:175555 -k1,15253:24851256,38690919:175555 -k1,15253:26414207,38690919:175554 -k1,15253:29988459,38690919:175555 -k1,15254:32583029,38690919:0 -) -(1,15254:6630773,39532407:25952256,513147,134348 -k1,15253:8832586,39532407:200999 -k1,15253:10230272,39532407:200999 -k1,15253:14563316,39532407:200999 -k1,15253:15423607,39532407:200999 -k1,15253:18832593,39532407:200999 -k1,15253:21944046,39532407:200999 -k1,15253:24120300,39532407:200999 -k1,15253:24972727,39532407:200999 -k1,15253:26648941,39532407:200999 -k1,15253:30698214,39532407:200999 -k1,15253:32583029,39532407:0 -) -(1,15254:6630773,40373895:25952256,513147,134348 -k1,15253:10700034,40373895:162660 -k1,15253:12512892,40373895:162661 -k1,15253:14117999,40373895:162660 -k1,15253:18194469,40373895:162660 -k1,15253:23058682,40373895:162660 -k1,15253:24602187,40373895:162661 -k1,15253:26434704,40373895:162660 -k1,15253:27794051,40373895:162660 -k1,15253:30045344,40373895:162661 -k1,15253:30867296,40373895:162660 -k1,15254:32583029,40373895:0 -) -(1,15254:6630773,41215383:25952256,513147,134348 -k1,15253:7886678,41215383:178493 -k1,15253:11575279,41215383:178494 -k1,15253:12854777,41215383:178493 -k1,15253:16443765,41215383:178494 -k1,15253:20697942,41215383:178493 -k1,15253:21489197,41215383:178493 -k1,15253:22686776,41215383:178494 -k1,15253:25438212,41215383:178493 -k1,15253:26275998,41215383:178494 -k1,15253:27849097,41215383:178493 -k1,15253:28686882,41215383:178493 -k1,15253:30131532,41215383:178494 -k1,15253:30522997,41215383:178473 -k1,15253:31516758,41215383:178493 -k1,15253:32583029,41215383:0 -) -(1,15254:6630773,42056871:25952256,513147,126483 -k1,15253:9492184,42056871:192130 -k1,15253:10300351,42056871:192129 -k1,15253:12353048,42056871:192130 -k1,15253:14241905,42056871:192130 -k1,15253:15717230,42056871:192130 -k1,15253:19571511,42056871:192129 -k1,15253:20835810,42056871:192130 -k1,15253:23355123,42056871:192130 -k1,15253:24922854,42056871:192130 -k1,15253:27147910,42056871:192129 -k1,15253:30100416,42056871:192130 -k1,15253:31931601,42056871:192130 -k1,15253:32583029,42056871:0 -) -(1,15254:6630773,42898359:25952256,513147,134348 -g1,15253:8263930,42898359 -g1,15253:8878002,42898359 -g1,15253:12924850,42898359 -g1,15253:14143164,42898359 -g1,15253:15944093,42898359 -g1,15253:19352620,42898359 -k1,15254:32583029,42898359:9540077 -g1,15254:32583029,42898359 -) -] -(1,15258:32583029,45706769:0,0,0 -g1,15258:32583029,45706769 -) -) -] -(1,15258:6630773,47279633:25952256,485622,11795 -(1,15258:6630773,47279633:25952256,485622,11795 -(1,15258:6630773,47279633:0,0,0 -v1,15258:6630773,47279633:0,0,0 -) -g1,15258:6830002,47279633 -k1,15258:31387652,47279633:24557650 -) -) -] -(1,15258:4262630,4025873:0,0,0 -[1,15258:-473656,4025873:0,0,0 -(1,15258:-473656,-710413:0,0,0 -(1,15258:-473656,-710413:0,0,0 -g1,15258:-473656,-710413 -) -g1,15258:-473656,-710413 +(1,15247:4262630,4025873:0,0,0 +[1,15247:-473656,4025873:0,0,0 +(1,15247:-473656,-710413:0,0,0 +(1,15247:-473656,-710413:0,0,0 +g1,15247:-473656,-710413 +) +g1,15247:-473656,-710413 ) ] ) ] -!16188 -}260 -!12 -{261 -[1,15265:4262630,47279633:28320399,43253760,0 -(1,15265:4262630,4025873:0,0,0 -[1,15265:-473656,4025873:0,0,0 -(1,15265:-473656,-710413:0,0,0 -(1,15265:-473656,-644877:0,0,0 -k1,15265:-473656,-644877:-65536 +!17419 +}243 +Input:2257:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2258:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2259:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2260:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2261:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!482 +{244 +[1,15325:4262630,47279633:28320399,43253760,0 +(1,15325:4262630,4025873:0,0,0 +[1,15325:-473656,4025873:0,0,0 +(1,15325:-473656,-710413:0,0,0 +(1,15325:-473656,-644877:0,0,0 +k1,15325:-473656,-644877:-65536 ) -(1,15265:-473656,4736287:0,0,0 -k1,15265:-473656,4736287:5209943 +(1,15325:-473656,4736287:0,0,0 +k1,15325:-473656,4736287:5209943 ) -g1,15265:-473656,-710413 +g1,15325:-473656,-710413 ) ] ) -[1,15265:6630773,47279633:25952256,43253760,0 -[1,15265:6630773,4812305:25952256,786432,0 -(1,15265:6630773,4812305:25952256,505283,134348 -(1,15265:6630773,4812305:25952256,505283,134348 -g1,15265:3078558,4812305 -[1,15265:3078558,4812305:0,0,0 -(1,15265:3078558,2439708:0,1703936,0 -k1,15265:1358238,2439708:-1720320 -(1,15243:1358238,2439708:1720320,1703936,0 -(1,15243:1358238,2439708:1179648,16384,0 -r1,15265:2537886,2439708:1179648,16384,0 +[1,15325:6630773,47279633:25952256,43253760,0 +[1,15325:6630773,4812305:25952256,786432,0 +(1,15325:6630773,4812305:25952256,505283,11795 +(1,15325:6630773,4812305:25952256,505283,11795 +g1,15325:3078558,4812305 +[1,15325:3078558,4812305:0,0,0 +(1,15325:3078558,2439708:0,1703936,0 +k1,15325:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,15325:2537886,2439708:1179648,16384,0 ) -g1,15243:3062174,2439708 -(1,15243:3062174,2439708:16384,1703936,0 -[1,15243:3062174,2439708:25952256,1703936,0 -(1,15243:3062174,1915420:25952256,1179648,0 -(1,15243:3062174,1915420:16384,1179648,0 -r1,15265:3078558,1915420:16384,1179648,0 +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,15325:3078558,1915420:16384,1179648,0 ) -k1,15243:29014430,1915420:25935872 -g1,15243:29014430,1915420 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] ) ) ) ] -[1,15265:3078558,4812305:0,0,0 -(1,15265:3078558,2439708:0,1703936,0 -g1,15265:29030814,2439708 -g1,15265:36135244,2439708 -(1,15243:36135244,2439708:1720320,1703936,0 -(1,15243:36135244,2439708:16384,1703936,0 -[1,15243:36135244,2439708:25952256,1703936,0 -(1,15243:36135244,1915420:25952256,1179648,0 -(1,15243:36135244,1915420:16384,1179648,0 -r1,15265:36151628,1915420:16384,1179648,0 +[1,15325:3078558,4812305:0,0,0 +(1,15325:3078558,2439708:0,1703936,0 +g1,15325:29030814,2439708 +g1,15325:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,15325:36151628,1915420:16384,1179648,0 ) -k1,15243:62087500,1915420:25935872 -g1,15243:62087500,1915420 +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] ) -g1,15243:36675916,2439708 -(1,15243:36675916,2439708:1179648,16384,0 -r1,15265:37855564,2439708:1179648,16384,0 +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,15325:37855564,2439708:1179648,16384,0 ) ) -k1,15265:3078556,2439708:-34777008 +k1,15325:3078556,2439708:-34777008 ) ] -[1,15265:3078558,4812305:0,0,0 -(1,15265:3078558,49800853:0,16384,2228224 -k1,15265:1358238,49800853:-1720320 -(1,15243:1358238,49800853:1720320,16384,2228224 -(1,15243:1358238,49800853:1179648,16384,0 -r1,15265:2537886,49800853:1179648,16384,0 +[1,15325:3078558,4812305:0,0,0 +(1,15325:3078558,49800853:0,16384,2228224 +k1,15325:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,15325:2537886,49800853:1179648,16384,0 ) -g1,15243:3062174,49800853 -(1,15243:3062174,52029077:16384,1703936,0 -[1,15243:3062174,52029077:25952256,1703936,0 -(1,15243:3062174,51504789:25952256,1179648,0 -(1,15243:3062174,51504789:16384,1179648,0 -r1,15265:3078558,51504789:16384,1179648,0 +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,15325:3078558,51504789:16384,1179648,0 ) -k1,15243:29014430,51504789:25935872 -g1,15243:29014430,51504789 +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 ) ] ) ) ) ] -[1,15265:3078558,4812305:0,0,0 -(1,15265:3078558,49800853:0,16384,2228224 -g1,15265:29030814,49800853 -g1,15265:36135244,49800853 -(1,15243:36135244,49800853:1720320,16384,2228224 -(1,15243:36135244,52029077:16384,1703936,0 -[1,15243:36135244,52029077:25952256,1703936,0 -(1,15243:36135244,51504789:25952256,1179648,0 -(1,15243:36135244,51504789:16384,1179648,0 -r1,15265:36151628,51504789:16384,1179648,0 +[1,15325:3078558,4812305:0,0,0 +(1,15325:3078558,49800853:0,16384,2228224 +g1,15325:29030814,49800853 +g1,15325:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,15325:36151628,51504789:16384,1179648,0 ) -k1,15243:62087500,51504789:25935872 -g1,15243:62087500,51504789 +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 ) ] ) -g1,15243:36675916,49800853 -(1,15243:36675916,49800853:1179648,16384,0 -r1,15265:37855564,49800853:1179648,16384,0 +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,15325:37855564,49800853:1179648,16384,0 ) ) -k1,15265:3078556,49800853:-34777008 +k1,15325:3078556,49800853:-34777008 ) -] -g1,15265:6630773,4812305 -k1,15265:23311652,4812305:15485502 -g1,15265:23960458,4812305 -g1,15265:27572802,4812305 -g1,15265:29306229,4812305 -) -) -] -[1,15265:6630773,45706769:25952256,40108032,0 -(1,15265:6630773,45706769:25952256,40108032,0 -(1,15265:6630773,45706769:0,0,0 -g1,15265:6630773,45706769 -) -[1,15265:6630773,45706769:25952256,40108032,0 -(1,15255:6630773,6254097:25952256,32768,229376 -(1,15255:6630773,6254097:0,32768,229376 -(1,15255:6630773,6254097:5505024,32768,229376 -r1,15265:12135797,6254097:5505024,262144,229376 -) -k1,15255:6630773,6254097:-5505024 -) -(1,15255:6630773,6254097:25952256,32768,0 -r1,15265:32583029,6254097:25952256,32768,0 -) -) -(1,15255:6630773,7858425:25952256,606339,14155 -(1,15255:6630773,7858425:1974731,582746,14155 -g1,15255:6630773,7858425 -g1,15255:8605504,7858425 -) -k1,15255:32583029,7858425:19020644 -g1,15255:32583029,7858425 -) -(1,15258:6630773,9093129:25952256,513147,134348 -k1,15257:7750545,9093129:359554 -k1,15257:10512650,9093129:359555 -k1,15257:13626682,9093129:359554 -k1,15257:16907831,9093129:359554 -k1,15257:18437858,9093129:359554 -k1,15257:20272628,9093129:359555 -k1,15257:22966574,9093129:359554 -k1,15257:25769310,9093129:359554 -k1,15257:28621198,9093129:359554 -k1,15257:30374704,9093129:359555 -k1,15257:32168186,9093129:359554 -k1,15258:32583029,9093129:0 -) -(1,15258:6630773,9934617:25952256,513147,134348 -k1,15257:9192247,9934617:154992 -k1,15257:12305535,9934617:154993 -k1,15257:15486324,9934617:154992 -k1,15257:16832762,9934617:154993 -k1,15257:20064669,9934617:154992 -k1,15257:21167312,9934617:154992 -k1,15257:23582642,9934617:154993 -k1,15257:24929079,9934617:154992 -k1,15257:29319664,9934617:154993 -k1,15257:31037690,9934617:154992 -k1,15257:32583029,9934617:0 -) -(1,15258:6630773,10776105:25952256,513147,134348 -k1,15257:7529544,10776105:239479 -k1,15257:9465751,10776105:239480 -k1,15257:10896675,10776105:239479 -k1,15257:12646104,10776105:239479 -k1,15257:15887133,10776105:239480 -k1,15257:18983326,10776105:239479 -k1,15257:19874233,10776105:239479 -k1,15257:22737775,10776105:239480 -k1,15257:25997808,10776105:239479 -k1,15257:27046657,10776105:239479 -k1,15257:29237799,10776105:239480 -k1,15257:31193666,10776105:239479 -k1,15257:32583029,10776105:0 -) -(1,15258:6630773,11617593:25952256,513147,126483 -k1,15257:8128966,11617593:233348 -k1,15257:9594392,11617593:233349 -k1,15257:12089387,11617593:233348 -k1,15257:14297540,11617593:233553 -k1,15257:15727575,11617593:233348 -k1,15257:16375733,11617593:233315 -k1,15257:21665839,11617593:233348 -k1,15257:23000192,11617593:233348 -k1,15257:24743491,11617593:233349 -k1,15257:28026885,11617593:233348 -k1,15257:29647631,11617593:233349 -k1,15257:30900064,11617593:233348 -k1,15257:32583029,11617593:0 -) -(1,15258:6630773,12459081:25952256,513147,134348 -k1,15257:10795149,12459081:284645 -k1,15257:11695831,12459081:284644 -k1,15257:16229830,12459081:284645 -k1,15257:17705920,12459081:284645 -k1,15257:22728817,12459081:284644 -k1,15257:25644733,12459081:284645 -k1,15257:26545416,12459081:284645 -k1,15257:30236621,12459081:284644 -k1,15257:31622271,12459081:284645 -k1,15258:32583029,12459081:0 -) -(1,15258:6630773,13300569:25952256,513147,134348 -k1,15257:8543443,13300569:217254 -k1,15257:11442429,13300569:217253 -k1,15257:14018324,13300569:217254 -k1,15257:17813187,13300569:217253 -k1,15257:20765258,13300569:217254 -k1,15257:21744039,13300569:217253 -k1,15257:22980378,13300569:217254 -k1,15257:25632949,13300569:217253 -k1,15257:27938835,13300569:217254 -k1,15257:28823244,13300569:217253 -k1,15257:29455322,13300569:217235 -k1,15257:30885647,13300569:217254 -k1,15258:32583029,13300569:0 -) -(1,15258:6630773,14142057:25952256,513147,134348 -g1,15257:7993921,14142057 -g1,15257:9117208,14142057 -g1,15257:10335522,14142057 -g1,15257:12236721,14142057 -g1,15257:14215908,14142057 -g1,15257:15434222,14142057 -g1,15257:16902228,14142057 -g1,15257:17760749,14142057 -g1,15257:19349341,14142057 -g1,15257:20813415,14142057 -g1,15257:22113649,14142057 -g1,15257:23598694,14142057 -k1,15258:32583029,14142057:5771105 -g1,15258:32583029,14142057 -) -(1,15261:6630773,14983545:25952256,513147,134348 -h1,15259:6630773,14983545:983040,0,0 -k1,15259:9583898,14983545:253042 -k1,15259:13566593,14983545:253041 -k1,15259:16730089,14983545:253042 -k1,15259:18458346,14983545:253042 -k1,15259:20656496,14983545:253041 -k1,15259:21522300,14983545:253042 -k1,15259:25047555,14983545:253042 -k1,15259:29376280,14983545:253041 -k1,15259:30390850,14983545:253042 -k1,15259:32583029,14983545:0 -) -(1,15261:6630773,15825033:25952256,513147,126483 -k1,15259:7698027,15825033:257884 -k1,15259:10718254,15825033:257884 -k1,15259:15256950,15825033:257884 -k1,15259:18150037,15825033:257884 -k1,15259:21308544,15825033:257884 -k1,15259:23432893,15825033:257884 -k1,15259:24882222,15825033:257884 -k1,15259:28163937,15825033:257884 -k1,15259:29864268,15825033:257884 -k1,15259:31635378,15825033:257884 -k1,15259:32583029,15825033:0 -) -(1,15261:6630773,16666521:25952256,513147,134348 -k1,15259:8288715,16666521:224014 -k1,15259:9101242,16666521:224014 -k1,15260:11860189,16666521:224014 -k1,15260:15594310,16666521:224014 -k1,15260:16349821,16666521:224014 -k1,15260:17592920,16666521:224014 -k1,15260:19151902,16666521:224014 -k1,15260:22037333,16666521:224014 -k1,15260:22920639,16666521:224014 -k1,15260:23915356,16666521:224014 -k1,15260:27526271,16666521:224014 -k1,15260:32583029,16666521:0 -) -(1,15261:6630773,17508009:25952256,513147,134348 -k1,15260:7447952,17508009:157887 -k1,15260:8995202,17508009:157887 -k1,15260:11500589,17508009:157887 -k1,15260:12849921,17508009:157887 -k1,15260:17263716,17508009:157887 -k1,15260:18706109,17508009:157887 -k1,15260:22294806,17508009:157887 -k1,15260:23471778,17508009:157887 -k1,15260:25496130,17508009:157887 -k1,15260:26313309,17508009:157887 -k1,15260:29906593,17508009:157887 -k1,15260:31012131,17508009:157887 -k1,15260:32583029,17508009:0 -) -(1,15261:6630773,18349497:25952256,505283,134348 -k1,15260:8281297,18349497:261161 -k1,15260:9807303,18349497:261161 -k1,15260:11803857,18349497:261161 -k1,15260:12420878,18349497:261161 -k1,15260:13965234,18349497:261161 -k1,15260:17416688,18349497:261161 -k1,15260:18869294,18349497:261161 -k1,15260:22065156,18349497:261160 -k1,15260:22682177,18349497:261161 -k1,15260:24226533,18349497:261161 -k1,15260:26745409,18349497:261161 -k1,15260:27960119,18349497:261161 -k1,15260:29990097,18349497:261161 -k1,15260:31298523,18349497:261161 -k1,15260:32583029,18349497:0 -) -(1,15261:6630773,19190985:25952256,513147,134348 -k1,15260:9459843,19190985:248918 -k1,15260:13218867,19190985:248917 -k1,15260:13999282,19190985:248918 -k1,15260:16102869,19190985:248918 -k1,15260:17161157,19190985:248918 -k1,15260:17765934,19190985:248917 -k1,15260:21416826,19190985:248918 -k1,15260:25428166,19190985:248918 -k1,15260:26359969,19190985:248918 -k1,15260:29811630,19190985:248917 -k1,15260:30719840,19190985:248918 -k1,15260:32583029,19190985:0 -) -(1,15261:6630773,20032473:25952256,513147,134348 -k1,15260:8202520,20032473:287241 -k1,15260:9021258,20032473:287241 -k1,15260:12070843,20032473:287242 -k1,15260:13925705,20032473:287241 -k1,15260:15497452,20032473:287241 -k1,15260:16400731,20032473:287241 -k1,15260:17707057,20032473:287241 -k1,15260:18409053,20032473:287153 -k1,15260:21712261,20032473:287241 -k1,15260:23196189,20032473:287241 -k1,15260:27433941,20032473:287242 -k1,15260:28337220,20032473:287241 -k1,15260:29827702,20032473:287241 -k1,15260:31482024,20032473:287241 -k1,15260:32583029,20032473:0 -) -(1,15261:6630773,20873961:25952256,513147,134348 -k1,15260:8336535,20873961:195812 -k1,15260:9551432,20873961:195812 -k1,15260:10839729,20873961:195812 -k1,15260:11694834,20873961:195813 -k1,15260:12246506,20873961:195812 -k1,15260:13655389,20873961:195812 -k1,15260:16502788,20873961:195812 -k1,15260:18956315,20873961:195812 -k1,15260:20343572,20873961:195812 -k1,15260:21300912,20873961:195812 -k1,15260:24752554,20873961:195813 -k1,15260:25599794,20873961:195812 -k1,15260:28223060,20873961:195812 -k1,15260:31821501,20873961:195812 -k1,15260:32583029,20873961:0 -) -(1,15261:6630773,21715449:25952256,513147,134348 -k1,15260:9873102,21715449:263062 -k1,15260:12463346,21715449:263061 -k1,15260:13385700,21715449:263062 -k1,15260:14410289,21715449:263061 -k1,15260:16356971,21715449:263062 -k1,15260:19881759,21715449:263061 -k1,15260:21163906,21715449:263062 -k1,15260:26380833,21715449:263061 -k1,15260:27303187,21715449:263062 -k1,15260:28585333,21715449:263061 -k1,15260:32583029,21715449:0 -) -(1,15261:6630773,22556937:25952256,513147,134348 -k1,15260:7541118,22556937:227460 -k1,15260:9157941,22556937:227460 -k1,15260:11665399,22556937:227460 -k1,15260:13286811,22556937:227461 -k1,15260:15838833,22556937:227460 -k1,15260:16717721,22556937:227460 -k1,15260:18011452,22556937:227460 -k1,15260:21884024,22556937:227460 -k1,15260:22794369,22556937:227460 -k1,15260:26409386,22556937:227461 -k1,15260:28199880,22556937:227460 -k1,15260:29808184,22556937:227460 -k1,15260:31773659,22556937:227460 -k1,15260:32583029,22556937:0 -) -(1,15261:6630773,23398425:25952256,513147,126483 -k1,15260:11002230,23398425:295773 -k1,15260:12399009,23398425:295774 -k1,15260:14438695,23398425:295773 -k1,15260:17227459,23398425:295774 -k1,15260:21598916,23398425:295773 -k1,15260:25574537,23398425:295774 -k1,15260:26486348,23398425:295773 -k1,15260:28216050,23398425:295774 -k1,15260:28926570,23398425:295677 -k1,15260:31107814,23398425:295773 -k1,15260:32583029,23398425:0 -) -(1,15261:6630773,24239913:25952256,513147,134348 -k1,15260:8293422,24239913:152699 -k1,15260:12673848,24239913:152698 -k1,15260:15879214,24239913:152699 -k1,15260:17721430,24239913:152698 -k1,15260:21685048,24239913:152699 -k1,15260:25236444,24239913:152699 -k1,15260:29597864,24239913:152698 -k1,15260:30698214,24239913:152699 -k1,15260:32583029,24239913:0 -) -(1,15261:6630773,25081401:25952256,505283,7863 -k1,15261:32583030,25081401:24282400 -g1,15261:32583030,25081401 -) -(1,15263:6630773,25922889:25952256,513147,126483 -h1,15262:6630773,25922889:983040,0,0 -k1,15262:10456110,25922889:237896 -k1,15262:12682367,25922889:237895 -k1,15262:17052308,25922889:237896 -k1,15262:17821701,25922889:237896 -k1,15262:19078681,25922889:237895 -k1,15262:22698234,25922889:237896 -k1,15262:24821600,25922889:237895 -k1,15262:25590993,25922889:237896 -k1,15262:26184749,25922889:237896 -k1,15262:29920956,25922889:237895 -k1,15262:31931601,25922889:237896 -k1,15262:32583029,25922889:0 -) -(1,15263:6630773,26764377:25952256,513147,126483 -k1,15262:9385355,26764377:158046 -k1,15262:10873781,26764377:158045 -k1,15262:12421190,26764377:158046 -k1,15262:15133829,26764377:158046 -k1,15262:18696469,26764377:158045 -k1,15262:19846075,26764377:158046 -k1,15262:23201623,26764377:158046 -k1,15262:23975706,26764377:158045 -k1,15262:24548554,26764377:158005 -k1,15262:26202787,26764377:158046 -k1,15262:27552278,26764377:158046 -k1,15262:30045371,26764377:158045 -k1,15262:30831252,26764377:158046 -k1,15262:32583029,26764377:0 -) -(1,15263:6630773,27605865:25952256,513147,134348 -k1,15262:8402255,27605865:203205 -k1,15262:9063557,27605865:203205 -k1,15262:9798260,27605865:203206 -k1,15262:11287281,27605865:203205 -k1,15262:11846346,27605865:203205 -k1,15262:13332746,27605865:203205 -k1,15262:17298373,27605865:203205 -k1,15262:18184464,27605865:203206 -k1,15262:21590413,27605865:203205 -k1,15262:22452910,27605865:203205 -k1,15262:24519304,27605865:203205 -k1,15262:26201657,27605865:203205 -k1,15262:28729425,27605865:203206 -k1,15262:29584058,27605865:203205 -k1,15262:30575661,27605865:203205 -k1,15263:32583029,27605865:0 -) -(1,15263:6630773,28447353:25952256,513147,134348 -k1,15262:10308875,28447353:242049 -k1,15262:11009021,28447353:242049 -k1,15262:12355352,28447353:242049 -k1,15262:13883217,28447353:242049 -k1,15262:14873032,28447353:242049 -k1,15262:16554907,28447353:242049 -k1,15262:17483118,28447353:242049 -k1,15262:18081028,28447353:242050 -k1,15262:19606272,28447353:242049 -k1,15262:22690617,28447353:242049 -k1,15262:24411158,28447353:242049 -k1,15262:26747738,28447353:242049 -k1,15262:27649079,28447353:242049 -k1,15262:28910213,28447353:242049 -k1,15262:29567062,28447353:242006 -k1,15262:32583029,28447353:0 -) -(1,15263:6630773,29288841:25952256,513147,134348 -k1,15262:7291527,29288841:190861 -k1,15262:8013885,29288841:190861 -k1,15262:9403400,29288841:190861 -k1,15262:11553786,29288841:190860 -k1,15262:12936092,29288841:190861 -k1,15262:15952210,29288841:190861 -k1,15262:17334516,29288841:190861 -k1,15262:18544462,29288841:190861 -k1,15262:22194313,29288841:190861 -k1,15262:23952794,29288841:190860 -k1,15262:25702101,29288841:190861 -k1,15262:27091616,29288841:190861 -k1,15262:29510046,29288841:190861 -k1,15262:32583029,29288841:0 -) -(1,15263:6630773,30130329:25952256,513147,134348 -k1,15262:8698652,30130329:245323 -k1,15262:10729831,30130329:245323 -k1,15262:12523770,30130329:245323 -k1,15262:14149281,30130329:245323 -k1,15262:17125489,30130329:245323 -k1,15262:19404395,30130329:245324 -k1,15262:22980258,30130329:245323 -k1,15262:26199605,30130329:245323 -k1,15262:27060966,30130329:245323 -k1,15262:28325374,30130329:245323 -k1,15262:30659329,30130329:245323 -k1,15262:31563944,30130329:245323 -k1,15262:32583029,30130329:0 -) -(1,15263:6630773,30971817:25952256,513147,134348 -k1,15262:9729416,30971817:188189 -k1,15262:13496526,30971817:188189 -k1,15262:14703800,30971817:188189 -k1,15262:18273646,30971817:188189 -k1,15262:19842679,30971817:188189 -k1,15262:20562365,30971817:188189 -k1,15262:21106415,30971817:188190 -k1,15262:22694453,30971817:188189 -k1,15262:25526364,30971817:188189 -k1,15262:26662204,30971817:188189 -k1,15262:27869478,30971817:188189 -k1,15262:30218389,30971817:188189 -k1,15262:31478747,30971817:188189 -k1,15262:32583029,30971817:0 -) -(1,15263:6630773,31813305:25952256,513147,134348 -k1,15262:7609413,31813305:230874 -k1,15262:10771712,31813305:230874 -k1,15262:11654014,31813305:230874 -k1,15262:15204287,31813305:230874 -k1,15262:17146306,31813305:230874 -k1,15262:18707561,31813305:230874 -k1,15262:20275368,31813305:230873 -k1,15262:21572513,31813305:230874 -k1,15262:22551153,31813305:230874 -k1,15262:24650458,31813305:230874 -k1,15262:25540624,31813305:230874 -k1,15262:26790583,31813305:230874 -k1,15262:29592434,31813305:230874 -k1,15262:31107814,31813305:230874 -k1,15262:32583029,31813305:0 -) -(1,15263:6630773,32654793:25952256,505283,134348 -k1,15262:8652210,32654793:253931 -k1,15262:10568789,32654793:253931 -k1,15262:13457923,32654793:253931 -k1,15262:15308311,32654793:253931 -k1,15262:16380131,32654793:253931 -k1,15262:16989922,32654793:253931 -k1,15262:18624697,32654793:253931 -k1,15262:19091565,32654793:253876 -k1,15262:21316819,32654793:253931 -k1,15262:23251093,32654793:253931 -k1,15262:26619295,32654793:253931 -k1,15262:29442237,32654793:253931 -k1,15262:30887613,32654793:253931 -k1,15263:32583029,32654793:0 -) -(1,15263:6630773,33496281:25952256,513147,126483 -k1,15262:8755833,33496281:208787 -k1,15262:13173343,33496281:208788 -k1,15262:14041422,33496281:208787 -k1,15262:17182946,33496281:208788 -k1,15262:19162516,33496281:208787 -k1,15262:21947524,33496281:208788 -k1,15262:23302536,33496281:208787 -k1,15262:24945252,33496281:208788 -k1,15262:25568873,33496281:208778 -k1,15262:28207735,33496281:208787 -k1,15262:29793434,33496281:208788 -k1,15262:31074390,33496281:208787 -k1,15262:32583029,33496281:0 -) -(1,15263:6630773,34337769:25952256,505283,134348 -k1,15262:8210125,34337769:190644 -k1,15262:12532814,34337769:190644 -k1,15262:14970688,34337769:190644 -k1,15262:17152316,34337769:190644 -k1,15262:18178543,34337769:190643 -k1,15262:19055349,34337769:190644 -k1,15262:22565392,34337769:190644 -k1,15262:27608322,34337769:190644 -k1,15262:28990411,34337769:190644 -k1,15262:31386342,34337769:190644 -k1,15262:32583029,34337769:0 -) -(1,15263:6630773,35179257:25952256,505283,134348 -k1,15262:10063429,35179257:224669 -k1,15262:10974261,35179257:224670 -k1,15262:11554790,35179257:224669 -k1,15262:14816397,35179257:224669 -k1,15262:15572564,35179257:224670 -k1,15262:18951481,35179257:224669 -k1,15262:21676350,35179257:224670 -k1,15262:24060430,35179257:224669 -k1,15262:25674462,35179257:224669 -k1,15262:28509431,35179257:224670 -k1,15262:30423618,35179257:224669 -k1,15262:32583029,35179257:0 -) -(1,15263:6630773,36020745:25952256,513147,126483 -k1,15262:8574876,36020745:232958 -k1,15262:9755486,36020745:232959 -k1,15262:11938795,36020745:232958 -k1,15262:13561117,36020745:232959 -k1,15262:16348668,36020745:232958 -k1,15262:17113124,36020745:232959 -k1,15262:18412353,36020745:232958 -k1,15262:19664397,36020745:232959 -k1,15262:21489225,36020745:232958 -k1,15262:23633869,36020745:232959 -k1,15262:24324924,36020745:232958 -k1,15262:25089380,36020745:232959 -k1,15262:26972535,36020745:232958 -k1,15262:29982910,36020745:232959 -k1,15262:30867296,36020745:232958 -k1,15262:32583029,36020745:0 -) -(1,15263:6630773,36862233:25952256,513147,134348 -k1,15262:7975269,36862233:252011 -k1,15262:8886572,36862233:252011 -k1,15262:10514184,36862233:252011 -k1,15262:13959109,36862233:252011 -k1,15262:17121574,36862233:252011 -k1,15262:18059747,36862233:252011 -k1,15262:19330842,36862233:252010 -k1,15262:21113119,36862233:252011 -k1,15262:23392159,36862233:252011 -k1,15262:24886733,36862233:252011 -k1,15262:26874137,36862233:252011 -k1,15262:28145233,36862233:252011 -k1,15262:29680439,36862233:252011 -k1,15262:32583029,36862233:0 -) -(1,15263:6630773,37703721:25952256,513147,134348 -g1,15262:8205603,37703721 -g1,15262:9352483,37703721 -g1,15262:11243852,37703721 -g1,15262:13437997,37703721 -g1,15262:14296518,37703721 -g1,15262:15514832,37703721 -g1,15262:17103424,37703721 -g1,15262:19857246,37703721 -g1,15262:21652932,37703721 -k1,15263:32583029,37703721:9406385 -g1,15263:32583029,37703721 -) -(1,15265:6630773,38545209:25952256,513147,126483 -h1,15264:6630773,38545209:983040,0,0 -k1,15264:9549860,38545209:152812 -k1,15264:10058532,38545209:152812 -k1,15264:14275231,38545209:152812 -k1,15264:17186453,38545209:152812 -k1,15264:17695125,38545209:152812 -k1,15264:19568257,38545209:152812 -k1,15264:20380361,38545209:152812 -k1,15264:23811284,38545209:152812 -k1,15264:27542362,38545209:152812 -k1,15264:29188084,38545209:152812 -k1,15264:29755693,38545209:152766 -k1,15264:31624893,38545209:152812 -k1,15265:32583029,38545209:0 -) -(1,15265:6630773,39386697:25952256,513147,134348 -k1,15264:7777088,39386697:156066 -k1,15264:9367082,39386697:156066 -k1,15264:9937947,39386697:156022 -k1,15264:10855541,39386697:156066 -k1,15264:12617239,39386697:156066 -k1,15264:13641657,39386697:156066 -k1,15264:15566540,39386697:156066 -k1,15264:17578585,39386697:156065 -k1,15264:19352080,39386697:156066 -k1,15264:20527231,39386697:156066 -k1,15264:23462024,39386697:156066 -k1,15264:25298433,39386697:156066 -k1,15264:26070536,39386697:156065 -k1,15264:26582462,39386697:156066 -k1,15264:30071689,39386697:156066 -k1,15264:32583029,39386697:0 -) -(1,15265:6630773,40228185:25952256,513147,126483 -k1,15264:7410450,40228185:166915 -k1,15264:9028987,40228185:166915 -k1,15264:10551187,40228185:166915 -k1,15264:11334140,40228185:166915 -k1,15264:12520140,40228185:166915 -k1,15264:16924613,40228185:166915 -k1,15264:17774414,40228185:166916 -k1,15264:19290715,40228185:166915 -k1,15264:22128877,40228185:166915 -k1,15264:24991288,40228185:166915 -k1,15264:26761869,40228185:166915 -k1,15264:28125471,40228185:166915 -k1,15264:29598519,40228185:166915 -k1,15264:32583029,40228185:0 -) -(1,15265:6630773,41069673:25952256,513147,126483 -k1,15264:7344460,41069673:182190 -k1,15264:10165785,41069673:182190 -k1,15264:11420144,41069673:182190 -k1,15264:13614289,41069673:182190 -k1,15264:16517534,41069673:182190 -k1,15264:19034772,41069673:182190 -k1,15264:22324679,41069673:182190 -k1,15264:22972830,41069673:182190 -k1,15264:24174105,41069673:182190 -k1,15264:26424611,41069673:182190 -k1,15264:28120027,41069673:182190 -k1,15264:29249868,41069673:182190 -k1,15264:32583029,41069673:0 -) -(1,15265:6630773,41911161:25952256,513147,126483 -k1,15264:9677124,41911161:204710 -k1,15264:10873395,41911161:204711 -k1,15264:13044185,41911161:204710 -k1,15264:15657999,41911161:204711 -k1,15264:17059396,41911161:204710 -k1,15264:19505438,41911161:204711 -k1,15264:22694658,41911161:204710 -k1,15264:25672853,41911161:204711 -k1,15264:27231537,41911161:204710 -k1,15264:29920063,41911161:204711 -k1,15264:31170728,41911161:204710 -k1,15264:32583029,41911161:0 -) -(1,15265:6630773,42752649:25952256,513147,134348 -k1,15264:7572853,42752649:255918 -k1,15264:9362969,42752649:255918 -k1,15264:10305049,42752649:255918 -k1,15264:12215751,42752649:255918 -k1,15264:13003166,42752649:255918 -k1,15264:14909281,42752649:255918 -k1,15264:16607646,42752649:255918 -k1,15264:18020274,42752649:255918 -k1,15264:20615827,42752649:255918 -k1,15264:22507524,42752649:255918 -k1,15264:25740087,42752649:255918 -k1,15264:26647433,42752649:255918 -k1,15264:28169507,42752649:255918 -k1,15264:29196128,42752649:255918 -k1,15264:32583029,42752649:0 -) -(1,15265:6630773,43594137:25952256,513147,134348 -k1,15264:8914757,43594137:199939 -k1,15264:10589912,43594137:199940 -k1,15264:13845139,43594137:199939 -k1,15264:15064163,43594137:199939 -k1,15264:17765612,43594137:199940 -k1,15264:18624843,43594137:199939 -k1,15264:20214145,43594137:199939 -k1,15264:22051175,43594137:199940 -k1,15264:23818735,43594137:199939 -k1,15264:25470952,43594137:199939 -k1,15264:27503934,43594137:199940 -k1,15264:31391584,43594137:199939 -k1,15264:32583029,43594137:0 -) -(1,15265:6630773,44435625:25952256,513147,134348 -k1,15264:9160829,44435625:168794 -k1,15264:11304406,44435625:168977 -k1,15264:15658329,44435625:168794 -k1,15264:17111630,44435625:168795 -k1,15264:17738521,44435625:168794 -k1,15264:19008320,44435625:168794 -k1,15264:20687065,44435625:168795 -k1,15264:23485819,44435625:168794 -k1,15264:24306042,44435625:168795 -k1,15264:26089643,44435625:168794 -k1,15264:29168892,44435625:168795 -k1,15264:30622192,44435625:168794 -k1,15264:32583029,44435625:0 -) -(1,15265:6630773,45277113:25952256,513147,126483 -k1,15264:7849044,45277113:199186 -k1,15264:11125144,45277113:199185 -k1,15264:13622678,45277113:199186 -k1,15264:14473291,45277113:199185 -k1,15264:16470130,45277113:199186 -k1,15264:17872557,45277113:199186 -k1,15264:19354937,45277113:199185 -k1,15264:21638168,45277113:199186 -k1,15264:22488781,45277113:199185 -k1,15264:23102810,45277113:199186 -k1,15264:23833493,45277113:199186 -k1,15264:24388538,45277113:199185 -k1,15264:27770808,45277113:199186 -k1,15264:28621421,45277113:199185 -k1,15264:29609005,45277113:199186 -k1,15264:32583029,45277113:0 -) -] -(1,15265:32583029,45706769:0,0,0 -g1,15265:32583029,45706769 -) -) -] -(1,15265:6630773,47279633:25952256,0,0 -h1,15265:6630773,47279633:25952256,0,0 -) -] -(1,15265:4262630,4025873:0,0,0 -[1,15265:-473656,4025873:0,0,0 -(1,15265:-473656,-710413:0,0,0 -(1,15265:-473656,-710413:0,0,0 -g1,15265:-473656,-710413 -) -g1,15265:-473656,-710413 -) -] -) -] -!25185 -}261 -Input:2230:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2231:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2232:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2233:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2234:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!482 -{262 -[1,15274:4262630,47279633:28320399,43253760,0 -(1,15274:4262630,4025873:0,0,0 -[1,15274:-473656,4025873:0,0,0 -(1,15274:-473656,-710413:0,0,0 -(1,15274:-473656,-644877:0,0,0 -k1,15274:-473656,-644877:-65536 +] +g1,15325:6630773,4812305 +g1,15325:6630773,4812305 +g1,15325:10653372,4812305 +g1,15325:13512052,4812305 +k1,15325:31387652,4812305:17875600 +) +) +] +[1,15325:6630773,45706769:25952256,40108032,0 +(1,15325:6630773,45706769:25952256,40108032,0 +(1,15325:6630773,45706769:0,0,0 +g1,15325:6630773,45706769 +) +[1,15325:6630773,45706769:25952256,40108032,0 +(1,15241:6630773,16109226:25952256,10510489,0 +k1,15241:12599879,16109226:5969106 +h1,15240:12599879,16109226:0,0,0 +(1,15240:12599879,16109226:14014044,10510489,0 +(1,15240:12599879,16109226:14014019,10510515,0 +(1,15240:12599879,16109226:14014019,10510515,0 +(1,15240:12599879,16109226:0,10510515,0 +(1,15240:12599879,16109226:0,14208860,0 +(1,15240:12599879,16109226:18945146,14208860,0 +) +k1,15240:12599879,16109226:-18945146 +) +) +g1,15240:26613898,16109226 +) +) +) +g1,15241:26613923,16109226 +k1,15241:32583029,16109226:5969106 +) +(1,15248:6630773,16974306:25952256,513147,134348 +h1,15247:6630773,16974306:983040,0,0 +k1,15247:10383823,16974306:238354 +k1,15247:12272374,16974306:238354 +k1,15247:15462470,16974306:238354 +k1,15247:17308422,16974306:238354 +k1,15247:18206069,16974306:238355 +k1,15247:19463508,16974306:238354 +k1,15247:22543503,16974306:238354 +k1,15247:26709430,16974306:238354 +k1,15247:28139229,16974306:238354 +k1,15247:29886222,16974306:238354 +k1,15247:32583029,16974306:0 +) +(1,15248:6630773,17839386:25952256,505283,134348 +k1,15247:7877016,17839386:141961 +k1,15247:8766743,17839386:141961 +k1,15247:11700538,17839386:141961 +k1,15247:13577892,17839386:141961 +k1,15247:16300005,17839386:141961 +k1,15247:18855656,17839386:141961 +k1,15247:22087640,17839386:141961 +k1,15247:22845639,17839386:141961 +k1,15247:25405223,17839386:141961 +h1,15247:25803682,17839386:0,0,0 +k1,15247:25945643,17839386:141961 +k1,15247:26896974,17839386:141961 +k1,15247:28537088,17839386:141961 +h1,15247:29732465,17839386:0,0,0 +k1,15247:30048096,17839386:141961 +k1,15247:32583029,17839386:0 +) +(1,15248:6630773,18704466:25952256,513147,134348 +k1,15247:9910748,18704466:187987 +k1,15247:12581240,18704466:187988 +k1,15247:15182917,18704466:187987 +k1,15247:16095733,18704466:187988 +k1,15247:16969882,18704466:187987 +k1,15247:17809297,18704466:187987 +k1,15247:19713018,18704466:187988 +k1,15247:20359102,18704466:187987 +k1,15247:21941695,18704466:187987 +k1,15247:22781111,18704466:187988 +k1,15247:24246395,18704466:187987 +k1,15247:27276024,18704466:187988 +k1,15247:31391584,18704466:187987 +k1,15247:32583029,18704466:0 +) +(1,15248:6630773,19569546:25952256,505283,134348 +g1,15247:8338641,19569546 +k1,15248:32583030,19569546:21373912 +g1,15248:32583030,19569546 +) +v1,15250:6630773,20434626:0,393216,0 +(1,15251:6630773,24301771:25952256,4260361,0 +g1,15251:6630773,24301771 +g1,15251:6237557,24301771 +r1,15325:6368629,24301771:131072,4260361,0 +g1,15251:6567858,24301771 +g1,15251:6764466,24301771 +[1,15251:6764466,24301771:25818563,4260361,0 +(1,15251:6764466,20707103:25818563,665693,196608 +(1,15250:6764466,20707103:0,665693,196608 +r1,15325:8010564,20707103:1246098,862301,196608 +k1,15250:6764466,20707103:-1246098 +) +(1,15250:6764466,20707103:1246098,665693,196608 +) +k1,15250:8265473,20707103:254909 +k1,15250:9991691,20707103:327680 +k1,15250:11288622,20707103:254909 +k1,15250:13793382,20707103:254909 +k1,15250:15239736,20707103:254909 +k1,15250:20097240,20707103:254910 +k1,15250:21915183,20707103:254909 +k1,15250:22525952,20707103:254909 +k1,15250:28804930,20707103:254909 +k1,15250:30164121,20707103:254909 +k1,15250:31166796,20707103:254909 +k1,15251:32583029,20707103:0 +) +(1,15251:6764466,21572183:25818563,513147,134348 +k1,15250:8259779,21572183:186559 +k1,15250:10141099,21572183:186559 +k1,15250:11612164,21572183:186559 +k1,15250:14452931,21572183:186559 +k1,15250:15170987,21572183:186559 +k1,15250:18662527,21572183:186559 +k1,15250:22884793,21572183:186559 +k1,15250:23722780,21572183:186559 +k1,15250:24928424,21572183:186559 +k1,15250:28520889,21572183:186559 +k1,15250:29366740,21572183:186559 +k1,15250:30572384,21572183:186559 +k1,15250:32583029,21572183:0 +) +(1,15251:6764466,22437263:25818563,513147,134348 +k1,15250:10239731,22437263:176838 +k1,15250:11370118,22437263:176838 +k1,15250:13159797,22437263:176838 +k1,15250:14022797,22437263:176838 +k1,15250:14970338,22437263:176838 +k1,15250:17707668,22437263:176838 +k1,15250:18535934,22437263:176838 +k1,15250:20729315,22437263:176838 +k1,15250:21925238,22437263:176838 +k1,15250:23957400,22437263:176838 +k1,15250:26688831,22437263:176838 +k1,15250:28601062,22437263:176838 +k1,15250:32583029,22437263:0 +) +(1,15251:6764466,23302343:25818563,513147,126483 +k1,15250:8982860,23302343:207749 +k1,15250:10138260,23302343:207749 +k1,15250:11365094,23302343:207749 +k1,15250:15248102,23302343:207749 +k1,15250:16115143,23302343:207749 +k1,15250:18239165,23302343:207749 +k1,15250:19638359,23302343:207749 +k1,15250:22009451,23302343:207749 +k1,15250:23638021,23302343:207749 +k1,15250:25629005,23302343:207749 +k1,15250:27329664,23302343:207749 +k1,15250:28556498,23302343:207749 +k1,15250:29856732,23302343:207749 +k1,15250:30723773,23302343:207749 +k1,15251:32583029,23302343:0 +) +(1,15251:6764466,24167423:25818563,513147,134348 +g1,15250:10484944,24167423 +g1,15250:12924849,24167423 +g1,15250:14143163,24167423 +g1,15250:17104079,24167423 +g1,15250:17962600,24167423 +g1,15250:19180914,24167423 +k1,15251:32583029,24167423:10520497 +g1,15251:32583029,24167423 +) +] +g1,15251:32583029,24301771 +) +h1,15251:6630773,24301771:0,0,0 +v1,15254:6630773,25166851:0,393216,0 +(1,15264:6630773,29105704:25952256,4332069,0 +g1,15264:6630773,29105704 +g1,15264:6237557,29105704 +r1,15325:6368629,29105704:131072,4332069,0 +g1,15264:6567858,29105704 +g1,15264:6764466,29105704 +[1,15264:6764466,29105704:25818563,4332069,0 +(1,15255:6764466,25475149:25818563,701514,196608 +(1,15254:6764466,25475149:0,701514,196608 +r1,15325:8863446,25475149:2098980,898122,196608 +k1,15254:6764466,25475149:-2098980 +) +(1,15254:6764466,25475149:2098980,701514,196608 +) +k1,15254:9071365,25475149:207919 +k1,15254:10797583,25475149:327680 +k1,15254:11823391,25475149:207919 +k1,15254:12978961,25475149:207919 +k1,15254:14888850,25475149:207919 +k1,15254:16809225,25475149:207919 +k1,15254:19508823,25475149:207919 +k1,15254:20735827,25475149:207919 +k1,15254:22903272,25475149:207919 +k1,15254:25889918,25475149:207919 +k1,15254:26859365,25475149:207919 +k1,15254:29762780,25475149:207919 +(1,15254:29762780,25475149:0,452978,115847 +r1,15325:32583029,25475149:2820249,568825,115847 +k1,15254:29762780,25475149:-2820249 +) +(1,15254:29762780,25475149:2820249,452978,115847 +k1,15254:29762780,25475149:3277 +h1,15254:32579752,25475149:0,411205,112570 +) +k1,15254:32583029,25475149:0 +) +(1,15255:6764466,26340229:25818563,513147,134348 +k1,15254:7507738,26340229:211775 +k1,15254:10072256,26340229:211775 +k1,15254:11677982,26340229:211775 +k1,15254:14561003,26340229:211774 +k1,15254:18700351,26340229:211775 +k1,15254:20103571,26340229:211775 +k1,15254:22782121,26340229:211775 +k1,15254:23645324,26340229:211775 +k1,15254:24212959,26340229:211775 +k1,15254:25979903,26340229:211775 +k1,15254:26850969,26340229:211774 +k1,15254:28081829,26340229:211775 +k1,15254:29947077,26340229:211775 +k1,15254:31896867,26340229:211775 +k1,15254:32583029,26340229:0 +) +(1,15255:6764466,27205309:25818563,513147,115847 +g1,15254:7982780,27205309 +g1,15254:11051175,27205309 +g1,15254:12316675,27205309 +g1,15254:14898793,27205309 +g1,15254:16665643,27205309 +g1,15254:18420041,27205309 +(1,15254:18420041,27205309:0,452978,115847 +r1,15325:20536866,27205309:2116825,568825,115847 +k1,15254:18420041,27205309:-2116825 +) +(1,15254:18420041,27205309:2116825,452978,115847 +k1,15254:18420041,27205309:3277 +h1,15254:20533589,27205309:0,411205,112570 +) +k1,15255:32583029,27205309:11872493 +g1,15255:32583029,27205309 +) +v1,15257:6764466,27890164:0,393216,0 +(1,15262:6764466,28909096:25818563,1412148,196608 +g1,15262:6764466,28909096 +g1,15262:6764466,28909096 +g1,15262:6567858,28909096 +(1,15262:6567858,28909096:0,1412148,196608 +r1,15325:32779637,28909096:26211779,1608756,196608 +k1,15262:6567857,28909096:-26211780 +) +(1,15262:6567858,28909096:26211779,1412148,196608 +[1,15262:6764466,28909096:25818563,1215540,0 +(1,15259:6764466,28117995:25818563,424439,106246 +(1,15258:6764466,28117995:0,0,0 +g1,15258:6764466,28117995 +g1,15258:6764466,28117995 +g1,15258:6436786,28117995 +(1,15258:6436786,28117995:0,0,0 +) +g1,15258:6764466,28117995 +) +k1,15259:6764466,28117995:0 +h1,15259:9752052,28117995:0,0,0 +k1,15259:32583028,28117995:22830976 +g1,15259:32583028,28117995 +) +(1,15260:6764466,28802850:25818563,424439,106246 +h1,15260:6764466,28802850:0,0,0 +g1,15260:9420098,28802850 +g1,15260:12739637,28802850 +g1,15260:13403545,28802850 +h1,15260:14067453,28802850:0,0,0 +k1,15260:32583029,28802850:18515576 +g1,15260:32583029,28802850 +) +] +) +g1,15262:32583029,28909096 +g1,15262:6764466,28909096 +g1,15262:6764466,28909096 +g1,15262:32583029,28909096 +g1,15262:32583029,28909096 +) +h1,15262:6764466,29105704:0,0,0 +] +g1,15264:32583029,29105704 +) +h1,15264:6630773,29105704:0,0,0 +(1,15268:6630773,31222522:25952256,555811,147783 +(1,15268:6630773,31222522:2899444,534184,12975 +g1,15268:6630773,31222522 +g1,15268:9530217,31222522 +) +g1,15268:16068744,31222522 +k1,15268:32583029,31222522:13973847 +g1,15268:32583029,31222522 +) +(1,15273:6630773,32480818:25952256,513147,134348 +k1,15271:7976083,32480818:148623 +k1,15271:9301733,32480818:148623 +k1,15271:10109648,32480818:148623 +k1,15271:15862255,32480818:148623 +k1,15271:18225996,32480818:148624 +k1,15271:20210887,32480818:148572 +k1,15271:20891008,32480818:148624 +k1,15271:21691059,32480818:148623 +k1,15271:24642657,32480818:148623 +k1,15271:25407318,32480818:148623 +k1,15271:26457666,32480818:148573 +k1,15271:28394111,32480818:148623 +k1,15271:29561819,32480818:148623 +k1,15271:32583029,32480818:0 +) +(1,15273:6630773,33345898:25952256,513147,126483 +k1,15271:9461273,33345898:195297 +k1,15271:11253027,33345898:195297 +k1,15271:12107616,33345898:195297 +k1,15271:16548335,33345898:195297 +k1,15271:17940319,33345898:195297 +k1,15271:20146261,33345898:195297 +k1,15271:21289210,33345898:195298 +k1,15271:22503592,33345898:195297 +k1,15271:25585095,33345898:195297 +k1,15271:29036221,33345898:195297 +k1,15271:30223078,33345898:195297 +k1,15271:31931601,33345898:195297 +k1,15271:32583029,33345898:0 +) +(1,15273:6630773,34210978:25952256,513147,134348 +k1,15271:9555696,34210978:137021 +k1,15271:10048576,34210978:137020 +k1,15271:12889612,34210978:137021 +k1,15271:13685925,34210978:137021 +k1,15271:16483707,34210978:137020 +k1,15271:18780139,34210978:137021 +k1,15271:20513617,34210978:137021 +k1,15271:21309930,34210978:137021 +k1,15271:25692372,34210978:137020 +k1,15271:27026080,34210978:137021 +k1,15271:29241248,34210978:137021 +k1,15271:30037560,34210978:137020 +k1,15271:31193666,34210978:137021 +k1,15271:32583029,34210978:0 +) +(1,15273:6630773,35076058:25952256,513147,11795 +k1,15271:7999772,35076058:236537 +k1,15271:11144798,35076058:236538 +k1,15271:12929951,35076058:236537 +k1,15271:15827250,35076058:236537 +k1,15271:18111133,35076058:236538 +k1,15271:18879167,35076058:236537 +k1,15271:20717404,35076058:236537 +k1,15271:24829741,35076058:236538 +k1,15272:26108300,35076058:236537 +k1,15272:27766931,35076058:236500 +k1,15272:28871820,35076058:236537 +k1,15272:30596681,35076058:236538 +k1,15272:32227169,35076058:236537 +k1,15272:32583029,35076058:0 +) +(1,15273:6630773,35941138:25952256,513147,134348 +k1,15272:8888816,35941138:170721 +k1,15272:9718829,35941138:170721 +k1,15272:12880614,35941138:170722 +k1,15272:15210746,35941138:170721 +k1,15272:19626889,35941138:170721 +k1,15272:20751159,35941138:170721 +k1,15272:22054343,35941138:170722 +k1,15272:23491220,35941138:170721 +k1,15272:24609592,35941138:170721 +k1,15272:25799398,35941138:170721 +k1,15272:28805207,35941138:170722 +k1,15272:31966991,35941138:170721 +k1,15272:32583029,35941138:0 +) +(1,15273:6630773,36806218:25952256,513147,134348 +g1,15272:10213626,36806218 +g1,15272:13048058,36806218 +g1,15272:16752152,36806218 +g1,15272:19838242,36806218 +g1,15272:20653509,36806218 +g1,15272:23089482,36806218 +g1,15272:24856332,36806218 +g1,15272:26444924,36806218 +g1,15272:27578696,36806218 +(1,15272:27578696,36806218:0,452978,115847 +r1,15325:30398945,36806218:2820249,568825,115847 +k1,15272:27578696,36806218:-2820249 +) +(1,15272:27578696,36806218:2820249,452978,115847 +k1,15272:27578696,36806218:3277 +h1,15272:30395668,36806218:0,411205,112570 +) +k1,15273:32583029,36806218:2010414 +g1,15273:32583029,36806218 +) +v1,15275:6630773,37491073:0,393216,0 +(1,15279:6630773,37798726:25952256,700869,196608 +g1,15279:6630773,37798726 +g1,15279:6630773,37798726 +g1,15279:6434165,37798726 +(1,15279:6434165,37798726:0,700869,196608 +r1,15325:32779637,37798726:26345472,897477,196608 +k1,15279:6434165,37798726:-26345472 +) +(1,15279:6434165,37798726:26345472,700869,196608 +[1,15279:6630773,37798726:25952256,504261,0 +(1,15277:6630773,37718904:25952256,424439,79822 +(1,15276:6630773,37718904:0,0,0 +g1,15276:6630773,37718904 +g1,15276:6630773,37718904 +g1,15276:6303093,37718904 +(1,15276:6303093,37718904:0,0,0 +) +g1,15276:6630773,37718904 +) +g1,15277:7958589,37718904 +g1,15277:8954451,37718904 +k1,15277:8954451,37718904:0 +h1,15277:14929621,37718904:0,0,0 +k1,15277:32583029,37718904:17653408 +g1,15277:32583029,37718904 +) +] +) +g1,15279:32583029,37798726 +g1,15279:6630773,37798726 +g1,15279:6630773,37798726 +g1,15279:32583029,37798726 +g1,15279:32583029,37798726 +) +h1,15279:6630773,37995334:0,0,0 +(1,15283:6630773,38860414:25952256,513147,134348 +h1,15282:6630773,38860414:983040,0,0 +k1,15282:8777363,38860414:210001 +k1,15282:10091646,38860414:210001 +k1,15282:11326629,38860414:210000 +k1,15282:12821136,38860414:210001 +k1,15282:14050222,38860414:210001 +k1,15282:17038950,38860414:210001 +k1,15282:19208476,38860414:210000 +(1,15282:19208476,38860414:0,452978,115847 +r1,15325:20270165,38860414:1061689,568825,115847 +k1,15282:19208476,38860414:-1061689 +) +(1,15282:19208476,38860414:1061689,452978,115847 +k1,15282:19208476,38860414:3277 +h1,15282:20266888,38860414:0,411205,112570 +) +k1,15282:20480166,38860414:210001 +k1,15282:21221664,38860414:210001 +k1,15282:21787525,38860414:210001 +(1,15282:21787525,38860414:0,452978,115847 +r1,15325:23904350,38860414:2116825,568825,115847 +k1,15282:21787525,38860414:-2116825 +) +(1,15282:21787525,38860414:2116825,452978,115847 +k1,15282:21787525,38860414:3277 +h1,15282:23901073,38860414:0,411205,112570 +) +k1,15282:24288020,38860414:210000 +k1,15282:25891972,38860414:210001 +k1,15282:28170289,38860414:210001 +k1,15282:29327941,38860414:210001 +k1,15282:30694651,38860414:210000 +k1,15282:31563944,38860414:210001 +k1,15282:32583029,38860414:0 +) +(1,15283:6630773,39725494:25952256,505283,7863 +k1,15283:32583030,39725494:22103328 +g1,15283:32583030,39725494 +) +v1,15285:6630773,40410349:0,393216,0 +(1,15325:6630773,43901888:25952256,3884755,196608 +g1,15325:6630773,43901888 +g1,15325:6630773,43901888 +g1,15325:6434165,43901888 +(1,15325:6434165,43901888:0,3884755,196608 +r1,15325:32779637,43901888:26345472,4081363,196608 +k1,15325:6434165,43901888:-26345472 +) +(1,15325:6434165,43901888:26345472,3884755,196608 +[1,15325:6630773,43901888:25952256,3688147,0 +(1,15287:6630773,40638180:25952256,424439,79822 +(1,15286:6630773,40638180:0,0,0 +g1,15286:6630773,40638180 +g1,15286:6630773,40638180 +g1,15286:6303093,40638180 +(1,15286:6303093,40638180:0,0,0 +) +g1,15286:6630773,40638180 +) +k1,15287:6630773,40638180:0 +h1,15287:9950313,40638180:0,0,0 +k1,15287:32583029,40638180:22632716 +g1,15287:32583029,40638180 +) +(1,15291:6630773,41454107:25952256,424439,106246 +(1,15289:6630773,41454107:0,0,0 +g1,15289:6630773,41454107 +g1,15289:6630773,41454107 +g1,15289:6303093,41454107 +(1,15289:6303093,41454107:0,0,0 +) +g1,15289:6630773,41454107 +) +g1,15291:7626635,41454107 +g1,15291:8954451,41454107 +g1,15291:11942036,41454107 +h1,15291:14265714,41454107:0,0,0 +k1,15291:32583030,41454107:18317316 +g1,15291:32583030,41454107 +) +(1,15293:6630773,42270034:25952256,424439,79822 +(1,15292:6630773,42270034:0,0,0 +g1,15292:6630773,42270034 +g1,15292:6630773,42270034 +g1,15292:6303093,42270034 +(1,15292:6303093,42270034:0,0,0 +) +g1,15292:6630773,42270034 +) +k1,15293:6630773,42270034:0 +h1,15293:9286405,42270034:0,0,0 +k1,15293:32583029,42270034:23296624 +g1,15293:32583029,42270034 +) +(1,15297:6630773,43085961:25952256,424439,79822 +(1,15295:6630773,43085961:0,0,0 +g1,15295:6630773,43085961 +g1,15295:6630773,43085961 +g1,15295:6303093,43085961 +(1,15295:6303093,43085961:0,0,0 +) +g1,15295:6630773,43085961 +) +g1,15297:7626635,43085961 +g1,15297:8954451,43085961 +g1,15297:9950313,43085961 +g1,15297:10282267,43085961 +h1,15297:10614221,43085961:0,0,0 +k1,15297:32583029,43085961:21968808 +g1,15297:32583029,43085961 ) -(1,15274:-473656,4736287:0,0,0 -k1,15274:-473656,4736287:5209943 +(1,15299:6630773,43901888:25952256,424439,79822 +(1,15298:6630773,43901888:0,0,0 +g1,15298:6630773,43901888 +g1,15298:6630773,43901888 +g1,15298:6303093,43901888 +(1,15298:6303093,43901888:0,0,0 ) -g1,15274:-473656,-710413 +g1,15298:6630773,43901888 +) +k1,15299:6630773,43901888:0 +h1,15299:10946174,43901888:0,0,0 +k1,15299:32583030,43901888:21636856 +g1,15299:32583030,43901888 ) ] ) -[1,15274:6630773,47279633:25952256,43253760,0 -[1,15274:6630773,4812305:25952256,786432,0 -(1,15274:6630773,4812305:25952256,505283,7863 -(1,15274:6630773,4812305:25952256,505283,7863 -g1,15274:3078558,4812305 -[1,15274:3078558,4812305:0,0,0 -(1,15274:3078558,2439708:0,1703936,0 -k1,15274:1358238,2439708:-1720320 -(1,15243:1358238,2439708:1720320,1703936,0 -(1,15243:1358238,2439708:1179648,16384,0 -r1,15274:2537886,2439708:1179648,16384,0 +g1,15325:32583029,43901888 +g1,15325:6630773,43901888 +g1,15325:6630773,43901888 +g1,15325:32583029,43901888 +g1,15325:32583029,43901888 +) +] +(1,15325:32583029,45706769:0,0,0 +g1,15325:32583029,45706769 ) -g1,15243:3062174,2439708 -(1,15243:3062174,2439708:16384,1703936,0 -[1,15243:3062174,2439708:25952256,1703936,0 -(1,15243:3062174,1915420:25952256,1179648,0 -(1,15243:3062174,1915420:16384,1179648,0 -r1,15274:3078558,1915420:16384,1179648,0 ) -k1,15243:29014430,1915420:25935872 -g1,15243:29014430,1915420 +] +(1,15325:6630773,47279633:25952256,0,0 +h1,15325:6630773,47279633:25952256,0,0 ) ] +(1,15325:4262630,4025873:0,0,0 +[1,15325:-473656,4025873:0,0,0 +(1,15325:-473656,-710413:0,0,0 +(1,15325:-473656,-710413:0,0,0 +g1,15325:-473656,-710413 ) +g1,15325:-473656,-710413 ) +] ) ] -[1,15274:3078558,4812305:0,0,0 -(1,15274:3078558,2439708:0,1703936,0 -g1,15274:29030814,2439708 -g1,15274:36135244,2439708 -(1,15243:36135244,2439708:1720320,1703936,0 -(1,15243:36135244,2439708:16384,1703936,0 -[1,15243:36135244,2439708:25952256,1703936,0 -(1,15243:36135244,1915420:25952256,1179648,0 -(1,15243:36135244,1915420:16384,1179648,0 -r1,15274:36151628,1915420:16384,1179648,0 +!20047 +}244 +Input:2262:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2263:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2264:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2265:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!388 +{245 +[1,15352:4262630,47279633:28320399,43253760,0 +(1,15352:4262630,4025873:0,0,0 +[1,15352:-473656,4025873:0,0,0 +(1,15352:-473656,-710413:0,0,0 +(1,15352:-473656,-644877:0,0,0 +k1,15352:-473656,-644877:-65536 ) -k1,15243:62087500,1915420:25935872 -g1,15243:62087500,1915420 +(1,15352:-473656,4736287:0,0,0 +k1,15352:-473656,4736287:5209943 +) +g1,15352:-473656,-710413 ) ] ) -g1,15243:36675916,2439708 -(1,15243:36675916,2439708:1179648,16384,0 -r1,15274:37855564,2439708:1179648,16384,0 +[1,15352:6630773,47279633:25952256,43253760,0 +[1,15352:6630773,4812305:25952256,786432,0 +(1,15352:6630773,4812305:25952256,513147,126483 +(1,15352:6630773,4812305:25952256,513147,126483 +g1,15352:3078558,4812305 +[1,15352:3078558,4812305:0,0,0 +(1,15352:3078558,2439708:0,1703936,0 +k1,15352:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,15352:2537886,2439708:1179648,16384,0 ) +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,15352:3078558,1915420:16384,1179648,0 ) -k1,15274:3078556,2439708:-34777008 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] -[1,15274:3078558,4812305:0,0,0 -(1,15274:3078558,49800853:0,16384,2228224 -k1,15274:1358238,49800853:-1720320 -(1,15243:1358238,49800853:1720320,16384,2228224 -(1,15243:1358238,49800853:1179648,16384,0 -r1,15274:2537886,49800853:1179648,16384,0 ) -g1,15243:3062174,49800853 -(1,15243:3062174,52029077:16384,1703936,0 -[1,15243:3062174,52029077:25952256,1703936,0 -(1,15243:3062174,51504789:25952256,1179648,0 -(1,15243:3062174,51504789:16384,1179648,0 -r1,15274:3078558,51504789:16384,1179648,0 ) -k1,15243:29014430,51504789:25935872 -g1,15243:29014430,51504789 ) ] +[1,15352:3078558,4812305:0,0,0 +(1,15352:3078558,2439708:0,1703936,0 +g1,15352:29030814,2439708 +g1,15352:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,15352:36151628,1915420:16384,1179648,0 ) -) -) -] -[1,15274:3078558,4812305:0,0,0 -(1,15274:3078558,49800853:0,16384,2228224 -g1,15274:29030814,49800853 -g1,15274:36135244,49800853 -(1,15243:36135244,49800853:1720320,16384,2228224 -(1,15243:36135244,52029077:16384,1703936,0 -[1,15243:36135244,52029077:25952256,1703936,0 -(1,15243:36135244,51504789:25952256,1179648,0 -(1,15243:36135244,51504789:16384,1179648,0 -r1,15274:36151628,51504789:16384,1179648,0 -) -k1,15243:62087500,51504789:25935872 -g1,15243:62087500,51504789 -) -] -) -g1,15243:36675916,49800853 -(1,15243:36675916,49800853:1179648,16384,0 -r1,15274:37855564,49800853:1179648,16384,0 -) -) -k1,15274:3078556,49800853:-34777008 -) -] -g1,15274:6630773,4812305 -g1,15274:6630773,4812305 -g1,15274:10697281,4812305 -k1,15274:31387653,4812305:20690372 -) -) -] -[1,15274:6630773,45706769:25952256,40108032,0 -(1,15274:6630773,45706769:25952256,40108032,0 -(1,15274:6630773,45706769:0,0,0 -g1,15274:6630773,45706769 -) -[1,15274:6630773,45706769:25952256,40108032,0 -(1,15265:6630773,6254097:25952256,513147,134348 -k1,15264:8042485,6254097:220267 -k1,15264:12325328,6254097:220266 -k1,15264:13895637,6254097:220267 -k1,15264:17200027,6254097:220266 -k1,15264:20365481,6254097:220267 -k1,15264:21777192,6254097:220266 -k1,15264:24333816,6254097:220267 -k1,15264:26514919,6254097:220266 -k1,15264:29812101,6254097:220267 -k1,15264:30980018,6254097:220266 -k1,15265:32583029,6254097:0 -) -(1,15265:6630773,7095585:25952256,513147,134348 -k1,15264:8677157,7095585:191715 -k1,15264:11126587,7095585:191715 -k1,15264:11946137,7095585:191715 -k1,15264:13490515,7095585:191715 -k1,15264:15276066,7095585:191715 -k1,15264:15823641,7095585:191715 -k1,15264:17405375,7095585:191715 -k1,15264:20343704,7095585:191715 -k1,15264:21742592,7095585:191715 -k1,15264:23899732,7095585:191715 -k1,15264:24742875,7095585:191715 -k1,15264:25953675,7095585:191715 -k1,15264:26560226,7095585:191708 -k1,15264:29594237,7095585:191715 -k1,15264:31391584,7095585:191715 -k1,15264:32583029,7095585:0 -) -(1,15265:6630773,7937073:25952256,513147,126483 -g1,15264:8480199,7937073 -g1,15264:11234021,7937073 -g1,15264:12221648,7937073 -g1,15264:15026588,7937073 -k1,15265:32583029,7937073:14333380 -g1,15265:32583029,7937073 -) -(1,15267:6630773,8778561:25952256,513147,134348 -h1,15266:6630773,8778561:983040,0,0 -k1,15266:8413176,8778561:171528 -k1,15266:10367939,8778561:171528 -k1,15266:11198759,8778561:171528 -k1,15266:12351360,8778561:171527 -k1,15266:14119345,8778561:171528 -k1,15266:14503838,8778561:171501 -k1,15266:18102899,8778561:171528 -k1,15266:23010058,8778561:171527 -k1,15266:24373031,8778561:171528 -k1,15266:27742061,8778561:171528 -k1,15266:31149101,8778561:171528 -k1,15267:32583029,8778561:0 -) -(1,15267:6630773,9620049:25952256,513147,134348 -k1,15266:7287702,9620049:242086 -k1,15266:8917229,9620049:242130 -k1,15266:12231687,9620049:242130 -k1,15266:15557940,9620049:242129 -k1,15266:17871008,9620049:242130 -k1,15266:19060788,9620049:242129 -k1,15266:22001035,9620049:242130 -k1,15266:25281413,9620049:242129 -k1,15266:28448415,9620049:242130 -k1,15266:29732566,9620049:242129 -k1,15266:31092740,9620049:242130 -k1,15266:32583029,9620049:0 -) -(1,15267:6630773,10461537:25952256,505283,126483 -k1,15266:8057167,10461537:234949 -k1,15266:10216909,10461537:234950 -k1,15266:11134743,10461537:234949 -k1,15266:16261956,10461537:234950 -k1,15266:17886268,10461537:234949 -k1,15266:20821957,10461537:234950 -k1,15266:21269863,10461537:234914 -k1,15266:22944638,10461537:234949 -k1,15266:23831016,10461537:234950 -k1,15266:25158450,10461537:234949 -k1,15266:26412485,10461537:234950 -k1,15266:29648327,10461537:234949 -k1,15266:32583029,10461537:0 -) -(1,15267:6630773,11303025:25952256,513147,134348 -k1,15266:8308036,11303025:283312 -k1,15266:11077129,11303025:283312 -k1,15266:14767002,11303025:283312 -k1,15266:16241759,11303025:283312 -k1,15266:18217211,11303025:283312 -k1,15266:23155544,11303025:283311 -k1,15266:24098148,11303025:283312 -k1,15266:25930076,11303025:283312 -k1,15266:27204948,11303025:283312 -k1,15266:28507345,11303025:283312 -k1,15266:32583029,11303025:0 -) -(1,15267:6630773,12144513:25952256,513147,126483 -k1,15266:10527219,12144513:216599 -k1,15266:11359856,12144513:216599 -k1,15266:11991280,12144513:216581 -k1,15266:13877736,12144513:216599 -k1,15266:14307309,12144513:216581 -k1,15266:15999123,12144513:216599 -k1,15266:18061871,12144513:216599 -k1,15266:20188189,12144513:216599 -k1,15266:20862885,12144513:216599 -k1,15266:24644643,12144513:216599 -k1,15266:25880326,12144513:216598 -k1,15266:27869674,12144513:216599 -k1,15266:30384621,12144513:216599 -k1,15266:31548871,12144513:216599 -k1,15267:32583029,12144513:0 -) -(1,15267:6630773,12986001:25952256,513147,134348 -k1,15266:9135952,12986001:276300 -k1,15266:13487936,12986001:276300 -k1,15266:14525763,12986001:276299 -k1,15266:16537456,12986001:276300 -k1,15266:19886084,12986001:276300 -k1,15266:23246508,12986001:276300 -k1,15266:24719495,12986001:276300 -k1,15266:27193216,12986001:276299 -k1,15266:28120944,12986001:276300 -k1,15266:30169993,12986001:276300 -k1,15266:32583029,12986001:0 -) -(1,15267:6630773,13827489:25952256,513147,134348 -g1,15266:7962464,13827489 -g1,15266:8909459,13827489 -g1,15266:11871031,13827489 -g1,15266:13017911,13827489 -g1,15266:14961053,13827489 -g1,15266:17538584,13827489 -g1,15266:19068194,13827489 -g1,15266:21697498,13827489 -g1,15266:23447964,13827489 -g1,15266:25036556,13827489 -k1,15267:32583029,13827489:6107958 -g1,15267:32583029,13827489 -) -(1,15269:6630773,14668977:25952256,513147,134348 -h1,15268:6630773,14668977:983040,0,0 -k1,15268:9002684,14668977:192184 -k1,15268:12277027,14668977:192185 -k1,15268:13128503,14668977:192184 -k1,15268:14339772,14668977:192184 -k1,15268:17359180,14668977:192185 -k1,15268:18082861,14668977:192184 -k1,15268:20226707,14668977:192184 -k1,15268:22441988,14668977:192185 -k1,15268:23320334,14668977:192184 -k1,15268:26092670,14668977:192184 -k1,15268:29492842,14668977:192185 -k1,15268:31391584,14668977:192184 -k1,15268:32583029,14668977:0 -) -(1,15269:6630773,15510465:25952256,513147,134348 -k1,15268:9448210,15510465:165850 -k1,15268:9969919,15510465:165849 -k1,15268:11070312,15510465:165850 -k1,15268:11895454,15510465:165850 -k1,15268:14971758,15510465:165850 -k1,15268:15796899,15510465:165849 -k1,15268:17848220,15510465:165850 -k1,15268:19615770,15510465:165850 -k1,15268:20853789,15510465:165850 -k1,15268:22085909,15510465:165849 -k1,15268:23017875,15510465:165850 -k1,15268:25168811,15510465:165850 -k1,15268:25690521,15510465:165850 -k1,15268:29137102,15510465:165849 -k1,15268:31391584,15510465:165850 -k1,15268:32583029,15510465:0 -) -(1,15269:6630773,16351953:25952256,513147,134348 -k1,15268:9329819,16351953:172633 -k1,15268:10705692,16351953:172632 -k1,15268:12161520,16351953:172633 -k1,15268:15410413,16351953:172633 -k1,15268:16210880,16351953:172632 -k1,15268:17586754,16351953:172633 -k1,15268:20177010,16351953:172633 -k1,15268:21520115,16351953:172632 -k1,15268:22825210,16351953:172633 -k1,15268:25441025,16351953:172633 -k1,15268:28105991,16351953:172632 -k1,15268:29672575,16351953:172633 -k1,15268:32583029,16351953:0 -) -(1,15269:6630773,17193441:25952256,505283,134348 -k1,15268:9147167,17193441:180692 -k1,15268:11300492,17193441:180692 -k1,15268:12672630,17193441:180693 -k1,15268:14831853,17193441:180692 -k1,15268:17547478,17193441:180692 -k1,15268:20556703,17193441:180692 -k1,15268:21869857,17193441:180692 -k1,15268:22798316,17193441:180693 -k1,15268:26069031,17193441:180692 -k1,15268:26865761,17193441:180692 -k1,15268:29464076,17193441:180692 -h1,15268:29862535,17193441:0,0,0 -k1,15268:30043228,17193441:180693 -k1,15268:30910082,17193441:180692 -k1,15268:31548871,17193441:180692 -k1,15269:32583029,17193441:0 -) -(1,15269:6630773,18034929:25952256,513147,134348 -k1,15268:9715049,18034929:141709 -k1,15268:10875843,18034929:141709 -k1,15268:13920141,18034929:141708 -k1,15268:14721142,18034929:141709 -k1,15268:17581940,18034929:141709 -k1,15268:18915094,18034929:141709 -k1,15268:20157807,18034929:141708 -k1,15268:21772110,18034929:141709 -k1,15268:22529857,18034929:141709 -k1,15268:25448982,18034929:141709 -k1,15268:26984641,18034929:141708 -k1,15268:28828320,18034929:141709 -k1,15268:31923737,18034929:141709 -k1,15268:32583029,18034929:0 -) -(1,15269:6630773,18876417:25952256,513147,126483 -k1,15268:7838836,18876417:188978 -k1,15268:11409471,18876417:188978 -k1,15268:12416337,18876417:188977 -k1,15268:14357092,18876417:188978 -k1,15268:15205362,18876417:188978 -k1,15268:16413425,18876417:188978 -k1,15268:19628199,18876417:188977 -k1,15268:20433215,18876417:188978 -k1,15268:21641278,18876417:188978 -k1,15268:24657479,18876417:188978 -k1,15268:25950739,18876417:188978 -k1,15268:26887482,18876417:188977 -k1,15268:30707155,18876417:188978 -k1,15268:31657661,18876417:188978 -k1,15269:32583029,18876417:0 -) -(1,15269:6630773,19717905:25952256,513147,134348 -k1,15268:8586304,19717905:176884 -k1,15268:10197115,19717905:176883 -k1,15268:10788820,19717905:176862 -k1,15268:14165172,19717905:176884 -k1,15268:18076296,19717905:176883 -k1,15268:21792124,19717905:176884 -k1,15268:23160453,19717905:176884 -k1,15268:26853999,19717905:176884 -k1,15268:29666085,19717905:176883 -k1,15268:31482024,19717905:176884 -k1,15268:32583029,19717905:0 -) -(1,15269:6630773,20559393:25952256,513147,126483 -k1,15268:9261745,20559393:187790 -k1,15268:12658833,20559393:187790 -k1,15268:14473883,20559393:187791 -k1,15268:16128369,20559393:187790 -k1,15268:19978311,20559393:187790 -k1,15268:21157661,20559393:187790 -k1,15268:22675832,20559393:187790 -k1,15268:23479660,20559393:187790 -k1,15268:26444867,20559393:187791 -k1,15268:27898813,20559393:187790 -k1,15268:29278048,20559393:187790 -k1,15268:32583029,20559393:0 -) -(1,15269:6630773,21400881:25952256,505283,126483 -g1,15268:8296698,21400881 -g1,15268:10724806,21400881 -g1,15268:12934024,21400881 -g1,15268:13548096,21400881 -k1,15269:32583029,21400881:16699885 -g1,15269:32583029,21400881 -) -v1,15271:6630773,22556941:0,393216,0 -(1,15274:6630773,45706769:25952256,23543044,0 -g1,15274:6630773,45706769 -g1,15274:6303093,45706769 -r1,15274:6401397,45706769:98304,23543044,0 -g1,15274:6600626,45706769 -g1,15274:6797234,45706769 -[1,15274:6797234,45706769:25785795,23543044,0 -(1,15272:6797234,22919014:25785795,755289,196608 -(1,15271:6797234,22919014:0,755289,196608 -r1,15274:8134168,22919014:1336934,951897,196608 -k1,15271:6797234,22919014:-1336934 -) -(1,15271:6797234,22919014:1336934,755289,196608 -) -k1,15271:8280828,22919014:146660 -k1,15271:8608508,22919014:327680 -k1,15271:9383003,22919014:146660 -k1,15271:10661471,22919014:146661 -k1,15271:13070434,22919014:146660 -k1,15271:14871878,22919014:146660 -k1,15271:15550035,22919014:146660 -k1,15271:16052555,22919014:146660 -k1,15271:18559167,22919014:146661 -k1,15271:21341030,22919014:146660 -k1,15271:24438776,22919014:146660 -k1,15271:26419133,22919014:146660 -k1,15271:27193629,22919014:146661 -k1,15271:30099355,22919014:146660 -k1,15271:31193666,22919014:146660 -k1,15271:32583029,22919014:0 -) -(1,15272:6797234,23760502:25785795,513147,134348 -k1,15271:9503871,23760502:152044 -k1,15271:10011774,23760502:152043 -k1,15271:11264823,23760502:152044 -k1,15271:12683022,23760502:152043 -k1,15271:13494358,23760502:152044 -k1,15271:16375320,23760502:152043 -k1,15271:18187391,23760502:152044 -k1,15271:19330995,23760502:152044 -k1,15271:22383661,23760502:152043 -k1,15271:25516282,23760502:152044 -k1,15271:28023689,23760502:152043 -k1,15271:29247902,23760502:152044 -k1,15271:32583029,23760502:0 -) -(1,15272:6797234,24601990:25785795,513147,134348 -k1,15271:8607214,24601990:140123 -k1,15271:9938782,24601990:140123 -k1,15271:13260023,24601990:140123 -k1,15271:14059439,24601990:140124 -k1,15271:17558937,24601990:140123 -k1,15271:19131677,24601990:140123 -k1,15271:19686584,24601990:140064 -k1,15271:22522203,24601990:140123 -(1,15271:22522203,24601990:0,452978,115847 -r1,15274:25342452,24601990:2820249,568825,115847 -k1,15271:22522203,24601990:-2820249 -) -(1,15271:22522203,24601990:2820249,452978,115847 -k1,15271:22522203,24601990:3277 -h1,15271:25339175,24601990:0,411205,112570 -) -k1,15271:25482576,24601990:140124 -k1,15271:26723704,24601990:140123 -k1,15271:27634530,24601990:140123 -k1,15271:30325314,24601990:140123 -k1,15271:32583029,24601990:0 -) -(1,15272:6797234,25443478:25785795,505283,134348 -k1,15271:7706491,25443478:223095 -k1,15271:8387684,25443478:223096 -k1,15271:11581526,25443478:223095 -k1,15271:12823706,25443478:223095 -k1,15271:16486787,25443478:223096 -k1,15271:18915169,25443478:223095 -k1,15271:19824426,25443478:223095 -k1,15271:21066607,25443478:223096 -k1,15271:23531033,25443478:223095 -k1,15271:26826456,25443478:223095 -k1,15271:29059541,25443478:223096 -k1,15271:30301721,25443478:223095 -k1,15272:32583029,25443478:0 -) -(1,15272:6797234,26284966:25785795,513147,134348 -k1,15271:8473863,26284966:219108 -k1,15271:9352264,26284966:219109 -k1,15271:10590457,26284966:219108 -k1,15271:12198929,26284966:219109 -k1,15271:14294333,26284966:219108 -k1,15271:16718729,26284966:219109 -k1,15271:17623999,26284966:219108 -k1,15271:18631506,26284966:219109 -k1,15271:20156747,26284966:219108 -k1,15271:23448184,26284966:219109 -k1,15271:24899369,26284966:219108 -h1,15271:26442087,26284966:0,0,0 -k1,15271:26661196,26284966:219109 -k1,15271:27689674,26284966:219108 -k1,15271:29406936,26284966:219109 -h1,15271:30602313,26284966:0,0,0 -k1,15271:31202185,26284966:219108 -k1,15271:32583029,26284966:0 -) -(1,15272:6797234,27126454:25785795,513147,134348 -k1,15271:8766536,27126454:248327 -k1,15271:11217528,27126454:248327 -k1,15271:14737412,27126454:248327 -k1,15271:17886362,27126454:248327 -k1,15271:18747451,27126454:248327 -k1,15271:20014863,27126454:248327 -k1,15271:22836132,27126454:248326 -k1,15271:23743751,27126454:248327 -k1,15271:27253805,27126454:248327 -k1,15271:28521217,27126454:248327 -k1,15271:29981960,27126454:248327 -k1,15271:30889579,27126454:248327 -k1,15271:32583029,27126454:0 -) -(1,15272:6797234,27967942:25785795,505283,134348 -k1,15271:7676604,27967942:193208 -k1,15271:8631340,27967942:193208 -k1,15271:11227099,27967942:193209 -k1,15271:12439392,27967942:193208 -k1,15271:13732294,27967942:193208 -k1,15271:14576930,27967942:193208 -k1,15271:17023922,27967942:193209 -k1,15271:17675227,27967942:193208 -k1,15271:18399932,27967942:193208 -k1,15271:19659411,27967942:193208 -k1,15271:22345610,27967942:193209 -k1,15271:24424289,27967942:193208 -k1,15271:26685813,27967942:193208 -k1,15271:27870581,27967942:193208 -k1,15271:30754698,27967942:193209 -k1,15271:31563944,27967942:193208 -k1,15271:32583029,27967942:0 -) -(1,15272:6797234,28809430:25785795,513147,134348 -k1,15271:11022320,28809430:167752 -k1,15271:11849365,28809430:167753 -k1,15271:13036202,28809430:167752 -k1,15271:14303649,28809430:167753 -k1,15271:15122829,28809430:167752 -(1,15271:15122829,28809430:0,452978,115847 -r1,15274:17943078,28809430:2820249,568825,115847 -k1,15271:15122829,28809430:-2820249 -) -(1,15271:15122829,28809430:2820249,452978,115847 -k1,15271:15122829,28809430:3277 -h1,15271:17939801,28809430:0,411205,112570 -) -k1,15271:18110831,28809430:167753 -k1,15271:19470028,28809430:167752 -k1,15271:21523252,28809430:167753 -k1,15271:23178016,28809430:167752 -k1,15271:25355758,28809430:167753 -k1,15271:26311908,28809430:167752 -k1,15271:27785794,28809430:167753 -k1,15271:32583029,28809430:0 -) -(1,15272:6797234,29650918:25785795,513147,134348 -k1,15271:7660484,29650918:177088 -k1,15271:10220460,29650918:177087 -k1,15271:12465864,29650918:177088 -k1,15271:13258990,29650918:177088 -k1,15271:14455163,29650918:177088 -k1,15271:16021613,29650918:177087 -k1,15271:18248667,29650918:177088 -k1,15271:19053590,29650918:177088 -k1,15271:22070352,29650918:177087 -k1,15271:24818417,29650918:177088 -k1,15271:28144510,29650918:177088 -k1,15271:28937636,29650918:177088 -k1,15271:29470583,29650918:177087 -k1,15271:31478747,29650918:177088 -k1,15271:32583029,29650918:0 -) -(1,15272:6797234,30492406:25785795,513147,134348 -k1,15271:9224313,30492406:186403 -k1,15271:10741097,30492406:186403 -k1,15271:11283360,30492406:186403 -k1,15271:12569457,30492406:186403 -k1,15271:13407288,30492406:186403 -k1,15271:15673804,30492406:186403 -k1,15271:16391704,30492406:186403 -k1,15271:20341840,30492406:186403 -k1,15271:21156078,30492406:186403 -k1,15271:23532039,30492406:186403 -k1,15271:25798555,30492406:186403 -k1,15271:26516455,30492406:186403 -k1,15271:27058718,30492406:186403 -k1,15271:29887533,30492406:186403 -k1,15271:32583029,30492406:0 -) -(1,15272:6797234,31333894:25785795,513147,134348 -k1,15271:8525868,31333894:250142 -k1,15271:9585381,31333894:250143 -k1,15271:10907692,31333894:250142 -k1,15271:11817126,31333894:250142 -k1,15271:13086353,31333894:250142 -k1,15271:16551037,31333894:250143 -k1,15271:19547793,31333894:250142 -(1,15271:19547793,31333894:0,452978,115847 -r1,15274:20609483,31333894:1061690,568825,115847 -k1,15271:19547793,31333894:-1061690 -) -(1,15271:19547793,31333894:1061690,452978,115847 -g1,15271:20254494,31333894 -h1,15271:20606206,31333894:0,411205,112570 -) -k1,15271:20859625,31333894:250142 -k1,15271:22341844,31333894:250142 -k1,15271:24870674,31333894:250143 -h1,15271:26239721,31333894:0,0,0 -k1,15271:26489863,31333894:250142 -k1,15271:27549375,31333894:250142 -k1,15271:29297670,31333894:250142 -h1,15271:30094588,31333894:0,0,0 -k1,15271:30725495,31333894:250143 -k1,15271:31445530,31333894:250142 -k1,15271:32227169,31333894:250142 -k1,15271:32583029,31333894:0 -) -(1,15272:6797234,32175382:25785795,513147,126483 -k1,15271:10942987,32175382:239152 -k1,15271:14051305,32175382:239152 -k1,15271:16458388,32175382:239152 -k1,15271:19521485,32175382:239151 -k1,15271:20412065,32175382:239152 -k1,15271:21398983,32175382:239152 -k1,15271:23151361,32175382:239152 -k1,15271:24003275,32175382:239152 -k1,15271:25261512,32175382:239152 -k1,15271:28094578,32175382:239151 -k1,15271:30285392,32175382:239152 -k1,15271:31966991,32175382:239152 -k1,15271:32583029,32175382:0 -) -(1,15272:6797234,33016870:25785795,513147,134348 -k1,15271:9119961,33016870:161350 -k1,15271:9964195,33016870:161349 -k1,15271:12705697,33016870:161350 -k1,15271:14536904,33016870:161350 -k1,15271:15527283,33016870:161349 -k1,15271:17892609,33016870:161350 -k1,15271:20767150,33016870:161350 -k1,15271:21611384,33016870:161349 -k1,15271:23306932,33016870:161350 -k1,15271:25035903,33016870:161350 -k1,15271:25553112,33016870:161349 -k1,15271:27103825,33016870:161350 -k1,15271:29141471,33016870:161350 -k1,15271:29760917,33016870:161349 -k1,15271:30453764,33016870:161350 -k1,15271:32583029,33016870:0 -) -(1,15272:6797234,33858358:25785795,513147,126483 -g1,15271:8583090,33858358 -g1,15271:9433747,33858358 -g1,15271:10725461,33858358 -g1,15271:11943775,33858358 -(1,15271:11943775,33858358:0,452978,115847 -r1,15274:13708889,33858358:1765114,568825,115847 -k1,15271:11943775,33858358:-1765114 -) -(1,15271:11943775,33858358:1765114,452978,115847 -g1,15271:12650476,33858358 -g1,15271:13353900,33858358 -h1,15271:13705612,33858358:0,411205,112570 -) -g1,15271:13908118,33858358 -g1,15271:14790232,33858358 -(1,15271:14790232,33858358:0,452978,115847 -r1,15274:16555346,33858358:1765114,568825,115847 -k1,15271:14790232,33858358:-1765114 -) -(1,15271:14790232,33858358:1765114,452978,115847 -g1,15271:15848645,33858358 -h1,15271:16552069,33858358:0,411205,112570 -) -g1,15271:16754575,33858358 -g1,15271:20030719,33858358 -g1,15271:20842710,33858358 -g1,15271:22061024,33858358 -g1,15271:24833196,33858358 -g1,15271:25691717,33858358 -g1,15271:27583086,33858358 -k1,15272:32583029,33858358:1888949 -g1,15272:32583029,33858358 -) -(1,15274:6797234,34699846:25785795,513147,134348 -h1,15273:6797234,34699846:983040,0,0 -k1,15273:10592643,34699846:277436 -k1,15273:13016381,34699846:277435 -k1,15273:14485262,34699846:277436 -k1,15273:16545933,34699846:277436 -k1,15273:17482660,34699846:277435 -k1,15273:18779181,34699846:277436 -k1,15273:22438274,34699846:277436 -k1,15273:24435374,34699846:277435 -k1,15273:25522180,34699846:277436 -k1,15273:26155476,34699846:277436 -k1,15273:28634921,34699846:277435 -k1,15273:31896867,34699846:277436 -k1,15273:32583029,34699846:0 -) -(1,15274:6797234,35541334:25785795,513147,134348 -k1,15273:9121618,35541334:244271 -k1,15273:10017316,35541334:244270 -k1,15273:12890236,35541334:244271 -k1,15273:17041107,35541334:244270 -k1,15273:17898140,35541334:244271 -k1,15273:19161495,35541334:244270 -k1,15273:21978709,35541334:244271 -k1,15273:22882271,35541334:244270 -k1,15273:26485917,35541334:244271 -k1,15273:29265120,35541334:244270 -k1,15273:31482024,35541334:244271 -k1,15273:32583029,35541334:0 -) -(1,15274:6797234,36382822:25785795,505283,134348 -k1,15273:10447720,36382822:233439 -k1,15273:12305797,36382822:233439 -k1,15273:14726173,36382822:233440 -k1,15273:17530589,36382822:233439 -k1,15273:19878219,36382822:233439 -k1,15273:20900056,36382822:233439 -k1,15273:25265540,36382822:233439 -k1,15273:27746210,36382822:233440 -k1,15273:29373600,36382822:233439 -k1,15273:31931601,36382822:233439 -k1,15273:32583029,36382822:0 -) -(1,15274:6797234,37224310:25785795,513147,134348 -k1,15273:8276054,37224310:148439 -k1,15273:9075921,37224310:148439 -k1,15273:11383116,37224310:148439 -k1,15273:12550640,37224310:148439 -k1,15273:15469286,37224310:148439 -k1,15273:17820390,37224310:148439 -k1,15273:18730357,37224310:148439 -k1,15273:22266352,37224310:148439 -k1,15273:23074083,37224310:148439 -k1,15273:24241607,37224310:148439 -k1,15273:28447380,37224310:148439 -k1,15273:30514713,37224310:148439 -k1,15273:32583029,37224310:0 -) -(1,15274:6797234,38065798:25785795,513147,126483 -k1,15273:9190188,38065798:212571 -k1,15273:10150524,38065798:212570 -k1,15273:12517919,38065798:212571 -k1,15273:13739743,38065798:212570 -k1,15273:15784701,38065798:212571 -k1,15273:16528768,38065798:212570 -k1,15273:17550709,38065798:212571 -k1,15273:19157886,38065798:212571 -k1,15273:21801842,38065798:212570 -k1,15273:22370273,38065798:212571 -k1,15273:25760028,38065798:212570 -k1,15273:28056644,38065798:212571 -k1,15273:29928586,38065798:212570 -k1,15273:30792585,38065798:212571 -k1,15274:32583029,38065798:0 -) -(1,15274:6797234,38907286:25785795,513147,134348 -k1,15273:8811660,38907286:232502 -k1,15273:10235606,38907286:232501 -k1,15273:10823968,38907286:232502 -k1,15273:12507436,38907286:232501 -k1,15273:15571749,38907286:232502 -k1,15273:17888295,38907286:232501 -k1,15273:18652294,38907286:232502 -k1,15273:21523930,38907286:232501 -k1,15273:23901425,38907286:232502 -k1,15273:26797965,38907286:232501 -k1,15273:27689759,38907286:232502 -k1,15273:28941345,38907286:232501 -k1,15273:31753999,38907286:232502 -k1,15274:32583029,38907286:0 -) -(1,15274:6797234,39748774:25785795,513147,134348 -k1,15273:9905654,39748774:231389 -k1,15273:10492903,39748774:231389 -k1,15273:12294535,39748774:231389 -k1,15273:14609968,39748774:231388 -k1,15273:15492785,39748774:231389 -k1,15273:18081504,39748774:231389 -k1,15273:18668753,39748774:231389 -k1,15273:21255506,39748774:231389 -k1,15273:22724870,39748774:231389 -k1,15273:23615551,39748774:231389 -k1,15273:27096214,39748774:231388 -k1,15273:29246497,39748774:231389 -k1,15273:30129314,39748774:231389 -k1,15273:31747445,39748774:231389 -k1,15273:32583029,39748774:0 -) -(1,15274:6797234,40590262:25785795,513147,134348 -k1,15273:9189403,40590262:150182 -k1,15273:9552528,40590262:150133 -k1,15273:10517978,40590262:150182 -k1,15273:13996078,40590262:150182 -k1,15273:15165345,40590262:150182 -k1,15273:18884618,40590262:150182 -k1,15273:19694092,40590262:150182 -k1,15273:20863358,40590262:150181 -k1,15273:23916130,40590262:150182 -k1,15273:24725604,40590262:150182 -k1,15273:26265149,40590262:150182 -k1,15273:27699837,40590262:150182 -k1,15273:28381516,40590262:150182 -k1,15273:32583029,40590262:0 -) -(1,15274:6797234,41431750:25785795,505283,134348 -k1,15273:7652872,41431750:239600 -k1,15273:8911557,41431750:239600 -k1,15273:12532813,41431750:239599 -k1,15273:15707115,41431750:239600 -k1,15273:16965800,41431750:239600 -k1,15273:19127571,41431750:239600 -k1,15273:24597599,41431750:239600 -k1,15273:25941480,41431750:239599 -k1,15273:28023952,41431750:239600 -k1,15273:28879590,41431750:239600 -k1,15273:32583029,41431750:0 -) -(1,15274:6797234,42273238:25785795,513147,126483 -k1,15273:8191403,42273238:202724 -k1,15273:11484806,42273238:202725 -k1,15273:12972036,42273238:202724 -k1,15273:14166321,42273238:202725 -k1,15273:15835741,42273238:202724 -k1,15273:17688663,42273238:202725 -k1,15273:20375202,42273238:202724 -k1,15273:21229354,42273238:202724 -k1,15273:22761149,42273238:202725 -k1,15273:23725401,42273238:202724 -k1,15273:28378021,42273238:202725 -k1,15273:29263630,42273238:202724 -k1,15273:32583029,42273238:0 -) -(1,15274:6797234,43114726:25785795,513147,126483 -k1,15273:8708872,43114726:200493 -k1,15273:10351813,43114726:200494 -k1,15273:12296219,43114726:200493 -k1,15273:14699377,43114726:200493 -k1,15273:15661399,43114726:200494 -k1,15273:20714178,43114726:200493 -k1,15273:21530710,43114726:200494 -k1,15273:23165131,43114726:200493 -k1,15273:23954137,43114726:200493 -k1,15273:25079344,43114726:200494 -k1,15273:27721708,43114726:200493 -k1,15273:28453698,43114726:200493 -k1,15273:29938698,43114726:200494 -k1,15273:31086842,43114726:200493 -k1,15273:32583029,43114726:0 -) -(1,15274:6797234,43956214:25785795,513147,134348 -k1,15273:8338095,43956214:256355 -k1,15273:10455017,43956214:256355 -k1,15273:11362800,43956214:256355 -k1,15273:12366921,43956214:256355 -k1,15273:14594599,43956214:256355 -k1,15273:17201730,43956214:256355 -k1,15273:18649529,43956214:256354 -k1,15273:21526013,43956214:256355 -k1,15273:25844945,43956214:256355 -k1,15273:28274474,43956214:256355 -k1,15273:29146867,43956214:256355 -k1,15273:30422307,43956214:256355 -k1,15273:32583029,43956214:0 -) -(1,15274:6797234,44797702:25785795,513147,134348 -k1,15273:7853511,44797702:187925 -k1,15273:10221819,44797702:187925 -k1,15273:11357395,44797702:187925 -k1,15273:12564405,44797702:187925 -k1,15273:14177738,44797702:187925 -k1,15273:16103678,44797702:187925 -k1,15273:18248509,44797702:187926 -k1,15273:19870362,44797702:187925 -k1,15273:20473118,44797702:187913 -k1,15273:24188847,44797702:187926 -k1,15273:25418794,44797702:187925 -k1,15273:27102906,44797702:187925 -k1,15273:28575337,44797702:187925 -k1,15273:29294759,44797702:187925 -k1,15273:30134112,44797702:187925 -k1,15273:31069803,44797702:187925 -k1,15273:32583029,44797702:0 -) -(1,15274:6797234,45639190:25785795,513147,126483 -k1,15273:8635606,45639190:174413 -k1,15273:9492904,45639190:174413 -k1,15273:10614968,45639190:174413 -k1,15273:12674852,45639190:174413 -k1,15273:17584897,45639190:174413 -k1,15273:18863592,45639190:174413 -k1,15273:21409753,45639190:174413 -k1,15273:22393537,45639190:174414 -k1,15273:23587035,45639190:174413 -k1,15273:24853933,45639190:174413 -k1,15273:25687638,45639190:174413 -k1,15273:26217911,45639190:174413 -k1,15273:28789631,45639190:174413 -k1,15273:30191533,45639190:174413 -k1,15273:31048831,45639190:174413 -k1,15273:32583029,45639190:0 -) -] -g1,15274:32583029,45706769 -) -] -(1,15274:32583029,45706769:0,0,0 -g1,15274:32583029,45706769 -) -) -] -(1,15274:6630773,47279633:25952256,0,0 -h1,15274:6630773,47279633:25952256,0,0 -) -] -(1,15274:4262630,4025873:0,0,0 -[1,15274:-473656,4025873:0,0,0 -(1,15274:-473656,-710413:0,0,0 -(1,15274:-473656,-710413:0,0,0 -g1,15274:-473656,-710413 -) -g1,15274:-473656,-710413 -) -] -) -] -!28822 -}262 -Input:2235:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2236:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!200 -{263 -[1,15313:4262630,47279633:28320399,43253760,0 -(1,15313:4262630,4025873:0,0,0 -[1,15313:-473656,4025873:0,0,0 -(1,15313:-473656,-710413:0,0,0 -(1,15313:-473656,-644877:0,0,0 -k1,15313:-473656,-644877:-65536 -) -(1,15313:-473656,4736287:0,0,0 -k1,15313:-473656,4736287:5209943 -) -g1,15313:-473656,-710413 +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] ) -[1,15313:6630773,47279633:25952256,43253760,0 -[1,15313:6630773,4812305:25952256,786432,0 -(1,15313:6630773,4812305:25952256,505283,134348 -(1,15313:6630773,4812305:25952256,505283,134348 -g1,15313:3078558,4812305 -[1,15313:3078558,4812305:0,0,0 -(1,15313:3078558,2439708:0,1703936,0 -k1,15313:1358238,2439708:-1720320 -(1,15243:1358238,2439708:1720320,1703936,0 -(1,15243:1358238,2439708:1179648,16384,0 -r1,15313:2537886,2439708:1179648,16384,0 +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,15352:37855564,2439708:1179648,16384,0 ) -g1,15243:3062174,2439708 -(1,15243:3062174,2439708:16384,1703936,0 -[1,15243:3062174,2439708:25952256,1703936,0 -(1,15243:3062174,1915420:25952256,1179648,0 -(1,15243:3062174,1915420:16384,1179648,0 -r1,15313:3078558,1915420:16384,1179648,0 ) -k1,15243:29014430,1915420:25935872 -g1,15243:29014430,1915420 +k1,15352:3078556,2439708:-34777008 ) ] +[1,15352:3078558,4812305:0,0,0 +(1,15352:3078558,49800853:0,16384,2228224 +k1,15352:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,15352:2537886,49800853:1179648,16384,0 ) +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,15352:3078558,51504789:16384,1179648,0 ) +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 ) ] -[1,15313:3078558,4812305:0,0,0 -(1,15313:3078558,2439708:0,1703936,0 -g1,15313:29030814,2439708 -g1,15313:36135244,2439708 -(1,15243:36135244,2439708:1720320,1703936,0 -(1,15243:36135244,2439708:16384,1703936,0 -[1,15243:36135244,2439708:25952256,1703936,0 -(1,15243:36135244,1915420:25952256,1179648,0 -(1,15243:36135244,1915420:16384,1179648,0 -r1,15313:36151628,1915420:16384,1179648,0 -) -k1,15243:62087500,1915420:25935872 -g1,15243:62087500,1915420 -) +) +) +) ] +[1,15352:3078558,4812305:0,0,0 +(1,15352:3078558,49800853:0,16384,2228224 +g1,15352:29030814,49800853 +g1,15352:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,15352:36151628,51504789:16384,1179648,0 +) +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 +) +] +) +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,15352:37855564,49800853:1179648,16384,0 +) +) +k1,15352:3078556,49800853:-34777008 +) +] +g1,15352:6630773,4812305 +k1,15352:19540057,4812305:11713907 +g1,15352:21162728,4812305 +g1,15352:21985204,4812305 +g1,15352:24539797,4812305 +g1,15352:25949476,4812305 +g1,15352:28728857,4812305 +g1,15352:29852144,4812305 +) +) +] +[1,15352:6630773,45706769:25952256,40108032,0 +(1,15352:6630773,45706769:25952256,40108032,0 +(1,15352:6630773,45706769:0,0,0 +g1,15352:6630773,45706769 +) +[1,15352:6630773,45706769:25952256,40108032,0 +v1,15325:6630773,6254097:0,393216,0 +(1,15325:6630773,18499459:25952256,12638578,196608 +g1,15325:6630773,18499459 +g1,15325:6630773,18499459 +g1,15325:6434165,18499459 +(1,15325:6434165,18499459:0,12638578,196608 +r1,15352:32779637,18499459:26345472,12835186,196608 +k1,15325:6434165,18499459:-26345472 +) +(1,15325:6434165,18499459:26345472,12638578,196608 +[1,15325:6630773,18499459:25952256,12441970,0 +(1,15312:6630773,6481928:25952256,424439,79822 +(1,15301:6630773,6481928:0,0,0 +g1,15301:6630773,6481928 +g1,15301:6630773,6481928 +g1,15301:6303093,6481928 +(1,15301:6303093,6481928:0,0,0 +) +g1,15301:6630773,6481928 +) +g1,15312:7626635,6481928 +h1,15312:9286405,6481928:0,0,0 +k1,15312:32583029,6481928:23296624 +g1,15312:32583029,6481928 +) +(1,15312:6630773,7166783:25952256,424439,79822 +h1,15312:6630773,7166783:0,0,0 +g1,15312:7626635,7166783 +g1,15312:7958589,7166783 +g1,15312:9286405,7166783 +g1,15312:12273990,7166783 +g1,15312:12605944,7166783 +g1,15312:12937898,7166783 +g1,15312:13269852,7166783 +g1,15312:13601806,7166783 +g1,15312:13933760,7166783 +g1,15312:14265714,7166783 +g1,15312:14597668,7166783 +g1,15312:14929622,7166783 +g1,15312:15261576,7166783 +g1,15312:19245023,7166783 +g1,15312:19576977,7166783 +g1,15312:19908931,7166783 +g1,15312:20240885,7166783 +g1,15312:20572839,7166783 +g1,15312:20904793,7166783 +g1,15312:21236747,7166783 +g1,15312:24888240,7166783 +g1,15312:25220194,7166783 +g1,15312:25552148,7166783 +g1,15312:25884102,7166783 +g1,15312:26216056,7166783 +g1,15312:26548010,7166783 +g1,15312:26879964,7166783 +g1,15312:27211918,7166783 +h1,15312:29867549,7166783:0,0,0 +k1,15312:32583029,7166783:2715480 +g1,15312:32583029,7166783 +) +(1,15312:6630773,7851638:25952256,424439,112852 +h1,15312:6630773,7851638:0,0,0 +g1,15312:7626635,7851638 +g1,15312:7958589,7851638 +g1,15312:9286405,7851638 +g1,15312:13269852,7851638 +g1,15312:13601806,7851638 +g1,15312:13933760,7851638 +g1,15312:14265714,7851638 +g1,15312:14597668,7851638 +g1,15312:14929622,7851638 +g1,15312:15261576,7851638 +g1,15312:18581115,7851638 +g1,15312:18913069,7851638 +g1,15312:19245023,7851638 +g1,15312:19576977,7851638 +g1,15312:19908931,7851638 +g1,15312:20240885,7851638 +g1,15312:20572839,7851638 +g1,15312:20904793,7851638 +g1,15312:21236747,7851638 +g1,15312:25552148,7851638 +g1,15312:25884102,7851638 +g1,15312:26216056,7851638 +g1,15312:26548010,7851638 +g1,15312:26879964,7851638 +g1,15312:27211918,7851638 +h1,15312:29867549,7851638:0,0,0 +k1,15312:32583029,7851638:2715480 +g1,15312:32583029,7851638 +) +(1,15312:6630773,8536493:25952256,431045,112852 +h1,15312:6630773,8536493:0,0,0 +g1,15312:7626635,8536493 +g1,15312:7958589,8536493 +g1,15312:9286405,8536493 +g1,15312:13269852,8536493 +g1,15312:13601806,8536493 +g1,15312:13933760,8536493 +g1,15312:14265714,8536493 +g1,15312:14597668,8536493 +g1,15312:14929622,8536493 +g1,15312:15261576,8536493 +g1,15312:18581115,8536493 +g1,15312:18913069,8536493 +g1,15312:19245023,8536493 +g1,15312:19576977,8536493 +g1,15312:19908931,8536493 +g1,15312:20240885,8536493 +g1,15312:20572839,8536493 +g1,15312:20904793,8536493 +g1,15312:21236747,8536493 +g1,15312:23228471,8536493 +g1,15312:24224333,8536493 +g1,15312:27211918,8536493 +h1,15312:29867549,8536493:0,0,0 +k1,15312:32583029,8536493:2715480 +g1,15312:32583029,8536493 +) +(1,15312:6630773,9221348:25952256,424439,106246 +h1,15312:6630773,9221348:0,0,0 +g1,15312:7626635,9221348 +g1,15312:9286405,9221348 +g1,15312:11942037,9221348 +g1,15312:12273991,9221348 +g1,15312:12605945,9221348 +g1,15312:12937899,9221348 +g1,15312:13269853,9221348 +g1,15312:13601807,9221348 +g1,15312:13933761,9221348 +g1,15312:14265715,9221348 +g1,15312:14597669,9221348 +g1,15312:14929623,9221348 +g1,15312:15261577,9221348 +g1,15312:18249162,9221348 +g1,15312:18581116,9221348 +g1,15312:18913070,9221348 +g1,15312:19245024,9221348 +g1,15312:19576978,9221348 +g1,15312:19908932,9221348 +g1,15312:20240886,9221348 +g1,15312:20572840,9221348 +g1,15312:20904794,9221348 +g1,15312:21236748,9221348 +g1,15312:25552149,9221348 +g1,15312:25884103,9221348 +g1,15312:26216057,9221348 +g1,15312:26548011,9221348 +g1,15312:26879965,9221348 +g1,15312:27211919,9221348 +h1,15312:29535597,9221348:0,0,0 +k1,15312:32583029,9221348:3047432 +g1,15312:32583029,9221348 +) +(1,15312:6630773,9906203:25952256,424439,79822 +h1,15312:6630773,9906203:0,0,0 +g1,15312:7626635,9906203 +g1,15312:9286405,9906203 +g1,15312:12273990,9906203 +g1,15312:12605944,9906203 +g1,15312:12937898,9906203 +g1,15312:13269852,9906203 +g1,15312:13601806,9906203 +g1,15312:13933760,9906203 +g1,15312:14265714,9906203 +g1,15312:14597668,9906203 +g1,15312:14929622,9906203 +g1,15312:15261576,9906203 +g1,15312:17917208,9906203 +g1,15312:18249162,9906203 +g1,15312:18581116,9906203 +g1,15312:18913070,9906203 +g1,15312:19245024,9906203 +g1,15312:19576978,9906203 +g1,15312:19908932,9906203 +g1,15312:20240886,9906203 +g1,15312:20572840,9906203 +g1,15312:20904794,9906203 +g1,15312:21236748,9906203 +g1,15312:23560426,9906203 +g1,15312:23892380,9906203 +g1,15312:24224334,9906203 +g1,15312:24556288,9906203 +g1,15312:24888242,9906203 +g1,15312:25220196,9906203 +g1,15312:25552150,9906203 +g1,15312:25884104,9906203 +g1,15312:26216058,9906203 +g1,15312:26548012,9906203 +g1,15312:26879966,9906203 +g1,15312:27211920,9906203 +h1,15312:30863413,9906203:0,0,0 +k1,15312:32583029,9906203:1719616 +g1,15312:32583029,9906203 +) +(1,15312:6630773,10591058:25952256,424439,79822 +h1,15312:6630773,10591058:0,0,0 +g1,15312:7626635,10591058 +g1,15312:9286405,10591058 +h1,15312:11942036,10591058:0,0,0 +k1,15312:32583028,10591058:20640992 +g1,15312:32583028,10591058 +) +(1,15312:6630773,11275913:25952256,398014,0 +h1,15312:6630773,11275913:0,0,0 +h1,15312:7294681,11275913:0,0,0 +k1,15312:32583029,11275913:25288348 +g1,15312:32583029,11275913 +) +(1,15312:6630773,11960768:25952256,424439,79822 +h1,15312:6630773,11960768:0,0,0 +g1,15312:7626635,11960768 +h1,15312:9286405,11960768:0,0,0 +k1,15312:32583029,11960768:23296624 +g1,15312:32583029,11960768 +) +(1,15312:6630773,12645623:25952256,398014,8257 +h1,15312:6630773,12645623:0,0,0 +g1,15312:7626635,12645623 +h1,15312:8954451,12645623:0,0,0 +k1,15312:32583029,12645623:23628578 +g1,15312:32583029,12645623 +) +(1,15314:6630773,13461550:25952256,424439,79822 +(1,15313:6630773,13461550:0,0,0 +g1,15313:6630773,13461550 +g1,15313:6630773,13461550 +g1,15313:6303093,13461550 +(1,15313:6303093,13461550:0,0,0 +) +g1,15313:6630773,13461550 +) +k1,15314:6630773,13461550:0 +h1,15314:9618359,13461550:0,0,0 +k1,15314:32583029,13461550:22964670 +g1,15314:32583029,13461550 +) +(1,15324:6630773,14277477:25952256,424439,86428 +(1,15316:6630773,14277477:0,0,0 +g1,15316:6630773,14277477 +g1,15316:6630773,14277477 +g1,15316:6303093,14277477 +(1,15316:6303093,14277477:0,0,0 +) +g1,15316:6630773,14277477 +) +g1,15324:7626635,14277477 +g1,15324:7958589,14277477 +g1,15324:8290543,14277477 +g1,15324:8622497,14277477 +g1,15324:8954451,14277477 +g1,15324:9286405,14277477 +g1,15324:9618359,14277477 +g1,15324:9950313,14277477 +g1,15324:10282267,14277477 +g1,15324:10614221,14277477 +g1,15324:10946175,14277477 +g1,15324:11278129,14277477 +g1,15324:11610083,14277477 +g1,15324:11942037,14277477 +g1,15324:12273991,14277477 +g1,15324:12605945,14277477 +g1,15324:12937899,14277477 +g1,15324:14597669,14277477 +g1,15324:14929623,14277477 +g1,15324:15261577,14277477 +g1,15324:15593531,14277477 +g1,15324:15925485,14277477 +g1,15324:16257439,14277477 +k1,15324:16257439,14277477:0 +h1,15324:17585255,14277477:0,0,0 +k1,15324:32583029,14277477:14997774 +g1,15324:32583029,14277477 +) +(1,15324:6630773,14962332:25952256,424439,9908 +h1,15324:6630773,14962332:0,0,0 +g1,15324:7626635,14962332 +g1,15324:9950313,14962332 +g1,15324:10282267,14962332 +g1,15324:10614221,14962332 +g1,15324:10946175,14962332 +g1,15324:14597668,14962332 +h1,15324:17585253,14962332:0,0,0 +k1,15324:32583029,14962332:14997776 +g1,15324:32583029,14962332 +) +(1,15324:6630773,15647187:25952256,424439,9908 +h1,15324:6630773,15647187:0,0,0 +g1,15324:7626635,15647187 +g1,15324:10946174,15647187 +g1,15324:14597667,15647187 +g1,15324:14929621,15647187 +h1,15324:17585252,15647187:0,0,0 +k1,15324:32583029,15647187:14997777 +g1,15324:32583029,15647187 +) +(1,15324:6630773,16332042:25952256,424439,9908 +h1,15324:6630773,16332042:0,0,0 +g1,15324:7626635,16332042 +g1,15324:10614220,16332042 +g1,15324:10946174,16332042 +g1,15324:11278128,16332042 +g1,15324:11610082,16332042 +g1,15324:14597667,16332042 +k1,15324:14597667,16332042:0 +h1,15324:17585252,16332042:0,0,0 +k1,15324:32583029,16332042:14997777 +g1,15324:32583029,16332042 +) +(1,15324:6630773,17016897:25952256,424439,9908 +h1,15324:6630773,17016897:0,0,0 +g1,15324:7626635,17016897 +g1,15324:9950313,17016897 +g1,15324:10282267,17016897 +g1,15324:10614221,17016897 +g1,15324:10946175,17016897 +g1,15324:11278129,17016897 +g1,15324:14597668,17016897 +k1,15324:14597668,17016897:0 +h1,15324:17585253,17016897:0,0,0 +k1,15324:32583029,17016897:14997776 +g1,15324:32583029,17016897 +) +(1,15324:6630773,17701752:25952256,424439,112852 +h1,15324:6630773,17701752:0,0,0 +g1,15324:7626635,17701752 +g1,15324:10946174,17701752 +g1,15324:14597667,17701752 +k1,15324:14597667,17701752:0 +h1,15324:17585252,17701752:0,0,0 +k1,15324:32583029,17701752:14997777 +g1,15324:32583029,17701752 +) +(1,15324:6630773,18386607:25952256,424439,112852 +h1,15324:6630773,18386607:0,0,0 +g1,15324:7626635,18386607 +g1,15324:10282267,18386607 +g1,15324:10614221,18386607 +g1,15324:10946175,18386607 +g1,15324:11278129,18386607 +g1,15324:14597668,18386607 +k1,15324:14597668,18386607:0 +h1,15324:17585253,18386607:0,0,0 +k1,15324:32583029,18386607:14997776 +g1,15324:32583029,18386607 +) +] +) +g1,15325:32583029,18499459 +g1,15325:6630773,18499459 +g1,15325:6630773,18499459 +g1,15325:32583029,18499459 +g1,15325:32583029,18499459 +) +h1,15325:6630773,18696067:0,0,0 +(1,15329:6630773,19561147:25952256,513147,102891 +h1,15328:6630773,19561147:983040,0,0 +k1,15328:8612628,19561147:169785 +k1,15328:10498146,19561147:169785 +k1,15328:11687016,19561147:169785 +k1,15328:13352987,19561147:169784 +k1,15328:15393170,19561147:169785 +k1,15328:16214383,19561147:169785 +k1,15328:17970139,19561147:169785 +k1,15328:19312363,19561147:169785 +k1,15328:21790326,19561147:169785 +k1,15328:22951671,19561147:169785 +k1,15328:24427588,19561147:169784 +k1,15328:27569431,19561147:169785 +k1,15328:29306837,19561147:169785 +k1,15328:30495707,19561147:169785 +k1,15328:32583029,19561147:0 +) +(1,15329:6630773,20426227:25952256,513147,126483 +k1,15328:8011521,20426227:189303 +k1,15328:10359580,20426227:189303 +(1,15328:10359580,20426227:0,414482,115847 +r1,15352:10717846,20426227:358266,530329,115847 +k1,15328:10359580,20426227:-358266 +) +(1,15328:10359580,20426227:358266,414482,115847 +k1,15328:10359580,20426227:3277 +h1,15328:10714569,20426227:0,411205,112570 +) +k1,15328:10907149,20426227:189303 +k1,15328:12287897,20426227:189303 +(1,15328:12287897,20426227:0,414482,115847 +r1,15352:12646163,20426227:358266,530329,115847 +k1,15328:12287897,20426227:-358266 +) +(1,15328:12287897,20426227:358266,414482,115847 +k1,15328:12287897,20426227:3277 +h1,15328:12642886,20426227:0,411205,112570 +) +k1,15328:13009136,20426227:189303 +k1,15328:14151988,20426227:189303 +k1,15328:15969861,20426227:189303 +k1,15328:18203887,20426227:189303 +k1,15328:19044618,20426227:189303 +k1,15328:21780650,20426227:189303 +k1,15328:22694781,20426227:189303 +k1,15328:24168590,20426227:189303 +k1,15328:27348956,20426227:189303 +k1,15328:28347629,20426227:189303 +k1,15328:30003628,20426227:189303 +k1,15328:31591469,20426227:189303 +k1,15328:32583029,20426227:0 +) +(1,15329:6630773,21291307:25952256,505283,126483 +k1,15329:32583029,21291307:22056796 +g1,15329:32583029,21291307 +) +v1,15333:6630773,21976162:0,393216,0 +(1,15341:6630773,25049659:25952256,3466713,196608 +g1,15341:6630773,25049659 +g1,15341:6630773,25049659 +g1,15341:6434165,25049659 +(1,15341:6434165,25049659:0,3466713,196608 +r1,15352:32779637,25049659:26345472,3663321,196608 +k1,15341:6434165,25049659:-26345472 +) +(1,15341:6434165,25049659:26345472,3466713,196608 +[1,15341:6630773,25049659:25952256,3270105,0 +(1,15335:6630773,22203993:25952256,424439,86428 +(1,15334:6630773,22203993:0,0,0 +g1,15334:6630773,22203993 +g1,15334:6630773,22203993 +g1,15334:6303093,22203993 +(1,15334:6303093,22203993:0,0,0 +) +g1,15334:6630773,22203993 +) +g1,15335:7294681,22203993 +g1,15335:8290543,22203993 +g1,15335:10282267,22203993 +h1,15335:10946175,22203993:0,0,0 +k1,15335:32583029,22203993:21636854 +g1,15335:32583029,22203993 +) +(1,15336:6630773,22888848:25952256,424439,112852 +h1,15336:6630773,22888848:0,0,0 +g1,15336:7294681,22888848 +g1,15336:8290543,22888848 +g1,15336:10614221,22888848 +g1,15336:11610083,22888848 +g1,15336:12273991,22888848 +g1,15336:14597669,22888848 +g1,15336:16257439,22888848 +g1,15336:17253301,22888848 +g1,15336:19245025,22888848 +g1,15336:20240887,22888848 +g1,15336:21236749,22888848 +g1,15336:22564565,22888848 +k1,15336:22564565,22888848:9909 +h1,15336:23570336,22888848:0,0,0 +k1,15336:32583029,22888848:9012693 +g1,15336:32583029,22888848 +) +(1,15337:6630773,23573703:25952256,424439,106246 +h1,15337:6630773,23573703:0,0,0 +g1,15337:9286405,23573703 +g1,15337:10282267,23573703 +g1,15337:11942037,23573703 +g1,15337:12605945,23573703 +g1,15337:14265715,23573703 +g1,15337:15593531,23573703 +g1,15337:16257439,23573703 +k1,15337:16257439,23573703:0 +h1,15337:16921347,23573703:0,0,0 +k1,15337:32583029,23573703:15661682 +g1,15337:32583029,23573703 +) +(1,15338:6630773,24258558:25952256,424439,79822 +h1,15338:6630773,24258558:0,0,0 +g1,15338:6962727,24258558 +g1,15338:7294681,24258558 +g1,15338:7626635,24258558 +g1,15338:7958589,24258558 +g1,15338:8290543,24258558 +g1,15338:9950313,24258558 +g1,15338:10614221,24258558 +h1,15338:17585254,24258558:0,0,0 +k1,15338:32583029,24258558:14997775 +g1,15338:32583029,24258558 +) +(1,15339:6630773,24943413:25952256,424439,106246 +h1,15339:6630773,24943413:0,0,0 +g1,15339:9286405,24943413 +g1,15339:10282267,24943413 +g1,15339:15261576,24943413 +g1,15339:16589392,24943413 +g1,15339:17253300,24943413 +h1,15339:18581116,24943413:0,0,0 +k1,15339:32583029,24943413:14001913 +g1,15339:32583029,24943413 +) +] +) +g1,15341:32583029,25049659 +g1,15341:6630773,25049659 +g1,15341:6630773,25049659 +g1,15341:32583029,25049659 +g1,15341:32583029,25049659 +) +h1,15341:6630773,25246267:0,0,0 +(1,15344:6630773,43479135:25952256,18167332,0 +k1,15344:10523651,43479135:3892878 +h1,15343:10523651,43479135:0,0,0 +(1,15343:10523651,43479135:18166500,18167332,0 +(1,15343:10523651,43479135:18167376,18167376,0 +(1,15343:10523651,43479135:18167376,18167376,0 +(1,15343:10523651,43479135:0,18167376,0 +(1,15343:10523651,43479135:0,28417720,0 +(1,15343:10523651,43479135:28417720,28417720,0 +) +k1,15343:10523651,43479135:-28417720 +) +) +g1,15343:28691027,43479135 +) +) +) +g1,15344:28690151,43479135 +k1,15344:32583029,43479135:3892878 +) +v1,15351:6630773,44344215:0,393216,0 +(1,15352:6630773,45644076:25952256,1693077,0 +g1,15352:6630773,45644076 +g1,15352:6237557,45644076 +r1,15352:6368629,45644076:131072,1693077,0 +g1,15352:6567858,45644076 +g1,15352:6764466,45644076 +[1,15352:6764466,45644076:25818563,1693077,0 +(1,15352:6764466,44652513:25818563,701514,196608 +(1,15351:6764466,44652513:0,701514,196608 +r1,15352:8863446,44652513:2098980,898122,196608 +k1,15351:6764466,44652513:-2098980 +) +(1,15351:6764466,44652513:2098980,701514,196608 +) +k1,15351:9043504,44652513:180058 +k1,15351:10769722,44652513:327680 +k1,15351:12345696,44652513:180057 +k1,15351:13915117,44652513:180058 +k1,15351:14904545,44652513:180058 +k1,15351:16103688,44652513:180058 +k1,15351:18021760,44652513:180057 +k1,15351:20363195,44652513:180058 +k1,15351:24660880,44652513:180058 +k1,15351:26578953,44652513:180058 +k1,15351:28920387,44652513:180057 +k1,15351:31391584,44652513:180058 +k1,15351:32583029,44652513:0 +) +(1,15352:6764466,45517593:25818563,513147,126483 +k1,15351:8656737,45517593:154256 +k1,15351:11296774,45517593:154256 +k1,15351:12110322,45517593:154256 +k1,15351:14200512,45517593:154256 +k1,15351:15822774,45517593:154256 +k1,15351:16589792,45517593:154256 +k1,15351:18195670,45517593:154256 +k1,15351:19009219,45517593:154257 +k1,15351:20182560,45517593:154256 +k1,15351:23223677,45517593:154256 +k1,15351:23993971,45517593:154256 +k1,15351:25167312,45517593:154256 +(1,15351:25167312,45517593:0,452978,115847 +r1,15352:27987561,45517593:2820249,568825,115847 +k1,15351:25167312,45517593:-2820249 +) +(1,15351:25167312,45517593:2820249,452978,115847 +k1,15351:25167312,45517593:3277 +h1,15351:27984284,45517593:0,411205,112570 +) +k1,15351:28141817,45517593:154256 +k1,15351:29685436,45517593:154256 +k1,15351:30947906,45517593:154256 +k1,15351:32583029,45517593:0 ) -g1,15243:36675916,2439708 -(1,15243:36675916,2439708:1179648,16384,0 -r1,15313:37855564,2439708:1179648,16384,0 -) -) -k1,15313:3078556,2439708:-34777008 +] +g1,15352:32583029,45644076 ) ] -[1,15313:3078558,4812305:0,0,0 -(1,15313:3078558,49800853:0,16384,2228224 -k1,15313:1358238,49800853:-1720320 -(1,15243:1358238,49800853:1720320,16384,2228224 -(1,15243:1358238,49800853:1179648,16384,0 -r1,15313:2537886,49800853:1179648,16384,0 +(1,15352:32583029,45706769:0,0,0 +g1,15352:32583029,45706769 ) -g1,15243:3062174,49800853 -(1,15243:3062174,52029077:16384,1703936,0 -[1,15243:3062174,52029077:25952256,1703936,0 -(1,15243:3062174,51504789:25952256,1179648,0 -(1,15243:3062174,51504789:16384,1179648,0 -r1,15313:3078558,51504789:16384,1179648,0 ) -k1,15243:29014430,51504789:25935872 -g1,15243:29014430,51504789 +] +(1,15352:6630773,47279633:25952256,0,0 +h1,15352:6630773,47279633:25952256,0,0 ) ] +(1,15352:4262630,4025873:0,0,0 +[1,15352:-473656,4025873:0,0,0 +(1,15352:-473656,-710413:0,0,0 +(1,15352:-473656,-710413:0,0,0 +g1,15352:-473656,-710413 ) +g1,15352:-473656,-710413 ) +] ) ] -[1,15313:3078558,4812305:0,0,0 -(1,15313:3078558,49800853:0,16384,2228224 -g1,15313:29030814,49800853 -g1,15313:36135244,49800853 -(1,15243:36135244,49800853:1720320,16384,2228224 -(1,15243:36135244,52029077:16384,1703936,0 -[1,15243:36135244,52029077:25952256,1703936,0 -(1,15243:36135244,51504789:25952256,1179648,0 -(1,15243:36135244,51504789:16384,1179648,0 -r1,15313:36151628,51504789:16384,1179648,0 -) -k1,15243:62087500,51504789:25935872 -g1,15243:62087500,51504789 -) -] -) -g1,15243:36675916,49800853 -(1,15243:36675916,49800853:1179648,16384,0 -r1,15313:37855564,49800853:1179648,16384,0 -) -) -k1,15313:3078556,49800853:-34777008 -) -] -g1,15313:6630773,4812305 -k1,15313:23311652,4812305:15485502 -g1,15313:23960458,4812305 -g1,15313:27572802,4812305 -g1,15313:29306229,4812305 -) -) -] -[1,15313:6630773,45706769:25952256,40108032,0 -(1,15313:6630773,45706769:25952256,40108032,0 -(1,15313:6630773,45706769:0,0,0 -g1,15313:6630773,45706769 -) -[1,15313:6630773,45706769:25952256,40108032,0 -v1,15274:6630773,6254097:0,393216,0 -(1,15274:6630773,8191352:25952256,2330471,0 -g1,15274:6630773,8191352 -g1,15274:6303093,8191352 -r1,15313:6401397,8191352:98304,2330471,0 -g1,15274:6600626,8191352 -g1,15274:6797234,8191352 -[1,15274:6797234,8191352:25785795,2330471,0 -(1,15274:6797234,6374028:25785795,513147,134348 -k1,15273:7664669,6374028:216007 -k1,15273:10323857,6374028:216006 -k1,15273:11767353,6374028:216007 -k1,15273:14317097,6374028:216007 -k1,15273:15192396,6374028:216007 -k1,15273:18318856,6374028:216006 -k1,15273:19681088,6374028:216007 -k1,15273:22043398,6374028:216007 -k1,15273:22942290,6374028:216007 -k1,15273:25043767,6374028:216006 -k1,15273:25791271,6374028:216007 -k1,15273:27073549,6374028:216007 -k1,15273:27645416,6374028:216007 -k1,15273:30147973,6374028:216006 -k1,15273:31015408,6374028:216007 -k1,15274:32583029,6374028:0 -) -(1,15274:6797234,7215516:25785795,513147,134348 -k1,15273:9212017,7215516:250129 -k1,15273:10653591,7215516:250129 -k1,15273:12095164,7215516:250128 -k1,15273:14561721,7215516:250129 -k1,15273:17825851,7215516:250129 -k1,15273:19095065,7215516:250129 -k1,15273:23123345,7215516:250129 -k1,15273:24564919,7215516:250129 -k1,15273:26787025,7215516:250128 -k1,15273:27696446,7215516:250129 -k1,15273:28965660,7215516:250129 -k1,15273:30498984,7215516:250129 -k1,15273:32583029,7215516:0 -) -(1,15274:6797234,8057004:25785795,505283,134348 -g1,15273:8100745,8057004 -g1,15273:9047740,8057004 -g1,15273:10017672,8057004 -k1,15274:32583028,8057004:19152896 -g1,15274:32583028,8057004 -) -] -g1,15274:32583029,8191352 -) -h1,15274:6630773,8191352:0,0,0 -v1,15277:6630773,9478527:0,393216,0 -(1,15278:6630773,13373930:25952256,4288619,0 -g1,15278:6630773,13373930 -g1,15278:6303093,13373930 -r1,15313:6401397,13373930:98304,4288619,0 -g1,15278:6600626,13373930 -g1,15278:6797234,13373930 -[1,15278:6797234,13373930:25785795,4288619,0 -(1,15278:6797234,9873630:25785795,788319,218313 -(1,15277:6797234,9873630:0,788319,218313 -r1,15313:7917113,9873630:1119879,1006632,218313 -k1,15277:6797234,9873630:-1119879 -) -(1,15277:6797234,9873630:1119879,788319,218313 -) -k1,15277:8104830,9873630:187717 -k1,15277:8432510,9873630:327680 -k1,15277:11155160,9873630:187717 -k1,15277:14556106,9873630:187717 -k1,15277:19356247,9873630:187717 -k1,15277:21295741,9873630:187717 -k1,15277:22142750,9873630:187717 -k1,15277:23349553,9873630:187718 -k1,15277:26563067,9873630:187717 -k1,15277:27366822,9873630:187717 -k1,15277:29527172,9873630:187717 -k1,15277:30906334,9873630:187717 -k1,15277:31449911,9873630:187717 -k1,15277:32583029,9873630:0 -) -(1,15278:6797234,10715118:25785795,513147,134348 -k1,15277:8581125,10715118:216270 -k1,15277:10602256,10715118:216270 -k1,15277:12553919,10715118:216270 -k1,15277:14241472,10715118:216270 -k1,15277:14872568,10715118:216253 -k1,15277:16585025,10715118:216270 -k1,15277:19128478,10715118:216270 -k1,15277:20004040,10715118:216270 -k1,15277:23163532,10715118:216270 -k1,15277:24662997,10715118:216270 -k1,15277:26375454,10715118:216270 -k1,15277:27783169,10715118:216270 -k1,15277:29393390,10715118:216270 -k1,15277:30419030,10715118:216270 -k1,15278:32583029,10715118:0 -) -(1,15278:6797234,11556606:25785795,513147,134348 -k1,15277:9467302,11556606:274727 -k1,15277:10551398,11556606:274726 -k1,15277:12528095,11556606:274727 -k1,15277:15875150,11556606:274727 -k1,15277:19234001,11556606:274727 -k1,15277:20889571,11556606:274726 -k1,15277:24945070,11556606:274727 -k1,15277:28204307,11556606:274727 -k1,15277:29583315,11556606:274726 -k1,15277:30605808,11556606:274727 -k1,15277:32583029,11556606:0 -) -(1,15278:6797234,12398094:25785795,513147,126483 -k1,15277:8728126,12398094:232854 -k1,15277:9879796,12398094:232855 -k1,15277:11502013,12398094:232854 -k1,15277:13941465,12398094:232855 -k1,15277:16125981,12398094:232854 -k1,15277:17801282,12398094:232854 -k1,15277:20175854,12398094:232855 -k1,15277:21400268,12398094:232854 -k1,15277:24646467,12398094:232854 -k1,15277:25562207,12398094:232855 -k1,15277:27493099,12398094:232854 -k1,15277:28745039,12398094:232855 -k1,15277:31607853,12398094:232854 -k1,15278:32583029,12398094:0 -) -(1,15278:6797234,13239582:25785795,513147,134348 -g1,15277:9283670,13239582 -g1,15277:13558583,13239582 -g1,15277:15151763,13239582 -g1,15277:16921890,13239582 -g1,15277:18510482,13239582 -g1,15277:19974556,13239582 -g1,15277:20705282,13239582 -g1,15277:21970782,13239582 -k1,15278:32583029,13239582:8140229 -g1,15278:32583029,13239582 -) -] -g1,15278:32583029,13373930 -) -h1,15278:6630773,13373930:0,0,0 -(1,15280:6630773,16181498:25952256,32768,229376 -(1,15280:6630773,16181498:0,32768,229376 -(1,15280:6630773,16181498:5505024,32768,229376 -r1,15313:12135797,16181498:5505024,262144,229376 -) -k1,15280:6630773,16181498:-5505024 -) -(1,15280:6630773,16181498:25952256,32768,0 -r1,15313:32583029,16181498:25952256,32768,0 -) -) -(1,15280:6630773,17785826:25952256,606339,161218 -(1,15280:6630773,17785826:1974731,582746,14155 -g1,15280:6630773,17785826 -g1,15280:8605504,17785826 -) -g1,15280:12473177,17785826 -g1,15280:14599689,17785826 -g1,15280:15614973,17785826 -g1,15280:17348269,17785826 -k1,15280:32583029,17785826:12233735 -g1,15280:32583029,17785826 -) -v1,15283:6630773,19290907:0,393216,0 -(1,15287:6630773,19606003:25952256,708312,196608 -g1,15287:6630773,19606003 -g1,15287:6630773,19606003 -g1,15287:6434165,19606003 -(1,15287:6434165,19606003:0,708312,196608 -r1,15313:32779637,19606003:26345472,904920,196608 -k1,15287:6434165,19606003:-26345472 -) -(1,15287:6434165,19606003:26345472,708312,196608 -[1,15287:6630773,19606003:25952256,511704,0 -(1,15285:6630773,19498525:25952256,404226,107478 -(1,15284:6630773,19498525:0,0,0 -g1,15284:6630773,19498525 -g1,15284:6630773,19498525 -g1,15284:6303093,19498525 -(1,15284:6303093,19498525:0,0,0 -) -g1,15284:6630773,19498525 -) -k1,15285:6630773,19498525:0 -h1,15285:19908891,19498525:0,0,0 -k1,15285:32583029,19498525:12674138 -g1,15285:32583029,19498525 -) -] -) -g1,15287:32583029,19606003 -g1,15287:6630773,19606003 -g1,15287:6630773,19606003 -g1,15287:32583029,19606003 -g1,15287:32583029,19606003 -) -h1,15287:6630773,19802611:0,0,0 -(1,15291:6630773,21089786:25952256,513147,126483 -h1,15290:6630773,21089786:983040,0,0 -k1,15290:8631587,21089786:188744 -k1,15290:9938374,21089786:188743 -k1,15290:11146203,21089786:188744 -k1,15290:14326665,21089786:188743 -k1,15290:17273819,21089786:188744 -k1,15290:18078600,21089786:188743 -k1,15290:19470585,21089786:188744 -k1,15290:22250623,21089786:188744 -k1,15290:23609839,21089786:188743 -k1,15290:25328849,21089786:188744 -k1,15290:26823725,21089786:188743 -k1,15290:27663897,21089786:188744 -k1,15290:29228896,21089786:188743 -k1,15290:30609085,21089786:188744 -k1,15290:32583029,21089786:0 -) -(1,15291:6630773,21931274:25952256,513147,134348 -k1,15290:8502394,21931274:179481 -k1,15290:11592329,21931274:179481 -k1,15290:13339431,21931274:179481 -k1,15290:14537997,21931274:179481 -k1,15290:16817907,21931274:179481 -k1,15290:18229465,21931274:179481 -k1,15290:20687633,21931274:179481 -h1,15290:21658221,21931274:0,0,0 -k1,15290:21837703,21931274:179482 -k1,15290:22826554,21931274:179481 -k1,15290:24504188,21931274:179481 -h1,15290:25699565,21931274:0,0,0 -k1,15290:25879046,21931274:179481 -k1,15290:27006178,21931274:179481 -k1,15290:29303127,21931274:179481 -k1,15290:30291978,21931274:179481 -k1,15290:31490544,21931274:179481 -k1,15290:32583029,21931274:0 -) -(1,15291:6630773,22772762:25952256,513147,134348 -g1,15290:7489294,22772762 -k1,15291:32583028,22772762:21802516 -g1,15291:32583028,22772762 -) -v1,15293:6630773,23884627:0,393216,0 -(1,15304:6630773,28856678:25952256,5365267,196608 -g1,15304:6630773,28856678 -g1,15304:6630773,28856678 -g1,15304:6434165,28856678 -(1,15304:6434165,28856678:0,5365267,196608 -r1,15313:32779637,28856678:26345472,5561875,196608 -k1,15304:6434165,28856678:-26345472 -) -(1,15304:6434165,28856678:26345472,5365267,196608 -[1,15304:6630773,28856678:25952256,5168659,0 -(1,15295:6630773,24092245:25952256,404226,101187 -(1,15294:6630773,24092245:0,0,0 -g1,15294:6630773,24092245 -g1,15294:6630773,24092245 -g1,15294:6303093,24092245 -(1,15294:6303093,24092245:0,0,0 -) -g1,15294:6630773,24092245 -) -k1,15295:6630773,24092245:0 -h1,15295:12637541,24092245:0,0,0 -k1,15295:32583029,24092245:19945488 -g1,15295:32583029,24092245 -) -(1,15296:6630773,24758423:25952256,404226,101187 -h1,15296:6630773,24758423:0,0,0 -k1,15296:6630773,24758423:0 -h1,15296:11372958,24758423:0,0,0 -k1,15296:32583030,24758423:21210072 -g1,15296:32583030,24758423 -) -(1,15297:6630773,25424601:25952256,404226,107478 -h1,15297:6630773,25424601:0,0,0 -k1,15297:6630773,25424601:0 -h1,15297:12005250,25424601:0,0,0 -k1,15297:32583030,25424601:20577780 -g1,15297:32583030,25424601 -) -(1,15298:6630773,26090779:25952256,404226,101187 -h1,15298:6630773,26090779:0,0,0 -k1,15298:6630773,26090779:0 -h1,15298:11056813,26090779:0,0,0 -k1,15298:32583029,26090779:21526216 -g1,15298:32583029,26090779 -) -(1,15299:6630773,26756957:25952256,404226,107478 -h1,15299:6630773,26756957:0,0,0 -k1,15299:6630773,26756957:0 -h1,15299:11689104,26756957:0,0,0 -k1,15299:32583028,26756957:20893924 -g1,15299:32583028,26756957 -) -(1,15300:6630773,27423135:25952256,404226,101187 -h1,15300:6630773,27423135:0,0,0 -k1,15300:6630773,27423135:0 -h1,15300:11056813,27423135:0,0,0 -k1,15300:32583029,27423135:21526216 -g1,15300:32583029,27423135 -) -(1,15301:6630773,28089313:25952256,404226,101187 -h1,15301:6630773,28089313:0,0,0 -k1,15301:6630773,28089313:0 -h1,15301:11056813,28089313:0,0,0 -k1,15301:32583029,28089313:21526216 -g1,15301:32583029,28089313 -) -(1,15302:6630773,28755491:25952256,404226,101187 -h1,15302:6630773,28755491:0,0,0 -k1,15302:6630773,28755491:0 -h1,15302:12321395,28755491:0,0,0 -k1,15302:32583029,28755491:20261634 -g1,15302:32583029,28755491 -) -] -) -g1,15304:32583029,28856678 -g1,15304:6630773,28856678 -g1,15304:6630773,28856678 -g1,15304:32583029,28856678 -g1,15304:32583029,28856678 -) -h1,15304:6630773,29053286:0,0,0 -(1,15307:6630773,32306541:25952256,32768,229376 -(1,15307:6630773,32306541:0,32768,229376 -(1,15307:6630773,32306541:5505024,32768,229376 -r1,15313:12135797,32306541:5505024,262144,229376 -) -k1,15307:6630773,32306541:-5505024 -) -(1,15307:6630773,32306541:25952256,32768,0 -r1,15313:32583029,32306541:25952256,32768,0 -) -) -(1,15307:6630773,33910869:25952256,615776,151780 -(1,15307:6630773,33910869:1974731,582746,14155 -g1,15307:6630773,33910869 -g1,15307:8605504,33910869 -) -g1,15307:14366905,33910869 -g1,15307:15787988,33910869 -(1,15307:15787988,33910869:0,551318,138361 -r1,15313:20015084,33910869:4227096,689679,138361 -k1,15307:15787988,33910869:-4227096 -) -(1,15307:15787988,33910869:4227096,551318,138361 -k1,15307:15787988,33910869:3277 -h1,15307:20011807,33910869:0,493446,135084 -) -k1,15307:32583029,33910869:12567945 -g1,15307:32583029,33910869 -) -(1,15309:6630773,35215697:25952256,555811,147783 -(1,15309:6630773,35215697:2450326,534184,12975 -g1,15309:6630773,35215697 -g1,15309:9081099,35215697 -) -g1,15309:12248717,35215697 -k1,15309:32583029,35215697:16305946 -g1,15309:32583029,35215697 -) -(1,15311:6630773,36450401:25952256,513147,134348 -k1,15310:7979366,36450401:151906 -k1,15310:10826769,36450401:151907 -k1,15310:12078369,36450401:151906 -k1,15310:15420568,36450401:151906 -k1,15310:16231766,36450401:151906 -k1,15310:17402758,36450401:151907 -k1,15310:17969460,36450401:151859 -k1,15310:20963662,36450401:151906 -k1,15310:21647066,36450401:151907 -k1,15310:23083478,36450401:151906 -k1,15310:26638013,36450401:151906 -k1,15310:27781479,36450401:151906 -k1,15310:30138673,36450401:151907 -k1,15310:30942007,36450401:151906 -k1,15311:32583029,36450401:0 -) -(1,15311:6630773,37291889:25952256,513147,134348 -k1,15310:8448321,37291889:219780 -k1,15310:9429628,37291889:219779 -k1,15310:11333028,37291889:219780 -k1,15310:12030565,37291889:219780 -k1,15310:13269430,37291889:219780 -k1,15310:16891838,37291889:219779 -k1,15310:18103178,37291889:219780 -k1,15310:21158045,37291889:219780 -k1,15310:23387813,37291889:219779 -k1,15310:24626678,37291889:219780 -k1,15310:26342645,37291889:219780 -k1,15310:27221717,37291889:219780 -k1,15310:27797356,37291889:219779 -k1,15310:30886302,37291889:219780 -k1,15310:32583029,37291889:0 -) -(1,15311:6630773,38133377:25952256,513147,134348 -k1,15310:9385633,38133377:183883 -k1,15310:10561076,38133377:183883 -k1,15310:12239180,38133377:183883 -k1,15310:13074491,38133377:183883 -k1,15310:14277459,38133377:183883 -k1,15310:17330508,38133377:183883 -k1,15310:17992149,38133377:183884 -k1,15310:22377545,38133377:183883 -k1,15310:24977740,38133377:183883 -k1,15310:26364864,38133377:183883 -k1,15310:29408738,38133377:183883 -k1,15310:31548871,38133377:183883 -k1,15311:32583029,38133377:0 -) -(1,15311:6630773,38974865:25952256,513147,134348 -k1,15310:8303019,38974865:179336 -k1,15310:8838215,38974865:179336 -k1,15310:10568788,38974865:179336 -k1,15310:11809807,38974865:179336 -k1,15310:12798513,38974865:179336 -k1,15310:17227203,38974865:179336 -k1,15310:20250802,38974865:179336 -k1,15310:20844961,38974865:179316 -k1,15310:21640335,38974865:179336 -k1,15310:23421371,38974865:179336 -k1,15310:26757576,38974865:179336 -k1,15310:28312513,38974865:179336 -k1,15310:30537883,38974865:179336 -k1,15310:31073079,38974865:179336 -k1,15310:32583029,38974865:0 -) -(1,15311:6630773,39816353:25952256,513147,134348 -k1,15310:7465810,39816353:218999 -k1,15310:10316080,39816353:218999 -k1,15310:11001041,39816353:219000 -k1,15310:12411485,39816353:218999 -k1,15310:14328522,39816353:218999 -k1,15310:15566606,39816353:218999 -k1,15310:17465948,39816353:218999 -k1,15310:20429595,39816353:218999 -k1,15310:25169269,39816353:219000 -k1,15310:26335919,39816353:218999 -k1,15310:29040699,39816353:218999 -k1,15310:31923737,39816353:218999 -k1,15311:32583029,39816353:0 -) -(1,15311:6630773,40657841:25952256,513147,134348 -k1,15310:7285238,40657841:239622 -k1,15310:9410373,40657841:239664 -k1,15310:10641596,40657841:239663 -k1,15310:12235233,40657841:239663 -k1,15310:14058901,40657841:239663 -k1,15310:14911326,40657841:239663 -k1,15310:17870733,40657841:239663 -k1,15310:22049110,40657841:239663 -k1,15310:24788972,40657841:239663 -k1,15310:25687927,40657841:239663 -k1,15310:28391088,40657841:239663 -k1,15310:29649836,40657841:239663 -k1,15310:32168186,40657841:239663 -k1,15311:32583029,40657841:0 -) -(1,15311:6630773,41499329:25952256,513147,134348 -k1,15310:10106934,41499329:285868 -k1,15310:11493807,41499329:285868 -k1,15310:13155276,41499329:285868 -k1,15310:13797004,41499329:285868 -k1,15310:17113912,41499329:285868 -k1,15310:20054643,41499329:285868 -k1,15310:22528758,41499329:285868 -k1,15310:23623996,41499329:285868 -k1,15310:28159218,41499329:285868 -k1,15310:31379788,41499329:285868 -k1,15310:32583029,41499329:0 -) -(1,15311:6630773,42340817:25952256,513147,134348 -k1,15310:9054013,42340817:234993 -k1,15310:10393288,42340817:234993 -k1,15310:11826936,42340817:234994 -k1,15310:12809695,42340817:234993 -k1,15310:13400548,42340817:234993 -k1,15310:16312031,42340817:234993 -k1,15310:17233187,42340817:234994 -k1,15310:21492091,42340817:234993 -k1,15310:22258581,42340817:234993 -k1,15310:25224459,42340817:234993 -k1,15310:26072214,42340817:234993 -k1,15310:27326293,42340817:234994 -k1,15310:29520812,42340817:234993 -k1,15310:31391584,42340817:234993 -k1,15310:32583029,42340817:0 -) -(1,15311:6630773,43182305:25952256,513147,134348 -k1,15310:11022296,43182305:166417 -k1,15310:11603523,43182305:166384 -k1,15310:13106874,43182305:166417 -k1,15310:14989024,43182305:166417 -k1,15310:17183125,43182305:166417 -k1,15310:18008834,43182305:166417 -k1,15310:19746149,43182305:166417 -k1,15310:22202394,43182305:166417 -k1,15310:23862376,43182305:166416 -k1,15310:24714955,43182305:166417 -k1,15310:25237232,43182305:166417 -k1,15310:27286498,43182305:166417 -k1,15310:28842278,43182305:166417 -k1,15310:30884991,43182305:166417 -k1,15310:32583029,43182305:0 -) -(1,15311:6630773,44023793:25952256,505283,134348 -g1,15310:8205603,44023793 -g1,15310:10415477,44023793 -g1,15310:11230744,44023793 -g1,15310:11785833,44023793 -g1,15310:13858081,44023793 -g1,15310:16440199,44023793 -g1,15310:17322313,44023793 -g1,15310:18988238,44023793 -g1,15310:20416267,44023793 -g1,15310:21386199,44023793 -g1,15310:24364155,44023793 -g1,15310:26038599,44023793 -k1,15311:32583029,44023793:3709343 -g1,15311:32583029,44023793 -) -(1,15313:6630773,44865281:25952256,513147,134348 -h1,15312:6630773,44865281:983040,0,0 -k1,15312:10896293,44865281:162311 -k1,15312:12250049,44865281:162311 -k1,15312:15196985,44865281:162311 -k1,15312:16926917,44865281:162311 -k1,15312:19669379,44865281:162310 -k1,15312:23341797,44865281:162311 -k1,15312:24941313,44865281:162311 -k1,15312:28506253,44865281:162311 -k1,15312:29430092,44865281:162311 -k1,15312:32583029,44865281:0 -) -(1,15313:6630773,45706769:25952256,513147,134348 -k1,15312:9507934,45706769:157417 -k1,15312:12023993,45706769:157418 -k1,15312:13313217,45706769:157417 -k1,15312:15671989,45706769:157418 -k1,15312:18764108,45706769:157417 -k1,15312:20053332,45706769:157417 -k1,15312:24186819,45706769:157418 -k1,15312:26354225,45706769:157417 -k1,15312:28208370,45706769:157418 -k1,15312:31391584,45706769:157417 -k1,15312:32583029,45706769:0 -) -] -(1,15313:32583029,45706769:0,0,0 -g1,15313:32583029,45706769 -) -) -] -(1,15313:6630773,47279633:25952256,0,0 -h1,15313:6630773,47279633:25952256,0,0 -) -] -(1,15313:4262630,4025873:0,0,0 -[1,15313:-473656,4025873:0,0,0 -(1,15313:-473656,-710413:0,0,0 -(1,15313:-473656,-710413:0,0,0 -g1,15313:-473656,-710413 -) -g1,15313:-473656,-710413 -) -] -) -] -!20255 -}263 -Input:2237:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2238:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2239:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2240:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2241:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2242:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!576 -{264 -[1,15333:4262630,47279633:28320399,43253760,0 -(1,15333:4262630,4025873:0,0,0 -[1,15333:-473656,4025873:0,0,0 -(1,15333:-473656,-710413:0,0,0 -(1,15333:-473656,-644877:0,0,0 -k1,15333:-473656,-644877:-65536 +!19850 +}245 +Input:2266:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2267:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2268:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2269:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!388 +{246 +[1,15395:4262630,47279633:28320399,43253760,0 +(1,15395:4262630,4025873:0,0,0 +[1,15395:-473656,4025873:0,0,0 +(1,15395:-473656,-710413:0,0,0 +(1,15395:-473656,-644877:0,0,0 +k1,15395:-473656,-644877:-65536 ) -(1,15333:-473656,4736287:0,0,0 -k1,15333:-473656,4736287:5209943 +(1,15395:-473656,4736287:0,0,0 +k1,15395:-473656,4736287:5209943 ) -g1,15333:-473656,-710413 +g1,15395:-473656,-710413 ) ] ) -[1,15333:6630773,47279633:25952256,43253760,0 -[1,15333:6630773,4812305:25952256,786432,0 -(1,15333:6630773,4812305:25952256,513147,126483 -(1,15333:6630773,4812305:25952256,513147,126483 -g1,15333:3078558,4812305 -[1,15333:3078558,4812305:0,0,0 -(1,15333:3078558,2439708:0,1703936,0 -k1,15333:1358238,2439708:-1720320 -(1,15243:1358238,2439708:1720320,1703936,0 -(1,15243:1358238,2439708:1179648,16384,0 -r1,15333:2537886,2439708:1179648,16384,0 +[1,15395:6630773,47279633:25952256,43253760,0 +[1,15395:6630773,4812305:25952256,786432,0 +(1,15395:6630773,4812305:25952256,505283,11795 +(1,15395:6630773,4812305:25952256,505283,11795 +g1,15395:3078558,4812305 +[1,15395:3078558,4812305:0,0,0 +(1,15395:3078558,2439708:0,1703936,0 +k1,15395:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,15395:2537886,2439708:1179648,16384,0 ) -g1,15243:3062174,2439708 -(1,15243:3062174,2439708:16384,1703936,0 -[1,15243:3062174,2439708:25952256,1703936,0 -(1,15243:3062174,1915420:25952256,1179648,0 -(1,15243:3062174,1915420:16384,1179648,0 -r1,15333:3078558,1915420:16384,1179648,0 +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,15395:3078558,1915420:16384,1179648,0 ) -k1,15243:29014430,1915420:25935872 -g1,15243:29014430,1915420 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] ) ) ) ] -[1,15333:3078558,4812305:0,0,0 -(1,15333:3078558,2439708:0,1703936,0 -g1,15333:29030814,2439708 -g1,15333:36135244,2439708 -(1,15243:36135244,2439708:1720320,1703936,0 -(1,15243:36135244,2439708:16384,1703936,0 -[1,15243:36135244,2439708:25952256,1703936,0 -(1,15243:36135244,1915420:25952256,1179648,0 -(1,15243:36135244,1915420:16384,1179648,0 -r1,15333:36151628,1915420:16384,1179648,0 +[1,15395:3078558,4812305:0,0,0 +(1,15395:3078558,2439708:0,1703936,0 +g1,15395:29030814,2439708 +g1,15395:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,15395:36151628,1915420:16384,1179648,0 ) -k1,15243:62087500,1915420:25935872 -g1,15243:62087500,1915420 +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] ) -g1,15243:36675916,2439708 -(1,15243:36675916,2439708:1179648,16384,0 -r1,15333:37855564,2439708:1179648,16384,0 +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,15395:37855564,2439708:1179648,16384,0 ) ) -k1,15333:3078556,2439708:-34777008 +k1,15395:3078556,2439708:-34777008 ) ] -[1,15333:3078558,4812305:0,0,0 -(1,15333:3078558,49800853:0,16384,2228224 -k1,15333:1358238,49800853:-1720320 -(1,15243:1358238,49800853:1720320,16384,2228224 -(1,15243:1358238,49800853:1179648,16384,0 -r1,15333:2537886,49800853:1179648,16384,0 +[1,15395:3078558,4812305:0,0,0 +(1,15395:3078558,49800853:0,16384,2228224 +k1,15395:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,15395:2537886,49800853:1179648,16384,0 ) -g1,15243:3062174,49800853 -(1,15243:3062174,52029077:16384,1703936,0 -[1,15243:3062174,52029077:25952256,1703936,0 -(1,15243:3062174,51504789:25952256,1179648,0 -(1,15243:3062174,51504789:16384,1179648,0 -r1,15333:3078558,51504789:16384,1179648,0 +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,15395:3078558,51504789:16384,1179648,0 +) +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 +) +] ) -k1,15243:29014430,51504789:25935872 -g1,15243:29014430,51504789 -) -] -) -) -) -] -[1,15333:3078558,4812305:0,0,0 -(1,15333:3078558,49800853:0,16384,2228224 -g1,15333:29030814,49800853 -g1,15333:36135244,49800853 -(1,15243:36135244,49800853:1720320,16384,2228224 -(1,15243:36135244,52029077:16384,1703936,0 -[1,15243:36135244,52029077:25952256,1703936,0 -(1,15243:36135244,51504789:25952256,1179648,0 -(1,15243:36135244,51504789:16384,1179648,0 -r1,15333:36151628,51504789:16384,1179648,0 -) -k1,15243:62087500,51504789:25935872 -g1,15243:62087500,51504789 -) -] -) -g1,15243:36675916,49800853 -(1,15243:36675916,49800853:1179648,16384,0 -r1,15333:37855564,49800853:1179648,16384,0 -) -) -k1,15333:3078556,49800853:-34777008 -) -] -g1,15333:6630773,4812305 -g1,15333:6630773,4812305 -g1,15333:11156689,4812305 -g1,15333:12279976,4812305 -g1,15333:16431026,4812305 -k1,15333:31387652,4812305:14956626 -) -) -] -[1,15333:6630773,45706769:25952256,40108032,0 -(1,15333:6630773,45706769:25952256,40108032,0 -(1,15333:6630773,45706769:0,0,0 -g1,15333:6630773,45706769 -) -[1,15333:6630773,45706769:25952256,40108032,0 -(1,15313:6630773,6254097:25952256,513147,134348 -k1,15312:9694581,6254097:279183 -k1,15312:12236067,6254097:279183 -k1,15312:13534335,6254097:279183 -k1,15312:16655159,6254097:279183 -k1,15312:19139629,6254097:279183 -k1,15312:20104974,6254097:279183 -k1,15312:23960457,6254097:279183 -k1,15312:25620484,6254097:279183 -k1,15312:28986413,6254097:279183 -k1,15312:30284681,6254097:279183 -k1,15312:32583029,6254097:0 -) -(1,15313:6630773,7095585:25952256,513147,134348 -k1,15312:8384385,7095585:231866 -k1,15312:9563903,7095585:231867 -k1,15312:12254024,7095585:231866 -k1,15312:14986089,7095585:231866 -k1,15312:16409400,7095585:231866 -k1,15312:17927083,7095585:231867 -k1,15312:18920477,7095585:231866 -k1,15312:21872087,7095585:231866 -k1,15312:23123038,7095585:231866 -k1,15312:24885171,7095585:231867 -k1,15312:25768465,7095585:231866 -k1,15312:27716064,7095585:231866 -k1,15312:28303790,7095585:231866 -k1,15312:30045607,7095585:231867 -k1,15312:30936765,7095585:231866 -k1,15313:32583029,7095585:0 -) -(1,15313:6630773,7937073:25952256,513147,134348 -k1,15312:8993286,7937073:219486 -k1,15312:11900403,7937073:219486 -k1,15312:13138974,7937073:219486 -k1,15312:14693428,7937073:219486 -k1,15312:17542874,7937073:219486 -k1,15312:22011715,7937073:219487 -k1,15312:23612045,7937073:219486 -k1,15312:24363028,7937073:219486 -k1,15312:24938374,7937073:219486 -k1,15312:28711222,7937073:219486 -k1,15312:31510860,7937073:219486 -k1,15312:32583029,7937073:0 -) -(1,15313:6630773,8778561:25952256,513147,134348 -k1,15312:9930763,8778561:161471 -k1,15312:12069454,8778561:161470 -k1,15312:13928963,8778561:161471 -k1,15312:16409752,8778561:161470 -k1,15312:17965174,8778561:161471 -k1,15312:19480618,8778561:161470 -k1,15312:21212987,8778561:161471 -k1,15312:22763820,8778561:161470 -k1,15312:24363806,8778561:161471 -k1,15312:26868188,8778561:161470 -k1,15312:28410503,8778561:161471 -k1,15312:30241830,8778561:161470 -k1,15312:31896867,8778561:161471 -k1,15312:32583029,8778561:0 -) -(1,15313:6630773,9620049:25952256,513147,134348 -k1,15312:9211800,9620049:245979 -k1,15312:10851729,9620049:245978 -k1,15312:14607815,9620049:245979 -k1,15312:17475888,9620049:245978 -k1,15312:18077727,9620049:245979 -k1,15312:19907710,9620049:245978 -k1,15312:24808711,9620049:245979 -k1,15312:25713981,9620049:245978 -k1,15312:26979045,9620049:245979 -k1,15312:32583029,9620049:0 -) -(1,15313:6630773,10461537:25952256,505283,134348 -k1,15312:10240059,10461537:245323 -k1,15312:13832961,10461537:245323 -k1,15312:16658436,10461537:245323 -k1,15312:20413866,10461537:245323 -k1,15312:22705224,10461537:245324 -k1,15312:23759917,10461537:245323 -k1,15312:26519856,10461537:245323 -k1,15312:27377941,10461537:245323 -k1,15312:31021961,10461537:245323 -k1,15313:32583029,10461537:0 -) -(1,15313:6630773,11303025:25952256,505283,126483 -g1,15312:9690649,11303025 -g1,15312:11283829,11303025 -g1,15312:13544821,11303025 -(1,15312:13544821,11303025:0,459977,115847 -r1,15333:17068493,11303025:3523672,575824,115847 -k1,15312:13544821,11303025:-3523672 -) -(1,15312:13544821,11303025:3523672,459977,115847 -k1,15312:13544821,11303025:3277 -h1,15312:17065216,11303025:0,411205,112570 -) -k1,15313:32583029,11303025:15340866 -g1,15313:32583029,11303025 -) -(1,15315:6630773,12144513:25952256,513147,134348 -h1,15314:6630773,12144513:983040,0,0 -k1,15314:8461093,12144513:219445 -k1,15314:11311809,12144513:219445 -k1,15314:12182682,12144513:219445 -k1,15314:13421211,12144513:219444 -k1,15314:15729288,12144513:219445 -k1,15314:16608025,12144513:219445 -k1,15314:19407622,12144513:219445 -k1,15314:23310844,12144513:219445 -k1,15314:24549374,12144513:219445 -k1,15314:26506833,12144513:219444 -k1,15314:27385570,12144513:219445 -k1,15314:28624100,12144513:219445 -k1,15314:32051532,12144513:219445 -k1,15314:32583029,12144513:0 -) -(1,15315:6630773,12986001:25952256,513147,134348 -k1,15314:7917424,12986001:220380 -k1,15314:9513404,12986001:220379 -k1,15314:13983138,12986001:220380 -k1,15314:15400205,12986001:220380 -k1,15314:17709217,12986001:220380 -k1,15314:18588888,12986001:220379 -k1,15314:20012509,12986001:220380 -k1,15314:23135479,12986001:220380 -k1,15314:24456864,12986001:220380 -k1,15314:25963059,12986001:220379 -k1,15314:29682406,12986001:220380 -k1,15314:32583029,12986001:0 -) -(1,15315:6630773,13827489:25952256,513147,134348 -k1,15314:9019741,13827489:217760 -k1,15314:13518313,13827489:217760 -k1,15314:15211288,13827489:217760 -k1,15314:16938998,13827489:217760 -k1,15314:19847666,13827489:217760 -k1,15314:23394000,13827489:217760 -k1,15314:25054207,13827489:217760 -k1,15314:25888005,13827489:217760 -k1,15314:27539693,13827489:217760 -k1,15314:28172277,13827489:217741 -k1,15314:29072922,13827489:217760 -k1,15314:32583029,13827489:0 -) -(1,15315:6630773,14668977:25952256,513147,134348 -k1,15314:8130137,14668977:307919 -k1,15314:9054094,14668977:307919 -k1,15314:11054153,14668977:307919 -k1,15314:13059454,14668977:307919 -k1,15314:14863560,14668977:307919 -k1,15314:17458030,14668977:307919 -k1,15314:19501342,14668977:307919 -k1,15314:21243189,14668977:307919 -k1,15314:21965842,14668977:307810 -k1,15314:23378043,14668977:307919 -k1,15314:27565693,14668977:307919 -k1,15314:31563944,14668977:307919 -k1,15314:32583029,14668977:0 -) -(1,15315:6630773,15510465:25952256,505283,134348 -k1,15314:10030661,15510465:191901 -k1,15314:11414007,15510465:191901 -k1,15314:12845195,15510465:191902 -k1,15314:14889799,15510465:191901 -k1,15314:16914087,15510465:191901 -k1,15314:18606762,15510465:191901 -k1,15314:21709117,15510465:191901 -k1,15314:23185524,15510465:191901 -k1,15314:26810857,15510465:191902 -k1,15314:27358618,15510465:191901 -k1,15314:31025238,15510465:191901 -k1,15314:32583029,15510465:0 -) -(1,15315:6630773,16351953:25952256,513147,126483 -k1,15314:8460265,16351953:261871 -k1,15314:9741221,16351953:261871 -k1,15314:12087137,16351953:261871 -k1,15314:13008300,16351953:261871 -k1,15314:14289256,16351953:261871 -k1,15314:17759114,16351953:261871 -k1,15314:19288451,16351953:261871 -k1,15314:20834828,16351953:261871 -k1,15314:21755991,16351953:261871 -k1,15314:25527969,16351953:261871 -k1,15314:26472725,16351953:261871 -k1,15314:29759738,16351953:261871 -k1,15314:32583029,16351953:0 -) -(1,15315:6630773,17193441:25952256,473825,126483 -k1,15315:32583028,17193441:23444848 -g1,15315:32583028,17193441 -) -(1,15316:6630773,19284701:25952256,555811,147783 -(1,15316:6630773,19284701:2450326,534184,12975 -g1,15316:6630773,19284701 -g1,15316:9081099,19284701 -) -g1,15316:12248717,19284701 -k1,15316:32583030,19284701:17813340 -g1,15316:32583030,19284701 -) -(1,15320:6630773,20519405:25952256,513147,134348 -k1,15319:8034553,20519405:207093 -k1,15319:10697281,20519405:207094 -k1,15319:11563666,20519405:207093 -k1,15319:14350911,20519405:207093 -k1,15319:16720037,20519405:207094 -k1,15319:19596411,20519405:207093 -k1,15319:21312143,20519405:207093 -(1,15319:21312143,20519405:0,452978,115847 -r1,15333:22373832,20519405:1061689,568825,115847 -k1,15319:21312143,20519405:-1061689 -) -(1,15319:21312143,20519405:1061689,452978,115847 -k1,15319:21312143,20519405:3277 -h1,15319:22370555,20519405:0,411205,112570 -) -k1,15319:22580926,20519405:207094 -k1,15319:24343188,20519405:207093 -k1,15319:25236443,20519405:207093 -k1,15319:27416171,20519405:207094 -k1,15319:31021961,20519405:207093 -k1,15320:32583029,20519405:0 -) -(1,15320:6630773,21360893:25952256,505283,126483 -k1,15319:9002539,21360893:184174 -k1,15319:10580664,21360893:184174 -(1,15319:10580664,21360893:0,459977,115847 -r1,15333:14104336,21360893:3523672,575824,115847 -k1,15319:10580664,21360893:-3523672 -) -(1,15319:10580664,21360893:3523672,459977,115847 -k1,15319:10580664,21360893:3277 -h1,15319:14101059,21360893:0,411205,112570 -) -k1,15319:14288510,21360893:184174 -k1,15319:15664129,21360893:184174 -k1,15319:17564036,21360893:184174 -k1,15319:18206307,21360893:184174 -k1,15319:18746341,21360893:184174 -k1,15319:21313404,21360893:184174 -k1,15319:23226418,21360893:184174 -k1,15319:24791436,21360893:184174 -k1,15319:28374307,21360893:184174 -k1,15319:32583029,21360893:0 -) -(1,15320:6630773,22202381:25952256,513147,126483 -g1,15319:7361499,22202381 -g1,15319:8936329,22202381 -g1,15319:11219603,22202381 -g1,15319:12143660,22202381 -g1,15319:12958927,22202381 -g1,15319:14850296,22202381 -g1,15319:18206394,22202381 -g1,15319:19794986,22202381 -g1,15319:22200812,22202381 -g1,15319:23591486,22202381 -g1,15319:25932432,22202381 -g1,15319:27123221,22202381 -g1,15319:28388721,22202381 -k1,15320:32583029,22202381:715657 -g1,15320:32583029,22202381 -) -(1,15322:6630773,23043869:25952256,513147,134348 -h1,15321:6630773,23043869:983040,0,0 -k1,15321:8975596,23043869:165096 -k1,15321:10695861,23043869:165096 -k1,15321:12052402,23043869:165096 -k1,15321:15002123,23043869:165096 -k1,15321:16451725,23043869:165096 -k1,15321:19196973,23043869:165096 -k1,15321:21524101,23043869:165096 -k1,15321:23980336,23043869:165096 -k1,15321:25073422,23043869:165096 -k1,15321:26930658,23043869:165096 -k1,15321:27755046,23043869:165096 -k1,15321:28939227,23043869:165096 -k1,15321:32583029,23043869:0 -) -(1,15322:6630773,23885357:25952256,513147,134348 -k1,15321:9578670,23885357:213080 -k1,15321:10553279,23885357:213081 -k1,15321:11785444,23885357:213080 -k1,15321:14087156,23885357:213080 -k1,15321:14959528,23885357:213080 -k1,15321:16606537,23885357:213081 -k1,15321:17234446,23885357:213066 -k1,15321:18836889,23885357:213080 -k1,15321:21256566,23885357:213080 -k1,15321:22082409,23885357:213081 -k1,15321:23314574,23885357:213080 -k1,15321:24842962,23885357:213080 -k1,15321:25715334,23885357:213080 -k1,15321:28500703,23885357:213081 -k1,15321:30405923,23885357:213080 -k1,15322:32583029,23885357:0 -) -(1,15322:6630773,24726845:25952256,513147,134348 -k1,15321:10197832,24726845:188678 -k1,15321:11569435,24726845:188678 -k1,15321:12409541,24726845:188678 -k1,15321:15259636,24726845:188678 -k1,15321:18912547,24726845:188678 -k1,15321:21185270,24726845:188678 -k1,15321:22321599,24726845:188678 -k1,15321:25133683,24726845:188678 -k1,15321:28710572,24726845:188678 -k1,15321:31218569,24726845:188678 -k1,15322:32583029,24726845:0 -) -(1,15322:6630773,25568333:25952256,513147,126483 -k1,15321:8306343,25568333:222637 -k1,15321:9548065,25568333:222637 -k1,15321:12363306,25568333:222637 -k1,15321:13245234,25568333:222636 -k1,15321:16781371,25568333:222637 -k1,15321:17663300,25568333:222637 -k1,15321:19441106,25568333:222637 -(1,15321:19441106,25568333:0,452978,115847 -r1,15333:20854507,25568333:1413401,568825,115847 -k1,15321:19441106,25568333:-1413401 -) -(1,15321:19441106,25568333:1413401,452978,115847 -k1,15321:19441106,25568333:3277 -h1,15321:20851230,25568333:0,411205,112570 -) -k1,15321:21077144,25568333:222637 -k1,15321:22491226,25568333:222637 -k1,15321:25068571,25568333:222636 -k1,15321:27817621,25568333:222637 -k1,15321:28987909,25568333:222637 -k1,15321:31923737,25568333:222637 -k1,15321:32583029,25568333:0 -) -(1,15322:6630773,26409821:25952256,513147,134348 -k1,15321:8377508,26409821:191566 -(1,15321:8377508,26409821:0,452978,115847 -r1,15333:10494333,26409821:2116825,568825,115847 -k1,15321:8377508,26409821:-2116825 -) -(1,15321:8377508,26409821:2116825,452978,115847 -k1,15321:8377508,26409821:3277 -h1,15321:10491056,26409821:0,411205,112570 -) -k1,15321:10859569,26409821:191566 -k1,15321:13943239,26409821:191566 -k1,15321:14794096,26409821:191565 -k1,15321:18094690,26409821:191566 -k1,15321:18817753,26409821:191566 -k1,15321:20295135,26409821:191566 -k1,15321:23422714,26409821:191566 -k1,15321:25008231,26409821:191566 -k1,15321:26009166,26409821:191565 -k1,15321:27404628,26409821:191566 -k1,15321:29664510,26409821:191566 -k1,15321:31821501,26409821:191566 -k1,15321:32583029,26409821:0 -) -(1,15322:6630773,27251309:25952256,513147,7863 -k1,15321:9332822,27251309:262799 -k1,15321:11428008,27251309:262799 -k1,15321:12682368,27251309:262800 -k1,15321:14230983,27251309:262799 -k1,15321:18010444,27251309:262799 -k1,15321:18889281,27251309:262799 -k1,15321:21417660,27251309:262799 -k1,15321:24440180,27251309:262799 -k1,15321:25362272,27251309:262800 -k1,15321:27091767,27251309:262799 -k1,15321:31391584,27251309:262799 -k1,15321:32583029,27251309:0 -) -(1,15322:6630773,28092797:25952256,505283,7863 -k1,15322:32583028,28092797:22993960 -g1,15322:32583028,28092797 -) -(1,15324:6630773,28934285:25952256,513147,134348 -h1,15323:6630773,28934285:983040,0,0 -k1,15323:10836470,28934285:135911 -k1,15323:13134414,28934285:135911 -k1,15323:13886363,28934285:135911 -k1,15323:15506010,28934285:135912 -(1,15323:15506010,28934285:0,452978,115847 -r1,15333:16567699,28934285:1061689,568825,115847 -k1,15323:15506010,28934285:-1061689 -) -(1,15323:15506010,28934285:1061689,452978,115847 -k1,15323:15506010,28934285:3277 -h1,15323:16564422,28934285:0,411205,112570 -) -k1,15323:16703610,28934285:135911 -k1,15323:17970672,28934285:135911 -k1,15323:18836654,28934285:135911 -k1,15323:21084135,28934285:135911 -k1,15323:21906863,28934285:135911 -k1,15323:25449336,28934285:135912 -k1,15323:26184901,28934285:135911 -k1,15323:29206362,28934285:135911 -k1,15323:30619570,28934285:135911 -k1,15323:32583029,28934285:0 -) -(1,15324:6630773,29775773:25952256,513147,134348 -k1,15323:8337113,29775773:278310 -k1,15323:10817432,29775773:278309 -k1,15323:11782559,29775773:278310 -k1,15323:13881458,29775773:278309 -k1,15323:15773264,29775773:278310 -k1,15323:18937123,29775773:278309 -k1,15323:20261388,29775773:278310 -k1,15323:21552884,29775773:278309 -k1,15323:25467131,29775773:278310 -k1,15323:26345094,29775773:278309 -k1,15323:28192991,29775773:278310 -k1,15323:31219880,29775773:278309 -k1,15323:32583029,29775773:0 -) -(1,15324:6630773,30617261:25952256,513147,126483 -g1,15323:8850477,30617261 -g1,15323:9736523,30617261 -g1,15323:10334211,30617261 -g1,15323:12304223,30617261 -g1,15323:13119490,30617261 -g1,15323:14304380,30617261 -g1,15323:17908860,30617261 -g1,15323:18711020,30617261 -g1,15323:20943176,30617261 -g1,15323:21758443,30617261 -g1,15323:23571168,30617261 -k1,15324:32583029,30617261:6180050 -g1,15324:32583029,30617261 -) -v1,15326:6630773,31983037:0,393216,0 -(1,15329:6630773,39269873:25952256,7680052,0 -g1,15329:6630773,39269873 -g1,15329:6303093,39269873 -r1,15333:6401397,39269873:98304,7680052,0 -g1,15329:6600626,39269873 -g1,15329:6797234,39269873 -[1,15329:6797234,39269873:25785795,7680052,0 -(1,15327:6797234,32403621:25785795,813800,267386 -(1,15326:6797234,32403621:0,813800,267386 -r1,15333:8134168,32403621:1336934,1081186,267386 -k1,15326:6797234,32403621:-1336934 -) -(1,15326:6797234,32403621:1336934,813800,267386 -) -k1,15326:8366996,32403621:232828 -k1,15326:8694676,32403621:327680 -k1,15326:9397396,32403621:232827 -k1,15326:10161721,32403621:232828 -k1,15326:11789154,32403621:232827 -k1,15326:12673410,32403621:232828 -k1,15326:14521044,32403621:232827 -k1,15326:16250059,32403621:232828 -k1,15326:17767392,32403621:232827 -k1,15326:19132682,32403621:232828 -k1,15326:20961966,32403621:232827 -k1,15326:24003667,32403621:232828 -k1,15326:25703190,32403621:232827 -k1,15326:27329969,32403621:232828 -k1,15326:28952160,32403621:232828 -k1,15326:31391584,32403621:232827 -k1,15326:32583029,32403621:0 -) -(1,15327:6797234,33245109:25785795,513147,134348 -k1,15326:9141934,33245109:202983 -k1,15326:10106444,33245109:202982 -k1,15326:13029171,33245109:202983 -k1,15326:16586287,33245109:202983 -k1,15326:18073776,33245109:202983 -k1,15326:20499739,33245109:202982 -k1,15326:24204966,33245109:202983 -k1,15326:27342651,33245109:202983 -k1,15326:29041821,33245109:202983 -k1,15326:30529309,33245109:202982 -k1,15326:31263789,33245109:202983 -k1,15327:32583029,33245109:0 -) -(1,15327:6797234,34086597:25785795,513147,134348 -k1,15326:9924944,34086597:262476 -k1,15326:12430062,34086597:262476 -k1,15326:15809431,34086597:262477 -k1,15326:16723335,34086597:262476 -k1,15326:18004896,34086597:262476 -k1,15326:18682152,34086597:262413 -k1,15326:21786924,34086597:262476 -k1,15326:23386335,34086597:262477 -k1,15326:24675760,34086597:262476 -k1,15326:25589664,34086597:262476 -k1,15326:27448597,34086597:262476 -k1,15326:28397236,34086597:262477 -k1,15326:31498732,34086597:262476 -k1,15326:32227169,34086597:262476 -k1,15326:32583029,34086597:0 -) -(1,15327:6797234,34928085:25785795,513147,126483 -k1,15326:8870372,34928085:261723 -k1,15326:9663592,34928085:261723 -k1,15326:11438541,34928085:261723 -k1,15326:12316301,34928085:261722 -k1,15326:14240672,34928085:261723 -k1,15326:15161687,34928085:261723 -k1,15326:15779270,34928085:261723 -k1,15326:17430356,34928085:261723 -k1,15326:19742045,34928085:261723 -k1,15326:21494057,34928085:261723 -k1,15326:24781576,34928085:261722 -k1,15326:27002825,34928085:261723 -k1,15326:27915976,34928085:261723 -k1,15326:29774156,34928085:261723 -k1,15326:32583029,34928085:0 -) -(1,15327:6797234,35769573:25785795,513147,126483 -g1,15326:8390414,35769573 -g1,15326:10056339,35769573 -g1,15326:12397285,35769573 -g1,15326:13787959,35769573 -g1,15326:15376551,35769573 -g1,15326:17782377,35769573 -g1,15326:19085888,35769573 -g1,15326:20032883,35769573 -g1,15326:22042216,35769573 -g1,15326:23886399,35769573 -g1,15326:24771790,35769573 -k1,15327:32583029,35769573:4101901 -g1,15327:32583029,35769573 -) -(1,15329:6797234,36611061:25785795,513147,134348 -h1,15328:6797234,36611061:983040,0,0 -k1,15328:9800503,36611061:283525 -k1,15328:12002923,36611061:283526 -k1,15328:13477893,36611061:283525 -k1,15328:14827689,36611061:283525 -k1,15328:16433075,36611061:283525 -k1,15328:17375893,36611061:283526 -k1,15328:18678503,36611061:283525 -k1,15328:19376787,36611061:283441 -k1,15328:22676279,36611061:283525 -k1,15328:23978889,36611061:283525 -k1,15328:27172868,36611061:283525 -k1,15328:28072432,36611061:283526 -k1,15328:29375042,36611061:283525 -k1,15328:32583029,36611061:0 -) -(1,15329:6797234,37452549:25785795,513147,134348 -k1,15328:8044233,37452549:255439 -k1,15328:10951259,37452549:255439 -k1,15328:12414527,37452549:255439 -k1,15328:14063917,37452549:255439 -k1,15328:16271018,37452549:255439 -k1,15328:19265207,37452549:255439 -k1,15328:22091623,37452549:255439 -k1,15328:23631568,37452549:255439 -k1,15328:26178801,37452549:255439 -k1,15328:27990720,37452549:255439 -k1,15328:28897587,37452549:255439 -k1,15328:30172111,37452549:255439 -k1,15328:31923737,37452549:255439 -k1,15328:32583029,37452549:0 -) -(1,15329:6797234,38294037:25785795,505283,134348 -k1,15328:9130588,38294037:171977 -k1,15328:10494011,38294037:171978 -k1,15328:13576442,38294037:171977 -k1,15328:15032926,38294037:171978 -k1,15328:16297388,38294037:171977 -k1,15328:18282091,38294037:171977 -k1,15328:19496091,38294037:171978 -k1,15328:22503155,38294037:171977 -k1,15328:25265771,38294037:171978 -k1,15328:28546776,38294037:171977 -k1,15328:29653297,38294037:171978 -k1,15328:30441312,38294037:171977 -k1,15328:32583029,38294037:0 -) -(1,15329:6797234,39135525:25785795,505283,134348 -g1,15328:7757991,39135525 -g1,15328:9668365,39135525 -g1,15328:10859154,39135525 -g1,15328:13176507,39135525 -g1,15328:14058621,39135525 -g1,15328:15324121,39135525 -g1,15328:16174778,39135525 -g1,15328:19152734,39135525 -g1,15328:21362608,39135525 -g1,15328:22662842,39135525 -g1,15328:25523488,39135525 -g1,15328:27116668,39135525 -k1,15329:32583029,39135525:2745962 -g1,15329:32583029,39135525 -) -] -g1,15329:32583029,39269873 -) -h1,15329:6630773,39269873:0,0,0 -v1,15332:6630773,40635649:0,393216,0 -(1,15333:6630773,44498022:25952256,4255589,0 -g1,15333:6630773,44498022 -g1,15333:6303093,44498022 -r1,15333:6401397,44498022:98304,4255589,0 -g1,15333:6600626,44498022 -g1,15333:6797234,44498022 -[1,15333:6797234,44498022:25785795,4255589,0 -(1,15333:6797234,40997722:25785795,755289,196608 -(1,15332:6797234,40997722:0,755289,196608 -r1,15333:8134168,40997722:1336934,951897,196608 -k1,15332:6797234,40997722:-1336934 -) -(1,15332:6797234,40997722:1336934,755289,196608 -) -k1,15332:8314785,40997722:180617 -k1,15332:8642465,40997722:327680 -k1,15332:10285190,40997722:180617 -k1,15332:10923905,40997722:180618 -k1,15332:12205527,40997722:180617 -k1,15332:13896094,40997722:180617 -k1,15332:16706671,40997722:180617 -k1,15332:17538716,40997722:180617 -k1,15332:19680171,40997722:180618 -k1,15332:22002505,40997722:180617 -k1,15332:22869284,40997722:180617 -k1,15332:25339729,40997722:180617 -k1,15332:26179638,40997722:180617 -k1,15332:26716116,40997722:180618 -k1,15332:28451902,40997722:180617 -k1,15332:31015408,40997722:180617 -k1,15333:32583029,40997722:0 -) -(1,15333:6797234,41839210:25785795,513147,126483 -(1,15332:6797234,41839210:0,459977,115847 -r1,15333:10320906,41839210:3523672,575824,115847 -k1,15332:6797234,41839210:-3523672 -) -(1,15332:6797234,41839210:3523672,459977,115847 -k1,15332:6797234,41839210:3277 -h1,15332:10317629,41839210:0,411205,112570 -) -k1,15332:10530583,41839210:209677 -k1,15332:12971761,41839210:209677 -k1,15332:14338149,41839210:209678 -k1,15332:15207118,41839210:209677 -k1,15332:16435880,41839210:209677 -k1,15332:20044254,41839210:209677 -k1,15332:20913223,41839210:209677 -k1,15332:22141985,41839210:209677 -k1,15332:24476340,41839210:209678 -k1,15332:29742775,41839210:209677 -k1,15332:30611744,41839210:209677 -k1,15332:31575085,41839210:209677 -k1,15333:32583029,41839210:0 -) -(1,15333:6797234,42680698:25785795,513147,134348 -k1,15332:8162513,42680698:200704 -k1,15332:10596029,42680698:200704 -k1,15332:11412771,42680698:200704 -k1,15332:12201988,42680698:200704 -k1,15332:15206322,42680698:200704 -k1,15332:16610267,42680698:200704 -k1,15332:17342467,42680698:200703 -k1,15332:21367197,42680698:200704 -k1,15332:24097591,42680698:200704 -k1,15332:25317380,42680698:200704 -k1,15332:28120519,42680698:200704 -k1,15332:28980515,42680698:200704 -k1,15333:32583029,42680698:0 -) -(1,15333:6797234,43522186:25785795,513147,126483 -k1,15332:7823582,43522186:207148 -k1,15332:10470636,43522186:207149 -k1,15332:11293823,43522186:207149 -k1,15332:11856831,43522186:207148 -k1,15332:14446869,43522186:207149 -k1,15332:16209186,43522186:207148 -k1,15332:16947832,43522186:207149 -k1,15332:18221251,43522186:207148 -k1,15332:20557665,43522186:207149 -k1,15332:23432128,43522186:207148 -k1,15332:24541708,43522186:207149 -k1,15332:29321958,43522186:207148 -k1,15332:32583029,43522186:0 -) -(1,15333:6797234,44363674:25785795,513147,134348 -k1,15332:9442684,44363674:191127 -k1,15332:12490525,44363674:191127 -k1,15332:13629302,44363674:191126 -k1,15332:15209792,44363674:191127 -k1,15332:17607516,44363674:191127 -k1,15332:18931105,44363674:191127 -k1,15332:20188503,44363674:191127 -k1,15332:23894981,44363674:191127 -k1,15332:25682564,44363674:191126 -k1,15332:28682564,44363674:191127 -k1,15332:30267642,44363674:191127 -k1,15332:32583029,44363674:0 -) -] -g1,15333:32583029,44498022 -) -] -(1,15333:32583029,45706769:0,0,0 -g1,15333:32583029,45706769 -) -) -] -(1,15333:6630773,47279633:25952256,0,0 -h1,15333:6630773,47279633:25952256,0,0 -) -] -(1,15333:4262630,4025873:0,0,0 -[1,15333:-473656,4025873:0,0,0 -(1,15333:-473656,-710413:0,0,0 -(1,15333:-473656,-710413:0,0,0 -g1,15333:-473656,-710413 -) -g1,15333:-473656,-710413 -) -] -) -] -!25574 -}264 -Input:2243:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2244:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2245:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2246:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2247:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2248:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2249:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2250:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2251:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2252:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2253:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2254:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2255:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2256:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2257:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1422 -{265 -[1,15413:4262630,47279633:28320399,43253760,0 -(1,15413:4262630,4025873:0,0,0 -[1,15413:-473656,4025873:0,0,0 -(1,15413:-473656,-710413:0,0,0 -(1,15413:-473656,-644877:0,0,0 -k1,15413:-473656,-644877:-65536 -) -(1,15413:-473656,4736287:0,0,0 -k1,15413:-473656,4736287:5209943 ) -g1,15413:-473656,-710413 ) ] +[1,15395:3078558,4812305:0,0,0 +(1,15395:3078558,49800853:0,16384,2228224 +g1,15395:29030814,49800853 +g1,15395:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,15395:36151628,51504789:16384,1179648,0 +) +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 +) +] +) +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,15395:37855564,49800853:1179648,16384,0 +) +) +k1,15395:3078556,49800853:-34777008 +) +] +g1,15395:6630773,4812305 +g1,15395:6630773,4812305 +g1,15395:10653372,4812305 +g1,15395:13512052,4812305 +k1,15395:31387652,4812305:17875600 +) +) +] +[1,15395:6630773,45706769:25952256,40108032,0 +(1,15395:6630773,45706769:25952256,40108032,0 +(1,15395:6630773,45706769:0,0,0 +g1,15395:6630773,45706769 +) +[1,15395:6630773,45706769:25952256,40108032,0 +v1,15352:6630773,6254097:0,393216,0 +(1,15352:6630773,8981063:25952256,3120182,0 +g1,15352:6630773,8981063 +g1,15352:6237557,8981063 +r1,15395:6368629,8981063:131072,3120182,0 +g1,15352:6567858,8981063 +g1,15352:6764466,8981063 +[1,15352:6764466,8981063:25818563,3120182,0 +(1,15352:6764466,6374028:25818563,513147,134348 +k1,15351:9766102,6374028:213734 +k1,15351:12491831,6374028:213734 +k1,15351:15366327,6374028:213734 +k1,15351:18131378,6374028:213734 +k1,15351:19292763,6374028:213734 +k1,15351:22341583,6374028:213733 +k1,15351:24290710,6374028:213734 +k1,15351:27199940,6374028:213734 +(1,15351:27199940,6374028:0,452978,115847 +r1,15395:28613341,6374028:1413401,568825,115847 +k1,15351:27199940,6374028:-1413401 +) +(1,15351:27199940,6374028:1413401,452978,115847 +k1,15351:27199940,6374028:3277 +h1,15351:28610064,6374028:0,411205,112570 +) +k1,15351:29000745,6374028:213734 +k1,15351:31490544,6374028:213734 +k1,15351:32583029,6374028:0 +) +(1,15352:6764466,7239108:25818563,513147,126483 +k1,15351:8426374,7239108:239777 +k1,15351:9317620,7239108:239818 +k1,15351:12360413,7239108:239818 +k1,15351:13930611,7239108:239817 +k1,15351:16372439,7239108:239818 +k1,15351:17631342,7239108:239818 +k1,15351:20758021,7239108:239818 +k1,15351:21989398,7239108:239817 +k1,15351:23623167,7239108:239818 +k1,15351:26187547,7239108:239818 +k1,15351:27078793,7239108:239818 +k1,15351:28770232,7239108:239817 +k1,15351:29669342,7239108:239818 +k1,15351:30928245,7239108:239818 +k1,15351:32583029,7239108:0 +) +(1,15352:6764466,8104188:25818563,513147,7863 +k1,15351:9996756,8104188:216979 +k1,15351:12300401,8104188:216979 +k1,15351:12873239,8104188:216978 +k1,15351:15794233,8104188:216979 +k1,15351:16670504,8104188:216979 +k1,15351:19548245,8104188:216979 +k1,15351:21049729,8104188:216978 +k1,15351:22949673,8104188:216979 +k1,15351:24434118,8104188:216979 +k1,15351:27155228,8104188:216979 +k1,15351:28391291,8104188:216978 +k1,15351:30263054,8104188:216979 +k1,15351:32583029,8104188:0 +) +(1,15352:6764466,8969268:25818563,513147,11795 +g1,15351:9805336,8969268 +g1,15351:11196010,8969268 +g1,15351:12487724,8969268 +g1,15351:14109084,8969268 +g1,15351:14959741,8969268 +g1,15351:16425126,8969268 +g1,15351:17954736,8969268 +g1,15351:20390709,8969268 +g1,15351:21609023,8969268 +g1,15351:24570595,8969268 +g1,15351:27656685,8969268 +k1,15352:32583029,8969268:3761114 +g1,15352:32583029,8969268 +) +] +g1,15352:32583029,8981063 +) +h1,15352:6630773,8981063:0,0,0 +(1,15356:6630773,11097881:25952256,555811,139132 +(1,15356:6630773,11097881:2899444,534184,12975 +g1,15356:6630773,11097881 +g1,15356:9530217,11097881 +) +g1,15356:12369827,11097881 +k1,15356:32583029,11097881:17244552 +g1,15356:32583029,11097881 +) +(1,15360:6630773,12356177:25952256,505283,134348 +k1,15359:7564115,12356177:305507 +k1,15359:10046073,12356177:305507 +k1,15359:13079843,12356177:305506 +k1,15359:14404435,12356177:305507 +k1,15359:15886969,12356177:305507 +k1,15359:16723973,12356177:305507 +k1,15359:17680907,12356177:305506 +k1,15359:19879094,12356177:305507 +k1,15359:24256353,12356177:305507 +k1,15359:25829326,12356177:305507 +k1,15359:28660590,12356177:305506 +k1,15359:31189078,12356177:305507 +k1,15359:32583029,12356177:0 +) +(1,15360:6630773,13221257:25952256,513147,134348 +k1,15359:9607500,13221257:253706 +k1,15359:12345676,13221257:253706 +k1,15359:16726184,13221257:253706 +k1,15359:18171336,13221257:253707 +k1,15359:21621888,13221257:253706 +k1,15359:26738365,13221257:253706 +k1,15359:30682403,13221257:253706 +k1,15359:31563944,13221257:253706 +k1,15359:32583029,13221257:0 +) +(1,15360:6630773,14086337:25952256,513147,134348 +k1,15359:8188396,14086337:173503 +k1,15359:11023316,14086337:173503 +k1,15359:12065171,14086337:173503 +k1,15359:13331159,14086337:173503 +k1,15359:16200158,14086337:173503 +(1,15359:16200158,14086337:0,452978,115847 +r1,15395:19020407,14086337:2820249,568825,115847 +k1,15359:16200158,14086337:-2820249 +) +(1,15359:16200158,14086337:2820249,452978,115847 +k1,15359:16200158,14086337:3277 +h1,15359:19017130,14086337:0,411205,112570 +) +k1,15359:19193910,14086337:173503 +k1,15359:20935034,14086337:173503 +k1,15359:22127622,14086337:173503 +k1,15359:24362863,14086337:173478 +k1,15359:27116518,14086337:173503 +k1,15359:29330156,14086337:173503 +k1,15359:30457208,14086337:173503 +k1,15359:31896867,14086337:173503 +k1,15359:32583029,14086337:0 +) +(1,15360:6630773,14951417:25952256,505283,126483 +k1,15359:8901249,14951417:241481 +k1,15359:10161814,14951417:241480 +(1,15359:10161814,14951417:0,452978,115847 +r1,15395:12982063,14951417:2820249,568825,115847 +k1,15359:10161814,14951417:-2820249 +) +(1,15359:10161814,14951417:2820249,452978,115847 +k1,15359:10161814,14951417:3277 +h1,15359:12978786,14951417:0,411205,112570 +) +k1,15359:13223544,14951417:241481 +k1,15359:14854387,14951417:241480 +k1,15359:16981339,14951417:241481 +k1,15359:19637166,14951417:241481 +k1,15359:22639022,14951417:241480 +k1,15359:26045237,14951417:241481 +k1,15359:26914552,14951417:241480 +k1,15359:28858003,14951417:241481 +k1,15359:30796865,14951417:241480 +k1,15359:31394206,14951417:241481 +k1,15360:32583029,14951417:0 +) +(1,15360:6630773,15816497:25952256,513147,126483 +k1,15359:7995506,15816497:253242 +k1,15359:8908040,15816497:253242 +k1,15359:12152345,15816497:253242 +k1,15359:15040789,15816497:253241 +k1,15359:16890488,15816497:253242 +k1,15359:17803022,15816497:253242 +k1,15359:22128016,15816497:253242 +k1,15359:24241825,15816497:253242 +k1,15359:25146495,15816497:253242 +k1,15359:26147502,15816497:253241 +k1,15359:27706877,15816497:253242 +k1,15359:31189078,15816497:253242 +k1,15359:32583029,15816497:0 +) +(1,15360:6630773,16681577:25952256,513147,126483 +g1,15359:9525498,16681577 +(1,15359:9525498,16681577:0,452978,115847 +r1,15395:10938899,16681577:1413401,568825,115847 +k1,15359:9525498,16681577:-1413401 +) +(1,15359:9525498,16681577:1413401,452978,115847 +k1,15359:9525498,16681577:3277 +h1,15359:10935622,16681577:0,411205,112570 +) +g1,15359:11138128,16681577 +g1,15359:13222828,16681577 +g1,15359:16278771,16681577 +g1,15359:18709501,16681577 +k1,15360:32583029,16681577:10915233 +g1,15360:32583029,16681577 +) +v1,15362:6630773,17366432:0,393216,0 +(1,15375:6630773,22632172:25952256,5658956,196608 +g1,15375:6630773,22632172 +g1,15375:6630773,22632172 +g1,15375:6434165,22632172 +(1,15375:6434165,22632172:0,5658956,196608 +r1,15395:32779637,22632172:26345472,5855564,196608 +k1,15375:6434165,22632172:-26345472 +) +(1,15375:6434165,22632172:26345472,5658956,196608 +[1,15375:6630773,22632172:25952256,5462348,0 +(1,15364:6630773,17594263:25952256,424439,79822 +(1,15363:6630773,17594263:0,0,0 +g1,15363:6630773,17594263 +g1,15363:6630773,17594263 +g1,15363:6303093,17594263 +(1,15363:6303093,17594263:0,0,0 +) +g1,15363:6630773,17594263 +) +g1,15364:7626635,17594263 +g1,15364:8622497,17594263 +k1,15364:8622497,17594263:0 +h1,15364:13933760,17594263:0,0,0 +k1,15364:32583028,17594263:18649268 +g1,15364:32583028,17594263 +) +(1,15365:6630773,18279118:25952256,424439,106246 +h1,15365:6630773,18279118:0,0,0 +k1,15365:6630773,18279118:0 +h1,15365:9618359,18279118:0,0,0 +k1,15365:32583029,18279118:22964670 +g1,15365:32583029,18279118 +) +(1,15374:6630773,19095045:25952256,398014,0 +(1,15367:6630773,19095045:0,0,0 +g1,15367:6630773,19095045 +g1,15367:6630773,19095045 +g1,15367:6303093,19095045 +(1,15367:6303093,19095045:0,0,0 +) +g1,15367:6630773,19095045 +) +h1,15374:7294681,19095045:0,0,0 +k1,15374:32583029,19095045:25288348 +g1,15374:32583029,19095045 +) +(1,15374:6630773,19779900:25952256,424439,8257 +h1,15374:6630773,19779900:0,0,0 +g1,15374:7626635,19779900 +h1,15374:9286405,19779900:0,0,0 +k1,15374:32583029,19779900:23296624 +g1,15374:32583029,19779900 +) +(1,15374:6630773,20464755:25952256,424439,79822 +h1,15374:6630773,20464755:0,0,0 +g1,15374:7626635,20464755 +g1,15374:10614220,20464755 +g1,15374:11278128,20464755 +h1,15374:14265713,20464755:0,0,0 +k1,15374:32583029,20464755:18317316 +g1,15374:32583029,20464755 +) +(1,15374:6630773,21149610:25952256,398014,0 +h1,15374:6630773,21149610:0,0,0 +h1,15374:7294681,21149610:0,0,0 +k1,15374:32583029,21149610:25288348 +g1,15374:32583029,21149610 +) +(1,15374:6630773,21834465:25952256,424439,106246 +h1,15374:6630773,21834465:0,0,0 +g1,15374:7626635,21834465 +g1,15374:10282267,21834465 +g1,15374:12605945,21834465 +g1,15374:12937899,21834465 +g1,15374:13269853,21834465 +g1,15374:13933761,21834465 +h1,15374:16589392,21834465:0,0,0 +k1,15374:32583029,21834465:15993637 +g1,15374:32583029,21834465 +) +(1,15374:6630773,22519320:25952256,431045,112852 +h1,15374:6630773,22519320:0,0,0 +g1,15374:7626635,22519320 +g1,15374:9950313,22519320 +g1,15374:10946175,22519320 +g1,15374:13933760,22519320 +h1,15374:14597668,22519320:0,0,0 +k1,15374:32583028,22519320:17985360 +g1,15374:32583028,22519320 +) +] +) +g1,15375:32583029,22632172 +g1,15375:6630773,22632172 +g1,15375:6630773,22632172 +g1,15375:32583029,22632172 +g1,15375:32583029,22632172 +) +h1,15375:6630773,22828780:0,0,0 +v1,15379:6630773,23513635:0,393216,0 +(1,15383:6630773,23847712:25952256,727293,196608 +g1,15383:6630773,23847712 +g1,15383:6630773,23847712 +g1,15383:6434165,23847712 +(1,15383:6434165,23847712:0,727293,196608 +r1,15395:32779637,23847712:26345472,923901,196608 +k1,15383:6434165,23847712:-26345472 +) +(1,15383:6434165,23847712:26345472,727293,196608 +[1,15383:6630773,23847712:25952256,530685,0 +(1,15381:6630773,23741466:25952256,424439,106246 +(1,15380:6630773,23741466:0,0,0 +g1,15380:6630773,23741466 +g1,15380:6630773,23741466 +g1,15380:6303093,23741466 +(1,15380:6303093,23741466:0,0,0 +) +g1,15380:6630773,23741466 +) +k1,15381:6630773,23741466:0 +h1,15381:9286405,23741466:0,0,0 +k1,15381:32583029,23741466:23296624 +g1,15381:32583029,23741466 +) +] +) +g1,15383:32583029,23847712 +g1,15383:6630773,23847712 +g1,15383:6630773,23847712 +g1,15383:32583029,23847712 +g1,15383:32583029,23847712 +) +h1,15383:6630773,24044320:0,0,0 +(1,15386:6630773,42277188:25952256,18167332,0 +k1,15386:10523651,42277188:3892878 +h1,15385:10523651,42277188:0,0,0 +(1,15385:10523651,42277188:18166500,18167332,0 +(1,15385:10523651,42277188:18167376,18167376,0 +(1,15385:10523651,42277188:18167376,18167376,0 +(1,15385:10523651,42277188:0,18167376,0 +(1,15385:10523651,42277188:0,28417720,0 +(1,15385:10523651,42277188:28417720,28417720,0 +) +k1,15385:10523651,42277188:-28417720 +) +) +g1,15385:28691027,42277188 +) +) +) +g1,15386:28690151,42277188 +k1,15386:32583029,42277188:3892878 +) +(1,15393:6630773,43142268:25952256,513147,134348 +h1,15392:6630773,43142268:983040,0,0 +k1,15392:8791057,43142268:223695 +k1,15392:10119034,43142268:223695 +k1,15392:11435214,43142268:223695 +(1,15392:11435214,43142268:0,452978,115847 +r1,15395:14255463,43142268:2820249,568825,115847 +k1,15392:11435214,43142268:-2820249 +) +(1,15392:11435214,43142268:2820249,452978,115847 +k1,15392:11435214,43142268:3277 +h1,15392:14252186,43142268:0,411205,112570 +) +k1,15392:14479158,43142268:223695 +k1,15392:15354281,43142268:223695 +k1,15392:17062366,43142268:223695 +k1,15392:18305146,43142268:223695 +k1,15392:21014622,43142268:223695 +k1,15392:21897609,43142268:223695 +k1,15392:24628056,43142268:223695 +k1,15392:25613279,43142268:223695 +k1,15392:28251320,43142268:223695 +k1,15392:30902469,43142268:223695 +k1,15392:31812326,43142268:223695 +k1,15392:32583029,43142268:0 +) +(1,15393:6630773,44007348:25952256,513147,134348 +g1,15392:9902330,44007348 +g1,15392:11120644,44007348 +g1,15392:13675892,44007348 +g1,15392:16360902,44007348 +g1,15392:17219423,44007348 +g1,15392:19925404,44007348 +g1,15392:20807518,44007348 +g1,15392:22025832,44007348 +g1,15392:24234395,44007348 +g1,15392:25046386,44007348 +g1,15392:27131086,44007348 +g1,15392:27981743,44007348 +g1,15392:29186294,44007348 +g1,15392:30404608,44007348 +k1,15393:32583029,44007348:764809 +g1,15393:32583029,44007348 ) -[1,15413:6630773,47279633:25952256,43253760,0 -[1,15413:6630773,4812305:25952256,786432,0 -(1,15413:6630773,4812305:25952256,505283,134348 -(1,15413:6630773,4812305:25952256,505283,134348 -g1,15413:3078558,4812305 -[1,15413:3078558,4812305:0,0,0 -(1,15413:3078558,2439708:0,1703936,0 -k1,15413:1358238,2439708:-1720320 -(1,15243:1358238,2439708:1720320,1703936,0 -(1,15243:1358238,2439708:1179648,16384,0 -r1,15413:2537886,2439708:1179648,16384,0 +] +(1,15395:32583029,45706769:0,0,0 +g1,15395:32583029,45706769 ) -g1,15243:3062174,2439708 -(1,15243:3062174,2439708:16384,1703936,0 -[1,15243:3062174,2439708:25952256,1703936,0 -(1,15243:3062174,1915420:25952256,1179648,0 -(1,15243:3062174,1915420:16384,1179648,0 -r1,15413:3078558,1915420:16384,1179648,0 ) -k1,15243:29014430,1915420:25935872 -g1,15243:29014430,1915420 +] +(1,15395:6630773,47279633:25952256,0,0 +h1,15395:6630773,47279633:25952256,0,0 ) ] +(1,15395:4262630,4025873:0,0,0 +[1,15395:-473656,4025873:0,0,0 +(1,15395:-473656,-710413:0,0,0 +(1,15395:-473656,-710413:0,0,0 +g1,15395:-473656,-710413 ) +g1,15395:-473656,-710413 ) +] ) ] -[1,15413:3078558,4812305:0,0,0 -(1,15413:3078558,2439708:0,1703936,0 -g1,15413:29030814,2439708 -g1,15413:36135244,2439708 -(1,15243:36135244,2439708:1720320,1703936,0 -(1,15243:36135244,2439708:16384,1703936,0 -[1,15243:36135244,2439708:25952256,1703936,0 -(1,15243:36135244,1915420:25952256,1179648,0 -(1,15243:36135244,1915420:16384,1179648,0 -r1,15413:36151628,1915420:16384,1179648,0 +!14996 +}246 +Input:2270:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!106 +{247 +[1,15456:4262630,47279633:28320399,43253760,0 +(1,15456:4262630,4025873:0,0,0 +[1,15456:-473656,4025873:0,0,0 +(1,15456:-473656,-710413:0,0,0 +(1,15456:-473656,-644877:0,0,0 +k1,15456:-473656,-644877:-65536 ) -k1,15243:62087500,1915420:25935872 -g1,15243:62087500,1915420 +(1,15456:-473656,4736287:0,0,0 +k1,15456:-473656,4736287:5209943 +) +g1,15456:-473656,-710413 ) ] ) -g1,15243:36675916,2439708 -(1,15243:36675916,2439708:1179648,16384,0 -r1,15413:37855564,2439708:1179648,16384,0 +[1,15456:6630773,47279633:25952256,43253760,0 +[1,15456:6630773,4812305:25952256,786432,0 +(1,15456:6630773,4812305:25952256,513147,126483 +(1,15456:6630773,4812305:25952256,513147,126483 +g1,15456:3078558,4812305 +[1,15456:3078558,4812305:0,0,0 +(1,15456:3078558,2439708:0,1703936,0 +k1,15456:1358238,2439708:-1720320 +(1,12049:1358238,2439708:1720320,1703936,0 +(1,12049:1358238,2439708:1179648,16384,0 +r1,15456:2537886,2439708:1179648,16384,0 ) +g1,12049:3062174,2439708 +(1,12049:3062174,2439708:16384,1703936,0 +[1,12049:3062174,2439708:25952256,1703936,0 +(1,12049:3062174,1915420:25952256,1179648,0 +(1,12049:3062174,1915420:16384,1179648,0 +r1,15456:3078558,1915420:16384,1179648,0 ) -k1,15413:3078556,2439708:-34777008 +k1,12049:29014430,1915420:25935872 +g1,12049:29014430,1915420 ) ] -[1,15413:3078558,4812305:0,0,0 -(1,15413:3078558,49800853:0,16384,2228224 -k1,15413:1358238,49800853:-1720320 -(1,15243:1358238,49800853:1720320,16384,2228224 -(1,15243:1358238,49800853:1179648,16384,0 -r1,15413:2537886,49800853:1179648,16384,0 ) -g1,15243:3062174,49800853 -(1,15243:3062174,52029077:16384,1703936,0 -[1,15243:3062174,52029077:25952256,1703936,0 -(1,15243:3062174,51504789:25952256,1179648,0 -(1,15243:3062174,51504789:16384,1179648,0 -r1,15413:3078558,51504789:16384,1179648,0 ) -k1,15243:29014430,51504789:25935872 -g1,15243:29014430,51504789 ) ] +[1,15456:3078558,4812305:0,0,0 +(1,15456:3078558,2439708:0,1703936,0 +g1,15456:29030814,2439708 +g1,15456:36135244,2439708 +(1,12049:36135244,2439708:1720320,1703936,0 +(1,12049:36135244,2439708:16384,1703936,0 +[1,12049:36135244,2439708:25952256,1703936,0 +(1,12049:36135244,1915420:25952256,1179648,0 +(1,12049:36135244,1915420:16384,1179648,0 +r1,15456:36151628,1915420:16384,1179648,0 ) -) +k1,12049:62087500,1915420:25935872 +g1,12049:62087500,1915420 ) ] -[1,15413:3078558,4812305:0,0,0 -(1,15413:3078558,49800853:0,16384,2228224 -g1,15413:29030814,49800853 -g1,15413:36135244,49800853 -(1,15243:36135244,49800853:1720320,16384,2228224 -(1,15243:36135244,52029077:16384,1703936,0 -[1,15243:36135244,52029077:25952256,1703936,0 -(1,15243:36135244,51504789:25952256,1179648,0 -(1,15243:36135244,51504789:16384,1179648,0 -r1,15413:36151628,51504789:16384,1179648,0 -) -k1,15243:62087500,51504789:25935872 -g1,15243:62087500,51504789 -) -] -) -g1,15243:36675916,49800853 -(1,15243:36675916,49800853:1179648,16384,0 -r1,15413:37855564,49800853:1179648,16384,0 +) +g1,12049:36675916,2439708 +(1,12049:36675916,2439708:1179648,16384,0 +r1,15456:37855564,2439708:1179648,16384,0 ) ) -k1,15413:3078556,49800853:-34777008 -) -] -g1,15413:6630773,4812305 -k1,15413:23311652,4812305:15485502 -g1,15413:23960458,4812305 -g1,15413:27572802,4812305 -g1,15413:29306229,4812305 -) -) -] -[1,15413:6630773,45706769:25952256,40108032,0 -(1,15413:6630773,45706769:25952256,40108032,0 -(1,15413:6630773,45706769:0,0,0 -g1,15413:6630773,45706769 -) -[1,15413:6630773,45706769:25952256,40108032,0 -v1,15333:6630773,6254097:0,393216,0 -(1,15333:6630773,7349864:25952256,1488983,0 -g1,15333:6630773,7349864 -g1,15333:6303093,7349864 -r1,15413:6401397,7349864:98304,1488983,0 -g1,15333:6600626,7349864 -g1,15333:6797234,7349864 -[1,15333:6797234,7349864:25785795,1488983,0 -(1,15333:6797234,6374028:25785795,513147,126483 -k1,15332:8060019,6374028:190616 -k1,15332:8866673,6374028:190616 -k1,15332:10076374,6374028:190616 -k1,15332:12796681,6374028:190617 -k1,15332:13646589,6374028:190616 -k1,15332:14193065,6374028:190616 -k1,15332:17937043,6374028:190616 -k1,15332:20581982,6374028:190616 -k1,15332:21720249,6374028:190616 -k1,15332:24052582,6374028:190616 -k1,15332:24701296,6374028:190617 -k1,15332:26024374,6374028:190616 -k1,15332:26962756,6374028:190616 -k1,15332:28666598,6374028:190616 -k1,15332:32583029,6374028:0 -) -(1,15333:6797234,7215516:25785795,505283,134348 -g1,15332:8694501,7215516 -g1,15332:9912815,7215516 -g1,15332:12418911,7215516 -g1,15332:15072463,7215516 -g1,15332:15803189,7215516 -g1,15332:17870194,7215516 -g1,15332:19463374,7215516 -g1,15332:20018463,7215516 -g1,15332:22029107,7215516 -g1,15332:22914498,7215516 -k1,15333:32583029,7215516:6422533 -g1,15333:32583029,7215516 -) -] -g1,15333:32583029,7349864 -) -h1,15333:6630773,7349864:0,0,0 -v1,15336:6630773,8715640:0,393216,0 -(1,15363:6630773,22619795:25952256,14297371,0 -g1,15363:6630773,22619795 -g1,15363:6303093,22619795 -r1,15413:6401397,22619795:98304,14297371,0 -g1,15363:6600626,22619795 -g1,15363:6797234,22619795 -[1,15363:6797234,22619795:25785795,14297371,0 -(1,15337:6797234,9110743:25785795,788319,218313 -(1,15336:6797234,9110743:0,788319,218313 -r1,15413:7917113,9110743:1119879,1006632,218313 -k1,15336:6797234,9110743:-1119879 -) -(1,15336:6797234,9110743:1119879,788319,218313 -) -k1,15336:8093515,9110743:176402 -k1,15336:8421195,9110743:327680 -k1,15336:9868994,9110743:176401 -k1,15336:12225779,9110743:176402 -k1,15336:13149946,9110743:176401 -k1,15336:15194779,9110743:176402 -k1,15336:16655686,9110743:176401 -k1,15336:19663243,9110743:176402 -k1,15336:20858729,9110743:176401 -k1,15336:24741847,9110743:176402 -(1,15336:24741847,9110743:0,452978,115847 -r1,15413:27562096,9110743:2820249,568825,115847 -k1,15336:24741847,9110743:-2820249 -) -(1,15336:24741847,9110743:2820249,452978,115847 -k1,15336:24741847,9110743:3277 -h1,15336:27558819,9110743:0,411205,112570 -) -k1,15336:27738497,9110743:176401 -k1,15336:29106344,9110743:176402 -k1,15336:32583029,9110743:0 -) -(1,15337:6797234,9952231:25785795,513147,115847 -k1,15336:9754833,9952231:262103 -(1,15336:9754833,9952231:0,452978,115847 -r1,15413:13630217,9952231:3875384,568825,115847 -k1,15336:9754833,9952231:-3875384 -) -(1,15336:9754833,9952231:3875384,452978,115847 -k1,15336:9754833,9952231:3277 -h1,15336:13626940,9952231:0,411205,112570 -) -k1,15336:14065990,9952231:262103 -k1,15336:15014255,9952231:262103 -k1,15336:16554965,9952231:262103 -k1,15336:17503230,9952231:262103 -k1,15336:18784418,9952231:262103 -k1,15336:20237965,9952231:262102 -(1,15336:20237965,9952231:0,452978,115847 -r1,15413:24113349,9952231:3875384,568825,115847 -k1,15336:20237965,9952231:-3875384 -) -(1,15336:20237965,9952231:3875384,452978,115847 -k1,15336:20237965,9952231:3277 -h1,15336:24110072,9952231:0,411205,112570 -) -k1,15336:24375452,9952231:262103 -k1,15336:25730040,9952231:262103 -k1,15336:27011228,9952231:262103 -k1,15336:29011346,9952231:262103 -(1,15336:29011346,9952231:0,452978,115847 -r1,15413:31128171,9952231:2116825,568825,115847 -k1,15336:29011346,9952231:-2116825 -) -(1,15336:29011346,9952231:2116825,452978,115847 -k1,15336:29011346,9952231:3277 -h1,15336:31124894,9952231:0,411205,112570 -) -k1,15336:31563944,9952231:262103 -k1,15336:32583029,9952231:0 -) -(1,15337:6797234,10793719:25785795,505283,115847 -k1,15336:8549900,10793719:197497 -k1,15336:11526124,10793719:197497 -k1,15336:12255118,10793719:197497 -k1,15336:14611371,10793719:197497 -(1,15336:14611371,10793719:0,452978,115847 -r1,15413:15673060,10793719:1061689,568825,115847 -k1,15336:14611371,10793719:-1061689 -) -(1,15336:14611371,10793719:1061689,452978,115847 -k1,15336:14611371,10793719:3277 -h1,15336:15669783,10793719:0,411205,112570 -) -k1,15336:16044227,10793719:197497 -k1,15336:17622568,10793719:197497 -k1,15336:18351562,10793719:197497 -k1,15336:22445830,10793719:197497 -k1,15336:24037278,10793719:197497 -k1,15336:25668703,10793719:197497 -k1,15336:26281041,10793719:197495 -k1,15336:30512279,10793719:197497 -k1,15336:31395938,10793719:197497 -k1,15336:32051532,10793719:197497 -k1,15336:32583029,10793719:0 -) -(1,15337:6797234,11635207:25785795,513147,7863 -g1,15336:8015548,11635207 -g1,15336:9307262,11635207 -g1,15336:10165783,11635207 -g1,15336:11135715,11635207 -g1,15336:14915176,11635207 -g1,15336:17441588,11635207 -g1,15336:18300109,11635207 -g1,15336:18855198,11635207 -g1,15336:20126596,11635207 -g1,15336:20941863,11635207 -g1,15336:22160177,11635207 -g1,15336:24097421,11635207 -g1,15336:24955942,11635207 -g1,15336:26851898,11635207 -k1,15337:32583029,11635207:2772836 -g1,15337:32583029,11635207 -) -v1,15339:6797234,12825673:0,393216,0 -(1,15359:6797234,18417100:25785795,5984643,196608 -g1,15359:6797234,18417100 -g1,15359:6797234,18417100 -g1,15359:6600626,18417100 -(1,15359:6600626,18417100:0,5984643,196608 -r1,15413:32779637,18417100:26179011,6181251,196608 -k1,15359:6600625,18417100:-26179012 -) -(1,15359:6600626,18417100:26179011,5984643,196608 -[1,15359:6797234,18417100:25785795,5788035,0 -(1,15341:6797234,13033291:25785795,404226,101187 -(1,15340:6797234,13033291:0,0,0 -g1,15340:6797234,13033291 -g1,15340:6797234,13033291 -g1,15340:6469554,13033291 -(1,15340:6469554,13033291:0,0,0 -) -g1,15340:6797234,13033291 -) -g1,15341:8694108,13033291 -g1,15341:9642546,13033291 -g1,15341:14384732,13033291 -g1,15341:15017024,13033291 -h1,15341:16281608,13033291:0,0,0 -k1,15341:32583029,13033291:16301421 -g1,15341:32583029,13033291 -) -(1,15342:6797234,13699469:25785795,404226,101187 -h1,15342:6797234,13699469:0,0,0 -k1,15342:6797234,13699469:0 -h1,15342:11855565,13699469:0,0,0 -k1,15342:32583029,13699469:20727464 -g1,15342:32583029,13699469 -) -(1,15346:6797234,14365647:25785795,404226,76021 -(1,15344:6797234,14365647:0,0,0 -g1,15344:6797234,14365647 -g1,15344:6797234,14365647 -g1,15344:6469554,14365647 -(1,15344:6469554,14365647:0,0,0 -) -g1,15344:6797234,14365647 -) -g1,15346:7745671,14365647 -g1,15346:9010254,14365647 -h1,15346:10274837,14365647:0,0,0 -k1,15346:32583029,14365647:22308192 -g1,15346:32583029,14365647 -) -(1,15348:6797234,15687185:25785795,404226,101187 -(1,15347:6797234,15687185:0,0,0 -g1,15347:6797234,15687185 -g1,15347:6797234,15687185 -g1,15347:6469554,15687185 -(1,15347:6469554,15687185:0,0,0 -) -g1,15347:6797234,15687185 -) -k1,15348:6797234,15687185:0 -g1,15348:11855565,15687185 -h1,15348:14700876,15687185:0,0,0 -k1,15348:32583028,15687185:17882152 -g1,15348:32583028,15687185 -) -(1,15352:6797234,16353363:25785795,404226,76021 -(1,15350:6797234,16353363:0,0,0 -g1,15350:6797234,16353363 -g1,15350:6797234,16353363 -g1,15350:6469554,16353363 -(1,15350:6469554,16353363:0,0,0 -) -g1,15350:6797234,16353363 -) -g1,15352:7745671,16353363 -g1,15352:9010254,16353363 -h1,15352:10590982,16353363:0,0,0 -k1,15352:32583030,16353363:21992048 -g1,15352:32583030,16353363 -) -(1,15354:6797234,17674901:25785795,404226,101187 -(1,15353:6797234,17674901:0,0,0 -g1,15353:6797234,17674901 -g1,15353:6797234,17674901 -g1,15353:6469554,17674901 -(1,15353:6469554,17674901:0,0,0 -) -g1,15353:6797234,17674901 -) -k1,15354:6797234,17674901:0 -h1,15354:10590982,17674901:0,0,0 -k1,15354:32583030,17674901:21992048 -g1,15354:32583030,17674901 -) -(1,15358:6797234,18341079:25785795,410518,76021 -(1,15356:6797234,18341079:0,0,0 -g1,15356:6797234,18341079 -g1,15356:6797234,18341079 -g1,15356:6469554,18341079 -(1,15356:6469554,18341079:0,0,0 -) -g1,15356:6797234,18341079 -) -g1,15358:7745671,18341079 -g1,15358:9010254,18341079 -g1,15358:11855565,18341079 -g1,15358:12171711,18341079 -g1,15358:12487857,18341079 -g1,15358:12804003,18341079 -g1,15358:13120149,18341079 -g1,15358:15017023,18341079 -g1,15358:15333169,18341079 -g1,15358:15649315,18341079 -g1,15358:15965461,18341079 -g1,15358:16281607,18341079 -g1,15358:16597753,18341079 -g1,15358:16913899,18341079 -g1,15358:17230045,18341079 -h1,15358:21023793,18341079:0,0,0 -k1,15358:32583029,18341079:11559236 -g1,15358:32583029,18341079 -) -] -) -g1,15359:32583029,18417100 -g1,15359:6797234,18417100 -g1,15359:6797234,18417100 -g1,15359:32583029,18417100 -g1,15359:32583029,18417100 -) -h1,15359:6797234,18613708:0,0,0 -(1,15363:6797234,19979484:25785795,513147,134348 -h1,15362:6797234,19979484:983040,0,0 -k1,15362:12261917,19979484:287994 -k1,15362:13201339,19979484:287994 -k1,15362:16015746,19979484:287994 -k1,15362:18445457,19979484:287994 -k1,15362:20588121,19979484:287995 -k1,15362:21685485,19979484:287994 -k1,15362:24735822,19979484:287994 -k1,15362:28466422,19979484:287994 -k1,15362:30143779,19979484:287994 -k1,15362:32583029,19979484:0 -) -(1,15363:6797234,20820972:25785795,513147,134348 -k1,15362:8481878,20820972:191078 -k1,15362:9359118,20820972:191078 -(1,15362:9359118,20820972:0,452978,115847 -r1,15413:12882790,20820972:3523672,568825,115847 -k1,15362:9359118,20820972:-3523672 -) -(1,15362:9359118,20820972:3523672,452978,115847 -k1,15362:9359118,20820972:3277 -h1,15362:12879513,20820972:0,411205,112570 -) -k1,15362:13073868,20820972:191078 -k1,15362:15554774,20820972:191078 -k1,15362:16428737,20820972:191078 -k1,15362:19947078,20820972:191078 -k1,15362:20494015,20820972:191077 -k1,15362:22960503,20820972:191078 -k1,15362:25534470,20820972:191078 -k1,15362:27280717,20820972:191078 -k1,15362:28003292,20820972:191078 -k1,15362:30666388,20820972:191078 -k1,15362:31485301,20820972:191078 -k1,15362:32583029,20820972:0 -) -(1,15363:6797234,21662460:25785795,505283,134348 -k1,15362:9818132,21662460:185811 -k1,15362:10690105,21662460:185811 -k1,15362:11973644,21662460:185811 -k1,15362:13970871,21662460:185812 -k1,15362:15257687,21662460:185811 -k1,15362:16214201,21662460:185811 -k1,15362:19842618,21662460:185811 -(1,15362:19842618,21662460:0,459977,115847 -r1,15413:23366290,21662460:3523672,575824,115847 -k1,15362:19842618,21662460:-3523672 -) -(1,15362:19842618,21662460:3523672,459977,115847 -k1,15362:19842618,21662460:3277 -h1,15362:23363013,21662460:0,411205,112570 -) -k1,15362:23552101,21662460:185811 -k1,15362:25466752,21662460:185811 -k1,15362:26671649,21662460:185812 -k1,15362:28459160,21662460:185811 -k1,15362:31027860,21662460:185811 -k1,15362:32583029,21662460:0 -) -(1,15363:6797234,22503948:25785795,513147,115847 -g1,15362:7663619,22503948 -(1,15362:7663619,22503948:0,452978,115847 -r1,15413:9428732,22503948:1765113,568825,115847 -k1,15362:7663619,22503948:-1765113 -) -(1,15362:7663619,22503948:1765113,452978,115847 -k1,15362:7663619,22503948:3277 -h1,15362:9425455,22503948:0,411205,112570 -) -g1,15362:9627961,22503948 -g1,15362:10358687,22503948 -(1,15362:10358687,22503948:0,459977,115847 -r1,15413:12475512,22503948:2116825,575824,115847 -k1,15362:10358687,22503948:-2116825 -) -(1,15362:10358687,22503948:2116825,459977,115847 -k1,15362:10358687,22503948:3277 -h1,15362:12472235,22503948:0,411205,112570 -) -k1,15363:32583030,22503948:19933848 -g1,15363:32583030,22503948 -) -] -g1,15363:32583029,22619795 -) -h1,15363:6630773,22619795:0,0,0 -(1,15366:6630773,23985571:25952256,513147,134348 -h1,15365:6630773,23985571:983040,0,0 -k1,15365:8826380,23985571:259018 -k1,15365:11046236,23985571:259019 -k1,15365:11661114,23985571:259018 -k1,15365:14615629,23985571:259019 -k1,15365:16159153,23985571:259018 -k1,15365:19339766,23985571:259018 -k1,15365:21925313,23985571:259019 -k1,15365:23203416,23985571:259018 -k1,15365:25017603,23985571:259018 -k1,15365:25935914,23985571:259019 -k1,15365:27214017,23985571:259018 -k1,15365:29432562,23985571:259019 -k1,15365:31896867,23985571:259018 -k1,15365:32583029,23985571:0 -) -(1,15366:6630773,24827059:25952256,513147,134348 -k1,15365:9995228,24827059:292127 -k1,15365:11478799,24827059:292126 -k1,15365:12430218,24827059:292127 -k1,15365:13510742,24827059:292126 -k1,15365:16756577,24827059:292127 -k1,15365:19048207,24827059:292126 -k1,15365:22366131,24827059:292127 -k1,15365:23649817,24827059:292126 -k1,15365:27031967,24827059:292127 -k1,15365:27940131,24827059:292126 -k1,15365:30510945,24827059:292127 -h1,15365:31481533,24827059:0,0,0 -k1,15365:31773659,24827059:292126 -k1,15365:32583029,24827059:0 -) -(1,15366:6630773,25668547:25952256,505283,134348 -g1,15365:8328155,25668547 -h1,15365:9523532,25668547:0,0,0 -k1,15366:32583028,25668547:22678732 -g1,15366:32583028,25668547 -) -v1,15368:6630773,26859013:0,393216,0 -(1,15380:6630773,32478368:25952256,6012571,196608 -g1,15380:6630773,32478368 -g1,15380:6630773,32478368 -g1,15380:6434165,32478368 -(1,15380:6434165,32478368:0,6012571,196608 -r1,15413:32779637,32478368:26345472,6209179,196608 -k1,15380:6434165,32478368:-26345472 -) -(1,15380:6434165,32478368:26345472,6012571,196608 -[1,15380:6630773,32478368:25952256,5815963,0 -(1,15370:6630773,27072923:25952256,410518,76021 -(1,15369:6630773,27072923:0,0,0 -g1,15369:6630773,27072923 -g1,15369:6630773,27072923 -g1,15369:6303093,27072923 -(1,15369:6303093,27072923:0,0,0 -) -g1,15369:6630773,27072923 -) -g1,15370:10740667,27072923 -g1,15370:11689105,27072923 -g1,15370:15482854,27072923 -h1,15370:15799000,27072923:0,0,0 -k1,15370:32583028,27072923:16784028 -g1,15370:32583028,27072923 -) -(1,15371:6630773,27739101:25952256,404226,76021 -h1,15371:6630773,27739101:0,0,0 -g1,15371:6946919,27739101 -g1,15371:7263065,27739101 -k1,15371:7263065,27739101:0 -h1,15371:8527648,27739101:0,0,0 -k1,15371:32583028,27739101:24055380 -g1,15371:32583028,27739101 -) -(1,15372:6630773,28405279:25952256,404226,101187 -h1,15372:6630773,28405279:0,0,0 -g1,15372:6946919,28405279 -g1,15372:7263065,28405279 -g1,15372:7579211,28405279 -g1,15372:7895357,28405279 -k1,15372:7895357,28405279:0 -h1,15372:15482854,28405279:0,0,0 -k1,15372:32583030,28405279:17100176 -g1,15372:32583030,28405279 -) -(1,15373:6630773,29071457:25952256,404226,107478 -h1,15373:6630773,29071457:0,0,0 -g1,15373:6946919,29071457 -g1,15373:7263065,29071457 -g1,15373:7579211,29071457 -g1,15373:7895357,29071457 -k1,15373:7895357,29071457:0 -h1,15373:12637543,29071457:0,0,0 -k1,15373:32583029,29071457:19945486 -g1,15373:32583029,29071457 -) -(1,15374:6630773,29737635:25952256,404226,101187 -h1,15374:6630773,29737635:0,0,0 -g1,15374:6946919,29737635 -g1,15374:7263065,29737635 -g1,15374:7579211,29737635 -g1,15374:7895357,29737635 -k1,15374:7895357,29737635:0 -h1,15374:12637542,29737635:0,0,0 -k1,15374:32583030,29737635:19945488 -g1,15374:32583030,29737635 -) -(1,15375:6630773,30403813:25952256,404226,101187 -h1,15375:6630773,30403813:0,0,0 -g1,15375:6946919,30403813 -g1,15375:7263065,30403813 -g1,15375:7579211,30403813 -g1,15375:7895357,30403813 -g1,15375:8211503,30403813 -g1,15375:8527649,30403813 -g1,15375:8843795,30403813 -g1,15375:9159941,30403813 -g1,15375:9476087,30403813 -g1,15375:9792233,30403813 -g1,15375:12953690,30403813 -g1,15375:15482856,30403813 -g1,15375:18328167,30403813 -g1,15375:18960459,30403813 -g1,15375:19908897,30403813 -g1,15375:20857335,30403813 -g1,15375:22121918,30403813 -g1,15375:22754210,30403813 -g1,15375:23702647,30403813 -k1,15375:23702647,30403813:0 -h1,15375:24651085,30403813:0,0,0 -k1,15375:32583029,30403813:7931944 -g1,15375:32583029,30403813 -) -(1,15376:6630773,31069991:25952256,404226,101187 -h1,15376:6630773,31069991:0,0,0 -g1,15376:6946919,31069991 -g1,15376:7263065,31069991 -g1,15376:7579211,31069991 -g1,15376:7895357,31069991 -g1,15376:9159940,31069991 -g1,15376:9792232,31069991 -h1,15376:11372961,31069991:0,0,0 -k1,15376:32583029,31069991:21210068 -g1,15376:32583029,31069991 -) -(1,15377:6630773,31736169:25952256,404226,76021 -h1,15377:6630773,31736169:0,0,0 -g1,15377:6946919,31736169 -g1,15377:7263065,31736169 -g1,15377:7579211,31736169 -g1,15377:7895357,31736169 -h1,15377:8211503,31736169:0,0,0 -k1,15377:32583029,31736169:24371526 -g1,15377:32583029,31736169 -) -(1,15378:6630773,32402347:25952256,404226,76021 -h1,15378:6630773,32402347:0,0,0 -h1,15378:6946919,32402347:0,0,0 -k1,15378:32583029,32402347:25636110 -g1,15378:32583029,32402347 -) -] -) -g1,15380:32583029,32478368 -g1,15380:6630773,32478368 -g1,15380:6630773,32478368 -g1,15380:32583029,32478368 -g1,15380:32583029,32478368 -) -h1,15380:6630773,32674976:0,0,0 -(1,15384:6630773,34040752:25952256,513147,126483 -h1,15383:6630773,34040752:983040,0,0 -k1,15383:9034850,34040752:224350 -(1,15383:9034850,34040752:0,452978,115847 -r1,15413:11855099,34040752:2820249,568825,115847 -k1,15383:9034850,34040752:-2820249 -) -(1,15383:9034850,34040752:2820249,452978,115847 -k1,15383:9034850,34040752:3277 -h1,15383:11851822,34040752:0,411205,112570 -) -k1,15383:12079449,34040752:224350 -k1,15383:16010516,34040752:224351 -k1,15383:16996394,34040752:224350 -k1,15383:19486324,34040752:224350 -k1,15383:21203584,34040752:224350 -k1,15383:22494205,34040752:224350 -k1,15383:25111274,34040752:224350 -k1,15383:28310304,34040752:224351 -k1,15383:29924017,34040752:224350 -k1,15383:31415833,34040752:224350 -k1,15384:32583029,34040752:0 -) -(1,15384:6630773,34882240:25952256,513147,115847 -k1,15383:8333938,34882240:259407 -k1,15383:10282862,34882240:259406 -k1,15383:11561354,34882240:259407 -(1,15383:11561354,34882240:0,459977,115847 -r1,15413:15788450,34882240:4227096,575824,115847 -k1,15383:11561354,34882240:-4227096 -) -(1,15383:11561354,34882240:4227096,459977,115847 -k1,15383:11561354,34882240:3277 -h1,15383:15785173,34882240:0,411205,112570 -) -k1,15383:16047857,34882240:259407 -k1,15383:20013979,34882240:259406 -k1,15383:21316064,34882240:259407 -k1,15383:23618228,34882240:259407 -k1,15383:24292417,34882240:259346 -k1,15383:26885561,34882240:259407 -k1,15383:28861355,34882240:259406 -k1,15383:30317449,34882240:259407 -k1,15383:32583029,34882240:0 -) -(1,15384:6630773,35723728:25952256,505283,134348 -k1,15383:7954000,35723728:218945 -k1,15383:8920710,35723728:218944 -k1,15383:12620272,35723728:218945 -k1,15383:15397743,35723728:218945 -k1,15383:16387390,35723728:218944 -k1,15383:19678663,35723728:218945 -k1,15383:22102895,35723728:218945 -k1,15383:22973267,35723728:218944 -k1,15383:24888939,35723728:218945 -k1,15383:29318572,35723728:218945 -k1,15383:30728961,35723728:218944 -k1,15383:31563944,35723728:218945 -k1,15383:32583029,35723728:0 -) -(1,15384:6630773,36565216:25952256,513147,134348 -k1,15383:8232272,36565216:234418 -k1,15383:9133846,36565216:234418 -(1,15383:9133846,36565216:0,459977,115847 -r1,15413:13360942,36565216:4227096,575824,115847 -k1,15383:9133846,36565216:-4227096 -) -(1,15383:9133846,36565216:4227096,459977,115847 -k1,15383:9133846,36565216:3277 -h1,15383:13357665,36565216:0,411205,112570 -) -k1,15383:13595360,36565216:234418 -k1,15383:15115594,36565216:234418 -k1,15383:16111540,36565216:234418 -k1,15383:18527652,36565216:234418 -k1,15383:19532773,36565216:234418 -k1,15383:20181999,36565216:234383 -k1,15383:22672822,36565216:234418 -k1,15383:24288084,36565216:234418 -k1,15383:25805697,36565216:234418 -k1,15383:29214679,36565216:234418 -k1,15383:31931601,36565216:234418 -k1,15383:32583029,36565216:0 -) -(1,15384:6630773,37406704:25952256,513147,134348 -g1,15383:9525498,37406704 -(1,15383:9525498,37406704:0,452978,115847 -r1,15413:13752594,37406704:4227096,568825,115847 -k1,15383:9525498,37406704:-4227096 -) -(1,15383:9525498,37406704:4227096,452978,115847 -k1,15383:9525498,37406704:3277 -h1,15383:13749317,37406704:0,411205,112570 -) -g1,15383:13951823,37406704 -g1,15383:15342497,37406704 -g1,15383:16330124,37406704 -g1,15383:19502066,37406704 -g1,15383:20933372,37406704 -g1,15383:23411288,37406704 -h1,15383:24780335,37406704:0,0,0 -g1,15383:24979564,37406704 -g1,15383:25988163,37406704 -g1,15383:27685545,37406704 -h1,15383:28880922,37406704:0,0,0 -k1,15384:32583029,37406704:3321343 -g1,15384:32583029,37406704 -) -v1,15386:6630773,38597170:0,393216,0 -(1,15407:6630773,44892524:25952256,6688570,196608 -g1,15407:6630773,44892524 -g1,15407:6630773,44892524 -g1,15407:6434165,44892524 -(1,15407:6434165,44892524:0,6688570,196608 -r1,15413:32779637,44892524:26345472,6885178,196608 -k1,15407:6434165,44892524:-26345472 -) -(1,15407:6434165,44892524:26345472,6688570,196608 -[1,15407:6630773,44892524:25952256,6491962,0 -(1,15388:6630773,38811080:25952256,410518,107478 -(1,15387:6630773,38811080:0,0,0 -g1,15387:6630773,38811080 -g1,15387:6630773,38811080 -g1,15387:6303093,38811080 -(1,15387:6303093,38811080:0,0,0 -) -g1,15387:6630773,38811080 -) -g1,15388:8527647,38811080 -g1,15388:9476085,38811080 -g1,15388:14850562,38811080 -g1,15388:15482854,38811080 -g1,15388:17695875,38811080 -g1,15388:19276604,38811080 -g1,15388:21173479,38811080 -g1,15388:23702645,38811080 -g1,15388:24334937,38811080 -g1,15388:25915667,38811080 -g1,15388:28760978,38811080 -g1,15388:29393270,38811080 -h1,15388:31290144,38811080:0,0,0 -k1,15388:32583029,38811080:1292885 -g1,15388:32583029,38811080 -) -(1,15389:6630773,39477258:25952256,410518,101187 -h1,15389:6630773,39477258:0,0,0 -k1,15389:6630773,39477258:0 -h1,15389:12953687,39477258:0,0,0 -k1,15389:32583029,39477258:19629342 -g1,15389:32583029,39477258 -) -(1,15393:6630773,40143436:25952256,404226,76021 -(1,15391:6630773,40143436:0,0,0 -g1,15391:6630773,40143436 -g1,15391:6630773,40143436 -g1,15391:6303093,40143436 -(1,15391:6303093,40143436:0,0,0 -) -g1,15391:6630773,40143436 -) -g1,15393:7579210,40143436 -g1,15393:8843793,40143436 -h1,15393:10108376,40143436:0,0,0 -k1,15393:32583028,40143436:22474652 -g1,15393:32583028,40143436 -) -(1,15395:6630773,41464974:25952256,410518,101187 -(1,15394:6630773,41464974:0,0,0 -g1,15394:6630773,41464974 -g1,15394:6630773,41464974 -g1,15394:6303093,41464974 -(1,15394:6303093,41464974:0,0,0 -) -g1,15394:6630773,41464974 -) -k1,15395:6630773,41464974:0 -h1,15395:11689104,41464974:0,0,0 -k1,15395:32583028,41464974:20893924 -g1,15395:32583028,41464974 -) -(1,15399:6630773,42131152:25952256,404226,76021 -(1,15397:6630773,42131152:0,0,0 -g1,15397:6630773,42131152 -g1,15397:6630773,42131152 -g1,15397:6303093,42131152 -(1,15397:6303093,42131152:0,0,0 -) -g1,15397:6630773,42131152 -) -g1,15399:7579210,42131152 -g1,15399:8843793,42131152 -h1,15399:10424521,42131152:0,0,0 -k1,15399:32583029,42131152:22158508 -g1,15399:32583029,42131152 -) -(1,15401:6630773,43452690:25952256,410518,101187 -(1,15400:6630773,43452690:0,0,0 -g1,15400:6630773,43452690 -g1,15400:6630773,43452690 -g1,15400:6303093,43452690 -(1,15400:6303093,43452690:0,0,0 -) -g1,15400:6630773,43452690 -) -k1,15401:6630773,43452690:0 -h1,15401:12637541,43452690:0,0,0 -k1,15401:32583029,43452690:19945488 -g1,15401:32583029,43452690 -) -(1,15406:6630773,44118868:25952256,410518,107478 -(1,15403:6630773,44118868:0,0,0 -g1,15403:6630773,44118868 -g1,15403:6630773,44118868 -g1,15403:6303093,44118868 -(1,15403:6303093,44118868:0,0,0 -) -g1,15403:6630773,44118868 -) -g1,15406:7579210,44118868 -g1,15406:11056813,44118868 -h1,15406:14534415,44118868:0,0,0 -k1,15406:32583029,44118868:18048614 -g1,15406:32583029,44118868 -) -(1,15406:6630773,44785046:25952256,404226,107478 -h1,15406:6630773,44785046:0,0,0 -g1,15406:7579210,44785046 -g1,15406:9792230,44785046 -g1,15406:13269833,44785046 -g1,15406:16115144,44785046 -g1,15406:18960456,44785046 -g1,15406:22121913,44785046 -h1,15406:24334933,44785046:0,0,0 -k1,15406:32583029,44785046:8248096 -g1,15406:32583029,44785046 -) -] -) -g1,15407:32583029,44892524 -g1,15407:6630773,44892524 -g1,15407:6630773,44892524 -g1,15407:32583029,44892524 -g1,15407:32583029,44892524 +k1,15456:3078556,2439708:-34777008 ) -h1,15407:6630773,45089132:0,0,0 ] -(1,15413:32583029,45706769:0,0,0 -g1,15413:32583029,45706769 +[1,15456:3078558,4812305:0,0,0 +(1,15456:3078558,49800853:0,16384,2228224 +k1,15456:1358238,49800853:-1720320 +(1,12049:1358238,49800853:1720320,16384,2228224 +(1,12049:1358238,49800853:1179648,16384,0 +r1,15456:2537886,49800853:1179648,16384,0 ) +g1,12049:3062174,49800853 +(1,12049:3062174,52029077:16384,1703936,0 +[1,12049:3062174,52029077:25952256,1703936,0 +(1,12049:3062174,51504789:25952256,1179648,0 +(1,12049:3062174,51504789:16384,1179648,0 +r1,15456:3078558,51504789:16384,1179648,0 ) -] -(1,15413:6630773,47279633:25952256,0,0 -h1,15413:6630773,47279633:25952256,0,0 +k1,12049:29014430,51504789:25935872 +g1,12049:29014430,51504789 ) ] -(1,15413:4262630,4025873:0,0,0 -[1,15413:-473656,4025873:0,0,0 -(1,15413:-473656,-710413:0,0,0 -(1,15413:-473656,-710413:0,0,0 -g1,15413:-473656,-710413 ) -g1,15413:-473656,-710413 ) -] ) ] -!26390 -}265 -Input:2258:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2259:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2260:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2261:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2262:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2263:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!576 -{266 -[1,15504:4262630,47279633:28320399,43253760,0 -(1,15504:4262630,4025873:0,0,0 -[1,15504:-473656,4025873:0,0,0 -(1,15504:-473656,-710413:0,0,0 -(1,15504:-473656,-644877:0,0,0 -k1,15504:-473656,-644877:-65536 +[1,15456:3078558,4812305:0,0,0 +(1,15456:3078558,49800853:0,16384,2228224 +g1,15456:29030814,49800853 +g1,15456:36135244,49800853 +(1,12049:36135244,49800853:1720320,16384,2228224 +(1,12049:36135244,52029077:16384,1703936,0 +[1,12049:36135244,52029077:25952256,1703936,0 +(1,12049:36135244,51504789:25952256,1179648,0 +(1,12049:36135244,51504789:16384,1179648,0 +r1,15456:36151628,51504789:16384,1179648,0 +) +k1,12049:62087500,51504789:25935872 +g1,12049:62087500,51504789 +) +] +) +g1,12049:36675916,49800853 +(1,12049:36675916,49800853:1179648,16384,0 +r1,15456:37855564,49800853:1179648,16384,0 +) +) +k1,15456:3078556,49800853:-34777008 +) +] +g1,15456:6630773,4812305 +k1,15456:19540057,4812305:11713907 +g1,15456:21162728,4812305 +g1,15456:21985204,4812305 +g1,15456:24539797,4812305 +g1,15456:25949476,4812305 +g1,15456:28728857,4812305 +g1,15456:29852144,4812305 +) +) +] +[1,15456:6630773,45706769:25952256,40108032,0 +(1,15456:6630773,45706769:25952256,40108032,0 +(1,15456:6630773,45706769:0,0,0 +g1,15456:6630773,45706769 +) +[1,15456:6630773,45706769:25952256,40108032,0 +v1,15395:6630773,6254097:0,393216,0 +(1,15411:6630773,13471458:25952256,7610577,196608 +g1,15411:6630773,13471458 +g1,15411:6630773,13471458 +g1,15411:6434165,13471458 +(1,15411:6434165,13471458:0,7610577,196608 +r1,15456:32779637,13471458:26345472,7807185,196608 +k1,15411:6434165,13471458:-26345472 +) +(1,15411:6434165,13471458:26345472,7610577,196608 +[1,15411:6630773,13471458:25952256,7413969,0 +(1,15397:6630773,6481928:25952256,424439,86428 +(1,15396:6630773,6481928:0,0,0 +g1,15396:6630773,6481928 +g1,15396:6630773,6481928 +g1,15396:6303093,6481928 +(1,15396:6303093,6481928:0,0,0 +) +g1,15396:6630773,6481928 +) +k1,15397:6630773,6481928:0 +g1,15397:10282267,6481928 +g1,15397:10946175,6481928 +g1,15397:11610083,6481928 +h1,15397:12273991,6481928:0,0,0 +k1,15397:32583029,6481928:20309038 +g1,15397:32583029,6481928 +) +(1,15410:6630773,7297855:25952256,424439,112852 +(1,15399:6630773,7297855:0,0,0 +g1,15399:6630773,7297855 +g1,15399:6630773,7297855 +g1,15399:6303093,7297855 +(1,15399:6303093,7297855:0,0,0 +) +g1,15399:6630773,7297855 +) +k1,15410:7596445,7297855:301764 +k1,15410:7898210,7297855:301765 +k1,15410:8199974,7297855:301764 +k1,15410:8501738,7297855:301764 +k1,15410:8803502,7297855:301764 +k1,15410:9105267,7297855:301765 +k1,15410:9407031,7297855:301764 +k1,15410:9708795,7297855:301764 +k1,15410:10010559,7297855:301764 +k1,15410:10312324,7297855:301765 +k1,15410:12605812,7297855:301764 +k1,15410:12907576,7297855:301764 +k1,15410:13209340,7297855:301764 +k1,15410:13511105,7297855:301765 +k1,15410:13812869,7297855:301764 +k1,15410:14114633,7297855:301764 +k1,15410:14416397,7297855:301764 +k1,15410:17705747,7297855:301765 +k1,15410:18007511,7297855:301764 +k1,15410:18309275,7297855:301764 +k1,15410:18611039,7297855:301764 +k1,15410:18912804,7297855:301765 +k1,15410:19214568,7297855:301764 +k1,15410:19516332,7297855:301764 +k1,15410:19818097,7297855:301765 +k1,15410:22775492,7297855:301764 +k1,15410:23077256,7297855:301764 +k1,15410:23379020,7297855:301764 +k1,15410:23680785,7297855:301765 +k1,15410:23982549,7297855:301764 +k1,15410:24284313,7297855:301764 +k1,15410:24586077,7297855:301764 +k1,15410:24887842,7297855:301765 +k1,15410:25189606,7297855:301764 +k1,15410:25491370,7297855:301764 +k1,15410:27784858,7297855:301764 +k1,15410:28086623,7297855:301765 +k1,15410:28388387,7297855:301764 +k1,15410:28690151,7297855:301764 +k1,15410:28991915,7297855:301764 +k1,15410:29293680,7297855:301765 +k1,15410:29595444,7297855:301764 +h1,15410:32583029,7297855:0,0,0 +k1,15410:32583029,7297855:0 +k1,15410:32583029,7297855:0 +) +(1,15410:6630773,7982710:25952256,407923,9908 +h1,15410:6630773,7982710:0,0,0 +k1,15410:7609729,7982710:315048 +k1,15410:7924776,7982710:315047 +k1,15410:8239824,7982710:315048 +k1,15410:8554872,7982710:315048 +k1,15410:8869920,7982710:315048 +k1,15410:9184967,7982710:315047 +k1,15410:9500015,7982710:315048 +k1,15410:9815063,7982710:315048 +k1,15410:10130110,7982710:315047 +k1,15410:10445158,7982710:315048 +k1,15410:10760206,7982710:315048 +k1,15410:11075253,7982710:315047 +k1,15410:11390301,7982710:315048 +k1,15410:11705349,7982710:315048 +k1,15410:12020397,7982710:315048 +k1,15410:12667398,7982710:315047 +k1,15410:12982446,7982710:315048 +k1,15410:13297494,7982710:315048 +k1,15410:13612541,7982710:315047 +k1,15410:13927589,7982710:315048 +k1,15410:14242637,7982710:315048 +k1,15410:14557685,7982710:315048 +k1,15410:14872732,7982710:315047 +k1,15410:15187780,7982710:315048 +k1,15410:15502828,7982710:315048 +k1,15410:15817875,7982710:315047 +k1,15410:16132923,7982710:315048 +k1,15410:16447971,7982710:315048 +k1,15410:16763018,7982710:315047 +k1,15410:17078066,7982710:315048 +k1,15410:17725068,7982710:315048 +k1,15410:18040116,7982710:315048 +k1,15410:18355163,7982710:315047 +k1,15410:18670211,7982710:315048 +k1,15410:18985259,7982710:315048 +k1,15410:19300306,7982710:315047 +k1,15410:19615354,7982710:315048 +k1,15410:19930402,7982710:315048 +k1,15410:20245450,7982710:315048 +k1,15410:20560497,7982710:315047 +k1,15410:20875545,7982710:315048 +k1,15410:21190593,7982710:315048 +k1,15410:21505640,7982710:315047 +k1,15410:21820688,7982710:315048 +k1,15410:22135736,7982710:315048 +k1,15410:22782737,7982710:315047 +k1,15410:23097785,7982710:315048 +k1,15410:23412833,7982710:315048 +k1,15410:23727881,7982710:315048 +k1,15410:24042928,7982710:315047 +k1,15410:24357976,7982710:315048 +k1,15410:24673024,7982710:315048 +k1,15410:24988071,7982710:315047 +k1,15410:25303119,7982710:315048 +k1,15410:25618167,7982710:315048 +k1,15410:25933215,7982710:315048 +k1,15410:26248262,7982710:315047 +k1,15410:26563310,7982710:315048 +k1,15410:26878358,7982710:315048 +k1,15410:27193405,7982710:315047 +k1,15410:27840407,7982710:315048 +k1,15410:28155455,7982710:315048 +k1,15410:28470502,7982710:315047 +k1,15410:28785550,7982710:315048 +k1,15410:29100598,7982710:315048 +k1,15410:29415646,7982710:315048 +k1,15410:29730693,7982710:315047 +k1,15410:30045741,7982710:315048 +k1,15410:30360789,7982710:315048 +k1,15410:30675836,7982710:315047 +k1,15410:30990884,7982710:315048 +k1,15410:31305932,7982710:315048 +k1,15410:31620980,7982710:315048 +k1,15410:31936027,7982710:315047 +k1,15410:32251075,7982710:315048 +h1,15410:32583029,7982710:0,0,0 +k1,15410:32583029,7982710:0 +k1,15410:32583029,7982710:0 +) +(1,15410:6630773,8667565:25952256,424439,112852 +h1,15410:6630773,8667565:0,0,0 +k1,15410:7595709,8667565:301028 +k1,15410:7896737,8667565:301028 +k1,15410:8197765,8667565:301028 +k1,15410:8498793,8667565:301028 +k1,15410:8799821,8667565:301028 +k1,15410:9100848,8667565:301027 +k1,15410:9401876,8667565:301028 +k1,15410:9702904,8667565:301028 +k1,15410:10003932,8667565:301028 +k1,15410:12628638,8667565:301028 +k1,15410:12929666,8667565:301028 +k1,15410:13230694,8667565:301028 +k1,15410:13531722,8667565:301028 +k1,15410:13832750,8667565:301028 +k1,15410:14133778,8667565:301028 +k1,15410:17754344,8667565:301027 +k1,15410:18055372,8667565:301028 +k1,15410:18356400,8667565:301028 +k1,15410:18657428,8667565:301028 +k1,15410:18958456,8667565:301028 +k1,15410:19259484,8667565:301028 +k1,15410:19560512,8667565:301028 +k1,15410:19861540,8667565:301028 +k1,15410:20162568,8667565:301028 +k1,15410:20463596,8667565:301028 +k1,15410:22756347,8667565:301027 +k1,15410:23057375,8667565:301028 +k1,15410:23358403,8667565:301028 +k1,15410:23659431,8667565:301028 +k1,15410:23960459,8667565:301028 +k1,15410:24261487,8667565:301028 +k1,15410:24562515,8667565:301028 +k1,15410:27851128,8667565:301028 +k1,15410:28152156,8667565:301028 +k1,15410:28453184,8667565:301028 +k1,15410:28754211,8667565:301027 +k1,15410:29055239,8667565:301028 +k1,15410:29356267,8667565:301028 +k1,15410:29657295,8667565:301028 +k1,15410:29958323,8667565:301028 +k1,15410:30259351,8667565:301028 +h1,15410:32583029,8667565:0,0,0 +k1,15410:32583029,8667565:0 +k1,15410:32583029,8667565:0 +) +(1,15410:6630773,9352420:25952256,407923,9908 +h1,15410:6630773,9352420:0,0,0 +k1,15410:7609729,9352420:315048 +k1,15410:7924776,9352420:315047 +k1,15410:8239824,9352420:315048 +k1,15410:8554872,9352420:315048 +k1,15410:8869920,9352420:315048 +k1,15410:9184967,9352420:315047 +k1,15410:9500015,9352420:315048 +k1,15410:9815063,9352420:315048 +k1,15410:10130110,9352420:315047 +k1,15410:10445158,9352420:315048 +k1,15410:10760206,9352420:315048 +k1,15410:11075253,9352420:315047 +k1,15410:11390301,9352420:315048 +k1,15410:11705349,9352420:315048 +k1,15410:12020397,9352420:315048 +k1,15410:12667398,9352420:315047 +k1,15410:12982446,9352420:315048 +k1,15410:13297494,9352420:315048 +k1,15410:13612541,9352420:315047 +k1,15410:13927589,9352420:315048 +k1,15410:14242637,9352420:315048 +k1,15410:14557685,9352420:315048 +k1,15410:14872732,9352420:315047 +k1,15410:15187780,9352420:315048 +k1,15410:15502828,9352420:315048 +k1,15410:15817875,9352420:315047 +k1,15410:16132923,9352420:315048 +k1,15410:16447971,9352420:315048 +k1,15410:16763018,9352420:315047 +k1,15410:17078066,9352420:315048 +k1,15410:17725068,9352420:315048 +k1,15410:18040116,9352420:315048 +k1,15410:18355163,9352420:315047 +k1,15410:18670211,9352420:315048 +k1,15410:18985259,9352420:315048 +k1,15410:19300306,9352420:315047 +k1,15410:19615354,9352420:315048 +k1,15410:19930402,9352420:315048 +k1,15410:20245450,9352420:315048 +k1,15410:20560497,9352420:315047 +k1,15410:20875545,9352420:315048 +k1,15410:21190593,9352420:315048 +k1,15410:21505640,9352420:315047 +k1,15410:21820688,9352420:315048 +k1,15410:22135736,9352420:315048 +k1,15410:22782737,9352420:315047 +k1,15410:23097785,9352420:315048 +k1,15410:23412833,9352420:315048 +k1,15410:23727881,9352420:315048 +k1,15410:24042928,9352420:315047 +k1,15410:24357976,9352420:315048 +k1,15410:24673024,9352420:315048 +k1,15410:24988071,9352420:315047 +k1,15410:25303119,9352420:315048 +k1,15410:25618167,9352420:315048 +k1,15410:25933215,9352420:315048 +k1,15410:26248262,9352420:315047 +k1,15410:26563310,9352420:315048 +k1,15410:26878358,9352420:315048 +k1,15410:27193405,9352420:315047 +k1,15410:27840407,9352420:315048 +k1,15410:28155455,9352420:315048 +k1,15410:28470502,9352420:315047 +k1,15410:28785550,9352420:315048 +k1,15410:29100598,9352420:315048 +k1,15410:29415646,9352420:315048 +k1,15410:29730693,9352420:315047 +k1,15410:30045741,9352420:315048 +k1,15410:30360789,9352420:315048 +k1,15410:30675836,9352420:315047 +k1,15410:30990884,9352420:315048 +k1,15410:31305932,9352420:315048 +k1,15410:31620980,9352420:315048 +k1,15410:31936027,9352420:315047 +k1,15410:32251075,9352420:315048 +h1,15410:32583029,9352420:0,0,0 +k1,15410:32583029,9352420:0 +k1,15410:32583029,9352420:0 +) +(1,15410:6630773,10037275:25952256,431045,106246 +h1,15410:6630773,10037275:0,0,0 +k1,15410:7594936,10037275:300255 +k1,15410:9223006,10037275:300254 +k1,15410:10187169,10037275:300255 +k1,15410:12811102,10037275:300255 +k1,15410:13111357,10037275:300255 +k1,15410:13411611,10037275:300254 +k1,15410:13711866,10037275:300255 +k1,15410:14012121,10037275:300255 +k1,15410:14312375,10037275:300254 +k1,15410:14612630,10037275:300255 +k1,15410:14912885,10037275:300255 +k1,15410:15213140,10037275:300255 +k1,15410:15513394,10037275:300254 +k1,15410:17805373,10037275:300255 +k1,15410:18105628,10037275:300255 +k1,15410:18405883,10037275:300255 +k1,15410:18706137,10037275:300254 +k1,15410:19006392,10037275:300255 +k1,15410:19306647,10037275:300255 +k1,15410:19606901,10037275:300254 +k1,15410:19907156,10037275:300255 +k1,15410:20207411,10037275:300255 +k1,15410:20507666,10037275:300255 +k1,15410:20807920,10037275:300254 +k1,15410:22767945,10037275:300255 +k1,15410:23068200,10037275:300255 +k1,15410:23368455,10037275:300255 +k1,15410:23668709,10037275:300254 +k1,15410:23968964,10037275:300255 +k1,15410:24269219,10037275:300255 +k1,15410:24569473,10037275:300254 +k1,15410:24869728,10037275:300255 +k1,15410:25169983,10037275:300255 +k1,15410:25470238,10037275:300255 +k1,15410:27762216,10037275:300254 +k1,15410:28062471,10037275:300255 +k1,15410:28362726,10037275:300255 +k1,15410:28662980,10037275:300254 +k1,15410:28963235,10037275:300255 +k1,15410:29263490,10037275:300255 +h1,15410:32583029,10037275:0,0,0 +k1,15410:32583029,10037275:0 +k1,15410:32583029,10037275:0 +) +(1,15410:6630773,10722130:25952256,407923,9908 +h1,15410:6630773,10722130:0,0,0 +k1,15410:7609729,10722130:315048 +k1,15410:7924776,10722130:315047 +k1,15410:8239824,10722130:315048 +k1,15410:8554872,10722130:315048 +k1,15410:8869920,10722130:315048 +k1,15410:9184967,10722130:315047 +k1,15410:9500015,10722130:315048 +k1,15410:9815063,10722130:315048 +k1,15410:10130110,10722130:315047 +k1,15410:10445158,10722130:315048 +k1,15410:10760206,10722130:315048 +k1,15410:11075253,10722130:315047 +k1,15410:11390301,10722130:315048 +k1,15410:11705349,10722130:315048 +k1,15410:12020397,10722130:315048 +k1,15410:12667398,10722130:315047 +k1,15410:12982446,10722130:315048 +k1,15410:13297494,10722130:315048 +k1,15410:13612541,10722130:315047 +k1,15410:13927589,10722130:315048 +k1,15410:14242637,10722130:315048 +k1,15410:14557685,10722130:315048 +k1,15410:14872732,10722130:315047 +k1,15410:15187780,10722130:315048 +k1,15410:15502828,10722130:315048 +k1,15410:15817875,10722130:315047 +k1,15410:16132923,10722130:315048 +k1,15410:16447971,10722130:315048 +k1,15410:16763018,10722130:315047 +k1,15410:17078066,10722130:315048 +k1,15410:17725068,10722130:315048 +k1,15410:18040116,10722130:315048 +k1,15410:18355163,10722130:315047 +k1,15410:18670211,10722130:315048 +k1,15410:18985259,10722130:315048 +k1,15410:19300306,10722130:315047 +k1,15410:19615354,10722130:315048 +k1,15410:19930402,10722130:315048 +k1,15410:20245450,10722130:315048 +k1,15410:20560497,10722130:315047 +k1,15410:20875545,10722130:315048 +k1,15410:21190593,10722130:315048 +k1,15410:21505640,10722130:315047 +k1,15410:21820688,10722130:315048 +k1,15410:22135736,10722130:315048 +k1,15410:22782737,10722130:315047 +k1,15410:23097785,10722130:315048 +k1,15410:23412833,10722130:315048 +k1,15410:23727881,10722130:315048 +k1,15410:24042928,10722130:315047 +k1,15410:24357976,10722130:315048 +k1,15410:24673024,10722130:315048 +k1,15410:24988071,10722130:315047 +k1,15410:25303119,10722130:315048 +k1,15410:25618167,10722130:315048 +k1,15410:25933215,10722130:315048 +k1,15410:26248262,10722130:315047 +k1,15410:26563310,10722130:315048 +k1,15410:26878358,10722130:315048 +k1,15410:27193405,10722130:315047 +k1,15410:27840407,10722130:315048 +k1,15410:28155455,10722130:315048 +k1,15410:28470502,10722130:315047 +k1,15410:28785550,10722130:315048 +k1,15410:29100598,10722130:315048 +k1,15410:29415646,10722130:315048 +k1,15410:29730693,10722130:315047 +k1,15410:30045741,10722130:315048 +k1,15410:30360789,10722130:315048 +k1,15410:30675836,10722130:315047 +k1,15410:30990884,10722130:315048 +k1,15410:31305932,10722130:315048 +k1,15410:31620980,10722130:315048 +k1,15410:31936027,10722130:315047 +k1,15410:32251075,10722130:315048 +h1,15410:32583029,10722130:0,0,0 +k1,15410:32583029,10722130:0 +k1,15410:32583029,10722130:0 +) +(1,15410:6630773,11406985:25952256,424439,8257 +h1,15410:6630773,11406985:0,0,0 +k1,15410:7601773,11406985:307092 +k1,15410:7908865,11406985:307092 +k1,15410:8215956,11406985:307091 +k1,15410:8523048,11406985:307092 +k1,15410:8830140,11406985:307092 +k1,15410:9137232,11406985:307092 +k1,15410:9444324,11406985:307092 +k1,15410:9751416,11406985:307092 +k1,15410:10058507,11406985:307091 +k1,15410:10365599,11406985:307092 +k1,15410:10672691,11406985:307092 +k1,15410:12639553,11406985:307092 +k1,15410:12946645,11406985:307092 +k1,15410:13253737,11406985:307092 +k1,15410:13560828,11406985:307091 +k1,15410:13867920,11406985:307092 +k1,15410:14175012,11406985:307092 +k1,15410:14482104,11406985:307092 +k1,15410:14789196,11406985:307092 +k1,15410:15096287,11406985:307091 +k1,15410:15403379,11406985:307092 +k1,15410:17702195,11406985:307092 +k1,15410:18009287,11406985:307092 +k1,15410:18316379,11406985:307092 +k1,15410:18623471,11406985:307092 +k1,15410:18930562,11406985:307091 +k1,15410:19237654,11406985:307092 +k1,15410:19544746,11406985:307092 +k1,15410:19851838,11406985:307092 +k1,15410:20158930,11406985:307092 +k1,15410:20466021,11406985:307091 +k1,15410:20773113,11406985:307092 +k1,15410:22739975,11406985:307092 +k1,15410:23047067,11406985:307092 +k1,15410:23354159,11406985:307092 +k1,15410:23661251,11406985:307092 +k1,15410:23968342,11406985:307091 +k1,15410:24275434,11406985:307092 +k1,15410:24582526,11406985:307092 +k1,15410:24889618,11406985:307092 +k1,15410:25196710,11406985:307092 +k1,15410:25503802,11406985:307092 +k1,15410:25810893,11406985:307091 +k1,15410:26117985,11406985:307092 +k1,15410:27752893,11406985:307092 +k1,15410:28059985,11406985:307092 +k1,15410:28367077,11406985:307092 +k1,15410:28674168,11406985:307091 +k1,15410:28981260,11406985:307092 +k1,15410:29288352,11406985:307092 +k1,15410:29595444,11406985:307092 +h1,15410:32583029,11406985:0,0,0 +k1,15410:32583029,11406985:0 +k1,15410:32583029,11406985:0 +) +(1,15410:6630773,12091840:25952256,407923,9908 +h1,15410:6630773,12091840:0,0,0 +k1,15410:7609729,12091840:315048 +k1,15410:7924776,12091840:315047 +k1,15410:8239824,12091840:315048 +k1,15410:8554872,12091840:315048 +k1,15410:8869920,12091840:315048 +k1,15410:9184967,12091840:315047 +k1,15410:9500015,12091840:315048 +k1,15410:9815063,12091840:315048 +k1,15410:10130110,12091840:315047 +k1,15410:10445158,12091840:315048 +k1,15410:10760206,12091840:315048 +k1,15410:11075253,12091840:315047 +k1,15410:11390301,12091840:315048 +k1,15410:11705349,12091840:315048 +k1,15410:12020397,12091840:315048 +k1,15410:12667398,12091840:315047 +k1,15410:12982446,12091840:315048 +k1,15410:13297494,12091840:315048 +k1,15410:13612541,12091840:315047 +k1,15410:13927589,12091840:315048 +k1,15410:14242637,12091840:315048 +k1,15410:14557685,12091840:315048 +k1,15410:14872732,12091840:315047 +k1,15410:15187780,12091840:315048 +k1,15410:15502828,12091840:315048 +k1,15410:15817875,12091840:315047 +k1,15410:16132923,12091840:315048 +k1,15410:16447971,12091840:315048 +k1,15410:16763018,12091840:315047 +k1,15410:17078066,12091840:315048 +k1,15410:17725068,12091840:315048 +k1,15410:18040116,12091840:315048 +k1,15410:18355163,12091840:315047 +k1,15410:18670211,12091840:315048 +k1,15410:18985259,12091840:315048 +k1,15410:19300306,12091840:315047 +k1,15410:19615354,12091840:315048 +k1,15410:19930402,12091840:315048 +k1,15410:20245450,12091840:315048 +k1,15410:20560497,12091840:315047 +k1,15410:20875545,12091840:315048 +k1,15410:21190593,12091840:315048 +k1,15410:21505640,12091840:315047 +k1,15410:21820688,12091840:315048 +k1,15410:22135736,12091840:315048 +k1,15410:22782737,12091840:315047 +k1,15410:23097785,12091840:315048 +k1,15410:23412833,12091840:315048 +k1,15410:23727881,12091840:315048 +k1,15410:24042928,12091840:315047 +k1,15410:24357976,12091840:315048 +k1,15410:24673024,12091840:315048 +k1,15410:24988071,12091840:315047 +k1,15410:25303119,12091840:315048 +k1,15410:25618167,12091840:315048 +k1,15410:25933215,12091840:315048 +k1,15410:26248262,12091840:315047 +k1,15410:26563310,12091840:315048 +k1,15410:26878358,12091840:315048 +k1,15410:27193405,12091840:315047 +k1,15410:27840407,12091840:315048 +k1,15410:28155455,12091840:315048 +k1,15410:28470502,12091840:315047 +k1,15410:28785550,12091840:315048 +k1,15410:29100598,12091840:315048 +k1,15410:29415646,12091840:315048 +k1,15410:29730693,12091840:315047 +k1,15410:30045741,12091840:315048 +k1,15410:30360789,12091840:315048 +k1,15410:30675836,12091840:315047 +k1,15410:30990884,12091840:315048 +k1,15410:31305932,12091840:315048 +k1,15410:31620980,12091840:315048 +k1,15410:31936027,12091840:315047 +k1,15410:32251075,12091840:315048 +h1,15410:32583029,12091840:0,0,0 +k1,15410:32583029,12091840:0 +k1,15410:32583029,12091840:0 +) +(1,15410:6630773,12776695:25952256,424439,6605 +h1,15410:6630773,12776695:0,0,0 +g1,15410:7626635,12776695 +g1,15410:7958589,12776695 +g1,15410:8290543,12776695 +g1,15410:8622497,12776695 +g1,15410:8954451,12776695 +g1,15410:9286405,12776695 +g1,15410:9618359,12776695 +g1,15410:9950313,12776695 +g1,15410:10282267,12776695 +g1,15410:10614221,12776695 +h1,15410:12605945,12776695:0,0,0 +k1,15410:32583029,12776695:19977084 +g1,15410:32583029,12776695 +) +(1,15410:6630773,13461550:25952256,407923,9908 +h1,15410:6630773,13461550:0,0,0 +g1,15410:7626635,13461550 +g1,15410:7958589,13461550 +g1,15410:8290543,13461550 +g1,15410:8622497,13461550 +g1,15410:8954451,13461550 +g1,15410:9286405,13461550 +g1,15410:9618359,13461550 +g1,15410:9950313,13461550 +g1,15410:10282267,13461550 +g1,15410:10614221,13461550 +g1,15410:10946175,13461550 +g1,15410:11278129,13461550 +g1,15410:11610083,13461550 +g1,15410:11942037,13461550 +g1,15410:12273991,13461550 +h1,15410:12605945,13461550:0,0,0 +k1,15410:32583029,13461550:19977084 +g1,15410:32583029,13461550 +) +] +) +g1,15411:32583029,13471458 +g1,15411:6630773,13471458 +g1,15411:6630773,13471458 +g1,15411:32583029,13471458 +g1,15411:32583029,13471458 +) +h1,15411:6630773,13668066:0,0,0 +(1,15416:6630773,14352921:25952256,513147,134348 +h1,15414:6630773,14352921:983040,0,0 +k1,15414:8984915,14352921:174415 +k1,15414:11118857,14352921:174416 +k1,15414:14071999,14352921:174415 +k1,15414:15007943,14352921:174416 +(1,15414:15007943,14352921:0,452978,115847 +r1,15456:17828192,14352921:2820249,568825,115847 +k1,15414:15007943,14352921:-2820249 +) +(1,15414:15007943,14352921:2820249,452978,115847 +k1,15414:15007943,14352921:3277 +h1,15414:17824915,14352921:0,411205,112570 +) +k1,15414:18002607,14352921:174415 +k1,15414:20879072,14352921:174416 +k1,15414:23170955,14352921:174415 +k1,15414:24004663,14352921:174416 +k1,15414:25198163,14352921:174415 +k1,15414:27215451,14352921:174416 +k1,15414:28049158,14352921:174415 +k1,15414:29242659,14352921:174416 +k1,15414:32583029,14352921:0 +) +(1,15416:6630773,15037776:25952256,513147,134348 +g1,15414:8715473,15037776 +g1,15414:10926657,15037776 +g1,15414:13401296,15037776 +g1,15414:17856433,15037776 +g1,15414:19247107,15037776 +g1,15414:22144453,15037776 +k1,15416:32583029,15037776:10438576 +g1,15416:32583029,15037776 +) +v1,15416:6630773,15722631:0,393216,0 +(1,15431:6630773,22331657:25952256,7002242,196608 +g1,15431:6630773,22331657 +g1,15431:6630773,22331657 +g1,15431:6434165,22331657 +(1,15431:6434165,22331657:0,7002242,196608 +r1,15456:32779637,22331657:26345472,7198850,196608 +k1,15431:6434165,22331657:-26345472 +) +(1,15431:6434165,22331657:26345472,7002242,196608 +[1,15431:6630773,22331657:25952256,6805634,0 +(1,15418:6630773,15950462:25952256,424439,79822 +(1,15417:6630773,15950462:0,0,0 +g1,15417:6630773,15950462 +g1,15417:6630773,15950462 +g1,15417:6303093,15950462 +(1,15417:6303093,15950462:0,0,0 +) +g1,15417:6630773,15950462 +) +k1,15418:6630773,15950462:0 +h1,15418:8954451,15950462:0,0,0 +k1,15418:32583029,15950462:23628578 +g1,15418:32583029,15950462 +) +(1,15430:6630773,16766389:25952256,431045,6605 +(1,15420:6630773,16766389:0,0,0 +g1,15420:6630773,16766389 +g1,15420:6630773,16766389 +g1,15420:6303093,16766389 +(1,15420:6303093,16766389:0,0,0 +) +g1,15420:6630773,16766389 +) +g1,15430:7626635,16766389 +g1,15430:9286405,16766389 +g1,15430:10282267,16766389 +h1,15430:10614221,16766389:0,0,0 +k1,15430:32583029,16766389:21968808 +g1,15430:32583029,16766389 +) +(1,15430:6630773,17451244:25952256,431045,112852 +h1,15430:6630773,17451244:0,0,0 +g1,15430:7626635,17451244 +g1,15430:7958589,17451244 +g1,15430:8622497,17451244 +g1,15430:10614221,17451244 +g1,15430:10946175,17451244 +g1,15430:11278129,17451244 +g1,15430:11610083,17451244 +g1,15430:11942037,17451244 +g1,15430:12273991,17451244 +g1,15430:12937899,17451244 +g1,15430:14265715,17451244 +g1,15430:16589393,17451244 +g1,15430:18249163,17451244 +g1,15430:19245025,17451244 +g1,15430:20240887,17451244 +g1,15430:21236749,17451244 +g1,15430:22232611,17451244 +g1,15430:23560427,17451244 +g1,15430:24888243,17451244 +g1,15430:25884105,17451244 +g1,15430:26879967,17451244 +g1,15430:27875829,17451244 +g1,15430:29203645,17451244 +h1,15430:30199507,17451244:0,0,0 +k1,15430:32583029,17451244:2383522 +g1,15430:32583029,17451244 +) +(1,15430:6630773,18136099:25952256,431045,112852 +h1,15430:6630773,18136099:0,0,0 +g1,15430:7626635,18136099 +g1,15430:7958589,18136099 +g1,15430:8622497,18136099 +g1,15430:10946175,18136099 +g1,15430:11278129,18136099 +g1,15430:11610083,18136099 +g1,15430:11942037,18136099 +g1,15430:12273991,18136099 +g1,15430:12937899,18136099 +g1,15430:14265715,18136099 +g1,15430:16589393,18136099 +g1,15430:17917209,18136099 +g1,15430:19245025,18136099 +g1,15430:20572841,18136099 +g1,15430:21900657,18136099 +g1,15430:23228473,18136099 +g1,15430:24556289,18136099 +g1,15430:25884105,18136099 +g1,15430:27211921,18136099 +g1,15430:28539737,18136099 +g1,15430:29867553,18136099 +h1,15430:30863415,18136099:0,0,0 +k1,15430:32583029,18136099:1719614 +g1,15430:32583029,18136099 +) +(1,15430:6630773,18820954:25952256,431045,79822 +h1,15430:6630773,18820954:0,0,0 +g1,15430:7626635,18820954 +g1,15430:7958589,18820954 +g1,15430:8622497,18820954 +g1,15430:10614221,18820954 +g1,15430:10946175,18820954 +g1,15430:11278129,18820954 +g1,15430:11610083,18820954 +g1,15430:11942037,18820954 +g1,15430:12273991,18820954 +g1,15430:12937899,18820954 +g1,15430:14265715,18820954 +g1,15430:16589393,18820954 +g1,15430:17253301,18820954 +g1,15430:18249163,18820954 +g1,15430:18913071,18820954 +g1,15430:19908933,18820954 +g1,15430:20904795,18820954 +g1,15430:21900657,18820954 +g1,15430:22564565,18820954 +g1,15430:23560427,18820954 +g1,15430:24556289,18820954 +g1,15430:25220197,18820954 +h1,15430:26216059,18820954:0,0,0 +k1,15430:32583029,18820954:6366970 +g1,15430:32583029,18820954 +) +(1,15430:6630773,19505809:25952256,431045,79822 +h1,15430:6630773,19505809:0,0,0 +g1,15430:7626635,19505809 +g1,15430:7958589,19505809 +g1,15430:8622497,19505809 +g1,15430:10946175,19505809 +g1,15430:11278129,19505809 +g1,15430:11610083,19505809 +g1,15430:11942037,19505809 +g1,15430:12273991,19505809 +g1,15430:12937899,19505809 +g1,15430:14265715,19505809 +g1,15430:16589393,19505809 +g1,15430:19576978,19505809 +g1,15430:23560425,19505809 +g1,15430:27211918,19505809 +g1,15430:30199503,19505809 +h1,15430:31195365,19505809:0,0,0 +k1,15430:32583029,19505809:1387664 +g1,15430:32583029,19505809 +) +(1,15430:6630773,20190664:25952256,431045,106246 +h1,15430:6630773,20190664:0,0,0 +g1,15430:7626635,20190664 +g1,15430:7958589,20190664 +g1,15430:8622497,20190664 +g1,15430:10946175,20190664 +g1,15430:11278129,20190664 +g1,15430:11610083,20190664 +g1,15430:11942037,20190664 +g1,15430:12273991,20190664 +g1,15430:12937899,20190664 +g1,15430:14265715,20190664 +h1,15430:17585254,20190664:0,0,0 +k1,15430:32583029,20190664:14997775 +g1,15430:32583029,20190664 +) +(1,15430:6630773,20875519:25952256,431045,112852 +h1,15430:6630773,20875519:0,0,0 +g1,15430:7626635,20875519 +g1,15430:7958589,20875519 +g1,15430:8622497,20875519 +g1,15430:10282267,20875519 +g1,15430:10614221,20875519 +g1,15430:10946175,20875519 +g1,15430:11278129,20875519 +g1,15430:11610083,20875519 +g1,15430:11942037,20875519 +g1,15430:12273991,20875519 +g1,15430:12937899,20875519 +g1,15430:15925484,20875519 +g1,15430:18913069,20875519 +g1,15430:19576977,20875519 +h1,15430:22564562,20875519:0,0,0 +k1,15430:32583029,20875519:10018467 +g1,15430:32583029,20875519 +) +(1,15430:6630773,21560374:25952256,431045,33029 +h1,15430:6630773,21560374:0,0,0 +g1,15430:7626635,21560374 +g1,15430:7958589,21560374 +g1,15430:8622497,21560374 +g1,15430:12937898,21560374 +h1,15430:14265714,21560374:0,0,0 +k1,15430:32583030,21560374:18317316 +g1,15430:32583030,21560374 +) +(1,15430:6630773,22245229:25952256,424439,86428 +h1,15430:6630773,22245229:0,0,0 +g1,15430:7626635,22245229 +g1,15430:7958589,22245229 +g1,15430:8622497,22245229 +g1,15430:11278129,22245229 +g1,15430:14597668,22245229 +g1,15430:15925484,22245229 +h1,15430:18581115,22245229:0,0,0 +k1,15430:32583029,22245229:14001914 +g1,15430:32583029,22245229 +) +] +) +g1,15431:32583029,22331657 +g1,15431:6630773,22331657 +g1,15431:6630773,22331657 +g1,15431:32583029,22331657 +g1,15431:32583029,22331657 +) +h1,15431:6630773,22528265:0,0,0 +(1,15445:6630773,25359425:25952256,32768,229376 +(1,15445:6630773,25359425:0,32768,229376 +(1,15445:6630773,25359425:5505024,32768,229376 +r1,15456:12135797,25359425:5505024,262144,229376 +) +k1,15445:6630773,25359425:-5505024 +) +(1,15445:6630773,25359425:25952256,32768,0 +r1,15456:32583029,25359425:25952256,32768,0 +) +) +(1,15445:6630773,26991277:25952256,606339,161218 +(1,15445:6630773,26991277:2464678,575668,0 +g1,15445:6630773,26991277 +g1,15445:9095451,26991277 +) +g1,15445:12303307,26991277 +k1,15445:32583029,26991277:17283416 +g1,15445:32583029,26991277 +) +(1,15448:6630773,28249573:25952256,513147,134348 +k1,15447:8257650,28249573:276835 +k1,15447:10522847,28249573:276835 +k1,15447:12025860,28249573:276834 +k1,15447:14215036,28249573:276835 +k1,15447:15301241,28249573:276835 +k1,15447:18605184,28249573:276835 +k1,15447:21857353,28249573:276834 +k1,15447:22490048,28249573:276835 +k1,15447:25252664,28249573:276835 +k1,15447:28687679,28249573:276835 +k1,15447:30155958,28249573:276834 +k1,15447:32168186,28249573:276835 +k1,15448:32583029,28249573:0 +) +(1,15448:6630773,29114653:25952256,513147,126483 +k1,15447:7817296,29114653:238872 +k1,15447:11221557,29114653:238872 +k1,15447:12451989,29114653:238872 +k1,15447:15889673,29114653:238872 +k1,15447:18882368,29114653:238872 +k1,15447:20770125,29114653:238871 +k1,15447:21613239,29114653:238872 +k1,15447:22586849,29114653:238951 +k1,15447:24626650,29114653:238872 +k1,15447:26056967,29114653:238872 +k1,15447:28689214,29114653:238872 +k1,15447:31658971,29114653:238872 +k1,15447:32583029,29114653:0 +) +(1,15448:6630773,29979733:25952256,513147,134348 +k1,15447:9264509,29979733:240361 +k1,15447:11816980,29979733:240361 +k1,15447:14666985,29979733:240361 +k1,15447:16098791,29979733:240361 +k1,15447:18295402,29979733:240361 +k1,15447:20510610,29979733:240608 +k1,15447:22583358,29979733:240361 +k1,15447:25815438,29979733:240361 +k1,15447:26715091,29979733:240361 +k1,15447:28867793,29979733:240361 +k1,15447:32583029,29979733:0 +) +(1,15448:6630773,30844813:25952256,505283,134348 +k1,15447:9936643,30844813:221746 +k1,15447:14552578,30844813:221746 +k1,15447:15390362,30844813:221746 +k1,15447:16026928,30844813:221723 +k1,15447:17240234,30844813:221746 +k1,15447:21400037,30844813:221745 +k1,15447:24352668,30844813:221746 +k1,15447:25937563,30844813:221746 +k1,15447:26608886,30844813:221746 +k1,15447:29897062,30844813:221746 +k1,15447:32093475,30844813:221813 +k1,15447:32583029,30844813:0 +) +(1,15448:6630773,31709893:25952256,513147,134348 +k1,15447:10101390,31709893:260008 +k1,15447:10977436,31709893:260008 +k1,15447:14267829,31709893:260008 +k1,15447:17300664,31709893:260007 +k1,15447:19322935,31709893:260008 +k1,15447:20032520,31709893:260008 +k1,15447:21072528,31709893:260129 +k1,15447:21861534,31709893:260130 +k1,15447:24200344,31709893:260008 +k1,15447:25651796,31709893:260007 +k1,15447:28581085,31709893:260008 +k1,15447:30642022,31709893:260008 +k1,15447:32093475,31709893:260008 +k1,15447:32583029,31709893:0 +) +(1,15448:6630773,32574973:25952256,505283,134348 +k1,15447:10124424,32574973:236512 +k1,15447:12196598,32574973:236511 +k1,15447:13032764,32574973:236512 +k1,15447:13718852,32574973:236511 +k1,15447:15695345,32574973:236512 +k1,15447:16536098,32574973:236511 +k1,15447:17507343,32574973:236586 +k1,15447:19718678,32574973:236735 +k1,15447:21549026,32574973:236512 +k1,15447:24791673,32574973:236511 +k1,15447:26940526,32574973:236512 +k1,15447:28168597,32574973:236511 +k1,15447:31189078,32574973:236512 +k1,15447:32583029,32574973:0 +) +(1,15448:6630773,33440053:25952256,513147,134348 +k1,15447:9339257,33440053:153235 +k1,15447:13432516,33440053:153235 +k1,15447:14245043,33440053:153235 +k1,15447:16740535,33440053:153235 +k1,15447:18610158,33440053:153235 +k1,15447:19422686,33440053:153236 +k1,15447:22276660,33440053:153235 +k1,15447:23045933,33440053:153235 +k1,15447:23787681,33440053:153235 +k1,15447:26921493,33440053:153235 +k1,15447:30027780,33440053:153235 +k1,15448:32583029,33440053:0 +) +(1,15448:6630773,34305133:25952256,513147,126483 +k1,15447:8480308,34305133:251767 +k1,15447:9391368,34305133:251768 +k1,15447:10662220,34305133:251767 +k1,15447:13698612,34305133:251767 +k1,15447:15983306,34305133:251767 +k1,15447:19408983,34305133:251768 +k1,15447:20276788,34305133:251767 +k1,15447:21731796,34305133:251767 +k1,15447:24574857,34305133:251767 +k1,15447:26516143,34305133:251768 +k1,15447:29759629,34305133:251767 +k1,15447:30670688,34305133:251767 +k1,15447:32583029,34305133:0 +) +(1,15448:6630773,35170213:25952256,513147,126483 +k1,15447:8217601,35170213:192877 +k1,15447:10270391,35170213:192878 +k1,15447:12289756,35170213:192877 +k1,15447:13474194,35170213:192878 +k1,15447:14854583,35170213:192877 +k1,15447:15497037,35170213:192877 +k1,15447:17210350,35170213:192878 +k1,15447:20144598,35170213:192877 +k1,15447:22138404,35170213:192877 +k1,15447:23522727,35170213:192878 +k1,15447:24734689,35170213:192877 +k1,15447:27017510,35170213:192878 +k1,15447:30189654,35170213:192877 +k1,15447:32583029,35170213:0 +) +(1,15448:6630773,36035293:25952256,513147,126483 +k1,15447:9254823,36035293:220845 +k1,15447:12206554,36035293:220846 +k1,15447:13790548,36035293:220845 +k1,15447:14422304,36035293:220845 +k1,15447:17709579,36035293:220845 +k1,15447:19121870,36035293:220846 +k1,15447:21323213,36035293:220845 +k1,15447:23518788,36035293:220975 +k1,15447:25333469,36035293:220845 +k1,15447:27951621,36035293:220845 +k1,15447:30084808,36035293:220846 +k1,15447:31297213,36035293:220845 +k1,15447:32583029,36035293:0 +) +(1,15448:6630773,36900373:25952256,513147,134348 +k1,15447:9620580,36900373:205838 +k1,15447:11394038,36900373:205837 +k1,15447:13485347,36900373:205838 +k1,15447:14047045,36900373:205838 +k1,15447:15386000,36900373:205837 +k1,15447:19360813,36900373:205838 +k1,15447:20514302,36900373:205838 +k1,15447:22995549,36900373:205837 +k1,15447:25603937,36900373:205838 +k1,15447:26801335,36900373:205838 +k1,15447:27910258,36900373:205837 +k1,15447:31983375,36900373:205838 +k1,15447:32583029,36900373:0 +) +(1,15448:6630773,37765453:25952256,505283,126483 +k1,15447:9254229,37765453:220251 +k1,15447:13297850,37765453:220251 +k1,15447:16140851,37765453:220250 +k1,15447:17724251,37765453:220251 +k1,15447:18394079,37765453:220251 +k1,15447:19394251,37765453:220293 +k1,15447:21693304,37765453:220251 +k1,15447:23105000,37765453:220251 +k1,15447:25994531,37765453:220250 +k1,15447:28189445,37765453:220314 +k1,15447:30433448,37765453:220251 +k1,15447:32583029,37765453:0 +) +(1,15448:6630773,38630533:25952256,505283,134348 +k1,15447:8160135,38630533:166213 +k1,15447:8775924,38630533:166212 +k1,15447:11746423,38630533:166213 +k1,15447:13887335,38630533:166312 +k1,15447:17142260,38630533:166213 +k1,15447:18294133,38630533:166212 +k1,15447:20298631,38630533:166213 +k1,15447:22377840,38630533:166213 +k1,15447:23907201,38630533:166212 +k1,15447:24696826,38630533:166378 +k1,15447:28524534,38630533:166212 +k1,15447:30702801,38630533:166312 +k1,15447:32583029,38630533:0 +) +(1,15448:6630773,39495613:25952256,513147,134348 +k1,15447:8820167,39495613:200376 +k1,15447:10230992,39495613:200375 +k1,15447:15136198,39495613:200376 +k1,15447:18572741,39495613:200375 +k1,15447:20997409,39495613:200376 +k1,15447:24002070,39495613:200375 +k1,15447:26177049,39495613:200379 +k1,15447:30433448,39495613:200376 +k1,15447:32583029,39495613:0 +) +(1,15448:6630773,40360693:25952256,505283,95026 +k1,15447:7453850,40360693:220146 +k1,15447:8033789,40360693:220146 +k1,15447:9464385,40360693:220146 +k1,15447:11542477,40360693:220146 +k1,15447:14607541,40360693:220146 +k1,15447:16019133,40360693:220147 +k1,15447:17928797,40360693:220146 +k1,15447:19949872,40360693:220146 +k1,15447:21361463,40360693:220146 +k1,15447:25344031,40360693:220146 +k1,15447:28167267,40360693:220146 +k1,15447:30559932,40360693:220146 +k1,15447:32583029,40360693:0 +) +(1,15448:6630773,41225773:25952256,505283,95026 +k1,15448:32583029,41225773:23977656 +g1,15448:32583029,41225773 +) +] +(1,15456:32583029,45706769:0,0,0 +g1,15456:32583029,45706769 +) +) +] +(1,15456:6630773,47279633:25952256,0,0 +h1,15456:6630773,47279633:25952256,0,0 +) +] +(1,15456:4262630,4025873:0,0,0 +[1,15456:-473656,4025873:0,0,0 +(1,15456:-473656,-710413:0,0,0 +(1,15456:-473656,-710413:0,0,0 +g1,15456:-473656,-710413 +) +g1,15456:-473656,-710413 +) +] +) +] +!37541 +}247 +!12 +{248 +[1,15471:4262630,47279633:28320399,43253760,11795 +(1,15471:4262630,4025873:0,0,0 +[1,15471:-473656,4025873:0,0,0 +(1,15471:-473656,-710413:0,0,0 +(1,15471:-473656,-644877:0,0,0 +k1,15471:-473656,-644877:-65536 ) -(1,15504:-473656,4736287:0,0,0 -k1,15504:-473656,4736287:5209943 +(1,15471:-473656,4736287:0,0,0 +k1,15471:-473656,4736287:5209943 ) -g1,15504:-473656,-710413 +g1,15471:-473656,-710413 ) ] ) -[1,15504:6630773,47279633:25952256,43253760,0 -[1,15504:6630773,4812305:25952256,786432,0 -(1,15504:6630773,4812305:25952256,513147,126483 -(1,15504:6630773,4812305:25952256,513147,126483 -g1,15504:3078558,4812305 -[1,15504:3078558,4812305:0,0,0 -(1,15504:3078558,2439708:0,1703936,0 -k1,15504:1358238,2439708:-1720320 -(1,15243:1358238,2439708:1720320,1703936,0 -(1,15243:1358238,2439708:1179648,16384,0 -r1,15504:2537886,2439708:1179648,16384,0 +[1,15471:6630773,47279633:25952256,43253760,11795 +[1,15471:6630773,4812305:25952256,786432,0 +(1,15471:6630773,4812305:25952256,0,0 +(1,15471:6630773,4812305:25952256,0,0 +g1,15471:3078558,4812305 +[1,15471:3078558,4812305:0,0,0 +(1,15471:3078558,2439708:0,1703936,0 +k1,15471:1358238,2439708:-1720320 +(1,15456:1358238,2439708:1720320,1703936,0 +(1,15456:1358238,2439708:1179648,16384,0 +r1,15471:2537886,2439708:1179648,16384,0 ) -g1,15243:3062174,2439708 -(1,15243:3062174,2439708:16384,1703936,0 -[1,15243:3062174,2439708:25952256,1703936,0 -(1,15243:3062174,1915420:25952256,1179648,0 -(1,15243:3062174,1915420:16384,1179648,0 -r1,15504:3078558,1915420:16384,1179648,0 +g1,15456:3062174,2439708 +(1,15456:3062174,2439708:16384,1703936,0 +[1,15456:3062174,2439708:25952256,1703936,0 +(1,15456:3062174,1915420:25952256,1179648,0 +(1,15456:3062174,1915420:16384,1179648,0 +r1,15471:3078558,1915420:16384,1179648,0 ) -k1,15243:29014430,1915420:25935872 -g1,15243:29014430,1915420 +k1,15456:29014430,1915420:25935872 +g1,15456:29014430,1915420 ) ] ) ) ) ] -[1,15504:3078558,4812305:0,0,0 -(1,15504:3078558,2439708:0,1703936,0 -g1,15504:29030814,2439708 -g1,15504:36135244,2439708 -(1,15243:36135244,2439708:1720320,1703936,0 -(1,15243:36135244,2439708:16384,1703936,0 -[1,15243:36135244,2439708:25952256,1703936,0 -(1,15243:36135244,1915420:25952256,1179648,0 -(1,15243:36135244,1915420:16384,1179648,0 -r1,15504:36151628,1915420:16384,1179648,0 +[1,15471:3078558,4812305:0,0,0 +(1,15471:3078558,2439708:0,1703936,0 +g1,15471:29030814,2439708 +g1,15471:36135244,2439708 +(1,15456:36135244,2439708:1720320,1703936,0 +(1,15456:36135244,2439708:16384,1703936,0 +[1,15456:36135244,2439708:25952256,1703936,0 +(1,15456:36135244,1915420:25952256,1179648,0 +(1,15456:36135244,1915420:16384,1179648,0 +r1,15471:36151628,1915420:16384,1179648,0 ) -k1,15243:62087500,1915420:25935872 -g1,15243:62087500,1915420 +k1,15456:62087500,1915420:25935872 +g1,15456:62087500,1915420 ) ] ) -g1,15243:36675916,2439708 -(1,15243:36675916,2439708:1179648,16384,0 -r1,15504:37855564,2439708:1179648,16384,0 +g1,15456:36675916,2439708 +(1,15456:36675916,2439708:1179648,16384,0 +r1,15471:37855564,2439708:1179648,16384,0 ) ) -k1,15504:3078556,2439708:-34777008 +k1,15471:3078556,2439708:-34777008 ) ] -[1,15504:3078558,4812305:0,0,0 -(1,15504:3078558,49800853:0,16384,2228224 -k1,15504:1358238,49800853:-1720320 -(1,15243:1358238,49800853:1720320,16384,2228224 -(1,15243:1358238,49800853:1179648,16384,0 -r1,15504:2537886,49800853:1179648,16384,0 +[1,15471:3078558,4812305:0,0,0 +(1,15471:3078558,49800853:0,16384,2228224 +k1,15471:1358238,49800853:-1720320 +(1,15456:1358238,49800853:1720320,16384,2228224 +(1,15456:1358238,49800853:1179648,16384,0 +r1,15471:2537886,49800853:1179648,16384,0 ) -g1,15243:3062174,49800853 -(1,15243:3062174,52029077:16384,1703936,0 -[1,15243:3062174,52029077:25952256,1703936,0 -(1,15243:3062174,51504789:25952256,1179648,0 -(1,15243:3062174,51504789:16384,1179648,0 -r1,15504:3078558,51504789:16384,1179648,0 +g1,15456:3062174,49800853 +(1,15456:3062174,52029077:16384,1703936,0 +[1,15456:3062174,52029077:25952256,1703936,0 +(1,15456:3062174,51504789:25952256,1179648,0 +(1,15456:3062174,51504789:16384,1179648,0 +r1,15471:3078558,51504789:16384,1179648,0 ) -k1,15243:29014430,51504789:25935872 -g1,15243:29014430,51504789 +k1,15456:29014430,51504789:25935872 +g1,15456:29014430,51504789 ) ] ) ) ) ] -[1,15504:3078558,4812305:0,0,0 -(1,15504:3078558,49800853:0,16384,2228224 -g1,15504:29030814,49800853 -g1,15504:36135244,49800853 -(1,15243:36135244,49800853:1720320,16384,2228224 -(1,15243:36135244,52029077:16384,1703936,0 -[1,15243:36135244,52029077:25952256,1703936,0 -(1,15243:36135244,51504789:25952256,1179648,0 -(1,15243:36135244,51504789:16384,1179648,0 -r1,15504:36151628,51504789:16384,1179648,0 +[1,15471:3078558,4812305:0,0,0 +(1,15471:3078558,49800853:0,16384,2228224 +g1,15471:29030814,49800853 +g1,15471:36135244,49800853 +(1,15456:36135244,49800853:1720320,16384,2228224 +(1,15456:36135244,52029077:16384,1703936,0 +[1,15456:36135244,52029077:25952256,1703936,0 +(1,15456:36135244,51504789:25952256,1179648,0 +(1,15456:36135244,51504789:16384,1179648,0 +r1,15471:36151628,51504789:16384,1179648,0 ) -k1,15243:62087500,51504789:25935872 -g1,15243:62087500,51504789 +k1,15456:62087500,51504789:25935872 +g1,15456:62087500,51504789 ) ] ) -g1,15243:36675916,49800853 -(1,15243:36675916,49800853:1179648,16384,0 -r1,15504:37855564,49800853:1179648,16384,0 +g1,15456:36675916,49800853 +(1,15456:36675916,49800853:1179648,16384,0 +r1,15471:37855564,49800853:1179648,16384,0 ) ) -k1,15504:3078556,49800853:-34777008 -) -] -g1,15504:6630773,4812305 -g1,15504:6630773,4812305 -g1,15504:11156689,4812305 -g1,15504:12279976,4812305 -g1,15504:16431026,4812305 -k1,15504:31387652,4812305:14956626 -) -) -] -[1,15504:6630773,45706769:25952256,40108032,0 -(1,15504:6630773,45706769:25952256,40108032,0 -(1,15504:6630773,45706769:0,0,0 -g1,15504:6630773,45706769 -) -[1,15504:6630773,45706769:25952256,40108032,0 -(1,15411:6630773,6254097:25952256,513147,126483 -h1,15410:6630773,6254097:983040,0,0 -k1,15410:10150111,6254097:216979 -k1,15410:11532320,6254097:216979 -k1,15410:12432184,6254097:216979 -k1,15410:15145428,6254097:216978 -k1,15410:16013835,6254097:216979 -k1,15410:16978580,6254097:216979 -k1,15410:18427636,6254097:216979 -k1,15410:20880703,6254097:216979 -k1,15410:22487045,6254097:216979 -k1,15410:26248865,6254097:216978 -k1,15410:28116041,6254097:216979 -k1,15410:31027860,6254097:216979 -k1,15411:32583029,6254097:0 -) -(1,15411:6630773,7095585:25952256,513147,115847 -(1,15410:6630773,7095585:0,452978,115847 -r1,15504:8747598,7095585:2116825,568825,115847 -k1,15410:6630773,7095585:-2116825 -) -(1,15410:6630773,7095585:2116825,452978,115847 -k1,15410:6630773,7095585:3277 -h1,15410:8744321,7095585:0,411205,112570 -) -g1,15410:8946827,7095585 -g1,15410:9677553,7095585 -g1,15410:12259671,7095585 -g1,15410:14026521,7095585 -g1,15410:15780919,7095585 -(1,15410:15780919,7095585:0,459977,115847 -r1,15504:19304591,7095585:3523672,575824,115847 -k1,15410:15780919,7095585:-3523672 -) -(1,15410:15780919,7095585:3523672,459977,115847 -k1,15410:15780919,7095585:3277 -h1,15410:19301314,7095585:0,411205,112570 -) -g1,15410:19677490,7095585 -g1,15410:22811421,7095585 -g1,15410:24400013,7095585 -g1,15410:26805839,7095585 -g1,15410:27996628,7095585 -g1,15410:29262128,7095585 -k1,15411:32583029,7095585:1005514 -g1,15411:32583029,7095585 -) -v1,15413:6630773,8286051:0,393216,0 -(1,15434:6630773,14575113:25952256,6682278,196608 -g1,15434:6630773,14575113 -g1,15434:6630773,14575113 -g1,15434:6434165,14575113 -(1,15434:6434165,14575113:0,6682278,196608 -r1,15504:32779637,14575113:26345472,6878886,196608 -k1,15434:6434165,14575113:-26345472 -) -(1,15434:6434165,14575113:26345472,6682278,196608 -[1,15434:6630773,14575113:25952256,6485670,0 -(1,15415:6630773,8493669:25952256,404226,107478 -(1,15414:6630773,8493669:0,0,0 -g1,15414:6630773,8493669 -g1,15414:6630773,8493669 -g1,15414:6303093,8493669 -(1,15414:6303093,8493669:0,0,0 -) -g1,15414:6630773,8493669 -) -g1,15415:8527647,8493669 -g1,15415:9476085,8493669 -g1,15415:13585979,8493669 -g1,15415:14218271,8493669 -g1,15415:16431292,8493669 -g1,15415:18012021,8493669 -g1,15415:19908896,8493669 -g1,15415:22438062,8493669 -g1,15415:23070354,8493669 -g1,15415:24651084,8493669 -g1,15415:27496395,8493669 -g1,15415:28128687,8493669 -h1,15415:30025561,8493669:0,0,0 -k1,15415:32583029,8493669:2557468 -g1,15415:32583029,8493669 -) -(1,15416:6630773,9159847:25952256,410518,101187 -h1,15416:6630773,9159847:0,0,0 -k1,15416:6630773,9159847:0 -h1,15416:12953687,9159847:0,0,0 -k1,15416:32583029,9159847:19629342 -g1,15416:32583029,9159847 -) -(1,15420:6630773,9826025:25952256,404226,76021 -(1,15418:6630773,9826025:0,0,0 -g1,15418:6630773,9826025 -g1,15418:6630773,9826025 -g1,15418:6303093,9826025 -(1,15418:6303093,9826025:0,0,0 -) -g1,15418:6630773,9826025 -) -g1,15420:7579210,9826025 -g1,15420:8843793,9826025 -h1,15420:10108376,9826025:0,0,0 -k1,15420:32583028,9826025:22474652 -g1,15420:32583028,9826025 -) -(1,15422:6630773,11147563:25952256,404226,101187 -(1,15421:6630773,11147563:0,0,0 -g1,15421:6630773,11147563 -g1,15421:6630773,11147563 -g1,15421:6303093,11147563 -(1,15421:6303093,11147563:0,0,0 -) -g1,15421:6630773,11147563 -) -k1,15422:6630773,11147563:0 -h1,15422:11689104,11147563:0,0,0 -k1,15422:32583028,11147563:20893924 -g1,15422:32583028,11147563 -) -(1,15426:6630773,11813741:25952256,404226,76021 -(1,15424:6630773,11813741:0,0,0 -g1,15424:6630773,11813741 -g1,15424:6630773,11813741 -g1,15424:6303093,11813741 -(1,15424:6303093,11813741:0,0,0 -) -g1,15424:6630773,11813741 -) -g1,15426:7579210,11813741 -g1,15426:8843793,11813741 -h1,15426:10108376,11813741:0,0,0 -k1,15426:32583028,11813741:22474652 -g1,15426:32583028,11813741 -) -(1,15428:6630773,13135279:25952256,404226,101187 -(1,15427:6630773,13135279:0,0,0 -g1,15427:6630773,13135279 -g1,15427:6630773,13135279 -g1,15427:6303093,13135279 -(1,15427:6303093,13135279:0,0,0 -) -g1,15427:6630773,13135279 -) -k1,15428:6630773,13135279:0 -h1,15428:12637541,13135279:0,0,0 -k1,15428:32583029,13135279:19945488 -g1,15428:32583029,13135279 -) -(1,15433:6630773,13801457:25952256,410518,107478 -(1,15430:6630773,13801457:0,0,0 -g1,15430:6630773,13801457 -g1,15430:6630773,13801457 -g1,15430:6303093,13801457 -(1,15430:6303093,13801457:0,0,0 -) -g1,15430:6630773,13801457 -) -g1,15433:7579210,13801457 -g1,15433:9792230,13801457 -h1,15433:13269832,13801457:0,0,0 -k1,15433:32583028,13801457:19313196 -g1,15433:32583028,13801457 -) -(1,15433:6630773,14467635:25952256,404226,107478 -h1,15433:6630773,14467635:0,0,0 -g1,15433:7579210,14467635 -g1,15433:9792230,14467635 -g1,15433:13269833,14467635 -g1,15433:16115144,14467635 -g1,15433:18960456,14467635 -g1,15433:22121913,14467635 -h1,15433:24334933,14467635:0,0,0 -k1,15433:32583029,14467635:8248096 -g1,15433:32583029,14467635 -) -] -) -g1,15434:32583029,14575113 -g1,15434:6630773,14575113 -g1,15434:6630773,14575113 -g1,15434:32583029,14575113 -g1,15434:32583029,14575113 -) -h1,15434:6630773,14771721:0,0,0 -(1,15438:6630773,16137497:25952256,513147,115847 -h1,15437:6630773,16137497:983040,0,0 -k1,15437:9000007,16137497:189507 -(1,15437:9000007,16137497:0,452978,115847 -r1,15504:11468544,16137497:2468537,568825,115847 -k1,15437:9000007,16137497:-2468537 -) -(1,15437:9000007,16137497:2468537,452978,115847 -k1,15437:9000007,16137497:3277 -h1,15437:11465267,16137497:0,411205,112570 -) -k1,15437:11658051,16137497:189507 -k1,15437:14301881,16137497:189507 -k1,15437:15439040,16137497:189508 -k1,15437:17770264,16137497:189507 -k1,15437:20033330,16137497:189507 -k1,15437:21790458,16137497:189507 -k1,15437:23264471,16137497:189507 -k1,15437:24401629,16137497:189507 -k1,15437:25980499,16137497:189507 -k1,15437:28376604,16137497:189508 -k1,15437:29182149,16137497:189507 -k1,15437:30656162,16137497:189507 -k1,15437:31303766,16137497:189507 -k1,15438:32583029,16137497:0 -) -(1,15438:6630773,16978985:25952256,513147,126483 -k1,15437:8340161,16978985:286601 -k1,15437:8982621,16978985:286600 -k1,15437:11443707,16978985:286601 -k1,15437:13124259,16978985:286601 -k1,15437:14429944,16978985:286600 -k1,15437:15942724,16978985:286601 -k1,15437:17016980,16978985:286513 -k1,15437:19588821,16978985:286601 -k1,15437:22628588,16978985:286600 -k1,15437:23676717,16978985:286601 -k1,15437:24982403,16978985:286601 -k1,15437:28944262,16978985:286600 -k1,15437:31923737,16978985:286601 -k1,15437:32583029,16978985:0 -) -(1,15438:6630773,17820473:25952256,513147,102891 -k1,15437:8352051,17820473:187080 -$1,15437:8352051,17820473 -$1,15437:8920248,17820473 -k1,15437:9107328,17820473:187080 -k1,15437:11780189,17820473:187080 -k1,15437:12626561,17820473:187080 -k1,15437:15907596,17820473:187080 -k1,15437:17622320,17820473:187080 -k1,15437:19695527,17820473:187081 -k1,15437:21334229,17820473:187080 -k1,15437:23904198,17820473:187080 -k1,15437:25829293,17820473:187080 -k1,15437:26787076,17820473:187080 -k1,15437:30948259,17820473:187080 -k1,15437:31794631,17820473:187080 -k1,15437:32583029,17820473:0 -) -(1,15438:6630773,18661961:25952256,513147,134348 -k1,15437:8391959,18661961:206017 -k1,15437:9789421,18661961:206017 -k1,15437:12322621,18661961:206017 -k1,15437:13187930,18661961:206017 -k1,15437:15966235,18661961:206017 -k1,15437:16938368,18661961:206017 -k1,15437:18678584,18661961:206018 -k1,15437:20076046,18661961:206017 -k1,15437:23168924,18661961:206017 -k1,15437:23730801,18661961:206017 -k1,15437:26189290,18661961:206017 -k1,15437:28881088,18661961:206017 -k1,15437:29746397,18661961:206017 -k1,15437:31591469,18661961:206017 -k1,15437:32583029,18661961:0 -) -(1,15438:6630773,19503449:25952256,513147,134348 -k1,15437:10066497,19503449:198901 -k1,15437:10893234,19503449:198902 -k1,15437:13931811,19503449:198902 -k1,15437:17323626,19503449:198901 -k1,15437:19533173,19503449:198902 -k1,15437:20723634,19503449:198901 -k1,15437:24127901,19503449:198901 -k1,15437:25977000,19503449:198902 -k1,15437:29457290,19503449:198902 -k1,15437:30847636,19503449:198901 -k1,15437:32583029,19503449:0 -) -(1,15438:6630773,20344937:25952256,513147,134348 -g1,15437:8446120,20344937 -g1,15437:9296777,20344937 -g1,15437:12527046,20344937 -g1,15437:13673926,20344937 -g1,15437:16708242,20344937 -g1,15437:19562334,20344937 -g1,15437:22577645,20344937 -g1,15437:23392912,20344937 -k1,15438:32583029,20344937:7960006 -g1,15438:32583029,20344937 -) -v1,15440:6630773,21535403:0,393216,0 -(1,15461:6630773,29742067:25952256,8599880,196608 -g1,15461:6630773,29742067 -g1,15461:6630773,29742067 -g1,15461:6434165,29742067 -(1,15461:6434165,29742067:0,8599880,196608 -r1,15504:32779637,29742067:26345472,8796488,196608 -k1,15461:6434165,29742067:-26345472 -) -(1,15461:6434165,29742067:26345472,8599880,196608 -[1,15461:6630773,29742067:25952256,8403272,0 -(1,15442:6630773,21749313:25952256,410518,101187 -(1,15441:6630773,21749313:0,0,0 -g1,15441:6630773,21749313 -g1,15441:6630773,21749313 -g1,15441:6303093,21749313 -(1,15441:6303093,21749313:0,0,0 -) -g1,15441:6630773,21749313 -) -k1,15442:6630773,21749313:0 -h1,15442:10424521,21749313:0,0,0 -k1,15442:32583029,21749313:22158508 -g1,15442:32583029,21749313 -) -(1,15449:6630773,22415491:25952256,404226,107478 -(1,15444:6630773,22415491:0,0,0 -g1,15444:6630773,22415491 -g1,15444:6630773,22415491 -g1,15444:6303093,22415491 -(1,15444:6303093,22415491:0,0,0 -) -g1,15444:6630773,22415491 -) -g1,15449:7579210,22415491 -g1,15449:7895356,22415491 -g1,15449:8211502,22415491 -g1,15449:10108376,22415491 -g1,15449:12637542,22415491 -h1,15449:15166707,22415491:0,0,0 -k1,15449:32583029,22415491:17416322 -g1,15449:32583029,22415491 -) -(1,15449:6630773,23081669:25952256,388497,0 -h1,15449:6630773,23081669:0,0,0 -g1,15449:7579210,23081669 -g1,15449:8211502,23081669 -g1,15449:8527648,23081669 -g1,15449:8843794,23081669 -g1,15449:9159940,23081669 -g1,15449:9476086,23081669 -g1,15449:10108378,23081669 -g1,15449:10424524,23081669 -g1,15449:10740670,23081669 -g1,15449:11056816,23081669 -g1,15449:11372962,23081669 -g1,15449:11689108,23081669 -g1,15449:12005254,23081669 -g1,15449:12637546,23081669 -g1,15449:12953692,23081669 -g1,15449:13269838,23081669 -g1,15449:13585984,23081669 -g1,15449:13902130,23081669 -g1,15449:14218276,23081669 -g1,15449:14534422,23081669 -g1,15449:14850568,23081669 -h1,15449:15166714,23081669:0,0,0 -k1,15449:32583030,23081669:17416316 -g1,15449:32583030,23081669 -) -(1,15449:6630773,23747847:25952256,388497,0 -h1,15449:6630773,23747847:0,0,0 -g1,15449:7579210,23747847 -g1,15449:8211502,23747847 -g1,15449:8527648,23747847 -g1,15449:8843794,23747847 -g1,15449:9159940,23747847 -g1,15449:9476086,23747847 -g1,15449:10108378,23747847 -g1,15449:10424524,23747847 -g1,15449:10740670,23747847 -g1,15449:11056816,23747847 -g1,15449:11372962,23747847 -g1,15449:11689108,23747847 -g1,15449:12005254,23747847 -g1,15449:12637546,23747847 -g1,15449:12953692,23747847 -g1,15449:13269838,23747847 -g1,15449:13585984,23747847 -g1,15449:13902130,23747847 -g1,15449:14218276,23747847 -g1,15449:14534422,23747847 -g1,15449:14850568,23747847 -h1,15449:15166714,23747847:0,0,0 -k1,15449:32583030,23747847:17416316 -g1,15449:32583030,23747847 -) -(1,15449:6630773,24414025:25952256,388497,9436 -h1,15449:6630773,24414025:0,0,0 -g1,15449:7579210,24414025 -g1,15449:8211502,24414025 -g1,15449:8527648,24414025 -g1,15449:8843794,24414025 -g1,15449:9159940,24414025 -g1,15449:9476086,24414025 -g1,15449:10108378,24414025 -g1,15449:10424524,24414025 -g1,15449:10740670,24414025 -g1,15449:11056816,24414025 -g1,15449:11372962,24414025 -g1,15449:11689108,24414025 -g1,15449:12005254,24414025 -g1,15449:12637546,24414025 -g1,15449:12953692,24414025 -g1,15449:13269838,24414025 -g1,15449:13585984,24414025 -g1,15449:13902130,24414025 -g1,15449:14218276,24414025 -g1,15449:14534422,24414025 -g1,15449:14850568,24414025 -h1,15449:15166714,24414025:0,0,0 -k1,15449:32583030,24414025:17416316 -g1,15449:32583030,24414025 -) -(1,15451:6630773,25735563:25952256,404226,101187 -(1,15450:6630773,25735563:0,0,0 -g1,15450:6630773,25735563 -g1,15450:6630773,25735563 -g1,15450:6303093,25735563 -(1,15450:6303093,25735563:0,0,0 -) -g1,15450:6630773,25735563 -) -k1,15451:6630773,25735563:0 -h1,15451:10424521,25735563:0,0,0 -k1,15451:32583029,25735563:22158508 -g1,15451:32583029,25735563 -) -(1,15460:6630773,26401741:25952256,404226,9436 -(1,15453:6630773,26401741:0,0,0 -g1,15453:6630773,26401741 -g1,15453:6630773,26401741 -g1,15453:6303093,26401741 -(1,15453:6303093,26401741:0,0,0 -) -g1,15453:6630773,26401741 -) -g1,15460:7579210,26401741 -g1,15460:8211502,26401741 -g1,15460:8843794,26401741 -g1,15460:11372960,26401741 -g1,15460:12005252,26401741 -g1,15460:12637544,26401741 -h1,15460:12953690,26401741:0,0,0 -k1,15460:32583030,26401741:19629340 -g1,15460:32583030,26401741 -) -(1,15460:6630773,27067919:25952256,404226,107478 -h1,15460:6630773,27067919:0,0,0 -g1,15460:7579210,27067919 -g1,15460:7895356,27067919 -g1,15460:8211502,27067919 -g1,15460:10108376,27067919 -g1,15460:12637542,27067919 -h1,15460:15166707,27067919:0,0,0 -k1,15460:32583029,27067919:17416322 -g1,15460:32583029,27067919 -) -(1,15460:6630773,27734097:25952256,404226,6290 -h1,15460:6630773,27734097:0,0,0 -g1,15460:7579210,27734097 -g1,15460:7895356,27734097 -g1,15460:8211502,27734097 -g1,15460:10108377,27734097 -g1,15460:10424523,27734097 -g1,15460:10740669,27734097 -g1,15460:12637544,27734097 -g1,15460:12953690,27734097 -g1,15460:13269836,27734097 -g1,15460:13585982,27734097 -k1,15460:13585982,27734097:0 -h1,15460:15166711,27734097:0,0,0 -k1,15460:32583029,27734097:17416318 -g1,15460:32583029,27734097 -) -(1,15460:6630773,28400275:25952256,388497,0 -h1,15460:6630773,28400275:0,0,0 -g1,15460:7579210,28400275 -g1,15460:8211502,28400275 -g1,15460:8843794,28400275 -g1,15460:9159940,28400275 -g1,15460:9476086,28400275 -g1,15460:9792232,28400275 -g1,15460:10108378,28400275 -g1,15460:10424524,28400275 -g1,15460:10740670,28400275 -g1,15460:11056816,28400275 -g1,15460:11372962,28400275 -g1,15460:11689108,28400275 -g1,15460:12005254,28400275 -g1,15460:12637546,28400275 -g1,15460:12953692,28400275 -g1,15460:13269838,28400275 -g1,15460:13585984,28400275 -g1,15460:13902130,28400275 -g1,15460:14218276,28400275 -g1,15460:14534422,28400275 -g1,15460:14850568,28400275 -h1,15460:15166714,28400275:0,0,0 -k1,15460:32583030,28400275:17416316 -g1,15460:32583030,28400275 -) -(1,15460:6630773,29066453:25952256,388497,0 -h1,15460:6630773,29066453:0,0,0 -g1,15460:7579210,29066453 -g1,15460:8211502,29066453 -g1,15460:8843794,29066453 -g1,15460:9159940,29066453 -g1,15460:9476086,29066453 -g1,15460:9792232,29066453 -g1,15460:10108378,29066453 -g1,15460:10424524,29066453 -g1,15460:10740670,29066453 -g1,15460:11056816,29066453 -g1,15460:11372962,29066453 -g1,15460:11689108,29066453 -g1,15460:12005254,29066453 -g1,15460:12637546,29066453 -g1,15460:12953692,29066453 -g1,15460:13269838,29066453 -g1,15460:13585984,29066453 -g1,15460:13902130,29066453 -g1,15460:14218276,29066453 -g1,15460:14534422,29066453 -g1,15460:14850568,29066453 -h1,15460:15166714,29066453:0,0,0 -k1,15460:32583030,29066453:17416316 -g1,15460:32583030,29066453 -) -(1,15460:6630773,29732631:25952256,388497,9436 -h1,15460:6630773,29732631:0,0,0 -g1,15460:7579210,29732631 -g1,15460:8211502,29732631 -g1,15460:8843794,29732631 -g1,15460:9159940,29732631 -g1,15460:9476086,29732631 -g1,15460:9792232,29732631 -g1,15460:10108378,29732631 -g1,15460:10424524,29732631 -g1,15460:10740670,29732631 -g1,15460:11056816,29732631 -g1,15460:11372962,29732631 -g1,15460:11689108,29732631 -g1,15460:12005254,29732631 -g1,15460:12637546,29732631 -g1,15460:12953692,29732631 -g1,15460:13269838,29732631 -g1,15460:13585984,29732631 -g1,15460:13902130,29732631 -g1,15460:14218276,29732631 -g1,15460:14534422,29732631 -g1,15460:14850568,29732631 -h1,15460:15166714,29732631:0,0,0 -k1,15460:32583030,29732631:17416316 -g1,15460:32583030,29732631 -) -] -) -g1,15461:32583029,29742067 -g1,15461:6630773,29742067 -g1,15461:6630773,29742067 -g1,15461:32583029,29742067 -g1,15461:32583029,29742067 -) -h1,15461:6630773,29938675:0,0,0 -v1,15465:6630773,31828739:0,393216,0 -(1,15474:6630773,36093955:25952256,4658432,0 -g1,15474:6630773,36093955 -g1,15474:6303093,36093955 -r1,15504:6401397,36093955:98304,4658432,0 -g1,15474:6600626,36093955 -g1,15474:6797234,36093955 -[1,15474:6797234,36093955:25785795,4658432,0 -(1,15466:6797234,32190812:25785795,755289,196608 -(1,15465:6797234,32190812:0,755289,196608 -r1,15504:8134168,32190812:1336934,951897,196608 -k1,15465:6797234,32190812:-1336934 -) -(1,15465:6797234,32190812:1336934,755289,196608 -) -k1,15465:8314768,32190812:180600 -k1,15465:8642448,32190812:327680 -k1,15465:10019735,32190812:180600 -k1,15465:12465915,32190812:180600 -k1,15465:15132297,32190812:180601 -k1,15465:15972189,32190812:180600 -k1,15465:17686987,32190812:180600 -k1,15465:20217708,32190812:180600 -k1,15465:23100357,32190812:180600 -k1,15465:24090327,32190812:180600 -k1,15465:24685752,32190812:180582 -k1,15465:26949086,32190812:180600 -(1,15465:26949086,32190812:0,452978,115847 -r1,15504:32583029,32190812:5633943,568825,115847 -k1,15465:26949086,32190812:-5633943 -) -(1,15465:26949086,32190812:5633943,452978,115847 -k1,15465:26949086,32190812:3277 -h1,15465:32579752,32190812:0,411205,112570 -) -k1,15465:32583029,32190812:0 -) -(1,15466:6797234,33032300:25785795,513147,126483 -k1,15465:8259792,33032300:178052 -k1,15465:9542126,33032300:178052 -k1,15465:10467944,33032300:178052 -k1,15465:11580539,33032300:178052 -k1,15465:13152542,33032300:178052 -k1,15465:13686454,33032300:178052 -k1,15465:14964200,33032300:178052 -k1,15465:15793679,33032300:178051 -(1,15465:15793679,33032300:0,452978,115847 -r1,15504:18965639,33032300:3171960,568825,115847 -k1,15465:15793679,33032300:-3171960 -) -(1,15465:15793679,33032300:3171960,452978,115847 -k1,15465:15793679,33032300:3277 -h1,15465:18962362,33032300:0,411205,112570 -) -k1,15465:19317361,33032300:178052 -k1,15465:20876257,33032300:178052 -k1,15465:23137043,33032300:178052 -k1,15465:24988229,33032300:178052 -k1,15465:26113932,33032300:178052 -k1,15465:28433701,33032300:178052 -k1,15465:28967613,33032300:178052 -k1,15465:31347675,33032300:178052 -k1,15465:32583029,33032300:0 -) -(1,15466:6797234,33873788:25785795,513147,126483 -g1,15465:7682625,33873788 -g1,15465:9964588,33873788 -(1,15465:9964588,33873788:0,452978,115847 -r1,15504:13136548,33873788:3171960,568825,115847 -k1,15465:9964588,33873788:-3171960 -) -(1,15465:9964588,33873788:3171960,452978,115847 -k1,15465:9964588,33873788:3277 -h1,15465:13133271,33873788:0,411205,112570 -) -g1,15465:13335777,33873788 -g1,15465:15208140,33873788 -g1,15465:16355020,33873788 -g1,15465:17988177,33873788 -g1,15465:18602249,33873788 -(1,15465:18602249,33873788:0,452978,115847 -r1,15504:21070786,33873788:2468537,568825,115847 -k1,15465:18602249,33873788:-2468537 -) -(1,15465:18602249,33873788:2468537,452978,115847 -k1,15465:18602249,33873788:3277 -h1,15465:21067509,33873788:0,411205,112570 -) -g1,15465:21270015,33873788 -k1,15466:32583029,33873788:8354719 -g1,15466:32583029,33873788 -) -v1,15468:6797234,35064254:0,393216,0 -(1,15472:6797234,35373059:25785795,702021,196608 -g1,15472:6797234,35373059 -g1,15472:6797234,35373059 -g1,15472:6600626,35373059 -(1,15472:6600626,35373059:0,702021,196608 -r1,15504:32779637,35373059:26179011,898629,196608 -k1,15472:6600625,35373059:-26179012 -) -(1,15472:6600626,35373059:26179011,702021,196608 -[1,15472:6797234,35373059:25785795,505413,0 -(1,15470:6797234,35271872:25785795,404226,101187 -(1,15469:6797234,35271872:0,0,0 -g1,15469:6797234,35271872 -g1,15469:6797234,35271872 -g1,15469:6469554,35271872 -(1,15469:6469554,35271872:0,0,0 -) -g1,15469:6797234,35271872 -) -k1,15470:6797234,35271872:0 -g1,15470:14700877,35271872 -g1,15470:15333169,35271872 -g1,15470:16281607,35271872 -g1,15470:21656084,35271872 -g1,15470:22288376,35271872 -h1,15470:22920668,35271872:0,0,0 -k1,15470:32583029,35271872:9662361 -g1,15470:32583029,35271872 -) -] -) -g1,15472:32583029,35373059 -g1,15472:6797234,35373059 -g1,15472:6797234,35373059 -g1,15472:32583029,35373059 -g1,15472:32583029,35373059 -) -h1,15472:6797234,35569667:0,0,0 -] -g1,15474:32583029,36093955 -) -h1,15474:6630773,36093955:0,0,0 -v1,15477:6630773,37459731:0,393216,0 -(1,15478:6630773,42226192:25952256,5159677,0 -g1,15478:6630773,42226192 -g1,15478:6303093,42226192 -r1,15504:6401397,42226192:98304,5159677,0 -g1,15478:6600626,42226192 -g1,15478:6797234,42226192 -[1,15478:6797234,42226192:25785795,5159677,0 -(1,15478:6797234,37892269:25785795,825754,196608 -(1,15477:6797234,37892269:0,825754,196608 -r1,15504:7890375,37892269:1093141,1022362,196608 -k1,15477:6797234,37892269:-1093141 -) -(1,15477:6797234,37892269:1093141,825754,196608 -) -k1,15477:8093373,37892269:202998 -k1,15477:9411302,37892269:327680 -k1,15477:11151118,37892269:202997 -k1,15477:14138741,37892269:202998 -k1,15477:15289389,37892269:202997 -k1,15477:17634104,37892269:202998 -k1,15477:19028547,37892269:202998 -k1,15477:20620907,37892269:202997 -k1,15477:23030502,37892269:202998 -k1,15477:24976757,37892269:202997 -k1,15477:25795793,37892269:202998 -k1,15477:27507429,37892269:202997 -k1,15477:30884991,37892269:202998 -k1,15477:32583029,37892269:0 -) -(1,15478:6797234,38733757:25785795,513147,126483 -k1,15477:8080080,38733757:216575 -k1,15477:9062770,38733757:216574 -k1,15477:11992536,38733757:216575 -k1,15477:12896583,38733757:216574 -k1,15477:13729196,38733757:216575 -k1,15477:14301631,38733757:216575 -k1,15477:16868326,38733757:216574 -k1,15477:18427078,38733757:216575 -k1,15477:19249205,38733757:216574 -k1,15477:22611508,38733757:216575 -k1,15477:23183943,38733757:216575 -k1,15477:24789880,38733757:216574 -k1,15477:26882751,38733757:216575 -k1,15477:28290770,38733757:216574 -k1,15477:29278048,38733757:216575 -k1,15477:32583029,38733757:0 -) -(1,15478:6797234,39575245:25785795,505283,126483 -k1,15477:8877259,39575245:268610 -k1,15477:10539820,39575245:268610 -k1,15477:11421192,39575245:268610 -k1,15477:13185334,39575245:268610 -k1,15477:14250862,39575245:268610 -k1,15477:16053670,39575245:268610 -k1,15477:17513725,39575245:268610 -k1,15477:19216263,39575245:268610 -k1,15477:20676318,39575245:268610 -k1,15477:22275309,39575245:268610 -k1,15477:23563004,39575245:268610 -k1,15477:25990370,39575245:268610 -k1,15477:27976023,39575245:268610 -k1,15477:29942671,39575245:268610 -k1,15477:31591469,39575245:268610 -k1,15477:32583029,39575245:0 -) -(1,15478:6797234,40416733:25785795,513147,126483 -k1,15477:9575468,40416733:254443 -k1,15477:10435465,40416733:254444 -k1,15477:13835636,40416733:254443 -k1,15477:14445940,40416733:254444 -k1,15477:16089746,40416733:254443 -k1,15477:18220486,40416733:254444 -k1,15477:19666374,40416733:254443 -k1,15477:20691520,40416733:254443 -k1,15477:24250945,40416733:254444 -k1,15477:26316803,40416733:254443 -k1,15477:27965198,40416733:254444 -k1,15477:29869838,40416733:254443 -k1,15477:32583029,40416733:0 -) -(1,15478:6797234,41258221:25785795,513147,126483 -k1,15477:8522064,41258221:282383 -k1,15477:9936910,41258221:282384 -k1,15477:10906766,41258221:282383 -k1,15477:11805187,41258221:282383 -k1,15477:13106656,41258221:282384 -k1,15477:15203731,41258221:282383 -k1,15477:16145406,41258221:282383 -k1,15477:17446875,41258221:282384 -k1,15477:18144018,41258221:282300 -k1,15477:20846646,41258221:282383 -k1,15477:22320474,41258221:282383 -k1,15477:24036786,41258221:282384 -k1,15477:25510614,41258221:282383 -k1,15477:27123378,41258221:282383 -k1,15477:28424847,41258221:282384 -k1,15477:30865986,41258221:282383 -k1,15477:32583029,41258221:0 -) -(1,15478:6797234,42099709:25785795,505283,126483 -g1,15477:8694501,42099709 -g1,15477:10273918,42099709 -g1,15477:11464707,42099709 -k1,15478:32583030,42099709:18594532 -g1,15478:32583030,42099709 -) -] -g1,15478:32583029,42226192 -) -h1,15478:6630773,42226192:0,0,0 -(1,15481:6630773,43591968:25952256,513147,115847 -h1,15480:6630773,43591968:983040,0,0 -g1,15480:9284981,43591968 -g1,15480:11690807,43591968 -g1,15480:12994318,43591968 -g1,15480:13941313,43591968 -g1,15480:17301343,43591968 -g1,15480:18768038,43591968 -g1,15480:21108984,43591968 -g1,15480:22702164,43591968 -(1,15480:22702164,43591968:0,452978,115847 -r1,15504:26577548,43591968:3875384,568825,115847 -k1,15480:22702164,43591968:-3875384 -) -(1,15480:22702164,43591968:3875384,452978,115847 -k1,15480:22702164,43591968:3277 -h1,15480:26574271,43591968:0,411205,112570 -) -k1,15481:32583029,43591968:5831811 -g1,15481:32583029,43591968 -) -v1,15483:6630773,44782434:0,393216,0 -] -(1,15504:32583029,45706769:0,0,0 -g1,15504:32583029,45706769 -) -) -] -(1,15504:6630773,47279633:25952256,0,0 -h1,15504:6630773,47279633:25952256,0,0 -) -] -(1,15504:4262630,4025873:0,0,0 -[1,15504:-473656,4025873:0,0,0 -(1,15504:-473656,-710413:0,0,0 -(1,15504:-473656,-710413:0,0,0 -g1,15504:-473656,-710413 -) -g1,15504:-473656,-710413 -) -] -) -] -!27260 -}266 -Input:2264:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2265:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2266:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2267:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2268:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2269:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2270:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2271:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!764 -{267 -[1,15658:4262630,47279633:28320399,43253760,0 -(1,15658:4262630,4025873:0,0,0 -[1,15658:-473656,4025873:0,0,0 -(1,15658:-473656,-710413:0,0,0 -(1,15658:-473656,-644877:0,0,0 -k1,15658:-473656,-644877:-65536 +k1,15471:3078556,49800853:-34777008 ) -(1,15658:-473656,4736287:0,0,0 -k1,15658:-473656,4736287:5209943 +] +g1,15471:6630773,4812305 ) -g1,15658:-473656,-710413 ) ] +[1,15471:6630773,45706769:25952256,40108032,0 +(1,15471:6630773,45706769:25952256,40108032,0 +(1,15471:6630773,45706769:0,0,0 +g1,15471:6630773,45706769 ) -[1,15658:6630773,47279633:25952256,43253760,0 -[1,15658:6630773,4812305:25952256,786432,0 -(1,15658:6630773,4812305:25952256,505283,134348 -(1,15658:6630773,4812305:25952256,505283,134348 -g1,15658:3078558,4812305 -[1,15658:3078558,4812305:0,0,0 -(1,15658:3078558,2439708:0,1703936,0 -k1,15658:1358238,2439708:-1720320 -(1,15243:1358238,2439708:1720320,1703936,0 -(1,15243:1358238,2439708:1179648,16384,0 -r1,15658:2537886,2439708:1179648,16384,0 +[1,15471:6630773,45706769:25952256,40108032,0 +[1,15456:6630773,11797421:25952256,6198684,0 +(1,15456:6630773,6633157:25952256,1165492,28311 +h1,15456:6630773,6633157:0,0,0 +k1,15456:20096848,6633157:12486181 +k1,15456:32583029,6633157:12486181 ) -g1,15243:3062174,2439708 -(1,15243:3062174,2439708:16384,1703936,0 -[1,15243:3062174,2439708:25952256,1703936,0 -(1,15243:3062174,1915420:25952256,1179648,0 -(1,15243:3062174,1915420:16384,1179648,0 -r1,15658:3078558,1915420:16384,1179648,0 +(1,15456:6630773,7380277:25952256,32768,229376 +(1,15456:6630773,7380277:0,32768,229376 +(1,15456:6630773,7380277:5505024,32768,229376 +r1,15471:12135797,7380277:5505024,262144,229376 ) -k1,15243:29014430,1915420:25935872 -g1,15243:29014430,1915420 +k1,15456:6630773,7380277:-5505024 ) -] +(1,15456:6630773,7380277:25952256,32768,0 +r1,15471:32583029,7380277:25952256,32768,0 ) ) +(1,15456:6630773,9215293:25952256,909509,241827 +h1,15456:6630773,9215293:0,0,0 +g1,15456:7798625,9215293 +g1,15456:14300845,9215293 +g1,15456:17421014,9215293 +k1,15456:27951142,9215293:4631888 +k1,15456:32583029,9215293:4631887 +) +(1,15456:6630773,9962413:25952256,32768,0 +(1,15456:6630773,9962413:5505024,32768,0 +r1,15471:12135797,9962413:5505024,32768,0 +) +k1,15456:22359413,9962413:10223616 +k1,15456:32583029,9962413:10223616 ) ] -[1,15658:3078558,4812305:0,0,0 -(1,15658:3078558,2439708:0,1703936,0 -g1,15658:29030814,2439708 -g1,15658:36135244,2439708 -(1,15243:36135244,2439708:1720320,1703936,0 -(1,15243:36135244,2439708:16384,1703936,0 -[1,15243:36135244,2439708:25952256,1703936,0 -(1,15243:36135244,1915420:25952256,1179648,0 -(1,15243:36135244,1915420:16384,1179648,0 -r1,15658:36151628,1915420:16384,1179648,0 -) -k1,15243:62087500,1915420:25935872 -g1,15243:62087500,1915420 +(1,15458:6630773,14713778:25952256,131072,0 +r1,15471:32583029,14713778:25952256,131072,0 +g1,15458:32583029,14713778 +g1,15458:32583029,14713778 +) +(1,15460:6630773,16057271:25952256,513147,134348 +k1,15460:8596853,16057271:1966080 +k1,15459:12214495,16057271:238606 +k1,15459:15816408,16057271:238605 +k1,15459:16671052,16057271:238606 +k1,15459:18297711,16057271:238606 +k1,15459:19483967,16057271:238605 +k1,15459:22551107,16057271:238606 +k1,15459:23145573,16057271:238606 +k1,15459:24483872,16057271:238605 +k1,15459:25373906,16057271:238606 +k1,15459:25968372,16057271:238606 +k1,15459:29076143,16057271:238605 +k1,15459:29846246,16057271:238606 +k1,15459:32583029,16057271:1966080 +) +(1,15460:6630773,16922351:25952256,513147,134348 +k1,15460:8596853,16922351:1966080 +k1,15459:10057351,16922351:246116 +k1,15459:12436710,16922351:246162 +k1,15459:13954271,16922351:246163 +k1,15459:17315359,16922351:246162 +k1,15459:18093019,16922351:246163 +k1,15459:19623688,16922351:246163 +k1,15459:21084185,16922351:246115 +k1,15459:22431353,16922351:246163 +k1,15459:27629415,16922351:246162 +k1,15459:29256422,16922351:246163 +k1,15460:32583029,16922351:1966080 +) +(1,15460:6630773,17787431:25952256,513147,134348 +k1,15460:8596853,17787431:1966080 +k1,15459:12095619,17787431:207548 +k1,15459:14349201,17787431:207548 +k1,15459:14912609,17787431:207548 +k1,15459:15976713,17787431:207548 +k1,15459:16843554,17787431:207549 +k1,15459:19043396,17787431:207548 +k1,15459:21880904,17787431:207548 +k1,15459:22704490,17787431:207548 +k1,15459:24126412,17787431:207540 +k1,15459:25618466,17787431:207548 +k1,15459:26817574,17787431:207548 +k1,15459:28091393,17787431:207548 +k1,15459:28914979,17787431:207548 +k1,15459:32583029,17787431:1966080 +) +(1,15460:6630773,18652511:25952256,505283,134348 +g1,15460:8596853,18652511 +k1,15460:30616949,18652511:18673828 +g1,15460:32583029,18652511 +) +(1,15461:6630773,20304023:25952256,505283,95026 +k1,15461:25716823,20304023:19086050 +h1,15461:25716823,20304023:0,0,0 +g1,15461:28120028,20304023 +g1,15461:28769489,20304023 +g1,15461:30616949,20304023 +g1,15461:32583029,20304023 +) +(1,15462:6630773,21169103:25952256,485622,126483 +k1,15462:26098897,21169103:19468124 +h1,15461:26098897,21169103:0,0,0 +g1,15461:26657919,21169103 +g1,15461:29023112,21169103 +g1,15462:30616948,21169103 +g1,15462:32583028,21169103 +) +(1,15462:6630773,22427399:25952256,131072,0 +r1,15471:32583029,22427399:25952256,131072,0 +g1,15462:32583029,22427399 +g1,15462:34549109,22427399 +) +(1,15464:6630773,25258559:25952256,32768,229376 +(1,15464:6630773,25258559:0,32768,229376 +(1,15464:6630773,25258559:5505024,32768,229376 +r1,15471:12135797,25258559:5505024,262144,229376 +) +k1,15464:6630773,25258559:-5505024 +) +(1,15464:6630773,25258559:25952256,32768,0 +r1,15471:32583029,25258559:25952256,32768,0 +) +) +(1,15464:6630773,26890411:25952256,615776,151780 +(1,15464:6630773,26890411:1974731,582746,14155 +g1,15464:6630773,26890411 +g1,15464:8605504,26890411 +) +g1,15464:10904245,26890411 +g1,15464:11961996,26890411 +g1,15464:13695292,26890411 +k1,15464:32583029,26890411:15886712 +g1,15464:32583029,26890411 +) +(1,15467:6630773,28148707:25952256,513147,134348 +k1,15466:8347431,28148707:284041 +k1,15466:9046231,28148707:283957 +k1,15466:10521717,28148707:284041 +k1,15466:11824844,28148707:284042 +k1,15466:16663637,28148707:284041 +k1,15466:20020006,28148707:284041 +k1,15466:23214502,28148707:284042 +k1,15466:26443076,28148707:284041 +k1,15466:27488646,28148707:284042 +k1,15466:30245360,28148707:284041 +k1,15466:32583029,28148707:0 +) +(1,15467:6630773,29013787:25952256,513147,134348 +k1,15466:8577907,29013787:195357 +k1,15466:11799062,29013787:195358 +k1,15466:12942070,29013787:195357 +k1,15466:17373019,29013787:195357 +k1,15466:19131410,29013787:195357 +k1,15466:20523455,29013787:195358 +k1,15466:21133651,29013787:195353 +k1,15466:25110435,29013787:195357 +k1,15466:27976384,29013787:195357 +k1,15466:28527602,29013787:195358 +k1,15466:31648486,29013787:195357 +k1,15466:32583029,29013787:0 +) +(1,15467:6630773,29878867:25952256,513147,126483 +k1,15466:7499423,29878867:209358 +k1,15466:10734577,29878867:209357 +k1,15466:12135380,29878867:209358 +k1,15466:15421653,29878867:209358 +k1,15466:16915516,29878867:209357 +k1,15466:18806528,29878867:209358 +k1,15466:19782001,29878867:209357 +k1,15466:21010444,29878867:209358 +k1,15466:22940777,29878867:209358 +k1,15466:24539497,29878867:209357 +k1,15466:29004763,29878867:209358 +k1,15466:32583029,29878867:0 +) +(1,15467:6630773,30743947:25952256,513147,126483 +k1,15466:8643875,30743947:138772 +k1,15466:11808445,30743947:138773 +k1,15466:13422432,30743947:138772 +k1,15466:15457162,30743947:138773 +k1,15466:16787379,30743947:138772 +k1,15466:21507773,30743947:138772 +k1,15466:24579937,30743947:138773 +k1,15466:25443537,30743947:138772 +k1,15466:26198348,30743947:138773 +k1,15466:27318194,30743947:138772 +k1,15466:28883686,30743947:138773 +k1,15466:30402646,30743947:138772 +k1,15466:32583029,30743947:0 +) +(1,15467:6630773,31609027:25952256,513147,134348 +k1,15466:7538938,31609027:160399 +k1,15466:10712683,31609027:160400 +k1,15466:12915839,31609027:160399 +k1,15466:14768378,31609027:160399 +k1,15466:15588070,31609027:160400 +k1,15466:17257108,31609027:160399 +k1,15466:20855526,31609027:160399 +k1,15466:23071790,31609027:160400 +k1,15466:24251274,31609027:160399 +k1,15466:25504158,31609027:160399 +k1,15466:26323850,31609027:160400 +k1,15466:30201451,31609027:160399 +k1,15466:32583029,31609027:0 +) +(1,15467:6630773,32474107:25952256,505283,134348 +k1,15466:7498037,32474107:251226 +k1,15466:11478916,32474107:251225 +k1,15466:14814266,32474107:251226 +k1,15466:15693326,32474107:251225 +k1,15466:16963637,32474107:251226 +k1,15466:19620690,32474107:251226 +k1,15466:22289538,32474107:251225 +k1,15466:22753704,32474107:251174 +k1,15466:25674210,32474107:251225 +k1,15466:26944521,32474107:251226 +k1,15466:28478941,32474107:251225 +k1,15466:30814212,32474107:251226 +k1,15467:32583029,32474107:0 +) +(1,15467:6630773,33339187:25952256,505283,134348 +k1,15466:8780891,33339187:212874 +k1,15466:9755293,33339187:212874 +k1,15466:10987252,33339187:212874 +k1,15466:12801826,33339187:212874 +k1,15466:15514898,33339187:212873 +k1,15466:19457426,33339187:212874 +k1,15466:20085129,33339187:212860 +k1,15466:23370331,33339187:212874 +k1,15466:26493659,33339187:212874 +k1,15466:28873809,33339187:212874 +k1,15466:29699445,33339187:212874 +k1,15466:32583029,33339187:0 +) +(1,15467:6630773,34204267:25952256,513147,134348 +k1,15466:9333931,34204267:208858 +k1,15466:12815002,34204267:208858 +k1,15466:14180570,34204267:208858 +k1,15466:16434152,34204267:208859 +k1,15466:17255772,34204267:208858 +k1,15466:18483715,34204267:208858 +k1,15466:21265516,34204267:208858 +k1,15466:22133666,34204267:208858 +k1,15466:25022291,34204267:208858 +k1,15466:25847188,34204267:208859 +k1,15466:28398303,34204267:208858 +k1,15466:30175438,34204267:208858 +k1,15466:31714677,34204267:208858 +k1,15466:32583029,34204267:0 +) +(1,15467:6630773,35069347:25952256,505283,134348 +k1,15466:8022168,35069347:287113 +k1,15466:11901965,35069347:287113 +k1,15466:13578442,35069347:287114 +k1,15466:14481593,35069347:287113 +k1,15466:15357219,35069347:287113 +k1,15466:17518662,35069347:287113 +k1,15466:22378877,35069347:287113 +k1,15466:25927062,35069347:287114 +k1,15466:29124629,35069347:287113 +k1,15466:31563944,35069347:287113 +k1,15467:32583029,35069347:0 +) +(1,15467:6630773,35934427:25952256,513147,134348 +k1,15466:7278587,35934427:232971 +k1,15466:10353887,35934427:233004 +k1,15466:11653162,35934427:233004 +k1,15466:13261768,35934427:233005 +k1,15466:14256300,35934427:233004 +k1,15466:16676897,35934427:233005 +k1,15466:18193096,35934427:233004 +k1,15466:20981350,35934427:233005 +k1,15466:21865782,35934427:233004 +k1,15466:22556884,35934427:233005 +k1,15466:23862057,35934427:233004 +k1,15466:24856590,35934427:233005 +k1,15466:28606256,35934427:233004 +k1,15466:30122456,35934427:233005 +k1,15466:31923737,35934427:233004 +k1,15466:32583029,35934427:0 +) +(1,15467:6630773,36799507:25952256,513147,134348 +k1,15466:10966881,36799507:156877 +k1,15466:14609617,36799507:156876 +k1,15466:19046650,36799507:156877 +k1,15466:22276509,36799507:156876 +k1,15466:23716581,36799507:156877 +k1,15466:27706659,36799507:156877 +k1,15466:28811186,36799507:156876 +k1,15466:30357426,36799507:156877 +k1,15467:32583029,36799507:0 +) +(1,15467:6630773,37664587:25952256,513147,134348 +k1,15466:9239157,37664587:191416 +k1,15466:11205288,37664587:191416 +k1,15466:12009466,37664587:191416 +k1,15466:13219967,37664587:191416 +k1,15466:15755606,37664587:191416 +k1,15466:17611636,37664587:191416 +k1,15466:18462344,37664587:191416 +k1,15466:22785805,37664587:191416 +k1,15466:23636514,37664587:191417 +k1,15466:25261858,37664587:191416 +k1,15466:25868109,37664587:191408 +k1,15466:27125796,37664587:191416 +k1,15466:30092006,37664587:191416 +k1,15466:32583029,37664587:0 +) +(1,15467:6630773,38529667:25952256,513147,134348 +k1,15466:8343733,38529667:216773 +k1,15466:9661511,38529667:216773 +k1,15466:11388233,38529667:216772 +k1,15466:12624091,38529667:216773 +k1,15466:15426915,38529667:216773 +k1,15466:17875189,38529667:216773 +k1,15466:18751253,38529667:216772 +k1,15466:19987111,38529667:216773 +k1,15466:21402538,38529667:216773 +k1,15466:24179147,38529667:216773 +k1,15466:27306373,38529667:216772 +k1,15466:28139184,38529667:216773 +k1,15466:29375042,38529667:216773 +k1,15466:32583029,38529667:0 +) +(1,15467:6630773,39394747:25952256,513147,126483 +k1,15466:8281543,39394747:175555 +k1,15466:11867591,39394747:175554 +k1,15466:17275540,39394747:175555 +k1,15466:18845045,39394747:175554 +k1,15466:22069990,39394747:175555 +k1,15466:24851256,39394747:175555 +k1,15466:26414207,39394747:175554 +k1,15466:29988459,39394747:175555 +k1,15467:32583029,39394747:0 +) +(1,15467:6630773,40259827:25952256,513147,134348 +k1,15466:8832586,40259827:200999 +k1,15466:10230272,40259827:200999 +k1,15466:14563316,40259827:200999 +k1,15466:15423607,40259827:200999 +k1,15466:18832593,40259827:200999 +k1,15466:21944046,40259827:200999 +k1,15466:24120300,40259827:200999 +k1,15466:24972727,40259827:200999 +k1,15466:26648941,40259827:200999 +k1,15466:30698214,40259827:200999 +k1,15466:32583029,40259827:0 +) +(1,15467:6630773,41124907:25952256,513147,134348 +k1,15466:10700034,41124907:162660 +k1,15466:12512892,41124907:162661 +k1,15466:14117999,41124907:162660 +k1,15466:18194469,41124907:162660 +k1,15466:23058682,41124907:162660 +k1,15466:24602187,41124907:162661 +k1,15466:26434704,41124907:162660 +k1,15466:27794051,41124907:162660 +k1,15466:30045344,41124907:162661 +k1,15466:30867296,41124907:162660 +k1,15467:32583029,41124907:0 +) +(1,15467:6630773,41989987:25952256,513147,134348 +k1,15466:7886678,41989987:178493 +k1,15466:11575279,41989987:178494 +k1,15466:12854777,41989987:178493 +k1,15466:16443765,41989987:178494 +k1,15466:20697942,41989987:178493 +k1,15466:21489197,41989987:178493 +k1,15466:22686776,41989987:178494 +k1,15466:25438212,41989987:178493 +k1,15466:26275998,41989987:178494 +k1,15466:27849097,41989987:178493 +k1,15466:28686882,41989987:178493 +k1,15466:30131532,41989987:178494 +k1,15466:30522997,41989987:178473 +k1,15466:31516758,41989987:178493 +k1,15466:32583029,41989987:0 +) +(1,15467:6630773,42855067:25952256,513147,126483 +k1,15466:9492184,42855067:192130 +k1,15466:10300351,42855067:192129 +k1,15466:12353048,42855067:192130 +k1,15466:14241905,42855067:192130 +k1,15466:15717230,42855067:192130 +k1,15466:19571511,42855067:192129 +k1,15466:20835810,42855067:192130 +k1,15466:23355123,42855067:192130 +k1,15466:24922854,42855067:192130 +k1,15466:27147910,42855067:192129 +k1,15466:30100416,42855067:192130 +k1,15466:31931601,42855067:192130 +k1,15466:32583029,42855067:0 +) +(1,15467:6630773,43720147:25952256,513147,134348 +g1,15466:8263930,43720147 +g1,15466:8878002,43720147 +g1,15466:12924850,43720147 +g1,15466:14143164,43720147 +g1,15466:15944093,43720147 +g1,15466:19352620,43720147 +k1,15467:32583029,43720147:9540077 +g1,15467:32583029,43720147 +) +] +(1,15471:32583029,45706769:0,0,0 +g1,15471:32583029,45706769 +) +) +] +(1,15471:6630773,47279633:25952256,485622,11795 +(1,15471:6630773,47279633:25952256,485622,11795 +(1,15471:6630773,47279633:0,0,0 +v1,15471:6630773,47279633:0,0,0 +) +g1,15471:6830002,47279633 +k1,15471:31387652,47279633:24557650 +) +) +] +(1,15471:4262630,4025873:0,0,0 +[1,15471:-473656,4025873:0,0,0 +(1,15471:-473656,-710413:0,0,0 +(1,15471:-473656,-710413:0,0,0 +g1,15471:-473656,-710413 +) +g1,15471:-473656,-710413 ) ] ) -g1,15243:36675916,2439708 -(1,15243:36675916,2439708:1179648,16384,0 -r1,15658:37855564,2439708:1179648,16384,0 +] +!16188 +}248 +!12 +{249 +[1,15478:4262630,47279633:28320399,43253760,0 +(1,15478:4262630,4025873:0,0,0 +[1,15478:-473656,4025873:0,0,0 +(1,15478:-473656,-710413:0,0,0 +(1,15478:-473656,-644877:0,0,0 +k1,15478:-473656,-644877:-65536 ) +(1,15478:-473656,4736287:0,0,0 +k1,15478:-473656,4736287:5209943 ) -k1,15658:3078556,2439708:-34777008 +g1,15478:-473656,-710413 ) ] -[1,15658:3078558,4812305:0,0,0 -(1,15658:3078558,49800853:0,16384,2228224 -k1,15658:1358238,49800853:-1720320 -(1,15243:1358238,49800853:1720320,16384,2228224 -(1,15243:1358238,49800853:1179648,16384,0 -r1,15658:2537886,49800853:1179648,16384,0 ) -g1,15243:3062174,49800853 -(1,15243:3062174,52029077:16384,1703936,0 -[1,15243:3062174,52029077:25952256,1703936,0 -(1,15243:3062174,51504789:25952256,1179648,0 -(1,15243:3062174,51504789:16384,1179648,0 -r1,15658:3078558,51504789:16384,1179648,0 +[1,15478:6630773,47279633:25952256,43253760,0 +[1,15478:6630773,4812305:25952256,786432,0 +(1,15478:6630773,4812305:25952256,505283,134348 +(1,15478:6630773,4812305:25952256,505283,134348 +g1,15478:3078558,4812305 +[1,15478:3078558,4812305:0,0,0 +(1,15478:3078558,2439708:0,1703936,0 +k1,15478:1358238,2439708:-1720320 +(1,15456:1358238,2439708:1720320,1703936,0 +(1,15456:1358238,2439708:1179648,16384,0 +r1,15478:2537886,2439708:1179648,16384,0 ) -k1,15243:29014430,51504789:25935872 -g1,15243:29014430,51504789 +g1,15456:3062174,2439708 +(1,15456:3062174,2439708:16384,1703936,0 +[1,15456:3062174,2439708:25952256,1703936,0 +(1,15456:3062174,1915420:25952256,1179648,0 +(1,15456:3062174,1915420:16384,1179648,0 +r1,15478:3078558,1915420:16384,1179648,0 +) +k1,15456:29014430,1915420:25935872 +g1,15456:29014430,1915420 ) ] ) ) ) ] -[1,15658:3078558,4812305:0,0,0 -(1,15658:3078558,49800853:0,16384,2228224 -g1,15658:29030814,49800853 -g1,15658:36135244,49800853 -(1,15243:36135244,49800853:1720320,16384,2228224 -(1,15243:36135244,52029077:16384,1703936,0 -[1,15243:36135244,52029077:25952256,1703936,0 -(1,15243:36135244,51504789:25952256,1179648,0 -(1,15243:36135244,51504789:16384,1179648,0 -r1,15658:36151628,51504789:16384,1179648,0 +[1,15478:3078558,4812305:0,0,0 +(1,15478:3078558,2439708:0,1703936,0 +g1,15478:29030814,2439708 +g1,15478:36135244,2439708 +(1,15456:36135244,2439708:1720320,1703936,0 +(1,15456:36135244,2439708:16384,1703936,0 +[1,15456:36135244,2439708:25952256,1703936,0 +(1,15456:36135244,1915420:25952256,1179648,0 +(1,15456:36135244,1915420:16384,1179648,0 +r1,15478:36151628,1915420:16384,1179648,0 ) -k1,15243:62087500,51504789:25935872 -g1,15243:62087500,51504789 +k1,15456:62087500,1915420:25935872 +g1,15456:62087500,1915420 ) ] ) -g1,15243:36675916,49800853 -(1,15243:36675916,49800853:1179648,16384,0 -r1,15658:37855564,49800853:1179648,16384,0 +g1,15456:36675916,2439708 +(1,15456:36675916,2439708:1179648,16384,0 +r1,15478:37855564,2439708:1179648,16384,0 ) ) -k1,15658:3078556,49800853:-34777008 +k1,15478:3078556,2439708:-34777008 ) ] -g1,15658:6630773,4812305 -k1,15658:23311652,4812305:15485502 -g1,15658:23960458,4812305 -g1,15658:27572802,4812305 -g1,15658:29306229,4812305 +[1,15478:3078558,4812305:0,0,0 +(1,15478:3078558,49800853:0,16384,2228224 +k1,15478:1358238,49800853:-1720320 +(1,15456:1358238,49800853:1720320,16384,2228224 +(1,15456:1358238,49800853:1179648,16384,0 +r1,15478:2537886,49800853:1179648,16384,0 +) +g1,15456:3062174,49800853 +(1,15456:3062174,52029077:16384,1703936,0 +[1,15456:3062174,52029077:25952256,1703936,0 +(1,15456:3062174,51504789:25952256,1179648,0 +(1,15456:3062174,51504789:16384,1179648,0 +r1,15478:3078558,51504789:16384,1179648,0 ) +k1,15456:29014430,51504789:25935872 +g1,15456:29014430,51504789 ) ] -[1,15658:6630773,45706769:25952256,40108032,0 -(1,15658:6630773,45706769:25952256,40108032,0 -(1,15658:6630773,45706769:0,0,0 -g1,15658:6630773,45706769 ) -[1,15658:6630773,45706769:25952256,40108032,0 -v1,15504:6630773,6254097:0,393216,0 -(1,15504:6630773,12549451:25952256,6688570,196608 -g1,15504:6630773,12549451 -g1,15504:6630773,12549451 -g1,15504:6434165,12549451 -(1,15504:6434165,12549451:0,6688570,196608 -r1,15658:32779637,12549451:26345472,6885178,196608 -k1,15504:6434165,12549451:-26345472 ) -(1,15504:6434165,12549451:26345472,6688570,196608 -[1,15504:6630773,12549451:25952256,6491962,0 -(1,15485:6630773,6468007:25952256,410518,101187 -(1,15484:6630773,6468007:0,0,0 -g1,15484:6630773,6468007 -g1,15484:6630773,6468007 -g1,15484:6303093,6468007 -(1,15484:6303093,6468007:0,0,0 -) -g1,15484:6630773,6468007 ) -g1,15485:10108376,6468007 -g1,15485:11056814,6468007 -k1,15485:11056814,6468007:0 -h1,15485:16115145,6468007:0,0,0 -k1,15485:32583029,6468007:16467884 -g1,15485:32583029,6468007 +] +[1,15478:3078558,4812305:0,0,0 +(1,15478:3078558,49800853:0,16384,2228224 +g1,15478:29030814,49800853 +g1,15478:36135244,49800853 +(1,15456:36135244,49800853:1720320,16384,2228224 +(1,15456:36135244,52029077:16384,1703936,0 +[1,15456:36135244,52029077:25952256,1703936,0 +(1,15456:36135244,51504789:25952256,1179648,0 +(1,15456:36135244,51504789:16384,1179648,0 +r1,15478:36151628,51504789:16384,1179648,0 ) -(1,15486:6630773,7134185:25952256,410518,101187 -h1,15486:6630773,7134185:0,0,0 -k1,15486:6630773,7134185:0 -h1,15486:14534415,7134185:0,0,0 -k1,15486:32583029,7134185:18048614 -g1,15486:32583029,7134185 -) -(1,15490:6630773,7800363:25952256,404226,76021 -(1,15488:6630773,7800363:0,0,0 -g1,15488:6630773,7800363 -g1,15488:6630773,7800363 -g1,15488:6303093,7800363 -(1,15488:6303093,7800363:0,0,0 -) -g1,15488:6630773,7800363 -) -g1,15490:7579210,7800363 -g1,15490:8843793,7800363 -h1,15490:10108376,7800363:0,0,0 -k1,15490:32583028,7800363:22474652 -g1,15490:32583028,7800363 -) -(1,15492:6630773,9121901:25952256,404226,101187 -(1,15491:6630773,9121901:0,0,0 -g1,15491:6630773,9121901 -g1,15491:6630773,9121901 -g1,15491:6303093,9121901 -(1,15491:6303093,9121901:0,0,0 -) -g1,15491:6630773,9121901 -) -k1,15492:6630773,9121901:0 -h1,15492:13269832,9121901:0,0,0 -k1,15492:32583028,9121901:19313196 -g1,15492:32583028,9121901 -) -(1,15496:6630773,9788079:25952256,404226,76021 -(1,15494:6630773,9788079:0,0,0 -g1,15494:6630773,9788079 -g1,15494:6630773,9788079 -g1,15494:6303093,9788079 -(1,15494:6303093,9788079:0,0,0 -) -g1,15494:6630773,9788079 -) -g1,15496:7579210,9788079 -g1,15496:8843793,9788079 -h1,15496:10108376,9788079:0,0,0 -k1,15496:32583028,9788079:22474652 -g1,15496:32583028,9788079 -) -(1,15498:6630773,11109617:25952256,404226,101187 -(1,15497:6630773,11109617:0,0,0 -g1,15497:6630773,11109617 -g1,15497:6630773,11109617 -g1,15497:6303093,11109617 -(1,15497:6303093,11109617:0,0,0 -) -g1,15497:6630773,11109617 -) -k1,15498:6630773,11109617:0 -h1,15498:14218269,11109617:0,0,0 -k1,15498:32583029,11109617:18364760 -g1,15498:32583029,11109617 -) -(1,15503:6630773,11775795:25952256,410518,107478 -(1,15500:6630773,11775795:0,0,0 -g1,15500:6630773,11775795 -g1,15500:6630773,11775795 -g1,15500:6303093,11775795 -(1,15500:6303093,11775795:0,0,0 -) -g1,15500:6630773,11775795 -) -g1,15503:7579210,11775795 -g1,15503:9792230,11775795 -h1,15503:13269832,11775795:0,0,0 -k1,15503:32583028,11775795:19313196 -g1,15503:32583028,11775795 -) -(1,15503:6630773,12441973:25952256,404226,107478 -h1,15503:6630773,12441973:0,0,0 -g1,15503:7579210,12441973 -g1,15503:9792230,12441973 -g1,15503:13269833,12441973 -g1,15503:16115144,12441973 -g1,15503:18960456,12441973 -g1,15503:22121913,12441973 -h1,15503:24334933,12441973:0,0,0 -k1,15503:32583029,12441973:8248096 -g1,15503:32583029,12441973 -) -] -) -g1,15504:32583029,12549451 -g1,15504:6630773,12549451 -g1,15504:6630773,12549451 -g1,15504:32583029,12549451 -g1,15504:32583029,12549451 -) -h1,15504:6630773,12746059:0,0,0 -(1,15508:6630773,14111835:25952256,513147,115847 -h1,15507:6630773,14111835:983040,0,0 -g1,15507:10132361,14111835 -g1,15507:11435872,14111835 -g1,15507:12382867,14111835 -g1,15507:15742897,14111835 -g1,15507:17209592,14111835 -g1,15507:19205818,14111835 -g1,15507:23174678,14111835 -g1,15507:24767858,14111835 -(1,15507:24767858,14111835:0,459977,115847 -r1,15658:30050089,14111835:5282231,575824,115847 -k1,15507:24767858,14111835:-5282231 -) -(1,15507:24767858,14111835:5282231,459977,115847 -k1,15507:24767858,14111835:3277 -h1,15507:30046812,14111835:0,411205,112570 -) -k1,15508:32583029,14111835:2359270 -g1,15508:32583029,14111835 -) -v1,15510:6630773,15302301:0,393216,0 -(1,15531:6630773,21597655:25952256,6688570,196608 -g1,15531:6630773,21597655 -g1,15531:6630773,21597655 -g1,15531:6434165,21597655 -(1,15531:6434165,21597655:0,6688570,196608 -r1,15658:32779637,21597655:26345472,6885178,196608 -k1,15531:6434165,21597655:-26345472 -) -(1,15531:6434165,21597655:26345472,6688570,196608 -[1,15531:6630773,21597655:25952256,6491962,0 -(1,15512:6630773,15516211:25952256,410518,101187 -(1,15511:6630773,15516211:0,0,0 -g1,15511:6630773,15516211 -g1,15511:6630773,15516211 -g1,15511:6303093,15516211 -(1,15511:6303093,15516211:0,0,0 -) -g1,15511:6630773,15516211 -) -g1,15512:10108376,15516211 -g1,15512:11056814,15516211 -k1,15512:11056814,15516211:0 -h1,15512:17379728,15516211:0,0,0 -k1,15512:32583029,15516211:15203301 -g1,15512:32583029,15516211 -) -(1,15513:6630773,16182389:25952256,410518,101187 -h1,15513:6630773,16182389:0,0,0 -k1,15513:6630773,16182389:0 -h1,15513:14534415,16182389:0,0,0 -k1,15513:32583029,16182389:18048614 -g1,15513:32583029,16182389 -) -(1,15517:6630773,16848567:25952256,404226,76021 -(1,15515:6630773,16848567:0,0,0 -g1,15515:6630773,16848567 -g1,15515:6630773,16848567 -g1,15515:6303093,16848567 -(1,15515:6303093,16848567:0,0,0 -) -g1,15515:6630773,16848567 -) -g1,15517:7579210,16848567 -g1,15517:8843793,16848567 -h1,15517:10108376,16848567:0,0,0 -k1,15517:32583028,16848567:22474652 -g1,15517:32583028,16848567 -) -(1,15519:6630773,18170105:25952256,410518,101187 -(1,15518:6630773,18170105:0,0,0 -g1,15518:6630773,18170105 -g1,15518:6630773,18170105 -g1,15518:6303093,18170105 -(1,15518:6303093,18170105:0,0,0 -) -g1,15518:6630773,18170105 -) -k1,15519:6630773,18170105:0 -h1,15519:13269832,18170105:0,0,0 -k1,15519:32583028,18170105:19313196 -g1,15519:32583028,18170105 -) -(1,15523:6630773,18836283:25952256,404226,76021 -(1,15521:6630773,18836283:0,0,0 -g1,15521:6630773,18836283 -g1,15521:6630773,18836283 -g1,15521:6303093,18836283 -(1,15521:6303093,18836283:0,0,0 -) -g1,15521:6630773,18836283 -) -g1,15523:7579210,18836283 -g1,15523:8843793,18836283 -h1,15523:10424521,18836283:0,0,0 -k1,15523:32583029,18836283:22158508 -g1,15523:32583029,18836283 -) -(1,15525:6630773,20157821:25952256,410518,101187 -(1,15524:6630773,20157821:0,0,0 -g1,15524:6630773,20157821 -g1,15524:6630773,20157821 -g1,15524:6303093,20157821 -(1,15524:6303093,20157821:0,0,0 -) -g1,15524:6630773,20157821 -) -k1,15525:6630773,20157821:0 -h1,15525:14218269,20157821:0,0,0 -k1,15525:32583029,20157821:18364760 -g1,15525:32583029,20157821 -) -(1,15530:6630773,20823999:25952256,410518,107478 -(1,15527:6630773,20823999:0,0,0 -g1,15527:6630773,20823999 -g1,15527:6630773,20823999 -g1,15527:6303093,20823999 -(1,15527:6303093,20823999:0,0,0 -) -g1,15527:6630773,20823999 -) -g1,15530:7579210,20823999 -g1,15530:11056813,20823999 -h1,15530:14534415,20823999:0,0,0 -k1,15530:32583029,20823999:18048614 -g1,15530:32583029,20823999 -) -(1,15530:6630773,21490177:25952256,404226,107478 -h1,15530:6630773,21490177:0,0,0 -g1,15530:7579210,21490177 -g1,15530:9792230,21490177 -g1,15530:13269833,21490177 -g1,15530:16115144,21490177 -g1,15530:18960456,21490177 -g1,15530:22121913,21490177 -h1,15530:24334933,21490177:0,0,0 -k1,15530:32583029,21490177:8248096 -g1,15530:32583029,21490177 -) -] -) -g1,15531:32583029,21597655 -g1,15531:6630773,21597655 -g1,15531:6630773,21597655 -g1,15531:32583029,21597655 -g1,15531:32583029,21597655 -) -h1,15531:6630773,21794263:0,0,0 -v1,15535:6630773,23684327:0,393216,0 -(1,15658:6630773,44252112:25952256,20961001,0 -g1,15658:6630773,44252112 -g1,15658:6303093,44252112 -r1,15658:6401397,44252112:98304,20961001,0 -g1,15658:6600626,44252112 -g1,15658:6797234,44252112 -[1,15658:6797234,44252112:25785795,20961001,0 -(1,15536:6797234,24046400:25785795,755289,196608 -(1,15535:6797234,24046400:0,755289,196608 -r1,15658:8134168,24046400:1336934,951897,196608 -k1,15535:6797234,24046400:-1336934 -) -(1,15535:6797234,24046400:1336934,755289,196608 -) -k1,15535:8341441,24046400:207273 -k1,15535:8669121,24046400:327680 -k1,15535:10019996,24046400:207272 -k1,15535:10993385,24046400:207273 -k1,15535:14677343,24046400:207273 -k1,15535:17910412,24046400:207272 -k1,15535:19714142,24046400:207273 -k1,15535:23768377,24046400:207272 -k1,15535:25673688,24046400:207273 -k1,15535:29263929,24046400:207273 -k1,15535:31038822,24046400:207272 -k1,15535:31601955,24046400:207273 -k1,15536:32583029,24046400:0 -) -(1,15536:6797234,24887888:25785795,513147,134348 -k1,15535:8653432,24887888:241391 -k1,15535:10449992,24887888:241391 -k1,15535:11958849,24887888:241391 -k1,15535:12988638,24887888:241391 -k1,15535:15487744,24887888:241391 -k1,15535:16925822,24887888:241391 -k1,15535:19298443,24887888:241390 -k1,15535:20487485,24887888:241391 -k1,15535:21932117,24887888:241391 -k1,15535:22705005,24887888:241391 -k1,15535:27250801,24887888:241391 -k1,15535:30127395,24887888:241391 -k1,15535:32583029,24887888:0 -) -(1,15536:6797234,25729376:25785795,505283,134348 -k1,15535:7784739,25729376:178135 -k1,15535:9511490,25729376:178135 -k1,15535:10708709,25729376:178134 -k1,15535:13130141,25729376:178135 -k1,15535:16067997,25729376:178135 -k1,15535:16777629,25729376:178135 -k1,15535:18810433,25729376:178135 -k1,15535:19797937,25729376:178134 -k1,15535:21484711,25729376:178135 -k1,15535:22854291,25729376:178135 -k1,15535:25269170,25729376:178135 -k1,15535:26701009,25729376:178135 -k1,15535:27870704,25729376:178135 -k1,15535:29115109,25729376:178134 -k1,15535:31005700,25729376:178135 -k1,15535:31835263,25729376:178135 -k1,15535:32583029,25729376:0 -) -(1,15536:6797234,26570864:25785795,513147,134348 -g1,15535:7869403,26570864 -g1,15535:8830160,26570864 -g1,15535:10232630,26570864 -g1,15535:13108349,26570864 -g1,15535:16786229,26570864 -g1,15535:18057627,26570864 -g1,15535:18714953,26570864 -g1,15535:20018464,26570864 -g1,15535:20965459,26570864 -g1,15535:23648503,26570864 -g1,15535:24499160,26570864 -k1,15536:32583029,26570864:5071179 -g1,15536:32583029,26570864 -) -(1,15538:6797234,27412352:25785795,505283,134348 -h1,15537:6797234,27412352:983040,0,0 -k1,15537:8878546,27412352:144723 -k1,15537:10498484,27412352:144723 -k1,15537:12977599,27412352:144723 -k1,15537:14562148,27412352:144723 -k1,15537:15991377,27412352:144723 -k1,15537:18226042,27412352:144722 -(1,15537:18226042,27412352:0,459977,115847 -r1,15658:23508273,27412352:5282231,575824,115847 -k1,15537:18226042,27412352:-5282231 -) -(1,15537:18226042,27412352:5282231,459977,115847 -k1,15537:18226042,27412352:3277 -h1,15537:23504996,27412352:0,411205,112570 -) -k1,15537:23652996,27412352:144723 -k1,15537:24607089,27412352:144723 -k1,15537:25107672,27412352:144723 -k1,15537:27063810,27412352:144723 -k1,15537:29036332,27412352:144723 -k1,15537:30200140,27412352:144723 -k1,15537:32583029,27412352:0 -) -(1,15538:6797234,28253840:25785795,513147,134348 -k1,15537:8522545,28253840:170142 -k1,15537:11975384,28253840:170141 -k1,15537:15146420,28253840:170142 -k1,15537:15672421,28253840:170141 -k1,15537:17231926,28253840:170142 -k1,15537:19452033,28253840:170141 -k1,15537:20575724,28253840:170142 -k1,15537:21878327,28253840:170141 -k1,15537:23435211,28253840:170142 -k1,15537:24218114,28253840:170141 -k1,15537:25407341,28253840:170142 -k1,15537:27460331,28253840:170141 -k1,15537:30605152,28253840:170142 -k1,15537:32583029,28253840:0 -) -(1,15538:6797234,29095328:25785795,513147,115847 -k1,15537:9114713,29095328:279309 -k1,15537:10010061,29095328:279310 -k1,15537:11308455,29095328:279309 -(1,15537:11308455,29095328:0,452978,115847 -r1,15658:13776992,29095328:2468537,568825,115847 -k1,15537:11308455,29095328:-2468537 -) -(1,15537:11308455,29095328:2468537,452978,115847 -k1,15537:11308455,29095328:3277 -h1,15537:13773715,29095328:0,411205,112570 -) -k1,15537:14056302,29095328:279310 -k1,15537:17114338,29095328:279309 -k1,15537:18045076,29095328:279310 -k1,15537:22357471,29095328:279309 -k1,15537:23655865,29095328:279309 -k1,15537:27295206,29095328:279310 -k1,15537:28528064,29095328:279309 -k1,15537:30093190,29095328:279310 -k1,15537:31563944,29095328:279309 -k1,15537:32583029,29095328:0 -) -(1,15538:6797234,29936816:25785795,513147,134348 -k1,15537:8248587,29936816:278914 -k1,15537:10817329,29936816:278914 -k1,15537:12043894,29936816:278914 -k1,15537:15043207,29936816:278914 -k1,15537:15938159,29936816:278914 -k1,15537:17389512,29936816:278914 -k1,15537:20430770,29936816:278915 -k1,15537:22451631,29936816:278914 -k1,15537:24522299,29936816:278914 -k1,15537:25820298,29936816:278914 -k1,15537:28845826,29936816:278914 -(1,15537:28845826,29936816:0,414482,115847 -r1,15658:29555804,29936816:709978,530329,115847 -k1,15537:28845826,29936816:-709978 -) -(1,15537:28845826,29936816:709978,414482,115847 -k1,15537:28845826,29936816:3277 -h1,15537:29552527,29936816:0,411205,112570 -) -k1,15537:29834718,29936816:278914 -k1,15537:31635378,29936816:278914 -k1,15537:32583029,29936816:0 -) -(1,15538:6797234,30778304:25785795,505283,134348 -k1,15537:10355422,30778304:253207 -k1,15537:13072127,30778304:253207 -k1,15537:15729850,30778304:253207 -k1,15537:17267563,30778304:253207 -k1,15537:19892518,30778304:253207 -k1,15537:21164810,30778304:253207 -k1,15537:23071490,30778304:253207 -k1,15537:24887731,30778304:253207 -k1,15537:26932692,30778304:253207 -(1,15537:26932692,30778304:0,452978,115847 -r1,15658:30808076,30778304:3875384,568825,115847 -k1,15537:26932692,30778304:-3875384 -) -(1,15537:26932692,30778304:3875384,452978,115847 -k1,15537:26932692,30778304:3277 -h1,15537:30804799,30778304:0,411205,112570 -) -k1,15537:31061283,30778304:253207 -k1,15537:32583029,30778304:0 -) -(1,15538:6797234,31619792:25785795,505283,134348 -k1,15537:8288687,31619792:206947 -k1,15537:10785462,31619792:206947 -k1,15537:11983969,31619792:206947 -k1,15537:14415862,31619792:206946 -k1,15537:15641894,31619792:206947 -k1,15537:17675985,31619792:206947 -k1,15537:20863509,31619792:206947 -k1,15537:24179484,31619792:206947 -k1,15537:25879997,31619792:206947 -k1,15537:26773105,31619792:206946 -(1,15537:26773105,31619792:0,452978,115847 -r1,15658:29241642,31619792:2468537,568825,115847 -k1,15537:26773105,31619792:-2468537 -) -(1,15537:26773105,31619792:2468537,452978,115847 -k1,15537:26773105,31619792:3277 -h1,15537:29238365,31619792:0,411205,112570 -) -k1,15537:29622259,31619792:206947 -k1,15537:31714677,31619792:206947 -k1,15537:32583029,31619792:0 -) -(1,15538:6797234,32461280:25785795,473825,134348 -g1,15537:9430470,32461280 -g1,15537:11365092,32461280 -(1,15537:11365092,32461280:0,452978,115847 -r1,15658:13833629,32461280:2468537,568825,115847 -k1,15537:11365092,32461280:-2468537 -) -(1,15537:11365092,32461280:2468537,452978,115847 -k1,15537:11365092,32461280:3277 -h1,15537:13830352,32461280:0,411205,112570 -) -k1,15538:32583029,32461280:18575730 -g1,15538:32583029,32461280 -) -v1,15540:6797234,33651746:0,393216,0 -(1,15568:6797234,42563245:25785795,9304715,196608 -g1,15568:6797234,42563245 -g1,15568:6797234,42563245 -g1,15568:6600626,42563245 -(1,15568:6600626,42563245:0,9304715,196608 -r1,15658:32779637,42563245:26179011,9501323,196608 -k1,15568:6600625,42563245:-26179012 -) -(1,15568:6600626,42563245:26179011,9304715,196608 -[1,15568:6797234,42563245:25785795,9108107,0 -(1,15542:6797234,33859364:25785795,404226,101187 -(1,15541:6797234,33859364:0,0,0 -g1,15541:6797234,33859364 -g1,15541:6797234,33859364 -g1,15541:6469554,33859364 -(1,15541:6469554,33859364:0,0,0 -) -g1,15541:6797234,33859364 -) -k1,15542:6797234,33859364:0 -h1,15542:10590982,33859364:0,0,0 -k1,15542:32583030,33859364:21992048 -g1,15542:32583030,33859364 -) -(1,15546:6797234,34525542:25785795,410518,76021 -(1,15544:6797234,34525542:0,0,0 -g1,15544:6797234,34525542 -g1,15544:6797234,34525542 -g1,15544:6469554,34525542 -(1,15544:6469554,34525542:0,0,0 -) -g1,15544:6797234,34525542 -) -g1,15546:7745671,34525542 -g1,15546:9010254,34525542 -g1,15546:11855565,34525542 -g1,15546:12171711,34525542 -g1,15546:12487857,34525542 -g1,15546:12804003,34525542 -g1,15546:13120149,34525542 -g1,15546:15017023,34525542 -g1,15546:15333169,34525542 -g1,15546:15649315,34525542 -g1,15546:15965461,34525542 -g1,15546:16281607,34525542 -g1,15546:16597753,34525542 -g1,15546:16913899,34525542 -g1,15546:17230045,34525542 -h1,15546:21023793,34525542:0,0,0 -k1,15546:32583029,34525542:11559236 -g1,15546:32583029,34525542 -) -(1,15548:6797234,35847080:25785795,410518,101187 -(1,15547:6797234,35847080:0,0,0 -g1,15547:6797234,35847080 -g1,15547:6797234,35847080 -g1,15547:6469554,35847080 -(1,15547:6469554,35847080:0,0,0 -) -g1,15547:6797234,35847080 -) -k1,15548:6797234,35847080:0 -h1,15548:12171710,35847080:0,0,0 -k1,15548:32583030,35847080:20411320 -g1,15548:32583030,35847080 -) -(1,15552:6797234,36513258:25785795,410518,76021 -(1,15550:6797234,36513258:0,0,0 -g1,15550:6797234,36513258 -g1,15550:6797234,36513258 -g1,15550:6469554,36513258 -(1,15550:6469554,36513258:0,0,0 -) -g1,15550:6797234,36513258 -) -g1,15552:7745671,36513258 -g1,15552:9010254,36513258 -h1,15552:12804002,36513258:0,0,0 -k1,15552:32583030,36513258:19779028 -g1,15552:32583030,36513258 -) -(1,15554:6797234,37834796:25785795,410518,101187 -(1,15553:6797234,37834796:0,0,0 -g1,15553:6797234,37834796 -g1,15553:6797234,37834796 -g1,15553:6469554,37834796 -(1,15553:6469554,37834796:0,0,0 -) -g1,15553:6797234,37834796 -) -g1,15554:8694108,37834796 -g1,15554:9642545,37834796 -h1,15554:12804002,37834796:0,0,0 -k1,15554:32583030,37834796:19779028 -g1,15554:32583030,37834796 -) -(1,15561:6797234,38500974:25785795,404226,107478 -(1,15556:6797234,38500974:0,0,0 -g1,15556:6797234,38500974 -g1,15556:6797234,38500974 -g1,15556:6469554,38500974 -(1,15556:6469554,38500974:0,0,0 -) -g1,15556:6797234,38500974 -) -g1,15561:7745671,38500974 -g1,15561:8061817,38500974 -g1,15561:8377963,38500974 -g1,15561:8694109,38500974 -g1,15561:9010255,38500974 -g1,15561:9326401,38500974 -g1,15561:11223275,38500974 -g1,15561:13752441,38500974 -h1,15561:16281606,38500974:0,0,0 -k1,15561:32583029,38500974:16301423 -g1,15561:32583029,38500974 -) -(1,15561:6797234,39167152:25785795,404226,82312 -h1,15561:6797234,39167152:0,0,0 -g1,15561:7745671,39167152 -g1,15561:9326399,39167152 -g1,15561:9642545,39167152 -g1,15561:11223274,39167152 -g1,15561:11539420,39167152 -g1,15561:11855566,39167152 -g1,15561:12171712,39167152 -g1,15561:13752441,39167152 -g1,15561:14068587,39167152 -g1,15561:14384733,39167152 -g1,15561:14700879,39167152 -g1,15561:15017025,39167152 -h1,15561:16281608,39167152:0,0,0 -k1,15561:32583029,39167152:16301421 -g1,15561:32583029,39167152 -) -(1,15561:6797234,39833330:25785795,404226,82312 -h1,15561:6797234,39833330:0,0,0 -g1,15561:7745671,39833330 -g1,15561:9326399,39833330 -g1,15561:9642545,39833330 -g1,15561:11223274,39833330 -g1,15561:11539420,39833330 -g1,15561:11855566,39833330 -g1,15561:12171712,39833330 -g1,15561:13752441,39833330 -g1,15561:14068587,39833330 -g1,15561:14384733,39833330 -g1,15561:14700879,39833330 -g1,15561:15017025,39833330 -h1,15561:16281608,39833330:0,0,0 -k1,15561:32583029,39833330:16301421 -g1,15561:32583029,39833330 -) -(1,15561:6797234,40499508:25785795,404226,82312 -h1,15561:6797234,40499508:0,0,0 -g1,15561:7745671,40499508 -g1,15561:9326399,40499508 -g1,15561:9642545,40499508 -g1,15561:11223274,40499508 -g1,15561:11539420,40499508 -g1,15561:11855566,40499508 -g1,15561:12171712,40499508 -g1,15561:13752441,40499508 -g1,15561:14068587,40499508 -g1,15561:14384733,40499508 -g1,15561:14700879,40499508 -g1,15561:15017025,40499508 -h1,15561:16281608,40499508:0,0,0 -k1,15561:32583029,40499508:16301421 -g1,15561:32583029,40499508 -) -(1,15563:6797234,41821046:25785795,410518,101187 -(1,15562:6797234,41821046:0,0,0 -g1,15562:6797234,41821046 -g1,15562:6797234,41821046 -g1,15562:6469554,41821046 -(1,15562:6469554,41821046:0,0,0 -) -g1,15562:6797234,41821046 -) -k1,15563:6797234,41821046:0 -g1,15563:12171711,41821046 -h1,15563:15649313,41821046:0,0,0 -k1,15563:32583029,41821046:16933716 -g1,15563:32583029,41821046 -) -(1,15567:6797234,42487224:25785795,404226,76021 -(1,15565:6797234,42487224:0,0,0 -g1,15565:6797234,42487224 -g1,15565:6797234,42487224 -g1,15565:6469554,42487224 -(1,15565:6469554,42487224:0,0,0 -) -g1,15565:6797234,42487224 -) -g1,15567:7745671,42487224 -g1,15567:9010254,42487224 -h1,15567:10590982,42487224:0,0,0 -k1,15567:32583030,42487224:21992048 -g1,15567:32583030,42487224 -) -] -) -g1,15568:32583029,42563245 -g1,15568:6797234,42563245 -g1,15568:6797234,42563245 -g1,15568:32583029,42563245 -g1,15568:32583029,42563245 -) -h1,15568:6797234,42759853:0,0,0 -(1,15572:6797234,44125629:25785795,513147,126483 -h1,15571:6797234,44125629:983040,0,0 -k1,15571:9373173,44125629:185186 -k1,15571:10426711,44125629:185186 -k1,15571:12574045,44125629:185186 -k1,15571:14326852,44125629:185186 -k1,15571:14867898,44125629:185186 -k1,15571:17038170,44125629:185186 -k1,15571:18414801,44125629:185186 -k1,15571:20033916,44125629:185187 -k1,15571:22733718,44125629:185186 -k1,15571:23274764,44125629:185186 -k1,15571:26936635,44125629:185186 -k1,15571:28604245,44125629:185186 -k1,15571:30056897,44125629:185186 -k1,15571:30597943,44125629:185186 -k1,15572:32583029,44125629:0 -k1,15572:32583029,44125629:0 -) -] -g1,15658:32583029,44252112 -) -] -(1,15658:32583029,45706769:0,0,0 -g1,15658:32583029,45706769 -) -) -] -(1,15658:6630773,47279633:25952256,0,0 -h1,15658:6630773,47279633:25952256,0,0 -) -] -(1,15658:4262630,4025873:0,0,0 -[1,15658:-473656,4025873:0,0,0 -(1,15658:-473656,-710413:0,0,0 -(1,15658:-473656,-710413:0,0,0 -g1,15658:-473656,-710413 -) -g1,15658:-473656,-710413 -) -] +k1,15456:62087500,51504789:25935872 +g1,15456:62087500,51504789 ) ] -!23980 -}267 +) +g1,15456:36675916,49800853 +(1,15456:36675916,49800853:1179648,16384,0 +r1,15478:37855564,49800853:1179648,16384,0 +) +) +k1,15478:3078556,49800853:-34777008 +) +] +g1,15478:6630773,4812305 +k1,15478:23311652,4812305:15485502 +g1,15478:23960458,4812305 +g1,15478:27572802,4812305 +g1,15478:29306229,4812305 +) +) +] +[1,15478:6630773,45706769:25952256,40108032,0 +(1,15478:6630773,45706769:25952256,40108032,0 +(1,15478:6630773,45706769:0,0,0 +g1,15478:6630773,45706769 +) +[1,15478:6630773,45706769:25952256,40108032,0 +(1,15468:6630773,6254097:25952256,32768,229376 +(1,15468:6630773,6254097:0,32768,229376 +(1,15468:6630773,6254097:5505024,32768,229376 +r1,15478:12135797,6254097:5505024,262144,229376 +) +k1,15468:6630773,6254097:-5505024 +) +(1,15468:6630773,6254097:25952256,32768,0 +r1,15478:32583029,6254097:25952256,32768,0 +) +) +(1,15468:6630773,7885949:25952256,606339,14155 +(1,15468:6630773,7885949:1974731,582746,14155 +g1,15468:6630773,7885949 +g1,15468:8605504,7885949 +) +k1,15468:32583029,7885949:19020644 +g1,15468:32583029,7885949 +) +(1,15471:6630773,9144245:25952256,513147,134348 +k1,15470:7750545,9144245:359554 +k1,15470:10512650,9144245:359555 +k1,15470:13626682,9144245:359554 +k1,15470:16907831,9144245:359554 +k1,15470:18437858,9144245:359554 +k1,15470:20272628,9144245:359555 +k1,15470:22966574,9144245:359554 +k1,15470:25769310,9144245:359554 +k1,15470:28621198,9144245:359554 +k1,15470:30374704,9144245:359555 +k1,15470:32168186,9144245:359554 +k1,15471:32583029,9144245:0 +) +(1,15471:6630773,10009325:25952256,513147,134348 +k1,15470:9192247,10009325:154992 +k1,15470:12305535,10009325:154993 +k1,15470:15486324,10009325:154992 +k1,15470:16832762,10009325:154993 +k1,15470:20064669,10009325:154992 +k1,15470:21167312,10009325:154992 +k1,15470:23582642,10009325:154993 +k1,15470:24929079,10009325:154992 +k1,15470:29319664,10009325:154993 +k1,15470:31037690,10009325:154992 +k1,15470:32583029,10009325:0 +) +(1,15471:6630773,10874405:25952256,513147,134348 +k1,15470:7529544,10874405:239479 +k1,15470:9465751,10874405:239480 +k1,15470:10896675,10874405:239479 +k1,15470:12646104,10874405:239479 +k1,15470:15887133,10874405:239480 +k1,15470:18983326,10874405:239479 +k1,15470:19874233,10874405:239479 +k1,15470:22737775,10874405:239480 +k1,15470:25997808,10874405:239479 +k1,15470:27046657,10874405:239479 +k1,15470:29237799,10874405:239480 +k1,15470:31193666,10874405:239479 +k1,15470:32583029,10874405:0 +) +(1,15471:6630773,11739485:25952256,513147,126483 +k1,15470:8128966,11739485:233348 +k1,15470:9594392,11739485:233349 +k1,15470:12089387,11739485:233348 +k1,15470:14297540,11739485:233553 +k1,15470:15727575,11739485:233348 +k1,15470:16375733,11739485:233315 +k1,15470:21665839,11739485:233348 +k1,15470:23000192,11739485:233348 +k1,15470:24743491,11739485:233349 +k1,15470:28026885,11739485:233348 +k1,15470:29647631,11739485:233349 +k1,15470:30900064,11739485:233348 +k1,15470:32583029,11739485:0 +) +(1,15471:6630773,12604565:25952256,513147,134348 +k1,15470:10795149,12604565:284645 +k1,15470:11695831,12604565:284644 +k1,15470:16229830,12604565:284645 +k1,15470:17705920,12604565:284645 +k1,15470:22728817,12604565:284644 +k1,15470:25644733,12604565:284645 +k1,15470:26545416,12604565:284645 +k1,15470:30236621,12604565:284644 +k1,15470:31622271,12604565:284645 +k1,15471:32583029,12604565:0 +) +(1,15471:6630773,13469645:25952256,513147,134348 +k1,15470:8543443,13469645:217254 +k1,15470:11442429,13469645:217253 +k1,15470:14018324,13469645:217254 +k1,15470:17813187,13469645:217253 +k1,15470:20765258,13469645:217254 +k1,15470:21744039,13469645:217253 +k1,15470:22980378,13469645:217254 +k1,15470:25632949,13469645:217253 +k1,15470:27938835,13469645:217254 +k1,15470:28823244,13469645:217253 +k1,15470:29455322,13469645:217235 +k1,15470:30885647,13469645:217254 +k1,15471:32583029,13469645:0 +) +(1,15471:6630773,14334725:25952256,513147,134348 +g1,15470:7993921,14334725 +g1,15470:9117208,14334725 +g1,15470:10335522,14334725 +g1,15470:12236721,14334725 +g1,15470:14215908,14334725 +g1,15470:15434222,14334725 +g1,15470:16902228,14334725 +g1,15470:17760749,14334725 +g1,15470:19349341,14334725 +g1,15470:20813415,14334725 +g1,15470:22113649,14334725 +g1,15470:23598694,14334725 +k1,15471:32583029,14334725:5771105 +g1,15471:32583029,14334725 +) +(1,15474:6630773,15199805:25952256,513147,134348 +h1,15472:6630773,15199805:983040,0,0 +k1,15472:9583898,15199805:253042 +k1,15472:13566593,15199805:253041 +k1,15472:16730089,15199805:253042 +k1,15472:18458346,15199805:253042 +k1,15472:20656496,15199805:253041 +k1,15472:21522300,15199805:253042 +k1,15472:25047555,15199805:253042 +k1,15472:29376280,15199805:253041 +k1,15472:30390850,15199805:253042 +k1,15472:32583029,15199805:0 +) +(1,15474:6630773,16064885:25952256,513147,126483 +k1,15472:7698027,16064885:257884 +k1,15472:10718254,16064885:257884 +k1,15472:15256950,16064885:257884 +k1,15472:18150037,16064885:257884 +k1,15472:21308544,16064885:257884 +k1,15472:23432893,16064885:257884 +k1,15472:24882222,16064885:257884 +k1,15472:28163937,16064885:257884 +k1,15472:29864268,16064885:257884 +k1,15472:31635378,16064885:257884 +k1,15472:32583029,16064885:0 +) +(1,15474:6630773,16929965:25952256,513147,134348 +k1,15472:8288715,16929965:224014 +k1,15472:9101242,16929965:224014 +k1,15473:11860189,16929965:224014 +k1,15473:15594310,16929965:224014 +k1,15473:16349821,16929965:224014 +k1,15473:17592920,16929965:224014 +k1,15473:19151902,16929965:224014 +k1,15473:22037333,16929965:224014 +k1,15473:22920639,16929965:224014 +k1,15473:23915356,16929965:224014 +k1,15473:27526271,16929965:224014 +k1,15473:32583029,16929965:0 +) +(1,15474:6630773,17795045:25952256,513147,134348 +k1,15473:7447952,17795045:157887 +k1,15473:8995202,17795045:157887 +k1,15473:11500589,17795045:157887 +k1,15473:12849921,17795045:157887 +k1,15473:17263716,17795045:157887 +k1,15473:18706109,17795045:157887 +k1,15473:22294806,17795045:157887 +k1,15473:23471778,17795045:157887 +k1,15473:25496130,17795045:157887 +k1,15473:26313309,17795045:157887 +k1,15473:29906593,17795045:157887 +k1,15473:31012131,17795045:157887 +k1,15473:32583029,17795045:0 +) +(1,15474:6630773,18660125:25952256,505283,134348 +k1,15473:8281297,18660125:261161 +k1,15473:9807303,18660125:261161 +k1,15473:11803857,18660125:261161 +k1,15473:12420878,18660125:261161 +k1,15473:13965234,18660125:261161 +k1,15473:17416688,18660125:261161 +k1,15473:18869294,18660125:261161 +k1,15473:22065156,18660125:261160 +k1,15473:22682177,18660125:261161 +k1,15473:24226533,18660125:261161 +k1,15473:26745409,18660125:261161 +k1,15473:27960119,18660125:261161 +k1,15473:29990097,18660125:261161 +k1,15473:31298523,18660125:261161 +k1,15473:32583029,18660125:0 +) +(1,15474:6630773,19525205:25952256,513147,134348 +k1,15473:9459843,19525205:248918 +k1,15473:13218867,19525205:248917 +k1,15473:13999282,19525205:248918 +k1,15473:16102869,19525205:248918 +k1,15473:17161157,19525205:248918 +k1,15473:17765934,19525205:248917 +k1,15473:21416826,19525205:248918 +k1,15473:25428166,19525205:248918 +k1,15473:26359969,19525205:248918 +k1,15473:29811630,19525205:248917 +k1,15473:30719840,19525205:248918 +k1,15473:32583029,19525205:0 +) +(1,15474:6630773,20390285:25952256,513147,134348 +k1,15473:8202520,20390285:287241 +k1,15473:9021258,20390285:287241 +k1,15473:12070843,20390285:287242 +k1,15473:13925705,20390285:287241 +k1,15473:15497452,20390285:287241 +k1,15473:16400731,20390285:287241 +k1,15473:17707057,20390285:287241 +k1,15473:18409053,20390285:287153 +k1,15473:21712261,20390285:287241 +k1,15473:23196189,20390285:287241 +k1,15473:27433941,20390285:287242 +k1,15473:28337220,20390285:287241 +k1,15473:29827702,20390285:287241 +k1,15473:31482024,20390285:287241 +k1,15473:32583029,20390285:0 +) +(1,15474:6630773,21255365:25952256,513147,134348 +k1,15473:8336535,21255365:195812 +k1,15473:9551432,21255365:195812 +k1,15473:10839729,21255365:195812 +k1,15473:11694834,21255365:195813 +k1,15473:12246506,21255365:195812 +k1,15473:13655389,21255365:195812 +k1,15473:16502788,21255365:195812 +k1,15473:18956315,21255365:195812 +k1,15473:20343572,21255365:195812 +k1,15473:21300912,21255365:195812 +k1,15473:24752554,21255365:195813 +k1,15473:25599794,21255365:195812 +k1,15473:28223060,21255365:195812 +k1,15473:31821501,21255365:195812 +k1,15473:32583029,21255365:0 +) +(1,15474:6630773,22120445:25952256,513147,134348 +k1,15473:9873102,22120445:263062 +k1,15473:12463346,22120445:263061 +k1,15473:13385700,22120445:263062 +k1,15473:14410289,22120445:263061 +k1,15473:16356971,22120445:263062 +k1,15473:19881759,22120445:263061 +k1,15473:21163906,22120445:263062 +k1,15473:26380833,22120445:263061 +k1,15473:27303187,22120445:263062 +k1,15473:28585333,22120445:263061 +k1,15473:32583029,22120445:0 +) +(1,15474:6630773,22985525:25952256,513147,134348 +k1,15473:7541118,22985525:227460 +k1,15473:9157941,22985525:227460 +k1,15473:11665399,22985525:227460 +k1,15473:13286811,22985525:227461 +k1,15473:15838833,22985525:227460 +k1,15473:16717721,22985525:227460 +k1,15473:18011452,22985525:227460 +k1,15473:21884024,22985525:227460 +k1,15473:22794369,22985525:227460 +k1,15473:26409386,22985525:227461 +k1,15473:28199880,22985525:227460 +k1,15473:29808184,22985525:227460 +k1,15473:31773659,22985525:227460 +k1,15473:32583029,22985525:0 +) +(1,15474:6630773,23850605:25952256,513147,126483 +k1,15473:11002230,23850605:295773 +k1,15473:12399009,23850605:295774 +k1,15473:14438695,23850605:295773 +k1,15473:17227459,23850605:295774 +k1,15473:21598916,23850605:295773 +k1,15473:25574537,23850605:295774 +k1,15473:26486348,23850605:295773 +k1,15473:28216050,23850605:295774 +k1,15473:28926570,23850605:295677 +k1,15473:31107814,23850605:295773 +k1,15473:32583029,23850605:0 +) +(1,15474:6630773,24715685:25952256,513147,134348 +k1,15473:8293422,24715685:152699 +k1,15473:12673848,24715685:152698 +k1,15473:15879214,24715685:152699 +k1,15473:17721430,24715685:152698 +k1,15473:21685048,24715685:152699 +k1,15473:25236444,24715685:152699 +k1,15473:29597864,24715685:152698 +k1,15473:30698214,24715685:152699 +k1,15473:32583029,24715685:0 +) +(1,15474:6630773,25580765:25952256,505283,7863 +k1,15474:32583030,25580765:24282400 +g1,15474:32583030,25580765 +) +(1,15476:6630773,26445845:25952256,513147,126483 +h1,15475:6630773,26445845:983040,0,0 +k1,15475:10456110,26445845:237896 +k1,15475:12682367,26445845:237895 +k1,15475:17052308,26445845:237896 +k1,15475:17821701,26445845:237896 +k1,15475:19078681,26445845:237895 +k1,15475:22698234,26445845:237896 +k1,15475:24821600,26445845:237895 +k1,15475:25590993,26445845:237896 +k1,15475:26184749,26445845:237896 +k1,15475:29920956,26445845:237895 +k1,15475:31931601,26445845:237896 +k1,15475:32583029,26445845:0 +) +(1,15476:6630773,27310925:25952256,513147,126483 +k1,15475:9385355,27310925:158046 +k1,15475:10873781,27310925:158045 +k1,15475:12421190,27310925:158046 +k1,15475:15133829,27310925:158046 +k1,15475:18696469,27310925:158045 +k1,15475:19846075,27310925:158046 +k1,15475:23201623,27310925:158046 +k1,15475:23975706,27310925:158045 +k1,15475:24548554,27310925:158005 +k1,15475:26202787,27310925:158046 +k1,15475:27552278,27310925:158046 +k1,15475:30045371,27310925:158045 +k1,15475:30831252,27310925:158046 +k1,15475:32583029,27310925:0 +) +(1,15476:6630773,28176005:25952256,513147,134348 +k1,15475:8402255,28176005:203205 +k1,15475:9063557,28176005:203205 +k1,15475:9798260,28176005:203206 +k1,15475:11287281,28176005:203205 +k1,15475:11846346,28176005:203205 +k1,15475:13332746,28176005:203205 +k1,15475:17298373,28176005:203205 +k1,15475:18184464,28176005:203206 +k1,15475:21590413,28176005:203205 +k1,15475:22452910,28176005:203205 +k1,15475:24519304,28176005:203205 +k1,15475:26201657,28176005:203205 +k1,15475:28729425,28176005:203206 +k1,15475:29584058,28176005:203205 +k1,15475:30575661,28176005:203205 +k1,15476:32583029,28176005:0 +) +(1,15476:6630773,29041085:25952256,513147,134348 +k1,15475:10308875,29041085:242049 +k1,15475:11009021,29041085:242049 +k1,15475:12355352,29041085:242049 +k1,15475:13883217,29041085:242049 +k1,15475:14873032,29041085:242049 +k1,15475:16554907,29041085:242049 +k1,15475:17483118,29041085:242049 +k1,15475:18081028,29041085:242050 +k1,15475:19606272,29041085:242049 +k1,15475:22690617,29041085:242049 +k1,15475:24411158,29041085:242049 +k1,15475:26747738,29041085:242049 +k1,15475:27649079,29041085:242049 +k1,15475:28910213,29041085:242049 +k1,15475:29567062,29041085:242006 +k1,15475:32583029,29041085:0 +) +(1,15476:6630773,29906165:25952256,513147,134348 +k1,15475:7291527,29906165:190861 +k1,15475:8013885,29906165:190861 +k1,15475:9403400,29906165:190861 +k1,15475:11553786,29906165:190860 +k1,15475:12936092,29906165:190861 +k1,15475:15952210,29906165:190861 +k1,15475:17334516,29906165:190861 +k1,15475:18544462,29906165:190861 +k1,15475:22194313,29906165:190861 +k1,15475:23952794,29906165:190860 +k1,15475:25702101,29906165:190861 +k1,15475:27091616,29906165:190861 +k1,15475:29510046,29906165:190861 +k1,15475:32583029,29906165:0 +) +(1,15476:6630773,30771245:25952256,513147,134348 +k1,15475:8698652,30771245:245323 +k1,15475:10729831,30771245:245323 +k1,15475:12523770,30771245:245323 +k1,15475:14149281,30771245:245323 +k1,15475:17125489,30771245:245323 +k1,15475:19404395,30771245:245324 +k1,15475:22980258,30771245:245323 +k1,15475:26199605,30771245:245323 +k1,15475:27060966,30771245:245323 +k1,15475:28325374,30771245:245323 +k1,15475:30659329,30771245:245323 +k1,15475:31563944,30771245:245323 +k1,15475:32583029,30771245:0 +) +(1,15476:6630773,31636325:25952256,513147,134348 +k1,15475:9729416,31636325:188189 +k1,15475:13496526,31636325:188189 +k1,15475:14703800,31636325:188189 +k1,15475:18273646,31636325:188189 +k1,15475:19842679,31636325:188189 +k1,15475:20562365,31636325:188189 +k1,15475:21106415,31636325:188190 +k1,15475:22694453,31636325:188189 +k1,15475:25526364,31636325:188189 +k1,15475:26662204,31636325:188189 +k1,15475:27869478,31636325:188189 +k1,15475:30218389,31636325:188189 +k1,15475:31478747,31636325:188189 +k1,15475:32583029,31636325:0 +) +(1,15476:6630773,32501405:25952256,513147,134348 +k1,15475:7609413,32501405:230874 +k1,15475:10771712,32501405:230874 +k1,15475:11654014,32501405:230874 +k1,15475:15204287,32501405:230874 +k1,15475:17146306,32501405:230874 +k1,15475:18707561,32501405:230874 +k1,15475:20275368,32501405:230873 +k1,15475:21572513,32501405:230874 +k1,15475:22551153,32501405:230874 +k1,15475:24650458,32501405:230874 +k1,15475:25540624,32501405:230874 +k1,15475:26790583,32501405:230874 +k1,15475:29592434,32501405:230874 +k1,15475:31107814,32501405:230874 +k1,15475:32583029,32501405:0 +) +(1,15476:6630773,33366485:25952256,505283,134348 +k1,15475:8652210,33366485:253931 +k1,15475:10568789,33366485:253931 +k1,15475:13457923,33366485:253931 +k1,15475:15308311,33366485:253931 +k1,15475:16380131,33366485:253931 +k1,15475:16989922,33366485:253931 +k1,15475:18624697,33366485:253931 +k1,15475:19091565,33366485:253876 +k1,15475:21316819,33366485:253931 +k1,15475:23251093,33366485:253931 +k1,15475:26619295,33366485:253931 +k1,15475:29442237,33366485:253931 +k1,15475:30887613,33366485:253931 +k1,15476:32583029,33366485:0 +) +(1,15476:6630773,34231565:25952256,513147,126483 +k1,15475:8755833,34231565:208787 +k1,15475:13173343,34231565:208788 +k1,15475:14041422,34231565:208787 +k1,15475:17182946,34231565:208788 +k1,15475:19162516,34231565:208787 +k1,15475:21947524,34231565:208788 +k1,15475:23302536,34231565:208787 +k1,15475:24945252,34231565:208788 +k1,15475:25568873,34231565:208778 +k1,15475:28207735,34231565:208787 +k1,15475:29793434,34231565:208788 +k1,15475:31074390,34231565:208787 +k1,15475:32583029,34231565:0 +) +(1,15476:6630773,35096645:25952256,505283,134348 +k1,15475:8210125,35096645:190644 +k1,15475:12532814,35096645:190644 +k1,15475:14970688,35096645:190644 +k1,15475:17152316,35096645:190644 +k1,15475:18178543,35096645:190643 +k1,15475:19055349,35096645:190644 +k1,15475:22565392,35096645:190644 +k1,15475:27608322,35096645:190644 +k1,15475:28990411,35096645:190644 +k1,15475:31386342,35096645:190644 +k1,15475:32583029,35096645:0 +) +(1,15476:6630773,35961725:25952256,505283,134348 +k1,15475:10063429,35961725:224669 +k1,15475:10974261,35961725:224670 +k1,15475:11554790,35961725:224669 +k1,15475:14816397,35961725:224669 +k1,15475:15572564,35961725:224670 +k1,15475:18951481,35961725:224669 +k1,15475:21676350,35961725:224670 +k1,15475:24060430,35961725:224669 +k1,15475:25674462,35961725:224669 +k1,15475:28509431,35961725:224670 +k1,15475:30423618,35961725:224669 +k1,15475:32583029,35961725:0 +) +(1,15476:6630773,36826805:25952256,513147,126483 +k1,15475:8574876,36826805:232958 +k1,15475:9755486,36826805:232959 +k1,15475:11938795,36826805:232958 +k1,15475:13561117,36826805:232959 +k1,15475:16348668,36826805:232958 +k1,15475:17113124,36826805:232959 +k1,15475:18412353,36826805:232958 +k1,15475:19664397,36826805:232959 +k1,15475:21489225,36826805:232958 +k1,15475:23633869,36826805:232959 +k1,15475:24324924,36826805:232958 +k1,15475:25089380,36826805:232959 +k1,15475:26972535,36826805:232958 +k1,15475:29982910,36826805:232959 +k1,15475:30867296,36826805:232958 +k1,15475:32583029,36826805:0 +) +(1,15476:6630773,37691885:25952256,513147,134348 +k1,15475:7975269,37691885:252011 +k1,15475:8886572,37691885:252011 +k1,15475:10514184,37691885:252011 +k1,15475:13959109,37691885:252011 +k1,15475:17121574,37691885:252011 +k1,15475:18059747,37691885:252011 +k1,15475:19330842,37691885:252010 +k1,15475:21113119,37691885:252011 +k1,15475:23392159,37691885:252011 +k1,15475:24886733,37691885:252011 +k1,15475:26874137,37691885:252011 +k1,15475:28145233,37691885:252011 +k1,15475:29680439,37691885:252011 +k1,15475:32583029,37691885:0 +) +(1,15476:6630773,38556965:25952256,513147,134348 +g1,15475:8205603,38556965 +g1,15475:9352483,38556965 +g1,15475:11243852,38556965 +g1,15475:13437997,38556965 +g1,15475:14296518,38556965 +g1,15475:15514832,38556965 +g1,15475:17103424,38556965 +g1,15475:19857246,38556965 +g1,15475:21652932,38556965 +k1,15476:32583029,38556965:9406385 +g1,15476:32583029,38556965 +) +(1,15478:6630773,39422045:25952256,513147,126483 +h1,15477:6630773,39422045:983040,0,0 +k1,15477:9549860,39422045:152812 +k1,15477:10058532,39422045:152812 +k1,15477:14275231,39422045:152812 +k1,15477:17186453,39422045:152812 +k1,15477:17695125,39422045:152812 +k1,15477:19568257,39422045:152812 +k1,15477:20380361,39422045:152812 +k1,15477:23811284,39422045:152812 +k1,15477:27542362,39422045:152812 +k1,15477:29188084,39422045:152812 +k1,15477:29755693,39422045:152766 +k1,15477:31624893,39422045:152812 +k1,15478:32583029,39422045:0 +) +(1,15478:6630773,40287125:25952256,513147,134348 +k1,15477:7777088,40287125:156066 +k1,15477:9367082,40287125:156066 +k1,15477:9937947,40287125:156022 +k1,15477:10855541,40287125:156066 +k1,15477:12617239,40287125:156066 +k1,15477:13641657,40287125:156066 +k1,15477:15566540,40287125:156066 +k1,15477:17578585,40287125:156065 +k1,15477:19352080,40287125:156066 +k1,15477:20527231,40287125:156066 +k1,15477:23462024,40287125:156066 +k1,15477:25298433,40287125:156066 +k1,15477:26070536,40287125:156065 +k1,15477:26582462,40287125:156066 +k1,15477:30071689,40287125:156066 +k1,15477:32583029,40287125:0 +) +(1,15478:6630773,41152205:25952256,513147,126483 +k1,15477:7410450,41152205:166915 +k1,15477:9028987,41152205:166915 +k1,15477:10551187,41152205:166915 +k1,15477:11334140,41152205:166915 +k1,15477:12520140,41152205:166915 +k1,15477:16924613,41152205:166915 +k1,15477:17774414,41152205:166916 +k1,15477:19290715,41152205:166915 +k1,15477:22128877,41152205:166915 +k1,15477:24991288,41152205:166915 +k1,15477:26761869,41152205:166915 +k1,15477:28125471,41152205:166915 +k1,15477:29598519,41152205:166915 +k1,15477:32583029,41152205:0 +) +(1,15478:6630773,42017285:25952256,513147,126483 +k1,15477:7344460,42017285:182190 +k1,15477:10165785,42017285:182190 +k1,15477:11420144,42017285:182190 +k1,15477:13614289,42017285:182190 +k1,15477:16517534,42017285:182190 +k1,15477:19034772,42017285:182190 +k1,15477:22324679,42017285:182190 +k1,15477:22972830,42017285:182190 +k1,15477:24174105,42017285:182190 +k1,15477:26424611,42017285:182190 +k1,15477:28120027,42017285:182190 +k1,15477:29249868,42017285:182190 +k1,15477:32583029,42017285:0 +) +(1,15478:6630773,42882365:25952256,513147,126483 +k1,15477:9677124,42882365:204710 +k1,15477:10873395,42882365:204711 +k1,15477:13044185,42882365:204710 +k1,15477:15657999,42882365:204711 +k1,15477:17059396,42882365:204710 +k1,15477:19505438,42882365:204711 +k1,15477:22694658,42882365:204710 +k1,15477:25672853,42882365:204711 +k1,15477:27231537,42882365:204710 +k1,15477:29920063,42882365:204711 +k1,15477:31170728,42882365:204710 +k1,15477:32583029,42882365:0 +) +(1,15478:6630773,43747445:25952256,513147,134348 +k1,15477:7572853,43747445:255918 +k1,15477:9362969,43747445:255918 +k1,15477:10305049,43747445:255918 +k1,15477:12215751,43747445:255918 +k1,15477:13003166,43747445:255918 +k1,15477:14909281,43747445:255918 +k1,15477:16607646,43747445:255918 +k1,15477:18020274,43747445:255918 +k1,15477:20615827,43747445:255918 +k1,15477:22507524,43747445:255918 +k1,15477:25740087,43747445:255918 +k1,15477:26647433,43747445:255918 +k1,15477:28169507,43747445:255918 +k1,15477:29196128,43747445:255918 +k1,15477:32583029,43747445:0 +) +(1,15478:6630773,44612525:25952256,513147,134348 +k1,15477:8914757,44612525:199939 +k1,15477:10589912,44612525:199940 +k1,15477:13845139,44612525:199939 +k1,15477:15064163,44612525:199939 +k1,15477:17765612,44612525:199940 +k1,15477:18624843,44612525:199939 +k1,15477:20214145,44612525:199939 +k1,15477:22051175,44612525:199940 +k1,15477:23818735,44612525:199939 +k1,15477:25470952,44612525:199939 +k1,15477:27503934,44612525:199940 +k1,15477:31391584,44612525:199939 +k1,15477:32583029,44612525:0 +) +(1,15478:6630773,45477605:25952256,513147,134348 +k1,15477:9160829,45477605:168794 +k1,15477:11304406,45477605:168977 +k1,15477:15658329,45477605:168794 +k1,15477:17111630,45477605:168795 +k1,15477:17738521,45477605:168794 +k1,15477:19008320,45477605:168794 +k1,15477:20687065,45477605:168795 +k1,15477:23485819,45477605:168794 +k1,15477:24306042,45477605:168795 +k1,15477:26089643,45477605:168794 +k1,15477:29168892,45477605:168795 +k1,15477:30622192,45477605:168794 +k1,15477:32583029,45477605:0 +) +] +(1,15478:32583029,45706769:0,0,0 +g1,15478:32583029,45706769 +) +) +] +(1,15478:6630773,47279633:25952256,0,0 +h1,15478:6630773,47279633:25952256,0,0 +) +] +(1,15478:4262630,4025873:0,0,0 +[1,15478:-473656,4025873:0,0,0 +(1,15478:-473656,-710413:0,0,0 +(1,15478:-473656,-710413:0,0,0 +g1,15478:-473656,-710413 +) +g1,15478:-473656,-710413 +) +] +) +] +!24608 +}249 +Input:2271:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2272:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2273:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2274:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!294 -{268 -[1,15663:4262630,47279633:28320399,43253760,0 -(1,15663:4262630,4025873:0,0,0 -[1,15663:-473656,4025873:0,0,0 -(1,15663:-473656,-710413:0,0,0 -(1,15663:-473656,-644877:0,0,0 -k1,15663:-473656,-644877:-65536 +Input:2275:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!482 +{250 +[1,15487:4262630,47279633:28320399,43253760,0 +(1,15487:4262630,4025873:0,0,0 +[1,15487:-473656,4025873:0,0,0 +(1,15487:-473656,-710413:0,0,0 +(1,15487:-473656,-644877:0,0,0 +k1,15487:-473656,-644877:-65536 ) -(1,15663:-473656,4736287:0,0,0 -k1,15663:-473656,4736287:5209943 +(1,15487:-473656,4736287:0,0,0 +k1,15487:-473656,4736287:5209943 ) -g1,15663:-473656,-710413 +g1,15487:-473656,-710413 ) ] ) -[1,15663:6630773,47279633:25952256,43253760,0 -[1,15663:6630773,4812305:25952256,786432,0 -(1,15663:6630773,4812305:25952256,513147,126483 -(1,15663:6630773,4812305:25952256,513147,126483 -g1,15663:3078558,4812305 -[1,15663:3078558,4812305:0,0,0 -(1,15663:3078558,2439708:0,1703936,0 -k1,15663:1358238,2439708:-1720320 -(1,15243:1358238,2439708:1720320,1703936,0 -(1,15243:1358238,2439708:1179648,16384,0 -r1,15663:2537886,2439708:1179648,16384,0 +[1,15487:6630773,47279633:25952256,43253760,0 +[1,15487:6630773,4812305:25952256,786432,0 +(1,15487:6630773,4812305:25952256,505283,11795 +(1,15487:6630773,4812305:25952256,505283,11795 +g1,15487:3078558,4812305 +[1,15487:3078558,4812305:0,0,0 +(1,15487:3078558,2439708:0,1703936,0 +k1,15487:1358238,2439708:-1720320 +(1,15456:1358238,2439708:1720320,1703936,0 +(1,15456:1358238,2439708:1179648,16384,0 +r1,15487:2537886,2439708:1179648,16384,0 ) -g1,15243:3062174,2439708 -(1,15243:3062174,2439708:16384,1703936,0 -[1,15243:3062174,2439708:25952256,1703936,0 -(1,15243:3062174,1915420:25952256,1179648,0 -(1,15243:3062174,1915420:16384,1179648,0 -r1,15663:3078558,1915420:16384,1179648,0 +g1,15456:3062174,2439708 +(1,15456:3062174,2439708:16384,1703936,0 +[1,15456:3062174,2439708:25952256,1703936,0 +(1,15456:3062174,1915420:25952256,1179648,0 +(1,15456:3062174,1915420:16384,1179648,0 +r1,15487:3078558,1915420:16384,1179648,0 ) -k1,15243:29014430,1915420:25935872 -g1,15243:29014430,1915420 +k1,15456:29014430,1915420:25935872 +g1,15456:29014430,1915420 ) ] ) ) ) ] -[1,15663:3078558,4812305:0,0,0 -(1,15663:3078558,2439708:0,1703936,0 -g1,15663:29030814,2439708 -g1,15663:36135244,2439708 -(1,15243:36135244,2439708:1720320,1703936,0 -(1,15243:36135244,2439708:16384,1703936,0 -[1,15243:36135244,2439708:25952256,1703936,0 -(1,15243:36135244,1915420:25952256,1179648,0 -(1,15243:36135244,1915420:16384,1179648,0 -r1,15663:36151628,1915420:16384,1179648,0 +[1,15487:3078558,4812305:0,0,0 +(1,15487:3078558,2439708:0,1703936,0 +g1,15487:29030814,2439708 +g1,15487:36135244,2439708 +(1,15456:36135244,2439708:1720320,1703936,0 +(1,15456:36135244,2439708:16384,1703936,0 +[1,15456:36135244,2439708:25952256,1703936,0 +(1,15456:36135244,1915420:25952256,1179648,0 +(1,15456:36135244,1915420:16384,1179648,0 +r1,15487:36151628,1915420:16384,1179648,0 ) -k1,15243:62087500,1915420:25935872 -g1,15243:62087500,1915420 +k1,15456:62087500,1915420:25935872 +g1,15456:62087500,1915420 ) ] ) -g1,15243:36675916,2439708 -(1,15243:36675916,2439708:1179648,16384,0 -r1,15663:37855564,2439708:1179648,16384,0 +g1,15456:36675916,2439708 +(1,15456:36675916,2439708:1179648,16384,0 +r1,15487:37855564,2439708:1179648,16384,0 ) ) -k1,15663:3078556,2439708:-34777008 +k1,15487:3078556,2439708:-34777008 ) ] -[1,15663:3078558,4812305:0,0,0 -(1,15663:3078558,49800853:0,16384,2228224 -k1,15663:1358238,49800853:-1720320 -(1,15243:1358238,49800853:1720320,16384,2228224 -(1,15243:1358238,49800853:1179648,16384,0 -r1,15663:2537886,49800853:1179648,16384,0 +[1,15487:3078558,4812305:0,0,0 +(1,15487:3078558,49800853:0,16384,2228224 +k1,15487:1358238,49800853:-1720320 +(1,15456:1358238,49800853:1720320,16384,2228224 +(1,15456:1358238,49800853:1179648,16384,0 +r1,15487:2537886,49800853:1179648,16384,0 ) -g1,15243:3062174,49800853 -(1,15243:3062174,52029077:16384,1703936,0 -[1,15243:3062174,52029077:25952256,1703936,0 -(1,15243:3062174,51504789:25952256,1179648,0 -(1,15243:3062174,51504789:16384,1179648,0 -r1,15663:3078558,51504789:16384,1179648,0 +g1,15456:3062174,49800853 +(1,15456:3062174,52029077:16384,1703936,0 +[1,15456:3062174,52029077:25952256,1703936,0 +(1,15456:3062174,51504789:25952256,1179648,0 +(1,15456:3062174,51504789:16384,1179648,0 +r1,15487:3078558,51504789:16384,1179648,0 ) -k1,15243:29014430,51504789:25935872 -g1,15243:29014430,51504789 +k1,15456:29014430,51504789:25935872 +g1,15456:29014430,51504789 ) ] ) ) ) ] -[1,15663:3078558,4812305:0,0,0 -(1,15663:3078558,49800853:0,16384,2228224 -g1,15663:29030814,49800853 -g1,15663:36135244,49800853 -(1,15243:36135244,49800853:1720320,16384,2228224 -(1,15243:36135244,52029077:16384,1703936,0 -[1,15243:36135244,52029077:25952256,1703936,0 -(1,15243:36135244,51504789:25952256,1179648,0 -(1,15243:36135244,51504789:16384,1179648,0 -r1,15663:36151628,51504789:16384,1179648,0 +[1,15487:3078558,4812305:0,0,0 +(1,15487:3078558,49800853:0,16384,2228224 +g1,15487:29030814,49800853 +g1,15487:36135244,49800853 +(1,15456:36135244,49800853:1720320,16384,2228224 +(1,15456:36135244,52029077:16384,1703936,0 +[1,15456:36135244,52029077:25952256,1703936,0 +(1,15456:36135244,51504789:25952256,1179648,0 +(1,15456:36135244,51504789:16384,1179648,0 +r1,15487:36151628,51504789:16384,1179648,0 +) +k1,15456:62087500,51504789:25935872 +g1,15456:62087500,51504789 +) +] +) +g1,15456:36675916,49800853 +(1,15456:36675916,49800853:1179648,16384,0 +r1,15487:37855564,49800853:1179648,16384,0 +) +) +k1,15487:3078556,49800853:-34777008 +) +] +g1,15487:6630773,4812305 +g1,15487:6630773,4812305 +g1,15487:10697281,4812305 +k1,15487:31387653,4812305:20690372 +) +) +] +[1,15487:6630773,45706769:25952256,40108032,0 +(1,15487:6630773,45706769:25952256,40108032,0 +(1,15487:6630773,45706769:0,0,0 +g1,15487:6630773,45706769 +) +[1,15487:6630773,45706769:25952256,40108032,0 +(1,15478:6630773,6254097:25952256,513147,126483 +k1,15477:7849044,6254097:199186 +k1,15477:11125144,6254097:199185 +k1,15477:13622678,6254097:199186 +k1,15477:14473291,6254097:199185 +k1,15477:16470130,6254097:199186 +k1,15477:17872557,6254097:199186 +k1,15477:19354937,6254097:199185 +k1,15477:21638168,6254097:199186 +k1,15477:22488781,6254097:199185 +k1,15477:23102810,6254097:199186 +k1,15477:23833493,6254097:199186 +k1,15477:24388538,6254097:199185 +k1,15477:27770808,6254097:199186 +k1,15477:28621421,6254097:199185 +k1,15477:29609005,6254097:199186 +k1,15477:32583029,6254097:0 +) +(1,15478:6630773,7119177:25952256,513147,134348 +k1,15477:8042485,7119177:220267 +k1,15477:12325328,7119177:220266 +k1,15477:13895637,7119177:220267 +k1,15477:17200027,7119177:220266 +k1,15477:20365481,7119177:220267 +k1,15477:21777192,7119177:220266 +k1,15477:24333816,7119177:220267 +k1,15477:26514919,7119177:220266 +k1,15477:29812101,7119177:220267 +k1,15477:30980018,7119177:220266 +k1,15478:32583029,7119177:0 +) +(1,15478:6630773,7984257:25952256,513147,134348 +k1,15477:8677157,7984257:191715 +k1,15477:11126587,7984257:191715 +k1,15477:11946137,7984257:191715 +k1,15477:13490515,7984257:191715 +k1,15477:15276066,7984257:191715 +k1,15477:15823641,7984257:191715 +k1,15477:17405375,7984257:191715 +k1,15477:20343704,7984257:191715 +k1,15477:21742592,7984257:191715 +k1,15477:23899732,7984257:191715 +k1,15477:24742875,7984257:191715 +k1,15477:25953675,7984257:191715 +k1,15477:26560226,7984257:191708 +k1,15477:29594237,7984257:191715 +k1,15477:31391584,7984257:191715 +k1,15477:32583029,7984257:0 +) +(1,15478:6630773,8849337:25952256,513147,126483 +g1,15477:8480199,8849337 +g1,15477:11234021,8849337 +g1,15477:12221648,8849337 +g1,15477:15026588,8849337 +k1,15478:32583029,8849337:14333380 +g1,15478:32583029,8849337 +) +(1,15480:6630773,9714417:25952256,513147,134348 +h1,15479:6630773,9714417:983040,0,0 +k1,15479:8413176,9714417:171528 +k1,15479:10367939,9714417:171528 +k1,15479:11198759,9714417:171528 +k1,15479:12351360,9714417:171527 +k1,15479:14119345,9714417:171528 +k1,15479:14503838,9714417:171501 +k1,15479:18102899,9714417:171528 +k1,15479:23010058,9714417:171527 +k1,15479:24373031,9714417:171528 +k1,15479:27742061,9714417:171528 +k1,15479:31149101,9714417:171528 +k1,15480:32583029,9714417:0 +) +(1,15480:6630773,10579497:25952256,513147,134348 +k1,15479:7287702,10579497:242086 +k1,15479:8917229,10579497:242130 +k1,15479:12231687,10579497:242130 +k1,15479:15557940,10579497:242129 +k1,15479:17871008,10579497:242130 +k1,15479:19060788,10579497:242129 +k1,15479:22001035,10579497:242130 +k1,15479:25281413,10579497:242129 +k1,15479:28448415,10579497:242130 +k1,15479:29732566,10579497:242129 +k1,15479:31092740,10579497:242130 +k1,15479:32583029,10579497:0 +) +(1,15480:6630773,11444577:25952256,505283,126483 +k1,15479:8057167,11444577:234949 +k1,15479:10216909,11444577:234950 +k1,15479:11134743,11444577:234949 +k1,15479:16261956,11444577:234950 +k1,15479:17886268,11444577:234949 +k1,15479:20821957,11444577:234950 +k1,15479:21269863,11444577:234914 +k1,15479:22944638,11444577:234949 +k1,15479:23831016,11444577:234950 +k1,15479:25158450,11444577:234949 +k1,15479:26412485,11444577:234950 +k1,15479:29648327,11444577:234949 +k1,15479:32583029,11444577:0 +) +(1,15480:6630773,12309657:25952256,513147,134348 +k1,15479:8308036,12309657:283312 +k1,15479:11077129,12309657:283312 +k1,15479:14767002,12309657:283312 +k1,15479:16241759,12309657:283312 +k1,15479:18217211,12309657:283312 +k1,15479:23155544,12309657:283311 +k1,15479:24098148,12309657:283312 +k1,15479:25930076,12309657:283312 +k1,15479:27204948,12309657:283312 +k1,15479:28507345,12309657:283312 +k1,15479:32583029,12309657:0 +) +(1,15480:6630773,13174737:25952256,513147,126483 +k1,15479:10527219,13174737:216599 +k1,15479:11359856,13174737:216599 +k1,15479:11991280,13174737:216581 +k1,15479:13877736,13174737:216599 +k1,15479:14307309,13174737:216581 +k1,15479:15999123,13174737:216599 +k1,15479:18061871,13174737:216599 +k1,15479:20188189,13174737:216599 +k1,15479:20862885,13174737:216599 +k1,15479:24644643,13174737:216599 +k1,15479:25880326,13174737:216598 +k1,15479:27869674,13174737:216599 +k1,15479:30384621,13174737:216599 +k1,15479:31548871,13174737:216599 +k1,15480:32583029,13174737:0 +) +(1,15480:6630773,14039817:25952256,513147,134348 +k1,15479:9135952,14039817:276300 +k1,15479:13487936,14039817:276300 +k1,15479:14525763,14039817:276299 +k1,15479:16537456,14039817:276300 +k1,15479:19886084,14039817:276300 +k1,15479:23246508,14039817:276300 +k1,15479:24719495,14039817:276300 +k1,15479:27193216,14039817:276299 +k1,15479:28120944,14039817:276300 +k1,15479:30169993,14039817:276300 +k1,15479:32583029,14039817:0 +) +(1,15480:6630773,14904897:25952256,513147,134348 +g1,15479:7962464,14904897 +g1,15479:8909459,14904897 +g1,15479:11871031,14904897 +g1,15479:13017911,14904897 +g1,15479:14961053,14904897 +g1,15479:17538584,14904897 +g1,15479:19068194,14904897 +g1,15479:21697498,14904897 +g1,15479:23447964,14904897 +g1,15479:25036556,14904897 +k1,15480:32583029,14904897:6107958 +g1,15480:32583029,14904897 +) +(1,15482:6630773,15769977:25952256,513147,134348 +h1,15481:6630773,15769977:983040,0,0 +k1,15481:9002684,15769977:192184 +k1,15481:12277027,15769977:192185 +k1,15481:13128503,15769977:192184 +k1,15481:14339772,15769977:192184 +k1,15481:17359180,15769977:192185 +k1,15481:18082861,15769977:192184 +k1,15481:20226707,15769977:192184 +k1,15481:22441988,15769977:192185 +k1,15481:23320334,15769977:192184 +k1,15481:26092670,15769977:192184 +k1,15481:29492842,15769977:192185 +k1,15481:31391584,15769977:192184 +k1,15481:32583029,15769977:0 +) +(1,15482:6630773,16635057:25952256,513147,134348 +k1,15481:9448210,16635057:165850 +k1,15481:9969919,16635057:165849 +k1,15481:11070312,16635057:165850 +k1,15481:11895454,16635057:165850 +k1,15481:14971758,16635057:165850 +k1,15481:15796899,16635057:165849 +k1,15481:17848220,16635057:165850 +k1,15481:19615770,16635057:165850 +k1,15481:20853789,16635057:165850 +k1,15481:22085909,16635057:165849 +k1,15481:23017875,16635057:165850 +k1,15481:25168811,16635057:165850 +k1,15481:25690521,16635057:165850 +k1,15481:29137102,16635057:165849 +k1,15481:31391584,16635057:165850 +k1,15481:32583029,16635057:0 +) +(1,15482:6630773,17500137:25952256,513147,134348 +k1,15481:9329819,17500137:172633 +k1,15481:10705692,17500137:172632 +k1,15481:12161520,17500137:172633 +k1,15481:15410413,17500137:172633 +k1,15481:16210880,17500137:172632 +k1,15481:17586754,17500137:172633 +k1,15481:20177010,17500137:172633 +k1,15481:21520115,17500137:172632 +k1,15481:22825210,17500137:172633 +k1,15481:25441025,17500137:172633 +k1,15481:28105991,17500137:172632 +k1,15481:29672575,17500137:172633 +k1,15481:32583029,17500137:0 +) +(1,15482:6630773,18365217:25952256,505283,134348 +k1,15481:9147167,18365217:180692 +k1,15481:11300492,18365217:180692 +k1,15481:12672630,18365217:180693 +k1,15481:14831853,18365217:180692 +k1,15481:17547478,18365217:180692 +k1,15481:20556703,18365217:180692 +k1,15481:21869857,18365217:180692 +k1,15481:22798316,18365217:180693 +k1,15481:26069031,18365217:180692 +k1,15481:26865761,18365217:180692 +k1,15481:29464076,18365217:180692 +h1,15481:29862535,18365217:0,0,0 +k1,15481:30043228,18365217:180693 +k1,15481:30910082,18365217:180692 +k1,15481:31548871,18365217:180692 +k1,15482:32583029,18365217:0 +) +(1,15482:6630773,19230297:25952256,513147,134348 +k1,15481:9715049,19230297:141709 +k1,15481:10875843,19230297:141709 +k1,15481:13920141,19230297:141708 +k1,15481:14721142,19230297:141709 +k1,15481:17581940,19230297:141709 +k1,15481:18915094,19230297:141709 +k1,15481:20157807,19230297:141708 +k1,15481:21772110,19230297:141709 +k1,15481:22529857,19230297:141709 +k1,15481:25448982,19230297:141709 +k1,15481:26984641,19230297:141708 +k1,15481:28828320,19230297:141709 +k1,15481:31923737,19230297:141709 +k1,15481:32583029,19230297:0 +) +(1,15482:6630773,20095377:25952256,513147,126483 +k1,15481:7838836,20095377:188978 +k1,15481:11409471,20095377:188978 +k1,15481:12416337,20095377:188977 +k1,15481:14357092,20095377:188978 +k1,15481:15205362,20095377:188978 +k1,15481:16413425,20095377:188978 +k1,15481:19628199,20095377:188977 +k1,15481:20433215,20095377:188978 +k1,15481:21641278,20095377:188978 +k1,15481:24657479,20095377:188978 +k1,15481:25950739,20095377:188978 +k1,15481:26887482,20095377:188977 +k1,15481:30707155,20095377:188978 +k1,15481:31657661,20095377:188978 +k1,15482:32583029,20095377:0 +) +(1,15482:6630773,20960457:25952256,513147,134348 +k1,15481:8586304,20960457:176884 +k1,15481:10197115,20960457:176883 +k1,15481:10788820,20960457:176862 +k1,15481:14165172,20960457:176884 +k1,15481:18076296,20960457:176883 +k1,15481:21792124,20960457:176884 +k1,15481:23160453,20960457:176884 +k1,15481:26853999,20960457:176884 +k1,15481:29666085,20960457:176883 +k1,15481:31482024,20960457:176884 +k1,15481:32583029,20960457:0 +) +(1,15482:6630773,21825537:25952256,513147,126483 +k1,15481:9261745,21825537:187790 +k1,15481:12658833,21825537:187790 +k1,15481:14473883,21825537:187791 +k1,15481:16128369,21825537:187790 +k1,15481:19978311,21825537:187790 +k1,15481:21157661,21825537:187790 +k1,15481:22675832,21825537:187790 +k1,15481:23479660,21825537:187790 +k1,15481:26444867,21825537:187791 +k1,15481:27898813,21825537:187790 +k1,15481:29278048,21825537:187790 +k1,15481:32583029,21825537:0 +) +(1,15482:6630773,22690617:25952256,505283,126483 +g1,15481:8296698,22690617 +g1,15481:10724806,22690617 +g1,15481:12934024,22690617 +g1,15481:13548096,22690617 +k1,15482:32583029,22690617:16699885 +g1,15482:32583029,22690617 +) +v1,15484:6630773,23555697:0,393216,0 +(1,15487:6630773,45625343:25952256,22462862,0 +g1,15487:6630773,45625343 +g1,15487:6237557,45625343 +r1,15487:6368629,45625343:131072,22462862,0 +g1,15487:6567858,45625343 +g1,15487:6764466,45625343 +[1,15487:6764466,45625343:25818563,22462862,0 +(1,15485:6764466,23863995:25818563,701514,196608 +(1,15484:6764466,23863995:0,701514,196608 +r1,15487:8010564,23863995:1246098,898122,196608 +k1,15484:6764466,23863995:-1246098 +) +(1,15484:6764466,23863995:1246098,701514,196608 +) +k1,15484:8166053,23863995:155489 +k1,15484:8493733,23863995:327680 +k1,15484:9277057,23863995:155489 +k1,15484:10564353,23863995:155489 +k1,15484:12982145,23863995:155489 +k1,15484:14792418,23863995:155489 +k1,15484:15479404,23863995:155489 +k1,15484:15990753,23863995:155489 +k1,15484:18506194,23863995:155490 +k1,15484:21296886,23863995:155489 +k1,15484:24403461,23863995:155489 +k1,15484:26392647,23863995:155489 +k1,15484:27175971,23863995:155489 +k1,15484:30090526,23863995:155489 +k1,15484:31193666,23863995:155489 +k1,15484:32583029,23863995:0 +) +(1,15485:6764466,24729075:25818563,513147,134348 +k1,15484:9473833,24729075:154774 +k1,15484:9984467,24729075:154774 +k1,15484:11240247,24729075:154775 +k1,15484:12661177,24729075:154774 +k1,15484:13475243,24729075:154774 +k1,15484:16358936,24729075:154774 +k1,15484:18173738,24729075:154775 +k1,15484:19320072,24729075:154774 +k1,15484:22375469,24729075:154774 +k1,15484:25510820,24729075:154774 +k1,15484:28020959,24729075:154775 +k1,15484:29247902,24729075:154774 +k1,15484:32583029,24729075:0 +) +(1,15485:6764466,25594155:25818563,513147,134348 +k1,15484:8577177,25594155:142854 +k1,15484:9911475,25594155:142853 +k1,15484:13235447,25594155:142854 +k1,15484:14037592,25594155:142853 +k1,15484:17539821,25594155:142854 +k1,15484:19115292,25594155:142854 +k1,15484:19672932,25594155:142797 +k1,15484:22511282,25594155:142854 +(1,15484:22511282,25594155:0,452978,115847 +r1,15487:25331531,25594155:2820249,568825,115847 +k1,15484:22511282,25594155:-2820249 +) +(1,15484:22511282,25594155:2820249,452978,115847 +k1,15484:22511282,25594155:3277 +h1,15484:25328254,25594155:0,411205,112570 +) +k1,15484:25474384,25594155:142853 +k1,15484:26718243,25594155:142854 +k1,15484:27631799,25594155:142853 +k1,15484:30325314,25594155:142854 +k1,15484:32583029,25594155:0 +) +(1,15485:6764466,26459235:25818563,505283,134348 +k1,15484:7676454,26459235:225826 +k1,15484:8360377,26459235:225826 +k1,15484:11556950,26459235:225826 +k1,15484:12801861,26459235:225826 +k1,15484:16467672,26459235:225826 +k1,15484:18898785,26459235:225826 +k1,15484:19810773,26459235:225826 +k1,15484:21055684,26459235:225826 +k1,15484:23522841,26459235:225826 +k1,15484:26820995,26459235:225826 +k1,15484:29056810,26459235:225826 +k1,15484:30301721,26459235:225826 +k1,15485:32583029,26459235:0 +) +(1,15485:6764466,27324315:25818563,513147,134348 +k1,15484:8443280,27324315:221293 +k1,15484:9323865,27324315:221293 +k1,15484:10564243,27324315:221293 +k1,15484:12174899,27324315:221293 +k1,15484:14272488,27324315:221293 +k1,15484:16699068,27324315:221293 +k1,15484:17606523,27324315:221293 +k1,15484:18616214,27324315:221293 +k1,15484:20143640,27324315:221293 +k1,15484:23437261,27324315:221293 +k1,15484:24890631,27324315:221293 +h1,15484:26433349,27324315:0,0,0 +k1,15484:26654642,27324315:221293 +k1,15484:27685305,27324315:221293 +k1,15484:29404751,27324315:221293 +h1,15484:30600128,27324315:0,0,0 +k1,15484:31202185,27324315:221293 +k1,15484:32583029,27324315:0 +) +(1,15485:6764466,28189395:25818563,513147,134348 +k1,15484:8736499,28189395:251058 +k1,15484:11190221,28189395:251057 +k1,15484:14712836,28189395:251058 +k1,15484:17864516,28189395:251057 +k1,15484:18728336,28189395:251058 +k1,15484:19998479,28189395:251058 +k1,15484:22822479,28189395:251057 +k1,15484:23732829,28189395:251058 +k1,15484:27245613,28189395:251057 +k1,15484:28515756,28189395:251058 +k1,15484:29979229,28189395:251057 +k1,15484:30889579,28189395:251058 +k1,15484:32583029,28189395:0 +) +(1,15485:6764466,29054475:25818563,505283,134348 +k1,15484:7645884,29054475:195256 +k1,15484:8602668,29054475:195256 +k1,15484:11200475,29054475:195257 +k1,15484:12414816,29054475:195256 +k1,15484:13709766,29054475:195256 +k1,15484:14556450,29054475:195256 +k1,15484:17005490,29054475:195257 +k1,15484:17658843,29054475:195256 +k1,15484:18385596,29054475:195256 +k1,15484:19647123,29054475:195256 +k1,15484:22335370,29054475:195257 +k1,15484:24416097,29054475:195256 +k1,15484:26679669,29054475:195256 +k1,15484:27866485,29054475:195256 +k1,15484:30752650,29054475:195257 +k1,15484:31563944,29054475:195256 +k1,15484:32583029,29054475:0 +) +(1,15485:6764466,29919555:25818563,513147,134348 +k1,15484:10992283,29919555:170483 +k1,15484:11822058,29919555:170483 +k1,15484:13011626,29919555:170483 +k1,15484:14281804,29919555:170484 +k1,15484:15103715,29919555:170483 +(1,15484:15103715,29919555:0,452978,115847 +r1,15487:17923964,29919555:2820249,568825,115847 +k1,15484:15103715,29919555:-2820249 +) +(1,15484:15103715,29919555:2820249,452978,115847 +k1,15484:15103715,29919555:3277 +h1,15484:17920687,29919555:0,411205,112570 +) +k1,15484:18094447,29919555:170483 +k1,15484:19456375,29919555:170483 +k1,15484:21512329,29919555:170483 +k1,15484:23169824,29919555:170483 +k1,15484:25350297,29919555:170484 +k1,15484:26309178,29919555:170483 +k1,15484:27785794,29919555:170483 +k1,15484:32583029,29919555:0 +) +(1,15485:6764466,30784635:25818563,513147,134348 +k1,15484:7630056,30784635:179428 +k1,15484:10192374,30784635:179429 +k1,15484:12440118,30784635:179428 +k1,15484:13235584,30784635:179428 +k1,15484:14434097,30784635:179428 +k1,15484:16002889,30784635:179429 +k1,15484:18232283,30784635:179428 +k1,15484:19039546,30784635:179428 +k1,15484:22058650,30784635:179429 +k1,15484:24809055,30784635:179428 +k1,15484:28137488,30784635:179428 +k1,15484:28932954,30784635:179428 +k1,15484:29468243,30784635:179429 +k1,15484:31478747,30784635:179428 +k1,15484:32583029,30784635:0 +) +(1,15485:6764466,31649715:25818563,513147,134348 +k1,15484:9193886,31649715:188744 +k1,15484:10713010,31649715:188743 +k1,15484:11257614,31649715:188744 +k1,15484:12546051,31649715:188743 +k1,15484:13386223,31649715:188744 +k1,15484:15655079,31649715:188743 +k1,15484:16375320,31649715:188744 +k1,15484:20327797,31649715:188744 +k1,15484:21144375,31649715:188743 +k1,15484:23522677,31649715:188744 +k1,15484:25791533,31649715:188743 +k1,15484:26511774,31649715:188744 +k1,15484:27056377,31649715:188743 +k1,15484:29887533,31649715:188744 +k1,15484:32583029,31649715:0 +) +(1,15485:6764466,32514795:25818563,513147,134348 +k1,15484:8495148,32514795:252190 +k1,15484:9556709,32514795:252191 +k1,15484:10881068,32514795:252190 +k1,15484:11792550,32514795:252190 +k1,15484:13063825,32514795:252190 +k1,15484:16530557,32514795:252191 +k1,15484:19529361,32514795:252190 +(1,15484:19529361,32514795:0,452978,115847 +r1,15487:20591051,32514795:1061690,568825,115847 +k1,15484:19529361,32514795:-1061690 +) +(1,15484:19529361,32514795:1061690,452978,115847 +g1,15484:20236062,32514795 +h1,15484:20587774,32514795:0,411205,112570 +) +k1,15484:20843241,32514795:252190 +k1,15484:22327508,32514795:252190 +k1,15484:24858386,32514795:252191 +h1,15484:26227433,32514795:0,0,0 +k1,15484:26479623,32514795:252190 +k1,15484:27541183,32514795:252190 +k1,15484:29291526,32514795:252190 +h1,15484:30088444,32514795:0,0,0 +k1,15484:30721399,32514795:252191 +k1,15484:31443482,32514795:252190 +k1,15484:32227169,32514795:252190 +k1,15484:32583029,32514795:0 +) +(1,15485:6764466,33379875:25818563,513147,126483 +k1,15484:10912950,33379875:241883 +k1,15484:14023998,33379875:241882 +k1,15484:16433812,33379875:241883 +k1,15484:19499640,33379875:241882 +k1,15484:20392951,33379875:241883 +k1,15484:21382599,33379875:241882 +k1,15484:23137708,33379875:241883 +k1,15484:23992352,33379875:241882 +k1,15484:25253320,33379875:241883 +k1,15484:28089117,33379875:241882 +k1,15484:30282662,33379875:241883 +k1,15484:31966991,33379875:241882 +k1,15484:32583029,33379875:0 +) +(1,15485:6764466,34244955:25818563,513147,134348 +k1,15484:9089377,34244955:163534 +k1,15484:9935796,34244955:163534 +k1,15484:12679483,34244955:163535 +k1,15484:14512874,34244955:163534 +k1,15484:15505438,34244955:163534 +k1,15484:17872948,34244955:163534 +k1,15484:20749673,34244955:163534 +k1,15484:21596093,34244955:163535 +k1,15484:23293825,34244955:163534 +k1,15484:25024980,34244955:163534 +k1,15484:25544374,34244955:163534 +k1,15484:27097271,34244955:163534 +k1,15484:29137102,34244955:163535 +k1,15484:29758733,34244955:163534 +k1,15484:30453764,34244955:163534 +k1,15484:32583029,34244955:0 +) +(1,15485:6764466,35110035:25818563,513147,126483 +g1,15484:8550322,35110035 +g1,15484:9400979,35110035 +g1,15484:10692693,35110035 +g1,15484:11911007,35110035 +(1,15484:11911007,35110035:0,452978,115847 +r1,15487:13676121,35110035:1765114,568825,115847 +k1,15484:11911007,35110035:-1765114 +) +(1,15484:11911007,35110035:1765114,452978,115847 +g1,15484:12617708,35110035 +g1,15484:13321132,35110035 +h1,15484:13672844,35110035:0,411205,112570 +) +g1,15484:13875350,35110035 +g1,15484:14757464,35110035 +(1,15484:14757464,35110035:0,452978,115847 +r1,15487:16522578,35110035:1765114,568825,115847 +k1,15484:14757464,35110035:-1765114 +) +(1,15484:14757464,35110035:1765114,452978,115847 +g1,15484:15815877,35110035 +h1,15484:16519301,35110035:0,411205,112570 +) +g1,15484:16721807,35110035 +g1,15484:19997951,35110035 +g1,15484:20809942,35110035 +g1,15484:22028256,35110035 +g1,15484:24800428,35110035 +g1,15484:25658949,35110035 +g1,15484:27550318,35110035 +k1,15485:32583029,35110035:1921717 +g1,15485:32583029,35110035 +) +(1,15487:6764466,35975115:25818563,513147,134348 +h1,15486:6764466,35975115:983040,0,0 +k1,15486:10562605,35975115:280166 +k1,15486:12989075,35975115:280167 +k1,15486:14460686,35975115:280166 +k1,15486:16524087,35975115:280166 +k1,15486:17463546,35975115:280167 +k1,15486:18762797,35975115:280166 +k1,15486:22424620,35975115:280166 +k1,15486:24424452,35975115:280167 +k1,15486:25513988,35975115:280166 +k1,15486:26150014,35975115:280166 +k1,15486:28632191,35975115:280167 +k1,15486:31896867,35975115:280166 +k1,15486:32583029,35975115:0 +) +(1,15487:6764466,36840195:25818563,513147,134348 +k1,15486:9091828,36840195:247249 +k1,15486:9990506,36840195:247250 +k1,15486:12866404,36840195:247249 +k1,15486:17020255,36840195:247250 +k1,15486:17880266,36840195:247249 +k1,15486:19146601,36840195:247250 +k1,15486:21966793,36840195:247249 +k1,15486:22873335,36840195:247250 +k1,15486:26479959,36840195:247249 +k1,15486:29262142,36840195:247250 +k1,15486:31482024,36840195:247249 +k1,15486:32583029,36840195:0 +) +(1,15487:6764466,37705275:25818563,505283,134348 +k1,15486:10418229,37705275:236716 +k1,15486:12279583,37705275:236716 +k1,15486:14703235,37705275:236716 +k1,15486:17510928,37705275:236716 +k1,15486:19861835,37705275:236716 +k1,15486:20886949,37705275:236716 +k1,15486:25255710,37705275:236716 +k1,15486:27739656,37705275:236716 +k1,15486:29370323,37705275:236716 +k1,15486:31931601,37705275:236716 +k1,15486:32583029,37705275:0 +) +(1,15487:6764466,38570355:25818563,513147,134348 +k1,15486:8246017,38570355:151170 +k1,15486:9048614,38570355:151169 +k1,15486:11358540,38570355:151170 +k1,15486:12528795,38570355:151170 +k1,15486:15450171,38570355:151169 +k1,15486:17804006,38570355:151170 +k1,15486:18716704,38570355:151170 +k1,15486:22255429,38570355:151169 +k1,15486:23065891,38570355:151170 +k1,15486:24236146,38570355:151170 +k1,15486:28444649,38570355:151169 +k1,15486:30514713,38570355:151170 +k1,15486:32583029,38570355:0 +) +(1,15487:6764466,39435435:25818563,513147,126483 +k1,15486:9159760,39435435:214911 +k1,15486:10122437,39435435:214911 +k1,15486:12492172,39435435:214911 +k1,15486:13716338,39435435:214912 +k1,15486:15763636,39435435:214911 +k1,15486:16510044,39435435:214911 +k1,15486:17534325,39435435:214911 +k1,15486:19143842,39435435:214911 +k1,15486:21790139,39435435:214911 +k1,15486:22360910,39435435:214911 +k1,15486:25753007,39435435:214912 +k1,15486:28051963,39435435:214911 +k1,15486:29926246,39435435:214911 +k1,15486:30792585,39435435:214911 +k1,15487:32583029,39435435:0 +) +(1,15487:6764466,40300515:25818563,513147,134348 +k1,15486:8781412,40300515:235022 +k1,15486:10207879,40300515:235022 +k1,15486:10798761,40300515:235022 +k1,15486:12484751,40300515:235023 +k1,15486:15551584,40300515:235022 +k1,15486:17870651,40300515:235022 +k1,15486:18637170,40300515:235022 +k1,15486:21511327,40300515:235022 +k1,15486:23891342,40300515:235022 +k1,15486:26790404,40300515:235023 +k1,15486:27684718,40300515:235022 +k1,15486:28938825,40300515:235022 +k1,15486:31753999,40300515:235022 +k1,15487:32583029,40300515:0 +) +(1,15487:6764466,41165595:25818563,513147,134348 +k1,15486:9875226,41165595:233729 +k1,15486:10464816,41165595:233730 +k1,15486:12268788,41165595:233729 +k1,15486:14586563,41165595:233730 +k1,15486:15471720,41165595:233729 +k1,15486:18062780,41165595:233730 +k1,15486:18652369,41165595:233729 +k1,15486:21241462,41165595:233729 +k1,15486:22713167,41165595:233730 +k1,15486:23606188,41165595:233729 +k1,15486:27089193,41165595:233730 +k1,15486:29241816,41165595:233729 +k1,15486:30126974,41165595:233730 +k1,15486:31747445,41165595:233729 +k1,15486:32583029,41165595:0 +) +(1,15487:6764466,42030675:25818563,513147,134348 +k1,15486:9159155,42030675:152702 +k1,15486:9524803,42030675:152656 +k1,15486:10492774,42030675:152703 +k1,15486:13973394,42030675:152702 +k1,15486:15145181,42030675:152702 +k1,15486:18866975,42030675:152703 +k1,15486:19678969,42030675:152702 +k1,15486:20850756,42030675:152702 +k1,15486:23906049,42030675:152703 +k1,15486:24718043,42030675:152702 +k1,15486:26260108,42030675:152702 +k1,15486:27697317,42030675:152703 +k1,15486:28381516,42030675:152702 +k1,15486:32583029,42030675:0 +) +(1,15487:6764466,42895755:25818563,505283,134348 +k1,15486:7623381,42895755:242877 +k1,15486:8885342,42895755:242876 +k1,15486:12509876,42895755:242877 +k1,15486:15687454,42895755:242876 +k1,15486:16949416,42895755:242877 +k1,15486:19114464,42895755:242877 +k1,15486:24587768,42895755:242876 +k1,15486:25934927,42895755:242877 +k1,15486:28020675,42895755:242876 +k1,15486:28879590,42895755:242877 +k1,15486:32583029,42895755:0 +) +(1,15487:6764466,43760835:25818563,513147,126483 +k1,15486:8161366,43760835:205455 +k1,15486:11457499,43760835:205455 +k1,15486:12947460,43760835:205455 +k1,15486:14144475,43760835:205455 +k1,15486:15816626,43760835:205455 +k1,15486:17672279,43760835:205456 +k1,15486:20361549,43760835:205455 +k1,15486:21218432,43760835:205455 +k1,15486:22752957,43760835:205455 +k1,15486:23719940,43760835:205455 +k1,15486:28375290,43760835:205455 +k1,15486:29263630,43760835:205455 +k1,15486:32583029,43760835:0 +) +(1,15487:6764466,44625915:25818563,513147,126483 +k1,15486:8678445,44625915:202834 +k1,15486:10323726,44625915:202834 +k1,15486:12270473,44625915:202834 +k1,15486:14675972,44625915:202834 +k1,15486:15640334,44625915:202834 +k1,15486:20695454,44625915:202834 +k1,15486:21514326,44625915:202834 +k1,15486:23151087,44625915:202833 +k1,15486:23942434,44625915:202834 +k1,15486:25069981,44625915:202834 +k1,15486:27714686,44625915:202834 +k1,15486:28449017,44625915:202834 +k1,15486:29936357,44625915:202834 +k1,15486:31086842,44625915:202834 +k1,15486:32583029,44625915:0 +) +(1,15487:6764466,45490995:25818563,513147,134348 +k1,15486:8308058,45490995:259086 +k1,15486:10427710,45490995:259085 +k1,15486:11338224,45490995:259086 +k1,15486:12345075,45490995:259085 +k1,15486:14575484,45490995:259086 +k1,15486:17185346,45490995:259086 +k1,15486:18635876,45490995:259085 +k1,15486:21515091,45490995:259086 +k1,15486:25836753,45490995:259085 +k1,15486:28269013,45490995:259086 +k1,15486:29144136,45490995:259085 +k1,15486:30422307,45490995:259086 +k1,15486:32583029,45490995:0 +) +] +g1,15487:32583029,45625343 +) +] +(1,15487:32583029,45706769:0,0,0 +g1,15487:32583029,45706769 +) +) +] +(1,15487:6630773,47279633:25952256,0,0 +h1,15487:6630773,47279633:25952256,0,0 +) +] +(1,15487:4262630,4025873:0,0,0 +[1,15487:-473656,4025873:0,0,0 +(1,15487:-473656,-710413:0,0,0 +(1,15487:-473656,-710413:0,0,0 +g1,15487:-473656,-710413 +) +g1,15487:-473656,-710413 +) +] +) +] +!28197 +}250 +Input:2276:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2277:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!200 +{251 +[1,15526:4262630,47279633:28320399,43253760,0 +(1,15526:4262630,4025873:0,0,0 +[1,15526:-473656,4025873:0,0,0 +(1,15526:-473656,-710413:0,0,0 +(1,15526:-473656,-644877:0,0,0 +k1,15526:-473656,-644877:-65536 +) +(1,15526:-473656,4736287:0,0,0 +k1,15526:-473656,4736287:5209943 +) +g1,15526:-473656,-710413 +) +] ) -k1,15243:62087500,51504789:25935872 -g1,15243:62087500,51504789 -) -] -) -g1,15243:36675916,49800853 -(1,15243:36675916,49800853:1179648,16384,0 -r1,15663:37855564,49800853:1179648,16384,0 -) -) -k1,15663:3078556,49800853:-34777008 -) -] -g1,15663:6630773,4812305 -g1,15663:6630773,4812305 -g1,15663:11156689,4812305 -g1,15663:12279976,4812305 -g1,15663:16431026,4812305 -k1,15663:31387652,4812305:14956626 -) -) -] -[1,15663:6630773,45706769:25952256,40108032,0 -(1,15663:6630773,45706769:25952256,40108032,0 -(1,15663:6630773,45706769:0,0,0 -g1,15663:6630773,45706769 -) -[1,15663:6630773,45706769:25952256,40108032,0 -v1,15658:6630773,6254097:0,393216,0 -(1,15658:6630773,42776649:25952256,36915768,0 -g1,15658:6630773,42776649 -g1,15658:6303093,42776649 -r1,15663:6401397,42776649:98304,36915768,0 -g1,15658:6600626,42776649 -g1,15658:6797234,42776649 -[1,15658:6797234,42776649:25785795,36915768,0 -v1,15574:6797234,6254097:0,393216,0 -(1,15605:6797234,17164130:25785795,11303249,196608 -g1,15605:6797234,17164130 -g1,15605:6797234,17164130 -g1,15605:6600626,17164130 -(1,15605:6600626,17164130:0,11303249,196608 -r1,15663:32779637,17164130:26179011,11499857,196608 -k1,15605:6600625,17164130:-26179012 -) -(1,15605:6600626,17164130:26179011,11303249,196608 -[1,15605:6797234,17164130:25785795,11106641,0 -(1,15576:6797234,6461715:25785795,404226,101187 -(1,15575:6797234,6461715:0,0,0 -g1,15575:6797234,6461715 -g1,15575:6797234,6461715 -g1,15575:6469554,6461715 -(1,15575:6469554,6461715:0,0,0 -) -g1,15575:6797234,6461715 -) -g1,15576:9010254,6461715 -g1,15576:9958692,6461715 -h1,15576:11539420,6461715:0,0,0 -k1,15576:32583028,6461715:21043608 -g1,15576:32583028,6461715 -) -(1,15577:6797234,7127893:25785795,404226,101187 -h1,15577:6797234,7127893:0,0,0 -g1,15577:11223273,7127893 -g1,15577:12171711,7127893 -g1,15577:15017023,7127893 -k1,15577:15017023,7127893:0 -h1,15577:19443062,7127893:0,0,0 -k1,15577:32583029,7127893:13139967 -g1,15577:32583029,7127893 -) -(1,15578:6797234,7794071:25785795,404226,101187 -h1,15578:6797234,7794071:0,0,0 -k1,15578:6797234,7794071:0 -h1,15578:10907127,7794071:0,0,0 -k1,15578:32583029,7794071:21675902 -g1,15578:32583029,7794071 -) -(1,15582:6797234,8460249:25785795,410518,76021 -(1,15580:6797234,8460249:0,0,0 -g1,15580:6797234,8460249 -g1,15580:6797234,8460249 -g1,15580:6469554,8460249 -(1,15580:6469554,8460249:0,0,0 -) -g1,15580:6797234,8460249 -) -g1,15582:7745671,8460249 -g1,15582:9010254,8460249 -g1,15582:10907128,8460249 -g1,15582:11223274,8460249 -g1,15582:11539420,8460249 -g1,15582:11855566,8460249 -g1,15582:12171712,8460249 -g1,15582:12487858,8460249 -g1,15582:12804004,8460249 -g1,15582:13120150,8460249 -g1,15582:15965461,8460249 -g1,15582:16281607,8460249 -g1,15582:16597753,8460249 -g1,15582:16913899,8460249 -g1,15582:17230045,8460249 -g1,15582:19126919,8460249 -g1,15582:19443065,8460249 -g1,15582:19759211,8460249 -g1,15582:20075357,8460249 -g1,15582:20391503,8460249 -g1,15582:20707649,8460249 -g1,15582:21023795,8460249 -g1,15582:21339941,8460249 -h1,15582:25133689,8460249:0,0,0 -k1,15582:32583029,8460249:7449340 -g1,15582:32583029,8460249 -) -(1,15584:6797234,9781787:25785795,404226,101187 -(1,15583:6797234,9781787:0,0,0 -g1,15583:6797234,9781787 -g1,15583:6797234,9781787 -g1,15583:6469554,9781787 -(1,15583:6469554,9781787:0,0,0 -) -g1,15583:6797234,9781787 -) -g1,15584:10907128,9781787 -g1,15584:11855566,9781787 -k1,15584:11855566,9781787:0 -h1,15584:17230042,9781787:0,0,0 -k1,15584:32583029,9781787:15352987 -g1,15584:32583029,9781787 -) -(1,15585:6797234,10447965:25785795,404226,101187 -h1,15585:6797234,10447965:0,0,0 -k1,15585:6797234,10447965:0 -h1,15585:12804002,10447965:0,0,0 -k1,15585:32583030,10447965:19779028 -g1,15585:32583030,10447965 -) -(1,15589:6797234,11114143:25785795,410518,76021 -(1,15587:6797234,11114143:0,0,0 -g1,15587:6797234,11114143 -g1,15587:6797234,11114143 -g1,15587:6469554,11114143 -(1,15587:6469554,11114143:0,0,0 -) -g1,15587:6797234,11114143 -) -g1,15589:7745671,11114143 -g1,15589:9010254,11114143 -g1,15589:11855565,11114143 -g1,15589:12171711,11114143 -g1,15589:12487857,11114143 -g1,15589:12804003,11114143 -g1,15589:13120149,11114143 -g1,15589:15017023,11114143 -g1,15589:15333169,11114143 -g1,15589:15649315,11114143 -g1,15589:15965461,11114143 -g1,15589:16281607,11114143 -g1,15589:16597753,11114143 -g1,15589:16913899,11114143 -g1,15589:17230045,11114143 -h1,15589:21023793,11114143:0,0,0 -k1,15589:32583029,11114143:11559236 -g1,15589:32583029,11114143 -) -(1,15591:6797234,12435681:25785795,404226,101187 -(1,15590:6797234,12435681:0,0,0 -g1,15590:6797234,12435681 -g1,15590:6797234,12435681 -g1,15590:6469554,12435681 -(1,15590:6469554,12435681:0,0,0 -) -g1,15590:6797234,12435681 -) -g1,15591:9010254,12435681 -g1,15591:9958691,12435681 -h1,15591:13752439,12435681:0,0,0 -k1,15591:32583029,12435681:18830590 -g1,15591:32583029,12435681 -) -(1,15598:6797234,13101859:25785795,404226,107478 -(1,15593:6797234,13101859:0,0,0 -g1,15593:6797234,13101859 -g1,15593:6797234,13101859 -g1,15593:6469554,13101859 -(1,15593:6469554,13101859:0,0,0 -) -g1,15593:6797234,13101859 -) -g1,15598:7745671,13101859 -g1,15598:8061817,13101859 -g1,15598:8377963,13101859 -g1,15598:8694109,13101859 -g1,15598:9010255,13101859 -g1,15598:9326401,13101859 -g1,15598:11223275,13101859 -g1,15598:13752441,13101859 -h1,15598:16281606,13101859:0,0,0 -k1,15598:32583029,13101859:16301423 -g1,15598:32583029,13101859 -) -(1,15598:6797234,13768037:25785795,404226,82312 -h1,15598:6797234,13768037:0,0,0 -g1,15598:7745671,13768037 -g1,15598:9326399,13768037 -g1,15598:9642545,13768037 -g1,15598:11223274,13768037 -g1,15598:11539420,13768037 -g1,15598:11855566,13768037 -g1,15598:12171712,13768037 -g1,15598:13752441,13768037 -g1,15598:14068587,13768037 -g1,15598:14384733,13768037 -g1,15598:14700879,13768037 -g1,15598:15017025,13768037 -h1,15598:16281608,13768037:0,0,0 -k1,15598:32583029,13768037:16301421 -g1,15598:32583029,13768037 -) -(1,15598:6797234,14434215:25785795,404226,82312 -h1,15598:6797234,14434215:0,0,0 -g1,15598:7745671,14434215 -g1,15598:9326399,14434215 -g1,15598:9642545,14434215 -g1,15598:11223274,14434215 -g1,15598:11539420,14434215 -g1,15598:11855566,14434215 -g1,15598:12171712,14434215 -g1,15598:13752441,14434215 -g1,15598:14068587,14434215 -g1,15598:14384733,14434215 -g1,15598:14700879,14434215 -g1,15598:15017025,14434215 -h1,15598:16281608,14434215:0,0,0 -k1,15598:32583029,14434215:16301421 -g1,15598:32583029,14434215 -) -(1,15598:6797234,15100393:25785795,404226,82312 -h1,15598:6797234,15100393:0,0,0 -g1,15598:7745671,15100393 -g1,15598:9326399,15100393 -g1,15598:9642545,15100393 -g1,15598:11223274,15100393 -g1,15598:11539420,15100393 -g1,15598:11855566,15100393 -g1,15598:12171712,15100393 -g1,15598:13752441,15100393 -g1,15598:14068587,15100393 -g1,15598:14384733,15100393 -g1,15598:14700879,15100393 -g1,15598:15017025,15100393 -h1,15598:16281608,15100393:0,0,0 -k1,15598:32583029,15100393:16301421 -g1,15598:32583029,15100393 -) -(1,15600:6797234,16421931:25785795,404226,101187 -(1,15599:6797234,16421931:0,0,0 -g1,15599:6797234,16421931 -g1,15599:6797234,16421931 -g1,15599:6469554,16421931 -(1,15599:6469554,16421931:0,0,0 -) -g1,15599:6797234,16421931 -) -k1,15600:6797234,16421931:0 -g1,15600:12487857,16421931 -h1,15600:16597751,16421931:0,0,0 -k1,15600:32583029,16421931:15985278 -g1,15600:32583029,16421931 -) -(1,15604:6797234,17088109:25785795,404226,76021 -(1,15602:6797234,17088109:0,0,0 -g1,15602:6797234,17088109 -g1,15602:6797234,17088109 -g1,15602:6469554,17088109 -(1,15602:6469554,17088109:0,0,0 -) -g1,15602:6797234,17088109 -) -g1,15604:7745671,17088109 -g1,15604:9010254,17088109 -h1,15604:10590982,17088109:0,0,0 -k1,15604:32583030,17088109:21992048 -g1,15604:32583030,17088109 -) -] -) -g1,15605:32583029,17164130 -g1,15605:6797234,17164130 -g1,15605:6797234,17164130 -g1,15605:32583029,17164130 -g1,15605:32583029,17164130 -) -h1,15605:6797234,17360738:0,0,0 -(1,15609:6797234,18726514:25785795,513147,126483 -h1,15608:6797234,18726514:983040,0,0 -k1,15608:9179765,18726514:202804 -k1,15608:10555008,18726514:202804 -k1,15608:14203040,18726514:202804 -k1,15608:15215214,18726514:202804 -k1,15608:18894703,18726514:202804 -k1,15608:22123305,18726514:202805 -k1,15608:23317669,18726514:202804 -k1,15608:24206635,18726514:202804 -k1,15608:26898496,18726514:202804 -k1,15608:27706853,18726514:202804 -k1,15608:29106344,18726514:202804 -k1,15608:32583029,18726514:0 -) -(1,15609:6797234,19568002:25785795,513147,134348 -k1,15608:9688136,19568002:195406 -k1,15608:12063926,19568002:195407 -k1,15608:14269977,19568002:195406 -k1,15608:15236087,19568002:195407 -k1,15608:17391019,19568002:195406 -k1,15608:18245717,19568002:195406 -k1,15608:19229522,19568002:195407 -k1,15608:24048493,19568002:195406 -k1,15608:25972740,19568002:195407 -k1,15608:27634842,19568002:195406 -k1,15608:28296210,19568002:195407 -k1,15608:29510701,19568002:195406 -k1,15608:32583029,19568002:0 -) -(1,15609:6797234,20409490:25785795,513147,134348 -k1,15608:7585305,20409490:256574 -k1,15608:8612581,20409490:256573 -k1,15608:10828681,20409490:256574 -k1,15608:11744546,20409490:256573 -k1,15608:12356980,20409490:256574 -k1,15608:14996442,20409490:256573 -k1,15608:16981856,20409490:256574 -k1,15608:20146917,20409490:256573 -k1,15608:21422576,20409490:256574 -k1,15608:24062038,20409490:256573 -k1,15608:26047452,20409490:256574 -k1,15608:26909578,20409490:256573 -k1,15608:27643909,20409490:256574 -k1,15608:28919567,20409490:256573 -k1,15608:31135667,20409490:256574 -k1,15608:31923737,20409490:256573 -k1,15608:32583029,20409490:0 -) -(1,15609:6797234,21250978:25785795,513147,134348 -k1,15608:8049778,21250978:233459 -k1,15608:9838407,21250978:233460 -k1,15608:10723294,21250978:233459 -k1,15608:11704520,21250978:233460 -k1,15608:15098780,21250978:233459 -k1,15608:16157337,21250978:233459 -k1,15608:19371374,21250978:233460 -k1,15608:21894661,21250978:233459 -k1,15608:22787412,21250978:233459 -k1,15608:25403761,21250978:233460 -k1,15608:28043702,21250978:233459 -k1,15608:29711090,21250978:233460 -k1,15608:30402646,21250978:233459 -k1,15608:32583029,21250978:0 -) -(1,15609:6797234,22092466:25785795,513147,126483 -k1,15608:9183143,22092466:158340 -k1,15608:12927614,22092466:158341 -k1,15608:14518571,22092466:158340 -k1,15608:15091714,22092466:158300 -k1,15608:17739111,22092466:158340 -k1,15608:18583613,22092466:158340 -k1,15608:19650938,22092466:158341 -k1,15608:20495440,22092466:158340 -k1,15608:20866732,22092466:158300 -k1,15608:22500287,22092466:158340 -k1,15608:24168578,22092466:158341 -k1,15608:25635672,22092466:158340 -k1,15608:26445440,22092466:158340 -k1,15608:28200238,22092466:158341 -k1,15608:29598519,22092466:158340 -k1,15608:32583029,22092466:0 -) -(1,15609:6797234,22933954:25785795,513147,134348 -k1,15608:7718418,22933954:141961 -k1,15608:9577422,22933954:141961 -k1,15608:12629837,22933954:141961 -k1,15608:13387837,22933954:141962 -k1,15608:14548883,22933954:141961 -k1,15608:17898831,22933954:141961 -k1,15608:21488641,22933954:141961 -k1,15608:23789358,22933954:141961 -k1,15608:24614204,22933954:141961 -k1,15608:26231380,22933954:141961 -k1,15608:29126509,22933954:141962 -k1,15608:29884508,22933954:141961 -k1,15608:31045554,22933954:141961 -k1,15608:32583029,22933954:0 -) -(1,15609:6797234,23775442:25785795,513147,126483 -k1,15608:9992583,23775442:210839 -k1,15608:10982644,23775442:210838 -k1,15608:11671240,23775442:210839 -k1,15608:12498117,23775442:210839 -k1,15608:14596392,23775442:210838 -k1,15608:16629787,23775442:210839 -k1,15608:17859711,23775442:210839 -k1,15608:20830270,23775442:210838 -k1,15608:21700401,23775442:210839 -k1,15608:23603379,23775442:210838 -k1,15608:26683384,23775442:210839 -k1,15608:28328151,23775442:210839 -k1,15608:29709462,23775442:210838 -k1,15608:31052763,23775442:210839 -k1,15608:32583029,23775442:0 -) -(1,15609:6797234,24616930:25785795,505283,7863 -g1,15608:7647891,24616930 -g1,15608:8662388,24616930 -g1,15608:9217477,24616930 -g1,15608:10608151,24616930 -g1,15608:13009390,24616930 -g1,15608:13860047,24616930 -g1,15608:15078361,24616930 -g1,15608:16434300,24616930 -g1,15608:18146755,24616930 -g1,15608:18962022,24616930 -g1,15608:20364492,24616930 -k1,15609:32583029,24616930:10884879 -g1,15609:32583029,24616930 -) -(1,15611:6797234,25458418:25785795,513147,115847 -h1,15610:6797234,25458418:983040,0,0 -k1,15610:8846561,25458418:248398 -k1,15610:11236676,25458418:248398 -k1,15610:12960289,25458418:248398 -k1,15610:14718637,25458418:248398 -k1,15610:17348613,25458418:248398 -k1,15610:18283174,25458418:248399 -k1,15610:18887432,25458418:248398 -k1,15610:20690999,25458418:248398 -k1,15610:23322286,25458418:248398 -k1,15610:25138305,25458418:248398 -(1,15610:25138305,25458418:0,459977,115847 -r1,15663:28661977,25458418:3523672,575824,115847 -k1,15610:25138305,25458418:-3523672 -) -(1,15610:25138305,25458418:3523672,459977,115847 -k1,15610:25138305,25458418:3277 -h1,15610:28658700,25458418:0,411205,112570 -) -k1,15610:29084045,25458418:248398 -k1,15610:29798404,25458418:248398 -k1,15610:32583029,25458418:0 -) -(1,15611:6797234,26299906:25785795,513147,126483 -k1,15610:8477740,26299906:205291 -k1,15610:9749303,26299906:205292 -k1,15610:11464544,26299906:205291 -k1,15610:14567183,26299906:205292 -k1,15610:17154052,26299906:205291 -k1,15610:18306995,26299906:205292 -k1,15610:20827673,26299906:205291 -k1,15610:22052049,26299906:205291 -k1,15610:25041966,26299906:205292 -k1,15610:27628835,26299906:205291 -k1,15610:28781778,26299906:205292 -k1,15610:30376432,26299906:205291 -k1,15610:32583029,26299906:0 -) -(1,15611:6797234,27141394:25785795,513147,126483 -k1,15610:7994782,27141394:205988 -k1,15610:10242216,27141394:205988 -k1,15610:11639648,27141394:205987 -k1,15610:13542363,27141394:205988 -k1,15610:14739911,27141394:205988 -k1,15610:16658355,27141394:205988 -k1,15610:17515771,27141394:205988 -k1,15610:19732403,27141394:205987 -k1,15610:20294251,27141394:205988 -k1,15610:21889602,27141394:205988 -k1,15610:23971886,27141394:205988 -k1,15610:26129536,27141394:205988 -k1,15610:27777971,27141394:205988 -k1,15610:28339818,27141394:205987 -k1,15610:30530892,27141394:205988 -k1,15610:32227169,27141394:205988 -k1,15610:32583029,27141394:0 -) -(1,15611:6797234,27982882:25785795,513147,134348 -k1,15610:9728861,27982882:192877 -k1,15610:12996032,27982882:192877 -k1,15610:14335135,27982882:192878 -k1,15610:16910901,27982882:192877 -k1,15610:19531232,27982882:192877 -k1,15610:20255606,27982882:192877 -k1,15610:23169539,27982882:192878 -k1,15610:23975178,27982882:192877 -k1,15610:25663587,27982882:192877 -k1,15610:26469226,27982882:192877 -k1,15610:27681189,27982882:192878 -k1,15610:29299474,27982882:192877 -k1,15610:30151643,27982882:192877 -k1,15611:32583029,27982882:0 -k1,15611:32583029,27982882:0 -) -v1,15613:6797234,29173348:0,393216,0 -(1,15656:6797234,42055753:25785795,13275621,196608 -g1,15656:6797234,42055753 -g1,15656:6797234,42055753 -g1,15656:6600626,42055753 -(1,15656:6600626,42055753:0,13275621,196608 -r1,15663:32779637,42055753:26179011,13472229,196608 -k1,15656:6600625,42055753:-26179012 -) -(1,15656:6600626,42055753:26179011,13275621,196608 -[1,15656:6797234,42055753:25785795,13079013,0 -(1,15615:6797234,29387258:25785795,410518,101187 -(1,15614:6797234,29387258:0,0,0 -g1,15614:6797234,29387258 -g1,15614:6797234,29387258 -g1,15614:6469554,29387258 -(1,15614:6469554,29387258:0,0,0 -) -g1,15614:6797234,29387258 -) -k1,15615:6797234,29387258:0 -h1,15615:10590982,29387258:0,0,0 -k1,15615:32583030,29387258:21992048 -g1,15615:32583030,29387258 -) -(1,15619:6797234,30053436:25785795,410518,76021 -(1,15617:6797234,30053436:0,0,0 -g1,15617:6797234,30053436 -g1,15617:6797234,30053436 -g1,15617:6469554,30053436 -(1,15617:6469554,30053436:0,0,0 -) -g1,15617:6797234,30053436 -) -g1,15619:7745671,30053436 -g1,15619:9010254,30053436 -h1,15619:12804002,30053436:0,0,0 -k1,15619:32583030,30053436:19779028 -g1,15619:32583030,30053436 -) -(1,15621:6797234,31374974:25785795,404226,101187 -(1,15620:6797234,31374974:0,0,0 -g1,15620:6797234,31374974 -g1,15620:6797234,31374974 -g1,15620:6469554,31374974 -(1,15620:6469554,31374974:0,0,0 -) -g1,15620:6797234,31374974 -) -k1,15621:6797234,31374974:0 -h1,15621:10590982,31374974:0,0,0 -k1,15621:32583030,31374974:21992048 -g1,15621:32583030,31374974 -) -(1,15625:6797234,32041152:25785795,410518,76021 -(1,15623:6797234,32041152:0,0,0 -g1,15623:6797234,32041152 -g1,15623:6797234,32041152 -g1,15623:6469554,32041152 -(1,15623:6469554,32041152:0,0,0 -) -g1,15623:6797234,32041152 -) -g1,15625:7745671,32041152 -g1,15625:9010254,32041152 -g1,15625:11855565,32041152 -g1,15625:12171711,32041152 -g1,15625:12487857,32041152 -g1,15625:12804003,32041152 -g1,15625:13120149,32041152 -g1,15625:15017023,32041152 -g1,15625:15333169,32041152 -g1,15625:15649315,32041152 -g1,15625:15965461,32041152 -g1,15625:16281607,32041152 -g1,15625:16597753,32041152 -g1,15625:16913899,32041152 -g1,15625:17230045,32041152 -h1,15625:21023793,32041152:0,0,0 -k1,15625:32583029,32041152:11559236 -g1,15625:32583029,32041152 -) -(1,15627:6797234,33362690:25785795,410518,101187 -(1,15626:6797234,33362690:0,0,0 -g1,15626:6797234,33362690 -g1,15626:6797234,33362690 -g1,15626:6469554,33362690 -(1,15626:6469554,33362690:0,0,0 -) -g1,15626:6797234,33362690 -) -k1,15627:6797234,33362690:0 -g1,15627:12804002,33362690 -h1,15627:15017022,33362690:0,0,0 -k1,15627:32583030,33362690:17566008 -g1,15627:32583030,33362690 -) -(1,15631:6797234,34028868:25785795,410518,76021 -(1,15629:6797234,34028868:0,0,0 -g1,15629:6797234,34028868 -g1,15629:6797234,34028868 -g1,15629:6469554,34028868 -(1,15629:6469554,34028868:0,0,0 -) -g1,15629:6797234,34028868 -) -g1,15631:7745671,34028868 -g1,15631:9010254,34028868 -h1,15631:12804002,34028868:0,0,0 -k1,15631:32583030,34028868:19779028 -g1,15631:32583030,34028868 -) -(1,15633:6797234,35350406:25785795,410518,101187 -(1,15632:6797234,35350406:0,0,0 -g1,15632:6797234,35350406 -g1,15632:6797234,35350406 -g1,15632:6469554,35350406 -(1,15632:6469554,35350406:0,0,0 -) -g1,15632:6797234,35350406 -) -k1,15633:6797234,35350406:0 -g1,15633:12804002,35350406 -h1,15633:15017022,35350406:0,0,0 -k1,15633:32583030,35350406:17566008 -g1,15633:32583030,35350406 -) -(1,15637:6797234,36016584:25785795,410518,76021 -(1,15635:6797234,36016584:0,0,0 -g1,15635:6797234,36016584 -g1,15635:6797234,36016584 -g1,15635:6469554,36016584 -(1,15635:6469554,36016584:0,0,0 -) -g1,15635:6797234,36016584 -) -g1,15637:7745671,36016584 -g1,15637:9010254,36016584 -h1,15637:12804002,36016584:0,0,0 -k1,15637:32583030,36016584:19779028 -g1,15637:32583030,36016584 -) -(1,15639:6797234,37338122:25785795,410518,101187 -(1,15638:6797234,37338122:0,0,0 -g1,15638:6797234,37338122 -g1,15638:6797234,37338122 -g1,15638:6469554,37338122 -(1,15638:6469554,37338122:0,0,0 -) -g1,15638:6797234,37338122 -) -k1,15639:6797234,37338122:0 -g1,15639:12804002,37338122 -g1,15639:14700876,37338122 -g1,15639:15333168,37338122 -k1,15639:15333168,37338122:0 -h1,15639:17546189,37338122:0,0,0 -k1,15639:32583029,37338122:15036840 -g1,15639:32583029,37338122 -) -(1,15643:6797234,38004300:25785795,410518,76021 -(1,15641:6797234,38004300:0,0,0 -g1,15641:6797234,38004300 -g1,15641:6797234,38004300 -g1,15641:6469554,38004300 -(1,15641:6469554,38004300:0,0,0 -) -g1,15641:6797234,38004300 -) -g1,15643:7745671,38004300 -g1,15643:9010254,38004300 -h1,15643:12804002,38004300:0,0,0 -k1,15643:32583030,38004300:19779028 -g1,15643:32583030,38004300 -) -(1,15645:6797234,39325838:25785795,404226,101187 -(1,15644:6797234,39325838:0,0,0 -g1,15644:6797234,39325838 -g1,15644:6797234,39325838 -g1,15644:6469554,39325838 -(1,15644:6469554,39325838:0,0,0 -) -g1,15644:6797234,39325838 -) -k1,15645:6797234,39325838:0 -g1,15645:12804002,39325838 -g1,15645:14700876,39325838 -g1,15645:15333168,39325838 -k1,15645:15333168,39325838:0 -h1,15645:17546189,39325838:0,0,0 -k1,15645:32583029,39325838:15036840 -g1,15645:32583029,39325838 -) -(1,15649:6797234,39992016:25785795,410518,76021 -(1,15647:6797234,39992016:0,0,0 -g1,15647:6797234,39992016 -g1,15647:6797234,39992016 -g1,15647:6469554,39992016 -(1,15647:6469554,39992016:0,0,0 -) -g1,15647:6797234,39992016 -) -g1,15649:7745671,39992016 -g1,15649:9010254,39992016 -h1,15649:12804002,39992016:0,0,0 -k1,15649:32583030,39992016:19779028 -g1,15649:32583030,39992016 -) -(1,15651:6797234,41313554:25785795,410518,101187 -(1,15650:6797234,41313554:0,0,0 -g1,15650:6797234,41313554 -g1,15650:6797234,41313554 -g1,15650:6469554,41313554 -(1,15650:6469554,41313554:0,0,0 -) -g1,15650:6797234,41313554 -) -k1,15651:6797234,41313554:0 -g1,15651:14068585,41313554 -g1,15651:15965459,41313554 -g1,15651:16597751,41313554 -g1,15651:19126919,41313554 -g1,15651:23236813,41313554 -g1,15651:25133687,41313554 -g1,15651:25765979,41313554 -k1,15651:25765979,41313554:0 -h1,15651:27979000,41313554:0,0,0 -k1,15651:32583029,41313554:4604029 -g1,15651:32583029,41313554 -) -(1,15655:6797234,41979732:25785795,404226,76021 -(1,15653:6797234,41979732:0,0,0 -g1,15653:6797234,41979732 -g1,15653:6797234,41979732 -g1,15653:6469554,41979732 -(1,15653:6469554,41979732:0,0,0 -) -g1,15653:6797234,41979732 -) -g1,15655:7745671,41979732 -g1,15655:9010254,41979732 -h1,15655:10274837,41979732:0,0,0 -k1,15655:32583029,41979732:22308192 -g1,15655:32583029,41979732 -) -] -) -g1,15656:32583029,42055753 -g1,15656:6797234,42055753 -g1,15656:6797234,42055753 -g1,15656:32583029,42055753 -g1,15656:32583029,42055753 -) -h1,15656:6797234,42252361:0,0,0 -] -g1,15658:32583029,42776649 -) -h1,15658:6630773,42776649:0,0,0 -(1,15661:6630773,44142425:25952256,513147,126483 -h1,15660:6630773,44142425:983040,0,0 -k1,15660:9656295,44142425:210095 -k1,15660:10857950,44142425:210095 -k1,15660:14295038,44142425:210095 -k1,15660:17714432,44142425:210096 -k1,15660:21441189,44142425:210095 -k1,15660:24286487,44142425:210095 -k1,15660:25515667,44142425:210095 -k1,15660:29762780,44142425:210095 -(1,15660:29762780,44142425:0,452978,115847 -r1,15663:32583029,44142425:2820249,568825,115847 -k1,15660:29762780,44142425:-2820249 -) -(1,15660:29762780,44142425:2820249,452978,115847 -k1,15660:29762780,44142425:3277 -h1,15660:32579752,44142425:0,411205,112570 -) -k1,15660:32583029,44142425:0 -) -(1,15661:6630773,44983913:25952256,513147,115847 -k1,15660:8113934,44983913:291716 -(1,15660:8113934,44983913:0,459977,115847 -r1,15663:12341030,44983913:4227096,575824,115847 -k1,15660:8113934,44983913:-4227096 -) -(1,15660:8113934,44983913:4227096,459977,115847 -k1,15660:8113934,44983913:3277 -h1,15660:12337753,44983913:0,411205,112570 -) -k1,15660:12806416,44983913:291716 -k1,15660:14369531,44983913:291717 -k1,15660:15320539,44983913:291716 -k1,15660:17251310,44983913:291716 -k1,15660:18074523,44983913:291716 -k1,15660:19650746,44983913:291717 -k1,15660:20558500,44983913:291716 -k1,15660:21206076,44983913:291716 -k1,15660:22597486,44983913:291716 -k1,15660:23540631,44983913:291717 -(1,15660:23540631,44983913:0,452978,115847 -r1,15663:26360880,44983913:2820249,568825,115847 -k1,15660:23540631,44983913:-2820249 +[1,15526:6630773,47279633:25952256,43253760,0 +[1,15526:6630773,4812305:25952256,786432,0 +(1,15526:6630773,4812305:25952256,505283,134348 +(1,15526:6630773,4812305:25952256,505283,134348 +g1,15526:3078558,4812305 +[1,15526:3078558,4812305:0,0,0 +(1,15526:3078558,2439708:0,1703936,0 +k1,15526:1358238,2439708:-1720320 +(1,15456:1358238,2439708:1720320,1703936,0 +(1,15456:1358238,2439708:1179648,16384,0 +r1,15526:2537886,2439708:1179648,16384,0 ) -(1,15660:23540631,44983913:2820249,452978,115847 -k1,15660:23540631,44983913:3277 -h1,15660:26357603,44983913:0,411205,112570 +g1,15456:3062174,2439708 +(1,15456:3062174,2439708:16384,1703936,0 +[1,15456:3062174,2439708:25952256,1703936,0 +(1,15456:3062174,1915420:25952256,1179648,0 +(1,15456:3062174,1915420:16384,1179648,0 +r1,15526:3078558,1915420:16384,1179648,0 ) -k1,15660:26826266,44983913:291716 -k1,15660:29741388,44983913:291716 -k1,15660:32583029,44983913:0 +k1,15456:29014430,1915420:25935872 +g1,15456:29014430,1915420 ) ] -(1,15663:32583029,45706769:0,0,0 -g1,15663:32583029,45706769 ) ) -] -(1,15663:6630773,47279633:25952256,0,0 -h1,15663:6630773,47279633:25952256,0,0 ) ] -(1,15663:4262630,4025873:0,0,0 -[1,15663:-473656,4025873:0,0,0 -(1,15663:-473656,-710413:0,0,0 -(1,15663:-473656,-710413:0,0,0 -g1,15663:-473656,-710413 +[1,15526:3078558,4812305:0,0,0 +(1,15526:3078558,2439708:0,1703936,0 +g1,15526:29030814,2439708 +g1,15526:36135244,2439708 +(1,15456:36135244,2439708:1720320,1703936,0 +(1,15456:36135244,2439708:16384,1703936,0 +[1,15456:36135244,2439708:25952256,1703936,0 +(1,15456:36135244,1915420:25952256,1179648,0 +(1,15456:36135244,1915420:16384,1179648,0 +r1,15526:36151628,1915420:16384,1179648,0 ) -g1,15663:-473656,-710413 +k1,15456:62087500,1915420:25935872 +g1,15456:62087500,1915420 ) ] ) +g1,15456:36675916,2439708 +(1,15456:36675916,2439708:1179648,16384,0 +r1,15526:37855564,2439708:1179648,16384,0 +) +) +k1,15526:3078556,2439708:-34777008 +) ] -!25386 -}268 -Input:2275:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2276:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2277:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +[1,15526:3078558,4812305:0,0,0 +(1,15526:3078558,49800853:0,16384,2228224 +k1,15526:1358238,49800853:-1720320 +(1,15456:1358238,49800853:1720320,16384,2228224 +(1,15456:1358238,49800853:1179648,16384,0 +r1,15526:2537886,49800853:1179648,16384,0 +) +g1,15456:3062174,49800853 +(1,15456:3062174,52029077:16384,1703936,0 +[1,15456:3062174,52029077:25952256,1703936,0 +(1,15456:3062174,51504789:25952256,1179648,0 +(1,15456:3062174,51504789:16384,1179648,0 +r1,15526:3078558,51504789:16384,1179648,0 +) +k1,15456:29014430,51504789:25935872 +g1,15456:29014430,51504789 +) +] +) +) +) +] +[1,15526:3078558,4812305:0,0,0 +(1,15526:3078558,49800853:0,16384,2228224 +g1,15526:29030814,49800853 +g1,15526:36135244,49800853 +(1,15456:36135244,49800853:1720320,16384,2228224 +(1,15456:36135244,52029077:16384,1703936,0 +[1,15456:36135244,52029077:25952256,1703936,0 +(1,15456:36135244,51504789:25952256,1179648,0 +(1,15456:36135244,51504789:16384,1179648,0 +r1,15526:36151628,51504789:16384,1179648,0 +) +k1,15456:62087500,51504789:25935872 +g1,15456:62087500,51504789 +) +] +) +g1,15456:36675916,49800853 +(1,15456:36675916,49800853:1179648,16384,0 +r1,15526:37855564,49800853:1179648,16384,0 +) +) +k1,15526:3078556,49800853:-34777008 +) +] +g1,15526:6630773,4812305 +k1,15526:23311652,4812305:15485502 +g1,15526:23960458,4812305 +g1,15526:27572802,4812305 +g1,15526:29306229,4812305 +) +) +] +[1,15526:6630773,45706769:25952256,40108032,0 +(1,15526:6630773,45706769:25952256,40108032,0 +(1,15526:6630773,45706769:0,0,0 +g1,15526:6630773,45706769 +) +[1,15526:6630773,45706769:25952256,40108032,0 +v1,15487:6630773,6254097:0,393216,0 +(1,15487:6630773,9968696:25952256,4107815,0 +g1,15487:6630773,9968696 +g1,15487:6237557,9968696 +r1,15526:6368629,9968696:131072,4107815,0 +g1,15487:6567858,9968696 +g1,15487:6764466,9968696 +[1,15487:6764466,9968696:25818563,4107815,0 +(1,15487:6764466,6374028:25818563,513147,134348 +k1,15486:7822791,6374028:189973 +k1,15486:10193147,6374028:189973 +k1,15486:11330771,6374028:189973 +k1,15486:12539829,6374028:189973 +k1,15486:14155210,6374028:189973 +k1,15486:16083198,6374028:189973 +k1,15486:18230076,6374028:189973 +k1,15486:19853977,6374028:189973 +k1,15486:20458783,6374028:189963 +k1,15486:24176559,6374028:189973 +k1,15486:25408554,6374028:189973 +k1,15486:27094714,6374028:189973 +k1,15486:28569193,6374028:189973 +k1,15486:29290663,6374028:189973 +k1,15486:30132064,6374028:189973 +k1,15486:31069803,6374028:189973 +k1,15486:32583029,6374028:0 +) +(1,15487:6764466,7239108:25818563,513147,126483 +k1,15486:8605023,7239108:176598 +k1,15486:9464505,7239108:176597 +k1,15486:10588754,7239108:176598 +k1,15486:12650822,7239108:176597 +k1,15486:17563052,7239108:176598 +k1,15486:18843932,7239108:176598 +k1,15486:21392277,7239108:176597 +k1,15486:22378245,7239108:176598 +k1,15486:23573927,7239108:176597 +k1,15486:24843010,7239108:176598 +k1,15486:25678900,7239108:176598 +k1,15486:26211357,7239108:176597 +k1,15486:28785262,7239108:176598 +k1,15486:30189348,7239108:176597 +k1,15486:31048831,7239108:176598 +k1,15486:32583029,7239108:0 +) +(1,15487:6764466,8104188:25818563,513147,134348 +k1,15486:7634085,8104188:218191 +k1,15486:10295459,8104188:218192 +k1,15486:11741139,8104188:218191 +k1,15486:14293067,8104188:218191 +k1,15486:15170550,8104188:218191 +k1,15486:18299196,8104188:218192 +k1,15486:19663612,8104188:218191 +k1,15486:22028106,8104188:218191 +k1,15486:22929182,8104188:218191 +k1,15486:25032845,8104188:218192 +k1,15486:25782533,8104188:218191 +k1,15486:27066995,8104188:218191 +k1,15486:27641046,8104188:218191 +k1,15486:30145789,8104188:218192 +k1,15486:31015408,8104188:218191 +k1,15487:32583029,8104188:0 +) +(1,15487:6764466,8969268:25818563,513147,134348 +k1,15486:9181980,8969268:252860 +k1,15486:10626284,8969268:252859 +k1,15486:12070589,8969268:252860 +k1,15486:14539876,8969268:252859 +k1,15486:17806737,8969268:252860 +k1,15486:19078681,8969268:252859 +k1,15486:23109692,8969268:252860 +k1,15486:24553996,8969268:252859 +k1,15486:26778834,8969268:252860 +k1,15486:27690985,8969268:252859 +k1,15486:28962930,8969268:252860 +k1,15486:30498984,8969268:252859 +k1,15486:32583029,8969268:0 +) +(1,15487:6764466,9834348:25818563,505283,134348 +g1,15486:8067977,9834348 +g1,15486:9014972,9834348 +g1,15486:9984904,9834348 +k1,15487:32583028,9834348:19185664 +g1,15487:32583028,9834348 +) +] +g1,15487:32583029,9968696 +) +h1,15487:6630773,9968696:0,0,0 +v1,15490:6630773,10833776:0,393216,0 +(1,15491:6630773,14842986:25952256,4402426,0 +g1,15491:6630773,14842986 +g1,15491:6237557,14842986 +r1,15526:6368629,14842986:131072,4402426,0 +g1,15491:6567858,14842986 +g1,15491:6764466,14842986 +[1,15491:6764466,14842986:25818563,4402426,0 +(1,15491:6764466,11248318:25818563,807758,219026 +(1,15490:6764466,11248318:0,807758,219026 +r1,15526:7908217,11248318:1143751,1026784,219026 +k1,15490:6764466,11248318:-1143751 +) +(1,15490:6764466,11248318:1143751,807758,219026 +) +k1,15490:8096675,11248318:188458 +k1,15490:8424355,11248318:327680 +k1,15490:11147747,11248318:188459 +k1,15490:14549434,11248318:188458 +k1,15490:19350317,11248318:188459 +k1,15490:21290552,11248318:188458 +k1,15490:22138302,11248318:188458 +k1,15490:23345846,11248318:188459 +k1,15490:26560101,11248318:188458 +k1,15490:27364598,11248318:188459 +k1,15490:29525689,11248318:188458 +k1,15490:30905593,11248318:188459 +k1,15490:31449911,11248318:188458 +k1,15490:32583029,11248318:0 +) +(1,15491:6764466,12113398:25818563,513147,134348 +k1,15490:8466206,12113398:134119 +k1,15490:10405187,12113398:134120 +k1,15490:12274699,12113398:134119 +k1,15490:13880101,12113398:134119 +k1,15490:14428999,12113398:134055 +k1,15490:16059305,12113398:134119 +k1,15490:18520608,12113398:134120 +k1,15490:19314019,12113398:134119 +k1,15490:22391360,12113398:134119 +k1,15490:23808675,12113398:134120 +k1,15490:25438981,12113398:134119 +k1,15490:26764545,12113398:134119 +k1,15490:28292616,12113398:134120 +k1,15490:29236105,12113398:134119 +k1,15491:32583029,12113398:0 +) +(1,15491:6764466,12978478:25818563,513147,134348 +k1,15490:8182784,12978478:205902 +k1,15490:9198056,12978478:205902 +k1,15490:11105928,12978478:205902 +k1,15490:14384158,12978478:205902 +k1,15490:17674184,12978478:205902 +k1,15490:19260930,12978478:205902 +k1,15490:23247604,12978478:205902 +k1,15490:26438016,12978478:205902 +k1,15490:27748200,12978478:205902 +k1,15490:28701868,12978478:205902 +k1,15490:30884991,12978478:205902 +k1,15491:32583029,12978478:0 +) +(1,15491:6764466,13843558:25818563,513147,126483 +k1,15490:7906923,13843558:223642 +k1,15490:9519927,13843558:223641 +k1,15490:11950166,13843558:223642 +k1,15490:14125469,13843558:223641 +k1,15490:15791558,13843558:223642 +k1,15490:18156917,13843558:223642 +k1,15490:19372118,13843558:223641 +k1,15490:22609105,13843558:223642 +k1,15490:23515631,13843558:223641 +k1,15490:25437311,13843558:223642 +k1,15490:26680037,13843558:223641 +k1,15490:29533639,13843558:223642 +k1,15490:32583029,13843558:0 +) +(1,15491:6764466,14708638:25818563,513147,134348 +g1,15490:11039379,14708638 +g1,15490:12632559,14708638 +g1,15490:14402686,14708638 +g1,15490:15991278,14708638 +g1,15490:17455352,14708638 +g1,15490:18186078,14708638 +g1,15490:19451578,14708638 +k1,15491:32583029,14708638:10659433 +g1,15491:32583029,14708638 +) +] +g1,15491:32583029,14842986 +) +h1,15491:6630773,14842986:0,0,0 +(1,15493:6630773,17674146:25952256,32768,229376 +(1,15493:6630773,17674146:0,32768,229376 +(1,15493:6630773,17674146:5505024,32768,229376 +r1,15526:12135797,17674146:5505024,262144,229376 +) +k1,15493:6630773,17674146:-5505024 +) +(1,15493:6630773,17674146:25952256,32768,0 +r1,15526:32583029,17674146:25952256,32768,0 +) +) +(1,15493:6630773,19305998:25952256,606339,161218 +(1,15493:6630773,19305998:1974731,582746,14155 +g1,15493:6630773,19305998 +g1,15493:8605504,19305998 +) +g1,15493:12473177,19305998 +g1,15493:14599689,19305998 +g1,15493:15614973,19305998 +g1,15493:17348269,19305998 +k1,15493:32583029,19305998:12233735 +g1,15493:32583029,19305998 +) +v1,15496:6630773,20384069:0,393216,0 +(1,15500:6630773,20724752:25952256,733899,196608 +g1,15500:6630773,20724752 +g1,15500:6630773,20724752 +g1,15500:6434165,20724752 +(1,15500:6434165,20724752:0,733899,196608 +r1,15526:32779637,20724752:26345472,930507,196608 +k1,15500:6434165,20724752:-26345472 +) +(1,15500:6434165,20724752:26345472,733899,196608 +[1,15500:6630773,20724752:25952256,537291,0 +(1,15498:6630773,20611900:25952256,424439,112852 +(1,15497:6630773,20611900:0,0,0 +g1,15497:6630773,20611900 +g1,15497:6630773,20611900 +g1,15497:6303093,20611900 +(1,15497:6303093,20611900:0,0,0 +) +g1,15497:6630773,20611900 +) +k1,15498:6630773,20611900:0 +h1,15498:20572838,20611900:0,0,0 +k1,15498:32583029,20611900:12010191 +g1,15498:32583029,20611900 +) +] +) +g1,15500:32583029,20724752 +g1,15500:6630773,20724752 +g1,15500:6630773,20724752 +g1,15500:32583029,20724752 +g1,15500:32583029,20724752 +) +h1,15500:6630773,20921360:0,0,0 +(1,15504:6630773,21786440:25952256,513147,126483 +h1,15503:6630773,21786440:983040,0,0 +k1,15503:8631587,21786440:188744 +k1,15503:9938374,21786440:188743 +k1,15503:11146203,21786440:188744 +k1,15503:14326665,21786440:188743 +k1,15503:17273819,21786440:188744 +k1,15503:18078600,21786440:188743 +k1,15503:19470585,21786440:188744 +k1,15503:22250623,21786440:188744 +k1,15503:23609839,21786440:188743 +k1,15503:25328849,21786440:188744 +k1,15503:26823725,21786440:188743 +k1,15503:27663897,21786440:188744 +k1,15503:29228896,21786440:188743 +k1,15503:30609085,21786440:188744 +k1,15503:32583029,21786440:0 +) +(1,15504:6630773,22651520:25952256,513147,134348 +k1,15503:8502394,22651520:179481 +k1,15503:11592329,22651520:179481 +k1,15503:13339431,22651520:179481 +k1,15503:14537997,22651520:179481 +k1,15503:16817907,22651520:179481 +k1,15503:18229465,22651520:179481 +k1,15503:20687633,22651520:179481 +h1,15503:21658221,22651520:0,0,0 +k1,15503:21837703,22651520:179482 +k1,15503:22826554,22651520:179481 +k1,15503:24504188,22651520:179481 +h1,15503:25699565,22651520:0,0,0 +k1,15503:25879046,22651520:179481 +k1,15503:27006178,22651520:179481 +k1,15503:29303127,22651520:179481 +k1,15503:30291978,22651520:179481 +k1,15503:31490544,22651520:179481 +k1,15503:32583029,22651520:0 +) +(1,15504:6630773,23516600:25952256,513147,134348 +g1,15503:7489294,23516600 +k1,15504:32583028,23516600:21802516 +g1,15504:32583028,23516600 +) +v1,15506:6630773,24201455:0,393216,0 +(1,15517:6630773,29329517:25952256,5521278,196608 +g1,15517:6630773,29329517 +g1,15517:6630773,29329517 +g1,15517:6434165,29329517 +(1,15517:6434165,29329517:0,5521278,196608 +r1,15526:32779637,29329517:26345472,5717886,196608 +k1,15517:6434165,29329517:-26345472 +) +(1,15517:6434165,29329517:26345472,5521278,196608 +[1,15517:6630773,29329517:25952256,5324670,0 +(1,15508:6630773,24429286:25952256,424439,106246 +(1,15507:6630773,24429286:0,0,0 +g1,15507:6630773,24429286 +g1,15507:6630773,24429286 +g1,15507:6303093,24429286 +(1,15507:6303093,24429286:0,0,0 +) +g1,15507:6630773,24429286 +) +k1,15508:6630773,24429286:0 +h1,15508:12937898,24429286:0,0,0 +k1,15508:32583030,24429286:19645132 +g1,15508:32583030,24429286 +) +(1,15509:6630773,25114141:25952256,424439,106246 +h1,15509:6630773,25114141:0,0,0 +k1,15509:6630773,25114141:0 +h1,15509:11610082,25114141:0,0,0 +k1,15509:32583030,25114141:20972948 +g1,15509:32583030,25114141 +) +(1,15510:6630773,25798996:25952256,424439,112852 +h1,15510:6630773,25798996:0,0,0 +k1,15510:6630773,25798996:0 +h1,15510:12273990,25798996:0,0,0 +k1,15510:32583030,25798996:20309040 +g1,15510:32583030,25798996 +) +(1,15511:6630773,26483851:25952256,424439,106246 +h1,15511:6630773,26483851:0,0,0 +k1,15511:6630773,26483851:0 +h1,15511:11278129,26483851:0,0,0 +k1,15511:32583029,26483851:21304900 +g1,15511:32583029,26483851 +) +(1,15512:6630773,27168706:25952256,424439,112852 +h1,15512:6630773,27168706:0,0,0 +k1,15512:6630773,27168706:0 +h1,15512:11942036,27168706:0,0,0 +k1,15512:32583028,27168706:20640992 +g1,15512:32583028,27168706 +) +(1,15513:6630773,27853561:25952256,424439,106246 +h1,15513:6630773,27853561:0,0,0 +k1,15513:6630773,27853561:0 +h1,15513:11278129,27853561:0,0,0 +k1,15513:32583029,27853561:21304900 +g1,15513:32583029,27853561 +) +(1,15514:6630773,28538416:25952256,424439,106246 +h1,15514:6630773,28538416:0,0,0 +k1,15514:6630773,28538416:0 +h1,15514:11278129,28538416:0,0,0 +k1,15514:32583029,28538416:21304900 +g1,15514:32583029,28538416 +) +(1,15515:6630773,29223271:25952256,424439,106246 +h1,15515:6630773,29223271:0,0,0 +k1,15515:6630773,29223271:0 +h1,15515:12605944,29223271:0,0,0 +k1,15515:32583028,29223271:19977084 +g1,15515:32583028,29223271 +) +] +) +g1,15517:32583029,29329517 +g1,15517:6630773,29329517 +g1,15517:6630773,29329517 +g1,15517:32583029,29329517 +g1,15517:32583029,29329517 +) +h1,15517:6630773,29526125:0,0,0 +(1,15520:6630773,32357285:25952256,32768,229376 +(1,15520:6630773,32357285:0,32768,229376 +(1,15520:6630773,32357285:5505024,32768,229376 +r1,15526:12135797,32357285:5505024,262144,229376 +) +k1,15520:6630773,32357285:-5505024 +) +(1,15520:6630773,32357285:25952256,32768,0 +r1,15526:32583029,32357285:25952256,32768,0 +) +) +(1,15520:6630773,33989137:25952256,615776,151780 +(1,15520:6630773,33989137:1974731,582746,14155 +g1,15520:6630773,33989137 +g1,15520:8605504,33989137 +) +g1,15520:14366905,33989137 +g1,15520:15787988,33989137 +(1,15520:15787988,33989137:0,551318,138361 +r1,15526:20015084,33989137:4227096,689679,138361 +k1,15520:15787988,33989137:-4227096 +) +(1,15520:15787988,33989137:4227096,551318,138361 +k1,15520:15787988,33989137:3277 +h1,15520:20011807,33989137:0,493446,135084 +) +k1,15520:32583029,33989137:12567945 +g1,15520:32583029,33989137 +) +(1,15522:6630773,35319523:25952256,555811,147783 +(1,15522:6630773,35319523:2450326,534184,12975 +g1,15522:6630773,35319523 +g1,15522:9081099,35319523 +) +g1,15522:12248717,35319523 +k1,15522:32583029,35319523:16305946 +g1,15522:32583029,35319523 +) +(1,15524:6630773,36577819:25952256,513147,134348 +k1,15523:7979366,36577819:151906 +k1,15523:10826769,36577819:151907 +k1,15523:12078369,36577819:151906 +k1,15523:15420568,36577819:151906 +k1,15523:16231766,36577819:151906 +k1,15523:17402758,36577819:151907 +k1,15523:17969460,36577819:151859 +k1,15523:20963662,36577819:151906 +k1,15523:21647066,36577819:151907 +k1,15523:23083478,36577819:151906 +k1,15523:26638013,36577819:151906 +k1,15523:27781479,36577819:151906 +k1,15523:30138673,36577819:151907 +k1,15523:30942007,36577819:151906 +k1,15524:32583029,36577819:0 +) +(1,15524:6630773,37442899:25952256,513147,134348 +k1,15523:8448321,37442899:219780 +k1,15523:9429628,37442899:219779 +k1,15523:11333028,37442899:219780 +k1,15523:12030565,37442899:219780 +k1,15523:13269430,37442899:219780 +k1,15523:16891838,37442899:219779 +k1,15523:18103178,37442899:219780 +k1,15523:21158045,37442899:219780 +k1,15523:23387813,37442899:219779 +k1,15523:24626678,37442899:219780 +k1,15523:26342645,37442899:219780 +k1,15523:27221717,37442899:219780 +k1,15523:27797356,37442899:219779 +k1,15523:30886302,37442899:219780 +k1,15523:32583029,37442899:0 +) +(1,15524:6630773,38307979:25952256,513147,134348 +k1,15523:9385633,38307979:183883 +k1,15523:10561076,38307979:183883 +k1,15523:12239180,38307979:183883 +k1,15523:13074491,38307979:183883 +k1,15523:14277459,38307979:183883 +k1,15523:17330508,38307979:183883 +k1,15523:17992149,38307979:183884 +k1,15523:22377545,38307979:183883 +k1,15523:24977740,38307979:183883 +k1,15523:26364864,38307979:183883 +k1,15523:29408738,38307979:183883 +k1,15523:31548871,38307979:183883 +k1,15524:32583029,38307979:0 +) +(1,15524:6630773,39173059:25952256,513147,134348 +k1,15523:8303019,39173059:179336 +k1,15523:8838215,39173059:179336 +k1,15523:10568788,39173059:179336 +k1,15523:11809807,39173059:179336 +k1,15523:12798513,39173059:179336 +k1,15523:17227203,39173059:179336 +k1,15523:20250802,39173059:179336 +k1,15523:20844961,39173059:179316 +k1,15523:21640335,39173059:179336 +k1,15523:23421371,39173059:179336 +k1,15523:26757576,39173059:179336 +k1,15523:28312513,39173059:179336 +k1,15523:30537883,39173059:179336 +k1,15523:31073079,39173059:179336 +k1,15523:32583029,39173059:0 +) +(1,15524:6630773,40038139:25952256,513147,134348 +k1,15523:7465810,40038139:218999 +k1,15523:10316080,40038139:218999 +k1,15523:11001041,40038139:219000 +k1,15523:12411485,40038139:218999 +k1,15523:14328522,40038139:218999 +k1,15523:15566606,40038139:218999 +k1,15523:17465948,40038139:218999 +k1,15523:20429595,40038139:218999 +k1,15523:25169269,40038139:219000 +k1,15523:26335919,40038139:218999 +k1,15523:29040699,40038139:218999 +k1,15523:31923737,40038139:218999 +k1,15524:32583029,40038139:0 +) +(1,15524:6630773,40903219:25952256,513147,134348 +k1,15523:7285238,40903219:239622 +k1,15523:9410373,40903219:239664 +k1,15523:10641596,40903219:239663 +k1,15523:12235233,40903219:239663 +k1,15523:14058901,40903219:239663 +k1,15523:14911326,40903219:239663 +k1,15523:17870733,40903219:239663 +k1,15523:22049110,40903219:239663 +k1,15523:24788972,40903219:239663 +k1,15523:25687927,40903219:239663 +k1,15523:28391088,40903219:239663 +k1,15523:29649836,40903219:239663 +k1,15523:32168186,40903219:239663 +k1,15524:32583029,40903219:0 +) +(1,15524:6630773,41768299:25952256,513147,134348 +k1,15523:10106934,41768299:285868 +k1,15523:11493807,41768299:285868 +k1,15523:13155276,41768299:285868 +k1,15523:13797004,41768299:285868 +k1,15523:17113912,41768299:285868 +k1,15523:20054643,41768299:285868 +k1,15523:22528758,41768299:285868 +k1,15523:23623996,41768299:285868 +k1,15523:28159218,41768299:285868 +k1,15523:31379788,41768299:285868 +k1,15523:32583029,41768299:0 +) +(1,15524:6630773,42633379:25952256,513147,134348 +k1,15523:9054013,42633379:234993 +k1,15523:10393288,42633379:234993 +k1,15523:11826936,42633379:234994 +k1,15523:12809695,42633379:234993 +k1,15523:13400548,42633379:234993 +k1,15523:16312031,42633379:234993 +k1,15523:17233187,42633379:234994 +k1,15523:21492091,42633379:234993 +k1,15523:22258581,42633379:234993 +k1,15523:25224459,42633379:234993 +k1,15523:26072214,42633379:234993 +k1,15523:27326293,42633379:234994 +k1,15523:29520812,42633379:234993 +k1,15523:31391584,42633379:234993 +k1,15523:32583029,42633379:0 +) +(1,15524:6630773,43498459:25952256,513147,134348 +k1,15523:11022296,43498459:166417 +k1,15523:11603523,43498459:166384 +k1,15523:13106874,43498459:166417 +k1,15523:14989024,43498459:166417 +k1,15523:17183125,43498459:166417 +k1,15523:18008834,43498459:166417 +k1,15523:19746149,43498459:166417 +k1,15523:22202394,43498459:166417 +k1,15523:23862376,43498459:166416 +k1,15523:24714955,43498459:166417 +k1,15523:25237232,43498459:166417 +k1,15523:27286498,43498459:166417 +k1,15523:28842278,43498459:166417 +k1,15523:30884991,43498459:166417 +k1,15523:32583029,43498459:0 +) +(1,15524:6630773,44363539:25952256,505283,134348 +g1,15523:8205603,44363539 +g1,15523:10415477,44363539 +g1,15523:11230744,44363539 +g1,15523:11785833,44363539 +g1,15523:13858081,44363539 +g1,15523:16440199,44363539 +g1,15523:17322313,44363539 +g1,15523:18988238,44363539 +g1,15523:20416267,44363539 +g1,15523:21386199,44363539 +g1,15523:24364155,44363539 +g1,15523:26038599,44363539 +k1,15524:32583029,44363539:3709343 +g1,15524:32583029,44363539 +) +(1,15526:6630773,45228619:25952256,513147,134348 +h1,15525:6630773,45228619:983040,0,0 +k1,15525:10896293,45228619:162311 +k1,15525:12250049,45228619:162311 +k1,15525:15196985,45228619:162311 +k1,15525:16926917,45228619:162311 +k1,15525:19669379,45228619:162310 +k1,15525:23341797,45228619:162311 +k1,15525:24941313,45228619:162311 +k1,15525:28506253,45228619:162311 +k1,15525:29430092,45228619:162311 +k1,15525:32583029,45228619:0 +) +] +(1,15526:32583029,45706769:0,0,0 +g1,15526:32583029,45706769 +) +) +] +(1,15526:6630773,47279633:25952256,0,0 +h1,15526:6630773,47279633:25952256,0,0 +) +] +(1,15526:4262630,4025873:0,0,0 +[1,15526:-473656,4025873:0,0,0 +(1,15526:-473656,-710413:0,0,0 +(1,15526:-473656,-710413:0,0,0 +g1,15526:-473656,-710413 +) +g1,15526:-473656,-710413 +) +] +) +] +!21007 +}251 Input:2278:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2279:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2280:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2281:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2282:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2283:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!858 -{269 -[1,15729:4262630,47279633:28320399,43253760,0 -(1,15729:4262630,4025873:0,0,0 -[1,15729:-473656,4025873:0,0,0 -(1,15729:-473656,-710413:0,0,0 -(1,15729:-473656,-644877:0,0,0 -k1,15729:-473656,-644877:-65536 -) -(1,15729:-473656,4736287:0,0,0 -k1,15729:-473656,4736287:5209943 -) -g1,15729:-473656,-710413 -) -] -) -[1,15729:6630773,47279633:25952256,43253760,0 -[1,15729:6630773,4812305:25952256,786432,0 -(1,15729:6630773,4812305:25952256,505283,134348 -(1,15729:6630773,4812305:25952256,505283,134348 -g1,15729:3078558,4812305 -[1,15729:3078558,4812305:0,0,0 -(1,15729:3078558,2439708:0,1703936,0 -k1,15729:1358238,2439708:-1720320 -(1,15243:1358238,2439708:1720320,1703936,0 -(1,15243:1358238,2439708:1179648,16384,0 -r1,15729:2537886,2439708:1179648,16384,0 +!576 +{252 +[1,15546:4262630,47279633:28320399,43253760,0 +(1,15546:4262630,4025873:0,0,0 +[1,15546:-473656,4025873:0,0,0 +(1,15546:-473656,-710413:0,0,0 +(1,15546:-473656,-644877:0,0,0 +k1,15546:-473656,-644877:-65536 ) -g1,15243:3062174,2439708 -(1,15243:3062174,2439708:16384,1703936,0 -[1,15243:3062174,2439708:25952256,1703936,0 -(1,15243:3062174,1915420:25952256,1179648,0 -(1,15243:3062174,1915420:16384,1179648,0 -r1,15729:3078558,1915420:16384,1179648,0 +(1,15546:-473656,4736287:0,0,0 +k1,15546:-473656,4736287:5209943 ) -k1,15243:29014430,1915420:25935872 -g1,15243:29014430,1915420 +g1,15546:-473656,-710413 ) ] ) +[1,15546:6630773,47279633:25952256,43253760,0 +[1,15546:6630773,4812305:25952256,786432,0 +(1,15546:6630773,4812305:25952256,538806,132808 +(1,15546:6630773,4812305:25952256,538806,132808 +g1,15546:3078558,4812305 +[1,15546:3078558,4812305:0,0,0 +(1,15546:3078558,2439708:0,1703936,0 +k1,15546:1358238,2439708:-1720320 +(1,15456:1358238,2439708:1720320,1703936,0 +(1,15456:1358238,2439708:1179648,16384,0 +r1,15546:2537886,2439708:1179648,16384,0 ) +g1,15456:3062174,2439708 +(1,15456:3062174,2439708:16384,1703936,0 +[1,15456:3062174,2439708:25952256,1703936,0 +(1,15456:3062174,1915420:25952256,1179648,0 +(1,15456:3062174,1915420:16384,1179648,0 +r1,15546:3078558,1915420:16384,1179648,0 ) -] -[1,15729:3078558,4812305:0,0,0 -(1,15729:3078558,2439708:0,1703936,0 -g1,15729:29030814,2439708 -g1,15729:36135244,2439708 -(1,15243:36135244,2439708:1720320,1703936,0 -(1,15243:36135244,2439708:16384,1703936,0 -[1,15243:36135244,2439708:25952256,1703936,0 -(1,15243:36135244,1915420:25952256,1179648,0 -(1,15243:36135244,1915420:16384,1179648,0 -r1,15729:36151628,1915420:16384,1179648,0 -) -k1,15243:62087500,1915420:25935872 -g1,15243:62087500,1915420 +k1,15456:29014430,1915420:25935872 +g1,15456:29014430,1915420 ) ] ) -g1,15243:36675916,2439708 -(1,15243:36675916,2439708:1179648,16384,0 -r1,15729:37855564,2439708:1179648,16384,0 -) ) -k1,15729:3078556,2439708:-34777008 ) ] -[1,15729:3078558,4812305:0,0,0 -(1,15729:3078558,49800853:0,16384,2228224 -k1,15729:1358238,49800853:-1720320 -(1,15243:1358238,49800853:1720320,16384,2228224 -(1,15243:1358238,49800853:1179648,16384,0 -r1,15729:2537886,49800853:1179648,16384,0 +[1,15546:3078558,4812305:0,0,0 +(1,15546:3078558,2439708:0,1703936,0 +g1,15546:29030814,2439708 +g1,15546:36135244,2439708 +(1,15456:36135244,2439708:1720320,1703936,0 +(1,15456:36135244,2439708:16384,1703936,0 +[1,15456:36135244,2439708:25952256,1703936,0 +(1,15456:36135244,1915420:25952256,1179648,0 +(1,15456:36135244,1915420:16384,1179648,0 +r1,15546:36151628,1915420:16384,1179648,0 ) -g1,15243:3062174,49800853 -(1,15243:3062174,52029077:16384,1703936,0 -[1,15243:3062174,52029077:25952256,1703936,0 -(1,15243:3062174,51504789:25952256,1179648,0 -(1,15243:3062174,51504789:16384,1179648,0 -r1,15729:3078558,51504789:16384,1179648,0 -) -k1,15243:29014430,51504789:25935872 -g1,15243:29014430,51504789 +k1,15456:62087500,1915420:25935872 +g1,15456:62087500,1915420 ) ] ) +g1,15456:36675916,2439708 +(1,15456:36675916,2439708:1179648,16384,0 +r1,15546:37855564,2439708:1179648,16384,0 ) ) -] -[1,15729:3078558,4812305:0,0,0 -(1,15729:3078558,49800853:0,16384,2228224 -g1,15729:29030814,49800853 -g1,15729:36135244,49800853 -(1,15243:36135244,49800853:1720320,16384,2228224 -(1,15243:36135244,52029077:16384,1703936,0 -[1,15243:36135244,52029077:25952256,1703936,0 -(1,15243:36135244,51504789:25952256,1179648,0 -(1,15243:36135244,51504789:16384,1179648,0 -r1,15729:36151628,51504789:16384,1179648,0 -) -k1,15243:62087500,51504789:25935872 -g1,15243:62087500,51504789 +k1,15546:3078556,2439708:-34777008 ) ] +[1,15546:3078558,4812305:0,0,0 +(1,15546:3078558,49800853:0,16384,2228224 +k1,15546:1358238,49800853:-1720320 +(1,15456:1358238,49800853:1720320,16384,2228224 +(1,15456:1358238,49800853:1179648,16384,0 +r1,15546:2537886,49800853:1179648,16384,0 ) -g1,15243:36675916,49800853 -(1,15243:36675916,49800853:1179648,16384,0 -r1,15729:37855564,49800853:1179648,16384,0 -) -) -k1,15729:3078556,49800853:-34777008 -) -] -g1,15729:6630773,4812305 -k1,15729:23311652,4812305:15485502 -g1,15729:23960458,4812305 -g1,15729:27572802,4812305 -g1,15729:29306229,4812305 -) -) -] -[1,15729:6630773,45706769:25952256,40108032,0 -(1,15729:6630773,45706769:25952256,40108032,0 -(1,15729:6630773,45706769:0,0,0 -g1,15729:6630773,45706769 -) -[1,15729:6630773,45706769:25952256,40108032,0 -(1,15661:6630773,6254097:25952256,513147,134348 -k1,15660:10638300,6254097:279839 -k1,15660:12656153,6254097:279838 -k1,15660:15317570,6254097:279839 -k1,15660:16701691,6254097:279839 -k1,15660:17729296,6254097:279839 -k1,15660:19522360,6254097:279838 -k1,15660:20418237,6254097:279839 -k1,15660:21717161,6254097:279839 -k1,15660:25079158,6254097:279839 -k1,15660:26018288,6254097:279838 -k1,15660:29959623,6254097:279839 -k1,15660:32583029,6254097:0 -) -(1,15661:6630773,7095585:25952256,505283,7863 -k1,15661:32583028,7095585:22936944 -g1,15661:32583028,7095585 -) -v1,15663:6630773,8131220:0,393216,0 -(1,15676:6630773,13008374:25952256,5270370,196608 -g1,15676:6630773,13008374 -g1,15676:6630773,13008374 -g1,15676:6434165,13008374 -(1,15676:6434165,13008374:0,5270370,196608 -r1,15729:32779637,13008374:26345472,5466978,196608 -k1,15676:6434165,13008374:-26345472 -) -(1,15676:6434165,13008374:26345472,5270370,196608 -[1,15676:6630773,13008374:25952256,5073762,0 -(1,15665:6630773,8338838:25952256,404226,82312 -(1,15664:6630773,8338838:0,0,0 -g1,15664:6630773,8338838 -g1,15664:6630773,8338838 -g1,15664:6303093,8338838 -(1,15664:6303093,8338838:0,0,0 -) -g1,15664:6630773,8338838 -) -k1,15665:6630773,8338838:0 -g1,15665:9476085,8338838 -g1,15665:10108377,8338838 -g1,15665:11689107,8338838 -g1,15665:12321399,8338838 -g1,15665:12953691,8338838 -g1,15665:14534421,8338838 -g1,15665:15166713,8338838 -g1,15665:15799005,8338838 -g1,15665:16431297,8338838 -g1,15665:17063589,8338838 -g1,15665:18012027,8338838 -g1,15665:18644319,8338838 -g1,15665:19276611,8338838 -g1,15665:22438068,8338838 -g1,15665:23070360,8338838 -h1,15665:24018797,8338838:0,0,0 -k1,15665:32583029,8338838:8564232 -g1,15665:32583029,8338838 -) -(1,15675:6630773,9005016:25952256,404226,9436 -(1,15667:6630773,9005016:0,0,0 -g1,15667:6630773,9005016 -g1,15667:6630773,9005016 -g1,15667:6303093,9005016 -(1,15667:6303093,9005016:0,0,0 -) -g1,15667:6630773,9005016 -) -g1,15675:7579210,9005016 -g1,15675:8211502,9005016 -g1,15675:8843794,9005016 -g1,15675:11372960,9005016 -g1,15675:12005252,9005016 -g1,15675:12637544,9005016 -h1,15675:12953690,9005016:0,0,0 -k1,15675:32583030,9005016:19629340 -g1,15675:32583030,9005016 -) -(1,15675:6630773,9671194:25952256,404226,6290 -h1,15675:6630773,9671194:0,0,0 -g1,15675:7579210,9671194 -g1,15675:7895356,9671194 -g1,15675:8211502,9671194 -g1,15675:8527648,9671194 -g1,15675:8843794,9671194 -g1,15675:9159940,9671194 -g1,15675:9476086,9671194 -g1,15675:10108378,9671194 -g1,15675:10424524,9671194 -g1,15675:10740670,9671194 -g1,15675:11056816,9671194 -g1,15675:11372962,9671194 -g1,15675:12005254,9671194 -g1,15675:12321400,9671194 -g1,15675:12637546,9671194 -g1,15675:12953692,9671194 -g1,15675:13269838,9671194 -g1,15675:13902130,9671194 -h1,15675:14218276,9671194:0,0,0 -k1,15675:32583028,9671194:18364752 -g1,15675:32583028,9671194 -) -(1,15675:6630773,10337372:25952256,404226,6290 -h1,15675:6630773,10337372:0,0,0 -g1,15675:7579210,10337372 -g1,15675:7895356,10337372 -g1,15675:8211502,10337372 -g1,15675:10108377,10337372 -g1,15675:12005252,10337372 -g1,15675:13902127,10337372 -k1,15675:13902127,10337372:0 -h1,15675:15482856,10337372:0,0,0 -k1,15675:32583028,10337372:17100172 -g1,15675:32583028,10337372 -) -(1,15675:6630773,11003550:25952256,404226,9436 -h1,15675:6630773,11003550:0,0,0 -g1,15675:7579210,11003550 -g1,15675:8211502,11003550 -g1,15675:8527648,11003550 -g1,15675:8843794,11003550 -g1,15675:9159940,11003550 -g1,15675:9476086,11003550 -g1,15675:10108378,11003550 -g1,15675:10424524,11003550 -g1,15675:10740670,11003550 -g1,15675:11056816,11003550 -g1,15675:11372962,11003550 -g1,15675:12005254,11003550 -g1,15675:12321400,11003550 -g1,15675:12637546,11003550 -g1,15675:12953692,11003550 -g1,15675:13269838,11003550 -g1,15675:13902130,11003550 -h1,15675:14218276,11003550:0,0,0 -k1,15675:32583028,11003550:18364752 -g1,15675:32583028,11003550 -) -(1,15675:6630773,11669728:25952256,388497,9436 -h1,15675:6630773,11669728:0,0,0 -g1,15675:7579210,11669728 -g1,15675:8211502,11669728 -g1,15675:8527648,11669728 -g1,15675:8843794,11669728 -g1,15675:9159940,11669728 -g1,15675:9476086,11669728 -g1,15675:10108378,11669728 -g1,15675:10424524,11669728 -g1,15675:10740670,11669728 -g1,15675:11056816,11669728 -g1,15675:11372962,11669728 -g1,15675:12005254,11669728 -g1,15675:12321400,11669728 -g1,15675:12637546,11669728 -g1,15675:12953692,11669728 -g1,15675:13269838,11669728 -g1,15675:13902130,11669728 -h1,15675:14218276,11669728:0,0,0 -k1,15675:32583028,11669728:18364752 -g1,15675:32583028,11669728 -) -(1,15675:6630773,12335906:25952256,404226,9436 -h1,15675:6630773,12335906:0,0,0 -g1,15675:7579210,12335906 -g1,15675:8211502,12335906 -g1,15675:8527648,12335906 -g1,15675:8843794,12335906 -g1,15675:9159940,12335906 -g1,15675:9476086,12335906 -g1,15675:10108378,12335906 -g1,15675:10424524,12335906 -g1,15675:10740670,12335906 -g1,15675:11056816,12335906 -g1,15675:11372962,12335906 -g1,15675:12005254,12335906 -g1,15675:12321400,12335906 -g1,15675:12637546,12335906 -g1,15675:12953692,12335906 -g1,15675:13269838,12335906 -g1,15675:13902130,12335906 -h1,15675:14218276,12335906:0,0,0 -k1,15675:32583028,12335906:18364752 -g1,15675:32583028,12335906 -) -(1,15675:6630773,13002084:25952256,404226,6290 -h1,15675:6630773,13002084:0,0,0 -g1,15675:7579210,13002084 -g1,15675:8211502,13002084 -g1,15675:8843794,13002084 -g1,15675:9476086,13002084 -g1,15675:11056815,13002084 -h1,15675:12321398,13002084:0,0,0 -k1,15675:32583030,13002084:20261632 -g1,15675:32583030,13002084 -) -] -) -g1,15676:32583029,13008374 -g1,15676:6630773,13008374 -g1,15676:6630773,13008374 -g1,15676:32583029,13008374 -g1,15676:32583029,13008374 -) -h1,15676:6630773,13204982:0,0,0 -v1,15680:6630773,14785383:0,393216,0 -(1,15681:6630773,16067272:25952256,1675105,0 -g1,15681:6630773,16067272 -g1,15681:6303093,16067272 -r1,15729:6401397,16067272:98304,1675105,0 -g1,15681:6600626,16067272 -g1,15681:6797234,16067272 -[1,15681:6797234,16067272:25785795,1675105,0 -(1,15681:6797234,15217921:25785795,825754,196608 -(1,15680:6797234,15217921:0,825754,196608 -r1,15729:7890375,15217921:1093141,1022362,196608 -k1,15680:6797234,15217921:-1093141 -) -(1,15680:6797234,15217921:1093141,825754,196608 -) -k1,15680:8066647,15217921:176272 -k1,15680:9384576,15217921:327680 -k1,15680:11194661,15217921:176272 -k1,15680:11902430,15217921:176272 -k1,15680:13097786,15217921:176271 -k1,15680:16033779,15217921:176272 -k1,15680:16676012,15217921:176272 -k1,15680:18022757,15217921:176272 -k1,15680:20497377,15217921:176272 -(1,15680:20497377,15217921:0,452978,115847 -r1,15729:23317626,15217921:2820249,568825,115847 -k1,15680:20497377,15217921:-2820249 -) -(1,15680:20497377,15217921:2820249,452978,115847 -k1,15680:20497377,15217921:3277 -h1,15680:23314349,15217921:0,411205,112570 -) -k1,15680:23493898,15217921:176272 -k1,15680:24431697,15217921:176271 -(1,15680:24431697,15217921:0,459977,115847 -r1,15729:28658793,15217921:4227096,575824,115847 -k1,15680:24431697,15217921:-4227096 -) -(1,15680:24431697,15217921:4227096,459977,115847 -k1,15680:24431697,15217921:3277 -h1,15680:28655516,15217921:0,411205,112570 -) -k1,15680:28835065,15217921:176272 -k1,15680:29627375,15217921:176272 -k1,15680:30822732,15217921:176272 -k1,15681:32583029,15217921:0 -) -(1,15681:6797234,16059409:25785795,505283,7863 -g1,15680:8635518,16059409 -k1,15681:32583029,16059409:21765162 -g1,15681:32583029,16059409 -) -] -g1,15681:32583029,16067272 -) -h1,15681:6630773,16067272:0,0,0 -v1,15684:6630773,17278216:0,393216,0 -(1,15721:6630773,38849224:25952256,21964224,0 -g1,15721:6630773,38849224 -g1,15721:6303093,38849224 -r1,15729:6401397,38849224:98304,21964224,0 -g1,15721:6600626,38849224 -g1,15721:6797234,38849224 -[1,15721:6797234,38849224:25785795,21964224,0 -(1,15685:6797234,17698800:25785795,813800,267386 -(1,15684:6797234,17698800:0,813800,267386 -r1,15729:8134168,17698800:1336934,1081186,267386 -k1,15684:6797234,17698800:-1336934 -) -(1,15684:6797234,17698800:1336934,813800,267386 -) -k1,15684:8308557,17698800:174389 -k1,15684:8636237,17698800:327680 -k1,15684:10585341,17698800:174389 -k1,15684:13049558,17698800:174389 -k1,15684:15429234,17698800:174389 -k1,15684:18017968,17698800:174388 -k1,15684:18878519,17698800:174389 -k1,15684:22455537,17698800:174389 -k1,15684:23281354,17698800:174389 -k1,15684:24474828,17698800:174389 -(1,15684:24474828,17698800:0,459977,115847 -r1,15729:28701924,17698800:4227096,575824,115847 -k1,15684:24474828,17698800:-4227096 -) -(1,15684:24474828,17698800:4227096,459977,115847 -k1,15684:24474828,17698800:3277 -h1,15684:28698647,17698800:0,411205,112570 -) -k1,15684:28876313,17698800:174389 -k1,15684:32583029,17698800:0 -) -(1,15685:6797234,18540288:25785795,513147,102891 -k1,15684:7708689,18540288:260027 -k1,15684:8716481,18540288:260026 -k1,15684:11734918,18540288:260027 -k1,15684:12681106,18540288:260026 -k1,15684:16254633,18540288:260027 -k1,15684:17618942,18540288:260027 -k1,15684:18626734,18540288:260026 -k1,15684:21284723,18540288:260027 -k1,15684:23852928,18540288:260027 -k1,15684:24795839,18540288:260026 -k1,15684:27789373,18540288:260027 -k1,15684:29650444,18540288:260026 -k1,15684:30929556,18540288:260027 -k1,15684:32583029,18540288:0 -) -(1,15685:6797234,19381776:25785795,513147,134348 -k1,15684:9445470,19381776:162455 -k1,15684:10267217,19381776:162455 -k1,15684:11963870,19381776:162455 -k1,15684:12812487,19381776:162455 -k1,15684:13994027,19381776:162455 -k1,15684:15545845,19381776:162455 -k1,15684:17965360,19381776:162455 -k1,15684:21530444,19381776:162455 -k1,15684:23898186,19381776:162455 -k1,15684:24712069,19381776:162455 -k1,15684:25893609,19381776:162455 -(1,15684:25893609,19381776:0,452978,115847 -r1,15729:28713858,19381776:2820249,568825,115847 -k1,15684:25893609,19381776:-2820249 -) -(1,15684:25893609,19381776:2820249,452978,115847 -k1,15684:25893609,19381776:3277 -h1,15684:28710581,19381776:0,411205,112570 -) -k1,15684:28876313,19381776:162455 -k1,15684:32583029,19381776:0 -) -(1,15685:6797234,20223264:25785795,513147,102891 -k1,15684:8101051,20223264:199535 -k1,15684:9048352,20223264:199535 -k1,15684:11645850,20223264:199536 -k1,15684:14153563,20223264:199535 -k1,15684:15035983,20223264:199535 -k1,15684:16559345,20223264:199535 -k1,15684:18359925,20223264:199535 -k1,15684:19578546,20223264:199536 -k1,15684:21431554,20223264:199535 -k1,15684:24116870,20223264:199535 -k1,15684:24975697,20223264:199535 -k1,15684:28128940,20223264:199535 -k1,15684:29014638,20223264:199536 -k1,15684:30748371,20223264:199535 -k1,15684:31563944,20223264:199535 -k1,15684:32583029,20223264:0 -) -(1,15685:6797234,21064752:25785795,513147,134348 -k1,15684:9264883,21064752:275470 -k1,15684:10358241,21064752:275469 -k1,15684:11502063,21064752:275470 -k1,15684:12984706,21064752:275470 -k1,15684:13876213,21064752:275469 -k1,15684:16430370,21064752:275470 -h1,15684:17400958,21064752:0,0,0 -k1,15684:17676428,21064752:275470 -k1,15684:18761267,21064752:275469 -k1,15684:20534890,21064752:275470 -h1,15684:21331808,21064752:0,0,0 -k1,15684:21780948,21064752:275470 -k1,15684:23490345,21064752:275469 -k1,15684:24684630,21064752:275470 -k1,15684:26349463,21064752:275470 -k1,15684:28831529,21064752:275469 -k1,15684:30211281,21064752:275470 -k1,15684:32583029,21064752:0 -) -(1,15685:6797234,21906240:25785795,513147,115847 -k1,15684:9724216,21906240:213791 -k1,15684:10597300,21906240:213792 -k1,15684:13043903,21906240:213791 -(1,15684:13043903,21906240:0,452978,115847 -r1,15729:14457304,21906240:1413401,568825,115847 -k1,15684:13043903,21906240:-1413401 -) -(1,15684:13043903,21906240:1413401,452978,115847 -k1,15684:13043903,21906240:3277 -h1,15684:14454027,21906240:0,411205,112570 -) -k1,15684:14671095,21906240:213791 -k1,15684:16076331,21906240:213791 -(1,15684:16076331,21906240:0,452978,115847 -r1,15729:18193156,21906240:2116825,568825,115847 -k1,15684:16076331,21906240:-2116825 -) -(1,15684:16076331,21906240:2116825,452978,115847 -k1,15684:16076331,21906240:3277 -h1,15684:18189879,21906240:0,411205,112570 -) -k1,15684:18580618,21906240:213792 -k1,15684:19991096,21906240:213791 -k1,15684:23391247,21906240:213791 -k1,15684:24136535,21906240:213791 -k1,15684:24966365,21906240:213792 -k1,15684:26199241,21906240:213791 -k1,15684:27943298,21906240:213791 -k1,15684:28808517,21906240:213791 -k1,15684:30114794,21906240:213792 -(1,15684:30114794,21906240:0,452978,115847 -r1,15729:31176483,21906240:1061689,568825,115847 -k1,15684:30114794,21906240:-1061689 -) -(1,15684:30114794,21906240:1061689,452978,115847 -k1,15684:30114794,21906240:3277 -h1,15684:31173206,21906240:0,411205,112570 -) -k1,15684:31563944,21906240:213791 -k1,15684:32583029,21906240:0 -) -(1,15685:6797234,22747728:25785795,513147,134348 -k1,15684:9477730,22747728:220274 -k1,15684:12567169,22747728:220273 -k1,15684:13438871,22747728:220274 -k1,15684:15957493,22747728:220274 -k1,15684:17874493,22747728:220273 -k1,15684:20936408,22747728:220274 -k1,15684:23270873,22747728:220274 -k1,15684:27525542,22747728:220273 -k1,15684:28937261,22747728:220274 -k1,15684:32583029,22747728:0 -) -(1,15685:6797234,23589216:25785795,505283,134348 -k1,15684:7649164,23589216:200502 -k1,15684:9157109,23589216:200502 -(1,15684:9157109,23589216:0,459977,115847 -r1,15729:12680781,23589216:3523672,575824,115847 -k1,15684:9157109,23589216:-3523672 -) -(1,15684:9157109,23589216:3523672,459977,115847 -k1,15684:9157109,23589216:3277 -h1,15684:12677504,23589216:0,411205,112570 -) -k1,15684:12881283,23589216:200502 -k1,15684:15371613,23589216:200502 -k1,15684:16258277,23589216:200502 -k1,15684:19560598,23589216:200502 -k1,15684:20754625,23589216:200501 -k1,15684:23908835,23589216:200502 -k1,15684:25300782,23589216:200502 -k1,15684:27588606,23589216:200502 -k1,15684:30502299,23589216:200502 -k1,15684:31835263,23589216:200502 -k1,15684:32583029,23589216:0 -) -(1,15685:6797234,24430704:25785795,513147,134348 -g1,15684:9771257,24430704 -g1,15684:10621914,24430704 -g1,15684:13492390,24430704 -g1,15684:16884533,24430704 -g1,15684:19796953,24430704 -g1,15684:20612220,24430704 -g1,15684:21830534,24430704 -g1,15684:23419126,24430704 -k1,15685:32583029,24430704:7113937 -g1,15685:32583029,24430704 -) -v1,15687:6797234,25621170:0,393216,0 -(1,15700:6797234,30498324:25785795,5270370,196608 -g1,15700:6797234,30498324 -g1,15700:6797234,30498324 -g1,15700:6600626,30498324 -(1,15700:6600626,30498324:0,5270370,196608 -r1,15729:32779637,30498324:26179011,5466978,196608 -k1,15700:6600625,30498324:-26179012 -) -(1,15700:6600626,30498324:26179011,5270370,196608 -[1,15700:6797234,30498324:25785795,5073762,0 -(1,15689:6797234,25828788:25785795,404226,82312 -(1,15688:6797234,25828788:0,0,0 -g1,15688:6797234,25828788 -g1,15688:6797234,25828788 -g1,15688:6469554,25828788 -(1,15688:6469554,25828788:0,0,0 -) -g1,15688:6797234,25828788 -) -k1,15689:6797234,25828788:0 -g1,15689:9642546,25828788 -g1,15689:10274838,25828788 -g1,15689:11855568,25828788 -g1,15689:12487860,25828788 -g1,15689:13120152,25828788 -g1,15689:14700882,25828788 -g1,15689:15333174,25828788 -g1,15689:15965466,25828788 -g1,15689:19126924,25828788 -g1,15689:20075362,25828788 -g1,15689:21023800,25828788 -g1,15689:21972238,25828788 -h1,15689:22920675,25828788:0,0,0 -k1,15689:32583029,25828788:9662354 -g1,15689:32583029,25828788 -) -(1,15699:6797234,26494966:25785795,404226,9436 -(1,15691:6797234,26494966:0,0,0 -g1,15691:6797234,26494966 -g1,15691:6797234,26494966 -g1,15691:6469554,26494966 -(1,15691:6469554,26494966:0,0,0 -) -g1,15691:6797234,26494966 -) -g1,15699:7745671,26494966 -g1,15699:8377963,26494966 -g1,15699:9010255,26494966 -g1,15699:11539421,26494966 -g1,15699:12171713,26494966 -g1,15699:12804005,26494966 -h1,15699:13120151,26494966:0,0,0 -k1,15699:32583029,26494966:19462878 -g1,15699:32583029,26494966 -) -(1,15699:6797234,27161144:25785795,404226,6290 -h1,15699:6797234,27161144:0,0,0 -g1,15699:7745671,27161144 -g1,15699:8061817,27161144 -g1,15699:8377963,27161144 -g1,15699:8694109,27161144 -g1,15699:9010255,27161144 -g1,15699:9326401,27161144 -g1,15699:9642547,27161144 -g1,15699:10274839,27161144 -g1,15699:10590985,27161144 -g1,15699:10907131,27161144 -g1,15699:11223277,27161144 -g1,15699:11539423,27161144 -g1,15699:12171715,27161144 -h1,15699:12487861,27161144:0,0,0 -k1,15699:32583029,27161144:20095168 -g1,15699:32583029,27161144 -) -(1,15699:6797234,27827322:25785795,404226,6290 -h1,15699:6797234,27827322:0,0,0 -g1,15699:7745671,27827322 -g1,15699:8061817,27827322 -g1,15699:8377963,27827322 -g1,15699:10274838,27827322 -g1,15699:12171713,27827322 -k1,15699:12171713,27827322:0 -h1,15699:14068587,27827322:0,0,0 -k1,15699:32583029,27827322:18514442 -g1,15699:32583029,27827322 -) -(1,15699:6797234,28493500:25785795,404226,76021 -h1,15699:6797234,28493500:0,0,0 -g1,15699:7745671,28493500 -g1,15699:8377963,28493500 -g1,15699:8694109,28493500 -g1,15699:9010255,28493500 -g1,15699:9326401,28493500 -g1,15699:9642547,28493500 -g1,15699:10274839,28493500 -g1,15699:10590985,28493500 -g1,15699:10907131,28493500 -g1,15699:11223277,28493500 -g1,15699:11539423,28493500 -g1,15699:12171715,28493500 -g1,15699:13752444,28493500 -k1,15699:13752444,28493500:0 -h1,15699:15017027,28493500:0,0,0 -k1,15699:32583029,28493500:17566002 -g1,15699:32583029,28493500 -) -(1,15699:6797234,29159678:25785795,404226,76021 -h1,15699:6797234,29159678:0,0,0 -g1,15699:7745671,29159678 -g1,15699:8377963,29159678 -g1,15699:8694109,29159678 -g1,15699:9010255,29159678 -g1,15699:9326401,29159678 -g1,15699:9642547,29159678 -g1,15699:10274839,29159678 -g1,15699:10590985,29159678 -g1,15699:10907131,29159678 -g1,15699:11223277,29159678 -g1,15699:11539423,29159678 -g1,15699:12171715,29159678 -g1,15699:13752444,29159678 -k1,15699:13752444,29159678:0 -h1,15699:15017027,29159678:0,0,0 -k1,15699:32583029,29159678:17566002 -g1,15699:32583029,29159678 -) -(1,15699:6797234,29825856:25785795,404226,76021 -h1,15699:6797234,29825856:0,0,0 -g1,15699:7745671,29825856 -g1,15699:8377963,29825856 -g1,15699:8694109,29825856 -g1,15699:9010255,29825856 -g1,15699:9326401,29825856 -g1,15699:9642547,29825856 -g1,15699:10274839,29825856 -g1,15699:10590985,29825856 -g1,15699:10907131,29825856 -g1,15699:11223277,29825856 -g1,15699:11539423,29825856 -g1,15699:12171715,29825856 -g1,15699:13752444,29825856 -k1,15699:13752444,29825856:0 -h1,15699:15017027,29825856:0,0,0 -k1,15699:32583029,29825856:17566002 -g1,15699:32583029,29825856 -) -(1,15699:6797234,30492034:25785795,404226,6290 -h1,15699:6797234,30492034:0,0,0 -g1,15699:7745671,30492034 -g1,15699:8377963,30492034 -g1,15699:9010255,30492034 -g1,15699:9642547,30492034 -g1,15699:11223276,30492034 -h1,15699:12487859,30492034:0,0,0 -k1,15699:32583029,30492034:20095170 -g1,15699:32583029,30492034 -) -] -) -g1,15700:32583029,30498324 -g1,15700:6797234,30498324 -g1,15700:6797234,30498324 -g1,15700:32583029,30498324 -g1,15700:32583029,30498324 -) -h1,15700:6797234,30694932:0,0,0 -(1,15704:6797234,32060708:25785795,513147,126483 -h1,15703:6797234,32060708:983040,0,0 -g1,15703:8467091,32060708 -g1,15703:9659846,32060708 -g1,15703:10518367,32060708 -g1,15703:12041423,32060708 -g1,15703:12923537,32060708 -g1,15703:13478626,32060708 -g1,15703:14671381,32060708 -g1,15703:15529902,32060708 -g1,15703:18037309,32060708 -g1,15703:19340820,32060708 -g1,15703:20287815,32060708 -g1,15703:22901390,32060708 -g1,15703:25305906,32060708 -g1,15703:26156563,32060708 -g1,15703:27374877,32060708 -k1,15704:32583029,32060708:1327765 -g1,15704:32583029,32060708 -) -v1,15706:6797234,33251174:0,393216,0 -(1,15719:6797234,38128328:25785795,5270370,196608 -g1,15719:6797234,38128328 -g1,15719:6797234,38128328 -g1,15719:6600626,38128328 -(1,15719:6600626,38128328:0,5270370,196608 -r1,15729:32779637,38128328:26179011,5466978,196608 -k1,15719:6600625,38128328:-26179012 -) -(1,15719:6600626,38128328:26179011,5270370,196608 -[1,15719:6797234,38128328:25785795,5073762,0 -(1,15708:6797234,33458792:25785795,404226,82312 -(1,15707:6797234,33458792:0,0,0 -g1,15707:6797234,33458792 -g1,15707:6797234,33458792 -g1,15707:6469554,33458792 -(1,15707:6469554,33458792:0,0,0 -) -g1,15707:6797234,33458792 -) -k1,15708:6797234,33458792:0 -g1,15708:9642546,33458792 -g1,15708:10274838,33458792 -g1,15708:11855568,33458792 -g1,15708:12487860,33458792 -g1,15708:13120152,33458792 -g1,15708:14700882,33458792 -g1,15708:15333174,33458792 -g1,15708:15965466,33458792 -g1,15708:19126924,33458792 -g1,15708:20707654,33458792 -g1,15708:22288384,33458792 -g1,15708:26714425,33458792 -h1,15708:31140465,33458792:0,0,0 -k1,15708:32583029,33458792:1442564 -g1,15708:32583029,33458792 -) -(1,15718:6797234,34124970:25785795,404226,9436 -(1,15710:6797234,34124970:0,0,0 -g1,15710:6797234,34124970 -g1,15710:6797234,34124970 -g1,15710:6469554,34124970 -(1,15710:6469554,34124970:0,0,0 -) -g1,15710:6797234,34124970 -) -g1,15718:7745671,34124970 -g1,15718:8377963,34124970 -g1,15718:9010255,34124970 -g1,15718:11539421,34124970 -g1,15718:12171713,34124970 -g1,15718:12804005,34124970 -h1,15718:13120151,34124970:0,0,0 -k1,15718:32583029,34124970:19462878 -g1,15718:32583029,34124970 -) -(1,15718:6797234,34791148:25785795,404226,6290 -h1,15718:6797234,34791148:0,0,0 -g1,15718:7745671,34791148 -g1,15718:8061817,34791148 -g1,15718:8377963,34791148 -g1,15718:8694109,34791148 -g1,15718:9010255,34791148 -g1,15718:9326401,34791148 -g1,15718:9642547,34791148 -g1,15718:10274839,34791148 -g1,15718:10590985,34791148 -g1,15718:10907131,34791148 -g1,15718:11223277,34791148 -g1,15718:11539423,34791148 -g1,15718:12171715,34791148 -h1,15718:12487861,34791148:0,0,0 -k1,15718:32583029,34791148:20095168 -g1,15718:32583029,34791148 -) -(1,15718:6797234,35457326:25785795,404226,6290 -h1,15718:6797234,35457326:0,0,0 -g1,15718:7745671,35457326 -g1,15718:8061817,35457326 -g1,15718:8377963,35457326 -g1,15718:10274838,35457326 -g1,15718:12171713,35457326 -k1,15718:12171713,35457326:0 -h1,15718:14068587,35457326:0,0,0 -k1,15718:32583029,35457326:18514442 -g1,15718:32583029,35457326 -) -(1,15718:6797234,36123504:25785795,404226,76021 -h1,15718:6797234,36123504:0,0,0 -g1,15718:7745671,36123504 -g1,15718:8377963,36123504 -g1,15718:8694109,36123504 -g1,15718:9010255,36123504 -g1,15718:9326401,36123504 -g1,15718:9642547,36123504 -g1,15718:10274839,36123504 -g1,15718:10590985,36123504 -g1,15718:10907131,36123504 -g1,15718:11223277,36123504 -g1,15718:11539423,36123504 -g1,15718:12171715,36123504 -g1,15718:13752444,36123504 -k1,15718:13752444,36123504:0 -h1,15718:15017027,36123504:0,0,0 -k1,15718:32583029,36123504:17566002 -g1,15718:32583029,36123504 -) -(1,15718:6797234,36789682:25785795,404226,76021 -h1,15718:6797234,36789682:0,0,0 -g1,15718:7745671,36789682 -g1,15718:8377963,36789682 -g1,15718:8694109,36789682 -g1,15718:9010255,36789682 -g1,15718:9326401,36789682 -g1,15718:9642547,36789682 -g1,15718:10274839,36789682 -g1,15718:10590985,36789682 -g1,15718:10907131,36789682 -g1,15718:11223277,36789682 -g1,15718:11539423,36789682 -g1,15718:12171715,36789682 -g1,15718:13752444,36789682 -k1,15718:13752444,36789682:0 -h1,15718:15017027,36789682:0,0,0 -k1,15718:32583029,36789682:17566002 -g1,15718:32583029,36789682 -) -(1,15718:6797234,37455860:25785795,404226,76021 -h1,15718:6797234,37455860:0,0,0 -g1,15718:7745671,37455860 -g1,15718:8377963,37455860 -g1,15718:8694109,37455860 -g1,15718:9010255,37455860 -g1,15718:9326401,37455860 -g1,15718:9642547,37455860 -g1,15718:10274839,37455860 -g1,15718:10590985,37455860 -g1,15718:10907131,37455860 -g1,15718:11223277,37455860 -g1,15718:11539423,37455860 -g1,15718:12171715,37455860 -g1,15718:13752444,37455860 -k1,15718:13752444,37455860:0 -h1,15718:15017027,37455860:0,0,0 -k1,15718:32583029,37455860:17566002 -g1,15718:32583029,37455860 -) -(1,15718:6797234,38122038:25785795,404226,6290 -h1,15718:6797234,38122038:0,0,0 -g1,15718:7745671,38122038 -g1,15718:8377963,38122038 -g1,15718:9010255,38122038 -g1,15718:9642547,38122038 -g1,15718:11223276,38122038 -h1,15718:12487859,38122038:0,0,0 -k1,15718:32583029,38122038:20095170 -g1,15718:32583029,38122038 -) -] -) -g1,15719:32583029,38128328 -g1,15719:6797234,38128328 -g1,15719:6797234,38128328 -g1,15719:32583029,38128328 -g1,15719:32583029,38128328 -) -h1,15719:6797234,38324936:0,0,0 -] -g1,15721:32583029,38849224 -) -h1,15721:6630773,38849224:0,0,0 -(1,15726:6630773,42026249:25952256,32768,229376 -(1,15726:6630773,42026249:0,32768,229376 -(1,15726:6630773,42026249:5505024,32768,229376 -r1,15729:12135797,42026249:5505024,262144,229376 -) -k1,15726:6630773,42026249:-5505024 -) -(1,15726:6630773,42026249:25952256,32768,0 -r1,15729:32583029,42026249:25952256,32768,0 -) -) -(1,15726:6630773,43630577:25952256,606339,151780 -(1,15726:6630773,43630577:1974731,582746,14155 -g1,15726:6630773,43630577 -g1,15726:8605504,43630577 -) -g1,15726:10655733,43630577 -k1,15726:32583028,43630577:19792132 -g1,15726:32583028,43630577 -) -(1,15729:6630773,44865281:25952256,513147,134348 -k1,15728:8050699,44865281:223239 -k1,15728:9580072,44865281:223240 -k1,15728:12296301,44865281:223239 -k1,15728:15705900,44865281:223239 -k1,15728:18564343,44865281:223240 -k1,15728:20948959,44865281:223239 -k1,15728:22907592,44865281:223240 -k1,15728:26338818,44865281:223239 -k1,15728:29472511,44865281:223239 -k1,15728:30227248,44865281:223240 -k1,15728:31469572,44865281:223239 -k1,15729:32583029,44865281:0 -) -(1,15729:6630773,45706769:25952256,513147,126483 -k1,15728:8729538,45706769:260480 -k1,15728:10082504,45706769:260481 -k1,15728:11002276,45706769:260480 -k1,15728:13050578,45706769:260480 -k1,15728:14691903,45706769:260481 -k1,15728:15657550,45706769:260480 -k1,15728:18762293,45706769:260480 -k1,15728:21190704,45706769:260480 -k1,15728:21807045,45706769:260481 -k1,15728:24831834,45706769:260480 -k1,15728:25751606,45706769:260480 -k1,15728:29916067,45706769:260481 -k1,15728:30862709,45706769:260480 -k1,15728:32583029,45706769:0 -) -] -(1,15729:32583029,45706769:0,0,0 -g1,15729:32583029,45706769 -) -) -] -(1,15729:6630773,47279633:25952256,0,0 -h1,15729:6630773,47279633:25952256,0,0 -) -] -(1,15729:4262630,4025873:0,0,0 -[1,15729:-473656,4025873:0,0,0 -(1,15729:-473656,-710413:0,0,0 -(1,15729:-473656,-710413:0,0,0 -g1,15729:-473656,-710413 -) -g1,15729:-473656,-710413 +g1,15456:3062174,49800853 +(1,15456:3062174,52029077:16384,1703936,0 +[1,15456:3062174,52029077:25952256,1703936,0 +(1,15456:3062174,51504789:25952256,1179648,0 +(1,15456:3062174,51504789:16384,1179648,0 +r1,15546:3078558,51504789:16384,1179648,0 ) -] -) -] -!28416 -}269 +k1,15456:29014430,51504789:25935872 +g1,15456:29014430,51504789 +) +] +) +) +) +] +[1,15546:3078558,4812305:0,0,0 +(1,15546:3078558,49800853:0,16384,2228224 +g1,15546:29030814,49800853 +g1,15546:36135244,49800853 +(1,15456:36135244,49800853:1720320,16384,2228224 +(1,15456:36135244,52029077:16384,1703936,0 +[1,15456:36135244,52029077:25952256,1703936,0 +(1,15456:36135244,51504789:25952256,1179648,0 +(1,15456:36135244,51504789:16384,1179648,0 +r1,15546:36151628,51504789:16384,1179648,0 +) +k1,15456:62087500,51504789:25935872 +g1,15456:62087500,51504789 +) +] +) +g1,15456:36675916,49800853 +(1,15456:36675916,49800853:1179648,16384,0 +r1,15546:37855564,49800853:1179648,16384,0 +) +) +k1,15546:3078556,49800853:-34777008 +) +] +g1,15546:6630773,4812305 +g1,15546:6630773,4812305 +g1,15546:11156689,4812305 +g1,15546:12279976,4812305 +g1,15546:16628629,4812305 +k1,15546:31387652,4812305:14759023 +) +) +] +[1,15546:6630773,45706769:25952256,40108032,0 +(1,15546:6630773,45706769:25952256,40108032,0 +(1,15546:6630773,45706769:0,0,0 +g1,15546:6630773,45706769 +) +[1,15546:6630773,45706769:25952256,40108032,0 +(1,15526:6630773,6254097:25952256,513147,134348 +k1,15525:9507934,6254097:157417 +k1,15525:12023993,6254097:157418 +k1,15525:13313217,6254097:157417 +k1,15525:15671989,6254097:157418 +k1,15525:18764108,6254097:157417 +k1,15525:20053332,6254097:157417 +k1,15525:24186819,6254097:157418 +k1,15525:26354225,6254097:157417 +k1,15525:28208370,6254097:157418 +k1,15525:31391584,6254097:157417 +k1,15525:32583029,6254097:0 +) +(1,15526:6630773,7119177:25952256,513147,134348 +k1,15525:9694581,7119177:279183 +k1,15525:12236067,7119177:279183 +k1,15525:13534335,7119177:279183 +k1,15525:16655159,7119177:279183 +k1,15525:19139629,7119177:279183 +k1,15525:20104974,7119177:279183 +k1,15525:23960457,7119177:279183 +k1,15525:25620484,7119177:279183 +k1,15525:28986413,7119177:279183 +k1,15525:30284681,7119177:279183 +k1,15525:32583029,7119177:0 +) +(1,15526:6630773,7984257:25952256,513147,134348 +k1,15525:8384385,7984257:231866 +k1,15525:9563903,7984257:231867 +k1,15525:12254024,7984257:231866 +k1,15525:14986089,7984257:231866 +k1,15525:16409400,7984257:231866 +k1,15525:17927083,7984257:231867 +k1,15525:18920477,7984257:231866 +k1,15525:21872087,7984257:231866 +k1,15525:23123038,7984257:231866 +k1,15525:24885171,7984257:231867 +k1,15525:25768465,7984257:231866 +k1,15525:27716064,7984257:231866 +k1,15525:28303790,7984257:231866 +k1,15525:30045607,7984257:231867 +k1,15525:30936765,7984257:231866 +k1,15526:32583029,7984257:0 +) +(1,15526:6630773,8849337:25952256,513147,134348 +k1,15525:8993286,8849337:219486 +k1,15525:11900403,8849337:219486 +k1,15525:13138974,8849337:219486 +k1,15525:14693428,8849337:219486 +k1,15525:17542874,8849337:219486 +k1,15525:22011715,8849337:219487 +k1,15525:23612045,8849337:219486 +k1,15525:24363028,8849337:219486 +k1,15525:24938374,8849337:219486 +k1,15525:28711222,8849337:219486 +k1,15525:31510860,8849337:219486 +k1,15525:32583029,8849337:0 +) +(1,15526:6630773,9714417:25952256,513147,134348 +k1,15525:9930763,9714417:161471 +k1,15525:12069454,9714417:161470 +k1,15525:13928963,9714417:161471 +k1,15525:16409752,9714417:161470 +k1,15525:17965174,9714417:161471 +k1,15525:19480618,9714417:161470 +k1,15525:21212987,9714417:161471 +k1,15525:22763820,9714417:161470 +k1,15525:24363806,9714417:161471 +k1,15525:26868188,9714417:161470 +k1,15525:28410503,9714417:161471 +k1,15525:30241830,9714417:161470 +k1,15525:31896867,9714417:161471 +k1,15525:32583029,9714417:0 +) +(1,15526:6630773,10579497:25952256,513147,134348 +k1,15525:9211800,10579497:245979 +k1,15525:10851729,10579497:245978 +k1,15525:14607815,10579497:245979 +k1,15525:17475888,10579497:245978 +k1,15525:18077727,10579497:245979 +k1,15525:19907710,10579497:245978 +k1,15525:24808711,10579497:245979 +k1,15525:25713981,10579497:245978 +k1,15525:26979045,10579497:245979 +k1,15525:32583029,10579497:0 +) +(1,15526:6630773,11444577:25952256,505283,134348 +k1,15525:10240059,11444577:245323 +k1,15525:13832961,11444577:245323 +k1,15525:16658436,11444577:245323 +k1,15525:20413866,11444577:245323 +k1,15525:22705224,11444577:245324 +k1,15525:23759917,11444577:245323 +k1,15525:26519856,11444577:245323 +k1,15525:27377941,11444577:245323 +k1,15525:31021961,11444577:245323 +k1,15526:32583029,11444577:0 +) +(1,15526:6630773,12309657:25952256,505283,126483 +g1,15525:9690649,12309657 +g1,15525:11283829,12309657 +g1,15525:13544821,12309657 +(1,15525:13544821,12309657:0,459977,115847 +r1,15546:17068493,12309657:3523672,575824,115847 +k1,15525:13544821,12309657:-3523672 +) +(1,15525:13544821,12309657:3523672,459977,115847 +k1,15525:13544821,12309657:3277 +h1,15525:17065216,12309657:0,411205,112570 +) +k1,15526:32583029,12309657:15340866 +g1,15526:32583029,12309657 +) +(1,15528:6630773,13174737:25952256,513147,134348 +h1,15527:6630773,13174737:983040,0,0 +k1,15527:8461093,13174737:219445 +k1,15527:11311809,13174737:219445 +k1,15527:12182682,13174737:219445 +k1,15527:13421211,13174737:219444 +k1,15527:15729288,13174737:219445 +k1,15527:16608025,13174737:219445 +k1,15527:19407622,13174737:219445 +k1,15527:23310844,13174737:219445 +k1,15527:24549374,13174737:219445 +k1,15527:26506833,13174737:219444 +k1,15527:27385570,13174737:219445 +k1,15527:28624100,13174737:219445 +k1,15527:32051532,13174737:219445 +k1,15527:32583029,13174737:0 +) +(1,15528:6630773,14039817:25952256,513147,134348 +k1,15527:7917424,14039817:220380 +k1,15527:9513404,14039817:220379 +k1,15527:13983138,14039817:220380 +k1,15527:15400205,14039817:220380 +k1,15527:17709217,14039817:220380 +k1,15527:18588888,14039817:220379 +k1,15527:20012509,14039817:220380 +k1,15527:23135479,14039817:220380 +k1,15527:24456864,14039817:220380 +k1,15527:25963059,14039817:220379 +k1,15527:29682406,14039817:220380 +k1,15527:32583029,14039817:0 +) +(1,15528:6630773,14904897:25952256,513147,134348 +k1,15527:9019741,14904897:217760 +k1,15527:13518313,14904897:217760 +k1,15527:15211288,14904897:217760 +k1,15527:16938998,14904897:217760 +k1,15527:19847666,14904897:217760 +k1,15527:23394000,14904897:217760 +k1,15527:25054207,14904897:217760 +k1,15527:25888005,14904897:217760 +k1,15527:27539693,14904897:217760 +k1,15527:28172277,14904897:217741 +k1,15527:29072922,14904897:217760 +k1,15527:32583029,14904897:0 +) +(1,15528:6630773,15769977:25952256,513147,134348 +k1,15527:8130137,15769977:307919 +k1,15527:9054094,15769977:307919 +k1,15527:11054153,15769977:307919 +k1,15527:13059454,15769977:307919 +k1,15527:14863560,15769977:307919 +k1,15527:17458030,15769977:307919 +k1,15527:19501342,15769977:307919 +k1,15527:21243189,15769977:307919 +k1,15527:21965842,15769977:307810 +k1,15527:23378043,15769977:307919 +k1,15527:27565693,15769977:307919 +k1,15527:31563944,15769977:307919 +k1,15527:32583029,15769977:0 +) +(1,15528:6630773,16635057:25952256,505283,134348 +k1,15527:10030661,16635057:191901 +k1,15527:11414007,16635057:191901 +k1,15527:12845195,16635057:191902 +k1,15527:14889799,16635057:191901 +k1,15527:16914087,16635057:191901 +k1,15527:18606762,16635057:191901 +k1,15527:21709117,16635057:191901 +k1,15527:23185524,16635057:191901 +k1,15527:26810857,16635057:191902 +k1,15527:27358618,16635057:191901 +k1,15527:31025238,16635057:191901 +k1,15527:32583029,16635057:0 +) +(1,15528:6630773,17500137:25952256,513147,126483 +k1,15527:8460265,17500137:261871 +k1,15527:9741221,17500137:261871 +k1,15527:12087137,17500137:261871 +k1,15527:13008300,17500137:261871 +k1,15527:14289256,17500137:261871 +k1,15527:17759114,17500137:261871 +k1,15527:19288451,17500137:261871 +k1,15527:20834828,17500137:261871 +k1,15527:21755991,17500137:261871 +k1,15527:25527969,17500137:261871 +k1,15527:26472725,17500137:261871 +k1,15527:29759738,17500137:261871 +k1,15527:32583029,17500137:0 +) +(1,15528:6630773,18365217:25952256,473825,126483 +k1,15528:32583028,18365217:23444848 +g1,15528:32583028,18365217 +) +(1,15529:6630773,20482035:25952256,555811,147783 +(1,15529:6630773,20482035:2450326,534184,12975 +g1,15529:6630773,20482035 +g1,15529:9081099,20482035 +) +g1,15529:12248717,20482035 +k1,15529:32583030,20482035:17813340 +g1,15529:32583030,20482035 +) +(1,15533:6630773,21740331:25952256,513147,134348 +k1,15532:8034553,21740331:207093 +k1,15532:10697281,21740331:207094 +k1,15532:11563666,21740331:207093 +k1,15532:14350911,21740331:207093 +k1,15532:16720037,21740331:207094 +k1,15532:19596411,21740331:207093 +k1,15532:21312143,21740331:207093 +(1,15532:21312143,21740331:0,452978,115847 +r1,15546:22373832,21740331:1061689,568825,115847 +k1,15532:21312143,21740331:-1061689 +) +(1,15532:21312143,21740331:1061689,452978,115847 +k1,15532:21312143,21740331:3277 +h1,15532:22370555,21740331:0,411205,112570 +) +k1,15532:22580926,21740331:207094 +k1,15532:24343188,21740331:207093 +k1,15532:25236443,21740331:207093 +k1,15532:27416171,21740331:207094 +k1,15532:31021961,21740331:207093 +k1,15533:32583029,21740331:0 +) +(1,15533:6630773,22605411:25952256,505283,126483 +k1,15532:9002539,22605411:184174 +k1,15532:10580664,22605411:184174 +(1,15532:10580664,22605411:0,459977,115847 +r1,15546:14104336,22605411:3523672,575824,115847 +k1,15532:10580664,22605411:-3523672 +) +(1,15532:10580664,22605411:3523672,459977,115847 +k1,15532:10580664,22605411:3277 +h1,15532:14101059,22605411:0,411205,112570 +) +k1,15532:14288510,22605411:184174 +k1,15532:15664129,22605411:184174 +k1,15532:17564036,22605411:184174 +k1,15532:18206307,22605411:184174 +k1,15532:18746341,22605411:184174 +k1,15532:21313404,22605411:184174 +k1,15532:23226418,22605411:184174 +k1,15532:24791436,22605411:184174 +k1,15532:28374307,22605411:184174 +k1,15532:32583029,22605411:0 +) +(1,15533:6630773,23470491:25952256,513147,126483 +g1,15532:7361499,23470491 +g1,15532:8936329,23470491 +g1,15532:11219603,23470491 +g1,15532:12143660,23470491 +g1,15532:12958927,23470491 +g1,15532:14850296,23470491 +g1,15532:18206394,23470491 +g1,15532:19794986,23470491 +g1,15532:22200812,23470491 +g1,15532:23591486,23470491 +g1,15532:25932432,23470491 +g1,15532:27123221,23470491 +g1,15532:28388721,23470491 +k1,15533:32583029,23470491:715657 +g1,15533:32583029,23470491 +) +(1,15535:6630773,24335571:25952256,513147,134348 +h1,15534:6630773,24335571:983040,0,0 +k1,15534:8975596,24335571:165096 +k1,15534:10695861,24335571:165096 +k1,15534:12052402,24335571:165096 +k1,15534:15002123,24335571:165096 +k1,15534:16451725,24335571:165096 +k1,15534:19196973,24335571:165096 +k1,15534:21524101,24335571:165096 +k1,15534:23980336,24335571:165096 +k1,15534:25073422,24335571:165096 +k1,15534:26930658,24335571:165096 +k1,15534:27755046,24335571:165096 +k1,15534:28939227,24335571:165096 +k1,15534:32583029,24335571:0 +) +(1,15535:6630773,25200651:25952256,513147,134348 +k1,15534:9578670,25200651:213080 +k1,15534:10553279,25200651:213081 +k1,15534:11785444,25200651:213080 +k1,15534:14087156,25200651:213080 +k1,15534:14959528,25200651:213080 +k1,15534:16606537,25200651:213081 +k1,15534:17234446,25200651:213066 +k1,15534:18836889,25200651:213080 +k1,15534:21256566,25200651:213080 +k1,15534:22082409,25200651:213081 +k1,15534:23314574,25200651:213080 +k1,15534:24842962,25200651:213080 +k1,15534:25715334,25200651:213080 +k1,15534:28500703,25200651:213081 +k1,15534:30405923,25200651:213080 +k1,15535:32583029,25200651:0 +) +(1,15535:6630773,26065731:25952256,513147,134348 +k1,15534:10197832,26065731:188678 +k1,15534:11569435,26065731:188678 +k1,15534:12409541,26065731:188678 +k1,15534:15259636,26065731:188678 +k1,15534:18912547,26065731:188678 +k1,15534:21185270,26065731:188678 +k1,15534:22321599,26065731:188678 +k1,15534:25133683,26065731:188678 +k1,15534:28710572,26065731:188678 +k1,15534:31218569,26065731:188678 +k1,15535:32583029,26065731:0 +) +(1,15535:6630773,26930811:25952256,513147,126483 +k1,15534:8306343,26930811:222637 +k1,15534:9548065,26930811:222637 +k1,15534:12363306,26930811:222637 +k1,15534:13245234,26930811:222636 +k1,15534:16781371,26930811:222637 +k1,15534:17663300,26930811:222637 +k1,15534:19441106,26930811:222637 +(1,15534:19441106,26930811:0,452978,115847 +r1,15546:20854507,26930811:1413401,568825,115847 +k1,15534:19441106,26930811:-1413401 +) +(1,15534:19441106,26930811:1413401,452978,115847 +k1,15534:19441106,26930811:3277 +h1,15534:20851230,26930811:0,411205,112570 +) +k1,15534:21077144,26930811:222637 +k1,15534:22491226,26930811:222637 +k1,15534:25068571,26930811:222636 +k1,15534:27817621,26930811:222637 +k1,15534:28987909,26930811:222637 +k1,15534:31923737,26930811:222637 +k1,15534:32583029,26930811:0 +) +(1,15535:6630773,27795891:25952256,513147,134348 +k1,15534:8377508,27795891:191566 +(1,15534:8377508,27795891:0,452978,115847 +r1,15546:10494333,27795891:2116825,568825,115847 +k1,15534:8377508,27795891:-2116825 +) +(1,15534:8377508,27795891:2116825,452978,115847 +k1,15534:8377508,27795891:3277 +h1,15534:10491056,27795891:0,411205,112570 +) +k1,15534:10859569,27795891:191566 +k1,15534:13943239,27795891:191566 +k1,15534:14794096,27795891:191565 +k1,15534:18094690,27795891:191566 +k1,15534:18817753,27795891:191566 +k1,15534:20295135,27795891:191566 +k1,15534:23422714,27795891:191566 +k1,15534:25008231,27795891:191566 +k1,15534:26009166,27795891:191565 +k1,15534:27404628,27795891:191566 +k1,15534:29664510,27795891:191566 +k1,15534:31821501,27795891:191566 +k1,15534:32583029,27795891:0 +) +(1,15535:6630773,28660971:25952256,513147,7863 +k1,15534:9332822,28660971:262799 +k1,15534:11428008,28660971:262799 +k1,15534:12682368,28660971:262800 +k1,15534:14230983,28660971:262799 +k1,15534:18010444,28660971:262799 +k1,15534:18889281,28660971:262799 +k1,15534:21417660,28660971:262799 +k1,15534:24440180,28660971:262799 +k1,15534:25362272,28660971:262800 +k1,15534:27091767,28660971:262799 +k1,15534:31391584,28660971:262799 +k1,15534:32583029,28660971:0 +) +(1,15535:6630773,29526051:25952256,505283,7863 +k1,15535:32583028,29526051:22993960 +g1,15535:32583028,29526051 +) +(1,15537:6630773,30391131:25952256,513147,134348 +h1,15536:6630773,30391131:983040,0,0 +k1,15536:10836470,30391131:135911 +k1,15536:13134414,30391131:135911 +k1,15536:13886363,30391131:135911 +k1,15536:15506010,30391131:135912 +(1,15536:15506010,30391131:0,452978,115847 +r1,15546:16567699,30391131:1061689,568825,115847 +k1,15536:15506010,30391131:-1061689 +) +(1,15536:15506010,30391131:1061689,452978,115847 +k1,15536:15506010,30391131:3277 +h1,15536:16564422,30391131:0,411205,112570 +) +k1,15536:16703610,30391131:135911 +k1,15536:17970672,30391131:135911 +k1,15536:18836654,30391131:135911 +k1,15536:21084135,30391131:135911 +k1,15536:21906863,30391131:135911 +k1,15536:25449336,30391131:135912 +k1,15536:26184901,30391131:135911 +k1,15536:29206362,30391131:135911 +k1,15536:30619570,30391131:135911 +k1,15536:32583029,30391131:0 +) +(1,15537:6630773,31256211:25952256,513147,134348 +k1,15536:8337113,31256211:278310 +k1,15536:10817432,31256211:278309 +k1,15536:11782559,31256211:278310 +k1,15536:13881458,31256211:278309 +k1,15536:15773264,31256211:278310 +k1,15536:18937123,31256211:278309 +k1,15536:20261388,31256211:278310 +k1,15536:21552884,31256211:278309 +k1,15536:25467131,31256211:278310 +k1,15536:26345094,31256211:278309 +k1,15536:28192991,31256211:278310 +k1,15536:31219880,31256211:278309 +k1,15536:32583029,31256211:0 +) +(1,15537:6630773,32121291:25952256,513147,126483 +g1,15536:8850477,32121291 +g1,15536:9736523,32121291 +g1,15536:10334211,32121291 +g1,15536:12304223,32121291 +g1,15536:13119490,32121291 +g1,15536:14304380,32121291 +g1,15536:17908860,32121291 +g1,15536:18711020,32121291 +g1,15536:20943176,32121291 +g1,15536:21758443,32121291 +g1,15536:23571168,32121291 +k1,15537:32583029,32121291:6180050 +g1,15537:32583029,32121291 +) +v1,15539:6630773,32986371:0,393216,0 +(1,15542:6630773,40402536:25952256,7809381,0 +g1,15542:6630773,40402536 +g1,15542:6237557,40402536 +r1,15546:6368629,40402536:131072,7809381,0 +g1,15542:6567858,40402536 +g1,15542:6764466,40402536 +[1,15542:6764466,40402536:25818563,7809381,0 +(1,15540:6764466,33347548:25818563,754393,260573 +(1,15539:6764466,33347548:0,754393,260573 +r1,15546:8010564,33347548:1246098,1014966,260573 +k1,15539:6764466,33347548:-1246098 +) +(1,15539:6764466,33347548:1246098,754393,260573 +) +k1,15539:8251632,33347548:241068 +k1,15539:8579312,33347548:327680 +k1,15539:9290273,33347548:241068 +k1,15539:10062837,33347548:241067 +k1,15539:11698511,33347548:241068 +k1,15539:12591007,33347548:241068 +k1,15539:14446882,33347548:241068 +k1,15539:16184137,33347548:241068 +k1,15539:17709710,33347548:241067 +k1,15539:19083240,33347548:241068 +k1,15539:20920765,33347548:241068 +k1,15539:23970706,33347548:241068 +k1,15539:25678470,33347548:241068 +k1,15539:27313488,33347548:241067 +k1,15539:28943919,33347548:241068 +k1,15539:31391584,33347548:241068 +k1,15539:32583029,33347548:0 +) +(1,15540:6764466,34212628:25818563,513147,134348 +k1,15539:9112145,34212628:205962 +k1,15539:10079634,34212628:205961 +k1,15539:13005340,34212628:205962 +k1,15539:16565435,34212628:205962 +k1,15539:18055902,34212628:205961 +k1,15539:20484845,34212628:205962 +k1,15539:24193050,34212628:205961 +k1,15539:27333714,34212628:205962 +k1,15539:29035863,34212628:205962 +k1,15539:30526330,34212628:205961 +k1,15539:31263789,34212628:205962 +k1,15540:32583029,34212628:0 +) +(1,15540:6764466,35077708:25818563,513147,134348 +k1,15539:9894517,35077708:264817 +k1,15539:12401976,35077708:264817 +k1,15539:15783685,35077708:264817 +k1,15539:16699930,35077708:264817 +k1,15539:17983832,35077708:264817 +k1,15539:18663426,35077708:264751 +k1,15539:21770539,35077708:264817 +k1,15539:23372290,35077708:264817 +k1,15539:24664056,35077708:264817 +k1,15539:25580301,35077708:264817 +k1,15539:27441575,35077708:264817 +k1,15539:28392554,35077708:264817 +k1,15539:31496391,35077708:264817 +k1,15539:32227169,35077708:264817 +k1,15539:32583029,35077708:0 +) +(1,15540:6764466,35942788:25818563,513147,126483 +k1,15539:8839944,35942788:264063 +k1,15539:9635505,35942788:264064 +k1,15539:11412794,35942788:264063 +k1,15539:12292896,35942788:264064 +k1,15539:14219607,35942788:264063 +k1,15539:15142963,35942788:264064 +k1,15539:15762886,35942788:264063 +k1,15539:17416312,35942788:264063 +k1,15539:19730342,35942788:264064 +k1,15539:21484694,35942788:264063 +k1,15539:24774555,35942788:264064 +k1,15539:26998144,35942788:264063 +k1,15539:27913636,35942788:264064 +k1,15539:29774156,35942788:264063 +k1,15539:32583029,35942788:0 +) +(1,15540:6764466,36807868:25818563,513147,126483 +g1,15539:8357646,36807868 +g1,15539:10023571,36807868 +g1,15539:12364517,36807868 +g1,15539:13755191,36807868 +g1,15539:15343783,36807868 +g1,15539:17749609,36807868 +g1,15539:19053120,36807868 +g1,15539:20000115,36807868 +g1,15539:22009448,36807868 +g1,15539:23853631,36807868 +g1,15539:24739022,36807868 +k1,15540:32583029,36807868:4134669 +g1,15540:32583029,36807868 +) +(1,15542:6764466,37672948:25818563,513147,134348 +h1,15541:6764466,37672948:983040,0,0 +k1,15541:9770256,37672948:286046 +k1,15541:11975196,37672948:286046 +k1,15541:13452687,37672948:286046 +k1,15541:14805004,37672948:286046 +k1,15541:16412911,37672948:286046 +k1,15541:17358250,37672948:286047 +k1,15541:18663381,37672948:286046 +k1,15541:19364183,37672948:285959 +k1,15541:22666196,37672948:286046 +k1,15541:23971327,37672948:286046 +k1,15541:27167827,37672948:286046 +k1,15541:28069911,37672948:286046 +k1,15541:29375042,37672948:286046 +k1,15541:32583029,37672948:0 +) +(1,15542:6764466,38538028:25818563,513147,134348 +k1,15541:8013986,38538028:257960 +k1,15541:10923532,38538028:257959 +k1,15541:12389321,38538028:257960 +k1,15541:14041231,38538028:257959 +k1,15541:16250853,38538028:257960 +k1,15541:19247563,38538028:257960 +k1,15541:22076499,38538028:257959 +k1,15541:23618965,38538028:257960 +k1,15541:26168719,38538028:257960 +k1,15541:27983158,38538028:257959 +k1,15541:28892546,38538028:257960 +k1,15541:30169590,38538028:257959 +k1,15541:31923737,38538028:257960 +k1,15541:32583029,38538028:0 +) +(1,15542:6764466,39403108:25818563,505283,134348 +k1,15541:9100551,39403108:174708 +k1,15541:10466704,39403108:174708 +k1,15541:13551866,39403108:174708 +k1,15541:15011080,39403108:174708 +k1,15541:16278273,39403108:174708 +k1,15541:18265707,39403108:174708 +k1,15541:19482438,39403108:174709 +k1,15541:22492233,39403108:174708 +k1,15541:25257579,39403108:174708 +k1,15541:28541315,39403108:174708 +k1,15541:29650566,39403108:174708 +k1,15541:30441312,39403108:174708 +k1,15541:32583029,39403108:0 +) +(1,15542:6764466,40268188:25818563,505283,134348 +g1,15541:7725223,40268188 +g1,15541:9635597,40268188 +g1,15541:10826386,40268188 +g1,15541:13143739,40268188 +g1,15541:14025853,40268188 +g1,15541:15291353,40268188 +g1,15541:16142010,40268188 +g1,15541:19119966,40268188 +g1,15541:21329840,40268188 +g1,15541:22630074,40268188 +g1,15541:25490720,40268188 +g1,15541:27083900,40268188 +k1,15542:32583029,40268188:2778730 +g1,15542:32583029,40268188 +) +] +g1,15542:32583029,40402536 +) +h1,15542:6630773,40402536:0,0,0 +v1,15545:6630773,41267616:0,393216,0 +(1,15546:6630773,45170582:25952256,4296182,0 +g1,15546:6630773,45170582 +g1,15546:6237557,45170582 +r1,15546:6368629,45170582:131072,4296182,0 +g1,15546:6567858,45170582 +g1,15546:6764466,45170582 +[1,15546:6764466,45170582:25818563,4296182,0 +(1,15546:6764466,41575914:25818563,701514,196608 +(1,15545:6764466,41575914:0,701514,196608 +r1,15546:8010564,41575914:1246098,898122,196608 +k1,15545:6764466,41575914:-1246098 +) +(1,15545:6764466,41575914:1246098,701514,196608 +) +k1,15545:8199421,41575914:188857 +k1,15545:8527101,41575914:327680 +k1,15545:10178067,41575914:188858 +k1,15545:10825021,41575914:188857 +k1,15545:12114884,41575914:188858 +k1,15545:13813691,41575914:188857 +k1,15545:16632509,41575914:188858 +k1,15545:17472794,41575914:188857 +k1,15545:19622489,41575914:188858 +k1,15545:21953063,41575914:188857 +k1,15545:22828083,41575914:188858 +k1,15545:25306768,41575914:188857 +k1,15545:26154918,41575914:188858 +k1,15545:26699635,41575914:188857 +k1,15545:28443662,41575914:188858 +k1,15545:31015408,41575914:188857 +k1,15546:32583029,41575914:0 +) +(1,15546:6764466,42440994:25818563,513147,126483 +(1,15545:6764466,42440994:0,459977,115847 +r1,15546:10288138,42440994:3523672,575824,115847 +k1,15545:6764466,42440994:-3523672 +) +(1,15545:6764466,42440994:3523672,459977,115847 +k1,15545:6764466,42440994:3277 +h1,15545:10284861,42440994:0,411205,112570 +) +k1,15545:10500546,42440994:212408 +k1,15545:12944455,42440994:212408 +k1,15545:14313573,42440994:212408 +k1,15545:15185272,42440994:212407 +k1,15545:16416765,42440994:212408 +k1,15545:20027870,42440994:212408 +k1,15545:20899570,42440994:212408 +k1,15545:22131063,42440994:212408 +k1,15545:24468148,42440994:212408 +k1,15545:29737313,42440994:212407 +k1,15545:30609013,42440994:212408 +k1,15545:31575085,42440994:212408 +k1,15546:32583029,42440994:0 +) +(1,15546:6764466,43306074:25818563,513147,134348 +k1,15545:8132476,43306074:203435 +k1,15545:10568722,43306074:203434 +k1,15545:11388195,43306074:203435 +k1,15545:12180142,43306074:203434 +k1,15545:15187207,43306074:203435 +k1,15545:16593883,43306074:203435 +k1,15545:17328814,43306074:203434 +k1,15545:21356275,43306074:203435 +k1,15545:24089399,43306074:203434 +k1,15545:25311919,43306074:203435 +k1,15545:28117788,43306074:203434 +k1,15545:28980515,43306074:203435 +k1,15546:32583029,43306074:0 +) +(1,15546:6764466,44171154:25818563,513147,126483 +k1,15545:7793545,44171154:209879 +k1,15545:10443329,44171154:209879 +k1,15545:11269247,44171154:209880 +k1,15545:11834986,44171154:209879 +k1,15545:14427754,44171154:209879 +k1,15545:16192802,44171154:209879 +k1,15545:16934178,44171154:209879 +k1,15545:18210328,44171154:209879 +k1,15545:20549473,44171154:209880 +k1,15545:23426667,44171154:209879 +k1,15545:24538977,44171154:209879 +k1,15545:29321958,44171154:209879 +k1,15545:32583029,44171154:0 +) +(1,15546:6764466,45036234:25818563,513147,134348 +k1,15545:9412895,45036234:194106 +k1,15545:12463714,45036234:194105 +k1,15545:13605471,45036234:194106 +k1,15545:15188940,45036234:194106 +k1,15545:17589643,45036234:194106 +k1,15545:18916210,45036234:194105 +k1,15545:20176587,45036234:194106 +k1,15545:23886044,45036234:194106 +k1,15545:25676607,45036234:194106 +k1,15545:28679585,45036234:194105 +k1,15545:30267642,45036234:194106 +k1,15545:32583029,45036234:0 +) +] +g1,15546:32583029,45170582 +) +] +(1,15546:32583029,45706769:0,0,0 +g1,15546:32583029,45706769 +) +) +] +(1,15546:6630773,47279633:25952256,0,0 +h1,15546:6630773,47279633:25952256,0,0 +) +] +(1,15546:4262630,4025873:0,0,0 +[1,15546:-473656,4025873:0,0,0 +(1,15546:-473656,-710413:0,0,0 +(1,15546:-473656,-710413:0,0,0 +g1,15546:-473656,-710413 +) +g1,15546:-473656,-710413 +) +] +) +] +!25994 +}252 Input:2284:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2285:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2286:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -270057,880 +265301,1064 @@ Input:2296:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConso Input:2297:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2298:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1422 -{270 -[1,15806:4262630,47279633:28320399,43253760,0 -(1,15806:4262630,4025873:0,0,0 -[1,15806:-473656,4025873:0,0,0 -(1,15806:-473656,-710413:0,0,0 -(1,15806:-473656,-644877:0,0,0 -k1,15806:-473656,-644877:-65536 +{253 +[1,15647:4262630,47279633:28320399,43253760,0 +(1,15647:4262630,4025873:0,0,0 +[1,15647:-473656,4025873:0,0,0 +(1,15647:-473656,-710413:0,0,0 +(1,15647:-473656,-644877:0,0,0 +k1,15647:-473656,-644877:-65536 ) -(1,15806:-473656,4736287:0,0,0 -k1,15806:-473656,4736287:5209943 +(1,15647:-473656,4736287:0,0,0 +k1,15647:-473656,4736287:5209943 ) -g1,15806:-473656,-710413 +g1,15647:-473656,-710413 ) ] ) -[1,15806:6630773,47279633:25952256,43253760,0 -[1,15806:6630773,4812305:25952256,786432,0 -(1,15806:6630773,4812305:25952256,485622,126483 -(1,15806:6630773,4812305:25952256,485622,126483 -g1,15806:3078558,4812305 -[1,15806:3078558,4812305:0,0,0 -(1,15806:3078558,2439708:0,1703936,0 -k1,15806:1358238,2439708:-1720320 -(1,15243:1358238,2439708:1720320,1703936,0 -(1,15243:1358238,2439708:1179648,16384,0 -r1,15806:2537886,2439708:1179648,16384,0 +[1,15647:6630773,47279633:25952256,43253760,0 +[1,15647:6630773,4812305:25952256,786432,0 +(1,15647:6630773,4812305:25952256,505283,134348 +(1,15647:6630773,4812305:25952256,505283,134348 +g1,15647:3078558,4812305 +[1,15647:3078558,4812305:0,0,0 +(1,15647:3078558,2439708:0,1703936,0 +k1,15647:1358238,2439708:-1720320 +(1,15456:1358238,2439708:1720320,1703936,0 +(1,15456:1358238,2439708:1179648,16384,0 +r1,15647:2537886,2439708:1179648,16384,0 ) -g1,15243:3062174,2439708 -(1,15243:3062174,2439708:16384,1703936,0 -[1,15243:3062174,2439708:25952256,1703936,0 -(1,15243:3062174,1915420:25952256,1179648,0 -(1,15243:3062174,1915420:16384,1179648,0 -r1,15806:3078558,1915420:16384,1179648,0 +g1,15456:3062174,2439708 +(1,15456:3062174,2439708:16384,1703936,0 +[1,15456:3062174,2439708:25952256,1703936,0 +(1,15456:3062174,1915420:25952256,1179648,0 +(1,15456:3062174,1915420:16384,1179648,0 +r1,15647:3078558,1915420:16384,1179648,0 ) -k1,15243:29014430,1915420:25935872 -g1,15243:29014430,1915420 +k1,15456:29014430,1915420:25935872 +g1,15456:29014430,1915420 ) ] ) ) ) ] -[1,15806:3078558,4812305:0,0,0 -(1,15806:3078558,2439708:0,1703936,0 -g1,15806:29030814,2439708 -g1,15806:36135244,2439708 -(1,15243:36135244,2439708:1720320,1703936,0 -(1,15243:36135244,2439708:16384,1703936,0 -[1,15243:36135244,2439708:25952256,1703936,0 -(1,15243:36135244,1915420:25952256,1179648,0 -(1,15243:36135244,1915420:16384,1179648,0 -r1,15806:36151628,1915420:16384,1179648,0 +[1,15647:3078558,4812305:0,0,0 +(1,15647:3078558,2439708:0,1703936,0 +g1,15647:29030814,2439708 +g1,15647:36135244,2439708 +(1,15456:36135244,2439708:1720320,1703936,0 +(1,15456:36135244,2439708:16384,1703936,0 +[1,15456:36135244,2439708:25952256,1703936,0 +(1,15456:36135244,1915420:25952256,1179648,0 +(1,15456:36135244,1915420:16384,1179648,0 +r1,15647:36151628,1915420:16384,1179648,0 ) -k1,15243:62087500,1915420:25935872 -g1,15243:62087500,1915420 +k1,15456:62087500,1915420:25935872 +g1,15456:62087500,1915420 ) ] ) -g1,15243:36675916,2439708 -(1,15243:36675916,2439708:1179648,16384,0 -r1,15806:37855564,2439708:1179648,16384,0 +g1,15456:36675916,2439708 +(1,15456:36675916,2439708:1179648,16384,0 +r1,15647:37855564,2439708:1179648,16384,0 ) ) -k1,15806:3078556,2439708:-34777008 +k1,15647:3078556,2439708:-34777008 ) ] -[1,15806:3078558,4812305:0,0,0 -(1,15806:3078558,49800853:0,16384,2228224 -k1,15806:1358238,49800853:-1720320 -(1,15243:1358238,49800853:1720320,16384,2228224 -(1,15243:1358238,49800853:1179648,16384,0 -r1,15806:2537886,49800853:1179648,16384,0 +[1,15647:3078558,4812305:0,0,0 +(1,15647:3078558,49800853:0,16384,2228224 +k1,15647:1358238,49800853:-1720320 +(1,15456:1358238,49800853:1720320,16384,2228224 +(1,15456:1358238,49800853:1179648,16384,0 +r1,15647:2537886,49800853:1179648,16384,0 ) -g1,15243:3062174,49800853 -(1,15243:3062174,52029077:16384,1703936,0 -[1,15243:3062174,52029077:25952256,1703936,0 -(1,15243:3062174,51504789:25952256,1179648,0 -(1,15243:3062174,51504789:16384,1179648,0 -r1,15806:3078558,51504789:16384,1179648,0 +g1,15456:3062174,49800853 +(1,15456:3062174,52029077:16384,1703936,0 +[1,15456:3062174,52029077:25952256,1703936,0 +(1,15456:3062174,51504789:25952256,1179648,0 +(1,15456:3062174,51504789:16384,1179648,0 +r1,15647:3078558,51504789:16384,1179648,0 ) -k1,15243:29014430,51504789:25935872 -g1,15243:29014430,51504789 +k1,15456:29014430,51504789:25935872 +g1,15456:29014430,51504789 ) ] ) ) ) ] -[1,15806:3078558,4812305:0,0,0 -(1,15806:3078558,49800853:0,16384,2228224 -g1,15806:29030814,49800853 -g1,15806:36135244,49800853 -(1,15243:36135244,49800853:1720320,16384,2228224 -(1,15243:36135244,52029077:16384,1703936,0 -[1,15243:36135244,52029077:25952256,1703936,0 -(1,15243:36135244,51504789:25952256,1179648,0 -(1,15243:36135244,51504789:16384,1179648,0 -r1,15806:36151628,51504789:16384,1179648,0 +[1,15647:3078558,4812305:0,0,0 +(1,15647:3078558,49800853:0,16384,2228224 +g1,15647:29030814,49800853 +g1,15647:36135244,49800853 +(1,15456:36135244,49800853:1720320,16384,2228224 +(1,15456:36135244,52029077:16384,1703936,0 +[1,15456:36135244,52029077:25952256,1703936,0 +(1,15456:36135244,51504789:25952256,1179648,0 +(1,15456:36135244,51504789:16384,1179648,0 +r1,15647:36151628,51504789:16384,1179648,0 +) +k1,15456:62087500,51504789:25935872 +g1,15456:62087500,51504789 +) +] +) +g1,15456:36675916,49800853 +(1,15456:36675916,49800853:1179648,16384,0 +r1,15647:37855564,49800853:1179648,16384,0 ) -k1,15243:62087500,51504789:25935872 -g1,15243:62087500,51504789 -) -] -) -g1,15243:36675916,49800853 -(1,15243:36675916,49800853:1179648,16384,0 -r1,15806:37855564,49800853:1179648,16384,0 -) -) -k1,15806:3078556,49800853:-34777008 -) -] -g1,15806:6630773,4812305 -g1,15806:6630773,4812305 -g1,15806:8364200,4812305 -g1,15806:10177581,4812305 -k1,15806:31387653,4812305:21210072 -) -) -] -[1,15806:6630773,45706769:25952256,40108032,0 -(1,15806:6630773,45706769:25952256,40108032,0 -(1,15806:6630773,45706769:0,0,0 -g1,15806:6630773,45706769 -) -[1,15806:6630773,45706769:25952256,40108032,0 -(1,15729:6630773,6254097:25952256,513147,102891 -k1,15728:7969678,6254097:234623 -k1,15728:8952068,6254097:234624 -k1,15728:9872853,6254097:234623 -k1,15728:11386084,6254097:234624 -k1,15728:13133933,6254097:234623 -k1,15728:14762508,6254097:234624 -k1,15728:16431059,6254097:234623 -k1,15728:17080490,6254097:234588 -k1,15728:20514582,6254097:234624 -k1,15728:21377040,6254097:234623 -k1,15728:24451339,6254097:234624 -k1,15728:26313221,6254097:234623 -k1,15728:28881582,6254097:234624 -k1,15728:30832593,6254097:234623 -k1,15728:31482024,6254097:234588 -k1,15728:32583029,6254097:0 -) -(1,15729:6630773,7095585:25952256,505283,134348 -k1,15728:7199843,7095585:213210 -k1,15728:9346365,7095585:213210 -k1,15728:10949594,7095585:213210 -k1,15728:13909418,7095585:213210 -(1,15728:13909418,7095585:0,452978,115847 -r1,15806:14619396,7095585:709978,568825,115847 -k1,15728:13909418,7095585:-709978 -) -(1,15728:13909418,7095585:709978,452978,115847 -k1,15728:13909418,7095585:3277 -h1,15728:14616119,7095585:0,411205,112570 -) -k1,15728:15006276,7095585:213210 -k1,15728:18309509,7095585:213210 -k1,15728:19138758,7095585:213211 -k1,15728:21630655,7095585:213210 -h1,15728:22601243,7095585:0,0,0 -k1,15728:22814453,7095585:213210 -k1,15728:23837033,7095585:213210 -k1,15728:25548396,7095585:213210 -h1,15728:26743773,7095585:0,0,0 -k1,15728:27130653,7095585:213210 -k1,15728:28832186,7095585:213210 -k1,15728:29913748,7095585:213210 -k1,15728:32583029,7095585:0 -) -(1,15729:6630773,7937073:25952256,513147,134348 -k1,15728:8567541,7937073:234798 -k1,15728:10835920,7937073:234797 -k1,15728:16457777,7937073:234798 -k1,15728:17351866,7937073:234797 -k1,15728:19480654,7937073:234798 -k1,15728:20906896,7937073:234797 -k1,15728:22160779,7937073:234798 -k1,15728:25912238,7937073:234797 -k1,15728:28306447,7937073:234798 -k1,15728:30237971,7937073:234797 -k1,15728:31664214,7937073:234798 -k1,15728:32583029,7937073:0 -) -(1,15729:6630773,8778561:25952256,473825,126483 -g1,15728:8220021,8778561 -k1,15729:32583029,8778561:21442724 -g1,15729:32583029,8778561 -) -(1,15730:6630773,10869821:25952256,555811,147783 -(1,15730:6630773,10869821:2450326,534184,12975 -g1,15730:6630773,10869821 -g1,15730:9081099,10869821 -) -k1,15730:32583029,10869821:20048118 -g1,15730:32583029,10869821 -) -(1,15734:6630773,12104525:25952256,513147,134348 -k1,15733:7277933,12104525:159572 -k1,15733:8372088,12104525:159612 -k1,15733:9190991,12104525:159611 -k1,15733:12427518,12104525:159612 -k1,15733:13534780,12104525:159611 -k1,15733:17708472,12104525:159612 -k1,15733:19588403,12104525:159611 -k1,15733:20415171,12104525:159612 -k1,15733:20989586,12104525:159572 -k1,15733:24174994,12104525:159611 -k1,15733:24866103,12104525:159612 -k1,15733:29227227,12104525:159611 -k1,15733:30002877,12104525:159612 -k1,15733:32583029,12104525:0 -) -(1,15734:6630773,12946013:25952256,513147,134348 -k1,15733:9912364,12946013:162734 -k1,15733:10544990,12946013:162733 -k1,15733:13633907,12946013:162734 -k1,15733:14815726,12946013:162734 -k1,15733:16911772,12946013:162734 -k1,15733:17489312,12946013:162697 -k1,15733:19042065,12946013:162734 -k1,15733:19966326,12946013:162733 -k1,15733:22360561,12946013:162734 -k1,15733:24379930,12946013:162734 -k1,15733:25739351,12946013:162734 -k1,15733:27292103,12946013:162733 -k1,15733:30201451,12946013:162734 -k1,15733:32583029,12946013:0 -) -(1,15734:6630773,13787501:25952256,505283,134348 -k1,15733:7417641,13787501:170830 -k1,15733:10168624,13787501:170831 -k1,15733:13458311,13787501:170830 -(1,15733:13458311,13787501:0,435480,115847 -r1,15806:14520000,13787501:1061689,551327,115847 -k1,15733:13458311,13787501:-1061689 -) -(1,15733:13458311,13787501:1061689,435480,115847 -k1,15733:13458311,13787501:3277 -h1,15733:14516723,13787501:0,411205,112570 -) -k1,15733:14864500,13787501:170830 -k1,15733:15566828,13787501:170831 -k1,15733:18687433,13787501:170830 -k1,15733:20049708,13787501:170830 -k1,15733:23910216,13787501:170831 -k1,15733:24842574,13787501:170830 -k1,15733:27593556,13787501:170830 -k1,15733:29910690,13787501:170831 -k1,15733:31966991,13787501:170830 -k1,15733:32583029,13787501:0 -) -(1,15734:6630773,14628989:25952256,513147,126483 -g1,15733:8204947,14628989 -g1,15733:10695315,14628989 -g1,15733:13920341,14628989 -g1,15733:15404076,14628989 -g1,15733:17199762,14628989 -g1,15733:18677598,14628989 -g1,15733:19492865,14628989 -g1,15733:21081457,14628989 -k1,15734:32583029,14628989:9607582 -g1,15734:32583029,14628989 -) -(1,15736:6630773,15470477:25952256,505283,126483 -h1,15735:6630773,15470477:983040,0,0 -g1,15735:10674344,15470477 -(1,15735:10674344,15470477:0,435480,115847 -r1,15806:11736033,15470477:1061689,551327,115847 -k1,15735:10674344,15470477:-1061689 -) -(1,15735:10674344,15470477:1061689,435480,115847 -k1,15735:10674344,15470477:3277 -h1,15735:11732756,15470477:0,411205,112570 -) -g1,15735:11935262,15470477 -g1,15735:13807625,15470477 -g1,15735:14362714,15470477 -g1,15735:16763953,15470477 -g1,15735:18198536,15470477 -g1,15735:19083927,15470477 -g1,15735:20201971,15470477 -(1,15735:20201971,15470477:0,452978,115847 -r1,15806:20911949,15470477:709978,568825,115847 -k1,15735:20201971,15470477:-709978 -) -(1,15735:20201971,15470477:709978,452978,115847 -k1,15735:20201971,15470477:3277 -h1,15735:20908672,15470477:0,411205,112570 -) -k1,15736:32583029,15470477:11497410 -g1,15736:32583029,15470477 -) -v1,15738:6630773,16660943:0,393216,0 -(1,15742:6630773,16877997:25952256,610270,196608 -g1,15742:6630773,16877997 -g1,15742:6630773,16877997 -g1,15742:6434165,16877997 -(1,15742:6434165,16877997:0,610270,196608 -r1,15806:32779637,16877997:26345472,806878,196608 -k1,15742:6434165,16877997:-26345472 -) -(1,15742:6434165,16877997:26345472,610270,196608 -[1,15742:6630773,16877997:25952256,413662,0 -(1,15740:6630773,16868561:25952256,404226,9436 -(1,15739:6630773,16868561:0,0,0 -g1,15739:6630773,16868561 -g1,15739:6630773,16868561 -g1,15739:6303093,16868561 -(1,15739:6303093,16868561:0,0,0 -) -g1,15739:6630773,16868561 -) -g1,15740:9159939,16868561 -g1,15740:10108377,16868561 -h1,15740:11372960,16868561:0,0,0 -k1,15740:32583028,16868561:21210068 -g1,15740:32583028,16868561 -) -] -) -g1,15742:32583029,16877997 -g1,15742:6630773,16877997 -g1,15742:6630773,16877997 -g1,15742:32583029,16877997 -g1,15742:32583029,16877997 -) -h1,15742:6630773,17074605:0,0,0 -v1,15746:6630773,18789359:0,393216,0 -(1,15750:6630773,19098164:25952256,702021,196608 -g1,15750:6630773,19098164 -g1,15750:6630773,19098164 -g1,15750:6434165,19098164 -(1,15750:6434165,19098164:0,702021,196608 -r1,15806:32779637,19098164:26345472,898629,196608 -k1,15750:6434165,19098164:-26345472 -) -(1,15750:6434165,19098164:26345472,702021,196608 -[1,15750:6630773,19098164:25952256,505413,0 -(1,15748:6630773,18996977:25952256,404226,101187 -(1,15747:6630773,18996977:0,0,0 -g1,15747:6630773,18996977 -g1,15747:6630773,18996977 -g1,15747:6303093,18996977 -(1,15747:6303093,18996977:0,0,0 -) -g1,15747:6630773,18996977 -) -g1,15748:9159939,18996977 -g1,15748:10424522,18996977 -g1,15748:12637542,18996977 -g1,15748:13902125,18996977 -g1,15748:15798999,18996977 -g1,15748:16747437,18996977 -h1,15748:19592748,18996977:0,0,0 -k1,15748:32583029,18996977:12990281 -g1,15748:32583029,18996977 -) -] -) -g1,15750:32583029,19098164 -g1,15750:6630773,19098164 -g1,15750:6630773,19098164 -g1,15750:32583029,19098164 -g1,15750:32583029,19098164 -) -h1,15750:6630773,19294772:0,0,0 -(1,15754:6630773,20660548:25952256,505283,134348 -h1,15753:6630773,20660548:983040,0,0 -k1,15753:9004393,20660548:193893 -k1,15753:10878629,20660548:193893 -k1,15753:13277809,20660548:193893 -k1,15753:14575983,20660548:193892 -k1,15753:15517642,20660548:193893 -k1,15753:17455448,20660548:193893 -k1,15753:19980457,20660548:193893 -k1,15753:21909743,20660548:193893 -k1,15753:22459496,20660548:193893 -k1,15753:23725558,20660548:193893 -k1,15753:24605612,20660548:193892 -k1,15753:28533091,20660548:193893 -k1,15753:30932271,20660548:193893 -k1,15753:31812326,20660548:193893 -k1,15753:32583029,20660548:0 -) -(1,15754:6630773,21502036:25952256,513147,134348 -k1,15753:9898136,21502036:195035 -k1,15753:10854698,21502036:195034 -k1,15753:12787748,21502036:195035 -k1,15753:14174227,21502036:195034 -k1,15753:15130790,21502036:195035 -k1,15753:17940056,21502036:195035 -k1,15753:18786518,21502036:195034 -k1,15753:20000638,21502036:195035 -k1,15753:22891168,21502036:195034 -k1,15753:23895573,21502036:195035 -k1,15753:25109693,21502036:195035 -k1,15753:26337575,21502036:195034 -k1,15753:27191902,21502036:195035 -k1,15753:28406021,21502036:195034 -(1,15753:28406021,21502036:0,435480,115847 -r1,15806:29467710,21502036:1061689,551327,115847 -k1,15753:28406021,21502036:-1061689 -) -(1,15753:28406021,21502036:1061689,435480,115847 -k1,15753:28406021,21502036:3277 -h1,15753:29464433,21502036:0,411205,112570 -) -k1,15753:29662745,21502036:195035 -k1,15753:32583029,21502036:0 -) -(1,15754:6630773,22343524:25952256,505283,134348 -g1,15753:8424493,22343524 -(1,15753:8424493,22343524:0,414482,115847 -r1,15806:8782759,22343524:358266,530329,115847 -k1,15753:8424493,22343524:-358266 -) -(1,15753:8424493,22343524:358266,414482,115847 -k1,15753:8424493,22343524:3277 -h1,15753:8779482,22343524:0,411205,112570 -) -g1,15753:8981988,22343524 -g1,15753:9797255,22343524 -g1,15753:12941671,22343524 -g1,15753:14814034,22343524 -g1,15753:15369123,22343524 -g1,15753:17770362,22343524 -g1,15753:19041760,22343524 -g1,15753:20307260,22343524 -g1,15753:23243272,22343524 -g1,15753:24677855,22343524 -g1,15753:25563246,22343524 -(1,15753:25563246,22343524:0,414482,115847 -r1,15806:25921512,22343524:358266,530329,115847 -k1,15753:25563246,22343524:-358266 -) -(1,15753:25563246,22343524:358266,414482,115847 -k1,15753:25563246,22343524:3277 -h1,15753:25918235,22343524:0,411205,112570 -) -g1,15753:26120741,22343524 -g1,15753:26936008,22343524 -g1,15753:28569165,22343524 -g1,15753:29183237,22343524 -k1,15754:32583029,22343524:1505802 -g1,15754:32583029,22343524 -) -v1,15756:6630773,23533990:0,393216,0 -(1,15764:6630773,25149985:25952256,2009211,196608 -g1,15764:6630773,25149985 -g1,15764:6630773,25149985 -g1,15764:6434165,25149985 -(1,15764:6434165,25149985:0,2009211,196608 -r1,15806:32779637,25149985:26345472,2205819,196608 -k1,15764:6434165,25149985:-26345472 -) -(1,15764:6434165,25149985:26345472,2009211,196608 -[1,15764:6630773,25149985:25952256,1812603,0 -(1,15758:6630773,23741608:25952256,404226,101187 -(1,15757:6630773,23741608:0,0,0 -g1,15757:6630773,23741608 -g1,15757:6630773,23741608 -g1,15757:6303093,23741608 -(1,15757:6303093,23741608:0,0,0 -) -g1,15757:6630773,23741608 -) -g1,15758:9159939,23741608 -g1,15758:10424522,23741608 -g1,15758:12637543,23741608 -g1,15758:13269835,23741608 -g1,15758:14218272,23741608 -g1,15758:15482855,23741608 -g1,15758:17695875,23741608 -g1,15758:18644313,23741608 -h1,15758:21489624,23741608:0,0,0 -k1,15758:32583029,23741608:11093405 -g1,15758:32583029,23741608 -) -(1,15759:6630773,24407786:25952256,404226,101187 -h1,15759:6630773,24407786:0,0,0 -g1,15759:13269833,24407786 -h1,15759:16431290,24407786:0,0,0 -k1,15759:32583029,24407786:16151739 -g1,15759:32583029,24407786 -) -(1,15763:6630773,25073964:25952256,404226,76021 -(1,15761:6630773,25073964:0,0,0 -g1,15761:6630773,25073964 -g1,15761:6630773,25073964 -g1,15761:6303093,25073964 -(1,15761:6303093,25073964:0,0,0 -) -g1,15761:6630773,25073964 -) -g1,15763:7579210,25073964 -g1,15763:8843793,25073964 -h1,15763:10108376,25073964:0,0,0 -k1,15763:32583028,25073964:22474652 -g1,15763:32583028,25073964 -) -] -) -g1,15764:32583029,25149985 -g1,15764:6630773,25149985 -g1,15764:6630773,25149985 -g1,15764:32583029,25149985 -g1,15764:32583029,25149985 -) -h1,15764:6630773,25346593:0,0,0 -(1,15768:6630773,26712369:25952256,505283,126483 -h1,15767:6630773,26712369:983040,0,0 -k1,15767:8843156,26712369:280382 -k1,15767:11056850,26712369:280382 -k1,15767:12727252,26712369:280383 -k1,15767:15754248,26712369:280382 -k1,15767:18830396,26712369:280382 -k1,15767:22957741,26712369:280382 -k1,15767:24632075,26712369:280383 -k1,15767:25327218,26712369:280300 -k1,15767:26223639,26712369:280383 -k1,15767:27270137,26712369:280382 -k1,15767:29252489,26712369:280382 -k1,15767:32583029,26712369:0 -) -(1,15768:6630773,27553857:25952256,513147,134348 -k1,15767:8098070,27553857:182791 -k1,15767:11306657,27553857:182790 -k1,15767:12773954,27553857:182791 -k1,15767:13948305,27553857:182791 -k1,15767:14782524,27553857:182791 -k1,15767:15713080,27553857:182790 -k1,15767:18957058,27553857:182791 -k1,15767:20232334,27553857:182791 -k1,15767:21434210,27553857:182791 -k1,15767:25325027,27553857:182790 -k1,15767:27765533,27553857:182791 -k1,15767:29637842,27553857:182791 -k1,15767:32583029,27553857:0 -) -(1,15768:6630773,28395345:25952256,505283,134348 -k1,15767:8912938,28395345:270210 -k1,15767:10202233,28395345:270210 -k1,15767:14326615,28395345:270210 -k1,15767:15248252,28395345:270209 -k1,15767:16266228,28395345:270210 -k1,15767:19008456,28395345:270210 -k1,15767:20976704,28395345:270210 -k1,15767:22265999,28395345:270210 -k1,15767:24346969,28395345:270210 -k1,15767:27689506,28395345:270209 -k1,15767:28491213,28395345:270210 -k1,15767:29780508,28395345:270210 -k1,15767:31426319,28395345:270210 -k1,15767:32583029,28395345:0 -) -(1,15768:6630773,29236833:25952256,513147,126483 -g1,15767:9035289,29236833 -g1,15767:9885946,29236833 -g1,15767:11104260,29236833 -g1,15767:13998985,29236833 -g1,15767:15297908,29236833 -g1,15767:16306507,29236833 -k1,15768:32583029,29236833:15092942 -g1,15768:32583029,29236833 -) -v1,15770:6630773,30427299:0,393216,0 -(1,15778:6630773,32043294:25952256,2009211,196608 -g1,15778:6630773,32043294 -g1,15778:6630773,32043294 -g1,15778:6434165,32043294 -(1,15778:6434165,32043294:0,2009211,196608 -r1,15806:32779637,32043294:26345472,2205819,196608 -k1,15778:6434165,32043294:-26345472 -) -(1,15778:6434165,32043294:26345472,2009211,196608 -[1,15778:6630773,32043294:25952256,1812603,0 -(1,15772:6630773,30634917:25952256,404226,101187 -(1,15771:6630773,30634917:0,0,0 -g1,15771:6630773,30634917 -g1,15771:6630773,30634917 -g1,15771:6303093,30634917 -(1,15771:6303093,30634917:0,0,0 -) -g1,15771:6630773,30634917 -) -g1,15772:9159939,30634917 -g1,15772:10424522,30634917 -g1,15772:12005251,30634917 -g1,15772:13269834,30634917 -g1,15772:14534417,30634917 -g1,15772:15482855,30634917 -h1,15772:18328166,30634917:0,0,0 -k1,15772:32583029,30634917:14254863 -g1,15772:32583029,30634917 -) -(1,15773:6630773,31301095:25952256,404226,101187 -h1,15773:6630773,31301095:0,0,0 -g1,15773:13269833,31301095 -h1,15773:16431290,31301095:0,0,0 -k1,15773:32583029,31301095:16151739 -g1,15773:32583029,31301095 -) -(1,15777:6630773,31967273:25952256,404226,76021 -(1,15775:6630773,31967273:0,0,0 -g1,15775:6630773,31967273 -g1,15775:6630773,31967273 -g1,15775:6303093,31967273 -(1,15775:6303093,31967273:0,0,0 -) -g1,15775:6630773,31967273 -) -g1,15777:7579210,31967273 -g1,15777:8843793,31967273 -h1,15777:10108376,31967273:0,0,0 -k1,15777:32583028,31967273:22474652 -g1,15777:32583028,31967273 -) -] -) -g1,15778:32583029,32043294 -g1,15778:6630773,32043294 -g1,15778:6630773,32043294 -g1,15778:32583029,32043294 -g1,15778:32583029,32043294 -) -h1,15778:6630773,32239902:0,0,0 -(1,15783:6630773,33605678:25952256,505283,134348 -h1,15781:6630773,33605678:983040,0,0 -k1,15781:10413794,33605678:265048 -k1,15781:13624030,33605678:265049 -k1,15781:16649454,33605678:265048 -k1,15781:20141496,33605678:265049 -k1,15781:21796563,33605678:265048 -k1,15781:25312197,33605678:265048 -k1,15781:27070812,33605678:265049 -k1,15781:28022022,33605678:265048 -k1,15781:29838964,33605678:265049 -(1,15781:30046058,33605678:0,435480,115847 -r1,15806:31459459,33605678:1413401,551327,115847 -k1,15781:30046058,33605678:-1413401 -) -(1,15781:30046058,33605678:1413401,435480,115847 -k1,15781:30046058,33605678:3277 -h1,15781:31456182,33605678:0,411205,112570 -) -k1,15781:31931601,33605678:265048 -k1,15781:32583029,33605678:0 -) -(1,15783:6630773,34447166:25952256,513147,126483 -k1,15781:8761668,34447166:201515 -k1,15781:9319044,34447166:201516 -k1,15781:11728467,34447166:201515 -k1,15781:12546020,34447166:201515 -k1,15781:13766620,34447166:201515 -k1,15781:15531825,34447166:201516 -k1,15781:16924785,34447166:201515 -(1,15781:16924785,34447166:0,435480,115847 -r1,15806:18338186,34447166:1413401,551327,115847 -k1,15781:16924785,34447166:-1413401 -) -(1,15781:16924785,34447166:1413401,435480,115847 -k1,15781:16924785,34447166:3277 -h1,15781:18334909,34447166:0,411205,112570 -) -k1,15781:18539701,34447166:201515 -k1,15781:19392644,34447166:201515 -k1,15781:21357734,34447166:201516 -k1,15781:22578334,34447166:201515 -k1,15781:24169868,34447166:201515 -k1,15781:25132911,34447166:201515 -k1,15781:28487364,34447166:201516 -k1,15781:30563209,34447166:201515 -k1,15783:32583029,34447166:0 -) -(1,15783:6630773,35288654:25952256,513147,126483 -g1,15781:8100090,35288654 -g1,15781:9290879,35288654 -g1,15781:11273343,35288654 -g1,15781:12685643,35288654 -g1,15781:16189853,35288654 -g1,15781:17902308,35288654 -g1,15781:19543984,35288654 -(1,15781:19543984,35288654:0,435480,115847 -r1,15806:20605673,35288654:1061689,551327,115847 -k1,15781:19543984,35288654:-1061689 -) -(1,15781:19543984,35288654:1061689,435480,115847 -k1,15781:19543984,35288654:3277 -h1,15781:20602396,35288654:0,411205,112570 -) -g1,15781:20978572,35288654 -k1,15783:32583029,35288654:11604457 -g1,15783:32583029,35288654 -) -(1,15784:6630773,37379914:25952256,555811,139132 -(1,15784:6630773,37379914:2450326,534184,12975 -g1,15784:6630773,37379914 -g1,15784:9081099,37379914 -) -k1,15784:32583029,37379914:20941308 -g1,15784:32583029,37379914 -) -(1,15788:6630773,38614618:25952256,513147,134348 -k1,15787:8083137,38614618:255677 -(1,15787:8083137,38614618:0,435480,115847 -r1,15806:9496538,38614618:1413401,551327,115847 -k1,15787:8083137,38614618:-1413401 -) -(1,15787:8083137,38614618:1413401,435480,115847 -k1,15787:8083137,38614618:3277 -h1,15787:9493261,38614618:0,411205,112570 -) -k1,15787:9925885,38614618:255677 -k1,15787:10864448,38614618:255678 -k1,15787:14569285,38614618:255677 -k1,15787:17571576,38614618:255677 -k1,15787:19394874,38614618:255677 -k1,15787:22230703,38614618:255677 -k1,15787:24822738,38614618:255678 -k1,15787:27090370,38614618:255677 -k1,15787:31116333,38614618:255677 -k1,15787:32583029,38614618:0 -) -(1,15788:6630773,39456106:25952256,513147,126483 -k1,15787:7624851,39456106:184708 -k1,15787:8828645,39456106:184709 -k1,15787:10046856,39456106:184708 -k1,15787:11423010,39456106:184709 -k1,15787:12731660,39456106:184708 -k1,15787:14107814,39456106:184709 -k1,15787:16916584,39456106:184708 -k1,15787:18086954,39456106:184709 -k1,15787:19312374,39456106:184708 -k1,15787:20113121,39456106:184709 -k1,15787:21283490,39456106:184708 -k1,15787:22516119,39456106:184709 -(1,15787:22723213,39456106:0,414482,115847 -r1,15806:23081479,39456106:358266,530329,115847 -k1,15787:22723213,39456106:-358266 -) -(1,15787:22723213,39456106:358266,414482,115847 -k1,15787:22723213,39456106:3277 -h1,15787:23078202,39456106:0,411205,112570 -) -k1,15787:23646951,39456106:184708 -k1,15787:24517822,39456106:184709 -k1,15787:28436116,39456106:184708 -k1,15787:29568476,39456106:184709 -k1,15787:30772269,39456106:184708 -k1,15787:32583029,39456106:0 -) -(1,15788:6630773,40297594:25952256,513147,134348 -k1,15787:8994711,40297594:230741 -k1,15787:11025726,40297594:230741 -k1,15787:12275553,40297594:230742 -k1,15787:15825693,40297594:230741 -k1,15787:16715726,40297594:230741 -k1,15787:18919101,40297594:230742 -k1,15787:20168927,40297594:230741 -k1,15787:21789687,40297594:230741 -k1,15787:24767042,40297594:230741 -k1,15787:26565405,40297594:230742 -k1,15787:29741333,40297594:230741 -k1,15787:31073079,40297594:230741 -k1,15787:32583029,40297594:0 -) -(1,15788:6630773,41139082:25952256,505283,7863 -g1,15787:7849087,41139082 -g1,15787:9650016,41139082 -k1,15788:32583029,41139082:21246116 -g1,15788:32583029,41139082 -) -(1,15790:6630773,41980570:25952256,505283,134348 -h1,15789:6630773,41980570:983040,0,0 -k1,15789:10874288,41980570:181594 -k1,15789:12791275,41980570:181594 -k1,15789:13991955,41980570:181595 -k1,15789:16848729,41980570:181594 -k1,15789:19950607,41980570:181594 -k1,15789:21151286,41980570:181594 -k1,15789:22722899,41980570:181594 -k1,15789:23520531,41980570:181594 -k1,15789:24721211,41980570:181595 -k1,15789:27657283,41980570:181594 -k1,15789:29809545,41980570:181594 -k1,15790:32583029,41980570:0 -k1,15790:32583029,41980570:0 -) -v1,15792:6630773,43171036:0,393216,0 -(1,15800:6630773,44787031:25952256,2009211,196608 -g1,15800:6630773,44787031 -g1,15800:6630773,44787031 -g1,15800:6434165,44787031 -(1,15800:6434165,44787031:0,2009211,196608 -r1,15806:32779637,44787031:26345472,2205819,196608 -k1,15800:6434165,44787031:-26345472 -) -(1,15800:6434165,44787031:26345472,2009211,196608 -[1,15800:6630773,44787031:25952256,1812603,0 -(1,15794:6630773,43378654:25952256,404226,101187 -(1,15793:6630773,43378654:0,0,0 -g1,15793:6630773,43378654 -g1,15793:6630773,43378654 -g1,15793:6303093,43378654 -(1,15793:6303093,43378654:0,0,0 -) -g1,15793:6630773,43378654 -) -g1,15794:9159939,43378654 -g1,15794:10740667,43378654 -g1,15794:13269833,43378654 -g1,15794:14850561,43378654 -g1,15794:17063581,43378654 -g1,15794:18012019,43378654 -h1,15794:20857330,43378654:0,0,0 -k1,15794:32583029,43378654:11725699 -g1,15794:32583029,43378654 -) -(1,15795:6630773,44044832:25952256,404226,101187 -h1,15795:6630773,44044832:0,0,0 -g1,15795:13269833,44044832 -h1,15795:16431290,44044832:0,0,0 -k1,15795:32583029,44044832:16151739 -g1,15795:32583029,44044832 -) -(1,15799:6630773,44711010:25952256,404226,76021 -(1,15797:6630773,44711010:0,0,0 -g1,15797:6630773,44711010 -g1,15797:6630773,44711010 -g1,15797:6303093,44711010 -(1,15797:6303093,44711010:0,0,0 -) -g1,15797:6630773,44711010 -) -g1,15799:7579210,44711010 -g1,15799:8843793,44711010 -h1,15799:10108376,44711010:0,0,0 -k1,15799:32583028,44711010:22474652 -g1,15799:32583028,44711010 -) -] -) -g1,15800:32583029,44787031 -g1,15800:6630773,44787031 -g1,15800:6630773,44787031 -g1,15800:32583029,44787031 -g1,15800:32583029,44787031 -) -h1,15800:6630773,44983639:0,0,0 -] -(1,15806:32583029,45706769:0,0,0 -g1,15806:32583029,45706769 -) -) -] -(1,15806:6630773,47279633:25952256,0,0 -h1,15806:6630773,47279633:25952256,0,0 -) -] -(1,15806:4262630,4025873:0,0,0 -[1,15806:-473656,4025873:0,0,0 -(1,15806:-473656,-710413:0,0,0 -(1,15806:-473656,-710413:0,0,0 -g1,15806:-473656,-710413 -) -g1,15806:-473656,-710413 -) -] -) -] -!24953 -}270 +) +k1,15647:3078556,49800853:-34777008 +) +] +g1,15647:6630773,4812305 +k1,15647:23311652,4812305:15485502 +g1,15647:23960458,4812305 +g1,15647:27572802,4812305 +g1,15647:29306229,4812305 +) +) +] +[1,15647:6630773,45706769:25952256,40108032,0 +(1,15647:6630773,45706769:25952256,40108032,0 +(1,15647:6630773,45706769:0,0,0 +g1,15647:6630773,45706769 +) +[1,15647:6630773,45706769:25952256,40108032,0 +v1,15546:6630773,6254097:0,393216,0 +(1,15546:6630773,7373456:25952256,1512575,0 +g1,15546:6630773,7373456 +g1,15546:6237557,7373456 +r1,15647:6368629,7373456:131072,1512575,0 +g1,15546:6567858,7373456 +g1,15546:6764466,7373456 +[1,15546:6764466,7373456:25818563,1512575,0 +(1,15546:6764466,6374028:25818563,513147,126483 +k1,15545:8029592,6374028:192957 +k1,15545:8838586,6374028:192956 +k1,15545:10050628,6374028:192957 +k1,15545:12773275,6374028:192957 +k1,15545:13625524,6374028:192957 +k1,15545:14174340,6374028:192956 +k1,15545:17920659,6374028:192957 +k1,15545:20567939,6374028:192957 +k1,15545:21708546,6374028:192956 +k1,15545:24043220,6374028:192957 +k1,15545:24694274,6374028:192957 +k1,15545:26019693,6374028:192957 +k1,15545:26960415,6374028:192956 +k1,15545:28666598,6374028:192957 +k1,15545:32583029,6374028:0 +) +(1,15546:6764466,7239108:25818563,505283,134348 +g1,15545:8661733,7239108 +g1,15545:9880047,7239108 +g1,15545:12386143,7239108 +g1,15545:15039695,7239108 +g1,15545:15770421,7239108 +g1,15545:17837426,7239108 +g1,15545:19430606,7239108 +g1,15545:19985695,7239108 +g1,15545:21996339,7239108 +g1,15545:22881730,7239108 +k1,15546:32583029,7239108:6455301 +g1,15546:32583029,7239108 +) +] +g1,15546:32583029,7373456 +) +h1,15546:6630773,7373456:0,0,0 +v1,15549:6630773,8238536:0,393216,0 +(1,15576:6630773,20778091:25952256,12932771,0 +g1,15576:6630773,20778091 +g1,15576:6237557,20778091 +r1,15647:6368629,20778091:131072,12932771,0 +g1,15576:6567858,20778091 +g1,15576:6764466,20778091 +[1,15576:6764466,20778091:25818563,12932771,0 +(1,15550:6764466,8653078:25818563,807758,219026 +(1,15549:6764466,8653078:0,807758,219026 +r1,15647:7908217,8653078:1143751,1026784,219026 +k1,15549:6764466,8653078:-1143751 +) +(1,15549:6764466,8653078:1143751,807758,219026 +) +k1,15549:8085427,8653078:177210 +k1,15549:8413107,8653078:327680 +k1,15549:9861716,8653078:177211 +k1,15549:12219309,8653078:177210 +k1,15549:13144285,8653078:177210 +k1,15549:15189926,8653078:177210 +k1,15549:16651643,8653078:177211 +k1,15549:19660008,8653078:177210 +k1,15549:20856303,8653078:177210 +k1,15549:24740229,8653078:177210 +(1,15549:24740229,8653078:0,452978,115847 +r1,15647:27560478,8653078:2820249,568825,115847 +k1,15549:24740229,8653078:-2820249 +) +(1,15549:24740229,8653078:2820249,452978,115847 +k1,15549:24740229,8653078:3277 +h1,15549:27557201,8653078:0,411205,112570 +) +k1,15549:27737689,8653078:177211 +k1,15549:29106344,8653078:177210 +k1,15549:32583029,8653078:0 +) +(1,15550:6764466,9518158:25818563,513147,115847 +k1,15549:9724796,9518158:264834 +(1,15549:9724796,9518158:0,452978,115847 +r1,15647:13600180,9518158:3875384,568825,115847 +k1,15549:9724796,9518158:-3875384 +) +(1,15549:9724796,9518158:3875384,452978,115847 +k1,15549:9724796,9518158:3277 +h1,15549:13596903,9518158:0,411205,112570 +) +k1,15549:14038683,9518158:264833 +k1,15549:14989679,9518158:264834 +k1,15549:16533119,9518158:264833 +k1,15549:17484115,9518158:264834 +k1,15549:18768034,9518158:264834 +k1,15549:20224312,9518158:264833 +(1,15549:20224312,9518158:0,452978,115847 +r1,15647:24099696,9518158:3875384,568825,115847 +k1,15549:20224312,9518158:-3875384 +) +(1,15549:20224312,9518158:3875384,452978,115847 +k1,15549:20224312,9518158:3277 +h1,15549:24096419,9518158:0,411205,112570 +) +k1,15549:24364530,9518158:264834 +k1,15549:25721848,9518158:264833 +k1,15549:27005767,9518158:264834 +k1,15549:29008615,9518158:264833 +(1,15549:29008615,9518158:0,452978,115847 +r1,15647:31125440,9518158:2116825,568825,115847 +k1,15549:29008615,9518158:-2116825 +) +(1,15549:29008615,9518158:2116825,452978,115847 +k1,15549:29008615,9518158:3277 +h1,15549:31122163,9518158:0,411205,112570 +) +k1,15549:31563944,9518158:264834 +k1,15549:32583029,9518158:0 +) +(1,15550:6764466,10383238:25818563,505283,115847 +k1,15549:8519472,10383238:199837 +k1,15549:11498037,10383238:199838 +k1,15549:12229371,10383238:199837 +k1,15549:14587965,10383238:199838 +(1,15549:14587965,10383238:0,452978,115847 +r1,15647:15649654,10383238:1061689,568825,115847 +k1,15549:14587965,10383238:-1061689 +) +(1,15549:14587965,10383238:1061689,452978,115847 +k1,15549:14587965,10383238:3277 +h1,15549:15646377,10383238:0,411205,112570 +) +k1,15549:16023161,10383238:199837 +k1,15549:17603843,10383238:199838 +k1,15549:18335177,10383238:199837 +k1,15549:22431786,10383238:199838 +k1,15549:24025574,10383238:199837 +k1,15549:25659340,10383238:199838 +k1,15549:26274020,10383238:199837 +k1,15549:30507598,10383238:199837 +k1,15549:31393598,10383238:199838 +k1,15549:32051532,10383238:199837 +k1,15549:32583029,10383238:0 +) +(1,15550:6764466,11248318:25818563,513147,7863 +g1,15549:7982780,11248318 +g1,15549:9274494,11248318 +g1,15549:10133015,11248318 +g1,15549:11102947,11248318 +g1,15549:14882408,11248318 +g1,15549:17408820,11248318 +g1,15549:18267341,11248318 +g1,15549:18822430,11248318 +g1,15549:20093828,11248318 +g1,15549:20909095,11248318 +g1,15549:22127409,11248318 +g1,15549:24064653,11248318 +g1,15549:24923174,11248318 +g1,15549:26819130,11248318 +k1,15550:32583029,11248318:2805604 +g1,15550:32583029,11248318 +) +v1,15552:6764466,11933173:0,393216,0 +(1,15572:6764466,17005316:25818563,5465359,196608 +g1,15572:6764466,17005316 +g1,15572:6764466,17005316 +g1,15572:6567858,17005316 +(1,15572:6567858,17005316:0,5465359,196608 +r1,15647:32779637,17005316:26211779,5661967,196608 +k1,15572:6567857,17005316:-26211780 +) +(1,15572:6567858,17005316:26211779,5465359,196608 +[1,15572:6764466,17005316:25818563,5268751,0 +(1,15554:6764466,12161004:25818563,424439,106246 +(1,15553:6764466,12161004:0,0,0 +g1,15553:6764466,12161004 +g1,15553:6764466,12161004 +g1,15553:6436786,12161004 +(1,15553:6436786,12161004:0,0,0 +) +g1,15553:6764466,12161004 +) +g1,15554:8756190,12161004 +g1,15554:9752052,12161004 +g1,15554:14731362,12161004 +g1,15554:15395270,12161004 +h1,15554:16723086,12161004:0,0,0 +k1,15554:32583029,12161004:15859943 +g1,15554:32583029,12161004 +) +(1,15555:6764466,12845859:25818563,424439,106246 +h1,15555:6764466,12845859:0,0,0 +k1,15555:6764466,12845859:0 +h1,15555:12075729,12845859:0,0,0 +k1,15555:32583029,12845859:20507300 +g1,15555:32583029,12845859 +) +(1,15559:6764466,13661786:25818563,424439,79822 +(1,15557:6764466,13661786:0,0,0 +g1,15557:6764466,13661786 +g1,15557:6764466,13661786 +g1,15557:6436786,13661786 +(1,15557:6436786,13661786:0,0,0 +) +g1,15557:6764466,13661786 +) +g1,15559:7760328,13661786 +g1,15559:9088144,13661786 +h1,15559:10415960,13661786:0,0,0 +k1,15559:32583028,13661786:22167068 +g1,15559:32583028,13661786 +) +(1,15561:6764466,14477713:25818563,424439,106246 +(1,15560:6764466,14477713:0,0,0 +g1,15560:6764466,14477713 +g1,15560:6764466,14477713 +g1,15560:6436786,14477713 +(1,15560:6436786,14477713:0,0,0 +) +g1,15560:6764466,14477713 +) +k1,15561:6764466,14477713:0 +g1,15561:12075729,14477713 +h1,15561:15063314,14477713:0,0,0 +k1,15561:32583030,14477713:17519716 +g1,15561:32583030,14477713 +) +(1,15565:6764466,15293640:25818563,424439,79822 +(1,15563:6764466,15293640:0,0,0 +g1,15563:6764466,15293640 +g1,15563:6764466,15293640 +g1,15563:6436786,15293640 +(1,15563:6436786,15293640:0,0,0 +) +g1,15563:6764466,15293640 +) +g1,15565:7760328,15293640 +g1,15565:9088144,15293640 +h1,15565:10747914,15293640:0,0,0 +k1,15565:32583030,15293640:21835116 +g1,15565:32583030,15293640 +) +(1,15567:6764466,16109567:25818563,424439,106246 +(1,15566:6764466,16109567:0,0,0 +g1,15566:6764466,16109567 +g1,15566:6764466,16109567 +g1,15566:6436786,16109567 +(1,15566:6436786,16109567:0,0,0 +) +g1,15566:6764466,16109567 +) +k1,15567:6764466,16109567:0 +h1,15567:10747914,16109567:0,0,0 +k1,15567:32583030,16109567:21835116 +g1,15567:32583030,16109567 +) +(1,15571:6764466,16925494:25818563,431045,79822 +(1,15569:6764466,16925494:0,0,0 +g1,15569:6764466,16925494 +g1,15569:6764466,16925494 +g1,15569:6436786,16925494 +(1,15569:6436786,16925494:0,0,0 +) +g1,15569:6764466,16925494 +) +g1,15571:7760328,16925494 +g1,15571:9088144,16925494 +g1,15571:12075729,16925494 +g1,15571:12407683,16925494 +g1,15571:12739637,16925494 +g1,15571:13071591,16925494 +g1,15571:13403545,16925494 +g1,15571:15395269,16925494 +g1,15571:15727223,16925494 +g1,15571:16059177,16925494 +g1,15571:16391131,16925494 +g1,15571:16723085,16925494 +g1,15571:17055039,16925494 +g1,15571:17386993,16925494 +g1,15571:17718947,16925494 +h1,15571:21702394,16925494:0,0,0 +k1,15571:32583029,16925494:10880635 +g1,15571:32583029,16925494 +) +] +) +g1,15572:32583029,17005316 +g1,15572:6764466,17005316 +g1,15572:6764466,17005316 +g1,15572:32583029,17005316 +g1,15572:32583029,17005316 +) +h1,15572:6764466,17201924:0,0,0 +(1,15576:6764466,18067004:25818563,513147,134348 +h1,15575:6764466,18067004:983040,0,0 +k1,15575:12232790,18067004:291635 +k1,15575:13175853,18067004:291635 +k1,15575:15993901,18067004:291635 +k1,15575:18427253,18067004:291635 +k1,15575:20573557,18067004:291635 +k1,15575:21674562,18067004:291635 +k1,15575:24728540,18067004:291635 +k1,15575:28462781,18067004:291635 +k1,15575:30143779,18067004:291635 +k1,15575:32583029,18067004:0 +) +(1,15576:6764466,18932084:25818563,513147,134348 +k1,15575:8451631,18932084:193599 +k1,15575:9331391,18932084:193598 +(1,15575:9331391,18932084:0,452978,115847 +r1,15647:12855063,18932084:3523672,568825,115847 +k1,15575:9331391,18932084:-3523672 +) +(1,15575:9331391,18932084:3523672,452978,115847 +k1,15575:9331391,18932084:3277 +h1,15575:12851786,18932084:0,411205,112570 +) +k1,15575:13048662,18932084:193599 +k1,15575:15532088,18932084:193598 +k1,15575:16408572,18932084:193599 +k1,15575:19929433,18932084:193598 +k1,15575:20478892,18932084:193599 +k1,15575:22947900,18932084:193598 +k1,15575:25524388,18932084:193599 +k1,15575:27273155,18932084:193598 +k1,15575:27998251,18932084:193599 +k1,15575:30663867,18932084:193598 +k1,15575:31485301,18932084:193599 +k1,15575:32583029,18932084:0 +) +(1,15576:6764466,19797164:25818563,505283,134348 +k1,15575:9788095,19797164:188542 +k1,15575:10662799,19797164:188542 +k1,15575:11949069,19797164:188542 +k1,15575:13949025,19797164:188541 +k1,15575:15238572,19797164:188542 +k1,15575:16197817,19797164:188542 +k1,15575:19828965,19797164:188542 +(1,15575:19828965,19797164:0,459977,115847 +r1,15647:23352637,19797164:3523672,575824,115847 +k1,15575:19828965,19797164:-3523672 +) +(1,15575:19828965,19797164:3523672,459977,115847 +k1,15575:19828965,19797164:3277 +h1,15575:23349360,19797164:0,411205,112570 +) +k1,15575:23541179,19797164:188542 +k1,15575:25458560,19797164:188541 +k1,15575:26666187,19797164:188542 +k1,15575:28456429,19797164:188542 +k1,15575:31027860,19797164:188542 +k1,15575:32583029,19797164:0 +) +(1,15576:6764466,20662244:25818563,513147,115847 +g1,15575:7630851,20662244 +(1,15575:7630851,20662244:0,452978,115847 +r1,15647:9395964,20662244:1765113,568825,115847 +k1,15575:7630851,20662244:-1765113 +) +(1,15575:7630851,20662244:1765113,452978,115847 +k1,15575:7630851,20662244:3277 +h1,15575:9392687,20662244:0,411205,112570 +) +g1,15575:9595193,20662244 +g1,15575:10325919,20662244 +(1,15575:10325919,20662244:0,459977,115847 +r1,15647:12442744,20662244:2116825,575824,115847 +k1,15575:10325919,20662244:-2116825 +) +(1,15575:10325919,20662244:2116825,459977,115847 +k1,15575:10325919,20662244:3277 +h1,15575:12439467,20662244:0,411205,112570 +) +k1,15576:32583030,20662244:19966616 +g1,15576:32583030,20662244 +) +] +g1,15576:32583029,20778091 +) +h1,15576:6630773,20778091:0,0,0 +(1,15579:6630773,21643171:25952256,513147,134348 +h1,15578:6630773,21643171:983040,0,0 +k1,15578:8826380,21643171:259018 +k1,15578:11046236,21643171:259019 +k1,15578:11661114,21643171:259018 +k1,15578:14615629,21643171:259019 +k1,15578:16159153,21643171:259018 +k1,15578:19339766,21643171:259018 +k1,15578:21925313,21643171:259019 +k1,15578:23203416,21643171:259018 +k1,15578:25017603,21643171:259018 +k1,15578:25935914,21643171:259019 +k1,15578:27214017,21643171:259018 +k1,15578:29432562,21643171:259019 +k1,15578:31896867,21643171:259018 +k1,15578:32583029,21643171:0 +) +(1,15579:6630773,22508251:25952256,513147,134348 +k1,15578:9995228,22508251:292127 +k1,15578:11478799,22508251:292126 +k1,15578:12430218,22508251:292127 +k1,15578:13510742,22508251:292126 +k1,15578:16756577,22508251:292127 +k1,15578:19048207,22508251:292126 +k1,15578:22366131,22508251:292127 +k1,15578:23649817,22508251:292126 +k1,15578:27031967,22508251:292127 +k1,15578:27940131,22508251:292126 +k1,15578:30510945,22508251:292127 +h1,15578:31481533,22508251:0,0,0 +k1,15578:31773659,22508251:292126 +k1,15578:32583029,22508251:0 +) +(1,15579:6630773,23373331:25952256,505283,134348 +g1,15578:8328155,23373331 +h1,15578:9523532,23373331:0,0,0 +k1,15579:32583028,23373331:22678732 +g1,15579:32583028,23373331 +) +v1,15581:6630773,24058186:0,393216,0 +(1,15593:6630773,29851285:25952256,6186315,196608 +g1,15593:6630773,29851285 +g1,15593:6630773,29851285 +g1,15593:6434165,29851285 +(1,15593:6434165,29851285:0,6186315,196608 +r1,15647:32779637,29851285:26345472,6382923,196608 +k1,15593:6434165,29851285:-26345472 +) +(1,15593:6434165,29851285:26345472,6186315,196608 +[1,15593:6630773,29851285:25952256,5989707,0 +(1,15583:6630773,24292623:25952256,431045,79822 +(1,15582:6630773,24292623:0,0,0 +g1,15582:6630773,24292623 +g1,15582:6630773,24292623 +g1,15582:6303093,24292623 +(1,15582:6303093,24292623:0,0,0 +) +g1,15582:6630773,24292623 +) +g1,15583:10946174,24292623 +g1,15583:11942036,24292623 +g1,15583:15925483,24292623 +h1,15583:16257437,24292623:0,0,0 +k1,15583:32583029,24292623:16325592 +g1,15583:32583029,24292623 +) +(1,15584:6630773,24977478:25952256,424439,79822 +h1,15584:6630773,24977478:0,0,0 +g1,15584:6962727,24977478 +g1,15584:7294681,24977478 +k1,15584:7294681,24977478:0 +h1,15584:8622497,24977478:0,0,0 +k1,15584:32583029,24977478:23960532 +g1,15584:32583029,24977478 +) +(1,15585:6630773,25662333:25952256,424439,106246 +h1,15585:6630773,25662333:0,0,0 +g1,15585:6962727,25662333 +g1,15585:7294681,25662333 +g1,15585:7626635,25662333 +g1,15585:7958589,25662333 +k1,15585:7958589,25662333:0 +h1,15585:15925485,25662333:0,0,0 +k1,15585:32583029,25662333:16657544 +g1,15585:32583029,25662333 +) +(1,15586:6630773,26347188:25952256,424439,112852 +h1,15586:6630773,26347188:0,0,0 +g1,15586:6962727,26347188 +g1,15586:7294681,26347188 +g1,15586:7626635,26347188 +g1,15586:7958589,26347188 +k1,15586:7958589,26347188:0 +h1,15586:12937898,26347188:0,0,0 +k1,15586:32583030,26347188:19645132 +g1,15586:32583030,26347188 +) +(1,15587:6630773,27032043:25952256,424439,106246 +h1,15587:6630773,27032043:0,0,0 +g1,15587:6962727,27032043 +g1,15587:7294681,27032043 +g1,15587:7626635,27032043 +g1,15587:7958589,27032043 +k1,15587:7958589,27032043:0 +h1,15587:12937899,27032043:0,0,0 +k1,15587:32583029,27032043:19645130 +g1,15587:32583029,27032043 +) +(1,15588:6630773,27716898:25952256,424439,106246 +h1,15588:6630773,27716898:0,0,0 +g1,15588:6962727,27716898 +g1,15588:7294681,27716898 +g1,15588:7626635,27716898 +g1,15588:7958589,27716898 +g1,15588:8290543,27716898 +g1,15588:8622497,27716898 +g1,15588:8954451,27716898 +g1,15588:9286405,27716898 +g1,15588:9618359,27716898 +g1,15588:9950313,27716898 +g1,15588:13269853,27716898 +g1,15588:15925485,27716898 +g1,15588:18913070,27716898 +g1,15588:19576978,27716898 +g1,15588:20572840,27716898 +g1,15588:21568702,27716898 +g1,15588:22896518,27716898 +g1,15588:23560426,27716898 +g1,15588:24556288,27716898 +k1,15588:24556288,27716898:0 +h1,15588:25552150,27716898:0,0,0 +k1,15588:32583029,27716898:7030879 +g1,15588:32583029,27716898 +) +(1,15589:6630773,28401753:25952256,424439,106246 +h1,15589:6630773,28401753:0,0,0 +g1,15589:6962727,28401753 +g1,15589:7294681,28401753 +g1,15589:7626635,28401753 +g1,15589:7958589,28401753 +g1,15589:9286405,28401753 +g1,15589:9950313,28401753 +h1,15589:11610083,28401753:0,0,0 +k1,15589:32583029,28401753:20972946 +g1,15589:32583029,28401753 +) +(1,15590:6630773,29086608:25952256,424439,79822 +h1,15590:6630773,29086608:0,0,0 +g1,15590:6962727,29086608 +g1,15590:7294681,29086608 +g1,15590:7626635,29086608 +g1,15590:7958589,29086608 +h1,15590:8290543,29086608:0,0,0 +k1,15590:32583029,29086608:24292486 +g1,15590:32583029,29086608 +) +(1,15591:6630773,29771463:25952256,424439,79822 +h1,15591:6630773,29771463:0,0,0 +h1,15591:6962727,29771463:0,0,0 +k1,15591:32583029,29771463:25620302 +g1,15591:32583029,29771463 +) +] +) +g1,15593:32583029,29851285 +g1,15593:6630773,29851285 +g1,15593:6630773,29851285 +g1,15593:32583029,29851285 +g1,15593:32583029,29851285 +) +h1,15593:6630773,30047893:0,0,0 +(1,15597:6630773,30912973:25952256,513147,126483 +h1,15596:6630773,30912973:983040,0,0 +k1,15596:9034850,30912973:224350 +(1,15596:9034850,30912973:0,452978,115847 +r1,15647:11855099,30912973:2820249,568825,115847 +k1,15596:9034850,30912973:-2820249 +) +(1,15596:9034850,30912973:2820249,452978,115847 +k1,15596:9034850,30912973:3277 +h1,15596:11851822,30912973:0,411205,112570 +) +k1,15596:12079449,30912973:224350 +k1,15596:16010516,30912973:224351 +k1,15596:16996394,30912973:224350 +k1,15596:19486324,30912973:224350 +k1,15596:21203584,30912973:224350 +k1,15596:22494205,30912973:224350 +k1,15596:25111274,30912973:224350 +k1,15596:28310304,30912973:224351 +k1,15596:29924017,30912973:224350 +k1,15596:31415833,30912973:224350 +k1,15597:32583029,30912973:0 +) +(1,15597:6630773,31778053:25952256,513147,115847 +k1,15596:8333938,31778053:259407 +k1,15596:10282862,31778053:259406 +k1,15596:11561354,31778053:259407 +(1,15596:11561354,31778053:0,459977,115847 +r1,15647:15788450,31778053:4227096,575824,115847 +k1,15596:11561354,31778053:-4227096 +) +(1,15596:11561354,31778053:4227096,459977,115847 +k1,15596:11561354,31778053:3277 +h1,15596:15785173,31778053:0,411205,112570 +) +k1,15596:16047857,31778053:259407 +k1,15596:20013979,31778053:259406 +k1,15596:21316064,31778053:259407 +k1,15596:23618228,31778053:259407 +k1,15596:24292417,31778053:259346 +k1,15596:26885561,31778053:259407 +k1,15596:28861355,31778053:259406 +k1,15596:30317449,31778053:259407 +k1,15596:32583029,31778053:0 +) +(1,15597:6630773,32643133:25952256,505283,134348 +k1,15596:7954000,32643133:218945 +k1,15596:8920710,32643133:218944 +k1,15596:12620272,32643133:218945 +k1,15596:15397743,32643133:218945 +k1,15596:16387390,32643133:218944 +k1,15596:19678663,32643133:218945 +k1,15596:22102895,32643133:218945 +k1,15596:22973267,32643133:218944 +k1,15596:24888939,32643133:218945 +k1,15596:29318572,32643133:218945 +k1,15596:30728961,32643133:218944 +k1,15596:31563944,32643133:218945 +k1,15596:32583029,32643133:0 +) +(1,15597:6630773,33508213:25952256,513147,134348 +k1,15596:8232272,33508213:234418 +k1,15596:9133846,33508213:234418 +(1,15596:9133846,33508213:0,459977,115847 +r1,15647:13360942,33508213:4227096,575824,115847 +k1,15596:9133846,33508213:-4227096 +) +(1,15596:9133846,33508213:4227096,459977,115847 +k1,15596:9133846,33508213:3277 +h1,15596:13357665,33508213:0,411205,112570 +) +k1,15596:13595360,33508213:234418 +k1,15596:15115594,33508213:234418 +k1,15596:16111540,33508213:234418 +k1,15596:18527652,33508213:234418 +k1,15596:19532773,33508213:234418 +k1,15596:20181999,33508213:234383 +k1,15596:22672822,33508213:234418 +k1,15596:24288084,33508213:234418 +k1,15596:25805697,33508213:234418 +k1,15596:29214679,33508213:234418 +k1,15596:31931601,33508213:234418 +k1,15596:32583029,33508213:0 +) +(1,15597:6630773,34373293:25952256,513147,134348 +g1,15596:9525498,34373293 +(1,15596:9525498,34373293:0,452978,115847 +r1,15647:13752594,34373293:4227096,568825,115847 +k1,15596:9525498,34373293:-4227096 +) +(1,15596:9525498,34373293:4227096,452978,115847 +k1,15596:9525498,34373293:3277 +h1,15596:13749317,34373293:0,411205,112570 +) +g1,15596:13951823,34373293 +g1,15596:15342497,34373293 +g1,15596:16330124,34373293 +g1,15596:19502066,34373293 +g1,15596:20933372,34373293 +g1,15596:23411288,34373293 +h1,15596:24780335,34373293:0,0,0 +g1,15596:24979564,34373293 +g1,15596:25988163,34373293 +g1,15596:27685545,34373293 +h1,15596:28880922,34373293:0,0,0 +k1,15597:32583029,34373293:3321343 +g1,15597:32583029,34373293 +) +v1,15599:6630773,35058148:0,393216,0 +(1,15620:6630773,40854782:25952256,6189850,196608 +g1,15620:6630773,40854782 +g1,15620:6630773,40854782 +g1,15620:6434165,40854782 +(1,15620:6434165,40854782:0,6189850,196608 +r1,15647:32779637,40854782:26345472,6386458,196608 +k1,15620:6434165,40854782:-26345472 +) +(1,15620:6434165,40854782:26345472,6189850,196608 +[1,15620:6630773,40854782:25952256,5993242,0 +(1,15601:6630773,35292585:25952256,431045,112852 +(1,15600:6630773,35292585:0,0,0 +g1,15600:6630773,35292585 +g1,15600:6630773,35292585 +g1,15600:6303093,35292585 +(1,15600:6303093,35292585:0,0,0 +) +g1,15600:6630773,35292585 +) +g1,15601:8622497,35292585 +g1,15601:9618359,35292585 +g1,15601:15261576,35292585 +g1,15601:15925484,35292585 +g1,15601:18249162,35292585 +g1,15601:19908932,35292585 +g1,15601:21900656,35292585 +g1,15601:24556288,35292585 +g1,15601:25220196,35292585 +g1,15601:26879966,35292585 +g1,15601:29867551,35292585 +g1,15601:30531459,35292585 +h1,15601:32523183,35292585:0,0,0 +k1,15601:32583029,35292585:59846 +g1,15601:32583029,35292585 +) +(1,15602:6630773,35977440:25952256,431045,106246 +h1,15602:6630773,35977440:0,0,0 +k1,15602:6630773,35977440:0 +h1,15602:13269852,35977440:0,0,0 +k1,15602:32583028,35977440:19313176 +g1,15602:32583028,35977440 +) +(1,15606:6630773,36793367:25952256,424439,79822 +(1,15604:6630773,36793367:0,0,0 +g1,15604:6630773,36793367 +g1,15604:6630773,36793367 +g1,15604:6303093,36793367 +(1,15604:6303093,36793367:0,0,0 +) +g1,15604:6630773,36793367 +) +g1,15606:7626635,36793367 +g1,15606:8954451,36793367 +h1,15606:10282267,36793367:0,0,0 +k1,15606:32583029,36793367:22300762 +g1,15606:32583029,36793367 +) +(1,15608:6630773,37609294:25952256,431045,106246 +(1,15607:6630773,37609294:0,0,0 +g1,15607:6630773,37609294 +g1,15607:6630773,37609294 +g1,15607:6303093,37609294 +(1,15607:6303093,37609294:0,0,0 +) +g1,15607:6630773,37609294 +) +k1,15608:6630773,37609294:0 +h1,15608:11942036,37609294:0,0,0 +k1,15608:32583028,37609294:20640992 +g1,15608:32583028,37609294 +) +(1,15612:6630773,38425221:25952256,424439,79822 +(1,15610:6630773,38425221:0,0,0 +g1,15610:6630773,38425221 +g1,15610:6630773,38425221 +g1,15610:6303093,38425221 +(1,15610:6303093,38425221:0,0,0 +) +g1,15610:6630773,38425221 +) +g1,15612:7626635,38425221 +g1,15612:8954451,38425221 +h1,15612:10614221,38425221:0,0,0 +k1,15612:32583029,38425221:21968808 +g1,15612:32583029,38425221 +) +(1,15614:6630773,39241148:25952256,431045,106246 +(1,15613:6630773,39241148:0,0,0 +g1,15613:6630773,39241148 +g1,15613:6630773,39241148 +g1,15613:6303093,39241148 +(1,15613:6303093,39241148:0,0,0 +) +g1,15613:6630773,39241148 +) +k1,15614:6630773,39241148:0 +h1,15614:12937898,39241148:0,0,0 +k1,15614:32583030,39241148:19645132 +g1,15614:32583030,39241148 +) +(1,15619:6630773,40057075:25952256,431045,112852 +(1,15616:6630773,40057075:0,0,0 +g1,15616:6630773,40057075 +g1,15616:6630773,40057075 +g1,15616:6303093,40057075 +(1,15616:6303093,40057075:0,0,0 +) +g1,15616:6630773,40057075 +) +g1,15619:7626635,40057075 +g1,15619:11278128,40057075 +h1,15619:14929621,40057075:0,0,0 +k1,15619:32583029,40057075:17653408 +g1,15619:32583029,40057075 +) +(1,15619:6630773,40741930:25952256,424439,112852 +h1,15619:6630773,40741930:0,0,0 +g1,15619:7626635,40741930 +g1,15619:9950313,40741930 +g1,15619:13601806,40741930 +g1,15619:16589391,40741930 +g1,15619:19576977,40741930 +g1,15619:22896516,40741930 +h1,15619:25220194,40741930:0,0,0 +k1,15619:32583029,40741930:7362835 +g1,15619:32583029,40741930 +) +] +) +g1,15620:32583029,40854782 +g1,15620:6630773,40854782 +g1,15620:6630773,40854782 +g1,15620:32583029,40854782 +g1,15620:32583029,40854782 +) +h1,15620:6630773,41051390:0,0,0 +(1,15624:6630773,41916470:25952256,513147,126483 +h1,15623:6630773,41916470:983040,0,0 +k1,15623:10150111,41916470:216979 +k1,15623:11532320,41916470:216979 +k1,15623:12432184,41916470:216979 +k1,15623:15145428,41916470:216978 +k1,15623:16013835,41916470:216979 +k1,15623:16978580,41916470:216979 +k1,15623:18427636,41916470:216979 +k1,15623:20880703,41916470:216979 +k1,15623:22487045,41916470:216979 +k1,15623:26248865,41916470:216978 +k1,15623:28116041,41916470:216979 +k1,15623:31027860,41916470:216979 +k1,15624:32583029,41916470:0 +) +(1,15624:6630773,42781550:25952256,513147,115847 +(1,15623:6630773,42781550:0,452978,115847 +r1,15647:8747598,42781550:2116825,568825,115847 +k1,15623:6630773,42781550:-2116825 +) +(1,15623:6630773,42781550:2116825,452978,115847 +k1,15623:6630773,42781550:3277 +h1,15623:8744321,42781550:0,411205,112570 +) +g1,15623:8946827,42781550 +g1,15623:9677553,42781550 +g1,15623:12259671,42781550 +g1,15623:14026521,42781550 +g1,15623:15780919,42781550 +(1,15623:15780919,42781550:0,459977,115847 +r1,15647:19304591,42781550:3523672,575824,115847 +k1,15623:15780919,42781550:-3523672 +) +(1,15623:15780919,42781550:3523672,459977,115847 +k1,15623:15780919,42781550:3277 +h1,15623:19301314,42781550:0,411205,112570 +) +g1,15623:19677490,42781550 +g1,15623:22811421,42781550 +g1,15623:24400013,42781550 +g1,15623:26805839,42781550 +g1,15623:27996628,42781550 +g1,15623:29262128,42781550 +k1,15624:32583029,42781550:1005514 +g1,15624:32583029,42781550 +) +v1,15626:6630773,43466405:0,393216,0 +(1,15647:6630773,45274840:25952256,2201651,196608 +g1,15647:6630773,45274840 +g1,15647:6630773,45274840 +g1,15647:6434165,45274840 +(1,15647:6434165,45274840:0,2201651,196608 +r1,15647:32779637,45274840:26345472,2398259,196608 +k1,15647:6434165,45274840:-26345472 +) +(1,15647:6434165,45274840:26345472,2201651,196608 +[1,15647:6630773,45274840:25952256,2005043,0 +(1,15628:6630773,43694236:25952256,424439,112852 +(1,15627:6630773,43694236:0,0,0 +g1,15627:6630773,43694236 +g1,15627:6630773,43694236 +g1,15627:6303093,43694236 +(1,15627:6303093,43694236:0,0,0 +) +g1,15627:6630773,43694236 +) +g1,15628:8622497,43694236 +g1,15628:9618359,43694236 +g1,15628:13933761,43694236 +g1,15628:14597669,43694236 +g1,15628:16921347,43694236 +g1,15628:18581117,43694236 +g1,15628:20572841,43694236 +g1,15628:23228473,43694236 +g1,15628:23892381,43694236 +g1,15628:25552151,43694236 +g1,15628:28539736,43694236 +g1,15628:29203644,43694236 +h1,15628:31195368,43694236:0,0,0 +k1,15628:32583029,43694236:1387661 +g1,15628:32583029,43694236 +) +(1,15629:6630773,44379091:25952256,431045,106246 +h1,15629:6630773,44379091:0,0,0 +k1,15629:6630773,44379091:0 +h1,15629:13269852,44379091:0,0,0 +k1,15629:32583028,44379091:19313176 +g1,15629:32583028,44379091 +) +(1,15633:6630773,45195018:25952256,424439,79822 +(1,15631:6630773,45195018:0,0,0 +g1,15631:6630773,45195018 +g1,15631:6630773,45195018 +g1,15631:6303093,45195018 +(1,15631:6303093,45195018:0,0,0 +) +g1,15631:6630773,45195018 +) +g1,15633:7626635,45195018 +g1,15633:8954451,45195018 +h1,15633:10282267,45195018:0,0,0 +k1,15633:32583029,45195018:22300762 +g1,15633:32583029,45195018 +) +] +) +g1,15647:32583029,45274840 +g1,15647:6630773,45274840 +g1,15647:6630773,45274840 +g1,15647:32583029,45274840 +g1,15647:32583029,45274840 +) +] +(1,15647:32583029,45706769:0,0,0 +g1,15647:32583029,45706769 +) +) +] +(1,15647:6630773,47279633:25952256,0,0 +h1,15647:6630773,47279633:25952256,0,0 +) +] +(1,15647:4262630,4025873:0,0,0 +[1,15647:-473656,4025873:0,0,0 +(1,15647:-473656,-710413:0,0,0 +(1,15647:-473656,-710413:0,0,0 +g1,15647:-473656,-710413 +) +g1,15647:-473656,-710413 +) +] +) +] +!29577 +}253 Input:2299:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2300:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2301:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -270938,2875 +266366,4202 @@ Input:2302:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConso Input:2303:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2304:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2305:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2306:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2307:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2308:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2309:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2310:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2311:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2312:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2313:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1422 -{271 -[1,15903:4262630,47279633:28320399,43253760,0 -(1,15903:4262630,4025873:0,0,0 -[1,15903:-473656,4025873:0,0,0 -(1,15903:-473656,-710413:0,0,0 -(1,15903:-473656,-644877:0,0,0 -k1,15903:-473656,-644877:-65536 +!670 +{254 +[1,15744:4262630,47279633:28320399,43253760,0 +(1,15744:4262630,4025873:0,0,0 +[1,15744:-473656,4025873:0,0,0 +(1,15744:-473656,-710413:0,0,0 +(1,15744:-473656,-644877:0,0,0 +k1,15744:-473656,-644877:-65536 ) -(1,15903:-473656,4736287:0,0,0 -k1,15903:-473656,4736287:5209943 +(1,15744:-473656,4736287:0,0,0 +k1,15744:-473656,4736287:5209943 ) -g1,15903:-473656,-710413 +g1,15744:-473656,-710413 ) ] ) -[1,15903:6630773,47279633:25952256,43253760,0 -[1,15903:6630773,4812305:25952256,786432,0 -(1,15903:6630773,4812305:25952256,505283,134348 -(1,15903:6630773,4812305:25952256,505283,134348 -g1,15903:3078558,4812305 -[1,15903:3078558,4812305:0,0,0 -(1,15903:3078558,2439708:0,1703936,0 -k1,15903:1358238,2439708:-1720320 -(1,15243:1358238,2439708:1720320,1703936,0 -(1,15243:1358238,2439708:1179648,16384,0 -r1,15903:2537886,2439708:1179648,16384,0 +[1,15744:6630773,47279633:25952256,43253760,0 +[1,15744:6630773,4812305:25952256,786432,0 +(1,15744:6630773,4812305:25952256,538806,132808 +(1,15744:6630773,4812305:25952256,538806,132808 +g1,15744:3078558,4812305 +[1,15744:3078558,4812305:0,0,0 +(1,15744:3078558,2439708:0,1703936,0 +k1,15744:1358238,2439708:-1720320 +(1,15456:1358238,2439708:1720320,1703936,0 +(1,15456:1358238,2439708:1179648,16384,0 +r1,15744:2537886,2439708:1179648,16384,0 ) -g1,15243:3062174,2439708 -(1,15243:3062174,2439708:16384,1703936,0 -[1,15243:3062174,2439708:25952256,1703936,0 -(1,15243:3062174,1915420:25952256,1179648,0 -(1,15243:3062174,1915420:16384,1179648,0 -r1,15903:3078558,1915420:16384,1179648,0 +g1,15456:3062174,2439708 +(1,15456:3062174,2439708:16384,1703936,0 +[1,15456:3062174,2439708:25952256,1703936,0 +(1,15456:3062174,1915420:25952256,1179648,0 +(1,15456:3062174,1915420:16384,1179648,0 +r1,15744:3078558,1915420:16384,1179648,0 ) -k1,15243:29014430,1915420:25935872 -g1,15243:29014430,1915420 +k1,15456:29014430,1915420:25935872 +g1,15456:29014430,1915420 ) ] ) ) ) ] -[1,15903:3078558,4812305:0,0,0 -(1,15903:3078558,2439708:0,1703936,0 -g1,15903:29030814,2439708 -g1,15903:36135244,2439708 -(1,15243:36135244,2439708:1720320,1703936,0 -(1,15243:36135244,2439708:16384,1703936,0 -[1,15243:36135244,2439708:25952256,1703936,0 -(1,15243:36135244,1915420:25952256,1179648,0 -(1,15243:36135244,1915420:16384,1179648,0 -r1,15903:36151628,1915420:16384,1179648,0 +[1,15744:3078558,4812305:0,0,0 +(1,15744:3078558,2439708:0,1703936,0 +g1,15744:29030814,2439708 +g1,15744:36135244,2439708 +(1,15456:36135244,2439708:1720320,1703936,0 +(1,15456:36135244,2439708:16384,1703936,0 +[1,15456:36135244,2439708:25952256,1703936,0 +(1,15456:36135244,1915420:25952256,1179648,0 +(1,15456:36135244,1915420:16384,1179648,0 +r1,15744:36151628,1915420:16384,1179648,0 ) -k1,15243:62087500,1915420:25935872 -g1,15243:62087500,1915420 +k1,15456:62087500,1915420:25935872 +g1,15456:62087500,1915420 ) ] ) -g1,15243:36675916,2439708 -(1,15243:36675916,2439708:1179648,16384,0 -r1,15903:37855564,2439708:1179648,16384,0 +g1,15456:36675916,2439708 +(1,15456:36675916,2439708:1179648,16384,0 +r1,15744:37855564,2439708:1179648,16384,0 ) ) -k1,15903:3078556,2439708:-34777008 +k1,15744:3078556,2439708:-34777008 ) ] -[1,15903:3078558,4812305:0,0,0 -(1,15903:3078558,49800853:0,16384,2228224 -k1,15903:1358238,49800853:-1720320 -(1,15243:1358238,49800853:1720320,16384,2228224 -(1,15243:1358238,49800853:1179648,16384,0 -r1,15903:2537886,49800853:1179648,16384,0 +[1,15744:3078558,4812305:0,0,0 +(1,15744:3078558,49800853:0,16384,2228224 +k1,15744:1358238,49800853:-1720320 +(1,15456:1358238,49800853:1720320,16384,2228224 +(1,15456:1358238,49800853:1179648,16384,0 +r1,15744:2537886,49800853:1179648,16384,0 ) -g1,15243:3062174,49800853 -(1,15243:3062174,52029077:16384,1703936,0 -[1,15243:3062174,52029077:25952256,1703936,0 -(1,15243:3062174,51504789:25952256,1179648,0 -(1,15243:3062174,51504789:16384,1179648,0 -r1,15903:3078558,51504789:16384,1179648,0 +g1,15456:3062174,49800853 +(1,15456:3062174,52029077:16384,1703936,0 +[1,15456:3062174,52029077:25952256,1703936,0 +(1,15456:3062174,51504789:25952256,1179648,0 +(1,15456:3062174,51504789:16384,1179648,0 +r1,15744:3078558,51504789:16384,1179648,0 ) -k1,15243:29014430,51504789:25935872 -g1,15243:29014430,51504789 +k1,15456:29014430,51504789:25935872 +g1,15456:29014430,51504789 ) ] ) ) ) ] -[1,15903:3078558,4812305:0,0,0 -(1,15903:3078558,49800853:0,16384,2228224 -g1,15903:29030814,49800853 -g1,15903:36135244,49800853 -(1,15243:36135244,49800853:1720320,16384,2228224 -(1,15243:36135244,52029077:16384,1703936,0 -[1,15243:36135244,52029077:25952256,1703936,0 -(1,15243:36135244,51504789:25952256,1179648,0 -(1,15243:36135244,51504789:16384,1179648,0 -r1,15903:36151628,51504789:16384,1179648,0 +[1,15744:3078558,4812305:0,0,0 +(1,15744:3078558,49800853:0,16384,2228224 +g1,15744:29030814,49800853 +g1,15744:36135244,49800853 +(1,15456:36135244,49800853:1720320,16384,2228224 +(1,15456:36135244,52029077:16384,1703936,0 +[1,15456:36135244,52029077:25952256,1703936,0 +(1,15456:36135244,51504789:25952256,1179648,0 +(1,15456:36135244,51504789:16384,1179648,0 +r1,15744:36151628,51504789:16384,1179648,0 ) -k1,15243:62087500,51504789:25935872 -g1,15243:62087500,51504789 +k1,15456:62087500,51504789:25935872 +g1,15456:62087500,51504789 ) ] ) -g1,15243:36675916,49800853 -(1,15243:36675916,49800853:1179648,16384,0 -r1,15903:37855564,49800853:1179648,16384,0 +g1,15456:36675916,49800853 +(1,15456:36675916,49800853:1179648,16384,0 +r1,15744:37855564,49800853:1179648,16384,0 ) ) -k1,15903:3078556,49800853:-34777008 +k1,15744:3078556,49800853:-34777008 ) ] -g1,15903:6630773,4812305 -k1,15903:23311652,4812305:15485502 -g1,15903:23960458,4812305 -g1,15903:27572802,4812305 -g1,15903:29306229,4812305 +g1,15744:6630773,4812305 +g1,15744:6630773,4812305 +g1,15744:11156689,4812305 +g1,15744:12279976,4812305 +g1,15744:16628629,4812305 +k1,15744:31387652,4812305:14759023 ) ) ] -[1,15903:6630773,45706769:25952256,40108032,0 -(1,15903:6630773,45706769:25952256,40108032,0 -(1,15903:6630773,45706769:0,0,0 -g1,15903:6630773,45706769 +[1,15744:6630773,45706769:25952256,40108032,0 +(1,15744:6630773,45706769:25952256,40108032,0 +(1,15744:6630773,45706769:0,0,0 +g1,15744:6630773,45706769 ) -[1,15903:6630773,45706769:25952256,40108032,0 -(1,15804:6630773,6254097:25952256,513147,134348 -h1,15803:6630773,6254097:983040,0,0 -k1,15803:10751960,6254097:203445 -k1,15803:11641566,6254097:203444 -k1,15803:14591625,6254097:203445 -(1,15803:14591625,6254097:0,435480,115847 -r1,15903:15653314,6254097:1061689,551327,115847 -k1,15803:14591625,6254097:-1061689 +[1,15744:6630773,45706769:25952256,40108032,0 +v1,15647:6630773,6254097:0,393216,0 +(1,15647:6630773,9727416:25952256,3866535,196608 +g1,15647:6630773,9727416 +g1,15647:6630773,9727416 +g1,15647:6434165,9727416 +(1,15647:6434165,9727416:0,3866535,196608 +r1,15744:32779637,9727416:26345472,4063143,196608 +k1,15647:6434165,9727416:-26345472 ) -(1,15803:14591625,6254097:1061689,435480,115847 -k1,15803:14591625,6254097:3277 -h1,15803:15650037,6254097:0,411205,112570 -) -k1,15803:15856759,6254097:203445 -k1,15803:17627825,6254097:203445 -k1,15803:20776456,6254097:203444 -k1,15803:24401536,6254097:203445 -k1,15803:25624066,6254097:203445 -(1,15803:25624066,6254097:0,414482,115847 -r1,15903:25982332,6254097:358266,530329,115847 -k1,15803:25624066,6254097:-358266 -) -(1,15803:25624066,6254097:358266,414482,115847 -k1,15803:25624066,6254097:3277 -h1,15803:25979055,6254097:0,411205,112570 -) -k1,15803:26185776,6254097:203444 -k1,15803:30122807,6254097:203445 -k1,15803:32583029,6254097:0 -) -(1,15804:6630773,7095585:25952256,513147,134348 -k1,15803:9883059,7095585:218624 -k1,15803:10890081,7095585:218624 -k1,15803:12374861,7095585:218624 -k1,15803:13612570,7095585:218624 -k1,15803:15327381,7095585:218624 -k1,15803:17414436,7095585:218624 -k1,15803:19551954,7095585:218624 -(1,15803:19551954,7095585:0,435480,115847 -r1,15903:20965355,7095585:1413401,551327,115847 -k1,15803:19551954,7095585:-1413401 -) -(1,15803:19551954,7095585:1413401,435480,115847 -k1,15803:19551954,7095585:3277 -h1,15803:20962078,7095585:0,411205,112570 -) -k1,15803:21183978,7095585:218623 -k1,15803:21934099,7095585:218624 -k1,15803:24871812,7095585:218624 -k1,15803:25851964,7095585:218624 -(1,15803:25851964,7095585:0,435480,115847 -r1,15903:26913653,7095585:1061689,551327,115847 -k1,15803:25851964,7095585:-1061689 -) -(1,15803:25851964,7095585:1061689,435480,115847 -k1,15803:25851964,7095585:3277 -h1,15803:26910376,7095585:0,411205,112570 -) -k1,15803:27132277,7095585:218624 -k1,15803:29691847,7095585:218624 -k1,15803:30929556,7095585:218624 -k1,15803:32583029,7095585:0 -) -(1,15804:6630773,7937073:25952256,505283,7863 -g1,15803:8510345,7937073 -g1,15803:9395736,7937073 -g1,15803:10879471,7937073 -k1,15804:32583030,7937073:19674564 -g1,15804:32583030,7937073 -) -v1,15806:6630773,9014955:0,393216,0 -(1,15814:6630773,10630950:25952256,2009211,196608 -g1,15814:6630773,10630950 -g1,15814:6630773,10630950 -g1,15814:6434165,10630950 -(1,15814:6434165,10630950:0,2009211,196608 -r1,15903:32779637,10630950:26345472,2205819,196608 -k1,15814:6434165,10630950:-26345472 -) -(1,15814:6434165,10630950:26345472,2009211,196608 -[1,15814:6630773,10630950:25952256,1812603,0 -(1,15808:6630773,9222573:25952256,404226,101187 -(1,15807:6630773,9222573:0,0,0 -g1,15807:6630773,9222573 -g1,15807:6630773,9222573 -g1,15807:6303093,9222573 -(1,15807:6303093,9222573:0,0,0 -) -g1,15807:6630773,9222573 -) -g1,15808:9159939,9222573 -g1,15808:10424522,9222573 -g1,15808:12953688,9222573 -g1,15808:14218271,9222573 -g1,15808:16431291,9222573 -g1,15808:17379729,9222573 -h1,15808:20225040,9222573:0,0,0 -k1,15808:32583029,9222573:12357989 -g1,15808:32583029,9222573 -) -(1,15809:6630773,9888751:25952256,404226,101187 -h1,15809:6630773,9888751:0,0,0 -g1,15809:13269833,9888751 -h1,15809:16431290,9888751:0,0,0 -k1,15809:32583029,9888751:16151739 -g1,15809:32583029,9888751 -) -(1,15813:6630773,10554929:25952256,404226,76021 -(1,15811:6630773,10554929:0,0,0 -g1,15811:6630773,10554929 -g1,15811:6630773,10554929 -g1,15811:6303093,10554929 -(1,15811:6303093,10554929:0,0,0 -) -g1,15811:6630773,10554929 -) -g1,15813:7579210,10554929 -g1,15813:8843793,10554929 -h1,15813:10108376,10554929:0,0,0 -k1,15813:32583028,10554929:22474652 -g1,15813:32583028,10554929 -) -] -) -g1,15814:32583029,10630950 -g1,15814:6630773,10630950 -g1,15814:6630773,10630950 -g1,15814:32583029,10630950 -g1,15814:32583029,10630950 -) -h1,15814:6630773,10827558:0,0,0 -v1,15818:6630773,12492454:0,393216,0 -(1,15846:6630773,22466735:25952256,10367497,0 -g1,15846:6630773,22466735 -g1,15846:6303093,22466735 -r1,15903:6401397,22466735:98304,10367497,0 -g1,15846:6600626,22466735 -g1,15846:6797234,22466735 -[1,15846:6797234,22466735:25785795,10367497,0 -(1,15819:6797234,12887557:25785795,788319,218313 -(1,15818:6797234,12887557:0,788319,218313 -r1,15903:7917113,12887557:1119879,1006632,218313 -k1,15818:6797234,12887557:-1119879 -) -(1,15818:6797234,12887557:1119879,788319,218313 -) -k1,15818:8109919,12887557:192806 -k1,15818:8437599,12887557:327680 -k1,15818:9459436,12887557:192807 -k1,15818:10744727,12887557:192806 -k1,15818:13684148,12887557:192807 -(1,15818:13684148,12887557:0,452978,115847 -r1,15903:14394126,12887557:709978,568825,115847 -k1,15818:13684148,12887557:-709978 -) -(1,15818:13684148,12887557:709978,452978,115847 -k1,15818:13684148,12887557:3277 -h1,15818:14390849,12887557:0,411205,112570 -) -k1,15818:14586932,12887557:192806 -k1,15818:16347360,12887557:192807 -k1,15818:17128679,12887557:192806 -k1,15818:18189837,12887557:192806 -k1,15818:19912910,12887557:192807 -k1,15818:20757144,12887557:192806 -k1,15818:22176130,12887557:192807 -k1,15818:23388021,12887557:192806 -k1,15818:25077015,12887557:192807 -k1,15818:27005214,12887557:192806 -(1,15818:27212308,12887557:0,414482,115847 -r1,15903:27570574,12887557:358266,530329,115847 -k1,15818:27212308,12887557:-358266 -) -(1,15818:27212308,12887557:358266,414482,115847 -k1,15818:27212308,12887557:3277 -h1,15818:27567297,12887557:0,411205,112570 -) -k1,15818:27970475,12887557:192807 -k1,15818:28849443,12887557:192806 -k1,15818:32583029,12887557:0 -) -(1,15819:6797234,13729045:25785795,513147,134348 -k1,15818:8149723,13729045:161044 -k1,15818:10738220,13729045:161043 -k1,15818:11357361,13729045:161044 -k1,15818:12204566,13729045:161043 -k1,15818:15437938,13729045:161044 -k1,15818:16250410,13729045:161044 -k1,15818:20022487,13729045:161043 -k1,15818:20945059,13729045:161044 -k1,15818:22844117,13729045:161043 -k1,15818:23621199,13729045:161044 -k1,15818:24801328,13729045:161044 -k1,15818:27657867,13729045:161043 -k1,15818:29248907,13729045:161044 -k1,15818:30219320,13729045:161043 -k1,15818:31399449,13729045:161044 -k1,15819:32583029,13729045:0 -k1,15819:32583029,13729045:0 -) -v1,15821:6797234,14919511:0,393216,0 -(1,15829:6797234,16535506:25785795,2009211,196608 -g1,15829:6797234,16535506 -g1,15829:6797234,16535506 -g1,15829:6600626,16535506 -(1,15829:6600626,16535506:0,2009211,196608 -r1,15903:32779637,16535506:26179011,2205819,196608 -k1,15829:6600625,16535506:-26179012 -) -(1,15829:6600626,16535506:26179011,2009211,196608 -[1,15829:6797234,16535506:25785795,1812603,0 -(1,15823:6797234,15127129:25785795,404226,101187 -(1,15822:6797234,15127129:0,0,0 -g1,15822:6797234,15127129 -g1,15822:6797234,15127129 -g1,15822:6469554,15127129 -(1,15822:6469554,15127129:0,0,0 -) -g1,15822:6797234,15127129 -) -g1,15823:9326400,15127129 -g1,15823:10274838,15127129 -g1,15823:12487859,15127129 -g1,15823:13120151,15127129 -g1,15823:14068588,15127129 -g1,15823:15017026,15127129 -g1,15823:16913901,15127129 -g1,15823:17546193,15127129 -g1,15823:18494630,15127129 -g1,15823:19443068,15127129 -h1,15823:22288379,15127129:0,0,0 -k1,15823:32583029,15127129:10294650 -g1,15823:32583029,15127129 -) -(1,15824:6797234,15793307:25785795,404226,101187 -h1,15824:6797234,15793307:0,0,0 -g1,15824:13436294,15793307 -h1,15824:16597751,15793307:0,0,0 -k1,15824:32583029,15793307:15985278 -g1,15824:32583029,15793307 -) -(1,15828:6797234,16459485:25785795,404226,76021 -(1,15826:6797234,16459485:0,0,0 -g1,15826:6797234,16459485 -g1,15826:6797234,16459485 -g1,15826:6469554,16459485 -(1,15826:6469554,16459485:0,0,0 -) -g1,15826:6797234,16459485 -) -g1,15828:7745671,16459485 -g1,15828:9010254,16459485 -h1,15828:10274837,16459485:0,0,0 -k1,15828:32583029,16459485:22308192 -g1,15828:32583029,16459485 -) -] -) -g1,15829:32583029,16535506 -g1,15829:6797234,16535506 -g1,15829:6797234,16535506 -g1,15829:32583029,16535506 -g1,15829:32583029,16535506 -) -h1,15829:6797234,16732114:0,0,0 -(1,15833:6797234,18097890:25785795,505283,134348 -h1,15832:6797234,18097890:983040,0,0 -k1,15832:8999345,18097890:265522 -k1,15832:10542818,18097890:265521 -k1,15832:11424378,18097890:265522 -k1,15832:12893140,18097890:265521 -k1,15832:14699413,18097890:265522 -k1,15832:17103375,18097890:265522 -k1,15832:18461381,18097890:265521 -k1,15832:19536273,18097890:265522 -k1,15832:23709051,18097890:265522 -k1,15832:25166017,18097890:265521 -k1,15832:26868744,18097890:265522 -k1,15832:28153350,18097890:265521 -k1,15832:31821501,18097890:265522 -k1,15832:32583029,18097890:0 -) -(1,15833:6797234,18939378:25785795,513147,126483 -g1,15832:9610694,18939378 -g1,15832:10461351,18939378 -g1,15832:11679665,18939378 -g1,15832:13185027,18939378 -g1,15832:16664988,18939378 -g1,15832:17523509,18939378 -g1,15832:18741823,18939378 -k1,15833:32583029,18939378:10641738 -g1,15833:32583029,18939378 -) -v1,15835:6797234,20129844:0,393216,0 -(1,15843:6797234,21745839:25785795,2009211,196608 -g1,15843:6797234,21745839 -g1,15843:6797234,21745839 -g1,15843:6600626,21745839 -(1,15843:6600626,21745839:0,2009211,196608 -r1,15903:32779637,21745839:26179011,2205819,196608 -k1,15843:6600625,21745839:-26179012 -) -(1,15843:6600626,21745839:26179011,2009211,196608 -[1,15843:6797234,21745839:25785795,1812603,0 -(1,15837:6797234,20337462:25785795,404226,101187 -(1,15836:6797234,20337462:0,0,0 -g1,15836:6797234,20337462 -g1,15836:6797234,20337462 -g1,15836:6469554,20337462 -(1,15836:6469554,20337462:0,0,0 -) -g1,15836:6797234,20337462 -) -g1,15837:9326400,20337462 -g1,15837:10274838,20337462 -g1,15837:12487858,20337462 -g1,15837:13436296,20337462 -g1,15837:15333170,20337462 -g1,15837:16281608,20337462 -h1,15837:19126919,20337462:0,0,0 -k1,15837:32583029,20337462:13456110 -g1,15837:32583029,20337462 -) -(1,15838:6797234,21003640:25785795,404226,101187 -h1,15838:6797234,21003640:0,0,0 -g1,15838:13436294,21003640 -h1,15838:16597751,21003640:0,0,0 -k1,15838:32583029,21003640:15985278 -g1,15838:32583029,21003640 -) -(1,15842:6797234,21669818:25785795,404226,76021 -(1,15840:6797234,21669818:0,0,0 -g1,15840:6797234,21669818 -g1,15840:6797234,21669818 -g1,15840:6469554,21669818 -(1,15840:6469554,21669818:0,0,0 -) -g1,15840:6797234,21669818 -) -g1,15842:7745671,21669818 -g1,15842:9010254,21669818 -h1,15842:10274837,21669818:0,0,0 -k1,15842:32583029,21669818:22308192 -g1,15842:32583029,21669818 -) -] -) -g1,15843:32583029,21745839 -g1,15843:6797234,21745839 -g1,15843:6797234,21745839 -g1,15843:32583029,21745839 -g1,15843:32583029,21745839 -) -h1,15843:6797234,21942447:0,0,0 -] -g1,15846:32583029,22466735 -) -h1,15846:6630773,22466735:0,0,0 -(1,15849:6630773,23719928:25952256,513147,126483 -h1,15848:6630773,23719928:983040,0,0 -k1,15848:9039657,23719928:229157 -k1,15848:9039657,23719928:0 -k1,15848:11943994,23719928:229157 -k1,15848:14919765,23719928:229157 -(1,15848:14919765,23719928:0,435480,115847 -r1,15903:16333166,23719928:1413401,551327,115847 -k1,15848:14919765,23719928:-1413401 -) -(1,15848:14919765,23719928:1413401,435480,115847 -k1,15848:14919765,23719928:3277 -h1,15848:16329889,23719928:0,411205,112570 -) -k1,15848:16562322,23719928:229156 -k1,15848:18359100,23719928:229157 -k1,15848:20750944,23719928:229157 -k1,15848:22992056,23719928:229157 -k1,15848:23966357,23719928:229157 -k1,15848:24846942,23719928:229157 -k1,15848:26168583,23719928:229156 -k1,15848:27416825,23719928:229157 -k1,15848:31379568,23719928:229157 -(1,15848:31379568,23719928:0,414482,115847 -r1,15903:31737834,23719928:358266,530329,115847 -k1,15848:31379568,23719928:-358266 -) -(1,15848:31379568,23719928:358266,414482,115847 -k1,15848:31379568,23719928:3277 -h1,15848:31734557,23719928:0,411205,112570 -) -k1,15848:31966991,23719928:229157 -k1,15848:32583029,23719928:0 -) -(1,15849:6630773,24561416:25952256,513147,126483 -g1,15848:10600288,24561416 -g1,15848:11608887,24561416 -g1,15848:12827201,24561416 -g1,15848:14059278,24561416 -g1,15848:14917799,24561416 -g1,15848:18193943,24561416 -g1,15848:19009210,24561416 -g1,15848:21874444,24561416 -g1,15848:22725101,24561416 -g1,15848:23540368,24561416 -g1,15848:26435093,24561416 -k1,15849:32583029,24561416:4544270 -g1,15849:32583029,24561416 -) -v1,15851:6630773,25639298:0,393216,0 -(1,15855:6630773,25922937:25952256,676855,196608 -g1,15855:6630773,25922937 -g1,15855:6630773,25922937 -g1,15855:6434165,25922937 -(1,15855:6434165,25922937:0,676855,196608 -r1,15903:32779637,25922937:26345472,873463,196608 -k1,15855:6434165,25922937:-26345472 -) -(1,15855:6434165,25922937:26345472,676855,196608 -[1,15855:6630773,25922937:25952256,480247,0 -(1,15853:6630773,25846916:25952256,404226,76021 -(1,15852:6630773,25846916:0,0,0 -g1,15852:6630773,25846916 -g1,15852:6630773,25846916 -g1,15852:6303093,25846916 -(1,15852:6303093,25846916:0,0,0 -) -g1,15852:6630773,25846916 -) -g1,15853:9159939,25846916 -g1,15853:10740667,25846916 -g1,15853:12637542,25846916 -g1,15853:13585980,25846916 -h1,15853:16431291,25846916:0,0,0 -k1,15853:32583029,25846916:16151738 -g1,15853:32583029,25846916 -) -] -) -g1,15855:32583029,25922937 -g1,15855:6630773,25922937 -g1,15855:6630773,25922937 -g1,15855:32583029,25922937 -g1,15855:32583029,25922937 -) -h1,15855:6630773,26119545:0,0,0 -(1,15859:6630773,27372737:25952256,513147,126483 -h1,15858:6630773,27372737:983040,0,0 -k1,15858:8406124,27372737:164476 -k1,15858:11375541,27372737:164476 -k1,15858:14616932,27372737:164476 -(1,15858:14616932,27372737:0,452978,115847 -r1,15903:15326910,27372737:709978,568825,115847 -k1,15858:14616932,27372737:-709978 -) -(1,15858:14616932,27372737:709978,452978,115847 -k1,15858:14616932,27372737:3277 -h1,15858:15323633,27372737:0,411205,112570 -) -k1,15858:15491386,27372737:164476 -k1,15858:16847307,27372737:164476 -(1,15858:16847307,27372737:0,435480,115847 -r1,15903:17908996,27372737:1061689,551327,115847 -k1,15858:16847307,27372737:-1061689 -) -(1,15858:16847307,27372737:1061689,435480,115847 -k1,15858:16847307,27372737:3277 -h1,15858:17905719,27372737:0,411205,112570 -) -k1,15858:18073472,27372737:164476 -k1,15858:19053217,27372737:164477 -k1,15858:20283964,27372737:164476 -k1,15858:22974853,27372737:164476 -k1,15858:27083286,27372737:164476 -k1,15858:28623363,27372737:164476 -k1,15858:31483335,27372737:164476 -k1,15858:32583029,27372737:0 -) -(1,15859:6630773,28214225:25952256,513147,134348 -k1,15858:8867567,28214225:152749 -k1,15858:9829686,28214225:152749 -k1,15858:11491074,28214225:152749 -k1,15858:12827404,28214225:152750 -k1,15858:15251631,28214225:152749 -k1,15858:16149524,28214225:152749 -k1,15858:16953701,28214225:152749 -k1,15858:18206144,28214225:152749 -k1,15858:21435808,28214225:152749 -k1,15858:22982509,28214225:152750 -k1,15858:26843285,28214225:152749 -k1,15858:29080079,28214225:152749 -k1,15858:30424273,28214225:152749 -k1,15858:32583029,28214225:0 -) -(1,15859:6630773,29055713:25952256,426639,134348 -k1,15859:32583030,29055713:22549628 -g1,15859:32583030,29055713 -) -v1,15861:6630773,30133595:0,393216,0 -(1,15869:6630773,31755882:25952256,2015503,196608 -g1,15869:6630773,31755882 -g1,15869:6630773,31755882 -g1,15869:6434165,31755882 -(1,15869:6434165,31755882:0,2015503,196608 -r1,15903:32779637,31755882:26345472,2212111,196608 -k1,15869:6434165,31755882:-26345472 -) -(1,15869:6434165,31755882:26345472,2015503,196608 -[1,15869:6630773,31755882:25952256,1818895,0 -(1,15863:6630773,30347505:25952256,410518,82312 -(1,15862:6630773,30347505:0,0,0 -g1,15862:6630773,30347505 -g1,15862:6630773,30347505 -g1,15862:6303093,30347505 -(1,15862:6303093,30347505:0,0,0 -) -g1,15862:6630773,30347505 -) -g1,15863:9159939,30347505 -g1,15863:10108377,30347505 -g1,15863:12321398,30347505 -g1,15863:12953690,30347505 -g1,15863:13902128,30347505 -g1,15863:14850565,30347505 -g1,15863:15482857,30347505 -g1,15863:16431295,30347505 -g1,15863:17379733,30347505 -h1,15863:20225044,30347505:0,0,0 -k1,15863:32583029,30347505:12357985 -g1,15863:32583029,30347505 -) -(1,15864:6630773,31013683:25952256,404226,101187 -h1,15864:6630773,31013683:0,0,0 -g1,15864:13269833,31013683 -h1,15864:16431290,31013683:0,0,0 -k1,15864:32583029,31013683:16151739 -g1,15864:32583029,31013683 -) -(1,15868:6630773,31679861:25952256,404226,76021 -(1,15866:6630773,31679861:0,0,0 -g1,15866:6630773,31679861 -g1,15866:6630773,31679861 -g1,15866:6303093,31679861 -(1,15866:6303093,31679861:0,0,0 -) -g1,15866:6630773,31679861 -) -g1,15868:7579210,31679861 -g1,15868:8843793,31679861 -h1,15868:10108376,31679861:0,0,0 -k1,15868:32583028,31679861:22474652 -g1,15868:32583028,31679861 -) -] -) -g1,15869:32583029,31755882 -g1,15869:6630773,31755882 -g1,15869:6630773,31755882 -g1,15869:32583029,31755882 -g1,15869:32583029,31755882 -) -h1,15869:6630773,31952490:0,0,0 -(1,15873:6630773,33205682:25952256,355205,7863 -h1,15872:6630773,33205682:983040,0,0 -k1,15873:32583030,33205682:24286332 -g1,15873:32583030,33205682 -) -v1,15875:6630773,34283564:0,393216,0 -(1,15883:6630773,35905851:25952256,2015503,196608 -g1,15883:6630773,35905851 -g1,15883:6630773,35905851 -g1,15883:6434165,35905851 -(1,15883:6434165,35905851:0,2015503,196608 -r1,15903:32779637,35905851:26345472,2212111,196608 -k1,15883:6434165,35905851:-26345472 -) -(1,15883:6434165,35905851:26345472,2015503,196608 -[1,15883:6630773,35905851:25952256,1818895,0 -(1,15877:6630773,34497474:25952256,410518,82312 -(1,15876:6630773,34497474:0,0,0 -g1,15876:6630773,34497474 -g1,15876:6630773,34497474 -g1,15876:6303093,34497474 -(1,15876:6303093,34497474:0,0,0 -) -g1,15876:6630773,34497474 -) -g1,15877:9159939,34497474 -g1,15877:10424522,34497474 -g1,15877:12637543,34497474 -g1,15877:13269835,34497474 -g1,15877:14218273,34497474 -g1,15877:15166710,34497474 -g1,15877:15799002,34497474 -g1,15877:16747440,34497474 -g1,15877:17695878,34497474 -h1,15877:20541189,34497474:0,0,0 -k1,15877:32583029,34497474:12041840 -g1,15877:32583029,34497474 -) -(1,15878:6630773,35163652:25952256,404226,101187 -h1,15878:6630773,35163652:0,0,0 -g1,15878:13269833,35163652 -h1,15878:16431290,35163652:0,0,0 -k1,15878:32583029,35163652:16151739 -g1,15878:32583029,35163652 -) -(1,15882:6630773,35829830:25952256,404226,76021 -(1,15880:6630773,35829830:0,0,0 -g1,15880:6630773,35829830 -g1,15880:6630773,35829830 -g1,15880:6303093,35829830 -(1,15880:6303093,35829830:0,0,0 -) -g1,15880:6630773,35829830 -) -g1,15882:7579210,35829830 -g1,15882:8843793,35829830 -h1,15882:10108376,35829830:0,0,0 -k1,15882:32583028,35829830:22474652 -g1,15882:32583028,35829830 -) -] -) -g1,15883:32583029,35905851 -g1,15883:6630773,35905851 -g1,15883:6630773,35905851 -g1,15883:32583029,35905851 -g1,15883:32583029,35905851 -) -h1,15883:6630773,36102459:0,0,0 -(1,15887:6630773,37355652:25952256,513147,134348 -h1,15886:6630773,37355652:983040,0,0 -k1,15886:8487710,37355652:246062 -k1,15886:12344806,37355652:246062 -k1,15886:13005664,37355652:246015 -k1,15886:15335771,37355652:246062 -k1,15886:16529484,37355652:246062 -k1,15886:20545832,37355652:246062 -k1,15886:21323391,37355652:246062 -k1,15886:24717147,37355652:246062 -k1,15886:26661247,37355652:246062 -k1,15886:28642702,37355652:246062 -k1,15886:29907849,37355652:246062 -k1,15886:32583029,37355652:0 -) -(1,15887:6630773,38197140:25952256,513147,134348 -k1,15886:9575033,38197140:197646 -k1,15886:11340299,38197140:197645 -k1,15886:13874302,38197140:197646 -k1,15886:15465899,38197140:197646 -k1,15886:16682629,38197140:197645 -k1,15886:18255876,38197140:197646 -k1,15886:20460234,38197140:197646 -k1,15886:21942385,38197140:197645 -k1,15886:24669721,38197140:197646 -k1,15886:25526659,38197140:197646 -k1,15886:26743389,38197140:197645 -k1,15886:28981826,38197140:197646 -k1,15886:32583029,38197140:0 -) -(1,15887:6630773,39038628:25952256,513147,134348 -k1,15886:7465173,39038628:175108 -k1,15886:8659366,39038628:175108 -(1,15886:8659366,39038628:0,435480,115847 -r1,15903:10072767,39038628:1413401,551327,115847 -k1,15886:8659366,39038628:-1413401 -) -(1,15886:8659366,39038628:1413401,435480,115847 -k1,15886:8659366,39038628:3277 -h1,15886:10069490,39038628:0,411205,112570 -) -k1,15886:10247874,39038628:175107 -k1,15886:13343266,39038628:175108 -k1,15886:14386726,39038628:175108 -k1,15886:16092100,39038628:175108 -k1,15886:16918636,39038628:175108 -k1,15886:19992401,39038628:175108 -k1,15886:21559493,39038628:175107 -k1,15886:25504887,39038628:175108 -k1,15886:29041992,39038628:175108 -k1,15886:30919070,39038628:175108 -k1,15887:32583029,39038628:0 -) -(1,15887:6630773,39880116:25952256,505283,134348 -k1,15886:8410126,39880116:153405 -k1,15886:9325058,39880116:153404 -k1,15886:12494430,39880116:153405 -k1,15886:14286890,39880116:153405 -k1,15886:15056332,39880116:153404 -k1,15886:19237580,39880116:153405 -k1,15886:20018820,39880116:153405 -k1,15886:21191310,39880116:153405 -k1,15886:24336433,39880116:153404 -k1,15886:26345162,39880116:153405 -k1,15886:27366919,39880116:153405 -k1,15886:29949087,39880116:153404 -k1,15886:30458352,39880116:153405 -k1,15886:32583029,39880116:0 -) -(1,15887:6630773,40721604:25952256,513147,126483 -k1,15886:10309043,40721604:238285 -k1,15886:11272156,40721604:238285 -k1,15886:12794947,40721604:238285 -k1,15886:13491330,40721604:238286 -k1,15886:15498432,40721604:238285 -k1,15886:16484483,40721604:238285 -k1,15886:18523697,40721604:238285 -k1,15886:21922783,40721604:238285 -k1,15886:23428534,40721604:238285 -k1,15886:24022679,40721604:238285 -k1,15886:26956461,40721604:238286 -k1,15886:28468111,40721604:238285 -k1,15886:29903083,40721604:238285 -(1,15886:29903083,40721604:0,435480,115847 -r1,15903:31316484,40721604:1413401,551327,115847 -k1,15886:29903083,40721604:-1413401 -) -(1,15886:29903083,40721604:1413401,435480,115847 -k1,15886:29903083,40721604:3277 -h1,15886:31313207,40721604:0,411205,112570 -) -k1,15886:31554769,40721604:238285 -k1,15887:32583029,40721604:0 -) -(1,15887:6630773,41563092:25952256,513147,126483 -k1,15886:8831651,41563092:269532 -k1,15886:11957896,41563092:269531 -k1,15886:13513244,41563092:269532 -k1,15886:15432972,41563092:269531 -k1,15886:18388825,41563092:269532 -k1,15886:22602313,41563092:269531 -k1,15886:24338541,41563092:269532 -k1,15886:26002023,41563092:269531 -k1,15886:28942802,41563092:269532 -k1,15886:30635120,41563092:269531 -k1,15886:31563944,41563092:269532 -k1,15886:32583029,41563092:0 -) -(1,15887:6630773,42404580:25952256,505283,126483 -k1,15887:32583029,42404580:22045000 -g1,15887:32583029,42404580 -) -v1,15889:6630773,43482462:0,393216,0 -(1,15897:6630773,45098457:25952256,2009211,196608 -g1,15897:6630773,45098457 -g1,15897:6630773,45098457 -g1,15897:6434165,45098457 -(1,15897:6434165,45098457:0,2009211,196608 -r1,15903:32779637,45098457:26345472,2205819,196608 -k1,15897:6434165,45098457:-26345472 -) -(1,15897:6434165,45098457:26345472,2009211,196608 -[1,15897:6630773,45098457:25952256,1812603,0 -(1,15891:6630773,43690080:25952256,404226,101187 -(1,15890:6630773,43690080:0,0,0 -g1,15890:6630773,43690080 -g1,15890:6630773,43690080 -g1,15890:6303093,43690080 -(1,15890:6303093,43690080:0,0,0 -) -g1,15890:6630773,43690080 -) -g1,15891:9159939,43690080 -g1,15891:10740667,43690080 -g1,15891:12321396,43690080 -g1,15891:12953688,43690080 -g1,15891:15166708,43690080 -g1,15891:15799000,43690080 -h1,15891:16747437,43690080:0,0,0 -k1,15891:32583029,43690080:15835592 -g1,15891:32583029,43690080 -) -(1,15896:6630773,44356258:25952256,404226,76021 -(1,15893:6630773,44356258:0,0,0 -g1,15893:6630773,44356258 -g1,15893:6630773,44356258 -g1,15893:6303093,44356258 -(1,15893:6303093,44356258:0,0,0 -) -g1,15893:6630773,44356258 -) -g1,15896:7579210,44356258 -g1,15896:7895356,44356258 -g1,15896:9159939,44356258 -g1,15896:9476085,44356258 -g1,15896:9792231,44356258 -g1,15896:12637542,44356258 -g1,15896:12953688,44356258 -g1,15896:13269834,44356258 -g1,15896:16115145,44356258 -g1,15896:16431291,44356258 -g1,15896:19592748,44356258 -g1,15896:19908894,44356258 -g1,15896:23070351,44356258 -g1,15896:23386497,44356258 -g1,15896:26547954,44356258 -g1,15896:26864100,44356258 -h1,15896:29709411,44356258:0,0,0 -k1,15896:32583029,44356258:2873618 -g1,15896:32583029,44356258 -) -(1,15896:6630773,45022436:25952256,404226,76021 -h1,15896:6630773,45022436:0,0,0 -g1,15896:7579210,45022436 -g1,15896:7895356,45022436 -g1,15896:9159939,45022436 -g1,15896:9476085,45022436 -g1,15896:12637542,45022436 -g1,15896:12953688,45022436 -g1,15896:16115145,45022436 -g1,15896:16431291,45022436 -g1,15896:19592748,45022436 -h1,15896:22754205,45022436:0,0,0 -k1,15896:32583029,45022436:9828824 -g1,15896:32583029,45022436 -) -] -) -g1,15897:32583029,45098457 -g1,15897:6630773,45098457 -g1,15897:6630773,45098457 -g1,15897:32583029,45098457 -g1,15897:32583029,45098457 -) -h1,15897:6630773,45295065:0,0,0 -] -(1,15903:32583029,45706769:0,0,0 -g1,15903:32583029,45706769 -) -) -] -(1,15903:6630773,47279633:25952256,0,0 -h1,15903:6630773,47279633:25952256,0,0 -) -] -(1,15903:4262630,4025873:0,0,0 -[1,15903:-473656,4025873:0,0,0 -(1,15903:-473656,-710413:0,0,0 -(1,15903:-473656,-710413:0,0,0 -g1,15903:-473656,-710413 -) -g1,15903:-473656,-710413 -) -] -) -] -!27308 -}271 -Input:2314:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2315:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2316:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2317:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2318:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2319:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2320:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2321:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2322:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2323:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2324:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2325:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2326:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2327:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2328:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1422 -{272 -[1,15937:4262630,47279633:28320399,43253760,0 -(1,15937:4262630,4025873:0,0,0 -[1,15937:-473656,4025873:0,0,0 -(1,15937:-473656,-710413:0,0,0 -(1,15937:-473656,-644877:0,0,0 -k1,15937:-473656,-644877:-65536 +(1,15647:6434165,9727416:26345472,3866535,196608 +[1,15647:6630773,9727416:25952256,3669927,0 +(1,15635:6630773,6481928:25952256,424439,106246 +(1,15634:6630773,6481928:0,0,0 +g1,15634:6630773,6481928 +g1,15634:6630773,6481928 +g1,15634:6303093,6481928 +(1,15634:6303093,6481928:0,0,0 +) +g1,15634:6630773,6481928 +) +k1,15635:6630773,6481928:0 +h1,15635:11942036,6481928:0,0,0 +k1,15635:32583028,6481928:20640992 +g1,15635:32583028,6481928 +) +(1,15639:6630773,7297855:25952256,424439,79822 +(1,15637:6630773,7297855:0,0,0 +g1,15637:6630773,7297855 +g1,15637:6630773,7297855 +g1,15637:6303093,7297855 +(1,15637:6303093,7297855:0,0,0 +) +g1,15637:6630773,7297855 +) +g1,15639:7626635,7297855 +g1,15639:8954451,7297855 +h1,15639:10282267,7297855:0,0,0 +k1,15639:32583029,7297855:22300762 +g1,15639:32583029,7297855 +) +(1,15641:6630773,8113782:25952256,424439,106246 +(1,15640:6630773,8113782:0,0,0 +g1,15640:6630773,8113782 +g1,15640:6630773,8113782 +g1,15640:6303093,8113782 +(1,15640:6303093,8113782:0,0,0 +) +g1,15640:6630773,8113782 +) +k1,15641:6630773,8113782:0 +h1,15641:12937898,8113782:0,0,0 +k1,15641:32583030,8113782:19645132 +g1,15641:32583030,8113782 +) +(1,15646:6630773,8929709:25952256,431045,112852 +(1,15643:6630773,8929709:0,0,0 +g1,15643:6630773,8929709 +g1,15643:6630773,8929709 +g1,15643:6303093,8929709 +(1,15643:6303093,8929709:0,0,0 +) +g1,15643:6630773,8929709 +) +g1,15646:7626635,8929709 +g1,15646:9950313,8929709 +h1,15646:13601806,8929709:0,0,0 +k1,15646:32583030,8929709:18981224 +g1,15646:32583030,8929709 +) +(1,15646:6630773,9614564:25952256,424439,112852 +h1,15646:6630773,9614564:0,0,0 +g1,15646:7626635,9614564 +g1,15646:9950313,9614564 +g1,15646:13601806,9614564 +g1,15646:16589391,9614564 +g1,15646:19576977,9614564 +g1,15646:22896516,9614564 +h1,15646:25220194,9614564:0,0,0 +k1,15646:32583029,9614564:7362835 +g1,15646:32583029,9614564 +) +] +) +g1,15647:32583029,9727416 +g1,15647:6630773,9727416 +g1,15647:6630773,9727416 +g1,15647:32583029,9727416 +g1,15647:32583029,9727416 +) +h1,15647:6630773,9924024:0,0,0 +(1,15651:6630773,10789104:25952256,513147,115847 +h1,15650:6630773,10789104:983040,0,0 +k1,15650:9000007,10789104:189507 +(1,15650:9000007,10789104:0,452978,115847 +r1,15744:11468544,10789104:2468537,568825,115847 +k1,15650:9000007,10789104:-2468537 +) +(1,15650:9000007,10789104:2468537,452978,115847 +k1,15650:9000007,10789104:3277 +h1,15650:11465267,10789104:0,411205,112570 +) +k1,15650:11658051,10789104:189507 +k1,15650:14301881,10789104:189507 +k1,15650:15439040,10789104:189508 +k1,15650:17770264,10789104:189507 +k1,15650:20033330,10789104:189507 +k1,15650:21790458,10789104:189507 +k1,15650:23264471,10789104:189507 +k1,15650:24401629,10789104:189507 +k1,15650:25980499,10789104:189507 +k1,15650:28376604,10789104:189508 +k1,15650:29182149,10789104:189507 +k1,15650:30656162,10789104:189507 +k1,15650:31303766,10789104:189507 +k1,15651:32583029,10789104:0 +) +(1,15651:6630773,11654184:25952256,513147,126483 +k1,15650:8340161,11654184:286601 +k1,15650:8982621,11654184:286600 +k1,15650:11443707,11654184:286601 +k1,15650:13124259,11654184:286601 +k1,15650:14429944,11654184:286600 +k1,15650:15942724,11654184:286601 +k1,15650:17016980,11654184:286513 +k1,15650:19588821,11654184:286601 +k1,15650:22628588,11654184:286600 +k1,15650:23676717,11654184:286601 +k1,15650:24982403,11654184:286601 +k1,15650:28944262,11654184:286600 +k1,15650:31923737,11654184:286601 +k1,15650:32583029,11654184:0 +) +(1,15651:6630773,12519264:25952256,513147,102891 +k1,15650:8352051,12519264:187080 +$1,15650:8352051,12519264 +$1,15650:8920248,12519264 +k1,15650:9107328,12519264:187080 +k1,15650:11780189,12519264:187080 +k1,15650:12626561,12519264:187080 +k1,15650:15907596,12519264:187080 +k1,15650:17622320,12519264:187080 +k1,15650:19695527,12519264:187081 +k1,15650:21334229,12519264:187080 +k1,15650:23904198,12519264:187080 +k1,15650:25829293,12519264:187080 +k1,15650:26787076,12519264:187080 +k1,15650:30948259,12519264:187080 +k1,15650:31794631,12519264:187080 +k1,15650:32583029,12519264:0 +) +(1,15651:6630773,13384344:25952256,513147,134348 +k1,15650:8391959,13384344:206017 +k1,15650:9789421,13384344:206017 +k1,15650:12322621,13384344:206017 +k1,15650:13187930,13384344:206017 +k1,15650:15966235,13384344:206017 +k1,15650:16938368,13384344:206017 +k1,15650:18678584,13384344:206018 +k1,15650:20076046,13384344:206017 +k1,15650:23168924,13384344:206017 +k1,15650:23730801,13384344:206017 +k1,15650:26189290,13384344:206017 +k1,15650:28881088,13384344:206017 +k1,15650:29746397,13384344:206017 +k1,15650:31591469,13384344:206017 +k1,15650:32583029,13384344:0 +) +(1,15651:6630773,14249424:25952256,513147,134348 +k1,15650:10066497,14249424:198901 +k1,15650:10893234,14249424:198902 +k1,15650:13931811,14249424:198902 +k1,15650:17323626,14249424:198901 +k1,15650:19533173,14249424:198902 +k1,15650:20723634,14249424:198901 +k1,15650:24127901,14249424:198901 +k1,15650:25977000,14249424:198902 +k1,15650:29457290,14249424:198902 +k1,15650:30847636,14249424:198901 +k1,15650:32583029,14249424:0 +) +(1,15651:6630773,15114504:25952256,513147,134348 +g1,15650:8446120,15114504 +g1,15650:9296777,15114504 +g1,15650:12527046,15114504 +g1,15650:13673926,15114504 +g1,15650:16708242,15114504 +g1,15650:19562334,15114504 +g1,15650:22577645,15114504 +g1,15650:23392912,15114504 +k1,15651:32583029,15114504:7960006 +g1,15651:32583029,15114504 +) +v1,15653:6630773,15799359:0,393216,0 +(1,15674:6630773,23970325:25952256,8564182,196608 +g1,15674:6630773,23970325 +g1,15674:6630773,23970325 +g1,15674:6434165,23970325 +(1,15674:6434165,23970325:0,8564182,196608 +r1,15744:32779637,23970325:26345472,8760790,196608 +k1,15674:6434165,23970325:-26345472 +) +(1,15674:6434165,23970325:26345472,8564182,196608 +[1,15674:6630773,23970325:25952256,8367574,0 +(1,15655:6630773,16033796:25952256,431045,106246 +(1,15654:6630773,16033796:0,0,0 +g1,15654:6630773,16033796 +g1,15654:6630773,16033796 +g1,15654:6303093,16033796 +(1,15654:6303093,16033796:0,0,0 +) +g1,15654:6630773,16033796 +) +k1,15655:6630773,16033796:0 +h1,15655:10614221,16033796:0,0,0 +k1,15655:32583029,16033796:21968808 +g1,15655:32583029,16033796 +) +(1,15662:6630773,16849723:25952256,424439,112852 +(1,15657:6630773,16849723:0,0,0 +g1,15657:6630773,16849723 +g1,15657:6630773,16849723 +g1,15657:6303093,16849723 +(1,15657:6303093,16849723:0,0,0 +) +g1,15657:6630773,16849723 +) +g1,15662:7626635,16849723 +g1,15662:7958589,16849723 +g1,15662:8290543,16849723 +g1,15662:10282267,16849723 +g1,15662:12937899,16849723 +h1,15662:15593530,16849723:0,0,0 +k1,15662:32583030,16849723:16989500 +g1,15662:32583030,16849723 +) +(1,15662:6630773,17534578:25952256,407923,0 +h1,15662:6630773,17534578:0,0,0 +g1,15662:7626635,17534578 +g1,15662:8290543,17534578 +g1,15662:8622497,17534578 +g1,15662:8954451,17534578 +g1,15662:9286405,17534578 +g1,15662:9618359,17534578 +g1,15662:10282267,17534578 +g1,15662:10614221,17534578 +g1,15662:10946175,17534578 +g1,15662:11278129,17534578 +g1,15662:11610083,17534578 +g1,15662:11942037,17534578 +g1,15662:12273991,17534578 +g1,15662:12937899,17534578 +g1,15662:13269853,17534578 +g1,15662:13601807,17534578 +g1,15662:13933761,17534578 +g1,15662:14265715,17534578 +g1,15662:14597669,17534578 +g1,15662:14929623,17534578 +g1,15662:15261577,17534578 +h1,15662:15593531,17534578:0,0,0 +k1,15662:32583029,17534578:16989498 +g1,15662:32583029,17534578 +) +(1,15662:6630773,18219433:25952256,407923,0 +h1,15662:6630773,18219433:0,0,0 +g1,15662:7626635,18219433 +g1,15662:8290543,18219433 +g1,15662:8622497,18219433 +g1,15662:8954451,18219433 +g1,15662:9286405,18219433 +g1,15662:9618359,18219433 +g1,15662:10282267,18219433 +g1,15662:10614221,18219433 +g1,15662:10946175,18219433 +g1,15662:11278129,18219433 +g1,15662:11610083,18219433 +g1,15662:11942037,18219433 +g1,15662:12273991,18219433 +g1,15662:12937899,18219433 +g1,15662:13269853,18219433 +g1,15662:13601807,18219433 +g1,15662:13933761,18219433 +g1,15662:14265715,18219433 +g1,15662:14597669,18219433 +g1,15662:14929623,18219433 +g1,15662:15261577,18219433 +h1,15662:15593531,18219433:0,0,0 +k1,15662:32583029,18219433:16989498 +g1,15662:32583029,18219433 +) +(1,15662:6630773,18904288:25952256,407923,9908 +h1,15662:6630773,18904288:0,0,0 +g1,15662:7626635,18904288 +g1,15662:8290543,18904288 +g1,15662:8622497,18904288 +g1,15662:8954451,18904288 +g1,15662:9286405,18904288 +g1,15662:9618359,18904288 +g1,15662:10282267,18904288 +g1,15662:10614221,18904288 +g1,15662:10946175,18904288 +g1,15662:11278129,18904288 +g1,15662:11610083,18904288 +g1,15662:11942037,18904288 +g1,15662:12273991,18904288 +g1,15662:12937899,18904288 +g1,15662:13269853,18904288 +g1,15662:13601807,18904288 +g1,15662:13933761,18904288 +g1,15662:14265715,18904288 +g1,15662:14597669,18904288 +g1,15662:14929623,18904288 +g1,15662:15261577,18904288 +h1,15662:15593531,18904288:0,0,0 +k1,15662:32583029,18904288:16989498 +g1,15662:32583029,18904288 +) +(1,15664:6630773,19720215:25952256,424439,106246 +(1,15663:6630773,19720215:0,0,0 +g1,15663:6630773,19720215 +g1,15663:6630773,19720215 +g1,15663:6303093,19720215 +(1,15663:6303093,19720215:0,0,0 +) +g1,15663:6630773,19720215 +) +k1,15664:6630773,19720215:0 +h1,15664:10614221,19720215:0,0,0 +k1,15664:32583029,19720215:21968808 +g1,15664:32583029,19720215 +) +(1,15673:6630773,20536142:25952256,424439,9908 +(1,15666:6630773,20536142:0,0,0 +g1,15666:6630773,20536142 +g1,15666:6630773,20536142 +g1,15666:6303093,20536142 +(1,15666:6303093,20536142:0,0,0 +) +g1,15666:6630773,20536142 +) +g1,15673:7626635,20536142 +g1,15673:8290543,20536142 +g1,15673:8954451,20536142 +g1,15673:11610083,20536142 +g1,15673:12273991,20536142 +g1,15673:12937899,20536142 +h1,15673:13269853,20536142:0,0,0 +k1,15673:32583029,20536142:19313176 +g1,15673:32583029,20536142 +) +(1,15673:6630773,21220997:25952256,424439,112852 +h1,15673:6630773,21220997:0,0,0 +g1,15673:7626635,21220997 +g1,15673:7958589,21220997 +g1,15673:8290543,21220997 +g1,15673:10282267,21220997 +g1,15673:12937899,21220997 +h1,15673:15593530,21220997:0,0,0 +k1,15673:32583030,21220997:16989500 +g1,15673:32583030,21220997 +) +(1,15673:6630773,21905852:25952256,424439,6605 +h1,15673:6630773,21905852:0,0,0 +g1,15673:7626635,21905852 +g1,15673:7958589,21905852 +g1,15673:8290543,21905852 +g1,15673:10282267,21905852 +g1,15673:10614221,21905852 +g1,15673:10946175,21905852 +g1,15673:12937899,21905852 +g1,15673:13269853,21905852 +g1,15673:13601807,21905852 +g1,15673:13933761,21905852 +k1,15673:13933761,21905852:0 +h1,15673:15593531,21905852:0,0,0 +k1,15673:32583029,21905852:16989498 +g1,15673:32583029,21905852 +) +(1,15673:6630773,22590707:25952256,407923,0 +h1,15673:6630773,22590707:0,0,0 +g1,15673:7626635,22590707 +g1,15673:8290543,22590707 +g1,15673:8954451,22590707 +g1,15673:9286405,22590707 +g1,15673:9618359,22590707 +g1,15673:9950313,22590707 +g1,15673:10282267,22590707 +g1,15673:10614221,22590707 +g1,15673:10946175,22590707 +g1,15673:11278129,22590707 +g1,15673:11610083,22590707 +g1,15673:11942037,22590707 +g1,15673:12273991,22590707 +g1,15673:12937899,22590707 +g1,15673:13269853,22590707 +g1,15673:13601807,22590707 +g1,15673:13933761,22590707 +g1,15673:14265715,22590707 +g1,15673:14597669,22590707 +g1,15673:14929623,22590707 +g1,15673:15261577,22590707 +h1,15673:15593531,22590707:0,0,0 +k1,15673:32583029,22590707:16989498 +g1,15673:32583029,22590707 +) +(1,15673:6630773,23275562:25952256,407923,0 +h1,15673:6630773,23275562:0,0,0 +g1,15673:7626635,23275562 +g1,15673:8290543,23275562 +g1,15673:8954451,23275562 +g1,15673:9286405,23275562 +g1,15673:9618359,23275562 +g1,15673:9950313,23275562 +g1,15673:10282267,23275562 +g1,15673:10614221,23275562 +g1,15673:10946175,23275562 +g1,15673:11278129,23275562 +g1,15673:11610083,23275562 +g1,15673:11942037,23275562 +g1,15673:12273991,23275562 +g1,15673:12937899,23275562 +g1,15673:13269853,23275562 +g1,15673:13601807,23275562 +g1,15673:13933761,23275562 +g1,15673:14265715,23275562 +g1,15673:14597669,23275562 +g1,15673:14929623,23275562 +g1,15673:15261577,23275562 +h1,15673:15593531,23275562:0,0,0 +k1,15673:32583029,23275562:16989498 +g1,15673:32583029,23275562 +) +(1,15673:6630773,23960417:25952256,407923,9908 +h1,15673:6630773,23960417:0,0,0 +g1,15673:7626635,23960417 +g1,15673:8290543,23960417 +g1,15673:8954451,23960417 +g1,15673:9286405,23960417 +g1,15673:9618359,23960417 +g1,15673:9950313,23960417 +g1,15673:10282267,23960417 +g1,15673:10614221,23960417 +g1,15673:10946175,23960417 +g1,15673:11278129,23960417 +g1,15673:11610083,23960417 +g1,15673:11942037,23960417 +g1,15673:12273991,23960417 +g1,15673:12937899,23960417 +g1,15673:13269853,23960417 +g1,15673:13601807,23960417 +g1,15673:13933761,23960417 +g1,15673:14265715,23960417 +g1,15673:14597669,23960417 +g1,15673:14929623,23960417 +g1,15673:15261577,23960417 +h1,15673:15593531,23960417:0,0,0 +k1,15673:32583029,23960417:16989498 +g1,15673:32583029,23960417 +) +] +) +g1,15674:32583029,23970325 +g1,15674:6630773,23970325 +g1,15674:6630773,23970325 +g1,15674:32583029,23970325 +g1,15674:32583029,23970325 +) +h1,15674:6630773,24166933:0,0,0 +v1,15678:6630773,25032013:0,393216,0 +(1,15687:6630773,28286011:25952256,3647214,0 +g1,15687:6630773,28286011 +g1,15687:6237557,28286011 +r1,15744:6368629,28286011:131072,3647214,0 +g1,15687:6567858,28286011 +g1,15687:6764466,28286011 +[1,15687:6764466,28286011:25818563,3647214,0 +(1,15679:6764466,25340311:25818563,701514,196608 +(1,15678:6764466,25340311:0,701514,196608 +r1,15744:8010564,25340311:1246098,898122,196608 +k1,15678:6764466,25340311:-1246098 +) +(1,15678:6764466,25340311:1246098,701514,196608 +) +k1,15678:8202400,25340311:191836 +k1,15678:8530080,25340311:327680 +k1,15678:9918603,25340311:191836 +k1,15678:12376019,25340311:191836 +k1,15678:15053635,25340311:191835 +k1,15678:15904763,25340311:191836 +k1,15678:17630797,25340311:191836 +k1,15678:20172754,25340311:191836 +k1,15678:23066639,25340311:191836 +k1,15678:24067845,25340311:191836 +k1,15678:24674516,25340311:191828 +k1,15678:26949086,25340311:191836 +(1,15678:26949086,25340311:0,452978,115847 +r1,15744:32583029,25340311:5633943,568825,115847 +k1,15678:26949086,25340311:-5633943 +) +(1,15678:26949086,25340311:5633943,452978,115847 +k1,15678:26949086,25340311:3277 +h1,15678:32579752,25340311:0,411205,112570 +) +k1,15678:32583029,25340311:0 +) +(1,15679:6764466,26205391:25818563,513147,126483 +k1,15678:8229072,26205391:180100 +k1,15678:9513454,26205391:180100 +k1,15678:10441320,26205391:180100 +k1,15678:11555963,26205391:180100 +k1,15678:13130014,26205391:180100 +k1,15678:13665974,26205391:180100 +k1,15678:14945768,26205391:180100 +k1,15678:15777295,26205391:180099 +(1,15678:15777295,26205391:0,452978,115847 +r1,15744:18949255,26205391:3171960,568825,115847 +k1,15678:15777295,26205391:-3171960 +) +(1,15678:15777295,26205391:3171960,452978,115847 +k1,15678:15777295,26205391:3277 +h1,15678:18945978,26205391:0,411205,112570 +) +k1,15678:19303025,26205391:180100 +k1,15678:20863969,26205391:180100 +k1,15678:23126803,26205391:180100 +k1,15678:24980037,26205391:180100 +k1,15678:26107788,26205391:180100 +k1,15678:28429605,26205391:180100 +k1,15678:28965565,26205391:180100 +k1,15678:31347675,26205391:180100 +k1,15678:32583029,26205391:0 +) +(1,15679:6764466,27070471:25818563,513147,126483 +g1,15678:7649857,27070471 +g1,15678:9931820,27070471 +(1,15678:9931820,27070471:0,452978,115847 +r1,15744:13103780,27070471:3171960,568825,115847 +k1,15678:9931820,27070471:-3171960 +) +(1,15678:9931820,27070471:3171960,452978,115847 +k1,15678:9931820,27070471:3277 +h1,15678:13100503,27070471:0,411205,112570 +) +g1,15678:13303009,27070471 +g1,15678:15175372,27070471 +g1,15678:16322252,27070471 +g1,15678:17955409,27070471 +g1,15678:18569481,27070471 +(1,15678:18569481,27070471:0,452978,115847 +r1,15744:21038018,27070471:2468537,568825,115847 +k1,15678:18569481,27070471:-2468537 +) +(1,15678:18569481,27070471:2468537,452978,115847 +k1,15678:18569481,27070471:3277 +h1,15678:21034741,27070471:0,411205,112570 +) +g1,15678:21237247,27070471 +k1,15679:32583029,27070471:8387487 +g1,15679:32583029,27070471 +) +v1,15681:6764466,27755326:0,393216,0 +(1,15685:6764466,28089403:25818563,727293,196608 +g1,15685:6764466,28089403 +g1,15685:6764466,28089403 +g1,15685:6567858,28089403 +(1,15685:6567858,28089403:0,727293,196608 +r1,15744:32779637,28089403:26211779,923901,196608 +k1,15685:6567857,28089403:-26211780 +) +(1,15685:6567858,28089403:26211779,727293,196608 +[1,15685:6764466,28089403:25818563,530685,0 +(1,15683:6764466,27983157:25818563,424439,106246 +(1,15682:6764466,27983157:0,0,0 +g1,15682:6764466,27983157 +g1,15682:6764466,27983157 +g1,15682:6436786,27983157 +(1,15682:6436786,27983157:0,0,0 +) +g1,15682:6764466,27983157 +) +k1,15683:6764466,27983157:0 +g1,15683:15063315,27983157 +g1,15683:15727223,27983157 +g1,15683:16723085,27983157 +g1,15683:22366302,27983157 +g1,15683:23030210,27983157 +h1,15683:23694118,27983157:0,0,0 +k1,15683:32583029,27983157:8888911 +g1,15683:32583029,27983157 +) +] +) +g1,15685:32583029,28089403 +g1,15685:6764466,28089403 +g1,15685:6764466,28089403 +g1,15685:32583029,28089403 +g1,15685:32583029,28089403 +) +h1,15685:6764466,28286011:0,0,0 +] +g1,15687:32583029,28286011 +) +h1,15687:6630773,28286011:0,0,0 +v1,15690:6630773,29151091:0,393216,0 +(1,15691:6630773,33875451:25952256,5117576,0 +g1,15691:6630773,33875451 +g1,15691:6237557,33875451 +r1,15744:6368629,33875451:131072,5117576,0 +g1,15691:6567858,33875451 +g1,15691:6764466,33875451 +[1,15691:6764466,33875451:25818563,5117576,0 +(1,15691:6764466,29423568:25818563,665693,196608 +(1,15690:6764466,29423568:0,665693,196608 +r1,15744:8010564,29423568:1246098,862301,196608 +k1,15690:6764466,29423568:-1246098 +) +(1,15690:6764466,29423568:1246098,665693,196608 +) +k1,15690:8203546,29423568:192982 +k1,15690:9521475,29423568:327680 +k1,15690:11251276,29423568:192982 +k1,15690:14228882,29423568:192981 +k1,15690:15369515,29423568:192982 +k1,15690:17704214,29423568:192982 +k1,15690:19088641,29423568:192982 +k1,15690:20670986,29423568:192982 +k1,15690:23070565,29423568:192982 +k1,15690:25006804,29423568:192981 +k1,15690:25815824,29423568:192982 +k1,15690:27517445,29423568:192982 +k1,15690:30884991,29423568:192982 +k1,15690:32583029,29423568:0 +) +(1,15691:6764466,30288648:25818563,513147,126483 +k1,15690:8049496,30288648:218759 +k1,15690:9034371,30288648:218759 +k1,15690:11966321,30288648:218759 +k1,15690:12872554,30288648:218760 +k1,15690:13707351,30288648:218759 +k1,15690:14281970,30288648:218759 +k1,15690:16850850,30288648:218759 +k1,15690:18411786,30288648:218759 +k1,15690:19236098,30288648:218759 +k1,15690:22600585,30288648:218759 +k1,15690:23175204,30288648:218759 +k1,15690:24783327,30288648:218760 +k1,15690:26878382,30288648:218759 +k1,15690:28288586,30288648:218759 +k1,15690:29278048,30288648:218759 +k1,15690:32583029,30288648:0 +) +(1,15691:6764466,31153728:25818563,505283,126483 +k1,15690:8846676,31153728:270795 +k1,15690:10511421,31153728:270794 +k1,15690:11394978,31153728:270795 +k1,15690:13161304,31153728:270794 +k1,15690:14229017,31153728:270795 +k1,15690:16034009,31153728:270794 +k1,15690:17496249,31153728:270795 +k1,15690:19200971,31153728:270794 +k1,15690:20663211,31153728:270795 +k1,15690:22264386,31153728:270794 +k1,15690:23554266,31153728:270795 +k1,15690:25983816,31153728:270794 +k1,15690:27971654,31153728:270795 +k1,15690:29940487,31153728:270795 +k1,15690:31591469,31153728:270794 +k1,15690:32583029,31153728:0 +) +(1,15691:6764466,32018808:25818563,513147,126483 +k1,15690:9545431,32018808:257174 +k1,15690:10408158,32018808:257174 +k1,15690:13811060,32018808:257174 +k1,15690:14424094,32018808:257174 +k1,15690:16070631,32018808:257174 +k1,15690:18204101,32018808:257174 +k1,15690:19652721,32018808:257175 +k1,15690:20680598,32018808:257174 +k1,15690:24242753,32018808:257174 +k1,15690:26311342,32018808:257174 +k1,15690:27962467,32018808:257174 +k1,15690:29869838,32018808:257174 +k1,15690:32583029,32018808:0 +) +(1,15691:6764466,32883888:25818563,513147,126483 +k1,15690:8374725,32883888:167812 +k1,15690:9675000,32883888:167813 +k1,15690:10530285,32883888:167812 +k1,15690:11314136,32883888:167813 +k1,15690:12501033,32883888:167812 +k1,15690:14483538,32883888:167813 +k1,15690:15310642,32883888:167812 +k1,15690:16497539,32883888:167812 +k1,15690:17080164,32883888:167782 +k1,15690:19668221,32883888:167812 +k1,15690:21027478,32883888:167812 +k1,15690:22629219,32883888:167813 +k1,15690:23988476,32883888:167812 +k1,15690:25486670,32883888:167813 +k1,15690:26673567,32883888:167812 +k1,15690:29000136,32883888:167813 +k1,15690:30884991,32883888:167812 +k1,15690:32583029,32883888:0 +) +(1,15691:6764466,33748968:25818563,505283,126483 +g1,15690:8343883,33748968 +g1,15690:9534672,33748968 +k1,15691:32583029,33748968:20524566 +g1,15691:32583029,33748968 +) +] +g1,15691:32583029,33875451 +) +h1,15691:6630773,33875451:0,0,0 +(1,15694:6630773,34740531:25952256,513147,115847 +h1,15693:6630773,34740531:983040,0,0 +g1,15693:9284981,34740531 +g1,15693:11690807,34740531 +g1,15693:12994318,34740531 +g1,15693:13941313,34740531 +g1,15693:17301343,34740531 +g1,15693:18768038,34740531 +g1,15693:21108984,34740531 +g1,15693:22702164,34740531 +(1,15693:22702164,34740531:0,452978,115847 +r1,15744:26577548,34740531:3875384,568825,115847 +k1,15693:22702164,34740531:-3875384 +) +(1,15693:22702164,34740531:3875384,452978,115847 +k1,15693:22702164,34740531:3277 +h1,15693:26574271,34740531:0,411205,112570 +) +k1,15694:32583029,34740531:5831811 +g1,15694:32583029,34740531 +) +v1,15696:6630773,35425386:0,393216,0 +(1,15717:6630773,41222020:25952256,6189850,196608 +g1,15717:6630773,41222020 +g1,15717:6630773,41222020 +g1,15717:6434165,41222020 +(1,15717:6434165,41222020:0,6189850,196608 +r1,15744:32779637,41222020:26345472,6386458,196608 +k1,15717:6434165,41222020:-26345472 +) +(1,15717:6434165,41222020:26345472,6189850,196608 +[1,15717:6630773,41222020:25952256,5993242,0 +(1,15698:6630773,35659823:25952256,431045,106246 +(1,15697:6630773,35659823:0,0,0 +g1,15697:6630773,35659823 +g1,15697:6630773,35659823 +g1,15697:6303093,35659823 +(1,15697:6303093,35659823:0,0,0 +) +g1,15697:6630773,35659823 +) +g1,15698:10282266,35659823 +g1,15698:11278128,35659823 +k1,15698:11278128,35659823:0 +h1,15698:16589391,35659823:0,0,0 +k1,15698:32583029,35659823:15993638 +g1,15698:32583029,35659823 +) +(1,15699:6630773,36344678:25952256,431045,106246 +h1,15699:6630773,36344678:0,0,0 +k1,15699:6630773,36344678:0 +h1,15699:14929621,36344678:0,0,0 +k1,15699:32583029,36344678:17653408 +g1,15699:32583029,36344678 +) +(1,15703:6630773,37160605:25952256,424439,79822 +(1,15701:6630773,37160605:0,0,0 +g1,15701:6630773,37160605 +g1,15701:6630773,37160605 +g1,15701:6303093,37160605 +(1,15701:6303093,37160605:0,0,0 +) +g1,15701:6630773,37160605 +) +g1,15703:7626635,37160605 +g1,15703:8954451,37160605 +h1,15703:10282267,37160605:0,0,0 +k1,15703:32583029,37160605:22300762 +g1,15703:32583029,37160605 +) +(1,15705:6630773,37976532:25952256,424439,106246 +(1,15704:6630773,37976532:0,0,0 +g1,15704:6630773,37976532 +g1,15704:6630773,37976532 +g1,15704:6303093,37976532 +(1,15704:6303093,37976532:0,0,0 +) +g1,15704:6630773,37976532 +) +k1,15705:6630773,37976532:0 +h1,15705:13601805,37976532:0,0,0 +k1,15705:32583029,37976532:18981224 +g1,15705:32583029,37976532 +) +(1,15709:6630773,38792459:25952256,424439,79822 +(1,15707:6630773,38792459:0,0,0 +g1,15707:6630773,38792459 +g1,15707:6630773,38792459 +g1,15707:6303093,38792459 +(1,15707:6303093,38792459:0,0,0 +) +g1,15707:6630773,38792459 +) +g1,15709:7626635,38792459 +g1,15709:8954451,38792459 +h1,15709:10282267,38792459:0,0,0 +k1,15709:32583029,38792459:22300762 +g1,15709:32583029,38792459 +) +(1,15711:6630773,39608386:25952256,424439,106246 +(1,15710:6630773,39608386:0,0,0 +g1,15710:6630773,39608386 +g1,15710:6630773,39608386 +g1,15710:6303093,39608386 +(1,15710:6303093,39608386:0,0,0 +) +g1,15710:6630773,39608386 +) +k1,15711:6630773,39608386:0 +h1,15711:14597667,39608386:0,0,0 +k1,15711:32583029,39608386:17985362 +g1,15711:32583029,39608386 +) +(1,15716:6630773,40424313:25952256,431045,112852 +(1,15713:6630773,40424313:0,0,0 +g1,15713:6630773,40424313 +g1,15713:6630773,40424313 +g1,15713:6303093,40424313 +(1,15713:6303093,40424313:0,0,0 +) +g1,15713:6630773,40424313 +) +g1,15716:7626635,40424313 +g1,15716:9950313,40424313 +h1,15716:13601806,40424313:0,0,0 +k1,15716:32583030,40424313:18981224 +g1,15716:32583030,40424313 +) +(1,15716:6630773,41109168:25952256,424439,112852 +h1,15716:6630773,41109168:0,0,0 +g1,15716:7626635,41109168 +g1,15716:9950313,41109168 +g1,15716:13601806,41109168 +g1,15716:16589391,41109168 +g1,15716:19576977,41109168 +g1,15716:22896516,41109168 +h1,15716:25220194,41109168:0,0,0 +k1,15716:32583029,41109168:7362835 +g1,15716:32583029,41109168 +) +] +) +g1,15717:32583029,41222020 +g1,15717:6630773,41222020 +g1,15717:6630773,41222020 +g1,15717:32583029,41222020 +g1,15717:32583029,41222020 +) +h1,15717:6630773,41418628:0,0,0 +(1,15721:6630773,42283708:25952256,513147,115847 +h1,15720:6630773,42283708:983040,0,0 +g1,15720:10132361,42283708 +g1,15720:11435872,42283708 +g1,15720:12382867,42283708 +g1,15720:15742897,42283708 +g1,15720:17209592,42283708 +g1,15720:19205818,42283708 +g1,15720:23174678,42283708 +g1,15720:24767858,42283708 +(1,15720:24767858,42283708:0,459977,115847 +r1,15744:30050089,42283708:5282231,575824,115847 +k1,15720:24767858,42283708:-5282231 +) +(1,15720:24767858,42283708:5282231,459977,115847 +k1,15720:24767858,42283708:3277 +h1,15720:30046812,42283708:0,411205,112570 +) +k1,15721:32583029,42283708:2359270 +g1,15721:32583029,42283708 +) +v1,15723:6630773,42968563:0,393216,0 +(1,15744:6630773,45510161:25952256,2934814,196608 +g1,15744:6630773,45510161 +g1,15744:6630773,45510161 +g1,15744:6434165,45510161 +(1,15744:6434165,45510161:0,2934814,196608 +r1,15744:32779637,45510161:26345472,3131422,196608 +k1,15744:6434165,45510161:-26345472 +) +(1,15744:6434165,45510161:26345472,2934814,196608 +[1,15744:6630773,45510161:25952256,2738206,0 +(1,15725:6630773,43203000:25952256,431045,106246 +(1,15724:6630773,43203000:0,0,0 +g1,15724:6630773,43203000 +g1,15724:6630773,43203000 +g1,15724:6303093,43203000 +(1,15724:6303093,43203000:0,0,0 +) +g1,15724:6630773,43203000 +) +g1,15725:10282266,43203000 +g1,15725:11278128,43203000 +k1,15725:11278128,43203000:0 +h1,15725:17917207,43203000:0,0,0 +k1,15725:32583029,43203000:14665822 +g1,15725:32583029,43203000 +) +(1,15726:6630773,43887855:25952256,431045,106246 +h1,15726:6630773,43887855:0,0,0 +k1,15726:6630773,43887855:0 +h1,15726:14929621,43887855:0,0,0 +k1,15726:32583029,43887855:17653408 +g1,15726:32583029,43887855 +) +(1,15730:6630773,44699008:25952256,424439,79822 +(1,15728:6630773,44699008:0,0,0 +g1,15728:6630773,44699008 +g1,15728:6630773,44699008 +g1,15728:6303093,44699008 +(1,15728:6303093,44699008:0,0,0 +) +g1,15728:6630773,44699008 +) +g1,15730:7626635,44699008 +g1,15730:8954451,44699008 +h1,15730:10282267,44699008:0,0,0 +k1,15730:32583029,44699008:22300762 +g1,15730:32583029,44699008 +) +(1,15732:6630773,45510161:25952256,431045,106246 +(1,15731:6630773,45510161:0,0,0 +g1,15731:6630773,45510161 +g1,15731:6630773,45510161 +g1,15731:6303093,45510161 +(1,15731:6303093,45510161:0,0,0 +) +g1,15731:6630773,45510161 +) +k1,15732:6630773,45510161:0 +h1,15732:13601805,45510161:0,0,0 +k1,15732:32583029,45510161:18981224 +g1,15732:32583029,45510161 +) +] +) +g1,15744:32583029,45510161 +g1,15744:6630773,45510161 +g1,15744:6630773,45510161 +g1,15744:32583029,45510161 +g1,15744:32583029,45510161 +) +] +(1,15744:32583029,45706769:0,0,0 +g1,15744:32583029,45706769 +) +) +] +(1,15744:6630773,47279633:25952256,0,0 +h1,15744:6630773,47279633:25952256,0,0 +) +] +(1,15744:4262630,4025873:0,0,0 +[1,15744:-473656,4025873:0,0,0 +(1,15744:-473656,-710413:0,0,0 +(1,15744:-473656,-710413:0,0,0 +g1,15744:-473656,-710413 +) +g1,15744:-473656,-710413 +) +] +) +] +!30376 +}254 +Input:2306:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2307:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2308:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2309:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2310:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2311:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2312:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!670 +{255 +[1,15871:4262630,47279633:28320399,43253760,0 +(1,15871:4262630,4025873:0,0,0 +[1,15871:-473656,4025873:0,0,0 +(1,15871:-473656,-710413:0,0,0 +(1,15871:-473656,-644877:0,0,0 +k1,15871:-473656,-644877:-65536 ) -(1,15937:-473656,4736287:0,0,0 -k1,15937:-473656,4736287:5209943 +(1,15871:-473656,4736287:0,0,0 +k1,15871:-473656,4736287:5209943 ) -g1,15937:-473656,-710413 +g1,15871:-473656,-710413 ) ] ) -[1,15937:6630773,47279633:25952256,43253760,0 -[1,15937:6630773,4812305:25952256,786432,0 -(1,15937:6630773,4812305:25952256,485622,126483 -(1,15937:6630773,4812305:25952256,485622,126483 -g1,15937:3078558,4812305 -[1,15937:3078558,4812305:0,0,0 -(1,15937:3078558,2439708:0,1703936,0 -k1,15937:1358238,2439708:-1720320 -(1,15243:1358238,2439708:1720320,1703936,0 -(1,15243:1358238,2439708:1179648,16384,0 -r1,15937:2537886,2439708:1179648,16384,0 +[1,15871:6630773,47279633:25952256,43253760,0 +[1,15871:6630773,4812305:25952256,786432,0 +(1,15871:6630773,4812305:25952256,505283,134348 +(1,15871:6630773,4812305:25952256,505283,134348 +g1,15871:3078558,4812305 +[1,15871:3078558,4812305:0,0,0 +(1,15871:3078558,2439708:0,1703936,0 +k1,15871:1358238,2439708:-1720320 +(1,15456:1358238,2439708:1720320,1703936,0 +(1,15456:1358238,2439708:1179648,16384,0 +r1,15871:2537886,2439708:1179648,16384,0 ) -g1,15243:3062174,2439708 -(1,15243:3062174,2439708:16384,1703936,0 -[1,15243:3062174,2439708:25952256,1703936,0 -(1,15243:3062174,1915420:25952256,1179648,0 -(1,15243:3062174,1915420:16384,1179648,0 -r1,15937:3078558,1915420:16384,1179648,0 +g1,15456:3062174,2439708 +(1,15456:3062174,2439708:16384,1703936,0 +[1,15456:3062174,2439708:25952256,1703936,0 +(1,15456:3062174,1915420:25952256,1179648,0 +(1,15456:3062174,1915420:16384,1179648,0 +r1,15871:3078558,1915420:16384,1179648,0 ) -k1,15243:29014430,1915420:25935872 -g1,15243:29014430,1915420 +k1,15456:29014430,1915420:25935872 +g1,15456:29014430,1915420 ) ] ) ) ) ] -[1,15937:3078558,4812305:0,0,0 -(1,15937:3078558,2439708:0,1703936,0 -g1,15937:29030814,2439708 -g1,15937:36135244,2439708 -(1,15243:36135244,2439708:1720320,1703936,0 -(1,15243:36135244,2439708:16384,1703936,0 -[1,15243:36135244,2439708:25952256,1703936,0 -(1,15243:36135244,1915420:25952256,1179648,0 -(1,15243:36135244,1915420:16384,1179648,0 -r1,15937:36151628,1915420:16384,1179648,0 +[1,15871:3078558,4812305:0,0,0 +(1,15871:3078558,2439708:0,1703936,0 +g1,15871:29030814,2439708 +g1,15871:36135244,2439708 +(1,15456:36135244,2439708:1720320,1703936,0 +(1,15456:36135244,2439708:16384,1703936,0 +[1,15456:36135244,2439708:25952256,1703936,0 +(1,15456:36135244,1915420:25952256,1179648,0 +(1,15456:36135244,1915420:16384,1179648,0 +r1,15871:36151628,1915420:16384,1179648,0 ) -k1,15243:62087500,1915420:25935872 -g1,15243:62087500,1915420 +k1,15456:62087500,1915420:25935872 +g1,15456:62087500,1915420 ) ] ) -g1,15243:36675916,2439708 -(1,15243:36675916,2439708:1179648,16384,0 -r1,15937:37855564,2439708:1179648,16384,0 +g1,15456:36675916,2439708 +(1,15456:36675916,2439708:1179648,16384,0 +r1,15871:37855564,2439708:1179648,16384,0 ) ) -k1,15937:3078556,2439708:-34777008 +k1,15871:3078556,2439708:-34777008 ) ] -[1,15937:3078558,4812305:0,0,0 -(1,15937:3078558,49800853:0,16384,2228224 -k1,15937:1358238,49800853:-1720320 -(1,15243:1358238,49800853:1720320,16384,2228224 -(1,15243:1358238,49800853:1179648,16384,0 -r1,15937:2537886,49800853:1179648,16384,0 +[1,15871:3078558,4812305:0,0,0 +(1,15871:3078558,49800853:0,16384,2228224 +k1,15871:1358238,49800853:-1720320 +(1,15456:1358238,49800853:1720320,16384,2228224 +(1,15456:1358238,49800853:1179648,16384,0 +r1,15871:2537886,49800853:1179648,16384,0 ) -g1,15243:3062174,49800853 -(1,15243:3062174,52029077:16384,1703936,0 -[1,15243:3062174,52029077:25952256,1703936,0 -(1,15243:3062174,51504789:25952256,1179648,0 -(1,15243:3062174,51504789:16384,1179648,0 -r1,15937:3078558,51504789:16384,1179648,0 +g1,15456:3062174,49800853 +(1,15456:3062174,52029077:16384,1703936,0 +[1,15456:3062174,52029077:25952256,1703936,0 +(1,15456:3062174,51504789:25952256,1179648,0 +(1,15456:3062174,51504789:16384,1179648,0 +r1,15871:3078558,51504789:16384,1179648,0 ) -k1,15243:29014430,51504789:25935872 -g1,15243:29014430,51504789 +k1,15456:29014430,51504789:25935872 +g1,15456:29014430,51504789 ) ] ) ) ) ] -[1,15937:3078558,4812305:0,0,0 -(1,15937:3078558,49800853:0,16384,2228224 -g1,15937:29030814,49800853 -g1,15937:36135244,49800853 -(1,15243:36135244,49800853:1720320,16384,2228224 -(1,15243:36135244,52029077:16384,1703936,0 -[1,15243:36135244,52029077:25952256,1703936,0 -(1,15243:36135244,51504789:25952256,1179648,0 -(1,15243:36135244,51504789:16384,1179648,0 -r1,15937:36151628,51504789:16384,1179648,0 +[1,15871:3078558,4812305:0,0,0 +(1,15871:3078558,49800853:0,16384,2228224 +g1,15871:29030814,49800853 +g1,15871:36135244,49800853 +(1,15456:36135244,49800853:1720320,16384,2228224 +(1,15456:36135244,52029077:16384,1703936,0 +[1,15456:36135244,52029077:25952256,1703936,0 +(1,15456:36135244,51504789:25952256,1179648,0 +(1,15456:36135244,51504789:16384,1179648,0 +r1,15871:36151628,51504789:16384,1179648,0 ) -k1,15243:62087500,51504789:25935872 -g1,15243:62087500,51504789 +k1,15456:62087500,51504789:25935872 +g1,15456:62087500,51504789 ) ] ) -g1,15243:36675916,49800853 -(1,15243:36675916,49800853:1179648,16384,0 -r1,15937:37855564,49800853:1179648,16384,0 +g1,15456:36675916,49800853 +(1,15456:36675916,49800853:1179648,16384,0 +r1,15871:37855564,49800853:1179648,16384,0 ) ) -k1,15937:3078556,49800853:-34777008 +k1,15871:3078556,49800853:-34777008 ) ] -g1,15937:6630773,4812305 -g1,15937:6630773,4812305 -g1,15937:8364200,4812305 -g1,15937:10177581,4812305 -k1,15937:31387653,4812305:21210072 +g1,15871:6630773,4812305 +k1,15871:23311652,4812305:15485502 +g1,15871:23960458,4812305 +g1,15871:27572802,4812305 +g1,15871:29306229,4812305 ) ) ] -[1,15937:6630773,45706769:25952256,40108032,0 -(1,15937:6630773,45706769:25952256,40108032,0 -(1,15937:6630773,45706769:0,0,0 -g1,15937:6630773,45706769 +[1,15871:6630773,45706769:25952256,40108032,0 +(1,15871:6630773,45706769:25952256,40108032,0 +(1,15871:6630773,45706769:0,0,0 +g1,15871:6630773,45706769 ) -[1,15937:6630773,45706769:25952256,40108032,0 -(1,15900:6630773,6254097:25952256,555811,147783 -(1,15900:6630773,6254097:2450326,534184,12975 -g1,15900:6630773,6254097 -g1,15900:9081099,6254097 +[1,15871:6630773,45706769:25952256,40108032,0 +v1,15744:6630773,6254097:0,393216,0 +(1,15744:6630773,8911489:25952256,3050608,196608 +g1,15744:6630773,8911489 +g1,15744:6630773,8911489 +g1,15744:6434165,8911489 +(1,15744:6434165,8911489:0,3050608,196608 +r1,15871:32779637,8911489:26345472,3247216,196608 +k1,15744:6434165,8911489:-26345472 ) -g1,15900:13301946,6254097 -k1,15900:32583029,6254097:17323850 -g1,15900:32583029,6254097 -) -(1,15903:6630773,7488801:25952256,513147,126483 -k1,15902:12086167,7488801:269530 -k1,15902:13374782,7488801:269530 -k1,15902:19031371,7488801:269530 -k1,15902:19960193,7488801:269530 -k1,15902:23306638,7488801:269530 -(1,15902:23306638,7488801:0,452978,115847 -r1,15937:24016616,7488801:709978,568825,115847 -k1,15902:23306638,7488801:-709978 -) -(1,15902:23306638,7488801:709978,452978,115847 -k1,15902:23306638,7488801:3277 -h1,15902:24013339,7488801:0,411205,112570 -) -k1,15902:24286145,7488801:269529 -k1,15902:25747120,7488801:269530 -(1,15902:25747120,7488801:0,435480,115847 -r1,15937:26808809,7488801:1061689,551327,115847 -k1,15902:25747120,7488801:-1061689 -) -(1,15902:25747120,7488801:1061689,435480,115847 -k1,15902:25747120,7488801:3277 -h1,15902:26805532,7488801:0,411205,112570 -) -k1,15902:27078339,7488801:269530 -k1,15902:28539314,7488801:269530 -(1,15902:28539314,7488801:0,435480,115847 -r1,15937:29952715,7488801:1413401,551327,115847 -k1,15902:28539314,7488801:-1413401 -) -(1,15902:28539314,7488801:1413401,435480,115847 -k1,15902:28539314,7488801:3277 -h1,15902:29949438,7488801:0,411205,112570 -) -k1,15902:30222245,7488801:269530 -k1,15902:31483335,7488801:269530 -k1,15903:32583029,7488801:0 -) -(1,15903:6630773,8330289:25952256,513147,126483 -k1,15902:8955132,8330289:231139 -k1,15902:10580222,8330289:231139 -(1,15902:10580222,8330289:0,452978,115847 -r1,15937:11290200,8330289:709978,568825,115847 -k1,15902:10580222,8330289:-709978 -) -(1,15902:10580222,8330289:709978,452978,115847 -k1,15902:10580222,8330289:3277 -h1,15902:11286923,8330289:0,411205,112570 -) -k1,15902:11521339,8330289:231139 -k1,15902:14591498,8330289:231139 -k1,15902:15474065,8330289:231139 -k1,15902:17180419,8330289:231139 -k1,15902:18430643,8330289:231139 -k1,15902:19996750,8330289:231139 -k1,15902:24477243,8330289:231139 -k1,15902:27461549,8330289:231139 -k1,15902:28454216,8330289:231139 -(1,15902:28454216,8330289:0,435480,115847 -r1,15937:29867617,8330289:1413401,551327,115847 -k1,15902:28454216,8330289:-1413401 -) -(1,15902:28454216,8330289:1413401,435480,115847 -k1,15902:28454216,8330289:3277 -h1,15902:29864340,8330289:0,411205,112570 -) -k1,15902:30098756,8330289:231139 -k1,15902:31521340,8330289:231139 -(1,15902:31521340,8330289:0,435480,115847 -r1,15937:32583029,8330289:1061689,551327,115847 -k1,15902:31521340,8330289:-1061689 -) -(1,15902:31521340,8330289:1061689,435480,115847 -k1,15902:31521340,8330289:3277 -h1,15902:32579752,8330289:0,411205,112570 -) -k1,15902:32583029,8330289:0 -) -(1,15903:6630773,9171777:25952256,513147,134348 -k1,15902:8534958,9171777:166170 -k1,15902:11260309,9171777:166170 -k1,15902:12244368,9171777:166170 -k1,15902:17797597,9171777:166170 -k1,15902:20146117,9171777:166171 -k1,15902:24387971,9171777:166170 -k1,15902:25891075,9171777:166170 -k1,15902:27419739,9171777:166170 -k1,15902:29745320,9171777:166170 -k1,15902:32583029,9171777:0 -) -(1,15903:6630773,10013265:25952256,513147,134348 -g1,15902:9764704,10013265 -(1,15902:9764704,10013265:0,452978,115847 -r1,15937:10474682,10013265:709978,568825,115847 -k1,15902:9764704,10013265:-709978 -) -(1,15902:9764704,10013265:709978,452978,115847 -k1,15902:9764704,10013265:3277 -h1,15902:10471405,10013265:0,411205,112570 -) -g1,15902:10673911,10013265 -g1,15902:12611155,10013265 -g1,15902:14132245,10013265 -g1,15902:14998630,10013265 -g1,15902:15612702,10013265 -g1,15902:16343428,10013265 -g1,15902:18255113,10013265 -g1,15902:19105770,10013265 -g1,15902:21532568,10013265 -g1,15902:22750882,10013265 -k1,15903:32583029,10013265:7516105 -g1,15903:32583029,10013265 -) -(1,15905:6630773,10854753:25952256,513147,134348 -h1,15904:6630773,10854753:983040,0,0 -k1,15904:9526280,10854753:175763 -k1,15904:11023903,10854753:175762 -k1,15904:11858958,10854753:175763 -k1,15904:13053805,10854753:175762 -k1,15904:13644388,10854753:175740 -k1,15904:16836117,10854753:175762 -(1,15904:16836117,10854753:0,452978,115847 -r1,15937:17546095,10854753:709978,568825,115847 -k1,15904:16836117,10854753:-709978 -) -(1,15904:16836117,10854753:709978,452978,115847 -k1,15904:16836117,10854753:3277 -h1,15904:17542818,10854753:0,411205,112570 -) -k1,15904:17721858,10854753:175763 -k1,15904:19030082,10854753:175762 -k1,15904:21433414,10854753:175763 -k1,15904:24393146,10854753:175763 -k1,15904:25760353,10854753:175762 -k1,15904:27537816,10854753:175763 -k1,15904:29426034,10854753:175762 -k1,15904:30887613,10854753:175763 -k1,15905:32583029,10854753:0 -) -(1,15905:6630773,11696241:25952256,505283,134348 -k1,15904:8870990,11696241:323944 -k1,15904:12904272,11696241:323944 -k1,15904:14917735,11696241:323945 -k1,15904:18152133,11696241:323944 -k1,15904:20244894,11696241:323944 -k1,15904:21316604,11696241:323944 -k1,15904:25165730,11696241:323944 -k1,15904:26172560,11696241:323945 -k1,15904:29988918,11696241:323944 -k1,15904:31074390,11696241:323944 -k1,15904:32583029,11696241:0 -) -(1,15905:6630773,12537729:25952256,513147,126483 -k1,15904:10846558,12537729:255444 -k1,15904:12144025,12537729:255445 -k1,15904:13602710,12537729:255444 -k1,15904:16163056,12537729:255445 -k1,15904:16876597,12537729:255444 -k1,15904:17663539,12537729:255445 -k1,15904:21184642,12537729:255444 -k1,15904:22091515,12537729:255445 -k1,15904:23439444,12537729:255444 -k1,15904:24713974,12537729:255445 -(1,15904:24713974,12537729:0,452978,115847 -r1,15937:25423952,12537729:709978,568825,115847 -k1,15904:24713974,12537729:-709978 -) -(1,15904:24713974,12537729:709978,452978,115847 -k1,15904:24713974,12537729:3277 -h1,15904:25420675,12537729:0,411205,112570 -) -k1,15904:25679396,12537729:255444 -k1,15904:26550879,12537729:255445 -k1,15904:28967700,12537729:255444 -k1,15904:29906030,12537729:255445 -k1,15904:31657661,12537729:255444 -k1,15905:32583029,12537729:0 -) -(1,15905:6630773,13379217:25952256,505283,126483 -k1,15904:9076532,13379217:319116 -k1,15904:10047075,13379217:319115 -k1,15904:11113957,13379217:319116 -k1,15904:13755668,13379217:319115 -k1,15904:16117541,13379217:319116 -k1,15904:20645379,13379217:319116 -k1,15904:22358445,13379217:319115 -k1,15904:23092284,13379217:318996 -k1,15904:26075438,13379217:319115 -k1,15904:28428136,13379217:319116 -k1,15904:30189698,13379217:319115 -k1,15904:32051532,13379217:319116 -k1,15904:32583029,13379217:0 -) -(1,15905:6630773,14220705:25952256,505283,7863 -k1,15905:32583029,14220705:23480238 -g1,15905:32583029,14220705 -) -(1,15907:6630773,15062193:25952256,513147,126483 -h1,15906:6630773,15062193:983040,0,0 -k1,15906:8463038,15062193:221390 -k1,15906:9703513,15062193:221390 -k1,15906:11147805,15062193:221390 -k1,15906:12028487,15062193:221390 -k1,15906:13268962,15062193:221390 -k1,15906:15072391,15062193:221390 -k1,15906:16991820,15062193:221391 -k1,15906:19843170,15062193:221390 -k1,15906:20277529,15062193:221367 -k1,15906:21631382,15062193:221391 -k1,15906:22945257,15062193:221390 -k1,15906:24085462,15062193:221390 -k1,15906:26027172,15062193:221390 -k1,15906:27440007,15062193:221390 -k1,15906:28753882,15062193:221390 -k1,15906:29591310,15062193:221390 -k1,15906:32583029,15062193:0 -) -(1,15907:6630773,15903681:25952256,513147,134348 -k1,15906:7882583,15903681:232725 -(1,15906:7882583,15903681:0,414482,115847 -r1,15937:8240849,15903681:358266,530329,115847 -k1,15906:7882583,15903681:-358266 -) -(1,15906:7882583,15903681:358266,414482,115847 -k1,15906:7882583,15903681:3277 -h1,15906:8237572,15903681:0,411205,112570 -) -k1,15906:8473574,15903681:232725 -k1,15906:12439886,15903681:232726 -k1,15906:13324039,15903681:232725 -k1,15906:16335491,15903681:232725 -k1,15906:21396909,15903681:232725 -k1,15906:22257469,15903681:232725 -k1,15906:24091894,15903681:232725 -k1,15906:26022002,15903681:232726 -k1,15906:27273812,15903681:232725 -k1,15906:30498256,15903681:232725 -k1,15906:31835263,15903681:232725 -k1,15906:32583029,15903681:0 -) -(1,15907:6630773,16745169:25952256,505283,134348 -g1,15906:8630931,16745169 -g1,15906:11752410,16745169 -g1,15906:13687032,16745169 -g1,15906:16632875,16745169 -(1,15906:16632875,16745169:0,435480,115847 -r1,15937:17694564,16745169:1061689,551327,115847 -k1,15906:16632875,16745169:-1061689 -) -(1,15906:16632875,16745169:1061689,435480,115847 -k1,15906:16632875,16745169:3277 -h1,15906:17691287,16745169:0,411205,112570 -) -k1,15907:32583029,16745169:14714795 -g1,15907:32583029,16745169 -) -(1,15909:6630773,17586657:25952256,513147,134348 -h1,15908:6630773,17586657:983040,0,0 -k1,15908:9439562,17586657:150649 -k1,15908:10694492,17586657:150648 -k1,15908:11592907,17586657:150649 -k1,15908:13256781,17586657:150648 -k1,15908:14801381,17586657:150649 -k1,15908:16083836,17586657:150648 -k1,15908:16649280,17586657:150601 -k1,15908:19669094,17586657:150648 -k1,15908:20891912,17586657:150649 -k1,15908:22372941,17586657:150648 -k1,15908:24825214,17586657:150649 -k1,15908:26080144,17586657:150648 -k1,15908:26978559,17586657:150649 -k1,15908:28637846,17586657:150648 -k1,15908:29880980,17586657:150649 -k1,15908:32583029,17586657:0 -) -(1,15909:6630773,18428145:25952256,513147,134348 -k1,15908:7642750,18428145:202607 -k1,15908:8864442,18428145:202607 -k1,15908:10806375,18428145:202607 -k1,15908:11668274,18428145:202607 -k1,15908:13999490,18428145:202607 -k1,15908:17986801,18428145:202607 -k1,15908:19570251,18428145:202606 -k1,15908:20304355,18428145:202607 -k1,15908:23614679,18428145:202607 -k1,15908:24836371,18428145:202607 -k1,15908:26406059,18428145:202607 -k1,15908:28306704,18428145:202607 -k1,15908:30936765,18428145:202607 -k1,15909:32583029,18428145:0 -) -(1,15909:6630773,19269633:25952256,513147,126483 -k1,15908:8842894,19269633:242764 -k1,15908:12091794,19269633:242764 -k1,15908:12985986,19269633:242764 -k1,15908:14247835,19269633:242764 -k1,15908:15796732,19269633:242764 -k1,15908:19320228,19269633:242764 -k1,15908:20222284,19269633:242764 -k1,15908:21484132,19269633:242763 -k1,15908:24422392,19269633:242764 -k1,15908:25474526,19269633:242764 -k1,15908:26736375,19269633:242764 -k1,15908:28162719,19269633:242764 -k1,15908:30661888,19269633:242764 -k1,15908:31563944,19269633:242764 -k1,15908:32583029,19269633:0 -) -(1,15909:6630773,20111121:25952256,513147,134348 -k1,15908:9903859,20111121:247289 -k1,15908:11342593,20111121:247289 -k1,15908:14374507,20111121:247289 -k1,15908:17003374,20111121:247289 -k1,15908:17866701,20111121:247289 -k1,15908:20092523,20111121:247290 -k1,15908:22486116,20111121:247289 -k1,15908:23924850,20111121:247289 -k1,15908:24527999,20111121:247289 -k1,15908:25908406,20111121:247289 -k1,15908:27857665,20111121:247289 -k1,15908:31015408,20111121:247289 -k1,15908:32583029,20111121:0 -) -(1,15909:6630773,20952609:25952256,513147,126483 -g1,15908:7849087,20952609 -g1,15908:11256303,20952609 -g1,15908:12143005,20952609 -g1,15908:13545475,20952609 -k1,15909:32583029,20952609:17333618 -g1,15909:32583029,20952609 -) -(1,15911:6630773,21794097:25952256,513147,134348 -h1,15910:6630773,21794097:983040,0,0 -k1,15910:10241151,21794097:284426 -k1,15910:10881438,21794097:284427 -k1,15910:13010702,21794097:284426 -k1,15910:13954420,21794097:284426 -k1,15910:17755509,21794097:284427 -k1,15910:19231380,21794097:284426 -k1,15910:21549388,21794097:284426 -k1,15910:25891803,21794097:284426 -k1,15910:28349404,21794097:284427 -k1,15910:29249868,21794097:284426 -k1,15910:32583029,21794097:0 -) -(1,15911:6630773,22635585:25952256,505283,134348 -k1,15910:9659574,22635585:187160 -k1,15910:11892767,22635585:187159 -k1,15910:15401947,22635585:187160 -k1,15910:17932019,22635585:187160 -k1,15910:21523774,22635585:187160 -k1,15910:23431253,22635585:187159 -k1,15910:24149910,22635585:187160 -k1,15910:25403341,22635585:187160 -k1,15910:26276663,22635585:187160 -k1,15910:28032099,22635585:187159 -k1,15910:28905421,22635585:187160 -k1,15910:30295822,22635585:187160 -k1,15910:32583029,22635585:0 -) -(1,15911:6630773,23477073:25952256,513147,134348 -k1,15910:9447145,23477073:194277 -k1,15910:12302838,23477073:194276 -k1,15910:14309841,23477073:194277 -k1,15910:15898068,23477073:194276 -k1,15910:17249055,23477073:194277 -k1,15910:20427841,23477073:194276 -k1,15910:22360133,23477073:194277 -k1,15910:23573495,23477073:194277 -k1,15910:26617276,23477073:194276 -k1,15910:27470845,23477073:194277 -k1,15910:29095117,23477073:194276 -k1,15910:29940822,23477073:194277 -(1,15910:29940822,23477073:0,452978,115847 -r1,15937:32409359,23477073:2468537,568825,115847 -k1,15910:29940822,23477073:-2468537 -) -(1,15910:29940822,23477073:2468537,452978,115847 -k1,15910:29940822,23477073:3277 -h1,15910:32406082,23477073:0,411205,112570 -) -k1,15910:32583029,23477073:0 -) -(1,15911:6630773,24318561:25952256,505283,126483 -k1,15910:8202125,24318561:190508 -k1,15910:8924130,24318561:190508 -k1,15910:11918268,24318561:190508 -k1,15910:14638467,24318561:190509 -(1,15910:14638467,24318561:0,452978,115847 -r1,15937:17107004,24318561:2468537,568825,115847 -k1,15910:14638467,24318561:-2468537 -) -(1,15910:14638467,24318561:2468537,452978,115847 -k1,15910:14638467,24318561:3277 -h1,15910:17103727,24318561:0,411205,112570 -) -k1,15910:17297512,24318561:190508 -k1,15910:19828966,24318561:190508 -k1,15910:20807872,24318561:190508 -k1,15910:22706904,24318561:190508 -k1,15910:25569970,24318561:190508 -k1,15910:26376517,24318561:190509 -k1,15910:29233030,24318561:190508 -k1,15910:30074966,24318561:190508 -k1,15911:32583029,24318561:0 -) -(1,15911:6630773,25160049:25952256,473825,134348 -g1,15910:7820251,25160049 -k1,15911:32583030,25160049:24131012 -g1,15911:32583030,25160049 -) -v1,15913:6630773,26350515:0,393216,0 -(1,15929:6630773,31286582:25952256,5329283,196608 -g1,15929:6630773,31286582 -g1,15929:6630773,31286582 -g1,15929:6434165,31286582 -(1,15929:6434165,31286582:0,5329283,196608 -r1,15937:32779637,31286582:26345472,5525891,196608 -k1,15929:6434165,31286582:-26345472 -) -(1,15929:6434165,31286582:26345472,5329283,196608 -[1,15929:6630773,31286582:25952256,5132675,0 -(1,15915:6630773,26558133:25952256,404226,101187 -(1,15914:6630773,26558133:0,0,0 -g1,15914:6630773,26558133 -g1,15914:6630773,26558133 -g1,15914:6303093,26558133 -(1,15914:6303093,26558133:0,0,0 -) -g1,15914:6630773,26558133 -) -g1,15915:9159939,26558133 -g1,15915:10108377,26558133 -g1,15915:12637542,26558133 -g1,15915:13585980,26558133 -g1,15915:15799000,26558133 -g1,15915:16747438,26558133 -g1,15915:19276603,26558133 -g1,15915:20225041,26558133 -g1,15915:22121915,26558133 -g1,15915:23070353,26558133 -g1,15915:25599518,26558133 -g1,15915:26547956,26558133 -h1,15915:29709413,26558133:0,0,0 -k1,15915:32583029,26558133:2873616 -g1,15915:32583029,26558133 -) -(1,15922:6630773,27224311:25952256,404226,76021 -(1,15917:6630773,27224311:0,0,0 -g1,15917:6630773,27224311 -g1,15917:6630773,27224311 -g1,15917:6303093,27224311 -(1,15917:6303093,27224311:0,0,0 -) -g1,15917:6630773,27224311 -) -g1,15922:7579210,27224311 -g1,15922:7895356,27224311 -g1,15922:9159939,27224311 -g1,15922:9476085,27224311 -g1,15922:10108377,27224311 -g1,15922:10424523,27224311 -g1,15922:11056815,27224311 -g1,15922:11372961,27224311 -g1,15922:12005253,27224311 -g1,15922:12321399,27224311 -g1,15922:12953691,27224311 -g1,15922:13269837,27224311 -g1,15922:13902129,27224311 -g1,15922:14218275,27224311 -g1,15922:14850567,27224311 -g1,15922:15166713,27224311 -g1,15922:15799005,27224311 -g1,15922:16115151,27224311 -g1,15922:16747443,27224311 -g1,15922:17063589,27224311 -g1,15922:17695881,27224311 -h1,15922:18328172,27224311:0,0,0 -k1,15922:32583029,27224311:14254857 -g1,15922:32583029,27224311 -) -(1,15922:6630773,27890489:25952256,404226,76021 -h1,15922:6630773,27890489:0,0,0 -g1,15922:7579210,27890489 -g1,15922:7895356,27890489 -g1,15922:9159939,27890489 -g1,15922:12005250,27890489 -g1,15922:14850561,27890489 -g1,15922:17695872,27890489 -g1,15922:20541183,27890489 -g1,15922:23386494,27890489 -g1,15922:26231805,27890489 -g1,15922:29077116,27890489 -h1,15922:31606281,27890489:0,0,0 -k1,15922:32583029,27890489:976748 -g1,15922:32583029,27890489 -) -(1,15922:6630773,28556667:25952256,404226,76021 -h1,15922:6630773,28556667:0,0,0 -g1,15922:7579210,28556667 -g1,15922:7895356,28556667 -g1,15922:9159939,28556667 -g1,15922:12005250,28556667 -h1,15922:14534415,28556667:0,0,0 -k1,15922:32583029,28556667:18048614 -g1,15922:32583029,28556667 -) -(1,15922:6630773,29222845:25952256,404226,76021 -h1,15922:6630773,29222845:0,0,0 -g1,15922:7579210,29222845 -g1,15922:8843793,29222845 -h1,15922:11372958,29222845:0,0,0 -k1,15922:32583030,29222845:21210072 -g1,15922:32583030,29222845 -) -(1,15924:6630773,30544383:25952256,404226,9436 -(1,15923:6630773,30544383:0,0,0 -g1,15923:6630773,30544383 -g1,15923:6630773,30544383 -g1,15923:6303093,30544383 -(1,15923:6303093,30544383:0,0,0 -) -g1,15923:6630773,30544383 -) -h1,15924:9792230,30544383:0,0,0 -k1,15924:32583030,30544383:22790800 -g1,15924:32583030,30544383 -) -(1,15928:6630773,31210561:25952256,404226,76021 -(1,15926:6630773,31210561:0,0,0 -g1,15926:6630773,31210561 -g1,15926:6630773,31210561 -g1,15926:6303093,31210561 -(1,15926:6303093,31210561:0,0,0 -) -g1,15926:6630773,31210561 -) -g1,15928:7579210,31210561 -g1,15928:8843793,31210561 -h1,15928:11372958,31210561:0,0,0 -k1,15928:32583030,31210561:21210072 -g1,15928:32583030,31210561 -) -] -) -g1,15929:32583029,31286582 -g1,15929:6630773,31286582 -g1,15929:6630773,31286582 -g1,15929:32583029,31286582 -g1,15929:32583029,31286582 -) -h1,15929:6630773,31483190:0,0,0 -(1,15933:6630773,32848966:25952256,513147,134348 -h1,15932:6630773,32848966:983040,0,0 -k1,15932:11196061,32848966:177653 -k1,15932:13491182,32848966:177653 -k1,15932:16364331,32848966:177653 -k1,15932:17971979,32848966:177652 -k1,15932:18681129,32848966:177653 -k1,15932:19877867,32848966:177653 -k1,15932:21657220,32848966:177653 -k1,15932:24318688,32848966:177653 -k1,15932:25182503,32848966:177653 -k1,15932:26638762,32848966:177652 -k1,15932:27502577,32848966:177653 -k1,15932:29176417,32848966:177653 -k1,15932:31089463,32848966:177653 -k1,15932:32583029,32848966:0 -) -(1,15933:6630773,33690454:25952256,513147,134348 -k1,15932:8315868,33690454:255099 -k1,15932:9102464,33690454:255099 -k1,15932:11841378,33690454:255099 -k1,15932:12747905,33690454:255099 -k1,15932:14588974,33690454:255098 -k1,15932:15767475,33690454:255099 -k1,15932:16638612,33690454:255099 -k1,15932:19400463,33690454:255099 -k1,15932:20113659,33690454:255099 -k1,15932:20900255,33690454:255099 -k1,15932:22739359,33690454:255099 -k1,15932:23645886,33690454:255099 -k1,15932:24993469,33690454:255098 -k1,15932:26968888,33690454:255099 -k1,15932:29551170,33690454:255099 -k1,15932:30465561,33690454:255099 -k1,15932:32583029,33690454:0 -) -(1,15933:6630773,34531942:25952256,513147,134348 -k1,15932:9519096,34531942:192827 -k1,15932:11315589,34531942:192827 -k1,15932:14443118,34531942:192827 -k1,15932:15094042,34531942:192827 -k1,15932:15818366,34531942:192827 -k1,15932:17346161,34531942:192827 -k1,15932:18190417,34531942:192828 -k1,15932:20112739,34531942:192827 -k1,15932:21659540,34531942:192827 -k1,15932:23241075,34531942:192827 -k1,15932:25327892,34531942:192827 -k1,15932:28442969,34531942:192827 -k1,15932:30325314,34531942:192827 -k1,15932:32583029,34531942:0 -) -(1,15933:6630773,35373430:25952256,513147,134348 -k1,15932:9011423,35373430:219273 -k1,15932:9913580,35373430:219272 -k1,15932:13146198,35373430:219273 -k1,15932:14754833,35373430:219272 -k1,15932:15432203,35373430:219273 -k1,15932:16182972,35373430:219272 -k1,15932:19611543,35373430:219273 -k1,15932:20482243,35373430:219272 -k1,15932:22523417,35373430:219273 -k1,15932:23761774,35373430:219272 -k1,15932:27646476,35373430:219273 -k1,15932:28525040,35373430:219272 -k1,15932:32583029,35373430:0 -) -(1,15933:6630773,36214918:25952256,513147,134348 -g1,15932:9176846,36214918 -g1,15932:10100903,36214918 -g1,15932:12333714,36214918 -g1,15932:14171998,36214918 -g1,15932:15022655,36214918 -g1,15932:18063525,36214918 -g1,15932:19367036,36214918 -g1,15932:20956939,36214918 -g1,15932:22581576,36214918 -g1,15932:23972250,36214918 -k1,15933:32583029,36214918:6664360 -g1,15933:32583029,36214918 -) -(1,15935:6630773,37056406:25952256,513147,134348 -h1,15934:6630773,37056406:983040,0,0 -k1,15934:9044737,37056406:234237 -k1,15934:11367605,37056406:234236 -k1,15934:12268998,37056406:234237 -k1,15934:13422050,37056406:234237 -k1,15934:15589598,37056406:234236 -k1,15934:17544155,37056406:234237 -k1,15934:18879397,37056406:234237 -k1,15934:22079137,37056406:234236 -k1,15934:23880995,37056406:234237 -k1,15934:25134317,37056406:234237 -k1,15934:28781668,37056406:234236 -k1,15934:31821501,37056406:234237 -k1,15934:32583029,37056406:0 -) -(1,15935:6630773,37897894:25952256,505283,134348 -k1,15934:8879817,37897894:215462 -k1,15934:14482338,37897894:215462 -k1,15934:15889245,37897894:215462 -k1,15934:17842722,37897894:215462 -k1,15934:19388565,37897894:215462 -k1,15934:20925888,37897894:215462 -k1,15934:22160435,37897894:215462 -k1,15934:25391864,37897894:215462 -k1,15934:26475678,37897894:215462 -k1,15934:27795422,37897894:215462 -k1,15934:30081822,37897894:215462 -k1,15934:30755381,37897894:215462 -k1,15934:31622271,37897894:215462 -k1,15935:32583029,37897894:0 -) -(1,15935:6630773,38739382:25952256,513147,134348 -k1,15934:8595815,38739382:269626 -k1,15934:9884526,38739382:269626 -k1,15934:13133419,38739382:269626 -k1,15934:14559755,38739382:269626 -k1,15934:16319670,38739382:269626 -k1,15934:17377694,38739382:269626 -k1,15934:22704078,38739382:269626 -k1,15934:23505201,38739382:269626 -k1,15934:25844454,38739382:269626 -k1,15934:27310767,38739382:269626 -k1,15934:30635026,38739382:269626 -k1,15934:31563944,38739382:269626 -k1,15934:32583029,38739382:0 -) -(1,15935:6630773,39580870:25952256,505283,134348 -k1,15934:8551175,39580870:265618 -k1,15934:14203851,39580870:265617 -k1,15934:15944684,39580870:265618 -k1,15934:16861729,39580870:265617 -k1,15934:18819487,39580870:265618 -k1,15934:21073466,39580870:265617 -k1,15934:24425174,39580870:265618 -k1,15934:25306829,39580870:265617 -k1,15934:27081086,39580870:265618 -k1,15934:29435335,39580870:265617 -k1,15934:32583029,39580870:0 -) -(1,15935:6630773,40422358:25952256,513147,126483 -k1,15934:11347876,40422358:196429 -k1,15934:13236446,40422358:196430 -k1,15934:16949537,40422358:196429 -k1,15934:18137526,40422358:196429 -k1,15934:19984152,40422358:196429 -k1,15934:21623029,40422358:196430 -k1,15934:24837391,40422358:196429 -k1,15934:25448660,40422358:196426 -k1,15934:27365409,40422358:196429 -k1,15934:28553399,40422358:196430 -k1,15934:31336534,40422358:196429 -k1,15935:32583029,40422358:0 -) -(1,15935:6630773,41263846:25952256,513147,134348 -k1,15934:7703644,41263846:235976 -k1,15934:8591049,41263846:235977 -k1,15934:9919510,41263846:235976 -k1,15934:11346931,41263846:235976 -k1,15934:14421927,41263846:235976 -k1,15934:15309332,41263846:235977 -k1,15934:16293074,41263846:235976 -k1,15934:18845092,41263846:235976 -k1,15934:21002585,41263846:235977 -k1,15934:22806182,41263846:235976 -k1,15934:25987345,41263846:235976 -k1,15934:27214881,41263846:235976 -k1,15934:28469943,41263846:235977 -k1,15934:30307619,41263846:235976 -k1,15934:32583029,41263846:0 -) -(1,15935:6630773,42105334:25952256,513147,134348 -k1,15934:8328055,42105334:285636 -k1,15934:9685860,42105334:285636 -k1,15934:11037767,42105334:285636 -k1,15934:12009565,42105334:285636 -k1,15934:13593469,42105334:285636 -k1,15934:14530533,42105334:285636 -k1,15934:16082324,42105334:285635 -k1,15934:17559405,42105334:285636 -k1,15934:21663824,42105334:285636 -k1,15934:23644221,42105334:285636 -k1,15934:24285717,42105334:285636 -k1,15934:26221550,42105334:285636 -k1,15934:29193507,42105334:285636 -k1,15935:32583029,42105334:0 -) -(1,15935:6630773,42946822:25952256,505283,134348 -k1,15934:8932397,42946822:247726 -k1,15934:10199208,42946822:247726 -k1,15934:13006115,42946822:247726 -k1,15934:15788774,42946822:247726 -k1,15934:18199187,42946822:247726 -k1,15934:18978411,42946822:247727 -k1,15934:19996840,42946822:247726 -k1,15934:22759182,42946822:247726 -k1,15934:23658336,42946822:247726 -k1,15934:26534711,42946822:247726 -k1,15934:28502757,42946822:247726 -k1,15934:31931601,42946822:247726 -k1,15934:32583029,42946822:0 -) -(1,15935:6630773,43788310:25952256,513147,134348 -k1,15934:9852958,43788310:276998 -k1,15934:12858221,43788310:276999 -k1,15934:13751257,43788310:276998 -k1,15934:16872518,43788310:276998 -k1,15934:20280827,43788310:276999 -k1,15934:21749270,43788310:276998 -k1,15934:26275622,43788310:276998 -k1,15934:27471435,43788310:276998 -(1,15934:27471435,43788310:0,452978,115847 -r1,15937:28181413,43788310:709978,568825,115847 -k1,15934:27471435,43788310:-709978 -) -(1,15934:27471435,43788310:709978,452978,115847 -k1,15934:27471435,43788310:3277 -h1,15934:28178136,43788310:0,411205,112570 -) -k1,15934:28458412,43788310:276999 -k1,15934:31482024,43788310:276998 -k1,15934:32583029,43788310:0 -) -(1,15935:6630773,44629798:25952256,505283,134348 -k1,15934:8413960,44629798:273237 -k1,15934:11736586,44629798:273236 -k1,15934:13637082,44629798:273237 -k1,15934:14698716,44629798:273236 -k1,15934:17637958,44629798:273237 -k1,15934:18527232,44629798:273236 -k1,15934:19215237,44629798:273162 -k1,15934:20864075,44629798:273237 -k1,15934:22309750,44629798:273236 -k1,15934:24265952,44629798:273237 -k1,15934:25837456,44629798:273236 -k1,15934:27985023,44629798:273237 -k1,15934:32583029,44629798:0 -) -(1,15935:6630773,45471286:25952256,505283,126483 -g1,15934:8305217,45471286 -g1,15934:9270562,45471286 -g1,15934:10979741,45471286 -g1,15934:14577667,45471286 -k1,15935:32583029,45471286:14296024 -g1,15935:32583029,45471286 -) -] -(1,15937:32583029,45706769:0,0,0 -g1,15937:32583029,45706769 -) -) -] -(1,15937:6630773,47279633:25952256,0,0 -h1,15937:6630773,47279633:25952256,0,0 -) -] -(1,15937:4262630,4025873:0,0,0 -[1,15937:-473656,4025873:0,0,0 -(1,15937:-473656,-710413:0,0,0 -(1,15937:-473656,-710413:0,0,0 -g1,15937:-473656,-710413 -) -g1,15937:-473656,-710413 -) -] -) -] -!28425 -}272 -Input:2329:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2330:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2331:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2332:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2333:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2334:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2335:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!670 -{273 -[1,16005:4262630,47279633:28320399,43253760,0 -(1,16005:4262630,4025873:0,0,0 -[1,16005:-473656,4025873:0,0,0 -(1,16005:-473656,-710413:0,0,0 -(1,16005:-473656,-644877:0,0,0 -k1,16005:-473656,-644877:-65536 +(1,15744:6434165,8911489:26345472,3050608,196608 +[1,15744:6630773,8911489:25952256,2854000,0 +(1,15736:6630773,6481928:25952256,424439,79822 +(1,15734:6630773,6481928:0,0,0 +g1,15734:6630773,6481928 +g1,15734:6630773,6481928 +g1,15734:6303093,6481928 +(1,15734:6303093,6481928:0,0,0 +) +g1,15734:6630773,6481928 +) +g1,15736:7626635,6481928 +g1,15736:8954451,6481928 +h1,15736:10614221,6481928:0,0,0 +k1,15736:32583029,6481928:21968808 +g1,15736:32583029,6481928 +) +(1,15738:6630773,7297855:25952256,431045,106246 +(1,15737:6630773,7297855:0,0,0 +g1,15737:6630773,7297855 +g1,15737:6630773,7297855 +g1,15737:6303093,7297855 +(1,15737:6303093,7297855:0,0,0 +) +g1,15737:6630773,7297855 +) +k1,15738:6630773,7297855:0 +h1,15738:14597667,7297855:0,0,0 +k1,15738:32583029,7297855:17985362 +g1,15738:32583029,7297855 +) +(1,15743:6630773,8113782:25952256,431045,112852 +(1,15740:6630773,8113782:0,0,0 +g1,15740:6630773,8113782 +g1,15740:6630773,8113782 +g1,15740:6303093,8113782 +(1,15740:6303093,8113782:0,0,0 +) +g1,15740:6630773,8113782 +) +g1,15743:7626635,8113782 +g1,15743:11278128,8113782 +h1,15743:14929621,8113782:0,0,0 +k1,15743:32583029,8113782:17653408 +g1,15743:32583029,8113782 +) +(1,15743:6630773,8798637:25952256,424439,112852 +h1,15743:6630773,8798637:0,0,0 +g1,15743:7626635,8798637 +g1,15743:9950313,8798637 +g1,15743:13601806,8798637 +g1,15743:16589391,8798637 +g1,15743:19576977,8798637 +g1,15743:22896516,8798637 +h1,15743:25220194,8798637:0,0,0 +k1,15743:32583029,8798637:7362835 +g1,15743:32583029,8798637 +) +] +) +g1,15744:32583029,8911489 +g1,15744:6630773,8911489 +g1,15744:6630773,8911489 +g1,15744:32583029,8911489 +g1,15744:32583029,8911489 +) +h1,15744:6630773,9108097:0,0,0 +v1,15748:6630773,9973177:0,393216,0 +(1,15871:6630773,45087088:25952256,35507127,0 +g1,15871:6630773,45087088 +g1,15871:6237557,45087088 +r1,15871:6368629,45087088:131072,35507127,0 +g1,15871:6567858,45087088 +g1,15871:6764466,45087088 +[1,15871:6764466,45087088:25818563,35507127,0 +(1,15749:6764466,10281475:25818563,701514,196608 +(1,15748:6764466,10281475:0,701514,196608 +r1,15871:8010564,10281475:1246098,898122,196608 +k1,15748:6764466,10281475:-1246098 +) +(1,15748:6764466,10281475:1246098,701514,196608 +) +k1,15748:8229073,10281475:218509 +k1,15748:8556753,10281475:327680 +k1,15748:9918866,10281475:218510 +k1,15748:10903491,10281475:218509 +k1,15748:14598685,10281475:218509 +k1,15748:17842992,10281475:218510 +k1,15748:19657958,10281475:218509 +k1,15748:23723431,10281475:218510 +k1,15748:25639978,10281475:218509 +k1,15748:29241455,10281475:218509 +k1,15748:31027586,10281475:218510 +k1,15748:31601955,10281475:218509 +k1,15749:32583029,10281475:0 +) +(1,15749:6764466,11146555:25818563,513147,134348 +k1,15748:8623395,11146555:244122 +k1,15748:10422685,11146555:244121 +k1,15748:11934273,11146555:244122 +k1,15748:12966792,11146555:244121 +k1,15748:15468629,11146555:244122 +k1,15748:16909438,11146555:244122 +k1,15748:19284790,11146555:244121 +k1,15748:20476563,11146555:244122 +k1,15748:21923925,11146555:244121 +k1,15748:22699544,11146555:244122 +k1,15748:27248070,11146555:244121 +k1,15748:30127395,11146555:244122 +k1,15748:32583029,11146555:0 +) +(1,15749:6764466,12011635:25818563,505283,134348 +k1,15748:7754019,12011635:180183 +k1,15748:9482818,12011635:180183 +k1,15748:10682085,12011635:180182 +k1,15748:13105565,12011635:180183 +k1,15748:16045469,12011635:180183 +k1,15748:16757149,12011635:180183 +k1,15748:18792001,12011635:180183 +k1,15748:19781553,12011635:180182 +k1,15748:21470375,12011635:180183 +k1,15748:22842003,12011635:180183 +k1,15748:25258930,12011635:180183 +k1,15748:26692817,12011635:180183 +k1,15748:27864560,12011635:180183 +k1,15748:29111013,12011635:180182 +k1,15748:31003652,12011635:180183 +k1,15748:31835263,12011635:180183 +k1,15748:32583029,12011635:0 +) +(1,15749:6764466,12876715:25818563,513147,134348 +g1,15748:7836635,12876715 +g1,15748:8797392,12876715 +g1,15748:10199862,12876715 +g1,15748:13075581,12876715 +g1,15748:16753461,12876715 +g1,15748:18024859,12876715 +g1,15748:18682185,12876715 +g1,15748:19985696,12876715 +g1,15748:20932691,12876715 +g1,15748:23615735,12876715 +g1,15748:24466392,12876715 +k1,15749:32583029,12876715:5103947 +g1,15749:32583029,12876715 +) +(1,15751:6764466,13741795:25818563,505283,134348 +h1,15750:6764466,13741795:983040,0,0 +k1,15750:8848509,13741795:147454 +k1,15750:10471177,13741795:147453 +k1,15750:12953023,13741795:147454 +k1,15750:14540302,13741795:147453 +k1,15750:15972262,13741795:147454 +k1,15750:18209658,13741795:147453 +(1,15750:18209658,13741795:0,459977,115847 +r1,15871:23491889,13741795:5282231,575824,115847 +k1,15750:18209658,13741795:-5282231 +) +(1,15750:18209658,13741795:5282231,459977,115847 +k1,15750:18209658,13741795:3277 +h1,15750:23488612,13741795:0,411205,112570 +) +k1,15750:23639343,13741795:147454 +k1,15750:24596167,13741795:147454 +k1,15750:25099480,13741795:147453 +k1,15750:27058349,13741795:147454 +k1,15750:29033601,13741795:147453 +k1,15750:30200140,13741795:147454 +k1,15750:32583029,13741795:0 +) +(1,15751:6764466,14606875:25818563,513147,134348 +k1,15750:8492297,14606875:172662 +k1,15750:11947657,14606875:172662 +k1,15750:15121213,14606875:172662 +k1,15750:15649736,14606875:172663 +k1,15750:17211761,14606875:172662 +k1,15750:19434389,14606875:172662 +k1,15750:20560600,14606875:172662 +k1,15750:21865724,14606875:172662 +k1,15750:23425128,14606875:172662 +k1,15750:24210553,14606875:172663 +k1,15750:25402300,14606875:172662 +k1,15750:27457811,14606875:172662 +k1,15750:30605152,14606875:172662 +k1,15750:32583029,14606875:0 +) +(1,15751:6764466,15471955:25818563,513147,115847 +k1,15750:9084676,15471955:282040 +k1,15750:9982754,15471955:282040 +k1,15750:11283879,15471955:282040 +(1,15750:11283879,15471955:0,452978,115847 +r1,15871:13752416,15471955:2468537,568825,115847 +k1,15750:11283879,15471955:-2468537 +) +(1,15750:11283879,15471955:2468537,452978,115847 +k1,15750:11283879,15471955:3277 +h1,15750:13749139,15471955:0,411205,112570 +) +k1,15750:14034456,15471955:282040 +k1,15750:17095223,15471955:282040 +k1,15750:18028692,15471955:282041 +k1,15750:22343818,15471955:282040 +k1,15750:23644943,15471955:282040 +k1,15750:27287014,15471955:282040 +k1,15750:28522603,15471955:282040 +k1,15750:30090459,15471955:282040 +k1,15750:31563944,15471955:282040 +k1,15750:32583029,15471955:0 +) +(1,15751:6764466,16337035:25818563,513147,134348 +k1,15750:8218340,16337035:281435 +k1,15750:10789602,16337035:281434 +k1,15750:12018688,16337035:281435 +k1,15750:15020522,16337035:281435 +k1,15750:15917994,16337035:281434 +k1,15750:17371868,16337035:281435 +k1,15750:20415646,16337035:281435 +k1,15750:22439028,16337035:281435 +k1,15750:24512216,16337035:281434 +k1,15750:25812736,16337035:281435 +k1,15750:28840785,16337035:281435 +(1,15750:28840785,16337035:0,414482,115847 +r1,15871:29550763,16337035:709978,530329,115847 +k1,15750:28840785,16337035:-709978 +) +(1,15750:28840785,16337035:709978,414482,115847 +k1,15750:28840785,16337035:3277 +h1,15750:29547486,16337035:0,411205,112570 +) +k1,15750:29832197,16337035:281434 +k1,15750:31635378,16337035:281435 +k1,15750:32583029,16337035:0 +) +(1,15751:6764466,17202115:25818563,505283,134348 +k1,15750:10325931,17202115:256484 +k1,15750:13045913,17202115:256484 +k1,15750:15706912,17202115:256483 +k1,15750:17247902,17202115:256484 +k1,15750:19876134,17202115:256484 +k1,15750:21151703,17202115:256484 +k1,15750:23061660,17202115:256484 +k1,15750:24881177,17202115:256483 +k1,15750:26929415,17202115:256484 +(1,15750:26929415,17202115:0,452978,115847 +r1,15871:30804799,17202115:3875384,568825,115847 +k1,15750:26929415,17202115:-3875384 +) +(1,15750:26929415,17202115:3875384,452978,115847 +k1,15750:26929415,17202115:3277 +h1,15750:30801522,17202115:0,411205,112570 +) +k1,15750:31061283,17202115:256484 +k1,15750:32583029,17202115:0 +) +(1,15751:6764466,18067195:25818563,505283,134348 +k1,15750:8258650,18067195:209678 +k1,15750:10758155,18067195:209677 +k1,15750:11959393,18067195:209678 +k1,15750:14394017,18067195:209677 +k1,15750:15622780,18067195:209678 +k1,15750:17659601,18067195:209677 +k1,15750:20849856,18067195:209678 +k1,15750:24168561,18067195:209677 +k1,15750:25871805,18067195:209678 +k1,15750:26767644,18067195:209677 +(1,15750:26767644,18067195:0,452978,115847 +r1,15871:29236181,18067195:2468537,568825,115847 +k1,15750:26767644,18067195:-2468537 +) +(1,15750:26767644,18067195:2468537,452978,115847 +k1,15750:26767644,18067195:3277 +h1,15750:29232904,18067195:0,411205,112570 +) +k1,15750:29619529,18067195:209678 +k1,15750:31714677,18067195:209677 +k1,15750:32583029,18067195:0 +) +(1,15751:6764466,18932275:25818563,473825,134348 +g1,15750:9397702,18932275 +g1,15750:11332324,18932275 +(1,15750:11332324,18932275:0,452978,115847 +r1,15871:13800861,18932275:2468537,568825,115847 +k1,15750:11332324,18932275:-2468537 +) +(1,15750:11332324,18932275:2468537,452978,115847 +k1,15750:11332324,18932275:3277 +h1,15750:13797584,18932275:0,411205,112570 +) +k1,15751:32583029,18932275:18608498 +g1,15751:32583029,18932275 +) +v1,15753:6764466,19617130:0,393216,0 +(1,15781:6764466,27690837:25818563,8466923,196608 +g1,15781:6764466,27690837 +g1,15781:6764466,27690837 +g1,15781:6567858,27690837 +(1,15781:6567858,27690837:0,8466923,196608 +r1,15871:32779637,27690837:26211779,8663531,196608 +k1,15781:6567857,27690837:-26211780 +) +(1,15781:6567858,27690837:26211779,8466923,196608 +[1,15781:6764466,27690837:25818563,8270315,0 +(1,15755:6764466,19844961:25818563,424439,106246 +(1,15754:6764466,19844961:0,0,0 +g1,15754:6764466,19844961 +g1,15754:6764466,19844961 +g1,15754:6436786,19844961 +(1,15754:6436786,19844961:0,0,0 +) +g1,15754:6764466,19844961 +) +k1,15755:6764466,19844961:0 +h1,15755:10747914,19844961:0,0,0 +k1,15755:32583030,19844961:21835116 +g1,15755:32583030,19844961 +) +(1,15759:6764466,20660888:25818563,431045,79822 +(1,15757:6764466,20660888:0,0,0 +g1,15757:6764466,20660888 +g1,15757:6764466,20660888 +g1,15757:6436786,20660888 +(1,15757:6436786,20660888:0,0,0 +) +g1,15757:6764466,20660888 +) +g1,15759:7760328,20660888 +g1,15759:9088144,20660888 +g1,15759:12075729,20660888 +g1,15759:12407683,20660888 +g1,15759:12739637,20660888 +g1,15759:13071591,20660888 +g1,15759:13403545,20660888 +g1,15759:15395269,20660888 +g1,15759:15727223,20660888 +g1,15759:16059177,20660888 +g1,15759:16391131,20660888 +g1,15759:16723085,20660888 +g1,15759:17055039,20660888 +g1,15759:17386993,20660888 +g1,15759:17718947,20660888 +h1,15759:21702394,20660888:0,0,0 +k1,15759:32583029,20660888:10880635 +g1,15759:32583029,20660888 +) +(1,15761:6764466,21476815:25818563,431045,106246 +(1,15760:6764466,21476815:0,0,0 +g1,15760:6764466,21476815 +g1,15760:6764466,21476815 +g1,15760:6436786,21476815 +(1,15760:6436786,21476815:0,0,0 +) +g1,15760:6764466,21476815 +) +k1,15761:6764466,21476815:0 +h1,15761:12407683,21476815:0,0,0 +k1,15761:32583029,21476815:20175346 +g1,15761:32583029,21476815 +) +(1,15765:6764466,22292742:25818563,431045,79822 +(1,15763:6764466,22292742:0,0,0 +g1,15763:6764466,22292742 +g1,15763:6764466,22292742 +g1,15763:6436786,22292742 +(1,15763:6436786,22292742:0,0,0 +) +g1,15763:6764466,22292742 +) +g1,15765:7760328,22292742 +g1,15765:9088144,22292742 +h1,15765:13071591,22292742:0,0,0 +k1,15765:32583029,22292742:19511438 +g1,15765:32583029,22292742 +) +(1,15767:6764466,23108669:25818563,431045,106246 +(1,15766:6764466,23108669:0,0,0 +g1,15766:6764466,23108669 +g1,15766:6764466,23108669 +g1,15766:6436786,23108669 +(1,15766:6436786,23108669:0,0,0 +) +g1,15766:6764466,23108669 +) +g1,15767:8756190,23108669 +g1,15767:9752052,23108669 +h1,15767:13071591,23108669:0,0,0 +k1,15767:32583029,23108669:19511438 +g1,15767:32583029,23108669 +) +(1,15774:6764466,23924596:25818563,424439,112852 +(1,15769:6764466,23924596:0,0,0 +g1,15769:6764466,23924596 +g1,15769:6764466,23924596 +g1,15769:6436786,23924596 +(1,15769:6436786,23924596:0,0,0 +) +g1,15769:6764466,23924596 +) +g1,15774:7760328,23924596 +g1,15774:8092282,23924596 +g1,15774:8424236,23924596 +g1,15774:8756190,23924596 +g1,15774:9088144,23924596 +g1,15774:9420098,23924596 +g1,15774:11411822,23924596 +g1,15774:14067454,23924596 +h1,15774:16723085,23924596:0,0,0 +k1,15774:32583029,23924596:15859944 +g1,15774:32583029,23924596 +) +(1,15774:6764466,24609451:25818563,424439,86428 +h1,15774:6764466,24609451:0,0,0 +g1,15774:7760328,24609451 +g1,15774:9420098,24609451 +g1,15774:9752052,24609451 +g1,15774:11411822,24609451 +g1,15774:11743776,24609451 +g1,15774:12075730,24609451 +g1,15774:12407684,24609451 +g1,15774:14067454,24609451 +g1,15774:14399408,24609451 +g1,15774:14731362,24609451 +g1,15774:15063316,24609451 +g1,15774:15395270,24609451 +h1,15774:16723086,24609451:0,0,0 +k1,15774:32583029,24609451:15859943 +g1,15774:32583029,24609451 +) +(1,15774:6764466,25294306:25818563,424439,86428 +h1,15774:6764466,25294306:0,0,0 +g1,15774:7760328,25294306 +g1,15774:9420098,25294306 +g1,15774:9752052,25294306 +g1,15774:11411822,25294306 +g1,15774:11743776,25294306 +g1,15774:12075730,25294306 +g1,15774:12407684,25294306 +g1,15774:14067454,25294306 +g1,15774:14399408,25294306 +g1,15774:14731362,25294306 +g1,15774:15063316,25294306 +g1,15774:15395270,25294306 +h1,15774:16723086,25294306:0,0,0 +k1,15774:32583029,25294306:15859943 +g1,15774:32583029,25294306 +) +(1,15774:6764466,25979161:25818563,424439,86428 +h1,15774:6764466,25979161:0,0,0 +g1,15774:7760328,25979161 +g1,15774:9420098,25979161 +g1,15774:9752052,25979161 +g1,15774:11411822,25979161 +g1,15774:11743776,25979161 +g1,15774:12075730,25979161 +g1,15774:12407684,25979161 +g1,15774:14067454,25979161 +g1,15774:14399408,25979161 +g1,15774:14731362,25979161 +g1,15774:15063316,25979161 +g1,15774:15395270,25979161 +h1,15774:16723086,25979161:0,0,0 +k1,15774:32583029,25979161:15859943 +g1,15774:32583029,25979161 +) +(1,15776:6764466,26795088:25818563,431045,106246 +(1,15775:6764466,26795088:0,0,0 +g1,15775:6764466,26795088 +g1,15775:6764466,26795088 +g1,15775:6436786,26795088 +(1,15775:6436786,26795088:0,0,0 +) +g1,15775:6764466,26795088 +) +k1,15776:6764466,26795088:0 +g1,15776:12407683,26795088 +h1,15776:16059176,26795088:0,0,0 +k1,15776:32583029,26795088:16523853 +g1,15776:32583029,26795088 +) +(1,15780:6764466,27611015:25818563,424439,79822 +(1,15778:6764466,27611015:0,0,0 +g1,15778:6764466,27611015 +g1,15778:6764466,27611015 +g1,15778:6436786,27611015 +(1,15778:6436786,27611015:0,0,0 +) +g1,15778:6764466,27611015 +) +g1,15780:7760328,27611015 +g1,15780:9088144,27611015 +h1,15780:10747914,27611015:0,0,0 +k1,15780:32583030,27611015:21835116 +g1,15780:32583030,27611015 +) +] +) +g1,15781:32583029,27690837 +g1,15781:6764466,27690837 +g1,15781:6764466,27690837 +g1,15781:32583029,27690837 +g1,15781:32583029,27690837 +) +h1,15781:6764466,27887445:0,0,0 +(1,15785:6764466,28752525:25818563,513147,126483 +h1,15784:6764466,28752525:983040,0,0 +k1,15784:9342746,28752525:187527 +k1,15784:10398624,28752525:187526 +k1,15784:12548299,28752525:187527 +k1,15784:14303447,28752525:187527 +k1,15784:14846833,28752525:187526 +k1,15784:17019446,28752525:187527 +k1,15784:18398417,28752525:187526 +k1,15784:20019872,28752525:187527 +k1,15784:22722015,28752525:187527 +k1,15784:23265401,28752525:187526 +k1,15784:26929613,28752525:187527 +k1,15784:28599564,28752525:187527 +k1,15784:30054556,28752525:187526 +k1,15784:30597943,28752525:187527 +k1,15785:32583029,28752525:0 +k1,15785:32583029,28752525:0 +) +v1,15787:6764466,29437380:0,393216,0 +(1,15818:6764466,39565652:25818563,10521488,196608 +g1,15818:6764466,39565652 +g1,15818:6764466,39565652 +g1,15818:6567858,39565652 +(1,15818:6567858,39565652:0,10521488,196608 +r1,15871:32779637,39565652:26211779,10718096,196608 +k1,15818:6567857,39565652:-26211780 +) +(1,15818:6567858,39565652:26211779,10521488,196608 +[1,15818:6764466,39565652:25818563,10324880,0 +(1,15789:6764466,29665211:25818563,424439,106246 +(1,15788:6764466,29665211:0,0,0 +g1,15788:6764466,29665211 +g1,15788:6764466,29665211 +g1,15788:6436786,29665211 +(1,15788:6436786,29665211:0,0,0 +) +g1,15788:6764466,29665211 +) +g1,15789:9088144,29665211 +g1,15789:10084006,29665211 +h1,15789:11743776,29665211:0,0,0 +k1,15789:32583028,29665211:20839252 +g1,15789:32583028,29665211 +) +(1,15790:6764466,30350066:25818563,424439,106246 +h1,15790:6764466,30350066:0,0,0 +g1,15790:11411821,30350066 +g1,15790:12407683,30350066 +g1,15790:15395269,30350066 +k1,15790:15395269,30350066:0 +h1,15790:20042624,30350066:0,0,0 +k1,15790:32583029,30350066:12540405 +g1,15790:32583029,30350066 +) +(1,15791:6764466,31034921:25818563,424439,106246 +h1,15791:6764466,31034921:0,0,0 +k1,15791:6764466,31034921:0 +h1,15791:11079867,31034921:0,0,0 +k1,15791:32583029,31034921:21503162 +g1,15791:32583029,31034921 +) +(1,15795:6764466,31850848:25818563,431045,79822 +(1,15793:6764466,31850848:0,0,0 +g1,15793:6764466,31850848 +g1,15793:6764466,31850848 +g1,15793:6436786,31850848 +(1,15793:6436786,31850848:0,0,0 +) +g1,15793:6764466,31850848 +) +g1,15795:7760328,31850848 +g1,15795:9088144,31850848 +g1,15795:11079868,31850848 +g1,15795:11411822,31850848 +g1,15795:11743776,31850848 +g1,15795:12075730,31850848 +g1,15795:12407684,31850848 +g1,15795:12739638,31850848 +g1,15795:13071592,31850848 +g1,15795:13403546,31850848 +g1,15795:16391131,31850848 +g1,15795:16723085,31850848 +g1,15795:17055039,31850848 +g1,15795:17386993,31850848 +g1,15795:17718947,31850848 +g1,15795:19710671,31850848 +g1,15795:20042625,31850848 +g1,15795:20374579,31850848 +g1,15795:20706533,31850848 +g1,15795:21038487,31850848 +g1,15795:21370441,31850848 +g1,15795:21702395,31850848 +g1,15795:22034349,31850848 +h1,15795:26017796,31850848:0,0,0 +k1,15795:32583029,31850848:6565233 +g1,15795:32583029,31850848 +) +(1,15797:6764466,32666775:25818563,424439,106246 +(1,15796:6764466,32666775:0,0,0 +g1,15796:6764466,32666775 +g1,15796:6764466,32666775 +g1,15796:6436786,32666775 +(1,15796:6436786,32666775:0,0,0 +) +g1,15796:6764466,32666775 +) +g1,15797:11079867,32666775 +g1,15797:12075729,32666775 +k1,15797:12075729,32666775:0 +h1,15797:17718945,32666775:0,0,0 +k1,15797:32583029,32666775:14864084 +g1,15797:32583029,32666775 +) +(1,15798:6764466,33351630:25818563,424439,106246 +h1,15798:6764466,33351630:0,0,0 +k1,15798:6764466,33351630:0 +h1,15798:13071591,33351630:0,0,0 +k1,15798:32583029,33351630:19511438 +g1,15798:32583029,33351630 +) +(1,15802:6764466,34167557:25818563,431045,79822 +(1,15800:6764466,34167557:0,0,0 +g1,15800:6764466,34167557 +g1,15800:6764466,34167557 +g1,15800:6436786,34167557 +(1,15800:6436786,34167557:0,0,0 +) +g1,15800:6764466,34167557 +) +g1,15802:7760328,34167557 +g1,15802:9088144,34167557 +g1,15802:12075729,34167557 +g1,15802:12407683,34167557 +g1,15802:12739637,34167557 +g1,15802:13071591,34167557 +g1,15802:13403545,34167557 +g1,15802:15395269,34167557 +g1,15802:15727223,34167557 +g1,15802:16059177,34167557 +g1,15802:16391131,34167557 +g1,15802:16723085,34167557 +g1,15802:17055039,34167557 +g1,15802:17386993,34167557 +g1,15802:17718947,34167557 +h1,15802:21702394,34167557:0,0,0 +k1,15802:32583029,34167557:10880635 +g1,15802:32583029,34167557 +) +(1,15804:6764466,34983484:25818563,424439,106246 +(1,15803:6764466,34983484:0,0,0 +g1,15803:6764466,34983484 +g1,15803:6764466,34983484 +g1,15803:6436786,34983484 +(1,15803:6436786,34983484:0,0,0 +) +g1,15803:6764466,34983484 +) +g1,15804:9088144,34983484 +g1,15804:10084006,34983484 +h1,15804:14067453,34983484:0,0,0 +k1,15804:32583029,34983484:18515576 +g1,15804:32583029,34983484 +) +(1,15811:6764466,35799411:25818563,424439,112852 +(1,15806:6764466,35799411:0,0,0 +g1,15806:6764466,35799411 +g1,15806:6764466,35799411 +g1,15806:6436786,35799411 +(1,15806:6436786,35799411:0,0,0 +) +g1,15806:6764466,35799411 +) +g1,15811:7760328,35799411 +g1,15811:8092282,35799411 +g1,15811:8424236,35799411 +g1,15811:8756190,35799411 +g1,15811:9088144,35799411 +g1,15811:9420098,35799411 +g1,15811:11411822,35799411 +g1,15811:14067454,35799411 +h1,15811:16723085,35799411:0,0,0 +k1,15811:32583029,35799411:15859944 +g1,15811:32583029,35799411 +) +(1,15811:6764466,36484266:25818563,424439,86428 +h1,15811:6764466,36484266:0,0,0 +g1,15811:7760328,36484266 +g1,15811:9420098,36484266 +g1,15811:9752052,36484266 +g1,15811:11411822,36484266 +g1,15811:11743776,36484266 +g1,15811:12075730,36484266 +g1,15811:12407684,36484266 +g1,15811:14067454,36484266 +g1,15811:14399408,36484266 +g1,15811:14731362,36484266 +g1,15811:15063316,36484266 +g1,15811:15395270,36484266 +h1,15811:16723086,36484266:0,0,0 +k1,15811:32583029,36484266:15859943 +g1,15811:32583029,36484266 +) +(1,15811:6764466,37169121:25818563,424439,86428 +h1,15811:6764466,37169121:0,0,0 +g1,15811:7760328,37169121 +g1,15811:9420098,37169121 +g1,15811:9752052,37169121 +g1,15811:11411822,37169121 +g1,15811:11743776,37169121 +g1,15811:12075730,37169121 +g1,15811:12407684,37169121 +g1,15811:14067454,37169121 +g1,15811:14399408,37169121 +g1,15811:14731362,37169121 +g1,15811:15063316,37169121 +g1,15811:15395270,37169121 +h1,15811:16723086,37169121:0,0,0 +k1,15811:32583029,37169121:15859943 +g1,15811:32583029,37169121 +) +(1,15811:6764466,37853976:25818563,424439,86428 +h1,15811:6764466,37853976:0,0,0 +g1,15811:7760328,37853976 +g1,15811:9420098,37853976 +g1,15811:9752052,37853976 +g1,15811:11411822,37853976 +g1,15811:11743776,37853976 +g1,15811:12075730,37853976 +g1,15811:12407684,37853976 +g1,15811:14067454,37853976 +g1,15811:14399408,37853976 +g1,15811:14731362,37853976 +g1,15811:15063316,37853976 +g1,15811:15395270,37853976 +h1,15811:16723086,37853976:0,0,0 +k1,15811:32583029,37853976:15859943 +g1,15811:32583029,37853976 +) +(1,15813:6764466,38669903:25818563,424439,106246 +(1,15812:6764466,38669903:0,0,0 +g1,15812:6764466,38669903 +g1,15812:6764466,38669903 +g1,15812:6436786,38669903 +(1,15812:6436786,38669903:0,0,0 +) +g1,15812:6764466,38669903 +) +k1,15813:6764466,38669903:0 +g1,15813:12739637,38669903 +h1,15813:17055038,38669903:0,0,0 +k1,15813:32583029,38669903:15527991 +g1,15813:32583029,38669903 +) +(1,15817:6764466,39485830:25818563,424439,79822 +(1,15815:6764466,39485830:0,0,0 +g1,15815:6764466,39485830 +g1,15815:6764466,39485830 +g1,15815:6436786,39485830 +(1,15815:6436786,39485830:0,0,0 +) +g1,15815:6764466,39485830 +) +g1,15817:7760328,39485830 +g1,15817:9088144,39485830 +h1,15817:10747914,39485830:0,0,0 +k1,15817:32583030,39485830:21835116 +g1,15817:32583030,39485830 +) +] +) +g1,15818:32583029,39565652 +g1,15818:6764466,39565652 +g1,15818:6764466,39565652 +g1,15818:32583029,39565652 +g1,15818:32583029,39565652 +) +h1,15818:6764466,39762260:0,0,0 +(1,15822:6764466,40627340:25818563,513147,126483 +h1,15821:6764466,40627340:983040,0,0 +k1,15821:9149976,40627340:205783 +k1,15821:10528198,40627340:205783 +k1,15821:14179209,40627340:205783 +k1,15821:15194362,40627340:205783 +k1,15821:18876830,40627340:205783 +k1,15821:22108410,40627340:205783 +k1,15821:23305753,40627340:205783 +k1,15821:24197698,40627340:205783 +k1,15821:26892538,40627340:205783 +k1,15821:27703874,40627340:205783 +k1,15821:29106344,40627340:205783 +k1,15821:32583029,40627340:0 +) +(1,15822:6764466,41492420:25818563,513147,134348 +k1,15821:9658099,41492420:198137 +k1,15821:12036619,41492420:198137 +k1,15821:14245401,41492420:198137 +k1,15821:15214241,41492420:198137 +k1,15821:17371904,41492420:198137 +k1,15821:18229333,41492420:198137 +k1,15821:19215869,41492420:198138 +k1,15821:24037571,41492420:198137 +k1,15821:25964548,41492420:198137 +k1,15821:27629381,41492420:198137 +k1,15821:28293479,41492420:198137 +k1,15821:29510701,41492420:198137 +k1,15821:32583029,41492420:0 +) +(1,15822:6764466,42357500:25818563,513147,134348 +k1,15821:7554585,42357500:258622 +k1,15821:8583909,42357500:258621 +k1,15821:10802057,42357500:258622 +k1,15821:11719970,42357500:258621 +k1,15821:12334452,42357500:258622 +k1,15821:14975962,42357500:258621 +k1,15821:16963424,42357500:258622 +k1,15821:20130533,42357500:258621 +k1,15821:21408240,42357500:258622 +k1,15821:24049750,42357500:258621 +k1,15821:26037212,42357500:258622 +k1,15821:26901386,42357500:258621 +k1,15821:27637765,42357500:258622 +k1,15821:28915471,42357500:258621 +k1,15821:31133619,42357500:258622 +k1,15821:31923737,42357500:258621 +k1,15821:32583029,42357500:0 +) +(1,15822:6764466,43222580:25818563,513147,134348 +k1,15821:8019531,43222580:235980 +k1,15821:9810680,43222580:235980 +k1,15821:10698088,43222580:235980 +k1,15821:11681834,43222580:235980 +k1,15821:15078615,43222580:235980 +k1,15821:16139693,43222580:235980 +k1,15821:19356250,43222580:235980 +k1,15821:21882058,43222580:235980 +k1,15821:22777330,43222580:235980 +k1,15821:25396199,43222580:235980 +k1,15821:28038661,43222580:235980 +k1,15821:29708569,43222580:235980 +k1,15821:30402646,43222580:235980 +k1,15821:32583029,43222580:0 +) +(1,15822:6764466,44087660:25818563,513147,126483 +k1,15821:9152560,44087660:160525 +k1,15821:12899214,44087660:160524 +k1,15821:14492356,44087660:160525 +k1,15821:15067685,44087660:160486 +k1,15821:17717266,44087660:160524 +k1,15821:18563953,44087660:160525 +k1,15821:19633462,44087660:160525 +k1,15821:20480148,44087660:160524 +k1,15821:20853626,44087660:160486 +k1,15821:22489366,44087660:160525 +k1,15821:24159841,44087660:160525 +k1,15821:25629119,44087660:160524 +k1,15821:26441072,44087660:160525 +k1,15821:28198053,44087660:160524 +k1,15821:29598519,44087660:160525 +k1,15821:32583029,44087660:0 +) +(1,15822:6764466,44952740:25818563,513147,134348 +k1,15821:7688171,44952740:144482 +k1,15821:9549696,44952740:144482 +k1,15821:12604631,44952740:144481 +k1,15821:13365151,44952740:144482 +k1,15821:14528718,44952740:144482 +k1,15821:17881187,44952740:144482 +k1,15821:21473517,44952740:144481 +k1,15821:23776755,44952740:144482 +k1,15821:24604122,44952740:144482 +k1,15821:26223819,44952740:144482 +k1,15821:29121467,44952740:144481 +k1,15821:29881987,44952740:144482 +k1,15821:31045554,44952740:144482 +k1,15821:32583029,44952740:0 +) +] +g1,15871:32583029,45087088 +) +] +(1,15871:32583029,45706769:0,0,0 +g1,15871:32583029,45706769 +) +) +] +(1,15871:6630773,47279633:25952256,0,0 +h1,15871:6630773,47279633:25952256,0,0 +) +] +(1,15871:4262630,4025873:0,0,0 +[1,15871:-473656,4025873:0,0,0 +(1,15871:-473656,-710413:0,0,0 +(1,15871:-473656,-710413:0,0,0 +g1,15871:-473656,-710413 +) +g1,15871:-473656,-710413 +) +] +) +] +!28780 +}255 +Input:2313:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2314:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2315:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2316:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2317:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2318:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2319:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2320:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2321:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2322:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2323:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1046 +{256 +[1,15934:4262630,47279633:28320399,43253760,0 +(1,15934:4262630,4025873:0,0,0 +[1,15934:-473656,4025873:0,0,0 +(1,15934:-473656,-710413:0,0,0 +(1,15934:-473656,-644877:0,0,0 +k1,15934:-473656,-644877:-65536 ) -(1,16005:-473656,4736287:0,0,0 -k1,16005:-473656,4736287:5209943 +(1,15934:-473656,4736287:0,0,0 +k1,15934:-473656,4736287:5209943 ) -g1,16005:-473656,-710413 +g1,15934:-473656,-710413 ) ] ) -[1,16005:6630773,47279633:25952256,43253760,0 -[1,16005:6630773,4812305:25952256,786432,0 -(1,16005:6630773,4812305:25952256,505283,134348 -(1,16005:6630773,4812305:25952256,505283,134348 -g1,16005:3078558,4812305 -[1,16005:3078558,4812305:0,0,0 -(1,16005:3078558,2439708:0,1703936,0 -k1,16005:1358238,2439708:-1720320 -(1,15243:1358238,2439708:1720320,1703936,0 -(1,15243:1358238,2439708:1179648,16384,0 -r1,16005:2537886,2439708:1179648,16384,0 +[1,15934:6630773,47279633:25952256,43253760,0 +[1,15934:6630773,4812305:25952256,786432,0 +(1,15934:6630773,4812305:25952256,538806,132808 +(1,15934:6630773,4812305:25952256,538806,132808 +g1,15934:3078558,4812305 +[1,15934:3078558,4812305:0,0,0 +(1,15934:3078558,2439708:0,1703936,0 +k1,15934:1358238,2439708:-1720320 +(1,15456:1358238,2439708:1720320,1703936,0 +(1,15456:1358238,2439708:1179648,16384,0 +r1,15934:2537886,2439708:1179648,16384,0 ) -g1,15243:3062174,2439708 -(1,15243:3062174,2439708:16384,1703936,0 -[1,15243:3062174,2439708:25952256,1703936,0 -(1,15243:3062174,1915420:25952256,1179648,0 -(1,15243:3062174,1915420:16384,1179648,0 -r1,16005:3078558,1915420:16384,1179648,0 +g1,15456:3062174,2439708 +(1,15456:3062174,2439708:16384,1703936,0 +[1,15456:3062174,2439708:25952256,1703936,0 +(1,15456:3062174,1915420:25952256,1179648,0 +(1,15456:3062174,1915420:16384,1179648,0 +r1,15934:3078558,1915420:16384,1179648,0 ) -k1,15243:29014430,1915420:25935872 -g1,15243:29014430,1915420 +k1,15456:29014430,1915420:25935872 +g1,15456:29014430,1915420 ) ] ) ) ) ] -[1,16005:3078558,4812305:0,0,0 -(1,16005:3078558,2439708:0,1703936,0 -g1,16005:29030814,2439708 -g1,16005:36135244,2439708 -(1,15243:36135244,2439708:1720320,1703936,0 -(1,15243:36135244,2439708:16384,1703936,0 -[1,15243:36135244,2439708:25952256,1703936,0 -(1,15243:36135244,1915420:25952256,1179648,0 -(1,15243:36135244,1915420:16384,1179648,0 -r1,16005:36151628,1915420:16384,1179648,0 +[1,15934:3078558,4812305:0,0,0 +(1,15934:3078558,2439708:0,1703936,0 +g1,15934:29030814,2439708 +g1,15934:36135244,2439708 +(1,15456:36135244,2439708:1720320,1703936,0 +(1,15456:36135244,2439708:16384,1703936,0 +[1,15456:36135244,2439708:25952256,1703936,0 +(1,15456:36135244,1915420:25952256,1179648,0 +(1,15456:36135244,1915420:16384,1179648,0 +r1,15934:36151628,1915420:16384,1179648,0 +) +k1,15456:62087500,1915420:25935872 +g1,15456:62087500,1915420 +) +] +) +g1,15456:36675916,2439708 +(1,15456:36675916,2439708:1179648,16384,0 +r1,15934:37855564,2439708:1179648,16384,0 +) ) -k1,15243:62087500,1915420:25935872 -g1,15243:62087500,1915420 +k1,15934:3078556,2439708:-34777008 ) ] +[1,15934:3078558,4812305:0,0,0 +(1,15934:3078558,49800853:0,16384,2228224 +k1,15934:1358238,49800853:-1720320 +(1,15456:1358238,49800853:1720320,16384,2228224 +(1,15456:1358238,49800853:1179648,16384,0 +r1,15934:2537886,49800853:1179648,16384,0 ) -g1,15243:36675916,2439708 -(1,15243:36675916,2439708:1179648,16384,0 -r1,16005:37855564,2439708:1179648,16384,0 +g1,15456:3062174,49800853 +(1,15456:3062174,52029077:16384,1703936,0 +[1,15456:3062174,52029077:25952256,1703936,0 +(1,15456:3062174,51504789:25952256,1179648,0 +(1,15456:3062174,51504789:16384,1179648,0 +r1,15934:3078558,51504789:16384,1179648,0 +) +k1,15456:29014430,51504789:25935872 +g1,15456:29014430,51504789 +) +] +) +) +) +] +[1,15934:3078558,4812305:0,0,0 +(1,15934:3078558,49800853:0,16384,2228224 +g1,15934:29030814,49800853 +g1,15934:36135244,49800853 +(1,15456:36135244,49800853:1720320,16384,2228224 +(1,15456:36135244,52029077:16384,1703936,0 +[1,15456:36135244,52029077:25952256,1703936,0 +(1,15456:36135244,51504789:25952256,1179648,0 +(1,15456:36135244,51504789:16384,1179648,0 +r1,15934:36151628,51504789:16384,1179648,0 +) +k1,15456:62087500,51504789:25935872 +g1,15456:62087500,51504789 +) +] +) +g1,15456:36675916,49800853 +(1,15456:36675916,49800853:1179648,16384,0 +r1,15934:37855564,49800853:1179648,16384,0 +) +) +k1,15934:3078556,49800853:-34777008 +) +] +g1,15934:6630773,4812305 +g1,15934:6630773,4812305 +g1,15934:11156689,4812305 +g1,15934:12279976,4812305 +g1,15934:16628629,4812305 +k1,15934:31387652,4812305:14759023 +) +) +] +[1,15934:6630773,45706769:25952256,40108032,0 +(1,15934:6630773,45706769:25952256,40108032,0 +(1,15934:6630773,45706769:0,0,0 +g1,15934:6630773,45706769 +) +[1,15934:6630773,45706769:25952256,40108032,0 +v1,15871:6630773,6254097:0,393216,0 +(1,15871:6630773,22502201:25952256,16641320,0 +g1,15871:6630773,22502201 +g1,15871:6237557,22502201 +r1,15934:6368629,22502201:131072,16641320,0 +g1,15871:6567858,22502201 +g1,15871:6764466,22502201 +[1,15871:6764466,22502201:25818563,16641320,0 +(1,15822:6764466,6374028:25818563,513147,126483 +k1,15821:9962155,6374028:213179 +k1,15821:10954557,6374028:213179 +k1,15821:11645494,6374028:213180 +k1,15821:12474711,6374028:213179 +k1,15821:14575327,6374028:213179 +k1,15821:16611062,6374028:213179 +k1,15821:17843327,6374028:213180 +k1,15821:20816227,6374028:213179 +k1,15821:21688698,6374028:213179 +k1,15821:23594017,6374028:213179 +k1,15821:26676362,6374028:213179 +k1,15821:28323470,6374028:213180 +k1,15821:29707122,6374028:213179 +k1,15821:31052763,6374028:213179 +k1,15821:32583029,6374028:0 +) +(1,15822:6764466,7239108:25818563,505283,7863 +g1,15821:7615123,7239108 +g1,15821:8629620,7239108 +g1,15821:9184709,7239108 +g1,15821:10575383,7239108 +g1,15821:12976622,7239108 +g1,15821:13827279,7239108 +g1,15821:15045593,7239108 +g1,15821:16401532,7239108 +g1,15821:18113987,7239108 +g1,15821:18929254,7239108 +g1,15821:20331724,7239108 +k1,15822:32583029,7239108:10917647 +g1,15822:32583029,7239108 +) +(1,15824:6764466,8104188:25818563,513147,115847 +h1,15823:6764466,8104188:983040,0,0 +k1,15823:8816524,8104188:251129 +k1,15823:11209370,8104188:251129 +k1,15823:12935713,8104188:251128 +k1,15823:14696792,8104188:251129 +k1,15823:17329499,8104188:251129 +k1,15823:18266790,8104188:251129 +k1,15823:18873778,8104188:251128 +k1,15823:20680076,8104188:251129 +k1,15823:23314094,8104188:251129 +k1,15823:25132844,8104188:251129 +(1,15823:25132844,8104188:0,459977,115847 +r1,15934:28656516,8104188:3523672,575824,115847 +k1,15823:25132844,8104188:-3523672 +) +(1,15823:25132844,8104188:3523672,459977,115847 +k1,15823:25132844,8104188:3277 +h1,15823:28653239,8104188:0,411205,112570 +) +k1,15823:29081314,8104188:251128 +k1,15823:29798404,8104188:251129 +k1,15823:32583029,8104188:0 +) +(1,15824:6764466,8969268:25818563,513147,126483 +k1,15823:8447703,8969268:208022 +k1,15823:9721996,8969268:208022 +k1,15823:11439968,8969268:208022 +k1,15823:14545337,8969268:208022 +k1,15823:17134937,8969268:208022 +k1,15823:18290610,8969268:208022 +k1,15823:20814020,8969268:208023 +k1,15823:22041127,8969268:208022 +k1,15823:25033774,8969268:208022 +k1,15823:27623374,8969268:208022 +k1,15823:28779047,8969268:208022 +k1,15823:30376432,8969268:208022 +k1,15823:32583029,8969268:0 +) +(1,15824:6764466,9834348:25818563,513147,126483 +k1,15823:7964062,9834348:208036 +k1,15823:10213544,9834348:208036 +k1,15823:11613024,9834348:208035 +k1,15823:13517787,9834348:208036 +k1,15823:14717383,9834348:208036 +k1,15823:16637875,9834348:208036 +k1,15823:17497339,9834348:208036 +k1,15823:19716020,9834348:208036 +k1,15823:20279915,9834348:208035 +k1,15823:21877314,9834348:208036 +k1,15823:23961646,9834348:208036 +k1,15823:26121344,9834348:208036 +k1,15823:27771827,9834348:208036 +k1,15823:28335722,9834348:208035 +k1,15823:30528844,9834348:208036 +k1,15823:32227169,9834348:208036 +k1,15823:32583029,9834348:0 +) +(1,15824:6764466,10699428:25818563,513147,134348 +k1,15823:9698614,10699428:195398 +k1,15823:12968306,10699428:195398 +k1,15823:14309929,10699428:195398 +k1,15823:16888215,10699428:195397 +k1,15823:19511067,10699428:195398 +k1,15823:20237962,10699428:195398 +k1,15823:23154415,10699428:195398 +k1,15823:23962575,10699428:195398 +k1,15823:25653505,10699428:195398 +k1,15823:26461664,10699428:195397 +k1,15823:27676147,10699428:195398 +k1,15823:29296953,10699428:195398 +k1,15823:30151643,10699428:195398 +k1,15824:32583029,10699428:0 +k1,15824:32583029,10699428:0 +) +v1,15826:6764466,11384283:0,393216,0 +(1,15869:6764466,22305593:25818563,11314526,196608 +g1,15869:6764466,22305593 +g1,15869:6764466,22305593 +g1,15869:6567858,22305593 +(1,15869:6567858,22305593:0,11314526,196608 +r1,15934:32779637,22305593:26211779,11511134,196608 +k1,15869:6567857,22305593:-26211780 +) +(1,15869:6567858,22305593:26211779,11314526,196608 +[1,15869:6764466,22305593:25818563,11117918,0 +(1,15828:6764466,11618720:25818563,431045,106246 +(1,15827:6764466,11618720:0,0,0 +g1,15827:6764466,11618720 +g1,15827:6764466,11618720 +g1,15827:6436786,11618720 +(1,15827:6436786,11618720:0,0,0 +) +g1,15827:6764466,11618720 +) +k1,15828:6764466,11618720:0 +h1,15828:10747914,11618720:0,0,0 +k1,15828:32583030,11618720:21835116 +g1,15828:32583030,11618720 +) +(1,15832:6764466,12434647:25818563,431045,79822 +(1,15830:6764466,12434647:0,0,0 +g1,15830:6764466,12434647 +g1,15830:6764466,12434647 +g1,15830:6436786,12434647 +(1,15830:6436786,12434647:0,0,0 +) +g1,15830:6764466,12434647 +) +g1,15832:7760328,12434647 +g1,15832:9088144,12434647 +h1,15832:13071591,12434647:0,0,0 +k1,15832:32583029,12434647:19511438 +g1,15832:32583029,12434647 +) +(1,15834:6764466,13250574:25818563,424439,106246 +(1,15833:6764466,13250574:0,0,0 +g1,15833:6764466,13250574 +g1,15833:6764466,13250574 +g1,15833:6436786,13250574 +(1,15833:6436786,13250574:0,0,0 +) +g1,15833:6764466,13250574 +) +k1,15834:6764466,13250574:0 +h1,15834:10747914,13250574:0,0,0 +k1,15834:32583030,13250574:21835116 +g1,15834:32583030,13250574 +) +(1,15838:6764466,14066501:25818563,431045,79822 +(1,15836:6764466,14066501:0,0,0 +g1,15836:6764466,14066501 +g1,15836:6764466,14066501 +g1,15836:6436786,14066501 +(1,15836:6436786,14066501:0,0,0 +) +g1,15836:6764466,14066501 +) +g1,15838:7760328,14066501 +g1,15838:9088144,14066501 +g1,15838:12075729,14066501 +g1,15838:12407683,14066501 +g1,15838:12739637,14066501 +g1,15838:13071591,14066501 +g1,15838:13403545,14066501 +g1,15838:15395269,14066501 +g1,15838:15727223,14066501 +g1,15838:16059177,14066501 +g1,15838:16391131,14066501 +g1,15838:16723085,14066501 +g1,15838:17055039,14066501 +g1,15838:17386993,14066501 +g1,15838:17718947,14066501 +h1,15838:21702394,14066501:0,0,0 +k1,15838:32583029,14066501:10880635 +g1,15838:32583029,14066501 +) +(1,15840:6764466,14882428:25818563,431045,106246 +(1,15839:6764466,14882428:0,0,0 +g1,15839:6764466,14882428 +g1,15839:6764466,14882428 +g1,15839:6436786,14882428 +(1,15839:6436786,14882428:0,0,0 +) +g1,15839:6764466,14882428 +) +k1,15840:6764466,14882428:0 +g1,15840:13071592,14882428 +h1,15840:15395270,14882428:0,0,0 +k1,15840:32583030,14882428:17187760 +g1,15840:32583030,14882428 +) +(1,15844:6764466,15698355:25818563,431045,79822 +(1,15842:6764466,15698355:0,0,0 +g1,15842:6764466,15698355 +g1,15842:6764466,15698355 +g1,15842:6436786,15698355 +(1,15842:6436786,15698355:0,0,0 +) +g1,15842:6764466,15698355 +) +g1,15844:7760328,15698355 +g1,15844:9088144,15698355 +h1,15844:13071591,15698355:0,0,0 +k1,15844:32583029,15698355:19511438 +g1,15844:32583029,15698355 +) +(1,15846:6764466,16514282:25818563,431045,106246 +(1,15845:6764466,16514282:0,0,0 +g1,15845:6764466,16514282 +g1,15845:6764466,16514282 +g1,15845:6436786,16514282 +(1,15845:6436786,16514282:0,0,0 +) +g1,15845:6764466,16514282 +) +k1,15846:6764466,16514282:0 +g1,15846:13071592,16514282 +h1,15846:15395270,16514282:0,0,0 +k1,15846:32583030,16514282:17187760 +g1,15846:32583030,16514282 +) +(1,15850:6764466,17330209:25818563,431045,79822 +(1,15848:6764466,17330209:0,0,0 +g1,15848:6764466,17330209 +g1,15848:6764466,17330209 +g1,15848:6436786,17330209 +(1,15848:6436786,17330209:0,0,0 +) +g1,15848:6764466,17330209 +) +g1,15850:7760328,17330209 +g1,15850:9088144,17330209 +h1,15850:13071591,17330209:0,0,0 +k1,15850:32583029,17330209:19511438 +g1,15850:32583029,17330209 +) +(1,15852:6764466,18146136:25818563,431045,106246 +(1,15851:6764466,18146136:0,0,0 +g1,15851:6764466,18146136 +g1,15851:6764466,18146136 +g1,15851:6436786,18146136 +(1,15851:6436786,18146136:0,0,0 +) +g1,15851:6764466,18146136 +) +k1,15852:6764466,18146136:0 +g1,15852:13071592,18146136 +g1,15852:15063316,18146136 +g1,15852:15727224,18146136 +k1,15852:15727224,18146136:0 +h1,15852:18050902,18146136:0,0,0 +k1,15852:32583029,18146136:14532127 +g1,15852:32583029,18146136 +) +(1,15856:6764466,18962063:25818563,431045,79822 +(1,15854:6764466,18962063:0,0,0 +g1,15854:6764466,18962063 +g1,15854:6764466,18962063 +g1,15854:6436786,18962063 +(1,15854:6436786,18962063:0,0,0 +) +g1,15854:6764466,18962063 +) +g1,15856:7760328,18962063 +g1,15856:9088144,18962063 +h1,15856:13071591,18962063:0,0,0 +k1,15856:32583029,18962063:19511438 +g1,15856:32583029,18962063 +) +(1,15858:6764466,19777990:25818563,424439,106246 +(1,15857:6764466,19777990:0,0,0 +g1,15857:6764466,19777990 +g1,15857:6764466,19777990 +g1,15857:6436786,19777990 +(1,15857:6436786,19777990:0,0,0 +) +g1,15857:6764466,19777990 +) +k1,15858:6764466,19777990:0 +g1,15858:13071592,19777990 +g1,15858:15063316,19777990 +g1,15858:15727224,19777990 +k1,15858:15727224,19777990:0 +h1,15858:18050902,19777990:0,0,0 +k1,15858:32583029,19777990:14532127 +g1,15858:32583029,19777990 +) +(1,15862:6764466,20593917:25818563,431045,79822 +(1,15860:6764466,20593917:0,0,0 +g1,15860:6764466,20593917 +g1,15860:6764466,20593917 +g1,15860:6436786,20593917 +(1,15860:6436786,20593917:0,0,0 +) +g1,15860:6764466,20593917 +) +g1,15862:7760328,20593917 +g1,15862:9088144,20593917 +h1,15862:13071591,20593917:0,0,0 +k1,15862:32583029,20593917:19511438 +g1,15862:32583029,20593917 +) +(1,15864:6764466,21409844:25818563,431045,106246 +(1,15863:6764466,21409844:0,0,0 +g1,15863:6764466,21409844 +g1,15863:6764466,21409844 +g1,15863:6436786,21409844 +(1,15863:6436786,21409844:0,0,0 +) +g1,15863:6764466,21409844 +) +k1,15864:6764466,21409844:0 +g1,15864:14399407,21409844 +g1,15864:16391131,21409844 +g1,15864:17055039,21409844 +g1,15864:19710671,21409844 +g1,15864:24026073,21409844 +g1,15864:26017797,21409844 +g1,15864:26681705,21409844 +k1,15864:26681705,21409844:0 +h1,15864:29005383,21409844:0,0,0 +k1,15864:32583029,21409844:3577646 +g1,15864:32583029,21409844 +) +(1,15868:6764466,22225771:25818563,424439,79822 +(1,15866:6764466,22225771:0,0,0 +g1,15866:6764466,22225771 +g1,15866:6764466,22225771 +g1,15866:6436786,22225771 +(1,15866:6436786,22225771:0,0,0 +) +g1,15866:6764466,22225771 +) +g1,15868:7760328,22225771 +g1,15868:9088144,22225771 +h1,15868:10415960,22225771:0,0,0 +k1,15868:32583028,22225771:22167068 +g1,15868:32583028,22225771 +) +] +) +g1,15869:32583029,22305593 +g1,15869:6764466,22305593 +g1,15869:6764466,22305593 +g1,15869:32583029,22305593 +g1,15869:32583029,22305593 +) +h1,15869:6764466,22502201:0,0,0 +] +g1,15871:32583029,22502201 +) +h1,15871:6630773,22502201:0,0,0 +(1,15874:6630773,23367281:25952256,513147,126483 +h1,15873:6630773,23367281:983040,0,0 +k1,15873:9656295,23367281:210095 +k1,15873:10857950,23367281:210095 +k1,15873:14295038,23367281:210095 +k1,15873:17714432,23367281:210096 +k1,15873:21441189,23367281:210095 +k1,15873:24286487,23367281:210095 +k1,15873:25515667,23367281:210095 +k1,15873:29762780,23367281:210095 +(1,15873:29762780,23367281:0,452978,115847 +r1,15934:32583029,23367281:2820249,568825,115847 +k1,15873:29762780,23367281:-2820249 +) +(1,15873:29762780,23367281:2820249,452978,115847 +k1,15873:29762780,23367281:3277 +h1,15873:32579752,23367281:0,411205,112570 +) +k1,15873:32583029,23367281:0 +) +(1,15874:6630773,24232361:25952256,513147,115847 +k1,15873:8113934,24232361:291716 +(1,15873:8113934,24232361:0,459977,115847 +r1,15934:12341030,24232361:4227096,575824,115847 +k1,15873:8113934,24232361:-4227096 +) +(1,15873:8113934,24232361:4227096,459977,115847 +k1,15873:8113934,24232361:3277 +h1,15873:12337753,24232361:0,411205,112570 +) +k1,15873:12806416,24232361:291716 +k1,15873:14369531,24232361:291717 +k1,15873:15320539,24232361:291716 +k1,15873:17251310,24232361:291716 +k1,15873:18074523,24232361:291716 +k1,15873:19650746,24232361:291717 +k1,15873:20558500,24232361:291716 +k1,15873:21206076,24232361:291716 +k1,15873:22597486,24232361:291716 +k1,15873:23540631,24232361:291717 +(1,15873:23540631,24232361:0,452978,115847 +r1,15934:26360880,24232361:2820249,568825,115847 +k1,15873:23540631,24232361:-2820249 +) +(1,15873:23540631,24232361:2820249,452978,115847 +k1,15873:23540631,24232361:3277 +h1,15873:26357603,24232361:0,411205,112570 +) +k1,15873:26826266,24232361:291716 +k1,15873:29741388,24232361:291716 +k1,15873:32583029,24232361:0 +) +(1,15874:6630773,25097441:25952256,513147,134348 +k1,15873:10638300,25097441:279839 +k1,15873:12656153,25097441:279838 +k1,15873:15317570,25097441:279839 +k1,15873:16701691,25097441:279839 +k1,15873:17729296,25097441:279839 +k1,15873:19522360,25097441:279838 +k1,15873:20418237,25097441:279839 +k1,15873:21717161,25097441:279839 +k1,15873:25079158,25097441:279839 +k1,15873:26018288,25097441:279838 +k1,15873:29959623,25097441:279839 +k1,15873:32583029,25097441:0 +) +(1,15874:6630773,25962521:25952256,505283,7863 +k1,15874:32583028,25962521:22936944 +g1,15874:32583028,25962521 +) +v1,15876:6630773,26647376:0,393216,0 +(1,15889:6630773,31806869:25952256,5552709,196608 +g1,15889:6630773,31806869 +g1,15889:6630773,31806869 +g1,15889:6434165,31806869 +(1,15889:6434165,31806869:0,5552709,196608 +r1,15934:32779637,31806869:26345472,5749317,196608 +k1,15889:6434165,31806869:-26345472 +) +(1,15889:6434165,31806869:26345472,5552709,196608 +[1,15889:6630773,31806869:25952256,5356101,0 +(1,15878:6630773,26875207:25952256,424439,86428 +(1,15877:6630773,26875207:0,0,0 +g1,15877:6630773,26875207 +g1,15877:6630773,26875207 +g1,15877:6303093,26875207 +(1,15877:6303093,26875207:0,0,0 +) +g1,15877:6630773,26875207 +) +k1,15878:6630773,26875207:0 +g1,15878:9618359,26875207 +g1,15878:10282267,26875207 +g1,15878:11942037,26875207 +g1,15878:12605945,26875207 +g1,15878:13269853,26875207 +g1,15878:14929623,26875207 +g1,15878:15593531,26875207 +g1,15878:16257439,26875207 +g1,15878:16921347,26875207 +g1,15878:17585255,26875207 +g1,15878:18581117,26875207 +g1,15878:19245025,26875207 +g1,15878:19908933,26875207 +g1,15878:23228472,26875207 +g1,15878:23892380,26875207 +h1,15878:24888242,26875207:0,0,0 +k1,15878:32583029,26875207:7694787 +g1,15878:32583029,26875207 +) +(1,15888:6630773,27691134:25952256,424439,9908 +(1,15880:6630773,27691134:0,0,0 +g1,15880:6630773,27691134 +g1,15880:6630773,27691134 +g1,15880:6303093,27691134 +(1,15880:6303093,27691134:0,0,0 +) +g1,15880:6630773,27691134 +) +g1,15888:7626635,27691134 +g1,15888:8290543,27691134 +g1,15888:8954451,27691134 +g1,15888:11610083,27691134 +g1,15888:12273991,27691134 +g1,15888:12937899,27691134 +h1,15888:13269853,27691134:0,0,0 +k1,15888:32583029,27691134:19313176 +g1,15888:32583029,27691134 +) +(1,15888:6630773,28375989:25952256,424439,6605 +h1,15888:6630773,28375989:0,0,0 +g1,15888:7626635,28375989 +g1,15888:7958589,28375989 +g1,15888:8290543,28375989 +g1,15888:8622497,28375989 +g1,15888:8954451,28375989 +g1,15888:9286405,28375989 +g1,15888:9618359,28375989 +g1,15888:10282267,28375989 +g1,15888:10614221,28375989 +g1,15888:10946175,28375989 +g1,15888:11278129,28375989 +g1,15888:11610083,28375989 +g1,15888:12273991,28375989 +g1,15888:12605945,28375989 +g1,15888:12937899,28375989 +g1,15888:13269853,28375989 +g1,15888:13601807,28375989 +g1,15888:14265715,28375989 +h1,15888:14597669,28375989:0,0,0 +k1,15888:32583029,28375989:17985360 +g1,15888:32583029,28375989 +) +(1,15888:6630773,29060844:25952256,424439,6605 +h1,15888:6630773,29060844:0,0,0 +g1,15888:7626635,29060844 +g1,15888:7958589,29060844 +g1,15888:8290543,29060844 +g1,15888:10282267,29060844 +g1,15888:12273991,29060844 +g1,15888:14265715,29060844 +k1,15888:14265715,29060844:0 +h1,15888:15925485,29060844:0,0,0 +k1,15888:32583029,29060844:16657544 +g1,15888:32583029,29060844 +) +(1,15888:6630773,29745699:25952256,424439,9908 +h1,15888:6630773,29745699:0,0,0 +g1,15888:7626635,29745699 +g1,15888:8290543,29745699 +g1,15888:8622497,29745699 +g1,15888:8954451,29745699 +g1,15888:9286405,29745699 +g1,15888:9618359,29745699 +g1,15888:10282267,29745699 +g1,15888:10614221,29745699 +g1,15888:10946175,29745699 +g1,15888:11278129,29745699 +g1,15888:11610083,29745699 +g1,15888:12273991,29745699 +g1,15888:12605945,29745699 +g1,15888:12937899,29745699 +g1,15888:13269853,29745699 +g1,15888:13601807,29745699 +g1,15888:14265715,29745699 +h1,15888:14597669,29745699:0,0,0 +k1,15888:32583029,29745699:17985360 +g1,15888:32583029,29745699 +) +(1,15888:6630773,30430554:25952256,407923,9908 +h1,15888:6630773,30430554:0,0,0 +g1,15888:7626635,30430554 +g1,15888:8290543,30430554 +g1,15888:8622497,30430554 +g1,15888:8954451,30430554 +g1,15888:9286405,30430554 +g1,15888:9618359,30430554 +g1,15888:10282267,30430554 +g1,15888:10614221,30430554 +g1,15888:10946175,30430554 +g1,15888:11278129,30430554 +g1,15888:11610083,30430554 +g1,15888:12273991,30430554 +g1,15888:12605945,30430554 +g1,15888:12937899,30430554 +g1,15888:13269853,30430554 +g1,15888:13601807,30430554 +g1,15888:14265715,30430554 +h1,15888:14597669,30430554:0,0,0 +k1,15888:32583029,30430554:17985360 +g1,15888:32583029,30430554 +) +(1,15888:6630773,31115409:25952256,424439,9908 +h1,15888:6630773,31115409:0,0,0 +g1,15888:7626635,31115409 +g1,15888:8290543,31115409 +g1,15888:8622497,31115409 +g1,15888:8954451,31115409 +g1,15888:9286405,31115409 +g1,15888:9618359,31115409 +g1,15888:10282267,31115409 +g1,15888:10614221,31115409 +g1,15888:10946175,31115409 +g1,15888:11278129,31115409 +g1,15888:11610083,31115409 +g1,15888:12273991,31115409 +g1,15888:12605945,31115409 +g1,15888:12937899,31115409 +g1,15888:13269853,31115409 +g1,15888:13601807,31115409 +g1,15888:14265715,31115409 +h1,15888:14597669,31115409:0,0,0 +k1,15888:32583029,31115409:17985360 +g1,15888:32583029,31115409 +) +(1,15888:6630773,31800264:25952256,424439,6605 +h1,15888:6630773,31800264:0,0,0 +g1,15888:7626635,31800264 +g1,15888:8290543,31800264 +g1,15888:8954451,31800264 +g1,15888:9618359,31800264 +g1,15888:11278129,31800264 +h1,15888:12605945,31800264:0,0,0 +k1,15888:32583029,31800264:19977084 +g1,15888:32583029,31800264 +) +] +) +g1,15889:32583029,31806869 +g1,15889:6630773,31806869 +g1,15889:6630773,31806869 +g1,15889:32583029,31806869 +g1,15889:32583029,31806869 +) +h1,15889:6630773,32003477:0,0,0 +v1,15893:6630773,32868557:0,393216,0 +(1,15894:6630773,34013977:25952256,1538636,0 +g1,15894:6630773,34013977 +g1,15894:6237557,34013977 +r1,15934:6368629,34013977:131072,1538636,0 +g1,15894:6567858,34013977 +g1,15894:6764466,34013977 +[1,15894:6764466,34013977:25818563,1538636,0 +(1,15894:6764466,33141034:25818563,665693,196608 +(1,15893:6764466,33141034:0,665693,196608 +r1,15934:8010564,33141034:1246098,862301,196608 +k1,15893:6764466,33141034:-1246098 +) +(1,15893:6764466,33141034:1246098,665693,196608 +) +k1,15893:8177591,33141034:167027 +k1,15893:9495520,33141034:327680 +k1,15893:11296359,33141034:167026 +k1,15893:11994883,33141034:167027 +k1,15893:13180994,33141034:167026 +k1,15893:16107742,33141034:167027 +k1,15893:16740729,33141034:167026 +k1,15893:18078229,33141034:167027 +k1,15893:20543603,33141034:167026 +(1,15893:20543603,33141034:0,452978,115847 +r1,15934:23363852,33141034:2820249,568825,115847 +k1,15893:20543603,33141034:-2820249 +) +(1,15893:20543603,33141034:2820249,452978,115847 +k1,15893:20543603,33141034:3277 +h1,15893:23360575,33141034:0,411205,112570 +) +k1,15893:23530879,33141034:167027 +k1,15893:24459433,33141034:167026 +(1,15893:24459433,33141034:0,459977,115847 +r1,15934:28686529,33141034:4227096,575824,115847 +k1,15893:24459433,33141034:-4227096 +) +(1,15893:24459433,33141034:4227096,459977,115847 +k1,15893:24459433,33141034:3277 +h1,15893:28683252,33141034:0,411205,112570 +) +k1,15893:28853556,33141034:167027 +k1,15893:29636620,33141034:167026 +k1,15893:30822732,33141034:167027 +k1,15894:32583029,33141034:0 +) +(1,15894:6764466,34006114:25818563,505283,7863 +g1,15893:8602750,34006114 +k1,15894:32583029,34006114:21797930 +g1,15894:32583029,34006114 +) +] +g1,15894:32583029,34013977 +) +h1,15894:6630773,34013977:0,0,0 +v1,15897:6630773,34879057:0,393216,0 +(1,15934:6630773,42295222:25952256,7809381,0 +g1,15934:6630773,42295222 +g1,15934:6237557,42295222 +r1,15934:6368629,42295222:131072,7809381,0 +g1,15934:6567858,42295222 +g1,15934:6764466,42295222 +[1,15934:6764466,42295222:25818563,7809381,0 +(1,15898:6764466,35240234:25818563,754393,260573 +(1,15897:6764466,35240234:0,754393,260573 +r1,15934:8010564,35240234:1246098,1014966,260573 +k1,15897:6764466,35240234:-1246098 +) +(1,15897:6764466,35240234:1246098,754393,260573 +) +k1,15897:8197313,35240234:186749 +k1,15897:8524993,35240234:327680 +k1,15897:10486458,35240234:186750 +k1,15897:12963035,35240234:186749 +k1,15897:15355071,35240234:186749 +k1,15897:17956166,35240234:186749 +k1,15897:18829078,35240234:186750 +k1,15897:22418456,35240234:186749 +k1,15897:23256633,35240234:186749 +k1,15897:24462468,35240234:186750 +(1,15897:24462468,35240234:0,459977,115847 +r1,15934:28689564,35240234:4227096,575824,115847 +k1,15897:24462468,35240234:-4227096 +) +(1,15897:24462468,35240234:4227096,459977,115847 +k1,15897:24462468,35240234:3277 +h1,15897:28686287,35240234:0,411205,112570 +) +k1,15897:28876313,35240234:186749 +k1,15897:32583029,35240234:0 +) +(1,15898:6764466,36105314:25818563,513147,102891 +k1,15897:7678441,36105314:262547 +k1,15897:8688754,36105314:262547 +k1,15897:11709712,36105314:262548 +k1,15897:12658421,36105314:262547 +k1,15897:16234468,36105314:262547 +k1,15897:17601297,36105314:262547 +k1,15897:18611611,36105314:262548 +k1,15897:21272120,36105314:262547 +k1,15897:23842845,36105314:262547 +k1,15897:24788277,36105314:262547 +k1,15897:27784332,36105314:262548 +k1,15897:29647924,36105314:262547 +k1,15897:30929556,36105314:262547 +k1,15897:32583029,36105314:0 +) +(1,15898:6764466,36970394:25818563,513147,134348 +k1,15897:9415433,36970394:165186 +k1,15897:10239910,36970394:165185 +k1,15897:11939294,36970394:165186 +k1,15897:12790642,36970394:165186 +k1,15897:13974912,36970394:165185 +k1,15897:15529461,36970394:165186 +k1,15897:17951707,36970394:165186 +k1,15897:21519521,36970394:165185 +k1,15897:23889994,36970394:165186 +k1,15897:24706608,36970394:165186 +k1,15897:25890878,36970394:165185 +(1,15897:25890878,36970394:0,452978,115847 +r1,15934:28711127,36970394:2820249,568825,115847 +k1,15897:25890878,36970394:-2820249 +) +(1,15897:25890878,36970394:2820249,452978,115847 +k1,15897:25890878,36970394:3277 +h1,15897:28707850,36970394:0,411205,112570 +) +k1,15897:28876313,36970394:165186 +k1,15897:32583029,36970394:0 +) +(1,15898:6764466,37835474:25818563,513147,102891 +k1,15897:8070468,37835474:201720 +k1,15897:9019953,37835474:201719 +k1,15897:11619635,37835474:201720 +k1,15897:14129533,37835474:201720 +k1,15897:15014138,37835474:201720 +k1,15897:16539684,37835474:201719 +k1,15897:18342449,37835474:201720 +k1,15897:19563254,37835474:201720 +k1,15897:21418447,37835474:201720 +k1,15897:24105947,37835474:201719 +k1,15897:24966959,37835474:201720 +k1,15897:28122387,37835474:201720 +k1,15897:29010269,37835474:201720 +k1,15897:30746186,37835474:201719 +k1,15897:31563944,37835474:201720 +k1,15897:32583029,37835474:0 +) +(1,15898:6764466,38700554:25818563,513147,134348 +k1,15897:9234299,38700554:277654 +k1,15897:10329842,38700554:277654 +k1,15897:11475849,38700554:277655 +k1,15897:12960676,38700554:277654 +k1,15897:13854368,38700554:277654 +k1,15897:16410709,38700554:277654 +h1,15897:17381297,38700554:0,0,0 +k1,15897:17658951,38700554:277654 +k1,15897:18745976,38700554:277655 +k1,15897:20521783,38700554:277654 +h1,15897:21318701,38700554:0,0,0 +k1,15897:21770025,38700554:277654 +k1,15897:23481607,38700554:277654 +k1,15897:24678076,38700554:277654 +k1,15897:26345094,38700554:277655 +k1,15897:28829345,38700554:277654 +k1,15897:30211281,38700554:277654 +k1,15897:32583029,38700554:0 +) +(1,15898:6764466,39565634:25818563,513147,115847 +k1,15897:9693633,39565634:215976 +k1,15897:10568901,39565634:215976 +k1,15897:13017688,39565634:215975 +(1,15897:13017688,39565634:0,452978,115847 +r1,15934:14431089,39565634:1413401,568825,115847 +k1,15897:13017688,39565634:-1413401 +) +(1,15897:13017688,39565634:1413401,452978,115847 +k1,15897:13017688,39565634:3277 +h1,15897:14427812,39565634:0,411205,112570 +) +k1,15897:14647065,39565634:215976 +k1,15897:16054486,39565634:215976 +(1,15897:16054486,39565634:0,452978,115847 +r1,15934:18171311,39565634:2116825,568825,115847 +k1,15897:16054486,39565634:-2116825 +) +(1,15897:16054486,39565634:2116825,452978,115847 +k1,15897:16054486,39565634:3277 +h1,15897:18168034,39565634:0,411205,112570 +) +k1,15897:18560957,39565634:215976 +k1,15897:19973620,39565634:215976 +k1,15897:23375955,39565634:215975 +k1,15897:24123428,39565634:215976 +k1,15897:24955442,39565634:215976 +k1,15897:26190503,39565634:215976 +k1,15897:27936745,39565634:215976 +k1,15897:28804148,39565634:215975 +k1,15897:30112609,39565634:215976 +(1,15897:30112609,39565634:0,452978,115847 +r1,15934:31174298,39565634:1061689,568825,115847 +k1,15897:30112609,39565634:-1061689 +) +(1,15897:30112609,39565634:1061689,452978,115847 +k1,15897:30112609,39565634:3277 +h1,15897:31171021,39565634:0,411205,112570 +) +k1,15897:31563944,39565634:215976 +k1,15897:32583029,39565634:0 +) +(1,15898:6764466,40430714:25818563,513147,134348 +k1,15897:9448603,40430714:223915 +k1,15897:12541683,40430714:223914 +k1,15897:13417026,40430714:223915 +k1,15897:15939288,40430714:223914 +k1,15897:17859930,40430714:223915 +k1,15897:20925485,40430714:223914 +k1,15897:23263591,40430714:223915 +k1,15897:27521901,40430714:223914 +k1,15897:28937261,40430714:223915 +k1,15897:32583029,40430714:0 +) +(1,15898:6764466,41295794:25818563,505283,134348 +k1,15897:7619127,41295794:203233 +k1,15897:9129802,41295794:203232 +(1,15897:9129802,41295794:0,459977,115847 +r1,15934:12653474,41295794:3523672,575824,115847 +k1,15897:9129802,41295794:-3523672 +) +(1,15897:9129802,41295794:3523672,459977,115847 +k1,15897:9129802,41295794:3277 +h1,15897:12650197,41295794:0,411205,112570 +) +k1,15897:12856707,41295794:203233 +k1,15897:15349767,41295794:203232 +k1,15897:16239162,41295794:203233 +k1,15897:19544213,41295794:203232 +k1,15897:20740972,41295794:203233 +k1,15897:23897913,41295794:203233 +k1,15897:25292590,41295794:203232 +k1,15897:27583145,41295794:203233 +k1,15897:30499568,41295794:203232 +k1,15897:31835263,41295794:203233 +k1,15897:32583029,41295794:0 +) +(1,15898:6764466,42160874:25818563,513147,134348 +g1,15897:9738489,42160874 +g1,15897:10589146,42160874 +g1,15897:13459622,42160874 +g1,15897:16851765,42160874 +g1,15897:19764185,42160874 +g1,15897:20579452,42160874 +g1,15897:21797766,42160874 +g1,15897:23386358,42160874 +k1,15898:32583029,42160874:7146705 +g1,15898:32583029,42160874 +) +] +g1,15934:32583029,42295222 +) +] +(1,15934:32583029,45706769:0,0,0 +g1,15934:32583029,45706769 +) +) +] +(1,15934:6630773,47279633:25952256,0,0 +h1,15934:6630773,47279633:25952256,0,0 +) +] +(1,15934:4262630,4025873:0,0,0 +[1,15934:-473656,4025873:0,0,0 +(1,15934:-473656,-710413:0,0,0 +(1,15934:-473656,-710413:0,0,0 +g1,15934:-473656,-710413 +) +g1,15934:-473656,-710413 +) +] +) +] +!29105 +}256 +Input:2324:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2325:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2326:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2327:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2328:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2329:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2330:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!670 +{257 +[1,15983:4262630,47279633:28320399,43253760,0 +(1,15983:4262630,4025873:0,0,0 +[1,15983:-473656,4025873:0,0,0 +(1,15983:-473656,-710413:0,0,0 +(1,15983:-473656,-644877:0,0,0 +k1,15983:-473656,-644877:-65536 ) +(1,15983:-473656,4736287:0,0,0 +k1,15983:-473656,4736287:5209943 ) -k1,16005:3078556,2439708:-34777008 +g1,15983:-473656,-710413 ) ] -[1,16005:3078558,4812305:0,0,0 -(1,16005:3078558,49800853:0,16384,2228224 -k1,16005:1358238,49800853:-1720320 -(1,15243:1358238,49800853:1720320,16384,2228224 -(1,15243:1358238,49800853:1179648,16384,0 -r1,16005:2537886,49800853:1179648,16384,0 ) -g1,15243:3062174,49800853 -(1,15243:3062174,52029077:16384,1703936,0 -[1,15243:3062174,52029077:25952256,1703936,0 -(1,15243:3062174,51504789:25952256,1179648,0 -(1,15243:3062174,51504789:16384,1179648,0 -r1,16005:3078558,51504789:16384,1179648,0 +[1,15983:6630773,47279633:25952256,43253760,0 +[1,15983:6630773,4812305:25952256,786432,0 +(1,15983:6630773,4812305:25952256,505283,134348 +(1,15983:6630773,4812305:25952256,505283,134348 +g1,15983:3078558,4812305 +[1,15983:3078558,4812305:0,0,0 +(1,15983:3078558,2439708:0,1703936,0 +k1,15983:1358238,2439708:-1720320 +(1,15456:1358238,2439708:1720320,1703936,0 +(1,15456:1358238,2439708:1179648,16384,0 +r1,15983:2537886,2439708:1179648,16384,0 ) -k1,15243:29014430,51504789:25935872 -g1,15243:29014430,51504789 +g1,15456:3062174,2439708 +(1,15456:3062174,2439708:16384,1703936,0 +[1,15456:3062174,2439708:25952256,1703936,0 +(1,15456:3062174,1915420:25952256,1179648,0 +(1,15456:3062174,1915420:16384,1179648,0 +r1,15983:3078558,1915420:16384,1179648,0 +) +k1,15456:29014430,1915420:25935872 +g1,15456:29014430,1915420 ) ] ) ) ) ] -[1,16005:3078558,4812305:0,0,0 -(1,16005:3078558,49800853:0,16384,2228224 -g1,16005:29030814,49800853 -g1,16005:36135244,49800853 -(1,15243:36135244,49800853:1720320,16384,2228224 -(1,15243:36135244,52029077:16384,1703936,0 -[1,15243:36135244,52029077:25952256,1703936,0 -(1,15243:36135244,51504789:25952256,1179648,0 -(1,15243:36135244,51504789:16384,1179648,0 -r1,16005:36151628,51504789:16384,1179648,0 +[1,15983:3078558,4812305:0,0,0 +(1,15983:3078558,2439708:0,1703936,0 +g1,15983:29030814,2439708 +g1,15983:36135244,2439708 +(1,15456:36135244,2439708:1720320,1703936,0 +(1,15456:36135244,2439708:16384,1703936,0 +[1,15456:36135244,2439708:25952256,1703936,0 +(1,15456:36135244,1915420:25952256,1179648,0 +(1,15456:36135244,1915420:16384,1179648,0 +r1,15983:36151628,1915420:16384,1179648,0 ) -k1,15243:62087500,51504789:25935872 -g1,15243:62087500,51504789 +k1,15456:62087500,1915420:25935872 +g1,15456:62087500,1915420 ) ] ) -g1,15243:36675916,49800853 -(1,15243:36675916,49800853:1179648,16384,0 -r1,16005:37855564,49800853:1179648,16384,0 +g1,15456:36675916,2439708 +(1,15456:36675916,2439708:1179648,16384,0 +r1,15983:37855564,2439708:1179648,16384,0 ) ) -k1,16005:3078556,49800853:-34777008 +k1,15983:3078556,2439708:-34777008 ) ] -g1,16005:6630773,4812305 -k1,16005:23311652,4812305:15485502 -g1,16005:23960458,4812305 -g1,16005:27572802,4812305 -g1,16005:29306229,4812305 +[1,15983:3078558,4812305:0,0,0 +(1,15983:3078558,49800853:0,16384,2228224 +k1,15983:1358238,49800853:-1720320 +(1,15456:1358238,49800853:1720320,16384,2228224 +(1,15456:1358238,49800853:1179648,16384,0 +r1,15983:2537886,49800853:1179648,16384,0 +) +g1,15456:3062174,49800853 +(1,15456:3062174,52029077:16384,1703936,0 +[1,15456:3062174,52029077:25952256,1703936,0 +(1,15456:3062174,51504789:25952256,1179648,0 +(1,15456:3062174,51504789:16384,1179648,0 +r1,15983:3078558,51504789:16384,1179648,0 ) +k1,15456:29014430,51504789:25935872 +g1,15456:29014430,51504789 ) ] -[1,16005:6630773,45706769:25952256,40108032,0 -(1,16005:6630773,45706769:25952256,40108032,0 -(1,16005:6630773,45706769:0,0,0 -g1,16005:6630773,45706769 ) -[1,16005:6630773,45706769:25952256,40108032,0 -(1,15937:6630773,6254097:25952256,513147,126483 -h1,15936:6630773,6254097:983040,0,0 -k1,15936:8963830,6254097:153330 -k1,15936:11201206,6254097:153331 -k1,15936:12013828,6254097:153330 -k1,15936:15244073,6254097:153330 -(1,15936:15244073,6254097:0,452978,115847 -r1,16005:15954051,6254097:709978,568825,115847 -k1,15936:15244073,6254097:-709978 ) -(1,15936:15244073,6254097:709978,452978,115847 -k1,15936:15244073,6254097:3277 -h1,15936:15950774,6254097:0,411205,112570 -) -k1,15936:16107381,6254097:153330 -k1,15936:17452157,6254097:153331 -(1,15936:17452157,6254097:0,435480,115847 -r1,16005:18513846,6254097:1061689,551327,115847 -k1,15936:17452157,6254097:-1061689 -) -(1,15936:17452157,6254097:1061689,435480,115847 -k1,15936:17452157,6254097:3277 -h1,15936:18510569,6254097:0,411205,112570 -) -k1,15936:18667176,6254097:153330 -k1,15936:19352003,6254097:153330 -k1,15936:20571604,6254097:153330 -k1,15936:23635389,6254097:153331 -k1,15936:25267867,6254097:153330 -k1,15936:26340012,6254097:153330 -(1,15936:26340012,6254097:0,452978,115847 -r1,16005:27049990,6254097:709978,568825,115847 -k1,15936:26340012,6254097:-709978 -) -(1,15936:26340012,6254097:709978,452978,115847 -k1,15936:26340012,6254097:3277 -h1,15936:27046713,6254097:0,411205,112570 -) -k1,15936:27203321,6254097:153331 -k1,15936:28249907,6254097:153330 -k1,15936:29062529,6254097:153330 -k1,15936:29660803,6254097:153285 -k1,15936:31563944,6254097:153330 -k1,15936:32583029,6254097:0 -) -(1,15937:6630773,7095585:25952256,505283,134348 -k1,15936:10610956,7095585:246597 -(1,15936:10610956,7095585:0,414482,115847 -r1,16005:10969222,7095585:358266,530329,115847 -k1,15936:10610956,7095585:-358266 -) -(1,15936:10610956,7095585:358266,414482,115847 -k1,15936:10610956,7095585:3277 -h1,15936:10965945,7095585:0,411205,112570 -) -k1,15936:11215819,7095585:246597 -k1,15936:12566698,7095585:246597 -k1,15936:13561061,7095585:246597 -k1,15936:15183259,7095585:246597 -k1,15936:17635144,7095585:246598 -k1,15936:18533169,7095585:246597 -k1,15936:22390800,7095585:246597 -k1,15936:23398925,7095585:246597 -k1,15936:25557207,7095585:246597 -k1,15936:27493322,7095585:246597 -k1,15936:29133870,7095585:246597 -k1,15937:32583029,7095585:0 -) -(1,15937:6630773,7937073:25952256,505283,134348 -(1,15936:6630773,7937073:0,435480,115847 -r1,16005:7692462,7937073:1061689,551327,115847 -k1,15936:6630773,7937073:-1061689 -) -(1,15936:6630773,7937073:1061689,435480,115847 -k1,15936:6630773,7937073:3277 -h1,15936:7689185,7937073:0,411205,112570 -) -k1,15936:7840194,7937073:147732 -k1,15936:9007011,7937073:147732 -k1,15936:12888329,7937073:147732 -(1,15936:12888329,7937073:0,414482,115847 -r1,16005:13246595,7937073:358266,530329,115847 -k1,15936:12888329,7937073:-358266 -) -(1,15936:12888329,7937073:358266,414482,115847 -k1,15936:12888329,7937073:3277 -h1,15936:13243318,7937073:0,411205,112570 -) -k1,15936:13394327,7937073:147732 -k1,15936:14646341,7937073:147732 -k1,15936:15541839,7937073:147732 -k1,15936:17202797,7937073:147732 -k1,15936:18001957,7937073:147732 -k1,15936:19586894,7937073:147732 -k1,15936:23137255,7937073:147732 -k1,15936:24751683,7937073:147732 -k1,15936:25660943,7937073:147732 -k1,15936:27546690,7937073:147732 -k1,15936:28885867,7937073:147732 -k1,15936:29795127,7937073:147732 -k1,15936:32583029,7937073:0 -) -(1,15937:6630773,8778561:25952256,513147,126483 -k1,15936:8279993,8778561:170072 -k1,15936:11196680,8778561:170073 -(1,15936:11196680,8778561:0,435480,115847 -r1,16005:12610081,8778561:1413401,551327,115847 -k1,15936:11196680,8778561:-1413401 -) -(1,15936:11196680,8778561:1413401,435480,115847 -k1,15936:11196680,8778561:3277 -h1,15936:12606804,8778561:0,411205,112570 -) -k1,15936:12780153,8778561:170072 -k1,15936:13969310,8778561:170072 -k1,15936:15231867,8778561:170072 -k1,15936:16061232,8778561:170073 -k1,15936:17250389,8778561:170072 -k1,15936:21154047,8778561:170072 -(1,15936:21154047,8778561:0,414482,115847 -r1,16005:21512313,8778561:358266,530329,115847 -k1,15936:21154047,8778561:-358266 -) -(1,15936:21154047,8778561:358266,414482,115847 -k1,15936:21154047,8778561:3277 -h1,15936:21509036,8778561:0,411205,112570 -) -k1,15936:21682385,8778561:170072 -k1,15936:22383955,8778561:170073 -k1,15936:26195863,8778561:170072 -k1,15936:27557380,8778561:170072 -k1,15936:28185549,8778561:170072 -k1,15936:29459904,8778561:170073 -k1,15936:30377742,8778561:170072 -k1,15936:32583029,8778561:0 -) -(1,15937:6630773,9620049:25952256,513147,126483 -k1,15936:7553607,9620049:161306 -k1,15936:9452928,9620049:161306 -k1,15936:10297119,9620049:161306 -k1,15936:11219952,9620049:161305 -k1,15936:13995489,9620049:161306 -k1,15936:14808223,9620049:161306 -k1,15936:15988614,9620049:161306 -k1,15936:18845416,9620049:161306 -k1,15936:20106416,9620049:161306 -k1,15936:21077092,9620049:161306 -k1,15936:22257483,9620049:161306 -k1,15936:23602368,9620049:161305 -k1,15936:25580332,9620049:161306 -k1,15936:29258300,9620049:161306 -k1,15936:30411166,9620049:161306 -k1,15936:32583029,9620049:0 -) -(1,15937:6630773,10461537:25952256,513147,126483 -k1,15936:7952716,10461537:175718 -k1,15936:9872347,10461537:175718 -k1,15936:12269737,10461537:175719 -k1,15936:13096883,10461537:175718 -k1,15936:14291686,10461537:175718 -k1,15936:15559889,10461537:175718 -k1,15936:16351646,10461537:175719 -k1,15936:17546449,10461537:175718 -k1,15936:18755015,10461537:175718 -k1,15936:19590025,10461537:175718 -k1,15936:20784829,10461537:175719 -k1,15936:24175088,10461537:175718 -k1,15936:27097420,10461537:175718 -k1,15936:27956023,10461537:175718 -k1,15936:30658155,10461537:175719 -k1,15936:31516758,10461537:175718 -k1,15936:32583029,10461537:0 -) -(1,15937:6630773,11303025:25952256,513147,126483 -g1,15936:7777653,11303025 -g1,15936:11747168,11303025 -g1,15936:13230903,11303025 -g1,15936:14421692,11303025 -g1,15936:15687192,11303025 -g1,15936:18217537,11303025 -g1,15936:21112262,11303025 -k1,15937:32583029,11303025:9867101 -g1,15937:32583029,11303025 -) -(1,15939:6630773,12144513:25952256,513147,126483 -h1,15938:6630773,12144513:983040,0,0 -k1,15938:8410163,12144513:168515 -k1,15938:9597763,12144513:168515 -k1,15938:11133359,12144513:168515 -k1,15938:11969029,12144513:168514 -k1,15938:12726057,12144513:168515 -k1,15938:13913657,12144513:168515 -k1,15938:15472191,12144513:168515 -k1,15938:16172203,12144513:168515 -k1,15938:20384289,12144513:168515 -k1,15938:20908664,12144513:168515 -k1,15938:24950357,12144513:168515 -k1,15938:26512822,12144513:168514 -k1,15938:27490707,12144513:168515 -k1,15938:30736137,12144513:168515 -k1,15938:31563944,12144513:168515 -k1,15938:32583029,12144513:0 -) -(1,15939:6630773,12986001:25952256,513147,134348 -k1,15938:8954977,12986001:240159 -k1,15938:9878022,12986001:240160 -k1,15938:13421851,12986001:240159 -k1,15938:15575006,12986001:240159 -k1,15938:17196010,12986001:240160 -k1,15938:19495966,12986001:240159 -k1,15938:22936904,12986001:240160 -k1,15938:24196148,12986001:240159 -k1,15938:25817151,12986001:240159 -k1,15938:27248756,12986001:240160 -k1,15938:30575661,12986001:240159 -k1,15939:32583029,12986001:0 -) -(1,15939:6630773,13827489:25952256,513147,134348 -k1,15938:10205716,13827489:138890 -k1,15938:10972442,13827489:138891 -k1,15938:12813302,13827489:138890 -k1,15938:15080802,13827489:138891 -k1,15938:15634475,13827489:138830 -k1,15938:17493686,13827489:138891 -k1,15938:18624136,13827489:138890 -k1,15938:19533730,13827489:138891 -k1,15938:23059521,13827489:138890 -k1,15938:24436387,13827489:138891 -k1,15938:25234569,13827489:138890 -k1,15938:27631174,13827489:138890 -k1,15938:29887533,13827489:138891 -k1,15938:32583029,13827489:0 -) -(1,15939:6630773,14668977:25952256,505283,134348 -g1,15938:8433668,14668977 -g1,15938:11199287,14668977 -g1,15938:11813359,14668977 -k1,15939:32583029,14668977:15769928 -g1,15939:32583029,14668977 -) -(1,15942:7202902,16165825:24807998,513147,126483 -(1,15940:7202902,16165825:983040,0,0 -g1,15940:8185942,16165825 -g1,15940:6875222,16165825 -g1,15940:6547542,16165825 -(1,15940:6547542,16165825:1310720,0,0 -k1,15940:7858262,16165825:1310720 -) -g1,15940:8185942,16165825 -) -k1,15941:11613229,16165825:221266 -k1,15941:13224514,16165825:221266 -k1,15941:16850375,16165825:221266 -k1,15941:18063201,16165825:221266 -k1,15941:22485979,16165825:221265 -k1,15941:23393407,16165825:221266 -k1,15941:25698718,16165825:221266 -k1,15941:31261168,16165825:221266 -k1,15941:32010900,16165825:0 -) -(1,15942:7202902,17007313:24807998,505283,126483 -k1,15941:8161873,17007313:188268 -k1,15941:11790125,17007313:188267 -k1,15941:14264944,17007313:188268 -k1,15941:15139374,17007313:188268 -(1,15941:15139374,17007313:0,459977,115847 -r1,16005:18311335,17007313:3171961,575824,115847 -k1,15941:15139374,17007313:-3171961 -) -(1,15941:15139374,17007313:3171961,459977,115847 -g1,15941:15846075,17007313 -g1,15941:16901211,17007313 -h1,15941:18308058,17007313:0,411205,112570 -) -k1,15941:18499603,17007313:188268 -k1,15941:19219367,17007313:188267 -k1,15941:21570978,17007313:188268 -k1,15941:22445408,17007313:188268 -(1,15941:22445408,17007313:0,459977,115847 -r1,16005:24913945,17007313:2468537,575824,115847 -k1,15941:22445408,17007313:-2468537 -) -(1,15941:22445408,17007313:2468537,459977,115847 -g1,15941:24207244,17007313 -h1,15941:24910668,17007313:0,411205,112570 -) -k1,15941:25275883,17007313:188268 -k1,15941:25934043,17007313:188267 -k1,15941:26653808,17007313:188268 -k1,15941:28717716,17007313:188268 -k1,15942:32010900,17007313:0 -) -(1,15942:7202902,17848801:24807998,505283,134348 -k1,15941:8353364,17848801:160213 -k1,15941:9798084,17848801:160214 -k1,15941:11647815,17848801:160213 -k1,15941:12827113,17848801:160213 -k1,15941:14483513,17848801:160213 -k1,15941:15259765,17848801:160214 -k1,15941:15775838,17848801:160213 -k1,15941:18494577,17848801:160213 -k1,15941:19186288,17848801:160214 -k1,15941:21633052,17848801:160213 -k1,15941:25811277,17848801:160213 -k1,15941:28245589,17848801:160213 -k1,15941:28820607,17848801:160175 -k1,15941:32010900,17848801:0 -) -(1,15942:7202902,18690289:24807998,513147,126483 -k1,15941:8315103,18690289:164550 -k1,15941:11783322,18690289:164549 -k1,15941:13711446,18690289:164550 -k1,15941:15067441,18690289:164550 -k1,15941:15956819,18690289:164550 -k1,15941:17932128,18690289:164549 -k1,15941:21866964,18690289:164550 -k1,15941:23163976,18690289:164550 -k1,15941:24076292,18690289:164550 -k1,15941:27302028,18690289:164549 -k1,15941:28842179,18690289:164550 -k1,15941:30704767,18690289:164550 -k1,15941:32010900,18690289:0 -) -(1,15942:7202902,19531777:24807998,505283,126483 -g1,15941:8915357,19531777 -g1,15941:9730624,19531777 -g1,15941:10948938,19531777 -g1,15941:12181670,19531777 -k1,15942:32010900,19531777:16215575 -g1,15942:32010900,19531777 -) -(1,15945:6630773,21028625:25952256,513147,126483 -h1,15944:6630773,21028625:983040,0,0 -k1,15944:9612542,21028625:224014 -k1,15944:13141537,21028625:224014 -k1,15944:14384635,21028625:224013 -k1,15944:17370992,21028625:224014 -k1,15944:18985025,21028625:224014 -k1,15944:22285954,21028625:224014 -k1,15944:23614250,21028625:224014 -k1,15944:27048217,21028625:224014 -k1,15944:28219881,21028625:224013 -k1,15944:29895517,21028625:224014 -k1,15944:31821501,21028625:224014 -k1,15944:32583029,21028625:0 -) -(1,15945:6630773,21870113:25952256,513147,134348 -k1,15944:9839819,21870113:213395 -k1,15944:11072299,21870113:213395 -k1,15944:13543410,21870113:213396 -k1,15944:14372843,21870113:213395 -k1,15944:16278378,21870113:213395 -k1,15944:18189155,21870113:213395 -k1,15944:19421636,21870113:213396 -k1,15944:23151693,21870113:213395 -k1,15944:25524499,21870113:213395 -k1,15944:27376949,21870113:213395 -k1,15944:28206383,21870113:213396 -k1,15944:29438863,21870113:213395 -k1,15944:31391584,21870113:213395 -k1,15944:32583029,21870113:0 -) -(1,15945:6630773,22711601:25952256,513147,134348 -g1,15944:8898318,22711601 -g1,15944:9756839,22711601 -g1,15944:13259738,22711601 -g1,15944:14118259,22711601 -g1,15944:15336573,22711601 -g1,15944:17378674,22711601 -g1,15944:19438470,22711601 -g1,15944:20289127,22711601 -g1,15944:21236122,22711601 -g1,15944:23202857,22711601 -g1,15944:24669552,22711601 -k1,15945:32583029,22711601:5235676 -g1,15945:32583029,22711601 -) -v1,15947:6630773,24077377:0,393216,0 -(1,15996:6630773,43761643:25952256,20077482,0 -g1,15996:6630773,43761643 -g1,15996:6303093,43761643 -r1,16005:6401397,43761643:98304,20077482,0 -g1,15996:6600626,43761643 -g1,15996:6797234,43761643 -[1,15996:6797234,43761643:25785795,20077482,0 -(1,15948:6797234,24497961:25785795,813800,267386 -(1,15947:6797234,24497961:0,813800,267386 -r1,16005:8134168,24497961:1336934,1081186,267386 -k1,15947:6797234,24497961:-1336934 -) -(1,15947:6797234,24497961:1336934,813800,267386 -) -k1,15947:8376055,24497961:241887 -k1,15947:8703735,24497961:327680 -k1,15947:9573457,24497961:241887 -k1,15947:11507484,24497961:241887 -k1,15947:14906240,24497961:241887 -k1,15947:17894741,24497961:241887 -(1,15947:17894741,24497961:0,435480,115847 -r1,16005:18956430,24497961:1061689,551327,115847 -k1,15947:17894741,24497961:-1061689 -) -(1,15947:17894741,24497961:1061689,435480,115847 -k1,15947:17894741,24497961:3277 -h1,15947:18953153,24497961:0,411205,112570 -) -k1,15947:19198317,24497961:241887 -k1,15947:21007825,24497961:241887 -k1,15947:23829864,24497961:241887 -k1,15947:27016938,24497961:241887 -k1,15947:28363107,24497961:241887 -k1,15947:30827975,24497961:241887 -k1,15948:32583029,24497961:0 -) -(1,15948:6797234,25339449:25785795,513147,126483 -k1,15947:9901557,25339449:237778 -k1,15947:11410733,25339449:237778 -k1,15947:14309927,25339449:237777 -k1,15947:15079202,25339449:237778 -k1,15947:16336065,25339449:237778 -k1,15947:17666328,25339449:237778 -k1,15947:18571262,25339449:237778 -(1,15947:18571262,25339449:0,452978,122846 -r1,16005:21391511,25339449:2820249,575824,122846 -k1,15947:18571262,25339449:-2820249 -) -(1,15947:18571262,25339449:2820249,452978,122846 -k1,15947:18571262,25339449:3277 -h1,15947:21388234,25339449:0,411205,112570 -) -k1,15947:21629288,25339449:237777 -k1,15947:22483104,25339449:237778 -k1,15947:23076742,25339449:237778 -k1,15947:24878209,25339449:237778 -k1,15947:26595135,25339449:237778 -k1,15947:27751727,25339449:237777 -k1,15947:30736119,25339449:237778 -(1,15947:30736119,25339449:0,452978,115847 -r1,16005:31446097,25339449:709978,568825,115847 -k1,15947:30736119,25339449:-709978 -) -(1,15947:30736119,25339449:709978,452978,115847 -k1,15947:30736119,25339449:3277 -h1,15947:31442820,25339449:0,411205,112570 -) -k1,15947:31683875,25339449:237778 -k1,15948:32583029,25339449:0 -) -(1,15948:6797234,26180937:25785795,505283,134348 -g1,15947:9956069,26180937 -g1,15947:11838263,26180937 -g1,15947:13700140,26180937 -g1,15947:14585531,26180937 -k1,15948:32583029,26180937:14984808 -g1,15948:32583029,26180937 -) -v1,15952:6797234,27371403:0,393216,0 -(1,15960:6797234,28987398:25785795,2009211,196608 -g1,15960:6797234,28987398 -g1,15960:6797234,28987398 -g1,15960:6600626,28987398 -(1,15960:6600626,28987398:0,2009211,196608 -r1,16005:32779637,28987398:26179011,2205819,196608 -k1,15960:6600625,28987398:-26179012 -) -(1,15960:6600626,28987398:26179011,2009211,196608 -[1,15960:6797234,28987398:25785795,1812603,0 -(1,15954:6797234,27579021:25785795,404226,107478 -(1,15953:6797234,27579021:0,0,0 -g1,15953:6797234,27579021 -g1,15953:6797234,27579021 -g1,15953:6469554,27579021 -(1,15953:6469554,27579021:0,0,0 -) -g1,15953:6797234,27579021 -) -g1,15954:9326400,27579021 -g1,15954:10274838,27579021 -g1,15954:13120150,27579021 -g1,15954:13752442,27579021 -g1,15954:17862336,27579021 -g1,15954:19759210,27579021 -g1,15954:20391502,27579021 -h1,15954:21023793,27579021:0,0,0 -k1,15954:32583029,27579021:11559236 -g1,15954:32583029,27579021 -) -(1,15955:6797234,28245199:25785795,404226,101187 -h1,15955:6797234,28245199:0,0,0 -g1,15955:12804002,28245199 -h1,15955:15965459,28245199:0,0,0 -k1,15955:32583029,28245199:16617570 -g1,15955:32583029,28245199 -) -(1,15959:6797234,28911377:25785795,404226,76021 -(1,15957:6797234,28911377:0,0,0 -g1,15957:6797234,28911377 -g1,15957:6797234,28911377 -g1,15957:6469554,28911377 -(1,15957:6469554,28911377:0,0,0 -) -g1,15957:6797234,28911377 -) -g1,15959:7745671,28911377 -g1,15959:9010254,28911377 -h1,15959:10274837,28911377:0,0,0 -k1,15959:32583029,28911377:22308192 -g1,15959:32583029,28911377 -) -] -) -g1,15960:32583029,28987398 -g1,15960:6797234,28987398 -g1,15960:6797234,28987398 -g1,15960:32583029,28987398 -g1,15960:32583029,28987398 -) -h1,15960:6797234,29184006:0,0,0 -(1,15964:6797234,30549782:25785795,513147,134348 -h1,15963:6797234,30549782:983040,0,0 -k1,15963:10201698,30549782:185336 -k1,15963:13789663,30549782:185336 -k1,15963:14966559,30549782:185336 -k1,15963:16437711,30549782:185336 -k1,15963:19917541,30549782:185335 -k1,15963:21496828,30549782:185336 -k1,15963:22701249,30549782:185336 -k1,15963:25561765,30549782:185336 -k1,15963:28493715,30549782:185336 -k1,15963:30246672,30549782:185336 -k1,15964:32583029,30549782:0 -k1,15964:32583029,30549782:0 -) -v1,15966:6797234,31740248:0,393216,0 -(1,15974:6797234,33356243:25785795,2009211,196608 -g1,15974:6797234,33356243 -g1,15974:6797234,33356243 -g1,15974:6600626,33356243 -(1,15974:6600626,33356243:0,2009211,196608 -r1,16005:32779637,33356243:26179011,2205819,196608 -k1,15974:6600625,33356243:-26179012 -) -(1,15974:6600626,33356243:26179011,2009211,196608 -[1,15974:6797234,33356243:25785795,1812603,0 -(1,15968:6797234,31947866:25785795,404226,107478 -(1,15967:6797234,31947866:0,0,0 -g1,15967:6797234,31947866 -g1,15967:6797234,31947866 -g1,15967:6469554,31947866 -(1,15967:6469554,31947866:0,0,0 -) -g1,15967:6797234,31947866 -) -g1,15968:9326400,31947866 -g1,15968:10907128,31947866 -g1,15968:13752440,31947866 -g1,15968:14384732,31947866 -g1,15968:18494626,31947866 -g1,15968:20391500,31947866 -g1,15968:21023792,31947866 -h1,15968:21656083,31947866:0,0,0 -k1,15968:32583029,31947866:10926946 -g1,15968:32583029,31947866 -) -(1,15969:6797234,32614044:25785795,404226,101187 -h1,15969:6797234,32614044:0,0,0 -g1,15969:12804002,32614044 -h1,15969:15965459,32614044:0,0,0 -k1,15969:32583029,32614044:16617570 -g1,15969:32583029,32614044 -) -(1,15973:6797234,33280222:25785795,404226,76021 -(1,15971:6797234,33280222:0,0,0 -g1,15971:6797234,33280222 -g1,15971:6797234,33280222 -g1,15971:6469554,33280222 -(1,15971:6469554,33280222:0,0,0 -) -g1,15971:6797234,33280222 -) -g1,15973:7745671,33280222 -g1,15973:9010254,33280222 -h1,15973:10274837,33280222:0,0,0 -k1,15973:32583029,33280222:22308192 -g1,15973:32583029,33280222 -) -] -) -g1,15974:32583029,33356243 -g1,15974:6797234,33356243 -g1,15974:6797234,33356243 -g1,15974:32583029,33356243 -g1,15974:32583029,33356243 -) -h1,15974:6797234,33552851:0,0,0 -(1,15978:6797234,34918627:25785795,513147,134348 -h1,15977:6797234,34918627:983040,0,0 -k1,15977:10866626,34918627:151650 -k1,15977:12037360,34918627:151649 -k1,15977:13579029,34918627:151650 -k1,15977:16477293,34918627:151650 -(1,15977:16684387,34918627:0,435480,115847 -r1,16005:17746076,34918627:1061689,551327,115847 -k1,15977:16684387,34918627:-1061689 -) -(1,15977:16684387,34918627:1061689,435480,115847 -k1,15977:16684387,34918627:3277 -h1,15977:17742799,34918627:0,411205,112570 -) -k1,15977:18104819,34918627:151649 -k1,15977:19824090,34918627:151650 -k1,15977:22555892,34918627:151650 -k1,15977:25652729,34918627:151650 -k1,15977:28126319,34918627:151649 -k1,15977:29469414,34918627:151650 -k1,15978:32583029,34918627:0 -) -(1,15978:6797234,35760115:25785795,513147,134348 -g1,15977:8330776,35760115 -g1,15977:9887256,35760115 -g1,15977:10737913,35760115 -g1,15977:12943854,35760115 -g1,15977:14162168,35760115 -g1,15977:16041740,35760115 -g1,15977:16892397,35760115 -g1,15977:18110711,35760115 -k1,15978:32583029,35760115:12560633 -g1,15978:32583029,35760115 -) -v1,15980:6797234,36950581:0,393216,0 -(1,15992:6797234,41231288:25785795,4673923,196608 -g1,15992:6797234,41231288 -g1,15992:6797234,41231288 -g1,15992:6600626,41231288 -(1,15992:6600626,41231288:0,4673923,196608 -r1,16005:32779637,41231288:26179011,4870531,196608 -k1,15992:6600625,41231288:-26179012 -) -(1,15992:6600626,41231288:26179011,4673923,196608 -[1,15992:6797234,41231288:25785795,4477315,0 -(1,15982:6797234,37158199:25785795,404226,107478 -(1,15981:6797234,37158199:0,0,0 -g1,15981:6797234,37158199 -g1,15981:6797234,37158199 -g1,15981:6469554,37158199 -(1,15981:6469554,37158199:0,0,0 -) -g1,15981:6797234,37158199 -) -g1,15982:9326400,37158199 -g1,15982:10590983,37158199 -g1,15982:13436295,37158199 -g1,15982:14068587,37158199 -g1,15982:18178481,37158199 -g1,15982:20075355,37158199 -g1,15982:20707647,37158199 -h1,15982:21339938,37158199:0,0,0 -k1,15982:32583029,37158199:11243091 -g1,15982:32583029,37158199 -) -(1,15983:6797234,37824377:25785795,410518,76021 -h1,15983:6797234,37824377:0,0,0 -g1,15983:7745671,37824377 -g1,15983:14700876,37824377 -h1,15983:15017022,37824377:0,0,0 -k1,15983:32583030,37824377:17566008 -g1,15983:32583030,37824377 -) -(1,15984:6797234,38490555:25785795,404226,101187 -h1,15984:6797234,38490555:0,0,0 -g1,15984:7113380,38490555 -g1,15984:7429526,38490555 -g1,15984:13436294,38490555 -h1,15984:16597751,38490555:0,0,0 -k1,15984:32583029,38490555:15985278 -g1,15984:32583029,38490555 -) -(1,15985:6797234,39156733:25785795,404226,76021 -h1,15985:6797234,39156733:0,0,0 -g1,15985:7429526,39156733 -g1,15985:9010255,39156733 -h1,15985:9326401,39156733:0,0,0 -k1,15985:32583029,39156733:23256628 -g1,15985:32583029,39156733 -) -(1,15986:6797234,39822911:25785795,410518,101187 -h1,15986:6797234,39822911:0,0,0 -g1,15986:7113380,39822911 -g1,15986:7429526,39822911 -g1,15986:13436295,39822911 -g1,15986:14700878,39822911 -h1,15986:17230044,39822911:0,0,0 -k1,15986:32583029,39822911:15352985 -g1,15986:32583029,39822911 -) -(1,15987:6797234,40489089:25785795,404226,76021 -h1,15987:6797234,40489089:0,0,0 -h1,15987:7113380,40489089:0,0,0 -k1,15987:32583028,40489089:25469648 -g1,15987:32583028,40489089 -) -(1,15991:6797234,41155267:25785795,410518,76021 -(1,15989:6797234,41155267:0,0,0 -g1,15989:6797234,41155267 -g1,15989:6797234,41155267 -g1,15989:6469554,41155267 -(1,15989:6469554,41155267:0,0,0 -) -g1,15989:6797234,41155267 -) -g1,15991:7745671,41155267 -g1,15991:9010254,41155267 -g1,15991:13120149,41155267 -g1,15991:14384732,41155267 -h1,15991:16597752,41155267:0,0,0 -k1,15991:32583029,41155267:15985277 -g1,15991:32583029,41155267 -) -] -) -g1,15992:32583029,41231288 -g1,15992:6797234,41231288 -g1,15992:6797234,41231288 -g1,15992:32583029,41231288 -g1,15992:32583029,41231288 -) -h1,15992:6797234,41427896:0,0,0 -(1,15996:6797234,42793672:25785795,505283,134348 -h1,15995:6797234,42793672:983040,0,0 -k1,15995:10901754,42793672:158597 -k1,15995:12715135,42793672:158597 -k1,15995:13865292,42793672:158597 -k1,15995:16311096,42793672:158597 -k1,15995:20186894,42793672:158596 -k1,15995:20996919,42793672:158597 -k1,15995:22133969,42793672:158597 -k1,15995:23311651,42793672:158597 -k1,15995:27864437,42793672:158597 -k1,15995:29600486,42793672:158597 -k1,15995:32583029,42793672:0 -) -(1,15996:6797234,43635160:25785795,505283,126483 -g1,15995:10665168,43635160 -g1,15995:12620107,43635160 -g1,15995:15993900,43635160 -g1,15995:16724626,43635160 -g1,15995:17990126,43635160 -g1,15995:19583961,43635160 -g1,15995:20434618,43635160 -g1,15995:21962917,43635160 -k1,15996:32583029,43635160:9052491 -g1,15996:32583029,43635160 -) -] -g1,15996:32583029,43761643 -) -h1,15996:6630773,43761643:0,0,0 -] -(1,16005:32583029,45706769:0,0,0 -g1,16005:32583029,45706769 -) -) -] -(1,16005:6630773,47279633:25952256,0,0 -h1,16005:6630773,47279633:25952256,0,0 -) -] -(1,16005:4262630,4025873:0,0,0 -[1,16005:-473656,4025873:0,0,0 -(1,16005:-473656,-710413:0,0,0 -(1,16005:-473656,-710413:0,0,0 -g1,16005:-473656,-710413 -) -g1,16005:-473656,-710413 -) -] ) -] -!26169 -}273 +] +[1,15983:3078558,4812305:0,0,0 +(1,15983:3078558,49800853:0,16384,2228224 +g1,15983:29030814,49800853 +g1,15983:36135244,49800853 +(1,15456:36135244,49800853:1720320,16384,2228224 +(1,15456:36135244,52029077:16384,1703936,0 +[1,15456:36135244,52029077:25952256,1703936,0 +(1,15456:36135244,51504789:25952256,1179648,0 +(1,15456:36135244,51504789:16384,1179648,0 +r1,15983:36151628,51504789:16384,1179648,0 +) +k1,15456:62087500,51504789:25935872 +g1,15456:62087500,51504789 +) +] +) +g1,15456:36675916,49800853 +(1,15456:36675916,49800853:1179648,16384,0 +r1,15983:37855564,49800853:1179648,16384,0 +) +) +k1,15983:3078556,49800853:-34777008 +) +] +g1,15983:6630773,4812305 +k1,15983:23311652,4812305:15485502 +g1,15983:23960458,4812305 +g1,15983:27572802,4812305 +g1,15983:29306229,4812305 +) +) +] +[1,15983:6630773,45706769:25952256,40108032,0 +(1,15983:6630773,45706769:25952256,40108032,0 +(1,15983:6630773,45706769:0,0,0 +g1,15983:6630773,45706769 +) +[1,15983:6630773,45706769:25952256,40108032,0 +v1,15934:6630773,6254097:0,393216,0 +(1,15934:6630773,18516234:25952256,12655353,0 +g1,15934:6630773,18516234 +g1,15934:6237557,18516234 +r1,15983:6368629,18516234:131072,12655353,0 +g1,15934:6567858,18516234 +g1,15934:6764466,18516234 +[1,15934:6764466,18516234:25818563,12655353,0 +v1,15900:6764466,6254097:0,393216,0 +(1,15913:6764466,11413590:25818563,5552709,196608 +g1,15913:6764466,11413590 +g1,15913:6764466,11413590 +g1,15913:6567858,11413590 +(1,15913:6567858,11413590:0,5552709,196608 +r1,15983:32779637,11413590:26211779,5749317,196608 +k1,15913:6567857,11413590:-26211780 +) +(1,15913:6567858,11413590:26211779,5552709,196608 +[1,15913:6764466,11413590:25818563,5356101,0 +(1,15902:6764466,6481928:25818563,424439,86428 +(1,15901:6764466,6481928:0,0,0 +g1,15901:6764466,6481928 +g1,15901:6764466,6481928 +g1,15901:6436786,6481928 +(1,15901:6436786,6481928:0,0,0 +) +g1,15901:6764466,6481928 +) +k1,15902:6764466,6481928:0 +g1,15902:9752052,6481928 +g1,15902:10415960,6481928 +g1,15902:12075730,6481928 +g1,15902:12739638,6481928 +g1,15902:13403546,6481928 +g1,15902:15063316,6481928 +g1,15902:15727224,6481928 +g1,15902:16391132,6481928 +g1,15902:19710672,6481928 +g1,15902:20706534,6481928 +g1,15902:21702396,6481928 +g1,15902:22698258,6481928 +h1,15902:23694120,6481928:0,0,0 +k1,15902:32583029,6481928:8888909 +g1,15902:32583029,6481928 +) +(1,15912:6764466,7297855:25818563,424439,9908 +(1,15904:6764466,7297855:0,0,0 +g1,15904:6764466,7297855 +g1,15904:6764466,7297855 +g1,15904:6436786,7297855 +(1,15904:6436786,7297855:0,0,0 +) +g1,15904:6764466,7297855 +) +g1,15912:7760328,7297855 +g1,15912:8424236,7297855 +g1,15912:9088144,7297855 +g1,15912:11743776,7297855 +g1,15912:12407684,7297855 +g1,15912:13071592,7297855 +h1,15912:13403546,7297855:0,0,0 +k1,15912:32583030,7297855:19179484 +g1,15912:32583030,7297855 +) +(1,15912:6764466,7982710:25818563,424439,6605 +h1,15912:6764466,7982710:0,0,0 +g1,15912:7760328,7982710 +g1,15912:8092282,7982710 +g1,15912:8424236,7982710 +g1,15912:8756190,7982710 +g1,15912:9088144,7982710 +g1,15912:9420098,7982710 +g1,15912:9752052,7982710 +g1,15912:10415960,7982710 +g1,15912:10747914,7982710 +g1,15912:11079868,7982710 +g1,15912:11411822,7982710 +g1,15912:11743776,7982710 +g1,15912:12407684,7982710 +h1,15912:12739638,7982710:0,0,0 +k1,15912:32583030,7982710:19843392 +g1,15912:32583030,7982710 +) +(1,15912:6764466,8667565:25818563,424439,6605 +h1,15912:6764466,8667565:0,0,0 +g1,15912:7760328,8667565 +g1,15912:8092282,8667565 +g1,15912:8424236,8667565 +g1,15912:10415960,8667565 +g1,15912:12407684,8667565 +k1,15912:12407684,8667565:0 +h1,15912:14399408,8667565:0,0,0 +k1,15912:32583028,8667565:18183620 +g1,15912:32583028,8667565 +) +(1,15912:6764466,9352420:25818563,424439,79822 +h1,15912:6764466,9352420:0,0,0 +g1,15912:7760328,9352420 +g1,15912:8424236,9352420 +g1,15912:8756190,9352420 +g1,15912:9088144,9352420 +g1,15912:9420098,9352420 +g1,15912:9752052,9352420 +g1,15912:10415960,9352420 +g1,15912:10747914,9352420 +g1,15912:11079868,9352420 +g1,15912:11411822,9352420 +g1,15912:11743776,9352420 +g1,15912:12407684,9352420 +g1,15912:14067454,9352420 +k1,15912:14067454,9352420:0 +h1,15912:15395270,9352420:0,0,0 +k1,15912:32583030,9352420:17187760 +g1,15912:32583030,9352420 +) +(1,15912:6764466,10037275:25818563,424439,79822 +h1,15912:6764466,10037275:0,0,0 +g1,15912:7760328,10037275 +g1,15912:8424236,10037275 +g1,15912:8756190,10037275 +g1,15912:9088144,10037275 +g1,15912:9420098,10037275 +g1,15912:9752052,10037275 +g1,15912:10415960,10037275 +g1,15912:10747914,10037275 +g1,15912:11079868,10037275 +g1,15912:11411822,10037275 +g1,15912:11743776,10037275 +g1,15912:12407684,10037275 +g1,15912:14067454,10037275 +k1,15912:14067454,10037275:0 +h1,15912:15395270,10037275:0,0,0 +k1,15912:32583030,10037275:17187760 +g1,15912:32583030,10037275 +) +(1,15912:6764466,10722130:25818563,424439,79822 +h1,15912:6764466,10722130:0,0,0 +g1,15912:7760328,10722130 +g1,15912:8424236,10722130 +g1,15912:8756190,10722130 +g1,15912:9088144,10722130 +g1,15912:9420098,10722130 +g1,15912:9752052,10722130 +g1,15912:10415960,10722130 +g1,15912:10747914,10722130 +g1,15912:11079868,10722130 +g1,15912:11411822,10722130 +g1,15912:11743776,10722130 +g1,15912:12407684,10722130 +g1,15912:14067454,10722130 +k1,15912:14067454,10722130:0 +h1,15912:15395270,10722130:0,0,0 +k1,15912:32583030,10722130:17187760 +g1,15912:32583030,10722130 +) +(1,15912:6764466,11406985:25818563,424439,6605 +h1,15912:6764466,11406985:0,0,0 +g1,15912:7760328,11406985 +g1,15912:8424236,11406985 +g1,15912:9088144,11406985 +g1,15912:9752052,11406985 +g1,15912:11411822,11406985 +h1,15912:12739638,11406985:0,0,0 +k1,15912:32583030,11406985:19843392 +g1,15912:32583030,11406985 +) +] +) +g1,15913:32583029,11413590 +g1,15913:6764466,11413590 +g1,15913:6764466,11413590 +g1,15913:32583029,11413590 +g1,15913:32583029,11413590 +) +h1,15913:6764466,11610198:0,0,0 +(1,15917:6764466,12475278:25818563,513147,126483 +h1,15916:6764466,12475278:983040,0,0 +g1,15916:8434323,12475278 +g1,15916:9627078,12475278 +g1,15916:10485599,12475278 +g1,15916:12008655,12475278 +g1,15916:12890769,12475278 +g1,15916:13445858,12475278 +g1,15916:14638613,12475278 +g1,15916:15497134,12475278 +g1,15916:18004541,12475278 +g1,15916:19308052,12475278 +g1,15916:20255047,12475278 +g1,15916:22868622,12475278 +g1,15916:25273138,12475278 +g1,15916:26123795,12475278 +g1,15916:27342109,12475278 +k1,15917:32583029,12475278:1360533 +g1,15917:32583029,12475278 +) +v1,15919:6764466,13160133:0,393216,0 +(1,15932:6764466,18319626:25818563,5552709,196608 +g1,15932:6764466,18319626 +g1,15932:6764466,18319626 +g1,15932:6567858,18319626 +(1,15932:6567858,18319626:0,5552709,196608 +r1,15983:32779637,18319626:26211779,5749317,196608 +k1,15932:6567857,18319626:-26211780 +) +(1,15932:6567858,18319626:26211779,5552709,196608 +[1,15932:6764466,18319626:25818563,5356101,0 +(1,15921:6764466,13387964:25818563,424439,86428 +(1,15920:6764466,13387964:0,0,0 +g1,15920:6764466,13387964 +g1,15920:6764466,13387964 +g1,15920:6436786,13387964 +(1,15920:6436786,13387964:0,0,0 +) +g1,15920:6764466,13387964 +) +k1,15921:6764466,13387964:0 +g1,15921:9752052,13387964 +g1,15921:10415960,13387964 +g1,15921:12075730,13387964 +g1,15921:12739638,13387964 +g1,15921:13403546,13387964 +g1,15921:15063316,13387964 +g1,15921:15727224,13387964 +g1,15921:16391132,13387964 +g1,15921:19710672,13387964 +g1,15921:21370442,13387964 +g1,15921:23030212,13387964 +g1,15921:27677567,13387964 +h1,15921:32324922,13387964:0,0,0 +k1,15921:32583029,13387964:258107 +g1,15921:32583029,13387964 +) +(1,15931:6764466,14203891:25818563,424439,9908 +(1,15923:6764466,14203891:0,0,0 +g1,15923:6764466,14203891 +g1,15923:6764466,14203891 +g1,15923:6436786,14203891 +(1,15923:6436786,14203891:0,0,0 +) +g1,15923:6764466,14203891 +) +g1,15931:7760328,14203891 +g1,15931:8424236,14203891 +g1,15931:9088144,14203891 +g1,15931:11743776,14203891 +g1,15931:12407684,14203891 +g1,15931:13071592,14203891 +h1,15931:13403546,14203891:0,0,0 +k1,15931:32583030,14203891:19179484 +g1,15931:32583030,14203891 +) +(1,15931:6764466,14888746:25818563,424439,6605 +h1,15931:6764466,14888746:0,0,0 +g1,15931:7760328,14888746 +g1,15931:8092282,14888746 +g1,15931:8424236,14888746 +g1,15931:8756190,14888746 +g1,15931:9088144,14888746 +g1,15931:9420098,14888746 +g1,15931:9752052,14888746 +g1,15931:10415960,14888746 +g1,15931:10747914,14888746 +g1,15931:11079868,14888746 +g1,15931:11411822,14888746 +g1,15931:11743776,14888746 +g1,15931:12407684,14888746 +h1,15931:12739638,14888746:0,0,0 +k1,15931:32583030,14888746:19843392 +g1,15931:32583030,14888746 +) +(1,15931:6764466,15573601:25818563,424439,6605 +h1,15931:6764466,15573601:0,0,0 +g1,15931:7760328,15573601 +g1,15931:8092282,15573601 +g1,15931:8424236,15573601 +g1,15931:10415960,15573601 +g1,15931:12407684,15573601 +k1,15931:12407684,15573601:0 +h1,15931:14399408,15573601:0,0,0 +k1,15931:32583028,15573601:18183620 +g1,15931:32583028,15573601 +) +(1,15931:6764466,16258456:25818563,424439,79822 +h1,15931:6764466,16258456:0,0,0 +g1,15931:7760328,16258456 +g1,15931:8424236,16258456 +g1,15931:8756190,16258456 +g1,15931:9088144,16258456 +g1,15931:9420098,16258456 +g1,15931:9752052,16258456 +g1,15931:10415960,16258456 +g1,15931:10747914,16258456 +g1,15931:11079868,16258456 +g1,15931:11411822,16258456 +g1,15931:11743776,16258456 +g1,15931:12407684,16258456 +g1,15931:14067454,16258456 +k1,15931:14067454,16258456:0 +h1,15931:15395270,16258456:0,0,0 +k1,15931:32583030,16258456:17187760 +g1,15931:32583030,16258456 +) +(1,15931:6764466,16943311:25818563,424439,79822 +h1,15931:6764466,16943311:0,0,0 +g1,15931:7760328,16943311 +g1,15931:8424236,16943311 +g1,15931:8756190,16943311 +g1,15931:9088144,16943311 +g1,15931:9420098,16943311 +g1,15931:9752052,16943311 +g1,15931:10415960,16943311 +g1,15931:10747914,16943311 +g1,15931:11079868,16943311 +g1,15931:11411822,16943311 +g1,15931:11743776,16943311 +g1,15931:12407684,16943311 +g1,15931:14067454,16943311 +k1,15931:14067454,16943311:0 +h1,15931:15395270,16943311:0,0,0 +k1,15931:32583030,16943311:17187760 +g1,15931:32583030,16943311 +) +(1,15931:6764466,17628166:25818563,424439,79822 +h1,15931:6764466,17628166:0,0,0 +g1,15931:7760328,17628166 +g1,15931:8424236,17628166 +g1,15931:8756190,17628166 +g1,15931:9088144,17628166 +g1,15931:9420098,17628166 +g1,15931:9752052,17628166 +g1,15931:10415960,17628166 +g1,15931:10747914,17628166 +g1,15931:11079868,17628166 +g1,15931:11411822,17628166 +g1,15931:11743776,17628166 +g1,15931:12407684,17628166 +g1,15931:14067454,17628166 +k1,15931:14067454,17628166:0 +h1,15931:15395270,17628166:0,0,0 +k1,15931:32583030,17628166:17187760 +g1,15931:32583030,17628166 +) +(1,15931:6764466,18313021:25818563,424439,6605 +h1,15931:6764466,18313021:0,0,0 +g1,15931:7760328,18313021 +g1,15931:8424236,18313021 +g1,15931:9088144,18313021 +g1,15931:9752052,18313021 +g1,15931:11411822,18313021 +h1,15931:12739638,18313021:0,0,0 +k1,15931:32583030,18313021:19843392 +g1,15931:32583030,18313021 +) +] +) +g1,15932:32583029,18319626 +g1,15932:6764466,18319626 +g1,15932:6764466,18319626 +g1,15932:32583029,18319626 +g1,15932:32583029,18319626 +) +h1,15932:6764466,18516234:0,0,0 +] +g1,15934:32583029,18516234 +) +h1,15934:6630773,18516234:0,0,0 +(1,15939:6630773,21347394:25952256,32768,229376 +(1,15939:6630773,21347394:0,32768,229376 +(1,15939:6630773,21347394:5505024,32768,229376 +r1,15983:12135797,21347394:5505024,262144,229376 +) +k1,15939:6630773,21347394:-5505024 +) +(1,15939:6630773,21347394:25952256,32768,0 +r1,15983:32583029,21347394:25952256,32768,0 +) +) +(1,15939:6630773,22979246:25952256,606339,151780 +(1,15939:6630773,22979246:1974731,582746,14155 +g1,15939:6630773,22979246 +g1,15939:8605504,22979246 +) +g1,15939:10655733,22979246 +k1,15939:32583028,22979246:19792132 +g1,15939:32583028,22979246 +) +(1,15942:6630773,24237542:25952256,513147,134348 +k1,15941:8050699,24237542:223239 +k1,15941:9580072,24237542:223240 +k1,15941:12296301,24237542:223239 +k1,15941:15705900,24237542:223239 +k1,15941:18564343,24237542:223240 +k1,15941:20948959,24237542:223239 +k1,15941:22907592,24237542:223240 +k1,15941:26338818,24237542:223239 +k1,15941:29472511,24237542:223239 +k1,15941:30227248,24237542:223240 +k1,15941:31469572,24237542:223239 +k1,15942:32583029,24237542:0 +) +(1,15942:6630773,25102622:25952256,513147,126483 +k1,15941:8729538,25102622:260480 +k1,15941:10082504,25102622:260481 +k1,15941:11002276,25102622:260480 +k1,15941:13050578,25102622:260480 +k1,15941:14691903,25102622:260481 +k1,15941:15657550,25102622:260480 +k1,15941:18762293,25102622:260480 +k1,15941:21190704,25102622:260480 +k1,15941:21807045,25102622:260481 +k1,15941:24831834,25102622:260480 +k1,15941:25751606,25102622:260480 +k1,15941:29916067,25102622:260481 +k1,15941:30862709,25102622:260480 +k1,15941:32583029,25102622:0 +) +(1,15942:6630773,25967702:25952256,513147,102891 +k1,15941:7969678,25967702:234623 +k1,15941:8952068,25967702:234624 +k1,15941:9872853,25967702:234623 +k1,15941:11386084,25967702:234624 +k1,15941:13133933,25967702:234623 +k1,15941:14762508,25967702:234624 +k1,15941:16431059,25967702:234623 +k1,15941:17080490,25967702:234588 +k1,15941:20514582,25967702:234624 +k1,15941:21377040,25967702:234623 +k1,15941:24451339,25967702:234624 +k1,15941:26313221,25967702:234623 +k1,15941:28881582,25967702:234624 +k1,15941:30832593,25967702:234623 +k1,15941:31482024,25967702:234588 +k1,15941:32583029,25967702:0 +) +(1,15942:6630773,26832782:25952256,505283,134348 +k1,15941:7199843,26832782:213210 +k1,15941:9346365,26832782:213210 +k1,15941:10949594,26832782:213210 +k1,15941:13909418,26832782:213210 +(1,15941:13909418,26832782:0,452978,115847 +r1,15983:14619396,26832782:709978,568825,115847 +k1,15941:13909418,26832782:-709978 +) +(1,15941:13909418,26832782:709978,452978,115847 +k1,15941:13909418,26832782:3277 +h1,15941:14616119,26832782:0,411205,112570 +) +k1,15941:15006276,26832782:213210 +k1,15941:18309509,26832782:213210 +k1,15941:19138758,26832782:213211 +k1,15941:21630655,26832782:213210 +h1,15941:22601243,26832782:0,0,0 +k1,15941:22814453,26832782:213210 +k1,15941:23837033,26832782:213210 +k1,15941:25548396,26832782:213210 +h1,15941:26743773,26832782:0,0,0 +k1,15941:27130653,26832782:213210 +k1,15941:28832186,26832782:213210 +k1,15941:29913748,26832782:213210 +k1,15941:32583029,26832782:0 +) +(1,15942:6630773,27697862:25952256,513147,134348 +k1,15941:8567541,27697862:234798 +k1,15941:10835920,27697862:234797 +k1,15941:16457777,27697862:234798 +k1,15941:17351866,27697862:234797 +k1,15941:19480654,27697862:234798 +k1,15941:20906896,27697862:234797 +k1,15941:22160779,27697862:234798 +k1,15941:25912238,27697862:234797 +k1,15941:28306447,27697862:234798 +k1,15941:30237971,27697862:234797 +k1,15941:31664214,27697862:234798 +k1,15941:32583029,27697862:0 +) +(1,15942:6630773,28562942:25952256,473825,126483 +g1,15941:8220021,28562942 +k1,15942:32583029,28562942:21442724 +g1,15942:32583029,28562942 +) +(1,15943:6630773,30679760:25952256,555811,147783 +(1,15943:6630773,30679760:2450326,534184,12975 +g1,15943:6630773,30679760 +g1,15943:9081099,30679760 +) +k1,15943:32583029,30679760:20048118 +g1,15943:32583029,30679760 +) +(1,15947:6630773,31938056:25952256,513147,134348 +k1,15946:7277933,31938056:159572 +k1,15946:8372088,31938056:159612 +k1,15946:9190991,31938056:159611 +k1,15946:12427518,31938056:159612 +k1,15946:13534780,31938056:159611 +k1,15946:17708472,31938056:159612 +k1,15946:19588403,31938056:159611 +k1,15946:20415171,31938056:159612 +k1,15946:20989586,31938056:159572 +k1,15946:24174994,31938056:159611 +k1,15946:24866103,31938056:159612 +k1,15946:29227227,31938056:159611 +k1,15946:30002877,31938056:159612 +k1,15946:32583029,31938056:0 +) +(1,15947:6630773,32803136:25952256,513147,134348 +k1,15946:9912364,32803136:162734 +k1,15946:10544990,32803136:162733 +k1,15946:13633907,32803136:162734 +k1,15946:14815726,32803136:162734 +k1,15946:16911772,32803136:162734 +k1,15946:17489312,32803136:162697 +k1,15946:19042065,32803136:162734 +k1,15946:19966326,32803136:162733 +k1,15946:22360561,32803136:162734 +k1,15946:24379930,32803136:162734 +k1,15946:25739351,32803136:162734 +k1,15946:27292103,32803136:162733 +k1,15946:30201451,32803136:162734 +k1,15946:32583029,32803136:0 +) +(1,15947:6630773,33668216:25952256,505283,134348 +k1,15946:7417641,33668216:170830 +k1,15946:10168624,33668216:170831 +k1,15946:13458311,33668216:170830 +(1,15946:13458311,33668216:0,435480,115847 +r1,15983:14520000,33668216:1061689,551327,115847 +k1,15946:13458311,33668216:-1061689 +) +(1,15946:13458311,33668216:1061689,435480,115847 +k1,15946:13458311,33668216:3277 +h1,15946:14516723,33668216:0,411205,112570 +) +k1,15946:14864500,33668216:170830 +k1,15946:15566828,33668216:170831 +k1,15946:18687433,33668216:170830 +k1,15946:20049708,33668216:170830 +k1,15946:23910216,33668216:170831 +k1,15946:24842574,33668216:170830 +k1,15946:27593556,33668216:170830 +k1,15946:29910690,33668216:170831 +k1,15946:31966991,33668216:170830 +k1,15946:32583029,33668216:0 +) +(1,15947:6630773,34533296:25952256,513147,126483 +g1,15946:8204947,34533296 +g1,15946:10695315,34533296 +g1,15946:13920341,34533296 +g1,15946:15404076,34533296 +g1,15946:17199762,34533296 +g1,15946:18677598,34533296 +g1,15946:19492865,34533296 +g1,15946:21081457,34533296 +k1,15947:32583029,34533296:9607582 +g1,15947:32583029,34533296 +) +(1,15949:6630773,35398376:25952256,505283,126483 +h1,15948:6630773,35398376:983040,0,0 +g1,15948:10674344,35398376 +(1,15948:10674344,35398376:0,435480,115847 +r1,15983:11736033,35398376:1061689,551327,115847 +k1,15948:10674344,35398376:-1061689 +) +(1,15948:10674344,35398376:1061689,435480,115847 +k1,15948:10674344,35398376:3277 +h1,15948:11732756,35398376:0,411205,112570 +) +g1,15948:11935262,35398376 +g1,15948:13807625,35398376 +g1,15948:14362714,35398376 +g1,15948:16763953,35398376 +g1,15948:18198536,35398376 +g1,15948:19083927,35398376 +g1,15948:20201971,35398376 +(1,15948:20201971,35398376:0,452978,115847 +r1,15983:20911949,35398376:709978,568825,115847 +k1,15948:20201971,35398376:-709978 +) +(1,15948:20201971,35398376:709978,452978,115847 +k1,15948:20201971,35398376:3277 +h1,15948:20908672,35398376:0,411205,112570 +) +k1,15949:32583029,35398376:11497410 +g1,15949:32583029,35398376 +) +v1,15951:6630773,36083231:0,393216,0 +(1,15955:6630773,36320970:25952256,630955,196608 +g1,15955:6630773,36320970 +g1,15955:6630773,36320970 +g1,15955:6434165,36320970 +(1,15955:6434165,36320970:0,630955,196608 +r1,15983:32779637,36320970:26345472,827563,196608 +k1,15955:6434165,36320970:-26345472 +) +(1,15955:6434165,36320970:26345472,630955,196608 +[1,15955:6630773,36320970:25952256,434347,0 +(1,15953:6630773,36311062:25952256,424439,9908 +(1,15952:6630773,36311062:0,0,0 +g1,15952:6630773,36311062 +g1,15952:6630773,36311062 +g1,15952:6303093,36311062 +(1,15952:6303093,36311062:0,0,0 +) +g1,15952:6630773,36311062 +) +g1,15953:9286405,36311062 +g1,15953:10282267,36311062 +h1,15953:11610083,36311062:0,0,0 +k1,15953:32583029,36311062:20972946 +g1,15953:32583029,36311062 +) +] +) +g1,15955:32583029,36320970 +g1,15955:6630773,36320970 +g1,15955:6630773,36320970 +g1,15955:32583029,36320970 +g1,15955:32583029,36320970 +) +h1,15955:6630773,36517578:0,0,0 +v1,15959:6630773,37202433:0,393216,0 +(1,15963:6630773,37536510:25952256,727293,196608 +g1,15963:6630773,37536510 +g1,15963:6630773,37536510 +g1,15963:6434165,37536510 +(1,15963:6434165,37536510:0,727293,196608 +r1,15983:32779637,37536510:26345472,923901,196608 +k1,15963:6434165,37536510:-26345472 +) +(1,15963:6434165,37536510:26345472,727293,196608 +[1,15963:6630773,37536510:25952256,530685,0 +(1,15961:6630773,37430264:25952256,424439,106246 +(1,15960:6630773,37430264:0,0,0 +g1,15960:6630773,37430264 +g1,15960:6630773,37430264 +g1,15960:6303093,37430264 +(1,15960:6303093,37430264:0,0,0 +) +g1,15960:6630773,37430264 +) +g1,15961:9286405,37430264 +g1,15961:10614221,37430264 +g1,15961:12937899,37430264 +g1,15961:14265715,37430264 +g1,15961:16257439,37430264 +g1,15961:17253301,37430264 +h1,15961:20240886,37430264:0,0,0 +k1,15961:32583029,37430264:12342143 +g1,15961:32583029,37430264 +) +] +) +g1,15963:32583029,37536510 +g1,15963:6630773,37536510 +g1,15963:6630773,37536510 +g1,15963:32583029,37536510 +g1,15963:32583029,37536510 +) +h1,15963:6630773,37733118:0,0,0 +(1,15967:6630773,38598198:25952256,505283,134348 +h1,15966:6630773,38598198:983040,0,0 +k1,15966:9004393,38598198:193893 +k1,15966:10878629,38598198:193893 +k1,15966:13277809,38598198:193893 +k1,15966:14575983,38598198:193892 +k1,15966:15517642,38598198:193893 +k1,15966:17455448,38598198:193893 +k1,15966:19980457,38598198:193893 +k1,15966:21909743,38598198:193893 +k1,15966:22459496,38598198:193893 +k1,15966:23725558,38598198:193893 +k1,15966:24605612,38598198:193892 +k1,15966:28533091,38598198:193893 +k1,15966:30932271,38598198:193893 +k1,15966:31812326,38598198:193893 +k1,15966:32583029,38598198:0 +) +(1,15967:6630773,39463278:25952256,513147,134348 +k1,15966:9898136,39463278:195035 +k1,15966:10854698,39463278:195034 +k1,15966:12787748,39463278:195035 +k1,15966:14174227,39463278:195034 +k1,15966:15130790,39463278:195035 +k1,15966:17940056,39463278:195035 +k1,15966:18786518,39463278:195034 +k1,15966:20000638,39463278:195035 +k1,15966:22891168,39463278:195034 +k1,15966:23895573,39463278:195035 +k1,15966:25109693,39463278:195035 +k1,15966:26337575,39463278:195034 +k1,15966:27191902,39463278:195035 +k1,15966:28406021,39463278:195034 +(1,15966:28406021,39463278:0,435480,115847 +r1,15983:29467710,39463278:1061689,551327,115847 +k1,15966:28406021,39463278:-1061689 +) +(1,15966:28406021,39463278:1061689,435480,115847 +k1,15966:28406021,39463278:3277 +h1,15966:29464433,39463278:0,411205,112570 +) +k1,15966:29662745,39463278:195035 +k1,15966:32583029,39463278:0 +) +(1,15967:6630773,40328358:25952256,505283,134348 +g1,15966:8424493,40328358 +(1,15966:8424493,40328358:0,414482,115847 +r1,15983:8782759,40328358:358266,530329,115847 +k1,15966:8424493,40328358:-358266 +) +(1,15966:8424493,40328358:358266,414482,115847 +k1,15966:8424493,40328358:3277 +h1,15966:8779482,40328358:0,411205,112570 +) +g1,15966:8981988,40328358 +g1,15966:9797255,40328358 +g1,15966:12941671,40328358 +g1,15966:14814034,40328358 +g1,15966:15369123,40328358 +g1,15966:17770362,40328358 +g1,15966:19041760,40328358 +g1,15966:20307260,40328358 +g1,15966:23243272,40328358 +g1,15966:24677855,40328358 +g1,15966:25563246,40328358 +(1,15966:25563246,40328358:0,414482,115847 +r1,15983:25921512,40328358:358266,530329,115847 +k1,15966:25563246,40328358:-358266 +) +(1,15966:25563246,40328358:358266,414482,115847 +k1,15966:25563246,40328358:3277 +h1,15966:25918235,40328358:0,411205,112570 +) +g1,15966:26120741,40328358 +g1,15966:26936008,40328358 +g1,15966:28569165,40328358 +g1,15966:29183237,40328358 +k1,15967:32583029,40328358:1505802 +g1,15967:32583029,40328358 +) +v1,15969:6630773,41013213:0,393216,0 +(1,15977:6630773,42821648:25952256,2201651,196608 +g1,15977:6630773,42821648 +g1,15977:6630773,42821648 +g1,15977:6434165,42821648 +(1,15977:6434165,42821648:0,2201651,196608 +r1,15983:32779637,42821648:26345472,2398259,196608 +k1,15977:6434165,42821648:-26345472 +) +(1,15977:6434165,42821648:26345472,2201651,196608 +[1,15977:6630773,42821648:25952256,2005043,0 +(1,15971:6630773,41241044:25952256,424439,106246 +(1,15970:6630773,41241044:0,0,0 +g1,15970:6630773,41241044 +g1,15970:6630773,41241044 +g1,15970:6303093,41241044 +(1,15970:6303093,41241044:0,0,0 +) +g1,15970:6630773,41241044 +) +g1,15971:9286405,41241044 +g1,15971:10614221,41241044 +g1,15971:12937899,41241044 +g1,15971:13601807,41241044 +g1,15971:14597669,41241044 +g1,15971:15925485,41241044 +g1,15971:18249163,41241044 +g1,15971:19245025,41241044 +h1,15971:22232610,41241044:0,0,0 +k1,15971:32583029,41241044:10350419 +g1,15971:32583029,41241044 +) +(1,15972:6630773,41925899:25952256,424439,106246 +h1,15972:6630773,41925899:0,0,0 +g1,15972:13601805,41925899 +h1,15972:16921344,41925899:0,0,0 +k1,15972:32583029,41925899:15661685 +g1,15972:32583029,41925899 +) +(1,15976:6630773,42741826:25952256,424439,79822 +(1,15974:6630773,42741826:0,0,0 +g1,15974:6630773,42741826 +g1,15974:6630773,42741826 +g1,15974:6303093,42741826 +(1,15974:6303093,42741826:0,0,0 +) +g1,15974:6630773,42741826 +) +g1,15976:7626635,42741826 +g1,15976:8954451,42741826 +h1,15976:10282267,42741826:0,0,0 +k1,15976:32583029,42741826:22300762 +g1,15976:32583029,42741826 +) +] +) +g1,15977:32583029,42821648 +g1,15977:6630773,42821648 +g1,15977:6630773,42821648 +g1,15977:32583029,42821648 +g1,15977:32583029,42821648 +) +h1,15977:6630773,43018256:0,0,0 +(1,15981:6630773,43883336:25952256,505283,126483 +h1,15980:6630773,43883336:983040,0,0 +k1,15980:8843156,43883336:280382 +k1,15980:11056850,43883336:280382 +k1,15980:12727252,43883336:280383 +k1,15980:15754248,43883336:280382 +k1,15980:18830396,43883336:280382 +k1,15980:22957741,43883336:280382 +k1,15980:24632075,43883336:280383 +k1,15980:25327218,43883336:280300 +k1,15980:26223639,43883336:280383 +k1,15980:27270137,43883336:280382 +k1,15980:29252489,43883336:280382 +k1,15980:32583029,43883336:0 +) +(1,15981:6630773,44748416:25952256,513147,134348 +k1,15980:8098070,44748416:182791 +k1,15980:11306657,44748416:182790 +k1,15980:12773954,44748416:182791 +k1,15980:13948305,44748416:182791 +k1,15980:14782524,44748416:182791 +k1,15980:15713080,44748416:182790 +k1,15980:18957058,44748416:182791 +k1,15980:20232334,44748416:182791 +k1,15980:21434210,44748416:182791 +k1,15980:25325027,44748416:182790 +k1,15980:27765533,44748416:182791 +k1,15980:29637842,44748416:182791 +k1,15980:32583029,44748416:0 +) +] +(1,15983:32583029,45706769:0,0,0 +g1,15983:32583029,45706769 +) +) +] +(1,15983:6630773,47279633:25952256,0,0 +h1,15983:6630773,47279633:25952256,0,0 +) +] +(1,15983:4262630,4025873:0,0,0 +[1,15983:-473656,4025873:0,0,0 +(1,15983:-473656,-710413:0,0,0 +(1,15983:-473656,-710413:0,0,0 +g1,15983:-473656,-710413 +) +g1,15983:-473656,-710413 +) +] +) +] +!27268 +}257 +Input:2331:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2332:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2333:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2334:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2335:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2336:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2337:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2338:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -273815,904 +270570,1033 @@ Input:2340:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConso Input:2341:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2342:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2343:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!764 -{274 -[1,16028:4262630,47279633:28320399,43253760,0 -(1,16028:4262630,4025873:0,0,0 -[1,16028:-473656,4025873:0,0,0 -(1,16028:-473656,-710413:0,0,0 -(1,16028:-473656,-644877:0,0,0 -k1,16028:-473656,-644877:-65536 +Input:2344:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2345:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1422 +{258 +[1,16088:4262630,47279633:28320399,43253760,0 +(1,16088:4262630,4025873:0,0,0 +[1,16088:-473656,4025873:0,0,0 +(1,16088:-473656,-710413:0,0,0 +(1,16088:-473656,-644877:0,0,0 +k1,16088:-473656,-644877:-65536 ) -(1,16028:-473656,4736287:0,0,0 -k1,16028:-473656,4736287:5209943 +(1,16088:-473656,4736287:0,0,0 +k1,16088:-473656,4736287:5209943 ) -g1,16028:-473656,-710413 +g1,16088:-473656,-710413 ) ] ) -[1,16028:6630773,47279633:25952256,43253760,0 -[1,16028:6630773,4812305:25952256,786432,0 -(1,16028:6630773,4812305:25952256,505283,134348 -(1,16028:6630773,4812305:25952256,505283,134348 -g1,16028:3078558,4812305 -[1,16028:3078558,4812305:0,0,0 -(1,16028:3078558,2439708:0,1703936,0 -k1,16028:1358238,2439708:-1720320 -(1,15243:1358238,2439708:1720320,1703936,0 -(1,15243:1358238,2439708:1179648,16384,0 -r1,16028:2537886,2439708:1179648,16384,0 +[1,16088:6630773,47279633:25952256,43253760,0 +[1,16088:6630773,4812305:25952256,786432,0 +(1,16088:6630773,4812305:25952256,485622,126483 +(1,16088:6630773,4812305:25952256,485622,126483 +g1,16088:3078558,4812305 +[1,16088:3078558,4812305:0,0,0 +(1,16088:3078558,2439708:0,1703936,0 +k1,16088:1358238,2439708:-1720320 +(1,15456:1358238,2439708:1720320,1703936,0 +(1,15456:1358238,2439708:1179648,16384,0 +r1,16088:2537886,2439708:1179648,16384,0 ) -g1,15243:3062174,2439708 -(1,15243:3062174,2439708:16384,1703936,0 -[1,15243:3062174,2439708:25952256,1703936,0 -(1,15243:3062174,1915420:25952256,1179648,0 -(1,15243:3062174,1915420:16384,1179648,0 -r1,16028:3078558,1915420:16384,1179648,0 +g1,15456:3062174,2439708 +(1,15456:3062174,2439708:16384,1703936,0 +[1,15456:3062174,2439708:25952256,1703936,0 +(1,15456:3062174,1915420:25952256,1179648,0 +(1,15456:3062174,1915420:16384,1179648,0 +r1,16088:3078558,1915420:16384,1179648,0 ) -k1,15243:29014430,1915420:25935872 -g1,15243:29014430,1915420 +k1,15456:29014430,1915420:25935872 +g1,15456:29014430,1915420 ) ] ) ) ) ] -[1,16028:3078558,4812305:0,0,0 -(1,16028:3078558,2439708:0,1703936,0 -g1,16028:29030814,2439708 -g1,16028:36135244,2439708 -(1,15243:36135244,2439708:1720320,1703936,0 -(1,15243:36135244,2439708:16384,1703936,0 -[1,15243:36135244,2439708:25952256,1703936,0 -(1,15243:36135244,1915420:25952256,1179648,0 -(1,15243:36135244,1915420:16384,1179648,0 -r1,16028:36151628,1915420:16384,1179648,0 +[1,16088:3078558,4812305:0,0,0 +(1,16088:3078558,2439708:0,1703936,0 +g1,16088:29030814,2439708 +g1,16088:36135244,2439708 +(1,15456:36135244,2439708:1720320,1703936,0 +(1,15456:36135244,2439708:16384,1703936,0 +[1,15456:36135244,2439708:25952256,1703936,0 +(1,15456:36135244,1915420:25952256,1179648,0 +(1,15456:36135244,1915420:16384,1179648,0 +r1,16088:36151628,1915420:16384,1179648,0 ) -k1,15243:62087500,1915420:25935872 -g1,15243:62087500,1915420 +k1,15456:62087500,1915420:25935872 +g1,15456:62087500,1915420 ) ] ) -g1,15243:36675916,2439708 -(1,15243:36675916,2439708:1179648,16384,0 -r1,16028:37855564,2439708:1179648,16384,0 +g1,15456:36675916,2439708 +(1,15456:36675916,2439708:1179648,16384,0 +r1,16088:37855564,2439708:1179648,16384,0 ) ) -k1,16028:3078556,2439708:-34777008 +k1,16088:3078556,2439708:-34777008 ) ] -[1,16028:3078558,4812305:0,0,0 -(1,16028:3078558,49800853:0,16384,2228224 -k1,16028:1358238,49800853:-1720320 -(1,15243:1358238,49800853:1720320,16384,2228224 -(1,15243:1358238,49800853:1179648,16384,0 -r1,16028:2537886,49800853:1179648,16384,0 +[1,16088:3078558,4812305:0,0,0 +(1,16088:3078558,49800853:0,16384,2228224 +k1,16088:1358238,49800853:-1720320 +(1,15456:1358238,49800853:1720320,16384,2228224 +(1,15456:1358238,49800853:1179648,16384,0 +r1,16088:2537886,49800853:1179648,16384,0 ) -g1,15243:3062174,49800853 -(1,15243:3062174,52029077:16384,1703936,0 -[1,15243:3062174,52029077:25952256,1703936,0 -(1,15243:3062174,51504789:25952256,1179648,0 -(1,15243:3062174,51504789:16384,1179648,0 -r1,16028:3078558,51504789:16384,1179648,0 +g1,15456:3062174,49800853 +(1,15456:3062174,52029077:16384,1703936,0 +[1,15456:3062174,52029077:25952256,1703936,0 +(1,15456:3062174,51504789:25952256,1179648,0 +(1,15456:3062174,51504789:16384,1179648,0 +r1,16088:3078558,51504789:16384,1179648,0 ) -k1,15243:29014430,51504789:25935872 -g1,15243:29014430,51504789 +k1,15456:29014430,51504789:25935872 +g1,15456:29014430,51504789 ) ] ) ) ) ] -[1,16028:3078558,4812305:0,0,0 -(1,16028:3078558,49800853:0,16384,2228224 -g1,16028:29030814,49800853 -g1,16028:36135244,49800853 -(1,15243:36135244,49800853:1720320,16384,2228224 -(1,15243:36135244,52029077:16384,1703936,0 -[1,15243:36135244,52029077:25952256,1703936,0 -(1,15243:36135244,51504789:25952256,1179648,0 -(1,15243:36135244,51504789:16384,1179648,0 -r1,16028:36151628,51504789:16384,1179648,0 +[1,16088:3078558,4812305:0,0,0 +(1,16088:3078558,49800853:0,16384,2228224 +g1,16088:29030814,49800853 +g1,16088:36135244,49800853 +(1,15456:36135244,49800853:1720320,16384,2228224 +(1,15456:36135244,52029077:16384,1703936,0 +[1,15456:36135244,52029077:25952256,1703936,0 +(1,15456:36135244,51504789:25952256,1179648,0 +(1,15456:36135244,51504789:16384,1179648,0 +r1,16088:36151628,51504789:16384,1179648,0 ) -k1,15243:62087500,51504789:25935872 -g1,15243:62087500,51504789 +k1,15456:62087500,51504789:25935872 +g1,15456:62087500,51504789 ) ] ) -g1,15243:36675916,49800853 -(1,15243:36675916,49800853:1179648,16384,0 -r1,16028:37855564,49800853:1179648,16384,0 +g1,15456:36675916,49800853 +(1,15456:36675916,49800853:1179648,16384,0 +r1,16088:37855564,49800853:1179648,16384,0 ) ) -k1,16028:3078556,49800853:-34777008 +k1,16088:3078556,49800853:-34777008 ) ] -g1,16028:6630773,4812305 -g1,16028:6630773,4812305 -g1,16028:10115322,4812305 -g1,16028:11677700,4812305 -g1,16028:13736840,4812305 -k1,16028:31387652,4812305:17650812 -) -) -] -[1,16028:6630773,45706769:25952256,40108032,0 -(1,16028:6630773,45706769:25952256,40108032,0 -(1,16028:6630773,45706769:0,0,0 -g1,16028:6630773,45706769 -) -[1,16028:6630773,45706769:25952256,40108032,0 -(1,16001:6630773,6254097:25952256,32768,229376 -(1,16001:6630773,6254097:0,32768,229376 -(1,16001:6630773,6254097:5505024,32768,229376 -r1,16028:12135797,6254097:5505024,262144,229376 -) -k1,16001:6630773,6254097:-5505024 -) -(1,16001:6630773,6254097:25952256,32768,0 -r1,16028:32583029,6254097:25952256,32768,0 -) -) -(1,16001:6630773,7858425:25952256,606339,161218 -(1,16001:6630773,7858425:1974731,582746,14155 -g1,16001:6630773,7858425 -g1,16001:8605504,7858425 -) -g1,16001:12976493,7858425 -g1,16001:14989759,7858425 -k1,16001:32583029,7858425:15265432 -g1,16001:32583029,7858425 -) -(1,16005:6630773,9093129:25952256,513147,134348 -k1,16004:8280878,9093129:178166 -k1,16004:10497213,9093129:178165 -k1,16004:11291417,9093129:178166 -k1,16004:14394455,9093129:178166 -k1,16004:17083304,9093129:178165 -k1,16004:18365752,9093129:178166 -k1,16004:19291683,9093129:178165 -k1,16004:22315422,9093129:178166 -k1,16004:23109626,9093129:178166 -k1,16004:26050134,9093129:178165 -k1,16004:27970247,9093129:178166 -k1,16004:28776248,9093129:178166 -k1,16004:30388341,9093129:178165 -k1,16004:30981329,9093129:178145 -k1,16004:32583029,9093129:0 -) -(1,16005:6630773,9934617:25952256,513147,134348 -k1,16004:8829564,9934617:211084 -k1,16004:10975271,9934617:211084 -k1,16004:14212153,9934617:211085 -k1,16004:15614682,9934617:211084 -k1,16004:16844851,9934617:211084 -(1,16004:16844851,9934617:0,452978,115847 -r1,16028:18961676,9934617:2116825,568825,115847 -k1,16004:16844851,9934617:-2116825 -) -(1,16004:16844851,9934617:2116825,452978,115847 -k1,16004:16844851,9934617:3277 -h1,16004:18958399,9934617:0,411205,112570 -) -k1,16004:19172760,9934617:211084 -k1,16004:21838167,9934617:211084 -k1,16004:23784644,9934617:211084 -k1,16004:26397624,9934617:211085 -k1,16004:29482462,9934617:211084 -k1,16004:30884991,9934617:211084 -k1,16004:32583029,9934617:0 -) -(1,16005:6630773,10776105:25952256,513147,134348 -k1,16004:9854863,10776105:185841 -k1,16004:11430068,10776105:185842 -k1,16004:13996177,10776105:185841 -k1,16004:16252956,10776105:185841 -k1,16004:17828161,10776105:185842 -k1,16004:18665430,10776105:185841 -k1,16004:19599037,10776105:185841 -k1,16004:22630452,10776105:185842 -k1,16004:23432331,10776105:185841 -k1,16004:25307036,10776105:185842 -k1,16004:27360653,10776105:185841 -k1,16004:28271322,10776105:185841 -k1,16004:29741670,10776105:185842 -k1,16004:31379133,10776105:185841 -k1,16004:32583029,10776105:0 -) -(1,16005:6630773,11617593:25952256,513147,134348 -k1,16004:7509829,11617593:263018 -k1,16004:8128707,11617593:263018 -k1,16004:9781088,11617593:263018 -k1,16004:11920401,11617593:263017 -k1,16004:16147036,11617593:263018 -k1,16004:17061482,11617593:263018 -k1,16004:17680360,11617593:263018 -k1,16004:19816397,11617593:263018 -k1,16004:23820865,11617593:263018 -k1,16004:24973861,11617593:263017 -k1,16004:29787044,11617593:263018 -k1,16004:31773659,11617593:263018 -k1,16004:32583029,11617593:0 -) -(1,16005:6630773,12459081:25952256,513147,134348 -k1,16004:7217856,12459081:231223 -k1,16004:9932894,12459081:231223 -k1,16004:11639332,12459081:231223 -k1,16004:14253444,12459081:231223 -k1,16004:18448284,12459081:231223 -k1,16004:19330934,12459081:231222 -k1,16004:19918017,12459081:231223 -k1,16004:22911583,12459081:231223 -k1,16004:26267563,12459081:231223 -k1,16004:28947866,12459081:231223 -k1,16004:29861974,12459081:231223 -k1,16004:32583029,12459081:0 -) -(1,16005:6630773,13300569:25952256,513147,134348 -k1,16004:10677204,13300569:239445 -k1,16004:12062874,13300569:239445 -k1,16004:13321403,13300569:239444 -k1,16004:14986256,13300569:239445 -k1,16004:15884993,13300569:239445 -k1,16004:20641179,13300569:239445 -k1,16004:21563509,13300569:239445 -k1,16004:22158814,13300569:239445 -k1,16004:24292248,13300569:239444 -k1,16004:27843883,13300569:239445 -k1,16004:28439188,13300569:239445 -k1,16004:32583029,13300569:0 -) -(1,16005:6630773,14142057:25952256,513147,134348 -k1,16004:7538625,14142057:248560 -k1,16004:10427631,14142057:248560 -k1,16004:13793084,14142057:248561 -k1,16004:14693072,14142057:248560 -k1,16004:18416351,14142057:248560 -k1,16004:19347796,14142057:248560 -k1,16004:22202067,14142057:248560 -k1,16004:23109919,14142057:248560 -k1,16004:24377565,14142057:248561 -k1,16004:28796181,14142057:248560 -k1,16004:31133373,14142057:248560 -k1,16004:32583029,14142057:0 -) -(1,16005:6630773,14983545:25952256,505283,134348 -k1,16004:9281251,14983545:213194 -k1,16004:12837435,14983545:213193 -k1,16004:16175386,14983545:213194 -k1,16004:17197950,14983545:213194 -k1,16004:18430228,14983545:213193 -k1,16004:20296895,14983545:213194 -k1,16004:22820233,14983545:213194 -k1,16004:23646189,14983545:213194 -k1,16004:24630085,14983545:213193 -k1,16004:26876861,14983545:213194 -k1,16004:28778262,14983545:213194 -k1,16004:29607493,14983545:213193 -k1,16004:31246095,14983545:213194 -k1,16004:32583029,14983545:0 -) -(1,16005:6630773,15825033:25952256,513147,134348 -k1,16004:8181729,15825033:265140 -k1,16004:9194635,15825033:265140 -k1,16004:11497945,15825033:265140 -k1,16004:12379122,15825033:265139 -k1,16004:13000122,15825033:265140 -k1,16004:15821821,15825033:265140 -k1,16004:17558900,15825033:265140 -k1,16004:20669613,15825033:265140 -k1,16004:21550791,15825033:265140 -k1,16004:23180391,15825033:265140 -k1,16004:24989559,15825033:265139 -k1,16004:26355704,15825033:265140 -k1,16004:28130794,15825033:265140 -k1,16004:31896867,15825033:265140 -k1,16004:32583029,15825033:0 -) -(1,16005:6630773,16666521:25952256,513147,134348 -k1,16004:8697404,16666521:226380 -k1,16004:10115229,16666521:226380 -k1,16004:11544850,16666521:226380 -k1,16004:12302727,16666521:226380 -k1,16004:15305212,16666521:226380 -k1,16004:16147630,16666521:226380 -k1,16004:17393095,16666521:226380 -k1,16004:19357490,16666521:226380 -k1,16004:21278631,16666521:226380 -k1,16004:22156439,16666521:226380 -k1,16004:23401904,16666521:226380 -k1,16004:26836271,16666521:226380 -k1,16004:28613233,16666521:226380 -k1,16004:29498905,16666521:226380 -k1,16004:32583029,16666521:0 -) -(1,16005:6630773,17508009:25952256,513147,134348 -k1,16004:9835441,17508009:269966 -k1,16004:11308647,17508009:269965 -k1,16004:15438028,17508009:269966 -k1,16004:19771880,17508009:269965 -k1,16004:20701138,17508009:269966 -k1,16004:22360466,17508009:269965 -k1,16004:23731437,17508009:269966 -k1,16004:25511352,17508009:269965 -k1,16004:26800403,17508009:269966 -k1,16004:27485140,17508009:269894 -k1,16004:28946551,17508009:269966 -k1,16004:29569684,17508009:269894 -k1,16004:32583029,17508009:0 -) -(1,16005:6630773,18349497:25952256,513147,126483 -k1,16004:9027425,18349497:216269 -k1,16004:10870952,18349497:216268 -k1,16004:12595860,18349497:216269 -k1,16004:15970963,18349497:216268 -k1,16004:17659171,18349497:216269 -k1,16004:18491478,18349497:216269 -k1,16004:20593217,18349497:216268 -k1,16004:23522677,18349497:216269 -k1,16004:27372261,18349497:216268 -k1,16004:28239958,18349497:216269 -k1,16004:32583029,18349497:0 -) -(1,16005:6630773,19190985:25952256,513147,134348 -g1,16004:8883900,19190985 -g1,16004:9614626,19190985 -g1,16004:12903878,19190985 -g1,16004:13789269,19190985 -g1,16004:15726513,19190985 -g1,16004:16541780,19190985 -g1,16004:17096869,19190985 -g1,16004:18750997,19190985 -k1,16005:32583029,19190985:12115644 -g1,16005:32583029,19190985 -) -(1,16007:6630773,20032473:25952256,513147,134348 -h1,16006:6630773,20032473:983040,0,0 -k1,16006:10719624,20032473:142928 -k1,16006:14031873,20032473:142928 -k1,16006:15564164,20032473:142928 -k1,16006:16238589,20032473:142928 -k1,16006:17572962,20032473:142928 -k1,16006:18816894,20032473:142927 -k1,16006:20469772,20032473:142928 -k1,16006:21631785,20032473:142928 -k1,16006:23376413,20032473:142928 -k1,16006:26862988,20032473:142928 -k1,16006:28519142,20032473:142928 -k1,16006:32583029,20032473:0 -) -(1,16007:6630773,20873961:25952256,513147,126483 -k1,16006:7443419,20873961:153354 -k1,16006:8986136,20873961:153354 -k1,16006:9755528,20873961:153354 -k1,16006:10497396,20873961:153355 -k1,16006:14906658,20873961:153354 -k1,16006:15719304,20873961:153354 -k1,16006:17366224,20873961:153354 -k1,16006:18908941,20873961:153354 -k1,16006:20163300,20873961:153354 -k1,16006:21382925,20873961:153354 -k1,16006:23665544,20873961:153354 -k1,16006:25328849,20873961:153355 -k1,16006:28112163,20873961:153354 -k1,16006:29659468,20873961:153354 -k1,16006:32168186,20873961:153354 -k1,16007:32583029,20873961:0 -) -(1,16007:6630773,21715449:25952256,513147,134348 -k1,16006:10514436,21715449:193331 -k1,16006:11904454,21715449:193331 -k1,16006:15008240,21715449:193332 -k1,16006:15817609,21715449:193331 -k1,16006:17030025,21715449:193331 -k1,16006:20431343,21715449:193331 -k1,16006:23054749,21715449:193331 -k1,16006:27154682,21715449:193332 -k1,16006:30373810,21715449:193331 -k1,16006:31218569,21715449:193331 -k1,16007:32583029,21715449:0 -) -(1,16007:6630773,22556937:25952256,513147,134348 -k1,16006:8222260,22556937:138554 -k1,16006:10499909,22556937:138554 -k1,16006:11297755,22556937:138554 -k1,16006:12825672,22556937:138554 -k1,16006:17393804,22556937:138554 -k1,16006:19417829,22556937:138554 -k1,16006:20172421,22556937:138554 -k1,16006:22003115,22556937:138554 -k1,16006:24012722,22556937:138554 -k1,16006:25800162,22556937:138554 -k1,16006:26554754,22556937:138554 -k1,16006:29532983,22556937:138554 -k1,16006:32583029,22556937:0 -) -(1,16007:6630773,23398425:25952256,513147,126483 -k1,16006:10925292,23398425:218835 -k1,16006:14325246,23398425:218836 -k1,16006:15195509,23398425:218835 -k1,16006:16848273,23398425:218836 -k1,16006:19206859,23398425:218835 -k1,16006:19883792,23398425:218836 -k1,16006:20634124,23398425:218835 -k1,16006:23482919,23398425:218835 -k1,16006:24353183,23398425:218836 -k1,16006:26068205,23398425:218835 -k1,16006:27306126,23398425:218836 -k1,16006:29178434,23398425:218835 -k1,16006:32583029,23398425:0 -) -(1,16007:6630773,24239913:25952256,505283,134348 -g1,16006:8565395,24239913 -g1,16006:10140225,24239913 -g1,16006:11773382,24239913 -g1,16006:12561124,24239913 -g1,16006:13832522,24239913 -g1,16006:15234992,24239913 -g1,16006:16771155,24239913 -g1,16006:19262178,24239913 -g1,16006:21111604,24239913 -g1,16006:23520707,24239913 -g1,16006:25370133,24239913 -g1,16006:28034826,24239913 -k1,16007:32583029,24239913:857871 -g1,16007:32583029,24239913 -) -(1,16009:6630773,25081401:25952256,513147,126483 -h1,16008:6630773,25081401:983040,0,0 -k1,16008:11228426,25081401:218537 -k1,16008:12836326,25081401:218537 -k1,16008:13586360,25081401:218537 -k1,16008:15756560,25081401:218538 -k1,16008:19280078,25081401:218537 -k1,16008:21536785,25081401:218537 -k1,16008:22371360,25081401:218537 -k1,16008:24080186,25081401:218537 -k1,16008:26479106,25081401:218537 -k1,16008:27380529,25081401:218538 -k1,16008:29065762,25081401:218537 -k1,16008:30060901,25081401:218537 -k1,16008:31422386,25081401:218537 -k1,16009:32583029,25081401:0 -) -(1,16009:6630773,25922889:25952256,513147,134348 -k1,16008:8517472,25922889:149995 -k1,16008:9392296,25922889:149996 -k1,16008:10158329,25922889:149995 -k1,16008:12060102,25922889:149996 -k1,16008:13907479,25922889:149995 -k1,16008:15076560,25922889:149996 -k1,16008:16532688,25922889:149995 -k1,16008:18018308,25922889:149996 -k1,16008:18784341,25922889:149995 -k1,16008:20323700,25922889:149996 -k1,16008:23028288,25922889:149995 -k1,16008:23709781,25922889:149996 -k1,16008:24511204,25922889:149995 -k1,16008:27165986,25922889:149996 -k1,16008:28335066,25922889:149995 -k1,16008:30048096,25922889:149996 -k1,16008:32583029,25922889:0 -) -(1,16009:6630773,26764377:25952256,513147,134348 -k1,16008:8584249,26764377:148615 -k1,16008:11493241,26764377:148616 -k1,16008:14667653,26764377:148615 -k1,16008:15763920,26764377:148616 -k1,16008:19060229,26764377:148615 -k1,16008:20598208,26764377:148616 -k1,16008:22314444,26764377:148615 -k1,16008:23953349,26764377:148616 -k1,16008:24753392,26764377:148615 -k1,16008:26290716,26764377:148616 -k1,16008:28006952,26764377:148615 -k1,16008:29347012,26764377:148615 -k1,16008:30709355,26764377:148616 -k1,16009:32583029,26764377:0 -k1,16009:32583029,26764377:0 -) -v1,16011:6630773,28130153:0,393216,0 -(1,16012:6630773,36258477:25952256,8521540,0 -g1,16012:6630773,36258477 -g1,16012:6303093,36258477 -r1,16028:6401397,36258477:98304,8521540,0 -g1,16012:6600626,36258477 -g1,16012:6797234,36258477 -[1,16012:6797234,36258477:25785795,8521540,0 -(1,16012:6797234,28550737:25785795,813800,267386 -(1,16011:6797234,28550737:0,813800,267386 -r1,16028:8134168,28550737:1336934,1081186,267386 -k1,16011:6797234,28550737:-1336934 -) -(1,16011:6797234,28550737:1336934,813800,267386 -) -k1,16011:8381042,28550737:246874 -k1,16011:8708722,28550737:327680 -k1,16011:11490530,28550737:246875 -k1,16011:13542265,28550737:246874 -k1,16011:16508229,28550737:246875 -k1,16011:20029936,28550737:246874 -k1,16011:22162281,28550737:246874 -k1,16011:23025194,28550737:246875 -k1,16011:24647013,28550737:246874 -k1,16011:27612977,28550737:246875 -k1,16011:30893511,28550737:246874 -k1,16011:32583029,28550737:0 -) -(1,16012:6797234,29392225:25785795,513147,126483 -k1,16011:10780393,29392225:189935 -k1,16011:11989414,29392225:189936 -k1,16011:15205146,29392225:189935 -k1,16011:19596594,29392225:189935 -k1,16011:20402567,29392225:189935 -k1,16011:22397364,29392225:189936 -k1,16011:24062514,29392225:189935 -k1,16011:25762399,29392225:189935 -k1,16011:28671423,29392225:189935 -k1,16011:29622887,29392225:189936 -k1,16011:31096017,29392225:189935 -k1,16011:32583029,29392225:0 -) -(1,16012:6797234,30233713:25785795,513147,134348 -k1,16011:8448545,30233713:257360 -k1,16011:11468248,30233713:257360 -k1,16011:13809652,30233713:257359 -k1,16011:15258457,30233713:257360 -k1,16011:17427502,30233713:257360 -k1,16011:18608264,30233713:257360 -k1,16011:20601017,30233713:257360 -k1,16011:22555103,30233713:257359 -k1,16011:25838260,30233713:257360 -k1,16011:28926775,30233713:257360 -k1,16011:32583029,30233713:0 -) -(1,16012:6797234,31075201:25785795,513147,126483 -k1,16011:8192395,31075201:294156 -k1,16011:9873948,31075201:294156 -k1,16011:10523964,31075201:294156 -k1,16011:12891023,31075201:294155 -k1,16011:13844471,31075201:294156 -k1,16011:16370128,31075201:294156 -k1,16011:18347249,31075201:294156 -k1,16011:20385318,31075201:294156 -k1,16011:23788502,31075201:294156 -k1,16011:24734085,31075201:294155 -k1,16011:26899949,31075201:294156 -k1,16011:27876990,31075201:294156 -k1,16011:30421652,31075201:294156 -k1,16011:32583029,31075201:0 -) -(1,16012:6797234,31916689:25785795,513147,126483 -k1,16011:8228104,31916689:239425 -k1,16011:10714758,31916689:239424 -k1,16011:12284564,31916689:239425 -k1,16011:13175417,31916689:239425 -k1,16011:15042101,31916689:239425 -k1,16011:16347796,31916689:239424 -k1,16011:18283948,31916689:239425 -k1,16011:22101639,31916689:239425 -k1,16011:22818821,31916689:239425 -k1,16011:24214955,31916689:239424 -k1,16011:24985877,31916689:239425 -k1,16011:25581162,31916689:239425 -k1,16011:27209950,31916689:239425 -k1,16011:29729372,31916689:239424 -k1,16011:31160242,31916689:239425 -k1,16011:32583029,31916689:0 -) -(1,16012:6797234,32758177:25785795,513147,126483 -k1,16011:8727051,32758177:233090 -k1,16011:11985937,32758177:233089 -k1,16011:13920342,32758177:233090 -k1,16011:15464806,32758177:233089 -k1,16011:17131824,32758177:233090 -k1,16011:18383999,32758177:233090 -k1,16011:19932396,32758177:233089 -k1,16011:22863603,32758177:233090 -k1,16011:23628189,32758177:233089 -k1,16011:27166260,32758177:233090 -k1,16011:30200358,32758177:233089 -k1,16011:31116333,32758177:233090 -k1,16011:32583029,32758177:0 -) -(1,16012:6797234,33599665:25785795,513147,134348 -k1,16011:9915638,33599665:221713 -k1,16011:11832113,33599665:221714 -k1,16011:13072911,33599665:221713 -k1,16011:18066956,33599665:221713 -k1,16011:21223372,33599665:221714 -k1,16011:21911046,33599665:221713 -k1,16011:22818921,33599665:221713 -k1,16011:23572131,33599665:221713 -k1,16011:24812930,33599665:221714 -k1,16011:26401724,33599665:221713 -k1,16011:28017388,33599665:221713 -k1,16011:29990879,33599665:221714 -k1,16011:31923737,33599665:221713 -k1,16012:32583029,33599665:0 -) -(1,16012:6797234,34441153:25785795,513147,134348 -k1,16011:7476170,34441153:264093 -k1,16011:8356366,34441153:264158 -k1,16011:10992272,34441153:264158 -k1,16011:13164183,34441153:264158 -k1,16011:14079770,34441153:264159 -k1,16011:16294279,34441153:264158 -k1,16011:17761678,34441153:264158 -k1,16011:19607875,34441153:264158 -k1,16011:20403530,34441153:264158 -k1,16011:23489013,34441153:264158 -k1,16011:24369209,34441153:264158 -k1,16011:25652453,34441153:264159 -k1,16011:27305319,34441153:264158 -k1,16011:28687521,34441153:264158 -k1,16011:30687072,34441153:264158 -k1,16011:32583029,34441153:0 -) -(1,16012:6797234,35282641:25785795,513147,134348 -k1,16011:9616644,35282641:213699 -k1,16011:11397964,35282641:213699 -k1,16011:13045591,35282641:213699 -k1,16011:13674118,35282641:213684 -k1,16011:14419314,35282641:213699 -k1,16011:18072342,35282641:213699 -k1,16011:19666885,35282641:213699 -k1,16011:21373494,35282641:213699 -k1,16011:22653463,35282641:213698 -k1,16011:25126843,35282641:213699 -k1,16011:26908163,35282641:213699 -k1,16011:28140947,35282641:213699 -k1,16011:31923737,35282641:213699 -k1,16011:32583029,35282641:0 -) -(1,16012:6797234,36124129:25785795,513147,134348 -g1,16011:8731856,36124129 -g1,16011:9286945,36124129 -g1,16011:11016440,36124129 -g1,16011:14162168,36124129 -g1,16011:15047559,36124129 -g1,16011:19095062,36124129 -g1,16011:20055819,36124129 -g1,16011:21274133,36124129 -g1,16011:25156485,36124129 -g1,16011:26015006,36124129 -g1,16011:27233320,36124129 -k1,16012:32583029,36124129:2348816 -g1,16012:32583029,36124129 -) -] -g1,16012:32583029,36258477 -) -h1,16012:6630773,36258477:0,0,0 -(1,16016:6630773,37624253:25952256,505283,126483 -h1,16015:6630773,37624253:983040,0,0 -k1,16015:8722510,37624253:155148 -k1,16015:9970143,37624253:155148 -k1,16015:10741330,37624253:155149 -k1,16015:13888197,37624253:155148 -k1,16015:15911776,37624253:155148 -k1,16015:17086009,37624253:155148 -(1,16015:17086009,37624253:0,452978,115847 -r1,16028:18499410,37624253:1413401,568825,115847 -k1,16015:17086009,37624253:-1413401 -) -(1,16015:17086009,37624253:1413401,452978,115847 -k1,16015:17086009,37624253:3277 -h1,16015:18496133,37624253:0,411205,112570 -) -k1,16015:18654558,37624253:155148 -k1,16015:20199070,37624253:155149 -k1,16015:21288761,37624253:155148 -k1,16015:24202319,37624253:155148 -k1,16015:24973505,37624253:155148 -k1,16015:26562582,37624253:155149 -k1,16015:27306243,37624253:155148 -k1,16015:29178434,37624253:155148 -k1,16015:32583029,37624253:0 -) -(1,16016:6630773,38465741:25952256,505283,134348 -k1,16015:7684702,38465741:244559 -k1,16015:8344058,38465741:244513 -(1,16015:8344058,38465741:0,459977,115847 -r1,16028:11867730,38465741:3523672,575824,115847 -k1,16015:8344058,38465741:-3523672 -) -(1,16015:8344058,38465741:3523672,459977,115847 -k1,16015:8344058,38465741:3277 -h1,16015:11864453,38465741:0,411205,112570 -) -k1,16015:12112289,38465741:244559 -k1,16015:14646676,38465741:244559 -k1,16015:16285186,38465741:244559 -k1,16015:19737732,38465741:244559 -k1,16015:22892745,38465741:244559 -k1,16015:24269766,38465741:244559 -k1,16015:26524970,38465741:244559 -(1,16015:26524970,38465741:0,459977,115847 -r1,16028:30048642,38465741:3523672,575824,115847 -k1,16015:26524970,38465741:-3523672 -) -(1,16015:26524970,38465741:3523672,459977,115847 -k1,16015:26524970,38465741:3277 -h1,16015:30045365,38465741:0,411205,112570 -) -k1,16015:30293201,38465741:244559 -k1,16015:32583029,38465741:0 -) -(1,16016:6630773,39307229:25952256,513147,134348 -k1,16015:8525545,39307229:205254 -k1,16015:10763071,39307229:205255 -k1,16015:12100787,39307229:205254 -k1,16015:14316686,39307229:205254 -k1,16015:18388565,39307229:205255 -(1,16015:18388565,39307229:0,452978,115847 -r1,16028:19801966,39307229:1413401,568825,115847 -k1,16015:18388565,39307229:-1413401 -) -(1,16015:18388565,39307229:1413401,452978,115847 -k1,16015:18388565,39307229:3277 -h1,16015:19798689,39307229:0,411205,112570 -) -k1,16015:20007220,39307229:205254 -k1,16015:22675972,39307229:205254 -k1,16015:27228230,39307229:205255 -k1,16015:27891581,39307229:205254 -k1,16015:28628332,39307229:205254 -k1,16015:30420214,39307229:205255 -k1,16015:31276896,39307229:205254 -k1,16015:32583029,39307229:0 -) -(1,16016:6630773,40148717:25952256,513147,7863 -g1,16015:9222721,40148717 -g1,16015:10689416,40148717 -g1,16015:13030362,40148717 -g1,16015:14248676,40148717 -g1,16015:15837268,40148717 -g1,16015:18243094,40148717 -g1,16015:19310675,40148717 -g1,16015:20642366,40148717 -g1,16015:22438052,40148717 -k1,16016:32583029,40148717:8577356 -g1,16016:32583029,40148717 -) -v1,16018:6630773,41339183:0,393216,0 -(1,16022:6630773,41622822:25952256,676855,196608 -g1,16022:6630773,41622822 -g1,16022:6630773,41622822 -g1,16022:6434165,41622822 -(1,16022:6434165,41622822:0,676855,196608 -r1,16028:32779637,41622822:26345472,873463,196608 -k1,16022:6434165,41622822:-26345472 -) -(1,16022:6434165,41622822:26345472,676855,196608 -[1,16022:6630773,41622822:25952256,480247,0 -(1,16020:6630773,41546801:25952256,404226,76021 -(1,16019:6630773,41546801:0,0,0 -g1,16019:6630773,41546801 -g1,16019:6630773,41546801 -g1,16019:6303093,41546801 -(1,16019:6303093,41546801:0,0,0 -) -g1,16019:6630773,41546801 -) -g1,16020:9159939,41546801 -g1,16020:10108377,41546801 -k1,16020:10108377,41546801:0 -h1,16020:14850562,41546801:0,0,0 -k1,16020:32583030,41546801:17732468 -g1,16020:32583030,41546801 -) -] -) -g1,16022:32583029,41622822 -g1,16022:6630773,41622822 -g1,16022:6630773,41622822 -g1,16022:32583029,41622822 -g1,16022:32583029,41622822 -) -h1,16022:6630773,41819430:0,0,0 -(1,16026:6630773,43185206:25952256,513147,134348 -h1,16025:6630773,43185206:983040,0,0 -k1,16025:10651907,43185206:248226 -(1,16025:10651907,43185206:0,452978,122846 -r1,16028:15582427,43185206:4930520,575824,122846 -k1,16025:10651907,43185206:-4930520 -) -(1,16025:10651907,43185206:4930520,452978,122846 -k1,16025:10651907,43185206:3277 -h1,16025:15579150,43185206:0,411205,112570 -) -k1,16025:15830652,43185206:248225 -k1,16025:17646499,43185206:248226 -k1,16025:19699586,43185206:248226 -k1,16025:22670833,43185206:248226 -k1,16025:24308421,43185206:248225 -k1,16025:26124268,43185206:248226 -k1,16025:27862783,43185206:248226 -k1,16025:29678629,43185206:248225 -k1,16025:31194321,43185206:248226 -k1,16025:32583029,43185206:0 -) -(1,16026:6630773,44026694:25952256,513147,134348 -k1,16025:8380833,44026694:182439 -k1,16025:9453250,44026694:182438 -k1,16025:11856704,44026694:182439 -k1,16025:12992691,44026694:182438 -k1,16025:14267615,44026694:182439 -k1,16025:14908150,44026694:182438 -k1,16025:16488472,44026694:182439 -k1,16025:17322339,44026694:182439 -k1,16025:19528529,44026694:182438 -k1,16025:20066828,44026694:182439 -k1,16025:23418587,44026694:182438 -k1,16025:25586112,44026694:182439 -k1,16025:26528768,44026694:182438 -k1,16025:30114492,44026694:182439 -(1,16025:30114492,44026694:0,452978,115847 -r1,16028:32583029,44026694:2468537,568825,115847 -k1,16025:30114492,44026694:-2468537 -) -(1,16025:30114492,44026694:2468537,452978,115847 -k1,16025:30114492,44026694:3277 -h1,16025:32579752,44026694:0,411205,112570 -) -k1,16025:32583029,44026694:0 -) -(1,16026:6630773,44868182:25952256,505283,126483 -g1,16025:8223953,44868182 -(1,16025:8223953,44868182:0,452978,122846 -r1,16028:12451049,44868182:4227096,575824,122846 -k1,16025:8223953,44868182:-4227096 -) -(1,16025:8223953,44868182:4227096,452978,122846 -k1,16025:8223953,44868182:3277 -h1,16025:12447772,44868182:0,411205,112570 -) -g1,16025:12650278,44868182 -g1,16025:13717859,44868182 -g1,16025:15021370,44868182 -g1,16025:18548517,44868182 -g1,16025:20078127,44868182 -(1,16025:20078127,44868182:0,452978,122846 -r1,16028:25008647,44868182:4930520,575824,122846 -k1,16025:20078127,44868182:-4930520 -) -(1,16025:20078127,44868182:4930520,452978,122846 -k1,16025:20078127,44868182:3277 -h1,16025:25005370,44868182:0,411205,112570 -) -g1,16025:25207876,44868182 -g1,16025:28332632,44868182 -g1,16025:29320259,44868182 -k1,16026:32583029,44868182:1380576 -g1,16026:32583029,44868182 -) -] -(1,16028:32583029,45706769:0,0,0 -g1,16028:32583029,45706769 -) -) -] -(1,16028:6630773,47279633:25952256,0,0 -h1,16028:6630773,47279633:25952256,0,0 -) -] -(1,16028:4262630,4025873:0,0,0 -[1,16028:-473656,4025873:0,0,0 -(1,16028:-473656,-710413:0,0,0 -(1,16028:-473656,-710413:0,0,0 -g1,16028:-473656,-710413 -) -g1,16028:-473656,-710413 -) -] -) -] -!26936 -}274 -Input:2344:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2345:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +g1,16088:6630773,4812305 +g1,16088:6630773,4812305 +g1,16088:8364200,4812305 +g1,16088:10177581,4812305 +k1,16088:31387653,4812305:21210072 +) +) +] +[1,16088:6630773,45706769:25952256,40108032,0 +(1,16088:6630773,45706769:25952256,40108032,0 +(1,16088:6630773,45706769:0,0,0 +g1,16088:6630773,45706769 +) +[1,16088:6630773,45706769:25952256,40108032,0 +(1,15981:6630773,6254097:25952256,505283,134348 +k1,15980:8912938,6254097:270210 +k1,15980:10202233,6254097:270210 +k1,15980:14326615,6254097:270210 +k1,15980:15248252,6254097:270209 +k1,15980:16266228,6254097:270210 +k1,15980:19008456,6254097:270210 +k1,15980:20976704,6254097:270210 +k1,15980:22265999,6254097:270210 +k1,15980:24346969,6254097:270210 +k1,15980:27689506,6254097:270209 +k1,15980:28491213,6254097:270210 +k1,15980:29780508,6254097:270210 +k1,15980:31426319,6254097:270210 +k1,15980:32583029,6254097:0 +) +(1,15981:6630773,7119177:25952256,513147,126483 +g1,15980:9035289,7119177 +g1,15980:9885946,7119177 +g1,15980:11104260,7119177 +g1,15980:13998985,7119177 +g1,15980:15297908,7119177 +g1,15980:16306507,7119177 +k1,15981:32583029,7119177:15092942 +g1,15981:32583029,7119177 +) +v1,15983:6630773,7804032:0,393216,0 +(1,15991:6630773,9612467:25952256,2201651,196608 +g1,15991:6630773,9612467 +g1,15991:6630773,9612467 +g1,15991:6434165,9612467 +(1,15991:6434165,9612467:0,2201651,196608 +r1,16088:32779637,9612467:26345472,2398259,196608 +k1,15991:6434165,9612467:-26345472 +) +(1,15991:6434165,9612467:26345472,2201651,196608 +[1,15991:6630773,9612467:25952256,2005043,0 +(1,15985:6630773,8031863:25952256,424439,106246 +(1,15984:6630773,8031863:0,0,0 +g1,15984:6630773,8031863 +g1,15984:6630773,8031863 +g1,15984:6303093,8031863 +(1,15984:6303093,8031863:0,0,0 +) +g1,15984:6630773,8031863 +) +g1,15985:9286405,8031863 +g1,15985:10614221,8031863 +g1,15985:12273991,8031863 +g1,15985:13601807,8031863 +g1,15985:14929623,8031863 +g1,15985:15925485,8031863 +h1,15985:18913070,8031863:0,0,0 +k1,15985:32583029,8031863:13669959 +g1,15985:32583029,8031863 +) +(1,15986:6630773,8716718:25952256,424439,106246 +h1,15986:6630773,8716718:0,0,0 +g1,15986:13601805,8716718 +h1,15986:16921344,8716718:0,0,0 +k1,15986:32583029,8716718:15661685 +g1,15986:32583029,8716718 +) +(1,15990:6630773,9532645:25952256,424439,79822 +(1,15988:6630773,9532645:0,0,0 +g1,15988:6630773,9532645 +g1,15988:6630773,9532645 +g1,15988:6303093,9532645 +(1,15988:6303093,9532645:0,0,0 +) +g1,15988:6630773,9532645 +) +g1,15990:7626635,9532645 +g1,15990:8954451,9532645 +h1,15990:10282267,9532645:0,0,0 +k1,15990:32583029,9532645:22300762 +g1,15990:32583029,9532645 +) +] +) +g1,15991:32583029,9612467 +g1,15991:6630773,9612467 +g1,15991:6630773,9612467 +g1,15991:32583029,9612467 +g1,15991:32583029,9612467 +) +h1,15991:6630773,9809075:0,0,0 +(1,15996:6630773,10674155:25952256,505283,134348 +h1,15994:6630773,10674155:983040,0,0 +k1,15994:10413794,10674155:265048 +k1,15994:13624030,10674155:265049 +k1,15994:16649454,10674155:265048 +k1,15994:20141496,10674155:265049 +k1,15994:21796563,10674155:265048 +k1,15994:25312197,10674155:265048 +k1,15994:27070812,10674155:265049 +k1,15994:28022022,10674155:265048 +k1,15994:29838964,10674155:265049 +(1,15994:30046058,10674155:0,435480,115847 +r1,16088:31459459,10674155:1413401,551327,115847 +k1,15994:30046058,10674155:-1413401 +) +(1,15994:30046058,10674155:1413401,435480,115847 +k1,15994:30046058,10674155:3277 +h1,15994:31456182,10674155:0,411205,112570 +) +k1,15994:31931601,10674155:265048 +k1,15994:32583029,10674155:0 +) +(1,15996:6630773,11539235:25952256,513147,126483 +k1,15994:8761668,11539235:201515 +k1,15994:9319044,11539235:201516 +k1,15994:11728467,11539235:201515 +k1,15994:12546020,11539235:201515 +k1,15994:13766620,11539235:201515 +k1,15994:15531825,11539235:201516 +k1,15994:16924785,11539235:201515 +(1,15994:16924785,11539235:0,435480,115847 +r1,16088:18338186,11539235:1413401,551327,115847 +k1,15994:16924785,11539235:-1413401 +) +(1,15994:16924785,11539235:1413401,435480,115847 +k1,15994:16924785,11539235:3277 +h1,15994:18334909,11539235:0,411205,112570 +) +k1,15994:18539701,11539235:201515 +k1,15994:19392644,11539235:201515 +k1,15994:21357734,11539235:201516 +k1,15994:22578334,11539235:201515 +k1,15994:24169868,11539235:201515 +k1,15994:25132911,11539235:201515 +k1,15994:28487364,11539235:201516 +k1,15994:30563209,11539235:201515 +k1,15996:32583029,11539235:0 +) +(1,15996:6630773,12404315:25952256,513147,126483 +g1,15994:8100090,12404315 +g1,15994:9290879,12404315 +g1,15994:11273343,12404315 +g1,15994:12685643,12404315 +g1,15994:16189853,12404315 +g1,15994:17902308,12404315 +g1,15994:19543984,12404315 +(1,15994:19543984,12404315:0,435480,115847 +r1,16088:20605673,12404315:1061689,551327,115847 +k1,15994:19543984,12404315:-1061689 +) +(1,15994:19543984,12404315:1061689,435480,115847 +k1,15994:19543984,12404315:3277 +h1,15994:20602396,12404315:0,411205,112570 +) +g1,15994:20978572,12404315 +k1,15996:32583029,12404315:11604457 +g1,15996:32583029,12404315 +) +(1,15997:6630773,14521133:25952256,555811,139132 +(1,15997:6630773,14521133:2450326,534184,12975 +g1,15997:6630773,14521133 +g1,15997:9081099,14521133 +) +k1,15997:32583029,14521133:20941308 +g1,15997:32583029,14521133 +) +(1,16001:6630773,15779429:25952256,513147,134348 +k1,16000:8083137,15779429:255677 +(1,16000:8083137,15779429:0,435480,115847 +r1,16088:9496538,15779429:1413401,551327,115847 +k1,16000:8083137,15779429:-1413401 +) +(1,16000:8083137,15779429:1413401,435480,115847 +k1,16000:8083137,15779429:3277 +h1,16000:9493261,15779429:0,411205,112570 +) +k1,16000:9925885,15779429:255677 +k1,16000:10864448,15779429:255678 +k1,16000:14569285,15779429:255677 +k1,16000:17571576,15779429:255677 +k1,16000:19394874,15779429:255677 +k1,16000:22230703,15779429:255677 +k1,16000:24822738,15779429:255678 +k1,16000:27090370,15779429:255677 +k1,16000:31116333,15779429:255677 +k1,16000:32583029,15779429:0 +) +(1,16001:6630773,16644509:25952256,513147,126483 +k1,16000:7624851,16644509:184708 +k1,16000:8828645,16644509:184709 +k1,16000:10046856,16644509:184708 +k1,16000:11423010,16644509:184709 +k1,16000:12731660,16644509:184708 +k1,16000:14107814,16644509:184709 +k1,16000:16916584,16644509:184708 +k1,16000:18086954,16644509:184709 +k1,16000:19312374,16644509:184708 +k1,16000:20113121,16644509:184709 +k1,16000:21283490,16644509:184708 +k1,16000:22516119,16644509:184709 +(1,16000:22723213,16644509:0,414482,115847 +r1,16088:23081479,16644509:358266,530329,115847 +k1,16000:22723213,16644509:-358266 +) +(1,16000:22723213,16644509:358266,414482,115847 +k1,16000:22723213,16644509:3277 +h1,16000:23078202,16644509:0,411205,112570 +) +k1,16000:23646951,16644509:184708 +k1,16000:24517822,16644509:184709 +k1,16000:28436116,16644509:184708 +k1,16000:29568476,16644509:184709 +k1,16000:30772269,16644509:184708 +k1,16000:32583029,16644509:0 +) +(1,16001:6630773,17509589:25952256,513147,134348 +k1,16000:8994711,17509589:230741 +k1,16000:11025726,17509589:230741 +k1,16000:12275553,17509589:230742 +k1,16000:15825693,17509589:230741 +k1,16000:16715726,17509589:230741 +k1,16000:18919101,17509589:230742 +k1,16000:20168927,17509589:230741 +k1,16000:21789687,17509589:230741 +k1,16000:24767042,17509589:230741 +k1,16000:26565405,17509589:230742 +k1,16000:29741333,17509589:230741 +k1,16000:31073079,17509589:230741 +k1,16000:32583029,17509589:0 +) +(1,16001:6630773,18374669:25952256,505283,7863 +g1,16000:7849087,18374669 +g1,16000:9650016,18374669 +k1,16001:32583029,18374669:21246116 +g1,16001:32583029,18374669 +) +(1,16003:6630773,19239749:25952256,505283,134348 +h1,16002:6630773,19239749:983040,0,0 +k1,16002:10874288,19239749:181594 +k1,16002:12791275,19239749:181594 +k1,16002:13991955,19239749:181595 +k1,16002:16848729,19239749:181594 +k1,16002:19950607,19239749:181594 +k1,16002:21151286,19239749:181594 +k1,16002:22722899,19239749:181594 +k1,16002:23520531,19239749:181594 +k1,16002:24721211,19239749:181595 +k1,16002:27657283,19239749:181594 +k1,16002:29809545,19239749:181594 +k1,16003:32583029,19239749:0 +k1,16003:32583029,19239749:0 +) +v1,16005:6630773,19924604:0,393216,0 +(1,16013:6630773,21733039:25952256,2201651,196608 +g1,16013:6630773,21733039 +g1,16013:6630773,21733039 +g1,16013:6434165,21733039 +(1,16013:6434165,21733039:0,2201651,196608 +r1,16088:32779637,21733039:26345472,2398259,196608 +k1,16013:6434165,21733039:-26345472 +) +(1,16013:6434165,21733039:26345472,2201651,196608 +[1,16013:6630773,21733039:25952256,2005043,0 +(1,16007:6630773,20152435:25952256,424439,106246 +(1,16006:6630773,20152435:0,0,0 +g1,16006:6630773,20152435 +g1,16006:6630773,20152435 +g1,16006:6303093,20152435 +(1,16006:6303093,20152435:0,0,0 +) +g1,16006:6630773,20152435 +) +g1,16007:9286405,20152435 +g1,16007:10946175,20152435 +g1,16007:13601807,20152435 +g1,16007:15261577,20152435 +g1,16007:17585255,20152435 +g1,16007:18581117,20152435 +h1,16007:21568702,20152435:0,0,0 +k1,16007:32583029,20152435:11014327 +g1,16007:32583029,20152435 +) +(1,16008:6630773,20837290:25952256,424439,106246 +h1,16008:6630773,20837290:0,0,0 +g1,16008:13601805,20837290 +h1,16008:16921344,20837290:0,0,0 +k1,16008:32583029,20837290:15661685 +g1,16008:32583029,20837290 +) +(1,16012:6630773,21653217:25952256,424439,79822 +(1,16010:6630773,21653217:0,0,0 +g1,16010:6630773,21653217 +g1,16010:6630773,21653217 +g1,16010:6303093,21653217 +(1,16010:6303093,21653217:0,0,0 +) +g1,16010:6630773,21653217 +) +g1,16012:7626635,21653217 +g1,16012:8954451,21653217 +h1,16012:10282267,21653217:0,0,0 +k1,16012:32583029,21653217:22300762 +g1,16012:32583029,21653217 +) +] +) +g1,16013:32583029,21733039 +g1,16013:6630773,21733039 +g1,16013:6630773,21733039 +g1,16013:32583029,21733039 +g1,16013:32583029,21733039 +) +h1,16013:6630773,21929647:0,0,0 +(1,16017:6630773,22794727:25952256,513147,134348 +h1,16016:6630773,22794727:983040,0,0 +k1,16016:10751960,22794727:203445 +k1,16016:11641566,22794727:203444 +k1,16016:14591625,22794727:203445 +(1,16016:14591625,22794727:0,435480,115847 +r1,16088:15653314,22794727:1061689,551327,115847 +k1,16016:14591625,22794727:-1061689 +) +(1,16016:14591625,22794727:1061689,435480,115847 +k1,16016:14591625,22794727:3277 +h1,16016:15650037,22794727:0,411205,112570 +) +k1,16016:15856759,22794727:203445 +k1,16016:17627825,22794727:203445 +k1,16016:20776456,22794727:203444 +k1,16016:24401536,22794727:203445 +k1,16016:25624066,22794727:203445 +(1,16016:25624066,22794727:0,414482,115847 +r1,16088:25982332,22794727:358266,530329,115847 +k1,16016:25624066,22794727:-358266 +) +(1,16016:25624066,22794727:358266,414482,115847 +k1,16016:25624066,22794727:3277 +h1,16016:25979055,22794727:0,411205,112570 +) +k1,16016:26185776,22794727:203444 +k1,16016:30122807,22794727:203445 +k1,16016:32583029,22794727:0 +) +(1,16017:6630773,23659807:25952256,513147,134348 +k1,16016:9883059,23659807:218624 +k1,16016:10890081,23659807:218624 +k1,16016:12374861,23659807:218624 +k1,16016:13612570,23659807:218624 +k1,16016:15327381,23659807:218624 +k1,16016:17414436,23659807:218624 +k1,16016:19551954,23659807:218624 +(1,16016:19551954,23659807:0,435480,115847 +r1,16088:20965355,23659807:1413401,551327,115847 +k1,16016:19551954,23659807:-1413401 +) +(1,16016:19551954,23659807:1413401,435480,115847 +k1,16016:19551954,23659807:3277 +h1,16016:20962078,23659807:0,411205,112570 +) +k1,16016:21183978,23659807:218623 +k1,16016:21934099,23659807:218624 +k1,16016:24871812,23659807:218624 +k1,16016:25851964,23659807:218624 +(1,16016:25851964,23659807:0,435480,115847 +r1,16088:26913653,23659807:1061689,551327,115847 +k1,16016:25851964,23659807:-1061689 +) +(1,16016:25851964,23659807:1061689,435480,115847 +k1,16016:25851964,23659807:3277 +h1,16016:26910376,23659807:0,411205,112570 +) +k1,16016:27132277,23659807:218624 +k1,16016:29691847,23659807:218624 +k1,16016:30929556,23659807:218624 +k1,16016:32583029,23659807:0 +) +(1,16017:6630773,24524887:25952256,505283,7863 +g1,16016:8510345,24524887 +g1,16016:9395736,24524887 +g1,16016:10879471,24524887 +k1,16017:32583030,24524887:19674564 +g1,16017:32583030,24524887 +) +v1,16019:6630773,25209742:0,393216,0 +(1,16027:6630773,27018177:25952256,2201651,196608 +g1,16027:6630773,27018177 +g1,16027:6630773,27018177 +g1,16027:6434165,27018177 +(1,16027:6434165,27018177:0,2201651,196608 +r1,16088:32779637,27018177:26345472,2398259,196608 +k1,16027:6434165,27018177:-26345472 +) +(1,16027:6434165,27018177:26345472,2201651,196608 +[1,16027:6630773,27018177:25952256,2005043,0 +(1,16021:6630773,25437573:25952256,424439,106246 +(1,16020:6630773,25437573:0,0,0 +g1,16020:6630773,25437573 +g1,16020:6630773,25437573 +g1,16020:6303093,25437573 +(1,16020:6303093,25437573:0,0,0 +) +g1,16020:6630773,25437573 +) +g1,16021:9286405,25437573 +g1,16021:10614221,25437573 +g1,16021:13269853,25437573 +g1,16021:14597669,25437573 +g1,16021:16921347,25437573 +g1,16021:17917209,25437573 +h1,16021:20904794,25437573:0,0,0 +k1,16021:32583029,25437573:11678235 +g1,16021:32583029,25437573 +) +(1,16022:6630773,26122428:25952256,424439,106246 +h1,16022:6630773,26122428:0,0,0 +g1,16022:13601805,26122428 +h1,16022:16921344,26122428:0,0,0 +k1,16022:32583029,26122428:15661685 +g1,16022:32583029,26122428 +) +(1,16026:6630773,26938355:25952256,424439,79822 +(1,16024:6630773,26938355:0,0,0 +g1,16024:6630773,26938355 +g1,16024:6630773,26938355 +g1,16024:6303093,26938355 +(1,16024:6303093,26938355:0,0,0 +) +g1,16024:6630773,26938355 +) +g1,16026:7626635,26938355 +g1,16026:8954451,26938355 +h1,16026:10282267,26938355:0,0,0 +k1,16026:32583029,26938355:22300762 +g1,16026:32583029,26938355 +) +] +) +g1,16027:32583029,27018177 +g1,16027:6630773,27018177 +g1,16027:6630773,27018177 +g1,16027:32583029,27018177 +g1,16027:32583029,27018177 +) +h1,16027:6630773,27214785:0,0,0 +v1,16031:6630773,28079865:0,393216,0 +(1,16059:6630773,36469443:25952256,8782794,0 +g1,16059:6630773,36469443 +g1,16059:6237557,36469443 +r1,16088:6368629,36469443:131072,8782794,0 +g1,16059:6567858,36469443 +g1,16059:6764466,36469443 +[1,16059:6764466,36469443:25818563,8782794,0 +(1,16032:6764466,28494407:25818563,807758,219026 +(1,16031:6764466,28494407:0,807758,219026 +r1,16088:7908217,28494407:1143751,1026784,219026 +k1,16031:6764466,28494407:-1143751 +) +(1,16031:6764466,28494407:1143751,807758,219026 +) +k1,16031:8101579,28494407:193362 +k1,16031:8429259,28494407:327680 +k1,16031:9451652,28494407:193363 +k1,16031:10737499,28494407:193362 +k1,16031:13677476,28494407:193363 +(1,16031:13677476,28494407:0,452978,115847 +r1,16088:14387454,28494407:709978,568825,115847 +k1,16031:13677476,28494407:-709978 +) +(1,16031:13677476,28494407:709978,452978,115847 +k1,16031:13677476,28494407:3277 +h1,16031:14384177,28494407:0,411205,112570 +) +k1,16031:14580816,28494407:193362 +k1,16031:16341800,28494407:193363 +k1,16031:17123675,28494407:193362 +k1,16031:18185389,28494407:193362 +k1,16031:19909018,28494407:193363 +k1,16031:20753808,28494407:193362 +k1,16031:22173350,28494407:193363 +k1,16031:23385797,28494407:193362 +k1,16031:25075347,28494407:193363 +k1,16031:27004102,28494407:193362 +(1,16031:27211196,28494407:0,414482,115847 +r1,16088:27569462,28494407:358266,530329,115847 +k1,16031:27211196,28494407:-358266 +) +(1,16031:27211196,28494407:358266,414482,115847 +k1,16031:27211196,28494407:3277 +h1,16031:27566185,28494407:0,411205,112570 +) +k1,16031:27969919,28494407:193363 +k1,16031:28849443,28494407:193362 +k1,16031:32583029,28494407:0 +) +(1,16032:6764466,29359487:25818563,513147,134348 +k1,16031:8119139,29359487:163228 +k1,16031:10709821,29359487:163228 +k1,16031:11331146,29359487:163228 +k1,16031:12180537,29359487:163229 +k1,16031:15416093,29359487:163228 +k1,16031:16230749,29359487:163228 +k1,16031:20005011,29359487:163228 +k1,16031:20929767,29359487:163228 +k1,16031:22831010,29359487:163228 +k1,16031:23610276,29359487:163228 +k1,16031:24792589,29359487:163228 +k1,16031:27651314,29359487:163229 +k1,16031:29244538,29359487:163228 +k1,16031:30217136,29359487:163228 +k1,16031:31399449,29359487:163228 +k1,16032:32583029,29359487:0 +k1,16032:32583029,29359487:0 +) +v1,16034:6764466,30044342:0,393216,0 +(1,16042:6764466,31852777:25818563,2201651,196608 +g1,16042:6764466,31852777 +g1,16042:6764466,31852777 +g1,16042:6567858,31852777 +(1,16042:6567858,31852777:0,2201651,196608 +r1,16088:32779637,31852777:26211779,2398259,196608 +k1,16042:6567857,31852777:-26211780 +) +(1,16042:6567858,31852777:26211779,2201651,196608 +[1,16042:6764466,31852777:25818563,2005043,0 +(1,16036:6764466,30272173:25818563,424439,106246 +(1,16035:6764466,30272173:0,0,0 +g1,16035:6764466,30272173 +g1,16035:6764466,30272173 +g1,16035:6436786,30272173 +(1,16035:6436786,30272173:0,0,0 +) +g1,16035:6764466,30272173 +) +g1,16036:9420098,30272173 +g1,16036:10415960,30272173 +g1,16036:12739638,30272173 +g1,16036:13403546,30272173 +g1,16036:14399408,30272173 +g1,16036:15395270,30272173 +g1,16036:17386994,30272173 +g1,16036:18050902,30272173 +g1,16036:19046764,30272173 +g1,16036:20042626,30272173 +h1,16036:23030211,30272173:0,0,0 +k1,16036:32583029,30272173:9552818 +g1,16036:32583029,30272173 +) +(1,16037:6764466,30957028:25818563,424439,106246 +h1,16037:6764466,30957028:0,0,0 +g1,16037:13735498,30957028 +h1,16037:17055037,30957028:0,0,0 +k1,16037:32583029,30957028:15527992 +g1,16037:32583029,30957028 +) +(1,16041:6764466,31772955:25818563,424439,79822 +(1,16039:6764466,31772955:0,0,0 +g1,16039:6764466,31772955 +g1,16039:6764466,31772955 +g1,16039:6436786,31772955 +(1,16039:6436786,31772955:0,0,0 +) +g1,16039:6764466,31772955 +) +g1,16041:7760328,31772955 +g1,16041:9088144,31772955 +h1,16041:10415960,31772955:0,0,0 +k1,16041:32583028,31772955:22167068 +g1,16041:32583028,31772955 +) +] +) +g1,16042:32583029,31852777 +g1,16042:6764466,31852777 +g1,16042:6764466,31852777 +g1,16042:32583029,31852777 +g1,16042:32583029,31852777 +) +h1,16042:6764466,32049385:0,0,0 +(1,16046:6764466,32914465:25818563,505283,134348 +h1,16045:6764466,32914465:983040,0,0 +k1,16045:8969097,32914465:268042 +k1,16045:10515091,32914465:268042 +k1,16045:11399172,32914465:268043 +k1,16045:12870455,32914465:268042 +k1,16045:14679248,32914465:268042 +k1,16045:17085730,32914465:268042 +k1,16045:18446258,32914465:268043 +k1,16045:19523670,32914465:268042 +k1,16045:23698968,32914465:268042 +k1,16045:25158455,32914465:268042 +k1,16045:26863703,32914465:268043 +k1,16045:28150830,32914465:268042 +k1,16045:31821501,32914465:268042 +k1,16045:32583029,32914465:0 +) +(1,16046:6764466,33779545:25818563,513147,126483 +g1,16045:9577926,33779545 +g1,16045:10428583,33779545 +g1,16045:11646897,33779545 +g1,16045:13152259,33779545 +g1,16045:16632220,33779545 +g1,16045:17490741,33779545 +g1,16045:18709055,33779545 +k1,16046:32583029,33779545:10674506 +g1,16046:32583029,33779545 +) +v1,16048:6764466,34464400:0,393216,0 +(1,16056:6764466,36272835:25818563,2201651,196608 +g1,16056:6764466,36272835 +g1,16056:6764466,36272835 +g1,16056:6567858,36272835 +(1,16056:6567858,36272835:0,2201651,196608 +r1,16088:32779637,36272835:26211779,2398259,196608 +k1,16056:6567857,36272835:-26211780 +) +(1,16056:6567858,36272835:26211779,2201651,196608 +[1,16056:6764466,36272835:25818563,2005043,0 +(1,16050:6764466,34692231:25818563,424439,106246 +(1,16049:6764466,34692231:0,0,0 +g1,16049:6764466,34692231 +g1,16049:6764466,34692231 +g1,16049:6436786,34692231 +(1,16049:6436786,34692231:0,0,0 +) +g1,16049:6764466,34692231 +) +g1,16050:9420098,34692231 +g1,16050:10415960,34692231 +g1,16050:12739638,34692231 +g1,16050:13735500,34692231 +g1,16050:15727224,34692231 +g1,16050:16723086,34692231 +h1,16050:19710671,34692231:0,0,0 +k1,16050:32583029,34692231:12872358 +g1,16050:32583029,34692231 +) +(1,16051:6764466,35377086:25818563,424439,106246 +h1,16051:6764466,35377086:0,0,0 +g1,16051:13735498,35377086 +h1,16051:17055037,35377086:0,0,0 +k1,16051:32583029,35377086:15527992 +g1,16051:32583029,35377086 +) +(1,16055:6764466,36193013:25818563,424439,79822 +(1,16053:6764466,36193013:0,0,0 +g1,16053:6764466,36193013 +g1,16053:6764466,36193013 +g1,16053:6436786,36193013 +(1,16053:6436786,36193013:0,0,0 +) +g1,16053:6764466,36193013 +) +g1,16055:7760328,36193013 +g1,16055:9088144,36193013 +h1,16055:10415960,36193013:0,0,0 +k1,16055:32583028,36193013:22167068 +g1,16055:32583028,36193013 +) +] +) +g1,16056:32583029,36272835 +g1,16056:6764466,36272835 +g1,16056:6764466,36272835 +g1,16056:32583029,36272835 +g1,16056:32583029,36272835 +) +h1,16056:6764466,36469443:0,0,0 +] +g1,16059:32583029,36469443 +) +h1,16059:6630773,36469443:0,0,0 +(1,16062:6630773,37334523:25952256,513147,126483 +h1,16061:6630773,37334523:983040,0,0 +k1,16061:9039657,37334523:229157 +k1,16061:9039657,37334523:0 +k1,16061:11943994,37334523:229157 +k1,16061:14919765,37334523:229157 +(1,16061:14919765,37334523:0,435480,115847 +r1,16088:16333166,37334523:1413401,551327,115847 +k1,16061:14919765,37334523:-1413401 +) +(1,16061:14919765,37334523:1413401,435480,115847 +k1,16061:14919765,37334523:3277 +h1,16061:16329889,37334523:0,411205,112570 +) +k1,16061:16562322,37334523:229156 +k1,16061:18359100,37334523:229157 +k1,16061:20750944,37334523:229157 +k1,16061:22992056,37334523:229157 +k1,16061:23966357,37334523:229157 +k1,16061:24846942,37334523:229157 +k1,16061:26168583,37334523:229156 +k1,16061:27416825,37334523:229157 +k1,16061:31379568,37334523:229157 +(1,16061:31379568,37334523:0,414482,115847 +r1,16088:31737834,37334523:358266,530329,115847 +k1,16061:31379568,37334523:-358266 +) +(1,16061:31379568,37334523:358266,414482,115847 +k1,16061:31379568,37334523:3277 +h1,16061:31734557,37334523:0,411205,112570 +) +k1,16061:31966991,37334523:229157 +k1,16061:32583029,37334523:0 +) +(1,16062:6630773,38199603:25952256,513147,126483 +g1,16061:10600288,38199603 +g1,16061:11608887,38199603 +g1,16061:12827201,38199603 +g1,16061:14059278,38199603 +g1,16061:14917799,38199603 +g1,16061:18193943,38199603 +g1,16061:19009210,38199603 +g1,16061:21874444,38199603 +g1,16061:22725101,38199603 +g1,16061:23540368,38199603 +g1,16061:26435093,38199603 +k1,16062:32583029,38199603:4544270 +g1,16062:32583029,38199603 +) +v1,16064:6630773,38884458:0,393216,0 +(1,16068:6630773,39192111:25952256,700869,196608 +g1,16068:6630773,39192111 +g1,16068:6630773,39192111 +g1,16068:6434165,39192111 +(1,16068:6434165,39192111:0,700869,196608 +r1,16088:32779637,39192111:26345472,897477,196608 +k1,16068:6434165,39192111:-26345472 +) +(1,16068:6434165,39192111:26345472,700869,196608 +[1,16068:6630773,39192111:25952256,504261,0 +(1,16066:6630773,39112289:25952256,424439,79822 +(1,16065:6630773,39112289:0,0,0 +g1,16065:6630773,39112289 +g1,16065:6630773,39112289 +g1,16065:6303093,39112289 +(1,16065:6303093,39112289:0,0,0 +) +g1,16065:6630773,39112289 +) +g1,16066:9286405,39112289 +g1,16066:10946175,39112289 +g1,16066:12937899,39112289 +g1,16066:13933761,39112289 +h1,16066:16921346,39112289:0,0,0 +k1,16066:32583029,39112289:15661683 +g1,16066:32583029,39112289 +) +] +) +g1,16068:32583029,39192111 +g1,16068:6630773,39192111 +g1,16068:6630773,39192111 +g1,16068:32583029,39192111 +g1,16068:32583029,39192111 +) +h1,16068:6630773,39388719:0,0,0 +(1,16072:6630773,40253799:25952256,513147,126483 +h1,16071:6630773,40253799:983040,0,0 +k1,16071:8406124,40253799:164476 +k1,16071:11375541,40253799:164476 +k1,16071:14616932,40253799:164476 +(1,16071:14616932,40253799:0,452978,115847 +r1,16088:15326910,40253799:709978,568825,115847 +k1,16071:14616932,40253799:-709978 +) +(1,16071:14616932,40253799:709978,452978,115847 +k1,16071:14616932,40253799:3277 +h1,16071:15323633,40253799:0,411205,112570 +) +k1,16071:15491386,40253799:164476 +k1,16071:16847307,40253799:164476 +(1,16071:16847307,40253799:0,435480,115847 +r1,16088:17908996,40253799:1061689,551327,115847 +k1,16071:16847307,40253799:-1061689 +) +(1,16071:16847307,40253799:1061689,435480,115847 +k1,16071:16847307,40253799:3277 +h1,16071:17905719,40253799:0,411205,112570 +) +k1,16071:18073472,40253799:164476 +k1,16071:19053217,40253799:164477 +k1,16071:20283964,40253799:164476 +k1,16071:22974853,40253799:164476 +k1,16071:27083286,40253799:164476 +k1,16071:28623363,40253799:164476 +k1,16071:31483335,40253799:164476 +k1,16071:32583029,40253799:0 +) +(1,16072:6630773,41118879:25952256,513147,134348 +k1,16071:8867567,41118879:152749 +k1,16071:9829686,41118879:152749 +k1,16071:11491074,41118879:152749 +k1,16071:12827404,41118879:152750 +k1,16071:15251631,41118879:152749 +k1,16071:16149524,41118879:152749 +k1,16071:16953701,41118879:152749 +k1,16071:18206144,41118879:152749 +k1,16071:21435808,41118879:152749 +k1,16071:22982509,41118879:152750 +k1,16071:26843285,41118879:152749 +k1,16071:29080079,41118879:152749 +k1,16071:30424273,41118879:152749 +k1,16071:32583029,41118879:0 +) +(1,16072:6630773,41983959:25952256,426639,134348 +k1,16072:32583030,41983959:22549628 +g1,16072:32583030,41983959 +) +v1,16074:6630773,42668814:0,393216,0 +(1,16082:6630773,44483855:25952256,2208257,196608 +g1,16082:6630773,44483855 +g1,16082:6630773,44483855 +g1,16082:6434165,44483855 +(1,16082:6434165,44483855:0,2208257,196608 +r1,16088:32779637,44483855:26345472,2404865,196608 +k1,16082:6434165,44483855:-26345472 +) +(1,16082:6434165,44483855:26345472,2208257,196608 +[1,16082:6630773,44483855:25952256,2011649,0 +(1,16076:6630773,42903251:25952256,431045,86428 +(1,16075:6630773,42903251:0,0,0 +g1,16075:6630773,42903251 +g1,16075:6630773,42903251 +g1,16075:6303093,42903251 +(1,16075:6303093,42903251:0,0,0 +) +g1,16075:6630773,42903251 +) +g1,16076:9286405,42903251 +g1,16076:10282267,42903251 +g1,16076:12605945,42903251 +g1,16076:13269853,42903251 +g1,16076:14265715,42903251 +g1,16076:15261577,42903251 +g1,16076:15925485,42903251 +g1,16076:16921347,42903251 +g1,16076:17917209,42903251 +h1,16076:20904794,42903251:0,0,0 +k1,16076:32583029,42903251:11678235 +g1,16076:32583029,42903251 +) +(1,16077:6630773,43588106:25952256,424439,106246 +h1,16077:6630773,43588106:0,0,0 +g1,16077:13601805,43588106 +h1,16077:16921344,43588106:0,0,0 +k1,16077:32583029,43588106:15661685 +g1,16077:32583029,43588106 +) +(1,16081:6630773,44404033:25952256,424439,79822 +(1,16079:6630773,44404033:0,0,0 +g1,16079:6630773,44404033 +g1,16079:6630773,44404033 +g1,16079:6303093,44404033 +(1,16079:6303093,44404033:0,0,0 +) +g1,16079:6630773,44404033 +) +g1,16081:7626635,44404033 +g1,16081:8954451,44404033 +h1,16081:10282267,44404033:0,0,0 +k1,16081:32583029,44404033:22300762 +g1,16081:32583029,44404033 +) +] +) +g1,16082:32583029,44483855 +g1,16082:6630773,44483855 +g1,16082:6630773,44483855 +g1,16082:32583029,44483855 +g1,16082:32583029,44483855 +) +h1,16082:6630773,44680463:0,0,0 +(1,16086:6630773,45545543:25952256,355205,7863 +h1,16085:6630773,45545543:983040,0,0 +k1,16086:32583030,45545543:24286332 +g1,16086:32583030,45545543 +) +] +(1,16088:32583029,45706769:0,0,0 +g1,16088:32583029,45706769 +) +) +] +(1,16088:6630773,47279633:25952256,0,0 +h1,16088:6630773,47279633:25952256,0,0 +) +] +(1,16088:4262630,4025873:0,0,0 +[1,16088:-473656,4025873:0,0,0 +(1,16088:-473656,-710413:0,0,0 +(1,16088:-473656,-710413:0,0,0 +g1,16088:-473656,-710413 +) +g1,16088:-473656,-710413 +) +] +) +] +!28932 +}258 Input:2346:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2347:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2348:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -274720,3117 +271604,2830 @@ Input:2349:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConso Input:2350:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2351:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2352:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!858 -{275 -[1,16102:4262630,47279633:28320399,43253760,0 -(1,16102:4262630,4025873:0,0,0 -[1,16102:-473656,4025873:0,0,0 -(1,16102:-473656,-710413:0,0,0 -(1,16102:-473656,-644877:0,0,0 -k1,16102:-473656,-644877:-65536 +Input:2353:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2354:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2355:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2356:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2357:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2358:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2359:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2360:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1422 +{259 +[1,16146:4262630,47279633:28320399,43253760,0 +(1,16146:4262630,4025873:0,0,0 +[1,16146:-473656,4025873:0,0,0 +(1,16146:-473656,-710413:0,0,0 +(1,16146:-473656,-644877:0,0,0 +k1,16146:-473656,-644877:-65536 ) -(1,16102:-473656,4736287:0,0,0 -k1,16102:-473656,4736287:5209943 +(1,16146:-473656,4736287:0,0,0 +k1,16146:-473656,4736287:5209943 ) -g1,16102:-473656,-710413 +g1,16146:-473656,-710413 ) ] ) -[1,16102:6630773,47279633:25952256,43253760,0 -[1,16102:6630773,4812305:25952256,786432,0 -(1,16102:6630773,4812305:25952256,505283,134348 -(1,16102:6630773,4812305:25952256,505283,134348 -g1,16102:3078558,4812305 -[1,16102:3078558,4812305:0,0,0 -(1,16102:3078558,2439708:0,1703936,0 -k1,16102:1358238,2439708:-1720320 -(1,15243:1358238,2439708:1720320,1703936,0 -(1,15243:1358238,2439708:1179648,16384,0 -r1,16102:2537886,2439708:1179648,16384,0 +[1,16146:6630773,47279633:25952256,43253760,0 +[1,16146:6630773,4812305:25952256,786432,0 +(1,16146:6630773,4812305:25952256,505283,134348 +(1,16146:6630773,4812305:25952256,505283,134348 +g1,16146:3078558,4812305 +[1,16146:3078558,4812305:0,0,0 +(1,16146:3078558,2439708:0,1703936,0 +k1,16146:1358238,2439708:-1720320 +(1,15456:1358238,2439708:1720320,1703936,0 +(1,15456:1358238,2439708:1179648,16384,0 +r1,16146:2537886,2439708:1179648,16384,0 ) -g1,15243:3062174,2439708 -(1,15243:3062174,2439708:16384,1703936,0 -[1,15243:3062174,2439708:25952256,1703936,0 -(1,15243:3062174,1915420:25952256,1179648,0 -(1,15243:3062174,1915420:16384,1179648,0 -r1,16102:3078558,1915420:16384,1179648,0 +g1,15456:3062174,2439708 +(1,15456:3062174,2439708:16384,1703936,0 +[1,15456:3062174,2439708:25952256,1703936,0 +(1,15456:3062174,1915420:25952256,1179648,0 +(1,15456:3062174,1915420:16384,1179648,0 +r1,16146:3078558,1915420:16384,1179648,0 ) -k1,15243:29014430,1915420:25935872 -g1,15243:29014430,1915420 +k1,15456:29014430,1915420:25935872 +g1,15456:29014430,1915420 ) ] ) ) ) ] -[1,16102:3078558,4812305:0,0,0 -(1,16102:3078558,2439708:0,1703936,0 -g1,16102:29030814,2439708 -g1,16102:36135244,2439708 -(1,15243:36135244,2439708:1720320,1703936,0 -(1,15243:36135244,2439708:16384,1703936,0 -[1,15243:36135244,2439708:25952256,1703936,0 -(1,15243:36135244,1915420:25952256,1179648,0 -(1,15243:36135244,1915420:16384,1179648,0 -r1,16102:36151628,1915420:16384,1179648,0 +[1,16146:3078558,4812305:0,0,0 +(1,16146:3078558,2439708:0,1703936,0 +g1,16146:29030814,2439708 +g1,16146:36135244,2439708 +(1,15456:36135244,2439708:1720320,1703936,0 +(1,15456:36135244,2439708:16384,1703936,0 +[1,15456:36135244,2439708:25952256,1703936,0 +(1,15456:36135244,1915420:25952256,1179648,0 +(1,15456:36135244,1915420:16384,1179648,0 +r1,16146:36151628,1915420:16384,1179648,0 ) -k1,15243:62087500,1915420:25935872 -g1,15243:62087500,1915420 +k1,15456:62087500,1915420:25935872 +g1,15456:62087500,1915420 ) ] ) -g1,15243:36675916,2439708 -(1,15243:36675916,2439708:1179648,16384,0 -r1,16102:37855564,2439708:1179648,16384,0 +g1,15456:36675916,2439708 +(1,15456:36675916,2439708:1179648,16384,0 +r1,16146:37855564,2439708:1179648,16384,0 ) ) -k1,16102:3078556,2439708:-34777008 +k1,16146:3078556,2439708:-34777008 ) ] -[1,16102:3078558,4812305:0,0,0 -(1,16102:3078558,49800853:0,16384,2228224 -k1,16102:1358238,49800853:-1720320 -(1,15243:1358238,49800853:1720320,16384,2228224 -(1,15243:1358238,49800853:1179648,16384,0 -r1,16102:2537886,49800853:1179648,16384,0 +[1,16146:3078558,4812305:0,0,0 +(1,16146:3078558,49800853:0,16384,2228224 +k1,16146:1358238,49800853:-1720320 +(1,15456:1358238,49800853:1720320,16384,2228224 +(1,15456:1358238,49800853:1179648,16384,0 +r1,16146:2537886,49800853:1179648,16384,0 ) -g1,15243:3062174,49800853 -(1,15243:3062174,52029077:16384,1703936,0 -[1,15243:3062174,52029077:25952256,1703936,0 -(1,15243:3062174,51504789:25952256,1179648,0 -(1,15243:3062174,51504789:16384,1179648,0 -r1,16102:3078558,51504789:16384,1179648,0 +g1,15456:3062174,49800853 +(1,15456:3062174,52029077:16384,1703936,0 +[1,15456:3062174,52029077:25952256,1703936,0 +(1,15456:3062174,51504789:25952256,1179648,0 +(1,15456:3062174,51504789:16384,1179648,0 +r1,16146:3078558,51504789:16384,1179648,0 ) -k1,15243:29014430,51504789:25935872 -g1,15243:29014430,51504789 +k1,15456:29014430,51504789:25935872 +g1,15456:29014430,51504789 ) ] ) ) ) ] -[1,16102:3078558,4812305:0,0,0 -(1,16102:3078558,49800853:0,16384,2228224 -g1,16102:29030814,49800853 -g1,16102:36135244,49800853 -(1,15243:36135244,49800853:1720320,16384,2228224 -(1,15243:36135244,52029077:16384,1703936,0 -[1,15243:36135244,52029077:25952256,1703936,0 -(1,15243:36135244,51504789:25952256,1179648,0 -(1,15243:36135244,51504789:16384,1179648,0 -r1,16102:36151628,51504789:16384,1179648,0 -) -k1,15243:62087500,51504789:25935872 -g1,15243:62087500,51504789 -) -] -) -g1,15243:36675916,49800853 -(1,15243:36675916,49800853:1179648,16384,0 -r1,16102:37855564,49800853:1179648,16384,0 -) -) -k1,16102:3078556,49800853:-34777008 -) -] -g1,16102:6630773,4812305 -k1,16102:23311652,4812305:15485502 -g1,16102:23960458,4812305 -g1,16102:27572802,4812305 -g1,16102:29306229,4812305 -) -) -] -[1,16102:6630773,45706769:25952256,40108032,0 -(1,16102:6630773,45706769:25952256,40108032,0 -(1,16102:6630773,45706769:0,0,0 -g1,16102:6630773,45706769 -) -[1,16102:6630773,45706769:25952256,40108032,0 -v1,16028:6630773,6254097:0,393216,0 -(1,16046:6630773,14465287:25952256,8604406,196608 -g1,16046:6630773,14465287 -g1,16046:6630773,14465287 -g1,16046:6434165,14465287 -(1,16046:6434165,14465287:0,8604406,196608 -r1,16102:32779637,14465287:26345472,8801014,196608 -k1,16046:6434165,14465287:-26345472 -) -(1,16046:6434165,14465287:26345472,8604406,196608 -[1,16046:6630773,14465287:25952256,8407798,0 -(1,16030:6630773,6461715:25952256,404226,107478 -(1,16029:6630773,6461715:0,0,0 -g1,16029:6630773,6461715 -g1,16029:6630773,6461715 -g1,16029:6303093,6461715 -(1,16029:6303093,6461715:0,0,0 -) -g1,16029:6630773,6461715 -) -g1,16030:10740667,6461715 -k1,16030:10740667,6461715:0 -h1,16030:11372959,6461715:0,0,0 -k1,16030:32583029,6461715:21210070 -g1,16030:32583029,6461715 -) -(1,16031:6630773,7127893:25952256,404226,107478 -h1,16031:6630773,7127893:0,0,0 -g1,16031:6946919,7127893 -g1,16031:7263065,7127893 -k1,16031:7263065,7127893:0 -h1,16031:13902124,7127893:0,0,0 -k1,16031:32583028,7127893:18680904 -g1,16031:32583028,7127893 -) -(1,16032:6630773,7794071:25952256,404226,101187 -h1,16032:6630773,7794071:0,0,0 -g1,16032:6946919,7794071 -g1,16032:7263065,7794071 -g1,16032:7579211,7794071 -g1,16032:7895357,7794071 -g1,16032:8211503,7794071 -g1,16032:8527649,7794071 -g1,16032:8843795,7794071 -g1,16032:9159941,7794071 -g1,16032:9476087,7794071 -g1,16032:9792233,7794071 -g1,16032:10108379,7794071 -g1,16032:10424525,7794071 -g1,16032:10740671,7794071 -g1,16032:11056817,7794071 -g1,16032:11372963,7794071 -g1,16032:12953692,7794071 -g1,16032:13585984,7794071 -k1,16032:13585984,7794071:0 -h1,16032:16431296,7794071:0,0,0 -k1,16032:32583029,7794071:16151733 -g1,16032:32583029,7794071 -) -(1,16033:6630773,8460249:25952256,404226,101187 -h1,16033:6630773,8460249:0,0,0 -g1,16033:6946919,8460249 -g1,16033:7263065,8460249 -g1,16033:7579211,8460249 -g1,16033:7895357,8460249 -g1,16033:8211503,8460249 -g1,16033:8527649,8460249 -g1,16033:8843795,8460249 -g1,16033:9159941,8460249 -g1,16033:9476087,8460249 -g1,16033:9792233,8460249 -g1,16033:10108379,8460249 -g1,16033:10424525,8460249 -g1,16033:10740671,8460249 -g1,16033:11056817,8460249 -g1,16033:11372963,8460249 -g1,16033:14218274,8460249 -g1,16033:14850566,8460249 -k1,16033:14850566,8460249:0 -h1,16033:17063586,8460249:0,0,0 -k1,16033:32583029,8460249:15519443 -g1,16033:32583029,8460249 -) -(1,16034:6630773,9126427:25952256,404226,76021 -h1,16034:6630773,9126427:0,0,0 -g1,16034:6946919,9126427 -g1,16034:7263065,9126427 -g1,16034:7579211,9126427 -g1,16034:7895357,9126427 -g1,16034:8211503,9126427 -g1,16034:8527649,9126427 -g1,16034:8843795,9126427 -g1,16034:9159941,9126427 -g1,16034:9476087,9126427 -g1,16034:9792233,9126427 -g1,16034:10108379,9126427 -g1,16034:10424525,9126427 -g1,16034:10740671,9126427 -g1,16034:11056817,9126427 -g1,16034:11372963,9126427 -g1,16034:14534420,9126427 -g1,16034:15166712,9126427 -h1,16034:18960460,9126427:0,0,0 -k1,16034:32583029,9126427:13622569 -g1,16034:32583029,9126427 -) -(1,16035:6630773,9792605:25952256,404226,107478 -h1,16035:6630773,9792605:0,0,0 -h1,16035:10424521,9792605:0,0,0 -k1,16035:32583029,9792605:22158508 -g1,16035:32583029,9792605 -) -(1,16045:6630773,10458783:25952256,404226,9436 -(1,16037:6630773,10458783:0,0,0 -g1,16037:6630773,10458783 -g1,16037:6630773,10458783 -g1,16037:6303093,10458783 -(1,16037:6303093,10458783:0,0,0 -) -g1,16037:6630773,10458783 -) -g1,16045:7579210,10458783 -g1,16045:8211502,10458783 -g1,16045:8843794,10458783 -g1,16045:11372960,10458783 -g1,16045:12637543,10458783 -g1,16045:13269835,10458783 -h1,16045:13585981,10458783:0,0,0 -k1,16045:32583029,10458783:18997048 -g1,16045:32583029,10458783 -) -(1,16045:6630773,11124961:25952256,404226,101187 -h1,16045:6630773,11124961:0,0,0 -g1,16045:7579210,11124961 -g1,16045:7895356,11124961 -g1,16045:8211502,11124961 -g1,16045:10740668,11124961 -g1,16045:12321397,11124961 -g1,16045:12637543,11124961 -g1,16045:12953689,11124961 -g1,16045:13269835,11124961 -g1,16045:13585981,11124961 -g1,16045:13902127,11124961 -g1,16045:14218273,11124961 -g1,16045:14534419,11124961 -g1,16045:14850565,11124961 -h1,16045:17695876,11124961:0,0,0 -k1,16045:32583029,11124961:14887153 -g1,16045:32583029,11124961 -) -(1,16045:6630773,11791139:25952256,410518,6290 -h1,16045:6630773,11791139:0,0,0 -g1,16045:7579210,11791139 -g1,16045:7895356,11791139 -g1,16045:8211502,11791139 -g1,16045:10108377,11791139 -g1,16045:10424523,11791139 -g1,16045:10740669,11791139 -g1,16045:12637544,11791139 -g1,16045:12953690,11791139 -g1,16045:13269836,11791139 -g1,16045:13585982,11791139 -g1,16045:13902128,11791139 -g1,16045:14218274,11791139 -g1,16045:14534420,11791139 -g1,16045:14850566,11791139 -g1,16045:15166712,11791139 -g1,16045:15482858,11791139 -g1,16045:15799004,11791139 -g1,16045:16115150,11791139 -k1,16045:16115150,11791139:0 -h1,16045:17695879,11791139:0,0,0 -k1,16045:32583029,11791139:14887150 -g1,16045:32583029,11791139 -) -(1,16045:6630773,12457317:25952256,404226,107478 -h1,16045:6630773,12457317:0,0,0 -g1,16045:7579210,12457317 -g1,16045:8211502,12457317 -g1,16045:10424522,12457317 -g1,16045:10740668,12457317 -g1,16045:14850562,12457317 -g1,16045:15166708,12457317 -g1,16045:15482854,12457317 -g1,16045:15799000,12457317 -g1,16045:16115146,12457317 -g1,16045:16431292,12457317 -g1,16045:16747438,12457317 -h1,16045:17695875,12457317:0,0,0 -k1,16045:32583029,12457317:14887154 -g1,16045:32583029,12457317 -) -(1,16045:6630773,13123495:25952256,404226,101187 -h1,16045:6630773,13123495:0,0,0 -g1,16045:7579210,13123495 -g1,16045:8211502,13123495 -g1,16045:10424522,13123495 -g1,16045:10740668,13123495 -g1,16045:14534416,13123495 -g1,16045:14850562,13123495 -g1,16045:15166708,13123495 -g1,16045:15482854,13123495 -g1,16045:15799000,13123495 -g1,16045:16115146,13123495 -g1,16045:16431292,13123495 -g1,16045:16747438,13123495 -h1,16045:17695875,13123495:0,0,0 -k1,16045:32583029,13123495:14887154 -g1,16045:32583029,13123495 -) -(1,16045:6630773,13789673:25952256,404226,107478 -h1,16045:6630773,13789673:0,0,0 -g1,16045:7579210,13789673 -g1,16045:8211502,13789673 -g1,16045:10424522,13789673 -g1,16045:10740668,13789673 -g1,16045:14850562,13789673 -g1,16045:15166708,13789673 -g1,16045:15482854,13789673 -g1,16045:15799000,13789673 -g1,16045:16115146,13789673 -g1,16045:16431292,13789673 -g1,16045:16747438,13789673 -h1,16045:17695875,13789673:0,0,0 -k1,16045:32583029,13789673:14887154 -g1,16045:32583029,13789673 -) -(1,16045:6630773,14455851:25952256,404226,9436 -h1,16045:6630773,14455851:0,0,0 -g1,16045:7579210,14455851 -g1,16045:8211502,14455851 -g1,16045:8843794,14455851 -g1,16045:10108377,14455851 -g1,16045:11689106,14455851 -h1,16045:12953689,14455851:0,0,0 -k1,16045:32583029,14455851:19629340 -g1,16045:32583029,14455851 -) -] -) -g1,16046:32583029,14465287 -g1,16046:6630773,14465287 -g1,16046:6630773,14465287 -g1,16046:32583029,14465287 -g1,16046:32583029,14465287 -) -h1,16046:6630773,14661895:0,0,0 -v1,16050:6630773,16500417:0,393216,0 -(1,16051:6630773,17871356:25952256,1764155,0 -g1,16051:6630773,17871356 -g1,16051:6303093,17871356 -r1,16102:6401397,17871356:98304,1764155,0 -g1,16051:6600626,17871356 -g1,16051:6797234,17871356 -[1,16051:6797234,17871356:25785795,1764155,0 -(1,16051:6797234,16895520:25785795,788319,218313 -(1,16050:6797234,16895520:0,788319,218313 -r1,16102:7917113,16895520:1119879,1006632,218313 -k1,16050:6797234,16895520:-1119879 -) -(1,16050:6797234,16895520:1119879,788319,218313 -) -k1,16050:8096490,16895520:179377 -k1,16050:8424170,16895520:327680 -k1,16050:12014696,16895520:179377 -k1,16050:12845501,16895520:179377 -k1,16050:14458806,16895520:179377 -k1,16050:15226696,16895520:179377 -k1,16050:16022111,16895520:179377 -k1,16050:17803189,16895520:179378 -k1,16050:21008363,16895520:179377 -k1,16050:22755361,16895520:179377 -k1,16050:23953823,16895520:179377 -k1,16050:27341187,16895520:179377 -k1,16050:30431018,16895520:179377 -k1,16050:31478747,16895520:179377 -k1,16050:32583029,16895520:0 -) -(1,16051:6797234,17737008:25785795,513147,134348 -g1,16050:8088948,17737008 -g1,16050:9680162,17737008 -g1,16050:12262280,17737008 -g1,16050:14529825,17737008 -g1,16050:17655237,17737008 -g1,16050:18615994,17737008 -g1,16050:19171083,17737008 -g1,16050:21351465,17737008 -g1,16050:22871244,17737008 -g1,16050:23721901,17737008 -g1,16050:26068745,17737008 -g1,16050:27334245,17737008 -g1,16050:29235444,17737008 -k1,16051:32583029,17737008:160569 -g1,16051:32583029,17737008 -) -] -g1,16051:32583029,17871356 -) -h1,16051:6630773,17871356:0,0,0 -(1,16054:6630773,19211361:25952256,505283,126483 -h1,16053:6630773,19211361:983040,0,0 -k1,16053:10649171,19211361:245490 -(1,16053:10649171,19211361:0,452978,115847 -r1,16102:15227979,19211361:4578808,568825,115847 -k1,16053:10649171,19211361:-4578808 -) -(1,16053:10649171,19211361:4578808,452978,115847 -k1,16053:10649171,19211361:3277 -h1,16053:15224702,19211361:0,411205,112570 -) -k1,16053:15473469,19211361:245490 -k1,16053:17211869,19211361:245490 -k1,16053:18523630,19211361:245490 -k1,16053:21183466,19211361:245490 -k1,16053:24862387,19211361:245490 -k1,16053:26126962,19211361:245490 -k1,16053:28031168,19211361:245490 -k1,16053:30563209,19211361:245490 -k1,16054:32583029,19211361:0 -) -(1,16054:6630773,20052849:25952256,513147,126483 -k1,16053:8116273,20052849:218034 -k1,16053:9001462,20052849:218033 -(1,16053:9001462,20052849:0,452978,122846 -r1,16102:13931982,20052849:4930520,575824,122846 -k1,16053:9001462,20052849:-4930520 -) -(1,16053:9001462,20052849:4930520,452978,122846 -k1,16053:9001462,20052849:3277 -h1,16053:13928705,20052849:0,411205,112570 -) -k1,16053:14323686,20052849:218034 -k1,16053:16020868,20052849:218034 -k1,16053:18910149,20052849:218034 -k1,16053:20662380,20052849:218033 -k1,16053:22274365,20052849:218034 -k1,16053:24649844,20052849:218034 -k1,16053:26868037,20052849:218034 -k1,16053:28155618,20052849:218033 -k1,16053:31966991,20052849:218034 -k1,16053:32583029,20052849:0 -) -(1,16054:6630773,20894337:25952256,513147,126483 -k1,16053:7908069,20894337:179568 -k1,16053:9454719,20894337:179569 -k1,16053:11644276,20894337:179568 -k1,16053:13275467,20894337:179569 -k1,16053:15765834,20894337:179568 -k1,16053:17136848,20894337:179569 -k1,16053:19302157,20894337:179568 -k1,16053:20977258,20894337:179569 -k1,16053:22175911,20894337:179568 -k1,16053:25134207,20894337:179569 -k1,16053:27125190,20894337:179568 -k1,16053:28405764,20894337:179569 -k1,16053:31298523,20894337:179568 -k1,16053:32583029,20894337:0 -) -(1,16054:6630773,21735825:25952256,513147,126483 -k1,16053:7818362,21735825:196029 -k1,16053:9338219,21735825:196030 -k1,16053:10193540,21735825:196029 -k1,16053:12871418,21735825:196030 -k1,16053:14020996,21735825:196029 -k1,16053:15747292,21735825:196030 -k1,16053:16594749,21735825:196029 -k1,16053:19115340,21735825:196029 -k1,16053:21008097,21735825:196030 -k1,16053:23917317,21735825:196029 -k1,16053:25507298,21735825:196030 -k1,16053:28398823,21735825:196029 -(1,16053:28398823,21735825:0,452978,115847 -r1,16102:31219072,21735825:2820249,568825,115847 -k1,16053:28398823,21735825:-2820249 -) -(1,16053:28398823,21735825:2820249,452978,115847 -k1,16053:28398823,21735825:3277 -h1,16053:31215795,21735825:0,411205,112570 -) -k1,16053:31415102,21735825:196030 -k1,16053:32227169,21735825:196029 -k1,16053:32583029,21735825:0 -) -(1,16054:6630773,22577313:25952256,505283,126483 -g1,16053:9071333,22577313 -k1,16054:32583028,22577313:21982740 -g1,16054:32583028,22577313 -) -v1,16056:6630773,23742008:0,393216,0 -(1,16075:6630773,32616230:25952256,9267438,196608 -g1,16075:6630773,32616230 -g1,16075:6630773,32616230 -g1,16075:6434165,32616230 -(1,16075:6434165,32616230:0,9267438,196608 -r1,16102:32779637,32616230:26345472,9464046,196608 -k1,16075:6434165,32616230:-26345472 -) -(1,16075:6434165,32616230:26345472,9267438,196608 -[1,16075:6630773,32616230:25952256,9070830,0 -(1,16058:6630773,23949626:25952256,404226,50331 -(1,16057:6630773,23949626:0,0,0 -g1,16057:6630773,23949626 -g1,16057:6630773,23949626 -g1,16057:6303093,23949626 -(1,16057:6303093,23949626:0,0,0 -) -g1,16057:6630773,23949626 -) -g1,16058:10740667,23949626 -k1,16058:10740667,23949626:0 -h1,16058:11372959,23949626:0,0,0 -k1,16058:32583029,23949626:21210070 -g1,16058:32583029,23949626 -) -(1,16059:6630773,24615804:25952256,404226,107478 -h1,16059:6630773,24615804:0,0,0 -g1,16059:6946919,24615804 -g1,16059:7263065,24615804 -k1,16059:7263065,24615804:0 -h1,16059:15166707,24615804:0,0,0 -k1,16059:32583029,24615804:17416322 -g1,16059:32583029,24615804 -) -(1,16060:6630773,25281982:25952256,410518,101187 -h1,16060:6630773,25281982:0,0,0 -g1,16060:6946919,25281982 -g1,16060:7263065,25281982 -g1,16060:7579211,25281982 -g1,16060:7895357,25281982 -g1,16060:8211503,25281982 -g1,16060:8527649,25281982 -g1,16060:8843795,25281982 -g1,16060:9159941,25281982 -g1,16060:9476087,25281982 -g1,16060:9792233,25281982 -g1,16060:10108379,25281982 -g1,16060:10424525,25281982 -g1,16060:10740671,25281982 -g1,16060:11056817,25281982 -g1,16060:14534420,25281982 -g1,16060:15166712,25281982 -k1,16060:15166712,25281982:0 -h1,16060:17379732,25281982:0,0,0 -k1,16060:32583029,25281982:15203297 -g1,16060:32583029,25281982 -) -(1,16061:6630773,25948160:25952256,410518,82312 -h1,16061:6630773,25948160:0,0,0 -g1,16061:6946919,25948160 -g1,16061:7263065,25948160 -g1,16061:7579211,25948160 -g1,16061:7895357,25948160 -g1,16061:8211503,25948160 -g1,16061:8527649,25948160 -g1,16061:8843795,25948160 -g1,16061:9159941,25948160 -g1,16061:9476087,25948160 -g1,16061:9792233,25948160 -g1,16061:10108379,25948160 -g1,16061:10424525,25948160 -g1,16061:10740671,25948160 -g1,16061:11056817,25948160 -g1,16061:14850565,25948160 -g1,16061:15482857,25948160 -k1,16061:15482857,25948160:0 -h1,16061:19276605,25948160:0,0,0 -k1,16061:32583029,25948160:13306424 -g1,16061:32583029,25948160 -) -(1,16062:6630773,26614338:25952256,410518,76021 -h1,16062:6630773,26614338:0,0,0 -g1,16062:6946919,26614338 -g1,16062:7263065,26614338 -g1,16062:7579211,26614338 -g1,16062:7895357,26614338 -g1,16062:8211503,26614338 -g1,16062:8527649,26614338 -g1,16062:8843795,26614338 -g1,16062:9159941,26614338 -g1,16062:9476087,26614338 -g1,16062:9792233,26614338 -g1,16062:10108379,26614338 -g1,16062:10424525,26614338 -g1,16062:10740671,26614338 -g1,16062:11056817,26614338 -g1,16062:14218274,26614338 -g1,16062:14850566,26614338 -g1,16062:16747440,26614338 -k1,16062:16747440,26614338:0 -h1,16062:17379732,26614338:0,0,0 -k1,16062:32583029,26614338:15203297 -g1,16062:32583029,26614338 -) -(1,16063:6630773,27280516:25952256,404226,101187 -h1,16063:6630773,27280516:0,0,0 -g1,16063:6946919,27280516 -g1,16063:7263065,27280516 -g1,16063:11056814,27280516 -g1,16063:11689106,27280516 -k1,16063:11689106,27280516:0 -h1,16063:14534417,27280516:0,0,0 -k1,16063:32583029,27280516:18048612 -g1,16063:32583029,27280516 -) -(1,16064:6630773,27946694:25952256,404226,50331 -h1,16064:6630773,27946694:0,0,0 -h1,16064:10424521,27946694:0,0,0 -k1,16064:32583029,27946694:22158508 -g1,16064:32583029,27946694 -) -(1,16074:6630773,28612872:25952256,404226,9436 -(1,16066:6630773,28612872:0,0,0 -g1,16066:6630773,28612872 -g1,16066:6630773,28612872 -g1,16066:6303093,28612872 -(1,16066:6303093,28612872:0,0,0 -) -g1,16066:6630773,28612872 -) -g1,16074:7579210,28612872 -g1,16074:8211502,28612872 -g1,16074:8843794,28612872 -g1,16074:11372960,28612872 -g1,16074:12637543,28612872 -g1,16074:13269835,28612872 -h1,16074:13585981,28612872:0,0,0 -k1,16074:32583029,28612872:18997048 -g1,16074:32583029,28612872 -) -(1,16074:6630773,29279050:25952256,404226,107478 -h1,16074:6630773,29279050:0,0,0 -g1,16074:7579210,29279050 -g1,16074:7895356,29279050 -g1,16074:8211502,29279050 -g1,16074:10740668,29279050 -g1,16074:14850562,29279050 -g1,16074:18644310,29279050 -g1,16074:22754204,29279050 -h1,16074:26231806,29279050:0,0,0 -k1,16074:32583029,29279050:6351223 -g1,16074:32583029,29279050 -) -(1,16074:6630773,29945228:25952256,410518,6290 -h1,16074:6630773,29945228:0,0,0 -g1,16074:7579210,29945228 -g1,16074:7895356,29945228 -g1,16074:8211502,29945228 -g1,16074:10108377,29945228 -g1,16074:10424523,29945228 -g1,16074:10740669,29945228 -g1,16074:11056815,29945228 -g1,16074:11372961,29945228 -g1,16074:11689107,29945228 -g1,16074:12005253,29945228 -g1,16074:12321399,29945228 -g1,16074:12637545,29945228 -g1,16074:12953691,29945228 -g1,16074:14850566,29945228 -g1,16074:15166712,29945228 -g1,16074:15482858,29945228 -g1,16074:15799004,29945228 -g1,16074:16115150,29945228 -g1,16074:16431296,29945228 -g1,16074:16747442,29945228 -g1,16074:18644317,29945228 -g1,16074:18960463,29945228 -g1,16074:19276609,29945228 -g1,16074:19592755,29945228 -g1,16074:19908901,29945228 -g1,16074:20225047,29945228 -g1,16074:20541193,29945228 -g1,16074:20857339,29945228 -g1,16074:22754214,29945228 -g1,16074:23070360,29945228 -g1,16074:23386506,29945228 -g1,16074:23702652,29945228 -g1,16074:24018798,29945228 -g1,16074:24334944,29945228 -g1,16074:24651090,29945228 -k1,16074:24651090,29945228:0 -h1,16074:26231819,29945228:0,0,0 -k1,16074:32583029,29945228:6351210 -g1,16074:32583029,29945228 -) -(1,16074:6630773,30611406:25952256,388497,9436 -h1,16074:6630773,30611406:0,0,0 -g1,16074:7579210,30611406 -g1,16074:8211502,30611406 -g1,16074:10424522,30611406 -g1,16074:10740668,30611406 -g1,16074:11056814,30611406 -g1,16074:11372960,30611406 -g1,16074:11689106,30611406 -g1,16074:12005252,30611406 -g1,16074:12321398,30611406 -g1,16074:12637544,30611406 -g1,16074:12953690,30611406 -g1,16074:13269836,30611406 -g1,16074:13585982,30611406 -g1,16074:14850565,30611406 -g1,16074:15166711,30611406 -g1,16074:15482857,30611406 -g1,16074:15799003,30611406 -g1,16074:16115149,30611406 -g1,16074:16431295,30611406 -g1,16074:16747441,30611406 -g1,16074:17063587,30611406 -g1,16074:17379733,30611406 -g1,16074:18644316,30611406 -g1,16074:18960462,30611406 -g1,16074:19276608,30611406 -g1,16074:19592754,30611406 -g1,16074:19908900,30611406 -g1,16074:20225046,30611406 -g1,16074:20541192,30611406 -g1,16074:20857338,30611406 -g1,16074:21173484,30611406 -g1,16074:21489630,30611406 -g1,16074:22754213,30611406 -g1,16074:23070359,30611406 -g1,16074:23386505,30611406 -g1,16074:23702651,30611406 -g1,16074:24018797,30611406 -g1,16074:24334943,30611406 -g1,16074:24651089,30611406 -g1,16074:24967235,30611406 -g1,16074:25283381,30611406 -h1,16074:26231818,30611406:0,0,0 -k1,16074:32583029,30611406:6351211 -g1,16074:32583029,30611406 -) -(1,16074:6630773,31277584:25952256,388497,9436 -h1,16074:6630773,31277584:0,0,0 -g1,16074:7579210,31277584 -g1,16074:8211502,31277584 -g1,16074:10424522,31277584 -g1,16074:10740668,31277584 -g1,16074:11056814,31277584 -g1,16074:11372960,31277584 -g1,16074:11689106,31277584 -g1,16074:12005252,31277584 -g1,16074:12321398,31277584 -g1,16074:12637544,31277584 -g1,16074:12953690,31277584 -g1,16074:13269836,31277584 -g1,16074:13585982,31277584 -g1,16074:14850565,31277584 -g1,16074:15166711,31277584 -g1,16074:15482857,31277584 -g1,16074:15799003,31277584 -g1,16074:16115149,31277584 -g1,16074:16431295,31277584 -g1,16074:16747441,31277584 -g1,16074:17063587,31277584 -g1,16074:17379733,31277584 -g1,16074:18012025,31277584 -g1,16074:18328171,31277584 -g1,16074:18644317,31277584 -g1,16074:18960463,31277584 -g1,16074:19276609,31277584 -g1,16074:19592755,31277584 -g1,16074:19908901,31277584 -g1,16074:20225047,31277584 -g1,16074:20541193,31277584 -g1,16074:20857339,31277584 -g1,16074:21173485,31277584 -g1,16074:21489631,31277584 -g1,16074:22754214,31277584 -g1,16074:23070360,31277584 -g1,16074:23386506,31277584 -g1,16074:23702652,31277584 -g1,16074:24018798,31277584 -g1,16074:24334944,31277584 -g1,16074:24651090,31277584 -g1,16074:24967236,31277584 -g1,16074:25283382,31277584 -h1,16074:26231819,31277584:0,0,0 -k1,16074:32583029,31277584:6351210 -g1,16074:32583029,31277584 -) -(1,16074:6630773,31943762:25952256,388497,9436 -h1,16074:6630773,31943762:0,0,0 -g1,16074:7579210,31943762 -g1,16074:8211502,31943762 -g1,16074:10424522,31943762 -g1,16074:10740668,31943762 -g1,16074:11056814,31943762 -g1,16074:11372960,31943762 -g1,16074:11689106,31943762 -g1,16074:12005252,31943762 -g1,16074:12321398,31943762 -g1,16074:12637544,31943762 -g1,16074:12953690,31943762 -g1,16074:13269836,31943762 -g1,16074:13585982,31943762 -g1,16074:14850565,31943762 -g1,16074:15166711,31943762 -g1,16074:15482857,31943762 -g1,16074:15799003,31943762 -g1,16074:16115149,31943762 -g1,16074:16431295,31943762 -g1,16074:16747441,31943762 -g1,16074:17063587,31943762 -g1,16074:17379733,31943762 -g1,16074:18644316,31943762 -g1,16074:18960462,31943762 -g1,16074:19276608,31943762 -g1,16074:19592754,31943762 -g1,16074:19908900,31943762 -g1,16074:20225046,31943762 -g1,16074:20541192,31943762 -g1,16074:20857338,31943762 -g1,16074:21173484,31943762 -g1,16074:21489630,31943762 -g1,16074:22754213,31943762 -g1,16074:23070359,31943762 -g1,16074:23386505,31943762 -g1,16074:23702651,31943762 -g1,16074:24018797,31943762 -g1,16074:24334943,31943762 -g1,16074:24651089,31943762 -g1,16074:24967235,31943762 -g1,16074:25283381,31943762 -h1,16074:26231818,31943762:0,0,0 -k1,16074:32583029,31943762:6351211 -g1,16074:32583029,31943762 -) -(1,16074:6630773,32609940:25952256,404226,6290 -h1,16074:6630773,32609940:0,0,0 -g1,16074:7579210,32609940 -g1,16074:8211502,32609940 -g1,16074:8843794,32609940 -g1,16074:10108377,32609940 -g1,16074:11689106,32609940 -h1,16074:12953689,32609940:0,0,0 -k1,16074:32583029,32609940:19629340 -g1,16074:32583029,32609940 -) -] -) -g1,16075:32583029,32616230 -g1,16075:6630773,32616230 -g1,16075:6630773,32616230 -g1,16075:32583029,32616230 -g1,16075:32583029,32616230 -) -h1,16075:6630773,32812838:0,0,0 -v1,16079:6630773,34651360:0,393216,0 -(1,16093:6630773,42136721:25952256,7878577,0 -g1,16093:6630773,42136721 -g1,16093:6303093,42136721 -r1,16102:6401397,42136721:98304,7878577,0 -g1,16093:6600626,42136721 -g1,16093:6797234,42136721 -[1,16093:6797234,42136721:25785795,7878577,0 -(1,16080:6797234,35083898:25785795,825754,196608 -(1,16079:6797234,35083898:0,825754,196608 -r1,16102:7890375,35083898:1093141,1022362,196608 -k1,16079:6797234,35083898:-1093141 -) -(1,16079:6797234,35083898:1093141,825754,196608 -) -k1,16079:8073563,35083898:183188 -k1,16079:9391492,35083898:327680 -k1,16079:10117973,35083898:183188 -(1,16079:10117973,35083898:0,452978,115847 -r1,16102:14345069,35083898:4227096,568825,115847 -k1,16079:10117973,35083898:-4227096 -) -(1,16079:10117973,35083898:4227096,452978,115847 -k1,16079:10117973,35083898:3277 -h1,16079:14341792,35083898:0,411205,112570 -) -k1,16079:14528257,35083898:183188 -k1,16079:16438975,35083898:183189 -k1,16079:17273591,35083898:183188 -(1,16079:17273591,35083898:0,452978,115847 -r1,16102:19742128,35083898:2468537,568825,115847 -k1,16079:17273591,35083898:-2468537 -) -(1,16079:17273591,35083898:2468537,452978,115847 -k1,16079:17273591,35083898:3277 -h1,16079:19738851,35083898:0,411205,112570 -) -k1,16079:20098986,35083898:183188 -k1,16079:21301259,35083898:183188 -k1,16079:23295862,35083898:183188 -k1,16079:24347402,35083898:183188 -k1,16079:27691392,35083898:183189 -k1,16079:29142046,35083898:183188 -k1,16079:30713942,35083898:183188 -k1,16079:32583029,35083898:0 -) -(1,16080:6797234,35925386:25785795,505283,126483 -k1,16079:8231162,35925386:242483 -k1,16079:9956069,35925386:242483 -k1,16079:11466018,35925386:242483 -k1,16079:13198790,35925386:242483 -k1,16079:15637384,35925386:242483 -k1,16079:17154542,35925386:242483 -k1,16079:18416111,35925386:242484 -k1,16079:22742798,35925386:242483 -k1,16079:25027383,35925386:242483 -k1,16079:26461311,35925386:242483 -k1,16079:28285833,35925386:242483 -k1,16079:29547401,35925386:242483 -k1,16079:31931601,35925386:242483 -k1,16079:32583029,35925386:0 -) -(1,16080:6797234,36766874:25785795,513147,7863 -g1,16079:8262619,36766874 -k1,16080:32583028,36766874:23080468 -g1,16080:32583028,36766874 -) -v1,16082:6797234,37957340:0,393216,0 -(1,16088:6797234,39598501:25785795,2034377,196608 -g1,16088:6797234,39598501 -g1,16088:6797234,39598501 -g1,16088:6600626,39598501 -(1,16088:6600626,39598501:0,2034377,196608 -r1,16102:32779637,39598501:26179011,2230985,196608 -k1,16088:6600625,39598501:-26179012 -) -(1,16088:6600626,39598501:26179011,2034377,196608 -[1,16088:6797234,39598501:25785795,1837769,0 -(1,16084:6797234,38164958:25785795,404226,82312 -(1,16083:6797234,38164958:0,0,0 -g1,16083:6797234,38164958 -g1,16083:6797234,38164958 -g1,16083:6469554,38164958 -(1,16083:6469554,38164958:0,0,0 -) -g1,16083:6797234,38164958 -) -k1,16084:6797234,38164958:0 -g1,16084:12804002,38164958 -h1,16084:16913896,38164958:0,0,0 -k1,16084:32583029,38164958:15669133 -g1,16084:32583029,38164958 -) -(1,16085:6797234,38831136:25785795,404226,101187 -h1,16085:6797234,38831136:0,0,0 -g1,16085:12804002,38831136 -h1,16085:16913896,38831136:0,0,0 -k1,16085:32583029,38831136:15669133 -g1,16085:32583029,38831136 -) -(1,16086:6797234,39497314:25785795,404226,101187 -h1,16086:6797234,39497314:0,0,0 -g1,16086:12804002,39497314 -g1,16086:17230042,39497314 -g1,16086:17862334,39497314 -k1,16086:17862334,39497314:0 -h1,16086:23869101,39497314:0,0,0 -k1,16086:32583029,39497314:8713928 -g1,16086:32583029,39497314 -) -] -) -g1,16088:32583029,39598501 -g1,16088:6797234,39598501 -g1,16088:6797234,39598501 -g1,16088:32583029,39598501 -g1,16088:32583029,39598501 -) -h1,16088:6797234,39795109:0,0,0 -(1,16092:6797234,41160885:25785795,513147,134348 -h1,16091:6797234,41160885:983040,0,0 -k1,16091:9627331,41160885:213244 -k1,16091:10941580,41160885:213244 -k1,16091:14143266,41160885:213244 -k1,16091:16397956,41160885:213244 -k1,16091:17069297,41160885:213244 -k1,16091:19407874,41160885:213244 -k1,16091:20087079,41160885:213244 -k1,16091:21398051,41160885:213244 -k1,16091:23107482,41160885:213244 -k1,16091:24833952,41160885:213244 -k1,16091:27786601,41160885:213244 -k1,16091:29393796,41160885:213244 -k1,16091:29962900,41160885:213244 -k1,16091:32583029,41160885:0 -) -(1,16092:6797234,42002373:25785795,513147,134348 -g1,16091:8974340,42002373 -g1,16091:9824997,42002373 -g1,16091:12228202,42002373 -g1,16091:15467646,42002373 -g1,16091:16349760,42002373 -g1,16091:17014950,42002373 -g1,16091:17672276,42002373 -g1,16091:19384731,42002373 -g1,16091:21966849,42002373 -g1,16091:24234394,42002373 -g1,16091:25119785,42002373 -g1,16091:28293693,42002373 -k1,16092:32583029,42002373:1766200 -g1,16092:32583029,42002373 -) -] -g1,16093:32583029,42136721 -) -h1,16093:6630773,42136721:0,0,0 -v1,16096:6630773,43476726:0,393216,0 -(1,16097:6630773,45706769:25952256,2623259,0 -g1,16097:6630773,45706769 -g1,16097:6303093,45706769 -r1,16102:6401397,45706769:98304,2623259,0 -g1,16097:6600626,45706769 -g1,16097:6797234,45706769 -[1,16097:6797234,45706769:25785795,2623259,0 -(1,16097:6797234,43897310:25785795,813800,267386 -(1,16096:6797234,43897310:0,813800,267386 -r1,16102:8134168,43897310:1336934,1081186,267386 -k1,16096:6797234,43897310:-1336934 -) -(1,16096:6797234,43897310:1336934,813800,267386 -) -k1,16096:8378396,43897310:244228 -k1,16096:8706076,43897310:327680 -k1,16096:11453779,43897310:244228 -k1,16096:13265628,43897310:244228 -k1,16096:15843593,43897310:244228 -k1,16096:17630539,43897310:244228 -k1,16096:18534058,43897310:244227 -k1,16096:20756817,43897310:244228 -k1,16096:24026842,43897310:244228 -(1,16096:24026842,43897310:0,452978,122846 -r1,16102:26847091,43897310:2820249,575824,122846 -k1,16096:24026842,43897310:-2820249 -) -(1,16096:24026842,43897310:2820249,452978,122846 -k1,16096:24026842,43897310:3277 -h1,16096:26843814,43897310:0,411205,112570 -) -k1,16096:27091319,43897310:244228 -k1,16096:28526992,43897310:244228 -(1,16096:28526992,43897310:0,452978,115847 -r1,16102:31347241,43897310:2820249,568825,115847 -k1,16096:28526992,43897310:-2820249 -) -(1,16096:28526992,43897310:2820249,452978,115847 -k1,16096:28526992,43897310:3277 -h1,16096:31343964,43897310:0,411205,112570 -) -k1,16096:31591469,43897310:244228 -k1,16096:32583029,43897310:0 -) -(1,16097:6797234,44738798:25785795,513147,126483 -k1,16096:10561205,44738798:225027 -k1,16096:11977678,44738798:225028 -k1,16096:14921794,44738798:225027 -k1,16096:15908350,44738798:225028 -k1,16096:19159174,44738798:225027 -(1,16096:19159174,44738798:0,452978,122846 -r1,16102:24089694,44738798:4930520,575824,122846 -k1,16096:19159174,44738798:-4930520 -) -(1,16096:19159174,44738798:4930520,452978,122846 -k1,16096:19159174,44738798:3277 -h1,16096:24086417,44738798:0,411205,112570 -) -k1,16096:24314721,44738798:225027 -k1,16096:25731194,44738798:225028 -(1,16096:25731194,44738798:0,452978,115847 -r1,16102:30310002,44738798:4578808,568825,115847 -k1,16096:25731194,44738798:-4578808 -) -(1,16096:25731194,44738798:4578808,452978,115847 -k1,16096:25731194,44738798:3277 -h1,16096:30306725,44738798:0,411205,112570 -) -k1,16096:30708699,44738798:225027 -k1,16096:32583029,44738798:0 -) -(1,16097:6797234,45580286:25785795,513147,126483 -g1,16096:8279658,45580286 -g1,16096:11678355,45580286 -g1,16096:14967607,45580286 -g1,16096:17195831,45580286 -g1,16096:18487545,45580286 -g1,16096:19042634,45580286 -g1,16096:22004206,45580286 -g1,16096:24287480,45580286 -g1,16096:25929156,45580286 -g1,16096:27147470,45580286 -g1,16096:28367095,45580286 -k1,16097:32583029,45580286:2555252 -g1,16097:32583029,45580286 -) -] -g1,16097:32583029,45706769 -) -h1,16097:6630773,45706769:0,0,0 -] -(1,16102:32583029,45706769:0,0,0 -g1,16102:32583029,45706769 +[1,16146:3078558,4812305:0,0,0 +(1,16146:3078558,49800853:0,16384,2228224 +g1,16146:29030814,49800853 +g1,16146:36135244,49800853 +(1,15456:36135244,49800853:1720320,16384,2228224 +(1,15456:36135244,52029077:16384,1703936,0 +[1,15456:36135244,52029077:25952256,1703936,0 +(1,15456:36135244,51504789:25952256,1179648,0 +(1,15456:36135244,51504789:16384,1179648,0 +r1,16146:36151628,51504789:16384,1179648,0 ) +k1,15456:62087500,51504789:25935872 +g1,15456:62087500,51504789 ) -] -(1,16102:6630773,47279633:25952256,0,0 -h1,16102:6630773,47279633:25952256,0,0 -) -] -(1,16102:4262630,4025873:0,0,0 -[1,16102:-473656,4025873:0,0,0 -(1,16102:-473656,-710413:0,0,0 -(1,16102:-473656,-710413:0,0,0 -g1,16102:-473656,-710413 +] ) -g1,16102:-473656,-710413 +g1,15456:36675916,49800853 +(1,15456:36675916,49800853:1179648,16384,0 +r1,16146:37855564,49800853:1179648,16384,0 ) -] +) +k1,16146:3078556,49800853:-34777008 ) ] -!31788 -}275 -Input:2353:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2354:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2355:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2356:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2357:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2358:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2359:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2360:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +g1,16146:6630773,4812305 +k1,16146:23311652,4812305:15485502 +g1,16146:23960458,4812305 +g1,16146:27572802,4812305 +g1,16146:29306229,4812305 +) +) +] +[1,16146:6630773,45706769:25952256,40108032,0 +(1,16146:6630773,45706769:25952256,40108032,0 +(1,16146:6630773,45706769:0,0,0 +g1,16146:6630773,45706769 +) +[1,16146:6630773,45706769:25952256,40108032,0 +v1,16088:6630773,6254097:0,393216,0 +(1,16096:6630773,8069138:25952256,2208257,196608 +g1,16096:6630773,8069138 +g1,16096:6630773,8069138 +g1,16096:6434165,8069138 +(1,16096:6434165,8069138:0,2208257,196608 +r1,16146:32779637,8069138:26345472,2404865,196608 +k1,16096:6434165,8069138:-26345472 +) +(1,16096:6434165,8069138:26345472,2208257,196608 +[1,16096:6630773,8069138:25952256,2011649,0 +(1,16090:6630773,6488534:25952256,431045,86428 +(1,16089:6630773,6488534:0,0,0 +g1,16089:6630773,6488534 +g1,16089:6630773,6488534 +g1,16089:6303093,6488534 +(1,16089:6303093,6488534:0,0,0 +) +g1,16089:6630773,6488534 +) +g1,16090:9286405,6488534 +g1,16090:10614221,6488534 +g1,16090:12937899,6488534 +g1,16090:13601807,6488534 +g1,16090:14597669,6488534 +g1,16090:15593531,6488534 +g1,16090:16257439,6488534 +g1,16090:17253301,6488534 +g1,16090:18249163,6488534 +h1,16090:21236748,6488534:0,0,0 +k1,16090:32583029,6488534:11346281 +g1,16090:32583029,6488534 +) +(1,16091:6630773,7173389:25952256,424439,106246 +h1,16091:6630773,7173389:0,0,0 +g1,16091:13601805,7173389 +h1,16091:16921344,7173389:0,0,0 +k1,16091:32583029,7173389:15661685 +g1,16091:32583029,7173389 +) +(1,16095:6630773,7989316:25952256,424439,79822 +(1,16093:6630773,7989316:0,0,0 +g1,16093:6630773,7989316 +g1,16093:6630773,7989316 +g1,16093:6303093,7989316 +(1,16093:6303093,7989316:0,0,0 +) +g1,16093:6630773,7989316 +) +g1,16095:7626635,7989316 +g1,16095:8954451,7989316 +h1,16095:10282267,7989316:0,0,0 +k1,16095:32583029,7989316:22300762 +g1,16095:32583029,7989316 +) +] +) +g1,16096:32583029,8069138 +g1,16096:6630773,8069138 +g1,16096:6630773,8069138 +g1,16096:32583029,8069138 +g1,16096:32583029,8069138 +) +h1,16096:6630773,8265746:0,0,0 +(1,16100:6630773,9130826:25952256,513147,134348 +h1,16099:6630773,9130826:983040,0,0 +k1,16099:8487710,9130826:246062 +k1,16099:12344806,9130826:246062 +k1,16099:13005664,9130826:246015 +k1,16099:15335771,9130826:246062 +k1,16099:16529484,9130826:246062 +k1,16099:20545832,9130826:246062 +k1,16099:21323391,9130826:246062 +k1,16099:24717147,9130826:246062 +k1,16099:26661247,9130826:246062 +k1,16099:28642702,9130826:246062 +k1,16099:29907849,9130826:246062 +k1,16099:32583029,9130826:0 +) +(1,16100:6630773,9995906:25952256,513147,134348 +k1,16099:9575033,9995906:197646 +k1,16099:11340299,9995906:197645 +k1,16099:13874302,9995906:197646 +k1,16099:15465899,9995906:197646 +k1,16099:16682629,9995906:197645 +k1,16099:18255876,9995906:197646 +k1,16099:20460234,9995906:197646 +k1,16099:21942385,9995906:197645 +k1,16099:24669721,9995906:197646 +k1,16099:25526659,9995906:197646 +k1,16099:26743389,9995906:197645 +k1,16099:28981826,9995906:197646 +k1,16099:32583029,9995906:0 +) +(1,16100:6630773,10860986:25952256,513147,134348 +k1,16099:7465173,10860986:175108 +k1,16099:8659366,10860986:175108 +(1,16099:8659366,10860986:0,435480,115847 +r1,16146:10072767,10860986:1413401,551327,115847 +k1,16099:8659366,10860986:-1413401 +) +(1,16099:8659366,10860986:1413401,435480,115847 +k1,16099:8659366,10860986:3277 +h1,16099:10069490,10860986:0,411205,112570 +) +k1,16099:10247874,10860986:175107 +k1,16099:13343266,10860986:175108 +k1,16099:14386726,10860986:175108 +k1,16099:16092100,10860986:175108 +k1,16099:16918636,10860986:175108 +k1,16099:19992401,10860986:175108 +k1,16099:21559493,10860986:175107 +k1,16099:25504887,10860986:175108 +k1,16099:29041992,10860986:175108 +k1,16099:30919070,10860986:175108 +k1,16100:32583029,10860986:0 +) +(1,16100:6630773,11726066:25952256,505283,134348 +k1,16099:8410126,11726066:153405 +k1,16099:9325058,11726066:153404 +k1,16099:12494430,11726066:153405 +k1,16099:14286890,11726066:153405 +k1,16099:15056332,11726066:153404 +k1,16099:19237580,11726066:153405 +k1,16099:20018820,11726066:153405 +k1,16099:21191310,11726066:153405 +k1,16099:24336433,11726066:153404 +k1,16099:26345162,11726066:153405 +k1,16099:27366919,11726066:153405 +k1,16099:29949087,11726066:153404 +k1,16099:30458352,11726066:153405 +k1,16099:32583029,11726066:0 +) +(1,16100:6630773,12591146:25952256,513147,126483 +k1,16099:10309043,12591146:238285 +k1,16099:11272156,12591146:238285 +k1,16099:12794947,12591146:238285 +k1,16099:13491330,12591146:238286 +k1,16099:15498432,12591146:238285 +k1,16099:16484483,12591146:238285 +k1,16099:18523697,12591146:238285 +k1,16099:21922783,12591146:238285 +k1,16099:23428534,12591146:238285 +k1,16099:24022679,12591146:238285 +k1,16099:26956461,12591146:238286 +k1,16099:28468111,12591146:238285 +k1,16099:29903083,12591146:238285 +(1,16099:29903083,12591146:0,435480,115847 +r1,16146:31316484,12591146:1413401,551327,115847 +k1,16099:29903083,12591146:-1413401 +) +(1,16099:29903083,12591146:1413401,435480,115847 +k1,16099:29903083,12591146:3277 +h1,16099:31313207,12591146:0,411205,112570 +) +k1,16099:31554769,12591146:238285 +k1,16100:32583029,12591146:0 +) +(1,16100:6630773,13456226:25952256,513147,126483 +k1,16099:8831651,13456226:269532 +k1,16099:11957896,13456226:269531 +k1,16099:13513244,13456226:269532 +k1,16099:15432972,13456226:269531 +k1,16099:18388825,13456226:269532 +k1,16099:22602313,13456226:269531 +k1,16099:24338541,13456226:269532 +k1,16099:26002023,13456226:269531 +k1,16099:28942802,13456226:269532 +k1,16099:30635120,13456226:269531 +k1,16099:31563944,13456226:269532 +k1,16099:32583029,13456226:0 +) +(1,16100:6630773,14321306:25952256,505283,126483 +k1,16100:32583029,14321306:22045000 +g1,16100:32583029,14321306 +) +v1,16102:6630773,15006161:0,393216,0 +(1,16110:6630773,16814596:25952256,2201651,196608 +g1,16110:6630773,16814596 +g1,16110:6630773,16814596 +g1,16110:6434165,16814596 +(1,16110:6434165,16814596:0,2201651,196608 +r1,16146:32779637,16814596:26345472,2398259,196608 +k1,16110:6434165,16814596:-26345472 +) +(1,16110:6434165,16814596:26345472,2201651,196608 +[1,16110:6630773,16814596:25952256,2005043,0 +(1,16104:6630773,15233992:25952256,424439,106246 +(1,16103:6630773,15233992:0,0,0 +g1,16103:6630773,15233992 +g1,16103:6630773,15233992 +g1,16103:6303093,15233992 +(1,16103:6303093,15233992:0,0,0 +) +g1,16103:6630773,15233992 +) +g1,16104:9286405,15233992 +g1,16104:10946175,15233992 +g1,16104:12605945,15233992 +g1,16104:13269853,15233992 +g1,16104:15593531,15233992 +g1,16104:16257439,15233992 +h1,16104:17253301,15233992:0,0,0 +k1,16104:32583029,15233992:15329728 +g1,16104:32583029,15233992 +) +(1,16109:6630773,16049919:25952256,424439,79822 +(1,16106:6630773,16049919:0,0,0 +g1,16106:6630773,16049919 +g1,16106:6630773,16049919 +g1,16106:6303093,16049919 +(1,16106:6303093,16049919:0,0,0 +) +g1,16106:6630773,16049919 +) +g1,16109:7626635,16049919 +g1,16109:7958589,16049919 +g1,16109:9286405,16049919 +g1,16109:9618359,16049919 +g1,16109:9950313,16049919 +g1,16109:12937898,16049919 +g1,16109:13269852,16049919 +g1,16109:13601806,16049919 +g1,16109:16589391,16049919 +g1,16109:16921345,16049919 +g1,16109:20240884,16049919 +g1,16109:20572838,16049919 +g1,16109:23892377,16049919 +g1,16109:24224331,16049919 +g1,16109:27543870,16049919 +g1,16109:27875824,16049919 +h1,16109:30863409,16049919:0,0,0 +k1,16109:32583029,16049919:1719620 +g1,16109:32583029,16049919 +) +(1,16109:6630773,16734774:25952256,424439,79822 +h1,16109:6630773,16734774:0,0,0 +g1,16109:7626635,16734774 +g1,16109:7958589,16734774 +g1,16109:9286405,16734774 +g1,16109:9618359,16734774 +g1,16109:12937898,16734774 +g1,16109:13269852,16734774 +g1,16109:16589391,16734774 +g1,16109:16921345,16734774 +g1,16109:20240884,16734774 +h1,16109:23560423,16734774:0,0,0 +k1,16109:32583029,16734774:9022606 +g1,16109:32583029,16734774 +) +] +) +g1,16110:32583029,16814596 +g1,16110:6630773,16814596 +g1,16110:6630773,16814596 +g1,16110:32583029,16814596 +g1,16110:32583029,16814596 +) +h1,16110:6630773,17011204:0,0,0 +(1,16113:6630773,19128022:25952256,555811,147783 +(1,16113:6630773,19128022:2450326,534184,12975 +g1,16113:6630773,19128022 +g1,16113:9081099,19128022 +) +g1,16113:13301946,19128022 +k1,16113:32583029,19128022:17323850 +g1,16113:32583029,19128022 +) +(1,16116:6630773,20386318:25952256,513147,126483 +k1,16115:12086167,20386318:269530 +k1,16115:13374782,20386318:269530 +k1,16115:19031371,20386318:269530 +k1,16115:19960193,20386318:269530 +k1,16115:23306638,20386318:269530 +(1,16115:23306638,20386318:0,452978,115847 +r1,16146:24016616,20386318:709978,568825,115847 +k1,16115:23306638,20386318:-709978 +) +(1,16115:23306638,20386318:709978,452978,115847 +k1,16115:23306638,20386318:3277 +h1,16115:24013339,20386318:0,411205,112570 +) +k1,16115:24286145,20386318:269529 +k1,16115:25747120,20386318:269530 +(1,16115:25747120,20386318:0,435480,115847 +r1,16146:26808809,20386318:1061689,551327,115847 +k1,16115:25747120,20386318:-1061689 +) +(1,16115:25747120,20386318:1061689,435480,115847 +k1,16115:25747120,20386318:3277 +h1,16115:26805532,20386318:0,411205,112570 +) +k1,16115:27078339,20386318:269530 +k1,16115:28539314,20386318:269530 +(1,16115:28539314,20386318:0,435480,115847 +r1,16146:29952715,20386318:1413401,551327,115847 +k1,16115:28539314,20386318:-1413401 +) +(1,16115:28539314,20386318:1413401,435480,115847 +k1,16115:28539314,20386318:3277 +h1,16115:29949438,20386318:0,411205,112570 +) +k1,16115:30222245,20386318:269530 +k1,16115:31483335,20386318:269530 +k1,16116:32583029,20386318:0 +) +(1,16116:6630773,21251398:25952256,513147,126483 +k1,16115:8955132,21251398:231139 +k1,16115:10580222,21251398:231139 +(1,16115:10580222,21251398:0,452978,115847 +r1,16146:11290200,21251398:709978,568825,115847 +k1,16115:10580222,21251398:-709978 +) +(1,16115:10580222,21251398:709978,452978,115847 +k1,16115:10580222,21251398:3277 +h1,16115:11286923,21251398:0,411205,112570 +) +k1,16115:11521339,21251398:231139 +k1,16115:14591498,21251398:231139 +k1,16115:15474065,21251398:231139 +k1,16115:17180419,21251398:231139 +k1,16115:18430643,21251398:231139 +k1,16115:19996750,21251398:231139 +k1,16115:24477243,21251398:231139 +k1,16115:27461549,21251398:231139 +k1,16115:28454216,21251398:231139 +(1,16115:28454216,21251398:0,435480,115847 +r1,16146:29867617,21251398:1413401,551327,115847 +k1,16115:28454216,21251398:-1413401 +) +(1,16115:28454216,21251398:1413401,435480,115847 +k1,16115:28454216,21251398:3277 +h1,16115:29864340,21251398:0,411205,112570 +) +k1,16115:30098756,21251398:231139 +k1,16115:31521340,21251398:231139 +(1,16115:31521340,21251398:0,435480,115847 +r1,16146:32583029,21251398:1061689,551327,115847 +k1,16115:31521340,21251398:-1061689 +) +(1,16115:31521340,21251398:1061689,435480,115847 +k1,16115:31521340,21251398:3277 +h1,16115:32579752,21251398:0,411205,112570 +) +k1,16115:32583029,21251398:0 +) +(1,16116:6630773,22116478:25952256,513147,134348 +k1,16115:8534958,22116478:166170 +k1,16115:11260309,22116478:166170 +k1,16115:12244368,22116478:166170 +k1,16115:17797597,22116478:166170 +k1,16115:20146117,22116478:166171 +k1,16115:24387971,22116478:166170 +k1,16115:25891075,22116478:166170 +k1,16115:27419739,22116478:166170 +k1,16115:29745320,22116478:166170 +k1,16115:32583029,22116478:0 +) +(1,16116:6630773,22981558:25952256,513147,134348 +g1,16115:9764704,22981558 +(1,16115:9764704,22981558:0,452978,115847 +r1,16146:10474682,22981558:709978,568825,115847 +k1,16115:9764704,22981558:-709978 +) +(1,16115:9764704,22981558:709978,452978,115847 +k1,16115:9764704,22981558:3277 +h1,16115:10471405,22981558:0,411205,112570 +) +g1,16115:10673911,22981558 +g1,16115:12611155,22981558 +g1,16115:14132245,22981558 +g1,16115:14998630,22981558 +g1,16115:15612702,22981558 +g1,16115:16343428,22981558 +g1,16115:18255113,22981558 +g1,16115:19105770,22981558 +g1,16115:21532568,22981558 +g1,16115:22750882,22981558 +k1,16116:32583029,22981558:7516105 +g1,16116:32583029,22981558 +) +(1,16118:6630773,23846638:25952256,513147,134348 +h1,16117:6630773,23846638:983040,0,0 +k1,16117:9526280,23846638:175763 +k1,16117:11023903,23846638:175762 +k1,16117:11858958,23846638:175763 +k1,16117:13053805,23846638:175762 +k1,16117:13644388,23846638:175740 +k1,16117:16836117,23846638:175762 +(1,16117:16836117,23846638:0,452978,115847 +r1,16146:17546095,23846638:709978,568825,115847 +k1,16117:16836117,23846638:-709978 +) +(1,16117:16836117,23846638:709978,452978,115847 +k1,16117:16836117,23846638:3277 +h1,16117:17542818,23846638:0,411205,112570 +) +k1,16117:17721858,23846638:175763 +k1,16117:19030082,23846638:175762 +k1,16117:21433414,23846638:175763 +k1,16117:24393146,23846638:175763 +k1,16117:25760353,23846638:175762 +k1,16117:27537816,23846638:175763 +k1,16117:29426034,23846638:175762 +k1,16117:30887613,23846638:175763 +k1,16118:32583029,23846638:0 +) +(1,16118:6630773,24711718:25952256,505283,134348 +k1,16117:8870990,24711718:323944 +k1,16117:12904272,24711718:323944 +k1,16117:14917735,24711718:323945 +k1,16117:18152133,24711718:323944 +k1,16117:20244894,24711718:323944 +k1,16117:21316604,24711718:323944 +k1,16117:25165730,24711718:323944 +k1,16117:26172560,24711718:323945 +k1,16117:29988918,24711718:323944 +k1,16117:31074390,24711718:323944 +k1,16117:32583029,24711718:0 +) +(1,16118:6630773,25576798:25952256,513147,126483 +k1,16117:10846558,25576798:255444 +k1,16117:12144025,25576798:255445 +k1,16117:13602710,25576798:255444 +k1,16117:16163056,25576798:255445 +k1,16117:16876597,25576798:255444 +k1,16117:17663539,25576798:255445 +k1,16117:21184642,25576798:255444 +k1,16117:22091515,25576798:255445 +k1,16117:23439444,25576798:255444 +k1,16117:24713974,25576798:255445 +(1,16117:24713974,25576798:0,452978,115847 +r1,16146:25423952,25576798:709978,568825,115847 +k1,16117:24713974,25576798:-709978 +) +(1,16117:24713974,25576798:709978,452978,115847 +k1,16117:24713974,25576798:3277 +h1,16117:25420675,25576798:0,411205,112570 +) +k1,16117:25679396,25576798:255444 +k1,16117:26550879,25576798:255445 +k1,16117:28967700,25576798:255444 +k1,16117:29906030,25576798:255445 +k1,16117:31657661,25576798:255444 +k1,16118:32583029,25576798:0 +) +(1,16118:6630773,26441878:25952256,505283,126483 +k1,16117:9076532,26441878:319116 +k1,16117:10047075,26441878:319115 +k1,16117:11113957,26441878:319116 +k1,16117:13755668,26441878:319115 +k1,16117:16117541,26441878:319116 +k1,16117:20645379,26441878:319116 +k1,16117:22358445,26441878:319115 +k1,16117:23092284,26441878:318996 +k1,16117:26075438,26441878:319115 +k1,16117:28428136,26441878:319116 +k1,16117:30189698,26441878:319115 +k1,16117:32051532,26441878:319116 +k1,16117:32583029,26441878:0 +) +(1,16118:6630773,27306958:25952256,505283,7863 +k1,16118:32583029,27306958:23480238 +g1,16118:32583029,27306958 +) +(1,16120:6630773,28172038:25952256,513147,126483 +h1,16119:6630773,28172038:983040,0,0 +k1,16119:8463038,28172038:221390 +k1,16119:9703513,28172038:221390 +k1,16119:11147805,28172038:221390 +k1,16119:12028487,28172038:221390 +k1,16119:13268962,28172038:221390 +k1,16119:15072391,28172038:221390 +k1,16119:16991820,28172038:221391 +k1,16119:19843170,28172038:221390 +k1,16119:20277529,28172038:221367 +k1,16119:21631382,28172038:221391 +k1,16119:22945257,28172038:221390 +k1,16119:24085462,28172038:221390 +k1,16119:26027172,28172038:221390 +k1,16119:27440007,28172038:221390 +k1,16119:28753882,28172038:221390 +k1,16119:29591310,28172038:221390 +k1,16119:32583029,28172038:0 +) +(1,16120:6630773,29037118:25952256,513147,134348 +k1,16119:7882583,29037118:232725 +(1,16119:7882583,29037118:0,414482,115847 +r1,16146:8240849,29037118:358266,530329,115847 +k1,16119:7882583,29037118:-358266 +) +(1,16119:7882583,29037118:358266,414482,115847 +k1,16119:7882583,29037118:3277 +h1,16119:8237572,29037118:0,411205,112570 +) +k1,16119:8473574,29037118:232725 +k1,16119:12439886,29037118:232726 +k1,16119:13324039,29037118:232725 +k1,16119:16335491,29037118:232725 +k1,16119:21396909,29037118:232725 +k1,16119:22257469,29037118:232725 +k1,16119:24091894,29037118:232725 +k1,16119:26022002,29037118:232726 +k1,16119:27273812,29037118:232725 +k1,16119:30498256,29037118:232725 +k1,16119:31835263,29037118:232725 +k1,16119:32583029,29037118:0 +) +(1,16120:6630773,29902198:25952256,505283,134348 +g1,16119:8630931,29902198 +g1,16119:11752410,29902198 +g1,16119:13687032,29902198 +g1,16119:16632875,29902198 +(1,16119:16632875,29902198:0,435480,115847 +r1,16146:17694564,29902198:1061689,551327,115847 +k1,16119:16632875,29902198:-1061689 +) +(1,16119:16632875,29902198:1061689,435480,115847 +k1,16119:16632875,29902198:3277 +h1,16119:17691287,29902198:0,411205,112570 +) +k1,16120:32583029,29902198:14714795 +g1,16120:32583029,29902198 +) +(1,16122:6630773,30767278:25952256,513147,134348 +h1,16121:6630773,30767278:983040,0,0 +k1,16121:9439562,30767278:150649 +k1,16121:10694492,30767278:150648 +k1,16121:11592907,30767278:150649 +k1,16121:13256781,30767278:150648 +k1,16121:14801381,30767278:150649 +k1,16121:16083836,30767278:150648 +k1,16121:16649280,30767278:150601 +k1,16121:19669094,30767278:150648 +k1,16121:20891912,30767278:150649 +k1,16121:22372941,30767278:150648 +k1,16121:24825214,30767278:150649 +k1,16121:26080144,30767278:150648 +k1,16121:26978559,30767278:150649 +k1,16121:28637846,30767278:150648 +k1,16121:29880980,30767278:150649 +k1,16121:32583029,30767278:0 +) +(1,16122:6630773,31632358:25952256,513147,134348 +k1,16121:7642750,31632358:202607 +k1,16121:8864442,31632358:202607 +k1,16121:10806375,31632358:202607 +k1,16121:11668274,31632358:202607 +k1,16121:13999490,31632358:202607 +k1,16121:17986801,31632358:202607 +k1,16121:19570251,31632358:202606 +k1,16121:20304355,31632358:202607 +k1,16121:23614679,31632358:202607 +k1,16121:24836371,31632358:202607 +k1,16121:26406059,31632358:202607 +k1,16121:28306704,31632358:202607 +k1,16121:30936765,31632358:202607 +k1,16122:32583029,31632358:0 +) +(1,16122:6630773,32497438:25952256,513147,126483 +k1,16121:8842894,32497438:242764 +k1,16121:12091794,32497438:242764 +k1,16121:12985986,32497438:242764 +k1,16121:14247835,32497438:242764 +k1,16121:15796732,32497438:242764 +k1,16121:19320228,32497438:242764 +k1,16121:20222284,32497438:242764 +k1,16121:21484132,32497438:242763 +k1,16121:24422392,32497438:242764 +k1,16121:25474526,32497438:242764 +k1,16121:26736375,32497438:242764 +k1,16121:28162719,32497438:242764 +k1,16121:30661888,32497438:242764 +k1,16121:31563944,32497438:242764 +k1,16121:32583029,32497438:0 +) +(1,16122:6630773,33362518:25952256,513147,134348 +k1,16121:9903859,33362518:247289 +k1,16121:11342593,33362518:247289 +k1,16121:14374507,33362518:247289 +k1,16121:17003374,33362518:247289 +k1,16121:17866701,33362518:247289 +k1,16121:20092523,33362518:247290 +k1,16121:22486116,33362518:247289 +k1,16121:23924850,33362518:247289 +k1,16121:24527999,33362518:247289 +k1,16121:25908406,33362518:247289 +k1,16121:27857665,33362518:247289 +k1,16121:31015408,33362518:247289 +k1,16121:32583029,33362518:0 +) +(1,16122:6630773,34227598:25952256,513147,126483 +g1,16121:7849087,34227598 +g1,16121:11256303,34227598 +g1,16121:12143005,34227598 +g1,16121:13545475,34227598 +k1,16122:32583029,34227598:17333618 +g1,16122:32583029,34227598 +) +(1,16124:6630773,35092678:25952256,513147,134348 +h1,16123:6630773,35092678:983040,0,0 +k1,16123:10241151,35092678:284426 +k1,16123:10881438,35092678:284427 +k1,16123:13010702,35092678:284426 +k1,16123:13954420,35092678:284426 +k1,16123:17755509,35092678:284427 +k1,16123:19231380,35092678:284426 +k1,16123:21549388,35092678:284426 +k1,16123:25891803,35092678:284426 +k1,16123:28349404,35092678:284427 +k1,16123:29249868,35092678:284426 +k1,16123:32583029,35092678:0 +) +(1,16124:6630773,35957758:25952256,505283,134348 +k1,16123:9659574,35957758:187160 +k1,16123:11892767,35957758:187159 +k1,16123:15401947,35957758:187160 +k1,16123:17932019,35957758:187160 +k1,16123:21523774,35957758:187160 +k1,16123:23431253,35957758:187159 +k1,16123:24149910,35957758:187160 +k1,16123:25403341,35957758:187160 +k1,16123:26276663,35957758:187160 +k1,16123:28032099,35957758:187159 +k1,16123:28905421,35957758:187160 +k1,16123:30295822,35957758:187160 +k1,16123:32583029,35957758:0 +) +(1,16124:6630773,36822838:25952256,513147,134348 +k1,16123:9447145,36822838:194277 +k1,16123:12302838,36822838:194276 +k1,16123:14309841,36822838:194277 +k1,16123:15898068,36822838:194276 +k1,16123:17249055,36822838:194277 +k1,16123:20427841,36822838:194276 +k1,16123:22360133,36822838:194277 +k1,16123:23573495,36822838:194277 +k1,16123:26617276,36822838:194276 +k1,16123:27470845,36822838:194277 +k1,16123:29095117,36822838:194276 +k1,16123:29940822,36822838:194277 +(1,16123:29940822,36822838:0,452978,115847 +r1,16146:32409359,36822838:2468537,568825,115847 +k1,16123:29940822,36822838:-2468537 +) +(1,16123:29940822,36822838:2468537,452978,115847 +k1,16123:29940822,36822838:3277 +h1,16123:32406082,36822838:0,411205,112570 +) +k1,16123:32583029,36822838:0 +) +(1,16124:6630773,37687918:25952256,505283,126483 +k1,16123:8202125,37687918:190508 +k1,16123:8924130,37687918:190508 +k1,16123:11918268,37687918:190508 +k1,16123:14638467,37687918:190509 +(1,16123:14638467,37687918:0,452978,115847 +r1,16146:17107004,37687918:2468537,568825,115847 +k1,16123:14638467,37687918:-2468537 +) +(1,16123:14638467,37687918:2468537,452978,115847 +k1,16123:14638467,37687918:3277 +h1,16123:17103727,37687918:0,411205,112570 +) +k1,16123:17297512,37687918:190508 +k1,16123:19828966,37687918:190508 +k1,16123:20807872,37687918:190508 +k1,16123:22706904,37687918:190508 +k1,16123:25569970,37687918:190508 +k1,16123:26376517,37687918:190509 +k1,16123:29233030,37687918:190508 +k1,16123:30074966,37687918:190508 +k1,16124:32583029,37687918:0 +) +(1,16124:6630773,38552998:25952256,473825,134348 +g1,16123:7820251,38552998 +k1,16124:32583030,38552998:24131012 +g1,16124:32583030,38552998 +) +v1,16126:6630773,39237853:0,393216,0 +(1,16142:6630773,44047852:25952256,5203215,196608 +g1,16142:6630773,44047852 +g1,16142:6630773,44047852 +g1,16142:6434165,44047852 +(1,16142:6434165,44047852:0,5203215,196608 +r1,16146:32779637,44047852:26345472,5399823,196608 +k1,16142:6434165,44047852:-26345472 +) +(1,16142:6434165,44047852:26345472,5203215,196608 +[1,16142:6630773,44047852:25952256,5006607,0 +(1,16128:6630773,39465684:25952256,424439,106246 +(1,16127:6630773,39465684:0,0,0 +g1,16127:6630773,39465684 +g1,16127:6630773,39465684 +g1,16127:6303093,39465684 +(1,16127:6303093,39465684:0,0,0 +) +g1,16127:6630773,39465684 +) +g1,16128:9286405,39465684 +g1,16128:10282267,39465684 +g1,16128:12937899,39465684 +g1,16128:13933761,39465684 +g1,16128:16257439,39465684 +g1,16128:17253301,39465684 +g1,16128:19908933,39465684 +g1,16128:20904795,39465684 +g1,16128:22896519,39465684 +g1,16128:23892381,39465684 +g1,16128:26548013,39465684 +g1,16128:27543875,39465684 +h1,16128:30863414,39465684:0,0,0 +k1,16128:32583029,39465684:1719615 +g1,16128:32583029,39465684 +) +(1,16135:6630773,40281611:25952256,424439,79822 +(1,16130:6630773,40281611:0,0,0 +g1,16130:6630773,40281611 +g1,16130:6630773,40281611 +g1,16130:6303093,40281611 +(1,16130:6303093,40281611:0,0,0 +) +g1,16130:6630773,40281611 +) +g1,16135:7626635,40281611 +g1,16135:7958589,40281611 +g1,16135:9286405,40281611 +g1,16135:9618359,40281611 +g1,16135:10282267,40281611 +g1,16135:10614221,40281611 +g1,16135:11278129,40281611 +g1,16135:11610083,40281611 +g1,16135:12273991,40281611 +g1,16135:12605945,40281611 +g1,16135:13269853,40281611 +g1,16135:13601807,40281611 +g1,16135:14265715,40281611 +g1,16135:14597669,40281611 +g1,16135:15261577,40281611 +g1,16135:15593531,40281611 +g1,16135:16257439,40281611 +g1,16135:16589393,40281611 +g1,16135:17253301,40281611 +g1,16135:17585255,40281611 +g1,16135:18249163,40281611 +h1,16135:18913071,40281611:0,0,0 +k1,16135:32583029,40281611:13669958 +g1,16135:32583029,40281611 +) +(1,16135:6630773,40966466:25952256,424439,79822 +h1,16135:6630773,40966466:0,0,0 +k1,16135:7599425,40966466:304744 +k1,16135:7904169,40966466:304744 +k1,16135:9204774,40966466:304743 +k1,16135:12165149,40966466:304744 +k1,16135:15125524,40966466:304744 +k1,16135:18085899,40966466:304744 +k1,16135:21046274,40966466:304744 +k1,16135:24006648,40966466:304743 +k1,16135:26967023,40966466:304744 +k1,16135:29927398,40966466:304744 +h1,16135:32583029,40966466:0,0,0 +k1,16135:32583029,40966466:0 +k1,16135:32583029,40966466:0 +) +(1,16135:6630773,41651321:25952256,424439,79822 +h1,16135:6630773,41651321:0,0,0 +g1,16135:7626635,41651321 +g1,16135:7958589,41651321 +g1,16135:9286405,41651321 +g1,16135:12273990,41651321 +h1,16135:14929621,41651321:0,0,0 +k1,16135:32583029,41651321:17653408 +g1,16135:32583029,41651321 +) +(1,16135:6630773,42336176:25952256,424439,79822 +h1,16135:6630773,42336176:0,0,0 +g1,16135:7626635,42336176 +g1,16135:8954451,42336176 +h1,16135:11610082,42336176:0,0,0 +k1,16135:32583030,42336176:20972948 +g1,16135:32583030,42336176 +) +(1,16137:6630773,43152103:25952256,424439,9908 +(1,16136:6630773,43152103:0,0,0 +g1,16136:6630773,43152103 +g1,16136:6630773,43152103 +g1,16136:6303093,43152103 +(1,16136:6303093,43152103:0,0,0 +) +g1,16136:6630773,43152103 +) +h1,16137:9950312,43152103:0,0,0 +k1,16137:32583028,43152103:22632716 +g1,16137:32583028,43152103 +) +(1,16141:6630773,43968030:25952256,424439,79822 +(1,16139:6630773,43968030:0,0,0 +g1,16139:6630773,43968030 +g1,16139:6630773,43968030 +g1,16139:6303093,43968030 +(1,16139:6303093,43968030:0,0,0 +) +g1,16139:6630773,43968030 +) +g1,16141:7626635,43968030 +g1,16141:8954451,43968030 +h1,16141:11610082,43968030:0,0,0 +k1,16141:32583030,43968030:20972948 +g1,16141:32583030,43968030 +) +] +) +g1,16142:32583029,44047852 +g1,16142:6630773,44047852 +g1,16142:6630773,44047852 +g1,16142:32583029,44047852 +g1,16142:32583029,44047852 +) +h1,16142:6630773,44244460:0,0,0 +(1,16146:6630773,45109540:25952256,513147,134348 +h1,16145:6630773,45109540:983040,0,0 +k1,16145:11196061,45109540:177653 +k1,16145:13491182,45109540:177653 +k1,16145:16364331,45109540:177653 +k1,16145:17971979,45109540:177652 +k1,16145:18681129,45109540:177653 +k1,16145:19877867,45109540:177653 +k1,16145:21657220,45109540:177653 +k1,16145:24318688,45109540:177653 +k1,16145:25182503,45109540:177653 +k1,16145:26638762,45109540:177652 +k1,16145:27502577,45109540:177653 +k1,16145:29176417,45109540:177653 +k1,16145:31089463,45109540:177653 +k1,16145:32583029,45109540:0 +) +] +(1,16146:32583029,45706769:0,0,0 +g1,16146:32583029,45706769 +) +) +] +(1,16146:6630773,47279633:25952256,0,0 +h1,16146:6630773,47279633:25952256,0,0 +) +] +(1,16146:4262630,4025873:0,0,0 +[1,16146:-473656,4025873:0,0,0 +(1,16146:-473656,-710413:0,0,0 +(1,16146:-473656,-710413:0,0,0 +g1,16146:-473656,-710413 +) +g1,16146:-473656,-710413 +) +] +) +] +!28657 +}259 Input:2361:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!858 -{276 -[1,16136:4262630,47279633:28320399,43253760,0 -(1,16136:4262630,4025873:0,0,0 -[1,16136:-473656,4025873:0,0,0 -(1,16136:-473656,-710413:0,0,0 -(1,16136:-473656,-644877:0,0,0 -k1,16136:-473656,-644877:-65536 +Input:2362:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2363:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2364:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2365:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2366:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2367:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2368:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2369:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2370:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2371:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2372:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2373:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2374:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2375:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1422 +{260 +[1,16209:4262630,47279633:28320399,43253760,0 +(1,16209:4262630,4025873:0,0,0 +[1,16209:-473656,4025873:0,0,0 +(1,16209:-473656,-710413:0,0,0 +(1,16209:-473656,-644877:0,0,0 +k1,16209:-473656,-644877:-65536 ) -(1,16136:-473656,4736287:0,0,0 -k1,16136:-473656,4736287:5209943 +(1,16209:-473656,4736287:0,0,0 +k1,16209:-473656,4736287:5209943 ) -g1,16136:-473656,-710413 +g1,16209:-473656,-710413 ) ] ) -[1,16136:6630773,47279633:25952256,43253760,0 -[1,16136:6630773,4812305:25952256,786432,0 -(1,16136:6630773,4812305:25952256,505283,126483 -(1,16136:6630773,4812305:25952256,505283,126483 -g1,16136:3078558,4812305 -[1,16136:3078558,4812305:0,0,0 -(1,16136:3078558,2439708:0,1703936,0 -k1,16136:1358238,2439708:-1720320 -(1,15243:1358238,2439708:1720320,1703936,0 -(1,15243:1358238,2439708:1179648,16384,0 -r1,16136:2537886,2439708:1179648,16384,0 +[1,16209:6630773,47279633:25952256,43253760,0 +[1,16209:6630773,4812305:25952256,786432,0 +(1,16209:6630773,4812305:25952256,485622,126483 +(1,16209:6630773,4812305:25952256,485622,126483 +g1,16209:3078558,4812305 +[1,16209:3078558,4812305:0,0,0 +(1,16209:3078558,2439708:0,1703936,0 +k1,16209:1358238,2439708:-1720320 +(1,15456:1358238,2439708:1720320,1703936,0 +(1,15456:1358238,2439708:1179648,16384,0 +r1,16209:2537886,2439708:1179648,16384,0 ) -g1,15243:3062174,2439708 -(1,15243:3062174,2439708:16384,1703936,0 -[1,15243:3062174,2439708:25952256,1703936,0 -(1,15243:3062174,1915420:25952256,1179648,0 -(1,15243:3062174,1915420:16384,1179648,0 -r1,16136:3078558,1915420:16384,1179648,0 +g1,15456:3062174,2439708 +(1,15456:3062174,2439708:16384,1703936,0 +[1,15456:3062174,2439708:25952256,1703936,0 +(1,15456:3062174,1915420:25952256,1179648,0 +(1,15456:3062174,1915420:16384,1179648,0 +r1,16209:3078558,1915420:16384,1179648,0 ) -k1,15243:29014430,1915420:25935872 -g1,15243:29014430,1915420 +k1,15456:29014430,1915420:25935872 +g1,15456:29014430,1915420 ) ] ) ) ) ] -[1,16136:3078558,4812305:0,0,0 -(1,16136:3078558,2439708:0,1703936,0 -g1,16136:29030814,2439708 -g1,16136:36135244,2439708 -(1,15243:36135244,2439708:1720320,1703936,0 -(1,15243:36135244,2439708:16384,1703936,0 -[1,15243:36135244,2439708:25952256,1703936,0 -(1,15243:36135244,1915420:25952256,1179648,0 -(1,15243:36135244,1915420:16384,1179648,0 -r1,16136:36151628,1915420:16384,1179648,0 +[1,16209:3078558,4812305:0,0,0 +(1,16209:3078558,2439708:0,1703936,0 +g1,16209:29030814,2439708 +g1,16209:36135244,2439708 +(1,15456:36135244,2439708:1720320,1703936,0 +(1,15456:36135244,2439708:16384,1703936,0 +[1,15456:36135244,2439708:25952256,1703936,0 +(1,15456:36135244,1915420:25952256,1179648,0 +(1,15456:36135244,1915420:16384,1179648,0 +r1,16209:36151628,1915420:16384,1179648,0 ) -k1,15243:62087500,1915420:25935872 -g1,15243:62087500,1915420 +k1,15456:62087500,1915420:25935872 +g1,15456:62087500,1915420 ) ] ) -g1,15243:36675916,2439708 -(1,15243:36675916,2439708:1179648,16384,0 -r1,16136:37855564,2439708:1179648,16384,0 +g1,15456:36675916,2439708 +(1,15456:36675916,2439708:1179648,16384,0 +r1,16209:37855564,2439708:1179648,16384,0 ) ) -k1,16136:3078556,2439708:-34777008 +k1,16209:3078556,2439708:-34777008 ) ] -[1,16136:3078558,4812305:0,0,0 -(1,16136:3078558,49800853:0,16384,2228224 -k1,16136:1358238,49800853:-1720320 -(1,15243:1358238,49800853:1720320,16384,2228224 -(1,15243:1358238,49800853:1179648,16384,0 -r1,16136:2537886,49800853:1179648,16384,0 +[1,16209:3078558,4812305:0,0,0 +(1,16209:3078558,49800853:0,16384,2228224 +k1,16209:1358238,49800853:-1720320 +(1,15456:1358238,49800853:1720320,16384,2228224 +(1,15456:1358238,49800853:1179648,16384,0 +r1,16209:2537886,49800853:1179648,16384,0 ) -g1,15243:3062174,49800853 -(1,15243:3062174,52029077:16384,1703936,0 -[1,15243:3062174,52029077:25952256,1703936,0 -(1,15243:3062174,51504789:25952256,1179648,0 -(1,15243:3062174,51504789:16384,1179648,0 -r1,16136:3078558,51504789:16384,1179648,0 +g1,15456:3062174,49800853 +(1,15456:3062174,52029077:16384,1703936,0 +[1,15456:3062174,52029077:25952256,1703936,0 +(1,15456:3062174,51504789:25952256,1179648,0 +(1,15456:3062174,51504789:16384,1179648,0 +r1,16209:3078558,51504789:16384,1179648,0 ) -k1,15243:29014430,51504789:25935872 -g1,15243:29014430,51504789 +k1,15456:29014430,51504789:25935872 +g1,15456:29014430,51504789 +) +] +) +) +) +] +[1,16209:3078558,4812305:0,0,0 +(1,16209:3078558,49800853:0,16384,2228224 +g1,16209:29030814,49800853 +g1,16209:36135244,49800853 +(1,15456:36135244,49800853:1720320,16384,2228224 +(1,15456:36135244,52029077:16384,1703936,0 +[1,15456:36135244,52029077:25952256,1703936,0 +(1,15456:36135244,51504789:25952256,1179648,0 +(1,15456:36135244,51504789:16384,1179648,0 +r1,16209:36151628,51504789:16384,1179648,0 +) +k1,15456:62087500,51504789:25935872 +g1,15456:62087500,51504789 +) +] +) +g1,15456:36675916,49800853 +(1,15456:36675916,49800853:1179648,16384,0 +r1,16209:37855564,49800853:1179648,16384,0 +) +) +k1,16209:3078556,49800853:-34777008 +) +] +g1,16209:6630773,4812305 +g1,16209:6630773,4812305 +g1,16209:8364200,4812305 +g1,16209:10177581,4812305 +k1,16209:31387653,4812305:21210072 +) +) +] +[1,16209:6630773,45706769:25952256,40108032,0 +(1,16209:6630773,45706769:25952256,40108032,0 +(1,16209:6630773,45706769:0,0,0 +g1,16209:6630773,45706769 +) +[1,16209:6630773,45706769:25952256,40108032,0 +(1,16146:6630773,6254097:25952256,513147,134348 +k1,16145:8315868,6254097:255099 +k1,16145:9102464,6254097:255099 +k1,16145:11841378,6254097:255099 +k1,16145:12747905,6254097:255099 +k1,16145:14588974,6254097:255098 +k1,16145:15767475,6254097:255099 +k1,16145:16638612,6254097:255099 +k1,16145:19400463,6254097:255099 +k1,16145:20113659,6254097:255099 +k1,16145:20900255,6254097:255099 +k1,16145:22739359,6254097:255099 +k1,16145:23645886,6254097:255099 +k1,16145:24993469,6254097:255098 +k1,16145:26968888,6254097:255099 +k1,16145:29551170,6254097:255099 +k1,16145:30465561,6254097:255099 +k1,16145:32583029,6254097:0 +) +(1,16146:6630773,7119177:25952256,513147,134348 +k1,16145:9519096,7119177:192827 +k1,16145:11315589,7119177:192827 +k1,16145:14443118,7119177:192827 +k1,16145:15094042,7119177:192827 +k1,16145:15818366,7119177:192827 +k1,16145:17346161,7119177:192827 +k1,16145:18190417,7119177:192828 +k1,16145:20112739,7119177:192827 +k1,16145:21659540,7119177:192827 +k1,16145:23241075,7119177:192827 +k1,16145:25327892,7119177:192827 +k1,16145:28442969,7119177:192827 +k1,16145:30325314,7119177:192827 +k1,16145:32583029,7119177:0 +) +(1,16146:6630773,7984257:25952256,513147,134348 +k1,16145:9011423,7984257:219273 +k1,16145:9913580,7984257:219272 +k1,16145:13146198,7984257:219273 +k1,16145:14754833,7984257:219272 +k1,16145:15432203,7984257:219273 +k1,16145:16182972,7984257:219272 +k1,16145:19611543,7984257:219273 +k1,16145:20482243,7984257:219272 +k1,16145:22523417,7984257:219273 +k1,16145:23761774,7984257:219272 +k1,16145:27646476,7984257:219273 +k1,16145:28525040,7984257:219272 +k1,16145:32583029,7984257:0 +) +(1,16146:6630773,8849337:25952256,513147,134348 +g1,16145:9176846,8849337 +g1,16145:10100903,8849337 +g1,16145:12333714,8849337 +g1,16145:14171998,8849337 +g1,16145:15022655,8849337 +g1,16145:18063525,8849337 +g1,16145:19367036,8849337 +g1,16145:20956939,8849337 +g1,16145:22581576,8849337 +g1,16145:23972250,8849337 +k1,16146:32583029,8849337:6664360 +g1,16146:32583029,8849337 +) +(1,16148:6630773,9714417:25952256,513147,134348 +h1,16147:6630773,9714417:983040,0,0 +k1,16147:9044737,9714417:234237 +k1,16147:11367605,9714417:234236 +k1,16147:12268998,9714417:234237 +k1,16147:13422050,9714417:234237 +k1,16147:15589598,9714417:234236 +k1,16147:17544155,9714417:234237 +k1,16147:18879397,9714417:234237 +k1,16147:22079137,9714417:234236 +k1,16147:23880995,9714417:234237 +k1,16147:25134317,9714417:234237 +k1,16147:28781668,9714417:234236 +k1,16147:31821501,9714417:234237 +k1,16147:32583029,9714417:0 +) +(1,16148:6630773,10579497:25952256,505283,134348 +k1,16147:8879817,10579497:215462 +k1,16147:14482338,10579497:215462 +k1,16147:15889245,10579497:215462 +k1,16147:17842722,10579497:215462 +k1,16147:19388565,10579497:215462 +k1,16147:20925888,10579497:215462 +k1,16147:22160435,10579497:215462 +k1,16147:25391864,10579497:215462 +k1,16147:26475678,10579497:215462 +k1,16147:27795422,10579497:215462 +k1,16147:30081822,10579497:215462 +k1,16147:30755381,10579497:215462 +k1,16147:31622271,10579497:215462 +k1,16148:32583029,10579497:0 +) +(1,16148:6630773,11444577:25952256,513147,134348 +k1,16147:8595815,11444577:269626 +k1,16147:9884526,11444577:269626 +k1,16147:13133419,11444577:269626 +k1,16147:14559755,11444577:269626 +k1,16147:16319670,11444577:269626 +k1,16147:17377694,11444577:269626 +k1,16147:22704078,11444577:269626 +k1,16147:23505201,11444577:269626 +k1,16147:25844454,11444577:269626 +k1,16147:27310767,11444577:269626 +k1,16147:30635026,11444577:269626 +k1,16147:31563944,11444577:269626 +k1,16147:32583029,11444577:0 +) +(1,16148:6630773,12309657:25952256,505283,134348 +k1,16147:8551175,12309657:265618 +k1,16147:14203851,12309657:265617 +k1,16147:15944684,12309657:265618 +k1,16147:16861729,12309657:265617 +k1,16147:18819487,12309657:265618 +k1,16147:21073466,12309657:265617 +k1,16147:24425174,12309657:265618 +k1,16147:25306829,12309657:265617 +k1,16147:27081086,12309657:265618 +k1,16147:29435335,12309657:265617 +k1,16147:32583029,12309657:0 +) +(1,16148:6630773,13174737:25952256,513147,126483 +k1,16147:11347876,13174737:196429 +k1,16147:13236446,13174737:196430 +k1,16147:16949537,13174737:196429 +k1,16147:18137526,13174737:196429 +k1,16147:19984152,13174737:196429 +k1,16147:21623029,13174737:196430 +k1,16147:24837391,13174737:196429 +k1,16147:25448660,13174737:196426 +k1,16147:27365409,13174737:196429 +k1,16147:28553399,13174737:196430 +k1,16147:31336534,13174737:196429 +k1,16148:32583029,13174737:0 +) +(1,16148:6630773,14039817:25952256,513147,134348 +k1,16147:7703644,14039817:235976 +k1,16147:8591049,14039817:235977 +k1,16147:9919510,14039817:235976 +k1,16147:11346931,14039817:235976 +k1,16147:14421927,14039817:235976 +k1,16147:15309332,14039817:235977 +k1,16147:16293074,14039817:235976 +k1,16147:18845092,14039817:235976 +k1,16147:21002585,14039817:235977 +k1,16147:22806182,14039817:235976 +k1,16147:25987345,14039817:235976 +k1,16147:27214881,14039817:235976 +k1,16147:28469943,14039817:235977 +k1,16147:30307619,14039817:235976 +k1,16147:32583029,14039817:0 +) +(1,16148:6630773,14904897:25952256,513147,134348 +k1,16147:8328055,14904897:285636 +k1,16147:9685860,14904897:285636 +k1,16147:11037767,14904897:285636 +k1,16147:12009565,14904897:285636 +k1,16147:13593469,14904897:285636 +k1,16147:14530533,14904897:285636 +k1,16147:16082324,14904897:285635 +k1,16147:17559405,14904897:285636 +k1,16147:21663824,14904897:285636 +k1,16147:23644221,14904897:285636 +k1,16147:24285717,14904897:285636 +k1,16147:26221550,14904897:285636 +k1,16147:29193507,14904897:285636 +k1,16148:32583029,14904897:0 +) +(1,16148:6630773,15769977:25952256,505283,134348 +k1,16147:8932397,15769977:247726 +k1,16147:10199208,15769977:247726 +k1,16147:13006115,15769977:247726 +k1,16147:15788774,15769977:247726 +k1,16147:18199187,15769977:247726 +k1,16147:18978411,15769977:247727 +k1,16147:19996840,15769977:247726 +k1,16147:22759182,15769977:247726 +k1,16147:23658336,15769977:247726 +k1,16147:26534711,15769977:247726 +k1,16147:28502757,15769977:247726 +k1,16147:31931601,15769977:247726 +k1,16147:32583029,15769977:0 +) +(1,16148:6630773,16635057:25952256,513147,134348 +k1,16147:9852958,16635057:276998 +k1,16147:12858221,16635057:276999 +k1,16147:13751257,16635057:276998 +k1,16147:16872518,16635057:276998 +k1,16147:20280827,16635057:276999 +k1,16147:21749270,16635057:276998 +k1,16147:26275622,16635057:276998 +k1,16147:27471435,16635057:276998 +(1,16147:27471435,16635057:0,452978,115847 +r1,16209:28181413,16635057:709978,568825,115847 +k1,16147:27471435,16635057:-709978 +) +(1,16147:27471435,16635057:709978,452978,115847 +k1,16147:27471435,16635057:3277 +h1,16147:28178136,16635057:0,411205,112570 +) +k1,16147:28458412,16635057:276999 +k1,16147:31482024,16635057:276998 +k1,16147:32583029,16635057:0 +) +(1,16148:6630773,17500137:25952256,505283,134348 +k1,16147:8413960,17500137:273237 +k1,16147:11736586,17500137:273236 +k1,16147:13637082,17500137:273237 +k1,16147:14698716,17500137:273236 +k1,16147:17637958,17500137:273237 +k1,16147:18527232,17500137:273236 +k1,16147:19215237,17500137:273162 +k1,16147:20864075,17500137:273237 +k1,16147:22309750,17500137:273236 +k1,16147:24265952,17500137:273237 +k1,16147:25837456,17500137:273236 +k1,16147:27985023,17500137:273237 +k1,16147:32583029,17500137:0 +) +(1,16148:6630773,18365217:25952256,505283,126483 +g1,16147:8305217,18365217 +g1,16147:9270562,18365217 +g1,16147:10979741,18365217 +g1,16147:14577667,18365217 +k1,16148:32583029,18365217:14296024 +g1,16148:32583029,18365217 +) +(1,16150:6630773,19230297:25952256,513147,126483 +h1,16149:6630773,19230297:983040,0,0 +k1,16149:8963830,19230297:153330 +k1,16149:11201206,19230297:153331 +k1,16149:12013828,19230297:153330 +k1,16149:15244073,19230297:153330 +(1,16149:15244073,19230297:0,452978,115847 +r1,16209:15954051,19230297:709978,568825,115847 +k1,16149:15244073,19230297:-709978 +) +(1,16149:15244073,19230297:709978,452978,115847 +k1,16149:15244073,19230297:3277 +h1,16149:15950774,19230297:0,411205,112570 +) +k1,16149:16107381,19230297:153330 +k1,16149:17452157,19230297:153331 +(1,16149:17452157,19230297:0,435480,115847 +r1,16209:18513846,19230297:1061689,551327,115847 +k1,16149:17452157,19230297:-1061689 +) +(1,16149:17452157,19230297:1061689,435480,115847 +k1,16149:17452157,19230297:3277 +h1,16149:18510569,19230297:0,411205,112570 +) +k1,16149:18667176,19230297:153330 +k1,16149:19352003,19230297:153330 +k1,16149:20571604,19230297:153330 +k1,16149:23635389,19230297:153331 +k1,16149:25267867,19230297:153330 +k1,16149:26340012,19230297:153330 +(1,16149:26340012,19230297:0,452978,115847 +r1,16209:27049990,19230297:709978,568825,115847 +k1,16149:26340012,19230297:-709978 +) +(1,16149:26340012,19230297:709978,452978,115847 +k1,16149:26340012,19230297:3277 +h1,16149:27046713,19230297:0,411205,112570 +) +k1,16149:27203321,19230297:153331 +k1,16149:28249907,19230297:153330 +k1,16149:29062529,19230297:153330 +k1,16149:29660803,19230297:153285 +k1,16149:31563944,19230297:153330 +k1,16149:32583029,19230297:0 +) +(1,16150:6630773,20095377:25952256,505283,134348 +k1,16149:10610956,20095377:246597 +(1,16149:10610956,20095377:0,414482,115847 +r1,16209:10969222,20095377:358266,530329,115847 +k1,16149:10610956,20095377:-358266 +) +(1,16149:10610956,20095377:358266,414482,115847 +k1,16149:10610956,20095377:3277 +h1,16149:10965945,20095377:0,411205,112570 +) +k1,16149:11215819,20095377:246597 +k1,16149:12566698,20095377:246597 +k1,16149:13561061,20095377:246597 +k1,16149:15183259,20095377:246597 +k1,16149:17635144,20095377:246598 +k1,16149:18533169,20095377:246597 +k1,16149:22390800,20095377:246597 +k1,16149:23398925,20095377:246597 +k1,16149:25557207,20095377:246597 +k1,16149:27493322,20095377:246597 +k1,16149:29133870,20095377:246597 +k1,16150:32583029,20095377:0 +) +(1,16150:6630773,20960457:25952256,505283,134348 +(1,16149:6630773,20960457:0,435480,115847 +r1,16209:7692462,20960457:1061689,551327,115847 +k1,16149:6630773,20960457:-1061689 +) +(1,16149:6630773,20960457:1061689,435480,115847 +k1,16149:6630773,20960457:3277 +h1,16149:7689185,20960457:0,411205,112570 +) +k1,16149:7840194,20960457:147732 +k1,16149:9007011,20960457:147732 +k1,16149:12888329,20960457:147732 +(1,16149:12888329,20960457:0,414482,115847 +r1,16209:13246595,20960457:358266,530329,115847 +k1,16149:12888329,20960457:-358266 +) +(1,16149:12888329,20960457:358266,414482,115847 +k1,16149:12888329,20960457:3277 +h1,16149:13243318,20960457:0,411205,112570 +) +k1,16149:13394327,20960457:147732 +k1,16149:14646341,20960457:147732 +k1,16149:15541839,20960457:147732 +k1,16149:17202797,20960457:147732 +k1,16149:18001957,20960457:147732 +k1,16149:19586894,20960457:147732 +k1,16149:23137255,20960457:147732 +k1,16149:24751683,20960457:147732 +k1,16149:25660943,20960457:147732 +k1,16149:27546690,20960457:147732 +k1,16149:28885867,20960457:147732 +k1,16149:29795127,20960457:147732 +k1,16149:32583029,20960457:0 +) +(1,16150:6630773,21825537:25952256,513147,126483 +k1,16149:8279993,21825537:170072 +k1,16149:11196680,21825537:170073 +(1,16149:11196680,21825537:0,435480,115847 +r1,16209:12610081,21825537:1413401,551327,115847 +k1,16149:11196680,21825537:-1413401 +) +(1,16149:11196680,21825537:1413401,435480,115847 +k1,16149:11196680,21825537:3277 +h1,16149:12606804,21825537:0,411205,112570 +) +k1,16149:12780153,21825537:170072 +k1,16149:13969310,21825537:170072 +k1,16149:15231867,21825537:170072 +k1,16149:16061232,21825537:170073 +k1,16149:17250389,21825537:170072 +k1,16149:21154047,21825537:170072 +(1,16149:21154047,21825537:0,414482,115847 +r1,16209:21512313,21825537:358266,530329,115847 +k1,16149:21154047,21825537:-358266 +) +(1,16149:21154047,21825537:358266,414482,115847 +k1,16149:21154047,21825537:3277 +h1,16149:21509036,21825537:0,411205,112570 +) +k1,16149:21682385,21825537:170072 +k1,16149:22383955,21825537:170073 +k1,16149:26195863,21825537:170072 +k1,16149:27557380,21825537:170072 +k1,16149:28185549,21825537:170072 +k1,16149:29459904,21825537:170073 +k1,16149:30377742,21825537:170072 +k1,16149:32583029,21825537:0 +) +(1,16150:6630773,22690617:25952256,513147,126483 +k1,16149:7553607,22690617:161306 +k1,16149:9452928,22690617:161306 +k1,16149:10297119,22690617:161306 +k1,16149:11219952,22690617:161305 +k1,16149:13995489,22690617:161306 +k1,16149:14808223,22690617:161306 +k1,16149:15988614,22690617:161306 +k1,16149:18845416,22690617:161306 +k1,16149:20106416,22690617:161306 +k1,16149:21077092,22690617:161306 +k1,16149:22257483,22690617:161306 +k1,16149:23602368,22690617:161305 +k1,16149:25580332,22690617:161306 +k1,16149:29258300,22690617:161306 +k1,16149:30411166,22690617:161306 +k1,16149:32583029,22690617:0 +) +(1,16150:6630773,23555697:25952256,513147,126483 +k1,16149:7952716,23555697:175718 +k1,16149:9872347,23555697:175718 +k1,16149:12269737,23555697:175719 +k1,16149:13096883,23555697:175718 +k1,16149:14291686,23555697:175718 +k1,16149:15559889,23555697:175718 +k1,16149:16351646,23555697:175719 +k1,16149:17546449,23555697:175718 +k1,16149:18755015,23555697:175718 +k1,16149:19590025,23555697:175718 +k1,16149:20784829,23555697:175719 +k1,16149:24175088,23555697:175718 +k1,16149:27097420,23555697:175718 +k1,16149:27956023,23555697:175718 +k1,16149:30658155,23555697:175719 +k1,16149:31516758,23555697:175718 +k1,16149:32583029,23555697:0 +) +(1,16150:6630773,24420777:25952256,513147,126483 +g1,16149:7777653,24420777 +g1,16149:11747168,24420777 +g1,16149:13230903,24420777 +g1,16149:14421692,24420777 +g1,16149:15687192,24420777 +g1,16149:18217537,24420777 +g1,16149:21112262,24420777 +k1,16150:32583029,24420777:9867101 +g1,16150:32583029,24420777 +) +(1,16152:6630773,25285857:25952256,513147,126483 +h1,16151:6630773,25285857:983040,0,0 +k1,16151:8410163,25285857:168515 +k1,16151:9597763,25285857:168515 +k1,16151:11133359,25285857:168515 +k1,16151:11969029,25285857:168514 +k1,16151:12726057,25285857:168515 +k1,16151:13913657,25285857:168515 +k1,16151:15472191,25285857:168515 +k1,16151:16172203,25285857:168515 +k1,16151:20384289,25285857:168515 +k1,16151:20908664,25285857:168515 +k1,16151:24950357,25285857:168515 +k1,16151:26512822,25285857:168514 +k1,16151:27490707,25285857:168515 +k1,16151:30736137,25285857:168515 +k1,16151:31563944,25285857:168515 +k1,16151:32583029,25285857:0 +) +(1,16152:6630773,26150937:25952256,513147,134348 +k1,16151:8954977,26150937:240159 +k1,16151:9878022,26150937:240160 +k1,16151:13421851,26150937:240159 +k1,16151:15575006,26150937:240159 +k1,16151:17196010,26150937:240160 +k1,16151:19495966,26150937:240159 +k1,16151:22936904,26150937:240160 +k1,16151:24196148,26150937:240159 +k1,16151:25817151,26150937:240159 +k1,16151:27248756,26150937:240160 +k1,16151:30575661,26150937:240159 +k1,16152:32583029,26150937:0 +) +(1,16152:6630773,27016017:25952256,513147,134348 +k1,16151:10205716,27016017:138890 +k1,16151:10972442,27016017:138891 +k1,16151:12813302,27016017:138890 +k1,16151:15080802,27016017:138891 +k1,16151:15634475,27016017:138830 +k1,16151:17493686,27016017:138891 +k1,16151:18624136,27016017:138890 +k1,16151:19533730,27016017:138891 +k1,16151:23059521,27016017:138890 +k1,16151:24436387,27016017:138891 +k1,16151:25234569,27016017:138890 +k1,16151:27631174,27016017:138890 +k1,16151:29887533,27016017:138891 +k1,16151:32583029,27016017:0 +) +(1,16152:6630773,27881097:25952256,505283,134348 +g1,16151:8433668,27881097 +g1,16151:11199287,27881097 +g1,16151:11813359,27881097 +k1,16152:32583029,27881097:15769928 +g1,16152:32583029,27881097 +) +(1,16155:7202902,29401537:24807998,513147,126483 +(1,16153:7202902,29401537:983040,0,0 +g1,16153:8185942,29401537 +g1,16153:6875222,29401537 +g1,16153:6547542,29401537 +(1,16153:6547542,29401537:1310720,0,0 +k1,16153:7858262,29401537:1310720 +) +g1,16153:8185942,29401537 +) +k1,16154:11613229,29401537:221266 +k1,16154:13224514,29401537:221266 +k1,16154:16850375,29401537:221266 +k1,16154:18063201,29401537:221266 +k1,16154:22485979,29401537:221265 +k1,16154:23393407,29401537:221266 +k1,16154:25698718,29401537:221266 +k1,16154:31261168,29401537:221266 +k1,16154:32010900,29401537:0 +) +(1,16155:7202902,30266617:24807998,505283,126483 +k1,16154:8161873,30266617:188268 +k1,16154:11790125,30266617:188267 +k1,16154:14264944,30266617:188268 +k1,16154:15139374,30266617:188268 +(1,16154:15139374,30266617:0,459977,115847 +r1,16209:18311335,30266617:3171961,575824,115847 +k1,16154:15139374,30266617:-3171961 +) +(1,16154:15139374,30266617:3171961,459977,115847 +g1,16154:15846075,30266617 +g1,16154:16901211,30266617 +h1,16154:18308058,30266617:0,411205,112570 +) +k1,16154:18499603,30266617:188268 +k1,16154:19219367,30266617:188267 +k1,16154:21570978,30266617:188268 +k1,16154:22445408,30266617:188268 +(1,16154:22445408,30266617:0,459977,115847 +r1,16209:24913945,30266617:2468537,575824,115847 +k1,16154:22445408,30266617:-2468537 +) +(1,16154:22445408,30266617:2468537,459977,115847 +g1,16154:24207244,30266617 +h1,16154:24910668,30266617:0,411205,112570 +) +k1,16154:25275883,30266617:188268 +k1,16154:25934043,30266617:188267 +k1,16154:26653808,30266617:188268 +k1,16154:28717716,30266617:188268 +k1,16155:32010900,30266617:0 +) +(1,16155:7202902,31131697:24807998,505283,134348 +k1,16154:8353364,31131697:160213 +k1,16154:9798084,31131697:160214 +k1,16154:11647815,31131697:160213 +k1,16154:12827113,31131697:160213 +k1,16154:14483513,31131697:160213 +k1,16154:15259765,31131697:160214 +k1,16154:15775838,31131697:160213 +k1,16154:18494577,31131697:160213 +k1,16154:19186288,31131697:160214 +k1,16154:21633052,31131697:160213 +k1,16154:25811277,31131697:160213 +k1,16154:28245589,31131697:160213 +k1,16154:28820607,31131697:160175 +k1,16154:32010900,31131697:0 +) +(1,16155:7202902,31996777:24807998,513147,126483 +k1,16154:8315103,31996777:164550 +k1,16154:11783322,31996777:164549 +k1,16154:13711446,31996777:164550 +k1,16154:15067441,31996777:164550 +k1,16154:15956819,31996777:164550 +k1,16154:17932128,31996777:164549 +k1,16154:21866964,31996777:164550 +k1,16154:23163976,31996777:164550 +k1,16154:24076292,31996777:164550 +k1,16154:27302028,31996777:164549 +k1,16154:28842179,31996777:164550 +k1,16154:30704767,31996777:164550 +k1,16154:32010900,31996777:0 +) +(1,16155:7202902,32861857:24807998,505283,126483 +g1,16154:8915357,32861857 +g1,16154:9730624,32861857 +g1,16154:10948938,32861857 +g1,16154:12181670,32861857 +k1,16155:32010900,32861857:16215575 +g1,16155:32010900,32861857 +) +(1,16158:6630773,34382297:25952256,513147,126483 +h1,16157:6630773,34382297:983040,0,0 +k1,16157:9612542,34382297:224014 +k1,16157:13141537,34382297:224014 +k1,16157:14384635,34382297:224013 +k1,16157:17370992,34382297:224014 +k1,16157:18985025,34382297:224014 +k1,16157:22285954,34382297:224014 +k1,16157:23614250,34382297:224014 +k1,16157:27048217,34382297:224014 +k1,16157:28219881,34382297:224013 +k1,16157:29895517,34382297:224014 +k1,16157:31821501,34382297:224014 +k1,16157:32583029,34382297:0 +) +(1,16158:6630773,35247377:25952256,513147,134348 +k1,16157:9839819,35247377:213395 +k1,16157:11072299,35247377:213395 +k1,16157:13543410,35247377:213396 +k1,16157:14372843,35247377:213395 +k1,16157:16278378,35247377:213395 +k1,16157:18189155,35247377:213395 +k1,16157:19421636,35247377:213396 +k1,16157:23151693,35247377:213395 +k1,16157:25524499,35247377:213395 +k1,16157:27376949,35247377:213395 +k1,16157:28206383,35247377:213396 +k1,16157:29438863,35247377:213395 +k1,16157:31391584,35247377:213395 +k1,16157:32583029,35247377:0 +) +(1,16158:6630773,36112457:25952256,513147,134348 +g1,16157:8898318,36112457 +g1,16157:9756839,36112457 +g1,16157:13259738,36112457 +g1,16157:14118259,36112457 +g1,16157:15336573,36112457 +g1,16157:17378674,36112457 +g1,16157:19438470,36112457 +g1,16157:20289127,36112457 +g1,16157:21236122,36112457 +g1,16157:23202857,36112457 +g1,16157:24669552,36112457 +k1,16158:32583029,36112457:5235676 +g1,16158:32583029,36112457 +) +v1,16160:6630773,36977537:0,393216,0 +(1,16209:6630773,45313750:25952256,8729429,0 +g1,16209:6630773,45313750 +g1,16209:6237557,45313750 +r1,16209:6368629,45313750:131072,8729429,0 +g1,16209:6567858,45313750 +g1,16209:6764466,45313750 +[1,16209:6764466,45313750:25818563,8729429,0 +(1,16161:6764466,37338714:25818563,754393,260573 +(1,16160:6764466,37338714:0,754393,260573 +r1,16209:8010564,37338714:1246098,1014966,260573 +k1,16160:6764466,37338714:-1246098 +) +(1,16160:6764466,37338714:1246098,754393,260573 +) +k1,16160:8263688,37338714:253124 +k1,16160:8591368,37338714:327680 +k1,16160:9472326,37338714:253123 +k1,16160:11417590,37338714:253124 +k1,16160:14827583,37338714:253124 +k1,16160:17827321,37338714:253124 +(1,16160:17827321,37338714:0,435480,115847 +r1,16209:18889010,37338714:1061689,551327,115847 +k1,16160:17827321,37338714:-1061689 +) +(1,16160:17827321,37338714:1061689,435480,115847 +k1,16160:17827321,37338714:3277 +h1,16160:18885733,37338714:0,411205,112570 +) +k1,16160:19142133,37338714:253123 +k1,16160:20962878,37338714:253124 +k1,16160:23796154,37338714:253124 +k1,16160:26994465,37338714:253124 +k1,16160:28351870,37338714:253123 +k1,16160:30827975,37338714:253124 +k1,16161:32583029,37338714:0 +) +(1,16161:6764466,38203794:25818563,513147,126483 +k1,16160:9870973,38203794:239962 +k1,16160:11382334,38203794:239963 +k1,16160:14283713,38203794:239962 +k1,16160:15055172,38203794:239962 +k1,16160:16314220,38203794:239963 +k1,16160:17646667,38203794:239962 +k1,16160:18553785,38203794:239962 +(1,16160:18553785,38203794:0,452978,122846 +r1,16209:21374034,38203794:2820249,575824,122846 +k1,16160:18553785,38203794:-2820249 +) +(1,16160:18553785,38203794:2820249,452978,122846 +k1,16160:18553785,38203794:3277 +h1,16160:21370757,38203794:0,411205,112570 +) +k1,16160:21613997,38203794:239963 +k1,16160:22469997,38203794:239962 +k1,16160:23065819,38203794:239962 +k1,16160:24869471,38203794:239963 +k1,16160:26588581,38203794:239962 +k1,16160:27747358,38203794:239962 +k1,16160:30733935,38203794:239963 +(1,16160:30733935,38203794:0,452978,115847 +r1,16209:31443913,38203794:709978,568825,115847 +k1,16160:30733935,38203794:-709978 +) +(1,16160:30733935,38203794:709978,452978,115847 +k1,16160:30733935,38203794:3277 +h1,16160:31440636,38203794:0,411205,112570 +) +k1,16160:31683875,38203794:239962 +k1,16161:32583029,38203794:0 +) +(1,16161:6764466,39068874:25818563,505283,134348 +g1,16160:9923301,39068874 +g1,16160:11805495,39068874 +g1,16160:13667372,39068874 +g1,16160:14552763,39068874 +k1,16161:32583029,39068874:15017576 +g1,16161:32583029,39068874 +) +v1,16165:6764466,39753729:0,393216,0 +(1,16173:6764466,41562164:25818563,2201651,196608 +g1,16173:6764466,41562164 +g1,16173:6764466,41562164 +g1,16173:6567858,41562164 +(1,16173:6567858,41562164:0,2201651,196608 +r1,16209:32779637,41562164:26211779,2398259,196608 +k1,16173:6567857,41562164:-26211780 +) +(1,16173:6567858,41562164:26211779,2201651,196608 +[1,16173:6764466,41562164:25818563,2005043,0 +(1,16167:6764466,39981560:25818563,424439,112852 +(1,16166:6764466,39981560:0,0,0 +g1,16166:6764466,39981560 +g1,16166:6764466,39981560 +g1,16166:6436786,39981560 +(1,16166:6436786,39981560:0,0,0 +) +g1,16166:6764466,39981560 +) +g1,16167:9420098,39981560 +g1,16167:10415960,39981560 +g1,16167:13403546,39981560 +g1,16167:14067454,39981560 +g1,16167:18382855,39981560 +g1,16167:20374579,39981560 +g1,16167:21038487,39981560 +h1,16167:21702395,39981560:0,0,0 +k1,16167:32583029,39981560:10880634 +g1,16167:32583029,39981560 +) +(1,16168:6764466,40666415:25818563,424439,106246 +h1,16168:6764466,40666415:0,0,0 +g1,16168:13071590,40666415 +h1,16168:16391129,40666415:0,0,0 +k1,16168:32583029,40666415:16191900 +g1,16168:32583029,40666415 +) +(1,16172:6764466,41482342:25818563,424439,79822 +(1,16170:6764466,41482342:0,0,0 +g1,16170:6764466,41482342 +g1,16170:6764466,41482342 +g1,16170:6436786,41482342 +(1,16170:6436786,41482342:0,0,0 +) +g1,16170:6764466,41482342 +) +g1,16172:7760328,41482342 +g1,16172:9088144,41482342 +h1,16172:10415960,41482342:0,0,0 +k1,16172:32583028,41482342:22167068 +g1,16172:32583028,41482342 +) +] +) +g1,16173:32583029,41562164 +g1,16173:6764466,41562164 +g1,16173:6764466,41562164 +g1,16173:32583029,41562164 +g1,16173:32583029,41562164 +) +h1,16173:6764466,41758772:0,0,0 +(1,16177:6764466,42623852:25818563,513147,134348 +h1,16176:6764466,42623852:983040,0,0 +k1,16176:10172207,42623852:188613 +k1,16176:13763448,42623852:188612 +k1,16176:14943621,42623852:188613 +k1,16176:16418050,42623852:188613 +k1,16176:19901157,42623852:188612 +k1,16176:21483721,42623852:188613 +k1,16176:22691419,42623852:188613 +k1,16176:25555212,42623852:188613 +k1,16176:28490438,42623852:188612 +k1,16176:30246672,42623852:188613 +k1,16177:32583029,42623852:0 +k1,16177:32583029,42623852:0 +) +v1,16179:6764466,43308707:0,393216,0 +(1,16187:6764466,45117142:25818563,2201651,196608 +g1,16187:6764466,45117142 +g1,16187:6764466,45117142 +g1,16187:6567858,45117142 +(1,16187:6567858,45117142:0,2201651,196608 +r1,16209:32779637,45117142:26211779,2398259,196608 +k1,16187:6567857,45117142:-26211780 +) +(1,16187:6567858,45117142:26211779,2201651,196608 +[1,16187:6764466,45117142:25818563,2005043,0 +(1,16181:6764466,43536538:25818563,424439,112852 +(1,16180:6764466,43536538:0,0,0 +g1,16180:6764466,43536538 +g1,16180:6764466,43536538 +g1,16180:6436786,43536538 +(1,16180:6436786,43536538:0,0,0 +) +g1,16180:6764466,43536538 +) +g1,16181:9420098,43536538 +g1,16181:11079868,43536538 +g1,16181:14067454,43536538 +g1,16181:14731362,43536538 +g1,16181:19046763,43536538 +g1,16181:21038487,43536538 +g1,16181:21702395,43536538 +h1,16181:22366303,43536538:0,0,0 +k1,16181:32583029,43536538:10216726 +g1,16181:32583029,43536538 +) +(1,16182:6764466,44221393:25818563,424439,106246 +h1,16182:6764466,44221393:0,0,0 +g1,16182:13071590,44221393 +h1,16182:16391129,44221393:0,0,0 +k1,16182:32583029,44221393:16191900 +g1,16182:32583029,44221393 +) +(1,16186:6764466,45037320:25818563,424439,79822 +(1,16184:6764466,45037320:0,0,0 +g1,16184:6764466,45037320 +g1,16184:6764466,45037320 +g1,16184:6436786,45037320 +(1,16184:6436786,45037320:0,0,0 +) +g1,16184:6764466,45037320 +) +g1,16186:7760328,45037320 +g1,16186:9088144,45037320 +h1,16186:10415960,45037320:0,0,0 +k1,16186:32583028,45037320:22167068 +g1,16186:32583028,45037320 ) ] ) -) +g1,16187:32583029,45117142 +g1,16187:6764466,45117142 +g1,16187:6764466,45117142 +g1,16187:32583029,45117142 +g1,16187:32583029,45117142 +) +h1,16187:6764466,45313750:0,0,0 +] +g1,16209:32583029,45313750 ) ] -[1,16136:3078558,4812305:0,0,0 -(1,16136:3078558,49800853:0,16384,2228224 -g1,16136:29030814,49800853 -g1,16136:36135244,49800853 -(1,15243:36135244,49800853:1720320,16384,2228224 -(1,15243:36135244,52029077:16384,1703936,0 -[1,15243:36135244,52029077:25952256,1703936,0 -(1,15243:36135244,51504789:25952256,1179648,0 -(1,15243:36135244,51504789:16384,1179648,0 -r1,16136:36151628,51504789:16384,1179648,0 +(1,16209:32583029,45706769:0,0,0 +g1,16209:32583029,45706769 ) -k1,15243:62087500,51504789:25935872 -g1,15243:62087500,51504789 ) ] +(1,16209:6630773,47279633:25952256,0,0 +h1,16209:6630773,47279633:25952256,0,0 ) -g1,15243:36675916,49800853 -(1,15243:36675916,49800853:1179648,16384,0 -r1,16136:37855564,49800853:1179648,16384,0 +] +(1,16209:4262630,4025873:0,0,0 +[1,16209:-473656,4025873:0,0,0 +(1,16209:-473656,-710413:0,0,0 +(1,16209:-473656,-710413:0,0,0 +g1,16209:-473656,-710413 ) +g1,16209:-473656,-710413 ) -k1,16136:3078556,49800853:-34777008 -) -] -g1,16136:6630773,4812305 -g1,16136:6630773,4812305 -g1,16136:8364200,4812305 -g1,16136:12785258,4812305 -g1,16136:14347636,4812305 -g1,16136:16554232,4812305 -k1,16136:31387652,4812305:14833420 -) -) -] -[1,16136:6630773,45706769:25952256,40108032,0 -(1,16136:6630773,45706769:25952256,40108032,0 -(1,16136:6630773,45706769:0,0,0 -g1,16136:6630773,45706769 -) -[1,16136:6630773,45706769:25952256,40108032,0 -v1,16102:6630773,6254097:0,393216,0 -(1,16122:6630773,21774947:25952256,15914066,0 -g1,16122:6630773,21774947 -g1,16122:6303093,21774947 -r1,16136:6401397,21774947:98304,15914066,0 -g1,16122:6600626,21774947 -g1,16122:6797234,21774947 -[1,16122:6797234,21774947:25785795,15914066,0 -(1,16103:6797234,6686635:25785795,825754,196608 -(1,16102:6797234,6686635:0,825754,196608 -r1,16136:8834093,6686635:2036859,1022362,196608 -k1,16102:6797234,6686635:-2036859 -) -(1,16102:6797234,6686635:2036859,825754,196608 -) -k1,16102:9012531,6686635:178438 -k1,16102:10330460,6686635:327680 -k1,16102:13629066,6686635:178437 -(1,16102:13629066,6686635:0,452978,122846 -r1,16136:18559586,6686635:4930520,575824,122846 -k1,16102:13629066,6686635:-4930520 -) -(1,16102:13629066,6686635:4930520,452978,122846 -k1,16102:13629066,6686635:3277 -h1,16102:18556309,6686635:0,411205,112570 -) -k1,16102:18738024,6686635:178438 -k1,16102:20107906,6686635:178437 -(1,16102:20107906,6686635:0,452978,115847 -r1,16136:24686714,6686635:4578808,568825,115847 -k1,16102:20107906,6686635:-4578808 -) -(1,16102:20107906,6686635:4578808,452978,115847 -k1,16102:20107906,6686635:3277 -h1,16102:24683437,6686635:0,411205,112570 -) -k1,16102:24865152,6686635:178438 -k1,16102:26611210,6686635:178437 -k1,16102:29369800,6686635:178438 -k1,16102:32583029,6686635:0 -) -(1,16103:6797234,7528123:25785795,513147,134348 -k1,16102:9623325,7528123:311475 -k1,16102:10586228,7528123:311475 -k1,16102:13654146,7528123:311474 -k1,16102:14984706,7528123:311475 -k1,16102:18470745,7528123:311475 -k1,16102:19441512,7528123:311475 -k1,16102:20772072,7528123:311475 -k1,16102:22737020,7528123:311475 -k1,16102:24786509,7528123:311474 -k1,16102:28123781,7528123:311475 -k1,16102:30002877,7528123:311475 -k1,16102:32583029,7528123:0 -) -(1,16103:6797234,8369611:25785795,513147,134348 -k1,16102:9072845,8369611:297080 -k1,16102:9997759,8369611:297079 -k1,16102:11986979,8369611:297080 -k1,16102:13773692,8369611:297080 -k1,16102:15941824,8369611:297079 -k1,16102:17257989,8369611:297080 -k1,16102:20729633,8369611:297080 -k1,16102:23273943,8369611:297080 -k1,16102:24940069,8369611:297079 -k1,16102:25703110,8369611:297080 -k1,16102:27019275,8369611:297080 -k1,16102:28488793,8369611:297079 -k1,16102:30282060,8369611:297080 -k1,16102:32583029,8369611:0 -) -(1,16103:6797234,9211099:25785795,505283,126483 -k1,16102:8835347,9211099:182789 -k1,16102:11028782,9211099:182790 -k1,16102:13948354,9211099:182789 -k1,16102:14814028,9211099:182789 -k1,16102:16724347,9211099:182790 -k1,16102:18917781,9211099:182789 -k1,16102:20798608,9211099:182789 -(1,16102:20798608,9211099:0,414482,115847 -r1,16136:23970568,9211099:3171960,530329,115847 -k1,16102:20798608,9211099:-3171960 -) -(1,16102:20798608,9211099:3171960,414482,115847 -k1,16102:20798608,9211099:3277 -h1,16102:23967291,9211099:0,411205,112570 -) -k1,16102:24153358,9211099:182790 -k1,16102:24867644,9211099:182789 -k1,16102:28478621,9211099:182789 -k1,16102:29312839,9211099:182790 -k1,16102:30514713,9211099:182789 -k1,16102:32583029,9211099:0 -) -(1,16103:6797234,10052587:25785795,513147,134348 -k1,16102:7629432,10052587:172906 -k1,16102:9499065,10052587:172906 -k1,16102:10844410,10052587:172906 -k1,16102:14216784,10052587:172906 -k1,16102:15999254,10052587:172906 -k1,16102:18315187,10052587:172906 -k1,16102:19930540,10052587:172906 -k1,16102:22683598,10052587:172906 -k1,16102:26069733,10052587:172906 -k1,16102:26774136,10052587:172906 -k1,16102:29858151,10052587:172906 -k1,16102:31464985,10052587:172906 -k1,16102:32583029,10052587:0 -) -(1,16103:6797234,10894075:25785795,505283,7863 -g1,16102:8015548,10894075 -g1,16102:9710964,10894075 -k1,16103:32583030,10894075:20829964 -g1,16103:32583030,10894075 -) -v1,16105:6797234,12084541:0,393216,0 -(1,16118:6797234,18395239:25785795,6703914,196608 -g1,16118:6797234,18395239 -g1,16118:6797234,18395239 -g1,16118:6600626,18395239 -(1,16118:6600626,18395239:0,6703914,196608 -r1,16136:32779637,18395239:26179011,6900522,196608 -k1,16118:6600625,18395239:-26179012 -) -(1,16118:6600626,18395239:26179011,6703914,196608 -[1,16118:6797234,18395239:25785795,6507306,0 -(1,16107:6797234,12292159:25785795,404226,107478 -(1,16106:6797234,12292159:0,0,0 -g1,16106:6797234,12292159 -g1,16106:6797234,12292159 -g1,16106:6469554,12292159 -(1,16106:6469554,12292159:0,0,0 -) -g1,16106:6797234,12292159 -) -g1,16107:12487857,12292159 -k1,16107:12487857,12292159:0 -h1,16107:13120149,12292159:0,0,0 -k1,16107:32583029,12292159:19462880 -g1,16107:32583029,12292159 -) -(1,16108:6797234,12958337:25785795,404226,107478 -h1,16108:6797234,12958337:0,0,0 -g1,16108:7113380,12958337 -g1,16108:7429526,12958337 -k1,16108:7429526,12958337:0 -h1,16108:14384731,12958337:0,0,0 -k1,16108:32583029,12958337:18198298 -g1,16108:32583029,12958337 -) -(1,16109:6797234,13624515:25785795,404226,82312 -h1,16109:6797234,13624515:0,0,0 -g1,16109:7113380,13624515 -g1,16109:7429526,13624515 -g1,16109:7745672,13624515 -g1,16109:8061818,13624515 -k1,16109:8061818,13624515:0 -h1,16109:9642547,13624515:0,0,0 -k1,16109:32583029,13624515:22940482 -g1,16109:32583029,13624515 -) -(1,16110:6797234,14290693:25785795,404226,101187 -h1,16110:6797234,14290693:0,0,0 -g1,16110:7113380,14290693 -g1,16110:7429526,14290693 -g1,16110:7745672,14290693 -g1,16110:8061818,14290693 -g1,16110:9642547,14290693 -g1,16110:10274839,14290693 -k1,16110:10274839,14290693:0 -h1,16110:13120151,14290693:0,0,0 -k1,16110:32583029,14290693:19462878 -g1,16110:32583029,14290693 -) -(1,16111:6797234,14956871:25785795,404226,101187 -h1,16111:6797234,14956871:0,0,0 -g1,16111:7113380,14956871 -g1,16111:7429526,14956871 -g1,16111:7745672,14956871 -g1,16111:8061818,14956871 -g1,16111:10907129,14956871 -g1,16111:11539421,14956871 -k1,16111:11539421,14956871:0 -h1,16111:13752441,14956871:0,0,0 -k1,16111:32583029,14956871:18830588 -g1,16111:32583029,14956871 -) -(1,16112:6797234,15623049:25785795,404226,76021 -h1,16112:6797234,15623049:0,0,0 -g1,16112:7113380,15623049 -g1,16112:7429526,15623049 -g1,16112:7745672,15623049 -g1,16112:8061818,15623049 -g1,16112:11223275,15623049 -g1,16112:11855567,15623049 -h1,16112:15649315,15623049:0,0,0 -k1,16112:32583029,15623049:16933714 -g1,16112:32583029,15623049 -) -(1,16113:6797234,16289227:25785795,404226,107478 -h1,16113:6797234,16289227:0,0,0 -g1,16113:14384731,16289227 -h1,16113:20075353,16289227:0,0,0 -k1,16113:32583029,16289227:12507676 -g1,16113:32583029,16289227 -) -(1,16114:6797234,16955405:25785795,404226,107478 -h1,16114:6797234,16955405:0,0,0 -g1,16114:14384731,16955405 -h1,16114:20075353,16955405:0,0,0 -k1,16114:32583029,16955405:12507676 -g1,16114:32583029,16955405 -) -(1,16115:6797234,17621583:25785795,404226,107478 -h1,16115:6797234,17621583:0,0,0 -k1,16115:6797234,17621583:0 -h1,16115:12804002,17621583:0,0,0 -k1,16115:32583030,17621583:19779028 -g1,16115:32583030,17621583 -) -(1,16116:6797234,18287761:25785795,404226,107478 -h1,16116:6797234,18287761:0,0,0 -k1,16116:6797234,18287761:0 -h1,16116:14384730,18287761:0,0,0 -k1,16116:32583030,18287761:18198300 -g1,16116:32583030,18287761 -) -] -) -g1,16118:32583029,18395239 -g1,16118:6797234,18395239 -g1,16118:6797234,18395239 -g1,16118:32583029,18395239 -g1,16118:32583029,18395239 -) -h1,16118:6797234,18591847:0,0,0 -(1,16122:6797234,19957623:25785795,513147,126483 -h1,16121:6797234,19957623:983040,0,0 -k1,16121:9563400,19957623:149313 -k1,16121:10244209,19957623:149312 -k1,16121:11412607,19957623:149313 -k1,16121:14748280,19957623:149313 -k1,16121:17532795,19957623:149312 -k1,16121:18701193,19957623:149313 -k1,16121:20861151,19957623:149313 -k1,16121:23789190,19957623:149312 -k1,16121:24700031,19957623:149313 -k1,16121:25868429,19957623:149313 -k1,16121:27190180,19957623:149312 -k1,16121:30692315,19957623:149313 -k1,16121:32583029,19957623:0 -) -(1,16122:6797234,20799111:25785795,513147,134348 -k1,16121:10090877,20799111:245564 -k1,16121:11904061,20799111:245563 -k1,16121:14729777,20799111:245564 -k1,16121:16780202,20799111:245564 -k1,16121:17677194,20799111:245564 -k1,16121:20502909,20799111:245563 -k1,16121:23961702,20799111:245564 -k1,16121:25986568,20799111:245564 -k1,16121:27728318,20799111:245563 -k1,16121:31923737,20799111:245564 -k1,16121:32583029,20799111:0 -) -(1,16122:6797234,21640599:25785795,485622,134348 -k1,16122:32583029,21640599:22837986 -g1,16122:32583029,21640599 -) -] -g1,16122:32583029,21774947 -) -h1,16122:6630773,21774947:0,0,0 -(1,16125:6630773,25106803:25952256,32768,229376 -(1,16125:6630773,25106803:0,32768,229376 -(1,16125:6630773,25106803:5505024,32768,229376 -r1,16136:12135797,25106803:5505024,262144,229376 -) -k1,16125:6630773,25106803:-5505024 -) -(1,16125:6630773,25106803:25952256,32768,0 -r1,16136:32583029,25106803:25952256,32768,0 -) -) -(1,16125:6630773,26711131:25952256,606339,151780 -(1,16125:6630773,26711131:1974731,582746,14155 -g1,16125:6630773,26711131 -g1,16125:8605504,26711131 -) -g1,16125:10655733,26711131 -g1,16125:16149747,26711131 -g1,16125:18163013,26711131 -k1,16125:32583029,26711131:11889279 -g1,16125:32583029,26711131 -) -(1,16129:6630773,27945835:25952256,513147,134348 -k1,16128:8067041,27945835:239581 -k1,16128:9612755,27945835:239581 -k1,16128:13091124,27945835:239580 -k1,16128:13686565,27945835:239581 -k1,16128:15306990,27945835:239581 -k1,16128:16205863,27945835:239581 -k1,16128:17464529,27945835:239581 -k1,16128:19676742,27945835:239580 -k1,16128:22942120,27945835:239581 -k1,16128:24373146,27945835:239581 -k1,16128:27397352,27945835:239581 -k1,16128:28992217,27945835:239580 -k1,16128:29763295,27945835:239581 -k1,16128:31021961,27945835:239581 -k1,16129:32583029,27945835:0 -) -(1,16129:6630773,28787323:25952256,513147,126483 -k1,16128:9874209,28787323:243198 -k1,16128:10776699,28787323:243198 -k1,16128:12038982,28787323:243198 -k1,16128:13216723,28787323:243198 -k1,16128:14119213,28787323:243198 -k1,16128:17767006,28787323:243198 -k1,16128:21304699,28787323:243198 -k1,16128:22739342,28787323:243198 -k1,16128:24001625,28787323:243198 -k1,16128:27429873,28787323:243198 -k1,16128:28864516,28787323:243198 -k1,16128:32583029,28787323:0 -) -(1,16129:6630773,29628811:25952256,513147,134348 -k1,16128:9076802,29628811:286618 -k1,16128:10382505,29628811:286618 -k1,16128:13431466,29628811:286618 -k1,16128:16917552,29628811:286618 -k1,16128:17691670,29628811:286530 -k1,16128:20219619,29628811:286618 -k1,16128:23745026,29628811:286618 -k1,16128:24563140,29628811:286617 -k1,16128:26134264,29628811:286618 -k1,16128:28583570,29628811:286618 -k1,16128:29636304,29628811:286618 -k1,16128:30942007,29628811:286618 -k1,16129:32583029,29628811:0 -) -(1,16129:6630773,30470299:25952256,513147,134348 -k1,16128:8427682,30470299:199141 -k1,16128:9618383,30470299:199141 -k1,16128:12199103,30470299:199142 -k1,16128:13464515,30470299:199141 -k1,16128:15039257,30470299:199141 -k1,16128:16186049,30470299:199141 -k1,16128:18675018,30470299:199141 -k1,16128:19533452,30470299:199142 -k1,16128:21287762,30470299:199141 -(1,16128:21287762,30470299:0,452978,115847 -r1,16136:23404587,30470299:2116825,568825,115847 -k1,16128:21287762,30470299:-2116825 -) -(1,16128:21287762,30470299:2116825,452978,115847 -k1,16128:21287762,30470299:3277 -h1,16128:23401310,30470299:0,411205,112570 -) -k1,16128:23777398,30470299:199141 -k1,16128:25048708,30470299:199141 -k1,16128:26533665,30470299:199141 -k1,16128:27680458,30470299:199142 -k1,16128:30169427,30470299:199141 -k1,16128:31027860,30470299:199141 -k1,16129:32583029,30470299:0 -) -(1,16129:6630773,31311787:25952256,513147,134348 -(1,16128:6630773,31311787:0,452978,115847 -r1,16136:10154445,31311787:3523672,568825,115847 -k1,16128:6630773,31311787:-3523672 -) -(1,16128:6630773,31311787:3523672,452978,115847 -k1,16128:6630773,31311787:3277 -h1,16128:10151168,31311787:0,411205,112570 -) -k1,16128:10307299,31311787:152854 -k1,16128:13247400,31311787:152855 -k1,16128:15825086,31311787:152854 -k1,16128:17169386,31311787:152855 -k1,16128:18269891,31311787:152854 -k1,16128:19652810,31311787:152808 -k1,16128:22959257,31311787:152855 -k1,16128:25899357,31311787:152854 -k1,16128:28818486,31311787:152855 -k1,16128:30365291,31311787:152854 -k1,16129:32583029,31311787:0 -) -(1,16129:6630773,32153275:25952256,513147,134348 -k1,16128:8062781,32153275:156022 -k1,16128:10302848,32153275:156022 -k1,16128:11690947,32153275:156022 -k1,16128:13132786,32153275:156023 -k1,16128:15567495,32153275:156022 -h1,16128:17335001,32153275:0,0,0 -k1,16128:17491023,32153275:156022 -k1,16128:18456415,32153275:156022 -k1,16128:20110590,32153275:156022 -h1,16128:21305967,32153275:0,0,0 -k1,16128:21842753,32153275:156022 -k1,16128:22486320,32153275:155979 -k1,16128:25693043,32153275:156022 -k1,16128:26508358,32153275:156023 -k1,16128:28637013,32153275:156022 -k1,16128:29984480,32153275:156022 -k1,16128:31923737,32153275:156022 -k1,16128:32583029,32153275:0 -) -(1,16129:6630773,32994763:25952256,513147,126483 -k1,16128:7821865,32994763:172007 -k1,16128:11201858,32994763:172006 -k1,16128:11905362,32994763:172007 -k1,16128:13361874,32994763:172006 -k1,16128:14552966,32994763:172007 -k1,16128:16809018,32994763:172007 -k1,16128:17512521,32994763:172006 -k1,16128:18750799,32994763:172007 -k1,16128:19888151,32994763:172007 -k1,16128:21511124,32994763:172006 -k1,16128:23752758,32994763:172007 -k1,16128:28023386,32994763:172006 -k1,16128:29887533,32994763:172007 -k1,16128:32583029,32994763:0 -) -(1,16129:6630773,33836251:25952256,505283,7863 -k1,16128:8080387,33836251:258169 -k1,16128:10792879,33836251:258169 -k1,16128:13119365,33836251:258170 -k1,16128:15233514,33836251:258169 -k1,16128:18136716,33836251:258169 -k1,16128:20138798,33836251:258169 -k1,16128:21013006,33836251:258170 -k1,16128:22705103,33836251:258169 -k1,16128:23378056,33836251:258110 -k1,16128:24319110,33836251:258169 -k1,16128:26216990,33836251:258169 -k1,16128:27869111,33836251:258170 -k1,16128:30195596,33836251:258169 -k1,16128:31966991,33836251:258169 -k1,16128:32583029,33836251:0 -) -(1,16129:6630773,34677739:25952256,513147,134348 -k1,16128:8578179,34677739:245436 -k1,16128:11907739,34677739:245436 -k1,16128:12567971,34677739:245389 -k1,16128:14419039,34677739:245436 -k1,16128:15195972,34677739:245436 -k1,16128:18579927,34677739:245436 -k1,16128:20721320,34677739:245436 -k1,16128:22158201,34677739:245436 -k1,16128:25242657,34677739:245436 -k1,16128:26139521,34677739:245436 -k1,16128:28612526,34677739:245436 -k1,16128:31391584,34677739:245436 -k1,16128:32583029,34677739:0 -) -(1,16129:6630773,35519227:25952256,513147,134348 -k1,16128:9863664,35519227:164495 -k1,16128:13563827,35519227:164496 -k1,16128:14675973,35519227:164495 -k1,16128:15196328,35519227:164495 -k1,16128:16749532,35519227:164496 -k1,16128:18513105,35519227:164495 -k1,16128:19719622,35519227:164495 -k1,16128:21380305,35519227:164496 -k1,16128:24368746,35519227:164495 -k1,16128:25184670,35519227:164496 -k1,16128:27576734,35519227:164495 -k1,16128:28357267,35519227:164495 -k1,16128:29614248,35519227:164496 -k1,16128:30726394,35519227:164495 -k1,16128:32583029,35519227:0 -) -(1,16129:6630773,36360715:25952256,513147,134348 -k1,16128:7880847,36360715:230989 -k1,16128:9880653,36360715:230989 -k1,16128:13022096,36360715:230989 -k1,16128:13711182,36360715:230989 -k1,16128:16644220,36360715:230989 -k1,16128:17858249,36360715:230989 -k1,16128:19108324,36360715:230990 -k1,16128:20552384,36360715:230989 -k1,16128:24845950,36360715:230989 -k1,16128:25535036,36360715:230989 -k1,16128:26898487,36360715:230989 -k1,16128:28833412,36360715:230989 -k1,16128:30847636,36360715:230989 -k1,16128:32583029,36360715:0 -) -(1,16129:6630773,37202203:25952256,513147,126483 -k1,16128:7832329,37202203:182471 -k1,16128:11222787,37202203:182471 -k1,16128:12273610,37202203:182471 -k1,16128:13986346,37202203:182470 -k1,16128:14820245,37202203:182471 -k1,16128:15750482,37202203:182471 -k1,16128:18822435,37202203:182471 -k1,16128:19656334,37202203:182471 -k1,16128:21710513,37202203:182471 -k1,16128:22990712,37202203:182471 -k1,16128:24503563,37202203:182470 -k1,16128:28076867,37202203:182471 -k1,16128:29755525,37202203:182471 -k1,16128:31451222,37202203:182471 -k1,16128:32583029,37202203:0 -) -(1,16129:6630773,38043691:25952256,505283,134348 -g1,16128:8715473,38043691 -g1,16128:11449635,38043691 -g1,16128:12300292,38043691 -g1,16128:13518606,38043691 -g1,16128:16925822,38043691 -g1,16128:20035505,38043691 -g1,16128:21103086,38043691 -k1,16129:32583029,38043691:10213787 -g1,16129:32583029,38043691 -) -(1,16130:6630773,40134951:25952256,555811,139132 -(1,16130:6630773,40134951:2450326,534184,12975 -g1,16130:6630773,40134951 -g1,16130:9081099,40134951 -) -g1,16130:12764157,40134951 -k1,16130:32583029,40134951:14629862 -g1,16130:32583029,40134951 -) -(1,16134:6630773,41369655:25952256,513147,134348 -k1,16133:10098829,41369655:294803 -k1,16133:11678137,41369655:294802 -k1,16133:12992025,41369655:294803 -k1,16133:14676191,41369655:294803 -k1,16133:15502490,41369655:294802 -k1,16133:17835463,41369655:294803 -k1,16133:18746304,41369655:294803 -k1,16133:20429814,41369655:294802 -k1,16133:22465909,41369655:294803 -k1,16133:25577449,41369655:294803 -k1,16133:29276846,41369655:294802 -k1,16133:30563209,41369655:294803 -k1,16134:32583029,41369655:0 -) -(1,16134:6630773,42211143:25952256,513147,134348 -k1,16133:8422673,42211143:194132 -k1,16133:11971593,42211143:194132 -k1,16133:14176371,42211143:194133 -k1,16133:15938124,42211143:194132 -k1,16133:17151341,42211143:194132 -k1,16133:18998946,42211143:194132 -k1,16133:22934529,42211143:194133 -k1,16133:26577165,42211143:194132 -k1,16133:30573040,42211143:194132 -k1,16133:32583029,42211143:0 -) -(1,16134:6630773,43052631:25952256,513147,134348 -k1,16133:7207100,43052631:220467 -k1,16133:9300586,43052631:220467 -k1,16133:10724949,43052631:220467 -k1,16133:11604708,43052631:220467 -k1,16133:12181035,43052631:220467 -k1,16133:13790865,43052631:220467 -k1,16133:15887627,43052631:220466 -k1,16133:16790979,43052631:220467 -k1,16133:18996532,43052631:220467 -k1,16133:21008753,43052631:220467 -k1,16133:24255017,43052631:220467 -(1,16133:24255017,43052631:0,452978,115847 -r1,16136:27075266,43052631:2820249,568825,115847 -k1,16133:24255017,43052631:-2820249 -) -(1,16133:24255017,43052631:2820249,452978,115847 -k1,16133:24255017,43052631:3277 -h1,16133:27071989,43052631:0,411205,112570 -) -k1,16133:27295733,43052631:220467 -k1,16133:28707645,43052631:220467 -(1,16133:28707645,43052631:0,452978,115847 -r1,16136:32583029,43052631:3875384,568825,115847 -k1,16133:28707645,43052631:-3875384 -) -(1,16133:28707645,43052631:3875384,452978,115847 -k1,16133:28707645,43052631:3277 -h1,16133:32579752,43052631:0,411205,112570 -) -k1,16133:32583029,43052631:0 -) -(1,16134:6630773,43894119:25952256,513147,134348 -k1,16133:7796200,43894119:297075 -k1,16133:9197556,43894119:297074 -k1,16133:11518383,43894119:297075 -k1,16133:14198346,43894119:297074 -k1,16133:17679160,43894119:297075 -k1,16133:18737763,43894119:297075 -k1,16133:22389625,43894119:297074 -k1,16133:25449043,43894119:297075 -k1,16133:28761428,43894119:297074 -k1,16133:29741388,43894119:297075 -k1,16133:32583029,43894119:0 -) -(1,16134:6630773,44735607:25952256,513147,134348 -k1,16133:8031868,44735607:209650 -k1,16133:11503244,44735607:209649 -k1,16133:12395779,44735607:209650 -k1,16133:15359251,44735607:209649 -k1,16133:15924761,44735607:209650 -k1,16133:20457820,44735607:209649 -k1,16133:25678353,44735607:209650 -k1,16133:26841551,44735607:209649 -k1,16133:28248544,44735607:209650 -k1,16133:29741388,44735607:209649 -k1,16133:32583029,44735607:0 -) -] -(1,16136:32583029,45706769:0,0,0 -g1,16136:32583029,45706769 -) -) -] -(1,16136:6630773,47279633:25952256,0,0 -h1,16136:6630773,47279633:25952256,0,0 -) -] -(1,16136:4262630,4025873:0,0,0 -[1,16136:-473656,4025873:0,0,0 -(1,16136:-473656,-710413:0,0,0 -(1,16136:-473656,-710413:0,0,0 -g1,16136:-473656,-710413 -) -g1,16136:-473656,-710413 -) -] -) -] -!22456 -}276 -Input:2362:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2363:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2364:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2365:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2366:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2367:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2368:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2369:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2370:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2371:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2372:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2373:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2374:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2375:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +] +) +] +!29045 +}260 Input:2376:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2377:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2378:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2379:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1704 -{277 -[1,16203:4262630,47279633:28320399,43253760,0 -(1,16203:4262630,4025873:0,0,0 -[1,16203:-473656,4025873:0,0,0 -(1,16203:-473656,-710413:0,0,0 -(1,16203:-473656,-644877:0,0,0 -k1,16203:-473656,-644877:-65536 +!106 +{261 +[1,16225:4262630,47279633:28320399,43253760,0 +(1,16225:4262630,4025873:0,0,0 +[1,16225:-473656,4025873:0,0,0 +(1,16225:-473656,-710413:0,0,0 +(1,16225:-473656,-644877:0,0,0 +k1,16225:-473656,-644877:-65536 ) -(1,16203:-473656,4736287:0,0,0 -k1,16203:-473656,4736287:5209943 +(1,16225:-473656,4736287:0,0,0 +k1,16225:-473656,4736287:5209943 ) -g1,16203:-473656,-710413 +g1,16225:-473656,-710413 ) ] ) -[1,16203:6630773,47279633:25952256,43253760,0 -[1,16203:6630773,4812305:25952256,786432,0 -(1,16203:6630773,4812305:25952256,505283,134348 -(1,16203:6630773,4812305:25952256,505283,134348 -g1,16203:3078558,4812305 -[1,16203:3078558,4812305:0,0,0 -(1,16203:3078558,2439708:0,1703936,0 -k1,16203:1358238,2439708:-1720320 -(1,15243:1358238,2439708:1720320,1703936,0 -(1,15243:1358238,2439708:1179648,16384,0 -r1,16203:2537886,2439708:1179648,16384,0 +[1,16225:6630773,47279633:25952256,43253760,0 +[1,16225:6630773,4812305:25952256,786432,0 +(1,16225:6630773,4812305:25952256,505283,134348 +(1,16225:6630773,4812305:25952256,505283,134348 +g1,16225:3078558,4812305 +[1,16225:3078558,4812305:0,0,0 +(1,16225:3078558,2439708:0,1703936,0 +k1,16225:1358238,2439708:-1720320 +(1,15456:1358238,2439708:1720320,1703936,0 +(1,15456:1358238,2439708:1179648,16384,0 +r1,16225:2537886,2439708:1179648,16384,0 ) -g1,15243:3062174,2439708 -(1,15243:3062174,2439708:16384,1703936,0 -[1,15243:3062174,2439708:25952256,1703936,0 -(1,15243:3062174,1915420:25952256,1179648,0 -(1,15243:3062174,1915420:16384,1179648,0 -r1,16203:3078558,1915420:16384,1179648,0 +g1,15456:3062174,2439708 +(1,15456:3062174,2439708:16384,1703936,0 +[1,15456:3062174,2439708:25952256,1703936,0 +(1,15456:3062174,1915420:25952256,1179648,0 +(1,15456:3062174,1915420:16384,1179648,0 +r1,16225:3078558,1915420:16384,1179648,0 ) -k1,15243:29014430,1915420:25935872 -g1,15243:29014430,1915420 +k1,15456:29014430,1915420:25935872 +g1,15456:29014430,1915420 ) ] ) ) ) ] -[1,16203:3078558,4812305:0,0,0 -(1,16203:3078558,2439708:0,1703936,0 -g1,16203:29030814,2439708 -g1,16203:36135244,2439708 -(1,15243:36135244,2439708:1720320,1703936,0 -(1,15243:36135244,2439708:16384,1703936,0 -[1,15243:36135244,2439708:25952256,1703936,0 -(1,15243:36135244,1915420:25952256,1179648,0 -(1,15243:36135244,1915420:16384,1179648,0 -r1,16203:36151628,1915420:16384,1179648,0 +[1,16225:3078558,4812305:0,0,0 +(1,16225:3078558,2439708:0,1703936,0 +g1,16225:29030814,2439708 +g1,16225:36135244,2439708 +(1,15456:36135244,2439708:1720320,1703936,0 +(1,15456:36135244,2439708:16384,1703936,0 +[1,15456:36135244,2439708:25952256,1703936,0 +(1,15456:36135244,1915420:25952256,1179648,0 +(1,15456:36135244,1915420:16384,1179648,0 +r1,16225:36151628,1915420:16384,1179648,0 ) -k1,15243:62087500,1915420:25935872 -g1,15243:62087500,1915420 +k1,15456:62087500,1915420:25935872 +g1,15456:62087500,1915420 ) ] ) -g1,15243:36675916,2439708 -(1,15243:36675916,2439708:1179648,16384,0 -r1,16203:37855564,2439708:1179648,16384,0 +g1,15456:36675916,2439708 +(1,15456:36675916,2439708:1179648,16384,0 +r1,16225:37855564,2439708:1179648,16384,0 ) ) -k1,16203:3078556,2439708:-34777008 +k1,16225:3078556,2439708:-34777008 ) ] -[1,16203:3078558,4812305:0,0,0 -(1,16203:3078558,49800853:0,16384,2228224 -k1,16203:1358238,49800853:-1720320 -(1,15243:1358238,49800853:1720320,16384,2228224 -(1,15243:1358238,49800853:1179648,16384,0 -r1,16203:2537886,49800853:1179648,16384,0 +[1,16225:3078558,4812305:0,0,0 +(1,16225:3078558,49800853:0,16384,2228224 +k1,16225:1358238,49800853:-1720320 +(1,15456:1358238,49800853:1720320,16384,2228224 +(1,15456:1358238,49800853:1179648,16384,0 +r1,16225:2537886,49800853:1179648,16384,0 ) -g1,15243:3062174,49800853 -(1,15243:3062174,52029077:16384,1703936,0 -[1,15243:3062174,52029077:25952256,1703936,0 -(1,15243:3062174,51504789:25952256,1179648,0 -(1,15243:3062174,51504789:16384,1179648,0 -r1,16203:3078558,51504789:16384,1179648,0 +g1,15456:3062174,49800853 +(1,15456:3062174,52029077:16384,1703936,0 +[1,15456:3062174,52029077:25952256,1703936,0 +(1,15456:3062174,51504789:25952256,1179648,0 +(1,15456:3062174,51504789:16384,1179648,0 +r1,16225:3078558,51504789:16384,1179648,0 ) -k1,15243:29014430,51504789:25935872 -g1,15243:29014430,51504789 +k1,15456:29014430,51504789:25935872 +g1,15456:29014430,51504789 ) ] ) ) ) ] -[1,16203:3078558,4812305:0,0,0 -(1,16203:3078558,49800853:0,16384,2228224 -g1,16203:29030814,49800853 -g1,16203:36135244,49800853 -(1,15243:36135244,49800853:1720320,16384,2228224 -(1,15243:36135244,52029077:16384,1703936,0 -[1,15243:36135244,52029077:25952256,1703936,0 -(1,15243:36135244,51504789:25952256,1179648,0 -(1,15243:36135244,51504789:16384,1179648,0 -r1,16203:36151628,51504789:16384,1179648,0 +[1,16225:3078558,4812305:0,0,0 +(1,16225:3078558,49800853:0,16384,2228224 +g1,16225:29030814,49800853 +g1,16225:36135244,49800853 +(1,15456:36135244,49800853:1720320,16384,2228224 +(1,15456:36135244,52029077:16384,1703936,0 +[1,15456:36135244,52029077:25952256,1703936,0 +(1,15456:36135244,51504789:25952256,1179648,0 +(1,15456:36135244,51504789:16384,1179648,0 +r1,16225:36151628,51504789:16384,1179648,0 ) -k1,15243:62087500,51504789:25935872 -g1,15243:62087500,51504789 +k1,15456:62087500,51504789:25935872 +g1,15456:62087500,51504789 +) +] +) +g1,15456:36675916,49800853 +(1,15456:36675916,49800853:1179648,16384,0 +r1,16225:37855564,49800853:1179648,16384,0 ) -] -) -g1,15243:36675916,49800853 -(1,15243:36675916,49800853:1179648,16384,0 -r1,16203:37855564,49800853:1179648,16384,0 -) -) -k1,16203:3078556,49800853:-34777008 -) -] -g1,16203:6630773,4812305 -k1,16203:23311652,4812305:15485502 -g1,16203:23960458,4812305 -g1,16203:27572802,4812305 -g1,16203:29306229,4812305 -) -) -] -[1,16203:6630773,45706769:25952256,40108032,0 -(1,16203:6630773,45706769:25952256,40108032,0 -(1,16203:6630773,45706769:0,0,0 -g1,16203:6630773,45706769 -) -[1,16203:6630773,45706769:25952256,40108032,0 -(1,16134:6630773,6254097:25952256,505283,134348 -k1,16133:9936662,6254097:178511 -k1,16133:12969922,6254097:178512 -k1,16133:15639456,6254097:178511 -k1,16133:17304980,6254097:178512 -k1,16133:19218884,6254097:178511 -(1,16133:19218884,6254097:0,452978,115847 -r1,16203:22039133,6254097:2820249,568825,115847 -k1,16133:19218884,6254097:-2820249 -) -(1,16133:19218884,6254097:2820249,452978,115847 -k1,16133:19218884,6254097:3277 -h1,16133:22035856,6254097:0,411205,112570 -) -k1,16133:22217645,6254097:178512 -k1,16133:23079041,6254097:178511 -k1,16133:24125905,6254097:178512 -k1,16133:27241084,6254097:178511 -k1,16133:27775456,6254097:178512 -k1,16133:29237162,6254097:178511 -k1,16133:31227089,6254097:178512 -k1,16134:32583029,6254097:0 -) -(1,16134:6630773,7095585:25952256,513147,134348 -g1,16133:9049051,7095585 -g1,16133:10623881,7095585 -g1,16133:11842195,7095585 -g1,16133:14754615,7095585 -g1,16133:15822196,7095585 -g1,16133:18918772,7095585 -g1,16133:21377027,7095585 -g1,16133:23311649,7095585 -(1,16133:23311649,7095585:0,452978,115847 -r1,16203:27187033,7095585:3875384,568825,115847 -k1,16133:23311649,7095585:-3875384 -) -(1,16133:23311649,7095585:3875384,452978,115847 -k1,16133:23311649,7095585:3277 -h1,16133:27183756,7095585:0,411205,112570 -) -k1,16134:32583029,7095585:5222326 -g1,16134:32583029,7095585 -) -v1,16136:6630773,8461361:0,393216,0 -(1,16154:6630773,18136414:25952256,10068269,0 -g1,16154:6630773,18136414 -g1,16154:6303093,18136414 -r1,16203:6401397,18136414:98304,10068269,0 -g1,16154:6600626,18136414 -g1,16154:6797234,18136414 -[1,16154:6797234,18136414:25785795,10068269,0 -(1,16137:6797234,8823434:25785795,755289,196608 -(1,16136:6797234,8823434:0,755289,196608 -r1,16203:8134168,8823434:1336934,951897,196608 -k1,16136:6797234,8823434:-1336934 -) -(1,16136:6797234,8823434:1336934,755289,196608 -) -k1,16136:8438195,8823434:304027 -k1,16136:8765875,8823434:327680 -k1,16136:11914819,8823434:304026 -k1,16136:13786467,8823434:304027 -k1,16136:15811469,8823434:304027 -k1,16136:16530233,8823434:303921 -k1,16136:19091975,8823434:304027 -k1,16136:20789952,8823434:304026 -(1,16136:20789952,8823434:0,452978,115847 -r1,16203:23610201,8823434:2820249,568825,115847 -k1,16136:20789952,8823434:-2820249 -) -(1,16136:20789952,8823434:2820249,452978,115847 -k1,16136:20789952,8823434:3277 -h1,16136:23606924,8823434:0,411205,112570 -) -k1,16136:24087898,8823434:304027 -(1,16136:24087898,8823434:0,452978,115847 -r1,16203:26908147,8823434:2820249,568825,115847 -k1,16136:24087898,8823434:-2820249 -) -(1,16136:24087898,8823434:2820249,452978,115847 -k1,16136:24087898,8823434:3277 -h1,16136:26904870,8823434:0,411205,112570 -) -k1,16136:27212173,8823434:304026 -k1,16136:28707645,8823434:304027 -(1,16136:28707645,8823434:0,452978,115847 -r1,16203:32583029,8823434:3875384,568825,115847 -k1,16136:28707645,8823434:-3875384 -) -(1,16136:28707645,8823434:3875384,452978,115847 -k1,16136:28707645,8823434:3277 -h1,16136:32579752,8823434:0,411205,112570 -) -k1,16136:32583029,8823434:0 -) -(1,16137:6797234,9664922:25785795,505283,134348 -k1,16136:7884749,9664922:219163 -k1,16136:9208194,9664922:219163 -k1,16136:10519842,9664922:219163 -k1,16136:12749650,9664922:219163 -k1,16136:15174100,9664922:219163 -k1,16136:16079426,9664922:219164 -k1,16136:19874889,9664922:219163 -k1,16136:20710090,9664922:219163 -k1,16136:21948338,9664922:219163 -k1,16136:25684163,9664922:219163 -k1,16136:29334136,9664922:219163 -k1,16136:30572384,9664922:219163 -k1,16136:32583029,9664922:0 -) -(1,16137:6797234,10506410:25785795,505283,134348 -k1,16136:9208657,10506410:206136 -k1,16136:10100954,10506410:206135 -k1,16136:11760679,10506410:206136 -k1,16136:15543115,10506410:206136 -k1,16136:16377085,10506410:206135 -k1,16136:18334998,10506410:206136 -k1,16136:20412187,10506410:206136 -k1,16136:21821564,10506410:206136 -k1,16136:24039654,10506410:206135 -k1,16136:25895987,10506410:206136 -k1,16136:28457487,10506410:206136 -k1,16136:29855067,10506410:206135 -k1,16136:31931601,10506410:206136 -k1,16136:32583029,10506410:0 -) -(1,16137:6797234,11347898:25785795,505283,7863 -g1,16136:10661236,11347898 -k1,16137:32583029,11347898:20251936 -g1,16137:32583029,11347898 -) -v1,16139:6797234,12538364:0,393216,0 -(1,16152:6797234,17415518:25785795,5270370,196608 -g1,16152:6797234,17415518 -g1,16152:6797234,17415518 -g1,16152:6600626,17415518 -(1,16152:6600626,17415518:0,5270370,196608 -r1,16203:32779637,17415518:26179011,5466978,196608 -k1,16152:6600625,17415518:-26179012 -) -(1,16152:6600626,17415518:26179011,5270370,196608 -[1,16152:6797234,17415518:25785795,5073762,0 -(1,16141:6797234,12745982:25785795,404226,82312 -(1,16140:6797234,12745982:0,0,0 -g1,16140:6797234,12745982 -g1,16140:6797234,12745982 -g1,16140:6469554,12745982 -(1,16140:6469554,12745982:0,0,0 -) -g1,16140:6797234,12745982 -) -k1,16141:6797234,12745982:0 -g1,16141:9642546,12745982 -g1,16141:10274838,12745982 -g1,16141:11855568,12745982 -g1,16141:12487860,12745982 -g1,16141:13120152,12745982 -g1,16141:13752444,12745982 -g1,16141:14384736,12745982 -h1,16141:15017027,12745982:0,0,0 -k1,16141:32583029,12745982:17566002 -g1,16141:32583029,12745982 -) -(1,16151:6797234,13412160:25785795,404226,9436 -(1,16143:6797234,13412160:0,0,0 -g1,16143:6797234,13412160 -g1,16143:6797234,13412160 -g1,16143:6469554,13412160 -(1,16143:6469554,13412160:0,0,0 -) -g1,16143:6797234,13412160 -) -g1,16151:7745671,13412160 -g1,16151:8377963,13412160 -g1,16151:9010255,13412160 -g1,16151:11539421,13412160 -g1,16151:12171713,13412160 -g1,16151:12804005,13412160 -h1,16151:13120151,13412160:0,0,0 -k1,16151:32583029,13412160:19462878 -g1,16151:32583029,13412160 -) -(1,16151:6797234,14078338:25785795,404226,6290 -h1,16151:6797234,14078338:0,0,0 -g1,16151:7745671,14078338 -g1,16151:8061817,14078338 -g1,16151:8377963,14078338 -g1,16151:8694109,14078338 -g1,16151:9010255,14078338 -g1,16151:9326401,14078338 -g1,16151:9642547,14078338 -g1,16151:10274839,14078338 -g1,16151:10590985,14078338 -g1,16151:10907131,14078338 -g1,16151:11223277,14078338 -g1,16151:11539423,14078338 -h1,16151:11855569,14078338:0,0,0 -k1,16151:32583029,14078338:20727460 -g1,16151:32583029,14078338 -) -(1,16151:6797234,14744516:25785795,404226,6290 -h1,16151:6797234,14744516:0,0,0 -g1,16151:7745671,14744516 -g1,16151:8061817,14744516 -g1,16151:8377963,14744516 -g1,16151:10274838,14744516 -k1,16151:10274838,14744516:0 -h1,16151:11855567,14744516:0,0,0 -k1,16151:32583029,14744516:20727462 -g1,16151:32583029,14744516 -) -(1,16151:6797234,15410694:25785795,388497,0 -h1,16151:6797234,15410694:0,0,0 -g1,16151:7745671,15410694 -g1,16151:8377963,15410694 -g1,16151:8694109,15410694 -g1,16151:9010255,15410694 -g1,16151:9326401,15410694 -g1,16151:9642547,15410694 -g1,16151:10274839,15410694 -g1,16151:10590985,15410694 -g1,16151:10907131,15410694 -g1,16151:11223277,15410694 -g1,16151:11539423,15410694 -h1,16151:11855569,15410694:0,0,0 -k1,16151:32583029,15410694:20727460 -g1,16151:32583029,15410694 -) -(1,16151:6797234,16076872:25785795,388497,0 -h1,16151:6797234,16076872:0,0,0 -g1,16151:7745671,16076872 -g1,16151:8377963,16076872 -g1,16151:8694109,16076872 -g1,16151:9010255,16076872 -g1,16151:9326401,16076872 -g1,16151:9642547,16076872 -g1,16151:10274839,16076872 -g1,16151:10590985,16076872 -g1,16151:10907131,16076872 -g1,16151:11223277,16076872 -g1,16151:11539423,16076872 -h1,16151:11855569,16076872:0,0,0 -k1,16151:32583029,16076872:20727460 -g1,16151:32583029,16076872 -) -(1,16151:6797234,16743050:25785795,388497,9436 -h1,16151:6797234,16743050:0,0,0 -g1,16151:7745671,16743050 -g1,16151:8377963,16743050 -g1,16151:8694109,16743050 -g1,16151:9010255,16743050 -g1,16151:9326401,16743050 -g1,16151:9642547,16743050 -g1,16151:10274839,16743050 -g1,16151:10590985,16743050 -g1,16151:10907131,16743050 -g1,16151:11223277,16743050 -g1,16151:11539423,16743050 -h1,16151:11855569,16743050:0,0,0 -k1,16151:32583029,16743050:20727460 -g1,16151:32583029,16743050 -) -(1,16151:6797234,17409228:25785795,404226,6290 -h1,16151:6797234,17409228:0,0,0 -g1,16151:7745671,17409228 -g1,16151:8377963,17409228 -g1,16151:9010255,17409228 -g1,16151:9642547,17409228 -g1,16151:11223276,17409228 -h1,16151:12487859,17409228:0,0,0 -k1,16151:32583029,17409228:20095170 -g1,16151:32583029,17409228 -) -] -) -g1,16152:32583029,17415518 -g1,16152:6797234,17415518 -g1,16152:6797234,17415518 -g1,16152:32583029,17415518 -g1,16152:32583029,17415518 -) -h1,16152:6797234,17612126:0,0,0 -] -g1,16154:32583029,18136414 -) -h1,16154:6630773,18136414:0,0,0 -(1,16157:6630773,19502190:25952256,513147,134348 -h1,16156:6630773,19502190:983040,0,0 -k1,16156:11376652,19502190:219963 -k1,16156:12990565,19502190:219962 -k1,16156:14229613,19502190:219963 -k1,16156:17110992,19502190:219962 -k1,16156:18898576,19502190:219963 -k1,16156:20137623,19502190:219962 -k1,16156:23112064,19502190:219963 -k1,16156:25784383,19502190:219962 -k1,16156:26872698,19502190:219963 -k1,16156:28694360,19502190:219962 -k1,16156:30626779,19502190:219963 -k1,16156:32583029,19502190:0 -) -(1,16157:6630773,20343678:25952256,505283,126483 -k1,16156:8096020,20343678:319022 -k1,16156:9066471,20343678:319023 -k1,16156:10799760,20343678:319022 -k1,16156:12137868,20343678:319023 -k1,16156:14467535,20343678:319022 -k1,16156:15402595,20343678:319022 -k1,16156:18232958,20343678:319023 -(1,16156:18232958,20343678:0,414482,115847 -r1,16203:19646359,20343678:1413401,530329,115847 -k1,16156:18232958,20343678:-1413401 -) -(1,16156:18232958,20343678:1413401,414482,115847 -k1,16156:18232958,20343678:3277 -h1,16156:19643082,20343678:0,411205,112570 -) -k1,16156:19965381,20343678:319022 -k1,16156:21551870,20343678:319023 -(1,16156:21551870,20343678:0,452978,115847 -r1,16203:25075542,20343678:3523672,568825,115847 -k1,16156:21551870,20343678:-3523672 -) -(1,16156:21551870,20343678:3523672,452978,115847 -k1,16156:21551870,20343678:3277 -h1,16156:25072265,20343678:0,411205,112570 -) -k1,16156:25394564,20343678:319022 -k1,16156:26905031,20343678:319022 -(1,16156:26905031,20343678:0,452978,115847 -r1,16203:29725280,20343678:2820249,568825,115847 -k1,16156:26905031,20343678:-2820249 -) -(1,16156:26905031,20343678:2820249,452978,115847 -k1,16156:26905031,20343678:3277 -h1,16156:29722003,20343678:0,411205,112570 -) -k1,16156:30217973,20343678:319023 -k1,16156:31490544,20343678:319022 -k1,16157:32583029,20343678:0 -) -(1,16157:6630773,21185166:25952256,513147,134348 -(1,16156:6630773,21185166:0,452978,115847 -r1,16203:9451022,21185166:2820249,568825,115847 -k1,16156:6630773,21185166:-2820249 -) -(1,16156:6630773,21185166:2820249,452978,115847 -k1,16156:6630773,21185166:3277 -h1,16156:9447745,21185166:0,411205,112570 -) -k1,16156:9603389,21185166:152367 -k1,16156:11323377,21185166:152367 -k1,16156:13448377,21185166:152367 -k1,16156:14792189,21185166:152367 -(1,16156:14792189,21185166:0,452978,115847 -r1,16203:19370997,21185166:4578808,568825,115847 -k1,16156:14792189,21185166:-4578808 -) -(1,16156:14792189,21185166:4578808,452978,115847 -k1,16156:14792189,21185166:3277 -h1,16156:19367720,21185166:0,411205,112570 -) -k1,16156:19523364,21185166:152367 -k1,16156:21243353,21185166:152368 -k1,16156:24035509,21185166:152367 -k1,16156:25141425,21185166:152367 -k1,16156:26386277,21185166:152367 -k1,16156:28812743,21185166:152367 -k1,16156:32583029,21185166:0 -) -(1,16157:6630773,22026654:25952256,505283,134348 -k1,16156:8019348,22026654:156498 -k1,16156:9673999,22026654:156498 -(1,16156:9673999,22026654:661914,485622,0 -) -k1,16156:10699504,22026654:156497 -k1,16156:11542164,22026654:156498 -k1,16156:15101291,22026654:156498 -k1,16156:17463076,22026654:156498 -k1,16156:18271002,22026654:156498 -(1,16156:18271002,22026654:0,414482,115847 -r1,16203:20739539,22026654:2468537,530329,115847 -k1,16156:18271002,22026654:-2468537 -) -(1,16156:18271002,22026654:2468537,414482,115847 -k1,16156:18271002,22026654:3277 -h1,16156:20736262,22026654:0,411205,112570 -) -k1,16156:21069706,22026654:156497 -k1,16156:22179753,22026654:156498 -k1,16156:23151519,22026654:156498 -k1,16156:24374288,22026654:156498 -k1,16156:26191468,22026654:156498 -k1,16156:26806062,22026654:156497 -k1,16156:28534113,22026654:156498 -k1,16156:29762780,22026654:156498 -(1,16156:29762780,22026654:0,452978,115847 -r1,16203:32583029,22026654:2820249,568825,115847 -k1,16156:29762780,22026654:-2820249 -) -(1,16156:29762780,22026654:2820249,452978,115847 -k1,16156:29762780,22026654:3277 -h1,16156:32579752,22026654:0,411205,112570 -) -k1,16156:32583029,22026654:0 -) -(1,16157:6630773,22868142:25952256,513147,126483 -k1,16156:7967371,22868142:232316 -k1,16156:8947453,22868142:232316 -k1,16156:10692995,22868142:232316 -k1,16156:12319262,22868142:232316 -k1,16156:15393219,22868142:232316 -k1,16156:16284827,22868142:232316 -k1,16156:17648950,22868142:232316 -(1,16156:17648950,22868142:0,452978,115847 -r1,16203:19062351,22868142:1413401,568825,115847 -k1,16156:17648950,22868142:-1413401 -) -(1,16156:17648950,22868142:1413401,452978,115847 -k1,16156:17648950,22868142:3277 -h1,16156:19059074,22868142:0,411205,112570 -) -k1,16156:19468337,22868142:232316 -k1,16156:20892098,22868142:232316 -k1,16156:24926157,22868142:232316 -k1,16156:26262755,22868142:232316 -k1,16156:28772447,22868142:232316 -k1,16156:31015408,22868142:232316 -k1,16156:32583029,22868142:0 -) -(1,16157:6630773,23709630:25952256,505283,134348 -k1,16156:9037867,23709630:175593 -k1,16156:12100320,23709630:175592 -k1,16156:12745806,23709630:175593 -k1,16156:13452895,23709630:175592 -k1,16156:15095184,23709630:175593 -k1,16156:17900737,23709630:175593 -k1,16156:18727757,23709630:175592 -k1,16156:21314420,23709630:175593 -k1,16156:22299382,23709630:175592 -k1,16156:24485620,23709630:175593 -k1,16156:27415036,23709630:175593 -k1,16156:27946488,23709630:175592 -k1,16156:29057280,23709630:175593 -k1,16156:30089428,23709630:175592 -k1,16156:30881059,23709630:175593 -k1,16156:32583029,23709630:0 -) -(1,16157:6630773,24551118:25952256,505283,134348 -g1,16156:8958611,24551118 -g1,16156:10893233,24551118 -g1,16156:12626660,24551118 -g1,16156:15861517,24551118 -g1,16156:18420042,24551118 -g1,16156:19270699,24551118 -g1,16156:20489013,24551118 -g1,16156:23032465,24551118 -k1,16157:32583029,24551118:8220183 -g1,16157:32583029,24551118 -) -v1,16159:6630773,25741584:0,393216,0 -(1,16176:6630773,33286596:25952256,7938228,196608 -g1,16176:6630773,33286596 -g1,16176:6630773,33286596 -g1,16176:6434165,33286596 -(1,16176:6434165,33286596:0,7938228,196608 -r1,16203:32779637,33286596:26345472,8134836,196608 -k1,16176:6434165,33286596:-26345472 -) -(1,16176:6434165,33286596:26345472,7938228,196608 -[1,16176:6630773,33286596:25952256,7741620,0 -(1,16161:6630773,25949202:25952256,404226,107478 -(1,16160:6630773,25949202:0,0,0 -g1,16160:6630773,25949202 -g1,16160:6630773,25949202 -g1,16160:6303093,25949202 -(1,16160:6303093,25949202:0,0,0 -) -g1,16160:6630773,25949202 -) -g1,16161:10740667,25949202 -k1,16161:10740667,25949202:0 -h1,16161:12005249,25949202:0,0,0 -k1,16161:32583029,25949202:20577780 -g1,16161:32583029,25949202 -) -(1,16162:6630773,26615380:25952256,404226,82312 -h1,16162:6630773,26615380:0,0,0 -g1,16162:6946919,26615380 -g1,16162:7263065,26615380 -k1,16162:7263065,26615380:0 -h1,16162:10108376,26615380:0,0,0 -k1,16162:32583028,26615380:22474652 -g1,16162:32583028,26615380 -) -(1,16163:6630773,27281558:25952256,404226,101187 -h1,16163:6630773,27281558:0,0,0 -g1,16163:6946919,27281558 -g1,16163:7263065,27281558 -g1,16163:7579211,27281558 -g1,16163:7895357,27281558 -g1,16163:8211503,27281558 -g1,16163:8527649,27281558 -g1,16163:8843795,27281558 -g1,16163:9159941,27281558 -g1,16163:9476087,27281558 -g1,16163:12953690,27281558 -g1,16163:13585982,27281558 -g1,16163:19276604,27281558 -k1,16163:19276604,27281558:0 -h1,16163:24018790,27281558:0,0,0 -k1,16163:32583029,27281558:8564239 -g1,16163:32583029,27281558 -) -(1,16164:6630773,27947736:25952256,410518,107478 -h1,16164:6630773,27947736:0,0,0 -g1,16164:6946919,27947736 -g1,16164:7263065,27947736 -g1,16164:7579211,27947736 -g1,16164:7895357,27947736 -g1,16164:8211503,27947736 -g1,16164:8527649,27947736 -g1,16164:8843795,27947736 -g1,16164:9159941,27947736 -g1,16164:9476087,27947736 -g1,16164:12321398,27947736 -g1,16164:12953690,27947736 -g1,16164:18644312,27947736 -g1,16164:23702643,27947736 -g1,16164:24651081,27947736 -h1,16164:28444829,27947736:0,0,0 -k1,16164:32583029,27947736:4138200 -g1,16164:32583029,27947736 -) -(1,16165:6630773,28613914:25952256,404226,107478 -h1,16165:6630773,28613914:0,0,0 -h1,16165:10424521,28613914:0,0,0 -k1,16165:32583029,28613914:22158508 -g1,16165:32583029,28613914 -) -(1,16175:6630773,29280092:25952256,404226,9436 -(1,16167:6630773,29280092:0,0,0 -g1,16167:6630773,29280092 -g1,16167:6630773,29280092 -g1,16167:6303093,29280092 -(1,16167:6303093,29280092:0,0,0 -) -g1,16167:6630773,29280092 -) -g1,16175:7579210,29280092 -g1,16175:8211502,29280092 -g1,16175:8843794,29280092 -g1,16175:11372960,29280092 -g1,16175:12637543,29280092 -g1,16175:13269835,29280092 -h1,16175:13585981,29280092:0,0,0 -k1,16175:32583029,29280092:18997048 -g1,16175:32583029,29280092 -) -(1,16175:6630773,29946270:25952256,404226,101187 -h1,16175:6630773,29946270:0,0,0 -g1,16175:7579210,29946270 -g1,16175:7895356,29946270 -g1,16175:8211502,29946270 -g1,16175:10740668,29946270 -g1,16175:12321397,29946270 -g1,16175:12637543,29946270 -g1,16175:12953689,29946270 -g1,16175:13269835,29946270 -g1,16175:13585981,29946270 -g1,16175:13902127,29946270 -g1,16175:14218273,29946270 -g1,16175:14534419,29946270 -g1,16175:14850565,29946270 -g1,16175:18012022,29946270 -g1,16175:21489625,29946270 -h1,16175:24018790,29946270:0,0,0 -k1,16175:32583029,29946270:8564239 -g1,16175:32583029,29946270 -) -(1,16175:6630773,30612448:25952256,410518,6290 -h1,16175:6630773,30612448:0,0,0 -g1,16175:7579210,30612448 -g1,16175:7895356,30612448 -g1,16175:8211502,30612448 -g1,16175:10108377,30612448 -g1,16175:10424523,30612448 -g1,16175:10740669,30612448 -g1,16175:12637544,30612448 -g1,16175:12953690,30612448 -g1,16175:13269836,30612448 -g1,16175:13585982,30612448 -g1,16175:13902128,30612448 -g1,16175:14218274,30612448 -g1,16175:14534420,30612448 -g1,16175:14850566,30612448 -g1,16175:15166712,30612448 -g1,16175:15482858,30612448 -g1,16175:15799004,30612448 -g1,16175:16115150,30612448 -g1,16175:18012025,30612448 -g1,16175:19908900,30612448 -g1,16175:20225046,30612448 -g1,16175:20541192,30612448 -g1,16175:20857338,30612448 -g1,16175:21173484,30612448 -g1,16175:21489630,30612448 -k1,16175:21489630,30612448:0 -h1,16175:23070359,30612448:0,0,0 -k1,16175:32583029,30612448:9512670 -g1,16175:32583029,30612448 -) -(1,16175:6630773,31278626:25952256,404226,107478 -h1,16175:6630773,31278626:0,0,0 -g1,16175:7579210,31278626 -g1,16175:8211502,31278626 -g1,16175:10424522,31278626 -g1,16175:10740668,31278626 -g1,16175:14850562,31278626 -g1,16175:15166708,31278626 -g1,16175:15482854,31278626 -g1,16175:15799000,31278626 -g1,16175:16115146,31278626 -g1,16175:16431292,31278626 -g1,16175:16747438,31278626 -g1,16175:18012021,31278626 -g1,16175:19908895,31278626 -g1,16175:20225041,31278626 -g1,16175:20541187,31278626 -g1,16175:20857333,31278626 -g1,16175:21173479,31278626 -g1,16175:21489625,31278626 -h1,16175:23386499,31278626:0,0,0 -k1,16175:32583029,31278626:9196530 -g1,16175:32583029,31278626 -) -(1,16175:6630773,31944804:25952256,404226,101187 -h1,16175:6630773,31944804:0,0,0 -g1,16175:7579210,31944804 -g1,16175:8211502,31944804 -g1,16175:10424522,31944804 -g1,16175:10740668,31944804 -g1,16175:14534416,31944804 -g1,16175:14850562,31944804 -g1,16175:15166708,31944804 -g1,16175:15482854,31944804 -g1,16175:15799000,31944804 -g1,16175:16115146,31944804 -g1,16175:16431292,31944804 -g1,16175:16747438,31944804 -g1,16175:18012021,31944804 -g1,16175:19908895,31944804 -g1,16175:20225041,31944804 -g1,16175:20541187,31944804 -g1,16175:20857333,31944804 -g1,16175:21173479,31944804 -g1,16175:21489625,31944804 -h1,16175:23070353,31944804:0,0,0 -k1,16175:32583029,31944804:9512676 -g1,16175:32583029,31944804 -) -(1,16175:6630773,32610982:25952256,404226,107478 -h1,16175:6630773,32610982:0,0,0 -g1,16175:7579210,32610982 -g1,16175:8211502,32610982 -g1,16175:10424522,32610982 -g1,16175:10740668,32610982 -g1,16175:14850562,32610982 -g1,16175:15166708,32610982 -g1,16175:15482854,32610982 -g1,16175:15799000,32610982 -g1,16175:16115146,32610982 -g1,16175:16431292,32610982 -g1,16175:16747438,32610982 -g1,16175:18012021,32610982 -g1,16175:19908895,32610982 -g1,16175:20225041,32610982 -g1,16175:20541187,32610982 -g1,16175:20857333,32610982 -g1,16175:21173479,32610982 -g1,16175:21489625,32610982 -h1,16175:23386499,32610982:0,0,0 -k1,16175:32583029,32610982:9196530 -g1,16175:32583029,32610982 -) -(1,16175:6630773,33277160:25952256,404226,9436 -h1,16175:6630773,33277160:0,0,0 -g1,16175:7579210,33277160 -g1,16175:8211502,33277160 -g1,16175:8843794,33277160 -g1,16175:10108377,33277160 -g1,16175:11689106,33277160 -h1,16175:12953689,33277160:0,0,0 -k1,16175:32583029,33277160:19629340 -g1,16175:32583029,33277160 -) -] -) -g1,16176:32583029,33286596 -g1,16176:6630773,33286596 -g1,16176:6630773,33286596 -g1,16176:32583029,33286596 -g1,16176:32583029,33286596 -) -h1,16176:6630773,33483204:0,0,0 -(1,16180:6630773,34848980:25952256,513147,134348 -h1,16179:6630773,34848980:983040,0,0 -k1,16179:8472788,34848980:231140 -k1,16179:9723014,34848980:231141 -k1,16179:11338274,34848980:231140 -k1,16179:12702533,34848980:231141 -k1,16179:15408312,34848980:231140 -k1,16179:16507804,34848980:231140 -k1,16179:18320984,34848980:231141 -k1,16179:19571209,34848980:231140 -k1,16179:22581076,34848980:231140 -k1,16179:24822862,34848980:231141 -k1,16179:27005664,34848980:231140 -k1,16179:28679252,34848980:231141 -k1,16179:30943974,34848980:231140 -k1,16179:32583029,34848980:0 -) -(1,16180:6630773,35690468:25952256,513147,134348 -k1,16179:7466205,35690468:219394 -k1,16179:10700911,35690468:219395 -k1,16179:11548140,35690468:219394 -k1,16179:14046222,35690468:219395 -k1,16179:15531772,35690468:219394 -k1,16179:16907876,35690468:219394 -k1,16179:19083521,35690468:219395 -k1,16179:22014795,35690468:219394 -k1,16179:23930916,35690468:219394 -k1,16179:27176108,35690468:219395 -k1,16179:28662968,35690468:219394 -k1,16179:29238223,35690468:219395 -k1,16179:30847636,35690468:219394 -k1,16179:32583029,35690468:0 -) -(1,16180:6630773,36531956:25952256,505283,134348 -g1,16179:9576616,36531956 -(1,16179:9576616,36531956:0,435480,115847 -r1,16203:10990017,36531956:1413401,551327,115847 -k1,16179:9576616,36531956:-1413401 -) -(1,16179:9576616,36531956:1413401,435480,115847 -k1,16179:9576616,36531956:3277 -h1,16179:10986740,36531956:0,411205,112570 -) -g1,16179:11189246,36531956 -g1,16179:12620552,36531956 -g1,16179:15098468,36531956 -h1,16179:16069056,36531956:0,0,0 -g1,16179:16268285,36531956 -g1,16179:17276884,36531956 -g1,16179:18974266,36531956 -h1,16179:20169643,36531956:0,0,0 -k1,16180:32583029,36531956:12032622 -g1,16180:32583029,36531956 -) -(1,16182:6630773,37373444:25952256,513147,134348 -h1,16181:6630773,37373444:983040,0,0 -k1,16181:10641694,37373444:238013 -(1,16181:10641694,37373444:0,452978,122846 -r1,16203:13813654,37373444:3171960,575824,122846 -k1,16181:10641694,37373444:-3171960 -) -(1,16181:10641694,37373444:3171960,452978,122846 -k1,16181:10641694,37373444:3277 -h1,16181:13810377,37373444:0,411205,112570 -) -k1,16181:14051667,37373444:238013 -k1,16181:14821177,37373444:238013 -k1,16181:16572416,37373444:238013 -k1,16181:17758080,37373444:238013 -k1,16181:20256431,37373444:238014 -k1,16181:21513529,37373444:238013 -k1,16181:25987134,37373444:238013 -k1,16181:28485484,37373444:238013 -k1,16181:29079357,37373444:238013 -k1,16181:30706733,37373444:238013 -k1,16181:32583029,37373444:0 -) -(1,16182:6630773,38214932:25952256,505283,134348 -k1,16181:7675028,38214932:361370 -k1,16181:9847813,38214932:361370 -k1,16181:12622219,38214932:361370 -k1,16181:14426037,38214932:361371 -k1,16181:15548935,38214932:361370 -k1,16181:17645698,38214932:361370 -(1,16181:17645698,38214932:0,452978,115847 -r1,16203:19762523,38214932:2116825,568825,115847 -k1,16181:17645698,38214932:-2116825 -) -(1,16181:17645698,38214932:2116825,452978,115847 -k1,16181:17645698,38214932:3277 -h1,16181:19759246,38214932:0,411205,112570 -) -k1,16181:20123893,38214932:361370 -k1,16181:21676708,38214932:361370 -(1,16181:21676708,38214932:0,452978,115847 -r1,16203:24145245,38214932:2468537,568825,115847 -k1,16181:21676708,38214932:-2468537 -) -(1,16181:21676708,38214932:2468537,452978,115847 -k1,16181:21676708,38214932:3277 -h1,16181:24141968,38214932:0,411205,112570 -) -k1,16181:24680285,38214932:361370 -k1,16181:26529979,38214932:361371 -k1,16181:27759701,38214932:361370 -k1,16181:29391159,38214932:361370 -k1,16181:30771614,38214932:361370 -k1,16182:32583029,38214932:0 -) -(1,16182:6630773,39056420:25952256,513147,122846 -(1,16181:6630773,39056420:0,452978,122846 -r1,16203:10857869,39056420:4227096,575824,122846 -k1,16181:6630773,39056420:-4227096 -) -(1,16181:6630773,39056420:4227096,452978,122846 -k1,16181:6630773,39056420:3277 -h1,16181:10854592,39056420:0,411205,112570 -) -g1,16181:11057098,39056420 -g1,16181:13110996,39056420 -g1,16181:14119595,39056420 -g1,16181:15337909,39056420 -g1,16181:17547783,39056420 -g1,16181:18363050,39056420 -g1,16181:20217063,39056420 -g1,16181:21075584,39056420 -g1,16181:22063211,39056420 -k1,16182:32583029,39056420:7632957 -g1,16182:32583029,39056420 -) -v1,16184:6630773,40246886:0,393216,0 -(1,16197:6630773,45127186:25952256,5273516,196608 -g1,16197:6630773,45127186 -g1,16197:6630773,45127186 -g1,16197:6434165,45127186 -(1,16197:6434165,45127186:0,5273516,196608 -r1,16203:32779637,45127186:26345472,5470124,196608 -k1,16197:6434165,45127186:-26345472 -) -(1,16197:6434165,45127186:26345472,5273516,196608 -[1,16197:6630773,45127186:25952256,5076908,0 -(1,16186:6630773,40454504:25952256,404226,107478 -(1,16185:6630773,40454504:0,0,0 -g1,16185:6630773,40454504 -g1,16185:6630773,40454504 -g1,16185:6303093,40454504 -(1,16185:6303093,40454504:0,0,0 -) -g1,16185:6630773,40454504 -) -k1,16186:6630773,40454504:0 -g1,16186:13585979,40454504 -g1,16186:16431291,40454504 -g1,16186:20225040,40454504 -h1,16186:23070351,40454504:0,0,0 -k1,16186:32583029,40454504:9512678 -g1,16186:32583029,40454504 -) -(1,16196:6630773,41120682:25952256,404226,9436 -(1,16188:6630773,41120682:0,0,0 -g1,16188:6630773,41120682 -g1,16188:6630773,41120682 -g1,16188:6303093,41120682 -(1,16188:6303093,41120682:0,0,0 -) -g1,16188:6630773,41120682 -) -g1,16196:7579210,41120682 -g1,16196:8211502,41120682 -g1,16196:8843794,41120682 -g1,16196:11372960,41120682 -g1,16196:12637543,41120682 -g1,16196:13269835,41120682 -h1,16196:13585981,41120682:0,0,0 -k1,16196:32583029,41120682:18997048 -g1,16196:32583029,41120682 -) -(1,16196:6630773,41786860:25952256,404226,101187 -h1,16196:6630773,41786860:0,0,0 -g1,16196:7579210,41786860 -g1,16196:7895356,41786860 -g1,16196:8211502,41786860 -g1,16196:10740668,41786860 -g1,16196:12321397,41786860 -g1,16196:12637543,41786860 -g1,16196:12953689,41786860 -g1,16196:13269835,41786860 -g1,16196:13585981,41786860 -g1,16196:13902127,41786860 -g1,16196:14218273,41786860 -g1,16196:14534419,41786860 -g1,16196:14850565,41786860 -g1,16196:18012022,41786860 -g1,16196:21489625,41786860 -h1,16196:24018790,41786860:0,0,0 -k1,16196:32583029,41786860:8564239 -g1,16196:32583029,41786860 -) -(1,16196:6630773,42453038:25952256,410518,6290 -h1,16196:6630773,42453038:0,0,0 -g1,16196:7579210,42453038 -g1,16196:7895356,42453038 -g1,16196:8211502,42453038 -g1,16196:10108377,42453038 -g1,16196:10424523,42453038 -g1,16196:10740669,42453038 -g1,16196:12637544,42453038 -g1,16196:12953690,42453038 -g1,16196:13269836,42453038 -g1,16196:13585982,42453038 -g1,16196:13902128,42453038 -g1,16196:14218274,42453038 -g1,16196:14534420,42453038 -g1,16196:14850566,42453038 -g1,16196:15166712,42453038 -g1,16196:15482858,42453038 -g1,16196:15799004,42453038 -g1,16196:16115150,42453038 -g1,16196:18012025,42453038 -g1,16196:19908900,42453038 -g1,16196:20225046,42453038 -g1,16196:20541192,42453038 -g1,16196:20857338,42453038 -g1,16196:21173484,42453038 -g1,16196:21489630,42453038 -k1,16196:21489630,42453038:0 -h1,16196:23070359,42453038:0,0,0 -k1,16196:32583029,42453038:9512670 -g1,16196:32583029,42453038 -) -(1,16196:6630773,43119216:25952256,404226,107478 -h1,16196:6630773,43119216:0,0,0 -g1,16196:7579210,43119216 -g1,16196:8211502,43119216 -g1,16196:10424522,43119216 -g1,16196:10740668,43119216 -g1,16196:14850562,43119216 -g1,16196:15166708,43119216 -g1,16196:15482854,43119216 -g1,16196:15799000,43119216 -g1,16196:16115146,43119216 -g1,16196:16431292,43119216 -g1,16196:16747438,43119216 -g1,16196:18012021,43119216 -g1,16196:19908895,43119216 -g1,16196:20225041,43119216 -g1,16196:20541187,43119216 -g1,16196:20857333,43119216 -g1,16196:21173479,43119216 -g1,16196:21489625,43119216 -h1,16196:23386499,43119216:0,0,0 -k1,16196:32583029,43119216:9196530 -g1,16196:32583029,43119216 -) -(1,16196:6630773,43785394:25952256,404226,107478 -h1,16196:6630773,43785394:0,0,0 -g1,16196:7579210,43785394 -g1,16196:8211502,43785394 -g1,16196:10424522,43785394 -g1,16196:10740668,43785394 -g1,16196:14850562,43785394 -g1,16196:15166708,43785394 -g1,16196:15482854,43785394 -g1,16196:15799000,43785394 -g1,16196:16115146,43785394 -g1,16196:16431292,43785394 -g1,16196:16747438,43785394 -g1,16196:18012021,43785394 -g1,16196:19908895,43785394 -g1,16196:20225041,43785394 -g1,16196:20541187,43785394 -g1,16196:20857333,43785394 -g1,16196:21173479,43785394 -g1,16196:21489625,43785394 -h1,16196:23386499,43785394:0,0,0 -k1,16196:32583029,43785394:9196530 -g1,16196:32583029,43785394 -) -(1,16196:6630773,44451572:25952256,404226,107478 -h1,16196:6630773,44451572:0,0,0 -g1,16196:7579210,44451572 -g1,16196:8211502,44451572 -g1,16196:10424522,44451572 -g1,16196:10740668,44451572 -g1,16196:14850562,44451572 -g1,16196:15166708,44451572 -g1,16196:15482854,44451572 -g1,16196:15799000,44451572 -g1,16196:16115146,44451572 -g1,16196:16431292,44451572 -g1,16196:16747438,44451572 -g1,16196:18012021,44451572 -g1,16196:19908895,44451572 -g1,16196:20225041,44451572 -g1,16196:20541187,44451572 -g1,16196:20857333,44451572 -g1,16196:21173479,44451572 -g1,16196:21489625,44451572 -h1,16196:23386499,44451572:0,0,0 -k1,16196:32583029,44451572:9196530 -g1,16196:32583029,44451572 -) -(1,16196:6630773,45117750:25952256,404226,9436 -h1,16196:6630773,45117750:0,0,0 -g1,16196:7579210,45117750 -g1,16196:8211502,45117750 -g1,16196:8843794,45117750 -g1,16196:10108377,45117750 -g1,16196:11689106,45117750 -h1,16196:12953689,45117750:0,0,0 -k1,16196:32583029,45117750:19629340 -g1,16196:32583029,45117750 -) -] -) -g1,16197:32583029,45127186 -g1,16197:6630773,45127186 -g1,16197:6630773,45127186 -g1,16197:32583029,45127186 -g1,16197:32583029,45127186 -) -h1,16197:6630773,45323794:0,0,0 -] -(1,16203:32583029,45706769:0,0,0 -g1,16203:32583029,45706769 -) -) -] -(1,16203:6630773,47279633:25952256,0,0 -h1,16203:6630773,47279633:25952256,0,0 -) -] -(1,16203:4262630,4025873:0,0,0 -[1,16203:-473656,4025873:0,0,0 -(1,16203:-473656,-710413:0,0,0 -(1,16203:-473656,-710413:0,0,0 -g1,16203:-473656,-710413 -) -g1,16203:-473656,-710413 -) -] -) -] -!33275 -}277 +) +k1,16225:3078556,49800853:-34777008 +) +] +g1,16225:6630773,4812305 +k1,16225:23311652,4812305:15485502 +g1,16225:23960458,4812305 +g1,16225:27572802,4812305 +g1,16225:29306229,4812305 +) +) +] +[1,16225:6630773,45706769:25952256,40108032,0 +(1,16225:6630773,45706769:25952256,40108032,0 +(1,16225:6630773,45706769:0,0,0 +g1,16225:6630773,45706769 +) +[1,16225:6630773,45706769:25952256,40108032,0 +v1,16209:6630773,6254097:0,393216,0 +(1,16209:6630773,14525069:25952256,8664188,0 +g1,16209:6630773,14525069 +g1,16209:6237557,14525069 +r1,16225:6368629,14525069:131072,8664188,0 +g1,16209:6567858,14525069 +g1,16209:6764466,14525069 +[1,16209:6764466,14525069:25818563,8664188,0 +(1,16191:6764466,6374028:25818563,513147,134348 +h1,16190:6764466,6374028:983040,0,0 +k1,16190:10837134,6374028:154926 +k1,16190:12011146,6374028:154927 +k1,16190:13556091,6374028:154926 +k1,16190:16457632,6374028:154927 +(1,16190:16664726,6374028:0,435480,115847 +r1,16225:17726415,6374028:1061689,551327,115847 +k1,16190:16664726,6374028:-1061689 +) +(1,16190:16664726,6374028:1061689,435480,115847 +k1,16190:16664726,6374028:3277 +h1,16190:17723138,6374028:0,411205,112570 +) +k1,16190:18088435,6374028:154926 +k1,16190:19810983,6374028:154927 +k1,16190:22546061,6374028:154926 +k1,16190:25646175,6374028:154927 +k1,16190:28123042,6374028:154926 +k1,16190:29469414,6374028:154927 +k1,16191:32583029,6374028:0 +) +(1,16191:6764466,7239108:25818563,513147,134348 +g1,16190:8298008,7239108 +g1,16190:9854488,7239108 +g1,16190:10705145,7239108 +g1,16190:12911086,7239108 +g1,16190:14129400,7239108 +g1,16190:16008972,7239108 +g1,16190:16859629,7239108 +g1,16190:18077943,7239108 +k1,16191:32583029,7239108:12593401 +g1,16191:32583029,7239108 +) +v1,16193:6764466,7923963:0,393216,0 +(1,16205:6764466,12471818:25818563,4941071,196608 +g1,16205:6764466,12471818 +g1,16205:6764466,12471818 +g1,16205:6567858,12471818 +(1,16205:6567858,12471818:0,4941071,196608 +r1,16225:32779637,12471818:26211779,5137679,196608 +k1,16205:6567857,12471818:-26211780 +) +(1,16205:6567858,12471818:26211779,4941071,196608 +[1,16205:6764466,12471818:25818563,4744463,0 +(1,16195:6764466,8151794:25818563,424439,112852 +(1,16194:6764466,8151794:0,0,0 +g1,16194:6764466,8151794 +g1,16194:6764466,8151794 +g1,16194:6436786,8151794 +(1,16194:6436786,8151794:0,0,0 +) +g1,16194:6764466,8151794 +) +g1,16195:9420098,8151794 +g1,16195:10747914,8151794 +g1,16195:13735500,8151794 +g1,16195:14399408,8151794 +g1,16195:18714809,8151794 +g1,16195:20706533,8151794 +g1,16195:21370441,8151794 +h1,16195:22034349,8151794:0,0,0 +k1,16195:32583029,8151794:10548680 +g1,16195:32583029,8151794 +) +(1,16196:6764466,8836649:25818563,431045,79822 +h1,16196:6764466,8836649:0,0,0 +g1,16196:7760328,8836649 +g1,16196:15063315,8836649 +h1,16196:15395269,8836649:0,0,0 +k1,16196:32583029,8836649:17187760 +g1,16196:32583029,8836649 +) +(1,16197:6764466,9521504:25818563,424439,106246 +h1,16197:6764466,9521504:0,0,0 +g1,16197:7096420,9521504 +g1,16197:7428374,9521504 +g1,16197:13735498,9521504 +h1,16197:17055037,9521504:0,0,0 +k1,16197:32583029,9521504:15527992 +g1,16197:32583029,9521504 +) +(1,16198:6764466,10206359:25818563,424439,79822 +h1,16198:6764466,10206359:0,0,0 +g1,16198:7428374,10206359 +g1,16198:9088144,10206359 +h1,16198:9420098,10206359:0,0,0 +k1,16198:32583030,10206359:23162932 +g1,16198:32583030,10206359 +) +(1,16199:6764466,10891214:25818563,431045,106246 +h1,16199:6764466,10891214:0,0,0 +g1,16199:7096420,10891214 +g1,16199:7428374,10891214 +g1,16199:13735499,10891214 +g1,16199:15063315,10891214 +h1,16199:17718947,10891214:0,0,0 +k1,16199:32583029,10891214:14864082 +g1,16199:32583029,10891214 +) +(1,16200:6764466,11576069:25818563,424439,79822 +h1,16200:6764466,11576069:0,0,0 +h1,16200:7096420,11576069:0,0,0 +k1,16200:32583028,11576069:25486608 +g1,16200:32583028,11576069 +) +(1,16204:6764466,12391996:25818563,431045,79822 +(1,16202:6764466,12391996:0,0,0 +g1,16202:6764466,12391996 +g1,16202:6764466,12391996 +g1,16202:6436786,12391996 +(1,16202:6436786,12391996:0,0,0 +) +g1,16202:6764466,12391996 +) +g1,16204:7760328,12391996 +g1,16204:9088144,12391996 +g1,16204:13403545,12391996 +g1,16204:14731361,12391996 +h1,16204:17055039,12391996:0,0,0 +k1,16204:32583029,12391996:15527990 +g1,16204:32583029,12391996 +) +] +) +g1,16205:32583029,12471818 +g1,16205:6764466,12471818 +g1,16205:6764466,12471818 +g1,16205:32583029,12471818 +g1,16205:32583029,12471818 +) +h1,16205:6764466,12668426:0,0,0 +(1,16209:6764466,13533506:25818563,505283,134348 +h1,16208:6764466,13533506:983040,0,0 +k1,16208:10872263,13533506:161874 +k1,16208:12688920,13533506:161873 +k1,16208:13842354,13533506:161874 +k1,16208:16291435,13533506:161874 +k1,16208:20170510,13533506:161873 +k1,16208:20983812,13533506:161874 +k1,16208:22124139,13533506:161874 +k1,16208:23305098,13533506:161874 +k1,16208:27861160,13533506:161873 +k1,16208:29600486,13533506:161874 +k1,16208:32583029,13533506:0 +) +(1,16209:6764466,14398586:25818563,505283,126483 +g1,16208:10632400,14398586 +g1,16208:12587339,14398586 +g1,16208:15961132,14398586 +g1,16208:16691858,14398586 +g1,16208:17957358,14398586 +g1,16208:19551193,14398586 +g1,16208:20401850,14398586 +g1,16208:21930149,14398586 +k1,16209:32583029,14398586:9085259 +g1,16209:32583029,14398586 +) +] +g1,16209:32583029,14525069 +) +h1,16209:6630773,14525069:0,0,0 +(1,16214:6630773,17356229:25952256,32768,229376 +(1,16214:6630773,17356229:0,32768,229376 +(1,16214:6630773,17356229:5505024,32768,229376 +r1,16225:12135797,17356229:5505024,262144,229376 +) +k1,16214:6630773,17356229:-5505024 +) +(1,16214:6630773,17356229:25952256,32768,0 +r1,16225:32583029,17356229:25952256,32768,0 +) +) +(1,16214:6630773,18988081:25952256,606339,161218 +(1,16214:6630773,18988081:1974731,582746,14155 +g1,16214:6630773,18988081 +g1,16214:8605504,18988081 +) +g1,16214:12976493,18988081 +g1,16214:14989759,18988081 +k1,16214:32583029,18988081:15265432 +g1,16214:32583029,18988081 +) +(1,16218:6630773,20246377:25952256,513147,134348 +k1,16217:8280878,20246377:178166 +k1,16217:10497213,20246377:178165 +k1,16217:11291417,20246377:178166 +k1,16217:14394455,20246377:178166 +k1,16217:17083304,20246377:178165 +k1,16217:18365752,20246377:178166 +k1,16217:19291683,20246377:178165 +k1,16217:22315422,20246377:178166 +k1,16217:23109626,20246377:178166 +k1,16217:26050134,20246377:178165 +k1,16217:27970247,20246377:178166 +k1,16217:28776248,20246377:178166 +k1,16217:30388341,20246377:178165 +k1,16217:30981329,20246377:178145 +k1,16217:32583029,20246377:0 +) +(1,16218:6630773,21111457:25952256,513147,134348 +k1,16217:8829564,21111457:211084 +k1,16217:10975271,21111457:211084 +k1,16217:14212153,21111457:211085 +k1,16217:15614682,21111457:211084 +k1,16217:16844851,21111457:211084 +(1,16217:16844851,21111457:0,452978,115847 +r1,16225:18961676,21111457:2116825,568825,115847 +k1,16217:16844851,21111457:-2116825 +) +(1,16217:16844851,21111457:2116825,452978,115847 +k1,16217:16844851,21111457:3277 +h1,16217:18958399,21111457:0,411205,112570 +) +k1,16217:19172760,21111457:211084 +k1,16217:21838167,21111457:211084 +k1,16217:23784644,21111457:211084 +k1,16217:26397624,21111457:211085 +k1,16217:29482462,21111457:211084 +k1,16217:30884991,21111457:211084 +k1,16217:32583029,21111457:0 +) +(1,16218:6630773,21976537:25952256,513147,134348 +k1,16217:9854863,21976537:185841 +k1,16217:11430068,21976537:185842 +k1,16217:13996177,21976537:185841 +k1,16217:16252956,21976537:185841 +k1,16217:17828161,21976537:185842 +k1,16217:18665430,21976537:185841 +k1,16217:19599037,21976537:185841 +k1,16217:22630452,21976537:185842 +k1,16217:23432331,21976537:185841 +k1,16217:25307036,21976537:185842 +k1,16217:27360653,21976537:185841 +k1,16217:28271322,21976537:185841 +k1,16217:29741670,21976537:185842 +k1,16217:31379133,21976537:185841 +k1,16217:32583029,21976537:0 +) +(1,16218:6630773,22841617:25952256,513147,134348 +k1,16217:7509829,22841617:263018 +k1,16217:8128707,22841617:263018 +k1,16217:9781088,22841617:263018 +k1,16217:11920401,22841617:263017 +k1,16217:16147036,22841617:263018 +k1,16217:17061482,22841617:263018 +k1,16217:17680360,22841617:263018 +k1,16217:19816397,22841617:263018 +k1,16217:23820865,22841617:263018 +k1,16217:24973861,22841617:263017 +k1,16217:29787044,22841617:263018 +k1,16217:31773659,22841617:263018 +k1,16217:32583029,22841617:0 +) +(1,16218:6630773,23706697:25952256,513147,134348 +k1,16217:7217856,23706697:231223 +k1,16217:9932894,23706697:231223 +k1,16217:11639332,23706697:231223 +k1,16217:14253444,23706697:231223 +k1,16217:18448284,23706697:231223 +k1,16217:19330934,23706697:231222 +k1,16217:19918017,23706697:231223 +k1,16217:22911583,23706697:231223 +k1,16217:26267563,23706697:231223 +k1,16217:28947866,23706697:231223 +k1,16217:29861974,23706697:231223 +k1,16217:32583029,23706697:0 +) +(1,16218:6630773,24571777:25952256,513147,134348 +k1,16217:10677204,24571777:239445 +k1,16217:12062874,24571777:239445 +k1,16217:13321403,24571777:239444 +k1,16217:14986256,24571777:239445 +k1,16217:15884993,24571777:239445 +k1,16217:20641179,24571777:239445 +k1,16217:21563509,24571777:239445 +k1,16217:22158814,24571777:239445 +k1,16217:24292248,24571777:239444 +k1,16217:27843883,24571777:239445 +k1,16217:28439188,24571777:239445 +k1,16217:32583029,24571777:0 +) +(1,16218:6630773,25436857:25952256,513147,134348 +k1,16217:7538625,25436857:248560 +k1,16217:10427631,25436857:248560 +k1,16217:13793084,25436857:248561 +k1,16217:14693072,25436857:248560 +k1,16217:18416351,25436857:248560 +k1,16217:19347796,25436857:248560 +k1,16217:22202067,25436857:248560 +k1,16217:23109919,25436857:248560 +k1,16217:24377565,25436857:248561 +k1,16217:28796181,25436857:248560 +k1,16217:31133373,25436857:248560 +k1,16217:32583029,25436857:0 +) +(1,16218:6630773,26301937:25952256,505283,134348 +k1,16217:9281251,26301937:213194 +k1,16217:12837435,26301937:213193 +k1,16217:16175386,26301937:213194 +k1,16217:17197950,26301937:213194 +k1,16217:18430228,26301937:213193 +k1,16217:20296895,26301937:213194 +k1,16217:22820233,26301937:213194 +k1,16217:23646189,26301937:213194 +k1,16217:24630085,26301937:213193 +k1,16217:26876861,26301937:213194 +k1,16217:28778262,26301937:213194 +k1,16217:29607493,26301937:213193 +k1,16217:31246095,26301937:213194 +k1,16217:32583029,26301937:0 +) +(1,16218:6630773,27167017:25952256,513147,134348 +k1,16217:8181729,27167017:265140 +k1,16217:9194635,27167017:265140 +k1,16217:11497945,27167017:265140 +k1,16217:12379122,27167017:265139 +k1,16217:13000122,27167017:265140 +k1,16217:15821821,27167017:265140 +k1,16217:17558900,27167017:265140 +k1,16217:20669613,27167017:265140 +k1,16217:21550791,27167017:265140 +k1,16217:23180391,27167017:265140 +k1,16217:24989559,27167017:265139 +k1,16217:26355704,27167017:265140 +k1,16217:28130794,27167017:265140 +k1,16217:31896867,27167017:265140 +k1,16217:32583029,27167017:0 +) +(1,16218:6630773,28032097:25952256,513147,134348 +k1,16217:8697404,28032097:226380 +k1,16217:10115229,28032097:226380 +k1,16217:11544850,28032097:226380 +k1,16217:12302727,28032097:226380 +k1,16217:15305212,28032097:226380 +k1,16217:16147630,28032097:226380 +k1,16217:17393095,28032097:226380 +k1,16217:19357490,28032097:226380 +k1,16217:21278631,28032097:226380 +k1,16217:22156439,28032097:226380 +k1,16217:23401904,28032097:226380 +k1,16217:26836271,28032097:226380 +k1,16217:28613233,28032097:226380 +k1,16217:29498905,28032097:226380 +k1,16217:32583029,28032097:0 +) +(1,16218:6630773,28897177:25952256,513147,134348 +k1,16217:9835441,28897177:269966 +k1,16217:11308647,28897177:269965 +k1,16217:15438028,28897177:269966 +k1,16217:19771880,28897177:269965 +k1,16217:20701138,28897177:269966 +k1,16217:22360466,28897177:269965 +k1,16217:23731437,28897177:269966 +k1,16217:25511352,28897177:269965 +k1,16217:26800403,28897177:269966 +k1,16217:27485140,28897177:269894 +k1,16217:28946551,28897177:269966 +k1,16217:29569684,28897177:269894 +k1,16217:32583029,28897177:0 +) +(1,16218:6630773,29762257:25952256,513147,126483 +k1,16217:9027425,29762257:216269 +k1,16217:10870952,29762257:216268 +k1,16217:12595860,29762257:216269 +k1,16217:15970963,29762257:216268 +k1,16217:17659171,29762257:216269 +k1,16217:18491478,29762257:216269 +k1,16217:20593217,29762257:216268 +k1,16217:23522677,29762257:216269 +k1,16217:27372261,29762257:216268 +k1,16217:28239958,29762257:216269 +k1,16217:32583029,29762257:0 +) +(1,16218:6630773,30627337:25952256,513147,134348 +g1,16217:8883900,30627337 +g1,16217:9614626,30627337 +g1,16217:12903878,30627337 +g1,16217:13789269,30627337 +g1,16217:15726513,30627337 +g1,16217:16541780,30627337 +g1,16217:17096869,30627337 +g1,16217:18750997,30627337 +k1,16218:32583029,30627337:12115644 +g1,16218:32583029,30627337 +) +(1,16220:6630773,31492417:25952256,513147,134348 +h1,16219:6630773,31492417:983040,0,0 +k1,16219:10719624,31492417:142928 +k1,16219:14031873,31492417:142928 +k1,16219:15564164,31492417:142928 +k1,16219:16238589,31492417:142928 +k1,16219:17572962,31492417:142928 +k1,16219:18816894,31492417:142927 +k1,16219:20469772,31492417:142928 +k1,16219:21631785,31492417:142928 +k1,16219:23376413,31492417:142928 +k1,16219:26862988,31492417:142928 +k1,16219:28519142,31492417:142928 +k1,16219:32583029,31492417:0 +) +(1,16220:6630773,32357497:25952256,513147,126483 +k1,16219:7443419,32357497:153354 +k1,16219:8986136,32357497:153354 +k1,16219:9755528,32357497:153354 +k1,16219:10497396,32357497:153355 +k1,16219:14906658,32357497:153354 +k1,16219:15719304,32357497:153354 +k1,16219:17366224,32357497:153354 +k1,16219:18908941,32357497:153354 +k1,16219:20163300,32357497:153354 +k1,16219:21382925,32357497:153354 +k1,16219:23665544,32357497:153354 +k1,16219:25328849,32357497:153355 +k1,16219:28112163,32357497:153354 +k1,16219:29659468,32357497:153354 +k1,16219:32168186,32357497:153354 +k1,16220:32583029,32357497:0 +) +(1,16220:6630773,33222577:25952256,513147,134348 +k1,16219:10514436,33222577:193331 +k1,16219:11904454,33222577:193331 +k1,16219:15008240,33222577:193332 +k1,16219:15817609,33222577:193331 +k1,16219:17030025,33222577:193331 +k1,16219:20431343,33222577:193331 +k1,16219:23054749,33222577:193331 +k1,16219:27154682,33222577:193332 +k1,16219:30373810,33222577:193331 +k1,16219:31218569,33222577:193331 +k1,16220:32583029,33222577:0 +) +(1,16220:6630773,34087657:25952256,513147,134348 +k1,16219:8222260,34087657:138554 +k1,16219:10499909,34087657:138554 +k1,16219:11297755,34087657:138554 +k1,16219:12825672,34087657:138554 +k1,16219:17393804,34087657:138554 +k1,16219:19417829,34087657:138554 +k1,16219:20172421,34087657:138554 +k1,16219:22003115,34087657:138554 +k1,16219:24012722,34087657:138554 +k1,16219:25800162,34087657:138554 +k1,16219:26554754,34087657:138554 +k1,16219:29532983,34087657:138554 +k1,16219:32583029,34087657:0 +) +(1,16220:6630773,34952737:25952256,513147,126483 +k1,16219:10925292,34952737:218835 +k1,16219:14325246,34952737:218836 +k1,16219:15195509,34952737:218835 +k1,16219:16848273,34952737:218836 +k1,16219:19206859,34952737:218835 +k1,16219:19883792,34952737:218836 +k1,16219:20634124,34952737:218835 +k1,16219:23482919,34952737:218835 +k1,16219:24353183,34952737:218836 +k1,16219:26068205,34952737:218835 +k1,16219:27306126,34952737:218836 +k1,16219:29178434,34952737:218835 +k1,16219:32583029,34952737:0 +) +(1,16220:6630773,35817817:25952256,505283,134348 +g1,16219:8565395,35817817 +g1,16219:10140225,35817817 +g1,16219:11773382,35817817 +g1,16219:12561124,35817817 +g1,16219:13832522,35817817 +g1,16219:15234992,35817817 +g1,16219:16771155,35817817 +g1,16219:19262178,35817817 +g1,16219:21111604,35817817 +g1,16219:23520707,35817817 +g1,16219:25370133,35817817 +g1,16219:28034826,35817817 +k1,16220:32583029,35817817:857871 +g1,16220:32583029,35817817 +) +(1,16222:6630773,36682897:25952256,513147,126483 +h1,16221:6630773,36682897:983040,0,0 +k1,16221:11228426,36682897:218537 +k1,16221:12836326,36682897:218537 +k1,16221:13586360,36682897:218537 +k1,16221:15756560,36682897:218538 +k1,16221:19280078,36682897:218537 +k1,16221:21536785,36682897:218537 +k1,16221:22371360,36682897:218537 +k1,16221:24080186,36682897:218537 +k1,16221:26479106,36682897:218537 +k1,16221:27380529,36682897:218538 +k1,16221:29065762,36682897:218537 +k1,16221:30060901,36682897:218537 +k1,16221:31422386,36682897:218537 +k1,16222:32583029,36682897:0 +) +(1,16222:6630773,37547977:25952256,513147,134348 +k1,16221:8517472,37547977:149995 +k1,16221:9392296,37547977:149996 +k1,16221:10158329,37547977:149995 +k1,16221:12060102,37547977:149996 +k1,16221:13907479,37547977:149995 +k1,16221:15076560,37547977:149996 +k1,16221:16532688,37547977:149995 +k1,16221:18018308,37547977:149996 +k1,16221:18784341,37547977:149995 +k1,16221:20323700,37547977:149996 +k1,16221:23028288,37547977:149995 +k1,16221:23709781,37547977:149996 +k1,16221:24511204,37547977:149995 +k1,16221:27165986,37547977:149996 +k1,16221:28335066,37547977:149995 +k1,16221:30048096,37547977:149996 +k1,16221:32583029,37547977:0 +) +(1,16222:6630773,38413057:25952256,513147,134348 +k1,16221:8584249,38413057:148615 +k1,16221:11493241,38413057:148616 +k1,16221:14667653,38413057:148615 +k1,16221:15763920,38413057:148616 +k1,16221:19060229,38413057:148615 +k1,16221:20598208,38413057:148616 +k1,16221:22314444,38413057:148615 +k1,16221:23953349,38413057:148616 +k1,16221:24753392,38413057:148615 +k1,16221:26290716,38413057:148616 +k1,16221:28006952,38413057:148615 +k1,16221:29347012,38413057:148615 +k1,16221:30709355,38413057:148616 +k1,16222:32583029,38413057:0 +k1,16222:32583029,38413057:0 +) +v1,16224:6630773,39278137:0,393216,0 +(1,16225:6630773,45706769:25952256,6821848,0 +g1,16225:6630773,45706769 +g1,16225:6237557,45706769 +r1,16225:6368629,45706769:131072,6821848,0 +g1,16225:6567858,45706769 +g1,16225:6764466,45706769 +[1,16225:6764466,45706769:25818563,6821848,0 +(1,16225:6764466,39639314:25818563,754393,260573 +(1,16224:6764466,39639314:0,754393,260573 +r1,16225:8010564,39639314:1246098,1014966,260573 +k1,16224:6764466,39639314:-1246098 +) +(1,16224:6764466,39639314:1246098,754393,260573 +) +k1,16224:8269799,39639314:259235 +k1,16224:8597479,39639314:327680 +k1,16224:11391647,39639314:259235 +k1,16224:13455742,39639314:259234 +k1,16224:16434066,39639314:259235 +k1,16224:19968134,39639314:259235 +k1,16224:22112840,39639314:259235 +k1,16224:22988113,39639314:259235 +k1,16224:24622292,39639314:259234 +k1,16224:27600616,39639314:259235 +k1,16224:30893511,39639314:259235 +k1,16224:32583029,39639314:0 +) +(1,16225:6764466,40504394:25818563,513147,126483 +k1,16224:10750604,40504394:192914 +k1,16224:11962603,40504394:192914 +k1,16224:15181315,40504394:192915 +k1,16224:19575742,40504394:192914 +k1,16224:20384694,40504394:192914 +k1,16224:22382469,40504394:192914 +k1,16224:24050598,40504394:192914 +k1,16224:25753462,40504394:192914 +k1,16224:28665466,40504394:192915 +k1,16224:29619908,40504394:192914 +k1,16224:31096017,40504394:192914 +k1,16224:32583029,40504394:0 +) +(1,16225:6764466,41369474:25818563,513147,134348 +k1,16224:8419054,41369474:260637 +k1,16224:11442033,41369474:260636 +k1,16224:13786715,41369474:260637 +k1,16224:15238796,41369474:260636 +k1,16224:17411118,41369474:260637 +k1,16224:18595157,41369474:260637 +k1,16224:20591186,41369474:260636 +k1,16224:22548550,41369474:260637 +k1,16224:25834983,41369474:260636 +k1,16224:28926775,41369474:260637 +k1,16224:32583029,41369474:0 +) +(1,16225:6764466,42234554:25818563,513147,126483 +k1,16224:8055853,42234554:190382 +k1,16224:9633632,42234554:190382 +k1,16224:10179874,42234554:190382 +k1,16224:12443160,42234554:190382 +k1,16224:13292834,42234554:190382 +k1,16224:15714717,42234554:190382 +k1,16224:17588064,42234554:190382 +k1,16224:19522360,42234554:190383 +k1,16224:22821770,42234554:190382 +k1,16224:23663580,42234554:190382 +k1,16224:25725670,42234554:190382 +k1,16224:26598937,42234554:190382 +k1,16224:29039825,42234554:190382 +k1,16224:31391584,42234554:190382 +k1,16224:32583029,42234554:0 +) +(1,16225:6764466,43099634:25818563,513147,126483 +k1,16224:9219620,43099634:207924 +k1,16224:10757925,43099634:207924 +k1,16224:11617276,43099634:207923 +k1,16224:13452459,43099634:207924 +k1,16224:14726654,43099634:207924 +k1,16224:16631305,43099634:207924 +k1,16224:20417495,43099634:207924 +k1,16224:21103175,43099634:207923 +k1,16224:22467809,43099634:207924 +k1,16224:23207230,43099634:207924 +k1,16224:23771014,43099634:207924 +k1,16224:25368301,43099634:207924 +k1,16224:27856222,43099634:207923 +k1,16224:29255591,43099634:207924 +k1,16224:30886302,43099634:207924 +k1,16224:32583029,43099634:0 +) +(1,16225:6764466,43964714:25818563,513147,126483 +k1,16224:9926086,43964714:135823 +k1,16224:11763224,43964714:135823 +k1,16224:13210423,43964714:135824 +k1,16224:14780174,43964714:135823 +k1,16224:15935082,43964714:135823 +k1,16224:17386213,43964714:135823 +k1,16224:20220154,43964714:135824 +k1,16224:20887474,43964714:135823 +k1,16224:24328278,43964714:135823 +k1,16224:27265110,43964714:135823 +k1,16224:28083819,43964714:135824 +k1,16224:29686338,43964714:135823 +k1,16224:32583029,43964714:0 +) +(1,16225:6764466,44829794:25818563,513147,134348 +k1,16224:8619312,44829794:160085 +k1,16224:9798482,44829794:160085 +k1,16224:14730900,44829794:160086 +k1,16224:17825687,44829794:160085 +k1,16224:18451733,44829794:160085 +k1,16224:19297980,44829794:160085 +k1,16224:19989562,44829794:160085 +k1,16224:21168733,44829794:160086 +k1,16224:22695899,44829794:160085 +k1,16224:24249935,44829794:160085 +k1,16224:26161797,44829794:160085 +k1,16224:28033027,44829794:160085 +k1,16224:28860268,44829794:160085 +k1,16224:29435158,44829794:160047 +k1,16224:30211281,44829794:160085 +k1,16224:32583029,44829794:0 +) +(1,16225:6764466,45694874:25818563,513147,134348 +k1,16224:8902531,45694874:230312 +k1,16224:9784272,45694874:230313 +k1,16224:11964935,45694874:230312 +k1,16224:13398488,45694874:230312 +k1,16224:15210839,45694874:230312 +k1,16224:15972649,45694874:230313 +k1,16224:19024286,45694874:230312 +k1,16224:19870636,45694874:230312 +k1,16224:21120034,45694874:230313 +k1,16224:22739054,45694874:230312 +k1,16224:24087410,45694874:230312 +k1,16224:26053115,45694874:230312 +k1,16224:28179385,45694874:230313 +k1,16224:31015408,45694874:230312 +k1,16224:32583029,45694874:0 +) +] +g1,16225:32583029,45706769 +) +] +(1,16225:32583029,45706769:0,0,0 +g1,16225:32583029,45706769 +) +) +] +(1,16225:6630773,47279633:25952256,0,0 +h1,16225:6630773,47279633:25952256,0,0 +) +] +(1,16225:4262630,4025873:0,0,0 +[1,16225:-473656,4025873:0,0,0 +(1,16225:-473656,-710413:0,0,0 +(1,16225:-473656,-710413:0,0,0 +g1,16225:-473656,-710413 +) +g1,16225:-473656,-710413 +) +] +) +] +!24629 +}261 +Input:2377:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2378:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2379:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2380:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2381:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2382:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -277841,1222 +274438,1221 @@ Input:2386:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConso Input:2387:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2388:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2389:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2390:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2391:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2392:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1234 -{278 -[1,16290:4262630,47279633:28320399,43253760,0 -(1,16290:4262630,4025873:0,0,0 -[1,16290:-473656,4025873:0,0,0 -(1,16290:-473656,-710413:0,0,0 -(1,16290:-473656,-644877:0,0,0 -k1,16290:-473656,-644877:-65536 +{262 +[1,16306:4262630,47279633:28320399,43253760,0 +(1,16306:4262630,4025873:0,0,0 +[1,16306:-473656,4025873:0,0,0 +(1,16306:-473656,-710413:0,0,0 +(1,16306:-473656,-644877:0,0,0 +k1,16306:-473656,-644877:-65536 ) -(1,16290:-473656,4736287:0,0,0 -k1,16290:-473656,4736287:5209943 +(1,16306:-473656,4736287:0,0,0 +k1,16306:-473656,4736287:5209943 ) -g1,16290:-473656,-710413 +g1,16306:-473656,-710413 ) ] ) -[1,16290:6630773,47279633:25952256,43253760,0 -[1,16290:6630773,4812305:25952256,786432,0 -(1,16290:6630773,4812305:25952256,505283,126483 -(1,16290:6630773,4812305:25952256,505283,126483 -g1,16290:3078558,4812305 -[1,16290:3078558,4812305:0,0,0 -(1,16290:3078558,2439708:0,1703936,0 -k1,16290:1358238,2439708:-1720320 -(1,15243:1358238,2439708:1720320,1703936,0 -(1,15243:1358238,2439708:1179648,16384,0 -r1,16290:2537886,2439708:1179648,16384,0 +[1,16306:6630773,47279633:25952256,43253760,0 +[1,16306:6630773,4812305:25952256,786432,0 +(1,16306:6630773,4812305:25952256,505283,134348 +(1,16306:6630773,4812305:25952256,505283,134348 +g1,16306:3078558,4812305 +[1,16306:3078558,4812305:0,0,0 +(1,16306:3078558,2439708:0,1703936,0 +k1,16306:1358238,2439708:-1720320 +(1,15456:1358238,2439708:1720320,1703936,0 +(1,15456:1358238,2439708:1179648,16384,0 +r1,16306:2537886,2439708:1179648,16384,0 ) -g1,15243:3062174,2439708 -(1,15243:3062174,2439708:16384,1703936,0 -[1,15243:3062174,2439708:25952256,1703936,0 -(1,15243:3062174,1915420:25952256,1179648,0 -(1,15243:3062174,1915420:16384,1179648,0 -r1,16290:3078558,1915420:16384,1179648,0 +g1,15456:3062174,2439708 +(1,15456:3062174,2439708:16384,1703936,0 +[1,15456:3062174,2439708:25952256,1703936,0 +(1,15456:3062174,1915420:25952256,1179648,0 +(1,15456:3062174,1915420:16384,1179648,0 +r1,16306:3078558,1915420:16384,1179648,0 ) -k1,15243:29014430,1915420:25935872 -g1,15243:29014430,1915420 +k1,15456:29014430,1915420:25935872 +g1,15456:29014430,1915420 ) ] ) ) ) ] -[1,16290:3078558,4812305:0,0,0 -(1,16290:3078558,2439708:0,1703936,0 -g1,16290:29030814,2439708 -g1,16290:36135244,2439708 -(1,15243:36135244,2439708:1720320,1703936,0 -(1,15243:36135244,2439708:16384,1703936,0 -[1,15243:36135244,2439708:25952256,1703936,0 -(1,15243:36135244,1915420:25952256,1179648,0 -(1,15243:36135244,1915420:16384,1179648,0 -r1,16290:36151628,1915420:16384,1179648,0 +[1,16306:3078558,4812305:0,0,0 +(1,16306:3078558,2439708:0,1703936,0 +g1,16306:29030814,2439708 +g1,16306:36135244,2439708 +(1,15456:36135244,2439708:1720320,1703936,0 +(1,15456:36135244,2439708:16384,1703936,0 +[1,15456:36135244,2439708:25952256,1703936,0 +(1,15456:36135244,1915420:25952256,1179648,0 +(1,15456:36135244,1915420:16384,1179648,0 +r1,16306:36151628,1915420:16384,1179648,0 ) -k1,15243:62087500,1915420:25935872 -g1,15243:62087500,1915420 +k1,15456:62087500,1915420:25935872 +g1,15456:62087500,1915420 ) ] ) -g1,15243:36675916,2439708 -(1,15243:36675916,2439708:1179648,16384,0 -r1,16290:37855564,2439708:1179648,16384,0 +g1,15456:36675916,2439708 +(1,15456:36675916,2439708:1179648,16384,0 +r1,16306:37855564,2439708:1179648,16384,0 ) ) -k1,16290:3078556,2439708:-34777008 +k1,16306:3078556,2439708:-34777008 ) ] -[1,16290:3078558,4812305:0,0,0 -(1,16290:3078558,49800853:0,16384,2228224 -k1,16290:1358238,49800853:-1720320 -(1,15243:1358238,49800853:1720320,16384,2228224 -(1,15243:1358238,49800853:1179648,16384,0 -r1,16290:2537886,49800853:1179648,16384,0 +[1,16306:3078558,4812305:0,0,0 +(1,16306:3078558,49800853:0,16384,2228224 +k1,16306:1358238,49800853:-1720320 +(1,15456:1358238,49800853:1720320,16384,2228224 +(1,15456:1358238,49800853:1179648,16384,0 +r1,16306:2537886,49800853:1179648,16384,0 ) -g1,15243:3062174,49800853 -(1,15243:3062174,52029077:16384,1703936,0 -[1,15243:3062174,52029077:25952256,1703936,0 -(1,15243:3062174,51504789:25952256,1179648,0 -(1,15243:3062174,51504789:16384,1179648,0 -r1,16290:3078558,51504789:16384,1179648,0 +g1,15456:3062174,49800853 +(1,15456:3062174,52029077:16384,1703936,0 +[1,15456:3062174,52029077:25952256,1703936,0 +(1,15456:3062174,51504789:25952256,1179648,0 +(1,15456:3062174,51504789:16384,1179648,0 +r1,16306:3078558,51504789:16384,1179648,0 ) -k1,15243:29014430,51504789:25935872 -g1,15243:29014430,51504789 +k1,15456:29014430,51504789:25935872 +g1,15456:29014430,51504789 ) ] ) ) ) ] -[1,16290:3078558,4812305:0,0,0 -(1,16290:3078558,49800853:0,16384,2228224 -g1,16290:29030814,49800853 -g1,16290:36135244,49800853 -(1,15243:36135244,49800853:1720320,16384,2228224 -(1,15243:36135244,52029077:16384,1703936,0 -[1,15243:36135244,52029077:25952256,1703936,0 -(1,15243:36135244,51504789:25952256,1179648,0 -(1,15243:36135244,51504789:16384,1179648,0 -r1,16290:36151628,51504789:16384,1179648,0 +[1,16306:3078558,4812305:0,0,0 +(1,16306:3078558,49800853:0,16384,2228224 +g1,16306:29030814,49800853 +g1,16306:36135244,49800853 +(1,15456:36135244,49800853:1720320,16384,2228224 +(1,15456:36135244,52029077:16384,1703936,0 +[1,15456:36135244,52029077:25952256,1703936,0 +(1,15456:36135244,51504789:25952256,1179648,0 +(1,15456:36135244,51504789:16384,1179648,0 +r1,16306:36151628,51504789:16384,1179648,0 +) +k1,15456:62087500,51504789:25935872 +g1,15456:62087500,51504789 +) +] +) +g1,15456:36675916,49800853 +(1,15456:36675916,49800853:1179648,16384,0 +r1,16306:37855564,49800853:1179648,16384,0 ) -k1,15243:62087500,51504789:25935872 -g1,15243:62087500,51504789 -) -] -) -g1,15243:36675916,49800853 -(1,15243:36675916,49800853:1179648,16384,0 -r1,16290:37855564,49800853:1179648,16384,0 ) +k1,16306:3078556,49800853:-34777008 +) +] +g1,16306:6630773,4812305 +g1,16306:6630773,4812305 +g1,16306:10115322,4812305 +g1,16306:11677700,4812305 +g1,16306:13736840,4812305 +k1,16306:31387652,4812305:17650812 +) +) +] +[1,16306:6630773,45706769:25952256,40108032,0 +(1,16306:6630773,45706769:25952256,40108032,0 +(1,16306:6630773,45706769:0,0,0 +g1,16306:6630773,45706769 +) +[1,16306:6630773,45706769:25952256,40108032,0 +v1,16225:6630773,6254097:0,393216,0 +(1,16225:6630773,7365591:25952256,1504710,0 +g1,16225:6630773,7365591 +g1,16225:6237557,7365591 +r1,16306:6368629,7365591:131072,1504710,0 +g1,16225:6567858,7365591 +g1,16225:6764466,7365591 +[1,16225:6764466,7365591:25818563,1504710,0 +(1,16225:6764466,6374028:25818563,513147,134348 +k1,16224:8438586,6374028:240192 +k1,16224:9093581,6374028:240152 +k1,16224:9865270,6374028:240192 +k1,16224:13544791,6374028:240192 +k1,16224:15165828,6374028:240193 +k1,16224:16898930,6374028:240192 +k1,16224:18205393,6374028:240192 +k1,16224:20705267,6374028:240193 +k1,16224:22513080,6374028:240192 +k1,16224:23772358,6374028:240193 +k1,16224:27581641,6374028:240192 +k1,16224:28481125,6374028:240192 +k1,16224:30456711,6374028:240193 +k1,16224:31052763,6374028:240192 +k1,16224:32583029,6374028:0 +) +(1,16225:6764466,7239108:25818563,513147,126483 +g1,16224:9910194,7239108 +g1,16224:10795585,7239108 +g1,16224:14843088,7239108 +g1,16224:15803845,7239108 +g1,16224:17022159,7239108 +g1,16224:20904511,7239108 +g1,16224:21763032,7239108 +g1,16224:22981346,7239108 +k1,16225:32583029,7239108:6600790 +g1,16225:32583029,7239108 +) +] +g1,16225:32583029,7365591 +) +h1,16225:6630773,7365591:0,0,0 +(1,16229:6630773,8230671:25952256,505283,126483 +h1,16228:6630773,8230671:983040,0,0 +k1,16228:8722510,8230671:155148 +k1,16228:9970143,8230671:155148 +k1,16228:10741330,8230671:155149 +k1,16228:13888197,8230671:155148 +k1,16228:15911776,8230671:155148 +k1,16228:17086009,8230671:155148 +(1,16228:17086009,8230671:0,452978,115847 +r1,16306:18499410,8230671:1413401,568825,115847 +k1,16228:17086009,8230671:-1413401 +) +(1,16228:17086009,8230671:1413401,452978,115847 +k1,16228:17086009,8230671:3277 +h1,16228:18496133,8230671:0,411205,112570 +) +k1,16228:18654558,8230671:155148 +k1,16228:20199070,8230671:155149 +k1,16228:21288761,8230671:155148 +k1,16228:24202319,8230671:155148 +k1,16228:24973505,8230671:155148 +k1,16228:26562582,8230671:155149 +k1,16228:27306243,8230671:155148 +k1,16228:29178434,8230671:155148 +k1,16228:32583029,8230671:0 +) +(1,16229:6630773,9095751:25952256,505283,134348 +k1,16228:7684702,9095751:244559 +k1,16228:8344058,9095751:244513 +(1,16228:8344058,9095751:0,459977,115847 +r1,16306:11867730,9095751:3523672,575824,115847 +k1,16228:8344058,9095751:-3523672 +) +(1,16228:8344058,9095751:3523672,459977,115847 +k1,16228:8344058,9095751:3277 +h1,16228:11864453,9095751:0,411205,112570 +) +k1,16228:12112289,9095751:244559 +k1,16228:14646676,9095751:244559 +k1,16228:16285186,9095751:244559 +k1,16228:19737732,9095751:244559 +k1,16228:22892745,9095751:244559 +k1,16228:24269766,9095751:244559 +k1,16228:26524970,9095751:244559 +(1,16228:26524970,9095751:0,459977,115847 +r1,16306:30048642,9095751:3523672,575824,115847 +k1,16228:26524970,9095751:-3523672 +) +(1,16228:26524970,9095751:3523672,459977,115847 +k1,16228:26524970,9095751:3277 +h1,16228:30045365,9095751:0,411205,112570 +) +k1,16228:30293201,9095751:244559 +k1,16228:32583029,9095751:0 +) +(1,16229:6630773,9960831:25952256,513147,134348 +k1,16228:8525545,9960831:205254 +k1,16228:10763071,9960831:205255 +k1,16228:12100787,9960831:205254 +k1,16228:14316686,9960831:205254 +k1,16228:18388565,9960831:205255 +(1,16228:18388565,9960831:0,452978,115847 +r1,16306:19801966,9960831:1413401,568825,115847 +k1,16228:18388565,9960831:-1413401 +) +(1,16228:18388565,9960831:1413401,452978,115847 +k1,16228:18388565,9960831:3277 +h1,16228:19798689,9960831:0,411205,112570 +) +k1,16228:20007220,9960831:205254 +k1,16228:22675972,9960831:205254 +k1,16228:27228230,9960831:205255 +k1,16228:27891581,9960831:205254 +k1,16228:28628332,9960831:205254 +k1,16228:30420214,9960831:205255 +k1,16228:31276896,9960831:205254 +k1,16228:32583029,9960831:0 +) +(1,16229:6630773,10825911:25952256,513147,7863 +g1,16228:9222721,10825911 +g1,16228:10689416,10825911 +g1,16228:13030362,10825911 +g1,16228:14248676,10825911 +g1,16228:15837268,10825911 +g1,16228:18243094,10825911 +g1,16228:19310675,10825911 +g1,16228:20642366,10825911 +g1,16228:22438052,10825911 +k1,16229:32583029,10825911:8577356 +g1,16229:32583029,10825911 +) +v1,16231:6630773,11510766:0,393216,0 +(1,16235:6630773,11818419:25952256,700869,196608 +g1,16235:6630773,11818419 +g1,16235:6630773,11818419 +g1,16235:6434165,11818419 +(1,16235:6434165,11818419:0,700869,196608 +r1,16306:32779637,11818419:26345472,897477,196608 +k1,16235:6434165,11818419:-26345472 +) +(1,16235:6434165,11818419:26345472,700869,196608 +[1,16235:6630773,11818419:25952256,504261,0 +(1,16233:6630773,11738597:25952256,424439,79822 +(1,16232:6630773,11738597:0,0,0 +g1,16232:6630773,11738597 +g1,16232:6630773,11738597 +g1,16232:6303093,11738597 +(1,16232:6303093,11738597:0,0,0 +) +g1,16232:6630773,11738597 +) +g1,16233:9286405,11738597 +g1,16233:10282267,11738597 +k1,16233:10282267,11738597:0 +h1,16233:15261576,11738597:0,0,0 +k1,16233:32583028,11738597:17321452 +g1,16233:32583028,11738597 +) +] +) +g1,16235:32583029,11818419 +g1,16235:6630773,11818419 +g1,16235:6630773,11818419 +g1,16235:32583029,11818419 +g1,16235:32583029,11818419 +) +h1,16235:6630773,12015027:0,0,0 +(1,16239:6630773,12880107:25952256,513147,134348 +h1,16238:6630773,12880107:983040,0,0 +k1,16238:10651907,12880107:248226 +(1,16238:10651907,12880107:0,452978,122846 +r1,16306:15582427,12880107:4930520,575824,122846 +k1,16238:10651907,12880107:-4930520 +) +(1,16238:10651907,12880107:4930520,452978,122846 +k1,16238:10651907,12880107:3277 +h1,16238:15579150,12880107:0,411205,112570 +) +k1,16238:15830652,12880107:248225 +k1,16238:17646499,12880107:248226 +k1,16238:19699586,12880107:248226 +k1,16238:22670833,12880107:248226 +k1,16238:24308421,12880107:248225 +k1,16238:26124268,12880107:248226 +k1,16238:27862783,12880107:248226 +k1,16238:29678629,12880107:248225 +k1,16238:31194321,12880107:248226 +k1,16238:32583029,12880107:0 +) +(1,16239:6630773,13745187:25952256,513147,134348 +k1,16238:8380833,13745187:182439 +k1,16238:9453250,13745187:182438 +k1,16238:11856704,13745187:182439 +k1,16238:12992691,13745187:182438 +k1,16238:14267615,13745187:182439 +k1,16238:14908150,13745187:182438 +k1,16238:16488472,13745187:182439 +k1,16238:17322339,13745187:182439 +k1,16238:19528529,13745187:182438 +k1,16238:20066828,13745187:182439 +k1,16238:23418587,13745187:182438 +k1,16238:25586112,13745187:182439 +k1,16238:26528768,13745187:182438 +k1,16238:30114492,13745187:182439 +(1,16238:30114492,13745187:0,452978,115847 +r1,16306:32583029,13745187:2468537,568825,115847 +k1,16238:30114492,13745187:-2468537 +) +(1,16238:30114492,13745187:2468537,452978,115847 +k1,16238:30114492,13745187:3277 +h1,16238:32579752,13745187:0,411205,112570 +) +k1,16238:32583029,13745187:0 +) +(1,16239:6630773,14610267:25952256,505283,126483 +g1,16238:8223953,14610267 +(1,16238:8223953,14610267:0,452978,122846 +r1,16306:12451049,14610267:4227096,575824,122846 +k1,16238:8223953,14610267:-4227096 +) +(1,16238:8223953,14610267:4227096,452978,122846 +k1,16238:8223953,14610267:3277 +h1,16238:12447772,14610267:0,411205,112570 +) +g1,16238:12650278,14610267 +g1,16238:13717859,14610267 +g1,16238:15021370,14610267 +g1,16238:18548517,14610267 +g1,16238:20078127,14610267 +(1,16238:20078127,14610267:0,452978,122846 +r1,16306:25008647,14610267:4930520,575824,122846 +k1,16238:20078127,14610267:-4930520 +) +(1,16238:20078127,14610267:4930520,452978,122846 +k1,16238:20078127,14610267:3277 +h1,16238:25005370,14610267:0,411205,112570 +) +g1,16238:25207876,14610267 +g1,16238:28332632,14610267 +g1,16238:29320259,14610267 +k1,16239:32583029,14610267:1380576 +g1,16239:32583029,14610267 +) +v1,16241:6630773,15295122:0,393216,0 +(1,16259:6630773,23882193:25952256,8980287,196608 +g1,16259:6630773,23882193 +g1,16259:6630773,23882193 +g1,16259:6434165,23882193 +(1,16259:6434165,23882193:0,8980287,196608 +r1,16306:32779637,23882193:26345472,9176895,196608 +k1,16259:6434165,23882193:-26345472 +) +(1,16259:6434165,23882193:26345472,8980287,196608 +[1,16259:6630773,23882193:25952256,8783679,0 +(1,16243:6630773,15522953:25952256,424439,112852 +(1,16242:6630773,15522953:0,0,0 +g1,16242:6630773,15522953 +g1,16242:6630773,15522953 +g1,16242:6303093,15522953 +(1,16242:6303093,15522953:0,0,0 +) +g1,16242:6630773,15522953 +) +g1,16243:10946174,15522953 +k1,16243:10946174,15522953:0 +h1,16243:11610082,15522953:0,0,0 +k1,16243:32583030,15522953:20972948 +g1,16243:32583030,15522953 +) +(1,16244:6630773,16207808:25952256,424439,112852 +h1,16244:6630773,16207808:0,0,0 +g1,16244:6962727,16207808 +g1,16244:7294681,16207808 +k1,16244:7294681,16207808:0 +h1,16244:14265713,16207808:0,0,0 +k1,16244:32583029,16207808:18317316 +g1,16244:32583029,16207808 +) +(1,16245:6630773,16892663:25952256,424439,106246 +h1,16245:6630773,16892663:0,0,0 +g1,16245:6962727,16892663 +g1,16245:7294681,16892663 +g1,16245:7626635,16892663 +g1,16245:7958589,16892663 +g1,16245:8290543,16892663 +g1,16245:8622497,16892663 +g1,16245:8954451,16892663 +g1,16245:9286405,16892663 +g1,16245:9618359,16892663 +g1,16245:9950313,16892663 +g1,16245:10282267,16892663 +g1,16245:10614221,16892663 +g1,16245:10946175,16892663 +g1,16245:11278129,16892663 +g1,16245:11610083,16892663 +g1,16245:13269853,16892663 +g1,16245:13933761,16892663 +k1,16245:13933761,16892663:0 +h1,16245:16921347,16892663:0,0,0 +k1,16245:32583029,16892663:15661682 +g1,16245:32583029,16892663 +) +(1,16246:6630773,17577518:25952256,424439,106246 +h1,16246:6630773,17577518:0,0,0 +g1,16246:6962727,17577518 +g1,16246:7294681,17577518 +g1,16246:7626635,17577518 +g1,16246:7958589,17577518 +g1,16246:8290543,17577518 +g1,16246:8622497,17577518 +g1,16246:8954451,17577518 +g1,16246:9286405,17577518 +g1,16246:9618359,17577518 +g1,16246:9950313,17577518 +g1,16246:10282267,17577518 +g1,16246:10614221,17577518 +g1,16246:10946175,17577518 +g1,16246:11278129,17577518 +g1,16246:11610083,17577518 +g1,16246:14597668,17577518 +g1,16246:15261576,17577518 +k1,16246:15261576,17577518:0 +h1,16246:17585254,17577518:0,0,0 +k1,16246:32583029,17577518:14997775 +g1,16246:32583029,17577518 +) +(1,16247:6630773,18262373:25952256,424439,79822 +h1,16247:6630773,18262373:0,0,0 +g1,16247:6962727,18262373 +g1,16247:7294681,18262373 +g1,16247:7626635,18262373 +g1,16247:7958589,18262373 +g1,16247:8290543,18262373 +g1,16247:8622497,18262373 +g1,16247:8954451,18262373 +g1,16247:9286405,18262373 +g1,16247:9618359,18262373 +g1,16247:9950313,18262373 +g1,16247:10282267,18262373 +g1,16247:10614221,18262373 +g1,16247:10946175,18262373 +g1,16247:11278129,18262373 +g1,16247:11610083,18262373 +g1,16247:14929622,18262373 +g1,16247:15593530,18262373 +h1,16247:19576977,18262373:0,0,0 +k1,16247:32583029,18262373:13006052 +g1,16247:32583029,18262373 +) +(1,16248:6630773,18947228:25952256,424439,112852 +h1,16248:6630773,18947228:0,0,0 +h1,16248:10614220,18947228:0,0,0 +k1,16248:32583028,18947228:21968808 +g1,16248:32583028,18947228 +) +(1,16258:6630773,19763155:25952256,424439,9908 +(1,16250:6630773,19763155:0,0,0 +g1,16250:6630773,19763155 +g1,16250:6630773,19763155 +g1,16250:6303093,19763155 +(1,16250:6303093,19763155:0,0,0 +) +g1,16250:6630773,19763155 +) +g1,16258:7626635,19763155 +g1,16258:8290543,19763155 +g1,16258:8954451,19763155 +g1,16258:11610083,19763155 +g1,16258:12937899,19763155 +g1,16258:13601807,19763155 +h1,16258:13933761,19763155:0,0,0 +k1,16258:32583029,19763155:18649268 +g1,16258:32583029,19763155 +) +(1,16258:6630773,20448010:25952256,424439,106246 +h1,16258:6630773,20448010:0,0,0 +g1,16258:7626635,20448010 +g1,16258:7958589,20448010 +g1,16258:8290543,20448010 +g1,16258:10946175,20448010 +g1,16258:12605945,20448010 +g1,16258:12937899,20448010 +g1,16258:13269853,20448010 +g1,16258:13601807,20448010 +g1,16258:13933761,20448010 +g1,16258:14265715,20448010 +g1,16258:14597669,20448010 +g1,16258:14929623,20448010 +g1,16258:15261577,20448010 +h1,16258:18249162,20448010:0,0,0 +k1,16258:32583029,20448010:14333867 +g1,16258:32583029,20448010 +) +(1,16258:6630773,21132865:25952256,431045,6605 +h1,16258:6630773,21132865:0,0,0 +g1,16258:7626635,21132865 +g1,16258:7958589,21132865 +g1,16258:8290543,21132865 +g1,16258:10282267,21132865 +g1,16258:10614221,21132865 +g1,16258:10946175,21132865 +g1,16258:12937899,21132865 +g1,16258:13269853,21132865 +g1,16258:13601807,21132865 +g1,16258:13933761,21132865 +g1,16258:14265715,21132865 +g1,16258:14597669,21132865 +g1,16258:14929623,21132865 +g1,16258:15261577,21132865 +g1,16258:15593531,21132865 +g1,16258:15925485,21132865 +g1,16258:16257439,21132865 +g1,16258:16589393,21132865 +k1,16258:16589393,21132865:0 +h1,16258:18249163,21132865:0,0,0 +k1,16258:32583029,21132865:14333866 +g1,16258:32583029,21132865 +) +(1,16258:6630773,21817720:25952256,424439,112852 +h1,16258:6630773,21817720:0,0,0 +g1,16258:7626635,21817720 +g1,16258:8290543,21817720 +g1,16258:10614221,21817720 +g1,16258:10946175,21817720 +g1,16258:15261576,21817720 +g1,16258:15593530,21817720 +g1,16258:15925484,21817720 +g1,16258:16257438,21817720 +g1,16258:16589392,21817720 +g1,16258:16921346,21817720 +g1,16258:17253300,21817720 +h1,16258:18249162,21817720:0,0,0 +k1,16258:32583029,21817720:14333867 +g1,16258:32583029,21817720 +) +(1,16258:6630773,22502575:25952256,424439,106246 +h1,16258:6630773,22502575:0,0,0 +g1,16258:7626635,22502575 +g1,16258:8290543,22502575 +g1,16258:10614221,22502575 +g1,16258:10946175,22502575 +g1,16258:14929622,22502575 +g1,16258:15261576,22502575 +g1,16258:15593530,22502575 +g1,16258:15925484,22502575 +g1,16258:16257438,22502575 +g1,16258:16589392,22502575 +g1,16258:16921346,22502575 +g1,16258:17253300,22502575 +h1,16258:18249162,22502575:0,0,0 +k1,16258:32583029,22502575:14333867 +g1,16258:32583029,22502575 +) +(1,16258:6630773,23187430:25952256,424439,112852 +h1,16258:6630773,23187430:0,0,0 +g1,16258:7626635,23187430 +g1,16258:8290543,23187430 +g1,16258:10614221,23187430 +g1,16258:10946175,23187430 +g1,16258:15261576,23187430 +g1,16258:15593530,23187430 +g1,16258:15925484,23187430 +g1,16258:16257438,23187430 +g1,16258:16589392,23187430 +g1,16258:16921346,23187430 +g1,16258:17253300,23187430 +h1,16258:18249162,23187430:0,0,0 +k1,16258:32583029,23187430:14333867 +g1,16258:32583029,23187430 +) +(1,16258:6630773,23872285:25952256,424439,9908 +h1,16258:6630773,23872285:0,0,0 +g1,16258:7626635,23872285 +g1,16258:8290543,23872285 +g1,16258:8954451,23872285 +g1,16258:10282267,23872285 +g1,16258:11942037,23872285 +h1,16258:13269853,23872285:0,0,0 +k1,16258:32583029,23872285:19313176 +g1,16258:32583029,23872285 +) +] +) +g1,16259:32583029,23882193 +g1,16259:6630773,23882193 +g1,16259:6630773,23882193 +g1,16259:32583029,23882193 +g1,16259:32583029,23882193 +) +h1,16259:6630773,24078801:0,0,0 +v1,16263:6630773,24943881:0,393216,0 +(1,16264:6630773,26357851:25952256,1807186,0 +g1,16264:6630773,26357851 +g1,16264:6237557,26357851 +r1,16306:6368629,26357851:131072,1807186,0 +g1,16264:6567858,26357851 +g1,16264:6764466,26357851 +[1,16264:6764466,26357851:25818563,1807186,0 +(1,16264:6764466,25358423:25818563,807758,219026 +(1,16263:6764466,25358423:0,807758,219026 +r1,16306:7908217,25358423:1143751,1026784,219026 +k1,16263:6764466,25358423:-1143751 +) +(1,16263:6764466,25358423:1143751,807758,219026 +) +k1,16263:8088278,25358423:180061 +k1,16263:8415958,25358423:327680 +k1,16263:12007169,25358423:180062 +k1,16263:12838658,25358423:180061 +k1,16263:14452648,25358423:180062 +k1,16263:15221222,25358423:180061 +k1,16263:16017321,25358423:180061 +k1,16263:17799083,25358423:180062 +k1,16263:21004941,25358423:180061 +k1,16263:22752623,25358423:180061 +k1,16263:23951770,25358423:180062 +k1,16263:27339818,25358423:180061 +k1,16263:30430334,25358423:180062 +k1,16263:31478747,25358423:180061 +k1,16263:32583029,25358423:0 +) +(1,16264:6764466,26223503:25818563,513147,134348 +g1,16263:8056180,26223503 +g1,16263:9647394,26223503 +g1,16263:12229512,26223503 +g1,16263:14497057,26223503 +g1,16263:17622469,26223503 +g1,16263:18583226,26223503 +g1,16263:19138315,26223503 +g1,16263:21318697,26223503 +g1,16263:22838476,26223503 +g1,16263:23689133,26223503 +g1,16263:26035977,26223503 +g1,16263:27301477,26223503 +g1,16263:29202676,26223503 +k1,16264:32583029,26223503:193337 +g1,16264:32583029,26223503 +) +] +g1,16264:32583029,26357851 +) +h1,16264:6630773,26357851:0,0,0 +(1,16267:6630773,27222931:25952256,505283,126483 +h1,16266:6630773,27222931:983040,0,0 +k1,16266:10649171,27222931:245490 +(1,16266:10649171,27222931:0,452978,115847 +r1,16306:15227979,27222931:4578808,568825,115847 +k1,16266:10649171,27222931:-4578808 +) +(1,16266:10649171,27222931:4578808,452978,115847 +k1,16266:10649171,27222931:3277 +h1,16266:15224702,27222931:0,411205,112570 +) +k1,16266:15473469,27222931:245490 +k1,16266:17211869,27222931:245490 +k1,16266:18523630,27222931:245490 +k1,16266:21183466,27222931:245490 +k1,16266:24862387,27222931:245490 +k1,16266:26126962,27222931:245490 +k1,16266:28031168,27222931:245490 +k1,16266:30563209,27222931:245490 +k1,16267:32583029,27222931:0 +) +(1,16267:6630773,28088011:25952256,513147,126483 +k1,16266:8116273,28088011:218034 +k1,16266:9001462,28088011:218033 +(1,16266:9001462,28088011:0,452978,122846 +r1,16306:13931982,28088011:4930520,575824,122846 +k1,16266:9001462,28088011:-4930520 +) +(1,16266:9001462,28088011:4930520,452978,122846 +k1,16266:9001462,28088011:3277 +h1,16266:13928705,28088011:0,411205,112570 +) +k1,16266:14323686,28088011:218034 +k1,16266:16020868,28088011:218034 +k1,16266:18910149,28088011:218034 +k1,16266:20662380,28088011:218033 +k1,16266:22274365,28088011:218034 +k1,16266:24649844,28088011:218034 +k1,16266:26868037,28088011:218034 +k1,16266:28155618,28088011:218033 +k1,16266:31966991,28088011:218034 +k1,16266:32583029,28088011:0 +) +(1,16267:6630773,28953091:25952256,513147,126483 +k1,16266:7908069,28953091:179568 +k1,16266:9454719,28953091:179569 +k1,16266:11644276,28953091:179568 +k1,16266:13275467,28953091:179569 +k1,16266:15765834,28953091:179568 +k1,16266:17136848,28953091:179569 +k1,16266:19302157,28953091:179568 +k1,16266:20977258,28953091:179569 +k1,16266:22175911,28953091:179568 +k1,16266:25134207,28953091:179569 +k1,16266:27125190,28953091:179568 +k1,16266:28405764,28953091:179569 +k1,16266:31298523,28953091:179568 +k1,16266:32583029,28953091:0 +) +(1,16267:6630773,29818171:25952256,513147,126483 +k1,16266:7818362,29818171:196029 +k1,16266:9338219,29818171:196030 +k1,16266:10193540,29818171:196029 +k1,16266:12871418,29818171:196030 +k1,16266:14020996,29818171:196029 +k1,16266:15747292,29818171:196030 +k1,16266:16594749,29818171:196029 +k1,16266:19115340,29818171:196029 +k1,16266:21008097,29818171:196030 +k1,16266:23917317,29818171:196029 +k1,16266:25507298,29818171:196030 +k1,16266:28398823,29818171:196029 +(1,16266:28398823,29818171:0,452978,115847 +r1,16306:31219072,29818171:2820249,568825,115847 +k1,16266:28398823,29818171:-2820249 +) +(1,16266:28398823,29818171:2820249,452978,115847 +k1,16266:28398823,29818171:3277 +h1,16266:31215795,29818171:0,411205,112570 +) +k1,16266:31415102,29818171:196030 +k1,16266:32227169,29818171:196029 +k1,16266:32583029,29818171:0 +) +(1,16267:6630773,30683251:25952256,505283,126483 +g1,16266:9071333,30683251 +k1,16267:32583028,30683251:21982740 +g1,16267:32583028,30683251 +) +v1,16269:6630773,31368106:0,393216,0 +(1,16288:6630773,40636729:25952256,9661839,196608 +g1,16288:6630773,40636729 +g1,16288:6630773,40636729 +g1,16288:6434165,40636729 +(1,16288:6434165,40636729:0,9661839,196608 +r1,16306:32779637,40636729:26345472,9858447,196608 +k1,16288:6434165,40636729:-26345472 +) +(1,16288:6434165,40636729:26345472,9661839,196608 +[1,16288:6630773,40636729:25952256,9465231,0 +(1,16271:6630773,31595937:25952256,424439,52847 +(1,16270:6630773,31595937:0,0,0 +g1,16270:6630773,31595937 +g1,16270:6630773,31595937 +g1,16270:6303093,31595937 +(1,16270:6303093,31595937:0,0,0 +) +g1,16270:6630773,31595937 +) +g1,16271:10946174,31595937 +k1,16271:10946174,31595937:0 +h1,16271:11610082,31595937:0,0,0 +k1,16271:32583030,31595937:20972948 +g1,16271:32583030,31595937 +) +(1,16272:6630773,32280792:25952256,424439,112852 +h1,16272:6630773,32280792:0,0,0 +g1,16272:6962727,32280792 +g1,16272:7294681,32280792 +k1,16272:7294681,32280792:0 +h1,16272:15593529,32280792:0,0,0 +k1,16272:32583029,32280792:16989500 +g1,16272:32583029,32280792 +) +(1,16273:6630773,32965647:25952256,431045,106246 +h1,16273:6630773,32965647:0,0,0 +g1,16273:6962727,32965647 +g1,16273:7294681,32965647 +g1,16273:7626635,32965647 +g1,16273:7958589,32965647 +g1,16273:8290543,32965647 +g1,16273:8622497,32965647 +g1,16273:8954451,32965647 +g1,16273:9286405,32965647 +g1,16273:9618359,32965647 +g1,16273:9950313,32965647 +g1,16273:10282267,32965647 +g1,16273:10614221,32965647 +g1,16273:10946175,32965647 +g1,16273:11278129,32965647 +g1,16273:14929622,32965647 +g1,16273:15593530,32965647 +k1,16273:15593530,32965647:0 +h1,16273:17917208,32965647:0,0,0 +k1,16273:32583029,32965647:14665821 +g1,16273:32583029,32965647 +) +(1,16274:6630773,33650502:25952256,431045,86428 +h1,16274:6630773,33650502:0,0,0 +g1,16274:6962727,33650502 +g1,16274:7294681,33650502 +g1,16274:7626635,33650502 +g1,16274:7958589,33650502 +g1,16274:8290543,33650502 +g1,16274:8622497,33650502 +g1,16274:8954451,33650502 +g1,16274:9286405,33650502 +g1,16274:9618359,33650502 +g1,16274:9950313,33650502 +g1,16274:10282267,33650502 +g1,16274:10614221,33650502 +g1,16274:10946175,33650502 +g1,16274:11278129,33650502 +g1,16274:15261576,33650502 +g1,16274:15925484,33650502 +k1,16274:15925484,33650502:0 +h1,16274:19908931,33650502:0,0,0 +k1,16274:32583029,33650502:12674098 +g1,16274:32583029,33650502 +) +(1,16275:6630773,34335357:25952256,431045,79822 +h1,16275:6630773,34335357:0,0,0 +g1,16275:6962727,34335357 +g1,16275:7294681,34335357 +g1,16275:7626635,34335357 +g1,16275:7958589,34335357 +g1,16275:8290543,34335357 +g1,16275:8622497,34335357 +g1,16275:8954451,34335357 +g1,16275:9286405,34335357 +g1,16275:9618359,34335357 +g1,16275:9950313,34335357 +g1,16275:10282267,34335357 +g1,16275:10614221,34335357 +g1,16275:10946175,34335357 +g1,16275:11278129,34335357 +g1,16275:14597668,34335357 +g1,16275:15261576,34335357 +g1,16275:17253300,34335357 +k1,16275:17253300,34335357:0 +h1,16275:17917208,34335357:0,0,0 +k1,16275:32583029,34335357:14665821 +g1,16275:32583029,34335357 +) +(1,16276:6630773,35020212:25952256,424439,106246 +h1,16276:6630773,35020212:0,0,0 +g1,16276:6962727,35020212 +g1,16276:7294681,35020212 +g1,16276:11278129,35020212 +g1,16276:11942037,35020212 +k1,16276:11942037,35020212:0 +h1,16276:14929622,35020212:0,0,0 +k1,16276:32583030,35020212:17653408 +g1,16276:32583030,35020212 +) +(1,16277:6630773,35705067:25952256,424439,52847 +h1,16277:6630773,35705067:0,0,0 +h1,16277:10614220,35705067:0,0,0 +k1,16277:32583028,35705067:21968808 +g1,16277:32583028,35705067 +) +(1,16287:6630773,36520994:25952256,424439,9908 +(1,16279:6630773,36520994:0,0,0 +g1,16279:6630773,36520994 +g1,16279:6630773,36520994 +g1,16279:6303093,36520994 +(1,16279:6303093,36520994:0,0,0 +) +g1,16279:6630773,36520994 +) +g1,16287:7626635,36520994 +g1,16287:8290543,36520994 +g1,16287:8954451,36520994 +g1,16287:11610083,36520994 +g1,16287:12937899,36520994 +g1,16287:13601807,36520994 +h1,16287:13933761,36520994:0,0,0 +k1,16287:32583029,36520994:18649268 +g1,16287:32583029,36520994 +) +(1,16287:6630773,37205849:25952256,424439,112852 +h1,16287:6630773,37205849:0,0,0 +g1,16287:7626635,37205849 +g1,16287:7958589,37205849 +g1,16287:8290543,37205849 +g1,16287:10946175,37205849 +g1,16287:15261576,37205849 +g1,16287:19245023,37205849 +g1,16287:23560424,37205849 +h1,16287:27211917,37205849:0,0,0 +k1,16287:32583029,37205849:5371112 +g1,16287:32583029,37205849 +) +(1,16287:6630773,37890704:25952256,431045,6605 +h1,16287:6630773,37890704:0,0,0 +g1,16287:7626635,37890704 +g1,16287:7958589,37890704 +g1,16287:8290543,37890704 +g1,16287:10282267,37890704 +g1,16287:10614221,37890704 +g1,16287:10946175,37890704 +g1,16287:11278129,37890704 +g1,16287:11610083,37890704 +g1,16287:11942037,37890704 +g1,16287:12273991,37890704 +g1,16287:12605945,37890704 +g1,16287:12937899,37890704 +g1,16287:13269853,37890704 +g1,16287:15261577,37890704 +g1,16287:15593531,37890704 +g1,16287:15925485,37890704 +g1,16287:16257439,37890704 +g1,16287:16589393,37890704 +g1,16287:16921347,37890704 +g1,16287:17253301,37890704 +g1,16287:19245025,37890704 +g1,16287:19576979,37890704 +g1,16287:19908933,37890704 +g1,16287:20240887,37890704 +g1,16287:20572841,37890704 +g1,16287:20904795,37890704 +g1,16287:21236749,37890704 +g1,16287:21568703,37890704 +g1,16287:23560427,37890704 +g1,16287:23892381,37890704 +g1,16287:24224335,37890704 +g1,16287:24556289,37890704 +g1,16287:24888243,37890704 +g1,16287:25220197,37890704 +g1,16287:25552151,37890704 +k1,16287:25552151,37890704:0 +h1,16287:27211921,37890704:0,0,0 +k1,16287:32583029,37890704:5371108 +g1,16287:32583029,37890704 +) +(1,16287:6630773,38575559:25952256,407923,9908 +h1,16287:6630773,38575559:0,0,0 +g1,16287:7626635,38575559 +g1,16287:8290543,38575559 +g1,16287:10614221,38575559 +g1,16287:10946175,38575559 +g1,16287:11278129,38575559 +g1,16287:11610083,38575559 +g1,16287:11942037,38575559 +g1,16287:12273991,38575559 +g1,16287:12605945,38575559 +g1,16287:12937899,38575559 +g1,16287:13269853,38575559 +g1,16287:13601807,38575559 +g1,16287:13933761,38575559 +g1,16287:15261577,38575559 +g1,16287:15593531,38575559 +g1,16287:15925485,38575559 +g1,16287:16257439,38575559 +g1,16287:16589393,38575559 +g1,16287:16921347,38575559 +g1,16287:17253301,38575559 +g1,16287:17585255,38575559 +g1,16287:17917209,38575559 +g1,16287:19245025,38575559 +g1,16287:19576979,38575559 +g1,16287:19908933,38575559 +g1,16287:20240887,38575559 +g1,16287:20572841,38575559 +g1,16287:20904795,38575559 +g1,16287:21236749,38575559 +g1,16287:21568703,38575559 +g1,16287:21900657,38575559 +g1,16287:22232611,38575559 +g1,16287:23560427,38575559 +g1,16287:23892381,38575559 +g1,16287:24224335,38575559 +g1,16287:24556289,38575559 +g1,16287:24888243,38575559 +g1,16287:25220197,38575559 +g1,16287:25552151,38575559 +g1,16287:25884105,38575559 +g1,16287:26216059,38575559 +h1,16287:27211921,38575559:0,0,0 +k1,16287:32583029,38575559:5371108 +g1,16287:32583029,38575559 +) +(1,16287:6630773,39260414:25952256,407923,9908 +h1,16287:6630773,39260414:0,0,0 +g1,16287:7626635,39260414 +g1,16287:8290543,39260414 +g1,16287:10614221,39260414 +g1,16287:10946175,39260414 +g1,16287:11278129,39260414 +g1,16287:11610083,39260414 +g1,16287:11942037,39260414 +g1,16287:12273991,39260414 +g1,16287:12605945,39260414 +g1,16287:12937899,39260414 +g1,16287:13269853,39260414 +g1,16287:13601807,39260414 +g1,16287:13933761,39260414 +g1,16287:15261577,39260414 +g1,16287:15593531,39260414 +g1,16287:15925485,39260414 +g1,16287:16257439,39260414 +g1,16287:16589393,39260414 +g1,16287:16921347,39260414 +g1,16287:17253301,39260414 +g1,16287:17585255,39260414 +g1,16287:17917209,39260414 +g1,16287:18581117,39260414 +g1,16287:18913071,39260414 +g1,16287:19245025,39260414 +g1,16287:19576979,39260414 +g1,16287:19908933,39260414 +g1,16287:20240887,39260414 +g1,16287:20572841,39260414 +g1,16287:20904795,39260414 +g1,16287:21236749,39260414 +g1,16287:21568703,39260414 +g1,16287:21900657,39260414 +g1,16287:22232611,39260414 +g1,16287:23560427,39260414 +g1,16287:23892381,39260414 +g1,16287:24224335,39260414 +g1,16287:24556289,39260414 +g1,16287:24888243,39260414 +g1,16287:25220197,39260414 +g1,16287:25552151,39260414 +g1,16287:25884105,39260414 +g1,16287:26216059,39260414 +h1,16287:27211921,39260414:0,0,0 +k1,16287:32583029,39260414:5371108 +g1,16287:32583029,39260414 +) +(1,16287:6630773,39945269:25952256,407923,9908 +h1,16287:6630773,39945269:0,0,0 +g1,16287:7626635,39945269 +g1,16287:8290543,39945269 +g1,16287:10614221,39945269 +g1,16287:10946175,39945269 +g1,16287:11278129,39945269 +g1,16287:11610083,39945269 +g1,16287:11942037,39945269 +g1,16287:12273991,39945269 +g1,16287:12605945,39945269 +g1,16287:12937899,39945269 +g1,16287:13269853,39945269 +g1,16287:13601807,39945269 +g1,16287:13933761,39945269 +g1,16287:15261577,39945269 +g1,16287:15593531,39945269 +g1,16287:15925485,39945269 +g1,16287:16257439,39945269 +g1,16287:16589393,39945269 +g1,16287:16921347,39945269 +g1,16287:17253301,39945269 +g1,16287:17585255,39945269 +g1,16287:17917209,39945269 +g1,16287:19245025,39945269 +g1,16287:19576979,39945269 +g1,16287:19908933,39945269 +g1,16287:20240887,39945269 +g1,16287:20572841,39945269 +g1,16287:20904795,39945269 +g1,16287:21236749,39945269 +g1,16287:21568703,39945269 +g1,16287:21900657,39945269 +g1,16287:22232611,39945269 +g1,16287:23560427,39945269 +g1,16287:23892381,39945269 +g1,16287:24224335,39945269 +g1,16287:24556289,39945269 +g1,16287:24888243,39945269 +g1,16287:25220197,39945269 +g1,16287:25552151,39945269 +g1,16287:25884105,39945269 +g1,16287:26216059,39945269 +h1,16287:27211921,39945269:0,0,0 +k1,16287:32583029,39945269:5371108 +g1,16287:32583029,39945269 +) +(1,16287:6630773,40630124:25952256,424439,6605 +h1,16287:6630773,40630124:0,0,0 +g1,16287:7626635,40630124 +g1,16287:8290543,40630124 +g1,16287:8954451,40630124 +g1,16287:10282267,40630124 +g1,16287:11942037,40630124 +h1,16287:13269853,40630124:0,0,0 +k1,16287:32583029,40630124:19313176 +g1,16287:32583029,40630124 +) +] +) +g1,16288:32583029,40636729 +g1,16288:6630773,40636729 +g1,16288:6630773,40636729 +g1,16288:32583029,40636729 +g1,16288:32583029,40636729 +) +h1,16288:6630773,40833337:0,0,0 +v1,16292:6630773,41698417:0,393216,0 +(1,16306:6630773,43708917:25952256,2403716,0 +g1,16306:6630773,43708917 +g1,16306:6237557,43708917 +r1,16306:6368629,43708917:131072,2403716,0 +g1,16306:6567858,43708917 +g1,16306:6764466,43708917 +[1,16306:6764466,43708917:25818563,2403716,0 +(1,16293:6764466,41970894:25818563,665693,196608 +(1,16292:6764466,41970894:0,665693,196608 +r1,16306:8010564,41970894:1246098,862301,196608 +k1,16292:6764466,41970894:-1246098 +) +(1,16292:6764466,41970894:1246098,665693,196608 +) +k1,16292:8183736,41970894:173172 +k1,16292:9501665,41970894:327680 +k1,16292:10218131,41970894:173173 +(1,16292:10218131,41970894:0,452978,115847 +r1,16306:14445227,41970894:4227096,568825,115847 +k1,16292:10218131,41970894:-4227096 +) +(1,16292:10218131,41970894:4227096,452978,115847 +k1,16292:10218131,41970894:3277 +h1,16292:14441950,41970894:0,411205,112570 +) +k1,16292:14618399,41970894:173172 +k1,16292:16519101,41970894:173173 +k1,16292:17343701,41970894:173172 +(1,16292:17343701,41970894:0,452978,115847 +r1,16306:19812238,41970894:2468537,568825,115847 +k1,16292:17343701,41970894:-2468537 +) +(1,16292:17343701,41970894:2468537,452978,115847 +k1,16292:17343701,41970894:3277 +h1,16292:19808961,41970894:0,411205,112570 +) +k1,16292:20159080,41970894:173172 +k1,16292:21351338,41970894:173173 +k1,16292:23335925,41970894:173172 +k1,16292:24377450,41970894:173173 +k1,16292:27711423,41970894:173172 +k1,16292:29152062,41970894:173173 +k1,16292:30713942,41970894:173172 +k1,16292:32583029,41970894:0 +) +(1,16293:6764466,42835974:25818563,505283,126483 +k1,16292:8200915,42835974:245004 +k1,16292:9928342,42835974:245003 +k1,16292:11440812,42835974:245004 +k1,16292:13176105,42835974:245004 +k1,16292:15617219,42835974:245003 +k1,16292:17136898,42835974:245004 +k1,16292:18400987,42835974:245004 +k1,16292:22730195,42835974:245004 +k1,16292:25017300,42835974:245003 +k1,16292:26453749,42835974:245004 +k1,16292:28280792,42835974:245004 +k1,16292:29544880,42835974:245003 +k1,16292:31931601,42835974:245004 +k1,16292:32583029,42835974:0 +) +(1,16293:6764466,43701054:25818563,513147,7863 +g1,16292:8229851,43701054 +k1,16293:32583028,43701054:23113236 +g1,16293:32583028,43701054 +) +] +g1,16306:32583029,43708917 +) +] +(1,16306:32583029,45706769:0,0,0 +g1,16306:32583029,45706769 +) +) +] +(1,16306:6630773,47279633:25952256,0,0 +h1,16306:6630773,47279633:25952256,0,0 +) +] +(1,16306:4262630,4025873:0,0,0 +[1,16306:-473656,4025873:0,0,0 +(1,16306:-473656,-710413:0,0,0 +(1,16306:-473656,-710413:0,0,0 +g1,16306:-473656,-710413 +) +g1,16306:-473656,-710413 ) -k1,16290:3078556,49800853:-34777008 -) -] -g1,16290:6630773,4812305 -g1,16290:6630773,4812305 -g1,16290:8364200,4812305 -g1,16290:12785258,4812305 -g1,16290:14347636,4812305 -g1,16290:16554232,4812305 -k1,16290:31387652,4812305:14833420 -) -) -] -[1,16290:6630773,45706769:25952256,40108032,0 -(1,16290:6630773,45706769:25952256,40108032,0 -(1,16290:6630773,45706769:0,0,0 -g1,16290:6630773,45706769 -) -[1,16290:6630773,45706769:25952256,40108032,0 -(1,16201:6630773,6254097:25952256,513147,115847 -h1,16200:6630773,6254097:983040,0,0 -k1,16200:10585340,6254097:181659 -(1,16200:10585340,6254097:0,459977,115847 -r1,16290:13405589,6254097:2820249,575824,115847 -k1,16200:10585340,6254097:-2820249 -) -(1,16200:10585340,6254097:2820249,459977,115847 -k1,16200:10585340,6254097:3277 -h1,16200:13402312,6254097:0,411205,112570 -) -k1,16200:13587248,6254097:181659 -k1,16200:14873190,6254097:181660 -k1,16200:15802615,6254097:181659 -k1,16200:17497500,6254097:181659 -k1,16200:18330587,6254097:181659 -k1,16200:20716223,6254097:181660 -k1,16200:21253742,6254097:181659 -k1,16200:23515514,6254097:181659 -k1,16200:24356465,6254097:181659 -k1,16200:28929693,6254097:181660 -k1,16200:29762780,6254097:181659 -(1,16200:29762780,6254097:0,452978,115847 -r1,16290:32583029,6254097:2820249,568825,115847 -k1,16200:29762780,6254097:-2820249 -) -(1,16200:29762780,6254097:2820249,452978,115847 -k1,16200:29762780,6254097:3277 -h1,16200:32579752,6254097:0,411205,112570 -) -k1,16200:32583029,6254097:0 -) -(1,16201:6630773,7095585:25952256,513147,126483 -k1,16200:7906665,7095585:203723 -k1,16200:9504340,7095585:203724 -k1,16200:10063923,7095585:203723 -k1,16200:12351691,7095585:203723 -k1,16200:15836147,7095585:203724 -k1,16200:17433821,7095585:203723 -k1,16200:18922051,7095585:203724 -k1,16200:19785066,7095585:203723 -k1,16200:21690759,7095585:203723 -k1,16200:24920280,7095585:203724 -k1,16200:25740041,7095585:203723 -k1,16200:26962849,7095585:203723 -k1,16200:30548230,7095585:203724 -k1,16200:31379788,7095585:203723 -k1,16200:32583029,7095585:0 -) -(1,16201:6630773,7937073:25952256,513147,134348 -g1,16200:8370753,7937073 -g1,16200:9765359,7937073 -g1,16200:11030859,7937073 -g1,16200:11889380,7937073 -g1,16200:13107694,7937073 -g1,16200:15742241,7937073 -g1,16200:17136847,7937073 -g1,16200:18870274,7937073 -g1,16200:20061063,7937073 -k1,16201:32583029,7937073:9715714 -g1,16201:32583029,7937073 -) -v1,16203:6630773,9095088:0,393216,0 -(1,16216:6630773,13981680:25952256,5279808,196608 -g1,16216:6630773,13981680 -g1,16216:6630773,13981680 -g1,16216:6434165,13981680 -(1,16216:6434165,13981680:0,5279808,196608 -r1,16290:32779637,13981680:26345472,5476416,196608 -k1,16216:6434165,13981680:-26345472 -) -(1,16216:6434165,13981680:26345472,5279808,196608 -[1,16216:6630773,13981680:25952256,5083200,0 -(1,16205:6630773,9308998:25952256,410518,107478 -(1,16204:6630773,9308998:0,0,0 -g1,16204:6630773,9308998 -g1,16204:6630773,9308998 -g1,16204:6303093,9308998 -(1,16204:6303093,9308998:0,0,0 -) -g1,16204:6630773,9308998 -) -k1,16205:6630773,9308998:0 -g1,16205:13269833,9308998 -g1,16205:16747436,9308998 -g1,16205:17695873,9308998 -h1,16205:20225039,9308998:0,0,0 -k1,16205:32583029,9308998:12357990 -g1,16205:32583029,9308998 -) -(1,16215:6630773,9975176:25952256,404226,9436 -(1,16207:6630773,9975176:0,0,0 -g1,16207:6630773,9975176 -g1,16207:6630773,9975176 -g1,16207:6303093,9975176 -(1,16207:6303093,9975176:0,0,0 -) -g1,16207:6630773,9975176 -) -g1,16215:7579210,9975176 -g1,16215:8211502,9975176 -g1,16215:8843794,9975176 -g1,16215:11372960,9975176 -g1,16215:12637543,9975176 -g1,16215:13269835,9975176 -h1,16215:13585981,9975176:0,0,0 -k1,16215:32583029,9975176:18997048 -g1,16215:32583029,9975176 -) -(1,16215:6630773,10641354:25952256,404226,101187 -h1,16215:6630773,10641354:0,0,0 -g1,16215:7579210,10641354 -g1,16215:7895356,10641354 -g1,16215:8211502,10641354 -g1,16215:10740668,10641354 -g1,16215:12321397,10641354 -g1,16215:12637543,10641354 -g1,16215:12953689,10641354 -g1,16215:13269835,10641354 -g1,16215:13585981,10641354 -g1,16215:13902127,10641354 -g1,16215:14218273,10641354 -g1,16215:14534419,10641354 -g1,16215:14850565,10641354 -g1,16215:18012022,10641354 -g1,16215:21489625,10641354 -h1,16215:24018790,10641354:0,0,0 -k1,16215:32583029,10641354:8564239 -g1,16215:32583029,10641354 -) -(1,16215:6630773,11307532:25952256,410518,6290 -h1,16215:6630773,11307532:0,0,0 -g1,16215:7579210,11307532 -g1,16215:7895356,11307532 -g1,16215:8211502,11307532 -g1,16215:10108377,11307532 -g1,16215:10424523,11307532 -g1,16215:10740669,11307532 -g1,16215:12637544,11307532 -g1,16215:12953690,11307532 -g1,16215:13269836,11307532 -g1,16215:13585982,11307532 -g1,16215:13902128,11307532 -g1,16215:14218274,11307532 -g1,16215:14534420,11307532 -g1,16215:14850566,11307532 -g1,16215:15166712,11307532 -g1,16215:15482858,11307532 -g1,16215:15799004,11307532 -g1,16215:16115150,11307532 -g1,16215:18012025,11307532 -g1,16215:19908900,11307532 -g1,16215:20225046,11307532 -g1,16215:20541192,11307532 -g1,16215:20857338,11307532 -g1,16215:21173484,11307532 -g1,16215:21489630,11307532 -k1,16215:21489630,11307532:0 -h1,16215:23070359,11307532:0,0,0 -k1,16215:32583029,11307532:9512670 -g1,16215:32583029,11307532 -) -(1,16215:6630773,11973710:25952256,404226,107478 -h1,16215:6630773,11973710:0,0,0 -g1,16215:7579210,11973710 -g1,16215:8211502,11973710 -g1,16215:10424522,11973710 -g1,16215:10740668,11973710 -g1,16215:14850562,11973710 -g1,16215:15166708,11973710 -g1,16215:15482854,11973710 -g1,16215:15799000,11973710 -g1,16215:16115146,11973710 -g1,16215:16431292,11973710 -g1,16215:16747438,11973710 -g1,16215:18012021,11973710 -g1,16215:19908895,11973710 -g1,16215:20225041,11973710 -g1,16215:20541187,11973710 -g1,16215:20857333,11973710 -g1,16215:21173479,11973710 -g1,16215:21489625,11973710 -h1,16215:23386499,11973710:0,0,0 -k1,16215:32583029,11973710:9196530 -g1,16215:32583029,11973710 -) -(1,16215:6630773,12639888:25952256,404226,9436 -h1,16215:6630773,12639888:0,0,0 -g1,16215:7579210,12639888 -g1,16215:8211502,12639888 -g1,16215:10424522,12639888 -g1,16215:10740668,12639888 -g1,16215:14534416,12639888 -g1,16215:14850562,12639888 -g1,16215:15166708,12639888 -g1,16215:15482854,12639888 -g1,16215:15799000,12639888 -g1,16215:16115146,12639888 -g1,16215:16431292,12639888 -g1,16215:16747438,12639888 -g1,16215:18012021,12639888 -g1,16215:19908895,12639888 -g1,16215:20225041,12639888 -g1,16215:20541187,12639888 -g1,16215:20857333,12639888 -g1,16215:21173479,12639888 -g1,16215:21489625,12639888 -h1,16215:23070353,12639888:0,0,0 -k1,16215:32583029,12639888:9512676 -g1,16215:32583029,12639888 -) -(1,16215:6630773,13306066:25952256,404226,107478 -h1,16215:6630773,13306066:0,0,0 -g1,16215:7579210,13306066 -g1,16215:8211502,13306066 -g1,16215:10424522,13306066 -g1,16215:10740668,13306066 -g1,16215:14850562,13306066 -g1,16215:15166708,13306066 -g1,16215:15482854,13306066 -g1,16215:15799000,13306066 -g1,16215:16115146,13306066 -g1,16215:16431292,13306066 -g1,16215:16747438,13306066 -g1,16215:18012021,13306066 -g1,16215:19908895,13306066 -g1,16215:20225041,13306066 -g1,16215:20541187,13306066 -g1,16215:20857333,13306066 -g1,16215:21173479,13306066 -g1,16215:21489625,13306066 -h1,16215:23386499,13306066:0,0,0 -k1,16215:32583029,13306066:9196530 -g1,16215:32583029,13306066 -) -(1,16215:6630773,13972244:25952256,404226,9436 -h1,16215:6630773,13972244:0,0,0 -g1,16215:7579210,13972244 -g1,16215:8211502,13972244 -g1,16215:8843794,13972244 -g1,16215:10108377,13972244 -g1,16215:11689106,13972244 -h1,16215:12953689,13972244:0,0,0 -k1,16215:32583029,13972244:19629340 -g1,16215:32583029,13972244 -) -] -) -g1,16216:32583029,13981680 -g1,16216:6630773,13981680 -g1,16216:6630773,13981680 -g1,16216:32583029,13981680 -g1,16216:32583029,13981680 -) -h1,16216:6630773,14178288:0,0,0 -(1,16220:6630773,15511613:25952256,513147,115847 -h1,16219:6630773,15511613:983040,0,0 -k1,16219:10764296,15511613:360615 -(1,16219:10764296,15511613:0,452978,115847 -r1,16290:13232833,15511613:2468537,568825,115847 -k1,16219:10764296,15511613:-2468537 -) -(1,16219:10764296,15511613:2468537,452978,115847 -k1,16219:10764296,15511613:3277 -h1,16219:13229556,15511613:0,411205,112570 -) -k1,16219:13593448,15511613:360615 -k1,16219:15058344,15511613:360614 -k1,16219:16166725,15511613:360615 -k1,16219:18040566,15511613:360615 -k1,16219:19052609,15511613:360615 -k1,16219:21617199,15511613:360614 -k1,16219:22333674,15511613:360615 -k1,16219:24774402,15511613:360615 -k1,16219:25794309,15511613:360615 -k1,16219:27689122,15511613:360615 -k1,16219:29904405,15511613:360614 -k1,16219:31074390,15511613:360615 -k1,16219:32583029,15511613:0 -) -(1,16220:6630773,16353101:25952256,505283,126483 -k1,16219:11154012,16353101:152643 -k1,16219:14380950,16353101:152644 -k1,16219:15818099,16353101:152643 -k1,16219:16586781,16353101:152644 -k1,16219:18173352,16353101:152643 -k1,16219:18740792,16353101:152597 -k1,16219:20849685,16353101:152643 -k1,16219:22094814,16353101:152644 -k1,16219:25422676,16353101:152643 -k1,16219:28609637,16353101:152644 -k1,16219:31189078,16353101:152643 -k1,16219:32583029,16353101:0 -) -(1,16220:6630773,17194589:25952256,505283,126483 -g1,16219:7849087,17194589 -(1,16219:7849087,17194589:0,452978,115847 -r1,16290:9614201,17194589:1765114,568825,115847 -k1,16219:7849087,17194589:-1765114 -) -(1,16219:7849087,17194589:1765114,452978,115847 -g1,16219:8555788,17194589 -g1,16219:9259212,17194589 -h1,16219:9610924,17194589:0,411205,112570 -) -g1,16219:9813430,17194589 -g1,16219:12932943,17194589 -(1,16219:12932943,17194589:0,452978,122846 -r1,16290:19622022,17194589:6689079,575824,122846 -k1,16219:12932943,17194589:-6689079 -) -(1,16219:12932943,17194589:6689079,452978,122846 -g1,16219:19267033,17194589 -h1,16219:19618745,17194589:0,411205,112570 -) -k1,16220:32583029,17194589:12787337 -g1,16220:32583029,17194589 -) -v1,16222:6630773,18352604:0,393216,0 -(1,16235:6630773,23229758:25952256,5270370,196608 -g1,16235:6630773,23229758 -g1,16235:6630773,23229758 -g1,16235:6434165,23229758 -(1,16235:6434165,23229758:0,5270370,196608 -r1,16290:32779637,23229758:26345472,5466978,196608 -k1,16235:6434165,23229758:-26345472 -) -(1,16235:6434165,23229758:26345472,5270370,196608 -[1,16235:6630773,23229758:25952256,5073762,0 -(1,16224:6630773,18560222:25952256,404226,107478 -(1,16223:6630773,18560222:0,0,0 -g1,16223:6630773,18560222 -g1,16223:6630773,18560222 -g1,16223:6303093,18560222 -(1,16223:6303093,18560222:0,0,0 -) -g1,16223:6630773,18560222 -) -k1,16224:6630773,18560222:0 -g1,16224:12953687,18560222 -h1,16224:14218271,18560222:0,0,0 -k1,16224:32583029,18560222:18364758 -g1,16224:32583029,18560222 -) -(1,16234:6630773,19226400:25952256,404226,9436 -(1,16226:6630773,19226400:0,0,0 -g1,16226:6630773,19226400 -g1,16226:6630773,19226400 -g1,16226:6303093,19226400 -(1,16226:6303093,19226400:0,0,0 -) -g1,16226:6630773,19226400 -) -g1,16234:7579210,19226400 -g1,16234:8211502,19226400 -g1,16234:8843794,19226400 -g1,16234:11372960,19226400 -g1,16234:12005252,19226400 -g1,16234:12637544,19226400 -h1,16234:12953690,19226400:0,0,0 -k1,16234:32583030,19226400:19629340 -g1,16234:32583030,19226400 -) -(1,16234:6630773,19892578:25952256,404226,101187 -h1,16234:6630773,19892578:0,0,0 -g1,16234:7579210,19892578 -g1,16234:7895356,19892578 -g1,16234:8211502,19892578 -g1,16234:10740668,19892578 -g1,16234:12321397,19892578 -g1,16234:12637543,19892578 -g1,16234:12953689,19892578 -g1,16234:13269835,19892578 -g1,16234:13585981,19892578 -g1,16234:13902127,19892578 -g1,16234:14218273,19892578 -g1,16234:14534419,19892578 -g1,16234:14850565,19892578 -g1,16234:18012022,19892578 -g1,16234:21489625,19892578 -h1,16234:24018790,19892578:0,0,0 -k1,16234:32583029,19892578:8564239 -g1,16234:32583029,19892578 -) -(1,16234:6630773,20558756:25952256,410518,6290 -h1,16234:6630773,20558756:0,0,0 -g1,16234:7579210,20558756 -g1,16234:7895356,20558756 -g1,16234:8211502,20558756 -g1,16234:10108377,20558756 -g1,16234:10424523,20558756 -g1,16234:10740669,20558756 -g1,16234:12637544,20558756 -g1,16234:12953690,20558756 -g1,16234:13269836,20558756 -g1,16234:13585982,20558756 -g1,16234:13902128,20558756 -g1,16234:14218274,20558756 -g1,16234:14534420,20558756 -g1,16234:14850566,20558756 -g1,16234:15166712,20558756 -g1,16234:15482858,20558756 -g1,16234:15799004,20558756 -g1,16234:16115150,20558756 -g1,16234:18012025,20558756 -g1,16234:19908900,20558756 -g1,16234:20225046,20558756 -g1,16234:20541192,20558756 -g1,16234:20857338,20558756 -g1,16234:21173484,20558756 -g1,16234:21489630,20558756 -k1,16234:21489630,20558756:0 -h1,16234:23070359,20558756:0,0,0 -k1,16234:32583029,20558756:9512670 -g1,16234:32583029,20558756 -) -(1,16234:6630773,21224934:25952256,404226,107478 -h1,16234:6630773,21224934:0,0,0 -g1,16234:7579210,21224934 -g1,16234:8211502,21224934 -g1,16234:10424522,21224934 -g1,16234:10740668,21224934 -g1,16234:14850562,21224934 -g1,16234:15166708,21224934 -g1,16234:15482854,21224934 -g1,16234:15799000,21224934 -g1,16234:16115146,21224934 -g1,16234:16431292,21224934 -g1,16234:16747438,21224934 -g1,16234:18012021,21224934 -g1,16234:19908895,21224934 -g1,16234:20225041,21224934 -g1,16234:20541187,21224934 -g1,16234:20857333,21224934 -g1,16234:21173479,21224934 -g1,16234:21489625,21224934 -h1,16234:23386499,21224934:0,0,0 -k1,16234:32583029,21224934:9196530 -g1,16234:32583029,21224934 -) -(1,16234:6630773,21891112:25952256,404226,101187 -h1,16234:6630773,21891112:0,0,0 -g1,16234:7579210,21891112 -g1,16234:8211502,21891112 -g1,16234:10424522,21891112 -g1,16234:10740668,21891112 -g1,16234:14534416,21891112 -g1,16234:14850562,21891112 -g1,16234:15166708,21891112 -g1,16234:15482854,21891112 -g1,16234:15799000,21891112 -g1,16234:16115146,21891112 -g1,16234:16431292,21891112 -g1,16234:16747438,21891112 -g1,16234:18012021,21891112 -g1,16234:19908895,21891112 -g1,16234:20225041,21891112 -g1,16234:20541187,21891112 -g1,16234:20857333,21891112 -g1,16234:21173479,21891112 -g1,16234:21489625,21891112 -h1,16234:23070353,21891112:0,0,0 -k1,16234:32583029,21891112:9512676 -g1,16234:32583029,21891112 -) -(1,16234:6630773,22557290:25952256,404226,107478 -h1,16234:6630773,22557290:0,0,0 -g1,16234:7579210,22557290 -g1,16234:8211502,22557290 -g1,16234:10424522,22557290 -g1,16234:10740668,22557290 -g1,16234:14850562,22557290 -g1,16234:15166708,22557290 -g1,16234:15482854,22557290 -g1,16234:15799000,22557290 -g1,16234:16115146,22557290 -g1,16234:16431292,22557290 -g1,16234:16747438,22557290 -g1,16234:18012021,22557290 -g1,16234:19908895,22557290 -g1,16234:20225041,22557290 -g1,16234:20541187,22557290 -g1,16234:20857333,22557290 -g1,16234:21173479,22557290 -g1,16234:21489625,22557290 -h1,16234:23386499,22557290:0,0,0 -k1,16234:32583029,22557290:9196530 -g1,16234:32583029,22557290 -) -(1,16234:6630773,23223468:25952256,404226,6290 -h1,16234:6630773,23223468:0,0,0 -g1,16234:7579210,23223468 -g1,16234:8211502,23223468 -g1,16234:8843794,23223468 -g1,16234:9476086,23223468 -g1,16234:11056815,23223468 -h1,16234:12321398,23223468:0,0,0 -k1,16234:32583030,23223468:20261632 -g1,16234:32583030,23223468 -) -] -) -g1,16235:32583029,23229758 -g1,16235:6630773,23229758 -g1,16235:6630773,23229758 -g1,16235:32583029,23229758 -g1,16235:32583029,23229758 -) -h1,16235:6630773,23426366:0,0,0 -(1,16239:6630773,24759691:25952256,513147,115847 -h1,16238:6630773,24759691:983040,0,0 -k1,16238:10661600,24759691:257919 -(1,16238:10661600,24759691:0,452978,115847 -r1,16290:13481849,24759691:2820249,568825,115847 -k1,16238:10661600,24759691:-2820249 -) -(1,16238:10661600,24759691:2820249,452978,115847 -k1,16238:10661600,24759691:3277 -h1,16238:13478572,24759691:0,411205,112570 -) -k1,16238:13739768,24759691:257919 -k1,16238:15101969,24759691:257919 -k1,16238:16107654,24759691:257919 -k1,16238:17878799,24759691:257919 -k1,16238:18788146,24759691:257919 -k1,16238:21250041,24759691:257919 -k1,16238:21863820,24759691:257919 -k1,16238:24201852,24759691:257919 -k1,16238:25119063,24759691:257919 -k1,16238:29621094,24759691:257919 -k1,16238:31835263,24759691:257919 -k1,16238:32583029,24759691:0 -) -(1,16239:6630773,25601179:25952256,505283,134348 -k1,16238:8424375,25601179:216150 -k1,16238:10034476,25601179:216150 -k1,16238:13425846,25601179:216151 -k1,16238:16676313,25601179:216150 -k1,16238:19319261,25601179:216150 -k1,16238:20929362,25601179:216150 -(1,16238:20929362,25601179:0,452978,115847 -r1,16290:22694476,25601179:1765114,568825,115847 -k1,16238:20929362,25601179:-1765114 -) -(1,16238:20929362,25601179:1765114,452978,115847 -g1,16238:21636063,25601179 -g1,16238:22339487,25601179 -h1,16238:22691199,25601179:0,411205,112570 -) -k1,16238:22910627,25601179:216151 -k1,16238:23742815,25601179:216150 -k1,16238:25392893,25601179:216150 -k1,16238:26197556,25601179:216150 -k1,16238:28841161,25601179:216151 -k1,16238:30696366,25601179:216150 -k1,16238:31563944,25601179:216150 -k1,16238:32583029,25601179:0 -) -(1,16239:6630773,26442667:25952256,505283,134348 -k1,16238:9129333,26442667:257229 -k1,16238:12458890,26442667:257229 -k1,16238:13402281,26442667:257229 -k1,16238:16279639,26442667:257229 -k1,16238:18963666,26442667:257229 -k1,16238:19903780,26442667:257229 -k1,16238:22543897,26442667:257228 -k1,16238:24869442,26442667:257229 -k1,16238:25742709,26442667:257229 -k1,16238:26355798,26442667:257229 -k1,16238:28764574,26442667:257229 -k1,16238:31753999,26442667:257229 -k1,16239:32583029,26442667:0 -) -(1,16239:6630773,27284155:25952256,505283,126483 -k1,16238:8666456,27284155:224923 -k1,16238:9507418,27284155:224924 -k1,16238:11166269,27284155:224923 -k1,16238:11806010,27284155:224898 -k1,16238:13135215,27284155:224923 -k1,16238:14735740,27284155:224924 -k1,16238:15708429,27284155:224923 -k1,16238:18727153,27284155:224924 -k1,16238:20641594,27284155:224923 -(1,16238:20641594,27284155:0,452978,115847 -r1,16290:23461843,27284155:2820249,568825,115847 -k1,16238:20641594,27284155:-2820249 -) -(1,16238:20641594,27284155:2820249,452978,115847 -k1,16238:20641594,27284155:3277 -h1,16238:23458566,27284155:0,411205,112570 -) -k1,16238:23686767,27284155:224924 -k1,16238:26289992,27284155:224923 -k1,16238:27906901,27284155:224924 -k1,16238:30514713,27284155:224923 -k1,16238:32583029,27284155:0 -) -(1,16239:6630773,28125643:25952256,513147,126483 -g1,16238:10258190,28125643 -g1,16238:11851370,28125643 -g1,16238:12406459,28125643 -g1,16238:14586841,28125643 -g1,16238:15733721,28125643 -k1,16239:32583029,28125643:13668846 -g1,16239:32583029,28125643 -) -v1,16241:6630773,29283659:0,393216,0 -(1,16254:6630773,34163959:25952256,5273516,196608 -g1,16254:6630773,34163959 -g1,16254:6630773,34163959 -g1,16254:6434165,34163959 -(1,16254:6434165,34163959:0,5273516,196608 -r1,16290:32779637,34163959:26345472,5470124,196608 -k1,16254:6434165,34163959:-26345472 -) -(1,16254:6434165,34163959:26345472,5273516,196608 -[1,16254:6630773,34163959:25952256,5076908,0 -(1,16243:6630773,29491277:25952256,404226,107478 -(1,16242:6630773,29491277:0,0,0 -g1,16242:6630773,29491277 -g1,16242:6630773,29491277 -g1,16242:6303093,29491277 -(1,16242:6303093,29491277:0,0,0 -) -g1,16242:6630773,29491277 -) -k1,16243:6630773,29491277:0 -g1,16243:13269833,29491277 -k1,16243:13269833,29491277:0 -h1,16243:15166707,29491277:0,0,0 -k1,16243:32583029,29491277:17416322 -g1,16243:32583029,29491277 -) -(1,16253:6630773,30157455:25952256,404226,9436 -(1,16245:6630773,30157455:0,0,0 -g1,16245:6630773,30157455 -g1,16245:6630773,30157455 -g1,16245:6303093,30157455 -(1,16245:6303093,30157455:0,0,0 -) -g1,16245:6630773,30157455 -) -g1,16253:7579210,30157455 -g1,16253:8211502,30157455 -g1,16253:8843794,30157455 -g1,16253:11372960,30157455 -g1,16253:12637543,30157455 -g1,16253:13269835,30157455 -h1,16253:13585981,30157455:0,0,0 -k1,16253:32583029,30157455:18997048 -g1,16253:32583029,30157455 -) -(1,16253:6630773,30823633:25952256,404226,101187 -h1,16253:6630773,30823633:0,0,0 -g1,16253:7579210,30823633 -g1,16253:7895356,30823633 -g1,16253:8211502,30823633 -g1,16253:10740668,30823633 -g1,16253:13902125,30823633 -g1,16253:17379728,30823633 -h1,16253:19908893,30823633:0,0,0 -k1,16253:32583029,30823633:12674136 -g1,16253:32583029,30823633 -) -(1,16253:6630773,31489811:25952256,410518,6290 -h1,16253:6630773,31489811:0,0,0 -g1,16253:7579210,31489811 -g1,16253:7895356,31489811 -g1,16253:8211502,31489811 -g1,16253:10108377,31489811 -g1,16253:10424523,31489811 -g1,16253:10740669,31489811 -g1,16253:11056815,31489811 -g1,16253:11372961,31489811 -g1,16253:11689107,31489811 -g1,16253:12005253,31489811 -g1,16253:13902128,31489811 -g1,16253:15799003,31489811 -g1,16253:16115149,31489811 -g1,16253:16431295,31489811 -g1,16253:16747441,31489811 -g1,16253:17063587,31489811 -g1,16253:17379733,31489811 -k1,16253:17379733,31489811:0 -h1,16253:18960462,31489811:0,0,0 -k1,16253:32583029,31489811:13622567 -g1,16253:32583029,31489811 -) -(1,16253:6630773,32155989:25952256,404226,107478 -h1,16253:6630773,32155989:0,0,0 -g1,16253:7579210,32155989 -g1,16253:8211502,32155989 -g1,16253:10424522,32155989 -g1,16253:10740668,32155989 -g1,16253:11056814,32155989 -g1,16253:11372960,32155989 -g1,16253:11689106,32155989 -g1,16253:12005252,32155989 -g1,16253:12321398,32155989 -g1,16253:12637544,32155989 -g1,16253:13902127,32155989 -g1,16253:15799001,32155989 -g1,16253:16115147,32155989 -g1,16253:16431293,32155989 -g1,16253:16747439,32155989 -g1,16253:17063585,32155989 -g1,16253:17379731,32155989 -h1,16253:19276605,32155989:0,0,0 -k1,16253:32583029,32155989:13306424 -g1,16253:32583029,32155989 -) -(1,16253:6630773,32822167:25952256,404226,101187 -h1,16253:6630773,32822167:0,0,0 -g1,16253:7579210,32822167 -g1,16253:8211502,32822167 -g1,16253:10424522,32822167 -g1,16253:10740668,32822167 -g1,16253:11056814,32822167 -g1,16253:11372960,32822167 -g1,16253:11689106,32822167 -g1,16253:12005252,32822167 -g1,16253:12321398,32822167 -g1,16253:12637544,32822167 -g1,16253:13902127,32822167 -g1,16253:15799001,32822167 -g1,16253:16115147,32822167 -g1,16253:16431293,32822167 -g1,16253:16747439,32822167 -g1,16253:17063585,32822167 -g1,16253:17379731,32822167 -h1,16253:18960459,32822167:0,0,0 -k1,16253:32583029,32822167:13622570 -g1,16253:32583029,32822167 -) -(1,16253:6630773,33488345:25952256,404226,107478 -h1,16253:6630773,33488345:0,0,0 -g1,16253:7579210,33488345 -g1,16253:8211502,33488345 -g1,16253:10424522,33488345 -g1,16253:10740668,33488345 -g1,16253:11056814,33488345 -g1,16253:11372960,33488345 -g1,16253:11689106,33488345 -g1,16253:12005252,33488345 -g1,16253:12321398,33488345 -g1,16253:12637544,33488345 -g1,16253:13902127,33488345 -g1,16253:15799001,33488345 -g1,16253:16115147,33488345 -g1,16253:16431293,33488345 -g1,16253:16747439,33488345 -g1,16253:17063585,33488345 -g1,16253:17379731,33488345 -h1,16253:19276605,33488345:0,0,0 -k1,16253:32583029,33488345:13306424 -g1,16253:32583029,33488345 -) -(1,16253:6630773,34154523:25952256,404226,9436 -h1,16253:6630773,34154523:0,0,0 -g1,16253:7579210,34154523 -g1,16253:8211502,34154523 -g1,16253:8843794,34154523 -g1,16253:10108377,34154523 -g1,16253:11689106,34154523 -h1,16253:12953689,34154523:0,0,0 -k1,16253:32583029,34154523:19629340 -g1,16253:32583029,34154523 -) -] -) -g1,16254:32583029,34163959 -g1,16254:6630773,34163959 -g1,16254:6630773,34163959 -g1,16254:32583029,34163959 -g1,16254:32583029,34163959 -) -h1,16254:6630773,34360567:0,0,0 -(1,16258:6630773,35693892:25952256,513147,126483 -h1,16257:6630773,35693892:983040,0,0 -k1,16257:8483452,35693892:241804 -k1,16257:11564932,35693892:241805 -(1,16257:11564932,35693892:0,452978,115847 -r1,16290:14385181,35693892:2820249,568825,115847 -k1,16257:11564932,35693892:-2820249 -) -(1,16257:11564932,35693892:2820249,452978,115847 -k1,16257:11564932,35693892:3277 -h1,16257:14381904,35693892:0,411205,112570 -) -k1,16257:14626985,35693892:241804 -k1,16257:15554951,35693892:241804 -k1,16257:17498726,35693892:241805 -k1,16257:20766327,35693892:241804 -k1,16257:21624169,35693892:241804 -k1,16257:23838606,35693892:241804 -k1,16257:26128411,35693892:241805 -k1,16257:29804302,35693892:241804 -k1,16257:32583029,35693892:0 -) -(1,16258:6630773,36535380:25952256,513147,126483 -k1,16257:7588341,36535380:196040 -k1,16257:10810179,36535380:196041 -(1,16257:10810179,36535380:0,452978,115847 -r1,16290:15388987,36535380:4578808,568825,115847 -k1,16257:10810179,36535380:-4578808 -) -(1,16257:10810179,36535380:4578808,452978,115847 -k1,16257:10810179,36535380:3277 -h1,16257:15385710,36535380:0,411205,112570 -) -k1,16257:15758697,36535380:196040 -(1,16257:15758697,36535380:0,452978,115847 -r1,16290:19634081,36535380:3875384,568825,115847 -k1,16257:15758697,36535380:-3875384 -) -(1,16257:15758697,36535380:3875384,452978,115847 -k1,16257:15758697,36535380:3277 -h1,16257:19630804,36535380:0,411205,112570 -) -k1,16257:20003791,36535380:196040 -(1,16257:20003791,36535380:0,452978,115847 -r1,16290:23527463,36535380:3523672,568825,115847 -k1,16257:20003791,36535380:-3523672 -) -(1,16257:20003791,36535380:3523672,452978,115847 -k1,16257:20003791,36535380:3277 -h1,16257:23524186,36535380:0,411205,112570 -) -k1,16257:23897174,36535380:196041 -k1,16257:25284659,36535380:196040 -(1,16257:25284659,36535380:0,452978,115847 -r1,16290:28456619,36535380:3171960,568825,115847 -k1,16257:25284659,36535380:-3171960 -) -(1,16257:25284659,36535380:3171960,452978,115847 -k1,16257:25284659,36535380:3277 -h1,16257:28453342,36535380:0,411205,112570 -) -k1,16257:28652659,36535380:196040 -k1,16257:29500128,36535380:196041 -k1,16257:31900144,36535380:196040 -k1,16257:32583029,36535380:0 -) -(1,16258:6630773,37376868:25952256,513147,126483 -k1,16257:8792169,37376868:296897 -k1,16257:11975926,37376868:296896 -k1,16257:13314845,37376868:296897 -k1,16257:14814983,37376868:296897 -k1,16257:17773297,37376868:296897 -k1,16257:18938545,37376868:296896 -k1,16257:20327927,37376868:296897 -k1,16257:21643909,37376868:296897 -k1,16257:26534224,37376868:296897 -(1,16257:26534224,37376868:0,452978,115847 -r1,16290:29002761,37376868:2468537,568825,115847 -k1,16257:26534224,37376868:-2468537 -) -(1,16257:26534224,37376868:2468537,452978,115847 -k1,16257:26534224,37376868:3277 -h1,16257:28999484,37376868:0,411205,112570 -) -k1,16257:29299657,37376868:296896 -k1,16257:31923737,37376868:296897 -k1,16258:32583029,37376868:0 -) -(1,16258:6630773,38218356:25952256,452978,122846 -(1,16257:6630773,38218356:0,452978,122846 -r1,16290:10857869,38218356:4227096,575824,122846 -k1,16257:6630773,38218356:-4227096 -) -(1,16257:6630773,38218356:4227096,452978,122846 -k1,16257:6630773,38218356:3277 -h1,16257:10854592,38218356:0,411205,112570 -) -k1,16258:32583029,38218356:21551490 -g1,16258:32583029,38218356 -) -v1,16260:6630773,39376371:0,393216,0 -(1,16273:6630773,44253525:25952256,5270370,196608 -g1,16273:6630773,44253525 -g1,16273:6630773,44253525 -g1,16273:6434165,44253525 -(1,16273:6434165,44253525:0,5270370,196608 -r1,16290:32779637,44253525:26345472,5466978,196608 -k1,16273:6434165,44253525:-26345472 -) -(1,16273:6434165,44253525:26345472,5270370,196608 -[1,16273:6630773,44253525:25952256,5073762,0 -(1,16262:6630773,39583989:25952256,404226,101187 -(1,16261:6630773,39583989:0,0,0 -g1,16261:6630773,39583989 -g1,16261:6630773,39583989 -g1,16261:6303093,39583989 -(1,16261:6303093,39583989:0,0,0 -) -g1,16261:6630773,39583989 -) -k1,16262:6630773,39583989:0 -g1,16262:11689104,39583989 -k1,16262:11689104,39583989:0 -h1,16262:18644309,39583989:0,0,0 -k1,16262:32583029,39583989:13938720 -g1,16262:32583029,39583989 -) -(1,16272:6630773,40250167:25952256,404226,9436 -(1,16264:6630773,40250167:0,0,0 -g1,16264:6630773,40250167 -g1,16264:6630773,40250167 -g1,16264:6303093,40250167 -(1,16264:6303093,40250167:0,0,0 -) -g1,16264:6630773,40250167 -) -g1,16272:7579210,40250167 -g1,16272:8211502,40250167 -g1,16272:8843794,40250167 -g1,16272:11372960,40250167 -g1,16272:12637543,40250167 -g1,16272:13269835,40250167 -h1,16272:13585981,40250167:0,0,0 -k1,16272:32583029,40250167:18997048 -g1,16272:32583029,40250167 -) -(1,16272:6630773,40916345:25952256,404226,107478 -h1,16272:6630773,40916345:0,0,0 -g1,16272:7579210,40916345 -g1,16272:7895356,40916345 -g1,16272:8211502,40916345 -g1,16272:12321396,40916345 -g1,16272:16115144,40916345 -h1,16272:18328164,40916345:0,0,0 -k1,16272:32583029,40916345:14254865 -g1,16272:32583029,40916345 -) -(1,16272:6630773,41582523:25952256,410518,6290 -h1,16272:6630773,41582523:0,0,0 -g1,16272:7579210,41582523 -g1,16272:7895356,41582523 -g1,16272:8211502,41582523 -g1,16272:8527648,41582523 -g1,16272:8843794,41582523 -g1,16272:9159940,41582523 -g1,16272:9476086,41582523 -g1,16272:9792232,41582523 -g1,16272:10108378,41582523 -g1,16272:10424524,41582523 -g1,16272:12321399,41582523 -g1,16272:12637545,41582523 -g1,16272:12953691,41582523 -g1,16272:13269837,41582523 -g1,16272:13585983,41582523 -g1,16272:13902129,41582523 -g1,16272:14218275,41582523 -g1,16272:16115150,41582523 -k1,16272:16115150,41582523:0 -h1,16272:17695879,41582523:0,0,0 -k1,16272:32583029,41582523:14887150 -g1,16272:32583029,41582523 -) -(1,16272:6630773,42248701:25952256,388497,9436 -h1,16272:6630773,42248701:0,0,0 -g1,16272:7579210,42248701 -g1,16272:8211502,42248701 -g1,16272:8527648,42248701 -g1,16272:8843794,42248701 -g1,16272:9159940,42248701 -g1,16272:9476086,42248701 -g1,16272:9792232,42248701 -g1,16272:10108378,42248701 -g1,16272:10424524,42248701 -g1,16272:10740670,42248701 -g1,16272:11056816,42248701 -g1,16272:12321399,42248701 -g1,16272:12637545,42248701 -g1,16272:12953691,42248701 -g1,16272:13269837,42248701 -g1,16272:13585983,42248701 -g1,16272:13902129,42248701 -g1,16272:14218275,42248701 -g1,16272:14534421,42248701 -g1,16272:14850567,42248701 -g1,16272:16115150,42248701 -h1,16272:18012024,42248701:0,0,0 -k1,16272:32583029,42248701:14571005 -g1,16272:32583029,42248701 -) -(1,16272:6630773,42914879:25952256,388497,9436 -h1,16272:6630773,42914879:0,0,0 -g1,16272:7579210,42914879 -g1,16272:8211502,42914879 -g1,16272:8527648,42914879 -g1,16272:8843794,42914879 -g1,16272:9159940,42914879 -g1,16272:9476086,42914879 -g1,16272:9792232,42914879 -g1,16272:10108378,42914879 -g1,16272:10424524,42914879 -g1,16272:10740670,42914879 -g1,16272:11056816,42914879 -g1,16272:12321399,42914879 -g1,16272:12637545,42914879 -g1,16272:12953691,42914879 -g1,16272:13269837,42914879 -g1,16272:13585983,42914879 -g1,16272:13902129,42914879 -g1,16272:14218275,42914879 -g1,16272:14534421,42914879 -g1,16272:14850567,42914879 -g1,16272:16115150,42914879 -h1,16272:18012024,42914879:0,0,0 -k1,16272:32583029,42914879:14571005 -g1,16272:32583029,42914879 -) -(1,16272:6630773,43581057:25952256,388497,9436 -h1,16272:6630773,43581057:0,0,0 -g1,16272:7579210,43581057 -g1,16272:8211502,43581057 -g1,16272:8527648,43581057 -g1,16272:8843794,43581057 -g1,16272:9159940,43581057 -g1,16272:9476086,43581057 -g1,16272:9792232,43581057 -g1,16272:10108378,43581057 -g1,16272:10424524,43581057 -g1,16272:10740670,43581057 -g1,16272:11056816,43581057 -g1,16272:12321399,43581057 -g1,16272:12637545,43581057 -g1,16272:12953691,43581057 -g1,16272:13269837,43581057 -g1,16272:13585983,43581057 -g1,16272:13902129,43581057 -g1,16272:14218275,43581057 -g1,16272:14534421,43581057 -g1,16272:14850567,43581057 -g1,16272:16115150,43581057 -h1,16272:18012024,43581057:0,0,0 -k1,16272:32583029,43581057:14571005 -g1,16272:32583029,43581057 -) -(1,16272:6630773,44247235:25952256,404226,6290 -h1,16272:6630773,44247235:0,0,0 -g1,16272:7579210,44247235 -g1,16272:8211502,44247235 -g1,16272:8843794,44247235 -g1,16272:10108377,44247235 -g1,16272:11689106,44247235 -h1,16272:12953689,44247235:0,0,0 -k1,16272:32583029,44247235:19629340 -g1,16272:32583029,44247235 -) -] -) -g1,16273:32583029,44253525 -g1,16273:6630773,44253525 -g1,16273:6630773,44253525 -g1,16273:32583029,44253525 -g1,16273:32583029,44253525 -) -h1,16273:6630773,44450133:0,0,0 -v1,16277:6630773,46099985:0,393216,0 -] -(1,16290:32583029,45706769:0,0,0 -g1,16290:32583029,45706769 -) -) -] -(1,16290:6630773,47279633:25952256,0,0 -h1,16290:6630773,47279633:25952256,0,0 -) -] -(1,16290:4262630,4025873:0,0,0 -[1,16290:-473656,4025873:0,0,0 -(1,16290:-473656,-710413:0,0,0 -(1,16290:-473656,-710413:0,0,0 -g1,16290:-473656,-710413 -) -g1,16290:-473656,-710413 -) -] -) -] -!33795 -}278 +] +) +] +!33996 +}262 +Input:2390:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2391:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2392:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2393:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2394:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2395:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -279067,2010 +275663,2066 @@ Input:2399:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConso Input:2400:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2401:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2402:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2403:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2404:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2405:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2406:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2407:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2408:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2409:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2410:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2411:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1798 -{279 -[1,16462:4262630,47279633:28320399,43253760,0 -(1,16462:4262630,4025873:0,0,0 -[1,16462:-473656,4025873:0,0,0 -(1,16462:-473656,-710413:0,0,0 -(1,16462:-473656,-644877:0,0,0 -k1,16462:-473656,-644877:-65536 +!1234 +{263 +[1,16347:4262630,47279633:28320399,43253760,0 +(1,16347:4262630,4025873:0,0,0 +[1,16347:-473656,4025873:0,0,0 +(1,16347:-473656,-710413:0,0,0 +(1,16347:-473656,-644877:0,0,0 +k1,16347:-473656,-644877:-65536 ) -(1,16462:-473656,4736287:0,0,0 -k1,16462:-473656,4736287:5209943 +(1,16347:-473656,4736287:0,0,0 +k1,16347:-473656,4736287:5209943 ) -g1,16462:-473656,-710413 +g1,16347:-473656,-710413 ) ] ) -[1,16462:6630773,47279633:25952256,43253760,0 -[1,16462:6630773,4812305:25952256,786432,0 -(1,16462:6630773,4812305:25952256,505283,134348 -(1,16462:6630773,4812305:25952256,505283,134348 -g1,16462:3078558,4812305 -[1,16462:3078558,4812305:0,0,0 -(1,16462:3078558,2439708:0,1703936,0 -k1,16462:1358238,2439708:-1720320 -(1,15243:1358238,2439708:1720320,1703936,0 -(1,15243:1358238,2439708:1179648,16384,0 -r1,16462:2537886,2439708:1179648,16384,0 +[1,16347:6630773,47279633:25952256,43253760,0 +[1,16347:6630773,4812305:25952256,786432,0 +(1,16347:6630773,4812305:25952256,505283,134348 +(1,16347:6630773,4812305:25952256,505283,134348 +g1,16347:3078558,4812305 +[1,16347:3078558,4812305:0,0,0 +(1,16347:3078558,2439708:0,1703936,0 +k1,16347:1358238,2439708:-1720320 +(1,15456:1358238,2439708:1720320,1703936,0 +(1,15456:1358238,2439708:1179648,16384,0 +r1,16347:2537886,2439708:1179648,16384,0 ) -g1,15243:3062174,2439708 -(1,15243:3062174,2439708:16384,1703936,0 -[1,15243:3062174,2439708:25952256,1703936,0 -(1,15243:3062174,1915420:25952256,1179648,0 -(1,15243:3062174,1915420:16384,1179648,0 -r1,16462:3078558,1915420:16384,1179648,0 +g1,15456:3062174,2439708 +(1,15456:3062174,2439708:16384,1703936,0 +[1,15456:3062174,2439708:25952256,1703936,0 +(1,15456:3062174,1915420:25952256,1179648,0 +(1,15456:3062174,1915420:16384,1179648,0 +r1,16347:3078558,1915420:16384,1179648,0 ) -k1,15243:29014430,1915420:25935872 -g1,15243:29014430,1915420 +k1,15456:29014430,1915420:25935872 +g1,15456:29014430,1915420 ) ] ) ) ) ] -[1,16462:3078558,4812305:0,0,0 -(1,16462:3078558,2439708:0,1703936,0 -g1,16462:29030814,2439708 -g1,16462:36135244,2439708 -(1,15243:36135244,2439708:1720320,1703936,0 -(1,15243:36135244,2439708:16384,1703936,0 -[1,15243:36135244,2439708:25952256,1703936,0 -(1,15243:36135244,1915420:25952256,1179648,0 -(1,15243:36135244,1915420:16384,1179648,0 -r1,16462:36151628,1915420:16384,1179648,0 +[1,16347:3078558,4812305:0,0,0 +(1,16347:3078558,2439708:0,1703936,0 +g1,16347:29030814,2439708 +g1,16347:36135244,2439708 +(1,15456:36135244,2439708:1720320,1703936,0 +(1,15456:36135244,2439708:16384,1703936,0 +[1,15456:36135244,2439708:25952256,1703936,0 +(1,15456:36135244,1915420:25952256,1179648,0 +(1,15456:36135244,1915420:16384,1179648,0 +r1,16347:36151628,1915420:16384,1179648,0 ) -k1,15243:62087500,1915420:25935872 -g1,15243:62087500,1915420 +k1,15456:62087500,1915420:25935872 +g1,15456:62087500,1915420 ) ] ) -g1,15243:36675916,2439708 -(1,15243:36675916,2439708:1179648,16384,0 -r1,16462:37855564,2439708:1179648,16384,0 +g1,15456:36675916,2439708 +(1,15456:36675916,2439708:1179648,16384,0 +r1,16347:37855564,2439708:1179648,16384,0 ) ) -k1,16462:3078556,2439708:-34777008 +k1,16347:3078556,2439708:-34777008 ) ] -[1,16462:3078558,4812305:0,0,0 -(1,16462:3078558,49800853:0,16384,2228224 -k1,16462:1358238,49800853:-1720320 -(1,15243:1358238,49800853:1720320,16384,2228224 -(1,15243:1358238,49800853:1179648,16384,0 -r1,16462:2537886,49800853:1179648,16384,0 +[1,16347:3078558,4812305:0,0,0 +(1,16347:3078558,49800853:0,16384,2228224 +k1,16347:1358238,49800853:-1720320 +(1,15456:1358238,49800853:1720320,16384,2228224 +(1,15456:1358238,49800853:1179648,16384,0 +r1,16347:2537886,49800853:1179648,16384,0 ) -g1,15243:3062174,49800853 -(1,15243:3062174,52029077:16384,1703936,0 -[1,15243:3062174,52029077:25952256,1703936,0 -(1,15243:3062174,51504789:25952256,1179648,0 -(1,15243:3062174,51504789:16384,1179648,0 -r1,16462:3078558,51504789:16384,1179648,0 +g1,15456:3062174,49800853 +(1,15456:3062174,52029077:16384,1703936,0 +[1,15456:3062174,52029077:25952256,1703936,0 +(1,15456:3062174,51504789:25952256,1179648,0 +(1,15456:3062174,51504789:16384,1179648,0 +r1,16347:3078558,51504789:16384,1179648,0 ) -k1,15243:29014430,51504789:25935872 -g1,15243:29014430,51504789 +k1,15456:29014430,51504789:25935872 +g1,15456:29014430,51504789 ) ] ) ) ) ] -[1,16462:3078558,4812305:0,0,0 -(1,16462:3078558,49800853:0,16384,2228224 -g1,16462:29030814,49800853 -g1,16462:36135244,49800853 -(1,15243:36135244,49800853:1720320,16384,2228224 -(1,15243:36135244,52029077:16384,1703936,0 -[1,15243:36135244,52029077:25952256,1703936,0 -(1,15243:36135244,51504789:25952256,1179648,0 -(1,15243:36135244,51504789:16384,1179648,0 -r1,16462:36151628,51504789:16384,1179648,0 +[1,16347:3078558,4812305:0,0,0 +(1,16347:3078558,49800853:0,16384,2228224 +g1,16347:29030814,49800853 +g1,16347:36135244,49800853 +(1,15456:36135244,49800853:1720320,16384,2228224 +(1,15456:36135244,52029077:16384,1703936,0 +[1,15456:36135244,52029077:25952256,1703936,0 +(1,15456:36135244,51504789:25952256,1179648,0 +(1,15456:36135244,51504789:16384,1179648,0 +r1,16347:36151628,51504789:16384,1179648,0 +) +k1,15456:62087500,51504789:25935872 +g1,15456:62087500,51504789 +) +] +) +g1,15456:36675916,49800853 +(1,15456:36675916,49800853:1179648,16384,0 +r1,16347:37855564,49800853:1179648,16384,0 ) -k1,15243:62087500,51504789:25935872 -g1,15243:62087500,51504789 -) -] -) -g1,15243:36675916,49800853 -(1,15243:36675916,49800853:1179648,16384,0 -r1,16462:37855564,49800853:1179648,16384,0 -) -) -k1,16462:3078556,49800853:-34777008 -) -] -g1,16462:6630773,4812305 -k1,16462:23311652,4812305:15485502 -g1,16462:23960458,4812305 -g1,16462:27572802,4812305 -g1,16462:29306229,4812305 -) -) -] -[1,16462:6630773,45706769:25952256,40108032,0 -(1,16462:6630773,45706769:25952256,40108032,0 -(1,16462:6630773,45706769:0,0,0 -g1,16462:6630773,45706769 -) -[1,16462:6630773,45706769:25952256,40108032,0 -v1,16290:6630773,6254097:0,393216,0 -(1,16290:6630773,11131251:25952256,5270370,196608 -g1,16290:6630773,11131251 -g1,16290:6630773,11131251 -g1,16290:6434165,11131251 -(1,16290:6434165,11131251:0,5270370,196608 -r1,16462:32779637,11131251:26345472,5466978,196608 -k1,16290:6434165,11131251:-26345472 -) -(1,16290:6434165,11131251:26345472,5270370,196608 -[1,16290:6630773,11131251:25952256,5073762,0 -(1,16279:6630773,6461715:25952256,404226,101187 -(1,16278:6630773,6461715:0,0,0 -g1,16278:6630773,6461715 -g1,16278:6630773,6461715 -g1,16278:6303093,6461715 -(1,16278:6303093,6461715:0,0,0 -) -g1,16278:6630773,6461715 -) -k1,16279:6630773,6461715:0 -g1,16279:11689104,6461715 -g1,16279:14534416,6461715 -k1,16279:14534416,6461715:0 -h1,16279:19276601,6461715:0,0,0 -k1,16279:32583029,6461715:13306428 -g1,16279:32583029,6461715 -) -(1,16289:6630773,7127893:25952256,404226,9436 -(1,16281:6630773,7127893:0,0,0 -g1,16281:6630773,7127893 -g1,16281:6630773,7127893 -g1,16281:6303093,7127893 -(1,16281:6303093,7127893:0,0,0 -) -g1,16281:6630773,7127893 -) -g1,16289:7579210,7127893 -g1,16289:8211502,7127893 -g1,16289:8843794,7127893 -g1,16289:11372960,7127893 -g1,16289:12637543,7127893 -g1,16289:13269835,7127893 -h1,16289:13585981,7127893:0,0,0 -k1,16289:32583029,7127893:18997048 -g1,16289:32583029,7127893 -) -(1,16289:6630773,7794071:25952256,404226,107478 -h1,16289:6630773,7794071:0,0,0 -g1,16289:7579210,7794071 -g1,16289:7895356,7794071 -g1,16289:8211502,7794071 -g1,16289:10740668,7794071 -g1,16289:14850562,7794071 -h1,16289:18328164,7794071:0,0,0 -k1,16289:32583029,7794071:14254865 -g1,16289:32583029,7794071 -) -(1,16289:6630773,8460249:25952256,410518,6290 -h1,16289:6630773,8460249:0,0,0 -g1,16289:7579210,8460249 -g1,16289:7895356,8460249 -g1,16289:8211502,8460249 -g1,16289:10108377,8460249 -g1,16289:10424523,8460249 -g1,16289:10740669,8460249 -g1,16289:11056815,8460249 -g1,16289:11372961,8460249 -g1,16289:11689107,8460249 -g1,16289:12005253,8460249 -g1,16289:12321399,8460249 -g1,16289:12637545,8460249 -g1,16289:12953691,8460249 -g1,16289:14850566,8460249 -g1,16289:15166712,8460249 -g1,16289:15482858,8460249 -g1,16289:15799004,8460249 -g1,16289:16115150,8460249 -g1,16289:16431296,8460249 -g1,16289:16747442,8460249 -k1,16289:16747442,8460249:0 -h1,16289:18328171,8460249:0,0,0 -k1,16289:32583029,8460249:14254858 -g1,16289:32583029,8460249 -) -(1,16289:6630773,9126427:25952256,388497,9436 -h1,16289:6630773,9126427:0,0,0 -g1,16289:7579210,9126427 -g1,16289:8211502,9126427 -g1,16289:10424522,9126427 -g1,16289:10740668,9126427 -g1,16289:11056814,9126427 -g1,16289:11372960,9126427 -g1,16289:11689106,9126427 -g1,16289:12005252,9126427 -g1,16289:12321398,9126427 -g1,16289:12637544,9126427 -g1,16289:12953690,9126427 -g1,16289:13269836,9126427 -g1,16289:13585982,9126427 -g1,16289:14850565,9126427 -g1,16289:15166711,9126427 -g1,16289:15482857,9126427 -g1,16289:15799003,9126427 -g1,16289:16115149,9126427 -g1,16289:16431295,9126427 -g1,16289:16747441,9126427 -g1,16289:17063587,9126427 -g1,16289:17379733,9126427 -h1,16289:18328170,9126427:0,0,0 -k1,16289:32583029,9126427:14254859 -g1,16289:32583029,9126427 -) -(1,16289:6630773,9792605:25952256,388497,9436 -h1,16289:6630773,9792605:0,0,0 -g1,16289:7579210,9792605 -g1,16289:8211502,9792605 -g1,16289:10424522,9792605 -g1,16289:10740668,9792605 -g1,16289:11056814,9792605 -g1,16289:11372960,9792605 -g1,16289:11689106,9792605 -g1,16289:12005252,9792605 -g1,16289:12321398,9792605 -g1,16289:12637544,9792605 -g1,16289:12953690,9792605 -g1,16289:13269836,9792605 -g1,16289:13585982,9792605 -g1,16289:14850565,9792605 -g1,16289:15166711,9792605 -g1,16289:15482857,9792605 -g1,16289:15799003,9792605 -g1,16289:16115149,9792605 -g1,16289:16431295,9792605 -g1,16289:16747441,9792605 -g1,16289:17063587,9792605 -g1,16289:17379733,9792605 -h1,16289:17695879,9792605:0,0,0 -k1,16289:32583029,9792605:14887150 -g1,16289:32583029,9792605 -) -(1,16289:6630773,10458783:25952256,388497,9436 -h1,16289:6630773,10458783:0,0,0 -g1,16289:7579210,10458783 -g1,16289:8211502,10458783 -g1,16289:10424522,10458783 -g1,16289:10740668,10458783 -g1,16289:11056814,10458783 -g1,16289:11372960,10458783 -g1,16289:11689106,10458783 -g1,16289:12005252,10458783 -g1,16289:12321398,10458783 -g1,16289:12637544,10458783 -g1,16289:12953690,10458783 -g1,16289:13269836,10458783 -g1,16289:13585982,10458783 -g1,16289:14850565,10458783 -g1,16289:15166711,10458783 -g1,16289:15482857,10458783 -g1,16289:15799003,10458783 -g1,16289:16115149,10458783 -g1,16289:16431295,10458783 -g1,16289:16747441,10458783 -g1,16289:17063587,10458783 -g1,16289:17379733,10458783 -h1,16289:18328170,10458783:0,0,0 -k1,16289:32583029,10458783:14254859 -g1,16289:32583029,10458783 -) -(1,16289:6630773,11124961:25952256,404226,6290 -h1,16289:6630773,11124961:0,0,0 -g1,16289:7579210,11124961 -g1,16289:8211502,11124961 -g1,16289:8843794,11124961 -g1,16289:10108377,11124961 -g1,16289:11689106,11124961 -h1,16289:12953689,11124961:0,0,0 -k1,16289:32583029,11124961:19629340 -g1,16289:32583029,11124961 -) -] -) -g1,16290:32583029,11131251 -g1,16290:6630773,11131251 -g1,16290:6630773,11131251 -g1,16290:32583029,11131251 -g1,16290:32583029,11131251 -) -h1,16290:6630773,11327859:0,0,0 -(1,16294:6630773,12693635:25952256,505283,126483 -h1,16293:6630773,12693635:983040,0,0 -k1,16293:10676951,12693635:273270 -(1,16293:10676951,12693635:0,452978,115847 -r1,16462:13497200,12693635:2820249,568825,115847 -k1,16293:10676951,12693635:-2820249 -) -(1,16293:10676951,12693635:2820249,452978,115847 -k1,16293:10676951,12693635:3277 -h1,16293:13493923,12693635:0,411205,112570 -) -k1,16293:13770471,12693635:273271 -k1,16293:15148023,12693635:273270 -k1,16293:16169060,12693635:273271 -k1,16293:17955556,12693635:273270 -k1,16293:18880254,12693635:273270 -k1,16293:21527239,12693635:273271 -k1,16293:24687370,12693635:273270 -k1,16293:27565697,12693635:273271 -k1,16293:29272895,12693635:273270 -k1,16293:29960934,12693635:273196 -k1,16293:32583029,12693635:0 -) -(1,16294:6630773,13535123:25952256,513147,115847 -k1,16293:7925646,13535123:275788 -k1,16293:9293918,13535123:275787 -k1,16293:10228998,13535123:275788 -k1,16293:11971482,13535123:275788 -(1,16293:11971482,13535123:0,452978,115847 -r1,16462:14440019,13535123:2468537,568825,115847 -k1,16293:11971482,13535123:-2468537 -) -(1,16293:11971482,13535123:2468537,452978,115847 -k1,16293:11971482,13535123:3277 -h1,16293:14436742,13535123:0,411205,112570 -) -k1,16293:14715807,13535123:275788 -k1,16293:16183039,13535123:275787 -(1,16293:16183039,13535123:0,452978,115847 -r1,16462:19354999,13535123:3171960,568825,115847 -k1,16293:16183039,13535123:-3171960 -) -(1,16293:16183039,13535123:3171960,452978,115847 -k1,16293:16183039,13535123:3277 -h1,16293:19351722,13535123:0,411205,112570 -) -k1,16293:19630787,13535123:275788 -k1,16293:21098020,13535123:275788 -k1,16293:22170726,13535123:275788 -k1,16293:23580286,13535123:275787 -k1,16293:25352261,13535123:275788 -k1,16293:26279477,13535123:275788 -k1,16293:28536418,13535123:275788 -k1,16293:30095400,13535123:275787 -k1,16293:31562633,13535123:275788 -k1,16293:32583029,13535123:0 -) -(1,16294:6630773,14376611:25952256,513147,134348 -k1,16293:9223478,14376611:350718 -k1,16293:10392086,14376611:350719 -k1,16293:12818329,14376611:350718 -k1,16293:15211149,14376611:350718 -k1,16293:16580953,14376611:350719 -k1,16293:19015716,14376611:350718 -k1,16293:20314085,14376611:350718 -k1,16293:22116426,14376611:350719 -k1,16293:24850033,14376611:350718 -k1,16293:26938766,14376611:350718 -k1,16293:27940913,14376611:350719 -k1,16293:29039397,14376611:350718 -k1,16293:32051532,14376611:350718 -k1,16294:32583029,14376611:0 -) -(1,16294:6630773,15218099:25952256,505283,134348 -(1,16293:6630773,15218099:0,452978,115847 -r1,16462:14726699,15218099:8095926,568825,115847 -k1,16293:6630773,15218099:-8095926 -) -(1,16293:6630773,15218099:8095926,452978,115847 -g1,16293:8392609,15218099 -g1,16293:10502880,15218099 -g1,16293:11206304,15218099 -g1,16293:12964863,15218099 -h1,16293:14723422,15218099:0,411205,112570 -) -k1,16293:15173988,15218099:273619 -k1,16293:16644293,15218099:273618 -k1,16293:18090351,15218099:273619 -k1,16293:20432285,15218099:273618 -k1,16293:21810186,15218099:273619 -k1,16293:22831570,15218099:273618 -k1,16293:24799950,15218099:273619 -k1,16293:26929548,15218099:273618 -k1,16293:27889329,15218099:273619 -k1,16293:29554932,15218099:273618 -k1,16293:31896867,15218099:273619 -k1,16293:32583029,15218099:0 -) -(1,16294:6630773,16059587:25952256,505283,134348 -g1,16293:8698433,16059587 -g1,16293:9580547,16059587 -g1,16293:10465938,16059587 -g1,16293:13639846,16059587 -k1,16294:32583029,16059587:16573401 -g1,16294:32583029,16059587 -) -v1,16296:6630773,17250053:0,393216,0 -(1,16309:6630773,22130353:25952256,5273516,196608 -g1,16309:6630773,22130353 -g1,16309:6630773,22130353 -g1,16309:6434165,22130353 -(1,16309:6434165,22130353:0,5273516,196608 -r1,16462:32779637,22130353:26345472,5470124,196608 -k1,16309:6434165,22130353:-26345472 -) -(1,16309:6434165,22130353:26345472,5273516,196608 -[1,16309:6630773,22130353:25952256,5076908,0 -(1,16298:6630773,17457671:25952256,404226,107478 -(1,16297:6630773,17457671:0,0,0 -g1,16297:6630773,17457671 -g1,16297:6630773,17457671 -g1,16297:6303093,17457671 -(1,16297:6303093,17457671:0,0,0 -) -g1,16297:6630773,17457671 -) -k1,16298:6630773,17457671:0 -g1,16298:13269833,17457671 -g1,16298:14534416,17457671 -g1,16298:15166708,17457671 -h1,16298:18328165,17457671:0,0,0 -k1,16298:32583029,17457671:14254864 -g1,16298:32583029,17457671 -) -(1,16308:6630773,18123849:25952256,404226,9436 -(1,16300:6630773,18123849:0,0,0 -g1,16300:6630773,18123849 -g1,16300:6630773,18123849 -g1,16300:6303093,18123849 -(1,16300:6303093,18123849:0,0,0 -) -g1,16300:6630773,18123849 -) -g1,16308:7579210,18123849 -g1,16308:8211502,18123849 -g1,16308:8843794,18123849 -g1,16308:11372960,18123849 -g1,16308:12637543,18123849 -g1,16308:13269835,18123849 -h1,16308:13585981,18123849:0,0,0 -k1,16308:32583029,18123849:18997048 -g1,16308:32583029,18123849 -) -(1,16308:6630773,18790027:25952256,404226,101187 -h1,16308:6630773,18790027:0,0,0 -g1,16308:7579210,18790027 -g1,16308:7895356,18790027 -g1,16308:8211502,18790027 -g1,16308:10740668,18790027 -g1,16308:12321397,18790027 -g1,16308:12637543,18790027 -g1,16308:12953689,18790027 -g1,16308:13269835,18790027 -g1,16308:13585981,18790027 -g1,16308:13902127,18790027 -g1,16308:14218273,18790027 -g1,16308:14534419,18790027 -g1,16308:14850565,18790027 -g1,16308:15166711,18790027 -g1,16308:15482857,18790027 -g1,16308:16747440,18790027 -g1,16308:20225043,18790027 -h1,16308:22754208,18790027:0,0,0 -k1,16308:32583029,18790027:9828821 -g1,16308:32583029,18790027 -) -(1,16308:6630773,19456205:25952256,410518,6290 -h1,16308:6630773,19456205:0,0,0 -g1,16308:7579210,19456205 -g1,16308:7895356,19456205 -g1,16308:8211502,19456205 -g1,16308:10108377,19456205 -g1,16308:10424523,19456205 -g1,16308:10740669,19456205 -g1,16308:12637544,19456205 -g1,16308:12953690,19456205 -g1,16308:13269836,19456205 -g1,16308:13585982,19456205 -g1,16308:13902128,19456205 -g1,16308:14218274,19456205 -g1,16308:14534420,19456205 -g1,16308:14850566,19456205 -g1,16308:16747441,19456205 -g1,16308:18644316,19456205 -g1,16308:18960462,19456205 -g1,16308:19276608,19456205 -g1,16308:19592754,19456205 -g1,16308:19908900,19456205 -g1,16308:20225046,19456205 -k1,16308:20225046,19456205:0 -h1,16308:21805775,19456205:0,0,0 -k1,16308:32583029,19456205:10777254 -g1,16308:32583029,19456205 -) -(1,16308:6630773,20122383:25952256,404226,107478 -h1,16308:6630773,20122383:0,0,0 -g1,16308:7579210,20122383 -g1,16308:8211502,20122383 -g1,16308:10424522,20122383 -g1,16308:10740668,20122383 -g1,16308:14850562,20122383 -g1,16308:15166708,20122383 -g1,16308:15482854,20122383 -g1,16308:16747437,20122383 -g1,16308:18644311,20122383 -g1,16308:18960457,20122383 -g1,16308:19276603,20122383 -g1,16308:19592749,20122383 -g1,16308:19908895,20122383 -g1,16308:20225041,20122383 -h1,16308:22121915,20122383:0,0,0 -k1,16308:32583029,20122383:10461114 -g1,16308:32583029,20122383 -) -(1,16308:6630773,20788561:25952256,404226,101187 -h1,16308:6630773,20788561:0,0,0 -g1,16308:7579210,20788561 -g1,16308:8211502,20788561 -g1,16308:10424522,20788561 -g1,16308:10740668,20788561 -g1,16308:14534416,20788561 -g1,16308:14850562,20788561 -g1,16308:15166708,20788561 -g1,16308:15482854,20788561 -g1,16308:16747437,20788561 -g1,16308:18644311,20788561 -g1,16308:18960457,20788561 -g1,16308:19276603,20788561 -g1,16308:19592749,20788561 -g1,16308:19908895,20788561 -g1,16308:20225041,20788561 -h1,16308:21805769,20788561:0,0,0 -k1,16308:32583029,20788561:10777260 -g1,16308:32583029,20788561 -) -(1,16308:6630773,21454739:25952256,404226,107478 -h1,16308:6630773,21454739:0,0,0 -g1,16308:7579210,21454739 -g1,16308:8211502,21454739 -g1,16308:10424522,21454739 -g1,16308:10740668,21454739 -g1,16308:14850562,21454739 -g1,16308:15166708,21454739 -g1,16308:15482854,21454739 -g1,16308:16747437,21454739 -g1,16308:18644311,21454739 -g1,16308:18960457,21454739 -g1,16308:19276603,21454739 -g1,16308:19592749,21454739 -g1,16308:19908895,21454739 -g1,16308:20225041,21454739 -h1,16308:22121915,21454739:0,0,0 -k1,16308:32583029,21454739:10461114 -g1,16308:32583029,21454739 -) -(1,16308:6630773,22120917:25952256,404226,9436 -h1,16308:6630773,22120917:0,0,0 -g1,16308:7579210,22120917 -g1,16308:8211502,22120917 -g1,16308:8843794,22120917 -g1,16308:10108377,22120917 -g1,16308:11689106,22120917 -h1,16308:12953689,22120917:0,0,0 -k1,16308:32583029,22120917:19629340 -g1,16308:32583029,22120917 -) -] -) -g1,16309:32583029,22130353 -g1,16309:6630773,22130353 -g1,16309:6630773,22130353 -g1,16309:32583029,22130353 -g1,16309:32583029,22130353 -) -h1,16309:6630773,22326961:0,0,0 -(1,16313:6630773,24942509:25952256,555811,139132 -(1,16313:6630773,24942509:2450326,534184,12975 -g1,16313:6630773,24942509 -g1,16313:9081099,24942509 -) -g1,16313:13428102,24942509 -k1,16313:32583029,24942509:13965917 -g1,16313:32583029,24942509 -) -(1,16317:6630773,26177213:25952256,513147,134348 -k1,16316:9444293,26177213:209119 -k1,16316:12862711,26177213:209120 -k1,16316:16146124,26177213:209119 -k1,16316:16886740,26177213:209119 -k1,16316:17747288,26177213:209120 -k1,16316:21524187,26177213:209119 -k1,16316:24917046,26177213:209120 -k1,16316:25887693,26177213:209119 -k1,16316:28319793,26177213:209119 -k1,16316:29188205,26177213:209120 -k1,16316:31105192,26177213:209119 -k1,16317:32583029,26177213:0 -) -(1,16317:6630773,27018701:25952256,513147,134348 -k1,16316:8320241,27018701:138886 -k1,16316:9110555,27018701:138886 -k1,16316:10683369,27018701:138886 -k1,16316:11410768,27018701:138886 -k1,16316:12568739,27018701:138886 -k1,16316:15610215,27018701:138886 -k1,16316:16408392,27018701:138885 -k1,16316:17936641,27018701:138886 -k1,16316:22331435,27018701:138886 -k1,16316:23156483,27018701:138886 -k1,16316:27496882,27018701:138886 -k1,16316:28251806,27018701:138886 -k1,16316:30536995,27018701:138886 -k1,16316:32583029,27018701:0 -) -(1,16317:6630773,27860189:25952256,513147,134348 -k1,16316:7309913,27860189:221043 -k1,16316:10160917,27860189:221044 -k1,16316:11033388,27860189:221043 -k1,16316:12668699,27860189:221044 -k1,16316:14092983,27860189:221043 -k1,16316:17388321,27860189:221044 -k1,16316:18876830,27860189:221043 -k1,16316:20270312,27860189:221043 -k1,16316:22350612,27860189:221044 -k1,16316:23590740,27860189:221043 -k1,16316:25993478,27860189:221044 -k1,16316:26873813,27860189:221043 -k1,16316:28113942,27860189:221044 -k1,16316:31391584,27860189:221043 -k1,16316:32583029,27860189:0 -) -(1,16317:6630773,28701677:25952256,513147,134348 -k1,16316:7870987,28701677:221129 -k1,16316:11563558,28701677:221129 -k1,16316:12443980,28701677:221130 -k1,16316:16346922,28701677:221129 -k1,16316:17948895,28701677:221129 -k1,16316:21256770,28701677:221129 -k1,16316:22496984,28701677:221129 -k1,16316:24387970,28701677:221129 -k1,16316:26967741,28701677:221130 -k1,16316:27646967,28701677:221129 -k1,16316:29518293,28701677:221129 -k1,16316:31540351,28701677:221129 -k1,16317:32583029,28701677:0 -) -(1,16317:6630773,29543165:25952256,513147,134348 -k1,16316:10980197,29543165:205583 -k1,16316:12883818,29543165:205583 -k1,16316:14824794,29543165:205583 -k1,16316:16750697,29543165:205583 -k1,16316:20137398,29543165:205583 -k1,16316:20994409,29543165:205583 -k1,16316:22219077,29543165:205583 -k1,16316:25409170,29543165:205583 -k1,16316:26274044,29543165:205582 -k1,16316:27913555,29543165:205583 -k1,16316:28533975,29543165:205577 -(1,16316:28533975,29543165:0,452978,122846 -r1,16462:32409359,29543165:3875384,575824,122846 -k1,16316:28533975,29543165:-3875384 -) -(1,16316:28533975,29543165:3875384,452978,122846 -k1,16316:28533975,29543165:3277 -h1,16316:32406082,29543165:0,411205,112570 -) -k1,16316:32583029,29543165:0 -) -(1,16317:6630773,30384653:25952256,505283,134348 -g1,16316:8021447,30384653 -g1,16316:8678773,30384653 -g1,16316:10163818,30384653 -g1,16316:12409081,30384653 -g1,16316:13066407,30384653 -g1,16316:15136034,30384653 -g1,16316:15986691,30384653 -g1,16316:19753700,30384653 -g1,16316:22184430,30384653 -g1,16316:25096850,30384653 -g1,16316:25912117,30384653 -g1,16316:26467206,30384653 -g1,16316:28539454,30384653 -k1,16317:32583029,30384653:795611 -g1,16317:32583029,30384653 -) -(1,16319:6630773,31226141:25952256,513147,134348 -h1,16318:6630773,31226141:983040,0,0 -k1,16318:8980732,31226141:170232 -k1,16318:10457097,31226141:170232 -k1,16318:11982614,31226141:170232 -k1,16318:12684343,31226141:170232 -k1,16318:13506003,31226141:170232 -k1,16318:14768720,31226141:170232 -(1,16318:14768720,31226141:0,452978,122846 -r1,16462:18292392,31226141:3523672,575824,122846 -k1,16318:14768720,31226141:-3523672 -) -(1,16318:14768720,31226141:3523672,452978,122846 -k1,16318:14768720,31226141:3277 -h1,16318:18289115,31226141:0,411205,112570 -) -k1,16318:18462624,31226141:170232 -k1,16318:19284284,31226141:170232 -k1,16318:21041798,31226141:170232 -k1,16318:21567890,31226141:170232 -k1,16318:23549537,31226141:170232 -k1,16318:25113720,31226141:170232 -k1,16318:26303037,31226141:170232 -k1,16318:29529868,31226141:170232 -k1,16318:30653649,31226141:170232 -k1,16318:32583029,31226141:0 -) -(1,16319:6630773,32067629:25952256,505283,134348 -k1,16318:7205960,32067629:219327 -k1,16318:9157404,32067629:219327 -k1,16318:10568176,32067629:219327 -k1,16318:12221431,32067629:219327 -k1,16318:14833477,32067629:219327 -k1,16318:15510901,32067629:219327 -k1,16318:16997694,32067629:219327 -k1,16318:17572882,32067629:219328 -k1,16318:20411028,32067629:219327 -k1,16318:22536142,32067629:219327 -k1,16318:24360446,32067629:219327 -k1,16318:25448125,32067629:219327 -k1,16318:27142667,32067629:219327 -k1,16318:27717854,32067629:219327 -k1,16318:30597943,32067629:219327 -k1,16318:32583029,32067629:0 -) -(1,16319:6630773,32909117:25952256,513147,134348 -k1,16318:9581361,32909117:255092 -(1,16318:9581361,32909117:0,452978,115847 -r1,16462:13456745,32909117:3875384,568825,115847 -k1,16318:9581361,32909117:-3875384 -) -(1,16318:9581361,32909117:3875384,452978,115847 -k1,16318:9581361,32909117:3277 -h1,16318:13453468,32909117:0,411205,112570 -) -k1,16318:13711836,32909117:255091 -k1,16318:15099390,32909117:255092 -k1,16318:18445815,32909117:255092 -k1,16318:19719992,32909117:255092 -k1,16318:22858012,32909117:255091 -k1,16318:24304549,32909117:255092 -k1,16318:25652126,32909117:255092 -k1,16318:26365315,32909117:255092 -k1,16318:28318444,32909117:255091 -k1,16318:29592621,32909117:255092 -k1,16318:32583029,32909117:0 -) -(1,16319:6630773,33750605:25952256,505283,7863 -g1,16318:8840647,33750605 -g1,16318:10031436,33750605 -k1,16319:32583029,33750605:19148964 -g1,16319:32583029,33750605 -) -v1,16321:6630773,34941071:0,393216,0 -(1,16338:6630773,42486083:25952256,7938228,196608 -g1,16338:6630773,42486083 -g1,16338:6630773,42486083 -g1,16338:6434165,42486083 -(1,16338:6434165,42486083:0,7938228,196608 -r1,16462:32779637,42486083:26345472,8134836,196608 -k1,16338:6434165,42486083:-26345472 -) -(1,16338:6434165,42486083:26345472,7938228,196608 -[1,16338:6630773,42486083:25952256,7741620,0 -(1,16323:6630773,35148689:25952256,404226,101187 -(1,16322:6630773,35148689:0,0,0 -g1,16322:6630773,35148689 -g1,16322:6630773,35148689 -g1,16322:6303093,35148689 -(1,16322:6303093,35148689:0,0,0 -) -g1,16322:6630773,35148689 -) -k1,16323:6630773,35148689:0 -g1,16323:11372959,35148689 -g1,16323:12005251,35148689 -g1,16323:13585981,35148689 -g1,16323:16115147,35148689 -g1,16323:16747439,35148689 -g1,16323:22438063,35148689 -g1,16323:23702646,35148689 -k1,16323:23702646,35148689:0 -h1,16323:24967228,35148689:0,0,0 -k1,16323:32583029,35148689:7615801 -g1,16323:32583029,35148689 -) -(1,16324:6630773,35814867:25952256,404226,107478 -h1,16324:6630773,35814867:0,0,0 -g1,16324:6946919,35814867 -g1,16324:7263065,35814867 -g1,16324:11056813,35814867 -g1,16324:13902124,35814867 -k1,16324:13902124,35814867:0 -h1,16324:15166706,35814867:0,0,0 -k1,16324:32583030,35814867:17416324 -g1,16324:32583030,35814867 -) -(1,16325:6630773,36481045:25952256,404226,82312 -h1,16325:6630773,36481045:0,0,0 -g1,16325:6946919,36481045 -g1,16325:7263065,36481045 -k1,16325:7263065,36481045:0 -h1,16325:11056813,36481045:0,0,0 -k1,16325:32583029,36481045:21526216 -g1,16325:32583029,36481045 -) -(1,16326:6630773,37147223:25952256,404226,82312 -h1,16326:6630773,37147223:0,0,0 -g1,16326:6946919,37147223 -g1,16326:7263065,37147223 -g1,16326:7579211,37147223 -g1,16326:7895357,37147223 -g1,16326:8211503,37147223 -g1,16326:8527649,37147223 -g1,16326:8843795,37147223 -g1,16326:9159941,37147223 -g1,16326:9476087,37147223 -g1,16326:9792233,37147223 -g1,16326:10108379,37147223 -g1,16326:10424525,37147223 -g1,16326:14534419,37147223 -g1,16326:15166711,37147223 -k1,16326:15166711,37147223:0 -h1,16326:19592751,37147223:0,0,0 -k1,16326:32583029,37147223:12990278 -g1,16326:32583029,37147223 -) -(1,16327:6630773,37813401:25952256,404226,82312 -h1,16327:6630773,37813401:0,0,0 -g1,16327:6946919,37813401 -g1,16327:7263065,37813401 -g1,16327:7579211,37813401 -g1,16327:7895357,37813401 -g1,16327:8211503,37813401 -g1,16327:8527649,37813401 -g1,16327:8843795,37813401 -g1,16327:9159941,37813401 -g1,16327:9476087,37813401 -g1,16327:9792233,37813401 -g1,16327:10108379,37813401 -g1,16327:10424525,37813401 -g1,16327:15166711,37813401 -g1,16327:15799003,37813401 -k1,16327:15799003,37813401:0 -h1,16327:20857334,37813401:0,0,0 -k1,16327:32583029,37813401:11725695 -g1,16327:32583029,37813401 -) -(1,16328:6630773,38479579:25952256,404226,76021 -h1,16328:6630773,38479579:0,0,0 -g1,16328:6946919,38479579 -g1,16328:7263065,38479579 -g1,16328:7579211,38479579 -g1,16328:7895357,38479579 -g1,16328:8211503,38479579 -g1,16328:8527649,38479579 -g1,16328:8843795,38479579 -g1,16328:9159941,38479579 -g1,16328:9476087,38479579 -g1,16328:9792233,38479579 -g1,16328:10108379,38479579 -g1,16328:10424525,38479579 -g1,16328:11056817,38479579 -g1,16328:11689109,38479579 -k1,16328:11689109,38479579:0 -h1,16328:12953692,38479579:0,0,0 -k1,16328:32583028,38479579:19629336 -g1,16328:32583028,38479579 -) -(1,16337:6630773,39145757:25952256,404226,9436 -(1,16330:6630773,39145757:0,0,0 -g1,16330:6630773,39145757 -g1,16330:6630773,39145757 -g1,16330:6303093,39145757 -(1,16330:6303093,39145757:0,0,0 -) -g1,16330:6630773,39145757 -) -g1,16337:7579210,39145757 -g1,16337:8211502,39145757 -g1,16337:8843794,39145757 -g1,16337:11372960,39145757 -g1,16337:12005252,39145757 -g1,16337:12637544,39145757 -h1,16337:12953690,39145757:0,0,0 -k1,16337:32583030,39145757:19629340 -g1,16337:32583030,39145757 -) -(1,16337:6630773,39811935:25952256,404226,50331 -h1,16337:6630773,39811935:0,0,0 -g1,16337:7579210,39811935 -g1,16337:7895356,39811935 -g1,16337:8211502,39811935 -g1,16337:10740668,39811935 -g1,16337:14850562,39811935 -g1,16337:19592748,39811935 -g1,16337:19908894,39811935 -g1,16337:20225040,39811935 -g1,16337:20541186,39811935 -g1,16337:20857332,39811935 -h1,16337:21173478,39811935:0,0,0 -k1,16337:32583029,39811935:11409551 -g1,16337:32583029,39811935 -) -(1,16337:6630773,40478113:25952256,404226,6290 -h1,16337:6630773,40478113:0,0,0 -g1,16337:7579210,40478113 -g1,16337:7895356,40478113 -g1,16337:8211502,40478113 -g1,16337:10108377,40478113 -g1,16337:10424523,40478113 -g1,16337:10740669,40478113 -g1,16337:11056815,40478113 -g1,16337:11372961,40478113 -g1,16337:11689107,40478113 -g1,16337:12005253,40478113 -g1,16337:12321399,40478113 -g1,16337:12637545,40478113 -g1,16337:12953691,40478113 -g1,16337:14850566,40478113 -g1,16337:15166712,40478113 -g1,16337:15482858,40478113 -g1,16337:15799004,40478113 -g1,16337:16115150,40478113 -g1,16337:16431296,40478113 -g1,16337:16747442,40478113 -g1,16337:17063588,40478113 -g1,16337:17379734,40478113 -g1,16337:17695880,40478113 -g1,16337:19592755,40478113 -k1,16337:19592755,40478113:0 -h1,16337:21173484,40478113:0,0,0 -k1,16337:32583029,40478113:11409545 -g1,16337:32583029,40478113 -) -(1,16337:6630773,41144291:25952256,388497,9436 -h1,16337:6630773,41144291:0,0,0 -g1,16337:7579210,41144291 -g1,16337:8211502,41144291 -g1,16337:8843794,41144291 -g1,16337:9159940,41144291 -g1,16337:9476086,41144291 -g1,16337:9792232,41144291 -g1,16337:10108378,41144291 -g1,16337:10424524,41144291 -g1,16337:10740670,41144291 -g1,16337:11056816,41144291 -g1,16337:11372962,41144291 -g1,16337:11689108,41144291 -g1,16337:12005254,41144291 -g1,16337:12321400,41144291 -g1,16337:12637546,41144291 -g1,16337:12953692,41144291 -g1,16337:13269838,41144291 -g1,16337:13585984,41144291 -g1,16337:13902130,41144291 -g1,16337:14218276,41144291 -g1,16337:14850568,41144291 -g1,16337:15166714,41144291 -g1,16337:15482860,41144291 -g1,16337:15799006,41144291 -g1,16337:16115152,41144291 -g1,16337:16431298,41144291 -g1,16337:16747444,41144291 -g1,16337:17063590,41144291 -g1,16337:17379736,41144291 -g1,16337:17695882,41144291 -g1,16337:18012028,41144291 -g1,16337:18328174,41144291 -g1,16337:18644320,41144291 -g1,16337:18960466,41144291 -g1,16337:19592758,41144291 -g1,16337:19908904,41144291 -g1,16337:20225050,41144291 -g1,16337:20541196,41144291 -g1,16337:20857342,41144291 -h1,16337:21173488,41144291:0,0,0 -k1,16337:32583029,41144291:11409541 -g1,16337:32583029,41144291 -) -(1,16337:6630773,41810469:25952256,404226,9436 -h1,16337:6630773,41810469:0,0,0 -g1,16337:7579210,41810469 -g1,16337:8211502,41810469 -g1,16337:8843794,41810469 -g1,16337:9159940,41810469 -g1,16337:9476086,41810469 -g1,16337:9792232,41810469 -g1,16337:10108378,41810469 -g1,16337:10424524,41810469 -g1,16337:10740670,41810469 -g1,16337:11056816,41810469 -g1,16337:11372962,41810469 -g1,16337:11689108,41810469 -g1,16337:12005254,41810469 -g1,16337:12321400,41810469 -g1,16337:12637546,41810469 -g1,16337:12953692,41810469 -g1,16337:13269838,41810469 -g1,16337:13585984,41810469 -g1,16337:13902130,41810469 -g1,16337:14218276,41810469 -g1,16337:14850568,41810469 -g1,16337:15166714,41810469 -g1,16337:15482860,41810469 -g1,16337:15799006,41810469 -g1,16337:16115152,41810469 -g1,16337:16431298,41810469 -g1,16337:16747444,41810469 -g1,16337:17063590,41810469 -g1,16337:17379736,41810469 -g1,16337:17695882,41810469 -g1,16337:18012028,41810469 -g1,16337:18328174,41810469 -g1,16337:18644320,41810469 -g1,16337:18960466,41810469 -g1,16337:19592758,41810469 -g1,16337:19908904,41810469 -g1,16337:20225050,41810469 -g1,16337:20541196,41810469 -g1,16337:20857342,41810469 -h1,16337:21173488,41810469:0,0,0 -k1,16337:32583029,41810469:11409541 -g1,16337:32583029,41810469 -) -(1,16337:6630773,42476647:25952256,388497,9436 -h1,16337:6630773,42476647:0,0,0 -g1,16337:7579210,42476647 -g1,16337:8211502,42476647 -g1,16337:8843794,42476647 -g1,16337:9159940,42476647 -g1,16337:9476086,42476647 -g1,16337:9792232,42476647 -g1,16337:10108378,42476647 -g1,16337:10424524,42476647 -g1,16337:10740670,42476647 -g1,16337:11056816,42476647 -g1,16337:11372962,42476647 -g1,16337:11689108,42476647 -g1,16337:12005254,42476647 -g1,16337:12321400,42476647 -g1,16337:12637546,42476647 -g1,16337:12953692,42476647 -g1,16337:13269838,42476647 -g1,16337:13585984,42476647 -g1,16337:13902130,42476647 -g1,16337:14218276,42476647 -g1,16337:14850568,42476647 -g1,16337:15166714,42476647 -g1,16337:15482860,42476647 -g1,16337:15799006,42476647 -g1,16337:16115152,42476647 -g1,16337:16431298,42476647 -g1,16337:16747444,42476647 -g1,16337:17063590,42476647 -g1,16337:17379736,42476647 -g1,16337:17695882,42476647 -g1,16337:18012028,42476647 -g1,16337:18328174,42476647 -g1,16337:18644320,42476647 -g1,16337:18960466,42476647 -g1,16337:19592758,42476647 -g1,16337:19908904,42476647 -g1,16337:20225050,42476647 -g1,16337:20541196,42476647 -g1,16337:20857342,42476647 -h1,16337:21173488,42476647:0,0,0 -k1,16337:32583029,42476647:11409541 -g1,16337:32583029,42476647 -) -] -) -g1,16338:32583029,42486083 -g1,16338:6630773,42486083 -g1,16338:6630773,42486083 -g1,16338:32583029,42486083 -g1,16338:32583029,42486083 -) -h1,16338:6630773,42682691:0,0,0 -v1,16342:6630773,44572755:0,393216,0 -] -(1,16462:32583029,45706769:0,0,0 -g1,16462:32583029,45706769 -) -) -] -(1,16462:6630773,47279633:25952256,0,0 -h1,16462:6630773,47279633:25952256,0,0 -) -] -(1,16462:4262630,4025873:0,0,0 -[1,16462:-473656,4025873:0,0,0 -(1,16462:-473656,-710413:0,0,0 -(1,16462:-473656,-710413:0,0,0 -g1,16462:-473656,-710413 -) -g1,16462:-473656,-710413 -) -] -) -] -!31459 -}279 -!12 -{280 -[1,16462:4262630,47279633:28320399,43253760,0 -(1,16462:4262630,4025873:0,0,0 -[1,16462:-473656,4025873:0,0,0 -(1,16462:-473656,-710413:0,0,0 -(1,16462:-473656,-644877:0,0,0 -k1,16462:-473656,-644877:-65536 ) -(1,16462:-473656,4736287:0,0,0 -k1,16462:-473656,4736287:5209943 +k1,16347:3078556,49800853:-34777008 ) -g1,16462:-473656,-710413 +] +g1,16347:6630773,4812305 +k1,16347:23311652,4812305:15485502 +g1,16347:23960458,4812305 +g1,16347:27572802,4812305 +g1,16347:29306229,4812305 +) +) +] +[1,16347:6630773,45706769:25952256,40108032,0 +(1,16347:6630773,45706769:25952256,40108032,0 +(1,16347:6630773,45706769:0,0,0 +g1,16347:6630773,45706769 +) +[1,16347:6630773,45706769:25952256,40108032,0 +v1,16306:6630773,6254097:0,393216,0 +(1,16306:6630773,10019000:25952256,4158119,0 +g1,16306:6630773,10019000 +g1,16306:6237557,10019000 +r1,16347:6368629,10019000:131072,4158119,0 +g1,16306:6567858,10019000 +g1,16306:6764466,10019000 +[1,16306:6764466,10019000:25818563,4158119,0 +v1,16295:6764466,6254097:0,393216,0 +(1,16301:6764466,7957884:25818563,2097003,196608 +g1,16301:6764466,7957884 +g1,16301:6764466,7957884 +g1,16301:6567858,7957884 +(1,16301:6567858,7957884:0,2097003,196608 +r1,16347:32779637,7957884:26211779,2293611,196608 +k1,16301:6567857,7957884:-26211780 +) +(1,16301:6567858,7957884:26211779,2097003,196608 +[1,16301:6764466,7957884:25818563,1900395,0 +(1,16297:6764466,6481928:25818563,424439,86428 +(1,16296:6764466,6481928:0,0,0 +g1,16296:6764466,6481928 +g1,16296:6764466,6481928 +g1,16296:6436786,6481928 +(1,16296:6436786,6481928:0,0,0 +) +g1,16296:6764466,6481928 +) +k1,16297:6764466,6481928:0 +g1,16297:13071590,6481928 +h1,16297:17386991,6481928:0,0,0 +k1,16297:32583029,6481928:15196038 +g1,16297:32583029,6481928 +) +(1,16298:6764466,7166783:25818563,424439,106246 +h1,16298:6764466,7166783:0,0,0 +g1,16298:13071590,7166783 +h1,16298:17386991,7166783:0,0,0 +k1,16298:32583029,7166783:15196038 +g1,16298:32583029,7166783 +) +(1,16299:6764466,7851638:25818563,424439,106246 +h1,16299:6764466,7851638:0,0,0 +g1,16299:13071590,7851638 +g1,16299:17718945,7851638 +g1,16299:18382853,7851638 +k1,16299:18382853,7851638:0 +h1,16299:24689977,7851638:0,0,0 +k1,16299:32583029,7851638:7893052 +g1,16299:32583029,7851638 +) +] +) +g1,16301:32583029,7957884 +g1,16301:6764466,7957884 +g1,16301:6764466,7957884 +g1,16301:32583029,7957884 +g1,16301:32583029,7957884 +) +h1,16301:6764466,8154492:0,0,0 +(1,16305:6764466,9019572:25818563,513147,134348 +h1,16304:6764466,9019572:983040,0,0 +k1,16304:9597084,9019572:215765 +k1,16304:10913853,9019572:215764 +k1,16304:14118060,9019572:215765 +k1,16304:16375270,9019572:215764 +k1,16304:17049132,9019572:215765 +k1,16304:19390230,9019572:215765 +k1,16304:20071955,9019572:215764 +k1,16304:21385448,9019572:215765 +k1,16304:23097400,9019572:215765 +k1,16304:24826390,9019572:215764 +k1,16304:27781560,9019572:215765 +k1,16304:29391275,9019572:215764 +k1,16304:29962900,9019572:215765 +k1,16304:32583029,9019572:0 +) +(1,16305:6764466,9884652:25818563,513147,134348 +g1,16304:8941572,9884652 +g1,16304:9792229,9884652 +g1,16304:12195434,9884652 +g1,16304:15434878,9884652 +g1,16304:16316992,9884652 +g1,16304:16982182,9884652 +g1,16304:17639508,9884652 +g1,16304:19351963,9884652 +g1,16304:21934081,9884652 +g1,16304:24201626,9884652 +g1,16304:25087017,9884652 +g1,16304:28260925,9884652 +k1,16305:32583029,9884652:1798968 +g1,16305:32583029,9884652 +) +] +g1,16306:32583029,10019000 +) +h1,16306:6630773,10019000:0,0,0 +v1,16309:6630773,10884080:0,393216,0 +(1,16310:6630773,13101900:25952256,2611036,0 +g1,16310:6630773,13101900 +g1,16310:6237557,13101900 +r1,16347:6368629,13101900:131072,2611036,0 +g1,16310:6567858,13101900 +g1,16310:6764466,13101900 +[1,16310:6764466,13101900:25818563,2611036,0 +(1,16310:6764466,11245257:25818563,754393,260573 +(1,16309:6764466,11245257:0,754393,260573 +r1,16347:8010564,11245257:1246098,1014966,260573 +k1,16309:6764466,11245257:-1246098 +) +(1,16309:6764466,11245257:1246098,754393,260573 +) +k1,16309:8266029,11245257:255465 +k1,16309:8593709,11245257:327680 +k1,16309:11352648,11245257:255464 +k1,16309:13175734,11245257:255465 +k1,16309:15764936,11245257:255465 +k1,16309:17563118,11245257:255464 +k1,16309:18477875,11245257:255465 +k1,16309:20711870,11245257:255464 +k1,16309:23993132,11245257:255465 +(1,16309:23993132,11245257:0,452978,122846 +r1,16347:26813381,11245257:2820249,575824,122846 +k1,16309:23993132,11245257:-2820249 +) +(1,16309:23993132,11245257:2820249,452978,122846 +k1,16309:23993132,11245257:3277 +h1,16309:26810104,11245257:0,411205,112570 +) +k1,16309:27068846,11245257:255465 +k1,16309:28515755,11245257:255464 +(1,16309:28515755,11245257:0,452978,115847 +r1,16347:31336004,11245257:2820249,568825,115847 +k1,16309:28515755,11245257:-2820249 +) +(1,16309:28515755,11245257:2820249,452978,115847 +k1,16309:28515755,11245257:3277 +h1,16309:31332727,11245257:0,411205,112570 +) +k1,16309:31591469,11245257:255465 +k1,16309:32583029,11245257:0 +) +(1,16310:6764466,12110337:25818563,513147,126483 +k1,16309:10532533,12110337:229123 +k1,16309:11953102,12110337:229124 +k1,16309:14901314,12110337:229123 +k1,16309:15891966,12110337:229124 +k1,16309:19146886,12110337:229123 +(1,16309:19146886,12110337:0,452978,122846 +r1,16347:24077406,12110337:4930520,575824,122846 +k1,16309:19146886,12110337:-4930520 +) +(1,16309:19146886,12110337:4930520,452978,122846 +k1,16309:19146886,12110337:3277 +h1,16309:24074129,12110337:0,411205,112570 +) +k1,16309:24306529,12110337:229123 +k1,16309:25727098,12110337:229124 +(1,16309:25727098,12110337:0,452978,115847 +r1,16347:30305906,12110337:4578808,568825,115847 +k1,16309:25727098,12110337:-4578808 +) +(1,16309:25727098,12110337:4578808,452978,115847 +k1,16309:25727098,12110337:3277 +h1,16309:30302629,12110337:0,411205,112570 +) +k1,16309:30708699,12110337:229123 +k1,16309:32583029,12110337:0 +) +(1,16310:6764466,12975417:25818563,513147,126483 +g1,16309:8246890,12975417 +g1,16309:11645587,12975417 +g1,16309:14934839,12975417 +g1,16309:17163063,12975417 +g1,16309:18454777,12975417 +g1,16309:19009866,12975417 +g1,16309:21971438,12975417 +g1,16309:24254712,12975417 +g1,16309:25896388,12975417 +g1,16309:27114702,12975417 +g1,16309:28334327,12975417 +k1,16310:32583029,12975417:2588020 +g1,16310:32583029,12975417 +) +] +g1,16310:32583029,13101900 +) +h1,16310:6630773,13101900:0,0,0 +v1,16315:6630773,13966980:0,393216,0 +(1,16335:6630773,28716107:25952256,15142343,0 +g1,16335:6630773,28716107 +g1,16335:6237557,28716107 +r1,16347:6368629,28716107:131072,15142343,0 +g1,16335:6567858,28716107 +g1,16335:6764466,28716107 +[1,16335:6764466,28716107:25818563,15142343,0 +(1,16316:6764466,14275278:25818563,701514,196608 +(1,16315:6764466,14275278:0,701514,196608 +r1,16347:8863446,14275278:2098980,898122,196608 +k1,16315:6764466,14275278:-2098980 +) +(1,16315:6764466,14275278:2098980,701514,196608 +) +k1,16315:9037690,14275278:174244 +k1,16315:10355619,14275278:327680 +k1,16315:13650033,14275278:174245 +(1,16315:13650033,14275278:0,452978,122846 +r1,16347:18580553,14275278:4930520,575824,122846 +k1,16315:13650033,14275278:-4930520 +) +(1,16315:13650033,14275278:4930520,452978,122846 +k1,16315:13650033,14275278:3277 +h1,16315:18577276,14275278:0,411205,112570 +) +k1,16315:18754797,14275278:174244 +k1,16315:20120486,14275278:174244 +(1,16315:20120486,14275278:0,452978,115847 +r1,16347:24699294,14275278:4578808,568825,115847 +k1,16315:20120486,14275278:-4578808 +) +(1,16315:20120486,14275278:4578808,452978,115847 +k1,16315:20120486,14275278:3277 +h1,16315:24696017,14275278:0,411205,112570 +) +k1,16315:24873538,14275278:174244 +k1,16315:26615404,14275278:174245 +k1,16315:29369800,14275278:174244 +k1,16315:32583029,14275278:0 +) +(1,16316:6764466,15140358:25818563,513147,134348 +k1,16315:9593536,15140358:314454 +k1,16315:10559417,15140358:314453 +k1,16315:13630315,15140358:314454 +k1,16315:14963854,15140358:314454 +k1,16315:18452872,15140358:314454 +k1,16315:19426617,15140358:314453 +k1,16315:20760156,15140358:314454 +k1,16315:22728083,15140358:314454 +k1,16315:24780552,15140358:314454 +k1,16315:28120802,15140358:314453 +k1,16315:30002877,15140358:314454 +k1,16315:32583029,15140358:0 +) +(1,16316:6764466,16005438:25818563,513147,134348 +k1,16315:9042597,16005438:299600 +k1,16315:9970033,16005438:299601 +k1,16315:11961773,16005438:299600 +k1,16315:13751006,16005438:299600 +k1,16315:15921660,16005438:299601 +k1,16315:17240345,16005438:299600 +k1,16315:20714509,16005438:299600 +k1,16315:23261340,16005438:299601 +k1,16315:24929987,16005438:299600 +k1,16315:25695548,16005438:299600 +k1,16315:27014233,16005438:299600 +k1,16315:28486273,16005438:299601 +k1,16315:30282060,16005438:299600 +k1,16315:32583029,16005438:0 +) +(1,16316:6764466,16870518:25818563,505283,126483 +k1,16315:8805310,16870518:185520 +k1,16315:11001475,16870518:185520 +k1,16315:13923778,16870518:185520 +k1,16315:14792183,16870518:185520 +k1,16315:16705232,16870518:185520 +k1,16315:18901397,16870518:185520 +k1,16315:20784955,16870518:185520 +(1,16315:20784955,16870518:0,414482,115847 +r1,16347:23956915,16870518:3171960,530329,115847 +k1,16315:20784955,16870518:-3171960 +) +(1,16315:20784955,16870518:3171960,414482,115847 +k1,16315:20784955,16870518:3277 +h1,16315:23953638,16870518:0,411205,112570 +) +k1,16315:24142435,16870518:185520 +k1,16315:24859452,16870518:185520 +k1,16315:28473160,16870518:185520 +k1,16315:29310108,16870518:185520 +k1,16315:30514713,16870518:185520 +k1,16315:32583029,16870518:0 +) +(1,16316:6764466,17735598:25818563,513147,134348 +k1,16315:7599395,17735598:175637 +k1,16315:9471758,17735598:175636 +k1,16315:10819834,17735598:175637 +k1,16315:14194939,17735598:175637 +k1,16315:15980139,17735598:175636 +k1,16315:18298803,17735598:175637 +k1,16315:19916887,17735598:175637 +k1,16315:22672675,17735598:175636 +k1,16315:26061541,17735598:175637 +k1,16315:26768675,17735598:175637 +k1,16315:29855420,17735598:175636 +k1,16315:31464985,17735598:175637 +k1,16315:32583029,17735598:0 +) +(1,16316:6764466,18600678:25818563,505283,7863 +g1,16315:7982780,18600678 +g1,16315:9678196,18600678 +k1,16316:32583030,18600678:20862732 +g1,16316:32583030,18600678 +) +v1,16318:6764466,19285533:0,393216,0 +(1,16331:6764466,25789911:25818563,6897594,196608 +g1,16331:6764466,25789911 +g1,16331:6764466,25789911 +g1,16331:6567858,25789911 +(1,16331:6567858,25789911:0,6897594,196608 +r1,16347:32779637,25789911:26211779,7094202,196608 +k1,16331:6567857,25789911:-26211780 +) +(1,16331:6567858,25789911:26211779,6897594,196608 +[1,16331:6764466,25789911:25818563,6700986,0 +(1,16320:6764466,19513364:25818563,424439,112852 +(1,16319:6764466,19513364:0,0,0 +g1,16319:6764466,19513364 +g1,16319:6764466,19513364 +g1,16319:6436786,19513364 +(1,16319:6436786,19513364:0,0,0 +) +g1,16319:6764466,19513364 +) +g1,16320:12739637,19513364 +k1,16320:12739637,19513364:0 +h1,16320:13403545,19513364:0,0,0 +k1,16320:32583029,19513364:19179484 +g1,16320:32583029,19513364 +) +(1,16321:6764466,20198219:25818563,424439,112852 +h1,16321:6764466,20198219:0,0,0 +g1,16321:7096420,20198219 +g1,16321:7428374,20198219 +k1,16321:7428374,20198219:0 +h1,16321:14731361,20198219:0,0,0 +k1,16321:32583029,20198219:17851668 +g1,16321:32583029,20198219 +) +(1,16322:6764466,20883074:25818563,424439,86428 +h1,16322:6764466,20883074:0,0,0 +g1,16322:7096420,20883074 +g1,16322:7428374,20883074 +g1,16322:7760328,20883074 +g1,16322:8092282,20883074 +k1,16322:8092282,20883074:0 +h1,16322:9752052,20883074:0,0,0 +k1,16322:32583028,20883074:22830976 +g1,16322:32583028,20883074 +) +(1,16323:6764466,21567929:25818563,424439,106246 +h1,16323:6764466,21567929:0,0,0 +g1,16323:7096420,21567929 +g1,16323:7428374,21567929 +g1,16323:7760328,21567929 +g1,16323:8092282,21567929 +g1,16323:9752052,21567929 +g1,16323:10415960,21567929 +k1,16323:10415960,21567929:0 +h1,16323:13403546,21567929:0,0,0 +k1,16323:32583030,21567929:19179484 +g1,16323:32583030,21567929 +) +(1,16324:6764466,22252784:25818563,424439,106246 +h1,16324:6764466,22252784:0,0,0 +g1,16324:7096420,22252784 +g1,16324:7428374,22252784 +g1,16324:7760328,22252784 +g1,16324:8092282,22252784 +g1,16324:11079867,22252784 +g1,16324:11743775,22252784 +k1,16324:11743775,22252784:0 +h1,16324:14067453,22252784:0,0,0 +k1,16324:32583029,22252784:18515576 +g1,16324:32583029,22252784 +) +(1,16325:6764466,22937639:25818563,424439,79822 +h1,16325:6764466,22937639:0,0,0 +g1,16325:7096420,22937639 +g1,16325:7428374,22937639 +g1,16325:7760328,22937639 +g1,16325:8092282,22937639 +g1,16325:11411821,22937639 +g1,16325:12075729,22937639 +h1,16325:16059176,22937639:0,0,0 +k1,16325:32583029,22937639:16523853 +g1,16325:32583029,22937639 +) +(1,16326:6764466,23622494:25818563,424439,112852 +h1,16326:6764466,23622494:0,0,0 +g1,16326:14731360,23622494 +h1,16326:20706531,23622494:0,0,0 +k1,16326:32583029,23622494:11876498 +g1,16326:32583029,23622494 +) +(1,16327:6764466,24307349:25818563,424439,112852 +h1,16327:6764466,24307349:0,0,0 +g1,16327:14731360,24307349 +h1,16327:20706531,24307349:0,0,0 +k1,16327:32583029,24307349:11876498 +g1,16327:32583029,24307349 +) +(1,16328:6764466,24992204:25818563,424439,112852 +h1,16328:6764466,24992204:0,0,0 +k1,16328:6764466,24992204:0 +h1,16328:13071591,24992204:0,0,0 +k1,16328:32583029,24992204:19511438 +g1,16328:32583029,24992204 +) +(1,16329:6764466,25677059:25818563,424439,112852 +h1,16329:6764466,25677059:0,0,0 +k1,16329:6764466,25677059:0 +h1,16329:14731360,25677059:0,0,0 +k1,16329:32583028,25677059:17851668 +g1,16329:32583028,25677059 +) +] +) +g1,16331:32583029,25789911 +g1,16331:6764466,25789911 +g1,16331:6764466,25789911 +g1,16331:32583029,25789911 +g1,16331:32583029,25789911 +) +h1,16331:6764466,25986519:0,0,0 +(1,16335:6764466,26851599:25818563,513147,126483 +h1,16334:6764466,26851599:983040,0,0 +k1,16334:9533362,26851599:152043 +k1,16334:10216903,26851599:152044 +k1,16334:11388031,26851599:152043 +k1,16334:14726434,26851599:152043 +k1,16334:17513681,26851599:152044 +k1,16334:18684809,26851599:152043 +k1,16334:20847497,26851599:152043 +k1,16334:23778268,26851599:152044 +k1,16334:24691839,26851599:152043 +k1,16334:25862967,26851599:152043 +k1,16334:27187450,26851599:152044 +k1,16334:30692315,26851599:152043 +k1,16334:32583029,26851599:0 +) +(1,16335:6764466,27716679:25818563,513147,134348 +k1,16334:10061386,27716679:248841 +k1,16334:11877847,27716679:248840 +k1,16334:14706840,27716679:248841 +k1,16334:16760541,27716679:248840 +k1,16334:17660810,27716679:248841 +k1,16334:20489802,27716679:248840 +k1,16334:23951872,27716679:248841 +k1,16334:25980014,27716679:248840 +k1,16334:27725042,27716679:248841 +k1,16334:31923737,27716679:248840 +k1,16334:32583029,27716679:0 +) +(1,16335:6764466,28581759:25818563,485622,134348 +k1,16335:32583029,28581759:22870754 +g1,16335:32583029,28581759 +) +] +g1,16335:32583029,28716107 +) +h1,16335:6630773,28716107:0,0,0 +(1,16338:6630773,31547267:25952256,32768,229376 +(1,16338:6630773,31547267:0,32768,229376 +(1,16338:6630773,31547267:5505024,32768,229376 +r1,16347:12135797,31547267:5505024,262144,229376 +) +k1,16338:6630773,31547267:-5505024 +) +(1,16338:6630773,31547267:25952256,32768,0 +r1,16347:32583029,31547267:25952256,32768,0 +) +) +(1,16338:6630773,33179119:25952256,606339,151780 +(1,16338:6630773,33179119:1974731,582746,14155 +g1,16338:6630773,33179119 +g1,16338:8605504,33179119 +) +g1,16338:10655733,33179119 +g1,16338:16149747,33179119 +g1,16338:18163013,33179119 +k1,16338:32583029,33179119:11889279 +g1,16338:32583029,33179119 +) +(1,16342:6630773,34437415:25952256,513147,134348 +k1,16341:8067041,34437415:239581 +k1,16341:9612755,34437415:239581 +k1,16341:13091124,34437415:239580 +k1,16341:13686565,34437415:239581 +k1,16341:15306990,34437415:239581 +k1,16341:16205863,34437415:239581 +k1,16341:17464529,34437415:239581 +k1,16341:19676742,34437415:239580 +k1,16341:22942120,34437415:239581 +k1,16341:24373146,34437415:239581 +k1,16341:27397352,34437415:239581 +k1,16341:28992217,34437415:239580 +k1,16341:29763295,34437415:239581 +k1,16341:31021961,34437415:239581 +k1,16342:32583029,34437415:0 +) +(1,16342:6630773,35302495:25952256,513147,126483 +k1,16341:9874209,35302495:243198 +k1,16341:10776699,35302495:243198 +k1,16341:12038982,35302495:243198 +k1,16341:13216723,35302495:243198 +k1,16341:14119213,35302495:243198 +k1,16341:17767006,35302495:243198 +k1,16341:21304699,35302495:243198 +k1,16341:22739342,35302495:243198 +k1,16341:24001625,35302495:243198 +k1,16341:27429873,35302495:243198 +k1,16341:28864516,35302495:243198 +k1,16341:32583029,35302495:0 +) +(1,16342:6630773,36167575:25952256,513147,134348 +k1,16341:9076802,36167575:286618 +k1,16341:10382505,36167575:286618 +k1,16341:13431466,36167575:286618 +k1,16341:16917552,36167575:286618 +k1,16341:17691670,36167575:286530 +k1,16341:20219619,36167575:286618 +k1,16341:23745026,36167575:286618 +k1,16341:24563140,36167575:286617 +k1,16341:26134264,36167575:286618 +k1,16341:28583570,36167575:286618 +k1,16341:29636304,36167575:286618 +k1,16341:30942007,36167575:286618 +k1,16342:32583029,36167575:0 +) +(1,16342:6630773,37032655:25952256,513147,134348 +k1,16341:8427682,37032655:199141 +k1,16341:9618383,37032655:199141 +k1,16341:12199103,37032655:199142 +k1,16341:13464515,37032655:199141 +k1,16341:15039257,37032655:199141 +k1,16341:16186049,37032655:199141 +k1,16341:18675018,37032655:199141 +k1,16341:19533452,37032655:199142 +k1,16341:21287762,37032655:199141 +(1,16341:21287762,37032655:0,452978,115847 +r1,16347:23404587,37032655:2116825,568825,115847 +k1,16341:21287762,37032655:-2116825 +) +(1,16341:21287762,37032655:2116825,452978,115847 +k1,16341:21287762,37032655:3277 +h1,16341:23401310,37032655:0,411205,112570 +) +k1,16341:23777398,37032655:199141 +k1,16341:25048708,37032655:199141 +k1,16341:26533665,37032655:199141 +k1,16341:27680458,37032655:199142 +k1,16341:30169427,37032655:199141 +k1,16341:31027860,37032655:199141 +k1,16342:32583029,37032655:0 +) +(1,16342:6630773,37897735:25952256,513147,134348 +(1,16341:6630773,37897735:0,452978,115847 +r1,16347:10154445,37897735:3523672,568825,115847 +k1,16341:6630773,37897735:-3523672 +) +(1,16341:6630773,37897735:3523672,452978,115847 +k1,16341:6630773,37897735:3277 +h1,16341:10151168,37897735:0,411205,112570 +) +k1,16341:10307299,37897735:152854 +k1,16341:13247400,37897735:152855 +k1,16341:15825086,37897735:152854 +k1,16341:17169386,37897735:152855 +k1,16341:18269891,37897735:152854 +k1,16341:19652810,37897735:152808 +k1,16341:22959257,37897735:152855 +k1,16341:25899357,37897735:152854 +k1,16341:28818486,37897735:152855 +k1,16341:30365291,37897735:152854 +k1,16342:32583029,37897735:0 +) +(1,16342:6630773,38762815:25952256,513147,134348 +k1,16341:8062781,38762815:156022 +k1,16341:10302848,38762815:156022 +k1,16341:11690947,38762815:156022 +k1,16341:13132786,38762815:156023 +k1,16341:15567495,38762815:156022 +h1,16341:17335001,38762815:0,0,0 +k1,16341:17491023,38762815:156022 +k1,16341:18456415,38762815:156022 +k1,16341:20110590,38762815:156022 +h1,16341:21305967,38762815:0,0,0 +k1,16341:21842753,38762815:156022 +k1,16341:22486320,38762815:155979 +k1,16341:25693043,38762815:156022 +k1,16341:26508358,38762815:156023 +k1,16341:28637013,38762815:156022 +k1,16341:29984480,38762815:156022 +k1,16341:31923737,38762815:156022 +k1,16341:32583029,38762815:0 +) +(1,16342:6630773,39627895:25952256,513147,126483 +k1,16341:7821865,39627895:172007 +k1,16341:11201858,39627895:172006 +k1,16341:11905362,39627895:172007 +k1,16341:13361874,39627895:172006 +k1,16341:14552966,39627895:172007 +k1,16341:16809018,39627895:172007 +k1,16341:17512521,39627895:172006 +k1,16341:18750799,39627895:172007 +k1,16341:19888151,39627895:172007 +k1,16341:21511124,39627895:172006 +k1,16341:23752758,39627895:172007 +k1,16341:28023386,39627895:172006 +k1,16341:29887533,39627895:172007 +k1,16341:32583029,39627895:0 +) +(1,16342:6630773,40492975:25952256,505283,7863 +k1,16341:8080387,40492975:258169 +k1,16341:10792879,40492975:258169 +k1,16341:13119365,40492975:258170 +k1,16341:15233514,40492975:258169 +k1,16341:18136716,40492975:258169 +k1,16341:20138798,40492975:258169 +k1,16341:21013006,40492975:258170 +k1,16341:22705103,40492975:258169 +k1,16341:23378056,40492975:258110 +k1,16341:24319110,40492975:258169 +k1,16341:26216990,40492975:258169 +k1,16341:27869111,40492975:258170 +k1,16341:30195596,40492975:258169 +k1,16341:31966991,40492975:258169 +k1,16341:32583029,40492975:0 +) +(1,16342:6630773,41358055:25952256,513147,134348 +k1,16341:8578179,41358055:245436 +k1,16341:11907739,41358055:245436 +k1,16341:12567971,41358055:245389 +k1,16341:14419039,41358055:245436 +k1,16341:15195972,41358055:245436 +k1,16341:18579927,41358055:245436 +k1,16341:20721320,41358055:245436 +k1,16341:22158201,41358055:245436 +k1,16341:25242657,41358055:245436 +k1,16341:26139521,41358055:245436 +k1,16341:28612526,41358055:245436 +k1,16341:31391584,41358055:245436 +k1,16341:32583029,41358055:0 +) +(1,16342:6630773,42223135:25952256,513147,134348 +k1,16341:9863664,42223135:164495 +k1,16341:13563827,42223135:164496 +k1,16341:14675973,42223135:164495 +k1,16341:15196328,42223135:164495 +k1,16341:16749532,42223135:164496 +k1,16341:18513105,42223135:164495 +k1,16341:19719622,42223135:164495 +k1,16341:21380305,42223135:164496 +k1,16341:24368746,42223135:164495 +k1,16341:25184670,42223135:164496 +k1,16341:27576734,42223135:164495 +k1,16341:28357267,42223135:164495 +k1,16341:29614248,42223135:164496 +k1,16341:30726394,42223135:164495 +k1,16341:32583029,42223135:0 +) +(1,16342:6630773,43088215:25952256,513147,134348 +k1,16341:7880847,43088215:230989 +k1,16341:9880653,43088215:230989 +k1,16341:13022096,43088215:230989 +k1,16341:13711182,43088215:230989 +k1,16341:16644220,43088215:230989 +k1,16341:17858249,43088215:230989 +k1,16341:19108324,43088215:230990 +k1,16341:20552384,43088215:230989 +k1,16341:24845950,43088215:230989 +k1,16341:25535036,43088215:230989 +k1,16341:26898487,43088215:230989 +k1,16341:28833412,43088215:230989 +k1,16341:30847636,43088215:230989 +k1,16341:32583029,43088215:0 +) +(1,16342:6630773,43953295:25952256,513147,126483 +k1,16341:7832329,43953295:182471 +k1,16341:11222787,43953295:182471 +k1,16341:12273610,43953295:182471 +k1,16341:13986346,43953295:182470 +k1,16341:14820245,43953295:182471 +k1,16341:15750482,43953295:182471 +k1,16341:18822435,43953295:182471 +k1,16341:19656334,43953295:182471 +k1,16341:21710513,43953295:182471 +k1,16341:22990712,43953295:182471 +k1,16341:24503563,43953295:182470 +k1,16341:28076867,43953295:182471 +k1,16341:29755525,43953295:182471 +k1,16341:31451222,43953295:182471 +k1,16341:32583029,43953295:0 +) +(1,16342:6630773,44818375:25952256,505283,134348 +g1,16341:8715473,44818375 +g1,16341:11449635,44818375 +g1,16341:12300292,44818375 +g1,16341:13518606,44818375 +g1,16341:16925822,44818375 +g1,16341:20035505,44818375 +g1,16341:21103086,44818375 +k1,16342:32583029,44818375:10213787 +g1,16342:32583029,44818375 +) +] +(1,16347:32583029,45706769:0,0,0 +g1,16347:32583029,45706769 +) +) +] +(1,16347:6630773,47279633:25952256,0,0 +h1,16347:6630773,47279633:25952256,0,0 +) +] +(1,16347:4262630,4025873:0,0,0 +[1,16347:-473656,4025873:0,0,0 +(1,16347:-473656,-710413:0,0,0 +(1,16347:-473656,-710413:0,0,0 +g1,16347:-473656,-710413 +) +g1,16347:-473656,-710413 +) +] +) +] +!24969 +}263 +Input:2403:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2404:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2405:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2406:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2407:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2408:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2409:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2410:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2411:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2412:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2413:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2414:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2415:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2416:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2417:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2418:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1516 +{264 +[1,16410:4262630,47279633:28320399,43253760,0 +(1,16410:4262630,4025873:0,0,0 +[1,16410:-473656,4025873:0,0,0 +(1,16410:-473656,-710413:0,0,0 +(1,16410:-473656,-644877:0,0,0 +k1,16410:-473656,-644877:-65536 +) +(1,16410:-473656,4736287:0,0,0 +k1,16410:-473656,4736287:5209943 +) +g1,16410:-473656,-710413 ) ] ) -[1,16462:6630773,47279633:25952256,43253760,0 -[1,16462:6630773,4812305:25952256,786432,0 -(1,16462:6630773,4812305:25952256,505283,126483 -(1,16462:6630773,4812305:25952256,505283,126483 -g1,16462:3078558,4812305 -[1,16462:3078558,4812305:0,0,0 -(1,16462:3078558,2439708:0,1703936,0 -k1,16462:1358238,2439708:-1720320 -(1,15243:1358238,2439708:1720320,1703936,0 -(1,15243:1358238,2439708:1179648,16384,0 -r1,16462:2537886,2439708:1179648,16384,0 +[1,16410:6630773,47279633:25952256,43253760,0 +[1,16410:6630773,4812305:25952256,786432,0 +(1,16410:6630773,4812305:25952256,505283,126483 +(1,16410:6630773,4812305:25952256,505283,126483 +g1,16410:3078558,4812305 +[1,16410:3078558,4812305:0,0,0 +(1,16410:3078558,2439708:0,1703936,0 +k1,16410:1358238,2439708:-1720320 +(1,15456:1358238,2439708:1720320,1703936,0 +(1,15456:1358238,2439708:1179648,16384,0 +r1,16410:2537886,2439708:1179648,16384,0 ) -g1,15243:3062174,2439708 -(1,15243:3062174,2439708:16384,1703936,0 -[1,15243:3062174,2439708:25952256,1703936,0 -(1,15243:3062174,1915420:25952256,1179648,0 -(1,15243:3062174,1915420:16384,1179648,0 -r1,16462:3078558,1915420:16384,1179648,0 +g1,15456:3062174,2439708 +(1,15456:3062174,2439708:16384,1703936,0 +[1,15456:3062174,2439708:25952256,1703936,0 +(1,15456:3062174,1915420:25952256,1179648,0 +(1,15456:3062174,1915420:16384,1179648,0 +r1,16410:3078558,1915420:16384,1179648,0 ) -k1,15243:29014430,1915420:25935872 -g1,15243:29014430,1915420 +k1,15456:29014430,1915420:25935872 +g1,15456:29014430,1915420 ) ] ) ) ) ] -[1,16462:3078558,4812305:0,0,0 -(1,16462:3078558,2439708:0,1703936,0 -g1,16462:29030814,2439708 -g1,16462:36135244,2439708 -(1,15243:36135244,2439708:1720320,1703936,0 -(1,15243:36135244,2439708:16384,1703936,0 -[1,15243:36135244,2439708:25952256,1703936,0 -(1,15243:36135244,1915420:25952256,1179648,0 -(1,15243:36135244,1915420:16384,1179648,0 -r1,16462:36151628,1915420:16384,1179648,0 +[1,16410:3078558,4812305:0,0,0 +(1,16410:3078558,2439708:0,1703936,0 +g1,16410:29030814,2439708 +g1,16410:36135244,2439708 +(1,15456:36135244,2439708:1720320,1703936,0 +(1,15456:36135244,2439708:16384,1703936,0 +[1,15456:36135244,2439708:25952256,1703936,0 +(1,15456:36135244,1915420:25952256,1179648,0 +(1,15456:36135244,1915420:16384,1179648,0 +r1,16410:36151628,1915420:16384,1179648,0 ) -k1,15243:62087500,1915420:25935872 -g1,15243:62087500,1915420 +k1,15456:62087500,1915420:25935872 +g1,15456:62087500,1915420 ) ] ) -g1,15243:36675916,2439708 -(1,15243:36675916,2439708:1179648,16384,0 -r1,16462:37855564,2439708:1179648,16384,0 +g1,15456:36675916,2439708 +(1,15456:36675916,2439708:1179648,16384,0 +r1,16410:37855564,2439708:1179648,16384,0 ) ) -k1,16462:3078556,2439708:-34777008 +k1,16410:3078556,2439708:-34777008 ) ] -[1,16462:3078558,4812305:0,0,0 -(1,16462:3078558,49800853:0,16384,2228224 -k1,16462:1358238,49800853:-1720320 -(1,15243:1358238,49800853:1720320,16384,2228224 -(1,15243:1358238,49800853:1179648,16384,0 -r1,16462:2537886,49800853:1179648,16384,0 +[1,16410:3078558,4812305:0,0,0 +(1,16410:3078558,49800853:0,16384,2228224 +k1,16410:1358238,49800853:-1720320 +(1,15456:1358238,49800853:1720320,16384,2228224 +(1,15456:1358238,49800853:1179648,16384,0 +r1,16410:2537886,49800853:1179648,16384,0 ) -g1,15243:3062174,49800853 -(1,15243:3062174,52029077:16384,1703936,0 -[1,15243:3062174,52029077:25952256,1703936,0 -(1,15243:3062174,51504789:25952256,1179648,0 -(1,15243:3062174,51504789:16384,1179648,0 -r1,16462:3078558,51504789:16384,1179648,0 +g1,15456:3062174,49800853 +(1,15456:3062174,52029077:16384,1703936,0 +[1,15456:3062174,52029077:25952256,1703936,0 +(1,15456:3062174,51504789:25952256,1179648,0 +(1,15456:3062174,51504789:16384,1179648,0 +r1,16410:3078558,51504789:16384,1179648,0 ) -k1,15243:29014430,51504789:25935872 -g1,15243:29014430,51504789 +k1,15456:29014430,51504789:25935872 +g1,15456:29014430,51504789 ) ] ) ) ) ] -[1,16462:3078558,4812305:0,0,0 -(1,16462:3078558,49800853:0,16384,2228224 -g1,16462:29030814,49800853 -g1,16462:36135244,49800853 -(1,15243:36135244,49800853:1720320,16384,2228224 -(1,15243:36135244,52029077:16384,1703936,0 -[1,15243:36135244,52029077:25952256,1703936,0 -(1,15243:36135244,51504789:25952256,1179648,0 -(1,15243:36135244,51504789:16384,1179648,0 -r1,16462:36151628,51504789:16384,1179648,0 -) -k1,15243:62087500,51504789:25935872 -g1,15243:62087500,51504789 -) -] -) -g1,15243:36675916,49800853 -(1,15243:36675916,49800853:1179648,16384,0 -r1,16462:37855564,49800853:1179648,16384,0 -) -) -k1,16462:3078556,49800853:-34777008 -) -] -g1,16462:6630773,4812305 -g1,16462:6630773,4812305 -g1,16462:8364200,4812305 -g1,16462:12785258,4812305 -g1,16462:14347636,4812305 -g1,16462:16554232,4812305 -k1,16462:31387652,4812305:14833420 -) -) -] -[1,16462:6630773,45706769:25952256,40108032,0 -(1,16462:6630773,45706769:25952256,40108032,0 -(1,16462:6630773,45706769:0,0,0 -g1,16462:6630773,45706769 -) -[1,16462:6630773,45706769:25952256,40108032,0 -v1,16462:6630773,6254097:0,393216,0 -(1,16462:6630773,45706769:25952256,39845888,0 -g1,16462:6630773,45706769 -g1,16462:6303093,45706769 -r1,16462:6401397,45706769:98304,39845888,0 -g1,16462:6600626,45706769 -g1,16462:6797234,45706769 -[1,16462:6797234,45706769:25785795,39845888,0 -(1,16343:6797234,6674681:25785795,813800,267386 -(1,16342:6797234,6674681:0,813800,267386 -r1,16462:8134168,6674681:1336934,1081186,267386 -k1,16342:6797234,6674681:-1336934 -) -(1,16342:6797234,6674681:1336934,813800,267386 -) -k1,16342:8277317,6674681:143149 -k1,16342:8604997,6674681:327680 -k1,16342:10168968,6674681:143150 -k1,16342:10843614,6674681:143149 -k1,16342:13869692,6674681:143149 -k1,16342:18214354,6674681:143149 -k1,16342:19305155,6674681:143150 -k1,16342:20837667,6674681:143149 -k1,16342:23187413,6674681:143149 -k1,16342:24522008,6674681:143150 -k1,16342:27133898,6674681:143149 -k1,16342:27904882,6674681:143149 -k1,16342:29145759,6674681:143149 -k1,16342:30655990,6674681:143150 -k1,16342:31485301,6674681:143149 -k1,16342:32583029,6674681:0 -) -(1,16343:6797234,7516169:25785795,505283,134348 -k1,16342:8820585,7516169:211936 -k1,16342:11499296,7516169:211936 -k1,16342:12362660,7516169:211936 -k1,16342:14129765,7516169:211936 -(1,16342:14129765,7516169:0,459977,115847 -r1,16462:17301725,7516169:3171960,575824,115847 -k1,16342:14129765,7516169:-3171960 -) -(1,16342:14129765,7516169:3171960,459977,115847 -k1,16342:14129765,7516169:3277 -h1,16342:17298448,7516169:0,411205,112570 -) -k1,16342:17687331,7516169:211936 -k1,16342:20782197,7516169:211937 -k1,16342:22521777,7516169:211936 -(1,16342:22521777,7516169:0,459977,122846 -r1,16462:26045449,7516169:3523672,582823,122846 -k1,16342:22521777,7516169:-3523672 -) -(1,16342:22521777,7516169:3523672,459977,122846 -k1,16342:22521777,7516169:3277 -h1,16342:26042172,7516169:0,411205,112570 -) -k1,16342:26257385,7516169:211936 -k1,16342:27155483,7516169:211936 -k1,16342:28386504,7516169:211936 -k1,16342:30200140,7516169:211936 -k1,16342:32583029,7516169:0 -) -(1,16343:6797234,8357657:25785795,513147,134348 -k1,16342:8790894,8357657:264820 -k1,16342:9525607,8357657:264820 -k1,16342:11076243,8357657:264820 -k1,16342:12868707,8357657:264820 -k1,16342:15365028,8357657:264820 -k1,16342:18738877,8357657:264821 -k1,16342:20397648,8357657:264820 -k1,16342:21681553,8357657:264820 -k1,16342:24829302,8357657:264820 -k1,16342:28901108,8357657:264820 -k1,16342:29781966,8357657:264820 -k1,16342:30402646,8357657:264820 -k1,16342:32583029,8357657:0 -) -(1,16343:6797234,9199145:25785795,513147,134348 -k1,16342:9585791,9199145:276562 -k1,16342:10810004,9199145:276562 -k1,16342:12294395,9199145:276562 -k1,16342:15402111,9199145:276561 -k1,16342:16337965,9199145:276562 -k1,16342:18507207,9199145:276562 -k1,16342:21911147,9199145:276562 -k1,16342:23016739,9199145:276562 -k1,16342:27326387,9199145:276562 -k1,16342:28979859,9199145:276561 -k1,16342:30124773,9199145:276562 -k1,16342:31931601,9199145:276562 -k1,16342:32583029,9199145:0 -) -(1,16343:6797234,10040633:25785795,505283,134348 -k1,16342:8727270,10040633:214303 -k1,16342:9712275,10040633:214302 -k1,16342:13008081,10040633:214303 -k1,16342:13873812,10040633:214303 -k1,16342:15185842,10040633:214302 -k1,16342:20810142,10040633:214303 -k1,16342:22879769,10040633:214303 -k1,16342:24285517,10040633:214303 -k1,16342:25890493,10040633:214302 -k1,16342:26460656,10040633:214303 -k1,16342:29335721,10040633:214303 -k1,16342:31361438,10040633:214302 -k1,16342:32227169,10040633:214303 -k1,16342:32583029,10040633:0 -) -(1,16343:6797234,10882121:25785795,505283,7863 -k1,16343:32583028,10882121:23100784 -g1,16343:32583028,10882121 -) -v1,16345:6797234,12518025:0,393216,0 -(1,16365:6797234,18109452:25785795,5984643,196608 -g1,16365:6797234,18109452 -g1,16365:6797234,18109452 -g1,16365:6600626,18109452 -(1,16365:6600626,18109452:0,5984643,196608 -r1,16462:32779637,18109452:26179011,6181251,196608 -k1,16365:6600625,18109452:-26179012 -) -(1,16365:6600626,18109452:26179011,5984643,196608 -[1,16365:6797234,18109452:25785795,5788035,0 -(1,16347:6797234,12725643:25785795,404226,101187 -(1,16346:6797234,12725643:0,0,0 -g1,16346:6797234,12725643 -g1,16346:6797234,12725643 -g1,16346:6469554,12725643 -(1,16346:6469554,12725643:0,0,0 -) -g1,16346:6797234,12725643 -) -g1,16347:8694108,12725643 -g1,16347:9642546,12725643 -g1,16347:14384732,12725643 -g1,16347:15017024,12725643 -g1,16347:16597754,12725643 -g1,16347:19126920,12725643 -g1,16347:19759212,12725643 -g1,16347:25449836,12725643 -h1,16347:26398273,12725643:0,0,0 -k1,16347:32583029,12725643:6184756 -g1,16347:32583029,12725643 -) -(1,16348:6797234,13391821:25785795,410518,107478 -h1,16348:6797234,13391821:0,0,0 -k1,16348:6797234,13391821:0 -h1,16348:13120148,13391821:0,0,0 -k1,16348:32583028,13391821:19462880 -g1,16348:32583028,13391821 -) -(1,16352:6797234,14057999:25785795,404226,76021 -(1,16350:6797234,14057999:0,0,0 -g1,16350:6797234,14057999 -g1,16350:6797234,14057999 -g1,16350:6469554,14057999 -(1,16350:6469554,14057999:0,0,0 -) -g1,16350:6797234,14057999 -) -g1,16352:7745671,14057999 -g1,16352:9010254,14057999 -h1,16352:10590982,14057999:0,0,0 -k1,16352:32583030,14057999:21992048 -g1,16352:32583030,14057999 -) -(1,16354:6797234,15379537:25785795,404226,101187 -(1,16353:6797234,15379537:0,0,0 -g1,16353:6797234,15379537 -g1,16353:6797234,15379537 -g1,16353:6469554,15379537 -(1,16353:6469554,15379537:0,0,0 -) -g1,16353:6797234,15379537 -) -k1,16354:6797234,15379537:0 -h1,16354:10590982,15379537:0,0,0 -k1,16354:32583030,15379537:21992048 -g1,16354:32583030,15379537 -) -(1,16358:6797234,16045715:25785795,410518,76021 -(1,16356:6797234,16045715:0,0,0 -g1,16356:6797234,16045715 -g1,16356:6797234,16045715 -g1,16356:6469554,16045715 -(1,16356:6469554,16045715:0,0,0 -) -g1,16356:6797234,16045715 -) -g1,16358:7745671,16045715 -g1,16358:9010254,16045715 -g1,16358:11855565,16045715 -g1,16358:12171711,16045715 -g1,16358:12487857,16045715 -g1,16358:12804003,16045715 -g1,16358:13120149,16045715 -g1,16358:15017023,16045715 -g1,16358:15333169,16045715 -g1,16358:15649315,16045715 -g1,16358:15965461,16045715 -g1,16358:16281607,16045715 -g1,16358:16597753,16045715 -g1,16358:16913899,16045715 -g1,16358:17230045,16045715 -h1,16358:21023793,16045715:0,0,0 -k1,16358:32583029,16045715:11559236 -g1,16358:32583029,16045715 -) -(1,16360:6797234,17367253:25785795,404226,101187 -(1,16359:6797234,17367253:0,0,0 -g1,16359:6797234,17367253 -g1,16359:6797234,17367253 -g1,16359:6469554,17367253 -(1,16359:6469554,17367253:0,0,0 -) -g1,16359:6797234,17367253 -) -k1,16360:6797234,17367253:0 -k1,16360:6797234,17367253:0 -h1,16360:14384730,17367253:0,0,0 -k1,16360:32583030,17367253:18198300 -g1,16360:32583030,17367253 -) -(1,16364:6797234,18033431:25785795,404226,76021 -(1,16362:6797234,18033431:0,0,0 -g1,16362:6797234,18033431 -g1,16362:6797234,18033431 -g1,16362:6469554,18033431 -(1,16362:6469554,18033431:0,0,0 -) -g1,16362:6797234,18033431 -) -g1,16364:7745671,18033431 -g1,16364:9010254,18033431 -g1,16364:11539420,18033431 -g1,16364:11855566,18033431 -g1,16364:12171712,18033431 -g1,16364:12487858,18033431 -g1,16364:12804004,18033431 -g1,16364:16597752,18033431 -h1,16364:18810772,18033431:0,0,0 -k1,16364:32583029,18033431:13772257 -g1,16364:32583029,18033431 -) -] -) -g1,16365:32583029,18109452 -g1,16365:6797234,18109452 -g1,16365:6797234,18109452 -g1,16365:32583029,18109452 -g1,16365:32583029,18109452 -) -h1,16365:6797234,18306060:0,0,0 -v1,16369:6797234,20911689:0,393216,0 -(1,16383:6797234,24546857:25785795,4028384,196608 -g1,16383:6797234,24546857 -g1,16383:6797234,24546857 -g1,16383:6600626,24546857 -(1,16383:6600626,24546857:0,4028384,196608 -r1,16462:32779637,24546857:26179011,4224992,196608 -k1,16383:6600625,24546857:-26179012 -) -(1,16383:6600626,24546857:26179011,4028384,196608 -[1,16383:6797234,24546857:25785795,3831776,0 -(1,16371:6797234,21119307:25785795,404226,107478 -(1,16370:6797234,21119307:0,0,0 -g1,16370:6797234,21119307 -g1,16370:6797234,21119307 -g1,16370:6469554,21119307 -(1,16370:6469554,21119307:0,0,0 -) -g1,16370:6797234,21119307 -) -g1,16371:9642545,21119307 -g1,16371:10590983,21119307 -g1,16371:15333168,21119307 -g1,16371:15965460,21119307 -g1,16371:18178480,21119307 -h1,16371:20707645,21119307:0,0,0 -k1,16371:32583029,21119307:11875384 -g1,16371:32583029,21119307 -) -(1,16372:6797234,21785485:25785795,410518,107478 -h1,16372:6797234,21785485:0,0,0 -k1,16372:6797234,21785485:0 -h1,16372:14068585,21785485:0,0,0 -k1,16372:32583029,21785485:18514444 -g1,16372:32583029,21785485 -) -(1,16376:6797234,22451663:25785795,404226,76021 -(1,16374:6797234,22451663:0,0,0 -g1,16374:6797234,22451663 -g1,16374:6797234,22451663 -g1,16374:6469554,22451663 -(1,16374:6469554,22451663:0,0,0 -) -g1,16374:6797234,22451663 -) -g1,16376:7745671,22451663 -g1,16376:9010254,22451663 -h1,16376:10274837,22451663:0,0,0 -k1,16376:32583029,22451663:22308192 -g1,16376:32583029,22451663 -) -(1,16378:6797234,23773201:25785795,404226,107478 -(1,16377:6797234,23773201:0,0,0 -g1,16377:6797234,23773201 -g1,16377:6797234,23773201 -g1,16377:6469554,23773201 -(1,16377:6469554,23773201:0,0,0 -) -g1,16377:6797234,23773201 -) -k1,16378:6797234,23773201:0 -h1,16378:11539419,23773201:0,0,0 -k1,16378:32583029,23773201:21043610 -g1,16378:32583029,23773201 -) -(1,16382:6797234,24439379:25785795,410518,107478 -(1,16380:6797234,24439379:0,0,0 -g1,16380:6797234,24439379 -g1,16380:6797234,24439379 -g1,16380:6469554,24439379 -(1,16380:6469554,24439379:0,0,0 -) -g1,16380:6797234,24439379 -) -g1,16382:7745671,24439379 -g1,16382:9010254,24439379 -g1,16382:13120148,24439379 -g1,16382:15965459,24439379 -g1,16382:16281605,24439379 -g1,16382:16597751,24439379 -g1,16382:16913897,24439379 -g1,16382:17230043,24439379 -g1,16382:19126917,24439379 -g1,16382:19443063,24439379 -g1,16382:19759209,24439379 -g1,16382:20075355,24439379 -g1,16382:20391501,24439379 -g1,16382:20707647,24439379 -g1,16382:21023793,24439379 -g1,16382:21339939,24439379 -h1,16382:25133687,24439379:0,0,0 -k1,16382:32583029,24439379:7449342 -g1,16382:32583029,24439379 -) -] -) -g1,16383:32583029,24546857 -g1,16383:6797234,24546857 -g1,16383:6797234,24546857 -g1,16383:32583029,24546857 -g1,16383:32583029,24546857 -) -h1,16383:6797234,24743465:0,0,0 -v1,16387:6797234,27349094:0,393216,0 -(1,16409:6797234,36282229:25785795,9326351,196608 -g1,16409:6797234,36282229 -g1,16409:6797234,36282229 -g1,16409:6600626,36282229 -(1,16409:6600626,36282229:0,9326351,196608 -r1,16462:32779637,36282229:26179011,9522959,196608 -k1,16409:6600625,36282229:-26179012 -) -(1,16409:6600626,36282229:26179011,9326351,196608 -[1,16409:6797234,36282229:25785795,9129743,0 -(1,16389:6797234,27556712:25785795,404226,107478 -(1,16388:6797234,27556712:0,0,0 -g1,16388:6797234,27556712 -g1,16388:6797234,27556712 -g1,16388:6469554,27556712 -(1,16388:6469554,27556712:0,0,0 -) -g1,16388:6797234,27556712 -) -k1,16389:6797234,27556712:0 -k1,16389:6797234,27556712:0 -h1,16389:15333167,27556712:0,0,0 -k1,16389:32583029,27556712:17249862 -g1,16389:32583029,27556712 -) -(1,16393:6797234,28222890:25785795,404226,107478 -(1,16391:6797234,28222890:0,0,0 -g1,16391:6797234,28222890 -g1,16391:6797234,28222890 -g1,16391:6469554,28222890 -(1,16391:6469554,28222890:0,0,0 -) -g1,16391:6797234,28222890 -) -g1,16393:7745671,28222890 -g1,16393:9010254,28222890 -g1,16393:11539420,28222890 -g1,16393:11855566,28222890 -g1,16393:12171712,28222890 -g1,16393:12487858,28222890 -g1,16393:12804004,28222890 -g1,16393:16597752,28222890 -g1,16393:19126918,28222890 -g1,16393:19443064,28222890 -g1,16393:19759210,28222890 -g1,16393:20075356,28222890 -g1,16393:20391502,28222890 -h1,16393:22920667,28222890:0,0,0 -k1,16393:32583029,28222890:9662362 -g1,16393:32583029,28222890 -) -(1,16395:6797234,29544428:25785795,410518,107478 -(1,16394:6797234,29544428:0,0,0 -g1,16394:6797234,29544428 -g1,16394:6797234,29544428 -g1,16394:6469554,29544428 -(1,16394:6469554,29544428:0,0,0 -) -g1,16394:6797234,29544428 -) -k1,16395:6797234,29544428:0 -g1,16395:16281606,29544428 -k1,16395:16281606,29544428:0 -h1,16395:21972228,29544428:0,0,0 -k1,16395:32583029,29544428:10610801 -g1,16395:32583029,29544428 -) -(1,16408:6797234,30210606:25785795,410518,31456 -(1,16397:6797234,30210606:0,0,0 -g1,16397:6797234,30210606 -g1,16397:6797234,30210606 -g1,16397:6469554,30210606 -(1,16397:6469554,30210606:0,0,0 -) -g1,16397:6797234,30210606 -) -g1,16408:7745671,30210606 -h1,16408:9642545,30210606:0,0,0 -k1,16408:32583029,30210606:22940484 -g1,16408:32583029,30210606 -) -(1,16408:6797234,30876784:25785795,410518,107478 -h1,16408:6797234,30876784:0,0,0 -g1,16408:7745671,30876784 -g1,16408:9010254,30876784 -g1,16408:13120148,30876784 -g1,16408:15965459,30876784 -g1,16408:16281605,30876784 -g1,16408:16597751,30876784 -g1,16408:16913897,30876784 -g1,16408:17230043,30876784 -g1,16408:19126917,30876784 -g1,16408:19443063,30876784 -g1,16408:19759209,30876784 -g1,16408:20075355,30876784 -g1,16408:20391501,30876784 -g1,16408:20707647,30876784 -g1,16408:21023793,30876784 -g1,16408:21339939,30876784 -h1,16408:25133687,30876784:0,0,0 -k1,16408:32583029,30876784:7449342 -g1,16408:32583029,30876784 -) -(1,16408:6797234,31542962:25785795,379060,0 -h1,16408:6797234,31542962:0,0,0 -h1,16408:7429525,31542962:0,0,0 -k1,16408:32583029,31542962:25153504 -g1,16408:32583029,31542962 -) -(1,16408:6797234,32209140:25785795,410518,107478 -h1,16408:6797234,32209140:0,0,0 -g1,16408:7745671,32209140 -h1,16408:9958691,32209140:0,0,0 -k1,16408:32583029,32209140:22624338 -g1,16408:32583029,32209140 -) -(1,16408:6797234,32875318:25785795,404226,9436 -h1,16408:6797234,32875318:0,0,0 -g1,16408:7745671,32875318 -g1,16408:8377963,32875318 -g1,16408:9010255,32875318 -g1,16408:11539421,32875318 -g1,16408:12171713,32875318 -g1,16408:12804005,32875318 -h1,16408:13120151,32875318:0,0,0 -k1,16408:32583029,32875318:19462878 -g1,16408:32583029,32875318 -) -(1,16408:6797234,33541496:25785795,404226,6290 -h1,16408:6797234,33541496:0,0,0 -g1,16408:7745671,33541496 -g1,16408:8061817,33541496 -g1,16408:8377963,33541496 -g1,16408:10907129,33541496 -g1,16408:11223275,33541496 -g1,16408:11539421,33541496 -g1,16408:11855567,33541496 -g1,16408:12171713,33541496 -g1,16408:12487859,33541496 -g1,16408:12804005,33541496 -h1,16408:14384733,33541496:0,0,0 -k1,16408:32583029,33541496:18198296 -g1,16408:32583029,33541496 -) -(1,16408:6797234,34207674:25785795,404226,6290 -h1,16408:6797234,34207674:0,0,0 -g1,16408:7745671,34207674 -g1,16408:8061817,34207674 -g1,16408:8377963,34207674 -g1,16408:10274838,34207674 -g1,16408:10590984,34207674 -g1,16408:10907130,34207674 -k1,16408:10907130,34207674:0 -h1,16408:14384733,34207674:0,0,0 -k1,16408:32583029,34207674:18198296 -g1,16408:32583029,34207674 -) -(1,16408:6797234,34873852:25785795,404226,76021 -h1,16408:6797234,34873852:0,0,0 -g1,16408:7745671,34873852 -g1,16408:8377963,34873852 -g1,16408:9010255,34873852 -g1,16408:9326401,34873852 -g1,16408:9642547,34873852 -g1,16408:9958693,34873852 -g1,16408:10274839,34873852 -g1,16408:10590985,34873852 -g1,16408:10907131,34873852 -g1,16408:11223277,34873852 -g1,16408:11539423,34873852 -g1,16408:11855569,34873852 -g1,16408:12171715,34873852 -g1,16408:12487861,34873852 -g1,16408:12804007,34873852 -g1,16408:13120153,34873852 -g1,16408:13436299,34873852 -h1,16408:14384736,34873852:0,0,0 -k1,16408:32583028,34873852:18198292 -g1,16408:32583028,34873852 -) -(1,16408:6797234,35540030:25785795,404226,76021 -h1,16408:6797234,35540030:0,0,0 -g1,16408:7745671,35540030 -g1,16408:8377963,35540030 -g1,16408:9010255,35540030 -g1,16408:9326401,35540030 -g1,16408:9642547,35540030 -g1,16408:9958693,35540030 -g1,16408:10274839,35540030 -g1,16408:10590985,35540030 -g1,16408:10907131,35540030 -g1,16408:11223277,35540030 -g1,16408:11539423,35540030 -g1,16408:11855569,35540030 -g1,16408:12171715,35540030 -g1,16408:12487861,35540030 -g1,16408:12804007,35540030 -g1,16408:13120153,35540030 -g1,16408:13436299,35540030 -h1,16408:14384736,35540030:0,0,0 -k1,16408:32583028,35540030:18198292 -g1,16408:32583028,35540030 -) -(1,16408:6797234,36206208:25785795,404226,76021 -h1,16408:6797234,36206208:0,0,0 -g1,16408:7745671,36206208 -g1,16408:8377963,36206208 -g1,16408:9010255,36206208 -g1,16408:9326401,36206208 -g1,16408:9642547,36206208 -g1,16408:9958693,36206208 -g1,16408:10274839,36206208 -g1,16408:10590985,36206208 -g1,16408:10907131,36206208 -g1,16408:11223277,36206208 -g1,16408:11539423,36206208 -g1,16408:11855569,36206208 -g1,16408:12171715,36206208 -g1,16408:12487861,36206208 -g1,16408:12804007,36206208 -g1,16408:13120153,36206208 -g1,16408:13436299,36206208 -h1,16408:14384736,36206208:0,0,0 -k1,16408:32583028,36206208:18198292 -g1,16408:32583028,36206208 -) -] -) -g1,16409:32583029,36282229 -g1,16409:6797234,36282229 -g1,16409:6797234,36282229 -g1,16409:32583029,36282229 -g1,16409:32583029,36282229 -) -h1,16409:6797234,36478837:0,0,0 -v1,16413:6797234,39084467:0,393216,0 -(1,16427:6797234,42688178:25785795,3996927,196608 -g1,16427:6797234,42688178 -g1,16427:6797234,42688178 -g1,16427:6600626,42688178 -(1,16427:6600626,42688178:0,3996927,196608 -r1,16462:32779637,42688178:26179011,4193535,196608 -k1,16427:6600625,42688178:-26179012 -) -(1,16427:6600626,42688178:26179011,3996927,196608 -[1,16427:6797234,42688178:25785795,3800319,0 -(1,16415:6797234,39292085:25785795,404226,107478 -(1,16414:6797234,39292085:0,0,0 -g1,16414:6797234,39292085 -g1,16414:6797234,39292085 -g1,16414:6469554,39292085 -(1,16414:6469554,39292085:0,0,0 -) -g1,16414:6797234,39292085 -) -g1,16415:9958691,39292085 -g1,16415:10907129,39292085 -k1,16415:10907129,39292085:0 -h1,16415:16281606,39292085:0,0,0 -k1,16415:32583029,39292085:16301423 -g1,16415:32583029,39292085 -) -(1,16416:6797234,39958263:25785795,404226,107478 -h1,16416:6797234,39958263:0,0,0 -k1,16416:6797234,39958263:0 -h1,16416:11855564,39958263:0,0,0 -k1,16416:32583028,39958263:20727464 -g1,16416:32583028,39958263 -) -(1,16420:6797234,40624441:25785795,410518,76021 -(1,16418:6797234,40624441:0,0,0 -g1,16418:6797234,40624441 -g1,16418:6797234,40624441 -g1,16418:6469554,40624441 -(1,16418:6469554,40624441:0,0,0 -) -g1,16418:6797234,40624441 -) -g1,16420:7745671,40624441 -g1,16420:9010254,40624441 -g1,16420:11855565,40624441 -g1,16420:12171711,40624441 -g1,16420:12487857,40624441 -g1,16420:12804003,40624441 -g1,16420:13120149,40624441 -g1,16420:15017023,40624441 -g1,16420:15333169,40624441 -g1,16420:15649315,40624441 -g1,16420:15965461,40624441 -g1,16420:16281607,40624441 -g1,16420:16597753,40624441 -g1,16420:16913899,40624441 -g1,16420:17230045,40624441 -h1,16420:21023793,40624441:0,0,0 -k1,16420:32583029,40624441:11559236 -g1,16420:32583029,40624441 -) -(1,16422:6797234,41945979:25785795,404226,107478 -(1,16421:6797234,41945979:0,0,0 -g1,16421:6797234,41945979 -g1,16421:6797234,41945979 -g1,16421:6469554,41945979 -(1,16421:6469554,41945979:0,0,0 -) -g1,16421:6797234,41945979 -) -k1,16422:6797234,41945979:0 -k1,16422:6797234,41945979:0 -h1,16422:15649313,41945979:0,0,0 -k1,16422:32583029,41945979:16933716 -g1,16422:32583029,41945979 -) -(1,16426:6797234,42612157:25785795,404226,76021 -(1,16424:6797234,42612157:0,0,0 -g1,16424:6797234,42612157 -g1,16424:6797234,42612157 -g1,16424:6469554,42612157 -(1,16424:6469554,42612157:0,0,0 -) -g1,16424:6797234,42612157 -) -g1,16426:7745671,42612157 -g1,16426:9010254,42612157 -g1,16426:11539420,42612157 -g1,16426:11855566,42612157 -g1,16426:12171712,42612157 -g1,16426:12487858,42612157 -g1,16426:12804004,42612157 -g1,16426:16597752,42612157 -h1,16426:18810772,42612157:0,0,0 -k1,16426:32583029,42612157:13772257 -g1,16426:32583029,42612157 -) -] -) -g1,16427:32583029,42688178 -g1,16427:6797234,42688178 -g1,16427:6797234,42688178 -g1,16427:32583029,42688178 -g1,16427:32583029,42688178 -) -h1,16427:6797234,42884786:0,0,0 -] -g1,16462:32583029,45706769 -) -] -(1,16462:32583029,45706769:0,0,0 -g1,16462:32583029,45706769 +[1,16410:3078558,4812305:0,0,0 +(1,16410:3078558,49800853:0,16384,2228224 +g1,16410:29030814,49800853 +g1,16410:36135244,49800853 +(1,15456:36135244,49800853:1720320,16384,2228224 +(1,15456:36135244,52029077:16384,1703936,0 +[1,15456:36135244,52029077:25952256,1703936,0 +(1,15456:36135244,51504789:25952256,1179648,0 +(1,15456:36135244,51504789:16384,1179648,0 +r1,16410:36151628,51504789:16384,1179648,0 ) +k1,15456:62087500,51504789:25935872 +g1,15456:62087500,51504789 ) ] -(1,16462:6630773,47279633:25952256,0,0 -h1,16462:6630773,47279633:25952256,0,0 ) -] -(1,16462:4262630,4025873:0,0,0 -[1,16462:-473656,4025873:0,0,0 -(1,16462:-473656,-710413:0,0,0 -(1,16462:-473656,-710413:0,0,0 -g1,16462:-473656,-710413 +g1,15456:36675916,49800853 +(1,15456:36675916,49800853:1179648,16384,0 +r1,16410:37855564,49800853:1179648,16384,0 ) -g1,16462:-473656,-710413 ) -] +k1,16410:3078556,49800853:-34777008 ) -] -!22650 -}280 -Input:2412:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2413:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2414:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2415:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2416:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2417:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2418:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +] +g1,16410:6630773,4812305 +g1,16410:6630773,4812305 +g1,16410:8364200,4812305 +g1,16410:12785258,4812305 +g1,16410:14347636,4812305 +g1,16410:16554232,4812305 +k1,16410:31387652,4812305:14833420 +) +) +] +[1,16410:6630773,45706769:25952256,40108032,0 +(1,16410:6630773,45706769:25952256,40108032,0 +(1,16410:6630773,45706769:0,0,0 +g1,16410:6630773,45706769 +) +[1,16410:6630773,45706769:25952256,40108032,0 +(1,16343:6630773,6254097:25952256,555811,139132 +(1,16343:6630773,6254097:2450326,534184,12975 +g1,16343:6630773,6254097 +g1,16343:9081099,6254097 +) +g1,16343:12764157,6254097 +k1,16343:32583029,6254097:14629862 +g1,16343:32583029,6254097 +) +(1,16347:6630773,7512393:25952256,513147,134348 +k1,16346:10098829,7512393:294803 +k1,16346:11678137,7512393:294802 +k1,16346:12992025,7512393:294803 +k1,16346:14676191,7512393:294803 +k1,16346:15502490,7512393:294802 +k1,16346:17835463,7512393:294803 +k1,16346:18746304,7512393:294803 +k1,16346:20429814,7512393:294802 +k1,16346:22465909,7512393:294803 +k1,16346:25577449,7512393:294803 +k1,16346:29276846,7512393:294802 +k1,16346:30563209,7512393:294803 +k1,16347:32583029,7512393:0 +) +(1,16347:6630773,8377473:25952256,513147,134348 +k1,16346:8422673,8377473:194132 +k1,16346:11971593,8377473:194132 +k1,16346:14176371,8377473:194133 +k1,16346:15938124,8377473:194132 +k1,16346:17151341,8377473:194132 +k1,16346:18998946,8377473:194132 +k1,16346:22934529,8377473:194133 +k1,16346:26577165,8377473:194132 +k1,16346:30573040,8377473:194132 +k1,16346:32583029,8377473:0 +) +(1,16347:6630773,9242553:25952256,513147,134348 +k1,16346:7207100,9242553:220467 +k1,16346:9300586,9242553:220467 +k1,16346:10724949,9242553:220467 +k1,16346:11604708,9242553:220467 +k1,16346:12181035,9242553:220467 +k1,16346:13790865,9242553:220467 +k1,16346:15887627,9242553:220466 +k1,16346:16790979,9242553:220467 +k1,16346:18996532,9242553:220467 +k1,16346:21008753,9242553:220467 +k1,16346:24255017,9242553:220467 +(1,16346:24255017,9242553:0,452978,115847 +r1,16410:27075266,9242553:2820249,568825,115847 +k1,16346:24255017,9242553:-2820249 +) +(1,16346:24255017,9242553:2820249,452978,115847 +k1,16346:24255017,9242553:3277 +h1,16346:27071989,9242553:0,411205,112570 +) +k1,16346:27295733,9242553:220467 +k1,16346:28707645,9242553:220467 +(1,16346:28707645,9242553:0,452978,115847 +r1,16410:32583029,9242553:3875384,568825,115847 +k1,16346:28707645,9242553:-3875384 +) +(1,16346:28707645,9242553:3875384,452978,115847 +k1,16346:28707645,9242553:3277 +h1,16346:32579752,9242553:0,411205,112570 +) +k1,16346:32583029,9242553:0 +) +(1,16347:6630773,10107633:25952256,513147,134348 +k1,16346:7796200,10107633:297075 +k1,16346:9197556,10107633:297074 +k1,16346:11518383,10107633:297075 +k1,16346:14198346,10107633:297074 +k1,16346:17679160,10107633:297075 +k1,16346:18737763,10107633:297075 +k1,16346:22389625,10107633:297074 +k1,16346:25449043,10107633:297075 +k1,16346:28761428,10107633:297074 +k1,16346:29741388,10107633:297075 +k1,16346:32583029,10107633:0 +) +(1,16347:6630773,10972713:25952256,513147,134348 +k1,16346:8031868,10972713:209650 +k1,16346:11503244,10972713:209649 +k1,16346:12395779,10972713:209650 +k1,16346:15359251,10972713:209649 +k1,16346:15924761,10972713:209650 +k1,16346:20457820,10972713:209649 +k1,16346:25678353,10972713:209650 +k1,16346:26841551,10972713:209649 +k1,16346:28248544,10972713:209650 +k1,16346:29741388,10972713:209649 +k1,16346:32583029,10972713:0 +) +(1,16347:6630773,11837793:25952256,505283,134348 +k1,16346:9936662,11837793:178511 +k1,16346:12969922,11837793:178512 +k1,16346:15639456,11837793:178511 +k1,16346:17304980,11837793:178512 +k1,16346:19218884,11837793:178511 +(1,16346:19218884,11837793:0,452978,115847 +r1,16410:22039133,11837793:2820249,568825,115847 +k1,16346:19218884,11837793:-2820249 +) +(1,16346:19218884,11837793:2820249,452978,115847 +k1,16346:19218884,11837793:3277 +h1,16346:22035856,11837793:0,411205,112570 +) +k1,16346:22217645,11837793:178512 +k1,16346:23079041,11837793:178511 +k1,16346:24125905,11837793:178512 +k1,16346:27241084,11837793:178511 +k1,16346:27775456,11837793:178512 +k1,16346:29237162,11837793:178511 +k1,16346:31227089,11837793:178512 +k1,16347:32583029,11837793:0 +) +(1,16347:6630773,12702873:25952256,513147,134348 +g1,16346:9049051,12702873 +g1,16346:10623881,12702873 +g1,16346:11842195,12702873 +g1,16346:14754615,12702873 +g1,16346:15822196,12702873 +g1,16346:18918772,12702873 +g1,16346:21377027,12702873 +g1,16346:23311649,12702873 +(1,16346:23311649,12702873:0,452978,115847 +r1,16410:27187033,12702873:3875384,568825,115847 +k1,16346:23311649,12702873:-3875384 +) +(1,16346:23311649,12702873:3875384,452978,115847 +k1,16346:23311649,12702873:3277 +h1,16346:27183756,12702873:0,411205,112570 +) +k1,16347:32583029,12702873:5222326 +g1,16347:32583029,12702873 +) +v1,16349:6630773,13567953:0,393216,0 +(1,16367:6630773,22512447:25952256,9337710,0 +g1,16367:6630773,22512447 +g1,16367:6237557,22512447 +r1,16410:6368629,22512447:131072,9337710,0 +g1,16367:6567858,22512447 +g1,16367:6764466,22512447 +[1,16367:6764466,22512447:25818563,9337710,0 +(1,16350:6764466,13876251:25818563,701514,196608 +(1,16349:6764466,13876251:0,701514,196608 +r1,16410:8010564,13876251:1246098,898122,196608 +k1,16349:6764466,13876251:-1246098 +) +(1,16349:6764466,13876251:1246098,701514,196608 +) +k1,16349:8326952,13876251:316388 +k1,16349:8654632,13876251:327680 +k1,16349:11815939,13876251:316389 +k1,16349:13699948,13876251:316388 +k1,16349:15737311,13876251:316388 +k1,16349:16468425,13876251:316271 +k1,16349:19042528,13876251:316388 +k1,16349:20752867,13876251:316388 +(1,16349:20752867,13876251:0,452978,115847 +r1,16410:23573116,13876251:2820249,568825,115847 +k1,16349:20752867,13876251:-2820249 +) +(1,16349:20752867,13876251:2820249,452978,115847 +k1,16349:20752867,13876251:3277 +h1,16349:23569839,13876251:0,411205,112570 +) +k1,16349:24063174,13876251:316388 +(1,16349:24063174,13876251:0,452978,115847 +r1,16410:26883423,13876251:2820249,568825,115847 +k1,16349:24063174,13876251:-2820249 +) +(1,16349:24063174,13876251:2820249,452978,115847 +k1,16349:24063174,13876251:3277 +h1,16349:26880146,13876251:0,411205,112570 +) +k1,16349:27199812,13876251:316389 +k1,16349:28707645,13876251:316388 +(1,16349:28707645,13876251:0,452978,115847 +r1,16410:32583029,13876251:3875384,568825,115847 +k1,16349:28707645,13876251:-3875384 +) +(1,16349:28707645,13876251:3875384,452978,115847 +k1,16349:28707645,13876251:3277 +h1,16349:32579752,13876251:0,411205,112570 +) +k1,16349:32583029,13876251:0 +) +(1,16350:6764466,14741331:25818563,505283,134348 +k1,16349:7854712,14741331:221894 +k1,16349:9180888,14741331:221894 +k1,16349:10495266,14741331:221893 +k1,16349:12727805,14741331:221894 +k1,16349:15154986,14741331:221894 +k1,16349:16063042,14741331:221894 +k1,16349:19861235,14741331:221893 +k1,16349:20699167,14741331:221894 +k1,16349:21940146,14741331:221894 +k1,16349:25678702,14741331:221894 +k1,16349:29331405,14741331:221893 +k1,16349:30572384,14741331:221894 +k1,16349:32583029,14741331:0 +) +(1,16350:6764466,15606411:25818563,505283,134348 +k1,16349:9178409,15606411:208656 +k1,16349:10073228,15606411:208657 +k1,16349:11735473,15606411:208656 +k1,16349:15520429,15606411:208656 +k1,16349:16356921,15606411:208657 +k1,16349:18317354,15606411:208656 +k1,16349:20397063,15606411:208656 +k1,16349:21808960,15606411:208656 +k1,16349:24029572,15606411:208657 +k1,16349:25888425,15606411:208656 +k1,16349:28452445,15606411:208656 +k1,16349:29852547,15606411:208657 +k1,16349:31931601,15606411:208656 +k1,16349:32583029,15606411:0 +) +(1,16350:6764466,16471491:25818563,505283,7863 +g1,16349:10628468,16471491 +k1,16350:32583029,16471491:20284704 +g1,16350:32583029,16471491 +) +v1,16352:6764466,17156346:0,393216,0 +(1,16365:6764466,22315839:25818563,5552709,196608 +g1,16365:6764466,22315839 +g1,16365:6764466,22315839 +g1,16365:6567858,22315839 +(1,16365:6567858,22315839:0,5552709,196608 +r1,16410:32779637,22315839:26211779,5749317,196608 +k1,16365:6567857,22315839:-26211780 +) +(1,16365:6567858,22315839:26211779,5552709,196608 +[1,16365:6764466,22315839:25818563,5356101,0 +(1,16354:6764466,17384177:25818563,424439,86428 +(1,16353:6764466,17384177:0,0,0 +g1,16353:6764466,17384177 +g1,16353:6764466,17384177 +g1,16353:6436786,17384177 +(1,16353:6436786,17384177:0,0,0 +) +g1,16353:6764466,17384177 +) +k1,16354:6764466,17384177:0 +g1,16354:9752052,17384177 +g1,16354:10415960,17384177 +g1,16354:12075730,17384177 +g1,16354:12739638,17384177 +g1,16354:13403546,17384177 +g1,16354:14067454,17384177 +g1,16354:14731362,17384177 +h1,16354:15395270,17384177:0,0,0 +k1,16354:32583030,17384177:17187760 +g1,16354:32583030,17384177 +) +(1,16364:6764466,18200104:25818563,424439,9908 +(1,16356:6764466,18200104:0,0,0 +g1,16356:6764466,18200104 +g1,16356:6764466,18200104 +g1,16356:6436786,18200104 +(1,16356:6436786,18200104:0,0,0 +) +g1,16356:6764466,18200104 +) +g1,16364:7760328,18200104 +g1,16364:8424236,18200104 +g1,16364:9088144,18200104 +g1,16364:11743776,18200104 +g1,16364:12407684,18200104 +g1,16364:13071592,18200104 +h1,16364:13403546,18200104:0,0,0 +k1,16364:32583030,18200104:19179484 +g1,16364:32583030,18200104 +) +(1,16364:6764466,18884959:25818563,424439,6605 +h1,16364:6764466,18884959:0,0,0 +g1,16364:7760328,18884959 +g1,16364:8092282,18884959 +g1,16364:8424236,18884959 +g1,16364:8756190,18884959 +g1,16364:9088144,18884959 +g1,16364:9420098,18884959 +g1,16364:9752052,18884959 +g1,16364:10415960,18884959 +g1,16364:10747914,18884959 +g1,16364:11079868,18884959 +g1,16364:11411822,18884959 +g1,16364:11743776,18884959 +h1,16364:12075730,18884959:0,0,0 +k1,16364:32583030,18884959:20507300 +g1,16364:32583030,18884959 +) +(1,16364:6764466,19569814:25818563,424439,6605 +h1,16364:6764466,19569814:0,0,0 +g1,16364:7760328,19569814 +g1,16364:8092282,19569814 +g1,16364:8424236,19569814 +g1,16364:10415960,19569814 +k1,16364:10415960,19569814:0 +h1,16364:12075730,19569814:0,0,0 +k1,16364:32583030,19569814:20507300 +g1,16364:32583030,19569814 +) +(1,16364:6764466,20254669:25818563,407923,0 +h1,16364:6764466,20254669:0,0,0 +g1,16364:7760328,20254669 +g1,16364:8424236,20254669 +g1,16364:8756190,20254669 +g1,16364:9088144,20254669 +g1,16364:9420098,20254669 +g1,16364:9752052,20254669 +g1,16364:10415960,20254669 +g1,16364:10747914,20254669 +g1,16364:11079868,20254669 +g1,16364:11411822,20254669 +g1,16364:11743776,20254669 +h1,16364:12075730,20254669:0,0,0 +k1,16364:32583030,20254669:20507300 +g1,16364:32583030,20254669 +) +(1,16364:6764466,20939524:25818563,407923,0 +h1,16364:6764466,20939524:0,0,0 +g1,16364:7760328,20939524 +g1,16364:8424236,20939524 +g1,16364:8756190,20939524 +g1,16364:9088144,20939524 +g1,16364:9420098,20939524 +g1,16364:9752052,20939524 +g1,16364:10415960,20939524 +g1,16364:10747914,20939524 +g1,16364:11079868,20939524 +g1,16364:11411822,20939524 +g1,16364:11743776,20939524 +h1,16364:12075730,20939524:0,0,0 +k1,16364:32583030,20939524:20507300 +g1,16364:32583030,20939524 +) +(1,16364:6764466,21624379:25818563,407923,9908 +h1,16364:6764466,21624379:0,0,0 +g1,16364:7760328,21624379 +g1,16364:8424236,21624379 +g1,16364:8756190,21624379 +g1,16364:9088144,21624379 +g1,16364:9420098,21624379 +g1,16364:9752052,21624379 +g1,16364:10415960,21624379 +g1,16364:10747914,21624379 +g1,16364:11079868,21624379 +g1,16364:11411822,21624379 +g1,16364:11743776,21624379 +h1,16364:12075730,21624379:0,0,0 +k1,16364:32583030,21624379:20507300 +g1,16364:32583030,21624379 +) +(1,16364:6764466,22309234:25818563,424439,6605 +h1,16364:6764466,22309234:0,0,0 +g1,16364:7760328,22309234 +g1,16364:8424236,22309234 +g1,16364:9088144,22309234 +g1,16364:9752052,22309234 +g1,16364:11411822,22309234 +h1,16364:12739638,22309234:0,0,0 +k1,16364:32583030,22309234:19843392 +g1,16364:32583030,22309234 +) +] +) +g1,16365:32583029,22315839 +g1,16365:6764466,22315839 +g1,16365:6764466,22315839 +g1,16365:32583029,22315839 +g1,16365:32583029,22315839 +) +h1,16365:6764466,22512447:0,0,0 +] +g1,16367:32583029,22512447 +) +h1,16367:6630773,22512447:0,0,0 +(1,16370:6630773,23377527:25952256,513147,134348 +h1,16369:6630773,23377527:983040,0,0 +k1,16369:11376652,23377527:219963 +k1,16369:12990565,23377527:219962 +k1,16369:14229613,23377527:219963 +k1,16369:17110992,23377527:219962 +k1,16369:18898576,23377527:219963 +k1,16369:20137623,23377527:219962 +k1,16369:23112064,23377527:219963 +k1,16369:25784383,23377527:219962 +k1,16369:26872698,23377527:219963 +k1,16369:28694360,23377527:219962 +k1,16369:30626779,23377527:219963 +k1,16369:32583029,23377527:0 +) +(1,16370:6630773,24242607:25952256,505283,126483 +k1,16369:8096020,24242607:319022 +k1,16369:9066471,24242607:319023 +k1,16369:10799760,24242607:319022 +k1,16369:12137868,24242607:319023 +k1,16369:14467535,24242607:319022 +k1,16369:15402595,24242607:319022 +k1,16369:18232958,24242607:319023 +(1,16369:18232958,24242607:0,414482,115847 +r1,16410:19646359,24242607:1413401,530329,115847 +k1,16369:18232958,24242607:-1413401 +) +(1,16369:18232958,24242607:1413401,414482,115847 +k1,16369:18232958,24242607:3277 +h1,16369:19643082,24242607:0,411205,112570 +) +k1,16369:19965381,24242607:319022 +k1,16369:21551870,24242607:319023 +(1,16369:21551870,24242607:0,452978,115847 +r1,16410:25075542,24242607:3523672,568825,115847 +k1,16369:21551870,24242607:-3523672 +) +(1,16369:21551870,24242607:3523672,452978,115847 +k1,16369:21551870,24242607:3277 +h1,16369:25072265,24242607:0,411205,112570 +) +k1,16369:25394564,24242607:319022 +k1,16369:26905031,24242607:319022 +(1,16369:26905031,24242607:0,452978,115847 +r1,16410:29725280,24242607:2820249,568825,115847 +k1,16369:26905031,24242607:-2820249 +) +(1,16369:26905031,24242607:2820249,452978,115847 +k1,16369:26905031,24242607:3277 +h1,16369:29722003,24242607:0,411205,112570 +) +k1,16369:30217973,24242607:319023 +k1,16369:31490544,24242607:319022 +k1,16370:32583029,24242607:0 +) +(1,16370:6630773,25107687:25952256,513147,134348 +(1,16369:6630773,25107687:0,452978,115847 +r1,16410:9451022,25107687:2820249,568825,115847 +k1,16369:6630773,25107687:-2820249 +) +(1,16369:6630773,25107687:2820249,452978,115847 +k1,16369:6630773,25107687:3277 +h1,16369:9447745,25107687:0,411205,112570 +) +k1,16369:9603389,25107687:152367 +k1,16369:11323377,25107687:152367 +k1,16369:13448377,25107687:152367 +k1,16369:14792189,25107687:152367 +(1,16369:14792189,25107687:0,452978,115847 +r1,16410:19370997,25107687:4578808,568825,115847 +k1,16369:14792189,25107687:-4578808 +) +(1,16369:14792189,25107687:4578808,452978,115847 +k1,16369:14792189,25107687:3277 +h1,16369:19367720,25107687:0,411205,112570 +) +k1,16369:19523364,25107687:152367 +k1,16369:21243353,25107687:152368 +k1,16369:24035509,25107687:152367 +k1,16369:25141425,25107687:152367 +k1,16369:26386277,25107687:152367 +k1,16369:28812743,25107687:152367 +k1,16369:32583029,25107687:0 +) +(1,16370:6630773,25972767:25952256,505283,134348 +k1,16369:8019348,25972767:156498 +k1,16369:9673999,25972767:156498 +(1,16369:9673999,25972767:661914,485622,0 +) +k1,16369:10699504,25972767:156497 +k1,16369:11542164,25972767:156498 +k1,16369:15101291,25972767:156498 +k1,16369:17463076,25972767:156498 +k1,16369:18271002,25972767:156498 +(1,16369:18271002,25972767:0,414482,115847 +r1,16410:20739539,25972767:2468537,530329,115847 +k1,16369:18271002,25972767:-2468537 +) +(1,16369:18271002,25972767:2468537,414482,115847 +k1,16369:18271002,25972767:3277 +h1,16369:20736262,25972767:0,411205,112570 +) +k1,16369:21069706,25972767:156497 +k1,16369:22179753,25972767:156498 +k1,16369:23151519,25972767:156498 +k1,16369:24374288,25972767:156498 +k1,16369:26191468,25972767:156498 +k1,16369:26806062,25972767:156497 +k1,16369:28534113,25972767:156498 +k1,16369:29762780,25972767:156498 +(1,16369:29762780,25972767:0,452978,115847 +r1,16410:32583029,25972767:2820249,568825,115847 +k1,16369:29762780,25972767:-2820249 +) +(1,16369:29762780,25972767:2820249,452978,115847 +k1,16369:29762780,25972767:3277 +h1,16369:32579752,25972767:0,411205,112570 +) +k1,16369:32583029,25972767:0 +) +(1,16370:6630773,26837847:25952256,513147,126483 +k1,16369:7967371,26837847:232316 +k1,16369:8947453,26837847:232316 +k1,16369:10692995,26837847:232316 +k1,16369:12319262,26837847:232316 +k1,16369:15393219,26837847:232316 +k1,16369:16284827,26837847:232316 +k1,16369:17648950,26837847:232316 +(1,16369:17648950,26837847:0,452978,115847 +r1,16410:19062351,26837847:1413401,568825,115847 +k1,16369:17648950,26837847:-1413401 +) +(1,16369:17648950,26837847:1413401,452978,115847 +k1,16369:17648950,26837847:3277 +h1,16369:19059074,26837847:0,411205,112570 +) +k1,16369:19468337,26837847:232316 +k1,16369:20892098,26837847:232316 +k1,16369:24926157,26837847:232316 +k1,16369:26262755,26837847:232316 +k1,16369:28772447,26837847:232316 +k1,16369:31015408,26837847:232316 +k1,16369:32583029,26837847:0 +) +(1,16370:6630773,27702927:25952256,505283,134348 +k1,16369:9037867,27702927:175593 +k1,16369:12100320,27702927:175592 +k1,16369:12745806,27702927:175593 +k1,16369:13452895,27702927:175592 +k1,16369:15095184,27702927:175593 +k1,16369:17900737,27702927:175593 +k1,16369:18727757,27702927:175592 +k1,16369:21314420,27702927:175593 +k1,16369:22299382,27702927:175592 +k1,16369:24485620,27702927:175593 +k1,16369:27415036,27702927:175593 +k1,16369:27946488,27702927:175592 +k1,16369:29057280,27702927:175593 +k1,16369:30089428,27702927:175592 +k1,16369:30881059,27702927:175593 +k1,16369:32583029,27702927:0 +) +(1,16370:6630773,28568007:25952256,505283,134348 +g1,16369:8958611,28568007 +g1,16369:10893233,28568007 +g1,16369:12626660,28568007 +g1,16369:15861517,28568007 +g1,16369:18420042,28568007 +g1,16369:19270699,28568007 +g1,16369:20489013,28568007 +g1,16369:23032465,28568007 +k1,16370:32583029,28568007:8220183 +g1,16370:32583029,28568007 +) +v1,16372:6630773,29252862:0,393216,0 +(1,16389:6630773,37155078:25952256,8295432,196608 +g1,16389:6630773,37155078 +g1,16389:6630773,37155078 +g1,16389:6434165,37155078 +(1,16389:6434165,37155078:0,8295432,196608 +r1,16410:32779637,37155078:26345472,8492040,196608 +k1,16389:6434165,37155078:-26345472 +) +(1,16389:6434165,37155078:26345472,8295432,196608 +[1,16389:6630773,37155078:25952256,8098824,0 +(1,16374:6630773,29480693:25952256,424439,112852 +(1,16373:6630773,29480693:0,0,0 +g1,16373:6630773,29480693 +g1,16373:6630773,29480693 +g1,16373:6303093,29480693 +(1,16373:6303093,29480693:0,0,0 +) +g1,16373:6630773,29480693 +) +g1,16374:10946174,29480693 +k1,16374:10946174,29480693:0 +h1,16374:12273990,29480693:0,0,0 +k1,16374:32583030,29480693:20309040 +g1,16374:32583030,29480693 +) +(1,16375:6630773,30165548:25952256,424439,86428 +h1,16375:6630773,30165548:0,0,0 +g1,16375:6962727,30165548 +g1,16375:7294681,30165548 +k1,16375:7294681,30165548:0 +h1,16375:10282267,30165548:0,0,0 +k1,16375:32583029,30165548:22300762 +g1,16375:32583029,30165548 +) +(1,16376:6630773,30850403:25952256,424439,106246 +h1,16376:6630773,30850403:0,0,0 +g1,16376:6962727,30850403 +g1,16376:7294681,30850403 +g1,16376:7626635,30850403 +g1,16376:7958589,30850403 +g1,16376:8290543,30850403 +g1,16376:8622497,30850403 +g1,16376:8954451,30850403 +g1,16376:9286405,30850403 +g1,16376:9618359,30850403 +g1,16376:13269852,30850403 +g1,16376:13933760,30850403 +g1,16376:19908931,30850403 +k1,16376:19908931,30850403:0 +h1,16376:24888240,30850403:0,0,0 +k1,16376:32583029,30850403:7694789 +g1,16376:32583029,30850403 +) +(1,16377:6630773,31535258:25952256,431045,112852 +h1,16377:6630773,31535258:0,0,0 +g1,16377:6962727,31535258 +g1,16377:7294681,31535258 +g1,16377:7626635,31535258 +g1,16377:7958589,31535258 +g1,16377:8290543,31535258 +g1,16377:8622497,31535258 +g1,16377:8954451,31535258 +g1,16377:9286405,31535258 +g1,16377:9618359,31535258 +g1,16377:12605944,31535258 +g1,16377:13269852,31535258 +g1,16377:19245023,31535258 +g1,16377:24556286,31535258 +g1,16377:25552148,31535258 +h1,16377:29535595,31535258:0,0,0 +k1,16377:32583029,31535258:3047434 +g1,16377:32583029,31535258 +) +(1,16378:6630773,32220113:25952256,424439,112852 +h1,16378:6630773,32220113:0,0,0 +h1,16378:10614220,32220113:0,0,0 +k1,16378:32583028,32220113:21968808 +g1,16378:32583028,32220113 +) +(1,16388:6630773,33036040:25952256,424439,9908 +(1,16380:6630773,33036040:0,0,0 +g1,16380:6630773,33036040 +g1,16380:6630773,33036040 +g1,16380:6303093,33036040 +(1,16380:6303093,33036040:0,0,0 +) +g1,16380:6630773,33036040 +) +g1,16388:7626635,33036040 +g1,16388:8290543,33036040 +g1,16388:8954451,33036040 +g1,16388:11610083,33036040 +g1,16388:12937899,33036040 +g1,16388:13601807,33036040 +h1,16388:13933761,33036040:0,0,0 +k1,16388:32583029,33036040:18649268 +g1,16388:32583029,33036040 +) +(1,16388:6630773,33720895:25952256,424439,106246 +h1,16388:6630773,33720895:0,0,0 +g1,16388:7626635,33720895 +g1,16388:7958589,33720895 +g1,16388:8290543,33720895 +g1,16388:10946175,33720895 +g1,16388:12605945,33720895 +g1,16388:12937899,33720895 +g1,16388:13269853,33720895 +g1,16388:13601807,33720895 +g1,16388:13933761,33720895 +g1,16388:14265715,33720895 +g1,16388:14597669,33720895 +g1,16388:14929623,33720895 +g1,16388:15261577,33720895 +g1,16388:18581116,33720895 +g1,16388:22232609,33720895 +h1,16388:24888240,33720895:0,0,0 +k1,16388:32583029,33720895:7694789 +g1,16388:32583029,33720895 +) +(1,16388:6630773,34405750:25952256,431045,6605 +h1,16388:6630773,34405750:0,0,0 +g1,16388:7626635,34405750 +g1,16388:7958589,34405750 +g1,16388:8290543,34405750 +g1,16388:10282267,34405750 +g1,16388:10614221,34405750 +g1,16388:10946175,34405750 +g1,16388:12937899,34405750 +g1,16388:13269853,34405750 +g1,16388:13601807,34405750 +g1,16388:13933761,34405750 +g1,16388:14265715,34405750 +g1,16388:14597669,34405750 +g1,16388:14929623,34405750 +g1,16388:15261577,34405750 +g1,16388:15593531,34405750 +g1,16388:15925485,34405750 +g1,16388:16257439,34405750 +g1,16388:16589393,34405750 +g1,16388:18581117,34405750 +g1,16388:20572841,34405750 +g1,16388:20904795,34405750 +g1,16388:21236749,34405750 +g1,16388:21568703,34405750 +g1,16388:21900657,34405750 +g1,16388:22232611,34405750 +k1,16388:22232611,34405750:0 +h1,16388:23892381,34405750:0,0,0 +k1,16388:32583029,34405750:8690648 +g1,16388:32583029,34405750 +) +(1,16388:6630773,35090605:25952256,424439,112852 +h1,16388:6630773,35090605:0,0,0 +g1,16388:7626635,35090605 +g1,16388:8290543,35090605 +g1,16388:10614221,35090605 +g1,16388:10946175,35090605 +g1,16388:15261576,35090605 +g1,16388:15593530,35090605 +g1,16388:15925484,35090605 +g1,16388:16257438,35090605 +g1,16388:16589392,35090605 +g1,16388:16921346,35090605 +g1,16388:17253300,35090605 +g1,16388:18581116,35090605 +g1,16388:20572840,35090605 +g1,16388:20904794,35090605 +g1,16388:21236748,35090605 +g1,16388:21568702,35090605 +g1,16388:21900656,35090605 +g1,16388:22232610,35090605 +h1,16388:24224334,35090605:0,0,0 +k1,16388:32583029,35090605:8358695 +g1,16388:32583029,35090605 +) +(1,16388:6630773,35775460:25952256,424439,106246 +h1,16388:6630773,35775460:0,0,0 +g1,16388:7626635,35775460 +g1,16388:8290543,35775460 +g1,16388:10614221,35775460 +g1,16388:10946175,35775460 +g1,16388:14929622,35775460 +g1,16388:15261576,35775460 +g1,16388:15593530,35775460 +g1,16388:15925484,35775460 +g1,16388:16257438,35775460 +g1,16388:16589392,35775460 +g1,16388:16921346,35775460 +g1,16388:17253300,35775460 +g1,16388:18581116,35775460 +g1,16388:20572840,35775460 +g1,16388:20904794,35775460 +g1,16388:21236748,35775460 +g1,16388:21568702,35775460 +g1,16388:21900656,35775460 +g1,16388:22232610,35775460 +h1,16388:23892380,35775460:0,0,0 +k1,16388:32583029,35775460:8690649 +g1,16388:32583029,35775460 +) +(1,16388:6630773,36460315:25952256,424439,112852 +h1,16388:6630773,36460315:0,0,0 +g1,16388:7626635,36460315 +g1,16388:8290543,36460315 +g1,16388:10614221,36460315 +g1,16388:10946175,36460315 +g1,16388:15261576,36460315 +g1,16388:15593530,36460315 +g1,16388:15925484,36460315 +g1,16388:16257438,36460315 +g1,16388:16589392,36460315 +g1,16388:16921346,36460315 +g1,16388:17253300,36460315 +g1,16388:18581116,36460315 +g1,16388:20572840,36460315 +g1,16388:20904794,36460315 +g1,16388:21236748,36460315 +g1,16388:21568702,36460315 +g1,16388:21900656,36460315 +g1,16388:22232610,36460315 +h1,16388:24224334,36460315:0,0,0 +k1,16388:32583029,36460315:8358695 +g1,16388:32583029,36460315 +) +(1,16388:6630773,37145170:25952256,424439,9908 +h1,16388:6630773,37145170:0,0,0 +g1,16388:7626635,37145170 +g1,16388:8290543,37145170 +g1,16388:8954451,37145170 +g1,16388:10282267,37145170 +g1,16388:11942037,37145170 +h1,16388:13269853,37145170:0,0,0 +k1,16388:32583029,37145170:19313176 +g1,16388:32583029,37145170 +) +] +) +g1,16389:32583029,37155078 +g1,16389:6630773,37155078 +g1,16389:6630773,37155078 +g1,16389:32583029,37155078 +g1,16389:32583029,37155078 +) +h1,16389:6630773,37351686:0,0,0 +(1,16393:6630773,38216766:25952256,513147,134348 +h1,16392:6630773,38216766:983040,0,0 +k1,16392:8472788,38216766:231140 +k1,16392:9723014,38216766:231141 +k1,16392:11338274,38216766:231140 +k1,16392:12702533,38216766:231141 +k1,16392:15408312,38216766:231140 +k1,16392:16507804,38216766:231140 +k1,16392:18320984,38216766:231141 +k1,16392:19571209,38216766:231140 +k1,16392:22581076,38216766:231140 +k1,16392:24822862,38216766:231141 +k1,16392:27005664,38216766:231140 +k1,16392:28679252,38216766:231141 +k1,16392:30943974,38216766:231140 +k1,16392:32583029,38216766:0 +) +(1,16393:6630773,39081846:25952256,513147,134348 +k1,16392:7466205,39081846:219394 +k1,16392:10700911,39081846:219395 +k1,16392:11548140,39081846:219394 +k1,16392:14046222,39081846:219395 +k1,16392:15531772,39081846:219394 +k1,16392:16907876,39081846:219394 +k1,16392:19083521,39081846:219395 +k1,16392:22014795,39081846:219394 +k1,16392:23930916,39081846:219394 +k1,16392:27176108,39081846:219395 +k1,16392:28662968,39081846:219394 +k1,16392:29238223,39081846:219395 +k1,16392:30847636,39081846:219394 +k1,16392:32583029,39081846:0 +) +(1,16393:6630773,39946926:25952256,505283,134348 +g1,16392:9576616,39946926 +(1,16392:9576616,39946926:0,435480,115847 +r1,16410:10990017,39946926:1413401,551327,115847 +k1,16392:9576616,39946926:-1413401 +) +(1,16392:9576616,39946926:1413401,435480,115847 +k1,16392:9576616,39946926:3277 +h1,16392:10986740,39946926:0,411205,112570 +) +g1,16392:11189246,39946926 +g1,16392:12620552,39946926 +g1,16392:15098468,39946926 +h1,16392:16069056,39946926:0,0,0 +g1,16392:16268285,39946926 +g1,16392:17276884,39946926 +g1,16392:18974266,39946926 +h1,16392:20169643,39946926:0,0,0 +k1,16393:32583029,39946926:12032622 +g1,16393:32583029,39946926 +) +(1,16395:6630773,40812006:25952256,513147,134348 +h1,16394:6630773,40812006:983040,0,0 +k1,16394:10641694,40812006:238013 +(1,16394:10641694,40812006:0,452978,122846 +r1,16410:13813654,40812006:3171960,575824,122846 +k1,16394:10641694,40812006:-3171960 +) +(1,16394:10641694,40812006:3171960,452978,122846 +k1,16394:10641694,40812006:3277 +h1,16394:13810377,40812006:0,411205,112570 +) +k1,16394:14051667,40812006:238013 +k1,16394:14821177,40812006:238013 +k1,16394:16572416,40812006:238013 +k1,16394:17758080,40812006:238013 +k1,16394:20256431,40812006:238014 +k1,16394:21513529,40812006:238013 +k1,16394:25987134,40812006:238013 +k1,16394:28485484,40812006:238013 +k1,16394:29079357,40812006:238013 +k1,16394:30706733,40812006:238013 +k1,16394:32583029,40812006:0 +) +(1,16395:6630773,41677086:25952256,505283,134348 +k1,16394:7675028,41677086:361370 +k1,16394:9847813,41677086:361370 +k1,16394:12622219,41677086:361370 +k1,16394:14426037,41677086:361371 +k1,16394:15548935,41677086:361370 +k1,16394:17645698,41677086:361370 +(1,16394:17645698,41677086:0,452978,115847 +r1,16410:19762523,41677086:2116825,568825,115847 +k1,16394:17645698,41677086:-2116825 +) +(1,16394:17645698,41677086:2116825,452978,115847 +k1,16394:17645698,41677086:3277 +h1,16394:19759246,41677086:0,411205,112570 +) +k1,16394:20123893,41677086:361370 +k1,16394:21676708,41677086:361370 +(1,16394:21676708,41677086:0,452978,115847 +r1,16410:24145245,41677086:2468537,568825,115847 +k1,16394:21676708,41677086:-2468537 +) +(1,16394:21676708,41677086:2468537,452978,115847 +k1,16394:21676708,41677086:3277 +h1,16394:24141968,41677086:0,411205,112570 +) +k1,16394:24680285,41677086:361370 +k1,16394:26529979,41677086:361371 +k1,16394:27759701,41677086:361370 +k1,16394:29391159,41677086:361370 +k1,16394:30771614,41677086:361370 +k1,16395:32583029,41677086:0 +) +(1,16395:6630773,42542166:25952256,513147,122846 +(1,16394:6630773,42542166:0,452978,122846 +r1,16410:10857869,42542166:4227096,575824,122846 +k1,16394:6630773,42542166:-4227096 +) +(1,16394:6630773,42542166:4227096,452978,122846 +k1,16394:6630773,42542166:3277 +h1,16394:10854592,42542166:0,411205,112570 +) +g1,16394:11057098,42542166 +g1,16394:13110996,42542166 +g1,16394:14119595,42542166 +g1,16394:15337909,42542166 +g1,16394:17547783,42542166 +g1,16394:18363050,42542166 +g1,16394:20217063,42542166 +g1,16394:21075584,42542166 +g1,16394:22063211,42542166 +k1,16395:32583029,42542166:7632957 +g1,16395:32583029,42542166 +) +v1,16397:6630773,43227021:0,393216,0 +(1,16410:6630773,45510161:25952256,2676356,196608 +g1,16410:6630773,45510161 +g1,16410:6630773,45510161 +g1,16410:6434165,45510161 +(1,16410:6434165,45510161:0,2676356,196608 +r1,16410:32779637,45510161:26345472,2872964,196608 +k1,16410:6434165,45510161:-26345472 +) +(1,16410:6434165,45510161:26345472,2676356,196608 +[1,16410:6630773,45510161:25952256,2479748,0 +(1,16399:6630773,43454852:25952256,424439,112852 +(1,16398:6630773,43454852:0,0,0 +g1,16398:6630773,43454852 +g1,16398:6630773,43454852 +g1,16398:6303093,43454852 +(1,16398:6303093,43454852:0,0,0 +) +g1,16398:6630773,43454852 +) +k1,16399:6630773,43454852:0 +g1,16399:13933760,43454852 +g1,16399:16921346,43454852 +g1,16399:20904793,43454852 +h1,16399:23892378,43454852:0,0,0 +k1,16399:32583029,43454852:8690651 +g1,16399:32583029,43454852 +) +(1,16409:6630773,44133846:25952256,424439,9908 +(1,16401:6630773,44133846:0,0,0 +g1,16401:6630773,44133846 +g1,16401:6630773,44133846 +g1,16401:6303093,44133846 +(1,16401:6303093,44133846:0,0,0 +) +g1,16401:6630773,44133846 +) +g1,16409:7626635,44133846 +g1,16409:8290543,44133846 +g1,16409:8954451,44133846 +g1,16409:11610083,44133846 +g1,16409:12937899,44133846 +g1,16409:13601807,44133846 +h1,16409:13933761,44133846:0,0,0 +k1,16409:32583029,44133846:18649268 +g1,16409:32583029,44133846 +) +(1,16409:6630773,44818701:25952256,424439,106246 +h1,16409:6630773,44818701:0,0,0 +g1,16409:7626635,44818701 +g1,16409:7958589,44818701 +g1,16409:8290543,44818701 +g1,16409:10946175,44818701 +g1,16409:12605945,44818701 +g1,16409:12937899,44818701 +g1,16409:13269853,44818701 +g1,16409:13601807,44818701 +g1,16409:13933761,44818701 +g1,16409:14265715,44818701 +g1,16409:14597669,44818701 +g1,16409:14929623,44818701 +g1,16409:15261577,44818701 +g1,16409:18581116,44818701 +g1,16409:22232609,44818701 +h1,16409:24888240,44818701:0,0,0 +k1,16409:32583029,44818701:7694789 +g1,16409:32583029,44818701 +) +(1,16409:6630773,45503556:25952256,431045,6605 +h1,16409:6630773,45503556:0,0,0 +g1,16409:7626635,45503556 +g1,16409:7958589,45503556 +g1,16409:8290543,45503556 +g1,16409:10282267,45503556 +g1,16409:10614221,45503556 +g1,16409:10946175,45503556 +g1,16409:12937899,45503556 +g1,16409:13269853,45503556 +g1,16409:13601807,45503556 +g1,16409:13933761,45503556 +g1,16409:14265715,45503556 +g1,16409:14597669,45503556 +g1,16409:14929623,45503556 +g1,16409:15261577,45503556 +g1,16409:15593531,45503556 +g1,16409:15925485,45503556 +g1,16409:16257439,45503556 +g1,16409:16589393,45503556 +g1,16409:18581117,45503556 +g1,16409:20572841,45503556 +g1,16409:20904795,45503556 +g1,16409:21236749,45503556 +g1,16409:21568703,45503556 +g1,16409:21900657,45503556 +g1,16409:22232611,45503556 +k1,16409:22232611,45503556:0 +h1,16409:23892381,45503556:0,0,0 +k1,16409:32583029,45503556:8690648 +g1,16409:32583029,45503556 +) +] +) +g1,16410:32583029,45510161 +g1,16410:6630773,45510161 +g1,16410:6630773,45510161 +g1,16410:32583029,45510161 +g1,16410:32583029,45510161 +) +] +(1,16410:32583029,45706769:0,0,0 +g1,16410:32583029,45706769 +) +) +] +(1,16410:6630773,47279633:25952256,0,0 +h1,16410:6630773,47279633:25952256,0,0 +) +] +(1,16410:4262630,4025873:0,0,0 +[1,16410:-473656,4025873:0,0,0 +(1,16410:-473656,-710413:0,0,0 +(1,16410:-473656,-710413:0,0,0 +g1,16410:-473656,-710413 +) +g1,16410:-473656,-710413 +) +] +) +] +!34008 +}264 Input:2419:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2420:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2421:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -281081,8 +277733,13 @@ Input:2425:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConso Input:2426:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2427:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2428:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1610 -{281 +Input:2429:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2430:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2431:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2432:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2433:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1422 +{265 [1,16490:4262630,47279633:28320399,43253760,0 (1,16490:4262630,4025873:0,0,0 [1,16490:-473656,4025873:0,0,0 @@ -281105,19 +277762,19 @@ g1,16490:3078558,4812305 [1,16490:3078558,4812305:0,0,0 (1,16490:3078558,2439708:0,1703936,0 k1,16490:1358238,2439708:-1720320 -(1,15243:1358238,2439708:1720320,1703936,0 -(1,15243:1358238,2439708:1179648,16384,0 +(1,15456:1358238,2439708:1720320,1703936,0 +(1,15456:1358238,2439708:1179648,16384,0 r1,16490:2537886,2439708:1179648,16384,0 ) -g1,15243:3062174,2439708 -(1,15243:3062174,2439708:16384,1703936,0 -[1,15243:3062174,2439708:25952256,1703936,0 -(1,15243:3062174,1915420:25952256,1179648,0 -(1,15243:3062174,1915420:16384,1179648,0 +g1,15456:3062174,2439708 +(1,15456:3062174,2439708:16384,1703936,0 +[1,15456:3062174,2439708:25952256,1703936,0 +(1,15456:3062174,1915420:25952256,1179648,0 +(1,15456:3062174,1915420:16384,1179648,0 r1,16490:3078558,1915420:16384,1179648,0 ) -k1,15243:29014430,1915420:25935872 -g1,15243:29014430,1915420 +k1,15456:29014430,1915420:25935872 +g1,15456:29014430,1915420 ) ] ) @@ -281128,20 +277785,20 @@ g1,15243:29014430,1915420 (1,16490:3078558,2439708:0,1703936,0 g1,16490:29030814,2439708 g1,16490:36135244,2439708 -(1,15243:36135244,2439708:1720320,1703936,0 -(1,15243:36135244,2439708:16384,1703936,0 -[1,15243:36135244,2439708:25952256,1703936,0 -(1,15243:36135244,1915420:25952256,1179648,0 -(1,15243:36135244,1915420:16384,1179648,0 +(1,15456:36135244,2439708:1720320,1703936,0 +(1,15456:36135244,2439708:16384,1703936,0 +[1,15456:36135244,2439708:25952256,1703936,0 +(1,15456:36135244,1915420:25952256,1179648,0 +(1,15456:36135244,1915420:16384,1179648,0 r1,16490:36151628,1915420:16384,1179648,0 ) -k1,15243:62087500,1915420:25935872 -g1,15243:62087500,1915420 +k1,15456:62087500,1915420:25935872 +g1,15456:62087500,1915420 ) ] ) -g1,15243:36675916,2439708 -(1,15243:36675916,2439708:1179648,16384,0 +g1,15456:36675916,2439708 +(1,15456:36675916,2439708:1179648,16384,0 r1,16490:37855564,2439708:1179648,16384,0 ) ) @@ -281151,19 +277808,19 @@ k1,16490:3078556,2439708:-34777008 [1,16490:3078558,4812305:0,0,0 (1,16490:3078558,49800853:0,16384,2228224 k1,16490:1358238,49800853:-1720320 -(1,15243:1358238,49800853:1720320,16384,2228224 -(1,15243:1358238,49800853:1179648,16384,0 +(1,15456:1358238,49800853:1720320,16384,2228224 +(1,15456:1358238,49800853:1179648,16384,0 r1,16490:2537886,49800853:1179648,16384,0 ) -g1,15243:3062174,49800853 -(1,15243:3062174,52029077:16384,1703936,0 -[1,15243:3062174,52029077:25952256,1703936,0 -(1,15243:3062174,51504789:25952256,1179648,0 -(1,15243:3062174,51504789:16384,1179648,0 +g1,15456:3062174,49800853 +(1,15456:3062174,52029077:16384,1703936,0 +[1,15456:3062174,52029077:25952256,1703936,0 +(1,15456:3062174,51504789:25952256,1179648,0 +(1,15456:3062174,51504789:16384,1179648,0 r1,16490:3078558,51504789:16384,1179648,0 ) -k1,15243:29014430,51504789:25935872 -g1,15243:29014430,51504789 +k1,15456:29014430,51504789:25935872 +g1,15456:29014430,51504789 ) ] ) @@ -281174,20 +277831,20 @@ g1,15243:29014430,51504789 (1,16490:3078558,49800853:0,16384,2228224 g1,16490:29030814,49800853 g1,16490:36135244,49800853 -(1,15243:36135244,49800853:1720320,16384,2228224 -(1,15243:36135244,52029077:16384,1703936,0 -[1,15243:36135244,52029077:25952256,1703936,0 -(1,15243:36135244,51504789:25952256,1179648,0 -(1,15243:36135244,51504789:16384,1179648,0 +(1,15456:36135244,49800853:1720320,16384,2228224 +(1,15456:36135244,52029077:16384,1703936,0 +[1,15456:36135244,52029077:25952256,1703936,0 +(1,15456:36135244,51504789:25952256,1179648,0 +(1,15456:36135244,51504789:16384,1179648,0 r1,16490:36151628,51504789:16384,1179648,0 ) -k1,15243:62087500,51504789:25935872 -g1,15243:62087500,51504789 +k1,15456:62087500,51504789:25935872 +g1,15456:62087500,51504789 ) ] ) -g1,15243:36675916,49800853 -(1,15243:36675916,49800853:1179648,16384,0 +g1,15456:36675916,49800853 +(1,15456:36675916,49800853:1179648,16384,0 r1,16490:37855564,49800853:1179648,16384,0 ) ) @@ -281208,811 +277865,1169 @@ g1,16490:29306229,4812305 g1,16490:6630773,45706769 ) [1,16490:6630773,45706769:25952256,40108032,0 -v1,16462:6630773,6254097:0,393216,0 -(1,16462:6630773,24112297:25952256,18251416,0 -g1,16462:6630773,24112297 -g1,16462:6303093,24112297 -r1,16490:6401397,24112297:98304,18251416,0 -g1,16462:6600626,24112297 -g1,16462:6797234,24112297 -[1,16462:6797234,24112297:25785795,18251416,0 -v1,16431:6797234,6254097:0,393216,0 -(1,16456:6797234,13167062:25785795,7306181,196608 -g1,16456:6797234,13167062 -g1,16456:6797234,13167062 -g1,16456:6600626,13167062 -(1,16456:6600626,13167062:0,7306181,196608 -r1,16490:32779637,13167062:26179011,7502789,196608 -k1,16456:6600625,13167062:-26179012 -) -(1,16456:6600626,13167062:26179011,7306181,196608 -[1,16456:6797234,13167062:25785795,7109573,0 -(1,16433:6797234,6461715:25785795,404226,107478 -(1,16432:6797234,6461715:0,0,0 -g1,16432:6797234,6461715 -g1,16432:6797234,6461715 -g1,16432:6469554,6461715 -(1,16432:6469554,6461715:0,0,0 -) -g1,16432:6797234,6461715 -) -k1,16433:6797234,6461715:0 -g1,16433:9958691,6461715 -g1,16433:10907128,6461715 -h1,16433:13752439,6461715:0,0,0 -k1,16433:32583029,6461715:18830590 -g1,16433:32583029,6461715 -) -(1,16437:6797234,7127893:25785795,404226,76021 -(1,16435:6797234,7127893:0,0,0 -g1,16435:6797234,7127893 -g1,16435:6797234,7127893 -g1,16435:6469554,7127893 -(1,16435:6469554,7127893:0,0,0 -) -g1,16435:6797234,7127893 -) -g1,16437:7745671,7127893 -g1,16437:9010254,7127893 -h1,16437:10274837,7127893:0,0,0 -k1,16437:32583029,7127893:22308192 -g1,16437:32583029,7127893 -) -(1,16439:6797234,8449431:25785795,404226,107478 -(1,16438:6797234,8449431:0,0,0 -g1,16438:6797234,8449431 -g1,16438:6797234,8449431 -g1,16438:6469554,8449431 -(1,16438:6469554,8449431:0,0,0 -) -g1,16438:6797234,8449431 -) -k1,16439:6797234,8449431:0 -g1,16439:9958691,8449431 -g1,16439:10907128,8449431 -h1,16439:14068585,8449431:0,0,0 -k1,16439:32583029,8449431:18514444 -g1,16439:32583029,8449431 -) -(1,16443:6797234,9115609:25785795,404226,76021 -(1,16441:6797234,9115609:0,0,0 -g1,16441:6797234,9115609 -g1,16441:6797234,9115609 -g1,16441:6469554,9115609 -(1,16441:6469554,9115609:0,0,0 -) -g1,16441:6797234,9115609 -) -g1,16443:7745671,9115609 -g1,16443:9010254,9115609 -h1,16443:10274837,9115609:0,0,0 -k1,16443:32583029,9115609:22308192 -g1,16443:32583029,9115609 -) -(1,16445:6797234,10437147:25785795,404226,107478 -(1,16444:6797234,10437147:0,0,0 -g1,16444:6797234,10437147 -g1,16444:6797234,10437147 -g1,16444:6469554,10437147 -(1,16444:6469554,10437147:0,0,0 -) -g1,16444:6797234,10437147 -) -k1,16445:6797234,10437147:0 -g1,16445:12171711,10437147 -h1,16445:15017022,10437147:0,0,0 -k1,16445:32583030,10437147:17566008 -g1,16445:32583030,10437147 -) -(1,16449:6797234,11103325:25785795,404226,76021 -(1,16447:6797234,11103325:0,0,0 -g1,16447:6797234,11103325 -g1,16447:6797234,11103325 -g1,16447:6469554,11103325 -(1,16447:6469554,11103325:0,0,0 -) -g1,16447:6797234,11103325 -) -g1,16449:7745671,11103325 -g1,16449:9010254,11103325 -h1,16449:10590982,11103325:0,0,0 -k1,16449:32583030,11103325:21992048 -g1,16449:32583030,11103325 -) -(1,16451:6797234,12424863:25785795,404226,107478 -(1,16450:6797234,12424863:0,0,0 -g1,16450:6797234,12424863 -g1,16450:6797234,12424863 -g1,16450:6469554,12424863 -(1,16450:6469554,12424863:0,0,0 -) -g1,16450:6797234,12424863 -) -k1,16451:6797234,12424863:0 -g1,16451:12171711,12424863 -h1,16451:15333168,12424863:0,0,0 -k1,16451:32583028,12424863:17249860 -g1,16451:32583028,12424863 -) -(1,16455:6797234,13091041:25785795,404226,76021 -(1,16453:6797234,13091041:0,0,0 -g1,16453:6797234,13091041 -g1,16453:6797234,13091041 -g1,16453:6469554,13091041 -(1,16453:6469554,13091041:0,0,0 -) -g1,16453:6797234,13091041 -) -g1,16455:7745671,13091041 -g1,16455:9010254,13091041 -h1,16455:10274837,13091041:0,0,0 -k1,16455:32583029,13091041:22308192 -g1,16455:32583029,13091041 -) -] -) -g1,16456:32583029,13167062 -g1,16456:6797234,13167062 -g1,16456:6797234,13167062 -g1,16456:32583029,13167062 -g1,16456:32583029,13167062 -) -h1,16456:6797234,13363670:0,0,0 -(1,16460:6797234,14729446:25785795,505283,126483 -h1,16459:6797234,14729446:983040,0,0 -k1,16459:9222939,14729446:245978 -k1,16459:10990663,14729446:245978 -k1,16459:13091965,14729446:245978 -k1,16459:14998626,14729446:245979 -k1,16459:16529110,14729446:245978 -k1,16459:19728796,14729446:245978 -k1,16459:20966334,14729446:245978 -k1,16459:21828350,14729446:245978 -k1,16459:22840444,14729446:245978 -k1,16459:24783804,14729446:245978 -k1,16459:26048868,14729446:245979 -k1,16459:27948319,14729446:245978 -k1,16459:28880459,14729446:245978 -k1,16459:31873051,14729446:245978 -(1,16459:31873051,14729446:0,414482,115847 -r1,16490:32583029,14729446:709978,530329,115847 -k1,16459:31873051,14729446:-709978 -) -(1,16459:31873051,14729446:709978,414482,115847 -k1,16459:31873051,14729446:3277 -h1,16459:32579752,14729446:0,411205,112570 -) -k1,16459:32583029,14729446:0 -) -(1,16460:6797234,15570934:25785795,513147,126483 -k1,16459:8582481,15570934:263501 -k1,16459:9793634,15570934:263502 -k1,16459:12603865,15570934:263502 -k1,16459:13480128,15570934:263501 -k1,16459:15195252,15570934:263502 -k1,16459:18072984,15570934:263501 -k1,16459:18952524,15570934:263502 -k1,16459:20235110,15570934:263501 -k1,16459:22310027,15570934:263502 -k1,16459:23645697,15570934:263501 -k1,16459:24975470,15570934:263502 -k1,16459:26258056,15570934:263501 -k1,16459:29804256,15570934:263502 -k1,16459:31757275,15570934:263501 -k1,16460:32583029,15570934:0 -) -(1,16460:6797234,16412422:25785795,513147,134348 -k1,16459:9677699,16412422:210528 -k1,16459:12868805,16412422:210529 -(1,16459:12868805,16412422:0,452978,115847 -r1,16490:14633918,16412422:1765113,568825,115847 -k1,16459:12868805,16412422:-1765113 -) -(1,16459:12868805,16412422:1765113,452978,115847 -k1,16459:12868805,16412422:3277 -h1,16459:14630641,16412422:0,411205,112570 -) -k1,16459:14844446,16412422:210528 -k1,16459:16798232,16412422:210528 -k1,16459:19643963,16412422:210528 -k1,16459:22133179,16412422:210529 -k1,16459:24485424,16412422:210528 -k1,16459:25887397,16412422:210528 -k1,16459:28758687,16412422:210528 -k1,16459:30456228,16412422:210529 -k1,16459:31858201,16412422:210528 -k1,16459:32583029,16412422:0 -) -(1,16460:6797234,17253910:25785795,505283,134348 -g1,16459:8376651,17253910 -g1,16459:9567440,17253910 -g1,16459:10832940,17253910 -g1,16459:13735529,17253910 -k1,16460:32583029,17253910:16384002 -g1,16460:32583029,17253910 -) -(1,16462:6797234,18095398:25785795,513147,126483 -h1,16461:6797234,18095398:983040,0,0 -k1,16461:8438521,18095398:180490 -k1,16461:9487364,18095398:180491 -k1,16461:11966202,18095398:180490 -(1,16461:11966202,18095398:0,452978,115847 -r1,16490:14083027,18095398:2116825,568825,115847 -k1,16461:11966202,18095398:-2116825 -) -(1,16461:11966202,18095398:2116825,452978,115847 -k1,16461:11966202,18095398:3277 -h1,16461:14079750,18095398:0,411205,112570 -) -k1,16461:14263518,18095398:180491 -k1,16461:15205536,18095398:180490 -(1,16461:15205536,18095398:0,459977,115847 -r1,16490:18729208,18095398:3523672,575824,115847 -k1,16461:15205536,18095398:-3523672 -) -(1,16461:15205536,18095398:3523672,459977,115847 -k1,16461:15205536,18095398:3277 -h1,16461:18725931,18095398:0,411205,112570 -) -k1,16461:18909698,18095398:180490 -k1,16461:19706227,18095398:180491 -k1,16461:20905802,18095398:180490 -k1,16461:22392425,18095398:180490 -k1,16461:25932947,18095398:180491 -k1,16461:27304882,18095398:180490 -k1,16461:29239116,18095398:180491 -k1,16461:30438691,18095398:180490 -k1,16461:32583029,18095398:0 -) -(1,16462:6797234,18936886:25785795,513147,115847 -k1,16461:8018701,18936886:202382 -k1,16461:10063956,18936886:202383 -k1,16461:10925630,18936886:202382 -k1,16461:12147097,18936886:202382 -k1,16461:13497671,18936886:202383 -k1,16461:16886413,18936886:202382 -k1,16461:17704833,18936886:202382 -k1,16461:18926301,18936886:202383 -k1,16461:21099351,18936886:202382 -k1,16461:21833230,18936886:202382 -(1,16461:21833230,18936886:0,414482,115847 -r1,16490:23598343,18936886:1765113,530329,115847 -k1,16461:21833230,18936886:-1765113 -) -(1,16461:21833230,18936886:1765113,414482,115847 -k1,16461:21833230,18936886:3277 -h1,16461:23595066,18936886:0,411205,112570 -) -k1,16461:23800725,18936886:202382 -k1,16461:26330291,18936886:202383 -k1,16461:27199829,18936886:202382 -(1,16461:27199829,18936886:0,414482,115847 -r1,16490:28613230,18936886:1413401,530329,115847 -k1,16461:27199829,18936886:-1413401 -) -(1,16461:27199829,18936886:1413401,414482,115847 -k1,16461:27199829,18936886:3277 -h1,16461:28609953,18936886:0,411205,112570 -) -k1,16461:28989282,18936886:202382 -k1,16461:29936154,18936886:202383 -k1,16461:31157621,18936886:202382 -k1,16461:32583029,18936886:0 -) -(1,16462:6797234,19778374:25785795,513147,134348 -k1,16461:7699442,19778374:242916 -k1,16461:10200073,19778374:242916 -k1,16461:12921561,19778374:242916 -k1,16461:14558428,19778374:242916 -k1,16461:15157205,19778374:242917 -(1,16461:15157205,19778374:0,459977,115847 -r1,16490:18680877,19778374:3523672,575824,115847 -k1,16461:15157205,19778374:-3523672 -) -(1,16461:15157205,19778374:3523672,459977,115847 -k1,16461:15157205,19778374:3277 -h1,16461:18677600,19778374:0,411205,112570 -) -k1,16461:18923793,19778374:242916 -k1,16461:21299906,19778374:242916 -k1,16461:24296645,19778374:242916 -k1,16461:27422490,19778374:242916 -k1,16461:29059357,19778374:242916 -(1,16461:29059357,19778374:0,452978,122846 -r1,16490:32583029,19778374:3523672,575824,122846 -k1,16461:29059357,19778374:-3523672 -) -(1,16461:29059357,19778374:3523672,452978,122846 -k1,16461:29059357,19778374:3277 -h1,16461:32579752,19778374:0,411205,112570 -) -k1,16461:32583029,19778374:0 -) -(1,16462:6797234,20619862:25785795,513147,134348 -k1,16461:9746352,20619862:195951 -k1,16461:10703831,20619862:195951 -k1,16461:14612397,20619862:195951 -k1,16461:16202300,20619862:195952 -(1,16461:16202300,20619862:0,452978,122846 -r1,16490:19374260,20619862:3171960,575824,122846 -k1,16461:16202300,20619862:-3171960 -) -(1,16461:16202300,20619862:3171960,452978,122846 -k1,16461:16202300,20619862:3277 -h1,16461:19370983,20619862:0,411205,112570 -) -k1,16461:19570211,20619862:195951 -k1,16461:20867167,20619862:195951 -k1,16461:22082203,20619862:195951 -k1,16461:23577733,20619862:195951 -k1,16461:25544467,20619862:195951 -k1,16461:26399711,20619862:195952 -k1,16461:29978630,20619862:195951 -k1,16461:31193666,20619862:195951 -k1,16461:32583029,20619862:0 -) -(1,16462:6797234,21461350:25785795,513147,134348 -k1,16461:8971151,21461350:297621 -k1,16461:10536237,21461350:297620 -k1,16461:11189718,21461350:297621 -k1,16461:13472425,21461350:297621 -k1,16461:15150889,21461350:297620 -k1,16461:15980007,21461350:297621 -k1,16461:19631761,21461350:297621 -k1,16461:20580809,21461350:297620 -k1,16461:21626196,21461350:297621 -k1,16461:23277791,21461350:297621 -k1,16461:25358646,21461350:297620 -k1,16461:27524698,21461350:297621 -k1,16461:28655282,21461350:297621 -k1,16461:29639064,21461350:297620 -k1,16461:31591469,21461350:297621 -k1,16461:32583029,21461350:0 -) -(1,16462:6797234,22302838:25785795,513147,126483 -k1,16461:10456243,22302838:142347 -k1,16461:11214627,22302838:142346 -k1,16461:12687355,22302838:142347 -k1,16461:13848787,22302838:142347 -k1,16461:17205674,22302838:142346 -k1,16461:20094635,22302838:142347 -(1,16461:20094635,22302838:0,452978,115847 -r1,16490:21859749,22302838:1765114,568825,115847 -k1,16461:20094635,22302838:-1765114 -) -(1,16461:20094635,22302838:1765114,452978,115847 -g1,16461:20801336,22302838 -g1,16461:21504760,22302838 -h1,16461:21856472,22302838:0,411205,112570 -) -k1,16461:22002096,22302838:142347 -k1,16461:24697726,22302838:142347 -k1,16461:25456110,22302838:142346 -k1,16461:26617542,22302838:142347 -k1,16461:27932328,22302838:142347 -k1,16461:29945727,22302838:142346 -k1,16461:31284761,22302838:142347 -k1,16461:32583029,22302838:0 -) -(1,16462:6797234,23144326:25785795,513147,134348 -k1,16461:8174189,23144326:138980 -k1,16461:8964597,23144326:138980 -k1,16461:10718384,23144326:138980 -k1,16461:12353551,23144326:138980 -k1,16461:14851172,23144326:138980 -k1,16461:16082637,23144326:138980 -k1,16461:16880909,23144326:138980 -k1,16461:20045686,23144326:138980 -k1,16461:21752287,23144326:138980 -k1,16461:23863900,23144326:138980 -k1,16461:25194325,23144326:138980 -k1,16461:27138166,23144326:138980 -k1,16461:27808643,23144326:138980 -k1,16461:28599051,23144326:138980 -k1,16461:30867296,23144326:138980 -k1,16461:32583029,23144326:0 -) -(1,16462:6797234,23985814:25785795,513147,126483 -g1,16461:8377307,23985814 -g1,16461:9861042,23985814 -g1,16461:13721767,23985814 -g1,16461:15417183,23985814 -g1,16461:17543170,23985814 -g1,16461:20551272,23985814 -g1,16461:22144452,23985814 -g1,16461:23810377,23985814 -g1,16461:26151323,23985814 -g1,16461:27541997,23985814 -g1,16461:29130589,23985814 -k1,16462:32583029,23985814:1072172 -g1,16462:32583029,23985814 -) -] -g1,16462:32583029,24112297 -) -h1,16462:6630773,24112297:0,0,0 -v1,16466:6630773,26002361:0,393216,0 -(1,16467:6630773,29056276:25952256,3447131,0 -g1,16467:6630773,29056276 -g1,16467:6303093,29056276 -r1,16490:6401397,29056276:98304,3447131,0 -g1,16467:6600626,29056276 -g1,16467:6797234,29056276 -[1,16467:6797234,29056276:25785795,3447131,0 -(1,16467:6797234,26397464:25785795,788319,218313 -(1,16466:6797234,26397464:0,788319,218313 -r1,16490:7917113,26397464:1119879,1006632,218313 -k1,16466:6797234,26397464:-1119879 -) -(1,16466:6797234,26397464:1119879,788319,218313 -) -k1,16466:8114627,26397464:197514 -k1,16466:8442307,26397464:327680 -k1,16466:9267655,26397464:197513 -k1,16466:11022960,26397464:197514 -k1,16466:12987979,26397464:197513 -k1,16466:15765645,26397464:197514 -k1,16466:17935791,26397464:197513 -k1,16466:20467042,26397464:197514 -k1,16466:22207273,26397464:197513 -k1,16466:24370212,26397464:197514 -k1,16466:27094138,26397464:197513 -k1,16466:28239303,26397464:197514 -k1,16466:32583029,26397464:0 -) -(1,16467:6797234,27238952:25785795,513147,134348 -k1,16466:9886960,27238952:206797 -k1,16466:10855284,27238952:206796 -k1,16466:13249673,27238952:206797 -k1,16466:14107897,27238952:206796 -k1,16466:17340491,27238952:206797 -k1,16466:17903147,27238952:206796 -k1,16466:19393139,27238952:206797 -k1,16466:22880667,27238952:206796 -(1,16466:23087761,27238952:0,452978,115847 -r1,16490:23797739,27238952:709978,568825,115847 -k1,16466:23087761,27238952:-709978 -) -(1,16466:23087761,27238952:709978,452978,115847 -k1,16466:23087761,27238952:3277 -h1,16466:23794462,27238952:0,411205,112570 -) -k1,16466:24004536,27238952:206797 -k1,16466:24894217,27238952:206796 -(1,16466:24894217,27238952:0,452978,115847 -r1,16490:25955906,27238952:1061689,568825,115847 -k1,16466:24894217,27238952:-1061689 -) -(1,16466:24894217,27238952:1061689,452978,115847 -k1,16466:24894217,27238952:3277 -h1,16466:25952629,27238952:0,411205,112570 -) -k1,16466:26543467,27238952:206797 -k1,16466:28131107,27238952:206796 -k1,16466:28869401,27238952:206797 -k1,16466:30274851,27238952:206796 -k1,16467:32583029,27238952:0 -) -(1,16467:6797234,28080440:25785795,513147,134348 -k1,16466:8391826,28080440:190811 -k1,16466:9353339,28080440:190810 -k1,16466:13714206,28080440:190811 -k1,16466:16180426,28080440:190810 -k1,16466:17655743,28080440:190811 -k1,16466:19183488,28080440:190811 -k1,16466:21788644,28080440:190810 -k1,16466:24654635,28080440:190811 -k1,16466:25303543,28080440:190811 -k1,16466:26025850,28080440:190810 -k1,16466:29425959,28080440:190811 -k1,16466:30268197,28080440:190810 -k1,16466:31966991,28080440:190811 -k1,16466:32583029,28080440:0 -) -(1,16467:6797234,28921928:25785795,505283,134348 -g1,16466:8653213,28921928 -g1,16466:10136948,28921928 -g1,16466:11539418,28921928 -g1,16466:14723157,28921928 -g1,16466:15573814,28921928 -g1,16466:18655972,28921928 -g1,16466:19386698,28921928 -g1,16466:20652198,28921928 -g1,16466:24045652,28921928 -g1,16466:25391106,28921928 -g1,16466:26874841,28921928 -g1,16466:30164093,28921928 -k1,16467:32583029,28921928:389941 -g1,16467:32583029,28921928 -) -] -g1,16467:32583029,29056276 -) -h1,16467:6630773,29056276:0,0,0 -(1,16469:6630773,31147536:25952256,555811,104529 -(1,16469:6630773,31147536:2450326,534184,12975 -g1,16469:6630773,31147536 -g1,16469:9081099,31147536 -) -k1,16469:32583028,31147536:21647784 -g1,16469:32583028,31147536 -) -(1,16473:6630773,32382240:25952256,505283,95026 -k1,16472:8556330,32382240:308128 -k1,16472:10546113,32382240:308129 -k1,16472:11599385,32382240:308128 -k1,16472:12558941,32382240:308128 -k1,16472:15578950,32382240:308129 -k1,16472:17059517,32382240:308128 -k1,16472:18757008,32382240:308128 -k1,16472:21504387,32382240:308129 -k1,16472:23697986,32382240:308128 -k1,16472:25742818,32382240:308128 -k1,16472:27743087,32382240:308129 -k1,16472:31066526,32382240:308128 -k1,16473:32583029,32382240:0 -) -(1,16473:6630773,33223728:25952256,513147,134348 -k1,16472:8463104,33223728:193276 -k1,16472:9272419,33223728:193277 -k1,16472:12243111,33223728:193276 -k1,16472:13427948,33223728:193277 -k1,16472:15134450,33223728:193276 -k1,16472:15979155,33223728:193277 -k1,16472:18153584,33223728:193276 -k1,16472:19365946,33223728:193277 -k1,16472:24182787,33223728:193276 -k1,16472:25910262,33223728:193277 -k1,16472:28146295,33223728:193276 -k1,16472:31167451,33223728:193277 -k1,16473:32583029,33223728:0 -) -(1,16473:6630773,34065216:25952256,513147,134348 -k1,16472:8498132,34065216:228304 -k1,16472:10003076,34065216:228303 -k1,16472:13151664,34065216:228304 -k1,16472:14947588,34065216:228303 -k1,16472:16642588,34065216:228304 -k1,16472:19310141,34065216:228303 -k1,16472:22392538,34065216:228304 -k1,16472:24453228,34065216:228303 -k1,16472:25673092,34065216:228304 -k1,16472:28132896,34065216:228303 -k1,16472:29557232,34065216:228304 -k1,16472:32583029,34065216:0 -) -(1,16473:6630773,34906704:25952256,513147,126483 -k1,16472:7495673,34906704:248862 -k1,16472:9890838,34906704:248862 -k1,16472:11697491,34906704:248862 -k1,16472:13689611,34906704:248862 -k1,16472:16096574,34906704:248862 -k1,16472:16961474,34906704:248862 -k1,16472:18540717,34906704:248862 -k1,16472:20169768,34906704:248863 -k1,16472:22577386,34906704:248862 -k1,16472:24360446,34906704:248862 -k1,16472:25893814,34906704:248862 -k1,16472:26957944,34906704:248862 -k1,16472:28273077,34906704:248862 -k1,16472:29997154,34906704:248862 -k1,16472:30601876,34906704:248862 -k1,16472:32583029,34906704:0 -) -(1,16473:6630773,35748192:25952256,505283,7863 -g1,16472:9465205,35748192 -g1,16472:11053797,35748192 -k1,16473:32583029,35748192:18916312 -g1,16473:32583029,35748192 -) -(1,16475:6630773,36589680:25952256,513147,7863 -h1,16474:6630773,36589680:983040,0,0 -k1,16474:8786252,36589680:218890 -k1,16474:10934522,36589680:218890 -k1,16474:12551295,36589680:218890 -k1,16474:14462325,36589680:218890 -k1,16474:17309864,36589680:218890 -k1,16474:18918118,36589680:218891 -k1,16474:19788436,36589680:218890 -k1,16474:24040412,36589680:218890 -k1,16474:25278387,36589680:218890 -k1,16474:26589762,36589680:218890 -k1,16474:27467944,36589680:218890 -k1,16474:29383561,36589680:218890 -k1,16474:32583029,36589680:0 -) -(1,16475:6630773,37431168:25952256,505283,102891 -k1,16474:7750229,37431168:165907 -k1,16474:9048598,37431168:165907 -k1,16474:11143885,37431168:165907 -k1,16474:12482230,37431168:165906 -k1,16474:14364525,37431168:165907 -k1,16474:16845819,37431168:165907 -k1,16474:18405677,37431168:165907 -k1,16474:19728294,37431168:165907 -k1,16474:22277090,37431168:165907 -k1,16474:23059034,37431168:165906 -k1,16474:26002357,37431168:165907 -k1,16474:27359709,37431168:165907 -k1,16474:28682326,37431168:165907 -k1,16474:32583029,37431168:0 -) -(1,16475:6630773,38272656:25952256,505283,7863 -g1,16474:8033898,38272656 -g1,16474:8849165,38272656 -k1,16475:32583030,38272656:22108572 -g1,16475:32583030,38272656 -) -v1,16479:6630773,39463122:0,393216,0 -(1,16484:6630773,40425522:25952256,1355616,196608 -g1,16484:6630773,40425522 -g1,16484:6630773,40425522 -g1,16484:6434165,40425522 -(1,16484:6434165,40425522:0,1355616,196608 -r1,16490:32779637,40425522:26345472,1552224,196608 -k1,16484:6434165,40425522:-26345472 -) -(1,16484:6434165,40425522:26345472,1355616,196608 -[1,16484:6630773,40425522:25952256,1159008,0 -(1,16481:6630773,39677032:25952256,410518,82312 -(1,16480:6630773,39677032:0,0,0 -g1,16480:6630773,39677032 -g1,16480:6630773,39677032 -g1,16480:6303093,39677032 -(1,16480:6303093,39677032:0,0,0 -) -g1,16480:6630773,39677032 -) -g1,16481:9476084,39677032 -g1,16481:10424522,39677032 -g1,16481:13902125,39677032 -g1,16481:14534417,39677032 -g1,16481:16747439,39677032 -g1,16481:18012023,39677032 -g1,16481:20541189,39677032 -g1,16481:21173481,39677032 -h1,16481:22438064,39677032:0,0,0 -k1,16481:32583029,39677032:10144965 -g1,16481:32583029,39677032 -) -(1,16482:6630773,40343210:25952256,404226,82312 -h1,16482:6630773,40343210:0,0,0 -g1,16482:9792230,40343210 -g1,16482:10740668,40343210 -g1,16482:14218271,40343210 -g1,16482:14850563,40343210 -g1,16482:17063585,40343210 -g1,16482:18328169,40343210 -g1,16482:20857335,40343210 -g1,16482:21489627,40343210 -h1,16482:22754210,40343210:0,0,0 -k1,16482:32583029,40343210:9828819 -g1,16482:32583029,40343210 -) -] -) -g1,16484:32583029,40425522 -g1,16484:6630773,40425522 -g1,16484:6630773,40425522 -g1,16484:32583029,40425522 -g1,16484:32583029,40425522 -) -h1,16484:6630773,40622130:0,0,0 -(1,16488:6630773,41987906:25952256,513147,126483 -h1,16487:6630773,41987906:983040,0,0 -k1,16487:9767419,41987906:286485 -k1,16487:10922255,41987906:286484 -k1,16487:12972314,41987906:286485 -k1,16487:14277884,41987906:286485 -k1,16487:14277884,41987906:0 -k1,16487:17590165,41987906:286484 -k1,16487:20717636,41987906:286485 -k1,16487:21765649,41987906:286485 -k1,16487:24198436,41987906:286484 -(1,16487:24198436,41987906:0,459977,122846 -r1,16490:28073820,41987906:3875384,582823,122846 -k1,16487:24198436,41987906:-3875384 -) -(1,16487:24198436,41987906:3875384,459977,122846 -k1,16487:24198436,41987906:3277 -h1,16487:28070543,41987906:0,411205,112570 -) -k1,16487:28533975,41987906:286485 -(1,16487:28533975,41987906:0,459977,122846 -r1,16490:32409359,41987906:3875384,582823,122846 -k1,16487:28533975,41987906:-3875384 -) -(1,16487:28533975,41987906:3875384,459977,122846 -k1,16487:28533975,41987906:3277 -h1,16487:32406082,41987906:0,411205,112570 -) -k1,16488:32583029,41987906:0 -) -(1,16488:6630773,42829394:25952256,513147,126483 -(1,16487:6630773,42829394:0,452978,122846 -r1,16490:10857869,42829394:4227096,575824,122846 -k1,16487:6630773,42829394:-4227096 -) -(1,16487:6630773,42829394:4227096,452978,122846 -k1,16487:6630773,42829394:3277 -h1,16487:10854592,42829394:0,411205,112570 -) -k1,16487:11123940,42829394:266071 -k1,16487:12581455,42829394:266070 -(1,16487:12581455,42829394:0,452978,122846 -r1,16490:16808551,42829394:4227096,575824,122846 -k1,16487:12581455,42829394:-4227096 -) -(1,16487:12581455,42829394:4227096,452978,122846 -k1,16487:12581455,42829394:3277 -h1,16487:16805274,42829394:0,411205,112570 -) -k1,16487:17248292,42829394:266071 -k1,16487:19388693,42829394:266071 -k1,16487:22680560,42829394:266070 -k1,16487:25075896,42829394:266071 -k1,16487:27206466,42829394:266071 -k1,16487:28238652,42829394:266070 -k1,16487:31391584,42829394:266071 -k1,16487:32583029,42829394:0 -) -(1,16488:6630773,43670882:25952256,513147,134348 -k1,16487:7478557,43670882:231746 -k1,16487:9077383,43670882:231745 -k1,16487:9968421,43670882:231746 -k1,16487:12871413,43670882:231745 -k1,16487:15935625,43670882:231746 -k1,16487:17675353,43670882:231745 -k1,16487:18262959,43670882:231746 -k1,16487:19698600,43670882:231745 -k1,16487:20877997,43670882:231746 -k1,16487:22561364,43670882:231745 -k1,16487:25764512,43670882:231746 -k1,16487:29984123,43670882:231745 -k1,16487:30875161,43670882:231746 -k1,16487:32583029,43670882:0 -) -(1,16488:6630773,44512370:25952256,505283,134348 -k1,16487:7810780,44512370:226458 -k1,16487:10053780,44512370:226457 -k1,16487:11731860,44512370:226458 -k1,16487:14619734,44512370:226457 -k1,16487:16240143,44512370:226458 -k1,16487:17485685,44512370:226457 -k1,16487:21114772,44512370:226458 -k1,16487:23546517,44512370:226458 -k1,16487:24424402,44512370:226457 -(1,16487:24424402,44512370:0,414482,115847 -r1,16490:24782668,44512370:358266,530329,115847 -k1,16487:24424402,44512370:-358266 -) -(1,16487:24424402,44512370:358266,414482,115847 -k1,16487:24424402,44512370:3277 -h1,16487:24779391,44512370:0,411205,112570 -) -k1,16487:25009126,44512370:226458 -k1,16487:26427028,44512370:226457 -(1,16487:26427028,44512370:0,414482,115847 -r1,16490:26785294,44512370:358266,530329,115847 -k1,16487:26427028,44512370:-358266 -) -(1,16487:26427028,44512370:358266,414482,115847 -k1,16487:26427028,44512370:3277 -h1,16487:26782017,44512370:0,411205,112570 -) -k1,16487:27011752,44512370:226458 -k1,16487:30054946,44512370:226457 -k1,16487:30932832,44512370:226458 -k1,16487:32583029,44512370:0 -) -(1,16488:6630773,45353858:25952256,513147,126483 -g1,16487:8926499,45353858 -g1,16487:10786410,45353858 -g1,16487:12494278,45353858 -g1,16487:15455850,45353858 -k1,16488:32583029,45353858:14193788 -g1,16488:32583029,45353858 -) +v1,16410:6630773,6254097:0,393216,0 +(1,16410:6630773,8546401:25952256,2685520,196608 +g1,16410:6630773,8546401 +g1,16410:6630773,8546401 +g1,16410:6434165,8546401 +(1,16410:6434165,8546401:0,2685520,196608 +r1,16490:32779637,8546401:26345472,2882128,196608 +k1,16410:6434165,8546401:-26345472 +) +(1,16410:6434165,8546401:26345472,2685520,196608 +[1,16410:6630773,8546401:25952256,2488912,0 +(1,16409:6630773,6481928:25952256,424439,112852 +h1,16409:6630773,6481928:0,0,0 +g1,16409:7626635,6481928 +g1,16409:8290543,6481928 +g1,16409:10614221,6481928 +g1,16409:10946175,6481928 +g1,16409:15261576,6481928 +g1,16409:15593530,6481928 +g1,16409:15925484,6481928 +g1,16409:16257438,6481928 +g1,16409:16589392,6481928 +g1,16409:16921346,6481928 +g1,16409:17253300,6481928 +g1,16409:18581116,6481928 +g1,16409:20572840,6481928 +g1,16409:20904794,6481928 +g1,16409:21236748,6481928 +g1,16409:21568702,6481928 +g1,16409:21900656,6481928 +g1,16409:22232610,6481928 +h1,16409:24224334,6481928:0,0,0 +k1,16409:32583029,6481928:8358695 +g1,16409:32583029,6481928 +) +(1,16409:6630773,7166783:25952256,424439,112852 +h1,16409:6630773,7166783:0,0,0 +g1,16409:7626635,7166783 +g1,16409:8290543,7166783 +g1,16409:10614221,7166783 +g1,16409:10946175,7166783 +g1,16409:15261576,7166783 +g1,16409:15593530,7166783 +g1,16409:15925484,7166783 +g1,16409:16257438,7166783 +g1,16409:16589392,7166783 +g1,16409:16921346,7166783 +g1,16409:17253300,7166783 +g1,16409:18581116,7166783 +g1,16409:20572840,7166783 +g1,16409:20904794,7166783 +g1,16409:21236748,7166783 +g1,16409:21568702,7166783 +g1,16409:21900656,7166783 +g1,16409:22232610,7166783 +h1,16409:24224334,7166783:0,0,0 +k1,16409:32583029,7166783:8358695 +g1,16409:32583029,7166783 +) +(1,16409:6630773,7851638:25952256,424439,112852 +h1,16409:6630773,7851638:0,0,0 +g1,16409:7626635,7851638 +g1,16409:8290543,7851638 +g1,16409:10614221,7851638 +g1,16409:10946175,7851638 +g1,16409:15261576,7851638 +g1,16409:15593530,7851638 +g1,16409:15925484,7851638 +g1,16409:16257438,7851638 +g1,16409:16589392,7851638 +g1,16409:16921346,7851638 +g1,16409:17253300,7851638 +g1,16409:18581116,7851638 +g1,16409:20572840,7851638 +g1,16409:20904794,7851638 +g1,16409:21236748,7851638 +g1,16409:21568702,7851638 +g1,16409:21900656,7851638 +g1,16409:22232610,7851638 +h1,16409:24224334,7851638:0,0,0 +k1,16409:32583029,7851638:8358695 +g1,16409:32583029,7851638 +) +(1,16409:6630773,8536493:25952256,424439,9908 +h1,16409:6630773,8536493:0,0,0 +g1,16409:7626635,8536493 +g1,16409:8290543,8536493 +g1,16409:8954451,8536493 +g1,16409:10282267,8536493 +g1,16409:11942037,8536493 +h1,16409:13269853,8536493:0,0,0 +k1,16409:32583029,8536493:19313176 +g1,16409:32583029,8536493 +) +] +) +g1,16410:32583029,8546401 +g1,16410:6630773,8546401 +g1,16410:6630773,8546401 +g1,16410:32583029,8546401 +g1,16410:32583029,8546401 +) +h1,16410:6630773,8743009:0,0,0 +(1,16414:6630773,9608089:25952256,513147,115847 +h1,16413:6630773,9608089:983040,0,0 +k1,16413:10585340,9608089:181659 +(1,16413:10585340,9608089:0,459977,115847 +r1,16490:13405589,9608089:2820249,575824,115847 +k1,16413:10585340,9608089:-2820249 +) +(1,16413:10585340,9608089:2820249,459977,115847 +k1,16413:10585340,9608089:3277 +h1,16413:13402312,9608089:0,411205,112570 +) +k1,16413:13587248,9608089:181659 +k1,16413:14873190,9608089:181660 +k1,16413:15802615,9608089:181659 +k1,16413:17497500,9608089:181659 +k1,16413:18330587,9608089:181659 +k1,16413:20716223,9608089:181660 +k1,16413:21253742,9608089:181659 +k1,16413:23515514,9608089:181659 +k1,16413:24356465,9608089:181659 +k1,16413:28929693,9608089:181660 +k1,16413:29762780,9608089:181659 +(1,16413:29762780,9608089:0,452978,115847 +r1,16490:32583029,9608089:2820249,568825,115847 +k1,16413:29762780,9608089:-2820249 +) +(1,16413:29762780,9608089:2820249,452978,115847 +k1,16413:29762780,9608089:3277 +h1,16413:32579752,9608089:0,411205,112570 +) +k1,16413:32583029,9608089:0 +) +(1,16414:6630773,10473169:25952256,513147,126483 +k1,16413:7906665,10473169:203723 +k1,16413:9504340,10473169:203724 +k1,16413:10063923,10473169:203723 +k1,16413:12351691,10473169:203723 +k1,16413:15836147,10473169:203724 +k1,16413:17433821,10473169:203723 +k1,16413:18922051,10473169:203724 +k1,16413:19785066,10473169:203723 +k1,16413:21690759,10473169:203723 +k1,16413:24920280,10473169:203724 +k1,16413:25740041,10473169:203723 +k1,16413:26962849,10473169:203723 +k1,16413:30548230,10473169:203724 +k1,16413:31379788,10473169:203723 +k1,16413:32583029,10473169:0 +) +(1,16414:6630773,11338249:25952256,513147,134348 +g1,16413:8370753,11338249 +g1,16413:9765359,11338249 +g1,16413:11030859,11338249 +g1,16413:11889380,11338249 +g1,16413:13107694,11338249 +g1,16413:15742241,11338249 +g1,16413:17136847,11338249 +g1,16413:18870274,11338249 +g1,16413:20061063,11338249 +k1,16414:32583029,11338249:9715714 +g1,16414:32583029,11338249 +) +v1,16416:6630773,12023104:0,393216,0 +(1,16429:6630773,17192506:25952256,5562618,196608 +g1,16429:6630773,17192506 +g1,16429:6630773,17192506 +g1,16429:6434165,17192506 +(1,16429:6434165,17192506:0,5562618,196608 +r1,16490:32779637,17192506:26345472,5759226,196608 +k1,16429:6434165,17192506:-26345472 +) +(1,16429:6434165,17192506:26345472,5562618,196608 +[1,16429:6630773,17192506:25952256,5366010,0 +(1,16418:6630773,12257541:25952256,431045,112852 +(1,16417:6630773,12257541:0,0,0 +g1,16417:6630773,12257541 +g1,16417:6630773,12257541 +g1,16417:6303093,12257541 +(1,16417:6303093,12257541:0,0,0 +) +g1,16417:6630773,12257541 +) +k1,16418:6630773,12257541:0 +g1,16418:13601806,12257541 +g1,16418:17253299,12257541 +g1,16418:18249161,12257541 +h1,16418:20904793,12257541:0,0,0 +k1,16418:32583029,12257541:11678236 +g1,16418:32583029,12257541 +) +(1,16428:6630773,13073468:25952256,424439,9908 +(1,16420:6630773,13073468:0,0,0 +g1,16420:6630773,13073468 +g1,16420:6630773,13073468 +g1,16420:6303093,13073468 +(1,16420:6303093,13073468:0,0,0 +) +g1,16420:6630773,13073468 +) +g1,16428:7626635,13073468 +g1,16428:8290543,13073468 +g1,16428:8954451,13073468 +g1,16428:11610083,13073468 +g1,16428:12937899,13073468 +g1,16428:13601807,13073468 +h1,16428:13933761,13073468:0,0,0 +k1,16428:32583029,13073468:18649268 +g1,16428:32583029,13073468 +) +(1,16428:6630773,13758323:25952256,424439,106246 +h1,16428:6630773,13758323:0,0,0 +g1,16428:7626635,13758323 +g1,16428:7958589,13758323 +g1,16428:8290543,13758323 +g1,16428:10946175,13758323 +g1,16428:12605945,13758323 +g1,16428:12937899,13758323 +g1,16428:13269853,13758323 +g1,16428:13601807,13758323 +g1,16428:13933761,13758323 +g1,16428:14265715,13758323 +g1,16428:14597669,13758323 +g1,16428:14929623,13758323 +g1,16428:15261577,13758323 +g1,16428:18581116,13758323 +g1,16428:22232609,13758323 +h1,16428:24888240,13758323:0,0,0 +k1,16428:32583029,13758323:7694789 +g1,16428:32583029,13758323 +) +(1,16428:6630773,14443178:25952256,431045,6605 +h1,16428:6630773,14443178:0,0,0 +g1,16428:7626635,14443178 +g1,16428:7958589,14443178 +g1,16428:8290543,14443178 +g1,16428:10282267,14443178 +g1,16428:10614221,14443178 +g1,16428:10946175,14443178 +g1,16428:12937899,14443178 +g1,16428:13269853,14443178 +g1,16428:13601807,14443178 +g1,16428:13933761,14443178 +g1,16428:14265715,14443178 +g1,16428:14597669,14443178 +g1,16428:14929623,14443178 +g1,16428:15261577,14443178 +g1,16428:15593531,14443178 +g1,16428:15925485,14443178 +g1,16428:16257439,14443178 +g1,16428:16589393,14443178 +g1,16428:18581117,14443178 +g1,16428:20572841,14443178 +g1,16428:20904795,14443178 +g1,16428:21236749,14443178 +g1,16428:21568703,14443178 +g1,16428:21900657,14443178 +g1,16428:22232611,14443178 +k1,16428:22232611,14443178:0 +h1,16428:23892381,14443178:0,0,0 +k1,16428:32583029,14443178:8690648 +g1,16428:32583029,14443178 +) +(1,16428:6630773,15128033:25952256,424439,112852 +h1,16428:6630773,15128033:0,0,0 +g1,16428:7626635,15128033 +g1,16428:8290543,15128033 +g1,16428:10614221,15128033 +g1,16428:10946175,15128033 +g1,16428:15261576,15128033 +g1,16428:15593530,15128033 +g1,16428:15925484,15128033 +g1,16428:16257438,15128033 +g1,16428:16589392,15128033 +g1,16428:16921346,15128033 +g1,16428:17253300,15128033 +g1,16428:18581116,15128033 +g1,16428:20572840,15128033 +g1,16428:20904794,15128033 +g1,16428:21236748,15128033 +g1,16428:21568702,15128033 +g1,16428:21900656,15128033 +g1,16428:22232610,15128033 +h1,16428:24224334,15128033:0,0,0 +k1,16428:32583029,15128033:8358695 +g1,16428:32583029,15128033 +) +(1,16428:6630773,15812888:25952256,424439,9908 +h1,16428:6630773,15812888:0,0,0 +g1,16428:7626635,15812888 +g1,16428:8290543,15812888 +g1,16428:10614221,15812888 +g1,16428:10946175,15812888 +g1,16428:14929622,15812888 +g1,16428:15261576,15812888 +g1,16428:15593530,15812888 +g1,16428:15925484,15812888 +g1,16428:16257438,15812888 +g1,16428:16589392,15812888 +g1,16428:16921346,15812888 +g1,16428:17253300,15812888 +g1,16428:18581116,15812888 +g1,16428:20572840,15812888 +g1,16428:20904794,15812888 +g1,16428:21236748,15812888 +g1,16428:21568702,15812888 +g1,16428:21900656,15812888 +g1,16428:22232610,15812888 +h1,16428:23892380,15812888:0,0,0 +k1,16428:32583029,15812888:8690649 +g1,16428:32583029,15812888 +) +(1,16428:6630773,16497743:25952256,424439,112852 +h1,16428:6630773,16497743:0,0,0 +g1,16428:7626635,16497743 +g1,16428:8290543,16497743 +g1,16428:10614221,16497743 +g1,16428:10946175,16497743 +g1,16428:15261576,16497743 +g1,16428:15593530,16497743 +g1,16428:15925484,16497743 +g1,16428:16257438,16497743 +g1,16428:16589392,16497743 +g1,16428:16921346,16497743 +g1,16428:17253300,16497743 +g1,16428:18581116,16497743 +g1,16428:20572840,16497743 +g1,16428:20904794,16497743 +g1,16428:21236748,16497743 +g1,16428:21568702,16497743 +g1,16428:21900656,16497743 +g1,16428:22232610,16497743 +h1,16428:24224334,16497743:0,0,0 +k1,16428:32583029,16497743:8358695 +g1,16428:32583029,16497743 +) +(1,16428:6630773,17182598:25952256,424439,9908 +h1,16428:6630773,17182598:0,0,0 +g1,16428:7626635,17182598 +g1,16428:8290543,17182598 +g1,16428:8954451,17182598 +g1,16428:10282267,17182598 +g1,16428:11942037,17182598 +h1,16428:13269853,17182598:0,0,0 +k1,16428:32583029,17182598:19313176 +g1,16428:32583029,17182598 +) +] +) +g1,16429:32583029,17192506 +g1,16429:6630773,17192506 +g1,16429:6630773,17192506 +g1,16429:32583029,17192506 +g1,16429:32583029,17192506 +) +h1,16429:6630773,17389114:0,0,0 +(1,16433:6630773,18254194:25952256,513147,115847 +h1,16432:6630773,18254194:983040,0,0 +k1,16432:10764296,18254194:360615 +(1,16432:10764296,18254194:0,452978,115847 +r1,16490:13232833,18254194:2468537,568825,115847 +k1,16432:10764296,18254194:-2468537 +) +(1,16432:10764296,18254194:2468537,452978,115847 +k1,16432:10764296,18254194:3277 +h1,16432:13229556,18254194:0,411205,112570 +) +k1,16432:13593448,18254194:360615 +k1,16432:15058344,18254194:360614 +k1,16432:16166725,18254194:360615 +k1,16432:18040566,18254194:360615 +k1,16432:19052609,18254194:360615 +k1,16432:21617199,18254194:360614 +k1,16432:22333674,18254194:360615 +k1,16432:24774402,18254194:360615 +k1,16432:25794309,18254194:360615 +k1,16432:27689122,18254194:360615 +k1,16432:29904405,18254194:360614 +k1,16432:31074390,18254194:360615 +k1,16432:32583029,18254194:0 +) +(1,16433:6630773,19119274:25952256,505283,126483 +k1,16432:11154012,19119274:152643 +k1,16432:14380950,19119274:152644 +k1,16432:15818099,19119274:152643 +k1,16432:16586781,19119274:152644 +k1,16432:18173352,19119274:152643 +k1,16432:18740792,19119274:152597 +k1,16432:20849685,19119274:152643 +k1,16432:22094814,19119274:152644 +k1,16432:25422676,19119274:152643 +k1,16432:28609637,19119274:152644 +k1,16432:31189078,19119274:152643 +k1,16432:32583029,19119274:0 +) +(1,16433:6630773,19984354:25952256,505283,126483 +g1,16432:7849087,19984354 +(1,16432:7849087,19984354:0,452978,115847 +r1,16490:9614201,19984354:1765114,568825,115847 +k1,16432:7849087,19984354:-1765114 +) +(1,16432:7849087,19984354:1765114,452978,115847 +g1,16432:8555788,19984354 +g1,16432:9259212,19984354 +h1,16432:9610924,19984354:0,411205,112570 +) +g1,16432:9813430,19984354 +g1,16432:12932943,19984354 +(1,16432:12932943,19984354:0,452978,122846 +r1,16490:19622022,19984354:6689079,575824,122846 +k1,16432:12932943,19984354:-6689079 +) +(1,16432:12932943,19984354:6689079,452978,122846 +g1,16432:19267033,19984354 +h1,16432:19618745,19984354:0,411205,112570 +) +k1,16433:32583029,19984354:12787337 +g1,16433:32583029,19984354 +) +v1,16435:6630773,20669209:0,393216,0 +(1,16448:6630773,25828702:25952256,5552709,196608 +g1,16448:6630773,25828702 +g1,16448:6630773,25828702 +g1,16448:6434165,25828702 +(1,16448:6434165,25828702:0,5552709,196608 +r1,16490:32779637,25828702:26345472,5749317,196608 +k1,16448:6434165,25828702:-26345472 +) +(1,16448:6434165,25828702:26345472,5552709,196608 +[1,16448:6630773,25828702:25952256,5356101,0 +(1,16437:6630773,20897040:25952256,424439,112852 +(1,16436:6630773,20897040:0,0,0 +g1,16436:6630773,20897040 +g1,16436:6630773,20897040 +g1,16436:6303093,20897040 +(1,16436:6303093,20897040:0,0,0 +) +g1,16436:6630773,20897040 +) +k1,16437:6630773,20897040:0 +g1,16437:13269852,20897040 +h1,16437:14597668,20897040:0,0,0 +k1,16437:32583028,20897040:17985360 +g1,16437:32583028,20897040 +) +(1,16447:6630773,21712967:25952256,424439,9908 +(1,16439:6630773,21712967:0,0,0 +g1,16439:6630773,21712967 +g1,16439:6630773,21712967 +g1,16439:6303093,21712967 +(1,16439:6303093,21712967:0,0,0 +) +g1,16439:6630773,21712967 +) +g1,16447:7626635,21712967 +g1,16447:8290543,21712967 +g1,16447:8954451,21712967 +g1,16447:11610083,21712967 +g1,16447:12273991,21712967 +g1,16447:12937899,21712967 +h1,16447:13269853,21712967:0,0,0 +k1,16447:32583029,21712967:19313176 +g1,16447:32583029,21712967 +) +(1,16447:6630773,22397822:25952256,424439,106246 +h1,16447:6630773,22397822:0,0,0 +g1,16447:7626635,22397822 +g1,16447:7958589,22397822 +g1,16447:8290543,22397822 +g1,16447:10946175,22397822 +g1,16447:12605945,22397822 +g1,16447:12937899,22397822 +g1,16447:13269853,22397822 +g1,16447:13601807,22397822 +g1,16447:13933761,22397822 +g1,16447:14265715,22397822 +g1,16447:14597669,22397822 +g1,16447:14929623,22397822 +g1,16447:15261577,22397822 +g1,16447:18581116,22397822 +g1,16447:22232609,22397822 +h1,16447:24888240,22397822:0,0,0 +k1,16447:32583029,22397822:7694789 +g1,16447:32583029,22397822 +) +(1,16447:6630773,23082677:25952256,431045,6605 +h1,16447:6630773,23082677:0,0,0 +g1,16447:7626635,23082677 +g1,16447:7958589,23082677 +g1,16447:8290543,23082677 +g1,16447:10282267,23082677 +g1,16447:10614221,23082677 +g1,16447:10946175,23082677 +g1,16447:12937899,23082677 +g1,16447:13269853,23082677 +g1,16447:13601807,23082677 +g1,16447:13933761,23082677 +g1,16447:14265715,23082677 +g1,16447:14597669,23082677 +g1,16447:14929623,23082677 +g1,16447:15261577,23082677 +g1,16447:15593531,23082677 +g1,16447:15925485,23082677 +g1,16447:16257439,23082677 +g1,16447:16589393,23082677 +g1,16447:18581117,23082677 +g1,16447:20572841,23082677 +g1,16447:20904795,23082677 +g1,16447:21236749,23082677 +g1,16447:21568703,23082677 +g1,16447:21900657,23082677 +g1,16447:22232611,23082677 +k1,16447:22232611,23082677:0 +h1,16447:23892381,23082677:0,0,0 +k1,16447:32583029,23082677:8690648 +g1,16447:32583029,23082677 +) +(1,16447:6630773,23767532:25952256,424439,112852 +h1,16447:6630773,23767532:0,0,0 +g1,16447:7626635,23767532 +g1,16447:8290543,23767532 +g1,16447:10614221,23767532 +g1,16447:10946175,23767532 +g1,16447:15261576,23767532 +g1,16447:15593530,23767532 +g1,16447:15925484,23767532 +g1,16447:16257438,23767532 +g1,16447:16589392,23767532 +g1,16447:16921346,23767532 +g1,16447:17253300,23767532 +g1,16447:18581116,23767532 +g1,16447:20572840,23767532 +g1,16447:20904794,23767532 +g1,16447:21236748,23767532 +g1,16447:21568702,23767532 +g1,16447:21900656,23767532 +g1,16447:22232610,23767532 +h1,16447:24224334,23767532:0,0,0 +k1,16447:32583029,23767532:8358695 +g1,16447:32583029,23767532 +) +(1,16447:6630773,24452387:25952256,424439,106246 +h1,16447:6630773,24452387:0,0,0 +g1,16447:7626635,24452387 +g1,16447:8290543,24452387 +g1,16447:10614221,24452387 +g1,16447:10946175,24452387 +g1,16447:14929622,24452387 +g1,16447:15261576,24452387 +g1,16447:15593530,24452387 +g1,16447:15925484,24452387 +g1,16447:16257438,24452387 +g1,16447:16589392,24452387 +g1,16447:16921346,24452387 +g1,16447:17253300,24452387 +g1,16447:18581116,24452387 +g1,16447:20572840,24452387 +g1,16447:20904794,24452387 +g1,16447:21236748,24452387 +g1,16447:21568702,24452387 +g1,16447:21900656,24452387 +g1,16447:22232610,24452387 +h1,16447:23892380,24452387:0,0,0 +k1,16447:32583029,24452387:8690649 +g1,16447:32583029,24452387 +) +(1,16447:6630773,25137242:25952256,424439,112852 +h1,16447:6630773,25137242:0,0,0 +g1,16447:7626635,25137242 +g1,16447:8290543,25137242 +g1,16447:10614221,25137242 +g1,16447:10946175,25137242 +g1,16447:15261576,25137242 +g1,16447:15593530,25137242 +g1,16447:15925484,25137242 +g1,16447:16257438,25137242 +g1,16447:16589392,25137242 +g1,16447:16921346,25137242 +g1,16447:17253300,25137242 +g1,16447:18581116,25137242 +g1,16447:20572840,25137242 +g1,16447:20904794,25137242 +g1,16447:21236748,25137242 +g1,16447:21568702,25137242 +g1,16447:21900656,25137242 +g1,16447:22232610,25137242 +h1,16447:24224334,25137242:0,0,0 +k1,16447:32583029,25137242:8358695 +g1,16447:32583029,25137242 +) +(1,16447:6630773,25822097:25952256,424439,6605 +h1,16447:6630773,25822097:0,0,0 +g1,16447:7626635,25822097 +g1,16447:8290543,25822097 +g1,16447:8954451,25822097 +g1,16447:9618359,25822097 +g1,16447:11278129,25822097 +h1,16447:12605945,25822097:0,0,0 +k1,16447:32583029,25822097:19977084 +g1,16447:32583029,25822097 +) +] +) +g1,16448:32583029,25828702 +g1,16448:6630773,25828702 +g1,16448:6630773,25828702 +g1,16448:32583029,25828702 +g1,16448:32583029,25828702 +) +h1,16448:6630773,26025310:0,0,0 +(1,16452:6630773,26890390:25952256,513147,115847 +h1,16451:6630773,26890390:983040,0,0 +k1,16451:10661600,26890390:257919 +(1,16451:10661600,26890390:0,452978,115847 +r1,16490:13481849,26890390:2820249,568825,115847 +k1,16451:10661600,26890390:-2820249 +) +(1,16451:10661600,26890390:2820249,452978,115847 +k1,16451:10661600,26890390:3277 +h1,16451:13478572,26890390:0,411205,112570 +) +k1,16451:13739768,26890390:257919 +k1,16451:15101969,26890390:257919 +k1,16451:16107654,26890390:257919 +k1,16451:17878799,26890390:257919 +k1,16451:18788146,26890390:257919 +k1,16451:21250041,26890390:257919 +k1,16451:21863820,26890390:257919 +k1,16451:24201852,26890390:257919 +k1,16451:25119063,26890390:257919 +k1,16451:29621094,26890390:257919 +k1,16451:31835263,26890390:257919 +k1,16451:32583029,26890390:0 +) +(1,16452:6630773,27755470:25952256,505283,134348 +k1,16451:8424375,27755470:216150 +k1,16451:10034476,27755470:216150 +k1,16451:13425846,27755470:216151 +k1,16451:16676313,27755470:216150 +k1,16451:19319261,27755470:216150 +k1,16451:20929362,27755470:216150 +(1,16451:20929362,27755470:0,452978,115847 +r1,16490:22694476,27755470:1765114,568825,115847 +k1,16451:20929362,27755470:-1765114 +) +(1,16451:20929362,27755470:1765114,452978,115847 +g1,16451:21636063,27755470 +g1,16451:22339487,27755470 +h1,16451:22691199,27755470:0,411205,112570 +) +k1,16451:22910627,27755470:216151 +k1,16451:23742815,27755470:216150 +k1,16451:25392893,27755470:216150 +k1,16451:26197556,27755470:216150 +k1,16451:28841161,27755470:216151 +k1,16451:30696366,27755470:216150 +k1,16451:31563944,27755470:216150 +k1,16451:32583029,27755470:0 +) +(1,16452:6630773,28620550:25952256,505283,134348 +k1,16451:9129333,28620550:257229 +k1,16451:12458890,28620550:257229 +k1,16451:13402281,28620550:257229 +k1,16451:16279639,28620550:257229 +k1,16451:18963666,28620550:257229 +k1,16451:19903780,28620550:257229 +k1,16451:22543897,28620550:257228 +k1,16451:24869442,28620550:257229 +k1,16451:25742709,28620550:257229 +k1,16451:26355798,28620550:257229 +k1,16451:28764574,28620550:257229 +k1,16451:31753999,28620550:257229 +k1,16452:32583029,28620550:0 +) +(1,16452:6630773,29485630:25952256,505283,126483 +k1,16451:8666456,29485630:224923 +k1,16451:9507418,29485630:224924 +k1,16451:11166269,29485630:224923 +k1,16451:11806010,29485630:224898 +k1,16451:13135215,29485630:224923 +k1,16451:14735740,29485630:224924 +k1,16451:15708429,29485630:224923 +k1,16451:18727153,29485630:224924 +k1,16451:20641594,29485630:224923 +(1,16451:20641594,29485630:0,452978,115847 +r1,16490:23461843,29485630:2820249,568825,115847 +k1,16451:20641594,29485630:-2820249 +) +(1,16451:20641594,29485630:2820249,452978,115847 +k1,16451:20641594,29485630:3277 +h1,16451:23458566,29485630:0,411205,112570 +) +k1,16451:23686767,29485630:224924 +k1,16451:26289992,29485630:224923 +k1,16451:27906901,29485630:224924 +k1,16451:30514713,29485630:224923 +k1,16451:32583029,29485630:0 +) +(1,16452:6630773,30350710:25952256,513147,126483 +g1,16451:10258190,30350710 +g1,16451:11851370,30350710 +g1,16451:12406459,30350710 +g1,16451:14586841,30350710 +g1,16451:15733721,30350710 +k1,16452:32583029,30350710:13668846 +g1,16452:32583029,30350710 +) +v1,16454:6630773,31035565:0,393216,0 +(1,16467:6630773,36198361:25952256,5556012,196608 +g1,16467:6630773,36198361 +g1,16467:6630773,36198361 +g1,16467:6434165,36198361 +(1,16467:6434165,36198361:0,5556012,196608 +r1,16490:32779637,36198361:26345472,5752620,196608 +k1,16467:6434165,36198361:-26345472 +) +(1,16467:6434165,36198361:26345472,5556012,196608 +[1,16467:6630773,36198361:25952256,5359404,0 +(1,16456:6630773,31263396:25952256,424439,112852 +(1,16455:6630773,31263396:0,0,0 +g1,16455:6630773,31263396 +g1,16455:6630773,31263396 +g1,16455:6303093,31263396 +(1,16455:6303093,31263396:0,0,0 +) +g1,16455:6630773,31263396 +) +k1,16456:6630773,31263396:0 +g1,16456:13601806,31263396 +k1,16456:13601806,31263396:0 +h1,16456:15593530,31263396:0,0,0 +k1,16456:32583030,31263396:16989500 +g1,16456:32583030,31263396 +) +(1,16466:6630773,32079323:25952256,424439,9908 +(1,16458:6630773,32079323:0,0,0 +g1,16458:6630773,32079323 +g1,16458:6630773,32079323 +g1,16458:6303093,32079323 +(1,16458:6303093,32079323:0,0,0 +) +g1,16458:6630773,32079323 +) +g1,16466:7626635,32079323 +g1,16466:8290543,32079323 +g1,16466:8954451,32079323 +g1,16466:11610083,32079323 +g1,16466:12937899,32079323 +g1,16466:13601807,32079323 +h1,16466:13933761,32079323:0,0,0 +k1,16466:32583029,32079323:18649268 +g1,16466:32583029,32079323 +) +(1,16466:6630773,32764178:25952256,424439,106246 +h1,16466:6630773,32764178:0,0,0 +g1,16466:7626635,32764178 +g1,16466:7958589,32764178 +g1,16466:8290543,32764178 +g1,16466:10946175,32764178 +g1,16466:14265714,32764178 +g1,16466:17917207,32764178 +h1,16466:20572838,32764178:0,0,0 +k1,16466:32583029,32764178:12010191 +g1,16466:32583029,32764178 +) +(1,16466:6630773,33449033:25952256,431045,6605 +h1,16466:6630773,33449033:0,0,0 +g1,16466:7626635,33449033 +g1,16466:7958589,33449033 +g1,16466:8290543,33449033 +g1,16466:10282267,33449033 +g1,16466:10614221,33449033 +g1,16466:10946175,33449033 +g1,16466:11278129,33449033 +g1,16466:11610083,33449033 +g1,16466:11942037,33449033 +g1,16466:12273991,33449033 +g1,16466:14265715,33449033 +g1,16466:16257439,33449033 +g1,16466:16589393,33449033 +g1,16466:16921347,33449033 +g1,16466:17253301,33449033 +g1,16466:17585255,33449033 +g1,16466:17917209,33449033 +k1,16466:17917209,33449033:0 +h1,16466:19576979,33449033:0,0,0 +k1,16466:32583029,33449033:13006050 +g1,16466:32583029,33449033 +) +(1,16466:6630773,34133888:25952256,424439,112852 +h1,16466:6630773,34133888:0,0,0 +g1,16466:7626635,34133888 +g1,16466:8290543,34133888 +g1,16466:10614221,34133888 +g1,16466:10946175,34133888 +g1,16466:11278129,34133888 +g1,16466:11610083,34133888 +g1,16466:11942037,34133888 +g1,16466:12273991,34133888 +g1,16466:12605945,34133888 +g1,16466:12937899,34133888 +g1,16466:14265715,34133888 +g1,16466:16257439,34133888 +g1,16466:16589393,34133888 +g1,16466:16921347,34133888 +g1,16466:17253301,34133888 +g1,16466:17585255,34133888 +g1,16466:17917209,34133888 +h1,16466:19908933,34133888:0,0,0 +k1,16466:32583029,34133888:12674096 +g1,16466:32583029,34133888 +) +(1,16466:6630773,34818743:25952256,424439,106246 +h1,16466:6630773,34818743:0,0,0 +g1,16466:7626635,34818743 +g1,16466:8290543,34818743 +g1,16466:10614221,34818743 +g1,16466:10946175,34818743 +g1,16466:11278129,34818743 +g1,16466:11610083,34818743 +g1,16466:11942037,34818743 +g1,16466:12273991,34818743 +g1,16466:12605945,34818743 +g1,16466:12937899,34818743 +g1,16466:14265715,34818743 +g1,16466:16257439,34818743 +g1,16466:16589393,34818743 +g1,16466:16921347,34818743 +g1,16466:17253301,34818743 +g1,16466:17585255,34818743 +g1,16466:17917209,34818743 +h1,16466:19576979,34818743:0,0,0 +k1,16466:32583029,34818743:13006050 +g1,16466:32583029,34818743 +) +(1,16466:6630773,35503598:25952256,424439,112852 +h1,16466:6630773,35503598:0,0,0 +g1,16466:7626635,35503598 +g1,16466:8290543,35503598 +g1,16466:10614221,35503598 +g1,16466:10946175,35503598 +g1,16466:11278129,35503598 +g1,16466:11610083,35503598 +g1,16466:11942037,35503598 +g1,16466:12273991,35503598 +g1,16466:12605945,35503598 +g1,16466:12937899,35503598 +g1,16466:14265715,35503598 +g1,16466:16257439,35503598 +g1,16466:16589393,35503598 +g1,16466:16921347,35503598 +g1,16466:17253301,35503598 +g1,16466:17585255,35503598 +g1,16466:17917209,35503598 +h1,16466:19908933,35503598:0,0,0 +k1,16466:32583029,35503598:12674096 +g1,16466:32583029,35503598 +) +(1,16466:6630773,36188453:25952256,424439,9908 +h1,16466:6630773,36188453:0,0,0 +g1,16466:7626635,36188453 +g1,16466:8290543,36188453 +g1,16466:8954451,36188453 +g1,16466:10282267,36188453 +g1,16466:11942037,36188453 +h1,16466:13269853,36188453:0,0,0 +k1,16466:32583029,36188453:19313176 +g1,16466:32583029,36188453 +) +] +) +g1,16467:32583029,36198361 +g1,16467:6630773,36198361 +g1,16467:6630773,36198361 +g1,16467:32583029,36198361 +g1,16467:32583029,36198361 +) +h1,16467:6630773,36394969:0,0,0 +(1,16471:6630773,37260049:25952256,513147,126483 +h1,16470:6630773,37260049:983040,0,0 +k1,16470:8483452,37260049:241804 +k1,16470:11564932,37260049:241805 +(1,16470:11564932,37260049:0,452978,115847 +r1,16490:14385181,37260049:2820249,568825,115847 +k1,16470:11564932,37260049:-2820249 +) +(1,16470:11564932,37260049:2820249,452978,115847 +k1,16470:11564932,37260049:3277 +h1,16470:14381904,37260049:0,411205,112570 +) +k1,16470:14626985,37260049:241804 +k1,16470:15554951,37260049:241804 +k1,16470:17498726,37260049:241805 +k1,16470:20766327,37260049:241804 +k1,16470:21624169,37260049:241804 +k1,16470:23838606,37260049:241804 +k1,16470:26128411,37260049:241805 +k1,16470:29804302,37260049:241804 +k1,16470:32583029,37260049:0 +) +(1,16471:6630773,38125129:25952256,513147,126483 +k1,16470:7588341,38125129:196040 +k1,16470:10810179,38125129:196041 +(1,16470:10810179,38125129:0,452978,115847 +r1,16490:15388987,38125129:4578808,568825,115847 +k1,16470:10810179,38125129:-4578808 +) +(1,16470:10810179,38125129:4578808,452978,115847 +k1,16470:10810179,38125129:3277 +h1,16470:15385710,38125129:0,411205,112570 +) +k1,16470:15758697,38125129:196040 +(1,16470:15758697,38125129:0,452978,115847 +r1,16490:19634081,38125129:3875384,568825,115847 +k1,16470:15758697,38125129:-3875384 +) +(1,16470:15758697,38125129:3875384,452978,115847 +k1,16470:15758697,38125129:3277 +h1,16470:19630804,38125129:0,411205,112570 +) +k1,16470:20003791,38125129:196040 +(1,16470:20003791,38125129:0,452978,115847 +r1,16490:23527463,38125129:3523672,568825,115847 +k1,16470:20003791,38125129:-3523672 +) +(1,16470:20003791,38125129:3523672,452978,115847 +k1,16470:20003791,38125129:3277 +h1,16470:23524186,38125129:0,411205,112570 +) +k1,16470:23897174,38125129:196041 +k1,16470:25284659,38125129:196040 +(1,16470:25284659,38125129:0,452978,115847 +r1,16490:28456619,38125129:3171960,568825,115847 +k1,16470:25284659,38125129:-3171960 +) +(1,16470:25284659,38125129:3171960,452978,115847 +k1,16470:25284659,38125129:3277 +h1,16470:28453342,38125129:0,411205,112570 +) +k1,16470:28652659,38125129:196040 +k1,16470:29500128,38125129:196041 +k1,16470:31900144,38125129:196040 +k1,16470:32583029,38125129:0 +) +(1,16471:6630773,38990209:25952256,513147,126483 +k1,16470:8792169,38990209:296897 +k1,16470:11975926,38990209:296896 +k1,16470:13314845,38990209:296897 +k1,16470:14814983,38990209:296897 +k1,16470:17773297,38990209:296897 +k1,16470:18938545,38990209:296896 +k1,16470:20327927,38990209:296897 +k1,16470:21643909,38990209:296897 +k1,16470:26534224,38990209:296897 +(1,16470:26534224,38990209:0,452978,115847 +r1,16490:29002761,38990209:2468537,568825,115847 +k1,16470:26534224,38990209:-2468537 +) +(1,16470:26534224,38990209:2468537,452978,115847 +k1,16470:26534224,38990209:3277 +h1,16470:28999484,38990209:0,411205,112570 +) +k1,16470:29299657,38990209:296896 +k1,16470:31923737,38990209:296897 +k1,16471:32583029,38990209:0 +) +(1,16471:6630773,39855289:25952256,452978,122846 +(1,16470:6630773,39855289:0,452978,122846 +r1,16490:10857869,39855289:4227096,575824,122846 +k1,16470:6630773,39855289:-4227096 +) +(1,16470:6630773,39855289:4227096,452978,122846 +k1,16470:6630773,39855289:3277 +h1,16470:10854592,39855289:0,411205,112570 +) +k1,16471:32583029,39855289:21551490 +g1,16471:32583029,39855289 +) +v1,16473:6630773,40540144:0,393216,0 +(1,16486:6630773,45510161:25952256,5363233,196608 +g1,16486:6630773,45510161 +g1,16486:6630773,45510161 +g1,16486:6434165,45510161 +(1,16486:6434165,45510161:0,5363233,196608 +r1,16490:32779637,45510161:26345472,5559841,196608 +k1,16486:6434165,45510161:-26345472 +) +(1,16486:6434165,45510161:26345472,5363233,196608 +[1,16486:6630773,45510161:25952256,5166625,0 +(1,16475:6630773,40767975:25952256,424439,106246 +(1,16474:6630773,40767975:0,0,0 +g1,16474:6630773,40767975 +g1,16474:6630773,40767975 +g1,16474:6303093,40767975 +(1,16474:6303093,40767975:0,0,0 +) +g1,16474:6630773,40767975 +) +k1,16475:6630773,40767975:0 +g1,16475:11942036,40767975 +k1,16475:11942036,40767975:0 +h1,16475:19245023,40767975:0,0,0 +k1,16475:32583029,40767975:13338006 +g1,16475:32583029,40767975 +) +(1,16485:6630773,41394426:25952256,424439,9908 +(1,16477:6630773,41394426:0,0,0 +g1,16477:6630773,41394426 +g1,16477:6630773,41394426 +g1,16477:6303093,41394426 +(1,16477:6303093,41394426:0,0,0 +) +g1,16477:6630773,41394426 +) +g1,16485:7626635,41394426 +g1,16485:8290543,41394426 +g1,16485:8954451,41394426 +g1,16485:11610083,41394426 +g1,16485:12937899,41394426 +g1,16485:13601807,41394426 +h1,16485:13933761,41394426:0,0,0 +k1,16485:32583029,41394426:18649268 +g1,16485:32583029,41394426 +) +(1,16485:6630773,42079281:25952256,424439,112852 +h1,16485:6630773,42079281:0,0,0 +g1,16485:7626635,42079281 +g1,16485:7958589,42079281 +g1,16485:8290543,42079281 +g1,16485:12605944,42079281 +g1,16485:16589391,42079281 +h1,16485:18913069,42079281:0,0,0 +k1,16485:32583029,42079281:13669960 +g1,16485:32583029,42079281 +) +(1,16485:6630773,42764136:25952256,431045,6605 +h1,16485:6630773,42764136:0,0,0 +g1,16485:7626635,42764136 +g1,16485:7958589,42764136 +g1,16485:8290543,42764136 +g1,16485:8622497,42764136 +g1,16485:8954451,42764136 +g1,16485:9286405,42764136 +g1,16485:9618359,42764136 +g1,16485:9950313,42764136 +g1,16485:10282267,42764136 +g1,16485:10614221,42764136 +g1,16485:12605945,42764136 +g1,16485:12937899,42764136 +g1,16485:13269853,42764136 +g1,16485:13601807,42764136 +g1,16485:13933761,42764136 +g1,16485:14265715,42764136 +g1,16485:14597669,42764136 +g1,16485:16589393,42764136 +k1,16485:16589393,42764136:0 +h1,16485:18249163,42764136:0,0,0 +k1,16485:32583029,42764136:14333866 +g1,16485:32583029,42764136 +) +(1,16485:6630773,43448991:25952256,407923,9908 +h1,16485:6630773,43448991:0,0,0 +g1,16485:7626635,43448991 +g1,16485:8290543,43448991 +g1,16485:8622497,43448991 +g1,16485:8954451,43448991 +g1,16485:9286405,43448991 +g1,16485:9618359,43448991 +g1,16485:9950313,43448991 +g1,16485:10282267,43448991 +g1,16485:10614221,43448991 +g1,16485:10946175,43448991 +g1,16485:11278129,43448991 +g1,16485:12605945,43448991 +g1,16485:12937899,43448991 +g1,16485:13269853,43448991 +g1,16485:13601807,43448991 +g1,16485:13933761,43448991 +g1,16485:14265715,43448991 +g1,16485:14597669,43448991 +g1,16485:14929623,43448991 +g1,16485:15261577,43448991 +g1,16485:16589393,43448991 +h1,16485:18581117,43448991:0,0,0 +k1,16485:32583029,43448991:14001912 +g1,16485:32583029,43448991 +) +(1,16485:6630773,44133846:25952256,407923,9908 +h1,16485:6630773,44133846:0,0,0 +g1,16485:7626635,44133846 +g1,16485:8290543,44133846 +g1,16485:8622497,44133846 +g1,16485:8954451,44133846 +g1,16485:9286405,44133846 +g1,16485:9618359,44133846 +g1,16485:9950313,44133846 +g1,16485:10282267,44133846 +g1,16485:10614221,44133846 +g1,16485:10946175,44133846 +g1,16485:11278129,44133846 +g1,16485:12605945,44133846 +g1,16485:12937899,44133846 +g1,16485:13269853,44133846 +g1,16485:13601807,44133846 +g1,16485:13933761,44133846 +g1,16485:14265715,44133846 +g1,16485:14597669,44133846 +g1,16485:14929623,44133846 +g1,16485:15261577,44133846 +g1,16485:16589393,44133846 +h1,16485:18581117,44133846:0,0,0 +k1,16485:32583029,44133846:14001912 +g1,16485:32583029,44133846 +) +(1,16485:6630773,44818701:25952256,407923,9908 +h1,16485:6630773,44818701:0,0,0 +g1,16485:7626635,44818701 +g1,16485:8290543,44818701 +g1,16485:8622497,44818701 +g1,16485:8954451,44818701 +g1,16485:9286405,44818701 +g1,16485:9618359,44818701 +g1,16485:9950313,44818701 +g1,16485:10282267,44818701 +g1,16485:10614221,44818701 +g1,16485:10946175,44818701 +g1,16485:11278129,44818701 +g1,16485:12605945,44818701 +g1,16485:12937899,44818701 +g1,16485:13269853,44818701 +g1,16485:13601807,44818701 +g1,16485:13933761,44818701 +g1,16485:14265715,44818701 +g1,16485:14597669,44818701 +g1,16485:14929623,44818701 +g1,16485:15261577,44818701 +g1,16485:16589393,44818701 +h1,16485:18581117,44818701:0,0,0 +k1,16485:32583029,44818701:14001912 +g1,16485:32583029,44818701 +) +(1,16485:6630773,45503556:25952256,424439,6605 +h1,16485:6630773,45503556:0,0,0 +g1,16485:7626635,45503556 +g1,16485:8290543,45503556 +g1,16485:8954451,45503556 +g1,16485:10282267,45503556 +g1,16485:11942037,45503556 +h1,16485:13269853,45503556:0,0,0 +k1,16485:32583029,45503556:19313176 +g1,16485:32583029,45503556 +) +] +) +g1,16486:32583029,45510161 +g1,16486:6630773,45510161 +g1,16486:6630773,45510161 +g1,16486:32583029,45510161 +g1,16486:32583029,45510161 +) +h1,16486:6630773,45706769:0,0,0 ] (1,16490:32583029,45706769:0,0,0 g1,16490:32583029,45706769 @@ -282034,1188 +279049,29 @@ g1,16490:-473656,-710413 ] ) ] -!27758 -}281 -Input:2429:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2430:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!200 -{282 -[1,16576:4262630,47279633:28320399,43253760,0 -(1,16576:4262630,4025873:0,0,0 -[1,16576:-473656,4025873:0,0,0 -(1,16576:-473656,-710413:0,0,0 -(1,16576:-473656,-644877:0,0,0 -k1,16576:-473656,-644877:-65536 -) -(1,16576:-473656,4736287:0,0,0 -k1,16576:-473656,4736287:5209943 -) -g1,16576:-473656,-710413 -) -] -) -[1,16576:6630773,47279633:25952256,43253760,0 -[1,16576:6630773,4812305:25952256,786432,0 -(1,16576:6630773,4812305:25952256,505283,126483 -(1,16576:6630773,4812305:25952256,505283,126483 -g1,16576:3078558,4812305 -[1,16576:3078558,4812305:0,0,0 -(1,16576:3078558,2439708:0,1703936,0 -k1,16576:1358238,2439708:-1720320 -(1,15243:1358238,2439708:1720320,1703936,0 -(1,15243:1358238,2439708:1179648,16384,0 -r1,16576:2537886,2439708:1179648,16384,0 -) -g1,15243:3062174,2439708 -(1,15243:3062174,2439708:16384,1703936,0 -[1,15243:3062174,2439708:25952256,1703936,0 -(1,15243:3062174,1915420:25952256,1179648,0 -(1,15243:3062174,1915420:16384,1179648,0 -r1,16576:3078558,1915420:16384,1179648,0 -) -k1,15243:29014430,1915420:25935872 -g1,15243:29014430,1915420 -) -] -) -) -) -] -[1,16576:3078558,4812305:0,0,0 -(1,16576:3078558,2439708:0,1703936,0 -g1,16576:29030814,2439708 -g1,16576:36135244,2439708 -(1,15243:36135244,2439708:1720320,1703936,0 -(1,15243:36135244,2439708:16384,1703936,0 -[1,15243:36135244,2439708:25952256,1703936,0 -(1,15243:36135244,1915420:25952256,1179648,0 -(1,15243:36135244,1915420:16384,1179648,0 -r1,16576:36151628,1915420:16384,1179648,0 -) -k1,15243:62087500,1915420:25935872 -g1,15243:62087500,1915420 -) -] -) -g1,15243:36675916,2439708 -(1,15243:36675916,2439708:1179648,16384,0 -r1,16576:37855564,2439708:1179648,16384,0 -) -) -k1,16576:3078556,2439708:-34777008 -) -] -[1,16576:3078558,4812305:0,0,0 -(1,16576:3078558,49800853:0,16384,2228224 -k1,16576:1358238,49800853:-1720320 -(1,15243:1358238,49800853:1720320,16384,2228224 -(1,15243:1358238,49800853:1179648,16384,0 -r1,16576:2537886,49800853:1179648,16384,0 -) -g1,15243:3062174,49800853 -(1,15243:3062174,52029077:16384,1703936,0 -[1,15243:3062174,52029077:25952256,1703936,0 -(1,15243:3062174,51504789:25952256,1179648,0 -(1,15243:3062174,51504789:16384,1179648,0 -r1,16576:3078558,51504789:16384,1179648,0 -) -k1,15243:29014430,51504789:25935872 -g1,15243:29014430,51504789 -) -] -) -) -) -] -[1,16576:3078558,4812305:0,0,0 -(1,16576:3078558,49800853:0,16384,2228224 -g1,16576:29030814,49800853 -g1,16576:36135244,49800853 -(1,15243:36135244,49800853:1720320,16384,2228224 -(1,15243:36135244,52029077:16384,1703936,0 -[1,15243:36135244,52029077:25952256,1703936,0 -(1,15243:36135244,51504789:25952256,1179648,0 -(1,15243:36135244,51504789:16384,1179648,0 -r1,16576:36151628,51504789:16384,1179648,0 -) -k1,15243:62087500,51504789:25935872 -g1,15243:62087500,51504789 -) -] -) -g1,15243:36675916,49800853 -(1,15243:36675916,49800853:1179648,16384,0 -r1,16576:37855564,49800853:1179648,16384,0 -) -) -k1,16576:3078556,49800853:-34777008 -) -] -g1,16576:6630773,4812305 -g1,16576:6630773,4812305 -g1,16576:8364200,4812305 -g1,16576:12785258,4812305 -g1,16576:14347636,4812305 -g1,16576:16554232,4812305 -k1,16576:31387652,4812305:14833420 -) -) -] -[1,16576:6630773,45706769:25952256,40108032,0 -(1,16576:6630773,45706769:25952256,40108032,0 -(1,16576:6630773,45706769:0,0,0 -g1,16576:6630773,45706769 -) -[1,16576:6630773,45706769:25952256,40108032,0 -(1,16490:6630773,6254097:25952256,513147,134348 -h1,16489:6630773,6254097:983040,0,0 -k1,16489:8290875,6254097:189474 -k1,16489:9570222,6254097:189483 -k1,16489:10997025,6254097:189483 -k1,16489:13381309,6254097:189483 -k1,16489:14336908,6254097:189483 -k1,16489:18105313,6254097:189484 -k1,16489:19828994,6254097:189483 -k1,16489:21849553,6254097:189483 -k1,16489:24511054,6254097:189483 -k1,16489:26711182,6254097:189483 -k1,16489:28294617,6254097:189484 -(1,16489:28294617,6254097:0,414482,115847 -r1,16576:29004595,6254097:709978,530329,115847 -k1,16489:28294617,6254097:-709978 -) -(1,16489:28294617,6254097:709978,414482,115847 -k1,16489:28294617,6254097:3277 -h1,16489:29001318,6254097:0,411205,112570 -) -k1,16489:29367748,6254097:189483 -k1,16489:30317449,6254097:189483 -k1,16489:32583029,6254097:0 -) -(1,16490:6630773,7095585:25952256,505283,115847 -k1,16489:7925790,7095585:275932 -k1,16489:10182875,7095585:275932 -k1,16489:10990303,7095585:275931 -k1,16489:12843687,7095585:275932 -k1,16489:13928989,7095585:275932 -k1,16489:16918112,7095585:275932 -k1,16489:18587995,7095585:275932 -k1,16489:19883012,7095585:275932 -k1,16489:21812416,7095585:275931 -k1,16489:23826363,7095585:275932 -k1,16489:24718333,7095585:275932 -(1,16489:24718333,7095585:0,414482,115847 -r1,16576:25076599,7095585:358266,530329,115847 -k1,16489:24718333,7095585:-358266 -) -(1,16489:24718333,7095585:358266,414482,115847 -k1,16489:24718333,7095585:3277 -h1,16489:25073322,7095585:0,411205,112570 -) -k1,16489:25352531,7095585:275932 -k1,16489:26819908,7095585:275932 -(1,16489:26819908,7095585:0,414482,115847 -r1,16576:27178174,7095585:358266,530329,115847 -k1,16489:26819908,7095585:-358266 -) -(1,16489:26819908,7095585:358266,414482,115847 -k1,16489:26819908,7095585:3277 -h1,16489:27174897,7095585:0,411205,112570 -) -k1,16489:27627776,7095585:275932 -k1,16489:28975876,7095585:275931 -k1,16489:30455049,7095585:275932 -k1,16489:31835263,7095585:275932 -k1,16489:32583029,7095585:0 -) -(1,16490:6630773,7937073:25952256,505283,134348 -k1,16489:9452628,7937073:160438 -k1,16489:10374593,7937073:160437 -k1,16489:12962485,7937073:160438 -k1,16489:13893626,7937073:160438 -k1,16489:17126392,7937073:160438 -k1,16489:17938257,7937073:160437 -k1,16489:21379427,7937073:160438 -(1,16489:21379427,7937073:0,452978,115847 -r1,16576:22089405,7937073:709978,568825,115847 -k1,16489:21379427,7937073:-709978 -) -(1,16489:21379427,7937073:709978,452978,115847 -k1,16489:21379427,7937073:3277 -h1,16489:22086128,7937073:0,411205,112570 -) -k1,16489:22423513,7937073:160438 -k1,16489:24375704,7937073:160437 -(1,16489:24375704,7937073:0,452978,115847 -r1,16576:25085682,7937073:709978,568825,115847 -k1,16489:24375704,7937073:-709978 -) -(1,16489:24375704,7937073:709978,452978,115847 -k1,16489:24375704,7937073:3277 -h1,16489:25082405,7937073:0,411205,112570 -) -k1,16489:25246120,7937073:160438 -k1,16489:26563268,7937073:160438 -k1,16489:27827988,7937073:160438 -k1,16489:29422353,7937073:160437 -k1,16489:30601876,7937073:160438 -k1,16489:32583029,7937073:0 -) -(1,16490:6630773,8778561:25952256,513147,134348 -k1,16489:7631726,8778561:191583 -k1,16489:10536500,8778561:191583 -k1,16489:12012589,8778561:191583 -k1,16489:13679388,8778561:191584 -k1,16489:16633314,8778561:191583 -k1,16489:18893213,8778561:191583 -k1,16489:19700834,8778561:191583 -(1,16489:19700834,8778561:0,414482,115847 -r1,16576:20059100,8778561:358266,530329,115847 -k1,16489:19700834,8778561:-358266 -) -(1,16489:19700834,8778561:358266,414482,115847 -k1,16489:19700834,8778561:3277 -h1,16489:20055823,8778561:0,411205,112570 -) -k1,16489:20250683,8778561:191583 -k1,16489:21633711,8778561:191583 -(1,16489:21633711,8778561:0,414482,115847 -r1,16576:21991977,8778561:358266,530329,115847 -k1,16489:21633711,8778561:-358266 -) -(1,16489:21633711,8778561:358266,414482,115847 -k1,16489:21633711,8778561:3277 -h1,16489:21988700,8778561:0,411205,112570 -) -k1,16489:22357230,8778561:191583 -k1,16489:23231699,8778561:191584 -k1,16489:25855978,8778561:191583 -k1,16489:29018963,8778561:191583 -k1,16489:29869838,8778561:191583 -k1,16489:32583029,8778561:0 -) -(1,16490:6630773,9620049:25952256,513147,126483 -g1,16489:8223953,9620049 -g1,16489:9442267,9620049 -g1,16489:11294969,9620049 -g1,16489:13232213,9620049 -g1,16489:14047480,9620049 -(1,16489:14047480,9620049:0,414482,115847 -r1,16576:14405746,9620049:358266,530329,115847 -k1,16489:14047480,9620049:-358266 -) -(1,16489:14047480,9620049:358266,414482,115847 -k1,16489:14047480,9620049:3277 -h1,16489:14402469,9620049:0,411205,112570 -) -g1,16489:14604975,9620049 -g1,16489:15995649,9620049 -(1,16489:15995649,9620049:0,414482,115847 -r1,16576:16353915,9620049:358266,530329,115847 -k1,16489:15995649,9620049:-358266 -) -(1,16489:15995649,9620049:358266,414482,115847 -k1,16489:15995649,9620049:3277 -h1,16489:16350638,9620049:0,411205,112570 -) -g1,16489:16553144,9620049 -g1,16489:19620884,9620049 -g1,16489:20432875,9620049 -g1,16489:21815029,9620049 -g1,16489:22673550,9620049 -g1,16489:23891864,9620049 -k1,16490:32583029,9620049:6031714 -g1,16490:32583029,9620049 -) -v1,16492:6630773,10600799:0,393216,0 -(1,16509:6630773,18141285:25952256,7933702,196608 -g1,16509:6630773,18141285 -g1,16509:6630773,18141285 -g1,16509:6434165,18141285 -(1,16509:6434165,18141285:0,7933702,196608 -r1,16576:32779637,18141285:26345472,8130310,196608 -k1,16509:6434165,18141285:-26345472 -) -(1,16509:6434165,18141285:26345472,7933702,196608 -[1,16509:6630773,18141285:25952256,7737094,0 -(1,16494:6630773,10814709:25952256,410518,107478 -(1,16493:6630773,10814709:0,0,0 -g1,16493:6630773,10814709 -g1,16493:6630773,10814709 -g1,16493:6303093,10814709 -(1,16493:6303093,10814709:0,0,0 -) -g1,16493:6630773,10814709 -) -k1,16494:6630773,10814709:0 -g1,16494:10424522,10814709 -g1,16494:11056814,10814709 -g1,16494:14218271,10814709 -g1,16494:14850563,10814709 -g1,16494:15482855,10814709 -h1,16494:18644312,10814709:0,0,0 -k1,16494:32583029,10814709:13938717 -g1,16494:32583029,10814709 -) -(1,16498:6630773,12136247:25952256,410518,107478 -g1,16498:7579210,12136247 -g1,16498:10108376,12136247 -g1,16498:11689105,12136247 -g1,16498:12953688,12136247 -g1,16498:13585980,12136247 -k1,16498:32583029,12136247:14887155 -g1,16498:32583029,12136247 -) -(1,16508:6630773,12802425:25952256,404226,9436 -(1,16498:6630773,12802425:0,0,0 -g1,16498:6630773,12802425 -g1,16498:6630773,12802425 -g1,16498:6303093,12802425 -(1,16498:6303093,12802425:0,0,0 -) -g1,16498:6630773,12802425 -) -g1,16508:7579210,12802425 -g1,16508:8211502,12802425 -g1,16508:8843794,12802425 -g1,16508:11372960,12802425 -g1,16508:12005252,12802425 -g1,16508:12637544,12802425 -h1,16508:12953690,12802425:0,0,0 -k1,16508:32583030,12802425:19629340 -g1,16508:32583030,12802425 -) -(1,16508:6630773,13468603:25952256,404226,6290 -h1,16508:6630773,13468603:0,0,0 -g1,16508:7579210,13468603 -g1,16508:7895356,13468603 -g1,16508:8211502,13468603 -g1,16508:8527648,13468603 -g1,16508:8843794,13468603 -g1,16508:10108377,13468603 -g1,16508:12637543,13468603 -h1,16508:14850563,13468603:0,0,0 -k1,16508:32583029,13468603:17732466 -g1,16508:32583029,13468603 -) -(1,16508:6630773,14134781:25952256,404226,6290 -h1,16508:6630773,14134781:0,0,0 -g1,16508:7579210,14134781 -g1,16508:7895356,14134781 -g1,16508:8211502,14134781 -g1,16508:10108377,14134781 -g1,16508:12005252,14134781 -g1,16508:12321398,14134781 -g1,16508:12637544,14134781 -k1,16508:12637544,14134781:0 -h1,16508:14218273,14134781:0,0,0 -k1,16508:32583029,14134781:18364756 -g1,16508:32583029,14134781 -) -(1,16508:6630773,14800959:25952256,404226,6290 -h1,16508:6630773,14800959:0,0,0 -g1,16508:7579210,14800959 -g1,16508:8211502,14800959 -g1,16508:8527648,14800959 -g1,16508:8843794,14800959 -g1,16508:9159940,14800959 -g1,16508:9476086,14800959 -g1,16508:10108378,14800959 -g1,16508:10740670,14800959 -g1,16508:11056816,14800959 -g1,16508:11372962,14800959 -g1,16508:11689108,14800959 -g1,16508:12005254,14800959 -g1,16508:12321400,14800959 -g1,16508:12637546,14800959 -h1,16508:12953692,14800959:0,0,0 -k1,16508:32583028,14800959:19629336 -g1,16508:32583028,14800959 -) -(1,16508:6630773,15467137:25952256,404226,6290 -h1,16508:6630773,15467137:0,0,0 -g1,16508:7579210,15467137 -g1,16508:8211502,15467137 -g1,16508:8527648,15467137 -g1,16508:8843794,15467137 -g1,16508:9159940,15467137 -g1,16508:9476086,15467137 -g1,16508:10108378,15467137 -g1,16508:10740670,15467137 -g1,16508:11056816,15467137 -g1,16508:11372962,15467137 -g1,16508:11689108,15467137 -g1,16508:12005254,15467137 -g1,16508:12321400,15467137 -g1,16508:12637546,15467137 -h1,16508:12953692,15467137:0,0,0 -k1,16508:32583028,15467137:19629336 -g1,16508:32583028,15467137 -) -(1,16508:6630773,16133315:25952256,404226,9436 -h1,16508:6630773,16133315:0,0,0 -g1,16508:7579210,16133315 -g1,16508:8211502,16133315 -g1,16508:8527648,16133315 -g1,16508:8843794,16133315 -g1,16508:9159940,16133315 -g1,16508:9476086,16133315 -g1,16508:10108378,16133315 -g1,16508:10740670,16133315 -g1,16508:11056816,16133315 -g1,16508:11372962,16133315 -g1,16508:11689108,16133315 -g1,16508:12005254,16133315 -g1,16508:12321400,16133315 -g1,16508:12637546,16133315 -h1,16508:12953692,16133315:0,0,0 -k1,16508:32583028,16133315:19629336 -g1,16508:32583028,16133315 -) -(1,16508:6630773,16799493:25952256,404226,6290 -h1,16508:6630773,16799493:0,0,0 -g1,16508:7579210,16799493 -g1,16508:8211502,16799493 -g1,16508:8527648,16799493 -g1,16508:8843794,16799493 -g1,16508:9159940,16799493 -g1,16508:9476086,16799493 -g1,16508:10108378,16799493 -g1,16508:10740670,16799493 -g1,16508:11056816,16799493 -g1,16508:11372962,16799493 -g1,16508:11689108,16799493 -g1,16508:12005254,16799493 -g1,16508:12321400,16799493 -g1,16508:12637546,16799493 -h1,16508:12953692,16799493:0,0,0 -k1,16508:32583028,16799493:19629336 -g1,16508:32583028,16799493 -) -(1,16508:6630773,17465671:25952256,379060,9436 -h1,16508:6630773,17465671:0,0,0 -g1,16508:7579210,17465671 -g1,16508:8211502,17465671 -g1,16508:8527648,17465671 -g1,16508:8843794,17465671 -g1,16508:9159940,17465671 -g1,16508:9476086,17465671 -g1,16508:10108378,17465671 -g1,16508:10740670,17465671 -g1,16508:11056816,17465671 -g1,16508:11372962,17465671 -g1,16508:11689108,17465671 -g1,16508:12005254,17465671 -g1,16508:12321400,17465671 -g1,16508:12637546,17465671 -k1,16508:12637546,17465671:0 -h1,16508:13902129,17465671:0,0,0 -k1,16508:32583029,17465671:18680900 -g1,16508:32583029,17465671 -) -(1,16508:6630773,18131849:25952256,404226,9436 -h1,16508:6630773,18131849:0,0,0 -g1,16508:7579210,18131849 -g1,16508:8211502,18131849 -g1,16508:8527648,18131849 -g1,16508:8843794,18131849 -g1,16508:9159940,18131849 -g1,16508:9476086,18131849 -g1,16508:10108378,18131849 -g1,16508:11689107,18131849 -g1,16508:12005253,18131849 -g1,16508:12321399,18131849 -g1,16508:12637545,18131849 -h1,16508:12953691,18131849:0,0,0 -k1,16508:32583029,18131849:19629338 -g1,16508:32583029,18131849 -) -] -) -g1,16509:32583029,18141285 -g1,16509:6630773,18141285 -g1,16509:6630773,18141285 -g1,16509:32583029,18141285 -g1,16509:32583029,18141285 -) -h1,16509:6630773,18337893:0,0,0 -v1,16513:6630773,19633215:0,393216,0 -(1,16530:6630773,27173701:25952256,7933702,196608 -g1,16530:6630773,27173701 -g1,16530:6630773,27173701 -g1,16530:6434165,27173701 -(1,16530:6434165,27173701:0,7933702,196608 -r1,16576:32779637,27173701:26345472,8130310,196608 -k1,16530:6434165,27173701:-26345472 -) -(1,16530:6434165,27173701:26345472,7933702,196608 -[1,16530:6630773,27173701:25952256,7737094,0 -(1,16515:6630773,19847125:25952256,410518,107478 -(1,16514:6630773,19847125:0,0,0 -g1,16514:6630773,19847125 -g1,16514:6630773,19847125 -g1,16514:6303093,19847125 -(1,16514:6303093,19847125:0,0,0 -) -g1,16514:6630773,19847125 -) -k1,16515:6630773,19847125:0 -g1,16515:10424522,19847125 -g1,16515:11056814,19847125 -g1,16515:14534417,19847125 -g1,16515:15166709,19847125 -g1,16515:15799001,19847125 -h1,16515:18644312,19847125:0,0,0 -k1,16515:32583029,19847125:13938717 -g1,16515:32583029,19847125 -) -(1,16519:6630773,21168663:25952256,410518,107478 -g1,16519:7579210,21168663 -g1,16519:10108376,21168663 -g1,16519:11689105,21168663 -g1,16519:12953688,21168663 -g1,16519:13585980,21168663 -k1,16519:32583029,21168663:14887155 -g1,16519:32583029,21168663 -) -(1,16529:6630773,21834841:25952256,404226,9436 -(1,16519:6630773,21834841:0,0,0 -g1,16519:6630773,21834841 -g1,16519:6630773,21834841 -g1,16519:6303093,21834841 -(1,16519:6303093,21834841:0,0,0 -) -g1,16519:6630773,21834841 -) -g1,16529:7579210,21834841 -g1,16529:8211502,21834841 -g1,16529:8843794,21834841 -g1,16529:11372960,21834841 -g1,16529:12005252,21834841 -g1,16529:12637544,21834841 -h1,16529:12953690,21834841:0,0,0 -k1,16529:32583030,21834841:19629340 -g1,16529:32583030,21834841 -) -(1,16529:6630773,22501019:25952256,404226,6290 -h1,16529:6630773,22501019:0,0,0 -g1,16529:7579210,22501019 -g1,16529:7895356,22501019 -g1,16529:8211502,22501019 -g1,16529:8527648,22501019 -g1,16529:8843794,22501019 -g1,16529:10108377,22501019 -g1,16529:12637543,22501019 -h1,16529:14850563,22501019:0,0,0 -k1,16529:32583029,22501019:17732466 -g1,16529:32583029,22501019 -) -(1,16529:6630773,23167197:25952256,404226,6290 -h1,16529:6630773,23167197:0,0,0 -g1,16529:7579210,23167197 -g1,16529:7895356,23167197 -g1,16529:8211502,23167197 -g1,16529:10108377,23167197 -g1,16529:12005252,23167197 -g1,16529:12321398,23167197 -g1,16529:12637544,23167197 -k1,16529:12637544,23167197:0 -h1,16529:14218273,23167197:0,0,0 -k1,16529:32583029,23167197:18364756 -g1,16529:32583029,23167197 -) -(1,16529:6630773,23833375:25952256,404226,6290 -h1,16529:6630773,23833375:0,0,0 -g1,16529:7579210,23833375 -g1,16529:8211502,23833375 -g1,16529:8527648,23833375 -g1,16529:8843794,23833375 -g1,16529:9159940,23833375 -g1,16529:9476086,23833375 -g1,16529:10108378,23833375 -g1,16529:10740670,23833375 -g1,16529:11056816,23833375 -g1,16529:11372962,23833375 -g1,16529:11689108,23833375 -g1,16529:12005254,23833375 -g1,16529:12321400,23833375 -g1,16529:12637546,23833375 -h1,16529:12953692,23833375:0,0,0 -k1,16529:32583028,23833375:19629336 -g1,16529:32583028,23833375 -) -(1,16529:6630773,24499553:25952256,404226,6290 -h1,16529:6630773,24499553:0,0,0 -g1,16529:7579210,24499553 -g1,16529:8211502,24499553 -g1,16529:8527648,24499553 -g1,16529:8843794,24499553 -g1,16529:9159940,24499553 -g1,16529:9476086,24499553 -g1,16529:10108378,24499553 -g1,16529:10740670,24499553 -g1,16529:11056816,24499553 -g1,16529:11372962,24499553 -g1,16529:11689108,24499553 -g1,16529:12005254,24499553 -g1,16529:12321400,24499553 -g1,16529:12637546,24499553 -h1,16529:12953692,24499553:0,0,0 -k1,16529:32583028,24499553:19629336 -g1,16529:32583028,24499553 -) -(1,16529:6630773,25165731:25952256,404226,9436 -h1,16529:6630773,25165731:0,0,0 -g1,16529:7579210,25165731 -g1,16529:8211502,25165731 -g1,16529:8527648,25165731 -g1,16529:8843794,25165731 -g1,16529:9159940,25165731 -g1,16529:9476086,25165731 -g1,16529:10108378,25165731 -g1,16529:10740670,25165731 -g1,16529:11056816,25165731 -g1,16529:11372962,25165731 -g1,16529:11689108,25165731 -g1,16529:12005254,25165731 -g1,16529:12321400,25165731 -g1,16529:12637546,25165731 -h1,16529:12953692,25165731:0,0,0 -k1,16529:32583028,25165731:19629336 -g1,16529:32583028,25165731 -) -(1,16529:6630773,25831909:25952256,404226,6290 -h1,16529:6630773,25831909:0,0,0 -g1,16529:7579210,25831909 -g1,16529:8211502,25831909 -g1,16529:8527648,25831909 -g1,16529:8843794,25831909 -g1,16529:9159940,25831909 -g1,16529:9476086,25831909 -g1,16529:10108378,25831909 -g1,16529:10740670,25831909 -g1,16529:11056816,25831909 -g1,16529:11372962,25831909 -g1,16529:11689108,25831909 -g1,16529:12005254,25831909 -g1,16529:12321400,25831909 -g1,16529:12637546,25831909 -h1,16529:12953692,25831909:0,0,0 -k1,16529:32583028,25831909:19629336 -g1,16529:32583028,25831909 -) -(1,16529:6630773,26498087:25952256,404226,9436 -h1,16529:6630773,26498087:0,0,0 -g1,16529:7579210,26498087 -g1,16529:8211502,26498087 -g1,16529:8527648,26498087 -g1,16529:8843794,26498087 -g1,16529:9159940,26498087 -g1,16529:9476086,26498087 -g1,16529:10108378,26498087 -g1,16529:10740670,26498087 -g1,16529:11056816,26498087 -g1,16529:11372962,26498087 -g1,16529:11689108,26498087 -g1,16529:12005254,26498087 -g1,16529:12321400,26498087 -g1,16529:12637546,26498087 -k1,16529:12637546,26498087:0 -h1,16529:13902129,26498087:0,0,0 -k1,16529:32583029,26498087:18680900 -g1,16529:32583029,26498087 -) -(1,16529:6630773,27164265:25952256,388497,9436 -h1,16529:6630773,27164265:0,0,0 -g1,16529:7579210,27164265 -g1,16529:8211502,27164265 -g1,16529:8527648,27164265 -g1,16529:8843794,27164265 -g1,16529:9159940,27164265 -g1,16529:9476086,27164265 -g1,16529:10108378,27164265 -g1,16529:11689107,27164265 -g1,16529:12005253,27164265 -g1,16529:12321399,27164265 -g1,16529:12637545,27164265 -h1,16529:12953691,27164265:0,0,0 -k1,16529:32583029,27164265:19629338 -g1,16529:32583029,27164265 -) -] -) -g1,16530:32583029,27173701 -g1,16530:6630773,27173701 -g1,16530:6630773,27173701 -g1,16530:32583029,27173701 -g1,16530:32583029,27173701 -) -h1,16530:6630773,27370309:0,0,0 -(1,16534:6630773,28526369:25952256,513147,134348 -h1,16533:6630773,28526369:983040,0,0 -k1,16533:9125448,28526369:277592 -k1,16533:10594484,28526369:277591 -k1,16533:12407585,28526369:277592 -k1,16533:14252798,28526369:277592 -k1,16533:16394889,28526369:277592 -k1,16533:18206678,28526369:277591 -k1,16533:19550541,28526369:277592 -k1,16533:22577368,28526369:277592 -k1,16533:24422580,28526369:277591 -k1,16533:26075773,28526369:277592 -k1,16533:27510075,28526369:277592 -k1,16533:28446959,28526369:277592 -k1,16533:29743635,28526369:277591 -k1,16533:31193666,28526369:277592 -k1,16533:32583029,28526369:0 -) -(1,16534:6630773,29367857:25952256,505283,126483 -g1,16533:9442922,29367857 -(1,16533:9442922,29367857:0,414482,115847 -r1,16576:9801188,29367857:358266,530329,115847 -k1,16533:9442922,29367857:-358266 -) -(1,16533:9442922,29367857:358266,414482,115847 -k1,16533:9442922,29367857:3277 -h1,16533:9797911,29367857:0,411205,112570 -) -g1,16533:10000417,29367857 -g1,16533:11391091,29367857 -(1,16533:11391091,29367857:0,414482,115847 -r1,16576:11749357,29367857:358266,530329,115847 -k1,16533:11391091,29367857:-358266 -) -(1,16533:11391091,29367857:358266,414482,115847 -k1,16533:11391091,29367857:3277 -h1,16533:11746080,29367857:0,411205,112570 -) -g1,16533:12122256,29367857 -k1,16534:32583029,29367857:16490602 -g1,16534:32583029,29367857 -) -v1,16536:6630773,30348607:0,393216,0 -(1,16552:6630773,37222915:25952256,7267524,196608 -g1,16552:6630773,37222915 -g1,16552:6630773,37222915 -g1,16552:6434165,37222915 -(1,16552:6434165,37222915:0,7267524,196608 -r1,16576:32779637,37222915:26345472,7464132,196608 -k1,16552:6434165,37222915:-26345472 -) -(1,16552:6434165,37222915:26345472,7267524,196608 -[1,16552:6630773,37222915:25952256,7070916,0 -(1,16538:6630773,30562517:25952256,410518,107478 -(1,16537:6630773,30562517:0,0,0 -g1,16537:6630773,30562517 -g1,16537:6630773,30562517 -g1,16537:6303093,30562517 -(1,16537:6303093,30562517:0,0,0 -) -g1,16537:6630773,30562517 -) -k1,16538:6630773,30562517:0 -g1,16538:10424522,30562517 -g1,16538:11056814,30562517 -g1,16538:14218271,30562517 -g1,16538:14850563,30562517 -g1,16538:15482855,30562517 -h1,16538:18644312,30562517:0,0,0 -k1,16538:32583029,30562517:13938717 -g1,16538:32583029,30562517 -) -(1,16542:6630773,31884055:25952256,410518,107478 -g1,16542:7579210,31884055 -g1,16542:10108376,31884055 -g1,16542:11689105,31884055 -g1,16542:12953688,31884055 -g1,16542:13585980,31884055 -k1,16542:32583029,31884055:14887155 -g1,16542:32583029,31884055 -) -(1,16551:6630773,32550233:25952256,404226,9436 -(1,16542:6630773,32550233:0,0,0 -g1,16542:6630773,32550233 -g1,16542:6630773,32550233 -g1,16542:6303093,32550233 -(1,16542:6303093,32550233:0,0,0 -) -g1,16542:6630773,32550233 -) -g1,16551:7579210,32550233 -g1,16551:8211502,32550233 -g1,16551:8843794,32550233 -g1,16551:11372960,32550233 -g1,16551:12005252,32550233 -g1,16551:12637544,32550233 -h1,16551:12953690,32550233:0,0,0 -k1,16551:32583030,32550233:19629340 -g1,16551:32583030,32550233 -) -(1,16551:6630773,33216411:25952256,404226,6290 -h1,16551:6630773,33216411:0,0,0 -g1,16551:7579210,33216411 -g1,16551:7895356,33216411 -g1,16551:8211502,33216411 -g1,16551:8527648,33216411 -g1,16551:8843794,33216411 -g1,16551:10108377,33216411 -g1,16551:12637543,33216411 -h1,16551:14850563,33216411:0,0,0 -k1,16551:32583029,33216411:17732466 -g1,16551:32583029,33216411 -) -(1,16551:6630773,33882589:25952256,404226,6290 -h1,16551:6630773,33882589:0,0,0 -g1,16551:7579210,33882589 -g1,16551:7895356,33882589 -g1,16551:8211502,33882589 -g1,16551:10108377,33882589 -g1,16551:12005252,33882589 -g1,16551:12321398,33882589 -g1,16551:12637544,33882589 -k1,16551:12637544,33882589:0 -h1,16551:14218273,33882589:0,0,0 -k1,16551:32583029,33882589:18364756 -g1,16551:32583029,33882589 -) -(1,16551:6630773,34548767:25952256,404226,6290 -h1,16551:6630773,34548767:0,0,0 -g1,16551:7579210,34548767 -g1,16551:8211502,34548767 -g1,16551:8527648,34548767 -g1,16551:8843794,34548767 -g1,16551:9159940,34548767 -g1,16551:9476086,34548767 -g1,16551:10108378,34548767 -g1,16551:10740670,34548767 -g1,16551:11056816,34548767 -g1,16551:11372962,34548767 -g1,16551:11689108,34548767 -g1,16551:12005254,34548767 -g1,16551:12321400,34548767 -g1,16551:12637546,34548767 -h1,16551:12953692,34548767:0,0,0 -k1,16551:32583028,34548767:19629336 -g1,16551:32583028,34548767 -) -(1,16551:6630773,35214945:25952256,404226,6290 -h1,16551:6630773,35214945:0,0,0 -g1,16551:7579210,35214945 -g1,16551:8211502,35214945 -g1,16551:8527648,35214945 -g1,16551:8843794,35214945 -g1,16551:9159940,35214945 -g1,16551:9476086,35214945 -g1,16551:10108378,35214945 -g1,16551:10740670,35214945 -g1,16551:11056816,35214945 -g1,16551:11372962,35214945 -g1,16551:11689108,35214945 -g1,16551:12005254,35214945 -g1,16551:12321400,35214945 -g1,16551:12637546,35214945 -h1,16551:12953692,35214945:0,0,0 -k1,16551:32583028,35214945:19629336 -g1,16551:32583028,35214945 -) -(1,16551:6630773,35881123:25952256,404226,9436 -h1,16551:6630773,35881123:0,0,0 -g1,16551:7579210,35881123 -g1,16551:8211502,35881123 -g1,16551:8527648,35881123 -g1,16551:8843794,35881123 -g1,16551:9159940,35881123 -g1,16551:9476086,35881123 -g1,16551:10108378,35881123 -g1,16551:10740670,35881123 -g1,16551:11056816,35881123 -g1,16551:11372962,35881123 -g1,16551:11689108,35881123 -g1,16551:12005254,35881123 -g1,16551:12321400,35881123 -g1,16551:12637546,35881123 -h1,16551:12953692,35881123:0,0,0 -k1,16551:32583028,35881123:19629336 -g1,16551:32583028,35881123 -) -(1,16551:6630773,36547301:25952256,404226,6290 -h1,16551:6630773,36547301:0,0,0 -g1,16551:7579210,36547301 -g1,16551:8211502,36547301 -g1,16551:8527648,36547301 -g1,16551:8843794,36547301 -g1,16551:9159940,36547301 -g1,16551:9476086,36547301 -g1,16551:10108378,36547301 -g1,16551:10740670,36547301 -g1,16551:11056816,36547301 -g1,16551:11372962,36547301 -g1,16551:11689108,36547301 -g1,16551:12005254,36547301 -g1,16551:12321400,36547301 -g1,16551:12637546,36547301 -h1,16551:12953692,36547301:0,0,0 -k1,16551:32583028,36547301:19629336 -g1,16551:32583028,36547301 -) -(1,16551:6630773,37213479:25952256,379060,9436 -h1,16551:6630773,37213479:0,0,0 -g1,16551:7579210,37213479 -g1,16551:8211502,37213479 -g1,16551:8527648,37213479 -g1,16551:8843794,37213479 -g1,16551:9159940,37213479 -g1,16551:9476086,37213479 -g1,16551:10108378,37213479 -g1,16551:10740670,37213479 -g1,16551:11056816,37213479 -g1,16551:11372962,37213479 -g1,16551:11689108,37213479 -g1,16551:12005254,37213479 -g1,16551:12321400,37213479 -g1,16551:12637546,37213479 -k1,16551:12637546,37213479:0 -h1,16551:13902129,37213479:0,0,0 -k1,16551:32583029,37213479:18680900 -g1,16551:32583029,37213479 -) -] -) -g1,16552:32583029,37222915 -g1,16552:6630773,37222915 -g1,16552:6630773,37222915 -g1,16552:32583029,37222915 -g1,16552:32583029,37222915 -) -h1,16552:6630773,37419523:0,0,0 -v1,16556:6630773,38714845:0,393216,0 -(1,16572:6630773,45510161:25952256,7188532,196608 -g1,16572:6630773,45510161 -g1,16572:6630773,45510161 -g1,16572:6434165,45510161 -(1,16572:6434165,45510161:0,7188532,196608 -r1,16576:32779637,45510161:26345472,7385140,196608 -k1,16572:6434165,45510161:-26345472 -) -(1,16572:6434165,45510161:26345472,7188532,196608 -[1,16572:6630773,45510161:25952256,6991924,0 -(1,16558:6630773,38928755:25952256,410518,107478 -(1,16557:6630773,38928755:0,0,0 -g1,16557:6630773,38928755 -g1,16557:6630773,38928755 -g1,16557:6303093,38928755 -(1,16557:6303093,38928755:0,0,0 -) -g1,16557:6630773,38928755 -) -k1,16558:6630773,38928755:0 -g1,16558:10424522,38928755 -g1,16558:11056814,38928755 -g1,16558:14534417,38928755 -g1,16558:15166709,38928755 -g1,16558:15799001,38928755 -h1,16558:18644312,38928755:0,0,0 -k1,16558:32583029,38928755:13938717 -g1,16558:32583029,38928755 -) -(1,16562:6630773,40171301:25952256,410518,107478 -g1,16562:7579210,40171301 -g1,16562:10108376,40171301 -g1,16562:11689105,40171301 -g1,16562:12953688,40171301 -g1,16562:13585980,40171301 -k1,16562:32583029,40171301:14887155 -g1,16562:32583029,40171301 -) -(1,16571:6630773,40837479:25952256,404226,9436 -(1,16562:6630773,40837479:0,0,0 -g1,16562:6630773,40837479 -g1,16562:6630773,40837479 -g1,16562:6303093,40837479 -(1,16562:6303093,40837479:0,0,0 -) -g1,16562:6630773,40837479 -) -g1,16571:7579210,40837479 -g1,16571:8211502,40837479 -g1,16571:8843794,40837479 -g1,16571:11372960,40837479 -g1,16571:12005252,40837479 -g1,16571:12637544,40837479 -h1,16571:12953690,40837479:0,0,0 -k1,16571:32583030,40837479:19629340 -g1,16571:32583030,40837479 -) -(1,16571:6630773,41503657:25952256,404226,6290 -h1,16571:6630773,41503657:0,0,0 -g1,16571:7579210,41503657 -g1,16571:7895356,41503657 -g1,16571:8211502,41503657 -g1,16571:8527648,41503657 -g1,16571:8843794,41503657 -g1,16571:10108377,41503657 -g1,16571:12637543,41503657 -h1,16571:14850563,41503657:0,0,0 -k1,16571:32583029,41503657:17732466 -g1,16571:32583029,41503657 -) -(1,16571:6630773,42169835:25952256,404226,6290 -h1,16571:6630773,42169835:0,0,0 -g1,16571:7579210,42169835 -g1,16571:7895356,42169835 -g1,16571:8211502,42169835 -g1,16571:10108377,42169835 -g1,16571:12005252,42169835 -g1,16571:12321398,42169835 -g1,16571:12637544,42169835 -k1,16571:12637544,42169835:0 -h1,16571:14218273,42169835:0,0,0 -k1,16571:32583029,42169835:18364756 -g1,16571:32583029,42169835 -) -(1,16571:6630773,42836013:25952256,404226,6290 -h1,16571:6630773,42836013:0,0,0 -g1,16571:7579210,42836013 -g1,16571:8211502,42836013 -g1,16571:8527648,42836013 -g1,16571:8843794,42836013 -g1,16571:9159940,42836013 -g1,16571:9476086,42836013 -g1,16571:10108378,42836013 -g1,16571:10740670,42836013 -g1,16571:11056816,42836013 -g1,16571:11372962,42836013 -g1,16571:11689108,42836013 -g1,16571:12005254,42836013 -g1,16571:12321400,42836013 -g1,16571:12637546,42836013 -h1,16571:12953692,42836013:0,0,0 -k1,16571:32583028,42836013:19629336 -g1,16571:32583028,42836013 -) -(1,16571:6630773,43502191:25952256,404226,6290 -h1,16571:6630773,43502191:0,0,0 -g1,16571:7579210,43502191 -g1,16571:8211502,43502191 -g1,16571:8527648,43502191 -g1,16571:8843794,43502191 -g1,16571:9159940,43502191 -g1,16571:9476086,43502191 -g1,16571:10108378,43502191 -g1,16571:10740670,43502191 -g1,16571:11056816,43502191 -g1,16571:11372962,43502191 -g1,16571:11689108,43502191 -g1,16571:12005254,43502191 -g1,16571:12321400,43502191 -g1,16571:12637546,43502191 -h1,16571:12953692,43502191:0,0,0 -k1,16571:32583028,43502191:19629336 -g1,16571:32583028,43502191 -) -(1,16571:6630773,44168369:25952256,404226,9436 -h1,16571:6630773,44168369:0,0,0 -g1,16571:7579210,44168369 -g1,16571:8211502,44168369 -g1,16571:8527648,44168369 -g1,16571:8843794,44168369 -g1,16571:9159940,44168369 -g1,16571:9476086,44168369 -g1,16571:10108378,44168369 -g1,16571:10740670,44168369 -g1,16571:11056816,44168369 -g1,16571:11372962,44168369 -g1,16571:11689108,44168369 -g1,16571:12005254,44168369 -g1,16571:12321400,44168369 -g1,16571:12637546,44168369 -h1,16571:12953692,44168369:0,0,0 -k1,16571:32583028,44168369:19629336 -g1,16571:32583028,44168369 -) -(1,16571:6630773,44834547:25952256,404226,6290 -h1,16571:6630773,44834547:0,0,0 -g1,16571:7579210,44834547 -g1,16571:8211502,44834547 -g1,16571:8527648,44834547 -g1,16571:8843794,44834547 -g1,16571:9159940,44834547 -g1,16571:9476086,44834547 -g1,16571:10108378,44834547 -g1,16571:10740670,44834547 -g1,16571:11056816,44834547 -g1,16571:11372962,44834547 -g1,16571:11689108,44834547 -g1,16571:12005254,44834547 -g1,16571:12321400,44834547 -g1,16571:12637546,44834547 -h1,16571:12953692,44834547:0,0,0 -k1,16571:32583028,44834547:19629336 -g1,16571:32583028,44834547 -) -(1,16571:6630773,45500725:25952256,404226,9436 -h1,16571:6630773,45500725:0,0,0 -g1,16571:7579210,45500725 -g1,16571:8211502,45500725 -g1,16571:8527648,45500725 -g1,16571:8843794,45500725 -g1,16571:9159940,45500725 -g1,16571:9476086,45500725 -g1,16571:10108378,45500725 -g1,16571:10740670,45500725 -g1,16571:11056816,45500725 -g1,16571:11372962,45500725 -g1,16571:11689108,45500725 -g1,16571:12005254,45500725 -g1,16571:12321400,45500725 -g1,16571:12637546,45500725 -k1,16571:12637546,45500725:0 -h1,16571:13902129,45500725:0,0,0 -k1,16571:32583029,45500725:18680900 -g1,16571:32583029,45500725 -) -] -) -g1,16572:32583029,45510161 -g1,16572:6630773,45510161 -g1,16572:6630773,45510161 -g1,16572:32583029,45510161 -g1,16572:32583029,45510161 -) -h1,16572:6630773,45706769:0,0,0 -] -(1,16576:32583029,45706769:0,0,0 -g1,16576:32583029,45706769 -) -) -] -(1,16576:6630773,47279633:25952256,0,0 -h1,16576:6630773,47279633:25952256,0,0 -) -] -(1,16576:4262630,4025873:0,0,0 -[1,16576:-473656,4025873:0,0,0 -(1,16576:-473656,-710413:0,0,0 -(1,16576:-473656,-710413:0,0,0 -g1,16576:-473656,-710413 -) -g1,16576:-473656,-710413 -) -] -) -] -!31934 -}282 -Input:2431:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2432:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2433:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!36530 +}265 Input:2434:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2435:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2436:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2437:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2438:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!764 -{283 +Input:2439:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2440:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2441:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2442:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2443:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2444:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2445:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2446:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2447:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2448:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2449:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2450:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2451:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2452:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1798 +{266 [1,16675:4262630,47279633:28320399,43253760,0 (1,16675:4262630,4025873:0,0,0 [1,16675:-473656,4025873:0,0,0 @@ -283232,25 +279088,25 @@ g1,16675:-473656,-710413 ) [1,16675:6630773,47279633:25952256,43253760,0 [1,16675:6630773,4812305:25952256,786432,0 -(1,16675:6630773,4812305:25952256,505283,134348 -(1,16675:6630773,4812305:25952256,505283,134348 +(1,16675:6630773,4812305:25952256,505283,126483 +(1,16675:6630773,4812305:25952256,505283,126483 g1,16675:3078558,4812305 [1,16675:3078558,4812305:0,0,0 (1,16675:3078558,2439708:0,1703936,0 k1,16675:1358238,2439708:-1720320 -(1,15243:1358238,2439708:1720320,1703936,0 -(1,15243:1358238,2439708:1179648,16384,0 +(1,15456:1358238,2439708:1720320,1703936,0 +(1,15456:1358238,2439708:1179648,16384,0 r1,16675:2537886,2439708:1179648,16384,0 ) -g1,15243:3062174,2439708 -(1,15243:3062174,2439708:16384,1703936,0 -[1,15243:3062174,2439708:25952256,1703936,0 -(1,15243:3062174,1915420:25952256,1179648,0 -(1,15243:3062174,1915420:16384,1179648,0 +g1,15456:3062174,2439708 +(1,15456:3062174,2439708:16384,1703936,0 +[1,15456:3062174,2439708:25952256,1703936,0 +(1,15456:3062174,1915420:25952256,1179648,0 +(1,15456:3062174,1915420:16384,1179648,0 r1,16675:3078558,1915420:16384,1179648,0 ) -k1,15243:29014430,1915420:25935872 -g1,15243:29014430,1915420 +k1,15456:29014430,1915420:25935872 +g1,15456:29014430,1915420 ) ] ) @@ -283261,20 +279117,20 @@ g1,15243:29014430,1915420 (1,16675:3078558,2439708:0,1703936,0 g1,16675:29030814,2439708 g1,16675:36135244,2439708 -(1,15243:36135244,2439708:1720320,1703936,0 -(1,15243:36135244,2439708:16384,1703936,0 -[1,15243:36135244,2439708:25952256,1703936,0 -(1,15243:36135244,1915420:25952256,1179648,0 -(1,15243:36135244,1915420:16384,1179648,0 +(1,15456:36135244,2439708:1720320,1703936,0 +(1,15456:36135244,2439708:16384,1703936,0 +[1,15456:36135244,2439708:25952256,1703936,0 +(1,15456:36135244,1915420:25952256,1179648,0 +(1,15456:36135244,1915420:16384,1179648,0 r1,16675:36151628,1915420:16384,1179648,0 ) -k1,15243:62087500,1915420:25935872 -g1,15243:62087500,1915420 +k1,15456:62087500,1915420:25935872 +g1,15456:62087500,1915420 ) ] ) -g1,15243:36675916,2439708 -(1,15243:36675916,2439708:1179648,16384,0 +g1,15456:36675916,2439708 +(1,15456:36675916,2439708:1179648,16384,0 r1,16675:37855564,2439708:1179648,16384,0 ) ) @@ -283284,19 +279140,19 @@ k1,16675:3078556,2439708:-34777008 [1,16675:3078558,4812305:0,0,0 (1,16675:3078558,49800853:0,16384,2228224 k1,16675:1358238,49800853:-1720320 -(1,15243:1358238,49800853:1720320,16384,2228224 -(1,15243:1358238,49800853:1179648,16384,0 +(1,15456:1358238,49800853:1720320,16384,2228224 +(1,15456:1358238,49800853:1179648,16384,0 r1,16675:2537886,49800853:1179648,16384,0 ) -g1,15243:3062174,49800853 -(1,15243:3062174,52029077:16384,1703936,0 -[1,15243:3062174,52029077:25952256,1703936,0 -(1,15243:3062174,51504789:25952256,1179648,0 -(1,15243:3062174,51504789:16384,1179648,0 +g1,15456:3062174,49800853 +(1,15456:3062174,52029077:16384,1703936,0 +[1,15456:3062174,52029077:25952256,1703936,0 +(1,15456:3062174,51504789:25952256,1179648,0 +(1,15456:3062174,51504789:16384,1179648,0 r1,16675:3078558,51504789:16384,1179648,0 ) -k1,15243:29014430,51504789:25935872 -g1,15243:29014430,51504789 +k1,15456:29014430,51504789:25935872 +g1,15456:29014430,51504789 ) ] ) @@ -283307,20 +279163,20 @@ g1,15243:29014430,51504789 (1,16675:3078558,49800853:0,16384,2228224 g1,16675:29030814,49800853 g1,16675:36135244,49800853 -(1,15243:36135244,49800853:1720320,16384,2228224 -(1,15243:36135244,52029077:16384,1703936,0 -[1,15243:36135244,52029077:25952256,1703936,0 -(1,15243:36135244,51504789:25952256,1179648,0 -(1,15243:36135244,51504789:16384,1179648,0 +(1,15456:36135244,49800853:1720320,16384,2228224 +(1,15456:36135244,52029077:16384,1703936,0 +[1,15456:36135244,52029077:25952256,1703936,0 +(1,15456:36135244,51504789:25952256,1179648,0 +(1,15456:36135244,51504789:16384,1179648,0 r1,16675:36151628,51504789:16384,1179648,0 ) -k1,15243:62087500,51504789:25935872 -g1,15243:62087500,51504789 +k1,15456:62087500,51504789:25935872 +g1,15456:62087500,51504789 ) ] ) -g1,15243:36675916,49800853 -(1,15243:36675916,49800853:1179648,16384,0 +g1,15456:36675916,49800853 +(1,15456:36675916,49800853:1179648,16384,0 r1,16675:37855564,49800853:1179648,16384,0 ) ) @@ -283328,10 +279184,12 @@ k1,16675:3078556,49800853:-34777008 ) ] g1,16675:6630773,4812305 -k1,16675:23311652,4812305:15485502 -g1,16675:23960458,4812305 -g1,16675:27572802,4812305 -g1,16675:29306229,4812305 +g1,16675:6630773,4812305 +g1,16675:8364200,4812305 +g1,16675:12785258,4812305 +g1,16675:14347636,4812305 +g1,16675:16554232,4812305 +k1,16675:31387652,4812305:14833420 ) ) ] @@ -283341,890 +279199,1069 @@ g1,16675:29306229,4812305 g1,16675:6630773,45706769 ) [1,16675:6630773,45706769:25952256,40108032,0 -v1,16576:6630773,6254097:0,393216,0 -(1,16592:6630773,13128405:25952256,7267524,196608 -g1,16592:6630773,13128405 -g1,16592:6630773,13128405 -g1,16592:6434165,13128405 -(1,16592:6434165,13128405:0,7267524,196608 -r1,16675:32779637,13128405:26345472,7464132,196608 -k1,16592:6434165,13128405:-26345472 -) -(1,16592:6434165,13128405:26345472,7267524,196608 -[1,16592:6630773,13128405:25952256,7070916,0 -(1,16578:6630773,6468007:25952256,410518,107478 -(1,16577:6630773,6468007:0,0,0 -g1,16577:6630773,6468007 -g1,16577:6630773,6468007 -g1,16577:6303093,6468007 -(1,16577:6303093,6468007:0,0,0 -) -g1,16577:6630773,6468007 -) -k1,16578:6630773,6468007:0 -g1,16578:10740668,6468007 -g1,16578:11372960,6468007 -g1,16578:14534417,6468007 -g1,16578:15166709,6468007 -g1,16578:15799001,6468007 -h1,16578:18960458,6468007:0,0,0 -k1,16578:32583029,6468007:13622571 -g1,16578:32583029,6468007 -) -(1,16582:6630773,7789545:25952256,410518,107478 -g1,16582:7579210,7789545 -g1,16582:10108376,7789545 -g1,16582:11689105,7789545 -g1,16582:12953688,7789545 -g1,16582:13585980,7789545 -k1,16582:32583029,7789545:14887155 -g1,16582:32583029,7789545 -) -(1,16591:6630773,8455723:25952256,404226,9436 -(1,16582:6630773,8455723:0,0,0 -g1,16582:6630773,8455723 -g1,16582:6630773,8455723 -g1,16582:6303093,8455723 -(1,16582:6303093,8455723:0,0,0 -) -g1,16582:6630773,8455723 -) -g1,16591:7579210,8455723 -g1,16591:8211502,8455723 -g1,16591:8843794,8455723 -g1,16591:11372960,8455723 -g1,16591:12005252,8455723 -g1,16591:12637544,8455723 -h1,16591:12953690,8455723:0,0,0 -k1,16591:32583030,8455723:19629340 -g1,16591:32583030,8455723 -) -(1,16591:6630773,9121901:25952256,404226,6290 -h1,16591:6630773,9121901:0,0,0 -g1,16591:7579210,9121901 -g1,16591:7895356,9121901 -g1,16591:8211502,9121901 -g1,16591:8527648,9121901 -g1,16591:8843794,9121901 -g1,16591:10108377,9121901 -g1,16591:12637543,9121901 -h1,16591:14850563,9121901:0,0,0 -k1,16591:32583029,9121901:17732466 -g1,16591:32583029,9121901 -) -(1,16591:6630773,9788079:25952256,404226,6290 -h1,16591:6630773,9788079:0,0,0 -g1,16591:7579210,9788079 -g1,16591:7895356,9788079 -g1,16591:8211502,9788079 -g1,16591:10108377,9788079 -g1,16591:12005252,9788079 -g1,16591:12321398,9788079 -g1,16591:12637544,9788079 -k1,16591:12637544,9788079:0 -h1,16591:14218273,9788079:0,0,0 -k1,16591:32583029,9788079:18364756 -g1,16591:32583029,9788079 -) -(1,16591:6630773,10454257:25952256,404226,6290 -h1,16591:6630773,10454257:0,0,0 -g1,16591:7579210,10454257 -g1,16591:8211502,10454257 -g1,16591:8527648,10454257 -g1,16591:8843794,10454257 -g1,16591:9159940,10454257 -g1,16591:9476086,10454257 -g1,16591:10108378,10454257 -g1,16591:10740670,10454257 -g1,16591:11056816,10454257 -g1,16591:11372962,10454257 -g1,16591:11689108,10454257 -g1,16591:12005254,10454257 -g1,16591:12321400,10454257 -g1,16591:12637546,10454257 -h1,16591:12953692,10454257:0,0,0 -k1,16591:32583028,10454257:19629336 -g1,16591:32583028,10454257 -) -(1,16591:6630773,11120435:25952256,404226,6290 -h1,16591:6630773,11120435:0,0,0 -g1,16591:7579210,11120435 -g1,16591:8211502,11120435 -g1,16591:8527648,11120435 -g1,16591:8843794,11120435 -g1,16591:9159940,11120435 -g1,16591:9476086,11120435 -g1,16591:10108378,11120435 -g1,16591:10740670,11120435 -g1,16591:11056816,11120435 -g1,16591:11372962,11120435 -g1,16591:11689108,11120435 -g1,16591:12005254,11120435 -g1,16591:12321400,11120435 -g1,16591:12637546,11120435 -h1,16591:12953692,11120435:0,0,0 -k1,16591:32583028,11120435:19629336 -g1,16591:32583028,11120435 -) -(1,16591:6630773,11786613:25952256,404226,9436 -h1,16591:6630773,11786613:0,0,0 -g1,16591:7579210,11786613 -g1,16591:8211502,11786613 -g1,16591:8527648,11786613 -g1,16591:8843794,11786613 -g1,16591:9159940,11786613 -g1,16591:9476086,11786613 -g1,16591:10108378,11786613 -g1,16591:10740670,11786613 -g1,16591:11056816,11786613 -g1,16591:11372962,11786613 -g1,16591:11689108,11786613 -g1,16591:12005254,11786613 -g1,16591:12321400,11786613 -g1,16591:12637546,11786613 -h1,16591:12953692,11786613:0,0,0 -k1,16591:32583028,11786613:19629336 -g1,16591:32583028,11786613 -) -(1,16591:6630773,12452791:25952256,404226,6290 -h1,16591:6630773,12452791:0,0,0 -g1,16591:7579210,12452791 -g1,16591:8211502,12452791 -g1,16591:8527648,12452791 -g1,16591:8843794,12452791 -g1,16591:9159940,12452791 -g1,16591:9476086,12452791 -g1,16591:10108378,12452791 -g1,16591:10740670,12452791 -g1,16591:11056816,12452791 -g1,16591:11372962,12452791 -g1,16591:11689108,12452791 -g1,16591:12005254,12452791 -g1,16591:12321400,12452791 -g1,16591:12637546,12452791 -h1,16591:12953692,12452791:0,0,0 -k1,16591:32583028,12452791:19629336 -g1,16591:32583028,12452791 -) -(1,16591:6630773,13118969:25952256,404226,9436 -h1,16591:6630773,13118969:0,0,0 -g1,16591:7579210,13118969 -g1,16591:8211502,13118969 -g1,16591:8527648,13118969 -g1,16591:8843794,13118969 -g1,16591:9159940,13118969 -g1,16591:9476086,13118969 -g1,16591:10108378,13118969 -g1,16591:11689107,13118969 -g1,16591:12005253,13118969 -g1,16591:12321399,13118969 -g1,16591:12637545,13118969 -h1,16591:12953691,13118969:0,0,0 -k1,16591:32583029,13118969:19629338 -g1,16591:32583029,13118969 -) -] -) -g1,16592:32583029,13128405 -g1,16592:6630773,13128405 -g1,16592:6630773,13128405 -g1,16592:32583029,13128405 -g1,16592:32583029,13128405 -) -h1,16592:6630773,13325013:0,0,0 -v1,16596:6630773,15039767:0,393216,0 -(1,16612:6630773,21914075:25952256,7267524,196608 -g1,16612:6630773,21914075 -g1,16612:6630773,21914075 -g1,16612:6434165,21914075 -(1,16612:6434165,21914075:0,7267524,196608 -r1,16675:32779637,21914075:26345472,7464132,196608 -k1,16612:6434165,21914075:-26345472 -) -(1,16612:6434165,21914075:26345472,7267524,196608 -[1,16612:6630773,21914075:25952256,7070916,0 -(1,16598:6630773,15253677:25952256,410518,107478 -(1,16597:6630773,15253677:0,0,0 -g1,16597:6630773,15253677 -g1,16597:6630773,15253677 -g1,16597:6303093,15253677 -(1,16597:6303093,15253677:0,0,0 -) -g1,16597:6630773,15253677 -) -k1,16598:6630773,15253677:0 -g1,16598:10740668,15253677 -g1,16598:11372960,15253677 -g1,16598:14850563,15253677 -g1,16598:15482855,15253677 -g1,16598:16115147,15253677 -h1,16598:18960458,15253677:0,0,0 -k1,16598:32583029,15253677:13622571 -g1,16598:32583029,15253677 -) -(1,16602:6630773,16575215:25952256,410518,107478 -g1,16602:7579210,16575215 -g1,16602:10108376,16575215 -g1,16602:11689105,16575215 -g1,16602:12953688,16575215 -g1,16602:13585980,16575215 -k1,16602:32583029,16575215:14887155 -g1,16602:32583029,16575215 -) -(1,16611:6630773,17241393:25952256,404226,9436 -(1,16602:6630773,17241393:0,0,0 -g1,16602:6630773,17241393 -g1,16602:6630773,17241393 -g1,16602:6303093,17241393 -(1,16602:6303093,17241393:0,0,0 -) -g1,16602:6630773,17241393 -) -g1,16611:7579210,17241393 -g1,16611:8211502,17241393 -g1,16611:8843794,17241393 -g1,16611:11372960,17241393 -g1,16611:12005252,17241393 -g1,16611:12637544,17241393 -h1,16611:12953690,17241393:0,0,0 -k1,16611:32583030,17241393:19629340 -g1,16611:32583030,17241393 -) -(1,16611:6630773,17907571:25952256,404226,6290 -h1,16611:6630773,17907571:0,0,0 -g1,16611:7579210,17907571 -g1,16611:7895356,17907571 -g1,16611:8211502,17907571 -g1,16611:8527648,17907571 -g1,16611:8843794,17907571 -g1,16611:10108377,17907571 -g1,16611:12637543,17907571 -h1,16611:14850563,17907571:0,0,0 -k1,16611:32583029,17907571:17732466 -g1,16611:32583029,17907571 -) -(1,16611:6630773,18573749:25952256,404226,6290 -h1,16611:6630773,18573749:0,0,0 -g1,16611:7579210,18573749 -g1,16611:7895356,18573749 -g1,16611:8211502,18573749 -g1,16611:10108377,18573749 -g1,16611:12005252,18573749 -g1,16611:12321398,18573749 -g1,16611:12637544,18573749 -k1,16611:12637544,18573749:0 -h1,16611:14218273,18573749:0,0,0 -k1,16611:32583029,18573749:18364756 -g1,16611:32583029,18573749 -) -(1,16611:6630773,19239927:25952256,404226,6290 -h1,16611:6630773,19239927:0,0,0 -g1,16611:7579210,19239927 -g1,16611:8211502,19239927 -g1,16611:8527648,19239927 -g1,16611:8843794,19239927 -g1,16611:9159940,19239927 -g1,16611:9476086,19239927 -g1,16611:10108378,19239927 -g1,16611:10740670,19239927 -g1,16611:11056816,19239927 -g1,16611:11372962,19239927 -g1,16611:11689108,19239927 -g1,16611:12005254,19239927 -g1,16611:12321400,19239927 -g1,16611:12637546,19239927 -h1,16611:12953692,19239927:0,0,0 -k1,16611:32583028,19239927:19629336 -g1,16611:32583028,19239927 -) -(1,16611:6630773,19906105:25952256,404226,6290 -h1,16611:6630773,19906105:0,0,0 -g1,16611:7579210,19906105 -g1,16611:8211502,19906105 -g1,16611:8527648,19906105 -g1,16611:8843794,19906105 -g1,16611:9159940,19906105 -g1,16611:9476086,19906105 -g1,16611:10108378,19906105 -g1,16611:10740670,19906105 -g1,16611:11056816,19906105 -g1,16611:11372962,19906105 -g1,16611:11689108,19906105 -g1,16611:12005254,19906105 -g1,16611:12321400,19906105 -g1,16611:12637546,19906105 -h1,16611:12953692,19906105:0,0,0 -k1,16611:32583028,19906105:19629336 -g1,16611:32583028,19906105 -) -(1,16611:6630773,20572283:25952256,404226,9436 -h1,16611:6630773,20572283:0,0,0 -g1,16611:7579210,20572283 -g1,16611:8211502,20572283 -g1,16611:8527648,20572283 -g1,16611:8843794,20572283 -g1,16611:9159940,20572283 -g1,16611:9476086,20572283 -g1,16611:10108378,20572283 -g1,16611:10740670,20572283 -g1,16611:11056816,20572283 -g1,16611:11372962,20572283 -g1,16611:11689108,20572283 -g1,16611:12005254,20572283 -g1,16611:12321400,20572283 -g1,16611:12637546,20572283 -h1,16611:12953692,20572283:0,0,0 -k1,16611:32583028,20572283:19629336 -g1,16611:32583028,20572283 -) -(1,16611:6630773,21238461:25952256,404226,6290 -h1,16611:6630773,21238461:0,0,0 -g1,16611:7579210,21238461 -g1,16611:8211502,21238461 -g1,16611:8527648,21238461 -g1,16611:8843794,21238461 -g1,16611:9159940,21238461 -g1,16611:9476086,21238461 -g1,16611:10108378,21238461 -g1,16611:10740670,21238461 -g1,16611:11056816,21238461 -g1,16611:11372962,21238461 -g1,16611:11689108,21238461 -g1,16611:12005254,21238461 -g1,16611:12321400,21238461 -g1,16611:12637546,21238461 -h1,16611:12953692,21238461:0,0,0 -k1,16611:32583028,21238461:19629336 -g1,16611:32583028,21238461 -) -(1,16611:6630773,21904639:25952256,379060,9436 -h1,16611:6630773,21904639:0,0,0 -g1,16611:7579210,21904639 -g1,16611:8211502,21904639 -g1,16611:8527648,21904639 -g1,16611:8843794,21904639 -g1,16611:9159940,21904639 -g1,16611:9476086,21904639 -g1,16611:10108378,21904639 -g1,16611:11689107,21904639 -g1,16611:12005253,21904639 -g1,16611:12321399,21904639 -g1,16611:12637545,21904639 -h1,16611:12953691,21904639:0,0,0 -k1,16611:32583029,21904639:19629338 -g1,16611:32583029,21904639 -) -] -) -g1,16612:32583029,21914075 -g1,16612:6630773,21914075 -g1,16612:6630773,21914075 -g1,16612:32583029,21914075 -g1,16612:32583029,21914075 -) -h1,16612:6630773,22110683:0,0,0 -(1,16616:6630773,23476459:25952256,505283,134348 -h1,16615:6630773,23476459:983040,0,0 -k1,16615:8743833,23476459:227589 -k1,16615:10638004,23476459:227590 -k1,16615:12102913,23476459:227589 -k1,16615:15011581,23476459:227590 -k1,16615:16005286,23476459:227589 -k1,16615:17767074,23476459:227590 -k1,16615:18610701,23476459:227589 -(1,16615:18610701,23476459:0,414482,115847 -r1,16675:18968967,23476459:358266,530329,115847 -k1,16615:18610701,23476459:-358266 -) -(1,16615:18610701,23476459:358266,414482,115847 -k1,16615:18610701,23476459:3277 -h1,16615:18965690,23476459:0,411205,112570 -) -k1,16615:19196557,23476459:227590 -k1,16615:20708652,23476459:227589 -k1,16615:21751510,23476459:227590 -k1,16615:23045370,23476459:227589 -k1,16615:24748175,23476459:227590 -k1,16615:25331624,23476459:227589 -k1,16615:28530616,23476459:227590 -k1,16615:29962101,23476459:227589 -k1,16615:30805729,23476459:227590 -(1,16615:30805729,23476459:0,414482,115847 -r1,16675:31163995,23476459:358266,530329,115847 -k1,16615:30805729,23476459:-358266 -) -(1,16615:30805729,23476459:358266,414482,115847 -k1,16615:30805729,23476459:3277 -h1,16615:31160718,23476459:0,411205,112570 -) -k1,16615:31391584,23476459:227589 -k1,16615:32583029,23476459:0 -) -(1,16616:6630773,24317947:25952256,473825,7863 -g1,16615:8043729,24317947 -k1,16616:32583029,24317947:22665626 -g1,16616:32583029,24317947 -) -v1,16618:6630773,25508413:0,393216,0 -(1,16633:6630773,31713397:25952256,6598200,196608 -g1,16633:6630773,31713397 -g1,16633:6630773,31713397 -g1,16633:6434165,31713397 -(1,16633:6434165,31713397:0,6598200,196608 -r1,16675:32779637,31713397:26345472,6794808,196608 -k1,16633:6434165,31713397:-26345472 -) -(1,16633:6434165,31713397:26345472,6598200,196608 -[1,16633:6630773,31713397:25952256,6401592,0 -(1,16620:6630773,25722323:25952256,410518,107478 -(1,16619:6630773,25722323:0,0,0 -g1,16619:6630773,25722323 -g1,16619:6630773,25722323 -g1,16619:6303093,25722323 -(1,16619:6303093,25722323:0,0,0 -) -g1,16619:6630773,25722323 -) -k1,16620:6630773,25722323:0 -g1,16620:10740668,25722323 -g1,16620:11372960,25722323 -g1,16620:14534417,25722323 -g1,16620:15166709,25722323 -g1,16620:15799001,25722323 -h1,16620:18960458,25722323:0,0,0 -k1,16620:32583029,25722323:13622571 -g1,16620:32583029,25722323 -) -(1,16624:6630773,27043861:25952256,410518,107478 -g1,16624:7579210,27043861 -g1,16624:10108376,27043861 -g1,16624:11689105,27043861 -g1,16624:12953688,27043861 -g1,16624:13585980,27043861 -k1,16624:32583029,27043861:14887155 -g1,16624:32583029,27043861 -) -(1,16632:6630773,27710039:25952256,404226,9436 -(1,16624:6630773,27710039:0,0,0 -g1,16624:6630773,27710039 -g1,16624:6630773,27710039 -g1,16624:6303093,27710039 -(1,16624:6303093,27710039:0,0,0 -) -g1,16624:6630773,27710039 -) -g1,16632:7579210,27710039 -g1,16632:8211502,27710039 -g1,16632:8843794,27710039 -g1,16632:11372960,27710039 -g1,16632:12005252,27710039 -g1,16632:12637544,27710039 -h1,16632:12953690,27710039:0,0,0 -k1,16632:32583030,27710039:19629340 -g1,16632:32583030,27710039 -) -(1,16632:6630773,28376217:25952256,404226,6290 -h1,16632:6630773,28376217:0,0,0 -g1,16632:7579210,28376217 -g1,16632:7895356,28376217 -g1,16632:8211502,28376217 -g1,16632:8527648,28376217 -g1,16632:8843794,28376217 -g1,16632:10108377,28376217 -g1,16632:12637543,28376217 -h1,16632:14850563,28376217:0,0,0 -k1,16632:32583029,28376217:17732466 -g1,16632:32583029,28376217 -) -(1,16632:6630773,29042395:25952256,404226,6290 -h1,16632:6630773,29042395:0,0,0 -g1,16632:7579210,29042395 -g1,16632:7895356,29042395 -g1,16632:8211502,29042395 -g1,16632:10108377,29042395 -g1,16632:12005252,29042395 -g1,16632:12321398,29042395 -g1,16632:12637544,29042395 -k1,16632:12637544,29042395:0 -h1,16632:14218273,29042395:0,0,0 -k1,16632:32583029,29042395:18364756 -g1,16632:32583029,29042395 -) -(1,16632:6630773,29708573:25952256,404226,6290 -h1,16632:6630773,29708573:0,0,0 -g1,16632:7579210,29708573 -g1,16632:8211502,29708573 -g1,16632:8527648,29708573 -g1,16632:8843794,29708573 -g1,16632:9159940,29708573 -g1,16632:9476086,29708573 -g1,16632:10108378,29708573 -g1,16632:10740670,29708573 -g1,16632:11056816,29708573 -g1,16632:11372962,29708573 -g1,16632:11689108,29708573 -g1,16632:12005254,29708573 -g1,16632:12321400,29708573 -g1,16632:12637546,29708573 -h1,16632:12953692,29708573:0,0,0 -k1,16632:32583028,29708573:19629336 -g1,16632:32583028,29708573 -) -(1,16632:6630773,30374751:25952256,404226,6290 -h1,16632:6630773,30374751:0,0,0 -g1,16632:7579210,30374751 -g1,16632:8211502,30374751 -g1,16632:8527648,30374751 -g1,16632:8843794,30374751 -g1,16632:9159940,30374751 -g1,16632:9476086,30374751 -g1,16632:10108378,30374751 -g1,16632:10740670,30374751 -g1,16632:11056816,30374751 -g1,16632:11372962,30374751 -g1,16632:11689108,30374751 -g1,16632:12005254,30374751 -g1,16632:12321400,30374751 -g1,16632:12637546,30374751 -h1,16632:12953692,30374751:0,0,0 -k1,16632:32583028,30374751:19629336 -g1,16632:32583028,30374751 -) -(1,16632:6630773,31040929:25952256,404226,9436 -h1,16632:6630773,31040929:0,0,0 -g1,16632:7579210,31040929 -g1,16632:8211502,31040929 -g1,16632:8527648,31040929 -g1,16632:8843794,31040929 -g1,16632:9159940,31040929 -g1,16632:9476086,31040929 -g1,16632:10108378,31040929 -g1,16632:10740670,31040929 -g1,16632:11056816,31040929 -g1,16632:11372962,31040929 -g1,16632:11689108,31040929 -g1,16632:12005254,31040929 -g1,16632:12321400,31040929 -g1,16632:12637546,31040929 -h1,16632:12953692,31040929:0,0,0 -k1,16632:32583028,31040929:19629336 -g1,16632:32583028,31040929 -) -(1,16632:6630773,31707107:25952256,404226,6290 -h1,16632:6630773,31707107:0,0,0 -g1,16632:7579210,31707107 -g1,16632:8211502,31707107 -g1,16632:8527648,31707107 -g1,16632:8843794,31707107 -g1,16632:9159940,31707107 -g1,16632:9476086,31707107 -g1,16632:10108378,31707107 -g1,16632:10740670,31707107 -g1,16632:11056816,31707107 -g1,16632:11372962,31707107 -g1,16632:11689108,31707107 -g1,16632:12005254,31707107 -g1,16632:12321400,31707107 -g1,16632:12637546,31707107 -h1,16632:12953692,31707107:0,0,0 -k1,16632:32583028,31707107:19629336 -g1,16632:32583028,31707107 -) -] -) -g1,16633:32583029,31713397 -g1,16633:6630773,31713397 -g1,16633:6630773,31713397 -g1,16633:32583029,31713397 -g1,16633:32583029,31713397 -) -h1,16633:6630773,31910005:0,0,0 -v1,16637:6630773,33624759:0,393216,0 -(1,16652:6630773,39829743:25952256,6598200,196608 -g1,16652:6630773,39829743 -g1,16652:6630773,39829743 -g1,16652:6434165,39829743 -(1,16652:6434165,39829743:0,6598200,196608 -r1,16675:32779637,39829743:26345472,6794808,196608 -k1,16652:6434165,39829743:-26345472 -) -(1,16652:6434165,39829743:26345472,6598200,196608 -[1,16652:6630773,39829743:25952256,6401592,0 -(1,16639:6630773,33838669:25952256,410518,107478 -(1,16638:6630773,33838669:0,0,0 -g1,16638:6630773,33838669 -g1,16638:6630773,33838669 -g1,16638:6303093,33838669 -(1,16638:6303093,33838669:0,0,0 -) -g1,16638:6630773,33838669 -) -k1,16639:6630773,33838669:0 -g1,16639:10740668,33838669 -g1,16639:11372960,33838669 -g1,16639:14850563,33838669 -g1,16639:15482855,33838669 -g1,16639:16115147,33838669 -h1,16639:18960458,33838669:0,0,0 -k1,16639:32583029,33838669:13622571 -g1,16639:32583029,33838669 -) -(1,16643:6630773,35160207:25952256,410518,107478 -g1,16643:7579210,35160207 -g1,16643:10108376,35160207 -g1,16643:11689105,35160207 -g1,16643:12953688,35160207 -g1,16643:13585980,35160207 -k1,16643:32583029,35160207:14887155 -g1,16643:32583029,35160207 -) -(1,16651:6630773,35826385:25952256,404226,9436 -(1,16643:6630773,35826385:0,0,0 -g1,16643:6630773,35826385 -g1,16643:6630773,35826385 -g1,16643:6303093,35826385 -(1,16643:6303093,35826385:0,0,0 -) -g1,16643:6630773,35826385 -) -g1,16651:7579210,35826385 -g1,16651:8211502,35826385 -g1,16651:8843794,35826385 -g1,16651:11372960,35826385 -g1,16651:12005252,35826385 -g1,16651:12637544,35826385 -h1,16651:12953690,35826385:0,0,0 -k1,16651:32583030,35826385:19629340 -g1,16651:32583030,35826385 -) -(1,16651:6630773,36492563:25952256,404226,6290 -h1,16651:6630773,36492563:0,0,0 -g1,16651:7579210,36492563 -g1,16651:7895356,36492563 -g1,16651:8211502,36492563 -g1,16651:8527648,36492563 -g1,16651:8843794,36492563 -g1,16651:10108377,36492563 -g1,16651:12637543,36492563 -h1,16651:14850563,36492563:0,0,0 -k1,16651:32583029,36492563:17732466 -g1,16651:32583029,36492563 -) -(1,16651:6630773,37158741:25952256,404226,6290 -h1,16651:6630773,37158741:0,0,0 -g1,16651:7579210,37158741 -g1,16651:7895356,37158741 -g1,16651:8211502,37158741 -g1,16651:10108377,37158741 -g1,16651:12005252,37158741 -g1,16651:12321398,37158741 -g1,16651:12637544,37158741 -k1,16651:12637544,37158741:0 -h1,16651:14218273,37158741:0,0,0 -k1,16651:32583029,37158741:18364756 -g1,16651:32583029,37158741 -) -(1,16651:6630773,37824919:25952256,404226,6290 -h1,16651:6630773,37824919:0,0,0 -g1,16651:7579210,37824919 -g1,16651:8211502,37824919 -g1,16651:8527648,37824919 -g1,16651:8843794,37824919 -g1,16651:9159940,37824919 -g1,16651:9476086,37824919 -g1,16651:10108378,37824919 -g1,16651:10740670,37824919 -g1,16651:11056816,37824919 -g1,16651:11372962,37824919 -g1,16651:11689108,37824919 -g1,16651:12005254,37824919 -g1,16651:12321400,37824919 -g1,16651:12637546,37824919 -h1,16651:12953692,37824919:0,0,0 -k1,16651:32583028,37824919:19629336 -g1,16651:32583028,37824919 -) -(1,16651:6630773,38491097:25952256,404226,6290 -h1,16651:6630773,38491097:0,0,0 -g1,16651:7579210,38491097 -g1,16651:8211502,38491097 -g1,16651:8527648,38491097 -g1,16651:8843794,38491097 -g1,16651:9159940,38491097 -g1,16651:9476086,38491097 -g1,16651:10108378,38491097 -g1,16651:10740670,38491097 -g1,16651:11056816,38491097 -g1,16651:11372962,38491097 -g1,16651:11689108,38491097 -g1,16651:12005254,38491097 -g1,16651:12321400,38491097 -g1,16651:12637546,38491097 -h1,16651:12953692,38491097:0,0,0 -k1,16651:32583028,38491097:19629336 -g1,16651:32583028,38491097 -) -(1,16651:6630773,39157275:25952256,404226,9436 -h1,16651:6630773,39157275:0,0,0 -g1,16651:7579210,39157275 -g1,16651:8211502,39157275 -g1,16651:8527648,39157275 -g1,16651:8843794,39157275 -g1,16651:9159940,39157275 -g1,16651:9476086,39157275 -g1,16651:10108378,39157275 -g1,16651:10740670,39157275 -g1,16651:11056816,39157275 -g1,16651:11372962,39157275 -g1,16651:11689108,39157275 -g1,16651:12005254,39157275 -g1,16651:12321400,39157275 -g1,16651:12637546,39157275 -h1,16651:12953692,39157275:0,0,0 -k1,16651:32583028,39157275:19629336 -g1,16651:32583028,39157275 -) -(1,16651:6630773,39823453:25952256,404226,6290 -h1,16651:6630773,39823453:0,0,0 -g1,16651:7579210,39823453 -g1,16651:8211502,39823453 -g1,16651:8527648,39823453 -g1,16651:8843794,39823453 -g1,16651:9159940,39823453 -g1,16651:9476086,39823453 -g1,16651:10108378,39823453 -g1,16651:10740670,39823453 -g1,16651:11056816,39823453 -g1,16651:11372962,39823453 -g1,16651:11689108,39823453 -g1,16651:12005254,39823453 -g1,16651:12321400,39823453 -g1,16651:12637546,39823453 -h1,16651:12953692,39823453:0,0,0 -k1,16651:32583028,39823453:19629336 -g1,16651:32583028,39823453 -) -] -) -g1,16652:32583029,39829743 -g1,16652:6630773,39829743 -g1,16652:6630773,39829743 -g1,16652:32583029,39829743 -g1,16652:32583029,39829743 -) -h1,16652:6630773,40026351:0,0,0 -(1,16656:6630773,41392127:25952256,513147,134348 -h1,16655:6630773,41392127:983040,0,0 -k1,16655:9287760,41392127:212494 -k1,16655:10368605,41392127:212493 -k1,16655:12344673,41392127:212494 -k1,16655:13576251,41392127:212493 -k1,16655:16270593,41392127:212494 -k1,16655:17679118,41392127:212493 -k1,16655:20917409,41392127:212494 -k1,16655:23970888,41392127:212493 -k1,16655:24944910,41392127:212494 -k1,16655:27303706,41392127:212493 -(1,16655:27303706,41392127:0,452978,122846 -r1,16675:31179090,41392127:3875384,575824,122846 -k1,16655:27303706,41392127:-3875384 -) -(1,16655:27303706,41392127:3875384,452978,122846 -k1,16655:27303706,41392127:3277 -h1,16655:31175813,41392127:0,411205,112570 -) -k1,16655:31391584,41392127:212494 -k1,16656:32583029,41392127:0 -) -(1,16656:6630773,42233615:25952256,513147,126483 -(1,16655:6630773,42233615:0,452978,122846 -r1,16675:10506157,42233615:3875384,575824,122846 -k1,16655:6630773,42233615:-3875384 -) -(1,16655:6630773,42233615:3875384,452978,122846 -k1,16655:6630773,42233615:3277 -h1,16655:10502880,42233615:0,411205,112570 -) -k1,16655:10947013,42233615:267186 -k1,16655:13088529,42233615:267186 -k1,16655:16381513,42233615:267187 -k1,16655:18024300,42233615:267186 -k1,16655:20302131,42233615:267186 -k1,16655:20925177,42233615:267186 -k1,16655:23003778,42233615:267186 -k1,16655:24555470,42233615:267186 -k1,16655:26951922,42233615:267187 -k1,16655:29921157,42233615:267186 -k1,16655:31563944,42233615:267186 -k1,16655:32583029,42233615:0 -) -(1,16656:6630773,43075103:25952256,513147,115847 -g1,16655:9543193,43075103 -g1,16655:11310043,43075103 -(1,16655:11310043,43075103:0,414482,115847 -r1,16675:11668309,43075103:358266,530329,115847 -k1,16655:11310043,43075103:-358266 -) -(1,16655:11310043,43075103:358266,414482,115847 -k1,16655:11310043,43075103:3277 -h1,16655:11665032,43075103:0,411205,112570 -) -g1,16655:12041208,43075103 -g1,16655:13312606,43075103 -g1,16655:15706636,43075103 -g1,16655:17440063,43075103 -g1,16655:19493961,43075103 -g1,16655:20502560,43075103 -g1,16655:22210428,43075103 -g1,16655:24390810,43075103 -g1,16655:25241467,43075103 -g1,16655:26974894,43075103 -g1,16655:27790161,43075103 -(1,16655:27790161,43075103:0,414482,115847 -r1,16675:28148427,43075103:358266,530329,115847 -k1,16655:27790161,43075103:-358266 -) -(1,16655:27790161,43075103:358266,414482,115847 -k1,16655:27790161,43075103:3277 -h1,16655:28145150,43075103:0,411205,112570 -) -k1,16656:32583029,43075103:4260932 -g1,16656:32583029,43075103 -) -(1,16658:6630773,43916591:25952256,513147,134348 -h1,16657:6630773,43916591:983040,0,0 -g1,16657:8300630,43916591 -g1,16657:9998667,43916591 -g1,16657:11435216,43916591 -g1,16657:13829246,43916591 -g1,16657:15562673,43916591 -g1,16657:17329523,43916591 -(1,16657:17329523,43916591:0,414482,115847 -r1,16675:17687789,43916591:358266,530329,115847 -k1,16657:17329523,43916591:-358266 -) -(1,16657:17329523,43916591:358266,414482,115847 -k1,16657:17329523,43916591:3277 -h1,16657:17684512,43916591:0,411205,112570 -) -g1,16657:17887018,43916591 -g1,16657:19370753,43916591 -g1,16657:21045197,43916591 -g1,16657:21600286,43916591 -g1,16657:23780668,43916591 -g1,16657:24595935,43916591 -(1,16657:24595935,43916591:0,414482,115847 -r1,16675:24954201,43916591:358266,530329,115847 -k1,16657:24595935,43916591:-358266 -) -(1,16657:24595935,43916591:358266,414482,115847 -k1,16657:24595935,43916591:3277 -h1,16657:24950924,43916591:0,411205,112570 -) -k1,16658:32583029,43916591:7455158 -g1,16658:32583029,43916591 -) -v1,16660:6630773,45107057:0,393216,0 +v1,16490:6630773,6254097:0,393216,0 +(1,16503:6630773,11413590:25952256,5552709,196608 +g1,16503:6630773,11413590 +g1,16503:6630773,11413590 +g1,16503:6434165,11413590 +(1,16503:6434165,11413590:0,5552709,196608 +r1,16675:32779637,11413590:26345472,5749317,196608 +k1,16503:6434165,11413590:-26345472 +) +(1,16503:6434165,11413590:26345472,5552709,196608 +[1,16503:6630773,11413590:25952256,5356101,0 +(1,16492:6630773,6481928:25952256,424439,106246 +(1,16491:6630773,6481928:0,0,0 +g1,16491:6630773,6481928 +g1,16491:6630773,6481928 +g1,16491:6303093,6481928 +(1,16491:6303093,6481928:0,0,0 +) +g1,16491:6630773,6481928 +) +k1,16492:6630773,6481928:0 +g1,16492:11942036,6481928 +g1,16492:14929622,6481928 +k1,16492:14929622,6481928:0 +h1,16492:19908932,6481928:0,0,0 +k1,16492:32583029,6481928:12674097 +g1,16492:32583029,6481928 +) +(1,16502:6630773,7297855:25952256,424439,9908 +(1,16494:6630773,7297855:0,0,0 +g1,16494:6630773,7297855 +g1,16494:6630773,7297855 +g1,16494:6303093,7297855 +(1,16494:6303093,7297855:0,0,0 +) +g1,16494:6630773,7297855 +) +g1,16502:7626635,7297855 +g1,16502:8290543,7297855 +g1,16502:8954451,7297855 +g1,16502:11610083,7297855 +g1,16502:12937899,7297855 +g1,16502:13601807,7297855 +h1,16502:13933761,7297855:0,0,0 +k1,16502:32583029,7297855:18649268 +g1,16502:32583029,7297855 +) +(1,16502:6630773,7982710:25952256,424439,112852 +h1,16502:6630773,7982710:0,0,0 +g1,16502:7626635,7982710 +g1,16502:7958589,7982710 +g1,16502:8290543,7982710 +g1,16502:10946175,7982710 +g1,16502:15261576,7982710 +h1,16502:18913069,7982710:0,0,0 +k1,16502:32583029,7982710:13669960 +g1,16502:32583029,7982710 +) +(1,16502:6630773,8667565:25952256,431045,6605 +h1,16502:6630773,8667565:0,0,0 +g1,16502:7626635,8667565 +g1,16502:7958589,8667565 +g1,16502:8290543,8667565 +g1,16502:10282267,8667565 +g1,16502:10614221,8667565 +g1,16502:10946175,8667565 +g1,16502:11278129,8667565 +g1,16502:11610083,8667565 +g1,16502:11942037,8667565 +g1,16502:12273991,8667565 +g1,16502:12605945,8667565 +g1,16502:12937899,8667565 +g1,16502:13269853,8667565 +g1,16502:15261577,8667565 +g1,16502:15593531,8667565 +g1,16502:15925485,8667565 +g1,16502:16257439,8667565 +g1,16502:16589393,8667565 +g1,16502:16921347,8667565 +g1,16502:17253301,8667565 +k1,16502:17253301,8667565:0 +h1,16502:18913071,8667565:0,0,0 +k1,16502:32583029,8667565:13669958 +g1,16502:32583029,8667565 +) +(1,16502:6630773,9352420:25952256,407923,9908 +h1,16502:6630773,9352420:0,0,0 +g1,16502:7626635,9352420 +g1,16502:8290543,9352420 +g1,16502:10614221,9352420 +g1,16502:10946175,9352420 +g1,16502:11278129,9352420 +g1,16502:11610083,9352420 +g1,16502:11942037,9352420 +g1,16502:12273991,9352420 +g1,16502:12605945,9352420 +g1,16502:12937899,9352420 +g1,16502:13269853,9352420 +g1,16502:13601807,9352420 +g1,16502:13933761,9352420 +g1,16502:15261577,9352420 +g1,16502:15593531,9352420 +g1,16502:15925485,9352420 +g1,16502:16257439,9352420 +g1,16502:16589393,9352420 +g1,16502:16921347,9352420 +g1,16502:17253301,9352420 +g1,16502:17585255,9352420 +g1,16502:17917209,9352420 +h1,16502:18913071,9352420:0,0,0 +k1,16502:32583029,9352420:13669958 +g1,16502:32583029,9352420 +) +(1,16502:6630773,10037275:25952256,407923,9908 +h1,16502:6630773,10037275:0,0,0 +g1,16502:7626635,10037275 +g1,16502:8290543,10037275 +g1,16502:10614221,10037275 +g1,16502:10946175,10037275 +g1,16502:11278129,10037275 +g1,16502:11610083,10037275 +g1,16502:11942037,10037275 +g1,16502:12273991,10037275 +g1,16502:12605945,10037275 +g1,16502:12937899,10037275 +g1,16502:13269853,10037275 +g1,16502:13601807,10037275 +g1,16502:13933761,10037275 +g1,16502:15261577,10037275 +g1,16502:15593531,10037275 +g1,16502:15925485,10037275 +g1,16502:16257439,10037275 +g1,16502:16589393,10037275 +g1,16502:16921347,10037275 +g1,16502:17253301,10037275 +g1,16502:17585255,10037275 +g1,16502:17917209,10037275 +h1,16502:18249163,10037275:0,0,0 +k1,16502:32583029,10037275:14333866 +g1,16502:32583029,10037275 +) +(1,16502:6630773,10722130:25952256,407923,9908 +h1,16502:6630773,10722130:0,0,0 +g1,16502:7626635,10722130 +g1,16502:8290543,10722130 +g1,16502:10614221,10722130 +g1,16502:10946175,10722130 +g1,16502:11278129,10722130 +g1,16502:11610083,10722130 +g1,16502:11942037,10722130 +g1,16502:12273991,10722130 +g1,16502:12605945,10722130 +g1,16502:12937899,10722130 +g1,16502:13269853,10722130 +g1,16502:13601807,10722130 +g1,16502:13933761,10722130 +g1,16502:15261577,10722130 +g1,16502:15593531,10722130 +g1,16502:15925485,10722130 +g1,16502:16257439,10722130 +g1,16502:16589393,10722130 +g1,16502:16921347,10722130 +g1,16502:17253301,10722130 +g1,16502:17585255,10722130 +g1,16502:17917209,10722130 +h1,16502:18913071,10722130:0,0,0 +k1,16502:32583029,10722130:13669958 +g1,16502:32583029,10722130 +) +(1,16502:6630773,11406985:25952256,424439,6605 +h1,16502:6630773,11406985:0,0,0 +g1,16502:7626635,11406985 +g1,16502:8290543,11406985 +g1,16502:8954451,11406985 +g1,16502:10282267,11406985 +g1,16502:11942037,11406985 +h1,16502:13269853,11406985:0,0,0 +k1,16502:32583029,11406985:19313176 +g1,16502:32583029,11406985 +) +] +) +g1,16503:32583029,11413590 +g1,16503:6630773,11413590 +g1,16503:6630773,11413590 +g1,16503:32583029,11413590 +g1,16503:32583029,11413590 +) +h1,16503:6630773,11610198:0,0,0 +(1,16507:6630773,12475278:25952256,505283,126483 +h1,16506:6630773,12475278:983040,0,0 +k1,16506:10676951,12475278:273270 +(1,16506:10676951,12475278:0,452978,115847 +r1,16675:13497200,12475278:2820249,568825,115847 +k1,16506:10676951,12475278:-2820249 +) +(1,16506:10676951,12475278:2820249,452978,115847 +k1,16506:10676951,12475278:3277 +h1,16506:13493923,12475278:0,411205,112570 +) +k1,16506:13770471,12475278:273271 +k1,16506:15148023,12475278:273270 +k1,16506:16169060,12475278:273271 +k1,16506:17955556,12475278:273270 +k1,16506:18880254,12475278:273270 +k1,16506:21527239,12475278:273271 +k1,16506:24687370,12475278:273270 +k1,16506:27565697,12475278:273271 +k1,16506:29272895,12475278:273270 +k1,16506:29960934,12475278:273196 +k1,16506:32583029,12475278:0 +) +(1,16507:6630773,13340358:25952256,513147,115847 +k1,16506:7925646,13340358:275788 +k1,16506:9293918,13340358:275787 +k1,16506:10228998,13340358:275788 +k1,16506:11971482,13340358:275788 +(1,16506:11971482,13340358:0,452978,115847 +r1,16675:14440019,13340358:2468537,568825,115847 +k1,16506:11971482,13340358:-2468537 +) +(1,16506:11971482,13340358:2468537,452978,115847 +k1,16506:11971482,13340358:3277 +h1,16506:14436742,13340358:0,411205,112570 +) +k1,16506:14715807,13340358:275788 +k1,16506:16183039,13340358:275787 +(1,16506:16183039,13340358:0,452978,115847 +r1,16675:19354999,13340358:3171960,568825,115847 +k1,16506:16183039,13340358:-3171960 +) +(1,16506:16183039,13340358:3171960,452978,115847 +k1,16506:16183039,13340358:3277 +h1,16506:19351722,13340358:0,411205,112570 +) +k1,16506:19630787,13340358:275788 +k1,16506:21098020,13340358:275788 +k1,16506:22170726,13340358:275788 +k1,16506:23580286,13340358:275787 +k1,16506:25352261,13340358:275788 +k1,16506:26279477,13340358:275788 +k1,16506:28536418,13340358:275788 +k1,16506:30095400,13340358:275787 +k1,16506:31562633,13340358:275788 +k1,16506:32583029,13340358:0 +) +(1,16507:6630773,14205438:25952256,513147,134348 +k1,16506:9223478,14205438:350718 +k1,16506:10392086,14205438:350719 +k1,16506:12818329,14205438:350718 +k1,16506:15211149,14205438:350718 +k1,16506:16580953,14205438:350719 +k1,16506:19015716,14205438:350718 +k1,16506:20314085,14205438:350718 +k1,16506:22116426,14205438:350719 +k1,16506:24850033,14205438:350718 +k1,16506:26938766,14205438:350718 +k1,16506:27940913,14205438:350719 +k1,16506:29039397,14205438:350718 +k1,16506:32051532,14205438:350718 +k1,16507:32583029,14205438:0 +) +(1,16507:6630773,15070518:25952256,505283,134348 +(1,16506:6630773,15070518:0,452978,115847 +r1,16675:14726699,15070518:8095926,568825,115847 +k1,16506:6630773,15070518:-8095926 +) +(1,16506:6630773,15070518:8095926,452978,115847 +g1,16506:8392609,15070518 +g1,16506:10502880,15070518 +g1,16506:11206304,15070518 +g1,16506:12964863,15070518 +h1,16506:14723422,15070518:0,411205,112570 +) +k1,16506:15173988,15070518:273619 +k1,16506:16644293,15070518:273618 +k1,16506:18090351,15070518:273619 +k1,16506:20432285,15070518:273618 +k1,16506:21810186,15070518:273619 +k1,16506:22831570,15070518:273618 +k1,16506:24799950,15070518:273619 +k1,16506:26929548,15070518:273618 +k1,16506:27889329,15070518:273619 +k1,16506:29554932,15070518:273618 +k1,16506:31896867,15070518:273619 +k1,16506:32583029,15070518:0 +) +(1,16507:6630773,15935598:25952256,505283,134348 +g1,16506:8698433,15935598 +g1,16506:9580547,15935598 +g1,16506:10465938,15935598 +g1,16506:13639846,15935598 +k1,16507:32583029,15935598:16573401 +g1,16507:32583029,15935598 +) +v1,16509:6630773,16620453:0,393216,0 +(1,16522:6630773,21783249:25952256,5556012,196608 +g1,16522:6630773,21783249 +g1,16522:6630773,21783249 +g1,16522:6434165,21783249 +(1,16522:6434165,21783249:0,5556012,196608 +r1,16675:32779637,21783249:26345472,5752620,196608 +k1,16522:6434165,21783249:-26345472 +) +(1,16522:6434165,21783249:26345472,5556012,196608 +[1,16522:6630773,21783249:25952256,5359404,0 +(1,16511:6630773,16848284:25952256,424439,112852 +(1,16510:6630773,16848284:0,0,0 +g1,16510:6630773,16848284 +g1,16510:6630773,16848284 +g1,16510:6303093,16848284 +(1,16510:6303093,16848284:0,0,0 +) +g1,16510:6630773,16848284 +) +k1,16511:6630773,16848284:0 +g1,16511:13601806,16848284 +g1,16511:14929622,16848284 +g1,16511:15593530,16848284 +h1,16511:18913069,16848284:0,0,0 +k1,16511:32583029,16848284:13669960 +g1,16511:32583029,16848284 +) +(1,16521:6630773,17664211:25952256,424439,9908 +(1,16513:6630773,17664211:0,0,0 +g1,16513:6630773,17664211 +g1,16513:6630773,17664211 +g1,16513:6303093,17664211 +(1,16513:6303093,17664211:0,0,0 +) +g1,16513:6630773,17664211 +) +g1,16521:7626635,17664211 +g1,16521:8290543,17664211 +g1,16521:8954451,17664211 +g1,16521:11610083,17664211 +g1,16521:12937899,17664211 +g1,16521:13601807,17664211 +h1,16521:13933761,17664211:0,0,0 +k1,16521:32583029,17664211:18649268 +g1,16521:32583029,17664211 +) +(1,16521:6630773,18349066:25952256,424439,106246 +h1,16521:6630773,18349066:0,0,0 +g1,16521:7626635,18349066 +g1,16521:7958589,18349066 +g1,16521:8290543,18349066 +g1,16521:10946175,18349066 +g1,16521:12605945,18349066 +g1,16521:12937899,18349066 +g1,16521:13269853,18349066 +g1,16521:13601807,18349066 +g1,16521:13933761,18349066 +g1,16521:14265715,18349066 +g1,16521:14597669,18349066 +g1,16521:14929623,18349066 +g1,16521:15261577,18349066 +g1,16521:15593531,18349066 +g1,16521:15925485,18349066 +g1,16521:17253301,18349066 +g1,16521:20904794,18349066 +h1,16521:23560425,18349066:0,0,0 +k1,16521:32583029,18349066:9022604 +g1,16521:32583029,18349066 +) +(1,16521:6630773,19033921:25952256,431045,6605 +h1,16521:6630773,19033921:0,0,0 +g1,16521:7626635,19033921 +g1,16521:7958589,19033921 +g1,16521:8290543,19033921 +g1,16521:10282267,19033921 +g1,16521:10614221,19033921 +g1,16521:10946175,19033921 +g1,16521:12937899,19033921 +g1,16521:13269853,19033921 +g1,16521:13601807,19033921 +g1,16521:13933761,19033921 +g1,16521:14265715,19033921 +g1,16521:14597669,19033921 +g1,16521:14929623,19033921 +g1,16521:15261577,19033921 +g1,16521:17253301,19033921 +g1,16521:19245025,19033921 +g1,16521:19576979,19033921 +g1,16521:19908933,19033921 +g1,16521:20240887,19033921 +g1,16521:20572841,19033921 +g1,16521:20904795,19033921 +k1,16521:20904795,19033921:0 +h1,16521:22564565,19033921:0,0,0 +k1,16521:32583029,19033921:10018464 +g1,16521:32583029,19033921 +) +(1,16521:6630773,19718776:25952256,424439,112852 +h1,16521:6630773,19718776:0,0,0 +g1,16521:7626635,19718776 +g1,16521:8290543,19718776 +g1,16521:10614221,19718776 +g1,16521:10946175,19718776 +g1,16521:15261576,19718776 +g1,16521:15593530,19718776 +g1,16521:15925484,19718776 +g1,16521:17253300,19718776 +g1,16521:19245024,19718776 +g1,16521:19576978,19718776 +g1,16521:19908932,19718776 +g1,16521:20240886,19718776 +g1,16521:20572840,19718776 +g1,16521:20904794,19718776 +h1,16521:22896518,19718776:0,0,0 +k1,16521:32583029,19718776:9686511 +g1,16521:32583029,19718776 +) +(1,16521:6630773,20403631:25952256,424439,106246 +h1,16521:6630773,20403631:0,0,0 +g1,16521:7626635,20403631 +g1,16521:8290543,20403631 +g1,16521:10614221,20403631 +g1,16521:10946175,20403631 +g1,16521:14929622,20403631 +g1,16521:15261576,20403631 +g1,16521:15593530,20403631 +g1,16521:15925484,20403631 +g1,16521:17253300,20403631 +g1,16521:19245024,20403631 +g1,16521:19576978,20403631 +g1,16521:19908932,20403631 +g1,16521:20240886,20403631 +g1,16521:20572840,20403631 +g1,16521:20904794,20403631 +h1,16521:22564564,20403631:0,0,0 +k1,16521:32583029,20403631:10018465 +g1,16521:32583029,20403631 +) +(1,16521:6630773,21088486:25952256,424439,112852 +h1,16521:6630773,21088486:0,0,0 +g1,16521:7626635,21088486 +g1,16521:8290543,21088486 +g1,16521:10614221,21088486 +g1,16521:10946175,21088486 +g1,16521:15261576,21088486 +g1,16521:15593530,21088486 +g1,16521:15925484,21088486 +g1,16521:17253300,21088486 +g1,16521:19245024,21088486 +g1,16521:19576978,21088486 +g1,16521:19908932,21088486 +g1,16521:20240886,21088486 +g1,16521:20572840,21088486 +g1,16521:20904794,21088486 +h1,16521:22896518,21088486:0,0,0 +k1,16521:32583029,21088486:9686511 +g1,16521:32583029,21088486 +) +(1,16521:6630773,21773341:25952256,424439,9908 +h1,16521:6630773,21773341:0,0,0 +g1,16521:7626635,21773341 +g1,16521:8290543,21773341 +g1,16521:8954451,21773341 +g1,16521:10282267,21773341 +g1,16521:11942037,21773341 +h1,16521:13269853,21773341:0,0,0 +k1,16521:32583029,21773341:19313176 +g1,16521:32583029,21773341 +) +] +) +g1,16522:32583029,21783249 +g1,16522:6630773,21783249 +g1,16522:6630773,21783249 +g1,16522:32583029,21783249 +g1,16522:32583029,21783249 +) +h1,16522:6630773,21979857:0,0,0 +(1,16526:6630773,24096675:25952256,555811,139132 +(1,16526:6630773,24096675:2450326,534184,12975 +g1,16526:6630773,24096675 +g1,16526:9081099,24096675 +) +g1,16526:13428102,24096675 +k1,16526:32583029,24096675:13965917 +g1,16526:32583029,24096675 +) +(1,16530:6630773,25354971:25952256,513147,134348 +k1,16529:9444293,25354971:209119 +k1,16529:12862711,25354971:209120 +k1,16529:16146124,25354971:209119 +k1,16529:16886740,25354971:209119 +k1,16529:17747288,25354971:209120 +k1,16529:21524187,25354971:209119 +k1,16529:24917046,25354971:209120 +k1,16529:25887693,25354971:209119 +k1,16529:28319793,25354971:209119 +k1,16529:29188205,25354971:209120 +k1,16529:31105192,25354971:209119 +k1,16530:32583029,25354971:0 +) +(1,16530:6630773,26220051:25952256,513147,134348 +k1,16529:8320241,26220051:138886 +k1,16529:9110555,26220051:138886 +k1,16529:10683369,26220051:138886 +k1,16529:11410768,26220051:138886 +k1,16529:12568739,26220051:138886 +k1,16529:15610215,26220051:138886 +k1,16529:16408392,26220051:138885 +k1,16529:17936641,26220051:138886 +k1,16529:22331435,26220051:138886 +k1,16529:23156483,26220051:138886 +k1,16529:27496882,26220051:138886 +k1,16529:28251806,26220051:138886 +k1,16529:30536995,26220051:138886 +k1,16529:32583029,26220051:0 +) +(1,16530:6630773,27085131:25952256,513147,134348 +k1,16529:7309913,27085131:221043 +k1,16529:10160917,27085131:221044 +k1,16529:11033388,27085131:221043 +k1,16529:12668699,27085131:221044 +k1,16529:14092983,27085131:221043 +k1,16529:17388321,27085131:221044 +k1,16529:18876830,27085131:221043 +k1,16529:20270312,27085131:221043 +k1,16529:22350612,27085131:221044 +k1,16529:23590740,27085131:221043 +k1,16529:25993478,27085131:221044 +k1,16529:26873813,27085131:221043 +k1,16529:28113942,27085131:221044 +k1,16529:31391584,27085131:221043 +k1,16529:32583029,27085131:0 +) +(1,16530:6630773,27950211:25952256,513147,134348 +k1,16529:7870987,27950211:221129 +k1,16529:11563558,27950211:221129 +k1,16529:12443980,27950211:221130 +k1,16529:16346922,27950211:221129 +k1,16529:17948895,27950211:221129 +k1,16529:21256770,27950211:221129 +k1,16529:22496984,27950211:221129 +k1,16529:24387970,27950211:221129 +k1,16529:26967741,27950211:221130 +k1,16529:27646967,27950211:221129 +k1,16529:29518293,27950211:221129 +k1,16529:31540351,27950211:221129 +k1,16530:32583029,27950211:0 +) +(1,16530:6630773,28815291:25952256,513147,134348 +k1,16529:10980197,28815291:205583 +k1,16529:12883818,28815291:205583 +k1,16529:14824794,28815291:205583 +k1,16529:16750697,28815291:205583 +k1,16529:20137398,28815291:205583 +k1,16529:20994409,28815291:205583 +k1,16529:22219077,28815291:205583 +k1,16529:25409170,28815291:205583 +k1,16529:26274044,28815291:205582 +k1,16529:27913555,28815291:205583 +k1,16529:28533975,28815291:205577 +(1,16529:28533975,28815291:0,452978,122846 +r1,16675:32409359,28815291:3875384,575824,122846 +k1,16529:28533975,28815291:-3875384 +) +(1,16529:28533975,28815291:3875384,452978,122846 +k1,16529:28533975,28815291:3277 +h1,16529:32406082,28815291:0,411205,112570 +) +k1,16529:32583029,28815291:0 +) +(1,16530:6630773,29680371:25952256,505283,134348 +g1,16529:8021447,29680371 +g1,16529:8678773,29680371 +g1,16529:10163818,29680371 +g1,16529:12409081,29680371 +g1,16529:13066407,29680371 +g1,16529:15136034,29680371 +g1,16529:15986691,29680371 +g1,16529:19753700,29680371 +g1,16529:22184430,29680371 +g1,16529:25096850,29680371 +g1,16529:25912117,29680371 +g1,16529:26467206,29680371 +g1,16529:28539454,29680371 +k1,16530:32583029,29680371:795611 +g1,16530:32583029,29680371 +) +(1,16532:6630773,30545451:25952256,513147,134348 +h1,16531:6630773,30545451:983040,0,0 +k1,16531:8980732,30545451:170232 +k1,16531:10457097,30545451:170232 +k1,16531:11982614,30545451:170232 +k1,16531:12684343,30545451:170232 +k1,16531:13506003,30545451:170232 +k1,16531:14768720,30545451:170232 +(1,16531:14768720,30545451:0,452978,122846 +r1,16675:18292392,30545451:3523672,575824,122846 +k1,16531:14768720,30545451:-3523672 +) +(1,16531:14768720,30545451:3523672,452978,122846 +k1,16531:14768720,30545451:3277 +h1,16531:18289115,30545451:0,411205,112570 +) +k1,16531:18462624,30545451:170232 +k1,16531:19284284,30545451:170232 +k1,16531:21041798,30545451:170232 +k1,16531:21567890,30545451:170232 +k1,16531:23549537,30545451:170232 +k1,16531:25113720,30545451:170232 +k1,16531:26303037,30545451:170232 +k1,16531:29529868,30545451:170232 +k1,16531:30653649,30545451:170232 +k1,16531:32583029,30545451:0 +) +(1,16532:6630773,31410531:25952256,505283,134348 +k1,16531:7205960,31410531:219327 +k1,16531:9157404,31410531:219327 +k1,16531:10568176,31410531:219327 +k1,16531:12221431,31410531:219327 +k1,16531:14833477,31410531:219327 +k1,16531:15510901,31410531:219327 +k1,16531:16997694,31410531:219327 +k1,16531:17572882,31410531:219328 +k1,16531:20411028,31410531:219327 +k1,16531:22536142,31410531:219327 +k1,16531:24360446,31410531:219327 +k1,16531:25448125,31410531:219327 +k1,16531:27142667,31410531:219327 +k1,16531:27717854,31410531:219327 +k1,16531:30597943,31410531:219327 +k1,16531:32583029,31410531:0 +) +(1,16532:6630773,32275611:25952256,513147,134348 +k1,16531:9581361,32275611:255092 +(1,16531:9581361,32275611:0,452978,115847 +r1,16675:13456745,32275611:3875384,568825,115847 +k1,16531:9581361,32275611:-3875384 +) +(1,16531:9581361,32275611:3875384,452978,115847 +k1,16531:9581361,32275611:3277 +h1,16531:13453468,32275611:0,411205,112570 +) +k1,16531:13711836,32275611:255091 +k1,16531:15099390,32275611:255092 +k1,16531:18445815,32275611:255092 +k1,16531:19719992,32275611:255092 +k1,16531:22858012,32275611:255091 +k1,16531:24304549,32275611:255092 +k1,16531:25652126,32275611:255092 +k1,16531:26365315,32275611:255092 +k1,16531:28318444,32275611:255091 +k1,16531:29592621,32275611:255092 +k1,16531:32583029,32275611:0 +) +(1,16532:6630773,33140691:25952256,505283,7863 +g1,16531:8840647,33140691 +g1,16531:10031436,33140691 +k1,16532:32583029,33140691:19148964 +g1,16532:32583029,33140691 +) +v1,16534:6630773,33825546:0,393216,0 +(1,16551:6630773,41727762:25952256,8295432,196608 +g1,16551:6630773,41727762 +g1,16551:6630773,41727762 +g1,16551:6434165,41727762 +(1,16551:6434165,41727762:0,8295432,196608 +r1,16675:32779637,41727762:26345472,8492040,196608 +k1,16551:6434165,41727762:-26345472 +) +(1,16551:6434165,41727762:26345472,8295432,196608 +[1,16551:6630773,41727762:25952256,8098824,0 +(1,16536:6630773,34053377:25952256,424439,106246 +(1,16535:6630773,34053377:0,0,0 +g1,16535:6630773,34053377 +g1,16535:6630773,34053377 +g1,16535:6303093,34053377 +(1,16535:6303093,34053377:0,0,0 +) +g1,16535:6630773,34053377 +) +k1,16536:6630773,34053377:0 +g1,16536:11610083,34053377 +g1,16536:12273991,34053377 +g1,16536:13933761,34053377 +g1,16536:16589393,34053377 +g1,16536:17253301,34053377 +g1,16536:23228472,34053377 +g1,16536:24556288,34053377 +k1,16536:24556288,34053377:0 +h1,16536:25884104,34053377:0,0,0 +k1,16536:32583029,34053377:6698925 +g1,16536:32583029,34053377 +) +(1,16537:6630773,34738232:25952256,424439,112852 +h1,16537:6630773,34738232:0,0,0 +g1,16537:6962727,34738232 +g1,16537:7294681,34738232 +g1,16537:11278128,34738232 +g1,16537:14265713,34738232 +k1,16537:14265713,34738232:0 +h1,16537:15593529,34738232:0,0,0 +k1,16537:32583029,34738232:16989500 +g1,16537:32583029,34738232 +) +(1,16538:6630773,35423087:25952256,424439,86428 +h1,16538:6630773,35423087:0,0,0 +g1,16538:6962727,35423087 +g1,16538:7294681,35423087 +k1,16538:7294681,35423087:0 +h1,16538:11278128,35423087:0,0,0 +k1,16538:32583028,35423087:21304900 +g1,16538:32583028,35423087 +) +(1,16539:6630773,36107942:25952256,424439,86428 +h1,16539:6630773,36107942:0,0,0 +g1,16539:6962727,36107942 +g1,16539:7294681,36107942 +g1,16539:7626635,36107942 +g1,16539:7958589,36107942 +g1,16539:8290543,36107942 +g1,16539:8622497,36107942 +g1,16539:8954451,36107942 +g1,16539:9286405,36107942 +g1,16539:9618359,36107942 +g1,16539:9950313,36107942 +g1,16539:10282267,36107942 +g1,16539:10614221,36107942 +g1,16539:14929622,36107942 +g1,16539:15593530,36107942 +k1,16539:15593530,36107942:0 +h1,16539:20240885,36107942:0,0,0 +k1,16539:32583029,36107942:12342144 +g1,16539:32583029,36107942 +) +(1,16540:6630773,36792797:25952256,424439,86428 +h1,16540:6630773,36792797:0,0,0 +g1,16540:6962727,36792797 +g1,16540:7294681,36792797 +g1,16540:7626635,36792797 +g1,16540:7958589,36792797 +g1,16540:8290543,36792797 +g1,16540:8622497,36792797 +g1,16540:8954451,36792797 +g1,16540:9286405,36792797 +g1,16540:9618359,36792797 +g1,16540:9950313,36792797 +g1,16540:10282267,36792797 +g1,16540:10614221,36792797 +g1,16540:15593530,36792797 +g1,16540:16257438,36792797 +k1,16540:16257438,36792797:0 +h1,16540:21568701,36792797:0,0,0 +k1,16540:32583029,36792797:11014328 +g1,16540:32583029,36792797 +) +(1,16541:6630773,37477652:25952256,424439,79822 +h1,16541:6630773,37477652:0,0,0 +g1,16541:6962727,37477652 +g1,16541:7294681,37477652 +g1,16541:7626635,37477652 +g1,16541:7958589,37477652 +g1,16541:8290543,37477652 +g1,16541:8622497,37477652 +g1,16541:8954451,37477652 +g1,16541:9286405,37477652 +g1,16541:9618359,37477652 +g1,16541:9950313,37477652 +g1,16541:10282267,37477652 +g1,16541:10614221,37477652 +g1,16541:11278129,37477652 +g1,16541:11942037,37477652 +k1,16541:11942037,37477652:0 +h1,16541:13269853,37477652:0,0,0 +k1,16541:32583029,37477652:19313176 +g1,16541:32583029,37477652 +) +(1,16550:6630773,38293579:25952256,424439,9908 +(1,16543:6630773,38293579:0,0,0 +g1,16543:6630773,38293579 +g1,16543:6630773,38293579 +g1,16543:6303093,38293579 +(1,16543:6303093,38293579:0,0,0 +) +g1,16543:6630773,38293579 +) +g1,16550:7626635,38293579 +g1,16550:8290543,38293579 +g1,16550:8954451,38293579 +g1,16550:11610083,38293579 +g1,16550:12273991,38293579 +g1,16550:12937899,38293579 +h1,16550:13269853,38293579:0,0,0 +k1,16550:32583029,38293579:19313176 +g1,16550:32583029,38293579 +) +(1,16550:6630773,38978434:25952256,424439,52847 +h1,16550:6630773,38978434:0,0,0 +g1,16550:7626635,38978434 +g1,16550:7958589,38978434 +g1,16550:8290543,38978434 +g1,16550:10946175,38978434 +g1,16550:15261576,38978434 +g1,16550:20240885,38978434 +g1,16550:20572839,38978434 +g1,16550:20904793,38978434 +g1,16550:21236747,38978434 +g1,16550:21568701,38978434 +h1,16550:21900655,38978434:0,0,0 +k1,16550:32583029,38978434:10682374 +g1,16550:32583029,38978434 +) +(1,16550:6630773,39663289:25952256,424439,6605 +h1,16550:6630773,39663289:0,0,0 +g1,16550:7626635,39663289 +g1,16550:7958589,39663289 +g1,16550:8290543,39663289 +g1,16550:10282267,39663289 +g1,16550:10614221,39663289 +g1,16550:10946175,39663289 +g1,16550:11278129,39663289 +g1,16550:11610083,39663289 +g1,16550:11942037,39663289 +g1,16550:12273991,39663289 +g1,16550:12605945,39663289 +g1,16550:12937899,39663289 +g1,16550:13269853,39663289 +g1,16550:15261577,39663289 +g1,16550:15593531,39663289 +g1,16550:15925485,39663289 +g1,16550:16257439,39663289 +g1,16550:16589393,39663289 +g1,16550:16921347,39663289 +g1,16550:17253301,39663289 +g1,16550:17585255,39663289 +g1,16550:17917209,39663289 +g1,16550:18249163,39663289 +g1,16550:20240887,39663289 +k1,16550:20240887,39663289:0 +h1,16550:21900657,39663289:0,0,0 +k1,16550:32583029,39663289:10682372 +g1,16550:32583029,39663289 +) +(1,16550:6630773,40348144:25952256,407923,9908 +h1,16550:6630773,40348144:0,0,0 +g1,16550:7626635,40348144 +g1,16550:8290543,40348144 +g1,16550:8954451,40348144 +g1,16550:9286405,40348144 +g1,16550:9618359,40348144 +g1,16550:9950313,40348144 +g1,16550:10282267,40348144 +g1,16550:10614221,40348144 +g1,16550:10946175,40348144 +g1,16550:11278129,40348144 +g1,16550:11610083,40348144 +g1,16550:11942037,40348144 +g1,16550:12273991,40348144 +g1,16550:12605945,40348144 +g1,16550:12937899,40348144 +g1,16550:13269853,40348144 +g1,16550:13601807,40348144 +g1,16550:13933761,40348144 +g1,16550:14265715,40348144 +g1,16550:14597669,40348144 +g1,16550:15261577,40348144 +g1,16550:15593531,40348144 +g1,16550:15925485,40348144 +g1,16550:16257439,40348144 +g1,16550:16589393,40348144 +g1,16550:16921347,40348144 +g1,16550:17253301,40348144 +g1,16550:17585255,40348144 +g1,16550:17917209,40348144 +g1,16550:18249163,40348144 +g1,16550:18581117,40348144 +g1,16550:18913071,40348144 +g1,16550:19245025,40348144 +g1,16550:19576979,40348144 +g1,16550:20240887,40348144 +g1,16550:20572841,40348144 +g1,16550:20904795,40348144 +g1,16550:21236749,40348144 +g1,16550:21568703,40348144 +h1,16550:21900657,40348144:0,0,0 +k1,16550:32583029,40348144:10682372 +g1,16550:32583029,40348144 +) +(1,16550:6630773,41032999:25952256,424439,9908 +h1,16550:6630773,41032999:0,0,0 +g1,16550:7626635,41032999 +g1,16550:8290543,41032999 +g1,16550:8954451,41032999 +g1,16550:9286405,41032999 +g1,16550:9618359,41032999 +g1,16550:9950313,41032999 +g1,16550:10282267,41032999 +g1,16550:10614221,41032999 +g1,16550:10946175,41032999 +g1,16550:11278129,41032999 +g1,16550:11610083,41032999 +g1,16550:11942037,41032999 +g1,16550:12273991,41032999 +g1,16550:12605945,41032999 +g1,16550:12937899,41032999 +g1,16550:13269853,41032999 +g1,16550:13601807,41032999 +g1,16550:13933761,41032999 +g1,16550:14265715,41032999 +g1,16550:14597669,41032999 +g1,16550:15261577,41032999 +g1,16550:15593531,41032999 +g1,16550:15925485,41032999 +g1,16550:16257439,41032999 +g1,16550:16589393,41032999 +g1,16550:16921347,41032999 +g1,16550:17253301,41032999 +g1,16550:17585255,41032999 +g1,16550:17917209,41032999 +g1,16550:18249163,41032999 +g1,16550:18581117,41032999 +g1,16550:18913071,41032999 +g1,16550:19245025,41032999 +g1,16550:19576979,41032999 +g1,16550:20240887,41032999 +g1,16550:20572841,41032999 +g1,16550:20904795,41032999 +g1,16550:21236749,41032999 +g1,16550:21568703,41032999 +h1,16550:21900657,41032999:0,0,0 +k1,16550:32583029,41032999:10682372 +g1,16550:32583029,41032999 +) +(1,16550:6630773,41717854:25952256,407923,9908 +h1,16550:6630773,41717854:0,0,0 +g1,16550:7626635,41717854 +g1,16550:8290543,41717854 +g1,16550:8954451,41717854 +g1,16550:9286405,41717854 +g1,16550:9618359,41717854 +g1,16550:9950313,41717854 +g1,16550:10282267,41717854 +g1,16550:10614221,41717854 +g1,16550:10946175,41717854 +g1,16550:11278129,41717854 +g1,16550:11610083,41717854 +g1,16550:11942037,41717854 +g1,16550:12273991,41717854 +g1,16550:12605945,41717854 +g1,16550:12937899,41717854 +g1,16550:13269853,41717854 +g1,16550:13601807,41717854 +g1,16550:13933761,41717854 +g1,16550:14265715,41717854 +g1,16550:14597669,41717854 +g1,16550:15261577,41717854 +g1,16550:15593531,41717854 +g1,16550:15925485,41717854 +g1,16550:16257439,41717854 +g1,16550:16589393,41717854 +g1,16550:16921347,41717854 +g1,16550:17253301,41717854 +g1,16550:17585255,41717854 +g1,16550:17917209,41717854 +g1,16550:18249163,41717854 +g1,16550:18581117,41717854 +g1,16550:18913071,41717854 +g1,16550:19245025,41717854 +g1,16550:19576979,41717854 +g1,16550:20240887,41717854 +g1,16550:20572841,41717854 +g1,16550:20904795,41717854 +g1,16550:21236749,41717854 +g1,16550:21568703,41717854 +h1,16550:21900657,41717854:0,0,0 +k1,16550:32583029,41717854:10682372 +g1,16550:32583029,41717854 +) +] +) +g1,16551:32583029,41727762 +g1,16551:6630773,41727762 +g1,16551:6630773,41727762 +g1,16551:32583029,41727762 +g1,16551:32583029,41727762 +) +h1,16551:6630773,41924370:0,0,0 +v1,16555:6630773,42789450:0,393216,0 +(1,16675:6630773,45015135:25952256,2618901,0 +g1,16675:6630773,45015135 +g1,16675:6237557,45015135 +r1,16675:6368629,45015135:131072,2618901,0 +g1,16675:6567858,45015135 +g1,16675:6764466,45015135 +[1,16675:6764466,45015135:25818563,2618901,0 +(1,16556:6764466,43150627:25818563,754393,260573 +(1,16555:6764466,43150627:0,754393,260573 +r1,16675:8010564,43150627:1246098,1014966,260573 +k1,16555:6764466,43150627:-1246098 +) +(1,16555:6764466,43150627:1246098,754393,260573 +) +k1,16555:8162542,43150627:151978 +k1,16555:8490222,43150627:327680 +k1,16555:10063021,43150627:151978 +k1,16555:10746496,43150627:151978 +k1,16555:13781404,43150627:151979 +k1,16555:18134895,43150627:151978 +k1,16555:19234524,43150627:151978 +k1,16555:20775865,43150627:151978 +k1,16555:23134440,43150627:151978 +k1,16555:24477863,43150627:151978 +k1,16555:27098582,43150627:151978 +k1,16555:27878396,43150627:151979 +k1,16555:29128102,43150627:151978 +k1,16555:30647161,43150627:151978 +k1,16555:31485301,43150627:151978 +k1,16555:32583029,43150627:0 +) +(1,16556:6764466,44015707:25818563,505283,134348 +k1,16555:8790796,44015707:214915 +k1,16555:11472486,44015707:214915 +k1,16555:12338829,44015707:214915 +k1,16555:14108913,44015707:214915 +(1,16555:14108913,44015707:0,459977,115847 +r1,16675:17280873,44015707:3171960,575824,115847 +k1,16555:14108913,44015707:-3171960 +) +(1,16555:14108913,44015707:3171960,459977,115847 +k1,16555:14108913,44015707:3277 +h1,16555:17277596,44015707:0,411205,112570 +) +k1,16555:17669458,44015707:214915 +k1,16555:20767302,44015707:214915 +k1,16555:22509861,44015707:214915 +(1,16555:22509861,44015707:0,459977,122846 +r1,16675:26033533,44015707:3523672,582823,122846 +k1,16555:22509861,44015707:-3523672 +) +(1,16555:22509861,44015707:3523672,459977,122846 +k1,16555:22509861,44015707:3277 +h1,16555:26030256,44015707:0,411205,112570 +) +k1,16555:26248448,44015707:214915 +k1,16555:27149525,44015707:214915 +k1,16555:28383525,44015707:214915 +k1,16555:30200140,44015707:214915 +k1,16555:32583029,44015707:0 +) +(1,16556:6764466,44880787:25818563,513147,134348 +k1,16555:8760857,44880787:267551 +k1,16555:9498301,44880787:267551 +k1,16555:11051667,44880787:267550 +k1,16555:12846862,44880787:267551 +k1,16555:15345914,44880787:267551 +k1,16555:18722493,44880787:267551 +k1,16555:20383994,44880787:267550 +k1,16555:21670630,44880787:267551 +k1,16555:24821110,44880787:267551 +k1,16555:28895647,44880787:267551 +k1,16555:29779235,44880787:267550 +k1,16555:30402646,44880787:267551 +k1,16555:32583029,44880787:0 +) +] +g1,16675:32583029,45015135 +) ] (1,16675:32583029,45706769:0,0,0 g1,16675:32583029,45706769 @@ -284246,8677 +280283,8775 @@ g1,16675:-473656,-710413 ] ) ] -!28041 -}283 -Input:2439:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2440:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2441:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2442:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2443:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!482 -{284 -[1,16760:4262630,47279633:28320399,43253760,0 -(1,16760:4262630,4025873:0,0,0 -[1,16760:-473656,4025873:0,0,0 -(1,16760:-473656,-710413:0,0,0 -(1,16760:-473656,-644877:0,0,0 -k1,16760:-473656,-644877:-65536 +!34019 +}266 +!12 +{267 +[1,16675:4262630,47279633:28320399,43253760,0 +(1,16675:4262630,4025873:0,0,0 +[1,16675:-473656,4025873:0,0,0 +(1,16675:-473656,-710413:0,0,0 +(1,16675:-473656,-644877:0,0,0 +k1,16675:-473656,-644877:-65536 ) -(1,16760:-473656,4736287:0,0,0 -k1,16760:-473656,4736287:5209943 +(1,16675:-473656,4736287:0,0,0 +k1,16675:-473656,4736287:5209943 ) -g1,16760:-473656,-710413 +g1,16675:-473656,-710413 ) ] ) -[1,16760:6630773,47279633:25952256,43253760,0 -[1,16760:6630773,4812305:25952256,786432,0 -(1,16760:6630773,4812305:25952256,505283,126483 -(1,16760:6630773,4812305:25952256,505283,126483 -g1,16760:3078558,4812305 -[1,16760:3078558,4812305:0,0,0 -(1,16760:3078558,2439708:0,1703936,0 -k1,16760:1358238,2439708:-1720320 -(1,15243:1358238,2439708:1720320,1703936,0 -(1,15243:1358238,2439708:1179648,16384,0 -r1,16760:2537886,2439708:1179648,16384,0 +[1,16675:6630773,47279633:25952256,43253760,0 +[1,16675:6630773,4812305:25952256,786432,0 +(1,16675:6630773,4812305:25952256,505283,134348 +(1,16675:6630773,4812305:25952256,505283,134348 +g1,16675:3078558,4812305 +[1,16675:3078558,4812305:0,0,0 +(1,16675:3078558,2439708:0,1703936,0 +k1,16675:1358238,2439708:-1720320 +(1,15456:1358238,2439708:1720320,1703936,0 +(1,15456:1358238,2439708:1179648,16384,0 +r1,16675:2537886,2439708:1179648,16384,0 ) -g1,15243:3062174,2439708 -(1,15243:3062174,2439708:16384,1703936,0 -[1,15243:3062174,2439708:25952256,1703936,0 -(1,15243:3062174,1915420:25952256,1179648,0 -(1,15243:3062174,1915420:16384,1179648,0 -r1,16760:3078558,1915420:16384,1179648,0 +g1,15456:3062174,2439708 +(1,15456:3062174,2439708:16384,1703936,0 +[1,15456:3062174,2439708:25952256,1703936,0 +(1,15456:3062174,1915420:25952256,1179648,0 +(1,15456:3062174,1915420:16384,1179648,0 +r1,16675:3078558,1915420:16384,1179648,0 ) -k1,15243:29014430,1915420:25935872 -g1,15243:29014430,1915420 +k1,15456:29014430,1915420:25935872 +g1,15456:29014430,1915420 ) ] ) ) ) ] -[1,16760:3078558,4812305:0,0,0 -(1,16760:3078558,2439708:0,1703936,0 -g1,16760:29030814,2439708 -g1,16760:36135244,2439708 -(1,15243:36135244,2439708:1720320,1703936,0 -(1,15243:36135244,2439708:16384,1703936,0 -[1,15243:36135244,2439708:25952256,1703936,0 -(1,15243:36135244,1915420:25952256,1179648,0 -(1,15243:36135244,1915420:16384,1179648,0 -r1,16760:36151628,1915420:16384,1179648,0 +[1,16675:3078558,4812305:0,0,0 +(1,16675:3078558,2439708:0,1703936,0 +g1,16675:29030814,2439708 +g1,16675:36135244,2439708 +(1,15456:36135244,2439708:1720320,1703936,0 +(1,15456:36135244,2439708:16384,1703936,0 +[1,15456:36135244,2439708:25952256,1703936,0 +(1,15456:36135244,1915420:25952256,1179648,0 +(1,15456:36135244,1915420:16384,1179648,0 +r1,16675:36151628,1915420:16384,1179648,0 ) -k1,15243:62087500,1915420:25935872 -g1,15243:62087500,1915420 +k1,15456:62087500,1915420:25935872 +g1,15456:62087500,1915420 ) ] ) -g1,15243:36675916,2439708 -(1,15243:36675916,2439708:1179648,16384,0 -r1,16760:37855564,2439708:1179648,16384,0 +g1,15456:36675916,2439708 +(1,15456:36675916,2439708:1179648,16384,0 +r1,16675:37855564,2439708:1179648,16384,0 ) ) -k1,16760:3078556,2439708:-34777008 +k1,16675:3078556,2439708:-34777008 ) ] -[1,16760:3078558,4812305:0,0,0 -(1,16760:3078558,49800853:0,16384,2228224 -k1,16760:1358238,49800853:-1720320 -(1,15243:1358238,49800853:1720320,16384,2228224 -(1,15243:1358238,49800853:1179648,16384,0 -r1,16760:2537886,49800853:1179648,16384,0 +[1,16675:3078558,4812305:0,0,0 +(1,16675:3078558,49800853:0,16384,2228224 +k1,16675:1358238,49800853:-1720320 +(1,15456:1358238,49800853:1720320,16384,2228224 +(1,15456:1358238,49800853:1179648,16384,0 +r1,16675:2537886,49800853:1179648,16384,0 ) -g1,15243:3062174,49800853 -(1,15243:3062174,52029077:16384,1703936,0 -[1,15243:3062174,52029077:25952256,1703936,0 -(1,15243:3062174,51504789:25952256,1179648,0 -(1,15243:3062174,51504789:16384,1179648,0 -r1,16760:3078558,51504789:16384,1179648,0 +g1,15456:3062174,49800853 +(1,15456:3062174,52029077:16384,1703936,0 +[1,15456:3062174,52029077:25952256,1703936,0 +(1,15456:3062174,51504789:25952256,1179648,0 +(1,15456:3062174,51504789:16384,1179648,0 +r1,16675:3078558,51504789:16384,1179648,0 ) -k1,15243:29014430,51504789:25935872 -g1,15243:29014430,51504789 +k1,15456:29014430,51504789:25935872 +g1,15456:29014430,51504789 ) ] ) ) ) ] -[1,16760:3078558,4812305:0,0,0 -(1,16760:3078558,49800853:0,16384,2228224 -g1,16760:29030814,49800853 -g1,16760:36135244,49800853 -(1,15243:36135244,49800853:1720320,16384,2228224 -(1,15243:36135244,52029077:16384,1703936,0 -[1,15243:36135244,52029077:25952256,1703936,0 -(1,15243:36135244,51504789:25952256,1179648,0 -(1,15243:36135244,51504789:16384,1179648,0 -r1,16760:36151628,51504789:16384,1179648,0 +[1,16675:3078558,4812305:0,0,0 +(1,16675:3078558,49800853:0,16384,2228224 +g1,16675:29030814,49800853 +g1,16675:36135244,49800853 +(1,15456:36135244,49800853:1720320,16384,2228224 +(1,15456:36135244,52029077:16384,1703936,0 +[1,15456:36135244,52029077:25952256,1703936,0 +(1,15456:36135244,51504789:25952256,1179648,0 +(1,15456:36135244,51504789:16384,1179648,0 +r1,16675:36151628,51504789:16384,1179648,0 ) -k1,15243:62087500,51504789:25935872 -g1,15243:62087500,51504789 +k1,15456:62087500,51504789:25935872 +g1,15456:62087500,51504789 ) ] ) -g1,15243:36675916,49800853 -(1,15243:36675916,49800853:1179648,16384,0 -r1,16760:37855564,49800853:1179648,16384,0 +g1,15456:36675916,49800853 +(1,15456:36675916,49800853:1179648,16384,0 +r1,16675:37855564,49800853:1179648,16384,0 ) ) -k1,16760:3078556,49800853:-34777008 +k1,16675:3078556,49800853:-34777008 ) ] -g1,16760:6630773,4812305 -g1,16760:6630773,4812305 -g1,16760:8364200,4812305 -g1,16760:12785258,4812305 -g1,16760:14347636,4812305 -g1,16760:16554232,4812305 -k1,16760:31387652,4812305:14833420 +g1,16675:6630773,4812305 +k1,16675:23311652,4812305:15485502 +g1,16675:23960458,4812305 +g1,16675:27572802,4812305 +g1,16675:29306229,4812305 ) ) ] -[1,16760:6630773,45706769:25952256,40108032,0 -(1,16760:6630773,45706769:25952256,40108032,0 -(1,16760:6630773,45706769:0,0,0 -g1,16760:6630773,45706769 +[1,16675:6630773,45706769:25952256,40108032,0 +(1,16675:6630773,45706769:25952256,40108032,0 +(1,16675:6630773,45706769:0,0,0 +g1,16675:6630773,45706769 ) -[1,16760:6630773,45706769:25952256,40108032,0 +[1,16675:6630773,45706769:25952256,40108032,0 v1,16675:6630773,6254097:0,393216,0 -(1,16675:6630773,12457509:25952256,6596628,196608 -g1,16675:6630773,12457509 -g1,16675:6630773,12457509 -g1,16675:6434165,12457509 -(1,16675:6434165,12457509:0,6596628,196608 -r1,16760:32779637,12457509:26345472,6793236,196608 -k1,16675:6434165,12457509:-26345472 -) -(1,16675:6434165,12457509:26345472,6596628,196608 -[1,16675:6630773,12457509:25952256,6400020,0 -(1,16662:6630773,6468007:25952256,410518,107478 -(1,16661:6630773,6468007:0,0,0 -g1,16661:6630773,6468007 -g1,16661:6630773,6468007 -g1,16661:6303093,6468007 -(1,16661:6303093,6468007:0,0,0 -) -g1,16661:6630773,6468007 -) -k1,16662:6630773,6468007:0 -g1,16662:10424522,6468007 -g1,16662:11056814,6468007 -g1,16662:14218271,6468007 -g1,16662:14850563,6468007 -g1,16662:15482855,6468007 -h1,16662:18644312,6468007:0,0,0 -k1,16662:32583029,6468007:13938717 -g1,16662:32583029,6468007 -) -(1,16666:6630773,7789545:25952256,410518,107478 -g1,16666:7579210,7789545 -g1,16666:10108376,7789545 -g1,16666:11689105,7789545 -g1,16666:12953688,7789545 -g1,16666:13585980,7789545 -k1,16666:32583029,7789545:14887155 -g1,16666:32583029,7789545 -) -(1,16674:6630773,8455723:25952256,404226,6290 -(1,16666:6630773,8455723:0,0,0 -g1,16666:6630773,8455723 -g1,16666:6630773,8455723 -g1,16666:6303093,8455723 -(1,16666:6303093,8455723:0,0,0 -) -g1,16666:6630773,8455723 -) -g1,16674:7579210,8455723 -g1,16674:8211502,8455723 -g1,16674:8843794,8455723 -g1,16674:11372960,8455723 -g1,16674:12005252,8455723 -g1,16674:12637544,8455723 -h1,16674:12953690,8455723:0,0,0 -k1,16674:32583030,8455723:19629340 -g1,16674:32583030,8455723 -) -(1,16674:6630773,9121901:25952256,404226,6290 -h1,16674:6630773,9121901:0,0,0 -g1,16674:7579210,9121901 -g1,16674:7895356,9121901 -g1,16674:8211502,9121901 -g1,16674:8527648,9121901 -g1,16674:8843794,9121901 -g1,16674:10108377,9121901 -h1,16674:12321397,9121901:0,0,0 -k1,16674:32583029,9121901:20261632 -g1,16674:32583029,9121901 -) -(1,16674:6630773,9788079:25952256,404226,6290 -h1,16674:6630773,9788079:0,0,0 -g1,16674:7579210,9788079 -g1,16674:7895356,9788079 -g1,16674:8211502,9788079 -g1,16674:10108377,9788079 -k1,16674:10108377,9788079:0 -h1,16674:11689106,9788079:0,0,0 -k1,16674:32583030,9788079:20893924 -g1,16674:32583030,9788079 -) -(1,16674:6630773,10454257:25952256,388497,4718 -h1,16674:6630773,10454257:0,0,0 -g1,16674:7579210,10454257 -g1,16674:8211502,10454257 -g1,16674:8527648,10454257 -g1,16674:8843794,10454257 -g1,16674:9159940,10454257 -g1,16674:9476086,10454257 -g1,16674:10108378,10454257 -h1,16674:10424524,10454257:0,0,0 -k1,16674:32583028,10454257:22158504 -g1,16674:32583028,10454257 -) -(1,16674:6630773,11120435:25952256,388497,4718 -h1,16674:6630773,11120435:0,0,0 -g1,16674:7579210,11120435 -g1,16674:8211502,11120435 -g1,16674:8527648,11120435 -g1,16674:8843794,11120435 -g1,16674:9159940,11120435 -g1,16674:9476086,11120435 -g1,16674:10108378,11120435 -h1,16674:10424524,11120435:0,0,0 -k1,16674:32583028,11120435:22158504 -g1,16674:32583028,11120435 -) -(1,16674:6630773,11786613:25952256,388497,9436 -h1,16674:6630773,11786613:0,0,0 -g1,16674:7579210,11786613 -g1,16674:8211502,11786613 -g1,16674:8527648,11786613 -g1,16674:8843794,11786613 -g1,16674:9159940,11786613 -g1,16674:9476086,11786613 -g1,16674:10108378,11786613 -h1,16674:10424524,11786613:0,0,0 -k1,16674:32583028,11786613:22158504 -g1,16674:32583028,11786613 -) -(1,16674:6630773,12452791:25952256,379060,4718 -h1,16674:6630773,12452791:0,0,0 -g1,16674:7579210,12452791 -g1,16674:8211502,12452791 -g1,16674:8527648,12452791 -g1,16674:8843794,12452791 -g1,16674:9159940,12452791 -g1,16674:9476086,12452791 -g1,16674:10108378,12452791 -h1,16674:10424524,12452791:0,0,0 -k1,16674:32583028,12452791:22158504 -g1,16674:32583028,12452791 -) -] -) -g1,16675:32583029,12457509 -g1,16675:6630773,12457509 -g1,16675:6630773,12457509 -g1,16675:32583029,12457509 -g1,16675:32583029,12457509 -) -h1,16675:6630773,12654117:0,0,0 -v1,16679:6630773,14368871:0,393216,0 -(1,16694:6630773,20573855:25952256,6598200,196608 -g1,16694:6630773,20573855 -g1,16694:6630773,20573855 -g1,16694:6434165,20573855 -(1,16694:6434165,20573855:0,6598200,196608 -r1,16760:32779637,20573855:26345472,6794808,196608 -k1,16694:6434165,20573855:-26345472 -) -(1,16694:6434165,20573855:26345472,6598200,196608 -[1,16694:6630773,20573855:25952256,6401592,0 -(1,16681:6630773,14582781:25952256,410518,107478 -(1,16680:6630773,14582781:0,0,0 -g1,16680:6630773,14582781 -g1,16680:6630773,14582781 -g1,16680:6303093,14582781 -(1,16680:6303093,14582781:0,0,0 -) -g1,16680:6630773,14582781 -) -k1,16681:6630773,14582781:0 -g1,16681:10424522,14582781 -g1,16681:11056814,14582781 -g1,16681:14534417,14582781 -g1,16681:15166709,14582781 -g1,16681:15799001,14582781 -h1,16681:18644312,14582781:0,0,0 -k1,16681:32583029,14582781:13938717 -g1,16681:32583029,14582781 -) -(1,16685:6630773,15904319:25952256,410518,107478 -g1,16685:7579210,15904319 -g1,16685:10108376,15904319 -g1,16685:11689105,15904319 -g1,16685:12953688,15904319 -g1,16685:13585980,15904319 -k1,16685:32583029,15904319:14887155 -g1,16685:32583029,15904319 -) -(1,16693:6630773,16570497:25952256,404226,6290 -(1,16685:6630773,16570497:0,0,0 -g1,16685:6630773,16570497 -g1,16685:6630773,16570497 -g1,16685:6303093,16570497 -(1,16685:6303093,16570497:0,0,0 -) -g1,16685:6630773,16570497 -) -g1,16693:7579210,16570497 -g1,16693:8211502,16570497 -g1,16693:8843794,16570497 -g1,16693:11372960,16570497 -g1,16693:12005252,16570497 -g1,16693:12637544,16570497 -h1,16693:12953690,16570497:0,0,0 -k1,16693:32583030,16570497:19629340 -g1,16693:32583030,16570497 -) -(1,16693:6630773,17236675:25952256,404226,6290 -h1,16693:6630773,17236675:0,0,0 -g1,16693:7579210,17236675 -g1,16693:7895356,17236675 -g1,16693:8211502,17236675 -g1,16693:8527648,17236675 -g1,16693:8843794,17236675 -g1,16693:10108377,17236675 -h1,16693:12321397,17236675:0,0,0 -k1,16693:32583029,17236675:20261632 -g1,16693:32583029,17236675 -) -(1,16693:6630773,17902853:25952256,404226,6290 -h1,16693:6630773,17902853:0,0,0 -g1,16693:7579210,17902853 -g1,16693:7895356,17902853 -g1,16693:8211502,17902853 -g1,16693:10108377,17902853 -k1,16693:10108377,17902853:0 -h1,16693:11689106,17902853:0,0,0 -k1,16693:32583030,17902853:20893924 -g1,16693:32583030,17902853 -) -(1,16693:6630773,18569031:25952256,404226,6290 -h1,16693:6630773,18569031:0,0,0 -g1,16693:7579210,18569031 -g1,16693:8211502,18569031 -g1,16693:8527648,18569031 -g1,16693:8843794,18569031 -g1,16693:9159940,18569031 -g1,16693:9476086,18569031 -g1,16693:10108378,18569031 -h1,16693:10424524,18569031:0,0,0 -k1,16693:32583028,18569031:22158504 -g1,16693:32583028,18569031 -) -(1,16693:6630773,19235209:25952256,404226,6290 -h1,16693:6630773,19235209:0,0,0 -g1,16693:7579210,19235209 -g1,16693:8211502,19235209 -g1,16693:8527648,19235209 -g1,16693:8843794,19235209 -g1,16693:9159940,19235209 -g1,16693:9476086,19235209 -g1,16693:10108378,19235209 -h1,16693:10424524,19235209:0,0,0 -k1,16693:32583028,19235209:22158504 -g1,16693:32583028,19235209 -) -(1,16693:6630773,19901387:25952256,404226,9436 -h1,16693:6630773,19901387:0,0,0 -g1,16693:7579210,19901387 -g1,16693:8211502,19901387 -g1,16693:8527648,19901387 -g1,16693:8843794,19901387 -g1,16693:9159940,19901387 -g1,16693:9476086,19901387 -g1,16693:10108378,19901387 -h1,16693:10424524,19901387:0,0,0 -k1,16693:32583028,19901387:22158504 -g1,16693:32583028,19901387 -) -(1,16693:6630773,20567565:25952256,404226,6290 -h1,16693:6630773,20567565:0,0,0 -g1,16693:7579210,20567565 -g1,16693:8211502,20567565 -g1,16693:8527648,20567565 -g1,16693:8843794,20567565 -g1,16693:9159940,20567565 -g1,16693:9476086,20567565 -g1,16693:10108378,20567565 -h1,16693:10424524,20567565:0,0,0 -k1,16693:32583028,20567565:22158504 -g1,16693:32583028,20567565 -) -] -) -g1,16694:32583029,20573855 -g1,16694:6630773,20573855 -g1,16694:6630773,20573855 -g1,16694:32583029,20573855 -g1,16694:32583029,20573855 -) -h1,16694:6630773,20770463:0,0,0 -(1,16698:6630773,22136239:25952256,513147,134348 -h1,16697:6630773,22136239:983040,0,0 -g1,16697:8300630,22136239 -g1,16697:11178971,22136239 -g1,16697:13573001,22136239 -g1,16697:15306428,22136239 -g1,16697:17073278,22136239 -(1,16697:17073278,22136239:0,414482,115847 -r1,16760:17431544,22136239:358266,530329,115847 -k1,16697:17073278,22136239:-358266 -) -(1,16697:17073278,22136239:358266,414482,115847 -k1,16697:17073278,22136239:3277 -h1,16697:17428267,22136239:0,411205,112570 -) -g1,16697:17630773,22136239 -g1,16697:19114508,22136239 -g1,16697:20129005,22136239 -g1,16697:21394505,22136239 -g1,16697:23068949,22136239 -g1,16697:23624038,22136239 -g1,16697:25804420,22136239 -g1,16697:26619687,22136239 -(1,16697:26619687,22136239:0,414482,115847 -r1,16760:26977953,22136239:358266,530329,115847 -k1,16697:26619687,22136239:-358266 -) -(1,16697:26619687,22136239:358266,414482,115847 -k1,16697:26619687,22136239:3277 -h1,16697:26974676,22136239:0,411205,112570 -) -k1,16698:32583029,22136239:5431406 -g1,16698:32583029,22136239 -) -v1,16700:6630773,23326705:0,393216,0 -(1,16712:6630773,27536301:25952256,4602812,196608 -g1,16712:6630773,27536301 -g1,16712:6630773,27536301 -g1,16712:6434165,27536301 -(1,16712:6434165,27536301:0,4602812,196608 -r1,16760:32779637,27536301:26345472,4799420,196608 -k1,16712:6434165,27536301:-26345472 -) -(1,16712:6434165,27536301:26345472,4602812,196608 -[1,16712:6630773,27536301:25952256,4406204,0 -(1,16702:6630773,23540615:25952256,410518,107478 -(1,16701:6630773,23540615:0,0,0 -g1,16701:6630773,23540615 -g1,16701:6630773,23540615 -g1,16701:6303093,23540615 -(1,16701:6303093,23540615:0,0,0 -) -g1,16701:6630773,23540615 -) -k1,16702:6630773,23540615:0 -g1,16702:10424522,23540615 -g1,16702:11056814,23540615 -g1,16702:14218271,23540615 -g1,16702:14850563,23540615 -g1,16702:15482855,23540615 -h1,16702:18644312,23540615:0,0,0 -k1,16702:32583029,23540615:13938717 -g1,16702:32583029,23540615 -) -(1,16706:6630773,24862153:25952256,410518,107478 -g1,16706:7579210,24862153 -g1,16706:10108376,24862153 -g1,16706:11689105,24862153 -g1,16706:12953688,24862153 -g1,16706:13585980,24862153 -k1,16706:32583029,24862153:14887155 -g1,16706:32583029,24862153 -) -(1,16711:6630773,25528331:25952256,404226,6290 -(1,16706:6630773,25528331:0,0,0 -g1,16706:6630773,25528331 -g1,16706:6630773,25528331 -g1,16706:6303093,25528331 -(1,16706:6303093,25528331:0,0,0 -) -g1,16706:6630773,25528331 -) -g1,16711:7579210,25528331 -g1,16711:8211502,25528331 -g1,16711:8843794,25528331 -g1,16711:11372960,25528331 -g1,16711:12005252,25528331 -g1,16711:12637544,25528331 -h1,16711:12953690,25528331:0,0,0 -k1,16711:32583030,25528331:19629340 -g1,16711:32583030,25528331 -) -(1,16711:6630773,26194509:25952256,404226,6290 -h1,16711:6630773,26194509:0,0,0 -g1,16711:7579210,26194509 -g1,16711:7895356,26194509 -g1,16711:8211502,26194509 -g1,16711:8527648,26194509 -g1,16711:8843794,26194509 -g1,16711:10108377,26194509 -h1,16711:12321397,26194509:0,0,0 -k1,16711:32583029,26194509:20261632 -g1,16711:32583029,26194509 -) -(1,16711:6630773,26860687:25952256,404226,6290 -h1,16711:6630773,26860687:0,0,0 -g1,16711:7579210,26860687 -g1,16711:7895356,26860687 -g1,16711:8211502,26860687 -g1,16711:10108377,26860687 -k1,16711:10108377,26860687:0 -h1,16711:11689106,26860687:0,0,0 -k1,16711:32583030,26860687:20893924 -g1,16711:32583030,26860687 -) -(1,16711:6630773,27526865:25952256,388497,9436 -h1,16711:6630773,27526865:0,0,0 -g1,16711:7579210,27526865 -g1,16711:8211502,27526865 -g1,16711:8527648,27526865 -g1,16711:8843794,27526865 -g1,16711:9159940,27526865 -g1,16711:9476086,27526865 -g1,16711:10108378,27526865 -h1,16711:10424524,27526865:0,0,0 -k1,16711:32583028,27526865:22158504 -g1,16711:32583028,27526865 -) -] -) -g1,16712:32583029,27536301 -g1,16712:6630773,27536301 -g1,16712:6630773,27536301 -g1,16712:32583029,27536301 -g1,16712:32583029,27536301 -) -h1,16712:6630773,27732909:0,0,0 -v1,16716:6630773,29447663:0,393216,0 -(1,16728:6630773,33657259:25952256,4602812,196608 -g1,16728:6630773,33657259 -g1,16728:6630773,33657259 -g1,16728:6434165,33657259 -(1,16728:6434165,33657259:0,4602812,196608 -r1,16760:32779637,33657259:26345472,4799420,196608 -k1,16728:6434165,33657259:-26345472 -) -(1,16728:6434165,33657259:26345472,4602812,196608 -[1,16728:6630773,33657259:25952256,4406204,0 -(1,16718:6630773,29661573:25952256,410518,107478 -(1,16717:6630773,29661573:0,0,0 -g1,16717:6630773,29661573 -g1,16717:6630773,29661573 -g1,16717:6303093,29661573 -(1,16717:6303093,29661573:0,0,0 -) -g1,16717:6630773,29661573 -) -k1,16718:6630773,29661573:0 -g1,16718:10424522,29661573 -g1,16718:11056814,29661573 -g1,16718:14534417,29661573 -g1,16718:15166709,29661573 -g1,16718:15799001,29661573 -h1,16718:18644312,29661573:0,0,0 -k1,16718:32583029,29661573:13938717 -g1,16718:32583029,29661573 -) -(1,16722:6630773,30983111:25952256,410518,107478 -g1,16722:7579210,30983111 -g1,16722:10108376,30983111 -g1,16722:11689105,30983111 -g1,16722:12953688,30983111 -g1,16722:13585980,30983111 -k1,16722:32583029,30983111:14887155 -g1,16722:32583029,30983111 -) -(1,16727:6630773,31649289:25952256,404226,6290 -(1,16722:6630773,31649289:0,0,0 -g1,16722:6630773,31649289 -g1,16722:6630773,31649289 -g1,16722:6303093,31649289 -(1,16722:6303093,31649289:0,0,0 -) -g1,16722:6630773,31649289 -) -g1,16727:7579210,31649289 -g1,16727:8211502,31649289 -g1,16727:8843794,31649289 -g1,16727:11372960,31649289 -g1,16727:12005252,31649289 -g1,16727:12637544,31649289 -h1,16727:12953690,31649289:0,0,0 -k1,16727:32583030,31649289:19629340 -g1,16727:32583030,31649289 -) -(1,16727:6630773,32315467:25952256,404226,6290 -h1,16727:6630773,32315467:0,0,0 -g1,16727:7579210,32315467 -g1,16727:7895356,32315467 -g1,16727:8211502,32315467 -g1,16727:8527648,32315467 -g1,16727:8843794,32315467 -g1,16727:10108377,32315467 -h1,16727:12321397,32315467:0,0,0 -k1,16727:32583029,32315467:20261632 -g1,16727:32583029,32315467 -) -(1,16727:6630773,32981645:25952256,404226,6290 -h1,16727:6630773,32981645:0,0,0 -g1,16727:7579210,32981645 -g1,16727:7895356,32981645 -g1,16727:8211502,32981645 -g1,16727:10108377,32981645 -k1,16727:10108377,32981645:0 -h1,16727:11689106,32981645:0,0,0 -k1,16727:32583030,32981645:20893924 -g1,16727:32583030,32981645 -) -(1,16727:6630773,33647823:25952256,404226,9436 -h1,16727:6630773,33647823:0,0,0 -g1,16727:7579210,33647823 -g1,16727:8211502,33647823 -g1,16727:8527648,33647823 -g1,16727:8843794,33647823 -g1,16727:9159940,33647823 -g1,16727:9476086,33647823 -g1,16727:10108378,33647823 -h1,16727:10424524,33647823:0,0,0 -k1,16727:32583028,33647823:22158504 -g1,16727:32583028,33647823 -) -] -) -g1,16728:32583029,33657259 -g1,16728:6630773,33657259 -g1,16728:6630773,33657259 -g1,16728:32583029,33657259 -g1,16728:32583029,33657259 -) -h1,16728:6630773,33853867:0,0,0 -(1,16732:6630773,35219643:25952256,513147,126483 -h1,16731:6630773,35219643:983040,0,0 -k1,16731:8730186,35219643:162824 -k1,16731:10290893,35219643:162824 -k1,16731:12827430,35219643:162823 -k1,16731:15373143,35219643:162824 -(1,16731:15373143,35219643:0,452978,115847 -r1,16760:16434832,35219643:1061689,568825,115847 -k1,16731:15373143,35219643:-1061689 -) -(1,16731:15373143,35219643:1061689,452978,115847 -k1,16731:15373143,35219643:3277 -h1,16731:16431555,35219643:0,411205,112570 -) -k1,16731:16597656,35219643:162824 -k1,16731:17376518,35219643:162824 -(1,16731:17376518,35219643:0,459977,115847 -r1,16760:20196767,35219643:2820249,575824,115847 -k1,16731:17376518,35219643:-2820249 -) -(1,16731:17376518,35219643:2820249,459977,115847 -k1,16731:17376518,35219643:3277 -h1,16731:20193490,35219643:0,411205,112570 -) -k1,16731:20359591,35219643:162824 -k1,16731:21173842,35219643:162823 -k1,16731:25369752,35219643:162824 -k1,16731:26551661,35219643:162824 -k1,16731:27806970,35219643:162824 -k1,16731:28636949,35219643:162823 -(1,16731:28636949,35219643:0,452978,115847 -r1,16760:29346927,35219643:709978,568825,115847 -k1,16731:28636949,35219643:-709978 -) -(1,16731:28636949,35219643:709978,452978,115847 -k1,16731:28636949,35219643:3277 -h1,16731:29343650,35219643:0,411205,112570 -) -k1,16731:29509751,35219643:162824 -k1,16731:30324003,35219643:162824 -k1,16731:32583029,35219643:0 -) -(1,16732:6630773,36061131:25952256,513147,7863 -g1,16731:8715473,36061131 -g1,16731:11627893,36061131 -g1,16731:14007505,36061131 -g1,16731:14954500,36061131 -g1,16731:17992093,36061131 -g1,16731:19138973,36061131 -k1,16732:32583029,36061131:10611590 -g1,16732:32583029,36061131 -) -v1,16734:6630773,37251597:0,393216,0 -(1,16750:6630773,44136723:25952256,7278342,196608 -g1,16750:6630773,44136723 -g1,16750:6630773,44136723 -g1,16750:6434165,44136723 -(1,16750:6434165,44136723:0,7278342,196608 -r1,16760:32779637,44136723:26345472,7474950,196608 -k1,16750:6434165,44136723:-26345472 -) -(1,16750:6434165,44136723:26345472,7278342,196608 -[1,16750:6630773,44136723:25952256,7081734,0 -(1,16736:6630773,37465507:25952256,410518,82312 -(1,16735:6630773,37465507:0,0,0 -g1,16735:6630773,37465507 -g1,16735:6630773,37465507 -g1,16735:6303093,37465507 -(1,16735:6303093,37465507:0,0,0 -) -g1,16735:6630773,37465507 -) -g1,16736:9792230,37465507 -g1,16736:10740668,37465507 -g1,16736:16115145,37465507 -g1,16736:17695874,37465507 -g1,16736:18328166,37465507 -h1,16736:19592749,37465507:0,0,0 -k1,16736:32583029,37465507:12990280 -g1,16736:32583029,37465507 -) -(1,16737:6630773,38131685:25952256,410518,107478 -h1,16737:6630773,38131685:0,0,0 -g1,16737:10424522,38131685 -g1,16737:11056814,38131685 -g1,16737:14534417,38131685 -g1,16737:15166709,38131685 -g1,16737:15799001,38131685 -g1,16737:19276604,38131685 -g1,16737:20225041,38131685 -g1,16737:20857333,38131685 -g1,16737:23702645,38131685 -g1,16737:24334937,38131685 -h1,16737:26547956,38131685:0,0,0 -k1,16737:32583029,38131685:6035073 -g1,16737:32583029,38131685 -) -(1,16749:6630773,38797863:25952256,404226,9436 -(1,16739:6630773,38797863:0,0,0 -g1,16739:6630773,38797863 -g1,16739:6630773,38797863 -g1,16739:6303093,38797863 -(1,16739:6303093,38797863:0,0,0 -) -g1,16739:6630773,38797863 -) -g1,16749:7579210,38797863 -g1,16749:8211502,38797863 -g1,16749:8843794,38797863 -g1,16749:11372960,38797863 -g1,16749:12005252,38797863 -g1,16749:12637544,38797863 -h1,16749:12953690,38797863:0,0,0 -k1,16749:32583030,38797863:19629340 -g1,16749:32583030,38797863 -) -(1,16749:6630773,39464041:25952256,404226,6290 -h1,16749:6630773,39464041:0,0,0 -g1,16749:7579210,39464041 -g1,16749:7895356,39464041 -g1,16749:8211502,39464041 -g1,16749:8527648,39464041 -g1,16749:10108377,39464041 -g1,16749:12637543,39464041 -h1,16749:14850563,39464041:0,0,0 -k1,16749:32583029,39464041:17732466 -g1,16749:32583029,39464041 -) -(1,16749:6630773,40130219:25952256,404226,6290 -h1,16749:6630773,40130219:0,0,0 -g1,16749:7579210,40130219 -g1,16749:7895356,40130219 -g1,16749:8211502,40130219 -g1,16749:10108377,40130219 -g1,16749:12005252,40130219 -g1,16749:12321398,40130219 -g1,16749:12637544,40130219 -k1,16749:12637544,40130219:0 -h1,16749:14218273,40130219:0,0,0 -k1,16749:32583029,40130219:18364756 -g1,16749:32583029,40130219 -) -(1,16749:6630773,40796397:25952256,404226,6290 -h1,16749:6630773,40796397:0,0,0 -g1,16749:7579210,40796397 -g1,16749:8211502,40796397 -g1,16749:8527648,40796397 -g1,16749:8843794,40796397 -g1,16749:9159940,40796397 -g1,16749:9476086,40796397 -g1,16749:10108378,40796397 -g1,16749:10740670,40796397 -g1,16749:11056816,40796397 -g1,16749:11372962,40796397 -g1,16749:11689108,40796397 -g1,16749:12005254,40796397 -g1,16749:12321400,40796397 -g1,16749:12637546,40796397 -h1,16749:12953692,40796397:0,0,0 -k1,16749:32583028,40796397:19629336 -g1,16749:32583028,40796397 -) -(1,16749:6630773,41462575:25952256,404226,6290 -h1,16749:6630773,41462575:0,0,0 -g1,16749:7579210,41462575 -g1,16749:8211502,41462575 -g1,16749:8527648,41462575 -g1,16749:8843794,41462575 -g1,16749:9159940,41462575 -g1,16749:9476086,41462575 -g1,16749:10108378,41462575 -g1,16749:10740670,41462575 -g1,16749:11056816,41462575 -g1,16749:11372962,41462575 -g1,16749:11689108,41462575 -g1,16749:12005254,41462575 -g1,16749:12321400,41462575 -g1,16749:12637546,41462575 -h1,16749:12953692,41462575:0,0,0 -k1,16749:32583028,41462575:19629336 -g1,16749:32583028,41462575 -) -(1,16749:6630773,42128753:25952256,404226,9436 -h1,16749:6630773,42128753:0,0,0 -g1,16749:7579210,42128753 -g1,16749:8211502,42128753 -g1,16749:8527648,42128753 -g1,16749:8843794,42128753 -g1,16749:9159940,42128753 -g1,16749:9476086,42128753 -g1,16749:10108378,42128753 -g1,16749:10740670,42128753 -g1,16749:11056816,42128753 -g1,16749:11372962,42128753 -g1,16749:11689108,42128753 -g1,16749:12005254,42128753 -g1,16749:12321400,42128753 -g1,16749:12637546,42128753 -h1,16749:12953692,42128753:0,0,0 -k1,16749:32583028,42128753:19629336 -g1,16749:32583028,42128753 -) -(1,16749:6630773,42794931:25952256,404226,6290 -h1,16749:6630773,42794931:0,0,0 -g1,16749:7579210,42794931 -g1,16749:8211502,42794931 -g1,16749:8527648,42794931 -g1,16749:8843794,42794931 -g1,16749:9159940,42794931 -g1,16749:9476086,42794931 -g1,16749:10108378,42794931 -g1,16749:10740670,42794931 -g1,16749:11056816,42794931 -g1,16749:11372962,42794931 -g1,16749:11689108,42794931 -g1,16749:12005254,42794931 -g1,16749:12321400,42794931 -g1,16749:12637546,42794931 -h1,16749:12953692,42794931:0,0,0 -k1,16749:32583028,42794931:19629336 -g1,16749:32583028,42794931 -) -(1,16749:6630773,43461109:25952256,379060,9436 -h1,16749:6630773,43461109:0,0,0 -g1,16749:7579210,43461109 -g1,16749:8211502,43461109 -g1,16749:8527648,43461109 -g1,16749:8843794,43461109 -g1,16749:9159940,43461109 -g1,16749:9476086,43461109 -g1,16749:10108378,43461109 -g1,16749:10740670,43461109 -g1,16749:11056816,43461109 -g1,16749:11372962,43461109 -g1,16749:11689108,43461109 -g1,16749:12005254,43461109 -g1,16749:12321400,43461109 -g1,16749:12637546,43461109 -k1,16749:12637546,43461109:0 -h1,16749:13902129,43461109:0,0,0 -k1,16749:32583029,43461109:18680900 -g1,16749:32583029,43461109 -) -(1,16749:6630773,44127287:25952256,404226,9436 -h1,16749:6630773,44127287:0,0,0 -g1,16749:7579210,44127287 -g1,16749:8211502,44127287 -g1,16749:8527648,44127287 -g1,16749:8843794,44127287 -g1,16749:9159940,44127287 -g1,16749:9476086,44127287 -g1,16749:10108378,44127287 -g1,16749:11689107,44127287 -g1,16749:12005253,44127287 -g1,16749:12321399,44127287 -g1,16749:12637545,44127287 -h1,16749:12953691,44127287:0,0,0 -k1,16749:32583029,44127287:19629338 -g1,16749:32583029,44127287 -) -] -) -g1,16750:32583029,44136723 -g1,16750:6630773,44136723 -g1,16750:6630773,44136723 -g1,16750:32583029,44136723 -g1,16750:32583029,44136723 -) -h1,16750:6630773,44333331:0,0,0 -] -(1,16760:32583029,45706769:0,0,0 -g1,16760:32583029,45706769 -) -) -] -(1,16760:6630773,47279633:25952256,0,0 -h1,16760:6630773,47279633:25952256,0,0 -) -] -(1,16760:4262630,4025873:0,0,0 -[1,16760:-473656,4025873:0,0,0 -(1,16760:-473656,-710413:0,0,0 -(1,16760:-473656,-710413:0,0,0 -g1,16760:-473656,-710413 -) -g1,16760:-473656,-710413 -) -] -) -] -!25313 -}284 -!12 -{285 -[1,16770:4262630,47279633:28320399,43253760,0 -(1,16770:4262630,4025873:0,0,0 -[1,16770:-473656,4025873:0,0,0 -(1,16770:-473656,-710413:0,0,0 -(1,16770:-473656,-644877:0,0,0 -k1,16770:-473656,-644877:-65536 -) -(1,16770:-473656,4736287:0,0,0 -k1,16770:-473656,4736287:5209943 -) -g1,16770:-473656,-710413 -) -] -) -[1,16770:6630773,47279633:25952256,43253760,0 -[1,16770:6630773,4812305:25952256,786432,0 -(1,16770:6630773,4812305:25952256,505283,134348 -(1,16770:6630773,4812305:25952256,505283,134348 -g1,16770:3078558,4812305 -[1,16770:3078558,4812305:0,0,0 -(1,16770:3078558,2439708:0,1703936,0 -k1,16770:1358238,2439708:-1720320 -(1,15243:1358238,2439708:1720320,1703936,0 -(1,15243:1358238,2439708:1179648,16384,0 -r1,16770:2537886,2439708:1179648,16384,0 -) -g1,15243:3062174,2439708 -(1,15243:3062174,2439708:16384,1703936,0 -[1,15243:3062174,2439708:25952256,1703936,0 -(1,15243:3062174,1915420:25952256,1179648,0 -(1,15243:3062174,1915420:16384,1179648,0 -r1,16770:3078558,1915420:16384,1179648,0 -) -k1,15243:29014430,1915420:25935872 -g1,15243:29014430,1915420 -) -] -) -) -) -] -[1,16770:3078558,4812305:0,0,0 -(1,16770:3078558,2439708:0,1703936,0 -g1,16770:29030814,2439708 -g1,16770:36135244,2439708 -(1,15243:36135244,2439708:1720320,1703936,0 -(1,15243:36135244,2439708:16384,1703936,0 -[1,15243:36135244,2439708:25952256,1703936,0 -(1,15243:36135244,1915420:25952256,1179648,0 -(1,15243:36135244,1915420:16384,1179648,0 -r1,16770:36151628,1915420:16384,1179648,0 -) -k1,15243:62087500,1915420:25935872 -g1,15243:62087500,1915420 +(1,16675:6630773,45706769:25952256,39845888,0 +g1,16675:6630773,45706769 +g1,16675:6237557,45706769 +r1,16675:6368629,45706769:131072,39845888,0 +g1,16675:6567858,45706769 +g1,16675:6764466,45706769 +[1,16675:6764466,45706769:25818563,39845888,0 +(1,16556:6764466,6374028:25818563,513147,134348 +k1,16555:9555754,6374028:279293 +k1,16555:10782697,6374028:279292 +k1,16555:12269819,6374028:279293 +k1,16555:15380266,6374028:279292 +k1,16555:16318851,6374028:279293 +k1,16555:18490823,6374028:279292 +k1,16555:21897494,6374028:279293 +k1,16555:23005816,6374028:279292 +k1,16555:27318195,6374028:279293 +k1,16555:28974398,6374028:279292 +k1,16555:30122043,6374028:279293 +k1,16555:31931601,6374028:279292 +k1,16555:32583029,6374028:0 +) +(1,16556:6764466,7239108:25818563,505283,134348 +k1,16555:8697022,7239108:216823 +k1,16555:9684549,7239108:216824 +k1,16555:12982875,7239108:216823 +k1,16555:13851126,7239108:216823 +k1,16555:15165678,7239108:216824 +k1,16555:20792498,7239108:216823 +k1,16555:22864645,7239108:216823 +k1,16555:24272913,7239108:216823 +k1,16555:25880411,7239108:216824 +k1,16555:26453094,7239108:216823 +k1,16555:29330679,7239108:216823 +k1,16555:31358918,7239108:216824 +k1,16555:32227169,7239108:216823 +k1,16555:32583029,7239108:0 +) +(1,16556:6764466,8104188:25818563,505283,7863 +k1,16556:32583028,8104188:23133552 +g1,16556:32583028,8104188 +) +v1,16558:6764466,8795821:0,393216,0 +(1,16578:6764466,13867964:25818563,5465359,196608 +g1,16578:6764466,13867964 +g1,16578:6764466,13867964 +g1,16578:6567858,13867964 +(1,16578:6567858,13867964:0,5465359,196608 +r1,16675:32779637,13867964:26211779,5661967,196608 +k1,16578:6567857,13867964:-26211780 +) +(1,16578:6567858,13867964:26211779,5465359,196608 +[1,16578:6764466,13867964:25818563,5268751,0 +(1,16560:6764466,9023652:25818563,424439,106246 +(1,16559:6764466,9023652:0,0,0 +g1,16559:6764466,9023652 +g1,16559:6764466,9023652 +g1,16559:6436786,9023652 +(1,16559:6436786,9023652:0,0,0 +) +g1,16559:6764466,9023652 +) +g1,16560:8756190,9023652 +g1,16560:9752052,9023652 +g1,16560:14731362,9023652 +g1,16560:15395270,9023652 +g1,16560:17055040,9023652 +g1,16560:19710672,9023652 +g1,16560:20374580,9023652 +g1,16560:26349751,9023652 +h1,16560:27345613,9023652:0,0,0 +k1,16560:32583029,9023652:5237416 +g1,16560:32583029,9023652 +) +(1,16561:6764466,9708507:25818563,431045,112852 +h1,16561:6764466,9708507:0,0,0 +k1,16561:6764466,9708507:0 +h1,16561:13403545,9708507:0,0,0 +k1,16561:32583029,9708507:19179484 +g1,16561:32583029,9708507 +) +(1,16565:6764466,10524434:25818563,424439,79822 +(1,16563:6764466,10524434:0,0,0 +g1,16563:6764466,10524434 +g1,16563:6764466,10524434 +g1,16563:6436786,10524434 +(1,16563:6436786,10524434:0,0,0 +) +g1,16563:6764466,10524434 +) +g1,16565:7760328,10524434 +g1,16565:9088144,10524434 +h1,16565:10747914,10524434:0,0,0 +k1,16565:32583030,10524434:21835116 +g1,16565:32583030,10524434 +) +(1,16567:6764466,11340361:25818563,424439,106246 +(1,16566:6764466,11340361:0,0,0 +g1,16566:6764466,11340361 +g1,16566:6764466,11340361 +g1,16566:6436786,11340361 +(1,16566:6436786,11340361:0,0,0 +) +g1,16566:6764466,11340361 +) +k1,16567:6764466,11340361:0 +h1,16567:10747914,11340361:0,0,0 +k1,16567:32583030,11340361:21835116 +g1,16567:32583030,11340361 +) +(1,16571:6764466,12156288:25818563,431045,79822 +(1,16569:6764466,12156288:0,0,0 +g1,16569:6764466,12156288 +g1,16569:6764466,12156288 +g1,16569:6436786,12156288 +(1,16569:6436786,12156288:0,0,0 +) +g1,16569:6764466,12156288 +) +g1,16571:7760328,12156288 +g1,16571:9088144,12156288 +g1,16571:12075729,12156288 +g1,16571:12407683,12156288 +g1,16571:12739637,12156288 +g1,16571:13071591,12156288 +g1,16571:13403545,12156288 +g1,16571:15395269,12156288 +g1,16571:15727223,12156288 +g1,16571:16059177,12156288 +g1,16571:16391131,12156288 +g1,16571:16723085,12156288 +g1,16571:17055039,12156288 +g1,16571:17386993,12156288 +g1,16571:17718947,12156288 +h1,16571:21702394,12156288:0,0,0 +k1,16571:32583029,12156288:10880635 +g1,16571:32583029,12156288 +) +(1,16573:6764466,12972215:25818563,424439,106246 +(1,16572:6764466,12972215:0,0,0 +g1,16572:6764466,12972215 +g1,16572:6764466,12972215 +g1,16572:6436786,12972215 +(1,16572:6436786,12972215:0,0,0 +) +g1,16572:6764466,12972215 +) +k1,16573:6764466,12972215:0 +k1,16573:6764466,12972215:0 +h1,16573:14731360,12972215:0,0,0 +k1,16573:32583028,12972215:17851668 +g1,16573:32583028,12972215 +) +(1,16577:6764466,13788142:25818563,424439,79822 +(1,16575:6764466,13788142:0,0,0 +g1,16575:6764466,13788142 +g1,16575:6764466,13788142 +g1,16575:6436786,13788142 +(1,16575:6436786,13788142:0,0,0 +) +g1,16575:6764466,13788142 +) +g1,16577:7760328,13788142 +g1,16577:9088144,13788142 +g1,16577:11743776,13788142 +g1,16577:12075730,13788142 +g1,16577:12407684,13788142 +g1,16577:12739638,13788142 +g1,16577:13071592,13788142 +g1,16577:17055039,13788142 +h1,16577:19378717,13788142:0,0,0 +k1,16577:32583029,13788142:13204312 +g1,16577:32583029,13788142 +) +] +) +g1,16578:32583029,13867964 +g1,16578:6764466,13867964 +g1,16578:6764466,13867964 +g1,16578:32583029,13867964 +g1,16578:32583029,13867964 +) +h1,16578:6764466,14064572:0,0,0 +v1,16582:6764466,14762983:0,393216,0 +(1,16596:6764466,18236302:25818563,3866535,196608 +g1,16596:6764466,18236302 +g1,16596:6764466,18236302 +g1,16596:6567858,18236302 +(1,16596:6567858,18236302:0,3866535,196608 +r1,16675:32779637,18236302:26211779,4063143,196608 +k1,16596:6567857,18236302:-26211780 +) +(1,16596:6567858,18236302:26211779,3866535,196608 +[1,16596:6764466,18236302:25818563,3669927,0 +(1,16584:6764466,14990814:25818563,424439,112852 +(1,16583:6764466,14990814:0,0,0 +g1,16583:6764466,14990814 +g1,16583:6764466,14990814 +g1,16583:6436786,14990814 +(1,16583:6436786,14990814:0,0,0 +) +g1,16583:6764466,14990814 +) +g1,16584:9752051,14990814 +g1,16584:10747913,14990814 +g1,16584:15727222,14990814 +g1,16584:16391130,14990814 +g1,16584:18714808,14990814 +h1,16584:21370439,14990814:0,0,0 +k1,16584:32583029,14990814:11212590 +g1,16584:32583029,14990814 +) +(1,16585:6764466,15675669:25818563,431045,112852 +h1,16585:6764466,15675669:0,0,0 +k1,16585:6764466,15675669:0 +h1,16585:14399406,15675669:0,0,0 +k1,16585:32583030,15675669:18183624 +g1,16585:32583030,15675669 +) +(1,16589:6764466,16491596:25818563,424439,79822 +(1,16587:6764466,16491596:0,0,0 +g1,16587:6764466,16491596 +g1,16587:6764466,16491596 +g1,16587:6436786,16491596 +(1,16587:6436786,16491596:0,0,0 +) +g1,16587:6764466,16491596 +) +g1,16589:7760328,16491596 +g1,16589:9088144,16491596 +h1,16589:10415960,16491596:0,0,0 +k1,16589:32583028,16491596:22167068 +g1,16589:32583028,16491596 +) +(1,16591:6764466,17307523:25818563,424439,112852 +(1,16590:6764466,17307523:0,0,0 +g1,16590:6764466,17307523 +g1,16590:6764466,17307523 +g1,16590:6436786,17307523 +(1,16590:6436786,17307523:0,0,0 +) +g1,16590:6764466,17307523 +) +k1,16591:6764466,17307523:0 +h1,16591:11743775,17307523:0,0,0 +k1,16591:32583029,17307523:20839254 +g1,16591:32583029,17307523 +) +(1,16595:6764466,18123450:25818563,431045,112852 +(1,16593:6764466,18123450:0,0,0 +g1,16593:6764466,18123450 +g1,16593:6764466,18123450 +g1,16593:6436786,18123450 +(1,16593:6436786,18123450:0,0,0 +) +g1,16593:6764466,18123450 +) +g1,16595:7760328,18123450 +g1,16595:9088144,18123450 +g1,16595:13403545,18123450 +g1,16595:16391130,18123450 +g1,16595:16723084,18123450 +g1,16595:17055038,18123450 +g1,16595:17386992,18123450 +g1,16595:17718946,18123450 +g1,16595:19710670,18123450 +g1,16595:20042624,18123450 +g1,16595:20374578,18123450 +g1,16595:20706532,18123450 +g1,16595:21038486,18123450 +g1,16595:21370440,18123450 +g1,16595:21702394,18123450 +g1,16595:22034348,18123450 +h1,16595:26017795,18123450:0,0,0 +k1,16595:32583029,18123450:6565234 +g1,16595:32583029,18123450 +) +] +) +g1,16596:32583029,18236302 +g1,16596:6764466,18236302 +g1,16596:6764466,18236302 +g1,16596:32583029,18236302 +g1,16596:32583029,18236302 +) +h1,16596:6764466,18432910:0,0,0 +v1,16600:6764466,19131321:0,393216,0 +(1,16622:6764466,28050450:25818563,9312345,196608 +g1,16622:6764466,28050450 +g1,16622:6764466,28050450 +g1,16622:6567858,28050450 +(1,16622:6567858,28050450:0,9312345,196608 +r1,16675:32779637,28050450:26211779,9508953,196608 +k1,16622:6567857,28050450:-26211780 +) +(1,16622:6567858,28050450:26211779,9312345,196608 +[1,16622:6764466,28050450:25818563,9115737,0 +(1,16602:6764466,19359152:25818563,424439,112852 +(1,16601:6764466,19359152:0,0,0 +g1,16601:6764466,19359152 +g1,16601:6764466,19359152 +g1,16601:6436786,19359152 +(1,16601:6436786,19359152:0,0,0 +) +g1,16601:6764466,19359152 +) +k1,16602:6764466,19359152:0 +k1,16602:6764466,19359152:0 +h1,16602:15727222,19359152:0,0,0 +k1,16602:32583030,19359152:16855808 +g1,16602:32583030,19359152 +) +(1,16606:6764466,20175079:25818563,424439,112852 +(1,16604:6764466,20175079:0,0,0 +g1,16604:6764466,20175079 +g1,16604:6764466,20175079 +g1,16604:6436786,20175079 +(1,16604:6436786,20175079:0,0,0 +) +g1,16604:6764466,20175079 +) +g1,16606:7760328,20175079 +g1,16606:9088144,20175079 +g1,16606:11743776,20175079 +g1,16606:12075730,20175079 +g1,16606:12407684,20175079 +g1,16606:12739638,20175079 +g1,16606:13071592,20175079 +g1,16606:17055039,20175079 +g1,16606:19710671,20175079 +g1,16606:20042625,20175079 +g1,16606:20374579,20175079 +g1,16606:20706533,20175079 +g1,16606:21038487,20175079 +h1,16606:23694118,20175079:0,0,0 +k1,16606:32583029,20175079:8888911 +g1,16606:32583029,20175079 +) +(1,16608:6764466,20991006:25818563,431045,112852 +(1,16607:6764466,20991006:0,0,0 +g1,16607:6764466,20991006 +g1,16607:6764466,20991006 +g1,16607:6436786,20991006 +(1,16607:6436786,20991006:0,0,0 +) +g1,16607:6764466,20991006 +) +k1,16608:6764466,20991006:0 +g1,16608:16723084,20991006 +k1,16608:16723084,20991006:0 +h1,16608:22698254,20991006:0,0,0 +k1,16608:32583029,20991006:9884775 +g1,16608:32583029,20991006 +) +(1,16621:6764466,21806933:25818563,431045,33029 +(1,16610:6764466,21806933:0,0,0 +g1,16610:6764466,21806933 +g1,16610:6764466,21806933 +g1,16610:6436786,21806933 +(1,16610:6436786,21806933:0,0,0 +) +g1,16610:6764466,21806933 +) +g1,16621:7760328,21806933 +h1,16621:9752052,21806933:0,0,0 +k1,16621:32583028,21806933:22830976 +g1,16621:32583028,21806933 +) +(1,16621:6764466,22491788:25818563,431045,112852 +h1,16621:6764466,22491788:0,0,0 +g1,16621:7760328,22491788 +g1,16621:9088144,22491788 +g1,16621:13403545,22491788 +g1,16621:16391130,22491788 +g1,16621:16723084,22491788 +g1,16621:17055038,22491788 +g1,16621:17386992,22491788 +g1,16621:17718946,22491788 +g1,16621:19710670,22491788 +g1,16621:20042624,22491788 +g1,16621:20374578,22491788 +g1,16621:20706532,22491788 +g1,16621:21038486,22491788 +g1,16621:21370440,22491788 +g1,16621:21702394,22491788 +g1,16621:22034348,22491788 +h1,16621:26017795,22491788:0,0,0 +k1,16621:32583029,22491788:6565234 +g1,16621:32583029,22491788 +) +(1,16621:6764466,23176643:25818563,398014,0 +h1,16621:6764466,23176643:0,0,0 +h1,16621:7428374,23176643:0,0,0 +k1,16621:32583030,23176643:25154656 +g1,16621:32583030,23176643 +) +(1,16621:6764466,23861498:25818563,431045,112852 +h1,16621:6764466,23861498:0,0,0 +g1,16621:7760328,23861498 +h1,16621:10084006,23861498:0,0,0 +k1,16621:32583030,23861498:22499024 +g1,16621:32583030,23861498 +) +(1,16621:6764466,24546353:25818563,424439,9908 +h1,16621:6764466,24546353:0,0,0 +g1,16621:7760328,24546353 +g1,16621:8424236,24546353 +g1,16621:9088144,24546353 +g1,16621:11743776,24546353 +g1,16621:12407684,24546353 +g1,16621:13071592,24546353 +h1,16621:13403546,24546353:0,0,0 +k1,16621:32583030,24546353:19179484 +g1,16621:32583030,24546353 +) +(1,16621:6764466,25231208:25818563,424439,6605 +h1,16621:6764466,25231208:0,0,0 +g1,16621:7760328,25231208 +g1,16621:8092282,25231208 +g1,16621:8424236,25231208 +g1,16621:11079868,25231208 +g1,16621:11411822,25231208 +g1,16621:11743776,25231208 +g1,16621:12075730,25231208 +g1,16621:12407684,25231208 +g1,16621:12739638,25231208 +g1,16621:13071592,25231208 +h1,16621:14731362,25231208:0,0,0 +k1,16621:32583030,25231208:17851668 +g1,16621:32583030,25231208 +) +(1,16621:6764466,25916063:25818563,424439,6605 +h1,16621:6764466,25916063:0,0,0 +g1,16621:7760328,25916063 +g1,16621:8092282,25916063 +g1,16621:8424236,25916063 +g1,16621:10415960,25916063 +g1,16621:10747914,25916063 +g1,16621:11079868,25916063 +k1,16621:11079868,25916063:0 +h1,16621:14731362,25916063:0,0,0 +k1,16621:32583030,25916063:17851668 +g1,16621:32583030,25916063 +) +(1,16621:6764466,26600918:25818563,424439,79822 +h1,16621:6764466,26600918:0,0,0 +g1,16621:7760328,26600918 +g1,16621:8424236,26600918 +g1,16621:9088144,26600918 +g1,16621:9420098,26600918 +g1,16621:9752052,26600918 +g1,16621:10084006,26600918 +g1,16621:10415960,26600918 +g1,16621:10747914,26600918 +g1,16621:11079868,26600918 +g1,16621:11411822,26600918 +g1,16621:11743776,26600918 +g1,16621:12075730,26600918 +g1,16621:12407684,26600918 +g1,16621:12739638,26600918 +g1,16621:13071592,26600918 +g1,16621:13403546,26600918 +g1,16621:13735500,26600918 +h1,16621:14731362,26600918:0,0,0 +k1,16621:32583030,26600918:17851668 +g1,16621:32583030,26600918 +) +(1,16621:6764466,27285773:25818563,424439,79822 +h1,16621:6764466,27285773:0,0,0 +g1,16621:7760328,27285773 +g1,16621:8424236,27285773 +g1,16621:9088144,27285773 +g1,16621:9420098,27285773 +g1,16621:9752052,27285773 +g1,16621:10084006,27285773 +g1,16621:10415960,27285773 +g1,16621:10747914,27285773 +g1,16621:11079868,27285773 +g1,16621:11411822,27285773 +g1,16621:11743776,27285773 +g1,16621:12075730,27285773 +g1,16621:12407684,27285773 +g1,16621:12739638,27285773 +g1,16621:13071592,27285773 +g1,16621:13403546,27285773 +g1,16621:13735500,27285773 +h1,16621:14731362,27285773:0,0,0 +k1,16621:32583030,27285773:17851668 +g1,16621:32583030,27285773 +) +(1,16621:6764466,27970628:25818563,424439,79822 +h1,16621:6764466,27970628:0,0,0 +g1,16621:7760328,27970628 +g1,16621:8424236,27970628 +g1,16621:9088144,27970628 +g1,16621:9420098,27970628 +g1,16621:9752052,27970628 +g1,16621:10084006,27970628 +g1,16621:10415960,27970628 +g1,16621:10747914,27970628 +g1,16621:11079868,27970628 +g1,16621:11411822,27970628 +g1,16621:11743776,27970628 +g1,16621:12075730,27970628 +g1,16621:12407684,27970628 +g1,16621:12739638,27970628 +g1,16621:13071592,27970628 +g1,16621:13403546,27970628 +g1,16621:13735500,27970628 +h1,16621:14731362,27970628:0,0,0 +k1,16621:32583030,27970628:17851668 +g1,16621:32583030,27970628 +) +] +) +g1,16622:32583029,28050450 +g1,16622:6764466,28050450 +g1,16622:6764466,28050450 +g1,16622:32583029,28050450 +g1,16622:32583029,28050450 +) +h1,16622:6764466,28247058:0,0,0 +v1,16626:6764466,28945469:0,393216,0 +(1,16640:6764466,32385758:25818563,3833505,196608 +g1,16640:6764466,32385758 +g1,16640:6764466,32385758 +g1,16640:6567858,32385758 +(1,16640:6567858,32385758:0,3833505,196608 +r1,16675:32779637,32385758:26211779,4030113,196608 +k1,16640:6567857,32385758:-26211780 +) +(1,16640:6567858,32385758:26211779,3833505,196608 +[1,16640:6764466,32385758:25818563,3636897,0 +(1,16628:6764466,29173300:25818563,424439,112852 +(1,16627:6764466,29173300:0,0,0 +g1,16627:6764466,29173300 +g1,16627:6764466,29173300 +g1,16627:6436786,29173300 +(1,16627:6436786,29173300:0,0,0 +) +g1,16627:6764466,29173300 +) +g1,16628:10084005,29173300 +g1,16628:11079867,29173300 +k1,16628:11079867,29173300:0 +h1,16628:16723084,29173300:0,0,0 +k1,16628:32583029,29173300:15859945 +g1,16628:32583029,29173300 +) +(1,16629:6764466,29858155:25818563,424439,112852 +h1,16629:6764466,29858155:0,0,0 +k1,16629:6764466,29858155:0 +h1,16629:12075729,29858155:0,0,0 +k1,16629:32583029,29858155:20507300 +g1,16629:32583029,29858155 +) +(1,16633:6764466,30674082:25818563,431045,79822 +(1,16631:6764466,30674082:0,0,0 +g1,16631:6764466,30674082 +g1,16631:6764466,30674082 +g1,16631:6436786,30674082 +(1,16631:6436786,30674082:0,0,0 +) +g1,16631:6764466,30674082 +) +g1,16633:7760328,30674082 +g1,16633:9088144,30674082 +g1,16633:12075729,30674082 +g1,16633:12407683,30674082 +g1,16633:12739637,30674082 +g1,16633:13071591,30674082 +g1,16633:13403545,30674082 +g1,16633:15395269,30674082 +g1,16633:15727223,30674082 +g1,16633:16059177,30674082 +g1,16633:16391131,30674082 +g1,16633:16723085,30674082 +g1,16633:17055039,30674082 +g1,16633:17386993,30674082 +g1,16633:17718947,30674082 +h1,16633:21702394,30674082:0,0,0 +k1,16633:32583029,30674082:10880635 +g1,16633:32583029,30674082 +) +(1,16635:6764466,31490009:25818563,424439,112852 +(1,16634:6764466,31490009:0,0,0 +g1,16634:6764466,31490009 +g1,16634:6764466,31490009 +g1,16634:6436786,31490009 +(1,16634:6436786,31490009:0,0,0 +) +g1,16634:6764466,31490009 +) +k1,16635:6764466,31490009:0 +k1,16635:6764466,31490009:0 +h1,16635:16059176,31490009:0,0,0 +k1,16635:32583029,31490009:16523853 +g1,16635:32583029,31490009 +) +(1,16639:6764466,32305936:25818563,424439,79822 +(1,16637:6764466,32305936:0,0,0 +g1,16637:6764466,32305936 +g1,16637:6764466,32305936 +g1,16637:6436786,32305936 +(1,16637:6436786,32305936:0,0,0 +) +g1,16637:6764466,32305936 +) +g1,16639:7760328,32305936 +g1,16639:9088144,32305936 +g1,16639:11743776,32305936 +g1,16639:12075730,32305936 +g1,16639:12407684,32305936 +g1,16639:12739638,32305936 +g1,16639:13071592,32305936 +g1,16639:17055039,32305936 +h1,16639:19378717,32305936:0,0,0 +k1,16639:32583029,32305936:13204312 +g1,16639:32583029,32305936 +) +] +) +g1,16640:32583029,32385758 +g1,16640:6764466,32385758 +g1,16640:6764466,32385758 +g1,16640:32583029,32385758 +g1,16640:32583029,32385758 +) +h1,16640:6764466,32582366:0,0,0 +v1,16644:6764466,33280777:0,393216,0 +(1,16669:6764466,39299919:25818563,6412358,196608 +g1,16669:6764466,39299919 +g1,16669:6764466,39299919 +g1,16669:6567858,39299919 +(1,16669:6567858,39299919:0,6412358,196608 +r1,16675:32779637,39299919:26211779,6608966,196608 +k1,16669:6567857,39299919:-26211780 +) +(1,16669:6567858,39299919:26211779,6412358,196608 +[1,16669:6764466,39299919:25818563,6215750,0 +(1,16646:6764466,33508608:25818563,424439,112852 +(1,16645:6764466,33508608:0,0,0 +g1,16645:6764466,33508608 +g1,16645:6764466,33508608 +g1,16645:6436786,33508608 +(1,16645:6436786,33508608:0,0,0 +) +g1,16645:6764466,33508608 +) +k1,16646:6764466,33508608:0 +g1,16646:10084006,33508608 +g1,16646:11079868,33508608 +h1,16646:14067453,33508608:0,0,0 +k1,16646:32583029,33508608:18515576 +g1,16646:32583029,33508608 +) +(1,16650:6764466,34324535:25818563,424439,79822 +(1,16648:6764466,34324535:0,0,0 +g1,16648:6764466,34324535 +g1,16648:6764466,34324535 +g1,16648:6436786,34324535 +(1,16648:6436786,34324535:0,0,0 +) +g1,16648:6764466,34324535 +) +g1,16650:7760328,34324535 +g1,16650:9088144,34324535 +h1,16650:10415960,34324535:0,0,0 +k1,16650:32583028,34324535:22167068 +g1,16650:32583028,34324535 +) +(1,16652:6764466,35140462:25818563,424439,112852 +(1,16651:6764466,35140462:0,0,0 +g1,16651:6764466,35140462 +g1,16651:6764466,35140462 +g1,16651:6436786,35140462 +(1,16651:6436786,35140462:0,0,0 +) +g1,16651:6764466,35140462 +) +k1,16652:6764466,35140462:0 +g1,16652:10084006,35140462 +g1,16652:11079868,35140462 +h1,16652:14399407,35140462:0,0,0 +k1,16652:32583029,35140462:18183622 +g1,16652:32583029,35140462 +) +(1,16656:6764466,35956389:25818563,424439,79822 +(1,16654:6764466,35956389:0,0,0 +g1,16654:6764466,35956389 +g1,16654:6764466,35956389 +g1,16654:6436786,35956389 +(1,16654:6436786,35956389:0,0,0 +) +g1,16654:6764466,35956389 +) +g1,16656:7760328,35956389 +g1,16656:9088144,35956389 +h1,16656:10415960,35956389:0,0,0 +k1,16656:32583028,35956389:22167068 +g1,16656:32583028,35956389 +) +(1,16658:6764466,36772316:25818563,424439,112852 +(1,16657:6764466,36772316:0,0,0 +g1,16657:6764466,36772316 +g1,16657:6764466,36772316 +g1,16657:6436786,36772316 +(1,16657:6436786,36772316:0,0,0 +) +g1,16657:6764466,36772316 +) +k1,16658:6764466,36772316:0 +g1,16658:12407683,36772316 +h1,16658:15395268,36772316:0,0,0 +k1,16658:32583028,36772316:17187760 +g1,16658:32583028,36772316 +) +(1,16662:6764466,37588243:25818563,424439,79822 +(1,16660:6764466,37588243:0,0,0 +g1,16660:6764466,37588243 +g1,16660:6764466,37588243 +g1,16660:6436786,37588243 +(1,16660:6436786,37588243:0,0,0 +) +g1,16660:6764466,37588243 +) +g1,16662:7760328,37588243 +g1,16662:9088144,37588243 +h1,16662:10747914,37588243:0,0,0 +k1,16662:32583030,37588243:21835116 +g1,16662:32583030,37588243 +) +(1,16664:6764466,38404170:25818563,424439,112852 +(1,16663:6764466,38404170:0,0,0 +g1,16663:6764466,38404170 +g1,16663:6764466,38404170 +g1,16663:6436786,38404170 +(1,16663:6436786,38404170:0,0,0 +) +g1,16663:6764466,38404170 +) +k1,16664:6764466,38404170:0 +g1,16664:12407683,38404170 +h1,16664:15727222,38404170:0,0,0 +k1,16664:32583030,38404170:16855808 +g1,16664:32583030,38404170 +) +(1,16668:6764466,39220097:25818563,424439,79822 +(1,16666:6764466,39220097:0,0,0 +g1,16666:6764466,39220097 +g1,16666:6764466,39220097 +g1,16666:6436786,39220097 +(1,16666:6436786,39220097:0,0,0 +) +g1,16666:6764466,39220097 +) +g1,16668:7760328,39220097 +g1,16668:9088144,39220097 +h1,16668:10415960,39220097:0,0,0 +k1,16668:32583028,39220097:22167068 +g1,16668:32583028,39220097 +) +] +) +g1,16669:32583029,39299919 +g1,16669:6764466,39299919 +g1,16669:6764466,39299919 +g1,16669:32583029,39299919 +g1,16669:32583029,39299919 +) +h1,16669:6764466,39496527:0,0,0 +(1,16673:6764466,40375163:25818563,505283,126483 +h1,16672:6764466,40375163:983040,0,0 +k1,16672:9192512,40375163:248319 +k1,16672:10962576,40375163:248318 +k1,16672:13066219,40375163:248319 +k1,16672:14975220,40375163:248319 +k1,16672:16508045,40375163:248319 +k1,16672:19710071,40375163:248318 +k1,16672:20949950,40375163:248319 +k1,16672:21814307,40375163:248319 +k1,16672:22828741,40375163:248318 +k1,16672:24774442,40375163:248319 +k1,16672:26041846,40375163:248319 +k1,16672:27943638,40375163:248319 +k1,16672:28878118,40375163:248318 +k1,16672:31873051,40375163:248319 +(1,16672:31873051,40375163:0,414482,115847 +r1,16675:32583029,40375163:709978,530329,115847 +k1,16672:31873051,40375163:-709978 +) +(1,16672:31873051,40375163:709978,414482,115847 +k1,16672:31873051,40375163:3277 +h1,16672:32579752,40375163:0,411205,112570 +) +k1,16672:32583029,40375163:0 +) +(1,16673:6764466,41240243:25818563,513147,126483 +k1,16672:8552054,41240243:265842 +k1,16672:9765547,41240243:265842 +k1,16672:12578118,41240243:265842 +k1,16672:13456722,41240243:265842 +k1,16672:15174186,41240243:265842 +k1,16672:18054259,41240243:265842 +k1,16672:18936140,41240243:265843 +k1,16672:20221067,41240243:265842 +k1,16672:22298324,41240243:265842 +k1,16672:23636335,41240243:265842 +k1,16672:24968448,41240243:265842 +k1,16672:26253375,41240243:265842 +k1,16672:29801915,41240243:265842 +k1,16672:31757275,41240243:265842 +k1,16673:32583029,41240243:0 +) +(1,16673:6764466,42105323:25818563,513147,134348 +k1,16672:9647910,42105323:213507 +k1,16672:12841994,42105323:213507 +(1,16672:12841994,42105323:0,452978,115847 +r1,16675:14607107,42105323:1765113,568825,115847 +k1,16672:12841994,42105323:-1765113 +) +(1,16672:12841994,42105323:1765113,452978,115847 +k1,16672:12841994,42105323:3277 +h1,16672:14603830,42105323:0,411205,112570 +) +k1,16672:14820615,42105323:213508 +k1,16672:16777380,42105323:213507 +k1,16672:19626090,42105323:213507 +k1,16672:22118284,42105323:213507 +k1,16672:24473508,42105323:213507 +k1,16672:25878460,42105323:213507 +k1,16672:28752730,42105323:213508 +k1,16672:30453249,42105323:213507 +k1,16672:31858201,42105323:213507 +k1,16672:32583029,42105323:0 +) +(1,16673:6764466,42970403:25818563,505283,134348 +g1,16672:8343883,42970403 +g1,16672:9534672,42970403 +g1,16672:10800172,42970403 +g1,16672:13702761,42970403 +k1,16673:32583029,42970403:16416770 +g1,16673:32583029,42970403 +) +(1,16675:6764466,43842261:25818563,513147,126483 +h1,16674:6764466,43842261:983040,0,0 +k1,16674:8408274,43842261:183011 +k1,16674:9459637,43842261:183011 +k1,16674:11940996,43842261:183011 +(1,16674:11940996,43842261:0,452978,115847 +r1,16675:14057821,43842261:2116825,568825,115847 +k1,16674:11940996,43842261:-2116825 +) +(1,16674:11940996,43842261:2116825,452978,115847 +k1,16674:11940996,43842261:3277 +h1,16674:14054544,43842261:0,411205,112570 +) +k1,16674:14240832,43842261:183011 +k1,16674:15185371,43842261:183011 +(1,16674:15185371,43842261:0,459977,115847 +r1,16675:18709043,43842261:3523672,575824,115847 +k1,16674:15185371,43842261:-3523672 +) +(1,16674:15185371,43842261:3523672,459977,115847 +k1,16674:15185371,43842261:3277 +h1,16674:18705766,43842261:0,411205,112570 +) +k1,16674:18892054,43842261:183011 +k1,16674:19691103,43842261:183011 +k1,16674:20893199,43842261:183011 +k1,16674:22382343,43842261:183011 +k1,16674:25925385,43842261:183011 +k1,16674:27299841,43842261:183011 +k1,16674:29236595,43842261:183011 +k1,16674:30438691,43842261:183011 +k1,16674:32583029,43842261:0 +) +(1,16675:6764466,44707341:25818563,513147,115847 +k1,16674:7987981,44707341:204430 +k1,16674:10035284,44707341:204431 +k1,16674:10899006,44707341:204430 +k1,16674:12122521,44707341:204430 +k1,16674:13475143,44707341:204431 +k1,16674:16865933,44707341:204430 +k1,16674:17686401,44707341:204430 +k1,16674:18909917,44707341:204431 +k1,16674:21085015,44707341:204430 +k1,16674:21820942,44707341:204430 +(1,16674:21820942,44707341:0,414482,115847 +r1,16675:23586055,44707341:1765113,530329,115847 +k1,16674:21820942,44707341:-1765113 +) +(1,16674:21820942,44707341:1765113,414482,115847 +k1,16674:21820942,44707341:3277 +h1,16674:23582778,44707341:0,411205,112570 +) +k1,16674:23790485,44707341:204430 +k1,16674:26322099,44707341:204431 +k1,16674:27193685,44707341:204430 +(1,16674:27193685,44707341:0,414482,115847 +r1,16675:28607086,44707341:1413401,530329,115847 +k1,16674:27193685,44707341:-1413401 +) +(1,16674:27193685,44707341:1413401,414482,115847 +k1,16674:27193685,44707341:3277 +h1,16674:28603809,44707341:0,411205,112570 +) +k1,16674:28985186,44707341:204430 +k1,16674:29934106,44707341:204431 +k1,16674:31157621,44707341:204430 +k1,16674:32583029,44707341:0 +) +(1,16675:6764466,45572421:25818563,513147,134348 +k1,16674:7669951,45572421:246193 +k1,16674:10173859,45572421:246193 +k1,16674:12898624,45572421:246193 +k1,16674:14538768,45572421:246193 +k1,16674:15140821,45572421:246193 +(1,16674:15140821,45572421:0,459977,115847 +r1,16675:18664493,45572421:3523672,575824,115847 +k1,16674:15140821,45572421:-3523672 +) +(1,16674:15140821,45572421:3523672,459977,115847 +k1,16674:15140821,45572421:3277 +h1,16674:18661216,45572421:0,411205,112570 +) +k1,16674:18910685,45572421:246192 +k1,16674:21290075,45572421:246193 +k1,16674:24290091,45572421:246193 +k1,16674:27419213,45572421:246193 +k1,16674:29059357,45572421:246193 +(1,16674:29059357,45572421:0,452978,122846 +r1,16675:32583029,45572421:3523672,575824,122846 +k1,16674:29059357,45572421:-3523672 +) +(1,16674:29059357,45572421:3523672,452978,122846 +k1,16674:29059357,45572421:3277 +h1,16674:32579752,45572421:0,411205,112570 +) +k1,16674:32583029,45572421:0 ) ] -) -g1,15243:36675916,2439708 -(1,15243:36675916,2439708:1179648,16384,0 -r1,16770:37855564,2439708:1179648,16384,0 -) -) -k1,16770:3078556,2439708:-34777008 +g1,16675:32583029,45706769 ) ] -[1,16770:3078558,4812305:0,0,0 -(1,16770:3078558,49800853:0,16384,2228224 -k1,16770:1358238,49800853:-1720320 -(1,15243:1358238,49800853:1720320,16384,2228224 -(1,15243:1358238,49800853:1179648,16384,0 -r1,16770:2537886,49800853:1179648,16384,0 -) -g1,15243:3062174,49800853 -(1,15243:3062174,52029077:16384,1703936,0 -[1,15243:3062174,52029077:25952256,1703936,0 -(1,15243:3062174,51504789:25952256,1179648,0 -(1,15243:3062174,51504789:16384,1179648,0 -r1,16770:3078558,51504789:16384,1179648,0 +(1,16675:32583029,45706769:0,0,0 +g1,16675:32583029,45706769 ) -k1,15243:29014430,51504789:25935872 -g1,15243:29014430,51504789 ) ] -) -) +(1,16675:6630773,47279633:25952256,0,0 +h1,16675:6630773,47279633:25952256,0,0 ) ] -[1,16770:3078558,4812305:0,0,0 -(1,16770:3078558,49800853:0,16384,2228224 -g1,16770:29030814,49800853 -g1,16770:36135244,49800853 -(1,15243:36135244,49800853:1720320,16384,2228224 -(1,15243:36135244,52029077:16384,1703936,0 -[1,15243:36135244,52029077:25952256,1703936,0 -(1,15243:36135244,51504789:25952256,1179648,0 -(1,15243:36135244,51504789:16384,1179648,0 -r1,16770:36151628,51504789:16384,1179648,0 +(1,16675:4262630,4025873:0,0,0 +[1,16675:-473656,4025873:0,0,0 +(1,16675:-473656,-710413:0,0,0 +(1,16675:-473656,-710413:0,0,0 +g1,16675:-473656,-710413 ) -k1,15243:62087500,51504789:25935872 -g1,15243:62087500,51504789 +g1,16675:-473656,-710413 ) ] ) -g1,15243:36675916,49800853 -(1,15243:36675916,49800853:1179648,16384,0 -r1,16770:37855564,49800853:1179648,16384,0 -) -) -k1,16770:3078556,49800853:-34777008 -) -] -g1,16770:6630773,4812305 -k1,16770:23311652,4812305:15485502 -g1,16770:23960458,4812305 -g1,16770:27572802,4812305 -g1,16770:29306229,4812305 -) -) ] -[1,16770:6630773,45706769:25952256,40108032,0 -(1,16770:6630773,45706769:25952256,40108032,0 -(1,16770:6630773,45706769:0,0,0 -g1,16770:6630773,45706769 -) -[1,16770:6630773,45706769:25952256,40108032,0 -(1,16758:6630773,6254097:25952256,32768,229376 -(1,16758:6630773,6254097:0,32768,229376 -(1,16758:6630773,6254097:5505024,32768,229376 -r1,16770:12135797,6254097:5505024,262144,229376 -) -k1,16758:6630773,6254097:-5505024 -) -(1,16758:6630773,6254097:25952256,32768,0 -r1,16770:32583029,6254097:25952256,32768,0 -) -) -(1,16758:6630773,7858425:25952256,606339,161218 -(1,16758:6630773,7858425:1974731,582746,14155 -g1,16758:6630773,7858425 -g1,16758:8605504,7858425 -) -g1,16758:11813360,7858425 -k1,16758:32583030,7858425:17773364 -g1,16758:32583030,7858425 -) -(1,16760:6630773,9093129:25952256,513147,126483 -k1,16759:7724317,9093129:191113 -k1,16759:10605028,9093129:191113 -k1,16759:14167968,9093129:191113 -k1,16759:15018373,9093129:191113 -k1,16759:16228571,9093129:191113 -k1,16759:19627671,9093129:191113 -k1,16759:20350280,9093129:191112 -k1,16759:22907243,9093129:191113 -k1,16759:24117441,9093129:191113 -k1,16759:26135042,9093129:191113 -k1,16759:26985447,9093129:191113 -k1,16759:28379801,9093129:191113 -k1,16759:30326624,9093129:191113 -k1,16759:32583029,9093129:0 -) -(1,16760:6630773,9934617:25952256,513147,134348 -k1,16759:8770992,9934617:227878 -k1,16759:11668151,9934617:227878 -k1,16759:12512067,9934617:227878 -k1,16759:14527112,9934617:227878 -k1,16759:15774075,9934617:227878 -k1,16759:17094438,9934617:227878 -k1,16759:17981609,9934617:227879 -k1,16759:19906214,9934617:227878 -k1,16759:23218216,9934617:227878 -k1,16759:24263983,9934617:227878 -k1,16759:26723362,9934617:227878 -k1,16759:27610532,9934617:227878 -k1,16759:29477465,9934617:227878 -k1,16759:30696903,9934617:227878 -k1,16759:32583029,9934617:0 -) -(1,16760:6630773,10776105:25952256,513147,126483 -k1,16759:8663535,10776105:180715 -k1,16759:13149966,10776105:180716 -k1,16759:15319043,10776105:180715 -k1,16759:18066804,10776105:180716 -k1,16759:18906811,10776105:180715 -k1,16759:20999867,10776105:180715 -k1,16759:22674149,10776105:180716 -k1,16759:23541026,10776105:180715 -k1,16759:24171319,10776105:180716 -k1,16759:25276092,10776105:180715 -k1,16759:26991006,10776105:180716 -k1,16759:29451719,10776105:180715 -k1,16759:32583029,10776105:0 -) -(1,16760:6630773,11617593:25952256,513147,134348 -k1,16759:7432137,11617593:197122 -k1,16759:8363923,11617593:197127 -k1,16759:10361974,11617593:197122 -k1,16759:11750542,11617593:197123 -k1,16759:12397241,11617593:197122 -k1,16759:16984620,11617593:197122 -k1,16759:18105801,11617593:197123 -k1,16759:19837121,11617593:197122 -k1,16759:22314241,11617593:197122 -k1,16759:24230374,11617593:197123 -k1,16759:26228425,11617593:197122 -k1,16759:27417107,11617593:197122 -k1,16759:28633315,11617593:197123 -k1,16759:30432137,11617593:197122 -k1,16760:32583029,11617593:0 -k1,16760:32583029,11617593:0 -) -] -(1,16770:32583029,45706769:0,0,0 -g1,16770:32583029,45706769 -) -) -] -(1,16770:6630773,47279633:25952256,0,0 -h1,16770:6630773,47279633:25952256,0,0 -) -] -(1,16770:4262630,4025873:0,0,0 -[1,16770:-473656,4025873:0,0,0 -(1,16770:-473656,-710413:0,0,0 -(1,16770:-473656,-710413:0,0,0 -g1,16770:-473656,-710413 -) -g1,16770:-473656,-710413 -) -] -) -] -!6182 -}285 -!11 -{286 -[1,16820:4262630,47279633:28320399,43253760,0 -(1,16820:4262630,4025873:0,0,0 -[1,16820:-473656,4025873:0,0,0 -(1,16820:-473656,-710413:0,0,0 -(1,16820:-473656,-644877:0,0,0 -k1,16820:-473656,-644877:-65536 +!29461 +}267 +Input:2453:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2454:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2455:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2456:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2457:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2458:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2459:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2460:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2461:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2462:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2463:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2464:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2465:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2466:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2467:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2468:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2469:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1610 +{268 +[1,16743:4262630,47279633:28320399,43253760,0 +(1,16743:4262630,4025873:0,0,0 +[1,16743:-473656,4025873:0,0,0 +(1,16743:-473656,-710413:0,0,0 +(1,16743:-473656,-644877:0,0,0 +k1,16743:-473656,-644877:-65536 ) -(1,16820:-473656,4736287:0,0,0 -k1,16820:-473656,4736287:5209943 +(1,16743:-473656,4736287:0,0,0 +k1,16743:-473656,4736287:5209943 ) -g1,16820:-473656,-710413 +g1,16743:-473656,-710413 ) ] ) -[1,16820:6630773,47279633:25952256,43253760,0 -[1,16820:6630773,4812305:25952256,786432,0 -(1,16820:6630773,4812305:25952256,0,0 -(1,16820:6630773,4812305:25952256,0,0 -g1,16820:3078558,4812305 -[1,16820:3078558,4812305:0,0,0 -(1,16820:3078558,2439708:0,1703936,0 -k1,16820:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,16820:2537886,2439708:1179648,16384,0 +[1,16743:6630773,47279633:25952256,43253760,0 +[1,16743:6630773,4812305:25952256,786432,0 +(1,16743:6630773,4812305:25952256,505283,126483 +(1,16743:6630773,4812305:25952256,505283,126483 +g1,16743:3078558,4812305 +[1,16743:3078558,4812305:0,0,0 +(1,16743:3078558,2439708:0,1703936,0 +k1,16743:1358238,2439708:-1720320 +(1,15456:1358238,2439708:1720320,1703936,0 +(1,15456:1358238,2439708:1179648,16384,0 +r1,16743:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,16820:3078558,1915420:16384,1179648,0 +g1,15456:3062174,2439708 +(1,15456:3062174,2439708:16384,1703936,0 +[1,15456:3062174,2439708:25952256,1703936,0 +(1,15456:3062174,1915420:25952256,1179648,0 +(1,15456:3062174,1915420:16384,1179648,0 +r1,16743:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,15456:29014430,1915420:25935872 +g1,15456:29014430,1915420 ) ] ) ) ) ] -[1,16820:3078558,4812305:0,0,0 -(1,16820:3078558,2439708:0,1703936,0 -g1,16820:29030814,2439708 -g1,16820:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,16820:36151628,1915420:16384,1179648,0 +[1,16743:3078558,4812305:0,0,0 +(1,16743:3078558,2439708:0,1703936,0 +g1,16743:29030814,2439708 +g1,16743:36135244,2439708 +(1,15456:36135244,2439708:1720320,1703936,0 +(1,15456:36135244,2439708:16384,1703936,0 +[1,15456:36135244,2439708:25952256,1703936,0 +(1,15456:36135244,1915420:25952256,1179648,0 +(1,15456:36135244,1915420:16384,1179648,0 +r1,16743:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,15456:62087500,1915420:25935872 +g1,15456:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,16820:37855564,2439708:1179648,16384,0 +g1,15456:36675916,2439708 +(1,15456:36675916,2439708:1179648,16384,0 +r1,16743:37855564,2439708:1179648,16384,0 ) ) -k1,16820:3078556,2439708:-34777008 +k1,16743:3078556,2439708:-34777008 ) ] -[1,16820:3078558,4812305:0,0,0 -(1,16820:3078558,49800853:0,16384,2228224 -k1,16820:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,16820:2537886,49800853:1179648,16384,0 +[1,16743:3078558,4812305:0,0,0 +(1,16743:3078558,49800853:0,16384,2228224 +k1,16743:1358238,49800853:-1720320 +(1,15456:1358238,49800853:1720320,16384,2228224 +(1,15456:1358238,49800853:1179648,16384,0 +r1,16743:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,16820:3078558,51504789:16384,1179648,0 +g1,15456:3062174,49800853 +(1,15456:3062174,52029077:16384,1703936,0 +[1,15456:3062174,52029077:25952256,1703936,0 +(1,15456:3062174,51504789:25952256,1179648,0 +(1,15456:3062174,51504789:16384,1179648,0 +r1,16743:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,15456:29014430,51504789:25935872 +g1,15456:29014430,51504789 ) ] ) ) ) ] -[1,16820:3078558,4812305:0,0,0 -(1,16820:3078558,49800853:0,16384,2228224 -g1,16820:29030814,49800853 -g1,16820:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,16820:36151628,51504789:16384,1179648,0 +[1,16743:3078558,4812305:0,0,0 +(1,16743:3078558,49800853:0,16384,2228224 +g1,16743:29030814,49800853 +g1,16743:36135244,49800853 +(1,15456:36135244,49800853:1720320,16384,2228224 +(1,15456:36135244,52029077:16384,1703936,0 +[1,15456:36135244,52029077:25952256,1703936,0 +(1,15456:36135244,51504789:25952256,1179648,0 +(1,15456:36135244,51504789:16384,1179648,0 +r1,16743:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +k1,15456:62087500,51504789:25935872 +g1,15456:62087500,51504789 ) ] ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,16820:37855564,49800853:1179648,16384,0 +g1,15456:36675916,49800853 +(1,15456:36675916,49800853:1179648,16384,0 +r1,16743:37855564,49800853:1179648,16384,0 ) ) -k1,16820:3078556,49800853:-34777008 +k1,16743:3078556,49800853:-34777008 ) ] -g1,16820:6630773,4812305 +g1,16743:6630773,4812305 +g1,16743:6630773,4812305 +g1,16743:8364200,4812305 +g1,16743:12785258,4812305 +g1,16743:14347636,4812305 +g1,16743:16554232,4812305 +k1,16743:31387652,4812305:14833420 ) ) ] -[1,16820:6630773,45706769:25952256,40108032,0 -(1,16820:6630773,45706769:25952256,40108032,0 -(1,16820:6630773,45706769:0,0,0 -g1,16820:6630773,45706769 -) -[1,16820:6630773,45706769:25952256,40108032,0 -[1,16770:6630773,11663733:25952256,6064996,0 -(1,16770:6630773,6633157:25952256,1165492,28311 -h1,16770:6630773,6633157:0,0,0 -k1,16770:20096848,6633157:12486181 -k1,16770:32583029,6633157:12486181 +[1,16743:6630773,45706769:25952256,40108032,0 +(1,16743:6630773,45706769:25952256,40108032,0 +(1,16743:6630773,45706769:0,0,0 +g1,16743:6630773,45706769 ) -(1,16770:6630773,7333093:25952256,32768,229376 -(1,16770:6630773,7333093:0,32768,229376 -(1,16770:6630773,7333093:5505024,32768,229376 -r1,16820:12135797,7333093:5505024,262144,229376 -) -k1,16770:6630773,7333093:-5505024 -) -(1,16770:6630773,7333093:25952256,32768,0 -r1,16820:32583029,7333093:25952256,32768,0 -) -) -(1,16770:6630773,9128789:25952256,923664,227671 -h1,16770:6630773,9128789:0,0,0 -g1,16770:7798625,9128789 -g1,16770:14300845,9128789 -g1,16770:20321769,9128789 -g1,16770:21789251,9128789 -k1,16770:29715896,9128789:2867134 -k1,16770:32583029,9128789:2867133 -) -(1,16770:6630773,9828725:25952256,32768,0 -(1,16770:6630773,9828725:5505024,32768,0 -r1,16820:12135797,9828725:5505024,32768,0 -) -k1,16770:22359413,9828725:10223616 -k1,16770:32583029,9828725:10223616 -) -] -(1,16772:6630773,14556498:25952256,131072,0 -r1,16820:32583029,14556498:25952256,131072,0 -g1,16772:32583029,14556498 -g1,16772:32583029,14556498 -) -(1,16774:6630773,15876399:25952256,505283,134348 -k1,16774:8596853,15876399:1966080 -k1,16773:10284470,15876399:490930 -k1,16773:14933004,15876399:490930 -k1,16773:18059137,15876399:490930 -k1,16773:20858245,15876399:490930 -k1,16773:22540621,15876399:490931 -k1,16773:23932671,15876399:490930 -k1,16773:24955098,15876399:490930 -k1,16773:26062066,15876399:490930 -k1,16773:28449608,15876399:490930 -k1,16773:29591966,15876399:490930 -k1,16773:32583029,15876399:1966080 -) -(1,16774:6630773,16717887:25952256,513147,134348 -g1,16774:8596853,16717887 -g1,16773:13682446,16717887 -g1,16773:16374665,16717887 -g1,16773:19662606,16717887 -g1,16773:20521127,16717887 -g1,16773:22735588,16717887 -g1,16773:24126262,16717887 -k1,16774:30616949,16717887:3666085 -g1,16774:32583029,16717887 -) -(1,16775:6630773,18345807:25952256,513147,11795 -k1,16775:16902232,18345807:10271459 -h1,16775:16902232,18345807:0,0,0 -g1,16775:19479107,18345807 -g1,16775:21900662,18345807 -g1,16775:24357606,18345807 -g1,16775:25208263,18345807 -g1,16775:28382827,18345807 -g1,16775:30616949,18345807 -g1,16775:32583029,18345807 -) -(1,16776:6630773,19187295:25952256,513147,126483 -k1,16776:17763375,19187295:11132602 -h1,16775:17763375,19187295:0,0,0 -g1,16775:18865690,19187295 -g1,16775:21993723,19187295 -g1,16775:23556101,19187295 -g1,16775:26159191,19187295 -g1,16775:26981667,19187295 -g1,16775:29023113,19187295 -g1,16776:30616949,19187295 -g1,16776:32583029,19187295 -) -(1,16776:6630773,20421999:25952256,131072,0 -r1,16820:32583029,20421999:25952256,131072,0 -g1,16776:32583029,20421999 -g1,16776:34549109,20421999 -) -(1,16797:6630773,24015999:25952256,32768,229376 -(1,16797:6630773,24015999:0,32768,229376 -(1,16797:6630773,24015999:5505024,32768,229376 -r1,16820:12135797,24015999:5505024,262144,229376 -) -k1,16797:6630773,24015999:-5505024 -) -(1,16797:6630773,24015999:25952256,32768,0 -r1,16820:32583029,24015999:25952256,32768,0 -) -) -(1,16797:6630773,25620327:25952256,615776,151780 -(1,16797:6630773,25620327:1974731,582746,14155 -g1,16797:6630773,25620327 -g1,16797:8605504,25620327 -) -g1,16797:10904245,25620327 -g1,16797:11961996,25620327 -g1,16797:13695292,25620327 -k1,16797:32583029,25620327:15886712 -g1,16797:32583029,25620327 -) -(1,16800:6630773,26855031:25952256,505283,134348 -k1,16799:8650090,26855031:186930 -k1,16799:10428890,26855031:186930 -k1,16799:12005182,26855031:186929 -k1,16799:14716559,26855031:186930 -k1,16799:17479709,26855031:186930 -k1,16799:18658199,26855031:186930 -k1,16799:21629098,26855031:186930 -k1,16799:22467455,26855031:186929 -k1,16799:23069216,26855031:186918 -k1,16799:25140961,26855031:186930 -k1,16799:26761818,26855031:186929 -k1,16799:27537261,26855031:186930 -k1,16799:30304343,26855031:186930 -k1,16799:32583029,26855031:0 -) -(1,16800:6630773,27696519:25952256,505283,134348 -k1,16799:9088424,27696519:214353 -k1,16799:11103707,27696519:214354 -k1,16799:12509505,27696519:214353 -k1,16799:15304011,27696519:214354 -k1,16799:18346897,27696519:214353 -k1,16799:21692561,27696519:214354 -k1,16799:23098359,27696519:214353 -k1,16799:25466226,27696519:214354 -k1,16799:27655225,27696519:214399 -k1,16799:28888663,27696519:214353 -k1,16799:30251208,27696519:214354 -k1,16799:31622271,27696519:214353 -k1,16800:32583029,27696519:0 -) -(1,16800:6630773,28538007:25952256,513147,134348 -k1,16799:7822268,28538007:201246 -k1,16799:9042599,28538007:201246 -k1,16799:10845545,28538007:201246 -k1,16799:13035153,28538007:201246 -k1,16799:14427844,28538007:201246 -k1,16799:17539544,28538007:201246 -k1,16799:19342489,28538007:201245 -k1,16799:22043934,28538007:201246 -k1,16799:24491099,28538007:201246 -k1,16799:27476314,28538007:201246 -k1,16799:28293598,28538007:201246 -k1,16799:28909685,28538007:201244 -k1,16799:30058582,28538007:201246 -k1,16799:32583029,28538007:0 -) -(1,16800:6630773,29379495:25952256,513147,134348 -k1,16799:8368586,29379495:174779 -k1,16799:10033655,29379495:174780 -k1,16799:11380873,29379495:174779 -k1,16799:14317996,29379495:174780 -k1,16799:15757620,29379495:174779 -k1,16799:16591691,29379495:174779 -k1,16799:19485560,29379495:174780 -k1,16799:22884710,29379495:174779 -k1,16799:24336130,29379495:174779 -k1,16799:26254823,29379495:174780 -k1,16799:27942828,29379495:174779 -k1,16799:28769036,29379495:174780 -k1,16799:31563944,29379495:174779 -k1,16799:32583029,29379495:0 -) -(1,16800:6630773,30220983:25952256,505283,134348 -k1,16799:9524389,30220983:181736 -k1,16799:12655901,30220983:181737 -k1,16799:15706803,30220983:181736 -k1,16799:17382106,30220983:181737 -k1,16799:18250004,30220983:181736 -k1,16799:19930548,30220983:181736 -k1,16799:21303730,30220983:181737 -k1,16799:24334316,30220983:181736 -k1,16799:25507612,30220983:181736 -k1,16799:28473318,30220983:181737 -k1,16799:29271092,30220983:181736 -k1,16799:30041342,30220983:181737 -k1,16799:31966991,30220983:181736 -k1,16799:32583029,30220983:0 -) -(1,16800:6630773,31062471:25952256,505283,134348 -g1,16799:8263930,31062471 -g1,16799:8878002,31062471 -g1,16799:10268676,31062471 -g1,16799:10823765,31062471 -g1,16799:12941888,31062471 -g1,16799:14297827,31062471 -g1,16799:15113094,31062471 -g1,16799:16331408,31062471 -g1,16799:18156584,31062471 -g1,16799:20935965,31062471 -g1,16799:23655054,31062471 -k1,16800:32583029,31062471:6953375 -g1,16800:32583029,31062471 -) -(1,16802:6630773,31903959:25952256,513147,134348 -h1,16801:6630773,31903959:983040,0,0 -k1,16801:8497188,31903959:255540 -k1,16801:9955969,31903959:255540 -k1,16801:12629132,31903959:255540 -k1,16801:14055144,31903959:255539 -k1,16801:15443146,31903959:255540 -k1,16801:17310216,31903959:255540 -k1,16801:18584841,31903959:255540 -k1,16801:21672192,31903959:255540 -k1,16801:22587024,31903959:255540 -k1,16801:23861649,31903959:255540 -k1,16801:26443061,31903959:255539 -k1,16801:29601191,31903959:255540 -k1,16801:30516023,31903959:255540 -k1,16802:32583029,31903959:0 -) -(1,16802:6630773,32745447:25952256,505283,134348 -k1,16801:7891733,32745447:222214 -k1,16801:8923317,32745447:222214 -k1,16801:11031002,32745447:222214 -k1,16801:13833367,32745447:222213 -k1,16801:16884114,32745447:222214 -k1,16801:17637825,32745447:222214 -k1,16801:19888378,32745447:222214 -k1,16801:21364296,32745447:222214 -k1,16801:22718972,32745447:222214 -k1,16801:24227002,32745447:222214 -k1,16801:26060745,32745447:222213 -k1,16801:27613340,32745447:222214 -k1,16801:28486982,32745447:222214 -k1,16801:30351528,32745447:222214 -k1,16801:32583029,32745447:0 -) -(1,16802:6630773,33586935:25952256,513147,134348 -k1,16801:8513118,33586935:165957 -k1,16801:9338368,33586935:165958 -k1,16801:10893688,33586935:165957 -k1,16801:12667244,33586935:165958 -k1,16801:14227152,33586935:165957 -k1,16801:16973261,33586935:165957 -k1,16801:20141422,33586935:165958 -k1,16801:21125268,33586935:165957 -k1,16801:21647085,33586935:165957 -k1,16801:25895936,33586935:165958 -k1,16801:26721185,33586935:165957 -k1,16801:27906228,33586935:165958 -k1,16801:31391584,33586935:165957 -k1,16801:32583029,33586935:0 -) -(1,16802:6630773,34428423:25952256,513147,134348 -k1,16801:9765142,34428423:160345 -k1,16801:10584779,34428423:160345 -k1,16801:13747327,34428423:160345 -k1,16801:15659449,34428423:160345 -k1,16801:19549447,34428423:160344 -k1,16801:22620246,34428423:160345 -k1,16801:25923042,34428423:160345 -k1,16801:26871785,34428423:160345 -k1,16801:31107814,34428423:160345 -k1,16801:32583029,34428423:0 -) -(1,16802:6630773,35269911:25952256,513147,126483 -k1,16801:8332267,35269911:191544 -k1,16801:11784883,35269911:191545 -k1,16801:13167872,35269911:191544 -k1,16801:16499247,35269911:191545 -k1,16801:17306829,35269911:191544 -k1,16801:19474284,35269911:191545 -k1,16801:23640587,35269911:191544 -k1,16801:26766833,35269911:191544 -k1,16801:27171362,35269911:191537 -k1,16801:28495369,35269911:191545 -k1,16801:30424928,35269911:191544 -k1,16801:32583029,35269911:0 -) -(1,16802:6630773,36111399:25952256,513147,134348 -g1,16801:7639372,36111399 -g1,16801:10418753,36111399 -g1,16801:13446515,36111399 -g1,16801:15021345,36111399 -g1,16801:17253501,36111399 -g1,16801:20764920,36111399 -g1,16801:21320009,36111399 -g1,16801:22652356,36111399 -g1,16801:23510877,36111399 -g1,16801:25406833,36111399 -k1,16802:32583029,36111399:3599896 -g1,16802:32583029,36111399 -) -(1,16803:6630773,38918967:25952256,32768,229376 -(1,16803:6630773,38918967:0,32768,229376 -(1,16803:6630773,38918967:5505024,32768,229376 -r1,16820:12135797,38918967:5505024,262144,229376 -) -k1,16803:6630773,38918967:-5505024 -) -(1,16803:6630773,38918967:25952256,32768,0 -r1,16820:32583029,38918967:25952256,32768,0 -) -) -(1,16803:6630773,40523295:25952256,606339,161218 -(1,16803:6630773,40523295:1974731,582746,14155 -g1,16803:6630773,40523295 -g1,16803:8605504,40523295 -) -g1,16803:12473177,40523295 -g1,16803:14599689,40523295 -g1,16803:15614973,40523295 -g1,16803:17348269,40523295 -k1,16803:32583029,40523295:12233735 -g1,16803:32583029,40523295 -) -(1,16808:6630773,41757999:25952256,513147,134348 -k1,16807:7270841,41757999:162311 -k1,16807:8452237,41757999:162311 -k1,16807:11525002,41757999:162311 -k1,16807:13200538,41757999:162310 -k1,16807:13978887,41757999:162311 -k1,16807:15344439,41757999:162311 -k1,16807:17924373,41757999:162311 -k1,16807:19078244,41757999:162311 -k1,16807:20306826,41757999:162311 -k1,16807:21434482,41757999:162311 -k1,16807:24334231,41757999:162310 -k1,16807:25112580,41757999:162311 -k1,16807:26733722,41757999:162311 -k1,16807:30145963,41757999:162311 -k1,16807:31478747,41757999:162311 -k1,16807:32583029,41757999:0 -) -(1,16808:6630773,42599487:25952256,505283,134348 -g1,16807:8799359,42599487 -g1,16807:10637643,42599487 -g1,16807:11523034,42599487 -g1,16807:13797788,42599487 -g1,16807:16039119,42599487 -g1,16807:16924510,42599487 -g1,16807:18512447,42599487 -g1,16807:19397838,42599487 -g1,16807:22177219,42599487 -g1,16807:26182778,42599487 -g1,16807:26913504,42599487 -g1,16807:29447125,42599487 -k1,16808:32583029,42599487:224795 -g1,16808:32583029,42599487 -) -v1,16810:6630773,43789953:0,393216,0 -(1,16814:6630773,44105049:25952256,708312,196608 -g1,16814:6630773,44105049 -g1,16814:6630773,44105049 -g1,16814:6434165,44105049 -(1,16814:6434165,44105049:0,708312,196608 -r1,16820:32779637,44105049:26345472,904920,196608 -k1,16814:6434165,44105049:-26345472 -) -(1,16814:6434165,44105049:26345472,708312,196608 -[1,16814:6630773,44105049:25952256,511704,0 -(1,16812:6630773,43997571:25952256,404226,107478 -(1,16811:6630773,43997571:0,0,0 -g1,16811:6630773,43997571 -g1,16811:6630773,43997571 -g1,16811:6303093,43997571 -(1,16811:6303093,43997571:0,0,0 -) -g1,16811:6630773,43997571 -) -k1,16812:6630773,43997571:0 -h1,16812:20541182,43997571:0,0,0 -k1,16812:32583029,43997571:12041847 -g1,16812:32583029,43997571 -) -] -) -g1,16814:32583029,44105049 -g1,16814:6630773,44105049 -g1,16814:6630773,44105049 -g1,16814:32583029,44105049 -g1,16814:32583029,44105049 -) -h1,16814:6630773,44301657:0,0,0 -] -(1,16820:32583029,45706769:0,0,0 -g1,16820:32583029,45706769 -) -) -] -(1,16820:6630773,47279633:25952256,485622,0 -(1,16820:6630773,47279633:25952256,485622,0 -(1,16820:6630773,47279633:0,0,0 -v1,16820:6630773,47279633:0,0,0 -) -g1,16820:6830002,47279633 -k1,16820:31387652,47279633:24557650 -) -) -] -(1,16820:4262630,4025873:0,0,0 -[1,16820:-473656,4025873:0,0,0 -(1,16820:-473656,-710413:0,0,0 -(1,16820:-473656,-710413:0,0,0 -g1,16820:-473656,-710413 -) -g1,16820:-473656,-710413 -) -] -) -] -!15189 -}286 -!12 -{287 -[1,16850:4262630,47279633:28320399,43253760,0 -(1,16850:4262630,4025873:0,0,0 -[1,16850:-473656,4025873:0,0,0 -(1,16850:-473656,-710413:0,0,0 -(1,16850:-473656,-644877:0,0,0 -k1,16850:-473656,-644877:-65536 +[1,16743:6630773,45706769:25952256,40108032,0 +v1,16675:6630773,6254097:0,393216,0 +(1,16675:6630773,9960831:25952256,4099950,0 +g1,16675:6630773,9960831 +g1,16675:6237557,9960831 +r1,16743:6368629,9960831:131072,4099950,0 +g1,16675:6567858,9960831 +g1,16675:6764466,9960831 +[1,16675:6764466,9960831:25818563,4099950,0 +(1,16675:6764466,6374028:25818563,513147,134348 +k1,16674:9716315,6374028:198682 +k1,16674:10676525,6374028:198682 +k1,16674:14587822,6374028:198682 +k1,16674:16180454,6374028:198681 +(1,16674:16180454,6374028:0,452978,122846 +r1,16743:19352414,6374028:3171960,575824,122846 +k1,16674:16180454,6374028:-3171960 +) +(1,16674:16180454,6374028:3171960,452978,122846 +k1,16674:16180454,6374028:3277 +h1,16674:19349137,6374028:0,411205,112570 +) +k1,16674:19551096,6374028:198682 +k1,16674:20850783,6374028:198682 +k1,16674:22068550,6374028:198682 +k1,16674:23566811,6374028:198682 +k1,16674:25536275,6374028:198681 +k1,16674:26394249,6374028:198682 +k1,16674:29975899,6374028:198682 +k1,16674:31193666,6374028:198682 +k1,16674:32583029,6374028:0 +) +(1,16675:6764466,7239108:25818563,513147,134348 +k1,16674:8799564,7239108:158802 +k1,16674:10225831,7239108:158801 +k1,16674:10740493,7239108:158802 +k1,16674:12884381,7239108:158802 +k1,16674:14424027,7239108:158802 +k1,16674:15114325,7239108:158801 +k1,16674:18627260,7239108:158802 +k1,16674:19437490,7239108:158802 +k1,16674:20344058,7239108:158802 +k1,16674:21856833,7239108:158801 +k1,16674:23798870,7239108:158802 +k1,16674:25826103,7239108:158802 +k1,16674:26817868,7239108:158802 +k1,16674:27662831,7239108:158801 +k1,16674:29476417,7239108:158802 +k1,16674:30626779,7239108:158802 +k1,16675:32583029,7239108:0 +) +(1,16675:6764466,8104188:25818563,513147,126483 +k1,16674:8708481,8104188:170611 +k1,16674:9495131,8104188:170612 +k1,16674:10996123,8104188:170611 +k1,16674:12185819,8104188:170611 +k1,16674:15570971,8104188:170611 +k1,16674:18488197,8104188:170612 +(1,16674:18488197,8104188:0,452978,115847 +r1,16743:20253311,8104188:1765114,568825,115847 +k1,16674:18488197,8104188:-1765114 +) +(1,16674:18488197,8104188:1765114,452978,115847 +g1,16674:19194898,8104188 +g1,16674:19898322,8104188 +h1,16674:20250034,8104188:0,411205,112570 +) +k1,16674:20423922,8104188:170611 +k1,16674:23147816,8104188:170611 +k1,16674:23934466,8104188:170612 +k1,16674:25124162,8104188:170611 +k1,16674:26467212,8104188:170611 +k1,16674:28508876,8104188:170611 +k1,16674:29876175,8104188:170612 +k1,16674:31345054,8104188:170611 +k1,16674:32583029,8104188:0 +) +(1,16675:6764466,8969268:25818563,513147,134348 +k1,16674:7655569,8969268:239675 +k1,16674:9510050,8969268:239674 +k1,16674:11245912,8969268:239675 +k1,16674:13844227,8969268:239674 +k1,16674:15176387,8969268:239675 +k1,16674:16075353,8969268:239674 +k1,16674:19340825,8969268:239675 +k1,16674:21148120,8969268:239674 +k1,16674:23360428,8969268:239675 +k1,16674:24791547,8969268:239674 +k1,16674:26836083,8969268:239675 +k1,16674:27607254,8969268:239674 +k1,16674:28498357,8969268:239675 +k1,16674:30867296,8969268:239674 +k1,16674:32583029,8969268:0 +) +(1,16675:6764466,9834348:25818563,513147,126483 +g1,16674:8344539,9834348 +g1,16674:9828274,9834348 +g1,16674:13688999,9834348 +g1,16674:15384415,9834348 +g1,16674:17510402,9834348 +g1,16674:20518504,9834348 +g1,16674:22111684,9834348 +g1,16674:23777609,9834348 +g1,16674:26118555,9834348 +g1,16674:27509229,9834348 +g1,16674:29097821,9834348 +k1,16675:32583029,9834348:1104940 +g1,16675:32583029,9834348 +) +] +g1,16675:32583029,9960831 +) +h1,16675:6630773,9960831:0,0,0 +v1,16679:6630773,10825911:0,393216,0 +(1,16680:6630773,13970041:25952256,3537346,0 +g1,16680:6630773,13970041 +g1,16680:6237557,13970041 +r1,16743:6368629,13970041:131072,3537346,0 +g1,16680:6567858,13970041 +g1,16680:6764466,13970041 +[1,16680:6764466,13970041:25818563,3537346,0 +(1,16680:6764466,11240453:25818563,807758,219026 +(1,16679:6764466,11240453:0,807758,219026 +r1,16743:7908217,11240453:1143751,1026784,219026 +k1,16679:6764466,11240453:-1143751 +) +(1,16679:6764466,11240453:1143751,807758,219026 +) +k1,16679:8106539,11240453:198322 +k1,16679:8434219,11240453:327680 +k1,16679:9260377,11240453:198323 +k1,16679:11016490,11240453:198322 +k1,16679:12982318,11240453:198322 +k1,16679:15760792,11240453:198322 +k1,16679:17931748,11240453:198323 +k1,16679:20463807,11240453:198322 +k1,16679:22204847,11240453:198322 +k1,16679:24368594,11240453:198322 +k1,16679:27093330,11240453:198323 +k1,16679:28239303,11240453:198322 +k1,16679:32583029,11240453:0 +) +(1,16680:6764466,12105533:25818563,513147,134348 +k1,16679:9856532,12105533:209137 +k1,16679:10827197,12105533:209137 +k1,16679:13223926,12105533:209137 +k1,16679:14084491,12105533:209137 +k1,16679:17319425,12105533:209137 +k1,16679:17884422,12105533:209137 +k1,16679:19376755,12105533:209138 +k1,16679:22866624,12105533:209137 +(1,16679:23073718,12105533:0,452978,115847 +r1,16743:23783696,12105533:709978,568825,115847 +k1,16679:23073718,12105533:-709978 +) +(1,16679:23073718,12105533:709978,452978,115847 +k1,16679:23073718,12105533:3277 +h1,16679:23780419,12105533:0,411205,112570 +) +k1,16679:23992833,12105533:209137 +k1,16679:24884855,12105533:209137 +(1,16679:24884855,12105533:0,452978,115847 +r1,16743:25946544,12105533:1061689,568825,115847 +k1,16679:24884855,12105533:-1061689 +) +(1,16679:24884855,12105533:1061689,452978,115847 +k1,16679:24884855,12105533:3277 +h1,16679:25943267,12105533:0,411205,112570 +) +k1,16679:26536445,12105533:209137 +k1,16679:28126426,12105533:209137 +k1,16679:28867060,12105533:209137 +k1,16679:30274851,12105533:209137 +k1,16680:32583029,12105533:0 +) +(1,16680:6764466,12970613:25818563,513147,134348 +k1,16679:8361578,12970613:193331 +k1,16679:9325612,12970613:193331 +k1,16679:13689000,12970613:193332 +k1,16679:16157741,12970613:193331 +k1,16679:17635578,12970613:193331 +k1,16679:19165843,12970613:193331 +k1,16679:21773521,12970613:193332 +k1,16679:24642032,12970613:193331 +k1,16679:25293460,12970613:193331 +k1,16679:26018288,12970613:193331 +k1,16679:29420918,12970613:193332 +k1,16679:30265677,12970613:193331 +k1,16679:31966991,12970613:193331 +k1,16679:32583029,12970613:0 +) +(1,16680:6764466,13835693:25818563,505283,134348 +g1,16679:8620445,13835693 +g1,16679:10104180,13835693 +g1,16679:11506650,13835693 +g1,16679:14690389,13835693 +g1,16679:15541046,13835693 +g1,16679:18623204,13835693 +g1,16679:19353930,13835693 +g1,16679:20619430,13835693 +g1,16679:24012884,13835693 +g1,16679:25358338,13835693 +g1,16679:26842073,13835693 +g1,16679:30131325,13835693 +k1,16680:32583029,13835693:422709 +g1,16680:32583029,13835693 +) +] +g1,16680:32583029,13970041 +) +h1,16680:6630773,13970041:0,0,0 +(1,16682:6630773,16086859:25952256,555811,104529 +(1,16682:6630773,16086859:2450326,534184,12975 +g1,16682:6630773,16086859 +g1,16682:9081099,16086859 +) +k1,16682:32583028,16086859:21647784 +g1,16682:32583028,16086859 +) +(1,16686:6630773,17345155:25952256,505283,95026 +k1,16685:8556330,17345155:308128 +k1,16685:10546113,17345155:308129 +k1,16685:11599385,17345155:308128 +k1,16685:12558941,17345155:308128 +k1,16685:15578950,17345155:308129 +k1,16685:17059517,17345155:308128 +k1,16685:18757008,17345155:308128 +k1,16685:21504387,17345155:308129 +k1,16685:23697986,17345155:308128 +k1,16685:25742818,17345155:308128 +k1,16685:27743087,17345155:308129 +k1,16685:31066526,17345155:308128 +k1,16686:32583029,17345155:0 +) +(1,16686:6630773,18210235:25952256,513147,134348 +k1,16685:8463104,18210235:193276 +k1,16685:9272419,18210235:193277 +k1,16685:12243111,18210235:193276 +k1,16685:13427948,18210235:193277 +k1,16685:15134450,18210235:193276 +k1,16685:15979155,18210235:193277 +k1,16685:18153584,18210235:193276 +k1,16685:19365946,18210235:193277 +k1,16685:24182787,18210235:193276 +k1,16685:25910262,18210235:193277 +k1,16685:28146295,18210235:193276 +k1,16685:31167451,18210235:193277 +k1,16686:32583029,18210235:0 +) +(1,16686:6630773,19075315:25952256,513147,134348 +k1,16685:8498132,19075315:228304 +k1,16685:10003076,19075315:228303 +k1,16685:13151664,19075315:228304 +k1,16685:14947588,19075315:228303 +k1,16685:16642588,19075315:228304 +k1,16685:19310141,19075315:228303 +k1,16685:22392538,19075315:228304 +k1,16685:24453228,19075315:228303 +k1,16685:25673092,19075315:228304 +k1,16685:28132896,19075315:228303 +k1,16685:29557232,19075315:228304 +k1,16685:32583029,19075315:0 +) +(1,16686:6630773,19940395:25952256,513147,126483 +k1,16685:7495673,19940395:248862 +k1,16685:9890838,19940395:248862 +k1,16685:11697491,19940395:248862 +k1,16685:13689611,19940395:248862 +k1,16685:16096574,19940395:248862 +k1,16685:16961474,19940395:248862 +k1,16685:18540717,19940395:248862 +k1,16685:20169768,19940395:248863 +k1,16685:22577386,19940395:248862 +k1,16685:24360446,19940395:248862 +k1,16685:25893814,19940395:248862 +k1,16685:26957944,19940395:248862 +k1,16685:28273077,19940395:248862 +k1,16685:29997154,19940395:248862 +k1,16685:30601876,19940395:248862 +k1,16685:32583029,19940395:0 +) +(1,16686:6630773,20805475:25952256,505283,7863 +g1,16685:9465205,20805475 +g1,16685:11053797,20805475 +k1,16686:32583029,20805475:18916312 +g1,16686:32583029,20805475 +) +(1,16688:6630773,21670555:25952256,513147,7863 +h1,16687:6630773,21670555:983040,0,0 +k1,16687:8786252,21670555:218890 +k1,16687:10934522,21670555:218890 +k1,16687:12551295,21670555:218890 +k1,16687:14462325,21670555:218890 +k1,16687:17309864,21670555:218890 +k1,16687:18918118,21670555:218891 +k1,16687:19788436,21670555:218890 +k1,16687:24040412,21670555:218890 +k1,16687:25278387,21670555:218890 +k1,16687:26589762,21670555:218890 +k1,16687:27467944,21670555:218890 +k1,16687:29383561,21670555:218890 +k1,16687:32583029,21670555:0 +) +(1,16688:6630773,22535635:25952256,505283,102891 +k1,16687:7750229,22535635:165907 +k1,16687:9048598,22535635:165907 +k1,16687:11143885,22535635:165907 +k1,16687:12482230,22535635:165906 +k1,16687:14364525,22535635:165907 +k1,16687:16845819,22535635:165907 +k1,16687:18405677,22535635:165907 +k1,16687:19728294,22535635:165907 +k1,16687:22277090,22535635:165907 +k1,16687:23059034,22535635:165906 +k1,16687:26002357,22535635:165907 +k1,16687:27359709,22535635:165907 +k1,16687:28682326,22535635:165907 +k1,16687:32583029,22535635:0 +) +(1,16688:6630773,23400715:25952256,505283,7863 +g1,16687:8033898,23400715 +g1,16687:8849165,23400715 +k1,16688:32583030,23400715:22108572 +g1,16688:32583030,23400715 +) +v1,16692:6630773,24085570:0,393216,0 +(1,16697:6630773,25091290:25952256,1398936,196608 +g1,16697:6630773,25091290 +g1,16697:6630773,25091290 +g1,16697:6434165,25091290 +(1,16697:6434165,25091290:0,1398936,196608 +r1,16743:32779637,25091290:26345472,1595544,196608 +k1,16697:6434165,25091290:-26345472 +) +(1,16697:6434165,25091290:26345472,1398936,196608 +[1,16697:6630773,25091290:25952256,1202328,0 +(1,16694:6630773,24320007:25952256,431045,86428 +(1,16693:6630773,24320007:0,0,0 +g1,16693:6630773,24320007 +g1,16693:6630773,24320007 +g1,16693:6303093,24320007 +(1,16693:6303093,24320007:0,0,0 +) +g1,16693:6630773,24320007 +) +g1,16694:9618358,24320007 +g1,16694:10614220,24320007 +g1,16694:14265714,24320007 +g1,16694:14929622,24320007 +g1,16694:17253300,24320007 +g1,16694:18581116,24320007 +g1,16694:21236748,24320007 +g1,16694:21900656,24320007 +h1,16694:23228472,24320007:0,0,0 +k1,16694:32583029,24320007:9354557 +g1,16694:32583029,24320007 +) +(1,16695:6630773,25004862:25952256,424439,86428 +h1,16695:6630773,25004862:0,0,0 +g1,16695:9950312,25004862 +g1,16695:10946174,25004862 +g1,16695:14597668,25004862 +g1,16695:15261576,25004862 +g1,16695:17585254,25004862 +g1,16695:18913070,25004862 +g1,16695:21568702,25004862 +g1,16695:22232610,25004862 +h1,16695:23560426,25004862:0,0,0 +k1,16695:32583029,25004862:9022603 +g1,16695:32583029,25004862 +) +] +) +g1,16697:32583029,25091290 +g1,16697:6630773,25091290 +g1,16697:6630773,25091290 +g1,16697:32583029,25091290 +g1,16697:32583029,25091290 +) +h1,16697:6630773,25287898:0,0,0 +(1,16701:6630773,26152978:25952256,513147,126483 +h1,16700:6630773,26152978:983040,0,0 +k1,16700:9767419,26152978:286485 +k1,16700:10922255,26152978:286484 +k1,16700:12972314,26152978:286485 +k1,16700:14277884,26152978:286485 +k1,16700:14277884,26152978:0 +k1,16700:17590165,26152978:286484 +k1,16700:20717636,26152978:286485 +k1,16700:21765649,26152978:286485 +k1,16700:24198436,26152978:286484 +(1,16700:24198436,26152978:0,459977,122846 +r1,16743:28073820,26152978:3875384,582823,122846 +k1,16700:24198436,26152978:-3875384 +) +(1,16700:24198436,26152978:3875384,459977,122846 +k1,16700:24198436,26152978:3277 +h1,16700:28070543,26152978:0,411205,112570 +) +k1,16700:28533975,26152978:286485 +(1,16700:28533975,26152978:0,459977,122846 +r1,16743:32409359,26152978:3875384,582823,122846 +k1,16700:28533975,26152978:-3875384 +) +(1,16700:28533975,26152978:3875384,459977,122846 +k1,16700:28533975,26152978:3277 +h1,16700:32406082,26152978:0,411205,112570 +) +k1,16701:32583029,26152978:0 +) +(1,16701:6630773,27018058:25952256,513147,126483 +(1,16700:6630773,27018058:0,452978,122846 +r1,16743:10857869,27018058:4227096,575824,122846 +k1,16700:6630773,27018058:-4227096 +) +(1,16700:6630773,27018058:4227096,452978,122846 +k1,16700:6630773,27018058:3277 +h1,16700:10854592,27018058:0,411205,112570 +) +k1,16700:11123940,27018058:266071 +k1,16700:12581455,27018058:266070 +(1,16700:12581455,27018058:0,452978,122846 +r1,16743:16808551,27018058:4227096,575824,122846 +k1,16700:12581455,27018058:-4227096 +) +(1,16700:12581455,27018058:4227096,452978,122846 +k1,16700:12581455,27018058:3277 +h1,16700:16805274,27018058:0,411205,112570 +) +k1,16700:17248292,27018058:266071 +k1,16700:19388693,27018058:266071 +k1,16700:22680560,27018058:266070 +k1,16700:25075896,27018058:266071 +k1,16700:27206466,27018058:266071 +k1,16700:28238652,27018058:266070 +k1,16700:31391584,27018058:266071 +k1,16700:32583029,27018058:0 +) +(1,16701:6630773,27883138:25952256,513147,134348 +k1,16700:7478557,27883138:231746 +k1,16700:9077383,27883138:231745 +k1,16700:9968421,27883138:231746 +k1,16700:12871413,27883138:231745 +k1,16700:15935625,27883138:231746 +k1,16700:17675353,27883138:231745 +k1,16700:18262959,27883138:231746 +k1,16700:19698600,27883138:231745 +k1,16700:20877997,27883138:231746 +k1,16700:22561364,27883138:231745 +k1,16700:25764512,27883138:231746 +k1,16700:29984123,27883138:231745 +k1,16700:30875161,27883138:231746 +k1,16700:32583029,27883138:0 +) +(1,16701:6630773,28748218:25952256,505283,134348 +k1,16700:7810780,28748218:226458 +k1,16700:10053780,28748218:226457 +k1,16700:11731860,28748218:226458 +k1,16700:14619734,28748218:226457 +k1,16700:16240143,28748218:226458 +k1,16700:17485685,28748218:226457 +k1,16700:21114772,28748218:226458 +k1,16700:23546517,28748218:226458 +k1,16700:24424402,28748218:226457 +(1,16700:24424402,28748218:0,414482,115847 +r1,16743:24782668,28748218:358266,530329,115847 +k1,16700:24424402,28748218:-358266 +) +(1,16700:24424402,28748218:358266,414482,115847 +k1,16700:24424402,28748218:3277 +h1,16700:24779391,28748218:0,411205,112570 +) +k1,16700:25009126,28748218:226458 +k1,16700:26427028,28748218:226457 +(1,16700:26427028,28748218:0,414482,115847 +r1,16743:26785294,28748218:358266,530329,115847 +k1,16700:26427028,28748218:-358266 +) +(1,16700:26427028,28748218:358266,414482,115847 +k1,16700:26427028,28748218:3277 +h1,16700:26782017,28748218:0,411205,112570 +) +k1,16700:27011752,28748218:226458 +k1,16700:30054946,28748218:226457 +k1,16700:30932832,28748218:226458 +k1,16700:32583029,28748218:0 +) +(1,16701:6630773,29613298:25952256,513147,126483 +g1,16700:8926499,29613298 +g1,16700:10786410,29613298 +g1,16700:12494278,29613298 +g1,16700:15455850,29613298 +k1,16701:32583029,29613298:14193788 +g1,16701:32583029,29613298 +) +(1,16703:6630773,30478378:25952256,513147,134348 +h1,16702:6630773,30478378:983040,0,0 +k1,16702:8290875,30478378:189474 +k1,16702:9570222,30478378:189483 +k1,16702:10997025,30478378:189483 +k1,16702:13381309,30478378:189483 +k1,16702:14336908,30478378:189483 +k1,16702:18105313,30478378:189484 +k1,16702:19828994,30478378:189483 +k1,16702:21849553,30478378:189483 +k1,16702:24511054,30478378:189483 +k1,16702:26711182,30478378:189483 +k1,16702:28294617,30478378:189484 +(1,16702:28294617,30478378:0,414482,115847 +r1,16743:29004595,30478378:709978,530329,115847 +k1,16702:28294617,30478378:-709978 +) +(1,16702:28294617,30478378:709978,414482,115847 +k1,16702:28294617,30478378:3277 +h1,16702:29001318,30478378:0,411205,112570 +) +k1,16702:29367748,30478378:189483 +k1,16702:30317449,30478378:189483 +k1,16702:32583029,30478378:0 +) +(1,16703:6630773,31343458:25952256,505283,115847 +k1,16702:7925790,31343458:275932 +k1,16702:10182875,31343458:275932 +k1,16702:10990303,31343458:275931 +k1,16702:12843687,31343458:275932 +k1,16702:13928989,31343458:275932 +k1,16702:16918112,31343458:275932 +k1,16702:18587995,31343458:275932 +k1,16702:19883012,31343458:275932 +k1,16702:21812416,31343458:275931 +k1,16702:23826363,31343458:275932 +k1,16702:24718333,31343458:275932 +(1,16702:24718333,31343458:0,414482,115847 +r1,16743:25076599,31343458:358266,530329,115847 +k1,16702:24718333,31343458:-358266 +) +(1,16702:24718333,31343458:358266,414482,115847 +k1,16702:24718333,31343458:3277 +h1,16702:25073322,31343458:0,411205,112570 +) +k1,16702:25352531,31343458:275932 +k1,16702:26819908,31343458:275932 +(1,16702:26819908,31343458:0,414482,115847 +r1,16743:27178174,31343458:358266,530329,115847 +k1,16702:26819908,31343458:-358266 +) +(1,16702:26819908,31343458:358266,414482,115847 +k1,16702:26819908,31343458:3277 +h1,16702:27174897,31343458:0,411205,112570 +) +k1,16702:27627776,31343458:275932 +k1,16702:28975876,31343458:275931 +k1,16702:30455049,31343458:275932 +k1,16702:31835263,31343458:275932 +k1,16702:32583029,31343458:0 +) +(1,16703:6630773,32208538:25952256,505283,134348 +k1,16702:9452628,32208538:160438 +k1,16702:10374593,32208538:160437 +k1,16702:12962485,32208538:160438 +k1,16702:13893626,32208538:160438 +k1,16702:17126392,32208538:160438 +k1,16702:17938257,32208538:160437 +k1,16702:21379427,32208538:160438 +(1,16702:21379427,32208538:0,452978,115847 +r1,16743:22089405,32208538:709978,568825,115847 +k1,16702:21379427,32208538:-709978 +) +(1,16702:21379427,32208538:709978,452978,115847 +k1,16702:21379427,32208538:3277 +h1,16702:22086128,32208538:0,411205,112570 +) +k1,16702:22423513,32208538:160438 +k1,16702:24375704,32208538:160437 +(1,16702:24375704,32208538:0,452978,115847 +r1,16743:25085682,32208538:709978,568825,115847 +k1,16702:24375704,32208538:-709978 +) +(1,16702:24375704,32208538:709978,452978,115847 +k1,16702:24375704,32208538:3277 +h1,16702:25082405,32208538:0,411205,112570 +) +k1,16702:25246120,32208538:160438 +k1,16702:26563268,32208538:160438 +k1,16702:27827988,32208538:160438 +k1,16702:29422353,32208538:160437 +k1,16702:30601876,32208538:160438 +k1,16702:32583029,32208538:0 +) +(1,16703:6630773,33073618:25952256,513147,134348 +k1,16702:7631726,33073618:191583 +k1,16702:10536500,33073618:191583 +k1,16702:12012589,33073618:191583 +k1,16702:13679388,33073618:191584 +k1,16702:16633314,33073618:191583 +k1,16702:18893213,33073618:191583 +k1,16702:19700834,33073618:191583 +(1,16702:19700834,33073618:0,414482,115847 +r1,16743:20059100,33073618:358266,530329,115847 +k1,16702:19700834,33073618:-358266 +) +(1,16702:19700834,33073618:358266,414482,115847 +k1,16702:19700834,33073618:3277 +h1,16702:20055823,33073618:0,411205,112570 +) +k1,16702:20250683,33073618:191583 +k1,16702:21633711,33073618:191583 +(1,16702:21633711,33073618:0,414482,115847 +r1,16743:21991977,33073618:358266,530329,115847 +k1,16702:21633711,33073618:-358266 +) +(1,16702:21633711,33073618:358266,414482,115847 +k1,16702:21633711,33073618:3277 +h1,16702:21988700,33073618:0,411205,112570 +) +k1,16702:22357230,33073618:191583 +k1,16702:23231699,33073618:191584 +k1,16702:25855978,33073618:191583 +k1,16702:29018963,33073618:191583 +k1,16702:29869838,33073618:191583 +k1,16702:32583029,33073618:0 +) +(1,16703:6630773,33938698:25952256,513147,126483 +g1,16702:8223953,33938698 +g1,16702:9442267,33938698 +g1,16702:11294969,33938698 +g1,16702:13232213,33938698 +g1,16702:14047480,33938698 +(1,16702:14047480,33938698:0,414482,115847 +r1,16743:14405746,33938698:358266,530329,115847 +k1,16702:14047480,33938698:-358266 +) +(1,16702:14047480,33938698:358266,414482,115847 +k1,16702:14047480,33938698:3277 +h1,16702:14402469,33938698:0,411205,112570 +) +g1,16702:14604975,33938698 +g1,16702:15995649,33938698 +(1,16702:15995649,33938698:0,414482,115847 +r1,16743:16353915,33938698:358266,530329,115847 +k1,16702:15995649,33938698:-358266 +) +(1,16702:15995649,33938698:358266,414482,115847 +k1,16702:15995649,33938698:3277 +h1,16702:16350638,33938698:0,411205,112570 +) +g1,16702:16553144,33938698 +g1,16702:19620884,33938698 +g1,16702:20432875,33938698 +g1,16702:21815029,33938698 +g1,16702:22673550,33938698 +g1,16702:23891864,33938698 +k1,16703:32583029,33938698:6031714 +g1,16703:32583029,33938698 +) +v1,16705:6630773,34623553:0,393216,0 +(1,16722:6630773,42371808:25952256,8141471,196608 +g1,16722:6630773,42371808 +g1,16722:6630773,42371808 +g1,16722:6434165,42371808 +(1,16722:6434165,42371808:0,8141471,196608 +r1,16743:32779637,42371808:26345472,8338079,196608 +k1,16722:6434165,42371808:-26345472 +) +(1,16722:6434165,42371808:26345472,8141471,196608 +[1,16722:6630773,42371808:25952256,7944863,0 +(1,16707:6630773,34857990:25952256,431045,112852 +(1,16706:6630773,34857990:0,0,0 +g1,16706:6630773,34857990 +g1,16706:6630773,34857990 +g1,16706:6303093,34857990 +(1,16706:6303093,34857990:0,0,0 +) +g1,16706:6630773,34857990 +) +k1,16707:6630773,34857990:0 +g1,16707:10614220,34857990 +g1,16707:11278128,34857990 +g1,16707:14597667,34857990 +g1,16707:15261575,34857990 +g1,16707:15925483,34857990 +h1,16707:19245022,34857990:0,0,0 +k1,16707:32583029,34857990:13338007 +g1,16707:32583029,34857990 +) +(1,16711:6630773,36198205:25952256,431045,112852 +g1,16711:7626635,36198205 +g1,16711:10282267,36198205 +g1,16711:11942037,36198205 +g1,16711:13269853,36198205 +g1,16711:13933761,36198205 +k1,16711:32583029,36198205:14333867 +g1,16711:32583029,36198205 +) +(1,16721:6630773,36883060:25952256,424439,9908 +(1,16711:6630773,36883060:0,0,0 +g1,16711:6630773,36883060 +g1,16711:6630773,36883060 +g1,16711:6303093,36883060 +(1,16711:6303093,36883060:0,0,0 +) +g1,16711:6630773,36883060 +) +g1,16721:7626635,36883060 +g1,16721:8290543,36883060 +g1,16721:8954451,36883060 +g1,16721:11610083,36883060 +g1,16721:12273991,36883060 +g1,16721:12937899,36883060 +h1,16721:13269853,36883060:0,0,0 +k1,16721:32583029,36883060:19313176 +g1,16721:32583029,36883060 +) +(1,16721:6630773,37567915:25952256,424439,6605 +h1,16721:6630773,37567915:0,0,0 +g1,16721:7626635,37567915 +g1,16721:7958589,37567915 +g1,16721:8290543,37567915 +g1,16721:8622497,37567915 +g1,16721:8954451,37567915 +g1,16721:10282267,37567915 +g1,16721:12937899,37567915 +h1,16721:15261577,37567915:0,0,0 +k1,16721:32583029,37567915:17321452 +g1,16721:32583029,37567915 +) +(1,16721:6630773,38252770:25952256,424439,6605 +h1,16721:6630773,38252770:0,0,0 +g1,16721:7626635,38252770 +g1,16721:7958589,38252770 +g1,16721:8290543,38252770 +g1,16721:10282267,38252770 +g1,16721:12273991,38252770 +g1,16721:12605945,38252770 +g1,16721:12937899,38252770 +k1,16721:12937899,38252770:0 +h1,16721:14597669,38252770:0,0,0 +k1,16721:32583029,38252770:17985360 +g1,16721:32583029,38252770 +) +(1,16721:6630773,38937625:25952256,424439,6605 +h1,16721:6630773,38937625:0,0,0 +g1,16721:7626635,38937625 +g1,16721:8290543,38937625 +g1,16721:8622497,38937625 +g1,16721:8954451,38937625 +g1,16721:9286405,38937625 +g1,16721:9618359,38937625 +g1,16721:10282267,38937625 +g1,16721:10946175,38937625 +g1,16721:11278129,38937625 +g1,16721:11610083,38937625 +g1,16721:11942037,38937625 +g1,16721:12273991,38937625 +g1,16721:12605945,38937625 +g1,16721:12937899,38937625 +h1,16721:13269853,38937625:0,0,0 +k1,16721:32583029,38937625:19313176 +g1,16721:32583029,38937625 +) +(1,16721:6630773,39622480:25952256,424439,6605 +h1,16721:6630773,39622480:0,0,0 +g1,16721:7626635,39622480 +g1,16721:8290543,39622480 +g1,16721:8622497,39622480 +g1,16721:8954451,39622480 +g1,16721:9286405,39622480 +g1,16721:9618359,39622480 +g1,16721:10282267,39622480 +g1,16721:10946175,39622480 +g1,16721:11278129,39622480 +g1,16721:11610083,39622480 +g1,16721:11942037,39622480 +g1,16721:12273991,39622480 +g1,16721:12605945,39622480 +g1,16721:12937899,39622480 +h1,16721:13269853,39622480:0,0,0 +k1,16721:32583029,39622480:19313176 +g1,16721:32583029,39622480 +) +(1,16721:6630773,40307335:25952256,424439,9908 +h1,16721:6630773,40307335:0,0,0 +g1,16721:7626635,40307335 +g1,16721:8290543,40307335 +g1,16721:8622497,40307335 +g1,16721:8954451,40307335 +g1,16721:9286405,40307335 +g1,16721:9618359,40307335 +g1,16721:10282267,40307335 +g1,16721:10946175,40307335 +g1,16721:11278129,40307335 +g1,16721:11610083,40307335 +g1,16721:11942037,40307335 +g1,16721:12273991,40307335 +g1,16721:12605945,40307335 +g1,16721:12937899,40307335 +h1,16721:13269853,40307335:0,0,0 +k1,16721:32583029,40307335:19313176 +g1,16721:32583029,40307335 +) +(1,16721:6630773,40992190:25952256,424439,6605 +h1,16721:6630773,40992190:0,0,0 +g1,16721:7626635,40992190 +g1,16721:8290543,40992190 +g1,16721:8622497,40992190 +g1,16721:8954451,40992190 +g1,16721:9286405,40992190 +g1,16721:9618359,40992190 +g1,16721:10282267,40992190 +g1,16721:10946175,40992190 +g1,16721:11278129,40992190 +g1,16721:11610083,40992190 +g1,16721:11942037,40992190 +g1,16721:12273991,40992190 +g1,16721:12605945,40992190 +g1,16721:12937899,40992190 +h1,16721:13269853,40992190:0,0,0 +k1,16721:32583029,40992190:19313176 +g1,16721:32583029,40992190 +) +(1,16721:6630773,41677045:25952256,398014,9908 +h1,16721:6630773,41677045:0,0,0 +g1,16721:7626635,41677045 +g1,16721:8290543,41677045 +g1,16721:8622497,41677045 +g1,16721:8954451,41677045 +g1,16721:9286405,41677045 +g1,16721:9618359,41677045 +g1,16721:10282267,41677045 +g1,16721:10946175,41677045 +g1,16721:11278129,41677045 +g1,16721:11610083,41677045 +g1,16721:11942037,41677045 +g1,16721:12273991,41677045 +g1,16721:12605945,41677045 +g1,16721:12937899,41677045 +k1,16721:12937899,41677045:0 +h1,16721:14265715,41677045:0,0,0 +k1,16721:32583029,41677045:18317314 +g1,16721:32583029,41677045 +) +(1,16721:6630773,42361900:25952256,424439,9908 +h1,16721:6630773,42361900:0,0,0 +g1,16721:7626635,42361900 +g1,16721:8290543,42361900 +g1,16721:8622497,42361900 +g1,16721:8954451,42361900 +g1,16721:9286405,42361900 +g1,16721:9618359,42361900 +g1,16721:10282267,42361900 +g1,16721:11942037,42361900 +g1,16721:12273991,42361900 +g1,16721:12605945,42361900 +g1,16721:12937899,42361900 +h1,16721:13269853,42361900:0,0,0 +k1,16721:32583029,42361900:19313176 +g1,16721:32583029,42361900 +) +] +) +g1,16722:32583029,42371808 +g1,16722:6630773,42371808 +g1,16722:6630773,42371808 +g1,16722:32583029,42371808 +g1,16722:32583029,42371808 +) +h1,16722:6630773,42568416:0,0,0 +v1,16726:6630773,43253271:0,393216,0 +(1,16743:6630773,44940775:25952256,2080720,196608 +g1,16743:6630773,44940775 +g1,16743:6630773,44940775 +g1,16743:6434165,44940775 +(1,16743:6434165,44940775:0,2080720,196608 +r1,16743:32779637,44940775:26345472,2277328,196608 +k1,16743:6434165,44940775:-26345472 +) +(1,16743:6434165,44940775:26345472,2080720,196608 +[1,16743:6630773,44940775:25952256,1884112,0 +(1,16728:6630773,43487708:25952256,431045,112852 +(1,16727:6630773,43487708:0,0,0 +g1,16727:6630773,43487708 +g1,16727:6630773,43487708 +g1,16727:6303093,43487708 +(1,16727:6303093,43487708:0,0,0 +) +g1,16727:6630773,43487708 +) +k1,16728:6630773,43487708:0 +g1,16728:10614220,43487708 +g1,16728:11278128,43487708 +g1,16728:14929621,43487708 +g1,16728:15593529,43487708 +g1,16728:16257437,43487708 +h1,16728:19245022,43487708:0,0,0 +k1,16728:32583029,43487708:13338007 +g1,16728:32583029,43487708 +) +(1,16732:6630773,44827923:25952256,431045,112852 +g1,16732:7626635,44827923 +g1,16732:10282267,44827923 +g1,16732:11942037,44827923 +g1,16732:13269853,44827923 +g1,16732:13933761,44827923 +k1,16732:32583029,44827923:14333867 +g1,16732:32583029,44827923 +) +] +) +g1,16743:32583029,44940775 +g1,16743:6630773,44940775 +g1,16743:6630773,44940775 +g1,16743:32583029,44940775 +g1,16743:32583029,44940775 +) +] +(1,16743:32583029,45706769:0,0,0 +g1,16743:32583029,45706769 +) +) +] +(1,16743:6630773,47279633:25952256,0,0 +h1,16743:6630773,47279633:25952256,0,0 +) +] +(1,16743:4262630,4025873:0,0,0 +[1,16743:-473656,4025873:0,0,0 +(1,16743:-473656,-710413:0,0,0 +(1,16743:-473656,-710413:0,0,0 +g1,16743:-473656,-710413 +) +g1,16743:-473656,-710413 +) +] +) +] +!30823 +}268 +Input:2470:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2471:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2472:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2473:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!388 +{269 +[1,16831:4262630,47279633:28320399,43253760,0 +(1,16831:4262630,4025873:0,0,0 +[1,16831:-473656,4025873:0,0,0 +(1,16831:-473656,-710413:0,0,0 +(1,16831:-473656,-644877:0,0,0 +k1,16831:-473656,-644877:-65536 ) -(1,16850:-473656,4736287:0,0,0 -k1,16850:-473656,4736287:5209943 +(1,16831:-473656,4736287:0,0,0 +k1,16831:-473656,4736287:5209943 ) -g1,16850:-473656,-710413 +g1,16831:-473656,-710413 ) ] ) -[1,16850:6630773,47279633:25952256,43253760,0 -[1,16850:6630773,4812305:25952256,786432,0 -(1,16850:6630773,4812305:25952256,513147,126483 -(1,16850:6630773,4812305:25952256,513147,126483 -g1,16850:3078558,4812305 -[1,16850:3078558,4812305:0,0,0 -(1,16850:3078558,2439708:0,1703936,0 -k1,16850:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,16850:2537886,2439708:1179648,16384,0 +[1,16831:6630773,47279633:25952256,43253760,0 +[1,16831:6630773,4812305:25952256,786432,0 +(1,16831:6630773,4812305:25952256,505283,134348 +(1,16831:6630773,4812305:25952256,505283,134348 +g1,16831:3078558,4812305 +[1,16831:3078558,4812305:0,0,0 +(1,16831:3078558,2439708:0,1703936,0 +k1,16831:1358238,2439708:-1720320 +(1,15456:1358238,2439708:1720320,1703936,0 +(1,15456:1358238,2439708:1179648,16384,0 +r1,16831:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,16850:3078558,1915420:16384,1179648,0 +g1,15456:3062174,2439708 +(1,15456:3062174,2439708:16384,1703936,0 +[1,15456:3062174,2439708:25952256,1703936,0 +(1,15456:3062174,1915420:25952256,1179648,0 +(1,15456:3062174,1915420:16384,1179648,0 +r1,16831:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,15456:29014430,1915420:25935872 +g1,15456:29014430,1915420 ) ] ) ) ) ] -[1,16850:3078558,4812305:0,0,0 -(1,16850:3078558,2439708:0,1703936,0 -g1,16850:29030814,2439708 -g1,16850:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,16850:36151628,1915420:16384,1179648,0 +[1,16831:3078558,4812305:0,0,0 +(1,16831:3078558,2439708:0,1703936,0 +g1,16831:29030814,2439708 +g1,16831:36135244,2439708 +(1,15456:36135244,2439708:1720320,1703936,0 +(1,15456:36135244,2439708:16384,1703936,0 +[1,15456:36135244,2439708:25952256,1703936,0 +(1,15456:36135244,1915420:25952256,1179648,0 +(1,15456:36135244,1915420:16384,1179648,0 +r1,16831:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,15456:62087500,1915420:25935872 +g1,15456:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,16850:37855564,2439708:1179648,16384,0 +g1,15456:36675916,2439708 +(1,15456:36675916,2439708:1179648,16384,0 +r1,16831:37855564,2439708:1179648,16384,0 ) ) -k1,16850:3078556,2439708:-34777008 -) -] -[1,16850:3078558,4812305:0,0,0 -(1,16850:3078558,49800853:0,16384,2228224 -k1,16850:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,16850:2537886,49800853:1179648,16384,0 -) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,16850:3078558,51504789:16384,1179648,0 -) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16831:3078556,2439708:-34777008 ) ] +[1,16831:3078558,4812305:0,0,0 +(1,16831:3078558,49800853:0,16384,2228224 +k1,16831:1358238,49800853:-1720320 +(1,15456:1358238,49800853:1720320,16384,2228224 +(1,15456:1358238,49800853:1179648,16384,0 +r1,16831:2537886,49800853:1179648,16384,0 ) +g1,15456:3062174,49800853 +(1,15456:3062174,52029077:16384,1703936,0 +[1,15456:3062174,52029077:25952256,1703936,0 +(1,15456:3062174,51504789:25952256,1179648,0 +(1,15456:3062174,51504789:16384,1179648,0 +r1,16831:3078558,51504789:16384,1179648,0 ) +k1,15456:29014430,51504789:25935872 +g1,15456:29014430,51504789 ) ] -[1,16850:3078558,4812305:0,0,0 -(1,16850:3078558,49800853:0,16384,2228224 -g1,16850:29030814,49800853 -g1,16850:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,16850:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] -) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,16850:37855564,49800853:1179648,16384,0 -) -) -k1,16850:3078556,49800853:-34777008 -) -] -g1,16850:6630773,4812305 -k1,16850:21350816,4812305:13524666 -g1,16850:21999622,4812305 -g1,16850:25611966,4812305 -g1,16850:28956923,4812305 -g1,16850:29772190,4812305 -) -) -] -[1,16850:6630773,45706769:25952256,40108032,0 -(1,16850:6630773,45706769:25952256,40108032,0 -(1,16850:6630773,45706769:0,0,0 -g1,16850:6630773,45706769 -) -[1,16850:6630773,45706769:25952256,40108032,0 -(1,16818:6630773,6254097:25952256,513147,126483 -h1,16817:6630773,6254097:983040,0,0 -k1,16817:8614266,6254097:171423 -k1,16817:9903734,6254097:171424 -k1,16817:11094242,6254097:171423 -k1,16817:14257384,6254097:171423 -k1,16817:17187217,6254097:171423 -k1,16817:17974679,6254097:171424 -k1,16817:19349343,6254097:171423 -k1,16817:22112060,6254097:171423 -k1,16817:23453957,6254097:171424 -k1,16817:25155646,6254097:171423 -k1,16817:26633202,6254097:171423 -k1,16817:27456053,6254097:171423 -k1,16817:29003733,6254097:171424 -k1,16817:30867296,6254097:171423 -k1,16818:32583029,6254097:0 -) -(1,16818:6630773,7095585:25952256,513147,134348 -k1,16817:8257991,7095585:219505 -k1,16817:10045116,7095585:219504 -k1,16817:11283706,7095585:219505 -k1,16817:13603639,7095585:219504 -k1,16817:15055221,7095585:219505 -k1,16817:17553412,7095585:219504 -h1,16817:18524000,7095585:0,0,0 -k1,16817:18743505,7095585:219505 -k1,16817:19772379,7095585:219504 -k1,16817:21490037,7095585:219505 -h1,16817:22685414,7095585:0,0,0 -k1,16817:22904918,7095585:219504 -k1,16817:24072074,7095585:219505 -k1,16817:26409046,7095585:219504 -k1,16817:27437921,7095585:219505 -k1,16817:28676510,7095585:219504 -k1,16817:29988500,7095585:219505 -k1,16817:30867296,7095585:219504 -k1,16818:32583029,7095585:0 -) -(1,16818:6630773,7937073:25952256,505283,134348 -k1,16818:32583029,7937073:24163778 -g1,16818:32583029,7937073 -) -v1,16820:6630773,9127539:0,393216,0 -(1,16837:6630773,18096658:25952256,9362335,196608 -g1,16837:6630773,18096658 -g1,16837:6630773,18096658 -g1,16837:6434165,18096658 -(1,16837:6434165,18096658:0,9362335,196608 -r1,16850:32779637,18096658:26345472,9558943,196608 -k1,16837:6434165,18096658:-26345472 -) -(1,16837:6434165,18096658:26345472,9362335,196608 -[1,16837:6630773,18096658:25952256,9165727,0 -(1,16822:6630773,9335157:25952256,404226,101187 -(1,16821:6630773,9335157:0,0,0 -g1,16821:6630773,9335157 -g1,16821:6630773,9335157 -g1,16821:6303093,9335157 -(1,16821:6303093,9335157:0,0,0 -) -g1,16821:6630773,9335157 -) -k1,16822:6630773,9335157:0 -h1,16822:12637541,9335157:0,0,0 -k1,16822:32583029,9335157:19945488 -g1,16822:32583029,9335157 -) -(1,16823:6630773,10001335:25952256,404226,101187 -h1,16823:6630773,10001335:0,0,0 -k1,16823:6630773,10001335:0 -h1,16823:11056813,10001335:0,0,0 -k1,16823:32583029,10001335:21526216 -g1,16823:32583029,10001335 -) -(1,16824:6630773,10667513:25952256,404226,101187 -h1,16824:6630773,10667513:0,0,0 -k1,16824:6630773,10667513:0 -h1,16824:11372958,10667513:0,0,0 -k1,16824:32583030,10667513:21210072 -g1,16824:32583030,10667513 -) -(1,16825:6630773,11333691:25952256,404226,107478 -h1,16825:6630773,11333691:0,0,0 -k1,16825:6630773,11333691:0 -h1,16825:11689104,11333691:0,0,0 -k1,16825:32583028,11333691:20893924 -g1,16825:32583028,11333691 -) -(1,16826:6630773,11999869:25952256,404226,107478 -h1,16826:6630773,11999869:0,0,0 -k1,16826:6630773,11999869:0 -h1,16826:11689104,11999869:0,0,0 -k1,16826:32583028,11999869:20893924 -g1,16826:32583028,11999869 -) -(1,16827:6630773,12666047:25952256,404226,107478 -h1,16827:6630773,12666047:0,0,0 -k1,16827:6630773,12666047:0 -h1,16827:12321395,12666047:0,0,0 -k1,16827:32583029,12666047:20261634 -g1,16827:32583029,12666047 -) -(1,16828:6630773,13332225:25952256,404226,101187 -h1,16828:6630773,13332225:0,0,0 -k1,16828:6630773,13332225:0 -h1,16828:11056813,13332225:0,0,0 -k1,16828:32583029,13332225:21526216 -g1,16828:32583029,13332225 -) -(1,16829:6630773,13998403:25952256,404226,107478 -h1,16829:6630773,13998403:0,0,0 -k1,16829:6630773,13998403:0 -h1,16829:11689104,13998403:0,0,0 -k1,16829:32583028,13998403:20893924 -g1,16829:32583028,13998403 -) -(1,16830:6630773,14664581:25952256,404226,107478 -h1,16830:6630773,14664581:0,0,0 -k1,16830:6630773,14664581:0 -h1,16830:12637541,14664581:0,0,0 -k1,16830:32583029,14664581:19945488 -g1,16830:32583029,14664581 -) -(1,16831:6630773,15330759:25952256,410518,107478 -h1,16831:6630773,15330759:0,0,0 -k1,16831:6630773,15330759:0 -h1,16831:11689104,15330759:0,0,0 -k1,16831:32583028,15330759:20893924 -g1,16831:32583028,15330759 -) -(1,16832:6630773,15996937:25952256,404226,101187 -h1,16832:6630773,15996937:0,0,0 -k1,16832:6630773,15996937:0 -h1,16832:12637541,15996937:0,0,0 -k1,16832:32583029,15996937:19945488 -g1,16832:32583029,15996937 -) -(1,16833:6630773,16663115:25952256,404226,101187 -h1,16833:6630773,16663115:0,0,0 -k1,16833:6630773,16663115:0 -h1,16833:12321395,16663115:0,0,0 -k1,16833:32583029,16663115:20261634 -g1,16833:32583029,16663115 -) -(1,16834:6630773,17329293:25952256,404226,101187 -h1,16834:6630773,17329293:0,0,0 -k1,16834:6630773,17329293:0 -h1,16834:12321395,17329293:0,0,0 -k1,16834:32583029,17329293:20261634 -g1,16834:32583029,17329293 -) -(1,16835:6630773,17995471:25952256,404226,101187 -h1,16835:6630773,17995471:0,0,0 -k1,16835:6630773,17995471:0 -h1,16835:12321395,17995471:0,0,0 -k1,16835:32583029,17995471:20261634 -g1,16835:32583029,17995471 -) -] -) -g1,16837:32583029,18096658 -g1,16837:6630773,18096658 -g1,16837:6630773,18096658 -g1,16837:32583029,18096658 -g1,16837:32583029,18096658 -) -h1,16837:6630773,18293266:0,0,0 -(1,16844:6630773,21625122:25952256,32768,229376 -(1,16844:6630773,21625122:0,32768,229376 -(1,16844:6630773,21625122:5505024,32768,229376 -r1,16850:12135797,21625122:5505024,262144,229376 -) -k1,16844:6630773,21625122:-5505024 -) -(1,16844:6630773,21625122:25952256,32768,0 -r1,16850:32583029,21625122:25952256,32768,0 -) -) -(1,16844:6630773,23229450:25952256,615776,151780 -(1,16844:6630773,23229450:1974731,582746,14155 -g1,16844:6630773,23229450 -g1,16844:8605504,23229450 -) -g1,16844:10368685,23229450 -g1,16844:15471843,23229450 -g1,16844:16529594,23229450 -g1,16844:17212217,23229450 -k1,16844:32583029,23229450:13811317 -g1,16844:32583029,23229450 -) -(1,16846:6630773,24464154:25952256,513147,134348 -k1,16845:7098113,24464154:254348 -k1,16845:8840840,24464154:254404 -k1,16845:9856772,24464154:254404 -k1,16845:12144102,24464154:254403 -k1,16845:15794582,24464154:254404 -k1,16845:18880797,24464154:254404 -k1,16845:21337210,24464154:254403 -k1,16845:22243042,24464154:254404 -k1,16845:23886809,24464154:254404 -k1,16845:28334205,24464154:254403 -k1,16845:31563944,24464154:254404 -k1,16845:32583029,24464154:0 -) -(1,16846:6630773,25305642:25952256,505283,126483 -k1,16845:8340296,25305642:175325 -k1,16845:12501522,25305642:175326 -k1,16845:15814711,25305642:175325 -k1,16845:19047946,25305642:175325 -k1,16845:20414717,25305642:175326 -k1,16845:22684573,25305642:175325 -k1,16845:24834642,25305642:175469 -k1,16845:26572345,25305642:175325 -k1,16845:27739230,25305642:175325 -k1,16845:28270416,25305642:175326 -k1,16845:31069803,25305642:175325 -k1,16845:32583029,25305642:0 -) -(1,16846:6630773,26147130:25952256,513147,134348 -k1,16845:7562140,26147130:279939 -k1,16845:10050643,26147130:279940 -k1,16845:14311239,26147130:279939 -k1,16845:15737404,26147130:279940 -k1,16845:17417192,26147130:279939 -k1,16845:18167025,26147130:279940 -k1,16845:18978461,26147130:279939 -k1,16845:22823560,26147130:279940 -k1,16845:25601731,26147130:279939 -k1,16845:27084912,26147130:279940 -k1,16845:27980889,26147130:279939 -k1,16845:30091250,26147130:279940 -k1,16845:31189078,26147130:279939 -k1,16845:32583029,26147130:0 -) -(1,16846:6630773,26988618:25952256,513147,134348 -k1,16845:8243133,26988618:212511 -k1,16845:9474730,26988618:212512 -k1,16845:11775873,26988618:212511 -k1,16845:12647676,26988618:212511 -k1,16845:14467786,26988618:212512 -k1,16845:16540864,26988618:212511 -k1,16845:17404803,26988618:212511 -k1,16845:20348200,26988618:212512 -k1,16845:22109327,26988618:212511 -k1,16845:23190190,26988618:212511 -k1,16845:24951318,26988618:212512 -k1,16845:25815257,26988618:212511 -k1,16845:29058808,26988618:212511 -k1,16845:30819936,26988618:212512 -k1,16845:31563944,26988618:212511 -k1,16845:32583029,26988618:0 -) -(1,16846:6630773,27830106:25952256,513147,134348 -k1,16845:8257236,27830106:273800 -k1,16845:10307717,27830106:273800 -k1,16845:13286843,27830106:273800 -k1,16845:14428995,27830106:273800 -k1,16845:16251411,27830106:273800 -k1,16845:17176639,27830106:273800 -k1,16845:19832673,27830106:273800 -k1,16845:21303160,27830106:273800 -k1,16845:23077734,27830106:273800 -k1,16845:24010826,27830106:273800 -k1,16845:25303711,27830106:273800 -k1,16845:26854808,27830106:273800 -k1,16845:29308991,27830106:273800 -k1,16845:31563944,27830106:273800 -k1,16845:32583029,27830106:0 -) -(1,16846:6630773,28671594:25952256,513147,134348 -k1,16845:10921939,28671594:266600 -k1,16845:12379985,28671594:266601 -k1,16845:13665670,28671594:266600 -k1,16845:17825109,28671594:266600 -k1,16845:20591253,28671594:266601 -k1,16845:21517145,28671594:266600 -k1,16845:22802830,28671594:266600 -k1,16845:25908450,28671594:266600 -k1,16845:29184464,28671594:266601 -k1,16845:30722462,28671594:266600 -k1,16845:32583029,28671594:0 -) -(1,16846:6630773,29513082:25952256,513147,134348 -k1,16845:7474121,29513082:191920 -k1,16845:8413806,29513082:191919 -k1,16845:10815600,29513082:191920 -k1,16845:11658947,29513082:191919 -k1,16845:13580362,29513082:191920 -k1,16845:17475720,29513082:191919 -k1,16845:18859085,29513082:191920 -k1,16845:20652704,29513082:191919 -k1,16845:24620153,29513082:191920 -k1,16845:25471364,29513082:191919 -k1,16845:26429400,29513082:191920 -k1,16845:27687590,29513082:191919 -k1,16845:28530938,29513082:191920 -k1,16845:32583029,29513082:0 -) -(1,16846:6630773,30354570:25952256,505283,126483 -k1,16845:8261190,30354570:158478 -k1,16845:12769292,30354570:158477 -k1,16845:14073995,30354570:158478 -k1,16845:15458652,30354570:158478 -k1,16845:17147396,30354570:158478 -k1,16845:17957301,30354570:158477 -k1,16845:18863545,30354570:158478 -k1,16845:21775190,30354570:158478 -k1,16845:24399788,30354570:158478 -k1,16845:28313478,30354570:158477 -k1,16845:30290580,30354570:158478 -k1,16845:32583029,30354570:0 -) -(1,16846:6630773,31196058:25952256,513147,134348 -k1,16845:8483825,31196058:151082 -k1,16845:10127818,31196058:151083 -k1,16845:11297985,31196058:151082 -k1,16845:12784035,31196058:151082 -k1,16845:14173092,31196058:151082 -k1,16845:14983467,31196058:151083 -k1,16845:18554218,31196058:151082 -k1,16845:19803028,31196058:151082 -k1,16845:22659436,31196058:151082 -k1,16845:23342016,31196058:151083 -k1,16845:25576488,31196058:151082 -k1,16845:26545459,31196058:151082 -k1,16845:27564893,31196058:151082 -k1,16845:28848438,31196058:151083 -k1,16845:30024503,31196058:151082 -k1,16845:32583029,31196058:0 -) -(1,16846:6630773,32037546:25952256,513147,134348 -k1,16845:8126741,32037546:292727 -k1,16845:11010763,32037546:292728 -k1,16845:12322575,32037546:292727 -k1,16845:15589326,32037546:292727 -k1,16845:16541346,32037546:292728 -k1,16845:17853158,32037546:292727 -k1,16845:21048475,32037546:292727 -k1,16845:22000495,32037546:292728 -k1,16845:25012311,32037546:292727 -k1,16845:28161752,32037546:292727 -k1,16845:29808454,32037546:292728 -k1,16845:31379788,32037546:292727 -k1,16845:32583029,32037546:0 -) -(1,16846:6630773,32879034:25952256,513147,134348 -k1,16845:9782268,32879034:166985 -k1,16845:10600682,32879034:166986 -k1,16845:13846548,32879034:166985 -k1,16845:15204979,32879034:166986 -k1,16845:18635002,32879034:166985 -k1,16845:20207080,32879034:166986 -k1,16845:22573453,32879034:166985 -k1,16845:24129802,32879034:166986 -k1,16845:28706049,32879034:166985 -k1,16845:29820686,32879034:166986 -k1,16845:32583029,32879034:0 -) -(1,16846:6630773,33720522:25952256,505283,7863 -k1,16846:32583028,33720522:22612540 -g1,16846:32583028,33720522 -) -(1,16848:6630773,34562010:25952256,513147,134348 -h1,16847:6630773,34562010:983040,0,0 -k1,16847:8527385,34562010:139592 -k1,16847:10949595,34562010:139591 -k1,16847:12787225,34562010:139592 -k1,16847:15938196,34562010:139592 -k1,16847:17467150,34562010:139591 -k1,16847:18475094,34562010:139592 -k1,16847:19429954,34562010:139592 -k1,16847:20635817,34562010:139592 -k1,16847:22305674,34562010:139591 -k1,16847:24175416,34562010:139592 -k1,16847:26432476,34562010:139592 -k1,16847:27231359,34562010:139591 -k1,16847:30320726,34562010:139592 -k1,16847:32583029,34562010:0 -) -(1,16848:6630773,35403498:25952256,513147,134348 -k1,16847:7961669,35403498:258727 -k1,16847:9088747,35403498:258726 -k1,16847:10546128,35403498:258727 -k1,16847:12335121,35403498:258727 -k1,16847:13612932,35403498:258726 -k1,16847:16845683,35403498:258727 -k1,16847:18388916,35403498:258727 -k1,16847:20659597,35403498:258726 -k1,16847:23295315,35403498:258727 -k1,16847:24166803,35403498:258726 -k1,16847:25444615,35403498:258727 -k1,16847:27356815,35403498:258727 -k1,16847:29004904,35403498:258726 -k1,16847:30831252,35403498:258727 -k1,16847:32583029,35403498:0 -) -(1,16848:6630773,36244986:25952256,513147,134348 -k1,16847:9554771,36244986:190491 -k1,16847:11946616,36244986:190491 -k1,16847:15984726,36244986:190491 -k1,16847:18937561,36244986:190492 -k1,16847:21503077,36244986:190491 -k1,16847:22352860,36244986:190491 -k1,16847:24356077,36244986:190491 -k1,16847:25174403,36244986:190491 -k1,16847:26383979,36244986:190491 -k1,16847:28227944,36244986:190492 -k1,16847:29656410,36244986:190491 -k1,16847:30533063,36244986:190491 -k1,16848:32583029,36244986:0 -) -(1,16848:6630773,37086474:25952256,513147,126483 -k1,16847:8471083,37086474:254339 -k1,16847:9951601,37086474:254339 -k1,16847:11397386,37086474:254340 -k1,16847:12877904,37086474:254339 -k1,16847:16272728,37086474:254339 -k1,16847:18002282,37086474:254339 -k1,16847:20653928,37086474:254339 -k1,16847:21980436,37086474:254339 -k1,16847:24487248,37086474:254340 -k1,16847:26338044,37086474:254339 -k1,16847:29557232,37086474:254339 -k1,16847:32583029,37086474:0 -) -(1,16848:6630773,37927962:25952256,513147,134348 -k1,16847:7767823,37927962:189399 -k1,16847:11220260,37927962:189399 -k1,16847:13017257,37927962:189399 -k1,16847:14021924,37927962:189399 -k1,16847:15277594,37927962:189399 -k1,16847:17993405,37927962:189398 -k1,16847:19461411,37927962:189399 -k1,16847:20669895,37927962:189399 -k1,16847:22947926,37927962:189399 -k1,16847:23796617,37927962:189399 -k1,16847:26421334,37927962:189399 -k1,16847:28000096,37927962:189399 -k1,16847:32583029,37927962:0 -) -(1,16848:6630773,38769450:25952256,513147,134348 -k1,16847:8387408,38769450:198844 -k1,16847:10026078,38769450:198844 -k1,16847:10876349,38769450:198843 -k1,16847:12053646,38769450:198844 -k1,16847:13271575,38769450:198844 -k1,16847:14492125,38769450:198844 -k1,16847:16442091,38769450:198844 -k1,16847:17713104,38769450:198844 -k1,16847:19199074,38769450:198843 -k1,16847:20417003,38769450:198844 -k1,16847:23589871,38769450:198844 -k1,16847:26087063,38769450:198844 -k1,16847:26937335,38769450:198844 -k1,16847:27951447,38769450:198844 -k1,16847:29169375,38769450:198843 -k1,16847:30703187,38769450:198844 -k1,16847:31923737,38769450:198844 -k1,16847:32583029,38769450:0 -) -(1,16848:6630773,39610938:25952256,513147,134348 -k1,16847:11766665,39610938:200376 -k1,16847:13360993,39610938:200377 -k1,16847:16113341,39610938:200376 -k1,16847:18050421,39610938:200376 -k1,16847:19454039,39610938:200377 -k1,16847:20010275,39610938:200376 -k1,16847:21792690,39610938:200376 -k1,16847:23815623,39610938:200377 -k1,16847:27362267,39610938:200376 -k1,16847:28581728,39610938:200376 -k1,16847:30520120,39610938:200377 -k1,16847:31379788,39610938:200376 -k1,16847:32583029,39610938:0 -) -(1,16848:6630773,40452426:25952256,513147,134348 -g1,16847:9247625,40452426 -g1,16847:9978351,40452426 -g1,16847:10793618,40452426 -g1,16847:12011932,40452426 -g1,16847:14537034,40452426 -g1,16847:17638853,40452426 -g1,16847:18497374,40452426 -k1,16848:32583029,40452426:11192896 -g1,16848:32583029,40452426 -) -(1,16850:6630773,41293914:25952256,513147,134348 -h1,16849:6630773,41293914:983040,0,0 -k1,16849:9056861,41293914:246361 -k1,16849:10910820,41293914:246361 -k1,16849:12025532,41293914:246360 -k1,16849:13404355,41293914:246361 -k1,16849:16319997,41293914:246361 -k1,16849:17182396,41293914:246361 -k1,16849:18631997,41293914:246360 -k1,16849:21295981,41293914:246361 -k1,16849:22533902,41293914:246361 -k1,16849:25735281,41293914:246361 -k1,16849:26667803,41293914:246360 -k1,16849:29873115,41293914:246361 -k1,16850:32583029,41293914:0 -) -(1,16850:6630773,42135402:25952256,513147,134348 -k1,16849:8840344,42135402:199582 -k1,16849:10059012,42135402:199583 -k1,16849:12117850,42135402:199582 -k1,16849:13721213,42135402:199582 -k1,16849:14580088,42135402:199583 -k1,16849:16169033,42135402:199582 -k1,16849:20387938,42135402:199582 -k1,16849:22472991,42135402:199582 -k1,16849:23204071,42135402:199583 -k1,16849:26072934,42135402:199582 -k1,16849:27834894,42135402:199582 -k1,16849:29528043,42135402:199583 -k1,16849:30413787,42135402:199582 -k1,16849:32583029,42135402:0 -) -(1,16850:6630773,42976890:25952256,505283,134348 -k1,16849:8513086,42976890:274715 -k1,16849:11125470,42976890:274715 -k1,16849:13418693,42976890:274714 -k1,16849:17063925,42976890:274715 -k1,16849:19835562,42976890:274715 -k1,16849:21394783,42976890:274715 -k1,16849:22431026,42976890:274715 -k1,16849:24214380,42976890:274715 -k1,16849:27276996,42976890:274714 -k1,16849:29594468,42976890:274715 -k1,16849:31900144,42976890:274715 -k1,16849:32583029,42976890:0 -) -(1,16850:6630773,43818378:25952256,513147,126483 -k1,16849:8493426,43818378:170513 -k1,16849:10365908,43818378:170512 -k1,16849:13314492,43818378:170513 -k1,16849:15899351,43818378:170513 -k1,16849:18278427,43818378:170513 -k1,16849:22429596,43818378:170512 -k1,16849:23077866,43818378:170513 -k1,16849:24116731,43818378:170513 -k1,16849:27018129,43818378:170513 -k1,16849:28885368,43818378:170512 -k1,16849:31074390,43818378:170513 -k1,16849:32583029,43818378:0 -) -(1,16850:6630773,44659866:25952256,513147,134348 -k1,16849:9384989,44659866:197657 -k1,16849:10198683,44659866:197656 -k1,16849:11415425,44659866:197657 -k1,16849:12890378,44659866:197656 -k1,16849:16324858,44659866:197657 -k1,16849:17205399,44659866:197656 -k1,16849:20227658,44659866:197657 -k1,16849:22072889,44659866:197656 -k1,16849:22802043,44659866:197657 -k1,16849:24694460,44659866:197656 -k1,16849:25653645,44659866:197657 -k1,16849:26870386,44659866:197656 -k1,16849:29078688,44659866:197657 -k1,16849:29935636,44659866:197656 -k1,16849:31641932,44659866:197657 -k1,16850:32583029,44659866:0 -) -(1,16850:6630773,45501354:25952256,505283,134348 -k1,16849:9811355,45501354:170513 -k1,16849:11173312,45501354:170512 -k1,16849:12475632,45501354:170513 -k1,16849:15723059,45501354:170512 -k1,16849:16545000,45501354:170513 -k1,16849:18412239,45501354:170512 -k1,16849:22320926,45501354:170513 -k1,16849:23022935,45501354:170512 -k1,16849:25360068,45501354:170513 -k1,16849:27049049,45501354:170512 -k1,16849:30626779,45501354:170513 -k1,16849:32583029,45501354:0 -) -] -(1,16850:32583029,45706769:0,0,0 -g1,16850:32583029,45706769 -) -) -] -(1,16850:6630773,47279633:25952256,0,0 -h1,16850:6630773,47279633:25952256,0,0 -) -] -(1,16850:4262630,4025873:0,0,0 -[1,16850:-473656,4025873:0,0,0 -(1,16850:-473656,-710413:0,0,0 -(1,16850:-473656,-710413:0,0,0 -g1,16850:-473656,-710413 -) -g1,16850:-473656,-710413 -) -] -) -] -!21676 -}287 -Input:2444:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!106 -{288 -[1,16859:4262630,47279633:28320399,43253760,0 -(1,16859:4262630,4025873:0,0,0 -[1,16859:-473656,4025873:0,0,0 -(1,16859:-473656,-710413:0,0,0 -(1,16859:-473656,-644877:0,0,0 -k1,16859:-473656,-644877:-65536 ) -(1,16859:-473656,4736287:0,0,0 -k1,16859:-473656,4736287:5209943 ) -g1,16859:-473656,-710413 ) ] +[1,16831:3078558,4812305:0,0,0 +(1,16831:3078558,49800853:0,16384,2228224 +g1,16831:29030814,49800853 +g1,16831:36135244,49800853 +(1,15456:36135244,49800853:1720320,16384,2228224 +(1,15456:36135244,52029077:16384,1703936,0 +[1,15456:36135244,52029077:25952256,1703936,0 +(1,15456:36135244,51504789:25952256,1179648,0 +(1,15456:36135244,51504789:16384,1179648,0 +r1,16831:36151628,51504789:16384,1179648,0 +) +k1,15456:62087500,51504789:25935872 +g1,15456:62087500,51504789 +) +] +) +g1,15456:36675916,49800853 +(1,15456:36675916,49800853:1179648,16384,0 +r1,16831:37855564,49800853:1179648,16384,0 +) +) +k1,16831:3078556,49800853:-34777008 +) +] +g1,16831:6630773,4812305 +k1,16831:23311652,4812305:15485502 +g1,16831:23960458,4812305 +g1,16831:27572802,4812305 +g1,16831:29306229,4812305 +) +) +] +[1,16831:6630773,45706769:25952256,40108032,0 +(1,16831:6630773,45706769:25952256,40108032,0 +(1,16831:6630773,45706769:0,0,0 +g1,16831:6630773,45706769 +) +[1,16831:6630773,45706769:25952256,40108032,0 +v1,16743:6630773,6254097:0,393216,0 +(1,16743:6630773,11970676:25952256,6109795,196608 +g1,16743:6630773,11970676 +g1,16743:6630773,11970676 +g1,16743:6434165,11970676 +(1,16743:6434165,11970676:0,6109795,196608 +r1,16831:32779637,11970676:26345472,6306403,196608 +k1,16743:6434165,11970676:-26345472 +) +(1,16743:6434165,11970676:26345472,6109795,196608 +[1,16743:6630773,11970676:25952256,5913187,0 +(1,16742:6630773,6481928:25952256,424439,9908 +(1,16732:6630773,6481928:0,0,0 +g1,16732:6630773,6481928 +g1,16732:6630773,6481928 +g1,16732:6303093,6481928 +(1,16732:6303093,6481928:0,0,0 +) +g1,16732:6630773,6481928 +) +g1,16742:7626635,6481928 +g1,16742:8290543,6481928 +g1,16742:8954451,6481928 +g1,16742:11610083,6481928 +g1,16742:12273991,6481928 +g1,16742:12937899,6481928 +h1,16742:13269853,6481928:0,0,0 +k1,16742:32583029,6481928:19313176 +g1,16742:32583029,6481928 +) +(1,16742:6630773,7166783:25952256,424439,6605 +h1,16742:6630773,7166783:0,0,0 +g1,16742:7626635,7166783 +g1,16742:7958589,7166783 +g1,16742:8290543,7166783 +g1,16742:8622497,7166783 +g1,16742:8954451,7166783 +g1,16742:10282267,7166783 +g1,16742:12937899,7166783 +h1,16742:15261577,7166783:0,0,0 +k1,16742:32583029,7166783:17321452 +g1,16742:32583029,7166783 +) +(1,16742:6630773,7851638:25952256,424439,6605 +h1,16742:6630773,7851638:0,0,0 +g1,16742:7626635,7851638 +g1,16742:7958589,7851638 +g1,16742:8290543,7851638 +g1,16742:10282267,7851638 +g1,16742:12273991,7851638 +g1,16742:12605945,7851638 +g1,16742:12937899,7851638 +k1,16742:12937899,7851638:0 +h1,16742:14597669,7851638:0,0,0 +k1,16742:32583029,7851638:17985360 +g1,16742:32583029,7851638 +) +(1,16742:6630773,8536493:25952256,424439,6605 +h1,16742:6630773,8536493:0,0,0 +g1,16742:7626635,8536493 +g1,16742:8290543,8536493 +g1,16742:8622497,8536493 +g1,16742:8954451,8536493 +g1,16742:9286405,8536493 +g1,16742:9618359,8536493 +g1,16742:10282267,8536493 +g1,16742:10946175,8536493 +g1,16742:11278129,8536493 +g1,16742:11610083,8536493 +g1,16742:11942037,8536493 +g1,16742:12273991,8536493 +g1,16742:12605945,8536493 +g1,16742:12937899,8536493 +h1,16742:13269853,8536493:0,0,0 +k1,16742:32583029,8536493:19313176 +g1,16742:32583029,8536493 +) +(1,16742:6630773,9221348:25952256,424439,6605 +h1,16742:6630773,9221348:0,0,0 +g1,16742:7626635,9221348 +g1,16742:8290543,9221348 +g1,16742:8622497,9221348 +g1,16742:8954451,9221348 +g1,16742:9286405,9221348 +g1,16742:9618359,9221348 +g1,16742:10282267,9221348 +g1,16742:10946175,9221348 +g1,16742:11278129,9221348 +g1,16742:11610083,9221348 +g1,16742:11942037,9221348 +g1,16742:12273991,9221348 +g1,16742:12605945,9221348 +g1,16742:12937899,9221348 +h1,16742:13269853,9221348:0,0,0 +k1,16742:32583029,9221348:19313176 +g1,16742:32583029,9221348 +) +(1,16742:6630773,9906203:25952256,424439,9908 +h1,16742:6630773,9906203:0,0,0 +g1,16742:7626635,9906203 +g1,16742:8290543,9906203 +g1,16742:8622497,9906203 +g1,16742:8954451,9906203 +g1,16742:9286405,9906203 +g1,16742:9618359,9906203 +g1,16742:10282267,9906203 +g1,16742:10946175,9906203 +g1,16742:11278129,9906203 +g1,16742:11610083,9906203 +g1,16742:11942037,9906203 +g1,16742:12273991,9906203 +g1,16742:12605945,9906203 +g1,16742:12937899,9906203 +h1,16742:13269853,9906203:0,0,0 +k1,16742:32583029,9906203:19313176 +g1,16742:32583029,9906203 +) +(1,16742:6630773,10591058:25952256,424439,6605 +h1,16742:6630773,10591058:0,0,0 +g1,16742:7626635,10591058 +g1,16742:8290543,10591058 +g1,16742:8622497,10591058 +g1,16742:8954451,10591058 +g1,16742:9286405,10591058 +g1,16742:9618359,10591058 +g1,16742:10282267,10591058 +g1,16742:10946175,10591058 +g1,16742:11278129,10591058 +g1,16742:11610083,10591058 +g1,16742:11942037,10591058 +g1,16742:12273991,10591058 +g1,16742:12605945,10591058 +g1,16742:12937899,10591058 +h1,16742:13269853,10591058:0,0,0 +k1,16742:32583029,10591058:19313176 +g1,16742:32583029,10591058 +) +(1,16742:6630773,11275913:25952256,424439,9908 +h1,16742:6630773,11275913:0,0,0 +g1,16742:7626635,11275913 +g1,16742:8290543,11275913 +g1,16742:8622497,11275913 +g1,16742:8954451,11275913 +g1,16742:9286405,11275913 +g1,16742:9618359,11275913 +g1,16742:10282267,11275913 +g1,16742:10946175,11275913 +g1,16742:11278129,11275913 +g1,16742:11610083,11275913 +g1,16742:11942037,11275913 +g1,16742:12273991,11275913 +g1,16742:12605945,11275913 +g1,16742:12937899,11275913 +k1,16742:12937899,11275913:0 +h1,16742:14265715,11275913:0,0,0 +k1,16742:32583029,11275913:18317314 +g1,16742:32583029,11275913 +) +(1,16742:6630773,11960768:25952256,407923,9908 +h1,16742:6630773,11960768:0,0,0 +g1,16742:7626635,11960768 +g1,16742:8290543,11960768 +g1,16742:8622497,11960768 +g1,16742:8954451,11960768 +g1,16742:9286405,11960768 +g1,16742:9618359,11960768 +g1,16742:10282267,11960768 +g1,16742:11942037,11960768 +g1,16742:12273991,11960768 +g1,16742:12605945,11960768 +g1,16742:12937899,11960768 +h1,16742:13269853,11960768:0,0,0 +k1,16742:32583029,11960768:19313176 +g1,16742:32583029,11960768 +) +] +) +g1,16743:32583029,11970676 +g1,16743:6630773,11970676 +g1,16743:6630773,11970676 +g1,16743:32583029,11970676 +g1,16743:32583029,11970676 +) +h1,16743:6630773,12167284:0,0,0 +(1,16747:6630773,13032364:25952256,513147,134348 +h1,16746:6630773,13032364:983040,0,0 +k1,16746:9125448,13032364:277592 +k1,16746:10594484,13032364:277591 +k1,16746:12407585,13032364:277592 +k1,16746:14252798,13032364:277592 +k1,16746:16394889,13032364:277592 +k1,16746:18206678,13032364:277591 +k1,16746:19550541,13032364:277592 +k1,16746:22577368,13032364:277592 +k1,16746:24422580,13032364:277591 +k1,16746:26075773,13032364:277592 +k1,16746:27510075,13032364:277592 +k1,16746:28446959,13032364:277592 +k1,16746:29743635,13032364:277591 +k1,16746:31193666,13032364:277592 +k1,16746:32583029,13032364:0 +) +(1,16747:6630773,13897444:25952256,505283,126483 +g1,16746:9442922,13897444 +(1,16746:9442922,13897444:0,414482,115847 +r1,16831:9801188,13897444:358266,530329,115847 +k1,16746:9442922,13897444:-358266 +) +(1,16746:9442922,13897444:358266,414482,115847 +k1,16746:9442922,13897444:3277 +h1,16746:9797911,13897444:0,411205,112570 +) +g1,16746:10000417,13897444 +g1,16746:11391091,13897444 +(1,16746:11391091,13897444:0,414482,115847 +r1,16831:11749357,13897444:358266,530329,115847 +k1,16746:11391091,13897444:-358266 +) +(1,16746:11391091,13897444:358266,414482,115847 +k1,16746:11391091,13897444:3277 +h1,16746:11746080,13897444:0,411205,112570 +) +g1,16746:12122256,13897444 +k1,16747:32583029,13897444:16490602 +g1,16747:32583029,13897444 +) +v1,16749:6630773,14582299:0,393216,0 +(1,16765:6630773,21645699:25952256,7456616,196608 +g1,16765:6630773,21645699 +g1,16765:6630773,21645699 +g1,16765:6434165,21645699 +(1,16765:6434165,21645699:0,7456616,196608 +r1,16831:32779637,21645699:26345472,7653224,196608 +k1,16765:6434165,21645699:-26345472 +) +(1,16765:6434165,21645699:26345472,7456616,196608 +[1,16765:6630773,21645699:25952256,7260008,0 +(1,16751:6630773,14816736:25952256,431045,112852 +(1,16750:6630773,14816736:0,0,0 +g1,16750:6630773,14816736 +g1,16750:6630773,14816736 +g1,16750:6303093,14816736 +(1,16750:6303093,14816736:0,0,0 +) +g1,16750:6630773,14816736 +) +k1,16751:6630773,14816736:0 +g1,16751:10614220,14816736 +g1,16751:11278128,14816736 +g1,16751:14597667,14816736 +g1,16751:15261575,14816736 +g1,16751:15925483,14816736 +h1,16751:19245022,14816736:0,0,0 +k1,16751:32583029,14816736:13338007 +g1,16751:32583029,14816736 +) +(1,16755:6630773,16156951:25952256,431045,112852 +g1,16755:7626635,16156951 +g1,16755:10282267,16156951 +g1,16755:11942037,16156951 +g1,16755:13269853,16156951 +g1,16755:13933761,16156951 +k1,16755:32583029,16156951:14333867 +g1,16755:32583029,16156951 +) +(1,16764:6630773,16841806:25952256,424439,9908 +(1,16755:6630773,16841806:0,0,0 +g1,16755:6630773,16841806 +g1,16755:6630773,16841806 +g1,16755:6303093,16841806 +(1,16755:6303093,16841806:0,0,0 +) +g1,16755:6630773,16841806 +) +g1,16764:7626635,16841806 +g1,16764:8290543,16841806 +g1,16764:8954451,16841806 +g1,16764:11610083,16841806 +g1,16764:12273991,16841806 +g1,16764:12937899,16841806 +h1,16764:13269853,16841806:0,0,0 +k1,16764:32583029,16841806:19313176 +g1,16764:32583029,16841806 +) +(1,16764:6630773,17526661:25952256,424439,6605 +h1,16764:6630773,17526661:0,0,0 +g1,16764:7626635,17526661 +g1,16764:7958589,17526661 +g1,16764:8290543,17526661 +g1,16764:8622497,17526661 +g1,16764:8954451,17526661 +g1,16764:10282267,17526661 +g1,16764:12937899,17526661 +h1,16764:15261577,17526661:0,0,0 +k1,16764:32583029,17526661:17321452 +g1,16764:32583029,17526661 +) +(1,16764:6630773,18211516:25952256,424439,6605 +h1,16764:6630773,18211516:0,0,0 +g1,16764:7626635,18211516 +g1,16764:7958589,18211516 +g1,16764:8290543,18211516 +g1,16764:10282267,18211516 +g1,16764:12273991,18211516 +g1,16764:12605945,18211516 +g1,16764:12937899,18211516 +k1,16764:12937899,18211516:0 +h1,16764:14597669,18211516:0,0,0 +k1,16764:32583029,18211516:17985360 +g1,16764:32583029,18211516 +) +(1,16764:6630773,18896371:25952256,424439,6605 +h1,16764:6630773,18896371:0,0,0 +g1,16764:7626635,18896371 +g1,16764:8290543,18896371 +g1,16764:8622497,18896371 +g1,16764:8954451,18896371 +g1,16764:9286405,18896371 +g1,16764:9618359,18896371 +g1,16764:10282267,18896371 +g1,16764:10946175,18896371 +g1,16764:11278129,18896371 +g1,16764:11610083,18896371 +g1,16764:11942037,18896371 +g1,16764:12273991,18896371 +g1,16764:12605945,18896371 +g1,16764:12937899,18896371 +h1,16764:13269853,18896371:0,0,0 +k1,16764:32583029,18896371:19313176 +g1,16764:32583029,18896371 +) +(1,16764:6630773,19581226:25952256,424439,6605 +h1,16764:6630773,19581226:0,0,0 +g1,16764:7626635,19581226 +g1,16764:8290543,19581226 +g1,16764:8622497,19581226 +g1,16764:8954451,19581226 +g1,16764:9286405,19581226 +g1,16764:9618359,19581226 +g1,16764:10282267,19581226 +g1,16764:10946175,19581226 +g1,16764:11278129,19581226 +g1,16764:11610083,19581226 +g1,16764:11942037,19581226 +g1,16764:12273991,19581226 +g1,16764:12605945,19581226 +g1,16764:12937899,19581226 +h1,16764:13269853,19581226:0,0,0 +k1,16764:32583029,19581226:19313176 +g1,16764:32583029,19581226 +) +(1,16764:6630773,20266081:25952256,424439,9908 +h1,16764:6630773,20266081:0,0,0 +g1,16764:7626635,20266081 +g1,16764:8290543,20266081 +g1,16764:8622497,20266081 +g1,16764:8954451,20266081 +g1,16764:9286405,20266081 +g1,16764:9618359,20266081 +g1,16764:10282267,20266081 +g1,16764:10946175,20266081 +g1,16764:11278129,20266081 +g1,16764:11610083,20266081 +g1,16764:11942037,20266081 +g1,16764:12273991,20266081 +g1,16764:12605945,20266081 +g1,16764:12937899,20266081 +h1,16764:13269853,20266081:0,0,0 +k1,16764:32583029,20266081:19313176 +g1,16764:32583029,20266081 +) +(1,16764:6630773,20950936:25952256,424439,6605 +h1,16764:6630773,20950936:0,0,0 +g1,16764:7626635,20950936 +g1,16764:8290543,20950936 +g1,16764:8622497,20950936 +g1,16764:8954451,20950936 +g1,16764:9286405,20950936 +g1,16764:9618359,20950936 +g1,16764:10282267,20950936 +g1,16764:10946175,20950936 +g1,16764:11278129,20950936 +g1,16764:11610083,20950936 +g1,16764:11942037,20950936 +g1,16764:12273991,20950936 +g1,16764:12605945,20950936 +g1,16764:12937899,20950936 +h1,16764:13269853,20950936:0,0,0 +k1,16764:32583029,20950936:19313176 +g1,16764:32583029,20950936 +) +(1,16764:6630773,21635791:25952256,398014,9908 +h1,16764:6630773,21635791:0,0,0 +g1,16764:7626635,21635791 +g1,16764:8290543,21635791 +g1,16764:8622497,21635791 +g1,16764:8954451,21635791 +g1,16764:9286405,21635791 +g1,16764:9618359,21635791 +g1,16764:10282267,21635791 +g1,16764:10946175,21635791 +g1,16764:11278129,21635791 +g1,16764:11610083,21635791 +g1,16764:11942037,21635791 +g1,16764:12273991,21635791 +g1,16764:12605945,21635791 +g1,16764:12937899,21635791 +k1,16764:12937899,21635791:0 +h1,16764:14265715,21635791:0,0,0 +k1,16764:32583029,21635791:18317314 +g1,16764:32583029,21635791 +) +] +) +g1,16765:32583029,21645699 +g1,16765:6630773,21645699 +g1,16765:6630773,21645699 +g1,16765:32583029,21645699 +g1,16765:32583029,21645699 +) +h1,16765:6630773,21842307:0,0,0 +v1,16769:6630773,22527162:0,393216,0 +(1,16785:6630773,29590562:25952256,7456616,196608 +g1,16785:6630773,29590562 +g1,16785:6630773,29590562 +g1,16785:6434165,29590562 +(1,16785:6434165,29590562:0,7456616,196608 +r1,16831:32779637,29590562:26345472,7653224,196608 +k1,16785:6434165,29590562:-26345472 +) +(1,16785:6434165,29590562:26345472,7456616,196608 +[1,16785:6630773,29590562:25952256,7260008,0 +(1,16771:6630773,22761599:25952256,431045,112852 +(1,16770:6630773,22761599:0,0,0 +g1,16770:6630773,22761599 +g1,16770:6630773,22761599 +g1,16770:6303093,22761599 +(1,16770:6303093,22761599:0,0,0 +) +g1,16770:6630773,22761599 +) +k1,16771:6630773,22761599:0 +g1,16771:10614220,22761599 +g1,16771:11278128,22761599 +g1,16771:14929621,22761599 +g1,16771:15593529,22761599 +g1,16771:16257437,22761599 +h1,16771:19245022,22761599:0,0,0 +k1,16771:32583029,22761599:13338007 +g1,16771:32583029,22761599 +) +(1,16775:6630773,24101814:25952256,431045,112852 +g1,16775:7626635,24101814 +g1,16775:10282267,24101814 +g1,16775:11942037,24101814 +g1,16775:13269853,24101814 +g1,16775:13933761,24101814 +k1,16775:32583029,24101814:14333867 +g1,16775:32583029,24101814 +) +(1,16784:6630773,24786669:25952256,424439,9908 +(1,16775:6630773,24786669:0,0,0 +g1,16775:6630773,24786669 +g1,16775:6630773,24786669 +g1,16775:6303093,24786669 +(1,16775:6303093,24786669:0,0,0 +) +g1,16775:6630773,24786669 +) +g1,16784:7626635,24786669 +g1,16784:8290543,24786669 +g1,16784:8954451,24786669 +g1,16784:11610083,24786669 +g1,16784:12273991,24786669 +g1,16784:12937899,24786669 +h1,16784:13269853,24786669:0,0,0 +k1,16784:32583029,24786669:19313176 +g1,16784:32583029,24786669 +) +(1,16784:6630773,25471524:25952256,424439,6605 +h1,16784:6630773,25471524:0,0,0 +g1,16784:7626635,25471524 +g1,16784:7958589,25471524 +g1,16784:8290543,25471524 +g1,16784:8622497,25471524 +g1,16784:8954451,25471524 +g1,16784:10282267,25471524 +g1,16784:12937899,25471524 +h1,16784:15261577,25471524:0,0,0 +k1,16784:32583029,25471524:17321452 +g1,16784:32583029,25471524 +) +(1,16784:6630773,26156379:25952256,424439,6605 +h1,16784:6630773,26156379:0,0,0 +g1,16784:7626635,26156379 +g1,16784:7958589,26156379 +g1,16784:8290543,26156379 +g1,16784:10282267,26156379 +g1,16784:12273991,26156379 +g1,16784:12605945,26156379 +g1,16784:12937899,26156379 +k1,16784:12937899,26156379:0 +h1,16784:14597669,26156379:0,0,0 +k1,16784:32583029,26156379:17985360 +g1,16784:32583029,26156379 +) +(1,16784:6630773,26841234:25952256,424439,6605 +h1,16784:6630773,26841234:0,0,0 +g1,16784:7626635,26841234 +g1,16784:8290543,26841234 +g1,16784:8622497,26841234 +g1,16784:8954451,26841234 +g1,16784:9286405,26841234 +g1,16784:9618359,26841234 +g1,16784:10282267,26841234 +g1,16784:10946175,26841234 +g1,16784:11278129,26841234 +g1,16784:11610083,26841234 +g1,16784:11942037,26841234 +g1,16784:12273991,26841234 +g1,16784:12605945,26841234 +g1,16784:12937899,26841234 +h1,16784:13269853,26841234:0,0,0 +k1,16784:32583029,26841234:19313176 +g1,16784:32583029,26841234 +) +(1,16784:6630773,27526089:25952256,424439,6605 +h1,16784:6630773,27526089:0,0,0 +g1,16784:7626635,27526089 +g1,16784:8290543,27526089 +g1,16784:8622497,27526089 +g1,16784:8954451,27526089 +g1,16784:9286405,27526089 +g1,16784:9618359,27526089 +g1,16784:10282267,27526089 +g1,16784:10946175,27526089 +g1,16784:11278129,27526089 +g1,16784:11610083,27526089 +g1,16784:11942037,27526089 +g1,16784:12273991,27526089 +g1,16784:12605945,27526089 +g1,16784:12937899,27526089 +h1,16784:13269853,27526089:0,0,0 +k1,16784:32583029,27526089:19313176 +g1,16784:32583029,27526089 +) +(1,16784:6630773,28210944:25952256,424439,9908 +h1,16784:6630773,28210944:0,0,0 +g1,16784:7626635,28210944 +g1,16784:8290543,28210944 +g1,16784:8622497,28210944 +g1,16784:8954451,28210944 +g1,16784:9286405,28210944 +g1,16784:9618359,28210944 +g1,16784:10282267,28210944 +g1,16784:10946175,28210944 +g1,16784:11278129,28210944 +g1,16784:11610083,28210944 +g1,16784:11942037,28210944 +g1,16784:12273991,28210944 +g1,16784:12605945,28210944 +g1,16784:12937899,28210944 +h1,16784:13269853,28210944:0,0,0 +k1,16784:32583029,28210944:19313176 +g1,16784:32583029,28210944 +) +(1,16784:6630773,28895799:25952256,424439,6605 +h1,16784:6630773,28895799:0,0,0 +g1,16784:7626635,28895799 +g1,16784:8290543,28895799 +g1,16784:8622497,28895799 +g1,16784:8954451,28895799 +g1,16784:9286405,28895799 +g1,16784:9618359,28895799 +g1,16784:10282267,28895799 +g1,16784:10946175,28895799 +g1,16784:11278129,28895799 +g1,16784:11610083,28895799 +g1,16784:11942037,28895799 +g1,16784:12273991,28895799 +g1,16784:12605945,28895799 +g1,16784:12937899,28895799 +h1,16784:13269853,28895799:0,0,0 +k1,16784:32583029,28895799:19313176 +g1,16784:32583029,28895799 +) +(1,16784:6630773,29580654:25952256,424439,9908 +h1,16784:6630773,29580654:0,0,0 +g1,16784:7626635,29580654 +g1,16784:8290543,29580654 +g1,16784:8622497,29580654 +g1,16784:8954451,29580654 +g1,16784:9286405,29580654 +g1,16784:9618359,29580654 +g1,16784:10282267,29580654 +g1,16784:10946175,29580654 +g1,16784:11278129,29580654 +g1,16784:11610083,29580654 +g1,16784:11942037,29580654 +g1,16784:12273991,29580654 +g1,16784:12605945,29580654 +g1,16784:12937899,29580654 +k1,16784:12937899,29580654:0 +h1,16784:14265715,29580654:0,0,0 +k1,16784:32583029,29580654:18317314 +g1,16784:32583029,29580654 +) +] +) +g1,16785:32583029,29590562 +g1,16785:6630773,29590562 +g1,16785:6630773,29590562 +g1,16785:32583029,29590562 +g1,16785:32583029,29590562 +) +h1,16785:6630773,29787170:0,0,0 +v1,16789:6630773,30472025:0,393216,0 +(1,16805:6630773,37535425:25952256,7456616,196608 +g1,16805:6630773,37535425 +g1,16805:6630773,37535425 +g1,16805:6434165,37535425 +(1,16805:6434165,37535425:0,7456616,196608 +r1,16831:32779637,37535425:26345472,7653224,196608 +k1,16805:6434165,37535425:-26345472 +) +(1,16805:6434165,37535425:26345472,7456616,196608 +[1,16805:6630773,37535425:25952256,7260008,0 +(1,16791:6630773,30706462:25952256,431045,112852 +(1,16790:6630773,30706462:0,0,0 +g1,16790:6630773,30706462 +g1,16790:6630773,30706462 +g1,16790:6303093,30706462 +(1,16790:6303093,30706462:0,0,0 +) +g1,16790:6630773,30706462 +) +k1,16791:6630773,30706462:0 +g1,16791:10946174,30706462 +g1,16791:11610082,30706462 +g1,16791:14929621,30706462 +g1,16791:15593529,30706462 +g1,16791:16257437,30706462 +h1,16791:19576976,30706462:0,0,0 +k1,16791:32583029,30706462:13006053 +g1,16791:32583029,30706462 +) +(1,16795:6630773,32046677:25952256,431045,112852 +g1,16795:7626635,32046677 +g1,16795:10282267,32046677 +g1,16795:11942037,32046677 +g1,16795:13269853,32046677 +g1,16795:13933761,32046677 +k1,16795:32583029,32046677:14333867 +g1,16795:32583029,32046677 +) +(1,16804:6630773,32731532:25952256,424439,9908 +(1,16795:6630773,32731532:0,0,0 +g1,16795:6630773,32731532 +g1,16795:6630773,32731532 +g1,16795:6303093,32731532 +(1,16795:6303093,32731532:0,0,0 +) +g1,16795:6630773,32731532 +) +g1,16804:7626635,32731532 +g1,16804:8290543,32731532 +g1,16804:8954451,32731532 +g1,16804:11610083,32731532 +g1,16804:12273991,32731532 +g1,16804:12937899,32731532 +h1,16804:13269853,32731532:0,0,0 +k1,16804:32583029,32731532:19313176 +g1,16804:32583029,32731532 +) +(1,16804:6630773,33416387:25952256,424439,6605 +h1,16804:6630773,33416387:0,0,0 +g1,16804:7626635,33416387 +g1,16804:7958589,33416387 +g1,16804:8290543,33416387 +g1,16804:8622497,33416387 +g1,16804:8954451,33416387 +g1,16804:10282267,33416387 +g1,16804:12937899,33416387 +h1,16804:15261577,33416387:0,0,0 +k1,16804:32583029,33416387:17321452 +g1,16804:32583029,33416387 +) +(1,16804:6630773,34101242:25952256,424439,6605 +h1,16804:6630773,34101242:0,0,0 +g1,16804:7626635,34101242 +g1,16804:7958589,34101242 +g1,16804:8290543,34101242 +g1,16804:10282267,34101242 +g1,16804:12273991,34101242 +g1,16804:12605945,34101242 +g1,16804:12937899,34101242 +k1,16804:12937899,34101242:0 +h1,16804:14597669,34101242:0,0,0 +k1,16804:32583029,34101242:17985360 +g1,16804:32583029,34101242 +) +(1,16804:6630773,34786097:25952256,424439,6605 +h1,16804:6630773,34786097:0,0,0 +g1,16804:7626635,34786097 +g1,16804:8290543,34786097 +g1,16804:8622497,34786097 +g1,16804:8954451,34786097 +g1,16804:9286405,34786097 +g1,16804:9618359,34786097 +g1,16804:10282267,34786097 +g1,16804:10946175,34786097 +g1,16804:11278129,34786097 +g1,16804:11610083,34786097 +g1,16804:11942037,34786097 +g1,16804:12273991,34786097 +g1,16804:12605945,34786097 +g1,16804:12937899,34786097 +h1,16804:13269853,34786097:0,0,0 +k1,16804:32583029,34786097:19313176 +g1,16804:32583029,34786097 +) +(1,16804:6630773,35470952:25952256,424439,6605 +h1,16804:6630773,35470952:0,0,0 +g1,16804:7626635,35470952 +g1,16804:8290543,35470952 +g1,16804:8622497,35470952 +g1,16804:8954451,35470952 +g1,16804:9286405,35470952 +g1,16804:9618359,35470952 +g1,16804:10282267,35470952 +g1,16804:10946175,35470952 +g1,16804:11278129,35470952 +g1,16804:11610083,35470952 +g1,16804:11942037,35470952 +g1,16804:12273991,35470952 +g1,16804:12605945,35470952 +g1,16804:12937899,35470952 +h1,16804:13269853,35470952:0,0,0 +k1,16804:32583029,35470952:19313176 +g1,16804:32583029,35470952 +) +(1,16804:6630773,36155807:25952256,424439,9908 +h1,16804:6630773,36155807:0,0,0 +g1,16804:7626635,36155807 +g1,16804:8290543,36155807 +g1,16804:8622497,36155807 +g1,16804:8954451,36155807 +g1,16804:9286405,36155807 +g1,16804:9618359,36155807 +g1,16804:10282267,36155807 +g1,16804:10946175,36155807 +g1,16804:11278129,36155807 +g1,16804:11610083,36155807 +g1,16804:11942037,36155807 +g1,16804:12273991,36155807 +g1,16804:12605945,36155807 +g1,16804:12937899,36155807 +h1,16804:13269853,36155807:0,0,0 +k1,16804:32583029,36155807:19313176 +g1,16804:32583029,36155807 +) +(1,16804:6630773,36840662:25952256,424439,6605 +h1,16804:6630773,36840662:0,0,0 +g1,16804:7626635,36840662 +g1,16804:8290543,36840662 +g1,16804:8622497,36840662 +g1,16804:8954451,36840662 +g1,16804:9286405,36840662 +g1,16804:9618359,36840662 +g1,16804:10282267,36840662 +g1,16804:10946175,36840662 +g1,16804:11278129,36840662 +g1,16804:11610083,36840662 +g1,16804:11942037,36840662 +g1,16804:12273991,36840662 +g1,16804:12605945,36840662 +g1,16804:12937899,36840662 +h1,16804:13269853,36840662:0,0,0 +k1,16804:32583029,36840662:19313176 +g1,16804:32583029,36840662 +) +(1,16804:6630773,37525517:25952256,424439,9908 +h1,16804:6630773,37525517:0,0,0 +g1,16804:7626635,37525517 +g1,16804:8290543,37525517 +g1,16804:8622497,37525517 +g1,16804:8954451,37525517 +g1,16804:9286405,37525517 +g1,16804:9618359,37525517 +g1,16804:10282267,37525517 +g1,16804:11942037,37525517 +g1,16804:12273991,37525517 +g1,16804:12605945,37525517 +g1,16804:12937899,37525517 +h1,16804:13269853,37525517:0,0,0 +k1,16804:32583029,37525517:19313176 +g1,16804:32583029,37525517 +) +] +) +g1,16805:32583029,37535425 +g1,16805:6630773,37535425 +g1,16805:6630773,37535425 +g1,16805:32583029,37535425 +g1,16805:32583029,37535425 +) +h1,16805:6630773,37732033:0,0,0 +v1,16809:6630773,38416888:0,393216,0 +(1,16825:6630773,45480288:25952256,7456616,196608 +g1,16825:6630773,45480288 +g1,16825:6630773,45480288 +g1,16825:6434165,45480288 +(1,16825:6434165,45480288:0,7456616,196608 +r1,16831:32779637,45480288:26345472,7653224,196608 +k1,16825:6434165,45480288:-26345472 +) +(1,16825:6434165,45480288:26345472,7456616,196608 +[1,16825:6630773,45480288:25952256,7260008,0 +(1,16811:6630773,38651325:25952256,431045,112852 +(1,16810:6630773,38651325:0,0,0 +g1,16810:6630773,38651325 +g1,16810:6630773,38651325 +g1,16810:6303093,38651325 +(1,16810:6303093,38651325:0,0,0 +) +g1,16810:6630773,38651325 +) +k1,16811:6630773,38651325:0 +g1,16811:10946174,38651325 +g1,16811:11610082,38651325 +g1,16811:15261575,38651325 +g1,16811:15925483,38651325 +g1,16811:16589391,38651325 +h1,16811:19576976,38651325:0,0,0 +k1,16811:32583029,38651325:13006053 +g1,16811:32583029,38651325 +) +(1,16815:6630773,39991540:25952256,431045,112852 +g1,16815:7626635,39991540 +g1,16815:10282267,39991540 +g1,16815:11942037,39991540 +g1,16815:13269853,39991540 +g1,16815:13933761,39991540 +k1,16815:32583029,39991540:14333867 +g1,16815:32583029,39991540 +) +(1,16824:6630773,40676395:25952256,424439,9908 +(1,16815:6630773,40676395:0,0,0 +g1,16815:6630773,40676395 +g1,16815:6630773,40676395 +g1,16815:6303093,40676395 +(1,16815:6303093,40676395:0,0,0 +) +g1,16815:6630773,40676395 +) +g1,16824:7626635,40676395 +g1,16824:8290543,40676395 +g1,16824:8954451,40676395 +g1,16824:11610083,40676395 +g1,16824:12273991,40676395 +g1,16824:12937899,40676395 +h1,16824:13269853,40676395:0,0,0 +k1,16824:32583029,40676395:19313176 +g1,16824:32583029,40676395 +) +(1,16824:6630773,41361250:25952256,424439,6605 +h1,16824:6630773,41361250:0,0,0 +g1,16824:7626635,41361250 +g1,16824:7958589,41361250 +g1,16824:8290543,41361250 +g1,16824:8622497,41361250 +g1,16824:8954451,41361250 +g1,16824:10282267,41361250 +g1,16824:12937899,41361250 +h1,16824:15261577,41361250:0,0,0 +k1,16824:32583029,41361250:17321452 +g1,16824:32583029,41361250 +) +(1,16824:6630773,42046105:25952256,424439,6605 +h1,16824:6630773,42046105:0,0,0 +g1,16824:7626635,42046105 +g1,16824:7958589,42046105 +g1,16824:8290543,42046105 +g1,16824:10282267,42046105 +g1,16824:12273991,42046105 +g1,16824:12605945,42046105 +g1,16824:12937899,42046105 +k1,16824:12937899,42046105:0 +h1,16824:14597669,42046105:0,0,0 +k1,16824:32583029,42046105:17985360 +g1,16824:32583029,42046105 +) +(1,16824:6630773,42730960:25952256,424439,6605 +h1,16824:6630773,42730960:0,0,0 +g1,16824:7626635,42730960 +g1,16824:8290543,42730960 +g1,16824:8622497,42730960 +g1,16824:8954451,42730960 +g1,16824:9286405,42730960 +g1,16824:9618359,42730960 +g1,16824:10282267,42730960 +g1,16824:10946175,42730960 +g1,16824:11278129,42730960 +g1,16824:11610083,42730960 +g1,16824:11942037,42730960 +g1,16824:12273991,42730960 +g1,16824:12605945,42730960 +g1,16824:12937899,42730960 +h1,16824:13269853,42730960:0,0,0 +k1,16824:32583029,42730960:19313176 +g1,16824:32583029,42730960 +) +(1,16824:6630773,43415815:25952256,424439,6605 +h1,16824:6630773,43415815:0,0,0 +g1,16824:7626635,43415815 +g1,16824:8290543,43415815 +g1,16824:8622497,43415815 +g1,16824:8954451,43415815 +g1,16824:9286405,43415815 +g1,16824:9618359,43415815 +g1,16824:10282267,43415815 +g1,16824:10946175,43415815 +g1,16824:11278129,43415815 +g1,16824:11610083,43415815 +g1,16824:11942037,43415815 +g1,16824:12273991,43415815 +g1,16824:12605945,43415815 +g1,16824:12937899,43415815 +h1,16824:13269853,43415815:0,0,0 +k1,16824:32583029,43415815:19313176 +g1,16824:32583029,43415815 +) +(1,16824:6630773,44100670:25952256,424439,9908 +h1,16824:6630773,44100670:0,0,0 +g1,16824:7626635,44100670 +g1,16824:8290543,44100670 +g1,16824:8622497,44100670 +g1,16824:8954451,44100670 +g1,16824:9286405,44100670 +g1,16824:9618359,44100670 +g1,16824:10282267,44100670 +g1,16824:10946175,44100670 +g1,16824:11278129,44100670 +g1,16824:11610083,44100670 +g1,16824:11942037,44100670 +g1,16824:12273991,44100670 +g1,16824:12605945,44100670 +g1,16824:12937899,44100670 +h1,16824:13269853,44100670:0,0,0 +k1,16824:32583029,44100670:19313176 +g1,16824:32583029,44100670 +) +(1,16824:6630773,44785525:25952256,424439,6605 +h1,16824:6630773,44785525:0,0,0 +g1,16824:7626635,44785525 +g1,16824:8290543,44785525 +g1,16824:8622497,44785525 +g1,16824:8954451,44785525 +g1,16824:9286405,44785525 +g1,16824:9618359,44785525 +g1,16824:10282267,44785525 +g1,16824:10946175,44785525 +g1,16824:11278129,44785525 +g1,16824:11610083,44785525 +g1,16824:11942037,44785525 +g1,16824:12273991,44785525 +g1,16824:12605945,44785525 +g1,16824:12937899,44785525 +h1,16824:13269853,44785525:0,0,0 +k1,16824:32583029,44785525:19313176 +g1,16824:32583029,44785525 +) +(1,16824:6630773,45470380:25952256,398014,9908 +h1,16824:6630773,45470380:0,0,0 +g1,16824:7626635,45470380 +g1,16824:8290543,45470380 +g1,16824:8622497,45470380 +g1,16824:8954451,45470380 +g1,16824:9286405,45470380 +g1,16824:9618359,45470380 +g1,16824:10282267,45470380 +g1,16824:11942037,45470380 +g1,16824:12273991,45470380 +g1,16824:12605945,45470380 +g1,16824:12937899,45470380 +h1,16824:13269853,45470380:0,0,0 +k1,16824:32583029,45470380:19313176 +g1,16824:32583029,45470380 +) +] +) +g1,16825:32583029,45480288 +g1,16825:6630773,45480288 +g1,16825:6630773,45480288 +g1,16825:32583029,45480288 +g1,16825:32583029,45480288 +) +h1,16825:6630773,45676896:0,0,0 +] +(1,16831:32583029,45706769:0,0,0 +g1,16831:32583029,45706769 +) +) +] +(1,16831:6630773,47279633:25952256,0,0 +h1,16831:6630773,47279633:25952256,0,0 +) +] +(1,16831:4262630,4025873:0,0,0 +[1,16831:-473656,4025873:0,0,0 +(1,16831:-473656,-710413:0,0,0 +(1,16831:-473656,-710413:0,0,0 +g1,16831:-473656,-710413 +) +g1,16831:-473656,-710413 +) +] +) +] +!30737 +}269 +Input:2474:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2475:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2476:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2477:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2478:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2479:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2480:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2481:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!764 +{270 +[1,16929:4262630,47279633:28320399,43253760,0 +(1,16929:4262630,4025873:0,0,0 +[1,16929:-473656,4025873:0,0,0 +(1,16929:-473656,-710413:0,0,0 +(1,16929:-473656,-644877:0,0,0 +k1,16929:-473656,-644877:-65536 ) -[1,16859:6630773,47279633:25952256,43253760,0 -[1,16859:6630773,4812305:25952256,786432,0 -(1,16859:6630773,4812305:25952256,513147,134348 -(1,16859:6630773,4812305:25952256,513147,134348 -g1,16859:3078558,4812305 -[1,16859:3078558,4812305:0,0,0 -(1,16859:3078558,2439708:0,1703936,0 -k1,16859:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,16859:2537886,2439708:1179648,16384,0 -) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,16859:3078558,1915420:16384,1179648,0 +(1,16929:-473656,4736287:0,0,0 +k1,16929:-473656,4736287:5209943 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +g1,16929:-473656,-710413 ) ] ) +[1,16929:6630773,47279633:25952256,43253760,0 +[1,16929:6630773,4812305:25952256,786432,0 +(1,16929:6630773,4812305:25952256,505283,126483 +(1,16929:6630773,4812305:25952256,505283,126483 +g1,16929:3078558,4812305 +[1,16929:3078558,4812305:0,0,0 +(1,16929:3078558,2439708:0,1703936,0 +k1,16929:1358238,2439708:-1720320 +(1,15456:1358238,2439708:1720320,1703936,0 +(1,15456:1358238,2439708:1179648,16384,0 +r1,16929:2537886,2439708:1179648,16384,0 ) +g1,15456:3062174,2439708 +(1,15456:3062174,2439708:16384,1703936,0 +[1,15456:3062174,2439708:25952256,1703936,0 +(1,15456:3062174,1915420:25952256,1179648,0 +(1,15456:3062174,1915420:16384,1179648,0 +r1,16929:3078558,1915420:16384,1179648,0 ) -] -[1,16859:3078558,4812305:0,0,0 -(1,16859:3078558,2439708:0,1703936,0 -g1,16859:29030814,2439708 -g1,16859:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,16859:36151628,1915420:16384,1179648,0 -) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,15456:29014430,1915420:25935872 +g1,15456:29014430,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,16859:37855564,2439708:1179648,16384,0 ) ) -k1,16859:3078556,2439708:-34777008 -) ] -[1,16859:3078558,4812305:0,0,0 -(1,16859:3078558,49800853:0,16384,2228224 -k1,16859:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,16859:2537886,49800853:1179648,16384,0 +[1,16929:3078558,4812305:0,0,0 +(1,16929:3078558,2439708:0,1703936,0 +g1,16929:29030814,2439708 +g1,16929:36135244,2439708 +(1,15456:36135244,2439708:1720320,1703936,0 +(1,15456:36135244,2439708:16384,1703936,0 +[1,15456:36135244,2439708:25952256,1703936,0 +(1,15456:36135244,1915420:25952256,1179648,0 +(1,15456:36135244,1915420:16384,1179648,0 +r1,16929:36151628,1915420:16384,1179648,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,16859:3078558,51504789:16384,1179648,0 +k1,15456:62087500,1915420:25935872 +g1,15456:62087500,1915420 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 -) -] -) -) -) -] -[1,16859:3078558,4812305:0,0,0 -(1,16859:3078558,49800853:0,16384,2228224 -g1,16859:29030814,49800853 -g1,16859:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,16859:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] -) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,16859:37855564,49800853:1179648,16384,0 -) -) -k1,16859:3078556,49800853:-34777008 -) -] -g1,16859:6630773,4812305 -g1,16859:6630773,4812305 -g1,16859:8017514,4812305 -g1,16859:11261546,4812305 -g1,16859:12076813,4812305 -g1,16859:14985956,4812305 -k1,16859:31387652,4812305:16401696 -) -) -] -[1,16859:6630773,45706769:25952256,40108032,0 -(1,16859:6630773,45706769:25952256,40108032,0 -(1,16859:6630773,45706769:0,0,0 -g1,16859:6630773,45706769 -) -[1,16859:6630773,45706769:25952256,40108032,0 -(1,16850:6630773,6254097:25952256,505283,126483 -k1,16849:8612217,6254097:196899 -k1,16849:9828201,6254097:196899 -k1,16849:15101519,6254097:196899 -k1,16849:17933621,6254097:196899 -k1,16849:21868694,6254097:196899 -k1,16849:23257038,6254097:196899 -k1,16849:26340143,6254097:196899 -k1,16849:28547687,6254097:196899 -k1,16849:30161474,6254097:196899 -k1,16850:32583029,6254097:0 -) -(1,16850:6630773,7095585:25952256,513147,134348 -k1,16849:7848837,7095585:227815 -k1,16849:11908543,7095585:227816 -k1,16849:15943344,7095585:227815 -k1,16849:16822587,7095585:227815 -k1,16849:18069488,7095585:227816 -k1,16849:21306716,7095585:227815 -k1,16849:22022091,7095585:227787 -k1,16849:23677936,7095585:227815 -k1,16849:25446503,7095585:227816 -k1,16849:26205815,7095585:227815 -k1,16849:29697323,7095585:227815 -k1,16849:30576567,7095585:227816 -k1,16849:31575085,7095585:227815 -k1,16850:32583029,7095585:0 -) -(1,16850:6630773,7937073:25952256,505283,134348 -k1,16849:9761990,7937073:184718 -k1,16849:11018876,7937073:184717 -k1,16849:11991992,7937073:184718 -k1,16849:14790941,7937073:184718 -k1,16849:16079941,7937073:184718 -k1,16849:17012424,7937073:184717 -k1,16849:20232770,7937073:184718 -k1,16849:21103650,7937073:184718 -k1,16849:22677075,7937073:184717 -k1,16849:23547955,7937073:184718 -k1,16849:24521071,7937073:184718 -k1,16849:25919516,7937073:184718 -k1,16849:26755661,7937073:184717 -k1,16849:27959464,7937073:184718 -k1,16849:32583029,7937073:0 -) -(1,16850:6630773,8778561:25952256,513147,134348 -k1,16849:10550528,8778561:178305 -k1,16849:11833114,8778561:178304 -k1,16849:12759185,8778561:178305 -k1,16849:15684104,8778561:178305 -k1,16849:17104972,8778561:178305 -k1,16849:18044804,8778561:178304 -k1,16849:19242194,8778561:178305 -k1,16849:22279179,8778561:178305 -k1,16849:23116775,8778561:178304 -k1,16849:24065783,8778561:178305 -k1,16849:26092203,8778561:178305 -k1,16849:26953393,8778561:178305 -k1,16849:28598393,8778561:178304 -k1,16849:30901375,8778561:178305 -k1,16850:32583029,8778561:0 -) -(1,16850:6630773,9620049:25952256,505283,126483 -k1,16849:8692044,9620049:247234 -k1,16849:12918625,9620049:247235 -k1,16849:14157419,9620049:247234 -k1,16849:17400960,9620049:247235 -k1,16849:18299622,9620049:247234 -k1,16849:18902717,9620049:247235 -k1,16849:20427248,9620049:247234 -k1,16849:21958988,9620049:247234 -k1,16849:23681438,9620049:247235 -k1,16849:24738042,9620049:247234 -k1,16849:28491453,9620049:247235 -k1,16849:29390115,9620049:247234 -k1,16849:32583029,9620049:0 -) -(1,16850:6630773,10461537:25952256,505283,134348 -k1,16849:11097404,10461537:221209 -k1,16849:12390782,10461537:221209 -k1,16849:14563653,10461537:221209 -k1,16849:16178813,10461537:221209 -k1,16849:17166138,10461537:221209 -k1,16849:21459099,10461537:221209 -k1,16849:23447815,10461537:221210 -k1,16849:26523117,10461537:221209 -k1,16849:27986889,10461537:221209 -k1,16849:28563958,10461537:221209 -k1,16849:30011346,10461537:221209 -k1,16849:31378780,10461537:221209 -k1,16849:32014832,10461537:221209 -k1,16849:32583029,10461537:0 -) -(1,16850:6630773,11303025:25952256,513147,134348 -k1,16849:8072969,11303025:246819 -k1,16849:11494351,11303025:246818 -k1,16849:12760255,11303025:246819 -k1,16849:15492854,11303025:246818 -k1,16849:16398965,11303025:246819 -k1,16849:20717536,11303025:246819 -k1,16849:23722764,11303025:246818 -k1,16849:24585621,11303025:246819 -k1,16849:25188300,11303025:246819 -k1,16849:27502124,11303025:246818 -k1,16849:28408235,11303025:246819 -k1,16849:29010913,11303025:246818 -k1,16849:30708699,11303025:246819 -k1,16849:32583029,11303025:0 -) -(1,16850:6630773,12144513:25952256,513147,134348 -k1,16849:8556439,12144513:270882 -k1,16849:11696487,12144513:270882 -k1,16849:14175933,12144513:270883 -k1,16849:18253801,12144513:270882 -k1,16849:20347239,12144513:270882 -k1,16849:24863543,12144513:270882 -k1,16849:26331113,12144513:270883 -k1,16849:27854388,12144513:270882 -k1,16849:30143124,12144513:270882 -k1,16849:32583029,12144513:0 -) -(1,16850:6630773,12986001:25952256,513147,126483 -k1,16849:8053963,12986001:231745 -k1,16849:9717014,12986001:231745 -k1,16849:12707170,12986001:231746 -k1,16849:13554953,12986001:231745 -k1,16849:14805783,12986001:231745 -k1,16849:19056851,12986001:231745 -k1,16849:21004330,12986001:231746 -k1,16849:21694172,12986001:231745 -k1,16849:24555877,12986001:231745 -k1,16849:25735273,12986001:231745 -k1,16849:26986104,12986001:231746 -k1,16849:29265849,12986001:231745 -k1,16849:30149022,12986001:231745 -k1,16849:32583029,12986001:0 -) -(1,16850:6630773,13827489:25952256,505283,134348 -k1,16849:7861241,13827489:211383 -k1,16849:10507943,13827489:211384 -k1,16849:12729971,13827489:211383 -k1,16849:16750962,13827489:211383 -k1,16849:17578383,13827489:211383 -k1,16849:18808852,13827489:211384 -k1,16849:20297532,13827489:211383 -k1,16849:21270443,13827489:211383 -k1,16849:24431601,13827489:211383 -k1,16849:27685822,13827489:211384 -k1,16849:29713863,13827489:211383 -k1,16849:32583029,13827489:0 -) -(1,16850:6630773,14668977:25952256,513147,134348 -k1,16849:7526948,14668977:280137 -k1,16849:8162944,14668977:280136 -k1,16849:12462404,14668977:280137 -k1,16849:14209236,14668977:280136 -k1,16849:16187411,14668977:280137 -k1,16849:17533818,14668977:280136 -k1,16849:20431463,14668977:280137 -k1,16849:23938592,14668977:280136 -k1,16849:28025715,14668977:280137 -k1,16849:29504505,14668977:280136 -k1,16849:31563944,14668977:280137 -k1,16849:32583029,14668977:0 -) -(1,16850:6630773,15510465:25952256,513147,126483 -k1,16849:8279702,15510465:254323 -k1,16849:9927976,15510465:254323 -k1,16849:12067771,15510465:254324 -k1,16849:12677954,15510465:254323 -k1,16849:14209574,15510465:254323 -k1,16849:15568179,15510465:254323 -k1,16849:16570268,15510465:254323 -k1,16849:18410563,15510465:254324 -k1,16849:20539216,15510465:254323 -k1,16849:23131208,15510465:254323 -k1,16849:24404616,15510465:254323 -k1,16849:25927716,15510465:254323 -k1,16849:26841332,15510465:254324 -k1,16849:28321834,15510465:254323 -k1,16849:29767602,15510465:254323 -k1,16849:32583029,15510465:0 -) -(1,16850:6630773,16351953:25952256,513147,134348 -k1,16849:9869281,16351953:216643 -k1,16849:10745216,16351953:216643 -k1,16849:12634339,16351953:216644 -k1,16849:14182018,16351953:216643 -k1,16849:15873876,16351953:216643 -k1,16849:17109604,16351953:216643 -k1,16849:19351310,16351953:216644 -k1,16849:20227245,16351953:216643 -k1,16849:22474849,16351953:216643 -k1,16849:25055376,16351953:216643 -k1,16849:26383510,16351953:216643 -k1,16849:27227989,16351953:216644 -k1,16849:29777714,16351953:216643 -k1,16849:31601955,16351953:216643 -k1,16850:32583029,16351953:0 -) -(1,16850:6630773,17193441:25952256,513147,134348 -k1,16849:8910879,17193441:191474 -k1,16849:9753781,17193441:191474 -k1,16849:10693022,17193441:191475 -k1,16849:13642906,17193441:191474 -k1,16849:14450418,17193441:191474 -k1,16849:16554233,17193441:191474 -k1,16849:17937153,17193441:191475 -k1,16849:20759242,17193441:191474 -k1,16849:21942276,17193441:191474 -k1,16849:25475431,17193441:191474 -k1,16849:26614557,17193441:191475 -k1,16849:28049904,17193441:191474 -k1,16849:32583029,17193441:0 -) -(1,16850:6630773,18034929:25952256,513147,134348 -k1,16849:8015643,18034929:193425 -k1,16849:9448353,18034929:193424 -k1,16849:11494481,18034929:193425 -k1,16849:13846007,18034929:193425 -k1,16849:16569121,18034929:193424 -k1,16849:17421838,18034929:193425 -k1,16849:18634347,18034929:193424 -k1,16849:21590115,18034929:193425 -k1,16849:23796806,18034929:193425 -k1,16849:24649522,18034929:193424 -k1,16849:26268355,18034929:193425 -k1,16849:29245749,18034929:193425 -k1,16849:30386824,18034929:193424 -k1,16849:31599334,18034929:193425 -k1,16850:32583029,18034929:0 -) -(1,16850:6630773,18876417:25952256,513147,126483 -k1,16849:8939387,18876417:243575 -k1,16849:9834391,18876417:243576 -k1,16849:11490267,18876417:243575 -k1,16849:13546569,18876417:243576 -k1,16849:14260037,18876417:243575 -k1,16849:15035109,18876417:243575 -k1,16849:18487983,18876417:243576 -k1,16849:19382986,18876417:243575 -k1,16849:20374328,18876417:243576 -k1,16849:22486334,18876417:243575 -k1,16849:23389201,18876417:243575 -k1,16849:24651862,18876417:243576 -k1,16849:26461092,18876417:243575 -k1,16849:28815583,18876417:243576 -k1,16849:29820686,18876417:243575 -k1,16849:32583029,18876417:0 -) -(1,16850:6630773,19717905:25952256,505283,134348 -k1,16849:8151536,19717905:243466 -k1,16849:12322575,19717905:243466 -k1,16849:14264079,19717905:243466 -k1,16849:17586426,19717905:243466 -k1,16849:18185753,19717905:243467 -k1,16849:19818582,19717905:243466 -k1,16849:24081371,19717905:243466 -k1,16849:25516282,19717905:243466 -k1,16849:27457786,19717905:243466 -k1,16849:32124932,19717905:243466 -k1,16849:32583029,19717905:0 -) -(1,16850:6630773,20559393:25952256,513147,134348 -g1,16849:8565395,20559393 -g1,16849:9783709,20559393 -g1,16849:12885528,20559393 -g1,16849:13744049,20559393 -k1,16850:32583029,20559393:15946221 -g1,16850:32583029,20559393 -) -(1,16851:6630773,23366961:25952256,32768,229376 -(1,16851:6630773,23366961:0,32768,229376 -(1,16851:6630773,23366961:5505024,32768,229376 -r1,16859:12135797,23366961:5505024,262144,229376 -) -k1,16851:6630773,23366961:-5505024 -) -(1,16851:6630773,23366961:25952256,32768,0 -r1,16859:32583029,23366961:25952256,32768,0 -) -) -(1,16851:6630773,24971289:25952256,615776,161218 -(1,16851:6630773,24971289:1974731,582746,14155 -g1,16851:6630773,24971289 -g1,16851:8605504,24971289 -) -g1,16851:10368685,24971289 -g1,16851:14207260,24971289 -g1,16851:15265011,24971289 -k1,16851:32583029,24971289:13926137 -g1,16851:32583029,24971289 -) -(1,16854:6630773,26205993:25952256,513147,134348 -k1,16853:8502902,26205993:238316 -k1,16853:11774224,26205993:238316 -k1,16853:14841074,26205993:238317 -k1,16853:16647011,26205993:238316 -k1,16853:18319255,26205993:238316 -k1,16853:18972375,26205993:238277 -k1,16853:20402136,26205993:238316 -k1,16853:24767254,26205993:238316 -k1,16853:27530018,26205993:238317 -k1,16853:30794131,26205993:238316 -k1,16853:31563944,26205993:238316 -k1,16853:32583029,26205993:0 -) -(1,16854:6630773,27047481:25952256,513147,134348 -k1,16853:7912395,27047481:189137 -k1,16853:8760824,27047481:189137 -k1,16853:9305820,27047481:189136 -k1,16853:11820830,27047481:189137 -k1,16853:14912557,27047481:189137 -k1,16853:15760986,27047481:189137 -k1,16853:18669212,27047481:189137 -k1,16853:20084527,27047481:189136 -k1,16853:22404895,27047481:189137 -k1,16853:24793420,27047481:189137 -k1,16853:26078319,27047481:189137 -k1,16853:26883494,27047481:189137 -k1,16853:28091715,27047481:189136 -k1,16853:30018867,27047481:189137 -k1,16853:30867296,27047481:189137 -k1,16854:32583029,27047481:0 -) -(1,16854:6630773,27888969:25952256,505283,134348 -k1,16853:7914062,27888969:205877 -k1,16853:11329235,27888969:205876 -k1,16853:13168925,27888969:205877 -k1,16853:13906299,27888969:205877 -k1,16853:16107091,27888969:205876 -k1,16853:17074496,27888969:205877 -k1,16853:20182963,27888969:205877 -k1,16853:21004877,27888969:205876 -k1,16853:22413995,27888969:205877 -k1,16853:23986952,27888969:205876 -k1,16853:24724326,27888969:205877 -k1,16853:26214709,27888969:205877 -k1,16853:28028183,27888969:205876 -k1,16853:29225620,27888969:205877 -k1,16853:32583029,27888969:0 -) -(1,16854:6630773,28730457:25952256,513147,134348 -k1,16853:8452660,28730457:171690 -k1,16853:9385879,28730457:171691 -k1,16853:11207766,28730457:171690 -k1,16853:13114849,28730457:171690 -k1,16853:16048883,28730457:171691 -k1,16853:18790240,28730457:171690 -k1,16853:20153376,28730457:171691 -k1,16853:22648973,28730457:171690 -k1,16853:26136785,28730457:171690 -k1,16853:28283240,28730457:171855 -k1,16853:30793911,28730457:171691 -k1,16853:31624893,28730457:171690 -k1,16854:32583029,28730457:0 -) -(1,16854:6630773,29571945:25952256,513147,134348 -k1,16853:7799608,29571945:178586 -k1,16853:8334053,29571945:178585 -k1,16853:10385658,29571945:178586 -k1,16853:13259739,29571945:178585 -k1,16853:14832276,29571945:178586 -k1,16853:16762638,29571945:178585 -k1,16853:20517524,29571945:178586 -k1,16853:22303708,29571945:178586 -k1,16853:23473853,29571945:178585 -k1,16853:27009848,29571945:178586 -k1,16853:27949961,29571945:178585 -k1,16853:31483335,29571945:178586 -k1,16854:32583029,29571945:0 -) -(1,16854:6630773,30413433:25952256,513147,126483 -k1,16853:8717340,30413433:167017 -k1,16853:11753523,30413433:167017 -k1,16853:13314492,30413433:167018 -k1,16853:16558424,30413433:167017 -(1,16853:16558424,30413433:0,414482,115847 -r1,16859:16916690,30413433:358266,530329,115847 -k1,16853:16558424,30413433:-358266 -) -(1,16853:16558424,30413433:358266,414482,115847 -k1,16853:16558424,30413433:3277 -h1,16853:16913413,30413433:0,411205,112570 -) -k1,16853:17083707,30413433:167017 -k1,16853:18442169,30413433:167017 -h1,16853:18442169,30413433:0,0,0 -k1,16853:19968402,30413433:167017 -k1,16853:24329068,30413433:167017 -k1,16853:25515171,30413433:167018 -k1,16853:29716584,30413433:167017 -k1,16853:30415098,30413433:167017 -k1,16853:32583029,30413433:0 -) -(1,16854:6630773,31254921:25952256,505283,134348 -k1,16853:12080092,31254921:191365 -k1,16853:13462902,31254921:191365 -k1,16853:14305695,31254921:191365 -k1,16853:14852920,31254921:191365 -k1,16853:16615183,31254921:191365 -k1,16853:18968581,31254921:191365 -k1,16853:20490327,31254921:191365 -k1,16853:22289290,31254921:191365 -k1,16853:23867397,31254921:191365 -k1,16853:25756800,31254921:191365 -k1,16853:28471956,31254921:191365 -k1,16853:31900144,31254921:191365 -k1,16853:32583029,31254921:0 -) -(1,16854:6630773,32096409:25952256,513147,134348 -g1,16853:9670988,32096409 -g1,16853:10521645,32096409 -g1,16853:11076734,32096409 -g1,16853:13531057,32096409 -g1,16853:14413171,32096409 -g1,16853:19522357,32096409 -g1,16853:20704626,32096409 -g1,16853:21435352,32096409 -g1,16853:24895652,32096409 -g1,16853:25856409,32096409 -k1,16854:32583029,32096409:4236252 -g1,16854:32583029,32096409 -) -(1,16856:6630773,32937897:25952256,513147,134348 -h1,16855:6630773,32937897:983040,0,0 -k1,16855:8838463,32937897:271101 -k1,16855:10213845,32937897:271100 -k1,16855:12165289,32937897:271101 -k1,16855:13095681,32937897:271100 -k1,16855:15891229,32937897:271101 -k1,16855:16848491,32937897:271100 -k1,16855:20573995,32937897:271101 -k1,16855:21527980,32937897:271100 -k1,16855:24606643,32937897:271101 -k1,16855:25896828,32937897:271100 -k1,16855:30239681,32937897:271101 -k1,16855:31193666,32937897:271100 -k1,16855:32583029,32937897:0 -) -(1,16856:6630773,33779385:25952256,513147,134348 -k1,16855:8107418,33779385:209179 -k1,16855:8672457,33779385:209179 -k1,16855:11831411,33779385:209179 -k1,16855:15056557,33779385:209179 -k1,16855:16219285,33779385:209179 -k1,16855:17520949,33779385:209179 -k1,16855:21025934,33779385:209179 -k1,16855:21894405,33779385:209179 -k1,16855:25053359,33779385:209179 -k1,16855:26152517,33779385:209179 -k1,16855:30293201,33779385:209179 -k1,16855:32583029,33779385:0 -) -(1,16856:6630773,34620873:25952256,513147,126483 -k1,16855:7487329,34620873:205128 -k1,16855:10733982,34620873:205127 -k1,16855:13701453,34620873:205128 -k1,16855:16281605,34620873:205127 -k1,16855:17146025,34620873:205128 -k1,16855:18448881,34620873:205128 -k1,16855:20217042,34620873:205127 -k1,16855:21324601,34620873:205128 -k1,16855:25271178,34620873:205127 -k1,16855:26580588,34620873:205128 -k1,16855:29047362,34620873:205127 -k1,16855:29911782,34620873:205128 -k1,16855:32583029,34620873:0 -) -(1,16856:6630773,35462361:25952256,513147,126483 -k1,16855:9724224,35462361:252465 -k1,16855:12161004,35462361:252465 -k1,16855:13485638,35462361:252465 -k1,16855:14508806,35462361:252465 -k1,16855:18502721,35462361:252465 -k1,16855:19414478,35462361:252465 -k1,16855:20512356,35462361:252464 -k1,16855:24708778,35462361:252465 -k1,16855:26298177,35462361:252465 -k1,16855:27298408,35462361:252465 -k1,16855:29932451,35462361:252465 -k1,16855:30946444,35462361:252465 -k1,16855:31554769,35462361:252465 -k1,16856:32583029,35462361:0 -) -(1,16856:6630773,36303849:25952256,505283,126483 -k1,16855:8651651,36303849:221915 -k1,16855:9489604,36303849:221915 -k1,16855:14228916,36303849:221915 -k1,16855:16238653,36303849:221915 -k1,16855:17652013,36303849:221915 -k1,16855:18229788,36303849:221915 -k1,16855:20139910,36303849:221915 -k1,16855:20977863,36303849:221915 -k1,16855:22798856,36303849:221915 -k1,16855:23636809,36303849:221915 -k1,16855:26524729,36303849:221915 -k1,16855:27398072,36303849:221915 -k1,16855:28639072,36303849:221915 -k1,16855:32583029,36303849:0 -) -(1,16856:6630773,37145337:25952256,513147,134348 -k1,16855:8596853,37145337:186778 -k1,16855:9686061,37145337:186777 -k1,16855:13614289,37145337:186778 -k1,16855:14748717,37145337:186777 -k1,16855:15954580,37145337:186778 -k1,16855:17410135,37145337:186778 -k1,16855:18788357,37145337:186777 -k1,16855:20844222,37145337:186778 -k1,16855:21690291,37145337:186777 -k1,16855:22232929,37145337:186778 -k1,16855:24073180,37145337:186778 -k1,16855:25364239,37145337:186777 -k1,16855:27812664,37145337:186778 -k1,16855:28658733,37145337:186777 -k1,16855:31028515,37145337:186778 -k1,16855:32583029,37145337:0 -) -(1,16856:6630773,37986825:25952256,513147,134348 -k1,16855:9848372,37986825:206220 -k1,16855:12540373,37986825:206220 -k1,16855:13405885,37986825:206220 -k1,16855:15728918,37986825:206220 -k1,16855:17203915,37986825:206220 -k1,16855:18069427,37986825:206220 -k1,16855:21468560,37986825:206219 -k1,16855:23791593,37986825:206220 -k1,16855:26011079,37986825:206220 -k1,16855:26876591,37986825:206220 -k1,16855:28921096,37986825:206220 -k1,16855:30772925,37986825:206220 -k1,16855:32583029,37986825:0 -) -(1,16856:6630773,38828313:25952256,513147,134348 -k1,16855:7974412,38828313:273436 -k1,16855:10057952,38828313:273436 -k1,16855:11442880,38828313:273437 -k1,16855:12194073,38828313:273436 -k1,16855:13335861,38828313:273436 -k1,16855:14600857,38828313:273436 -k1,16855:18085558,38828313:273437 -k1,16855:18975032,38828313:273436 -k1,16855:20267553,38828313:273436 -k1,16855:24372224,38828313:273436 -k1,16855:27280864,38828313:273437 -k1,16855:29563634,38828313:273436 -k1,16855:31028515,38828313:273436 -k1,16855:32583029,38828313:0 -) -(1,16856:6630773,39669801:25952256,505283,134348 -k1,16855:9895061,39669801:252909 -k1,16855:11016323,39669801:252910 -k1,16855:12606166,39669801:252909 -k1,16855:14407691,39669801:252909 -k1,16855:15312029,39669801:252910 -k1,16855:16657423,39669801:252909 -k1,16855:19794572,39669801:252910 -k1,16855:23959325,39669801:252909 -k1,16855:27033559,39669801:252909 -k1,16855:28840983,39669801:252910 -k1,16855:31931601,39669801:252909 -k1,16855:32583029,39669801:0 -) -(1,16856:6630773,40511289:25952256,513147,138281 -k1,16855:7857045,40511289:207187 -$1,16855:7857045,40511289 -$1,16855:8359706,40511289 -k1,16855:8566893,40511289:207187 -k1,16855:12119039,40511289:207188 -k1,16855:12985518,40511289:207187 -k1,16855:14211790,40511289:207187 -k1,16855:15696274,40511289:207187 -k1,16855:17094907,40511289:207188 -k1,16855:18321179,40511289:207187 -k1,16855:20537700,40511289:207187 -k1,16855:21396315,40511289:207187 -k1,16855:22622587,40511289:207187 -$1,16855:22622587,40511289 -$1,16855:23174400,40511289 -k1,16855:23381588,40511289:207188 -k1,16855:27107403,40511289:207187 -k1,16855:28511277,40511289:207187 -k1,16855:32583029,40511289:0 -) -(1,16856:6630773,41352777:25952256,505283,126483 -g1,16855:8598819,41352777 -g1,16855:9545814,41352777 -g1,16855:13554651,41352777 -g1,16855:14563250,41352777 -g1,16855:15781564,41352777 -g1,16855:17258090,41352777 -g1,16855:18218847,41352777 -k1,16856:32583029,41352777:12172003 -g1,16856:32583029,41352777 -) -(1,16858:6630773,42194265:25952256,513147,134348 -h1,16857:6630773,42194265:983040,0,0 -k1,16857:9074064,42194265:263564 -k1,16857:12240218,42194265:263564 -k1,16857:13163074,42194265:263564 -k1,16857:16145727,42194265:263564 -k1,16857:18421246,42194265:263564 -k1,16857:19429954,42194265:263564 -k1,16857:20344945,42194265:263563 -k1,16857:22697141,42194265:263564 -k1,16857:24568303,42194265:263564 -k1,16857:25593395,42194265:263564 -k1,16857:29211747,42194265:263564 -k1,16857:31817568,42194265:263564 -k1,16858:32583029,42194265:0 -) -(1,16858:6630773,43035753:25952256,513147,134348 -k1,16857:9230133,43035753:282662 -k1,16857:10128832,43035753:282661 -k1,16857:11979771,43035753:282662 -k1,16857:13546938,43035753:282661 -k1,16857:14821160,43035753:282662 -k1,16857:17076456,43035753:282662 -k1,16857:21026512,43035753:282661 -k1,16857:21937009,43035753:282662 -k1,16857:23921641,43035753:282662 -k1,16857:26332911,43035753:282661 -k1,16857:27634658,43035753:282662 -k1,16857:30621990,43035753:282661 -k1,16857:31563944,43035753:282662 -k1,16857:32583029,43035753:0 -) -(1,16858:6630773,43877241:25952256,513147,134348 -k1,16857:9502506,43877241:241773 -k1,16857:14062446,43877241:241773 -k1,16857:14963512,43877241:241774 -k1,16857:17760534,43877241:241773 -k1,16857:19537816,43877241:241773 -k1,16857:21319685,43877241:241773 -k1,16857:23169056,43877241:241773 -k1,16857:24096991,43877241:241773 -k1,16857:25727473,43877241:241774 -k1,16857:26655408,43877241:241773 -k1,16857:27765533,43877241:241773 -k1,16857:30943974,43877241:241773 -k1,16857:32583029,43877241:0 -) -(1,16858:6630773,44718729:25952256,513147,134348 -k1,16857:10236564,44718729:290980 -k1,16857:11546629,44718729:290980 -k1,16857:13423579,44718729:290979 -k1,16857:14373851,44718729:290980 -k1,16857:15683916,44718729:290980 -k1,16857:19051156,44718729:290980 -k1,16857:20722980,44718729:290980 -k1,16857:23987983,44718729:290979 -k1,16857:26324997,44718729:290980 -k1,16857:29444510,44718729:290980 -k1,16857:32583029,44718729:0 -) -] -(1,16859:32583029,45706769:0,0,0 -g1,16859:32583029,45706769 -) -) -] -(1,16859:6630773,47279633:25952256,0,0 -h1,16859:6630773,47279633:25952256,0,0 -) -] -(1,16859:4262630,4025873:0,0,0 -[1,16859:-473656,4025873:0,0,0 -(1,16859:-473656,-710413:0,0,0 -(1,16859:-473656,-710413:0,0,0 -g1,16859:-473656,-710413 -) -g1,16859:-473656,-710413 -) -] -) -] -!24522 -}288 -Input:2445:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2446:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2447:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2448:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2449:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2450:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2451:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!670 -{289 -[1,16872:4262630,47279633:28320399,43253760,0 -(1,16872:4262630,4025873:0,0,0 -[1,16872:-473656,4025873:0,0,0 -(1,16872:-473656,-710413:0,0,0 -(1,16872:-473656,-644877:0,0,0 -k1,16872:-473656,-644877:-65536 +] ) -(1,16872:-473656,4736287:0,0,0 -k1,16872:-473656,4736287:5209943 +g1,15456:36675916,2439708 +(1,15456:36675916,2439708:1179648,16384,0 +r1,16929:37855564,2439708:1179648,16384,0 ) -g1,16872:-473656,-710413 ) -] +k1,16929:3078556,2439708:-34777008 ) -[1,16872:6630773,47279633:25952256,43253760,0 -[1,16872:6630773,4812305:25952256,786432,0 -(1,16872:6630773,4812305:25952256,513147,126483 -(1,16872:6630773,4812305:25952256,513147,126483 -g1,16872:3078558,4812305 -[1,16872:3078558,4812305:0,0,0 -(1,16872:3078558,2439708:0,1703936,0 -k1,16872:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,16872:2537886,2439708:1179648,16384,0 +] +[1,16929:3078558,4812305:0,0,0 +(1,16929:3078558,49800853:0,16384,2228224 +k1,16929:1358238,49800853:-1720320 +(1,15456:1358238,49800853:1720320,16384,2228224 +(1,15456:1358238,49800853:1179648,16384,0 +r1,16929:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,16872:3078558,1915420:16384,1179648,0 +g1,15456:3062174,49800853 +(1,15456:3062174,52029077:16384,1703936,0 +[1,15456:3062174,52029077:25952256,1703936,0 +(1,15456:3062174,51504789:25952256,1179648,0 +(1,15456:3062174,51504789:16384,1179648,0 +r1,16929:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,15456:29014430,51504789:25935872 +g1,15456:29014430,51504789 ) ] ) ) ) ] -[1,16872:3078558,4812305:0,0,0 -(1,16872:3078558,2439708:0,1703936,0 -g1,16872:29030814,2439708 -g1,16872:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,16872:36151628,1915420:16384,1179648,0 +[1,16929:3078558,4812305:0,0,0 +(1,16929:3078558,49800853:0,16384,2228224 +g1,16929:29030814,49800853 +g1,16929:36135244,49800853 +(1,15456:36135244,49800853:1720320,16384,2228224 +(1,15456:36135244,52029077:16384,1703936,0 +[1,15456:36135244,52029077:25952256,1703936,0 +(1,15456:36135244,51504789:25952256,1179648,0 +(1,15456:36135244,51504789:16384,1179648,0 +r1,16929:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,15456:62087500,51504789:25935872 +g1,15456:62087500,51504789 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,16872:37855564,2439708:1179648,16384,0 +g1,15456:36675916,49800853 +(1,15456:36675916,49800853:1179648,16384,0 +r1,16929:37855564,49800853:1179648,16384,0 ) ) -k1,16872:3078556,2439708:-34777008 +k1,16929:3078556,49800853:-34777008 ) ] -[1,16872:3078558,4812305:0,0,0 -(1,16872:3078558,49800853:0,16384,2228224 -k1,16872:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,16872:2537886,49800853:1179648,16384,0 -) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,16872:3078558,51504789:16384,1179648,0 -) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 -) -] -) -) -) -] -[1,16872:3078558,4812305:0,0,0 -(1,16872:3078558,49800853:0,16384,2228224 -g1,16872:29030814,49800853 -g1,16872:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,16872:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] -) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,16872:37855564,49800853:1179648,16384,0 -) -) -k1,16872:3078556,49800853:-34777008 -) -] -g1,16872:6630773,4812305 -k1,16872:21350816,4812305:13524666 -g1,16872:21999622,4812305 -g1,16872:25611966,4812305 -g1,16872:28956923,4812305 -g1,16872:29772190,4812305 -) -) -] -[1,16872:6630773,45706769:25952256,40108032,0 -(1,16872:6630773,45706769:25952256,40108032,0 -(1,16872:6630773,45706769:0,0,0 -g1,16872:6630773,45706769 -) -[1,16872:6630773,45706769:25952256,40108032,0 -(1,16858:6630773,6254097:25952256,513147,126483 -k1,16857:9705285,6254097:217798 -k1,16857:10609245,6254097:217798 -k1,16857:11695395,6254097:217798 -k1,16857:13017474,6254097:217797 -k1,16857:14877604,6254097:217798 -k1,16857:16703000,6254097:217798 -k1,16857:18112243,6254097:217798 -k1,16857:19796737,6254097:217798 -k1,16857:21730923,6254097:217798 -k1,16857:22608013,6254097:217798 -k1,16857:24433409,6254097:217798 -k1,16857:26536677,6254097:217797 -k1,16857:28258526,6254097:217798 -k1,16857:29542595,6254097:217798 -k1,16857:31227089,6254097:217798 -k1,16858:32583029,6254097:0 -) -(1,16858:6630773,7095585:25952256,505283,134348 -g1,16857:9186021,7095585 -g1,16857:11074768,7095585 -g1,16857:14352878,7095585 -g1,16857:15571192,7095585 -g1,16857:18598954,7095585 -k1,16858:32583029,7095585:11230252 -g1,16858:32583029,7095585 -) -(1,16860:6630773,7937073:25952256,505283,134348 -h1,16859:6630773,7937073:983040,0,0 -k1,16859:9567050,7937073:170002 -k1,16859:10092912,7937073:170002 -k1,16859:11540211,7937073:170002 -k1,16859:12241711,7937073:170003 -k1,16859:14063876,7937073:170002 -k1,16859:15252963,7937073:170002 -k1,16859:17305814,7937073:170002 -k1,16859:18753113,7937073:170002 -k1,16859:20114560,7937073:170002 -k1,16859:21072960,7937073:170002 -k1,16859:25170535,7937073:170002 -k1,16859:26332098,7937073:170003 -k1,16859:28852221,7937073:170002 -k1,16859:29708385,7937073:170002 -k1,16859:30293201,7937073:169973 -k1,16859:32583029,7937073:0 -) -(1,16860:6630773,8778561:25952256,513147,134348 -k1,16859:8163879,8778561:248600 -k1,16859:9516761,8778561:248600 -k1,16859:10513127,8778561:248600 -k1,16859:12573142,8778561:248600 -k1,16859:13437780,8778561:248600 -k1,16859:14705465,8778561:248600 -k1,16859:18338344,8778561:248600 -k1,16859:19269828,8778561:248599 -k1,16859:21804979,8778561:248600 -k1,16859:22705007,8778561:248600 -k1,16859:23309467,8778561:248600 -k1,16859:24541107,8778561:248600 -k1,16859:25475869,8778561:248600 -k1,16859:28187967,8778561:248600 -k1,16859:29633254,8778561:248600 -k1,16859:32583029,8778561:0 -) -(1,16860:6630773,9620049:25952256,505283,134348 -k1,16859:11475653,9620049:180027 -k1,16859:12187178,9620049:180028 -k1,16859:15520142,9620049:180027 -k1,16859:17398207,9620049:180027 -k1,16859:18597320,9620049:180028 -k1,16859:20736873,9620049:180027 -k1,16859:21448397,9620049:180027 -k1,16859:24152215,9620049:180027 -k1,16859:27229590,9620049:180028 -k1,16859:28092502,9620049:180027 -k1,16859:32583029,9620049:0 -) -(1,16860:6630773,10461537:25952256,513147,134348 -k1,16859:7972210,10461537:144750 -k1,16859:9770433,10461537:144750 -(1,16859:9770433,10461537:0,452978,122846 -r1,16872:11183834,10461537:1413401,575824,122846 -k1,16859:9770433,10461537:-1413401 -) -(1,16859:9770433,10461537:1413401,452978,122846 -k1,16859:9770433,10461537:3277 -h1,16859:11180557,10461537:0,411205,112570 -) -k1,16859:11328584,10461537:144750 -k1,16859:12750630,10461537:144749 -k1,16859:14854906,10461537:144750 -k1,16859:16103938,10461537:144750 -k1,16859:16996454,10461537:144750 -k1,16859:20016268,10461537:144750 -k1,16859:21428484,10461537:144750 -k1,16859:24335576,10461537:144749 -k1,16859:26735420,10461537:144750 -k1,16859:28071615,10461537:144750 -k1,16859:30194242,10461537:144750 -k1,16859:32583029,10461537:0 -) -(1,16860:6630773,11303025:25952256,513147,134348 -g1,16859:9340686,11303025 -g1,16859:10487566,11303025 -g1,16859:12981866,11303025 -g1,16859:13863980,11303025 -k1,16860:32583029,11303025:15973090 -g1,16860:32583029,11303025 -) -(1,16862:6630773,12144513:25952256,513147,134348 -h1,16861:6630773,12144513:983040,0,0 -k1,16861:9085096,12144513:274596 -k1,16861:14196904,12144513:274596 -k1,16861:15130792,12144513:274596 -k1,16861:15761248,12144513:274596 -k1,16861:16970387,12144513:274596 -k1,16861:17904276,12144513:274597 -k1,16861:19568235,12144513:274596 -k1,16861:20525716,12144513:274596 -k1,16861:24872064,12144513:274596 -k1,16861:26414126,12144513:274596 -k1,16861:27044582,12144513:274596 -k1,16861:30194242,12144513:274596 -k1,16861:32583029,12144513:0 -) -(1,16862:6630773,12986001:25952256,513147,134348 -k1,16861:8243006,12986001:218282 -k1,16861:11041439,12986001:218281 -k1,16861:14088254,12986001:218282 -k1,16861:15410818,12986001:218282 -k1,16861:16376866,12986001:218282 -k1,16861:20404755,12986001:218281 -k1,16861:21309199,12986001:218282 -k1,16861:21883341,12986001:218282 -k1,16861:23451664,12986001:218281 -k1,16861:24329238,12986001:218282 -k1,16861:28528177,12986001:218282 -k1,16861:29818628,12986001:218282 -k1,16861:31322725,12986001:218281 -k1,16861:32227169,12986001:218282 -k1,16861:32583029,12986001:0 -) -(1,16862:6630773,13827489:25952256,513147,126483 -k1,16861:9747720,13827489:177002 -k1,16861:10584013,13827489:177001 -k1,16861:13221892,13827489:177002 -k1,16861:16333596,13827489:177002 -k1,16861:18059213,13827489:177001 -k1,16861:20296012,13827489:177002 -k1,16861:21757520,13827489:177002 -k1,16861:22953606,13827489:177001 -k1,16861:26104632,13827489:177002 -k1,16861:29055118,13827489:177002 -k1,16861:29587979,13827489:177001 -k1,16861:32051532,13827489:177002 -k1,16861:32583029,13827489:0 -) -(1,16862:6630773,14668977:25952256,513147,126483 -k1,16861:8132028,14668977:216749 -k1,16861:8814739,14668977:216750 -k1,16861:9899840,14668977:216749 -k1,16861:10931857,14668977:216749 -k1,16861:12214878,14668977:216750 -k1,16861:15328974,14668977:216749 -k1,16861:18195344,14668977:216749 -k1,16861:19178210,14668977:216750 -k1,16861:21080545,14668977:216749 -k1,16861:21913332,14668977:216749 -k1,16861:23227810,14668977:216750 -k1,16861:25114416,14668977:216749 -k1,16861:25947203,14668977:216749 -k1,16861:27765653,14668977:216750 -k1,16861:29679784,14668977:216749 -k1,16861:32583029,14668977:0 -) -(1,16862:6630773,15510465:25952256,513147,126483 -k1,16861:9381606,15510465:154952 -k1,16861:10484208,15510465:154951 -k1,16861:12278215,15510465:154952 -k1,16861:13565629,15510465:154952 -k1,16861:14468346,15510465:154951 -k1,16861:16136524,15510465:154952 -k1,16861:18792330,15510465:154952 -k1,16861:20143968,15510465:154951 -k1,16861:22237475,15510465:154952 -k1,16861:23043855,15510465:154952 -k1,16861:24841139,15510465:154952 -k1,16861:25351950,15510465:154951 -k1,16861:26784199,15510465:154952 -k1,16861:28799718,15510465:154952 -k1,16861:29606097,15510465:154951 -k1,16861:32020075,15510465:154952 -k1,16861:32583029,15510465:0 -) -(1,16862:6630773,16351953:25952256,505283,134348 -k1,16861:7806582,16351953:156724 -k1,16861:9352670,16351953:156725 -k1,16861:10160823,16351953:156725 -k1,16861:11583703,16351953:156724 -k1,16861:12347947,16351953:156725 -k1,16861:14390142,16351953:156724 -k1,16861:17058206,16351953:156724 -k1,16861:17866359,16351953:156725 -k1,16861:19419656,16351953:156725 -k1,16861:20227808,16351953:156724 -k1,16861:22270004,16351953:156725 -k1,16861:25376503,16351953:156724 -k1,16861:28311298,16351953:156724 -k1,16861:29358002,16351953:156725 -k1,16861:32583029,16351953:0 -) -(1,16862:6630773,17193441:25952256,505283,134348 -k1,16861:7323769,17193441:152324 -k1,16861:9361564,17193441:152324 -k1,16861:11401980,17193441:152324 -k1,16861:12205733,17193441:152325 -k1,16861:13555400,17193441:152324 -k1,16861:14899169,17193441:152324 -k1,16861:16936964,17193441:152324 -k1,16861:20252711,17193441:152324 -k1,16861:25069888,17193441:152324 -k1,16861:25873640,17193441:152324 -k1,16861:27292121,17193441:152325 -k1,16861:28072280,17193441:152324 -k1,16861:29243689,17193441:152324 -k1,16861:31298523,17193441:152324 -k1,16861:32583029,17193441:0 -) -(1,16862:6630773,18034929:25952256,505283,126483 -k1,16861:9644555,18034929:171486 -k1,16861:10835125,18034929:171485 -k1,16861:12220338,18034929:171486 -k1,16861:15027027,18034929:171486 -k1,16861:16587875,18034929:171485 -k1,16861:18770006,18034929:171486 -k1,16861:20132937,18034929:171486 -k1,16861:23148685,18034929:171485 -k1,16861:25504486,18034929:171486 -k1,16861:26230407,18034929:171486 -k1,16861:26757752,18034929:171485 -k1,16861:30337110,18034929:171486 -k1,16861:32583029,18034929:0 -) -(1,16862:6630773,18876417:25952256,513147,138281 -k1,16861:9821896,18876417:214478 -k1,16861:11411974,18876417:214477 -k1,16861:14801016,18876417:214478 -$1,16861:14801016,18876417 -$1,16861:15303677,18876417 -k1,16861:15691824,18876417:214477 -$1,16861:15691824,18876417 -$1,16861:16243637,18876417 -k1,16861:16458115,18876417:214478 -k1,16861:17864037,18876417:214477 -k1,16861:20722237,18876417:214478 -$1,16861:20722237,18876417 -$1,16861:21147566,18876417 -k1,16861:21742807,18876417:214477 -k1,16861:22429144,18876417:214478 -k1,16861:22999481,18876417:214477 -k1,16861:25200355,18876417:214478 -k1,16861:26066260,18876417:214477 -k1,16861:27546894,18876417:214478 -k1,16861:28958058,18876417:214477 -k1,16861:31015408,18876417:214478 -k1,16861:32583029,18876417:0 -) -(1,16862:6630773,19717905:25952256,513147,134348 -k1,16861:10783981,19717905:139128 -k1,16861:11278969,19717905:139128 -k1,16861:12695394,19717905:139128 -k1,16861:14228472,19717905:139127 -k1,16861:15386685,19717905:139128 -k1,16861:18428403,19717905:139128 -k1,16861:19226823,19717905:139128 -k1,16861:22085040,19717905:139128 -k1,16861:22755665,19717905:139128 -k1,16861:23665495,19717905:139127 -k1,16861:24249552,19717905:139068 -k1,16861:26348206,19717905:139128 -k1,16861:29849331,19717905:139128 -k1,16861:30344319,19717905:139128 -k1,16861:32583029,19717905:0 -) -(1,16862:6630773,20559393:25952256,513147,134348 -k1,16861:7792685,20559393:214261 -k1,16861:8362806,20559393:214261 -k1,16861:10328189,20559393:214261 -k1,16861:13523027,20559393:214261 -k1,16861:14756373,20559393:214261 -k1,16861:16533668,20559393:214261 -k1,16861:18128773,20559393:214261 -k1,16861:18788007,20559393:214245 -k1,16861:21135465,20559393:214261 -k1,16861:23903009,20559393:214261 -k1,16861:25263495,20559393:214261 -k1,16861:27179726,20559393:214261 -k1,16861:27838961,20559393:214246 -k1,16861:30516720,20559393:214261 -k1,16861:31835263,20559393:214261 -k1,16861:32583029,20559393:0 -) -(1,16862:6630773,21400881:25952256,513147,134348 -k1,16861:9570554,21400881:164987 -k1,16861:10091401,21400881:164987 -k1,16861:12168073,21400881:164987 -k1,16861:14144475,21400881:164987 -k1,16861:14960890,21400881:164987 -k1,16861:15481737,21400881:164987 -k1,16861:16629764,21400881:164987 -k1,16861:17477636,21400881:164987 -k1,16861:19992744,21400881:164987 -k1,16861:21425197,21400881:164987 -k1,16861:21946044,21400881:164987 -k1,16861:24986095,21400881:164987 -k1,16861:26602049,21400881:164987 -k1,16861:28623016,21400881:164987 -k1,16861:29439431,21400881:164987 -k1,16861:29960278,21400881:164987 -k1,16861:32583029,21400881:0 -) -(1,16862:6630773,22242369:25952256,513147,134348 -k1,16861:8994984,22242369:146473 -k1,16861:9824342,22242369:146473 -k1,16861:11238281,22242369:146473 -k1,16861:13362631,22242369:146473 -k1,16861:14191989,22242369:146473 -k1,16861:16593555,22242369:146472 -k1,16861:19459117,22242369:146473 -k1,16861:22289945,22242369:146473 -k1,16861:23633105,22242369:146473 -k1,16861:25718133,22242369:146473 -k1,16861:28532577,22242369:146473 -k1,16861:30831252,22242369:146473 -k1,16861:32583029,22242369:0 -) -(1,16862:6630773,23083857:25952256,513147,126483 -k1,16861:9849159,23083857:175549 -k1,16861:11096877,23083857:175549 -k1,16861:11958588,23083857:175549 -k1,16861:15551839,23083857:175548 -k1,16861:17756383,23083857:175549 -k1,16861:18800284,23083857:175549 -k1,16861:19791101,23083857:175549 -k1,16861:21032921,23083857:175549 -k1,16861:22738736,23083857:175549 -k1,16861:23565713,23083857:175549 -k1,16861:24489028,23083857:175549 -k1,16861:26995692,23083857:175548 -k1,16861:28993797,23083857:175549 -k1,16861:29935462,23083857:175549 -k1,16861:30770303,23083857:175549 -k1,16861:32583029,23083857:0 -) -(1,16862:6630773,23925345:25952256,513147,126483 -k1,16861:9961354,23925345:156672 -k1,16861:11473311,23925345:156672 -k1,16861:12192936,23925345:156671 -k1,16861:13450613,23925345:156672 -k1,16861:14416655,23925345:156672 -k1,16861:17012577,23925345:156672 -k1,16861:17776768,23925345:156672 -k1,16861:19034444,23925345:156671 -k1,16861:21786997,23925345:156672 -k1,16861:23319270,23925345:156672 -k1,16861:24091980,23925345:156672 -k1,16861:26442797,23925345:156672 -k1,16861:28470522,23925345:156672 -k1,16861:29818638,23925345:156671 -k1,16861:30515982,23925345:156672 -k1,16861:31773659,23925345:156672 -k1,16861:32583029,23925345:0 -) -(1,16862:6630773,24766833:25952256,513147,134348 -k1,16861:9611678,24766833:211354 -k1,16861:11019718,24766833:211353 -k1,16861:13556945,24766833:211354 -k1,16861:16670889,24766833:211354 -k1,16861:17541535,24766833:211354 -k1,16861:20471977,24766833:211353 -k1,16861:24884844,24766833:211354 -k1,16861:25712236,24766833:211354 -k1,16861:28752122,24766833:211353 -k1,16861:30975431,24766833:211354 -k1,16861:32583029,24766833:0 -) -(1,16862:6630773,25608321:25952256,513147,134348 -k1,16861:7511041,25608321:228840 -k1,16861:10111628,25608321:228839 -k1,16861:13011715,25608321:228840 -k1,16861:15302318,25608321:228840 -k1,16861:16982780,25608321:228840 -k1,16861:18769410,25608321:228839 -k1,16861:21641972,25608321:228840 -k1,16861:24220933,25608321:228840 -k1,16861:25843724,25608321:228840 -k1,16861:26428423,25608321:228839 -k1,16861:29419606,25608321:228840 -k1,16861:32583029,25608321:0 -) -(1,16862:6630773,26449809:25952256,513147,126483 -g1,16861:11494855,26449809 -g1,16861:12353376,26449809 -k1,16862:32583030,26449809:18666620 -g1,16862:32583030,26449809 -) -(1,16863:6630773,28541069:25952256,564462,147783 -(1,16863:6630773,28541069:2450326,534184,12975 -g1,16863:6630773,28541069 -g1,16863:9081099,28541069 -) -g1,16863:10697348,28541069 -g1,16863:13182277,28541069 -g1,16863:14151883,28541069 -g1,16863:15533841,28541069 -k1,16863:32583029,28541069:13755414 -g1,16863:32583029,28541069 -) -(1,16865:6630773,29775773:25952256,513147,134348 -k1,16864:8858342,29775773:186123 -k1,16864:11677046,29775773:186123 -k1,16864:12219029,29775773:186123 -k1,16864:13682450,29775773:186124 -k1,16864:15223858,29775773:186123 -k1,16864:16171509,29775773:186123 -k1,16864:17886587,29775773:186123 -k1,16864:18285689,29775773:186110 -k1,16864:21544140,29775773:186123 -k1,16864:23114383,29775773:186123 -k1,16864:24319592,29775773:186124 -k1,16864:27268058,29775773:186123 -k1,16864:31381754,29775773:186123 -k1,16864:32227169,29775773:186123 -k1,16864:32583029,29775773:0 -) -(1,16865:6630773,30617261:25952256,505283,134348 -g1,16864:8855720,30617261 -g1,16864:11167174,30617261 -g1,16864:12049288,30617261 -g1,16864:13267602,30617261 -g1,16864:15421770,30617261 -g1,16864:16237037,30617261 -g1,16864:17455351,30617261 -k1,16865:32583029,30617261:12051418 -g1,16865:32583029,30617261 -) -(1,16866:6630773,32245181:25952256,474481,7863 -(1,16866:6630773,32245181:0,0,0 -g1,16866:6630773,32245181 -) -k1,16866:32583029,32245181:24418058 -g1,16866:32583029,32245181 -) -(1,16868:6630773,33479885:25952256,505283,126483 -k1,16867:8126645,33479885:299185 -k1,16867:9815193,33479885:299185 -k1,16867:10765807,33479885:299186 -k1,16867:11812758,33479885:299185 -k1,16867:14414223,33479885:299185 -k1,16867:16335424,33479885:299185 -k1,16867:17382376,33479885:299186 -k1,16867:20465530,33479885:299185 -k1,16867:21450877,33479885:299185 -k1,16867:22105922,33479885:299185 -(1,16867:22105922,33479885:0,459977,115847 -r1,16872:25629594,33479885:3523672,575824,115847 -k1,16867:22105922,33479885:-3523672 -) -(1,16867:22105922,33479885:3523672,459977,115847 -k1,16867:22105922,33479885:3277 -h1,16867:25626317,33479885:0,411205,112570 -) -k1,16867:25928779,33479885:299185 -k1,16867:26910850,33479885:299186 -(1,16867:26910850,33479885:0,452978,115847 -r1,16872:29027675,33479885:2116825,568825,115847 -k1,16867:26910850,33479885:-2116825 -) -(1,16867:26910850,33479885:2116825,452978,115847 -k1,16867:26910850,33479885:3277 -h1,16867:29024398,33479885:0,411205,112570 -) -k1,16867:29500530,33479885:299185 -k1,16867:31193666,33479885:299185 -k1,16867:32583029,33479885:0 -) -(1,16868:6630773,34321373:25952256,505283,134348 -k1,16867:8926117,34321373:257174 -k1,16867:9908119,34321373:257174 -k1,16867:11449800,34321373:257175 -k1,16867:13158596,34321373:257174 -k1,16867:14619666,34321373:257174 -k1,16867:18248667,34321373:257174 -k1,16867:18861701,34321373:257174 -k1,16867:20991894,34321373:257174 -k1,16867:24990519,34321373:257175 -k1,16867:27144960,34321373:257174 -k1,16867:28593579,34321373:257174 -k1,16867:29869838,34321373:257174 -k1,16867:32583029,34321373:0 -) -(1,16868:6630773,35162861:25952256,513147,134348 -k1,16867:7899248,35162861:276915 -k1,16867:10938505,35162861:276914 -k1,16867:13226065,35162861:276915 -k1,16867:16389186,35162861:276915 -k1,16867:17282138,35162861:276914 -k1,16867:18843559,35162861:276915 -k1,16867:20993493,35162861:276915 -k1,16867:23167675,35162861:276915 -k1,16867:24072424,35162861:276914 -k1,16867:26051309,35162861:276915 -k1,16867:28456833,35162861:276915 -k1,16867:29349785,35162861:276914 -k1,16867:31015408,35162861:276915 -k1,16867:32583029,35162861:0 -) -(1,16868:6630773,36004349:25952256,505283,126483 -k1,16867:9824108,36004349:180645 -k1,16867:11544849,36004349:180645 -k1,16867:13622107,36004349:180646 -k1,16867:14488914,36004349:180645 -k1,16867:17759582,36004349:180645 -k1,16867:18556265,36004349:180645 -k1,16867:21154533,36004349:180645 -h1,16867:21552992,36004349:0,0,0 -k1,16867:21907308,36004349:180646 -k1,16867:23284640,36004349:180645 -k1,16867:26306926,36004349:180645 -k1,16867:27138999,36004349:180645 -k1,16867:28067411,36004349:180646 -k1,16867:30550336,36004349:180645 -k1,16867:31835263,36004349:180645 -k1,16868:32583029,36004349:0 -) -(1,16868:6630773,36845837:25952256,505283,115847 -(1,16867:6630773,36845837:0,452978,115847 -r1,16872:9099310,36845837:2468537,568825,115847 -k1,16867:6630773,36845837:-2468537 -) -(1,16867:6630773,36845837:2468537,452978,115847 -k1,16867:6630773,36845837:3277 -h1,16867:9096033,36845837:0,411205,112570 -) -k1,16867:9482074,36845837:209094 -(1,16867:9482074,36845837:0,459977,115847 -r1,16872:11598899,36845837:2116825,575824,115847 -k1,16867:9482074,36845837:-2116825 -) -(1,16867:9482074,36845837:2116825,459977,115847 -k1,16867:9482074,36845837:3277 -h1,16867:11595622,36845837:0,411205,112570 -) -k1,16867:11981664,36845837:209095 -(1,16867:11981664,36845837:0,452978,115847 -r1,16872:15153624,36845837:3171960,568825,115847 -k1,16867:11981664,36845837:-3171960 -) -(1,16867:11981664,36845837:3171960,452978,115847 -k1,16867:11981664,36845837:3277 -h1,16867:15150347,36845837:0,411205,112570 -) -k1,16867:15536388,36845837:209094 -k1,16867:16936927,36845837:209094 -k1,16867:18571429,36845837:209094 -k1,16867:19463409,36845837:209095 -k1,16867:21053347,36845837:209094 -k1,16867:23300611,36845837:209094 -k1,16867:24195867,36845837:209094 -(1,16867:24195867,36845837:0,414482,115847 -r1,16872:26664404,36845837:2468537,530329,115847 -k1,16867:24195867,36845837:-2468537 -) -(1,16867:24195867,36845837:2468537,414482,115847 -k1,16867:24195867,36845837:3277 -h1,16867:26661127,36845837:0,411205,112570 -) -k1,16867:27047169,36845837:209095 -k1,16867:29180400,36845837:209094 -k1,16867:32583029,36845837:0 -) -(1,16868:6630773,37687325:25952256,513147,134348 -g1,16867:7481430,37687325 -g1,16867:10509192,37687325 -g1,16867:11905764,37687325 -g1,16867:14631406,37687325 -g1,16867:15778286,37687325 -g1,16867:17679485,37687325 -g1,16867:19595102,37687325 -g1,16867:20453623,37687325 -g1,16867:22042215,37687325 -g1,16867:23735010,37687325 -g1,16867:24620401,37687325 -g1,16867:26245038,37687325 -k1,16868:32583029,37687325:4112388 -g1,16868:32583029,37687325 -) -(1,16869:6630773,39315245:25952256,473825,134348 -(1,16869:6630773,39315245:0,0,0 -g1,16869:6630773,39315245 -) -k1,16869:32583030,39315245:23192536 -g1,16869:32583030,39315245 -) -(1,16871:6630773,40549949:25952256,505283,134348 -k1,16870:8672782,40549949:258774 -k1,16870:9799907,40549949:258773 -k1,16870:12147313,40549949:258774 -k1,16870:12761946,40549949:258773 -k1,16870:14471687,40549949:258774 -k1,16870:15598812,40549949:258773 -k1,16870:17387852,40549949:258774 -k1,16870:18298054,40549949:258774 -k1,16870:19953399,40549949:258773 -k1,16870:21601536,40549949:258774 -k1,16870:24701950,40549949:258773 -k1,16870:25612152,40549949:258774 -k1,16870:29045489,40549949:258773 -k1,16870:30194242,40549949:258774 -k1,16870:32583029,40549949:0 -) -(1,16871:6630773,41391437:25952256,505283,126483 -k1,16870:10483143,41391437:175800 -k1,16870:12204283,41391437:175801 -k1,16870:13987681,41391437:175800 -k1,16870:15295944,41391437:175801 -k1,16870:16946959,41391437:175800 -k1,16870:17893462,41391437:175800 -$1,16870:17893462,41391437 -$1,16870:18396123,41391437 -k1,16870:18571924,41391437:175801 -k1,16870:22266352,41391437:175800 -k1,16870:24327624,41391437:175801 -k1,16870:25034921,41391437:175800 -k1,16870:28709689,41391437:175801 -k1,16870:29656192,41391437:175800 -k1,16870:32583029,41391437:0 -) -(1,16871:6630773,42232925:25952256,505283,134348 -k1,16870:8063882,42232925:241664 -k1,16870:8661406,42232925:241664 -k1,16870:11414410,42232925:241664 -k1,16870:15018071,42232925:241664 -k1,16870:18075817,42232925:241664 -k1,16870:19207460,42232925:241664 -k1,16870:22885831,42232925:241663 -k1,16870:25712890,42232925:241664 -k1,16870:26605982,42232925:241664 -k1,16870:27479413,42232925:241664 -k1,16870:28917764,42232925:241664 -k1,16870:31773659,42232925:241664 -k1,16870:32583029,42232925:0 -) -(1,16871:6630773,43074413:25952256,513147,138281 -k1,16870:7256260,43074413:269627 -k1,16870:8427591,43074413:269556 -k1,16870:9974515,43074413:269627 -k1,16870:11077106,43074413:269628 -k1,16870:12567669,43074413:269627 -k1,16870:13193156,43074413:269627 -k1,16870:15324661,43074413:269627 -k1,16870:16726750,43074413:269627 -k1,16870:17744143,43074413:269627 -k1,16870:21678543,43074413:269627 -k1,16870:22709698,43074413:269627 -$1,16870:22709698,43074413 -$1,16870:23212359,43074413 -k1,16870:23481986,43074413:269627 -k1,16870:24943058,43074413:269627 -$1,16870:24943058,43074413 -$1,16870:25494871,43074413 -k1,16870:25764498,43074413:269627 -k1,16870:29382359,43074413:269627 -k1,16870:31341504,43074413:269627 -k1,16870:32227169,43074413:269627 -k1,16870:32583029,43074413:0 -) -(1,16871:6630773,43915901:25952256,505283,138281 -k1,16870:7753122,43915901:220574 -k1,16870:9424685,43915901:220596 -k1,16870:11300064,43915901:220595 -k1,16870:14695224,43915901:220596 -k1,16870:16446085,43915901:220595 -k1,16870:17318109,43915901:220596 -k1,16870:18286470,43915901:220595 -k1,16870:21092461,43915901:220596 -$1,16870:21092461,43915901 -$1,16870:21595122,43915901 -k1,16870:21989388,43915901:220596 -$1,16870:21989388,43915901 -$1,16870:22541201,43915901 -k1,16870:22761796,43915901:220595 -k1,16870:24173837,43915901:220596 -$1,16870:24173837,43915901 -$1,16870:24599166,43915901 -k1,16870:24993431,43915901:220595 -k1,16870:26909443,43915901:220596 -k1,16870:30304602,43915901:220595 -k1,16870:31516758,43915901:220596 -k1,16870:32583029,43915901:0 -) -(1,16871:6630773,44757389:25952256,505283,126483 -k1,16870:9143588,44757389:291144 -k1,16870:10086159,44757389:291143 -k1,16870:14289147,44757389:291144 -k1,16870:15960478,44757389:291143 -k1,16870:17243182,44757389:291144 -k1,16870:21003802,44757389:291144 -k1,16870:22441170,44757389:291143 -k1,16870:24522102,44757389:291144 -k1,16870:26255692,44757389:291143 -k1,16870:28589593,44757389:291144 -k1,16870:30049243,44757389:291143 -k1,16870:31900144,44757389:291144 -k1,16870:32583029,44757389:0 -) -] -(1,16872:32583029,45706769:0,0,0 -g1,16872:32583029,45706769 -) -) -] -(1,16872:6630773,47279633:25952256,0,0 -h1,16872:6630773,47279633:25952256,0,0 -) -] -(1,16872:4262630,4025873:0,0,0 -[1,16872:-473656,4025873:0,0,0 -(1,16872:-473656,-710413:0,0,0 -(1,16872:-473656,-710413:0,0,0 -g1,16872:-473656,-710413 -) -g1,16872:-473656,-710413 -) -] -) -] -!26242 -}289 -Input:2452:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2453:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2454:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2455:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2456:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2457:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2458:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2459:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2460:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2461:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2462:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1046 -{290 -[1,16884:4262630,47279633:28320399,43253760,0 -(1,16884:4262630,4025873:0,0,0 -[1,16884:-473656,4025873:0,0,0 -(1,16884:-473656,-710413:0,0,0 -(1,16884:-473656,-644877:0,0,0 -k1,16884:-473656,-644877:-65536 +g1,16929:6630773,4812305 +g1,16929:6630773,4812305 +g1,16929:8364200,4812305 +g1,16929:12785258,4812305 +g1,16929:14347636,4812305 +g1,16929:16554232,4812305 +k1,16929:31387652,4812305:14833420 +) +) +] +[1,16929:6630773,45706769:25952256,40108032,0 +(1,16929:6630773,45706769:25952256,40108032,0 +(1,16929:6630773,45706769:0,0,0 +g1,16929:6630773,45706769 +) +[1,16929:6630773,45706769:25952256,40108032,0 +(1,16829:6630773,6254097:25952256,505283,134348 +h1,16828:6630773,6254097:983040,0,0 +k1,16828:8743833,6254097:227589 +k1,16828:10638004,6254097:227590 +k1,16828:12102913,6254097:227589 +k1,16828:15011581,6254097:227590 +k1,16828:16005286,6254097:227589 +k1,16828:17767074,6254097:227590 +k1,16828:18610701,6254097:227589 +(1,16828:18610701,6254097:0,414482,115847 +r1,16929:18968967,6254097:358266,530329,115847 +k1,16828:18610701,6254097:-358266 +) +(1,16828:18610701,6254097:358266,414482,115847 +k1,16828:18610701,6254097:3277 +h1,16828:18965690,6254097:0,411205,112570 +) +k1,16828:19196557,6254097:227590 +k1,16828:20708652,6254097:227589 +k1,16828:21751510,6254097:227590 +k1,16828:23045370,6254097:227589 +k1,16828:24748175,6254097:227590 +k1,16828:25331624,6254097:227589 +k1,16828:28530616,6254097:227590 +k1,16828:29962101,6254097:227589 +k1,16828:30805729,6254097:227590 +(1,16828:30805729,6254097:0,414482,115847 +r1,16929:31163995,6254097:358266,530329,115847 +k1,16828:30805729,6254097:-358266 +) +(1,16828:30805729,6254097:358266,414482,115847 +k1,16828:30805729,6254097:3277 +h1,16828:31160718,6254097:0,411205,112570 +) +k1,16828:31391584,6254097:227589 +k1,16828:32583029,6254097:0 +) +(1,16829:6630773,7119177:25952256,473825,7863 +g1,16828:8043729,7119177 +k1,16829:32583029,7119177:22665626 +g1,16829:32583029,7119177 +) +v1,16831:6630773,7804032:0,393216,0 +(1,16846:6630773,14179274:25952256,6768458,196608 +g1,16846:6630773,14179274 +g1,16846:6630773,14179274 +g1,16846:6434165,14179274 +(1,16846:6434165,14179274:0,6768458,196608 +r1,16929:32779637,14179274:26345472,6965066,196608 +k1,16846:6434165,14179274:-26345472 +) +(1,16846:6434165,14179274:26345472,6768458,196608 +[1,16846:6630773,14179274:25952256,6571850,0 +(1,16833:6630773,8038469:25952256,431045,112852 +(1,16832:6630773,8038469:0,0,0 +g1,16832:6630773,8038469 +g1,16832:6630773,8038469 +g1,16832:6303093,8038469 +(1,16832:6303093,8038469:0,0,0 +) +g1,16832:6630773,8038469 +) +k1,16833:6630773,8038469:0 +g1,16833:10946174,8038469 +g1,16833:11610082,8038469 +g1,16833:14929621,8038469 +g1,16833:15593529,8038469 +g1,16833:16257437,8038469 +h1,16833:19576976,8038469:0,0,0 +k1,16833:32583029,8038469:13006053 +g1,16833:32583029,8038469 +) +(1,16837:6630773,9378684:25952256,431045,112852 +g1,16837:7626635,9378684 +g1,16837:10282267,9378684 +g1,16837:11942037,9378684 +g1,16837:13269853,9378684 +g1,16837:13933761,9378684 +k1,16837:32583029,9378684:14333867 +g1,16837:32583029,9378684 +) +(1,16845:6630773,10063539:25952256,424439,9908 +(1,16837:6630773,10063539:0,0,0 +g1,16837:6630773,10063539 +g1,16837:6630773,10063539 +g1,16837:6303093,10063539 +(1,16837:6303093,10063539:0,0,0 +) +g1,16837:6630773,10063539 +) +g1,16845:7626635,10063539 +g1,16845:8290543,10063539 +g1,16845:8954451,10063539 +g1,16845:11610083,10063539 +g1,16845:12273991,10063539 +g1,16845:12937899,10063539 +h1,16845:13269853,10063539:0,0,0 +k1,16845:32583029,10063539:19313176 +g1,16845:32583029,10063539 +) +(1,16845:6630773,10748394:25952256,424439,6605 +h1,16845:6630773,10748394:0,0,0 +g1,16845:7626635,10748394 +g1,16845:7958589,10748394 +g1,16845:8290543,10748394 +g1,16845:8622497,10748394 +g1,16845:8954451,10748394 +g1,16845:10282267,10748394 +g1,16845:12937899,10748394 +h1,16845:15261577,10748394:0,0,0 +k1,16845:32583029,10748394:17321452 +g1,16845:32583029,10748394 +) +(1,16845:6630773,11433249:25952256,424439,6605 +h1,16845:6630773,11433249:0,0,0 +g1,16845:7626635,11433249 +g1,16845:7958589,11433249 +g1,16845:8290543,11433249 +g1,16845:10282267,11433249 +g1,16845:12273991,11433249 +g1,16845:12605945,11433249 +g1,16845:12937899,11433249 +k1,16845:12937899,11433249:0 +h1,16845:14597669,11433249:0,0,0 +k1,16845:32583029,11433249:17985360 +g1,16845:32583029,11433249 +) +(1,16845:6630773,12118104:25952256,424439,6605 +h1,16845:6630773,12118104:0,0,0 +g1,16845:7626635,12118104 +g1,16845:8290543,12118104 +g1,16845:8622497,12118104 +g1,16845:8954451,12118104 +g1,16845:9286405,12118104 +g1,16845:9618359,12118104 +g1,16845:10282267,12118104 +g1,16845:10946175,12118104 +g1,16845:11278129,12118104 +g1,16845:11610083,12118104 +g1,16845:11942037,12118104 +g1,16845:12273991,12118104 +g1,16845:12605945,12118104 +g1,16845:12937899,12118104 +h1,16845:13269853,12118104:0,0,0 +k1,16845:32583029,12118104:19313176 +g1,16845:32583029,12118104 +) +(1,16845:6630773,12802959:25952256,424439,6605 +h1,16845:6630773,12802959:0,0,0 +g1,16845:7626635,12802959 +g1,16845:8290543,12802959 +g1,16845:8622497,12802959 +g1,16845:8954451,12802959 +g1,16845:9286405,12802959 +g1,16845:9618359,12802959 +g1,16845:10282267,12802959 +g1,16845:10946175,12802959 +g1,16845:11278129,12802959 +g1,16845:11610083,12802959 +g1,16845:11942037,12802959 +g1,16845:12273991,12802959 +g1,16845:12605945,12802959 +g1,16845:12937899,12802959 +h1,16845:13269853,12802959:0,0,0 +k1,16845:32583029,12802959:19313176 +g1,16845:32583029,12802959 +) +(1,16845:6630773,13487814:25952256,424439,9908 +h1,16845:6630773,13487814:0,0,0 +g1,16845:7626635,13487814 +g1,16845:8290543,13487814 +g1,16845:8622497,13487814 +g1,16845:8954451,13487814 +g1,16845:9286405,13487814 +g1,16845:9618359,13487814 +g1,16845:10282267,13487814 +g1,16845:10946175,13487814 +g1,16845:11278129,13487814 +g1,16845:11610083,13487814 +g1,16845:11942037,13487814 +g1,16845:12273991,13487814 +g1,16845:12605945,13487814 +g1,16845:12937899,13487814 +h1,16845:13269853,13487814:0,0,0 +k1,16845:32583029,13487814:19313176 +g1,16845:32583029,13487814 +) +(1,16845:6630773,14172669:25952256,424439,6605 +h1,16845:6630773,14172669:0,0,0 +g1,16845:7626635,14172669 +g1,16845:8290543,14172669 +g1,16845:8622497,14172669 +g1,16845:8954451,14172669 +g1,16845:9286405,14172669 +g1,16845:9618359,14172669 +g1,16845:10282267,14172669 +g1,16845:10946175,14172669 +g1,16845:11278129,14172669 +g1,16845:11610083,14172669 +g1,16845:11942037,14172669 +g1,16845:12273991,14172669 +g1,16845:12605945,14172669 +g1,16845:12937899,14172669 +h1,16845:13269853,14172669:0,0,0 +k1,16845:32583029,14172669:19313176 +g1,16845:32583029,14172669 +) +] +) +g1,16846:32583029,14179274 +g1,16846:6630773,14179274 +g1,16846:6630773,14179274 +g1,16846:32583029,14179274 +g1,16846:32583029,14179274 +) +h1,16846:6630773,14375882:0,0,0 +v1,16850:6630773,15060737:0,393216,0 +(1,16865:6630773,21435979:25952256,6768458,196608 +g1,16865:6630773,21435979 +g1,16865:6630773,21435979 +g1,16865:6434165,21435979 +(1,16865:6434165,21435979:0,6768458,196608 +r1,16929:32779637,21435979:26345472,6965066,196608 +k1,16865:6434165,21435979:-26345472 +) +(1,16865:6434165,21435979:26345472,6768458,196608 +[1,16865:6630773,21435979:25952256,6571850,0 +(1,16852:6630773,15295174:25952256,431045,112852 +(1,16851:6630773,15295174:0,0,0 +g1,16851:6630773,15295174 +g1,16851:6630773,15295174 +g1,16851:6303093,15295174 +(1,16851:6303093,15295174:0,0,0 +) +g1,16851:6630773,15295174 +) +k1,16852:6630773,15295174:0 +g1,16852:10946174,15295174 +g1,16852:11610082,15295174 +g1,16852:15261575,15295174 +g1,16852:15925483,15295174 +g1,16852:16589391,15295174 +h1,16852:19576976,15295174:0,0,0 +k1,16852:32583029,15295174:13006053 +g1,16852:32583029,15295174 +) +(1,16856:6630773,16635389:25952256,431045,112852 +g1,16856:7626635,16635389 +g1,16856:10282267,16635389 +g1,16856:11942037,16635389 +g1,16856:13269853,16635389 +g1,16856:13933761,16635389 +k1,16856:32583029,16635389:14333867 +g1,16856:32583029,16635389 +) +(1,16864:6630773,17320244:25952256,424439,9908 +(1,16856:6630773,17320244:0,0,0 +g1,16856:6630773,17320244 +g1,16856:6630773,17320244 +g1,16856:6303093,17320244 +(1,16856:6303093,17320244:0,0,0 +) +g1,16856:6630773,17320244 +) +g1,16864:7626635,17320244 +g1,16864:8290543,17320244 +g1,16864:8954451,17320244 +g1,16864:11610083,17320244 +g1,16864:12273991,17320244 +g1,16864:12937899,17320244 +h1,16864:13269853,17320244:0,0,0 +k1,16864:32583029,17320244:19313176 +g1,16864:32583029,17320244 +) +(1,16864:6630773,18005099:25952256,424439,6605 +h1,16864:6630773,18005099:0,0,0 +g1,16864:7626635,18005099 +g1,16864:7958589,18005099 +g1,16864:8290543,18005099 +g1,16864:8622497,18005099 +g1,16864:8954451,18005099 +g1,16864:10282267,18005099 +g1,16864:12937899,18005099 +h1,16864:15261577,18005099:0,0,0 +k1,16864:32583029,18005099:17321452 +g1,16864:32583029,18005099 +) +(1,16864:6630773,18689954:25952256,424439,6605 +h1,16864:6630773,18689954:0,0,0 +g1,16864:7626635,18689954 +g1,16864:7958589,18689954 +g1,16864:8290543,18689954 +g1,16864:10282267,18689954 +g1,16864:12273991,18689954 +g1,16864:12605945,18689954 +g1,16864:12937899,18689954 +k1,16864:12937899,18689954:0 +h1,16864:14597669,18689954:0,0,0 +k1,16864:32583029,18689954:17985360 +g1,16864:32583029,18689954 +) +(1,16864:6630773,19374809:25952256,424439,6605 +h1,16864:6630773,19374809:0,0,0 +g1,16864:7626635,19374809 +g1,16864:8290543,19374809 +g1,16864:8622497,19374809 +g1,16864:8954451,19374809 +g1,16864:9286405,19374809 +g1,16864:9618359,19374809 +g1,16864:10282267,19374809 +g1,16864:10946175,19374809 +g1,16864:11278129,19374809 +g1,16864:11610083,19374809 +g1,16864:11942037,19374809 +g1,16864:12273991,19374809 +g1,16864:12605945,19374809 +g1,16864:12937899,19374809 +h1,16864:13269853,19374809:0,0,0 +k1,16864:32583029,19374809:19313176 +g1,16864:32583029,19374809 +) +(1,16864:6630773,20059664:25952256,424439,6605 +h1,16864:6630773,20059664:0,0,0 +g1,16864:7626635,20059664 +g1,16864:8290543,20059664 +g1,16864:8622497,20059664 +g1,16864:8954451,20059664 +g1,16864:9286405,20059664 +g1,16864:9618359,20059664 +g1,16864:10282267,20059664 +g1,16864:10946175,20059664 +g1,16864:11278129,20059664 +g1,16864:11610083,20059664 +g1,16864:11942037,20059664 +g1,16864:12273991,20059664 +g1,16864:12605945,20059664 +g1,16864:12937899,20059664 +h1,16864:13269853,20059664:0,0,0 +k1,16864:32583029,20059664:19313176 +g1,16864:32583029,20059664 +) +(1,16864:6630773,20744519:25952256,424439,9908 +h1,16864:6630773,20744519:0,0,0 +g1,16864:7626635,20744519 +g1,16864:8290543,20744519 +g1,16864:8622497,20744519 +g1,16864:8954451,20744519 +g1,16864:9286405,20744519 +g1,16864:9618359,20744519 +g1,16864:10282267,20744519 +g1,16864:10946175,20744519 +g1,16864:11278129,20744519 +g1,16864:11610083,20744519 +g1,16864:11942037,20744519 +g1,16864:12273991,20744519 +g1,16864:12605945,20744519 +g1,16864:12937899,20744519 +h1,16864:13269853,20744519:0,0,0 +k1,16864:32583029,20744519:19313176 +g1,16864:32583029,20744519 +) +(1,16864:6630773,21429374:25952256,424439,6605 +h1,16864:6630773,21429374:0,0,0 +g1,16864:7626635,21429374 +g1,16864:8290543,21429374 +g1,16864:8622497,21429374 +g1,16864:8954451,21429374 +g1,16864:9286405,21429374 +g1,16864:9618359,21429374 +g1,16864:10282267,21429374 +g1,16864:10946175,21429374 +g1,16864:11278129,21429374 +g1,16864:11610083,21429374 +g1,16864:11942037,21429374 +g1,16864:12273991,21429374 +g1,16864:12605945,21429374 +g1,16864:12937899,21429374 +h1,16864:13269853,21429374:0,0,0 +k1,16864:32583029,21429374:19313176 +g1,16864:32583029,21429374 +) +] +) +g1,16865:32583029,21435979 +g1,16865:6630773,21435979 +g1,16865:6630773,21435979 +g1,16865:32583029,21435979 +g1,16865:32583029,21435979 +) +h1,16865:6630773,21632587:0,0,0 +(1,16869:6630773,22497667:25952256,513147,134348 +h1,16868:6630773,22497667:983040,0,0 +k1,16868:9287760,22497667:212494 +k1,16868:10368605,22497667:212493 +k1,16868:12344673,22497667:212494 +k1,16868:13576251,22497667:212493 +k1,16868:16270593,22497667:212494 +k1,16868:17679118,22497667:212493 +k1,16868:20917409,22497667:212494 +k1,16868:23970888,22497667:212493 +k1,16868:24944910,22497667:212494 +k1,16868:27303706,22497667:212493 +(1,16868:27303706,22497667:0,452978,122846 +r1,16929:31179090,22497667:3875384,575824,122846 +k1,16868:27303706,22497667:-3875384 +) +(1,16868:27303706,22497667:3875384,452978,122846 +k1,16868:27303706,22497667:3277 +h1,16868:31175813,22497667:0,411205,112570 +) +k1,16868:31391584,22497667:212494 +k1,16869:32583029,22497667:0 +) +(1,16869:6630773,23362747:25952256,513147,126483 +(1,16868:6630773,23362747:0,452978,122846 +r1,16929:10506157,23362747:3875384,575824,122846 +k1,16868:6630773,23362747:-3875384 +) +(1,16868:6630773,23362747:3875384,452978,122846 +k1,16868:6630773,23362747:3277 +h1,16868:10502880,23362747:0,411205,112570 +) +k1,16868:10947013,23362747:267186 +k1,16868:13088529,23362747:267186 +k1,16868:16381513,23362747:267187 +k1,16868:18024300,23362747:267186 +k1,16868:20302131,23362747:267186 +k1,16868:20925177,23362747:267186 +k1,16868:23003778,23362747:267186 +k1,16868:24555470,23362747:267186 +k1,16868:26951922,23362747:267187 +k1,16868:29921157,23362747:267186 +k1,16868:31563944,23362747:267186 +k1,16868:32583029,23362747:0 +) +(1,16869:6630773,24227827:25952256,513147,115847 +g1,16868:9543193,24227827 +g1,16868:11310043,24227827 +(1,16868:11310043,24227827:0,414482,115847 +r1,16929:11668309,24227827:358266,530329,115847 +k1,16868:11310043,24227827:-358266 +) +(1,16868:11310043,24227827:358266,414482,115847 +k1,16868:11310043,24227827:3277 +h1,16868:11665032,24227827:0,411205,112570 +) +g1,16868:12041208,24227827 +g1,16868:13312606,24227827 +g1,16868:15706636,24227827 +g1,16868:17440063,24227827 +g1,16868:19493961,24227827 +g1,16868:20502560,24227827 +g1,16868:22210428,24227827 +g1,16868:24390810,24227827 +g1,16868:25241467,24227827 +g1,16868:26974894,24227827 +g1,16868:27790161,24227827 +(1,16868:27790161,24227827:0,414482,115847 +r1,16929:28148427,24227827:358266,530329,115847 +k1,16868:27790161,24227827:-358266 +) +(1,16868:27790161,24227827:358266,414482,115847 +k1,16868:27790161,24227827:3277 +h1,16868:28145150,24227827:0,411205,112570 +) +k1,16869:32583029,24227827:4260932 +g1,16869:32583029,24227827 +) +(1,16871:6630773,25092907:25952256,513147,134348 +h1,16870:6630773,25092907:983040,0,0 +g1,16870:8300630,25092907 +g1,16870:9998667,25092907 +g1,16870:11435216,25092907 +g1,16870:13829246,25092907 +g1,16870:15562673,25092907 +g1,16870:17329523,25092907 +(1,16870:17329523,25092907:0,414482,115847 +r1,16929:17687789,25092907:358266,530329,115847 +k1,16870:17329523,25092907:-358266 +) +(1,16870:17329523,25092907:358266,414482,115847 +k1,16870:17329523,25092907:3277 +h1,16870:17684512,25092907:0,411205,112570 +) +g1,16870:17887018,25092907 +g1,16870:19370753,25092907 +g1,16870:21045197,25092907 +g1,16870:21600286,25092907 +g1,16870:23780668,25092907 +g1,16870:24595935,25092907 +(1,16870:24595935,25092907:0,414482,115847 +r1,16929:24954201,25092907:358266,530329,115847 +k1,16870:24595935,25092907:-358266 +) +(1,16870:24595935,25092907:358266,414482,115847 +k1,16870:24595935,25092907:3277 +h1,16870:24950924,25092907:0,411205,112570 +) +k1,16871:32583029,25092907:7455158 +g1,16871:32583029,25092907 +) +v1,16873:6630773,25777762:0,393216,0 +(1,16888:6630773,32151353:25952256,6766807,196608 +g1,16888:6630773,32151353 +g1,16888:6630773,32151353 +g1,16888:6434165,32151353 +(1,16888:6434165,32151353:0,6766807,196608 +r1,16929:32779637,32151353:26345472,6963415,196608 +k1,16888:6434165,32151353:-26345472 +) +(1,16888:6434165,32151353:26345472,6766807,196608 +[1,16888:6630773,32151353:25952256,6570199,0 +(1,16875:6630773,26012199:25952256,431045,112852 +(1,16874:6630773,26012199:0,0,0 +g1,16874:6630773,26012199 +g1,16874:6630773,26012199 +g1,16874:6303093,26012199 +(1,16874:6303093,26012199:0,0,0 +) +g1,16874:6630773,26012199 +) +k1,16875:6630773,26012199:0 +g1,16875:10614220,26012199 +g1,16875:11278128,26012199 +g1,16875:14597667,26012199 +g1,16875:15261575,26012199 +g1,16875:15925483,26012199 +h1,16875:19245022,26012199:0,0,0 +k1,16875:32583029,26012199:13338007 +g1,16875:32583029,26012199 +) +(1,16879:6630773,27352414:25952256,431045,112852 +g1,16879:7626635,27352414 +g1,16879:10282267,27352414 +g1,16879:11942037,27352414 +g1,16879:13269853,27352414 +g1,16879:13933761,27352414 +k1,16879:32583029,27352414:14333867 +g1,16879:32583029,27352414 +) +(1,16887:6630773,28037269:25952256,424439,6605 +(1,16879:6630773,28037269:0,0,0 +g1,16879:6630773,28037269 +g1,16879:6630773,28037269 +g1,16879:6303093,28037269 +(1,16879:6303093,28037269:0,0,0 +) +g1,16879:6630773,28037269 +) +g1,16887:7626635,28037269 +g1,16887:8290543,28037269 +g1,16887:8954451,28037269 +g1,16887:11610083,28037269 +g1,16887:12273991,28037269 +g1,16887:12937899,28037269 +h1,16887:13269853,28037269:0,0,0 +k1,16887:32583029,28037269:19313176 +g1,16887:32583029,28037269 +) +(1,16887:6630773,28722124:25952256,424439,6605 +h1,16887:6630773,28722124:0,0,0 +g1,16887:7626635,28722124 +g1,16887:7958589,28722124 +g1,16887:8290543,28722124 +g1,16887:8622497,28722124 +g1,16887:8954451,28722124 +g1,16887:10282267,28722124 +h1,16887:12605945,28722124:0,0,0 +k1,16887:32583029,28722124:19977084 +g1,16887:32583029,28722124 +) +(1,16887:6630773,29406979:25952256,424439,6605 +h1,16887:6630773,29406979:0,0,0 +g1,16887:7626635,29406979 +g1,16887:7958589,29406979 +g1,16887:8290543,29406979 +g1,16887:10282267,29406979 +k1,16887:10282267,29406979:0 +h1,16887:11942037,29406979:0,0,0 +k1,16887:32583029,29406979:20640992 +g1,16887:32583029,29406979 +) +(1,16887:6630773,30091834:25952256,407923,4954 +h1,16887:6630773,30091834:0,0,0 +g1,16887:7626635,30091834 +g1,16887:8290543,30091834 +g1,16887:8622497,30091834 +g1,16887:8954451,30091834 +g1,16887:9286405,30091834 +g1,16887:9618359,30091834 +g1,16887:10282267,30091834 +h1,16887:10614221,30091834:0,0,0 +k1,16887:32583029,30091834:21968808 +g1,16887:32583029,30091834 +) +(1,16887:6630773,30776689:25952256,407923,4954 +h1,16887:6630773,30776689:0,0,0 +g1,16887:7626635,30776689 +g1,16887:8290543,30776689 +g1,16887:8622497,30776689 +g1,16887:8954451,30776689 +g1,16887:9286405,30776689 +g1,16887:9618359,30776689 +g1,16887:10282267,30776689 +h1,16887:10614221,30776689:0,0,0 +k1,16887:32583029,30776689:21968808 +g1,16887:32583029,30776689 +) +(1,16887:6630773,31461544:25952256,407923,9908 +h1,16887:6630773,31461544:0,0,0 +g1,16887:7626635,31461544 +g1,16887:8290543,31461544 +g1,16887:8622497,31461544 +g1,16887:8954451,31461544 +g1,16887:9286405,31461544 +g1,16887:9618359,31461544 +g1,16887:10282267,31461544 +h1,16887:10614221,31461544:0,0,0 +k1,16887:32583029,31461544:21968808 +g1,16887:32583029,31461544 +) +(1,16887:6630773,32146399:25952256,398014,4954 +h1,16887:6630773,32146399:0,0,0 +g1,16887:7626635,32146399 +g1,16887:8290543,32146399 +g1,16887:8622497,32146399 +g1,16887:8954451,32146399 +g1,16887:9286405,32146399 +g1,16887:9618359,32146399 +g1,16887:10282267,32146399 +h1,16887:10614221,32146399:0,0,0 +k1,16887:32583029,32146399:21968808 +g1,16887:32583029,32146399 +) +] +) +g1,16888:32583029,32151353 +g1,16888:6630773,32151353 +g1,16888:6630773,32151353 +g1,16888:32583029,32151353 +g1,16888:32583029,32151353 +) +h1,16888:6630773,32347961:0,0,0 +v1,16892:6630773,33032816:0,393216,0 +(1,16907:6630773,39408058:25952256,6768458,196608 +g1,16907:6630773,39408058 +g1,16907:6630773,39408058 +g1,16907:6434165,39408058 +(1,16907:6434165,39408058:0,6768458,196608 +r1,16929:32779637,39408058:26345472,6965066,196608 +k1,16907:6434165,39408058:-26345472 +) +(1,16907:6434165,39408058:26345472,6768458,196608 +[1,16907:6630773,39408058:25952256,6571850,0 +(1,16894:6630773,33267253:25952256,431045,112852 +(1,16893:6630773,33267253:0,0,0 +g1,16893:6630773,33267253 +g1,16893:6630773,33267253 +g1,16893:6303093,33267253 +(1,16893:6303093,33267253:0,0,0 +) +g1,16893:6630773,33267253 +) +k1,16894:6630773,33267253:0 +g1,16894:10614220,33267253 +g1,16894:11278128,33267253 +g1,16894:14929621,33267253 +g1,16894:15593529,33267253 +g1,16894:16257437,33267253 +h1,16894:19245022,33267253:0,0,0 +k1,16894:32583029,33267253:13338007 +g1,16894:32583029,33267253 +) +(1,16898:6630773,34607468:25952256,431045,112852 +g1,16898:7626635,34607468 +g1,16898:10282267,34607468 +g1,16898:11942037,34607468 +g1,16898:13269853,34607468 +g1,16898:13933761,34607468 +k1,16898:32583029,34607468:14333867 +g1,16898:32583029,34607468 +) +(1,16906:6630773,35292323:25952256,424439,6605 +(1,16898:6630773,35292323:0,0,0 +g1,16898:6630773,35292323 +g1,16898:6630773,35292323 +g1,16898:6303093,35292323 +(1,16898:6303093,35292323:0,0,0 +) +g1,16898:6630773,35292323 +) +g1,16906:7626635,35292323 +g1,16906:8290543,35292323 +g1,16906:8954451,35292323 +g1,16906:11610083,35292323 +g1,16906:12273991,35292323 +g1,16906:12937899,35292323 +h1,16906:13269853,35292323:0,0,0 +k1,16906:32583029,35292323:19313176 +g1,16906:32583029,35292323 +) +(1,16906:6630773,35977178:25952256,424439,6605 +h1,16906:6630773,35977178:0,0,0 +g1,16906:7626635,35977178 +g1,16906:7958589,35977178 +g1,16906:8290543,35977178 +g1,16906:8622497,35977178 +g1,16906:8954451,35977178 +g1,16906:10282267,35977178 +h1,16906:12605945,35977178:0,0,0 +k1,16906:32583029,35977178:19977084 +g1,16906:32583029,35977178 +) +(1,16906:6630773,36662033:25952256,424439,6605 +h1,16906:6630773,36662033:0,0,0 +g1,16906:7626635,36662033 +g1,16906:7958589,36662033 +g1,16906:8290543,36662033 +g1,16906:10282267,36662033 +k1,16906:10282267,36662033:0 +h1,16906:11942037,36662033:0,0,0 +k1,16906:32583029,36662033:20640992 +g1,16906:32583029,36662033 +) +(1,16906:6630773,37346888:25952256,424439,6605 +h1,16906:6630773,37346888:0,0,0 +g1,16906:7626635,37346888 +g1,16906:8290543,37346888 +g1,16906:8622497,37346888 +g1,16906:8954451,37346888 +g1,16906:9286405,37346888 +g1,16906:9618359,37346888 +g1,16906:10282267,37346888 +h1,16906:10614221,37346888:0,0,0 +k1,16906:32583029,37346888:21968808 +g1,16906:32583029,37346888 +) +(1,16906:6630773,38031743:25952256,424439,6605 +h1,16906:6630773,38031743:0,0,0 +g1,16906:7626635,38031743 +g1,16906:8290543,38031743 +g1,16906:8622497,38031743 +g1,16906:8954451,38031743 +g1,16906:9286405,38031743 +g1,16906:9618359,38031743 +g1,16906:10282267,38031743 +h1,16906:10614221,38031743:0,0,0 +k1,16906:32583029,38031743:21968808 +g1,16906:32583029,38031743 +) +(1,16906:6630773,38716598:25952256,424439,9908 +h1,16906:6630773,38716598:0,0,0 +g1,16906:7626635,38716598 +g1,16906:8290543,38716598 +g1,16906:8622497,38716598 +g1,16906:8954451,38716598 +g1,16906:9286405,38716598 +g1,16906:9618359,38716598 +g1,16906:10282267,38716598 +h1,16906:10614221,38716598:0,0,0 +k1,16906:32583029,38716598:21968808 +g1,16906:32583029,38716598 +) +(1,16906:6630773,39401453:25952256,424439,6605 +h1,16906:6630773,39401453:0,0,0 +g1,16906:7626635,39401453 +g1,16906:8290543,39401453 +g1,16906:8622497,39401453 +g1,16906:8954451,39401453 +g1,16906:9286405,39401453 +g1,16906:9618359,39401453 +g1,16906:10282267,39401453 +h1,16906:10614221,39401453:0,0,0 +k1,16906:32583029,39401453:21968808 +g1,16906:32583029,39401453 +) +] +) +g1,16907:32583029,39408058 +g1,16907:6630773,39408058 +g1,16907:6630773,39408058 +g1,16907:32583029,39408058 +g1,16907:32583029,39408058 +) +h1,16907:6630773,39604666:0,0,0 +(1,16911:6630773,40469746:25952256,513147,134348 +h1,16910:6630773,40469746:983040,0,0 +g1,16910:8300630,40469746 +g1,16910:11178971,40469746 +g1,16910:13573001,40469746 +g1,16910:15306428,40469746 +g1,16910:17073278,40469746 +(1,16910:17073278,40469746:0,414482,115847 +r1,16929:17431544,40469746:358266,530329,115847 +k1,16910:17073278,40469746:-358266 +) +(1,16910:17073278,40469746:358266,414482,115847 +k1,16910:17073278,40469746:3277 +h1,16910:17428267,40469746:0,411205,112570 +) +g1,16910:17630773,40469746 +g1,16910:19114508,40469746 +g1,16910:20129005,40469746 +g1,16910:21394505,40469746 +g1,16910:23068949,40469746 +g1,16910:23624038,40469746 +g1,16910:25804420,40469746 +g1,16910:26619687,40469746 +(1,16910:26619687,40469746:0,414482,115847 +r1,16929:26977953,40469746:358266,530329,115847 +k1,16910:26619687,40469746:-358266 +) +(1,16910:26619687,40469746:358266,414482,115847 +k1,16910:26619687,40469746:3277 +h1,16910:26974676,40469746:0,411205,112570 +) +k1,16911:32583029,40469746:5431406 +g1,16911:32583029,40469746 +) +v1,16913:6630773,41154601:0,393216,0 +(1,16925:6630773,45478581:25952256,4717196,196608 +g1,16925:6630773,45478581 +g1,16925:6630773,45478581 +g1,16925:6434165,45478581 +(1,16925:6434165,45478581:0,4717196,196608 +r1,16929:32779637,45478581:26345472,4913804,196608 +k1,16925:6434165,45478581:-26345472 +) +(1,16925:6434165,45478581:26345472,4717196,196608 +[1,16925:6630773,45478581:25952256,4520588,0 +(1,16915:6630773,41389038:25952256,431045,112852 +(1,16914:6630773,41389038:0,0,0 +g1,16914:6630773,41389038 +g1,16914:6630773,41389038 +g1,16914:6303093,41389038 +(1,16914:6303093,41389038:0,0,0 +) +g1,16914:6630773,41389038 +) +k1,16915:6630773,41389038:0 +g1,16915:10614220,41389038 +g1,16915:11278128,41389038 +g1,16915:14597667,41389038 +g1,16915:15261575,41389038 +g1,16915:15925483,41389038 +h1,16915:19245022,41389038:0,0,0 +k1,16915:32583029,41389038:13338007 +g1,16915:32583029,41389038 +) +(1,16919:6630773,42729253:25952256,431045,112852 +g1,16919:7626635,42729253 +g1,16919:10282267,42729253 +g1,16919:11942037,42729253 +g1,16919:13269853,42729253 +g1,16919:13933761,42729253 +k1,16919:32583029,42729253:14333867 +g1,16919:32583029,42729253 +) +(1,16924:6630773,43414108:25952256,424439,6605 +(1,16919:6630773,43414108:0,0,0 +g1,16919:6630773,43414108 +g1,16919:6630773,43414108 +g1,16919:6303093,43414108 +(1,16919:6303093,43414108:0,0,0 +) +g1,16919:6630773,43414108 +) +g1,16924:7626635,43414108 +g1,16924:8290543,43414108 +g1,16924:8954451,43414108 +g1,16924:11610083,43414108 +g1,16924:12273991,43414108 +g1,16924:12937899,43414108 +h1,16924:13269853,43414108:0,0,0 +k1,16924:32583029,43414108:19313176 +g1,16924:32583029,43414108 +) +(1,16924:6630773,44098963:25952256,424439,6605 +h1,16924:6630773,44098963:0,0,0 +g1,16924:7626635,44098963 +g1,16924:7958589,44098963 +g1,16924:8290543,44098963 +g1,16924:8622497,44098963 +g1,16924:8954451,44098963 +g1,16924:10282267,44098963 +h1,16924:12605945,44098963:0,0,0 +k1,16924:32583029,44098963:19977084 +g1,16924:32583029,44098963 +) +(1,16924:6630773,44783818:25952256,424439,6605 +h1,16924:6630773,44783818:0,0,0 +g1,16924:7626635,44783818 +g1,16924:7958589,44783818 +g1,16924:8290543,44783818 +g1,16924:10282267,44783818 +k1,16924:10282267,44783818:0 +h1,16924:11942037,44783818:0,0,0 +k1,16924:32583029,44783818:20640992 +g1,16924:32583029,44783818 +) +(1,16924:6630773,45468673:25952256,407923,9908 +h1,16924:6630773,45468673:0,0,0 +g1,16924:7626635,45468673 +g1,16924:8290543,45468673 +g1,16924:8622497,45468673 +g1,16924:8954451,45468673 +g1,16924:9286405,45468673 +g1,16924:9618359,45468673 +g1,16924:10282267,45468673 +h1,16924:10614221,45468673:0,0,0 +k1,16924:32583029,45468673:21968808 +g1,16924:32583029,45468673 +) +] +) +g1,16925:32583029,45478581 +g1,16925:6630773,45478581 +g1,16925:6630773,45478581 +g1,16925:32583029,45478581 +g1,16925:32583029,45478581 +) +h1,16925:6630773,45675189:0,0,0 +] +(1,16929:32583029,45706769:0,0,0 +g1,16929:32583029,45706769 +) +) +] +(1,16929:6630773,47279633:25952256,0,0 +h1,16929:6630773,47279633:25952256,0,0 +) +] +(1,16929:4262630,4025873:0,0,0 +[1,16929:-473656,4025873:0,0,0 +(1,16929:-473656,-710413:0,0,0 +(1,16929:-473656,-710413:0,0,0 +g1,16929:-473656,-710413 +) +g1,16929:-473656,-710413 +) +] +) +] +!29175 +}270 +Input:2482:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2483:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2484:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!294 +{271 +[1,16983:4262630,47279633:28320399,43253760,0 +(1,16983:4262630,4025873:0,0,0 +[1,16983:-473656,4025873:0,0,0 +(1,16983:-473656,-710413:0,0,0 +(1,16983:-473656,-644877:0,0,0 +k1,16983:-473656,-644877:-65536 ) -(1,16884:-473656,4736287:0,0,0 -k1,16884:-473656,4736287:5209943 +(1,16983:-473656,4736287:0,0,0 +k1,16983:-473656,4736287:5209943 ) -g1,16884:-473656,-710413 +g1,16983:-473656,-710413 ) ] ) -[1,16884:6630773,47279633:25952256,43253760,0 -[1,16884:6630773,4812305:25952256,786432,0 -(1,16884:6630773,4812305:25952256,513147,134348 -(1,16884:6630773,4812305:25952256,513147,134348 -g1,16884:3078558,4812305 -[1,16884:3078558,4812305:0,0,0 -(1,16884:3078558,2439708:0,1703936,0 -k1,16884:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,16884:2537886,2439708:1179648,16384,0 +[1,16983:6630773,47279633:25952256,43253760,0 +[1,16983:6630773,4812305:25952256,786432,0 +(1,16983:6630773,4812305:25952256,505283,134348 +(1,16983:6630773,4812305:25952256,505283,134348 +g1,16983:3078558,4812305 +[1,16983:3078558,4812305:0,0,0 +(1,16983:3078558,2439708:0,1703936,0 +k1,16983:1358238,2439708:-1720320 +(1,15456:1358238,2439708:1720320,1703936,0 +(1,15456:1358238,2439708:1179648,16384,0 +r1,16983:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,16884:3078558,1915420:16384,1179648,0 +g1,15456:3062174,2439708 +(1,15456:3062174,2439708:16384,1703936,0 +[1,15456:3062174,2439708:25952256,1703936,0 +(1,15456:3062174,1915420:25952256,1179648,0 +(1,15456:3062174,1915420:16384,1179648,0 +r1,16983:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,15456:29014430,1915420:25935872 +g1,15456:29014430,1915420 ) ] ) ) ) ] -[1,16884:3078558,4812305:0,0,0 -(1,16884:3078558,2439708:0,1703936,0 -g1,16884:29030814,2439708 -g1,16884:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,16884:36151628,1915420:16384,1179648,0 +[1,16983:3078558,4812305:0,0,0 +(1,16983:3078558,2439708:0,1703936,0 +g1,16983:29030814,2439708 +g1,16983:36135244,2439708 +(1,15456:36135244,2439708:1720320,1703936,0 +(1,15456:36135244,2439708:16384,1703936,0 +[1,15456:36135244,2439708:25952256,1703936,0 +(1,15456:36135244,1915420:25952256,1179648,0 +(1,15456:36135244,1915420:16384,1179648,0 +r1,16983:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,15456:62087500,1915420:25935872 +g1,15456:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,16884:37855564,2439708:1179648,16384,0 +g1,15456:36675916,2439708 +(1,15456:36675916,2439708:1179648,16384,0 +r1,16983:37855564,2439708:1179648,16384,0 ) ) -k1,16884:3078556,2439708:-34777008 +k1,16983:3078556,2439708:-34777008 ) ] -[1,16884:3078558,4812305:0,0,0 -(1,16884:3078558,49800853:0,16384,2228224 -k1,16884:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,16884:2537886,49800853:1179648,16384,0 +[1,16983:3078558,4812305:0,0,0 +(1,16983:3078558,49800853:0,16384,2228224 +k1,16983:1358238,49800853:-1720320 +(1,15456:1358238,49800853:1720320,16384,2228224 +(1,15456:1358238,49800853:1179648,16384,0 +r1,16983:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,16884:3078558,51504789:16384,1179648,0 +g1,15456:3062174,49800853 +(1,15456:3062174,52029077:16384,1703936,0 +[1,15456:3062174,52029077:25952256,1703936,0 +(1,15456:3062174,51504789:25952256,1179648,0 +(1,15456:3062174,51504789:16384,1179648,0 +r1,16983:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,15456:29014430,51504789:25935872 +g1,15456:29014430,51504789 ) ] ) ) ) ] -[1,16884:3078558,4812305:0,0,0 -(1,16884:3078558,49800853:0,16384,2228224 -g1,16884:29030814,49800853 -g1,16884:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,16884:36151628,51504789:16384,1179648,0 +[1,16983:3078558,4812305:0,0,0 +(1,16983:3078558,49800853:0,16384,2228224 +g1,16983:29030814,49800853 +g1,16983:36135244,49800853 +(1,15456:36135244,49800853:1720320,16384,2228224 +(1,15456:36135244,52029077:16384,1703936,0 +[1,15456:36135244,52029077:25952256,1703936,0 +(1,15456:36135244,51504789:25952256,1179648,0 +(1,15456:36135244,51504789:16384,1179648,0 +r1,16983:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +k1,15456:62087500,51504789:25935872 +g1,15456:62087500,51504789 ) ] ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,16884:37855564,49800853:1179648,16384,0 +g1,15456:36675916,49800853 +(1,15456:36675916,49800853:1179648,16384,0 +r1,16983:37855564,49800853:1179648,16384,0 ) ) -k1,16884:3078556,49800853:-34777008 +k1,16983:3078556,49800853:-34777008 ) -] -g1,16884:6630773,4812305 -g1,16884:6630773,4812305 -g1,16884:8017514,4812305 -g1,16884:11261546,4812305 -g1,16884:12076813,4812305 -g1,16884:14985956,4812305 -k1,16884:31387652,4812305:16401696 -) -) -] -[1,16884:6630773,45706769:25952256,40108032,0 -(1,16884:6630773,45706769:25952256,40108032,0 -(1,16884:6630773,45706769:0,0,0 -g1,16884:6630773,45706769 -) -[1,16884:6630773,45706769:25952256,40108032,0 -(1,16871:6630773,6254097:25952256,505283,134348 -k1,16870:8282389,6254097:184920 -k1,16870:11030423,6254097:184921 -k1,16870:13086396,6254097:184920 -k1,16870:15156788,6254097:184921 -k1,16870:16539051,6254097:184920 -k1,16870:17494675,6254097:184921 -k1,16870:20906588,6254097:184920 -k1,16870:24436467,6254097:184921 -k1,16870:25430757,6254097:184920 -k1,16870:27501149,6254097:184921 -k1,16870:28337497,6254097:184920 -k1,16870:31563944,6254097:184921 -k1,16870:32583029,6254097:0 -) -(1,16871:6630773,7095585:25952256,513147,95026 -g1,16870:8840647,7095585 -g1,16870:9699168,7095585 -g1,16870:12740038,7095585 -g1,16870:15149141,7095585 -k1,16871:32583029,7095585:14172161 -g1,16871:32583029,7095585 -) -(1,16872:6630773,8723505:25952256,485622,11795 -(1,16872:6630773,8723505:0,0,0 -g1,16872:6630773,8723505 -) -k1,16872:32583030,8723505:22434284 -g1,16872:32583030,8723505 -) -(1,16875:6630773,9958209:25952256,513147,134348 -k1,16874:10448007,9958209:204234 -k1,16874:11643800,9958209:204233 -k1,16874:14403283,9958209:204234 -k1,16874:15892023,9958209:204234 -k1,16874:18765538,9958209:204234 -k1,16874:19988856,9958209:204233 -k1,16874:22912179,9958209:204234 -k1,16874:27781266,9958209:204234 -k1,16874:28644792,9958209:204234 -k1,16874:29868110,9958209:204233 -k1,16874:31635378,9958209:204234 -k1,16874:32583029,9958209:0 -) -(1,16875:6630773,10799697:25952256,513147,126483 -k1,16874:9670986,10799697:205126 -(1,16874:9670986,10799697:0,452978,122846 -r1,16884:13898082,10799697:4227096,575824,122846 -k1,16874:9670986,10799697:-4227096 -) -(1,16874:9670986,10799697:4227096,452978,122846 -k1,16874:9670986,10799697:3277 -h1,16874:13894805,10799697:0,411205,112570 -) -k1,16874:14276877,10799697:205125 -k1,16874:16089601,10799697:205126 -k1,16874:16650587,10799697:205126 -k1,16874:18543919,10799697:205125 -k1,16874:19431930,10799697:205126 -k1,16874:21948510,10799697:205125 -k1,16874:23101287,10799697:205126 -k1,16874:24758035,10799697:205126 -k1,16874:28704610,10799697:205125 -k1,16874:29592621,10799697:205126 -k1,16874:32583029,10799697:0 -) -(1,16875:6630773,11641185:25952256,505283,134348 -k1,16874:8635857,11641185:151070 -k1,16874:10476445,11641185:151070 -(1,16874:10476445,11641185:0,452978,122846 -r1,16884:14351829,11641185:3875384,575824,122846 -k1,16874:10476445,11641185:-3875384 -) -(1,16874:10476445,11641185:3875384,452978,122846 -k1,16874:10476445,11641185:3277 -h1,16874:14348552,11641185:0,411205,112570 -) -k1,16874:14676569,11641185:151070 -k1,16874:16743912,11641185:151070 -k1,16874:18063489,11641185:151070 -k1,16874:21235769,11641185:151070 -k1,16874:24022042,11641185:151070 -k1,16874:28418534,11641185:151070 -k1,16874:30286647,11641185:151070 -k1,16875:32583029,11641185:0 -) -(1,16875:6630773,12482673:25952256,513147,134348 -k1,16874:8268820,12482673:213950 -k1,16874:9684699,12482673:213949 -k1,16874:10660177,12482673:213950 -k1,16874:13139707,12482673:213950 -k1,16874:14163026,12482673:213949 -k1,16874:17404084,12482673:213950 -k1,16874:18690203,12482673:213950 -k1,16874:20505853,12482673:213950 -k1,16874:23386462,12482673:213949 -k1,16874:25865992,12482673:213950 -k1,16874:26731370,12482673:213950 -k1,16874:27964404,12482673:213949 -k1,16874:30638576,12482673:213950 -k1,16875:32583029,12482673:0 -) -(1,16875:6630773,13324161:25952256,513147,134348 -k1,16874:8157937,13324161:231517 -k1,16874:9864669,13324161:231517 -k1,16874:11521594,13324161:231517 -k1,16874:12108971,13324161:231517 -k1,16874:15347935,13324161:231517 -k1,16874:16110949,13324161:231517 -k1,16874:17855692,13324161:231517 -k1,16874:18738636,13324161:231516 -k1,16874:20167496,13324161:231517 -k1,16874:20754873,13324161:231517 -k1,16874:23936165,13324161:231517 -k1,16874:28832535,13324161:231517 -k1,16874:29723344,13324161:231517 -k1,16874:31344224,13324161:231517 -k1,16874:32227169,13324161:231517 -k1,16874:32583029,13324161:0 -) -(1,16875:6630773,14165649:25952256,513147,126483 -k1,16874:8257335,14165649:175595 -k1,16874:9301283,14165649:175596 -k1,16874:10524143,14165649:175595 -k1,16874:11984244,14165649:175595 -k1,16874:12515700,14165649:175596 -k1,16874:13974490,14165649:175595 -k1,16874:15807492,14165649:175596 -k1,16874:17084092,14165649:175595 -k1,16874:18769637,14165649:175595 -k1,16874:21084328,14165649:175596 -k1,16874:22456610,14165649:175595 -k1,16874:24370220,14165649:175595 -k1,16874:26203222,14165649:175596 -k1,16874:28717142,14165649:175595 -k1,16874:29911823,14165649:175596 -k1,16874:31298523,14165649:175595 -k1,16874:32583029,14165649:0 -) -(1,16875:6630773,15007137:25952256,513147,126483 -k1,16874:8263848,15007137:181453 -k1,16874:9728495,15007137:181452 -k1,16874:11467739,15007137:181453 -k1,16874:13614617,15007137:181453 -k1,16874:14327567,15007137:181453 -k1,16874:16811299,15007137:181452 -k1,16874:17802122,15007137:181453 -k1,16874:19055744,15007137:181453 -k1,16874:19896489,15007137:181453 -k1,16874:21097026,15007137:181452 -k1,16874:23166571,15007137:181453 -k1,16874:25682416,15007137:181453 -k1,16874:28269696,15007137:181453 -k1,16874:29067186,15007137:181452 -k1,16874:30267724,15007137:181453 -k1,16874:31900144,15007137:181453 -k1,16874:32583029,15007137:0 -) -(1,16875:6630773,15848625:25952256,505283,134348 -k1,16874:8821685,15848625:239250 -k1,16874:10758973,15848625:239250 -k1,16874:11354083,15848625:239250 -k1,16874:12870630,15848625:239250 -k1,16874:13641377,15848625:239250 -k1,16874:16230748,15848625:239250 -k1,16874:17489083,15848625:239250 -k1,16874:19616426,15848625:239251 -k1,16874:20988138,15848625:239250 -k1,16874:21975154,15848625:239250 -k1,16874:25367341,15848625:239250 -k1,16874:26222629,15848625:239250 -k1,16874:27480964,15848625:239250 -k1,16874:29459540,15848625:239250 -k1,16874:31078978,15848625:239250 -k1,16874:32583029,15848625:0 -) -(1,16875:6630773,16690113:25952256,505283,134348 -k1,16874:8793505,16690113:197307 -k1,16874:9642240,16690113:197307 -k1,16874:10858632,16690113:197307 -k1,16874:12333236,16690113:197307 -k1,16874:14663740,16690113:197307 -k1,16874:15903069,16690113:197307 -k1,16874:18935463,16690113:197307 -k1,16874:20289480,16690113:197307 -k1,16874:22044578,16690113:197307 -k1,16874:22857923,16690113:197307 -k1,16874:23411090,16690113:197307 -k1,16874:24885694,16690113:197307 -k1,16874:26187283,16690113:197307 -k1,16874:28679661,16690113:197307 -k1,16874:29896053,16690113:197307 -k1,16875:32583029,16690113:0 -) -(1,16875:6630773,17531601:25952256,513147,134348 -k1,16874:8626344,17531601:224133 -k1,16874:11323150,17531601:224133 -k1,16874:13105074,17531601:224133 -k1,16874:13685068,17531601:224134 -k1,16874:17225978,17531601:224133 -k1,16874:18618618,17531601:224133 -k1,16874:20555207,17531601:224133 -k1,16874:21430768,17531601:224133 -k1,16874:23467627,17531601:224133 -k1,16874:24883205,17531601:224133 -k1,16874:25463199,17531601:224134 -k1,16874:27269371,17531601:224133 -k1,16874:28650214,17531601:224133 -k1,16874:30211281,17531601:224133 -k1,16874:32583029,17531601:0 -) -(1,16875:6630773,18373089:25952256,505283,126483 -g1,16874:10620604,18373089 -g1,16874:12313399,18373089 -g1,16874:13283331,18373089 -g1,16874:16272428,18373089 -g1,16874:17154542,18373089 -g1,16874:17709631,18373089 -g1,16874:19135039,18373089 -k1,16875:32583029,18373089:11760438 -g1,16875:32583029,18373089 -) -(1,16876:6630773,20001009:25952256,475791,7863 -(1,16876:6630773,20001009:0,0,0 -g1,16876:6630773,20001009 -) -k1,16876:32583030,20001009:23237100 -g1,16876:32583030,20001009 -) -(1,16878:6630773,21235713:25952256,513147,134348 -k1,16877:9809090,21235713:279004 -k1,16877:11079655,21235713:279005 -k1,16877:13913908,21235713:279004 -k1,16877:15477419,21235713:279005 -k1,16877:19000455,21235713:279004 -k1,16877:20298545,21235713:279005 -k1,16877:24831491,21235713:279004 -k1,16877:25793381,21235713:279005 -k1,16877:27138656,21235713:279004 -k1,16877:28076953,21235713:279005 -k1,16877:31305732,21235713:279004 -k1,16877:32583029,21235713:0 -) -(1,16878:6630773,22077201:25952256,513147,138281 -k1,16877:9766296,22077201:266357 -k1,16877:12391949,22077201:266357 -k1,16877:13309734,22077201:266357 -k1,16877:15084730,22077201:266357 -k1,16877:17786405,22077201:266357 -$1,16877:17786405,22077201 -$1,16877:18289066,22077201 -k1,16877:18555423,22077201:266357 -k1,16877:20013225,22077201:266357 -$1,16877:20013225,22077201 -$1,16877:20565038,22077201 -k1,16877:20831394,22077201:266356 -k1,16877:25009595,22077201:266357 -k1,16877:26833743,22077201:266357 -k1,16877:28091660,22077201:266357 -k1,16877:29514727,22077201:266357 -k1,16877:30440376,22077201:266357 -k1,16877:31725818,22077201:266357 -k1,16878:32583029,22077201:0 -) -(1,16878:6630773,22918689:25952256,505283,134348 -k1,16877:9562958,22918689:173775 -k1,16877:12552815,22918689:173775 -k1,16877:13488118,22918689:173775 -k1,16877:17252610,22918689:173775 -k1,16877:19995397,22918689:173776 -(1,16877:19995397,22918689:0,452978,115847 -r1,16884:26684475,22918689:6689078,568825,115847 -k1,16877:19995397,22918689:-6689078 -) -(1,16877:19995397,22918689:6689078,452978,115847 -k1,16877:19995397,22918689:3277 -h1,16877:26681198,22918689:0,411205,112570 -) -k1,16877:26858250,22918689:173775 -k1,16877:30434654,22918689:173775 -k1,16877:31417799,22918689:173775 -k1,16878:32583029,22918689:0 -) -(1,16878:6630773,23760177:25952256,513147,126483 -k1,16877:10277804,23760177:171657 -k1,16877:11640907,23760177:171658 -k1,16877:12760215,23760177:171657 -k1,16877:15766959,23760177:171657 -(1,16877:15766959,23760177:0,452978,115847 -r1,16884:21400902,23760177:5633943,568825,115847 -k1,16877:15766959,23760177:-5633943 -) -(1,16877:15766959,23760177:5633943,452978,115847 -k1,16877:15766959,23760177:3277 -h1,16877:21397625,23760177:0,411205,112570 -) -k1,16877:21572559,23760177:171657 -k1,16877:23790251,23760177:171658 -k1,16877:24420005,23760177:171657 -k1,16877:27221622,23760177:171657 -k1,16877:28044708,23760177:171658 -k1,16877:30145745,23760177:171657 -k1,16877:32583029,23760177:0 -) -(1,16878:6630773,24601665:25952256,505283,134348 -k1,16877:7863997,24601665:188580 -k1,16877:9660174,24601665:188579 -k1,16877:11040199,24601665:188580 -k1,16877:13666062,24601665:188579 -k1,16877:15202062,24601665:188580 -k1,16877:17171910,24601665:188579 -k1,16877:20259803,24601665:188580 -k1,16877:21580845,24601665:188580 -k1,16877:22517190,24601665:188579 -k1,16877:25835114,24601665:188580 -k1,16877:28704116,24601665:188579 -k1,16877:30286647,24601665:188580 -k1,16878:32583029,24601665:0 -) -(1,16878:6630773,25443153:25952256,505283,126483 -g1,16877:8254099,25443153 -g1,16877:9139490,25443153 -g1,16877:10718907,25443153 -g1,16877:11909696,25443153 -g1,16877:14238190,25443153 -g1,16877:18262755,25443153 -g1,16877:19113412,25443153 -k1,16878:32583029,25443153:11656891 -g1,16878:32583029,25443153 -) -(1,16879:6630773,27071073:25952256,485622,11795 -(1,16879:6630773,27071073:0,0,0 -g1,16879:6630773,27071073 -) -k1,16879:32583030,27071073:23221372 -g1,16879:32583030,27071073 -) -(1,16881:6630773,28305777:25952256,513147,126483 -k1,16880:9674682,28305777:165568 -k1,16880:10831809,28305777:165567 -k1,16880:13552626,28305777:165568 -k1,16880:15002700,28305777:165568 -k1,16880:18209793,28305777:165567 -k1,16880:21846803,28305777:165568 -k1,16880:22671662,28305777:165567 -k1,16880:26345372,28305777:165568 -k1,16880:27193825,28305777:165568 -k1,16880:29051532,28305777:165567 -k1,16880:30919070,28305777:165568 -k1,16881:32583029,28305777:0 -) -(1,16881:6630773,29147265:25952256,513147,126483 -k1,16880:8448261,29147265:194161 -k1,16880:9451792,29147265:194161 -k1,16880:10665038,29147265:194161 -k1,16880:12869845,29147265:194162 -k1,16880:13680044,29147265:194161 -k1,16880:14893290,29147265:194161 -k1,16880:16650485,29147265:194161 -k1,16880:18627881,29147265:194161 -k1,16880:21504431,29147265:194161 -k1,16880:22690152,29147265:194161 -k1,16880:24397539,29147265:194161 -k1,16880:25539352,29147265:194162 -k1,16880:26089373,29147265:194161 -k1,16880:30521092,29147265:194161 -k1,16880:31734338,29147265:194161 -k1,16881:32583029,29147265:0 -) -(1,16881:6630773,29988753:25952256,505283,134348 -k1,16880:8911476,29988753:137676 -k1,16880:10729495,29988753:137676 -k1,16880:11398668,29988753:137676 -k1,16880:13741631,29988753:137676 -k1,16880:14530735,29988753:137676 -k1,16880:15024271,29988753:137676 -k1,16880:18301121,29988753:137676 -k1,16880:19630242,29988753:137676 -k1,16880:23993024,29988753:137676 -k1,16880:26318292,29988753:137676 -k1,16880:26811828,29988753:137676 -k1,16880:29631893,29988753:137676 -k1,16880:31055385,29988753:137676 -k1,16880:32583029,29988753:0 -) -(1,16881:6630773,30830241:25952256,513147,126483 -k1,16880:7132064,30830241:145431 -k1,16880:8835286,30830241:145431 -k1,16880:9632144,30830241:145430 -k1,16880:10796660,30830241:145431 -k1,16880:12393058,30830241:145431 -k1,16880:13580511,30830241:145431 -k1,16880:16561029,30830241:145431 -(1,16880:16561029,30830241:0,452978,115847 -r1,16884:21139837,30830241:4578808,568825,115847 -k1,16880:16561029,30830241:-4578808 -) -(1,16880:16561029,30830241:4578808,452978,115847 -k1,16880:16561029,30830241:3277 -h1,16880:21136560,30830241:0,411205,112570 -) -k1,16880:21285268,30830241:145431 -k1,16880:22448472,30830241:145430 -k1,16880:22949763,30830241:145431 -k1,16880:26315633,30830241:145431 -k1,16880:27652509,30830241:145431 -(1,16880:27652509,30830241:0,452978,115847 -r1,16884:32583029,30830241:4930520,568825,115847 -k1,16880:27652509,30830241:-4930520 -) -(1,16880:27652509,30830241:4930520,452978,115847 -k1,16880:27652509,30830241:3277 -h1,16880:32579752,30830241:0,411205,112570 -) -k1,16880:32583029,30830241:0 -) -(1,16881:6630773,31671729:25952256,513147,126483 -k1,16880:9110018,31671729:197937 -k1,16880:9663815,31671729:197937 -k1,16880:12852161,31671729:197938 -k1,16880:15745594,31671729:197937 -k1,16880:17437097,31671729:197937 -k1,16880:18321196,31671729:197937 -(1,16880:18321196,31671729:0,452978,115847 -r1,16884:20789733,31671729:2468537,568825,115847 -k1,16880:18321196,31671729:-2468537 -) -(1,16880:18321196,31671729:2468537,452978,115847 -k1,16880:18321196,31671729:3277 -h1,16880:20786456,31671729:0,411205,112570 -) -k1,16880:21161340,31671729:197937 -k1,16880:22904616,31671729:197937 -k1,16880:25955992,31671729:197938 -k1,16880:27145489,31671729:197937 -k1,16880:29715174,31671729:197937 -k1,16881:32583029,31671729:0 -) -(1,16881:6630773,32513217:25952256,505283,134348 -k1,16880:8559319,32513217:266553 -k1,16880:9587399,32513217:266552 -k1,16880:11746632,32513217:266553 -k1,16880:13711223,32513217:266553 -k1,16880:15367139,32513217:266553 -k1,16880:17108906,32513217:266552 -k1,16880:18885409,32513217:266553 -k1,16880:21812724,32513217:266553 -k1,16880:22840805,32513217:266553 -k1,16880:25914919,32513217:266552 -k1,16880:29408465,32513217:266553 -k1,16880:32583029,32513217:0 -) -(1,16881:6630773,33354705:25952256,513147,7863 -g1,16880:8323568,33354705 -g1,16880:9208959,33354705 -g1,16880:11024306,33354705 -g1,16880:11874963,33354705 -g1,16880:12430052,33354705 -k1,16881:32583029,33354705:18085316 -g1,16881:32583029,33354705 -) -(1,16882:6630773,34982625:25952256,505283,11795 -(1,16882:6630773,34982625:0,0,0 -g1,16882:6630773,34982625 -) -k1,16882:32583029,34982625:24057610 -g1,16882:32583029,34982625 -) -(1,16884:6630773,36217329:25952256,505283,134348 -k1,16883:8837311,36217329:279124 -k1,16883:10396352,36217329:279123 -k1,16883:11694561,36217329:279124 -k1,16883:16048713,36217329:279123 -k1,16883:17010722,36217329:279124 -k1,16883:20097407,36217329:279123 -k1,16883:23011734,36217329:279124 -k1,16883:24680220,36217329:279123 -k1,16883:26969989,36217329:279124 -k1,16883:28440558,36217329:279124 -k1,16883:29738766,36217329:279123 -k1,16883:32583029,36217329:0 -) -(1,16884:6630773,37058817:25952256,505283,134348 -k1,16883:8952714,37058817:311296 -k1,16883:9915438,37058817:311296 -k1,16883:10974500,37058817:311296 -k1,16883:13774197,37058817:311295 -k1,16883:16561443,37058817:311296 -k1,16883:19623940,37058817:311296 -k1,16883:20291096,37058817:311296 -k1,16883:23113732,37058817:311296 -k1,16883:24076456,37058817:311296 -k1,16883:25406836,37058817:311295 -k1,16883:27934560,37058817:311296 -k1,16883:31090119,37058817:311296 -k1,16883:32583029,37058817:0 -) -(1,16884:6630773,37900305:25952256,513147,134348 -k1,16883:10461828,37900305:318981 -k1,16883:12478848,37900305:318982 -k1,16883:15074550,37900305:318981 -k1,16883:16079693,37900305:318981 -k1,16883:19237039,37900305:318982 -k1,16883:20931621,37900305:318981 -k1,16883:22595402,37900305:318982 -k1,16883:24198889,37900305:318981 -k1,16883:27280213,37900305:318981 -k1,16883:29609840,37900305:318982 -k1,16883:31966991,37900305:318981 -k1,16883:32583029,37900305:0 -) -(1,16884:6630773,38741793:25952256,513147,126483 -k1,16883:7990657,38741793:340799 -k1,16883:10916851,38741793:340799 -k1,16883:13768990,38741793:340799 -k1,16883:15242250,38741793:340798 -k1,16883:16330815,38741793:340799 -k1,16883:20481222,38741793:340799 -k1,16883:21583549,38741793:340799 -k1,16883:24686691,38741793:340799 -k1,16883:27147580,38741793:340799 -k1,16883:27975824,38741793:340656 -k1,16883:30062502,38741793:340799 -k1,16883:31896867,38741793:340799 -k1,16884:32583029,38741793:0 -) -(1,16884:6630773,39583281:25952256,505283,126483 -(1,16883:6630773,39583281:0,452978,115847 -r1,16884:15078410,39583281:8447637,568825,115847 -k1,16883:6630773,39583281:-8447637 -) -(1,16883:6630773,39583281:8447637,452978,115847 -k1,16883:6630773,39583281:3277 -h1,16883:15075133,39583281:0,411205,112570 -) -k1,16883:15466013,39583281:213933 -k1,16883:16812409,39583281:213934 -k1,16883:20270374,39583281:213933 -k1,16883:22369779,39583281:213934 -k1,16883:24199830,39583281:213933 -k1,16883:25029802,39583281:213934 -k1,16883:26262820,39583281:213933 -k1,16883:27754051,39583281:213934 -k1,16883:31931601,39583281:213933 -k1,16883:32583029,39583281:0 -) -(1,16884:6630773,40424769:25952256,513147,102891 -k1,16883:8785324,40424769:269080 -k1,16883:10734747,40424769:269080 -k1,16883:11619864,40424769:269079 -k1,16883:12908029,40424769:269080 -k1,16883:15862119,40424769:269080 -k1,16883:18058613,40424769:269080 -k1,16883:19431974,40424769:269079 -k1,16883:20986870,40424769:269080 -k1,16883:23216787,40424769:269080 -k1,16883:28653381,40424769:269080 -k1,16883:29731830,40424769:269079 -k1,16883:31019995,40424769:269080 -k1,16883:32583029,40424769:0 -) -(1,16884:6630773,41266257:25952256,505283,134348 -k1,16883:8650047,41266257:133803 -k1,16883:9775409,41266257:133802 -k1,16883:11422438,41266257:133803 -k1,16883:13254278,41266257:133802 -k1,16883:16195643,41266257:133803 -k1,16883:17718808,41266257:133802 -k1,16883:19863256,41266257:133803 -k1,16883:20648487,41266257:133803 -k1,16883:23626552,41266257:133802 -k1,16883:25944670,41266257:133803 -k1,16883:26976315,41266257:133802 -k1,16883:30680519,41266257:133803 -k1,16883:32583029,41266257:0 -) -(1,16884:6630773,42107745:25952256,513147,138281 -k1,16883:9351500,42107745:194314 -k1,16883:16611250,42107745:194314 -k1,16883:17421603,42107745:194315 -k1,16883:18635002,42107745:194314 -k1,16883:20196397,42107745:194314 -k1,16883:21050003,42107745:194314 -$1,16883:21050003,42107745 -$1,16883:21552664,42107745 -k1,16883:21746978,42107745:194314 -k1,16883:23132737,42107745:194314 -$1,16883:23132737,42107745 -$1,16883:23684550,42107745 -k1,16883:23878865,42107745:194315 -k1,16883:27421413,42107745:194314 -k1,16883:30560260,42107745:194314 -k1,16883:31563944,42107745:194314 -k1,16883:32583029,42107745:0 -) -(1,16884:6630773,42949233:25952256,513147,134348 -k1,16883:9395201,42949233:239981 -k1,16883:11655657,42949233:239981 -k1,16883:12578523,42949233:239981 -k1,16883:15207291,42949233:239981 -k1,16883:18234518,42949233:239981 -k1,16883:19606960,42949233:239980 -k1,16883:20594707,42949233:239981 -k1,16883:23382072,42949233:239981 -k1,16883:24383581,42949233:239981 -k1,16883:25642647,42949233:239981 -k1,16883:30893511,42949233:239981 -k1,16883:32583029,42949233:0 -) -(1,16884:6630773,43790721:25952256,513147,134348 -k1,16883:7814599,43790721:164741 -k1,16883:10414658,43790721:164741 -k1,16883:12590044,43790721:164741 -k1,16883:13887247,43790721:164741 -k1,16883:14799754,43790721:164741 -k1,16883:16477721,43790721:164741 -k1,16883:17590113,43790721:164741 -k1,16883:18939089,43790721:164740 -k1,16883:20948013,43790721:164741 -k1,16883:22857322,43790721:164741 -k1,16883:24041148,43790721:164741 -k1,16883:25778098,43790721:164741 -k1,16883:27870253,43790721:164741 -k1,16883:29026554,43790721:164741 -k1,16883:30704521,43790721:164741 -k1,16883:31816913,43790721:164741 -k1,16883:32583029,43790721:0 -) -(1,16884:6630773,44632209:25952256,505283,134348 -k1,16883:10172702,44632209:193695 -k1,16883:13346975,44632209:193696 -k1,16883:17111071,44632209:193695 -k1,16883:20320077,44632209:193695 -k1,16883:22007339,44632209:193696 -k1,16883:22887196,44632209:193695 -k1,16883:26070643,44632209:193695 -k1,16883:27455784,44632209:193696 -k1,16883:31096017,44632209:193695 -k1,16883:32583029,44632209:0 -) -(1,16884:6630773,45473697:25952256,513147,134348 -k1,16883:8335516,45473697:211177 -k1,16883:9232855,45473697:211177 -k1,16883:11841994,45473697:211177 -k1,16883:13249858,45473697:211177 -k1,16883:16363625,45473697:211177 -k1,16883:17234094,45473697:211177 -k1,16883:20164361,45473697:211178 -k1,16883:22387493,45473697:211177 -k1,16883:23974271,45473697:211177 -k1,16883:25342158,45473697:211177 -k1,16883:27125544,45473697:211177 -k1,16883:28393161,45473697:211177 -k1,16883:31391584,45473697:211177 -k1,16883:32583029,45473697:0 -) -] -(1,16884:32583029,45706769:0,0,0 -g1,16884:32583029,45706769 -) -) -] -(1,16884:6630773,47279633:25952256,0,0 -h1,16884:6630773,47279633:25952256,0,0 -) -] -(1,16884:4262630,4025873:0,0,0 -[1,16884:-473656,4025873:0,0,0 -(1,16884:-473656,-710413:0,0,0 -(1,16884:-473656,-710413:0,0,0 -g1,16884:-473656,-710413 -) -g1,16884:-473656,-710413 -) -] -) -] -!24339 -}290 -Input:2463:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2464:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2465:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2466:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2467:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2468:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2469:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2470:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2471:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2472:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2473:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1046 -{291 -[1,16903:4262630,47279633:28320399,43253760,0 -(1,16903:4262630,4025873:0,0,0 -[1,16903:-473656,4025873:0,0,0 -(1,16903:-473656,-710413:0,0,0 -(1,16903:-473656,-644877:0,0,0 -k1,16903:-473656,-644877:-65536 +] +g1,16983:6630773,4812305 +k1,16983:23311652,4812305:15485502 +g1,16983:23960458,4812305 +g1,16983:27572802,4812305 +g1,16983:29306229,4812305 +) +) +] +[1,16983:6630773,45706769:25952256,40108032,0 +(1,16983:6630773,45706769:25952256,40108032,0 +(1,16983:6630773,45706769:0,0,0 +g1,16983:6630773,45706769 +) +[1,16983:6630773,45706769:25952256,40108032,0 +v1,16929:6630773,6254097:0,393216,0 +(1,16941:6630773,10578077:25952256,4717196,196608 +g1,16941:6630773,10578077 +g1,16941:6630773,10578077 +g1,16941:6434165,10578077 +(1,16941:6434165,10578077:0,4717196,196608 +r1,16983:32779637,10578077:26345472,4913804,196608 +k1,16941:6434165,10578077:-26345472 +) +(1,16941:6434165,10578077:26345472,4717196,196608 +[1,16941:6630773,10578077:25952256,4520588,0 +(1,16931:6630773,6488534:25952256,431045,112852 +(1,16930:6630773,6488534:0,0,0 +g1,16930:6630773,6488534 +g1,16930:6630773,6488534 +g1,16930:6303093,6488534 +(1,16930:6303093,6488534:0,0,0 +) +g1,16930:6630773,6488534 +) +k1,16931:6630773,6488534:0 +g1,16931:10614220,6488534 +g1,16931:11278128,6488534 +g1,16931:14929621,6488534 +g1,16931:15593529,6488534 +g1,16931:16257437,6488534 +h1,16931:19245022,6488534:0,0,0 +k1,16931:32583029,6488534:13338007 +g1,16931:32583029,6488534 +) +(1,16935:6630773,7828749:25952256,431045,112852 +g1,16935:7626635,7828749 +g1,16935:10282267,7828749 +g1,16935:11942037,7828749 +g1,16935:13269853,7828749 +g1,16935:13933761,7828749 +k1,16935:32583029,7828749:14333867 +g1,16935:32583029,7828749 +) +(1,16940:6630773,8513604:25952256,424439,6605 +(1,16935:6630773,8513604:0,0,0 +g1,16935:6630773,8513604 +g1,16935:6630773,8513604 +g1,16935:6303093,8513604 +(1,16935:6303093,8513604:0,0,0 +) +g1,16935:6630773,8513604 +) +g1,16940:7626635,8513604 +g1,16940:8290543,8513604 +g1,16940:8954451,8513604 +g1,16940:11610083,8513604 +g1,16940:12273991,8513604 +g1,16940:12937899,8513604 +h1,16940:13269853,8513604:0,0,0 +k1,16940:32583029,8513604:19313176 +g1,16940:32583029,8513604 +) +(1,16940:6630773,9198459:25952256,424439,6605 +h1,16940:6630773,9198459:0,0,0 +g1,16940:7626635,9198459 +g1,16940:7958589,9198459 +g1,16940:8290543,9198459 +g1,16940:8622497,9198459 +g1,16940:8954451,9198459 +g1,16940:10282267,9198459 +h1,16940:12605945,9198459:0,0,0 +k1,16940:32583029,9198459:19977084 +g1,16940:32583029,9198459 +) +(1,16940:6630773,9883314:25952256,424439,6605 +h1,16940:6630773,9883314:0,0,0 +g1,16940:7626635,9883314 +g1,16940:7958589,9883314 +g1,16940:8290543,9883314 +g1,16940:10282267,9883314 +k1,16940:10282267,9883314:0 +h1,16940:11942037,9883314:0,0,0 +k1,16940:32583029,9883314:20640992 +g1,16940:32583029,9883314 +) +(1,16940:6630773,10568169:25952256,424439,9908 +h1,16940:6630773,10568169:0,0,0 +g1,16940:7626635,10568169 +g1,16940:8290543,10568169 +g1,16940:8622497,10568169 +g1,16940:8954451,10568169 +g1,16940:9286405,10568169 +g1,16940:9618359,10568169 +g1,16940:10282267,10568169 +h1,16940:10614221,10568169:0,0,0 +k1,16940:32583029,10568169:21968808 +g1,16940:32583029,10568169 +) +] +) +g1,16941:32583029,10578077 +g1,16941:6630773,10578077 +g1,16941:6630773,10578077 +g1,16941:32583029,10578077 +g1,16941:32583029,10578077 +) +h1,16941:6630773,10774685:0,0,0 +(1,16945:6630773,11639765:25952256,513147,126483 +h1,16944:6630773,11639765:983040,0,0 +k1,16944:8730186,11639765:162824 +k1,16944:10290893,11639765:162824 +k1,16944:12827430,11639765:162823 +k1,16944:15373143,11639765:162824 +(1,16944:15373143,11639765:0,452978,115847 +r1,16983:16434832,11639765:1061689,568825,115847 +k1,16944:15373143,11639765:-1061689 +) +(1,16944:15373143,11639765:1061689,452978,115847 +k1,16944:15373143,11639765:3277 +h1,16944:16431555,11639765:0,411205,112570 +) +k1,16944:16597656,11639765:162824 +k1,16944:17376518,11639765:162824 +(1,16944:17376518,11639765:0,459977,115847 +r1,16983:20196767,11639765:2820249,575824,115847 +k1,16944:17376518,11639765:-2820249 +) +(1,16944:17376518,11639765:2820249,459977,115847 +k1,16944:17376518,11639765:3277 +h1,16944:20193490,11639765:0,411205,112570 +) +k1,16944:20359591,11639765:162824 +k1,16944:21173842,11639765:162823 +k1,16944:25369752,11639765:162824 +k1,16944:26551661,11639765:162824 +k1,16944:27806970,11639765:162824 +k1,16944:28636949,11639765:162823 +(1,16944:28636949,11639765:0,452978,115847 +r1,16983:29346927,11639765:709978,568825,115847 +k1,16944:28636949,11639765:-709978 +) +(1,16944:28636949,11639765:709978,452978,115847 +k1,16944:28636949,11639765:3277 +h1,16944:29343650,11639765:0,411205,112570 +) +k1,16944:29509751,11639765:162824 +k1,16944:30324003,11639765:162824 +k1,16944:32583029,11639765:0 +) +(1,16945:6630773,12504845:25952256,513147,7863 +g1,16944:8715473,12504845 +g1,16944:11627893,12504845 +g1,16944:14007505,12504845 +g1,16944:14954500,12504845 +g1,16944:17992093,12504845 +g1,16944:19138973,12504845 +k1,16945:32583029,12504845:10611590 +g1,16945:32583029,12504845 +) +v1,16947:6630773,13189700:0,393216,0 +(1,16963:6630773,20413667:25952256,7617183,196608 +g1,16963:6630773,20413667 +g1,16963:6630773,20413667 +g1,16963:6434165,20413667 +(1,16963:6434165,20413667:0,7617183,196608 +r1,16983:32779637,20413667:26345472,7813791,196608 +k1,16963:6434165,20413667:-26345472 +) +(1,16963:6434165,20413667:26345472,7617183,196608 +[1,16963:6630773,20413667:25952256,7420575,0 +(1,16949:6630773,13424137:25952256,431045,86428 +(1,16948:6630773,13424137:0,0,0 +g1,16948:6630773,13424137 +g1,16948:6630773,13424137 +g1,16948:6303093,13424137 +(1,16948:6303093,13424137:0,0,0 +) +g1,16948:6630773,13424137 +) +g1,16949:9950312,13424137 +g1,16949:10946174,13424137 +g1,16949:16589391,13424137 +g1,16949:18249161,13424137 +g1,16949:18913069,13424137 +h1,16949:20240885,13424137:0,0,0 +k1,16949:32583029,13424137:12342144 +g1,16949:32583029,13424137 +) +(1,16950:6630773,14108992:25952256,431045,112852 +h1,16950:6630773,14108992:0,0,0 +g1,16950:10614220,14108992 +g1,16950:11278128,14108992 +g1,16950:14929621,14108992 +g1,16950:15593529,14108992 +g1,16950:16257437,14108992 +g1,16950:19908930,14108992 +g1,16950:20904792,14108992 +g1,16950:21568700,14108992 +g1,16950:24556286,14108992 +g1,16950:25220194,14108992 +h1,16950:27543872,14108992:0,0,0 +k1,16950:32583029,14108992:5039157 +g1,16950:32583029,14108992 +) +(1,16962:6630773,14924919:25952256,424439,9908 +(1,16952:6630773,14924919:0,0,0 +g1,16952:6630773,14924919 +g1,16952:6630773,14924919 +g1,16952:6303093,14924919 +(1,16952:6303093,14924919:0,0,0 +) +g1,16952:6630773,14924919 +) +g1,16962:7626635,14924919 +g1,16962:8290543,14924919 +g1,16962:8954451,14924919 +g1,16962:11610083,14924919 +g1,16962:12273991,14924919 +g1,16962:12937899,14924919 +h1,16962:13269853,14924919:0,0,0 +k1,16962:32583029,14924919:19313176 +g1,16962:32583029,14924919 +) +(1,16962:6630773,15609774:25952256,424439,6605 +h1,16962:6630773,15609774:0,0,0 +g1,16962:7626635,15609774 +g1,16962:7958589,15609774 +g1,16962:8290543,15609774 +g1,16962:8622497,15609774 +g1,16962:10282267,15609774 +g1,16962:12937899,15609774 +h1,16962:15261577,15609774:0,0,0 +k1,16962:32583029,15609774:17321452 +g1,16962:32583029,15609774 +) +(1,16962:6630773,16294629:25952256,424439,6605 +h1,16962:6630773,16294629:0,0,0 +g1,16962:7626635,16294629 +g1,16962:7958589,16294629 +g1,16962:8290543,16294629 +g1,16962:10282267,16294629 +g1,16962:12273991,16294629 +g1,16962:12605945,16294629 +g1,16962:12937899,16294629 +k1,16962:12937899,16294629:0 +h1,16962:14597669,16294629:0,0,0 +k1,16962:32583029,16294629:17985360 +g1,16962:32583029,16294629 +) +(1,16962:6630773,16979484:25952256,424439,6605 +h1,16962:6630773,16979484:0,0,0 +g1,16962:7626635,16979484 +g1,16962:8290543,16979484 +g1,16962:8622497,16979484 +g1,16962:8954451,16979484 +g1,16962:9286405,16979484 +g1,16962:9618359,16979484 +g1,16962:10282267,16979484 +g1,16962:10946175,16979484 +g1,16962:11278129,16979484 +g1,16962:11610083,16979484 +g1,16962:11942037,16979484 +g1,16962:12273991,16979484 +g1,16962:12605945,16979484 +g1,16962:12937899,16979484 +h1,16962:13269853,16979484:0,0,0 +k1,16962:32583029,16979484:19313176 +g1,16962:32583029,16979484 +) +(1,16962:6630773,17664339:25952256,424439,6605 +h1,16962:6630773,17664339:0,0,0 +g1,16962:7626635,17664339 +g1,16962:8290543,17664339 +g1,16962:8622497,17664339 +g1,16962:8954451,17664339 +g1,16962:9286405,17664339 +g1,16962:9618359,17664339 +g1,16962:10282267,17664339 +g1,16962:10946175,17664339 +g1,16962:11278129,17664339 +g1,16962:11610083,17664339 +g1,16962:11942037,17664339 +g1,16962:12273991,17664339 +g1,16962:12605945,17664339 +g1,16962:12937899,17664339 +h1,16962:13269853,17664339:0,0,0 +k1,16962:32583029,17664339:19313176 +g1,16962:32583029,17664339 +) +(1,16962:6630773,18349194:25952256,424439,9908 +h1,16962:6630773,18349194:0,0,0 +g1,16962:7626635,18349194 +g1,16962:8290543,18349194 +g1,16962:8622497,18349194 +g1,16962:8954451,18349194 +g1,16962:9286405,18349194 +g1,16962:9618359,18349194 +g1,16962:10282267,18349194 +g1,16962:10946175,18349194 +g1,16962:11278129,18349194 +g1,16962:11610083,18349194 +g1,16962:11942037,18349194 +g1,16962:12273991,18349194 +g1,16962:12605945,18349194 +g1,16962:12937899,18349194 +h1,16962:13269853,18349194:0,0,0 +k1,16962:32583029,18349194:19313176 +g1,16962:32583029,18349194 +) +(1,16962:6630773,19034049:25952256,424439,6605 +h1,16962:6630773,19034049:0,0,0 +g1,16962:7626635,19034049 +g1,16962:8290543,19034049 +g1,16962:8622497,19034049 +g1,16962:8954451,19034049 +g1,16962:9286405,19034049 +g1,16962:9618359,19034049 +g1,16962:10282267,19034049 +g1,16962:10946175,19034049 +g1,16962:11278129,19034049 +g1,16962:11610083,19034049 +g1,16962:11942037,19034049 +g1,16962:12273991,19034049 +g1,16962:12605945,19034049 +g1,16962:12937899,19034049 +h1,16962:13269853,19034049:0,0,0 +k1,16962:32583029,19034049:19313176 +g1,16962:32583029,19034049 +) +(1,16962:6630773,19718904:25952256,398014,9908 +h1,16962:6630773,19718904:0,0,0 +g1,16962:7626635,19718904 +g1,16962:8290543,19718904 +g1,16962:8622497,19718904 +g1,16962:8954451,19718904 +g1,16962:9286405,19718904 +g1,16962:9618359,19718904 +g1,16962:10282267,19718904 +g1,16962:10946175,19718904 +g1,16962:11278129,19718904 +g1,16962:11610083,19718904 +g1,16962:11942037,19718904 +g1,16962:12273991,19718904 +g1,16962:12605945,19718904 +g1,16962:12937899,19718904 +k1,16962:12937899,19718904:0 +h1,16962:14265715,19718904:0,0,0 +k1,16962:32583029,19718904:18317314 +g1,16962:32583029,19718904 +) +(1,16962:6630773,20403759:25952256,424439,9908 +h1,16962:6630773,20403759:0,0,0 +g1,16962:7626635,20403759 +g1,16962:8290543,20403759 +g1,16962:8622497,20403759 +g1,16962:8954451,20403759 +g1,16962:9286405,20403759 +g1,16962:9618359,20403759 +g1,16962:10282267,20403759 +g1,16962:11942037,20403759 +g1,16962:12273991,20403759 +g1,16962:12605945,20403759 +g1,16962:12937899,20403759 +h1,16962:13269853,20403759:0,0,0 +k1,16962:32583029,20403759:19313176 +g1,16962:32583029,20403759 +) +] +) +g1,16963:32583029,20413667 +g1,16963:6630773,20413667 +g1,16963:6630773,20413667 +g1,16963:32583029,20413667 +g1,16963:32583029,20413667 +) +h1,16963:6630773,20610275:0,0,0 +(1,16971:6630773,23441435:25952256,32768,229376 +(1,16971:6630773,23441435:0,32768,229376 +(1,16971:6630773,23441435:5505024,32768,229376 +r1,16983:12135797,23441435:5505024,262144,229376 +) +k1,16971:6630773,23441435:-5505024 +) +(1,16971:6630773,23441435:25952256,32768,0 +r1,16983:32583029,23441435:25952256,32768,0 +) +) +(1,16971:6630773,25073287:25952256,606339,161218 +(1,16971:6630773,25073287:1974731,582746,14155 +g1,16971:6630773,25073287 +g1,16971:8605504,25073287 +) +g1,16971:11813360,25073287 +k1,16971:32583030,25073287:17773364 +g1,16971:32583030,25073287 +) +(1,16973:6630773,26331583:25952256,513147,126483 +k1,16972:7724317,26331583:191113 +k1,16972:10605028,26331583:191113 +k1,16972:14167968,26331583:191113 +k1,16972:15018373,26331583:191113 +k1,16972:16228571,26331583:191113 +k1,16972:19627671,26331583:191113 +k1,16972:20350280,26331583:191112 +k1,16972:22907243,26331583:191113 +k1,16972:24117441,26331583:191113 +k1,16972:26135042,26331583:191113 +k1,16972:26985447,26331583:191113 +k1,16972:28379801,26331583:191113 +k1,16972:30326624,26331583:191113 +k1,16972:32583029,26331583:0 +) +(1,16973:6630773,27196663:25952256,513147,134348 +k1,16972:8770992,27196663:227878 +k1,16972:11668151,27196663:227878 +k1,16972:12512067,27196663:227878 +k1,16972:14527112,27196663:227878 +k1,16972:15774075,27196663:227878 +k1,16972:17094438,27196663:227878 +k1,16972:17981609,27196663:227879 +k1,16972:19906214,27196663:227878 +k1,16972:23218216,27196663:227878 +k1,16972:24263983,27196663:227878 +k1,16972:26723362,27196663:227878 +k1,16972:27610532,27196663:227878 +k1,16972:29477465,27196663:227878 +k1,16972:30696903,27196663:227878 +k1,16972:32583029,27196663:0 +) +(1,16973:6630773,28061743:25952256,513147,126483 +k1,16972:8663535,28061743:180715 +k1,16972:13149966,28061743:180716 +k1,16972:15319043,28061743:180715 +k1,16972:18066804,28061743:180716 +k1,16972:18906811,28061743:180715 +k1,16972:20999867,28061743:180715 +k1,16972:22674149,28061743:180716 +k1,16972:23541026,28061743:180715 +k1,16972:24171319,28061743:180716 +k1,16972:25276092,28061743:180715 +k1,16972:26991006,28061743:180716 +k1,16972:29451719,28061743:180715 +k1,16972:32583029,28061743:0 +) +(1,16973:6630773,28926823:25952256,513147,134348 +k1,16972:7432137,28926823:197122 +k1,16972:8363923,28926823:197127 +k1,16972:10361974,28926823:197122 +k1,16972:11750542,28926823:197123 +k1,16972:12397241,28926823:197122 +k1,16972:16984620,28926823:197122 +k1,16972:18105801,28926823:197123 +k1,16972:19837121,28926823:197122 +k1,16972:22314241,28926823:197122 +k1,16972:24230374,28926823:197123 +k1,16972:26228425,28926823:197122 +k1,16972:27417107,28926823:197122 +k1,16972:28633315,28926823:197123 +k1,16972:30432137,28926823:197122 +k1,16973:32583029,28926823:0 +k1,16973:32583029,28926823:0 +) +] +(1,16983:32583029,45706769:0,0,0 +g1,16983:32583029,45706769 +) +) +] +(1,16983:6630773,47279633:25952256,0,0 +h1,16983:6630773,47279633:25952256,0,0 +) +] +(1,16983:4262630,4025873:0,0,0 +[1,16983:-473656,4025873:0,0,0 +(1,16983:-473656,-710413:0,0,0 +(1,16983:-473656,-710413:0,0,0 +g1,16983:-473656,-710413 +) +g1,16983:-473656,-710413 +) +] +) +] +!16478 +}271 +!12 +{272 +[1,17033:4262630,47279633:28320399,43253760,11795 +(1,17033:4262630,4025873:0,0,0 +[1,17033:-473656,4025873:0,0,0 +(1,17033:-473656,-710413:0,0,0 +(1,17033:-473656,-644877:0,0,0 +k1,17033:-473656,-644877:-65536 ) -(1,16903:-473656,4736287:0,0,0 -k1,16903:-473656,4736287:5209943 +(1,17033:-473656,4736287:0,0,0 +k1,17033:-473656,4736287:5209943 ) -g1,16903:-473656,-710413 +g1,17033:-473656,-710413 ) ] ) -[1,16903:6630773,47279633:25952256,43253760,0 -[1,16903:6630773,4812305:25952256,786432,0 -(1,16903:6630773,4812305:25952256,513147,126483 -(1,16903:6630773,4812305:25952256,513147,126483 -g1,16903:3078558,4812305 -[1,16903:3078558,4812305:0,0,0 -(1,16903:3078558,2439708:0,1703936,0 -k1,16903:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,16903:2537886,2439708:1179648,16384,0 +[1,17033:6630773,47279633:25952256,43253760,11795 +[1,17033:6630773,4812305:25952256,786432,0 +(1,17033:6630773,4812305:25952256,0,0 +(1,17033:6630773,4812305:25952256,0,0 +g1,17033:3078558,4812305 +[1,17033:3078558,4812305:0,0,0 +(1,17033:3078558,2439708:0,1703936,0 +k1,17033:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,17033:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,16903:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,17033:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,16903:3078558,4812305:0,0,0 -(1,16903:3078558,2439708:0,1703936,0 -g1,16903:29030814,2439708 -g1,16903:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,16903:36151628,1915420:16384,1179648,0 +[1,17033:3078558,4812305:0,0,0 +(1,17033:3078558,2439708:0,1703936,0 +g1,17033:29030814,2439708 +g1,17033:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,17033:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,16903:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,17033:37855564,2439708:1179648,16384,0 ) ) -k1,16903:3078556,2439708:-34777008 +k1,17033:3078556,2439708:-34777008 ) ] -[1,16903:3078558,4812305:0,0,0 -(1,16903:3078558,49800853:0,16384,2228224 -k1,16903:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,16903:2537886,49800853:1179648,16384,0 +[1,17033:3078558,4812305:0,0,0 +(1,17033:3078558,49800853:0,16384,2228224 +k1,17033:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,17033:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,16903:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,17033:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,16903:3078558,4812305:0,0,0 -(1,16903:3078558,49800853:0,16384,2228224 -g1,16903:29030814,49800853 -g1,16903:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,16903:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] -) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,16903:37855564,49800853:1179648,16384,0 -) -) -k1,16903:3078556,49800853:-34777008 -) -] -g1,16903:6630773,4812305 -k1,16903:21350816,4812305:13524666 -g1,16903:21999622,4812305 -g1,16903:25611966,4812305 -g1,16903:28956923,4812305 -g1,16903:29772190,4812305 -) -) -] -[1,16903:6630773,45706769:25952256,40108032,0 -(1,16903:6630773,45706769:25952256,40108032,0 -(1,16903:6630773,45706769:0,0,0 -g1,16903:6630773,45706769 -) -[1,16903:6630773,45706769:25952256,40108032,0 -(1,16884:6630773,6254097:25952256,505283,134348 -k1,16883:8270837,6254097:189097 -k1,16883:9840777,6254097:189096 -k1,16883:13343374,6254097:189097 -k1,16883:14063967,6254097:189096 -k1,16883:16987881,6254097:189097 -k1,16883:17938505,6254097:189096 -k1,16883:20216234,6254097:189097 -k1,16883:21056758,6254097:189096 -k1,16883:22975350,6254097:189097 -k1,16883:26350151,6254097:189096 -k1,16883:27988904,6254097:189097 -k1,16883:28636097,6254097:189096 -k1,16883:31298523,6254097:189097 -k1,16883:32583029,6254097:0 -) -(1,16884:6630773,7095585:25952256,505283,134348 -k1,16883:7861174,7095585:211316 -k1,16883:9128931,7095585:211317 -k1,16883:10956365,7095585:211316 -k1,16883:12300144,7095585:211317 -k1,16883:13986675,7095585:211316 -k1,16883:15217077,7095585:211317 -k1,16883:17081866,7095585:211316 -k1,16883:20621757,7095585:211317 -k1,16883:21449111,7095585:211316 -k1,16883:22426544,7095585:211317 -k1,16883:23915157,7095585:211316 -k1,16883:26014566,7095585:211317 -k1,16883:28144776,7095585:211316 -k1,16883:29375178,7095585:211317 -(1,16883:29375178,7095585:0,452978,115847 -r1,16903:31140291,7095585:1765113,568825,115847 -k1,16883:29375178,7095585:-1765113 -) -(1,16883:29375178,7095585:1765113,452978,115847 -k1,16883:29375178,7095585:3277 -h1,16883:31137014,7095585:0,411205,112570 -) -k1,16883:31351607,7095585:211316 -k1,16884:32583029,7095585:0 -) -(1,16884:6630773,7937073:25952256,513147,134348 -k1,16883:8548903,7937073:157177 -k1,16883:9237577,7937073:157177 -k1,16883:11980149,7937073:157177 -k1,16883:12788754,7937073:157177 -k1,16883:14716058,7937073:157177 -k1,16883:16800649,7937073:157177 -k1,16883:18433042,7937073:157178 -k1,16883:20404911,7937073:157177 -k1,16883:21956039,7937073:157177 -k1,16883:26184968,7937073:157177 -k1,16883:28363275,7937073:157177 -k1,16883:30886302,7937073:157177 -k1,16883:32583029,7937073:0 -) -(1,16884:6630773,8778561:25952256,513147,134348 -k1,16883:8640795,8778561:195330 -k1,16883:10574141,8778561:195331 -k1,16883:13210687,8778561:195330 -k1,16883:14167546,8778561:195331 -k1,16883:16628456,8778561:195330 -k1,16883:19749969,8778561:195330 -k1,16883:20706828,8778561:195331 -(1,16883:20706828,8778561:0,414482,115847 -r1,16903:21416806,8778561:709978,530329,115847 -k1,16883:20706828,8778561:-709978 -) -(1,16883:20706828,8778561:709978,414482,115847 -k1,16883:20706828,8778561:3277 -h1,16883:21413529,8778561:0,411205,112570 -) -k1,16883:21819230,8778561:195330 -k1,16883:23966222,8778561:195330 -k1,16883:25604000,8778561:195331 -k1,16883:28004617,8778561:195330 -k1,16883:28851376,8778561:195331 -k1,16883:31900144,8778561:195330 -k1,16883:32583029,8778561:0 -) -(1,16884:6630773,9620049:25952256,505283,134348 -k1,16883:11412411,9620049:160694 -k1,16883:12104602,9620049:160694 -k1,16883:13659902,9620049:160694 -k1,16883:14472024,9620049:160694 -k1,16883:19492213,9620049:160694 -k1,16883:21177274,9620049:160694 -k1,16883:25409720,9620049:160694 -k1,16883:27268452,9620049:160694 -k1,16883:29610840,9620049:160694 -k1,16883:31343743,9620049:160694 -k1,16884:32583029,9620049:0 -) -(1,16884:6630773,10461537:25952256,505283,134348 -k1,16883:7644134,10461537:224963 -k1,16883:10975503,10461537:224962 -k1,16883:15425572,10461537:224963 -k1,16883:18220856,10461537:224962 -k1,16883:21481447,10461537:224963 -k1,16883:24692885,10461537:224962 -k1,16883:26202354,10461537:224963 -(1,16883:26202354,10461537:0,414482,115847 -r1,16903:26912332,10461537:709978,530329,115847 -k1,16883:26202354,10461537:-709978 -) -(1,16883:26202354,10461537:709978,414482,115847 -k1,16883:26202354,10461537:3277 -h1,16883:26909055,10461537:0,411205,112570 -) -k1,16883:27137294,10461537:224962 -k1,16883:29372902,10461537:224963 -k1,16883:31073079,10461537:224962 -k1,16883:32583029,10461537:0 -) -(1,16884:6630773,11303025:25952256,513147,134348 -g1,16883:9327579,11303025 -g1,16883:11094429,11303025 -g1,16883:11649518,11303025 -g1,16883:13126044,11303025 -g1,16883:15505656,11303025 -g1,16883:16771156,11303025 -g1,16883:17718151,11303025 -k1,16884:32583029,11303025:12249991 -g1,16884:32583029,11303025 -) -(1,16885:6630773,12930945:25952256,505283,126483 -(1,16885:6630773,12930945:0,0,0 -g1,16885:6630773,12930945 -) -g1,16885:10311930,12930945 -k1,16885:32583029,12930945:19849544 -g1,16885:32583029,12930945 -) -(1,16887:6630773,14165649:25952256,513147,134348 -k1,16886:7987308,14165649:159848 -k1,16886:9748856,14165649:159848 -k1,16886:13213686,14165649:159849 -k1,16886:14886760,14165649:159848 -k1,16886:18454480,14165649:159848 -k1,16886:20860247,14165649:159848 -k1,16886:22718133,14165649:159848 -k1,16886:25402428,14165649:159848 -k1,16886:27125311,14165649:159849 -k1,16886:28304244,14165649:159848 -k1,16886:31348331,14165649:159848 -k1,16887:32583029,14165649:0 -) -(1,16887:6630773,15007137:25952256,513147,138281 -k1,16886:8238022,15007137:209366 -k1,16886:8978884,15007137:209365 -k1,16886:10207335,15007137:209366 -k1,16886:12682280,15007137:209365 -k1,16886:13839297,15007137:209366 -k1,16886:15650363,15007137:209366 -k1,16886:19450445,15007137:209365 -k1,16886:20287646,15007137:209366 -k1,16886:21516096,15007137:209365 -k1,16886:24609701,15007137:209366 -k1,16886:27238656,15007137:209366 -$1,16886:27238656,15007137 -$1,16886:27741317,15007137 -k1,16886:27950682,15007137:209365 -k1,16886:29351493,15007137:209366 -$1,16886:29351493,15007137 -$1,16886:29903306,15007137 -k1,16886:30112671,15007137:209365 -k1,16886:31313597,15007137:209366 -k1,16887:32583029,15007137:0 -) -(1,16887:6630773,15848625:25952256,530347,134348 -k1,16886:9593500,15848625:209560 -k1,16886:10489223,15848625:209561 -k1,16886:13689846,15848625:209560 -k1,16886:14708776,15848625:209560 -k1,16886:16090775,15848625:209560 -k1,16886:19794060,15848625:209561 -k1,16886:20823475,15848625:209560 -$1,16886:21620393,15848625 -(1,16886:21620393,15573344:343802,255066,0 -) -$1,16886:21964195,15848625 -k1,16886:22380849,15848625:209560 -k1,16886:24162618,15848625:209560 -k1,16886:27730899,15848625:209561 -k1,16886:31348331,15848625:209560 -k1,16887:32583029,15848625:0 -) -(1,16887:6630773,16690113:25952256,505283,134348 -k1,16886:8408164,16690113:222877 -k1,16886:9622601,16690113:222877 -k1,16886:12629447,16690113:222877 -k1,16886:13468362,16690113:222877 -k1,16886:16519772,16690113:222877 -k1,16886:17934095,16690113:222878 -k1,16886:20715498,16690113:222877 -k1,16886:24514675,16690113:222877 -k1,16886:25779574,16690113:222877 -k1,16886:28837538,16690113:222877 -k1,16886:29676453,16690113:222877 -k1,16886:30918415,16690113:222877 -k1,16886:32583029,16690113:0 -) -(1,16887:6630773,17531601:25952256,513147,134348 -k1,16886:9092961,17531601:216269 -k1,16886:9968521,17531601:216268 -k1,16886:14096634,17531601:216269 -k1,16886:15331988,17531601:216269 -$1,16886:15331988,17531601 -$1,16886:15834649,17531601 -k1,16886:16050917,17531601:216268 -k1,16886:18277831,17531601:216269 -k1,16886:19485660,17531601:216269 -k1,16886:22287324,17531601:216269 -k1,16886:23155020,17531601:216268 -k1,16886:25398973,17531601:216269 -k1,16886:27904415,17531601:216269 -k1,16886:28476543,17531601:216268 -k1,16886:30894822,17531601:216269 -k1,16886:32583029,17531601:0 -) -(1,16887:6630773,18373089:25952256,513147,138281 -k1,16886:8006576,18373089:184358 -$1,16886:8006576,18373089 -$1,16886:8558389,18373089 -k1,16886:8742746,18373089:184357 -k1,16886:10937749,18373089:184358 -k1,16886:11773534,18373089:184357 -k1,16886:12976977,18373089:184358 -k1,16886:15346305,18373089:184358 -k1,16886:18135063,18373089:184357 -k1,16886:20980838,18373089:184358 -k1,16886:21696693,18373089:184358 -k1,16886:22900135,18373089:184357 -k1,16886:25397259,18373089:184358 -k1,16886:27827535,18373089:184357 -k1,16886:28671185,18373089:184358 -k1,16886:32583029,18373089:0 -) -(1,16887:6630773,19214577:25952256,513147,134348 -k1,16886:7691741,19214577:290265 -k1,16886:11054334,19214577:290265 -k1,16886:12003891,19214577:290265 -k1,16886:13313241,19214577:290265 -k1,16886:16506096,19214577:290265 -k1,16886:20997874,19214577:290265 -k1,16886:21904177,19214577:290265 -k1,16886:24774594,19214577:290265 -k1,16886:27686953,19214577:290265 -k1,16886:29261724,19214577:290265 -k1,16886:31563944,19214577:290265 -k1,16886:32583029,19214577:0 -) -(1,16887:6630773,20056065:25952256,513147,134348 -k1,16886:10928087,20056065:262918 -k1,16886:11850298,20056065:262919 -k1,16886:14425982,20056065:262918 -k1,16886:16470170,20056065:262919 -k1,16886:18939685,20056065:262918 -k1,16886:21017296,20056065:262919 -k1,16886:21931642,20056065:262918 -k1,16886:22550421,20056065:262919 -k1,16886:26221211,20056065:262918 -k1,16886:28730049,20056065:262919 -k1,16886:31563944,20056065:262918 -k1,16886:32583029,20056065:0 -) -(1,16887:6630773,20897553:25952256,513147,134348 -k1,16886:8850074,20897553:198826 -k1,16886:9708192,20897553:198826 -k1,16886:10926103,20897553:198826 -k1,16886:13649377,20897553:198827 -k1,16886:15636025,20897553:198826 -k1,16886:17877608,20897553:198826 -k1,16886:18692472,20897553:198826 -k1,16886:19910383,20897553:198826 -k1,16886:21560176,20897553:198826 -k1,16886:22831172,20897553:198827 -k1,16886:24522908,20897553:198826 -k1,16886:25788005,20897553:198826 -k1,16886:28337607,20897553:198826 -k1,16886:32583029,20897553:0 -) -(1,16887:6630773,21739041:25952256,505283,134348 -k1,16886:7463474,21739041:204866 -k1,16886:9370309,21739041:204865 -k1,16886:11703784,21739041:204866 -k1,16886:13606687,21739041:204865 -k1,16886:15546946,21739041:204866 -k1,16886:18584932,21739041:204865 -k1,16886:22861550,21739041:204866 -k1,16886:25380491,21739041:204865 -k1,16886:27951207,21739041:204866 -k1,16886:29175157,21739041:204865 -k1,16886:32583029,21739041:0 -) -(1,16887:6630773,22580529:25952256,513147,126483 -k1,16886:8798470,22580529:179335 -k1,16886:10047352,22580529:179334 -k1,16886:11292958,22580529:179335 -k1,16886:13515049,22580529:179334 -k1,16886:14310422,22580529:179335 -k1,16886:15508841,22580529:179334 -k1,16886:18563240,22580529:179335 -k1,16886:20193542,22580529:179335 -k1,16886:21505338,22580529:179334 -k1,16886:22883327,22580529:179335 -k1,16886:23810427,22580529:179334 -k1,16886:26748172,22580529:179335 -k1,16886:27543544,22580529:179334 -k1,16886:32117068,22580529:179335 -k1,16886:32583029,22580529:0 -) -(1,16887:6630773,23422017:25952256,513147,134348 -g1,16886:9684750,23422017 -g1,16886:10645507,23422017 -g1,16886:14252608,23422017 -g1,16886:16266529,23422017 -g1,16886:17537927,23422017 -g1,16886:18869618,23422017 -g1,16886:19816613,23422017 -g1,16886:22457058,23422017 -g1,16886:23122248,23422017 -g1,16886:26176225,23422017 -g1,16886:27136982,23422017 -g1,16886:28908420,23422017 -k1,16887:32583029,23422017:1686247 -g1,16887:32583029,23422017 -) -(1,16888:6630773,25049937:25952256,505283,7863 -(1,16888:6630773,25049937:0,0,0 -g1,16888:6630773,25049937 -) -k1,16888:32583028,25049937:23518248 -g1,16888:32583028,25049937 -) -(1,16890:6630773,26284641:25952256,513147,126483 -k1,16889:8242350,26284641:190756 -k1,16889:9452192,26284641:190757 -k1,16889:11250546,26284641:190756 -k1,16889:12828045,26284641:190757 -k1,16889:14716839,26284641:190756 -k1,16889:17970749,26284641:190757 -k1,16889:18844390,26284641:190756 -k1,16889:21385267,26284641:190756 -k1,16889:22680306,26284641:190757 -k1,16889:23618828,26284641:190756 -k1,16889:26031256,26284641:190757 -k1,16889:26983540,26284641:190756 -k1,16889:29242613,26284641:190757 -k1,16889:30092661,26284641:190756 -k1,16889:32583029,26284641:0 -) -(1,16890:6630773,27126129:25952256,505283,134348 -k1,16889:7338121,27126129:219760 -k1,16889:8835199,27126129:219781 -k1,16889:10159262,27126129:219781 -k1,16889:11126809,27126129:219781 -k1,16889:13158005,27126129:219781 -k1,16889:15838008,27126129:219781 -k1,16889:18245381,27126129:219781 -k1,16889:18821022,27126129:219781 -k1,16889:21027199,27126129:219781 -k1,16889:22438425,27126129:219781 -k1,16889:24092134,27126129:219781 -k1,16889:26662036,27126129:219781 -k1,16889:27564702,27126129:219781 -k1,16889:30847636,27126129:219781 -k1,16889:32583029,27126129:0 -) -(1,16890:6630773,27967617:25952256,513147,134348 -k1,16889:9576319,27967617:183203 -k1,16889:12249890,27967617:183203 -k1,16889:14024306,27967617:183202 -k1,16889:17400423,27967617:183203 -k1,16889:19570022,27967617:183203 -k1,16889:22622391,27967617:183203 -k1,16889:23909876,27967617:183203 -k1,16889:24840845,27967617:183203 -k1,16889:27859134,27967617:183202 -k1,16889:29233782,27967617:183203 -k1,16889:31299834,27967617:183203 -k1,16889:32583029,27967617:0 -) -(1,16890:6630773,28809105:25952256,513147,126483 -k1,16889:9103971,28809105:156500 -k1,16889:11815720,28809105:156500 -k1,16889:13353064,28809105:156500 -k1,16889:15037207,28809105:156499 -k1,16889:15549567,28809105:156500 -k1,16889:16562623,28809105:156500 -k1,16889:17378415,28809105:156500 -k1,16889:20508939,28809105:156500 -k1,16889:21856884,28809105:156500 -k1,16889:23731738,28809105:156500 -k1,16889:24504276,28809105:156500 -k1,16889:25679860,28809105:156499 -k1,16889:29202289,28809105:156500 -k1,16889:30018081,28809105:156500 -k1,16889:31193666,28809105:156500 -k1,16889:32583029,28809105:0 -) -(1,16890:6630773,29650593:25952256,513147,134348 -g1,16889:11494855,29650593 -g1,16889:14069109,29650593 -g1,16889:15835959,29650593 -g1,16889:17779101,29650593 -g1,16889:20200001,29650593 -g1,16889:21050658,29650593 -g1,16889:22268972,29650593 -g1,16889:25417976,29650593 -k1,16890:32583029,29650593:4902750 -g1,16890:32583029,29650593 -) -(1,16891:6630773,31278513:25952256,485622,126483 -(1,16891:6630773,31278513:0,0,0 -g1,16891:6630773,31278513 -) -k1,16891:32583029,31278513:22798664 -g1,16891:32583029,31278513 -) -(1,16894:6630773,32513217:25952256,505283,134348 -k1,16892:7606755,32513217:146952 -k1,16892:10690375,32513217:146952 -k1,16892:11856412,32513217:146952 -k1,16892:14872530,32513217:146952 -k1,16892:18109505,32513217:146952 -k1,16892:20111781,32513217:146952 -k1,16892:21526198,32513217:146951 -k1,16892:22029010,32513217:146952 -k1,16892:24201680,32513217:146952 -k1,16892:26308158,32513217:146952 -k1,16892:27323462,32513217:146952 -k1,16892:30315332,32513217:146952 -k1,16892:31554769,32513217:146952 -k1,16894:32583029,32513217:0 -) -(1,16894:6630773,33354705:25952256,505283,134348 -k1,16892:8725118,33354705:162999 -(1,16892:8725118,33354705:0,414482,115847 -r1,16903:9083384,33354705:358266,530329,115847 -k1,16892:8725118,33354705:-358266 -) -(1,16892:8725118,33354705:358266,414482,115847 -k1,16892:8725118,33354705:3277 -h1,16892:9080107,33354705:0,411205,112570 -) -k1,16892:9246383,33354705:162999 -k1,16892:10600827,33354705:162999 -k1,16892:14972548,33354705:162999 -(1,16892:14972548,33354705:0,435480,115847 -r1,16903:16034237,33354705:1061689,551327,115847 -k1,16892:14972548,33354705:-1061689 -) -(1,16892:14972548,33354705:1061689,435480,115847 -k1,16892:14972548,33354705:3277 -h1,16892:16030960,33354705:0,411205,112570 -) -k1,16892:16370906,33354705:162999 -k1,16892:17914749,33354705:162999 -k1,16892:20102811,33354705:163000 -k1,16892:22311844,33354705:162999 -k1,16892:24418641,33354705:162999 -k1,16892:25267802,33354705:162999 -k1,16892:26299153,33354705:162999 -k1,16892:28104484,33354705:162999 -k1,16892:30293201,33354705:162999 -k1,16892:32583029,33354705:0 -) -(1,16894:6630773,34196193:25952256,505283,134348 -g1,16892:7591530,34196193 -g1,16892:11635101,34196193 -g1,16892:14021922,34196193 -g1,16892:17174859,34196193 -g1,16892:18025516,34196193 -g1,16892:20037471,34196193 -k1,16894:32583029,34196193:12545558 -g1,16894:32583029,34196193 -) -v1,16896:6630773,35561969:0,393216,0 -(1,16897:6630773,38608019:25952256,3439266,0 -g1,16897:6630773,38608019 -g1,16897:6303093,38608019 -r1,16903:6401397,38608019:98304,3439266,0 -g1,16897:6600626,38608019 -g1,16897:6797234,38608019 -[1,16897:6797234,38608019:25785795,3439266,0 -(1,16897:6797234,35957072:25785795,788319,218313 -(1,16896:6797234,35957072:0,788319,218313 -r1,16903:7917113,35957072:1119879,1006632,218313 -k1,16896:6797234,35957072:-1119879 -) -(1,16896:6797234,35957072:1119879,788319,218313 -) -k1,16896:8128369,35957072:211256 -k1,16896:8456049,35957072:327680 -k1,16896:9863993,35957072:211257 -k1,16896:10490080,35957072:211244 -k1,16896:13727133,35957072:211256 -k1,16896:18561954,35957072:211256 -k1,16896:19424638,35957072:211256 -k1,16896:20654980,35957072:211257 -k1,16896:23628579,35957072:211256 -k1,16896:26709001,35957072:211256 -k1,16896:27579549,35957072:211256 -k1,16896:28809891,35957072:211257 -k1,16896:31923737,35957072:211256 -k1,16896:32583029,35957072:0 -) -(1,16897:6797234,36798560:25785795,513147,134348 -k1,16896:9781198,36798560:264875 -k1,16896:11521287,36798560:264874 -k1,16896:15107527,36798560:264875 -k1,16896:17440717,36798560:264874 -k1,16896:19099543,36798560:264875 -k1,16896:20383502,36798560:264874 -k1,16896:21954510,36798560:264875 -k1,16896:23352502,36798560:264874 -k1,16896:25649648,36798560:264875 -k1,16896:28192553,36798560:264874 -k1,16896:29070190,36798560:264875 -k1,16896:30843703,36798560:264874 -k1,16896:32583029,36798560:0 -) -(1,16897:6797234,37640048:25785795,505283,134348 -k1,16896:10175038,37640048:203240 -k1,16896:13516141,37640048:203239 -(1,16896:13723235,37640048:0,414482,115847 -r1,16903:14784924,37640048:1061689,530329,115847 -k1,16896:13723235,37640048:-1061689 -) -(1,16896:13723235,37640048:1061689,414482,115847 -k1,16896:13723235,37640048:3277 -h1,16896:14781647,37640048:0,411205,112570 -) -k1,16896:15368928,37640048:203240 -k1,16896:18735591,37640048:203240 -k1,16896:21807996,37640048:203239 -(1,16896:22015090,37640048:0,414482,122846 -r1,16903:24131915,37640048:2116825,537328,122846 -k1,16896:22015090,37640048:-2116825 -) -(1,16896:22015090,37640048:2116825,414482,122846 -k1,16896:22015090,37640048:3277 -h1,16896:24128638,37640048:0,411205,112570 -) -k1,16896:24715919,37640048:203240 -k1,16896:27772596,37640048:203239 -(1,16896:27979690,37640048:0,414482,115847 -r1,16903:30096515,37640048:2116825,530329,115847 -k1,16896:27979690,37640048:-2116825 -) -(1,16896:27979690,37640048:2116825,414482,115847 -k1,16896:27979690,37640048:3277 -h1,16896:30093238,37640048:0,411205,112570 -) -k1,16896:30680519,37640048:203240 -k1,16896:32583029,37640048:0 -) -(1,16897:6797234,38481536:25785795,505283,126483 -(1,16896:7004328,38481536:0,452978,115847 -r1,16903:9472865,38481536:2468537,568825,115847 -k1,16896:7004328,38481536:-2468537 -) -(1,16896:7004328,38481536:2468537,452978,115847 -k1,16896:7004328,38481536:3277 -h1,16896:9469588,38481536:0,411205,112570 -) -g1,16896:10052858,38481536 -g1,16896:13659959,38481536 -g1,16896:16435408,38481536 -(1,16896:16642502,38481536:0,452978,115847 -r1,16903:19111039,38481536:2468537,568825,115847 -k1,16896:16642502,38481536:-2468537 -) -(1,16896:16642502,38481536:2468537,452978,115847 -k1,16896:16642502,38481536:3277 -h1,16896:19107762,38481536:0,411205,112570 -) -g1,16896:19691032,38481536 -g1,16896:21081706,38481536 -g1,16896:23597633,38481536 -(1,16896:23804727,38481536:0,452978,115847 -r1,16903:26273264,38481536:2468537,568825,115847 -k1,16896:23804727,38481536:-2468537 -) -(1,16896:23804727,38481536:2468537,452978,115847 -k1,16896:23804727,38481536:3277 -h1,16896:26269987,38481536:0,411205,112570 -) -k1,16897:32583029,38481536:5929001 -g1,16897:32583029,38481536 -) -] -g1,16897:32583029,38608019 -) -h1,16897:6630773,38608019:0,0,0 -(1,16899:6630773,40699279:25952256,564462,147783 -(1,16899:6630773,40699279:2450326,534184,12975 -g1,16899:6630773,40699279 -g1,16899:9081099,40699279 -) -g1,16899:10697348,40699279 -g1,16899:14321293,40699279 -g1,16899:15290899,40699279 -g1,16899:16672857,40699279 -k1,16899:32583029,40699279:12616398 -g1,16899:32583029,40699279 -) -(1,16903:6630773,41933983:25952256,513147,134348 -k1,16902:7307559,41933983:189198 -(1,16902:7307559,41933983:0,452978,122846 -r1,16903:8720960,41933983:1413401,575824,122846 -k1,16902:7307559,41933983:-1413401 -) -(1,16902:7307559,41933983:1413401,452978,122846 -k1,16902:7307559,41933983:3277 -h1,16902:8717683,41933983:0,411205,112570 -) -k1,16902:8910168,41933983:189208 -k1,16902:10376673,41933983:189208 -k1,16902:12525407,41933983:189208 -k1,16902:13246111,41933983:189207 -k1,16902:14206022,41933983:189208 -k1,16902:14810063,41933983:189198 -k1,16902:16958797,41933983:189208 -k1,16902:17807297,41933983:189208 -k1,16902:19779084,41933983:189208 -(1,16902:19779084,41933983:0,452978,115847 -r1,16903:21895909,41933983:2116825,568825,115847 -k1,16902:19779084,41933983:-2116825 -) -(1,16902:19779084,41933983:2116825,452978,115847 -k1,16902:19779084,41933983:3277 -h1,16902:21892632,41933983:0,411205,112570 -) -k1,16902:22085117,41933983:189208 -k1,16902:25636322,41933983:189208 -k1,16902:26844614,41933983:189207 -k1,16902:28972377,41933983:189208 -k1,16902:30353030,41933983:189208 -k1,16902:31931601,41933983:189208 -k1,16902:32583029,41933983:0 -) -(1,16903:6630773,42775471:25952256,513147,126483 -k1,16902:9828362,42775471:173758 -k1,16902:10357980,42775471:173758 -k1,16902:11982704,42775471:173757 -k1,16902:12626355,42775471:173758 -k1,16902:13331610,42775471:173758 -k1,16902:14652903,42775471:173758 -k1,16902:17966491,42775471:173758 -k1,16902:18756286,42775471:173757 -k1,16902:19949129,42775471:173758 -k1,16902:21893014,42775471:173758 -k1,16902:23351278,42775471:173758 -k1,16902:24544121,42775471:173758 -k1,16902:26093479,42775471:173757 -k1,16902:30198086,42775471:173758 -k1,16902:31319495,42775471:173758 -k1,16903:32583029,42775471:0 -) -(1,16903:6630773,43616959:25952256,513147,134348 -k1,16902:8883518,43616959:206056 -k1,16902:9547672,43616959:206057 -k1,16902:11021194,43616959:206056 -k1,16902:11583110,43616959:206056 -k1,16902:14738941,43616959:206056 -k1,16902:19609851,43616959:206057 -k1,16902:20347404,43616959:206056 -k1,16902:21572545,43616959:206056 -k1,16902:25235625,43616959:206056 -k1,16902:26100974,43616959:206057 -k1,16902:28887182,43616959:206056 -k1,16902:32095441,43616959:206056 -k1,16903:32583029,43616959:0 -) -(1,16903:6630773,44458447:25952256,513147,134348 -(1,16902:6630773,44458447:0,452978,122846 -r1,16903:8044174,44458447:1413401,575824,122846 -k1,16902:6630773,44458447:-1413401 -) -(1,16902:6630773,44458447:1413401,452978,122846 -k1,16902:6630773,44458447:3277 -h1,16902:8040897,44458447:0,411205,112570 -) -k1,16902:8202535,44458447:158361 -k1,16902:10320423,44458447:158362 -k1,16902:13180833,44458447:158361 -k1,16902:14358279,44458447:158361 -k1,16902:15906004,44458447:158362 -k1,16902:16680403,44458447:158361 -k1,16902:17995474,44458447:158361 -k1,16902:18836720,44458447:158361 -k1,16902:20645279,44458447:158362 -k1,16902:22193003,44458447:158361 -k1,16902:24557961,44458447:158361 -k1,16902:25907768,44458447:158362 -k1,16902:29903917,44458447:158361 -k1,16902:32583029,44458447:0 -) -(1,16903:6630773,45299935:25952256,513147,134348 -k1,16902:7588809,45299935:271874 -k1,16902:10886479,45299935:271873 -k1,16902:12349798,45299935:271874 -k1,16902:16406375,45299935:271873 -k1,16902:17750418,45299935:271874 -k1,16902:19088563,45299935:271874 -k1,16902:20325781,45299935:271873 -k1,16902:20953515,45299935:271874 -k1,16902:24322620,45299935:271874 -k1,16902:25253785,45299935:271873 -k1,16902:26544744,45299935:271874 -k1,16902:28093914,45299935:271873 -k1,16902:29633254,45299935:271874 -k1,16902:32583029,45299935:0 -) -] -(1,16903:32583029,45706769:0,0,0 -g1,16903:32583029,45706769 -) -) -] -(1,16903:6630773,47279633:25952256,0,0 -h1,16903:6630773,47279633:25952256,0,0 -) -] -(1,16903:4262630,4025873:0,0,0 -[1,16903:-473656,4025873:0,0,0 -(1,16903:-473656,-710413:0,0,0 -(1,16903:-473656,-710413:0,0,0 -g1,16903:-473656,-710413 -) -g1,16903:-473656,-710413 -) -] -) -] -!25993 -}291 -Input:2474:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2475:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2476:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2477:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2478:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2479:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2480:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!670 -{292 -[1,16937:4262630,47279633:28320399,43253760,0 -(1,16937:4262630,4025873:0,0,0 -[1,16937:-473656,4025873:0,0,0 -(1,16937:-473656,-710413:0,0,0 -(1,16937:-473656,-644877:0,0,0 -k1,16937:-473656,-644877:-65536 +[1,17033:3078558,4812305:0,0,0 +(1,17033:3078558,49800853:0,16384,2228224 +g1,17033:29030814,49800853 +g1,17033:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,17033:36151628,51504789:16384,1179648,0 ) -(1,16937:-473656,4736287:0,0,0 -k1,16937:-473656,4736287:5209943 -) -g1,16937:-473656,-710413 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] ) -[1,16937:6630773,47279633:25952256,43253760,0 -[1,16937:6630773,4812305:25952256,786432,0 -(1,16937:6630773,4812305:25952256,513147,134348 -(1,16937:6630773,4812305:25952256,513147,134348 -g1,16937:3078558,4812305 -[1,16937:3078558,4812305:0,0,0 -(1,16937:3078558,2439708:0,1703936,0 -k1,16937:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,16937:2537886,2439708:1179648,16384,0 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,17033:37855564,49800853:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,16937:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,17033:3078556,49800853:-34777008 ) ] -) +g1,17033:6630773,4812305 ) ) ] -[1,16937:3078558,4812305:0,0,0 -(1,16937:3078558,2439708:0,1703936,0 -g1,16937:29030814,2439708 -g1,16937:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,16937:36151628,1915420:16384,1179648,0 +[1,17033:6630773,45706769:25952256,40108032,0 +(1,17033:6630773,45706769:25952256,40108032,0 +(1,17033:6630773,45706769:0,0,0 +g1,17033:6630773,45706769 +) +[1,17033:6630773,45706769:25952256,40108032,0 +[1,16983:6630773,11797421:25952256,6198684,0 +(1,16983:6630773,6633157:25952256,1165492,28311 +h1,16983:6630773,6633157:0,0,0 +k1,16983:20096848,6633157:12486181 +k1,16983:32583029,6633157:12486181 +) +(1,16983:6630773,7380277:25952256,32768,229376 +(1,16983:6630773,7380277:0,32768,229376 +(1,16983:6630773,7380277:5505024,32768,229376 +r1,17033:12135797,7380277:5505024,262144,229376 +) +k1,16983:6630773,7380277:-5505024 +) +(1,16983:6630773,7380277:25952256,32768,0 +r1,17033:32583029,7380277:25952256,32768,0 +) +) +(1,16983:6630773,9215293:25952256,923664,227671 +h1,16983:6630773,9215293:0,0,0 +g1,16983:7798625,9215293 +g1,16983:14300845,9215293 +g1,16983:20321769,9215293 +g1,16983:21789251,9215293 +k1,16983:29715896,9215293:2867134 +k1,16983:32583029,9215293:2867133 +) +(1,16983:6630773,9962413:25952256,32768,0 +(1,16983:6630773,9962413:5505024,32768,0 +r1,17033:12135797,9962413:5505024,32768,0 +) +k1,16983:22359413,9962413:10223616 +k1,16983:32583029,9962413:10223616 +) +] +(1,16985:6630773,14713778:25952256,131072,0 +r1,17033:32583029,14713778:25952256,131072,0 +g1,16985:32583029,14713778 +g1,16985:32583029,14713778 +) +(1,16987:6630773,16057271:25952256,505283,134348 +k1,16987:8596853,16057271:1966080 +k1,16986:10284470,16057271:490930 +k1,16986:14933004,16057271:490930 +k1,16986:18059137,16057271:490930 +k1,16986:20858245,16057271:490930 +k1,16986:22540621,16057271:490931 +k1,16986:23932671,16057271:490930 +k1,16986:24955098,16057271:490930 +k1,16986:26062066,16057271:490930 +k1,16986:28449608,16057271:490930 +k1,16986:29591966,16057271:490930 +k1,16986:32583029,16057271:1966080 +) +(1,16987:6630773,16922351:25952256,513147,134348 +g1,16987:8596853,16922351 +g1,16986:13682446,16922351 +g1,16986:16374665,16922351 +g1,16986:19662606,16922351 +g1,16986:20521127,16922351 +g1,16986:22735588,16922351 +g1,16986:24126262,16922351 +k1,16987:30616949,16922351:3666085 +g1,16987:32583029,16922351 +) +(1,16988:6630773,18573863:25952256,513147,11795 +k1,16988:16902232,18573863:10271459 +h1,16988:16902232,18573863:0,0,0 +g1,16988:19479107,18573863 +g1,16988:21900662,18573863 +g1,16988:24357606,18573863 +g1,16988:25208263,18573863 +g1,16988:28382827,18573863 +g1,16988:30616949,18573863 +g1,16988:32583029,18573863 +) +(1,16989:6630773,19438943:25952256,513147,126483 +k1,16989:17763375,19438943:11132602 +h1,16988:17763375,19438943:0,0,0 +g1,16988:18865690,19438943 +g1,16988:21993723,19438943 +g1,16988:23556101,19438943 +g1,16988:26159191,19438943 +g1,16988:26981667,19438943 +g1,16988:29023113,19438943 +g1,16989:30616949,19438943 +g1,16989:32583029,19438943 +) +(1,16989:6630773,20697239:25952256,131072,0 +r1,17033:32583029,20697239:25952256,131072,0 +g1,16989:32583029,20697239 +g1,16989:34549109,20697239 +) +(1,17010:6630773,24314831:25952256,32768,229376 +(1,17010:6630773,24314831:0,32768,229376 +(1,17010:6630773,24314831:5505024,32768,229376 +r1,17033:12135797,24314831:5505024,262144,229376 +) +k1,17010:6630773,24314831:-5505024 +) +(1,17010:6630773,24314831:25952256,32768,0 +r1,17033:32583029,24314831:25952256,32768,0 +) +) +(1,17010:6630773,25946683:25952256,615776,151780 +(1,17010:6630773,25946683:1974731,582746,14155 +g1,17010:6630773,25946683 +g1,17010:8605504,25946683 +) +g1,17010:10904245,25946683 +g1,17010:11961996,25946683 +g1,17010:13695292,25946683 +k1,17010:32583029,25946683:15886712 +g1,17010:32583029,25946683 +) +(1,17013:6630773,27204979:25952256,505283,134348 +k1,17012:8650090,27204979:186930 +k1,17012:10428890,27204979:186930 +k1,17012:12005182,27204979:186929 +k1,17012:14716559,27204979:186930 +k1,17012:17479709,27204979:186930 +k1,17012:18658199,27204979:186930 +k1,17012:21629098,27204979:186930 +k1,17012:22467455,27204979:186929 +k1,17012:23069216,27204979:186918 +k1,17012:25140961,27204979:186930 +k1,17012:26761818,27204979:186929 +k1,17012:27537261,27204979:186930 +k1,17012:30304343,27204979:186930 +k1,17012:32583029,27204979:0 +) +(1,17013:6630773,28070059:25952256,505283,134348 +k1,17012:9088424,28070059:214353 +k1,17012:11103707,28070059:214354 +k1,17012:12509505,28070059:214353 +k1,17012:15304011,28070059:214354 +k1,17012:18346897,28070059:214353 +k1,17012:21692561,28070059:214354 +k1,17012:23098359,28070059:214353 +k1,17012:25466226,28070059:214354 +k1,17012:27655225,28070059:214399 +k1,17012:28888663,28070059:214353 +k1,17012:30251208,28070059:214354 +k1,17012:31622271,28070059:214353 +k1,17013:32583029,28070059:0 +) +(1,17013:6630773,28935139:25952256,513147,134348 +k1,17012:7822268,28935139:201246 +k1,17012:9042599,28935139:201246 +k1,17012:10845545,28935139:201246 +k1,17012:13035153,28935139:201246 +k1,17012:14427844,28935139:201246 +k1,17012:17539544,28935139:201246 +k1,17012:19342489,28935139:201245 +k1,17012:22043934,28935139:201246 +k1,17012:24491099,28935139:201246 +k1,17012:27476314,28935139:201246 +k1,17012:28293598,28935139:201246 +k1,17012:28909685,28935139:201244 +k1,17012:30058582,28935139:201246 +k1,17012:32583029,28935139:0 +) +(1,17013:6630773,29800219:25952256,513147,134348 +k1,17012:8368586,29800219:174779 +k1,17012:10033655,29800219:174780 +k1,17012:11380873,29800219:174779 +k1,17012:14317996,29800219:174780 +k1,17012:15757620,29800219:174779 +k1,17012:16591691,29800219:174779 +k1,17012:19485560,29800219:174780 +k1,17012:22884710,29800219:174779 +k1,17012:24336130,29800219:174779 +k1,17012:26254823,29800219:174780 +k1,17012:27942828,29800219:174779 +k1,17012:28769036,29800219:174780 +k1,17012:31563944,29800219:174779 +k1,17012:32583029,29800219:0 +) +(1,17013:6630773,30665299:25952256,505283,134348 +k1,17012:9524389,30665299:181736 +k1,17012:12655901,30665299:181737 +k1,17012:15706803,30665299:181736 +k1,17012:17382106,30665299:181737 +k1,17012:18250004,30665299:181736 +k1,17012:19930548,30665299:181736 +k1,17012:21303730,30665299:181737 +k1,17012:24334316,30665299:181736 +k1,17012:25507612,30665299:181736 +k1,17012:28473318,30665299:181737 +k1,17012:29271092,30665299:181736 +k1,17012:30041342,30665299:181737 +k1,17012:31966991,30665299:181736 +k1,17012:32583029,30665299:0 +) +(1,17013:6630773,31530379:25952256,505283,134348 +g1,17012:8263930,31530379 +g1,17012:8878002,31530379 +g1,17012:10268676,31530379 +g1,17012:10823765,31530379 +g1,17012:12941888,31530379 +g1,17012:14297827,31530379 +g1,17012:15113094,31530379 +g1,17012:16331408,31530379 +g1,17012:18156584,31530379 +g1,17012:20935965,31530379 +g1,17012:23655054,31530379 +k1,17013:32583029,31530379:6953375 +g1,17013:32583029,31530379 +) +(1,17015:6630773,32395459:25952256,513147,134348 +h1,17014:6630773,32395459:983040,0,0 +k1,17014:8497188,32395459:255540 +k1,17014:9955969,32395459:255540 +k1,17014:12629132,32395459:255540 +k1,17014:14055144,32395459:255539 +k1,17014:15443146,32395459:255540 +k1,17014:17310216,32395459:255540 +k1,17014:18584841,32395459:255540 +k1,17014:21672192,32395459:255540 +k1,17014:22587024,32395459:255540 +k1,17014:23861649,32395459:255540 +k1,17014:26443061,32395459:255539 +k1,17014:29601191,32395459:255540 +k1,17014:30516023,32395459:255540 +k1,17015:32583029,32395459:0 +) +(1,17015:6630773,33260539:25952256,505283,134348 +k1,17014:7891733,33260539:222214 +k1,17014:8923317,33260539:222214 +k1,17014:11031002,33260539:222214 +k1,17014:13833367,33260539:222213 +k1,17014:16884114,33260539:222214 +k1,17014:17637825,33260539:222214 +k1,17014:19888378,33260539:222214 +k1,17014:21364296,33260539:222214 +k1,17014:22718972,33260539:222214 +k1,17014:24227002,33260539:222214 +k1,17014:26060745,33260539:222213 +k1,17014:27613340,33260539:222214 +k1,17014:28486982,33260539:222214 +k1,17014:30351528,33260539:222214 +k1,17014:32583029,33260539:0 +) +(1,17015:6630773,34125619:25952256,513147,134348 +k1,17014:8513118,34125619:165957 +k1,17014:9338368,34125619:165958 +k1,17014:10893688,34125619:165957 +k1,17014:12667244,34125619:165958 +k1,17014:14227152,34125619:165957 +k1,17014:16973261,34125619:165957 +k1,17014:20141422,34125619:165958 +k1,17014:21125268,34125619:165957 +k1,17014:21647085,34125619:165957 +k1,17014:25895936,34125619:165958 +k1,17014:26721185,34125619:165957 +k1,17014:27906228,34125619:165958 +k1,17014:31391584,34125619:165957 +k1,17014:32583029,34125619:0 +) +(1,17015:6630773,34990699:25952256,513147,134348 +k1,17014:9765142,34990699:160345 +k1,17014:10584779,34990699:160345 +k1,17014:13747327,34990699:160345 +k1,17014:15659449,34990699:160345 +k1,17014:19549447,34990699:160344 +k1,17014:22620246,34990699:160345 +k1,17014:25923042,34990699:160345 +k1,17014:26871785,34990699:160345 +k1,17014:31107814,34990699:160345 +k1,17014:32583029,34990699:0 +) +(1,17015:6630773,35855779:25952256,513147,126483 +k1,17014:8332267,35855779:191544 +k1,17014:11784883,35855779:191545 +k1,17014:13167872,35855779:191544 +k1,17014:16499247,35855779:191545 +k1,17014:17306829,35855779:191544 +k1,17014:19474284,35855779:191545 +k1,17014:23640587,35855779:191544 +k1,17014:26766833,35855779:191544 +k1,17014:27171362,35855779:191537 +k1,17014:28495369,35855779:191545 +k1,17014:30424928,35855779:191544 +k1,17014:32583029,35855779:0 +) +(1,17015:6630773,36720859:25952256,513147,134348 +g1,17014:7639372,36720859 +g1,17014:10418753,36720859 +g1,17014:13446515,36720859 +g1,17014:15021345,36720859 +g1,17014:17253501,36720859 +g1,17014:20764920,36720859 +g1,17014:21320009,36720859 +g1,17014:22652356,36720859 +g1,17014:23510877,36720859 +g1,17014:25406833,36720859 +k1,17015:32583029,36720859:3599896 +g1,17015:32583029,36720859 +) +(1,17016:6630773,39552019:25952256,32768,229376 +(1,17016:6630773,39552019:0,32768,229376 +(1,17016:6630773,39552019:5505024,32768,229376 +r1,17033:12135797,39552019:5505024,262144,229376 +) +k1,17016:6630773,39552019:-5505024 +) +(1,17016:6630773,39552019:25952256,32768,0 +r1,17033:32583029,39552019:25952256,32768,0 +) +) +(1,17016:6630773,41183871:25952256,606339,161218 +(1,17016:6630773,41183871:1974731,582746,14155 +g1,17016:6630773,41183871 +g1,17016:8605504,41183871 +) +g1,17016:12473177,41183871 +g1,17016:14599689,41183871 +g1,17016:15614973,41183871 +g1,17016:17348269,41183871 +k1,17016:32583029,41183871:12233735 +g1,17016:32583029,41183871 +) +(1,17021:6630773,42442167:25952256,513147,134348 +k1,17020:7270841,42442167:162311 +k1,17020:8452237,42442167:162311 +k1,17020:11525002,42442167:162311 +k1,17020:13200538,42442167:162310 +k1,17020:13978887,42442167:162311 +k1,17020:15344439,42442167:162311 +k1,17020:17924373,42442167:162311 +k1,17020:19078244,42442167:162311 +k1,17020:20306826,42442167:162311 +k1,17020:21434482,42442167:162311 +k1,17020:24334231,42442167:162310 +k1,17020:25112580,42442167:162311 +k1,17020:26733722,42442167:162311 +k1,17020:30145963,42442167:162311 +k1,17020:31478747,42442167:162311 +k1,17020:32583029,42442167:0 +) +(1,17021:6630773,43307247:25952256,505283,134348 +g1,17020:8799359,43307247 +g1,17020:10637643,43307247 +g1,17020:11523034,43307247 +g1,17020:13797788,43307247 +g1,17020:16039119,43307247 +g1,17020:16924510,43307247 +g1,17020:18512447,43307247 +g1,17020:19397838,43307247 +g1,17020:22177219,43307247 +g1,17020:26182778,43307247 +g1,17020:26913504,43307247 +g1,17020:29447125,43307247 +k1,17021:32583029,43307247:224795 +g1,17021:32583029,43307247 +) +v1,17023:6630773,43992102:0,393216,0 +(1,17027:6630773,44332785:25952256,733899,196608 +g1,17027:6630773,44332785 +g1,17027:6630773,44332785 +g1,17027:6434165,44332785 +(1,17027:6434165,44332785:0,733899,196608 +r1,17033:32779637,44332785:26345472,930507,196608 +k1,17027:6434165,44332785:-26345472 +) +(1,17027:6434165,44332785:26345472,733899,196608 +[1,17027:6630773,44332785:25952256,537291,0 +(1,17025:6630773,44219933:25952256,424439,112852 +(1,17024:6630773,44219933:0,0,0 +g1,17024:6630773,44219933 +g1,17024:6630773,44219933 +g1,17024:6303093,44219933 +(1,17024:6303093,44219933:0,0,0 +) +g1,17024:6630773,44219933 +) +k1,17025:6630773,44219933:0 +h1,17025:21236746,44219933:0,0,0 +k1,17025:32583029,44219933:11346283 +g1,17025:32583029,44219933 +) +] +) +g1,17027:32583029,44332785 +g1,17027:6630773,44332785 +g1,17027:6630773,44332785 +g1,17027:32583029,44332785 +g1,17027:32583029,44332785 +) +h1,17027:6630773,44529393:0,0,0 +(1,17031:6630773,45394473:25952256,513147,126483 +h1,17030:6630773,45394473:983040,0,0 +k1,17030:8614266,45394473:171423 +k1,17030:9903734,45394473:171424 +k1,17030:11094242,45394473:171423 +k1,17030:14257384,45394473:171423 +k1,17030:17187217,45394473:171423 +k1,17030:17974679,45394473:171424 +k1,17030:19349343,45394473:171423 +k1,17030:22112060,45394473:171423 +k1,17030:23453957,45394473:171424 +k1,17030:25155646,45394473:171423 +k1,17030:26633202,45394473:171423 +k1,17030:27456053,45394473:171423 +k1,17030:29003733,45394473:171424 +k1,17030:30867296,45394473:171423 +k1,17031:32583029,45394473:0 +) +] +(1,17033:32583029,45706769:0,0,0 +g1,17033:32583029,45706769 +) +) +] +(1,17033:6630773,47279633:25952256,485622,11795 +(1,17033:6630773,47279633:25952256,485622,11795 +(1,17033:6630773,47279633:0,0,0 +v1,17033:6630773,47279633:0,0,0 +) +g1,17033:6830002,47279633 +k1,17033:31387652,47279633:24557650 +) +) +] +(1,17033:4262630,4025873:0,0,0 +[1,17033:-473656,4025873:0,0,0 +(1,17033:-473656,-710413:0,0,0 +(1,17033:-473656,-710413:0,0,0 +g1,17033:-473656,-710413 +) +g1,17033:-473656,-710413 +) +] +) +] +!15796 +}272 +!12 +{273 +[1,17063:4262630,47279633:28320399,43253760,0 +(1,17063:4262630,4025873:0,0,0 +[1,17063:-473656,4025873:0,0,0 +(1,17063:-473656,-710413:0,0,0 +(1,17063:-473656,-644877:0,0,0 +k1,17063:-473656,-644877:-65536 +) +(1,17063:-473656,4736287:0,0,0 +k1,17063:-473656,4736287:5209943 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +g1,17063:-473656,-710413 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,16937:37855564,2439708:1179648,16384,0 +[1,17063:6630773,47279633:25952256,43253760,0 +[1,17063:6630773,4812305:25952256,786432,0 +(1,17063:6630773,4812305:25952256,513147,126483 +(1,17063:6630773,4812305:25952256,513147,126483 +g1,17063:3078558,4812305 +[1,17063:3078558,4812305:0,0,0 +(1,17063:3078558,2439708:0,1703936,0 +k1,17063:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,17063:2537886,2439708:1179648,16384,0 ) +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,17063:3078558,1915420:16384,1179648,0 ) -k1,16937:3078556,2439708:-34777008 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] -[1,16937:3078558,4812305:0,0,0 -(1,16937:3078558,49800853:0,16384,2228224 -k1,16937:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,16937:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,16937:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 -) -] -) -) -) -] -[1,16937:3078558,4812305:0,0,0 -(1,16937:3078558,49800853:0,16384,2228224 -g1,16937:29030814,49800853 -g1,16937:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,16937:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] -) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,16937:37855564,49800853:1179648,16384,0 -) -) -k1,16937:3078556,49800853:-34777008 -) -] -g1,16937:6630773,4812305 -g1,16937:6630773,4812305 -g1,16937:8017514,4812305 -g1,16937:11261546,4812305 -g1,16937:12076813,4812305 -g1,16937:14985956,4812305 -k1,16937:31387652,4812305:16401696 -) -) -] -[1,16937:6630773,45706769:25952256,40108032,0 -(1,16937:6630773,45706769:25952256,40108032,0 -(1,16937:6630773,45706769:0,0,0 -g1,16937:6630773,45706769 -) -[1,16937:6630773,45706769:25952256,40108032,0 -(1,16903:6630773,6254097:25952256,513147,134348 -k1,16902:9269312,6254097:175041 -k1,16902:10909737,6254097:175040 -k1,16902:12474141,6254097:175041 -k1,16902:17816696,6254097:175041 -k1,16902:19183181,6254097:175040 -k1,16902:22455453,6254097:175041 -k1,16902:23289785,6254097:175040 -k1,16902:24483911,6254097:175041 -k1,16902:25936249,6254097:175041 -k1,16902:27378755,6254097:175040 -k1,16902:30130016,6254097:175041 -k1,16903:32583029,6254097:0 -) -(1,16903:6630773,7095585:25952256,513147,134348 -k1,16902:8435260,7095585:206719 -k1,16902:11528185,7095585:206719 -k1,16902:12421066,7095585:206719 -k1,16902:15577561,7095585:206720 -k1,16902:18074108,7095585:206719 -k1,16902:18963712,7095585:206719 -k1,16902:21148964,7095585:206719 -k1,16902:22708346,7095585:206719 -k1,16902:24577713,7095585:206719 -k1,16902:25397194,7095585:206719 -k1,16902:26622999,7095585:206720 -k1,16902:28255126,7095585:206719 -k1,16902:29121137,7095585:206719 -k1,16902:31900144,7095585:206719 -k1,16902:32583029,7095585:0 -) -(1,16903:6630773,7937073:25952256,513147,134348 -g1,16902:9893155,7937073 -g1,16902:11111469,7937073 -g1,16902:12761665,7937073 -g1,16902:14203457,7937073 -g1,16902:16100724,7937073 -g1,16902:18333535,7937073 -g1,16902:18888624,7937073 -g1,16902:21342947,7937073 -g1,16902:22193604,7937073 -g1,16902:22748693,7937073 -k1,16903:32583029,7937073:8677626 -g1,16903:32583029,7937073 -) -(1,16905:6630773,8778561:25952256,513147,134348 -h1,16904:6630773,8778561:983040,0,0 -k1,16904:8723774,8778561:280931 -k1,16904:12669478,8778561:280931 -k1,16904:15306428,8778561:280931 -k1,16904:16455711,8778561:280931 -k1,16904:18917025,8778561:280931 -k1,16904:20504090,8778561:280932 -k1,16904:22465364,8778561:280931 -k1,16904:23362333,8778561:280931 -k1,16904:25486136,8778561:280931 -k1,16904:26426359,8778561:280931 -k1,16904:27726375,8778561:280931 -k1,16904:30957081,8778561:280931 -k1,16905:32583029,8778561:0 -) -(1,16905:6630773,9620049:25952256,513147,134348 -k1,16904:9494393,9620049:234316 -k1,16904:10388002,9620049:234317 -k1,16904:11641403,9620049:234316 -k1,16904:13326687,9620049:234317 -k1,16904:15215787,9620049:234316 -k1,16904:15981600,9620049:234316 -k1,16904:16571777,9620049:234317 -k1,16904:20596040,9620049:234316 -k1,16904:22388147,9620049:234316 -k1,16904:24083262,9620049:234317 -k1,16904:26203049,9620049:234316 -k1,16904:28325458,9620049:234317 -k1,16904:31821501,9620049:234316 -k1,16904:32583029,9620049:0 -) -(1,16905:6630773,10461537:25952256,513147,134348 -k1,16904:9633699,10461537:240583 -k1,16904:12824056,10461537:240582 -k1,16904:15354467,10461537:240583 -k1,16904:16586609,10461537:240582 -k1,16904:18183787,10461537:240583 -k1,16904:19899585,10461537:240583 -k1,16904:21697958,10461537:240582 -k1,16904:24640590,10461537:240583 -k1,16904:27102843,10461537:240582 -k1,16904:30293201,10461537:240583 -k1,16904:32583029,10461537:0 -) -(1,16905:6630773,11303025:25952256,513147,134348 -k1,16904:10326863,11303025:218750 -k1,16904:12113233,11303025:218749 -k1,16904:13351068,11303025:218750 -k1,16904:15223291,11303025:218750 -k1,16904:17005074,11303025:218749 -k1,16904:18420511,11303025:218750 -k1,16904:19787452,11303025:218750 -k1,16904:21563992,11303025:218749 -k1,16904:23748167,11303025:218750 -k1,16904:24498413,11303025:218749 -k1,16904:25736248,11303025:218750 -k1,16904:28628867,11303025:218750 -k1,16904:30039061,11303025:218749 -k1,16904:31276896,11303025:218750 -k1,16904:32583029,11303025:0 -) -(1,16905:6630773,12144513:25952256,505283,134348 -k1,16904:8013255,12144513:225772 -k1,16904:10204451,12144513:225771 -k1,16904:11449308,12144513:225772 -k1,16904:15206814,12144513:225771 -k1,16904:18487874,12144513:225772 -k1,16904:21003474,12144513:225772 -k1,16904:21845283,12144513:225771 -k1,16904:23963079,12144513:225772 -k1,16904:26076942,12144513:225771 -k1,16904:28752450,12144513:225772 -k1,16904:30722134,12144513:225771 -k1,16904:31563944,12144513:225772 -k1,16904:32583029,12144513:0 -) -(1,16905:6630773,12986001:25952256,513147,134348 -k1,16904:8754391,12986001:235526 -k1,16904:10858349,12986001:235527 -k1,16904:12732930,12986001:235526 -k1,16904:13434417,12986001:235526 -k1,16904:15178583,12986001:235527 -k1,16904:18300970,12986001:235526 -k1,16904:21079293,12986001:235526 -k1,16904:24277702,12986001:235526 -k1,16904:26800436,12986001:235527 -k1,16904:28055047,12986001:235526 -k1,16904:30178665,12986001:235526 -k1,16904:31030230,12986001:235527 -k1,16904:31621616,12986001:235526 -k1,16905:32583029,12986001:0 -) -(1,16905:6630773,13827489:25952256,505283,134348 -k1,16904:8112542,13827489:204472 -k1,16904:10053718,13827489:204472 -k1,16904:11277276,13827489:204473 -k1,16904:13135221,13827489:204472 -k1,16904:14729056,13827489:204472 -k1,16904:16124973,13827489:204472 -k1,16904:19467310,13827489:204473 -k1,16904:20323210,13827489:204472 -k1,16904:23875916,13827489:204472 -k1,16904:25283629,13827489:204472 -k1,16904:26019598,13827489:204472 -k1,16904:27290342,13827489:204473 -k1,16904:31010165,13827489:204472 -k1,16904:32113136,13827489:204472 -k1,16904:32583029,13827489:0 -) -(1,16905:6630773,14668977:25952256,513147,134348 -k1,16904:7366087,14668977:203817 -k1,16904:10199864,14668977:203817 -k1,16904:11055109,14668977:203817 -k1,16904:12901258,14668977:203817 -k1,16904:13460935,14668977:203817 -k1,16904:15690470,14668977:203817 -k1,16904:17813181,14668977:203817 -k1,16904:19036083,14668977:203817 -k1,16904:21127992,14668977:203817 -k1,16904:22323369,14668977:203817 -k1,16904:23978153,14668977:203817 -k1,16904:28188841,14668977:203817 -k1,16904:29051950,14668977:203817 -k1,16904:30707389,14668977:203817 -k1,16904:32583029,14668977:0 -) -(1,16905:6630773,15510465:25952256,505283,134348 -g1,16904:9661157,15510465 -g1,16904:10879471,15510465 -g1,16904:12981210,15510465 -g1,16904:14371884,15510465 -g1,16904:17095560,15510465 -g1,16904:18642209,15510465 -g1,16904:19832998,15510465 -g1,16904:22161492,15510465 -g1,16904:24518166,15510465 -g1,16904:26876806,15510465 -k1,16905:32583029,15510465:3893497 -g1,16905:32583029,15510465 -) -(1,16909:6630773,16351953:25952256,513147,134348 -h1,16908:6630773,16351953:983040,0,0 -k1,16908:8334728,16351953:233327 -k1,16908:10809420,16351953:233361 -k1,16908:14693792,16351953:233361 -k1,16908:15736523,16351953:233361 -k1,16908:18325904,16351953:233362 -k1,16908:19090762,16351953:233361 -k1,16908:20608629,16351953:233361 -k1,16908:21501282,16351953:233361 -k1,16908:22753728,16351953:233361 -k1,16908:25432238,16351953:233362 -k1,16908:26324891,16351953:233361 -k1,16908:29941220,16351953:233361 -k1,16908:31193666,16351953:233361 -k1,16908:32583029,16351953:0 -) -(1,16909:6630773,17193441:25952256,505283,134348 -k1,16908:8111184,17193441:212945 -k1,16908:8679989,17193441:212945 -k1,16908:11842709,17193441:212945 -k1,16908:16720507,17193441:212945 -k1,16908:18217958,17193441:212945 -k1,16908:19535185,17193441:212945 -k1,16908:20495897,17193441:212946 -k1,16908:23058963,17193441:212945 -k1,16908:24081278,17193441:212945 -k1,16908:26127265,17193441:212945 -k1,16908:27023095,17193441:212945 -k1,16908:29430841,17193441:212945 -k1,16908:30453156,17193441:212945 -k1,16908:31021961,17193441:212945 -k1,16909:32583029,17193441:0 -) -(1,16909:6630773,18034929:25952256,513147,126483 -k1,16908:8703021,18034929:344064 -k1,16908:11282518,18034929:344064 -k1,16908:12823269,18034929:344064 -k1,16908:18334847,18034929:344064 -k1,16908:21050659,18034929:344064 -k1,16908:22046151,18034929:344064 -k1,16908:23409299,18034929:344063 -k1,16908:25142726,18034929:344064 -k1,16908:26138218,18034929:344064 -k1,16908:28839612,18034929:344064 -k1,16908:30386917,18034929:344064 -k1,16908:31835263,18034929:344064 -k1,16908:32583029,18034929:0 -) -(1,16909:6630773,18876417:25952256,513147,134348 -k1,16908:9360113,18876417:202272 -k1,16908:10248547,18876417:202272 -k1,16908:10806680,18876417:202273 -k1,16908:13716244,18876417:202272 -k1,16908:15307879,18876417:202272 -k1,16908:16860193,18876417:202272 -k1,16908:19507614,18876417:202273 -k1,16908:22079013,18876417:202272 -k1,16908:22897323,18876417:202272 -k1,16908:25268181,18876417:202272 -k1,16908:26424002,18876417:202272 -k1,16908:29357160,18876417:202273 -k1,16908:30865565,18876417:202272 -k1,16908:31423697,18876417:202272 -k1,16909:32583029,18876417:0 -) -(1,16909:6630773,19717905:25952256,513147,134348 -k1,16908:7733908,19717905:176456 -k1,16908:12410720,19717905:176455 -k1,16908:14144967,19717905:176456 -k1,16908:14937461,19717905:176456 -k1,16908:15469777,19717905:176456 -k1,16908:17097199,19717905:176455 -k1,16908:19470422,19717905:176456 -k1,16908:20850119,19717905:176456 -k1,16908:23471723,19717905:176456 -k1,16908:24667263,19717905:176455 -k1,16908:28650705,19717905:176456 -k1,16908:31966991,19717905:176456 -k1,16908:32583029,19717905:0 -) -(1,16909:6630773,20559393:25952256,513147,134348 -k1,16908:7839055,20559393:189197 -k1,16908:9417616,20559393:189198 -k1,16908:12367845,20559393:189197 -k1,16908:13318571,20559393:189198 -k1,16908:14526853,20559393:189197 -k1,16908:16096895,20559393:189198 -k1,16908:16817589,20559393:189197 -k1,16908:20988754,20559393:189198 -k1,16908:22445417,20559393:189197 -k1,16908:26472403,20559393:189198 -k1,16908:27313028,20559393:189197 -k1,16908:29088197,20559393:189198 -k1,16908:29633254,20559393:189197 -k1,16908:32583029,20559393:0 -) -(1,16909:6630773,21400881:25952256,513147,134348 -k1,16908:11635340,21400881:166044 -k1,16908:12429220,21400881:166045 -k1,16908:15423797,21400881:166044 -k1,16908:18539617,21400881:166045 -k1,16908:21311372,21400881:166044 -k1,16908:22136709,21400881:166045 -k1,16908:22658613,21400881:166044 -k1,16908:24101955,21400881:166045 -k1,16908:25259559,21400881:166044 -k1,16908:28515627,21400881:166045 -k1,16908:29367833,21400881:166044 -k1,16908:32583029,21400881:0 -) -(1,16909:6630773,22242369:25952256,513147,126483 -k1,16908:8032891,22242369:210673 -k1,16908:9262649,22242369:210673 -k1,16908:14549740,22242369:210672 -k1,16908:17395616,22242369:210673 -k1,16908:19616934,22242369:210673 -k1,16908:20443645,22242369:210673 -k1,16908:21673402,22242369:210672 -k1,16908:23273438,22242369:210673 -k1,16908:24675556,22242369:210673 -k1,16908:26896874,22242369:210673 -k1,16908:27766838,22242369:210672 -k1,16908:28996596,22242369:210673 -k1,16908:32051532,22242369:210673 -k1,16908:32583029,22242369:0 -) -(1,16909:6630773,23083857:25952256,505283,126483 -k1,16908:10082352,23083857:190508 -k1,16908:11034388,23083857:190508 -k1,16908:13221778,23083857:190508 -k1,16908:14608974,23083857:190509 -k1,16908:16810127,23083857:190508 -k1,16908:17616673,23083857:190508 -k1,16908:18826266,23083857:190508 -k1,16908:20406137,23083857:190508 -k1,16908:21588205,23083857:190508 -k1,16908:22844985,23083857:190509 -k1,16908:26550844,23083857:190508 -k1,16908:29155698,23083857:190508 -k1,16908:31931601,23083857:190508 -k1,16908:32583029,23083857:0 -) -(1,16909:6630773,23925345:25952256,505283,134348 -k1,16908:10205565,23925345:226558 -k1,16908:11812311,23925345:226558 -k1,16908:13375803,23925345:226558 -k1,16908:14350127,23925345:226558 -k1,16908:18565206,23925345:226558 -k1,16908:19553292,23925345:226558 -k1,16908:20135710,23925345:226558 -k1,16908:22907031,23925345:226558 -k1,16908:26674500,23925345:226558 -k1,16908:29633254,23925345:226558 -k1,16908:32583029,23925345:0 -) -(1,16909:6630773,24766833:25952256,513147,134348 -g1,16908:9119830,24766833 -g1,16908:10886680,24766833 -g1,16908:12104994,24766833 -g1,16908:14889618,24766833 -k1,16909:32583029,24766833:16130377 -g1,16909:32583029,24766833 -) -(1,16929:6630773,27381240:25952256,1719841,0 -h1,16912:6630773,27381240:0,0,0 -(1,16928:6630773,27381240:25951781,1719841,0 -(1,16928:6630773,27381240:0,1719841,0 -(1,16928:6630773,27381240:0,2673868,0 -(1,16928:6630773,27381240:40347684,2673868,0 -(1,16928:6630773,27381240:40347684,2673868,0 -(1,16928:6630773,27381240:40347684,2673868,0 -g1,16928:8841497,27381240 -(1,16928:8841497,26044306:0,0,0 -(1,16928:8841497,26044306:0,0,0 -g1,16928:8841497,26044306 -(1,16928:8841497,26044306:0,0,0 -(1,16928:8841497,26044306:0,0,0 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -(1,16928:8841497,26044306:0,0,0 -(1,16928:8841497,26044306:3932160,505283,849351 -(1,16928:8841497,26044306:3932160,505283,849351 -[1,16928:8841497,26044306:3932160,505283,849351 -(1,16928:8841497,26044306:3932160,505283,126483 -k1,16928:10044410,26044306:1202913 -h1,16928:10044410,26044306:0,0,0 -h1,16928:10044410,26044306:0,0,0 -k1,16928:11570744,26044306:0 -k1,16928:12773657,26044306:1202913 -) -(1,16928:8841497,26885794:3932160,505283,7863 -k1,16928:10116828,26885794:1275331 -h1,16928:10116828,26885794:0,0,0 -k1,16928:11498327,26885794:0 -k1,16928:12773657,26885794:1275330 -) -] -) -g1,16928:12773657,26044306 -) -) -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -) -) -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -(1,16928:8841497,26044306:0,0,0 -(1,16928:8841497,26044306:0,0,0 -g1,16928:8841497,26044306 -(1,16928:8841497,26044306:0,0,0 -(1,16928:8841497,26044306:1966080,421396,7863 -(1,16928:8841497,26044306:1966080,421396,7863 -[1,16928:8841497,26044306:1966080,421396,7863 -(1,16928:8841497,26044306:1966080,421396,7863 -k1,16928:9032207,26044306:190710 -h1,16928:9032207,26044306:0,0,0 -h1,16928:9032207,26044306:0,0,0 -k1,16928:10616868,26044306:0 -k1,16928:10807577,26044306:190709 -) -] -) -g1,16928:10807577,26044306 -) -) -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -) -) -g1,16928:8841497,26044306 -(1,16928:8841497,26044306:0,0,0 -(1,16928:8841497,26044306:0,0,0 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -(1,16928:8841497,26044306:0,0,0 -(1,16928:8841497,26044306:3932160,473825,7863 -(1,16928:8841497,26044306:3932160,473825,7863 -[1,16928:8841497,26044306:3932160,473825,7863 -(1,16928:8841497,26044306:3932160,473825,7863 -k1,16928:9568291,26044306:726794 -h1,16928:9568291,26044306:0,0,0 -h1,16928:9568291,26044306:0,0,0 -k1,16928:12046863,26044306:0 -k1,16928:12773657,26044306:726794 -) -] -) -g1,16928:12773657,26044306 -) -) -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -) -) -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -(1,16928:8841497,26044306:0,0,0 -(1,16928:8841497,26044306:0,0,0 -g1,16928:8841497,26044306 -(1,16928:8841497,26044306:0,0,0 -(1,16928:8841497,26044306:1966080,513147,849351 -(1,16928:8841497,26044306:1966080,513147,849351 -[1,16928:8841497,26044306:1966080,513147,849351 -(1,16928:8841497,26044306:1966080,513147,7863 -k1,16928:9022704,26044306:181207 -h1,16928:9022704,26044306:0,0,0 -h1,16928:9022704,26044306:0,0,0 -k1,16928:10626370,26044306:0 -k1,16928:10807577,26044306:181207 -) -(1,16928:8841497,26885794:1966080,421396,7863 -k1,16928:9180974,26885794:339477 -h1,16928:9180974,26885794:0,0,0 -k1,16928:10468101,26885794:0 -k1,16928:10807577,26885794:339476 ) ] +[1,17063:3078558,4812305:0,0,0 +(1,17063:3078558,2439708:0,1703936,0 +g1,17063:29030814,2439708 +g1,17063:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,17063:36151628,1915420:16384,1179648,0 ) -g1,16928:10807577,26044306 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) +] ) -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,17063:37855564,2439708:1179648,16384,0 ) ) -g1,16928:8841497,26044306 -(1,16928:8841497,26044306:0,0,0 -(1,16928:8841497,26044306:0,0,0 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -(1,16928:8841497,26044306:0,0,0 -(1,16928:8841497,26044306:3932160,416809,849351 -(1,16928:8841497,26044306:3932160,416809,849351 -[1,16928:8841497,26044306:3932160,416809,849351 -(1,16928:8841497,26044306:3932160,416809,134348 -k1,16928:9303526,26044306:462029 -h1,16928:9303526,26044306:0,0,0 -h1,16928:9303526,26044306:0,0,0 -k1,16928:12773657,26044306:462028 -) -(1,16928:8841497,26885794:3932160,505283,7863 -k1,16928:9698283,26885794:856786 -k1,16928:10331556,26885794:218430 -k1,16928:11916872,26885794:0 -k1,16928:12773657,26885794:856785 +k1,17063:3078556,2439708:-34777008 ) ] +[1,17063:3078558,4812305:0,0,0 +(1,17063:3078558,49800853:0,16384,2228224 +k1,17063:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,17063:2537886,49800853:1179648,16384,0 ) -g1,16928:12773657,26044306 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,17063:3078558,51504789:16384,1179648,0 ) +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 +] ) ) -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -(1,16928:8841497,26044306:0,0,0 -(1,16928:8841497,26044306:0,0,0 -g1,16928:8841497,26044306 -(1,16928:8841497,26044306:0,0,0 -(1,16928:8841497,26044306:1966080,513147,849351 -(1,16928:8841497,26044306:1966080,513147,849351 -[1,16928:8841497,26044306:1966080,513147,849351 -(1,16928:8841497,26044306:1966080,513147,7863 -k1,16928:9022704,26044306:181207 -h1,16928:9022704,26044306:0,0,0 -h1,16928:9022704,26044306:0,0,0 -k1,16928:10626370,26044306:0 -k1,16928:10807577,26044306:181207 -) -(1,16928:8841497,26885794:1966080,505283,7863 -k1,16928:8973552,26885794:132055 -h1,16928:8973552,26885794:0,0,0 -k1,16928:10675522,26885794:0 -k1,16928:10807577,26885794:132055 -) -] -) -g1,16928:10807577,26044306 -) -) -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -) -) -g1,16928:8841497,26044306 -(1,16928:8841497,26044306:0,0,0 -(1,16928:8841497,26044306:0,0,0 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -(1,16928:8841497,26044306:0,0,0 -(1,16928:8841497,26044306:3932160,505283,975836 -(1,16928:8841497,26044306:3932160,505283,975836 -[1,16928:8841497,26044306:3932160,505283,975836 -(1,16928:8841497,26044306:3932160,505283,126483 -k1,16928:10044410,26044306:1202913 -h1,16928:10044410,26044306:0,0,0 -h1,16928:10044410,26044306:0,0,0 -k1,16928:11570744,26044306:0 -k1,16928:12773657,26044306:1202913 -) -(1,16928:8841497,26885794:3932160,505283,134348 -k1,16928:9894988,26885794:1053491 -h1,16928:9894988,26885794:0,0,0 -k1,16928:11720166,26885794:0 -k1,16928:12773657,26885794:1053491 ) ] +[1,17063:3078558,4812305:0,0,0 +(1,17063:3078558,49800853:0,16384,2228224 +g1,17063:29030814,49800853 +g1,17063:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,17063:36151628,51504789:16384,1179648,0 ) -g1,16928:12773657,26044306 -) -) -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -) -) -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -(1,16928:8841497,26044306:0,0,0 -(1,16928:8841497,26044306:0,0,0 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -(1,16928:8841497,26044306:0,0,0 -(1,16928:8841497,26044306:361759,355205,7863 -(1,16928:8841497,26044306:361759,355205,7863 -) -g1,16928:9203256,26044306 -) -) -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -) -) -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -(1,16928:8841497,26044306:0,0,0 -(1,16928:8841497,26044306:0,0,0 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -(1,16928:8841497,26044306:0,0,0 -(1,16928:8841497,26044306:412877,505283,7863 -(1,16928:8841497,26044306:412877,505283,7863 -) -g1,16928:9254374,26044306 -) +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 +] ) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,17063:37855564,49800853:1179648,16384,0 ) -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -(1,16928:8841497,26044306:0,0,0 -(1,16928:8841497,26044306:0,0,0 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -(1,16928:8841497,26044306:0,0,0 -(1,16928:8841497,26044306:335544,355205,7863 -(1,16928:8841497,26044306:335544,355205,7863 -) -g1,16928:9177041,26044306 -) -) -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -) -) -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -(1,16928:8841497,26044306:0,0,0 -(1,16928:8841497,26044306:0,0,0 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -(1,16928:8841497,26044306:0,0,0 -(1,16928:8841497,26044306:412877,505283,7863 -(1,16928:8841497,26044306:412877,505283,7863 ) -g1,16928:9254374,26044306 -) -) -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 +k1,17063:3078556,49800853:-34777008 ) -) -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -(1,16928:8841497,26044306:0,0,0 -(1,16928:8841497,26044306:0,0,0 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -(1,16928:8841497,26044306:0,0,0 -(1,16928:8841497,26044306:365036,355205,7863 -(1,16928:8841497,26044306:365036,355205,7863 -) -g1,16928:9206533,26044306 -) -) -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -) -) -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -(1,16928:8841497,26044306:0,0,0 -(1,16928:8841497,26044306:0,0,0 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -(1,16928:8841497,26044306:0,0,0 -(1,16928:8841497,26044306:240517,513147,0 -(1,16928:8841497,26044306:240517,513147,0 -) -g1,16928:9082014,26044306 -) -) -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -) -) -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -g1,16928:8841497,26044306 -) -g1,16928:8841497,26044306 -) -) -) -) -k1,16928:6630773,27381240:-40347684 -) -) -g1,16928:32582554,27381240 -) -k1,16929:32583029,27381240:475 -g1,16929:32583029,27381240 -) -(1,16931:6630773,28917410:25952256,505283,134348 -h1,16930:6630773,28917410:983040,0,0 -k1,16930:9111947,28917410:266057 -k1,16930:11266096,28917410:266057 -k1,16930:13661418,28917410:266057 -k1,16930:16265144,28917410:266057 -k1,16930:16887061,28917410:266057 -k1,16930:19676254,28917410:266057 -k1,16930:21133757,28917410:266058 -k1,16930:21755674,28917410:266057 -k1,16930:25185154,28917410:266057 -k1,16930:28241079,28917410:266057 -(1,16930:28241079,28917410:0,452978,115847 -r1,16937:30006192,28917410:1765113,568825,115847 -k1,16930:28241079,28917410:-1765113 -) -(1,16930:28241079,28917410:1765113,452978,115847 -k1,16930:28241079,28917410:3277 -h1,16930:30002915,28917410:0,411205,112570 -) -k1,16930:30272249,28917410:266057 -k1,16930:31069803,28917410:266057 -k1,16930:32583029,28917410:0 -) -(1,16931:6630773,29758898:25952256,513147,134348 -k1,16930:7476312,29758898:194111 -k1,16930:9631259,29758898:194110 -k1,16930:12963234,29758898:194111 -k1,16930:13808772,29758898:194110 -k1,16930:17351117,29758898:194111 -k1,16930:18741914,29758898:194110 -k1,16930:21201605,29758898:194111 -k1,16930:22343367,29758898:194111 -(1,16930:22343367,29758898:0,452978,115847 -r1,16937:24108480,29758898:1765113,568825,115847 -k1,16930:22343367,29758898:-1765113 -) -(1,16930:22343367,29758898:1765113,452978,115847 -k1,16930:22343367,29758898:3277 -h1,16930:24105203,29758898:0,411205,112570 -) -k1,16930:24302590,29758898:194110 -k1,16930:25028198,29758898:194111 -k1,16930:26169959,29758898:194110 -k1,16930:27383155,29758898:194111 -k1,16930:30384827,29758898:194110 -k1,16930:31230366,29758898:194111 -k1,16930:32583029,29758898:0 -) -(1,16931:6630773,30600386:25952256,513147,134348 -k1,16930:8451974,30600386:158553 -k1,16930:9223290,30600386:158554 -k1,16930:10400928,30600386:158553 -k1,16930:12079917,30600386:158554 -k1,16930:13519699,30600386:158553 -k1,16930:15387432,30600386:158554 -k1,16930:16162023,30600386:158553 -k1,16930:17339662,30600386:158554 -k1,16930:20114412,30600386:158553 -k1,16930:22509054,30600386:158554 -k1,16930:25475169,30600386:158553 -k1,16930:27702039,30600386:158554 -k1,16930:28476630,30600386:158553 -k1,16930:29654269,30600386:158554 -k1,16930:31193666,30600386:158553 -k1,16930:32583029,30600386:0 -) -(1,16931:6630773,31441874:25952256,505283,126483 -k1,16930:7528804,31441874:246603 -k1,16930:10949970,31441874:246602 -k1,16930:12690139,31441874:246603 -k1,16930:13622903,31441874:246602 -k1,16930:14408212,31441874:246603 -k1,16930:15189588,31441874:246602 -k1,16930:17640822,31441874:246603 -k1,16930:19930181,31441874:246602 -k1,16930:21288275,31441874:246603 -k1,16930:24469579,31441874:246602 -k1,16930:25735267,31441874:246603 -k1,16930:27371232,31441874:246602 -k1,16930:30203230,31441874:246603 -k1,16930:31062594,31441874:246602 -k1,16931:32583029,31441874:0 -) -(1,16931:6630773,32283362:25952256,513147,134348 -k1,16930:7990294,32283362:255239 -k1,16930:8993299,32283362:255239 -k1,16930:11833934,32283362:255240 -k1,16930:13791143,32283362:255239 -k1,16930:14659144,32283362:255239 -k1,16930:16086822,32283362:255239 -k1,16930:17795650,32283362:255239 -k1,16930:20045805,32283362:255239 -k1,16930:21870796,32283362:261957 -k1,16930:23343694,32283362:255239 -k1,16930:24790378,32283362:255239 -k1,16930:26615369,32283362:261957 -k1,16930:28687921,32283362:255239 -k1,16930:30638576,32283362:255239 -k1,16931:32583029,32283362:0 -) -(1,16931:6630773,33124850:25952256,505283,134348 -k1,16930:7957519,33124850:204770 -k1,16930:10172934,33124850:204770 -k1,16930:11396789,33124850:204770 -k1,16930:15590080,33124850:204770 -k1,16930:17184213,33124850:204770 -k1,16930:19947510,33124850:204771 -k1,16930:21171365,33124850:204770 -k1,16930:23029608,33124850:204770 -k1,16930:26372242,33124850:204770 -k1,16930:28026668,33124850:204770 -k1,16930:29939962,33124850:204770 -k1,16930:32583029,33124850:0 -) -(1,16931:6630773,33966338:25952256,505283,134348 -k1,16930:9444472,33966338:255173 -k1,16930:10107279,33966338:255173 -k1,16930:13537017,33966338:255174 -k1,16930:14323687,33966338:255173 -k1,16930:18507743,33966338:255173 -k1,16930:19954361,33966338:255173 -k1,16930:22368290,33966338:255173 -k1,16930:25181989,33966338:255173 -k1,16930:26456248,33966338:255174 -k1,16930:28364894,33966338:255173 -k1,16930:29027701,33966338:255173 -k1,16930:32583029,33966338:0 -) -(1,16931:6630773,34807826:25952256,513147,134348 -k1,16930:8179108,34807826:167491 -k1,16930:8878096,34807826:167491 -k1,16930:10064672,34807826:167491 -k1,16930:11833863,34807826:167491 -k1,16930:14778770,34807826:167491 -k1,16930:16313342,34807826:167491 -k1,16930:17672278,34807826:167491 -k1,16930:18858855,34807826:167492 -k1,16930:22173385,34807826:167491 -k1,16930:23000168,34807826:167491 -k1,16930:24186744,34807826:167491 -k1,16930:27161797,34807826:167491 -k1,16930:27860785,34807826:167491 -k1,16930:31391584,34807826:167491 -k1,16930:32583029,34807826:0 -) -(1,16931:6630773,35649314:25952256,513147,134348 -k1,16930:8002180,35649314:267125 -k1,16930:9017070,35649314:267124 -k1,16930:11148694,35649314:267125 -k1,16930:13857034,35649314:267124 -k1,16930:14885687,35649314:267125 -k1,16930:16171897,35649314:267125 -k1,16930:17993535,35649314:267124 -k1,16930:19163091,35649314:267125 -k1,16930:20896911,35649314:267124 -k1,16930:23577072,35649314:267125 -k1,16930:25211278,35649314:267125 -k1,16930:26009899,35649314:267124 -k1,16930:27975062,35649314:267125 -k1,16930:29261271,35649314:267124 -k1,16930:32051532,35649314:267125 -k1,16931:32583029,35649314:0 -) -(1,16931:6630773,36490802:25952256,505283,126483 -(1,16930:6630773,36490802:0,452978,115847 -r1,16937:12264716,36490802:5633943,568825,115847 -k1,16930:6630773,36490802:-5633943 -) -(1,16930:6630773,36490802:5633943,452978,115847 -k1,16930:6630773,36490802:3277 -h1,16930:12261439,36490802:0,411205,112570 -) -g1,16930:12637615,36490802 -g1,16930:14722315,36490802 -g1,16930:15453041,36490802 -g1,16930:16008130,36490802 -g1,16930:19940945,36490802 -g1,16930:21424680,36490802 -g1,16930:23651593,36490802 -g1,16930:24639220,36490802 -g1,16930:26546973,36490802 -g1,16930:27397630,36490802 -g1,16930:28385257,36490802 -k1,16931:32583029,36490802:1865346 -g1,16931:32583029,36490802 -) -v1,16933:6630773,37856578:0,393216,0 -(1,16934:6630773,43401927:25952256,5938565,0 -g1,16934:6630773,43401927 -g1,16934:6303093,43401927 -r1,16937:6401397,43401927:98304,5938565,0 -g1,16934:6600626,43401927 -g1,16934:6797234,43401927 -[1,16934:6797234,43401927:25785795,5938565,0 -(1,16934:6797234,38218651:25785795,755289,196608 -(1,16933:6797234,38218651:0,755289,196608 -r1,16937:8134168,38218651:1336934,951897,196608 -k1,16933:6797234,38218651:-1336934 -) -(1,16933:6797234,38218651:1336934,755289,196608 -) -k1,16933:8330835,38218651:196667 -k1,16933:8658515,38218651:327680 -k1,16933:10572226,38218651:196668 -k1,16933:13622331,38218651:196667 -k1,16933:16059675,38218651:196668 -k1,16933:17275427,38218651:196667 -k1,16933:19737675,38218651:196668 -k1,16933:22741904,38218651:196667 -k1,16933:24206038,38218651:196668 -k1,16933:27756838,38218651:196667 -k1,16933:30715849,38218651:196668 -k1,16933:31563944,38218651:196667 -k1,16933:32583029,38218651:0 -) -(1,16934:6797234,39060139:25785795,513147,134348 -k1,16933:9542063,39060139:159434 -k1,16933:12543138,39060139:159434 -k1,16933:13315333,39060139:159433 -k1,16933:14983406,39060139:159434 -k1,16933:17025034,39060139:159434 -k1,16933:17800506,39060139:159434 -k1,16933:19845411,39060139:159434 -k1,16933:21371925,39060139:159433 -k1,16933:22550444,39060139:159434 -k1,16933:25899515,39060139:159434 -k1,16933:28866511,39060139:159434 -k1,16933:29638707,39060139:159434 -k1,16933:31365370,39060139:163629 -k1,16934:32583029,39060139:0 -) -(1,16934:6797234,39901627:25785795,513147,126483 -k1,16933:9039439,39901627:168646 -k1,16933:10775706,39901627:168646 -k1,16933:12228858,39901627:168646 -k1,16933:13010266,39901627:168646 -k1,16933:14873017,39901627:168646 -k1,16933:16737079,39901627:168646 -k1,16933:19759163,39901627:168646 -k1,16933:21938454,39901627:168646 -k1,16933:24778347,39901627:168646 -k1,16933:27788634,39901627:168646 -k1,16933:28573318,39901627:168646 -k1,16933:30250603,39901627:168646 -k1,16933:32583029,39901627:0 -) -(1,16934:6797234,40743115:25785795,513147,126483 -k1,16933:8677899,40743115:188525 -k1,16933:9525716,40743115:188525 -k1,16933:11353296,40743115:188525 -k1,16933:14127216,40743115:188525 -k1,16933:14967169,40743115:188525 -k1,16933:18330258,40743115:188525 -k1,16933:19710229,40743115:188526 -k1,16933:21590894,40743115:188525 -k1,16933:22845690,40743115:188525 -k1,16933:25619610,40743115:188525 -k1,16933:26459563,40743115:188525 -k1,16933:29426815,40743115:188525 -k1,16933:32583029,40743115:0 -) -(1,16934:6797234,41584603:25785795,513147,134348 -k1,16933:7818632,41584603:212028 -k1,16933:8386521,41584603:212029 -k1,16933:10293310,41584603:212028 -k1,16933:11891424,41584603:212028 -k1,16933:12762744,41584603:212028 -k1,16933:14364136,41584603:212029 -k1,16933:17740242,41584603:212028 -k1,16933:19333114,41584603:212028 -k1,16933:20076640,41584603:212029 -k1,16933:20644528,41584603:212028 -k1,16933:22223637,41584603:212028 -k1,16933:24354560,41584603:212029 -k1,16933:26277733,41584603:212028 -k1,16933:28020027,41584603:212028 -k1,16933:28883483,41584603:212028 -k1,16933:29843278,41584603:212029 -k1,16933:31923737,41584603:212028 -k1,16933:32583029,41584603:0 -) -(1,16934:6797234,42426091:25785795,513147,134348 -k1,16933:8055979,42426091:239660 -k1,16933:11057982,42426091:239660 -k1,16933:13292558,42426091:239660 -k1,16933:14191510,42426091:239660 -k1,16933:17238732,42426091:239660 -k1,16933:18137684,42426091:239660 -k1,16933:21551908,42426091:239660 -k1,16933:22257529,42426091:239660 -k1,16933:23877377,42426091:239660 -k1,16933:25665653,42426091:239660 -k1,16933:26556741,42426091:239660 -k1,16933:29058704,42426091:239660 -k1,16933:30317449,42426091:239660 -k1,16933:32583029,42426091:0 -) -(1,16934:6797234,43267579:25785795,513147,134348 -g1,16933:9977696,43267579 -g1,16933:11433906,43267579 -g1,16933:13911822,43267579 -h1,16933:15454540,43267579:0,0,0 -g1,16933:15653769,43267579 -g1,16933:16662368,43267579 -g1,16933:18359750,43267579 -h1,16933:19555127,43267579:0,0,0 -g1,16933:19754356,43267579 -g1,16933:20901236,43267579 -k1,16934:32583029,43267579:9183561 -g1,16934:32583029,43267579 -) -] -g1,16934:32583029,43401927 -) -h1,16934:6630773,43401927:0,0,0 -(1,16937:6630773,44767703:25952256,505283,134348 -h1,16936:6630773,44767703:983040,0,0 -k1,16936:8665502,44767703:233800 -k1,16936:12317004,44767703:233799 -k1,16936:14406128,44767703:233800 -k1,16936:15406044,44767703:233800 -k1,16936:17665561,44767703:233799 -k1,16936:19787453,44767703:233800 -k1,16936:22358922,44767703:233800 -k1,16936:22948581,44767703:233799 -k1,16936:25705517,44767703:233800 -k1,16936:27130762,44767703:233800 -k1,16936:27720421,44767703:233799 -k1,16936:31117644,44767703:233800 -k1,16936:32583029,44767703:0 -) -(1,16937:6630773,45609191:25952256,513147,134348 -k1,16936:9713706,45609191:229495 -k1,16936:10934761,45609191:229495 -k1,16936:12722047,45609191:229495 -k1,16936:16658258,45609191:229495 -k1,16936:20087221,45609191:229495 -k1,16936:21508161,45609191:229495 -k1,16936:23427174,45609191:229495 -k1,16936:26510107,45609191:229495 -k1,16936:28092265,45609191:229495 -k1,16936:28677620,45609191:229495 -k1,16936:31896867,45609191:229495 -k1,16936:32583029,45609191:0 -) -] -(1,16937:32583029,45706769:0,0,0 -g1,16937:32583029,45706769 -) -) -] -(1,16937:6630773,47279633:25952256,0,0 -h1,16937:6630773,47279633:25952256,0,0 -) -] -(1,16937:4262630,4025873:0,0,0 -[1,16937:-473656,4025873:0,0,0 -(1,16937:-473656,-710413:0,0,0 -(1,16937:-473656,-710413:0,0,0 -g1,16937:-473656,-710413 -) -g1,16937:-473656,-710413 -) -] -) -] -!35057 -}292 -Input:2481:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2482:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2483:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2484:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +] +g1,17063:6630773,4812305 +k1,17063:21350816,4812305:13524666 +g1,17063:21999622,4812305 +g1,17063:25611966,4812305 +g1,17063:28956923,4812305 +g1,17063:29772190,4812305 +) +) +] +[1,17063:6630773,45706769:25952256,40108032,0 +(1,17063:6630773,45706769:25952256,40108032,0 +(1,17063:6630773,45706769:0,0,0 +g1,17063:6630773,45706769 +) +[1,17063:6630773,45706769:25952256,40108032,0 +(1,17031:6630773,6254097:25952256,513147,134348 +k1,17030:8257991,6254097:219505 +k1,17030:10045116,6254097:219504 +k1,17030:11283706,6254097:219505 +k1,17030:13603639,6254097:219504 +k1,17030:15055221,6254097:219505 +k1,17030:17553412,6254097:219504 +h1,17030:18524000,6254097:0,0,0 +k1,17030:18743505,6254097:219505 +k1,17030:19772379,6254097:219504 +k1,17030:21490037,6254097:219505 +h1,17030:22685414,6254097:0,0,0 +k1,17030:22904918,6254097:219504 +k1,17030:24072074,6254097:219505 +k1,17030:26409046,6254097:219504 +k1,17030:27437921,6254097:219505 +k1,17030:28676510,6254097:219504 +k1,17030:29988500,6254097:219505 +k1,17030:30867296,6254097:219504 +k1,17031:32583029,6254097:0 +) +(1,17031:6630773,7119177:25952256,505283,134348 +k1,17031:32583029,7119177:24163778 +g1,17031:32583029,7119177 +) +v1,17033:6630773,7804032:0,393216,0 +(1,17050:6630773,17041224:25952256,9630408,196608 +g1,17050:6630773,17041224 +g1,17050:6630773,17041224 +g1,17050:6434165,17041224 +(1,17050:6434165,17041224:0,9630408,196608 +r1,17063:32779637,17041224:26345472,9827016,196608 +k1,17050:6434165,17041224:-26345472 +) +(1,17050:6434165,17041224:26345472,9630408,196608 +[1,17050:6630773,17041224:25952256,9433800,0 +(1,17035:6630773,8031863:25952256,424439,106246 +(1,17034:6630773,8031863:0,0,0 +g1,17034:6630773,8031863 +g1,17034:6630773,8031863 +g1,17034:6303093,8031863 +(1,17034:6303093,8031863:0,0,0 +) +g1,17034:6630773,8031863 +) +k1,17035:6630773,8031863:0 +h1,17035:12937898,8031863:0,0,0 +k1,17035:32583030,8031863:19645132 +g1,17035:32583030,8031863 +) +(1,17036:6630773,8716718:25952256,424439,106246 +h1,17036:6630773,8716718:0,0,0 +k1,17036:6630773,8716718:0 +h1,17036:11278129,8716718:0,0,0 +k1,17036:32583029,8716718:21304900 +g1,17036:32583029,8716718 +) +(1,17037:6630773,9401573:25952256,424439,106246 +h1,17037:6630773,9401573:0,0,0 +k1,17037:6630773,9401573:0 +h1,17037:11610082,9401573:0,0,0 +k1,17037:32583030,9401573:20972948 +g1,17037:32583030,9401573 +) +(1,17038:6630773,10086428:25952256,424439,112852 +h1,17038:6630773,10086428:0,0,0 +k1,17038:6630773,10086428:0 +h1,17038:11942036,10086428:0,0,0 +k1,17038:32583028,10086428:20640992 +g1,17038:32583028,10086428 +) +(1,17039:6630773,10771283:25952256,424439,112852 +h1,17039:6630773,10771283:0,0,0 +k1,17039:6630773,10771283:0 +h1,17039:11942036,10771283:0,0,0 +k1,17039:32583028,10771283:20640992 +g1,17039:32583028,10771283 +) +(1,17040:6630773,11456138:25952256,424439,112852 +h1,17040:6630773,11456138:0,0,0 +k1,17040:6630773,11456138:0 +h1,17040:12605944,11456138:0,0,0 +k1,17040:32583028,11456138:19977084 +g1,17040:32583028,11456138 +) +(1,17041:6630773,12140993:25952256,424439,106246 +h1,17041:6630773,12140993:0,0,0 +k1,17041:6630773,12140993:0 +h1,17041:11278129,12140993:0,0,0 +k1,17041:32583029,12140993:21304900 +g1,17041:32583029,12140993 +) +(1,17042:6630773,12825848:25952256,424439,112852 +h1,17042:6630773,12825848:0,0,0 +k1,17042:6630773,12825848:0 +h1,17042:11942036,12825848:0,0,0 +k1,17042:32583028,12825848:20640992 +g1,17042:32583028,12825848 +) +(1,17043:6630773,13510703:25952256,424439,112852 +h1,17043:6630773,13510703:0,0,0 +k1,17043:6630773,13510703:0 +h1,17043:12937898,13510703:0,0,0 +k1,17043:32583030,13510703:19645132 +g1,17043:32583030,13510703 +) +(1,17044:6630773,14195558:25952256,431045,112852 +h1,17044:6630773,14195558:0,0,0 +k1,17044:6630773,14195558:0 +h1,17044:11942036,14195558:0,0,0 +k1,17044:32583028,14195558:20640992 +g1,17044:32583028,14195558 +) +(1,17045:6630773,14880413:25952256,424439,106246 +h1,17045:6630773,14880413:0,0,0 +k1,17045:6630773,14880413:0 +h1,17045:12937898,14880413:0,0,0 +k1,17045:32583030,14880413:19645132 +g1,17045:32583030,14880413 +) +(1,17046:6630773,15565268:25952256,424439,106246 +h1,17046:6630773,15565268:0,0,0 +k1,17046:6630773,15565268:0 +h1,17046:12605944,15565268:0,0,0 +k1,17046:32583028,15565268:19977084 +g1,17046:32583028,15565268 +) +(1,17047:6630773,16250123:25952256,424439,106246 +h1,17047:6630773,16250123:0,0,0 +k1,17047:6630773,16250123:0 +h1,17047:12605944,16250123:0,0,0 +k1,17047:32583028,16250123:19977084 +g1,17047:32583028,16250123 +) +(1,17048:6630773,16934978:25952256,424439,106246 +h1,17048:6630773,16934978:0,0,0 +k1,17048:6630773,16934978:0 +h1,17048:12605944,16934978:0,0,0 +k1,17048:32583028,16934978:19977084 +g1,17048:32583028,16934978 +) +] +) +g1,17050:32583029,17041224 +g1,17050:6630773,17041224 +g1,17050:6630773,17041224 +g1,17050:32583029,17041224 +g1,17050:32583029,17041224 +) +h1,17050:6630773,17237832:0,0,0 +(1,17057:6630773,20068992:25952256,32768,229376 +(1,17057:6630773,20068992:0,32768,229376 +(1,17057:6630773,20068992:5505024,32768,229376 +r1,17063:12135797,20068992:5505024,262144,229376 +) +k1,17057:6630773,20068992:-5505024 +) +(1,17057:6630773,20068992:25952256,32768,0 +r1,17063:32583029,20068992:25952256,32768,0 +) +) +(1,17057:6630773,21700844:25952256,615776,151780 +(1,17057:6630773,21700844:1974731,582746,14155 +g1,17057:6630773,21700844 +g1,17057:8605504,21700844 +) +g1,17057:10368685,21700844 +g1,17057:15471843,21700844 +g1,17057:16529594,21700844 +g1,17057:17212217,21700844 +k1,17057:32583029,21700844:13811317 +g1,17057:32583029,21700844 +) +(1,17059:6630773,22959140:25952256,513147,134348 +k1,17058:7098113,22959140:254348 +k1,17058:8840840,22959140:254404 +k1,17058:9856772,22959140:254404 +k1,17058:12144102,22959140:254403 +k1,17058:15794582,22959140:254404 +k1,17058:18880797,22959140:254404 +k1,17058:21337210,22959140:254403 +k1,17058:22243042,22959140:254404 +k1,17058:23886809,22959140:254404 +k1,17058:28334205,22959140:254403 +k1,17058:31563944,22959140:254404 +k1,17058:32583029,22959140:0 +) +(1,17059:6630773,23824220:25952256,505283,126483 +k1,17058:8340296,23824220:175325 +k1,17058:12501522,23824220:175326 +k1,17058:15814711,23824220:175325 +k1,17058:19047946,23824220:175325 +k1,17058:20414717,23824220:175326 +k1,17058:22684573,23824220:175325 +k1,17058:24834642,23824220:175469 +k1,17058:26572345,23824220:175325 +k1,17058:27739230,23824220:175325 +k1,17058:28270416,23824220:175326 +k1,17058:31069803,23824220:175325 +k1,17058:32583029,23824220:0 +) +(1,17059:6630773,24689300:25952256,513147,134348 +k1,17058:7562140,24689300:279939 +k1,17058:10050643,24689300:279940 +k1,17058:14311239,24689300:279939 +k1,17058:15737404,24689300:279940 +k1,17058:17417192,24689300:279939 +k1,17058:18167025,24689300:279940 +k1,17058:18978461,24689300:279939 +k1,17058:22823560,24689300:279940 +k1,17058:25601731,24689300:279939 +k1,17058:27084912,24689300:279940 +k1,17058:27980889,24689300:279939 +k1,17058:30091250,24689300:279940 +k1,17058:31189078,24689300:279939 +k1,17058:32583029,24689300:0 +) +(1,17059:6630773,25554380:25952256,513147,134348 +k1,17058:8243133,25554380:212511 +k1,17058:9474730,25554380:212512 +k1,17058:11775873,25554380:212511 +k1,17058:12647676,25554380:212511 +k1,17058:14467786,25554380:212512 +k1,17058:16540864,25554380:212511 +k1,17058:17404803,25554380:212511 +k1,17058:20348200,25554380:212512 +k1,17058:22109327,25554380:212511 +k1,17058:23190190,25554380:212511 +k1,17058:24951318,25554380:212512 +k1,17058:25815257,25554380:212511 +k1,17058:29058808,25554380:212511 +k1,17058:30819936,25554380:212512 +k1,17058:31563944,25554380:212511 +k1,17058:32583029,25554380:0 +) +(1,17059:6630773,26419460:25952256,513147,134348 +k1,17058:8257236,26419460:273800 +k1,17058:10307717,26419460:273800 +k1,17058:13286843,26419460:273800 +k1,17058:14428995,26419460:273800 +k1,17058:16251411,26419460:273800 +k1,17058:17176639,26419460:273800 +k1,17058:19832673,26419460:273800 +k1,17058:21303160,26419460:273800 +k1,17058:23077734,26419460:273800 +k1,17058:24010826,26419460:273800 +k1,17058:25303711,26419460:273800 +k1,17058:26854808,26419460:273800 +k1,17058:29308991,26419460:273800 +k1,17058:31563944,26419460:273800 +k1,17058:32583029,26419460:0 +) +(1,17059:6630773,27284540:25952256,513147,134348 +k1,17058:10921939,27284540:266600 +k1,17058:12379985,27284540:266601 +k1,17058:13665670,27284540:266600 +k1,17058:17825109,27284540:266600 +k1,17058:20591253,27284540:266601 +k1,17058:21517145,27284540:266600 +k1,17058:22802830,27284540:266600 +k1,17058:25908450,27284540:266600 +k1,17058:29184464,27284540:266601 +k1,17058:30722462,27284540:266600 +k1,17058:32583029,27284540:0 +) +(1,17059:6630773,28149620:25952256,513147,134348 +k1,17058:7474121,28149620:191920 +k1,17058:8413806,28149620:191919 +k1,17058:10815600,28149620:191920 +k1,17058:11658947,28149620:191919 +k1,17058:13580362,28149620:191920 +k1,17058:17475720,28149620:191919 +k1,17058:18859085,28149620:191920 +k1,17058:20652704,28149620:191919 +k1,17058:24620153,28149620:191920 +k1,17058:25471364,28149620:191919 +k1,17058:26429400,28149620:191920 +k1,17058:27687590,28149620:191919 +k1,17058:28530938,28149620:191920 +k1,17058:32583029,28149620:0 +) +(1,17059:6630773,29014700:25952256,505283,126483 +k1,17058:8261190,29014700:158478 +k1,17058:12769292,29014700:158477 +k1,17058:14073995,29014700:158478 +k1,17058:15458652,29014700:158478 +k1,17058:17147396,29014700:158478 +k1,17058:17957301,29014700:158477 +k1,17058:18863545,29014700:158478 +k1,17058:21775190,29014700:158478 +k1,17058:24399788,29014700:158478 +k1,17058:28313478,29014700:158477 +k1,17058:30290580,29014700:158478 +k1,17058:32583029,29014700:0 +) +(1,17059:6630773,29879780:25952256,513147,134348 +k1,17058:8483825,29879780:151082 +k1,17058:10127818,29879780:151083 +k1,17058:11297985,29879780:151082 +k1,17058:12784035,29879780:151082 +k1,17058:14173092,29879780:151082 +k1,17058:14983467,29879780:151083 +k1,17058:18554218,29879780:151082 +k1,17058:19803028,29879780:151082 +k1,17058:22659436,29879780:151082 +k1,17058:23342016,29879780:151083 +k1,17058:25576488,29879780:151082 +k1,17058:26545459,29879780:151082 +k1,17058:27564893,29879780:151082 +k1,17058:28848438,29879780:151083 +k1,17058:30024503,29879780:151082 +k1,17058:32583029,29879780:0 +) +(1,17059:6630773,30744860:25952256,513147,134348 +k1,17058:8126741,30744860:292727 +k1,17058:11010763,30744860:292728 +k1,17058:12322575,30744860:292727 +k1,17058:15589326,30744860:292727 +k1,17058:16541346,30744860:292728 +k1,17058:17853158,30744860:292727 +k1,17058:21048475,30744860:292727 +k1,17058:22000495,30744860:292728 +k1,17058:25012311,30744860:292727 +k1,17058:28161752,30744860:292727 +k1,17058:29808454,30744860:292728 +k1,17058:31379788,30744860:292727 +k1,17058:32583029,30744860:0 +) +(1,17059:6630773,31609940:25952256,513147,134348 +k1,17058:9782268,31609940:166985 +k1,17058:10600682,31609940:166986 +k1,17058:13846548,31609940:166985 +k1,17058:15204979,31609940:166986 +k1,17058:18635002,31609940:166985 +k1,17058:20207080,31609940:166986 +k1,17058:22573453,31609940:166985 +k1,17058:24129802,31609940:166986 +k1,17058:28706049,31609940:166985 +k1,17058:29820686,31609940:166986 +k1,17058:32583029,31609940:0 +) +(1,17059:6630773,32475020:25952256,505283,7863 +k1,17059:32583028,32475020:22612540 +g1,17059:32583028,32475020 +) +(1,17061:6630773,33340100:25952256,513147,134348 +h1,17060:6630773,33340100:983040,0,0 +k1,17060:8527385,33340100:139592 +k1,17060:10949595,33340100:139591 +k1,17060:12787225,33340100:139592 +k1,17060:15938196,33340100:139592 +k1,17060:17467150,33340100:139591 +k1,17060:18475094,33340100:139592 +k1,17060:19429954,33340100:139592 +k1,17060:20635817,33340100:139592 +k1,17060:22305674,33340100:139591 +k1,17060:24175416,33340100:139592 +k1,17060:26432476,33340100:139592 +k1,17060:27231359,33340100:139591 +k1,17060:30320726,33340100:139592 +k1,17060:32583029,33340100:0 +) +(1,17061:6630773,34205180:25952256,513147,134348 +k1,17060:7961669,34205180:258727 +k1,17060:9088747,34205180:258726 +k1,17060:10546128,34205180:258727 +k1,17060:12335121,34205180:258727 +k1,17060:13612932,34205180:258726 +k1,17060:16845683,34205180:258727 +k1,17060:18388916,34205180:258727 +k1,17060:20659597,34205180:258726 +k1,17060:23295315,34205180:258727 +k1,17060:24166803,34205180:258726 +k1,17060:25444615,34205180:258727 +k1,17060:27356815,34205180:258727 +k1,17060:29004904,34205180:258726 +k1,17060:30831252,34205180:258727 +k1,17060:32583029,34205180:0 +) +(1,17061:6630773,35070260:25952256,513147,134348 +k1,17060:9554771,35070260:190491 +k1,17060:11946616,35070260:190491 +k1,17060:15984726,35070260:190491 +k1,17060:18937561,35070260:190492 +k1,17060:21503077,35070260:190491 +k1,17060:22352860,35070260:190491 +k1,17060:24356077,35070260:190491 +k1,17060:25174403,35070260:190491 +k1,17060:26383979,35070260:190491 +k1,17060:28227944,35070260:190492 +k1,17060:29656410,35070260:190491 +k1,17060:30533063,35070260:190491 +k1,17061:32583029,35070260:0 +) +(1,17061:6630773,35935340:25952256,513147,126483 +k1,17060:8471083,35935340:254339 +k1,17060:9951601,35935340:254339 +k1,17060:11397386,35935340:254340 +k1,17060:12877904,35935340:254339 +k1,17060:16272728,35935340:254339 +k1,17060:18002282,35935340:254339 +k1,17060:20653928,35935340:254339 +k1,17060:21980436,35935340:254339 +k1,17060:24487248,35935340:254340 +k1,17060:26338044,35935340:254339 +k1,17060:29557232,35935340:254339 +k1,17060:32583029,35935340:0 +) +(1,17061:6630773,36800420:25952256,513147,134348 +k1,17060:7767823,36800420:189399 +k1,17060:11220260,36800420:189399 +k1,17060:13017257,36800420:189399 +k1,17060:14021924,36800420:189399 +k1,17060:15277594,36800420:189399 +k1,17060:17993405,36800420:189398 +k1,17060:19461411,36800420:189399 +k1,17060:20669895,36800420:189399 +k1,17060:22947926,36800420:189399 +k1,17060:23796617,36800420:189399 +k1,17060:26421334,36800420:189399 +k1,17060:28000096,36800420:189399 +k1,17060:32583029,36800420:0 +) +(1,17061:6630773,37665500:25952256,513147,134348 +k1,17060:8387408,37665500:198844 +k1,17060:10026078,37665500:198844 +k1,17060:10876349,37665500:198843 +k1,17060:12053646,37665500:198844 +k1,17060:13271575,37665500:198844 +k1,17060:14492125,37665500:198844 +k1,17060:16442091,37665500:198844 +k1,17060:17713104,37665500:198844 +k1,17060:19199074,37665500:198843 +k1,17060:20417003,37665500:198844 +k1,17060:23589871,37665500:198844 +k1,17060:26087063,37665500:198844 +k1,17060:26937335,37665500:198844 +k1,17060:27951447,37665500:198844 +k1,17060:29169375,37665500:198843 +k1,17060:30703187,37665500:198844 +k1,17060:31923737,37665500:198844 +k1,17060:32583029,37665500:0 +) +(1,17061:6630773,38530580:25952256,513147,134348 +k1,17060:11766665,38530580:200376 +k1,17060:13360993,38530580:200377 +k1,17060:16113341,38530580:200376 +k1,17060:18050421,38530580:200376 +k1,17060:19454039,38530580:200377 +k1,17060:20010275,38530580:200376 +k1,17060:21792690,38530580:200376 +k1,17060:23815623,38530580:200377 +k1,17060:27362267,38530580:200376 +k1,17060:28581728,38530580:200376 +k1,17060:30520120,38530580:200377 +k1,17060:31379788,38530580:200376 +k1,17060:32583029,38530580:0 +) +(1,17061:6630773,39395660:25952256,513147,134348 +g1,17060:9247625,39395660 +g1,17060:9978351,39395660 +g1,17060:10793618,39395660 +g1,17060:12011932,39395660 +g1,17060:14537034,39395660 +g1,17060:17638853,39395660 +g1,17060:18497374,39395660 +k1,17061:32583029,39395660:11192896 +g1,17061:32583029,39395660 +) +(1,17063:6630773,40260740:25952256,513147,134348 +h1,17062:6630773,40260740:983040,0,0 +k1,17062:9056861,40260740:246361 +k1,17062:10910820,40260740:246361 +k1,17062:12025532,40260740:246360 +k1,17062:13404355,40260740:246361 +k1,17062:16319997,40260740:246361 +k1,17062:17182396,40260740:246361 +k1,17062:18631997,40260740:246360 +k1,17062:21295981,40260740:246361 +k1,17062:22533902,40260740:246361 +k1,17062:25735281,40260740:246361 +k1,17062:26667803,40260740:246360 +k1,17062:29873115,40260740:246361 +k1,17063:32583029,40260740:0 +) +(1,17063:6630773,41125820:25952256,513147,134348 +k1,17062:8840344,41125820:199582 +k1,17062:10059012,41125820:199583 +k1,17062:12117850,41125820:199582 +k1,17062:13721213,41125820:199582 +k1,17062:14580088,41125820:199583 +k1,17062:16169033,41125820:199582 +k1,17062:20387938,41125820:199582 +k1,17062:22472991,41125820:199582 +k1,17062:23204071,41125820:199583 +k1,17062:26072934,41125820:199582 +k1,17062:27834894,41125820:199582 +k1,17062:29528043,41125820:199583 +k1,17062:30413787,41125820:199582 +k1,17062:32583029,41125820:0 +) +(1,17063:6630773,41990900:25952256,505283,134348 +k1,17062:8513086,41990900:274715 +k1,17062:11125470,41990900:274715 +k1,17062:13418693,41990900:274714 +k1,17062:17063925,41990900:274715 +k1,17062:19835562,41990900:274715 +k1,17062:21394783,41990900:274715 +k1,17062:22431026,41990900:274715 +k1,17062:24214380,41990900:274715 +k1,17062:27276996,41990900:274714 +k1,17062:29594468,41990900:274715 +k1,17062:31900144,41990900:274715 +k1,17062:32583029,41990900:0 +) +(1,17063:6630773,42855980:25952256,513147,126483 +k1,17062:8493426,42855980:170513 +k1,17062:10365908,42855980:170512 +k1,17062:13314492,42855980:170513 +k1,17062:15899351,42855980:170513 +k1,17062:18278427,42855980:170513 +k1,17062:22429596,42855980:170512 +k1,17062:23077866,42855980:170513 +k1,17062:24116731,42855980:170513 +k1,17062:27018129,42855980:170513 +k1,17062:28885368,42855980:170512 +k1,17062:31074390,42855980:170513 +k1,17062:32583029,42855980:0 +) +(1,17063:6630773,43721060:25952256,513147,134348 +k1,17062:9384989,43721060:197657 +k1,17062:10198683,43721060:197656 +k1,17062:11415425,43721060:197657 +k1,17062:12890378,43721060:197656 +k1,17062:16324858,43721060:197657 +k1,17062:17205399,43721060:197656 +k1,17062:20227658,43721060:197657 +k1,17062:22072889,43721060:197656 +k1,17062:22802043,43721060:197657 +k1,17062:24694460,43721060:197656 +k1,17062:25653645,43721060:197657 +k1,17062:26870386,43721060:197656 +k1,17062:29078688,43721060:197657 +k1,17062:29935636,43721060:197656 +k1,17062:31641932,43721060:197657 +k1,17063:32583029,43721060:0 +) +(1,17063:6630773,44586140:25952256,505283,134348 +k1,17062:9811355,44586140:170513 +k1,17062:11173312,44586140:170512 +k1,17062:12475632,44586140:170513 +k1,17062:15723059,44586140:170512 +k1,17062:16545000,44586140:170513 +k1,17062:18412239,44586140:170512 +k1,17062:22320926,44586140:170513 +k1,17062:23022935,44586140:170512 +k1,17062:25360068,44586140:170513 +k1,17062:27049049,44586140:170512 +k1,17062:30626779,44586140:170513 +k1,17062:32583029,44586140:0 +) +(1,17063:6630773,45451220:25952256,505283,126483 +k1,17062:8612217,45451220:196899 +k1,17062:9828201,45451220:196899 +k1,17062:15101519,45451220:196899 +k1,17062:17933621,45451220:196899 +k1,17062:21868694,45451220:196899 +k1,17062:23257038,45451220:196899 +k1,17062:26340143,45451220:196899 +k1,17062:28547687,45451220:196899 +k1,17062:30161474,45451220:196899 +k1,17063:32583029,45451220:0 +) +] +(1,17063:32583029,45706769:0,0,0 +g1,17063:32583029,45706769 +) +) +] +(1,17063:6630773,47279633:25952256,0,0 +h1,17063:6630773,47279633:25952256,0,0 +) +] +(1,17063:4262630,4025873:0,0,0 +[1,17063:-473656,4025873:0,0,0 +(1,17063:-473656,-710413:0,0,0 +(1,17063:-473656,-710413:0,0,0 +g1,17063:-473656,-710413 +) +g1,17063:-473656,-710413 +) +] +) +] +!21474 +}273 Input:2485:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2486:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2487:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!670 -{293 -[1,16969:4262630,47279633:28320399,43253760,0 -(1,16969:4262630,4025873:0,0,0 -[1,16969:-473656,4025873:0,0,0 -(1,16969:-473656,-710413:0,0,0 -(1,16969:-473656,-644877:0,0,0 -k1,16969:-473656,-644877:-65536 +!106 +{274 +[1,17072:4262630,47279633:28320399,43253760,0 +(1,17072:4262630,4025873:0,0,0 +[1,17072:-473656,4025873:0,0,0 +(1,17072:-473656,-710413:0,0,0 +(1,17072:-473656,-644877:0,0,0 +k1,17072:-473656,-644877:-65536 ) -(1,16969:-473656,4736287:0,0,0 -k1,16969:-473656,4736287:5209943 +(1,17072:-473656,4736287:0,0,0 +k1,17072:-473656,4736287:5209943 ) -g1,16969:-473656,-710413 +g1,17072:-473656,-710413 ) ] ) -[1,16969:6630773,47279633:25952256,43253760,0 -[1,16969:6630773,4812305:25952256,786432,0 -(1,16969:6630773,4812305:25952256,513147,126483 -(1,16969:6630773,4812305:25952256,513147,126483 -g1,16969:3078558,4812305 -[1,16969:3078558,4812305:0,0,0 -(1,16969:3078558,2439708:0,1703936,0 -k1,16969:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,16969:2537886,2439708:1179648,16384,0 +[1,17072:6630773,47279633:25952256,43253760,0 +[1,17072:6630773,4812305:25952256,786432,0 +(1,17072:6630773,4812305:25952256,513147,134348 +(1,17072:6630773,4812305:25952256,513147,134348 +g1,17072:3078558,4812305 +[1,17072:3078558,4812305:0,0,0 +(1,17072:3078558,2439708:0,1703936,0 +k1,17072:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,17072:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,16969:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,17072:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,16969:3078558,4812305:0,0,0 -(1,16969:3078558,2439708:0,1703936,0 -g1,16969:29030814,2439708 -g1,16969:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,16969:36151628,1915420:16384,1179648,0 +[1,17072:3078558,4812305:0,0,0 +(1,17072:3078558,2439708:0,1703936,0 +g1,17072:29030814,2439708 +g1,17072:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,17072:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,16969:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,17072:37855564,2439708:1179648,16384,0 ) ) -k1,16969:3078556,2439708:-34777008 +k1,17072:3078556,2439708:-34777008 ) ] -[1,16969:3078558,4812305:0,0,0 -(1,16969:3078558,49800853:0,16384,2228224 -k1,16969:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,16969:2537886,49800853:1179648,16384,0 -) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,16969:3078558,51504789:16384,1179648,0 +[1,17072:3078558,4812305:0,0,0 +(1,17072:3078558,49800853:0,16384,2228224 +k1,17072:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,17072:2537886,49800853:1179648,16384,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,17072:3078558,51504789:16384,1179648,0 ) -] +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 +) +] +) +) +) +] +[1,17072:3078558,4812305:0,0,0 +(1,17072:3078558,49800853:0,16384,2228224 +g1,17072:29030814,49800853 +g1,17072:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,17072:36151628,51504789:16384,1179648,0 +) +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 +) +] +) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,17072:37855564,49800853:1179648,16384,0 +) +) +k1,17072:3078556,49800853:-34777008 +) +] +g1,17072:6630773,4812305 +g1,17072:6630773,4812305 +g1,17072:8017514,4812305 +g1,17072:11261546,4812305 +g1,17072:12076813,4812305 +g1,17072:14985956,4812305 +k1,17072:31387652,4812305:16401696 +) +) +] +[1,17072:6630773,45706769:25952256,40108032,0 +(1,17072:6630773,45706769:25952256,40108032,0 +(1,17072:6630773,45706769:0,0,0 +g1,17072:6630773,45706769 +) +[1,17072:6630773,45706769:25952256,40108032,0 +(1,17063:6630773,6254097:25952256,513147,134348 +k1,17062:7848837,6254097:227815 +k1,17062:11908543,6254097:227816 +k1,17062:15943344,6254097:227815 +k1,17062:16822587,6254097:227815 +k1,17062:18069488,6254097:227816 +k1,17062:21306716,6254097:227815 +k1,17062:22022091,6254097:227787 +k1,17062:23677936,6254097:227815 +k1,17062:25446503,6254097:227816 +k1,17062:26205815,6254097:227815 +k1,17062:29697323,6254097:227815 +k1,17062:30576567,6254097:227816 +k1,17062:31575085,6254097:227815 +k1,17063:32583029,6254097:0 +) +(1,17063:6630773,7119177:25952256,505283,134348 +k1,17062:9761990,7119177:184718 +k1,17062:11018876,7119177:184717 +k1,17062:11991992,7119177:184718 +k1,17062:14790941,7119177:184718 +k1,17062:16079941,7119177:184718 +k1,17062:17012424,7119177:184717 +k1,17062:20232770,7119177:184718 +k1,17062:21103650,7119177:184718 +k1,17062:22677075,7119177:184717 +k1,17062:23547955,7119177:184718 +k1,17062:24521071,7119177:184718 +k1,17062:25919516,7119177:184718 +k1,17062:26755661,7119177:184717 +k1,17062:27959464,7119177:184718 +k1,17062:32583029,7119177:0 +) +(1,17063:6630773,7984257:25952256,513147,134348 +k1,17062:10550528,7984257:178305 +k1,17062:11833114,7984257:178304 +k1,17062:12759185,7984257:178305 +k1,17062:15684104,7984257:178305 +k1,17062:17104972,7984257:178305 +k1,17062:18044804,7984257:178304 +k1,17062:19242194,7984257:178305 +k1,17062:22279179,7984257:178305 +k1,17062:23116775,7984257:178304 +k1,17062:24065783,7984257:178305 +k1,17062:26092203,7984257:178305 +k1,17062:26953393,7984257:178305 +k1,17062:28598393,7984257:178304 +k1,17062:30901375,7984257:178305 +k1,17063:32583029,7984257:0 +) +(1,17063:6630773,8849337:25952256,505283,126483 +k1,17062:8692044,8849337:247234 +k1,17062:12918625,8849337:247235 +k1,17062:14157419,8849337:247234 +k1,17062:17400960,8849337:247235 +k1,17062:18299622,8849337:247234 +k1,17062:18902717,8849337:247235 +k1,17062:20427248,8849337:247234 +k1,17062:21958988,8849337:247234 +k1,17062:23681438,8849337:247235 +k1,17062:24738042,8849337:247234 +k1,17062:28491453,8849337:247235 +k1,17062:29390115,8849337:247234 +k1,17062:32583029,8849337:0 +) +(1,17063:6630773,9714417:25952256,505283,134348 +k1,17062:11097404,9714417:221209 +k1,17062:12390782,9714417:221209 +k1,17062:14563653,9714417:221209 +k1,17062:16178813,9714417:221209 +k1,17062:17166138,9714417:221209 +k1,17062:21459099,9714417:221209 +k1,17062:23447815,9714417:221210 +k1,17062:26523117,9714417:221209 +k1,17062:27986889,9714417:221209 +k1,17062:28563958,9714417:221209 +k1,17062:30011346,9714417:221209 +k1,17062:31378780,9714417:221209 +k1,17062:32014832,9714417:221209 +k1,17062:32583029,9714417:0 +) +(1,17063:6630773,10579497:25952256,513147,134348 +k1,17062:8072969,10579497:246819 +k1,17062:11494351,10579497:246818 +k1,17062:12760255,10579497:246819 +k1,17062:15492854,10579497:246818 +k1,17062:16398965,10579497:246819 +k1,17062:20717536,10579497:246819 +k1,17062:23722764,10579497:246818 +k1,17062:24585621,10579497:246819 +k1,17062:25188300,10579497:246819 +k1,17062:27502124,10579497:246818 +k1,17062:28408235,10579497:246819 +k1,17062:29010913,10579497:246818 +k1,17062:30708699,10579497:246819 +k1,17062:32583029,10579497:0 +) +(1,17063:6630773,11444577:25952256,513147,134348 +k1,17062:8556439,11444577:270882 +k1,17062:11696487,11444577:270882 +k1,17062:14175933,11444577:270883 +k1,17062:18253801,11444577:270882 +k1,17062:20347239,11444577:270882 +k1,17062:24863543,11444577:270882 +k1,17062:26331113,11444577:270883 +k1,17062:27854388,11444577:270882 +k1,17062:30143124,11444577:270882 +k1,17062:32583029,11444577:0 +) +(1,17063:6630773,12309657:25952256,513147,126483 +k1,17062:8053963,12309657:231745 +k1,17062:9717014,12309657:231745 +k1,17062:12707170,12309657:231746 +k1,17062:13554953,12309657:231745 +k1,17062:14805783,12309657:231745 +k1,17062:19056851,12309657:231745 +k1,17062:21004330,12309657:231746 +k1,17062:21694172,12309657:231745 +k1,17062:24555877,12309657:231745 +k1,17062:25735273,12309657:231745 +k1,17062:26986104,12309657:231746 +k1,17062:29265849,12309657:231745 +k1,17062:30149022,12309657:231745 +k1,17062:32583029,12309657:0 +) +(1,17063:6630773,13174737:25952256,505283,134348 +k1,17062:7861241,13174737:211383 +k1,17062:10507943,13174737:211384 +k1,17062:12729971,13174737:211383 +k1,17062:16750962,13174737:211383 +k1,17062:17578383,13174737:211383 +k1,17062:18808852,13174737:211384 +k1,17062:20297532,13174737:211383 +k1,17062:21270443,13174737:211383 +k1,17062:24431601,13174737:211383 +k1,17062:27685822,13174737:211384 +k1,17062:29713863,13174737:211383 +k1,17062:32583029,13174737:0 +) +(1,17063:6630773,14039817:25952256,513147,134348 +k1,17062:7526948,14039817:280137 +k1,17062:8162944,14039817:280136 +k1,17062:12462404,14039817:280137 +k1,17062:14209236,14039817:280136 +k1,17062:16187411,14039817:280137 +k1,17062:17533818,14039817:280136 +k1,17062:20431463,14039817:280137 +k1,17062:23938592,14039817:280136 +k1,17062:28025715,14039817:280137 +k1,17062:29504505,14039817:280136 +k1,17062:31563944,14039817:280137 +k1,17062:32583029,14039817:0 +) +(1,17063:6630773,14904897:25952256,513147,126483 +k1,17062:8279702,14904897:254323 +k1,17062:9927976,14904897:254323 +k1,17062:12067771,14904897:254324 +k1,17062:12677954,14904897:254323 +k1,17062:14209574,14904897:254323 +k1,17062:15568179,14904897:254323 +k1,17062:16570268,14904897:254323 +k1,17062:18410563,14904897:254324 +k1,17062:20539216,14904897:254323 +k1,17062:23131208,14904897:254323 +k1,17062:24404616,14904897:254323 +k1,17062:25927716,14904897:254323 +k1,17062:26841332,14904897:254324 +k1,17062:28321834,14904897:254323 +k1,17062:29767602,14904897:254323 +k1,17062:32583029,14904897:0 +) +(1,17063:6630773,15769977:25952256,513147,134348 +k1,17062:9869281,15769977:216643 +k1,17062:10745216,15769977:216643 +k1,17062:12634339,15769977:216644 +k1,17062:14182018,15769977:216643 +k1,17062:15873876,15769977:216643 +k1,17062:17109604,15769977:216643 +k1,17062:19351310,15769977:216644 +k1,17062:20227245,15769977:216643 +k1,17062:22474849,15769977:216643 +k1,17062:25055376,15769977:216643 +k1,17062:26383510,15769977:216643 +k1,17062:27227989,15769977:216644 +k1,17062:29777714,15769977:216643 +k1,17062:31601955,15769977:216643 +k1,17063:32583029,15769977:0 +) +(1,17063:6630773,16635057:25952256,513147,134348 +k1,17062:8910879,16635057:191474 +k1,17062:9753781,16635057:191474 +k1,17062:10693022,16635057:191475 +k1,17062:13642906,16635057:191474 +k1,17062:14450418,16635057:191474 +k1,17062:16554233,16635057:191474 +k1,17062:17937153,16635057:191475 +k1,17062:20759242,16635057:191474 +k1,17062:21942276,16635057:191474 +k1,17062:25475431,16635057:191474 +k1,17062:26614557,16635057:191475 +k1,17062:28049904,16635057:191474 +k1,17062:32583029,16635057:0 +) +(1,17063:6630773,17500137:25952256,513147,134348 +k1,17062:8015643,17500137:193425 +k1,17062:9448353,17500137:193424 +k1,17062:11494481,17500137:193425 +k1,17062:13846007,17500137:193425 +k1,17062:16569121,17500137:193424 +k1,17062:17421838,17500137:193425 +k1,17062:18634347,17500137:193424 +k1,17062:21590115,17500137:193425 +k1,17062:23796806,17500137:193425 +k1,17062:24649522,17500137:193424 +k1,17062:26268355,17500137:193425 +k1,17062:29245749,17500137:193425 +k1,17062:30386824,17500137:193424 +k1,17062:31599334,17500137:193425 +k1,17063:32583029,17500137:0 +) +(1,17063:6630773,18365217:25952256,513147,126483 +k1,17062:8939387,18365217:243575 +k1,17062:9834391,18365217:243576 +k1,17062:11490267,18365217:243575 +k1,17062:13546569,18365217:243576 +k1,17062:14260037,18365217:243575 +k1,17062:15035109,18365217:243575 +k1,17062:18487983,18365217:243576 +k1,17062:19382986,18365217:243575 +k1,17062:20374328,18365217:243576 +k1,17062:22486334,18365217:243575 +k1,17062:23389201,18365217:243575 +k1,17062:24651862,18365217:243576 +k1,17062:26461092,18365217:243575 +k1,17062:28815583,18365217:243576 +k1,17062:29820686,18365217:243575 +k1,17062:32583029,18365217:0 +) +(1,17063:6630773,19230297:25952256,505283,134348 +k1,17062:8151536,19230297:243466 +k1,17062:12322575,19230297:243466 +k1,17062:14264079,19230297:243466 +k1,17062:17586426,19230297:243466 +k1,17062:18185753,19230297:243467 +k1,17062:19818582,19230297:243466 +k1,17062:24081371,19230297:243466 +k1,17062:25516282,19230297:243466 +k1,17062:27457786,19230297:243466 +k1,17062:32124932,19230297:243466 +k1,17062:32583029,19230297:0 +) +(1,17063:6630773,20095377:25952256,513147,134348 +g1,17062:8565395,20095377 +g1,17062:9783709,20095377 +g1,17062:12885528,20095377 +g1,17062:13744049,20095377 +k1,17063:32583029,20095377:15946221 +g1,17063:32583029,20095377 +) +(1,17064:6630773,22926537:25952256,32768,229376 +(1,17064:6630773,22926537:0,32768,229376 +(1,17064:6630773,22926537:5505024,32768,229376 +r1,17072:12135797,22926537:5505024,262144,229376 +) +k1,17064:6630773,22926537:-5505024 +) +(1,17064:6630773,22926537:25952256,32768,0 +r1,17072:32583029,22926537:25952256,32768,0 +) +) +(1,17064:6630773,24558389:25952256,615776,161218 +(1,17064:6630773,24558389:1974731,582746,14155 +g1,17064:6630773,24558389 +g1,17064:8605504,24558389 +) +g1,17064:10368685,24558389 +g1,17064:14207260,24558389 +g1,17064:15265011,24558389 +k1,17064:32583029,24558389:13926137 +g1,17064:32583029,24558389 +) +(1,17067:6630773,25816685:25952256,513147,134348 +k1,17066:8502902,25816685:238316 +k1,17066:11774224,25816685:238316 +k1,17066:14841074,25816685:238317 +k1,17066:16647011,25816685:238316 +k1,17066:18319255,25816685:238316 +k1,17066:18972375,25816685:238277 +k1,17066:20402136,25816685:238316 +k1,17066:24767254,25816685:238316 +k1,17066:27530018,25816685:238317 +k1,17066:30794131,25816685:238316 +k1,17066:31563944,25816685:238316 +k1,17066:32583029,25816685:0 +) +(1,17067:6630773,26681765:25952256,513147,134348 +k1,17066:7912395,26681765:189137 +k1,17066:8760824,26681765:189137 +k1,17066:9305820,26681765:189136 +k1,17066:11820830,26681765:189137 +k1,17066:14912557,26681765:189137 +k1,17066:15760986,26681765:189137 +k1,17066:18669212,26681765:189137 +k1,17066:20084527,26681765:189136 +k1,17066:22404895,26681765:189137 +k1,17066:24793420,26681765:189137 +k1,17066:26078319,26681765:189137 +k1,17066:26883494,26681765:189137 +k1,17066:28091715,26681765:189136 +k1,17066:30018867,26681765:189137 +k1,17066:30867296,26681765:189137 +k1,17067:32583029,26681765:0 +) +(1,17067:6630773,27546845:25952256,505283,134348 +k1,17066:7914062,27546845:205877 +k1,17066:11329235,27546845:205876 +k1,17066:13168925,27546845:205877 +k1,17066:13906299,27546845:205877 +k1,17066:16107091,27546845:205876 +k1,17066:17074496,27546845:205877 +k1,17066:20182963,27546845:205877 +k1,17066:21004877,27546845:205876 +k1,17066:22413995,27546845:205877 +k1,17066:23986952,27546845:205876 +k1,17066:24724326,27546845:205877 +k1,17066:26214709,27546845:205877 +k1,17066:28028183,27546845:205876 +k1,17066:29225620,27546845:205877 +k1,17066:32583029,27546845:0 +) +(1,17067:6630773,28411925:25952256,513147,134348 +k1,17066:8452660,28411925:171690 +k1,17066:9385879,28411925:171691 +k1,17066:11207766,28411925:171690 +k1,17066:13114849,28411925:171690 +k1,17066:16048883,28411925:171691 +k1,17066:18790240,28411925:171690 +k1,17066:20153376,28411925:171691 +k1,17066:22648973,28411925:171690 +k1,17066:26136785,28411925:171690 +k1,17066:28283240,28411925:171855 +k1,17066:30793911,28411925:171691 +k1,17066:31624893,28411925:171690 +k1,17067:32583029,28411925:0 +) +(1,17067:6630773,29277005:25952256,513147,134348 +k1,17066:7799608,29277005:178586 +k1,17066:8334053,29277005:178585 +k1,17066:10385658,29277005:178586 +k1,17066:13259739,29277005:178585 +k1,17066:14832276,29277005:178586 +k1,17066:16762638,29277005:178585 +k1,17066:20517524,29277005:178586 +k1,17066:22303708,29277005:178586 +k1,17066:23473853,29277005:178585 +k1,17066:27009848,29277005:178586 +k1,17066:27949961,29277005:178585 +k1,17066:31483335,29277005:178586 +k1,17067:32583029,29277005:0 +) +(1,17067:6630773,30142085:25952256,513147,126483 +k1,17066:8711951,30142085:161628 +k1,17066:11742745,30142085:161628 +k1,17066:13298324,30142085:161628 +k1,17066:16536867,30142085:161628 +(1,17066:16536867,30142085:0,414482,115847 +r1,17072:16895133,30142085:358266,530329,115847 +k1,17066:16536867,30142085:-358266 +) +(1,17066:16536867,30142085:358266,414482,115847 +k1,17066:16536867,30142085:3277 +h1,17066:16891856,30142085:0,411205,112570 +) +k1,17066:17056761,30142085:161628 +k1,17066:18409834,30142085:161628 +h1,17066:18409834,30142085:0,0,0 +k1,17066:19989959,30142085:161628 +k1,17066:24345236,30142085:161628 +k1,17066:25525949,30142085:161628 +k1,17066:29721973,30142085:161628 +k1,17066:30415098,30142085:161628 +k1,17066:32583029,30142085:0 +) +(1,17067:6630773,31007165:25952256,505283,134348 +k1,17066:12080092,31007165:191365 +k1,17066:13462902,31007165:191365 +k1,17066:14305695,31007165:191365 +k1,17066:14852920,31007165:191365 +k1,17066:16615183,31007165:191365 +k1,17066:18968581,31007165:191365 +k1,17066:20490327,31007165:191365 +k1,17066:22289290,31007165:191365 +k1,17066:23867397,31007165:191365 +k1,17066:25756800,31007165:191365 +k1,17066:28471956,31007165:191365 +k1,17066:31900144,31007165:191365 +k1,17066:32583029,31007165:0 +) +(1,17067:6630773,31872245:25952256,513147,134348 +g1,17066:9670988,31872245 +g1,17066:10521645,31872245 +g1,17066:11076734,31872245 +g1,17066:13531057,31872245 +g1,17066:14413171,31872245 +g1,17066:19522357,31872245 +g1,17066:20704626,31872245 +g1,17066:21435352,31872245 +g1,17066:24895652,31872245 +g1,17066:25856409,31872245 +k1,17067:32583029,31872245:4236252 +g1,17067:32583029,31872245 +) +(1,17069:6630773,32737325:25952256,513147,134348 +h1,17068:6630773,32737325:983040,0,0 +k1,17068:8838463,32737325:271101 +k1,17068:10213845,32737325:271100 +k1,17068:12165289,32737325:271101 +k1,17068:13095681,32737325:271100 +k1,17068:15891229,32737325:271101 +k1,17068:16848491,32737325:271100 +k1,17068:20573995,32737325:271101 +k1,17068:21527980,32737325:271100 +k1,17068:24606643,32737325:271101 +k1,17068:25896828,32737325:271100 +k1,17068:30239681,32737325:271101 +k1,17068:31193666,32737325:271100 +k1,17068:32583029,32737325:0 +) +(1,17069:6630773,33602405:25952256,513147,134348 +k1,17068:8107418,33602405:209179 +k1,17068:8672457,33602405:209179 +k1,17068:11831411,33602405:209179 +k1,17068:15056557,33602405:209179 +k1,17068:16219285,33602405:209179 +k1,17068:17520949,33602405:209179 +k1,17068:21025934,33602405:209179 +k1,17068:21894405,33602405:209179 +k1,17068:25053359,33602405:209179 +k1,17068:26152517,33602405:209179 +k1,17068:30293201,33602405:209179 +k1,17068:32583029,33602405:0 +) +(1,17069:6630773,34467485:25952256,513147,126483 +k1,17068:7487329,34467485:205128 +k1,17068:10733982,34467485:205127 +k1,17068:13701453,34467485:205128 +k1,17068:16281605,34467485:205127 +k1,17068:17146025,34467485:205128 +k1,17068:18448881,34467485:205128 +k1,17068:20217042,34467485:205127 +k1,17068:21324601,34467485:205128 +k1,17068:25271178,34467485:205127 +k1,17068:26580588,34467485:205128 +k1,17068:29047362,34467485:205127 +k1,17068:29911782,34467485:205128 +k1,17068:32583029,34467485:0 +) +(1,17069:6630773,35332565:25952256,513147,126483 +k1,17068:9724224,35332565:252465 +k1,17068:12161004,35332565:252465 +k1,17068:13485638,35332565:252465 +k1,17068:14508806,35332565:252465 +k1,17068:18502721,35332565:252465 +k1,17068:19414478,35332565:252465 +k1,17068:20512356,35332565:252464 +k1,17068:24708778,35332565:252465 +k1,17068:26298177,35332565:252465 +k1,17068:27298408,35332565:252465 +k1,17068:29932451,35332565:252465 +k1,17068:30946444,35332565:252465 +k1,17068:31554769,35332565:252465 +k1,17069:32583029,35332565:0 +) +(1,17069:6630773,36197645:25952256,505283,126483 +k1,17068:8651651,36197645:221915 +k1,17068:9489604,36197645:221915 +k1,17068:14228916,36197645:221915 +k1,17068:16238653,36197645:221915 +k1,17068:17652013,36197645:221915 +k1,17068:18229788,36197645:221915 +k1,17068:20139910,36197645:221915 +k1,17068:20977863,36197645:221915 +k1,17068:22798856,36197645:221915 +k1,17068:23636809,36197645:221915 +k1,17068:26524729,36197645:221915 +k1,17068:27398072,36197645:221915 +k1,17068:28639072,36197645:221915 +k1,17068:32583029,36197645:0 +) +(1,17069:6630773,37062725:25952256,513147,134348 +k1,17068:8596853,37062725:186778 +k1,17068:9686061,37062725:186777 +k1,17068:13614289,37062725:186778 +k1,17068:14748717,37062725:186777 +k1,17068:15954580,37062725:186778 +k1,17068:17410135,37062725:186778 +k1,17068:18788357,37062725:186777 +k1,17068:20844222,37062725:186778 +k1,17068:21690291,37062725:186777 +k1,17068:22232929,37062725:186778 +k1,17068:24073180,37062725:186778 +k1,17068:25364239,37062725:186777 +k1,17068:27812664,37062725:186778 +k1,17068:28658733,37062725:186777 +k1,17068:31028515,37062725:186778 +k1,17068:32583029,37062725:0 +) +(1,17069:6630773,37927805:25952256,513147,134348 +k1,17068:9848372,37927805:206220 +k1,17068:12540373,37927805:206220 +k1,17068:13405885,37927805:206220 +k1,17068:15728918,37927805:206220 +k1,17068:17203915,37927805:206220 +k1,17068:18069427,37927805:206220 +k1,17068:21468560,37927805:206219 +k1,17068:23791593,37927805:206220 +k1,17068:26011079,37927805:206220 +k1,17068:26876591,37927805:206220 +k1,17068:28921096,37927805:206220 +k1,17068:30772925,37927805:206220 +k1,17068:32583029,37927805:0 +) +(1,17069:6630773,38792885:25952256,513147,134348 +k1,17068:7974412,38792885:273436 +k1,17068:10057952,38792885:273436 +k1,17068:11442880,38792885:273437 +k1,17068:12194073,38792885:273436 +k1,17068:13335861,38792885:273436 +k1,17068:14600857,38792885:273436 +k1,17068:18085558,38792885:273437 +k1,17068:18975032,38792885:273436 +k1,17068:20267553,38792885:273436 +k1,17068:24372224,38792885:273436 +k1,17068:27280864,38792885:273437 +k1,17068:29563634,38792885:273436 +k1,17068:31028515,38792885:273436 +k1,17068:32583029,38792885:0 +) +(1,17069:6630773,39657965:25952256,505283,134348 +k1,17068:9895061,39657965:252909 +k1,17068:11016323,39657965:252910 +k1,17068:12606166,39657965:252909 +k1,17068:14407691,39657965:252909 +k1,17068:15312029,39657965:252910 +k1,17068:16657423,39657965:252909 +k1,17068:19794572,39657965:252910 +k1,17068:23959325,39657965:252909 +k1,17068:27033559,39657965:252909 +k1,17068:28840983,39657965:252910 +k1,17068:31931601,39657965:252909 +k1,17068:32583029,39657965:0 +) +(1,17069:6630773,40523045:25952256,513147,138281 +k1,17068:7857045,40523045:207187 +$1,17068:7857045,40523045 +$1,17068:8359706,40523045 +k1,17068:8566893,40523045:207187 +k1,17068:12119039,40523045:207188 +k1,17068:12985518,40523045:207187 +k1,17068:14211790,40523045:207187 +k1,17068:15696274,40523045:207187 +k1,17068:17094907,40523045:207188 +k1,17068:18321179,40523045:207187 +k1,17068:20537700,40523045:207187 +k1,17068:21396315,40523045:207187 +k1,17068:22622587,40523045:207187 +$1,17068:22622587,40523045 +$1,17068:23174400,40523045 +k1,17068:23381588,40523045:207188 +k1,17068:27107403,40523045:207187 +k1,17068:28511277,40523045:207187 +k1,17068:32583029,40523045:0 +) +(1,17069:6630773,41388125:25952256,505283,126483 +g1,17068:8598819,41388125 +g1,17068:9545814,41388125 +g1,17068:13554651,41388125 +g1,17068:14563250,41388125 +g1,17068:15781564,41388125 +g1,17068:17258090,41388125 +g1,17068:18218847,41388125 +k1,17069:32583029,41388125:12172003 +g1,17069:32583029,41388125 +) +(1,17071:6630773,42253205:25952256,513147,134348 +h1,17070:6630773,42253205:983040,0,0 +k1,17070:9074064,42253205:263564 +k1,17070:12240218,42253205:263564 +k1,17070:13163074,42253205:263564 +k1,17070:16145727,42253205:263564 +k1,17070:18421246,42253205:263564 +k1,17070:19429954,42253205:263564 +k1,17070:20344945,42253205:263563 +k1,17070:22697141,42253205:263564 +k1,17070:24568303,42253205:263564 +k1,17070:25593395,42253205:263564 +k1,17070:29211747,42253205:263564 +k1,17070:31817568,42253205:263564 +k1,17071:32583029,42253205:0 +) +(1,17071:6630773,43118285:25952256,513147,134348 +k1,17070:9230133,43118285:282662 +k1,17070:10128832,43118285:282661 +k1,17070:11979771,43118285:282662 +k1,17070:13546938,43118285:282661 +k1,17070:14821160,43118285:282662 +k1,17070:17076456,43118285:282662 +k1,17070:21026512,43118285:282661 +k1,17070:21937009,43118285:282662 +k1,17070:23921641,43118285:282662 +k1,17070:26332911,43118285:282661 +k1,17070:27634658,43118285:282662 +k1,17070:30621990,43118285:282661 +k1,17070:31563944,43118285:282662 +k1,17070:32583029,43118285:0 +) +(1,17071:6630773,43983365:25952256,513147,134348 +k1,17070:9502506,43983365:241773 +k1,17070:14062446,43983365:241773 +k1,17070:14963512,43983365:241774 +k1,17070:17760534,43983365:241773 +k1,17070:19537816,43983365:241773 +k1,17070:21319685,43983365:241773 +k1,17070:23169056,43983365:241773 +k1,17070:24096991,43983365:241773 +k1,17070:25727473,43983365:241774 +k1,17070:26655408,43983365:241773 +k1,17070:27765533,43983365:241773 +k1,17070:30943974,43983365:241773 +k1,17070:32583029,43983365:0 +) +(1,17071:6630773,44848445:25952256,513147,134348 +k1,17070:10236564,44848445:290980 +k1,17070:11546629,44848445:290980 +k1,17070:13423579,44848445:290979 +k1,17070:14373851,44848445:290980 +k1,17070:15683916,44848445:290980 +k1,17070:19051156,44848445:290980 +k1,17070:20722980,44848445:290980 +k1,17070:23987983,44848445:290979 +k1,17070:26324997,44848445:290980 +k1,17070:29444510,44848445:290980 +k1,17070:32583029,44848445:0 +) +] +(1,17072:32583029,45706769:0,0,0 +g1,17072:32583029,45706769 +) +) +] +(1,17072:6630773,47279633:25952256,0,0 +h1,17072:6630773,47279633:25952256,0,0 +) +] +(1,17072:4262630,4025873:0,0,0 +[1,17072:-473656,4025873:0,0,0 +(1,17072:-473656,-710413:0,0,0 +(1,17072:-473656,-710413:0,0,0 +g1,17072:-473656,-710413 +) +g1,17072:-473656,-710413 +) +] +) +] +!24134 +}274 +Input:2486:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2487:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2488:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2489:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2490:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2491:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2492:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!670 +{275 +[1,17084:4262630,47279633:28320399,43253760,0 +(1,17084:4262630,4025873:0,0,0 +[1,17084:-473656,4025873:0,0,0 +(1,17084:-473656,-710413:0,0,0 +(1,17084:-473656,-644877:0,0,0 +k1,17084:-473656,-644877:-65536 ) +(1,17084:-473656,4736287:0,0,0 +k1,17084:-473656,4736287:5209943 ) +g1,17084:-473656,-710413 ) ] -[1,16969:3078558,4812305:0,0,0 -(1,16969:3078558,49800853:0,16384,2228224 -g1,16969:29030814,49800853 -g1,16969:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,16969:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] -) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,16969:37855564,49800853:1179648,16384,0 -) -) -k1,16969:3078556,49800853:-34777008 -) -] -g1,16969:6630773,4812305 -k1,16969:21350816,4812305:13524666 -g1,16969:21999622,4812305 -g1,16969:25611966,4812305 -g1,16969:28956923,4812305 -g1,16969:29772190,4812305 -) -) -] -[1,16969:6630773,45706769:25952256,40108032,0 -(1,16969:6630773,45706769:25952256,40108032,0 -(1,16969:6630773,45706769:0,0,0 -g1,16969:6630773,45706769 -) -[1,16969:6630773,45706769:25952256,40108032,0 -(1,16937:6630773,6254097:25952256,513147,134348 -k1,16936:8000896,6254097:213413 -k1,16936:8873602,6254097:213414 -k1,16936:9875413,6254097:213413 -k1,16936:13665126,6254097:213413 -k1,16936:17386027,6254097:213414 -k1,16936:18952103,6254097:213413 -k1,16936:19521377,6254097:213414 -k1,16936:22257926,6254097:213413 -k1,16936:23157501,6254097:213413 -k1,16936:24527625,6254097:213414 -k1,16936:25400330,6254097:213413 -k1,16936:26402141,6254097:213413 -k1,16936:30191855,6254097:213414 -k1,16936:31601955,6254097:213413 -k1,16937:32583029,6254097:0 -) -(1,16937:6630773,7095585:25952256,513147,134348 -k1,16936:8341082,7095585:212811 -k1,16936:11077028,7095585:212810 -k1,16936:11949131,7095585:212811 -k1,16936:13913718,7095585:212810 -k1,16936:17634016,7095585:212811 -k1,16936:18378323,7095585:212810 -(1,16936:18378323,7095585:0,452978,115847 -r1,16969:23660554,7095585:5282231,568825,115847 -k1,16936:18378323,7095585:-5282231 -) -(1,16936:18378323,7095585:5282231,452978,115847 -k1,16936:18378323,7095585:3277 -h1,16936:23657277,7095585:0,411205,112570 -) -k1,16936:23873365,7095585:212811 -k1,16936:25277620,7095585:212810 -k1,16936:26907319,7095585:212811 -k1,16936:29343110,7095585:212810 -k1,16936:30317449,7095585:212811 -k1,16936:32583029,7095585:0 -) -(1,16937:6630773,7937073:25952256,513147,134348 -k1,16936:7536340,7937073:219405 -k1,16936:8221706,7937073:219405 -k1,16936:9460196,7937073:219405 -k1,16936:11237392,7937073:219405 -k1,16936:12836985,7937073:219405 -k1,16936:14985770,7937073:219405 -k1,16936:16396620,7937073:219405 -k1,16936:17425395,7937073:219405 -k1,16936:20671908,7937073:219405 -k1,16936:22723700,7937073:219405 -k1,16936:23934665,7937073:219405 -k1,16936:25846210,7937073:219405 -k1,16936:28919053,7937073:219405 -k1,16936:29754496,7937073:219405 -k1,16936:32583029,7937073:0 -) -(1,16937:6630773,8778561:25952256,505283,134348 -k1,16936:8126108,8778561:210829 -k1,16936:9812152,8778561:210829 -k1,16936:13573066,8778561:210829 -k1,16936:17291382,8778561:210829 -k1,16936:18786718,8778561:210830 -k1,16936:20101829,8778561:210829 -k1,16936:21060424,8778561:210829 -k1,16936:22784479,8778561:210829 -k1,16936:25572184,8778561:210829 -k1,16936:31028515,8778561:210829 -k1,16936:32583029,8778561:0 -) -(1,16937:6630773,9620049:25952256,513147,134348 -k1,16936:8652371,9620049:251471 -k1,16936:9555270,9620049:251471 -k1,16936:11135811,9620049:251471 -k1,16936:12654748,9620049:251471 -k1,16936:16243312,9620049:251471 -k1,16936:17686228,9620049:251471 -k1,16936:18553737,9620049:251471 -k1,16936:20008448,9620049:251470 -k1,16936:22015629,9620049:251471 -k1,16936:23642701,9620049:251471 -k1,16936:27401659,9620049:251471 -k1,16936:28937636,9620049:251471 -k1,16936:30664322,9620049:251471 -k1,16936:31601955,9620049:251471 -k1,16937:32583029,9620049:0 -) -(1,16937:6630773,10461537:25952256,513147,134348 -k1,16936:8393689,10461537:265418 -(1,16936:8393689,10461537:0,452978,115847 -r1,16969:13675920,10461537:5282231,568825,115847 -k1,16936:8393689,10461537:-5282231 -) -(1,16936:8393689,10461537:5282231,452978,115847 -k1,16936:8393689,10461537:3277 -h1,16936:13672643,10461537:0,411205,112570 -) -k1,16936:13941339,10461537:265419 -k1,16936:15198317,10461537:265418 -k1,16936:18553758,10461537:265418 -k1,16936:19505338,10461537:265418 -k1,16936:23278244,10461537:265419 -k1,16936:24159700,10461537:265418 -k1,16936:26703805,10461537:265418 -h1,16936:27674393,10461537:0,0,0 -k1,16936:28113481,10461537:265418 -k1,16936:29006735,10461537:265419 -k1,16936:30291238,10461537:265418 -k1,16936:31923737,10461537:265418 -k1,16936:32583029,10461537:0 -) -(1,16937:6630773,11303025:25952256,513147,126483 -k1,16936:8593355,11303025:218669 -k1,16936:10096531,11303025:218670 -k1,16936:11076728,11303025:218669 -k1,16936:13560977,11303025:218669 -k1,16936:14872131,11303025:218669 -k1,16936:16792771,11303025:218670 -k1,16936:20038548,11303025:218669 -k1,16936:21403442,11303025:218669 -(1,16936:21403442,11303025:0,452978,122846 -r1,16969:25982250,11303025:4578808,575824,122846 -k1,16936:21403442,11303025:-4578808 -) -(1,16936:21403442,11303025:4578808,452978,122846 -k1,16936:21403442,11303025:3277 -h1,16936:25978973,11303025:0,411205,112570 -) -k1,16936:26200919,11303025:218669 -k1,16936:27795190,11303025:218670 -k1,16936:29032944,11303025:218669 -k1,16936:32583029,11303025:0 -) -(1,16937:6630773,12144513:25952256,513147,126483 -g1,16936:9526809,12144513 -(1,16936:9526809,12144513:0,452978,115847 -r1,16969:14105617,12144513:4578808,568825,115847 -k1,16936:9526809,12144513:-4578808 -) -(1,16936:9526809,12144513:4578808,452978,115847 -k1,16936:9526809,12144513:3277 -h1,16936:14102340,12144513:0,411205,112570 -) -g1,16936:14304846,12144513 -g1,16936:15451726,12144513 -g1,16936:16854196,12144513 -g1,16936:19888512,12144513 -g1,16936:21079301,12144513 -g1,16936:24368553,12144513 -g1,16936:25183820,12144513 -g1,16936:27661736,12144513 -h1,16936:28632324,12144513:0,0,0 -k1,16937:32583029,12144513:3777035 -g1,16937:32583029,12144513 -) -(1,16939:6630773,12986001:25952256,505283,134348 -h1,16938:6630773,12986001:983040,0,0 -k1,16938:8340056,12986001:238655 -k1,16938:10604468,12986001:238694 -k1,16938:11947444,12986001:238694 -k1,16938:13661353,12986001:238694 -k1,16938:14255908,12986001:238695 -k1,16938:16367621,12986001:238694 -k1,16938:18164106,12986001:238694 -k1,16938:19085685,12986001:238694 -k1,16938:21076157,12986001:238695 -k1,16938:23376614,12986001:238694 -k1,16938:24687477,12986001:238694 -k1,16938:26624210,12986001:238695 -k1,16938:29218923,12986001:238694 -k1,16938:30932832,12986001:238694 -k1,16938:32583029,12986001:0 -) -(1,16939:6630773,13827489:25952256,513147,134348 -k1,16938:8328632,13827489:255412 -k1,16938:9740753,13827489:255411 -k1,16938:11727626,13827489:255412 -k1,16938:13002123,13827489:255412 -k1,16938:14646898,13827489:255412 -k1,16938:16426021,13827489:255411 -k1,16938:21075622,13827489:255412 -k1,16938:22522479,13827489:255412 -k1,16938:26173311,13827489:255412 -k1,16938:27088014,13827489:255411 -k1,16938:30293201,13827489:255412 -k1,16938:32583029,13827489:0 -) -(1,16939:6630773,14668977:25952256,513147,134348 -k1,16938:8574214,14668977:260476 -k1,16938:10497337,14668977:260475 -k1,16938:15330915,14668977:260476 -k1,16938:16539042,14668977:260476 -k1,16938:18251140,14668977:260476 -k1,16938:20243076,14668977:260475 -k1,16938:21321441,14668977:260476 -k1,16938:24999620,14668977:260476 -k1,16938:27289091,14668977:260476 -k1,16938:29151266,14668977:260475 -k1,16938:31767761,14668977:260476 -k1,16938:32583029,14668977:0 -) -(1,16939:6630773,15510465:25952256,513147,126483 -k1,16938:7856851,15510465:159807 -k1,16938:9491873,15510465:159807 -k1,16938:11102647,15510465:159807 -k1,16938:15269325,15510465:159807 -k1,16938:17490895,15510465:159807 -k1,16938:18722871,15510465:159807 -k1,16938:19901762,15510465:159806 -k1,16938:21949661,15510465:159807 -k1,16938:23846172,15510465:159807 -k1,16938:25025064,15510465:159807 -k1,16938:26838344,15510465:159807 -k1,16938:28387514,15510465:159807 -k1,16938:29738766,15510465:159807 -k1,16938:32583029,15510465:0 -) -(1,16939:6630773,16351953:25952256,513147,134348 -k1,16938:9945181,16351953:176544 -k1,16938:10734487,16351953:176544 -k1,16938:11930116,16351953:176544 -k1,16938:13800765,16351953:176544 -k1,16938:16003682,16351953:176544 -k1,16938:16839518,16351953:176544 -k1,16938:18219302,16351953:176543 -k1,16938:20084053,16351953:176544 -k1,16938:24654786,16351953:176544 -k1,16938:25447368,16351953:176544 -k1,16938:27512004,16351953:176544 -k1,16938:28680108,16351953:176544 -k1,16938:30985917,16351953:176544 -k1,16939:32583029,16351953:0 -) -(1,16939:6630773,17193441:25952256,513147,134348 -k1,16938:9485240,17193441:231716 -k1,16938:10376249,17193441:231717 -k1,16938:12351878,17193441:231716 -k1,16938:13199633,17193441:231717 -k1,16938:15133319,17193441:231716 -k1,16938:17426799,17193441:231717 -k1,16938:19729453,17193441:231716 -k1,16938:21245675,17193441:231716 -k1,16938:22425043,17193441:231717 -k1,16938:23012619,17193441:231716 -k1,16938:24939097,17193441:231717 -k1,16938:28015076,17193441:231716 -k1,16938:29622394,17193441:231717 -k1,16938:31010820,17193441:231716 -k1,16938:32583029,17193441:0 -) -(1,16939:6630773,18034929:25952256,513147,126483 -k1,16938:7446142,18034929:283872 -k1,16938:10179749,18034929:283871 -k1,16938:11520061,18034929:283872 -k1,16938:13254899,18034929:283871 -k1,16938:14919615,18034929:283872 -k1,16938:15734983,18034929:283871 -k1,16938:19656103,18034929:283872 -k1,16938:21131419,18034929:283871 -k1,16938:23461325,18034929:283872 -k1,16938:24203293,18034929:283871 -k1,16938:26459799,18034929:283872 -k1,16938:30194796,18034929:283871 -k1,16938:31426319,18034929:283872 -k1,16938:32583029,18034929:0 -) -(1,16939:6630773,18876417:25952256,513147,134348 -g1,16938:9674265,18876417 -g1,16938:10524922,18876417 -g1,16938:11471917,18876417 -g1,16938:14445940,18876417 -g1,16938:17407512,18876417 -g1,16938:20665306,18876417 -g1,16938:21480573,18876417 -g1,16938:24442145,18876417 -g1,16938:26529466,18876417 -g1,16938:27387987,18876417 -g1,16938:28606301,18876417 -g1,16938:30459003,18876417 -k1,16939:32583029,18876417:673059 -g1,16939:32583029,18876417 -) -(1,16943:6630773,20967677:25952256,555811,12975 -(1,16943:6630773,20967677:2450326,534184,12975 -g1,16943:6630773,20967677 -g1,16943:9081099,20967677 -) -g1,16943:10708162,20967677 -k1,16943:32583029,20967677:17284922 -g1,16943:32583029,20967677 -) -(1,16947:6630773,22202381:25952256,513147,134348 -k1,16946:7700695,22202381:252033 -k1,16946:8971812,22202381:252032 -k1,16946:10316330,22202381:252033 -k1,16946:11227655,22202381:252033 -k1,16946:12498772,22202381:252032 -k1,16946:15653395,22202381:252033 -k1,16946:16436924,22202381:252032 -k1,16946:18559355,22202381:252033 -k1,16946:19462816,22202381:252033 -k1,16946:23747934,22202381:252032 -k1,16946:24761495,22202381:252033 -k1,16946:27674945,22202381:252033 -k1,16946:29369424,22202381:252032 -k1,16946:30272885,22202381:252033 -k1,16946:32583029,22202381:0 -) -(1,16947:6630773,23043869:25952256,513147,134348 -k1,16946:8220526,23043869:195802 -k1,16946:10544936,23043869:195801 -k1,16946:10953727,23043869:195799 -k1,16946:12281990,23043869:195801 -k1,16946:14138474,23043869:195802 -k1,16946:15664656,23043869:195801 -k1,16946:16511886,23043869:195802 -k1,16946:18350020,23043869:195802 -k1,16946:20153419,23043869:195801 -k1,16946:21008513,23043869:195802 -k1,16946:24466042,23043869:195802 -k1,16946:28341034,23043869:195801 -k1,16946:31015408,23043869:195802 -k1,16946:32583029,23043869:0 -) -(1,16947:6630773,23885357:25952256,513147,134348 -k1,16946:7824990,23885357:175132 -k1,16946:10712003,23885357:175133 -k1,16946:13690765,23885357:175132 -k1,16946:14763741,23885357:175133 -k1,16946:17808039,23885357:175132 -k1,16946:18642464,23885357:175133 -k1,16946:19173456,23885357:175132 -k1,16946:20625886,23885357:175133 -k1,16946:22276233,23885357:175132 -k1,16946:25220917,23885357:175133 -k1,16946:28227204,23885357:175132 -k1,16946:29018375,23885357:175133 -k1,16946:30885647,23885357:175132 -k1,16946:32583029,23885357:0 -) -(1,16947:6630773,24726845:25952256,513147,126483 -k1,16946:8613439,24726845:285939 -k1,16946:11495258,24726845:285938 -k1,16946:13624069,24726845:285939 -k1,16946:14526045,24726845:285938 -k1,16946:16818041,24726845:285939 -k1,16946:18885248,24726845:285938 -k1,16946:21849643,24726845:285939 -k1,16946:23851314,24726845:285938 -k1,16946:24595350,24726845:285939 -k1,16946:27511248,24726845:285938 -k1,16946:28448615,24726845:285939 -k1,16946:30663933,24726845:285938 -k1,16946:31305732,24726845:285939 -k1,16946:32583029,24726845:0 -) -(1,16947:6630773,25568333:25952256,513147,134348 -k1,16946:8220122,25568333:235375 -k1,16946:11814217,25568333:235375 -k1,16946:13832827,25568333:235375 -k1,16946:16700783,25568333:235375 -k1,16946:17292018,25568333:235375 -k1,16946:18804690,25568333:235375 -k1,16946:20395349,25568333:235374 -k1,16946:21392252,25568333:235375 -k1,16946:23156582,25568333:235375 -k1,16946:24260309,25568333:235375 -k1,16946:25599966,25568333:235375 -k1,16946:28566226,25568333:235375 -k1,16946:29820686,25568333:235375 -k1,16946:32583029,25568333:0 -) -(1,16947:6630773,26409821:25952256,513147,134348 -k1,16946:9212073,26409821:206275 -k1,16946:12508370,26409821:206274 -k1,16946:13330683,26409821:206275 -k1,16946:14556042,26409821:206274 -k1,16946:17516795,26409821:206275 -k1,16946:20175426,26409821:206274 -k1,16946:21400786,26409821:206275 -k1,16946:24538485,26409821:206274 -k1,16946:25404052,26409821:206275 -k1,16946:26629411,26409821:206274 -k1,16946:28968883,26409821:206275 -k1,16946:30194242,26409821:206274 -k1,16946:32583029,26409821:0 -) -(1,16947:6630773,27251309:25952256,513147,126483 -k1,16946:9107832,27251309:144633 -k1,16946:10443910,27251309:144633 -k1,16946:11607627,27251309:144632 -k1,16946:16919774,27251309:144633 -k1,16946:19436155,27251309:144633 -k1,16946:20232216,27251309:144633 -k1,16946:21395933,27251309:144632 -k1,16946:22929929,27251309:144633 -k1,16946:23690600,27251309:144633 -k1,16946:24854318,27251309:144633 -k1,16946:26700920,27251309:144632 -k1,16946:29480756,27251309:144633 -k1,16946:30644474,27251309:144633 -k1,16946:32583029,27251309:0 -) -(1,16947:6630773,28092797:25952256,513147,134348 -k1,16946:8893406,28092797:224463 -k1,16946:9733906,28092797:224462 -k1,16946:10729072,28092797:224463 -k1,16946:12913060,28092797:224462 -k1,16946:14328968,28092797:224463 -k1,16946:16942218,28092797:224463 -k1,16946:19499106,28092797:224462 -k1,16946:20351404,28092797:224463 -k1,16946:21779107,28092797:224462 -k1,16946:24282257,28092797:224463 -k1,16946:24719686,28092797:224437 -k1,16946:28371682,28092797:224463 -k1,16946:29615229,28092797:224462 -k1,16946:31923737,28092797:224463 -k1,16946:32583029,28092797:0 -) -(1,16947:6630773,28934285:25952256,505283,134348 -g1,16946:7849087,28934285 -g1,16946:10950906,28934285 -g1,16946:12341580,28934285 -g1,16946:13871190,28934285 -g1,16946:14528516,28934285 -g1,16946:17959981,28934285 -g1,16946:19426676,28934285 -g1,16946:19981765,28934285 -k1,16947:32583029,28934285:11150297 -g1,16947:32583029,28934285 -) -v1,16949:6630773,30195508:0,393216,0 -(1,16950:6630773,32437505:25952256,2635213,0 -g1,16950:6630773,32437505 -g1,16950:6303093,32437505 -r1,16969:6401397,32437505:98304,2635213,0 -g1,16950:6600626,32437505 -g1,16950:6797234,32437505 -[1,16950:6797234,32437505:25785795,2635213,0 -(1,16950:6797234,30628046:25785795,825754,196608 -(1,16949:6797234,30628046:0,825754,196608 -r1,16969:8834093,30628046:2036859,1022362,196608 -k1,16949:6797234,30628046:-2036859 -) -(1,16949:6797234,30628046:2036859,825754,196608 -) -k1,16949:9042615,30628046:208522 -k1,16949:10360544,30628046:327680 -k1,16949:12352301,30628046:208522 -k1,16949:14963373,30628046:208522 -k1,16949:16375136,30628046:208522 -k1,16949:19036015,30628046:208522 -k1,16949:21888260,30628046:208523 -k1,16949:22452642,30628046:208522 -k1,16949:24902495,30628046:208522 -k1,16949:26710095,30628046:208522 -k1,16949:28011102,30628046:208522 -(1,16949:28011102,30628046:0,452978,115847 -r1,16969:31183062,30628046:3171960,568825,115847 -k1,16949:28011102,30628046:-3171960 -) -(1,16949:28011102,30628046:3171960,452978,115847 -k1,16949:28011102,30628046:3277 -h1,16949:31179785,30628046:0,411205,112570 -) -k1,16949:31391584,30628046:208522 -k1,16950:32583029,30628046:0 -) -(1,16950:6797234,31469534:25785795,505283,134348 -(1,16949:6797234,31469534:0,452978,115847 -r1,16969:8562347,31469534:1765113,568825,115847 -k1,16949:6797234,31469534:-1765113 -) -(1,16949:6797234,31469534:1765113,452978,115847 -k1,16949:6797234,31469534:3277 -h1,16949:8559070,31469534:0,411205,112570 -) -k1,16949:8785370,31469534:223023 -k1,16949:9694554,31469534:223022 -k1,16949:13007600,31469534:223023 -k1,16949:13846660,31469534:223022 -k1,16949:15088768,31469534:223023 -k1,16949:18066268,31469534:223022 -k1,16949:20567978,31469534:223023 -k1,16949:21442428,31469534:223022 -k1,16949:24033922,31469534:223023 -k1,16949:25587325,31469534:223022 -(1,16949:25587325,31469534:0,452978,122846 -r1,16969:27000726,31469534:1413401,575824,122846 -k1,16949:25587325,31469534:-1413401 -) -(1,16949:25587325,31469534:1413401,452978,122846 -k1,16949:25587325,31469534:3277 -h1,16949:26997449,31469534:0,411205,112570 -) -k1,16949:27223749,31469534:223023 -k1,16949:28724068,31469534:223022 -k1,16949:31236919,31469534:223023 -k1,16949:32583029,31469534:0 -) -(1,16950:6797234,32311022:25785795,513147,126483 -g1,16949:8279658,32311022 -g1,16949:11102293,32311022 -g1,16949:15229095,32311022 -g1,16949:16114486,32311022 -g1,16949:17332800,32311022 -g1,16949:19426019,32311022 -g1,16949:20572899,32311022 -g1,16949:21791213,32311022 -g1,16949:23267739,32311022 -g1,16949:25805948,32311022 -g1,16949:26621215,32311022 -k1,16950:32583029,32311022:2282623 -g1,16950:32583029,32311022 -) -] -g1,16950:32583029,32437505 -) -h1,16950:6630773,32437505:0,0,0 -(1,16953:6630773,33698727:25952256,513147,134348 -h1,16952:6630773,33698727:983040,0,0 -k1,16952:8744620,33698727:177258 -k1,16952:10410201,33698727:177258 -k1,16952:11348987,33698727:177258 -k1,16952:13261638,33698727:177258 -k1,16952:16134392,33698727:177258 -(1,16952:16134392,33698727:0,452978,122846 -r1,16969:18954641,33698727:2820249,575824,122846 -k1,16952:16134392,33698727:-2820249 -) -(1,16952:16134392,33698727:2820249,452978,122846 -k1,16952:16134392,33698727:3277 -h1,16952:18951364,33698727:0,411205,112570 -) -k1,16952:19131899,33698727:177258 -k1,16952:19960585,33698727:177258 -k1,16952:22067223,33698727:177258 -k1,16952:23263566,33698727:177258 -k1,16952:26129766,33698727:177258 -k1,16952:27254675,33698727:177258 -k1,16952:27787793,33698727:177258 -k1,16952:29416018,33698727:177258 -k1,16952:31478747,33698727:177258 -k1,16952:32583029,33698727:0 -) -(1,16953:6630773,34540215:25952256,505283,126483 -g1,16952:7577768,34540215 -g1,16952:11000058,34540215 -g1,16952:12271456,34540215 -g1,16952:13756501,34540215 -g1,16952:16305851,34540215 -g1,16952:17191242,34540215 -g1,16952:18095638,34540215 -g1,16952:18784421,34540215 -g1,16952:20171162,34540215 -g1,16952:21733540,34540215 -g1,16952:22713303,34540215 -g1,16952:24340562,34540215 -g1,16952:25214812,34540215 -k1,16953:32583029,34540215:5305144 -g1,16953:32583029,34540215 -) -v1,16955:6630773,35626128:0,393216,0 -(1,16959:6630773,35941224:25952256,708312,196608 -g1,16959:6630773,35941224 -g1,16959:6630773,35941224 -g1,16959:6434165,35941224 -(1,16959:6434165,35941224:0,708312,196608 -r1,16969:32779637,35941224:26345472,904920,196608 -k1,16959:6434165,35941224:-26345472 -) -(1,16959:6434165,35941224:26345472,708312,196608 -[1,16959:6630773,35941224:25952256,511704,0 -(1,16957:6630773,35833746:25952256,404226,107478 -(1,16956:6630773,35833746:0,0,0 -g1,16956:6630773,35833746 -g1,16956:6630773,35833746 -g1,16956:6303093,35833746 -(1,16956:6303093,35833746:0,0,0 -) -g1,16956:6630773,35833746 -) -k1,16957:6630773,35833746:0 -h1,16957:9159938,35833746:0,0,0 -k1,16957:32583030,35833746:23423092 -g1,16957:32583030,35833746 -) -] -) -g1,16959:32583029,35941224 -g1,16959:6630773,35941224 -g1,16959:6630773,35941224 -g1,16959:32583029,35941224 -g1,16959:32583029,35941224 -) -h1,16959:6630773,36137832:0,0,0 -(1,16962:6630773,45706769:25952256,9083666,0 -k1,16962:10523651,45706769:3892878 -h1,16961:10523651,45706769:0,0,0 -(1,16961:10523651,45706769:18166500,9083666,0 -(1,16961:10523651,45706769:18167376,9083688,0 -(1,16961:10523651,45706769:18167376,9083688,0 -(1,16961:10523651,45706769:0,9083688,0 -(1,16961:10523651,45706769:0,14208860,0 -(1,16961:10523651,45706769:28417720,14208860,0 -) -k1,16961:10523651,45706769:-28417720 ) +[1,17084:6630773,47279633:25952256,43253760,0 +[1,17084:6630773,4812305:25952256,786432,0 +(1,17084:6630773,4812305:25952256,513147,126483 +(1,17084:6630773,4812305:25952256,513147,126483 +g1,17084:3078558,4812305 +[1,17084:3078558,4812305:0,0,0 +(1,17084:3078558,2439708:0,1703936,0 +k1,17084:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,17084:2537886,2439708:1179648,16384,0 +) +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,17084:3078558,1915420:16384,1179648,0 ) -g1,16961:28691027,45706769 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) +] ) ) -g1,16962:28690151,45706769 -k1,16962:32583029,45706769:3892878 ) ] -(1,16969:32583029,45706769:0,0,0 -g1,16969:32583029,45706769 +[1,17084:3078558,4812305:0,0,0 +(1,17084:3078558,2439708:0,1703936,0 +g1,17084:29030814,2439708 +g1,17084:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,17084:36151628,1915420:16384,1179648,0 ) +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] -(1,16969:6630773,47279633:25952256,0,0 -h1,16969:6630773,47279633:25952256,0,0 ) -] -(1,16969:4262630,4025873:0,0,0 -[1,16969:-473656,4025873:0,0,0 -(1,16969:-473656,-710413:0,0,0 -(1,16969:-473656,-710413:0,0,0 -g1,16969:-473656,-710413 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,17084:37855564,2439708:1179648,16384,0 ) -g1,16969:-473656,-710413 ) -] +k1,17084:3078556,2439708:-34777008 ) ] -!22623 -}293 -Input:2488:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2489:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2490:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2491:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2492:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +[1,17084:3078558,4812305:0,0,0 +(1,17084:3078558,49800853:0,16384,2228224 +k1,17084:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,17084:2537886,49800853:1179648,16384,0 +) +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,17084:3078558,51504789:16384,1179648,0 +) +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 +) +] +) +) +) +] +[1,17084:3078558,4812305:0,0,0 +(1,17084:3078558,49800853:0,16384,2228224 +g1,17084:29030814,49800853 +g1,17084:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,17084:36151628,51504789:16384,1179648,0 +) +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 +) +] +) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,17084:37855564,49800853:1179648,16384,0 +) +) +k1,17084:3078556,49800853:-34777008 +) +] +g1,17084:6630773,4812305 +k1,17084:21350816,4812305:13524666 +g1,17084:21999622,4812305 +g1,17084:25611966,4812305 +g1,17084:28956923,4812305 +g1,17084:29772190,4812305 +) +) +] +[1,17084:6630773,45706769:25952256,40108032,0 +(1,17084:6630773,45706769:25952256,40108032,0 +(1,17084:6630773,45706769:0,0,0 +g1,17084:6630773,45706769 +) +[1,17084:6630773,45706769:25952256,40108032,0 +(1,17071:6630773,6254097:25952256,513147,126483 +k1,17070:9705285,6254097:217798 +k1,17070:10609245,6254097:217798 +k1,17070:11695395,6254097:217798 +k1,17070:13017474,6254097:217797 +k1,17070:14877604,6254097:217798 +k1,17070:16703000,6254097:217798 +k1,17070:18112243,6254097:217798 +k1,17070:19796737,6254097:217798 +k1,17070:21730923,6254097:217798 +k1,17070:22608013,6254097:217798 +k1,17070:24433409,6254097:217798 +k1,17070:26536677,6254097:217797 +k1,17070:28258526,6254097:217798 +k1,17070:29542595,6254097:217798 +k1,17070:31227089,6254097:217798 +k1,17071:32583029,6254097:0 +) +(1,17071:6630773,7119177:25952256,505283,134348 +g1,17070:9186021,7119177 +g1,17070:11074768,7119177 +g1,17070:14352878,7119177 +g1,17070:15571192,7119177 +g1,17070:18598954,7119177 +k1,17071:32583029,7119177:11230252 +g1,17071:32583029,7119177 +) +(1,17073:6630773,7984257:25952256,505283,134348 +h1,17072:6630773,7984257:983040,0,0 +k1,17072:9567050,7984257:170002 +k1,17072:10092912,7984257:170002 +k1,17072:11540211,7984257:170002 +k1,17072:12241711,7984257:170003 +k1,17072:14063876,7984257:170002 +k1,17072:15252963,7984257:170002 +k1,17072:17305814,7984257:170002 +k1,17072:18753113,7984257:170002 +k1,17072:20114560,7984257:170002 +k1,17072:21072960,7984257:170002 +k1,17072:25170535,7984257:170002 +k1,17072:26332098,7984257:170003 +k1,17072:28852221,7984257:170002 +k1,17072:29708385,7984257:170002 +k1,17072:30293201,7984257:169973 +k1,17072:32583029,7984257:0 +) +(1,17073:6630773,8849337:25952256,513147,134348 +k1,17072:8163879,8849337:248600 +k1,17072:9516761,8849337:248600 +k1,17072:10513127,8849337:248600 +k1,17072:12573142,8849337:248600 +k1,17072:13437780,8849337:248600 +k1,17072:14705465,8849337:248600 +k1,17072:18338344,8849337:248600 +k1,17072:19269828,8849337:248599 +k1,17072:21804979,8849337:248600 +k1,17072:22705007,8849337:248600 +k1,17072:23309467,8849337:248600 +k1,17072:24541107,8849337:248600 +k1,17072:25475869,8849337:248600 +k1,17072:28187967,8849337:248600 +k1,17072:29633254,8849337:248600 +k1,17072:32583029,8849337:0 +) +(1,17073:6630773,9714417:25952256,505283,134348 +k1,17072:11475653,9714417:180027 +k1,17072:12187178,9714417:180028 +k1,17072:15520142,9714417:180027 +k1,17072:17398207,9714417:180027 +k1,17072:18597320,9714417:180028 +k1,17072:20736873,9714417:180027 +k1,17072:21448397,9714417:180027 +k1,17072:24152215,9714417:180027 +k1,17072:27229590,9714417:180028 +k1,17072:28092502,9714417:180027 +k1,17072:32583029,9714417:0 +) +(1,17073:6630773,10579497:25952256,513147,134348 +k1,17072:7972210,10579497:144750 +k1,17072:9770433,10579497:144750 +(1,17072:9770433,10579497:0,452978,122846 +r1,17084:11183834,10579497:1413401,575824,122846 +k1,17072:9770433,10579497:-1413401 +) +(1,17072:9770433,10579497:1413401,452978,122846 +k1,17072:9770433,10579497:3277 +h1,17072:11180557,10579497:0,411205,112570 +) +k1,17072:11328584,10579497:144750 +k1,17072:12750630,10579497:144749 +k1,17072:14854906,10579497:144750 +k1,17072:16103938,10579497:144750 +k1,17072:16996454,10579497:144750 +k1,17072:20016268,10579497:144750 +k1,17072:21428484,10579497:144750 +k1,17072:24335576,10579497:144749 +k1,17072:26735420,10579497:144750 +k1,17072:28071615,10579497:144750 +k1,17072:30194242,10579497:144750 +k1,17072:32583029,10579497:0 +) +(1,17073:6630773,11444577:25952256,513147,134348 +g1,17072:9340686,11444577 +g1,17072:10487566,11444577 +g1,17072:12981866,11444577 +g1,17072:13863980,11444577 +k1,17073:32583029,11444577:15973090 +g1,17073:32583029,11444577 +) +(1,17075:6630773,12309657:25952256,513147,134348 +h1,17074:6630773,12309657:983040,0,0 +k1,17074:9085096,12309657:274596 +k1,17074:14196904,12309657:274596 +k1,17074:15130792,12309657:274596 +k1,17074:15761248,12309657:274596 +k1,17074:16970387,12309657:274596 +k1,17074:17904276,12309657:274597 +k1,17074:19568235,12309657:274596 +k1,17074:20525716,12309657:274596 +k1,17074:24872064,12309657:274596 +k1,17074:26414126,12309657:274596 +k1,17074:27044582,12309657:274596 +k1,17074:30194242,12309657:274596 +k1,17074:32583029,12309657:0 +) +(1,17075:6630773,13174737:25952256,513147,134348 +k1,17074:8243006,13174737:218282 +k1,17074:11041439,13174737:218281 +k1,17074:14088254,13174737:218282 +k1,17074:15410818,13174737:218282 +k1,17074:16376866,13174737:218282 +k1,17074:20404755,13174737:218281 +k1,17074:21309199,13174737:218282 +k1,17074:21883341,13174737:218282 +k1,17074:23451664,13174737:218281 +k1,17074:24329238,13174737:218282 +k1,17074:28528177,13174737:218282 +k1,17074:29818628,13174737:218282 +k1,17074:31322725,13174737:218281 +k1,17074:32227169,13174737:218282 +k1,17074:32583029,13174737:0 +) +(1,17075:6630773,14039817:25952256,513147,126483 +k1,17074:9747720,14039817:177002 +k1,17074:10584013,14039817:177001 +k1,17074:13221892,14039817:177002 +k1,17074:16333596,14039817:177002 +k1,17074:18059213,14039817:177001 +k1,17074:20296012,14039817:177002 +k1,17074:21757520,14039817:177002 +k1,17074:22953606,14039817:177001 +k1,17074:26104632,14039817:177002 +k1,17074:29055118,14039817:177002 +k1,17074:29587979,14039817:177001 +k1,17074:32051532,14039817:177002 +k1,17074:32583029,14039817:0 +) +(1,17075:6630773,14904897:25952256,513147,126483 +k1,17074:8132028,14904897:216749 +k1,17074:8814739,14904897:216750 +k1,17074:9899840,14904897:216749 +k1,17074:10931857,14904897:216749 +k1,17074:12214878,14904897:216750 +k1,17074:15328974,14904897:216749 +k1,17074:18195344,14904897:216749 +k1,17074:19178210,14904897:216750 +k1,17074:21080545,14904897:216749 +k1,17074:21913332,14904897:216749 +k1,17074:23227810,14904897:216750 +k1,17074:25114416,14904897:216749 +k1,17074:25947203,14904897:216749 +k1,17074:27765653,14904897:216750 +k1,17074:29679784,14904897:216749 +k1,17074:32583029,14904897:0 +) +(1,17075:6630773,15769977:25952256,513147,126483 +k1,17074:9381606,15769977:154952 +k1,17074:10484208,15769977:154951 +k1,17074:12278215,15769977:154952 +k1,17074:13565629,15769977:154952 +k1,17074:14468346,15769977:154951 +k1,17074:16136524,15769977:154952 +k1,17074:18792330,15769977:154952 +k1,17074:20143968,15769977:154951 +k1,17074:22237475,15769977:154952 +k1,17074:23043855,15769977:154952 +k1,17074:24841139,15769977:154952 +k1,17074:25351950,15769977:154951 +k1,17074:26784199,15769977:154952 +k1,17074:28799718,15769977:154952 +k1,17074:29606097,15769977:154951 +k1,17074:32020075,15769977:154952 +k1,17074:32583029,15769977:0 +) +(1,17075:6630773,16635057:25952256,505283,134348 +k1,17074:7806582,16635057:156724 +k1,17074:9352670,16635057:156725 +k1,17074:10160823,16635057:156725 +k1,17074:11583703,16635057:156724 +k1,17074:12347947,16635057:156725 +k1,17074:14390142,16635057:156724 +k1,17074:17058206,16635057:156724 +k1,17074:17866359,16635057:156725 +k1,17074:19419656,16635057:156725 +k1,17074:20227808,16635057:156724 +k1,17074:22270004,16635057:156725 +k1,17074:25376503,16635057:156724 +k1,17074:28311298,16635057:156724 +k1,17074:29358002,16635057:156725 +k1,17074:32583029,16635057:0 +) +(1,17075:6630773,17500137:25952256,505283,134348 +k1,17074:7323769,17500137:152324 +k1,17074:9361564,17500137:152324 +k1,17074:11401980,17500137:152324 +k1,17074:12205733,17500137:152325 +k1,17074:13555400,17500137:152324 +k1,17074:14899169,17500137:152324 +k1,17074:16936964,17500137:152324 +k1,17074:20252711,17500137:152324 +k1,17074:25069888,17500137:152324 +k1,17074:25873640,17500137:152324 +k1,17074:27292121,17500137:152325 +k1,17074:28072280,17500137:152324 +k1,17074:29243689,17500137:152324 +k1,17074:31298523,17500137:152324 +k1,17074:32583029,17500137:0 +) +(1,17075:6630773,18365217:25952256,505283,126483 +k1,17074:9644555,18365217:171486 +k1,17074:10835125,18365217:171485 +k1,17074:12220338,18365217:171486 +k1,17074:15027027,18365217:171486 +k1,17074:16587875,18365217:171485 +k1,17074:18770006,18365217:171486 +k1,17074:20132937,18365217:171486 +k1,17074:23148685,18365217:171485 +k1,17074:25504486,18365217:171486 +k1,17074:26230407,18365217:171486 +k1,17074:26757752,18365217:171485 +k1,17074:30337110,18365217:171486 +k1,17074:32583029,18365217:0 +) +(1,17075:6630773,19230297:25952256,513147,138281 +k1,17074:9821896,19230297:214478 +k1,17074:11411974,19230297:214477 +k1,17074:14801016,19230297:214478 +$1,17074:14801016,19230297 +$1,17074:15303677,19230297 +k1,17074:15691824,19230297:214477 +$1,17074:15691824,19230297 +$1,17074:16243637,19230297 +k1,17074:16458115,19230297:214478 +k1,17074:17864037,19230297:214477 +k1,17074:20722237,19230297:214478 +$1,17074:20722237,19230297 +$1,17074:21147566,19230297 +k1,17074:21742807,19230297:214477 +k1,17074:22429144,19230297:214478 +k1,17074:22999481,19230297:214477 +k1,17074:25200355,19230297:214478 +k1,17074:26066260,19230297:214477 +k1,17074:27546894,19230297:214478 +k1,17074:28958058,19230297:214477 +k1,17074:31015408,19230297:214478 +k1,17074:32583029,19230297:0 +) +(1,17075:6630773,20095377:25952256,513147,134348 +k1,17074:10783981,20095377:139128 +k1,17074:11278969,20095377:139128 +k1,17074:12695394,20095377:139128 +k1,17074:14228472,20095377:139127 +k1,17074:15386685,20095377:139128 +k1,17074:18428403,20095377:139128 +k1,17074:19226823,20095377:139128 +k1,17074:22085040,20095377:139128 +k1,17074:22755665,20095377:139128 +k1,17074:23665495,20095377:139127 +k1,17074:24249552,20095377:139068 +k1,17074:26348206,20095377:139128 +k1,17074:29849331,20095377:139128 +k1,17074:30344319,20095377:139128 +k1,17074:32583029,20095377:0 +) +(1,17075:6630773,20960457:25952256,513147,134348 +k1,17074:7792685,20960457:214261 +k1,17074:8362806,20960457:214261 +k1,17074:10328189,20960457:214261 +k1,17074:13523027,20960457:214261 +k1,17074:14756373,20960457:214261 +k1,17074:16533668,20960457:214261 +k1,17074:18128773,20960457:214261 +k1,17074:18788007,20960457:214245 +k1,17074:21135465,20960457:214261 +k1,17074:23903009,20960457:214261 +k1,17074:25263495,20960457:214261 +k1,17074:27179726,20960457:214261 +k1,17074:27838961,20960457:214246 +k1,17074:30516720,20960457:214261 +k1,17074:31835263,20960457:214261 +k1,17074:32583029,20960457:0 +) +(1,17075:6630773,21825537:25952256,513147,134348 +k1,17074:9570554,21825537:164987 +k1,17074:10091401,21825537:164987 +k1,17074:12168073,21825537:164987 +k1,17074:14144475,21825537:164987 +k1,17074:14960890,21825537:164987 +k1,17074:15481737,21825537:164987 +k1,17074:16629764,21825537:164987 +k1,17074:17477636,21825537:164987 +k1,17074:19992744,21825537:164987 +k1,17074:21425197,21825537:164987 +k1,17074:21946044,21825537:164987 +k1,17074:24986095,21825537:164987 +k1,17074:26602049,21825537:164987 +k1,17074:28623016,21825537:164987 +k1,17074:29439431,21825537:164987 +k1,17074:29960278,21825537:164987 +k1,17074:32583029,21825537:0 +) +(1,17075:6630773,22690617:25952256,513147,134348 +k1,17074:8994984,22690617:146473 +k1,17074:9824342,22690617:146473 +k1,17074:11238281,22690617:146473 +k1,17074:13362631,22690617:146473 +k1,17074:14191989,22690617:146473 +k1,17074:16593555,22690617:146472 +k1,17074:19459117,22690617:146473 +k1,17074:22289945,22690617:146473 +k1,17074:23633105,22690617:146473 +k1,17074:25718133,22690617:146473 +k1,17074:28532577,22690617:146473 +k1,17074:30831252,22690617:146473 +k1,17074:32583029,22690617:0 +) +(1,17075:6630773,23555697:25952256,513147,126483 +k1,17074:9849159,23555697:175549 +k1,17074:11096877,23555697:175549 +k1,17074:11958588,23555697:175549 +k1,17074:15551839,23555697:175548 +k1,17074:17756383,23555697:175549 +k1,17074:18800284,23555697:175549 +k1,17074:19791101,23555697:175549 +k1,17074:21032921,23555697:175549 +k1,17074:22738736,23555697:175549 +k1,17074:23565713,23555697:175549 +k1,17074:24489028,23555697:175549 +k1,17074:26995692,23555697:175548 +k1,17074:28993797,23555697:175549 +k1,17074:29935462,23555697:175549 +k1,17074:30770303,23555697:175549 +k1,17074:32583029,23555697:0 +) +(1,17075:6630773,24420777:25952256,513147,126483 +k1,17074:9961354,24420777:156672 +k1,17074:11473311,24420777:156672 +k1,17074:12192936,24420777:156671 +k1,17074:13450613,24420777:156672 +k1,17074:14416655,24420777:156672 +k1,17074:17012577,24420777:156672 +k1,17074:17776768,24420777:156672 +k1,17074:19034444,24420777:156671 +k1,17074:21786997,24420777:156672 +k1,17074:23319270,24420777:156672 +k1,17074:24091980,24420777:156672 +k1,17074:26442797,24420777:156672 +k1,17074:28470522,24420777:156672 +k1,17074:29818638,24420777:156671 +k1,17074:30515982,24420777:156672 +k1,17074:31773659,24420777:156672 +k1,17074:32583029,24420777:0 +) +(1,17075:6630773,25285857:25952256,513147,134348 +k1,17074:9611678,25285857:211354 +k1,17074:11019718,25285857:211353 +k1,17074:13556945,25285857:211354 +k1,17074:16670889,25285857:211354 +k1,17074:17541535,25285857:211354 +k1,17074:20471977,25285857:211353 +k1,17074:24884844,25285857:211354 +k1,17074:25712236,25285857:211354 +k1,17074:28752122,25285857:211353 +k1,17074:30975431,25285857:211354 +k1,17074:32583029,25285857:0 +) +(1,17075:6630773,26150937:25952256,513147,134348 +k1,17074:7511041,26150937:228840 +k1,17074:10111628,26150937:228839 +k1,17074:13011715,26150937:228840 +k1,17074:15302318,26150937:228840 +k1,17074:16982780,26150937:228840 +k1,17074:18769410,26150937:228839 +k1,17074:21641972,26150937:228840 +k1,17074:24220933,26150937:228840 +k1,17074:25843724,26150937:228840 +k1,17074:26428423,26150937:228839 +k1,17074:29419606,26150937:228840 +k1,17074:32583029,26150937:0 +) +(1,17075:6630773,27016017:25952256,513147,126483 +g1,17074:11494855,27016017 +g1,17074:12353376,27016017 +k1,17075:32583030,27016017:18666620 +g1,17075:32583030,27016017 +) +(1,17076:6630773,29132835:25952256,564462,147783 +(1,17076:6630773,29132835:2450326,534184,12975 +g1,17076:6630773,29132835 +g1,17076:9081099,29132835 +) +g1,17076:10697348,29132835 +g1,17076:13182277,29132835 +g1,17076:14151883,29132835 +g1,17076:15533841,29132835 +k1,17076:32583029,29132835:13755414 +g1,17076:32583029,29132835 +) +(1,17078:6630773,30391131:25952256,513147,134348 +k1,17077:8858342,30391131:186123 +k1,17077:11677046,30391131:186123 +k1,17077:12219029,30391131:186123 +k1,17077:13682450,30391131:186124 +k1,17077:15223858,30391131:186123 +k1,17077:16171509,30391131:186123 +k1,17077:17886587,30391131:186123 +k1,17077:18285689,30391131:186110 +k1,17077:21544140,30391131:186123 +k1,17077:23114383,30391131:186123 +k1,17077:24319592,30391131:186124 +k1,17077:27268058,30391131:186123 +k1,17077:31381754,30391131:186123 +k1,17077:32227169,30391131:186123 +k1,17077:32583029,30391131:0 +) +(1,17078:6630773,31256211:25952256,505283,134348 +g1,17077:8855720,31256211 +g1,17077:11167174,31256211 +g1,17077:12049288,31256211 +g1,17077:13267602,31256211 +g1,17077:15421770,31256211 +g1,17077:16237037,31256211 +g1,17077:17455351,31256211 +k1,17078:32583029,31256211:12051418 +g1,17078:32583029,31256211 +) +(1,17079:6630773,32907723:25952256,474481,7863 +(1,17079:6630773,32907723:0,0,0 +g1,17079:6630773,32907723 +) +k1,17079:32583029,32907723:24418058 +g1,17079:32583029,32907723 +) +(1,17081:6630773,34166019:25952256,505283,126483 +k1,17080:8126645,34166019:299185 +k1,17080:9815193,34166019:299185 +k1,17080:10765807,34166019:299186 +k1,17080:11812758,34166019:299185 +k1,17080:14414223,34166019:299185 +k1,17080:16335424,34166019:299185 +k1,17080:17382376,34166019:299186 +k1,17080:20465530,34166019:299185 +k1,17080:21450877,34166019:299185 +k1,17080:22105922,34166019:299185 +(1,17080:22105922,34166019:0,459977,115847 +r1,17084:25629594,34166019:3523672,575824,115847 +k1,17080:22105922,34166019:-3523672 +) +(1,17080:22105922,34166019:3523672,459977,115847 +k1,17080:22105922,34166019:3277 +h1,17080:25626317,34166019:0,411205,112570 +) +k1,17080:25928779,34166019:299185 +k1,17080:26910850,34166019:299186 +(1,17080:26910850,34166019:0,452978,115847 +r1,17084:29027675,34166019:2116825,568825,115847 +k1,17080:26910850,34166019:-2116825 +) +(1,17080:26910850,34166019:2116825,452978,115847 +k1,17080:26910850,34166019:3277 +h1,17080:29024398,34166019:0,411205,112570 +) +k1,17080:29500530,34166019:299185 +k1,17080:31193666,34166019:299185 +k1,17080:32583029,34166019:0 +) +(1,17081:6630773,35031099:25952256,505283,134348 +k1,17080:8926117,35031099:257174 +k1,17080:9908119,35031099:257174 +k1,17080:11449800,35031099:257175 +k1,17080:13158596,35031099:257174 +k1,17080:14619666,35031099:257174 +k1,17080:18248667,35031099:257174 +k1,17080:18861701,35031099:257174 +k1,17080:20991894,35031099:257174 +k1,17080:24990519,35031099:257175 +k1,17080:27144960,35031099:257174 +k1,17080:28593579,35031099:257174 +k1,17080:29869838,35031099:257174 +k1,17080:32583029,35031099:0 +) +(1,17081:6630773,35896179:25952256,513147,134348 +k1,17080:7899248,35896179:276915 +k1,17080:10938505,35896179:276914 +k1,17080:13226065,35896179:276915 +k1,17080:16389186,35896179:276915 +k1,17080:17282138,35896179:276914 +k1,17080:18843559,35896179:276915 +k1,17080:20993493,35896179:276915 +k1,17080:23167675,35896179:276915 +k1,17080:24072424,35896179:276914 +k1,17080:26051309,35896179:276915 +k1,17080:28456833,35896179:276915 +k1,17080:29349785,35896179:276914 +k1,17080:31015408,35896179:276915 +k1,17080:32583029,35896179:0 +) +(1,17081:6630773,36761259:25952256,505283,126483 +k1,17080:9824108,36761259:180645 +k1,17080:11544849,36761259:180645 +k1,17080:13622107,36761259:180646 +k1,17080:14488914,36761259:180645 +k1,17080:17759582,36761259:180645 +k1,17080:18556265,36761259:180645 +k1,17080:21154533,36761259:180645 +h1,17080:21552992,36761259:0,0,0 +k1,17080:21907308,36761259:180646 +k1,17080:23284640,36761259:180645 +k1,17080:26306926,36761259:180645 +k1,17080:27138999,36761259:180645 +k1,17080:28067411,36761259:180646 +k1,17080:30550336,36761259:180645 +k1,17080:31835263,36761259:180645 +k1,17081:32583029,36761259:0 +) +(1,17081:6630773,37626339:25952256,505283,115847 +(1,17080:6630773,37626339:0,452978,115847 +r1,17084:9099310,37626339:2468537,568825,115847 +k1,17080:6630773,37626339:-2468537 +) +(1,17080:6630773,37626339:2468537,452978,115847 +k1,17080:6630773,37626339:3277 +h1,17080:9096033,37626339:0,411205,112570 +) +k1,17080:9482074,37626339:209094 +(1,17080:9482074,37626339:0,459977,115847 +r1,17084:11598899,37626339:2116825,575824,115847 +k1,17080:9482074,37626339:-2116825 +) +(1,17080:9482074,37626339:2116825,459977,115847 +k1,17080:9482074,37626339:3277 +h1,17080:11595622,37626339:0,411205,112570 +) +k1,17080:11981664,37626339:209095 +(1,17080:11981664,37626339:0,452978,115847 +r1,17084:15153624,37626339:3171960,568825,115847 +k1,17080:11981664,37626339:-3171960 +) +(1,17080:11981664,37626339:3171960,452978,115847 +k1,17080:11981664,37626339:3277 +h1,17080:15150347,37626339:0,411205,112570 +) +k1,17080:15536388,37626339:209094 +k1,17080:16936927,37626339:209094 +k1,17080:18571429,37626339:209094 +k1,17080:19463409,37626339:209095 +k1,17080:21053347,37626339:209094 +k1,17080:23300611,37626339:209094 +k1,17080:24195867,37626339:209094 +(1,17080:24195867,37626339:0,414482,115847 +r1,17084:26664404,37626339:2468537,530329,115847 +k1,17080:24195867,37626339:-2468537 +) +(1,17080:24195867,37626339:2468537,414482,115847 +k1,17080:24195867,37626339:3277 +h1,17080:26661127,37626339:0,411205,112570 +) +k1,17080:27047169,37626339:209095 +k1,17080:29180400,37626339:209094 +k1,17080:32583029,37626339:0 +) +(1,17081:6630773,38491419:25952256,513147,134348 +g1,17080:7481430,38491419 +g1,17080:10509192,38491419 +g1,17080:11905764,38491419 +g1,17080:14631406,38491419 +g1,17080:15778286,38491419 +g1,17080:17679485,38491419 +g1,17080:19595102,38491419 +g1,17080:20453623,38491419 +g1,17080:22042215,38491419 +g1,17080:23735010,38491419 +g1,17080:24620401,38491419 +g1,17080:26245038,38491419 +k1,17081:32583029,38491419:4112388 +g1,17081:32583029,38491419 +) +(1,17082:6630773,40142931:25952256,473825,134348 +(1,17082:6630773,40142931:0,0,0 +g1,17082:6630773,40142931 +) +k1,17082:32583030,40142931:23192536 +g1,17082:32583030,40142931 +) +(1,17084:6630773,41401227:25952256,505283,134348 +k1,17083:8672782,41401227:258774 +k1,17083:9799907,41401227:258773 +k1,17083:12147313,41401227:258774 +k1,17083:12761946,41401227:258773 +k1,17083:14471687,41401227:258774 +k1,17083:15598812,41401227:258773 +k1,17083:17387852,41401227:258774 +k1,17083:18298054,41401227:258774 +k1,17083:19953399,41401227:258773 +k1,17083:21601536,41401227:258774 +k1,17083:24701950,41401227:258773 +k1,17083:25612152,41401227:258774 +k1,17083:29045489,41401227:258773 +k1,17083:30194242,41401227:258774 +k1,17083:32583029,41401227:0 +) +(1,17084:6630773,42266307:25952256,505283,126483 +k1,17083:10483143,42266307:175800 +k1,17083:12204283,42266307:175801 +k1,17083:13987681,42266307:175800 +k1,17083:15295944,42266307:175801 +k1,17083:16946959,42266307:175800 +k1,17083:17893462,42266307:175800 +$1,17083:17893462,42266307 +$1,17083:18396123,42266307 +k1,17083:18571924,42266307:175801 +k1,17083:22266352,42266307:175800 +k1,17083:24327624,42266307:175801 +k1,17083:25034921,42266307:175800 +k1,17083:28709689,42266307:175801 +k1,17083:29656192,42266307:175800 +k1,17083:32583029,42266307:0 +) +(1,17084:6630773,43131387:25952256,505283,134348 +k1,17083:8063882,43131387:241664 +k1,17083:8661406,43131387:241664 +k1,17083:11414410,43131387:241664 +k1,17083:15018071,43131387:241664 +k1,17083:18075817,43131387:241664 +k1,17083:19207460,43131387:241664 +k1,17083:22885831,43131387:241663 +k1,17083:25712890,43131387:241664 +k1,17083:26605982,43131387:241664 +k1,17083:27479413,43131387:241664 +k1,17083:28917764,43131387:241664 +k1,17083:31773659,43131387:241664 +k1,17083:32583029,43131387:0 +) +(1,17084:6630773,43996467:25952256,513147,138281 +k1,17083:7256260,43996467:269627 +k1,17083:8427591,43996467:269556 +k1,17083:9974515,43996467:269627 +k1,17083:11077106,43996467:269628 +k1,17083:12567669,43996467:269627 +k1,17083:13193156,43996467:269627 +k1,17083:15324661,43996467:269627 +k1,17083:16726750,43996467:269627 +k1,17083:17744143,43996467:269627 +k1,17083:21678543,43996467:269627 +k1,17083:22709698,43996467:269627 +$1,17083:22709698,43996467 +$1,17083:23212359,43996467 +k1,17083:23481986,43996467:269627 +k1,17083:24943058,43996467:269627 +$1,17083:24943058,43996467 +$1,17083:25494871,43996467 +k1,17083:25764498,43996467:269627 +k1,17083:29382359,43996467:269627 +k1,17083:31341504,43996467:269627 +k1,17083:32227169,43996467:269627 +k1,17083:32583029,43996467:0 +) +(1,17084:6630773,44861547:25952256,505283,138281 +k1,17083:7753122,44861547:220574 +k1,17083:9424685,44861547:220596 +k1,17083:11300064,44861547:220595 +k1,17083:14695224,44861547:220596 +k1,17083:16446085,44861547:220595 +k1,17083:17318109,44861547:220596 +k1,17083:18286470,44861547:220595 +k1,17083:21092461,44861547:220596 +$1,17083:21092461,44861547 +$1,17083:21595122,44861547 +k1,17083:21989388,44861547:220596 +$1,17083:21989388,44861547 +$1,17083:22541201,44861547 +k1,17083:22761796,44861547:220595 +k1,17083:24173837,44861547:220596 +$1,17083:24173837,44861547 +$1,17083:24599166,44861547 +k1,17083:24993431,44861547:220595 +k1,17083:26909443,44861547:220596 +k1,17083:30304602,44861547:220595 +k1,17083:31516758,44861547:220596 +k1,17083:32583029,44861547:0 +) +] +(1,17084:32583029,45706769:0,0,0 +g1,17084:32583029,45706769 +) +) +] +(1,17084:6630773,47279633:25952256,0,0 +h1,17084:6630773,47279633:25952256,0,0 +) +] +(1,17084:4262630,4025873:0,0,0 +[1,17084:-473656,4025873:0,0,0 +(1,17084:-473656,-710413:0,0,0 +(1,17084:-473656,-710413:0,0,0 +g1,17084:-473656,-710413 +) +g1,17084:-473656,-710413 +) +] +) +] +!25755 +}275 Input:2493:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2494:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!670 -{294 -[1,17016:4262630,47279633:28320399,43253760,0 -(1,17016:4262630,4025873:0,0,0 -[1,17016:-473656,4025873:0,0,0 -(1,17016:-473656,-710413:0,0,0 -(1,17016:-473656,-644877:0,0,0 -k1,17016:-473656,-644877:-65536 +Input:2495:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2496:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2497:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2498:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2499:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2500:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2501:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2502:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2503:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1046 +{276 +[1,17097:4262630,47279633:28320399,43253760,0 +(1,17097:4262630,4025873:0,0,0 +[1,17097:-473656,4025873:0,0,0 +(1,17097:-473656,-710413:0,0,0 +(1,17097:-473656,-644877:0,0,0 +k1,17097:-473656,-644877:-65536 ) -(1,17016:-473656,4736287:0,0,0 -k1,17016:-473656,4736287:5209943 +(1,17097:-473656,4736287:0,0,0 +k1,17097:-473656,4736287:5209943 ) -g1,17016:-473656,-710413 +g1,17097:-473656,-710413 ) ] ) -[1,17016:6630773,47279633:25952256,43253760,0 -[1,17016:6630773,4812305:25952256,786432,0 -(1,17016:6630773,4812305:25952256,513147,134348 -(1,17016:6630773,4812305:25952256,513147,134348 -g1,17016:3078558,4812305 -[1,17016:3078558,4812305:0,0,0 -(1,17016:3078558,2439708:0,1703936,0 -k1,17016:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,17016:2537886,2439708:1179648,16384,0 +[1,17097:6630773,47279633:25952256,43253760,0 +[1,17097:6630773,4812305:25952256,786432,0 +(1,17097:6630773,4812305:25952256,513147,134348 +(1,17097:6630773,4812305:25952256,513147,134348 +g1,17097:3078558,4812305 +[1,17097:3078558,4812305:0,0,0 +(1,17097:3078558,2439708:0,1703936,0 +k1,17097:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,17097:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,17016:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,17097:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,17016:3078558,4812305:0,0,0 -(1,17016:3078558,2439708:0,1703936,0 -g1,17016:29030814,2439708 -g1,17016:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,17016:36151628,1915420:16384,1179648,0 +[1,17097:3078558,4812305:0,0,0 +(1,17097:3078558,2439708:0,1703936,0 +g1,17097:29030814,2439708 +g1,17097:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,17097:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,17016:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,17097:37855564,2439708:1179648,16384,0 ) ) -k1,17016:3078556,2439708:-34777008 +k1,17097:3078556,2439708:-34777008 ) ] -[1,17016:3078558,4812305:0,0,0 -(1,17016:3078558,49800853:0,16384,2228224 -k1,17016:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,17016:2537886,49800853:1179648,16384,0 +[1,17097:3078558,4812305:0,0,0 +(1,17097:3078558,49800853:0,16384,2228224 +k1,17097:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,17097:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,17016:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,17097:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,17016:3078558,4812305:0,0,0 -(1,17016:3078558,49800853:0,16384,2228224 -g1,17016:29030814,49800853 -g1,17016:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,17016:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] -) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,17016:37855564,49800853:1179648,16384,0 +[1,17097:3078558,4812305:0,0,0 +(1,17097:3078558,49800853:0,16384,2228224 +g1,17097:29030814,49800853 +g1,17097:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,17097:36151628,51504789:16384,1179648,0 ) -) -k1,17016:3078556,49800853:-34777008 -) -] -g1,17016:6630773,4812305 -g1,17016:6630773,4812305 -g1,17016:8017514,4812305 -g1,17016:11261546,4812305 -g1,17016:12076813,4812305 -g1,17016:14985956,4812305 -k1,17016:31387652,4812305:16401696 -) -) -] -[1,17016:6630773,45706769:25952256,40108032,0 -(1,17016:6630773,45706769:25952256,40108032,0 -(1,17016:6630773,45706769:0,0,0 -g1,17016:6630773,45706769 -) -[1,17016:6630773,45706769:25952256,40108032,0 -(1,16969:6630773,6254097:25952256,513147,126483 -h1,16968:6630773,6254097:983040,0,0 -k1,16968:9041310,6254097:230810 -k1,16968:10549416,6254097:230809 -k1,16968:12635550,6254097:230810 -k1,16968:13397856,6254097:230809 -k1,16968:14287958,6254097:230810 -k1,16968:15991361,6254097:230809 -k1,16968:17314656,6254097:230810 -k1,16968:20005688,6254097:230810 -k1,16968:21368304,6254097:230809 -k1,16968:23162148,6254097:230810 -k1,16968:24117785,6254097:230809 -k1,16968:25216947,6254097:230810 -k1,16968:26831876,6254097:230809 -k1,16968:28499891,6254097:230810 -k1,16968:29086560,6254097:230809 -k1,16968:30706733,6254097:230810 -k1,16968:32583029,6254097:0 -) -(1,16969:6630773,7095585:25952256,505283,134348 -k1,16968:8952887,7095585:188917 -k1,16968:9757842,7095585:188917 -k1,16968:11150000,7095585:188917 -k1,16968:12705998,7095585:188917 -(1,16968:12705998,7095585:0,414482,115847 -r1,17016:14822823,7095585:2116825,530329,115847 -k1,16968:12705998,7095585:-2116825 -) -(1,16968:12705998,7095585:2116825,414482,115847 -k1,16968:12705998,7095585:3277 -h1,16968:14819546,7095585:0,411205,112570 -) -(1,16968:15478183,7095585:0,414482,115847 -r1,17016:17595008,7095585:2116825,530329,115847 -k1,16968:15478183,7095585:-2116825 -) -(1,16968:15478183,7095585:2116825,414482,115847 -k1,16968:15478183,7095585:3277 -h1,16968:17591731,7095585:0,411205,112570 -) -k1,16968:17783925,7095585:188917 -k1,16968:18504339,7095585:188917 -k1,16968:19049116,7095585:188917 -k1,16968:20627395,7095585:188916 -k1,16968:21750855,7095585:188917 -k1,16968:24698182,7095585:188917 -k1,16968:25503137,7095585:188917 -k1,16968:26280567,7095585:188917 -k1,16968:27120912,7095585:188917 -k1,16968:28921359,7095585:188917 -k1,16968:30760473,7095585:188917 -k1,16968:32583029,7095585:0 -) -(1,16969:6630773,7937073:25952256,505283,134348 -k1,16968:8031309,7937073:197295 -k1,16968:9617967,7937073:197295 -k1,16968:10923476,7937073:197295 -k1,16968:12506856,7937073:197294 -(1,16968:12506856,7937073:0,452978,115847 -r1,17016:17437376,7937073:4930520,568825,115847 -k1,16968:12506856,7937073:-4930520 -) -(1,16968:12506856,7937073:4930520,452978,115847 -k1,16968:12506856,7937073:3277 -h1,16968:17434099,7937073:0,411205,112570 -) -k1,16968:17634671,7937073:197295 -k1,16968:18444728,7937073:197295 -k1,16968:19661108,7937073:197295 -k1,16968:20273244,7937073:197293 -k1,16968:23630030,7937073:197295 -k1,16968:26402234,7937073:197294 -k1,16968:28808092,7937073:197295 -k1,16968:29814757,7937073:197295 -k1,16968:31900144,7937073:197295 -k1,16968:32583029,7937073:0 -) -(1,16969:6630773,8778561:25952256,505283,134348 -g1,16968:8575881,8778561 -g1,16968:9794195,8778561 -g1,16968:11836296,8778561 -g1,16968:12567022,8778561 -g1,16968:14052067,8778561 -g1,16968:15021999,8778561 -g1,16968:17227285,8778561 -g1,16968:18797527,8778561 -g1,16968:21521203,8778561 -g1,16968:23241523,8778561 -g1,16968:24878350,8778561 -$1,16968:24878350,8778561 -$1,16968:25485869,8778561 -g1,16968:25672253,8778561 -g1,16968:27664678,8778561 -k1,16969:32583029,8778561:2960070 -g1,16969:32583029,8778561 -) -v1,16971:6630773,9969027:0,393216,0 -(1,16975:6630773,10284123:25952256,708312,196608 -g1,16975:6630773,10284123 -g1,16975:6630773,10284123 -g1,16975:6434165,10284123 -(1,16975:6434165,10284123:0,708312,196608 -r1,17016:32779637,10284123:26345472,904920,196608 -k1,16975:6434165,10284123:-26345472 -) -(1,16975:6434165,10284123:26345472,708312,196608 -[1,16975:6630773,10284123:25952256,511704,0 -(1,16973:6630773,10176645:25952256,404226,107478 -(1,16972:6630773,10176645:0,0,0 -g1,16972:6630773,10176645 -g1,16972:6630773,10176645 -g1,16972:6303093,10176645 -(1,16972:6303093,10176645:0,0,0 -) -g1,16972:6630773,10176645 -) -k1,16973:6630773,10176645:0 -g1,16973:10424522,10176645 -g1,16973:11056814,10176645 -h1,16973:13269834,10176645:0,0,0 -k1,16973:32583030,10176645:19313196 -g1,16973:32583030,10176645 -) -] -) -g1,16975:32583029,10284123 -g1,16975:6630773,10284123 -g1,16975:6630773,10284123 -g1,16975:32583029,10284123 -g1,16975:32583029,10284123 -) -h1,16975:6630773,10480731:0,0,0 -(1,16979:6630773,11846507:25952256,505283,134348 -h1,16978:6630773,11846507:983040,0,0 -k1,16978:9371590,11846507:152800 -k1,16978:10543474,11846507:152799 -k1,16978:12085637,11846507:152800 -k1,16978:13229996,11846507:152799 -k1,16978:16340436,11846507:152800 -k1,16978:17361588,11846507:152800 -k1,16978:19044653,11846507:152799 -k1,16978:19848881,11846507:152800 -k1,16978:21822271,11846507:152800 -k1,16978:22330930,11846507:152799 -k1,16978:25433505,11846507:152800 -k1,16978:26269189,11846507:152799 -k1,16978:29585412,11846507:152800 -k1,16979:32583029,11846507:0 -) -(1,16979:6630773,12687995:25952256,513147,126483 -k1,16978:8720935,12687995:209934 -k1,16978:9878519,12687995:209933 -k1,16978:11107538,12687995:209934 -k1,16978:14501210,12687995:209933 -k1,16978:15362572,12687995:209934 -k1,16978:17023473,12687995:209934 -k1,16978:18430093,12687995:209933 -k1,16978:20793540,12687995:209934 -k1,16978:22432813,12687995:209933 -k1,16978:23302039,12687995:209934 -k1,16978:28176825,12687995:209933 -k1,16978:28918256,12687995:209934 -k1,16978:32583029,12687995:0 -) -(1,16979:6630773,13529483:25952256,505283,134348 -k1,16978:7598647,13529483:206346 -k1,16978:8824079,13529483:206347 -k1,16978:12193848,13529483:206346 -k1,16978:13893760,13529483:206346 -k1,16978:14786269,13529483:206347 -(1,16978:14786269,13529483:0,452978,122846 -r1,17016:19013365,13529483:4227096,575824,122846 -k1,16978:14786269,13529483:-4227096 -) -(1,16978:14786269,13529483:4227096,452978,122846 -k1,16978:14786269,13529483:3277 -h1,16978:19010088,13529483:0,411205,112570 -) -k1,16978:19219711,13529483:206346 -k1,16978:20617502,13529483:206346 -(1,16978:20617502,13529483:0,452978,122846 -r1,17016:24492886,13529483:3875384,575824,122846 -k1,16978:20617502,13529483:-3875384 -) -(1,16978:20617502,13529483:3875384,452978,122846 -k1,16978:20617502,13529483:3277 -h1,16978:24489609,13529483:0,411205,112570 -) -k1,16978:24872902,13529483:206346 -k1,16978:27655469,13529483:206347 -k1,16978:30564520,13529483:206346 -k1,16978:32583029,13529483:0 -) -(1,16979:6630773,14370971:25952256,513147,134348 -k1,16978:7846175,14370971:267751 -k1,16978:9133010,14370971:267750 -k1,16978:13472513,14370971:267751 -k1,16978:14423148,14370971:267750 -k1,16978:18176759,14370971:267751 -k1,16978:20083564,14370971:267750 -k1,16978:21745266,14370971:267751 -k1,16978:23685495,14370971:267750 -k1,16978:27923417,14370971:267751 -k1,16978:28678687,14370971:267682 -k1,16978:31753999,14370971:267750 -k1,16979:32583029,14370971:0 -) -(1,16979:6630773,15212459:25952256,513147,134348 -k1,16978:9145553,15212459:268861 -k1,16978:11299886,15212459:268862 -k1,16978:14346818,15212459:268861 -k1,16978:15274971,15212459:268861 -k1,16978:16562918,15212459:268862 -k1,16978:19995202,15212459:268861 -k1,16978:23133229,15212459:268861 -k1,16978:24534553,15212459:268862 -k1,16978:25551180,15212459:268861 -k1,16978:27333267,15212459:268861 -k1,16978:28253557,15212459:268862 -k1,16978:31563944,15212459:268861 -k1,16978:32583029,15212459:0 -) -(1,16979:6630773,16053947:25952256,505283,134348 -k1,16978:8862321,16053947:220903 -k1,16978:11121394,16053947:220903 -k1,16978:11958335,16053947:220903 -k1,16978:12535098,16053947:220903 -k1,16978:14450762,16053947:220903 -k1,16978:17183005,16053947:220903 -k1,16978:18019947,16053947:220904 -k1,16978:19259935,16053947:220903 -k1,16978:21365653,16053947:220903 -k1,16978:23149590,16053947:220903 -k1,16978:24412515,16053947:220903 -k1,16978:26235118,16053947:220903 -k1,16978:29963508,16053947:220903 -k1,16978:31052763,16053947:220903 -k1,16978:32583029,16053947:0 -) -(1,16979:6630773,16895435:25952256,513147,138281 -k1,16978:7490699,16895435:208498 -k1,16978:10129272,16895435:208498 -k1,16978:13475634,16895435:208498 -k1,16978:14631783,16895435:208498 -k1,16978:16306977,16895435:208498 -$1,16978:16306977,16895435 -$1,16978:16809638,16895435 -k1,16978:17018136,16895435:208498 -k1,16978:18418079,16895435:208498 -$1,16978:18418079,16895435 -$1,16978:18969892,16895435 -k1,16978:19178390,16895435:208498 -k1,16978:22735122,16895435:208498 -k1,16978:23595048,16895435:208498 -k1,16978:26645842,16895435:208498 -k1,16978:27873425,16895435:208498 -k1,16978:30696154,16895435:208498 -k1,16978:31563944,16895435:208498 -k1,16978:32583029,16895435:0 -) -(1,16979:6630773,17736923:25952256,505283,134348 -k1,16978:10579555,17736923:224371 -k1,16978:13003315,17736923:224372 -k1,16978:14373911,17736923:224371 -k1,16978:16616791,17736923:224371 -k1,16978:17524048,17736923:224372 -k1,16978:19247227,17736923:224371 -k1,16978:20087637,17736923:224372 -k1,16978:21331093,17736923:224371 -k1,16978:24079911,17736923:224371 -k1,16978:25825374,17736923:224372 -k1,16978:29408465,17736923:224371 -k1,16978:32583029,17736923:0 -) -(1,16979:6630773,18578411:25952256,505283,126483 -k1,16978:7924605,18578411:147607 -k1,16978:10103173,18578411:147607 -k1,16978:13703872,18578411:147607 -k1,16978:14502907,18578411:147607 -k1,16978:16117210,18578411:147607 -k1,16978:18283326,18578411:147607 -k1,16978:19622378,18578411:147607 -k1,16978:21475887,18578411:147607 -k1,16978:22306379,18578411:147607 -k1,16978:24323073,18578411:147607 -k1,16978:25662125,18578411:147607 -k1,16978:28537996,18578411:147607 -k1,16978:31931601,18578411:147607 -k1,16978:32583029,18578411:0 -) -(1,16979:6630773,19419899:25952256,513147,134348 -k1,16978:8870269,19419899:220987 -k1,16978:10282701,19419899:220987 -k1,16978:12176168,19419899:220988 -k1,16978:16193656,19419899:220987 -k1,16978:17889858,19419899:220987 -k1,16978:20376425,19419899:220987 -k1,16978:23908946,19419899:220987 -k1,16978:26808390,19419899:220988 -k1,16978:28133659,19419899:220987 -k1,16978:29102412,19419899:220987 -k1,16978:32583029,19419899:0 -) -(1,16979:6630773,20261387:25952256,505283,134348 -g1,16978:7591530,20261387 -g1,16978:10771336,20261387 -g1,16978:11326425,20261387 -g1,16978:14333216,20261387 -g1,16978:17429792,20261387 -g1,16978:18245059,20261387 -g1,16978:19463373,20261387 -g1,16978:20762296,20261387 -g1,16978:21612953,20261387 -(1,16978:21612953,20261387:0,452978,115847 -r1,17016:23378066,20261387:1765113,568825,115847 -k1,16978:21612953,20261387:-1765113 -) -(1,16978:21612953,20261387:1765113,452978,115847 -k1,16978:21612953,20261387:3277 -h1,16978:23374789,20261387:0,411205,112570 -) -k1,16979:32583029,20261387:9031293 -g1,16979:32583029,20261387 -) -(1,16981:6630773,21102875:25952256,505283,134348 -h1,16980:6630773,21102875:983040,0,0 -k1,16980:9366915,21102875:264779 -k1,16980:10500045,21102875:264778 -k1,16980:12161396,21102875:264779 -k1,16980:13038936,21102875:264778 -k1,16980:14322800,21102875:264779 -k1,16980:16108013,21102875:264778 -k1,16980:18037406,21102875:264779 -k1,16980:19474623,21102875:264778 -k1,16980:22581043,21102875:264779 -k1,16980:23461859,21102875:264778 -k1,16980:24745723,21102875:264779 -k1,16980:26573535,21102875:264778 -(1,16980:26573535,21102875:0,452978,115847 -r1,17016:27986936,21102875:1413401,568825,115847 -k1,16980:26573535,21102875:-1413401 -) -(1,16980:26573535,21102875:1413401,452978,115847 -k1,16980:26573535,21102875:3277 -h1,16980:27983659,21102875:0,411205,112570 -) -k1,16980:28251715,21102875:264779 -k1,16980:29167921,21102875:264778 -$1,16980:29167921,21102875 -$1,16980:29670582,21102875 -k1,16980:29935361,21102875:264779 -k1,16980:31391584,21102875:264778 -k1,16981:32583029,21102875:0 -) -(1,16981:6630773,21944363:25952256,513147,138281 -(1,16980:6630773,21944363:0,414482,122846 -r1,17016:7692462,21944363:1061689,537328,122846 -k1,16980:6630773,21944363:-1061689 -) -(1,16980:6630773,21944363:1061689,414482,122846 -k1,16980:6630773,21944363:3277 -h1,16980:7689185,21944363:0,411205,112570 -) -k1,16980:7963387,21944363:270925 -k1,16980:8885741,21944363:270926 -$1,16980:8885741,21944363 -$1,16980:9437554,21944363 -k1,16980:9708479,21944363:270925 -k1,16980:13327639,21944363:270926 -k1,16980:14979408,21944363:270925 -k1,16980:18057895,21944363:270925 -k1,16980:19433103,21944363:270926 -k1,16980:20451794,21944363:270925 -k1,16980:22162546,21944363:270926 -k1,16980:23049509,21944363:270925 -k1,16980:24339519,21944363:270925 -k1,16980:26581113,21944363:270926 -k1,16980:28720469,21944363:270925 -k1,16980:29752923,21944363:270926 -k1,16980:30812246,21944363:270925 -k1,16980:32583029,21944363:0 -) -(1,16981:6630773,22785851:25952256,513147,134348 -k1,16980:7681366,22785851:241223 -k1,16980:8941674,22785851:241223 -k1,16980:11707343,22785851:241222 -k1,16980:13295986,22785851:241223 -k1,16980:15648124,22785851:241223 -k1,16980:17173853,22785851:241223 -k1,16980:18745456,22785851:241222 -k1,16980:20967832,22785851:241223 -k1,16980:22228140,22785851:241223 -k1,16980:24580278,22785851:241223 -k1,16980:25480792,22785851:241222 -k1,16980:26741100,22785851:241223 -k1,16980:29567718,22785851:241223 -k1,16980:32583029,22785851:0 -) -(1,16981:6630773,23627339:25952256,513147,134348 -k1,16980:9913378,23627339:189961 -k1,16980:10864867,23627339:189961 -k1,16980:11410688,23627339:189961 -k1,16980:13317036,23627339:189960 -k1,16980:15935106,23627339:189961 -k1,16980:17321754,23627339:189961 -k1,16980:18764108,23627339:189961 -k1,16980:20798252,23627339:189961 -k1,16980:22274029,23627339:189961 -k1,16980:24472013,23627339:189961 -k1,16980:25681058,23627339:189960 -k1,16980:27939335,23627339:189961 -k1,16980:28788588,23627339:189961 -k1,16980:29997634,23627339:189961 -k1,16980:32583029,23627339:0 -) -(1,16981:6630773,24468827:25952256,513147,134348 -k1,16980:9866106,24468827:220022 -k1,16980:12930391,24468827:220022 -k1,16980:14805197,24468827:220022 -k1,16980:15556716,24468827:220022 -k1,16980:16586108,24468827:220022 -k1,16980:19755906,24468827:220023 -k1,16980:22514793,24468827:220022 -k1,16980:23700160,24468827:220022 -k1,16980:26983335,24468827:220022 -k1,16980:28151008,24468827:220022 -k1,16980:29390115,24468827:220022 -k1,16980:32583029,24468827:0 -) -(1,16981:6630773,25310315:25952256,505283,120913 -g1,16980:11075424,25310315 -g1,16980:12712251,25310315 -$1,16980:12712251,25310315 -$1,16980:13319770,25310315 -g1,16980:13506154,25310315 -g1,16980:14646873,25310315 -$1,16980:14646873,25310315 -$1,16980:15254392,25310315 -g1,16980:15440776,25310315 -g1,16980:17433201,25310315 -k1,16981:32583029,25310315:13191547 -g1,16981:32583029,25310315 -) -v1,16983:6630773,26500781:0,393216,0 -(1,16988:6630773,27482055:25952256,1374490,196608 -g1,16988:6630773,27482055 -g1,16988:6630773,27482055 -g1,16988:6434165,27482055 -(1,16988:6434165,27482055:0,1374490,196608 -r1,17016:32779637,27482055:26345472,1571098,196608 -k1,16988:6434165,27482055:-26345472 -) -(1,16988:6434165,27482055:26345472,1374490,196608 -[1,16988:6630773,27482055:25952256,1177882,0 -(1,16985:6630773,26708399:25952256,404226,107478 -(1,16984:6630773,26708399:0,0,0 -g1,16984:6630773,26708399 -g1,16984:6630773,26708399 -g1,16984:6303093,26708399 -(1,16984:6303093,26708399:0,0,0 -) -g1,16984:6630773,26708399 -) -k1,16985:6630773,26708399:0 -g1,16985:10424522,26708399 -g1,16985:11056814,26708399 -k1,16985:11056814,26708399:0 -h1,16985:13269834,26708399:0,0,0 -k1,16985:32583030,26708399:19313196 -g1,16985:32583030,26708399 -) -(1,16986:6630773,27374577:25952256,404226,107478 -h1,16986:6630773,27374577:0,0,0 -g1,16986:6946919,27374577 -g1,16986:7263065,27374577 -g1,16986:7579211,27374577 -g1,16986:7895357,27374577 -g1,16986:8211503,27374577 -g1,16986:8527649,27374577 -g1,16986:8843795,27374577 -g1,16986:10740670,27374577 -g1,16986:11372962,27374577 -g1,16986:13269837,27374577 -g1,16986:13902129,27374577 -g1,16986:14534421,27374577 -h1,16986:16115149,27374577:0,0,0 -k1,16986:32583029,27374577:16467880 -g1,16986:32583029,27374577 -) -] -) -g1,16988:32583029,27482055 -g1,16988:6630773,27482055 -g1,16988:6630773,27482055 -g1,16988:32583029,27482055 -g1,16988:32583029,27482055 -) -h1,16988:6630773,27678663:0,0,0 -(1,16991:6630773,37352153:25952256,9083666,0 -k1,16991:10523651,37352153:3892878 -h1,16990:10523651,37352153:0,0,0 -(1,16990:10523651,37352153:18166500,9083666,0 -(1,16990:10523651,37352153:18167376,9083688,0 -(1,16990:10523651,37352153:18167376,9083688,0 -(1,16990:10523651,37352153:0,9083688,0 -(1,16990:10523651,37352153:0,14208860,0 -(1,16990:10523651,37352153:28417720,14208860,0 -) -k1,16990:10523651,37352153:-28417720 -) -) -g1,16990:28691027,37352153 -) -) -) -g1,16991:28690151,37352153 -k1,16991:32583029,37352153:3892878 -) -(1,16998:6630773,38193641:25952256,505283,134348 -h1,16997:6630773,38193641:983040,0,0 -k1,16997:8615733,38193641:172890 -k1,16997:10504355,38193641:172889 -k1,16997:14748997,38193641:172890 -k1,16997:16964643,38193641:172889 -k1,16997:18005885,38193641:172890 -k1,16997:19709040,38193641:172889 -k1,16997:20533358,38193641:172890 -k1,16997:21903591,38193641:172890 -k1,16997:22432340,38193641:172889 -k1,16997:25117225,38193641:172890 -k1,16997:28297561,38193641:172889 -k1,16997:29153336,38193641:172890 -(1,16997:29153336,38193641:0,414482,122846 -r1,17016:30566737,38193641:1413401,537328,122846 -k1,16997:29153336,38193641:-1413401 -) -(1,16997:29153336,38193641:1413401,414482,122846 -k1,16997:29153336,38193641:3277 -h1,16997:30563460,38193641:0,411205,112570 -) -k1,16997:30739626,38193641:172889 -k1,16997:31563944,38193641:172890 -k1,16997:32583029,38193641:0 -) -(1,16998:6630773,39035129:25952256,505283,134348 -k1,16997:8092661,39035129:184591 -k1,16997:10389477,39035129:184591 -k1,16997:12062391,39035129:184591 -k1,16997:13115334,39035129:184591 -k1,16997:15594996,39035129:184591 -k1,16997:16798672,39035129:184591 -k1,16997:21055015,39035129:184591 -k1,16997:21925768,39035129:184591 -k1,16997:24128868,39035129:184591 -k1,16997:26048852,39035129:184591 -(1,16997:26048852,39035129:0,452978,122846 -r1,17016:30275948,39035129:4227096,575824,122846 -k1,16997:26048852,39035129:-4227096 -) -(1,16997:26048852,39035129:4227096,452978,122846 -k1,16997:26048852,39035129:3277 -h1,16997:30272671,39035129:0,411205,112570 -) -k1,16997:30634209,39035129:184591 -k1,16997:31714677,39035129:184591 -k1,16997:32583029,39035129:0 -) -(1,16998:6630773,39876617:25952256,505283,126483 -g1,16997:8027345,39876617 -g1,16997:8582434,39876617 -g1,16997:9969175,39876617 -g1,16997:11943119,39876617 -g1,16997:13579946,39876617 -$1,16997:13579946,39876617 -$1,16997:14187465,39876617 -g1,16997:14373849,39876617 -g1,16997:15514568,39876617 -$1,16997:15514568,39876617 -$1,16997:16122087,39876617 -g1,16997:16308471,39876617 -g1,16997:18103895,39876617 -$1,16997:18103895,39876617 -$1,16997:18711414,39876617 -g1,16997:18897798,39876617 -g1,16997:20890223,39876617 -k1,16998:32583029,39876617:9734525 -g1,16998:32583029,39876617 -) -v1,17000:6630773,41067083:0,393216,0 -(1,17006:6630773,42714535:25952256,2040668,196608 -g1,17006:6630773,42714535 -g1,17006:6630773,42714535 -g1,17006:6434165,42714535 -(1,17006:6434165,42714535:0,2040668,196608 -r1,17016:32779637,42714535:26345472,2237276,196608 -k1,17006:6434165,42714535:-26345472 -) -(1,17006:6434165,42714535:26345472,2040668,196608 -[1,17006:6630773,42714535:25952256,1844060,0 -(1,17002:6630773,41274701:25952256,404226,107478 -(1,17001:6630773,41274701:0,0,0 -g1,17001:6630773,41274701 -g1,17001:6630773,41274701 -g1,17001:6303093,41274701 -(1,17001:6303093,41274701:0,0,0 -) -g1,17001:6630773,41274701 -) -k1,17002:6630773,41274701:0 -g1,17002:10424522,41274701 -g1,17002:11056814,41274701 -k1,17002:11056814,41274701:0 -h1,17002:13269834,41274701:0,0,0 -k1,17002:32583030,41274701:19313196 -g1,17002:32583030,41274701 -) -(1,17003:6630773,41940879:25952256,404226,107478 -h1,17003:6630773,41940879:0,0,0 -g1,17003:6946919,41940879 -g1,17003:7263065,41940879 -g1,17003:7579211,41940879 -g1,17003:7895357,41940879 -g1,17003:8211503,41940879 -g1,17003:8527649,41940879 -g1,17003:8843795,41940879 -g1,17003:10740670,41940879 -g1,17003:11372962,41940879 -g1,17003:13269837,41940879 -g1,17003:13902129,41940879 -g1,17003:14534421,41940879 -g1,17003:16431295,41940879 -h1,17003:16747441,41940879:0,0,0 -k1,17003:32583029,41940879:15835588 -g1,17003:32583029,41940879 -) -(1,17004:6630773,42607057:25952256,404226,107478 -h1,17004:6630773,42607057:0,0,0 -g1,17004:6946919,42607057 -g1,17004:7263065,42607057 -k1,17004:7263065,42607057:0 -h1,17004:11056813,42607057:0,0,0 -k1,17004:32583029,42607057:21526216 -g1,17004:32583029,42607057 -) -] -) -g1,17006:32583029,42714535 -g1,17006:6630773,42714535 -g1,17006:6630773,42714535 -g1,17006:32583029,42714535 -g1,17006:32583029,42714535 -) -h1,17006:6630773,42911143:0,0,0 -] -(1,17016:32583029,45706769:0,0,0 -g1,17016:32583029,45706769 -) -) -] -(1,17016:6630773,47279633:25952256,0,0 -h1,17016:6630773,47279633:25952256,0,0 -) -] -(1,17016:4262630,4025873:0,0,0 -[1,17016:-473656,4025873:0,0,0 -(1,17016:-473656,-710413:0,0,0 -(1,17016:-473656,-710413:0,0,0 -g1,17016:-473656,-710413 -) -g1,17016:-473656,-710413 -) -] -) -] -!23346 -}294 -Input:2495:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2496:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2497:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2498:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2499:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2500:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2501:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2502:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2503:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 +) +] +) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,17097:37855564,49800853:1179648,16384,0 +) +) +k1,17097:3078556,49800853:-34777008 +) +] +g1,17097:6630773,4812305 +g1,17097:6630773,4812305 +g1,17097:8017514,4812305 +g1,17097:11261546,4812305 +g1,17097:12076813,4812305 +g1,17097:14985956,4812305 +k1,17097:31387652,4812305:16401696 +) +) +] +[1,17097:6630773,45706769:25952256,40108032,0 +(1,17097:6630773,45706769:25952256,40108032,0 +(1,17097:6630773,45706769:0,0,0 +g1,17097:6630773,45706769 +) +[1,17097:6630773,45706769:25952256,40108032,0 +(1,17084:6630773,6254097:25952256,505283,126483 +k1,17083:9143588,6254097:291144 +k1,17083:10086159,6254097:291143 +k1,17083:14289147,6254097:291144 +k1,17083:15960478,6254097:291143 +k1,17083:17243182,6254097:291144 +k1,17083:21003802,6254097:291144 +k1,17083:22441170,6254097:291143 +k1,17083:24522102,6254097:291144 +k1,17083:26255692,6254097:291143 +k1,17083:28589593,6254097:291144 +k1,17083:30049243,6254097:291143 +k1,17083:31900144,6254097:291144 +k1,17083:32583029,6254097:0 +) +(1,17084:6630773,7119177:25952256,505283,134348 +k1,17083:8282389,7119177:184920 +k1,17083:11030423,7119177:184921 +k1,17083:13086396,7119177:184920 +k1,17083:15156788,7119177:184921 +k1,17083:16539051,7119177:184920 +k1,17083:17494675,7119177:184921 +k1,17083:20906588,7119177:184920 +k1,17083:24436467,7119177:184921 +k1,17083:25430757,7119177:184920 +k1,17083:27501149,7119177:184921 +k1,17083:28337497,7119177:184920 +k1,17083:31563944,7119177:184921 +k1,17083:32583029,7119177:0 +) +(1,17084:6630773,7984257:25952256,513147,95026 +g1,17083:8840647,7984257 +g1,17083:9699168,7984257 +g1,17083:12740038,7984257 +g1,17083:15149141,7984257 +k1,17084:32583029,7984257:14172161 +g1,17084:32583029,7984257 +) +(1,17085:6630773,9635769:25952256,485622,11795 +(1,17085:6630773,9635769:0,0,0 +g1,17085:6630773,9635769 +) +k1,17085:32583030,9635769:22434284 +g1,17085:32583030,9635769 +) +(1,17088:6630773,10894065:25952256,513147,134348 +k1,17087:10448007,10894065:204234 +k1,17087:11643800,10894065:204233 +k1,17087:14403283,10894065:204234 +k1,17087:15892023,10894065:204234 +k1,17087:18765538,10894065:204234 +k1,17087:19988856,10894065:204233 +k1,17087:22912179,10894065:204234 +k1,17087:27781266,10894065:204234 +k1,17087:28644792,10894065:204234 +k1,17087:29868110,10894065:204233 +k1,17087:31635378,10894065:204234 +k1,17087:32583029,10894065:0 +) +(1,17088:6630773,11759145:25952256,513147,126483 +k1,17087:9670986,11759145:205126 +(1,17087:9670986,11759145:0,452978,122846 +r1,17097:13898082,11759145:4227096,575824,122846 +k1,17087:9670986,11759145:-4227096 +) +(1,17087:9670986,11759145:4227096,452978,122846 +k1,17087:9670986,11759145:3277 +h1,17087:13894805,11759145:0,411205,112570 +) +k1,17087:14276877,11759145:205125 +k1,17087:16089601,11759145:205126 +k1,17087:16650587,11759145:205126 +k1,17087:18543919,11759145:205125 +k1,17087:19431930,11759145:205126 +k1,17087:21948510,11759145:205125 +k1,17087:23101287,11759145:205126 +k1,17087:24758035,11759145:205126 +k1,17087:28704610,11759145:205125 +k1,17087:29592621,11759145:205126 +k1,17087:32583029,11759145:0 +) +(1,17088:6630773,12624225:25952256,505283,134348 +k1,17087:8635857,12624225:151070 +k1,17087:10476445,12624225:151070 +(1,17087:10476445,12624225:0,452978,122846 +r1,17097:14351829,12624225:3875384,575824,122846 +k1,17087:10476445,12624225:-3875384 +) +(1,17087:10476445,12624225:3875384,452978,122846 +k1,17087:10476445,12624225:3277 +h1,17087:14348552,12624225:0,411205,112570 +) +k1,17087:14676569,12624225:151070 +k1,17087:16743912,12624225:151070 +k1,17087:18063489,12624225:151070 +k1,17087:21235769,12624225:151070 +k1,17087:24022042,12624225:151070 +k1,17087:28418534,12624225:151070 +k1,17087:30286647,12624225:151070 +k1,17088:32583029,12624225:0 +) +(1,17088:6630773,13489305:25952256,513147,134348 +k1,17087:8268820,13489305:213950 +k1,17087:9684699,13489305:213949 +k1,17087:10660177,13489305:213950 +k1,17087:13139707,13489305:213950 +k1,17087:14163026,13489305:213949 +k1,17087:17404084,13489305:213950 +k1,17087:18690203,13489305:213950 +k1,17087:20505853,13489305:213950 +k1,17087:23386462,13489305:213949 +k1,17087:25865992,13489305:213950 +k1,17087:26731370,13489305:213950 +k1,17087:27964404,13489305:213949 +k1,17087:30638576,13489305:213950 +k1,17088:32583029,13489305:0 +) +(1,17088:6630773,14354385:25952256,513147,134348 +k1,17087:8157937,14354385:231517 +k1,17087:9864669,14354385:231517 +k1,17087:11521594,14354385:231517 +k1,17087:12108971,14354385:231517 +k1,17087:15347935,14354385:231517 +k1,17087:16110949,14354385:231517 +k1,17087:17855692,14354385:231517 +k1,17087:18738636,14354385:231516 +k1,17087:20167496,14354385:231517 +k1,17087:20754873,14354385:231517 +k1,17087:23936165,14354385:231517 +k1,17087:28832535,14354385:231517 +k1,17087:29723344,14354385:231517 +k1,17087:31344224,14354385:231517 +k1,17087:32227169,14354385:231517 +k1,17087:32583029,14354385:0 +) +(1,17088:6630773,15219465:25952256,513147,126483 +k1,17087:8257335,15219465:175595 +k1,17087:9301283,15219465:175596 +k1,17087:10524143,15219465:175595 +k1,17087:11984244,15219465:175595 +k1,17087:12515700,15219465:175596 +k1,17087:13974490,15219465:175595 +k1,17087:15807492,15219465:175596 +k1,17087:17084092,15219465:175595 +k1,17087:18769637,15219465:175595 +k1,17087:21084328,15219465:175596 +k1,17087:22456610,15219465:175595 +k1,17087:24370220,15219465:175595 +k1,17087:26203222,15219465:175596 +k1,17087:28717142,15219465:175595 +k1,17087:29911823,15219465:175596 +k1,17087:31298523,15219465:175595 +k1,17087:32583029,15219465:0 +) +(1,17088:6630773,16084545:25952256,513147,126483 +k1,17087:8263848,16084545:181453 +k1,17087:9728495,16084545:181452 +k1,17087:11467739,16084545:181453 +k1,17087:13614617,16084545:181453 +k1,17087:14327567,16084545:181453 +k1,17087:16811299,16084545:181452 +k1,17087:17802122,16084545:181453 +k1,17087:19055744,16084545:181453 +k1,17087:19896489,16084545:181453 +k1,17087:21097026,16084545:181452 +k1,17087:23166571,16084545:181453 +k1,17087:25682416,16084545:181453 +k1,17087:28269696,16084545:181453 +k1,17087:29067186,16084545:181452 +k1,17087:30267724,16084545:181453 +k1,17087:31900144,16084545:181453 +k1,17087:32583029,16084545:0 +) +(1,17088:6630773,16949625:25952256,505283,134348 +k1,17087:8821685,16949625:239250 +k1,17087:10758973,16949625:239250 +k1,17087:11354083,16949625:239250 +k1,17087:12870630,16949625:239250 +k1,17087:13641377,16949625:239250 +k1,17087:16230748,16949625:239250 +k1,17087:17489083,16949625:239250 +k1,17087:19616426,16949625:239251 +k1,17087:20988138,16949625:239250 +k1,17087:21975154,16949625:239250 +k1,17087:25367341,16949625:239250 +k1,17087:26222629,16949625:239250 +k1,17087:27480964,16949625:239250 +k1,17087:29459540,16949625:239250 +k1,17087:31078978,16949625:239250 +k1,17087:32583029,16949625:0 +) +(1,17088:6630773,17814705:25952256,505283,134348 +k1,17087:8793505,17814705:197307 +k1,17087:9642240,17814705:197307 +k1,17087:10858632,17814705:197307 +k1,17087:12333236,17814705:197307 +k1,17087:14663740,17814705:197307 +k1,17087:15903069,17814705:197307 +k1,17087:18935463,17814705:197307 +k1,17087:20289480,17814705:197307 +k1,17087:22044578,17814705:197307 +k1,17087:22857923,17814705:197307 +k1,17087:23411090,17814705:197307 +k1,17087:24885694,17814705:197307 +k1,17087:26187283,17814705:197307 +k1,17087:28679661,17814705:197307 +k1,17087:29896053,17814705:197307 +k1,17088:32583029,17814705:0 +) +(1,17088:6630773,18679785:25952256,513147,134348 +k1,17087:8626344,18679785:224133 +k1,17087:11323150,18679785:224133 +k1,17087:13105074,18679785:224133 +k1,17087:13685068,18679785:224134 +k1,17087:17225978,18679785:224133 +k1,17087:18618618,18679785:224133 +k1,17087:20555207,18679785:224133 +k1,17087:21430768,18679785:224133 +k1,17087:23467627,18679785:224133 +k1,17087:24883205,18679785:224133 +k1,17087:25463199,18679785:224134 +k1,17087:27269371,18679785:224133 +k1,17087:28650214,18679785:224133 +k1,17087:30211281,18679785:224133 +k1,17087:32583029,18679785:0 +) +(1,17088:6630773,19544865:25952256,505283,126483 +g1,17087:10620604,19544865 +g1,17087:12313399,19544865 +g1,17087:13283331,19544865 +g1,17087:16272428,19544865 +g1,17087:17154542,19544865 +g1,17087:17709631,19544865 +g1,17087:19135039,19544865 +k1,17088:32583029,19544865:11760438 +g1,17088:32583029,19544865 +) +(1,17089:6630773,21196377:25952256,475791,7863 +(1,17089:6630773,21196377:0,0,0 +g1,17089:6630773,21196377 +) +k1,17089:32583030,21196377:23237100 +g1,17089:32583030,21196377 +) +(1,17091:6630773,22454673:25952256,513147,134348 +k1,17090:9809090,22454673:279004 +k1,17090:11079655,22454673:279005 +k1,17090:13913908,22454673:279004 +k1,17090:15477419,22454673:279005 +k1,17090:19000455,22454673:279004 +k1,17090:20298545,22454673:279005 +k1,17090:24831491,22454673:279004 +k1,17090:25793381,22454673:279005 +k1,17090:27138656,22454673:279004 +k1,17090:28076953,22454673:279005 +k1,17090:31305732,22454673:279004 +k1,17090:32583029,22454673:0 +) +(1,17091:6630773,23319753:25952256,513147,138281 +k1,17090:9766296,23319753:266357 +k1,17090:12391949,23319753:266357 +k1,17090:13309734,23319753:266357 +k1,17090:15084730,23319753:266357 +k1,17090:17786405,23319753:266357 +$1,17090:17786405,23319753 +$1,17090:18289066,23319753 +k1,17090:18555423,23319753:266357 +k1,17090:20013225,23319753:266357 +$1,17090:20013225,23319753 +$1,17090:20565038,23319753 +k1,17090:20831394,23319753:266356 +k1,17090:25009595,23319753:266357 +k1,17090:26833743,23319753:266357 +k1,17090:28091660,23319753:266357 +k1,17090:29514727,23319753:266357 +k1,17090:30440376,23319753:266357 +k1,17090:31725818,23319753:266357 +k1,17091:32583029,23319753:0 +) +(1,17091:6630773,24184833:25952256,505283,134348 +k1,17090:9562958,24184833:173775 +k1,17090:12552815,24184833:173775 +k1,17090:13488118,24184833:173775 +k1,17090:17252610,24184833:173775 +k1,17090:19995397,24184833:173776 +(1,17090:19995397,24184833:0,452978,115847 +r1,17097:26684475,24184833:6689078,568825,115847 +k1,17090:19995397,24184833:-6689078 +) +(1,17090:19995397,24184833:6689078,452978,115847 +k1,17090:19995397,24184833:3277 +h1,17090:26681198,24184833:0,411205,112570 +) +k1,17090:26858250,24184833:173775 +k1,17090:30434654,24184833:173775 +k1,17090:31417799,24184833:173775 +k1,17091:32583029,24184833:0 +) +(1,17091:6630773,25049913:25952256,513147,126483 +k1,17090:10277804,25049913:171657 +k1,17090:11640907,25049913:171658 +k1,17090:12760215,25049913:171657 +k1,17090:15766959,25049913:171657 +(1,17090:15766959,25049913:0,452978,115847 +r1,17097:21400902,25049913:5633943,568825,115847 +k1,17090:15766959,25049913:-5633943 +) +(1,17090:15766959,25049913:5633943,452978,115847 +k1,17090:15766959,25049913:3277 +h1,17090:21397625,25049913:0,411205,112570 +) +k1,17090:21572559,25049913:171657 +k1,17090:23790251,25049913:171658 +k1,17090:24420005,25049913:171657 +k1,17090:27221622,25049913:171657 +k1,17090:28044708,25049913:171658 +k1,17090:30145745,25049913:171657 +k1,17090:32583029,25049913:0 +) +(1,17091:6630773,25914993:25952256,505283,134348 +k1,17090:7863997,25914993:188580 +k1,17090:9660174,25914993:188579 +k1,17090:11040199,25914993:188580 +k1,17090:13666062,25914993:188579 +k1,17090:15202062,25914993:188580 +k1,17090:17171910,25914993:188579 +k1,17090:20259803,25914993:188580 +k1,17090:21580845,25914993:188580 +k1,17090:22517190,25914993:188579 +k1,17090:25835114,25914993:188580 +k1,17090:28704116,25914993:188579 +k1,17090:30286647,25914993:188580 +k1,17091:32583029,25914993:0 +) +(1,17091:6630773,26780073:25952256,505283,126483 +g1,17090:8254099,26780073 +g1,17090:9139490,26780073 +g1,17090:10718907,26780073 +g1,17090:11909696,26780073 +g1,17090:14238190,26780073 +g1,17090:18262755,26780073 +g1,17090:19113412,26780073 +k1,17091:32583029,26780073:11656891 +g1,17091:32583029,26780073 +) +(1,17092:6630773,28431585:25952256,485622,11795 +(1,17092:6630773,28431585:0,0,0 +g1,17092:6630773,28431585 +) +k1,17092:32583030,28431585:23221372 +g1,17092:32583030,28431585 +) +(1,17094:6630773,29689881:25952256,513147,126483 +k1,17093:9674682,29689881:165568 +k1,17093:10831809,29689881:165567 +k1,17093:13552626,29689881:165568 +k1,17093:15002700,29689881:165568 +k1,17093:18209793,29689881:165567 +k1,17093:21846803,29689881:165568 +k1,17093:22671662,29689881:165567 +k1,17093:26345372,29689881:165568 +k1,17093:27193825,29689881:165568 +k1,17093:29051532,29689881:165567 +k1,17093:30919070,29689881:165568 +k1,17094:32583029,29689881:0 +) +(1,17094:6630773,30554961:25952256,513147,126483 +k1,17093:8448261,30554961:194161 +k1,17093:9451792,30554961:194161 +k1,17093:10665038,30554961:194161 +k1,17093:12869845,30554961:194162 +k1,17093:13680044,30554961:194161 +k1,17093:14893290,30554961:194161 +k1,17093:16650485,30554961:194161 +k1,17093:18627881,30554961:194161 +k1,17093:21504431,30554961:194161 +k1,17093:22690152,30554961:194161 +k1,17093:24397539,30554961:194161 +k1,17093:25539352,30554961:194162 +k1,17093:26089373,30554961:194161 +k1,17093:30521092,30554961:194161 +k1,17093:31734338,30554961:194161 +k1,17094:32583029,30554961:0 +) +(1,17094:6630773,31420041:25952256,505283,134348 +k1,17093:8911476,31420041:137676 +k1,17093:10729495,31420041:137676 +k1,17093:11398668,31420041:137676 +k1,17093:13741631,31420041:137676 +k1,17093:14530735,31420041:137676 +k1,17093:15024271,31420041:137676 +k1,17093:18301121,31420041:137676 +k1,17093:19630242,31420041:137676 +k1,17093:23993024,31420041:137676 +k1,17093:26318292,31420041:137676 +k1,17093:26811828,31420041:137676 +k1,17093:29631893,31420041:137676 +k1,17093:31055385,31420041:137676 +k1,17093:32583029,31420041:0 +) +(1,17094:6630773,32285121:25952256,513147,126483 +k1,17093:7132064,32285121:145431 +k1,17093:8835286,32285121:145431 +k1,17093:9632144,32285121:145430 +k1,17093:10796660,32285121:145431 +k1,17093:12393058,32285121:145431 +k1,17093:13580511,32285121:145431 +k1,17093:16561029,32285121:145431 +(1,17093:16561029,32285121:0,452978,115847 +r1,17097:21139837,32285121:4578808,568825,115847 +k1,17093:16561029,32285121:-4578808 +) +(1,17093:16561029,32285121:4578808,452978,115847 +k1,17093:16561029,32285121:3277 +h1,17093:21136560,32285121:0,411205,112570 +) +k1,17093:21285268,32285121:145431 +k1,17093:22448472,32285121:145430 +k1,17093:22949763,32285121:145431 +k1,17093:26315633,32285121:145431 +k1,17093:27652509,32285121:145431 +(1,17093:27652509,32285121:0,452978,115847 +r1,17097:32583029,32285121:4930520,568825,115847 +k1,17093:27652509,32285121:-4930520 +) +(1,17093:27652509,32285121:4930520,452978,115847 +k1,17093:27652509,32285121:3277 +h1,17093:32579752,32285121:0,411205,112570 +) +k1,17093:32583029,32285121:0 +) +(1,17094:6630773,33150201:25952256,513147,126483 +k1,17093:9110018,33150201:197937 +k1,17093:9663815,33150201:197937 +k1,17093:12852161,33150201:197938 +k1,17093:15745594,33150201:197937 +k1,17093:17437097,33150201:197937 +k1,17093:18321196,33150201:197937 +(1,17093:18321196,33150201:0,452978,115847 +r1,17097:20789733,33150201:2468537,568825,115847 +k1,17093:18321196,33150201:-2468537 +) +(1,17093:18321196,33150201:2468537,452978,115847 +k1,17093:18321196,33150201:3277 +h1,17093:20786456,33150201:0,411205,112570 +) +k1,17093:21161340,33150201:197937 +k1,17093:22904616,33150201:197937 +k1,17093:25955992,33150201:197938 +k1,17093:27145489,33150201:197937 +k1,17093:29715174,33150201:197937 +k1,17094:32583029,33150201:0 +) +(1,17094:6630773,34015281:25952256,505283,134348 +k1,17093:8559319,34015281:266553 +k1,17093:9587399,34015281:266552 +k1,17093:11746632,34015281:266553 +k1,17093:13711223,34015281:266553 +k1,17093:15367139,34015281:266553 +k1,17093:17108906,34015281:266552 +k1,17093:18885409,34015281:266553 +k1,17093:21812724,34015281:266553 +k1,17093:22840805,34015281:266553 +k1,17093:25914919,34015281:266552 +k1,17093:29408465,34015281:266553 +k1,17093:32583029,34015281:0 +) +(1,17094:6630773,34880361:25952256,513147,7863 +g1,17093:8323568,34880361 +g1,17093:9208959,34880361 +g1,17093:11024306,34880361 +g1,17093:11874963,34880361 +g1,17093:12430052,34880361 +k1,17094:32583029,34880361:18085316 +g1,17094:32583029,34880361 +) +(1,17095:6630773,36531873:25952256,505283,11795 +(1,17095:6630773,36531873:0,0,0 +g1,17095:6630773,36531873 +) +k1,17095:32583029,36531873:24057610 +g1,17095:32583029,36531873 +) +(1,17097:6630773,37790169:25952256,505283,134348 +k1,17096:8837311,37790169:279124 +k1,17096:10396352,37790169:279123 +k1,17096:11694561,37790169:279124 +k1,17096:16048713,37790169:279123 +k1,17096:17010722,37790169:279124 +k1,17096:20097407,37790169:279123 +k1,17096:23011734,37790169:279124 +k1,17096:24680220,37790169:279123 +k1,17096:26969989,37790169:279124 +k1,17096:28440558,37790169:279124 +k1,17096:29738766,37790169:279123 +k1,17096:32583029,37790169:0 +) +(1,17097:6630773,38655249:25952256,505283,134348 +k1,17096:8952714,38655249:311296 +k1,17096:9915438,38655249:311296 +k1,17096:10974500,38655249:311296 +k1,17096:13774197,38655249:311295 +k1,17096:16561443,38655249:311296 +k1,17096:19623940,38655249:311296 +k1,17096:20291096,38655249:311296 +k1,17096:23113732,38655249:311296 +k1,17096:24076456,38655249:311296 +k1,17096:25406836,38655249:311295 +k1,17096:27934560,38655249:311296 +k1,17096:31090119,38655249:311296 +k1,17096:32583029,38655249:0 +) +(1,17097:6630773,39520329:25952256,513147,134348 +k1,17096:10461828,39520329:318981 +k1,17096:12478848,39520329:318982 +k1,17096:15074550,39520329:318981 +k1,17096:16079693,39520329:318981 +k1,17096:19237039,39520329:318982 +k1,17096:20931621,39520329:318981 +k1,17096:22595402,39520329:318982 +k1,17096:24198889,39520329:318981 +k1,17096:27280213,39520329:318981 +k1,17096:29609840,39520329:318982 +k1,17096:31966991,39520329:318981 +k1,17096:32583029,39520329:0 +) +(1,17097:6630773,40385409:25952256,513147,126483 +k1,17096:7990657,40385409:340799 +k1,17096:10916851,40385409:340799 +k1,17096:13768990,40385409:340799 +k1,17096:15242250,40385409:340798 +k1,17096:16330815,40385409:340799 +k1,17096:20481222,40385409:340799 +k1,17096:21583549,40385409:340799 +k1,17096:24686691,40385409:340799 +k1,17096:27147580,40385409:340799 +k1,17096:27975824,40385409:340656 +k1,17096:30062502,40385409:340799 +k1,17096:31896867,40385409:340799 +k1,17097:32583029,40385409:0 +) +(1,17097:6630773,41250489:25952256,505283,126483 +(1,17096:6630773,41250489:0,452978,115847 +r1,17097:15078410,41250489:8447637,568825,115847 +k1,17096:6630773,41250489:-8447637 +) +(1,17096:6630773,41250489:8447637,452978,115847 +k1,17096:6630773,41250489:3277 +h1,17096:15075133,41250489:0,411205,112570 +) +k1,17096:15466013,41250489:213933 +k1,17096:16812409,41250489:213934 +k1,17096:20270374,41250489:213933 +k1,17096:22369779,41250489:213934 +k1,17096:24199830,41250489:213933 +k1,17096:25029802,41250489:213934 +k1,17096:26262820,41250489:213933 +k1,17096:27754051,41250489:213934 +k1,17096:31931601,41250489:213933 +k1,17096:32583029,41250489:0 +) +(1,17097:6630773,42115569:25952256,513147,102891 +k1,17096:8785324,42115569:269080 +k1,17096:10734747,42115569:269080 +k1,17096:11619864,42115569:269079 +k1,17096:12908029,42115569:269080 +k1,17096:15862119,42115569:269080 +k1,17096:18058613,42115569:269080 +k1,17096:19431974,42115569:269079 +k1,17096:20986870,42115569:269080 +k1,17096:23216787,42115569:269080 +k1,17096:28653381,42115569:269080 +k1,17096:29731830,42115569:269079 +k1,17096:31019995,42115569:269080 +k1,17096:32583029,42115569:0 +) +(1,17097:6630773,42980649:25952256,505283,134348 +k1,17096:8650047,42980649:133803 +k1,17096:9775409,42980649:133802 +k1,17096:11422438,42980649:133803 +k1,17096:13254278,42980649:133802 +k1,17096:16195643,42980649:133803 +k1,17096:17718808,42980649:133802 +k1,17096:19863256,42980649:133803 +k1,17096:20648487,42980649:133803 +k1,17096:23626552,42980649:133802 +k1,17096:25944670,42980649:133803 +k1,17096:26976315,42980649:133802 +k1,17096:30680519,42980649:133803 +k1,17096:32583029,42980649:0 +) +(1,17097:6630773,43845729:25952256,513147,138281 +k1,17096:9351500,43845729:194314 +k1,17096:16611250,43845729:194314 +k1,17096:17421603,43845729:194315 +k1,17096:18635002,43845729:194314 +k1,17096:20196397,43845729:194314 +k1,17096:21050003,43845729:194314 +$1,17096:21050003,43845729 +$1,17096:21552664,43845729 +k1,17096:21746978,43845729:194314 +k1,17096:23132737,43845729:194314 +$1,17096:23132737,43845729 +$1,17096:23684550,43845729 +k1,17096:23878865,43845729:194315 +k1,17096:27421413,43845729:194314 +k1,17096:30560260,43845729:194314 +k1,17096:31563944,43845729:194314 +k1,17096:32583029,43845729:0 +) +(1,17097:6630773,44710809:25952256,513147,134348 +k1,17096:9395201,44710809:239981 +k1,17096:11655657,44710809:239981 +k1,17096:12578523,44710809:239981 +k1,17096:15207291,44710809:239981 +k1,17096:18234518,44710809:239981 +k1,17096:19606960,44710809:239980 +k1,17096:20594707,44710809:239981 +k1,17096:23382072,44710809:239981 +k1,17096:24383581,44710809:239981 +k1,17096:25642647,44710809:239981 +k1,17096:30893511,44710809:239981 +k1,17096:32583029,44710809:0 +) +(1,17097:6630773,45575889:25952256,513147,134348 +k1,17096:7814599,45575889:164741 +k1,17096:10414658,45575889:164741 +k1,17096:12590044,45575889:164741 +k1,17096:13887247,45575889:164741 +k1,17096:14799754,45575889:164741 +k1,17096:16477721,45575889:164741 +k1,17096:17590113,45575889:164741 +k1,17096:18939089,45575889:164740 +k1,17096:20948013,45575889:164741 +k1,17096:22857322,45575889:164741 +k1,17096:24041148,45575889:164741 +k1,17096:25778098,45575889:164741 +k1,17096:27870253,45575889:164741 +k1,17096:29026554,45575889:164741 +k1,17096:30704521,45575889:164741 +k1,17096:31816913,45575889:164741 +k1,17096:32583029,45575889:0 +) +] +(1,17097:32583029,45706769:0,0,0 +g1,17097:32583029,45706769 +) +) +] +(1,17097:6630773,47279633:25952256,0,0 +h1,17097:6630773,47279633:25952256,0,0 +) +] +(1,17097:4262630,4025873:0,0,0 +[1,17097:-473656,4025873:0,0,0 +(1,17097:-473656,-710413:0,0,0 +(1,17097:-473656,-710413:0,0,0 +g1,17097:-473656,-710413 +) +g1,17097:-473656,-710413 +) +] +) +] +!23919 +}276 Input:2504:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2505:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2506:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -292924,5967 +289059,6555 @@ Input:2507:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConso Input:2508:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2509:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2510:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1516 -{295 -[1,17065:4262630,47279633:28320399,43253760,0 -(1,17065:4262630,4025873:0,0,0 -[1,17065:-473656,4025873:0,0,0 -(1,17065:-473656,-710413:0,0,0 -(1,17065:-473656,-644877:0,0,0 -k1,17065:-473656,-644877:-65536 +Input:2511:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2512:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2513:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2514:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1046 +{277 +[1,17116:4262630,47279633:28320399,43253760,0 +(1,17116:4262630,4025873:0,0,0 +[1,17116:-473656,4025873:0,0,0 +(1,17116:-473656,-710413:0,0,0 +(1,17116:-473656,-644877:0,0,0 +k1,17116:-473656,-644877:-65536 ) -(1,17065:-473656,4736287:0,0,0 -k1,17065:-473656,4736287:5209943 +(1,17116:-473656,4736287:0,0,0 +k1,17116:-473656,4736287:5209943 ) -g1,17065:-473656,-710413 +g1,17116:-473656,-710413 ) ] ) -[1,17065:6630773,47279633:25952256,43253760,0 -[1,17065:6630773,4812305:25952256,786432,0 -(1,17065:6630773,4812305:25952256,513147,126483 -(1,17065:6630773,4812305:25952256,513147,126483 -g1,17065:3078558,4812305 -[1,17065:3078558,4812305:0,0,0 -(1,17065:3078558,2439708:0,1703936,0 -k1,17065:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,17065:2537886,2439708:1179648,16384,0 +[1,17116:6630773,47279633:25952256,43253760,0 +[1,17116:6630773,4812305:25952256,786432,0 +(1,17116:6630773,4812305:25952256,513147,126483 +(1,17116:6630773,4812305:25952256,513147,126483 +g1,17116:3078558,4812305 +[1,17116:3078558,4812305:0,0,0 +(1,17116:3078558,2439708:0,1703936,0 +k1,17116:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,17116:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,17065:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,17116:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,17065:3078558,4812305:0,0,0 -(1,17065:3078558,2439708:0,1703936,0 -g1,17065:29030814,2439708 -g1,17065:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,17065:36151628,1915420:16384,1179648,0 +[1,17116:3078558,4812305:0,0,0 +(1,17116:3078558,2439708:0,1703936,0 +g1,17116:29030814,2439708 +g1,17116:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,17116:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,17065:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,17116:37855564,2439708:1179648,16384,0 ) ) -k1,17065:3078556,2439708:-34777008 +k1,17116:3078556,2439708:-34777008 ) ] -[1,17065:3078558,4812305:0,0,0 -(1,17065:3078558,49800853:0,16384,2228224 -k1,17065:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,17065:2537886,49800853:1179648,16384,0 +[1,17116:3078558,4812305:0,0,0 +(1,17116:3078558,49800853:0,16384,2228224 +k1,17116:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,17116:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,17065:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,17116:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 -) -] +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 +) +] +) +) +) +] +[1,17116:3078558,4812305:0,0,0 +(1,17116:3078558,49800853:0,16384,2228224 +g1,17116:29030814,49800853 +g1,17116:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,17116:36151628,51504789:16384,1179648,0 +) +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 +) +] +) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,17116:37855564,49800853:1179648,16384,0 +) +) +k1,17116:3078556,49800853:-34777008 +) +] +g1,17116:6630773,4812305 +k1,17116:21350816,4812305:13524666 +g1,17116:21999622,4812305 +g1,17116:25611966,4812305 +g1,17116:28956923,4812305 +g1,17116:29772190,4812305 +) +) +] +[1,17116:6630773,45706769:25952256,40108032,0 +(1,17116:6630773,45706769:25952256,40108032,0 +(1,17116:6630773,45706769:0,0,0 +g1,17116:6630773,45706769 +) +[1,17116:6630773,45706769:25952256,40108032,0 +(1,17097:6630773,6254097:25952256,505283,134348 +k1,17096:10172702,6254097:193695 +k1,17096:13346975,6254097:193696 +k1,17096:17111071,6254097:193695 +k1,17096:20320077,6254097:193695 +k1,17096:22007339,6254097:193696 +k1,17096:22887196,6254097:193695 +k1,17096:26070643,6254097:193695 +k1,17096:27455784,6254097:193696 +k1,17096:31096017,6254097:193695 +k1,17096:32583029,6254097:0 +) +(1,17097:6630773,7119177:25952256,513147,134348 +k1,17096:8335516,7119177:211177 +k1,17096:9232855,7119177:211177 +k1,17096:11841994,7119177:211177 +k1,17096:13249858,7119177:211177 +k1,17096:16363625,7119177:211177 +k1,17096:17234094,7119177:211177 +k1,17096:20164361,7119177:211178 +k1,17096:22387493,7119177:211177 +k1,17096:23974271,7119177:211177 +k1,17096:25342158,7119177:211177 +k1,17096:27125544,7119177:211177 +k1,17096:28393161,7119177:211177 +k1,17096:31391584,7119177:211177 +k1,17096:32583029,7119177:0 +) +(1,17097:6630773,7984257:25952256,505283,134348 +k1,17096:8270837,7984257:189097 +k1,17096:9840777,7984257:189096 +k1,17096:13343374,7984257:189097 +k1,17096:14063967,7984257:189096 +k1,17096:16987881,7984257:189097 +k1,17096:17938505,7984257:189096 +k1,17096:20216234,7984257:189097 +k1,17096:21056758,7984257:189096 +k1,17096:22975350,7984257:189097 +k1,17096:26350151,7984257:189096 +k1,17096:27988904,7984257:189097 +k1,17096:28636097,7984257:189096 +k1,17096:31298523,7984257:189097 +k1,17096:32583029,7984257:0 +) +(1,17097:6630773,8849337:25952256,505283,134348 +k1,17096:7861174,8849337:211316 +k1,17096:9128931,8849337:211317 +k1,17096:10956365,8849337:211316 +k1,17096:12300144,8849337:211317 +k1,17096:13986675,8849337:211316 +k1,17096:15217077,8849337:211317 +k1,17096:17081866,8849337:211316 +k1,17096:20621757,8849337:211317 +k1,17096:21449111,8849337:211316 +k1,17096:22426544,8849337:211317 +k1,17096:23915157,8849337:211316 +k1,17096:26014566,8849337:211317 +k1,17096:28144776,8849337:211316 +k1,17096:29375178,8849337:211317 +(1,17096:29375178,8849337:0,452978,115847 +r1,17116:31140291,8849337:1765113,568825,115847 +k1,17096:29375178,8849337:-1765113 +) +(1,17096:29375178,8849337:1765113,452978,115847 +k1,17096:29375178,8849337:3277 +h1,17096:31137014,8849337:0,411205,112570 +) +k1,17096:31351607,8849337:211316 +k1,17097:32583029,8849337:0 +) +(1,17097:6630773,9714417:25952256,513147,134348 +k1,17096:8548903,9714417:157177 +k1,17096:9237577,9714417:157177 +k1,17096:11980149,9714417:157177 +k1,17096:12788754,9714417:157177 +k1,17096:14716058,9714417:157177 +k1,17096:16800649,9714417:157177 +k1,17096:18433042,9714417:157178 +k1,17096:20404911,9714417:157177 +k1,17096:21956039,9714417:157177 +k1,17096:26184968,9714417:157177 +k1,17096:28363275,9714417:157177 +k1,17096:30886302,9714417:157177 +k1,17096:32583029,9714417:0 +) +(1,17097:6630773,10579497:25952256,513147,134348 +k1,17096:8640795,10579497:195330 +k1,17096:10574141,10579497:195331 +k1,17096:13210687,10579497:195330 +k1,17096:14167546,10579497:195331 +k1,17096:16628456,10579497:195330 +k1,17096:19749969,10579497:195330 +k1,17096:20706828,10579497:195331 +(1,17096:20706828,10579497:0,414482,115847 +r1,17116:21416806,10579497:709978,530329,115847 +k1,17096:20706828,10579497:-709978 +) +(1,17096:20706828,10579497:709978,414482,115847 +k1,17096:20706828,10579497:3277 +h1,17096:21413529,10579497:0,411205,112570 +) +k1,17096:21819230,10579497:195330 +k1,17096:23966222,10579497:195330 +k1,17096:25604000,10579497:195331 +k1,17096:28004617,10579497:195330 +k1,17096:28851376,10579497:195331 +k1,17096:31900144,10579497:195330 +k1,17096:32583029,10579497:0 +) +(1,17097:6630773,11444577:25952256,505283,134348 +k1,17096:11412411,11444577:160694 +k1,17096:12104602,11444577:160694 +k1,17096:13659902,11444577:160694 +k1,17096:14472024,11444577:160694 +k1,17096:19492213,11444577:160694 +k1,17096:21177274,11444577:160694 +k1,17096:25409720,11444577:160694 +k1,17096:27268452,11444577:160694 +k1,17096:29610840,11444577:160694 +k1,17096:31343743,11444577:160694 +k1,17097:32583029,11444577:0 +) +(1,17097:6630773,12309657:25952256,505283,134348 +k1,17096:7644134,12309657:224963 +k1,17096:10975503,12309657:224962 +k1,17096:15425572,12309657:224963 +k1,17096:18220856,12309657:224962 +k1,17096:21481447,12309657:224963 +k1,17096:24692885,12309657:224962 +k1,17096:26202354,12309657:224963 +(1,17096:26202354,12309657:0,414482,115847 +r1,17116:26912332,12309657:709978,530329,115847 +k1,17096:26202354,12309657:-709978 +) +(1,17096:26202354,12309657:709978,414482,115847 +k1,17096:26202354,12309657:3277 +h1,17096:26909055,12309657:0,411205,112570 +) +k1,17096:27137294,12309657:224962 +k1,17096:29372902,12309657:224963 +k1,17096:31073079,12309657:224962 +k1,17096:32583029,12309657:0 +) +(1,17097:6630773,13174737:25952256,513147,134348 +g1,17096:9327579,13174737 +g1,17096:11094429,13174737 +g1,17096:11649518,13174737 +g1,17096:13126044,13174737 +g1,17096:15505656,13174737 +g1,17096:16771156,13174737 +g1,17096:17718151,13174737 +k1,17097:32583029,13174737:12249991 +g1,17097:32583029,13174737 +) +(1,17098:6630773,14826249:25952256,505283,126483 +(1,17098:6630773,14826249:0,0,0 +g1,17098:6630773,14826249 +) +g1,17098:10311930,14826249 +k1,17098:32583029,14826249:19849544 +g1,17098:32583029,14826249 +) +(1,17100:6630773,16084545:25952256,513147,134348 +k1,17099:7987308,16084545:159848 +k1,17099:9748856,16084545:159848 +k1,17099:13213686,16084545:159849 +k1,17099:14886760,16084545:159848 +k1,17099:18454480,16084545:159848 +k1,17099:20860247,16084545:159848 +k1,17099:22718133,16084545:159848 +k1,17099:25402428,16084545:159848 +k1,17099:27125311,16084545:159849 +k1,17099:28304244,16084545:159848 +k1,17099:31348331,16084545:159848 +k1,17100:32583029,16084545:0 +) +(1,17100:6630773,16949625:25952256,513147,138281 +k1,17099:8238022,16949625:209366 +k1,17099:8978884,16949625:209365 +k1,17099:10207335,16949625:209366 +k1,17099:12682280,16949625:209365 +k1,17099:13839297,16949625:209366 +k1,17099:15650363,16949625:209366 +k1,17099:19450445,16949625:209365 +k1,17099:20287646,16949625:209366 +k1,17099:21516096,16949625:209365 +k1,17099:24609701,16949625:209366 +k1,17099:27238656,16949625:209366 +$1,17099:27238656,16949625 +$1,17099:27741317,16949625 +k1,17099:27950682,16949625:209365 +k1,17099:29351493,16949625:209366 +$1,17099:29351493,16949625 +$1,17099:29903306,16949625 +k1,17099:30112671,16949625:209365 +k1,17099:31313597,16949625:209366 +k1,17100:32583029,16949625:0 +) +(1,17100:6630773,17814705:25952256,530347,134348 +k1,17099:9593500,17814705:209560 +k1,17099:10489223,17814705:209561 +k1,17099:13689846,17814705:209560 +k1,17099:14708776,17814705:209560 +k1,17099:16090775,17814705:209560 +k1,17099:19794060,17814705:209561 +k1,17099:20823475,17814705:209560 +$1,17099:21620393,17814705 +(1,17099:21620393,17539424:343802,255066,0 +) +$1,17099:21964195,17814705 +k1,17099:22380849,17814705:209560 +k1,17099:24162618,17814705:209560 +k1,17099:27730899,17814705:209561 +k1,17099:31348331,17814705:209560 +k1,17100:32583029,17814705:0 +) +(1,17100:6630773,18679785:25952256,505283,134348 +k1,17099:8408164,18679785:222877 +k1,17099:9622601,18679785:222877 +k1,17099:12629447,18679785:222877 +k1,17099:13468362,18679785:222877 +k1,17099:16519772,18679785:222877 +k1,17099:17934095,18679785:222878 +k1,17099:20715498,18679785:222877 +k1,17099:24514675,18679785:222877 +k1,17099:25779574,18679785:222877 +k1,17099:28837538,18679785:222877 +k1,17099:29676453,18679785:222877 +k1,17099:30918415,18679785:222877 +k1,17099:32583029,18679785:0 +) +(1,17100:6630773,19544865:25952256,513147,134348 +k1,17099:9092961,19544865:216269 +k1,17099:9968521,19544865:216268 +k1,17099:14096634,19544865:216269 +k1,17099:15331988,19544865:216269 +$1,17099:15331988,19544865 +$1,17099:15834649,19544865 +k1,17099:16050917,19544865:216268 +k1,17099:18277831,19544865:216269 +k1,17099:19485660,19544865:216269 +k1,17099:22287324,19544865:216269 +k1,17099:23155020,19544865:216268 +k1,17099:25398973,19544865:216269 +k1,17099:27904415,19544865:216269 +k1,17099:28476543,19544865:216268 +k1,17099:30894822,19544865:216269 +k1,17099:32583029,19544865:0 +) +(1,17100:6630773,20409945:25952256,513147,138281 +k1,17099:8006576,20409945:184358 +$1,17099:8006576,20409945 +$1,17099:8558389,20409945 +k1,17099:8742746,20409945:184357 +k1,17099:10937749,20409945:184358 +k1,17099:11773534,20409945:184357 +k1,17099:12976977,20409945:184358 +k1,17099:15346305,20409945:184358 +k1,17099:18135063,20409945:184357 +k1,17099:20980838,20409945:184358 +k1,17099:21696693,20409945:184358 +k1,17099:22900135,20409945:184357 +k1,17099:25397259,20409945:184358 +k1,17099:27827535,20409945:184357 +k1,17099:28671185,20409945:184358 +k1,17099:32583029,20409945:0 +) +(1,17100:6630773,21275025:25952256,513147,134348 +k1,17099:7691741,21275025:290265 +k1,17099:11054334,21275025:290265 +k1,17099:12003891,21275025:290265 +k1,17099:13313241,21275025:290265 +k1,17099:16506096,21275025:290265 +k1,17099:20997874,21275025:290265 +k1,17099:21904177,21275025:290265 +k1,17099:24774594,21275025:290265 +k1,17099:27686953,21275025:290265 +k1,17099:29261724,21275025:290265 +k1,17099:31563944,21275025:290265 +k1,17099:32583029,21275025:0 +) +(1,17100:6630773,22140105:25952256,513147,134348 +k1,17099:10928087,22140105:262918 +k1,17099:11850298,22140105:262919 +k1,17099:14425982,22140105:262918 +k1,17099:16470170,22140105:262919 +k1,17099:18939685,22140105:262918 +k1,17099:21017296,22140105:262919 +k1,17099:21931642,22140105:262918 +k1,17099:22550421,22140105:262919 +k1,17099:26221211,22140105:262918 +k1,17099:28730049,22140105:262919 +k1,17099:31563944,22140105:262918 +k1,17099:32583029,22140105:0 +) +(1,17100:6630773,23005185:25952256,513147,134348 +k1,17099:8850074,23005185:198826 +k1,17099:9708192,23005185:198826 +k1,17099:10926103,23005185:198826 +k1,17099:13649377,23005185:198827 +k1,17099:15636025,23005185:198826 +k1,17099:17877608,23005185:198826 +k1,17099:18692472,23005185:198826 +k1,17099:19910383,23005185:198826 +k1,17099:21560176,23005185:198826 +k1,17099:22831172,23005185:198827 +k1,17099:24522908,23005185:198826 +k1,17099:25788005,23005185:198826 +k1,17099:28337607,23005185:198826 +k1,17099:32583029,23005185:0 +) +(1,17100:6630773,23870265:25952256,505283,134348 +k1,17099:7463474,23870265:204866 +k1,17099:9370309,23870265:204865 +k1,17099:11703784,23870265:204866 +k1,17099:13606687,23870265:204865 +k1,17099:15546946,23870265:204866 +k1,17099:18584932,23870265:204865 +k1,17099:22861550,23870265:204866 +k1,17099:25380491,23870265:204865 +k1,17099:27951207,23870265:204866 +k1,17099:29175157,23870265:204865 +k1,17099:32583029,23870265:0 +) +(1,17100:6630773,24735345:25952256,513147,126483 +k1,17099:8798470,24735345:179335 +k1,17099:10047352,24735345:179334 +k1,17099:11292958,24735345:179335 +k1,17099:13515049,24735345:179334 +k1,17099:14310422,24735345:179335 +k1,17099:15508841,24735345:179334 +k1,17099:18563240,24735345:179335 +k1,17099:20193542,24735345:179335 +k1,17099:21505338,24735345:179334 +k1,17099:22883327,24735345:179335 +k1,17099:23810427,24735345:179334 +k1,17099:26748172,24735345:179335 +k1,17099:27543544,24735345:179334 +k1,17099:32117068,24735345:179335 +k1,17099:32583029,24735345:0 +) +(1,17100:6630773,25600425:25952256,513147,134348 +g1,17099:9684750,25600425 +g1,17099:10645507,25600425 +g1,17099:14252608,25600425 +g1,17099:16266529,25600425 +g1,17099:17537927,25600425 +g1,17099:18869618,25600425 +g1,17099:19816613,25600425 +g1,17099:22457058,25600425 +g1,17099:23122248,25600425 +g1,17099:26176225,25600425 +g1,17099:27136982,25600425 +g1,17099:28908420,25600425 +k1,17100:32583029,25600425:1686247 +g1,17100:32583029,25600425 +) +(1,17101:6630773,27251937:25952256,505283,7863 +(1,17101:6630773,27251937:0,0,0 +g1,17101:6630773,27251937 +) +k1,17101:32583028,27251937:23518248 +g1,17101:32583028,27251937 +) +(1,17103:6630773,28510233:25952256,513147,126483 +k1,17102:8242350,28510233:190756 +k1,17102:9452192,28510233:190757 +k1,17102:11250546,28510233:190756 +k1,17102:12828045,28510233:190757 +k1,17102:14716839,28510233:190756 +k1,17102:17970749,28510233:190757 +k1,17102:18844390,28510233:190756 +k1,17102:21385267,28510233:190756 +k1,17102:22680306,28510233:190757 +k1,17102:23618828,28510233:190756 +k1,17102:26031256,28510233:190757 +k1,17102:26983540,28510233:190756 +k1,17102:29242613,28510233:190757 +k1,17102:30092661,28510233:190756 +k1,17102:32583029,28510233:0 +) +(1,17103:6630773,29375313:25952256,505283,134348 +k1,17102:7338121,29375313:219760 +k1,17102:8835199,29375313:219781 +k1,17102:10159262,29375313:219781 +k1,17102:11126809,29375313:219781 +k1,17102:13158005,29375313:219781 +k1,17102:15838008,29375313:219781 +k1,17102:18245381,29375313:219781 +k1,17102:18821022,29375313:219781 +k1,17102:21027199,29375313:219781 +k1,17102:22438425,29375313:219781 +k1,17102:24092134,29375313:219781 +k1,17102:26662036,29375313:219781 +k1,17102:27564702,29375313:219781 +k1,17102:30847636,29375313:219781 +k1,17102:32583029,29375313:0 +) +(1,17103:6630773,30240393:25952256,513147,134348 +k1,17102:9576319,30240393:183203 +k1,17102:12249890,30240393:183203 +k1,17102:14024306,30240393:183202 +k1,17102:17400423,30240393:183203 +k1,17102:19570022,30240393:183203 +k1,17102:22622391,30240393:183203 +k1,17102:23909876,30240393:183203 +k1,17102:24840845,30240393:183203 +k1,17102:27859134,30240393:183202 +k1,17102:29233782,30240393:183203 +k1,17102:31299834,30240393:183203 +k1,17102:32583029,30240393:0 +) +(1,17103:6630773,31105473:25952256,513147,126483 +k1,17102:9103971,31105473:156500 +k1,17102:11815720,31105473:156500 +k1,17102:13353064,31105473:156500 +k1,17102:15037207,31105473:156499 +k1,17102:15549567,31105473:156500 +k1,17102:16562623,31105473:156500 +k1,17102:17378415,31105473:156500 +k1,17102:20508939,31105473:156500 +k1,17102:21856884,31105473:156500 +k1,17102:23731738,31105473:156500 +k1,17102:24504276,31105473:156500 +k1,17102:25679860,31105473:156499 +k1,17102:29202289,31105473:156500 +k1,17102:30018081,31105473:156500 +k1,17102:31193666,31105473:156500 +k1,17102:32583029,31105473:0 +) +(1,17103:6630773,31970553:25952256,513147,134348 +g1,17102:11494855,31970553 +g1,17102:14069109,31970553 +g1,17102:15835959,31970553 +g1,17102:17779101,31970553 +g1,17102:20200001,31970553 +g1,17102:21050658,31970553 +g1,17102:22268972,31970553 +g1,17102:25417976,31970553 +k1,17103:32583029,31970553:4902750 +g1,17103:32583029,31970553 +) +(1,17104:6630773,33622065:25952256,485622,126483 +(1,17104:6630773,33622065:0,0,0 +g1,17104:6630773,33622065 +) +k1,17104:32583029,33622065:22798664 +g1,17104:32583029,33622065 +) +(1,17107:6630773,34880361:25952256,505283,134348 +k1,17105:7606755,34880361:146952 +k1,17105:10690375,34880361:146952 +k1,17105:11856412,34880361:146952 +k1,17105:14872530,34880361:146952 +k1,17105:18109505,34880361:146952 +k1,17105:20111781,34880361:146952 +k1,17105:21526198,34880361:146951 +k1,17105:22029010,34880361:146952 +k1,17105:24201680,34880361:146952 +k1,17105:26308158,34880361:146952 +k1,17105:27323462,34880361:146952 +k1,17105:30315332,34880361:146952 +k1,17105:31554769,34880361:146952 +k1,17107:32583029,34880361:0 +) +(1,17107:6630773,35745441:25952256,505283,134348 +k1,17105:8725118,35745441:162999 +(1,17105:8725118,35745441:0,414482,115847 +r1,17116:9083384,35745441:358266,530329,115847 +k1,17105:8725118,35745441:-358266 +) +(1,17105:8725118,35745441:358266,414482,115847 +k1,17105:8725118,35745441:3277 +h1,17105:9080107,35745441:0,411205,112570 +) +k1,17105:9246383,35745441:162999 +k1,17105:10600827,35745441:162999 +k1,17105:14972548,35745441:162999 +(1,17105:14972548,35745441:0,435480,115847 +r1,17116:16034237,35745441:1061689,551327,115847 +k1,17105:14972548,35745441:-1061689 +) +(1,17105:14972548,35745441:1061689,435480,115847 +k1,17105:14972548,35745441:3277 +h1,17105:16030960,35745441:0,411205,112570 +) +k1,17105:16370906,35745441:162999 +k1,17105:17914749,35745441:162999 +k1,17105:20102811,35745441:163000 +k1,17105:22311844,35745441:162999 +k1,17105:24418641,35745441:162999 +k1,17105:25267802,35745441:162999 +k1,17105:26299153,35745441:162999 +k1,17105:28104484,35745441:162999 +k1,17105:30293201,35745441:162999 +k1,17105:32583029,35745441:0 +) +(1,17107:6630773,36610521:25952256,505283,134348 +g1,17105:7591530,36610521 +g1,17105:11635101,36610521 +g1,17105:14021922,36610521 +g1,17105:17174859,36610521 +g1,17105:18025516,36610521 +g1,17105:20037471,36610521 +k1,17107:32583029,36610521:12545558 +g1,17107:32583029,36610521 +) +v1,17109:6630773,37475601:0,393216,0 +(1,17110:6630773,40611866:25952256,3529481,0 +g1,17110:6630773,40611866 +g1,17110:6237557,40611866 +r1,17116:6368629,40611866:131072,3529481,0 +g1,17110:6567858,40611866 +g1,17110:6764466,40611866 +[1,17110:6764466,40611866:25818563,3529481,0 +(1,17110:6764466,37890143:25818563,807758,219026 +(1,17109:6764466,37890143:0,807758,219026 +r1,17116:7908217,37890143:1143751,1026784,219026 +k1,17109:6764466,37890143:-1143751 +) +(1,17109:6764466,37890143:1143751,807758,219026 +) +k1,17109:8120215,37890143:211998 +k1,17109:8447895,37890143:327680 +k1,17109:9856579,37890143:211997 +k1,17109:10483407,37890143:211985 +k1,17109:13721202,37890143:211998 +k1,17109:18556764,37890143:211997 +k1,17109:19420190,37890143:211998 +k1,17109:20651273,37890143:211998 +k1,17109:23625613,37890143:211997 +k1,17109:26706777,37890143:211998 +k1,17109:27578067,37890143:211998 +k1,17109:28809149,37890143:211997 +k1,17109:31923737,37890143:211998 +k1,17109:32583029,37890143:0 +) +(1,17110:6764466,38755223:25818563,513147,134348 +k1,17109:9751160,38755223:267605 +k1,17109:11493980,38755223:267605 +k1,17109:15082951,38755223:267606 +k1,17109:17418872,38755223:267605 +k1,17109:19080428,38755223:267605 +k1,17109:20367118,38755223:267605 +k1,17109:21940856,38755223:267605 +k1,17109:23341579,38755223:267605 +k1,17109:25641456,38755223:267606 +k1,17109:28187092,38755223:267605 +k1,17109:29067459,38755223:267605 +k1,17109:30843703,38755223:267605 +k1,17109:32583029,38755223:0 +) +(1,17110:6764466,39620303:25818563,505283,134348 +k1,17109:10146366,39620303:207336 +k1,17109:13491565,39620303:207335 +(1,17109:13698659,39620303:0,414482,115847 +r1,17116:14760348,39620303:1061689,530329,115847 +k1,17109:13698659,39620303:-1061689 +) +(1,17109:13698659,39620303:1061689,414482,115847 +k1,17109:13698659,39620303:3277 +h1,17109:14757071,39620303:0,411205,112570 +) +k1,17109:15348448,39620303:207336 +k1,17109:18719206,39620303:207335 +k1,17109:21795708,39620303:207336 +(1,17109:22002802,39620303:0,414482,122846 +r1,17116:24119627,39620303:2116825,537328,122846 +k1,17109:22002802,39620303:-2116825 +) +(1,17109:22002802,39620303:2116825,414482,122846 +k1,17109:22002802,39620303:3277 +h1,17109:24116350,39620303:0,411205,112570 +) +k1,17109:24707727,39620303:207336 +k1,17109:27768500,39620303:207335 +(1,17109:27975594,39620303:0,414482,115847 +r1,17116:30092419,39620303:2116825,530329,115847 +k1,17109:27975594,39620303:-2116825 +) +(1,17109:27975594,39620303:2116825,414482,115847 +k1,17109:27975594,39620303:3277 +h1,17109:30089142,39620303:0,411205,112570 +) +k1,17109:30680519,39620303:207336 +k1,17109:32583029,39620303:0 +) +(1,17110:6764466,40485383:25818563,505283,126483 +(1,17109:6971560,40485383:0,452978,115847 +r1,17116:9440097,40485383:2468537,568825,115847 +k1,17109:6971560,40485383:-2468537 +) +(1,17109:6971560,40485383:2468537,452978,115847 +k1,17109:6971560,40485383:3277 +h1,17109:9436820,40485383:0,411205,112570 +) +g1,17109:10020090,40485383 +g1,17109:13627191,40485383 +g1,17109:16402640,40485383 +(1,17109:16609734,40485383:0,452978,115847 +r1,17116:19078271,40485383:2468537,568825,115847 +k1,17109:16609734,40485383:-2468537 +) +(1,17109:16609734,40485383:2468537,452978,115847 +k1,17109:16609734,40485383:3277 +h1,17109:19074994,40485383:0,411205,112570 +) +g1,17109:19658264,40485383 +g1,17109:21048938,40485383 +g1,17109:23564865,40485383 +(1,17109:23771959,40485383:0,452978,115847 +r1,17116:26240496,40485383:2468537,568825,115847 +k1,17109:23771959,40485383:-2468537 +) +(1,17109:23771959,40485383:2468537,452978,115847 +k1,17109:23771959,40485383:3277 +h1,17109:26237219,40485383:0,411205,112570 +) +k1,17110:32583029,40485383:5961769 +g1,17110:32583029,40485383 +) +] +g1,17110:32583029,40611866 +) +h1,17110:6630773,40611866:0,0,0 +(1,17112:6630773,42728684:25952256,564462,147783 +(1,17112:6630773,42728684:2450326,534184,12975 +g1,17112:6630773,42728684 +g1,17112:9081099,42728684 +) +g1,17112:10697348,42728684 +g1,17112:14321293,42728684 +g1,17112:15290899,42728684 +g1,17112:16672857,42728684 +k1,17112:32583029,42728684:12616398 +g1,17112:32583029,42728684 +) +(1,17116:6630773,43986980:25952256,513147,134348 +k1,17115:7307559,43986980:189198 +(1,17115:7307559,43986980:0,452978,122846 +r1,17116:8720960,43986980:1413401,575824,122846 +k1,17115:7307559,43986980:-1413401 +) +(1,17115:7307559,43986980:1413401,452978,122846 +k1,17115:7307559,43986980:3277 +h1,17115:8717683,43986980:0,411205,112570 +) +k1,17115:8910168,43986980:189208 +k1,17115:10376673,43986980:189208 +k1,17115:12525407,43986980:189208 +k1,17115:13246111,43986980:189207 +k1,17115:14206022,43986980:189208 +k1,17115:14810063,43986980:189198 +k1,17115:16958797,43986980:189208 +k1,17115:17807297,43986980:189208 +k1,17115:19779084,43986980:189208 +(1,17115:19779084,43986980:0,452978,115847 +r1,17116:21895909,43986980:2116825,568825,115847 +k1,17115:19779084,43986980:-2116825 +) +(1,17115:19779084,43986980:2116825,452978,115847 +k1,17115:19779084,43986980:3277 +h1,17115:21892632,43986980:0,411205,112570 +) +k1,17115:22085117,43986980:189208 +k1,17115:25636322,43986980:189208 +k1,17115:26844614,43986980:189207 +k1,17115:28972377,43986980:189208 +k1,17115:30353030,43986980:189208 +k1,17115:31931601,43986980:189208 +k1,17115:32583029,43986980:0 +) +(1,17116:6630773,44852060:25952256,513147,126483 +k1,17115:9828362,44852060:173758 +k1,17115:10357980,44852060:173758 +k1,17115:11982704,44852060:173757 +k1,17115:12626355,44852060:173758 +k1,17115:13331610,44852060:173758 +k1,17115:14652903,44852060:173758 +k1,17115:17966491,44852060:173758 +k1,17115:18756286,44852060:173757 +k1,17115:19949129,44852060:173758 +k1,17115:21893014,44852060:173758 +k1,17115:23351278,44852060:173758 +k1,17115:24544121,44852060:173758 +k1,17115:26093479,44852060:173757 +k1,17115:30198086,44852060:173758 +k1,17115:31319495,44852060:173758 +k1,17116:32583029,44852060:0 +) +] +(1,17116:32583029,45706769:0,0,0 +g1,17116:32583029,45706769 +) +) +] +(1,17116:6630773,47279633:25952256,0,0 +h1,17116:6630773,47279633:25952256,0,0 +) +] +(1,17116:4262630,4025873:0,0,0 +[1,17116:-473656,4025873:0,0,0 +(1,17116:-473656,-710413:0,0,0 +(1,17116:-473656,-710413:0,0,0 +g1,17116:-473656,-710413 +) +g1,17116:-473656,-710413 +) +] +) +] +!25129 +}277 +Input:2515:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2516:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2517:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!294 +{278 +[1,17147:4262630,47279633:28320399,43253760,0 +(1,17147:4262630,4025873:0,0,0 +[1,17147:-473656,4025873:0,0,0 +(1,17147:-473656,-710413:0,0,0 +(1,17147:-473656,-644877:0,0,0 +k1,17147:-473656,-644877:-65536 ) +(1,17147:-473656,4736287:0,0,0 +k1,17147:-473656,4736287:5209943 ) +g1,17147:-473656,-710413 ) ] -[1,17065:3078558,4812305:0,0,0 -(1,17065:3078558,49800853:0,16384,2228224 -g1,17065:29030814,49800853 -g1,17065:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,17065:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] +[1,17147:6630773,47279633:25952256,43253760,0 +[1,17147:6630773,4812305:25952256,786432,0 +(1,17147:6630773,4812305:25952256,513147,134348 +(1,17147:6630773,4812305:25952256,513147,134348 +g1,17147:3078558,4812305 +[1,17147:3078558,4812305:0,0,0 +(1,17147:3078558,2439708:0,1703936,0 +k1,17147:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,17147:2537886,2439708:1179648,16384,0 ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,17065:37855564,49800853:1179648,16384,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,17147:3078558,1915420:16384,1179648,0 ) -) -k1,17065:3078556,49800853:-34777008 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] -g1,17065:6630773,4812305 -k1,17065:21350816,4812305:13524666 -g1,17065:21999622,4812305 -g1,17065:25611966,4812305 -g1,17065:28956923,4812305 -g1,17065:29772190,4812305 -) -) -] -[1,17065:6630773,45706769:25952256,40108032,0 -(1,17065:6630773,45706769:25952256,40108032,0 -(1,17065:6630773,45706769:0,0,0 -g1,17065:6630773,45706769 -) -[1,17065:6630773,45706769:25952256,40108032,0 -(1,17009:6630773,14682403:25952256,9083666,0 -k1,17009:10523651,14682403:3892878 -h1,17008:10523651,14682403:0,0,0 -(1,17008:10523651,14682403:18166500,9083666,0 -(1,17008:10523651,14682403:18167376,9083688,0 -(1,17008:10523651,14682403:18167376,9083688,0 -(1,17008:10523651,14682403:0,9083688,0 -(1,17008:10523651,14682403:0,14208860,0 -(1,17008:10523651,14682403:28417720,14208860,0 -) -k1,17008:10523651,14682403:-28417720 -) -) -g1,17008:28691027,14682403 -) -) -) -g1,17009:28690151,14682403 -k1,17009:32583029,14682403:3892878 -) -v1,17016:6630773,16048179:0,393216,0 -(1,17039:6630773,27423155:25952256,11768192,0 -g1,17039:6630773,27423155 -g1,17039:6303093,27423155 -r1,17065:6401397,27423155:98304,11768192,0 -g1,17039:6600626,27423155 -g1,17039:6797234,27423155 -[1,17039:6797234,27423155:25785795,11768192,0 -(1,17017:6797234,16468763:25785795,813800,267386 -(1,17016:6797234,16468763:0,813800,267386 -r1,17065:8134168,16468763:1336934,1081186,267386 -k1,17016:6797234,16468763:-1336934 -) -(1,17016:6797234,16468763:1336934,813800,267386 -) -k1,17016:8388011,16468763:253843 -k1,17016:8715691,16468763:327680 -k1,17016:9597368,16468763:253842 -k1,17016:10870296,16468763:253843 -k1,17016:14115858,16468763:253843 -k1,17016:16398695,16468763:253842 -k1,17016:17671623,16468763:253843 -k1,17016:19533064,16468763:253843 -k1,17016:21290957,16468763:253842 -k1,17016:23894921,16468763:253843 -k1,17016:28639291,16468763:253843 -k1,17016:30778604,16468763:253842 -k1,17016:31563944,16468763:253843 -k1,17016:32583029,16468763:0 -) -(1,17017:6797234,17310251:25785795,513147,134348 -k1,17016:9227221,17310251:164407 -k1,17016:10004389,17310251:164406 -k1,17016:11187881,17310251:164407 -k1,17016:11767096,17310251:164372 -k1,17016:14525417,17310251:164406 -k1,17016:17624526,17310251:164407 -k1,17016:18475094,17310251:164406 -k1,17016:20033452,17310251:164407 -k1,17016:21899829,17310251:164407 -k1,17016:22479044,17310251:164372 -k1,17016:25106948,17310251:164406 -k1,17016:27627374,17310251:164407 -k1,17016:28896062,17310251:164406 -k1,17016:29808235,17310251:164407 -k1,17016:32583029,17310251:0 -) -(1,17017:6797234,18151739:25785795,513147,134348 -g1,17016:7647891,18151739 -g1,17016:8202980,18151739 -g1,17016:10913549,18151739 -g1,17016:11798940,18151739 -g1,17016:13304302,18151739 -g1,17016:15579056,18151739 -g1,17016:16394323,18151739 -g1,17016:18872239,18151739 -h1,17016:20414957,18151739:0,0,0 -g1,17016:20614186,18151739 -g1,17016:21622785,18151739 -g1,17016:23320167,18151739 -h1,17016:24515544,18151739:0,0,0 -k1,17017:32583029,18151739:7893815 -g1,17017:32583029,18151739 -) -v1,17019:6797234,19342205:0,393216,0 -(1,17025:6797234,20989657:25785795,2040668,196608 -g1,17025:6797234,20989657 -g1,17025:6797234,20989657 -g1,17025:6600626,20989657 -(1,17025:6600626,20989657:0,2040668,196608 -r1,17065:32779637,20989657:26179011,2237276,196608 -k1,17025:6600625,20989657:-26179012 -) -(1,17025:6600626,20989657:26179011,2040668,196608 -[1,17025:6797234,20989657:25785795,1844060,0 -(1,17021:6797234,19549823:25785795,404226,107478 -(1,17020:6797234,19549823:0,0,0 -g1,17020:6797234,19549823 -g1,17020:6797234,19549823 -g1,17020:6469554,19549823 -(1,17020:6469554,19549823:0,0,0 -) -g1,17020:6797234,19549823 -) -g1,17021:7429526,19549823 -g1,17021:8377964,19549823 -g1,17021:12171713,19549823 -g1,17021:12804005,19549823 -k1,17021:12804005,19549823:0 -h1,17021:15017025,19549823:0,0,0 -k1,17021:32583029,19549823:17566004 -g1,17021:32583029,19549823 -) -(1,17022:6797234,20216001:25785795,404226,107478 -h1,17022:6797234,20216001:0,0,0 -g1,17022:7113380,20216001 -g1,17022:7429526,20216001 -g1,17022:7745672,20216001 -g1,17022:8061818,20216001 -g1,17022:8377964,20216001 -g1,17022:8694110,20216001 -g1,17022:9010256,20216001 -g1,17022:9326402,20216001 -g1,17022:9642548,20216001 -g1,17022:9958694,20216001 -g1,17022:10274840,20216001 -g1,17022:10590986,20216001 -g1,17022:12487861,20216001 -g1,17022:13120153,20216001 -g1,17022:15017028,20216001 -g1,17022:15649320,20216001 -g1,17022:16281612,20216001 -g1,17022:18178486,20216001 -h1,17022:18494632,20216001:0,0,0 -k1,17022:32583029,20216001:14088397 -g1,17022:32583029,20216001 -) -(1,17023:6797234,20882179:25785795,404226,107478 -h1,17023:6797234,20882179:0,0,0 -g1,17023:7113380,20882179 -g1,17023:7429526,20882179 -g1,17023:7745672,20882179 -g1,17023:8061818,20882179 -g1,17023:8377964,20882179 -g1,17023:8694110,20882179 -g1,17023:9010256,20882179 -k1,17023:9010256,20882179:0 -h1,17023:12804004,20882179:0,0,0 -k1,17023:32583028,20882179:19779024 -g1,17023:32583028,20882179 -) -] -) -g1,17025:32583029,20989657 -g1,17025:6797234,20989657 -g1,17025:6797234,20989657 -g1,17025:32583029,20989657 -g1,17025:32583029,20989657 -) -h1,17025:6797234,21186265:0,0,0 -(1,17029:6797234,22552041:25785795,513147,126483 -h1,17028:6797234,22552041:983040,0,0 -g1,17028:9170948,22552041 -g1,17028:11720298,22552041 -g1,17028:12532289,22552041 -g1,17028:13087378,22552041 -g1,17028:14740196,22552041 -g1,17028:16538503,22552041 -g1,17028:17929177,22552041 -g1,17028:19939821,22552041 -g1,17028:20790478,22552041 -g1,17028:22181152,22552041 -g1,17028:23792682,22552041 -g1,17028:25559532,22552041 -g1,17028:27072103,22552041 -g1,17028:28080702,22552041 -k1,17029:32583029,22552041:2983858 -g1,17029:32583029,22552041 -) -v1,17031:6797234,23742507:0,393216,0 -(1,17035:6797234,24051312:25785795,702021,196608 -g1,17035:6797234,24051312 -g1,17035:6797234,24051312 -g1,17035:6600626,24051312 -(1,17035:6600626,24051312:0,702021,196608 -r1,17065:32779637,24051312:26179011,898629,196608 -k1,17035:6600625,24051312:-26179012 -) -(1,17035:6600626,24051312:26179011,702021,196608 -[1,17035:6797234,24051312:25785795,505413,0 -(1,17033:6797234,23950125:25785795,404226,101187 -(1,17032:6797234,23950125:0,0,0 -g1,17032:6797234,23950125 -g1,17032:6797234,23950125 -g1,17032:6469554,23950125 -(1,17032:6469554,23950125:0,0,0 -) -g1,17032:6797234,23950125 -) -k1,17033:6797234,23950125:0 -h1,17033:9326399,23950125:0,0,0 -k1,17033:32583029,23950125:23256630 -g1,17033:32583029,23950125 -) -] -) -g1,17035:32583029,24051312 -g1,17035:6797234,24051312 -g1,17035:6797234,24051312 -g1,17035:32583029,24051312 -g1,17035:32583029,24051312 -) -h1,17035:6797234,24247920:0,0,0 -(1,17039:6797234,25613696:25785795,505283,134348 -h1,17038:6797234,25613696:983040,0,0 -k1,17038:10080260,25613696:251986 -k1,17038:11523691,25613696:251986 -k1,17038:13477647,25613696:251986 -k1,17038:16598798,25613696:251985 -k1,17038:17955066,25613696:251986 -k1,17038:18954818,25613696:251986 -k1,17038:20492620,25613696:251986 -k1,17038:22710031,25613696:251986 -k1,17038:23613445,25613696:251986 -k1,17038:24221291,25613696:251986 -k1,17038:26284691,25613696:251985 -k1,17038:28562395,25613696:251986 -k1,17038:29500543,25613696:251986 -k1,17038:30771614,25613696:251986 -k1,17038:32583029,25613696:0 -) -(1,17039:6797234,26455184:25785795,513147,134348 -k1,17038:9270945,26455184:183883 -k1,17038:10446388,26455184:183883 -k1,17038:11696542,26455184:183883 -k1,17038:12899510,26455184:183883 -k1,17038:16033168,26455184:183883 -k1,17038:20881904,26455184:183883 -k1,17038:21725080,26455184:183884 -k1,17038:22928048,26455184:183883 -k1,17038:24719529,26455184:183883 -k1,17038:28460051,26455184:183883 -k1,17038:29716103,26455184:183883 -k1,17038:32227169,26455184:183883 -k1,17038:32583029,26455184:0 -) -(1,17039:6797234,27296672:25785795,505283,126483 -g1,17038:8890453,27296672 -g1,17038:10460695,27296672 -g1,17038:12049287,27296672 -g1,17038:14546864,27296672 -g1,17038:15397521,27296672 -g1,17038:17239082,27296672 -k1,17039:32583029,27296672:13531221 -g1,17039:32583029,27296672 -) -] -g1,17039:32583029,27423155 -) -h1,17039:6630773,27423155:0,0,0 -v1,17042:6630773,28788931:0,393216,0 -(1,17045:6630773,36929209:25952256,8533494,0 -g1,17045:6630773,36929209 -g1,17045:6303093,36929209 -r1,17065:6401397,36929209:98304,8533494,0 -g1,17045:6600626,36929209 -g1,17045:6797234,36929209 -[1,17045:6797234,36929209:25785795,8533494,0 -(1,17043:6797234,29221469:25785795,825754,196608 -(1,17042:6797234,29221469:0,825754,196608 -r1,17065:8834093,29221469:2036859,1022362,196608 -k1,17042:6797234,29221469:-2036859 -) -(1,17042:6797234,29221469:2036859,825754,196608 -) -k1,17042:9043603,29221469:209510 -k1,17042:10361532,29221469:327680 -k1,17042:12558095,29221469:209511 -k1,17042:13635957,29221469:209510 -k1,17042:15320683,29221469:209511 -k1,17042:16970019,29221469:209510 -k1,17042:18509910,29221469:209510 -k1,17042:19370849,29221469:209511 -k1,17042:21222691,29221469:209510 -k1,17042:21788061,29221469:209510 -k1,17042:23274869,29221469:209511 -k1,17042:24675824,29221469:209510 -k1,17042:25753687,29221469:209511 -k1,17042:27249013,29221469:209510 -k1,17042:28649968,29221469:209510 -k1,17042:29215339,29221469:209511 -k1,17042:31923737,29221469:209510 -k1,17042:32583029,29221469:0 -) -(1,17043:6797234,30062957:25785795,513147,134348 -k1,17042:8020237,30062957:203918 -k1,17042:11155581,30062957:203919 -k1,17042:12018791,30062957:203918 -k1,17042:12578570,30062957:203919 -k1,17042:14907165,30062957:203918 -(1,17042:14907165,30062957:0,452978,122846 -r1,17065:16320566,30062957:1413401,575824,122846 -k1,17042:14907165,30062957:-1413401 -) -(1,17042:14907165,30062957:1413401,452978,122846 -k1,17042:14907165,30062957:3277 -h1,17042:16317289,30062957:0,411205,112570 -) -k1,17042:16524485,30062957:203919 -k1,17042:18005700,30062957:203918 -k1,17042:20342816,30062957:203919 -k1,17042:21500283,30062957:203918 -k1,17042:23179417,30062957:203919 -k1,17042:24669151,30062957:203918 -k1,17042:26684485,30062957:203919 -k1,17042:27244263,30062957:203918 -k1,17042:29473900,30062957:203919 -k1,17042:31563944,30062957:203918 -k1,17042:32583029,30062957:0 -) -(1,17043:6797234,30904445:25785795,414482,115847 -g1,17042:8734478,30904445 -(1,17042:8734478,30904445:0,414482,115847 -r1,17065:9092744,30904445:358266,530329,115847 -k1,17042:8734478,30904445:-358266 -) -(1,17042:8734478,30904445:358266,414482,115847 -k1,17042:8734478,30904445:3277 -h1,17042:9089467,30904445:0,411205,112570 -) -k1,17043:32583030,30904445:23316616 -g1,17043:32583030,30904445 -) -(1,17045:6797234,31745933:25785795,513147,134348 -h1,17044:6797234,31745933:983040,0,0 -k1,17044:9000727,31745933:266904 -k1,17044:10371913,31745933:266904 -k1,17044:12065536,31745933:266904 -k1,17044:13351526,31745933:266905 -k1,17044:16549855,31745933:266904 -k1,17044:17476051,31745933:266904 -k1,17044:18874762,31745933:266904 -k1,17044:19586587,31745933:266836 -k1,17044:21986688,31745933:266904 -k1,17044:25234170,31745933:266905 -(1,17044:25234170,31745933:0,452978,122846 -r1,17065:26647571,31745933:1413401,575824,122846 -k1,17044:25234170,31745933:-1413401 -) -(1,17044:25234170,31745933:1413401,452978,122846 -k1,17044:25234170,31745933:3277 -h1,17044:26644294,31745933:0,411205,112570 -) -k1,17044:26914475,31745933:266904 -k1,17044:28458676,31745933:266904 -k1,17044:31189078,31745933:266904 -k1,17045:32583029,31745933:0 -) -(1,17045:6797234,32587421:25785795,513147,134348 -(1,17044:6797234,32587421:0,452978,115847 -r1,17065:8562347,32587421:1765113,568825,115847 -k1,17044:6797234,32587421:-1765113 -) -(1,17044:6797234,32587421:1765113,452978,115847 -k1,17044:6797234,32587421:3277 -h1,17044:8559070,32587421:0,411205,112570 -) -k1,17044:9124904,32587421:388887 -k1,17044:12048724,32587421:388887 -k1,17044:15266144,32587421:388887 -k1,17044:18415407,32587421:388887 -k1,17044:19160155,32587421:388888 -(1,17044:19160155,32587421:0,452978,115847 -r1,17065:22332115,32587421:3171960,568825,115847 -k1,17044:19160155,32587421:-3171960 -) -(1,17044:19160155,32587421:3171960,452978,115847 -k1,17044:19160155,32587421:3277 -h1,17044:22328838,32587421:0,411205,112570 -) -k1,17044:22721002,32587421:388887 -k1,17044:24057540,32587421:388887 -(1,17044:24057540,32587421:0,452978,122846 -r1,17065:25470941,32587421:1413401,575824,122846 -k1,17044:24057540,32587421:-1413401 -) -(1,17044:24057540,32587421:1413401,452978,122846 -k1,17044:24057540,32587421:3277 -h1,17044:25467664,32587421:0,411205,112570 -) -k1,17044:25859828,32587421:388887 -k1,17044:27526012,32587421:388887 -k1,17044:30048096,32587421:388887 -k1,17044:32583029,32587421:0 -) -(1,17045:6797234,33428909:25785795,505283,134348 -k1,17044:10540418,33428909:200964 -k1,17044:13501757,33428909:200963 -k1,17044:16487346,33428909:200964 -(1,17044:16487346,33428909:0,452978,115847 -r1,17065:18252459,33428909:1765113,568825,115847 -k1,17044:16487346,33428909:-1765113 -) -(1,17044:16487346,33428909:1765113,452978,115847 -k1,17044:16487346,33428909:3277 -h1,17044:18249182,33428909:0,411205,112570 -) -k1,17044:18627092,33428909:200963 -(1,17044:18627092,33428909:0,452978,115847 -r1,17065:22854188,33428909:4227096,568825,115847 -k1,17044:18627092,33428909:-4227096 -) -(1,17044:18627092,33428909:4227096,452978,115847 -k1,17044:18627092,33428909:3277 -h1,17044:22850911,33428909:0,411205,112570 -) -k1,17044:23228822,33428909:200964 -(1,17044:23228822,33428909:0,452978,115847 -r1,17065:27104206,33428909:3875384,568825,115847 -k1,17044:23228822,33428909:-3875384 -) -(1,17044:23228822,33428909:3875384,452978,115847 -k1,17044:23228822,33428909:3277 -h1,17044:27100929,33428909:0,411205,112570 -) -k1,17044:27478839,33428909:200963 -(1,17044:27478839,33428909:0,452978,115847 -r1,17065:32409359,33428909:4930520,568825,115847 -k1,17044:27478839,33428909:-4930520 -) -(1,17044:27478839,33428909:4930520,452978,115847 -k1,17044:27478839,33428909:3277 -h1,17044:32406082,33428909:0,411205,112570 -) -k1,17044:32583029,33428909:0 -) -(1,17045:6797234,34270397:25785795,505283,134348 -k1,17044:8136033,34270397:147354 -(1,17044:8136033,34270397:0,452978,115847 -r1,17065:12714841,34270397:4578808,568825,115847 -k1,17044:8136033,34270397:-4578808 -) -(1,17044:8136033,34270397:4578808,452978,115847 -k1,17044:8136033,34270397:3277 -h1,17044:12711564,34270397:0,411205,112570 -) -k1,17044:13035865,34270397:147354 -k1,17044:14001109,34270397:147355 -k1,17044:15318936,34270397:147354 -k1,17044:17182023,34270397:147354 -k1,17044:20103516,34270397:147354 -k1,17044:22809396,34270397:147354 -k1,17044:23975835,34270397:147354 -k1,17044:26714484,34270397:147355 -k1,17044:27954323,34270397:147354 -k1,17044:29798404,34270397:147354 -k1,17044:32583029,34270397:0 -) -(1,17045:6797234,35111885:25785795,513147,134348 -k1,17044:7700119,35111885:251457 -k1,17044:10320047,35111885:251457 -(1,17044:10320047,35111885:0,452978,122846 -r1,17065:11733448,35111885:1413401,575824,122846 -k1,17044:10320047,35111885:-1413401 -) -(1,17044:10320047,35111885:1413401,452978,122846 -k1,17044:10320047,35111885:3277 -h1,17044:11730171,35111885:0,411205,112570 -) -k1,17044:11984906,35111885:251458 -k1,17044:13513660,35111885:251457 -k1,17044:16054945,35111885:251457 -k1,17044:17700354,35111885:251458 -k1,17044:20714154,35111885:251457 -k1,17044:23781693,35111885:251457 -k1,17044:24692442,35111885:251457 -k1,17044:26831991,35111885:251457 -k1,17044:27766334,35111885:251458 -k1,17044:31329325,35111885:251457 -k1,17044:32583029,35111885:0 -) -(1,17045:6797234,35953373:25785795,513147,126483 -k1,17044:8170009,35953373:240313 -k1,17044:9158087,35953373:240312 -k1,17044:10707154,35953373:240313 -k1,17044:11598894,35953373:240312 -k1,17044:12864190,35953373:240313 -k1,17044:14434883,35953373:240312 -k1,17044:15694281,35953373:240313 -k1,17044:17211890,35953373:240312 -k1,17044:21379776,35953373:240313 -k1,17044:22611648,35953373:240312 -k1,17044:24890131,35953373:240313 -k1,17044:25816605,35953373:240312 -k1,17044:29010626,35953373:240313 -k1,17044:29910231,35953373:240313 -k1,17044:31169628,35953373:240312 -(1,17044:31169628,35953373:0,452978,122846 -r1,17065:32583029,35953373:1413401,575824,122846 -k1,17044:31169628,35953373:-1413401 -) -(1,17044:31169628,35953373:1413401,452978,122846 -k1,17044:31169628,35953373:3277 -h1,17044:32579752,35953373:0,411205,112570 -) -k1,17044:32583029,35953373:0 -) -(1,17045:6797234,36794861:25785795,505283,134348 -g1,17044:8273760,36794861 -k1,17045:32583030,36794861:21845772 -g1,17045:32583030,36794861 -) -] -g1,17045:32583029,36929209 -) -h1,17045:6630773,36929209:0,0,0 -(1,17048:6630773,38294985:25952256,505283,134348 -h1,17047:6630773,38294985:983040,0,0 -k1,17047:10794712,38294985:218016 -k1,17047:14077193,38294985:218017 -k1,17047:15286769,38294985:218016 -k1,17047:17791992,38294985:218016 -k1,17047:20595403,38294985:218016 -k1,17047:21464848,38294985:218017 -k1,17047:24524505,38294985:218016 -k1,17047:25358559,38294985:218016 -k1,17047:26595660,38294985:218016 -k1,17047:28376711,38294985:218017 -k1,17047:29974915,38294985:218016 -k1,17047:31297213,38294985:218016 -k1,17047:32583029,38294985:0 -) -(1,17048:6630773,39136473:25952256,513147,126483 -k1,17047:7585341,39136473:206802 -k1,17047:8726686,39136473:206802 -k1,17047:9584916,39136473:206802 -k1,17047:12549473,39136473:206802 -k1,17047:14940590,39136473:206802 -k1,17047:15833554,39136473:206802 -k1,17047:17792133,39136473:206802 -k1,17047:18658227,39136473:206802 -k1,17047:20504084,39136473:206802 -k1,17047:21702446,39136473:206802 -k1,17047:22670776,39136473:206802 -k1,17047:25316828,39136473:206802 -k1,17047:27298345,39136473:206802 -k1,17047:30346788,39136473:206802 -k1,17047:31169628,39136473:206802 -(1,17047:31169628,39136473:0,452978,115847 -r1,17065:32583029,39136473:1413401,568825,115847 -k1,17047:31169628,39136473:-1413401 -) -(1,17047:31169628,39136473:1413401,452978,115847 -k1,17047:31169628,39136473:3277 -h1,17047:32579752,39136473:0,411205,112570 -) -k1,17047:32583029,39136473:0 -) -(1,17048:6630773,39977961:25952256,513147,134348 -k1,17047:7906994,39977961:171939 -k1,17047:8826699,39977961:171939 -k1,17047:10465333,39977961:171938 -k1,17047:13222667,39977961:171939 -k1,17047:15129999,39977961:171939 -(1,17047:15129999,39977961:0,452978,115847 -r1,17065:16895112,39977961:1765113,568825,115847 -k1,17047:15129999,39977961:-1765113 -) -(1,17047:15129999,39977961:1765113,452978,115847 -k1,17047:15129999,39977961:3277 -h1,17047:16891835,39977961:0,411205,112570 -) -k1,17047:17067051,39977961:171939 -k1,17047:17925151,39977961:171938 -k1,17047:21470228,39977961:171939 -k1,17047:24411718,39977961:171939 -k1,17047:25269819,39977961:171939 -k1,17047:27517282,39977961:171938 -k1,17047:29718216,39977961:171939 -k1,17047:30573040,39977961:171939 -k1,17047:32583029,39977961:0 -) -(1,17048:6630773,40819449:25952256,513147,126483 -k1,17047:9992165,40819449:168478 -k1,17047:12222405,40819449:168477 -k1,17047:15148638,40819449:168478 -k1,17047:17327761,40819449:168478 -k1,17047:18443889,40819449:168477 -k1,17047:21786931,40819449:168478 -k1,17047:23059691,40819449:168478 -k1,17047:23975935,40819449:168478 -k1,17047:25252626,40819449:168477 -k1,17047:26107266,40819449:168478 -k1,17047:28351269,40819449:168478 -k1,17047:30091299,40819449:168477 -k1,17047:31635378,40819449:168478 -k1,17047:32583029,40819449:0 -) -(1,17048:6630773,41660937:25952256,505283,134348 -g1,17047:10022916,41660937 -g1,17047:12110237,41660937 -g1,17047:13500911,41660937 -g1,17047:16114486,41660937 -g1,17047:18265377,41660937 -g1,17047:19907053,41660937 -g1,17047:21841675,41660937 -(1,17047:21841675,41660937:0,452978,115847 -r1,17065:23606788,41660937:1765113,568825,115847 -k1,17047:21841675,41660937:-1765113 -) -(1,17047:21841675,41660937:1765113,452978,115847 -k1,17047:21841675,41660937:3277 -h1,17047:23603511,41660937:0,411205,112570 -) -k1,17048:32583029,41660937:8802571 -g1,17048:32583029,41660937 -) -v1,17050:6630773,42851403:0,393216,0 -(1,17056:6630773,44498855:25952256,2040668,196608 -g1,17056:6630773,44498855 -g1,17056:6630773,44498855 -g1,17056:6434165,44498855 -(1,17056:6434165,44498855:0,2040668,196608 -r1,17065:32779637,44498855:26345472,2237276,196608 -k1,17056:6434165,44498855:-26345472 -) -(1,17056:6434165,44498855:26345472,2040668,196608 -[1,17056:6630773,44498855:25952256,1844060,0 -(1,17052:6630773,43059021:25952256,404226,107478 -(1,17051:6630773,43059021:0,0,0 -g1,17051:6630773,43059021 -g1,17051:6630773,43059021 -g1,17051:6303093,43059021 -(1,17051:6303093,43059021:0,0,0 -) -g1,17051:6630773,43059021 -) -k1,17052:6630773,43059021:0 -g1,17052:10424522,43059021 -g1,17052:11056814,43059021 -k1,17052:11056814,43059021:0 -h1,17052:13269834,43059021:0,0,0 -k1,17052:32583030,43059021:19313196 -g1,17052:32583030,43059021 -) -(1,17053:6630773,43725199:25952256,404226,107478 -h1,17053:6630773,43725199:0,0,0 -g1,17053:6946919,43725199 -g1,17053:7263065,43725199 -g1,17053:7579211,43725199 -g1,17053:7895357,43725199 -g1,17053:8211503,43725199 -g1,17053:8527649,43725199 -g1,17053:8843795,43725199 -g1,17053:10740670,43725199 -g1,17053:11372962,43725199 -g1,17053:13269837,43725199 -g1,17053:13902129,43725199 -g1,17053:14534421,43725199 -g1,17053:16431295,43725199 -h1,17053:16747441,43725199:0,0,0 -k1,17053:32583029,43725199:15835588 -g1,17053:32583029,43725199 -) -(1,17054:6630773,44391377:25952256,404226,107478 -h1,17054:6630773,44391377:0,0,0 -g1,17054:6946919,44391377 -g1,17054:7263065,44391377 -g1,17054:12637542,44391377 -g1,17054:13269834,44391377 -g1,17054:15482854,44391377 -g1,17054:17379728,44391377 -g1,17054:18012020,44391377 -h1,17054:20857331,44391377:0,0,0 -k1,17054:32583029,44391377:11725698 -g1,17054:32583029,44391377 -) -] -) -g1,17056:32583029,44498855 -g1,17056:6630773,44498855 -g1,17056:6630773,44498855 -g1,17056:32583029,44498855 -g1,17056:32583029,44498855 -) -h1,17056:6630773,44695463:0,0,0 -] -(1,17065:32583029,45706769:0,0,0 -g1,17065:32583029,45706769 -) -) -] -(1,17065:6630773,47279633:25952256,0,0 -h1,17065:6630773,47279633:25952256,0,0 -) -] -(1,17065:4262630,4025873:0,0,0 -[1,17065:-473656,4025873:0,0,0 -(1,17065:-473656,-710413:0,0,0 -(1,17065:-473656,-710413:0,0,0 -g1,17065:-473656,-710413 -) -g1,17065:-473656,-710413 -) -] -) -] -!24224 -}295 -Input:2511:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2512:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2513:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2514:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2515:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2516:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2517:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2518:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2519:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2520:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!952 -{296 -[1,17095:4262630,47279633:28320399,43253760,0 -(1,17095:4262630,4025873:0,0,0 -[1,17095:-473656,4025873:0,0,0 -(1,17095:-473656,-710413:0,0,0 -(1,17095:-473656,-644877:0,0,0 -k1,17095:-473656,-644877:-65536 ) -(1,17095:-473656,4736287:0,0,0 -k1,17095:-473656,4736287:5209943 ) -g1,17095:-473656,-710413 ) ] +[1,17147:3078558,4812305:0,0,0 +(1,17147:3078558,2439708:0,1703936,0 +g1,17147:29030814,2439708 +g1,17147:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,17147:36151628,1915420:16384,1179648,0 ) -[1,17095:6630773,47279633:25952256,43253760,0 -[1,17095:6630773,4812305:25952256,786432,0 -(1,17095:6630773,4812305:25952256,513147,134348 -(1,17095:6630773,4812305:25952256,513147,134348 -g1,17095:3078558,4812305 -[1,17095:3078558,4812305:0,0,0 -(1,17095:3078558,2439708:0,1703936,0 -k1,17095:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,17095:2537886,2439708:1179648,16384,0 -) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,17095:3078558,1915420:16384,1179648,0 -) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,17147:37855564,2439708:1179648,16384,0 +) ) +k1,17147:3078556,2439708:-34777008 ) ] -[1,17095:3078558,4812305:0,0,0 -(1,17095:3078558,2439708:0,1703936,0 -g1,17095:29030814,2439708 -g1,17095:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,17095:36151628,1915420:16384,1179648,0 +[1,17147:3078558,4812305:0,0,0 +(1,17147:3078558,49800853:0,16384,2228224 +k1,17147:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,17147:2537886,49800853:1179648,16384,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,17147:3078558,51504789:16384,1179648,0 +) +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,17095:37855564,2439708:1179648,16384,0 ) ) -k1,17095:3078556,2439708:-34777008 +] +[1,17147:3078558,4812305:0,0,0 +(1,17147:3078558,49800853:0,16384,2228224 +g1,17147:29030814,49800853 +g1,17147:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,17147:36151628,51504789:16384,1179648,0 +) +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 +) +] +) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,17147:37855564,49800853:1179648,16384,0 +) +) +k1,17147:3078556,49800853:-34777008 +) +] +g1,17147:6630773,4812305 +g1,17147:6630773,4812305 +g1,17147:8017514,4812305 +g1,17147:11261546,4812305 +g1,17147:12076813,4812305 +g1,17147:14985956,4812305 +k1,17147:31387652,4812305:16401696 +) +) +] +[1,17147:6630773,45706769:25952256,40108032,0 +(1,17147:6630773,45706769:25952256,40108032,0 +(1,17147:6630773,45706769:0,0,0 +g1,17147:6630773,45706769 +) +[1,17147:6630773,45706769:25952256,40108032,0 +(1,17116:6630773,6254097:25952256,513147,134348 +k1,17115:8883518,6254097:206056 +k1,17115:9547672,6254097:206057 +k1,17115:11021194,6254097:206056 +k1,17115:11583110,6254097:206056 +k1,17115:14738941,6254097:206056 +k1,17115:19609851,6254097:206057 +k1,17115:20347404,6254097:206056 +k1,17115:21572545,6254097:206056 +k1,17115:25235625,6254097:206056 +k1,17115:26100974,6254097:206057 +k1,17115:28887182,6254097:206056 +k1,17115:32095441,6254097:206056 +k1,17116:32583029,6254097:0 +) +(1,17116:6630773,7119177:25952256,513147,134348 +(1,17115:6630773,7119177:0,452978,122846 +r1,17147:8044174,7119177:1413401,575824,122846 +k1,17115:6630773,7119177:-1413401 +) +(1,17115:6630773,7119177:1413401,452978,122846 +k1,17115:6630773,7119177:3277 +h1,17115:8040897,7119177:0,411205,112570 +) +k1,17115:8202535,7119177:158361 +k1,17115:10320423,7119177:158362 +k1,17115:13180833,7119177:158361 +k1,17115:14358279,7119177:158361 +k1,17115:15906004,7119177:158362 +k1,17115:16680403,7119177:158361 +k1,17115:17995474,7119177:158361 +k1,17115:18836720,7119177:158361 +k1,17115:20645279,7119177:158362 +k1,17115:22193003,7119177:158361 +k1,17115:24557961,7119177:158361 +k1,17115:25907768,7119177:158362 +k1,17115:29903917,7119177:158361 +k1,17115:32583029,7119177:0 +) +(1,17116:6630773,7984257:25952256,513147,134348 +k1,17115:7588809,7984257:271874 +k1,17115:10886479,7984257:271873 +k1,17115:12349798,7984257:271874 +k1,17115:16406375,7984257:271873 +k1,17115:17750418,7984257:271874 +k1,17115:19088563,7984257:271874 +k1,17115:20325781,7984257:271873 +k1,17115:20953515,7984257:271874 +k1,17115:24322620,7984257:271874 +k1,17115:25253785,7984257:271873 +k1,17115:26544744,7984257:271874 +k1,17115:28093914,7984257:271873 +k1,17115:29633254,7984257:271874 +k1,17115:32583029,7984257:0 +) +(1,17116:6630773,8849337:25952256,513147,134348 +k1,17115:9269312,8849337:175041 +k1,17115:10909737,8849337:175040 +k1,17115:12474141,8849337:175041 +k1,17115:17816696,8849337:175041 +k1,17115:19183181,8849337:175040 +k1,17115:22455453,8849337:175041 +k1,17115:23289785,8849337:175040 +k1,17115:24483911,8849337:175041 +k1,17115:25936249,8849337:175041 +k1,17115:27378755,8849337:175040 +k1,17115:30130016,8849337:175041 +k1,17116:32583029,8849337:0 +) +(1,17116:6630773,9714417:25952256,513147,134348 +k1,17115:8435260,9714417:206719 +k1,17115:11528185,9714417:206719 +k1,17115:12421066,9714417:206719 +k1,17115:15577561,9714417:206720 +k1,17115:18074108,9714417:206719 +k1,17115:18963712,9714417:206719 +k1,17115:21148964,9714417:206719 +k1,17115:22708346,9714417:206719 +k1,17115:24577713,9714417:206719 +k1,17115:25397194,9714417:206719 +k1,17115:26622999,9714417:206720 +k1,17115:28255126,9714417:206719 +k1,17115:29121137,9714417:206719 +k1,17115:31900144,9714417:206719 +k1,17115:32583029,9714417:0 +) +(1,17116:6630773,10579497:25952256,513147,134348 +g1,17115:9893155,10579497 +g1,17115:11111469,10579497 +g1,17115:12761665,10579497 +g1,17115:14203457,10579497 +g1,17115:16100724,10579497 +g1,17115:18333535,10579497 +g1,17115:18888624,10579497 +g1,17115:21342947,10579497 +g1,17115:22193604,10579497 +g1,17115:22748693,10579497 +k1,17116:32583029,10579497:8677626 +g1,17116:32583029,10579497 +) +(1,17118:6630773,11444577:25952256,513147,134348 +h1,17117:6630773,11444577:983040,0,0 +k1,17117:8723774,11444577:280931 +k1,17117:12669478,11444577:280931 +k1,17117:15306428,11444577:280931 +k1,17117:16455711,11444577:280931 +k1,17117:18917025,11444577:280931 +k1,17117:20504090,11444577:280932 +k1,17117:22465364,11444577:280931 +k1,17117:23362333,11444577:280931 +k1,17117:25486136,11444577:280931 +k1,17117:26426359,11444577:280931 +k1,17117:27726375,11444577:280931 +k1,17117:30957081,11444577:280931 +k1,17118:32583029,11444577:0 +) +(1,17118:6630773,12309657:25952256,513147,134348 +k1,17117:9494393,12309657:234316 +k1,17117:10388002,12309657:234317 +k1,17117:11641403,12309657:234316 +k1,17117:13326687,12309657:234317 +k1,17117:15215787,12309657:234316 +k1,17117:15981600,12309657:234316 +k1,17117:16571777,12309657:234317 +k1,17117:20596040,12309657:234316 +k1,17117:22388147,12309657:234316 +k1,17117:24083262,12309657:234317 +k1,17117:26203049,12309657:234316 +k1,17117:28325458,12309657:234317 +k1,17117:31821501,12309657:234316 +k1,17117:32583029,12309657:0 +) +(1,17118:6630773,13174737:25952256,513147,134348 +k1,17117:9633699,13174737:240583 +k1,17117:12824056,13174737:240582 +k1,17117:15354467,13174737:240583 +k1,17117:16586609,13174737:240582 +k1,17117:18183787,13174737:240583 +k1,17117:19899585,13174737:240583 +k1,17117:21697958,13174737:240582 +k1,17117:24640590,13174737:240583 +k1,17117:27102843,13174737:240582 +k1,17117:30293201,13174737:240583 +k1,17117:32583029,13174737:0 +) +(1,17118:6630773,14039817:25952256,513147,134348 +k1,17117:10326863,14039817:218750 +k1,17117:12113233,14039817:218749 +k1,17117:13351068,14039817:218750 +k1,17117:15223291,14039817:218750 +k1,17117:17005074,14039817:218749 +k1,17117:18420511,14039817:218750 +k1,17117:19787452,14039817:218750 +k1,17117:21563992,14039817:218749 +k1,17117:23748167,14039817:218750 +k1,17117:24498413,14039817:218749 +k1,17117:25736248,14039817:218750 +k1,17117:28628867,14039817:218750 +k1,17117:30039061,14039817:218749 +k1,17117:31276896,14039817:218750 +k1,17117:32583029,14039817:0 +) +(1,17118:6630773,14904897:25952256,505283,134348 +k1,17117:8013255,14904897:225772 +k1,17117:10204451,14904897:225771 +k1,17117:11449308,14904897:225772 +k1,17117:15206814,14904897:225771 +k1,17117:18487874,14904897:225772 +k1,17117:21003474,14904897:225772 +k1,17117:21845283,14904897:225771 +k1,17117:23963079,14904897:225772 +k1,17117:26076942,14904897:225771 +k1,17117:28752450,14904897:225772 +k1,17117:30722134,14904897:225771 +k1,17117:31563944,14904897:225772 +k1,17117:32583029,14904897:0 +) +(1,17118:6630773,15769977:25952256,513147,134348 +k1,17117:8754391,15769977:235526 +k1,17117:10858349,15769977:235527 +k1,17117:12732930,15769977:235526 +k1,17117:13434417,15769977:235526 +k1,17117:15178583,15769977:235527 +k1,17117:18300970,15769977:235526 +k1,17117:21079293,15769977:235526 +k1,17117:24277702,15769977:235526 +k1,17117:26800436,15769977:235527 +k1,17117:28055047,15769977:235526 +k1,17117:30178665,15769977:235526 +k1,17117:31030230,15769977:235527 +k1,17117:31621616,15769977:235526 +k1,17118:32583029,15769977:0 +) +(1,17118:6630773,16635057:25952256,505283,134348 +k1,17117:8112542,16635057:204472 +k1,17117:10053718,16635057:204472 +k1,17117:11277276,16635057:204473 +k1,17117:13135221,16635057:204472 +k1,17117:14729056,16635057:204472 +k1,17117:16124973,16635057:204472 +k1,17117:19467310,16635057:204473 +k1,17117:20323210,16635057:204472 +k1,17117:23875916,16635057:204472 +k1,17117:25283629,16635057:204472 +k1,17117:26019598,16635057:204472 +k1,17117:27290342,16635057:204473 +k1,17117:31010165,16635057:204472 +k1,17117:32113136,16635057:204472 +k1,17117:32583029,16635057:0 +) +(1,17118:6630773,17500137:25952256,513147,134348 +k1,17117:7366087,17500137:203817 +k1,17117:10199864,17500137:203817 +k1,17117:11055109,17500137:203817 +k1,17117:12901258,17500137:203817 +k1,17117:13460935,17500137:203817 +k1,17117:15690470,17500137:203817 +k1,17117:17813181,17500137:203817 +k1,17117:19036083,17500137:203817 +k1,17117:21127992,17500137:203817 +k1,17117:22323369,17500137:203817 +k1,17117:23978153,17500137:203817 +k1,17117:28188841,17500137:203817 +k1,17117:29051950,17500137:203817 +k1,17117:30707389,17500137:203817 +k1,17117:32583029,17500137:0 +) +(1,17118:6630773,18365217:25952256,505283,134348 +g1,17117:9661157,18365217 +g1,17117:10879471,18365217 +g1,17117:12981210,18365217 +g1,17117:14371884,18365217 +g1,17117:17095560,18365217 +g1,17117:18642209,18365217 +g1,17117:19832998,18365217 +g1,17117:22161492,18365217 +g1,17117:24518166,18365217 +g1,17117:26876806,18365217 +k1,17118:32583029,18365217:3893497 +g1,17118:32583029,18365217 +) +(1,17122:6630773,19230297:25952256,513147,134348 +h1,17121:6630773,19230297:983040,0,0 +k1,17121:8334728,19230297:233327 +k1,17121:10809420,19230297:233361 +k1,17121:14693792,19230297:233361 +k1,17121:15736523,19230297:233361 +k1,17121:18325904,19230297:233362 +k1,17121:19090762,19230297:233361 +k1,17121:20608629,19230297:233361 +k1,17121:21501282,19230297:233361 +k1,17121:22753728,19230297:233361 +k1,17121:25432238,19230297:233362 +k1,17121:26324891,19230297:233361 +k1,17121:29941220,19230297:233361 +k1,17121:31193666,19230297:233361 +k1,17121:32583029,19230297:0 +) +(1,17122:6630773,20095377:25952256,505283,134348 +k1,17121:8111184,20095377:212945 +k1,17121:8679989,20095377:212945 +k1,17121:11842709,20095377:212945 +k1,17121:16720507,20095377:212945 +k1,17121:18217958,20095377:212945 +k1,17121:19535185,20095377:212945 +k1,17121:20495897,20095377:212946 +k1,17121:23058963,20095377:212945 +k1,17121:24081278,20095377:212945 +k1,17121:26127265,20095377:212945 +k1,17121:27023095,20095377:212945 +k1,17121:29430841,20095377:212945 +k1,17121:30453156,20095377:212945 +k1,17121:31021961,20095377:212945 +k1,17122:32583029,20095377:0 +) +(1,17122:6630773,20960457:25952256,513147,126483 +k1,17121:8703021,20960457:344064 +k1,17121:11282518,20960457:344064 +k1,17121:12823269,20960457:344064 +k1,17121:18334847,20960457:344064 +k1,17121:21050659,20960457:344064 +k1,17121:22046151,20960457:344064 +k1,17121:23409299,20960457:344063 +k1,17121:25142726,20960457:344064 +k1,17121:26138218,20960457:344064 +k1,17121:28839612,20960457:344064 +k1,17121:30386917,20960457:344064 +k1,17121:31835263,20960457:344064 +k1,17121:32583029,20960457:0 +) +(1,17122:6630773,21825537:25952256,513147,134348 +k1,17121:9360113,21825537:202272 +k1,17121:10248547,21825537:202272 +k1,17121:10806680,21825537:202273 +k1,17121:13716244,21825537:202272 +k1,17121:15307879,21825537:202272 +k1,17121:16860193,21825537:202272 +k1,17121:19507614,21825537:202273 +k1,17121:22079013,21825537:202272 +k1,17121:22897323,21825537:202272 +k1,17121:25268181,21825537:202272 +k1,17121:26424002,21825537:202272 +k1,17121:29357160,21825537:202273 +k1,17121:30865565,21825537:202272 +k1,17121:31423697,21825537:202272 +k1,17122:32583029,21825537:0 +) +(1,17122:6630773,22690617:25952256,513147,134348 +k1,17121:7733908,22690617:176456 +k1,17121:12410720,22690617:176455 +k1,17121:14144967,22690617:176456 +k1,17121:14937461,22690617:176456 +k1,17121:15469777,22690617:176456 +k1,17121:17097199,22690617:176455 +k1,17121:19470422,22690617:176456 +k1,17121:20850119,22690617:176456 +k1,17121:23471723,22690617:176456 +k1,17121:24667263,22690617:176455 +k1,17121:28650705,22690617:176456 +k1,17121:31966991,22690617:176456 +k1,17121:32583029,22690617:0 +) +(1,17122:6630773,23555697:25952256,513147,134348 +k1,17121:7839055,23555697:189197 +k1,17121:9417616,23555697:189198 +k1,17121:12367845,23555697:189197 +k1,17121:13318571,23555697:189198 +k1,17121:14526853,23555697:189197 +k1,17121:16096895,23555697:189198 +k1,17121:16817589,23555697:189197 +k1,17121:20988754,23555697:189198 +k1,17121:22445417,23555697:189197 +k1,17121:26472403,23555697:189198 +k1,17121:27313028,23555697:189197 +k1,17121:29088197,23555697:189198 +k1,17121:29633254,23555697:189197 +k1,17121:32583029,23555697:0 +) +(1,17122:6630773,24420777:25952256,513147,134348 +k1,17121:11635340,24420777:166044 +k1,17121:12429220,24420777:166045 +k1,17121:15423797,24420777:166044 +k1,17121:18539617,24420777:166045 +k1,17121:21311372,24420777:166044 +k1,17121:22136709,24420777:166045 +k1,17121:22658613,24420777:166044 +k1,17121:24101955,24420777:166045 +k1,17121:25259559,24420777:166044 +k1,17121:28515627,24420777:166045 +k1,17121:29367833,24420777:166044 +k1,17121:32583029,24420777:0 +) +(1,17122:6630773,25285857:25952256,513147,126483 +k1,17121:8032891,25285857:210673 +k1,17121:9262649,25285857:210673 +k1,17121:14549740,25285857:210672 +k1,17121:17395616,25285857:210673 +k1,17121:19616934,25285857:210673 +k1,17121:20443645,25285857:210673 +k1,17121:21673402,25285857:210672 +k1,17121:23273438,25285857:210673 +k1,17121:24675556,25285857:210673 +k1,17121:26896874,25285857:210673 +k1,17121:27766838,25285857:210672 +k1,17121:28996596,25285857:210673 +k1,17121:32051532,25285857:210673 +k1,17121:32583029,25285857:0 +) +(1,17122:6630773,26150937:25952256,505283,126483 +k1,17121:10082352,26150937:190508 +k1,17121:11034388,26150937:190508 +k1,17121:13221778,26150937:190508 +k1,17121:14608974,26150937:190509 +k1,17121:16810127,26150937:190508 +k1,17121:17616673,26150937:190508 +k1,17121:18826266,26150937:190508 +k1,17121:20406137,26150937:190508 +k1,17121:21588205,26150937:190508 +k1,17121:22844985,26150937:190509 +k1,17121:26550844,26150937:190508 +k1,17121:29155698,26150937:190508 +k1,17121:31931601,26150937:190508 +k1,17121:32583029,26150937:0 +) +(1,17122:6630773,27016017:25952256,505283,134348 +k1,17121:10205565,27016017:226558 +k1,17121:11812311,27016017:226558 +k1,17121:13375803,27016017:226558 +k1,17121:14350127,27016017:226558 +k1,17121:18565206,27016017:226558 +k1,17121:19553292,27016017:226558 +k1,17121:20135710,27016017:226558 +k1,17121:22907031,27016017:226558 +k1,17121:26674500,27016017:226558 +k1,17121:29633254,27016017:226558 +k1,17121:32583029,27016017:0 +) +(1,17122:6630773,27881097:25952256,513147,134348 +g1,17121:9119830,27881097 +g1,17121:10886680,27881097 +g1,17121:12104994,27881097 +g1,17121:14889618,27881097 +k1,17122:32583029,27881097:16130377 +g1,17122:32583029,27881097 +) +(1,17142:6630773,30494566:25952256,1718903,0 +h1,17125:6630773,30494566:0,0,0 +(1,17141:6630773,30494566:25952226,1718903,0 +(1,17141:6630773,30494566:0,1718903,0 +(1,17141:6630773,30494566:0,2673868,0 +(1,17141:6630773,30494566:40370404,2673868,0 +(1,17141:6630773,30494566:40370404,2673868,0 +(1,17141:6630773,30494566:40370404,2673868,0 +g1,17141:8841497,30494566 +(1,17141:8841497,29157632:0,0,0 +(1,17141:8841497,29157632:0,0,0 +g1,17141:8841497,29157632 +(1,17141:8841497,29157632:0,0,0 +(1,17141:8841497,29157632:0,0,0 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +(1,17141:8841497,29157632:0,0,0 +(1,17141:8841497,29157632:3932160,505283,872943 +(1,17141:8841497,29157632:3932160,505283,872943 +[1,17141:8841497,29157632:3932160,505283,872943 +(1,17141:8841497,29157632:3932160,505283,126483 +k1,17141:10044410,29157632:1202913 +h1,17141:10044410,29157632:0,0,0 +h1,17141:10044410,29157632:0,0,0 +k1,17141:11570744,29157632:0 +k1,17141:12773657,29157632:1202913 +) +(1,17141:8841497,30022712:3932160,505283,7863 +k1,17141:10116828,30022712:1275331 +h1,17141:10116828,30022712:0,0,0 +k1,17141:11498327,30022712:0 +k1,17141:12773657,30022712:1275330 +) +] +) +g1,17141:12773657,29157632 +) +) +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +) +) +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +(1,17141:8841497,29157632:0,0,0 +(1,17141:8841497,29157632:0,0,0 +g1,17141:8841497,29157632 +(1,17141:8841497,29157632:0,0,0 +(1,17141:8841497,29157632:1966080,421396,7863 +(1,17141:8841497,29157632:1966080,421396,7863 +[1,17141:8841497,29157632:1966080,421396,7863 +(1,17141:8841497,29157632:1966080,421396,7863 +k1,17141:9032207,29157632:190710 +h1,17141:9032207,29157632:0,0,0 +h1,17141:9032207,29157632:0,0,0 +k1,17141:10616868,29157632:0 +k1,17141:10807577,29157632:190709 +) +] +) +g1,17141:10807577,29157632 +) +) +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +) +) +g1,17141:8841497,29157632 +(1,17141:8841497,29157632:0,0,0 +(1,17141:8841497,29157632:0,0,0 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +(1,17141:8841497,29157632:0,0,0 +(1,17141:8841497,29157632:3932160,473825,7863 +(1,17141:8841497,29157632:3932160,473825,7863 +[1,17141:8841497,29157632:3932160,473825,7863 +(1,17141:8841497,29157632:3932160,473825,7863 +k1,17141:9568291,29157632:726794 +h1,17141:9568291,29157632:0,0,0 +h1,17141:9568291,29157632:0,0,0 +k1,17141:12046863,29157632:0 +k1,17141:12773657,29157632:726794 +) +] +) +g1,17141:12773657,29157632 +) +) +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +) +) +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +(1,17141:8841497,29157632:0,0,0 +(1,17141:8841497,29157632:0,0,0 +g1,17141:8841497,29157632 +(1,17141:8841497,29157632:0,0,0 +(1,17141:8841497,29157632:1966080,513147,872943 +(1,17141:8841497,29157632:1966080,513147,872943 +[1,17141:8841497,29157632:1966080,513147,872943 +(1,17141:8841497,29157632:1966080,513147,7863 +k1,17141:9022704,29157632:181207 +h1,17141:9022704,29157632:0,0,0 +h1,17141:9022704,29157632:0,0,0 +k1,17141:10626370,29157632:0 +k1,17141:10807577,29157632:181207 +) +(1,17141:8841497,30022712:1966080,421396,7863 +k1,17141:9180974,30022712:339477 +h1,17141:9180974,30022712:0,0,0 +k1,17141:10468101,30022712:0 +k1,17141:10807577,30022712:339476 ) ] -[1,17095:3078558,4812305:0,0,0 -(1,17095:3078558,49800853:0,16384,2228224 -k1,17095:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,17095:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,17095:3078558,51504789:16384,1179648,0 +g1,17141:10807577,29157632 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 ) -] +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 ) ) +g1,17141:8841497,29157632 +(1,17141:8841497,29157632:0,0,0 +(1,17141:8841497,29157632:0,0,0 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +(1,17141:8841497,29157632:0,0,0 +(1,17141:8841497,29157632:3932160,416809,872943 +(1,17141:8841497,29157632:3932160,416809,872943 +[1,17141:8841497,29157632:3932160,416809,872943 +(1,17141:8841497,29157632:3932160,416809,134348 +k1,17141:9303526,29157632:462029 +h1,17141:9303526,29157632:0,0,0 +h1,17141:9303526,29157632:0,0,0 +k1,17141:12773657,29157632:462028 +) +(1,17141:8841497,30022712:3932160,505283,7863 +k1,17141:9698283,30022712:856786 +k1,17141:10331556,30022712:218430 +k1,17141:11916872,30022712:0 +k1,17141:12773657,30022712:856785 ) ] -[1,17095:3078558,4812305:0,0,0 -(1,17095:3078558,49800853:0,16384,2228224 -g1,17095:29030814,49800853 -g1,17095:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,17095:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +g1,17141:12773657,29157632 ) -] ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,17095:37855564,49800853:1179648,16384,0 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 ) ) -k1,17095:3078556,49800853:-34777008 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +(1,17141:8841497,29157632:0,0,0 +(1,17141:8841497,29157632:0,0,0 +g1,17141:8841497,29157632 +(1,17141:8841497,29157632:0,0,0 +(1,17141:8841497,29157632:1966080,513147,872943 +(1,17141:8841497,29157632:1966080,513147,872943 +[1,17141:8841497,29157632:1966080,513147,872943 +(1,17141:8841497,29157632:1966080,513147,7863 +k1,17141:9022704,29157632:181207 +h1,17141:9022704,29157632:0,0,0 +h1,17141:9022704,29157632:0,0,0 +k1,17141:10626370,29157632:0 +k1,17141:10807577,29157632:181207 +) +(1,17141:8841497,30022712:1966080,505283,7863 +k1,17141:8973552,30022712:132055 +h1,17141:8973552,30022712:0,0,0 +k1,17141:10675522,30022712:0 +k1,17141:10807577,30022712:132055 +) +] +) +g1,17141:10807577,29157632 +) +) +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +) +) +g1,17141:8841497,29157632 +(1,17141:8841497,29157632:0,0,0 +(1,17141:8841497,29157632:0,0,0 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +(1,17141:8841497,29157632:0,0,0 +(1,17141:8841497,29157632:3932160,505283,999428 +(1,17141:8841497,29157632:3932160,505283,999428 +[1,17141:8841497,29157632:3932160,505283,999428 +(1,17141:8841497,29157632:3932160,505283,126483 +k1,17141:10044410,29157632:1202913 +h1,17141:10044410,29157632:0,0,0 +h1,17141:10044410,29157632:0,0,0 +k1,17141:11570744,29157632:0 +k1,17141:12773657,29157632:1202913 +) +(1,17141:8841497,30022712:3932160,505283,134348 +k1,17141:9894988,30022712:1053491 +h1,17141:9894988,30022712:0,0,0 +k1,17141:11720166,30022712:0 +k1,17141:12773657,30022712:1053491 ) ] -g1,17095:6630773,4812305 -g1,17095:6630773,4812305 -g1,17095:8017514,4812305 -g1,17095:11261546,4812305 -g1,17095:12076813,4812305 -g1,17095:14985956,4812305 -k1,17095:31387652,4812305:16401696 +) +g1,17141:12773657,29157632 +) +) +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +) +) +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +(1,17141:8841497,29157632:0,0,0 +(1,17141:8841497,29157632:0,0,0 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +(1,17141:8841497,29157632:0,0,0 +(1,17141:8841497,29157632:361759,355205,7863 +(1,17141:8841497,29157632:361759,355205,7863 +) +g1,17141:9203256,29157632 +) +) +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +) +) +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +(1,17141:8841497,29157632:0,0,0 +(1,17141:8841497,29157632:0,0,0 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +(1,17141:8841497,29157632:0,0,0 +(1,17141:8841497,29157632:412877,505283,7863 +(1,17141:8841497,29157632:412877,505283,7863 +) +g1,17141:9254374,29157632 ) ) -] -[1,17095:6630773,45706769:25952256,40108032,0 -(1,17095:6630773,45706769:25952256,40108032,0 -(1,17095:6630773,45706769:0,0,0 -g1,17095:6630773,45706769 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 ) -[1,17095:6630773,45706769:25952256,40108032,0 -(1,17059:6630773,14682403:25952256,9083666,0 -k1,17059:10523651,14682403:3892878 -h1,17058:10523651,14682403:0,0,0 -(1,17058:10523651,14682403:18166500,9083666,0 -(1,17058:10523651,14682403:18167376,9083688,0 -(1,17058:10523651,14682403:18167376,9083688,0 -(1,17058:10523651,14682403:0,9083688,0 -(1,17058:10523651,14682403:0,14208860,0 -(1,17058:10523651,14682403:28417720,14208860,0 ) -k1,17058:10523651,14682403:-28417720 -) -) -g1,17058:28691027,14682403 -) -) -) -g1,17059:28690151,14682403 -k1,17059:32583029,14682403:3892878 -) -(1,17066:6630773,15523891:25952256,505283,134348 -h1,17065:6630773,15523891:983040,0,0 -k1,17065:9605525,15523891:216997 -k1,17065:10178382,15523891:216997 -k1,17065:13385132,15523891:216998 -k1,17065:16016475,15523891:216997 -k1,17065:19587605,15523891:216997 -k1,17065:21918793,15523891:216997 -k1,17065:25233022,15523891:216998 -k1,17065:25805879,15523891:216997 -k1,17065:28972651,15523891:216997 -k1,17066:32583029,15523891:0 -) -(1,17066:6630773,16365379:25952256,513147,126483 -k1,17065:8059501,16365379:161262 -k1,17065:8880056,16365379:161263 -k1,17065:10060403,16365379:161262 -k1,17065:14293417,16365379:161262 -k1,17065:15137564,16365379:161262 -k1,17065:18806969,16365379:161263 -k1,17065:19584269,16365379:161262 -k1,17065:20764616,16365379:161262 -k1,17065:22315241,16365379:161262 -k1,17065:22934601,16365379:161263 -k1,17065:25648490,16365379:161262 -k1,17065:26495914,16365379:161262 -k1,17065:28539370,16365379:161262 -k1,17065:29056493,16365379:161263 -k1,17065:31900144,16365379:161262 -k1,17066:32583029,16365379:0 -) -(1,17066:6630773,17206867:25952256,505283,134348 -(1,17065:6630773,17206867:0,414482,115847 -r1,17095:8044174,17206867:1413401,530329,115847 -k1,17065:6630773,17206867:-1413401 -) -(1,17065:6630773,17206867:1413401,414482,115847 -k1,17065:6630773,17206867:3277 -h1,17065:8040897,17206867:0,411205,112570 -) -k1,17065:8191665,17206867:147491 -k1,17065:10058165,17206867:147491 -k1,17065:13669889,17206867:147491 -k1,17065:14836465,17206867:147491 -k1,17065:16373319,17206867:147491 -k1,17065:17712255,17206867:147491 -k1,17065:18215606,17206867:147491 -(1,17065:18215606,17206867:0,414482,122846 -r1,17095:19629007,17206867:1413401,537328,122846 -k1,17065:18215606,17206867:-1413401 -) -(1,17065:18215606,17206867:1413401,414482,122846 -k1,17065:18215606,17206867:3277 -h1,17065:19625730,17206867:0,411205,112570 -) -k1,17065:19950168,17206867:147491 -k1,17065:22851482,17206867:147491 -k1,17065:24691113,17206867:147491 -k1,17065:29076162,17206867:147491 -k1,17065:31510860,17206867:147491 -k1,17065:32583029,17206867:0 -) -(1,17066:6630773,18048355:25952256,513147,126483 -k1,17065:7886967,18048355:189923 -k1,17065:10379826,18048355:189924 -k1,17065:11221177,18048355:189923 -k1,17065:14031229,18048355:189923 -k1,17065:14577012,18048355:189923 -k1,17065:17851060,18048355:189924 -k1,17065:21031391,18048355:189923 -k1,17065:21880606,18048355:189923 -k1,17065:23089614,18048355:189923 -k1,17065:24842572,18048355:189924 -k1,17065:26520818,18048355:189923 -k1,17065:27579093,18048355:189923 -k1,17065:28966359,18048355:189923 -k1,17065:29512143,18048355:189924 -k1,17065:31414522,18048355:189923 -k1,17065:32583029,18048355:0 -) -(1,17066:6630773,18889843:25952256,505283,134348 -k1,17065:8599589,18889843:233423 -(1,17065:8599589,18889843:0,452978,115847 -r1,17095:13178397,18889843:4578808,568825,115847 -k1,17065:8599589,18889843:-4578808 -) -(1,17065:8599589,18889843:4578808,452978,115847 -k1,17065:8599589,18889843:3277 -h1,17065:13175120,18889843:0,411205,112570 -) -k1,17065:13411820,18889843:233423 -k1,17065:15039193,18889843:233422 -k1,17065:16061014,18889843:233423 -k1,17065:18453193,18889843:233423 -k1,17065:20652041,18889843:233423 -k1,17065:21536892,18889843:233423 -k1,17065:22789400,18889843:233423 -k1,17065:24300119,18889843:233422 -k1,17065:26268935,18889843:233423 -(1,17065:26268935,18889843:0,452978,122846 -r1,17095:30144319,18889843:3875384,575824,122846 -k1,17065:26268935,18889843:-3875384 -) -(1,17065:26268935,18889843:3875384,452978,122846 -k1,17065:26268935,18889843:3277 -h1,17065:30141042,18889843:0,411205,112570 -) -k1,17065:30377742,18889843:233423 -k1,17065:32583029,18889843:0 -) -(1,17066:6630773,19731331:25952256,513147,134348 -k1,17065:7600669,19731331:208368 -k1,17065:9547052,19731331:208368 -k1,17065:11149371,19731331:208368 -(1,17065:11149371,19731331:0,452978,115847 -r1,17095:13266196,19731331:2116825,568825,115847 -k1,17065:11149371,19731331:-2116825 -) -(1,17065:11149371,19731331:2116825,452978,115847 -k1,17065:11149371,19731331:3277 -h1,17065:13262919,19731331:0,411205,112570 -) -k1,17065:13474564,19731331:208368 -k1,17065:14369094,19731331:208368 -k1,17065:15348165,19731331:208368 -k1,17065:18628860,19731331:208367 -k1,17065:19488656,19731331:208368 -(1,17065:19488656,19731331:0,452978,115847 -r1,17095:24067464,19731331:4578808,568825,115847 -k1,17065:19488656,19731331:-4578808 -) -(1,17065:19488656,19731331:4578808,452978,115847 -k1,17065:19488656,19731331:3277 -h1,17065:24064187,19731331:0,411205,112570 -) -k1,17065:24449502,19731331:208368 -k1,17065:25611419,19731331:208368 -k1,17065:26507260,19731331:208368 -k1,17065:27071488,19731331:208368 -k1,17065:29092582,19731331:208368 -k1,17065:32583029,19731331:0 -) -(1,17066:6630773,20572819:25952256,513147,134348 -k1,17065:8547388,20572819:181222 -(1,17065:8547388,20572819:0,452978,115847 -r1,17095:9960789,20572819:1413401,568825,115847 -k1,17065:8547388,20572819:-1413401 -) -(1,17065:8547388,20572819:1413401,452978,115847 -k1,17065:8547388,20572819:3277 -h1,17065:9957512,20572819:0,411205,112570 -) -k1,17065:10142012,20572819:181223 -k1,17065:11009396,20572819:181222 -k1,17065:12209704,20572819:181223 -k1,17065:15018920,20572819:181222 -k1,17065:16580986,20572819:181222 -k1,17065:18039506,20572819:181223 -k1,17065:19321733,20572819:181222 -k1,17065:20675395,20572819:181223 -k1,17065:22918380,20572819:181222 -k1,17065:24667224,20572819:181223 -k1,17065:28355933,20572819:181222 -(1,17065:28355933,20572819:0,452978,122846 -r1,17095:32583029,20572819:4227096,575824,122846 -k1,17065:28355933,20572819:-4227096 -) -(1,17065:28355933,20572819:4227096,452978,122846 -k1,17065:28355933,20572819:3277 -h1,17065:32579752,20572819:0,411205,112570 -) -k1,17065:32583029,20572819:0 -) -(1,17066:6630773,21414307:25952256,505283,122846 -g1,17065:8021447,21414307 -(1,17065:8021447,21414307:0,452978,122846 -r1,17095:11896831,21414307:3875384,575824,122846 -k1,17065:8021447,21414307:-3875384 -) -(1,17065:8021447,21414307:3875384,452978,122846 -k1,17065:8021447,21414307:3277 -h1,17065:11893554,21414307:0,411205,112570 -) -g1,17065:12269730,21414307 -g1,17065:13906557,21414307 -$1,17065:13906557,21414307 -$1,17065:14514076,21414307 -g1,17065:14700460,21414307 -g1,17065:15841179,21414307 -$1,17065:15841179,21414307 -$1,17065:16448698,21414307 -g1,17065:16635082,21414307 -g1,17065:17888458,21414307 -$1,17065:17888458,21414307 -$1,17065:18495977,21414307 -g1,17065:18682361,21414307 -g1,17065:20477785,21414307 -$1,17065:20477785,21414307 -$1,17065:21085304,21414307 -g1,17065:21271688,21414307 -g1,17065:23264113,21414307 -k1,17066:32583029,21414307:7360635 -g1,17066:32583029,21414307 -) -v1,17068:6630773,22604773:0,393216,0 -(1,17075:6630773,24918403:25952256,2706846,196608 -g1,17075:6630773,24918403 -g1,17075:6630773,24918403 -g1,17075:6434165,24918403 -(1,17075:6434165,24918403:0,2706846,196608 -r1,17095:32779637,24918403:26345472,2903454,196608 -k1,17075:6434165,24918403:-26345472 -) -(1,17075:6434165,24918403:26345472,2706846,196608 -[1,17075:6630773,24918403:25952256,2510238,0 -(1,17070:6630773,22812391:25952256,404226,107478 -(1,17069:6630773,22812391:0,0,0 -g1,17069:6630773,22812391 -g1,17069:6630773,22812391 -g1,17069:6303093,22812391 -(1,17069:6303093,22812391:0,0,0 -) -g1,17069:6630773,22812391 -) -k1,17070:6630773,22812391:0 -g1,17070:10424522,22812391 -g1,17070:11056814,22812391 -k1,17070:11056814,22812391:0 -h1,17070:13269834,22812391:0,0,0 -k1,17070:32583030,22812391:19313196 -g1,17070:32583030,22812391 -) -(1,17071:6630773,23478569:25952256,404226,107478 -h1,17071:6630773,23478569:0,0,0 -g1,17071:6946919,23478569 -g1,17071:7263065,23478569 -g1,17071:7579211,23478569 -g1,17071:7895357,23478569 -g1,17071:8211503,23478569 -g1,17071:8527649,23478569 -g1,17071:8843795,23478569 -g1,17071:10740670,23478569 -g1,17071:11372962,23478569 -g1,17071:13269837,23478569 -g1,17071:13902129,23478569 -g1,17071:14534421,23478569 -g1,17071:16431295,23478569 -h1,17071:16747441,23478569:0,0,0 -k1,17071:32583029,23478569:15835588 -g1,17071:32583029,23478569 -) -(1,17072:6630773,24144747:25952256,404226,107478 -h1,17072:6630773,24144747:0,0,0 -g1,17072:6946919,24144747 -g1,17072:7263065,24144747 -g1,17072:11372959,24144747 -h1,17072:11689105,24144747:0,0,0 -k1,17072:32583029,24144747:20893924 -g1,17072:32583029,24144747 -) -(1,17073:6630773,24810925:25952256,410518,107478 -h1,17073:6630773,24810925:0,0,0 -g1,17073:6946919,24810925 -g1,17073:7263065,24810925 -g1,17073:12637542,24810925 -g1,17073:13269834,24810925 -g1,17073:15799000,24810925 -g1,17073:18012020,24810925 -g1,17073:18644312,24810925 -g1,17073:20541187,24810925 -g1,17073:23070353,24810925 -g1,17073:23702645,24810925 -g1,17073:24334937,24810925 -g1,17073:24967229,24810925 -h1,17073:25599520,24810925:0,0,0 -k1,17073:32583029,24810925:6983509 -g1,17073:32583029,24810925 -) -] -) -g1,17075:32583029,24918403 -g1,17075:6630773,24918403 -g1,17075:6630773,24918403 -g1,17075:32583029,24918403 -g1,17075:32583029,24918403 -) -h1,17075:6630773,25115011:0,0,0 -(1,17078:6630773,34788501:25952256,9083666,0 -k1,17078:10523651,34788501:3892878 -h1,17077:10523651,34788501:0,0,0 -(1,17077:10523651,34788501:18166500,9083666,0 -(1,17077:10523651,34788501:18167376,9083688,0 -(1,17077:10523651,34788501:18167376,9083688,0 -(1,17077:10523651,34788501:0,9083688,0 -(1,17077:10523651,34788501:0,14208860,0 -(1,17077:10523651,34788501:28417720,14208860,0 -) -k1,17077:10523651,34788501:-28417720 -) -) -g1,17077:28691027,34788501 -) -) -) -g1,17078:28690151,34788501 -k1,17078:32583029,34788501:3892878 -) -(1,17085:6630773,35629989:25952256,513147,134348 -h1,17084:6630773,35629989:983040,0,0 -k1,17084:8802745,35629989:235383 -k1,17084:11358759,35629989:235384 -k1,17084:12559487,35629989:235383 -k1,17084:14760295,35629989:235383 -k1,17084:16687818,35629989:235383 -k1,17084:17582494,35629989:235384 -k1,17084:18836962,35629989:235383 -k1,17084:21941511,35629989:235383 -k1,17084:22836186,35629989:235383 -k1,17084:24090655,35629989:235384 -k1,17084:27228628,35629989:235383 -k1,17084:30554034,35629989:235383 -k1,17084:32583029,35629989:0 -) -(1,17085:6630773,36471477:25952256,505283,126483 -k1,17084:8921060,36471477:293405 -k1,17084:12858921,36471477:293404 -k1,17084:14343771,36471477:293405 -k1,17084:17043002,36471477:293405 -k1,17084:18533094,36471477:293405 -k1,17084:20434096,36471477:293404 -k1,17084:22231552,36471477:293405 -k1,17084:25400021,36471477:293405 -k1,17084:28063207,36471477:293404 -k1,17084:30886302,36471477:293405 -k1,17084:32583029,36471477:0 -) -(1,17085:6630773,37312965:25952256,513147,126483 -k1,17084:9774989,37312965:275050 -k1,17084:11525253,37312965:275049 -k1,17084:14396184,37312965:275050 -k1,17084:16556704,37312965:275049 -k1,17084:17823314,37312965:275050 -k1,17084:19611589,37312965:275049 -k1,17084:21584677,37312965:275050 -k1,17084:22728078,37312965:275049 -k1,17084:23818396,37312965:275050 -k1,17084:25159716,37312965:275049 -k1,17084:26369309,37312965:275050 -k1,17084:28283413,37312965:275049 -k1,17084:31629480,37312965:275050 -k1,17084:32583029,37312965:0 -) -(1,17085:6630773,38154453:25952256,505283,134348 -k1,17084:8217618,38154453:202725 -k1,17084:9552804,38154453:202724 -k1,17084:10780512,38154453:202725 -k1,17084:13974955,38154453:202724 -k1,17084:14793718,38154453:202725 -k1,17084:16881914,38154453:202725 -k1,17084:18464826,38154453:202724 -k1,17084:19659111,38154453:202725 -k1,17084:22759182,38154453:202724 -k1,17084:24070121,38154453:202725 -k1,17084:25226395,38154453:202725 -k1,17084:26917442,38154453:202724 -k1,17084:28514118,38154453:202725 -k1,17084:29072702,38154453:202724 -k1,17084:30847636,38154453:202725 -k1,17084:32583029,38154453:0 -) -(1,17085:6630773,38995941:25952256,513147,134348 -k1,17084:7184015,38995941:197382 -k1,17084:11027166,38995941:197383 -k1,17084:16235431,38995941:197382 -k1,17084:17813658,38995941:197383 -k1,17084:19937798,38995941:197382 -k1,17084:21281406,38995941:197383 -k1,17084:24003235,38995941:197382 -k1,17084:24962146,38995941:197383 -k1,17084:26765815,38995941:197382 -k1,17084:28698591,38995941:197383 -k1,17084:30749987,38995941:197382 -k1,17084:32583029,38995941:0 -) -(1,17085:6630773,39837429:25952256,505283,134348 -k1,17084:8281297,39837429:256573 -k1,17084:10766750,39837429:256574 -k1,17084:13231886,39837429:256573 -k1,17084:16605352,39837429:256574 -k1,17084:17513353,39837429:256573 -k1,17084:18125787,39837429:256574 -k1,17084:22028128,39837429:256573 -k1,17084:24030580,39837429:256573 -k1,17084:25648992,39837429:256574 -k1,17084:27892617,39837429:256573 -k1,17084:30927262,39837429:256574 -k1,17084:31835263,39837429:256573 -k1,17084:32583029,39837429:0 -) -(1,17085:6630773,40678917:25952256,513147,134348 -k1,17084:10027286,40678917:199011 -k1,17084:10842335,40678917:199011 -k1,17084:12060430,40678917:199010 -k1,17084:14694759,40678917:199011 -k1,17084:16685524,40678917:199011 -k1,17084:17956704,40678917:199011 -k1,17084:21009153,40678917:199011 -k1,17084:22199724,40678917:199011 -k1,17084:24770482,40678917:199010 -k1,17084:25620921,40678917:199011 -k1,17084:26839017,40678917:199011 -k1,17084:31019995,40678917:199011 -k1,17084:32583029,40678917:0 -) -(1,17085:6630773,41520405:25952256,513147,126483 -k1,17084:7502704,41520405:244096 -k1,17084:9448771,41520405:244097 -k1,17084:11821476,41520405:244096 -k1,17084:12421432,41520405:244096 -k1,17084:16647496,41520405:244097 -k1,17084:18463801,41520405:244096 -k1,17084:20817501,41520405:244096 -k1,17084:22080682,41520405:244096 -k1,17084:24335424,41520405:244097 -k1,17084:26622277,41520405:244096 -k1,17084:28246561,41520405:244096 -k1,17084:29482218,41520405:244097 -k1,17084:31931601,41520405:244096 -k1,17084:32583029,41520405:0 -) -(1,17085:6630773,42361893:25952256,513147,138281 -k1,17084:9674063,42361893:210169 -k1,17084:11075677,42361893:210169 -k1,17084:12304931,42361893:210169 -k1,17084:14327826,42361893:210169 -k1,17084:17854772,42361893:210169 -k1,17084:19197403,42361893:210169 -k1,17084:20155338,42361893:210169 -k1,17084:22077963,42361893:210169 -k1,17084:22939560,42361893:210169 -(1,17084:22939560,42361893:0,452978,122846 -r1,17095:25408097,42361893:2468537,575824,122846 -k1,17084:22939560,42361893:-2468537 -) -(1,17084:22939560,42361893:2468537,452978,122846 -k1,17084:22939560,42361893:3277 -h1,17084:25404820,42361893:0,411205,112570 -) -k1,17084:25618266,42361893:210169 -k1,17084:29810402,42361893:210169 -$1,17084:29810402,42361893 -$1,17084:30362215,42361893 -k1,17084:30572384,42361893:210169 -k1,17084:32583029,42361893:0 -) -(1,17085:6630773,43203381:25952256,505283,134348 -g1,17084:8021447,43203381 -g1,17084:9239761,43203381 -g1,17084:11874308,43203381 -$1,17084:11874308,43203381 -$1,17084:12376969,43203381 -g1,17084:12576198,43203381 -g1,17084:14959742,43203381 -g1,17084:16596569,43203381 -$1,17084:16596569,43203381 -$1,17084:17204088,43203381 -g1,17084:17390472,43203381 -g1,17084:18531191,43203381 -$1,17084:18531191,43203381 -$1,17084:19138710,43203381 -g1,17084:19325094,43203381 -g1,17084:20578470,43203381 -$1,17084:20578470,43203381 -$1,17084:21185989,43203381 -g1,17084:21372373,43203381 -g1,17084:23167797,43203381 -$1,17084:23167797,43203381 -$1,17084:23775316,43203381 -g1,17084:23961700,43203381 -g1,17084:25574868,43203381 -$1,17084:25574868,43203381 -$1,17084:26182387,43203381 -g1,17084:26368771,43203381 -g1,17084:28361196,43203381 -k1,17085:32583029,43203381:2263552 -g1,17085:32583029,43203381 -) -v1,17087:6630773,44393847:0,393216,0 -(1,17095:6630773,45375121:25952256,1374490,196608 -g1,17095:6630773,45375121 -g1,17095:6630773,45375121 -g1,17095:6434165,45375121 -(1,17095:6434165,45375121:0,1374490,196608 -r1,17095:32779637,45375121:26345472,1571098,196608 -k1,17095:6434165,45375121:-26345472 -) -(1,17095:6434165,45375121:26345472,1374490,196608 -[1,17095:6630773,45375121:25952256,1177882,0 -(1,17089:6630773,44601465:25952256,404226,107478 -(1,17088:6630773,44601465:0,0,0 -g1,17088:6630773,44601465 -g1,17088:6630773,44601465 -g1,17088:6303093,44601465 -(1,17088:6303093,44601465:0,0,0 -) -g1,17088:6630773,44601465 -) -k1,17089:6630773,44601465:0 -g1,17089:10424522,44601465 -g1,17089:11056814,44601465 -k1,17089:11056814,44601465:0 -h1,17089:13269834,44601465:0,0,0 -k1,17089:32583030,44601465:19313196 -g1,17089:32583030,44601465 -) -(1,17090:6630773,45267643:25952256,404226,107478 -h1,17090:6630773,45267643:0,0,0 -g1,17090:6946919,45267643 -g1,17090:7263065,45267643 -g1,17090:7579211,45267643 -g1,17090:7895357,45267643 -g1,17090:8211503,45267643 -g1,17090:8527649,45267643 -g1,17090:8843795,45267643 -g1,17090:10740670,45267643 -g1,17090:11372962,45267643 -g1,17090:13269837,45267643 -g1,17090:13902129,45267643 -g1,17090:14534421,45267643 -g1,17090:16431295,45267643 -h1,17090:16747441,45267643:0,0,0 -k1,17090:32583029,45267643:15835588 -g1,17090:32583029,45267643 -) -] -) -g1,17095:32583029,45375121 -g1,17095:6630773,45375121 -g1,17095:6630773,45375121 -g1,17095:32583029,45375121 -g1,17095:32583029,45375121 -) -] -(1,17095:32583029,45706769:0,0,0 -g1,17095:32583029,45706769 -) -) -] -(1,17095:6630773,47279633:25952256,0,0 -h1,17095:6630773,47279633:25952256,0,0 -) -] -(1,17095:4262630,4025873:0,0,0 -[1,17095:-473656,4025873:0,0,0 -(1,17095:-473656,-710413:0,0,0 -(1,17095:-473656,-710413:0,0,0 -g1,17095:-473656,-710413 -) -g1,17095:-473656,-710413 -) -] -) -] -!20486 -}296 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +(1,17141:8841497,29157632:0,0,0 +(1,17141:8841497,29157632:0,0,0 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +(1,17141:8841497,29157632:0,0,0 +(1,17141:8841497,29157632:335544,355205,7863 +(1,17141:8841497,29157632:335544,355205,7863 +) +g1,17141:9177041,29157632 +) +) +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +) +) +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +(1,17141:8841497,29157632:0,0,0 +(1,17141:8841497,29157632:0,0,0 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +(1,17141:8841497,29157632:0,0,0 +(1,17141:8841497,29157632:412877,505283,7863 +(1,17141:8841497,29157632:412877,505283,7863 +) +g1,17141:9254374,29157632 +) +) +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +) +) +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +(1,17141:8841497,29157632:0,0,0 +(1,17141:8841497,29157632:0,0,0 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +(1,17141:8841497,29157632:0,0,0 +(1,17141:8841497,29157632:365036,355205,7863 +(1,17141:8841497,29157632:365036,355205,7863 +) +g1,17141:9206533,29157632 +) +) +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +) +) +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +(1,17141:8841497,29157632:0,0,0 +(1,17141:8841497,29157632:0,0,0 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +(1,17141:8841497,29157632:0,0,0 +(1,17141:8841497,29157632:240517,513147,0 +(1,17141:8841497,29157632:240517,513147,0 +) +g1,17141:9082014,29157632 +) +) +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +) +) +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +g1,17141:8841497,29157632 +) +g1,17141:8841497,29157632 +) +) +) +) +k1,17141:6630773,30494566:-40370404 +) +) +g1,17141:32582999,30494566 +) +k1,17142:32583029,30494566:30 +g1,17142:32583029,30494566 +) +(1,17144:6630773,32054328:25952256,505283,134348 +h1,17143:6630773,32054328:983040,0,0 +k1,17143:9111947,32054328:266057 +k1,17143:11266096,32054328:266057 +k1,17143:13661418,32054328:266057 +k1,17143:16265144,32054328:266057 +k1,17143:16887061,32054328:266057 +k1,17143:19676254,32054328:266057 +k1,17143:21133757,32054328:266058 +k1,17143:21755674,32054328:266057 +k1,17143:25185154,32054328:266057 +k1,17143:28241079,32054328:266057 +(1,17143:28241079,32054328:0,452978,115847 +r1,17147:30006192,32054328:1765113,568825,115847 +k1,17143:28241079,32054328:-1765113 +) +(1,17143:28241079,32054328:1765113,452978,115847 +k1,17143:28241079,32054328:3277 +h1,17143:30002915,32054328:0,411205,112570 +) +k1,17143:30272249,32054328:266057 +k1,17143:31069803,32054328:266057 +k1,17143:32583029,32054328:0 +) +(1,17144:6630773,32919408:25952256,513147,134348 +k1,17143:7476312,32919408:194111 +k1,17143:9631259,32919408:194110 +k1,17143:12963234,32919408:194111 +k1,17143:13808772,32919408:194110 +k1,17143:17351117,32919408:194111 +k1,17143:18741914,32919408:194110 +k1,17143:21201605,32919408:194111 +k1,17143:22343367,32919408:194111 +(1,17143:22343367,32919408:0,452978,115847 +r1,17147:24108480,32919408:1765113,568825,115847 +k1,17143:22343367,32919408:-1765113 +) +(1,17143:22343367,32919408:1765113,452978,115847 +k1,17143:22343367,32919408:3277 +h1,17143:24105203,32919408:0,411205,112570 +) +k1,17143:24302590,32919408:194110 +k1,17143:25028198,32919408:194111 +k1,17143:26169959,32919408:194110 +k1,17143:27383155,32919408:194111 +k1,17143:30384827,32919408:194110 +k1,17143:31230366,32919408:194111 +k1,17143:32583029,32919408:0 +) +(1,17144:6630773,33784488:25952256,513147,134348 +k1,17143:8451974,33784488:158553 +k1,17143:9223290,33784488:158554 +k1,17143:10400928,33784488:158553 +k1,17143:12079917,33784488:158554 +k1,17143:13519699,33784488:158553 +k1,17143:15387432,33784488:158554 +k1,17143:16162023,33784488:158553 +k1,17143:17339662,33784488:158554 +k1,17143:20114412,33784488:158553 +k1,17143:22509054,33784488:158554 +k1,17143:25475169,33784488:158553 +k1,17143:27702039,33784488:158554 +k1,17143:28476630,33784488:158553 +k1,17143:29654269,33784488:158554 +k1,17143:31193666,33784488:158553 +k1,17143:32583029,33784488:0 +) +(1,17144:6630773,34649568:25952256,505283,126483 +k1,17143:7528804,34649568:246603 +k1,17143:10949970,34649568:246602 +k1,17143:12690139,34649568:246603 +k1,17143:13622903,34649568:246602 +k1,17143:14408212,34649568:246603 +k1,17143:15189588,34649568:246602 +k1,17143:17640822,34649568:246603 +k1,17143:19930181,34649568:246602 +k1,17143:21288275,34649568:246603 +k1,17143:24469579,34649568:246602 +k1,17143:25735267,34649568:246603 +k1,17143:27371232,34649568:246602 +k1,17143:30203230,34649568:246603 +k1,17143:31062594,34649568:246602 +k1,17144:32583029,34649568:0 +) +(1,17144:6630773,35514648:25952256,513147,134348 +k1,17143:7990294,35514648:255239 +k1,17143:8993299,35514648:255239 +k1,17143:11833934,35514648:255240 +k1,17143:13791143,35514648:255239 +k1,17143:14659144,35514648:255239 +k1,17143:16086822,35514648:255239 +k1,17143:17795650,35514648:255239 +k1,17143:20045805,35514648:255239 +k1,17143:21870796,35514648:261957 +k1,17143:23343694,35514648:255239 +k1,17143:24790378,35514648:255239 +k1,17143:26615369,35514648:261957 +k1,17143:28687921,35514648:255239 +k1,17143:30638576,35514648:255239 +k1,17144:32583029,35514648:0 +) +(1,17144:6630773,36379728:25952256,505283,134348 +k1,17143:7957519,36379728:204770 +k1,17143:10172934,36379728:204770 +k1,17143:11396789,36379728:204770 +k1,17143:15590080,36379728:204770 +k1,17143:17184213,36379728:204770 +k1,17143:19947510,36379728:204771 +k1,17143:21171365,36379728:204770 +k1,17143:23029608,36379728:204770 +k1,17143:26372242,36379728:204770 +k1,17143:28026668,36379728:204770 +k1,17143:29939962,36379728:204770 +k1,17143:32583029,36379728:0 +) +(1,17144:6630773,37244808:25952256,505283,134348 +k1,17143:9444472,37244808:255173 +k1,17143:10107279,37244808:255173 +k1,17143:13537017,37244808:255174 +k1,17143:14323687,37244808:255173 +k1,17143:18507743,37244808:255173 +k1,17143:19954361,37244808:255173 +k1,17143:22368290,37244808:255173 +k1,17143:25181989,37244808:255173 +k1,17143:26456248,37244808:255174 +k1,17143:28364894,37244808:255173 +k1,17143:29027701,37244808:255173 +k1,17143:32583029,37244808:0 +) +(1,17144:6630773,38109888:25952256,513147,134348 +k1,17143:8179108,38109888:167491 +k1,17143:8878096,38109888:167491 +k1,17143:10064672,38109888:167491 +k1,17143:11833863,38109888:167491 +k1,17143:14778770,38109888:167491 +k1,17143:16313342,38109888:167491 +k1,17143:17672278,38109888:167491 +k1,17143:18858855,38109888:167492 +k1,17143:22173385,38109888:167491 +k1,17143:23000168,38109888:167491 +k1,17143:24186744,38109888:167491 +k1,17143:27161797,38109888:167491 +k1,17143:27860785,38109888:167491 +k1,17143:31391584,38109888:167491 +k1,17143:32583029,38109888:0 +) +(1,17144:6630773,38974968:25952256,513147,134348 +k1,17143:8002180,38974968:267125 +k1,17143:9017070,38974968:267124 +k1,17143:11148694,38974968:267125 +k1,17143:13857034,38974968:267124 +k1,17143:14885687,38974968:267125 +k1,17143:16171897,38974968:267125 +k1,17143:17993535,38974968:267124 +k1,17143:19163091,38974968:267125 +k1,17143:20896911,38974968:267124 +k1,17143:23577072,38974968:267125 +k1,17143:25211278,38974968:267125 +k1,17143:26009899,38974968:267124 +k1,17143:27975062,38974968:267125 +k1,17143:29261271,38974968:267124 +k1,17143:32051532,38974968:267125 +k1,17144:32583029,38974968:0 +) +(1,17144:6630773,39840048:25952256,505283,126483 +(1,17143:6630773,39840048:0,452978,115847 +r1,17147:12264716,39840048:5633943,568825,115847 +k1,17143:6630773,39840048:-5633943 +) +(1,17143:6630773,39840048:5633943,452978,115847 +k1,17143:6630773,39840048:3277 +h1,17143:12261439,39840048:0,411205,112570 +) +g1,17143:12637615,39840048 +g1,17143:14722315,39840048 +g1,17143:15453041,39840048 +g1,17143:16008130,39840048 +g1,17143:19940945,39840048 +g1,17143:21424680,39840048 +g1,17143:23651593,39840048 +g1,17143:24639220,39840048 +g1,17143:26546973,39840048 +g1,17143:27397630,39840048 +g1,17143:28385257,39840048 +k1,17144:32583029,39840048:1865346 +g1,17144:32583029,39840048 +) +v1,17146:6630773,40705128:0,393216,0 +(1,17147:6630773,44608094:25952256,4296182,0 +g1,17147:6630773,44608094 +g1,17147:6237557,44608094 +r1,17147:6368629,44608094:131072,4296182,0 +g1,17147:6567858,44608094 +g1,17147:6764466,44608094 +[1,17147:6764466,44608094:25818563,4296182,0 +(1,17147:6764466,41013426:25818563,701514,196608 +(1,17146:6764466,41013426:0,701514,196608 +r1,17147:8010564,41013426:1246098,898122,196608 +k1,17146:6764466,41013426:-1246098 +) +(1,17146:6764466,41013426:1246098,701514,196608 +) +k1,17146:8218468,41013426:207904 +k1,17146:8546148,41013426:327680 +k1,17146:10471095,41013426:207904 +k1,17146:13532438,41013426:207905 +k1,17146:15981018,41013426:207904 +k1,17146:17208007,41013426:207904 +k1,17146:19681491,41013426:207904 +k1,17146:22696957,41013426:207904 +k1,17146:24172327,41013426:207904 +k1,17146:27734365,41013426:207905 +k1,17146:30704612,41013426:207904 +k1,17146:31563944,41013426:207904 +k1,17146:32583029,41013426:0 +) +(1,17147:6764466,41878506:25818563,513147,134348 +k1,17146:9511810,41878506:161949 +k1,17146:12515401,41878506:161950 +k1,17146:13290112,41878506:161949 +k1,17146:14960700,41878506:161949 +k1,17146:17004844,41878506:161950 +k1,17146:17782831,41878506:161949 +k1,17146:19830251,41878506:161949 +k1,17146:21359282,41878506:161950 +k1,17146:22540316,41878506:161949 +k1,17146:25891902,41878506:161949 +k1,17146:28861414,41878506:161950 +k1,17146:29636125,41878506:161949 +k1,17146:31365370,41878506:166211 +k1,17147:32583029,41878506:0 +) +(1,17147:6764466,42743586:25818563,513147,126483 +k1,17146:9009402,42743586:171377 +k1,17146:10748399,42743586:171376 +k1,17146:12204282,42743586:171377 +k1,17146:12988421,42743586:171377 +k1,17146:14853902,42743586:171376 +k1,17146:16720695,42743586:171377 +k1,17146:19745510,42743586:171377 +k1,17146:21927531,42743586:171376 +k1,17146:24770155,42743586:171377 +k1,17146:27783173,42743586:171377 +k1,17146:28570587,42743586:171376 +k1,17146:30250603,42743586:171377 +k1,17146:32583029,42743586:0 +) +(1,17147:6764466,43608666:25818563,513147,126483 +k1,17146:8647862,43608666:191256 +k1,17146:9498409,43608666:191255 +k1,17146:11328720,43608666:191256 +k1,17146:14105371,43608666:191256 +k1,17146:14948055,43608666:191256 +k1,17146:18313874,43608666:191255 +k1,17146:19696575,43608666:191256 +k1,17146:21579971,43608666:191256 +k1,17146:22837498,43608666:191256 +k1,17146:25614148,43608666:191255 +k1,17146:26456832,43608666:191256 +k1,17146:29426815,43608666:191256 +k1,17146:32583029,43608666:0 +) +(1,17147:6764466,44473746:25818563,513147,134348 +k1,17146:7787792,44473746:213956 +k1,17146:8357608,44473746:213956 +k1,17146:10266324,44473746:213955 +k1,17146:11866366,44473746:213956 +k1,17146:12739614,44473746:213956 +k1,17146:14342933,44473746:213956 +k1,17146:17720967,44473746:213956 +k1,17146:19315767,44473746:213956 +k1,17146:20061219,44473746:213955 +k1,17146:20631035,44473746:213956 +k1,17146:22212072,44473746:213956 +k1,17146:24344922,44473746:213956 +k1,17146:26270023,44473746:213956 +k1,17146:28014245,44473746:213956 +k1,17146:28879628,44473746:213955 +k1,17146:29841350,44473746:213956 +k1,17146:31923737,44473746:213956 +k1,17146:32583029,44473746:0 +) +] +g1,17147:32583029,44608094 +) +] +(1,17147:32583029,45706769:0,0,0 +g1,17147:32583029,45706769 +) +) +] +(1,17147:6630773,47279633:25952256,0,0 +h1,17147:6630773,47279633:25952256,0,0 +) +] +(1,17147:4262630,4025873:0,0,0 +[1,17147:-473656,4025873:0,0,0 +(1,17147:-473656,-710413:0,0,0 +(1,17147:-473656,-710413:0,0,0 +g1,17147:-473656,-710413 +) +g1,17147:-473656,-710413 +) +] +) +] +!34904 +}278 +Input:2518:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2519:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2520:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2521:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!106 -{297 -[1,17127:4262630,47279633:28320399,43253760,0 -(1,17127:4262630,4025873:0,0,0 -[1,17127:-473656,4025873:0,0,0 -(1,17127:-473656,-710413:0,0,0 -(1,17127:-473656,-644877:0,0,0 -k1,17127:-473656,-644877:-65536 +Input:2522:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2523:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2524:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2525:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!764 +{279 +[1,17181:4262630,47279633:28320399,43253760,0 +(1,17181:4262630,4025873:0,0,0 +[1,17181:-473656,4025873:0,0,0 +(1,17181:-473656,-710413:0,0,0 +(1,17181:-473656,-644877:0,0,0 +k1,17181:-473656,-644877:-65536 ) -(1,17127:-473656,4736287:0,0,0 -k1,17127:-473656,4736287:5209943 +(1,17181:-473656,4736287:0,0,0 +k1,17181:-473656,4736287:5209943 ) -g1,17127:-473656,-710413 +g1,17181:-473656,-710413 ) ] ) -[1,17127:6630773,47279633:25952256,43253760,0 -[1,17127:6630773,4812305:25952256,786432,0 -(1,17127:6630773,4812305:25952256,513147,126483 -(1,17127:6630773,4812305:25952256,513147,126483 -g1,17127:3078558,4812305 -[1,17127:3078558,4812305:0,0,0 -(1,17127:3078558,2439708:0,1703936,0 -k1,17127:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,17127:2537886,2439708:1179648,16384,0 +[1,17181:6630773,47279633:25952256,43253760,0 +[1,17181:6630773,4812305:25952256,786432,0 +(1,17181:6630773,4812305:25952256,513147,126483 +(1,17181:6630773,4812305:25952256,513147,126483 +g1,17181:3078558,4812305 +[1,17181:3078558,4812305:0,0,0 +(1,17181:3078558,2439708:0,1703936,0 +k1,17181:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,17181:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,17127:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,17181:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,17127:3078558,4812305:0,0,0 -(1,17127:3078558,2439708:0,1703936,0 -g1,17127:29030814,2439708 -g1,17127:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,17127:36151628,1915420:16384,1179648,0 +[1,17181:3078558,4812305:0,0,0 +(1,17181:3078558,2439708:0,1703936,0 +g1,17181:29030814,2439708 +g1,17181:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,17181:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,17127:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,17181:37855564,2439708:1179648,16384,0 ) ) -k1,17127:3078556,2439708:-34777008 +k1,17181:3078556,2439708:-34777008 ) ] -[1,17127:3078558,4812305:0,0,0 -(1,17127:3078558,49800853:0,16384,2228224 -k1,17127:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,17127:2537886,49800853:1179648,16384,0 +[1,17181:3078558,4812305:0,0,0 +(1,17181:3078558,49800853:0,16384,2228224 +k1,17181:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,17181:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,17127:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,17181:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,17127:3078558,4812305:0,0,0 -(1,17127:3078558,49800853:0,16384,2228224 -g1,17127:29030814,49800853 -g1,17127:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,17127:36151628,51504789:16384,1179648,0 +[1,17181:3078558,4812305:0,0,0 +(1,17181:3078558,49800853:0,16384,2228224 +g1,17181:29030814,49800853 +g1,17181:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,17181:36151628,51504789:16384,1179648,0 +) +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 +) +] +) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,17181:37855564,49800853:1179648,16384,0 +) +) +k1,17181:3078556,49800853:-34777008 +) +] +g1,17181:6630773,4812305 +k1,17181:21350816,4812305:13524666 +g1,17181:21999622,4812305 +g1,17181:25611966,4812305 +g1,17181:28956923,4812305 +g1,17181:29772190,4812305 +) +) +] +[1,17181:6630773,45706769:25952256,40108032,0 +(1,17181:6630773,45706769:25952256,40108032,0 +(1,17181:6630773,45706769:0,0,0 +g1,17181:6630773,45706769 +) +[1,17181:6630773,45706769:25952256,40108032,0 +v1,17147:6630773,6254097:0,393216,0 +(1,17147:6630773,7373456:25952256,1512575,0 +g1,17147:6630773,7373456 +g1,17147:6237557,7373456 +r1,17181:6368629,7373456:131072,1512575,0 +g1,17147:6567858,7373456 +g1,17147:6764466,7373456 +[1,17147:6764466,7373456:25818563,1512575,0 +(1,17147:6764466,6374028:25818563,513147,134348 +k1,17146:8025732,6374028:242181 +k1,17146:11030255,6374028:242180 +k1,17146:13267352,6374028:242181 +k1,17146:14168824,6374028:242180 +k1,17146:17218567,6374028:242181 +k1,17146:18120040,6374028:242181 +k1,17146:21536784,6374028:242180 +k1,17146:22244926,6374028:242181 +k1,17146:23867295,6374028:242181 +k1,17146:25658091,6374028:242180 +k1,17146:26551700,6374028:242181 +k1,17146:29056183,6374028:242180 +k1,17146:30317449,6374028:242181 +k1,17146:32583029,6374028:0 +) +(1,17147:6764466,7239108:25818563,513147,134348 +g1,17146:9944928,7239108 +g1,17146:11401138,7239108 +g1,17146:13879054,7239108 +h1,17146:15421772,7239108:0,0,0 +g1,17146:15621001,7239108 +g1,17146:16629600,7239108 +g1,17146:18326982,7239108 +h1,17146:19522359,7239108:0,0,0 +g1,17146:19721588,7239108 +g1,17146:20868468,7239108 +k1,17147:32583029,7239108:9216329 +g1,17147:32583029,7239108 +) +] +g1,17147:32583029,7373456 +) +h1,17147:6630773,7373456:0,0,0 +(1,17150:6630773,8238536:25952256,505283,134348 +h1,17149:6630773,8238536:983040,0,0 +k1,17149:8665502,8238536:233800 +k1,17149:12317004,8238536:233799 +k1,17149:14406128,8238536:233800 +k1,17149:15406044,8238536:233800 +k1,17149:17665561,8238536:233799 +k1,17149:19787453,8238536:233800 +k1,17149:22358922,8238536:233800 +k1,17149:22948581,8238536:233799 +k1,17149:25705517,8238536:233800 +k1,17149:27130762,8238536:233800 +k1,17149:27720421,8238536:233799 +k1,17149:31117644,8238536:233800 +k1,17149:32583029,8238536:0 +) +(1,17150:6630773,9103616:25952256,513147,134348 +k1,17149:9713706,9103616:229495 +k1,17149:10934761,9103616:229495 +k1,17149:12722047,9103616:229495 +k1,17149:16658258,9103616:229495 +k1,17149:20087221,9103616:229495 +k1,17149:21508161,9103616:229495 +k1,17149:23427174,9103616:229495 +k1,17149:26510107,9103616:229495 +k1,17149:28092265,9103616:229495 +k1,17149:28677620,9103616:229495 +k1,17149:31896867,9103616:229495 +k1,17149:32583029,9103616:0 +) +(1,17150:6630773,9968696:25952256,513147,134348 +k1,17149:8000896,9968696:213413 +k1,17149:8873602,9968696:213414 +k1,17149:9875413,9968696:213413 +k1,17149:13665126,9968696:213413 +k1,17149:17386027,9968696:213414 +k1,17149:18952103,9968696:213413 +k1,17149:19521377,9968696:213414 +k1,17149:22257926,9968696:213413 +k1,17149:23157501,9968696:213413 +k1,17149:24527625,9968696:213414 +k1,17149:25400330,9968696:213413 +k1,17149:26402141,9968696:213413 +k1,17149:30191855,9968696:213414 +k1,17149:31601955,9968696:213413 +k1,17150:32583029,9968696:0 +) +(1,17150:6630773,10833776:25952256,513147,134348 +k1,17149:8341082,10833776:212811 +k1,17149:11077028,10833776:212810 +k1,17149:11949131,10833776:212811 +k1,17149:13913718,10833776:212810 +k1,17149:17634016,10833776:212811 +k1,17149:18378323,10833776:212810 +(1,17149:18378323,10833776:0,452978,115847 +r1,17181:23660554,10833776:5282231,568825,115847 +k1,17149:18378323,10833776:-5282231 +) +(1,17149:18378323,10833776:5282231,452978,115847 +k1,17149:18378323,10833776:3277 +h1,17149:23657277,10833776:0,411205,112570 +) +k1,17149:23873365,10833776:212811 +k1,17149:25277620,10833776:212810 +k1,17149:26907319,10833776:212811 +k1,17149:29343110,10833776:212810 +k1,17149:30317449,10833776:212811 +k1,17149:32583029,10833776:0 +) +(1,17150:6630773,11698856:25952256,513147,134348 +k1,17149:7536340,11698856:219405 +k1,17149:8221706,11698856:219405 +k1,17149:9460196,11698856:219405 +k1,17149:11237392,11698856:219405 +k1,17149:12836985,11698856:219405 +k1,17149:14985770,11698856:219405 +k1,17149:16396620,11698856:219405 +k1,17149:17425395,11698856:219405 +k1,17149:20671908,11698856:219405 +k1,17149:22723700,11698856:219405 +k1,17149:23934665,11698856:219405 +k1,17149:25846210,11698856:219405 +k1,17149:28919053,11698856:219405 +k1,17149:29754496,11698856:219405 +k1,17149:32583029,11698856:0 +) +(1,17150:6630773,12563936:25952256,505283,134348 +k1,17149:8126108,12563936:210829 +k1,17149:9812152,12563936:210829 +k1,17149:13573066,12563936:210829 +k1,17149:17291382,12563936:210829 +k1,17149:18786718,12563936:210830 +k1,17149:20101829,12563936:210829 +k1,17149:21060424,12563936:210829 +k1,17149:22784479,12563936:210829 +k1,17149:25572184,12563936:210829 +k1,17149:31028515,12563936:210829 +k1,17149:32583029,12563936:0 +) +(1,17150:6630773,13429016:25952256,513147,134348 +k1,17149:8652371,13429016:251471 +k1,17149:9555270,13429016:251471 +k1,17149:11135811,13429016:251471 +k1,17149:12654748,13429016:251471 +k1,17149:16243312,13429016:251471 +k1,17149:17686228,13429016:251471 +k1,17149:18553737,13429016:251471 +k1,17149:20008448,13429016:251470 +k1,17149:22015629,13429016:251471 +k1,17149:23642701,13429016:251471 +k1,17149:27401659,13429016:251471 +k1,17149:28937636,13429016:251471 +k1,17149:30664322,13429016:251471 +k1,17149:31601955,13429016:251471 +k1,17150:32583029,13429016:0 +) +(1,17150:6630773,14294096:25952256,513147,134348 +k1,17149:8393689,14294096:265418 +(1,17149:8393689,14294096:0,452978,115847 +r1,17181:13675920,14294096:5282231,568825,115847 +k1,17149:8393689,14294096:-5282231 +) +(1,17149:8393689,14294096:5282231,452978,115847 +k1,17149:8393689,14294096:3277 +h1,17149:13672643,14294096:0,411205,112570 +) +k1,17149:13941339,14294096:265419 +k1,17149:15198317,14294096:265418 +k1,17149:18553758,14294096:265418 +k1,17149:19505338,14294096:265418 +k1,17149:23278244,14294096:265419 +k1,17149:24159700,14294096:265418 +k1,17149:26703805,14294096:265418 +h1,17149:27674393,14294096:0,0,0 +k1,17149:28113481,14294096:265418 +k1,17149:29006735,14294096:265419 +k1,17149:30291238,14294096:265418 +k1,17149:31923737,14294096:265418 +k1,17149:32583029,14294096:0 +) +(1,17150:6630773,15159176:25952256,513147,126483 +k1,17149:8593355,15159176:218669 +k1,17149:10096531,15159176:218670 +k1,17149:11076728,15159176:218669 +k1,17149:13560977,15159176:218669 +k1,17149:14872131,15159176:218669 +k1,17149:16792771,15159176:218670 +k1,17149:20038548,15159176:218669 +k1,17149:21403442,15159176:218669 +(1,17149:21403442,15159176:0,452978,122846 +r1,17181:25982250,15159176:4578808,575824,122846 +k1,17149:21403442,15159176:-4578808 +) +(1,17149:21403442,15159176:4578808,452978,122846 +k1,17149:21403442,15159176:3277 +h1,17149:25978973,15159176:0,411205,112570 +) +k1,17149:26200919,15159176:218669 +k1,17149:27795190,15159176:218670 +k1,17149:29032944,15159176:218669 +k1,17149:32583029,15159176:0 +) +(1,17150:6630773,16024256:25952256,513147,126483 +g1,17149:9526809,16024256 +(1,17149:9526809,16024256:0,452978,115847 +r1,17181:14105617,16024256:4578808,568825,115847 +k1,17149:9526809,16024256:-4578808 +) +(1,17149:9526809,16024256:4578808,452978,115847 +k1,17149:9526809,16024256:3277 +h1,17149:14102340,16024256:0,411205,112570 +) +g1,17149:14304846,16024256 +g1,17149:15451726,16024256 +g1,17149:16854196,16024256 +g1,17149:19888512,16024256 +g1,17149:21079301,16024256 +g1,17149:24368553,16024256 +g1,17149:25183820,16024256 +g1,17149:27661736,16024256 +h1,17149:28632324,16024256:0,0,0 +k1,17150:32583029,16024256:3777035 +g1,17150:32583029,16024256 +) +(1,17152:6630773,16889336:25952256,505283,134348 +h1,17151:6630773,16889336:983040,0,0 +k1,17151:8340056,16889336:238655 +k1,17151:10604468,16889336:238694 +k1,17151:11947444,16889336:238694 +k1,17151:13661353,16889336:238694 +k1,17151:14255908,16889336:238695 +k1,17151:16367621,16889336:238694 +k1,17151:18164106,16889336:238694 +k1,17151:19085685,16889336:238694 +k1,17151:21076157,16889336:238695 +k1,17151:23376614,16889336:238694 +k1,17151:24687477,16889336:238694 +k1,17151:26624210,16889336:238695 +k1,17151:29218923,16889336:238694 +k1,17151:30932832,16889336:238694 +k1,17151:32583029,16889336:0 +) +(1,17152:6630773,17754416:25952256,513147,134348 +k1,17151:8328632,17754416:255412 +k1,17151:9740753,17754416:255411 +k1,17151:11727626,17754416:255412 +k1,17151:13002123,17754416:255412 +k1,17151:14646898,17754416:255412 +k1,17151:16426021,17754416:255411 +k1,17151:21075622,17754416:255412 +k1,17151:22522479,17754416:255412 +k1,17151:26173311,17754416:255412 +k1,17151:27088014,17754416:255411 +k1,17151:30293201,17754416:255412 +k1,17151:32583029,17754416:0 +) +(1,17152:6630773,18619496:25952256,513147,134348 +k1,17151:8574214,18619496:260476 +k1,17151:10497337,18619496:260475 +k1,17151:15330915,18619496:260476 +k1,17151:16539042,18619496:260476 +k1,17151:18251140,18619496:260476 +k1,17151:20243076,18619496:260475 +k1,17151:21321441,18619496:260476 +k1,17151:24999620,18619496:260476 +k1,17151:27289091,18619496:260476 +k1,17151:29151266,18619496:260475 +k1,17151:31767761,18619496:260476 +k1,17151:32583029,18619496:0 +) +(1,17152:6630773,19484576:25952256,513147,126483 +k1,17151:7856851,19484576:159807 +k1,17151:9491873,19484576:159807 +k1,17151:11102647,19484576:159807 +k1,17151:15269325,19484576:159807 +k1,17151:17490895,19484576:159807 +k1,17151:18722871,19484576:159807 +k1,17151:19901762,19484576:159806 +k1,17151:21949661,19484576:159807 +k1,17151:23846172,19484576:159807 +k1,17151:25025064,19484576:159807 +k1,17151:26838344,19484576:159807 +k1,17151:28387514,19484576:159807 +k1,17151:29738766,19484576:159807 +k1,17151:32583029,19484576:0 +) +(1,17152:6630773,20349656:25952256,513147,134348 +k1,17151:9945181,20349656:176544 +k1,17151:10734487,20349656:176544 +k1,17151:11930116,20349656:176544 +k1,17151:13800765,20349656:176544 +k1,17151:16003682,20349656:176544 +k1,17151:16839518,20349656:176544 +k1,17151:18219302,20349656:176543 +k1,17151:20084053,20349656:176544 +k1,17151:24654786,20349656:176544 +k1,17151:25447368,20349656:176544 +k1,17151:27512004,20349656:176544 +k1,17151:28680108,20349656:176544 +k1,17151:30985917,20349656:176544 +k1,17152:32583029,20349656:0 +) +(1,17152:6630773,21214736:25952256,513147,134348 +k1,17151:9485240,21214736:231716 +k1,17151:10376249,21214736:231717 +k1,17151:12351878,21214736:231716 +k1,17151:13199633,21214736:231717 +k1,17151:15133319,21214736:231716 +k1,17151:17426799,21214736:231717 +k1,17151:19729453,21214736:231716 +k1,17151:21245675,21214736:231716 +k1,17151:22425043,21214736:231717 +k1,17151:23012619,21214736:231716 +k1,17151:24939097,21214736:231717 +k1,17151:28015076,21214736:231716 +k1,17151:29622394,21214736:231717 +k1,17151:31010820,21214736:231716 +k1,17151:32583029,21214736:0 +) +(1,17152:6630773,22079816:25952256,513147,126483 +k1,17151:7446142,22079816:283872 +k1,17151:10179749,22079816:283871 +k1,17151:11520061,22079816:283872 +k1,17151:13254899,22079816:283871 +k1,17151:14919615,22079816:283872 +k1,17151:15734983,22079816:283871 +k1,17151:19656103,22079816:283872 +k1,17151:21131419,22079816:283871 +k1,17151:23461325,22079816:283872 +k1,17151:24203293,22079816:283871 +k1,17151:26459799,22079816:283872 +k1,17151:30194796,22079816:283871 +k1,17151:31426319,22079816:283872 +k1,17151:32583029,22079816:0 +) +(1,17152:6630773,22944896:25952256,513147,134348 +g1,17151:9674265,22944896 +g1,17151:10524922,22944896 +g1,17151:11471917,22944896 +g1,17151:14445940,22944896 +g1,17151:17407512,22944896 +g1,17151:20665306,22944896 +g1,17151:21480573,22944896 +g1,17151:24442145,22944896 +g1,17151:26529466,22944896 +g1,17151:27387987,22944896 +g1,17151:28606301,22944896 +g1,17151:30459003,22944896 +k1,17152:32583029,22944896:673059 +g1,17152:32583029,22944896 +) +(1,17156:6630773,25061714:25952256,555811,12975 +(1,17156:6630773,25061714:2450326,534184,12975 +g1,17156:6630773,25061714 +g1,17156:9081099,25061714 +) +g1,17156:10708162,25061714 +k1,17156:32583029,25061714:17284922 +g1,17156:32583029,25061714 +) +(1,17160:6630773,26320010:25952256,513147,134348 +k1,17159:7700695,26320010:252033 +k1,17159:8971812,26320010:252032 +k1,17159:10316330,26320010:252033 +k1,17159:11227655,26320010:252033 +k1,17159:12498772,26320010:252032 +k1,17159:15653395,26320010:252033 +k1,17159:16436924,26320010:252032 +k1,17159:18559355,26320010:252033 +k1,17159:19462816,26320010:252033 +k1,17159:23747934,26320010:252032 +k1,17159:24761495,26320010:252033 +k1,17159:27674945,26320010:252033 +k1,17159:29369424,26320010:252032 +k1,17159:30272885,26320010:252033 +k1,17159:32583029,26320010:0 +) +(1,17160:6630773,27185090:25952256,513147,134348 +k1,17159:8220526,27185090:195802 +k1,17159:10544936,27185090:195801 +k1,17159:10953727,27185090:195799 +k1,17159:12281990,27185090:195801 +k1,17159:14138474,27185090:195802 +k1,17159:15664656,27185090:195801 +k1,17159:16511886,27185090:195802 +k1,17159:18350020,27185090:195802 +k1,17159:20153419,27185090:195801 +k1,17159:21008513,27185090:195802 +k1,17159:24466042,27185090:195802 +k1,17159:28341034,27185090:195801 +k1,17159:31015408,27185090:195802 +k1,17159:32583029,27185090:0 +) +(1,17160:6630773,28050170:25952256,513147,134348 +k1,17159:7824990,28050170:175132 +k1,17159:10712003,28050170:175133 +k1,17159:13690765,28050170:175132 +k1,17159:14763741,28050170:175133 +k1,17159:17808039,28050170:175132 +k1,17159:18642464,28050170:175133 +k1,17159:19173456,28050170:175132 +k1,17159:20625886,28050170:175133 +k1,17159:22276233,28050170:175132 +k1,17159:25220917,28050170:175133 +k1,17159:28227204,28050170:175132 +k1,17159:29018375,28050170:175133 +k1,17159:30885647,28050170:175132 +k1,17159:32583029,28050170:0 +) +(1,17160:6630773,28915250:25952256,513147,126483 +k1,17159:8613439,28915250:285939 +k1,17159:11495258,28915250:285938 +k1,17159:13624069,28915250:285939 +k1,17159:14526045,28915250:285938 +k1,17159:16818041,28915250:285939 +k1,17159:18885248,28915250:285938 +k1,17159:21849643,28915250:285939 +k1,17159:23851314,28915250:285938 +k1,17159:24595350,28915250:285939 +k1,17159:27511248,28915250:285938 +k1,17159:28448615,28915250:285939 +k1,17159:30663933,28915250:285938 +k1,17159:31305732,28915250:285939 +k1,17159:32583029,28915250:0 +) +(1,17160:6630773,29780330:25952256,513147,134348 +k1,17159:8220122,29780330:235375 +k1,17159:11814217,29780330:235375 +k1,17159:13832827,29780330:235375 +k1,17159:16700783,29780330:235375 +k1,17159:17292018,29780330:235375 +k1,17159:18804690,29780330:235375 +k1,17159:20395349,29780330:235374 +k1,17159:21392252,29780330:235375 +k1,17159:23156582,29780330:235375 +k1,17159:24260309,29780330:235375 +k1,17159:25599966,29780330:235375 +k1,17159:28566226,29780330:235375 +k1,17159:29820686,29780330:235375 +k1,17159:32583029,29780330:0 +) +(1,17160:6630773,30645410:25952256,513147,134348 +k1,17159:9212073,30645410:206275 +k1,17159:12508370,30645410:206274 +k1,17159:13330683,30645410:206275 +k1,17159:14556042,30645410:206274 +k1,17159:17516795,30645410:206275 +k1,17159:20175426,30645410:206274 +k1,17159:21400786,30645410:206275 +k1,17159:24538485,30645410:206274 +k1,17159:25404052,30645410:206275 +k1,17159:26629411,30645410:206274 +k1,17159:28968883,30645410:206275 +k1,17159:30194242,30645410:206274 +k1,17159:32583029,30645410:0 +) +(1,17160:6630773,31510490:25952256,513147,126483 +k1,17159:9107832,31510490:144633 +k1,17159:10443910,31510490:144633 +k1,17159:11607627,31510490:144632 +k1,17159:16919774,31510490:144633 +k1,17159:19436155,31510490:144633 +k1,17159:20232216,31510490:144633 +k1,17159:21395933,31510490:144632 +k1,17159:22929929,31510490:144633 +k1,17159:23690600,31510490:144633 +k1,17159:24854318,31510490:144633 +k1,17159:26700920,31510490:144632 +k1,17159:29480756,31510490:144633 +k1,17159:30644474,31510490:144633 +k1,17159:32583029,31510490:0 +) +(1,17160:6630773,32375570:25952256,513147,134348 +k1,17159:8893406,32375570:224463 +k1,17159:9733906,32375570:224462 +k1,17159:10729072,32375570:224463 +k1,17159:12913060,32375570:224462 +k1,17159:14328968,32375570:224463 +k1,17159:16942218,32375570:224463 +k1,17159:19499106,32375570:224462 +k1,17159:20351404,32375570:224463 +k1,17159:21779107,32375570:224462 +k1,17159:24282257,32375570:224463 +k1,17159:24719686,32375570:224437 +k1,17159:28371682,32375570:224463 +k1,17159:29615229,32375570:224462 +k1,17159:31923737,32375570:224463 +k1,17159:32583029,32375570:0 +) +(1,17160:6630773,33240650:25952256,505283,134348 +g1,17159:7849087,33240650 +g1,17159:10950906,33240650 +g1,17159:12341580,33240650 +g1,17159:13871190,33240650 +g1,17159:14528516,33240650 +g1,17159:17959981,33240650 +g1,17159:19426676,33240650 +g1,17159:19981765,33240650 +k1,17160:32583029,33240650:11150297 +g1,17160:32583029,33240650 +) +v1,17162:6630773,34105730:0,393216,0 +(1,17163:6630773,36270671:25952256,2558157,0 +g1,17163:6630773,36270671 +g1,17163:6237557,36270671 +r1,17181:6368629,36270671:131072,2558157,0 +g1,17163:6567858,36270671 +g1,17163:6764466,36270671 +[1,17163:6764466,36270671:25818563,2558157,0 +(1,17163:6764466,34414028:25818563,701514,196608 +(1,17162:6764466,34414028:0,701514,196608 +r1,17181:8863446,34414028:2098980,898122,196608 +k1,17162:6764466,34414028:-2098980 +) +(1,17162:6764466,34414028:2098980,701514,196608 +) +k1,17162:9069300,34414028:205854 +k1,17162:10387229,34414028:327680 +k1,17162:12376317,34414028:205853 +k1,17162:14984721,34414028:205854 +k1,17162:16393816,34414028:205854 +k1,17162:19052026,34414028:205853 +k1,17162:21901602,34414028:205854 +k1,17162:22463315,34414028:205853 +k1,17162:24910500,34414028:205854 +k1,17162:26715432,34414028:205854 +k1,17162:28013770,34414028:205853 +(1,17162:28013770,34414028:0,452978,115847 +r1,17181:31185730,34414028:3171960,568825,115847 +k1,17162:28013770,34414028:-3171960 +) +(1,17162:28013770,34414028:3171960,452978,115847 +k1,17162:28013770,34414028:3277 +h1,17162:31182453,34414028:0,411205,112570 +) +k1,17162:31391584,34414028:205854 +k1,17163:32583029,34414028:0 +) +(1,17163:6764466,35279108:25818563,505283,134348 +(1,17162:6764466,35279108:0,452978,115847 +r1,17181:8529579,35279108:1765113,568825,115847 +k1,17162:6764466,35279108:-1765113 +) +(1,17162:6764466,35279108:1765113,452978,115847 +k1,17162:6764466,35279108:3277 +h1,17162:8526302,35279108:0,411205,112570 +) +k1,17162:8755122,35279108:225543 +k1,17162:9666827,35279108:225543 +k1,17162:12982393,35279108:225543 +k1,17162:13823975,35279108:225544 +k1,17162:15068603,35279108:225543 +k1,17162:18048624,35279108:225543 +k1,17162:20552854,35279108:225543 +k1,17162:21429825,35279108:225543 +k1,17162:24023839,35279108:225543 +k1,17162:25579764,35279108:225544 +(1,17162:25579764,35279108:0,452978,122846 +r1,17181:26993165,35279108:1413401,575824,122846 +k1,17162:25579764,35279108:-1413401 +) +(1,17162:25579764,35279108:1413401,452978,122846 +k1,17162:25579764,35279108:3277 +h1,17162:26989888,35279108:0,411205,112570 +) +k1,17162:27218708,35279108:225543 +k1,17162:28721548,35279108:225543 +k1,17162:31236919,35279108:225543 +k1,17162:32583029,35279108:0 +) +(1,17163:6764466,36144188:25818563,513147,126483 +g1,17162:8246890,36144188 +g1,17162:11069525,36144188 +g1,17162:15196327,36144188 +g1,17162:16081718,36144188 +g1,17162:17300032,36144188 +g1,17162:19393251,36144188 +g1,17162:20540131,36144188 +g1,17162:21758445,36144188 +g1,17162:23234971,36144188 +g1,17162:25773180,36144188 +g1,17162:26588447,36144188 +k1,17163:32583029,36144188:2315391 +g1,17163:32583029,36144188 +) +] +g1,17163:32583029,36270671 +) +h1,17163:6630773,36270671:0,0,0 +(1,17166:6630773,37135751:25952256,513147,134348 +h1,17165:6630773,37135751:983040,0,0 +k1,17165:8744620,37135751:177258 +k1,17165:10410201,37135751:177258 +k1,17165:11348987,37135751:177258 +k1,17165:13261638,37135751:177258 +k1,17165:16134392,37135751:177258 +(1,17165:16134392,37135751:0,452978,122846 +r1,17181:18954641,37135751:2820249,575824,122846 +k1,17165:16134392,37135751:-2820249 +) +(1,17165:16134392,37135751:2820249,452978,122846 +k1,17165:16134392,37135751:3277 +h1,17165:18951364,37135751:0,411205,112570 +) +k1,17165:19131899,37135751:177258 +k1,17165:19960585,37135751:177258 +k1,17165:22067223,37135751:177258 +k1,17165:23263566,37135751:177258 +k1,17165:26129766,37135751:177258 +k1,17165:27254675,37135751:177258 +k1,17165:27787793,37135751:177258 +k1,17165:29416018,37135751:177258 +k1,17165:31478747,37135751:177258 +k1,17165:32583029,37135751:0 +) +(1,17166:6630773,38000831:25952256,505283,126483 +g1,17165:7577768,38000831 +g1,17165:11000058,38000831 +g1,17165:12271456,38000831 +g1,17165:13756501,38000831 +g1,17165:16305851,38000831 +g1,17165:17191242,38000831 +g1,17165:18095638,38000831 +g1,17165:18784421,38000831 +g1,17165:20171162,38000831 +g1,17165:21733540,38000831 +g1,17165:22713303,38000831 +g1,17165:24340562,38000831 +g1,17165:25214812,38000831 +k1,17166:32583029,38000831:5305144 +g1,17166:32583029,38000831 +) +v1,17168:6630773,38685686:0,393216,0 +(1,17172:6630773,39026369:25952256,733899,196608 +g1,17172:6630773,39026369 +g1,17172:6630773,39026369 +g1,17172:6434165,39026369 +(1,17172:6434165,39026369:0,733899,196608 +r1,17181:32779637,39026369:26345472,930507,196608 +k1,17172:6434165,39026369:-26345472 +) +(1,17172:6434165,39026369:26345472,733899,196608 +[1,17172:6630773,39026369:25952256,537291,0 +(1,17170:6630773,38913517:25952256,424439,112852 +(1,17169:6630773,38913517:0,0,0 +g1,17169:6630773,38913517 +g1,17169:6630773,38913517 +g1,17169:6303093,38913517 +(1,17169:6303093,38913517:0,0,0 +) +g1,17169:6630773,38913517 +) +k1,17170:6630773,38913517:0 +h1,17170:9286405,38913517:0,0,0 +k1,17170:32583029,38913517:23296624 +g1,17170:32583029,38913517 +) +] +) +g1,17172:32583029,39026369 +g1,17172:6630773,39026369 +g1,17172:6630773,39026369 +g1,17172:32583029,39026369 +g1,17172:32583029,39026369 +) +h1,17172:6630773,39222977:0,0,0 +] +(1,17181:32583029,45706769:0,0,0 +g1,17181:32583029,45706769 +) +) +] +(1,17181:6630773,47279633:25952256,0,0 +h1,17181:6630773,47279633:25952256,0,0 +) +] +(1,17181:4262630,4025873:0,0,0 +[1,17181:-473656,4025873:0,0,0 +(1,17181:-473656,-710413:0,0,0 +(1,17181:-473656,-710413:0,0,0 +g1,17181:-473656,-710413 +) +g1,17181:-473656,-710413 +) +] +) +] +!24332 +}279 +Input:2526:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2527:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2528:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2529:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2530:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2531:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2532:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2533:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2534:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2535:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!952 +{280 +[1,17211:4262630,47279633:28320399,43253760,0 +(1,17211:4262630,4025873:0,0,0 +[1,17211:-473656,4025873:0,0,0 +(1,17211:-473656,-710413:0,0,0 +(1,17211:-473656,-644877:0,0,0 +k1,17211:-473656,-644877:-65536 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +(1,17211:-473656,4736287:0,0,0 +k1,17211:-473656,4736287:5209943 +) +g1,17211:-473656,-710413 ) ] ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,17127:37855564,49800853:1179648,16384,0 +[1,17211:6630773,47279633:25952256,43253760,0 +[1,17211:6630773,4812305:25952256,786432,0 +(1,17211:6630773,4812305:25952256,513147,134348 +(1,17211:6630773,4812305:25952256,513147,134348 +g1,17211:3078558,4812305 +[1,17211:3078558,4812305:0,0,0 +(1,17211:3078558,2439708:0,1703936,0 +k1,17211:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,17211:2537886,2439708:1179648,16384,0 ) +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,17211:3078558,1915420:16384,1179648,0 ) -k1,17127:3078556,49800853:-34777008 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] -g1,17127:6630773,4812305 -k1,17127:21350816,4812305:13524666 -g1,17127:21999622,4812305 -g1,17127:25611966,4812305 -g1,17127:28956923,4812305 -g1,17127:29772190,4812305 ) ) -] -[1,17127:6630773,45706769:25952256,40108032,0 -(1,17127:6630773,45706769:25952256,40108032,0 -(1,17127:6630773,45706769:0,0,0 -g1,17127:6630773,45706769 ) -[1,17127:6630773,45706769:25952256,40108032,0 -v1,17095:6630773,6254097:0,393216,0 -(1,17095:6630773,7901549:25952256,2040668,196608 -g1,17095:6630773,7901549 -g1,17095:6630773,7901549 -g1,17095:6434165,7901549 -(1,17095:6434165,7901549:0,2040668,196608 -r1,17127:32779637,7901549:26345472,2237276,196608 -k1,17095:6434165,7901549:-26345472 +] +[1,17211:3078558,4812305:0,0,0 +(1,17211:3078558,2439708:0,1703936,0 +g1,17211:29030814,2439708 +g1,17211:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,17211:36151628,1915420:16384,1179648,0 ) -(1,17095:6434165,7901549:26345472,2040668,196608 -[1,17095:6630773,7901549:25952256,1844060,0 -(1,17091:6630773,6461715:25952256,404226,107478 -h1,17091:6630773,6461715:0,0,0 -g1,17091:6946919,6461715 -g1,17091:7263065,6461715 -g1,17091:11372959,6461715 -h1,17091:11689105,6461715:0,0,0 -k1,17091:32583029,6461715:20893924 -g1,17091:32583029,6461715 -) -(1,17092:6630773,7127893:25952256,410518,107478 -h1,17092:6630773,7127893:0,0,0 -g1,17092:6946919,7127893 -g1,17092:7263065,7127893 -g1,17092:12637542,7127893 -g1,17092:13269834,7127893 -g1,17092:15799000,7127893 -g1,17092:18012020,7127893 -g1,17092:18644312,7127893 -g1,17092:20541187,7127893 -g1,17092:23070353,7127893 -g1,17092:23702645,7127893 -g1,17092:24334937,7127893 -g1,17092:24967229,7127893 -g1,17092:25915666,7127893 -h1,17092:26231812,7127893:0,0,0 -k1,17092:32583029,7127893:6351217 -g1,17092:32583029,7127893 -) -(1,17093:6630773,7794071:25952256,404226,107478 -h1,17093:6630773,7794071:0,0,0 -g1,17093:6946919,7794071 -g1,17093:7263065,7794071 -k1,17093:7263065,7794071:0 -h1,17093:12005250,7794071:0,0,0 -k1,17093:32583030,7794071:20577780 -g1,17093:32583030,7794071 -) -] -) -g1,17095:32583029,7901549 -g1,17095:6630773,7901549 -g1,17095:6630773,7901549 -g1,17095:32583029,7901549 -g1,17095:32583029,7901549 -) -h1,17095:6630773,8098157:0,0,0 -(1,17098:6630773,17636895:25952256,9083666,0 -k1,17098:10523651,17636895:3892878 -h1,17097:10523651,17636895:0,0,0 -(1,17097:10523651,17636895:18166500,9083666,0 -(1,17097:10523651,17636895:18167376,9083688,0 -(1,17097:10523651,17636895:18167376,9083688,0 -(1,17097:10523651,17636895:0,9083688,0 -(1,17097:10523651,17636895:0,14208860,0 -(1,17097:10523651,17636895:28417720,14208860,0 -) -k1,17097:10523651,17636895:-28417720 -) -) -g1,17097:28691027,17636895 -) -) -) -g1,17098:28690151,17636895 -k1,17098:32583029,17636895:3892878 -) -(1,17105:6630773,18478383:25952256,513147,134348 -h1,17104:6630773,18478383:983040,0,0 -k1,17104:9020917,18478383:210417 -k1,17104:11011948,18478383:210418 -k1,17104:13037057,18478383:210417 -k1,17104:13906766,18478383:210417 -k1,17104:14473044,18478383:210418 -k1,17104:16255670,18478383:210417 -k1,17104:17570370,18478383:210418 -k1,17104:18528553,18478383:210417 -k1,17104:19673513,18478383:210417 -k1,17104:22990338,18478383:210418 -k1,17104:25527938,18478383:210417 -k1,17104:26397647,18478383:210417 -k1,17104:30924922,18478383:210418 -k1,17104:31821501,18478383:210417 -k1,17104:32583029,18478383:0 -) -(1,17105:6630773,19319871:25952256,513147,95026 -k1,17104:9352781,19319871:282758 -k1,17104:11509869,19319871:282758 -k1,17104:13607319,19319871:282758 -k1,17104:15819457,19319871:282758 -k1,17104:16458075,19319871:282758 -k1,17104:18820290,19319871:282758 -k1,17104:21526569,19319871:282758 -k1,17104:23011913,19319871:282758 -k1,17104:24280332,19319871:282758 -k1,17104:26169378,19319871:282758 -k1,17104:30979363,19319871:282758 -k1,17104:32583029,19319871:0 -) -(1,17105:6630773,20161359:25952256,505283,126483 -k1,17104:11064338,20161359:188143 -k1,17104:12996393,20161359:188142 -k1,17104:15550386,20161359:188143 -k1,17104:16757614,20161359:188143 -k1,17104:18517966,20161359:188143 -k1,17104:20520800,20161359:188142 -k1,17104:22936512,20161359:188143 -k1,17104:25344359,20161359:188143 -k1,17104:26723947,20161359:188143 -k1,17104:27903649,20161359:188142 -k1,17104:29158063,20161359:188143 -k1,17104:31931601,20161359:188143 -k1,17104:32583029,20161359:0 -) -(1,17105:6630773,21002847:25952256,505283,134348 -k1,17104:11665613,21002847:135368 -k1,17104:13497708,21002847:135368 -k1,17104:17704828,21002847:135368 -k1,17104:18831756,21002847:135368 -k1,17104:20033396,21002847:135369 -k1,17104:22927174,21002847:135368 -k1,17104:23678580,21002847:135368 -k1,17104:24833033,21002847:135368 -k1,17104:27918176,21002847:135368 -k1,17104:32583029,21002847:0 -) -(1,17105:6630773,21844335:25952256,505283,134348 -k1,17104:7520394,21844335:206736 -k1,17104:9240356,21844335:206736 -k1,17104:10063131,21844335:206737 -k1,17104:14245281,21844335:206736 -k1,17104:17446357,21844335:206736 -k1,17104:19351131,21844335:206736 -k1,17104:21293260,21844335:206736 -k1,17104:24182385,21844335:206736 -k1,17104:25408207,21844335:206737 -k1,17104:30009132,21844335:206736 -k1,17104:31207428,21844335:206736 -k1,17104:32583029,21844335:0 -) -(1,17105:6630773,22685823:25952256,513147,126483 -k1,17104:9202453,22685823:199932 -k1,17104:10053812,22685823:199931 -k1,17104:14325496,22685823:199932 -k1,17104:15809933,22685823:199931 -k1,17104:17040746,22685823:199932 -k1,17104:19250666,22685823:199931 -k1,17104:20469683,22685823:199932 -k1,17104:22484306,22685823:199931 -k1,17104:23343530,22685823:199932 -k1,17104:24309577,22685823:199931 -k1,17104:26412019,22685823:199932 -k1,17104:27227988,22685823:199931 -k1,17104:28694076,22685823:199932 -k1,17104:30768337,22685823:199931 -k1,17104:32583029,22685823:0 -) -(1,17105:6630773,23527311:25952256,513147,134348 -k1,17104:9790264,23527311:172360 -k1,17104:11741925,23527311:172359 -k1,17104:12933370,23527311:172360 -k1,17104:15630176,23527311:172359 -k1,17104:17149956,23527311:172360 -k1,17104:19020353,23527311:172359 -k1,17104:20211798,23527311:172360 -k1,17104:22908605,23527311:172360 -k1,17104:24428384,23527311:172359 -k1,17104:25132241,23527311:172360 -k1,17104:29621457,23527311:172359 -k1,17104:30728360,23527311:172360 -k1,17104:32583029,23527311:0 -) -(1,17105:6630773,24368799:25952256,513147,134348 -k1,17104:7629308,24368799:189165 -k1,17104:8837558,24368799:189165 -k1,17104:10807336,24368799:189165 -k1,17104:11655792,24368799:189164 -k1,17104:12864042,24368799:189165 -k1,17104:15270290,24368799:189165 -k1,17104:17481241,24368799:189165 -k1,17104:21181825,24368799:189165 -k1,17104:22390075,24368799:189165 -k1,17104:25386802,24368799:189165 -k1,17104:26227394,24368799:189164 -k1,17104:28427204,24368799:189165 -k1,17104:29275661,24368799:189165 -k1,17104:29820686,24368799:189165 -k1,17104:32583029,24368799:0 -) -(1,17105:6630773,25210287:25952256,513147,134348 -k1,17104:10000886,25210287:195549 -k1,17104:11533370,25210287:195550 -k1,17104:13969595,25210287:195549 -k1,17104:15863182,25210287:195549 -k1,17104:16414592,25210287:195550 -k1,17104:18690254,25210287:195549 -k1,17104:19545095,25210287:195549 -k1,17104:20759729,25210287:195549 -k1,17104:22344642,25210287:195550 -k1,17104:23531751,25210287:195549 -k1,17104:26315972,25210287:195549 -k1,17104:27273050,25210287:195550 -k1,17104:30401335,25210287:195549 -k1,17104:32583029,25210287:0 -) -(1,17105:6630773,26051775:25952256,513147,7863 -g1,17104:7849087,26051775 -g1,17104:9863008,26051775 -g1,17104:10721529,26051775 -g1,17104:11276618,26051775 -k1,17105:32583029,26051775:19560532 -g1,17105:32583029,26051775 -) -(1,17107:6630773,26893263:25952256,513147,126483 -h1,17106:6630773,26893263:983040,0,0 -k1,17106:8440373,26893263:198725 -k1,17106:11270370,26893263:198726 -k1,17106:12120523,26893263:198725 -k1,17106:13854101,26893263:198725 -k1,17106:15934365,26893263:198726 -k1,17106:19777547,26893263:198725 -k1,17106:22671768,26893263:198725 -k1,17106:23556655,26893263:198725 -k1,17106:24111241,26893263:198726 -k1,17106:26751837,26893263:198725 -k1,17106:28408738,26893263:198725 -k1,17106:29874930,26893263:198726 -k1,17106:31092740,26893263:198725 -k1,17107:32583029,26893263:0 -) -(1,17107:6630773,27734751:25952256,513147,134348 -k1,17106:8111382,27734751:233459 -k1,17106:9865933,27734751:233460 -k1,17106:11290837,27734751:233459 -k1,17106:12339564,27734751:233459 -k1,17106:13639295,27734751:233460 -k1,17106:15652056,27734751:233459 -k1,17106:17770986,27734751:233459 -k1,17106:22076197,27734751:233459 -k1,17106:23301217,27734751:233460 -k1,17106:25577433,27734751:233459 -k1,17106:26462320,27734751:233459 -k1,17106:29528901,27734751:233460 -k1,17106:30959047,27734751:233459 -k1,17107:32583029,27734751:0 -) -(1,17107:6630773,28576239:25952256,505283,134348 -k1,17106:8811930,28576239:184275 -k1,17106:11415795,28576239:184276 -k1,17106:12286232,28576239:184275 -k1,17106:15483197,28576239:184275 -k1,17106:16198969,28576239:184275 -k1,17106:17669061,28576239:184276 -k1,17106:21518109,28576239:184275 -k1,17106:22463912,28576239:184275 -k1,17106:23851428,28576239:184275 -k1,17106:26938294,28576239:184276 -k1,17106:31714677,28576239:184275 -k1,17106:32583029,28576239:0 -) -(1,17107:6630773,29417727:25952256,513147,138281 -k1,17106:7885071,29417727:161813 -k1,17106:10931124,29417727:161814 -k1,17106:14831111,29417727:161813 -k1,17106:16878396,29417727:161814 -k1,17106:18031769,29417727:161813 -k1,17106:19212667,29417727:161813 -k1,17106:21813731,29417727:161814 -k1,17106:23047713,29417727:161813 -k1,17106:24077878,29417727:161813 -k1,17106:27172428,29417727:161814 -k1,17106:28268784,29417727:161813 -$1,17106:28268784,29417727 -$1,17106:28820597,29417727 -k1,17106:28982411,29417727:161814 -k1,17106:31132586,29417727:161813 -k1,17106:32583029,29417727:0 -) -(1,17107:6630773,30259215:25952256,505283,120913 -$1,17106:7238292,30259215 -g1,17106:7424676,30259215 -g1,17106:8565395,30259215 -$1,17106:8565395,30259215 -$1,17106:9172914,30259215 -g1,17106:9359298,30259215 -g1,17106:10612674,30259215 -$1,17106:10612674,30259215 -$1,17106:11220193,30259215 -g1,17106:11406577,30259215 -g1,17106:13202001,30259215 -$1,17106:13202001,30259215 -$1,17106:13809520,30259215 -g1,17106:13995904,30259215 -g1,17106:17232268,30259215 -$1,17106:17232268,30259215 -$1,17106:17839787,30259215 -g1,17106:18026171,30259215 -g1,17106:20006800,30259215 -$1,17106:20006800,30259215 -$1,17106:20614319,30259215 -g1,17106:20800703,30259215 -g1,17106:22793128,30259215 -k1,17107:32583029,30259215:7831620 -g1,17107:32583029,30259215 -) -v1,17109:6630773,31314930:0,393216,0 -(1,17117:6630773,34288447:25952256,3366733,196608 -g1,17117:6630773,34288447 -g1,17117:6630773,34288447 -g1,17117:6434165,34288447 -(1,17117:6434165,34288447:0,3366733,196608 -r1,17127:32779637,34288447:26345472,3563341,196608 -k1,17117:6434165,34288447:-26345472 -) -(1,17117:6434165,34288447:26345472,3366733,196608 -[1,17117:6630773,34288447:25952256,3170125,0 -(1,17111:6630773,31522548:25952256,404226,107478 -(1,17110:6630773,31522548:0,0,0 -g1,17110:6630773,31522548 -g1,17110:6630773,31522548 -g1,17110:6303093,31522548 -(1,17110:6303093,31522548:0,0,0 -) -g1,17110:6630773,31522548 -) -k1,17111:6630773,31522548:0 -g1,17111:10424522,31522548 -g1,17111:11056814,31522548 -k1,17111:11056814,31522548:0 -h1,17111:13269834,31522548:0,0,0 -k1,17111:32583030,31522548:19313196 -g1,17111:32583030,31522548 -) -(1,17112:6630773,32188726:25952256,404226,107478 -h1,17112:6630773,32188726:0,0,0 -g1,17112:6946919,32188726 -g1,17112:7263065,32188726 -g1,17112:7579211,32188726 -g1,17112:7895357,32188726 -g1,17112:8211503,32188726 -g1,17112:8527649,32188726 -g1,17112:8843795,32188726 -g1,17112:10740670,32188726 -g1,17112:11372962,32188726 -g1,17112:13269837,32188726 -g1,17112:13902129,32188726 -g1,17112:14534421,32188726 -g1,17112:16431295,32188726 -h1,17112:16747441,32188726:0,0,0 -k1,17112:32583029,32188726:15835588 -g1,17112:32583029,32188726 -) -(1,17113:6630773,32854904:25952256,404226,107478 -h1,17113:6630773,32854904:0,0,0 -g1,17113:6946919,32854904 -g1,17113:7263065,32854904 -g1,17113:11372959,32854904 -h1,17113:11689105,32854904:0,0,0 -k1,17113:32583029,32854904:20893924 -g1,17113:32583029,32854904 -) -(1,17114:6630773,33521082:25952256,410518,107478 -h1,17114:6630773,33521082:0,0,0 -g1,17114:6946919,33521082 -g1,17114:7263065,33521082 -g1,17114:12637542,33521082 -g1,17114:13269834,33521082 -g1,17114:15799000,33521082 -g1,17114:18012020,33521082 -g1,17114:18644312,33521082 -g1,17114:20541187,33521082 -g1,17114:23070353,33521082 -g1,17114:23702645,33521082 -g1,17114:24334937,33521082 -g1,17114:24967229,33521082 -g1,17114:25915666,33521082 -h1,17114:26231812,33521082:0,0,0 -k1,17114:32583029,33521082:6351217 -g1,17114:32583029,33521082 -) -(1,17115:6630773,34187260:25952256,404226,101187 -h1,17115:6630773,34187260:0,0,0 -g1,17115:6946919,34187260 -g1,17115:7263065,34187260 -g1,17115:13902125,34187260 -g1,17115:14534417,34187260 -g1,17115:16431292,34187260 -h1,17115:17695874,34187260:0,0,0 -k1,17115:32583029,34187260:14887155 -g1,17115:32583029,34187260 -) -] -) -g1,17117:32583029,34288447 -g1,17117:6630773,34288447 -g1,17117:6630773,34288447 -g1,17117:32583029,34288447 -g1,17117:32583029,34288447 -) -h1,17117:6630773,34485055:0,0,0 -(1,17120:6630773,44023793:25952256,9083666,0 -k1,17120:10523651,44023793:3892878 -h1,17119:10523651,44023793:0,0,0 -(1,17119:10523651,44023793:18166500,9083666,0 -(1,17119:10523651,44023793:18167376,9083688,0 -(1,17119:10523651,44023793:18167376,9083688,0 -(1,17119:10523651,44023793:0,9083688,0 -(1,17119:10523651,44023793:0,14208860,0 -(1,17119:10523651,44023793:28417720,14208860,0 -) -k1,17119:10523651,44023793:-28417720 -) -) -g1,17119:28691027,44023793 -) -) -) -g1,17120:28690151,44023793 -k1,17120:32583029,44023793:3892878 -) -(1,17127:6630773,44865281:25952256,513147,126483 -h1,17126:6630773,44865281:983040,0,0 -k1,17126:9072710,44865281:262210 -k1,17126:10719039,44865281:262209 -k1,17126:13642666,44865281:262210 -k1,17126:15327662,44865281:262209 -k1,17126:15945732,44865281:262210 -k1,17126:19615813,44865281:262209 -k1,17126:22123942,44865281:262210 -k1,17126:27397034,44865281:262209 -k1,17126:29442479,44865281:262210 -k1,17126:30723773,44865281:262209 -k1,17127:32583029,44865281:0 -) -(1,17127:6630773,45706769:25952256,513147,134348 -k1,17126:10041813,45706769:220092 -k1,17126:10793401,45706769:220091 -k1,17126:13385241,45706769:220092 -k1,17126:14256760,45706769:220091 -k1,17126:15495937,45706769:220092 -k1,17126:19123901,45706769:220092 -k1,17126:21763581,45706769:220091 -k1,17126:22441770,45706769:220092 -k1,17126:24771465,45706769:220091 -k1,17126:26367158,45706769:220092 -k1,17126:27606334,45706769:220091 -k1,17126:31464329,45706769:220092 -k1,17126:32583029,45706769:0 -) -] -(1,17127:32583029,45706769:0,0,0 -g1,17127:32583029,45706769 -) -) -] -(1,17127:6630773,47279633:25952256,0,0 -h1,17127:6630773,47279633:25952256,0,0 -) -] -(1,17127:4262630,4025873:0,0,0 -[1,17127:-473656,4025873:0,0,0 -(1,17127:-473656,-710413:0,0,0 -(1,17127:-473656,-710413:0,0,0 -g1,17127:-473656,-710413 -) -g1,17127:-473656,-710413 -) -] +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] -!17239 -}297 -!12 -{298 -[1,17168:4262630,47279633:28320399,43253760,0 -(1,17168:4262630,4025873:0,0,0 -[1,17168:-473656,4025873:0,0,0 -(1,17168:-473656,-710413:0,0,0 -(1,17168:-473656,-644877:0,0,0 -k1,17168:-473656,-644877:-65536 ) -(1,17168:-473656,4736287:0,0,0 -k1,17168:-473656,4736287:5209943 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,17211:37855564,2439708:1179648,16384,0 ) -g1,17168:-473656,-710413 ) -] +k1,17211:3078556,2439708:-34777008 ) -[1,17168:6630773,47279633:25952256,43253760,0 -[1,17168:6630773,4812305:25952256,786432,0 -(1,17168:6630773,4812305:25952256,513147,134348 -(1,17168:6630773,4812305:25952256,513147,134348 -g1,17168:3078558,4812305 -[1,17168:3078558,4812305:0,0,0 -(1,17168:3078558,2439708:0,1703936,0 -k1,17168:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,17168:2537886,2439708:1179648,16384,0 +] +[1,17211:3078558,4812305:0,0,0 +(1,17211:3078558,49800853:0,16384,2228224 +k1,17211:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,17211:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,17168:3078558,1915420:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,17211:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,17168:3078558,4812305:0,0,0 -(1,17168:3078558,2439708:0,1703936,0 -g1,17168:29030814,2439708 -g1,17168:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,17168:36151628,1915420:16384,1179648,0 +[1,17211:3078558,4812305:0,0,0 +(1,17211:3078558,49800853:0,16384,2228224 +g1,17211:29030814,49800853 +g1,17211:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,17211:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,17168:37855564,2439708:1179648,16384,0 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,17211:37855564,49800853:1179648,16384,0 ) ) -k1,17168:3078556,2439708:-34777008 +k1,17211:3078556,49800853:-34777008 ) ] -[1,17168:3078558,4812305:0,0,0 -(1,17168:3078558,49800853:0,16384,2228224 -k1,17168:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,17168:2537886,49800853:1179648,16384,0 -) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,17168:3078558,51504789:16384,1179648,0 +g1,17211:6630773,4812305 +g1,17211:6630773,4812305 +g1,17211:8017514,4812305 +g1,17211:11261546,4812305 +g1,17211:12076813,4812305 +g1,17211:14985956,4812305 +k1,17211:31387652,4812305:16401696 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 ) ] +[1,17211:6630773,45706769:25952256,40108032,0 +(1,17211:6630773,45706769:25952256,40108032,0 +(1,17211:6630773,45706769:0,0,0 +g1,17211:6630773,45706769 ) +[1,17211:6630773,45706769:25952256,40108032,0 +(1,17175:6630773,14682403:25952256,9083666,0 +k1,17175:10523651,14682403:3892878 +h1,17174:10523651,14682403:0,0,0 +(1,17174:10523651,14682403:18166500,9083666,0 +(1,17174:10523651,14682403:18167376,9083688,0 +(1,17174:10523651,14682403:18167376,9083688,0 +(1,17174:10523651,14682403:0,9083688,0 +(1,17174:10523651,14682403:0,14208860,0 +(1,17174:10523651,14682403:28417720,14208860,0 +) +k1,17174:10523651,14682403:-28417720 +) +) +g1,17174:28691027,14682403 +) +) +) +g1,17175:28690151,14682403 +k1,17175:32583029,14682403:3892878 +) +(1,17182:6630773,15547483:25952256,513147,126483 +h1,17181:6630773,15547483:983040,0,0 +k1,17181:9041310,15547483:230810 +k1,17181:10549416,15547483:230809 +k1,17181:12635550,15547483:230810 +k1,17181:13397856,15547483:230809 +k1,17181:14287958,15547483:230810 +k1,17181:15991361,15547483:230809 +k1,17181:17314656,15547483:230810 +k1,17181:20005688,15547483:230810 +k1,17181:21368304,15547483:230809 +k1,17181:23162148,15547483:230810 +k1,17181:24117785,15547483:230809 +k1,17181:25216947,15547483:230810 +k1,17181:26831876,15547483:230809 +k1,17181:28499891,15547483:230810 +k1,17181:29086560,15547483:230809 +k1,17181:30706733,15547483:230810 +k1,17181:32583029,15547483:0 +) +(1,17182:6630773,16412563:25952256,505283,134348 +k1,17181:8952887,16412563:188917 +k1,17181:9757842,16412563:188917 +k1,17181:11150000,16412563:188917 +k1,17181:12705998,16412563:188917 +(1,17181:12705998,16412563:0,414482,115847 +r1,17211:14822823,16412563:2116825,530329,115847 +k1,17181:12705998,16412563:-2116825 +) +(1,17181:12705998,16412563:2116825,414482,115847 +k1,17181:12705998,16412563:3277 +h1,17181:14819546,16412563:0,411205,112570 +) +(1,17181:15478183,16412563:0,414482,115847 +r1,17211:17595008,16412563:2116825,530329,115847 +k1,17181:15478183,16412563:-2116825 +) +(1,17181:15478183,16412563:2116825,414482,115847 +k1,17181:15478183,16412563:3277 +h1,17181:17591731,16412563:0,411205,112570 +) +k1,17181:17783925,16412563:188917 +k1,17181:18504339,16412563:188917 +k1,17181:19049116,16412563:188917 +k1,17181:20627395,16412563:188916 +k1,17181:21750855,16412563:188917 +k1,17181:24698182,16412563:188917 +k1,17181:25503137,16412563:188917 +k1,17181:26280567,16412563:188917 +k1,17181:27120912,16412563:188917 +k1,17181:28921359,16412563:188917 +k1,17181:30760473,16412563:188917 +k1,17181:32583029,16412563:0 +) +(1,17182:6630773,17277643:25952256,505283,134348 +k1,17181:8031309,17277643:197295 +k1,17181:9617967,17277643:197295 +k1,17181:10923476,17277643:197295 +k1,17181:12506856,17277643:197294 +(1,17181:12506856,17277643:0,452978,115847 +r1,17211:17437376,17277643:4930520,568825,115847 +k1,17181:12506856,17277643:-4930520 +) +(1,17181:12506856,17277643:4930520,452978,115847 +k1,17181:12506856,17277643:3277 +h1,17181:17434099,17277643:0,411205,112570 +) +k1,17181:17634671,17277643:197295 +k1,17181:18444728,17277643:197295 +k1,17181:19661108,17277643:197295 +k1,17181:20273244,17277643:197293 +k1,17181:23630030,17277643:197295 +k1,17181:26402234,17277643:197294 +k1,17181:28808092,17277643:197295 +k1,17181:29814757,17277643:197295 +k1,17181:31900144,17277643:197295 +k1,17181:32583029,17277643:0 +) +(1,17182:6630773,18142723:25952256,505283,134348 +g1,17181:8575881,18142723 +g1,17181:9794195,18142723 +g1,17181:11836296,18142723 +g1,17181:12567022,18142723 +g1,17181:14052067,18142723 +g1,17181:15021999,18142723 +g1,17181:17227285,18142723 +g1,17181:18797527,18142723 +g1,17181:21521203,18142723 +g1,17181:23241523,18142723 +g1,17181:24878350,18142723 +$1,17181:24878350,18142723 +$1,17181:25485869,18142723 +g1,17181:25672253,18142723 +g1,17181:27664678,18142723 +k1,17182:32583029,18142723:2960070 +g1,17182:32583029,18142723 +) +v1,17184:6630773,18827578:0,393216,0 +(1,17188:6630773,19168261:25952256,733899,196608 +g1,17188:6630773,19168261 +g1,17188:6630773,19168261 +g1,17188:6434165,19168261 +(1,17188:6434165,19168261:0,733899,196608 +r1,17211:32779637,19168261:26345472,930507,196608 +k1,17188:6434165,19168261:-26345472 +) +(1,17188:6434165,19168261:26345472,733899,196608 +[1,17188:6630773,19168261:25952256,537291,0 +(1,17186:6630773,19055409:25952256,424439,112852 +(1,17185:6630773,19055409:0,0,0 +g1,17185:6630773,19055409 +g1,17185:6630773,19055409 +g1,17185:6303093,19055409 +(1,17185:6303093,19055409:0,0,0 +) +g1,17185:6630773,19055409 +) +k1,17186:6630773,19055409:0 +g1,17186:10614221,19055409 +g1,17186:11278129,19055409 +h1,17186:13601807,19055409:0,0,0 +k1,17186:32583029,19055409:18981222 +g1,17186:32583029,19055409 +) +] +) +g1,17188:32583029,19168261 +g1,17188:6630773,19168261 +g1,17188:6630773,19168261 +g1,17188:32583029,19168261 +g1,17188:32583029,19168261 +) +h1,17188:6630773,19364869:0,0,0 +(1,17192:6630773,20229949:25952256,505283,134348 +h1,17191:6630773,20229949:983040,0,0 +k1,17191:9371590,20229949:152800 +k1,17191:10543474,20229949:152799 +k1,17191:12085637,20229949:152800 +k1,17191:13229996,20229949:152799 +k1,17191:16340436,20229949:152800 +k1,17191:17361588,20229949:152800 +k1,17191:19044653,20229949:152799 +k1,17191:19848881,20229949:152800 +k1,17191:21822271,20229949:152800 +k1,17191:22330930,20229949:152799 +k1,17191:25433505,20229949:152800 +k1,17191:26269189,20229949:152799 +k1,17191:29585412,20229949:152800 +k1,17192:32583029,20229949:0 +) +(1,17192:6630773,21095029:25952256,513147,126483 +k1,17191:8720935,21095029:209934 +k1,17191:9878519,21095029:209933 +k1,17191:11107538,21095029:209934 +k1,17191:14501210,21095029:209933 +k1,17191:15362572,21095029:209934 +k1,17191:17023473,21095029:209934 +k1,17191:18430093,21095029:209933 +k1,17191:20793540,21095029:209934 +k1,17191:22432813,21095029:209933 +k1,17191:23302039,21095029:209934 +k1,17191:28176825,21095029:209933 +k1,17191:28918256,21095029:209934 +k1,17191:32583029,21095029:0 +) +(1,17192:6630773,21960109:25952256,505283,134348 +k1,17191:7598647,21960109:206346 +k1,17191:8824079,21960109:206347 +k1,17191:12193848,21960109:206346 +k1,17191:13893760,21960109:206346 +k1,17191:14786269,21960109:206347 +(1,17191:14786269,21960109:0,452978,122846 +r1,17211:19013365,21960109:4227096,575824,122846 +k1,17191:14786269,21960109:-4227096 +) +(1,17191:14786269,21960109:4227096,452978,122846 +k1,17191:14786269,21960109:3277 +h1,17191:19010088,21960109:0,411205,112570 +) +k1,17191:19219711,21960109:206346 +k1,17191:20617502,21960109:206346 +(1,17191:20617502,21960109:0,452978,122846 +r1,17211:24492886,21960109:3875384,575824,122846 +k1,17191:20617502,21960109:-3875384 +) +(1,17191:20617502,21960109:3875384,452978,122846 +k1,17191:20617502,21960109:3277 +h1,17191:24489609,21960109:0,411205,112570 +) +k1,17191:24872902,21960109:206346 +k1,17191:27655469,21960109:206347 +k1,17191:30564520,21960109:206346 +k1,17191:32583029,21960109:0 +) +(1,17192:6630773,22825189:25952256,513147,134348 +k1,17191:7846175,22825189:267751 +k1,17191:9133010,22825189:267750 +k1,17191:13472513,22825189:267751 +k1,17191:14423148,22825189:267750 +k1,17191:18176759,22825189:267751 +k1,17191:20083564,22825189:267750 +k1,17191:21745266,22825189:267751 +k1,17191:23685495,22825189:267750 +k1,17191:27923417,22825189:267751 +k1,17191:28678687,22825189:267682 +k1,17191:31753999,22825189:267750 +k1,17192:32583029,22825189:0 +) +(1,17192:6630773,23690269:25952256,513147,134348 +k1,17191:9145553,23690269:268861 +k1,17191:11299886,23690269:268862 +k1,17191:14346818,23690269:268861 +k1,17191:15274971,23690269:268861 +k1,17191:16562918,23690269:268862 +k1,17191:19995202,23690269:268861 +k1,17191:23133229,23690269:268861 +k1,17191:24534553,23690269:268862 +k1,17191:25551180,23690269:268861 +k1,17191:27333267,23690269:268861 +k1,17191:28253557,23690269:268862 +k1,17191:31563944,23690269:268861 +k1,17191:32583029,23690269:0 +) +(1,17192:6630773,24555349:25952256,505283,134348 +k1,17191:8862321,24555349:220903 +k1,17191:11121394,24555349:220903 +k1,17191:11958335,24555349:220903 +k1,17191:12535098,24555349:220903 +k1,17191:14450762,24555349:220903 +k1,17191:17183005,24555349:220903 +k1,17191:18019947,24555349:220904 +k1,17191:19259935,24555349:220903 +k1,17191:21365653,24555349:220903 +k1,17191:23149590,24555349:220903 +k1,17191:24412515,24555349:220903 +k1,17191:26235118,24555349:220903 +k1,17191:29963508,24555349:220903 +k1,17191:31052763,24555349:220903 +k1,17191:32583029,24555349:0 +) +(1,17192:6630773,25420429:25952256,513147,138281 +k1,17191:7490699,25420429:208498 +k1,17191:10129272,25420429:208498 +k1,17191:13475634,25420429:208498 +k1,17191:14631783,25420429:208498 +k1,17191:16306977,25420429:208498 +$1,17191:16306977,25420429 +$1,17191:16809638,25420429 +k1,17191:17018136,25420429:208498 +k1,17191:18418079,25420429:208498 +$1,17191:18418079,25420429 +$1,17191:18969892,25420429 +k1,17191:19178390,25420429:208498 +k1,17191:22735122,25420429:208498 +k1,17191:23595048,25420429:208498 +k1,17191:26645842,25420429:208498 +k1,17191:27873425,25420429:208498 +k1,17191:30696154,25420429:208498 +k1,17191:31563944,25420429:208498 +k1,17191:32583029,25420429:0 +) +(1,17192:6630773,26285509:25952256,505283,134348 +k1,17191:10579555,26285509:224371 +k1,17191:13003315,26285509:224372 +k1,17191:14373911,26285509:224371 +k1,17191:16616791,26285509:224371 +k1,17191:17524048,26285509:224372 +k1,17191:19247227,26285509:224371 +k1,17191:20087637,26285509:224372 +k1,17191:21331093,26285509:224371 +k1,17191:24079911,26285509:224371 +k1,17191:25825374,26285509:224372 +k1,17191:29408465,26285509:224371 +k1,17191:32583029,26285509:0 +) +(1,17192:6630773,27150589:25952256,505283,126483 +k1,17191:7924605,27150589:147607 +k1,17191:10103173,27150589:147607 +k1,17191:13703872,27150589:147607 +k1,17191:14502907,27150589:147607 +k1,17191:16117210,27150589:147607 +k1,17191:18283326,27150589:147607 +k1,17191:19622378,27150589:147607 +k1,17191:21475887,27150589:147607 +k1,17191:22306379,27150589:147607 +k1,17191:24323073,27150589:147607 +k1,17191:25662125,27150589:147607 +k1,17191:28537996,27150589:147607 +k1,17191:31931601,27150589:147607 +k1,17191:32583029,27150589:0 +) +(1,17192:6630773,28015669:25952256,513147,134348 +k1,17191:8870269,28015669:220987 +k1,17191:10282701,28015669:220987 +k1,17191:12176168,28015669:220988 +k1,17191:16193656,28015669:220987 +k1,17191:17889858,28015669:220987 +k1,17191:20376425,28015669:220987 +k1,17191:23908946,28015669:220987 +k1,17191:26808390,28015669:220988 +k1,17191:28133659,28015669:220987 +k1,17191:29102412,28015669:220987 +k1,17191:32583029,28015669:0 +) +(1,17192:6630773,28880749:25952256,505283,134348 +g1,17191:7591530,28880749 +g1,17191:10771336,28880749 +g1,17191:11326425,28880749 +g1,17191:14333216,28880749 +g1,17191:17429792,28880749 +g1,17191:18245059,28880749 +g1,17191:19463373,28880749 +g1,17191:20762296,28880749 +g1,17191:21612953,28880749 +(1,17191:21612953,28880749:0,452978,115847 +r1,17211:23378066,28880749:1765113,568825,115847 +k1,17191:21612953,28880749:-1765113 +) +(1,17191:21612953,28880749:1765113,452978,115847 +k1,17191:21612953,28880749:3277 +h1,17191:23374789,28880749:0,411205,112570 +) +k1,17192:32583029,28880749:9031293 +g1,17192:32583029,28880749 +) +(1,17194:6630773,29745829:25952256,505283,134348 +h1,17193:6630773,29745829:983040,0,0 +k1,17193:9366915,29745829:264779 +k1,17193:10500045,29745829:264778 +k1,17193:12161396,29745829:264779 +k1,17193:13038936,29745829:264778 +k1,17193:14322800,29745829:264779 +k1,17193:16108013,29745829:264778 +k1,17193:18037406,29745829:264779 +k1,17193:19474623,29745829:264778 +k1,17193:22581043,29745829:264779 +k1,17193:23461859,29745829:264778 +k1,17193:24745723,29745829:264779 +k1,17193:26573535,29745829:264778 +(1,17193:26573535,29745829:0,452978,115847 +r1,17211:27986936,29745829:1413401,568825,115847 +k1,17193:26573535,29745829:-1413401 +) +(1,17193:26573535,29745829:1413401,452978,115847 +k1,17193:26573535,29745829:3277 +h1,17193:27983659,29745829:0,411205,112570 +) +k1,17193:28251715,29745829:264779 +k1,17193:29167921,29745829:264778 +$1,17193:29167921,29745829 +$1,17193:29670582,29745829 +k1,17193:29935361,29745829:264779 +k1,17193:31391584,29745829:264778 +k1,17194:32583029,29745829:0 +) +(1,17194:6630773,30610909:25952256,513147,138281 +(1,17193:6630773,30610909:0,414482,122846 +r1,17211:7692462,30610909:1061689,537328,122846 +k1,17193:6630773,30610909:-1061689 +) +(1,17193:6630773,30610909:1061689,414482,122846 +k1,17193:6630773,30610909:3277 +h1,17193:7689185,30610909:0,411205,112570 +) +k1,17193:7963387,30610909:270925 +k1,17193:8885741,30610909:270926 +$1,17193:8885741,30610909 +$1,17193:9437554,30610909 +k1,17193:9708479,30610909:270925 +k1,17193:13327639,30610909:270926 +k1,17193:14979408,30610909:270925 +k1,17193:18057895,30610909:270925 +k1,17193:19433103,30610909:270926 +k1,17193:20451794,30610909:270925 +k1,17193:22162546,30610909:270926 +k1,17193:23049509,30610909:270925 +k1,17193:24339519,30610909:270925 +k1,17193:26581113,30610909:270926 +k1,17193:28720469,30610909:270925 +k1,17193:29752923,30610909:270926 +k1,17193:30812246,30610909:270925 +k1,17193:32583029,30610909:0 +) +(1,17194:6630773,31475989:25952256,513147,134348 +k1,17193:7681366,31475989:241223 +k1,17193:8941674,31475989:241223 +k1,17193:11707343,31475989:241222 +k1,17193:13295986,31475989:241223 +k1,17193:15648124,31475989:241223 +k1,17193:17173853,31475989:241223 +k1,17193:18745456,31475989:241222 +k1,17193:20967832,31475989:241223 +k1,17193:22228140,31475989:241223 +k1,17193:24580278,31475989:241223 +k1,17193:25480792,31475989:241222 +k1,17193:26741100,31475989:241223 +k1,17193:29567718,31475989:241223 +k1,17193:32583029,31475989:0 +) +(1,17194:6630773,32341069:25952256,513147,134348 +k1,17193:9913378,32341069:189961 +k1,17193:10864867,32341069:189961 +k1,17193:11410688,32341069:189961 +k1,17193:13317036,32341069:189960 +k1,17193:15935106,32341069:189961 +k1,17193:17321754,32341069:189961 +k1,17193:18764108,32341069:189961 +k1,17193:20798252,32341069:189961 +k1,17193:22274029,32341069:189961 +k1,17193:24472013,32341069:189961 +k1,17193:25681058,32341069:189960 +k1,17193:27939335,32341069:189961 +k1,17193:28788588,32341069:189961 +k1,17193:29997634,32341069:189961 +k1,17193:32583029,32341069:0 +) +(1,17194:6630773,33206149:25952256,513147,134348 +k1,17193:9866106,33206149:220022 +k1,17193:12930391,33206149:220022 +k1,17193:14805197,33206149:220022 +k1,17193:15556716,33206149:220022 +k1,17193:16586108,33206149:220022 +k1,17193:19755906,33206149:220023 +k1,17193:22514793,33206149:220022 +k1,17193:23700160,33206149:220022 +k1,17193:26983335,33206149:220022 +k1,17193:28151008,33206149:220022 +k1,17193:29390115,33206149:220022 +k1,17193:32583029,33206149:0 +) +(1,17194:6630773,34071229:25952256,505283,120913 +g1,17193:11075424,34071229 +g1,17193:12712251,34071229 +$1,17193:12712251,34071229 +$1,17193:13319770,34071229 +g1,17193:13506154,34071229 +g1,17193:14646873,34071229 +$1,17193:14646873,34071229 +$1,17193:15254392,34071229 +g1,17193:15440776,34071229 +g1,17193:17433201,34071229 +k1,17194:32583029,34071229:13191547 +g1,17194:32583029,34071229 +) +v1,17196:6630773,34756084:0,393216,0 +(1,17201:6630773,35781622:25952256,1418754,196608 +g1,17201:6630773,35781622 +g1,17201:6630773,35781622 +g1,17201:6434165,35781622 +(1,17201:6434165,35781622:0,1418754,196608 +r1,17211:32779637,35781622:26345472,1615362,196608 +k1,17201:6434165,35781622:-26345472 +) +(1,17201:6434165,35781622:26345472,1418754,196608 +[1,17201:6630773,35781622:25952256,1222146,0 +(1,17198:6630773,34983915:25952256,424439,112852 +(1,17197:6630773,34983915:0,0,0 +g1,17197:6630773,34983915 +g1,17197:6630773,34983915 +g1,17197:6303093,34983915 +(1,17197:6303093,34983915:0,0,0 +) +g1,17197:6630773,34983915 +) +k1,17198:6630773,34983915:0 +g1,17198:10614221,34983915 +g1,17198:11278129,34983915 +k1,17198:11278129,34983915:0 +h1,17198:13601807,34983915:0,0,0 +k1,17198:32583029,34983915:18981222 +g1,17198:32583029,34983915 +) +(1,17199:6630773,35668770:25952256,424439,112852 +h1,17199:6630773,35668770:0,0,0 +g1,17199:6962727,35668770 +g1,17199:7294681,35668770 +g1,17199:7626635,35668770 +g1,17199:7958589,35668770 +g1,17199:8290543,35668770 +g1,17199:8622497,35668770 +g1,17199:8954451,35668770 +g1,17199:10946175,35668770 +g1,17199:11610083,35668770 +g1,17199:13601807,35668770 +g1,17199:14265715,35668770 +g1,17199:14929623,35668770 +h1,17199:16589393,35668770:0,0,0 +k1,17199:32583029,35668770:15993636 +g1,17199:32583029,35668770 +) +] +) +g1,17201:32583029,35781622 +g1,17201:6630773,35781622 +g1,17201:6630773,35781622 +g1,17201:32583029,35781622 +g1,17201:32583029,35781622 +) +h1,17201:6630773,35978230:0,0,0 +(1,17204:6630773,45127432:25952256,9083666,0 +k1,17204:10523651,45127432:3892878 +h1,17203:10523651,45127432:0,0,0 +(1,17203:10523651,45127432:18166500,9083666,0 +(1,17203:10523651,45127432:18167376,9083688,0 +(1,17203:10523651,45127432:18167376,9083688,0 +(1,17203:10523651,45127432:0,9083688,0 +(1,17203:10523651,45127432:0,14208860,0 +(1,17203:10523651,45127432:28417720,14208860,0 +) +k1,17203:10523651,45127432:-28417720 +) +) +g1,17203:28691027,45127432 +) +) +) +g1,17204:28690151,45127432 +k1,17204:32583029,45127432:3892878 +) +] +(1,17211:32583029,45706769:0,0,0 +g1,17211:32583029,45706769 +) +) +] +(1,17211:6630773,47279633:25952256,0,0 +h1,17211:6630773,47279633:25952256,0,0 ) +] +(1,17211:4262630,4025873:0,0,0 +[1,17211:-473656,4025873:0,0,0 +(1,17211:-473656,-710413:0,0,0 +(1,17211:-473656,-710413:0,0,0 +g1,17211:-473656,-710413 +) +g1,17211:-473656,-710413 ) -] -[1,17168:3078558,4812305:0,0,0 -(1,17168:3078558,49800853:0,16384,2228224 -g1,17168:29030814,49800853 -g1,17168:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,17168:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] -) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,17168:37855564,49800853:1179648,16384,0 -) -) -k1,17168:3078556,49800853:-34777008 -) -] -g1,17168:6630773,4812305 -g1,17168:6630773,4812305 -g1,17168:8017514,4812305 -g1,17168:11261546,4812305 -g1,17168:12076813,4812305 -g1,17168:14985956,4812305 -k1,17168:31387652,4812305:16401696 -) -) -] -[1,17168:6630773,45706769:25952256,40108032,0 -(1,17168:6630773,45706769:25952256,40108032,0 -(1,17168:6630773,45706769:0,0,0 -g1,17168:6630773,45706769 -) -[1,17168:6630773,45706769:25952256,40108032,0 -(1,17127:6630773,6254097:25952256,513147,134348 -k1,17126:9485891,6254097:219915 -k1,17126:10724890,6254097:219914 -(1,17126:10724890,6254097:0,414482,122846 -r1,17168:12138291,6254097:1413401,537328,122846 -k1,17126:10724890,6254097:-1413401 -) -(1,17126:10724890,6254097:1413401,414482,122846 -k1,17126:10724890,6254097:3277 -h1,17126:12135014,6254097:0,411205,112570 -) -k1,17126:12358206,6254097:219915 -k1,17126:13769565,6254097:219914 -k1,17126:15008565,6254097:219915 -k1,17126:18325711,6254097:219915 -k1,17126:19204917,6254097:219914 -k1,17126:20443917,6254097:219915 -k1,17126:22114799,6254097:219915 -k1,17126:23531400,6254097:219914 -k1,17126:28588527,6254097:219915 -k1,17126:29339938,6254097:219914 -k1,17126:31931601,6254097:219915 -k1,17126:32583029,6254097:0 -) -(1,17127:6630773,7095585:25952256,513147,134348 -k1,17126:7816975,7095585:167117 -k1,17126:9994736,7095585:167116 -k1,17126:12940580,7095585:167117 -k1,17126:13869225,7095585:167117 -k1,17126:15168148,7095585:167116 -k1,17126:18168386,7095585:167117 -k1,17126:19532189,7095585:167116 -k1,17126:22177878,7095585:167117 -k1,17126:23513502,7095585:167117 -k1,17126:25393074,7095585:167116 -k1,17126:26091688,7095585:167117 -k1,17126:28561085,7095585:167117 -k1,17126:29537571,7095585:167116 -k1,17126:30723773,7095585:167117 -k1,17127:32583029,7095585:0 -) -(1,17127:6630773,7937073:25952256,513147,102891 -k1,17126:9131736,7937073:165260 -k1,17126:13035170,7937073:165260 -k1,17126:13886591,7937073:165259 -k1,17126:14407711,7937073:165260 -k1,17126:16487933,7937073:165260 -k1,17126:19182883,7937073:165260 -k1,17126:20367228,7937073:165260 -k1,17126:22520195,7937073:165260 -k1,17126:23892627,7937073:165259 -k1,17126:25770343,7937073:165260 -k1,17126:26587031,7937073:165260 -k1,17126:27771376,7937073:165260 -k1,17126:32583029,7937073:0 -) -(1,17127:6630773,8778561:25952256,513147,126483 -k1,17126:8286048,8778561:265912 -k1,17126:9743405,8778561:265912 -k1,17126:11212559,8778561:265913 -k1,17126:13190927,8778561:265912 -k1,17126:15444546,8778561:265912 -k1,17126:16241955,8778561:265912 -k1,17126:20824724,8778561:265912 -k1,17126:22603862,8778561:265912 -k1,17126:23521203,8778561:265913 -k1,17126:25810867,8778561:265912 -k1,17126:27095864,8778561:265912 -k1,17126:30398714,8778561:265912 -k1,17126:32583029,8778561:0 -) -(1,17127:6630773,9620049:25952256,513147,126483 -k1,17126:8729740,9620049:213496 -k1,17126:9934796,9620049:213496 -k1,17126:11582220,9620049:213496 -k1,17126:14097996,9620049:213496 -k1,17126:15824718,9620049:213496 -k1,17126:17057299,9620049:213496 -k1,17126:22108007,9620049:213496 -k1,17126:22853000,9620049:213496 -k1,17126:25438244,9620049:213496 -k1,17126:26303168,9620049:213496 -k1,17126:28329390,9620049:213496 -k1,17126:29496435,9620049:213496 -k1,17126:31185146,9620049:213496 -k1,17126:32583029,9620049:0 -) -(1,17127:6630773,10461537:25952256,505283,126483 -k1,17126:9970925,10461537:250129 -k1,17126:11596655,10461537:250129 -k1,17126:14731023,10461537:250129 -k1,17126:18389024,10461537:250129 -k1,17126:21215373,10461537:250129 -k1,17126:23155020,10461537:250129 -k1,17126:25107119,10461537:250129 -k1,17126:28765120,10461537:250129 -k1,17126:31591469,10461537:250129 -k1,17126:32583029,10461537:0 -) -(1,17127:6630773,11303025:25952256,505283,134348 -g1,17126:9920025,11303025 -g1,17126:10735292,11303025 -g1,17126:13543509,11303025 -h1,17126:15086227,11303025:0,0,0 -g1,17126:15285456,11303025 -g1,17126:16676130,11303025 -h1,17126:18045177,11303025:0,0,0 -g1,17126:18244406,11303025 -g1,17126:19253005,11303025 -g1,17126:21280688,11303025 -h1,17126:22476065,11303025:0,0,0 -g1,17126:22675294,11303025 -g1,17126:24065968,11303025 -h1,17126:25261345,11303025:0,0,0 -g1,17126:25634244,11303025 -k1,17127:32583029,11303025:2978614 -g1,17127:32583029,11303025 -) -v1,17129:6630773,12493491:0,393216,0 -(1,17137:6630773,15473299:25952256,3373024,196608 -g1,17137:6630773,15473299 -g1,17137:6630773,15473299 -g1,17137:6434165,15473299 -(1,17137:6434165,15473299:0,3373024,196608 -r1,17168:32779637,15473299:26345472,3569632,196608 -k1,17137:6434165,15473299:-26345472 -) -(1,17137:6434165,15473299:26345472,3373024,196608 -[1,17137:6630773,15473299:25952256,3176416,0 -(1,17131:6630773,12701109:25952256,404226,107478 -(1,17130:6630773,12701109:0,0,0 -g1,17130:6630773,12701109 -g1,17130:6630773,12701109 -g1,17130:6303093,12701109 -(1,17130:6303093,12701109:0,0,0 -) -g1,17130:6630773,12701109 -) -k1,17131:6630773,12701109:0 -g1,17131:10424522,12701109 -g1,17131:11056814,12701109 -k1,17131:11056814,12701109:0 -h1,17131:13269834,12701109:0,0,0 -k1,17131:32583030,12701109:19313196 -g1,17131:32583030,12701109 -) -(1,17132:6630773,13367287:25952256,404226,107478 -h1,17132:6630773,13367287:0,0,0 -g1,17132:6946919,13367287 -g1,17132:7263065,13367287 -g1,17132:7579211,13367287 -g1,17132:7895357,13367287 -g1,17132:8211503,13367287 -g1,17132:8527649,13367287 -g1,17132:8843795,13367287 -g1,17132:10740670,13367287 -g1,17132:11372962,13367287 -g1,17132:13269837,13367287 -g1,17132:13902129,13367287 -g1,17132:14534421,13367287 -g1,17132:16431295,13367287 -h1,17132:16747441,13367287:0,0,0 -k1,17132:32583029,13367287:15835588 -g1,17132:32583029,13367287 -) -(1,17133:6630773,14033465:25952256,404226,107478 -h1,17133:6630773,14033465:0,0,0 -g1,17133:6946919,14033465 -g1,17133:7263065,14033465 -g1,17133:11372959,14033465 -h1,17133:11689105,14033465:0,0,0 -k1,17133:32583029,14033465:20893924 -g1,17133:32583029,14033465 -) -(1,17134:6630773,14699643:25952256,410518,107478 -h1,17134:6630773,14699643:0,0,0 -g1,17134:6946919,14699643 -g1,17134:7263065,14699643 -g1,17134:12637542,14699643 -g1,17134:13269834,14699643 -g1,17134:15799000,14699643 -g1,17134:18012020,14699643 -g1,17134:18644312,14699643 -g1,17134:20541187,14699643 -g1,17134:23070353,14699643 -g1,17134:23702645,14699643 -g1,17134:24334937,14699643 -g1,17134:24967229,14699643 -g1,17134:25915666,14699643 -h1,17134:26231812,14699643:0,0,0 -k1,17134:32583029,14699643:6351217 -g1,17134:32583029,14699643 -) -(1,17135:6630773,15365821:25952256,404226,107478 -h1,17135:6630773,15365821:0,0,0 -g1,17135:6946919,15365821 -g1,17135:7263065,15365821 -g1,17135:11689105,15365821 -g1,17135:12321397,15365821 -h1,17135:14850563,15365821:0,0,0 -k1,17135:32583029,15365821:17732466 -g1,17135:32583029,15365821 -) -] -) -g1,17137:32583029,15473299 -g1,17137:6630773,15473299 -g1,17137:6630773,15473299 -g1,17137:32583029,15473299 -g1,17137:32583029,15473299 -) -h1,17137:6630773,15669907:0,0,0 -(1,17140:6630773,25343397:25952256,9083666,0 -k1,17140:10523651,25343397:3892878 -h1,17139:10523651,25343397:0,0,0 -(1,17139:10523651,25343397:18166500,9083666,0 -(1,17139:10523651,25343397:18167376,9083688,0 -(1,17139:10523651,25343397:18167376,9083688,0 -(1,17139:10523651,25343397:0,9083688,0 -(1,17139:10523651,25343397:0,14208860,0 -(1,17139:10523651,25343397:28417720,14208860,0 -) -k1,17139:10523651,25343397:-28417720 -) -) -g1,17139:28691027,25343397 -) -) -) -g1,17140:28690151,25343397 -k1,17140:32583029,25343397:3892878 -) -(1,17147:6630773,26184885:25952256,513147,134348 -h1,17146:6630773,26184885:983040,0,0 -k1,17146:10452778,26184885:344665 -k1,17146:12576745,26184885:344665 -k1,17146:13940494,26184885:344664 -k1,17146:17382390,26184885:344665 -k1,17146:18386347,26184885:344665 -k1,17146:20338610,26184885:344665 -k1,17146:21296036,26184885:344664 -k1,17146:22659786,26184885:344665 -k1,17146:24429859,26184885:344665 -k1,17146:25433816,26184885:344665 -k1,17146:30386316,26184885:344664 -k1,17146:31835263,26184885:344665 -k1,17146:32583029,26184885:0 -) -(1,17147:6630773,27026373:25952256,513147,134348 -k1,17146:9325061,27026373:167220 -k1,17146:10151573,27026373:167220 -k1,17146:11004955,27026373:167220 -k1,17146:12672949,27026373:167220 -k1,17146:14867198,27026373:167220 -k1,17146:17638163,27026373:167220 -k1,17146:18824468,27026373:167220 -k1,17146:21380475,27026373:167220 -k1,17146:23809999,27026373:167221 -k1,17146:24464775,27026373:167188 -k1,17146:27557522,27026373:167220 -k1,17146:29711138,27026373:167220 -k1,17146:30982640,27026373:167220 -k1,17147:32583029,27026373:0 -) -(1,17147:6630773,27867861:25952256,513147,134348 -k1,17146:8051997,27867861:163588 -k1,17146:9234669,27867861:163587 -k1,17146:11663837,27867861:163588 -k1,17146:13206958,27867861:163588 -k1,17146:15530612,27867861:163587 -k1,17146:16890887,27867861:163588 -k1,17146:18331772,27867861:163588 -k1,17146:19026857,27867861:163588 -k1,17146:20209529,27867861:163587 -k1,17146:22200261,27867861:163588 -k1,17146:23382934,27867861:163588 -k1,17146:27618273,27867861:163587 -k1,17146:28773421,27867861:163588 -k1,17146:32583029,27867861:0 -) -(1,17147:6630773,28709349:25952256,513147,126483 -k1,17146:7479682,28709349:232871 -k1,17146:8731638,28709349:232871 -k1,17146:10617982,28709349:232871 -k1,17146:12262499,28709349:232871 -k1,17146:13514456,28709349:232872 -k1,17146:15562019,28709349:232871 -k1,17146:16454182,28709349:232871 -k1,17146:17706138,28709349:232871 -k1,17146:19337547,28709349:232871 -k1,17146:20561978,28709349:232871 -k1,17146:21813934,28709349:232871 -k1,17146:23700278,28709349:232871 -k1,17146:25124594,28709349:232871 -k1,17146:26123582,28709349:232872 -k1,17146:27582632,28709349:232871 -k1,17146:28347000,28709349:232871 -k1,17146:29598956,28709349:232871 -k1,17146:31658971,28709349:232871 -k1,17146:32583029,28709349:0 -) -(1,17147:6630773,29550837:25952256,513147,126483 -k1,17146:7833510,29550837:183652 -k1,17146:9892802,29550837:183652 -k1,17146:11682741,29550837:183652 -k1,17146:13196774,29550837:183652 -k1,17146:15077153,29550837:183652 -k1,17146:18129971,29550837:183652 -k1,17146:19305182,29550837:183651 -k1,17146:22363898,29550837:183652 -k1,17146:23309078,29550837:183652 -k1,17146:26255073,29550837:183652 -k1,17146:28755423,29550837:183652 -k1,17146:30043357,29550837:183652 -k1,17146:30974775,29550837:183652 -k1,17147:32583029,29550837:0 -) -(1,17147:6630773,30392325:25952256,513147,126483 -g1,17146:8748896,30392325 -g1,17146:11884138,30392325 -g1,17146:13520965,30392325 -$1,17146:13520965,30392325 -$1,17146:14128484,30392325 -g1,17146:14314868,30392325 -g1,17146:15455587,30392325 -$1,17146:15455587,30392325 -$1,17146:16063106,30392325 -g1,17146:16249490,30392325 -$1,17146:16249490,30392325 -$1,17146:16857009,30392325 -g1,17146:17043393,30392325 -g1,17146:18838817,30392325 -$1,17146:18838817,30392325 -$1,17146:19446336,30392325 -g1,17146:19632720,30392325 -g1,17146:21613349,30392325 -$1,17146:21613349,30392325 -$1,17146:22220868,30392325 -g1,17146:22407252,30392325 -g1,17146:24399677,30392325 -k1,17147:32583029,30392325:6432165 -g1,17147:32583029,30392325 -) -v1,17149:6630773,31582791:0,393216,0 -(1,17156:6630773,33864964:25952256,2675389,196608 -g1,17156:6630773,33864964 -g1,17156:6630773,33864964 -g1,17156:6434165,33864964 -(1,17156:6434165,33864964:0,2675389,196608 -r1,17168:32779637,33864964:26345472,2871997,196608 -k1,17156:6434165,33864964:-26345472 -) -(1,17156:6434165,33864964:26345472,2675389,196608 -[1,17156:6630773,33864964:25952256,2478781,0 -(1,17151:6630773,31790409:25952256,404226,107478 -(1,17150:6630773,31790409:0,0,0 -g1,17150:6630773,31790409 -g1,17150:6630773,31790409 -g1,17150:6303093,31790409 -(1,17150:6303093,31790409:0,0,0 -) -g1,17150:6630773,31790409 -) -k1,17151:6630773,31790409:0 -g1,17151:10424522,31790409 -g1,17151:11056814,31790409 -k1,17151:11056814,31790409:0 -h1,17151:13269834,31790409:0,0,0 -k1,17151:32583030,31790409:19313196 -g1,17151:32583030,31790409 -) -(1,17152:6630773,32456587:25952256,404226,107478 -h1,17152:6630773,32456587:0,0,0 -g1,17152:6946919,32456587 -g1,17152:7263065,32456587 -g1,17152:7579211,32456587 -g1,17152:7895357,32456587 -g1,17152:8211503,32456587 -g1,17152:8527649,32456587 -g1,17152:8843795,32456587 -g1,17152:10740670,32456587 -g1,17152:11372962,32456587 -g1,17152:13269837,32456587 -g1,17152:13902129,32456587 -g1,17152:14534421,32456587 -g1,17152:16431295,32456587 -h1,17152:16747441,32456587:0,0,0 -k1,17152:32583029,32456587:15835588 -g1,17152:32583029,32456587 -) -(1,17153:6630773,33122765:25952256,404226,107478 -h1,17153:6630773,33122765:0,0,0 -g1,17153:6946919,33122765 -g1,17153:7263065,33122765 -g1,17153:11372959,33122765 -h1,17153:11689105,33122765:0,0,0 -k1,17153:32583029,33122765:20893924 -g1,17153:32583029,33122765 -) -(1,17154:6630773,33788943:25952256,404226,76021 -h1,17154:6630773,33788943:0,0,0 -g1,17154:6946919,33788943 -g1,17154:7263065,33788943 -k1,17154:7263065,33788943:0 -h1,17154:12005250,33788943:0,0,0 -k1,17154:32583030,33788943:20577780 -g1,17154:32583030,33788943 -) -] -) -g1,17156:32583029,33864964 -g1,17156:6630773,33864964 -g1,17156:6630773,33864964 -g1,17156:32583029,33864964 -g1,17156:32583029,33864964 -) -h1,17156:6630773,34061572:0,0,0 -(1,17159:6630773,43735062:25952256,9083666,0 -k1,17159:10523651,43735062:3892878 -h1,17158:10523651,43735062:0,0,0 -(1,17158:10523651,43735062:18166500,9083666,0 -(1,17158:10523651,43735062:18167376,9083688,0 -(1,17158:10523651,43735062:18167376,9083688,0 -(1,17158:10523651,43735062:0,9083688,0 -(1,17158:10523651,43735062:0,14208860,0 -(1,17158:10523651,43735062:28417720,14208860,0 -) -k1,17158:10523651,43735062:-28417720 -) -) -g1,17158:28691027,43735062 -) -) -) -g1,17159:28690151,43735062 -k1,17159:32583029,43735062:3892878 -) -(1,17166:6630773,44576550:25952256,513147,126483 -h1,17165:6630773,44576550:983040,0,0 -k1,17165:8753091,44576550:185729 -k1,17165:10043102,44576550:185729 -k1,17165:11514647,44576550:185729 -k1,17165:14345408,44576550:185728 -k1,17165:15550222,44576550:185729 -k1,17165:17169879,44576550:185729 -k1,17165:18686644,44576550:185729 -k1,17165:20141150,44576550:185729 -k1,17165:21518324,44576550:185729 -k1,17165:23035089,44576550:185729 -k1,17165:25402512,44576550:185729 -k1,17165:26969084,44576550:185728 -k1,17165:29264417,44576550:185729 -k1,17165:30469231,44576550:185729 -k1,17165:31923737,44576550:185729 -k1,17165:32583029,44576550:0 -) -(1,17166:6630773,45418038:25952256,513147,102891 -k1,17165:7588213,45418038:191324 -k1,17165:9005716,45418038:191324 -k1,17165:12239877,45418038:191324 -k1,17165:13117363,45418038:191324 -k1,17165:14817326,45418038:191324 -k1,17165:16277427,45418038:191324 -k1,17165:17000248,45418038:191324 -k1,17165:19573150,45418038:191324 -k1,17165:22123770,45418038:191324 -k1,17165:22966522,45418038:191324 -k1,17165:24176931,45418038:191324 -k1,17165:25802183,45418038:191324 -k1,17165:27435954,45418038:191324 -k1,17165:29115601,45418038:191324 -k1,17165:30175277,45418038:191324 -k1,17165:31563944,45418038:191324 -k1,17165:32583029,45418038:0 -) -] -(1,17168:32583029,45706769:0,0,0 -g1,17168:32583029,45706769 -) -) -] -(1,17168:6630773,47279633:25952256,0,0 -h1,17168:6630773,47279633:25952256,0,0 -) -] -(1,17168:4262630,4025873:0,0,0 -[1,17168:-473656,4025873:0,0,0 -(1,17168:-473656,-710413:0,0,0 -(1,17168:-473656,-710413:0,0,0 -g1,17168:-473656,-710413 -) -g1,17168:-473656,-710413 -) ] ) ] -!17626 -}298 -Input:2522:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2523:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2524:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2525:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2526:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2527:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2528:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2529:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2530:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2531:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2532:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2533:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2534:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2535:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!20016 +}280 Input:2536:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1422 -{299 -[1,17224:4262630,47279633:28320399,43253760,0 -(1,17224:4262630,4025873:0,0,0 -[1,17224:-473656,4025873:0,0,0 -(1,17224:-473656,-710413:0,0,0 -(1,17224:-473656,-644877:0,0,0 -k1,17224:-473656,-644877:-65536 +Input:2537:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2538:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2539:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2540:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2541:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2542:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2543:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2544:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2545:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2546:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2547:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2548:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2549:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2550:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2551:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1516 +{281 +[1,17269:4262630,47279633:28320399,43253760,0 +(1,17269:4262630,4025873:0,0,0 +[1,17269:-473656,4025873:0,0,0 +(1,17269:-473656,-710413:0,0,0 +(1,17269:-473656,-644877:0,0,0 +k1,17269:-473656,-644877:-65536 ) -(1,17224:-473656,4736287:0,0,0 -k1,17224:-473656,4736287:5209943 +(1,17269:-473656,4736287:0,0,0 +k1,17269:-473656,4736287:5209943 ) -g1,17224:-473656,-710413 +g1,17269:-473656,-710413 ) ] ) -[1,17224:6630773,47279633:25952256,43253760,0 -[1,17224:6630773,4812305:25952256,786432,0 -(1,17224:6630773,4812305:25952256,513147,126483 -(1,17224:6630773,4812305:25952256,513147,126483 -g1,17224:3078558,4812305 -[1,17224:3078558,4812305:0,0,0 -(1,17224:3078558,2439708:0,1703936,0 -k1,17224:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,17224:2537886,2439708:1179648,16384,0 +[1,17269:6630773,47279633:25952256,43253760,0 +[1,17269:6630773,4812305:25952256,786432,0 +(1,17269:6630773,4812305:25952256,513147,126483 +(1,17269:6630773,4812305:25952256,513147,126483 +g1,17269:3078558,4812305 +[1,17269:3078558,4812305:0,0,0 +(1,17269:3078558,2439708:0,1703936,0 +k1,17269:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,17269:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,17224:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,17269:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,17224:3078558,4812305:0,0,0 -(1,17224:3078558,2439708:0,1703936,0 -g1,17224:29030814,2439708 -g1,17224:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,17224:36151628,1915420:16384,1179648,0 +[1,17269:3078558,4812305:0,0,0 +(1,17269:3078558,2439708:0,1703936,0 +g1,17269:29030814,2439708 +g1,17269:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,17269:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,17224:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,17269:37855564,2439708:1179648,16384,0 ) ) -k1,17224:3078556,2439708:-34777008 +k1,17269:3078556,2439708:-34777008 ) ] -[1,17224:3078558,4812305:0,0,0 -(1,17224:3078558,49800853:0,16384,2228224 -k1,17224:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,17224:2537886,49800853:1179648,16384,0 +[1,17269:3078558,4812305:0,0,0 +(1,17269:3078558,49800853:0,16384,2228224 +k1,17269:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,17269:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,17224:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,17269:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,17224:3078558,4812305:0,0,0 -(1,17224:3078558,49800853:0,16384,2228224 -g1,17224:29030814,49800853 -g1,17224:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,17224:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] -) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,17224:37855564,49800853:1179648,16384,0 -) -) -k1,17224:3078556,49800853:-34777008 -) -] -g1,17224:6630773,4812305 -k1,17224:21350816,4812305:13524666 -g1,17224:21999622,4812305 -g1,17224:25611966,4812305 -g1,17224:28956923,4812305 -g1,17224:29772190,4812305 -) -) -] -[1,17224:6630773,45706769:25952256,40108032,0 -(1,17224:6630773,45706769:25952256,40108032,0 -(1,17224:6630773,45706769:0,0,0 -g1,17224:6630773,45706769 -) -[1,17224:6630773,45706769:25952256,40108032,0 -(1,17166:6630773,6254097:25952256,513147,126483 -k1,17165:8492323,6254097:208077 -k1,17165:10686796,6254097:208077 -k1,17165:11581035,6254097:208077 -k1,17165:13302337,6254097:208076 -k1,17165:14126452,6254097:208077 -k1,17165:15353614,6254097:208077 -k1,17165:18316169,6254097:208077 -k1,17165:21359333,6254097:208077 -k1,17165:22639579,6254097:208077 -k1,17165:24241607,6254097:208077 -k1,17165:24805543,6254097:208076 -k1,17165:27775963,6254097:208077 -k1,17165:29417968,6254097:208077 -k1,17165:31314252,6254097:208077 -k1,17165:32583029,6254097:0 -) -(1,17166:6630773,7095585:25952256,513147,7863 -g1,17165:7777653,7095585 -k1,17166:32583030,7095585:23405528 -g1,17166:32583030,7095585 -) -v1,17168:6630773,8286051:0,393216,0 -(1,17175:6630773,10593390:25952256,2700555,196608 -g1,17175:6630773,10593390 -g1,17175:6630773,10593390 -g1,17175:6434165,10593390 -(1,17175:6434165,10593390:0,2700555,196608 -r1,17224:32779637,10593390:26345472,2897163,196608 -k1,17175:6434165,10593390:-26345472 -) -(1,17175:6434165,10593390:26345472,2700555,196608 -[1,17175:6630773,10593390:25952256,2503947,0 -(1,17170:6630773,8493669:25952256,404226,107478 -(1,17169:6630773,8493669:0,0,0 -g1,17169:6630773,8493669 -g1,17169:6630773,8493669 -g1,17169:6303093,8493669 -(1,17169:6303093,8493669:0,0,0 -) -g1,17169:6630773,8493669 -) -k1,17170:6630773,8493669:0 -g1,17170:10424522,8493669 -g1,17170:11056814,8493669 -k1,17170:11056814,8493669:0 -h1,17170:13269834,8493669:0,0,0 -k1,17170:32583030,8493669:19313196 -g1,17170:32583030,8493669 -) -(1,17171:6630773,9159847:25952256,404226,107478 -h1,17171:6630773,9159847:0,0,0 -g1,17171:6946919,9159847 -g1,17171:7263065,9159847 -g1,17171:7579211,9159847 -g1,17171:7895357,9159847 -g1,17171:8211503,9159847 -g1,17171:8527649,9159847 -g1,17171:8843795,9159847 -g1,17171:10740670,9159847 -g1,17171:11372962,9159847 -g1,17171:13269837,9159847 -g1,17171:13902129,9159847 -g1,17171:14534421,9159847 -g1,17171:16431295,9159847 -h1,17171:16747441,9159847:0,0,0 -k1,17171:32583029,9159847:15835588 -g1,17171:32583029,9159847 -) -(1,17172:6630773,9826025:25952256,404226,107478 -h1,17172:6630773,9826025:0,0,0 -g1,17172:6946919,9826025 -g1,17172:7263065,9826025 -g1,17172:11372959,9826025 -h1,17172:11689105,9826025:0,0,0 -k1,17172:32583029,9826025:20893924 -g1,17172:32583029,9826025 -) -(1,17173:6630773,10492203:25952256,410518,101187 -h1,17173:6630773,10492203:0,0,0 -g1,17173:6946919,10492203 -g1,17173:7263065,10492203 -g1,17173:14850562,10492203 -g1,17173:15482854,10492203 -g1,17173:16747437,10492203 -g1,17173:20541185,10492203 -g1,17173:21173477,10492203 -h1,17173:23702643,10492203:0,0,0 -k1,17173:32583029,10492203:8880386 -g1,17173:32583029,10492203 -) -] -) -g1,17175:32583029,10593390 -g1,17175:6630773,10593390 -g1,17175:6630773,10593390 -g1,17175:32583029,10593390 -g1,17175:32583029,10593390 -) -h1,17175:6630773,10789998:0,0,0 -(1,17178:6630773,20463488:25952256,9083666,0 -k1,17178:10523651,20463488:3892878 -h1,17177:10523651,20463488:0,0,0 -(1,17177:10523651,20463488:18166500,9083666,0 -(1,17177:10523651,20463488:18167376,9083688,0 -(1,17177:10523651,20463488:18167376,9083688,0 -(1,17177:10523651,20463488:0,9083688,0 -(1,17177:10523651,20463488:0,14208860,0 -(1,17177:10523651,20463488:28417720,14208860,0 -) -k1,17177:10523651,20463488:-28417720 -) -) -g1,17177:28691027,20463488 -) -) -) -g1,17178:28690151,20463488 -k1,17178:32583029,20463488:3892878 -) -(1,17185:6630773,21304976:25952256,513147,126483 -h1,17184:6630773,21304976:983040,0,0 -k1,17184:9038172,21304976:227672 -k1,17184:11383312,21304976:227672 -k1,17184:12270276,21304976:227672 -k1,17184:13828329,21304976:227672 -k1,17184:14707429,21304976:227672 -k1,17184:15869644,21304976:227672 -k1,17184:17349709,21304976:227672 -k1,17184:19595234,21304976:227671 -k1,17184:21007142,21304976:227672 -k1,17184:24179347,21304976:227672 -k1,17184:25598464,21304976:227672 -k1,17184:27010372,21304976:227672 -k1,17184:29082227,21304976:227672 -k1,17184:30442361,21304976:227672 -k1,17184:31417799,21304976:227672 -k1,17185:32583029,21304976:0 -) -(1,17185:6630773,22146464:25952256,513147,126483 -k1,17184:9021713,22146464:213834 -k1,17184:9851585,22146464:213834 -k1,17184:11925985,22146464:213833 -k1,17184:12755857,22146464:213834 -k1,17184:15248378,22146464:213834 -h1,17184:16218966,22146464:0,0,0 -k1,17184:16606470,22146464:213834 -k1,17184:20365146,22146464:213834 -k1,17184:21447331,22146464:213833 -k1,17184:22793627,22146464:213834 -k1,17184:24099946,22146464:213834 -k1,17184:27009276,22146464:213834 -(1,17184:27009276,22146464:0,452978,115847 -r1,17224:29126101,22146464:2116825,568825,115847 -k1,17184:27009276,22146464:-2116825 -) -(1,17184:27009276,22146464:2116825,452978,115847 -k1,17184:27009276,22146464:3277 -h1,17184:29122824,22146464:0,411205,112570 -) -k1,17184:29339934,22146464:213833 -k1,17184:31439239,22146464:213834 -k1,17184:32184570,22146464:213834 -k1,17184:32583029,22146464:0 -) -(1,17185:6630773,22987952:25952256,513147,134348 -k1,17184:10689885,22987952:239674 -k1,17184:13528063,22987952:239675 -k1,17184:16439640,22987952:239674 -k1,17184:17424459,22987952:239675 -k1,17184:18315561,22987952:239674 -k1,17184:20356165,22987952:239675 -k1,17184:21530382,22987952:239674 -k1,17184:22789141,22987952:239674 -k1,17184:24296282,22987952:239675 -k1,17184:25727401,22987952:239674 -k1,17184:28380112,22987952:239675 -k1,17184:29279078,22987952:239674 -k1,17184:29874613,22987952:239675 -k1,17184:31391584,22987952:239674 -k1,17184:32583029,22987952:0 -) -(1,17185:6630773,23829440:25952256,513147,126483 -k1,17184:7531534,23829440:249333 -k1,17184:10079214,23829440:249332 -k1,17184:11347632,23829440:249333 -k1,17184:13862545,23829440:249333 -(1,17184:13862545,23829440:0,414482,115847 -r1,17224:15275946,23829440:1413401,530329,115847 -k1,17184:13862545,23829440:-1413401 -) -(1,17184:13862545,23829440:1413401,414482,115847 -k1,17184:13862545,23829440:3277 -h1,17184:15272669,23829440:0,411205,112570 -) -k1,17184:15525278,23829440:249332 -k1,17184:16433903,23829440:249333 -k1,17184:18759417,23829440:249333 -k1,17184:19624787,23829440:249332 -k1,17184:21077361,23829440:249333 -k1,17184:22867444,23829440:249332 -k1,17184:24860690,23829440:249333 -k1,17184:26623249,23829440:249333 -k1,17184:27820232,23829440:249332 -k1,17184:29321958,23829440:249333 -k1,17184:32583029,23829440:0 -) -(1,17185:6630773,24670928:25952256,513147,134348 -k1,17184:9089960,24670928:193607 -k1,17184:10302653,24670928:193608 -(1,17184:10302653,24670928:0,414482,115847 -r1,17224:11716054,24670928:1413401,530329,115847 -k1,17184:10302653,24670928:-1413401 -) -(1,17184:10302653,24670928:1413401,414482,115847 -k1,17184:10302653,24670928:3277 -h1,17184:11712777,24670928:0,411205,112570 -) -k1,17184:11909661,24670928:193607 -k1,17184:12762560,24670928:193607 -k1,17184:14858677,24670928:193607 -k1,17184:15583782,24670928:193608 -k1,17184:16711932,24670928:193607 -k1,17184:17556967,24670928:193607 -k1,17184:18769659,24670928:193607 -k1,17184:20701282,24670928:193608 -k1,17184:21554181,24670928:193607 -k1,17184:22766873,24670928:193607 -k1,17184:25545875,24670928:193607 -k1,17184:28424493,24670928:193608 -k1,17184:30401335,24670928:193607 -k1,17184:32583029,24670928:0 -) -(1,17185:6630773,25512416:25952256,513147,126483 -k1,17184:7838396,25512416:188538 -(1,17184:7838396,25512416:0,414482,115847 -r1,17224:9251797,25512416:1413401,530329,115847 -k1,17184:7838396,25512416:-1413401 -) -(1,17184:7838396,25512416:1413401,414482,115847 -k1,17184:7838396,25512416:3277 -h1,17184:9248520,25512416:0,411205,112570 -) -k1,17184:9440336,25512416:188539 -k1,17184:10288166,25512416:188538 -k1,17184:12379215,25512416:188539 -k1,17184:13961704,25512416:188538 -(1,17184:13961704,25512416:0,452978,115847 -r1,17224:16078529,25512416:2116825,568825,115847 -k1,17184:13961704,25512416:-2116825 -) -(1,17184:13961704,25512416:2116825,452978,115847 -k1,17184:13961704,25512416:3277 -h1,17184:16075252,25512416:0,411205,112570 -) -k1,17184:16440738,25512416:188539 -k1,17184:17497628,25512416:188538 -k1,17184:18778652,25512416:188539 -k1,17184:19653352,25512416:188538 -k1,17184:23122623,25512416:188539 -k1,17184:25379477,25512416:188538 -k1,17184:26184054,25512416:188539 -k1,17184:27391677,25512416:188538 -k1,17184:30275712,25512416:188539 -k1,17184:31563944,25512416:188538 -k1,17184:32583029,25512416:0 -) -(1,17185:6630773,26353904:25952256,513147,134348 -k1,17184:8844817,26353904:145728 -k1,17184:9649837,26353904:145728 -k1,17184:12970128,26353904:145727 -k1,17184:14307301,26353904:145728 -k1,17184:15890234,26353904:145728 -k1,17184:16722124,26353904:145728 -k1,17184:17638555,26353904:145728 -k1,17184:20856610,26353904:145727 -k1,17184:21358198,26353904:145728 -k1,17184:24478605,26353904:145728 -k1,17184:26663813,26353904:145728 -k1,17184:27492426,26353904:145728 -k1,17184:28408856,26353904:145727 -k1,17184:28969374,26353904:145675 -k1,17184:32583029,26353904:0 -) -(1,17185:6630773,27195392:25952256,513147,126483 -k1,17184:8366153,27195392:247057 -k1,17184:9481561,27195392:247056 -k1,17184:10821103,27195392:247057 -(1,17184:10821103,27195392:0,414482,115847 -r1,17224:11179369,27195392:358266,530329,115847 -k1,17184:10821103,27195392:-358266 -) -(1,17184:10821103,27195392:358266,414482,115847 -k1,17184:10821103,27195392:3277 -h1,17184:11176092,27195392:0,411205,112570 -) -k1,17184:11426426,27195392:247057 -k1,17184:12864927,27195392:247056 -(1,17184:12864927,27195392:0,414482,115847 -r1,17224:13223193,27195392:358266,530329,115847 -k1,17184:12864927,27195392:-358266 -) -(1,17184:12864927,27195392:358266,414482,115847 -k1,17184:12864927,27195392:3277 -h1,17184:13219916,27195392:0,411205,112570 -) -k1,17184:13643920,27195392:247057 -k1,17184:14910062,27195392:247057 -k1,17184:17225435,27195392:247057 -k1,17184:18131783,27195392:247056 -k1,17184:19397925,27195392:247057 -k1,17184:20817421,27195392:247057 -k1,17184:24128941,27195392:247056 -k1,17184:25027426,27195392:247057 -k1,17184:27159954,27195392:247057 -k1,17184:28275362,27195392:247056 -k1,17184:29997634,27195392:247057 -k1,17184:32583029,27195392:0 -) -(1,17185:6630773,28036880:25952256,505283,122846 -g1,17184:8002441,28036880 -g1,17184:11043311,28036880 -g1,17184:11858578,28036880 -(1,17184:11858578,28036880:0,452978,115847 -r1,17224:13271979,28036880:1413401,568825,115847 -k1,17184:11858578,28036880:-1413401 -) -(1,17184:11858578,28036880:1413401,452978,115847 -k1,17184:11858578,28036880:3277 -h1,17184:13268702,28036880:0,411205,112570 -) -g1,17184:13644878,28036880 -(1,17184:13644878,28036880:0,452978,115847 -r1,17224:15058279,28036880:1413401,568825,115847 -k1,17184:13644878,28036880:-1413401 -) -(1,17184:13644878,28036880:1413401,452978,115847 -k1,17184:13644878,28036880:3277 -h1,17184:15055002,28036880:0,411205,112570 -) -g1,17184:15257508,28036880 -g1,17184:16648182,28036880 -(1,17184:16648182,28036880:0,414482,122846 -r1,17224:17709871,28036880:1061689,537328,122846 -k1,17184:16648182,28036880:-1061689 -) -(1,17184:16648182,28036880:1061689,414482,122846 -k1,17184:16648182,28036880:3277 -h1,17184:17706594,28036880:0,411205,112570 -) -k1,17185:32583029,28036880:14699488 -g1,17185:32583029,28036880 -) -v1,17187:6630773,29227346:0,393216,0 -(1,17197:6630773,33539510:25952256,4705380,196608 -g1,17197:6630773,33539510 -g1,17197:6630773,33539510 -g1,17197:6434165,33539510 -(1,17197:6434165,33539510:0,4705380,196608 -r1,17224:32779637,33539510:26345472,4901988,196608 -k1,17197:6434165,33539510:-26345472 -) -(1,17197:6434165,33539510:26345472,4705380,196608 -[1,17197:6630773,33539510:25952256,4508772,0 -(1,17189:6630773,29434964:25952256,404226,107478 -(1,17188:6630773,29434964:0,0,0 -g1,17188:6630773,29434964 -g1,17188:6630773,29434964 -g1,17188:6303093,29434964 -(1,17188:6303093,29434964:0,0,0 -) -g1,17188:6630773,29434964 -) -k1,17189:6630773,29434964:0 -g1,17189:10424522,29434964 -g1,17189:11056814,29434964 -k1,17189:11056814,29434964:0 -h1,17189:13269834,29434964:0,0,0 -k1,17189:32583030,29434964:19313196 -g1,17189:32583030,29434964 -) -(1,17190:6630773,30101142:25952256,404226,107478 -h1,17190:6630773,30101142:0,0,0 -g1,17190:6946919,30101142 -g1,17190:7263065,30101142 -g1,17190:7579211,30101142 -g1,17190:7895357,30101142 -g1,17190:8211503,30101142 -g1,17190:8527649,30101142 -g1,17190:8843795,30101142 -g1,17190:10740670,30101142 -g1,17190:11372962,30101142 -g1,17190:13269837,30101142 -g1,17190:13902129,30101142 -g1,17190:14534421,30101142 -g1,17190:16431295,30101142 -h1,17190:16747441,30101142:0,0,0 -k1,17190:32583029,30101142:15835588 -g1,17190:32583029,30101142 -) -(1,17191:6630773,30767320:25952256,404226,107478 -h1,17191:6630773,30767320:0,0,0 -g1,17191:6946919,30767320 -g1,17191:7263065,30767320 -g1,17191:11372959,30767320 -h1,17191:11689105,30767320:0,0,0 -k1,17191:32583029,30767320:20893924 -g1,17191:32583029,30767320 -) -(1,17192:6630773,31433498:25952256,404226,107478 -h1,17192:6630773,31433498:0,0,0 -g1,17192:6946919,31433498 -g1,17192:7263065,31433498 -g1,17192:9476086,31433498 -g1,17192:10108378,31433498 -g1,17192:12637544,31433498 -g1,17192:16747438,31433498 -g1,17192:18960458,31433498 -k1,17192:18960458,31433498:0 -h1,17192:21805769,31433498:0,0,0 -k1,17192:32583029,31433498:10777260 -g1,17192:32583029,31433498 -) -(1,17193:6630773,32099676:25952256,410518,107478 -h1,17193:6630773,32099676:0,0,0 -g1,17193:6946919,32099676 -g1,17193:7263065,32099676 -g1,17193:7579211,32099676 -g1,17193:7895357,32099676 -g1,17193:8211503,32099676 -g1,17193:8527649,32099676 -g1,17193:8843795,32099676 -g1,17193:9476087,32099676 -g1,17193:10108379,32099676 -g1,17193:12005253,32099676 -g1,17193:13269836,32099676 -g1,17193:19276604,32099676 -g1,17193:20541187,32099676 -k1,17193:20541187,32099676:0 -h1,17193:23386498,32099676:0,0,0 -k1,17193:32583029,32099676:9196531 -g1,17193:32583029,32099676 -) -(1,17194:6630773,32765854:25952256,404226,82312 -h1,17194:6630773,32765854:0,0,0 -g1,17194:6946919,32765854 -g1,17194:7263065,32765854 -g1,17194:7579211,32765854 -g1,17194:7895357,32765854 -g1,17194:8211503,32765854 -g1,17194:8527649,32765854 -g1,17194:8843795,32765854 -g1,17194:10740669,32765854 -g1,17194:11372961,32765854 -g1,17194:13585981,32765854 -g1,17194:15482855,32765854 -g1,17194:16747438,32765854 -g1,17194:18328167,32765854 -k1,17194:18328167,32765854:0 -h1,17194:20541187,32765854:0,0,0 -k1,17194:32583029,32765854:12041842 -g1,17194:32583029,32765854 -) -(1,17195:6630773,33432032:25952256,404226,107478 -h1,17195:6630773,33432032:0,0,0 -g1,17195:6946919,33432032 -g1,17195:7263065,33432032 -g1,17195:7579211,33432032 -g1,17195:7895357,33432032 -g1,17195:8211503,33432032 -g1,17195:8527649,33432032 -g1,17195:8843795,33432032 -g1,17195:11689106,33432032 -g1,17195:12321398,33432032 -g1,17195:15166709,33432032 -g1,17195:16747438,33432032 -g1,17195:18644312,33432032 -g1,17195:20541186,33432032 -g1,17195:21489623,33432032 -h1,17195:24651080,33432032:0,0,0 -k1,17195:32583029,33432032:7931949 -g1,17195:32583029,33432032 -) -] -) -g1,17197:32583029,33539510 -g1,17197:6630773,33539510 -g1,17197:6630773,33539510 -g1,17197:32583029,33539510 -g1,17197:32583029,33539510 -) -h1,17197:6630773,33736118:0,0,0 -(1,17200:6630773,43409608:25952256,9083666,0 -k1,17200:10523651,43409608:3892878 -h1,17199:10523651,43409608:0,0,0 -(1,17199:10523651,43409608:18166500,9083666,0 -(1,17199:10523651,43409608:18167376,9083688,0 -(1,17199:10523651,43409608:18167376,9083688,0 -(1,17199:10523651,43409608:0,9083688,0 -(1,17199:10523651,43409608:0,14208860,0 -(1,17199:10523651,43409608:28417720,14208860,0 -) -k1,17199:10523651,43409608:-28417720 -) -) -g1,17199:28691027,43409608 -) -) -) -g1,17200:28690151,43409608 -k1,17200:32583029,43409608:3892878 -) -v1,17207:6630773,44775384:0,393216,0 -] -(1,17224:32583029,45706769:0,0,0 -g1,17224:32583029,45706769 -) -) -] -(1,17224:6630773,47279633:25952256,0,0 -h1,17224:6630773,47279633:25952256,0,0 -) -] -(1,17224:4262630,4025873:0,0,0 -[1,17224:-473656,4025873:0,0,0 -(1,17224:-473656,-710413:0,0,0 -(1,17224:-473656,-710413:0,0,0 -g1,17224:-473656,-710413 -) -g1,17224:-473656,-710413 -) -] -) -] -!18712 -}299 -Input:2537:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2538:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2539:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2540:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2541:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2542:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!576 -{300 -[1,17249:4262630,47279633:28320399,43253760,0 -(1,17249:4262630,4025873:0,0,0 -[1,17249:-473656,4025873:0,0,0 -(1,17249:-473656,-710413:0,0,0 -(1,17249:-473656,-644877:0,0,0 -k1,17249:-473656,-644877:-65536 +[1,17269:3078558,4812305:0,0,0 +(1,17269:3078558,49800853:0,16384,2228224 +g1,17269:29030814,49800853 +g1,17269:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,17269:36151628,51504789:16384,1179648,0 +) +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 +) +] +) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,17269:37855564,49800853:1179648,16384,0 +) +) +k1,17269:3078556,49800853:-34777008 +) +] +g1,17269:6630773,4812305 +k1,17269:21350816,4812305:13524666 +g1,17269:21999622,4812305 +g1,17269:25611966,4812305 +g1,17269:28956923,4812305 +g1,17269:29772190,4812305 +) +) +] +[1,17269:6630773,45706769:25952256,40108032,0 +(1,17269:6630773,45706769:25952256,40108032,0 +(1,17269:6630773,45706769:0,0,0 +g1,17269:6630773,45706769 +) +[1,17269:6630773,45706769:25952256,40108032,0 +(1,17211:6630773,6254097:25952256,505283,134348 +h1,17210:6630773,6254097:983040,0,0 +k1,17210:8615733,6254097:172890 +k1,17210:10504355,6254097:172889 +k1,17210:14748997,6254097:172890 +k1,17210:16964643,6254097:172889 +k1,17210:18005885,6254097:172890 +k1,17210:19709040,6254097:172889 +k1,17210:20533358,6254097:172890 +k1,17210:21903591,6254097:172890 +k1,17210:22432340,6254097:172889 +k1,17210:25117225,6254097:172890 +k1,17210:28297561,6254097:172889 +k1,17210:29153336,6254097:172890 +(1,17210:29153336,6254097:0,414482,122846 +r1,17269:30566737,6254097:1413401,537328,122846 +k1,17210:29153336,6254097:-1413401 +) +(1,17210:29153336,6254097:1413401,414482,122846 +k1,17210:29153336,6254097:3277 +h1,17210:30563460,6254097:0,411205,112570 +) +k1,17210:30739626,6254097:172889 +k1,17210:31563944,6254097:172890 +k1,17210:32583029,6254097:0 +) +(1,17211:6630773,7119177:25952256,505283,134348 +k1,17210:8092661,7119177:184591 +k1,17210:10389477,7119177:184591 +k1,17210:12062391,7119177:184591 +k1,17210:13115334,7119177:184591 +k1,17210:15594996,7119177:184591 +k1,17210:16798672,7119177:184591 +k1,17210:21055015,7119177:184591 +k1,17210:21925768,7119177:184591 +k1,17210:24128868,7119177:184591 +k1,17210:26048852,7119177:184591 +(1,17210:26048852,7119177:0,452978,122846 +r1,17269:30275948,7119177:4227096,575824,122846 +k1,17210:26048852,7119177:-4227096 +) +(1,17210:26048852,7119177:4227096,452978,122846 +k1,17210:26048852,7119177:3277 +h1,17210:30272671,7119177:0,411205,112570 +) +k1,17210:30634209,7119177:184591 +k1,17210:31714677,7119177:184591 +k1,17210:32583029,7119177:0 +) +(1,17211:6630773,7984257:25952256,505283,126483 +g1,17210:8027345,7984257 +g1,17210:8582434,7984257 +g1,17210:9969175,7984257 +g1,17210:11943119,7984257 +g1,17210:13579946,7984257 +$1,17210:13579946,7984257 +$1,17210:14187465,7984257 +g1,17210:14373849,7984257 +g1,17210:15514568,7984257 +$1,17210:15514568,7984257 +$1,17210:16122087,7984257 +g1,17210:16308471,7984257 +g1,17210:18103895,7984257 +$1,17210:18103895,7984257 +$1,17210:18711414,7984257 +g1,17210:18897798,7984257 +g1,17210:20890223,7984257 +k1,17211:32583029,7984257:9734525 +g1,17211:32583029,7984257 +) +v1,17213:6630773,8669112:0,393216,0 +(1,17219:6630773,10379505:25952256,2103609,196608 +g1,17219:6630773,10379505 +g1,17219:6630773,10379505 +g1,17219:6434165,10379505 +(1,17219:6434165,10379505:0,2103609,196608 +r1,17269:32779637,10379505:26345472,2300217,196608 +k1,17219:6434165,10379505:-26345472 +) +(1,17219:6434165,10379505:26345472,2103609,196608 +[1,17219:6630773,10379505:25952256,1907001,0 +(1,17215:6630773,8896943:25952256,424439,112852 +(1,17214:6630773,8896943:0,0,0 +g1,17214:6630773,8896943 +g1,17214:6630773,8896943 +g1,17214:6303093,8896943 +(1,17214:6303093,8896943:0,0,0 +) +g1,17214:6630773,8896943 +) +k1,17215:6630773,8896943:0 +g1,17215:10614221,8896943 +g1,17215:11278129,8896943 +k1,17215:11278129,8896943:0 +h1,17215:13601807,8896943:0,0,0 +k1,17215:32583029,8896943:18981222 +g1,17215:32583029,8896943 +) +(1,17216:6630773,9581798:25952256,424439,112852 +h1,17216:6630773,9581798:0,0,0 +g1,17216:6962727,9581798 +g1,17216:7294681,9581798 +g1,17216:7626635,9581798 +g1,17216:7958589,9581798 +g1,17216:8290543,9581798 +g1,17216:8622497,9581798 +g1,17216:8954451,9581798 +g1,17216:10946175,9581798 +g1,17216:11610083,9581798 +g1,17216:13601807,9581798 +g1,17216:14265715,9581798 +g1,17216:14929623,9581798 +g1,17216:16921347,9581798 +h1,17216:17253301,9581798:0,0,0 +k1,17216:32583029,9581798:15329728 +g1,17216:32583029,9581798 +) +(1,17217:6630773,10266653:25952256,424439,112852 +h1,17217:6630773,10266653:0,0,0 +g1,17217:6962727,10266653 +g1,17217:7294681,10266653 +k1,17217:7294681,10266653:0 +h1,17217:11278128,10266653:0,0,0 +k1,17217:32583028,10266653:21304900 +g1,17217:32583028,10266653 +) +] +) +g1,17219:32583029,10379505 +g1,17219:6630773,10379505 +g1,17219:6630773,10379505 +g1,17219:32583029,10379505 +g1,17219:32583029,10379505 +) +h1,17219:6630773,10576113:0,0,0 +(1,17222:6630773,19725315:25952256,9083666,0 +k1,17222:10523651,19725315:3892878 +h1,17221:10523651,19725315:0,0,0 +(1,17221:10523651,19725315:18166500,9083666,0 +(1,17221:10523651,19725315:18167376,9083688,0 +(1,17221:10523651,19725315:18167376,9083688,0 +(1,17221:10523651,19725315:0,9083688,0 +(1,17221:10523651,19725315:0,14208860,0 +(1,17221:10523651,19725315:28417720,14208860,0 +) +k1,17221:10523651,19725315:-28417720 +) +) +g1,17221:28691027,19725315 +) +) +) +g1,17222:28690151,19725315 +k1,17222:32583029,19725315:3892878 +) +v1,17229:6630773,20590395:0,393216,0 +(1,17252:6630773,30075931:25952256,9878752,0 +g1,17252:6630773,30075931 +g1,17252:6237557,30075931 +r1,17269:6368629,30075931:131072,9878752,0 +g1,17252:6567858,30075931 +g1,17252:6764466,30075931 +[1,17252:6764466,30075931:25818563,9878752,0 +(1,17230:6764466,20951572:25818563,754393,260573 +(1,17229:6764466,20951572:0,754393,260573 +r1,17269:8010564,20951572:1246098,1014966,260573 +k1,17229:6764466,20951572:-1246098 +) +(1,17229:6764466,20951572:1246098,754393,260573 +) +k1,17229:8274707,20951572:264143 +k1,17229:8602387,20951572:327680 +k1,17229:9494365,20951572:264143 +k1,17229:10777593,20951572:264143 +k1,17229:14033455,20951572:264143 +k1,17229:16326593,20951572:264143 +k1,17229:17609821,20951572:264143 +k1,17229:19481562,20951572:264143 +k1,17229:21249756,20951572:264143 +k1,17229:23864020,20951572:264143 +k1,17229:28618690,20951572:264143 +k1,17229:30768304,20951572:264143 +k1,17229:31563944,20951572:264143 +k1,17229:32583029,20951572:0 +) +(1,17230:6764466,21816652:25818563,513147,134348 +k1,17229:9196793,21816652:166747 +k1,17229:9976302,21816652:166747 +k1,17229:11162133,21816652:166746 +k1,17229:11743691,21816652:166715 +k1,17229:14504353,21816652:166747 +k1,17229:17605802,21816652:166747 +k1,17229:18458710,21816652:166746 +k1,17229:20019408,21816652:166747 +k1,17229:21888125,21816652:166747 +k1,17229:22469683,21816652:166715 +k1,17229:25099928,21816652:166747 +k1,17229:27622693,21816652:166746 +k1,17229:28893722,21816652:166747 +k1,17229:29808235,21816652:166747 +k1,17229:32583029,21816652:0 +) +(1,17230:6764466,22681732:25818563,513147,134348 +g1,17229:7615123,22681732 +g1,17229:8170212,22681732 +g1,17229:10880781,22681732 +g1,17229:11766172,22681732 +g1,17229:13271534,22681732 +g1,17229:15546288,22681732 +g1,17229:16361555,22681732 +g1,17229:18839471,22681732 +h1,17229:20382189,22681732:0,0,0 +g1,17229:20581418,22681732 +g1,17229:21590017,22681732 +g1,17229:23287399,22681732 +h1,17229:24482776,22681732:0,0,0 +k1,17230:32583029,22681732:7926583 +g1,17230:32583029,22681732 +) +v1,17232:6764466,23366587:0,393216,0 +(1,17238:6764466,25076980:25818563,2103609,196608 +g1,17238:6764466,25076980 +g1,17238:6764466,25076980 +g1,17238:6567858,25076980 +(1,17238:6567858,25076980:0,2103609,196608 +r1,17269:32779637,25076980:26211779,2300217,196608 +k1,17238:6567857,25076980:-26211780 +) +(1,17238:6567858,25076980:26211779,2103609,196608 +[1,17238:6764466,25076980:25818563,1907001,0 +(1,17234:6764466,23594418:25818563,424439,112852 +(1,17233:6764466,23594418:0,0,0 +g1,17233:6764466,23594418 +g1,17233:6764466,23594418 +g1,17233:6436786,23594418 +(1,17233:6436786,23594418:0,0,0 +) +g1,17233:6764466,23594418 +) +g1,17234:7428374,23594418 +g1,17234:8424236,23594418 +g1,17234:12407684,23594418 +g1,17234:13071592,23594418 +k1,17234:13071592,23594418:0 +h1,17234:15395270,23594418:0,0,0 +k1,17234:32583030,23594418:17187760 +g1,17234:32583030,23594418 +) +(1,17235:6764466,24279273:25818563,424439,112852 +h1,17235:6764466,24279273:0,0,0 +g1,17235:7096420,24279273 +g1,17235:7428374,24279273 +g1,17235:7760328,24279273 +g1,17235:8092282,24279273 +g1,17235:8424236,24279273 +g1,17235:8756190,24279273 +g1,17235:9088144,24279273 +g1,17235:9420098,24279273 +g1,17235:9752052,24279273 +g1,17235:10084006,24279273 +g1,17235:10415960,24279273 +g1,17235:10747914,24279273 +g1,17235:12739638,24279273 +g1,17235:13403546,24279273 +g1,17235:15395270,24279273 +g1,17235:16059178,24279273 +g1,17235:16723086,24279273 +g1,17235:18714810,24279273 +h1,17235:19046764,24279273:0,0,0 +k1,17235:32583029,24279273:13536265 +g1,17235:32583029,24279273 +) +(1,17236:6764466,24964128:25818563,424439,112852 +h1,17236:6764466,24964128:0,0,0 +g1,17236:7096420,24964128 +g1,17236:7428374,24964128 +g1,17236:7760328,24964128 +g1,17236:8092282,24964128 +g1,17236:8424236,24964128 +g1,17236:8756190,24964128 +g1,17236:9088144,24964128 +k1,17236:9088144,24964128:0 +h1,17236:13071591,24964128:0,0,0 +k1,17236:32583029,24964128:19511438 +g1,17236:32583029,24964128 +) +] +) +g1,17238:32583029,25076980 +g1,17238:6764466,25076980 +g1,17238:6764466,25076980 +g1,17238:32583029,25076980 +g1,17238:32583029,25076980 +) +h1,17238:6764466,25273588:0,0,0 +(1,17242:6764466,26138668:25818563,513147,126483 +h1,17241:6764466,26138668:983040,0,0 +g1,17241:9138180,26138668 +g1,17241:11687530,26138668 +g1,17241:12499521,26138668 +g1,17241:13054610,26138668 +g1,17241:14707428,26138668 +g1,17241:16505735,26138668 +g1,17241:17896409,26138668 +g1,17241:19907053,26138668 +g1,17241:20757710,26138668 +g1,17241:22148384,26138668 +g1,17241:23759914,26138668 +g1,17241:25526764,26138668 +g1,17241:27039335,26138668 +g1,17241:28047934,26138668 +k1,17242:32583029,26138668:3016626 +g1,17242:32583029,26138668 +) +v1,17244:6764466,26823523:0,393216,0 +(1,17248:6764466,27157600:25818563,727293,196608 +g1,17248:6764466,27157600 +g1,17248:6764466,27157600 +g1,17248:6567858,27157600 +(1,17248:6567858,27157600:0,727293,196608 +r1,17269:32779637,27157600:26211779,923901,196608 +k1,17248:6567857,27157600:-26211780 +) +(1,17248:6567858,27157600:26211779,727293,196608 +[1,17248:6764466,27157600:25818563,530685,0 +(1,17246:6764466,27051354:25818563,424439,106246 +(1,17245:6764466,27051354:0,0,0 +g1,17245:6764466,27051354 +g1,17245:6764466,27051354 +g1,17245:6436786,27051354 +(1,17245:6436786,27051354:0,0,0 +) +g1,17245:6764466,27051354 +) +k1,17246:6764466,27051354:0 +h1,17246:9420098,27051354:0,0,0 +k1,17246:32583030,27051354:23162932 +g1,17246:32583030,27051354 +) +] +) +g1,17248:32583029,27157600 +g1,17248:6764466,27157600 +g1,17248:6764466,27157600 +g1,17248:32583029,27157600 +g1,17248:32583029,27157600 +) +h1,17248:6764466,27354208:0,0,0 +(1,17252:6764466,28219288:25818563,505283,134348 +h1,17251:6764466,28219288:983040,0,0 +k1,17251:10049832,28219288:254326 +k1,17251:11495604,28219288:254327 +k1,17251:13451900,28219288:254326 +k1,17251:16575393,28219288:254327 +k1,17251:17934001,28219288:254326 +k1,17251:18936094,28219288:254327 +k1,17251:20476236,28219288:254326 +k1,17251:22695987,28219288:254326 +k1,17251:23601742,28219288:254327 +k1,17251:24211928,28219288:254326 +k1,17251:26277670,28219288:254327 +k1,17251:28557714,28219288:254326 +k1,17251:29498203,28219288:254327 +k1,17251:30771614,28219288:254326 +k1,17251:32583029,28219288:0 +) +(1,17252:6764466,29084368:25818563,513147,134348 +k1,17251:9240908,29084368:186614 +k1,17251:10419081,29084368:186613 +k1,17251:11671966,29084368:186614 +k1,17251:12877665,29084368:186614 +k1,17251:16014054,29084368:186614 +k1,17251:20865520,29084368:186613 +k1,17251:21711426,29084368:186614 +k1,17251:22917125,29084368:186614 +k1,17251:24711337,29084368:186614 +k1,17251:28454589,29084368:186613 +k1,17251:29713372,29084368:186614 +k1,17251:32227169,29084368:186614 +k1,17251:32583029,29084368:0 +) +(1,17252:6764466,29949448:25818563,505283,126483 +g1,17251:8857685,29949448 +g1,17251:10427927,29949448 +g1,17251:12016519,29949448 +g1,17251:14514096,29949448 +g1,17251:15364753,29949448 +g1,17251:17206314,29949448 +k1,17252:32583029,29949448:13563989 +g1,17252:32583029,29949448 +) +] +g1,17252:32583029,30075931 +) +h1,17252:6630773,30075931:0,0,0 +v1,17255:6630773,30941011:0,393216,0 +(1,17258:6630773,39169377:25952256,8621582,0 +g1,17258:6630773,39169377 +g1,17258:6237557,39169377 +r1,17269:6368629,39169377:131072,8621582,0 +g1,17258:6567858,39169377 +g1,17258:6764466,39169377 +[1,17258:6764466,39169377:25818563,8621582,0 +(1,17256:6764466,31249309:25818563,701514,196608 +(1,17255:6764466,31249309:0,701514,196608 +r1,17269:8863446,31249309:2098980,898122,196608 +k1,17255:6764466,31249309:-2098980 +) +(1,17255:6764466,31249309:2098980,701514,196608 +) +k1,17255:9071122,31249309:207676 +k1,17255:10389051,31249309:327680 +k1,17255:12583779,31249309:207676 +k1,17255:13659806,31249309:207675 +k1,17255:15342697,31249309:207676 +k1,17255:16990199,31249309:207676 +k1,17255:18528256,31249309:207676 +k1,17255:19387360,31249309:207676 +k1,17255:21237368,31249309:207676 +k1,17255:21800903,31249309:207675 +k1,17255:23285876,31249309:207676 +k1,17255:24684997,31249309:207676 +k1,17255:25761025,31249309:207676 +k1,17255:27254517,31249309:207676 +k1,17255:28653637,31249309:207675 +k1,17255:29217173,31249309:207676 +k1,17255:31923737,31249309:207676 +k1,17255:32583029,31249309:0 +) +(1,17256:6764466,32114389:25818563,513147,134348 +k1,17255:7989654,32114389:206103 +k1,17255:11127182,32114389:206103 +k1,17255:11992577,32114389:206103 +k1,17255:12554540,32114389:206103 +k1,17255:14885320,32114389:206103 +(1,17255:14885320,32114389:0,452978,122846 +r1,17269:16298721,32114389:1413401,575824,122846 +k1,17255:14885320,32114389:-1413401 +) +(1,17255:14885320,32114389:1413401,452978,122846 +k1,17255:14885320,32114389:3277 +h1,17255:16295444,32114389:0,411205,112570 +) +k1,17255:16504824,32114389:206103 +k1,17255:17988224,32114389:206103 +k1,17255:20327524,32114389:206103 +k1,17255:21487176,32114389:206103 +k1,17255:23168494,32114389:206103 +k1,17255:24660413,32114389:206103 +k1,17255:26677931,32114389:206103 +k1,17255:27239894,32114389:206103 +k1,17255:29471715,32114389:206103 +k1,17255:31563944,32114389:206103 +k1,17255:32583029,32114389:0 +) +(1,17256:6764466,32979469:25818563,414482,115847 +g1,17255:8701710,32979469 +(1,17255:8701710,32979469:0,414482,115847 +r1,17269:9059976,32979469:358266,530329,115847 +k1,17255:8701710,32979469:-358266 +) +(1,17255:8701710,32979469:358266,414482,115847 +k1,17255:8701710,32979469:3277 +h1,17255:9056699,32979469:0,411205,112570 +) +k1,17256:32583030,32979469:23349384 +g1,17256:32583030,32979469 +) +(1,17258:6764466,33844549:25818563,513147,134348 +h1,17257:6764466,33844549:983040,0,0 +k1,17257:8970480,33844549:269425 +k1,17257:10344187,33844549:269425 +k1,17257:12040331,33844549:269425 +k1,17257:13328841,33844549:269425 +k1,17257:16529691,33844549:269425 +k1,17257:17458408,33844549:269425 +k1,17257:18859640,33844549:269425 +k1,17257:19573983,33844549:269354 +k1,17257:21976605,33844549:269425 +k1,17257:25226607,33844549:269425 +(1,17257:25226607,33844549:0,452978,122846 +r1,17269:26640008,33844549:1413401,575824,122846 +k1,17257:25226607,33844549:-1413401 +) +(1,17257:25226607,33844549:1413401,452978,122846 +k1,17257:25226607,33844549:3277 +h1,17257:26636731,33844549:0,411205,112570 +) +k1,17257:26909433,33844549:269425 +k1,17257:28456155,33844549:269425 +k1,17257:31189078,33844549:269425 +k1,17258:32583029,33844549:0 +) +(1,17258:6764466,34709629:25818563,513147,134348 +(1,17257:6764466,34709629:0,452978,115847 +r1,17269:8529579,34709629:1765113,568825,115847 +k1,17257:6764466,34709629:-1765113 +) +(1,17257:6764466,34709629:1765113,452978,115847 +k1,17257:6764466,34709629:3277 +h1,17257:8526302,34709629:0,411205,112570 +) +k1,17257:9095413,34709629:392164 +k1,17257:12022510,34709629:392164 +k1,17257:15243207,34709629:392164 +k1,17257:18395747,34709629:392164 +k1,17257:19143771,34709629:392164 +(1,17257:19143771,34709629:0,452978,115847 +r1,17269:22315731,34709629:3171960,568825,115847 +k1,17257:19143771,34709629:-3171960 +) +(1,17257:19143771,34709629:3171960,452978,115847 +k1,17257:19143771,34709629:3277 +h1,17257:22312454,34709629:0,411205,112570 +) +k1,17257:22707894,34709629:392163 +k1,17257:24047709,34709629:392164 +(1,17257:24047709,34709629:0,452978,122846 +r1,17269:25461110,34709629:1413401,575824,122846 +k1,17257:24047709,34709629:-1413401 +) +(1,17257:24047709,34709629:1413401,452978,122846 +k1,17257:24047709,34709629:3277 +h1,17257:25457833,34709629:0,411205,112570 +) +k1,17257:25853274,34709629:392164 +k1,17257:27522735,34709629:392164 +k1,17257:30048096,34709629:392164 +k1,17257:32583029,34709629:0 +) +(1,17258:6764466,35574709:25818563,505283,134348 +k1,17257:10513111,35574709:206425 +k1,17257:13479912,35574709:206425 +k1,17257:16470962,35574709:206425 +(1,17257:16470962,35574709:0,452978,115847 +r1,17269:18236075,35574709:1765113,568825,115847 +k1,17257:16470962,35574709:-1765113 +) +(1,17257:16470962,35574709:1765113,452978,115847 +k1,17257:16470962,35574709:3277 +h1,17257:18232798,35574709:0,411205,112570 +) +k1,17257:18616169,35574709:206424 +(1,17257:18616169,35574709:0,452978,115847 +r1,17269:22843265,35574709:4227096,568825,115847 +k1,17257:18616169,35574709:-4227096 +) +(1,17257:18616169,35574709:4227096,452978,115847 +k1,17257:18616169,35574709:3277 +h1,17257:22839988,35574709:0,411205,112570 +) +k1,17257:23223360,35574709:206425 +(1,17257:23223360,35574709:0,452978,115847 +r1,17269:27098744,35574709:3875384,568825,115847 +k1,17257:23223360,35574709:-3875384 +) +(1,17257:23223360,35574709:3875384,452978,115847 +k1,17257:23223360,35574709:3277 +h1,17257:27095467,35574709:0,411205,112570 +) +k1,17257:27478839,35574709:206425 +(1,17257:27478839,35574709:0,452978,115847 +r1,17269:32409359,35574709:4930520,568825,115847 +k1,17257:27478839,35574709:-4930520 +) +(1,17257:27478839,35574709:4930520,452978,115847 +k1,17257:27478839,35574709:3277 +h1,17257:32406082,35574709:0,411205,112570 +) +k1,17257:32583029,35574709:0 +) +(1,17258:6764466,36439789:25818563,505283,134348 +k1,17257:8191024,36439789:235113 +(1,17257:8191024,36439789:0,452978,115847 +r1,17269:12769832,36439789:4578808,568825,115847 +k1,17257:8191024,36439789:-4578808 +) +(1,17257:8191024,36439789:4578808,452978,115847 +k1,17257:8191024,36439789:3277 +h1,17257:12766555,36439789:0,411205,112570 +) +k1,17257:13178615,36439789:235113 +k1,17257:14231617,36439789:235113 +k1,17257:15637203,36439789:235113 +k1,17257:17588049,36439789:235113 +k1,17257:20597300,36439789:235112 +k1,17257:23390939,36439789:235113 +k1,17257:24645137,36439789:235113 +k1,17257:27471544,36439789:235113 +k1,17257:28799142,36439789:235113 +k1,17257:30730982,36439789:235113 +k1,17258:32583029,36439789:0 +) +(1,17258:6764466,37304869:25818563,513147,134348 +k1,17257:8173234,37304869:263199 +k1,17257:9087861,37304869:263199 +k1,17257:11719532,37304869:263200 +(1,17257:11719532,37304869:0,452978,122846 +r1,17269:13132933,37304869:1413401,575824,122846 +k1,17257:11719532,37304869:-1413401 +) +(1,17257:11719532,37304869:1413401,452978,122846 +k1,17257:11719532,37304869:3277 +h1,17257:13129656,37304869:0,411205,112570 +) +k1,17257:13396132,37304869:263199 +k1,17257:14936628,37304869:263199 +k1,17257:17489655,37304869:263199 +k1,17257:19146805,37304869:263199 +k1,17257:22172347,37304869:263199 +k1,17257:25251629,37304869:263200 +k1,17257:26174120,37304869:263199 +k1,17257:28325411,37304869:263199 +k1,17257:29271495,37304869:263199 +k1,17257:32583029,37304869:0 +) +(1,17258:6764466,38169949:25818563,513147,126483 +k1,17257:8271314,38169949:253144 +k1,17257:9656919,38169949:253143 +k1,17257:10657829,38169949:253144 +k1,17257:12219726,38169949:253143 +k1,17257:13124298,38169949:253144 +k1,17257:14402424,38169949:253143 +k1,17257:15985949,38169949:253144 +k1,17257:17258177,38169949:253143 +k1,17257:18788618,38169949:253144 +k1,17257:22969334,38169949:253143 +k1,17257:24214038,38169949:253144 +k1,17257:26505351,38169949:253143 +k1,17257:27444657,38169949:253144 +k1,17257:30651508,38169949:253143 +k1,17257:31563944,38169949:253144 +k1,17258:32583029,38169949:0 +) +(1,17258:6764466,39035029:25818563,505283,134348 +(1,17257:6764466,39035029:0,452978,122846 +r1,17269:8177867,39035029:1413401,575824,122846 +k1,17257:6764466,39035029:-1413401 +) +(1,17257:6764466,39035029:1413401,452978,122846 +k1,17257:6764466,39035029:3277 +h1,17257:8174590,39035029:0,411205,112570 +) +g1,17257:8377096,39035029 +g1,17257:9853622,39035029 +k1,17258:32583028,39035029:20265908 +g1,17258:32583028,39035029 +) +] +g1,17258:32583029,39169377 +) +h1,17258:6630773,39169377:0,0,0 +(1,17261:6630773,40034457:25952256,505283,134348 +h1,17260:6630773,40034457:983040,0,0 +k1,17260:10794712,40034457:218016 +k1,17260:14077193,40034457:218017 +k1,17260:15286769,40034457:218016 +k1,17260:17791992,40034457:218016 +k1,17260:20595403,40034457:218016 +k1,17260:21464848,40034457:218017 +k1,17260:24524505,40034457:218016 +k1,17260:25358559,40034457:218016 +k1,17260:26595660,40034457:218016 +k1,17260:28376711,40034457:218017 +k1,17260:29974915,40034457:218016 +k1,17260:31297213,40034457:218016 +k1,17260:32583029,40034457:0 +) +(1,17261:6630773,40899537:25952256,513147,126483 +k1,17260:7585341,40899537:206802 +k1,17260:8726686,40899537:206802 +k1,17260:9584916,40899537:206802 +k1,17260:12549473,40899537:206802 +k1,17260:14940590,40899537:206802 +k1,17260:15833554,40899537:206802 +k1,17260:17792133,40899537:206802 +k1,17260:18658227,40899537:206802 +k1,17260:20504084,40899537:206802 +k1,17260:21702446,40899537:206802 +k1,17260:22670776,40899537:206802 +k1,17260:25316828,40899537:206802 +k1,17260:27298345,40899537:206802 +k1,17260:30346788,40899537:206802 +k1,17260:31169628,40899537:206802 +(1,17260:31169628,40899537:0,452978,115847 +r1,17269:32583029,40899537:1413401,568825,115847 +k1,17260:31169628,40899537:-1413401 +) +(1,17260:31169628,40899537:1413401,452978,115847 +k1,17260:31169628,40899537:3277 +h1,17260:32579752,40899537:0,411205,112570 +) +k1,17260:32583029,40899537:0 +) +(1,17261:6630773,41764617:25952256,513147,134348 +k1,17260:7906994,41764617:171939 +k1,17260:8826699,41764617:171939 +k1,17260:10465333,41764617:171938 +k1,17260:13222667,41764617:171939 +k1,17260:15129999,41764617:171939 +(1,17260:15129999,41764617:0,452978,115847 +r1,17269:16895112,41764617:1765113,568825,115847 +k1,17260:15129999,41764617:-1765113 +) +(1,17260:15129999,41764617:1765113,452978,115847 +k1,17260:15129999,41764617:3277 +h1,17260:16891835,41764617:0,411205,112570 +) +k1,17260:17067051,41764617:171939 +k1,17260:17925151,41764617:171938 +k1,17260:21470228,41764617:171939 +k1,17260:24411718,41764617:171939 +k1,17260:25269819,41764617:171939 +k1,17260:27517282,41764617:171938 +k1,17260:29718216,41764617:171939 +k1,17260:30573040,41764617:171939 +k1,17260:32583029,41764617:0 +) +(1,17261:6630773,42629697:25952256,513147,126483 +k1,17260:9992165,42629697:168478 +k1,17260:12222405,42629697:168477 +k1,17260:15148638,42629697:168478 +k1,17260:17327761,42629697:168478 +k1,17260:18443889,42629697:168477 +k1,17260:21786931,42629697:168478 +k1,17260:23059691,42629697:168478 +k1,17260:23975935,42629697:168478 +k1,17260:25252626,42629697:168477 +k1,17260:26107266,42629697:168478 +k1,17260:28351269,42629697:168478 +k1,17260:30091299,42629697:168477 +k1,17260:31635378,42629697:168478 +k1,17260:32583029,42629697:0 +) +(1,17261:6630773,43494777:25952256,505283,134348 +g1,17260:10022916,43494777 +g1,17260:12110237,43494777 +g1,17260:13500911,43494777 +g1,17260:16114486,43494777 +g1,17260:18265377,43494777 +g1,17260:19907053,43494777 +g1,17260:21841675,43494777 +(1,17260:21841675,43494777:0,452978,115847 +r1,17269:23606788,43494777:1765113,568825,115847 +k1,17260:21841675,43494777:-1765113 +) +(1,17260:21841675,43494777:1765113,452978,115847 +k1,17260:21841675,43494777:3277 +h1,17260:23603511,43494777:0,411205,112570 +) +k1,17261:32583029,43494777:8802571 +g1,17261:32583029,43494777 +) +v1,17263:6630773,44179632:0,393216,0 +(1,17269:6630773,45205170:25952256,1418754,196608 +g1,17269:6630773,45205170 +g1,17269:6630773,45205170 +g1,17269:6434165,45205170 +(1,17269:6434165,45205170:0,1418754,196608 +r1,17269:32779637,45205170:26345472,1615362,196608 +k1,17269:6434165,45205170:-26345472 +) +(1,17269:6434165,45205170:26345472,1418754,196608 +[1,17269:6630773,45205170:25952256,1222146,0 +(1,17265:6630773,44407463:25952256,424439,112852 +(1,17264:6630773,44407463:0,0,0 +g1,17264:6630773,44407463 +g1,17264:6630773,44407463 +g1,17264:6303093,44407463 +(1,17264:6303093,44407463:0,0,0 +) +g1,17264:6630773,44407463 +) +k1,17265:6630773,44407463:0 +g1,17265:10614221,44407463 +g1,17265:11278129,44407463 +k1,17265:11278129,44407463:0 +h1,17265:13601807,44407463:0,0,0 +k1,17265:32583029,44407463:18981222 +g1,17265:32583029,44407463 +) +(1,17266:6630773,45092318:25952256,424439,112852 +h1,17266:6630773,45092318:0,0,0 +g1,17266:6962727,45092318 +g1,17266:7294681,45092318 +g1,17266:7626635,45092318 +g1,17266:7958589,45092318 +g1,17266:8290543,45092318 +g1,17266:8622497,45092318 +g1,17266:8954451,45092318 +g1,17266:10946175,45092318 +g1,17266:11610083,45092318 +g1,17266:13601807,45092318 +g1,17266:14265715,45092318 +g1,17266:14929623,45092318 +g1,17266:16921347,45092318 +h1,17266:17253301,45092318:0,0,0 +k1,17266:32583029,45092318:15329728 +g1,17266:32583029,45092318 +) +] +) +g1,17269:32583029,45205170 +g1,17269:6630773,45205170 +g1,17269:6630773,45205170 +g1,17269:32583029,45205170 +g1,17269:32583029,45205170 +) +] +(1,17269:32583029,45706769:0,0,0 +g1,17269:32583029,45706769 +) +) +] +(1,17269:6630773,47279633:25952256,0,0 +h1,17269:6630773,47279633:25952256,0,0 +) +] +(1,17269:4262630,4025873:0,0,0 +[1,17269:-473656,4025873:0,0,0 +(1,17269:-473656,-710413:0,0,0 +(1,17269:-473656,-710413:0,0,0 +g1,17269:-473656,-710413 +) +g1,17269:-473656,-710413 +) +] +) +] +!27682 +}281 +Input:2552:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2553:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2554:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2555:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2556:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2557:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2558:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2559:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2560:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2561:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!952 +{282 +[1,17300:4262630,47279633:28320399,43253760,0 +(1,17300:4262630,4025873:0,0,0 +[1,17300:-473656,4025873:0,0,0 +(1,17300:-473656,-710413:0,0,0 +(1,17300:-473656,-644877:0,0,0 +k1,17300:-473656,-644877:-65536 ) -(1,17249:-473656,4736287:0,0,0 -k1,17249:-473656,4736287:5209943 +(1,17300:-473656,4736287:0,0,0 +k1,17300:-473656,4736287:5209943 ) -g1,17249:-473656,-710413 +g1,17300:-473656,-710413 ) ] ) -[1,17249:6630773,47279633:25952256,43253760,0 -[1,17249:6630773,4812305:25952256,786432,0 -(1,17249:6630773,4812305:25952256,513147,134348 -(1,17249:6630773,4812305:25952256,513147,134348 -g1,17249:3078558,4812305 -[1,17249:3078558,4812305:0,0,0 -(1,17249:3078558,2439708:0,1703936,0 -k1,17249:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,17249:2537886,2439708:1179648,16384,0 +[1,17300:6630773,47279633:25952256,43253760,0 +[1,17300:6630773,4812305:25952256,786432,0 +(1,17300:6630773,4812305:25952256,513147,134348 +(1,17300:6630773,4812305:25952256,513147,134348 +g1,17300:3078558,4812305 +[1,17300:3078558,4812305:0,0,0 +(1,17300:3078558,2439708:0,1703936,0 +k1,17300:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,17300:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,17249:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,17300:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,17249:3078558,4812305:0,0,0 -(1,17249:3078558,2439708:0,1703936,0 -g1,17249:29030814,2439708 -g1,17249:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,17249:36151628,1915420:16384,1179648,0 +[1,17300:3078558,4812305:0,0,0 +(1,17300:3078558,2439708:0,1703936,0 +g1,17300:29030814,2439708 +g1,17300:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,17300:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,17249:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,17300:37855564,2439708:1179648,16384,0 ) ) -k1,17249:3078556,2439708:-34777008 +k1,17300:3078556,2439708:-34777008 ) ] -[1,17249:3078558,4812305:0,0,0 -(1,17249:3078558,49800853:0,16384,2228224 -k1,17249:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,17249:2537886,49800853:1179648,16384,0 +[1,17300:3078558,4812305:0,0,0 +(1,17300:3078558,49800853:0,16384,2228224 +k1,17300:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,17300:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,17249:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,17300:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,17249:3078558,4812305:0,0,0 -(1,17249:3078558,49800853:0,16384,2228224 -g1,17249:29030814,49800853 -g1,17249:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,17249:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] -) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,17249:37855564,49800853:1179648,16384,0 -) -) -k1,17249:3078556,49800853:-34777008 -) -] -g1,17249:6630773,4812305 -g1,17249:6630773,4812305 -g1,17249:8017514,4812305 -g1,17249:11261546,4812305 -g1,17249:12076813,4812305 -g1,17249:14985956,4812305 -k1,17249:31387652,4812305:16401696 -) -) -] -[1,17249:6630773,45706769:25952256,40108032,0 -(1,17249:6630773,45706769:25952256,40108032,0 -(1,17249:6630773,45706769:0,0,0 -g1,17249:6630773,45706769 -) -[1,17249:6630773,45706769:25952256,40108032,0 -v1,17224:6630773,6254097:0,393216,0 -(1,17224:6630773,23681644:25952256,17820763,0 -g1,17224:6630773,23681644 -g1,17224:6303093,23681644 -r1,17249:6401397,23681644:98304,17820763,0 -g1,17224:6600626,23681644 -g1,17224:6797234,23681644 -[1,17224:6797234,23681644:25785795,17820763,0 -(1,17208:6797234,6649200:25785795,788319,218313 -(1,17207:6797234,6649200:0,788319,218313 -r1,17249:7917113,6649200:1119879,1006632,218313 -k1,17207:6797234,6649200:-1119879 -) -(1,17207:6797234,6649200:1119879,788319,218313 -) -k1,17207:8140271,6649200:223158 -k1,17207:8467951,6649200:327680 -k1,17207:9508999,6649200:223159 -k1,17207:12881162,6649200:223158 -k1,17207:13720359,6649200:223159 -k1,17207:14532030,6649200:223158 -k1,17207:16453226,6649200:223158 -k1,17207:17032245,6649200:223159 -k1,17207:18935746,6649200:223158 -k1,17207:19690401,6649200:223158 -k1,17207:22926250,6649200:223159 -k1,17207:25005388,6649200:223158 -k1,17207:25584407,6649200:223159 -k1,17207:27487908,6649200:223158 -k1,17207:29749236,6649200:223158 -k1,17207:30588433,6649200:223159 -k1,17207:31167451,6649200:223158 -k1,17208:32583029,6649200:0 -) -(1,17208:6797234,7490688:25785795,505283,134348 -k1,17207:8309711,7490688:203723 -k1,17207:9196320,7490688:203724 -k1,17207:9755903,7490688:203723 -k1,17207:11609823,7490688:203723 -k1,17207:14499867,7490688:203723 -k1,17207:17889951,7490688:203724 -k1,17207:21094568,7490688:203723 -k1,17207:21654151,7490688:203723 -k1,17207:24369870,7490688:203724 -k1,17207:26253936,7490688:203723 -k1,17207:27561941,7490688:203723 -k1,17207:28513430,7490688:203723 -k1,17207:30922441,7490688:203724 -k1,17207:31812326,7490688:203723 -k1,17207:32583029,7490688:0 -) -(1,17208:6797234,8332176:25785795,505283,134348 -k1,17207:10027897,8332176:158335 -k1,17207:10837660,8332176:158335 -k1,17207:11743761,8332176:158335 -k1,17207:14487491,8332176:158335 -k1,17207:15297254,8332176:158335 -k1,17207:16226292,8332176:158335 -k1,17207:19311464,8332176:158335 -k1,17207:20097633,8332176:158334 -k1,17207:21957938,8332176:158335 -k1,17207:24244882,8332176:158335 -k1,17207:25422302,8332176:158335 -k1,17207:27591282,8332176:158335 -k1,17207:28401045,8332176:158335 -k1,17207:29307146,8332176:158335 -k1,17207:31767761,8332176:158335 -k1,17207:32583029,8332176:0 -) -(1,17208:6797234,9173664:25785795,513147,126483 -k1,17207:8050610,9173664:187105 -k1,17207:9767981,9173664:187105 -k1,17207:10606515,9173664:187106 -k1,17207:11541386,9173664:187105 -k1,17207:13766661,9173664:187105 -k1,17207:14639928,9173664:187105 -k1,17207:17668674,9173664:187105 -k1,17207:18745758,9173664:187105 -k1,17207:21853148,9173664:187106 -k1,17207:22656291,9173664:187105 -k1,17207:23862481,9173664:187105 -k1,17207:25438949,9173664:187105 -k1,17207:27502350,9173664:187105 -k1,17207:29894743,9173664:187106 -k1,17207:30768010,9173664:187105 -k1,17207:31725818,9173664:187105 -k1,17208:32583029,9173664:0 -) -(1,17208:6797234,10015152:25785795,513147,134348 -k1,17207:9420658,10015152:195315 -k1,17207:10267401,10015152:195315 -k1,17207:13743447,10015152:195314 -(1,17207:13743447,10015152:0,452978,115847 -r1,17249:15156848,10015152:1413401,568825,115847 -k1,17207:13743447,10015152:-1413401 -) -(1,17207:13743447,10015152:1413401,452978,115847 -k1,17207:13743447,10015152:3277 -h1,17207:15153571,10015152:0,411205,112570 -) -k1,17207:15525833,10015152:195315 -k1,17207:17101336,10015152:195315 -k1,17207:18400933,10015152:195315 -k1,17207:19882064,10015152:195315 -k1,17207:20825145,10015152:195315 -k1,17207:24229102,10015152:195314 -k1,17207:25992038,10015152:195315 -k1,17207:27884080,10015152:195315 -k1,17207:31094706,10015152:195315 -k1,17207:32583029,10015152:0 -) -(1,17208:6797234,10856640:25785795,505283,134348 -k1,17207:7856950,10856640:191364 -k1,17207:9325612,10856640:191365 -k1,17207:14826703,10856640:191364 -(1,17207:14826703,10856640:0,414482,122846 -r1,17249:15888392,10856640:1061689,537328,122846 -k1,17207:14826703,10856640:-1061689 -) -(1,17207:14826703,10856640:1061689,414482,122846 -k1,17207:14826703,10856640:3277 -h1,17207:15885115,10856640:0,411205,112570 -) -k1,17207:16079757,10856640:191365 -k1,17207:17080491,10856640:191364 -k1,17207:18290941,10856640:191365 -k1,17207:20582079,10856640:191364 -k1,17207:25027386,10856640:191365 -k1,17207:26275190,10856640:191364 -k1,17207:29038843,10856640:191365 -k1,17207:29991735,10856640:191364 -k1,17208:32583029,10856640:0 -) -(1,17208:6797234,11698128:25785795,505283,126483 -(1,17207:6797234,11698128:0,452978,115847 -r1,17249:8210635,11698128:1413401,568825,115847 -k1,17207:6797234,11698128:-1413401 -) -(1,17207:6797234,11698128:1413401,452978,115847 -k1,17207:6797234,11698128:3277 -h1,17207:8207358,11698128:0,411205,112570 -) -g1,17207:8409864,11698128 -g1,17207:9370621,11698128 -(1,17207:9370621,11698128:0,452978,115847 -r1,17249:10432310,11698128:1061689,568825,115847 -k1,17207:9370621,11698128:-1061689 -) -(1,17207:9370621,11698128:1061689,452978,115847 -k1,17207:9370621,11698128:3277 -h1,17207:10429033,11698128:0,411205,112570 -) -g1,17207:10631539,11698128 -g1,17207:12840757,11698128 -g1,17207:14059071,11698128 -g1,17207:15357994,11698128 -g1,17207:16208651,11698128 -(1,17207:16208651,11698128:0,452978,115847 -r1,17249:17973764,11698128:1765113,568825,115847 -k1,17207:16208651,11698128:-1765113 -) -(1,17207:16208651,11698128:1765113,452978,115847 -k1,17207:16208651,11698128:3277 -h1,17207:17970487,11698128:0,411205,112570 -) -k1,17208:32583029,11698128:14435595 -g1,17208:32583029,11698128 -) -v1,17210:6797234,12888594:0,393216,0 -(1,17215:6797234,13869868:25785795,1374490,196608 -g1,17215:6797234,13869868 -g1,17215:6797234,13869868 -g1,17215:6600626,13869868 -(1,17215:6600626,13869868:0,1374490,196608 -r1,17249:32779637,13869868:26179011,1571098,196608 -k1,17215:6600625,13869868:-26179012 -) -(1,17215:6600626,13869868:26179011,1374490,196608 -[1,17215:6797234,13869868:25785795,1177882,0 -(1,17212:6797234,13096212:25785795,404226,107478 -(1,17211:6797234,13096212:0,0,0 -g1,17211:6797234,13096212 -g1,17211:6797234,13096212 -g1,17211:6469554,13096212 -(1,17211:6469554,13096212:0,0,0 -) -g1,17211:6797234,13096212 -) -k1,17212:6797234,13096212:0 -g1,17212:10590983,13096212 -g1,17212:11223275,13096212 -g1,17212:13752441,13096212 -g1,17212:15649316,13096212 -g1,17212:16281608,13096212 -g1,17212:17862337,13096212 -g1,17212:18494629,13096212 -g1,17212:20075358,13096212 -g1,17212:20707650,13096212 -g1,17212:21339942,13096212 -g1,17212:23236816,13096212 -h1,17212:23552962,13096212:0,0,0 -k1,17212:32583029,13096212:9030067 -g1,17212:32583029,13096212 -) -(1,17213:6797234,13762390:25785795,404226,107478 -h1,17213:6797234,13762390:0,0,0 -g1,17213:7113380,13762390 -g1,17213:7429526,13762390 -k1,17213:7429526,13762390:0 -h1,17213:11223274,13762390:0,0,0 -k1,17213:32583030,13762390:21359756 -g1,17213:32583030,13762390 -) -] -) -g1,17215:32583029,13869868 -g1,17215:6797234,13869868 -g1,17215:6797234,13869868 -g1,17215:32583029,13869868 -g1,17215:32583029,13869868 -) -h1,17215:6797234,14066476:0,0,0 -(1,17218:6797234,23681644:25785795,9025344,0 -k1,17218:10665143,23681644:3867909 -h1,17217:10665143,23681644:0,0,0 -(1,17217:10665143,23681644:18049977,9025344,0 -(1,17217:10665143,23681644:18050733,9025366,0 -(1,17217:10665143,23681644:18050733,9025366,0 -(1,17217:10665143,23681644:0,9025366,0 -(1,17217:10665143,23681644:0,14208860,0 -(1,17217:10665143,23681644:28417720,14208860,0 -) -k1,17217:10665143,23681644:-28417720 -) -) -g1,17217:28715876,23681644 -) -) -) -g1,17218:28715120,23681644 -k1,17218:32583029,23681644:3867909 -) -] -g1,17224:32583029,23681644 -) -h1,17224:6630773,23681644:0,0,0 -(1,17228:6630773,25047420:25952256,513147,126483 -h1,17226:6630773,25047420:983040,0,0 -k1,17226:8804841,25047420:237479 -k1,17226:10146601,25047420:237478 -k1,17226:13951860,25047420:237479 -k1,17226:15208423,25047420:237478 -k1,17226:16835265,25047420:237479 -k1,17226:21909955,25047420:237478 -k1,17226:23833020,25047420:237479 -k1,17226:27160521,25047420:237478 -k1,17226:29253324,25047420:237479 -k1,17226:30176964,25047420:237478 -k1,17226:30770303,25047420:237479 -k1,17226:32583029,25047420:0 -) -(1,17228:6630773,25888908:25952256,505283,120913 -k1,17227:8733915,25888908:209152 -k1,17227:10172931,25888908:195667 -$1,17227:10172931,25888908 -$1,17227:10780450,25888908 -k1,17227:10976117,25888908:195667 -k1,17227:12126119,25888908:195667 -$1,17227:12126119,25888908 -$1,17227:12733638,25888908 -k1,17227:12929305,25888908:195667 -k1,17227:14191964,25888908:195667 -$1,17227:14191964,25888908 -$1,17227:14799483,25888908 -k1,17227:14995150,25888908:195667 -k1,17227:16145152,25888908:195667 -$1,17227:16145152,25888908 -$1,17227:16752671,25888908 -k1,17227:16948338,25888908:195667 -k1,17227:18753045,25888908:195667 -$1,17227:18753045,25888908 -$1,17227:19360564,25888908 -k1,17227:19556231,25888908:195667 -k1,17227:21178683,25888908:195668 -$1,17227:21178683,25888908 -$1,17227:21786202,25888908 -k1,17227:21981869,25888908:195667 -k1,17227:23131871,25888908:195667 -$1,17227:23131871,25888908 -$1,17227:23739390,25888908 -k1,17227:23935057,25888908:195667 -k1,17227:27180704,25888908:195667 -$1,17227:27180704,25888908 -$1,17227:27788223,25888908 -k1,17227:27983890,25888908:195667 -k1,17227:29973802,25888908:195667 -$1,17227:29973802,25888908 -$1,17227:30581321,25888908 -k1,17227:30776988,25888908:195667 -k1,17227:32583029,25888908:0 -) -(1,17228:6630773,26730396:25952256,454754,120913 -k1,17228:32583028,26730396:24201068 -g1,17228:32583028,26730396 -) -(1,17231:6630773,27571884:25952256,513147,134348 -h1,17229:6630773,27571884:983040,0,0 -k1,17229:9335384,27571884:246356 -k1,17229:10241031,27571884:246355 -k1,17229:11506472,27571884:246356 -k1,17229:14621994,27571884:246356 -k1,17229:15527641,27571884:246355 -k1,17229:16793082,27571884:246356 -k1,17229:19942027,27571884:246355 -k1,17229:23893789,27571884:246356 -k1,17229:25995469,27571884:246356 -k1,17229:27342829,27571884:246355 -k1,17229:29820686,27571884:246356 -k1,17229:32583029,27571884:0 -) -(1,17231:6630773,28413372:25952256,513147,134348 -k1,17229:9444710,28413372:190531 -k1,17229:12834709,28413372:190531 -k1,17229:14216684,28413372:190530 -k1,17229:16158992,28413372:190531 -k1,17229:17008815,28413372:190531 -k1,17229:18218431,28413372:190531 -k1,17229:21601876,28413372:190531 -k1,17229:25232392,28413372:190531 -k1,17229:26614367,28413372:190530 -k1,17229:29487287,28413372:190531 -k1,17229:31725818,28413372:190531 -k1,17231:32583029,28413372:0 -) -(1,17231:6630773,29254860:25952256,513147,134348 -k1,17229:9572784,29254860:183601 -k1,17229:11040892,29254860:183602 -k1,17229:12328775,29254860:183601 -k1,17229:13260143,29254860:183602 -k1,17229:14956970,29254860:183601 -k1,17229:15792000,29254860:183602 -k1,17229:18237904,29254860:183601 -k1,17229:19930145,29254860:183602 -k1,17229:23047137,29254860:183601 -k1,17229:25063126,29254860:183602 -k1,17229:26238287,29254860:183601 -k1,17229:27707705,29254860:183602 -k1,17229:29541503,29254860:183601 -k1,17231:32583029,29254860:0 -) -(1,17231:6630773,30096348:25952256,505283,134348 -k1,17229:8306801,30096348:233581 -k1,17229:10284295,30096348:233581 -k1,17229:12593402,30096348:233582 -k1,17229:14855978,30096348:233581 -k1,17229:17704446,30096348:233581 -k1,17229:19327390,30096348:233581 -k1,17229:21850799,30096348:233581 -k1,17229:22770542,30096348:233581 -k1,17229:24282731,30096348:233582 -k1,17229:25202474,30096348:233581 -k1,17229:28107302,30096348:233581 -k1,17229:31478747,30096348:233581 -k1,17229:32583029,30096348:0 -) -(1,17231:6630773,30937836:25952256,513147,134348 -k1,17229:9033899,30937836:174247 -k1,17229:11218135,30937836:174247 -k1,17229:11748242,30937836:174247 -k1,17229:13795508,30937836:174247 -(1,17229:13795508,30937836:0,452978,122846 -r1,17249:15208909,30937836:1413401,575824,122846 -k1,17229:13795508,30937836:-1413401 -) -(1,17229:13795508,30937836:1413401,452978,122846 -k1,17229:13795508,30937836:3277 -h1,17229:15205632,30937836:0,411205,112570 -) -k1,17229:15383156,30937836:174247 -k1,17229:16834700,30937836:174247 -k1,17229:19142144,30937836:174247 -k1,17229:22181626,30937836:174248 -k1,17229:23547318,30937836:174247 -k1,17229:25102409,30937836:174247 -k1,17229:26772843,30937836:174247 -k1,17229:28051372,30937836:174247 -k1,17229:30186456,30937836:174247 -k1,17229:31643898,30937836:174247 -k1,17231:32583029,30937836:0 -) -(1,17231:6630773,31779324:25952256,505283,134348 -k1,17229:9650937,31779324:163450 -k1,17229:12647508,31779324:163450 -k1,17229:16455414,31779324:163449 -k1,17229:17810309,31779324:163450 -k1,17229:19440455,31779324:163450 -k1,17229:23037336,31779324:163450 -k1,17229:24483980,31779324:163449 -k1,17229:27862626,31779324:163450 -k1,17229:29762780,31779324:163450 -(1,17229:29762780,31779324:0,452978,122846 -r1,17249:32583029,31779324:2820249,575824,122846 -k1,17229:29762780,31779324:-2820249 -) -(1,17229:29762780,31779324:2820249,452978,122846 -k1,17229:29762780,31779324:3277 -h1,17229:32579752,31779324:0,411205,112570 -) -k1,17229:32583029,31779324:0 -) -(1,17231:6630773,32620812:25952256,513147,134348 -k1,17229:7597149,32620812:195673 -k1,17229:8546485,32620812:195672 -k1,17229:11370152,32620812:195673 -k1,17229:16304733,32620812:195673 -k1,17229:17448057,32620812:195673 -k1,17229:19933557,32620812:195672 -k1,17229:20788522,32620812:195673 -k1,17229:23217007,32620812:195673 -k1,17229:26175023,32620812:195673 -k1,17229:27938316,32620812:195672 -(1,17229:27938316,32620812:0,459977,115847 -r1,17249:31461988,32620812:3523672,575824,115847 -k1,17229:27938316,32620812:-3523672 -) -(1,17229:27938316,32620812:3523672,459977,115847 -k1,17229:27938316,32620812:3277 -h1,17229:31458711,32620812:0,411205,112570 -) -k1,17229:31657661,32620812:195673 -k1,17231:32583029,32620812:0 -) -(1,17231:6630773,33462300:25952256,513147,126483 -k1,17229:7767319,33462300:174477 -k1,17229:11146507,33462300:174477 -k1,17229:14190150,33462300:174477 -k1,17229:14980665,33462300:174477 -k1,17229:15511002,33462300:174477 -k1,17229:17671875,33462300:174477 -k1,17229:18950633,33462300:174476 -k1,17229:20410926,33462300:174477 -k1,17229:21333169,33462300:174477 -k1,17229:24342733,33462300:174477 -k1,17229:25708655,33462300:174477 -k1,17229:27166327,33462300:174477 -k1,17229:30266331,33462300:174477 -k1,17229:32583029,33462300:0 -) -(1,17231:6630773,34303788:25952256,513147,134348 -k1,17229:9443250,34303788:288686 -k1,17229:12093854,34303788:288686 -k1,17229:13573985,34303788:288686 -k1,17229:16193787,34303788:288686 -k1,17229:17436022,34303788:288686 -k1,17229:18857170,34303788:288686 -k1,17229:21815137,34303788:288686 -k1,17229:22719861,34303788:288686 -k1,17229:24027632,34303788:288686 -k1,17229:27534136,34303788:288686 -k1,17229:30431810,34303788:288686 -k1,17229:31379788,34303788:288686 -k1,17229:32583029,34303788:0 -) -(1,17231:6630773,35145276:25952256,513147,134348 -k1,17229:9237442,35145276:189046 -k1,17229:10756869,35145276:189046 -k1,17229:11597343,35145276:189046 -k1,17229:12878874,35145276:189046 -k1,17229:14087005,35145276:189046 -k1,17229:17178641,35145276:189046 -k1,17229:18026980,35145276:189047 -k1,17229:20935115,35145276:189046 -k1,17229:21775589,35145276:189046 -k1,17229:24988466,35145276:189046 -k1,17229:26879482,35145276:189046 -k1,17229:28784916,35145276:189046 -k1,17229:29633254,35145276:189046 -k1,17229:32583029,35145276:0 -) -(1,17231:6630773,35986764:25952256,505283,134348 -g1,17229:11189457,35986764 -g1,17229:14369263,35986764 -g1,17229:16218689,35986764 -g1,17229:19104239,35986764 -g1,17229:20911066,35986764 -g1,17229:22552742,35986764 -g1,17229:24495884,35986764 -g1,17229:25311151,35986764 -g1,17229:26529465,35986764 -g1,17229:29720413,35986764 -g1,17229:31948637,35986764 -k1,17231:32583029,35986764:634392 -g1,17231:32583029,35986764 -) -(1,17232:6630773,38078024:25952256,555811,147783 -(1,17232:6630773,38078024:2450326,534184,12975 -g1,17232:6630773,38078024 -g1,17232:9081099,38078024 -) -g1,17232:11085911,38078024 -g1,17232:12089399,38078024 -g1,17232:12811737,38078024 -k1,17232:32583028,38078024:17155880 -g1,17232:32583028,38078024 -) -(1,17235:6630773,39312728:25952256,505283,134348 -k1,17234:7852078,39312728:267756 -k1,17234:9224116,39312728:267756 -k1,17234:13084555,39312728:267755 -(1,17234:13084555,39312728:0,452978,122846 -r1,17249:14497956,39312728:1413401,575824,122846 -k1,17234:13084555,39312728:-1413401 -) -(1,17234:13084555,39312728:1413401,452978,122846 -k1,17234:13084555,39312728:3277 -h1,17234:14494679,39312728:0,411205,112570 -) -k1,17234:14765712,39312728:267756 -k1,17234:16310765,39312728:267756 -k1,17234:18868349,39312728:267756 -k1,17234:20327549,39312728:267755 -k1,17234:22103944,39312728:267756 -k1,17234:26299273,39312728:267756 -k1,17234:27183067,39312728:267756 -k1,17234:28469907,39312728:267755 -k1,17234:30391136,39312728:267756 -k1,17234:31896867,39312728:267756 -k1,17234:32583029,39312728:0 -) -(1,17235:6630773,40154216:25952256,513147,134348 -k1,17234:8507020,40154216:174277 -k1,17234:9096115,40154216:174252 -k1,17234:11733891,40154216:174278 -k1,17234:12861717,40154216:174277 -k1,17234:14140276,40154216:174277 -k1,17234:16725623,40154216:174277 -k1,17234:17709270,40154216:174277 -k1,17234:19522602,40154216:174277 -k1,17234:21432272,40154216:174277 -k1,17234:22625635,40154216:174278 -k1,17234:25876827,40154216:174277 -k1,17234:27242549,40154216:174277 -k1,17234:30201451,40154216:174277 -k1,17234:32583029,40154216:0 -) -(1,17235:6630773,40995704:25952256,513147,134348 -g1,17234:7777653,40995704 -g1,17234:8995967,40995704 -(1,17234:8995967,40995704:0,452978,122846 -r1,17249:10409368,40995704:1413401,575824,122846 -k1,17234:8995967,40995704:-1413401 -) -(1,17234:8995967,40995704:1413401,452978,122846 -k1,17234:8995967,40995704:3277 -h1,17234:10406091,40995704:0,411205,112570 -) -g1,17234:10608597,40995704 -g1,17234:12362995,40995704 -g1,17234:13942412,40995704 -g1,17234:16278115,40995704 -g1,17234:17302442,40995704 -g1,17234:18455220,40995704 -g1,17234:20142772,40995704 -g1,17234:21103529,40995704 -g1,17234:23336340,40995704 -g1,17234:23891429,40995704 -g1,17234:26116376,40995704 -g1,17234:27583071,40995704 -g1,17234:28138160,40995704 -k1,17235:32583029,40995704:1759859 -g1,17235:32583029,40995704 -) -v1,17237:6630773,42186170:0,393216,0 -(1,17243:6630773,43833622:25952256,2040668,196608 -g1,17243:6630773,43833622 -g1,17243:6630773,43833622 -g1,17243:6434165,43833622 -(1,17243:6434165,43833622:0,2040668,196608 -r1,17249:32779637,43833622:26345472,2237276,196608 -k1,17243:6434165,43833622:-26345472 -) -(1,17243:6434165,43833622:26345472,2040668,196608 -[1,17243:6630773,43833622:25952256,1844060,0 -(1,17239:6630773,42393788:25952256,404226,107478 -(1,17238:6630773,42393788:0,0,0 -g1,17238:6630773,42393788 -g1,17238:6630773,42393788 -g1,17238:6303093,42393788 -(1,17238:6303093,42393788:0,0,0 -) -g1,17238:6630773,42393788 -) -g1,17239:7263065,42393788 -g1,17239:8211503,42393788 -g1,17239:12005252,42393788 -g1,17239:12637544,42393788 -k1,17239:12637544,42393788:0 -h1,17239:14850564,42393788:0,0,0 -k1,17239:32583028,42393788:17732464 -g1,17239:32583028,42393788 -) -(1,17240:6630773,43059966:25952256,404226,107478 -h1,17240:6630773,43059966:0,0,0 -g1,17240:6946919,43059966 -g1,17240:7263065,43059966 -g1,17240:7579211,43059966 -g1,17240:7895357,43059966 -g1,17240:8211503,43059966 -g1,17240:8527649,43059966 -g1,17240:8843795,43059966 -g1,17240:10740670,43059966 -g1,17240:11372962,43059966 -g1,17240:13269837,43059966 -g1,17240:13902129,43059966 -g1,17240:14534421,43059966 -g1,17240:16431295,43059966 -h1,17240:16747441,43059966:0,0,0 -k1,17240:32583029,43059966:15835588 -g1,17240:32583029,43059966 -) -(1,17241:6630773,43726144:25952256,404226,107478 -h1,17241:6630773,43726144:0,0,0 -g1,17241:6946919,43726144 -g1,17241:7263065,43726144 -k1,17241:7263065,43726144:0 -h1,17241:11056813,43726144:0,0,0 -k1,17241:32583029,43726144:21526216 -g1,17241:32583029,43726144 -) -] -) -g1,17243:32583029,43833622 -g1,17243:6630773,43833622 -g1,17243:6630773,43833622 -g1,17243:32583029,43833622 -g1,17243:32583029,43833622 -) -h1,17243:6630773,44030230:0,0,0 -(1,17247:6630773,45396006:25952256,505283,126483 -h1,17246:6630773,45396006:983040,0,0 -k1,17246:9559218,45396006:162170 -k1,17246:10589740,45396006:162170 -k1,17246:12265136,45396006:162170 -k1,17246:13043345,45396006:162171 -k1,17246:14224600,45396006:162170 -k1,17246:17141248,45396006:162170 -k1,17246:19582105,45396006:162170 -k1,17246:22490889,45396006:162170 -(1,17246:22490889,45396006:0,414482,115847 -r1,17249:22849155,45396006:358266,530329,115847 -k1,17246:22490889,45396006:-358266 -) -(1,17246:22490889,45396006:358266,414482,115847 -k1,17246:22490889,45396006:3277 -h1,17246:22845878,45396006:0,411205,112570 -) -k1,17246:23011325,45396006:162170 -k1,17246:23824923,45396006:162170 -k1,17246:26923762,45396006:162171 -k1,17246:28105017,45396006:162170 -k1,17246:30048456,45396006:162170 -k1,17246:31078978,45396006:162170 -k1,17246:32583029,45396006:0 -) -] -(1,17249:32583029,45706769:0,0,0 -g1,17249:32583029,45706769 -) -) -] -(1,17249:6630773,47279633:25952256,0,0 -h1,17249:6630773,47279633:25952256,0,0 -) -] -(1,17249:4262630,4025873:0,0,0 -[1,17249:-473656,4025873:0,0,0 -(1,17249:-473656,-710413:0,0,0 -(1,17249:-473656,-710413:0,0,0 -g1,17249:-473656,-710413 -) -g1,17249:-473656,-710413 -) -] -) -] -!23797 -}300 -Input:2543:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2544:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2545:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2546:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2547:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!482 -{301 -[1,17298:4262630,47279633:28320399,43253760,0 -(1,17298:4262630,4025873:0,0,0 -[1,17298:-473656,4025873:0,0,0 -(1,17298:-473656,-710413:0,0,0 -(1,17298:-473656,-644877:0,0,0 -k1,17298:-473656,-644877:-65536 -) -(1,17298:-473656,4736287:0,0,0 -k1,17298:-473656,4736287:5209943 -) -g1,17298:-473656,-710413 -) -] -) -[1,17298:6630773,47279633:25952256,43253760,0 -[1,17298:6630773,4812305:25952256,786432,0 -(1,17298:6630773,4812305:25952256,513147,126483 -(1,17298:6630773,4812305:25952256,513147,126483 -g1,17298:3078558,4812305 -[1,17298:3078558,4812305:0,0,0 -(1,17298:3078558,2439708:0,1703936,0 -k1,17298:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,17298:2537886,2439708:1179648,16384,0 -) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,17298:3078558,1915420:16384,1179648,0 +[1,17300:3078558,4812305:0,0,0 +(1,17300:3078558,49800853:0,16384,2228224 +g1,17300:29030814,49800853 +g1,17300:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,17300:36151628,51504789:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] ) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,17300:37855564,49800853:1179648,16384,0 ) ) +k1,17300:3078556,49800853:-34777008 +) ] -[1,17298:3078558,4812305:0,0,0 -(1,17298:3078558,2439708:0,1703936,0 -g1,17298:29030814,2439708 -g1,17298:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,17298:36151628,1915420:16384,1179648,0 +g1,17300:6630773,4812305 +g1,17300:6630773,4812305 +g1,17300:8017514,4812305 +g1,17300:11261546,4812305 +g1,17300:12076813,4812305 +g1,17300:14985956,4812305 +k1,17300:31387652,4812305:16401696 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 ) ] +[1,17300:6630773,45706769:25952256,40108032,0 +(1,17300:6630773,45706769:25952256,40108032,0 +(1,17300:6630773,45706769:0,0,0 +g1,17300:6630773,45706769 ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,17298:37855564,2439708:1179648,16384,0 +[1,17300:6630773,45706769:25952256,40108032,0 +v1,17269:6630773,6254097:0,393216,0 +(1,17269:6630773,6594780:25952256,733899,196608 +g1,17269:6630773,6594780 +g1,17269:6630773,6594780 +g1,17269:6434165,6594780 +(1,17269:6434165,6594780:0,733899,196608 +r1,17300:32779637,6594780:26345472,930507,196608 +k1,17269:6434165,6594780:-26345472 ) +(1,17269:6434165,6594780:26345472,733899,196608 +[1,17269:6630773,6594780:25952256,537291,0 +(1,17267:6630773,6481928:25952256,424439,112852 +h1,17267:6630773,6481928:0,0,0 +g1,17267:6962727,6481928 +g1,17267:7294681,6481928 +g1,17267:12937898,6481928 +g1,17267:13601806,6481928 +g1,17267:15925484,6481928 +g1,17267:17917208,6481928 +g1,17267:18581116,6481928 +h1,17267:21568701,6481928:0,0,0 +k1,17267:32583029,6481928:11014328 +g1,17267:32583029,6481928 +) +] +) +g1,17269:32583029,6594780 +g1,17269:6630773,6594780 +g1,17269:6630773,6594780 +g1,17269:32583029,6594780 +g1,17269:32583029,6594780 +) +h1,17269:6630773,6791388:0,0,0 +(1,17272:6630773,15940590:25952256,9083666,0 +k1,17272:10523651,15940590:3892878 +h1,17271:10523651,15940590:0,0,0 +(1,17271:10523651,15940590:18166500,9083666,0 +(1,17271:10523651,15940590:18167376,9083688,0 +(1,17271:10523651,15940590:18167376,9083688,0 +(1,17271:10523651,15940590:0,9083688,0 +(1,17271:10523651,15940590:0,14208860,0 +(1,17271:10523651,15940590:28417720,14208860,0 +) +k1,17271:10523651,15940590:-28417720 +) +) +g1,17271:28691027,15940590 +) +) +) +g1,17272:28690151,15940590 +k1,17272:32583029,15940590:3892878 +) +(1,17279:6630773,16805670:25952256,505283,134348 +h1,17278:6630773,16805670:983040,0,0 +k1,17278:9605525,16805670:216997 +k1,17278:10178382,16805670:216997 +k1,17278:13385132,16805670:216998 +k1,17278:16016475,16805670:216997 +k1,17278:19587605,16805670:216997 +k1,17278:21918793,16805670:216997 +k1,17278:25233022,16805670:216998 +k1,17278:25805879,16805670:216997 +k1,17278:28972651,16805670:216997 +k1,17279:32583029,16805670:0 +) +(1,17279:6630773,17670750:25952256,513147,126483 +k1,17278:8059501,17670750:161262 +k1,17278:8880056,17670750:161263 +k1,17278:10060403,17670750:161262 +k1,17278:14293417,17670750:161262 +k1,17278:15137564,17670750:161262 +k1,17278:18806969,17670750:161263 +k1,17278:19584269,17670750:161262 +k1,17278:20764616,17670750:161262 +k1,17278:22315241,17670750:161262 +k1,17278:22934601,17670750:161263 +k1,17278:25648490,17670750:161262 +k1,17278:26495914,17670750:161262 +k1,17278:28539370,17670750:161262 +k1,17278:29056493,17670750:161263 +k1,17278:31900144,17670750:161262 +k1,17279:32583029,17670750:0 +) +(1,17279:6630773,18535830:25952256,505283,134348 +(1,17278:6630773,18535830:0,414482,115847 +r1,17300:8044174,18535830:1413401,530329,115847 +k1,17278:6630773,18535830:-1413401 +) +(1,17278:6630773,18535830:1413401,414482,115847 +k1,17278:6630773,18535830:3277 +h1,17278:8040897,18535830:0,411205,112570 +) +k1,17278:8191665,18535830:147491 +k1,17278:10058165,18535830:147491 +k1,17278:13669889,18535830:147491 +k1,17278:14836465,18535830:147491 +k1,17278:16373319,18535830:147491 +k1,17278:17712255,18535830:147491 +k1,17278:18215606,18535830:147491 +(1,17278:18215606,18535830:0,414482,122846 +r1,17300:19629007,18535830:1413401,537328,122846 +k1,17278:18215606,18535830:-1413401 +) +(1,17278:18215606,18535830:1413401,414482,122846 +k1,17278:18215606,18535830:3277 +h1,17278:19625730,18535830:0,411205,112570 +) +k1,17278:19950168,18535830:147491 +k1,17278:22851482,18535830:147491 +k1,17278:24691113,18535830:147491 +k1,17278:29076162,18535830:147491 +k1,17278:31510860,18535830:147491 +k1,17278:32583029,18535830:0 +) +(1,17279:6630773,19400910:25952256,513147,126483 +k1,17278:7886967,19400910:189923 +k1,17278:10379826,19400910:189924 +k1,17278:11221177,19400910:189923 +k1,17278:14031229,19400910:189923 +k1,17278:14577012,19400910:189923 +k1,17278:17851060,19400910:189924 +k1,17278:21031391,19400910:189923 +k1,17278:21880606,19400910:189923 +k1,17278:23089614,19400910:189923 +k1,17278:24842572,19400910:189924 +k1,17278:26520818,19400910:189923 +k1,17278:27579093,19400910:189923 +k1,17278:28966359,19400910:189923 +k1,17278:29512143,19400910:189924 +k1,17278:31414522,19400910:189923 +k1,17278:32583029,19400910:0 +) +(1,17279:6630773,20265990:25952256,505283,134348 +k1,17278:8599589,20265990:233423 +(1,17278:8599589,20265990:0,452978,115847 +r1,17300:13178397,20265990:4578808,568825,115847 +k1,17278:8599589,20265990:-4578808 +) +(1,17278:8599589,20265990:4578808,452978,115847 +k1,17278:8599589,20265990:3277 +h1,17278:13175120,20265990:0,411205,112570 +) +k1,17278:13411820,20265990:233423 +k1,17278:15039193,20265990:233422 +k1,17278:16061014,20265990:233423 +k1,17278:18453193,20265990:233423 +k1,17278:20652041,20265990:233423 +k1,17278:21536892,20265990:233423 +k1,17278:22789400,20265990:233423 +k1,17278:24300119,20265990:233422 +k1,17278:26268935,20265990:233423 +(1,17278:26268935,20265990:0,452978,122846 +r1,17300:30144319,20265990:3875384,575824,122846 +k1,17278:26268935,20265990:-3875384 +) +(1,17278:26268935,20265990:3875384,452978,122846 +k1,17278:26268935,20265990:3277 +h1,17278:30141042,20265990:0,411205,112570 +) +k1,17278:30377742,20265990:233423 +k1,17278:32583029,20265990:0 +) +(1,17279:6630773,21131070:25952256,513147,134348 +k1,17278:7600669,21131070:208368 +k1,17278:9547052,21131070:208368 +k1,17278:11149371,21131070:208368 +(1,17278:11149371,21131070:0,452978,115847 +r1,17300:13266196,21131070:2116825,568825,115847 +k1,17278:11149371,21131070:-2116825 +) +(1,17278:11149371,21131070:2116825,452978,115847 +k1,17278:11149371,21131070:3277 +h1,17278:13262919,21131070:0,411205,112570 +) +k1,17278:13474564,21131070:208368 +k1,17278:14369094,21131070:208368 +k1,17278:15348165,21131070:208368 +k1,17278:18628860,21131070:208367 +k1,17278:19488656,21131070:208368 +(1,17278:19488656,21131070:0,452978,115847 +r1,17300:24067464,21131070:4578808,568825,115847 +k1,17278:19488656,21131070:-4578808 +) +(1,17278:19488656,21131070:4578808,452978,115847 +k1,17278:19488656,21131070:3277 +h1,17278:24064187,21131070:0,411205,112570 +) +k1,17278:24449502,21131070:208368 +k1,17278:25611419,21131070:208368 +k1,17278:26507260,21131070:208368 +k1,17278:27071488,21131070:208368 +k1,17278:29092582,21131070:208368 +k1,17278:32583029,21131070:0 +) +(1,17279:6630773,21996150:25952256,513147,134348 +k1,17278:8547388,21996150:181222 +(1,17278:8547388,21996150:0,452978,115847 +r1,17300:9960789,21996150:1413401,568825,115847 +k1,17278:8547388,21996150:-1413401 +) +(1,17278:8547388,21996150:1413401,452978,115847 +k1,17278:8547388,21996150:3277 +h1,17278:9957512,21996150:0,411205,112570 +) +k1,17278:10142012,21996150:181223 +k1,17278:11009396,21996150:181222 +k1,17278:12209704,21996150:181223 +k1,17278:15018920,21996150:181222 +k1,17278:16580986,21996150:181222 +k1,17278:18039506,21996150:181223 +k1,17278:19321733,21996150:181222 +k1,17278:20675395,21996150:181223 +k1,17278:22918380,21996150:181222 +k1,17278:24667224,21996150:181223 +k1,17278:28355933,21996150:181222 +(1,17278:28355933,21996150:0,452978,122846 +r1,17300:32583029,21996150:4227096,575824,122846 +k1,17278:28355933,21996150:-4227096 +) +(1,17278:28355933,21996150:4227096,452978,122846 +k1,17278:28355933,21996150:3277 +h1,17278:32579752,21996150:0,411205,112570 +) +k1,17278:32583029,21996150:0 +) +(1,17279:6630773,22861230:25952256,505283,122846 +g1,17278:8021447,22861230 +(1,17278:8021447,22861230:0,452978,122846 +r1,17300:11896831,22861230:3875384,575824,122846 +k1,17278:8021447,22861230:-3875384 +) +(1,17278:8021447,22861230:3875384,452978,122846 +k1,17278:8021447,22861230:3277 +h1,17278:11893554,22861230:0,411205,112570 +) +g1,17278:12269730,22861230 +g1,17278:13906557,22861230 +$1,17278:13906557,22861230 +$1,17278:14514076,22861230 +g1,17278:14700460,22861230 +g1,17278:15841179,22861230 +$1,17278:15841179,22861230 +$1,17278:16448698,22861230 +g1,17278:16635082,22861230 +g1,17278:17888458,22861230 +$1,17278:17888458,22861230 +$1,17278:18495977,22861230 +g1,17278:18682361,22861230 +g1,17278:20477785,22861230 +$1,17278:20477785,22861230 +$1,17278:21085304,22861230 +g1,17278:21271688,22861230 +g1,17278:23264113,22861230 +k1,17279:32583029,22861230:7360635 +g1,17279:32583029,22861230 +) +v1,17281:6630773,23546085:0,393216,0 +(1,17288:6630773,25941333:25952256,2788464,196608 +g1,17288:6630773,25941333 +g1,17288:6630773,25941333 +g1,17288:6434165,25941333 +(1,17288:6434165,25941333:0,2788464,196608 +r1,17300:32779637,25941333:26345472,2985072,196608 +k1,17288:6434165,25941333:-26345472 +) +(1,17288:6434165,25941333:26345472,2788464,196608 +[1,17288:6630773,25941333:25952256,2591856,0 +(1,17283:6630773,23773916:25952256,424439,112852 +(1,17282:6630773,23773916:0,0,0 +g1,17282:6630773,23773916 +g1,17282:6630773,23773916 +g1,17282:6303093,23773916 +(1,17282:6303093,23773916:0,0,0 +) +g1,17282:6630773,23773916 +) +k1,17283:6630773,23773916:0 +g1,17283:10614221,23773916 +g1,17283:11278129,23773916 +k1,17283:11278129,23773916:0 +h1,17283:13601807,23773916:0,0,0 +k1,17283:32583029,23773916:18981222 +g1,17283:32583029,23773916 +) +(1,17284:6630773,24458771:25952256,424439,112852 +h1,17284:6630773,24458771:0,0,0 +g1,17284:6962727,24458771 +g1,17284:7294681,24458771 +g1,17284:7626635,24458771 +g1,17284:7958589,24458771 +g1,17284:8290543,24458771 +g1,17284:8622497,24458771 +g1,17284:8954451,24458771 +g1,17284:10946175,24458771 +g1,17284:11610083,24458771 +g1,17284:13601807,24458771 +g1,17284:14265715,24458771 +g1,17284:14929623,24458771 +g1,17284:16921347,24458771 +h1,17284:17253301,24458771:0,0,0 +k1,17284:32583029,24458771:15329728 +g1,17284:32583029,24458771 +) +(1,17285:6630773,25143626:25952256,424439,112852 +h1,17285:6630773,25143626:0,0,0 +g1,17285:6962727,25143626 +g1,17285:7294681,25143626 +g1,17285:11610082,25143626 +h1,17285:11942036,25143626:0,0,0 +k1,17285:32583028,25143626:20640992 +g1,17285:32583028,25143626 +) +(1,17286:6630773,25828481:25952256,431045,112852 +h1,17286:6630773,25828481:0,0,0 +g1,17286:6962727,25828481 +g1,17286:7294681,25828481 +g1,17286:12937898,25828481 +g1,17286:13601806,25828481 +g1,17286:16257438,25828481 +g1,17286:18581116,25828481 +g1,17286:19245024,25828481 +g1,17286:21236748,25828481 +g1,17286:23892380,25828481 +g1,17286:24556288,25828481 +g1,17286:25220196,25828481 +g1,17286:25884104,25828481 +h1,17286:26548012,25828481:0,0,0 +k1,17286:32583029,25828481:6035017 +g1,17286:32583029,25828481 +) +] +) +g1,17288:32583029,25941333 +g1,17288:6630773,25941333 +g1,17288:6630773,25941333 +g1,17288:32583029,25941333 +g1,17288:32583029,25941333 +) +h1,17288:6630773,26137941:0,0,0 +(1,17291:6630773,35287143:25952256,9083666,0 +k1,17291:10523651,35287143:3892878 +h1,17290:10523651,35287143:0,0,0 +(1,17290:10523651,35287143:18166500,9083666,0 +(1,17290:10523651,35287143:18167376,9083688,0 +(1,17290:10523651,35287143:18167376,9083688,0 +(1,17290:10523651,35287143:0,9083688,0 +(1,17290:10523651,35287143:0,14208860,0 +(1,17290:10523651,35287143:28417720,14208860,0 +) +k1,17290:10523651,35287143:-28417720 +) +) +g1,17290:28691027,35287143 +) +) +) +g1,17291:28690151,35287143 +k1,17291:32583029,35287143:3892878 +) +(1,17298:6630773,36152223:25952256,513147,134348 +h1,17297:6630773,36152223:983040,0,0 +k1,17297:8802745,36152223:235383 +k1,17297:11358759,36152223:235384 +k1,17297:12559487,36152223:235383 +k1,17297:14760295,36152223:235383 +k1,17297:16687818,36152223:235383 +k1,17297:17582494,36152223:235384 +k1,17297:18836962,36152223:235383 +k1,17297:21941511,36152223:235383 +k1,17297:22836186,36152223:235383 +k1,17297:24090655,36152223:235384 +k1,17297:27228628,36152223:235383 +k1,17297:30554034,36152223:235383 +k1,17297:32583029,36152223:0 +) +(1,17298:6630773,37017303:25952256,505283,126483 +k1,17297:8921060,37017303:293405 +k1,17297:12858921,37017303:293404 +k1,17297:14343771,37017303:293405 +k1,17297:17043002,37017303:293405 +k1,17297:18533094,37017303:293405 +k1,17297:20434096,37017303:293404 +k1,17297:22231552,37017303:293405 +k1,17297:25400021,37017303:293405 +k1,17297:28063207,37017303:293404 +k1,17297:30886302,37017303:293405 +k1,17297:32583029,37017303:0 +) +(1,17298:6630773,37882383:25952256,513147,126483 +k1,17297:9774989,37882383:275050 +k1,17297:11525253,37882383:275049 +k1,17297:14396184,37882383:275050 +k1,17297:16556704,37882383:275049 +k1,17297:17823314,37882383:275050 +k1,17297:19611589,37882383:275049 +k1,17297:21584677,37882383:275050 +k1,17297:22728078,37882383:275049 +k1,17297:23818396,37882383:275050 +k1,17297:25159716,37882383:275049 +k1,17297:26369309,37882383:275050 +k1,17297:28283413,37882383:275049 +k1,17297:31629480,37882383:275050 +k1,17297:32583029,37882383:0 +) +(1,17298:6630773,38747463:25952256,505283,134348 +k1,17297:8217618,38747463:202725 +k1,17297:9552804,38747463:202724 +k1,17297:10780512,38747463:202725 +k1,17297:13974955,38747463:202724 +k1,17297:14793718,38747463:202725 +k1,17297:16881914,38747463:202725 +k1,17297:18464826,38747463:202724 +k1,17297:19659111,38747463:202725 +k1,17297:22759182,38747463:202724 +k1,17297:24070121,38747463:202725 +k1,17297:25226395,38747463:202725 +k1,17297:26917442,38747463:202724 +k1,17297:28514118,38747463:202725 +k1,17297:29072702,38747463:202724 +k1,17297:30847636,38747463:202725 +k1,17297:32583029,38747463:0 +) +(1,17298:6630773,39612543:25952256,513147,134348 +k1,17297:7184015,39612543:197382 +k1,17297:11027166,39612543:197383 +k1,17297:16235431,39612543:197382 +k1,17297:17813658,39612543:197383 +k1,17297:19937798,39612543:197382 +k1,17297:21281406,39612543:197383 +k1,17297:24003235,39612543:197382 +k1,17297:24962146,39612543:197383 +k1,17297:26765815,39612543:197382 +k1,17297:28698591,39612543:197383 +k1,17297:30749987,39612543:197382 +k1,17297:32583029,39612543:0 +) +(1,17298:6630773,40477623:25952256,505283,134348 +k1,17297:8281297,40477623:256573 +k1,17297:10766750,40477623:256574 +k1,17297:13231886,40477623:256573 +k1,17297:16605352,40477623:256574 +k1,17297:17513353,40477623:256573 +k1,17297:18125787,40477623:256574 +k1,17297:22028128,40477623:256573 +k1,17297:24030580,40477623:256573 +k1,17297:25648992,40477623:256574 +k1,17297:27892617,40477623:256573 +k1,17297:30927262,40477623:256574 +k1,17297:31835263,40477623:256573 +k1,17297:32583029,40477623:0 +) +(1,17298:6630773,41342703:25952256,513147,134348 +k1,17297:10027286,41342703:199011 +k1,17297:10842335,41342703:199011 +k1,17297:12060430,41342703:199010 +k1,17297:14694759,41342703:199011 +k1,17297:16685524,41342703:199011 +k1,17297:17956704,41342703:199011 +k1,17297:21009153,41342703:199011 +k1,17297:22199724,41342703:199011 +k1,17297:24770482,41342703:199010 +k1,17297:25620921,41342703:199011 +k1,17297:26839017,41342703:199011 +k1,17297:31019995,41342703:199011 +k1,17297:32583029,41342703:0 +) +(1,17298:6630773,42207783:25952256,513147,126483 +k1,17297:7502704,42207783:244096 +k1,17297:9448771,42207783:244097 +k1,17297:11821476,42207783:244096 +k1,17297:12421432,42207783:244096 +k1,17297:16647496,42207783:244097 +k1,17297:18463801,42207783:244096 +k1,17297:20817501,42207783:244096 +k1,17297:22080682,42207783:244096 +k1,17297:24335424,42207783:244097 +k1,17297:26622277,42207783:244096 +k1,17297:28246561,42207783:244096 +k1,17297:29482218,42207783:244097 +k1,17297:31931601,42207783:244096 +k1,17297:32583029,42207783:0 +) +(1,17298:6630773,43072863:25952256,513147,138281 +k1,17297:9674063,43072863:210169 +k1,17297:11075677,43072863:210169 +k1,17297:12304931,43072863:210169 +k1,17297:14327826,43072863:210169 +k1,17297:17854772,43072863:210169 +k1,17297:19197403,43072863:210169 +k1,17297:20155338,43072863:210169 +k1,17297:22077963,43072863:210169 +k1,17297:22939560,43072863:210169 +(1,17297:22939560,43072863:0,452978,122846 +r1,17300:25408097,43072863:2468537,575824,122846 +k1,17297:22939560,43072863:-2468537 +) +(1,17297:22939560,43072863:2468537,452978,122846 +k1,17297:22939560,43072863:3277 +h1,17297:25404820,43072863:0,411205,112570 +) +k1,17297:25618266,43072863:210169 +k1,17297:29810402,43072863:210169 +$1,17297:29810402,43072863 +$1,17297:30362215,43072863 +k1,17297:30572384,43072863:210169 +k1,17297:32583029,43072863:0 +) +(1,17298:6630773,43937943:25952256,505283,134348 +g1,17297:8021447,43937943 +g1,17297:9239761,43937943 +g1,17297:11874308,43937943 +$1,17297:11874308,43937943 +$1,17297:12376969,43937943 +g1,17297:12576198,43937943 +g1,17297:14959742,43937943 +g1,17297:16596569,43937943 +$1,17297:16596569,43937943 +$1,17297:17204088,43937943 +g1,17297:17390472,43937943 +g1,17297:18531191,43937943 +$1,17297:18531191,43937943 +$1,17297:19138710,43937943 +g1,17297:19325094,43937943 +g1,17297:20578470,43937943 +$1,17297:20578470,43937943 +$1,17297:21185989,43937943 +g1,17297:21372373,43937943 +g1,17297:23167797,43937943 +$1,17297:23167797,43937943 +$1,17297:23775316,43937943 +g1,17297:23961700,43937943 +g1,17297:25574868,43937943 +$1,17297:25574868,43937943 +$1,17297:26182387,43937943 +g1,17297:26368771,43937943 +g1,17297:28361196,43937943 +k1,17298:32583029,43937943:2263552 +g1,17298:32583029,43937943 +) +] +(1,17300:32583029,45706769:0,0,0 +g1,17300:32583029,45706769 +) +) +] +(1,17300:6630773,47279633:25952256,0,0 +h1,17300:6630773,47279633:25952256,0,0 +) +] +(1,17300:4262630,4025873:0,0,0 +[1,17300:-473656,4025873:0,0,0 +(1,17300:-473656,-710413:0,0,0 +(1,17300:-473656,-710413:0,0,0 +g1,17300:-473656,-710413 +) +g1,17300:-473656,-710413 +) +] +) +] +!19898 +}282 +Input:2562:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!106 +{283 +[1,17340:4262630,47279633:28320399,43253760,0 +(1,17340:4262630,4025873:0,0,0 +[1,17340:-473656,4025873:0,0,0 +(1,17340:-473656,-710413:0,0,0 +(1,17340:-473656,-644877:0,0,0 +k1,17340:-473656,-644877:-65536 ) -k1,17298:3078556,2439708:-34777008 +(1,17340:-473656,4736287:0,0,0 +k1,17340:-473656,4736287:5209943 +) +g1,17340:-473656,-710413 ) ] -[1,17298:3078558,4812305:0,0,0 -(1,17298:3078558,49800853:0,16384,2228224 -k1,17298:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,17298:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,17298:3078558,51504789:16384,1179648,0 +[1,17340:6630773,47279633:25952256,43253760,0 +[1,17340:6630773,4812305:25952256,786432,0 +(1,17340:6630773,4812305:25952256,513147,126483 +(1,17340:6630773,4812305:25952256,513147,126483 +g1,17340:3078558,4812305 +[1,17340:3078558,4812305:0,0,0 +(1,17340:3078558,2439708:0,1703936,0 +k1,17340:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,17340:2537886,2439708:1179648,16384,0 +) +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,17340:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,17298:3078558,4812305:0,0,0 -(1,17298:3078558,49800853:0,16384,2228224 -g1,17298:29030814,49800853 -g1,17298:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,17298:36151628,51504789:16384,1179648,0 +[1,17340:3078558,4812305:0,0,0 +(1,17340:3078558,2439708:0,1703936,0 +g1,17340:29030814,2439708 +g1,17340:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,17340:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,17298:37855564,49800853:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,17340:37855564,2439708:1179648,16384,0 ) ) -k1,17298:3078556,49800853:-34777008 +k1,17340:3078556,2439708:-34777008 ) ] -g1,17298:6630773,4812305 -k1,17298:21350816,4812305:13524666 -g1,17298:21999622,4812305 -g1,17298:25611966,4812305 -g1,17298:28956923,4812305 -g1,17298:29772190,4812305 +[1,17340:3078558,4812305:0,0,0 +(1,17340:3078558,49800853:0,16384,2228224 +k1,17340:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,17340:2537886,49800853:1179648,16384,0 ) +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,17340:3078558,51504789:16384,1179648,0 ) -] -[1,17298:6630773,45706769:25952256,40108032,0 -(1,17298:6630773,45706769:25952256,40108032,0 -(1,17298:6630773,45706769:0,0,0 -g1,17298:6630773,45706769 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) -[1,17298:6630773,45706769:25952256,40108032,0 -(1,17247:6630773,6254097:25952256,505283,134348 -k1,17246:9864040,6254097:179289 -k1,17246:10852699,6254097:179289 -k1,17246:15333116,6254097:179289 -k1,17246:15927228,6254097:179269 -k1,17246:18570015,6254097:179289 -k1,17246:19377139,6254097:179289 -k1,17246:20575513,6254097:179289 -k1,17246:22408275,6254097:179289 -k1,17246:23999210,6254097:179289 -k1,17246:25046851,6254097:179289 -k1,17246:26330422,6254097:179289 -k1,17246:28920781,6254097:179289 -k1,17246:29909440,6254097:179289 -k1,17246:31900144,6254097:179289 -k1,17246:32583029,6254097:0 -) -(1,17247:6630773,7095585:25952256,505283,134348 -g1,17246:9589068,7095585 -k1,17247:32583030,7095585:20530464 -g1,17247:32583030,7095585 -) -v1,17249:6630773,8185134:0,393216,0 -(1,17254:6630773,9055783:25952256,1263865,196608 -g1,17254:6630773,9055783 -g1,17254:6630773,9055783 -g1,17254:6434165,9055783 -(1,17254:6434165,9055783:0,1263865,196608 -r1,17298:32779637,9055783:26345472,1460473,196608 -k1,17254:6434165,9055783:-26345472 -) -(1,17254:6434165,9055783:26345472,1263865,196608 -[1,17254:6630773,9055783:25952256,1067257,0 -(1,17251:6630773,8282127:25952256,293601,101187 -(1,17250:6630773,8282127:0,0,0 -g1,17250:6630773,8282127 -g1,17250:6630773,8282127 -g1,17250:6303093,8282127 -(1,17250:6303093,8282127:0,0,0 -) -g1,17250:6630773,8282127 -) -g1,17251:7263065,8282127 -h1,17251:7579211,8282127:0,0,0 -k1,17251:32583029,8282127:25003818 -g1,17251:32583029,8282127 -) -(1,17252:6630773,8948305:25952256,410518,107478 -h1,17252:6630773,8948305:0,0,0 -g1,17252:6946919,8948305 -g1,17252:7263065,8948305 -g1,17252:12637542,8948305 -g1,17252:13269834,8948305 -g1,17252:15799000,8948305 -g1,17252:18012020,8948305 -g1,17252:18644312,8948305 -g1,17252:20541187,8948305 -g1,17252:23070353,8948305 -g1,17252:23702645,8948305 -g1,17252:24334937,8948305 -g1,17252:24967229,8948305 -h1,17252:25599520,8948305:0,0,0 -k1,17252:32583029,8948305:6983509 -g1,17252:32583029,8948305 -) -] -) -g1,17254:32583029,9055783 -g1,17254:6630773,9055783 -g1,17254:6630773,9055783 -g1,17254:32583029,9055783 -g1,17254:32583029,9055783 -) -h1,17254:6630773,9252391:0,0,0 -(1,17257:6630773,18824964:25952256,9083666,0 -k1,17257:10523651,18824964:3892878 -h1,17256:10523651,18824964:0,0,0 -(1,17256:10523651,18824964:18166500,9083666,0 -(1,17256:10523651,18824964:18167376,9083688,0 -(1,17256:10523651,18824964:18167376,9083688,0 -(1,17256:10523651,18824964:0,9083688,0 -(1,17256:10523651,18824964:0,14208860,0 -(1,17256:10523651,18824964:28417720,14208860,0 -) -k1,17256:10523651,18824964:-28417720 -) -) -g1,17256:28691027,18824964 -) -) -) -g1,17257:28690151,18824964 -k1,17257:32583029,18824964:3892878 -) -v1,17264:6630773,20089822:0,393216,0 -(1,17265:6630773,21498196:25952256,1801590,0 -g1,17265:6630773,21498196 -g1,17265:6303093,21498196 -r1,17298:6401397,21498196:98304,1801590,0 -g1,17265:6600626,21498196 -g1,17265:6797234,21498196 -[1,17265:6797234,21498196:25785795,1801590,0 -(1,17265:6797234,20522360:25785795,825754,196608 -(1,17264:6797234,20522360:0,825754,196608 -r1,17298:7890375,20522360:1093141,1022362,196608 -k1,17264:6797234,20522360:-1093141 -) -(1,17264:6797234,20522360:1093141,825754,196608 -) -k1,17264:8064773,20522360:174398 -k1,17264:9382702,20522360:327680 -k1,17264:12969561,20522360:174399 -k1,17264:14163044,20522360:174398 -k1,17264:17329161,20522360:174398 -k1,17264:18119598,20522360:174399 -k1,17264:19313081,20522360:174398 -k1,17264:22241957,20522360:174398 -k1,17264:24868713,20522360:174399 -k1,17264:26778504,20522360:174398 -(1,17264:26778504,20522360:0,414482,115847 -r1,17298:27136770,20522360:358266,530329,115847 -k1,17264:26778504,20522360:-358266 -) -(1,17264:26778504,20522360:358266,414482,115847 -k1,17264:26778504,20522360:3277 -h1,17264:27133493,20522360:0,411205,112570 -) -k1,17264:27311168,20522360:174398 -k1,17264:29867145,20522360:174399 -k1,17264:31896867,20522360:174398 -k1,17264:32583029,20522360:0 -) -(1,17265:6797234,21363848:25785795,513147,134348 -g1,17264:7352323,21363848 -g1,17264:9169636,21363848 -g1,17264:11696048,21363848 -g1,17264:12554569,21363848 -g1,17264:15386379,21363848 -g1,17264:17037230,21363848 -g1,17264:18513756,21363848 -g1,17264:20280606,21363848 -k1,17265:32583029,21363848:9815332 -g1,17265:32583029,21363848 -) -] -g1,17265:32583029,21498196 -) -h1,17265:6630773,21498196:0,0,0 -v1,17268:6630773,22763055:0,393216,0 -(1,17293:6630773,41393971:25952256,19024132,0 -g1,17293:6630773,41393971 -g1,17293:6303093,41393971 -r1,17298:6401397,41393971:98304,19024132,0 -g1,17293:6600626,41393971 -g1,17293:6797234,41393971 -[1,17293:6797234,41393971:25785795,19024132,0 -(1,17269:6797234,23158158:25785795,788319,218313 -(1,17268:6797234,23158158:0,788319,218313 -r1,17298:7917113,23158158:1119879,1006632,218313 -k1,17268:6797234,23158158:-1119879 -) -(1,17268:6797234,23158158:1119879,788319,218313 -) -k1,17268:8126463,23158158:209350 -k1,17268:8454143,23158158:327680 -k1,17268:9291328,23158158:209350 -k1,17268:10519763,23158158:209350 -k1,17268:13720832,23158158:209350 -k1,17268:15785506,23158158:209350 -k1,17268:16863208,23158158:209350 -k1,17268:18547774,23158158:209351 -k1,17268:20267074,23158158:209350 -k1,17268:22664016,23158158:209350 -k1,17268:25742532,23158158:209350 -k1,17268:27108592,23158158:209350 -k1,17268:28079470,23158158:209350 -k1,17268:29619201,23158158:209350 -k1,17268:31563944,23158158:209350 -k1,17269:32583029,23158158:0 -) -(1,17269:6797234,23999646:25785795,505283,134348 -(1,17268:6797234,23999646:0,414482,115847 -r1,17298:7155500,23999646:358266,530329,115847 -k1,17268:6797234,23999646:-358266 -) -(1,17268:6797234,23999646:358266,414482,115847 -k1,17268:6797234,23999646:3277 -h1,17268:7152223,23999646:0,411205,112570 -) -k1,17268:7403444,23999646:247944 -k1,17268:10571673,23999646:247945 -k1,17268:11289510,23999646:247944 -k1,17268:12068952,23999646:247945 -k1,17268:13602712,23999646:247944 -k1,17268:16480616,23999646:247944 -k1,17268:17379989,23999646:247945 -k1,17268:18825276,23999646:247944 -k1,17268:21744467,23999646:247944 -k1,17268:25919985,23999646:247945 -k1,17268:26783967,23999646:247944 -k1,17268:27387772,23999646:247945 -k1,17268:29508735,23999646:247944 -k1,17268:32583029,23999646:0 -) -(1,17269:6797234,24841134:25785795,513147,134348 -k1,17268:8718381,24841134:185754 -k1,17268:9259994,24841134:185753 -k1,17268:10612944,24841134:185754 -k1,17268:12179541,24841134:185753 -k1,17268:12896792,24841134:185754 -k1,17268:15233437,24841134:185753 -k1,17268:17117229,24841134:185754 -k1,17268:18171334,24841134:185753 -k1,17268:19905704,24841134:185754 -k1,17268:20742886,24841134:185754 -k1,17268:22319313,24841134:185753 -k1,17268:23769912,24841134:185754 -k1,17268:24614957,24841134:185753 -k1,17268:28728284,24841134:185754 -k1,17268:29530075,24841134:185753 -k1,17268:30071689,24841134:185754 -k1,17268:32583029,24841134:0 -) -(1,17269:6797234,25682622:25785795,505283,134348 -k1,17268:7722048,25682622:199986 -k1,17268:8608195,25682622:199985 -k1,17268:9459609,25682622:199986 -k1,17268:11387778,25682622:199985 -k1,17268:13226819,25682622:199986 -k1,17268:14042843,25682622:199986 -k1,17268:16914075,25682622:199985 -k1,17268:18895330,25682622:199986 -k1,17268:20476160,25682622:199986 -k1,17268:22397120,25682622:199985 -k1,17268:24799771,25682622:199986 -k1,17268:27473085,25682622:199985 -k1,17268:31391584,25682622:199986 -k1,17268:32583029,25682622:0 -) -(1,17269:6797234,26524110:25785795,513147,126483 -g1,17268:8100745,26524110 -g1,17268:10015707,26524110 -g1,17268:13622153,26524110 -g1,17268:14472810,26524110 -g1,17268:15027899,26524110 -g1,17268:16161671,26524110 -g1,17268:17020192,26524110 -g1,17268:19421431,26524110 -g1,17268:21228258,26524110 -g1,17268:23210722,26524110 -k1,17269:32583029,26524110:7328239 -g1,17269:32583029,26524110 -) -v1,17271:6797234,27714576:0,393216,0 -(1,17277:6797234,29362028:25785795,2040668,196608 -g1,17277:6797234,29362028 -g1,17277:6797234,29362028 -g1,17277:6600626,29362028 -(1,17277:6600626,29362028:0,2040668,196608 -r1,17298:32779637,29362028:26179011,2237276,196608 -k1,17277:6600625,29362028:-26179012 -) -(1,17277:6600626,29362028:26179011,2040668,196608 -[1,17277:6797234,29362028:25785795,1844060,0 -(1,17273:6797234,27922194:25785795,404226,101187 -(1,17272:6797234,27922194:0,0,0 -g1,17272:6797234,27922194 -g1,17272:6797234,27922194 -g1,17272:6469554,27922194 -(1,17272:6469554,27922194:0,0,0 -) -g1,17272:6797234,27922194 -) -g1,17273:9642545,27922194 -g1,17273:10590983,27922194 -k1,17273:10590983,27922194:0 -h1,17273:12171712,27922194:0,0,0 -k1,17273:32583028,27922194:20411316 -g1,17273:32583028,27922194 -) -(1,17274:6797234,28588372:25785795,410518,107478 -h1,17274:6797234,28588372:0,0,0 -g1,17274:7113380,28588372 -g1,17274:7429526,28588372 -g1,17274:12804003,28588372 -g1,17274:13436295,28588372 -g1,17274:15965461,28588372 -g1,17274:18178481,28588372 -g1,17274:18810773,28588372 -g1,17274:20707648,28588372 -g1,17274:23236814,28588372 -g1,17274:23869106,28588372 -g1,17274:24501398,28588372 -g1,17274:25133690,28588372 -k1,17274:25133690,28588372:0 -h1,17274:26082127,28588372:0,0,0 -k1,17274:32583029,28588372:6500902 -g1,17274:32583029,28588372 -) -(1,17275:6797234,29254550:25785795,404226,107478 -h1,17275:6797234,29254550:0,0,0 -g1,17275:7113380,29254550 -g1,17275:7429526,29254550 -k1,17275:7429526,29254550:0 -h1,17275:12487857,29254550:0,0,0 -k1,17275:32583029,29254550:20095172 -g1,17275:32583029,29254550 -) -] -) -g1,17277:32583029,29362028 -g1,17277:6797234,29362028 -g1,17277:6797234,29362028 -g1,17277:32583029,29362028 -g1,17277:32583029,29362028 -) -h1,17277:6797234,29558636:0,0,0 -v1,17281:6797234,31273390:0,393216,0 -(1,17285:6797234,31582195:25785795,702021,196608 -g1,17285:6797234,31582195 -g1,17285:6797234,31582195 -g1,17285:6600626,31582195 -(1,17285:6600626,31582195:0,702021,196608 -r1,17298:32779637,31582195:26179011,898629,196608 -k1,17285:6600625,31582195:-26179012 -) -(1,17285:6600626,31582195:26179011,702021,196608 -[1,17285:6797234,31582195:25785795,505413,0 -(1,17283:6797234,31481008:25785795,404226,101187 -(1,17282:6797234,31481008:0,0,0 -g1,17282:6797234,31481008 -g1,17282:6797234,31481008 -g1,17282:6469554,31481008 -(1,17282:6469554,31481008:0,0,0 -) -g1,17282:6797234,31481008 -) -g1,17283:7429526,31481008 -g1,17283:8061818,31481008 -h1,17283:10590983,31481008:0,0,0 -k1,17283:32583029,31481008:21992046 -g1,17283:32583029,31481008 -) -] -) -g1,17285:32583029,31582195 -g1,17285:6797234,31582195 -g1,17285:6797234,31582195 -g1,17285:32583029,31582195 -g1,17285:32583029,31582195 -) -h1,17285:6797234,31778803:0,0,0 -(1,17288:6797234,41393971:25785795,9025344,0 -k1,17288:10665143,41393971:3867909 -h1,17287:10665143,41393971:0,0,0 -(1,17287:10665143,41393971:18049977,9025344,0 -(1,17287:10665143,41393971:18050733,9025366,0 -(1,17287:10665143,41393971:18050733,9025366,0 -(1,17287:10665143,41393971:0,9025366,0 -(1,17287:10665143,41393971:0,14208860,0 -(1,17287:10665143,41393971:28417720,14208860,0 -) -k1,17287:10665143,41393971:-28417720 -) -) -g1,17287:28715876,41393971 -) -) -) -g1,17288:28715120,41393971 -k1,17288:32583029,41393971:3867909 -) -] -g1,17293:32583029,41393971 -) -h1,17293:6630773,41393971:0,0,0 -v1,17296:6630773,42658830:0,393216,0 -(1,17298:6630773,45706769:25952256,3441155,0 -g1,17298:6630773,45706769 -g1,17298:6303093,45706769 -r1,17298:6401397,45706769:98304,3441155,0 -g1,17298:6600626,45706769 -g1,17298:6797234,45706769 -[1,17298:6797234,45706769:25785795,3441155,0 -(1,17298:6797234,43079414:25785795,813800,267386 -(1,17296:6797234,43079414:0,813800,267386 -r1,17298:8134168,43079414:1336934,1081186,267386 -k1,17296:6797234,43079414:-1336934 -) -(1,17296:6797234,43079414:1336934,813800,267386 -) -k1,17296:8317867,43079414:183699 -k1,17296:8645547,43079414:327680 -k1,17296:8645547,43079414:0 -k1,17297:10025932,43079414:183698 -k1,17297:13575560,43079414:183699 -k1,17297:14418551,43079414:183699 -k1,17297:15879547,43079414:183699 -k1,17297:20097641,43079414:183698 -k1,17297:21472785,43079414:183699 -k1,17297:24753715,43079414:183699 -k1,17297:25468911,43079414:183699 -k1,17297:28456239,43079414:183698 -k1,17297:31169628,43079414:183699 -(1,17297:31169628,43079414:0,452978,122846 -r1,17298:32583029,43079414:1413401,575824,122846 -k1,17297:31169628,43079414:-1413401 -) -(1,17297:31169628,43079414:1413401,452978,122846 -k1,17297:31169628,43079414:3277 -h1,17297:32579752,43079414:0,411205,112570 -) -k1,17297:32583029,43079414:0 -) -(1,17298:6797234,43920902:25785795,513147,134348 -k1,17297:9279285,43920902:192223 -k1,17297:10463067,43920902:192222 -k1,17297:15329318,43920902:192223 -k1,17297:16009121,43920902:192215 -k1,17297:17711294,43920902:192223 -k1,17297:18562808,43920902:192222 -k1,17297:19774116,43920902:192223 -k1,17297:21355701,43920902:192222 -k1,17297:23507450,43920902:192223 -k1,17297:25904959,43920902:192222 -k1,17297:26783344,43920902:192223 -k1,17297:30047894,43920902:192222 -k1,17297:30771614,43920902:192223 -k1,17297:32583029,43920902:0 -) -(1,17298:6797234,44762390:25785795,513147,134348 -k1,17297:8983437,44762390:176214 -k1,17297:10178735,44762390:176213 -k1,17297:11632246,44762390:176214 -k1,17297:13941656,44762390:176213 -k1,17297:16886111,44762390:176214 -k1,17297:17748486,44762390:176213 -k1,17297:18540738,44762390:176214 -k1,17297:21605124,44762390:176214 -k1,17297:24244835,44762390:176213 -k1,17297:25048884,44762390:176214 -k1,17297:26244182,44762390:176213 -k1,17297:29081813,44762390:176214 -k1,17297:31287021,44762390:176213 -(1,17297:31287021,44762390:0,414482,115847 -r1,17298:31645287,44762390:358266,530329,115847 -k1,17297:31287021,44762390:-358266 -) -(1,17297:31287021,44762390:358266,414482,115847 -k1,17297:31287021,44762390:3277 -h1,17297:31642010,44762390:0,411205,112570 -) -k1,17297:31821501,44762390:176214 -k1,17297:32583029,44762390:0 -) -(1,17298:6797234,45603878:25785795,513147,102891 -k1,17297:8631010,45603878:228144 -k1,17297:10627971,45603878:228144 -k1,17297:11603881,45603878:228144 -k1,17297:13643440,45603878:228144 -k1,17297:14523012,45603878:228144 -k1,17297:15107016,45603878:228144 -k1,17297:16318200,45603878:228144 -k1,17297:17355714,45603878:228144 -k1,17297:18928657,45603878:228144 -k1,17297:20348246,45603878:228144 -k1,17297:22720728,45603878:228144 -k1,17297:24216338,45603878:228144 -k1,17297:24800342,45603878:228144 -k1,17297:26685236,45603878:228144 -k1,17297:27328194,45603878:228115 -k1,17297:30078819,45603878:228144 -k1,17297:31773659,45603878:228144 -k1,17297:32583029,45603878:0 -) -] -g1,17298:32583029,45706769 -) -] -(1,17298:32583029,45706769:0,0,0 -g1,17298:32583029,45706769 -) -) -] -(1,17298:6630773,47279633:25952256,0,0 -h1,17298:6630773,47279633:25952256,0,0 -) -] -(1,17298:4262630,4025873:0,0,0 -[1,17298:-473656,4025873:0,0,0 -(1,17298:-473656,-710413:0,0,0 -(1,17298:-473656,-710413:0,0,0 -g1,17298:-473656,-710413 -) -g1,17298:-473656,-710413 -) -] -) -] -!17551 -}301 -Input:2548:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2549:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2550:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2551:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2552:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2553:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2554:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2555:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2556:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2557:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2558:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2559:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1140 -{302 -[1,17366:4262630,47279633:28320399,43253760,0 -(1,17366:4262630,4025873:0,0,0 -[1,17366:-473656,4025873:0,0,0 -(1,17366:-473656,-710413:0,0,0 -(1,17366:-473656,-644877:0,0,0 -k1,17366:-473656,-644877:-65536 +] ) -(1,17366:-473656,4736287:0,0,0 -k1,17366:-473656,4736287:5209943 ) -g1,17366:-473656,-710413 ) ] +[1,17340:3078558,4812305:0,0,0 +(1,17340:3078558,49800853:0,16384,2228224 +g1,17340:29030814,49800853 +g1,17340:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,17340:36151628,51504789:16384,1179648,0 +) +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 +) +] +) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,17340:37855564,49800853:1179648,16384,0 +) +) +k1,17340:3078556,49800853:-34777008 +) +] +g1,17340:6630773,4812305 +k1,17340:21350816,4812305:13524666 +g1,17340:21999622,4812305 +g1,17340:25611966,4812305 +g1,17340:28956923,4812305 +g1,17340:29772190,4812305 +) +) +] +[1,17340:6630773,45706769:25952256,40108032,0 +(1,17340:6630773,45706769:25952256,40108032,0 +(1,17340:6630773,45706769:0,0,0 +g1,17340:6630773,45706769 +) +[1,17340:6630773,45706769:25952256,40108032,0 +v1,17300:6630773,6254097:0,393216,0 +(1,17308:6630773,9334200:25952256,3473319,196608 +g1,17308:6630773,9334200 +g1,17308:6630773,9334200 +g1,17308:6434165,9334200 +(1,17308:6434165,9334200:0,3473319,196608 +r1,17340:32779637,9334200:26345472,3669927,196608 +k1,17308:6434165,9334200:-26345472 ) -[1,17366:6630773,47279633:25952256,43253760,0 -[1,17366:6630773,4812305:25952256,786432,0 -(1,17366:6630773,4812305:25952256,513147,134348 -(1,17366:6630773,4812305:25952256,513147,134348 -g1,17366:3078558,4812305 -[1,17366:3078558,4812305:0,0,0 -(1,17366:3078558,2439708:0,1703936,0 -k1,17366:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,17366:2537886,2439708:1179648,16384,0 +(1,17308:6434165,9334200:26345472,3473319,196608 +[1,17308:6630773,9334200:25952256,3276711,0 +(1,17302:6630773,6481928:25952256,424439,112852 +(1,17301:6630773,6481928:0,0,0 +g1,17301:6630773,6481928 +g1,17301:6630773,6481928 +g1,17301:6303093,6481928 +(1,17301:6303093,6481928:0,0,0 +) +g1,17301:6630773,6481928 +) +k1,17302:6630773,6481928:0 +g1,17302:10614221,6481928 +g1,17302:11278129,6481928 +k1,17302:11278129,6481928:0 +h1,17302:13601807,6481928:0,0,0 +k1,17302:32583029,6481928:18981222 +g1,17302:32583029,6481928 +) +(1,17303:6630773,7166783:25952256,424439,112852 +h1,17303:6630773,7166783:0,0,0 +g1,17303:6962727,7166783 +g1,17303:7294681,7166783 +g1,17303:7626635,7166783 +g1,17303:7958589,7166783 +g1,17303:8290543,7166783 +g1,17303:8622497,7166783 +g1,17303:8954451,7166783 +g1,17303:10946175,7166783 +g1,17303:11610083,7166783 +g1,17303:13601807,7166783 +g1,17303:14265715,7166783 +g1,17303:14929623,7166783 +g1,17303:16921347,7166783 +h1,17303:17253301,7166783:0,0,0 +k1,17303:32583029,7166783:15329728 +g1,17303:32583029,7166783 +) +(1,17304:6630773,7851638:25952256,424439,112852 +h1,17304:6630773,7851638:0,0,0 +g1,17304:6962727,7851638 +g1,17304:7294681,7851638 +g1,17304:11610082,7851638 +h1,17304:11942036,7851638:0,0,0 +k1,17304:32583028,7851638:20640992 +g1,17304:32583028,7851638 +) +(1,17305:6630773,8536493:25952256,431045,112852 +h1,17305:6630773,8536493:0,0,0 +g1,17305:6962727,8536493 +g1,17305:7294681,8536493 +g1,17305:12937898,8536493 +g1,17305:13601806,8536493 +g1,17305:16257438,8536493 +g1,17305:18581116,8536493 +g1,17305:19245024,8536493 +g1,17305:21236748,8536493 +g1,17305:23892380,8536493 +g1,17305:24556288,8536493 +g1,17305:25220196,8536493 +g1,17305:25884104,8536493 +g1,17305:26879966,8536493 +h1,17305:27211920,8536493:0,0,0 +k1,17305:32583029,8536493:5371109 +g1,17305:32583029,8536493 +) +(1,17306:6630773,9221348:25952256,424439,112852 +h1,17306:6630773,9221348:0,0,0 +g1,17306:6962727,9221348 +g1,17306:7294681,9221348 +k1,17306:7294681,9221348:0 +h1,17306:12273990,9221348:0,0,0 +k1,17306:32583030,9221348:20309040 +g1,17306:32583030,9221348 +) +] +) +g1,17308:32583029,9334200 +g1,17308:6630773,9334200 +g1,17308:6630773,9334200 +g1,17308:32583029,9334200 +g1,17308:32583029,9334200 +) +h1,17308:6630773,9530808:0,0,0 +(1,17311:6630773,18680010:25952256,9083666,0 +k1,17311:10523651,18680010:3892878 +h1,17310:10523651,18680010:0,0,0 +(1,17310:10523651,18680010:18166500,9083666,0 +(1,17310:10523651,18680010:18167376,9083688,0 +(1,17310:10523651,18680010:18167376,9083688,0 +(1,17310:10523651,18680010:0,9083688,0 +(1,17310:10523651,18680010:0,14208860,0 +(1,17310:10523651,18680010:28417720,14208860,0 +) +k1,17310:10523651,18680010:-28417720 +) +) +g1,17310:28691027,18680010 +) +) +) +g1,17311:28690151,18680010 +k1,17311:32583029,18680010:3892878 +) +(1,17318:6630773,19545090:25952256,513147,134348 +h1,17317:6630773,19545090:983040,0,0 +k1,17317:9020917,19545090:210417 +k1,17317:11011948,19545090:210418 +k1,17317:13037057,19545090:210417 +k1,17317:13906766,19545090:210417 +k1,17317:14473044,19545090:210418 +k1,17317:16255670,19545090:210417 +k1,17317:17570370,19545090:210418 +k1,17317:18528553,19545090:210417 +k1,17317:19673513,19545090:210417 +k1,17317:22990338,19545090:210418 +k1,17317:25527938,19545090:210417 +k1,17317:26397647,19545090:210417 +k1,17317:30924922,19545090:210418 +k1,17317:31821501,19545090:210417 +k1,17317:32583029,19545090:0 +) +(1,17318:6630773,20410170:25952256,513147,95026 +k1,17317:9352781,20410170:282758 +k1,17317:11509869,20410170:282758 +k1,17317:13607319,20410170:282758 +k1,17317:15819457,20410170:282758 +k1,17317:16458075,20410170:282758 +k1,17317:18820290,20410170:282758 +k1,17317:21526569,20410170:282758 +k1,17317:23011913,20410170:282758 +k1,17317:24280332,20410170:282758 +k1,17317:26169378,20410170:282758 +k1,17317:30979363,20410170:282758 +k1,17317:32583029,20410170:0 +) +(1,17318:6630773,21275250:25952256,505283,126483 +k1,17317:11064338,21275250:188143 +k1,17317:12996393,21275250:188142 +k1,17317:15550386,21275250:188143 +k1,17317:16757614,21275250:188143 +k1,17317:18517966,21275250:188143 +k1,17317:20520800,21275250:188142 +k1,17317:22936512,21275250:188143 +k1,17317:25344359,21275250:188143 +k1,17317:26723947,21275250:188143 +k1,17317:27903649,21275250:188142 +k1,17317:29158063,21275250:188143 +k1,17317:31931601,21275250:188143 +k1,17317:32583029,21275250:0 +) +(1,17318:6630773,22140330:25952256,505283,134348 +k1,17317:11665613,22140330:135368 +k1,17317:13497708,22140330:135368 +k1,17317:17704828,22140330:135368 +k1,17317:18831756,22140330:135368 +k1,17317:20033396,22140330:135369 +k1,17317:22927174,22140330:135368 +k1,17317:23678580,22140330:135368 +k1,17317:24833033,22140330:135368 +k1,17317:27918176,22140330:135368 +k1,17317:32583029,22140330:0 +) +(1,17318:6630773,23005410:25952256,505283,134348 +k1,17317:7520394,23005410:206736 +k1,17317:9240356,23005410:206736 +k1,17317:10063131,23005410:206737 +k1,17317:14245281,23005410:206736 +k1,17317:17446357,23005410:206736 +k1,17317:19351131,23005410:206736 +k1,17317:21293260,23005410:206736 +k1,17317:24182385,23005410:206736 +k1,17317:25408207,23005410:206737 +k1,17317:30009132,23005410:206736 +k1,17317:31207428,23005410:206736 +k1,17317:32583029,23005410:0 +) +(1,17318:6630773,23870490:25952256,513147,126483 +k1,17317:9202453,23870490:199932 +k1,17317:10053812,23870490:199931 +k1,17317:14325496,23870490:199932 +k1,17317:15809933,23870490:199931 +k1,17317:17040746,23870490:199932 +k1,17317:19250666,23870490:199931 +k1,17317:20469683,23870490:199932 +k1,17317:22484306,23870490:199931 +k1,17317:23343530,23870490:199932 +k1,17317:24309577,23870490:199931 +k1,17317:26412019,23870490:199932 +k1,17317:27227988,23870490:199931 +k1,17317:28694076,23870490:199932 +k1,17317:30768337,23870490:199931 +k1,17317:32583029,23870490:0 +) +(1,17318:6630773,24735570:25952256,513147,134348 +k1,17317:9790264,24735570:172360 +k1,17317:11741925,24735570:172359 +k1,17317:12933370,24735570:172360 +k1,17317:15630176,24735570:172359 +k1,17317:17149956,24735570:172360 +k1,17317:19020353,24735570:172359 +k1,17317:20211798,24735570:172360 +k1,17317:22908605,24735570:172360 +k1,17317:24428384,24735570:172359 +k1,17317:25132241,24735570:172360 +k1,17317:29621457,24735570:172359 +k1,17317:30728360,24735570:172360 +k1,17317:32583029,24735570:0 +) +(1,17318:6630773,25600650:25952256,513147,134348 +k1,17317:7629308,25600650:189165 +k1,17317:8837558,25600650:189165 +k1,17317:10807336,25600650:189165 +k1,17317:11655792,25600650:189164 +k1,17317:12864042,25600650:189165 +k1,17317:15270290,25600650:189165 +k1,17317:17481241,25600650:189165 +k1,17317:21181825,25600650:189165 +k1,17317:22390075,25600650:189165 +k1,17317:25386802,25600650:189165 +k1,17317:26227394,25600650:189164 +k1,17317:28427204,25600650:189165 +k1,17317:29275661,25600650:189165 +k1,17317:29820686,25600650:189165 +k1,17317:32583029,25600650:0 +) +(1,17318:6630773,26465730:25952256,513147,134348 +k1,17317:10000886,26465730:195549 +k1,17317:11533370,26465730:195550 +k1,17317:13969595,26465730:195549 +k1,17317:15863182,26465730:195549 +k1,17317:16414592,26465730:195550 +k1,17317:18690254,26465730:195549 +k1,17317:19545095,26465730:195549 +k1,17317:20759729,26465730:195549 +k1,17317:22344642,26465730:195550 +k1,17317:23531751,26465730:195549 +k1,17317:26315972,26465730:195549 +k1,17317:27273050,26465730:195550 +k1,17317:30401335,26465730:195549 +k1,17317:32583029,26465730:0 +) +(1,17318:6630773,27330810:25952256,513147,7863 +g1,17317:7849087,27330810 +g1,17317:9863008,27330810 +g1,17317:10721529,27330810 +g1,17317:11276618,27330810 +k1,17318:32583029,27330810:19560532 +g1,17318:32583029,27330810 +) +(1,17320:6630773,28195890:25952256,513147,126483 +h1,17319:6630773,28195890:983040,0,0 +k1,17319:8440373,28195890:198725 +k1,17319:11270370,28195890:198726 +k1,17319:12120523,28195890:198725 +k1,17319:13854101,28195890:198725 +k1,17319:15934365,28195890:198726 +k1,17319:19777547,28195890:198725 +k1,17319:22671768,28195890:198725 +k1,17319:23556655,28195890:198725 +k1,17319:24111241,28195890:198726 +k1,17319:26751837,28195890:198725 +k1,17319:28408738,28195890:198725 +k1,17319:29874930,28195890:198726 +k1,17319:31092740,28195890:198725 +k1,17320:32583029,28195890:0 +) +(1,17320:6630773,29060970:25952256,513147,134348 +k1,17319:8111382,29060970:233459 +k1,17319:9865933,29060970:233460 +k1,17319:11290837,29060970:233459 +k1,17319:12339564,29060970:233459 +k1,17319:13639295,29060970:233460 +k1,17319:15652056,29060970:233459 +k1,17319:17770986,29060970:233459 +k1,17319:22076197,29060970:233459 +k1,17319:23301217,29060970:233460 +k1,17319:25577433,29060970:233459 +k1,17319:26462320,29060970:233459 +k1,17319:29528901,29060970:233460 +k1,17319:30959047,29060970:233459 +k1,17320:32583029,29060970:0 +) +(1,17320:6630773,29926050:25952256,505283,134348 +k1,17319:8811930,29926050:184275 +k1,17319:11415795,29926050:184276 +k1,17319:12286232,29926050:184275 +k1,17319:15483197,29926050:184275 +k1,17319:16198969,29926050:184275 +k1,17319:17669061,29926050:184276 +k1,17319:21518109,29926050:184275 +k1,17319:22463912,29926050:184275 +k1,17319:23851428,29926050:184275 +k1,17319:26938294,29926050:184276 +k1,17319:31714677,29926050:184275 +k1,17319:32583029,29926050:0 +) +(1,17320:6630773,30791130:25952256,513147,138281 +k1,17319:7885071,30791130:161813 +k1,17319:10931124,30791130:161814 +k1,17319:14831111,30791130:161813 +k1,17319:16878396,30791130:161814 +k1,17319:18031769,30791130:161813 +k1,17319:19212667,30791130:161813 +k1,17319:21813731,30791130:161814 +k1,17319:23047713,30791130:161813 +k1,17319:24077878,30791130:161813 +k1,17319:27172428,30791130:161814 +k1,17319:28268784,30791130:161813 +$1,17319:28268784,30791130 +$1,17319:28820597,30791130 +k1,17319:28982411,30791130:161814 +k1,17319:31132586,30791130:161813 +k1,17319:32583029,30791130:0 +) +(1,17320:6630773,31656210:25952256,505283,120913 +$1,17319:7238292,31656210 +g1,17319:7424676,31656210 +g1,17319:8565395,31656210 +$1,17319:8565395,31656210 +$1,17319:9172914,31656210 +g1,17319:9359298,31656210 +g1,17319:10612674,31656210 +$1,17319:10612674,31656210 +$1,17319:11220193,31656210 +g1,17319:11406577,31656210 +g1,17319:13202001,31656210 +$1,17319:13202001,31656210 +$1,17319:13809520,31656210 +g1,17319:13995904,31656210 +g1,17319:17232268,31656210 +$1,17319:17232268,31656210 +$1,17319:17839787,31656210 +g1,17319:18026171,31656210 +g1,17319:20006800,31656210 +$1,17319:20006800,31656210 +$1,17319:20614319,31656210 +g1,17319:20800703,31656210 +g1,17319:22793128,31656210 +k1,17320:32583029,31656210:7831620 +g1,17320:32583029,31656210 +) +v1,17322:6630773,32341065:0,393216,0 +(1,17330:6630773,35414562:25952256,3466713,196608 +g1,17330:6630773,35414562 +g1,17330:6630773,35414562 +g1,17330:6434165,35414562 +(1,17330:6434165,35414562:0,3466713,196608 +r1,17340:32779637,35414562:26345472,3663321,196608 +k1,17330:6434165,35414562:-26345472 +) +(1,17330:6434165,35414562:26345472,3466713,196608 +[1,17330:6630773,35414562:25952256,3270105,0 +(1,17324:6630773,32568896:25952256,424439,112852 +(1,17323:6630773,32568896:0,0,0 +g1,17323:6630773,32568896 +g1,17323:6630773,32568896 +g1,17323:6303093,32568896 +(1,17323:6303093,32568896:0,0,0 +) +g1,17323:6630773,32568896 +) +k1,17324:6630773,32568896:0 +g1,17324:10614221,32568896 +g1,17324:11278129,32568896 +k1,17324:11278129,32568896:0 +h1,17324:13601807,32568896:0,0,0 +k1,17324:32583029,32568896:18981222 +g1,17324:32583029,32568896 +) +(1,17325:6630773,33253751:25952256,424439,112852 +h1,17325:6630773,33253751:0,0,0 +g1,17325:6962727,33253751 +g1,17325:7294681,33253751 +g1,17325:7626635,33253751 +g1,17325:7958589,33253751 +g1,17325:8290543,33253751 +g1,17325:8622497,33253751 +g1,17325:8954451,33253751 +g1,17325:10946175,33253751 +g1,17325:11610083,33253751 +g1,17325:13601807,33253751 +g1,17325:14265715,33253751 +g1,17325:14929623,33253751 +g1,17325:16921347,33253751 +h1,17325:17253301,33253751:0,0,0 +k1,17325:32583029,33253751:15329728 +g1,17325:32583029,33253751 +) +(1,17326:6630773,33938606:25952256,424439,112852 +h1,17326:6630773,33938606:0,0,0 +g1,17326:6962727,33938606 +g1,17326:7294681,33938606 +g1,17326:11610082,33938606 +h1,17326:11942036,33938606:0,0,0 +k1,17326:32583028,33938606:20640992 +g1,17326:32583028,33938606 +) +(1,17327:6630773,34623461:25952256,431045,112852 +h1,17327:6630773,34623461:0,0,0 +g1,17327:6962727,34623461 +g1,17327:7294681,34623461 +g1,17327:12937898,34623461 +g1,17327:13601806,34623461 +g1,17327:16257438,34623461 +g1,17327:18581116,34623461 +g1,17327:19245024,34623461 +g1,17327:21236748,34623461 +g1,17327:23892380,34623461 +g1,17327:24556288,34623461 +g1,17327:25220196,34623461 +g1,17327:25884104,34623461 +g1,17327:26879966,34623461 +h1,17327:27211920,34623461:0,0,0 +k1,17327:32583029,34623461:5371109 +g1,17327:32583029,34623461 +) +(1,17328:6630773,35308316:25952256,424439,106246 +h1,17328:6630773,35308316:0,0,0 +g1,17328:6962727,35308316 +g1,17328:7294681,35308316 +g1,17328:14265714,35308316 +g1,17328:14929622,35308316 +g1,17328:16921346,35308316 +h1,17328:18249162,35308316:0,0,0 +k1,17328:32583029,35308316:14333867 +g1,17328:32583029,35308316 +) +] +) +g1,17330:32583029,35414562 +g1,17330:6630773,35414562 +g1,17330:6630773,35414562 +g1,17330:32583029,35414562 +g1,17330:32583029,35414562 +) +h1,17330:6630773,35611170:0,0,0 +(1,17333:6630773,44760372:25952256,9083666,0 +k1,17333:10523651,44760372:3892878 +h1,17332:10523651,44760372:0,0,0 +(1,17332:10523651,44760372:18166500,9083666,0 +(1,17332:10523651,44760372:18167376,9083688,0 +(1,17332:10523651,44760372:18167376,9083688,0 +(1,17332:10523651,44760372:0,9083688,0 +(1,17332:10523651,44760372:0,14208860,0 +(1,17332:10523651,44760372:28417720,14208860,0 +) +k1,17332:10523651,44760372:-28417720 +) +) +g1,17332:28691027,44760372 +) +) +) +g1,17333:28690151,44760372 +k1,17333:32583029,44760372:3892878 +) +(1,17340:6630773,45625452:25952256,513147,126483 +h1,17339:6630773,45625452:983040,0,0 +k1,17339:9072710,45625452:262210 +k1,17339:10719039,45625452:262209 +k1,17339:13642666,45625452:262210 +k1,17339:15327662,45625452:262209 +k1,17339:15945732,45625452:262210 +k1,17339:19615813,45625452:262209 +k1,17339:22123942,45625452:262210 +k1,17339:27397034,45625452:262209 +k1,17339:29442479,45625452:262210 +k1,17339:30723773,45625452:262209 +k1,17340:32583029,45625452:0 +) +] +(1,17340:32583029,45706769:0,0,0 +g1,17340:32583029,45706769 +) +) +] +(1,17340:6630773,47279633:25952256,0,0 +h1,17340:6630773,47279633:25952256,0,0 +) +] +(1,17340:4262630,4025873:0,0,0 +[1,17340:-473656,4025873:0,0,0 +(1,17340:-473656,-710413:0,0,0 +(1,17340:-473656,-710413:0,0,0 +g1,17340:-473656,-710413 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,17366:3078558,1915420:16384,1179648,0 +g1,17340:-473656,-710413 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +] ) ] +!17672 +}283 +!12 +{284 +[1,17381:4262630,47279633:28320399,43253760,0 +(1,17381:4262630,4025873:0,0,0 +[1,17381:-473656,4025873:0,0,0 +(1,17381:-473656,-710413:0,0,0 +(1,17381:-473656,-644877:0,0,0 +k1,17381:-473656,-644877:-65536 ) +(1,17381:-473656,4736287:0,0,0 +k1,17381:-473656,4736287:5209943 ) +g1,17381:-473656,-710413 ) ] -[1,17366:3078558,4812305:0,0,0 -(1,17366:3078558,2439708:0,1703936,0 -g1,17366:29030814,2439708 -g1,17366:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,17366:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +[1,17381:6630773,47279633:25952256,43253760,0 +[1,17381:6630773,4812305:25952256,786432,0 +(1,17381:6630773,4812305:25952256,513147,134348 +(1,17381:6630773,4812305:25952256,513147,134348 +g1,17381:3078558,4812305 +[1,17381:3078558,4812305:0,0,0 +(1,17381:3078558,2439708:0,1703936,0 +k1,17381:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,17381:2537886,2439708:1179648,16384,0 +) +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,17381:3078558,1915420:16384,1179648,0 +) +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,17366:37855564,2439708:1179648,16384,0 ) ) -k1,17366:3078556,2439708:-34777008 +] +[1,17381:3078558,4812305:0,0,0 +(1,17381:3078558,2439708:0,1703936,0 +g1,17381:29030814,2439708 +g1,17381:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,17381:36151628,1915420:16384,1179648,0 +) +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] -[1,17366:3078558,4812305:0,0,0 -(1,17366:3078558,49800853:0,16384,2228224 -k1,17366:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,17366:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,17366:3078558,51504789:16384,1179648,0 -) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 -) -] -) -) -) -] -[1,17366:3078558,4812305:0,0,0 -(1,17366:3078558,49800853:0,16384,2228224 -g1,17366:29030814,49800853 -g1,17366:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,17366:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] -) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,17366:37855564,49800853:1179648,16384,0 -) -) -k1,17366:3078556,49800853:-34777008 -) -] -g1,17366:6630773,4812305 -g1,17366:6630773,4812305 -g1,17366:8017514,4812305 -g1,17366:11261546,4812305 -g1,17366:12076813,4812305 -g1,17366:14985956,4812305 -k1,17366:31387652,4812305:16401696 -) -) -] -[1,17366:6630773,45706769:25952256,40108032,0 -(1,17366:6630773,45706769:25952256,40108032,0 -(1,17366:6630773,45706769:0,0,0 -g1,17366:6630773,45706769 -) -[1,17366:6630773,45706769:25952256,40108032,0 -v1,17298:6630773,6254097:0,393216,0 -(1,17298:6630773,9024976:25952256,3164095,0 -g1,17298:6630773,9024976 -g1,17298:6303093,9024976 -r1,17366:6401397,9024976:98304,3164095,0 -g1,17298:6600626,9024976 -g1,17298:6797234,9024976 -[1,17298:6797234,9024976:25785795,3164095,0 -(1,17298:6797234,6366164:25785795,505283,134348 -k1,17297:9406341,6366164:136434 -k1,17297:12792705,6366164:136434 -k1,17297:14120584,6366164:136434 -k1,17297:17132082,6366164:136434 -k1,17297:17954678,6366164:136434 -k1,17297:19479821,6366164:136435 -k1,17297:20302417,6366164:136434 -k1,17297:23019003,6366164:136434 -k1,17297:25983970,6366164:136434 -k1,17297:27311849,6366164:136434 -k1,17297:28236681,6366164:136434 -k1,17297:32583029,6366164:0 -) -(1,17298:6797234,7207652:25785795,513147,134348 -k1,17297:7949544,7207652:160750 -k1,17297:11067935,7207652:160751 -k1,17297:13833086,7207652:160750 -k1,17297:18076729,7207652:160750 -k1,17297:18896772,7207652:160751 -k1,17297:21317859,7207652:160750 -k1,17297:21834469,7207652:160750 -k1,17297:23505170,7207652:160751 -k1,17297:24325212,7207652:160750 -k1,17297:25505048,7207652:160751 -k1,17297:27055161,7207652:160750 -k1,17297:27831949,7207652:160750 -k1,17297:29011785,7207652:160751 -k1,17297:30449832,7207652:160750 -k1,17297:32583029,7207652:0 -) -(1,17298:6797234,8049140:25785795,513147,134348 -k1,17297:7512532,8049140:183801 -k1,17297:9149921,8049140:183800 -k1,17297:11904699,8049140:183801 -k1,17297:12739928,8049140:183801 -k1,17297:13942814,8049140:183801 -k1,17297:15515977,8049140:183800 -k1,17297:17659304,8049140:183801 -k1,17297:19356331,8049140:183801 -k1,17297:20191560,8049140:183801 -k1,17297:22304740,8049140:183800 -k1,17297:22844401,8049140:183801 -(1,17297:22844401,8049140:0,452978,122846 -r1,17366:24257802,8049140:1413401,575824,122846 -k1,17297:22844401,8049140:-1413401 -) -(1,17297:22844401,8049140:1413401,452978,122846 -k1,17297:22844401,8049140:3277 -h1,17297:24254525,8049140:0,411205,112570 -) -k1,17297:24441603,8049140:183801 -k1,17297:26584930,8049140:183801 -k1,17297:27760290,8049140:183800 -k1,17297:29007085,8049140:183801 -k1,17297:31966991,8049140:183801 -k1,17297:32583029,8049140:0 -) -(1,17298:6797234,8890628:25785795,513147,134348 -g1,17297:8845889,8890628 -g1,17297:11920182,8890628 -g1,17297:13727009,8890628 -g1,17297:15493859,8890628 -g1,17297:16896329,8890628 -g1,17297:19228755,8890628 -g1,17297:20296336,8890628 -g1,17297:22117581,8890628 -g1,17297:24246190,8890628 -g1,17297:24801279,8890628 -g1,17297:26283703,8890628 -g1,17297:27831663,8890628 -k1,17298:32583029,8890628:2618169 -g1,17298:32583029,8890628 -) -] -g1,17298:32583029,9024976 -) -h1,17298:6630773,9024976:0,0,0 -v1,17301:6630773,10390752:0,393216,0 -(1,17350:6630773,39596311:25952256,29598775,0 -g1,17350:6630773,39596311 -g1,17350:6303093,39596311 -r1,17366:6401397,39596311:98304,29598775,0 -g1,17350:6600626,39596311 -g1,17350:6797234,39596311 -[1,17350:6797234,39596311:25785795,29598775,0 -(1,17302:6797234,10752825:25785795,755289,196608 -(1,17301:6797234,10752825:0,755289,196608 -r1,17366:8134168,10752825:1336934,951897,196608 -k1,17301:6797234,10752825:-1336934 -) -(1,17301:6797234,10752825:1336934,755289,196608 -) -k1,17301:8368896,10752825:234728 -k1,17301:8696576,10752825:327680 -k1,17301:9884853,10752825:234728 -k1,17301:11223863,10752825:234728 -k1,17301:12845333,10752825:234728 -k1,17301:13696099,10752825:234728 -k1,17301:15581024,10752825:234728 -k1,17301:17602919,10752825:234728 -k1,17301:18450409,10752825:234728 -k1,17301:20015519,10752825:234729 -k1,17301:21269332,10752825:234728 -k1,17301:23398050,10752825:234728 -k1,17301:24284206,10752825:234728 -k1,17301:26234667,10752825:234728 -k1,17301:26825255,10752825:234728 -k1,17301:28337280,10752825:234728 -k1,17301:29103505,10752825:234728 -k1,17301:31376403,10752825:234728 -k1,17301:32227169,10752825:234728 -k1,17302:32583029,10752825:0 -) -(1,17302:6797234,11594313:25785795,513147,134348 -(1,17301:6797234,11594313:0,452978,122846 -r1,17366:8210635,11594313:1413401,575824,122846 -k1,17301:6797234,11594313:-1413401 -) -(1,17301:6797234,11594313:1413401,452978,122846 -k1,17301:6797234,11594313:3277 -h1,17301:8207358,11594313:0,411205,112570 -) -k1,17301:8423261,11594313:212626 -k1,17301:9913184,11594313:212626 -k1,17301:12259007,11594313:212626 -k1,17301:14876149,11594313:212626 -k1,17301:15748067,11594313:212626 -k1,17301:17515862,11594313:212626 -(1,17301:17515862,11594313:0,452978,122846 -r1,17366:18929263,11594313:1413401,575824,122846 -k1,17301:17515862,11594313:-1413401 -) -(1,17301:17515862,11594313:1413401,452978,122846 -k1,17301:17515862,11594313:3277 -h1,17301:18925986,11594313:0,411205,112570 -) -k1,17301:19141889,11594313:212626 -k1,17301:20346076,11594313:212627 -k1,17301:21217994,11594313:212626 -k1,17301:23213199,11594313:212626 -(1,17301:23213199,11594313:0,452978,115847 -r1,17366:25330024,11594313:2116825,568825,115847 -k1,17301:23213199,11594313:-2116825 -) -(1,17301:23213199,11594313:2116825,452978,115847 -k1,17301:23213199,11594313:3277 -h1,17301:25326747,11594313:0,411205,112570 -) -k1,17301:25716320,11594313:212626 -k1,17301:26556781,11594313:212626 -k1,17301:27357920,11594313:212626 -k1,17301:28894373,11594313:212626 -k1,17301:30211281,11594313:212626 -k1,17301:32583029,11594313:0 -) -(1,17302:6797234,12435801:25785795,513147,134348 -k1,17301:11611099,12435801:141148 -k1,17301:14879625,12435801:141148 -k1,17301:16578564,12435801:141148 -k1,17301:19091460,12435801:141148 -k1,17301:20795642,12435801:141148 -k1,17301:23632286,12435801:141148 -k1,17301:27359564,12435801:141148 -k1,17301:28692157,12435801:141148 -k1,17301:32583029,12435801:0 -) -(1,17302:6797234,13277289:25785795,513147,126483 -k1,17301:10977940,13277289:236749 -k1,17301:11842523,13277289:236748 -k1,17301:13781242,13277289:236749 -k1,17301:15972930,13277289:236749 -k1,17301:17228763,13277289:236748 -k1,17301:18854875,13277289:236749 -k1,17301:20462637,13277289:236749 -k1,17301:24537173,13277289:236748 -k1,17301:25425350,13277289:236749 -k1,17301:28875985,13277289:236749 -k1,17301:30131818,13277289:236748 -k1,17301:31931601,13277289:236749 -k1,17301:32583029,13277289:0 -) -(1,17302:6797234,14118777:25785795,513147,134348 -k1,17301:8427660,14118777:233854 -k1,17301:10300570,14118777:233855 -k1,17301:11801890,14118777:233854 -k1,17301:14424531,14118777:233854 -k1,17301:17121884,14118777:233855 -k1,17301:18547183,14118777:233854 -k1,17301:21123294,14118777:233854 -k1,17301:23732174,14118777:233855 -k1,17301:24625320,14118777:233854 -k1,17301:25878259,14118777:233854 -k1,17301:29209345,14118777:233855 -k1,17301:31010820,14118777:233854 -k1,17301:32583029,14118777:0 -) -(1,17302:6797234,14960265:25785795,513147,134348 -g1,17301:8811155,14960265 -g1,17301:9661812,14960265 -g1,17301:11247127,14960265 -g1,17301:13078202,14960265 -g1,17301:13928859,14960265 -g1,17301:15394244,14960265 -g1,17301:16245556,14960265 -g1,17301:17768612,14960265 -g1,17301:18959401,14960265 -g1,17301:22248653,14960265 -g1,17301:23063920,14960265 -g1,17301:25541836,14960265 -h1,17301:26512424,14960265:0,0,0 -g1,17301:26711653,14960265 -g1,17301:27720252,14960265 -g1,17301:29417634,14960265 -h1,17301:30214552,14960265:0,0,0 -k1,17302:32583029,14960265:1987713 -g1,17302:32583029,14960265 -) -(1,17304:6797234,15801753:25785795,513147,134348 -h1,17303:6797234,15801753:983040,0,0 -k1,17303:8797119,15801753:198956 -k1,17303:9766778,15801753:198956 -k1,17303:12627151,15801753:198956 -k1,17303:13694459,15801753:198956 -k1,17303:15554097,15801753:198956 -k1,17303:16772138,15801753:198956 -k1,17303:18043263,15801753:198956 -k1,17303:19704326,15801753:198955 -k1,17303:22856990,15801753:198956 -k1,17303:23715238,15801753:198956 -k1,17303:24270054,15801753:198956 -(1,17303:24270054,15801753:0,452978,122846 -r1,17366:25683455,15801753:1413401,575824,122846 -k1,17303:24270054,15801753:-1413401 -) -(1,17303:24270054,15801753:1413401,452978,122846 -k1,17303:24270054,15801753:3277 -h1,17303:25680178,15801753:0,411205,112570 -) -k1,17303:25882411,15801753:198956 -k1,17303:27358664,15801753:198956 -k1,17303:29517146,15801753:198956 -k1,17303:30663753,15801753:198956 -k1,17303:31218569,15801753:198956 -k1,17304:32583029,15801753:0 -) -(1,17304:6797234,16643241:25785795,505283,134348 -k1,17303:8038943,16643241:268499 -k1,17303:9758409,16643241:268499 -k1,17303:12424870,16643241:268499 -(1,17303:12424870,16643241:0,452978,115847 -r1,17366:15596830,16643241:3171960,568825,115847 -k1,17303:12424870,16643241:-3171960 -) -(1,17303:12424870,16643241:3171960,452978,115847 -k1,17303:12424870,16643241:3277 -h1,17303:15593553,16643241:0,411205,112570 -) -k1,17303:15865329,16643241:268499 -k1,17303:18124812,16643241:268499 -k1,17303:19412396,16643241:268499 -k1,17303:23608468,16643241:268499 -k1,17303:26337189,16643241:268499 -k1,17303:28964329,16643241:268499 -k1,17303:31563944,16643241:268499 -k1,17303:32583029,16643241:0 -) -(1,17304:6797234,17484729:25785795,513147,134348 -g1,17303:9927888,17484729 -g1,17303:10786409,17484729 -g1,17303:12004723,17484729 -k1,17304:32583028,17484729:18445108 -g1,17304:32583028,17484729 -) -v1,17306:6797234,18675195:0,393216,0 -(1,17334:6797234,33639916:25785795,15357937,196608 -g1,17334:6797234,33639916 -g1,17334:6797234,33639916 -g1,17334:6600626,33639916 -(1,17334:6600626,33639916:0,15357937,196608 -r1,17366:32779637,33639916:26179011,15554545,196608 -k1,17334:6600625,33639916:-26179012 -) -(1,17334:6600626,33639916:26179011,15357937,196608 -[1,17334:6797234,33639916:25785795,15161329,0 -(1,17308:6797234,18882813:25785795,404226,101187 -(1,17307:6797234,18882813:0,0,0 -g1,17307:6797234,18882813 -g1,17307:6797234,18882813 -g1,17307:6469554,18882813 -(1,17307:6469554,18882813:0,0,0 -) -g1,17307:6797234,18882813 -) -k1,17308:6797234,18882813:0 -h1,17308:9958691,18882813:0,0,0 -k1,17308:32583029,18882813:22624338 -g1,17308:32583029,18882813 -) -(1,17333:6797234,19548991:25785795,404226,107478 -(1,17310:6797234,19548991:0,0,0 -g1,17310:6797234,19548991 -g1,17310:6797234,19548991 -g1,17310:6469554,19548991 -(1,17310:6469554,19548991:0,0,0 -) -g1,17310:6797234,19548991 -) -g1,17333:7745671,19548991 -g1,17333:9642545,19548991 -g1,17333:11223274,19548991 -g1,17333:12804003,19548991 -g1,17333:14700878,19548991 -g1,17333:15965461,19548991 -g1,17333:17862336,19548991 -g1,17333:19126919,19548991 -g1,17333:21023794,19548991 -g1,17333:22288377,19548991 -g1,17333:23552960,19548991 -g1,17333:25449835,19548991 -g1,17333:27030564,19548991 -h1,17333:29243584,19548991:0,0,0 -k1,17333:32583029,19548991:3339445 -g1,17333:32583029,19548991 -) -(1,17333:6797234,20215169:25785795,404226,107478 -h1,17333:6797234,20215169:0,0,0 -g1,17333:7745671,20215169 -g1,17333:10590982,20215169 -g1,17333:10907128,20215169 -g1,17333:11539420,20215169 -g1,17333:12171712,20215169 -g1,17333:14384732,20215169 -g1,17333:15017024,20215169 -g1,17333:15649316,20215169 -h1,17333:16913899,20215169:0,0,0 -k1,17333:32583029,20215169:15669130 -g1,17333:32583029,20215169 -) -(1,17333:6797234,20881347:25785795,410518,107478 -h1,17333:6797234,20881347:0,0,0 -g1,17333:7745671,20881347 -g1,17333:10907128,20881347 -g1,17333:13752439,20881347 -g1,17333:16281605,20881347 -g1,17333:18178479,20881347 -g1,17333:21656082,20881347 -g1,17333:23869102,20881347 -k1,17333:23869102,20881347:0 -h1,17333:24817539,20881347:0,0,0 -k1,17333:32583029,20881347:7765490 -g1,17333:32583029,20881347 -) -(1,17333:6797234,21547525:25785795,410518,101187 -h1,17333:6797234,21547525:0,0,0 -g1,17333:7745671,21547525 -g1,17333:8061817,21547525 -g1,17333:8377963,21547525 -g1,17333:8694109,21547525 -g1,17333:9010255,21547525 -g1,17333:14068586,21547525 -h1,17333:16597751,21547525:0,0,0 -k1,17333:32583029,21547525:15985278 -g1,17333:32583029,21547525 -) -(1,17333:6797234,22213703:25785795,410518,50331 -h1,17333:6797234,22213703:0,0,0 -g1,17333:7745671,22213703 -g1,17333:8061817,22213703 -g1,17333:8377963,22213703 -g1,17333:8694109,22213703 -g1,17333:9010255,22213703 -g1,17333:12487858,22213703 -h1,17333:15017023,22213703:0,0,0 -k1,17333:32583029,22213703:17566006 -g1,17333:32583029,22213703 -) -(1,17333:6797234,22879881:25785795,410518,50331 -h1,17333:6797234,22879881:0,0,0 -g1,17333:7745671,22879881 -g1,17333:8061817,22879881 -g1,17333:8377963,22879881 -g1,17333:8694109,22879881 -g1,17333:9010255,22879881 -g1,17333:12804003,22879881 -h1,17333:15333168,22879881:0,0,0 -k1,17333:32583028,22879881:17249860 -g1,17333:32583028,22879881 -) -(1,17333:6797234,23546059:25785795,410518,50331 -h1,17333:6797234,23546059:0,0,0 -g1,17333:7745671,23546059 -g1,17333:8061817,23546059 -g1,17333:8377963,23546059 -g1,17333:8694109,23546059 -g1,17333:9010255,23546059 -g1,17333:13120149,23546059 -h1,17333:15649314,23546059:0,0,0 -k1,17333:32583030,23546059:16933716 -g1,17333:32583030,23546059 -) -(1,17333:6797234,24212237:25785795,410518,101187 -h1,17333:6797234,24212237:0,0,0 -g1,17333:7745671,24212237 -g1,17333:8061817,24212237 -g1,17333:8377963,24212237 -g1,17333:8694109,24212237 -g1,17333:9010255,24212237 -g1,17333:13120149,24212237 -h1,17333:15649314,24212237:0,0,0 -k1,17333:32583030,24212237:16933716 -g1,17333:32583030,24212237 -) -(1,17333:6797234,24878415:25785795,410518,50331 -h1,17333:6797234,24878415:0,0,0 -g1,17333:7745671,24878415 -g1,17333:8061817,24878415 -g1,17333:8377963,24878415 -g1,17333:8694109,24878415 -g1,17333:9010255,24878415 -g1,17333:13120149,24878415 -h1,17333:15649314,24878415:0,0,0 -k1,17333:32583030,24878415:16933716 -g1,17333:32583030,24878415 -) -(1,17333:6797234,25544593:25785795,410518,50331 -h1,17333:6797234,25544593:0,0,0 -g1,17333:7745671,25544593 -g1,17333:8061817,25544593 -g1,17333:8377963,25544593 -g1,17333:8694109,25544593 -g1,17333:9010255,25544593 -g1,17333:13120149,25544593 -h1,17333:15649314,25544593:0,0,0 -k1,17333:32583030,25544593:16933716 -g1,17333:32583030,25544593 -) -(1,17333:6797234,26210771:25785795,410518,101187 -h1,17333:6797234,26210771:0,0,0 -g1,17333:7745671,26210771 -g1,17333:8061817,26210771 -g1,17333:8377963,26210771 -g1,17333:8694109,26210771 -g1,17333:9010255,26210771 -g1,17333:12171712,26210771 -h1,17333:14700877,26210771:0,0,0 -k1,17333:32583029,26210771:17882152 -g1,17333:32583029,26210771 -) -(1,17333:6797234,26876949:25785795,404226,101187 -h1,17333:6797234,26876949:0,0,0 -g1,17333:7745671,26876949 -g1,17333:8061817,26876949 -g1,17333:8377963,26876949 -g1,17333:8694109,26876949 -g1,17333:9010255,26876949 -g1,17333:11539421,26876949 -h1,17333:12804004,26876949:0,0,0 -k1,17333:32583028,26876949:19779024 -g1,17333:32583028,26876949 -) -(1,17333:6797234,27543127:25785795,410518,101187 -h1,17333:6797234,27543127:0,0,0 -g1,17333:7745671,27543127 -g1,17333:8061817,27543127 -g1,17333:8377963,27543127 -g1,17333:8694109,27543127 -g1,17333:9010255,27543127 -g1,17333:12804003,27543127 -h1,17333:15333168,27543127:0,0,0 -k1,17333:32583028,27543127:17249860 -g1,17333:32583028,27543127 -) -(1,17333:6797234,28209305:25785795,410518,101187 -h1,17333:6797234,28209305:0,0,0 -g1,17333:7745671,28209305 -g1,17333:8061817,28209305 -g1,17333:8377963,28209305 -g1,17333:8694109,28209305 -g1,17333:9010255,28209305 -g1,17333:13436295,28209305 -h1,17333:15965460,28209305:0,0,0 -k1,17333:32583029,28209305:16617569 -g1,17333:32583029,28209305 -) -(1,17333:6797234,28875483:25785795,404226,7863 -h1,17333:6797234,28875483:0,0,0 -g1,17333:7745671,28875483 -g1,17333:8061817,28875483 -g1,17333:8377963,28875483 -g1,17333:8694109,28875483 -g1,17333:9010255,28875483 -g1,17333:11539421,28875483 -h1,17333:12804004,28875483:0,0,0 -k1,17333:32583028,28875483:19779024 -g1,17333:32583028,28875483 -) -(1,17333:6797234,29541661:25785795,410518,50331 -h1,17333:6797234,29541661:0,0,0 -g1,17333:7745671,29541661 -g1,17333:8061817,29541661 -g1,17333:8377963,29541661 -g1,17333:8694109,29541661 -g1,17333:9010255,29541661 -g1,17333:13436295,29541661 -h1,17333:15965460,29541661:0,0,0 -k1,17333:32583029,29541661:16617569 -g1,17333:32583029,29541661 -) -(1,17333:6797234,30207839:25785795,410518,6290 -h1,17333:6797234,30207839:0,0,0 -g1,17333:7745671,30207839 -g1,17333:8061817,30207839 -g1,17333:8377963,30207839 -g1,17333:8694109,30207839 -g1,17333:9010255,30207839 -g1,17333:10907129,30207839 -h1,17333:13436294,30207839:0,0,0 -k1,17333:32583030,30207839:19146736 -g1,17333:32583030,30207839 -) -(1,17333:6797234,30874017:25785795,404226,107478 -h1,17333:6797234,30874017:0,0,0 -g1,17333:7745671,30874017 -g1,17333:8061817,30874017 -g1,17333:8377963,30874017 -g1,17333:8694109,30874017 -g1,17333:9010255,30874017 -g1,17333:11223275,30874017 -g1,17333:11539421,30874017 -g1,17333:14384732,30874017 -g1,17333:16913898,30874017 -g1,17333:18810772,30874017 -g1,17333:22288375,30874017 -g1,17333:24501395,30874017 -k1,17333:24501395,30874017:0 -h1,17333:25449832,30874017:0,0,0 -k1,17333:32583029,30874017:7133197 -g1,17333:32583029,30874017 -) -(1,17333:6797234,31540195:25785795,379060,0 -h1,17333:6797234,31540195:0,0,0 -g1,17333:7745671,31540195 -k1,17333:7745671,31540195:0 -h1,17333:18810781,31540195:0,0,0 -k1,17333:32583029,31540195:13772248 -g1,17333:32583029,31540195 -) -(1,17333:6797234,32206373:25785795,404226,107478 -h1,17333:6797234,32206373:0,0,0 -g1,17333:7745671,32206373 -g1,17333:11539419,32206373 -g1,17333:13436293,32206373 -g1,17333:14068585,32206373 -h1,17333:15649313,32206373:0,0,0 -k1,17333:32583029,32206373:16933716 -g1,17333:32583029,32206373 -) -(1,17333:6797234,32872551:25785795,404226,101187 -h1,17333:6797234,32872551:0,0,0 -g1,17333:7745671,32872551 -g1,17333:12487857,32872551 -g1,17333:14384731,32872551 -g1,17333:15017023,32872551 -h1,17333:16597751,32872551:0,0,0 -k1,17333:32583029,32872551:15985278 -g1,17333:32583029,32872551 -) -(1,17333:6797234,33538729:25785795,404226,101187 -h1,17333:6797234,33538729:0,0,0 -g1,17333:7745671,33538729 -h1,17333:13120148,33538729:0,0,0 -k1,17333:32583028,33538729:19462880 -g1,17333:32583028,33538729 -) -] -) -g1,17334:32583029,33639916 -g1,17334:6797234,33639916 -g1,17334:6797234,33639916 -g1,17334:32583029,33639916 -g1,17334:32583029,33639916 -) -h1,17334:6797234,33836524:0,0,0 -(1,17338:6797234,35202300:25785795,513147,134348 -h1,17337:6797234,35202300:983040,0,0 -k1,17337:10333337,35202300:155101 -(1,17337:10333337,35202300:0,452978,115847 -r1,17366:12098450,35202300:1765113,568825,115847 -k1,17337:10333337,35202300:-1765113 -) -(1,17337:10333337,35202300:1765113,452978,115847 -k1,17337:10333337,35202300:3277 -h1,17337:12095173,35202300:0,411205,112570 -) -k1,17337:12253551,35202300:155101 -k1,17337:14399636,35202300:155101 -k1,17337:15573822,35202300:155101 -k1,17337:18660348,35202300:155101 -k1,17337:19474741,35202300:155101 -k1,17337:21919671,35202300:155102 -k1,17337:23266217,35202300:155101 -k1,17337:24525600,35202300:155101 -k1,17337:25428467,35202300:155101 -k1,17337:26869384,35202300:155101 -k1,17337:28537711,35202300:155101 -k1,17337:29344240,35202300:155101 -k1,17337:32583029,35202300:0 -) -(1,17338:6797234,36043788:25785795,513147,134348 -k1,17337:8363559,36043788:172374 -k1,17337:11065623,36043788:172374 -k1,17337:15322857,36043788:172375 -k1,17337:16363583,36043788:172374 -k1,17337:17640239,36043788:172374 -k1,17337:18905098,36043788:172374 -(1,17337:18905098,36043788:0,452978,115847 -r1,17366:21373635,36043788:2468537,568825,115847 -k1,17337:18905098,36043788:-2468537 -) -(1,17337:18905098,36043788:2468537,452978,115847 -k1,17337:18905098,36043788:3277 -h1,17337:21370358,36043788:0,411205,112570 -) -k1,17337:21546009,36043788:172374 -k1,17337:22666035,36043788:172375 -k1,17337:23194269,36043788:172374 -k1,17337:24360169,36043788:172374 -k1,17337:25191835,36043788:172374 -k1,17337:26383295,36043788:172375 -k1,17337:28623985,36043788:172374 -k1,17337:29455651,36043788:172374 -k1,17338:32583029,36043788:0 -k1,17338:32583029,36043788:0 -) -v1,17340:6797234,37234254:0,393216,0 -(1,17348:6797234,38875415:25785795,2034377,196608 -g1,17348:6797234,38875415 -g1,17348:6797234,38875415 -g1,17348:6600626,38875415 -(1,17348:6600626,38875415:0,2034377,196608 -r1,17366:32779637,38875415:26179011,2230985,196608 -k1,17348:6600625,38875415:-26179012 -) -(1,17348:6600626,38875415:26179011,2034377,196608 -[1,17348:6797234,38875415:25785795,1837769,0 -(1,17342:6797234,37441872:25785795,404226,101187 -(1,17341:6797234,37441872:0,0,0 -g1,17341:6797234,37441872 -g1,17341:6797234,37441872 -g1,17341:6469554,37441872 -(1,17341:6469554,37441872:0,0,0 -) -g1,17341:6797234,37441872 -) -k1,17342:6797234,37441872:0 -h1,17342:9326399,37441872:0,0,0 -k1,17342:32583029,37441872:23256630 -g1,17342:32583029,37441872 -) -(1,17347:6797234,38108050:25785795,404226,107478 -(1,17344:6797234,38108050:0,0,0 -g1,17344:6797234,38108050 -g1,17344:6797234,38108050 -g1,17344:6469554,38108050 -(1,17344:6469554,38108050:0,0,0 -) -g1,17344:6797234,38108050 -) -g1,17347:7745671,38108050 -g1,17347:9010254,38108050 -g1,17347:11223274,38108050 -g1,17347:11539420,38108050 -g1,17347:11855566,38108050 -g1,17347:12171712,38108050 -g1,17347:12487858,38108050 -g1,17347:12804004,38108050 -g1,17347:13120150,38108050 -g1,17347:13436296,38108050 -g1,17347:16281607,38108050 -g1,17347:16597753,38108050 -g1,17347:16913899,38108050 -g1,17347:17230045,38108050 -g1,17347:17546191,38108050 -g1,17347:17862337,38108050 -g1,17347:20707648,38108050 -g1,17347:21023794,38108050 -g1,17347:21339940,38108050 -g1,17347:21656086,38108050 -g1,17347:21972232,38108050 -g1,17347:22288378,38108050 -g1,17347:25449835,38108050 -g1,17347:25765981,38108050 -g1,17347:26082127,38108050 -g1,17347:26398273,38108050 -g1,17347:26714419,38108050 -h1,17347:28927439,38108050:0,0,0 -k1,17347:32583029,38108050:3655590 -g1,17347:32583029,38108050 -) -(1,17347:6797234,38774228:25785795,410518,101187 -h1,17347:6797234,38774228:0,0,0 -g1,17347:7745671,38774228 -g1,17347:9010254,38774228 -g1,17347:13436294,38774228 -g1,17347:15965460,38774228 -g1,17347:16281606,38774228 -g1,17347:16597752,38774228 -g1,17347:16913898,38774228 -g1,17347:17230044,38774228 -g1,17347:17546190,38774228 -g1,17347:17862336,38774228 -g1,17347:21339939,38774228 -g1,17347:21656085,38774228 -g1,17347:21972231,38774228 -g1,17347:22288377,38774228 -h1,17347:24817542,38774228:0,0,0 -k1,17347:32583029,38774228:7765487 -g1,17347:32583029,38774228 -) -] -) -g1,17348:32583029,38875415 -g1,17348:6797234,38875415 -g1,17348:6797234,38875415 -g1,17348:32583029,38875415 -g1,17348:32583029,38875415 -) -h1,17348:6797234,39072023:0,0,0 -] -g1,17350:32583029,39596311 -) -h1,17350:6630773,39596311:0,0,0 -v1,17353:6630773,40962087:0,393216,0 -(1,17366:6630773,45430543:25952256,4861672,0 -g1,17366:6630773,45430543 -g1,17366:6303093,45430543 -r1,17366:6401397,45430543:98304,4861672,0 -g1,17366:6600626,45430543 -g1,17366:6797234,45430543 -[1,17366:6797234,45430543:25785795,4861672,0 -(1,17354:6797234,41394625:25785795,825754,196608 -(1,17353:6797234,41394625:0,825754,196608 -r1,17366:8834093,41394625:2036859,1022362,196608 -k1,17353:6797234,41394625:-2036859 -) -(1,17353:6797234,41394625:2036859,825754,196608 -) -k1,17353:9033777,41394625:199684 -k1,17353:10351706,41394625:327680 -k1,17353:12943455,41394625:199685 -k1,17353:13759177,41394625:199684 -k1,17353:15609058,41394625:199684 -k1,17353:17595910,41394625:199685 -k1,17353:18814679,41394625:199684 -k1,17353:21776706,41394625:199684 -k1,17353:24930099,41394625:199685 -k1,17353:25789075,41394625:199684 -k1,17353:27948285,41394625:199684 -(1,17353:27948285,41394625:0,414482,115847 -r1,17366:28306551,41394625:358266,530329,115847 -k1,17353:27948285,41394625:-358266 -) -(1,17353:27948285,41394625:358266,414482,115847 -k1,17353:27948285,41394625:3277 -h1,17353:28303274,41394625:0,411205,112570 -) -k1,17353:28679906,41394625:199685 -k1,17353:29921612,41394625:199684 -k1,17353:32583029,41394625:0 -) -(1,17354:6797234,42236113:25785795,513147,134348 -g1,17353:7944114,42236113 -g1,17353:9162428,42236113 -(1,17353:9162428,42236113:0,452978,115847 -r1,17366:11982677,42236113:2820249,568825,115847 -k1,17353:9162428,42236113:-2820249 -) -(1,17353:9162428,42236113:2820249,452978,115847 -k1,17353:9162428,42236113:3277 -h1,17353:11979400,42236113:0,411205,112570 -) -g1,17353:12181906,42236113 -g1,17353:15004541,42236113 -g1,17353:15863062,42236113 -g1,17353:18021817,42236113 -(1,17353:18021817,42236113:0,414482,115847 -r1,17366:18380083,42236113:358266,530329,115847 -k1,17353:18021817,42236113:-358266 -) -(1,17353:18021817,42236113:358266,414482,115847 -k1,17353:18021817,42236113:3277 -h1,17353:18376806,42236113:0,411205,112570 -) -g1,17353:18579312,42236113 -g1,17353:19935251,42236113 -g1,17353:21238762,42236113 -k1,17354:32583029,42236113:10078111 -g1,17354:32583029,42236113 -) -v1,17356:6797234,43426579:0,393216,0 -(1,17360:6797234,43741676:25785795,708313,196608 -g1,17360:6797234,43741676 -g1,17360:6797234,43741676 -g1,17360:6600626,43741676 -(1,17360:6600626,43741676:0,708313,196608 -r1,17366:32779637,43741676:26179011,904921,196608 -k1,17360:6600625,43741676:-26179012 -) -(1,17360:6600626,43741676:26179011,708313,196608 -[1,17360:6797234,43741676:25785795,511705,0 -(1,17358:6797234,43640489:25785795,410518,101187 -(1,17357:6797234,43640489:0,0,0 -g1,17357:6797234,43640489 -g1,17357:6797234,43640489 -g1,17357:6469554,43640489 -(1,17357:6469554,43640489:0,0,0 -) -g1,17357:6797234,43640489 -) -k1,17358:6797234,43640489:0 -g1,17358:11223274,43640489 -g1,17358:14384731,43640489 -g1,17358:15017023,43640489 -h1,17358:15649315,43640489:0,0,0 -k1,17358:32583029,43640489:16933714 -g1,17358:32583029,43640489 -) -] -) -g1,17360:32583029,43741676 -g1,17360:6797234,43741676 -g1,17360:6797234,43741676 -g1,17360:32583029,43741676 -g1,17360:32583029,43741676 -) -h1,17360:6797234,43938284:0,0,0 -(1,17364:6797234,45304060:25785795,505283,126483 -h1,17363:6797234,45304060:983040,0,0 -g1,17363:9400324,45304060 -g1,17363:11351330,45304060 -g1,17363:13438651,45304060 -g1,17363:14629440,45304060 -g1,17363:17234496,45304060 -g1,17363:18049763,45304060 -g1,17363:19452233,45304060 -k1,17364:32583029,45304060:11436690 -g1,17364:32583029,45304060 -) -] -g1,17366:32583029,45430543 -) -] -(1,17366:32583029,45706769:0,0,0 -g1,17366:32583029,45706769 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,17381:37855564,2439708:1179648,16384,0 ) ) +k1,17381:3078556,2439708:-34777008 +) ] -(1,17366:6630773,47279633:25952256,0,0 -h1,17366:6630773,47279633:25952256,0,0 +[1,17381:3078558,4812305:0,0,0 +(1,17381:3078558,49800853:0,16384,2228224 +k1,17381:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,17381:2537886,49800853:1179648,16384,0 +) +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,17381:3078558,51504789:16384,1179648,0 +) +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] -(1,17366:4262630,4025873:0,0,0 -[1,17366:-473656,4025873:0,0,0 -(1,17366:-473656,-710413:0,0,0 -(1,17366:-473656,-710413:0,0,0 -g1,17366:-473656,-710413 ) -g1,17366:-473656,-710413 +) +) +] +[1,17381:3078558,4812305:0,0,0 +(1,17381:3078558,49800853:0,16384,2228224 +g1,17381:29030814,49800853 +g1,17381:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,17381:36151628,51504789:16384,1179648,0 +) +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 +) +] +) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,17381:37855564,49800853:1179648,16384,0 +) +) +k1,17381:3078556,49800853:-34777008 +) +] +g1,17381:6630773,4812305 +g1,17381:6630773,4812305 +g1,17381:8017514,4812305 +g1,17381:11261546,4812305 +g1,17381:12076813,4812305 +g1,17381:14985956,4812305 +k1,17381:31387652,4812305:16401696 +) +) +] +[1,17381:6630773,45706769:25952256,40108032,0 +(1,17381:6630773,45706769:25952256,40108032,0 +(1,17381:6630773,45706769:0,0,0 +g1,17381:6630773,45706769 +) +[1,17381:6630773,45706769:25952256,40108032,0 +(1,17340:6630773,6254097:25952256,513147,134348 +k1,17339:10041813,6254097:220092 +k1,17339:10793401,6254097:220091 +k1,17339:13385241,6254097:220092 +k1,17339:14256760,6254097:220091 +k1,17339:15495937,6254097:220092 +k1,17339:19123901,6254097:220092 +k1,17339:21763581,6254097:220091 +k1,17339:22441770,6254097:220092 +k1,17339:24771465,6254097:220091 +k1,17339:26367158,6254097:220092 +k1,17339:27606334,6254097:220091 +k1,17339:31464329,6254097:220092 +k1,17339:32583029,6254097:0 +) +(1,17340:6630773,7119177:25952256,513147,134348 +k1,17339:9485891,7119177:219915 +k1,17339:10724890,7119177:219914 +(1,17339:10724890,7119177:0,414482,122846 +r1,17381:12138291,7119177:1413401,537328,122846 +k1,17339:10724890,7119177:-1413401 +) +(1,17339:10724890,7119177:1413401,414482,122846 +k1,17339:10724890,7119177:3277 +h1,17339:12135014,7119177:0,411205,112570 +) +k1,17339:12358206,7119177:219915 +k1,17339:13769565,7119177:219914 +k1,17339:15008565,7119177:219915 +k1,17339:18325711,7119177:219915 +k1,17339:19204917,7119177:219914 +k1,17339:20443917,7119177:219915 +k1,17339:22114799,7119177:219915 +k1,17339:23531400,7119177:219914 +k1,17339:28588527,7119177:219915 +k1,17339:29339938,7119177:219914 +k1,17339:31931601,7119177:219915 +k1,17339:32583029,7119177:0 +) +(1,17340:6630773,7984257:25952256,513147,134348 +k1,17339:7816975,7984257:167117 +k1,17339:9994736,7984257:167116 +k1,17339:12940580,7984257:167117 +k1,17339:13869225,7984257:167117 +k1,17339:15168148,7984257:167116 +k1,17339:18168386,7984257:167117 +k1,17339:19532189,7984257:167116 +k1,17339:22177878,7984257:167117 +k1,17339:23513502,7984257:167117 +k1,17339:25393074,7984257:167116 +k1,17339:26091688,7984257:167117 +k1,17339:28561085,7984257:167117 +k1,17339:29537571,7984257:167116 +k1,17339:30723773,7984257:167117 +k1,17340:32583029,7984257:0 +) +(1,17340:6630773,8849337:25952256,513147,102891 +k1,17339:9131736,8849337:165260 +k1,17339:13035170,8849337:165260 +k1,17339:13886591,8849337:165259 +k1,17339:14407711,8849337:165260 +k1,17339:16487933,8849337:165260 +k1,17339:19182883,8849337:165260 +k1,17339:20367228,8849337:165260 +k1,17339:22520195,8849337:165260 +k1,17339:23892627,8849337:165259 +k1,17339:25770343,8849337:165260 +k1,17339:26587031,8849337:165260 +k1,17339:27771376,8849337:165260 +k1,17339:32583029,8849337:0 +) +(1,17340:6630773,9714417:25952256,513147,126483 +k1,17339:8286048,9714417:265912 +k1,17339:9743405,9714417:265912 +k1,17339:11212559,9714417:265913 +k1,17339:13190927,9714417:265912 +k1,17339:15444546,9714417:265912 +k1,17339:16241955,9714417:265912 +k1,17339:20824724,9714417:265912 +k1,17339:22603862,9714417:265912 +k1,17339:23521203,9714417:265913 +k1,17339:25810867,9714417:265912 +k1,17339:27095864,9714417:265912 +k1,17339:30398714,9714417:265912 +k1,17339:32583029,9714417:0 +) +(1,17340:6630773,10579497:25952256,513147,126483 +k1,17339:8729740,10579497:213496 +k1,17339:9934796,10579497:213496 +k1,17339:11582220,10579497:213496 +k1,17339:14097996,10579497:213496 +k1,17339:15824718,10579497:213496 +k1,17339:17057299,10579497:213496 +k1,17339:22108007,10579497:213496 +k1,17339:22853000,10579497:213496 +k1,17339:25438244,10579497:213496 +k1,17339:26303168,10579497:213496 +k1,17339:28329390,10579497:213496 +k1,17339:29496435,10579497:213496 +k1,17339:31185146,10579497:213496 +k1,17339:32583029,10579497:0 +) +(1,17340:6630773,11444577:25952256,505283,126483 +k1,17339:9970925,11444577:250129 +k1,17339:11596655,11444577:250129 +k1,17339:14731023,11444577:250129 +k1,17339:18389024,11444577:250129 +k1,17339:21215373,11444577:250129 +k1,17339:23155020,11444577:250129 +k1,17339:25107119,11444577:250129 +k1,17339:28765120,11444577:250129 +k1,17339:31591469,11444577:250129 +k1,17339:32583029,11444577:0 +) +(1,17340:6630773,12309657:25952256,505283,134348 +g1,17339:9920025,12309657 +g1,17339:10735292,12309657 +g1,17339:13543509,12309657 +h1,17339:15086227,12309657:0,0,0 +g1,17339:15285456,12309657 +g1,17339:16676130,12309657 +h1,17339:18045177,12309657:0,0,0 +g1,17339:18244406,12309657 +g1,17339:19253005,12309657 +g1,17339:21280688,12309657 +h1,17339:22476065,12309657:0,0,0 +g1,17339:22675294,12309657 +g1,17339:24065968,12309657 +h1,17339:25261345,12309657:0,0,0 +g1,17339:25634244,12309657 +k1,17340:32583029,12309657:2978614 +g1,17340:32583029,12309657 +) +v1,17342:6630773,12994512:0,393216,0 +(1,17350:6630773,16074615:25952256,3473319,196608 +g1,17350:6630773,16074615 +g1,17350:6630773,16074615 +g1,17350:6434165,16074615 +(1,17350:6434165,16074615:0,3473319,196608 +r1,17381:32779637,16074615:26345472,3669927,196608 +k1,17350:6434165,16074615:-26345472 +) +(1,17350:6434165,16074615:26345472,3473319,196608 +[1,17350:6630773,16074615:25952256,3276711,0 +(1,17344:6630773,13222343:25952256,424439,112852 +(1,17343:6630773,13222343:0,0,0 +g1,17343:6630773,13222343 +g1,17343:6630773,13222343 +g1,17343:6303093,13222343 +(1,17343:6303093,13222343:0,0,0 +) +g1,17343:6630773,13222343 +) +k1,17344:6630773,13222343:0 +g1,17344:10614221,13222343 +g1,17344:11278129,13222343 +k1,17344:11278129,13222343:0 +h1,17344:13601807,13222343:0,0,0 +k1,17344:32583029,13222343:18981222 +g1,17344:32583029,13222343 +) +(1,17345:6630773,13907198:25952256,424439,112852 +h1,17345:6630773,13907198:0,0,0 +g1,17345:6962727,13907198 +g1,17345:7294681,13907198 +g1,17345:7626635,13907198 +g1,17345:7958589,13907198 +g1,17345:8290543,13907198 +g1,17345:8622497,13907198 +g1,17345:8954451,13907198 +g1,17345:10946175,13907198 +g1,17345:11610083,13907198 +g1,17345:13601807,13907198 +g1,17345:14265715,13907198 +g1,17345:14929623,13907198 +g1,17345:16921347,13907198 +h1,17345:17253301,13907198:0,0,0 +k1,17345:32583029,13907198:15329728 +g1,17345:32583029,13907198 +) +(1,17346:6630773,14592053:25952256,424439,112852 +h1,17346:6630773,14592053:0,0,0 +g1,17346:6962727,14592053 +g1,17346:7294681,14592053 +g1,17346:11610082,14592053 +h1,17346:11942036,14592053:0,0,0 +k1,17346:32583028,14592053:20640992 +g1,17346:32583028,14592053 +) +(1,17347:6630773,15276908:25952256,431045,112852 +h1,17347:6630773,15276908:0,0,0 +g1,17347:6962727,15276908 +g1,17347:7294681,15276908 +g1,17347:12937898,15276908 +g1,17347:13601806,15276908 +g1,17347:16257438,15276908 +g1,17347:18581116,15276908 +g1,17347:19245024,15276908 +g1,17347:21236748,15276908 +g1,17347:23892380,15276908 +g1,17347:24556288,15276908 +g1,17347:25220196,15276908 +g1,17347:25884104,15276908 +g1,17347:26879966,15276908 +h1,17347:27211920,15276908:0,0,0 +k1,17347:32583029,15276908:5371109 +g1,17347:32583029,15276908 +) +(1,17348:6630773,15961763:25952256,424439,112852 +h1,17348:6630773,15961763:0,0,0 +g1,17348:6962727,15961763 +g1,17348:7294681,15961763 +g1,17348:11942036,15961763 +g1,17348:12605944,15961763 +h1,17348:15261576,15961763:0,0,0 +k1,17348:32583028,15961763:17321452 +g1,17348:32583028,15961763 +) +] +) +g1,17350:32583029,16074615 +g1,17350:6630773,16074615 +g1,17350:6630773,16074615 +g1,17350:32583029,16074615 +g1,17350:32583029,16074615 +) +h1,17350:6630773,16271223:0,0,0 +(1,17353:6630773,25420425:25952256,9083666,0 +k1,17353:10523651,25420425:3892878 +h1,17352:10523651,25420425:0,0,0 +(1,17352:10523651,25420425:18166500,9083666,0 +(1,17352:10523651,25420425:18167376,9083688,0 +(1,17352:10523651,25420425:18167376,9083688,0 +(1,17352:10523651,25420425:0,9083688,0 +(1,17352:10523651,25420425:0,14208860,0 +(1,17352:10523651,25420425:28417720,14208860,0 +) +k1,17352:10523651,25420425:-28417720 +) +) +g1,17352:28691027,25420425 +) +) +) +g1,17353:28690151,25420425 +k1,17353:32583029,25420425:3892878 +) +(1,17360:6630773,26285505:25952256,513147,134348 +h1,17359:6630773,26285505:983040,0,0 +k1,17359:10452778,26285505:344665 +k1,17359:12576745,26285505:344665 +k1,17359:13940494,26285505:344664 +k1,17359:17382390,26285505:344665 +k1,17359:18386347,26285505:344665 +k1,17359:20338610,26285505:344665 +k1,17359:21296036,26285505:344664 +k1,17359:22659786,26285505:344665 +k1,17359:24429859,26285505:344665 +k1,17359:25433816,26285505:344665 +k1,17359:30386316,26285505:344664 +k1,17359:31835263,26285505:344665 +k1,17359:32583029,26285505:0 +) +(1,17360:6630773,27150585:25952256,513147,134348 +k1,17359:9325061,27150585:167220 +k1,17359:10151573,27150585:167220 +k1,17359:11004955,27150585:167220 +k1,17359:12672949,27150585:167220 +k1,17359:14867198,27150585:167220 +k1,17359:17638163,27150585:167220 +k1,17359:18824468,27150585:167220 +k1,17359:21380475,27150585:167220 +k1,17359:23809999,27150585:167221 +k1,17359:24464775,27150585:167188 +k1,17359:27557522,27150585:167220 +k1,17359:29711138,27150585:167220 +k1,17359:30982640,27150585:167220 +k1,17360:32583029,27150585:0 +) +(1,17360:6630773,28015665:25952256,513147,134348 +k1,17359:8051997,28015665:163588 +k1,17359:9234669,28015665:163587 +k1,17359:11663837,28015665:163588 +k1,17359:13206958,28015665:163588 +k1,17359:15530612,28015665:163587 +k1,17359:16890887,28015665:163588 +k1,17359:18331772,28015665:163588 +k1,17359:19026857,28015665:163588 +k1,17359:20209529,28015665:163587 +k1,17359:22200261,28015665:163588 +k1,17359:23382934,28015665:163588 +k1,17359:27618273,28015665:163587 +k1,17359:28773421,28015665:163588 +k1,17359:32583029,28015665:0 +) +(1,17360:6630773,28880745:25952256,513147,126483 +k1,17359:7479682,28880745:232871 +k1,17359:8731638,28880745:232871 +k1,17359:10617982,28880745:232871 +k1,17359:12262499,28880745:232871 +k1,17359:13514456,28880745:232872 +k1,17359:15562019,28880745:232871 +k1,17359:16454182,28880745:232871 +k1,17359:17706138,28880745:232871 +k1,17359:19337547,28880745:232871 +k1,17359:20561978,28880745:232871 +k1,17359:21813934,28880745:232871 +k1,17359:23700278,28880745:232871 +k1,17359:25124594,28880745:232871 +k1,17359:26123582,28880745:232872 +k1,17359:27582632,28880745:232871 +k1,17359:28347000,28880745:232871 +k1,17359:29598956,28880745:232871 +k1,17359:31658971,28880745:232871 +k1,17359:32583029,28880745:0 +) +(1,17360:6630773,29745825:25952256,513147,126483 +k1,17359:7833510,29745825:183652 +k1,17359:9892802,29745825:183652 +k1,17359:11682741,29745825:183652 +k1,17359:13196774,29745825:183652 +k1,17359:15077153,29745825:183652 +k1,17359:18129971,29745825:183652 +k1,17359:19305182,29745825:183651 +k1,17359:22363898,29745825:183652 +k1,17359:23309078,29745825:183652 +k1,17359:26255073,29745825:183652 +k1,17359:28755423,29745825:183652 +k1,17359:30043357,29745825:183652 +k1,17359:30974775,29745825:183652 +k1,17360:32583029,29745825:0 +) +(1,17360:6630773,30610905:25952256,513147,126483 +g1,17359:8748896,30610905 +g1,17359:11884138,30610905 +g1,17359:13520965,30610905 +$1,17359:13520965,30610905 +$1,17359:14128484,30610905 +g1,17359:14314868,30610905 +g1,17359:15455587,30610905 +$1,17359:15455587,30610905 +$1,17359:16063106,30610905 +g1,17359:16249490,30610905 +$1,17359:16249490,30610905 +$1,17359:16857009,30610905 +g1,17359:17043393,30610905 +g1,17359:18838817,30610905 +$1,17359:18838817,30610905 +$1,17359:19446336,30610905 +g1,17359:19632720,30610905 +g1,17359:21613349,30610905 +$1,17359:21613349,30610905 +$1,17359:22220868,30610905 +g1,17359:22407252,30610905 +g1,17359:24399677,30610905 +k1,17360:32583029,30610905:6432165 +g1,17360:32583029,30610905 +) +v1,17362:6630773,31295760:0,393216,0 +(1,17369:6630773,33657978:25952256,2755434,196608 +g1,17369:6630773,33657978 +g1,17369:6630773,33657978 +g1,17369:6434165,33657978 +(1,17369:6434165,33657978:0,2755434,196608 +r1,17381:32779637,33657978:26345472,2952042,196608 +k1,17369:6434165,33657978:-26345472 +) +(1,17369:6434165,33657978:26345472,2755434,196608 +[1,17369:6630773,33657978:25952256,2558826,0 +(1,17364:6630773,31523591:25952256,424439,112852 +(1,17363:6630773,31523591:0,0,0 +g1,17363:6630773,31523591 +g1,17363:6630773,31523591 +g1,17363:6303093,31523591 +(1,17363:6303093,31523591:0,0,0 +) +g1,17363:6630773,31523591 +) +k1,17364:6630773,31523591:0 +g1,17364:10614221,31523591 +g1,17364:11278129,31523591 +k1,17364:11278129,31523591:0 +h1,17364:13601807,31523591:0,0,0 +k1,17364:32583029,31523591:18981222 +g1,17364:32583029,31523591 +) +(1,17365:6630773,32208446:25952256,424439,112852 +h1,17365:6630773,32208446:0,0,0 +g1,17365:6962727,32208446 +g1,17365:7294681,32208446 +g1,17365:7626635,32208446 +g1,17365:7958589,32208446 +g1,17365:8290543,32208446 +g1,17365:8622497,32208446 +g1,17365:8954451,32208446 +g1,17365:10946175,32208446 +g1,17365:11610083,32208446 +g1,17365:13601807,32208446 +g1,17365:14265715,32208446 +g1,17365:14929623,32208446 +g1,17365:16921347,32208446 +h1,17365:17253301,32208446:0,0,0 +k1,17365:32583029,32208446:15329728 +g1,17365:32583029,32208446 +) +(1,17366:6630773,32893301:25952256,424439,112852 +h1,17366:6630773,32893301:0,0,0 +g1,17366:6962727,32893301 +g1,17366:7294681,32893301 +g1,17366:11610082,32893301 +h1,17366:11942036,32893301:0,0,0 +k1,17366:32583028,32893301:20640992 +g1,17366:32583028,32893301 +) +(1,17367:6630773,33578156:25952256,424439,79822 +h1,17367:6630773,33578156:0,0,0 +g1,17367:6962727,33578156 +g1,17367:7294681,33578156 +k1,17367:7294681,33578156:0 +h1,17367:12273990,33578156:0,0,0 +k1,17367:32583030,33578156:20309040 +g1,17367:32583030,33578156 +) +] +) +g1,17369:32583029,33657978 +g1,17369:6630773,33657978 +g1,17369:6630773,33657978 +g1,17369:32583029,33657978 +g1,17369:32583029,33657978 +) +h1,17369:6630773,33854586:0,0,0 +(1,17372:6630773,43003788:25952256,9083666,0 +k1,17372:10523651,43003788:3892878 +h1,17371:10523651,43003788:0,0,0 +(1,17371:10523651,43003788:18166500,9083666,0 +(1,17371:10523651,43003788:18167376,9083688,0 +(1,17371:10523651,43003788:18167376,9083688,0 +(1,17371:10523651,43003788:0,9083688,0 +(1,17371:10523651,43003788:0,14208860,0 +(1,17371:10523651,43003788:28417720,14208860,0 +) +k1,17371:10523651,43003788:-28417720 +) +) +g1,17371:28691027,43003788 +) +) +) +g1,17372:28690151,43003788 +k1,17372:32583029,43003788:3892878 +) +(1,17379:6630773,43868868:25952256,513147,126483 +h1,17378:6630773,43868868:983040,0,0 +k1,17378:8753091,43868868:185729 +k1,17378:10043102,43868868:185729 +k1,17378:11514647,43868868:185729 +k1,17378:14345408,43868868:185728 +k1,17378:15550222,43868868:185729 +k1,17378:17169879,43868868:185729 +k1,17378:18686644,43868868:185729 +k1,17378:20141150,43868868:185729 +k1,17378:21518324,43868868:185729 +k1,17378:23035089,43868868:185729 +k1,17378:25402512,43868868:185729 +k1,17378:26969084,43868868:185728 +k1,17378:29264417,43868868:185729 +k1,17378:30469231,43868868:185729 +k1,17378:31923737,43868868:185729 +k1,17378:32583029,43868868:0 +) +(1,17379:6630773,44733948:25952256,513147,102891 +k1,17378:7588213,44733948:191324 +k1,17378:9005716,44733948:191324 +k1,17378:12239877,44733948:191324 +k1,17378:13117363,44733948:191324 +k1,17378:14817326,44733948:191324 +k1,17378:16277427,44733948:191324 +k1,17378:17000248,44733948:191324 +k1,17378:19573150,44733948:191324 +k1,17378:22123770,44733948:191324 +k1,17378:22966522,44733948:191324 +k1,17378:24176931,44733948:191324 +k1,17378:25802183,44733948:191324 +k1,17378:27435954,44733948:191324 +k1,17378:29115601,44733948:191324 +k1,17378:30175277,44733948:191324 +k1,17378:31563944,44733948:191324 +k1,17378:32583029,44733948:0 +) +] +(1,17381:32583029,45706769:0,0,0 +g1,17381:32583029,45706769 +) +) +] +(1,17381:6630773,47279633:25952256,0,0 +h1,17381:6630773,47279633:25952256,0,0 +) +] +(1,17381:4262630,4025873:0,0,0 +[1,17381:-473656,4025873:0,0,0 +(1,17381:-473656,-710413:0,0,0 +(1,17381:-473656,-710413:0,0,0 +g1,17381:-473656,-710413 +) +g1,17381:-473656,-710413 ) ] ) ] -!28636 -}302 -Input:2560:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2561:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2562:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!18115 +}284 Input:2563:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2564:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2565:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -298892,983 +295615,776 @@ Input:2566:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConso Input:2567:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2568:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2569:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!952 -{303 -[1,17440:4262630,47279633:28320399,43253760,0 -(1,17440:4262630,4025873:0,0,0 -[1,17440:-473656,4025873:0,0,0 -(1,17440:-473656,-710413:0,0,0 -(1,17440:-473656,-644877:0,0,0 -k1,17440:-473656,-644877:-65536 +Input:2570:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2571:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2572:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2573:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2574:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2575:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2576:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2577:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1422 +{285 +[1,17437:4262630,47279633:28320399,43253760,0 +(1,17437:4262630,4025873:0,0,0 +[1,17437:-473656,4025873:0,0,0 +(1,17437:-473656,-710413:0,0,0 +(1,17437:-473656,-644877:0,0,0 +k1,17437:-473656,-644877:-65536 ) -(1,17440:-473656,4736287:0,0,0 -k1,17440:-473656,4736287:5209943 +(1,17437:-473656,4736287:0,0,0 +k1,17437:-473656,4736287:5209943 ) -g1,17440:-473656,-710413 +g1,17437:-473656,-710413 ) ] ) -[1,17440:6630773,47279633:25952256,43253760,0 -[1,17440:6630773,4812305:25952256,786432,0 -(1,17440:6630773,4812305:25952256,513147,126483 -(1,17440:6630773,4812305:25952256,513147,126483 -g1,17440:3078558,4812305 -[1,17440:3078558,4812305:0,0,0 -(1,17440:3078558,2439708:0,1703936,0 -k1,17440:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,17440:2537886,2439708:1179648,16384,0 +[1,17437:6630773,47279633:25952256,43253760,0 +[1,17437:6630773,4812305:25952256,786432,0 +(1,17437:6630773,4812305:25952256,513147,126483 +(1,17437:6630773,4812305:25952256,513147,126483 +g1,17437:3078558,4812305 +[1,17437:3078558,4812305:0,0,0 +(1,17437:3078558,2439708:0,1703936,0 +k1,17437:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,17437:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,17440:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,17437:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,17440:3078558,4812305:0,0,0 -(1,17440:3078558,2439708:0,1703936,0 -g1,17440:29030814,2439708 -g1,17440:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,17440:36151628,1915420:16384,1179648,0 +[1,17437:3078558,4812305:0,0,0 +(1,17437:3078558,2439708:0,1703936,0 +g1,17437:29030814,2439708 +g1,17437:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,17437:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,17440:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,17437:37855564,2439708:1179648,16384,0 ) ) -k1,17440:3078556,2439708:-34777008 +k1,17437:3078556,2439708:-34777008 ) ] -[1,17440:3078558,4812305:0,0,0 -(1,17440:3078558,49800853:0,16384,2228224 -k1,17440:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,17440:2537886,49800853:1179648,16384,0 +[1,17437:3078558,4812305:0,0,0 +(1,17437:3078558,49800853:0,16384,2228224 +k1,17437:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,17437:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,17440:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,17437:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,17440:3078558,4812305:0,0,0 -(1,17440:3078558,49800853:0,16384,2228224 -g1,17440:29030814,49800853 -g1,17440:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,17440:36151628,51504789:16384,1179648,0 +[1,17437:3078558,4812305:0,0,0 +(1,17437:3078558,49800853:0,16384,2228224 +g1,17437:29030814,49800853 +g1,17437:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,17437:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,17440:37855564,49800853:1179648,16384,0 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,17437:37855564,49800853:1179648,16384,0 ) ) -k1,17440:3078556,49800853:-34777008 +k1,17437:3078556,49800853:-34777008 ) ] -g1,17440:6630773,4812305 -k1,17440:21350816,4812305:13524666 -g1,17440:21999622,4812305 -g1,17440:25611966,4812305 -g1,17440:28956923,4812305 -g1,17440:29772190,4812305 -) -) -] -[1,17440:6630773,45706769:25952256,40108032,0 -(1,17440:6630773,45706769:25952256,40108032,0 -(1,17440:6630773,45706769:0,0,0 -g1,17440:6630773,45706769 -) -[1,17440:6630773,45706769:25952256,40108032,0 -v1,17366:6630773,6254097:0,393216,0 -(1,17366:6630773,7341999:25952256,1481118,0 -g1,17366:6630773,7341999 -g1,17366:6303093,7341999 -r1,17440:6401397,7341999:98304,1481118,0 -g1,17366:6600626,7341999 -g1,17366:6797234,7341999 -[1,17366:6797234,7341999:25785795,1481118,0 -(1,17366:6797234,6374028:25785795,513147,134348 -h1,17365:6797234,6374028:983040,0,0 -k1,17365:9245584,6374028:211606 -k1,17365:10561472,6374028:211606 -k1,17365:11865563,6374028:211606 -(1,17365:11865563,6374028:0,452978,115847 -r1,17440:15037523,6374028:3171960,568825,115847 -k1,17365:11865563,6374028:-3171960 -) -(1,17365:11865563,6374028:3171960,452978,115847 -k1,17365:11865563,6374028:3277 -h1,17365:15034246,6374028:0,411205,112570 -) -k1,17365:15249129,6374028:211606 -k1,17365:16652180,6374028:211606 -(1,17365:16652180,6374028:0,452978,115847 -r1,17440:18417293,6374028:1765113,568825,115847 -k1,17365:16652180,6374028:-1765113 -) -(1,17365:16652180,6374028:1765113,452978,115847 -k1,17365:16652180,6374028:3277 -h1,17365:18414016,6374028:0,411205,112570 -) -k1,17365:18628900,6374028:211607 -k1,17365:19491934,6374028:211606 -k1,17365:22196530,6374028:211606 -k1,17365:23178839,6374028:211606 -k1,17365:28045467,6374028:211606 -k1,17365:28916365,6374028:211606 -k1,17365:30458352,6374028:211606 -k1,17365:32583029,6374028:0 -) -(1,17366:6797234,7215516:25785795,505283,126483 -g1,17365:7682625,7215516 -g1,17365:9160461,7215516 -g1,17365:10045852,7215516 -g1,17365:12931402,7215516 -g1,17365:14738229,7215516 -g1,17365:15929018,7215516 -k1,17366:32583029,7215516:14442171 -g1,17366:32583029,7215516 -) -] -g1,17366:32583029,7341999 -) -h1,17366:6630773,7341999:0,0,0 -(1,17370:6630773,9747831:25952256,555811,147783 -(1,17370:6630773,9747831:2450326,534184,12975 -g1,17370:6630773,9747831 -g1,17370:9081099,9747831 -) -g1,17370:12813899,9747831 -g1,17370:13744576,9747831 -k1,17370:32583029,9747831:16813456 -g1,17370:32583029,9747831 -) -(1,17374:6630773,10982535:25952256,513147,134348 -k1,17373:7393325,10982535:134717 -k1,17373:8547128,10982535:134718 -k1,17373:10048926,10982535:134717 -k1,17373:10842936,10982535:134718 -k1,17373:13102330,10982535:134717 -k1,17373:15018317,10982535:134718 -k1,17373:17007703,10982535:134717 -k1,17373:17951791,10982535:134718 -k1,17373:19475871,10982535:134717 -k1,17373:22750418,10982535:134717 -k1,17373:23501174,10982535:134718 -k1,17373:23991751,10982535:134717 -k1,17373:25999488,10982535:134718 -k1,17373:27523568,10982535:134717 -k1,17373:29708252,10982535:134718 -k1,17373:30862054,10982535:134717 -k1,17373:32583029,10982535:0 -) -(1,17374:6630773,11824023:25952256,505283,134348 -k1,17373:8378710,11824023:247163 -k1,17373:9157371,11824023:247164 -k1,17373:10055962,11824023:247163 -k1,17373:11799313,11824023:247164 -k1,17373:12402336,11824023:247163 -k1,17373:13926797,11824023:247164 -k1,17373:14860122,11824023:247163 -k1,17373:18197308,11824023:247163 -k1,17373:20473467,11824023:247164 -k1,17373:23148084,11824023:247163 -k1,17373:24165951,11824023:247164 -k1,17373:27659112,11824023:247163 -(1,17373:27659112,11824023:0,414482,115847 -r1,17440:29775937,11824023:2116825,530329,115847 -k1,17373:27659112,11824023:-2116825 -) -(1,17373:27659112,11824023:2116825,414482,115847 -k1,17373:27659112,11824023:3277 -h1,17373:29772660,11824023:0,411205,112570 -) -k1,17373:30023101,11824023:247164 -k1,17373:30886302,11824023:247163 -k1,17373:32583029,11824023:0 -) -(1,17374:6630773,12665511:25952256,513147,126483 -k1,17373:10067261,12665511:271099 -k1,17373:10989787,12665511:271098 -k1,17373:12279971,12665511:271099 -(1,17373:12279971,12665511:0,452978,115847 -r1,17440:13693372,12665511:1413401,568825,115847 -k1,17373:12279971,12665511:-1413401 -) -(1,17373:12279971,12665511:1413401,452978,115847 -k1,17373:12279971,12665511:3277 -h1,17373:13690095,12665511:0,411205,112570 -) -k1,17373:13964470,12665511:271098 -k1,17373:17516301,12665511:271099 -k1,17373:18454555,12665511:271098 -(1,17373:18454555,12665511:0,452978,122846 -r1,17440:21274804,12665511:2820249,575824,122846 -k1,17373:18454555,12665511:-2820249 -) -(1,17373:18454555,12665511:2820249,452978,122846 -k1,17373:18454555,12665511:3277 -h1,17373:21271527,12665511:0,411205,112570 -) -k1,17373:21719573,12665511:271099 -k1,17373:23462610,12665511:271098 -k1,17373:25938996,12665511:271099 -k1,17373:26826132,12665511:271098 -k1,17373:28300472,12665511:271099 -k1,17373:29809545,12665511:271098 -k1,17373:32583029,12665511:0 -) -(1,17374:6630773,13506999:25952256,513147,134348 -k1,17373:7866433,13506999:216575 -k1,17373:10348587,13506999:216574 -k1,17373:11512813,13506999:216575 -k1,17373:12495503,13506999:216574 -k1,17373:14600170,13506999:216575 -k1,17373:15432782,13506999:216574 -k1,17373:16668442,13506999:216575 -k1,17373:18335983,13506999:216574 -k1,17373:19749245,13506999:216575 -k1,17373:21619292,13506999:216574 -k1,17373:24117175,13506999:216575 -k1,17373:24985177,13506999:216574 -k1,17373:26220837,13506999:216575 -k1,17373:29509739,13506999:216574 -k1,17373:31931601,13506999:216575 -k1,17374:32583029,13506999:0 -) -(1,17374:6630773,14348487:25952256,452978,122846 -(1,17373:6630773,14348487:0,452978,122846 -r1,17440:9099310,14348487:2468537,575824,122846 -k1,17373:6630773,14348487:-2468537 -) -(1,17373:6630773,14348487:2468537,452978,122846 -k1,17373:6630773,14348487:3277 -h1,17373:9096033,14348487:0,411205,112570 -) -k1,17374:32583028,14348487:23310048 -g1,17374:32583028,14348487 -) -v1,17376:6630773,15329237:0,393216,0 -(1,17382:6630773,16976689:25952256,2040668,196608 -g1,17382:6630773,16976689 -g1,17382:6630773,16976689 -g1,17382:6434165,16976689 -(1,17382:6434165,16976689:0,2040668,196608 -r1,17440:32779637,16976689:26345472,2237276,196608 -k1,17382:6434165,16976689:-26345472 -) -(1,17382:6434165,16976689:26345472,2040668,196608 -[1,17382:6630773,16976689:25952256,1844060,0 -(1,17378:6630773,15536855:25952256,404226,107478 -(1,17377:6630773,15536855:0,0,0 -g1,17377:6630773,15536855 -g1,17377:6630773,15536855 -g1,17377:6303093,15536855 -(1,17377:6303093,15536855:0,0,0 -) -g1,17377:6630773,15536855 -) -k1,17378:6630773,15536855:0 -g1,17378:10424522,15536855 -g1,17378:11056814,15536855 -k1,17378:11056814,15536855:0 -h1,17378:13269834,15536855:0,0,0 -k1,17378:32583030,15536855:19313196 -g1,17378:32583030,15536855 -) -(1,17379:6630773,16203033:25952256,404226,107478 -h1,17379:6630773,16203033:0,0,0 -g1,17379:6946919,16203033 -g1,17379:7263065,16203033 -g1,17379:7579211,16203033 -g1,17379:7895357,16203033 -g1,17379:8211503,16203033 -g1,17379:8527649,16203033 -g1,17379:8843795,16203033 -g1,17379:11372961,16203033 -g1,17379:12005253,16203033 -g1,17379:13902128,16203033 -g1,17379:14534420,16203033 -g1,17379:16431295,16203033 -g1,17379:17063587,16203033 -g1,17379:17695879,16203033 -g1,17379:19592753,16203033 -h1,17379:19908899,16203033:0,0,0 -k1,17379:32583029,16203033:12674130 -g1,17379:32583029,16203033 -) -(1,17380:6630773,16869211:25952256,404226,107478 -h1,17380:6630773,16869211:0,0,0 -g1,17380:6946919,16869211 -g1,17380:7263065,16869211 -k1,17380:7263065,16869211:0 -h1,17380:11056813,16869211:0,0,0 -k1,17380:32583029,16869211:21526216 -g1,17380:32583029,16869211 -) -] -) -g1,17382:32583029,16976689 -g1,17382:6630773,16976689 -g1,17382:6630773,16976689 -g1,17382:32583029,16976689 -g1,17382:32583029,16976689 -) -h1,17382:6630773,17173297:0,0,0 -(1,17386:6630773,18329357:25952256,513147,134348 -h1,17385:6630773,18329357:983040,0,0 -k1,17385:10837398,18329357:288883 -k1,17385:12145365,18329357:288882 -k1,17385:15336838,18329357:288883 -k1,17385:16285012,18329357:288882 -k1,17385:19292984,18329357:288883 -k1,17385:23865299,18329357:288882 -k1,17385:25173267,18329357:288883 -k1,17385:28765164,18329357:288882 -k1,17385:29713339,18329357:288883 -k1,17385:31391584,18329357:288882 -k1,17385:32583029,18329357:0 -) -(1,17386:6630773,19170845:25952256,505283,134348 -k1,17385:9906459,19170845:137822 -k1,17385:13115298,19170845:137822 -k1,17385:13904548,19170845:137822 -k1,17385:17235284,19170845:137822 -k1,17385:19434868,19170845:137821 -k1,17385:21777977,19170845:137822 -k1,17385:22567227,19170845:137822 -k1,17385:25558487,19170845:137822 -k1,17385:26379194,19170845:137822 -k1,17385:30024503,19170845:137822 -k1,17385:32583029,19170845:0 -) -(1,17386:6630773,20012333:25952256,513147,134348 -k1,17385:8433079,20012333:293667 -(1,17385:8433079,20012333:0,452978,122846 -r1,17440:10901616,20012333:2468537,575824,122846 -k1,17385:8433079,20012333:-2468537 -) -(1,17385:8433079,20012333:2468537,452978,122846 -k1,17385:8433079,20012333:3277 -h1,17385:10898339,20012333:0,411205,112570 -) -k1,17385:11195284,20012333:293668 -k1,17385:13617560,20012333:293667 -k1,17385:17365631,20012333:293668 -k1,17385:18287133,20012333:293667 -k1,17385:19784041,20012333:293667 -k1,17385:21618460,20012333:293668 -k1,17385:23656040,20012333:293667 -k1,17385:27087571,20012333:293667 -k1,17385:28315782,20012333:293668 -k1,17385:29225487,20012333:293667 -k1,17385:30538240,20012333:293668 -k1,17385:31931601,20012333:293667 -k1,17386:32583029,20012333:0 -) -(1,17386:6630773,20853821:25952256,513147,134348 -(1,17385:6630773,20853821:0,452978,122846 -r1,17440:9451022,20853821:2820249,575824,122846 -k1,17385:6630773,20853821:-2820249 -) -(1,17385:6630773,20853821:2820249,452978,122846 -k1,17385:6630773,20853821:3277 -h1,17385:9447745,20853821:0,411205,112570 -) -k1,17385:9768671,20853821:143979 -k1,17385:10378611,20853821:143979 -k1,17385:13102087,20853821:143979 -k1,17385:14237626,20853821:143979 -k1,17385:17862222,20853821:143979 -k1,17385:18767729,20853821:143979 -k1,17385:22314337,20853821:143979 -k1,17385:24663603,20853821:143979 -k1,17385:25459010,20853821:143979 -k1,17385:28795903,20853821:143979 -k1,17385:31001645,20853821:143979 -k1,17386:32583029,20853821:0 -) -(1,17386:6630773,21695309:25952256,513147,134348 -g1,17385:7820251,21695309 -g1,17385:8477577,21695309 -g1,17385:11306766,21695309 -g1,17385:12157423,21695309 -g1,17385:13852839,21695309 -g1,17385:15071153,21695309 -g1,17385:16923855,21695309 -g1,17385:18400381,21695309 -g1,17385:19285772,21695309 -k1,17386:32583029,21695309:10808200 -g1,17386:32583029,21695309 -) -v1,17388:6630773,22676059:0,393216,0 -(1,17394:6630773,24323511:25952256,2040668,196608 -g1,17394:6630773,24323511 -g1,17394:6630773,24323511 -g1,17394:6434165,24323511 -(1,17394:6434165,24323511:0,2040668,196608 -r1,17440:32779637,24323511:26345472,2237276,196608 -k1,17394:6434165,24323511:-26345472 -) -(1,17394:6434165,24323511:26345472,2040668,196608 -[1,17394:6630773,24323511:25952256,1844060,0 -(1,17390:6630773,22883677:25952256,404226,107478 -(1,17389:6630773,22883677:0,0,0 -g1,17389:6630773,22883677 -g1,17389:6630773,22883677 -g1,17389:6303093,22883677 -(1,17389:6303093,22883677:0,0,0 -) -g1,17389:6630773,22883677 -) -k1,17390:6630773,22883677:0 -g1,17390:9476084,22883677 -h1,17390:9792230,22883677:0,0,0 -k1,17390:32583030,22883677:22790800 -g1,17390:32583030,22883677 -) -(1,17391:6630773,23549855:25952256,404226,107478 -h1,17391:6630773,23549855:0,0,0 -g1,17391:6946919,23549855 -g1,17391:7263065,23549855 -g1,17391:12321397,23549855 -g1,17391:12953689,23549855 -k1,17391:12953689,23549855:0 -h1,17391:15166709,23549855:0,0,0 -k1,17391:32583029,23549855:17416320 -g1,17391:32583029,23549855 -) -(1,17392:6630773,24216033:25952256,404226,107478 -h1,17392:6630773,24216033:0,0,0 -g1,17392:6946919,24216033 -g1,17392:7263065,24216033 -g1,17392:7579211,24216033 -g1,17392:7895357,24216033 -g1,17392:8211503,24216033 -g1,17392:8527649,24216033 -g1,17392:8843795,24216033 -g1,17392:9159941,24216033 -g1,17392:9476087,24216033 -g1,17392:9792233,24216033 -g1,17392:10108379,24216033 -g1,17392:10424525,24216033 -g1,17392:10740671,24216033 -g1,17392:13269837,24216033 -g1,17392:13902129,24216033 -g1,17392:15799004,24216033 -g1,17392:16431296,24216033 -g1,17392:18328171,24216033 -g1,17392:18960463,24216033 -g1,17392:19592755,24216033 -h1,17392:21173483,24216033:0,0,0 -k1,17392:32583029,24216033:11409546 -g1,17392:32583029,24216033 -) -] -) -g1,17394:32583029,24323511 -g1,17394:6630773,24323511 -g1,17394:6630773,24323511 -g1,17394:32583029,24323511 -g1,17394:32583029,24323511 -) -h1,17394:6630773,24520119:0,0,0 -v1,17398:6630773,25990751:0,393216,0 -(1,17437:6630773,45706769:25952256,20109234,0 +g1,17437:6630773,4812305 +k1,17437:21350816,4812305:13524666 +g1,17437:21999622,4812305 +g1,17437:25611966,4812305 +g1,17437:28956923,4812305 +g1,17437:29772190,4812305 +) +) +] +[1,17437:6630773,45706769:25952256,40108032,0 +(1,17437:6630773,45706769:25952256,40108032,0 +(1,17437:6630773,45706769:0,0,0 g1,17437:6630773,45706769 -g1,17437:6303093,45706769 -r1,17440:6401397,45706769:98304,20109234,0 -g1,17437:6600626,45706769 -g1,17437:6797234,45706769 -[1,17437:6797234,45706769:25785795,20109234,0 -(1,17400:6797234,26352824:25785795,755289,196608 -(1,17398:6797234,26352824:0,755289,196608 -r1,17440:8134168,26352824:1336934,951897,196608 -k1,17398:6797234,26352824:-1336934 -) -(1,17398:6797234,26352824:1336934,755289,196608 -) -k1,17398:8328646,26352824:194478 -k1,17398:8656326,26352824:327680 -k1,17398:10047491,26352824:194478 -k1,17398:11414408,26352824:194478 -k1,17398:14600605,26352824:194478 -k1,17398:16455765,26352824:194478 -k1,17398:17669328,26352824:194478 -k1,17398:19036246,26352824:194479 -k1,17398:20832424,26352824:194478 -k1,17398:24370549,26352824:194478 -k1,17398:26078253,26352824:194478 -k1,17398:28103807,26352824:194478 -k1,17398:29996323,26352824:194478 -k1,17398:32583029,26352824:0 -) -(1,17400:6797234,27194312:25785795,505283,134348 -k1,17398:7669136,27194312:259140 -k1,17398:8947361,27194312:259140 -k1,17398:11626746,27194312:259140 -k1,17398:12568771,27194312:259140 -k1,17398:15085626,27194312:259140 -k1,17398:17469444,27194312:259141 -k1,17398:20063632,27194312:259140 -k1,17398:22155159,27194312:259140 -k1,17398:23405859,27194312:259140 -k1,17398:25366969,27194312:259140 -k1,17398:29446858,27194312:259140 -k1,17398:31591469,27194312:259140 -k1,17398:32583029,27194312:0 -) -(1,17400:6797234,28035800:25785795,513147,134348 -k1,17398:8607994,28035800:209060 -k1,17398:10794275,28035800:209060 -k1,17398:12701373,28035800:209060 -k1,17398:15168147,28035800:209059 -k1,17398:18063528,28035800:209060 -k1,17398:20607636,28035800:209060 -k1,17398:21499581,28035800:209060 -k1,17398:22324679,28035800:209060 -k1,17398:25229235,28035800:209060 -k1,17398:29024424,28035800:209059 -k1,17398:30187033,28035800:209060 -k1,17398:31386342,28035800:209060 -k1,17399:32583029,28035800:0 -) -(1,17400:6797234,28877288:25785795,513147,134348 -k1,17399:9276579,28877288:213765 -k1,17399:12297906,28877288:213765 -k1,17399:13615952,28877288:213764 -k1,17399:15115533,28877288:213765 -k1,17399:16077064,28877288:213765 -k1,17399:18256254,28877288:213765 -k1,17399:20884364,28877288:213764 -k1,17399:22492080,28877288:213765 -k1,17399:23724930,28877288:213765 -(1,17399:23724930,28877288:0,414482,115847 -r1,17440:24083196,28877288:358266,530329,115847 -k1,17399:23724930,28877288:-358266 -) -(1,17399:23724930,28877288:358266,414482,115847 -k1,17399:23724930,28877288:3277 -h1,17399:24079919,28877288:0,411205,112570 -) -k1,17399:24296961,28877288:213765 -k1,17399:27431009,28877288:213764 -k1,17399:29971957,28877288:213765 -k1,17399:30845014,28877288:213765 -k1,17399:32583029,28877288:0 -) -(1,17400:6797234,29718776:25785795,505283,134348 -g1,17399:9201750,29718776 -g1,17399:10087141,29718776 -g1,17399:11057073,29718776 -g1,17399:14328630,29718776 -g1,17399:15179287,29718776 -(1,17399:15179287,29718776:0,452978,122846 -r1,17440:17999536,29718776:2820249,575824,122846 -k1,17399:15179287,29718776:-2820249 -) -(1,17399:15179287,29718776:2820249,452978,122846 -k1,17399:15179287,29718776:3277 -h1,17399:17996259,29718776:0,411205,112570 -) -k1,17400:32583029,29718776:14409823 -g1,17400:32583029,29718776 -) -v1,17402:6797234,30680654:0,393216,0 -(1,17408:6797234,32328106:25785795,2040668,196608 -g1,17408:6797234,32328106 -g1,17408:6797234,32328106 -g1,17408:6600626,32328106 -(1,17408:6600626,32328106:0,2040668,196608 -r1,17440:32779637,32328106:26179011,2237276,196608 -k1,17408:6600625,32328106:-26179012 -) -(1,17408:6600626,32328106:26179011,2040668,196608 -[1,17408:6797234,32328106:25785795,1844060,0 -(1,17404:6797234,30888272:25785795,404226,107478 -(1,17403:6797234,30888272:0,0,0 -g1,17403:6797234,30888272 -g1,17403:6797234,30888272 -g1,17403:6469554,30888272 -(1,17403:6469554,30888272:0,0,0 -) -g1,17403:6797234,30888272 -) -k1,17404:6797234,30888272:0 -g1,17404:10590983,30888272 -g1,17404:11223275,30888272 -g1,17404:13752441,30888272 -h1,17404:14068587,30888272:0,0,0 -k1,17404:32583029,30888272:18514442 -g1,17404:32583029,30888272 -) -(1,17405:6797234,31554450:25785795,404226,107478 -h1,17405:6797234,31554450:0,0,0 -g1,17405:7113380,31554450 -g1,17405:7429526,31554450 -g1,17405:9326401,31554450 -g1,17405:9958693,31554450 -g1,17405:11855568,31554450 -g1,17405:12487860,31554450 -g1,17405:13120152,31554450 -g1,17405:14700881,31554450 -h1,17405:15017027,31554450:0,0,0 -k1,17405:32583029,31554450:17566002 -g1,17405:32583029,31554450 -) -(1,17406:6797234,32220628:25785795,404226,107478 -h1,17406:6797234,32220628:0,0,0 -g1,17406:7113380,32220628 -g1,17406:7429526,32220628 -k1,17406:7429526,32220628:0 -h1,17406:11223274,32220628:0,0,0 -k1,17406:32583030,32220628:21359756 -g1,17406:32583030,32220628 -) -] -) -g1,17408:32583029,32328106 -g1,17408:6797234,32328106 -g1,17408:6797234,32328106 -g1,17408:32583029,32328106 -g1,17408:32583029,32328106 -) -h1,17408:6797234,32524714:0,0,0 -(1,17412:6797234,33661903:25785795,513147,134348 -h1,17411:6797234,33661903:983040,0,0 -k1,17411:8442319,33661903:192152 -k1,17411:9165967,33661903:192151 -k1,17411:10643935,33661903:192152 -k1,17411:13466046,33661903:192151 -k1,17411:14309626,33661903:192152 -k1,17411:15976992,33661903:192151 -k1,17411:16525004,33661903:192152 -k1,17411:18982735,33661903:192151 -k1,17411:21982449,33661903:192152 -k1,17411:23122251,33661903:192151 -k1,17411:24333488,33661903:192152 -k1,17411:26408488,33661903:192151 -k1,17411:28051607,33661903:192152 -k1,17411:29315927,33661903:192151 -k1,17411:30317449,33661903:192152 -k1,17411:32583029,33661903:0 -) -(1,17412:6797234,34503391:25785795,505283,7863 -k1,17412:32583028,34503391:24222760 -g1,17412:32583028,34503391 -) -v1,17414:6797234,35465269:0,393216,0 -(1,17420:6797234,37112721:25785795,2040668,196608 -g1,17420:6797234,37112721 -g1,17420:6797234,37112721 -g1,17420:6600626,37112721 -(1,17420:6600626,37112721:0,2040668,196608 -r1,17440:32779637,37112721:26179011,2237276,196608 -k1,17420:6600625,37112721:-26179012 -) -(1,17420:6600626,37112721:26179011,2040668,196608 -[1,17420:6797234,37112721:25785795,1844060,0 -(1,17416:6797234,35672887:25785795,404226,107478 -(1,17415:6797234,35672887:0,0,0 -g1,17415:6797234,35672887 -g1,17415:6797234,35672887 -g1,17415:6469554,35672887 -(1,17415:6469554,35672887:0,0,0 -) -g1,17415:6797234,35672887 -) -k1,17416:6797234,35672887:0 -g1,17416:9642545,35672887 -h1,17416:9958691,35672887:0,0,0 -k1,17416:32583029,35672887:22624338 -g1,17416:32583029,35672887 -) -(1,17417:6797234,36339065:25785795,404226,107478 -h1,17417:6797234,36339065:0,0,0 -g1,17417:7113380,36339065 -g1,17417:7429526,36339065 -g1,17417:9326401,36339065 -g1,17417:9958693,36339065 -g1,17417:11855568,36339065 -g1,17417:12487860,36339065 -g1,17417:13120152,36339065 -g1,17417:14700881,36339065 -h1,17417:15017027,36339065:0,0,0 -k1,17417:32583029,36339065:17566002 -g1,17417:32583029,36339065 -) -(1,17418:6797234,37005243:25785795,404226,107478 -h1,17418:6797234,37005243:0,0,0 -g1,17418:7113380,37005243 -g1,17418:7429526,37005243 -g1,17418:12487858,37005243 -g1,17418:13120150,37005243 -h1,17418:15333170,37005243:0,0,0 -k1,17418:32583030,37005243:17249860 -g1,17418:32583030,37005243 -) -] -) -g1,17420:32583029,37112721 -g1,17420:6797234,37112721 -g1,17420:6797234,37112721 -g1,17420:32583029,37112721 -g1,17420:32583029,37112721 -) -h1,17420:6797234,37309329:0,0,0 -(1,17424:6797234,38446517:25785795,513147,134348 -h1,17423:6797234,38446517:983040,0,0 -k1,17423:8932790,38446517:198967 -k1,17423:10236039,38446517:198967 -k1,17423:11825681,38446517:198968 -k1,17423:13043733,38446517:198967 -k1,17423:16050262,38446517:198967 -k1,17423:16900657,38446517:198967 -k1,17423:17455484,38446517:198967 -k1,17423:20165792,38446517:198968 -k1,17423:21556204,38446517:198967 -k1,17423:22952514,38446517:198967 -k1,17423:24170566,38446517:198967 -k1,17423:26880873,38446517:198967 -k1,17423:29407024,38446517:198968 -k1,17423:30265283,38446517:198967 -k1,17423:31483335,38446517:198967 -k1,17423:32583029,38446517:0 -) -(1,17424:6797234,39288005:25785795,513147,126483 -g1,17423:7647891,39288005 -(1,17423:7647891,39288005:0,452978,115847 -r1,17440:9413004,39288005:1765113,568825,115847 -k1,17423:7647891,39288005:-1765113 -) -(1,17423:7647891,39288005:1765113,452978,115847 -k1,17423:7647891,39288005:3277 -h1,17423:9409727,39288005:0,411205,112570 -) -g1,17423:9612233,39288005 -g1,17423:10427500,39288005 -g1,17423:12078351,39288005 -g1,17423:12936872,39288005 -g1,17423:14155186,39288005 -g1,17423:17346134,39288005 -g1,17423:19574358,39288005 -g1,17423:20432879,39288005 -g1,17423:22517579,39288005 -g1,17423:23585160,39288005 -g1,17423:25445071,39288005 -g1,17423:27019901,39288005 -g1,17423:28238215,39288005 -g1,17423:29743577,39288005 -k1,17424:32583029,39288005:1509071 -g1,17424:32583029,39288005 -) -v1,17426:6797234,40249884:0,393216,0 -(1,17433:6797234,42563514:25785795,2706846,196608 -g1,17433:6797234,42563514 -g1,17433:6797234,42563514 -g1,17433:6600626,42563514 -(1,17433:6600626,42563514:0,2706846,196608 -r1,17440:32779637,42563514:26179011,2903454,196608 -k1,17433:6600625,42563514:-26179012 -) -(1,17433:6600626,42563514:26179011,2706846,196608 -[1,17433:6797234,42563514:25785795,2510238,0 -(1,17428:6797234,40457502:25785795,404226,107478 -(1,17427:6797234,40457502:0,0,0 -g1,17427:6797234,40457502 -g1,17427:6797234,40457502 -g1,17427:6469554,40457502 -(1,17427:6469554,40457502:0,0,0 -) -g1,17427:6797234,40457502 -) -g1,17428:10274837,40457502 -g1,17428:11223275,40457502 -g1,17428:13120150,40457502 -g1,17428:13752442,40457502 -g1,17428:15649317,40457502 -g1,17428:16281609,40457502 -g1,17428:16913901,40457502 -h1,17428:18178484,40457502:0,0,0 -k1,17428:32583029,40457502:14404545 -g1,17428:32583029,40457502 -) -(1,17429:6797234,41123680:25785795,404226,107478 -h1,17429:6797234,41123680:0,0,0 -g1,17429:10590983,41123680 -g1,17429:11223275,41123680 -k1,17429:11223275,41123680:0 -h1,17429:13436295,41123680:0,0,0 -k1,17429:32583029,41123680:19146734 -g1,17429:32583029,41123680 -) -(1,17430:6797234,41789858:25785795,404226,107478 -h1,17430:6797234,41789858:0,0,0 -g1,17430:7113380,41789858 -g1,17430:7429526,41789858 -g1,17430:7745672,41789858 -g1,17430:8061818,41789858 -g1,17430:8377964,41789858 -g1,17430:8694110,41789858 -g1,17430:9010256,41789858 -g1,17430:11539422,41789858 -g1,17430:12171714,41789858 -g1,17430:15965462,41789858 -h1,17430:16281608,41789858:0,0,0 -k1,17430:32583029,41789858:16301421 -g1,17430:32583029,41789858 -) -(1,17431:6797234,42456036:25785795,404226,107478 -h1,17431:6797234,42456036:0,0,0 -g1,17431:7113380,42456036 -g1,17431:7429526,42456036 -k1,17431:7429526,42456036:0 -h1,17431:11223274,42456036:0,0,0 -k1,17431:32583030,42456036:21359756 -g1,17431:32583030,42456036 -) -] -) -g1,17433:32583029,42563514 -g1,17433:6797234,42563514 -g1,17433:6797234,42563514 -g1,17433:32583029,42563514 -g1,17433:32583029,42563514 -) -h1,17433:6797234,42760122:0,0,0 -(1,17437:6797234,43897310:25785795,505283,134348 -h1,17436:6797234,43897310:983040,0,0 -k1,17436:8620267,43897310:212158 -k1,17436:9598541,43897310:212158 -k1,17436:11507425,43897310:212157 -k1,17436:14884972,43897310:212158 -k1,17436:16116215,43897310:212158 -k1,17436:17605670,43897310:212158 -k1,17436:20375698,43897310:212158 -k1,17436:24078959,43897310:212158 -k1,17436:25564481,43897310:212157 -k1,17436:28232928,43897310:212158 -k1,17436:31379788,43897310:212158 -k1,17436:32583029,43897310:0 -) -(1,17437:6797234,44738798:25785795,513147,134348 -k1,17436:10027151,44738798:255893 -k1,17436:10899081,44738798:255892 -k1,17436:12174059,44738798:255893 -k1,17436:15332542,44738798:255893 -k1,17436:17774060,44738798:255892 -k1,17436:18716115,44738798:255893 -k1,17436:22101352,44738798:255893 -k1,17436:22973283,44738798:255893 -k1,17436:25507862,44738798:255892 -h1,17436:27050580,44738798:0,0,0 -k1,17436:27306473,44738798:255893 -k1,17436:28371736,44738798:255893 -h1,17436:29567113,44738798:0,0,0 -k1,17436:29823005,44738798:255892 -k1,17436:32124932,44738798:255893 -k1,17436:32583029,44738798:0 -) -(1,17437:6797234,45580286:25785795,513147,126483 -g1,17436:9626423,45580286 -g1,17436:10773303,45580286 -g1,17436:12860624,45580286 -g1,17436:13711281,45580286 -g1,17436:16138079,45580286 -g1,17436:20344179,45580286 -g1,17436:21202700,45580286 -g1,17436:22853551,45580286 -g1,17436:24754750,45580286 -g1,17436:26652017,45580286 -k1,17437:32583029,45580286:3458994 -g1,17437:32583029,45580286 +) +[1,17437:6630773,45706769:25952256,40108032,0 +(1,17379:6630773,6254097:25952256,513147,126483 +k1,17378:8492323,6254097:208077 +k1,17378:10686796,6254097:208077 +k1,17378:11581035,6254097:208077 +k1,17378:13302337,6254097:208076 +k1,17378:14126452,6254097:208077 +k1,17378:15353614,6254097:208077 +k1,17378:18316169,6254097:208077 +k1,17378:21359333,6254097:208077 +k1,17378:22639579,6254097:208077 +k1,17378:24241607,6254097:208077 +k1,17378:24805543,6254097:208076 +k1,17378:27775963,6254097:208077 +k1,17378:29417968,6254097:208077 +k1,17378:31314252,6254097:208077 +k1,17378:32583029,6254097:0 +) +(1,17379:6630773,7119177:25952256,513147,7863 +g1,17378:7777653,7119177 +k1,17379:32583030,7119177:23405528 +g1,17379:32583030,7119177 +) +v1,17381:6630773,7804032:0,393216,0 +(1,17388:6630773,10192674:25952256,2781858,196608 +g1,17388:6630773,10192674 +g1,17388:6630773,10192674 +g1,17388:6434165,10192674 +(1,17388:6434165,10192674:0,2781858,196608 +r1,17437:32779637,10192674:26345472,2978466,196608 +k1,17388:6434165,10192674:-26345472 +) +(1,17388:6434165,10192674:26345472,2781858,196608 +[1,17388:6630773,10192674:25952256,2585250,0 +(1,17383:6630773,8031863:25952256,424439,112852 +(1,17382:6630773,8031863:0,0,0 +g1,17382:6630773,8031863 +g1,17382:6630773,8031863 +g1,17382:6303093,8031863 +(1,17382:6303093,8031863:0,0,0 +) +g1,17382:6630773,8031863 +) +k1,17383:6630773,8031863:0 +g1,17383:10614221,8031863 +g1,17383:11278129,8031863 +k1,17383:11278129,8031863:0 +h1,17383:13601807,8031863:0,0,0 +k1,17383:32583029,8031863:18981222 +g1,17383:32583029,8031863 +) +(1,17384:6630773,8716718:25952256,424439,112852 +h1,17384:6630773,8716718:0,0,0 +g1,17384:6962727,8716718 +g1,17384:7294681,8716718 +g1,17384:7626635,8716718 +g1,17384:7958589,8716718 +g1,17384:8290543,8716718 +g1,17384:8622497,8716718 +g1,17384:8954451,8716718 +g1,17384:10946175,8716718 +g1,17384:11610083,8716718 +g1,17384:13601807,8716718 +g1,17384:14265715,8716718 +g1,17384:14929623,8716718 +g1,17384:16921347,8716718 +h1,17384:17253301,8716718:0,0,0 +k1,17384:32583029,8716718:15329728 +g1,17384:32583029,8716718 +) +(1,17385:6630773,9401573:25952256,424439,112852 +h1,17385:6630773,9401573:0,0,0 +g1,17385:6962727,9401573 +g1,17385:7294681,9401573 +g1,17385:11610082,9401573 +h1,17385:11942036,9401573:0,0,0 +k1,17385:32583028,9401573:20640992 +g1,17385:32583028,9401573 +) +(1,17386:6630773,10086428:25952256,431045,106246 +h1,17386:6630773,10086428:0,0,0 +g1,17386:6962727,10086428 +g1,17386:7294681,10086428 +g1,17386:15261575,10086428 +g1,17386:15925483,10086428 +g1,17386:17253299,10086428 +g1,17386:21236746,10086428 +g1,17386:21900654,10086428 +h1,17386:24556286,10086428:0,0,0 +k1,17386:32583029,10086428:8026743 +g1,17386:32583029,10086428 +) +] +) +g1,17388:32583029,10192674 +g1,17388:6630773,10192674 +g1,17388:6630773,10192674 +g1,17388:32583029,10192674 +g1,17388:32583029,10192674 +) +h1,17388:6630773,10389282:0,0,0 +(1,17391:6630773,19538484:25952256,9083666,0 +k1,17391:10523651,19538484:3892878 +h1,17390:10523651,19538484:0,0,0 +(1,17390:10523651,19538484:18166500,9083666,0 +(1,17390:10523651,19538484:18167376,9083688,0 +(1,17390:10523651,19538484:18167376,9083688,0 +(1,17390:10523651,19538484:0,9083688,0 +(1,17390:10523651,19538484:0,14208860,0 +(1,17390:10523651,19538484:28417720,14208860,0 +) +k1,17390:10523651,19538484:-28417720 +) +) +g1,17390:28691027,19538484 +) +) +) +g1,17391:28690151,19538484 +k1,17391:32583029,19538484:3892878 +) +(1,17398:6630773,20403564:25952256,513147,126483 +h1,17397:6630773,20403564:983040,0,0 +k1,17397:9038172,20403564:227672 +k1,17397:11383312,20403564:227672 +k1,17397:12270276,20403564:227672 +k1,17397:13828329,20403564:227672 +k1,17397:14707429,20403564:227672 +k1,17397:15869644,20403564:227672 +k1,17397:17349709,20403564:227672 +k1,17397:19595234,20403564:227671 +k1,17397:21007142,20403564:227672 +k1,17397:24179347,20403564:227672 +k1,17397:25598464,20403564:227672 +k1,17397:27010372,20403564:227672 +k1,17397:29082227,20403564:227672 +k1,17397:30442361,20403564:227672 +k1,17397:31417799,20403564:227672 +k1,17398:32583029,20403564:0 +) +(1,17398:6630773,21268644:25952256,513147,126483 +k1,17397:9021713,21268644:213834 +k1,17397:9851585,21268644:213834 +k1,17397:11925985,21268644:213833 +k1,17397:12755857,21268644:213834 +k1,17397:15248378,21268644:213834 +h1,17397:16218966,21268644:0,0,0 +k1,17397:16606470,21268644:213834 +k1,17397:20365146,21268644:213834 +k1,17397:21447331,21268644:213833 +k1,17397:22793627,21268644:213834 +k1,17397:24099946,21268644:213834 +k1,17397:27009276,21268644:213834 +(1,17397:27009276,21268644:0,452978,115847 +r1,17437:29126101,21268644:2116825,568825,115847 +k1,17397:27009276,21268644:-2116825 +) +(1,17397:27009276,21268644:2116825,452978,115847 +k1,17397:27009276,21268644:3277 +h1,17397:29122824,21268644:0,411205,112570 +) +k1,17397:29339934,21268644:213833 +k1,17397:31439239,21268644:213834 +k1,17397:32184570,21268644:213834 +k1,17397:32583029,21268644:0 +) +(1,17398:6630773,22133724:25952256,513147,134348 +k1,17397:10689885,22133724:239674 +k1,17397:13528063,22133724:239675 +k1,17397:16439640,22133724:239674 +k1,17397:17424459,22133724:239675 +k1,17397:18315561,22133724:239674 +k1,17397:20356165,22133724:239675 +k1,17397:21530382,22133724:239674 +k1,17397:22789141,22133724:239674 +k1,17397:24296282,22133724:239675 +k1,17397:25727401,22133724:239674 +k1,17397:28380112,22133724:239675 +k1,17397:29279078,22133724:239674 +k1,17397:29874613,22133724:239675 +k1,17397:31391584,22133724:239674 +k1,17397:32583029,22133724:0 +) +(1,17398:6630773,22998804:25952256,513147,126483 +k1,17397:7531534,22998804:249333 +k1,17397:10079214,22998804:249332 +k1,17397:11347632,22998804:249333 +k1,17397:13862545,22998804:249333 +(1,17397:13862545,22998804:0,414482,115847 +r1,17437:15275946,22998804:1413401,530329,115847 +k1,17397:13862545,22998804:-1413401 +) +(1,17397:13862545,22998804:1413401,414482,115847 +k1,17397:13862545,22998804:3277 +h1,17397:15272669,22998804:0,411205,112570 +) +k1,17397:15525278,22998804:249332 +k1,17397:16433903,22998804:249333 +k1,17397:18759417,22998804:249333 +k1,17397:19624787,22998804:249332 +k1,17397:21077361,22998804:249333 +k1,17397:22867444,22998804:249332 +k1,17397:24860690,22998804:249333 +k1,17397:26623249,22998804:249333 +k1,17397:27820232,22998804:249332 +k1,17397:29321958,22998804:249333 +k1,17397:32583029,22998804:0 +) +(1,17398:6630773,23863884:25952256,513147,134348 +k1,17397:9089960,23863884:193607 +k1,17397:10302653,23863884:193608 +(1,17397:10302653,23863884:0,414482,115847 +r1,17437:11716054,23863884:1413401,530329,115847 +k1,17397:10302653,23863884:-1413401 +) +(1,17397:10302653,23863884:1413401,414482,115847 +k1,17397:10302653,23863884:3277 +h1,17397:11712777,23863884:0,411205,112570 +) +k1,17397:11909661,23863884:193607 +k1,17397:12762560,23863884:193607 +k1,17397:14858677,23863884:193607 +k1,17397:15583782,23863884:193608 +k1,17397:16711932,23863884:193607 +k1,17397:17556967,23863884:193607 +k1,17397:18769659,23863884:193607 +k1,17397:20701282,23863884:193608 +k1,17397:21554181,23863884:193607 +k1,17397:22766873,23863884:193607 +k1,17397:25545875,23863884:193607 +k1,17397:28424493,23863884:193608 +k1,17397:30401335,23863884:193607 +k1,17397:32583029,23863884:0 +) +(1,17398:6630773,24728964:25952256,513147,126483 +k1,17397:7838396,24728964:188538 +(1,17397:7838396,24728964:0,414482,115847 +r1,17437:9251797,24728964:1413401,530329,115847 +k1,17397:7838396,24728964:-1413401 +) +(1,17397:7838396,24728964:1413401,414482,115847 +k1,17397:7838396,24728964:3277 +h1,17397:9248520,24728964:0,411205,112570 +) +k1,17397:9440336,24728964:188539 +k1,17397:10288166,24728964:188538 +k1,17397:12379215,24728964:188539 +k1,17397:13961704,24728964:188538 +(1,17397:13961704,24728964:0,452978,115847 +r1,17437:16078529,24728964:2116825,568825,115847 +k1,17397:13961704,24728964:-2116825 +) +(1,17397:13961704,24728964:2116825,452978,115847 +k1,17397:13961704,24728964:3277 +h1,17397:16075252,24728964:0,411205,112570 +) +k1,17397:16440738,24728964:188539 +k1,17397:17497628,24728964:188538 +k1,17397:18778652,24728964:188539 +k1,17397:19653352,24728964:188538 +k1,17397:23122623,24728964:188539 +k1,17397:25379477,24728964:188538 +k1,17397:26184054,24728964:188539 +k1,17397:27391677,24728964:188538 +k1,17397:30275712,24728964:188539 +k1,17397:31563944,24728964:188538 +k1,17397:32583029,24728964:0 +) +(1,17398:6630773,25594044:25952256,513147,134348 +k1,17397:8844817,25594044:145728 +k1,17397:9649837,25594044:145728 +k1,17397:12970128,25594044:145727 +k1,17397:14307301,25594044:145728 +k1,17397:15890234,25594044:145728 +k1,17397:16722124,25594044:145728 +k1,17397:17638555,25594044:145728 +k1,17397:20856610,25594044:145727 +k1,17397:21358198,25594044:145728 +k1,17397:24478605,25594044:145728 +k1,17397:26663813,25594044:145728 +k1,17397:27492426,25594044:145728 +k1,17397:28408856,25594044:145727 +k1,17397:28969374,25594044:145675 +k1,17397:32583029,25594044:0 +) +(1,17398:6630773,26459124:25952256,513147,126483 +k1,17397:8366153,26459124:247057 +k1,17397:9481561,26459124:247056 +k1,17397:10821103,26459124:247057 +(1,17397:10821103,26459124:0,414482,115847 +r1,17437:11179369,26459124:358266,530329,115847 +k1,17397:10821103,26459124:-358266 +) +(1,17397:10821103,26459124:358266,414482,115847 +k1,17397:10821103,26459124:3277 +h1,17397:11176092,26459124:0,411205,112570 +) +k1,17397:11426426,26459124:247057 +k1,17397:12864927,26459124:247056 +(1,17397:12864927,26459124:0,414482,115847 +r1,17437:13223193,26459124:358266,530329,115847 +k1,17397:12864927,26459124:-358266 +) +(1,17397:12864927,26459124:358266,414482,115847 +k1,17397:12864927,26459124:3277 +h1,17397:13219916,26459124:0,411205,112570 +) +k1,17397:13643920,26459124:247057 +k1,17397:14910062,26459124:247057 +k1,17397:17225435,26459124:247057 +k1,17397:18131783,26459124:247056 +k1,17397:19397925,26459124:247057 +k1,17397:20817421,26459124:247057 +k1,17397:24128941,26459124:247056 +k1,17397:25027426,26459124:247057 +k1,17397:27159954,26459124:247057 +k1,17397:28275362,26459124:247056 +k1,17397:29997634,26459124:247057 +k1,17397:32583029,26459124:0 +) +(1,17398:6630773,27324204:25952256,505283,122846 +g1,17397:8002441,27324204 +g1,17397:11043311,27324204 +g1,17397:11858578,27324204 +(1,17397:11858578,27324204:0,452978,115847 +r1,17437:13271979,27324204:1413401,568825,115847 +k1,17397:11858578,27324204:-1413401 +) +(1,17397:11858578,27324204:1413401,452978,115847 +k1,17397:11858578,27324204:3277 +h1,17397:13268702,27324204:0,411205,112570 +) +g1,17397:13644878,27324204 +(1,17397:13644878,27324204:0,452978,115847 +r1,17437:15058279,27324204:1413401,568825,115847 +k1,17397:13644878,27324204:-1413401 +) +(1,17397:13644878,27324204:1413401,452978,115847 +k1,17397:13644878,27324204:3277 +h1,17397:15055002,27324204:0,411205,112570 +) +g1,17397:15257508,27324204 +g1,17397:16648182,27324204 +(1,17397:16648182,27324204:0,414482,122846 +r1,17437:17709871,27324204:1061689,537328,122846 +k1,17397:16648182,27324204:-1061689 +) +(1,17397:16648182,27324204:1061689,414482,122846 +k1,17397:16648182,27324204:3277 +h1,17397:17706594,27324204:0,411205,112570 +) +k1,17398:32583029,27324204:14699488 +g1,17398:32583029,27324204 +) +v1,17400:6630773,28009059:0,393216,0 +(1,17410:6630773,32458872:25952256,4843029,196608 +g1,17410:6630773,32458872 +g1,17410:6630773,32458872 +g1,17410:6434165,32458872 +(1,17410:6434165,32458872:0,4843029,196608 +r1,17437:32779637,32458872:26345472,5039637,196608 +k1,17410:6434165,32458872:-26345472 +) +(1,17410:6434165,32458872:26345472,4843029,196608 +[1,17410:6630773,32458872:25952256,4646421,0 +(1,17402:6630773,28236890:25952256,424439,112852 +(1,17401:6630773,28236890:0,0,0 +g1,17401:6630773,28236890 +g1,17401:6630773,28236890 +g1,17401:6303093,28236890 +(1,17401:6303093,28236890:0,0,0 +) +g1,17401:6630773,28236890 +) +k1,17402:6630773,28236890:0 +g1,17402:10614221,28236890 +g1,17402:11278129,28236890 +k1,17402:11278129,28236890:0 +h1,17402:13601807,28236890:0,0,0 +k1,17402:32583029,28236890:18981222 +g1,17402:32583029,28236890 +) +(1,17403:6630773,28921745:25952256,424439,112852 +h1,17403:6630773,28921745:0,0,0 +g1,17403:6962727,28921745 +g1,17403:7294681,28921745 +g1,17403:7626635,28921745 +g1,17403:7958589,28921745 +g1,17403:8290543,28921745 +g1,17403:8622497,28921745 +g1,17403:8954451,28921745 +g1,17403:10946175,28921745 +g1,17403:11610083,28921745 +g1,17403:13601807,28921745 +g1,17403:14265715,28921745 +g1,17403:14929623,28921745 +g1,17403:16921347,28921745 +h1,17403:17253301,28921745:0,0,0 +k1,17403:32583029,28921745:15329728 +g1,17403:32583029,28921745 +) +(1,17404:6630773,29606600:25952256,424439,112852 +h1,17404:6630773,29606600:0,0,0 +g1,17404:6962727,29606600 +g1,17404:7294681,29606600 +g1,17404:11610082,29606600 +h1,17404:11942036,29606600:0,0,0 +k1,17404:32583028,29606600:20640992 +g1,17404:32583028,29606600 +) +(1,17405:6630773,30291455:25952256,424439,112852 +h1,17405:6630773,30291455:0,0,0 +g1,17405:6962727,30291455 +g1,17405:7294681,30291455 +g1,17405:9618359,30291455 +g1,17405:10282267,30291455 +g1,17405:12937899,30291455 +g1,17405:17253300,30291455 +g1,17405:19576978,30291455 +k1,17405:19576978,30291455:0 +h1,17405:22564563,30291455:0,0,0 +k1,17405:32583029,30291455:10018466 +g1,17405:32583029,30291455 +) +(1,17406:6630773,30976310:25952256,431045,112852 +h1,17406:6630773,30976310:0,0,0 +g1,17406:6962727,30976310 +g1,17406:7294681,30976310 +g1,17406:7626635,30976310 +g1,17406:7958589,30976310 +g1,17406:8290543,30976310 +g1,17406:8622497,30976310 +g1,17406:8954451,30976310 +g1,17406:9618359,30976310 +g1,17406:10282267,30976310 +g1,17406:12273991,30976310 +g1,17406:13601807,30976310 +g1,17406:19908932,30976310 +g1,17406:21236748,30976310 +k1,17406:21236748,30976310:0 +h1,17406:24224333,30976310:0,0,0 +k1,17406:32583029,30976310:8358696 +g1,17406:32583029,30976310 +) +(1,17407:6630773,31661165:25952256,424439,86428 +h1,17407:6630773,31661165:0,0,0 +g1,17407:6962727,31661165 +g1,17407:7294681,31661165 +g1,17407:7626635,31661165 +g1,17407:7958589,31661165 +g1,17407:8290543,31661165 +g1,17407:8622497,31661165 +g1,17407:8954451,31661165 +g1,17407:10946175,31661165 +g1,17407:11610083,31661165 +g1,17407:13933761,31661165 +g1,17407:15925485,31661165 +g1,17407:17253301,31661165 +g1,17407:18913071,31661165 +k1,17407:18913071,31661165:0 +h1,17407:21236749,31661165:0,0,0 +k1,17407:32583029,31661165:11346280 +g1,17407:32583029,31661165 +) +(1,17408:6630773,32346020:25952256,424439,112852 +h1,17408:6630773,32346020:0,0,0 +g1,17408:6962727,32346020 +g1,17408:7294681,32346020 +g1,17408:7626635,32346020 +g1,17408:7958589,32346020 +g1,17408:8290543,32346020 +g1,17408:8622497,32346020 +g1,17408:8954451,32346020 +g1,17408:11942036,32346020 +g1,17408:12605944,32346020 +g1,17408:15593529,32346020 +g1,17408:17253299,32346020 +g1,17408:19245023,32346020 +g1,17408:21236747,32346020 +g1,17408:22232609,32346020 +h1,17408:25552148,32346020:0,0,0 +k1,17408:32583029,32346020:7030881 +g1,17408:32583029,32346020 +) +] +) +g1,17410:32583029,32458872 +g1,17410:6630773,32458872 +g1,17410:6630773,32458872 +g1,17410:32583029,32458872 +g1,17410:32583029,32458872 +) +h1,17410:6630773,32655480:0,0,0 +(1,17413:6630773,41804682:25952256,9083666,0 +k1,17413:10523651,41804682:3892878 +h1,17412:10523651,41804682:0,0,0 +(1,17412:10523651,41804682:18166500,9083666,0 +(1,17412:10523651,41804682:18167376,9083688,0 +(1,17412:10523651,41804682:18167376,9083688,0 +(1,17412:10523651,41804682:0,9083688,0 +(1,17412:10523651,41804682:0,14208860,0 +(1,17412:10523651,41804682:28417720,14208860,0 +) +k1,17412:10523651,41804682:-28417720 +) +) +g1,17412:28691027,41804682 +) +) +) +g1,17413:28690151,41804682 +k1,17413:32583029,41804682:3892878 +) +v1,17420:6630773,42669762:0,393216,0 +(1,17437:6630773,45706769:25952256,3430223,0 +g1,17437:6630773,45706769 +g1,17437:6237557,45706769 +r1,17437:6368629,45706769:131072,3430223,0 +g1,17437:6567858,45706769 +g1,17437:6764466,45706769 +[1,17437:6764466,45706769:25818563,3430223,0 +(1,17421:6764466,43084304:25818563,807758,219026 +(1,17420:6764466,43084304:0,807758,219026 +r1,17437:7908217,43084304:1143751,1026784,219026 +k1,17420:6764466,43084304:-1143751 +) +(1,17420:6764466,43084304:1143751,807758,219026 +) +k1,17420:8131931,43084304:223714 +k1,17420:8459611,43084304:327680 +k1,17420:9501215,43084304:223715 +k1,17420:12873934,43084304:223714 +k1,17420:13713687,43084304:223715 +k1,17420:14525914,43084304:223714 +k1,17420:16447666,43084304:223714 +k1,17420:17027241,43084304:223715 +k1,17420:18931298,43084304:223714 +k1,17420:19686509,43084304:223714 +k1,17420:22922914,43084304:223715 +k1,17420:25002608,43084304:223714 +k1,17420:25582183,43084304:223715 +k1,17420:27486240,43084304:223714 +k1,17420:29748124,43084304:223714 +k1,17420:30587877,43084304:223715 +k1,17420:31167451,43084304:223714 +k1,17421:32583029,43084304:0 +) +(1,17421:6764466,43949384:25818563,505283,134348 +k1,17420:8279284,43949384:206064 +k1,17420:9168233,43949384:206064 +k1,17420:9730157,43949384:206064 +k1,17420:11586417,43949384:206063 +k1,17420:14478802,43949384:206064 +k1,17420:17871226,43949384:206064 +k1,17420:21078184,43949384:206064 +k1,17420:21640108,43949384:206064 +k1,17420:24358167,43949384:206064 +k1,17420:26244574,43949384:206064 +k1,17420:27554919,43949384:206063 +k1,17420:28508749,43949384:206064 +k1,17420:30920100,43949384:206064 +k1,17420:31812326,43949384:206064 +k1,17420:32583029,43949384:0 +) +(1,17421:6764466,44814464:25818563,505283,134348 +k1,17420:9997313,44814464:160519 +k1,17420:10809261,44814464:160520 +k1,17420:11717546,44814464:160519 +k1,17420:14463461,44814464:160520 +k1,17420:15275408,44814464:160519 +k1,17420:16206631,44814464:160520 +k1,17420:19293987,44814464:160519 +k1,17420:20082342,44814464:160520 +k1,17420:21944831,44814464:160519 +k1,17420:24233960,44814464:160520 +k1,17420:25413564,44814464:160519 +k1,17420:27584729,44814464:160520 +k1,17420:28396676,44814464:160519 +k1,17420:29304962,44814464:160520 +k1,17420:31767761,44814464:160519 +k1,17420:32583029,44814464:0 +) +(1,17421:6764466,45679544:25818563,513147,126483 +k1,17420:8019890,45679544:189153 +k1,17420:9739309,45679544:189153 +k1,17420:10579891,45679544:189154 +k1,17420:11516810,45679544:189153 +k1,17420:13744133,45679544:189153 +k1,17420:14619448,45679544:189153 +k1,17420:17650242,45679544:189153 +k1,17420:18729374,45679544:189153 +k1,17420:21838812,45679544:189154 +k1,17420:22644003,45679544:189153 +k1,17420:23852241,45679544:189153 +k1,17420:25430757,45679544:189153 +k1,17420:27496206,45679544:189153 +k1,17420:29890647,45679544:189154 +k1,17420:30765962,45679544:189153 +k1,17420:31725818,45679544:189153 +k1,17421:32583029,45679544:0 ) ] g1,17437:32583029,45706769 ) -h1,17437:6630773,45706769:0,0,0 ] -(1,17440:32583029,45706769:0,0,0 -g1,17440:32583029,45706769 +(1,17437:32583029,45706769:0,0,0 +g1,17437:32583029,45706769 ) ) ] -(1,17440:6630773,47279633:25952256,0,0 -h1,17440:6630773,47279633:25952256,0,0 +(1,17437:6630773,47279633:25952256,0,0 +h1,17437:6630773,47279633:25952256,0,0 ) ] -(1,17440:4262630,4025873:0,0,0 -[1,17440:-473656,4025873:0,0,0 -(1,17440:-473656,-710413:0,0,0 -(1,17440:-473656,-710413:0,0,0 -g1,17440:-473656,-710413 +(1,17437:4262630,4025873:0,0,0 +[1,17437:-473656,4025873:0,0,0 +(1,17437:-473656,-710413:0,0,0 +(1,17437:-473656,-710413:0,0,0 +g1,17437:-473656,-710413 ) -g1,17440:-473656,-710413 +g1,17437:-473656,-710413 ) ] ) ] -!27452 -}303 -Input:2570:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2571:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2572:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2573:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2574:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2575:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2576:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2577:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!21577 +}285 Input:2578:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2579:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2580:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2581:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2582:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2583:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2584:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2585:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1516 -{304 +!576 +{286 [1,17477:4262630,47279633:28320399,43253760,0 (1,17477:4262630,4025873:0,0,0 [1,17477:-473656,4025873:0,0,0 @@ -299891,19 +296407,19 @@ g1,17477:3078558,4812305 [1,17477:3078558,4812305:0,0,0 (1,17477:3078558,2439708:0,1703936,0 k1,17477:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 r1,17477:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 r1,17477:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) @@ -299914,20 +296430,20 @@ g1,16770:29014430,1915420 (1,17477:3078558,2439708:0,1703936,0 g1,17477:29030814,2439708 g1,17477:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 r1,17477:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 r1,17477:37855564,2439708:1179648,16384,0 ) ) @@ -299937,19 +296453,19 @@ k1,17477:3078556,2439708:-34777008 [1,17477:3078558,4812305:0,0,0 (1,17477:3078558,49800853:0,16384,2228224 k1,17477:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 r1,17477:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 r1,17477:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) @@ -299960,20 +296476,20 @@ g1,16770:29014430,51504789 (1,17477:3078558,49800853:0,16384,2228224 g1,17477:29030814,49800853 g1,17477:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 r1,17477:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 r1,17477:37855564,49800853:1179648,16384,0 ) ) @@ -299996,955 +296512,664 @@ k1,17477:31387652,4812305:16401696 g1,17477:6630773,45706769 ) [1,17477:6630773,45706769:25952256,40108032,0 -(1,17440:6630773,6254097:25952256,513147,134348 -h1,17439:6630773,6254097:983040,0,0 -k1,17439:9026180,6254097:215680 -k1,17439:12314188,6254097:215680 -k1,17439:14735155,6254097:215680 -k1,17439:15602263,6254097:215680 -k1,17439:19098675,6254097:215680 -(1,17439:19098675,6254097:0,452978,115847 -r1,17477:20512076,6254097:1413401,568825,115847 -k1,17439:19098675,6254097:-1413401 -) -(1,17439:19098675,6254097:1413401,452978,115847 -k1,17439:19098675,6254097:3277 -h1,17439:20508799,6254097:0,411205,112570 -) -k1,17439:20727756,6254097:215680 -k1,17439:21602728,6254097:215680 -k1,17439:22174268,6254097:215680 -k1,17439:23947739,6254097:215680 -k1,17439:27032585,6254097:215680 -k1,17439:28352547,6254097:215680 -k1,17439:29315993,6254097:215680 -k1,17439:29887533,6254097:215680 -k1,17439:32583029,6254097:0 -) -(1,17440:6630773,7095585:25952256,513147,126483 -k1,17439:9155613,7095585:197657 -k1,17439:10012561,7095585:197656 -k1,17439:10566078,7095585:197657 -k1,17439:12153097,7095585:197656 -k1,17439:14227050,7095585:197657 -k1,17439:14890667,7095585:197656 -k1,17439:16107409,7095585:197657 -k1,17439:17582362,7095585:197656 -k1,17439:20482068,7095585:197657 -k1,17439:22945304,7095585:197656 -k1,17439:24705995,7095585:197657 -k1,17439:25531486,7095585:197656 -k1,17439:26932384,7095585:197657 -k1,17439:28670791,7095585:197656 -k1,17439:29887533,7095585:197657 -k1,17439:32583029,7095585:0 -) -(1,17440:6630773,7937073:25952256,513147,134348 -k1,17439:7370762,7937073:208492 -k1,17439:9951001,7937073:208491 -k1,17439:10810921,7937073:208492 -k1,17439:12038498,7937073:208492 -k1,17439:14512570,7937073:208492 -k1,17439:16110424,7937073:208491 -k1,17439:17510361,7937073:208492 -k1,17439:19340869,7937073:208492 -k1,17439:21560006,7937073:208492 -k1,17439:22124357,7937073:208491 -k1,17439:23722212,7937073:208492 -k1,17439:25807000,7937073:208492 -k1,17439:29377489,7937073:208492 -k1,17439:30975343,7937073:208491 -k1,17439:31835263,7937073:208492 -k1,17439:32583029,7937073:0 -) -(1,17440:6630773,8778561:25952256,513147,126483 -k1,17439:8317952,8778561:173953 -k1,17439:9107943,8778561:173953 -k1,17439:10300981,8778561:173953 -k1,17439:12206395,8778561:173953 -k1,17439:13868671,8778561:173953 -k1,17439:14255591,8778561:173928 -k1,17439:15522029,8778561:173953 -k1,17439:16466686,8778561:173954 -k1,17439:20341457,8778561:173953 -k1,17439:23210906,8778561:173953 -k1,17439:25766437,8778561:173953 -k1,17439:28111598,8778561:173953 -k1,17439:29357720,8778561:173953 -k1,17439:29887533,8778561:173953 -k1,17439:32583029,8778561:0 -) -(1,17440:6630773,9620049:25952256,505283,134348 -g1,17439:7934284,9620049 -g1,17439:9419329,9620049 -g1,17439:10366324,9620049 -g1,17439:12770840,9620049 -g1,17439:13656231,9620049 -g1,17439:16927788,9620049 -g1,17439:17888545,9620049 -k1,17440:32583029,9620049:12782799 -g1,17440:32583029,9620049 -) -v1,17442:6630773,10779392:0,393216,0 -(1,17450:6630773,13727743:25952256,3341567,196608 -g1,17450:6630773,13727743 -g1,17450:6630773,13727743 -g1,17450:6434165,13727743 -(1,17450:6434165,13727743:0,3341567,196608 -r1,17477:32779637,13727743:26345472,3538175,196608 -k1,17450:6434165,13727743:-26345472 -) -(1,17450:6434165,13727743:26345472,3341567,196608 -[1,17450:6630773,13727743:25952256,3144959,0 -(1,17444:6630773,10987010:25952256,404226,107478 -(1,17443:6630773,10987010:0,0,0 -g1,17443:6630773,10987010 -g1,17443:6630773,10987010 -g1,17443:6303093,10987010 -(1,17443:6303093,10987010:0,0,0 -) -g1,17443:6630773,10987010 -) -k1,17444:6630773,10987010:0 -g1,17444:10424522,10987010 -g1,17444:11056814,10987010 -k1,17444:11056814,10987010:0 -h1,17444:13269834,10987010:0,0,0 -k1,17444:32583030,10987010:19313196 -g1,17444:32583030,10987010 -) -(1,17445:6630773,11653188:25952256,404226,107478 -h1,17445:6630773,11653188:0,0,0 -g1,17445:6946919,11653188 -g1,17445:7263065,11653188 -g1,17445:7579211,11653188 -g1,17445:7895357,11653188 -g1,17445:8211503,11653188 -g1,17445:8527649,11653188 -g1,17445:8843795,11653188 -g1,17445:11372961,11653188 -g1,17445:12005253,11653188 -g1,17445:13902128,11653188 -g1,17445:14534420,11653188 -g1,17445:16431295,11653188 -g1,17445:17063587,11653188 -g1,17445:17695879,11653188 -g1,17445:19592753,11653188 -h1,17445:19908899,11653188:0,0,0 -k1,17445:32583029,11653188:12674130 -g1,17445:32583029,11653188 -) -(1,17446:6630773,12319366:25952256,404226,107478 -h1,17446:6630773,12319366:0,0,0 -g1,17446:6946919,12319366 -g1,17446:7263065,12319366 -g1,17446:12321397,12319366 -g1,17446:12953689,12319366 -g1,17446:13902127,12319366 -h1,17446:14218273,12319366:0,0,0 -k1,17446:32583029,12319366:18364756 -g1,17446:32583029,12319366 -) -(1,17447:6630773,12985544:25952256,410518,107478 -h1,17447:6630773,12985544:0,0,0 -g1,17447:6946919,12985544 -g1,17447:7263065,12985544 -g1,17447:12321397,12985544 -g1,17447:12953689,12985544 -g1,17447:19908894,12985544 -g1,17447:21173477,12985544 -g1,17447:22121914,12985544 -g1,17447:23702643,12985544 -g1,17447:25599517,12985544 -g1,17447:26231809,12985544 -k1,17447:26231809,12985544:0 -h1,17447:29077120,12985544:0,0,0 -k1,17447:32583029,12985544:3505909 -g1,17447:32583029,12985544 -) -(1,17448:6630773,13651722:25952256,404226,76021 -h1,17448:6630773,13651722:0,0,0 -g1,17448:6946919,13651722 -g1,17448:7263065,13651722 -g1,17448:7579211,13651722 -g1,17448:7895357,13651722 -g1,17448:8211503,13651722 -g1,17448:8527649,13651722 -g1,17448:8843795,13651722 -g1,17448:9159941,13651722 -g1,17448:9476087,13651722 -g1,17448:9792233,13651722 -g1,17448:10108379,13651722 -g1,17448:10424525,13651722 -g1,17448:10740671,13651722 -g1,17448:12321400,13651722 -g1,17448:12953692,13651722 -h1,17448:14218275,13651722:0,0,0 -k1,17448:32583029,13651722:18364754 -g1,17448:32583029,13651722 -) -] -) -g1,17450:32583029,13727743 -g1,17450:6630773,13727743 -g1,17450:6630773,13727743 -g1,17450:32583029,13727743 -g1,17450:32583029,13727743 -) -h1,17450:6630773,13924351:0,0,0 -(1,17455:6630773,15083695:25952256,513147,134348 -h1,17453:6630773,15083695:983040,0,0 -k1,17453:8961888,15083695:151388 -k1,17453:10894545,15083695:151388 -k1,17453:13311513,15083695:151388 -k1,17453:14852264,15083695:151388 -k1,17453:16107934,15083695:151388 -k1,17453:17545138,15083695:151388 -k1,17453:18444293,15083695:151389 -k1,17453:21427492,15083695:151388 -k1,17453:23223834,15083695:151388 -k1,17453:25110615,15083695:151388 -k1,17453:26281088,15083695:151388 -k1,17453:29377663,15083695:151388 -k1,17453:30919070,15083695:151388 -k1,17455:32583029,15083695:0 -) -(1,17455:6630773,15749873:25952256,513147,126483 -k1,17453:8247491,15749873:147401 -k1,17453:9467061,15749873:147401 -k1,17453:10680732,15749873:147400 -k1,17453:11847218,15749873:147401 -k1,17453:13384638,15749873:147401 -k1,17453:16278653,15749873:147401 -k1,17453:18359365,15749873:147400 -k1,17453:19158194,15749873:147401 -k1,17453:19720386,15749873:147349 -(1,17453:19927480,15749873:0,452978,115847 -r1,17477:20637458,15749873:709978,568825,115847 -k1,17453:19927480,15749873:-709978 -) -(1,17453:19927480,15749873:709978,452978,115847 -k1,17453:19927480,15749873:3277 -h1,17453:20634181,15749873:0,411205,112570 -) -k1,17453:20991953,15749873:147401 -k1,17453:21822239,15749873:147401 -k1,17453:22988725,15749873:147401 -k1,17453:25811305,15749873:147400 -k1,17453:28705320,15749873:147401 -k1,17453:30420342,15749873:147401 -k1,17453:32583029,15749873:0 -) -(1,17455:6630773,16416051:25952256,513147,134348 -g1,17453:8062079,16416051 -g1,17453:10539995,16416051 -h1,17453:11510583,16416051:0,0,0 -g1,17453:11709812,16416051 -g1,17453:12718411,16416051 -g1,17453:14415793,16416051 -h1,17453:15611170,16416051:0,0,0 -g1,17453:16191163,16416051 -g1,17453:18182146,16416051 -g1,17453:18737235,16416051 -g1,17453:21631960,16416051 -g1,17453:22517351,16416051 -g1,17453:24571904,16416051 -g1,17453:25302630,16416051 -g1,17453:27914895,16416051 -g1,17453:29305569,16416051 -g1,17453:31844433,16416051 -k1,17455:32583029,16416051:738596 -g1,17455:32583029,16416051 -) -v1,17455:6630773,17575394:0,393216,0 -(1,17463:6630773,20523745:25952256,3341567,196608 -g1,17463:6630773,20523745 -g1,17463:6630773,20523745 -g1,17463:6434165,20523745 -(1,17463:6434165,20523745:0,3341567,196608 -r1,17477:32779637,20523745:26345472,3538175,196608 -k1,17463:6434165,20523745:-26345472 -) -(1,17463:6434165,20523745:26345472,3341567,196608 -[1,17463:6630773,20523745:25952256,3144959,0 -(1,17457:6630773,17783012:25952256,404226,107478 -(1,17456:6630773,17783012:0,0,0 -g1,17456:6630773,17783012 -g1,17456:6630773,17783012 -g1,17456:6303093,17783012 -(1,17456:6303093,17783012:0,0,0 -) -g1,17456:6630773,17783012 -) -k1,17457:6630773,17783012:0 -g1,17457:10424522,17783012 -g1,17457:11056814,17783012 -k1,17457:11056814,17783012:0 -h1,17457:13269834,17783012:0,0,0 -k1,17457:32583030,17783012:19313196 -g1,17457:32583030,17783012 -) -(1,17458:6630773,18449190:25952256,404226,107478 -h1,17458:6630773,18449190:0,0,0 -g1,17458:6946919,18449190 -g1,17458:7263065,18449190 -g1,17458:7579211,18449190 -g1,17458:7895357,18449190 -g1,17458:8211503,18449190 -g1,17458:8527649,18449190 -g1,17458:8843795,18449190 -g1,17458:11372961,18449190 -g1,17458:12005253,18449190 -g1,17458:13902128,18449190 -g1,17458:14534420,18449190 -g1,17458:16431295,18449190 -g1,17458:17063587,18449190 -g1,17458:17695879,18449190 -g1,17458:19592753,18449190 -h1,17458:19908899,18449190:0,0,0 -k1,17458:32583029,18449190:12674130 -g1,17458:32583029,18449190 -) -(1,17459:6630773,19115368:25952256,404226,107478 -h1,17459:6630773,19115368:0,0,0 -g1,17459:6946919,19115368 -g1,17459:7263065,19115368 -g1,17459:12321397,19115368 -g1,17459:12953689,19115368 -g1,17459:13902127,19115368 -h1,17459:14218273,19115368:0,0,0 -k1,17459:32583029,19115368:18364756 -g1,17459:32583029,19115368 -) -(1,17460:6630773,19781546:25952256,404226,107478 -h1,17460:6630773,19781546:0,0,0 -g1,17460:6946919,19781546 -g1,17460:7263065,19781546 -g1,17460:12321397,19781546 -g1,17460:12953689,19781546 -g1,17460:13585981,19781546 -g1,17460:14850564,19781546 -g1,17460:17695876,19781546 -g1,17460:18328168,19781546 -g1,17460:19276606,19781546 -g1,17460:20541189,19781546 -g1,17460:21489626,19781546 -g1,17460:22754210,19781546 -g1,17460:24651084,19781546 -g1,17460:25283376,19781546 -k1,17460:25283376,19781546:0 -h1,17460:28128687,19781546:0,0,0 -k1,17460:32583029,19781546:4454342 -g1,17460:32583029,19781546 -) -(1,17461:6630773,20447724:25952256,404226,76021 -h1,17461:6630773,20447724:0,0,0 -g1,17461:6946919,20447724 -g1,17461:7263065,20447724 -g1,17461:7579211,20447724 -g1,17461:7895357,20447724 -g1,17461:8211503,20447724 -g1,17461:8527649,20447724 -g1,17461:8843795,20447724 -g1,17461:9159941,20447724 -g1,17461:9476087,20447724 -g1,17461:9792233,20447724 -g1,17461:10108379,20447724 -g1,17461:10424525,20447724 -g1,17461:10740671,20447724 -g1,17461:12321400,20447724 -g1,17461:12953692,20447724 -h1,17461:14218275,20447724:0,0,0 -k1,17461:32583029,20447724:18364754 -g1,17461:32583029,20447724 -) -] -) -g1,17463:32583029,20523745 -g1,17463:6630773,20523745 -g1,17463:6630773,20523745 -g1,17463:32583029,20523745 -g1,17463:32583029,20523745 -) -h1,17463:6630773,20720353:0,0,0 -v1,17467:6630773,22548172:0,393216,0 -(1,17468:6630773,28808524:25952256,6653568,0 -g1,17468:6630773,28808524 -g1,17468:6303093,28808524 -r1,17477:6401397,28808524:98304,6653568,0 -g1,17468:6600626,28808524 -g1,17468:6797234,28808524 -[1,17468:6797234,28808524:25785795,6653568,0 -(1,17468:6797234,22910245:25785795,755289,196608 -(1,17467:6797234,22910245:0,755289,196608 -r1,17477:8134168,22910245:1336934,951897,196608 -k1,17467:6797234,22910245:-1336934 -) -(1,17467:6797234,22910245:1336934,755289,196608 -) -k1,17467:8383696,22910245:249528 -k1,17467:8711376,22910245:327680 -k1,17467:10306359,22910245:249529 -k1,17467:13377212,22910245:249528 -k1,17467:14286032,22910245:249528 -k1,17467:17377202,22910245:249529 -k1,17467:18278158,22910245:249528 -k1,17467:21702250,22910245:249528 -k1,17467:23052784,22910245:249529 -k1,17467:24812262,22910245:249528 -k1,17467:27691750,22910245:249528 -k1,17467:28557317,22910245:249529 -k1,17467:31635378,22910245:249528 -k1,17467:32583029,22910245:0 -) -(1,17468:6797234,23751733:25785795,513147,134348 -k1,17467:7392388,23751733:239294 -k1,17467:9020390,23751733:239294 -k1,17467:10685091,23751733:239293 -k1,17467:12659778,23751733:239294 -k1,17467:13585234,23751733:239294 -k1,17467:16514126,23751733:239294 -k1,17467:19829680,23751733:239294 -k1,17467:20728265,23751733:239293 -k1,17467:21986644,23751733:239294 -k1,17467:23963953,23751733:239294 -k1,17467:24862539,23751733:239294 -k1,17467:25457693,23751733:239294 -k1,17467:28208326,23751733:239293 -k1,17467:31226347,23751733:239294 -k1,17467:32227169,23751733:239294 -k1,17467:32583029,23751733:0 -) -(1,17468:6797234,24593221:25785795,505283,134348 -k1,17467:9586646,24593221:266276 -k1,17467:12488125,24593221:266276 -(1,17467:12488125,24593221:0,414482,115847 -r1,17477:13198103,24593221:709978,530329,115847 -k1,17467:12488125,24593221:-709978 -) -(1,17467:12488125,24593221:709978,414482,115847 -k1,17467:12488125,24593221:3277 -h1,17467:13194826,24593221:0,411205,112570 -) -k1,17467:13638049,24593221:266276 -k1,17467:14976493,24593221:266275 -k1,17467:16446010,24593221:266276 -k1,17467:19401884,24593221:266276 -k1,17467:20769165,24593221:266276 -k1,17467:22545391,24593221:266276 -k1,17467:26350611,24593221:266276 -k1,17467:28309026,24593221:266275 -k1,17467:30000710,24593221:266276 -k1,17467:31391584,24593221:266276 -k1,17467:32583029,24593221:0 -) -(1,17468:6797234,25434709:25785795,505283,126483 -k1,17467:9724474,25434709:208151 -k1,17467:10694154,25434709:208152 -(1,17467:10694154,25434709:0,452978,115847 -r1,17477:12810979,25434709:2116825,568825,115847 -k1,17467:10694154,25434709:-2116825 -) -(1,17467:10694154,25434709:2116825,452978,115847 -k1,17467:10694154,25434709:3277 -h1,17467:12807702,25434709:0,411205,112570 -) -k1,17467:13192800,25434709:208151 -k1,17467:14028787,25434709:208152 -k1,17467:15703634,25434709:208151 -k1,17467:17782839,25434709:208152 -k1,17467:19194231,25434709:208151 -k1,17467:22137200,25434709:208152 -k1,17467:22701211,25434709:208151 -k1,17467:26190751,25434709:208152 -k1,17467:26856999,25434709:208151 -k1,17467:28272324,25434709:208152 -k1,17467:31931601,25434709:208151 -k1,17467:32583029,25434709:0 -) -(1,17468:6797234,26276197:25785795,505283,126483 -k1,17467:8459086,26276197:265280 -k1,17467:9080226,26276197:265280 -k1,17467:12554150,26276197:265281 -k1,17467:15330770,26276197:265280 -k1,17467:16247478,26276197:265280 -k1,17467:17531843,26276197:265280 -k1,17467:19450596,26276197:265280 -k1,17467:22560140,26276197:265281 -k1,17467:23511582,26276197:265280 -k1,17467:25485386,26276197:265280 -k1,17467:26402094,26276197:265280 -k1,17467:27686460,26276197:265281 -k1,17467:30474876,26276197:265280 -k1,17467:31931601,26276197:265280 -k1,17467:32583029,26276197:0 -) -(1,17468:6797234,27117685:25785795,505283,134348 -k1,17467:7987368,27117685:171049 -k1,17467:11148169,27117685:171049 -k1,17467:11935256,27117685:171049 -k1,17467:13125390,27117685:171049 -k1,17467:14949912,27117685:171049 -k1,17467:16852422,27117685:171049 -k1,17467:18855858,27117685:171049 -k1,17467:20530958,27117685:171049 -k1,17467:21987823,27117685:171049 -k1,17467:23851012,27117685:171049 -k1,17467:25724031,27117685:171049 -k1,17467:27926696,27117685:171049 -k1,17467:29382251,27117685:171049 -k1,17467:32583029,27117685:0 -) -(1,17468:6797234,27959173:25785795,513147,134348 -k1,17467:9496826,27959173:272138 -k1,17467:11461104,27959173:272138 -k1,17467:15135870,27959173:272137 -k1,17467:16059436,27959173:272138 -k1,17467:17350659,27959173:272138 -k1,17467:20612549,27959173:272138 -k1,17467:23443212,27959173:272137 -k1,17467:24734435,27959173:272138 -k1,17467:26409043,27959173:272138 -(1,17467:26409043,27959173:0,414482,115847 -r1,17477:27470732,27959173:1061689,530329,115847 -k1,17467:26409043,27959173:-1061689 -) -(1,17467:26409043,27959173:1061689,414482,115847 -k1,17467:26409043,27959173:3277 -h1,17467:27467455,27959173:0,411205,112570 -) -k1,17467:27742870,27959173:272138 -k1,17467:31295739,27959173:272137 -k1,17467:32227169,27959173:272138 -k1,17467:32583029,27959173:0 -) -(1,17468:6797234,28800661:25785795,473825,7863 -k1,17468:32583029,28800661:23088988 -g1,17468:32583029,28800661 -) -] -g1,17468:32583029,28808524 -) -h1,17468:6630773,28808524:0,0,0 -(1,17472:6630773,30143177:25952256,513147,134348 -h1,17470:6630773,30143177:983040,0,0 -k1,17470:9502779,30143177:236803 -k1,17470:12073320,30143177:236804 -k1,17470:13852841,30143177:236803 -k1,17470:14748936,30143177:236803 -k1,17470:17814273,30143177:236804 -k1,17470:19070161,30143177:236803 -k1,17470:21391009,30143177:236803 -k1,17470:23141039,30143177:236804 -k1,17470:24325493,30143177:236803 -k1,17470:27369858,30143177:236803 -k1,17470:30448303,30143177:236804 -k1,17470:31336534,30143177:236803 -k1,17472:32583029,30143177:0 -) -(1,17472:6630773,30984665:25952256,513147,122846 -k1,17470:8992586,30984665:220752 -k1,17470:9744835,30984665:220752 -k1,17470:11820256,30984665:220752 -k1,17470:12850378,30984665:220752 -k1,17470:16096927,30984665:220752 -(1,17470:16096927,30984665:0,452978,122846 -r1,17477:18565464,30984665:2468537,575824,122846 -k1,17470:16096927,30984665:-2468537 -) -(1,17470:16096927,30984665:2468537,452978,122846 -k1,17470:16096927,30984665:3277 -h1,17470:18562187,30984665:0,411205,112570 -) -k1,17470:18959886,30984665:220752 -(1,17470:18959886,30984665:0,459977,115847 -r1,17477:23186982,30984665:4227096,575824,115847 -k1,17470:18959886,30984665:-4227096 -) -(1,17470:18959886,30984665:4227096,459977,115847 -k1,17470:18959886,30984665:3277 -h1,17470:23183705,30984665:0,411205,112570 -) -k1,17470:23407734,30984665:220752 -k1,17470:24819931,30984665:220752 -(1,17470:24819931,30984665:0,459977,115847 -r1,17477:29398739,30984665:4578808,575824,115847 -k1,17470:24819931,30984665:-4578808 -) -(1,17470:24819931,30984665:4578808,459977,115847 -k1,17470:24819931,30984665:3277 -h1,17470:29395462,30984665:0,411205,112570 -) -k1,17470:29793161,30984665:220752 -k1,17472:32583029,30984665:0 -) -(1,17472:6630773,31826153:25952256,513147,134348 -(1,17470:6630773,31826153:0,459977,115847 -r1,17477:10857869,31826153:4227096,575824,115847 -k1,17470:6630773,31826153:-4227096 -) -(1,17470:6630773,31826153:4227096,459977,115847 -k1,17470:6630773,31826153:3277 -h1,17470:10854592,31826153:0,411205,112570 -) -k1,17470:11064832,31826153:206963 -k1,17470:13900444,31826153:206963 -(1,17470:13900444,31826153:0,452978,115847 -r1,17477:16017269,31826153:2116825,568825,115847 -k1,17470:13900444,31826153:-2116825 -) -(1,17470:13900444,31826153:2116825,452978,115847 -k1,17470:13900444,31826153:3277 -h1,17470:16013992,31826153:0,411205,112570 -) -k1,17470:16224232,31826153:206963 -k1,17470:17622640,31826153:206963 -k1,17470:18848688,31826153:206963 -(1,17470:18848688,31826153:0,414482,115847 -r1,17477:19558666,31826153:709978,530329,115847 -k1,17470:18848688,31826153:-709978 -) -(1,17470:18848688,31826153:709978,414482,115847 -k1,17470:18848688,31826153:3277 -h1,17470:19555389,31826153:0,411205,112570 -) -k1,17470:19765629,31826153:206963 -k1,17470:22835859,31826153:206962 -k1,17470:23860711,31826153:206963 -k1,17470:26143199,31826153:206963 -k1,17470:26966200,31826153:206963 -k1,17470:28192248,31826153:206963 -k1,17470:31015408,31826153:206963 -k1,17470:32583029,31826153:0 -) -(1,17472:6630773,32667641:25952256,505283,134348 -g1,17470:9108689,32667641 -h1,17470:10079277,32667641:0,0,0 -g1,17470:10278506,32667641 -g1,17470:11287105,32667641 -g1,17470:12984487,32667641 -h1,17470:14179864,32667641:0,0,0 -g1,17470:14552763,32667641 -g1,17470:18428562,32667641 -g1,17470:20199344,32667641 -g1,17470:23245457,32667641 -g1,17470:25963890,32667641 -g1,17470:26779157,32667641 -g1,17470:28633170,32667641 -k1,17470:32583029,32667641:1783239 -g1,17472:32583029,32667641 -) -(1,17472:6630773,33925937:25952256,454754,120913 -g1,17471:8060506,33925937 -$1,17471:8060506,33925937 -$1,17471:8668025,33925937 -g1,17471:8854409,33925937 -g1,17471:9995128,33925937 -$1,17471:9995128,33925937 -$1,17471:10602647,33925937 -g1,17471:10789031,33925937 -g1,17471:12042407,33925937 -$1,17471:12042407,33925937 -$1,17471:12649926,33925937 -g1,17471:12836310,33925937 -g1,17471:13977029,33925937 -$1,17471:13977029,33925937 -$1,17471:14584548,33925937 -g1,17471:14770932,33925937 -g1,17471:16566356,33925937 -$1,17471:16566356,33925937 -$1,17471:17173875,33925937 -g1,17471:17360259,33925937 -g1,17471:18973427,33925937 -$1,17471:18973427,33925937 -$1,17471:19580946,33925937 -g1,17471:19767330,33925937 -g1,17471:20908049,33925937 -$1,17471:20908049,33925937 -$1,17471:21515568,33925937 -g1,17471:21701952,33925937 -g1,17471:24938316,33925937 -$1,17471:24938316,33925937 -$1,17471:25545835,33925937 -g1,17471:25732219,33925937 -g1,17471:27712848,33925937 -$1,17471:27712848,33925937 -$1,17471:28320367,33925937 -g1,17471:28506751,33925937 -g1,17471:30499176,33925937 -k1,17472:32583029,33925937:332666 -g1,17472:32583029,33925937 -) -(1,17474:6630773,34767425:25952256,513147,134348 -h1,17473:6630773,34767425:983040,0,0 -k1,17473:10736872,34767425:180492 -k1,17473:11533402,34767425:180492 -k1,17473:12732979,34767425:180492 -k1,17473:14302834,34767425:180492 -k1,17473:16359622,34767425:180492 -k1,17473:18745401,34767425:180492 -k1,17473:19612056,34767425:180493 -k1,17473:22864876,34767425:180492 -k1,17473:23696796,34767425:180492 -(1,17473:23696796,34767425:0,452978,115847 -r1,17477:25110197,34767425:1413401,568825,115847 -k1,17473:23696796,34767425:-1413401 -) -(1,17473:23696796,34767425:1413401,452978,115847 -k1,17473:23696796,34767425:3277 -h1,17473:25106920,34767425:0,411205,112570 -) -k1,17473:25290689,34767425:180492 -k1,17473:26462741,34767425:180492 -k1,17473:29228628,34767425:180492 -k1,17473:30060548,34767425:180492 -k1,17474:32583029,34767425:0 -) -(1,17474:6630773,35608913:25952256,513147,126483 -k1,17473:7686173,35608913:190325 -k1,17473:9919255,35608913:190325 -k1,17473:11489768,35608913:190325 -k1,17473:12671653,35608913:190325 -k1,17473:15505045,35608913:190325 -k1,17473:16381532,35608913:190325 -k1,17473:18280382,35608913:190326 -k1,17473:19232235,35608913:190325 -k1,17473:19778420,35608913:190325 -k1,17473:22491881,35608913:190325 -k1,17473:25533022,35608913:190325 -(1,17473:25533022,35608913:0,452978,115847 -r1,17477:30815253,35608913:5282231,568825,115847 -k1,17473:25533022,35608913:-5282231 -) -(1,17473:25533022,35608913:5282231,452978,115847 -k1,17473:25533022,35608913:3277 -h1,17473:30811976,35608913:0,411205,112570 -) -k1,17473:31386342,35608913:190325 -k1,17473:32583029,35608913:0 -) -(1,17474:6630773,36450401:25952256,513147,134348 -k1,17473:9956444,36450401:187807 -k1,17473:10803544,36450401:187808 -k1,17473:13832992,36450401:187807 -k1,17473:14636837,36450401:187807 -k1,17473:15843729,36450401:187807 -k1,17473:17420900,36450401:187808 -k1,17473:19485003,36450401:187807 -k1,17473:22451537,36450401:187807 -k1,17473:23400873,36450401:187808 -k1,17473:26442118,36450401:187807 -k1,17473:27621485,36450401:187807 -k1,17473:28828377,36450401:187807 -k1,17473:30724709,36450401:187808 -k1,17473:31563944,36450401:187807 -k1,17473:32583029,36450401:0 -) -(1,17474:6630773,37291889:25952256,513147,134348 -k1,17473:9951810,37291889:157614 -k1,17473:12030940,37291889:157614 -k1,17473:15041991,37291889:157613 -k1,17473:16484111,37291889:157614 -k1,17473:19052795,37291889:157614 -k1,17473:20019779,37291889:157614 -k1,17473:20541774,37291889:157614 -k1,17473:22909262,37291889:157614 -(1,17473:22909262,37291889:361103,347341,126483 -) -k1,17473:23427978,37291889:157613 -k1,17473:25596237,37291889:157614 -k1,17473:26109711,37291889:157614 -k1,17473:30249292,37291889:157614 -k1,17473:32583029,37291889:0 -) -(1,17474:6630773,38133377:25952256,513147,126483 -k1,17473:7526213,38133377:236148 -k1,17473:9459088,38133377:236148 -k1,17473:12710548,38133377:236149 -k1,17473:13708224,38133377:236148 -k1,17473:16209952,38133377:236148 -k1,17473:17731916,38133377:236148 -k1,17473:20553459,38133377:236148 -k1,17473:21441035,38133377:236148 -k1,17473:23373911,38133377:236149 -k1,17473:26958293,38133377:236148 -k1,17473:30129143,38133377:236148 -k1,17473:30981329,38133377:236148 -k1,17473:32583029,38133377:0 -) -(1,17474:6630773,38974865:25952256,505283,126483 -k1,17473:8495067,38974865:166912 -k1,17473:10363950,38974865:166913 -k1,17473:13372503,38974865:166912 -k1,17473:14155453,38974865:166912 -k1,17473:16988371,38974865:166913 -k1,17473:17806711,38974865:166912 -k1,17473:18338004,38974865:166912 -k1,17473:20714791,38974865:166913 -(1,17473:20714791,38974865:361103,347341,126483 -) -k1,17473:21242806,38974865:166912 -k1,17473:22401278,38974865:166912 -k1,17473:25326601,38974865:166913 -k1,17473:26109551,38974865:166912 -k1,17473:27295548,38974865:166912 -(1,17473:27295548,38974865:0,452978,115847 -r1,17477:28708949,38974865:1413401,568825,115847 -k1,17473:27295548,38974865:-1413401 -) -(1,17473:27295548,38974865:1413401,452978,115847 -k1,17473:27295548,38974865:3277 -h1,17473:28705672,38974865:0,411205,112570 -) -k1,17473:28875862,38974865:166913 -k1,17473:31821501,38974865:166912 -k1,17473:32583029,38974865:0 -) -(1,17474:6630773,39816353:25952256,513147,134348 -k1,17473:7191215,39816353:204582 -k1,17473:9940559,39816353:204581 -k1,17473:13108024,39816353:204582 -k1,17473:14821244,39816353:204581 -k1,17473:17291406,39816353:204582 -k1,17473:20303549,39816353:204581 -k1,17473:21039628,39816353:204582 -k1,17473:23161137,39816353:204581 -k1,17473:23981757,39816353:204582 -k1,17473:25205423,39816353:204581 -k1,17473:27933141,39816353:204582 -k1,17473:31337190,39816353:204581 -k1,17474:32583029,39816353:0 -) -(1,17474:6630773,40657841:25952256,513147,134348 -k1,17473:9414926,40657841:195481 -k1,17473:10629492,40657841:195481 -k1,17473:12205818,40657841:195482 -k1,17473:13505581,40657841:195481 -k1,17473:15963365,40657841:195481 -k1,17473:17362087,40657841:195481 -k1,17473:19823149,40657841:195482 -k1,17473:22826192,40657841:195481 -k1,17473:25919020,40657841:195481 -k1,17473:28124490,40657841:195481 -k1,17473:28675832,40657841:195482 -k1,17473:29971007,40657841:195481 -k1,17473:30817916,40657841:195481 -(1,17473:30817916,40657841:0,452978,115847 -r1,17477:32583029,40657841:1765113,568825,115847 -k1,17473:30817916,40657841:-1765113 -) -(1,17473:30817916,40657841:1765113,452978,115847 -k1,17473:30817916,40657841:3277 -h1,17473:32579752,40657841:0,411205,112570 -) -k1,17473:32583029,40657841:0 -) -(1,17474:6630773,41499329:25952256,513147,134348 -k1,17473:8610285,41499329:244119 -(1,17473:8610285,41499329:0,459977,115847 -r1,17477:12837381,41499329:4227096,575824,115847 -k1,17473:8610285,41499329:-4227096 -) -(1,17473:8610285,41499329:4227096,459977,115847 -k1,17473:8610285,41499329:3277 -h1,17473:12834104,41499329:0,411205,112570 -) -k1,17473:13255170,41499329:244119 -k1,17473:15384761,41499329:244120 -k1,17473:16768551,41499329:244119 -k1,17473:17757814,41499329:244119 -k1,17473:21925573,41499329:244119 -k1,17473:24804895,41499329:244119 -k1,17473:26068100,41499329:244120 -k1,17473:27701582,41499329:244119 -k1,17473:29821997,41499329:244119 -k1,17473:32583029,41499329:0 -) -(1,17474:6630773,42340817:25952256,505283,134348 -k1,17473:7617792,42340817:225491 -k1,17473:8862367,42340817:225490 -k1,17473:10468702,42340817:225491 -k1,17473:11885637,42340817:225490 -k1,17473:13395634,42340817:225491 -k1,17473:16399851,42340817:225490 -k1,17473:17386870,42340817:225491 -k1,17473:18631445,42340817:225490 -k1,17473:21553743,42340817:225491 -k1,17473:22975920,42340817:225490 -k1,17473:24783450,42340817:225491 -k1,17473:26673554,42340817:225490 -k1,17473:28106218,42340817:225491 -k1,17473:29397979,42340817:225490 -k1,17473:32583029,42340817:0 -) -(1,17474:6630773,43182305:25952256,513147,134348 -k1,17473:7424632,43182305:177821 -k1,17473:9636035,43182305:177821 -k1,17473:12477895,43182305:177821 -k1,17473:13315008,43182305:177821 -k1,17473:16495032,43182305:177821 -k1,17473:17745022,43182305:177821 -k1,17473:19209970,43182305:177821 -k1,17473:20047083,43182305:177821 -k1,17473:22255865,43182305:177821 -k1,17473:23640859,43182305:177821 -k1,17473:26105887,43182305:177821 -k1,17473:27349979,43182305:177821 -k1,17473:32583029,43182305:0 -) -(1,17474:6630773,44023793:25952256,505283,134348 -g1,17473:8237715,44023793 -g1,17473:9640185,44023793 -g1,17473:11421453,44023793 -g1,17473:13285296,44023793 -g1,17473:14588807,44023793 -g1,17473:15535802,44023793 -g1,17473:18534074,44023793 -g1,17473:20127254,44023793 -(1,17473:20127254,44023793:0,459977,115847 -r1,17477:24706062,44023793:4578808,575824,115847 -k1,17473:20127254,44023793:-4578808 -) -(1,17473:20127254,44023793:4578808,459977,115847 -k1,17473:20127254,44023793:3277 -h1,17473:24702785,44023793:0,411205,112570 -) -g1,17473:24905291,44023793 -g1,17473:27463161,44023793 -g1,17473:29801485,44023793 -k1,17474:32583029,44023793:194838 -g1,17474:32583029,44023793 -) -(1,17476:6630773,44865281:25952256,513147,134348 -h1,17475:6630773,44865281:983040,0,0 -k1,17475:11318181,44865281:137243 -k1,17475:16622938,44865281:137243 -k1,17475:17419474,44865281:137244 -k1,17475:18575802,44865281:137243 -k1,17475:20102408,44865281:137243 -k1,17475:21231211,44865281:137243 -k1,17475:22703423,44865281:137244 -k1,17475:25420163,44865281:137243 -k1,17475:26170168,44865281:137243 -k1,17475:27326496,44865281:137243 -k1,17475:29045779,44865281:137244 -k1,17475:30847636,44865281:137243 -k1,17475:32583029,44865281:0 -) -(1,17476:6630773,45706769:25952256,513147,134348 -k1,17475:8344003,45706769:141021 -k1,17475:13826209,45706769:141022 -k1,17475:16901932,45706769:141021 -k1,17475:18740991,45706769:141021 -k1,17475:19901098,45706769:141022 -k1,17475:22944709,45706769:141021 -k1,17475:23617228,45706769:141022 -k1,17475:24409677,45706769:141021 -k1,17475:26611150,45706769:141021 -k1,17475:29047243,45706769:141022 -k1,17475:29871149,45706769:141021 -k1,17475:32583029,45706769:0 -) +v1,17437:6630773,6254097:0,393216,0 +(1,17437:6630773,19113560:25952256,13252679,0 +g1,17437:6630773,19113560 +g1,17437:6237557,19113560 +r1,17477:6368629,19113560:131072,13252679,0 +g1,17437:6567858,19113560 +g1,17437:6764466,19113560 +[1,17437:6764466,19113560:25818563,13252679,0 +(1,17421:6764466,6374028:25818563,513147,134348 +k1,17420:9390620,6374028:198045 +k1,17420:10240094,6374028:198046 +k1,17420:13718872,6374028:198046 +(1,17420:13718872,6374028:0,452978,115847 +r1,17477:15132273,6374028:1413401,568825,115847 +k1,17420:13718872,6374028:-1413401 +) +(1,17420:13718872,6374028:1413401,452978,115847 +k1,17420:13718872,6374028:3277 +h1,17420:15128996,6374028:0,411205,112570 +) +k1,17420:15503988,6374028:198045 +k1,17420:17082221,6374028:198045 +k1,17420:18384549,6374028:198046 +k1,17420:19868410,6374028:198045 +k1,17420:20814222,6374028:198046 +k1,17420:24220910,6374028:198045 +k1,17420:25986577,6374028:198046 +k1,17420:27881349,6374028:198045 +k1,17420:31094706,6374028:198046 +k1,17420:32583029,6374028:0 +) +(1,17421:6764466,7239108:25818563,505283,134348 +k1,17420:7827161,7239108:194343 +k1,17420:9298802,7239108:194344 +k1,17420:14802872,7239108:194343 +(1,17420:14802872,7239108:0,414482,122846 +r1,17477:15864561,7239108:1061689,537328,122846 +k1,17420:14802872,7239108:-1061689 +) +(1,17420:14802872,7239108:1061689,414482,122846 +k1,17420:14802872,7239108:3277 +h1,17420:15861284,7239108:0,411205,112570 +) +k1,17420:16058904,7239108:194343 +k1,17420:17062618,7239108:194344 +k1,17420:18276046,7239108:194343 +k1,17420:20570164,7239108:194344 +k1,17420:25018449,7239108:194343 +k1,17420:26269232,7239108:194343 +k1,17420:29035864,7239108:194344 +k1,17420:29991735,7239108:194343 +k1,17421:32583029,7239108:0 +) +(1,17421:6764466,8104188:25818563,505283,126483 +(1,17420:6764466,8104188:0,452978,115847 +r1,17477:8177867,8104188:1413401,568825,115847 +k1,17420:6764466,8104188:-1413401 +) +(1,17420:6764466,8104188:1413401,452978,115847 +k1,17420:6764466,8104188:3277 +h1,17420:8174590,8104188:0,411205,112570 +) +g1,17420:8377096,8104188 +g1,17420:9337853,8104188 +(1,17420:9337853,8104188:0,452978,115847 +r1,17477:10399542,8104188:1061689,568825,115847 +k1,17420:9337853,8104188:-1061689 +) +(1,17420:9337853,8104188:1061689,452978,115847 +k1,17420:9337853,8104188:3277 +h1,17420:10396265,8104188:0,411205,112570 +) +g1,17420:10598771,8104188 +g1,17420:12807989,8104188 +g1,17420:14026303,8104188 +g1,17420:15325226,8104188 +g1,17420:16175883,8104188 +(1,17420:16175883,8104188:0,452978,115847 +r1,17477:17940996,8104188:1765113,568825,115847 +k1,17420:16175883,8104188:-1765113 +) +(1,17420:16175883,8104188:1765113,452978,115847 +k1,17420:16175883,8104188:3277 +h1,17420:17937719,8104188:0,411205,112570 +) +k1,17421:32583029,8104188:14468363 +g1,17421:32583029,8104188 +) +v1,17423:6764466,8789043:0,393216,0 +(1,17428:6764466,9814581:25818563,1418754,196608 +g1,17428:6764466,9814581 +g1,17428:6764466,9814581 +g1,17428:6567858,9814581 +(1,17428:6567858,9814581:0,1418754,196608 +r1,17477:32779637,9814581:26211779,1615362,196608 +k1,17428:6567857,9814581:-26211780 +) +(1,17428:6567858,9814581:26211779,1418754,196608 +[1,17428:6764466,9814581:25818563,1222146,0 +(1,17425:6764466,9016874:25818563,424439,112852 +(1,17424:6764466,9016874:0,0,0 +g1,17424:6764466,9016874 +g1,17424:6764466,9016874 +g1,17424:6436786,9016874 +(1,17424:6436786,9016874:0,0,0 +) +g1,17424:6764466,9016874 +) +k1,17425:6764466,9016874:0 +g1,17425:10747914,9016874 +g1,17425:11411822,9016874 +g1,17425:14067454,9016874 +g1,17425:16059178,9016874 +g1,17425:16723086,9016874 +g1,17425:18382856,9016874 +g1,17425:19046764,9016874 +g1,17425:20706534,9016874 +g1,17425:21370442,9016874 +g1,17425:22034350,9016874 +g1,17425:24026074,9016874 +h1,17425:24358028,9016874:0,0,0 +k1,17425:32583029,9016874:8225001 +g1,17425:32583029,9016874 +) +(1,17426:6764466,9701729:25818563,424439,112852 +h1,17426:6764466,9701729:0,0,0 +g1,17426:7096420,9701729 +g1,17426:7428374,9701729 +k1,17426:7428374,9701729:0 +h1,17426:11411821,9701729:0,0,0 +k1,17426:32583029,9701729:21171208 +g1,17426:32583029,9701729 +) +] +) +g1,17428:32583029,9814581 +g1,17428:6764466,9814581 +g1,17428:6764466,9814581 +g1,17428:32583029,9814581 +g1,17428:32583029,9814581 +) +h1,17428:6764466,10011189:0,0,0 +(1,17431:6764466,19113560:25818563,9036835,0 +k1,17431:10637290,19113560:3872824 +h1,17430:10637290,19113560:0,0,0 +(1,17430:10637290,19113560:18072915,9036835,0 +(1,17430:10637290,19113560:18073715,9036857,0 +(1,17430:10637290,19113560:18073715,9036857,0 +(1,17430:10637290,19113560:0,9036857,0 +(1,17430:10637290,19113560:0,14208860,0 +(1,17430:10637290,19113560:28417720,14208860,0 +) +k1,17430:10637290,19113560:-28417720 +) +) +g1,17430:28711005,19113560 +) +) +) +g1,17431:28710205,19113560 +k1,17431:32583029,19113560:3872824 +) +] +g1,17437:32583029,19113560 +) +h1,17437:6630773,19113560:0,0,0 +(1,17441:6630773,19978640:25952256,513147,126483 +h1,17439:6630773,19978640:983040,0,0 +k1,17439:8804841,19978640:237479 +k1,17439:10146601,19978640:237478 +k1,17439:13951860,19978640:237479 +k1,17439:15208423,19978640:237478 +k1,17439:16835265,19978640:237479 +k1,17439:21909955,19978640:237478 +k1,17439:23833020,19978640:237479 +k1,17439:27160521,19978640:237478 +k1,17439:29253324,19978640:237479 +k1,17439:30176964,19978640:237478 +k1,17439:30770303,19978640:237479 +k1,17439:32583029,19978640:0 +) +(1,17441:6630773,20843720:25952256,505283,120913 +k1,17440:8733915,20843720:209152 +k1,17440:10172931,20843720:195667 +$1,17440:10172931,20843720 +$1,17440:10780450,20843720 +k1,17440:10976117,20843720:195667 +k1,17440:12126119,20843720:195667 +$1,17440:12126119,20843720 +$1,17440:12733638,20843720 +k1,17440:12929305,20843720:195667 +k1,17440:14191964,20843720:195667 +$1,17440:14191964,20843720 +$1,17440:14799483,20843720 +k1,17440:14995150,20843720:195667 +k1,17440:16145152,20843720:195667 +$1,17440:16145152,20843720 +$1,17440:16752671,20843720 +k1,17440:16948338,20843720:195667 +k1,17440:18753045,20843720:195667 +$1,17440:18753045,20843720 +$1,17440:19360564,20843720 +k1,17440:19556231,20843720:195667 +k1,17440:21178683,20843720:195668 +$1,17440:21178683,20843720 +$1,17440:21786202,20843720 +k1,17440:21981869,20843720:195667 +k1,17440:23131871,20843720:195667 +$1,17440:23131871,20843720 +$1,17440:23739390,20843720 +k1,17440:23935057,20843720:195667 +k1,17440:27180704,20843720:195667 +$1,17440:27180704,20843720 +$1,17440:27788223,20843720 +k1,17440:27983890,20843720:195667 +k1,17440:29973802,20843720:195667 +$1,17440:29973802,20843720 +$1,17440:30581321,20843720 +k1,17440:30776988,20843720:195667 +k1,17440:32583029,20843720:0 +) +(1,17441:6630773,21708800:25952256,454754,120913 +k1,17441:32583028,21708800:24201068 +g1,17441:32583028,21708800 +) +(1,17444:6630773,22573880:25952256,513147,134348 +h1,17442:6630773,22573880:983040,0,0 +k1,17442:9335384,22573880:246356 +k1,17442:10241031,22573880:246355 +k1,17442:11506472,22573880:246356 +k1,17442:14621994,22573880:246356 +k1,17442:15527641,22573880:246355 +k1,17442:16793082,22573880:246356 +k1,17442:19942027,22573880:246355 +k1,17442:23893789,22573880:246356 +k1,17442:25995469,22573880:246356 +k1,17442:27342829,22573880:246355 +k1,17442:29820686,22573880:246356 +k1,17442:32583029,22573880:0 +) +(1,17444:6630773,23438960:25952256,513147,134348 +k1,17442:9444710,23438960:190531 +k1,17442:12834709,23438960:190531 +k1,17442:14216684,23438960:190530 +k1,17442:16158992,23438960:190531 +k1,17442:17008815,23438960:190531 +k1,17442:18218431,23438960:190531 +k1,17442:21601876,23438960:190531 +k1,17442:25232392,23438960:190531 +k1,17442:26614367,23438960:190530 +k1,17442:29487287,23438960:190531 +k1,17442:31725818,23438960:190531 +k1,17444:32583029,23438960:0 +) +(1,17444:6630773,24304040:25952256,513147,134348 +k1,17442:9572784,24304040:183601 +k1,17442:11040892,24304040:183602 +k1,17442:12328775,24304040:183601 +k1,17442:13260143,24304040:183602 +k1,17442:14956970,24304040:183601 +k1,17442:15792000,24304040:183602 +k1,17442:18237904,24304040:183601 +k1,17442:19930145,24304040:183602 +k1,17442:23047137,24304040:183601 +k1,17442:25063126,24304040:183602 +k1,17442:26238287,24304040:183601 +k1,17442:27707705,24304040:183602 +k1,17442:29541503,24304040:183601 +k1,17444:32583029,24304040:0 +) +(1,17444:6630773,25169120:25952256,505283,134348 +k1,17442:8306801,25169120:233581 +k1,17442:10284295,25169120:233581 +k1,17442:12593402,25169120:233582 +k1,17442:14855978,25169120:233581 +k1,17442:17704446,25169120:233581 +k1,17442:19327390,25169120:233581 +k1,17442:21850799,25169120:233581 +k1,17442:22770542,25169120:233581 +k1,17442:24282731,25169120:233582 +k1,17442:25202474,25169120:233581 +k1,17442:28107302,25169120:233581 +k1,17442:31478747,25169120:233581 +k1,17442:32583029,25169120:0 +) +(1,17444:6630773,26034200:25952256,513147,134348 +k1,17442:9033899,26034200:174247 +k1,17442:11218135,26034200:174247 +k1,17442:11748242,26034200:174247 +k1,17442:13795508,26034200:174247 +(1,17442:13795508,26034200:0,452978,122846 +r1,17477:15208909,26034200:1413401,575824,122846 +k1,17442:13795508,26034200:-1413401 +) +(1,17442:13795508,26034200:1413401,452978,122846 +k1,17442:13795508,26034200:3277 +h1,17442:15205632,26034200:0,411205,112570 +) +k1,17442:15383156,26034200:174247 +k1,17442:16834700,26034200:174247 +k1,17442:19142144,26034200:174247 +k1,17442:22181626,26034200:174248 +k1,17442:23547318,26034200:174247 +k1,17442:25102409,26034200:174247 +k1,17442:26772843,26034200:174247 +k1,17442:28051372,26034200:174247 +k1,17442:30186456,26034200:174247 +k1,17442:31643898,26034200:174247 +k1,17444:32583029,26034200:0 +) +(1,17444:6630773,26899280:25952256,505283,134348 +k1,17442:9650937,26899280:163450 +k1,17442:12647508,26899280:163450 +k1,17442:16455414,26899280:163449 +k1,17442:17810309,26899280:163450 +k1,17442:19440455,26899280:163450 +k1,17442:23037336,26899280:163450 +k1,17442:24483980,26899280:163449 +k1,17442:27862626,26899280:163450 +k1,17442:29762780,26899280:163450 +(1,17442:29762780,26899280:0,452978,122846 +r1,17477:32583029,26899280:2820249,575824,122846 +k1,17442:29762780,26899280:-2820249 +) +(1,17442:29762780,26899280:2820249,452978,122846 +k1,17442:29762780,26899280:3277 +h1,17442:32579752,26899280:0,411205,112570 +) +k1,17442:32583029,26899280:0 +) +(1,17444:6630773,27764360:25952256,513147,134348 +k1,17442:7597149,27764360:195673 +k1,17442:8546485,27764360:195672 +k1,17442:11370152,27764360:195673 +k1,17442:16304733,27764360:195673 +k1,17442:17448057,27764360:195673 +k1,17442:19933557,27764360:195672 +k1,17442:20788522,27764360:195673 +k1,17442:23217007,27764360:195673 +k1,17442:26175023,27764360:195673 +k1,17442:27938316,27764360:195672 +(1,17442:27938316,27764360:0,459977,115847 +r1,17477:31461988,27764360:3523672,575824,115847 +k1,17442:27938316,27764360:-3523672 +) +(1,17442:27938316,27764360:3523672,459977,115847 +k1,17442:27938316,27764360:3277 +h1,17442:31458711,27764360:0,411205,112570 +) +k1,17442:31657661,27764360:195673 +k1,17444:32583029,27764360:0 +) +(1,17444:6630773,28629440:25952256,513147,126483 +k1,17442:7767319,28629440:174477 +k1,17442:11146507,28629440:174477 +k1,17442:14190150,28629440:174477 +k1,17442:14980665,28629440:174477 +k1,17442:15511002,28629440:174477 +k1,17442:17671875,28629440:174477 +k1,17442:18950633,28629440:174476 +k1,17442:20410926,28629440:174477 +k1,17442:21333169,28629440:174477 +k1,17442:24342733,28629440:174477 +k1,17442:25708655,28629440:174477 +k1,17442:27166327,28629440:174477 +k1,17442:30266331,28629440:174477 +k1,17442:32583029,28629440:0 +) +(1,17444:6630773,29494520:25952256,513147,134348 +k1,17442:9443250,29494520:288686 +k1,17442:12093854,29494520:288686 +k1,17442:13573985,29494520:288686 +k1,17442:16193787,29494520:288686 +k1,17442:17436022,29494520:288686 +k1,17442:18857170,29494520:288686 +k1,17442:21815137,29494520:288686 +k1,17442:22719861,29494520:288686 +k1,17442:24027632,29494520:288686 +k1,17442:27534136,29494520:288686 +k1,17442:30431810,29494520:288686 +k1,17442:31379788,29494520:288686 +k1,17442:32583029,29494520:0 +) +(1,17444:6630773,30359600:25952256,513147,134348 +k1,17442:9237442,30359600:189046 +k1,17442:10756869,30359600:189046 +k1,17442:11597343,30359600:189046 +k1,17442:12878874,30359600:189046 +k1,17442:14087005,30359600:189046 +k1,17442:17178641,30359600:189046 +k1,17442:18026980,30359600:189047 +k1,17442:20935115,30359600:189046 +k1,17442:21775589,30359600:189046 +k1,17442:24988466,30359600:189046 +k1,17442:26879482,30359600:189046 +k1,17442:28784916,30359600:189046 +k1,17442:29633254,30359600:189046 +k1,17442:32583029,30359600:0 +) +(1,17444:6630773,31224680:25952256,505283,134348 +g1,17442:11189457,31224680 +g1,17442:14369263,31224680 +g1,17442:16218689,31224680 +g1,17442:19104239,31224680 +g1,17442:20911066,31224680 +g1,17442:22552742,31224680 +g1,17442:24495884,31224680 +g1,17442:25311151,31224680 +g1,17442:26529465,31224680 +g1,17442:29720413,31224680 +g1,17442:31948637,31224680 +k1,17444:32583029,31224680:634392 +g1,17444:32583029,31224680 +) +(1,17445:6630773,33341498:25952256,555811,147783 +(1,17445:6630773,33341498:2450326,534184,12975 +g1,17445:6630773,33341498 +g1,17445:9081099,33341498 +) +g1,17445:11085911,33341498 +g1,17445:12089399,33341498 +g1,17445:12811737,33341498 +k1,17445:32583028,33341498:17155880 +g1,17445:32583028,33341498 +) +(1,17448:6630773,34599794:25952256,505283,134348 +k1,17447:7852078,34599794:267756 +k1,17447:9224116,34599794:267756 +k1,17447:13084555,34599794:267755 +(1,17447:13084555,34599794:0,452978,122846 +r1,17477:14497956,34599794:1413401,575824,122846 +k1,17447:13084555,34599794:-1413401 +) +(1,17447:13084555,34599794:1413401,452978,122846 +k1,17447:13084555,34599794:3277 +h1,17447:14494679,34599794:0,411205,112570 +) +k1,17447:14765712,34599794:267756 +k1,17447:16310765,34599794:267756 +k1,17447:18868349,34599794:267756 +k1,17447:20327549,34599794:267755 +k1,17447:22103944,34599794:267756 +k1,17447:26299273,34599794:267756 +k1,17447:27183067,34599794:267756 +k1,17447:28469907,34599794:267755 +k1,17447:30391136,34599794:267756 +k1,17447:31896867,34599794:267756 +k1,17447:32583029,34599794:0 +) +(1,17448:6630773,35464874:25952256,513147,134348 +k1,17447:8507020,35464874:174277 +k1,17447:9096115,35464874:174252 +k1,17447:11733891,35464874:174278 +k1,17447:12861717,35464874:174277 +k1,17447:14140276,35464874:174277 +k1,17447:16725623,35464874:174277 +k1,17447:17709270,35464874:174277 +k1,17447:19522602,35464874:174277 +k1,17447:21432272,35464874:174277 +k1,17447:22625635,35464874:174278 +k1,17447:25876827,35464874:174277 +k1,17447:27242549,35464874:174277 +k1,17447:30201451,35464874:174277 +k1,17447:32583029,35464874:0 +) +(1,17448:6630773,36329954:25952256,513147,134348 +g1,17447:7777653,36329954 +g1,17447:8995967,36329954 +(1,17447:8995967,36329954:0,452978,122846 +r1,17477:10409368,36329954:1413401,575824,122846 +k1,17447:8995967,36329954:-1413401 +) +(1,17447:8995967,36329954:1413401,452978,122846 +k1,17447:8995967,36329954:3277 +h1,17447:10406091,36329954:0,411205,112570 +) +g1,17447:10608597,36329954 +g1,17447:12362995,36329954 +g1,17447:13942412,36329954 +g1,17447:16278115,36329954 +g1,17447:17302442,36329954 +g1,17447:18455220,36329954 +g1,17447:20142772,36329954 +g1,17447:21103529,36329954 +g1,17447:23336340,36329954 +g1,17447:23891429,36329954 +g1,17447:26116376,36329954 +g1,17447:27583071,36329954 +g1,17447:28138160,36329954 +k1,17448:32583029,36329954:1759859 +g1,17448:32583029,36329954 +) +v1,17450:6630773,37014809:0,393216,0 +(1,17456:6630773,38725202:25952256,2103609,196608 +g1,17456:6630773,38725202 +g1,17456:6630773,38725202 +g1,17456:6434165,38725202 +(1,17456:6434165,38725202:0,2103609,196608 +r1,17477:32779637,38725202:26345472,2300217,196608 +k1,17456:6434165,38725202:-26345472 +) +(1,17456:6434165,38725202:26345472,2103609,196608 +[1,17456:6630773,38725202:25952256,1907001,0 +(1,17452:6630773,37242640:25952256,424439,112852 +(1,17451:6630773,37242640:0,0,0 +g1,17451:6630773,37242640 +g1,17451:6630773,37242640 +g1,17451:6303093,37242640 +(1,17451:6303093,37242640:0,0,0 +) +g1,17451:6630773,37242640 +) +g1,17452:7294681,37242640 +g1,17452:8290543,37242640 +g1,17452:12273991,37242640 +g1,17452:12937899,37242640 +k1,17452:12937899,37242640:0 +h1,17452:15261577,37242640:0,0,0 +k1,17452:32583029,37242640:17321452 +g1,17452:32583029,37242640 +) +(1,17453:6630773,37927495:25952256,424439,112852 +h1,17453:6630773,37927495:0,0,0 +g1,17453:6962727,37927495 +g1,17453:7294681,37927495 +g1,17453:7626635,37927495 +g1,17453:7958589,37927495 +g1,17453:8290543,37927495 +g1,17453:8622497,37927495 +g1,17453:8954451,37927495 +g1,17453:10946175,37927495 +g1,17453:11610083,37927495 +g1,17453:13601807,37927495 +g1,17453:14265715,37927495 +g1,17453:14929623,37927495 +g1,17453:16921347,37927495 +h1,17453:17253301,37927495:0,0,0 +k1,17453:32583029,37927495:15329728 +g1,17453:32583029,37927495 +) +(1,17454:6630773,38612350:25952256,424439,112852 +h1,17454:6630773,38612350:0,0,0 +g1,17454:6962727,38612350 +g1,17454:7294681,38612350 +k1,17454:7294681,38612350:0 +h1,17454:11278128,38612350:0,0,0 +k1,17454:32583028,38612350:21304900 +g1,17454:32583028,38612350 +) +] +) +g1,17456:32583029,38725202 +g1,17456:6630773,38725202 +g1,17456:6630773,38725202 +g1,17456:32583029,38725202 +g1,17456:32583029,38725202 +) +h1,17456:6630773,38921810:0,0,0 +(1,17460:6630773,39786890:25952256,505283,126483 +h1,17459:6630773,39786890:983040,0,0 +k1,17459:9559218,39786890:162170 +k1,17459:10589740,39786890:162170 +k1,17459:12265136,39786890:162170 +k1,17459:13043345,39786890:162171 +k1,17459:14224600,39786890:162170 +k1,17459:17141248,39786890:162170 +k1,17459:19582105,39786890:162170 +k1,17459:22490889,39786890:162170 +(1,17459:22490889,39786890:0,414482,115847 +r1,17477:22849155,39786890:358266,530329,115847 +k1,17459:22490889,39786890:-358266 +) +(1,17459:22490889,39786890:358266,414482,115847 +k1,17459:22490889,39786890:3277 +h1,17459:22845878,39786890:0,411205,112570 +) +k1,17459:23011325,39786890:162170 +k1,17459:23824923,39786890:162170 +k1,17459:26923762,39786890:162171 +k1,17459:28105017,39786890:162170 +k1,17459:30048456,39786890:162170 +k1,17459:31078978,39786890:162170 +k1,17459:32583029,39786890:0 +) +(1,17460:6630773,40651970:25952256,505283,134348 +k1,17459:9864040,40651970:179289 +k1,17459:10852699,40651970:179289 +k1,17459:15333116,40651970:179289 +k1,17459:15927228,40651970:179269 +k1,17459:18570015,40651970:179289 +k1,17459:19377139,40651970:179289 +k1,17459:20575513,40651970:179289 +k1,17459:22408275,40651970:179289 +k1,17459:23999210,40651970:179289 +k1,17459:25046851,40651970:179289 +k1,17459:26330422,40651970:179289 +k1,17459:28920781,40651970:179289 +k1,17459:29909440,40651970:179289 +k1,17459:31900144,40651970:179289 +k1,17459:32583029,40651970:0 +) +(1,17460:6630773,41517050:25952256,505283,134348 +g1,17459:9589068,41517050 +k1,17460:32583030,41517050:20530464 +g1,17460:32583030,41517050 +) +v1,17462:6630773,42201905:0,393216,0 +(1,17467:6630773,43111286:25952256,1302597,196608 +g1,17467:6630773,43111286 +g1,17467:6630773,43111286 +g1,17467:6434165,43111286 +(1,17467:6434165,43111286:0,1302597,196608 +r1,17477:32779637,43111286:26345472,1499205,196608 +k1,17467:6434165,43111286:-26345472 +) +(1,17467:6434165,43111286:26345472,1302597,196608 +[1,17467:6630773,43111286:25952256,1105989,0 +(1,17464:6630773,42313579:25952256,308282,106246 +(1,17463:6630773,42313579:0,0,0 +g1,17463:6630773,42313579 +g1,17463:6630773,42313579 +g1,17463:6303093,42313579 +(1,17463:6303093,42313579:0,0,0 +) +g1,17463:6630773,42313579 +) +g1,17464:7294681,42313579 +h1,17464:7626635,42313579:0,0,0 +k1,17464:32583029,42313579:24956394 +g1,17464:32583029,42313579 +) +(1,17465:6630773,42998434:25952256,431045,112852 +h1,17465:6630773,42998434:0,0,0 +g1,17465:6962727,42998434 +g1,17465:7294681,42998434 +g1,17465:12937898,42998434 +g1,17465:13601806,42998434 +g1,17465:16257438,42998434 +g1,17465:18581116,42998434 +g1,17465:19245024,42998434 +g1,17465:21236748,42998434 +g1,17465:23892380,42998434 +g1,17465:24556288,42998434 +g1,17465:25220196,42998434 +g1,17465:25884104,42998434 +h1,17465:26548012,42998434:0,0,0 +k1,17465:32583029,42998434:6035017 +g1,17465:32583029,42998434 +) +] +) +g1,17467:32583029,43111286 +g1,17467:6630773,43111286 +g1,17467:6630773,43111286 +g1,17467:32583029,43111286 +g1,17467:32583029,43111286 +) +h1,17467:6630773,43307894:0,0,0 ] (1,17477:32583029,45706769:0,0,0 g1,17477:32583029,45706769 @@ -300966,8 +297191,10 @@ g1,17477:-473656,-710413 ] ) ] -!32507 -}304 +!23264 +}286 +Input:2584:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2585:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2586:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2587:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2588:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -300978,3479 +297205,3962 @@ Input:2592:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConso Input:2593:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2594:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2595:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2596:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2597:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2598:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2599:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2600:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2601:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2602:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2603:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1704 -{305 -[1,17526:4262630,47279633:28320399,43253760,0 -(1,17526:4262630,4025873:0,0,0 -[1,17526:-473656,4025873:0,0,0 -(1,17526:-473656,-710413:0,0,0 -(1,17526:-473656,-644877:0,0,0 -k1,17526:-473656,-644877:-65536 +!1140 +{287 +[1,17563:4262630,47279633:28320399,43253760,0 +(1,17563:4262630,4025873:0,0,0 +[1,17563:-473656,4025873:0,0,0 +(1,17563:-473656,-710413:0,0,0 +(1,17563:-473656,-644877:0,0,0 +k1,17563:-473656,-644877:-65536 ) -(1,17526:-473656,4736287:0,0,0 -k1,17526:-473656,4736287:5209943 +(1,17563:-473656,4736287:0,0,0 +k1,17563:-473656,4736287:5209943 ) -g1,17526:-473656,-710413 +g1,17563:-473656,-710413 ) ] ) -[1,17526:6630773,47279633:25952256,43253760,0 -[1,17526:6630773,4812305:25952256,786432,0 -(1,17526:6630773,4812305:25952256,513147,126483 -(1,17526:6630773,4812305:25952256,513147,126483 -g1,17526:3078558,4812305 -[1,17526:3078558,4812305:0,0,0 -(1,17526:3078558,2439708:0,1703936,0 -k1,17526:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,17526:2537886,2439708:1179648,16384,0 +[1,17563:6630773,47279633:25952256,43253760,0 +[1,17563:6630773,4812305:25952256,786432,0 +(1,17563:6630773,4812305:25952256,513147,126483 +(1,17563:6630773,4812305:25952256,513147,126483 +g1,17563:3078558,4812305 +[1,17563:3078558,4812305:0,0,0 +(1,17563:3078558,2439708:0,1703936,0 +k1,17563:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,17563:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,17526:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,17563:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,17526:3078558,4812305:0,0,0 -(1,17526:3078558,2439708:0,1703936,0 -g1,17526:29030814,2439708 -g1,17526:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,17526:36151628,1915420:16384,1179648,0 +[1,17563:3078558,4812305:0,0,0 +(1,17563:3078558,2439708:0,1703936,0 +g1,17563:29030814,2439708 +g1,17563:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,17563:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,17526:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,17563:37855564,2439708:1179648,16384,0 ) ) -k1,17526:3078556,2439708:-34777008 +k1,17563:3078556,2439708:-34777008 ) ] -[1,17526:3078558,4812305:0,0,0 -(1,17526:3078558,49800853:0,16384,2228224 -k1,17526:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,17526:2537886,49800853:1179648,16384,0 +[1,17563:3078558,4812305:0,0,0 +(1,17563:3078558,49800853:0,16384,2228224 +k1,17563:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,17563:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,17526:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,17563:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 -) -] -) -) -) -] -[1,17526:3078558,4812305:0,0,0 -(1,17526:3078558,49800853:0,16384,2228224 -g1,17526:29030814,49800853 -g1,17526:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,17526:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] -) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,17526:37855564,49800853:1179648,16384,0 -) -) -k1,17526:3078556,49800853:-34777008 -) -] -g1,17526:6630773,4812305 -k1,17526:21350816,4812305:13524666 -g1,17526:21999622,4812305 -g1,17526:25611966,4812305 -g1,17526:28956923,4812305 -g1,17526:29772190,4812305 -) -) -] -[1,17526:6630773,45706769:25952256,40108032,0 -(1,17526:6630773,45706769:25952256,40108032,0 -(1,17526:6630773,45706769:0,0,0 -g1,17526:6630773,45706769 -) -[1,17526:6630773,45706769:25952256,40108032,0 -(1,17476:6630773,6254097:25952256,513147,126483 -k1,17475:9673173,6254097:280057 -k1,17475:13161873,6254097:280057 -k1,17475:16283571,6254097:280057 -k1,17475:19342355,6254097:280057 -k1,17475:20383940,6254097:280057 -k1,17475:21019858,6254097:280058 -k1,17475:23823051,6254097:280057 -k1,17475:24971460,6254097:280057 -k1,17475:26781783,6254097:280057 -k1,17475:27713268,6254097:280057 -k1,17475:28927868,6254097:280057 -k1,17475:30227010,6254097:280057 -k1,17475:32583029,6254097:0 -) -(1,17476:6630773,7095585:25952256,513147,134348 -k1,17475:9628498,7095585:190163 -k1,17475:10477954,7095585:190164 -k1,17475:13103435,7095585:190163 -k1,17475:14485044,7095585:190164 -k1,17475:17883850,7095585:190163 -k1,17475:20915655,7095585:190164 -k1,17475:21757246,7095585:190163 -k1,17475:25121974,7095585:190164 -k1,17475:25924899,7095585:190163 -k1,17475:27765260,7095585:190164 -k1,17475:29397870,7095585:190163 -k1,17475:30744744,7095585:190164 -k1,17476:32583029,7095585:0 -k1,17476:32583029,7095585:0 -) -(1,17478:6630773,7937073:25952256,513147,134348 -h1,17477:6630773,7937073:983040,0,0 -k1,17477:8989354,7937073:178854 -k1,17477:13994278,7937073:178853 -k1,17477:14832424,7937073:178854 -k1,17477:17839811,7937073:178854 -k1,17477:19628885,7937073:178854 -k1,17477:22039239,7937073:178853 -k1,17477:23802098,7937073:178854 -k1,17477:26972671,7937073:178854 -k1,17477:27810817,7937073:178854 -k1,17477:29687052,7937073:178853 -k1,17477:31563944,7937073:178854 -k1,17477:32583029,7937073:0 -) -(1,17478:6630773,8778561:25952256,513147,134348 -k1,17477:8182062,8778561:268094 -k1,17477:10534201,8778561:268094 -k1,17477:11333792,8778561:268094 -k1,17477:13752778,8778561:268094 -k1,17477:14233795,8778561:268025 -k1,17477:15781807,8778561:268094 -k1,17477:17447783,8778561:268093 -k1,17477:18071737,8778561:268094 -k1,17477:21102174,8778561:268094 -k1,17477:24205355,8778561:268094 -k1,17477:25426998,8778561:268094 -k1,17477:26382565,8778561:268094 -k1,17477:27006519,8778561:268094 -k1,17477:30847636,8778561:268094 -k1,17478:32583029,8778561:0 -) -(1,17478:6630773,9620049:25952256,513147,134348 -(1,17477:6630773,9620049:0,452978,115847 -r1,17526:8395886,9620049:1765113,568825,115847 -k1,17477:6630773,9620049:-1765113 -) -(1,17477:6630773,9620049:1765113,452978,115847 -k1,17477:6630773,9620049:3277 -h1,17477:8392609,9620049:0,411205,112570 -) -k1,17477:8706094,9620049:136538 -k1,17477:10216205,9620049:136476 -k1,17477:10884240,9620049:136538 -k1,17477:11376637,9620049:136537 -k1,17477:14769004,9620049:136538 -k1,17477:16190048,9620049:136538 -k1,17477:20643443,9620049:136538 -k1,17477:23116995,9620049:136538 -k1,17477:25296290,9620049:136538 -k1,17477:28863638,9620049:136538 -k1,17477:30019261,9620049:136538 -k1,17477:32583029,9620049:0 -) -(1,17478:6630773,10461537:25952256,513147,134348 -k1,17477:8547650,10461537:221461 -k1,17477:9428403,10461537:221461 -k1,17477:12294898,10461537:221462 -k1,17477:14962163,10461537:221461 -k1,17477:15835052,10461537:221461 -k1,17477:17075598,10461537:221461 -k1,17477:20489974,10461537:221462 -k1,17477:23605505,10461537:221461 -k1,17477:24443004,10461537:221461 -k1,17477:25435168,10461537:221461 -k1,17477:28171246,10461537:221462 -k1,17477:29044135,10461537:221461 -k1,17477:31563944,10461537:221461 -k1,17477:32583029,10461537:0 -) -(1,17478:6630773,11303025:25952256,513147,134348 -k1,17477:9996047,11303025:228721 -k1,17477:10912240,11303025:228720 -k1,17477:12708582,11303025:228721 -k1,17477:13956387,11303025:228720 -k1,17477:17093596,11303025:228721 -k1,17477:17981608,11303025:228720 -k1,17477:20782617,11303025:228721 -k1,17477:25083089,11303025:228720 -k1,17477:25994695,11303025:228721 -k1,17477:28835680,11303025:228720 -k1,17477:30847636,11303025:228721 -k1,17477:32583029,11303025:0 -) -(1,17478:6630773,12144513:25952256,513147,134348 -k1,17477:8087123,12144513:253109 -k1,17477:9531677,12144513:253109 -k1,17477:11986796,12144513:253109 -k1,17477:15024531,12144513:253110 -k1,17477:15735737,12144513:253109 -k1,17477:16520343,12144513:253109 -k1,17477:17432744,12144513:253109 -k1,17477:20129035,12144513:253109 -k1,17477:21033572,12144513:253109 -k1,17477:22563978,12144513:253109 -k1,17477:23836173,12144513:253110 -k1,17477:26983352,12144513:253109 -k1,17477:29916884,12144513:253109 -k1,17477:31563944,12144513:253109 -k1,17477:32583029,12144513:0 -) -(1,17478:6630773,12986001:25952256,513147,134348 -k1,17477:9410813,12986001:160566 -k1,17477:10058928,12986001:160527 -k1,17477:12958244,12986001:160566 -k1,17477:16103320,12986001:160566 -k1,17477:16795383,12986001:160566 -k1,17477:17607377,12986001:160566 -k1,17477:19164515,12986001:160566 -k1,17477:21770885,12986001:160566 -k1,17477:22582879,12986001:160566 -k1,17477:23099305,12986001:160566 -k1,17477:25919322,12986001:160566 -k1,17477:28715091,12986001:160566 -k1,17477:30048096,12986001:160566 -k1,17477:32583029,12986001:0 -) -(1,17478:6630773,13827489:25952256,513147,134348 -g1,17477:7783551,13827489 -g1,17477:9471103,13827489 -g1,17477:10431860,13827489 -g1,17477:14006193,13827489 -g1,17477:15897562,13827489 -g1,17477:18725440,13827489 -g1,17477:20314032,13827489 -g1,17477:23875258,13827489 -k1,17478:32583029,13827489:6095506 -g1,17478:32583029,13827489 -) -v1,17480:6630773,14959285:0,393216,0 -(1,17491:6630773,19931336:25952256,5365267,196608 -g1,17491:6630773,19931336 -g1,17491:6630773,19931336 -g1,17491:6434165,19931336 -(1,17491:6434165,19931336:0,5365267,196608 -r1,17526:32779637,19931336:26345472,5561875,196608 -k1,17491:6434165,19931336:-26345472 -) -(1,17491:6434165,19931336:26345472,5365267,196608 -[1,17491:6630773,19931336:25952256,5168659,0 -(1,17482:6630773,15166903:25952256,404226,107478 -(1,17481:6630773,15166903:0,0,0 -g1,17481:6630773,15166903 -g1,17481:6630773,15166903 -g1,17481:6303093,15166903 -(1,17481:6303093,15166903:0,0,0 -) -g1,17481:6630773,15166903 -) -g1,17482:7263065,15166903 -g1,17482:8211502,15166903 -g1,17482:9476085,15166903 -g1,17482:12005251,15166903 -g1,17482:14534417,15166903 -g1,17482:15166709,15166903 -g1,17482:16431292,15166903 -g1,17482:17063584,15166903 -g1,17482:18012021,15166903 -g1,17482:20857332,15166903 -g1,17482:22754206,15166903 -g1,17482:23702643,15166903 -k1,17482:23702643,15166903:0 -h1,17482:27180245,15166903:0,0,0 -k1,17482:32583029,15166903:5402784 -g1,17482:32583029,15166903 -) -(1,17483:6630773,15833081:25952256,410518,101187 -h1,17483:6630773,15833081:0,0,0 -g1,17483:7263065,15833081 -g1,17483:8843794,15833081 -g1,17483:10424523,15833081 -g1,17483:11689106,15833081 -g1,17483:12321398,15833081 -g1,17483:13585981,15833081 -g1,17483:14218273,15833081 -k1,17483:14218273,15833081:0 -h1,17483:17379730,15833081:0,0,0 -k1,17483:32583029,15833081:15203299 -g1,17483:32583029,15833081 -) -(1,17484:6630773,16499259:25952256,404226,76021 -h1,17484:6630773,16499259:0,0,0 -k1,17484:6630773,16499259:0 -h1,17484:11056813,16499259:0,0,0 -k1,17484:32583029,16499259:21526216 -g1,17484:32583029,16499259 -) -(1,17485:6630773,17165437:25952256,388497,9436 -h1,17485:6630773,17165437:0,0,0 -g1,17485:7263065,17165437 -g1,17485:8211503,17165437 -h1,17485:9476086,17165437:0,0,0 -k1,17485:32583030,17165437:23106944 -g1,17485:32583030,17165437 -) -(1,17486:6630773,17831615:25952256,404226,107478 -h1,17486:6630773,17831615:0,0,0 -g1,17486:7263065,17831615 -g1,17486:8211503,17831615 -g1,17486:9159940,17831615 -g1,17486:9792232,17831615 -g1,17486:11056816,17831615 -g1,17486:11689108,17831615 -g1,17486:13269838,17831615 -g1,17486:13902130,17831615 -g1,17486:19276607,17831615 -g1,17486:20857336,17831615 -g1,17486:21489628,17831615 -g1,17486:22438066,17831615 -g1,17486:23386503,17831615 -g1,17486:24018795,17831615 -g1,17486:27180253,17831615 -g1,17486:27812545,17831615 -h1,17486:28444837,17831615:0,0,0 -k1,17486:32583029,17831615:4138192 -g1,17486:32583029,17831615 -) -(1,17487:6630773,18497793:25952256,410518,101187 -h1,17487:6630773,18497793:0,0,0 -g1,17487:9159939,18497793 -g1,17487:10108377,18497793 -g1,17487:14534417,18497793 -h1,17487:15166708,18497793:0,0,0 -k1,17487:32583028,18497793:17416320 -g1,17487:32583028,18497793 -) -(1,17488:6630773,19163971:25952256,404226,101187 -h1,17488:6630773,19163971:0,0,0 -g1,17488:11689104,19163971 -g1,17488:12637542,19163971 -h1,17488:14850562,19163971:0,0,0 -k1,17488:32583030,19163971:17732468 -g1,17488:32583030,19163971 -) -(1,17489:6630773,19830149:25952256,404226,101187 -h1,17489:6630773,19830149:0,0,0 -g1,17489:12637542,19830149 -g1,17489:14218271,19830149 -g1,17489:15166709,19830149 -g1,17489:21173478,19830149 -g1,17489:22754207,19830149 -g1,17489:23386499,19830149 -h1,17489:24018790,19830149:0,0,0 -k1,17489:32583029,19830149:8564239 -g1,17489:32583029,19830149 -) -] -) -g1,17491:32583029,19931336 -g1,17491:6630773,19931336 -g1,17491:6630773,19931336 -g1,17491:32583029,19931336 -g1,17491:32583029,19931336 -) -h1,17491:6630773,20127944:0,0,0 -(1,17495:6630773,21435049:25952256,513147,134348 -h1,17494:6630773,21435049:983040,0,0 -k1,17494:8647010,21435049:215308 -k1,17494:9320414,21435049:215307 -k1,17494:10668184,21435049:215308 -k1,17494:11631257,21435049:215307 -k1,17494:13359791,21435049:215308 -k1,17494:14191137,21435049:215308 -k1,17494:17077691,21435049:215307 -k1,17494:20458388,21435049:215308 -k1,17494:21542047,21435049:215307 -k1,17494:23037273,21435049:215308 -k1,17494:23608441,21435049:215308 -k1,17494:25561763,21435049:215307 -k1,17494:26428499,21435049:215308 -k1,17494:27662891,21435049:215307 -k1,17494:29865906,21435049:215308 -k1,17494:32583029,21435049:0 -) -(1,17495:6630773,22276537:25952256,513147,134348 -g1,17494:7783551,22276537 -g1,17494:8798048,22276537 -g1,17494:10200518,22276537 -g1,17494:11628547,22276537 -g1,17494:12775427,22276537 -g1,17494:16881257,22276537 -g1,17494:18152655,22276537 -g1,17494:19637700,22276537 -g1,17494:20488357,22276537 -g1,17494:22830613,22276537 -g1,17494:26748355,22276537 -g1,17494:27563622,22276537 -g1,17494:28781936,22276537 -g1,17494:30968872,22276537 -k1,17495:32583029,22276537:422712 -g1,17495:32583029,22276537 -) -v1,17497:6630773,23408333:0,393216,0 -(1,17501:6630773,23723430:25952256,708313,196608 -g1,17501:6630773,23723430 -g1,17501:6630773,23723430 -g1,17501:6434165,23723430 -(1,17501:6434165,23723430:0,708313,196608 -r1,17526:32779637,23723430:26345472,904921,196608 -k1,17501:6434165,23723430:-26345472 -) -(1,17501:6434165,23723430:26345472,708313,196608 -[1,17501:6630773,23723430:25952256,511705,0 -(1,17499:6630773,23622243:25952256,410518,101187 -(1,17498:6630773,23622243:0,0,0 -g1,17498:6630773,23622243 -g1,17498:6630773,23622243 -g1,17498:6303093,23622243 -(1,17498:6303093,23622243:0,0,0 -) -g1,17498:6630773,23622243 -) -g1,17499:10108376,23622243 -g1,17499:11056814,23622243 -g1,17499:11689106,23622243 -g1,17499:12321398,23622243 -g1,17499:14850564,23622243 -g1,17499:15799002,23622243 -g1,17499:17063585,23622243 -g1,17499:17695877,23622243 -h1,17499:19276606,23622243:0,0,0 -k1,17499:32583029,23622243:13306423 -g1,17499:32583029,23622243 -) -] -) -g1,17501:32583029,23723430 -g1,17501:6630773,23723430 -g1,17501:6630773,23723430 -g1,17501:32583029,23723430 -g1,17501:32583029,23723430 -) -h1,17501:6630773,23920038:0,0,0 -(1,17505:6630773,25227144:25952256,513147,134348 -h1,17504:6630773,25227144:983040,0,0 -k1,17504:8793079,25227144:137244 -k1,17504:9949409,25227144:137245 -k1,17504:11392786,25227144:137244 -k1,17504:12807327,25227144:137244 -k1,17504:13402668,25227144:137244 -k1,17504:14071410,25227144:137245 -k1,17504:16569261,25227144:137244 -k1,17504:17357933,25227144:137244 -k1,17504:18587662,25227144:137244 -(1,17504:18587662,25227144:0,459977,115847 -r1,17526:22814758,25227144:4227096,575824,115847 -k1,17504:18587662,25227144:-4227096 -) -(1,17504:18587662,25227144:4227096,459977,115847 -k1,17504:18587662,25227144:3277 -h1,17504:22811481,25227144:0,411205,112570 -) -k1,17504:22952003,25227144:137245 -k1,17504:23740675,25227144:137244 -k1,17504:25274491,25227144:137244 -k1,17504:25767595,25227144:137244 -k1,17504:28416180,25227144:137245 -(1,17504:28416180,25227144:0,452978,122846 -r1,17526:30884717,25227144:2468537,575824,122846 -k1,17504:28416180,25227144:-2468537 -) -(1,17504:28416180,25227144:2468537,452978,122846 -k1,17504:28416180,25227144:3277 -h1,17504:30881440,25227144:0,411205,112570 -) -k1,17504:31021961,25227144:137244 -k1,17505:32583029,25227144:0 -) -(1,17505:6630773,26068632:25952256,513147,126483 -k1,17504:8665261,26068632:173921 -k1,17504:9600710,26068632:173921 -k1,17504:10793716,26068632:173921 -k1,17504:13490773,26068632:173921 -k1,17504:14316122,26068632:173921 -k1,17504:15509127,26068632:173920 -(1,17504:15509127,26068632:0,452978,115847 -r1,17526:17625952,26068632:2116825,568825,115847 -k1,17504:15509127,26068632:-2116825 -) -(1,17504:15509127,26068632:2116825,452978,115847 -k1,17504:15509127,26068632:3277 -h1,17504:17622675,26068632:0,411205,112570 -) -k1,17504:17799873,26068632:173921 -k1,17504:20991727,26068632:173921 -k1,17504:21793483,26068632:173921 -k1,17504:22986489,26068632:173921 -k1,17504:24527491,26068632:173921 -k1,17504:25368568,26068632:173921 -(1,17504:25368568,26068632:0,459977,115847 -r1,17526:32409359,26068632:7040791,575824,115847 -k1,17504:25368568,26068632:-7040791 -) -(1,17504:25368568,26068632:7040791,459977,115847 -k1,17504:25368568,26068632:3277 -h1,17504:32406082,26068632:0,411205,112570 -) -k1,17505:32583029,26068632:0 -) -(1,17505:6630773,26910120:25952256,513147,134348 -(1,17504:6630773,26910120:0,452978,122846 -r1,17526:10857869,26910120:4227096,575824,122846 -k1,17504:6630773,26910120:-4227096 -) -(1,17504:6630773,26910120:4227096,452978,122846 -k1,17504:6630773,26910120:3277 -h1,17504:10854592,26910120:0,411205,112570 -) -k1,17504:11012805,26910120:154936 -k1,17504:11699238,26910120:154936 -k1,17504:13367400,26910120:154936 -k1,17504:14283864,26910120:154936 -k1,17504:16878050,26910120:154936 -k1,17504:18413829,26910120:154935 -k1,17504:20424089,26910120:154936 -k1,17504:22570009,26910120:154936 -k1,17504:23744030,26910120:154936 -k1,17504:26793036,26910120:154936 -k1,17504:28990729,26910120:154936 -k1,17504:31591469,26910120:154936 -k1,17504:32583029,26910120:0 -) -(1,17505:6630773,27751608:25952256,505283,134348 -k1,17504:9335947,27751608:159756 -k1,17504:10889655,27751608:159757 -k1,17504:12068496,27751608:159756 -k1,17504:15436896,27751608:159757 -k1,17504:18042456,27751608:159756 -k1,17504:19803258,27751608:159757 -k1,17504:21743627,27751608:159756 -k1,17504:22301843,27751608:159757 -k1,17504:23113027,27751608:159756 -k1,17504:23878337,27751608:159757 -k1,17504:26717205,27751608:159756 -k1,17504:27638490,27751608:159757 -k1,17504:30159508,27751608:159756 -k1,17504:32583029,27751608:0 -) -(1,17505:6630773,28593096:25952256,505283,7863 -g1,17504:9465205,28593096 -g1,17504:10720874,28593096 -g1,17504:12111548,28593096 -k1,17505:32583029,28593096:18930074 -g1,17505:32583029,28593096 -) -v1,17507:6630773,29724891:0,393216,0 -(1,17516:6630773,33370877:25952256,4039202,196608 -g1,17516:6630773,33370877 -g1,17516:6630773,33370877 -g1,17516:6434165,33370877 -(1,17516:6434165,33370877:0,4039202,196608 -r1,17526:32779637,33370877:26345472,4235810,196608 -k1,17516:6434165,33370877:-26345472 -) -(1,17516:6434165,33370877:26345472,4039202,196608 -[1,17516:6630773,33370877:25952256,3842594,0 -(1,17509:6630773,29932509:25952256,404226,107478 -(1,17508:6630773,29932509:0,0,0 -g1,17508:6630773,29932509 -g1,17508:6630773,29932509 -g1,17508:6303093,29932509 -(1,17508:6303093,29932509:0,0,0 -) -g1,17508:6630773,29932509 -) -k1,17509:6630773,29932509:0 -g1,17509:14218270,29932509 -g1,17509:16115145,29932509 -g1,17509:16747437,29932509 -g1,17509:17695875,29932509 -g1,17509:18328167,29932509 -g1,17509:18960459,29932509 -g1,17509:20225042,29932509 -h1,17509:20541188,29932509:0,0,0 -k1,17509:32583029,29932509:12041841 -g1,17509:32583029,29932509 -) -(1,17510:6630773,30598687:25952256,410518,101187 -h1,17510:6630773,30598687:0,0,0 -g1,17510:6946919,30598687 -g1,17510:7263065,30598687 -g1,17510:15798999,30598687 -g1,17510:16431291,30598687 -g1,17510:20225040,30598687 -g1,17510:22438060,30598687 -g1,17510:23070352,30598687 -k1,17510:23070352,30598687:0 -h1,17510:24967226,30598687:0,0,0 -k1,17510:32583029,30598687:7615803 -g1,17510:32583029,30598687 -) -(1,17511:6630773,31264865:25952256,410518,107478 -h1,17511:6630773,31264865:0,0,0 -g1,17511:6946919,31264865 -g1,17511:7263065,31264865 -g1,17511:7579211,31264865 -g1,17511:7895357,31264865 -g1,17511:8211503,31264865 -g1,17511:8527649,31264865 -g1,17511:8843795,31264865 -g1,17511:9159941,31264865 -g1,17511:9476087,31264865 -g1,17511:9792233,31264865 -g1,17511:10108379,31264865 -g1,17511:10424525,31264865 -g1,17511:10740671,31264865 -g1,17511:11056817,31264865 -g1,17511:11372963,31264865 -g1,17511:11689109,31264865 -g1,17511:12005255,31264865 -g1,17511:12321401,31264865 -g1,17511:12637547,31264865 -g1,17511:12953693,31264865 -g1,17511:13269839,31264865 -g1,17511:15799005,31264865 -g1,17511:16431297,31264865 -g1,17511:19908900,31264865 -g1,17511:20541192,31264865 -k1,17511:20541192,31264865:0 -h1,17511:27180252,31264865:0,0,0 -k1,17511:32583029,31264865:5402777 -g1,17511:32583029,31264865 -) -(1,17512:6630773,31931043:25952256,404226,107478 -h1,17512:6630773,31931043:0,0,0 -g1,17512:6946919,31931043 -g1,17512:7263065,31931043 -g1,17512:7579211,31931043 -g1,17512:7895357,31931043 -g1,17512:8211503,31931043 -g1,17512:8527649,31931043 -g1,17512:8843795,31931043 -g1,17512:9159941,31931043 -g1,17512:9476087,31931043 -g1,17512:9792233,31931043 -g1,17512:10108379,31931043 -g1,17512:10424525,31931043 -g1,17512:10740671,31931043 -g1,17512:11056817,31931043 -g1,17512:11372963,31931043 -g1,17512:11689109,31931043 -g1,17512:12005255,31931043 -g1,17512:12321401,31931043 -g1,17512:12637547,31931043 -g1,17512:12953693,31931043 -g1,17512:13269839,31931043 -g1,17512:17063587,31931043 -g1,17512:17695879,31931043 -g1,17512:19592754,31931043 -h1,17512:19908900,31931043:0,0,0 -k1,17512:32583029,31931043:12674129 -g1,17512:32583029,31931043 -) -(1,17513:6630773,32597221:25952256,404226,107478 -h1,17513:6630773,32597221:0,0,0 -g1,17513:6946919,32597221 -g1,17513:7263065,32597221 -g1,17513:15166708,32597221 -g1,17513:15799000,32597221 -g1,17513:18012020,32597221 -g1,17513:19592749,32597221 -g1,17513:20225041,32597221 -g1,17513:22754207,32597221 -g1,17513:24967227,32597221 -g1,17513:25599519,32597221 -g1,17513:27180249,32597221 -k1,17513:27180249,32597221:0 -h1,17513:28128687,32597221:0,0,0 -k1,17513:32583029,32597221:4454342 -g1,17513:32583029,32597221 -) -(1,17514:6630773,33263399:25952256,404226,107478 -h1,17514:6630773,33263399:0,0,0 -g1,17514:6946919,33263399 -g1,17514:7263065,33263399 -g1,17514:7579211,33263399 -g1,17514:7895357,33263399 -g1,17514:8211503,33263399 -g1,17514:8527649,33263399 -g1,17514:8843795,33263399 -g1,17514:9159941,33263399 -g1,17514:9476087,33263399 -g1,17514:9792233,33263399 -g1,17514:10108379,33263399 -g1,17514:10424525,33263399 -g1,17514:10740671,33263399 -g1,17514:11056817,33263399 -g1,17514:11372963,33263399 -g1,17514:11689109,33263399 -g1,17514:12005255,33263399 -g1,17514:12321401,33263399 -g1,17514:12637547,33263399 -g1,17514:12953693,33263399 -g1,17514:13269839,33263399 -g1,17514:13585985,33263399 -g1,17514:13902131,33263399 -g1,17514:15799005,33263399 -g1,17514:16431297,33263399 -h1,17514:20225045,33263399:0,0,0 -k1,17514:32583029,33263399:12357984 -g1,17514:32583029,33263399 -) -] -) -g1,17516:32583029,33370877 -g1,17516:6630773,33370877 -g1,17516:6630773,33370877 -g1,17516:32583029,33370877 -g1,17516:32583029,33370877 -) -h1,17516:6630773,33567485:0,0,0 -(1,17519:6630773,43182305:25952256,9083666,0 -k1,17519:10523651,43182305:3892878 -h1,17518:10523651,43182305:0,0,0 -(1,17518:10523651,43182305:18166500,9083666,0 -(1,17518:10523651,43182305:18167376,9083688,0 -(1,17518:10523651,43182305:18167376,9083688,0 -(1,17518:10523651,43182305:0,9083688,0 -(1,17518:10523651,43182305:0,14208860,0 -(1,17518:10523651,43182305:28417720,14208860,0 -) -k1,17518:10523651,43182305:-28417720 -) -) -g1,17518:28691027,43182305 -) -) -) -g1,17519:28690151,43182305 -k1,17519:32583029,43182305:3892878 -) -(1,17526:6630773,44023793:25952256,513147,134348 -h1,17525:6630773,44023793:983040,0,0 -k1,17525:8395002,44023793:153354 -k1,17525:9567441,44023793:153354 -k1,17525:11962126,44023793:153354 -k1,17525:13392777,44023793:153354 -k1,17525:14414483,44023793:153354 -k1,17525:15845134,44023793:153354 -k1,17525:17017574,44023793:153355 -k1,17525:20054512,44023793:153354 -k1,17525:23275606,44023793:153354 -k1,17525:25130930,44023793:153354 -k1,17525:26678235,44023793:153354 -k1,17525:28862550,44023793:153354 -k1,17525:29963555,44023793:153354 -k1,17525:32583029,44023793:0 -) -(1,17526:6630773,44865281:25952256,505283,134348 -k1,17525:7492061,44865281:233453 -k1,17525:8928754,44865281:233452 -k1,17525:10529288,44865281:233453 -k1,17525:11631093,44865281:233453 -k1,17525:13394812,44865281:233453 -k1,17525:14279692,44865281:233452 -k1,17525:15605630,44865281:233453 -(1,17525:15605630,44865281:0,452978,122846 -r1,17526:18074167,44865281:2468537,575824,122846 -k1,17525:15605630,44865281:-2468537 -) -(1,17525:15605630,44865281:2468537,452978,122846 -k1,17525:15605630,44865281:3277 -h1,17525:18070890,44865281:0,411205,112570 -) -k1,17525:18307620,44865281:233453 -k1,17525:19192501,44865281:233453 -k1,17525:20173719,44865281:233452 -k1,17525:21715926,44865281:233453 -k1,17525:22600807,44865281:233453 -k1,17525:26394831,44865281:233453 -k1,17525:27647368,44865281:233452 -k1,17525:30688383,44865281:233453 -k1,17525:32583029,44865281:0 -) -(1,17526:6630773,45706769:25952256,513147,134348 -k1,17525:7485112,45706769:195047 -k1,17525:8699243,45706769:195046 -k1,17525:11417426,45706769:195047 -(1,17525:11624520,45706769:0,414482,115847 -r1,17526:13389633,45706769:1765113,530329,115847 -k1,17525:11624520,45706769:-1765113 -) -(1,17525:11624520,45706769:1765113,414482,115847 -k1,17525:11624520,45706769:3277 -h1,17525:13386356,45706769:0,411205,112570 -) -k1,17525:13791774,45706769:195047 -k1,17525:15554442,45706769:195047 -k1,17525:17033994,45706769:195046 -k1,17525:18742267,45706769:195047 -k1,17525:19956399,45706769:195047 -k1,17525:22848252,45706769:195046 -k1,17525:24112847,45706769:195047 -k1,17525:26202540,45706769:195047 -k1,17525:27056879,45706769:195047 -k1,17525:28271010,45706769:195046 -k1,17525:31629480,45706769:195047 -k1,17525:32583029,45706769:0 -) -] -(1,17526:32583029,45706769:0,0,0 -g1,17526:32583029,45706769 -) -) -] -(1,17526:6630773,47279633:25952256,0,0 -h1,17526:6630773,47279633:25952256,0,0 -) -] -(1,17526:4262630,4025873:0,0,0 -[1,17526:-473656,4025873:0,0,0 -(1,17526:-473656,-710413:0,0,0 -(1,17526:-473656,-710413:0,0,0 -g1,17526:-473656,-710413 -) -g1,17526:-473656,-710413 -) -] +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] -!25148 -}305 -Input:2604:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2605:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2606:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2607:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2608:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2609:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2610:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2611:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2612:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2613:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2614:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2615:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1140 -{306 -[1,17566:4262630,47279633:28320399,43253760,0 -(1,17566:4262630,4025873:0,0,0 -[1,17566:-473656,4025873:0,0,0 -(1,17566:-473656,-710413:0,0,0 -(1,17566:-473656,-644877:0,0,0 -k1,17566:-473656,-644877:-65536 ) -(1,17566:-473656,4736287:0,0,0 -k1,17566:-473656,4736287:5209943 ) -g1,17566:-473656,-710413 ) ] +[1,17563:3078558,4812305:0,0,0 +(1,17563:3078558,49800853:0,16384,2228224 +g1,17563:29030814,49800853 +g1,17563:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,17563:36151628,51504789:16384,1179648,0 ) -[1,17566:6630773,47279633:25952256,43253760,0 -[1,17566:6630773,4812305:25952256,786432,0 -(1,17566:6630773,4812305:25952256,485622,11795 -(1,17566:6630773,4812305:25952256,485622,11795 -g1,17566:3078558,4812305 -[1,17566:3078558,4812305:0,0,0 -(1,17566:3078558,2439708:0,1703936,0 -k1,17566:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,17566:2537886,2439708:1179648,16384,0 -) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,17566:3078558,1915420:16384,1179648,0 -) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] ) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,17563:37855564,49800853:1179648,16384,0 +) ) +k1,17563:3078556,49800853:-34777008 ) ] -[1,17566:3078558,4812305:0,0,0 -(1,17566:3078558,2439708:0,1703936,0 -g1,17566:29030814,2439708 -g1,17566:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,17566:36151628,1915420:16384,1179648,0 +g1,17563:6630773,4812305 +k1,17563:21350816,4812305:13524666 +g1,17563:21999622,4812305 +g1,17563:25611966,4812305 +g1,17563:28956923,4812305 +g1,17563:29772190,4812305 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 ) ] +[1,17563:6630773,45706769:25952256,40108032,0 +(1,17563:6630773,45706769:25952256,40108032,0 +(1,17563:6630773,45706769:0,0,0 +g1,17563:6630773,45706769 ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,17566:37855564,2439708:1179648,16384,0 +[1,17563:6630773,45706769:25952256,40108032,0 +(1,17470:6630773,14682403:25952256,9083666,0 +k1,17470:10523651,14682403:3892878 +h1,17469:10523651,14682403:0,0,0 +(1,17469:10523651,14682403:18166500,9083666,0 +(1,17469:10523651,14682403:18167376,9083688,0 +(1,17469:10523651,14682403:18167376,9083688,0 +(1,17469:10523651,14682403:0,9083688,0 +(1,17469:10523651,14682403:0,14208860,0 +(1,17469:10523651,14682403:28417720,14208860,0 ) +k1,17469:10523651,14682403:-28417720 ) -k1,17566:3078556,2439708:-34777008 ) -] -[1,17566:3078558,4812305:0,0,0 -(1,17566:3078558,49800853:0,16384,2228224 -k1,17566:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,17566:2537886,49800853:1179648,16384,0 +g1,17469:28691027,14682403 +) +) +) +g1,17470:28690151,14682403 +k1,17470:32583029,14682403:3892878 +) +v1,17477:6630773,15547483:0,393216,0 +(1,17478:6630773,16819388:25952256,1665121,0 +g1,17478:6630773,16819388 +g1,17478:6237557,16819388 +r1,17563:6368629,16819388:131072,1665121,0 +g1,17478:6567858,16819388 +g1,17478:6764466,16819388 +[1,17478:6764466,16819388:25818563,1665121,0 +(1,17478:6764466,15819960:25818563,665693,196608 +(1,17477:6764466,15819960:0,665693,196608 +r1,17563:8010564,15819960:1246098,862301,196608 +k1,17477:6764466,15819960:-1246098 +) +(1,17477:6764466,15819960:1246098,665693,196608 +) +k1,17477:8252269,15819960:241705 +k1,17477:9570198,15819960:327680 +k1,17477:13224363,15819960:241705 +k1,17477:14485152,15819960:241704 +k1,17477:17718576,15819960:241705 +k1,17477:18576319,15819960:241705 +k1,17477:19837109,15819960:241705 +k1,17477:22833292,15819960:241705 +k1,17477:25527354,15819960:241705 +k1,17477:27504451,15819960:241704 +(1,17477:27504451,15819960:0,414482,115847 +r1,17563:27862717,15819960:358266,530329,115847 +k1,17477:27504451,15819960:-358266 +) +(1,17477:27504451,15819960:358266,414482,115847 +k1,17477:27504451,15819960:3277 +h1,17477:27859440,15819960:0,411205,112570 +) +k1,17477:28104422,15819960:241705 +k1,17477:30727705,15819960:241705 +k1,17477:32583029,15819960:0 +) +(1,17478:6764466,16685040:25818563,513147,134348 +g1,17477:7649857,16685040 +g1,17477:8204946,16685040 +g1,17477:10022259,16685040 +g1,17477:12548671,16685040 +g1,17477:13407192,16685040 +g1,17477:16239002,16685040 +g1,17477:17889853,16685040 +g1,17477:19366379,16685040 +g1,17477:21133229,16685040 +k1,17478:32583029,16685040:8962709 +g1,17478:32583029,16685040 +) +] +g1,17478:32583029,16819388 +) +h1,17478:6630773,16819388:0,0,0 +v1,17481:6630773,17684468:0,393216,0 +(1,17506:6630773,34469097:25952256,17177845,0 +g1,17506:6630773,34469097 +g1,17506:6237557,34469097 +r1,17563:6368629,34469097:131072,17177845,0 +g1,17506:6567858,34469097 +g1,17506:6764466,34469097 +[1,17506:6764466,34469097:25818563,17177845,0 +(1,17482:6764466,18099010:25818563,807758,219026 +(1,17481:6764466,18099010:0,807758,219026 +r1,17563:7908217,18099010:1143751,1026784,219026 +k1,17481:6764466,18099010:-1143751 +) +(1,17481:6764466,18099010:1143751,807758,219026 +) +k1,17481:8118203,18099010:209986 +k1,17481:8445883,18099010:327680 +k1,17481:9283703,18099010:209985 +k1,17481:10512774,18099010:209986 +k1,17481:13714478,18099010:209985 +k1,17481:15779788,18099010:209986 +k1,17481:16858125,18099010:209985 +k1,17481:18543326,18099010:209986 +k1,17481:20263261,18099010:209985 +k1,17481:22660839,18099010:209986 +k1,17481:25739990,18099010:209985 +k1,17481:27106686,18099010:209986 +k1,17481:28078199,18099010:209985 +k1,17481:29618566,18099010:209986 +k1,17481:31563944,18099010:209985 +k1,17482:32583029,18099010:0 +) +(1,17482:6764466,18964090:25818563,505283,134348 +(1,17481:6764466,18964090:0,414482,115847 +r1,17563:7122732,18964090:358266,530329,115847 +k1,17481:6764466,18964090:-358266 +) +(1,17481:6764466,18964090:358266,414482,115847 +k1,17481:6764466,18964090:3277 +h1,17481:7119455,18964090:0,411205,112570 +) +k1,17481:7373197,18964090:250465 +k1,17481:10543946,18964090:250465 +k1,17481:11264304,18964090:250465 +k1,17481:12046266,18964090:250465 +k1,17481:13582547,18964090:250465 +k1,17481:16462972,18964090:250465 +k1,17481:17364865,18964090:250465 +k1,17481:18812673,18964090:250465 +k1,17481:21734385,18964090:250465 +k1,17481:25912423,18964090:250465 +k1,17481:26778926,18964090:250465 +k1,17481:27385251,18964090:250465 +k1,17481:29508735,18964090:250465 +k1,17481:32583029,18964090:0 +) +(1,17482:6764466,19829170:25818563,513147,134348 +k1,17481:8687661,19829170:187802 +k1,17481:9231322,19829170:187801 +k1,17481:10586320,19829170:187802 +k1,17481:12154965,19829170:187801 +k1,17481:12874264,19829170:187802 +k1,17481:15212957,19829170:187801 +k1,17481:17098797,19829170:187802 +k1,17481:18154950,19829170:187801 +k1,17481:19891368,19829170:187802 +k1,17481:20730598,19829170:187802 +k1,17481:22309073,19829170:187801 +k1,17481:23761720,19829170:187802 +k1,17481:24608813,19829170:187801 +k1,17481:28724188,19829170:187802 +k1,17481:29528027,19829170:187801 +k1,17481:30071689,19829170:187802 +k1,17481:32583029,19829170:0 +) +(1,17482:6764466,20694250:25818563,505283,134348 +k1,17481:7691800,20694250:202506 +k1,17481:8580468,20694250:202506 +k1,17481:9434403,20694250:202507 +k1,17481:11365093,20694250:202506 +k1,17481:13206654,20694250:202506 +k1,17481:14025198,20694250:202506 +k1,17481:16898952,20694250:202507 +k1,17481:18882727,20694250:202506 +k1,17481:20466077,20694250:202506 +k1,17481:22389558,20694250:202506 +k1,17481:24794730,20694250:202507 +k1,17481:27470565,20694250:202506 +k1,17481:31391584,20694250:202506 +k1,17481:32583029,20694250:0 +) +(1,17482:6764466,21559330:25818563,513147,126483 +g1,17481:8067977,21559330 +g1,17481:9982939,21559330 +g1,17481:13589385,21559330 +g1,17481:14440042,21559330 +g1,17481:14995131,21559330 +g1,17481:16128903,21559330 +g1,17481:16987424,21559330 +g1,17481:19388663,21559330 +g1,17481:21195490,21559330 +g1,17481:23177954,21559330 +k1,17482:32583029,21559330:7361007 +g1,17482:32583029,21559330 +) +v1,17484:6764466,22244185:0,393216,0 +(1,17490:6764466,23954578:25818563,2103609,196608 +g1,17490:6764466,23954578 +g1,17490:6764466,23954578 +g1,17490:6567858,23954578 +(1,17490:6567858,23954578:0,2103609,196608 +r1,17563:32779637,23954578:26211779,2300217,196608 +k1,17490:6567857,23954578:-26211780 +) +(1,17490:6567858,23954578:26211779,2103609,196608 +[1,17490:6764466,23954578:25818563,1907001,0 +(1,17486:6764466,22472016:25818563,424439,106246 +(1,17485:6764466,22472016:0,0,0 +g1,17485:6764466,22472016 +g1,17485:6764466,22472016 +g1,17485:6436786,22472016 +(1,17485:6436786,22472016:0,0,0 +) +g1,17485:6764466,22472016 +) +g1,17486:9752051,22472016 +g1,17486:10747913,22472016 +k1,17486:10747913,22472016:0 +h1,17486:12407683,22472016:0,0,0 +k1,17486:32583029,22472016:20175346 +g1,17486:32583029,22472016 +) +(1,17487:6764466,23156871:25818563,431045,112852 +h1,17487:6764466,23156871:0,0,0 +g1,17487:7096420,23156871 +g1,17487:7428374,23156871 +g1,17487:13071591,23156871 +g1,17487:13735499,23156871 +g1,17487:16391131,23156871 +g1,17487:18714809,23156871 +g1,17487:19378717,23156871 +g1,17487:21370441,23156871 +g1,17487:24026073,23156871 +g1,17487:24689981,23156871 +g1,17487:25353889,23156871 +g1,17487:26017797,23156871 +k1,17487:26017797,23156871:0 +h1,17487:27013659,23156871:0,0,0 +k1,17487:32583029,23156871:5569370 +g1,17487:32583029,23156871 +) +(1,17488:6764466,23841726:25818563,424439,112852 +h1,17488:6764466,23841726:0,0,0 +g1,17488:7096420,23841726 +g1,17488:7428374,23841726 +k1,17488:7428374,23841726:0 +h1,17488:12739637,23841726:0,0,0 +k1,17488:32583029,23841726:19843392 +g1,17488:32583029,23841726 +) +] +) +g1,17490:32583029,23954578 +g1,17490:6764466,23954578 +g1,17490:6764466,23954578 +g1,17490:32583029,23954578 +g1,17490:32583029,23954578 +) +h1,17490:6764466,24151186:0,0,0 +v1,17494:6764466,24836041:0,393216,0 +(1,17498:6764466,25170118:25818563,727293,196608 +g1,17498:6764466,25170118 +g1,17498:6764466,25170118 +g1,17498:6567858,25170118 +(1,17498:6567858,25170118:0,727293,196608 +r1,17563:32779637,25170118:26211779,923901,196608 +k1,17498:6567857,25170118:-26211780 +) +(1,17498:6567858,25170118:26211779,727293,196608 +[1,17498:6764466,25170118:25818563,530685,0 +(1,17496:6764466,25063872:25818563,424439,106246 +(1,17495:6764466,25063872:0,0,0 +g1,17495:6764466,25063872 +g1,17495:6764466,25063872 +g1,17495:6436786,25063872 +(1,17495:6436786,25063872:0,0,0 +) +g1,17495:6764466,25063872 +) +g1,17496:7428374,25063872 +g1,17496:8092282,25063872 +h1,17496:10747913,25063872:0,0,0 +k1,17496:32583029,25063872:21835116 +g1,17496:32583029,25063872 +) +] +) +g1,17498:32583029,25170118 +g1,17498:6764466,25170118 +g1,17498:6764466,25170118 +g1,17498:32583029,25170118 +g1,17498:32583029,25170118 +) +h1,17498:6764466,25366726:0,0,0 +(1,17501:6764466,34469097:25818563,9036835,0 +k1,17501:10637290,34469097:3872824 +h1,17500:10637290,34469097:0,0,0 +(1,17500:10637290,34469097:18072915,9036835,0 +(1,17500:10637290,34469097:18073715,9036857,0 +(1,17500:10637290,34469097:18073715,9036857,0 +(1,17500:10637290,34469097:0,9036857,0 +(1,17500:10637290,34469097:0,14208860,0 +(1,17500:10637290,34469097:28417720,14208860,0 +) +k1,17500:10637290,34469097:-28417720 +) +) +g1,17500:28711005,34469097 +) +) +) +g1,17501:28710205,34469097 +k1,17501:32583029,34469097:3872824 +) +] +g1,17506:32583029,34469097 +) +h1,17506:6630773,34469097:0,0,0 +v1,17509:6630773,35334177:0,393216,0 +(1,17511:6630773,41885262:25952256,6944301,0 +g1,17511:6630773,41885262 +g1,17511:6237557,41885262 +r1,17563:6368629,41885262:131072,6944301,0 +g1,17511:6567858,41885262 +g1,17511:6764466,41885262 +[1,17511:6764466,41885262:25818563,6944301,0 +(1,17511:6764466,35695354:25818563,754393,260573 +(1,17509:6764466,35695354:0,754393,260573 +r1,17563:8010564,35695354:1246098,1014966,260573 +k1,17509:6764466,35695354:-1246098 +) +(1,17509:6764466,35695354:1246098,754393,260573 +) +k1,17509:8205499,35695354:194935 +k1,17509:8533179,35695354:327680 +k1,17509:8533179,35695354:0 +k1,17510:9924802,35695354:194936 +k1,17510:13485666,35695354:194935 +k1,17510:14339894,35695354:194936 +k1,17510:15812126,35695354:194935 +k1,17510:20041458,35695354:194936 +k1,17510:21427838,35695354:194935 +k1,17510:24720005,35695354:194936 +k1,17510:25446437,35695354:194935 +k1,17510:28445003,35695354:194936 +k1,17510:31169628,35695354:194935 +(1,17510:31169628,35695354:0,452978,122846 +r1,17563:32583029,35695354:1413401,575824,122846 +k1,17510:31169628,35695354:-1413401 +) +(1,17510:31169628,35695354:1413401,452978,122846 +k1,17510:31169628,35695354:3277 +h1,17510:32579752,35695354:0,411205,112570 +) +k1,17510:32583029,35695354:0 +) +(1,17511:6764466,36560434:25818563,513147,134348 +k1,17510:9249037,36560434:194743 +k1,17510:10435340,36560434:194743 +k1,17510:15304111,36560434:194743 +k1,17510:15986437,36560434:194738 +k1,17510:17691130,36560434:194743 +k1,17510:18545165,36560434:194743 +k1,17510:19758993,36560434:194743 +k1,17510:21343099,36560434:194743 +k1,17510:23497368,36560434:194743 +k1,17510:25897398,36560434:194743 +k1,17510:26778303,36560434:194743 +k1,17510:30045374,36560434:194743 +k1,17510:30771614,36560434:194743 +k1,17510:32583029,36560434:0 +) +(1,17511:6764466,37425514:25818563,513147,134348 +k1,17510:8953009,37425514:178554 +k1,17510:10150648,37425514:178554 +k1,17510:11606499,37425514:178554 +k1,17510:13918251,37425514:178555 +k1,17510:16865046,37425514:178554 +k1,17510:17729762,37425514:178554 +k1,17510:18524354,37425514:178554 +k1,17510:21591080,37425514:178554 +k1,17510:24233132,37425514:178554 +k1,17510:25039521,37425514:178554 +k1,17510:26237161,37425514:178555 +k1,17510:29077132,37425514:178554 +k1,17510:31284681,37425514:178554 +(1,17510:31284681,37425514:0,414482,115847 +r1,17563:31642947,37425514:358266,530329,115847 +k1,17510:31284681,37425514:-358266 +) +(1,17510:31284681,37425514:358266,414482,115847 +k1,17510:31284681,37425514:3277 +h1,17510:31639670,37425514:0,411205,112570 +) +k1,17510:31821501,37425514:178554 +k1,17510:32583029,37425514:0 +) +(1,17511:6764466,38290594:25818563,513147,102891 +k1,17510:8600170,38290594:230072 +k1,17510:10599058,38290594:230071 +k1,17510:11576896,38290594:230072 +k1,17510:13618383,38290594:230072 +k1,17510:14499882,38290594:230071 +k1,17510:15085814,38290594:230072 +k1,17510:16298926,38290594:230072 +k1,17510:17338367,38290594:230071 +k1,17510:18913238,38290594:230072 +k1,17510:20334754,38290594:230071 +k1,17510:22709164,38290594:230072 +k1,17510:24206702,38290594:230072 +k1,17510:24792633,38290594:230071 +k1,17510:26679455,38290594:230072 +k1,17510:27324339,38290594:230041 +k1,17510:30076891,38290594:230071 +k1,17510:31773659,38290594:230072 +k1,17510:32583029,38290594:0 +) +(1,17511:6764466,39155674:25818563,505283,134348 +k1,17510:9376552,39155674:139413 +k1,17510:12765895,39155674:139413 +k1,17510:14096753,39155674:139413 +k1,17510:17111230,39155674:139413 +k1,17510:17936805,39155674:139413 +k1,17510:19464926,39155674:139413 +k1,17510:20290501,39155674:139413 +k1,17510:23010066,39155674:139413 +k1,17510:25978012,39155674:139413 +k1,17510:27308870,39155674:139413 +k1,17510:28236681,39155674:139413 +k1,17510:32583029,39155674:0 +) +(1,17511:6764466,40020754:25818563,513147,134348 +k1,17510:7919117,40020754:163091 +k1,17510:11039848,40020754:163091 +k1,17510:13807340,40020754:163091 +k1,17510:18053324,40020754:163091 +k1,17510:18875707,40020754:163091 +k1,17510:21299135,40020754:163091 +k1,17510:21818085,40020754:163090 +k1,17510:23491126,40020754:163091 +k1,17510:24313509,40020754:163091 +k1,17510:25495685,40020754:163091 +k1,17510:27048139,40020754:163091 +k1,17510:27827268,40020754:163091 +k1,17510:29009444,40020754:163091 +k1,17510:30449832,40020754:163091 +k1,17510:32583029,40020754:0 +) +(1,17511:6764466,40885834:25818563,513147,134348 +k1,17510:7481812,40885834:185849 +k1,17510:9121249,40885834:185848 +k1,17510:11878075,40885834:185849 +k1,17510:12715352,40885834:185849 +k1,17510:13920286,40885834:185849 +k1,17510:15495497,40885834:185848 +k1,17510:17640872,40885834:185849 +k1,17510:19339947,40885834:185849 +k1,17510:20177224,40885834:185849 +k1,17510:22292452,40885834:185848 +k1,17510:22834161,40885834:185849 +(1,17510:22834161,40885834:0,452978,122846 +r1,17563:24247562,40885834:1413401,575824,122846 +k1,17510:22834161,40885834:-1413401 +) +(1,17510:22834161,40885834:1413401,452978,122846 +k1,17510:22834161,40885834:3277 +h1,17510:24244285,40885834:0,411205,112570 +) +k1,17510:24433411,40885834:185849 +k1,17510:26578786,40885834:185849 +k1,17510:27756194,40885834:185848 +k1,17510:29005037,40885834:185849 +k1,17510:31966991,40885834:185849 +k1,17510:32583029,40885834:0 +) +(1,17511:6764466,41750914:25818563,513147,134348 +g1,17510:8813121,41750914 +g1,17510:11887414,41750914 +g1,17510:13694241,41750914 +g1,17510:15461091,41750914 +g1,17510:16863561,41750914 +g1,17510:19195987,41750914 +g1,17510:20263568,41750914 +g1,17510:22084813,41750914 +g1,17510:24213422,41750914 +g1,17510:24768511,41750914 +g1,17510:26250935,41750914 +g1,17510:27798895,41750914 +k1,17511:32583029,41750914:2650937 +g1,17511:32583029,41750914 +) +] +g1,17511:32583029,41885262 +) +h1,17511:6630773,41885262:0,0,0 +v1,17514:6630773,42750342:0,393216,0 +(1,17563:6630773,45706769:25952256,3349643,0 +g1,17563:6630773,45706769 +g1,17563:6237557,45706769 +r1,17563:6368629,45706769:131072,3349643,0 +g1,17563:6567858,45706769 +g1,17563:6764466,45706769 +[1,17563:6764466,45706769:25818563,3349643,0 +(1,17515:6764466,43058640:25818563,701514,196608 +(1,17514:6764466,43058640:0,701514,196608 +r1,17563:8010564,43058640:1246098,898122,196608 +k1,17514:6764466,43058640:-1246098 +) +(1,17514:6764466,43058640:1246098,701514,196608 +) +k1,17514:8252159,43058640:241595 +k1,17514:8579839,43058640:327680 +k1,17514:9774983,43058640:241595 +k1,17514:11120860,43058640:241595 +k1,17514:12749197,43058640:241595 +k1,17514:13606830,43058640:241595 +k1,17514:15498622,43058640:241595 +k1,17514:17527384,43058640:241595 +k1,17514:18381741,43058640:241595 +k1,17514:19953717,43058640:241595 +k1,17514:21214396,43058640:241594 +k1,17514:23349981,43058640:241595 +k1,17514:24243004,43058640:241595 +k1,17514:26200332,43058640:241595 +k1,17514:26797787,43058640:241595 +k1,17514:28316679,43058640:241595 +k1,17514:29089771,43058640:241595 +k1,17514:31369536,43058640:241595 +k1,17514:32227169,43058640:241595 +k1,17515:32583029,43058640:0 +) +(1,17515:6764466,43923720:25818563,513147,134348 +(1,17514:6764466,43923720:0,452978,122846 +r1,17563:8177867,43923720:1413401,575824,122846 +k1,17514:6764466,43923720:-1413401 +) +(1,17514:6764466,43923720:1413401,452978,122846 +k1,17514:6764466,43923720:3277 +h1,17514:8174590,43923720:0,411205,112570 +) +k1,17514:8392678,43923720:214811 +k1,17514:9884785,43923720:214810 +k1,17514:12232793,43923720:214811 +k1,17514:14852119,43923720:214810 +k1,17514:15726222,43923720:214811 +k1,17514:17496202,43923720:214811 +(1,17514:17496202,43923720:0,452978,122846 +r1,17563:18909603,43923720:1413401,575824,122846 +k1,17514:17496202,43923720:-1413401 +) +(1,17514:17496202,43923720:1413401,452978,122846 +k1,17514:17496202,43923720:3277 +h1,17514:18906326,43923720:0,411205,112570 +) +k1,17514:19124413,43923720:214810 +k1,17514:20330784,43923720:214811 +k1,17514:21204886,43923720:214810 +k1,17514:23202276,43923720:214811 +(1,17514:23202276,43923720:0,452978,115847 +r1,17563:25319101,43923720:2116825,568825,115847 +k1,17514:23202276,43923720:-2116825 +) +(1,17514:23202276,43923720:2116825,452978,115847 +k1,17514:23202276,43923720:3277 +h1,17514:25315824,43923720:0,411205,112570 +) +k1,17514:25707582,43923720:214811 +k1,17514:26550227,43923720:214810 +k1,17514:27353551,43923720:214811 +k1,17514:28892188,43923720:214810 +k1,17514:30211281,43923720:214811 +k1,17514:32583029,43923720:0 +) +(1,17515:6764466,44788800:25818563,513147,134348 +k1,17514:11582427,44788800:145244 +k1,17514:14855049,44788800:145244 +k1,17514:16558084,44788800:145244 +k1,17514:19075076,44788800:145244 +k1,17514:20783354,44788800:145244 +k1,17514:23624094,44788800:145244 +k1,17514:27355468,44788800:145244 +k1,17514:28692157,44788800:145244 +k1,17514:32583029,44788800:0 +) +(1,17515:6764466,45653880:25818563,513147,126483 +k1,17514:10947902,45653880:239479 +k1,17514:11815217,45653880:239480 +k1,17514:13756666,45653880:239479 +k1,17514:15951084,45653880:239479 +k1,17514:17209649,45653880:239480 +k1,17514:18838491,45653880:239479 +k1,17514:20448983,45653880:239479 +k1,17514:24526251,45653880:239480 +k1,17514:25417158,45653880:239479 +k1,17514:28870523,45653880:239479 +k1,17514:30129088,45653880:239480 +k1,17514:31931601,45653880:239479 +k1,17514:32583029,45653880:0 +) +] +g1,17563:32583029,45706769 +) +] +(1,17563:32583029,45706769:0,0,0 +g1,17563:32583029,45706769 +) +) +] +(1,17563:6630773,47279633:25952256,0,0 +h1,17563:6630773,47279633:25952256,0,0 +) +] +(1,17563:4262630,4025873:0,0,0 +[1,17563:-473656,4025873:0,0,0 +(1,17563:-473656,-710413:0,0,0 +(1,17563:-473656,-710413:0,0,0 +g1,17563:-473656,-710413 +) +g1,17563:-473656,-710413 +) +] +) +] +!21256 +}287 +Input:2596:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2597:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2598:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2599:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2600:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2601:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2602:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2603:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2604:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!858 +{288 +[1,17595:4262630,47279633:28320399,43253760,0 +(1,17595:4262630,4025873:0,0,0 +[1,17595:-473656,4025873:0,0,0 +(1,17595:-473656,-710413:0,0,0 +(1,17595:-473656,-644877:0,0,0 +k1,17595:-473656,-644877:-65536 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,17566:3078558,51504789:16384,1179648,0 +(1,17595:-473656,4736287:0,0,0 +k1,17595:-473656,4736287:5209943 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +g1,17595:-473656,-710413 ) ] ) +[1,17595:6630773,47279633:25952256,43253760,0 +[1,17595:6630773,4812305:25952256,786432,0 +(1,17595:6630773,4812305:25952256,513147,134348 +(1,17595:6630773,4812305:25952256,513147,134348 +g1,17595:3078558,4812305 +[1,17595:3078558,4812305:0,0,0 +(1,17595:3078558,2439708:0,1703936,0 +k1,17595:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,17595:2537886,2439708:1179648,16384,0 +) +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,17595:3078558,1915420:16384,1179648,0 ) +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] -[1,17566:3078558,4812305:0,0,0 -(1,17566:3078558,49800853:0,16384,2228224 -g1,17566:29030814,49800853 -g1,17566:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,17566:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +) ) ] +[1,17595:3078558,4812305:0,0,0 +(1,17595:3078558,2439708:0,1703936,0 +g1,17595:29030814,2439708 +g1,17595:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,17595:36151628,1915420:16384,1179648,0 ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,17566:37855564,49800853:1179648,16384,0 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) +] ) -k1,17566:3078556,49800853:-34777008 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,17595:37855564,2439708:1179648,16384,0 ) -] -g1,17566:6630773,4812305 -g1,17566:6630773,4812305 -g1,17566:10347975,4812305 -k1,17566:31387651,4812305:21039676 -) -) -] -[1,17566:6630773,45706769:25952256,40108032,0 -(1,17566:6630773,45706769:25952256,40108032,0 -(1,17566:6630773,45706769:0,0,0 -g1,17566:6630773,45706769 -) -[1,17566:6630773,45706769:25952256,40108032,0 -(1,17526:6630773,6254097:25952256,513147,134348 -k1,17525:7978787,6254097:255529 -k1,17525:8920477,6254097:255528 -k1,17525:11205001,6254097:255529 -k1,17525:12479615,6254097:255529 -k1,17525:15000723,6254097:255528 -k1,17525:18419675,6254097:255529 -(1,17525:18419675,6254097:0,452978,122846 -r1,17566:22646771,6254097:4227096,575824,122846 -k1,17525:18419675,6254097:-4227096 ) -(1,17525:18419675,6254097:4227096,452978,122846 -k1,17525:18419675,6254097:3277 -h1,17525:22643494,6254097:0,411205,112570 -) -k1,17525:23075969,6254097:255528 -k1,17525:24528185,6254097:255529 -k1,17525:27591276,6254097:255529 -k1,17525:28462842,6254097:255528 -k1,17525:29921612,6254097:255529 -k1,17525:32583029,6254097:0 -) -(1,17526:6630773,7095585:25952256,513147,126483 -k1,17525:7951946,7095585:216891 -k1,17525:8916602,7095585:216890 -k1,17525:10545794,7095585:216891 -k1,17525:11622516,7095585:216890 -k1,17525:12858492,7095585:216891 -k1,17525:15586722,7095585:216890 -(1,17525:15586722,7095585:0,414482,115847 -r1,17566:15944988,7095585:358266,530329,115847 -k1,17525:15586722,7095585:-358266 -) -(1,17525:15586722,7095585:358266,414482,115847 -k1,17525:15586722,7095585:3277 -h1,17525:15941711,7095585:0,411205,112570 -) -k1,17525:16161879,7095585:216891 -k1,17525:17946391,7095585:216891 -k1,17525:19182366,7095585:216890 -k1,17525:20788620,7095585:216891 -k1,17525:22881806,7095585:216890 -(1,17525:22881806,7095585:0,452978,115847 -r1,17566:28164037,7095585:5282231,568825,115847 -k1,17525:22881806,7095585:-5282231 -) -(1,17525:22881806,7095585:5282231,452978,115847 -k1,17525:22881806,7095585:3277 -h1,17525:28160760,7095585:0,411205,112570 -) -k1,17525:28380928,7095585:216891 -k1,17525:29129315,7095585:216890 -k1,17525:31931601,7095585:216891 -k1,17525:32583029,7095585:0 -) -(1,17526:6630773,7937073:25952256,513147,134348 -k1,17525:7922199,7937073:272341 -k1,17525:8558922,7937073:272342 -k1,17525:11675526,7937073:272341 -k1,17525:12560630,7937073:272342 -k1,17525:13599087,7937073:272341 -k1,17525:16040015,7937073:272342 -k1,17525:18924621,7937073:272341 -(1,17525:18924621,7937073:0,414482,115847 -r1,17566:19282887,7937073:358266,530329,115847 -k1,17525:18924621,7937073:-358266 -) -(1,17525:18924621,7937073:358266,414482,115847 -k1,17525:18924621,7937073:3277 -h1,17525:19279610,7937073:0,411205,112570 -) -k1,17525:19555229,7937073:272342 -k1,17525:21395191,7937073:272341 -k1,17525:22686618,7937073:272342 -k1,17525:24348322,7937073:272341 -k1,17525:26496960,7937073:272342 -(1,17525:26496960,7937073:0,452978,115847 -r1,17566:31779191,7937073:5282231,568825,115847 -k1,17525:26496960,7937073:-5282231 -) -(1,17525:26496960,7937073:5282231,452978,115847 -k1,17525:26496960,7937073:3277 -h1,17525:31775914,7937073:0,411205,112570 -) -k1,17525:32051532,7937073:272341 -k1,17525:32583029,7937073:0 -) -(1,17526:6630773,8778561:25952256,513147,126483 -k1,17525:9480842,8778561:264674 -k1,17525:10396944,8778561:264674 -k1,17525:11680703,8778561:264674 -k1,17525:12353011,8778561:264674 -k1,17525:15461948,8778561:264674 -k1,17525:17621268,8778561:264674 -k1,17525:18545234,8778561:264674 -k1,17525:19828993,8778561:264674 -k1,17525:24487856,8778561:264674 -k1,17525:25368568,8778561:264674 -(1,17525:25368568,8778561:0,459977,115847 -r1,17566:32409359,8778561:7040791,575824,115847 -k1,17525:25368568,8778561:-7040791 -) -(1,17525:25368568,8778561:7040791,459977,115847 -k1,17525:25368568,8778561:3277 -h1,17525:32406082,8778561:0,411205,112570 -) -k1,17525:32583029,8778561:0 -) -(1,17526:6630773,9620049:25952256,513147,126483 -k1,17525:8560680,9620049:284953 -k1,17525:9864717,9620049:284952 -k1,17525:14717529,9620049:284953 -k1,17525:17844123,9620049:284953 -(1,17525:17844123,9620049:0,414482,115847 -r1,17566:18202389,9620049:358266,530329,115847 -k1,17525:17844123,9620049:-358266 -) -(1,17525:17844123,9620049:358266,414482,115847 -k1,17525:17844123,9620049:3277 -h1,17525:18199112,9620049:0,411205,112570 -) -k1,17525:18487341,9620049:284952 -k1,17525:19963739,9620049:284953 -(1,17525:19963739,9620049:0,452978,122846 -r1,17566:22432276,9620049:2468537,575824,122846 -k1,17525:19963739,9620049:-2468537 -) -(1,17525:19963739,9620049:2468537,452978,122846 -k1,17525:19963739,9620049:3277 -h1,17525:22428999,9620049:0,411205,112570 -) -k1,17525:22717229,9620049:284953 -k1,17525:23618219,9620049:284952 -k1,17525:24922257,9620049:284953 -k1,17525:26596573,9620049:284953 -k1,17525:28757821,9620049:284952 -k1,17525:31821501,9620049:284953 -k1,17526:32583029,9620049:0 -) -(1,17526:6630773,10461537:25952256,513147,126483 -(1,17525:6630773,10461537:0,459977,115847 -r1,17566:13671564,10461537:7040791,575824,115847 -k1,17525:6630773,10461537:-7040791 -) -(1,17525:6630773,10461537:7040791,459977,115847 -k1,17525:6630773,10461537:3277 -h1,17525:13668287,10461537:0,411205,112570 -) -k1,17525:13852481,10461537:180917 -k1,17525:15024957,10461537:180916 -k1,17525:18499058,10461537:180917 -k1,17525:19871419,10461537:180916 -k1,17525:22637731,10461537:180917 -k1,17525:23470076,10461537:180917 -k1,17525:24670077,10461537:180916 -k1,17525:25258628,10461537:180917 -k1,17525:27334190,10461537:180916 -k1,17525:28182263,10461537:180917 -(1,17525:28182263,10461537:0,452978,122846 -r1,17566:32409359,10461537:4227096,575824,122846 -k1,17525:28182263,10461537:-4227096 -) -(1,17525:28182263,10461537:4227096,452978,122846 -k1,17525:28182263,10461537:3277 -h1,17525:32406082,10461537:0,411205,112570 -) -k1,17526:32583029,10461537:0 -k1,17526:32583029,10461537:0 -) -v1,17528:6630773,11652003:0,393216,0 -(1,17541:6630773,17962701:25952256,6703914,196608 -g1,17541:6630773,17962701 -g1,17541:6630773,17962701 -g1,17541:6434165,17962701 -(1,17541:6434165,17962701:0,6703914,196608 -r1,17566:32779637,17962701:26345472,6900522,196608 -k1,17541:6434165,17962701:-26345472 -) -(1,17541:6434165,17962701:26345472,6703914,196608 -[1,17541:6630773,17962701:25952256,6507306,0 -(1,17530:6630773,11859621:25952256,404226,107478 -(1,17529:6630773,11859621:0,0,0 -g1,17529:6630773,11859621 -g1,17529:6630773,11859621 -g1,17529:6303093,11859621 -(1,17529:6303093,11859621:0,0,0 -) -g1,17529:6630773,11859621 -) -k1,17530:6630773,11859621:0 -g1,17530:14218270,11859621 -h1,17530:14534416,11859621:0,0,0 -k1,17530:32583028,11859621:18048612 -g1,17530:32583028,11859621 -) -(1,17531:6630773,12525799:25952256,410518,101187 -h1,17531:6630773,12525799:0,0,0 -g1,17531:6946919,12525799 -g1,17531:7263065,12525799 -g1,17531:15798999,12525799 -g1,17531:16431291,12525799 -k1,17531:16431291,12525799:0 -h1,17531:19908894,12525799:0,0,0 -k1,17531:32583029,12525799:12674135 -g1,17531:32583029,12525799 -) -(1,17532:6630773,13191977:25952256,404226,82312 -h1,17532:6630773,13191977:0,0,0 -g1,17532:6946919,13191977 -g1,17532:7263065,13191977 -g1,17532:7579211,13191977 -g1,17532:7895357,13191977 -g1,17532:8211503,13191977 -g1,17532:8527649,13191977 -g1,17532:8843795,13191977 -g1,17532:9159941,13191977 -g1,17532:9476087,13191977 -g1,17532:9792233,13191977 -g1,17532:10108379,13191977 -g1,17532:10424525,13191977 -g1,17532:10740671,13191977 -g1,17532:11056817,13191977 -g1,17532:11372963,13191977 -g1,17532:11689109,13191977 -g1,17532:12005255,13191977 -g1,17532:12321401,13191977 -g1,17532:12637547,13191977 -g1,17532:12953693,13191977 -g1,17532:13269839,13191977 -g1,17532:15482859,13191977 -g1,17532:16115151,13191977 -k1,17532:16115151,13191977:0 -h1,17532:18012025,13191977:0,0,0 -k1,17532:32583029,13191977:14571004 -g1,17532:32583029,13191977 -) -(1,17533:6630773,13858155:25952256,404226,107478 -h1,17533:6630773,13858155:0,0,0 -g1,17533:6946919,13858155 -g1,17533:7263065,13858155 -g1,17533:7579211,13858155 -g1,17533:7895357,13858155 -g1,17533:8211503,13858155 -g1,17533:8527649,13858155 -g1,17533:8843795,13858155 -g1,17533:9159941,13858155 -g1,17533:9476087,13858155 -g1,17533:9792233,13858155 -g1,17533:10108379,13858155 -g1,17533:10424525,13858155 -g1,17533:10740671,13858155 -g1,17533:11056817,13858155 -g1,17533:11372963,13858155 -g1,17533:11689109,13858155 -g1,17533:12005255,13858155 -g1,17533:12321401,13858155 -g1,17533:12637547,13858155 -g1,17533:12953693,13858155 -g1,17533:13269839,13858155 -g1,17533:15799005,13858155 -g1,17533:16431297,13858155 -g1,17533:18328172,13858155 -g1,17533:18960464,13858155 -k1,17533:18960464,13858155:0 -h1,17533:19592756,13858155:0,0,0 -k1,17533:32583029,13858155:12990273 -g1,17533:32583029,13858155 -) -(1,17534:6630773,14524333:25952256,404226,107478 -h1,17534:6630773,14524333:0,0,0 -g1,17534:6946919,14524333 -g1,17534:7263065,14524333 -g1,17534:7579211,14524333 -g1,17534:7895357,14524333 -g1,17534:8211503,14524333 -g1,17534:8527649,14524333 -g1,17534:8843795,14524333 -g1,17534:9159941,14524333 -g1,17534:9476087,14524333 -g1,17534:9792233,14524333 -g1,17534:10108379,14524333 -g1,17534:10424525,14524333 -g1,17534:10740671,14524333 -g1,17534:11056817,14524333 -g1,17534:11372963,14524333 -g1,17534:11689109,14524333 -g1,17534:12005255,14524333 -g1,17534:12321401,14524333 -g1,17534:12637547,14524333 -g1,17534:12953693,14524333 -g1,17534:13269839,14524333 -g1,17534:13585985,14524333 -g1,17534:13902131,14524333 -g1,17534:14218277,14524333 -g1,17534:14534423,14524333 -g1,17534:14850569,14524333 -g1,17534:15166715,14524333 -g1,17534:15482861,14524333 -g1,17534:15799007,14524333 -g1,17534:16115153,14524333 -g1,17534:16431299,14524333 -g1,17534:16747445,14524333 -g1,17534:17063591,14524333 -g1,17534:17379737,14524333 -g1,17534:17695883,14524333 -g1,17534:18328175,14524333 -g1,17534:18960467,14524333 -g1,17534:22754215,14524333 -g1,17534:23386507,14524333 -k1,17534:23386507,14524333:0 -h1,17534:24018799,14524333:0,0,0 -k1,17534:32583029,14524333:8564230 -g1,17534:32583029,14524333 -) -(1,17535:6630773,15190511:25952256,410518,107478 -h1,17535:6630773,15190511:0,0,0 -g1,17535:6946919,15190511 -g1,17535:7263065,15190511 -g1,17535:7579211,15190511 -g1,17535:7895357,15190511 -g1,17535:8211503,15190511 -g1,17535:8527649,15190511 -g1,17535:8843795,15190511 -g1,17535:9159941,15190511 -g1,17535:9476087,15190511 -g1,17535:9792233,15190511 -g1,17535:10108379,15190511 -g1,17535:10424525,15190511 -g1,17535:10740671,15190511 -g1,17535:11056817,15190511 -g1,17535:11372963,15190511 -g1,17535:11689109,15190511 -g1,17535:12005255,15190511 -g1,17535:12321401,15190511 -g1,17535:12637547,15190511 -g1,17535:12953693,15190511 -g1,17535:13269839,15190511 -g1,17535:13585985,15190511 -g1,17535:13902131,15190511 -g1,17535:14218277,15190511 -g1,17535:14534423,15190511 -g1,17535:14850569,15190511 -g1,17535:15166715,15190511 -g1,17535:15482861,15190511 -g1,17535:15799007,15190511 -g1,17535:16115153,15190511 -g1,17535:16431299,15190511 -g1,17535:16747445,15190511 -g1,17535:17063591,15190511 -g1,17535:17379737,15190511 -g1,17535:17695883,15190511 -g1,17535:18012029,15190511 -g1,17535:18328175,15190511 -g1,17535:18644321,15190511 -g1,17535:18960467,15190511 -g1,17535:19276613,15190511 -g1,17535:19592759,15190511 -g1,17535:19908905,15190511 -g1,17535:20225051,15190511 -g1,17535:20541197,15190511 -g1,17535:20857343,15190511 -g1,17535:24334946,15190511 -g1,17535:24967238,15190511 -g1,17535:25599530,15190511 -g1,17535:26231822,15190511 -k1,17535:26231822,15190511:0 -h1,17535:29077133,15190511:0,0,0 -k1,17535:32583029,15190511:3505896 -g1,17535:32583029,15190511 -) -(1,17536:6630773,15856689:25952256,410518,107478 -h1,17536:6630773,15856689:0,0,0 -g1,17536:6946919,15856689 -g1,17536:7263065,15856689 -g1,17536:7579211,15856689 -g1,17536:7895357,15856689 -g1,17536:8211503,15856689 -g1,17536:8527649,15856689 -g1,17536:8843795,15856689 -g1,17536:9159941,15856689 -g1,17536:9476087,15856689 -g1,17536:9792233,15856689 -g1,17536:10108379,15856689 -g1,17536:10424525,15856689 -g1,17536:10740671,15856689 -g1,17536:11056817,15856689 -g1,17536:11372963,15856689 -g1,17536:11689109,15856689 -g1,17536:12005255,15856689 -g1,17536:12321401,15856689 -g1,17536:12637547,15856689 -g1,17536:12953693,15856689 -g1,17536:13269839,15856689 -g1,17536:13585985,15856689 -g1,17536:13902131,15856689 -g1,17536:14218277,15856689 -g1,17536:14534423,15856689 -g1,17536:14850569,15856689 -g1,17536:15166715,15856689 -g1,17536:15482861,15856689 -g1,17536:15799007,15856689 -g1,17536:16115153,15856689 -g1,17536:16431299,15856689 -g1,17536:16747445,15856689 -g1,17536:17063591,15856689 -g1,17536:17379737,15856689 -g1,17536:17695883,15856689 -g1,17536:19908903,15856689 -g1,17536:20541195,15856689 -k1,17536:20541195,15856689:0 -h1,17536:27180255,15856689:0,0,0 -k1,17536:32583029,15856689:5402774 -g1,17536:32583029,15856689 -) -(1,17537:6630773,16522867:25952256,404226,107478 -h1,17537:6630773,16522867:0,0,0 -g1,17537:6946919,16522867 -g1,17537:7263065,16522867 -g1,17537:7579211,16522867 -g1,17537:7895357,16522867 -g1,17537:8211503,16522867 -g1,17537:8527649,16522867 -g1,17537:8843795,16522867 -g1,17537:9159941,16522867 -g1,17537:9476087,16522867 -g1,17537:9792233,16522867 -g1,17537:10108379,16522867 -g1,17537:10424525,16522867 -g1,17537:10740671,16522867 -g1,17537:11056817,16522867 -g1,17537:11372963,16522867 -g1,17537:11689109,16522867 -g1,17537:12005255,16522867 -g1,17537:12321401,16522867 -g1,17537:12637547,16522867 -g1,17537:12953693,16522867 -g1,17537:13269839,16522867 -g1,17537:17063587,16522867 -g1,17537:17695879,16522867 -g1,17537:19592754,16522867 -h1,17537:19908900,16522867:0,0,0 -k1,17537:32583029,16522867:12674129 -g1,17537:32583029,16522867 -) -(1,17538:6630773,17189045:25952256,404226,107478 -h1,17538:6630773,17189045:0,0,0 -g1,17538:6946919,17189045 -g1,17538:7263065,17189045 -g1,17538:15166708,17189045 -g1,17538:15799000,17189045 -g1,17538:18012020,17189045 -g1,17538:19592749,17189045 -g1,17538:20225041,17189045 -g1,17538:22754207,17189045 -g1,17538:24967227,17189045 -g1,17538:25599519,17189045 -g1,17538:27180249,17189045 -k1,17538:27180249,17189045:0 -h1,17538:28128687,17189045:0,0,0 -k1,17538:32583029,17189045:4454342 -g1,17538:32583029,17189045 -) -(1,17539:6630773,17855223:25952256,404226,107478 -h1,17539:6630773,17855223:0,0,0 -g1,17539:6946919,17855223 -g1,17539:7263065,17855223 -g1,17539:7579211,17855223 -g1,17539:7895357,17855223 -g1,17539:8211503,17855223 -g1,17539:8527649,17855223 -g1,17539:8843795,17855223 -g1,17539:9159941,17855223 -g1,17539:9476087,17855223 -g1,17539:9792233,17855223 -g1,17539:10108379,17855223 -g1,17539:10424525,17855223 -g1,17539:10740671,17855223 -g1,17539:11056817,17855223 -g1,17539:11372963,17855223 -g1,17539:11689109,17855223 -g1,17539:12005255,17855223 -g1,17539:12321401,17855223 -g1,17539:12637547,17855223 -g1,17539:12953693,17855223 -g1,17539:13269839,17855223 -g1,17539:13585985,17855223 -g1,17539:13902131,17855223 -g1,17539:15799005,17855223 -g1,17539:16431297,17855223 -h1,17539:20225045,17855223:0,0,0 -k1,17539:32583029,17855223:12357984 -g1,17539:32583029,17855223 -) -] -) -g1,17541:32583029,17962701 -g1,17541:6630773,17962701 -g1,17541:6630773,17962701 -g1,17541:32583029,17962701 -g1,17541:32583029,17962701 -) -h1,17541:6630773,18159309:0,0,0 -(1,17544:6630773,27832799:25952256,9083666,0 -k1,17544:10523651,27832799:3892878 -h1,17543:10523651,27832799:0,0,0 -(1,17543:10523651,27832799:18166500,9083666,0 -(1,17543:10523651,27832799:18167376,9083688,0 -(1,17543:10523651,27832799:18167376,9083688,0 -(1,17543:10523651,27832799:0,9083688,0 -(1,17543:10523651,27832799:0,14208860,0 -(1,17543:10523651,27832799:28417720,14208860,0 -) -k1,17543:10523651,27832799:-28417720 -) -) -g1,17543:28691027,27832799 -) -) -) -g1,17544:28690151,27832799 -k1,17544:32583029,27832799:3892878 -) -(1,17551:6630773,28674287:25952256,513147,134348 -h1,17550:6630773,28674287:983040,0,0 -k1,17550:8519224,28674287:277576 -k1,17550:9725366,28674287:277497 -k1,17550:11194388,28674287:277577 -k1,17550:12491049,28674287:277576 -k1,17550:14133740,28674287:277576 -k1,17550:15070608,28674287:277576 -k1,17550:17819547,28674287:277576 -k1,17550:18756415,28674287:277576 -k1,17550:20053076,28674287:277576 -k1,17550:24256914,28674287:277576 -k1,17550:27428560,28674287:277576 -k1,17550:28237633,28674287:277576 -k1,17550:31931601,28674287:277576 -k1,17550:32583029,28674287:0 -) -(1,17551:6630773,29515775:25952256,513147,134348 -k1,17550:9534580,29515775:187995 -k1,17550:10741659,29515775:187994 -k1,17550:12609997,29515775:187995 -k1,17550:13457284,29515775:187995 -k1,17550:17256312,29515775:187994 -k1,17550:18391958,29515775:187995 -k1,17550:19599037,29515775:187994 -k1,17550:21122000,29515775:187995 -k1,17550:23244618,29515775:187995 -k1,17550:25593989,29515775:187994 -k1,17550:27471502,29515775:187995 -k1,17550:28275535,29515775:187995 -k1,17550:30010834,29515775:187994 -k1,17550:31217914,29515775:187995 -k1,17550:32583029,29515775:0 -) -(1,17551:6630773,30357263:25952256,513147,134348 -g1,17550:7489294,30357263 -g1,17550:10159886,30357263 -g1,17550:11018407,30357263 -g1,17550:12236721,30357263 -g1,17550:15319534,30357263 -g1,17550:18412833,30357263 -g1,17550:19143559,30357263 -g1,17550:22759180,30357263 -k1,17551:32583029,30357263:7322995 -g1,17551:32583029,30357263 -) -(1,17555:6630773,33164831:25952256,32768,229376 -(1,17555:6630773,33164831:0,32768,229376 -(1,17555:6630773,33164831:5505024,32768,229376 -r1,17566:12135797,33164831:5505024,262144,229376 -) -k1,17555:6630773,33164831:-5505024 -) -(1,17555:6630773,33164831:25952256,32768,0 -r1,17566:32583029,33164831:25952256,32768,0 -) -) -(1,17555:6630773,34769159:25952256,606339,14155 -(1,17555:6630773,34769159:1974731,582746,14155 -g1,17555:6630773,34769159 -g1,17555:8605504,34769159 -) -k1,17555:32583029,34769159:19476774 -g1,17555:32583029,34769159 -) -(1,17559:6630773,36003863:25952256,513147,134348 -k1,17558:9795316,36003863:319625 -k1,17558:13622428,36003863:319625 -k1,17558:16468466,36003863:319625 -k1,17558:19550433,36003863:319624 -k1,17558:23085254,36003863:319625 -k1,17558:25179594,36003863:319625 -(1,17558:25179594,36003863:0,452978,122846 -r1,17566:29406690,36003863:4227096,575824,122846 -k1,17558:25179594,36003863:-4227096 -) -(1,17558:25179594,36003863:4227096,452978,122846 -k1,17558:25179594,36003863:3277 -h1,17558:29403413,36003863:0,411205,112570 -) -k1,17558:29726315,36003863:319625 -k1,17559:32583029,36003863:0 -) -(1,17559:6630773,36845351:25952256,505283,126483 -(1,17558:6630773,36845351:0,452978,115847 -r1,17566:8395886,36845351:1765113,568825,115847 -k1,17558:6630773,36845351:-1765113 -) -(1,17558:6630773,36845351:1765113,452978,115847 -k1,17558:6630773,36845351:3277 -h1,17558:8392609,36845351:0,411205,112570 -) -k1,17558:8808520,36845351:238964 -k1,17558:10238929,36845351:238964 -(1,17558:10238929,36845351:0,452978,122846 -r1,17566:14114313,36845351:3875384,575824,122846 -k1,17558:10238929,36845351:-3875384 -) -(1,17558:10238929,36845351:3875384,452978,122846 -k1,17558:10238929,36845351:3277 -h1,17558:14111036,36845351:0,411205,112570 -) -k1,17558:14353277,36845351:238964 -k1,17558:17448954,36845351:238963 -(1,17558:17448954,36845351:0,452978,115847 -r1,17566:20269203,36845351:2820249,568825,115847 -k1,17558:17448954,36845351:-2820249 -) -(1,17558:17448954,36845351:2820249,452978,115847 -k1,17558:17448954,36845351:3277 -h1,17558:20265926,36845351:0,411205,112570 -) -k1,17558:20681837,36845351:238964 -k1,17558:22387497,36845351:238964 -k1,17558:25152874,36845351:238964 -(1,17558:25152874,36845351:0,414482,115847 -r1,17566:25511140,36845351:358266,530329,115847 -k1,17558:25152874,36845351:-358266 -) -(1,17558:25152874,36845351:358266,414482,115847 -k1,17558:25152874,36845351:3277 -h1,17558:25507863,36845351:0,411205,112570 -) -k1,17558:25923774,36845351:238964 -(1,17558:25923774,36845351:0,414482,115847 -r1,17566:26282040,36845351:358266,530329,115847 -k1,17558:25923774,36845351:-358266 -) -(1,17558:25923774,36845351:358266,414482,115847 -k1,17558:25923774,36845351:3277 -h1,17558:26278763,36845351:0,411205,112570 -) -k1,17558:26694674,36845351:238964 -(1,17558:26694674,36845351:0,452978,115847 -r1,17566:28459787,36845351:1765113,568825,115847 -k1,17558:26694674,36845351:-1765113 -) -(1,17558:26694674,36845351:1765113,452978,115847 -k1,17558:26694674,36845351:3277 -h1,17558:28456510,36845351:0,411205,112570 -) -k1,17558:28698750,36845351:238963 -k1,17558:30129159,36845351:238964 -(1,17558:30129159,36845351:0,452978,115847 -r1,17566:31542560,36845351:1413401,568825,115847 -k1,17558:30129159,36845351:-1413401 -) -(1,17558:30129159,36845351:1413401,452978,115847 -k1,17558:30129159,36845351:3277 -h1,17558:31539283,36845351:0,411205,112570 -) -k1,17558:31955194,36845351:238964 -k1,17558:32583029,36845351:0 -) -(1,17559:6630773,37686839:25952256,513147,134348 -k1,17558:7987327,37686839:153313 -k1,17558:10419327,37686839:153313 -k1,17558:11440991,37686839:153312 -k1,17558:12726766,37686839:153313 -k1,17558:15549360,37686839:153313 -k1,17558:16721758,37686839:153313 -k1,17558:19637414,37686839:153313 -(1,17558:19637414,37686839:0,452978,122846 -r1,17566:23161086,37686839:3523672,575824,122846 -k1,17558:19637414,37686839:-3523672 -) -(1,17558:19637414,37686839:3523672,452978,122846 -k1,17558:19637414,37686839:3277 -h1,17558:23157809,37686839:0,411205,112570 -) -k1,17558:23314399,37686839:153313 -k1,17558:26251680,37686839:153312 -k1,17558:27021031,37686839:153313 -k1,17558:29754496,37686839:153313 -k1,17558:32583029,37686839:0 -) -(1,17559:6630773,38528327:25952256,513147,134348 -k1,17558:7990228,38528327:168010 -k1,17558:9850379,38528327:168011 -k1,17558:13010108,38528327:168010 -k1,17558:14745740,38528327:168011 -k1,17558:17824204,38528327:168010 -k1,17558:19276721,38528327:168011 -k1,17558:21596933,38528327:168010 -k1,17558:24767147,38528327:168011 -k1,17558:26131844,38528327:168010 -k1,17558:28688642,38528327:168011 -k1,17558:31015408,38528327:168010 -k1,17558:32583029,38528327:0 -) -(1,17559:6630773,39369815:25952256,505283,126483 -k1,17558:8436038,39369815:203565 -k1,17558:10135789,39369815:203564 -k1,17558:13331073,39369815:203565 -k1,17558:14667100,39369815:203565 -k1,17558:15936935,39369815:203564 -k1,17558:16888266,39369815:203565 -k1,17558:19341027,39369815:203565 -k1,17558:20938543,39369815:203565 -k1,17558:22161192,39369815:203564 -k1,17558:26059021,39369815:203565 -k1,17558:27547092,39369815:203565 -k1,17558:30128958,39369815:203564 -k1,17558:31464985,39369815:203565 -k1,17558:32583029,39369815:0 -) -(1,17559:6630773,40211303:25952256,505283,126483 -g1,17558:8469057,40211303 -g1,17558:9319714,40211303 -g1,17558:10543926,40211303 -g1,17558:11762240,40211303 -k1,17559:32583029,40211303:19039520 -g1,17559:32583029,40211303 -) -(1,17561:6630773,41052791:25952256,513147,134348 -h1,17560:6630773,41052791:983040,0,0 -k1,17560:9858531,41052791:142978 -k1,17560:10949159,41052791:142977 -k1,17560:14074025,41052791:142978 -k1,17560:16852205,41052791:142977 -k1,17560:20435168,41052791:142978 -k1,17560:22626145,41052791:142977 -k1,17560:23124983,41052791:142978 -k1,17560:25673133,41052791:142978 -k1,17560:26502272,41052791:142977 -k1,17560:27415953,41052791:142978 -k1,17560:30804928,41052791:142977 -k1,17560:31563944,41052791:142978 -k1,17560:32583029,41052791:0 -) -(1,17561:6630773,41894279:25952256,505283,134348 -k1,17560:8423707,41894279:139461 -k1,17560:9801142,41894279:139460 -k1,17560:10626765,41894279:139461 -k1,17560:13448614,41894279:139460 -k1,17560:15636075,41894279:139461 -k1,17560:16131396,41894279:139461 -k1,17560:19278303,41894279:139460 -k1,17560:20103926,41894279:139461 -k1,17560:21014089,41894279:139460 -k1,17560:24399548,41894279:139461 -k1,17560:25166844,41894279:139461 -k1,17560:26509545,41894279:139460 -k1,17560:28927693,41894279:139461 -k1,17560:29935505,41894279:139460 -k1,17560:31207428,41894279:139461 -k1,17560:32583029,41894279:0 -) -(1,17561:6630773,42735767:25952256,513147,134348 -k1,17560:9519094,42735767:219040 -k1,17560:13178120,42735767:219041 -k1,17560:15282631,42735767:219040 -k1,17560:16976887,42735767:219041 -k1,17560:17882089,42735767:219040 -k1,17560:18456989,42735767:219040 -k1,17560:20941610,42735767:219041 -k1,17560:23565822,42735767:219040 -(1,17560:23565822,42735767:0,452978,115847 -r1,17566:28144630,42735767:4578808,568825,115847 -k1,17560:23565822,42735767:-4578808 -) -(1,17560:23565822,42735767:4578808,452978,115847 -k1,17560:23565822,42735767:3277 -h1,17560:28141353,42735767:0,411205,112570 -) -k1,17560:28363671,42735767:219041 -k1,17560:30468182,42735767:219040 -k1,17560:32583029,42735767:0 -) -(1,17561:6630773,43577255:25952256,513147,134348 -k1,17560:8837917,43577255:196499 -k1,17560:11448761,43577255:196498 -k1,17560:12331422,43577255:196499 -k1,17560:15286986,43577255:196498 -k1,17560:16680172,43577255:196499 -k1,17560:20316655,43577255:196498 -k1,17560:21797660,43577255:196499 -k1,17560:23469374,43577255:196499 -k1,17560:25367842,43577255:196498 -k1,17560:28246730,43577255:196499 -k1,17560:29129390,43577255:196498 -k1,17560:31591469,43577255:196499 -k1,17560:32583029,43577255:0 -) -(1,17561:6630773,44418743:25952256,505283,134348 -g1,17560:9920025,44418743 -g1,17560:10735292,44418743 -g1,17560:13213208,44418743 -h1,17560:14755926,44418743:0,0,0 -g1,17560:14955155,44418743 -g1,17560:17834807,44418743 -g1,17560:19427987,44418743 -g1,17560:20646301,44418743 -g1,17560:25469095,44418743 -k1,17561:32583029,44418743:4280813 -g1,17561:32583029,44418743 -) -] -(1,17566:32583029,45706769:0,0,0 -g1,17566:32583029,45706769 -) -) -] -(1,17566:6630773,47279633:25952256,0,0 -h1,17566:6630773,47279633:25952256,0,0 -) -] -(1,17566:4262630,4025873:0,0,0 -[1,17566:-473656,4025873:0,0,0 -(1,17566:-473656,-710413:0,0,0 -(1,17566:-473656,-710413:0,0,0 -g1,17566:-473656,-710413 -) -g1,17566:-473656,-710413 +k1,17595:3078556,2439708:-34777008 ) ] +[1,17595:3078558,4812305:0,0,0 +(1,17595:3078558,49800853:0,16384,2228224 +k1,17595:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,17595:2537886,49800853:1179648,16384,0 ) -] -!27740 -}306 -Input:2616:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2617:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2618:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2619:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2620:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2621:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2622:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2623:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2624:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2625:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2626:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1046 -{307 -[1,17628:4262630,47279633:28320399,43253760,0 -(1,17628:4262630,4025873:0,0,0 -[1,17628:-473656,4025873:0,0,0 -(1,17628:-473656,-710413:0,0,0 -(1,17628:-473656,-644877:0,0,0 -k1,17628:-473656,-644877:-65536 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,17595:3078558,51504789:16384,1179648,0 +) +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 +) +] +) +) +) +] +[1,17595:3078558,4812305:0,0,0 +(1,17595:3078558,49800853:0,16384,2228224 +g1,17595:29030814,49800853 +g1,17595:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,17595:36151628,51504789:16384,1179648,0 +) +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 +) +] +) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,17595:37855564,49800853:1179648,16384,0 +) +) +k1,17595:3078556,49800853:-34777008 +) +] +g1,17595:6630773,4812305 +g1,17595:6630773,4812305 +g1,17595:8017514,4812305 +g1,17595:11261546,4812305 +g1,17595:12076813,4812305 +g1,17595:14985956,4812305 +k1,17595:31387652,4812305:16401696 +) +) +] +[1,17595:6630773,45706769:25952256,40108032,0 +(1,17595:6630773,45706769:25952256,40108032,0 +(1,17595:6630773,45706769:0,0,0 +g1,17595:6630773,45706769 +) +[1,17595:6630773,45706769:25952256,40108032,0 +v1,17563:6630773,6254097:0,393216,0 +(1,17563:6630773,30694252:25952256,24833371,0 +g1,17563:6630773,30694252 +g1,17563:6237557,30694252 +r1,17595:6368629,30694252:131072,24833371,0 +g1,17563:6567858,30694252 +g1,17563:6764466,30694252 +[1,17563:6764466,30694252:25818563,24833371,0 +(1,17515:6764466,6374028:25818563,513147,134348 +k1,17514:8397623,6374028:236585 +k1,17514:10273263,6374028:236585 +k1,17514:11777314,6374028:236585 +k1,17514:14402686,6374028:236585 +k1,17514:17102769,6374028:236585 +k1,17514:18530799,6374028:236585 +k1,17514:21109641,6374028:236585 +k1,17514:23721251,6374028:236585 +k1,17514:24617128,6374028:236585 +k1,17514:25872798,6374028:236585 +k1,17514:29206614,6374028:236585 +k1,17514:31010820,6374028:236585 +k1,17514:32583029,6374028:0 +) +(1,17515:6764466,7239108:25818563,513147,134348 +g1,17514:8778387,7239108 +g1,17514:9629044,7239108 +g1,17514:11214359,7239108 +g1,17514:13045434,7239108 +g1,17514:13896091,7239108 +g1,17514:15361476,7239108 +g1,17514:16212788,7239108 +g1,17514:17735844,7239108 +g1,17514:18926633,7239108 +g1,17514:22215885,7239108 +g1,17514:23031152,7239108 +g1,17514:25509068,7239108 +h1,17514:26479656,7239108:0,0,0 +g1,17514:26678885,7239108 +g1,17514:27687484,7239108 +g1,17514:29384866,7239108 +h1,17514:30181784,7239108:0,0,0 +k1,17515:32583029,7239108:2020481 +g1,17515:32583029,7239108 +) +(1,17517:6764466,8104188:25818563,513147,134348 +h1,17516:6764466,8104188:983040,0,0 +k1,17516:8766399,8104188:201004 +k1,17516:9738106,8104188:201004 +k1,17516:12600527,8104188:201004 +k1,17516:13669883,8104188:201004 +k1,17516:15531569,8104188:201004 +k1,17516:16751658,8104188:201004 +k1,17516:18024831,8104188:201004 +k1,17516:19687943,8104188:201004 +k1,17516:22842654,8104188:201003 +k1,17516:23702950,8104188:201004 +k1,17516:24259814,8104188:201004 +(1,17516:24259814,8104188:0,452978,122846 +r1,17595:25673215,8104188:1413401,575824,122846 +k1,17516:24259814,8104188:-1413401 +) +(1,17516:24259814,8104188:1413401,452978,122846 +k1,17516:24259814,8104188:3277 +h1,17516:25669938,8104188:0,411205,112570 +) +k1,17516:25874219,8104188:201004 +k1,17516:27352520,8104188:201004 +k1,17516:29513050,8104188:201004 +k1,17516:30661705,8104188:201004 +k1,17516:31218569,8104188:201004 +k1,17517:32583029,8104188:0 +) +(1,17517:6764466,8969268:25818563,505283,134348 +k1,17516:8009452,8969268:271776 +k1,17516:9732195,8969268:271776 +k1,17516:12401932,8969268:271775 +(1,17516:12401932,8969268:0,452978,115847 +r1,17595:15573892,8969268:3171960,568825,115847 +k1,17516:12401932,8969268:-3171960 +) +(1,17516:12401932,8969268:3171960,452978,115847 +k1,17516:12401932,8969268:3277 +h1,17516:15570615,8969268:0,411205,112570 +) +k1,17516:15845668,8969268:271776 +k1,17516:18108428,8969268:271776 +k1,17516:19399289,8969268:271776 +k1,17516:23598638,8969268:271776 +k1,17516:26330635,8969268:271775 +k1,17516:28961052,8969268:271776 +k1,17516:31563944,8969268:271776 +k1,17516:32583029,8969268:0 +) +(1,17517:6764466,9834348:25818563,513147,134348 +g1,17516:9895120,9834348 +g1,17516:10753641,9834348 +g1,17516:11971955,9834348 +k1,17517:32583028,9834348:18477876 +g1,17517:32583028,9834348 +) +v1,17519:6764466,10519203:0,393216,0 +(1,17547:6764466,26051162:25818563,15925175,196608 +g1,17547:6764466,26051162 +g1,17547:6764466,26051162 +g1,17547:6567858,26051162 +(1,17547:6567858,26051162:0,15925175,196608 +r1,17595:32779637,26051162:26211779,16121783,196608 +k1,17547:6567857,26051162:-26211780 +) +(1,17547:6567858,26051162:26211779,15925175,196608 +[1,17547:6764466,26051162:25818563,15728567,0 +(1,17521:6764466,10747034:25818563,424439,106246 +(1,17520:6764466,10747034:0,0,0 +g1,17520:6764466,10747034 +g1,17520:6764466,10747034 +g1,17520:6436786,10747034 +(1,17520:6436786,10747034:0,0,0 +) +g1,17520:6764466,10747034 +) +k1,17521:6764466,10747034:0 +h1,17521:10084006,10747034:0,0,0 +k1,17521:32583030,10747034:22499024 +g1,17521:32583030,10747034 +) +(1,17546:6764466,11562961:25818563,424439,112852 +(1,17523:6764466,11562961:0,0,0 +g1,17523:6764466,11562961 +g1,17523:6764466,11562961 +g1,17523:6436786,11562961 +(1,17523:6436786,11562961:0,0,0 +) +g1,17523:6764466,11562961 +) +g1,17546:7760328,11562961 +g1,17546:9752052,11562961 +g1,17546:11411822,11562961 +g1,17546:13071592,11562961 +g1,17546:15063316,11562961 +g1,17546:16391132,11562961 +g1,17546:18382856,11562961 +g1,17546:19710672,11562961 +g1,17546:21702396,11562961 +g1,17546:23030212,11562961 +g1,17546:24358028,11562961 +g1,17546:26349752,11562961 +g1,17546:28009522,11562961 +h1,17546:30333200,11562961:0,0,0 +k1,17546:32583029,11562961:2249829 +g1,17546:32583029,11562961 +) +(1,17546:6764466,12247816:25818563,424439,112852 +h1,17546:6764466,12247816:0,0,0 +g1,17546:7760328,12247816 +g1,17546:10747913,12247816 +g1,17546:11079867,12247816 +g1,17546:11743775,12247816 +g1,17546:12407683,12247816 +g1,17546:14731361,12247816 +g1,17546:15395269,12247816 +g1,17546:16059177,12247816 +h1,17546:17386993,12247816:0,0,0 +k1,17546:32583029,12247816:15196036 +g1,17546:32583029,12247816 +) +(1,17546:6764466,12932671:25818563,431045,112852 +h1,17546:6764466,12932671:0,0,0 +g1,17546:7760328,12932671 +g1,17546:11079867,12932671 +g1,17546:14067452,12932671 +g1,17546:16723084,12932671 +g1,17546:18714808,12932671 +g1,17546:22366301,12932671 +g1,17546:24689979,12932671 +k1,17546:24689979,12932671:0 +h1,17546:25685841,12932671:0,0,0 +k1,17546:32583029,12932671:6897188 +g1,17546:32583029,12932671 +) +(1,17546:6764466,13617526:25818563,431045,106246 +h1,17546:6764466,13617526:0,0,0 +g1,17546:7760328,13617526 +g1,17546:8092282,13617526 +g1,17546:8424236,13617526 +g1,17546:8756190,13617526 +g1,17546:9088144,13617526 +g1,17546:14399407,13617526 +h1,17546:17055038,13617526:0,0,0 +k1,17546:32583029,13617526:15527991 +g1,17546:32583029,13617526 +) +(1,17546:6764466,14302381:25818563,431045,52847 +h1,17546:6764466,14302381:0,0,0 +g1,17546:7760328,14302381 +g1,17546:8092282,14302381 +g1,17546:8424236,14302381 +g1,17546:8756190,14302381 +g1,17546:9088144,14302381 +g1,17546:12739637,14302381 +h1,17546:15395268,14302381:0,0,0 +k1,17546:32583028,14302381:17187760 +g1,17546:32583028,14302381 +) +(1,17546:6764466,14987236:25818563,431045,52847 +h1,17546:6764466,14987236:0,0,0 +g1,17546:7760328,14987236 +g1,17546:8092282,14987236 +g1,17546:8424236,14987236 +g1,17546:8756190,14987236 +g1,17546:9088144,14987236 +g1,17546:13071591,14987236 +h1,17546:15727222,14987236:0,0,0 +k1,17546:32583030,14987236:16855808 +g1,17546:32583030,14987236 +) +(1,17546:6764466,15672091:25818563,431045,52847 +h1,17546:6764466,15672091:0,0,0 +g1,17546:7760328,15672091 +g1,17546:8092282,15672091 +g1,17546:8424236,15672091 +g1,17546:8756190,15672091 +g1,17546:9088144,15672091 +g1,17546:13403545,15672091 +h1,17546:16059176,15672091:0,0,0 +k1,17546:32583029,15672091:16523853 +g1,17546:32583029,15672091 +) +(1,17546:6764466,16356946:25818563,431045,106246 +h1,17546:6764466,16356946:0,0,0 +g1,17546:7760328,16356946 +g1,17546:8092282,16356946 +g1,17546:8424236,16356946 +g1,17546:8756190,16356946 +g1,17546:9088144,16356946 +g1,17546:13403545,16356946 +h1,17546:16059176,16356946:0,0,0 +k1,17546:32583029,16356946:16523853 +g1,17546:32583029,16356946 +) +(1,17546:6764466,17041801:25818563,431045,52847 +h1,17546:6764466,17041801:0,0,0 +g1,17546:7760328,17041801 +g1,17546:8092282,17041801 +g1,17546:8424236,17041801 +g1,17546:8756190,17041801 +g1,17546:9088144,17041801 +g1,17546:13403545,17041801 +h1,17546:16059176,17041801:0,0,0 +k1,17546:32583029,17041801:16523853 +g1,17546:32583029,17041801 +) +(1,17546:6764466,17726656:25818563,431045,52847 +h1,17546:6764466,17726656:0,0,0 +g1,17546:7760328,17726656 +g1,17546:8092282,17726656 +g1,17546:8424236,17726656 +g1,17546:8756190,17726656 +g1,17546:9088144,17726656 +g1,17546:13403545,17726656 +h1,17546:16059176,17726656:0,0,0 +k1,17546:32583029,17726656:16523853 +g1,17546:32583029,17726656 +) +(1,17546:6764466,18411511:25818563,431045,106246 +h1,17546:6764466,18411511:0,0,0 +g1,17546:7760328,18411511 +g1,17546:8092282,18411511 +g1,17546:8424236,18411511 +g1,17546:8756190,18411511 +g1,17546:9088144,18411511 +g1,17546:12407683,18411511 +h1,17546:15063314,18411511:0,0,0 +k1,17546:32583030,18411511:17519716 +g1,17546:32583030,18411511 +) +(1,17546:6764466,19096366:25818563,424439,106246 +h1,17546:6764466,19096366:0,0,0 +g1,17546:7760328,19096366 +g1,17546:8092282,19096366 +g1,17546:8424236,19096366 +g1,17546:8756190,19096366 +g1,17546:9088144,19096366 +g1,17546:11743776,19096366 +h1,17546:13071592,19096366:0,0,0 +k1,17546:32583028,19096366:19511436 +g1,17546:32583028,19096366 +) +(1,17546:6764466,19781221:25818563,431045,106246 +h1,17546:6764466,19781221:0,0,0 +g1,17546:7760328,19781221 +g1,17546:8092282,19781221 +g1,17546:8424236,19781221 +g1,17546:8756190,19781221 +g1,17546:9088144,19781221 +g1,17546:13071591,19781221 +h1,17546:15727222,19781221:0,0,0 +k1,17546:32583030,19781221:16855808 +g1,17546:32583030,19781221 +) +(1,17546:6764466,20466076:25818563,431045,106246 +h1,17546:6764466,20466076:0,0,0 +g1,17546:7760328,20466076 +g1,17546:8092282,20466076 +g1,17546:8424236,20466076 +g1,17546:8756190,20466076 +g1,17546:9088144,20466076 +g1,17546:13735499,20466076 +h1,17546:16391130,20466076:0,0,0 +k1,17546:32583029,20466076:16191899 +g1,17546:32583029,20466076 +) +(1,17546:6764466,21150931:25818563,424439,8257 +h1,17546:6764466,21150931:0,0,0 +g1,17546:7760328,21150931 +g1,17546:8092282,21150931 +g1,17546:8424236,21150931 +g1,17546:8756190,21150931 +g1,17546:9088144,21150931 +g1,17546:11743776,21150931 +h1,17546:13071592,21150931:0,0,0 +k1,17546:32583028,21150931:19511436 +g1,17546:32583028,21150931 +) +(1,17546:6764466,21835786:25818563,431045,52847 +h1,17546:6764466,21835786:0,0,0 +g1,17546:7760328,21835786 +g1,17546:8092282,21835786 +g1,17546:8424236,21835786 +g1,17546:8756190,21835786 +g1,17546:9088144,21835786 +g1,17546:13735499,21835786 +h1,17546:16391130,21835786:0,0,0 +k1,17546:32583029,21835786:16191899 +g1,17546:32583029,21835786 +) +(1,17546:6764466,22520641:25818563,431045,6605 +h1,17546:6764466,22520641:0,0,0 +g1,17546:7760328,22520641 +g1,17546:8092282,22520641 +g1,17546:8424236,22520641 +g1,17546:8756190,22520641 +g1,17546:9088144,22520641 +g1,17546:11079868,22520641 +h1,17546:13735499,22520641:0,0,0 +k1,17546:32583029,22520641:18847530 +g1,17546:32583029,22520641 +) +(1,17546:6764466,23205496:25818563,424439,112852 +h1,17546:6764466,23205496:0,0,0 +g1,17546:7760328,23205496 +g1,17546:8092282,23205496 +g1,17546:8424236,23205496 +g1,17546:8756190,23205496 +g1,17546:9088144,23205496 +g1,17546:11411822,23205496 +g1,17546:11743776,23205496 +g1,17546:14731361,23205496 +g1,17546:17386993,23205496 +g1,17546:19378717,23205496 +g1,17546:23030210,23205496 +g1,17546:25353888,23205496 +k1,17546:25353888,23205496:0 +h1,17546:26349750,23205496:0,0,0 +k1,17546:32583029,23205496:6233279 +g1,17546:32583029,23205496 +) +(1,17546:6764466,23890351:25818563,398014,0 +h1,17546:6764466,23890351:0,0,0 +g1,17546:7760328,23890351 +k1,17546:7760328,23890351:0 +h1,17546:19378718,23890351:0,0,0 +k1,17546:32583029,23890351:13204311 +g1,17546:32583029,23890351 +) +(1,17546:6764466,24575206:25818563,424439,112852 +h1,17546:6764466,24575206:0,0,0 +g1,17546:7760328,24575206 +g1,17546:11743775,24575206 +g1,17546:13735499,24575206 +g1,17546:14399407,24575206 +h1,17546:16059177,24575206:0,0,0 +k1,17546:32583029,24575206:16523852 +g1,17546:32583029,24575206 +) +(1,17546:6764466,25260061:25818563,424439,106246 +h1,17546:6764466,25260061:0,0,0 +g1,17546:7760328,25260061 +g1,17546:12739637,25260061 +g1,17546:14731361,25260061 +g1,17546:15395269,25260061 +h1,17546:17055039,25260061:0,0,0 +k1,17546:32583029,25260061:15527990 +g1,17546:32583029,25260061 +) +(1,17546:6764466,25944916:25818563,424439,106246 +h1,17546:6764466,25944916:0,0,0 +g1,17546:7760328,25944916 +h1,17546:13403545,25944916:0,0,0 +k1,17546:32583029,25944916:19179484 +g1,17546:32583029,25944916 +) +] +) +g1,17547:32583029,26051162 +g1,17547:6764466,26051162 +g1,17547:6764466,26051162 +g1,17547:32583029,26051162 +g1,17547:32583029,26051162 +) +h1,17547:6764466,26247770:0,0,0 +(1,17551:6764466,27112850:25818563,513147,134348 +h1,17550:6764466,27112850:983040,0,0 +k1,17550:10303090,27112850:157622 +(1,17550:10303090,27112850:0,452978,115847 +r1,17595:12068203,27112850:1765113,568825,115847 +k1,17550:10303090,27112850:-1765113 +) +(1,17550:10303090,27112850:1765113,452978,115847 +k1,17550:10303090,27112850:3277 +h1,17550:12064926,27112850:0,411205,112570 +) +k1,17550:12225824,27112850:157621 +k1,17550:14374430,27112850:157622 +k1,17550:15551137,27112850:157622 +k1,17550:18640183,27112850:157621 +k1,17550:19457097,27112850:157622 +k1,17550:21904547,27112850:157622 +k1,17550:23253614,27112850:157622 +k1,17550:24515517,27112850:157621 +k1,17550:25420905,27112850:157622 +k1,17550:26864343,27112850:157622 +k1,17550:28535190,27112850:157621 +k1,17550:29344240,27112850:157622 +k1,17550:32583029,27112850:0 +) +(1,17551:6764466,27977930:25818563,513147,134348 +k1,17550:8333132,27977930:174715 +k1,17550:11037537,27977930:174715 +k1,17550:15297110,27977930:174714 +k1,17550:16340177,27977930:174715 +k1,17550:17619174,27977930:174715 +k1,17550:18886374,27977930:174715 +(1,17550:18886374,27977930:0,452978,115847 +r1,17595:21354911,27977930:2468537,568825,115847 +k1,17550:18886374,27977930:-2468537 +) +(1,17550:18886374,27977930:2468537,452978,115847 +k1,17550:18886374,27977930:3277 +h1,17550:21351634,27977930:0,411205,112570 +) +k1,17550:21529625,27977930:174714 +k1,17550:22651991,27977930:174715 +k1,17550:23182566,27977930:174715 +k1,17550:24350807,27977930:174715 +k1,17550:25184814,27977930:174715 +k1,17550:26378613,27977930:174714 +k1,17550:28621644,27977930:174715 +k1,17550:29455651,27977930:174715 +k1,17551:32583029,27977930:0 +k1,17551:32583029,27977930:0 +) +v1,17553:6764466,28662785:0,393216,0 +(1,17561:6764466,30497644:25818563,2228075,196608 +g1,17561:6764466,30497644 +g1,17561:6764466,30497644 +g1,17561:6567858,30497644 +(1,17561:6567858,30497644:0,2228075,196608 +r1,17595:32779637,30497644:26211779,2424683,196608 +k1,17561:6567857,30497644:-26211780 +) +(1,17561:6567858,30497644:26211779,2228075,196608 +[1,17561:6764466,30497644:25818563,2031467,0 +(1,17555:6764466,28890616:25818563,424439,106246 +(1,17554:6764466,28890616:0,0,0 +g1,17554:6764466,28890616 +g1,17554:6764466,28890616 +g1,17554:6436786,28890616 +(1,17554:6436786,28890616:0,0,0 +) +g1,17554:6764466,28890616 +) +k1,17555:6764466,28890616:0 +h1,17555:9420098,28890616:0,0,0 +k1,17555:32583030,28890616:23162932 +g1,17555:32583030,28890616 +) +(1,17560:6764466,29706543:25818563,424439,112852 +(1,17557:6764466,29706543:0,0,0 +g1,17557:6764466,29706543 +g1,17557:6764466,29706543 +g1,17557:6436786,29706543 +(1,17557:6436786,29706543:0,0,0 +) +g1,17557:6764466,29706543 +) +g1,17560:7760328,29706543 +g1,17560:9088144,29706543 +g1,17560:11411822,29706543 +g1,17560:11743776,29706543 +g1,17560:12075730,29706543 +g1,17560:12407684,29706543 +g1,17560:12739638,29706543 +g1,17560:13071592,29706543 +g1,17560:13403546,29706543 +g1,17560:13735500,29706543 +g1,17560:16723085,29706543 +g1,17560:17055039,29706543 +g1,17560:17386993,29706543 +g1,17560:17718947,29706543 +g1,17560:18050901,29706543 +g1,17560:18382855,29706543 +g1,17560:21370440,29706543 +g1,17560:21702394,29706543 +g1,17560:22034348,29706543 +g1,17560:22366302,29706543 +g1,17560:22698256,29706543 +g1,17560:23030210,29706543 +g1,17560:26349749,29706543 +g1,17560:26681703,29706543 +g1,17560:27013657,29706543 +g1,17560:27345611,29706543 +g1,17560:27677565,29706543 +h1,17560:30001243,29706543:0,0,0 +k1,17560:32583029,29706543:2581786 +g1,17560:32583029,29706543 +) +(1,17560:6764466,30391398:25818563,431045,106246 +h1,17560:6764466,30391398:0,0,0 +g1,17560:7760328,30391398 +g1,17560:9088144,30391398 +g1,17560:13735499,30391398 +g1,17560:16391131,30391398 +g1,17560:16723085,30391398 +g1,17560:17055039,30391398 +g1,17560:17386993,30391398 +g1,17560:17718947,30391398 +g1,17560:18050901,30391398 +g1,17560:18382855,30391398 +g1,17560:22034348,30391398 +g1,17560:22366302,30391398 +g1,17560:22698256,30391398 +g1,17560:23030210,30391398 +h1,17560:25685841,30391398:0,0,0 +k1,17560:32583029,30391398:6897188 +g1,17560:32583029,30391398 +) +] +) +g1,17561:32583029,30497644 +g1,17561:6764466,30497644 +g1,17561:6764466,30497644 +g1,17561:32583029,30497644 +g1,17561:32583029,30497644 +) +h1,17561:6764466,30694252:0,0,0 +] +g1,17563:32583029,30694252 +) +h1,17563:6630773,30694252:0,0,0 +v1,17566:6630773,31559332:0,393216,0 +(1,17579:6630773,36676579:25952256,5510463,0 +g1,17579:6630773,36676579 +g1,17579:6237557,36676579 +r1,17595:6368629,36676579:131072,5510463,0 +g1,17579:6567858,36676579 +g1,17579:6764466,36676579 +[1,17579:6764466,36676579:25818563,5510463,0 +(1,17567:6764466,31867630:25818563,701514,196608 +(1,17566:6764466,31867630:0,701514,196608 +r1,17595:8863446,31867630:2098980,898122,196608 +k1,17566:6764466,31867630:-2098980 +) +(1,17566:6764466,31867630:2098980,701514,196608 +) +k1,17566:9060684,31867630:197238 +k1,17566:10378613,31867630:327680 +k1,17566:12967915,31867630:197238 +k1,17566:13781192,31867630:197239 +k1,17566:15628627,31867630:197238 +k1,17566:17613032,31867630:197238 +k1,17566:18829355,31867630:197238 +k1,17566:21788937,31867630:197239 +k1,17566:24939883,31867630:197238 +k1,17566:25796413,31867630:197238 +k1,17566:27953177,31867630:197238 +(1,17566:27953177,31867630:0,414482,115847 +r1,17595:28311443,31867630:358266,530329,115847 +k1,17566:27953177,31867630:-358266 +) +(1,17566:27953177,31867630:358266,414482,115847 +k1,17566:27953177,31867630:3277 +h1,17566:28308166,31867630:0,411205,112570 +) +k1,17566:28682352,31867630:197239 +k1,17566:29921612,31867630:197238 +k1,17566:32583029,31867630:0 +) +(1,17567:6764466,32732710:25818563,513147,134348 +g1,17566:7911346,32732710 +g1,17566:9129660,32732710 +(1,17566:9129660,32732710:0,452978,115847 +r1,17595:11949909,32732710:2820249,568825,115847 +k1,17566:9129660,32732710:-2820249 +) +(1,17566:9129660,32732710:2820249,452978,115847 +k1,17566:9129660,32732710:3277 +h1,17566:11946632,32732710:0,411205,112570 +) +g1,17566:12149138,32732710 +g1,17566:14971773,32732710 +g1,17566:15830294,32732710 +g1,17566:17989049,32732710 +(1,17566:17989049,32732710:0,414482,115847 +r1,17595:18347315,32732710:358266,530329,115847 +k1,17566:17989049,32732710:-358266 +) +(1,17566:17989049,32732710:358266,414482,115847 +k1,17566:17989049,32732710:3277 +h1,17566:18344038,32732710:0,411205,112570 +) +g1,17566:18546544,32732710 +g1,17566:19902483,32732710 +g1,17566:21205994,32732710 +k1,17567:32583029,32732710:10110879 +g1,17567:32583029,32732710 +) +v1,17569:6764466,33417565:0,393216,0 +(1,17573:6764466,33758248:25818563,733899,196608 +g1,17573:6764466,33758248 +g1,17573:6764466,33758248 +g1,17573:6567858,33758248 +(1,17573:6567858,33758248:0,733899,196608 +r1,17595:32779637,33758248:26211779,930507,196608 +k1,17573:6567857,33758248:-26211780 +) +(1,17573:6567858,33758248:26211779,733899,196608 +[1,17573:6764466,33758248:25818563,537291,0 +(1,17571:6764466,33652002:25818563,431045,106246 +(1,17570:6764466,33652002:0,0,0 +g1,17570:6764466,33652002 +g1,17570:6764466,33652002 +g1,17570:6436786,33652002 +(1,17570:6436786,33652002:0,0,0 +) +g1,17570:6764466,33652002 +) +k1,17571:6764466,33652002:0 +g1,17571:11411822,33652002 +g1,17571:14731361,33652002 +g1,17571:15395269,33652002 +h1,17571:16059177,33652002:0,0,0 +k1,17571:32583029,33652002:16523852 +g1,17571:32583029,33652002 +) +] +) +g1,17573:32583029,33758248 +g1,17573:6764466,33758248 +g1,17573:6764466,33758248 +g1,17573:32583029,33758248 +g1,17573:32583029,33758248 +) +h1,17573:6764466,33954856:0,0,0 +(1,17577:6764466,34819936:25818563,505283,126483 +h1,17576:6764466,34819936:983040,0,0 +g1,17576:9367556,34819936 +g1,17576:11318562,34819936 +g1,17576:13405883,34819936 +g1,17576:14596672,34819936 +g1,17576:17201728,34819936 +g1,17576:18016995,34819936 +g1,17576:19419465,34819936 +k1,17577:32583029,34819936:11469458 +g1,17577:32583029,34819936 +) +(1,17579:6764466,35685016:25818563,513147,134348 +h1,17578:6764466,35685016:983040,0,0 +k1,17578:9215547,35685016:214337 +k1,17578:10534166,35685016:214337 +k1,17578:11840987,35685016:214336 +(1,17578:11840987,35685016:0,452978,115847 +r1,17595:15012947,35685016:3171960,568825,115847 +k1,17578:11840987,35685016:-3171960 +) +(1,17578:11840987,35685016:3171960,452978,115847 +k1,17578:11840987,35685016:3277 +h1,17578:15009670,35685016:0,411205,112570 +) +k1,17578:15227284,35685016:214337 +k1,17578:16633066,35685016:214337 +(1,17578:16633066,35685016:0,452978,115847 +r1,17595:18398179,35685016:1765113,568825,115847 +k1,17578:16633066,35685016:-1765113 +) +(1,17578:16633066,35685016:1765113,452978,115847 +k1,17578:16633066,35685016:3277 +h1,17578:18394902,35685016:0,411205,112570 +) +k1,17578:18612516,35685016:214337 +k1,17578:19478280,35685016:214336 +k1,17578:22185607,35685016:214337 +k1,17578:23170647,35685016:214337 +k1,17578:28040006,35685016:214337 +k1,17578:28913634,35685016:214336 +k1,17578:30458352,35685016:214337 +k1,17578:32583029,35685016:0 +) +(1,17579:6764466,36550096:25818563,505283,126483 +g1,17578:7649857,36550096 +g1,17578:9127693,36550096 +g1,17578:10013084,36550096 +g1,17578:12898634,36550096 +g1,17578:14705461,36550096 +g1,17578:15896250,36550096 +k1,17579:32583029,36550096:14474939 +g1,17579:32583029,36550096 +) +] +g1,17579:32583029,36676579 +) +h1,17579:6630773,36676579:0,0,0 +(1,17583:6630773,38793397:25952256,555811,147783 +(1,17583:6630773,38793397:2450326,534184,12975 +g1,17583:6630773,38793397 +g1,17583:9081099,38793397 +) +g1,17583:12813899,38793397 +g1,17583:13744576,38793397 +k1,17583:32583029,38793397:16813456 +g1,17583:32583029,38793397 +) +(1,17587:6630773,40051693:25952256,513147,134348 +k1,17586:7393325,40051693:134717 +k1,17586:8547128,40051693:134718 +k1,17586:10048926,40051693:134717 +k1,17586:10842936,40051693:134718 +k1,17586:13102330,40051693:134717 +k1,17586:15018317,40051693:134718 +k1,17586:17007703,40051693:134717 +k1,17586:17951791,40051693:134718 +k1,17586:19475871,40051693:134717 +k1,17586:22750418,40051693:134717 +k1,17586:23501174,40051693:134718 +k1,17586:23991751,40051693:134717 +k1,17586:25999488,40051693:134718 +k1,17586:27523568,40051693:134717 +k1,17586:29708252,40051693:134718 +k1,17586:30862054,40051693:134717 +k1,17586:32583029,40051693:0 +) +(1,17587:6630773,40916773:25952256,505283,134348 +k1,17586:8378710,40916773:247163 +k1,17586:9157371,40916773:247164 +k1,17586:10055962,40916773:247163 +k1,17586:11799313,40916773:247164 +k1,17586:12402336,40916773:247163 +k1,17586:13926797,40916773:247164 +k1,17586:14860122,40916773:247163 +k1,17586:18197308,40916773:247163 +k1,17586:20473467,40916773:247164 +k1,17586:23148084,40916773:247163 +k1,17586:24165951,40916773:247164 +k1,17586:27659112,40916773:247163 +(1,17586:27659112,40916773:0,414482,115847 +r1,17595:29775937,40916773:2116825,530329,115847 +k1,17586:27659112,40916773:-2116825 +) +(1,17586:27659112,40916773:2116825,414482,115847 +k1,17586:27659112,40916773:3277 +h1,17586:29772660,40916773:0,411205,112570 +) +k1,17586:30023101,40916773:247164 +k1,17586:30886302,40916773:247163 +k1,17586:32583029,40916773:0 +) +(1,17587:6630773,41781853:25952256,513147,126483 +k1,17586:10067261,41781853:271099 +k1,17586:10989787,41781853:271098 +k1,17586:12279971,41781853:271099 +(1,17586:12279971,41781853:0,452978,115847 +r1,17595:13693372,41781853:1413401,568825,115847 +k1,17586:12279971,41781853:-1413401 +) +(1,17586:12279971,41781853:1413401,452978,115847 +k1,17586:12279971,41781853:3277 +h1,17586:13690095,41781853:0,411205,112570 +) +k1,17586:13964470,41781853:271098 +k1,17586:17516301,41781853:271099 +k1,17586:18454555,41781853:271098 +(1,17586:18454555,41781853:0,452978,122846 +r1,17595:21274804,41781853:2820249,575824,122846 +k1,17586:18454555,41781853:-2820249 +) +(1,17586:18454555,41781853:2820249,452978,122846 +k1,17586:18454555,41781853:3277 +h1,17586:21271527,41781853:0,411205,112570 +) +k1,17586:21719573,41781853:271099 +k1,17586:23462610,41781853:271098 +k1,17586:25938996,41781853:271099 +k1,17586:26826132,41781853:271098 +k1,17586:28300472,41781853:271099 +k1,17586:29809545,41781853:271098 +k1,17586:32583029,41781853:0 +) +(1,17587:6630773,42646933:25952256,513147,134348 +k1,17586:7866433,42646933:216575 +k1,17586:10348587,42646933:216574 +k1,17586:11512813,42646933:216575 +k1,17586:12495503,42646933:216574 +k1,17586:14600170,42646933:216575 +k1,17586:15432782,42646933:216574 +k1,17586:16668442,42646933:216575 +k1,17586:18335983,42646933:216574 +k1,17586:19749245,42646933:216575 +k1,17586:21619292,42646933:216574 +k1,17586:24117175,42646933:216575 +k1,17586:24985177,42646933:216574 +k1,17586:26220837,42646933:216575 +k1,17586:29509739,42646933:216574 +k1,17586:31931601,42646933:216575 +k1,17587:32583029,42646933:0 +) +(1,17587:6630773,43512013:25952256,452978,122846 +(1,17586:6630773,43512013:0,452978,122846 +r1,17595:9099310,43512013:2468537,575824,122846 +k1,17586:6630773,43512013:-2468537 +) +(1,17586:6630773,43512013:2468537,452978,122846 +k1,17586:6630773,43512013:3277 +h1,17586:9096033,43512013:0,411205,112570 +) +k1,17587:32583028,43512013:23310048 +g1,17587:32583028,43512013 +) +v1,17589:6630773,44196868:0,393216,0 +(1,17595:6630773,45222406:25952256,1418754,196608 +g1,17595:6630773,45222406 +g1,17595:6630773,45222406 +g1,17595:6434165,45222406 +(1,17595:6434165,45222406:0,1418754,196608 +r1,17595:32779637,45222406:26345472,1615362,196608 +k1,17595:6434165,45222406:-26345472 +) +(1,17595:6434165,45222406:26345472,1418754,196608 +[1,17595:6630773,45222406:25952256,1222146,0 +(1,17591:6630773,44424699:25952256,424439,112852 +(1,17590:6630773,44424699:0,0,0 +g1,17590:6630773,44424699 +g1,17590:6630773,44424699 +g1,17590:6303093,44424699 +(1,17590:6303093,44424699:0,0,0 +) +g1,17590:6630773,44424699 +) +k1,17591:6630773,44424699:0 +g1,17591:10614221,44424699 +g1,17591:11278129,44424699 +k1,17591:11278129,44424699:0 +h1,17591:13601807,44424699:0,0,0 +k1,17591:32583029,44424699:18981222 +g1,17591:32583029,44424699 +) +(1,17592:6630773,45109554:25952256,424439,112852 +h1,17592:6630773,45109554:0,0,0 +g1,17592:6962727,45109554 +g1,17592:7294681,45109554 +g1,17592:7626635,45109554 +g1,17592:7958589,45109554 +g1,17592:8290543,45109554 +g1,17592:8622497,45109554 +g1,17592:8954451,45109554 +g1,17592:11610083,45109554 +g1,17592:12273991,45109554 +g1,17592:14265715,45109554 +g1,17592:14929623,45109554 +g1,17592:16921347,45109554 +g1,17592:17585255,45109554 +g1,17592:18249163,45109554 +g1,17592:20240887,45109554 +h1,17592:20572841,45109554:0,0,0 +k1,17592:32583029,45109554:12010188 +g1,17592:32583029,45109554 +) +] +) +g1,17595:32583029,45222406 +g1,17595:6630773,45222406 +g1,17595:6630773,45222406 +g1,17595:32583029,45222406 +g1,17595:32583029,45222406 +) +] +(1,17595:32583029,45706769:0,0,0 +g1,17595:32583029,45706769 +) +) +] +(1,17595:6630773,47279633:25952256,0,0 +h1,17595:6630773,47279633:25952256,0,0 +) +] +(1,17595:4262630,4025873:0,0,0 +[1,17595:-473656,4025873:0,0,0 +(1,17595:-473656,-710413:0,0,0 +(1,17595:-473656,-710413:0,0,0 +g1,17595:-473656,-710413 +) +g1,17595:-473656,-710413 +) +] +) +] +!29417 +}288 +Input:2605:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2606:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2607:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2608:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2609:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2610:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2611:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!670 +{289 +[1,17676:4262630,47279633:28320399,43253760,0 +(1,17676:4262630,4025873:0,0,0 +[1,17676:-473656,4025873:0,0,0 +(1,17676:-473656,-710413:0,0,0 +(1,17676:-473656,-644877:0,0,0 +k1,17676:-473656,-644877:-65536 ) -(1,17628:-473656,4736287:0,0,0 -k1,17628:-473656,4736287:5209943 +(1,17676:-473656,4736287:0,0,0 +k1,17676:-473656,4736287:5209943 ) -g1,17628:-473656,-710413 +g1,17676:-473656,-710413 ) ] ) -[1,17628:6630773,47279633:25952256,43253760,0 -[1,17628:6630773,4812305:25952256,786432,0 -(1,17628:6630773,4812305:25952256,513147,126483 -(1,17628:6630773,4812305:25952256,513147,126483 -g1,17628:3078558,4812305 -[1,17628:3078558,4812305:0,0,0 -(1,17628:3078558,2439708:0,1703936,0 -k1,17628:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,17628:2537886,2439708:1179648,16384,0 +[1,17676:6630773,47279633:25952256,43253760,0 +[1,17676:6630773,4812305:25952256,786432,0 +(1,17676:6630773,4812305:25952256,513147,126483 +(1,17676:6630773,4812305:25952256,513147,126483 +g1,17676:3078558,4812305 +[1,17676:3078558,4812305:0,0,0 +(1,17676:3078558,2439708:0,1703936,0 +k1,17676:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,17676:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,17628:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,17676:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,17628:3078558,4812305:0,0,0 -(1,17628:3078558,2439708:0,1703936,0 -g1,17628:29030814,2439708 -g1,17628:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,17628:36151628,1915420:16384,1179648,0 +[1,17676:3078558,4812305:0,0,0 +(1,17676:3078558,2439708:0,1703936,0 +g1,17676:29030814,2439708 +g1,17676:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,17676:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,17628:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,17676:37855564,2439708:1179648,16384,0 ) ) -k1,17628:3078556,2439708:-34777008 +k1,17676:3078556,2439708:-34777008 ) ] -[1,17628:3078558,4812305:0,0,0 -(1,17628:3078558,49800853:0,16384,2228224 -k1,17628:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,17628:2537886,49800853:1179648,16384,0 +[1,17676:3078558,4812305:0,0,0 +(1,17676:3078558,49800853:0,16384,2228224 +k1,17676:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,17676:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,17628:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,17676:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,17628:3078558,4812305:0,0,0 -(1,17628:3078558,49800853:0,16384,2228224 -g1,17628:29030814,49800853 -g1,17628:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,17628:36151628,51504789:16384,1179648,0 +[1,17676:3078558,4812305:0,0,0 +(1,17676:3078558,49800853:0,16384,2228224 +g1,17676:29030814,49800853 +g1,17676:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,17676:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,17628:37855564,49800853:1179648,16384,0 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,17676:37855564,49800853:1179648,16384,0 ) -) -k1,17628:3078556,49800853:-34777008 -) -] -g1,17628:6630773,4812305 -k1,17628:21350816,4812305:13524666 -g1,17628:21999622,4812305 -g1,17628:25611966,4812305 -g1,17628:28956923,4812305 -g1,17628:29772190,4812305 -) -) -] -[1,17628:6630773,45706769:25952256,40108032,0 -(1,17628:6630773,45706769:25952256,40108032,0 -(1,17628:6630773,45706769:0,0,0 -g1,17628:6630773,45706769 -) -[1,17628:6630773,45706769:25952256,40108032,0 -(1,17562:6630773,6254097:25952256,555811,12975 -(1,17562:6630773,6254097:2450326,534184,12975 -g1,17562:6630773,6254097 -g1,17562:9081099,6254097 -) -k1,17562:32583028,6254097:21628320 -g1,17562:32583028,6254097 -) -(1,17566:6630773,7488801:25952256,505283,126483 -k1,17565:7627617,7488801:178955 -k1,17565:9882098,7488801:178956 -k1,17565:12094635,7488801:178955 -k1,17565:12889628,7488801:178955 -k1,17565:14271825,7488801:178956 -k1,17565:17042074,7488801:178955 -(1,17565:17042074,7488801:0,452978,122846 -r1,17628:21269170,7488801:4227096,575824,122846 -k1,17565:17042074,7488801:-4227096 -) -(1,17565:17042074,7488801:4227096,452978,122846 -k1,17565:17042074,7488801:3277 -h1,17565:21265893,7488801:0,411205,112570 -) -k1,17565:21621795,7488801:178955 -k1,17565:22905033,7488801:178956 -k1,17565:23831754,7488801:178955 -k1,17565:25523935,7488801:178955 -k1,17565:26354319,7488801:178956 -k1,17565:27730617,7488801:178955 -k1,17565:28265432,7488801:178955 -k1,17565:30002179,7488801:178956 -k1,17565:31575085,7488801:178955 -k1,17566:32583029,7488801:0 -) -(1,17566:6630773,8330289:25952256,505283,126483 -k1,17565:10055421,8330289:147848 -k1,17565:14012878,8330289:147849 -k1,17565:14922254,8330289:147848 -k1,17565:17688922,8330289:147849 -k1,17565:18519655,8330289:147848 -k1,17565:21482931,8330289:147849 -k1,17565:24243044,8330289:147848 -(1,17565:24243044,8330289:0,452978,115847 -r1,17628:25304733,8330289:1061689,568825,115847 -k1,17565:24243044,8330289:-1061689 -) -(1,17565:24243044,8330289:1061689,452978,115847 -k1,17565:24243044,8330289:3277 -h1,17565:25301456,8330289:0,411205,112570 -) -k1,17565:25452582,8330289:147849 -k1,17565:28600013,8330289:147848 -k1,17565:29766947,8330289:147849 -k1,17565:32583029,8330289:0 -) -(1,17566:6630773,9171777:25952256,513147,134348 -k1,17565:7491916,9171777:201851 -k1,17565:10596357,9171777:201851 -k1,17565:11414246,9171777:201851 -k1,17565:12635181,9171777:201850 -k1,17565:15267107,9171777:201851 -k1,17565:16128250,9171777:201851 -k1,17565:17349186,9171777:201851 -k1,17565:19032806,9171777:201851 -k1,17565:19704550,9171777:201851 -k1,17565:20437898,9171777:201851 -k1,17565:20995609,9171777:201851 -k1,17565:23817588,9171777:201850 -k1,17565:26704449,9171777:201851 -k1,17565:28097745,9171777:201851 -k1,17565:29997634,9171777:201851 -k1,17565:32583029,9171777:0 -) -(1,17566:6630773,10013265:25952256,505283,126483 -g1,17565:7481430,10013265 -g1,17565:9470447,10013265 -g1,17565:10025536,10013265 -g1,17565:13795166,10013265 -g1,17565:15610513,10013265 -g1,17565:17381951,10013265 -g1,17565:18112677,10013265 -g1,17565:19825132,10013265 -g1,17565:20675789,10013265 -g1,17565:23916544,10013265 -g1,17565:25319014,10013265 -k1,17566:32583029,10013265:4579005 -g1,17566:32583029,10013265 -) -(1,17569:6630773,10854753:25952256,513147,126483 -h1,17567:6630773,10854753:983040,0,0 -k1,17567:8961590,10854753:151090 -k1,17567:10418813,10854753:151090 -k1,17567:13561622,10854753:151090 -k1,17567:15355044,10854753:151090 -k1,17567:17675376,10854753:151090 -k1,17567:19607736,10854753:151091 -k1,17567:22288516,10854753:151090 -k1,17567:25059735,10854753:151090 -k1,17567:28052466,10854753:151090 -k1,17567:29195116,10854753:151090 -k1,17567:31931601,10854753:151090 -k1,17567:32583029,10854753:0 -) -(1,17569:6630773,11696241:25952256,513147,115847 -k1,17567:8293566,11696241:196097 -(1,17567:8293566,11696241:0,414482,115847 -r1,17628:8651832,11696241:358266,530329,115847 -k1,17567:8293566,11696241:-358266 -) -(1,17567:8293566,11696241:358266,414482,115847 -k1,17567:8293566,11696241:3277 -h1,17567:8648555,11696241:0,411205,112570 -) -k1,17567:8847930,11696241:196098 -k1,17567:10235472,11696241:196097 -(1,17567:10235472,11696241:0,414482,115847 -r1,17628:10593738,11696241:358266,530329,115847 -k1,17567:10235472,11696241:-358266 -) -(1,17567:10235472,11696241:358266,414482,115847 -k1,17567:10235472,11696241:3277 -h1,17567:10590461,11696241:0,411205,112570 -) -k1,17567:10963505,11696241:196097 -k1,17568:12876645,11696241:196097 -k1,17568:15148924,11696241:196098 -k1,17568:16491246,11696241:196097 -k1,17568:18431256,11696241:196097 -k1,17568:19575004,11696241:196097 -(1,17568:19575004,11696241:0,452978,115847 -r1,17628:21340117,11696241:1765113,568825,115847 -k1,17568:19575004,11696241:-1765113 -) -(1,17568:19575004,11696241:1765113,452978,115847 -k1,17568:19575004,11696241:3277 -h1,17568:21336840,11696241:0,411205,112570 -) -k1,17568:21709885,11696241:196098 -k1,17568:23406756,11696241:196097 -k1,17568:24218891,11696241:196097 -k1,17568:25587427,11696241:196097 -k1,17568:28718227,11696241:196098 -k1,17568:30071034,11696241:196097 -k1,17568:32583029,11696241:0 -) -(1,17569:6630773,12537729:25952256,513147,95026 -g1,17568:7777653,12537729 -g1,17568:10597011,12537729 -g1,17568:13637881,12537729 -g1,17568:17821699,12537729 -g1,17568:19212373,12537729 -g1,17568:21884275,12537729 -g1,17568:23031155,12537729 -g1,17568:25454676,12537729 -k1,17569:32583029,12537729:4014738 -g1,17569:32583029,12537729 -) -v1,17571:6630773,13685822:0,393216,0 -(1,17577:6630773,15333274:25952256,2040668,196608 -g1,17577:6630773,15333274 -g1,17577:6630773,15333274 -g1,17577:6434165,15333274 -(1,17577:6434165,15333274:0,2040668,196608 -r1,17628:32779637,15333274:26345472,2237276,196608 -k1,17577:6434165,15333274:-26345472 -) -(1,17577:6434165,15333274:26345472,2040668,196608 -[1,17577:6630773,15333274:25952256,1844060,0 -(1,17573:6630773,13893440:25952256,404226,107478 -(1,17572:6630773,13893440:0,0,0 -g1,17572:6630773,13893440 -g1,17572:6630773,13893440 -g1,17572:6303093,13893440 -(1,17572:6303093,13893440:0,0,0 -) -g1,17572:6630773,13893440 -) -k1,17573:6630773,13893440:0 -g1,17573:10424522,13893440 -g1,17573:11056814,13893440 -k1,17573:11056814,13893440:0 -h1,17573:13269834,13893440:0,0,0 -k1,17573:32583030,13893440:19313196 -g1,17573:32583030,13893440 -) -(1,17574:6630773,14559618:25952256,404226,107478 -h1,17574:6630773,14559618:0,0,0 -g1,17574:6946919,14559618 -g1,17574:7263065,14559618 -g1,17574:7579211,14559618 -g1,17574:7895357,14559618 -g1,17574:8211503,14559618 -g1,17574:8527649,14559618 -g1,17574:8843795,14559618 -g1,17574:10740670,14559618 -g1,17574:11372962,14559618 -g1,17574:13269837,14559618 -g1,17574:13902129,14559618 -g1,17574:14534421,14559618 -g1,17574:16115150,14559618 -g1,17574:18012024,14559618 -g1,17574:18644316,14559618 -g1,17574:20541190,14559618 -h1,17574:20857336,14559618:0,0,0 -k1,17574:32583029,14559618:11725693 -g1,17574:32583029,14559618 -) -(1,17575:6630773,15225796:25952256,404226,107478 -h1,17575:6630773,15225796:0,0,0 -g1,17575:6946919,15225796 -g1,17575:7263065,15225796 -k1,17575:7263065,15225796:0 -h1,17575:11056813,15225796:0,0,0 -k1,17575:32583029,15225796:21526216 -g1,17575:32583029,15225796 -) -] -) -g1,17577:32583029,15333274 -g1,17577:6630773,15333274 -g1,17577:6630773,15333274 -g1,17577:32583029,15333274 -g1,17577:32583029,15333274 -) -h1,17577:6630773,15529882:0,0,0 -(1,17580:6630773,25160999:25952256,9083666,0 -k1,17580:10523651,25160999:3892878 -h1,17579:10523651,25160999:0,0,0 -(1,17579:10523651,25160999:18166500,9083666,0 -(1,17579:10523651,25160999:18167376,9083688,0 -(1,17579:10523651,25160999:18167376,9083688,0 -(1,17579:10523651,25160999:0,9083688,0 -(1,17579:10523651,25160999:0,14208860,0 -(1,17579:10523651,25160999:28417720,14208860,0 -) -k1,17579:10523651,25160999:-28417720 -) -) -g1,17579:28691027,25160999 -) -) -) -g1,17580:28690151,25160999 -k1,17580:32583029,25160999:3892878 -) -(1,17587:6630773,26002487:25952256,513147,115847 -h1,17586:6630773,26002487:983040,0,0 -k1,17586:8320618,26002487:229048 -k1,17586:9418018,26002487:229048 -k1,17586:12039785,26002487:229048 -(1,17586:12039785,26002487:0,452978,115847 -r1,17628:13101474,26002487:1061689,568825,115847 -k1,17586:12039785,26002487:-1061689 -) -(1,17586:12039785,26002487:1061689,452978,115847 -k1,17586:12039785,26002487:3277 -h1,17586:13098197,26002487:0,411205,112570 -) -k1,17586:13330522,26002487:229048 -k1,17586:14827036,26002487:229048 -k1,17586:15411944,26002487:229048 -k1,17586:17708653,26002487:229048 -k1,17586:18293561,26002487:229048 -k1,17586:21048368,26002487:229049 -k1,17586:22893534,26002487:229048 -k1,17586:24694791,26002487:229048 -k1,17586:25455336,26002487:229048 -k1,17586:27197610,26002487:229048 -k1,17586:29753841,26002487:229048 -k1,17586:30642181,26002487:229048 -k1,17586:31227089,26002487:229048 -k1,17587:32583029,26002487:0 -) -(1,17587:6630773,26843975:25952256,473825,7863 -g1,17586:9257456,26843975 -k1,17587:32583029,26843975:21995192 -g1,17587:32583029,26843975 -) -v1,17589:6630773,27992067:0,393216,0 -(1,17595:6630773,29639519:25952256,2040668,196608 -g1,17595:6630773,29639519 -g1,17595:6630773,29639519 -g1,17595:6434165,29639519 -(1,17595:6434165,29639519:0,2040668,196608 -r1,17628:32779637,29639519:26345472,2237276,196608 -k1,17595:6434165,29639519:-26345472 -) -(1,17595:6434165,29639519:26345472,2040668,196608 -[1,17595:6630773,29639519:25952256,1844060,0 -(1,17591:6630773,28199685:25952256,404226,107478 -(1,17590:6630773,28199685:0,0,0 -g1,17590:6630773,28199685 -g1,17590:6630773,28199685 -g1,17590:6303093,28199685 -(1,17590:6303093,28199685:0,0,0 -) -g1,17590:6630773,28199685 -) -k1,17591:6630773,28199685:0 -g1,17591:10424522,28199685 -g1,17591:11056814,28199685 -k1,17591:11056814,28199685:0 -h1,17591:13269834,28199685:0,0,0 -k1,17591:32583030,28199685:19313196 -g1,17591:32583030,28199685 -) -(1,17592:6630773,28865863:25952256,410518,107478 -h1,17592:6630773,28865863:0,0,0 -g1,17592:6946919,28865863 -g1,17592:7263065,28865863 -g1,17592:7579211,28865863 -g1,17592:7895357,28865863 -g1,17592:8211503,28865863 -g1,17592:8527649,28865863 -g1,17592:8843795,28865863 -g1,17592:10740670,28865863 -g1,17592:11372962,28865863 -g1,17592:13269837,28865863 -g1,17592:13902129,28865863 -g1,17592:14534421,28865863 -g1,17592:16115150,28865863 -g1,17592:18012024,28865863 -g1,17592:18644316,28865863 -g1,17592:23070356,28865863 -h1,17592:23386502,28865863:0,0,0 -k1,17592:32583029,28865863:9196527 -g1,17592:32583029,28865863 -) -(1,17593:6630773,29532041:25952256,404226,107478 -h1,17593:6630773,29532041:0,0,0 -g1,17593:6946919,29532041 -g1,17593:7263065,29532041 -k1,17593:7263065,29532041:0 -h1,17593:11056813,29532041:0,0,0 -k1,17593:32583029,29532041:21526216 -g1,17593:32583029,29532041 -) -] -) -g1,17595:32583029,29639519 -g1,17595:6630773,29639519 -g1,17595:6630773,29639519 -g1,17595:32583029,29639519 -g1,17595:32583029,29639519 -) -h1,17595:6630773,29836127:0,0,0 -(1,17599:6630773,31159530:25952256,513147,115847 -h1,17598:6630773,31159530:983040,0,0 -k1,17598:8282888,31159530:191318 -k1,17598:9342558,31159530:191318 -k1,17598:11926595,31159530:191318 -(1,17598:11926595,31159530:0,452978,115847 -r1,17628:12988284,31159530:1061689,568825,115847 -k1,17598:11926595,31159530:-1061689 -) -(1,17598:11926595,31159530:1061689,452978,115847 -k1,17598:11926595,31159530:3277 -h1,17598:12985007,31159530:0,411205,112570 -) -k1,17598:13179602,31159530:191318 -k1,17598:14638386,31159530:191318 -k1,17598:15600407,31159530:191318 -k1,17598:18299131,31159530:191317 -k1,17598:20558110,31159530:191318 -k1,17598:21105288,31159530:191318 -k1,17598:24058949,31159530:191318 -k1,17598:26776025,31159530:191318 -k1,17598:28583461,31159530:191318 -k1,17598:30346988,31159530:191318 -k1,17598:31069803,31159530:191318 -k1,17598:32583029,31159530:0 -) -(1,17599:6630773,32001018:25952256,513147,126483 -g1,17598:7591530,32001018 -k1,17599:32583028,32001018:22552248 -g1,17599:32583028,32001018 -) -v1,17601:6630773,33149111:0,393216,0 -(1,17607:6630773,34796563:25952256,2040668,196608 -g1,17607:6630773,34796563 -g1,17607:6630773,34796563 -g1,17607:6434165,34796563 -(1,17607:6434165,34796563:0,2040668,196608 -r1,17628:32779637,34796563:26345472,2237276,196608 -k1,17607:6434165,34796563:-26345472 -) -(1,17607:6434165,34796563:26345472,2040668,196608 -[1,17607:6630773,34796563:25952256,1844060,0 -(1,17603:6630773,33356729:25952256,404226,107478 -(1,17602:6630773,33356729:0,0,0 -g1,17602:6630773,33356729 -g1,17602:6630773,33356729 -g1,17602:6303093,33356729 -(1,17602:6303093,33356729:0,0,0 -) -g1,17602:6630773,33356729 -) -k1,17603:6630773,33356729:0 -g1,17603:10424522,33356729 -g1,17603:11056814,33356729 -k1,17603:11056814,33356729:0 -h1,17603:13269834,33356729:0,0,0 -k1,17603:32583030,33356729:19313196 -g1,17603:32583030,33356729 -) -(1,17604:6630773,34022907:25952256,404226,107478 -h1,17604:6630773,34022907:0,0,0 -g1,17604:6946919,34022907 -g1,17604:7263065,34022907 -g1,17604:7579211,34022907 -g1,17604:7895357,34022907 -g1,17604:8211503,34022907 -g1,17604:8527649,34022907 -g1,17604:8843795,34022907 -g1,17604:10740670,34022907 -g1,17604:11372962,34022907 -g1,17604:13269837,34022907 -g1,17604:13902129,34022907 -g1,17604:14534421,34022907 -g1,17604:16115150,34022907 -g1,17604:18012024,34022907 -g1,17604:18644316,34022907 -g1,17604:23386502,34022907 -h1,17604:23702648,34022907:0,0,0 -k1,17604:32583029,34022907:8880381 -g1,17604:32583029,34022907 -) -(1,17605:6630773,34689085:25952256,404226,107478 -h1,17605:6630773,34689085:0,0,0 -g1,17605:6946919,34689085 -g1,17605:7263065,34689085 -k1,17605:7263065,34689085:0 -h1,17605:11056813,34689085:0,0,0 -k1,17605:32583029,34689085:21526216 -g1,17605:32583029,34689085 -) -] -) -g1,17607:32583029,34796563 -g1,17607:6630773,34796563 -g1,17607:6630773,34796563 -g1,17607:32583029,34796563 -g1,17607:32583029,34796563 -) -h1,17607:6630773,34993171:0,0,0 -v1,17611:6630773,36798488:0,393216,0 -(1,17612:6630773,39048350:25952256,2643078,0 -g1,17612:6630773,39048350 -g1,17612:6303093,39048350 -r1,17628:6401397,39048350:98304,2643078,0 -g1,17612:6600626,39048350 -g1,17612:6797234,39048350 -[1,17612:6797234,39048350:25785795,2643078,0 -(1,17612:6797234,37231026:25785795,825754,196608 -(1,17611:6797234,37231026:0,825754,196608 -r1,17628:7890375,37231026:1093141,1022362,196608 -k1,17611:6797234,37231026:-1093141 -) -(1,17611:6797234,37231026:1093141,825754,196608 -) -k1,17611:8236420,37231026:346045 -k1,17611:9554349,37231026:327680 -k1,17611:10984360,37231026:346045 -k1,17611:11686265,37231026:346045 -k1,17611:14794652,37231026:346044 -k1,17611:18121930,37231026:346045 -(1,17611:18121930,37231026:0,452978,115847 -r1,17628:19535331,37231026:1413401,568825,115847 -k1,17611:18121930,37231026:-1413401 -) -(1,17611:18121930,37231026:1413401,452978,115847 -k1,17611:18121930,37231026:3277 -h1,17611:19532054,37231026:0,411205,112570 -) -k1,17611:19881376,37231026:346045 -$1,17611:19881376,37231026 -$1,17611:20556397,37231026 -k1,17611:20902442,37231026:346045 -(1,17611:20902442,37231026:0,452978,115847 -r1,17628:22667555,37231026:1765113,568825,115847 -k1,17611:20902442,37231026:-1765113 -) -(1,17611:20902442,37231026:1765113,452978,115847 -k1,17611:20902442,37231026:3277 -h1,17611:22664278,37231026:0,411205,112570 -) -k1,17611:23187270,37231026:346045 -(1,17611:23187270,37231026:0,452978,115847 -r1,17628:24248959,37231026:1061689,568825,115847 -k1,17611:23187270,37231026:-1061689 -) -(1,17611:23187270,37231026:1061689,452978,115847 -k1,17611:23187270,37231026:3277 -h1,17611:24245682,37231026:0,411205,112570 -) -k1,17611:24595004,37231026:346045 -$1,17611:24595004,37231026 -$1,17611:25270025,37231026 -k1,17611:25616070,37231026:346045 -(1,17611:25616070,37231026:0,414482,115847 -r1,17628:25974336,37231026:358266,530329,115847 -k1,17611:25616070,37231026:-358266 -) -(1,17611:25616070,37231026:358266,414482,115847 -k1,17611:25616070,37231026:3277 -h1,17611:25971059,37231026:0,411205,112570 -) -k1,17611:26494050,37231026:346044 -k1,17611:29740063,37231026:346045 -k1,17611:30847636,37231026:346045 -k1,17612:32583029,37231026:0 -) -(1,17612:6797234,38072514:25785795,505283,115847 -(1,17611:6797234,38072514:0,452978,115847 -r1,17628:11024330,38072514:4227096,568825,115847 -k1,17611:6797234,38072514:-4227096 -) -(1,17611:6797234,38072514:4227096,452978,115847 -k1,17611:6797234,38072514:3277 -h1,17611:11021053,38072514:0,411205,112570 -) -k1,17611:11237208,38072514:212878 -k1,17611:13659959,38072514:212877 -(1,17611:13659959,38072514:0,452978,115847 -r1,17628:18238767,38072514:4578808,568825,115847 -k1,17611:13659959,38072514:-4578808 -) -(1,17611:13659959,38072514:4578808,452978,115847 -k1,17611:13659959,38072514:3277 -h1,17611:18235490,38072514:0,411205,112570 -) -k1,17611:18451645,38072514:212878 -k1,17611:19315950,38072514:212877 -k1,17611:20553811,38072514:212878 -k1,17611:22315305,38072514:212878 -k1,17611:25369823,38072514:212877 -k1,17611:26574261,38072514:212878 -k1,17611:29744778,38072514:212877 -k1,17611:31149101,38072514:212878 -k1,17611:32583029,38072514:0 -) -(1,17612:6797234,38914002:25785795,505283,134348 -g1,17611:7902826,38914002 -g1,17611:9121140,38914002 -g1,17611:13638536,38914002 -g1,17611:15122271,38914002 -g1,17611:17452075,38914002 -g1,17611:19110135,38914002 -g1,17611:23816275,38914002 -g1,17611:26383975,38914002 -g1,17611:27602289,38914002 -k1,17612:32583029,38914002:3417706 -g1,17612:32583029,38914002 -) -] -g1,17612:32583029,39048350 -) -h1,17612:6630773,39048350:0,0,0 -(1,17615:6630773,40371753:25952256,505283,134348 -h1,17614:6630773,40371753:983040,0,0 -k1,17614:9015330,40371753:204830 -k1,17614:12027721,40371753:204829 -k1,17614:14867754,40371753:204830 -k1,17614:16461947,40371753:204830 -k1,17614:18677421,40371753:204829 -k1,17614:20073696,40371753:204830 -k1,17614:23122788,40371753:204829 -k1,17614:25338263,40371753:204830 -k1,17614:26074590,40371753:204830 -k1,17614:29540490,40371753:204829 -k1,17614:30506848,40371753:204830 -k1,17614:32583029,40371753:0 -) -(1,17615:6630773,41213241:25952256,513147,134348 -k1,17614:9770007,41213241:294316 -k1,17614:11680441,41213241:294316 -k1,17614:14050938,41213241:294316 -k1,17614:15536699,41213241:294316 -k1,17614:17297711,41213241:294316 -k1,17614:20112542,41213241:294316 -k1,17614:22416847,41213241:294316 -k1,17614:23067023,41213241:294316 -k1,17614:25056100,41213241:294316 -k1,17614:27096295,41213241:294316 -k1,17614:29820686,41213241:294316 -k1,17614:32583029,41213241:0 -) -(1,17615:6630773,42054729:25952256,505283,134348 -g1,17614:9967866,42054729 -g1,17614:12802298,42054729 -g1,17614:14390890,42054729 -g1,17614:16600764,42054729 -g1,17614:17991438,42054729 -g1,17614:21065731,42054729 -k1,17615:32583029,42054729:8982365 -g1,17615:32583029,42054729 -) -v1,17617:6630773,43202822:0,393216,0 -(1,17624:6630773,45510161:25952256,2700555,196608 -g1,17624:6630773,45510161 -g1,17624:6630773,45510161 -g1,17624:6434165,45510161 -(1,17624:6434165,45510161:0,2700555,196608 -r1,17628:32779637,45510161:26345472,2897163,196608 -k1,17624:6434165,45510161:-26345472 -) -(1,17624:6434165,45510161:26345472,2700555,196608 -[1,17624:6630773,45510161:25952256,2503947,0 -(1,17619:6630773,43410440:25952256,404226,107478 -(1,17618:6630773,43410440:0,0,0 -g1,17618:6630773,43410440 -g1,17618:6630773,43410440 -g1,17618:6303093,43410440 -(1,17618:6303093,43410440:0,0,0 -) -g1,17618:6630773,43410440 -) -k1,17619:6630773,43410440:0 -g1,17619:10424522,43410440 -g1,17619:11056814,43410440 -k1,17619:11056814,43410440:0 -h1,17619:13269834,43410440:0,0,0 -k1,17619:32583030,43410440:19313196 -g1,17619:32583030,43410440 -) -(1,17620:6630773,44076618:25952256,410518,107478 -h1,17620:6630773,44076618:0,0,0 -g1,17620:6946919,44076618 -g1,17620:7263065,44076618 -g1,17620:7579211,44076618 -g1,17620:7895357,44076618 -g1,17620:8211503,44076618 -g1,17620:8527649,44076618 -g1,17620:8843795,44076618 -g1,17620:10740670,44076618 -g1,17620:11372962,44076618 -g1,17620:13269837,44076618 -g1,17620:13902129,44076618 -g1,17620:14534421,44076618 -g1,17620:16115150,44076618 -g1,17620:18012024,44076618 -g1,17620:18644316,44076618 -g1,17620:23070356,44076618 -h1,17620:23386502,44076618:0,0,0 -k1,17620:32583029,44076618:9196527 -g1,17620:32583029,44076618 -) -(1,17621:6630773,44742796:25952256,404226,107478 -h1,17621:6630773,44742796:0,0,0 -g1,17621:6946919,44742796 -g1,17621:7263065,44742796 -g1,17621:11372959,44742796 -h1,17621:11689105,44742796:0,0,0 -k1,17621:32583029,44742796:20893924 -g1,17621:32583029,44742796 -) -(1,17622:6630773,45408974:25952256,404226,101187 -h1,17622:6630773,45408974:0,0,0 -g1,17622:6946919,45408974 -g1,17622:7263065,45408974 -g1,17622:14850562,45408974 -g1,17622:15482854,45408974 -g1,17622:18012020,45408974 -g1,17622:20541186,45408974 -g1,17622:21173478,45408974 -h1,17622:21805770,45408974:0,0,0 -k1,17622:32583029,45408974:10777259 -g1,17622:32583029,45408974 -) -] -) -g1,17624:32583029,45510161 -g1,17624:6630773,45510161 -g1,17624:6630773,45510161 -g1,17624:32583029,45510161 -g1,17624:32583029,45510161 -) -h1,17624:6630773,45706769:0,0,0 -] -(1,17628:32583029,45706769:0,0,0 -g1,17628:32583029,45706769 -) -) -] -(1,17628:6630773,47279633:25952256,0,0 -h1,17628:6630773,47279633:25952256,0,0 -) -] -(1,17628:4262630,4025873:0,0,0 -[1,17628:-473656,4025873:0,0,0 -(1,17628:-473656,-710413:0,0,0 -(1,17628:-473656,-710413:0,0,0 -g1,17628:-473656,-710413 -) -g1,17628:-473656,-710413 -) -] -) -] -!23419 -}307 +) +k1,17676:3078556,49800853:-34777008 +) +] +g1,17676:6630773,4812305 +k1,17676:21350816,4812305:13524666 +g1,17676:21999622,4812305 +g1,17676:25611966,4812305 +g1,17676:28956923,4812305 +g1,17676:29772190,4812305 +) +) +] +[1,17676:6630773,45706769:25952256,40108032,0 +(1,17676:6630773,45706769:25952256,40108032,0 +(1,17676:6630773,45706769:0,0,0 +g1,17676:6630773,45706769 +) +[1,17676:6630773,45706769:25952256,40108032,0 +v1,17595:6630773,6254097:0,393216,0 +(1,17595:6630773,6594780:25952256,733899,196608 +g1,17595:6630773,6594780 +g1,17595:6630773,6594780 +g1,17595:6434165,6594780 +(1,17595:6434165,6594780:0,733899,196608 +r1,17676:32779637,6594780:26345472,930507,196608 +k1,17595:6434165,6594780:-26345472 +) +(1,17595:6434165,6594780:26345472,733899,196608 +[1,17595:6630773,6594780:25952256,537291,0 +(1,17593:6630773,6481928:25952256,424439,112852 +h1,17593:6630773,6481928:0,0,0 +g1,17593:6962727,6481928 +g1,17593:7294681,6481928 +k1,17593:7294681,6481928:0 +h1,17593:11278128,6481928:0,0,0 +k1,17593:32583028,6481928:21304900 +g1,17593:32583028,6481928 +) +] +) +g1,17595:32583029,6594780 +g1,17595:6630773,6594780 +g1,17595:6630773,6594780 +g1,17595:32583029,6594780 +g1,17595:32583029,6594780 +) +h1,17595:6630773,6791388:0,0,0 +(1,17599:6630773,7656468:25952256,513147,134348 +h1,17598:6630773,7656468:983040,0,0 +k1,17598:10837398,7656468:288883 +k1,17598:12145365,7656468:288882 +k1,17598:15336838,7656468:288883 +k1,17598:16285012,7656468:288882 +k1,17598:19292984,7656468:288883 +k1,17598:23865299,7656468:288882 +k1,17598:25173267,7656468:288883 +k1,17598:28765164,7656468:288882 +k1,17598:29713339,7656468:288883 +k1,17598:31391584,7656468:288882 +k1,17598:32583029,7656468:0 +) +(1,17599:6630773,8521548:25952256,505283,134348 +k1,17598:9906459,8521548:137822 +k1,17598:13115298,8521548:137822 +k1,17598:13904548,8521548:137822 +k1,17598:17235284,8521548:137822 +k1,17598:19434868,8521548:137821 +k1,17598:21777977,8521548:137822 +k1,17598:22567227,8521548:137822 +k1,17598:25558487,8521548:137822 +k1,17598:26379194,8521548:137822 +k1,17598:30024503,8521548:137822 +k1,17598:32583029,8521548:0 +) +(1,17599:6630773,9386628:25952256,513147,134348 +k1,17598:8433079,9386628:293667 +(1,17598:8433079,9386628:0,452978,122846 +r1,17676:10901616,9386628:2468537,575824,122846 +k1,17598:8433079,9386628:-2468537 +) +(1,17598:8433079,9386628:2468537,452978,122846 +k1,17598:8433079,9386628:3277 +h1,17598:10898339,9386628:0,411205,112570 +) +k1,17598:11195284,9386628:293668 +k1,17598:13617560,9386628:293667 +k1,17598:17365631,9386628:293668 +k1,17598:18287133,9386628:293667 +k1,17598:19784041,9386628:293667 +k1,17598:21618460,9386628:293668 +k1,17598:23656040,9386628:293667 +k1,17598:27087571,9386628:293667 +k1,17598:28315782,9386628:293668 +k1,17598:29225487,9386628:293667 +k1,17598:30538240,9386628:293668 +k1,17598:31931601,9386628:293667 +k1,17599:32583029,9386628:0 +) +(1,17599:6630773,10251708:25952256,513147,134348 +(1,17598:6630773,10251708:0,452978,122846 +r1,17676:9451022,10251708:2820249,575824,122846 +k1,17598:6630773,10251708:-2820249 +) +(1,17598:6630773,10251708:2820249,452978,122846 +k1,17598:6630773,10251708:3277 +h1,17598:9447745,10251708:0,411205,112570 +) +k1,17598:9768671,10251708:143979 +k1,17598:10378611,10251708:143979 +k1,17598:13102087,10251708:143979 +k1,17598:14237626,10251708:143979 +k1,17598:17862222,10251708:143979 +k1,17598:18767729,10251708:143979 +k1,17598:22314337,10251708:143979 +k1,17598:24663603,10251708:143979 +k1,17598:25459010,10251708:143979 +k1,17598:28795903,10251708:143979 +k1,17598:31001645,10251708:143979 +k1,17599:32583029,10251708:0 +) +(1,17599:6630773,11116788:25952256,513147,134348 +g1,17598:7820251,11116788 +g1,17598:8477577,11116788 +g1,17598:11306766,11116788 +g1,17598:12157423,11116788 +g1,17598:13852839,11116788 +g1,17598:15071153,11116788 +g1,17598:16923855,11116788 +g1,17598:18400381,11116788 +g1,17598:19285772,11116788 +k1,17599:32583029,11116788:10808200 +g1,17599:32583029,11116788 +) +v1,17601:6630773,11801643:0,393216,0 +(1,17607:6630773,13512036:25952256,2103609,196608 +g1,17607:6630773,13512036 +g1,17607:6630773,13512036 +g1,17607:6434165,13512036 +(1,17607:6434165,13512036:0,2103609,196608 +r1,17676:32779637,13512036:26345472,2300217,196608 +k1,17607:6434165,13512036:-26345472 +) +(1,17607:6434165,13512036:26345472,2103609,196608 +[1,17607:6630773,13512036:25952256,1907001,0 +(1,17603:6630773,12029474:25952256,424439,112852 +(1,17602:6630773,12029474:0,0,0 +g1,17602:6630773,12029474 +g1,17602:6630773,12029474 +g1,17602:6303093,12029474 +(1,17602:6303093,12029474:0,0,0 +) +g1,17602:6630773,12029474 +) +k1,17603:6630773,12029474:0 +g1,17603:9618359,12029474 +h1,17603:9950313,12029474:0,0,0 +k1,17603:32583029,12029474:22632716 +g1,17603:32583029,12029474 +) +(1,17604:6630773,12714329:25952256,424439,112852 +h1,17604:6630773,12714329:0,0,0 +g1,17604:6962727,12714329 +g1,17604:7294681,12714329 +g1,17604:12605944,12714329 +g1,17604:13269852,12714329 +k1,17604:13269852,12714329:0 +h1,17604:15593530,12714329:0,0,0 +k1,17604:32583030,12714329:16989500 +g1,17604:32583030,12714329 +) +(1,17605:6630773,13399184:25952256,424439,112852 +h1,17605:6630773,13399184:0,0,0 +g1,17605:6962727,13399184 +g1,17605:7294681,13399184 +g1,17605:7626635,13399184 +g1,17605:7958589,13399184 +g1,17605:8290543,13399184 +g1,17605:8622497,13399184 +g1,17605:8954451,13399184 +g1,17605:9286405,13399184 +g1,17605:9618359,13399184 +g1,17605:9950313,13399184 +g1,17605:10282267,13399184 +g1,17605:10614221,13399184 +g1,17605:10946175,13399184 +g1,17605:13601807,13399184 +g1,17605:14265715,13399184 +g1,17605:16257439,13399184 +g1,17605:16921347,13399184 +g1,17605:18913071,13399184 +g1,17605:19576979,13399184 +g1,17605:20240887,13399184 +h1,17605:21900657,13399184:0,0,0 +k1,17605:32583029,13399184:10682372 +g1,17605:32583029,13399184 +) +] +) +g1,17607:32583029,13512036 +g1,17607:6630773,13512036 +g1,17607:6630773,13512036 +g1,17607:32583029,13512036 +g1,17607:32583029,13512036 +) +h1,17607:6630773,13708644:0,0,0 +v1,17611:6630773,14573724:0,393216,0 +(1,17650:6630773,32984808:25952256,18804300,0 +g1,17650:6630773,32984808 +g1,17650:6237557,32984808 +r1,17676:6368629,32984808:131072,18804300,0 +g1,17650:6567858,32984808 +g1,17650:6764466,32984808 +[1,17650:6764466,32984808:25818563,18804300,0 +(1,17613:6764466,14882022:25818563,701514,196608 +(1,17611:6764466,14882022:0,701514,196608 +r1,17676:8010564,14882022:1246098,898122,196608 +k1,17611:6764466,14882022:-1246098 +) +(1,17611:6764466,14882022:1246098,701514,196608 +) +k1,17611:8215342,14882022:204778 +k1,17611:8543022,14882022:327680 +k1,17611:9944488,14882022:204779 +k1,17611:11321705,14882022:204778 +k1,17611:14518203,14882022:204779 +k1,17611:16383663,14882022:204778 +k1,17611:17607527,14882022:204779 +k1,17611:18984744,14882022:204778 +k1,17611:20791222,14882022:204778 +k1,17611:24339648,14882022:204779 +k1,17611:26057652,14882022:204778 +k1,17611:28093507,14882022:204779 +k1,17611:29996323,14882022:204778 +k1,17611:32583029,14882022:0 +) +(1,17613:6764466,15747102:25818563,505283,134348 +k1,17611:7639099,15747102:261871 +k1,17611:8920055,15747102:261871 +k1,17611:11602170,15747102:261870 +k1,17611:12546926,15747102:261871 +k1,17611:15066512,15747102:261871 +k1,17611:17453060,15747102:261871 +k1,17611:20049978,15747102:261870 +k1,17611:22144236,15747102:261871 +k1,17611:23397667,15747102:261871 +k1,17611:25361508,15747102:261871 +k1,17611:29444127,15747102:261870 +k1,17611:31591469,15747102:261871 +k1,17611:32583029,15747102:0 +) +(1,17613:6764466,16612182:25818563,513147,134348 +k1,17611:8577956,16612182:211790 +k1,17611:10766968,16612182:211791 +k1,17611:12676797,16612182:211791 +k1,17611:15146302,16612182:211790 +k1,17611:18044413,16612182:211790 +k1,17611:20591252,16612182:211791 +k1,17611:21485927,16612182:211790 +k1,17611:22313756,16612182:211791 +k1,17611:25221042,16612182:211790 +k1,17611:29018963,16612182:211791 +k1,17611:30184303,16612182:211791 +k1,17611:31386342,16612182:211790 +k1,17612:32583029,16612182:0 +) +(1,17613:6764466,17477262:25818563,513147,134348 +k1,17612:9246331,17477262:216285 +k1,17612:12270179,17477262:216286 +k1,17612:13590746,17477262:216285 +k1,17612:15092848,17477262:216286 +k1,17612:16056899,17477262:216285 +k1,17612:18238609,17477262:216285 +k1,17612:20869241,17477262:216286 +k1,17612:22479477,17477262:216285 +k1,17612:23714847,17477262:216285 +(1,17612:23714847,17477262:0,414482,115847 +r1,17676:24073113,17477262:358266,530329,115847 +k1,17612:23714847,17477262:-358266 +) +(1,17612:23714847,17477262:358266,414482,115847 +k1,17612:23714847,17477262:3277 +h1,17612:24069836,17477262:0,411205,112570 +) +k1,17612:24289399,17477262:216286 +k1,17612:27425968,17477262:216285 +k1,17612:29969437,17477262:216286 +k1,17612:30845014,17477262:216285 +k1,17612:32583029,17477262:0 +) +(1,17613:6764466,18342342:25818563,505283,134348 +g1,17612:9168982,18342342 +g1,17612:10054373,18342342 +g1,17612:11024305,18342342 +g1,17612:14295862,18342342 +g1,17612:15146519,18342342 +(1,17612:15146519,18342342:0,452978,122846 +r1,17676:17966768,18342342:2820249,575824,122846 +k1,17612:15146519,18342342:-2820249 +) +(1,17612:15146519,18342342:2820249,452978,122846 +k1,17612:15146519,18342342:3277 +h1,17612:17963491,18342342:0,411205,112570 +) +k1,17613:32583029,18342342:14442591 +g1,17613:32583029,18342342 +) +v1,17615:6764466,19027197:0,393216,0 +(1,17621:6764466,20737590:25818563,2103609,196608 +g1,17621:6764466,20737590 +g1,17621:6764466,20737590 +g1,17621:6567858,20737590 +(1,17621:6567858,20737590:0,2103609,196608 +r1,17676:32779637,20737590:26211779,2300217,196608 +k1,17621:6567857,20737590:-26211780 +) +(1,17621:6567858,20737590:26211779,2103609,196608 +[1,17621:6764466,20737590:25818563,1907001,0 +(1,17617:6764466,19255028:25818563,424439,112852 +(1,17616:6764466,19255028:0,0,0 +g1,17616:6764466,19255028 +g1,17616:6764466,19255028 +g1,17616:6436786,19255028 +(1,17616:6436786,19255028:0,0,0 +) +g1,17616:6764466,19255028 +) +k1,17617:6764466,19255028:0 +g1,17617:10747914,19255028 +g1,17617:11411822,19255028 +g1,17617:14067454,19255028 +h1,17617:14399408,19255028:0,0,0 +k1,17617:32583028,19255028:18183620 +g1,17617:32583028,19255028 +) +(1,17618:6764466,19939883:25818563,424439,112852 +h1,17618:6764466,19939883:0,0,0 +g1,17618:7096420,19939883 +g1,17618:7428374,19939883 +g1,17618:9420098,19939883 +g1,17618:10084006,19939883 +g1,17618:12075730,19939883 +g1,17618:12739638,19939883 +g1,17618:13403546,19939883 +g1,17618:15063316,19939883 +h1,17618:15395270,19939883:0,0,0 +k1,17618:32583030,19939883:17187760 +g1,17618:32583030,19939883 +) +(1,17619:6764466,20624738:25818563,424439,112852 +h1,17619:6764466,20624738:0,0,0 +g1,17619:7096420,20624738 +g1,17619:7428374,20624738 +k1,17619:7428374,20624738:0 +h1,17619:11411821,20624738:0,0,0 +k1,17619:32583029,20624738:21171208 +g1,17619:32583029,20624738 +) +] +) +g1,17621:32583029,20737590 +g1,17621:6764466,20737590 +g1,17621:6764466,20737590 +g1,17621:32583029,20737590 +g1,17621:32583029,20737590 +) +h1,17621:6764466,20934198:0,0,0 +(1,17625:6764466,21799278:25818563,513147,134348 +h1,17624:6764466,21799278:983040,0,0 +k1,17624:8411735,21799278:194336 +k1,17624:9137568,21799278:194336 +k1,17624:10617720,21799278:194336 +k1,17624:13442016,21799278:194336 +k1,17624:14287780,21799278:194336 +k1,17624:15957331,21799278:194336 +k1,17624:16507527,21799278:194336 +k1,17624:18967444,21799278:194337 +k1,17624:21969342,21799278:194336 +k1,17624:23111329,21799278:194336 +k1,17624:24324750,21799278:194336 +k1,17624:26401935,21799278:194336 +k1,17624:28047238,21799278:194336 +k1,17624:29313743,21799278:194336 +k1,17624:30317449,21799278:194336 +k1,17624:32583029,21799278:0 +) +(1,17625:6764466,22664358:25818563,505283,7863 +k1,17625:32583028,22664358:24255528 +g1,17625:32583028,22664358 +) +v1,17627:6764466,23349213:0,393216,0 +(1,17633:6764466,25059606:25818563,2103609,196608 +g1,17633:6764466,25059606 +g1,17633:6764466,25059606 +g1,17633:6567858,25059606 +(1,17633:6567858,25059606:0,2103609,196608 +r1,17676:32779637,25059606:26211779,2300217,196608 +k1,17633:6567857,25059606:-26211780 +) +(1,17633:6567858,25059606:26211779,2103609,196608 +[1,17633:6764466,25059606:25818563,1907001,0 +(1,17629:6764466,23577044:25818563,424439,112852 +(1,17628:6764466,23577044:0,0,0 +g1,17628:6764466,23577044 +g1,17628:6764466,23577044 +g1,17628:6436786,23577044 +(1,17628:6436786,23577044:0,0,0 +) +g1,17628:6764466,23577044 +) +k1,17629:6764466,23577044:0 +g1,17629:9752052,23577044 +h1,17629:10084006,23577044:0,0,0 +k1,17629:32583030,23577044:22499024 +g1,17629:32583030,23577044 +) +(1,17630:6764466,24261899:25818563,424439,112852 +h1,17630:6764466,24261899:0,0,0 +g1,17630:7096420,24261899 +g1,17630:7428374,24261899 +g1,17630:9420098,24261899 +g1,17630:10084006,24261899 +g1,17630:12075730,24261899 +g1,17630:12739638,24261899 +g1,17630:13403546,24261899 +g1,17630:15063316,24261899 +h1,17630:15395270,24261899:0,0,0 +k1,17630:32583030,24261899:17187760 +g1,17630:32583030,24261899 +) +(1,17631:6764466,24946754:25818563,424439,112852 +h1,17631:6764466,24946754:0,0,0 +g1,17631:7096420,24946754 +g1,17631:7428374,24946754 +g1,17631:12739637,24946754 +g1,17631:13403545,24946754 +h1,17631:15727223,24946754:0,0,0 +k1,17631:32583029,24946754:16855806 +g1,17631:32583029,24946754 +) +] +) +g1,17633:32583029,25059606 +g1,17633:6764466,25059606 +g1,17633:6764466,25059606 +g1,17633:32583029,25059606 +g1,17633:32583029,25059606 +) +h1,17633:6764466,25256214:0,0,0 +(1,17637:6764466,26121294:25818563,513147,134348 +h1,17636:6764466,26121294:983040,0,0 +k1,17636:8902207,26121294:201152 +k1,17636:10207640,26121294:201151 +k1,17636:11799466,26121294:201152 +k1,17636:13019703,26121294:201152 +k1,17636:16028417,26121294:201152 +k1,17636:16880996,26121294:201151 +k1,17636:17438008,26121294:201152 +k1,17636:20150500,26121294:201152 +k1,17636:21543097,26121294:201152 +k1,17636:22941591,26121294:201151 +k1,17636:24161828,26121294:201152 +k1,17636:26874320,26121294:201152 +k1,17636:29402655,26121294:201152 +k1,17636:30263098,26121294:201151 +k1,17636:31483335,26121294:201152 +k1,17636:32583029,26121294:0 +) +(1,17637:6764466,26986374:25818563,513147,126483 +g1,17636:7615123,26986374 +(1,17636:7615123,26986374:0,452978,115847 +r1,17676:9380236,26986374:1765113,568825,115847 +k1,17636:7615123,26986374:-1765113 +) +(1,17636:7615123,26986374:1765113,452978,115847 +k1,17636:7615123,26986374:3277 +h1,17636:9376959,26986374:0,411205,112570 +) +g1,17636:9579465,26986374 +g1,17636:10394732,26986374 +g1,17636:12045583,26986374 +g1,17636:12904104,26986374 +g1,17636:14122418,26986374 +g1,17636:17313366,26986374 +g1,17636:19541590,26986374 +g1,17636:20400111,26986374 +g1,17636:22484811,26986374 +g1,17636:23552392,26986374 +g1,17636:25412303,26986374 +g1,17636:26987133,26986374 +g1,17636:28205447,26986374 +g1,17636:29710809,26986374 +k1,17637:32583029,26986374:1541839 +g1,17637:32583029,26986374 +) +v1,17639:6764466,27671229:0,393216,0 +(1,17646:6764466,30066477:25818563,2788464,196608 +g1,17646:6764466,30066477 +g1,17646:6764466,30066477 +g1,17646:6567858,30066477 +(1,17646:6567858,30066477:0,2788464,196608 +r1,17676:32779637,30066477:26211779,2985072,196608 +k1,17646:6567857,30066477:-26211780 +) +(1,17646:6567858,30066477:26211779,2788464,196608 +[1,17646:6764466,30066477:25818563,2591856,0 +(1,17641:6764466,27899060:25818563,424439,112852 +(1,17640:6764466,27899060:0,0,0 +g1,17640:6764466,27899060 +g1,17640:6764466,27899060 +g1,17640:6436786,27899060 +(1,17640:6436786,27899060:0,0,0 +) +g1,17640:6764466,27899060 +) +g1,17641:10415959,27899060 +g1,17641:11411821,27899060 +g1,17641:13403545,27899060 +g1,17641:14067453,27899060 +g1,17641:16059177,27899060 +g1,17641:16723085,27899060 +g1,17641:17386993,27899060 +h1,17641:18714809,27899060:0,0,0 +k1,17641:32583029,27899060:13868220 +g1,17641:32583029,27899060 +) +(1,17642:6764466,28583915:25818563,424439,112852 +h1,17642:6764466,28583915:0,0,0 +g1,17642:10747914,28583915 +g1,17642:11411822,28583915 +k1,17642:11411822,28583915:0 +h1,17642:13735500,28583915:0,0,0 +k1,17642:32583028,28583915:18847528 +g1,17642:32583028,28583915 +) +(1,17643:6764466,29268770:25818563,424439,112852 +h1,17643:6764466,29268770:0,0,0 +g1,17643:7096420,29268770 +g1,17643:7428374,29268770 +g1,17643:7760328,29268770 +g1,17643:8092282,29268770 +g1,17643:8424236,29268770 +g1,17643:8756190,29268770 +g1,17643:9088144,29268770 +g1,17643:11743776,29268770 +g1,17643:12407684,29268770 +g1,17643:16391131,29268770 +h1,17643:16723085,29268770:0,0,0 +k1,17643:32583029,29268770:15859944 +g1,17643:32583029,29268770 +) +(1,17644:6764466,29953625:25818563,424439,112852 +h1,17644:6764466,29953625:0,0,0 +g1,17644:7096420,29953625 +g1,17644:7428374,29953625 +k1,17644:7428374,29953625:0 +h1,17644:11411821,29953625:0,0,0 +k1,17644:32583029,29953625:21171208 +g1,17644:32583029,29953625 +) +] +) +g1,17646:32583029,30066477 +g1,17646:6764466,30066477 +g1,17646:6764466,30066477 +g1,17646:32583029,30066477 +g1,17646:32583029,30066477 +) +h1,17646:6764466,30263085:0,0,0 +(1,17650:6764466,31128165:25818563,505283,134348 +h1,17649:6764466,31128165:983040,0,0 +k1,17649:8590478,31128165:215137 +k1,17649:9571730,31128165:215136 +k1,17649:11483594,31128165:215137 +k1,17649:14864120,31128165:215137 +k1,17649:16098342,31128165:215137 +k1,17649:17590775,31128165:215136 +k1,17649:20363782,31128165:215137 +k1,17649:24070022,31128165:215137 +k1,17649:25558524,31128165:215137 +k1,17649:28229949,31128165:215136 +k1,17649:31379788,31128165:215137 +k1,17649:32583029,31128165:0 +) +(1,17650:6764466,31993245:25818563,513147,134348 +k1,17649:9996903,31993245:258413 +k1,17649:10871355,31993245:258414 +k1,17649:12148853,31993245:258413 +k1,17649:15309856,31993245:258413 +k1,17649:17753896,31993245:258414 +k1,17649:18698471,31993245:258413 +k1,17649:22086228,31993245:258413 +k1,17649:22960679,31993245:258413 +k1,17649:25497780,31993245:258414 +h1,17649:27040498,31993245:0,0,0 +k1,17649:27298911,31993245:258413 +k1,17649:28366694,31993245:258413 +h1,17649:29562071,31993245:0,0,0 +k1,17649:29820485,31993245:258414 +k1,17649:32124932,31993245:258413 +k1,17649:32583029,31993245:0 +) +(1,17650:6764466,32858325:25818563,513147,126483 +g1,17649:9593655,32858325 +g1,17649:10740535,32858325 +g1,17649:12827856,32858325 +g1,17649:13678513,32858325 +g1,17649:16105311,32858325 +g1,17649:20311411,32858325 +g1,17649:21169932,32858325 +g1,17649:22820783,32858325 +g1,17649:24721982,32858325 +g1,17649:26619249,32858325 +k1,17650:32583029,32858325:3491762 +g1,17650:32583029,32858325 +) +] +g1,17650:32583029,32984808 +) +h1,17650:6630773,32984808:0,0,0 +(1,17653:6630773,33849888:25952256,513147,134348 +h1,17652:6630773,33849888:983040,0,0 +k1,17652:9026180,33849888:215680 +k1,17652:12314188,33849888:215680 +k1,17652:14735155,33849888:215680 +k1,17652:15602263,33849888:215680 +k1,17652:19098675,33849888:215680 +(1,17652:19098675,33849888:0,452978,115847 +r1,17676:20512076,33849888:1413401,568825,115847 +k1,17652:19098675,33849888:-1413401 +) +(1,17652:19098675,33849888:1413401,452978,115847 +k1,17652:19098675,33849888:3277 +h1,17652:20508799,33849888:0,411205,112570 +) +k1,17652:20727756,33849888:215680 +k1,17652:21602728,33849888:215680 +k1,17652:22174268,33849888:215680 +k1,17652:23947739,33849888:215680 +k1,17652:27032585,33849888:215680 +k1,17652:28352547,33849888:215680 +k1,17652:29315993,33849888:215680 +k1,17652:29887533,33849888:215680 +k1,17652:32583029,33849888:0 +) +(1,17653:6630773,34714968:25952256,513147,126483 +k1,17652:9155613,34714968:197657 +k1,17652:10012561,34714968:197656 +k1,17652:10566078,34714968:197657 +k1,17652:12153097,34714968:197656 +k1,17652:14227050,34714968:197657 +k1,17652:14890667,34714968:197656 +k1,17652:16107409,34714968:197657 +k1,17652:17582362,34714968:197656 +k1,17652:20482068,34714968:197657 +k1,17652:22945304,34714968:197656 +k1,17652:24705995,34714968:197657 +k1,17652:25531486,34714968:197656 +k1,17652:26932384,34714968:197657 +k1,17652:28670791,34714968:197656 +k1,17652:29887533,34714968:197657 +k1,17652:32583029,34714968:0 +) +(1,17653:6630773,35580048:25952256,513147,134348 +k1,17652:7370762,35580048:208492 +k1,17652:9951001,35580048:208491 +k1,17652:10810921,35580048:208492 +k1,17652:12038498,35580048:208492 +k1,17652:14512570,35580048:208492 +k1,17652:16110424,35580048:208491 +k1,17652:17510361,35580048:208492 +k1,17652:19340869,35580048:208492 +k1,17652:21560006,35580048:208492 +k1,17652:22124357,35580048:208491 +k1,17652:23722212,35580048:208492 +k1,17652:25807000,35580048:208492 +k1,17652:29377489,35580048:208492 +k1,17652:30975343,35580048:208491 +k1,17652:31835263,35580048:208492 +k1,17652:32583029,35580048:0 +) +(1,17653:6630773,36445128:25952256,513147,126483 +k1,17652:8317952,36445128:173953 +k1,17652:9107943,36445128:173953 +k1,17652:10300981,36445128:173953 +k1,17652:12206395,36445128:173953 +k1,17652:13868671,36445128:173953 +k1,17652:14255591,36445128:173928 +k1,17652:15522029,36445128:173953 +k1,17652:16466686,36445128:173954 +k1,17652:20341457,36445128:173953 +k1,17652:23210906,36445128:173953 +k1,17652:25766437,36445128:173953 +k1,17652:28111598,36445128:173953 +k1,17652:29357720,36445128:173953 +k1,17652:29887533,36445128:173953 +k1,17652:32583029,36445128:0 +) +(1,17653:6630773,37310208:25952256,505283,134348 +g1,17652:7934284,37310208 +g1,17652:9419329,37310208 +g1,17652:10366324,37310208 +g1,17652:12770840,37310208 +g1,17652:13656231,37310208 +g1,17652:16927788,37310208 +g1,17652:17888545,37310208 +k1,17653:32583029,37310208:12782799 +g1,17653:32583029,37310208 +) +v1,17655:6630773,37995063:0,393216,0 +(1,17663:6630773,41042136:25952256,3440289,196608 +g1,17663:6630773,41042136 +g1,17663:6630773,41042136 +g1,17663:6434165,41042136 +(1,17663:6434165,41042136:0,3440289,196608 +r1,17676:32779637,41042136:26345472,3636897,196608 +k1,17663:6434165,41042136:-26345472 +) +(1,17663:6434165,41042136:26345472,3440289,196608 +[1,17663:6630773,41042136:25952256,3243681,0 +(1,17657:6630773,38222894:25952256,424439,112852 +(1,17656:6630773,38222894:0,0,0 +g1,17656:6630773,38222894 +g1,17656:6630773,38222894 +g1,17656:6303093,38222894 +(1,17656:6303093,38222894:0,0,0 +) +g1,17656:6630773,38222894 +) +k1,17657:6630773,38222894:0 +g1,17657:10614221,38222894 +g1,17657:11278129,38222894 +k1,17657:11278129,38222894:0 +h1,17657:13601807,38222894:0,0,0 +k1,17657:32583029,38222894:18981222 +g1,17657:32583029,38222894 +) +(1,17658:6630773,38907749:25952256,424439,112852 +h1,17658:6630773,38907749:0,0,0 +g1,17658:6962727,38907749 +g1,17658:7294681,38907749 +g1,17658:7626635,38907749 +g1,17658:7958589,38907749 +g1,17658:8290543,38907749 +g1,17658:8622497,38907749 +g1,17658:8954451,38907749 +g1,17658:11610083,38907749 +g1,17658:12273991,38907749 +g1,17658:14265715,38907749 +g1,17658:14929623,38907749 +g1,17658:16921347,38907749 +g1,17658:17585255,38907749 +g1,17658:18249163,38907749 +g1,17658:20240887,38907749 +h1,17658:20572841,38907749:0,0,0 +k1,17658:32583029,38907749:12010188 +g1,17658:32583029,38907749 +) +(1,17659:6630773,39592604:25952256,424439,112852 +h1,17659:6630773,39592604:0,0,0 +g1,17659:6962727,39592604 +g1,17659:7294681,39592604 +g1,17659:12605944,39592604 +g1,17659:13269852,39592604 +g1,17659:14265714,39592604 +h1,17659:14597668,39592604:0,0,0 +k1,17659:32583028,39592604:17985360 +g1,17659:32583028,39592604 +) +(1,17660:6630773,40277459:25952256,431045,112852 +h1,17660:6630773,40277459:0,0,0 +g1,17660:6962727,40277459 +g1,17660:7294681,40277459 +g1,17660:12605944,40277459 +g1,17660:13269852,40277459 +g1,17660:20572839,40277459 +g1,17660:21900655,40277459 +g1,17660:22896517,40277459 +g1,17660:24556287,40277459 +g1,17660:26548011,40277459 +g1,17660:27211919,40277459 +k1,17660:27211919,40277459:0 +h1,17660:30199504,40277459:0,0,0 +k1,17660:32583029,40277459:2383525 +g1,17660:32583029,40277459 +) +(1,17661:6630773,40962314:25952256,424439,79822 +h1,17661:6630773,40962314:0,0,0 +g1,17661:6962727,40962314 +g1,17661:7294681,40962314 +g1,17661:7626635,40962314 +g1,17661:7958589,40962314 +g1,17661:8290543,40962314 +g1,17661:8622497,40962314 +g1,17661:8954451,40962314 +g1,17661:9286405,40962314 +g1,17661:9618359,40962314 +g1,17661:9950313,40962314 +g1,17661:10282267,40962314 +g1,17661:10614221,40962314 +g1,17661:10946175,40962314 +g1,17661:12605945,40962314 +g1,17661:13269853,40962314 +h1,17661:14597669,40962314:0,0,0 +k1,17661:32583029,40962314:17985360 +g1,17661:32583029,40962314 +) +] +) +g1,17663:32583029,41042136 +g1,17663:6630773,41042136 +g1,17663:6630773,41042136 +g1,17663:32583029,41042136 +g1,17663:32583029,41042136 +) +h1,17663:6630773,41238744:0,0,0 +(1,17668:6630773,41923599:25952256,513147,134348 +h1,17666:6630773,41923599:983040,0,0 +k1,17666:8961888,41923599:151388 +k1,17666:10894545,41923599:151388 +k1,17666:13311513,41923599:151388 +k1,17666:14852264,41923599:151388 +k1,17666:16107934,41923599:151388 +k1,17666:17545138,41923599:151388 +k1,17666:18444293,41923599:151389 +k1,17666:21427492,41923599:151388 +k1,17666:23223834,41923599:151388 +k1,17666:25110615,41923599:151388 +k1,17666:26281088,41923599:151388 +k1,17666:29377663,41923599:151388 +k1,17666:30919070,41923599:151388 +k1,17668:32583029,41923599:0 +) +(1,17668:6630773,42608454:25952256,513147,126483 +k1,17666:8247491,42608454:147401 +k1,17666:9467061,42608454:147401 +k1,17666:10680732,42608454:147400 +k1,17666:11847218,42608454:147401 +k1,17666:13384638,42608454:147401 +k1,17666:16278653,42608454:147401 +k1,17666:18359365,42608454:147400 +k1,17666:19158194,42608454:147401 +k1,17666:19720386,42608454:147349 +(1,17666:19927480,42608454:0,452978,115847 +r1,17676:20637458,42608454:709978,568825,115847 +k1,17666:19927480,42608454:-709978 +) +(1,17666:19927480,42608454:709978,452978,115847 +k1,17666:19927480,42608454:3277 +h1,17666:20634181,42608454:0,411205,112570 +) +k1,17666:20991953,42608454:147401 +k1,17666:21822239,42608454:147401 +k1,17666:22988725,42608454:147401 +k1,17666:25811305,42608454:147400 +k1,17666:28705320,42608454:147401 +k1,17666:30420342,42608454:147401 +k1,17666:32583029,42608454:0 +) +(1,17668:6630773,43293309:25952256,513147,134348 +g1,17666:8062079,43293309 +g1,17666:10539995,43293309 +h1,17666:11510583,43293309:0,0,0 +g1,17666:11709812,43293309 +g1,17666:12718411,43293309 +g1,17666:14415793,43293309 +h1,17666:15611170,43293309:0,0,0 +g1,17666:16191163,43293309 +g1,17666:18182146,43293309 +g1,17666:18737235,43293309 +g1,17666:21631960,43293309 +g1,17666:22517351,43293309 +g1,17666:24571904,43293309 +g1,17666:25302630,43293309 +g1,17666:27914895,43293309 +g1,17666:29305569,43293309 +g1,17666:31844433,43293309 +k1,17668:32583029,43293309:738596 +g1,17668:32583029,43293309 +) +v1,17668:6630773,43978164:0,393216,0 +(1,17676:6630773,45003702:25952256,1418754,196608 +g1,17676:6630773,45003702 +g1,17676:6630773,45003702 +g1,17676:6434165,45003702 +(1,17676:6434165,45003702:0,1418754,196608 +r1,17676:32779637,45003702:26345472,1615362,196608 +k1,17676:6434165,45003702:-26345472 +) +(1,17676:6434165,45003702:26345472,1418754,196608 +[1,17676:6630773,45003702:25952256,1222146,0 +(1,17670:6630773,44205995:25952256,424439,112852 +(1,17669:6630773,44205995:0,0,0 +g1,17669:6630773,44205995 +g1,17669:6630773,44205995 +g1,17669:6303093,44205995 +(1,17669:6303093,44205995:0,0,0 +) +g1,17669:6630773,44205995 +) +k1,17670:6630773,44205995:0 +g1,17670:10614221,44205995 +g1,17670:11278129,44205995 +k1,17670:11278129,44205995:0 +h1,17670:13601807,44205995:0,0,0 +k1,17670:32583029,44205995:18981222 +g1,17670:32583029,44205995 +) +(1,17671:6630773,44890850:25952256,424439,112852 +h1,17671:6630773,44890850:0,0,0 +g1,17671:6962727,44890850 +g1,17671:7294681,44890850 +g1,17671:7626635,44890850 +g1,17671:7958589,44890850 +g1,17671:8290543,44890850 +g1,17671:8622497,44890850 +g1,17671:8954451,44890850 +g1,17671:11610083,44890850 +g1,17671:12273991,44890850 +g1,17671:14265715,44890850 +g1,17671:14929623,44890850 +g1,17671:16921347,44890850 +g1,17671:17585255,44890850 +g1,17671:18249163,44890850 +g1,17671:20240887,44890850 +h1,17671:20572841,44890850:0,0,0 +k1,17671:32583029,44890850:12010188 +g1,17671:32583029,44890850 +) +] +) +g1,17676:32583029,45003702 +g1,17676:6630773,45003702 +g1,17676:6630773,45003702 +g1,17676:32583029,45003702 +g1,17676:32583029,45003702 +) +] +(1,17676:32583029,45706769:0,0,0 +g1,17676:32583029,45706769 +) +) +] +(1,17676:6630773,47279633:25952256,0,0 +h1,17676:6630773,47279633:25952256,0,0 +) +] +(1,17676:4262630,4025873:0,0,0 +[1,17676:-473656,4025873:0,0,0 +(1,17676:-473656,-710413:0,0,0 +(1,17676:-473656,-710413:0,0,0 +g1,17676:-473656,-710413 +) +g1,17676:-473656,-710413 +) +] +) +] +!30421 +}289 +Input:2612:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2613:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2614:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2615:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2616:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2617:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2618:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2619:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2620:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2621:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2622:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2623:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2624:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2625:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2626:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2627:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2628:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2629:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2630:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2631:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2632:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!576 -{308 -[1,17685:4262630,47279633:28320399,43253760,0 -(1,17685:4262630,4025873:0,0,0 -[1,17685:-473656,4025873:0,0,0 -(1,17685:-473656,-710413:0,0,0 -(1,17685:-473656,-644877:0,0,0 -k1,17685:-473656,-644877:-65536 +!1516 +{290 +[1,17704:4262630,47279633:28320399,43253760,0 +(1,17704:4262630,4025873:0,0,0 +[1,17704:-473656,4025873:0,0,0 +(1,17704:-473656,-710413:0,0,0 +(1,17704:-473656,-644877:0,0,0 +k1,17704:-473656,-644877:-65536 ) -(1,17685:-473656,4736287:0,0,0 -k1,17685:-473656,4736287:5209943 +(1,17704:-473656,4736287:0,0,0 +k1,17704:-473656,4736287:5209943 ) -g1,17685:-473656,-710413 +g1,17704:-473656,-710413 ) ] ) -[1,17685:6630773,47279633:25952256,43253760,0 -[1,17685:6630773,4812305:25952256,786432,0 -(1,17685:6630773,4812305:25952256,485622,11795 -(1,17685:6630773,4812305:25952256,485622,11795 -g1,17685:3078558,4812305 -[1,17685:3078558,4812305:0,0,0 -(1,17685:3078558,2439708:0,1703936,0 -k1,17685:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,17685:2537886,2439708:1179648,16384,0 +[1,17704:6630773,47279633:25952256,43253760,0 +[1,17704:6630773,4812305:25952256,786432,0 +(1,17704:6630773,4812305:25952256,513147,134348 +(1,17704:6630773,4812305:25952256,513147,134348 +g1,17704:3078558,4812305 +[1,17704:3078558,4812305:0,0,0 +(1,17704:3078558,2439708:0,1703936,0 +k1,17704:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,17704:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,17685:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,17704:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,17685:3078558,4812305:0,0,0 -(1,17685:3078558,2439708:0,1703936,0 -g1,17685:29030814,2439708 -g1,17685:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,17685:36151628,1915420:16384,1179648,0 +[1,17704:3078558,4812305:0,0,0 +(1,17704:3078558,2439708:0,1703936,0 +g1,17704:29030814,2439708 +g1,17704:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,17704:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,17685:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,17704:37855564,2439708:1179648,16384,0 ) ) -k1,17685:3078556,2439708:-34777008 +k1,17704:3078556,2439708:-34777008 ) ] -[1,17685:3078558,4812305:0,0,0 -(1,17685:3078558,49800853:0,16384,2228224 -k1,17685:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,17685:2537886,49800853:1179648,16384,0 -) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,17685:3078558,51504789:16384,1179648,0 -) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 -) -] -) -) -) -] -[1,17685:3078558,4812305:0,0,0 -(1,17685:3078558,49800853:0,16384,2228224 -g1,17685:29030814,49800853 -g1,17685:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,17685:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] -) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,17685:37855564,49800853:1179648,16384,0 -) -) -k1,17685:3078556,49800853:-34777008 -) -] -g1,17685:6630773,4812305 -g1,17685:6630773,4812305 -g1,17685:10347975,4812305 -k1,17685:31387651,4812305:21039676 -) -) -] -[1,17685:6630773,45706769:25952256,40108032,0 -(1,17685:6630773,45706769:25952256,40108032,0 -(1,17685:6630773,45706769:0,0,0 -g1,17685:6630773,45706769 -) -[1,17685:6630773,45706769:25952256,40108032,0 -(1,17628:6630773,6254097:25952256,505283,134348 -h1,17627:6630773,6254097:983040,0,0 -k1,17627:9006726,6254097:196226 -k1,17627:10765985,6254097:196225 -k1,17627:14136775,6254097:196226 -k1,17627:17644535,6254097:196226 -k1,17627:19032205,6254097:196225 -k1,17627:22735918,6254097:196226 -k1,17627:23923704,6254097:196226 -k1,17627:25139014,6254097:196225 -k1,17627:26988713,6254097:196226 -k1,17627:27871101,6254097:196226 -k1,17627:28683364,6254097:196225 -k1,17627:30913172,6254097:196226 -k1,17627:32583029,6254097:0 -) -(1,17628:6630773,7095585:25952256,513147,134348 -k1,17627:7516558,7095585:234357 -k1,17627:9204503,7095585:234356 -k1,17627:10769241,7095585:234357 -k1,17627:12022682,7095585:234356 -k1,17627:13534336,7095585:234357 -k1,17627:15659406,7095585:234356 -k1,17627:16762115,7095585:234357 -k1,17627:18471686,7095585:234356 -k1,17627:21367460,7095585:234357 -k1,17627:22977417,7095585:234356 -k1,17627:24230859,7095585:234357 -k1,17627:26037424,7095585:234356 -k1,17627:27463226,7095585:234357 -k1,17627:29887795,7095585:234356 -k1,17627:31635378,7095585:234357 -k1,17627:32583029,7095585:0 -) -(1,17628:6630773,7937073:25952256,505283,126483 -k1,17627:7830233,7937073:180375 -k1,17627:9626726,7937073:180375 -k1,17627:12825034,7937073:180375 -k1,17627:17170877,7937073:180375 -k1,17627:17809349,7937073:180375 -k1,17627:18521221,7937073:180375 -k1,17627:19900251,7937073:180376 -k1,17627:22305573,7937073:180375 -k1,17627:23505033,7937073:180375 -k1,17627:25338881,7937073:180375 -k1,17627:26796553,7937073:180375 -k1,17627:27845280,7937073:180375 -k1,17627:30375776,7937073:180375 -k1,17627:32583029,7937073:0 -) -(1,17628:6630773,8778561:25952256,513147,126483 -k1,17627:8880725,8778561:179014 -k1,17627:10007390,8778561:179014 -k1,17627:11205489,8778561:179014 -k1,17627:13745765,8778561:179014 -k1,17627:15611676,8778561:179014 -k1,17627:17171534,8778561:179014 -k1,17627:17882044,8778561:179013 -k1,17627:18416918,8778561:179014 -k1,17627:19949906,8778561:179014 -k1,17627:23338218,8778561:179014 -k1,17627:25205439,8778561:179014 -k1,17627:26035881,8778561:179014 -k1,17627:30053339,8778561:179014 -k1,17627:32583029,8778561:0 -) -(1,17628:6630773,9620049:25952256,513147,126483 -k1,17627:7371876,9620049:283006 -k1,17627:9666837,9620049:283006 -k1,17627:10694988,9620049:283007 -k1,17627:11629422,9620049:283006 -k1,17627:14615133,9620049:283006 -k1,17627:16070578,9620049:283006 -k1,17627:19115927,9620049:283006 -k1,17627:22429973,9620049:283006 -k1,17627:23732065,9620049:283007 -k1,17627:26875062,9620049:283006 -k1,17627:30089493,9620049:283006 -k1,17627:31563944,9620049:283006 -k1,17627:32583029,9620049:0 -) -(1,17628:6630773,10461537:25952256,505283,134348 -g1,17627:9218789,10461537 -k1,17628:32583028,10461537:21101936 -g1,17628:32583028,10461537 -) -v1,17630:6630773,11696928:0,393216,0 -(1,17641:6630773,18508246:25952256,7204534,0 -g1,17641:6630773,18508246 -g1,17641:6303093,18508246 -r1,17685:6401397,18508246:98304,7204534,0 -g1,17641:6600626,18508246 -g1,17641:6797234,18508246 -[1,17641:6797234,18508246:25785795,7204534,0 -(1,17631:6797234,12129466:25785795,825754,196608 -(1,17630:6797234,12129466:0,825754,196608 -r1,17685:7890375,12129466:1093141,1022362,196608 -k1,17630:6797234,12129466:-1093141 -) -(1,17630:6797234,12129466:1093141,825754,196608 -) -k1,17630:8193151,12129466:302776 -k1,17630:9511080,12129466:327680 -k1,17630:10897822,12129466:302776 -k1,17630:12219683,12129466:302776 -k1,17630:15284802,12129466:302776 -k1,17630:18108093,12129466:302776 -k1,17630:21194838,12129466:302776 -k1,17630:24056140,12129466:302776 -k1,17630:25378001,12129466:302776 -k1,17630:27873612,12129466:302776 -k1,17630:29922267,12129466:302776 -k1,17630:31478747,12129466:302776 -k1,17630:32583029,12129466:0 -) -(1,17631:6797234,12970954:25785795,513147,134348 -k1,17630:8342374,12970954:202307 -k1,17630:10959028,12970954:202308 -k1,17630:12555286,12970954:202307 -k1,17630:13776678,12970954:202307 -k1,17630:16499501,12970954:202308 -k1,17630:18437201,12970954:202307 -k1,17630:21335004,12970954:202307 -(1,17630:21335004,12970954:0,452978,115847 -r1,17685:25562100,12970954:4227096,568825,115847 -k1,17630:21335004,12970954:-4227096 -) -(1,17630:21335004,12970954:4227096,452978,115847 -k1,17630:21335004,12970954:3277 -h1,17630:25558823,12970954:0,411205,112570 -) -k1,17630:25764407,12970954:202307 -k1,17630:27534336,12970954:202308 -k1,17630:30316795,12970954:202307 -k1,17630:32583029,12970954:0 -) -(1,17631:6797234,13812442:25785795,505283,134348 -g1,17630:9676886,13812442 -g1,17630:11270066,13812442 -(1,17630:11270066,13812442:0,452978,115847 -r1,17685:14793738,13812442:3523672,568825,115847 -k1,17630:11270066,13812442:-3523672 -) -(1,17630:11270066,13812442:3523672,452978,115847 -k1,17630:11270066,13812442:3277 -h1,17630:14790461,13812442:0,411205,112570 -) -k1,17631:32583030,13812442:17408528 -g1,17631:32583030,13812442 -) -v1,17633:6797234,15002908:0,393216,0 -(1,17638:6797234,15977891:25785795,1368199,196608 -g1,17638:6797234,15977891 -g1,17638:6797234,15977891 -g1,17638:6600626,15977891 -(1,17638:6600626,15977891:0,1368199,196608 -r1,17685:32779637,15977891:26179011,1564807,196608 -k1,17638:6600625,15977891:-26179012 -) -(1,17638:6600626,15977891:26179011,1368199,196608 -[1,17638:6797234,15977891:25785795,1171591,0 -(1,17635:6797234,15210526:25785795,404226,101187 -(1,17634:6797234,15210526:0,0,0 -g1,17634:6797234,15210526 -g1,17634:6797234,15210526 -g1,17634:6469554,15210526 -(1,17634:6469554,15210526:0,0,0 -) -g1,17634:6797234,15210526 -) -k1,17635:6797234,15210526:0 -k1,17635:6797234,15210526:0 -h1,17635:14700876,15210526:0,0,0 -k1,17635:32583028,15210526:17882152 -g1,17635:32583028,15210526 -) -(1,17636:6797234,15876704:25785795,404226,101187 -h1,17636:6797234,15876704:0,0,0 -g1,17636:14700877,15876704 -g1,17636:15333169,15876704 -g1,17636:17862335,15876704 -g1,17636:20391501,15876704 -g1,17636:21023793,15876704 -g1,17636:21972231,15876704 -g1,17636:25133688,15876704 -g1,17636:25765980,15876704 -h1,17636:27662854,15876704:0,0,0 -k1,17636:32583029,15876704:4920175 -g1,17636:32583029,15876704 -) -] -) -g1,17638:32583029,15977891 -g1,17638:6797234,15977891 -g1,17638:6797234,15977891 -g1,17638:32583029,15977891 -g1,17638:32583029,15977891 -) -h1,17638:6797234,16174499:0,0,0 -(1,17641:6797234,17540275:25785795,513147,126483 -h1,17640:6797234,17540275:983040,0,0 -k1,17640:9555270,17540275:170019 -k1,17640:10895762,17540275:170019 -k1,17640:12540996,17540275:170019 -k1,17640:14620734,17540275:170019 -k1,17640:15146613,17540275:170019 -k1,17640:17828627,17540275:170019 -k1,17640:20188859,17540275:170019 -k1,17640:21306530,17540275:170020 -k1,17640:23173276,17540275:170019 -k1,17640:24906329,17540275:170019 -k1,17640:26527315,17540275:170019 -k1,17640:27716419,17540275:170019 -k1,17640:29163735,17540275:170019 -k1,17640:31189078,17540275:170019 -k1,17640:32583029,17540275:0 -) -(1,17641:6797234,18381763:25785795,505283,126483 -g1,17640:8015548,18381763 -g1,17640:10450210,18381763 -k1,17641:32583030,18381763:19768936 -g1,17641:32583030,18381763 -) -] -g1,17641:32583029,18508246 -) -h1,17641:6630773,18508246:0,0,0 -(1,17644:6630773,19743637:25952256,513147,134348 -h1,17643:6630773,19743637:983040,0,0 -k1,17643:9663303,19743637:266255 -k1,17643:10995828,19743637:266254 -k1,17643:13454262,19743637:266255 -k1,17643:14529887,19743637:266255 -k1,17643:16916232,19743637:266255 -k1,17643:18201571,19743637:266254 -k1,17643:20069526,19743637:266255 -k1,17643:23113197,19743637:266255 -k1,17643:24617427,19743637:266255 -k1,17643:25542973,19743637:266254 -k1,17643:30360048,19743637:266255 -k1,17643:32583029,19743637:0 -) -(1,17644:6630773,20585125:25952256,513147,126483 -k1,17643:7535941,20585125:245876 -k1,17643:11853569,20585125:245876 -k1,17643:12715483,20585125:245876 -k1,17643:15130600,20585125:245875 -k1,17643:16984074,20585125:245876 -k1,17643:17761447,20585125:245876 -k1,17643:18658751,20585125:245876 -k1,17643:19997112,20585125:245876 -k1,17643:21262073,20585125:245876 -(1,17643:21262073,20585125:0,452978,115847 -r1,17685:23027186,20585125:1765113,568825,115847 -k1,17643:21262073,20585125:-1765113 -) -(1,17643:21262073,20585125:1765113,452978,115847 -k1,17643:21262073,20585125:3277 -h1,17643:23023909,20585125:0,411205,112570 -) -k1,17643:23273062,20585125:245876 -k1,17643:24178230,20585125:245876 -k1,17643:25443190,20585125:245875 -k1,17643:27707575,20585125:245876 -k1,17643:28639613,20585125:245876 -k1,17643:29656192,20585125:245876 -k1,17643:32583029,20585125:0 -) -(1,17644:6630773,21426613:25952256,513147,134348 -k1,17643:7786501,21426613:202179 -k1,17643:9518945,21426613:202178 -k1,17643:10372552,21426613:202179 -k1,17643:12815406,21426613:202178 -k1,17643:13373445,21426613:202179 -k1,17643:15448642,21426613:202178 -k1,17643:17875768,21426613:202179 -k1,17643:18693984,21426613:202178 -k1,17643:19915248,21426613:202179 -k1,17643:21613613,21426613:202178 -k1,17643:25002152,21426613:202179 -k1,17643:25855758,21426613:202178 -k1,17643:28415267,21426613:202179 -k1,17643:29820686,21426613:202178 -k1,17643:32583029,21426613:0 -) -(1,17644:6630773,22268101:25952256,473825,134348 -k1,17644:32583030,22268101:22971024 -g1,17644:32583030,22268101 -) -v1,17646:6630773,23328182:0,393216,0 -(1,17651:6630773,24315748:25952256,1380782,196608 -g1,17651:6630773,24315748 -g1,17651:6630773,24315748 -g1,17651:6434165,24315748 -(1,17651:6434165,24315748:0,1380782,196608 -r1,17685:32779637,24315748:26345472,1577390,196608 -k1,17651:6434165,24315748:-26345472 -) -(1,17651:6434165,24315748:26345472,1380782,196608 -[1,17651:6630773,24315748:25952256,1184174,0 -(1,17648:6630773,23542092:25952256,410518,107478 -(1,17647:6630773,23542092:0,0,0 -g1,17647:6630773,23542092 -g1,17647:6630773,23542092 -g1,17647:6303093,23542092 -(1,17647:6303093,23542092:0,0,0 -) -g1,17647:6630773,23542092 -) -k1,17648:6630773,23542092:0 -g1,17648:10424522,23542092 -g1,17648:11056814,23542092 -g1,17648:13585980,23542092 -g1,17648:15482855,23542092 -g1,17648:16115147,23542092 -g1,17648:18012022,23542092 -g1,17648:18644314,23542092 -g1,17648:19276606,23542092 -g1,17648:20857335,23542092 -g1,17648:22754209,23542092 -g1,17648:23386501,23542092 -g1,17648:27812541,23542092 -h1,17648:28128687,23542092:0,0,0 -k1,17648:32583029,23542092:4454342 -g1,17648:32583029,23542092 -) -(1,17649:6630773,24208270:25952256,404226,107478 -h1,17649:6630773,24208270:0,0,0 -g1,17649:6946919,24208270 -g1,17649:7263065,24208270 -k1,17649:7263065,24208270:0 -h1,17649:11056813,24208270:0,0,0 -k1,17649:32583029,24208270:21526216 -g1,17649:32583029,24208270 -) -] -) -g1,17651:32583029,24315748 -g1,17651:6630773,24315748 -g1,17651:6630773,24315748 -g1,17651:32583029,24315748 -g1,17651:32583029,24315748 -) -h1,17651:6630773,24512356:0,0,0 -(1,17655:6630773,25747746:25952256,505283,126483 -h1,17654:6630773,25747746:983040,0,0 -k1,17654:8772386,25747746:205024 -k1,17654:10081692,25747746:205024 -k1,17654:11379201,25747746:205024 -(1,17654:11379201,25747746:0,452978,115847 -r1,17685:17716568,25747746:6337367,568825,115847 -k1,17654:11379201,25747746:-6337367 -) -(1,17654:11379201,25747746:6337367,452978,115847 -k1,17654:11379201,25747746:3277 -h1,17654:17713291,25747746:0,411205,112570 -) -k1,17654:17921592,25747746:205024 -k1,17654:18778044,25747746:205024 -k1,17654:21198185,25747746:205024 -k1,17654:22854831,25747746:205024 -k1,17654:24928942,25747746:205024 -k1,17654:25785394,25747746:205024 -k1,17654:26738184,25747746:205024 -k1,17654:28630105,25747746:205024 -k1,17654:29788678,25747746:205024 -k1,17654:30928245,25747746:205024 -k1,17654:32583029,25747746:0 -) -(1,17655:6630773,26589234:25952256,513147,126483 -k1,17654:9041565,26589234:233031 -k1,17654:11473983,26589234:233030 -k1,17654:12991520,26589234:233031 -k1,17654:14092903,26589234:233031 -k1,17654:15458395,26589234:233030 -k1,17654:16716409,26589234:233031 -k1,17654:18403029,26589234:233031 -k1,17654:19627619,26589234:233030 -k1,17654:21214624,26589234:233031 -k1,17654:23424876,26589234:233031 -k1,17654:24344068,26589234:233030 -k1,17654:25957287,26589234:233031 -k1,17654:27693714,26589234:233031 -k1,17654:29393440,26589234:233030 -(1,17654:29393440,26589234:0,452978,115847 -r1,17685:31158553,26589234:1765113,568825,115847 -k1,17654:29393440,26589234:-1765113 -) -(1,17654:29393440,26589234:1765113,452978,115847 -k1,17654:29393440,26589234:3277 -h1,17654:31155276,26589234:0,411205,112570 -) -k1,17654:31391584,26589234:233031 -k1,17655:32583029,26589234:0 -) -(1,17655:6630773,27430722:25952256,505283,115847 -(1,17654:6630773,27430722:0,459977,115847 -r1,17685:8044174,27430722:1413401,575824,115847 -k1,17654:6630773,27430722:-1413401 -) -(1,17654:6630773,27430722:1413401,459977,115847 -k1,17654:6630773,27430722:3277 -h1,17654:8040897,27430722:0,411205,112570 -) -g1,17654:8243403,27430722 -k1,17655:32583029,27430722:21124430 -g1,17655:32583029,27430722 -) -v1,17657:6630773,28490803:0,393216,0 -(1,17663:6630773,30138256:25952256,2040669,196608 -g1,17663:6630773,30138256 -g1,17663:6630773,30138256 -g1,17663:6434165,30138256 -(1,17663:6434165,30138256:0,2040669,196608 -r1,17685:32779637,30138256:26345472,2237277,196608 -k1,17663:6434165,30138256:-26345472 -) -(1,17663:6434165,30138256:26345472,2040669,196608 -[1,17663:6630773,30138256:25952256,1844061,0 -(1,17659:6630773,28704713:25952256,410518,107478 -(1,17658:6630773,28704713:0,0,0 -g1,17658:6630773,28704713 -g1,17658:6630773,28704713 -g1,17658:6303093,28704713 -(1,17658:6303093,28704713:0,0,0 -) -g1,17658:6630773,28704713 -) -k1,17659:6630773,28704713:0 -g1,17659:10424522,28704713 -g1,17659:11056814,28704713 -g1,17659:13585980,28704713 -g1,17659:15482855,28704713 -g1,17659:16115147,28704713 -g1,17659:18012022,28704713 -g1,17659:18644314,28704713 -g1,17659:19276606,28704713 -g1,17659:20857335,28704713 -g1,17659:22754209,28704713 -g1,17659:23386501,28704713 -g1,17659:27812541,28704713 -h1,17659:28128687,28704713:0,0,0 -k1,17659:32583029,28704713:4454342 -g1,17659:32583029,28704713 -) -(1,17660:6630773,29370891:25952256,404226,107478 -h1,17660:6630773,29370891:0,0,0 -g1,17660:6946919,29370891 -g1,17660:7263065,29370891 -g1,17660:11372959,29370891 -h1,17660:11689105,29370891:0,0,0 -k1,17660:32583029,29370891:20893924 -g1,17660:32583029,29370891 -) -(1,17661:6630773,30037069:25952256,404226,101187 -h1,17661:6630773,30037069:0,0,0 -g1,17661:6946919,30037069 -g1,17661:7263065,30037069 -g1,17661:15482853,30037069 -g1,17661:16115145,30037069 -g1,17661:18012020,30037069 -g1,17661:19276603,30037069 -h1,17661:20541185,30037069:0,0,0 -k1,17661:32583029,30037069:12041844 -g1,17661:32583029,30037069 -) -] -) -g1,17663:32583029,30138256 -g1,17663:6630773,30138256 -g1,17663:6630773,30138256 -g1,17663:32583029,30138256 -g1,17663:32583029,30138256 -) -h1,17663:6630773,30334864:0,0,0 -(1,17667:6630773,31570255:25952256,505283,126483 -h1,17666:6630773,31570255:983040,0,0 -k1,17666:8273433,31570255:189727 -k1,17666:8994656,31570255:189726 -k1,17666:10470199,31570255:189727 -k1,17666:13289886,31570255:189727 -k1,17666:14131040,31570255:189726 -k1,17666:15413252,31570255:189727 -k1,17666:18907959,31570255:189726 -k1,17666:19783848,31570255:189727 -k1,17666:22346634,31570255:189727 -k1,17666:23733047,31570255:189726 -k1,17666:26897453,31570255:189727 -k1,17666:27618677,31570255:189727 -k1,17666:30564847,31570255:189726 -k1,17666:31563944,31570255:189727 -k1,17666:32583029,31570255:0 -) -(1,17667:6630773,32411743:25952256,513147,126483 -k1,17666:9423083,32411743:178079 -k1,17666:10260454,32411743:178079 -k1,17666:11457618,32411743:178079 -k1,17666:15550818,32411743:178079 -k1,17666:16546786,32411743:178079 -k1,17666:17743951,32411743:178080 -k1,17666:20738112,32411743:178079 -k1,17666:22429417,32411743:178079 -k1,17666:23293658,32411743:178079 -k1,17666:26113493,32411743:178079 -k1,17666:27283132,32411743:178079 -k1,17666:32583029,32411743:0 -) -(1,17667:6630773,33253231:25952256,513147,134348 -g1,17666:7698354,33253231 -g1,17666:10780512,33253231 -g1,17666:11998826,33253231 -g1,17666:14463635,33253231 -g1,17666:16421195,33253231 -g1,17666:17303309,33253231 -k1,17667:32583029,33253231:14005045 -g1,17667:32583029,33253231 -) -v1,17669:6630773,34313312:0,393216,0 -(1,17675:6630773,35967056:25952256,2046960,196608 -g1,17675:6630773,35967056 -g1,17675:6630773,35967056 -g1,17675:6434165,35967056 -(1,17675:6434165,35967056:0,2046960,196608 -r1,17685:32779637,35967056:26345472,2243568,196608 -k1,17675:6434165,35967056:-26345472 -) -(1,17675:6434165,35967056:26345472,2046960,196608 -[1,17675:6630773,35967056:25952256,1850352,0 -(1,17671:6630773,34527222:25952256,410518,107478 -(1,17670:6630773,34527222:0,0,0 -g1,17670:6630773,34527222 -g1,17670:6630773,34527222 -g1,17670:6303093,34527222 -(1,17670:6303093,34527222:0,0,0 -) -g1,17670:6630773,34527222 -) -k1,17671:6630773,34527222:0 -g1,17671:10424522,34527222 -g1,17671:11056814,34527222 -g1,17671:13585980,34527222 -g1,17671:15482855,34527222 -g1,17671:16115147,34527222 -g1,17671:18012022,34527222 -g1,17671:18644314,34527222 -g1,17671:19276606,34527222 -g1,17671:20857335,34527222 -g1,17671:22754209,34527222 -g1,17671:23386501,34527222 -g1,17671:27812541,34527222 -h1,17671:28128687,34527222:0,0,0 -k1,17671:32583029,34527222:4454342 -g1,17671:32583029,34527222 -) -(1,17672:6630773,35193400:25952256,404226,107478 -h1,17672:6630773,35193400:0,0,0 -g1,17672:6946919,35193400 -g1,17672:7263065,35193400 -g1,17672:12321397,35193400 -g1,17672:12953689,35193400 -g1,17672:14534418,35193400 -h1,17672:14850564,35193400:0,0,0 -k1,17672:32583028,35193400:17732464 -g1,17672:32583028,35193400 -) -(1,17673:6630773,35859578:25952256,404226,107478 -h1,17673:6630773,35859578:0,0,0 -g1,17673:6946919,35859578 -g1,17673:7263065,35859578 -g1,17673:15482853,35859578 -g1,17673:16115145,35859578 -g1,17673:18328166,35859578 -g1,17673:19908895,35859578 -g1,17673:21805770,35859578 -g1,17673:23702644,35859578 -g1,17673:24334936,35859578 -h1,17673:26547956,35859578:0,0,0 -k1,17673:32583029,35859578:6035073 -g1,17673:32583029,35859578 -) -] -) -g1,17675:32583029,35967056 -g1,17675:6630773,35967056 -g1,17675:6630773,35967056 -g1,17675:32583029,35967056 -g1,17675:32583029,35967056 -) -h1,17675:6630773,36163664:0,0,0 -(1,17678:6630773,45706769:25952256,9083666,0 -k1,17678:10523651,45706769:3892878 -h1,17677:10523651,45706769:0,0,0 -(1,17677:10523651,45706769:18166500,9083666,0 -(1,17677:10523651,45706769:18167376,9083688,0 -(1,17677:10523651,45706769:18167376,9083688,0 -(1,17677:10523651,45706769:0,9083688,0 -(1,17677:10523651,45706769:0,14208860,0 -(1,17677:10523651,45706769:28417720,14208860,0 -) -k1,17677:10523651,45706769:-28417720 -) -) -g1,17677:28691027,45706769 -) -) -) -g1,17678:28690151,45706769 -k1,17678:32583029,45706769:3892878 -) -] -(1,17685:32583029,45706769:0,0,0 -g1,17685:32583029,45706769 -) -) -] -(1,17685:6630773,47279633:25952256,0,0 -h1,17685:6630773,47279633:25952256,0,0 -) -] -(1,17685:4262630,4025873:0,0,0 -[1,17685:-473656,4025873:0,0,0 -(1,17685:-473656,-710413:0,0,0 -(1,17685:-473656,-710413:0,0,0 -g1,17685:-473656,-710413 +[1,17704:3078558,4812305:0,0,0 +(1,17704:3078558,49800853:0,16384,2228224 +k1,17704:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,17704:2537886,49800853:1179648,16384,0 ) -g1,17685:-473656,-710413 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,17704:3078558,51504789:16384,1179648,0 ) -] -) -] -!21562 -}308 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 +) +] +) +) +) +] +[1,17704:3078558,4812305:0,0,0 +(1,17704:3078558,49800853:0,16384,2228224 +g1,17704:29030814,49800853 +g1,17704:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,17704:36151628,51504789:16384,1179648,0 +) +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 +) +] +) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,17704:37855564,49800853:1179648,16384,0 +) +) +k1,17704:3078556,49800853:-34777008 +) +] +g1,17704:6630773,4812305 +g1,17704:6630773,4812305 +g1,17704:8017514,4812305 +g1,17704:11261546,4812305 +g1,17704:12076813,4812305 +g1,17704:14985956,4812305 +k1,17704:31387652,4812305:16401696 +) +) +] +[1,17704:6630773,45706769:25952256,40108032,0 +(1,17704:6630773,45706769:25952256,40108032,0 +(1,17704:6630773,45706769:0,0,0 +g1,17704:6630773,45706769 +) +[1,17704:6630773,45706769:25952256,40108032,0 +v1,17676:6630773,6254097:0,393216,0 +(1,17676:6630773,7931460:25952256,2070579,196608 +g1,17676:6630773,7931460 +g1,17676:6630773,7931460 +g1,17676:6434165,7931460 +(1,17676:6434165,7931460:0,2070579,196608 +r1,17704:32779637,7931460:26345472,2267187,196608 +k1,17676:6434165,7931460:-26345472 +) +(1,17676:6434165,7931460:26345472,2070579,196608 +[1,17676:6630773,7931460:25952256,1873971,0 +(1,17672:6630773,6481928:25952256,424439,112852 +h1,17672:6630773,6481928:0,0,0 +g1,17672:6962727,6481928 +g1,17672:7294681,6481928 +g1,17672:12605944,6481928 +g1,17672:13269852,6481928 +g1,17672:14265714,6481928 +h1,17672:14597668,6481928:0,0,0 +k1,17672:32583028,6481928:17985360 +g1,17672:32583028,6481928 +) +(1,17673:6630773,7166783:25952256,424439,112852 +h1,17673:6630773,7166783:0,0,0 +g1,17673:6962727,7166783 +g1,17673:7294681,7166783 +g1,17673:12605944,7166783 +g1,17673:13269852,7166783 +g1,17673:13933760,7166783 +g1,17673:15261576,7166783 +g1,17673:18249162,7166783 +g1,17673:18913070,7166783 +g1,17673:19908932,7166783 +g1,17673:21236748,7166783 +g1,17673:22232610,7166783 +g1,17673:23560426,7166783 +g1,17673:25552150,7166783 +g1,17673:26216058,7166783 +k1,17673:26216058,7166783:0 +h1,17673:29203643,7166783:0,0,0 +k1,17673:32583029,7166783:3379386 +g1,17673:32583029,7166783 +) +(1,17674:6630773,7851638:25952256,424439,79822 +h1,17674:6630773,7851638:0,0,0 +g1,17674:6962727,7851638 +g1,17674:7294681,7851638 +g1,17674:7626635,7851638 +g1,17674:7958589,7851638 +g1,17674:8290543,7851638 +g1,17674:8622497,7851638 +g1,17674:8954451,7851638 +g1,17674:9286405,7851638 +g1,17674:9618359,7851638 +g1,17674:9950313,7851638 +g1,17674:10282267,7851638 +g1,17674:10614221,7851638 +g1,17674:10946175,7851638 +g1,17674:12605945,7851638 +g1,17674:13269853,7851638 +h1,17674:14597669,7851638:0,0,0 +k1,17674:32583029,7851638:17985360 +g1,17674:32583029,7851638 +) +] +) +g1,17676:32583029,7931460 +g1,17676:6630773,7931460 +g1,17676:6630773,7931460 +g1,17676:32583029,7931460 +g1,17676:32583029,7931460 +) +h1,17676:6630773,8128068:0,0,0 +v1,17680:6630773,8993148:0,393216,0 +(1,17681:6630773,15364869:25952256,6764937,0 +g1,17681:6630773,15364869 +g1,17681:6237557,15364869 +r1,17704:6368629,15364869:131072,6764937,0 +g1,17681:6567858,15364869 +g1,17681:6764466,15364869 +[1,17681:6764466,15364869:25818563,6764937,0 +(1,17681:6764466,9301446:25818563,701514,196608 +(1,17680:6764466,9301446:0,701514,196608 +r1,17704:8010564,9301446:1246098,898122,196608 +k1,17680:6764466,9301446:-1246098 +) +(1,17680:6764466,9301446:1246098,701514,196608 +) +k1,17680:8270393,9301446:259829 +k1,17680:8598073,9301446:327680 +k1,17680:10203355,9301446:259828 +k1,17680:13284509,9301446:259829 +k1,17680:14203630,9301446:259829 +k1,17680:17305099,9301446:259828 +k1,17680:18216356,9301446:259829 +k1,17680:21650749,9301446:259829 +k1,17680:23011582,9301446:259828 +k1,17680:24781361,9301446:259829 +k1,17680:27671150,9301446:259829 +k1,17680:28547016,9301446:259828 +k1,17680:31635378,9301446:259829 +k1,17680:32583029,9301446:0 +) +(1,17681:6764466,10166526:25818563,513147,134348 +k1,17680:7361804,10166526:241478 +k1,17680:8991991,10166526:241479 +k1,17680:10658877,10166526:241478 +k1,17680:12635748,10166526:241478 +k1,17680:13563389,10166526:241479 +k1,17680:16494465,10166526:241478 +k1,17680:19812203,10166526:241478 +k1,17680:20712974,10166526:241479 +k1,17680:21973537,10166526:241478 +k1,17680:23953030,10166526:241478 +k1,17680:24853801,10166526:241479 +k1,17680:25451139,10166526:241478 +k1,17680:28203957,10166526:241478 +k1,17680:31224163,10166526:241479 +k1,17680:32227169,10166526:241478 +k1,17680:32583029,10166526:0 +) +(1,17681:6764466,11031606:25818563,505283,134348 +k1,17680:9556609,11031606:269007 +k1,17680:12460818,11031606:269006 +(1,17680:12460818,11031606:0,414482,115847 +r1,17704:13170796,11031606:709978,530329,115847 +k1,17680:12460818,11031606:-709978 +) +(1,17680:12460818,11031606:709978,414482,115847 +k1,17680:12460818,11031606:3277 +h1,17680:13167519,11031606:0,411205,112570 +) +k1,17680:13613473,11031606:269007 +k1,17680:14954648,11031606:269006 +k1,17680:16426896,11031606:269007 +k1,17680:19385500,11031606:269006 +k1,17680:20755512,11031606:269007 +k1,17680:22534468,11031606:269006 +k1,17680:26342419,11031606:269007 +k1,17680:28303565,11031606:269006 +k1,17680:29997980,11031606:269007 +k1,17680:31391584,11031606:269006 +k1,17680:32583029,11031606:0 +) +(1,17681:6764466,11896686:25818563,505283,126483 +k1,17680:9694227,11896686:210672 +k1,17680:10666427,11896686:210672 +(1,17680:10666427,11896686:0,452978,115847 +r1,17704:12783252,11896686:2116825,568825,115847 +k1,17680:10666427,11896686:-2116825 +) +(1,17680:10666427,11896686:2116825,452978,115847 +k1,17680:10666427,11896686:3277 +h1,17680:12779975,11896686:0,411205,112570 +) +k1,17680:13167594,11896686:210672 +k1,17680:14006101,11896686:210672 +k1,17680:15683469,11896686:210672 +k1,17680:17765194,11896686:210672 +k1,17680:19179108,11896686:210673 +k1,17680:22124597,11896686:210672 +k1,17680:22691129,11896686:210672 +k1,17680:26183189,11896686:210672 +k1,17680:26851958,11896686:210672 +k1,17680:28269803,11896686:210672 +k1,17680:31931601,11896686:210672 +k1,17680:32583029,11896686:0 +) +(1,17681:6764466,12761766:25818563,505283,126483 +k1,17680:8428659,12761766:267621 +k1,17680:9052140,12761766:267621 +k1,17680:12528403,12761766:267620 +k1,17680:15307364,12761766:267621 +k1,17680:16226413,12761766:267621 +k1,17680:17513119,12761766:267621 +k1,17680:19434213,12761766:267621 +k1,17680:22546096,12761766:267620 +k1,17680:23499879,12761766:267621 +k1,17680:25476024,12761766:267621 +k1,17680:26395073,12761766:267621 +k1,17680:27681778,12761766:267620 +k1,17680:30472535,12761766:267621 +k1,17680:31931601,12761766:267621 +k1,17680:32583029,12761766:0 +) +(1,17681:6764466,13626846:25818563,505283,134348 +k1,17680:7957121,13626846:173570 +k1,17680:11120442,13626846:173569 +k1,17680:11910050,13626846:173570 +k1,17680:13102704,13626846:173569 +k1,17680:14929747,13626846:173570 +k1,17680:16834778,13626846:173570 +k1,17680:18840734,13626846:173569 +k1,17680:20518355,13626846:173570 +k1,17680:21977741,13626846:173570 +k1,17680:23843450,13626846:173569 +k1,17680:25718990,13626846:173570 +k1,17680:27924175,13626846:173569 +k1,17680:29382251,13626846:173570 +k1,17680:32583029,13626846:0 +) +(1,17681:6764466,14491926:25818563,513147,134348 +k1,17680:9466788,14491926:274868 +k1,17680:11433797,14491926:274869 +k1,17680:15111294,14491926:274868 +k1,17680:16037591,14491926:274869 +k1,17680:17331544,14491926:274868 +k1,17680:20596165,14491926:274869 +k1,17680:23429559,14491926:274868 +k1,17680:24723512,14491926:274868 +k1,17680:26400851,14491926:274869 +(1,17680:26400851,14491926:0,414482,115847 +r1,17704:27462540,14491926:1061689,530329,115847 +k1,17680:26400851,14491926:-1061689 +) +(1,17680:26400851,14491926:1061689,414482,115847 +k1,17680:26400851,14491926:3277 +h1,17680:27459263,14491926:0,411205,112570 +) +k1,17680:27737408,14491926:274868 +k1,17680:31293009,14491926:274869 +k1,17680:32227169,14491926:274868 +k1,17680:32583029,14491926:0 +) +(1,17681:6764466,15357006:25818563,473825,7863 +k1,17681:32583029,15357006:23121756 +g1,17681:32583029,15357006 +) +] +g1,17681:32583029,15364869 +) +h1,17681:6630773,15364869:0,0,0 +(1,17685:6630773,16229949:25952256,513147,134348 +h1,17683:6630773,16229949:983040,0,0 +k1,17683:9502779,16229949:236803 +k1,17683:12073320,16229949:236804 +k1,17683:13852841,16229949:236803 +k1,17683:14748936,16229949:236803 +k1,17683:17814273,16229949:236804 +k1,17683:19070161,16229949:236803 +k1,17683:21391009,16229949:236803 +k1,17683:23141039,16229949:236804 +k1,17683:24325493,16229949:236803 +k1,17683:27369858,16229949:236803 +k1,17683:30448303,16229949:236804 +k1,17683:31336534,16229949:236803 +k1,17685:32583029,16229949:0 +) +(1,17685:6630773,17095029:25952256,513147,122846 +k1,17683:8992586,17095029:220752 +k1,17683:9744835,17095029:220752 +k1,17683:11820256,17095029:220752 +k1,17683:12850378,17095029:220752 +k1,17683:16096927,17095029:220752 +(1,17683:16096927,17095029:0,452978,122846 +r1,17704:18565464,17095029:2468537,575824,122846 +k1,17683:16096927,17095029:-2468537 +) +(1,17683:16096927,17095029:2468537,452978,122846 +k1,17683:16096927,17095029:3277 +h1,17683:18562187,17095029:0,411205,112570 +) +k1,17683:18959886,17095029:220752 +(1,17683:18959886,17095029:0,459977,115847 +r1,17704:23186982,17095029:4227096,575824,115847 +k1,17683:18959886,17095029:-4227096 +) +(1,17683:18959886,17095029:4227096,459977,115847 +k1,17683:18959886,17095029:3277 +h1,17683:23183705,17095029:0,411205,112570 +) +k1,17683:23407734,17095029:220752 +k1,17683:24819931,17095029:220752 +(1,17683:24819931,17095029:0,459977,115847 +r1,17704:29398739,17095029:4578808,575824,115847 +k1,17683:24819931,17095029:-4578808 +) +(1,17683:24819931,17095029:4578808,459977,115847 +k1,17683:24819931,17095029:3277 +h1,17683:29395462,17095029:0,411205,112570 +) +k1,17683:29793161,17095029:220752 +k1,17685:32583029,17095029:0 +) +(1,17685:6630773,17960109:25952256,513147,134348 +(1,17683:6630773,17960109:0,459977,115847 +r1,17704:10857869,17960109:4227096,575824,115847 +k1,17683:6630773,17960109:-4227096 +) +(1,17683:6630773,17960109:4227096,459977,115847 +k1,17683:6630773,17960109:3277 +h1,17683:10854592,17960109:0,411205,112570 +) +k1,17683:11064832,17960109:206963 +k1,17683:13900444,17960109:206963 +(1,17683:13900444,17960109:0,452978,115847 +r1,17704:16017269,17960109:2116825,568825,115847 +k1,17683:13900444,17960109:-2116825 +) +(1,17683:13900444,17960109:2116825,452978,115847 +k1,17683:13900444,17960109:3277 +h1,17683:16013992,17960109:0,411205,112570 +) +k1,17683:16224232,17960109:206963 +k1,17683:17622640,17960109:206963 +k1,17683:18848688,17960109:206963 +(1,17683:18848688,17960109:0,414482,115847 +r1,17704:19558666,17960109:709978,530329,115847 +k1,17683:18848688,17960109:-709978 +) +(1,17683:18848688,17960109:709978,414482,115847 +k1,17683:18848688,17960109:3277 +h1,17683:19555389,17960109:0,411205,112570 +) +k1,17683:19765629,17960109:206963 +k1,17683:22835859,17960109:206962 +k1,17683:23860711,17960109:206963 +k1,17683:26143199,17960109:206963 +k1,17683:26966200,17960109:206963 +k1,17683:28192248,17960109:206963 +k1,17683:31015408,17960109:206963 +k1,17683:32583029,17960109:0 +) +(1,17685:6630773,18825189:25952256,505283,134348 +g1,17683:9108689,18825189 +h1,17683:10079277,18825189:0,0,0 +g1,17683:10278506,18825189 +g1,17683:11287105,18825189 +g1,17683:12984487,18825189 +h1,17683:14179864,18825189:0,0,0 +g1,17683:14552763,18825189 +g1,17683:18428562,18825189 +g1,17683:20199344,18825189 +g1,17683:23245457,18825189 +g1,17683:25963890,18825189 +g1,17683:26779157,18825189 +g1,17683:28633170,18825189 +k1,17683:32583029,18825189:1783239 +g1,17685:32583029,18825189 +) +(1,17685:6630773,20107077:25952256,454754,120913 +g1,17684:8060506,20107077 +$1,17684:8060506,20107077 +$1,17684:8668025,20107077 +g1,17684:8854409,20107077 +g1,17684:9995128,20107077 +$1,17684:9995128,20107077 +$1,17684:10602647,20107077 +g1,17684:10789031,20107077 +g1,17684:12042407,20107077 +$1,17684:12042407,20107077 +$1,17684:12649926,20107077 +g1,17684:12836310,20107077 +g1,17684:13977029,20107077 +$1,17684:13977029,20107077 +$1,17684:14584548,20107077 +g1,17684:14770932,20107077 +g1,17684:16566356,20107077 +$1,17684:16566356,20107077 +$1,17684:17173875,20107077 +g1,17684:17360259,20107077 +g1,17684:18973427,20107077 +$1,17684:18973427,20107077 +$1,17684:19580946,20107077 +g1,17684:19767330,20107077 +g1,17684:20908049,20107077 +$1,17684:20908049,20107077 +$1,17684:21515568,20107077 +g1,17684:21701952,20107077 +g1,17684:24938316,20107077 +$1,17684:24938316,20107077 +$1,17684:25545835,20107077 +g1,17684:25732219,20107077 +g1,17684:27712848,20107077 +$1,17684:27712848,20107077 +$1,17684:28320367,20107077 +g1,17684:28506751,20107077 +g1,17684:30499176,20107077 +k1,17685:32583029,20107077:332666 +g1,17685:32583029,20107077 +) +(1,17687:6630773,20972157:25952256,513147,134348 +h1,17686:6630773,20972157:983040,0,0 +k1,17686:10736872,20972157:180492 +k1,17686:11533402,20972157:180492 +k1,17686:12732979,20972157:180492 +k1,17686:14302834,20972157:180492 +k1,17686:16359622,20972157:180492 +k1,17686:18745401,20972157:180492 +k1,17686:19612056,20972157:180493 +k1,17686:22864876,20972157:180492 +k1,17686:23696796,20972157:180492 +(1,17686:23696796,20972157:0,452978,115847 +r1,17704:25110197,20972157:1413401,568825,115847 +k1,17686:23696796,20972157:-1413401 +) +(1,17686:23696796,20972157:1413401,452978,115847 +k1,17686:23696796,20972157:3277 +h1,17686:25106920,20972157:0,411205,112570 +) +k1,17686:25290689,20972157:180492 +k1,17686:26462741,20972157:180492 +k1,17686:29228628,20972157:180492 +k1,17686:30060548,20972157:180492 +k1,17687:32583029,20972157:0 +) +(1,17687:6630773,21837237:25952256,513147,126483 +k1,17686:7686173,21837237:190325 +k1,17686:9919255,21837237:190325 +k1,17686:11489768,21837237:190325 +k1,17686:12671653,21837237:190325 +k1,17686:15505045,21837237:190325 +k1,17686:16381532,21837237:190325 +k1,17686:18280382,21837237:190326 +k1,17686:19232235,21837237:190325 +k1,17686:19778420,21837237:190325 +k1,17686:22491881,21837237:190325 +k1,17686:25533022,21837237:190325 +(1,17686:25533022,21837237:0,452978,115847 +r1,17704:30815253,21837237:5282231,568825,115847 +k1,17686:25533022,21837237:-5282231 +) +(1,17686:25533022,21837237:5282231,452978,115847 +k1,17686:25533022,21837237:3277 +h1,17686:30811976,21837237:0,411205,112570 +) +k1,17686:31386342,21837237:190325 +k1,17686:32583029,21837237:0 +) +(1,17687:6630773,22702317:25952256,513147,134348 +k1,17686:9956444,22702317:187807 +k1,17686:10803544,22702317:187808 +k1,17686:13832992,22702317:187807 +k1,17686:14636837,22702317:187807 +k1,17686:15843729,22702317:187807 +k1,17686:17420900,22702317:187808 +k1,17686:19485003,22702317:187807 +k1,17686:22451537,22702317:187807 +k1,17686:23400873,22702317:187808 +k1,17686:26442118,22702317:187807 +k1,17686:27621485,22702317:187807 +k1,17686:28828377,22702317:187807 +k1,17686:30724709,22702317:187808 +k1,17686:31563944,22702317:187807 +k1,17686:32583029,22702317:0 +) +(1,17687:6630773,23567397:25952256,513147,134348 +k1,17686:9951810,23567397:157614 +k1,17686:12030940,23567397:157614 +k1,17686:15041991,23567397:157613 +k1,17686:16484111,23567397:157614 +k1,17686:19052795,23567397:157614 +k1,17686:20019779,23567397:157614 +k1,17686:20541774,23567397:157614 +k1,17686:22909262,23567397:157614 +(1,17686:22909262,23567397:361103,347341,126483 +) +k1,17686:23427978,23567397:157613 +k1,17686:25596237,23567397:157614 +k1,17686:26109711,23567397:157614 +k1,17686:30249292,23567397:157614 +k1,17686:32583029,23567397:0 +) +(1,17687:6630773,24432477:25952256,513147,126483 +k1,17686:7526213,24432477:236148 +k1,17686:9459088,24432477:236148 +k1,17686:12710548,24432477:236149 +k1,17686:13708224,24432477:236148 +k1,17686:16209952,24432477:236148 +k1,17686:17731916,24432477:236148 +k1,17686:20553459,24432477:236148 +k1,17686:21441035,24432477:236148 +k1,17686:23373911,24432477:236149 +k1,17686:26958293,24432477:236148 +k1,17686:30129143,24432477:236148 +k1,17686:30981329,24432477:236148 +k1,17686:32583029,24432477:0 +) +(1,17687:6630773,25297557:25952256,505283,126483 +k1,17686:8495067,25297557:166912 +k1,17686:10363950,25297557:166913 +k1,17686:13372503,25297557:166912 +k1,17686:14155453,25297557:166912 +k1,17686:16988371,25297557:166913 +k1,17686:17806711,25297557:166912 +k1,17686:18338004,25297557:166912 +k1,17686:20714791,25297557:166913 +(1,17686:20714791,25297557:361103,347341,126483 +) +k1,17686:21242806,25297557:166912 +k1,17686:22401278,25297557:166912 +k1,17686:25326601,25297557:166913 +k1,17686:26109551,25297557:166912 +k1,17686:27295548,25297557:166912 +(1,17686:27295548,25297557:0,452978,115847 +r1,17704:28708949,25297557:1413401,568825,115847 +k1,17686:27295548,25297557:-1413401 +) +(1,17686:27295548,25297557:1413401,452978,115847 +k1,17686:27295548,25297557:3277 +h1,17686:28705672,25297557:0,411205,112570 +) +k1,17686:28875862,25297557:166913 +k1,17686:31821501,25297557:166912 +k1,17686:32583029,25297557:0 +) +(1,17687:6630773,26162637:25952256,513147,134348 +k1,17686:7191215,26162637:204582 +k1,17686:9940559,26162637:204581 +k1,17686:13108024,26162637:204582 +k1,17686:14821244,26162637:204581 +k1,17686:17291406,26162637:204582 +k1,17686:20303549,26162637:204581 +k1,17686:21039628,26162637:204582 +k1,17686:23161137,26162637:204581 +k1,17686:23981757,26162637:204582 +k1,17686:25205423,26162637:204581 +k1,17686:27933141,26162637:204582 +k1,17686:31337190,26162637:204581 +k1,17687:32583029,26162637:0 +) +(1,17687:6630773,27027717:25952256,513147,134348 +k1,17686:9414926,27027717:195481 +k1,17686:10629492,27027717:195481 +k1,17686:12205818,27027717:195482 +k1,17686:13505581,27027717:195481 +k1,17686:15963365,27027717:195481 +k1,17686:17362087,27027717:195481 +k1,17686:19823149,27027717:195482 +k1,17686:22826192,27027717:195481 +k1,17686:25919020,27027717:195481 +k1,17686:28124490,27027717:195481 +k1,17686:28675832,27027717:195482 +k1,17686:29971007,27027717:195481 +k1,17686:30817916,27027717:195481 +(1,17686:30817916,27027717:0,452978,115847 +r1,17704:32583029,27027717:1765113,568825,115847 +k1,17686:30817916,27027717:-1765113 +) +(1,17686:30817916,27027717:1765113,452978,115847 +k1,17686:30817916,27027717:3277 +h1,17686:32579752,27027717:0,411205,112570 +) +k1,17686:32583029,27027717:0 +) +(1,17687:6630773,27892797:25952256,513147,134348 +k1,17686:8610285,27892797:244119 +(1,17686:8610285,27892797:0,459977,115847 +r1,17704:12837381,27892797:4227096,575824,115847 +k1,17686:8610285,27892797:-4227096 +) +(1,17686:8610285,27892797:4227096,459977,115847 +k1,17686:8610285,27892797:3277 +h1,17686:12834104,27892797:0,411205,112570 +) +k1,17686:13255170,27892797:244119 +k1,17686:15384761,27892797:244120 +k1,17686:16768551,27892797:244119 +k1,17686:17757814,27892797:244119 +k1,17686:21925573,27892797:244119 +k1,17686:24804895,27892797:244119 +k1,17686:26068100,27892797:244120 +k1,17686:27701582,27892797:244119 +k1,17686:29821997,27892797:244119 +k1,17686:32583029,27892797:0 +) +(1,17687:6630773,28757877:25952256,505283,134348 +k1,17686:7617792,28757877:225491 +k1,17686:8862367,28757877:225490 +k1,17686:10468702,28757877:225491 +k1,17686:11885637,28757877:225490 +k1,17686:13395634,28757877:225491 +k1,17686:16399851,28757877:225490 +k1,17686:17386870,28757877:225491 +k1,17686:18631445,28757877:225490 +k1,17686:21553743,28757877:225491 +k1,17686:22975920,28757877:225490 +k1,17686:24783450,28757877:225491 +k1,17686:26673554,28757877:225490 +k1,17686:28106218,28757877:225491 +k1,17686:29397979,28757877:225490 +k1,17686:32583029,28757877:0 +) +(1,17687:6630773,29622957:25952256,513147,134348 +k1,17686:7424632,29622957:177821 +k1,17686:9636035,29622957:177821 +k1,17686:12477895,29622957:177821 +k1,17686:13315008,29622957:177821 +k1,17686:16495032,29622957:177821 +k1,17686:17745022,29622957:177821 +k1,17686:19209970,29622957:177821 +k1,17686:20047083,29622957:177821 +k1,17686:22255865,29622957:177821 +k1,17686:23640859,29622957:177821 +k1,17686:26105887,29622957:177821 +k1,17686:27349979,29622957:177821 +k1,17686:32583029,29622957:0 +) +(1,17687:6630773,30488037:25952256,505283,134348 +g1,17686:8237715,30488037 +g1,17686:9640185,30488037 +g1,17686:11421453,30488037 +g1,17686:13285296,30488037 +g1,17686:14588807,30488037 +g1,17686:15535802,30488037 +g1,17686:18534074,30488037 +g1,17686:20127254,30488037 +(1,17686:20127254,30488037:0,459977,115847 +r1,17704:24706062,30488037:4578808,575824,115847 +k1,17686:20127254,30488037:-4578808 +) +(1,17686:20127254,30488037:4578808,459977,115847 +k1,17686:20127254,30488037:3277 +h1,17686:24702785,30488037:0,411205,112570 +) +g1,17686:24905291,30488037 +g1,17686:27463161,30488037 +g1,17686:29801485,30488037 +k1,17687:32583029,30488037:194838 +g1,17687:32583029,30488037 +) +(1,17689:6630773,31353117:25952256,513147,134348 +h1,17688:6630773,31353117:983040,0,0 +k1,17688:11318181,31353117:137243 +k1,17688:16622938,31353117:137243 +k1,17688:17419474,31353117:137244 +k1,17688:18575802,31353117:137243 +k1,17688:20102408,31353117:137243 +k1,17688:21231211,31353117:137243 +k1,17688:22703423,31353117:137244 +k1,17688:25420163,31353117:137243 +k1,17688:26170168,31353117:137243 +k1,17688:27326496,31353117:137243 +k1,17688:29045779,31353117:137244 +k1,17688:30847636,31353117:137243 +k1,17688:32583029,31353117:0 +) +(1,17689:6630773,32218197:25952256,513147,134348 +k1,17688:8344003,32218197:141021 +k1,17688:13826209,32218197:141022 +k1,17688:16901932,32218197:141021 +k1,17688:18740991,32218197:141021 +k1,17688:19901098,32218197:141022 +k1,17688:22944709,32218197:141021 +k1,17688:23617228,32218197:141022 +k1,17688:24409677,32218197:141021 +k1,17688:26611150,32218197:141021 +k1,17688:29047243,32218197:141022 +k1,17688:29871149,32218197:141021 +k1,17688:32583029,32218197:0 +) +(1,17689:6630773,33083277:25952256,513147,126483 +k1,17688:9673173,33083277:280057 +k1,17688:13161873,33083277:280057 +k1,17688:16283571,33083277:280057 +k1,17688:19342355,33083277:280057 +k1,17688:20383940,33083277:280057 +k1,17688:21019858,33083277:280058 +k1,17688:23823051,33083277:280057 +k1,17688:24971460,33083277:280057 +k1,17688:26781783,33083277:280057 +k1,17688:27713268,33083277:280057 +k1,17688:28927868,33083277:280057 +k1,17688:30227010,33083277:280057 +k1,17688:32583029,33083277:0 +) +(1,17689:6630773,33948357:25952256,513147,134348 +k1,17688:9628498,33948357:190163 +k1,17688:10477954,33948357:190164 +k1,17688:13103435,33948357:190163 +k1,17688:14485044,33948357:190164 +k1,17688:17883850,33948357:190163 +k1,17688:20915655,33948357:190164 +k1,17688:21757246,33948357:190163 +k1,17688:25121974,33948357:190164 +k1,17688:25924899,33948357:190163 +k1,17688:27765260,33948357:190164 +k1,17688:29397870,33948357:190163 +k1,17688:30744744,33948357:190164 +k1,17689:32583029,33948357:0 +k1,17689:32583029,33948357:0 +) +(1,17691:6630773,34813437:25952256,513147,134348 +h1,17690:6630773,34813437:983040,0,0 +k1,17690:8989354,34813437:178854 +k1,17690:13994278,34813437:178853 +k1,17690:14832424,34813437:178854 +k1,17690:17839811,34813437:178854 +k1,17690:19628885,34813437:178854 +k1,17690:22039239,34813437:178853 +k1,17690:23802098,34813437:178854 +k1,17690:26972671,34813437:178854 +k1,17690:27810817,34813437:178854 +k1,17690:29687052,34813437:178853 +k1,17690:31563944,34813437:178854 +k1,17690:32583029,34813437:0 +) +(1,17691:6630773,35678517:25952256,513147,134348 +k1,17690:8182062,35678517:268094 +k1,17690:10534201,35678517:268094 +k1,17690:11333792,35678517:268094 +k1,17690:13752778,35678517:268094 +k1,17690:14233795,35678517:268025 +k1,17690:15781807,35678517:268094 +k1,17690:17447783,35678517:268093 +k1,17690:18071737,35678517:268094 +k1,17690:21102174,35678517:268094 +k1,17690:24205355,35678517:268094 +k1,17690:25426998,35678517:268094 +k1,17690:26382565,35678517:268094 +k1,17690:27006519,35678517:268094 +k1,17690:30847636,35678517:268094 +k1,17691:32583029,35678517:0 +) +(1,17691:6630773,36543597:25952256,513147,134348 +(1,17690:6630773,36543597:0,452978,115847 +r1,17704:8395886,36543597:1765113,568825,115847 +k1,17690:6630773,36543597:-1765113 +) +(1,17690:6630773,36543597:1765113,452978,115847 +k1,17690:6630773,36543597:3277 +h1,17690:8392609,36543597:0,411205,112570 +) +k1,17690:8706094,36543597:136538 +k1,17690:10216205,36543597:136476 +k1,17690:10884240,36543597:136538 +k1,17690:11376637,36543597:136537 +k1,17690:14769004,36543597:136538 +k1,17690:16190048,36543597:136538 +k1,17690:20643443,36543597:136538 +k1,17690:23116995,36543597:136538 +k1,17690:25296290,36543597:136538 +k1,17690:28863638,36543597:136538 +k1,17690:30019261,36543597:136538 +k1,17690:32583029,36543597:0 +) +(1,17691:6630773,37408677:25952256,513147,134348 +k1,17690:8547650,37408677:221461 +k1,17690:9428403,37408677:221461 +k1,17690:12294898,37408677:221462 +k1,17690:14962163,37408677:221461 +k1,17690:15835052,37408677:221461 +k1,17690:17075598,37408677:221461 +k1,17690:20489974,37408677:221462 +k1,17690:23605505,37408677:221461 +k1,17690:24443004,37408677:221461 +k1,17690:25435168,37408677:221461 +k1,17690:28171246,37408677:221462 +k1,17690:29044135,37408677:221461 +k1,17690:31563944,37408677:221461 +k1,17690:32583029,37408677:0 +) +(1,17691:6630773,38273757:25952256,513147,134348 +k1,17690:9996047,38273757:228721 +k1,17690:10912240,38273757:228720 +k1,17690:12708582,38273757:228721 +k1,17690:13956387,38273757:228720 +k1,17690:17093596,38273757:228721 +k1,17690:17981608,38273757:228720 +k1,17690:20782617,38273757:228721 +k1,17690:25083089,38273757:228720 +k1,17690:25994695,38273757:228721 +k1,17690:28835680,38273757:228720 +k1,17690:30847636,38273757:228721 +k1,17690:32583029,38273757:0 +) +(1,17691:6630773,39138837:25952256,513147,134348 +k1,17690:8087123,39138837:253109 +k1,17690:9531677,39138837:253109 +k1,17690:11986796,39138837:253109 +k1,17690:15024531,39138837:253110 +k1,17690:15735737,39138837:253109 +k1,17690:16520343,39138837:253109 +k1,17690:17432744,39138837:253109 +k1,17690:20129035,39138837:253109 +k1,17690:21033572,39138837:253109 +k1,17690:22563978,39138837:253109 +k1,17690:23836173,39138837:253110 +k1,17690:26983352,39138837:253109 +k1,17690:29916884,39138837:253109 +k1,17690:31563944,39138837:253109 +k1,17690:32583029,39138837:0 +) +(1,17691:6630773,40003917:25952256,513147,134348 +k1,17690:9410813,40003917:160566 +k1,17690:10058928,40003917:160527 +k1,17690:12958244,40003917:160566 +k1,17690:16103320,40003917:160566 +k1,17690:16795383,40003917:160566 +k1,17690:17607377,40003917:160566 +k1,17690:19164515,40003917:160566 +k1,17690:21770885,40003917:160566 +k1,17690:22582879,40003917:160566 +k1,17690:23099305,40003917:160566 +k1,17690:25919322,40003917:160566 +k1,17690:28715091,40003917:160566 +k1,17690:30048096,40003917:160566 +k1,17690:32583029,40003917:0 +) +(1,17691:6630773,40868997:25952256,513147,134348 +g1,17690:7783551,40868997 +g1,17690:9471103,40868997 +g1,17690:10431860,40868997 +g1,17690:14006193,40868997 +g1,17690:15897562,40868997 +g1,17690:18725440,40868997 +g1,17690:20314032,40868997 +g1,17690:23875258,40868997 +k1,17691:32583029,40868997:6095506 +g1,17691:32583029,40868997 +) +v1,17693:6630773,41553852:0,393216,0 +(1,17704:6630773,45312204:25952256,4151568,196608 +g1,17704:6630773,45312204 +g1,17704:6630773,45312204 +g1,17704:6434165,45312204 +(1,17704:6434165,45312204:0,4151568,196608 +r1,17704:32779637,45312204:26345472,4348176,196608 +k1,17704:6434165,45312204:-26345472 +) +(1,17704:6434165,45312204:26345472,4151568,196608 +[1,17704:6630773,45312204:25952256,3954960,0 +(1,17695:6630773,41781683:25952256,424439,112852 +(1,17694:6630773,41781683:0,0,0 +g1,17694:6630773,41781683 +g1,17694:6630773,41781683 +g1,17694:6303093,41781683 +(1,17694:6303093,41781683:0,0,0 +) +g1,17694:6630773,41781683 +) +g1,17695:7294681,41781683 +g1,17695:8290543,41781683 +g1,17695:9618359,41781683 +g1,17695:12273991,41781683 +g1,17695:14929623,41781683 +g1,17695:15593531,41781683 +g1,17695:16921347,41781683 +g1,17695:17585255,41781683 +g1,17695:18581117,41781683 +g1,17695:21568702,41781683 +g1,17695:23560426,41781683 +g1,17695:24556288,41781683 +k1,17695:24556288,41781683:0 +h1,17695:28207781,41781683:0,0,0 +k1,17695:32583029,41781683:4375248 +g1,17695:32583029,41781683 +) +(1,17696:6630773,42466538:25952256,431045,106246 +h1,17696:6630773,42466538:0,0,0 +g1,17696:7294681,42466538 +g1,17696:8954451,42466538 +g1,17696:10614221,42466538 +g1,17696:11942037,42466538 +g1,17696:12605945,42466538 +g1,17696:13933761,42466538 +g1,17696:14597669,42466538 +k1,17696:14597669,42466538:0 +h1,17696:17917208,42466538:0,0,0 +k1,17696:32583029,42466538:14665821 +g1,17696:32583029,42466538 +) +(1,17697:6630773,43151393:25952256,424439,79822 +h1,17697:6630773,43151393:0,0,0 +k1,17697:6630773,43151393:0 +h1,17697:11278128,43151393:0,0,0 +k1,17697:32583028,43151393:21304900 +g1,17697:32583028,43151393 +) +(1,17698:6630773,43836248:25952256,407923,9908 +h1,17698:6630773,43836248:0,0,0 +g1,17698:7294681,43836248 +g1,17698:8290543,43836248 +h1,17698:9618359,43836248:0,0,0 +k1,17698:32583029,43836248:22964670 +g1,17698:32583029,43836248 +) +(1,17699:6630773,44521103:25952256,424439,112852 +h1,17699:6630773,44521103:0,0,0 +g1,17699:7294681,44521103 +g1,17699:8290543,44521103 +g1,17699:9286405,44521103 +g1,17699:9950313,44521103 +g1,17699:11278129,44521103 +g1,17699:11942037,44521103 +g1,17699:13601807,44521103 +g1,17699:14265715,44521103 +g1,17699:19908933,44521103 +g1,17699:21568703,44521103 +g1,17699:22232611,44521103 +g1,17699:23228473,44521103 +g1,17699:24224335,44521103 +g1,17699:24888243,44521103 +g1,17699:28207783,44521103 +g1,17699:28871691,44521103 +h1,17699:29535599,44521103:0,0,0 +k1,17699:32583029,44521103:3047430 +g1,17699:32583029,44521103 +) +(1,17700:6630773,45205958:25952256,431045,106246 +h1,17700:6630773,45205958:0,0,0 +g1,17700:9286405,45205958 +g1,17700:10282267,45205958 +g1,17700:14929622,45205958 +h1,17700:15593530,45205958:0,0,0 +k1,17700:32583030,45205958:16989500 +g1,17700:32583030,45205958 +) +] +) +g1,17704:32583029,45312204 +g1,17704:6630773,45312204 +g1,17704:6630773,45312204 +g1,17704:32583029,45312204 +g1,17704:32583029,45312204 +) +] +(1,17704:32583029,45706769:0,0,0 +g1,17704:32583029,45706769 +) +) +] +(1,17704:6630773,47279633:25952256,0,0 +h1,17704:6630773,47279633:25952256,0,0 +) +] +(1,17704:4262630,4025873:0,0,0 +[1,17704:-473656,4025873:0,0,0 +(1,17704:-473656,-710413:0,0,0 +(1,17704:-473656,-710413:0,0,0 +g1,17704:-473656,-710413 +) +g1,17704:-473656,-710413 +) +] +) +] +!31759 +}290 +Input:2628:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2629:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2630:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2631:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2632:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2633:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2634:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2635:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -304460,5077 +301170,6255 @@ Input:2638:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConso Input:2639:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2640:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2641:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!858 -{309 -[1,17735:4262630,47279633:28320399,43253760,0 -(1,17735:4262630,4025873:0,0,0 -[1,17735:-473656,4025873:0,0,0 -(1,17735:-473656,-710413:0,0,0 -(1,17735:-473656,-644877:0,0,0 -k1,17735:-473656,-644877:-65536 +Input:2642:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2643:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2644:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1610 +{291 +[1,17763:4262630,47279633:28320399,43253760,0 +(1,17763:4262630,4025873:0,0,0 +[1,17763:-473656,4025873:0,0,0 +(1,17763:-473656,-710413:0,0,0 +(1,17763:-473656,-644877:0,0,0 +k1,17763:-473656,-644877:-65536 ) -(1,17735:-473656,4736287:0,0,0 -k1,17735:-473656,4736287:5209943 +(1,17763:-473656,4736287:0,0,0 +k1,17763:-473656,4736287:5209943 ) -g1,17735:-473656,-710413 +g1,17763:-473656,-710413 ) ] ) -[1,17735:6630773,47279633:25952256,43253760,0 -[1,17735:6630773,4812305:25952256,786432,0 -(1,17735:6630773,4812305:25952256,513147,126483 -(1,17735:6630773,4812305:25952256,513147,126483 -g1,17735:3078558,4812305 -[1,17735:3078558,4812305:0,0,0 -(1,17735:3078558,2439708:0,1703936,0 -k1,17735:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,17735:2537886,2439708:1179648,16384,0 +[1,17763:6630773,47279633:25952256,43253760,0 +[1,17763:6630773,4812305:25952256,786432,0 +(1,17763:6630773,4812305:25952256,513147,126483 +(1,17763:6630773,4812305:25952256,513147,126483 +g1,17763:3078558,4812305 +[1,17763:3078558,4812305:0,0,0 +(1,17763:3078558,2439708:0,1703936,0 +k1,17763:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,17763:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,17735:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,17763:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,17735:3078558,4812305:0,0,0 -(1,17735:3078558,2439708:0,1703936,0 -g1,17735:29030814,2439708 -g1,17735:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,17735:36151628,1915420:16384,1179648,0 +[1,17763:3078558,4812305:0,0,0 +(1,17763:3078558,2439708:0,1703936,0 +g1,17763:29030814,2439708 +g1,17763:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,17763:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,17735:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,17763:37855564,2439708:1179648,16384,0 ) ) -k1,17735:3078556,2439708:-34777008 +k1,17763:3078556,2439708:-34777008 ) ] -[1,17735:3078558,4812305:0,0,0 -(1,17735:3078558,49800853:0,16384,2228224 -k1,17735:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,17735:2537886,49800853:1179648,16384,0 +[1,17763:3078558,4812305:0,0,0 +(1,17763:3078558,49800853:0,16384,2228224 +k1,17763:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,17763:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,17735:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,17763:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] -) -) -) -] -[1,17735:3078558,4812305:0,0,0 -(1,17735:3078558,49800853:0,16384,2228224 -g1,17735:29030814,49800853 -g1,17735:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,17735:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] -) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,17735:37855564,49800853:1179648,16384,0 -) -) -k1,17735:3078556,49800853:-34777008 -) -] -g1,17735:6630773,4812305 -k1,17735:21350816,4812305:13524666 -g1,17735:21999622,4812305 -g1,17735:25611966,4812305 -g1,17735:28956923,4812305 -g1,17735:29772190,4812305 -) -) -] -[1,17735:6630773,45706769:25952256,40108032,0 -(1,17735:6630773,45706769:25952256,40108032,0 -(1,17735:6630773,45706769:0,0,0 -g1,17735:6630773,45706769 -) -[1,17735:6630773,45706769:25952256,40108032,0 -v1,17685:6630773,6254097:0,393216,0 -(1,17697:6630773,13398656:25952256,7537775,0 -g1,17697:6630773,13398656 -g1,17697:6303093,13398656 -r1,17735:6401397,13398656:98304,7537775,0 -g1,17697:6600626,13398656 -g1,17697:6797234,13398656 -[1,17697:6797234,13398656:25785795,7537775,0 -(1,17686:6797234,6649200:25785795,788319,218313 -(1,17685:6797234,6649200:0,788319,218313 -r1,17735:7917113,6649200:1119879,1006632,218313 -k1,17685:6797234,6649200:-1119879 -) -(1,17685:6797234,6649200:1119879,788319,218313 -) -k1,17685:8095895,6649200:178782 -k1,17685:8423575,6649200:327680 -k1,17685:9873755,6649200:178782 -k1,17685:12563878,6649200:178783 -k1,17685:13358698,6649200:178782 -k1,17685:14556565,6649200:178782 -k1,17685:16124710,6649200:178782 -k1,17685:17407774,6649200:178782 -k1,17685:18334323,6649200:178783 -k1,17685:21098500,6649200:178782 -k1,17685:21928710,6649200:178782 -k1,17685:23757689,6649200:178782 -k1,17685:25378919,6649200:178783 -k1,17685:26714411,6649200:178782 -k1,17685:29911126,6649200:178782 -k1,17685:32583029,6649200:0 -) -(1,17686:6797234,7490688:25785795,513147,126483 -k1,17685:10427437,7490688:295731 -k1,17685:14071402,7490688:295731 -k1,17685:15747977,7490688:295731 -k1,17685:17380642,7490688:295731 -k1,17685:19321327,7490688:295731 -k1,17685:22486881,7490688:295732 -k1,17685:23854781,7490688:295731 -k1,17685:24608609,7490688:295731 -k1,17685:25435837,7490688:295731 -k1,17685:28870087,7490688:295731 -k1,17685:31143039,7490688:295731 -k1,17685:32124932,7490688:295731 -k1,17685:32583029,7490688:0 -) -(1,17686:6797234,8332176:25785795,513147,134348 -k1,17685:8996856,8332176:187667 -k1,17685:10341233,8332176:187667 -k1,17685:11180328,8332176:187667 -k1,17685:13988124,8332176:187667 -k1,17685:16361417,8332176:187667 -k1,17685:18007260,8332176:187667 -k1,17685:19661622,8332176:187666 -k1,17685:21547327,8332176:187667 -k1,17685:24775865,8332176:187667 -k1,17685:25579570,8332176:187667 -k1,17685:27557025,8332176:187667 -k1,17685:28848974,8332176:187667 -k1,17685:30235295,8332176:187667 -k1,17685:31170728,8332176:187667 -k1,17685:32583029,8332176:0 -) -(1,17686:6797234,9173664:25785795,513147,134348 -g1,17685:7462424,9173664 -g1,17685:11338223,9173664 -g1,17685:12223614,9173664 -g1,17685:17469115,9173664 -k1,17686:32583029,9173664:12711364 -g1,17686:32583029,9173664 -) -v1,17688:6797234,10364130:0,393216,0 -(1,17695:6797234,12677760:25785795,2706846,196608 -g1,17695:6797234,12677760 -g1,17695:6797234,12677760 -g1,17695:6600626,12677760 -(1,17695:6600626,12677760:0,2706846,196608 -r1,17735:32779637,12677760:26179011,2903454,196608 -k1,17695:6600625,12677760:-26179012 -) -(1,17695:6600626,12677760:26179011,2706846,196608 -[1,17695:6797234,12677760:25785795,2510238,0 -(1,17690:6797234,10571748:25785795,404226,107478 -(1,17689:6797234,10571748:0,0,0 -g1,17689:6797234,10571748 -g1,17689:6797234,10571748 -g1,17689:6469554,10571748 -(1,17689:6469554,10571748:0,0,0 -) -g1,17689:6797234,10571748 -) -k1,17690:6797234,10571748:0 -g1,17690:10590983,10571748 -g1,17690:11223275,10571748 -g1,17690:13752441,10571748 -g1,17690:15649316,10571748 -g1,17690:16281608,10571748 -g1,17690:18178483,10571748 -g1,17690:18810775,10571748 -g1,17690:19443067,10571748 -k1,17690:19443067,10571748:0 -h1,17690:20707650,10571748:0,0,0 -k1,17690:32583029,10571748:11875379 -g1,17690:32583029,10571748 -) -(1,17691:6797234,11237926:25785795,410518,101187 -h1,17691:6797234,11237926:0,0,0 -g1,17691:7113380,11237926 -g1,17691:7429526,11237926 -g1,17691:7745672,11237926 -g1,17691:8061818,11237926 -g1,17691:8377964,11237926 -g1,17691:8694110,11237926 -g1,17691:9010256,11237926 -g1,17691:9326402,11237926 -g1,17691:9642548,11237926 -g1,17691:9958694,11237926 -g1,17691:10274840,11237926 -g1,17691:10590986,11237926 -g1,17691:10907132,11237926 -g1,17691:11223278,11237926 -g1,17691:11539424,11237926 -g1,17691:11855570,11237926 -g1,17691:12171716,11237926 -g1,17691:12487862,11237926 -g1,17691:12804008,11237926 -g1,17691:13120154,11237926 -g1,17691:13436300,11237926 -g1,17691:13752446,11237926 -g1,17691:14068592,11237926 -g1,17691:14384738,11237926 -g1,17691:14700884,11237926 -g1,17691:15017030,11237926 -g1,17691:16913904,11237926 -g1,17691:17546196,11237926 -k1,17691:17546196,11237926:0 -h1,17691:21339944,11237926:0,0,0 -k1,17691:32583029,11237926:11243085 -g1,17691:32583029,11237926 -) -(1,17692:6797234,11904104:25785795,410518,101187 -h1,17692:6797234,11904104:0,0,0 -g1,17692:7113380,11904104 -g1,17692:7429526,11904104 -g1,17692:7745672,11904104 -g1,17692:8061818,11904104 -g1,17692:8377964,11904104 -g1,17692:8694110,11904104 -g1,17692:9010256,11904104 -g1,17692:9326402,11904104 -g1,17692:9642548,11904104 -g1,17692:9958694,11904104 -g1,17692:10274840,11904104 -g1,17692:10590986,11904104 -g1,17692:10907132,11904104 -g1,17692:11223278,11904104 -g1,17692:11539424,11904104 -g1,17692:11855570,11904104 -g1,17692:12171716,11904104 -g1,17692:12487862,11904104 -g1,17692:12804008,11904104 -g1,17692:13120154,11904104 -g1,17692:13436300,11904104 -g1,17692:13752446,11904104 -g1,17692:14068592,11904104 -g1,17692:14384738,11904104 -g1,17692:14700884,11904104 -g1,17692:15017030,11904104 -g1,17692:16913904,11904104 -g1,17692:17546196,11904104 -g1,17692:21972236,11904104 -h1,17692:22288382,11904104:0,0,0 -k1,17692:32583029,11904104:10294647 -g1,17692:32583029,11904104 -) -(1,17693:6797234,12570282:25785795,404226,107478 -h1,17693:6797234,12570282:0,0,0 -g1,17693:7113380,12570282 -g1,17693:7429526,12570282 -k1,17693:7429526,12570282:0 -h1,17693:11223274,12570282:0,0,0 -k1,17693:32583030,12570282:21359756 -g1,17693:32583030,12570282 -) -] -) -g1,17695:32583029,12677760 -g1,17695:6797234,12677760 -g1,17695:6797234,12677760 -g1,17695:32583029,12677760 -g1,17695:32583029,12677760 -) -h1,17695:6797234,12874368:0,0,0 -] -g1,17697:32583029,13398656 -) -h1,17697:6630773,13398656:0,0,0 -(1,17701:6630773,14764432:25952256,513147,126483 -h1,17700:6630773,14764432:983040,0,0 -k1,17700:8992212,14764432:223655 -k1,17700:10823465,14764432:223655 -k1,17700:12038680,14764432:223655 -k1,17700:14464345,14764432:223655 -k1,17700:15339428,14764432:223655 -k1,17700:17732325,14764432:223655 -k1,17700:19563578,14764432:223655 -k1,17700:20859403,14764432:223656 -k1,17700:21438918,14764432:223655 -k1,17700:23556563,14764432:223655 -k1,17700:24311715,14764432:223655 -k1,17700:27120765,14764432:223655 -k1,17700:27995848,14764432:223655 -k1,17700:30075483,14764432:223655 -k1,17700:31318223,14764432:223655 -(1,17700:31318223,14764432:0,414482,115847 -r1,17735:31676489,14764432:358266,530329,115847 -k1,17700:31318223,14764432:-358266 -) -(1,17700:31318223,14764432:358266,414482,115847 -k1,17700:31318223,14764432:3277 -h1,17700:31673212,14764432:0,411205,112570 -) -k1,17700:31900144,14764432:223655 -k1,17701:32583029,14764432:0 -) -(1,17701:6630773,15605920:25952256,505283,134348 -(1,17700:6630773,15605920:0,414482,115847 -r1,17735:6989039,15605920:358266,530329,115847 -k1,17700:6630773,15605920:-358266 -) -(1,17700:6630773,15605920:358266,414482,115847 -k1,17700:6630773,15605920:3277 -h1,17700:6985762,15605920:0,411205,112570 -) -k1,17700:7264800,15605920:275761 -k1,17700:10467398,15605920:275761 -k1,17700:11897902,15605920:275760 -k1,17700:13781261,15605920:275761 -k1,17700:15048582,15605920:275761 -k1,17700:17190153,15605920:275761 -k1,17700:18117341,15605920:275760 -k1,17700:19868317,15605920:275761 -k1,17700:23924195,15605920:275761 -k1,17700:28445378,15605920:275761 -k1,17700:29912583,15605920:275760 -k1,17700:31345054,15605920:275761 -k1,17700:32583029,15605920:0 -) -(1,17701:6630773,16447408:25952256,513147,134348 -k1,17700:7576306,16447408:286241 -k1,17700:10221188,16447408:286241 -k1,17700:12204156,16447408:286241 -k1,17700:14508906,16447408:286241 -k1,17700:16837904,16447408:286241 -k1,17700:17655642,16447408:286241 -k1,17700:18593312,16447408:286242 -k1,17700:20595286,16447408:286241 -k1,17700:22520582,16447408:286241 -k1,17700:24694915,16447408:286241 -k1,17700:28711465,16447408:286241 -k1,17700:29759234,16447408:286241 -k1,17700:32227169,16447408:286241 -k1,17700:32583029,16447408:0 -) -(1,17701:6630773,17288896:25952256,513147,115847 -g1,17700:9587757,17288896 -g1,17700:11467329,17288896 -g1,17700:14018645,17288896 -g1,17700:15660321,17288896 -g1,17700:17016260,17288896 -g1,17700:18163140,17288896 -g1,17700:19381454,17288896 -(1,17700:19381454,17288896:0,452978,115847 -r1,17735:21146567,17288896:1765113,568825,115847 -k1,17700:19381454,17288896:-1765113 -) -(1,17700:19381454,17288896:1765113,452978,115847 -k1,17700:19381454,17288896:3277 -h1,17700:21143290,17288896:0,411205,112570 -) -g1,17700:21345796,17288896 -k1,17701:32583029,17288896:8310396 -g1,17701:32583029,17288896 -) -v1,17703:6630773,18479362:0,393216,0 -(1,17708:6630773,19466928:25952256,1380782,196608 -g1,17708:6630773,19466928 -g1,17708:6630773,19466928 -g1,17708:6434165,19466928 -(1,17708:6434165,19466928:0,1380782,196608 -r1,17735:32779637,19466928:26345472,1577390,196608 -k1,17708:6434165,19466928:-26345472 -) -(1,17708:6434165,19466928:26345472,1380782,196608 -[1,17708:6630773,19466928:25952256,1184174,0 -(1,17705:6630773,18693272:25952256,410518,107478 -(1,17704:6630773,18693272:0,0,0 -g1,17704:6630773,18693272 -g1,17704:6630773,18693272 -g1,17704:6303093,18693272 -(1,17704:6303093,18693272:0,0,0 -) -g1,17704:6630773,18693272 -) -k1,17705:6630773,18693272:0 -g1,17705:10424522,18693272 -g1,17705:11056814,18693272 -g1,17705:13585980,18693272 -g1,17705:15482855,18693272 -g1,17705:16115147,18693272 -g1,17705:20225041,18693272 -g1,17705:20857333,18693272 -g1,17705:21489625,18693272 -g1,17705:23386499,18693272 -h1,17705:23702645,18693272:0,0,0 -k1,17705:32583029,18693272:8880384 -g1,17705:32583029,18693272 -) -(1,17706:6630773,19359450:25952256,404226,107478 -h1,17706:6630773,19359450:0,0,0 -g1,17706:6946919,19359450 -g1,17706:7263065,19359450 -g1,17706:12637542,19359450 -g1,17706:13269834,19359450 -h1,17706:14534418,19359450:0,0,0 -k1,17706:32583030,19359450:18048612 -g1,17706:32583030,19359450 -) -] -) -g1,17708:32583029,19466928 -g1,17708:6630773,19466928 -g1,17708:6630773,19466928 -g1,17708:32583029,19466928 -g1,17708:32583029,19466928 -) -h1,17708:6630773,19663536:0,0,0 -(1,17711:6630773,29337026:25952256,9083666,0 -k1,17711:10523651,29337026:3892878 -h1,17710:10523651,29337026:0,0,0 -(1,17710:10523651,29337026:18166500,9083666,0 -(1,17710:10523651,29337026:18167376,9083688,0 -(1,17710:10523651,29337026:18167376,9083688,0 -(1,17710:10523651,29337026:0,9083688,0 -(1,17710:10523651,29337026:0,14208860,0 -(1,17710:10523651,29337026:28417720,14208860,0 -) -k1,17710:10523651,29337026:-28417720 -) -) -g1,17710:28691027,29337026 -) -) -) -g1,17711:28690151,29337026 -k1,17711:32583029,29337026:3892878 -) -(1,17718:6630773,30178514:25952256,513147,122846 -h1,17717:6630773,30178514:983040,0,0 -k1,17717:10593389,30178514:189708 -(1,17717:10593389,30178514:0,452978,115847 -r1,17735:17282467,30178514:6689078,568825,115847 -k1,17717:10593389,30178514:-6689078 -) -(1,17717:10593389,30178514:6689078,452978,115847 -k1,17717:10593389,30178514:3277 -h1,17717:17279190,30178514:0,411205,112570 -) -k1,17717:17645844,30178514:189707 -k1,17717:19721023,30178514:189708 -k1,17717:20442228,30178514:189708 -k1,17717:21651020,30178514:189707 -k1,17717:24106308,30178514:189708 -k1,17717:25243667,30178514:189708 -(1,17717:25243667,30178514:0,452978,122846 -r1,17735:29470763,30178514:4227096,575824,122846 -k1,17717:25243667,30178514:-4227096 -) -(1,17717:25243667,30178514:4227096,452978,122846 -k1,17717:25243667,30178514:3277 -h1,17717:29467486,30178514:0,411205,112570 -) -k1,17717:29834140,30178514:189707 -k1,17717:31516758,30178514:189708 -k1,17717:32583029,30178514:0 -) -(1,17718:6630773,31020002:25952256,513147,126483 -k1,17717:8282281,31020002:197919 -k1,17717:9499284,31020002:197918 -k1,17717:13435377,31020002:197919 -k1,17717:14316180,31020002:197918 -k1,17717:17128330,31020002:197919 -k1,17717:17985540,31020002:197918 -k1,17717:22428881,31020002:197919 -k1,17717:23312962,31020002:197919 -k1,17717:25586405,31020002:197918 -k1,17717:26400362,31020002:197919 -k1,17717:27364396,31020002:197918 -k1,17717:30554034,31020002:197919 -k1,17717:32583029,31020002:0 -) -(1,17718:6630773,31861490:25952256,513147,134348 -k1,17717:7619645,31861490:159842 -k1,17717:9495220,31861490:159842 -k1,17717:13435179,31861490:159842 -k1,17717:17666773,31861490:159842 -k1,17717:20043043,31861490:159842 -k1,17717:22530069,31861490:159843 -k1,17717:23349203,31861490:159842 -k1,17717:25867686,31861490:159842 -k1,17717:27046613,31861490:159842 -k1,17717:29224964,31861490:159842 -k1,17718:32583029,31861490:0 -) -(1,17718:6630773,32702978:25952256,505283,134348 -k1,17717:8941104,32702978:226286 -k1,17717:9853552,32702978:226286 -k1,17717:12108834,32702978:226287 -k1,17717:13203472,32702978:226286 -k1,17717:14534040,32702978:226286 -k1,17717:17820857,32702978:226286 -k1,17717:20662031,32702978:226287 -k1,17717:22701043,32702978:226286 -k1,17717:24308173,32702978:226286 -k1,17717:25065956,32702978:226286 -k1,17717:27160018,32702978:226286 -k1,17717:29086964,32702978:226287 -k1,17717:30504695,32702978:226286 -k1,17717:31835263,32702978:226286 -k1,17717:32583029,32702978:0 -) -(1,17718:6630773,33544466:25952256,513147,134348 -k1,17717:8846856,33544466:250658 -k1,17717:10832906,33544466:250657 -(1,17717:10832906,33544466:0,452978,122846 -r1,17735:16818561,33544466:5985655,575824,122846 -k1,17717:10832906,33544466:-5985655 -) -(1,17717:10832906,33544466:5985655,452978,122846 -k1,17717:10832906,33544466:3277 -h1,17717:16815284,33544466:0,411205,112570 -) -k1,17717:17069219,33544466:250658 -k1,17717:18006038,33544466:250657 -k1,17717:21329024,33544466:250658 -k1,17717:22231109,33544466:250657 -k1,17717:24610376,33544466:250658 -k1,17717:28141765,33544466:250657 -(1,17717:28141765,33544466:0,452978,115847 -r1,17735:30962014,33544466:2820249,568825,115847 -k1,17717:28141765,33544466:-2820249 -) -(1,17717:28141765,33544466:2820249,452978,115847 -k1,17717:28141765,33544466:3277 -h1,17717:30958737,33544466:0,411205,112570 -) -k1,17717:31386342,33544466:250658 -k1,17717:32583029,33544466:0 -) -(1,17718:6630773,34385954:25952256,513147,134348 -k1,17717:9261471,34385954:173753 -k1,17717:10094515,34385954:173752 -k1,17717:11845720,34385954:173753 -k1,17717:12550970,34385954:173753 -k1,17717:13659265,34385954:173752 -k1,17717:14594546,34385954:173753 -k1,17717:17320926,34385954:173753 -k1,17717:20897308,34385954:173753 -k1,17717:23276347,34385954:173752 -k1,17717:24101528,34385954:173753 -(1,17717:24101528,34385954:0,452978,115847 -r1,17735:25866641,34385954:1765113,568825,115847 -k1,17717:24101528,34385954:-1765113 -) -(1,17717:24101528,34385954:1765113,452978,115847 -k1,17717:24101528,34385954:3277 -h1,17717:25863364,34385954:0,411205,112570 -) -k1,17717:26040394,34385954:173753 -k1,17717:28424020,34385954:173752 -(1,17717:28424020,34385954:0,452978,122846 -r1,17735:30540845,34385954:2116825,575824,122846 -k1,17717:28424020,34385954:-2116825 -) -(1,17717:28424020,34385954:2116825,452978,122846 -k1,17717:28424020,34385954:3277 -h1,17717:30537568,34385954:0,411205,112570 -) -k1,17717:30888268,34385954:173753 -k1,17717:32583029,34385954:0 -) -(1,17718:6630773,35227442:25952256,513147,134348 -g1,17717:7516164,35227442 -g1,17717:8071253,35227442 -g1,17717:10780511,35227442 -g1,17717:11639032,35227442 -g1,17717:12857346,35227442 -g1,17717:15717337,35227442 -g1,17717:18551769,35227442 -g1,17717:21462878,35227442 -g1,17717:23556097,35227442 -g1,17717:25547736,35227442 -g1,17717:26363003,35227442 -g1,17717:27581317,35227442 -k1,17718:32583029,35227442:3550745 -g1,17718:32583029,35227442 -) -v1,17720:6630773,36417908:0,393216,0 -(1,17725:6630773,37405474:25952256,1380782,196608 -g1,17725:6630773,37405474 -g1,17725:6630773,37405474 -g1,17725:6434165,37405474 -(1,17725:6434165,37405474:0,1380782,196608 -r1,17735:32779637,37405474:26345472,1577390,196608 -k1,17725:6434165,37405474:-26345472 -) -(1,17725:6434165,37405474:26345472,1380782,196608 -[1,17725:6630773,37405474:25952256,1184174,0 -(1,17722:6630773,36631818:25952256,410518,107478 -(1,17721:6630773,36631818:0,0,0 -g1,17721:6630773,36631818 -g1,17721:6630773,36631818 -g1,17721:6303093,36631818 -(1,17721:6303093,36631818:0,0,0 -) -g1,17721:6630773,36631818 -) -k1,17722:6630773,36631818:0 -g1,17722:10424522,36631818 -g1,17722:11056814,36631818 -g1,17722:13585980,36631818 -g1,17722:15482855,36631818 -g1,17722:16115147,36631818 -g1,17722:20225041,36631818 -g1,17722:20857333,36631818 -g1,17722:21489625,36631818 -g1,17722:23386499,36631818 -h1,17722:23702645,36631818:0,0,0 -k1,17722:32583029,36631818:8880384 -g1,17722:32583029,36631818 -) -(1,17723:6630773,37297996:25952256,404226,107478 -h1,17723:6630773,37297996:0,0,0 -g1,17723:6946919,37297996 -g1,17723:7263065,37297996 -g1,17723:13585979,37297996 -g1,17723:14218271,37297996 -g1,17723:21173476,37297996 -g1,17723:21805768,37297996 -g1,17723:23702643,37297996 -g1,17723:25599517,37297996 -g1,17723:26231809,37297996 -h1,17723:27812537,37297996:0,0,0 -k1,17723:32583029,37297996:4770492 -g1,17723:32583029,37297996 -) -] -) -g1,17725:32583029,37405474 -g1,17725:6630773,37405474 -g1,17725:6630773,37405474 -g1,17725:32583029,37405474 -g1,17725:32583029,37405474 -) -h1,17725:6630773,37602082:0,0,0 -] -(1,17735:32583029,45706769:0,0,0 -g1,17735:32583029,45706769 -) -) -] -(1,17735:6630773,47279633:25952256,0,0 -h1,17735:6630773,47279633:25952256,0,0 -) -] -(1,17735:4262630,4025873:0,0,0 -[1,17735:-473656,4025873:0,0,0 -(1,17735:-473656,-710413:0,0,0 -(1,17735:-473656,-710413:0,0,0 -g1,17735:-473656,-710413 -) -g1,17735:-473656,-710413 -) -] -) -] -!20212 -}309 -Input:2642:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2643:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2644:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +) +) +) +] +[1,17763:3078558,4812305:0,0,0 +(1,17763:3078558,49800853:0,16384,2228224 +g1,17763:29030814,49800853 +g1,17763:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,17763:36151628,51504789:16384,1179648,0 +) +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 +) +] +) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,17763:37855564,49800853:1179648,16384,0 +) +) +k1,17763:3078556,49800853:-34777008 +) +] +g1,17763:6630773,4812305 +k1,17763:21350816,4812305:13524666 +g1,17763:21999622,4812305 +g1,17763:25611966,4812305 +g1,17763:28956923,4812305 +g1,17763:29772190,4812305 +) +) +] +[1,17763:6630773,45706769:25952256,40108032,0 +(1,17763:6630773,45706769:25952256,40108032,0 +(1,17763:6630773,45706769:0,0,0 +g1,17763:6630773,45706769 +) +[1,17763:6630773,45706769:25952256,40108032,0 +v1,17704:6630773,6254097:0,393216,0 +(1,17704:6630773,7273029:25952256,1412148,196608 +g1,17704:6630773,7273029 +g1,17704:6630773,7273029 +g1,17704:6434165,7273029 +(1,17704:6434165,7273029:0,1412148,196608 +r1,17763:32779637,7273029:26345472,1608756,196608 +k1,17704:6434165,7273029:-26345472 +) +(1,17704:6434165,7273029:26345472,1412148,196608 +[1,17704:6630773,7273029:25952256,1215540,0 +(1,17701:6630773,6481928:25952256,424439,106246 +h1,17701:6630773,6481928:0,0,0 +g1,17701:11942036,6481928 +g1,17701:12937898,6481928 +h1,17701:15261576,6481928:0,0,0 +k1,17701:32583028,6481928:17321452 +g1,17701:32583028,6481928 +) +(1,17702:6630773,7166783:25952256,424439,106246 +h1,17702:6630773,7166783:0,0,0 +g1,17702:12937898,7166783 +g1,17702:14597668,7166783 +g1,17702:15593530,7166783 +g1,17702:21900655,7166783 +g1,17702:23560425,7166783 +g1,17702:24224333,7166783 +h1,17702:24888241,7166783:0,0,0 +k1,17702:32583029,7166783:7694788 +g1,17702:32583029,7166783 +) +] +) +g1,17704:32583029,7273029 +g1,17704:6630773,7273029 +g1,17704:6630773,7273029 +g1,17704:32583029,7273029 +g1,17704:32583029,7273029 +) +h1,17704:6630773,7469637:0,0,0 +(1,17708:6630773,8334717:25952256,513147,134348 +h1,17707:6630773,8334717:983040,0,0 +k1,17707:8647010,8334717:215308 +k1,17707:9320414,8334717:215307 +k1,17707:10668184,8334717:215308 +k1,17707:11631257,8334717:215307 +k1,17707:13359791,8334717:215308 +k1,17707:14191137,8334717:215308 +k1,17707:17077691,8334717:215307 +k1,17707:20458388,8334717:215308 +k1,17707:21542047,8334717:215307 +k1,17707:23037273,8334717:215308 +k1,17707:23608441,8334717:215308 +k1,17707:25561763,8334717:215307 +k1,17707:26428499,8334717:215308 +k1,17707:27662891,8334717:215307 +k1,17707:29865906,8334717:215308 +k1,17707:32583029,8334717:0 +) +(1,17708:6630773,9199797:25952256,513147,134348 +g1,17707:7783551,9199797 +g1,17707:8798048,9199797 +g1,17707:10200518,9199797 +g1,17707:11628547,9199797 +g1,17707:12775427,9199797 +g1,17707:16881257,9199797 +g1,17707:18152655,9199797 +g1,17707:19637700,9199797 +g1,17707:20488357,9199797 +g1,17707:22830613,9199797 +g1,17707:26748355,9199797 +g1,17707:27563622,9199797 +g1,17707:28781936,9199797 +g1,17707:30968872,9199797 +k1,17708:32583029,9199797:422712 +g1,17708:32583029,9199797 +) +v1,17710:6630773,9884652:0,393216,0 +(1,17714:6630773,10225335:25952256,733899,196608 +g1,17714:6630773,10225335 +g1,17714:6630773,10225335 +g1,17714:6434165,10225335 +(1,17714:6434165,10225335:0,733899,196608 +r1,17763:32779637,10225335:26345472,930507,196608 +k1,17714:6434165,10225335:-26345472 +) +(1,17714:6434165,10225335:26345472,733899,196608 +[1,17714:6630773,10225335:25952256,537291,0 +(1,17712:6630773,10119089:25952256,431045,106246 +(1,17711:6630773,10119089:0,0,0 +g1,17711:6630773,10119089 +g1,17711:6630773,10119089 +g1,17711:6303093,10119089 +(1,17711:6303093,10119089:0,0,0 +) +g1,17711:6630773,10119089 +) +g1,17712:10282266,10119089 +g1,17712:11278128,10119089 +g1,17712:11942036,10119089 +g1,17712:12605944,10119089 +g1,17712:15261576,10119089 +g1,17712:16257438,10119089 +g1,17712:17585254,10119089 +g1,17712:18249162,10119089 +h1,17712:19908932,10119089:0,0,0 +k1,17712:32583029,10119089:12674097 +g1,17712:32583029,10119089 +) +] +) +g1,17714:32583029,10225335 +g1,17714:6630773,10225335 +g1,17714:6630773,10225335 +g1,17714:32583029,10225335 +g1,17714:32583029,10225335 +) +h1,17714:6630773,10421943:0,0,0 +(1,17718:6630773,11287023:25952256,513147,134348 +h1,17717:6630773,11287023:983040,0,0 +k1,17717:8793079,11287023:137244 +k1,17717:9949409,11287023:137245 +k1,17717:11392786,11287023:137244 +k1,17717:12807327,11287023:137244 +k1,17717:13402668,11287023:137244 +k1,17717:14071410,11287023:137245 +k1,17717:16569261,11287023:137244 +k1,17717:17357933,11287023:137244 +k1,17717:18587662,11287023:137244 +(1,17717:18587662,11287023:0,459977,115847 +r1,17763:22814758,11287023:4227096,575824,115847 +k1,17717:18587662,11287023:-4227096 +) +(1,17717:18587662,11287023:4227096,459977,115847 +k1,17717:18587662,11287023:3277 +h1,17717:22811481,11287023:0,411205,112570 +) +k1,17717:22952003,11287023:137245 +k1,17717:23740675,11287023:137244 +k1,17717:25274491,11287023:137244 +k1,17717:25767595,11287023:137244 +k1,17717:28416180,11287023:137245 +(1,17717:28416180,11287023:0,452978,122846 +r1,17763:30884717,11287023:2468537,575824,122846 +k1,17717:28416180,11287023:-2468537 +) +(1,17717:28416180,11287023:2468537,452978,122846 +k1,17717:28416180,11287023:3277 +h1,17717:30881440,11287023:0,411205,112570 +) +k1,17717:31021961,11287023:137244 +k1,17718:32583029,11287023:0 +) +(1,17718:6630773,12152103:25952256,513147,126483 +k1,17717:8665261,12152103:173921 +k1,17717:9600710,12152103:173921 +k1,17717:10793716,12152103:173921 +k1,17717:13490773,12152103:173921 +k1,17717:14316122,12152103:173921 +k1,17717:15509127,12152103:173920 +(1,17717:15509127,12152103:0,452978,115847 +r1,17763:17625952,12152103:2116825,568825,115847 +k1,17717:15509127,12152103:-2116825 +) +(1,17717:15509127,12152103:2116825,452978,115847 +k1,17717:15509127,12152103:3277 +h1,17717:17622675,12152103:0,411205,112570 +) +k1,17717:17799873,12152103:173921 +k1,17717:20991727,12152103:173921 +k1,17717:21793483,12152103:173921 +k1,17717:22986489,12152103:173921 +k1,17717:24527491,12152103:173921 +k1,17717:25368568,12152103:173921 +(1,17717:25368568,12152103:0,459977,115847 +r1,17763:32409359,12152103:7040791,575824,115847 +k1,17717:25368568,12152103:-7040791 +) +(1,17717:25368568,12152103:7040791,459977,115847 +k1,17717:25368568,12152103:3277 +h1,17717:32406082,12152103:0,411205,112570 +) +k1,17718:32583029,12152103:0 +) +(1,17718:6630773,13017183:25952256,513147,134348 +(1,17717:6630773,13017183:0,452978,122846 +r1,17763:10857869,13017183:4227096,575824,122846 +k1,17717:6630773,13017183:-4227096 +) +(1,17717:6630773,13017183:4227096,452978,122846 +k1,17717:6630773,13017183:3277 +h1,17717:10854592,13017183:0,411205,112570 +) +k1,17717:11012805,13017183:154936 +k1,17717:11699238,13017183:154936 +k1,17717:13367400,13017183:154936 +k1,17717:14283864,13017183:154936 +k1,17717:16878050,13017183:154936 +k1,17717:18413829,13017183:154935 +k1,17717:20424089,13017183:154936 +k1,17717:22570009,13017183:154936 +k1,17717:23744030,13017183:154936 +k1,17717:26793036,13017183:154936 +k1,17717:28990729,13017183:154936 +k1,17717:31591469,13017183:154936 +k1,17717:32583029,13017183:0 +) +(1,17718:6630773,13882263:25952256,505283,134348 +k1,17717:9335947,13882263:159756 +k1,17717:10889655,13882263:159757 +k1,17717:12068496,13882263:159756 +k1,17717:15436896,13882263:159757 +k1,17717:18042456,13882263:159756 +k1,17717:19803258,13882263:159757 +k1,17717:21743627,13882263:159756 +k1,17717:22301843,13882263:159757 +k1,17717:23113027,13882263:159756 +k1,17717:23878337,13882263:159757 +k1,17717:26717205,13882263:159756 +k1,17717:27638490,13882263:159757 +k1,17717:30159508,13882263:159756 +k1,17717:32583029,13882263:0 +) +(1,17718:6630773,14747343:25952256,505283,7863 +g1,17717:9465205,14747343 +g1,17717:10720874,14747343 +g1,17717:12111548,14747343 +k1,17718:32583029,14747343:18930074 +g1,17718:32583029,14747343 +) +v1,17720:6630773,15432198:0,393216,0 +(1,17729:6630773,19197156:25952256,4158174,196608 +g1,17729:6630773,19197156 +g1,17729:6630773,19197156 +g1,17729:6434165,19197156 +(1,17729:6434165,19197156:0,4158174,196608 +r1,17763:32779637,19197156:26345472,4354782,196608 +k1,17729:6434165,19197156:-26345472 +) +(1,17729:6434165,19197156:26345472,4158174,196608 +[1,17729:6630773,19197156:25952256,3961566,0 +(1,17722:6630773,15660029:25952256,424439,112852 +(1,17721:6630773,15660029:0,0,0 +g1,17721:6630773,15660029 +g1,17721:6630773,15660029 +g1,17721:6303093,15660029 +(1,17721:6303093,15660029:0,0,0 +) +g1,17721:6630773,15660029 +) +k1,17722:6630773,15660029:0 +g1,17722:14597668,15660029 +g1,17722:16589392,15660029 +g1,17722:17253300,15660029 +g1,17722:18249162,15660029 +g1,17722:18913070,15660029 +g1,17722:19576978,15660029 +g1,17722:20904794,15660029 +h1,17722:21236748,15660029:0,0,0 +k1,17722:32583029,15660029:11346281 +g1,17722:32583029,15660029 +) +(1,17723:6630773,16344884:25952256,431045,106246 +h1,17723:6630773,16344884:0,0,0 +g1,17723:6962727,16344884 +g1,17723:7294681,16344884 +g1,17723:16257438,16344884 +g1,17723:16921346,16344884 +g1,17723:20904793,16344884 +g1,17723:23228471,16344884 +g1,17723:23892379,16344884 +k1,17723:23892379,16344884:0 +h1,17723:25884103,16344884:0,0,0 +k1,17723:32583029,16344884:6698926 +g1,17723:32583029,16344884 +) +(1,17724:6630773,17029739:25952256,431045,112852 +h1,17724:6630773,17029739:0,0,0 +g1,17724:6962727,17029739 +g1,17724:7294681,17029739 +g1,17724:7626635,17029739 +g1,17724:7958589,17029739 +g1,17724:8290543,17029739 +g1,17724:8622497,17029739 +g1,17724:8954451,17029739 +g1,17724:9286405,17029739 +g1,17724:9618359,17029739 +g1,17724:9950313,17029739 +g1,17724:10282267,17029739 +g1,17724:10614221,17029739 +g1,17724:10946175,17029739 +g1,17724:11278129,17029739 +g1,17724:11610083,17029739 +g1,17724:11942037,17029739 +g1,17724:12273991,17029739 +g1,17724:12605945,17029739 +g1,17724:12937899,17029739 +g1,17724:13269853,17029739 +g1,17724:13601807,17029739 +g1,17724:16257439,17029739 +g1,17724:16921347,17029739 +g1,17724:20572841,17029739 +g1,17724:21236749,17029739 +k1,17724:21236749,17029739:0 +h1,17724:28207781,17029739:0,0,0 +k1,17724:32583029,17029739:4375248 +g1,17724:32583029,17029739 +) +(1,17725:6630773,17714594:25952256,424439,112852 +h1,17725:6630773,17714594:0,0,0 +g1,17725:6962727,17714594 +g1,17725:7294681,17714594 +g1,17725:7626635,17714594 +g1,17725:7958589,17714594 +g1,17725:8290543,17714594 +g1,17725:8622497,17714594 +g1,17725:8954451,17714594 +g1,17725:9286405,17714594 +g1,17725:9618359,17714594 +g1,17725:9950313,17714594 +g1,17725:10282267,17714594 +g1,17725:10614221,17714594 +g1,17725:10946175,17714594 +g1,17725:11278129,17714594 +g1,17725:11610083,17714594 +g1,17725:11942037,17714594 +g1,17725:12273991,17714594 +g1,17725:12605945,17714594 +g1,17725:12937899,17714594 +g1,17725:13269853,17714594 +g1,17725:13601807,17714594 +g1,17725:17585254,17714594 +g1,17725:18249162,17714594 +g1,17725:20240886,17714594 +h1,17725:20572840,17714594:0,0,0 +k1,17725:32583029,17714594:12010189 +g1,17725:32583029,17714594 +) +(1,17726:6630773,18399449:25952256,424439,112852 +h1,17726:6630773,18399449:0,0,0 +g1,17726:6962727,18399449 +g1,17726:7294681,18399449 +g1,17726:15593530,18399449 +g1,17726:16257438,18399449 +g1,17726:18581116,18399449 +g1,17726:20240886,18399449 +g1,17726:20904794,18399449 +g1,17726:23560426,18399449 +g1,17726:25884104,18399449 +g1,17726:26548012,18399449 +g1,17726:28207782,18399449 +k1,17726:28207782,18399449:0 +h1,17726:29203644,18399449:0,0,0 +k1,17726:32583029,18399449:3379385 +g1,17726:32583029,18399449 +) +(1,17727:6630773,19084304:25952256,424439,112852 +h1,17727:6630773,19084304:0,0,0 +g1,17727:6962727,19084304 +g1,17727:7294681,19084304 +g1,17727:7626635,19084304 +g1,17727:7958589,19084304 +g1,17727:8290543,19084304 +g1,17727:8622497,19084304 +g1,17727:8954451,19084304 +g1,17727:9286405,19084304 +g1,17727:9618359,19084304 +g1,17727:9950313,19084304 +g1,17727:10282267,19084304 +g1,17727:10614221,19084304 +g1,17727:10946175,19084304 +g1,17727:11278129,19084304 +g1,17727:11610083,19084304 +g1,17727:11942037,19084304 +g1,17727:12273991,19084304 +g1,17727:12605945,19084304 +g1,17727:12937899,19084304 +g1,17727:13269853,19084304 +g1,17727:13601807,19084304 +g1,17727:13933761,19084304 +g1,17727:14265715,19084304 +g1,17727:16257439,19084304 +g1,17727:16921347,19084304 +h1,17727:20904794,19084304:0,0,0 +k1,17727:32583029,19084304:11678235 +g1,17727:32583029,19084304 +) +] +) +g1,17729:32583029,19197156 +g1,17729:6630773,19197156 +g1,17729:6630773,19197156 +g1,17729:32583029,19197156 +g1,17729:32583029,19197156 +) +h1,17729:6630773,19393764:0,0,0 +(1,17732:6630773,28542966:25952256,9083666,0 +k1,17732:10523651,28542966:3892878 +h1,17731:10523651,28542966:0,0,0 +(1,17731:10523651,28542966:18166500,9083666,0 +(1,17731:10523651,28542966:18167376,9083688,0 +(1,17731:10523651,28542966:18167376,9083688,0 +(1,17731:10523651,28542966:0,9083688,0 +(1,17731:10523651,28542966:0,14208860,0 +(1,17731:10523651,28542966:28417720,14208860,0 +) +k1,17731:10523651,28542966:-28417720 +) +) +g1,17731:28691027,28542966 +) +) +) +g1,17732:28690151,28542966 +k1,17732:32583029,28542966:3892878 +) +(1,17739:6630773,29408046:25952256,513147,134348 +h1,17738:6630773,29408046:983040,0,0 +k1,17738:8395002,29408046:153354 +k1,17738:9567441,29408046:153354 +k1,17738:11962126,29408046:153354 +k1,17738:13392777,29408046:153354 +k1,17738:14414483,29408046:153354 +k1,17738:15845134,29408046:153354 +k1,17738:17017574,29408046:153355 +k1,17738:20054512,29408046:153354 +k1,17738:23275606,29408046:153354 +k1,17738:25130930,29408046:153354 +k1,17738:26678235,29408046:153354 +k1,17738:28862550,29408046:153354 +k1,17738:29963555,29408046:153354 +k1,17738:32583029,29408046:0 +) +(1,17739:6630773,30273126:25952256,505283,134348 +k1,17738:7492061,30273126:233453 +k1,17738:8928754,30273126:233452 +k1,17738:10529288,30273126:233453 +k1,17738:11631093,30273126:233453 +k1,17738:13394812,30273126:233453 +k1,17738:14279692,30273126:233452 +k1,17738:15605630,30273126:233453 +(1,17738:15605630,30273126:0,452978,122846 +r1,17763:18074167,30273126:2468537,575824,122846 +k1,17738:15605630,30273126:-2468537 +) +(1,17738:15605630,30273126:2468537,452978,122846 +k1,17738:15605630,30273126:3277 +h1,17738:18070890,30273126:0,411205,112570 +) +k1,17738:18307620,30273126:233453 +k1,17738:19192501,30273126:233453 +k1,17738:20173719,30273126:233452 +k1,17738:21715926,30273126:233453 +k1,17738:22600807,30273126:233453 +k1,17738:26394831,30273126:233453 +k1,17738:27647368,30273126:233452 +k1,17738:30688383,30273126:233453 +k1,17738:32583029,30273126:0 +) +(1,17739:6630773,31138206:25952256,513147,134348 +k1,17738:7485112,31138206:195047 +k1,17738:8699243,31138206:195046 +k1,17738:11417426,31138206:195047 +(1,17738:11624520,31138206:0,414482,115847 +r1,17763:13389633,31138206:1765113,530329,115847 +k1,17738:11624520,31138206:-1765113 +) +(1,17738:11624520,31138206:1765113,414482,115847 +k1,17738:11624520,31138206:3277 +h1,17738:13386356,31138206:0,411205,112570 +) +k1,17738:13791774,31138206:195047 +k1,17738:15554442,31138206:195047 +k1,17738:17033994,31138206:195046 +k1,17738:18742267,31138206:195047 +k1,17738:19956399,31138206:195047 +k1,17738:22848252,31138206:195046 +k1,17738:24112847,31138206:195047 +k1,17738:26202540,31138206:195047 +k1,17738:27056879,31138206:195047 +k1,17738:28271010,31138206:195046 +k1,17738:31629480,31138206:195047 +k1,17738:32583029,31138206:0 +) +(1,17739:6630773,32003286:25952256,513147,134348 +k1,17738:7978787,32003286:255529 +k1,17738:8920477,32003286:255528 +k1,17738:11205001,32003286:255529 +k1,17738:12479615,32003286:255529 +k1,17738:15000723,32003286:255528 +k1,17738:18419675,32003286:255529 +(1,17738:18419675,32003286:0,452978,122846 +r1,17763:22646771,32003286:4227096,575824,122846 +k1,17738:18419675,32003286:-4227096 +) +(1,17738:18419675,32003286:4227096,452978,122846 +k1,17738:18419675,32003286:3277 +h1,17738:22643494,32003286:0,411205,112570 +) +k1,17738:23075969,32003286:255528 +k1,17738:24528185,32003286:255529 +k1,17738:27591276,32003286:255529 +k1,17738:28462842,32003286:255528 +k1,17738:29921612,32003286:255529 +k1,17738:32583029,32003286:0 +) +(1,17739:6630773,32868366:25952256,513147,126483 +k1,17738:7951946,32868366:216891 +k1,17738:8916602,32868366:216890 +k1,17738:10545794,32868366:216891 +k1,17738:11622516,32868366:216890 +k1,17738:12858492,32868366:216891 +k1,17738:15586722,32868366:216890 +(1,17738:15586722,32868366:0,414482,115847 +r1,17763:15944988,32868366:358266,530329,115847 +k1,17738:15586722,32868366:-358266 +) +(1,17738:15586722,32868366:358266,414482,115847 +k1,17738:15586722,32868366:3277 +h1,17738:15941711,32868366:0,411205,112570 +) +k1,17738:16161879,32868366:216891 +k1,17738:17946391,32868366:216891 +k1,17738:19182366,32868366:216890 +k1,17738:20788620,32868366:216891 +k1,17738:22881806,32868366:216890 +(1,17738:22881806,32868366:0,452978,115847 +r1,17763:28164037,32868366:5282231,568825,115847 +k1,17738:22881806,32868366:-5282231 +) +(1,17738:22881806,32868366:5282231,452978,115847 +k1,17738:22881806,32868366:3277 +h1,17738:28160760,32868366:0,411205,112570 +) +k1,17738:28380928,32868366:216891 +k1,17738:29129315,32868366:216890 +k1,17738:31931601,32868366:216891 +k1,17738:32583029,32868366:0 +) +(1,17739:6630773,33733446:25952256,513147,134348 +k1,17738:7922199,33733446:272341 +k1,17738:8558922,33733446:272342 +k1,17738:11675526,33733446:272341 +k1,17738:12560630,33733446:272342 +k1,17738:13599087,33733446:272341 +k1,17738:16040015,33733446:272342 +k1,17738:18924621,33733446:272341 +(1,17738:18924621,33733446:0,414482,115847 +r1,17763:19282887,33733446:358266,530329,115847 +k1,17738:18924621,33733446:-358266 +) +(1,17738:18924621,33733446:358266,414482,115847 +k1,17738:18924621,33733446:3277 +h1,17738:19279610,33733446:0,411205,112570 +) +k1,17738:19555229,33733446:272342 +k1,17738:21395191,33733446:272341 +k1,17738:22686618,33733446:272342 +k1,17738:24348322,33733446:272341 +k1,17738:26496960,33733446:272342 +(1,17738:26496960,33733446:0,452978,115847 +r1,17763:31779191,33733446:5282231,568825,115847 +k1,17738:26496960,33733446:-5282231 +) +(1,17738:26496960,33733446:5282231,452978,115847 +k1,17738:26496960,33733446:3277 +h1,17738:31775914,33733446:0,411205,112570 +) +k1,17738:32051532,33733446:272341 +k1,17738:32583029,33733446:0 +) +(1,17739:6630773,34598526:25952256,513147,126483 +k1,17738:9480842,34598526:264674 +k1,17738:10396944,34598526:264674 +k1,17738:11680703,34598526:264674 +k1,17738:12353011,34598526:264674 +k1,17738:15461948,34598526:264674 +k1,17738:17621268,34598526:264674 +k1,17738:18545234,34598526:264674 +k1,17738:19828993,34598526:264674 +k1,17738:24487856,34598526:264674 +k1,17738:25368568,34598526:264674 +(1,17738:25368568,34598526:0,459977,115847 +r1,17763:32409359,34598526:7040791,575824,115847 +k1,17738:25368568,34598526:-7040791 +) +(1,17738:25368568,34598526:7040791,459977,115847 +k1,17738:25368568,34598526:3277 +h1,17738:32406082,34598526:0,411205,112570 +) +k1,17738:32583029,34598526:0 +) +(1,17739:6630773,35463606:25952256,513147,126483 +k1,17738:8560680,35463606:284953 +k1,17738:9864717,35463606:284952 +k1,17738:14717529,35463606:284953 +k1,17738:17844123,35463606:284953 +(1,17738:17844123,35463606:0,414482,115847 +r1,17763:18202389,35463606:358266,530329,115847 +k1,17738:17844123,35463606:-358266 +) +(1,17738:17844123,35463606:358266,414482,115847 +k1,17738:17844123,35463606:3277 +h1,17738:18199112,35463606:0,411205,112570 +) +k1,17738:18487341,35463606:284952 +k1,17738:19963739,35463606:284953 +(1,17738:19963739,35463606:0,452978,122846 +r1,17763:22432276,35463606:2468537,575824,122846 +k1,17738:19963739,35463606:-2468537 +) +(1,17738:19963739,35463606:2468537,452978,122846 +k1,17738:19963739,35463606:3277 +h1,17738:22428999,35463606:0,411205,112570 +) +k1,17738:22717229,35463606:284953 +k1,17738:23618219,35463606:284952 +k1,17738:24922257,35463606:284953 +k1,17738:26596573,35463606:284953 +k1,17738:28757821,35463606:284952 +k1,17738:31821501,35463606:284953 +k1,17739:32583029,35463606:0 +) +(1,17739:6630773,36328686:25952256,513147,126483 +(1,17738:6630773,36328686:0,459977,115847 +r1,17763:13671564,36328686:7040791,575824,115847 +k1,17738:6630773,36328686:-7040791 +) +(1,17738:6630773,36328686:7040791,459977,115847 +k1,17738:6630773,36328686:3277 +h1,17738:13668287,36328686:0,411205,112570 +) +k1,17738:13852481,36328686:180917 +k1,17738:15024957,36328686:180916 +k1,17738:18499058,36328686:180917 +k1,17738:19871419,36328686:180916 +k1,17738:22637731,36328686:180917 +k1,17738:23470076,36328686:180917 +k1,17738:24670077,36328686:180916 +k1,17738:25258628,36328686:180917 +k1,17738:27334190,36328686:180916 +k1,17738:28182263,36328686:180917 +(1,17738:28182263,36328686:0,452978,122846 +r1,17763:32409359,36328686:4227096,575824,122846 +k1,17738:28182263,36328686:-4227096 +) +(1,17738:28182263,36328686:4227096,452978,122846 +k1,17738:28182263,36328686:3277 +h1,17738:32406082,36328686:0,411205,112570 +) +k1,17739:32583029,36328686:0 +k1,17739:32583029,36328686:0 +) +v1,17741:6630773,37013541:0,393216,0 +(1,17754:6630773,43517919:25952256,6897594,196608 +g1,17754:6630773,43517919 +g1,17754:6630773,43517919 +g1,17754:6434165,43517919 +(1,17754:6434165,43517919:0,6897594,196608 +r1,17763:32779637,43517919:26345472,7094202,196608 +k1,17754:6434165,43517919:-26345472 +) +(1,17754:6434165,43517919:26345472,6897594,196608 +[1,17754:6630773,43517919:25952256,6700986,0 +(1,17743:6630773,37241372:25952256,424439,112852 +(1,17742:6630773,37241372:0,0,0 +g1,17742:6630773,37241372 +g1,17742:6630773,37241372 +g1,17742:6303093,37241372 +(1,17742:6303093,37241372:0,0,0 +) +g1,17742:6630773,37241372 +) +k1,17743:6630773,37241372:0 +g1,17743:14597668,37241372 +h1,17743:14929622,37241372:0,0,0 +k1,17743:32583030,37241372:17653408 +g1,17743:32583030,37241372 +) +(1,17744:6630773,37926227:25952256,431045,106246 +h1,17744:6630773,37926227:0,0,0 +g1,17744:6962727,37926227 +g1,17744:7294681,37926227 +g1,17744:16257438,37926227 +g1,17744:16921346,37926227 +k1,17744:16921346,37926227:0 +h1,17744:20572839,37926227:0,0,0 +k1,17744:32583029,37926227:12010190 +g1,17744:32583029,37926227 +) +(1,17745:6630773,38611082:25952256,424439,86428 +h1,17745:6630773,38611082:0,0,0 +g1,17745:6962727,38611082 +g1,17745:7294681,38611082 +g1,17745:7626635,38611082 +g1,17745:7958589,38611082 +g1,17745:8290543,38611082 +g1,17745:8622497,38611082 +g1,17745:8954451,38611082 +g1,17745:9286405,38611082 +g1,17745:9618359,38611082 +g1,17745:9950313,38611082 +g1,17745:10282267,38611082 +g1,17745:10614221,38611082 +g1,17745:10946175,38611082 +g1,17745:11278129,38611082 +g1,17745:11610083,38611082 +g1,17745:11942037,38611082 +g1,17745:12273991,38611082 +g1,17745:12605945,38611082 +g1,17745:12937899,38611082 +g1,17745:13269853,38611082 +g1,17745:13601807,38611082 +g1,17745:15925485,38611082 +g1,17745:16589393,38611082 +k1,17745:16589393,38611082:0 +h1,17745:18581117,38611082:0,0,0 +k1,17745:32583029,38611082:14001912 +g1,17745:32583029,38611082 +) +(1,17746:6630773,39295937:25952256,424439,112852 +h1,17746:6630773,39295937:0,0,0 +g1,17746:6962727,39295937 +g1,17746:7294681,39295937 +g1,17746:7626635,39295937 +g1,17746:7958589,39295937 +g1,17746:8290543,39295937 +g1,17746:8622497,39295937 +g1,17746:8954451,39295937 +g1,17746:9286405,39295937 +g1,17746:9618359,39295937 +g1,17746:9950313,39295937 +g1,17746:10282267,39295937 +g1,17746:10614221,39295937 +g1,17746:10946175,39295937 +g1,17746:11278129,39295937 +g1,17746:11610083,39295937 +g1,17746:11942037,39295937 +g1,17746:12273991,39295937 +g1,17746:12605945,39295937 +g1,17746:12937899,39295937 +g1,17746:13269853,39295937 +g1,17746:13601807,39295937 +g1,17746:16257439,39295937 +g1,17746:16921347,39295937 +g1,17746:18913071,39295937 +g1,17746:19576979,39295937 +k1,17746:19576979,39295937:0 +h1,17746:20240887,39295937:0,0,0 +k1,17746:32583029,39295937:12342142 +g1,17746:32583029,39295937 +) +(1,17747:6630773,39980792:25952256,424439,112852 +h1,17747:6630773,39980792:0,0,0 +g1,17747:6962727,39980792 +g1,17747:7294681,39980792 +g1,17747:7626635,39980792 +g1,17747:7958589,39980792 +g1,17747:8290543,39980792 +g1,17747:8622497,39980792 +g1,17747:8954451,39980792 +g1,17747:9286405,39980792 +g1,17747:9618359,39980792 +g1,17747:9950313,39980792 +g1,17747:10282267,39980792 +g1,17747:10614221,39980792 +g1,17747:10946175,39980792 +g1,17747:11278129,39980792 +g1,17747:11610083,39980792 +g1,17747:11942037,39980792 +g1,17747:12273991,39980792 +g1,17747:12605945,39980792 +g1,17747:12937899,39980792 +g1,17747:13269853,39980792 +g1,17747:13601807,39980792 +g1,17747:13933761,39980792 +g1,17747:14265715,39980792 +g1,17747:14597669,39980792 +g1,17747:14929623,39980792 +g1,17747:15261577,39980792 +g1,17747:15593531,39980792 +g1,17747:15925485,39980792 +g1,17747:16257439,39980792 +g1,17747:16589393,39980792 +g1,17747:16921347,39980792 +g1,17747:17253301,39980792 +g1,17747:17585255,39980792 +g1,17747:17917209,39980792 +g1,17747:18249163,39980792 +g1,17747:18913071,39980792 +g1,17747:19576979,39980792 +g1,17747:23560427,39980792 +g1,17747:24224335,39980792 +k1,17747:24224335,39980792:0 +h1,17747:24888243,39980792:0,0,0 +k1,17747:32583029,39980792:7694786 +g1,17747:32583029,39980792 +) +(1,17748:6630773,40665647:25952256,431045,112852 +h1,17748:6630773,40665647:0,0,0 +g1,17748:6962727,40665647 +g1,17748:7294681,40665647 +g1,17748:7626635,40665647 +g1,17748:7958589,40665647 +g1,17748:8290543,40665647 +g1,17748:8622497,40665647 +g1,17748:8954451,40665647 +g1,17748:9286405,40665647 +g1,17748:9618359,40665647 +g1,17748:9950313,40665647 +g1,17748:10282267,40665647 +g1,17748:10614221,40665647 +g1,17748:10946175,40665647 +g1,17748:11278129,40665647 +g1,17748:11610083,40665647 +g1,17748:11942037,40665647 +g1,17748:12273991,40665647 +g1,17748:12605945,40665647 +g1,17748:12937899,40665647 +g1,17748:13269853,40665647 +g1,17748:13601807,40665647 +g1,17748:13933761,40665647 +g1,17748:14265715,40665647 +g1,17748:14597669,40665647 +g1,17748:14929623,40665647 +g1,17748:15261577,40665647 +g1,17748:15593531,40665647 +g1,17748:15925485,40665647 +g1,17748:16257439,40665647 +g1,17748:16589393,40665647 +g1,17748:16921347,40665647 +g1,17748:17253301,40665647 +g1,17748:17585255,40665647 +g1,17748:17917209,40665647 +g1,17748:18249163,40665647 +g1,17748:18581117,40665647 +g1,17748:18913071,40665647 +g1,17748:19245025,40665647 +g1,17748:19576979,40665647 +g1,17748:19908933,40665647 +g1,17748:20240887,40665647 +g1,17748:20572841,40665647 +g1,17748:20904795,40665647 +g1,17748:21236749,40665647 +g1,17748:21568703,40665647 +g1,17748:25220196,40665647 +g1,17748:25884104,40665647 +g1,17748:26548012,40665647 +g1,17748:27211920,40665647 +k1,17748:27211920,40665647:0 +h1,17748:30199505,40665647:0,0,0 +k1,17748:32583029,40665647:2383524 +g1,17748:32583029,40665647 +) +(1,17749:6630773,41350502:25952256,431045,112852 +h1,17749:6630773,41350502:0,0,0 +g1,17749:6962727,41350502 +g1,17749:7294681,41350502 +g1,17749:7626635,41350502 +g1,17749:7958589,41350502 +g1,17749:8290543,41350502 +g1,17749:8622497,41350502 +g1,17749:8954451,41350502 +g1,17749:9286405,41350502 +g1,17749:9618359,41350502 +g1,17749:9950313,41350502 +g1,17749:10282267,41350502 +g1,17749:10614221,41350502 +g1,17749:10946175,41350502 +g1,17749:11278129,41350502 +g1,17749:11610083,41350502 +g1,17749:11942037,41350502 +g1,17749:12273991,41350502 +g1,17749:12605945,41350502 +g1,17749:12937899,41350502 +g1,17749:13269853,41350502 +g1,17749:13601807,41350502 +g1,17749:13933761,41350502 +g1,17749:14265715,41350502 +g1,17749:14597669,41350502 +g1,17749:14929623,41350502 +g1,17749:15261577,41350502 +g1,17749:15593531,41350502 +g1,17749:15925485,41350502 +g1,17749:16257439,41350502 +g1,17749:16589393,41350502 +g1,17749:16921347,41350502 +g1,17749:17253301,41350502 +g1,17749:17585255,41350502 +g1,17749:17917209,41350502 +g1,17749:18249163,41350502 +g1,17749:20572841,41350502 +g1,17749:21236749,41350502 +k1,17749:21236749,41350502:0 +h1,17749:28207781,41350502:0,0,0 +k1,17749:32583029,41350502:4375248 +g1,17749:32583029,41350502 +) +(1,17750:6630773,42035357:25952256,424439,112852 +h1,17750:6630773,42035357:0,0,0 +g1,17750:6962727,42035357 +g1,17750:7294681,42035357 +g1,17750:7626635,42035357 +g1,17750:7958589,42035357 +g1,17750:8290543,42035357 +g1,17750:8622497,42035357 +g1,17750:8954451,42035357 +g1,17750:9286405,42035357 +g1,17750:9618359,42035357 +g1,17750:9950313,42035357 +g1,17750:10282267,42035357 +g1,17750:10614221,42035357 +g1,17750:10946175,42035357 +g1,17750:11278129,42035357 +g1,17750:11610083,42035357 +g1,17750:11942037,42035357 +g1,17750:12273991,42035357 +g1,17750:12605945,42035357 +g1,17750:12937899,42035357 +g1,17750:13269853,42035357 +g1,17750:13601807,42035357 +g1,17750:17585254,42035357 +g1,17750:18249162,42035357 +g1,17750:20240886,42035357 +h1,17750:20572840,42035357:0,0,0 +k1,17750:32583029,42035357:12010189 +g1,17750:32583029,42035357 +) +(1,17751:6630773,42720212:25952256,424439,112852 +h1,17751:6630773,42720212:0,0,0 +g1,17751:6962727,42720212 +g1,17751:7294681,42720212 +g1,17751:15593530,42720212 +g1,17751:16257438,42720212 +g1,17751:18581116,42720212 +g1,17751:20240886,42720212 +g1,17751:20904794,42720212 +g1,17751:23560426,42720212 +g1,17751:25884104,42720212 +g1,17751:26548012,42720212 +g1,17751:28207782,42720212 +k1,17751:28207782,42720212:0 +h1,17751:29203644,42720212:0,0,0 +k1,17751:32583029,42720212:3379385 +g1,17751:32583029,42720212 +) +(1,17752:6630773,43405067:25952256,424439,112852 +h1,17752:6630773,43405067:0,0,0 +g1,17752:6962727,43405067 +g1,17752:7294681,43405067 +g1,17752:7626635,43405067 +g1,17752:7958589,43405067 +g1,17752:8290543,43405067 +g1,17752:8622497,43405067 +g1,17752:8954451,43405067 +g1,17752:9286405,43405067 +g1,17752:9618359,43405067 +g1,17752:9950313,43405067 +g1,17752:10282267,43405067 +g1,17752:10614221,43405067 +g1,17752:10946175,43405067 +g1,17752:11278129,43405067 +g1,17752:11610083,43405067 +g1,17752:11942037,43405067 +g1,17752:12273991,43405067 +g1,17752:12605945,43405067 +g1,17752:12937899,43405067 +g1,17752:13269853,43405067 +g1,17752:13601807,43405067 +g1,17752:13933761,43405067 +g1,17752:14265715,43405067 +g1,17752:16257439,43405067 +g1,17752:16921347,43405067 +h1,17752:20904794,43405067:0,0,0 +k1,17752:32583029,43405067:11678235 +g1,17752:32583029,43405067 +) +] +) +g1,17754:32583029,43517919 +g1,17754:6630773,43517919 +g1,17754:6630773,43517919 +g1,17754:32583029,43517919 +g1,17754:32583029,43517919 +) +h1,17754:6630773,43714527:0,0,0 +] +(1,17763:32583029,45706769:0,0,0 +g1,17763:32583029,45706769 +) +) +] +(1,17763:6630773,47279633:25952256,0,0 +h1,17763:6630773,47279633:25952256,0,0 +) +] +(1,17763:4262630,4025873:0,0,0 +[1,17763:-473656,4025873:0,0,0 +(1,17763:-473656,-710413:0,0,0 +(1,17763:-473656,-710413:0,0,0 +g1,17763:-473656,-710413 +) +g1,17763:-473656,-710413 +) +] +) +] +!32166 +}291 Input:2645:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2646:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!482 -{310 -[1,17793:4262630,47279633:28320399,43253760,0 -(1,17793:4262630,4025873:0,0,0 -[1,17793:-473656,4025873:0,0,0 -(1,17793:-473656,-710413:0,0,0 -(1,17793:-473656,-644877:0,0,0 -k1,17793:-473656,-644877:-65536 +Input:2647:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2648:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2649:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2650:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2651:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2652:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2653:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2654:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2655:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2656:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2657:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2658:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2659:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1422 +{292 +[1,17799:4262630,47279633:28320399,43253760,0 +(1,17799:4262630,4025873:0,0,0 +[1,17799:-473656,4025873:0,0,0 +(1,17799:-473656,-710413:0,0,0 +(1,17799:-473656,-644877:0,0,0 +k1,17799:-473656,-644877:-65536 ) -(1,17793:-473656,4736287:0,0,0 -k1,17793:-473656,4736287:5209943 +(1,17799:-473656,4736287:0,0,0 +k1,17799:-473656,4736287:5209943 ) -g1,17793:-473656,-710413 +g1,17799:-473656,-710413 ) ] ) -[1,17793:6630773,47279633:25952256,43253760,0 -[1,17793:6630773,4812305:25952256,786432,0 -(1,17793:6630773,4812305:25952256,485622,11795 -(1,17793:6630773,4812305:25952256,485622,11795 -g1,17793:3078558,4812305 -[1,17793:3078558,4812305:0,0,0 -(1,17793:3078558,2439708:0,1703936,0 -k1,17793:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,17793:2537886,2439708:1179648,16384,0 +[1,17799:6630773,47279633:25952256,43253760,0 +[1,17799:6630773,4812305:25952256,786432,0 +(1,17799:6630773,4812305:25952256,485622,11795 +(1,17799:6630773,4812305:25952256,485622,11795 +g1,17799:3078558,4812305 +[1,17799:3078558,4812305:0,0,0 +(1,17799:3078558,2439708:0,1703936,0 +k1,17799:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,17799:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,17793:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,17799:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,17793:3078558,4812305:0,0,0 -(1,17793:3078558,2439708:0,1703936,0 -g1,17793:29030814,2439708 -g1,17793:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,17793:36151628,1915420:16384,1179648,0 +[1,17799:3078558,4812305:0,0,0 +(1,17799:3078558,2439708:0,1703936,0 +g1,17799:29030814,2439708 +g1,17799:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,17799:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,17793:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,17799:37855564,2439708:1179648,16384,0 ) ) -k1,17793:3078556,2439708:-34777008 +k1,17799:3078556,2439708:-34777008 ) ] -[1,17793:3078558,4812305:0,0,0 -(1,17793:3078558,49800853:0,16384,2228224 -k1,17793:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,17793:2537886,49800853:1179648,16384,0 +[1,17799:3078558,4812305:0,0,0 +(1,17799:3078558,49800853:0,16384,2228224 +k1,17799:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,17799:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,17793:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,17799:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,17793:3078558,4812305:0,0,0 -(1,17793:3078558,49800853:0,16384,2228224 -g1,17793:29030814,49800853 -g1,17793:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,17793:36151628,51504789:16384,1179648,0 +[1,17799:3078558,4812305:0,0,0 +(1,17799:3078558,49800853:0,16384,2228224 +g1,17799:29030814,49800853 +g1,17799:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,17799:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,17793:37855564,49800853:1179648,16384,0 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,17799:37855564,49800853:1179648,16384,0 ) ) -k1,17793:3078556,49800853:-34777008 +k1,17799:3078556,49800853:-34777008 ) ] -g1,17793:6630773,4812305 -g1,17793:6630773,4812305 -g1,17793:10347975,4812305 -k1,17793:31387651,4812305:21039676 -) -) -] -[1,17793:6630773,45706769:25952256,40108032,0 -(1,17793:6630773,45706769:25952256,40108032,0 -(1,17793:6630773,45706769:0,0,0 -g1,17793:6630773,45706769 -) -[1,17793:6630773,45706769:25952256,40108032,0 -(1,17728:6630773,14682403:25952256,9083666,0 -k1,17728:10523651,14682403:3892878 -h1,17727:10523651,14682403:0,0,0 -(1,17727:10523651,14682403:18166500,9083666,0 -(1,17727:10523651,14682403:18167376,9083688,0 -(1,17727:10523651,14682403:18167376,9083688,0 -(1,17727:10523651,14682403:0,9083688,0 -(1,17727:10523651,14682403:0,14208860,0 -(1,17727:10523651,14682403:28417720,14208860,0 -) -k1,17727:10523651,14682403:-28417720 +g1,17799:6630773,4812305 +g1,17799:6630773,4812305 +g1,17799:10347975,4812305 +k1,17799:31387651,4812305:21039676 ) ) -g1,17727:28691027,14682403 -) -) -) -g1,17728:28690151,14682403 -k1,17728:32583029,14682403:3892878 -) -v1,17735:6630773,16048179:0,393216,0 -(1,17751:6630773,30957554:25952256,15302591,0 -g1,17751:6630773,30957554 -g1,17751:6303093,30957554 -r1,17793:6401397,30957554:98304,15302591,0 -g1,17751:6600626,30957554 -g1,17751:6797234,30957554 -[1,17751:6797234,30957554:25785795,15302591,0 -(1,17736:6797234,16443282:25785795,788319,218313 -(1,17735:6797234,16443282:0,788319,218313 -r1,17793:7917113,16443282:1119879,1006632,218313 -k1,17735:6797234,16443282:-1119879 -) -(1,17735:6797234,16443282:1119879,788319,218313 -) -k1,17735:8102326,16443282:185213 -k1,17735:8430006,16443282:327680 -k1,17735:9811907,16443282:185214 -k1,17735:11735135,16443282:185213 -k1,17735:12606511,16443282:185214 -k1,17735:13147584,16443282:185213 -k1,17735:16307477,16443282:185214 -k1,17735:18358500,16443282:185213 -k1,17735:19647996,16443282:185214 -k1,17735:20580975,16443282:185213 -k1,17735:22052005,16443282:185214 -k1,17735:23750444,16443282:185213 -k1,17735:25633696,16443282:185214 -k1,17735:26628279,16443282:185213 -k1,17735:30216122,16443282:185214 -k1,17735:31931601,16443282:185213 -k1,17735:32583029,16443282:0 -) -(1,17736:6797234,17284770:25785795,513147,134348 -k1,17735:7770007,17284770:225007 -k1,17735:10200300,17284770:225006 -k1,17735:11076735,17284770:225007 -k1,17735:12320826,17284770:225006 -k1,17735:14992948,17284770:225007 -k1,17735:18087121,17284770:225007 -k1,17735:19503572,17284770:225006 -k1,17735:20676230,17284770:225007 -k1,17735:22593376,17284770:225006 -k1,17735:25762916,17284770:225007 -k1,17735:26749450,17284770:225006 -k1,17735:29401911,17284770:225007 -k1,17735:32583029,17284770:0 -) -(1,17736:6797234,18126258:25785795,513147,134348 -k1,17735:10468823,18126258:268960 -k1,17735:11389210,18126258:268959 -k1,17735:14055477,18126258:268960 -k1,17735:17935471,18126258:268960 -k1,17735:18863723,18126258:268960 -k1,17735:22813839,18126258:268959 -k1,17735:26017501,18126258:268960 -k1,17735:27305546,18126258:268960 -k1,17735:29840085,18126258:268959 -k1,17735:31923737,18126258:268960 -k1,17735:32583029,18126258:0 -) -(1,17736:6797234,18967746:25785795,505283,126483 -$1,17735:8351748,18967746 -g1,17735:8550977,18967746 -g1,17735:10520333,18967746 -g1,17735:11370990,18967746 -g1,17735:12317985,18967746 -g1,17735:14363363,18967746 -k1,17736:32583029,18967746:15591672 -g1,17736:32583029,18967746 -) -v1,17738:6797234,20158212:0,393216,0 -(1,17743:6797234,21145778:25785795,1380782,196608 -g1,17743:6797234,21145778 -g1,17743:6797234,21145778 -g1,17743:6600626,21145778 -(1,17743:6600626,21145778:0,1380782,196608 -r1,17793:32779637,21145778:26179011,1577390,196608 -k1,17743:6600625,21145778:-26179012 -) -(1,17743:6600626,21145778:26179011,1380782,196608 -[1,17743:6797234,21145778:25785795,1184174,0 -(1,17740:6797234,20372122:25785795,410518,107478 -(1,17739:6797234,20372122:0,0,0 -g1,17739:6797234,20372122 -g1,17739:6797234,20372122 -g1,17739:6469554,20372122 -(1,17739:6469554,20372122:0,0,0 -) -g1,17739:6797234,20372122 -) -k1,17740:6797234,20372122:0 -g1,17740:10590983,20372122 -g1,17740:11223275,20372122 -g1,17740:13752441,20372122 -g1,17740:15649316,20372122 -g1,17740:16281608,20372122 -g1,17740:20391502,20372122 -g1,17740:21023794,20372122 -g1,17740:21656086,20372122 -g1,17740:23552961,20372122 -g1,17740:25765981,20372122 -g1,17740:26398273,20372122 -g1,17740:30508167,20372122 -h1,17740:30824313,20372122:0,0,0 -k1,17740:32583029,20372122:1758716 -g1,17740:32583029,20372122 -) -(1,17741:6797234,21038300:25785795,404226,107478 -h1,17741:6797234,21038300:0,0,0 -g1,17741:7113380,21038300 -g1,17741:7429526,21038300 -g1,17741:13752440,21038300 -g1,17741:14384732,21038300 -h1,17741:17230043,21038300:0,0,0 -k1,17741:32583029,21038300:15352986 -g1,17741:32583029,21038300 -) -] -) -g1,17743:32583029,21145778 -g1,17743:6797234,21145778 -g1,17743:6797234,21145778 -g1,17743:32583029,21145778 -g1,17743:32583029,21145778 -) -h1,17743:6797234,21342386:0,0,0 -(1,17746:6797234,30957554:25785795,9025344,0 -k1,17746:10665143,30957554:3867909 -h1,17745:10665143,30957554:0,0,0 -(1,17745:10665143,30957554:18049977,9025344,0 -(1,17745:10665143,30957554:18050733,9025366,0 -(1,17745:10665143,30957554:18050733,9025366,0 -(1,17745:10665143,30957554:0,9025366,0 -(1,17745:10665143,30957554:0,14208860,0 -(1,17745:10665143,30957554:28417720,14208860,0 -) -k1,17745:10665143,30957554:-28417720 -) -) -g1,17745:28715876,30957554 -) -) -) -g1,17746:28715120,30957554 -k1,17746:32583029,30957554:3867909 -) -] -g1,17751:32583029,30957554 -) -h1,17751:6630773,30957554:0,0,0 -v1,17754:6630773,32323330:0,393216,0 -(1,17793:6630773,43092846:25952256,11162732,0 -g1,17793:6630773,43092846 -g1,17793:6303093,43092846 -r1,17793:6401397,43092846:98304,11162732,0 -g1,17793:6600626,43092846 -g1,17793:6797234,43092846 -[1,17793:6797234,43092846:25785795,11162732,0 -(1,17755:6797234,32685403:25785795,755289,196608 -(1,17754:6797234,32685403:0,755289,196608 -r1,17793:8134168,32685403:1336934,951897,196608 -k1,17754:6797234,32685403:-1336934 -) -(1,17754:6797234,32685403:1336934,755289,196608 -) -k1,17754:8338035,32685403:203867 -k1,17754:8665715,32685403:327680 -k1,17754:10066270,32685403:203868 -k1,17754:14524079,32685403:203867 -k1,17754:18221015,32685403:203867 -k1,17754:19186411,32685403:203868 -k1,17754:20967730,32685403:203867 -k1,17754:22363042,32685403:203867 -k1,17754:24538887,32685403:203867 -k1,17754:26486013,32685403:203868 -k1,17754:27305918,32685403:203867 -k1,17754:28794291,32685403:203867 -k1,17754:30575611,32685403:203868 -k1,17754:31310975,32685403:203867 -k1,17755:32583029,32685403:0 -) -(1,17755:6797234,33526891:25785795,505283,134348 -k1,17754:8658814,33526891:252671 -k1,17754:10102930,33526891:252671 -k1,17754:12327579,33526891:252671 -k1,17754:16973784,33526891:252671 -k1,17754:17854290,33526891:252671 -k1,17754:19558582,33526891:252670 -k1,17754:21178334,33526891:252671 -k1,17754:22450090,33526891:252671 -k1,17754:26956703,33526891:252671 -k1,17754:28313656,33526891:252671 -k1,17754:29314093,33526891:252671 -k1,17754:32583029,33526891:0 -) -(1,17755:6797234,34368379:25785795,513147,134348 -k1,17754:9768964,34368379:198246 -k1,17754:12878976,34368379:198247 -k1,17754:14268667,34368379:198246 -k1,17754:18522936,34368379:198246 -k1,17754:20522112,34368379:198247 -k1,17754:21406520,34368379:198246 -k1,17754:23680291,34368379:198246 -k1,17754:25733862,34368379:198247 -k1,17754:26463605,34368379:198246 -k1,17754:28639072,34368379:198246 -k1,17754:30535357,34368379:198247 -k1,17754:31601955,34368379:198246 -k1,17755:32583029,34368379:0 -) -(1,17755:6797234,35209867:25785795,513147,134348 -k1,17754:8168793,35209867:204363 -k1,17754:9024584,35209867:204363 -k1,17754:10944680,35209867:204363 -k1,17754:13191800,35209867:204363 -k1,17754:17176280,35209867:204363 -k1,17754:19572822,35209867:204363 -k1,17754:21826496,35209867:204363 -k1,17754:22562356,35209867:204363 -k1,17754:24368419,35209867:204363 -k1,17754:27877763,35209867:204363 -k1,17754:29595352,35209867:204363 -k1,17754:31193666,35209867:204363 -k1,17754:32583029,35209867:0 -) -(1,17755:6797234,36051355:25785795,513147,134348 -g1,17754:8840646,36051355 -g1,17754:9691303,36051355 -g1,17754:11620027,36051355 -g1,17754:14911900,36051355 -g1,17754:17129638,36051355 -g1,17754:18011752,36051355 -g1,17754:19912951,36051355 -g1,17754:23061955,36051355 -k1,17755:32583029,36051355:6741692 -g1,17755:32583029,36051355 -) -(1,17757:6797234,36892843:25785795,513147,134348 -h1,17756:6797234,36892843:983040,0,0 -k1,17756:9681809,36892843:183836 -k1,17756:12561141,36892843:183836 -(1,17756:12561141,36892843:0,452978,122846 -r1,17793:17491661,36892843:4930520,575824,122846 -k1,17756:12561141,36892843:-4930520 -) -(1,17756:12561141,36892843:4930520,452978,122846 -k1,17756:12561141,36892843:3277 -h1,17756:17488384,36892843:0,411205,112570 -) -k1,17756:17675497,36892843:183836 -k1,17756:19426954,36892843:183836 -k1,17756:22190942,36892843:183836 -k1,17756:24364449,36892843:183835 -k1,17756:25079782,36892843:183836 -k1,17756:26776844,36892843:183836 -k1,17756:28829111,36892843:183836 -k1,17756:29664375,36892843:183836 -k1,17756:31563944,36892843:183836 -k1,17756:32583029,36892843:0 -) -(1,17757:6797234,37734331:25785795,505283,134348 -k1,17756:11233628,37734331:182452 -k1,17756:13458837,37734331:182452 -k1,17756:14402818,37734331:182453 -k1,17756:17161490,37734331:182452 -k1,17756:18114645,37734331:182452 -k1,17756:20145212,37734331:182452 -k1,17756:23813524,37734331:182452 -k1,17756:26431295,37734331:182453 -k1,17756:27805192,37734331:182452 -k1,17756:31023272,37734331:182452 -k1,17757:32583029,37734331:0 -) -(1,17757:6797234,38575819:25785795,513147,126483 -k1,17756:8616263,38575819:221261 -k1,17756:9785175,38575819:221261 -k1,17756:11458058,38575819:221261 -k1,17756:15594441,38575819:221262 -k1,17756:16769251,38575819:221261 -k1,17756:18520778,38575819:221261 -k1,17756:19393467,38575819:221261 -k1,17756:20707213,38575819:221261 -k1,17756:21947559,38575819:221261 -(1,17756:21947559,38575819:0,452978,115847 -r1,17793:23712672,38575819:1765113,568825,115847 -k1,17756:21947559,38575819:-1765113 -) -(1,17756:21947559,38575819:1765113,452978,115847 -k1,17756:21947559,38575819:3277 -h1,17756:23709395,38575819:0,411205,112570 -) -k1,17756:23933933,38575819:221261 -k1,17756:25985616,38575819:221262 -k1,17756:26866169,38575819:221261 -k1,17756:28106515,38575819:221261 -k1,17756:30942007,38575819:221261 -k1,17757:32583029,38575819:0 -) -(1,17757:6797234,39417307:25785795,513147,7863 -g1,17756:8594231,39417307 -g1,17756:9741111,39417307 -g1,17756:12118757,39417307 -g1,17756:12969414,39417307 -g1,17756:13916409,39417307 -k1,17757:32583029,39417307:16492135 -g1,17757:32583029,39417307 -) -v1,17759:6797234,40607773:0,393216,0 -(1,17766:6797234,42896238:25785795,2681681,196608 -g1,17766:6797234,42896238 -g1,17766:6797234,42896238 -g1,17766:6600626,42896238 -(1,17766:6600626,42896238:0,2681681,196608 -r1,17793:32779637,42896238:26179011,2878289,196608 -k1,17766:6600625,42896238:-26179012 -) -(1,17766:6600626,42896238:26179011,2681681,196608 -[1,17766:6797234,42896238:25785795,2485073,0 -(1,17761:6797234,40821683:25785795,410518,107478 -(1,17760:6797234,40821683:0,0,0 -g1,17760:6797234,40821683 -g1,17760:6797234,40821683 -g1,17760:6469554,40821683 -(1,17760:6469554,40821683:0,0,0 -) -g1,17760:6797234,40821683 -) -k1,17761:6797234,40821683:0 -g1,17761:10590983,40821683 -g1,17761:11223275,40821683 -g1,17761:13752441,40821683 -g1,17761:15649316,40821683 -g1,17761:16281608,40821683 -g1,17761:20391502,40821683 -g1,17761:21023794,40821683 -g1,17761:21656086,40821683 -g1,17761:23552960,40821683 -h1,17761:23869106,40821683:0,0,0 -k1,17761:32583029,40821683:8713923 -g1,17761:32583029,40821683 -) -(1,17762:6797234,41487861:25785795,404226,107478 -h1,17762:6797234,41487861:0,0,0 -g1,17762:7113380,41487861 -g1,17762:7429526,41487861 -g1,17762:13120149,41487861 -g1,17762:13752441,41487861 -g1,17762:16281607,41487861 -h1,17762:16597753,41487861:0,0,0 -k1,17762:32583029,41487861:15985276 -g1,17762:32583029,41487861 -) -(1,17763:6797234,42154039:25785795,404226,107478 -h1,17763:6797234,42154039:0,0,0 -g1,17763:7113380,42154039 -g1,17763:7429526,42154039 -g1,17763:14384731,42154039 -g1,17763:15017023,42154039 -g1,17763:23552957,42154039 -g1,17763:24185249,42154039 -g1,17763:26082124,42154039 -g1,17763:27978998,42154039 -g1,17763:28611290,42154039 -k1,17763:28611290,42154039:0 -h1,17763:30192019,42154039:0,0,0 -k1,17763:32583029,42154039:2391010 -g1,17763:32583029,42154039 -) -(1,17764:6797234,42820217:25785795,404226,76021 -h1,17764:6797234,42820217:0,0,0 -g1,17764:7113380,42820217 -g1,17764:7429526,42820217 -g1,17764:7745672,42820217 -g1,17764:8061818,42820217 -g1,17764:8377964,42820217 -g1,17764:8694110,42820217 -g1,17764:9010256,42820217 -g1,17764:9326402,42820217 -g1,17764:9642548,42820217 -g1,17764:9958694,42820217 -g1,17764:10274840,42820217 -g1,17764:10590986,42820217 -g1,17764:10907132,42820217 -g1,17764:11223278,42820217 -g1,17764:11539424,42820217 -g1,17764:13752444,42820217 -g1,17764:14384736,42820217 -h1,17764:16281610,42820217:0,0,0 -k1,17764:32583029,42820217:16301419 -g1,17764:32583029,42820217 -) -] -) -g1,17766:32583029,42896238 -g1,17766:6797234,42896238 -g1,17766:6797234,42896238 -g1,17766:32583029,42896238 -g1,17766:32583029,42896238 -) -h1,17766:6797234,43092846:0,0,0 -] -g1,17793:32583029,43092846 -) -] -(1,17793:32583029,45706769:0,0,0 -g1,17793:32583029,45706769 -) -) -] -(1,17793:6630773,47279633:25952256,0,0 -h1,17793:6630773,47279633:25952256,0,0 -) -] -(1,17793:4262630,4025873:0,0,0 -[1,17793:-473656,4025873:0,0,0 -(1,17793:-473656,-710413:0,0,0 -(1,17793:-473656,-710413:0,0,0 -g1,17793:-473656,-710413 -) -g1,17793:-473656,-710413 -) -] -) -] -!15918 -}310 -Input:2647:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!106 -{311 -[1,17817:4262630,47279633:28320399,43253760,0 -(1,17817:4262630,4025873:0,0,0 -[1,17817:-473656,4025873:0,0,0 -(1,17817:-473656,-710413:0,0,0 -(1,17817:-473656,-644877:0,0,0 -k1,17817:-473656,-644877:-65536 -) -(1,17817:-473656,4736287:0,0,0 -k1,17817:-473656,4736287:5209943 +] +[1,17799:6630773,45706769:25952256,40108032,0 +(1,17799:6630773,45706769:25952256,40108032,0 +(1,17799:6630773,45706769:0,0,0 +g1,17799:6630773,45706769 ) -g1,17817:-473656,-710413 +[1,17799:6630773,45706769:25952256,40108032,0 +(1,17757:6630773,14682403:25952256,9083666,0 +k1,17757:10523651,14682403:3892878 +h1,17756:10523651,14682403:0,0,0 +(1,17756:10523651,14682403:18166500,9083666,0 +(1,17756:10523651,14682403:18167376,9083688,0 +(1,17756:10523651,14682403:18167376,9083688,0 +(1,17756:10523651,14682403:0,9083688,0 +(1,17756:10523651,14682403:0,14208860,0 +(1,17756:10523651,14682403:28417720,14208860,0 ) -] +k1,17756:10523651,14682403:-28417720 ) -[1,17817:6630773,47279633:25952256,43253760,0 -[1,17817:6630773,4812305:25952256,786432,0 -(1,17817:6630773,4812305:25952256,513147,126483 -(1,17817:6630773,4812305:25952256,513147,126483 -g1,17817:3078558,4812305 -[1,17817:3078558,4812305:0,0,0 -(1,17817:3078558,2439708:0,1703936,0 -k1,17817:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,17817:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,17817:3078558,1915420:16384,1179648,0 +g1,17756:28691027,14682403 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 ) -] ) +g1,17757:28690151,14682403 +k1,17757:32583029,14682403:3892878 ) +(1,17764:6630773,15547483:25952256,513147,134348 +h1,17763:6630773,15547483:983040,0,0 +k1,17763:8519224,15547483:277576 +k1,17763:9725366,15547483:277497 +k1,17763:11194388,15547483:277577 +k1,17763:12491049,15547483:277576 +k1,17763:14133740,15547483:277576 +k1,17763:15070608,15547483:277576 +k1,17763:17819547,15547483:277576 +k1,17763:18756415,15547483:277576 +k1,17763:20053076,15547483:277576 +k1,17763:24256914,15547483:277576 +k1,17763:27428560,15547483:277576 +k1,17763:28237633,15547483:277576 +k1,17763:31931601,15547483:277576 +k1,17763:32583029,15547483:0 +) +(1,17764:6630773,16412563:25952256,513147,134348 +k1,17763:9534580,16412563:187995 +k1,17763:10741659,16412563:187994 +k1,17763:12609997,16412563:187995 +k1,17763:13457284,16412563:187995 +k1,17763:17256312,16412563:187994 +k1,17763:18391958,16412563:187995 +k1,17763:19599037,16412563:187994 +k1,17763:21122000,16412563:187995 +k1,17763:23244618,16412563:187995 +k1,17763:25593989,16412563:187994 +k1,17763:27471502,16412563:187995 +k1,17763:28275535,16412563:187995 +k1,17763:30010834,16412563:187994 +k1,17763:31217914,16412563:187995 +k1,17763:32583029,16412563:0 +) +(1,17764:6630773,17277643:25952256,513147,134348 +g1,17763:7489294,17277643 +g1,17763:10159886,17277643 +g1,17763:11018407,17277643 +g1,17763:12236721,17277643 +g1,17763:15319534,17277643 +g1,17763:18412833,17277643 +g1,17763:19143559,17277643 +g1,17763:22759180,17277643 +k1,17764:32583029,17277643:7322995 +g1,17764:32583029,17277643 +) +(1,17768:6630773,20108803:25952256,32768,229376 +(1,17768:6630773,20108803:0,32768,229376 +(1,17768:6630773,20108803:5505024,32768,229376 +r1,17799:12135797,20108803:5505024,262144,229376 +) +k1,17768:6630773,20108803:-5505024 +) +(1,17768:6630773,20108803:25952256,32768,0 +r1,17799:32583029,20108803:25952256,32768,0 +) +) +(1,17768:6630773,21740655:25952256,606339,14155 +(1,17768:6630773,21740655:1974731,582746,14155 +g1,17768:6630773,21740655 +g1,17768:8605504,21740655 +) +k1,17768:32583029,21740655:19476774 +g1,17768:32583029,21740655 +) +(1,17772:6630773,22998951:25952256,513147,134348 +k1,17771:9795316,22998951:319625 +k1,17771:13622428,22998951:319625 +k1,17771:16468466,22998951:319625 +k1,17771:19550433,22998951:319624 +k1,17771:23085254,22998951:319625 +k1,17771:25179594,22998951:319625 +(1,17771:25179594,22998951:0,452978,122846 +r1,17799:29406690,22998951:4227096,575824,122846 +k1,17771:25179594,22998951:-4227096 +) +(1,17771:25179594,22998951:4227096,452978,122846 +k1,17771:25179594,22998951:3277 +h1,17771:29403413,22998951:0,411205,112570 +) +k1,17771:29726315,22998951:319625 +k1,17772:32583029,22998951:0 +) +(1,17772:6630773,23864031:25952256,505283,126483 +(1,17771:6630773,23864031:0,452978,115847 +r1,17799:8395886,23864031:1765113,568825,115847 +k1,17771:6630773,23864031:-1765113 +) +(1,17771:6630773,23864031:1765113,452978,115847 +k1,17771:6630773,23864031:3277 +h1,17771:8392609,23864031:0,411205,112570 +) +k1,17771:8808520,23864031:238964 +k1,17771:10238929,23864031:238964 +(1,17771:10238929,23864031:0,452978,122846 +r1,17799:14114313,23864031:3875384,575824,122846 +k1,17771:10238929,23864031:-3875384 +) +(1,17771:10238929,23864031:3875384,452978,122846 +k1,17771:10238929,23864031:3277 +h1,17771:14111036,23864031:0,411205,112570 +) +k1,17771:14353277,23864031:238964 +k1,17771:17448954,23864031:238963 +(1,17771:17448954,23864031:0,452978,115847 +r1,17799:20269203,23864031:2820249,568825,115847 +k1,17771:17448954,23864031:-2820249 +) +(1,17771:17448954,23864031:2820249,452978,115847 +k1,17771:17448954,23864031:3277 +h1,17771:20265926,23864031:0,411205,112570 +) +k1,17771:20681837,23864031:238964 +k1,17771:22387497,23864031:238964 +k1,17771:25152874,23864031:238964 +(1,17771:25152874,23864031:0,414482,115847 +r1,17799:25511140,23864031:358266,530329,115847 +k1,17771:25152874,23864031:-358266 +) +(1,17771:25152874,23864031:358266,414482,115847 +k1,17771:25152874,23864031:3277 +h1,17771:25507863,23864031:0,411205,112570 +) +k1,17771:25923774,23864031:238964 +(1,17771:25923774,23864031:0,414482,115847 +r1,17799:26282040,23864031:358266,530329,115847 +k1,17771:25923774,23864031:-358266 +) +(1,17771:25923774,23864031:358266,414482,115847 +k1,17771:25923774,23864031:3277 +h1,17771:26278763,23864031:0,411205,112570 +) +k1,17771:26694674,23864031:238964 +(1,17771:26694674,23864031:0,452978,115847 +r1,17799:28459787,23864031:1765113,568825,115847 +k1,17771:26694674,23864031:-1765113 +) +(1,17771:26694674,23864031:1765113,452978,115847 +k1,17771:26694674,23864031:3277 +h1,17771:28456510,23864031:0,411205,112570 +) +k1,17771:28698750,23864031:238963 +k1,17771:30129159,23864031:238964 +(1,17771:30129159,23864031:0,452978,115847 +r1,17799:31542560,23864031:1413401,568825,115847 +k1,17771:30129159,23864031:-1413401 +) +(1,17771:30129159,23864031:1413401,452978,115847 +k1,17771:30129159,23864031:3277 +h1,17771:31539283,23864031:0,411205,112570 +) +k1,17771:31955194,23864031:238964 +k1,17771:32583029,23864031:0 +) +(1,17772:6630773,24729111:25952256,513147,134348 +k1,17771:7987327,24729111:153313 +k1,17771:10419327,24729111:153313 +k1,17771:11440991,24729111:153312 +k1,17771:12726766,24729111:153313 +k1,17771:15549360,24729111:153313 +k1,17771:16721758,24729111:153313 +k1,17771:19637414,24729111:153313 +(1,17771:19637414,24729111:0,452978,122846 +r1,17799:23161086,24729111:3523672,575824,122846 +k1,17771:19637414,24729111:-3523672 +) +(1,17771:19637414,24729111:3523672,452978,122846 +k1,17771:19637414,24729111:3277 +h1,17771:23157809,24729111:0,411205,112570 +) +k1,17771:23314399,24729111:153313 +k1,17771:26251680,24729111:153312 +k1,17771:27021031,24729111:153313 +k1,17771:29754496,24729111:153313 +k1,17771:32583029,24729111:0 +) +(1,17772:6630773,25594191:25952256,513147,134348 +k1,17771:7990228,25594191:168010 +k1,17771:9850379,25594191:168011 +k1,17771:13010108,25594191:168010 +k1,17771:14745740,25594191:168011 +k1,17771:17824204,25594191:168010 +k1,17771:19276721,25594191:168011 +k1,17771:21596933,25594191:168010 +k1,17771:24767147,25594191:168011 +k1,17771:26131844,25594191:168010 +k1,17771:28688642,25594191:168011 +k1,17771:31015408,25594191:168010 +k1,17771:32583029,25594191:0 +) +(1,17772:6630773,26459271:25952256,505283,126483 +k1,17771:8436038,26459271:203565 +k1,17771:10135789,26459271:203564 +k1,17771:13331073,26459271:203565 +k1,17771:14667100,26459271:203565 +k1,17771:15936935,26459271:203564 +k1,17771:16888266,26459271:203565 +k1,17771:19341027,26459271:203565 +k1,17771:20938543,26459271:203565 +k1,17771:22161192,26459271:203564 +k1,17771:26059021,26459271:203565 +k1,17771:27547092,26459271:203565 +k1,17771:30128958,26459271:203564 +k1,17771:31464985,26459271:203565 +k1,17771:32583029,26459271:0 +) +(1,17772:6630773,27324351:25952256,505283,126483 +g1,17771:8469057,27324351 +g1,17771:9319714,27324351 +g1,17771:10543926,27324351 +g1,17771:11762240,27324351 +k1,17772:32583029,27324351:19039520 +g1,17772:32583029,27324351 +) +(1,17774:6630773,28189431:25952256,513147,134348 +h1,17773:6630773,28189431:983040,0,0 +k1,17773:9858531,28189431:142978 +k1,17773:10949159,28189431:142977 +k1,17773:14074025,28189431:142978 +k1,17773:16852205,28189431:142977 +k1,17773:20435168,28189431:142978 +k1,17773:22626145,28189431:142977 +k1,17773:23124983,28189431:142978 +k1,17773:25673133,28189431:142978 +k1,17773:26502272,28189431:142977 +k1,17773:27415953,28189431:142978 +k1,17773:30804928,28189431:142977 +k1,17773:31563944,28189431:142978 +k1,17773:32583029,28189431:0 +) +(1,17774:6630773,29054511:25952256,505283,134348 +k1,17773:8423707,29054511:139461 +k1,17773:9801142,29054511:139460 +k1,17773:10626765,29054511:139461 +k1,17773:13448614,29054511:139460 +k1,17773:15636075,29054511:139461 +k1,17773:16131396,29054511:139461 +k1,17773:19278303,29054511:139460 +k1,17773:20103926,29054511:139461 +k1,17773:21014089,29054511:139460 +k1,17773:24399548,29054511:139461 +k1,17773:25166844,29054511:139461 +k1,17773:26509545,29054511:139460 +k1,17773:28927693,29054511:139461 +k1,17773:29935505,29054511:139460 +k1,17773:31207428,29054511:139461 +k1,17773:32583029,29054511:0 +) +(1,17774:6630773,29919591:25952256,513147,134348 +k1,17773:9519094,29919591:219040 +k1,17773:13178120,29919591:219041 +k1,17773:15282631,29919591:219040 +k1,17773:16976887,29919591:219041 +k1,17773:17882089,29919591:219040 +k1,17773:18456989,29919591:219040 +k1,17773:20941610,29919591:219041 +k1,17773:23565822,29919591:219040 +(1,17773:23565822,29919591:0,452978,115847 +r1,17799:28144630,29919591:4578808,568825,115847 +k1,17773:23565822,29919591:-4578808 +) +(1,17773:23565822,29919591:4578808,452978,115847 +k1,17773:23565822,29919591:3277 +h1,17773:28141353,29919591:0,411205,112570 +) +k1,17773:28363671,29919591:219041 +k1,17773:30468182,29919591:219040 +k1,17773:32583029,29919591:0 +) +(1,17774:6630773,30784671:25952256,513147,134348 +k1,17773:8837917,30784671:196499 +k1,17773:11448761,30784671:196498 +k1,17773:12331422,30784671:196499 +k1,17773:15286986,30784671:196498 +k1,17773:16680172,30784671:196499 +k1,17773:20316655,30784671:196498 +k1,17773:21797660,30784671:196499 +k1,17773:23469374,30784671:196499 +k1,17773:25367842,30784671:196498 +k1,17773:28246730,30784671:196499 +k1,17773:29129390,30784671:196498 +k1,17773:31591469,30784671:196499 +k1,17773:32583029,30784671:0 +) +(1,17774:6630773,31649751:25952256,505283,134348 +g1,17773:9920025,31649751 +g1,17773:10735292,31649751 +g1,17773:13213208,31649751 +h1,17773:14755926,31649751:0,0,0 +g1,17773:14955155,31649751 +g1,17773:17834807,31649751 +g1,17773:19427987,31649751 +g1,17773:20646301,31649751 +g1,17773:25469095,31649751 +k1,17774:32583029,31649751:4280813 +g1,17774:32583029,31649751 +) +(1,17775:6630773,33766569:25952256,555811,12975 +(1,17775:6630773,33766569:2450326,534184,12975 +g1,17775:6630773,33766569 +g1,17775:9081099,33766569 +) +k1,17775:32583028,33766569:21628320 +g1,17775:32583028,33766569 +) +(1,17779:6630773,35024865:25952256,505283,126483 +k1,17778:7627617,35024865:178955 +k1,17778:9882098,35024865:178956 +k1,17778:12094635,35024865:178955 +k1,17778:12889628,35024865:178955 +k1,17778:14271825,35024865:178956 +k1,17778:17042074,35024865:178955 +(1,17778:17042074,35024865:0,452978,122846 +r1,17799:21269170,35024865:4227096,575824,122846 +k1,17778:17042074,35024865:-4227096 +) +(1,17778:17042074,35024865:4227096,452978,122846 +k1,17778:17042074,35024865:3277 +h1,17778:21265893,35024865:0,411205,112570 +) +k1,17778:21621795,35024865:178955 +k1,17778:22905033,35024865:178956 +k1,17778:23831754,35024865:178955 +k1,17778:25523935,35024865:178955 +k1,17778:26354319,35024865:178956 +k1,17778:27730617,35024865:178955 +k1,17778:28265432,35024865:178955 +k1,17778:30002179,35024865:178956 +k1,17778:31575085,35024865:178955 +k1,17779:32583029,35024865:0 +) +(1,17779:6630773,35889945:25952256,505283,126483 +k1,17778:10055421,35889945:147848 +k1,17778:14012878,35889945:147849 +k1,17778:14922254,35889945:147848 +k1,17778:17688922,35889945:147849 +k1,17778:18519655,35889945:147848 +k1,17778:21482931,35889945:147849 +k1,17778:24243044,35889945:147848 +(1,17778:24243044,35889945:0,452978,115847 +r1,17799:25304733,35889945:1061689,568825,115847 +k1,17778:24243044,35889945:-1061689 +) +(1,17778:24243044,35889945:1061689,452978,115847 +k1,17778:24243044,35889945:3277 +h1,17778:25301456,35889945:0,411205,112570 +) +k1,17778:25452582,35889945:147849 +k1,17778:28600013,35889945:147848 +k1,17778:29766947,35889945:147849 +k1,17778:32583029,35889945:0 +) +(1,17779:6630773,36755025:25952256,513147,134348 +k1,17778:7491916,36755025:201851 +k1,17778:10596357,36755025:201851 +k1,17778:11414246,36755025:201851 +k1,17778:12635181,36755025:201850 +k1,17778:15267107,36755025:201851 +k1,17778:16128250,36755025:201851 +k1,17778:17349186,36755025:201851 +k1,17778:19032806,36755025:201851 +k1,17778:19704550,36755025:201851 +k1,17778:20437898,36755025:201851 +k1,17778:20995609,36755025:201851 +k1,17778:23817588,36755025:201850 +k1,17778:26704449,36755025:201851 +k1,17778:28097745,36755025:201851 +k1,17778:29997634,36755025:201851 +k1,17778:32583029,36755025:0 +) +(1,17779:6630773,37620105:25952256,505283,126483 +g1,17778:7481430,37620105 +g1,17778:9470447,37620105 +g1,17778:10025536,37620105 +g1,17778:13795166,37620105 +g1,17778:15610513,37620105 +g1,17778:17381951,37620105 +g1,17778:18112677,37620105 +g1,17778:19825132,37620105 +g1,17778:20675789,37620105 +g1,17778:23916544,37620105 +g1,17778:25319014,37620105 +k1,17779:32583029,37620105:4579005 +g1,17779:32583029,37620105 +) +(1,17782:6630773,38485185:25952256,513147,126483 +h1,17780:6630773,38485185:983040,0,0 +k1,17780:8961590,38485185:151090 +k1,17780:10418813,38485185:151090 +k1,17780:13561622,38485185:151090 +k1,17780:15355044,38485185:151090 +k1,17780:17675376,38485185:151090 +k1,17780:19607736,38485185:151091 +k1,17780:22288516,38485185:151090 +k1,17780:25059735,38485185:151090 +k1,17780:28052466,38485185:151090 +k1,17780:29195116,38485185:151090 +k1,17780:31931601,38485185:151090 +k1,17780:32583029,38485185:0 +) +(1,17782:6630773,39350265:25952256,513147,115847 +k1,17780:8293566,39350265:196097 +(1,17780:8293566,39350265:0,414482,115847 +r1,17799:8651832,39350265:358266,530329,115847 +k1,17780:8293566,39350265:-358266 +) +(1,17780:8293566,39350265:358266,414482,115847 +k1,17780:8293566,39350265:3277 +h1,17780:8648555,39350265:0,411205,112570 +) +k1,17780:8847930,39350265:196098 +k1,17780:10235472,39350265:196097 +(1,17780:10235472,39350265:0,414482,115847 +r1,17799:10593738,39350265:358266,530329,115847 +k1,17780:10235472,39350265:-358266 +) +(1,17780:10235472,39350265:358266,414482,115847 +k1,17780:10235472,39350265:3277 +h1,17780:10590461,39350265:0,411205,112570 +) +k1,17780:10963505,39350265:196097 +k1,17781:12876645,39350265:196097 +k1,17781:15148924,39350265:196098 +k1,17781:16491246,39350265:196097 +k1,17781:18431256,39350265:196097 +k1,17781:19575004,39350265:196097 +(1,17781:19575004,39350265:0,452978,115847 +r1,17799:21340117,39350265:1765113,568825,115847 +k1,17781:19575004,39350265:-1765113 +) +(1,17781:19575004,39350265:1765113,452978,115847 +k1,17781:19575004,39350265:3277 +h1,17781:21336840,39350265:0,411205,112570 +) +k1,17781:21709885,39350265:196098 +k1,17781:23406756,39350265:196097 +k1,17781:24218891,39350265:196097 +k1,17781:25587427,39350265:196097 +k1,17781:28718227,39350265:196098 +k1,17781:30071034,39350265:196097 +k1,17781:32583029,39350265:0 +) +(1,17782:6630773,40215345:25952256,513147,95026 +g1,17781:7777653,40215345 +g1,17781:10597011,40215345 +g1,17781:13637881,40215345 +g1,17781:17821699,40215345 +g1,17781:19212373,40215345 +g1,17781:21884275,40215345 +g1,17781:23031155,40215345 +g1,17781:25454676,40215345 +k1,17782:32583029,40215345:4014738 +g1,17782:32583029,40215345 +) +v1,17784:6630773,40900200:0,393216,0 +(1,17790:6630773,42610593:25952256,2103609,196608 +g1,17790:6630773,42610593 +g1,17790:6630773,42610593 +g1,17790:6434165,42610593 +(1,17790:6434165,42610593:0,2103609,196608 +r1,17799:32779637,42610593:26345472,2300217,196608 +k1,17790:6434165,42610593:-26345472 +) +(1,17790:6434165,42610593:26345472,2103609,196608 +[1,17790:6630773,42610593:25952256,1907001,0 +(1,17786:6630773,41128031:25952256,424439,112852 +(1,17785:6630773,41128031:0,0,0 +g1,17785:6630773,41128031 +g1,17785:6630773,41128031 +g1,17785:6303093,41128031 +(1,17785:6303093,41128031:0,0,0 +) +g1,17785:6630773,41128031 +) +k1,17786:6630773,41128031:0 +g1,17786:10614221,41128031 +g1,17786:11278129,41128031 +k1,17786:11278129,41128031:0 +h1,17786:13601807,41128031:0,0,0 +k1,17786:32583029,41128031:18981222 +g1,17786:32583029,41128031 +) +(1,17787:6630773,41812886:25952256,424439,112852 +h1,17787:6630773,41812886:0,0,0 +g1,17787:6962727,41812886 +g1,17787:7294681,41812886 +g1,17787:7626635,41812886 +g1,17787:7958589,41812886 +g1,17787:8290543,41812886 +g1,17787:8622497,41812886 +g1,17787:8954451,41812886 +g1,17787:10946175,41812886 +g1,17787:11610083,41812886 +g1,17787:13601807,41812886 +g1,17787:14265715,41812886 +g1,17787:14929623,41812886 +g1,17787:16589393,41812886 +g1,17787:18581117,41812886 +g1,17787:19245025,41812886 +g1,17787:21236749,41812886 +h1,17787:21568703,41812886:0,0,0 +k1,17787:32583029,41812886:11014326 +g1,17787:32583029,41812886 +) +(1,17788:6630773,42497741:25952256,424439,112852 +h1,17788:6630773,42497741:0,0,0 +g1,17788:6962727,42497741 +g1,17788:7294681,42497741 +k1,17788:7294681,42497741:0 +h1,17788:11278128,42497741:0,0,0 +k1,17788:32583028,42497741:21304900 +g1,17788:32583028,42497741 +) +] +) +g1,17790:32583029,42610593 +g1,17790:6630773,42610593 +g1,17790:6630773,42610593 +g1,17790:32583029,42610593 +g1,17790:32583029,42610593 +) +h1,17790:6630773,42807201:0,0,0 +] +(1,17799:32583029,45706769:0,0,0 +g1,17799:32583029,45706769 +) +) +] +(1,17799:6630773,47279633:25952256,0,0 +h1,17799:6630773,47279633:25952256,0,0 +) +] +(1,17799:4262630,4025873:0,0,0 +[1,17799:-473656,4025873:0,0,0 +(1,17799:-473656,-710413:0,0,0 +(1,17799:-473656,-710413:0,0,0 +g1,17799:-473656,-710413 +) +g1,17799:-473656,-710413 +) +] +) +] +!20108 +}292 +Input:2660:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2661:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2662:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2663:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2664:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2665:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2666:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2667:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2668:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2669:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2670:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1046 +{293 +[1,17857:4262630,47279633:28320399,43253760,0 +(1,17857:4262630,4025873:0,0,0 +[1,17857:-473656,4025873:0,0,0 +(1,17857:-473656,-710413:0,0,0 +(1,17857:-473656,-644877:0,0,0 +k1,17857:-473656,-644877:-65536 ) -] -[1,17817:3078558,4812305:0,0,0 -(1,17817:3078558,2439708:0,1703936,0 -g1,17817:29030814,2439708 -g1,17817:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,17817:36151628,1915420:16384,1179648,0 +(1,17857:-473656,4736287:0,0,0 +k1,17857:-473656,4736287:5209943 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +g1,17857:-473656,-710413 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,17817:37855564,2439708:1179648,16384,0 +[1,17857:6630773,47279633:25952256,43253760,0 +[1,17857:6630773,4812305:25952256,786432,0 +(1,17857:6630773,4812305:25952256,513147,126483 +(1,17857:6630773,4812305:25952256,513147,126483 +g1,17857:3078558,4812305 +[1,17857:3078558,4812305:0,0,0 +(1,17857:3078558,2439708:0,1703936,0 +k1,17857:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,17857:2537886,2439708:1179648,16384,0 ) +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,17857:3078558,1915420:16384,1179648,0 ) -k1,17817:3078556,2439708:-34777008 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] -[1,17817:3078558,4812305:0,0,0 -(1,17817:3078558,49800853:0,16384,2228224 -k1,17817:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,17817:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,17817:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 ) ] +[1,17857:3078558,4812305:0,0,0 +(1,17857:3078558,2439708:0,1703936,0 +g1,17857:29030814,2439708 +g1,17857:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,17857:36151628,1915420:16384,1179648,0 ) -) +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] -[1,17817:3078558,4812305:0,0,0 -(1,17817:3078558,49800853:0,16384,2228224 -g1,17817:29030814,49800853 -g1,17817:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,17817:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,17857:37855564,2439708:1179648,16384,0 ) -] ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,17817:37855564,49800853:1179648,16384,0 +k1,17857:3078556,2439708:-34777008 +) +] +[1,17857:3078558,4812305:0,0,0 +(1,17857:3078558,49800853:0,16384,2228224 +k1,17857:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,17857:2537886,49800853:1179648,16384,0 ) +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,17857:3078558,51504789:16384,1179648,0 ) -k1,17817:3078556,49800853:-34777008 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] -g1,17817:6630773,4812305 -k1,17817:21350816,4812305:13524666 -g1,17817:21999622,4812305 -g1,17817:25611966,4812305 -g1,17817:28956923,4812305 -g1,17817:29772190,4812305 +) ) ) ] -[1,17817:6630773,45706769:25952256,40108032,0 -(1,17817:6630773,45706769:25952256,40108032,0 -(1,17817:6630773,45706769:0,0,0 -g1,17817:6630773,45706769 +[1,17857:3078558,4812305:0,0,0 +(1,17857:3078558,49800853:0,16384,2228224 +g1,17857:29030814,49800853 +g1,17857:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,17857:36151628,51504789:16384,1179648,0 ) -[1,17817:6630773,45706769:25952256,40108032,0 -v1,17793:6630773,6254097:0,393216,0 -(1,17793:6630773,30701396:25952256,24840515,0 -g1,17793:6630773,30701396 -g1,17793:6303093,30701396 -r1,17817:6401397,30701396:98304,24840515,0 -g1,17793:6600626,30701396 -g1,17793:6797234,30701396 -[1,17793:6797234,30701396:25785795,24840515,0 -(1,17769:6797234,14886225:25785795,9025344,0 -k1,17769:10665143,14886225:3867909 -h1,17768:10665143,14886225:0,0,0 -(1,17768:10665143,14886225:18049977,9025344,0 -(1,17768:10665143,14886225:18050733,9025366,0 -(1,17768:10665143,14886225:18050733,9025366,0 -(1,17768:10665143,14886225:0,9025366,0 -(1,17768:10665143,14886225:0,14208860,0 -(1,17768:10665143,14886225:28417720,14208860,0 -) -k1,17768:10665143,14886225:-28417720 -) -) -g1,17768:28715876,14886225 -) -) -) -g1,17769:28715120,14886225 -k1,17769:32583029,14886225:3867909 -) -(1,17776:6797234,15727713:25785795,513147,134348 -h1,17775:6797234,15727713:983040,0,0 -k1,17775:9227056,15727713:250095 -k1,17775:11934097,15727713:250096 -k1,17775:12843484,15727713:250095 -k1,17775:15708467,15727713:250096 -k1,17775:16490059,15727713:250095 -k1,17775:17674698,15727713:250096 -k1,17775:18686321,15727713:250095 -k1,17775:19292277,15727713:250096 -k1,17775:22203134,15727713:250095 -k1,17775:25650732,15727713:250096 -k1,17775:26516865,15727713:250095 -k1,17775:28156324,15727713:250096 -k1,17775:30024503,15727713:250095 -k1,17775:32583029,15727713:0 -) -(1,17776:6797234,16569201:25785795,505283,126483 -k1,17775:10610823,16569201:202555 -(1,17775:10610823,16569201:0,414482,115847 -r1,17817:10969089,16569201:358266,530329,115847 -k1,17775:10610823,16569201:-358266 -) -(1,17775:10610823,16569201:358266,414482,115847 -k1,17775:10610823,16569201:3277 -h1,17775:10965812,16569201:0,411205,112570 -) -k1,17775:11171644,16569201:202555 -k1,17775:12565644,16569201:202555 -(1,17775:12565644,16569201:0,414482,115847 -r1,17817:12923910,16569201:358266,530329,115847 -k1,17775:12565644,16569201:-358266 -) -(1,17775:12565644,16569201:358266,414482,115847 -k1,17775:12565644,16569201:3277 -h1,17775:12920633,16569201:0,411205,112570 -) -k1,17775:13300136,16569201:202556 -k1,17775:16028449,16569201:202555 -k1,17775:17706219,16569201:202555 -k1,17775:19691353,16569201:202555 -(1,17775:19691353,16569201:0,452978,115847 -r1,17817:22159890,16569201:2468537,568825,115847 -k1,17775:19691353,16569201:-2468537 -) -(1,17775:19691353,16569201:2468537,452978,115847 -k1,17775:19691353,16569201:3277 -h1,17775:22156613,16569201:0,411205,112570 -) -k1,17775:22362445,16569201:202555 -k1,17775:23756445,16569201:202555 -k1,17775:25410623,16569201:202556 -k1,17775:27075286,16569201:202555 -k1,17775:27809338,16569201:202555 -k1,17775:31821501,16569201:202555 -k1,17775:32583029,16569201:0 -) -(1,17776:6797234,17410689:25785795,513147,134348 -g1,17775:7767166,17410689 -g1,17775:10370256,17410689 -g1,17775:11986373,17410689 -g1,17775:14846364,17410689 -g1,17775:17680796,17410689 -g1,17775:19672435,17410689 -g1,17775:20530956,17410689 -g1,17775:21086045,17410689 -g1,17775:23179264,17410689 -g1,17775:23909990,17410689 -k1,17776:32583029,17410689:7893816 -g1,17776:32583029,17410689 -) -v1,17778:6797234,18601155:0,393216,0 -(1,17785:6797234,20889620:25785795,2681681,196608 -g1,17785:6797234,20889620 -g1,17785:6797234,20889620 -g1,17785:6600626,20889620 -(1,17785:6600626,20889620:0,2681681,196608 -r1,17817:32779637,20889620:26179011,2878289,196608 -k1,17785:6600625,20889620:-26179012 -) -(1,17785:6600626,20889620:26179011,2681681,196608 -[1,17785:6797234,20889620:25785795,2485073,0 -(1,17780:6797234,18815065:25785795,410518,107478 -(1,17779:6797234,18815065:0,0,0 -g1,17779:6797234,18815065 -g1,17779:6797234,18815065 -g1,17779:6469554,18815065 -(1,17779:6469554,18815065:0,0,0 -) -g1,17779:6797234,18815065 -) -k1,17780:6797234,18815065:0 -g1,17780:10590983,18815065 -g1,17780:11223275,18815065 -g1,17780:13752441,18815065 -g1,17780:15649316,18815065 -g1,17780:16281608,18815065 -g1,17780:20391502,18815065 -g1,17780:21023794,18815065 -g1,17780:21656086,18815065 -g1,17780:23552960,18815065 -h1,17780:23869106,18815065:0,0,0 -k1,17780:32583029,18815065:8713923 -g1,17780:32583029,18815065 -) -(1,17781:6797234,19481243:25785795,404226,107478 -h1,17781:6797234,19481243:0,0,0 -g1,17781:7113380,19481243 -g1,17781:7429526,19481243 -g1,17781:13120149,19481243 -g1,17781:13752441,19481243 -g1,17781:16281607,19481243 -h1,17781:16597753,19481243:0,0,0 -k1,17781:32583029,19481243:15985276 -g1,17781:32583029,19481243 -) -(1,17782:6797234,20147421:25785795,404226,107478 -h1,17782:6797234,20147421:0,0,0 -g1,17782:7113380,20147421 -g1,17782:7429526,20147421 -g1,17782:14384731,20147421 -g1,17782:15017023,20147421 -g1,17782:21972229,20147421 -g1,17782:22604521,20147421 -g1,17782:24185250,20147421 -g1,17782:24817542,20147421 -g1,17782:25449834,20147421 -k1,17782:25449834,20147421:0 -h1,17782:26398272,20147421:0,0,0 -k1,17782:32583029,20147421:6184757 -g1,17782:32583029,20147421 -) -(1,17783:6797234,20813599:25785795,404226,76021 -h1,17783:6797234,20813599:0,0,0 -g1,17783:7113380,20813599 -g1,17783:7429526,20813599 -g1,17783:7745672,20813599 -g1,17783:8061818,20813599 -g1,17783:8377964,20813599 -g1,17783:8694110,20813599 -g1,17783:9010256,20813599 -g1,17783:9326402,20813599 -g1,17783:9642548,20813599 -g1,17783:9958694,20813599 -g1,17783:10274840,20813599 -g1,17783:10590986,20813599 -g1,17783:10907132,20813599 -g1,17783:11223278,20813599 -g1,17783:11539424,20813599 -g1,17783:13752444,20813599 -g1,17783:14384736,20813599 -h1,17783:16281610,20813599:0,0,0 -k1,17783:32583029,20813599:16301419 -g1,17783:32583029,20813599 -) -] -) -g1,17785:32583029,20889620 -g1,17785:6797234,20889620 -g1,17785:6797234,20889620 -g1,17785:32583029,20889620 -g1,17785:32583029,20889620 -) -h1,17785:6797234,21086228:0,0,0 -(1,17788:6797234,30701396:25785795,9025344,0 -k1,17788:10665143,30701396:3867909 -h1,17787:10665143,30701396:0,0,0 -(1,17787:10665143,30701396:18049977,9025344,0 -(1,17787:10665143,30701396:18050733,9025366,0 -(1,17787:10665143,30701396:18050733,9025366,0 -(1,17787:10665143,30701396:0,9025366,0 -(1,17787:10665143,30701396:0,14208860,0 -(1,17787:10665143,30701396:28417720,14208860,0 -) -k1,17787:10665143,30701396:-28417720 -) -) -g1,17787:28715876,30701396 -) -) -) -g1,17788:28715120,30701396 -k1,17788:32583029,30701396:3867909 -) -] -g1,17793:32583029,30701396 -) -h1,17793:6630773,30701396:0,0,0 -(1,17797:6630773,32067172:25952256,505283,134348 -h1,17796:6630773,32067172:983040,0,0 -k1,17796:8814550,32067172:247188 -k1,17796:10166020,32067172:247188 -k1,17796:12342587,32067172:247187 -k1,17796:12945635,32067172:247188 -k1,17796:15961719,32067172:247188 -k1,17796:17486204,32067172:247188 -k1,17796:18494919,32067172:247187 -k1,17796:21549669,32067172:247188 -k1,17796:22815942,32067172:247188 -(1,17796:22815942,32067172:0,452978,115847 -r1,17817:24229343,32067172:1413401,568825,115847 -k1,17796:22815942,32067172:-1413401 -) -(1,17796:22815942,32067172:1413401,452978,115847 -k1,17796:22815942,32067172:3277 -h1,17796:24226066,32067172:0,411205,112570 -) -k1,17796:24476531,32067172:247188 -k1,17796:27510965,32067172:247188 -k1,17796:28409580,32067172:247187 -k1,17796:29012628,32067172:247188 -k1,17796:32583029,32067172:0 -) -(1,17797:6630773,32908660:25952256,513147,134348 -k1,17796:9500040,32908660:184257 -k1,17796:10312132,32908660:184257 -k1,17796:11699630,32908660:184257 -k1,17796:13424638,32908660:184257 -k1,17796:14765605,32908660:184257 -k1,17796:16050867,32908660:184257 -k1,17796:16886551,32908660:184256 -k1,17796:18751151,32908660:184257 -k1,17796:20484024,32908660:184257 -k1,17796:21199778,32908660:184257 -k1,17796:23814765,32908660:184257 -k1,17796:25649219,32908660:184257 -k1,17796:29620146,32908660:184257 -k1,17796:32583029,32908660:0 -) -(1,17797:6630773,33750148:25952256,513147,126483 -k1,17796:7793533,33750148:143675 -k1,17796:9948508,33750148:143675 -k1,17796:10751475,33750148:143675 -k1,17796:11914234,33750148:143674 -k1,17796:13926996,33750148:143675 -k1,17796:14602168,33750148:143675 -k1,17796:18050824,33750148:143675 -k1,17796:20953565,33750148:143675 -k1,17796:22280165,33750148:143675 -k1,17796:23075267,33750148:143674 -k1,17796:24549323,33750148:143675 -k1,17796:26913358,33750148:143675 -k1,17796:30482600,33750148:143675 -k1,17796:32583029,33750148:0 -) -(1,17797:6630773,34591636:25952256,513147,134348 -k1,17796:9659519,34591636:221184 -k1,17796:10236563,34591636:221184 -k1,17796:12969087,34591636:221184 -k1,17796:13841699,34591636:221184 -k1,17796:15081968,34591636:221184 -k1,17796:16650572,34591636:221184 -k1,17796:17531048,34591636:221184 -k1,17796:18771316,34591636:221183 -k1,17796:20861587,34591636:221184 -k1,17796:21614268,34591636:221184 -k1,17796:23485649,34591636:221184 -k1,17796:25684054,34591636:221184 -k1,17796:26666766,34591636:221184 -k1,17796:28625965,34591636:221184 -k1,17796:32583029,34591636:0 -) -(1,17797:6630773,35433124:25952256,505283,134348 -k1,17796:8705683,35433124:175677 -k1,17796:9532789,35433124:175678 -k1,17796:10064326,35433124:175677 -k1,17796:12052730,35433124:175678 -k1,17796:15209640,35433124:175677 -k1,17796:16427340,35433124:175678 -k1,17796:17806258,35433124:175677 -k1,17796:20643352,35433124:175677 -k1,17796:21687382,35433124:175678 -k1,17796:23060402,35433124:175677 -k1,17796:23591940,35433124:175678 -k1,17796:25050812,35433124:175677 -k1,17796:27737830,35433124:175678 -k1,17796:28564935,35433124:175677 -k1,17796:29759698,35433124:175678 -k1,17796:31386342,35433124:175677 -k1,17796:32583029,35433124:0 -) -(1,17797:6630773,36274612:25952256,513147,134348 -g1,17796:8945504,36274612 -g1,17796:9804025,36274612 -g1,17796:11022339,36274612 -g1,17796:12199365,36274612 -g1,17796:13014632,36274612 -g1,17796:14610433,36274612 -g1,17796:16001107,36274612 -g1,17796:17596908,36274612 -g1,17796:18254234,36274612 -g1,17796:19104891,36274612 -g1,17796:20323205,36274612 -g1,17796:21869854,36274612 -g1,17796:22728375,36274612 -g1,17796:23946689,36274612 -k1,17797:32583029,36274612:6444161 -g1,17797:32583029,36274612 -) -v1,17799:6630773,37465078:0,393216,0 -(1,17807:6630773,40444886:25952256,3373024,196608 -g1,17807:6630773,40444886 -g1,17807:6630773,40444886 -g1,17807:6434165,40444886 -(1,17807:6434165,40444886:0,3373024,196608 -r1,17817:32779637,40444886:26345472,3569632,196608 -k1,17807:6434165,40444886:-26345472 -) -(1,17807:6434165,40444886:26345472,3373024,196608 -[1,17807:6630773,40444886:25952256,3176416,0 -(1,17801:6630773,37672696:25952256,404226,107478 -(1,17800:6630773,37672696:0,0,0 -g1,17800:6630773,37672696 -g1,17800:6630773,37672696 -g1,17800:6303093,37672696 -(1,17800:6303093,37672696:0,0,0 -) -g1,17800:6630773,37672696 -) -k1,17801:6630773,37672696:0 -g1,17801:10424522,37672696 -g1,17801:11056814,37672696 -g1,17801:13585980,37672696 -g1,17801:15482855,37672696 -g1,17801:16115147,37672696 -g1,17801:18012022,37672696 -g1,17801:18644314,37672696 -g1,17801:19276606,37672696 -k1,17801:19276606,37672696:0 -h1,17801:20541189,37672696:0,0,0 -k1,17801:32583029,37672696:12041840 -g1,17801:32583029,37672696 -) -(1,17802:6630773,38338874:25952256,410518,101187 -h1,17802:6630773,38338874:0,0,0 -g1,17802:6946919,38338874 -g1,17802:7263065,38338874 -g1,17802:7579211,38338874 -g1,17802:7895357,38338874 -g1,17802:8211503,38338874 -g1,17802:8527649,38338874 -g1,17802:8843795,38338874 -g1,17802:9159941,38338874 -g1,17802:9476087,38338874 -g1,17802:9792233,38338874 -g1,17802:10108379,38338874 -g1,17802:10424525,38338874 -g1,17802:10740671,38338874 -g1,17802:11056817,38338874 -g1,17802:11372963,38338874 -g1,17802:11689109,38338874 -g1,17802:12005255,38338874 -g1,17802:12321401,38338874 -g1,17802:12637547,38338874 -g1,17802:12953693,38338874 -g1,17802:13269839,38338874 -g1,17802:13585985,38338874 -g1,17802:13902131,38338874 -g1,17802:14218277,38338874 -g1,17802:14534423,38338874 -g1,17802:14850569,38338874 -g1,17802:16747443,38338874 -g1,17802:17379735,38338874 -k1,17802:17379735,38338874:0 -h1,17802:21173483,38338874:0,0,0 -k1,17802:32583029,38338874:11409546 -g1,17802:32583029,38338874 -) -(1,17803:6630773,39005052:25952256,404226,76021 -h1,17803:6630773,39005052:0,0,0 -g1,17803:6946919,39005052 -g1,17803:7263065,39005052 -g1,17803:7579211,39005052 -g1,17803:7895357,39005052 -g1,17803:8211503,39005052 -g1,17803:8527649,39005052 -g1,17803:8843795,39005052 -g1,17803:9159941,39005052 -g1,17803:9476087,39005052 -g1,17803:9792233,39005052 -g1,17803:10108379,39005052 -g1,17803:10424525,39005052 -g1,17803:10740671,39005052 -g1,17803:11056817,39005052 -g1,17803:11372963,39005052 -g1,17803:11689109,39005052 -g1,17803:12005255,39005052 -g1,17803:12321401,39005052 -g1,17803:12637547,39005052 -g1,17803:12953693,39005052 -g1,17803:13269839,39005052 -g1,17803:13585985,39005052 -g1,17803:13902131,39005052 -g1,17803:14218277,39005052 -g1,17803:14534423,39005052 -g1,17803:14850569,39005052 -g1,17803:16431298,39005052 -g1,17803:17063590,39005052 -g1,17803:18644319,39005052 -h1,17803:18960465,39005052:0,0,0 -k1,17803:32583029,39005052:13622564 -g1,17803:32583029,39005052 -) -(1,17804:6630773,39671230:25952256,404226,76021 -h1,17804:6630773,39671230:0,0,0 -g1,17804:6946919,39671230 -g1,17804:7263065,39671230 -g1,17804:12953687,39671230 -h1,17804:13269833,39671230:0,0,0 -k1,17804:32583029,39671230:19313196 -g1,17804:32583029,39671230 -) -(1,17805:6630773,40337408:25952256,404226,107478 -h1,17805:6630773,40337408:0,0,0 -g1,17805:6946919,40337408 -g1,17805:7263065,40337408 -k1,17805:7263065,40337408:0 -h1,17805:11056813,40337408:0,0,0 -k1,17805:32583029,40337408:21526216 -g1,17805:32583029,40337408 -) -] -) -g1,17807:32583029,40444886 -g1,17807:6630773,40444886 -g1,17807:6630773,40444886 -g1,17807:32583029,40444886 -g1,17807:32583029,40444886 -) -h1,17807:6630773,40641494:0,0,0 -] -(1,17817:32583029,45706769:0,0,0 -g1,17817:32583029,45706769 -) -) -] -(1,17817:6630773,47279633:25952256,0,0 -h1,17817:6630773,47279633:25952256,0,0 -) -] -(1,17817:4262630,4025873:0,0,0 -[1,17817:-473656,4025873:0,0,0 -(1,17817:-473656,-710413:0,0,0 -(1,17817:-473656,-710413:0,0,0 -g1,17817:-473656,-710413 -) -g1,17817:-473656,-710413 -) -] -) -] -!16783 -}311 -Input:2648:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2649:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2650:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2651:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2652:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2653:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2654:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2655:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2656:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2657:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2658:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2659:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1140 -{312 -[1,17864:4262630,47279633:28320399,43253760,0 -(1,17864:4262630,4025873:0,0,0 -[1,17864:-473656,4025873:0,0,0 -(1,17864:-473656,-710413:0,0,0 -(1,17864:-473656,-644877:0,0,0 -k1,17864:-473656,-644877:-65536 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) -(1,17864:-473656,4736287:0,0,0 -k1,17864:-473656,4736287:5209943 +] ) -g1,17864:-473656,-710413 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,17857:37855564,49800853:1179648,16384,0 ) -] ) -[1,17864:6630773,47279633:25952256,43253760,0 -[1,17864:6630773,4812305:25952256,786432,0 -(1,17864:6630773,4812305:25952256,485622,11795 -(1,17864:6630773,4812305:25952256,485622,11795 -g1,17864:3078558,4812305 -[1,17864:3078558,4812305:0,0,0 -(1,17864:3078558,2439708:0,1703936,0 -k1,17864:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,17864:2537886,2439708:1179648,16384,0 +k1,17857:3078556,49800853:-34777008 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,17864:3078558,1915420:16384,1179648,0 +] +g1,17857:6630773,4812305 +k1,17857:21350816,4812305:13524666 +g1,17857:21999622,4812305 +g1,17857:25611966,4812305 +g1,17857:28956923,4812305 +g1,17857:29772190,4812305 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 ) ] +[1,17857:6630773,45706769:25952256,40108032,0 +(1,17857:6630773,45706769:25952256,40108032,0 +(1,17857:6630773,45706769:0,0,0 +g1,17857:6630773,45706769 ) +[1,17857:6630773,45706769:25952256,40108032,0 +(1,17793:6630773,14682403:25952256,9083666,0 +k1,17793:10523651,14682403:3892878 +h1,17792:10523651,14682403:0,0,0 +(1,17792:10523651,14682403:18166500,9083666,0 +(1,17792:10523651,14682403:18167376,9083688,0 +(1,17792:10523651,14682403:18167376,9083688,0 +(1,17792:10523651,14682403:0,9083688,0 +(1,17792:10523651,14682403:0,14208860,0 +(1,17792:10523651,14682403:28417720,14208860,0 ) +k1,17792:10523651,14682403:-28417720 +) +) +g1,17792:28691027,14682403 +) +) +) +g1,17793:28690151,14682403 +k1,17793:32583029,14682403:3892878 +) +(1,17800:6630773,15547483:25952256,513147,115847 +h1,17799:6630773,15547483:983040,0,0 +k1,17799:8320618,15547483:229048 +k1,17799:9418018,15547483:229048 +k1,17799:12039785,15547483:229048 +(1,17799:12039785,15547483:0,452978,115847 +r1,17857:13101474,15547483:1061689,568825,115847 +k1,17799:12039785,15547483:-1061689 +) +(1,17799:12039785,15547483:1061689,452978,115847 +k1,17799:12039785,15547483:3277 +h1,17799:13098197,15547483:0,411205,112570 +) +k1,17799:13330522,15547483:229048 +k1,17799:14827036,15547483:229048 +k1,17799:15411944,15547483:229048 +k1,17799:17708653,15547483:229048 +k1,17799:18293561,15547483:229048 +k1,17799:21048368,15547483:229049 +k1,17799:22893534,15547483:229048 +k1,17799:24694791,15547483:229048 +k1,17799:25455336,15547483:229048 +k1,17799:27197610,15547483:229048 +k1,17799:29753841,15547483:229048 +k1,17799:30642181,15547483:229048 +k1,17799:31227089,15547483:229048 +k1,17800:32583029,15547483:0 +) +(1,17800:6630773,16412563:25952256,473825,7863 +g1,17799:9257456,16412563 +k1,17800:32583029,16412563:21995192 +g1,17800:32583029,16412563 +) +v1,17802:6630773,17097418:0,393216,0 +(1,17808:6630773,18807811:25952256,2103609,196608 +g1,17808:6630773,18807811 +g1,17808:6630773,18807811 +g1,17808:6434165,18807811 +(1,17808:6434165,18807811:0,2103609,196608 +r1,17857:32779637,18807811:26345472,2300217,196608 +k1,17808:6434165,18807811:-26345472 +) +(1,17808:6434165,18807811:26345472,2103609,196608 +[1,17808:6630773,18807811:25952256,1907001,0 +(1,17804:6630773,17325249:25952256,424439,112852 +(1,17803:6630773,17325249:0,0,0 +g1,17803:6630773,17325249 +g1,17803:6630773,17325249 +g1,17803:6303093,17325249 +(1,17803:6303093,17325249:0,0,0 +) +g1,17803:6630773,17325249 +) +k1,17804:6630773,17325249:0 +g1,17804:10614221,17325249 +g1,17804:11278129,17325249 +k1,17804:11278129,17325249:0 +h1,17804:13601807,17325249:0,0,0 +k1,17804:32583029,17325249:18981222 +g1,17804:32583029,17325249 +) +(1,17805:6630773,18010104:25952256,431045,112852 +h1,17805:6630773,18010104:0,0,0 +g1,17805:6962727,18010104 +g1,17805:7294681,18010104 +g1,17805:7626635,18010104 +g1,17805:7958589,18010104 +g1,17805:8290543,18010104 +g1,17805:8622497,18010104 +g1,17805:8954451,18010104 +g1,17805:10946175,18010104 +g1,17805:11610083,18010104 +g1,17805:13601807,18010104 +g1,17805:14265715,18010104 +g1,17805:14929623,18010104 +g1,17805:16589393,18010104 +g1,17805:18581117,18010104 +g1,17805:19245025,18010104 +g1,17805:23892381,18010104 +h1,17805:24224335,18010104:0,0,0 +k1,17805:32583029,18010104:8358694 +g1,17805:32583029,18010104 +) +(1,17806:6630773,18694959:25952256,424439,112852 +h1,17806:6630773,18694959:0,0,0 +g1,17806:6962727,18694959 +g1,17806:7294681,18694959 +k1,17806:7294681,18694959:0 +h1,17806:11278128,18694959:0,0,0 +k1,17806:32583028,18694959:21304900 +g1,17806:32583028,18694959 +) +] +) +g1,17808:32583029,18807811 +g1,17808:6630773,18807811 +g1,17808:6630773,18807811 +g1,17808:32583029,18807811 +g1,17808:32583029,18807811 +) +h1,17808:6630773,19004419:0,0,0 +(1,17812:6630773,19869499:25952256,513147,115847 +h1,17811:6630773,19869499:983040,0,0 +k1,17811:8282888,19869499:191318 +k1,17811:9342558,19869499:191318 +k1,17811:11926595,19869499:191318 +(1,17811:11926595,19869499:0,452978,115847 +r1,17857:12988284,19869499:1061689,568825,115847 +k1,17811:11926595,19869499:-1061689 +) +(1,17811:11926595,19869499:1061689,452978,115847 +k1,17811:11926595,19869499:3277 +h1,17811:12985007,19869499:0,411205,112570 +) +k1,17811:13179602,19869499:191318 +k1,17811:14638386,19869499:191318 +k1,17811:15600407,19869499:191318 +k1,17811:18299131,19869499:191317 +k1,17811:20558110,19869499:191318 +k1,17811:21105288,19869499:191318 +k1,17811:24058949,19869499:191318 +k1,17811:26776025,19869499:191318 +k1,17811:28583461,19869499:191318 +k1,17811:30346988,19869499:191318 +k1,17811:31069803,19869499:191318 +k1,17811:32583029,19869499:0 +) +(1,17812:6630773,20734579:25952256,513147,126483 +g1,17811:7591530,20734579 +k1,17812:32583028,20734579:22552248 +g1,17812:32583028,20734579 +) +v1,17814:6630773,21419434:0,393216,0 +(1,17820:6630773,23129827:25952256,2103609,196608 +g1,17820:6630773,23129827 +g1,17820:6630773,23129827 +g1,17820:6434165,23129827 +(1,17820:6434165,23129827:0,2103609,196608 +r1,17857:32779637,23129827:26345472,2300217,196608 +k1,17820:6434165,23129827:-26345472 +) +(1,17820:6434165,23129827:26345472,2103609,196608 +[1,17820:6630773,23129827:25952256,1907001,0 +(1,17816:6630773,21647265:25952256,424439,112852 +(1,17815:6630773,21647265:0,0,0 +g1,17815:6630773,21647265 +g1,17815:6630773,21647265 +g1,17815:6303093,21647265 +(1,17815:6303093,21647265:0,0,0 +) +g1,17815:6630773,21647265 +) +k1,17816:6630773,21647265:0 +g1,17816:10614221,21647265 +g1,17816:11278129,21647265 +k1,17816:11278129,21647265:0 +h1,17816:13601807,21647265:0,0,0 +k1,17816:32583029,21647265:18981222 +g1,17816:32583029,21647265 +) +(1,17817:6630773,22332120:25952256,424439,112852 +h1,17817:6630773,22332120:0,0,0 +g1,17817:6962727,22332120 +g1,17817:7294681,22332120 +g1,17817:7626635,22332120 +g1,17817:7958589,22332120 +g1,17817:8290543,22332120 +g1,17817:8622497,22332120 +g1,17817:8954451,22332120 +g1,17817:10946175,22332120 +g1,17817:11610083,22332120 +g1,17817:13601807,22332120 +g1,17817:14265715,22332120 +g1,17817:14929623,22332120 +g1,17817:16589393,22332120 +g1,17817:18581117,22332120 +g1,17817:19245025,22332120 +g1,17817:24224335,22332120 +h1,17817:24556289,22332120:0,0,0 +k1,17817:32583029,22332120:8026740 +g1,17817:32583029,22332120 +) +(1,17818:6630773,23016975:25952256,424439,112852 +h1,17818:6630773,23016975:0,0,0 +g1,17818:6962727,23016975 +g1,17818:7294681,23016975 +k1,17818:7294681,23016975:0 +h1,17818:11278128,23016975:0,0,0 +k1,17818:32583028,23016975:21304900 +g1,17818:32583028,23016975 +) +] +) +g1,17820:32583029,23129827 +g1,17820:6630773,23129827 +g1,17820:6630773,23129827 +g1,17820:32583029,23129827 +g1,17820:32583029,23129827 +) +h1,17820:6630773,23326435:0,0,0 +v1,17824:6630773,24191515:0,393216,0 +(1,17825:6630773,26328500:25952256,2530201,0 +g1,17825:6630773,26328500 +g1,17825:6237557,26328500 +r1,17857:6368629,26328500:131072,2530201,0 +g1,17825:6567858,26328500 +g1,17825:6764466,26328500 +[1,17825:6764466,26328500:25818563,2530201,0 +(1,17825:6764466,24463992:25818563,665693,196608 +(1,17824:6764466,24463992:0,665693,196608 +r1,17857:8010564,24463992:1246098,862301,196608 +k1,17824:6764466,24463992:-1246098 +) +(1,17824:6764466,24463992:1246098,665693,196608 +) +k1,17824:8347364,24463992:336800 +k1,17824:9665293,24463992:327680 +k1,17824:11086058,24463992:336799 +k1,17824:11778718,24463992:336800 +k1,17824:14877860,24463992:336799 +k1,17824:18195893,24463992:336800 +(1,17824:18195893,24463992:0,452978,115847 +r1,17857:19609294,24463992:1413401,568825,115847 +k1,17824:18195893,24463992:-1413401 +) +(1,17824:18195893,24463992:1413401,452978,115847 +k1,17824:18195893,24463992:3277 +h1,17824:19606017,24463992:0,411205,112570 +) +k1,17824:19946093,24463992:336799 +$1,17824:19946093,24463992 +$1,17824:20621114,24463992 +k1,17824:20957914,24463992:336800 +(1,17824:20957914,24463992:0,452978,115847 +r1,17857:22723027,24463992:1765113,568825,115847 +k1,17824:20957914,24463992:-1765113 +) +(1,17824:20957914,24463992:1765113,452978,115847 +k1,17824:20957914,24463992:3277 +h1,17824:22719750,24463992:0,411205,112570 +) +k1,17824:23233496,24463992:336799 +(1,17824:23233496,24463992:0,452978,115847 +r1,17857:24295185,24463992:1061689,568825,115847 +k1,17824:23233496,24463992:-1061689 +) +(1,17824:23233496,24463992:1061689,452978,115847 +k1,17824:23233496,24463992:3277 +h1,17824:24291908,24463992:0,411205,112570 +) +k1,17824:24631985,24463992:336800 +$1,17824:24631985,24463992 +$1,17824:25307006,24463992 +k1,17824:25643805,24463992:336799 +(1,17824:25643805,24463992:0,414482,115847 +r1,17857:26002071,24463992:358266,530329,115847 +k1,17824:25643805,24463992:-358266 +) +(1,17824:25643805,24463992:358266,414482,115847 +k1,17824:25643805,24463992:3277 +h1,17824:25998794,24463992:0,411205,112570 +) +k1,17824:26512541,24463992:336800 +k1,17824:29749308,24463992:336799 +k1,17824:30847636,24463992:336800 +k1,17825:32583029,24463992:0 +) +(1,17825:6764466,25329072:25818563,505283,115847 +(1,17824:6764466,25329072:0,452978,115847 +r1,17857:10991562,25329072:4227096,568825,115847 +k1,17824:6764466,25329072:-4227096 +) +(1,17824:6764466,25329072:4227096,452978,115847 +k1,17824:6764466,25329072:3277 +h1,17824:10988285,25329072:0,411205,112570 +) +k1,17824:11207716,25329072:216154 +k1,17824:13633745,25329072:216155 +(1,17824:13633745,25329072:0,452978,115847 +r1,17857:18212553,25329072:4578808,568825,115847 +k1,17824:13633745,25329072:-4578808 +) +(1,17824:13633745,25329072:4578808,452978,115847 +k1,17824:13633745,25329072:3277 +h1,17824:18209276,25329072:0,411205,112570 +) +k1,17824:18428707,25329072:216154 +k1,17824:19296290,25329072:216155 +k1,17824:20537427,25329072:216154 +k1,17824:22302197,25329072:216154 +k1,17824:25359993,25329072:216155 +k1,17824:26567707,25329072:216154 +k1,17824:29741502,25329072:216155 +k1,17824:31149101,25329072:216154 +k1,17824:32583029,25329072:0 +) +(1,17825:6764466,26194152:25818563,505283,134348 +g1,17824:7870058,26194152 +g1,17824:9088372,26194152 +g1,17824:13605768,26194152 +g1,17824:15089503,26194152 +g1,17824:17419307,26194152 +g1,17824:19077367,26194152 +g1,17824:23783507,26194152 +g1,17824:26351207,26194152 +g1,17824:27569521,26194152 +k1,17825:32583029,26194152:3450474 +g1,17825:32583029,26194152 +) +] +g1,17825:32583029,26328500 +) +h1,17825:6630773,26328500:0,0,0 +(1,17828:6630773,27193580:25952256,505283,134348 +h1,17827:6630773,27193580:983040,0,0 +k1,17827:9015330,27193580:204830 +k1,17827:12027721,27193580:204829 +k1,17827:14867754,27193580:204830 +k1,17827:16461947,27193580:204830 +k1,17827:18677421,27193580:204829 +k1,17827:20073696,27193580:204830 +k1,17827:23122788,27193580:204829 +k1,17827:25338263,27193580:204830 +k1,17827:26074590,27193580:204830 +k1,17827:29540490,27193580:204829 +k1,17827:30506848,27193580:204830 +k1,17827:32583029,27193580:0 +) +(1,17828:6630773,28058660:25952256,513147,134348 +k1,17827:9770007,28058660:294316 +k1,17827:11680441,28058660:294316 +k1,17827:14050938,28058660:294316 +k1,17827:15536699,28058660:294316 +k1,17827:17297711,28058660:294316 +k1,17827:20112542,28058660:294316 +k1,17827:22416847,28058660:294316 +k1,17827:23067023,28058660:294316 +k1,17827:25056100,28058660:294316 +k1,17827:27096295,28058660:294316 +k1,17827:29820686,28058660:294316 +k1,17827:32583029,28058660:0 +) +(1,17828:6630773,28923740:25952256,505283,134348 +g1,17827:9967866,28923740 +g1,17827:12802298,28923740 +g1,17827:14390890,28923740 +g1,17827:16600764,28923740 +g1,17827:17991438,28923740 +g1,17827:21065731,28923740 +k1,17828:32583029,28923740:8982365 +g1,17828:32583029,28923740 +) +v1,17830:6630773,29608595:0,393216,0 +(1,17837:6630773,31997237:25952256,2781858,196608 +g1,17837:6630773,31997237 +g1,17837:6630773,31997237 +g1,17837:6434165,31997237 +(1,17837:6434165,31997237:0,2781858,196608 +r1,17857:32779637,31997237:26345472,2978466,196608 +k1,17837:6434165,31997237:-26345472 +) +(1,17837:6434165,31997237:26345472,2781858,196608 +[1,17837:6630773,31997237:25952256,2585250,0 +(1,17832:6630773,29836426:25952256,424439,112852 +(1,17831:6630773,29836426:0,0,0 +g1,17831:6630773,29836426 +g1,17831:6630773,29836426 +g1,17831:6303093,29836426 +(1,17831:6303093,29836426:0,0,0 +) +g1,17831:6630773,29836426 +) +k1,17832:6630773,29836426:0 +g1,17832:10614221,29836426 +g1,17832:11278129,29836426 +k1,17832:11278129,29836426:0 +h1,17832:13601807,29836426:0,0,0 +k1,17832:32583029,29836426:18981222 +g1,17832:32583029,29836426 +) +(1,17833:6630773,30521281:25952256,431045,112852 +h1,17833:6630773,30521281:0,0,0 +g1,17833:6962727,30521281 +g1,17833:7294681,30521281 +g1,17833:7626635,30521281 +g1,17833:7958589,30521281 +g1,17833:8290543,30521281 +g1,17833:8622497,30521281 +g1,17833:8954451,30521281 +g1,17833:10946175,30521281 +g1,17833:11610083,30521281 +g1,17833:13601807,30521281 +g1,17833:14265715,30521281 +g1,17833:14929623,30521281 +g1,17833:16589393,30521281 +g1,17833:18581117,30521281 +g1,17833:19245025,30521281 +g1,17833:23892381,30521281 +h1,17833:24224335,30521281:0,0,0 +k1,17833:32583029,30521281:8358694 +g1,17833:32583029,30521281 +) +(1,17834:6630773,31206136:25952256,424439,112852 +h1,17834:6630773,31206136:0,0,0 +g1,17834:6962727,31206136 +g1,17834:7294681,31206136 +g1,17834:11610082,31206136 +h1,17834:11942036,31206136:0,0,0 +k1,17834:32583028,31206136:20640992 +g1,17834:32583028,31206136 +) +(1,17835:6630773,31890991:25952256,424439,106246 +h1,17835:6630773,31890991:0,0,0 +g1,17835:6962727,31890991 +g1,17835:7294681,31890991 +g1,17835:15261576,31890991 +g1,17835:15925484,31890991 +g1,17835:18581116,31890991 +g1,17835:21236748,31890991 +g1,17835:21900656,31890991 +h1,17835:22564564,31890991:0,0,0 +k1,17835:32583029,31890991:10018465 +g1,17835:32583029,31890991 +) +] +) +g1,17837:32583029,31997237 +g1,17837:6630773,31997237 +g1,17837:6630773,31997237 +g1,17837:32583029,31997237 +g1,17837:32583029,31997237 +) +h1,17837:6630773,32193845:0,0,0 +(1,17841:6630773,33058925:25952256,505283,134348 +h1,17840:6630773,33058925:983040,0,0 +k1,17840:9006726,33058925:196226 +k1,17840:10765985,33058925:196225 +k1,17840:14136775,33058925:196226 +k1,17840:17644535,33058925:196226 +k1,17840:19032205,33058925:196225 +k1,17840:22735918,33058925:196226 +k1,17840:23923704,33058925:196226 +k1,17840:25139014,33058925:196225 +k1,17840:26988713,33058925:196226 +k1,17840:27871101,33058925:196226 +k1,17840:28683364,33058925:196225 +k1,17840:30913172,33058925:196226 +k1,17840:32583029,33058925:0 +) +(1,17841:6630773,33924005:25952256,513147,134348 +k1,17840:7516558,33924005:234357 +k1,17840:9204503,33924005:234356 +k1,17840:10769241,33924005:234357 +k1,17840:12022682,33924005:234356 +k1,17840:13534336,33924005:234357 +k1,17840:15659406,33924005:234356 +k1,17840:16762115,33924005:234357 +k1,17840:18471686,33924005:234356 +k1,17840:21367460,33924005:234357 +k1,17840:22977417,33924005:234356 +k1,17840:24230859,33924005:234357 +k1,17840:26037424,33924005:234356 +k1,17840:27463226,33924005:234357 +k1,17840:29887795,33924005:234356 +k1,17840:31635378,33924005:234357 +k1,17840:32583029,33924005:0 +) +(1,17841:6630773,34789085:25952256,505283,126483 +k1,17840:7830233,34789085:180375 +k1,17840:9626726,34789085:180375 +k1,17840:12825034,34789085:180375 +k1,17840:17170877,34789085:180375 +k1,17840:17809349,34789085:180375 +k1,17840:18521221,34789085:180375 +k1,17840:19900251,34789085:180376 +k1,17840:22305573,34789085:180375 +k1,17840:23505033,34789085:180375 +k1,17840:25338881,34789085:180375 +k1,17840:26796553,34789085:180375 +k1,17840:27845280,34789085:180375 +k1,17840:30375776,34789085:180375 +k1,17840:32583029,34789085:0 +) +(1,17841:6630773,35654165:25952256,513147,126483 +k1,17840:8880725,35654165:179014 +k1,17840:10007390,35654165:179014 +k1,17840:11205489,35654165:179014 +k1,17840:13745765,35654165:179014 +k1,17840:15611676,35654165:179014 +k1,17840:17171534,35654165:179014 +k1,17840:17882044,35654165:179013 +k1,17840:18416918,35654165:179014 +k1,17840:19949906,35654165:179014 +k1,17840:23338218,35654165:179014 +k1,17840:25205439,35654165:179014 +k1,17840:26035881,35654165:179014 +k1,17840:30053339,35654165:179014 +k1,17840:32583029,35654165:0 +) +(1,17841:6630773,36519245:25952256,513147,126483 +k1,17840:7371876,36519245:283006 +k1,17840:9666837,36519245:283006 +k1,17840:10694988,36519245:283007 +k1,17840:11629422,36519245:283006 +k1,17840:14615133,36519245:283006 +k1,17840:16070578,36519245:283006 +k1,17840:19115927,36519245:283006 +k1,17840:22429973,36519245:283006 +k1,17840:23732065,36519245:283007 +k1,17840:26875062,36519245:283006 +k1,17840:30089493,36519245:283006 +k1,17840:31563944,36519245:283006 +k1,17840:32583029,36519245:0 +) +(1,17841:6630773,37384325:25952256,505283,134348 +g1,17840:9218789,37384325 +k1,17841:32583028,37384325:21101936 +g1,17841:32583028,37384325 +) +v1,17843:6630773,38249405:0,393216,0 +(1,17854:6630773,44009080:25952256,6152891,0 +g1,17854:6630773,44009080 +g1,17854:6237557,44009080 +r1,17857:6368629,44009080:131072,6152891,0 +g1,17854:6567858,44009080 +g1,17854:6764466,44009080 +[1,17854:6764466,44009080:25818563,6152891,0 +(1,17844:6764466,38521882:25818563,665693,196608 +(1,17843:6764466,38521882:0,665693,196608 +r1,17857:8010564,38521882:1246098,862301,196608 +k1,17843:6764466,38521882:-1246098 +) +(1,17843:6764466,38521882:1246098,665693,196608 +) +k1,17843:8302414,38521882:291850 +k1,17843:9620343,38521882:327680 +k1,17843:10996158,38521882:291849 +k1,17843:12307093,38521882:291850 +k1,17843:15361286,38521882:291850 +k1,17843:18173651,38521882:291850 +k1,17843:21249469,38521882:291849 +k1,17843:24099845,38521882:291850 +k1,17843:25410780,38521882:291850 +k1,17843:27895465,38521882:291850 +k1,17843:29933193,38521882:291849 +k1,17843:31478747,38521882:291850 +k1,17843:32583029,38521882:0 +) +(1,17844:6764466,39386962:25818563,513147,134348 +k1,17843:8312883,39386962:205584 +k1,17843:10932813,39386962:205584 +k1,17843:12532348,39386962:205584 +k1,17843:13757017,39386962:205584 +k1,17843:16483117,39386962:205585 +k1,17843:18424094,39386962:205584 +k1,17843:21325174,39386962:205584 +(1,17843:21325174,39386962:0,452978,115847 +r1,17857:25552270,39386962:4227096,568825,115847 +k1,17843:21325174,39386962:-4227096 +) +(1,17843:21325174,39386962:4227096,452978,115847 +k1,17843:21325174,39386962:3277 +h1,17843:25548993,39386962:0,411205,112570 +) +k1,17843:25757854,39386962:205584 +k1,17843:27531059,39386962:205584 +k1,17843:30316795,39386962:205584 +k1,17843:32583029,39386962:0 +) +(1,17844:6764466,40252042:25818563,505283,134348 +g1,17843:9644118,40252042 +g1,17843:11237298,40252042 +(1,17843:11237298,40252042:0,452978,115847 +r1,17857:14760970,40252042:3523672,568825,115847 +k1,17843:11237298,40252042:-3523672 +) +(1,17843:11237298,40252042:3523672,452978,115847 +k1,17843:11237298,40252042:3277 +h1,17843:14757693,40252042:0,411205,112570 +) +k1,17844:32583030,40252042:17441296 +g1,17844:32583030,40252042 +) +v1,17846:6764466,40936897:0,393216,0 +(1,17851:6764466,41955829:25818563,1412148,196608 +g1,17851:6764466,41955829 +g1,17851:6764466,41955829 +g1,17851:6567858,41955829 +(1,17851:6567858,41955829:0,1412148,196608 +r1,17857:32779637,41955829:26211779,1608756,196608 +k1,17851:6567857,41955829:-26211780 +) +(1,17851:6567858,41955829:26211779,1412148,196608 +[1,17851:6764466,41955829:25818563,1215540,0 +(1,17848:6764466,41164728:25818563,424439,106246 +(1,17847:6764466,41164728:0,0,0 +g1,17847:6764466,41164728 +g1,17847:6764466,41164728 +g1,17847:6436786,41164728 +(1,17847:6436786,41164728:0,0,0 +) +g1,17847:6764466,41164728 +) +k1,17848:6764466,41164728:0 +k1,17848:6764466,41164728:0 +h1,17848:15063314,41164728:0,0,0 +k1,17848:32583030,41164728:17519716 +g1,17848:32583030,41164728 +) +(1,17849:6764466,41849583:25818563,424439,106246 +h1,17849:6764466,41849583:0,0,0 +g1,17849:15063314,41849583 +g1,17849:15727222,41849583 +g1,17849:18382854,41849583 +g1,17849:21038486,41849583 +g1,17849:21702394,41849583 +g1,17849:22698256,41849583 +g1,17849:26017795,41849583 +g1,17849:26681703,41849583 +h1,17849:28673427,41849583:0,0,0 +k1,17849:32583029,41849583:3909602 +g1,17849:32583029,41849583 +) +] +) +g1,17851:32583029,41955829 +g1,17851:6764466,41955829 +g1,17851:6764466,41955829 +g1,17851:32583029,41955829 +g1,17851:32583029,41955829 +) +h1,17851:6764466,42152437:0,0,0 +(1,17854:6764466,43017517:25818563,513147,126483 +h1,17853:6764466,43017517:983040,0,0 +k1,17853:9524843,43017517:172360 +k1,17853:10867675,43017517:172359 +k1,17853:12515250,43017517:172360 +k1,17853:14597329,43017517:172360 +k1,17853:15125548,43017517:172359 +k1,17853:17809903,43017517:172360 +k1,17853:20172475,43017517:172359 +k1,17853:21292486,43017517:172360 +k1,17853:23161573,43017517:172360 +k1,17853:24896966,43017517:172359 +k1,17853:26520293,43017517:172360 +k1,17853:27711738,43017517:172360 +k1,17853:29161394,43017517:172359 +k1,17853:31189078,43017517:172360 +k1,17853:32583029,43017517:0 +) +(1,17854:6764466,43882597:25818563,505283,126483 +g1,17853:7982780,43882597 +g1,17853:10417442,43882597 +k1,17854:32583030,43882597:19801704 +g1,17854:32583030,43882597 +) +] +g1,17854:32583029,44009080 +) +h1,17854:6630773,44009080:0,0,0 +(1,17857:6630773,44874160:25952256,513147,134348 +h1,17856:6630773,44874160:983040,0,0 +k1,17856:9663303,44874160:266255 +k1,17856:10995828,44874160:266254 +k1,17856:13454262,44874160:266255 +k1,17856:14529887,44874160:266255 +k1,17856:16916232,44874160:266255 +k1,17856:18201571,44874160:266254 +k1,17856:20069526,44874160:266255 +k1,17856:23113197,44874160:266255 +k1,17856:24617427,44874160:266255 +k1,17856:25542973,44874160:266254 +k1,17856:30360048,44874160:266255 +k1,17856:32583029,44874160:0 +) +] +(1,17857:32583029,45706769:0,0,0 +g1,17857:32583029,45706769 +) +) +] +(1,17857:6630773,47279633:25952256,0,0 +h1,17857:6630773,47279633:25952256,0,0 +) +] +(1,17857:4262630,4025873:0,0,0 +[1,17857:-473656,4025873:0,0,0 +(1,17857:-473656,-710413:0,0,0 +(1,17857:-473656,-710413:0,0,0 +g1,17857:-473656,-710413 +) +g1,17857:-473656,-710413 +) +] +) +] +!24193 +}293 +Input:2671:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2672:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2673:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2674:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2675:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2676:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!576 +{294 +[1,17930:4262630,47279633:28320399,43253760,0 +(1,17930:4262630,4025873:0,0,0 +[1,17930:-473656,4025873:0,0,0 +(1,17930:-473656,-710413:0,0,0 +(1,17930:-473656,-644877:0,0,0 +k1,17930:-473656,-644877:-65536 ) -] -[1,17864:3078558,4812305:0,0,0 -(1,17864:3078558,2439708:0,1703936,0 -g1,17864:29030814,2439708 -g1,17864:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,17864:36151628,1915420:16384,1179648,0 +(1,17930:-473656,4736287:0,0,0 +k1,17930:-473656,4736287:5209943 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +g1,17930:-473656,-710413 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,17864:37855564,2439708:1179648,16384,0 +[1,17930:6630773,47279633:25952256,43253760,0 +[1,17930:6630773,4812305:25952256,786432,0 +(1,17930:6630773,4812305:25952256,485622,11795 +(1,17930:6630773,4812305:25952256,485622,11795 +g1,17930:3078558,4812305 +[1,17930:3078558,4812305:0,0,0 +(1,17930:3078558,2439708:0,1703936,0 +k1,17930:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,17930:2537886,2439708:1179648,16384,0 ) +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,17930:3078558,1915420:16384,1179648,0 ) -k1,17864:3078556,2439708:-34777008 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] -[1,17864:3078558,4812305:0,0,0 -(1,17864:3078558,49800853:0,16384,2228224 -k1,17864:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,17864:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,17864:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 ) ] +[1,17930:3078558,4812305:0,0,0 +(1,17930:3078558,2439708:0,1703936,0 +g1,17930:29030814,2439708 +g1,17930:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,17930:36151628,1915420:16384,1179648,0 ) -) +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] -[1,17864:3078558,4812305:0,0,0 -(1,17864:3078558,49800853:0,16384,2228224 -g1,17864:29030814,49800853 -g1,17864:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,17864:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,17930:37855564,2439708:1179648,16384,0 ) -] ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,17864:37855564,49800853:1179648,16384,0 +k1,17930:3078556,2439708:-34777008 ) +] +[1,17930:3078558,4812305:0,0,0 +(1,17930:3078558,49800853:0,16384,2228224 +k1,17930:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,17930:2537886,49800853:1179648,16384,0 +) +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,17930:3078558,51504789:16384,1179648,0 ) -k1,17864:3078556,49800853:-34777008 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] -g1,17864:6630773,4812305 -g1,17864:6630773,4812305 -g1,17864:10347975,4812305 -k1,17864:31387651,4812305:21039676 +) ) ) ] -[1,17864:6630773,45706769:25952256,40108032,0 -(1,17864:6630773,45706769:25952256,40108032,0 -(1,17864:6630773,45706769:0,0,0 -g1,17864:6630773,45706769 +[1,17930:3078558,4812305:0,0,0 +(1,17930:3078558,49800853:0,16384,2228224 +g1,17930:29030814,49800853 +g1,17930:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,17930:36151628,51504789:16384,1179648,0 ) -[1,17864:6630773,45706769:25952256,40108032,0 -(1,17810:6630773,14682403:25952256,9083666,0 -k1,17810:10523651,14682403:3892878 -h1,17809:10523651,14682403:0,0,0 -(1,17809:10523651,14682403:18166500,9083666,0 -(1,17809:10523651,14682403:18167376,9083688,0 -(1,17809:10523651,14682403:18167376,9083688,0 -(1,17809:10523651,14682403:0,9083688,0 -(1,17809:10523651,14682403:0,14208860,0 -(1,17809:10523651,14682403:28417720,14208860,0 -) -k1,17809:10523651,14682403:-28417720 -) -) -g1,17809:28691027,14682403 -) -) -) -g1,17810:28690151,14682403 -k1,17810:32583029,14682403:3892878 -) -v1,17817:6630773,16002525:0,393216,0 -(1,17832:6630773,23143557:25952256,7534248,0 -g1,17832:6630773,23143557 -g1,17832:6303093,23143557 -r1,17864:6401397,23143557:98304,7534248,0 -g1,17832:6600626,23143557 -g1,17832:6797234,23143557 -[1,17832:6797234,23143557:25785795,7534248,0 -(1,17818:6797234,16435063:25785795,825754,196608 -(1,17817:6797234,16435063:0,825754,196608 -r1,17864:7890375,16435063:1093141,1022362,196608 -k1,17817:6797234,16435063:-1093141 -) -(1,17817:6797234,16435063:1093141,825754,196608 -) -g1,17817:8089604,16435063 -g1,17817:9407533,16435063 -g1,17817:10084519,16435063 -g1,17817:11152100,16435063 -g1,17817:12443814,16435063 -g1,17817:12998903,16435063 -g1,17817:17277093,16435063 -g1,17817:19048531,16435063 -g1,17817:20266845,16435063 -g1,17817:24615158,16435063 -g1,17817:25345884,16435063 -k1,17818:32583029,16435063:4301132 -g1,17818:32583029,16435063 -) -v1,17820:6797234,17625529:0,393216,0 -(1,17828:6797234,20605337:25785795,3373024,196608 -g1,17828:6797234,20605337 -g1,17828:6797234,20605337 -g1,17828:6600626,20605337 -(1,17828:6600626,20605337:0,3373024,196608 -r1,17864:32779637,20605337:26179011,3569632,196608 -k1,17828:6600625,20605337:-26179012 -) -(1,17828:6600626,20605337:26179011,3373024,196608 -[1,17828:6797234,20605337:25785795,3176416,0 -(1,17822:6797234,17833147:25785795,404226,107478 -(1,17821:6797234,17833147:0,0,0 -g1,17821:6797234,17833147 -g1,17821:6797234,17833147 -g1,17821:6469554,17833147 -(1,17821:6469554,17833147:0,0,0 -) -g1,17821:6797234,17833147 -) -k1,17822:6797234,17833147:0 -g1,17822:10590983,17833147 -g1,17822:11223275,17833147 -g1,17822:13752441,17833147 -g1,17822:15649316,17833147 -g1,17822:16281608,17833147 -g1,17822:18178483,17833147 -g1,17822:18810775,17833147 -g1,17822:19443067,17833147 -k1,17822:19443067,17833147:0 -h1,17822:20707650,17833147:0,0,0 -k1,17822:32583029,17833147:11875379 -g1,17822:32583029,17833147 -) -(1,17823:6797234,18499325:25785795,410518,101187 -h1,17823:6797234,18499325:0,0,0 -g1,17823:7113380,18499325 -g1,17823:7429526,18499325 -g1,17823:7745672,18499325 -g1,17823:8061818,18499325 -g1,17823:8377964,18499325 -g1,17823:8694110,18499325 -g1,17823:9010256,18499325 -g1,17823:9326402,18499325 -g1,17823:9642548,18499325 -g1,17823:9958694,18499325 -g1,17823:10274840,18499325 -g1,17823:10590986,18499325 -g1,17823:10907132,18499325 -g1,17823:11223278,18499325 -g1,17823:11539424,18499325 -g1,17823:11855570,18499325 -g1,17823:12171716,18499325 -g1,17823:12487862,18499325 -g1,17823:12804008,18499325 -g1,17823:13120154,18499325 -g1,17823:13436300,18499325 -g1,17823:13752446,18499325 -g1,17823:14068592,18499325 -g1,17823:14384738,18499325 -g1,17823:14700884,18499325 -g1,17823:15017030,18499325 -g1,17823:16913904,18499325 -g1,17823:17546196,18499325 -k1,17823:17546196,18499325:0 -h1,17823:21339944,18499325:0,0,0 -k1,17823:32583029,18499325:11243085 -g1,17823:32583029,18499325 -) -(1,17824:6797234,19165503:25785795,404226,76021 -h1,17824:6797234,19165503:0,0,0 -g1,17824:7113380,19165503 -g1,17824:7429526,19165503 -g1,17824:7745672,19165503 -g1,17824:8061818,19165503 -g1,17824:8377964,19165503 -g1,17824:8694110,19165503 -g1,17824:9010256,19165503 -g1,17824:9326402,19165503 -g1,17824:9642548,19165503 -g1,17824:9958694,19165503 -g1,17824:10274840,19165503 -g1,17824:10590986,19165503 -g1,17824:10907132,19165503 -g1,17824:11223278,19165503 -g1,17824:11539424,19165503 -g1,17824:11855570,19165503 -g1,17824:12171716,19165503 -g1,17824:12487862,19165503 -g1,17824:12804008,19165503 -g1,17824:13120154,19165503 -g1,17824:13436300,19165503 -g1,17824:13752446,19165503 -g1,17824:14068592,19165503 -g1,17824:14384738,19165503 -g1,17824:14700884,19165503 -g1,17824:15017030,19165503 -g1,17824:16597759,19165503 -g1,17824:17230051,19165503 -g1,17824:18810780,19165503 -h1,17824:19126926,19165503:0,0,0 -k1,17824:32583029,19165503:13456103 -g1,17824:32583029,19165503 -) -(1,17825:6797234,19831681:25785795,404226,76021 -h1,17825:6797234,19831681:0,0,0 -g1,17825:7113380,19831681 -g1,17825:7429526,19831681 -g1,17825:11539420,19831681 -h1,17825:11855566,19831681:0,0,0 -k1,17825:32583030,19831681:20727464 -g1,17825:32583030,19831681 -) -(1,17826:6797234,20497859:25785795,404226,107478 -h1,17826:6797234,20497859:0,0,0 -g1,17826:7113380,20497859 -g1,17826:7429526,20497859 -k1,17826:7429526,20497859:0 -h1,17826:11223274,20497859:0,0,0 -k1,17826:32583030,20497859:21359756 -g1,17826:32583030,20497859 -) -] -) -g1,17828:32583029,20605337 -g1,17828:6797234,20605337 -g1,17828:6797234,20605337 -g1,17828:32583029,20605337 -g1,17828:32583029,20605337 -) -h1,17828:6797234,20801945:0,0,0 -(1,17832:6797234,22167721:25785795,513147,126483 -h1,17831:6797234,22167721:983040,0,0 -k1,17831:9659753,22167721:220107 -k1,17831:10898945,22167721:220107 -k1,17831:12570019,22167721:220107 -k1,17831:14176869,22167721:220108 -k1,17831:15009738,22167721:220107 -k1,17831:15687942,22167721:220107 -k1,17831:18857824,22167721:220107 -k1,17831:21021729,22167721:220107 -k1,17831:22260921,22167721:220107 -k1,17831:25662146,22167721:220107 -k1,17831:27892899,22167721:220108 -k1,17831:28772298,22167721:220107 -k1,17831:30684545,22167721:220107 -k1,17831:31563944,22167721:220107 -k1,17831:32583029,22167721:0 -) -(1,17832:6797234,23009209:25785795,513147,134348 -k1,17831:9595117,23009209:178409 -k1,17831:10964971,23009209:178409 -k1,17831:13167787,23009209:178409 -k1,17831:13812157,23009209:178409 -k1,17831:15449397,23009209:178409 -k1,17831:19053373,23009209:178409 -k1,17831:19891075,23009209:178410 -k1,17831:21088569,23009209:178409 -k1,17831:22544275,23009209:178409 -k1,17831:25381480,23009209:178409 -k1,17831:26578974,23009209:178409 -k1,17831:29573465,23009209:178409 -k1,17831:31951262,23009209:178409 -k1,17832:32583029,23009209:0 -k1,17832:32583029,23009209:0 -) -] -g1,17832:32583029,23143557 -) -h1,17832:6630773,23143557:0,0,0 -(1,17837:6630773,24463678:25952256,513147,134348 -h1,17836:6630773,24463678:983040,0,0 -k1,17836:8613056,24463678:181354 -k1,17836:9150270,24463678:181354 -k1,17836:10738026,24463678:181353 -k1,17836:13580797,24463678:181354 -k1,17836:17972839,24463678:181354 -k1,17836:19173278,24463678:181354 -k1,17836:20447117,24463678:181354 -k1,17836:21295627,24463678:181354 -(1,17836:21295627,24463678:0,452978,122846 -r1,17864:25522723,24463678:4227096,575824,122846 -k1,17836:21295627,24463678:-4227096 -) -(1,17836:21295627,24463678:4227096,452978,122846 -k1,17836:21295627,24463678:3277 -h1,17836:25519446,24463678:0,411205,112570 -) -k1,17836:25877746,24463678:181353 -k1,17836:26927452,24463678:181354 -k1,17836:29820686,24463678:181354 -k1,17836:32583029,24463678:0 -) -(1,17837:6630773,25305166:25952256,505283,126483 -g1,17836:9894466,25305166 -g1,17836:11285140,25305166 -g1,17836:13330519,25305166 -g1,17836:14145786,25305166 -g1,17836:15364100,25305166 -g1,17836:17216802,25305166 -g1,17836:19585273,25305166 -k1,17837:32583029,25305166:11546789 -g1,17837:32583029,25305166 -) -v1,17839:6630773,26449978:0,393216,0 -(1,17849:6630773,30755851:25952256,4699089,196608 -g1,17849:6630773,30755851 -g1,17849:6630773,30755851 -g1,17849:6434165,30755851 -(1,17849:6434165,30755851:0,4699089,196608 -r1,17864:32779637,30755851:26345472,4895697,196608 -k1,17849:6434165,30755851:-26345472 -) -(1,17849:6434165,30755851:26345472,4699089,196608 -[1,17849:6630773,30755851:25952256,4502481,0 -(1,17841:6630773,26657596:25952256,404226,107478 -(1,17840:6630773,26657596:0,0,0 -g1,17840:6630773,26657596 -g1,17840:6630773,26657596 -g1,17840:6303093,26657596 -(1,17840:6303093,26657596:0,0,0 -) -g1,17840:6630773,26657596 -) -k1,17841:6630773,26657596:0 -g1,17841:10424522,26657596 -g1,17841:11056814,26657596 -g1,17841:13585980,26657596 -g1,17841:15482855,26657596 -g1,17841:16115147,26657596 -g1,17841:18012022,26657596 -g1,17841:18644314,26657596 -g1,17841:19276606,26657596 -k1,17841:19276606,26657596:0 -h1,17841:20541189,26657596:0,0,0 -k1,17841:32583029,26657596:12041840 -g1,17841:32583029,26657596 -) -(1,17842:6630773,27323774:25952256,410518,101187 -h1,17842:6630773,27323774:0,0,0 -g1,17842:6946919,27323774 -g1,17842:7263065,27323774 -g1,17842:7579211,27323774 -g1,17842:7895357,27323774 -g1,17842:8211503,27323774 -g1,17842:8527649,27323774 -g1,17842:8843795,27323774 -g1,17842:9159941,27323774 -g1,17842:9476087,27323774 -g1,17842:9792233,27323774 -g1,17842:10108379,27323774 -g1,17842:10424525,27323774 -g1,17842:10740671,27323774 -g1,17842:11056817,27323774 -g1,17842:11372963,27323774 -g1,17842:11689109,27323774 -g1,17842:12005255,27323774 -g1,17842:12321401,27323774 -g1,17842:12637547,27323774 -g1,17842:12953693,27323774 -g1,17842:13269839,27323774 -g1,17842:13585985,27323774 -g1,17842:13902131,27323774 -g1,17842:14218277,27323774 -g1,17842:14534423,27323774 -g1,17842:14850569,27323774 -g1,17842:16747443,27323774 -g1,17842:17379735,27323774 -k1,17842:17379735,27323774:0 -h1,17842:21173483,27323774:0,0,0 -k1,17842:32583029,27323774:11409546 -g1,17842:32583029,27323774 -) -(1,17843:6630773,27989952:25952256,410518,101187 -h1,17843:6630773,27989952:0,0,0 -g1,17843:6946919,27989952 -g1,17843:7263065,27989952 -g1,17843:7579211,27989952 -g1,17843:7895357,27989952 -g1,17843:8211503,27989952 -g1,17843:8527649,27989952 -g1,17843:8843795,27989952 -g1,17843:9159941,27989952 -g1,17843:9476087,27989952 -g1,17843:9792233,27989952 -g1,17843:10108379,27989952 -g1,17843:10424525,27989952 -g1,17843:10740671,27989952 -g1,17843:11056817,27989952 -g1,17843:11372963,27989952 -g1,17843:11689109,27989952 -g1,17843:12005255,27989952 -g1,17843:12321401,27989952 -g1,17843:12637547,27989952 -g1,17843:12953693,27989952 -g1,17843:13269839,27989952 -g1,17843:13585985,27989952 -g1,17843:13902131,27989952 -g1,17843:14218277,27989952 -g1,17843:14534423,27989952 -g1,17843:14850569,27989952 -g1,17843:16431298,27989952 -g1,17843:17063590,27989952 -k1,17843:17063590,27989952:0 -h1,17843:20857338,27989952:0,0,0 -k1,17843:32583029,27989952:11725691 -g1,17843:32583029,27989952 -) -(1,17844:6630773,28656130:25952256,404226,76021 -h1,17844:6630773,28656130:0,0,0 -g1,17844:6946919,28656130 -g1,17844:7263065,28656130 -g1,17844:7579211,28656130 -g1,17844:7895357,28656130 -g1,17844:8211503,28656130 -g1,17844:8527649,28656130 -g1,17844:8843795,28656130 -g1,17844:9159941,28656130 -g1,17844:9476087,28656130 -g1,17844:9792233,28656130 -g1,17844:10108379,28656130 -g1,17844:10424525,28656130 -g1,17844:10740671,28656130 -g1,17844:11056817,28656130 -g1,17844:11372963,28656130 -g1,17844:11689109,28656130 -g1,17844:12005255,28656130 -g1,17844:12321401,28656130 -g1,17844:12637547,28656130 -g1,17844:12953693,28656130 -g1,17844:13269839,28656130 -g1,17844:13585985,28656130 -g1,17844:13902131,28656130 -g1,17844:14218277,28656130 -g1,17844:14534423,28656130 -g1,17844:14850569,28656130 -g1,17844:16431298,28656130 -g1,17844:17063590,28656130 -g1,17844:18644319,28656130 -h1,17844:18960465,28656130:0,0,0 -k1,17844:32583029,28656130:13622564 -g1,17844:32583029,28656130 -) -(1,17845:6630773,29322308:25952256,404226,107478 -h1,17845:6630773,29322308:0,0,0 -g1,17845:6946919,29322308 -g1,17845:7263065,29322308 -g1,17845:12637542,29322308 -g1,17845:13269834,29322308 -g1,17845:15166709,29322308 -g1,17845:17063583,29322308 -g1,17845:17695875,29322308 -g1,17845:20541187,29322308 -h1,17845:20857333,29322308:0,0,0 -k1,17845:32583029,29322308:11725696 -g1,17845:32583029,29322308 -) -(1,17846:6630773,29988486:25952256,404226,76021 -h1,17846:6630773,29988486:0,0,0 -g1,17846:6946919,29988486 -g1,17846:7263065,29988486 -g1,17846:12953687,29988486 -h1,17846:13269833,29988486:0,0,0 -k1,17846:32583029,29988486:19313196 -g1,17846:32583029,29988486 -) -(1,17847:6630773,30654664:25952256,404226,101187 -h1,17847:6630773,30654664:0,0,0 -g1,17847:6946919,30654664 -g1,17847:7263065,30654664 -g1,17847:15482853,30654664 -g1,17847:16115145,30654664 -g1,17847:18012020,30654664 -g1,17847:19276603,30654664 -h1,17847:20541185,30654664:0,0,0 -k1,17847:32583029,30654664:12041844 -g1,17847:32583029,30654664 -) -] -) -g1,17849:32583029,30755851 -g1,17849:6630773,30755851 -g1,17849:6630773,30755851 -g1,17849:32583029,30755851 -g1,17849:32583029,30755851 -) -h1,17849:6630773,30952459:0,0,0 -(1,17852:6630773,40580294:25952256,9083666,0 -k1,17852:10523651,40580294:3892878 -h1,17851:10523651,40580294:0,0,0 -(1,17851:10523651,40580294:18166500,9083666,0 -(1,17851:10523651,40580294:18167376,9083688,0 -(1,17851:10523651,40580294:18167376,9083688,0 -(1,17851:10523651,40580294:0,9083688,0 -(1,17851:10523651,40580294:0,14208860,0 -(1,17851:10523651,40580294:28417720,14208860,0 -) -k1,17851:10523651,40580294:-28417720 -) -) -g1,17851:28691027,40580294 -) -) -) -g1,17852:28690151,40580294 -k1,17852:32583029,40580294:3892878 -) -v1,17859:6630773,41900416:0,393216,0 -(1,17860:6630773,45706769:25952256,4199569,0 -g1,17860:6630773,45706769 -g1,17860:6303093,45706769 -r1,17864:6401397,45706769:98304,4199569,0 -g1,17860:6600626,45706769 -g1,17860:6797234,45706769 -[1,17860:6797234,45706769:25785795,4199569,0 -(1,17860:6797234,42332954:25785795,825754,196608 -(1,17859:6797234,42332954:0,825754,196608 -r1,17864:7890375,42332954:1093141,1022362,196608 -k1,17859:6797234,42332954:-1093141 -) -(1,17859:6797234,42332954:1093141,825754,196608 -) -k1,17859:8173818,42332954:283443 -k1,17859:9491747,42332954:327680 -k1,17859:11072803,42332954:283443 -k1,17859:12750197,42332954:283443 -k1,17859:14052725,42332954:283443 -k1,17859:15832355,42332954:283443 -k1,17859:16731836,42332954:283443 -k1,17859:18034365,42332954:283444 -k1,17859:20288476,42332954:283443 -k1,17859:22600914,42332954:283443 -k1,17859:25395697,42332954:283443 -k1,17859:26362025,42332954:283443 -k1,17859:28886144,42332954:283443 -k1,17859:30621209,42332954:283443 -k1,17859:31563944,42332954:283443 -k1,17859:32583029,42332954:0 -) -(1,17860:6797234,43174442:25785795,505283,134348 -k1,17859:10176317,43174442:241219 -k1,17859:11608981,43174442:241219 -k1,17859:12869285,43174442:241219 -k1,17859:14856384,43174442:241220 -k1,17859:17392674,43174442:241219 -k1,17859:18652978,43174442:241219 -k1,17859:20177392,43174442:241219 -k1,17859:21869578,43174442:241219 -k1,17859:23302242,43174442:241219 -k1,17859:26303837,43174442:241219 -k1,17859:27003154,43174442:241220 -k1,17859:27895801,43174442:241219 -k1,17859:29156105,43174442:241219 -k1,17859:30554034,43174442:241219 -k1,17859:32583029,43174442:0 -) -(1,17860:6797234,44015930:25785795,505283,134348 -k1,17859:9886710,44015930:189508 -k1,17859:12409300,44015930:189508 -k1,17859:13992759,44015930:189508 -k1,17859:15201353,44015930:189509 -k1,17859:16887048,44015930:189508 -k1,17859:18569466,44015930:189508 -k1,17859:19929447,44015930:189508 -k1,17859:21110515,44015930:189508 -k1,17859:22680867,44015930:189508 -k1,17859:24040849,44015930:189509 -k1,17859:27895130,44015930:189508 -k1,17859:29633254,44015930:189508 -k1,17859:32583029,44015930:0 -) -(1,17860:6797234,44857418:25785795,513147,134348 -k1,17859:9561745,44857418:225646 -k1,17859:10403428,44857418:225645 -k1,17859:11648159,44857418:225646 -k1,17859:13151101,44857418:225645 -k1,17859:13908244,44857418:225646 -k1,17859:16099314,44857418:225645 -k1,17859:17007845,44857418:225646 -k1,17859:20068577,44857418:225645 -k1,17859:21055751,44857418:225646 -k1,17859:22733018,44857418:225645 -k1,17859:26151578,44857418:225646 -k1,17859:29449551,44857418:225645 -k1,17859:30358082,44857418:225646 -k1,17859:32583029,44857418:0 -) -(1,17860:6797234,45698906:25785795,505283,7863 -g1,17859:7612501,45698906 -g1,17859:8830815,45698906 -g1,17859:10526231,45698906 -k1,17860:32583030,45698906:18696768 -g1,17860:32583030,45698906 -) -] -g1,17860:32583029,45706769 -) -h1,17860:6630773,45706769:0,0,0 -] -(1,17864:32583029,45706769:0,0,0 -g1,17864:32583029,45706769 -) -) -] -(1,17864:6630773,47279633:25952256,0,0 -h1,17864:6630773,47279633:25952256,0,0 -) -] -(1,17864:4262630,4025873:0,0,0 -[1,17864:-473656,4025873:0,0,0 -(1,17864:-473656,-710413:0,0,0 -(1,17864:-473656,-710413:0,0,0 -g1,17864:-473656,-710413 -) -g1,17864:-473656,-710413 -) -] -) -] -!19078 -}312 -Input:2660:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2661:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2662:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2663:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2664:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2665:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2666:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2667:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!764 -{313 -[1,17900:4262630,47279633:28320399,43253760,0 -(1,17900:4262630,4025873:0,0,0 -[1,17900:-473656,4025873:0,0,0 -(1,17900:-473656,-710413:0,0,0 -(1,17900:-473656,-644877:0,0,0 -k1,17900:-473656,-644877:-65536 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 +) +] +) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,17930:37855564,49800853:1179648,16384,0 +) +) +k1,17930:3078556,49800853:-34777008 +) +] +g1,17930:6630773,4812305 +g1,17930:6630773,4812305 +g1,17930:10347975,4812305 +k1,17930:31387651,4812305:21039676 +) +) +] +[1,17930:6630773,45706769:25952256,40108032,0 +(1,17930:6630773,45706769:25952256,40108032,0 +(1,17930:6630773,45706769:0,0,0 +g1,17930:6630773,45706769 +) +[1,17930:6630773,45706769:25952256,40108032,0 +(1,17857:6630773,6254097:25952256,513147,126483 +k1,17856:7535941,6254097:245876 +k1,17856:11853569,6254097:245876 +k1,17856:12715483,6254097:245876 +k1,17856:15130600,6254097:245875 +k1,17856:16984074,6254097:245876 +k1,17856:17761447,6254097:245876 +k1,17856:18658751,6254097:245876 +k1,17856:19997112,6254097:245876 +k1,17856:21262073,6254097:245876 +(1,17856:21262073,6254097:0,452978,115847 +r1,17930:23027186,6254097:1765113,568825,115847 +k1,17856:21262073,6254097:-1765113 +) +(1,17856:21262073,6254097:1765113,452978,115847 +k1,17856:21262073,6254097:3277 +h1,17856:23023909,6254097:0,411205,112570 +) +k1,17856:23273062,6254097:245876 +k1,17856:24178230,6254097:245876 +k1,17856:25443190,6254097:245875 +k1,17856:27707575,6254097:245876 +k1,17856:28639613,6254097:245876 +k1,17856:29656192,6254097:245876 +k1,17856:32583029,6254097:0 +) +(1,17857:6630773,7119177:25952256,513147,134348 +k1,17856:7786501,7119177:202179 +k1,17856:9518945,7119177:202178 +k1,17856:10372552,7119177:202179 +k1,17856:12815406,7119177:202178 +k1,17856:13373445,7119177:202179 +k1,17856:15448642,7119177:202178 +k1,17856:17875768,7119177:202179 +k1,17856:18693984,7119177:202178 +k1,17856:19915248,7119177:202179 +k1,17856:21613613,7119177:202178 +k1,17856:25002152,7119177:202179 +k1,17856:25855758,7119177:202178 +k1,17856:28415267,7119177:202179 +k1,17856:29820686,7119177:202178 +k1,17856:32583029,7119177:0 +) +(1,17857:6630773,7984257:25952256,473825,134348 +k1,17857:32583030,7984257:22971024 +g1,17857:32583030,7984257 +) +v1,17859:6630773,8669112:0,393216,0 +(1,17864:6630773,9701256:25952256,1425360,196608 +g1,17864:6630773,9701256 +g1,17864:6630773,9701256 +g1,17864:6434165,9701256 +(1,17864:6434165,9701256:0,1425360,196608 +r1,17930:32779637,9701256:26345472,1621968,196608 +k1,17864:6434165,9701256:-26345472 +) +(1,17864:6434165,9701256:26345472,1425360,196608 +[1,17864:6630773,9701256:25952256,1228752,0 +(1,17861:6630773,8903549:25952256,431045,112852 +(1,17860:6630773,8903549:0,0,0 +g1,17860:6630773,8903549 +g1,17860:6630773,8903549 +g1,17860:6303093,8903549 +(1,17860:6303093,8903549:0,0,0 +) +g1,17860:6630773,8903549 +) +k1,17861:6630773,8903549:0 +g1,17861:10614221,8903549 +g1,17861:11278129,8903549 +g1,17861:13933761,8903549 +g1,17861:15925485,8903549 +g1,17861:16589393,8903549 +g1,17861:18581117,8903549 +g1,17861:19245025,8903549 +g1,17861:19908933,8903549 +g1,17861:21568703,8903549 +g1,17861:23560427,8903549 +g1,17861:24224335,8903549 +g1,17861:28871691,8903549 +h1,17861:29203645,8903549:0,0,0 +k1,17861:32583029,8903549:3379384 +g1,17861:32583029,8903549 +) +(1,17862:6630773,9588404:25952256,424439,112852 +h1,17862:6630773,9588404:0,0,0 +g1,17862:6962727,9588404 +g1,17862:7294681,9588404 +k1,17862:7294681,9588404:0 +h1,17862:11278128,9588404:0,0,0 +k1,17862:32583028,9588404:21304900 +g1,17862:32583028,9588404 +) +] +) +g1,17864:32583029,9701256 +g1,17864:6630773,9701256 +g1,17864:6630773,9701256 +g1,17864:32583029,9701256 +g1,17864:32583029,9701256 +) +h1,17864:6630773,9897864:0,0,0 +(1,17868:6630773,10762944:25952256,505283,126483 +h1,17867:6630773,10762944:983040,0,0 +k1,17867:8772386,10762944:205024 +k1,17867:10081692,10762944:205024 +k1,17867:11379201,10762944:205024 +(1,17867:11379201,10762944:0,452978,115847 +r1,17930:17716568,10762944:6337367,568825,115847 +k1,17867:11379201,10762944:-6337367 +) +(1,17867:11379201,10762944:6337367,452978,115847 +k1,17867:11379201,10762944:3277 +h1,17867:17713291,10762944:0,411205,112570 +) +k1,17867:17921592,10762944:205024 +k1,17867:18778044,10762944:205024 +k1,17867:21198185,10762944:205024 +k1,17867:22854831,10762944:205024 +k1,17867:24928942,10762944:205024 +k1,17867:25785394,10762944:205024 +k1,17867:26738184,10762944:205024 +k1,17867:28630105,10762944:205024 +k1,17867:29788678,10762944:205024 +k1,17867:30928245,10762944:205024 +k1,17867:32583029,10762944:0 +) +(1,17868:6630773,11628024:25952256,513147,126483 +k1,17867:9041565,11628024:233031 +k1,17867:11473983,11628024:233030 +k1,17867:12991520,11628024:233031 +k1,17867:14092903,11628024:233031 +k1,17867:15458395,11628024:233030 +k1,17867:16716409,11628024:233031 +k1,17867:18403029,11628024:233031 +k1,17867:19627619,11628024:233030 +k1,17867:21214624,11628024:233031 +k1,17867:23424876,11628024:233031 +k1,17867:24344068,11628024:233030 +k1,17867:25957287,11628024:233031 +k1,17867:27693714,11628024:233031 +k1,17867:29393440,11628024:233030 +(1,17867:29393440,11628024:0,452978,115847 +r1,17930:31158553,11628024:1765113,568825,115847 +k1,17867:29393440,11628024:-1765113 +) +(1,17867:29393440,11628024:1765113,452978,115847 +k1,17867:29393440,11628024:3277 +h1,17867:31155276,11628024:0,411205,112570 +) +k1,17867:31391584,11628024:233031 +k1,17868:32583029,11628024:0 +) +(1,17868:6630773,12493104:25952256,505283,115847 +(1,17867:6630773,12493104:0,459977,115847 +r1,17930:8044174,12493104:1413401,575824,115847 +k1,17867:6630773,12493104:-1413401 +) +(1,17867:6630773,12493104:1413401,459977,115847 +k1,17867:6630773,12493104:3277 +h1,17867:8040897,12493104:0,411205,112570 +) +g1,17867:8243403,12493104 +k1,17868:32583029,12493104:21124430 +g1,17868:32583029,12493104 +) +v1,17870:6630773,13177959:0,393216,0 +(1,17876:6630773,14888352:25952256,2103609,196608 +g1,17876:6630773,14888352 +g1,17876:6630773,14888352 +g1,17876:6434165,14888352 +(1,17876:6434165,14888352:0,2103609,196608 +r1,17930:32779637,14888352:26345472,2300217,196608 +k1,17876:6434165,14888352:-26345472 +) +(1,17876:6434165,14888352:26345472,2103609,196608 +[1,17876:6630773,14888352:25952256,1907001,0 +(1,17872:6630773,13412396:25952256,431045,112852 +(1,17871:6630773,13412396:0,0,0 +g1,17871:6630773,13412396 +g1,17871:6630773,13412396 +g1,17871:6303093,13412396 +(1,17871:6303093,13412396:0,0,0 +) +g1,17871:6630773,13412396 +) +k1,17872:6630773,13412396:0 +g1,17872:10614221,13412396 +g1,17872:11278129,13412396 +g1,17872:13933761,13412396 +g1,17872:15925485,13412396 +g1,17872:16589393,13412396 +g1,17872:18581117,13412396 +g1,17872:19245025,13412396 +g1,17872:19908933,13412396 +g1,17872:21568703,13412396 +g1,17872:23560427,13412396 +g1,17872:24224335,13412396 +g1,17872:28871691,13412396 +h1,17872:29203645,13412396:0,0,0 +k1,17872:32583029,13412396:3379384 +g1,17872:32583029,13412396 +) +(1,17873:6630773,14097251:25952256,424439,112852 +h1,17873:6630773,14097251:0,0,0 +g1,17873:6962727,14097251 +g1,17873:7294681,14097251 +g1,17873:11610082,14097251 +h1,17873:11942036,14097251:0,0,0 +k1,17873:32583028,14097251:20640992 +g1,17873:32583028,14097251 +) +(1,17874:6630773,14782106:25952256,424439,106246 +h1,17874:6630773,14782106:0,0,0 +g1,17874:6962727,14782106 +g1,17874:7294681,14782106 +g1,17874:15925484,14782106 +g1,17874:16589392,14782106 +g1,17874:18581116,14782106 +g1,17874:19908932,14782106 +h1,17874:21236748,14782106:0,0,0 +k1,17874:32583029,14782106:11346281 +g1,17874:32583029,14782106 +) +] +) +g1,17876:32583029,14888352 +g1,17876:6630773,14888352 +g1,17876:6630773,14888352 +g1,17876:32583029,14888352 +g1,17876:32583029,14888352 +) +h1,17876:6630773,15084960:0,0,0 +(1,17880:6630773,15950040:25952256,505283,126483 +h1,17879:6630773,15950040:983040,0,0 +k1,17879:8273433,15950040:189727 +k1,17879:8994656,15950040:189726 +k1,17879:10470199,15950040:189727 +k1,17879:13289886,15950040:189727 +k1,17879:14131040,15950040:189726 +k1,17879:15413252,15950040:189727 +k1,17879:18907959,15950040:189726 +k1,17879:19783848,15950040:189727 +k1,17879:22346634,15950040:189727 +k1,17879:23733047,15950040:189726 +k1,17879:26897453,15950040:189727 +k1,17879:27618677,15950040:189727 +k1,17879:30564847,15950040:189726 +k1,17879:31563944,15950040:189727 +k1,17879:32583029,15950040:0 +) +(1,17880:6630773,16815120:25952256,513147,126483 +k1,17879:9423083,16815120:178079 +k1,17879:10260454,16815120:178079 +k1,17879:11457618,16815120:178079 +k1,17879:15550818,16815120:178079 +k1,17879:16546786,16815120:178079 +k1,17879:17743951,16815120:178080 +k1,17879:20738112,16815120:178079 +k1,17879:22429417,16815120:178079 +k1,17879:23293658,16815120:178079 +k1,17879:26113493,16815120:178079 +k1,17879:27283132,16815120:178079 +k1,17879:32583029,16815120:0 +) +(1,17880:6630773,17680200:25952256,513147,134348 +g1,17879:7698354,17680200 +g1,17879:10780512,17680200 +g1,17879:11998826,17680200 +g1,17879:14463635,17680200 +g1,17879:16421195,17680200 +g1,17879:17303309,17680200 +k1,17880:32583029,17680200:14005045 +g1,17880:32583029,17680200 +) +v1,17882:6630773,18365055:0,393216,0 +(1,17888:6630773,20082054:25952256,2110215,196608 +g1,17888:6630773,20082054 +g1,17888:6630773,20082054 +g1,17888:6434165,20082054 +(1,17888:6434165,20082054:0,2110215,196608 +r1,17930:32779637,20082054:26345472,2306823,196608 +k1,17888:6434165,20082054:-26345472 +) +(1,17888:6434165,20082054:26345472,2110215,196608 +[1,17888:6630773,20082054:25952256,1913607,0 +(1,17884:6630773,18599492:25952256,431045,112852 +(1,17883:6630773,18599492:0,0,0 +g1,17883:6630773,18599492 +g1,17883:6630773,18599492 +g1,17883:6303093,18599492 +(1,17883:6303093,18599492:0,0,0 +) +g1,17883:6630773,18599492 +) +k1,17884:6630773,18599492:0 +g1,17884:10614221,18599492 +g1,17884:11278129,18599492 +g1,17884:13933761,18599492 +g1,17884:15925485,18599492 +g1,17884:16589393,18599492 +g1,17884:18581117,18599492 +g1,17884:19245025,18599492 +g1,17884:19908933,18599492 +g1,17884:21568703,18599492 +g1,17884:23560427,18599492 +g1,17884:24224335,18599492 +g1,17884:28871691,18599492 +h1,17884:29203645,18599492:0,0,0 +k1,17884:32583029,18599492:3379384 +g1,17884:32583029,18599492 +) +(1,17885:6630773,19284347:25952256,424439,112852 +h1,17885:6630773,19284347:0,0,0 +g1,17885:6962727,19284347 +g1,17885:7294681,19284347 +g1,17885:12605944,19284347 +g1,17885:13269852,19284347 +g1,17885:14929622,19284347 +h1,17885:15261576,19284347:0,0,0 +k1,17885:32583028,19284347:17321452 +g1,17885:32583028,19284347 +) +(1,17886:6630773,19969202:25952256,424439,112852 +h1,17886:6630773,19969202:0,0,0 +g1,17886:6962727,19969202 +g1,17886:7294681,19969202 +g1,17886:15925484,19969202 +g1,17886:16589392,19969202 +g1,17886:18913070,19969202 +g1,17886:20572840,19969202 +g1,17886:22564564,19969202 +g1,17886:24556288,19969202 +g1,17886:25220196,19969202 +h1,17886:27543874,19969202:0,0,0 +k1,17886:32583029,19969202:5039155 +g1,17886:32583029,19969202 +) +] +) +g1,17888:32583029,20082054 +g1,17888:6630773,20082054 +g1,17888:6630773,20082054 +g1,17888:32583029,20082054 +g1,17888:32583029,20082054 +) +h1,17888:6630773,20278662:0,0,0 +(1,17891:6630773,29427864:25952256,9083666,0 +k1,17891:10523651,29427864:3892878 +h1,17890:10523651,29427864:0,0,0 +(1,17890:10523651,29427864:18166500,9083666,0 +(1,17890:10523651,29427864:18167376,9083688,0 +(1,17890:10523651,29427864:18167376,9083688,0 +(1,17890:10523651,29427864:0,9083688,0 +(1,17890:10523651,29427864:0,14208860,0 +(1,17890:10523651,29427864:28417720,14208860,0 +) +k1,17890:10523651,29427864:-28417720 +) +) +g1,17890:28691027,29427864 +) +) +) +g1,17891:28690151,29427864 +k1,17891:32583029,29427864:3892878 +) +v1,17898:6630773,30292944:0,393216,0 +(1,17910:6630773,36579437:25952256,6679709,0 +g1,17910:6630773,36579437 +g1,17910:6237557,36579437 +r1,17930:6368629,36579437:131072,6679709,0 +g1,17910:6567858,36579437 +g1,17910:6764466,36579437 +[1,17910:6764466,36579437:25818563,6679709,0 +(1,17899:6764466,30707486:25818563,807758,219026 +(1,17898:6764466,30707486:0,807758,219026 +r1,17930:7908217,30707486:1143751,1026784,219026 +k1,17898:6764466,30707486:-1143751 +) +(1,17898:6764466,30707486:1143751,807758,219026 +) +k1,17898:8087635,30707486:179418 +k1,17898:8415315,30707486:327680 +k1,17898:9866130,30707486:179417 +k1,17898:12556888,30707486:179418 +k1,17898:13352344,30707486:179418 +k1,17898:14550846,30707486:179417 +k1,17898:16119627,30707486:179418 +k1,17898:17403326,30707486:179417 +k1,17898:18330510,30707486:179418 +k1,17898:21095323,30707486:179418 +k1,17898:21926168,30707486:179417 +k1,17898:23755783,30707486:179418 +k1,17898:25377648,30707486:179418 +k1,17898:26713775,30707486:179417 +k1,17898:29911126,30707486:179418 +k1,17898:32583029,30707486:0 +) +(1,17899:6764466,31572566:25818563,513147,126483 +k1,17898:10397400,31572566:298462 +k1,17898:14044096,31572566:298462 +k1,17898:15723401,31572566:298461 +k1,17898:17358797,31572566:298462 +k1,17898:19302213,31572566:298462 +k1,17898:22470497,31572566:298462 +k1,17898:23841127,31572566:298461 +k1,17898:24597686,31572566:298462 +k1,17898:25427645,31572566:298462 +k1,17898:28864626,31572566:298462 +k1,17898:31140308,31572566:298461 +k1,17898:32124932,31572566:298462 +k1,17898:32583029,31572566:0 +) +(1,17899:6764466,32437646:25818563,513147,134348 +k1,17898:8966428,32437646:190007 +k1,17898:10313146,32437646:190008 +k1,17898:11154581,32437646:190007 +k1,17898:13964718,32437646:190008 +k1,17898:16340351,32437646:190007 +k1,17898:17988535,32437646:190008 +k1,17898:19645238,32437646:190007 +k1,17898:21533284,32437646:190008 +k1,17898:24764162,32437646:190007 +k1,17898:25570208,32437646:190008 +k1,17898:27550003,32437646:190007 +k1,17898:28844293,32437646:190008 +k1,17898:30232954,32437646:190007 +k1,17898:31170728,32437646:190008 +k1,17898:32583029,32437646:0 +) +(1,17899:6764466,33302726:25818563,513147,134348 +g1,17898:7429656,33302726 +g1,17898:11305455,33302726 +g1,17898:12190846,33302726 +g1,17898:17436347,33302726 +k1,17899:32583029,33302726:12744132 +g1,17899:32583029,33302726 +) +v1,17901:6764466,33987581:0,393216,0 +(1,17908:6764466,36382829:25818563,2788464,196608 +g1,17908:6764466,36382829 +g1,17908:6764466,36382829 +g1,17908:6567858,36382829 +(1,17908:6567858,36382829:0,2788464,196608 +r1,17930:32779637,36382829:26211779,2985072,196608 +k1,17908:6567857,36382829:-26211780 +) +(1,17908:6567858,36382829:26211779,2788464,196608 +[1,17908:6764466,36382829:25818563,2591856,0 +(1,17903:6764466,34215412:25818563,424439,112852 +(1,17902:6764466,34215412:0,0,0 +g1,17902:6764466,34215412 +g1,17902:6764466,34215412 +g1,17902:6436786,34215412 +(1,17902:6436786,34215412:0,0,0 +) +g1,17902:6764466,34215412 +) +k1,17903:6764466,34215412:0 +g1,17903:10747914,34215412 +g1,17903:11411822,34215412 +g1,17903:14067454,34215412 +g1,17903:16059178,34215412 +g1,17903:16723086,34215412 +g1,17903:18714810,34215412 +g1,17903:19378718,34215412 +g1,17903:20042626,34215412 +k1,17903:20042626,34215412:0 +h1,17903:21370442,34215412:0,0,0 +k1,17903:32583029,34215412:11212587 +g1,17903:32583029,34215412 +) +(1,17904:6764466,34900267:25818563,431045,106246 +h1,17904:6764466,34900267:0,0,0 +g1,17904:7096420,34900267 +g1,17904:7428374,34900267 +g1,17904:7760328,34900267 +g1,17904:8092282,34900267 +g1,17904:8424236,34900267 +g1,17904:8756190,34900267 +g1,17904:9088144,34900267 +g1,17904:9420098,34900267 +g1,17904:9752052,34900267 +g1,17904:10084006,34900267 +g1,17904:10415960,34900267 +g1,17904:10747914,34900267 +g1,17904:11079868,34900267 +g1,17904:11411822,34900267 +g1,17904:11743776,34900267 +g1,17904:12075730,34900267 +g1,17904:12407684,34900267 +g1,17904:12739638,34900267 +g1,17904:13071592,34900267 +g1,17904:13403546,34900267 +g1,17904:13735500,34900267 +g1,17904:14067454,34900267 +g1,17904:14399408,34900267 +g1,17904:14731362,34900267 +g1,17904:15063316,34900267 +g1,17904:15395270,34900267 +g1,17904:17386994,34900267 +g1,17904:18050902,34900267 +k1,17904:18050902,34900267:0 +h1,17904:22034350,34900267:0,0,0 +k1,17904:32583029,34900267:10548679 +g1,17904:32583029,34900267 +) +(1,17905:6764466,35585122:25818563,431045,106246 +h1,17905:6764466,35585122:0,0,0 +g1,17905:7096420,35585122 +g1,17905:7428374,35585122 +g1,17905:7760328,35585122 +g1,17905:8092282,35585122 +g1,17905:8424236,35585122 +g1,17905:8756190,35585122 +g1,17905:9088144,35585122 +g1,17905:9420098,35585122 +g1,17905:9752052,35585122 +g1,17905:10084006,35585122 +g1,17905:10415960,35585122 +g1,17905:10747914,35585122 +g1,17905:11079868,35585122 +g1,17905:11411822,35585122 +g1,17905:11743776,35585122 +g1,17905:12075730,35585122 +g1,17905:12407684,35585122 +g1,17905:12739638,35585122 +g1,17905:13071592,35585122 +g1,17905:13403546,35585122 +g1,17905:13735500,35585122 +g1,17905:14067454,35585122 +g1,17905:14399408,35585122 +g1,17905:14731362,35585122 +g1,17905:15063316,35585122 +g1,17905:15395270,35585122 +g1,17905:17386994,35585122 +g1,17905:18050902,35585122 +g1,17905:22698258,35585122 +h1,17905:23030212,35585122:0,0,0 +k1,17905:32583029,35585122:9552817 +g1,17905:32583029,35585122 +) +(1,17906:6764466,36269977:25818563,424439,112852 +h1,17906:6764466,36269977:0,0,0 +g1,17906:7096420,36269977 +g1,17906:7428374,36269977 +k1,17906:7428374,36269977:0 +h1,17906:11411821,36269977:0,0,0 +k1,17906:32583029,36269977:21171208 +g1,17906:32583029,36269977 +) +] +) +g1,17908:32583029,36382829 +g1,17908:6764466,36382829 +g1,17908:6764466,36382829 +g1,17908:32583029,36382829 +g1,17908:32583029,36382829 +) +h1,17908:6764466,36579437:0,0,0 +] +g1,17910:32583029,36579437 +) +h1,17910:6630773,36579437:0,0,0 +(1,17914:6630773,37444517:25952256,513147,126483 +h1,17913:6630773,37444517:983040,0,0 +k1,17913:8992212,37444517:223655 +k1,17913:10823465,37444517:223655 +k1,17913:12038680,37444517:223655 +k1,17913:14464345,37444517:223655 +k1,17913:15339428,37444517:223655 +k1,17913:17732325,37444517:223655 +k1,17913:19563578,37444517:223655 +k1,17913:20859403,37444517:223656 +k1,17913:21438918,37444517:223655 +k1,17913:23556563,37444517:223655 +k1,17913:24311715,37444517:223655 +k1,17913:27120765,37444517:223655 +k1,17913:27995848,37444517:223655 +k1,17913:30075483,37444517:223655 +k1,17913:31318223,37444517:223655 +(1,17913:31318223,37444517:0,414482,115847 +r1,17930:31676489,37444517:358266,530329,115847 +k1,17913:31318223,37444517:-358266 +) +(1,17913:31318223,37444517:358266,414482,115847 +k1,17913:31318223,37444517:3277 +h1,17913:31673212,37444517:0,411205,112570 +) +k1,17913:31900144,37444517:223655 +k1,17914:32583029,37444517:0 +) +(1,17914:6630773,38309597:25952256,505283,134348 +(1,17913:6630773,38309597:0,414482,115847 +r1,17930:6989039,38309597:358266,530329,115847 +k1,17913:6630773,38309597:-358266 +) +(1,17913:6630773,38309597:358266,414482,115847 +k1,17913:6630773,38309597:3277 +h1,17913:6985762,38309597:0,411205,112570 +) +k1,17913:7264800,38309597:275761 +k1,17913:10467398,38309597:275761 +k1,17913:11897902,38309597:275760 +k1,17913:13781261,38309597:275761 +k1,17913:15048582,38309597:275761 +k1,17913:17190153,38309597:275761 +k1,17913:18117341,38309597:275760 +k1,17913:19868317,38309597:275761 +k1,17913:23924195,38309597:275761 +k1,17913:28445378,38309597:275761 +k1,17913:29912583,38309597:275760 +k1,17913:31345054,38309597:275761 +k1,17913:32583029,38309597:0 +) +(1,17914:6630773,39174677:25952256,513147,134348 +k1,17913:7576306,39174677:286241 +k1,17913:10221188,39174677:286241 +k1,17913:12204156,39174677:286241 +k1,17913:14508906,39174677:286241 +k1,17913:16837904,39174677:286241 +k1,17913:17655642,39174677:286241 +k1,17913:18593312,39174677:286242 +k1,17913:20595286,39174677:286241 +k1,17913:22520582,39174677:286241 +k1,17913:24694915,39174677:286241 +k1,17913:28711465,39174677:286241 +k1,17913:29759234,39174677:286241 +k1,17913:32227169,39174677:286241 +k1,17913:32583029,39174677:0 +) +(1,17914:6630773,40039757:25952256,513147,115847 +g1,17913:9587757,40039757 +g1,17913:11467329,40039757 +g1,17913:14018645,40039757 +g1,17913:15660321,40039757 +g1,17913:17016260,40039757 +g1,17913:18163140,40039757 +g1,17913:19381454,40039757 +(1,17913:19381454,40039757:0,452978,115847 +r1,17930:21146567,40039757:1765113,568825,115847 +k1,17913:19381454,40039757:-1765113 +) +(1,17913:19381454,40039757:1765113,452978,115847 +k1,17913:19381454,40039757:3277 +h1,17913:21143290,40039757:0,411205,112570 +) +g1,17913:21345796,40039757 +k1,17914:32583029,40039757:8310396 +g1,17914:32583029,40039757 +) +v1,17916:6630773,40724612:0,393216,0 +(1,17921:6630773,41756756:25952256,1425360,196608 +g1,17921:6630773,41756756 +g1,17921:6630773,41756756 +g1,17921:6434165,41756756 +(1,17921:6434165,41756756:0,1425360,196608 +r1,17930:32779637,41756756:26345472,1621968,196608 +k1,17921:6434165,41756756:-26345472 +) +(1,17921:6434165,41756756:26345472,1425360,196608 +[1,17921:6630773,41756756:25952256,1228752,0 +(1,17918:6630773,40959049:25952256,431045,112852 +(1,17917:6630773,40959049:0,0,0 +g1,17917:6630773,40959049 +g1,17917:6630773,40959049 +g1,17917:6303093,40959049 +(1,17917:6303093,40959049:0,0,0 +) +g1,17917:6630773,40959049 +) +k1,17918:6630773,40959049:0 +g1,17918:10614221,40959049 +g1,17918:11278129,40959049 +g1,17918:13933761,40959049 +g1,17918:15925485,40959049 +g1,17918:16589393,40959049 +g1,17918:20904795,40959049 +g1,17918:21568703,40959049 +g1,17918:22232611,40959049 +g1,17918:24224335,40959049 +h1,17918:24556289,40959049:0,0,0 +k1,17918:32583029,40959049:8026740 +g1,17918:32583029,40959049 +) +(1,17919:6630773,41643904:25952256,424439,112852 +h1,17919:6630773,41643904:0,0,0 +g1,17919:6962727,41643904 +g1,17919:7294681,41643904 +g1,17919:12937898,41643904 +g1,17919:13601806,41643904 +h1,17919:14929622,41643904:0,0,0 +k1,17919:32583030,41643904:17653408 +g1,17919:32583030,41643904 +) +] +) +g1,17921:32583029,41756756 +g1,17921:6630773,41756756 +g1,17921:6630773,41756756 +g1,17921:32583029,41756756 +g1,17921:32583029,41756756 +) +h1,17921:6630773,41953364:0,0,0 +] +(1,17930:32583029,45706769:0,0,0 +g1,17930:32583029,45706769 +) +) +] +(1,17930:6630773,47279633:25952256,0,0 +h1,17930:6630773,47279633:25952256,0,0 +) +] +(1,17930:4262630,4025873:0,0,0 +[1,17930:-473656,4025873:0,0,0 +(1,17930:-473656,-710413:0,0,0 +(1,17930:-473656,-710413:0,0,0 +g1,17930:-473656,-710413 +) +g1,17930:-473656,-710413 +) +] +) +] +!23967 +}294 +Input:2677:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2678:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2679:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2680:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2681:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2682:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!576 +{295 +[1,17964:4262630,47279633:28320399,43253760,0 +(1,17964:4262630,4025873:0,0,0 +[1,17964:-473656,4025873:0,0,0 +(1,17964:-473656,-710413:0,0,0 +(1,17964:-473656,-644877:0,0,0 +k1,17964:-473656,-644877:-65536 ) -(1,17900:-473656,4736287:0,0,0 -k1,17900:-473656,4736287:5209943 +(1,17964:-473656,4736287:0,0,0 +k1,17964:-473656,4736287:5209943 ) -g1,17900:-473656,-710413 +g1,17964:-473656,-710413 ) ] ) -[1,17900:6630773,47279633:25952256,43253760,0 -[1,17900:6630773,4812305:25952256,786432,0 -(1,17900:6630773,4812305:25952256,513147,126483 -(1,17900:6630773,4812305:25952256,513147,126483 -g1,17900:3078558,4812305 -[1,17900:3078558,4812305:0,0,0 -(1,17900:3078558,2439708:0,1703936,0 -k1,17900:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,17900:2537886,2439708:1179648,16384,0 +[1,17964:6630773,47279633:25952256,43253760,0 +[1,17964:6630773,4812305:25952256,786432,0 +(1,17964:6630773,4812305:25952256,513147,126483 +(1,17964:6630773,4812305:25952256,513147,126483 +g1,17964:3078558,4812305 +[1,17964:3078558,4812305:0,0,0 +(1,17964:3078558,2439708:0,1703936,0 +k1,17964:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,17964:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,17900:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,17964:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,17900:3078558,4812305:0,0,0 -(1,17900:3078558,2439708:0,1703936,0 -g1,17900:29030814,2439708 -g1,17900:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,17900:36151628,1915420:16384,1179648,0 +[1,17964:3078558,4812305:0,0,0 +(1,17964:3078558,2439708:0,1703936,0 +g1,17964:29030814,2439708 +g1,17964:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,17964:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,17900:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,17964:37855564,2439708:1179648,16384,0 ) ) -k1,17900:3078556,2439708:-34777008 +k1,17964:3078556,2439708:-34777008 ) ] -[1,17900:3078558,4812305:0,0,0 -(1,17900:3078558,49800853:0,16384,2228224 -k1,17900:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,17900:2537886,49800853:1179648,16384,0 +[1,17964:3078558,4812305:0,0,0 +(1,17964:3078558,49800853:0,16384,2228224 +k1,17964:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,17964:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,17900:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,17964:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,17900:3078558,4812305:0,0,0 -(1,17900:3078558,49800853:0,16384,2228224 -g1,17900:29030814,49800853 -g1,17900:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,17900:36151628,51504789:16384,1179648,0 +[1,17964:3078558,4812305:0,0,0 +(1,17964:3078558,49800853:0,16384,2228224 +g1,17964:29030814,49800853 +g1,17964:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,17964:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,17900:37855564,49800853:1179648,16384,0 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,17964:37855564,49800853:1179648,16384,0 ) ) -k1,17900:3078556,49800853:-34777008 +k1,17964:3078556,49800853:-34777008 ) ] -g1,17900:6630773,4812305 -k1,17900:21350816,4812305:13524666 -g1,17900:21999622,4812305 -g1,17900:25611966,4812305 -g1,17900:28956923,4812305 -g1,17900:29772190,4812305 +g1,17964:6630773,4812305 +k1,17964:21350816,4812305:13524666 +g1,17964:21999622,4812305 +g1,17964:25611966,4812305 +g1,17964:28956923,4812305 +g1,17964:29772190,4812305 ) ) ] -[1,17900:6630773,45706769:25952256,40108032,0 -(1,17900:6630773,45706769:25952256,40108032,0 -(1,17900:6630773,45706769:0,0,0 -g1,17900:6630773,45706769 +[1,17964:6630773,45706769:25952256,40108032,0 +(1,17964:6630773,45706769:25952256,40108032,0 +(1,17964:6630773,45706769:0,0,0 +g1,17964:6630773,45706769 ) -[1,17900:6630773,45706769:25952256,40108032,0 -(1,17864:6630773,6254097:25952256,505283,134348 -h1,17863:6630773,6254097:983040,0,0 -k1,17863:8341645,6254097:257939 -k1,17863:9131080,6254097:257938 -k1,17863:12166435,6254097:257939 -k1,17863:13075802,6254097:257939 -k1,17863:14919711,6254097:257938 -k1,17863:16784593,6254097:257939 -k1,17863:18417477,6254097:257939 -k1,17863:21355838,6254097:257938 -k1,17863:23007728,6254097:257939 -k1,17863:25284176,6254097:257939 -k1,17863:29573889,6254097:257938 -k1,17863:31900144,6254097:257939 -k1,17863:32583029,6254097:0 -) -(1,17864:6630773,7095585:25952256,513147,122846 -k1,17863:9565450,7095585:244424 -k1,17863:10469166,7095585:244424 -k1,17863:14785342,7095585:244424 -k1,17863:16221211,7095585:244424 -(1,17863:16221211,7095585:0,452978,122846 -r1,17900:22206866,7095585:5985655,575824,122846 -k1,17863:16221211,7095585:-5985655 -) -(1,17863:16221211,7095585:5985655,452978,122846 -k1,17863:16221211,7095585:3277 -h1,17863:22203589,7095585:0,411205,112570 -) -k1,17863:22451290,7095585:244424 -k1,17863:25383344,7095585:244423 -k1,17863:26831009,7095585:244424 -k1,17863:28411057,7095585:244424 -k1,17863:30510150,7095585:244424 -k1,17863:31563944,7095585:244424 -k1,17863:32583029,7095585:0 -) -(1,17864:6630773,7937073:25952256,513147,134348 -k1,17863:8915712,7937073:274294 -k1,17863:11775401,7937073:274294 -k1,17863:12701123,7937073:274294 -k1,17863:13994502,7937073:274294 -(1,17863:13994502,7937073:0,414482,115847 -r1,17900:14352768,7937073:358266,530329,115847 -k1,17863:13994502,7937073:-358266 -) -(1,17863:13994502,7937073:358266,414482,115847 -k1,17863:13994502,7937073:3277 -h1,17863:14349491,7937073:0,411205,112570 -) -k1,17863:14800732,7937073:274294 -(1,17863:14800732,7937073:0,414482,115847 -r1,17900:15158998,7937073:358266,530329,115847 -k1,17863:14800732,7937073:-358266 -) -(1,17863:14800732,7937073:358266,414482,115847 -k1,17863:14800732,7937073:3277 -h1,17863:15155721,7937073:0,411205,112570 -) -k1,17863:15606962,7937073:274294 -(1,17863:15606962,7937073:0,452978,115847 -r1,17900:17020363,7937073:1413401,568825,115847 -k1,17863:15606962,7937073:-1413401 -) -(1,17863:15606962,7937073:1413401,452978,115847 -k1,17863:15606962,7937073:3277 -h1,17863:17017086,7937073:0,411205,112570 -) -k1,17863:17294657,7937073:274294 -k1,17863:18760396,7937073:274294 -(1,17863:18760396,7937073:0,414482,115847 -r1,17900:20173797,7937073:1413401,530329,115847 -k1,17863:18760396,7937073:-1413401 -) -(1,17863:18760396,7937073:1413401,414482,115847 -k1,17863:18760396,7937073:3277 -h1,17863:20170520,7937073:0,411205,112570 -) -k1,17863:20621761,7937073:274294 -k1,17863:22631448,7937073:274294 -(1,17863:22631448,7937073:0,414482,115847 -r1,17900:22989714,7937073:358266,530329,115847 -k1,17863:22631448,7937073:-358266 -) -(1,17863:22631448,7937073:358266,414482,115847 -k1,17863:22631448,7937073:3277 -h1,17863:22986437,7937073:0,411205,112570 -) -k1,17863:23264008,7937073:274294 -k1,17863:24485953,7937073:274294 -k1,17863:25779332,7937073:274294 -k1,17863:28667857,7937073:274294 -k1,17863:29601443,7937073:274294 -k1,17863:30894822,7937073:274294 -k1,17863:32583029,7937073:0 -) -(1,17864:6630773,8778561:25952256,513147,134348 -k1,17863:8041513,8778561:219295 -(1,17863:8041513,8778561:0,452978,115847 -r1,17900:9454914,8778561:1413401,568825,115847 -k1,17863:8041513,8778561:-1413401 -) -(1,17863:8041513,8778561:1413401,452978,115847 -k1,17863:8041513,8778561:3277 -h1,17863:9451637,8778561:0,411205,112570 -) -k1,17863:9674208,8778561:219294 -k1,17863:11084948,8778561:219295 -(1,17863:11084948,8778561:0,414482,115847 -r1,17900:12498349,8778561:1413401,530329,115847 -k1,17863:11084948,8778561:-1413401 -) -(1,17863:11084948,8778561:1413401,414482,115847 -k1,17863:11084948,8778561:3277 -h1,17863:12495072,8778561:0,411205,112570 -) -k1,17863:12717644,8778561:219295 -k1,17863:13884589,8778561:219294 -k1,17863:15122969,8778561:219295 -k1,17863:18286797,8778561:219295 -k1,17863:19165383,8778561:219294 -k1,17863:20403763,8778561:219295 -k1,17863:22136283,8778561:219294 -k1,17863:23014870,8778561:219295 -k1,17863:24253250,8778561:219295 -k1,17863:25641051,8778561:219294 -k1,17863:28551254,8778561:219295 -k1,17863:32583029,8778561:0 -) -(1,17864:6630773,9620049:25952256,505283,134348 -k1,17863:7284751,9620049:298118 -k1,17863:9537153,9620049:298118 -k1,17863:11185313,9620049:298118 -k1,17863:13185401,9620049:298118 -k1,17863:17074236,9620049:298118 -(1,17863:17074236,9620049:0,452978,122846 -r1,17900:21301332,9620049:4227096,575824,122846 -k1,17863:17074236,9620049:-4227096 -) -(1,17863:17074236,9620049:4227096,452978,122846 -k1,17863:17074236,9620049:3277 -h1,17863:21298055,9620049:0,411205,112570 -) -k1,17863:21599449,9620049:298117 -k1,17863:23089012,9620049:298118 -(1,17863:23089012,9620049:0,452978,122846 -r1,17900:28371243,9620049:5282231,575824,122846 -k1,17863:23089012,9620049:-5282231 -) -(1,17863:23089012,9620049:5282231,452978,122846 -k1,17863:23089012,9620049:3277 -h1,17863:28367966,9620049:0,411205,112570 -) -k1,17863:28669361,9620049:298118 -k1,17863:30553450,9620049:298118 -k1,17863:32227169,9620049:298118 -k1,17863:32583029,9620049:0 -) -(1,17864:6630773,10461537:25952256,513147,134348 -k1,17863:9547507,10461537:225826 -k1,17863:10456218,10461537:225826 -k1,17863:11037904,10461537:225826 -k1,17863:13954638,10461537:225826 -k1,17863:15574415,10461537:225826 -k1,17863:18099244,10461537:225826 -k1,17863:20011967,10461537:225826 -k1,17863:21795584,10461537:225826 -k1,17863:23012970,10461537:225826 -k1,17863:26543777,10461537:225826 -k1,17863:28282829,10461537:225826 -k1,17863:31189078,10461537:225826 -k1,17863:32583029,10461537:0 -) -(1,17864:6630773,11303025:25952256,513147,126483 -k1,17863:9536841,11303025:223679 -k1,17863:11458559,11303025:223680 -k1,17863:15190380,11303025:223679 -k1,17863:16405619,11303025:223679 -k1,17863:19858258,11303025:223680 -k1,17863:20891307,11303025:223679 -k1,17863:22134071,11303025:223679 -k1,17863:23327027,11303025:223679 -k1,17863:24622876,11303025:223680 -k1,17863:25950837,11303025:223679 -k1,17863:27460332,11303025:223679 -k1,17863:28431778,11303025:223680 -k1,17863:30168683,11303025:223679 -k1,17863:32583029,11303025:0 -) -(1,17864:6630773,12144513:25952256,513147,134348 -k1,17863:8591985,12144513:263174 -k1,17863:9874244,12144513:263174 -k1,17863:11526780,12144513:263173 -k1,17863:15298096,12144513:263174 -k1,17863:16552830,12144513:263174 -k1,17863:18854174,12144513:263174 -k1,17863:19733386,12144513:263174 -k1,17863:20352419,12144513:263173 -k1,17863:22004956,12144513:263174 -k1,17863:24144426,12144513:263174 -k1,17863:26612887,12144513:263174 -k1,17863:27562222,12144513:263173 -k1,17863:28596099,12144513:263174 -k1,17863:31931601,12144513:263174 -k1,17864:32583029,12144513:0 -) -(1,17864:6630773,12986001:25952256,452978,115847 -(1,17863:6630773,12986001:0,452978,115847 -r1,17900:8044174,12986001:1413401,568825,115847 -k1,17863:6630773,12986001:-1413401 -) -(1,17863:6630773,12986001:1413401,452978,115847 -k1,17863:6630773,12986001:3277 -h1,17863:8040897,12986001:0,411205,112570 -) -k1,17864:32583028,12986001:24365184 -g1,17864:32583028,12986001 -) -(1,17865:6630773,15077261:25952256,534184,147783 -(1,17865:6630773,15077261:2450326,534184,12975 -g1,17865:6630773,15077261 -g1,17865:9081099,15077261 -) -k1,17865:32583029,15077261:22079602 -g1,17865:32583029,15077261 -) -(1,17870:6630773,16311965:25952256,505283,134348 -k1,17868:9038616,16311965:231392 -k1,17868:10347421,16311965:231393 -k1,17868:12186411,16311965:231392 -k1,17868:13409364,16311965:231393 -k1,17868:15153982,16311965:231392 -k1,17868:16146902,16311965:231392 -k1,17868:20108604,16311965:231393 -k1,17868:22678976,16311965:231392 -k1,17868:24290556,16311965:231392 -k1,17868:25513509,16311965:231393 -k1,17868:28032108,16311965:231392 -k1,17868:29034204,16311965:231393 -k1,17868:31931601,16311965:231392 -k1,17868:32583029,16311965:0 -) -(1,17870:6630773,17153453:25952256,513147,126483 -k1,17868:8995279,17153453:195264 -k1,17868:10971813,17153453:195265 -k1,17868:12069508,17153453:195264 -k1,17868:14926190,17153453:195265 -k1,17868:15780746,17153453:195264 -k1,17868:16995096,17153453:195265 -k1,17868:18282845,17153453:195264 -k1,17868:19145266,17153453:195265 -(1,17868:19145266,17153453:0,452978,122846 -r1,17900:22668938,17153453:3523672,575824,122846 -k1,17868:19145266,17153453:-3523672 -) -(1,17868:19145266,17153453:3523672,452978,122846 -k1,17868:19145266,17153453:3277 -h1,17868:22665661,17153453:0,411205,112570 -) -k1,17868:22864202,17153453:195264 -k1,17868:25548524,17153453:195265 -k1,17868:27301579,17153453:195264 -k1,17868:29212577,17153453:195265 -k1,17868:29865938,17153453:195264 -k1,17868:31931601,17153453:195265 -k1,17868:32583029,17153453:0 -) -(1,17870:6630773,17994941:25952256,513147,138281 -g1,17868:7854985,17994941 -g1,17868:9073299,17994941 -g1,17868:13053955,17994941 -g1,17868:13912476,17994941 -g1,17868:18183457,17994941 -g1,17869:20127254,17994941 -g1,17869:21345568,17994941 -$1,17869:21345568,17994941 -$1,17869:21848229,17994941 -g1,17869:22260450,17994941 -g1,17869:23651124,17994941 -$1,17869:23651124,17994941 -$1,17869:24202937,17994941 -k1,17870:32583029,17994941:6594891 -g1,17870:32583029,17994941 -) -v1,17872:6630773,19185407:0,393216,0 -(1,17879:6630773,21499037:25952256,2706846,196608 -g1,17879:6630773,21499037 -g1,17879:6630773,21499037 -g1,17879:6434165,21499037 -(1,17879:6434165,21499037:0,2706846,196608 -r1,17900:32779637,21499037:26345472,2903454,196608 -k1,17879:6434165,21499037:-26345472 -) -(1,17879:6434165,21499037:26345472,2706846,196608 -[1,17879:6630773,21499037:25952256,2510238,0 -(1,17874:6630773,19393025:25952256,404226,107478 -(1,17873:6630773,19393025:0,0,0 -g1,17873:6630773,19393025 -g1,17873:6630773,19393025 -g1,17873:6303093,19393025 -(1,17873:6303093,19393025:0,0,0 -) -g1,17873:6630773,19393025 -) -k1,17874:6630773,19393025:0 -g1,17874:10424522,19393025 -g1,17874:11056814,19393025 -k1,17874:11056814,19393025:0 -h1,17874:13269834,19393025:0,0,0 -k1,17874:32583030,19393025:19313196 -g1,17874:32583030,19393025 -) -(1,17875:6630773,20059203:25952256,410518,107478 -h1,17875:6630773,20059203:0,0,0 -g1,17875:6946919,20059203 -g1,17875:7263065,20059203 -g1,17875:7579211,20059203 -g1,17875:7895357,20059203 -g1,17875:8211503,20059203 -g1,17875:8527649,20059203 -g1,17875:8843795,20059203 -g1,17875:10740670,20059203 -g1,17875:11372962,20059203 -g1,17875:13269837,20059203 -g1,17875:13902129,20059203 -g1,17875:14534421,20059203 -g1,17875:16115150,20059203 -g1,17875:18012024,20059203 -g1,17875:18644316,20059203 -g1,17875:23070356,20059203 -h1,17875:23386502,20059203:0,0,0 -k1,17875:32583029,20059203:9196527 -g1,17875:32583029,20059203 -) -(1,17876:6630773,20725381:25952256,404226,107478 -h1,17876:6630773,20725381:0,0,0 -g1,17876:6946919,20725381 -g1,17876:7263065,20725381 -g1,17876:11372959,20725381 -h1,17876:11689105,20725381:0,0,0 -k1,17876:32583029,20725381:20893924 -g1,17876:32583029,20725381 -) -(1,17877:6630773,21391559:25952256,404226,107478 -h1,17877:6630773,21391559:0,0,0 -g1,17877:6946919,21391559 -g1,17877:7263065,21391559 -k1,17877:7263065,21391559:0 -h1,17877:10424521,21391559:0,0,0 -k1,17877:32583029,21391559:22158508 -g1,17877:32583029,21391559 -) -] -) -g1,17879:32583029,21499037 -g1,17879:6630773,21499037 -g1,17879:6630773,21499037 -g1,17879:32583029,21499037 -g1,17879:32583029,21499037 -) -h1,17879:6630773,21695645:0,0,0 -(1,17882:6630773,31369135:25952256,9083666,0 -k1,17882:10523651,31369135:3892878 -h1,17881:10523651,31369135:0,0,0 -(1,17881:10523651,31369135:18166500,9083666,0 -(1,17881:10523651,31369135:18167376,9083688,0 -(1,17881:10523651,31369135:18167376,9083688,0 -(1,17881:10523651,31369135:0,9083688,0 -(1,17881:10523651,31369135:0,14208860,0 -(1,17881:10523651,31369135:28417720,14208860,0 -) -k1,17881:10523651,31369135:-28417720 -) -) -g1,17881:28691027,31369135 -) -) -) -g1,17882:28690151,31369135 -k1,17882:32583029,31369135:3892878 -) -v1,17889:6630773,32734911:0,393216,0 -(1,17890:6630773,37489418:25952256,5147723,0 -g1,17890:6630773,37489418 -g1,17890:6303093,37489418 -r1,17900:6401397,37489418:98304,5147723,0 -g1,17890:6600626,37489418 -g1,17890:6797234,37489418 -[1,17890:6797234,37489418:25785795,5147723,0 -(1,17890:6797234,33155495:25785795,813800,267386 -(1,17889:6797234,33155495:0,813800,267386 -r1,17900:8134168,33155495:1336934,1081186,267386 -k1,17889:6797234,33155495:-1336934 -) -(1,17889:6797234,33155495:1336934,813800,267386 -) -k1,17889:8333491,33155495:199323 -k1,17889:8661171,33155495:327680 -k1,17889:10094537,33155495:199323 -k1,17889:11901458,33155495:199323 -k1,17889:13092341,33155495:199323 -k1,17889:14893364,33155495:199323 -k1,17889:17069908,33155495:199323 -k1,17889:18967269,33155495:199323 -k1,17889:20185677,33155495:199323 -k1,17889:21879221,33155495:199323 -k1,17889:24410970,33155495:199323 -k1,17889:25269585,33155495:199323 -k1,17889:29540660,33155495:199323 -k1,17889:30271480,33155495:199323 -k1,17889:31537074,33155495:199323 -k1,17889:32583029,33155495:0 -) -(1,17890:6797234,33996983:25785795,505283,134348 -k1,17889:8662805,33996983:286809 -k1,17889:12051434,33996983:286810 -k1,17889:13745956,33996983:286809 -k1,17889:16475947,33996983:286809 -k1,17889:17808712,33996983:286810 -k1,17889:20966653,33996983:286809 -k1,17889:22444908,33996983:286810 -k1,17889:23750802,33996983:286809 -k1,17889:25415178,33996983:286809 -k1,17889:28416489,33996983:286810 -k1,17889:30040232,33996983:286809 -k1,17889:32583029,33996983:0 -) -(1,17890:6797234,34838471:25785795,505283,134348 -k1,17889:8811155,34838471:230686 -k1,17889:11410969,34838471:230687 -k1,17889:12173152,34838471:230686 -k1,17889:15608550,34838471:230687 -k1,17889:18197877,34838471:230686 -k1,17889:19447648,34838471:230686 -k1,17889:22699545,34838471:230687 -k1,17889:28159349,34838471:230686 -k1,17889:29151564,34838471:230687 -k1,17889:31563944,34838471:230686 -k1,17890:32583029,34838471:0 -) -(1,17890:6797234,35679959:25785795,505283,115847 -(1,17889:6797234,35679959:0,452978,115847 -r1,17900:8562347,35679959:1765113,568825,115847 -k1,17889:6797234,35679959:-1765113 -) -(1,17889:6797234,35679959:1765113,452978,115847 -k1,17889:6797234,35679959:3277 -h1,17889:8559070,35679959:0,411205,112570 -) -k1,17889:8818121,35679959:255774 -k1,17889:11918159,35679959:255775 -k1,17889:12825361,35679959:255774 -k1,17889:13436996,35679959:255775 -k1,17889:16450525,35679959:255774 -k1,17889:18386643,35679959:255775 -k1,17889:20994504,35679959:255774 -k1,17889:22692726,35679959:255775 -k1,17889:24278881,35679959:255774 -k1,17889:25638938,35679959:255775 -k1,17889:27610445,35679959:255774 -k1,17889:28885305,35679959:255775 -k1,17889:31966991,35679959:255774 -k1,17889:32583029,35679959:0 -) -(1,17890:6797234,36521447:25785795,513147,134348 -k1,17889:9340507,36521447:210847 -k1,17889:11421752,36521447:210847 -k1,17889:12284027,36521447:210847 -k1,17889:15996463,36521447:210847 -k1,17889:17990545,36521447:210847 -k1,17889:19220477,36521447:210847 -k1,17889:21917105,36521447:210847 -k1,17889:22787244,36521447:210847 -k1,17889:27069843,36521447:210847 -k1,17889:27812187,36521447:210847 -k1,17889:29767602,36521447:210847 -k1,17889:32583029,36521447:0 -) -(1,17890:6797234,37362935:25785795,513147,126483 -g1,17889:9328889,37362935 -g1,17889:11135716,37362935 -g1,17889:13515328,37362935 -g1,17889:14462323,37362935 -k1,17890:32583029,37362935:14933690 -g1,17890:32583029,37362935 -) -] -g1,17890:32583029,37489418 -) -h1,17890:6630773,37489418:0,0,0 -(1,17893:6630773,40104966:25952256,555811,12975 -(1,17893:6630773,40104966:2450326,534184,12975 -g1,17893:6630773,40104966 -g1,17893:9081099,40104966 -) -g1,17893:10837923,40104966 -g1,17893:12405151,40104966 -k1,17893:32583029,40104966:18638044 -g1,17893:32583029,40104966 -) -(1,17897:6630773,41339670:25952256,513147,126483 -k1,17896:7927114,41339670:254319 -k1,17896:9349940,41339670:254319 -k1,17896:11211857,41339670:254319 -k1,17896:12334528,41339670:254319 -k1,17896:13681331,41339670:254318 -(1,17896:13681331,41339670:0,452978,122846 -r1,17900:17556715,41339670:3875384,575824,122846 -k1,17896:13681331,41339670:-3875384 -) -(1,17896:13681331,41339670:3875384,452978,122846 -k1,17896:13681331,41339670:3277 -h1,17896:17553438,41339670:0,411205,112570 -) -k1,17896:17984704,41339670:254319 -k1,17896:19435710,41339670:254319 -(1,17896:19435710,41339670:0,452978,115847 -r1,17900:20849111,41339670:1413401,568825,115847 -k1,17896:19435710,41339670:-1413401 -) -(1,17896:19435710,41339670:1413401,452978,115847 -k1,17896:19435710,41339670:3277 -h1,17896:20845834,41339670:0,411205,112570 -) -k1,17896:21103430,41339670:254319 -k1,17896:22017041,41339670:254319 -k1,17896:22627220,41339670:254319 -k1,17896:24050046,41339670:254319 -k1,17896:24835862,41339670:254319 -k1,17896:25878578,41339670:254318 -k1,17896:29328432,41339670:254319 -k1,17896:30774196,41339670:254319 -k1,17896:31714677,41339670:254319 -k1,17896:32583029,41339670:0 -) -(1,17897:6630773,42181158:25952256,513147,126483 -k1,17896:8092287,42181158:270069 -(1,17896:8092287,42181158:0,452978,115847 -r1,17900:9857400,42181158:1765113,568825,115847 -k1,17896:8092287,42181158:-1765113 -) -(1,17896:8092287,42181158:1765113,452978,115847 -k1,17896:8092287,42181158:3277 -h1,17896:9854123,42181158:0,411205,112570 -) -k1,17896:10127469,42181158:270069 -k1,17896:11345188,42181158:270068 -k1,17896:13807436,42181158:270069 -k1,17896:14945857,42181158:270069 -k1,17896:16691141,42181158:270069 -(1,17896:16691141,42181158:0,452978,115847 -r1,17900:19511390,42181158:2820249,568825,115847 -k1,17896:16691141,42181158:-2820249 -) -(1,17896:16691141,42181158:2820249,452978,115847 -k1,17896:16691141,42181158:3277 -h1,17896:19508113,42181158:0,411205,112570 -) -k1,17896:19781459,42181158:270069 -k1,17896:20999178,42181158:270068 -k1,17896:22941726,42181158:270069 -k1,17896:23839630,42181158:270069 -k1,17896:24465559,42181158:270069 -k1,17896:25904134,42181158:270068 -k1,17896:27625170,42181158:270069 -k1,17896:31966991,42181158:270069 -k1,17896:32583029,42181158:0 -) -(1,17897:6630773,43022646:25952256,513147,134348 -k1,17896:10226229,43022646:269504 -k1,17896:12029931,43022646:269504 -k1,17896:12958727,43022646:269504 -k1,17896:14247317,43022646:269505 -k1,17896:15906184,43022646:269504 -k1,17896:18225654,43022646:269504 -k1,17896:19178043,43022646:269504 -k1,17896:20466632,43022646:269504 -k1,17896:22816249,43022646:269504 -k1,17896:27709319,43022646:269505 -k1,17896:28630251,43022646:269504 -k1,17896:29255615,43022646:269504 -k1,17896:31591469,43022646:269504 -k1,17896:32583029,43022646:0 -) -(1,17897:6630773,43864134:25952256,513147,134348 -k1,17896:8803466,43864134:167291 -k1,17896:9732285,43864134:167291 -k1,17896:12378147,43864134:167290 -k1,17896:14217917,43864134:167291 -k1,17896:15338757,43864134:167291 -k1,17896:16598533,43864134:167291 -k1,17896:17121684,43864134:167291 -k1,17896:20051317,43864134:167290 -k1,17896:21607971,43864134:167291 -k1,17896:22709805,43864134:167291 -k1,17896:25635506,43864134:167291 -k1,17896:26418835,43864134:167291 -k1,17896:27174638,43864134:167290 -(1,17896:27174638,43864134:0,414482,122846 -r1,17900:29291463,43864134:2116825,537328,122846 -k1,17896:27174638,43864134:-2116825 -) -(1,17896:27174638,43864134:2116825,414482,122846 -k1,17896:27174638,43864134:3277 -h1,17896:29288186,43864134:0,411205,112570 -) -k1,17896:29632424,43864134:167291 -k1,17896:31193666,43864134:167291 -k1,17896:32583029,43864134:0 -) -(1,17897:6630773,44705622:25952256,513147,134348 -g1,17896:7639372,44705622 -g1,17896:8857686,44705622 -g1,17896:11306766,44705622 -g1,17896:12165287,44705622 -g1,17896:13499600,44705622 -g1,17896:15873969,44705622 -g1,17896:17817111,44705622 -g1,17896:19066227,44705622 -g1,17896:20284541,44705622 -g1,17896:21871823,44705622 -g1,17896:23569205,44705622 -g1,17896:24716085,44705622 -(1,17896:24716085,44705622:0,414482,122846 -r1,17900:26832910,44705622:2116825,537328,122846 -k1,17896:24716085,44705622:-2116825 -) -(1,17896:24716085,44705622:2116825,414482,122846 -k1,17896:24716085,44705622:3277 -h1,17896:26829633,44705622:0,411205,112570 -) -g1,17896:27032139,44705622 -g1,17896:28179019,44705622 -k1,17897:32583029,44705622:2112871 -g1,17897:32583029,44705622 -) -] -(1,17900:32583029,45706769:0,0,0 -g1,17900:32583029,45706769 -) -) -] -(1,17900:6630773,47279633:25952256,0,0 -h1,17900:6630773,47279633:25952256,0,0 -) -] -(1,17900:4262630,4025873:0,0,0 -[1,17900:-473656,4025873:0,0,0 -(1,17900:-473656,-710413:0,0,0 -(1,17900:-473656,-710413:0,0,0 -g1,17900:-473656,-710413 -) -g1,17900:-473656,-710413 -) -] -) -] -!23058 -}313 -Input:2668:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2669:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2670:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2671:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2672:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2673:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2674:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2675:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2676:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2677:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2678:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2679:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2680:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2681:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2682:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +[1,17964:6630773,45706769:25952256,40108032,0 +(1,17924:6630773,14682403:25952256,9083666,0 +k1,17924:10523651,14682403:3892878 +h1,17923:10523651,14682403:0,0,0 +(1,17923:10523651,14682403:18166500,9083666,0 +(1,17923:10523651,14682403:18167376,9083688,0 +(1,17923:10523651,14682403:18167376,9083688,0 +(1,17923:10523651,14682403:0,9083688,0 +(1,17923:10523651,14682403:0,14208860,0 +(1,17923:10523651,14682403:28417720,14208860,0 +) +k1,17923:10523651,14682403:-28417720 +) +) +g1,17923:28691027,14682403 +) +) +) +g1,17924:28690151,14682403 +k1,17924:32583029,14682403:3892878 +) +(1,17931:6630773,15547483:25952256,513147,122846 +h1,17930:6630773,15547483:983040,0,0 +k1,17930:10593389,15547483:189708 +(1,17930:10593389,15547483:0,452978,115847 +r1,17964:17282467,15547483:6689078,568825,115847 +k1,17930:10593389,15547483:-6689078 +) +(1,17930:10593389,15547483:6689078,452978,115847 +k1,17930:10593389,15547483:3277 +h1,17930:17279190,15547483:0,411205,112570 +) +k1,17930:17645844,15547483:189707 +k1,17930:19721023,15547483:189708 +k1,17930:20442228,15547483:189708 +k1,17930:21651020,15547483:189707 +k1,17930:24106308,15547483:189708 +k1,17930:25243667,15547483:189708 +(1,17930:25243667,15547483:0,452978,122846 +r1,17964:29470763,15547483:4227096,575824,122846 +k1,17930:25243667,15547483:-4227096 +) +(1,17930:25243667,15547483:4227096,452978,122846 +k1,17930:25243667,15547483:3277 +h1,17930:29467486,15547483:0,411205,112570 +) +k1,17930:29834140,15547483:189707 +k1,17930:31516758,15547483:189708 +k1,17930:32583029,15547483:0 +) +(1,17931:6630773,16412563:25952256,513147,126483 +k1,17930:8282281,16412563:197919 +k1,17930:9499284,16412563:197918 +k1,17930:13435377,16412563:197919 +k1,17930:14316180,16412563:197918 +k1,17930:17128330,16412563:197919 +k1,17930:17985540,16412563:197918 +k1,17930:22428881,16412563:197919 +k1,17930:23312962,16412563:197919 +k1,17930:25586405,16412563:197918 +k1,17930:26400362,16412563:197919 +k1,17930:27364396,16412563:197918 +k1,17930:30554034,16412563:197919 +k1,17930:32583029,16412563:0 +) +(1,17931:6630773,17277643:25952256,513147,134348 +k1,17930:7619645,17277643:159842 +k1,17930:9495220,17277643:159842 +k1,17930:13435179,17277643:159842 +k1,17930:17666773,17277643:159842 +k1,17930:20043043,17277643:159842 +k1,17930:22530069,17277643:159843 +k1,17930:23349203,17277643:159842 +k1,17930:25867686,17277643:159842 +k1,17930:27046613,17277643:159842 +k1,17930:29224964,17277643:159842 +k1,17931:32583029,17277643:0 +) +(1,17931:6630773,18142723:25952256,505283,134348 +k1,17930:8941104,18142723:226286 +k1,17930:9853552,18142723:226286 +k1,17930:12108834,18142723:226287 +k1,17930:13203472,18142723:226286 +k1,17930:14534040,18142723:226286 +k1,17930:17820857,18142723:226286 +k1,17930:20662031,18142723:226287 +k1,17930:22701043,18142723:226286 +k1,17930:24308173,18142723:226286 +k1,17930:25065956,18142723:226286 +k1,17930:27160018,18142723:226286 +k1,17930:29086964,18142723:226287 +k1,17930:30504695,18142723:226286 +k1,17930:31835263,18142723:226286 +k1,17930:32583029,18142723:0 +) +(1,17931:6630773,19007803:25952256,513147,134348 +k1,17930:8846856,19007803:250658 +k1,17930:10832906,19007803:250657 +(1,17930:10832906,19007803:0,452978,122846 +r1,17964:16818561,19007803:5985655,575824,122846 +k1,17930:10832906,19007803:-5985655 +) +(1,17930:10832906,19007803:5985655,452978,122846 +k1,17930:10832906,19007803:3277 +h1,17930:16815284,19007803:0,411205,112570 +) +k1,17930:17069219,19007803:250658 +k1,17930:18006038,19007803:250657 +k1,17930:21329024,19007803:250658 +k1,17930:22231109,19007803:250657 +k1,17930:24610376,19007803:250658 +k1,17930:28141765,19007803:250657 +(1,17930:28141765,19007803:0,452978,115847 +r1,17964:30962014,19007803:2820249,568825,115847 +k1,17930:28141765,19007803:-2820249 +) +(1,17930:28141765,19007803:2820249,452978,115847 +k1,17930:28141765,19007803:3277 +h1,17930:30958737,19007803:0,411205,112570 +) +k1,17930:31386342,19007803:250658 +k1,17930:32583029,19007803:0 +) +(1,17931:6630773,19872883:25952256,513147,134348 +k1,17930:9261471,19872883:173753 +k1,17930:10094515,19872883:173752 +k1,17930:11845720,19872883:173753 +k1,17930:12550970,19872883:173753 +k1,17930:13659265,19872883:173752 +k1,17930:14594546,19872883:173753 +k1,17930:17320926,19872883:173753 +k1,17930:20897308,19872883:173753 +k1,17930:23276347,19872883:173752 +k1,17930:24101528,19872883:173753 +(1,17930:24101528,19872883:0,452978,115847 +r1,17964:25866641,19872883:1765113,568825,115847 +k1,17930:24101528,19872883:-1765113 +) +(1,17930:24101528,19872883:1765113,452978,115847 +k1,17930:24101528,19872883:3277 +h1,17930:25863364,19872883:0,411205,112570 +) +k1,17930:26040394,19872883:173753 +k1,17930:28424020,19872883:173752 +(1,17930:28424020,19872883:0,452978,122846 +r1,17964:30540845,19872883:2116825,575824,122846 +k1,17930:28424020,19872883:-2116825 +) +(1,17930:28424020,19872883:2116825,452978,122846 +k1,17930:28424020,19872883:3277 +h1,17930:30537568,19872883:0,411205,112570 +) +k1,17930:30888268,19872883:173753 +k1,17930:32583029,19872883:0 +) +(1,17931:6630773,20737963:25952256,513147,134348 +g1,17930:7516164,20737963 +g1,17930:8071253,20737963 +g1,17930:10780511,20737963 +g1,17930:11639032,20737963 +g1,17930:12857346,20737963 +g1,17930:15717337,20737963 +g1,17930:18551769,20737963 +g1,17930:21462878,20737963 +g1,17930:23556097,20737963 +g1,17930:25547736,20737963 +g1,17930:26363003,20737963 +g1,17930:27581317,20737963 +k1,17931:32583029,20737963:3550745 +g1,17931:32583029,20737963 +) +v1,17933:6630773,21422818:0,393216,0 +(1,17938:6630773,22454962:25952256,1425360,196608 +g1,17938:6630773,22454962 +g1,17938:6630773,22454962 +g1,17938:6434165,22454962 +(1,17938:6434165,22454962:0,1425360,196608 +r1,17964:32779637,22454962:26345472,1621968,196608 +k1,17938:6434165,22454962:-26345472 +) +(1,17938:6434165,22454962:26345472,1425360,196608 +[1,17938:6630773,22454962:25952256,1228752,0 +(1,17935:6630773,21657255:25952256,431045,112852 +(1,17934:6630773,21657255:0,0,0 +g1,17934:6630773,21657255 +g1,17934:6630773,21657255 +g1,17934:6303093,21657255 +(1,17934:6303093,21657255:0,0,0 +) +g1,17934:6630773,21657255 +) +k1,17935:6630773,21657255:0 +g1,17935:10614221,21657255 +g1,17935:11278129,21657255 +g1,17935:13933761,21657255 +g1,17935:15925485,21657255 +g1,17935:16589393,21657255 +g1,17935:20904795,21657255 +g1,17935:21568703,21657255 +g1,17935:22232611,21657255 +g1,17935:24224335,21657255 +h1,17935:24556289,21657255:0,0,0 +k1,17935:32583029,21657255:8026740 +g1,17935:32583029,21657255 +) +(1,17936:6630773,22342110:25952256,424439,112852 +h1,17936:6630773,22342110:0,0,0 +g1,17936:6962727,22342110 +g1,17936:7294681,22342110 +g1,17936:13933759,22342110 +g1,17936:14597667,22342110 +g1,17936:21900654,22342110 +g1,17936:22564562,22342110 +g1,17936:24556286,22342110 +g1,17936:26548010,22342110 +g1,17936:27211918,22342110 +h1,17936:28871688,22342110:0,0,0 +k1,17936:32583029,22342110:3711341 +g1,17936:32583029,22342110 +) +] +) +g1,17938:32583029,22454962 +g1,17938:6630773,22454962 +g1,17938:6630773,22454962 +g1,17938:32583029,22454962 +g1,17938:32583029,22454962 +) +h1,17938:6630773,22651570:0,0,0 +(1,17941:6630773,31800772:25952256,9083666,0 +k1,17941:10523651,31800772:3892878 +h1,17940:10523651,31800772:0,0,0 +(1,17940:10523651,31800772:18166500,9083666,0 +(1,17940:10523651,31800772:18167376,9083688,0 +(1,17940:10523651,31800772:18167376,9083688,0 +(1,17940:10523651,31800772:0,9083688,0 +(1,17940:10523651,31800772:0,14208860,0 +(1,17940:10523651,31800772:28417720,14208860,0 +) +k1,17940:10523651,31800772:-28417720 +) +) +g1,17940:28691027,31800772 +) +) +) +g1,17941:28690151,31800772 +k1,17941:32583029,31800772:3892878 +) +v1,17948:6630773,32665852:0,393216,0 +(1,17964:6630773,37589241:25952256,5316605,0 +g1,17964:6630773,37589241 +g1,17964:6237557,37589241 +r1,17964:6368629,37589241:131072,5316605,0 +g1,17964:6567858,37589241 +g1,17964:6764466,37589241 +[1,17964:6764466,37589241:25818563,5316605,0 +(1,17949:6764466,33080394:25818563,807758,219026 +(1,17948:6764466,33080394:0,807758,219026 +r1,17964:7908217,33080394:1143751,1026784,219026 +k1,17948:6764466,33080394:-1143751 +) +(1,17948:6764466,33080394:1143751,807758,219026 +) +k1,17948:8094024,33080394:185807 +k1,17948:8421704,33080394:327680 +k1,17948:9804197,33080394:185806 +k1,17948:11728019,33080394:185807 +k1,17948:12599987,33080394:185806 +k1,17948:13141654,33080394:185807 +k1,17948:16302139,33080394:185806 +k1,17948:18353756,33080394:185807 +k1,17948:19643844,33080394:185806 +k1,17948:20577417,33080394:185807 +k1,17948:22049039,33080394:185806 +k1,17948:23748072,33080394:185807 +k1,17948:25631916,33080394:185806 +k1,17948:26627093,33080394:185807 +k1,17948:30215528,33080394:185806 +k1,17948:31931601,33080394:185807 +k1,17948:32583029,33080394:0 +) +(1,17949:6764466,33945474:25818563,513147,134348 +k1,17948:7739969,33945474:227737 +k1,17948:10172993,33945474:227737 +k1,17948:11052159,33945474:227738 +k1,17948:12298981,33945474:227737 +k1,17948:14973833,33945474:227737 +k1,17948:18070737,33945474:227738 +k1,17948:19489919,33945474:227737 +k1,17948:20665307,33945474:227737 +k1,17948:22585184,33945474:227737 +k1,17948:25757455,33945474:227738 +k1,17948:26746720,33945474:227737 +k1,17948:29401911,33945474:227737 +k1,17948:32583029,33945474:0 +) +(1,17949:6764466,34810554:25818563,513147,134348 +k1,17948:10439332,34810554:272237 +k1,17948:11362996,34810554:272236 +k1,17948:14032540,34810554:272237 +k1,17948:17915810,34810554:272236 +k1,17948:18847339,34810554:272237 +k1,17948:22800732,34810554:272236 +k1,17948:26007671,34810554:272237 +k1,17948:27298992,34810554:272236 +k1,17948:29836809,34810554:272237 +k1,17948:31923737,34810554:272236 +k1,17948:32583029,34810554:0 +) +(1,17949:6764466,35675634:25818563,505283,126483 +$1,17948:8318980,35675634 +g1,17948:8518209,35675634 +g1,17948:10487565,35675634 +g1,17948:11338222,35675634 +g1,17948:12285217,35675634 +g1,17948:14330595,35675634 +k1,17949:32583029,35675634:15624440 +g1,17949:32583029,35675634 +) +v1,17951:6764466,36360489:0,393216,0 +(1,17956:6764466,37392633:25818563,1425360,196608 +g1,17956:6764466,37392633 +g1,17956:6764466,37392633 +g1,17956:6567858,37392633 +(1,17956:6567858,37392633:0,1425360,196608 +r1,17964:32779637,37392633:26211779,1621968,196608 +k1,17956:6567857,37392633:-26211780 +) +(1,17956:6567858,37392633:26211779,1425360,196608 +[1,17956:6764466,37392633:25818563,1228752,0 +(1,17953:6764466,36594926:25818563,431045,112852 +(1,17952:6764466,36594926:0,0,0 +g1,17952:6764466,36594926 +g1,17952:6764466,36594926 +g1,17952:6436786,36594926 +(1,17952:6436786,36594926:0,0,0 +) +g1,17952:6764466,36594926 +) +k1,17953:6764466,36594926:0 +g1,17953:10747914,36594926 +g1,17953:11411822,36594926 +g1,17953:14067454,36594926 +g1,17953:16059178,36594926 +g1,17953:16723086,36594926 +g1,17953:21038488,36594926 +g1,17953:21702396,36594926 +g1,17953:22366304,36594926 +g1,17953:24358028,36594926 +g1,17953:26681706,36594926 +g1,17953:27345614,36594926 +g1,17953:31661016,36594926 +h1,17953:31992970,36594926:0,0,0 +k1,17953:32583029,36594926:590059 +g1,17953:32583029,36594926 +) +(1,17954:6764466,37279781:25818563,424439,112852 +h1,17954:6764466,37279781:0,0,0 +g1,17954:7096420,37279781 +g1,17954:7428374,37279781 +g1,17954:14067452,37279781 +g1,17954:14731360,37279781 +h1,17954:17718945,37279781:0,0,0 +k1,17954:32583029,37279781:14864084 +g1,17954:32583029,37279781 +) +] +) +g1,17956:32583029,37392633 +g1,17956:6764466,37392633 +g1,17956:6764466,37392633 +g1,17956:32583029,37392633 +g1,17956:32583029,37392633 +) +h1,17956:6764466,37589241:0,0,0 +] +g1,17964:32583029,37589241 +) +] +(1,17964:32583029,45706769:0,0,0 +g1,17964:32583029,45706769 +) +) +] +(1,17964:6630773,47279633:25952256,0,0 +h1,17964:6630773,47279633:25952256,0,0 +) +] +(1,17964:4262630,4025873:0,0,0 +[1,17964:-473656,4025873:0,0,0 +(1,17964:-473656,-710413:0,0,0 +(1,17964:-473656,-710413:0,0,0 +g1,17964:-473656,-710413 +) +g1,17964:-473656,-710413 +) +] +) +] +!14716 +}295 Input:2683:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2684:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2685:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2686:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2687:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2688:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2689:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2690:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2691:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2692:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2693:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2694:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2695:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2696:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2697:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2698:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!2926 -{314 -[1,17950:4262630,47279633:28320399,43253760,0 -(1,17950:4262630,4025873:0,0,0 -[1,17950:-473656,4025873:0,0,0 -(1,17950:-473656,-710413:0,0,0 -(1,17950:-473656,-644877:0,0,0 -k1,17950:-473656,-644877:-65536 +!482 +{296 +[1,18006:4262630,47279633:28320399,43253760,0 +(1,18006:4262630,4025873:0,0,0 +[1,18006:-473656,4025873:0,0,0 +(1,18006:-473656,-710413:0,0,0 +(1,18006:-473656,-644877:0,0,0 +k1,18006:-473656,-644877:-65536 ) -(1,17950:-473656,4736287:0,0,0 -k1,17950:-473656,4736287:5209943 +(1,18006:-473656,4736287:0,0,0 +k1,18006:-473656,4736287:5209943 ) -g1,17950:-473656,-710413 +g1,18006:-473656,-710413 ) ] ) -[1,17950:6630773,47279633:25952256,43253760,0 -[1,17950:6630773,4812305:25952256,786432,0 -(1,17950:6630773,4812305:25952256,485622,11795 -(1,17950:6630773,4812305:25952256,485622,11795 -g1,17950:3078558,4812305 -[1,17950:3078558,4812305:0,0,0 -(1,17950:3078558,2439708:0,1703936,0 -k1,17950:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,17950:2537886,2439708:1179648,16384,0 +[1,18006:6630773,47279633:25952256,43253760,0 +[1,18006:6630773,4812305:25952256,786432,0 +(1,18006:6630773,4812305:25952256,485622,11795 +(1,18006:6630773,4812305:25952256,485622,11795 +g1,18006:3078558,4812305 +[1,18006:3078558,4812305:0,0,0 +(1,18006:3078558,2439708:0,1703936,0 +k1,18006:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,18006:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,17950:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,18006:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,17950:3078558,4812305:0,0,0 -(1,17950:3078558,2439708:0,1703936,0 -g1,17950:29030814,2439708 -g1,17950:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,17950:36151628,1915420:16384,1179648,0 +[1,18006:3078558,4812305:0,0,0 +(1,18006:3078558,2439708:0,1703936,0 +g1,18006:29030814,2439708 +g1,18006:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,18006:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,17950:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,18006:37855564,2439708:1179648,16384,0 ) ) -k1,17950:3078556,2439708:-34777008 +k1,18006:3078556,2439708:-34777008 ) ] -[1,17950:3078558,4812305:0,0,0 -(1,17950:3078558,49800853:0,16384,2228224 -k1,17950:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,17950:2537886,49800853:1179648,16384,0 +[1,18006:3078558,4812305:0,0,0 +(1,18006:3078558,49800853:0,16384,2228224 +k1,18006:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,18006:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,17950:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,18006:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,17950:3078558,4812305:0,0,0 -(1,17950:3078558,49800853:0,16384,2228224 -g1,17950:29030814,49800853 -g1,17950:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,17950:36151628,51504789:16384,1179648,0 +[1,18006:3078558,4812305:0,0,0 +(1,18006:3078558,49800853:0,16384,2228224 +g1,18006:29030814,49800853 +g1,18006:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,18006:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,17950:37855564,49800853:1179648,16384,0 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,18006:37855564,49800853:1179648,16384,0 ) ) -k1,17950:3078556,49800853:-34777008 +k1,18006:3078556,49800853:-34777008 ) ] -g1,17950:6630773,4812305 -g1,17950:6630773,4812305 -g1,17950:10347975,4812305 -k1,17950:31387651,4812305:21039676 +g1,18006:6630773,4812305 +g1,18006:6630773,4812305 +g1,18006:10347975,4812305 +k1,18006:31387651,4812305:21039676 ) ) ] -[1,17950:6630773,45706769:25952256,40108032,0 -(1,17950:6630773,45706769:25952256,40108032,0 -(1,17950:6630773,45706769:0,0,0 -g1,17950:6630773,45706769 +[1,18006:6630773,45706769:25952256,40108032,0 +(1,18006:6630773,45706769:25952256,40108032,0 +(1,18006:6630773,45706769:0,0,0 +g1,18006:6630773,45706769 +) +[1,18006:6630773,45706769:25952256,40108032,0 +v1,17964:6630773,6254097:0,393216,0 +(1,17964:6630773,14897716:25952256,9036835,0 +g1,17964:6630773,14897716 +g1,17964:6237557,14897716 +r1,18006:6368629,14897716:131072,9036835,0 +g1,17964:6567858,14897716 +g1,17964:6764466,14897716 +[1,17964:6764466,14897716:25818563,9036835,0 +(1,17959:6764466,14897716:25818563,9036835,0 +k1,17959:10637290,14897716:3872824 +h1,17958:10637290,14897716:0,0,0 +(1,17958:10637290,14897716:18072915,9036835,0 +(1,17958:10637290,14897716:18073715,9036857,0 +(1,17958:10637290,14897716:18073715,9036857,0 +(1,17958:10637290,14897716:0,9036857,0 +(1,17958:10637290,14897716:0,14208860,0 +(1,17958:10637290,14897716:28417720,14208860,0 +) +k1,17958:10637290,14897716:-28417720 +) +) +g1,17958:28711005,14897716 +) +) +) +g1,17959:28710205,14897716 +k1,17959:32583029,14897716:3872824 +) +] +g1,17964:32583029,14897716 +) +h1,17964:6630773,14897716:0,0,0 +v1,17967:6630773,15762796:0,393216,0 +(1,18006:6630773,41189919:25952256,25820339,0 +g1,18006:6630773,41189919 +g1,18006:6237557,41189919 +r1,18006:6368629,41189919:131072,25820339,0 +g1,18006:6567858,41189919 +g1,18006:6764466,41189919 +[1,18006:6764466,41189919:25818563,25820339,0 +(1,17968:6764466,16071094:25818563,701514,196608 +(1,17967:6764466,16071094:0,701514,196608 +r1,18006:8010564,16071094:1246098,898122,196608 +k1,17967:6764466,16071094:-1246098 +) +(1,17967:6764466,16071094:1246098,701514,196608 +) +k1,17967:8223939,16071094:213375 +k1,17967:8551619,16071094:327680 +k1,17967:9961682,16071094:213376 +k1,17967:14428999,16071094:213375 +k1,17967:18135443,16071094:213375 +k1,17967:19110347,16071094:213376 +k1,17967:20901174,16071094:213375 +k1,17967:22305994,16071094:213375 +k1,17967:24491347,16071094:213375 +k1,17967:26447981,16071094:213376 +k1,17967:27277394,16071094:213375 +k1,17967:28775275,16071094:213375 +k1,17967:30566103,16071094:213376 +k1,17967:31310975,16071094:213375 +k1,17968:32583029,16071094:0 +) +(1,17968:6764466,16936174:25818563,505283,134348 +k1,17967:8629025,16936174:255650 +k1,17967:10076120,16936174:255650 +k1,17967:12303747,16936174:255649 +k1,17967:16952931,16936174:255650 +k1,17967:17836416,16936174:255650 +k1,17967:19543688,16936174:255650 +k1,17967:21166419,16936174:255650 +k1,17967:22441154,16936174:255650 +k1,17967:26950745,16936174:255649 +k1,17967:28310677,16936174:255650 +k1,17967:29314093,16936174:255650 +k1,17967:32583029,16936174:0 +) +(1,17968:6764466,17801254:25818563,513147,134348 +k1,17967:9738927,17801254:200977 +k1,17967:12851669,17801254:200977 +k1,17967:14244091,17801254:200977 +k1,17967:18501091,17801254:200977 +k1,17967:20502997,17801254:200977 +k1,17967:21390136,17801254:200977 +k1,17967:23666638,17801254:200977 +k1,17967:25722939,17801254:200977 +k1,17967:26455413,17801254:200977 +k1,17967:28633611,17801254:200977 +k1,17967:30532626,17801254:200977 +k1,17967:31601955,17801254:200977 +k1,17968:32583029,17801254:0 +) +(1,17968:6764466,18666334:25818563,513147,134348 +k1,17967:8138756,18666334:207094 +k1,17967:8997277,18666334:207093 +k1,17967:10920104,18666334:207094 +k1,17967:13169955,18666334:207094 +k1,17967:17157165,18666334:207093 +k1,17967:19556438,18666334:207094 +k1,17967:21812843,18666334:207094 +k1,17967:22551433,18666334:207093 +k1,17967:24360227,18666334:207094 +k1,17967:27872302,18666334:207094 +k1,17967:29592621,18666334:207093 +k1,17967:31193666,18666334:207094 +k1,17967:32583029,18666334:0 +) +(1,17968:6764466,19531414:25818563,513147,134348 +g1,17967:8807878,19531414 +g1,17967:9658535,19531414 +g1,17967:11587259,19531414 +g1,17967:14879132,19531414 +g1,17967:17096870,19531414 +g1,17967:17978984,19531414 +g1,17967:19880183,19531414 +g1,17967:23029187,19531414 +k1,17968:32583029,19531414:6774460 +g1,17968:32583029,19531414 +) +(1,17970:6764466,20396494:25818563,513147,134348 +h1,17969:6764466,20396494:983040,0,0 +k1,17969:9652020,20396494:186815 +k1,17969:12534331,20396494:186815 +(1,17969:12534331,20396494:0,452978,122846 +r1,18006:17464851,20396494:4930520,575824,122846 +k1,17969:12534331,20396494:-4930520 +) +(1,17969:12534331,20396494:4930520,452978,122846 +k1,17969:12534331,20396494:3277 +h1,17969:17461574,20396494:0,411205,112570 +) +k1,17969:17651665,20396494:186814 +k1,17969:19406101,20396494:186815 +k1,17969:22173068,20396494:186815 +k1,17969:24349555,20396494:186815 +k1,17969:25067867,20396494:186815 +k1,17969:26767908,20396494:186815 +k1,17969:28823153,20396494:186814 +k1,17969:29661396,20396494:186815 +k1,17969:31563944,20396494:186815 +k1,17969:32583029,20396494:0 +) +(1,17970:6764466,21261574:25818563,505283,134348 +k1,17969:11204137,21261574:185729 +k1,17969:13432623,21261574:185729 +k1,17969:14379880,21261574:185729 +k1,17969:17141829,21261574:185729 +k1,17969:18098261,21261574:185729 +k1,17969:20132105,21261574:185729 +k1,17969:23803694,21261574:185729 +k1,17969:26424741,21261574:185729 +k1,17969:27801915,21261574:185729 +k1,17969:31023272,21261574:185729 +k1,17970:32583029,21261574:0 +) +(1,17970:6764466,22126654:25818563,513147,126483 +k1,17969:8585836,22126654:223602 +k1,17969:9757088,22126654:223601 +k1,17969:11432312,22126654:223602 +k1,17969:15571035,22126654:223602 +k1,17969:16748186,22126654:223602 +k1,17969:18502053,22126654:223601 +k1,17969:19377083,22126654:223602 +k1,17969:20693170,22126654:223602 +k1,17969:21935856,22126654:223601 +(1,17969:21935856,22126654:0,452978,115847 +r1,18006:23700969,22126654:1765113,568825,115847 +k1,17969:21935856,22126654:-1765113 +) +(1,17969:21935856,22126654:1765113,452978,115847 +k1,17969:21935856,22126654:3277 +h1,17969:23697692,22126654:0,411205,112570 +) +k1,17969:23924571,22126654:223602 +k1,17969:25978594,22126654:223602 +k1,17969:26861488,22126654:223602 +k1,17969:28104174,22126654:223601 +k1,17969:30942007,22126654:223602 +k1,17970:32583029,22126654:0 +) +(1,17970:6764466,22991734:25818563,513147,7863 +g1,17969:8561463,22991734 +g1,17969:9708343,22991734 +g1,17969:12085989,22991734 +g1,17969:12936646,22991734 +g1,17969:13883641,22991734 +k1,17970:32583029,22991734:16524903 +g1,17970:32583029,22991734 +) +v1,17972:6764466,23676589:0,393216,0 +(1,17979:6764466,26045413:25818563,2762040,196608 +g1,17979:6764466,26045413 +g1,17979:6764466,26045413 +g1,17979:6567858,26045413 +(1,17979:6567858,26045413:0,2762040,196608 +r1,18006:32779637,26045413:26211779,2958648,196608 +k1,17979:6567857,26045413:-26211780 +) +(1,17979:6567858,26045413:26211779,2762040,196608 +[1,17979:6764466,26045413:25818563,2565432,0 +(1,17974:6764466,23911026:25818563,431045,112852 +(1,17973:6764466,23911026:0,0,0 +g1,17973:6764466,23911026 +g1,17973:6764466,23911026 +g1,17973:6436786,23911026 +(1,17973:6436786,23911026:0,0,0 +) +g1,17973:6764466,23911026 +) +k1,17974:6764466,23911026:0 +g1,17974:10747914,23911026 +g1,17974:11411822,23911026 +g1,17974:14067454,23911026 +g1,17974:16059178,23911026 +g1,17974:16723086,23911026 +g1,17974:21038488,23911026 +g1,17974:21702396,23911026 +g1,17974:22366304,23911026 +g1,17974:24358028,23911026 +h1,17974:24689982,23911026:0,0,0 +k1,17974:32583029,23911026:7893047 +g1,17974:32583029,23911026 +) +(1,17975:6764466,24595881:25818563,424439,112852 +h1,17975:6764466,24595881:0,0,0 +g1,17975:7096420,24595881 +g1,17975:7428374,24595881 +g1,17975:13403545,24595881 +g1,17975:14067453,24595881 +g1,17975:16723085,24595881 +h1,17975:17055039,24595881:0,0,0 +k1,17975:32583029,24595881:15527990 +g1,17975:32583029,24595881 +) +(1,17976:6764466,25280736:25818563,424439,112852 +h1,17976:6764466,25280736:0,0,0 +g1,17976:7096420,25280736 +g1,17976:7428374,25280736 +g1,17976:14731360,25280736 +g1,17976:15395268,25280736 +g1,17976:24358025,25280736 +g1,17976:25021933,25280736 +g1,17976:27013657,25280736 +g1,17976:29005381,25280736 +g1,17976:29669289,25280736 +k1,17976:29669289,25280736:0 +h1,17976:31329059,25280736:0,0,0 +k1,17976:32583029,25280736:1253970 +g1,17976:32583029,25280736 +) +(1,17977:6764466,25965591:25818563,424439,79822 +h1,17977:6764466,25965591:0,0,0 +g1,17977:7096420,25965591 +g1,17977:7428374,25965591 +g1,17977:7760328,25965591 +g1,17977:8092282,25965591 +g1,17977:8424236,25965591 +g1,17977:8756190,25965591 +g1,17977:9088144,25965591 +g1,17977:9420098,25965591 +g1,17977:9752052,25965591 +g1,17977:10084006,25965591 +g1,17977:10415960,25965591 +g1,17977:10747914,25965591 +g1,17977:11079868,25965591 +g1,17977:11411822,25965591 +g1,17977:11743776,25965591 +g1,17977:14067454,25965591 +g1,17977:14731362,25965591 +h1,17977:16723086,25965591:0,0,0 +k1,17977:32583029,25965591:15859943 +g1,17977:32583029,25965591 +) +] +) +g1,17979:32583029,26045413 +g1,17979:6764466,26045413 +g1,17979:6764466,26045413 +g1,17979:32583029,26045413 +g1,17979:32583029,26045413 +) +h1,17979:6764466,26242021:0,0,0 +(1,17982:6764466,35344392:25818563,9036835,0 +k1,17982:10637290,35344392:3872824 +h1,17981:10637290,35344392:0,0,0 +(1,17981:10637290,35344392:18072915,9036835,0 +(1,17981:10637290,35344392:18073715,9036857,0 +(1,17981:10637290,35344392:18073715,9036857,0 +(1,17981:10637290,35344392:0,9036857,0 +(1,17981:10637290,35344392:0,14208860,0 +(1,17981:10637290,35344392:28417720,14208860,0 +) +k1,17981:10637290,35344392:-28417720 +) +) +g1,17981:28711005,35344392 +) +) +) +g1,17982:28710205,35344392 +k1,17982:32583029,35344392:3872824 +) +(1,17989:6764466,36209472:25818563,513147,134348 +h1,17988:6764466,36209472:983040,0,0 +k1,17988:9196809,36209472:252616 +k1,17988:11906370,36209472:252616 +k1,17988:12818278,36209472:252616 +k1,17988:15685781,36209472:252616 +k1,17988:16469894,36209472:252616 +k1,17988:17657053,36209472:252616 +k1,17988:18671198,36209472:252617 +k1,17988:19279674,36209472:252616 +k1,17988:22193052,36209472:252616 +k1,17988:25643170,36209472:252616 +k1,17988:26511824,36209472:252616 +k1,17988:28153803,36209472:252616 +k1,17988:30024503,36209472:252616 +k1,17988:32583029,36209472:0 +) +(1,17989:6764466,37074552:25818563,505283,126483 +k1,17988:10580576,37074552:205076 +(1,17988:10580576,37074552:0,414482,115847 +r1,18006:10938842,37074552:358266,530329,115847 +k1,17988:10580576,37074552:-358266 +) +(1,17988:10580576,37074552:358266,414482,115847 +k1,17988:10580576,37074552:3277 +h1,17988:10935565,37074552:0,411205,112570 +) +k1,17988:11143918,37074552:205076 +k1,17988:12540438,37074552:205075 +(1,17988:12540438,37074552:0,414482,115847 +r1,18006:12898704,37074552:358266,530329,115847 +k1,17988:12540438,37074552:-358266 +) +(1,17988:12540438,37074552:358266,414482,115847 +k1,17988:12540438,37074552:3277 +h1,17988:12895427,37074552:0,411205,112570 +) +k1,17988:13277450,37074552:205076 +k1,17988:16008284,37074552:205076 +k1,17988:17688575,37074552:205076 +k1,17988:19676229,37074552:205075 +(1,17988:19676229,37074552:0,452978,115847 +r1,18006:22144766,37074552:2468537,568825,115847 +k1,17988:19676229,37074552:-2468537 +) +(1,17988:19676229,37074552:2468537,452978,115847 +k1,17988:19676229,37074552:3277 +h1,17988:22141489,37074552:0,411205,112570 +) +k1,17988:22349842,37074552:205076 +k1,17988:23746363,37074552:205076 +k1,17988:25403061,37074552:205076 +k1,17988:27070244,37074552:205075 +k1,17988:27806817,37074552:205076 +k1,17988:31821501,37074552:205076 +k1,17988:32583029,37074552:0 +) +(1,17989:6764466,37939632:25818563,513147,134348 +g1,17988:7734398,37939632 +g1,17988:10337488,37939632 +g1,17988:11953605,37939632 +g1,17988:14813596,37939632 +g1,17988:17648028,37939632 +g1,17988:19639667,37939632 +g1,17988:20498188,37939632 +g1,17988:21053277,37939632 +g1,17988:23146496,37939632 +g1,17988:23877222,37939632 +k1,17989:32583029,37939632:7926584 +g1,17989:32583029,37939632 +) +v1,17991:6764466,38624487:0,393216,0 +(1,17998:6764466,40993311:25818563,2762040,196608 +g1,17998:6764466,40993311 +g1,17998:6764466,40993311 +g1,17998:6567858,40993311 +(1,17998:6567858,40993311:0,2762040,196608 +r1,18006:32779637,40993311:26211779,2958648,196608 +k1,17998:6567857,40993311:-26211780 +) +(1,17998:6567858,40993311:26211779,2762040,196608 +[1,17998:6764466,40993311:25818563,2565432,0 +(1,17993:6764466,38858924:25818563,431045,112852 +(1,17992:6764466,38858924:0,0,0 +g1,17992:6764466,38858924 +g1,17992:6764466,38858924 +g1,17992:6436786,38858924 +(1,17992:6436786,38858924:0,0,0 +) +g1,17992:6764466,38858924 +) +k1,17993:6764466,38858924:0 +g1,17993:10747914,38858924 +g1,17993:11411822,38858924 +g1,17993:14067454,38858924 +g1,17993:16059178,38858924 +g1,17993:16723086,38858924 +g1,17993:21038488,38858924 +g1,17993:21702396,38858924 +g1,17993:22366304,38858924 +g1,17993:24358028,38858924 +h1,17993:24689982,38858924:0,0,0 +k1,17993:32583029,38858924:7893047 +g1,17993:32583029,38858924 +) +(1,17994:6764466,39543779:25818563,424439,112852 +h1,17994:6764466,39543779:0,0,0 +g1,17994:7096420,39543779 +g1,17994:7428374,39543779 +g1,17994:13403545,39543779 +g1,17994:14067453,39543779 +g1,17994:16723085,39543779 +h1,17994:17055039,39543779:0,0,0 +k1,17994:32583029,39543779:15527990 +g1,17994:32583029,39543779 +) +(1,17995:6764466,40228634:25818563,424439,112852 +h1,17995:6764466,40228634:0,0,0 +g1,17995:7096420,40228634 +g1,17995:7428374,40228634 +g1,17995:14731360,40228634 +g1,17995:15395268,40228634 +g1,17995:22698254,40228634 +g1,17995:23362162,40228634 +g1,17995:25021932,40228634 +g1,17995:25685840,40228634 +g1,17995:26349748,40228634 +k1,17995:26349748,40228634:0 +h1,17995:27345610,40228634:0,0,0 +k1,17995:32583029,40228634:5237419 +g1,17995:32583029,40228634 +) +(1,17996:6764466,40913489:25818563,424439,79822 +h1,17996:6764466,40913489:0,0,0 +g1,17996:7096420,40913489 +g1,17996:7428374,40913489 +g1,17996:7760328,40913489 +g1,17996:8092282,40913489 +g1,17996:8424236,40913489 +g1,17996:8756190,40913489 +g1,17996:9088144,40913489 +g1,17996:9420098,40913489 +g1,17996:9752052,40913489 +g1,17996:10084006,40913489 +g1,17996:10415960,40913489 +g1,17996:10747914,40913489 +g1,17996:11079868,40913489 +g1,17996:11411822,40913489 +g1,17996:11743776,40913489 +g1,17996:14067454,40913489 +g1,17996:14731362,40913489 +h1,17996:16723086,40913489:0,0,0 +k1,17996:32583029,40913489:15859943 +g1,17996:32583029,40913489 +) +] +) +g1,17998:32583029,40993311 +g1,17998:6764466,40993311 +g1,17998:6764466,40993311 +g1,17998:32583029,40993311 +g1,17998:32583029,40993311 +) +h1,17998:6764466,41189919:0,0,0 +] +g1,18006:32583029,41189919 +) +] +(1,18006:32583029,45706769:0,0,0 +g1,18006:32583029,45706769 +) +) +] +(1,18006:6630773,47279633:25952256,0,0 +h1,18006:6630773,47279633:25952256,0,0 +) +] +(1,18006:4262630,4025873:0,0,0 +[1,18006:-473656,4025873:0,0,0 +(1,18006:-473656,-710413:0,0,0 +(1,18006:-473656,-710413:0,0,0 +g1,18006:-473656,-710413 +) +g1,18006:-473656,-710413 +) +] +) +] +!17182 +}296 +Input:2688:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2689:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!200 +{297 +[1,18062:4262630,47279633:28320399,43253760,0 +(1,18062:4262630,4025873:0,0,0 +[1,18062:-473656,4025873:0,0,0 +(1,18062:-473656,-710413:0,0,0 +(1,18062:-473656,-644877:0,0,0 +k1,18062:-473656,-644877:-65536 ) -[1,17950:6630773,45706769:25952256,40108032,0 -v1,17900:6630773,6254097:0,393216,0 -(1,17906:6630773,7901549:25952256,2040668,196608 -g1,17906:6630773,7901549 -g1,17906:6630773,7901549 -g1,17906:6434165,7901549 -(1,17906:6434165,7901549:0,2040668,196608 -r1,17950:32779637,7901549:26345472,2237276,196608 -k1,17906:6434165,7901549:-26345472 +(1,18062:-473656,4736287:0,0,0 +k1,18062:-473656,4736287:5209943 ) -(1,17906:6434165,7901549:26345472,2040668,196608 -[1,17906:6630773,7901549:25952256,1844060,0 -(1,17902:6630773,6461715:25952256,404226,107478 -(1,17901:6630773,6461715:0,0,0 -g1,17901:6630773,6461715 -g1,17901:6630773,6461715 -g1,17901:6303093,6461715 -(1,17901:6303093,6461715:0,0,0 -) -g1,17901:6630773,6461715 -) -k1,17902:6630773,6461715:0 -g1,17902:10424522,6461715 -g1,17902:11056814,6461715 -k1,17902:11056814,6461715:0 -h1,17902:13269834,6461715:0,0,0 -k1,17902:32583030,6461715:19313196 -g1,17902:32583030,6461715 -) -(1,17903:6630773,7127893:25952256,410518,107478 -h1,17903:6630773,7127893:0,0,0 -g1,17903:6946919,7127893 -g1,17903:7263065,7127893 -g1,17903:7579211,7127893 -g1,17903:7895357,7127893 -g1,17903:8211503,7127893 -g1,17903:8527649,7127893 -g1,17903:8843795,7127893 -g1,17903:10740670,7127893 -g1,17903:11372962,7127893 -g1,17903:12953691,7127893 -g1,17903:13585983,7127893 -g1,17903:14218275,7127893 -g1,17903:18960461,7127893 -g1,17903:21805772,7127893 -g1,17903:22438064,7127893 -g1,17903:24651084,7127893 -h1,17903:24967230,7127893:0,0,0 -k1,17903:32583029,7127893:7615799 -g1,17903:32583029,7127893 -) -(1,17904:6630773,7794071:25952256,404226,107478 -h1,17904:6630773,7794071:0,0,0 -g1,17904:6946919,7794071 -g1,17904:7263065,7794071 -k1,17904:7263065,7794071:0 -h1,17904:10740667,7794071:0,0,0 -k1,17904:32583029,7794071:21842362 -g1,17904:32583029,7794071 -) -] -) -g1,17906:32583029,7901549 -g1,17906:6630773,7901549 -g1,17906:6630773,7901549 -g1,17906:32583029,7901549 -g1,17906:32583029,7901549 -) -h1,17906:6630773,8098157:0,0,0 -(1,17909:6630773,17771647:25952256,9083666,0 -k1,17909:10523651,17771647:3892878 -h1,17908:10523651,17771647:0,0,0 -(1,17908:10523651,17771647:18166500,9083666,0 -(1,17908:10523651,17771647:18167376,9083688,0 -(1,17908:10523651,17771647:18167376,9083688,0 -(1,17908:10523651,17771647:0,9083688,0 -(1,17908:10523651,17771647:0,14208860,0 -(1,17908:10523651,17771647:28417720,14208860,0 -) -k1,17908:10523651,17771647:-28417720 -) -) -g1,17908:28691027,17771647 -) -) -) -g1,17909:28690151,17771647 -k1,17909:32583029,17771647:3892878 -) -(1,17918:6630773,18613135:25952256,513147,134348 -h1,17917:6630773,18613135:983040,0,0 -k1,17917:10173376,18613135:220583 -k1,17917:11053252,18613135:220584 -k1,17917:13850055,18613135:220583 -k1,17917:14426498,18613135:220583 -k1,17917:15815588,18613135:220583 -k1,17917:18263741,18613135:220584 -k1,17917:19503409,18613135:220583 -k1,17917:23049944,18613135:220583 -k1,17917:27515949,18613135:220583 -k1,17917:28604885,18613135:220584 -k1,17917:30162402,18613135:220583 -k1,17917:31931601,18613135:220583 -k1,17917:32583029,18613135:0 -) -(1,17918:6630773,19454623:25952256,513147,134348 -k1,17917:8384898,19454623:168154 -k1,17917:8908913,19454623:168155 -k1,17917:13292998,19454623:168154 -k1,17917:17321224,19454623:168155 -k1,17917:20180286,19454623:168154 -k1,17917:21296092,19454623:168155 -k1,17917:22915868,19454623:168154 -k1,17917:26825473,19454623:168155 -k1,17917:27676512,19454623:168154 -k1,17917:29048563,19454623:168155 -k1,17917:29832755,19454623:168154 -k1,17917:31019995,19454623:168155 -k1,17917:32583029,19454623:0 -) -(1,17918:6630773,20296111:25952256,505283,126483 -k1,17917:7478010,20296111:219402 -k1,17917:8900652,20296111:219401 -k1,17917:10660805,20296111:219402 -k1,17917:11748559,20296111:219402 -k1,17917:13060445,20296111:219401 -(1,17917:13060445,20296111:0,452978,122846 -r1,17950:17990965,20296111:4930520,575824,122846 -k1,17917:13060445,20296111:-4930520 -) -(1,17917:13060445,20296111:4930520,452978,122846 -k1,17917:13060445,20296111:3277 -h1,17917:17987688,20296111:0,411205,112570 -) -k1,17917:18210367,20296111:219402 -k1,17917:20315240,20296111:219402 -k1,17917:22912943,20296111:219401 -(1,17917:22912943,20296111:0,414482,115847 -r1,17950:23271209,20296111:358266,530329,115847 -k1,17917:22912943,20296111:-358266 -) -(1,17917:22912943,20296111:358266,414482,115847 -k1,17917:22912943,20296111:3277 -h1,17917:23267932,20296111:0,411205,112570 -) -k1,17917:23664281,20296111:219402 -(1,17917:23664281,20296111:0,452978,115847 -r1,17950:25077682,20296111:1413401,568825,115847 -k1,17917:23664281,20296111:-1413401 -) -(1,17917:23664281,20296111:1413401,452978,115847 -k1,17917:23664281,20296111:3277 -h1,17917:25074405,20296111:0,411205,112570 -) -k1,17917:25470753,20296111:219401 -(1,17917:25470753,20296111:0,414482,115847 -r1,17950:25829019,20296111:358266,530329,115847 -k1,17917:25470753,20296111:-358266 -) -(1,17917:25470753,20296111:358266,414482,115847 -k1,17917:25470753,20296111:3277 -h1,17917:25825742,20296111:0,411205,112570 -) -k1,17917:26048421,20296111:219402 -k1,17917:27459268,20296111:219402 -(1,17917:27459268,20296111:0,452978,115847 -r1,17950:28872669,20296111:1413401,568825,115847 -k1,17917:27459268,20296111:-1413401 -) -(1,17917:27459268,20296111:1413401,452978,115847 -k1,17917:27459268,20296111:3277 -h1,17917:28869392,20296111:0,411205,112570 -) -k1,17917:29092070,20296111:219401 -k1,17917:29997634,20296111:219402 -k1,17917:32583029,20296111:0 -) -(1,17918:6630773,21137599:25952256,505283,126483 -k1,17917:10130327,21137599:151320 -(1,17917:10130327,21137599:0,452978,122846 -r1,17950:14357423,21137599:4227096,575824,122846 -k1,17917:10130327,21137599:-4227096 -) -(1,17917:10130327,21137599:4227096,452978,122846 -k1,17917:10130327,21137599:3277 -h1,17917:14354146,21137599:0,411205,112570 -) -k1,17917:14508743,21137599:151320 -k1,17917:16576336,21137599:151320 -k1,17917:18889689,21137599:151320 -k1,17917:20713488,21137599:151320 -k1,17917:22056253,21137599:151320 -k1,17917:23226658,21137599:151320 -k1,17917:26608903,21137599:151320 -k1,17917:29048085,21137599:151320 -k1,17917:31391584,21137599:151320 -k1,17917:32583029,21137599:0 -) -(1,17918:6630773,21979087:25952256,505283,134348 -k1,17917:8852968,21979087:194511 -k1,17917:10151760,21979087:194510 -k1,17917:11094037,21979087:194511 -k1,17917:14549618,21979087:194510 -k1,17917:17302655,21979087:194511 -k1,17917:20724159,21979087:194511 -k1,17917:24133865,21979087:194510 -k1,17917:26202706,21979087:194511 -k1,17917:27569655,21979087:194510 -k1,17917:31204151,21979087:194511 -k1,17918:32583029,21979087:0 -) -(1,17918:6630773,22820575:25952256,513147,134348 -k1,17917:8211450,22820575:220150 -k1,17917:10279716,22820575:220151 -k1,17917:12368953,22820575:220150 -k1,17917:13201866,22820575:220151 -k1,17917:14930655,22820575:220150 -k1,17917:16837703,22820575:220151 -k1,17917:18874511,22820575:220150 -k1,17917:22534647,22820575:220151 -k1,17917:24732018,22820575:220150 -k1,17917:25899820,22820575:220151 -k1,17917:28696190,22820575:220150 -k1,17917:30415149,22820575:220151 -k1,17917:31318184,22820575:220150 -k1,17918:32583029,22820575:0 -) -(1,17918:6630773,23662063:25952256,513147,134348 -k1,17917:8794186,23662063:194056 -k1,17917:9979801,23662063:194055 -(1,17917:9979801,23662063:0,452978,122846 -r1,17950:13855185,23662063:3875384,575824,122846 -k1,17917:9979801,23662063:-3875384 -) -(1,17917:9979801,23662063:3875384,452978,122846 -k1,17917:9979801,23662063:3277 -h1,17917:13851908,23662063:0,411205,112570 -) -k1,17917:14222911,23662063:194056 -k1,17917:16302438,23662063:194056 -k1,17917:17027990,23662063:194055 -k1,17917:19424056,23662063:194056 -k1,17917:20269540,23662063:194056 -(1,17917:20269540,23662063:0,452978,122846 -r1,17950:24144924,23662063:3875384,575824,122846 -k1,17917:20269540,23662063:-3875384 -) -(1,17917:20269540,23662063:3875384,452978,122846 -k1,17917:20269540,23662063:3277 -h1,17917:24141647,23662063:0,411205,112570 -) -k1,17917:24512649,23662063:194055 -k1,17917:25778874,23662063:194056 -k1,17917:28300113,23662063:194056 -k1,17917:29153460,23662063:194055 -k1,17917:31575085,23662063:194056 -k1,17918:32583029,23662063:0 -) -(1,17918:6630773,24503551:25952256,505283,134348 -k1,17917:10151182,24503551:243609 -k1,17917:13511683,24503551:243609 -k1,17917:14406720,24503551:243609 -k1,17917:15669413,24503551:243608 -k1,17917:17923667,24503551:243609 -k1,17917:20752671,24503551:243609 -k1,17917:21647708,24503551:243609 -(1,17917:21647708,24503551:0,414482,115847 -r1,17950:22005974,24503551:358266,530329,115847 -k1,17917:21647708,24503551:-358266 -) -(1,17917:21647708,24503551:358266,414482,115847 -k1,17917:21647708,24503551:3277 -h1,17917:22002697,24503551:0,411205,112570 -) -k1,17917:22423253,24503551:243609 -k1,17917:23124959,24503551:243609 -k1,17917:24936188,24503551:243608 -k1,17917:26818852,24503551:243609 -k1,17917:30179353,24503551:243609 -k1,17917:31074390,24503551:243609 -k1,17917:32583029,24503551:0 -) -(1,17918:6630773,25345039:25952256,505283,134348 -k1,17917:9968099,25345039:181112 -k1,17917:10765249,25345039:181112 -(1,17917:10765249,25345039:0,452978,115847 -r1,17950:12178650,25345039:1413401,568825,115847 -k1,17917:10765249,25345039:-1413401 -) -(1,17917:10765249,25345039:1413401,452978,115847 -k1,17917:10765249,25345039:3277 -h1,17917:12175373,25345039:0,411205,112570 -) -k1,17917:12533433,25345039:181113 -k1,17917:13905990,25345039:181112 -(1,17917:13905990,25345039:0,452978,122846 -r1,17950:18133086,25345039:4227096,575824,122846 -k1,17917:13905990,25345039:-4227096 -) -(1,17917:13905990,25345039:4227096,452978,122846 -k1,17917:13905990,25345039:3277 -h1,17917:18129809,25345039:0,411205,112570 -) -k1,17917:18487868,25345039:181112 -k1,17917:20554451,25345039:181112 -k1,17917:21267060,25345039:181112 -k1,17917:23650182,25345039:181112 -k1,17917:24482723,25345039:181113 -(1,17917:24482723,25345039:0,452978,122846 -r1,17950:29413243,25345039:4930520,575824,122846 -k1,17917:24482723,25345039:-4930520 -) -(1,17917:24482723,25345039:4930520,452978,122846 -k1,17917:24482723,25345039:3277 -h1,17917:29409966,25345039:0,411205,112570 -) -k1,17917:29594355,25345039:181112 -k1,17917:30847636,25345039:181112 -k1,17917:32583029,25345039:0 -) -(1,17918:6630773,26186527:25952256,513147,134348 -k1,17917:7260119,26186527:273486 -k1,17917:9198219,26186527:273486 -k1,17917:14793228,26186527:273486 -k1,17917:16921383,26186527:273486 -k1,17917:18004239,26186527:273486 -(1,17917:18004239,26186527:0,414482,115847 -r1,17950:18362505,26186527:358266,530329,115847 -k1,17917:18004239,26186527:-358266 -) -(1,17917:18004239,26186527:358266,414482,115847 -k1,17917:18004239,26186527:3277 -h1,17917:18359228,26186527:0,411205,112570 -) -k1,17917:18809661,26186527:273486 -(1,17917:18809661,26186527:0,414482,115847 -r1,17950:19167927,26186527:358266,530329,115847 -k1,17917:18809661,26186527:-358266 -) -(1,17917:18809661,26186527:358266,414482,115847 -k1,17917:18809661,26186527:3277 -h1,17917:19164650,26186527:0,411205,112570 -) -k1,17917:19441412,26186527:273485 -k1,17917:20662549,26186527:273486 -k1,17917:22984035,26186527:273486 -k1,17917:24448966,26186527:273486 -(1,17917:24448966,26186527:0,452978,122846 -r1,17950:26214079,26186527:1765113,575824,122846 -k1,17917:24448966,26186527:-1765113 -) -(1,17917:24448966,26186527:1765113,452978,122846 -k1,17917:24448966,26186527:3277 -h1,17917:26210802,26186527:0,411205,112570 -) -k1,17917:26487565,26186527:273486 -k1,17917:27952496,26186527:273486 -(1,17917:27952496,26186527:0,452978,115847 -r1,17950:30069321,26186527:2116825,568825,115847 -k1,17917:27952496,26186527:-2116825 -) -(1,17917:27952496,26186527:2116825,452978,115847 -k1,17917:27952496,26186527:3277 -h1,17917:30066044,26186527:0,411205,112570 -) -k1,17917:30342807,26186527:273486 -k1,17917:31563944,26186527:273486 -k1,17917:32583029,26186527:0 -) -(1,17918:6630773,27028015:25952256,505283,134348 -k1,17917:9740196,27028015:244844 -k1,17917:12261106,27028015:244845 -(1,17917:12261106,27028015:0,452978,122846 -r1,17950:16136490,27028015:3875384,575824,122846 -k1,17917:12261106,27028015:-3875384 -) -(1,17917:12261106,27028015:3875384,452978,122846 -k1,17917:12261106,27028015:3277 -h1,17917:16133213,27028015:0,411205,112570 -) -k1,17917:16381334,27028015:244844 -k1,17917:18233776,27028015:244844 -k1,17917:19854221,27028015:244844 -k1,17917:22444600,27028015:244845 -k1,17917:23880889,27028015:244844 -k1,17917:27441855,27028015:244844 -k1,17917:29185507,27028015:244844 -k1,17917:30081780,27028015:244845 -k1,17917:31563944,27028015:244844 -k1,17917:32583029,27028015:0 -) -(1,17918:6630773,27869503:25952256,505283,134348 -g1,17917:11075424,27869503 -g1,17917:13846941,27869503 -g1,17917:14402030,27869503 -g1,17917:17145367,27869503 -k1,17918:32583029,27869503:14095485 -g1,17918:32583029,27869503 -) -v1,17920:6630773,29059969:0,393216,0 -(1,17926:6630773,30707421:25952256,2040668,196608 -g1,17926:6630773,30707421 -g1,17926:6630773,30707421 -g1,17926:6434165,30707421 -(1,17926:6434165,30707421:0,2040668,196608 -r1,17950:32779637,30707421:26345472,2237276,196608 -k1,17926:6434165,30707421:-26345472 -) -(1,17926:6434165,30707421:26345472,2040668,196608 -[1,17926:6630773,30707421:25952256,1844060,0 -(1,17922:6630773,29267587:25952256,404226,107478 -(1,17921:6630773,29267587:0,0,0 -g1,17921:6630773,29267587 -g1,17921:6630773,29267587 -g1,17921:6303093,29267587 -(1,17921:6303093,29267587:0,0,0 -) -g1,17921:6630773,29267587 -) -k1,17922:6630773,29267587:0 -g1,17922:10424522,29267587 -g1,17922:11056814,29267587 -k1,17922:11056814,29267587:0 -h1,17922:13269834,29267587:0,0,0 -k1,17922:32583030,29267587:19313196 -g1,17922:32583030,29267587 -) -(1,17923:6630773,29933765:25952256,410518,107478 -h1,17923:6630773,29933765:0,0,0 -g1,17923:6946919,29933765 -g1,17923:7263065,29933765 -g1,17923:7579211,29933765 -g1,17923:7895357,29933765 -g1,17923:8211503,29933765 -g1,17923:8527649,29933765 -g1,17923:8843795,29933765 -g1,17923:10740670,29933765 -g1,17923:11372962,29933765 -g1,17923:12953691,29933765 -g1,17923:13585983,29933765 -g1,17923:14218275,29933765 -g1,17923:18960461,29933765 -g1,17923:21805772,29933765 -g1,17923:22438064,29933765 -g1,17923:24651084,29933765 -h1,17923:24967230,29933765:0,0,0 -k1,17923:32583029,29933765:7615799 -g1,17923:32583029,29933765 -) -(1,17924:6630773,30599943:25952256,404226,107478 -h1,17924:6630773,30599943:0,0,0 -g1,17924:6946919,30599943 -g1,17924:7263065,30599943 -k1,17924:7263065,30599943:0 -h1,17924:10740667,30599943:0,0,0 -k1,17924:32583029,30599943:21842362 -g1,17924:32583029,30599943 -) -] -) -g1,17926:32583029,30707421 -g1,17926:6630773,30707421 -g1,17926:6630773,30707421 -g1,17926:32583029,30707421 -g1,17926:32583029,30707421 -) -h1,17926:6630773,30904029:0,0,0 -(1,17929:6630773,40577519:25952256,9083666,0 -k1,17929:10523651,40577519:3892878 -h1,17928:10523651,40577519:0,0,0 -(1,17928:10523651,40577519:18166500,9083666,0 -(1,17928:10523651,40577519:18167376,9083688,0 -(1,17928:10523651,40577519:18167376,9083688,0 -(1,17928:10523651,40577519:0,9083688,0 -(1,17928:10523651,40577519:0,14208860,0 -(1,17928:10523651,40577519:28417720,14208860,0 -) -k1,17928:10523651,40577519:-28417720 -) -) -g1,17928:28691027,40577519 -) -) -) -g1,17929:28690151,40577519 -k1,17929:32583029,40577519:3892878 -) -v1,17937:6630773,41943295:0,393216,0 -(1,17946:6630773,45443780:25952256,3893701,0 -g1,17946:6630773,45443780 -g1,17946:6303093,45443780 -r1,17950:6401397,45443780:98304,3893701,0 -g1,17946:6600626,45443780 -g1,17946:6797234,45443780 -[1,17946:6797234,45443780:25785795,3893701,0 -(1,17938:6797234,42375833:25785795,825754,196608 -(1,17937:6797234,42375833:0,825754,196608 -r1,17950:7890375,42375833:1093141,1022362,196608 -k1,17937:6797234,42375833:-1093141 -) -(1,17937:6797234,42375833:1093141,825754,196608 -) -k1,17937:8315417,42375833:425042 -k1,17937:9633346,42375833:327680 -k1,17937:11850143,42375833:425043 -k1,17937:13294270,42375833:425042 -k1,17937:16694648,42375833:425043 -k1,17937:18132221,42375833:425042 -k1,17937:20120297,42375833:425042 -k1,17937:22261073,42375833:425043 -k1,17937:24340899,42375833:425042 -k1,17937:26373540,42375833:425043 -k1,17937:28533975,42375833:425042 -(1,17937:28533975,42375833:0,452978,122846 -r1,17950:32409359,42375833:3875384,575824,122846 -k1,17937:28533975,42375833:-3875384 -) -(1,17937:28533975,42375833:3875384,452978,122846 -k1,17937:28533975,42375833:3277 -h1,17937:32406082,42375833:0,411205,112570 -) -k1,17938:32583029,42375833:0 -) -(1,17938:6797234,43217321:25785795,505283,126483 -(1,17937:6797234,43217321:0,452978,122846 -r1,17950:10672618,43217321:3875384,575824,122846 -k1,17937:6797234,43217321:-3875384 -) -(1,17937:6797234,43217321:3875384,452978,122846 -k1,17937:6797234,43217321:3277 -h1,17937:10669341,43217321:0,411205,112570 -) -g1,17937:11045517,43217321 -g1,17937:12436191,43217321 -(1,17937:12436191,43217321:0,414482,122846 -r1,17950:15608151,43217321:3171960,537328,122846 -k1,17937:12436191,43217321:-3171960 -) -(1,17937:12436191,43217321:3171960,414482,122846 -k1,17937:12436191,43217321:3277 -h1,17937:15604874,43217321:0,411205,112570 -) -g1,17937:15807380,43217321 -g1,17937:16658037,43217321 -g1,17937:18054609,43217321 -g1,17937:18609698,43217321 -k1,17938:32583029,43217321:12241870 -g1,17938:32583029,43217321 +g1,18062:-473656,-710413 ) -v1,17940:6797234,44407787:0,393216,0 -(1,17944:6797234,44722884:25785795,708313,196608 -g1,17944:6797234,44722884 -g1,17944:6797234,44722884 -g1,17944:6600626,44722884 -(1,17944:6600626,44722884:0,708313,196608 -r1,17950:32779637,44722884:26179011,904921,196608 -k1,17944:6600625,44722884:-26179012 +] ) -(1,17944:6600626,44722884:26179011,708313,196608 -[1,17944:6797234,44722884:25785795,511705,0 -(1,17942:6797234,44621697:25785795,410518,101187 -(1,17941:6797234,44621697:0,0,0 -g1,17941:6797234,44621697 -g1,17941:6797234,44621697 -g1,17941:6469554,44621697 -(1,17941:6469554,44621697:0,0,0 +[1,18062:6630773,47279633:25952256,43253760,0 +[1,18062:6630773,4812305:25952256,786432,0 +(1,18062:6630773,4812305:25952256,513147,126483 +(1,18062:6630773,4812305:25952256,513147,126483 +g1,18062:3078558,4812305 +[1,18062:3078558,4812305:0,0,0 +(1,18062:3078558,2439708:0,1703936,0 +k1,18062:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,18062:2537886,2439708:1179648,16384,0 ) -g1,17941:6797234,44621697 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,18062:3078558,1915420:16384,1179648,0 ) -g1,17942:9010254,44621697 -g1,17942:9958692,44621697 -g1,17942:14068587,44621697 -g1,17942:14700879,44621697 -g1,17942:18494631,44621697 -g1,17942:19126923,44621697 -g1,17942:19759215,44621697 -k1,17942:19759215,44621697:0 -h1,17942:23236820,44621697:0,0,0 -k1,17942:32583029,44621697:9346209 -g1,17942:32583029,44621697 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) -g1,17944:32583029,44722884 -g1,17944:6797234,44722884 -g1,17944:6797234,44722884 -g1,17944:32583029,44722884 -g1,17944:32583029,44722884 -) -h1,17944:6797234,44919492:0,0,0 -] -g1,17946:32583029,45443780 -) -h1,17946:6630773,45443780:0,0,0 +) +) ] -(1,17950:32583029,45706769:0,0,0 -g1,17950:32583029,45706769 +[1,18062:3078558,4812305:0,0,0 +(1,18062:3078558,2439708:0,1703936,0 +g1,18062:29030814,2439708 +g1,18062:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,18062:36151628,1915420:16384,1179648,0 ) +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] -(1,17950:6630773,47279633:25952256,0,0 -h1,17950:6630773,47279633:25952256,0,0 +) +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,18062:37855564,2439708:1179648,16384,0 +) +) +k1,18062:3078556,2439708:-34777008 ) ] -(1,17950:4262630,4025873:0,0,0 -[1,17950:-473656,4025873:0,0,0 -(1,17950:-473656,-710413:0,0,0 -(1,17950:-473656,-710413:0,0,0 -g1,17950:-473656,-710413 +[1,18062:3078558,4812305:0,0,0 +(1,18062:3078558,49800853:0,16384,2228224 +k1,18062:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,18062:2537886,49800853:1179648,16384,0 +) +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,18062:3078558,51504789:16384,1179648,0 ) -g1,17950:-473656,-710413 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) +) +) ] -!21228 -}314 +[1,18062:3078558,4812305:0,0,0 +(1,18062:3078558,49800853:0,16384,2228224 +g1,18062:29030814,49800853 +g1,18062:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,18062:36151628,51504789:16384,1179648,0 +) +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 +) +] +) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,18062:37855564,49800853:1179648,16384,0 +) +) +k1,18062:3078556,49800853:-34777008 +) +] +g1,18062:6630773,4812305 +k1,18062:21350816,4812305:13524666 +g1,18062:21999622,4812305 +g1,18062:25611966,4812305 +g1,18062:28956923,4812305 +g1,18062:29772190,4812305 +) +) +] +[1,18062:6630773,45706769:25952256,40108032,0 +(1,18062:6630773,45706769:25952256,40108032,0 +(1,18062:6630773,45706769:0,0,0 +g1,18062:6630773,45706769 +) +[1,18062:6630773,45706769:25952256,40108032,0 +v1,18006:6630773,6254097:0,393216,0 +(1,18006:6630773,14897716:25952256,9036835,0 +g1,18006:6630773,14897716 +g1,18006:6237557,14897716 +r1,18062:6368629,14897716:131072,9036835,0 +g1,18006:6567858,14897716 +g1,18006:6764466,14897716 +[1,18006:6764466,14897716:25818563,9036835,0 +(1,18001:6764466,14897716:25818563,9036835,0 +k1,18001:10637290,14897716:3872824 +h1,18000:10637290,14897716:0,0,0 +(1,18000:10637290,14897716:18072915,9036835,0 +(1,18000:10637290,14897716:18073715,9036857,0 +(1,18000:10637290,14897716:18073715,9036857,0 +(1,18000:10637290,14897716:0,9036857,0 +(1,18000:10637290,14897716:0,14208860,0 +(1,18000:10637290,14897716:28417720,14208860,0 +) +k1,18000:10637290,14897716:-28417720 +) +) +g1,18000:28711005,14897716 +) +) +) +g1,18001:28710205,14897716 +k1,18001:32583029,14897716:3872824 +) +] +g1,18006:32583029,14897716 +) +h1,18006:6630773,14897716:0,0,0 +(1,18010:6630773,15762796:25952256,505283,134348 +h1,18009:6630773,15762796:983040,0,0 +k1,18009:8814550,15762796:247188 +k1,18009:10166020,15762796:247188 +k1,18009:12342587,15762796:247187 +k1,18009:12945635,15762796:247188 +k1,18009:15961719,15762796:247188 +k1,18009:17486204,15762796:247188 +k1,18009:18494919,15762796:247187 +k1,18009:21549669,15762796:247188 +k1,18009:22815942,15762796:247188 +(1,18009:22815942,15762796:0,452978,115847 +r1,18062:24229343,15762796:1413401,568825,115847 +k1,18009:22815942,15762796:-1413401 +) +(1,18009:22815942,15762796:1413401,452978,115847 +k1,18009:22815942,15762796:3277 +h1,18009:24226066,15762796:0,411205,112570 +) +k1,18009:24476531,15762796:247188 +k1,18009:27510965,15762796:247188 +k1,18009:28409580,15762796:247187 +k1,18009:29012628,15762796:247188 +k1,18009:32583029,15762796:0 +) +(1,18010:6630773,16627876:25952256,513147,134348 +k1,18009:9500040,16627876:184257 +k1,18009:10312132,16627876:184257 +k1,18009:11699630,16627876:184257 +k1,18009:13424638,16627876:184257 +k1,18009:14765605,16627876:184257 +k1,18009:16050867,16627876:184257 +k1,18009:16886551,16627876:184256 +k1,18009:18751151,16627876:184257 +k1,18009:20484024,16627876:184257 +k1,18009:21199778,16627876:184257 +k1,18009:23814765,16627876:184257 +k1,18009:25649219,16627876:184257 +k1,18009:29620146,16627876:184257 +k1,18009:32583029,16627876:0 +) +(1,18010:6630773,17492956:25952256,513147,126483 +k1,18009:7793533,17492956:143675 +k1,18009:9948508,17492956:143675 +k1,18009:10751475,17492956:143675 +k1,18009:11914234,17492956:143674 +k1,18009:13926996,17492956:143675 +k1,18009:14602168,17492956:143675 +k1,18009:18050824,17492956:143675 +k1,18009:20953565,17492956:143675 +k1,18009:22280165,17492956:143675 +k1,18009:23075267,17492956:143674 +k1,18009:24549323,17492956:143675 +k1,18009:26913358,17492956:143675 +k1,18009:30482600,17492956:143675 +k1,18009:32583029,17492956:0 +) +(1,18010:6630773,18358036:25952256,513147,134348 +k1,18009:9659519,18358036:221184 +k1,18009:10236563,18358036:221184 +k1,18009:12969087,18358036:221184 +k1,18009:13841699,18358036:221184 +k1,18009:15081968,18358036:221184 +k1,18009:16650572,18358036:221184 +k1,18009:17531048,18358036:221184 +k1,18009:18771316,18358036:221183 +k1,18009:20861587,18358036:221184 +k1,18009:21614268,18358036:221184 +k1,18009:23485649,18358036:221184 +k1,18009:25684054,18358036:221184 +k1,18009:26666766,18358036:221184 +k1,18009:28625965,18358036:221184 +k1,18009:32583029,18358036:0 +) +(1,18010:6630773,19223116:25952256,505283,134348 +k1,18009:8705683,19223116:175677 +k1,18009:9532789,19223116:175678 +k1,18009:10064326,19223116:175677 +k1,18009:12052730,19223116:175678 +k1,18009:15209640,19223116:175677 +k1,18009:16427340,19223116:175678 +k1,18009:17806258,19223116:175677 +k1,18009:20643352,19223116:175677 +k1,18009:21687382,19223116:175678 +k1,18009:23060402,19223116:175677 +k1,18009:23591940,19223116:175678 +k1,18009:25050812,19223116:175677 +k1,18009:27737830,19223116:175678 +k1,18009:28564935,19223116:175677 +k1,18009:29759698,19223116:175678 +k1,18009:31386342,19223116:175677 +k1,18009:32583029,19223116:0 +) +(1,18010:6630773,20088196:25952256,513147,134348 +g1,18009:8945504,20088196 +g1,18009:9804025,20088196 +g1,18009:11022339,20088196 +g1,18009:12199365,20088196 +g1,18009:13014632,20088196 +g1,18009:14610433,20088196 +g1,18009:16001107,20088196 +g1,18009:17596908,20088196 +g1,18009:18254234,20088196 +g1,18009:19104891,20088196 +g1,18009:20323205,20088196 +g1,18009:21869854,20088196 +g1,18009:22728375,20088196 +g1,18009:23946689,20088196 +k1,18010:32583029,20088196:6444161 +g1,18010:32583029,20088196 +) +v1,18012:6630773,20773051:0,393216,0 +(1,18020:6630773,23853154:25952256,3473319,196608 +g1,18020:6630773,23853154 +g1,18020:6630773,23853154 +g1,18020:6434165,23853154 +(1,18020:6434165,23853154:0,3473319,196608 +r1,18062:32779637,23853154:26345472,3669927,196608 +k1,18020:6434165,23853154:-26345472 +) +(1,18020:6434165,23853154:26345472,3473319,196608 +[1,18020:6630773,23853154:25952256,3276711,0 +(1,18014:6630773,21000882:25952256,424439,112852 +(1,18013:6630773,21000882:0,0,0 +g1,18013:6630773,21000882 +g1,18013:6630773,21000882 +g1,18013:6303093,21000882 +(1,18013:6303093,21000882:0,0,0 +) +g1,18013:6630773,21000882 +) +k1,18014:6630773,21000882:0 +g1,18014:10614221,21000882 +g1,18014:11278129,21000882 +g1,18014:13933761,21000882 +g1,18014:15925485,21000882 +g1,18014:16589393,21000882 +g1,18014:18581117,21000882 +g1,18014:19245025,21000882 +g1,18014:19908933,21000882 +k1,18014:19908933,21000882:0 +h1,18014:21236749,21000882:0,0,0 +k1,18014:32583029,21000882:11346280 +g1,18014:32583029,21000882 +) +(1,18015:6630773,21685737:25952256,431045,106246 +h1,18015:6630773,21685737:0,0,0 +g1,18015:6962727,21685737 +g1,18015:7294681,21685737 +g1,18015:7626635,21685737 +g1,18015:7958589,21685737 +g1,18015:8290543,21685737 +g1,18015:8622497,21685737 +g1,18015:8954451,21685737 +g1,18015:9286405,21685737 +g1,18015:9618359,21685737 +g1,18015:9950313,21685737 +g1,18015:10282267,21685737 +g1,18015:10614221,21685737 +g1,18015:10946175,21685737 +g1,18015:11278129,21685737 +g1,18015:11610083,21685737 +g1,18015:11942037,21685737 +g1,18015:12273991,21685737 +g1,18015:12605945,21685737 +g1,18015:12937899,21685737 +g1,18015:13269853,21685737 +g1,18015:13601807,21685737 +g1,18015:13933761,21685737 +g1,18015:14265715,21685737 +g1,18015:14597669,21685737 +g1,18015:14929623,21685737 +g1,18015:15261577,21685737 +g1,18015:17253301,21685737 +g1,18015:17917209,21685737 +k1,18015:17917209,21685737:0 +h1,18015:21900657,21685737:0,0,0 +k1,18015:32583029,21685737:10682372 +g1,18015:32583029,21685737 +) +(1,18016:6630773,22370592:25952256,424439,79822 +h1,18016:6630773,22370592:0,0,0 +g1,18016:6962727,22370592 +g1,18016:7294681,22370592 +g1,18016:7626635,22370592 +g1,18016:7958589,22370592 +g1,18016:8290543,22370592 +g1,18016:8622497,22370592 +g1,18016:8954451,22370592 +g1,18016:9286405,22370592 +g1,18016:9618359,22370592 +g1,18016:9950313,22370592 +g1,18016:10282267,22370592 +g1,18016:10614221,22370592 +g1,18016:10946175,22370592 +g1,18016:11278129,22370592 +g1,18016:11610083,22370592 +g1,18016:11942037,22370592 +g1,18016:12273991,22370592 +g1,18016:12605945,22370592 +g1,18016:12937899,22370592 +g1,18016:13269853,22370592 +g1,18016:13601807,22370592 +g1,18016:13933761,22370592 +g1,18016:14265715,22370592 +g1,18016:14597669,22370592 +g1,18016:14929623,22370592 +g1,18016:15261577,22370592 +g1,18016:16921347,22370592 +g1,18016:17585255,22370592 +g1,18016:19245025,22370592 +h1,18016:19576979,22370592:0,0,0 +k1,18016:32583029,22370592:13006050 +g1,18016:32583029,22370592 +) +(1,18017:6630773,23055447:25952256,424439,79822 +h1,18017:6630773,23055447:0,0,0 +g1,18017:6962727,23055447 +g1,18017:7294681,23055447 +g1,18017:13269852,23055447 +h1,18017:13601806,23055447:0,0,0 +k1,18017:32583030,23055447:18981224 +g1,18017:32583030,23055447 +) +(1,18018:6630773,23740302:25952256,424439,112852 +h1,18018:6630773,23740302:0,0,0 +g1,18018:6962727,23740302 +g1,18018:7294681,23740302 +k1,18018:7294681,23740302:0 +h1,18018:11278128,23740302:0,0,0 +k1,18018:32583028,23740302:21304900 +g1,18018:32583028,23740302 +) +] +) +g1,18020:32583029,23853154 +g1,18020:6630773,23853154 +g1,18020:6630773,23853154 +g1,18020:32583029,23853154 +g1,18020:32583029,23853154 +) +h1,18020:6630773,24049762:0,0,0 +(1,18023:6630773,33198964:25952256,9083666,0 +k1,18023:10523651,33198964:3892878 +h1,18022:10523651,33198964:0,0,0 +(1,18022:10523651,33198964:18166500,9083666,0 +(1,18022:10523651,33198964:18167376,9083688,0 +(1,18022:10523651,33198964:18167376,9083688,0 +(1,18022:10523651,33198964:0,9083688,0 +(1,18022:10523651,33198964:0,14208860,0 +(1,18022:10523651,33198964:28417720,14208860,0 +) +k1,18022:10523651,33198964:-28417720 +) +) +g1,18022:28691027,33198964 +) +) +) +g1,18023:28690151,33198964 +k1,18023:32583029,33198964:3892878 +) +v1,18030:6630773,34064044:0,393216,0 +(1,18045:6630773,40162595:25952256,6491767,0 +g1,18045:6630773,40162595 +g1,18045:6237557,40162595 +r1,18062:6368629,40162595:131072,6491767,0 +g1,18045:6567858,40162595 +g1,18045:6764466,40162595 +[1,18045:6764466,40162595:25818563,6491767,0 +(1,18031:6764466,34336521:25818563,665693,196608 +(1,18030:6764466,34336521:0,665693,196608 +r1,18062:8010564,34336521:1246098,862301,196608 +k1,18030:6764466,34336521:-1246098 +) +(1,18030:6764466,34336521:1246098,665693,196608 +) +g1,18030:8209793,34336521 +g1,18030:9527722,34336521 +g1,18030:10204708,34336521 +g1,18030:11272289,34336521 +g1,18030:12564003,34336521 +g1,18030:13119092,34336521 +g1,18030:17397282,34336521 +g1,18030:19168720,34336521 +g1,18030:20387034,34336521 +g1,18030:24735347,34336521 +g1,18030:25466073,34336521 +k1,18031:32583029,34336521:4180943 +g1,18031:32583029,34336521 +) +v1,18033:6764466,35021376:0,393216,0 +(1,18041:6764466,38101479:25818563,3473319,196608 +g1,18041:6764466,38101479 +g1,18041:6764466,38101479 +g1,18041:6567858,38101479 +(1,18041:6567858,38101479:0,3473319,196608 +r1,18062:32779637,38101479:26211779,3669927,196608 +k1,18041:6567857,38101479:-26211780 +) +(1,18041:6567858,38101479:26211779,3473319,196608 +[1,18041:6764466,38101479:25818563,3276711,0 +(1,18035:6764466,35249207:25818563,424439,112852 +(1,18034:6764466,35249207:0,0,0 +g1,18034:6764466,35249207 +g1,18034:6764466,35249207 +g1,18034:6436786,35249207 +(1,18034:6436786,35249207:0,0,0 +) +g1,18034:6764466,35249207 +) +k1,18035:6764466,35249207:0 +g1,18035:10747914,35249207 +g1,18035:11411822,35249207 +g1,18035:14067454,35249207 +g1,18035:16059178,35249207 +g1,18035:16723086,35249207 +g1,18035:18714810,35249207 +g1,18035:19378718,35249207 +g1,18035:20042626,35249207 +k1,18035:20042626,35249207:0 +h1,18035:21370442,35249207:0,0,0 +k1,18035:32583029,35249207:11212587 +g1,18035:32583029,35249207 +) +(1,18036:6764466,35934062:25818563,431045,106246 +h1,18036:6764466,35934062:0,0,0 +g1,18036:7096420,35934062 +g1,18036:7428374,35934062 +g1,18036:7760328,35934062 +g1,18036:8092282,35934062 +g1,18036:8424236,35934062 +g1,18036:8756190,35934062 +g1,18036:9088144,35934062 +g1,18036:9420098,35934062 +g1,18036:9752052,35934062 +g1,18036:10084006,35934062 +g1,18036:10415960,35934062 +g1,18036:10747914,35934062 +g1,18036:11079868,35934062 +g1,18036:11411822,35934062 +g1,18036:11743776,35934062 +g1,18036:12075730,35934062 +g1,18036:12407684,35934062 +g1,18036:12739638,35934062 +g1,18036:13071592,35934062 +g1,18036:13403546,35934062 +g1,18036:13735500,35934062 +g1,18036:14067454,35934062 +g1,18036:14399408,35934062 +g1,18036:14731362,35934062 +g1,18036:15063316,35934062 +g1,18036:15395270,35934062 +g1,18036:17386994,35934062 +g1,18036:18050902,35934062 +k1,18036:18050902,35934062:0 +h1,18036:22034350,35934062:0,0,0 +k1,18036:32583029,35934062:10548679 +g1,18036:32583029,35934062 +) +(1,18037:6764466,36618917:25818563,424439,79822 +h1,18037:6764466,36618917:0,0,0 +g1,18037:7096420,36618917 +g1,18037:7428374,36618917 +g1,18037:7760328,36618917 +g1,18037:8092282,36618917 +g1,18037:8424236,36618917 +g1,18037:8756190,36618917 +g1,18037:9088144,36618917 +g1,18037:9420098,36618917 +g1,18037:9752052,36618917 +g1,18037:10084006,36618917 +g1,18037:10415960,36618917 +g1,18037:10747914,36618917 +g1,18037:11079868,36618917 +g1,18037:11411822,36618917 +g1,18037:11743776,36618917 +g1,18037:12075730,36618917 +g1,18037:12407684,36618917 +g1,18037:12739638,36618917 +g1,18037:13071592,36618917 +g1,18037:13403546,36618917 +g1,18037:13735500,36618917 +g1,18037:14067454,36618917 +g1,18037:14399408,36618917 +g1,18037:14731362,36618917 +g1,18037:15063316,36618917 +g1,18037:15395270,36618917 +g1,18037:17055040,36618917 +g1,18037:17718948,36618917 +g1,18037:19378718,36618917 +h1,18037:19710672,36618917:0,0,0 +k1,18037:32583029,36618917:12872357 +g1,18037:32583029,36618917 +) +(1,18038:6764466,37303772:25818563,424439,79822 +h1,18038:6764466,37303772:0,0,0 +g1,18038:7096420,37303772 +g1,18038:7428374,37303772 +g1,18038:11743775,37303772 +h1,18038:12075729,37303772:0,0,0 +k1,18038:32583029,37303772:20507300 +g1,18038:32583029,37303772 +) +(1,18039:6764466,37988627:25818563,424439,112852 +h1,18039:6764466,37988627:0,0,0 +g1,18039:7096420,37988627 +g1,18039:7428374,37988627 +k1,18039:7428374,37988627:0 +h1,18039:11411821,37988627:0,0,0 +k1,18039:32583029,37988627:21171208 +g1,18039:32583029,37988627 +) +] +) +g1,18041:32583029,38101479 +g1,18041:6764466,38101479 +g1,18041:6764466,38101479 +g1,18041:32583029,38101479 +g1,18041:32583029,38101479 +) +h1,18041:6764466,38298087:0,0,0 +(1,18045:6764466,39163167:25818563,513147,126483 +h1,18044:6764466,39163167:983040,0,0 +k1,18044:9629326,39163167:222448 +k1,18044:10870858,39163167:222447 +k1,18044:12544273,39163167:222448 +k1,18044:14153463,39163167:222448 +k1,18044:14988673,39163167:222448 +k1,18044:15669217,39163167:222447 +k1,18044:18841440,39163167:222448 +k1,18044:21007686,39163167:222448 +k1,18044:22249218,39163167:222447 +k1,18044:25652784,39163167:222448 +k1,18044:27885877,39163167:222448 +k1,18044:28767617,39163167:222448 +k1,18044:30682204,39163167:222447 +k1,18044:31563944,39163167:222448 +k1,18044:32583029,39163167:0 +) +(1,18045:6764466,40028247:25818563,513147,134348 +k1,18044:9564870,40028247:180930 +k1,18044:10937244,40028247:180929 +k1,18044:13142581,40028247:180930 +k1,18044:13789472,40028247:180930 +k1,18044:15429232,40028247:180929 +k1,18044:19035729,40028247:180930 +k1,18044:19875951,40028247:180930 +k1,18044:21075966,40028247:180930 +k1,18044:22534192,40028247:180929 +k1,18044:25373918,40028247:180930 +k1,18044:26573933,40028247:180930 +k1,18044:29570944,40028247:180929 +k1,18044:31951262,40028247:180930 +k1,18045:32583029,40028247:0 +k1,18045:32583029,40028247:0 +) +] +g1,18045:32583029,40162595 +) +h1,18045:6630773,40162595:0,0,0 +(1,18050:6630773,41027675:25952256,513147,134348 +h1,18049:6630773,41027675:983040,0,0 +k1,18049:8613056,41027675:181354 +k1,18049:9150270,41027675:181354 +k1,18049:10738026,41027675:181353 +k1,18049:13580797,41027675:181354 +k1,18049:17972839,41027675:181354 +k1,18049:19173278,41027675:181354 +k1,18049:20447117,41027675:181354 +k1,18049:21295627,41027675:181354 +(1,18049:21295627,41027675:0,452978,122846 +r1,18062:25522723,41027675:4227096,575824,122846 +k1,18049:21295627,41027675:-4227096 +) +(1,18049:21295627,41027675:4227096,452978,122846 +k1,18049:21295627,41027675:3277 +h1,18049:25519446,41027675:0,411205,112570 +) +k1,18049:25877746,41027675:181353 +k1,18049:26927452,41027675:181354 +k1,18049:29820686,41027675:181354 +k1,18049:32583029,41027675:0 +) +(1,18050:6630773,41892755:25952256,505283,126483 +g1,18049:9894466,41892755 +g1,18049:11285140,41892755 +g1,18049:13330519,41892755 +g1,18049:14145786,41892755 +g1,18049:15364100,41892755 +g1,18049:17216802,41892755 +g1,18049:19585273,41892755 +k1,18050:32583029,41892755:11546789 +g1,18050:32583029,41892755 +) +v1,18052:6630773,42577610:0,393216,0 +(1,18062:6630773,44939828:25952256,2755434,196608 +g1,18062:6630773,44939828 +g1,18062:6630773,44939828 +g1,18062:6434165,44939828 +(1,18062:6434165,44939828:0,2755434,196608 +r1,18062:32779637,44939828:26345472,2952042,196608 +k1,18062:6434165,44939828:-26345472 +) +(1,18062:6434165,44939828:26345472,2755434,196608 +[1,18062:6630773,44939828:25952256,2558826,0 +(1,18054:6630773,42805441:25952256,424439,112852 +(1,18053:6630773,42805441:0,0,0 +g1,18053:6630773,42805441 +g1,18053:6630773,42805441 +g1,18053:6303093,42805441 +(1,18053:6303093,42805441:0,0,0 +) +g1,18053:6630773,42805441 +) +k1,18054:6630773,42805441:0 +g1,18054:10614221,42805441 +g1,18054:11278129,42805441 +g1,18054:13933761,42805441 +g1,18054:15925485,42805441 +g1,18054:16589393,42805441 +g1,18054:18581117,42805441 +g1,18054:19245025,42805441 +g1,18054:19908933,42805441 +k1,18054:19908933,42805441:0 +h1,18054:21236749,42805441:0,0,0 +k1,18054:32583029,42805441:11346280 +g1,18054:32583029,42805441 +) +(1,18055:6630773,43490296:25952256,431045,106246 +h1,18055:6630773,43490296:0,0,0 +g1,18055:6962727,43490296 +g1,18055:7294681,43490296 +g1,18055:7626635,43490296 +g1,18055:7958589,43490296 +g1,18055:8290543,43490296 +g1,18055:8622497,43490296 +g1,18055:8954451,43490296 +g1,18055:9286405,43490296 +g1,18055:9618359,43490296 +g1,18055:9950313,43490296 +g1,18055:10282267,43490296 +g1,18055:10614221,43490296 +g1,18055:10946175,43490296 +g1,18055:11278129,43490296 +g1,18055:11610083,43490296 +g1,18055:11942037,43490296 +g1,18055:12273991,43490296 +g1,18055:12605945,43490296 +g1,18055:12937899,43490296 +g1,18055:13269853,43490296 +g1,18055:13601807,43490296 +g1,18055:13933761,43490296 +g1,18055:14265715,43490296 +g1,18055:14597669,43490296 +g1,18055:14929623,43490296 +g1,18055:15261577,43490296 +g1,18055:17253301,43490296 +g1,18055:17917209,43490296 +k1,18055:17917209,43490296:0 +h1,18055:21900657,43490296:0,0,0 +k1,18055:32583029,43490296:10682372 +g1,18055:32583029,43490296 +) +(1,18056:6630773,44175151:25952256,431045,106246 +h1,18056:6630773,44175151:0,0,0 +g1,18056:6962727,44175151 +g1,18056:7294681,44175151 +g1,18056:7626635,44175151 +g1,18056:7958589,44175151 +g1,18056:8290543,44175151 +g1,18056:8622497,44175151 +g1,18056:8954451,44175151 +g1,18056:9286405,44175151 +g1,18056:9618359,44175151 +g1,18056:9950313,44175151 +g1,18056:10282267,44175151 +g1,18056:10614221,44175151 +g1,18056:10946175,44175151 +g1,18056:11278129,44175151 +g1,18056:11610083,44175151 +g1,18056:11942037,44175151 +g1,18056:12273991,44175151 +g1,18056:12605945,44175151 +g1,18056:12937899,44175151 +g1,18056:13269853,44175151 +g1,18056:13601807,44175151 +g1,18056:13933761,44175151 +g1,18056:14265715,44175151 +g1,18056:14597669,44175151 +g1,18056:14929623,44175151 +g1,18056:15261577,44175151 +g1,18056:16921347,44175151 +g1,18056:17585255,44175151 +k1,18056:17585255,44175151:0 +h1,18056:21568703,44175151:0,0,0 +k1,18056:32583029,44175151:11014326 +g1,18056:32583029,44175151 +) +(1,18057:6630773,44860006:25952256,424439,79822 +h1,18057:6630773,44860006:0,0,0 +g1,18057:6962727,44860006 +g1,18057:7294681,44860006 +g1,18057:7626635,44860006 +g1,18057:7958589,44860006 +g1,18057:8290543,44860006 +g1,18057:8622497,44860006 +g1,18057:8954451,44860006 +g1,18057:9286405,44860006 +g1,18057:9618359,44860006 +g1,18057:9950313,44860006 +g1,18057:10282267,44860006 +g1,18057:10614221,44860006 +g1,18057:10946175,44860006 +g1,18057:11278129,44860006 +g1,18057:11610083,44860006 +g1,18057:11942037,44860006 +g1,18057:12273991,44860006 +g1,18057:12605945,44860006 +g1,18057:12937899,44860006 +g1,18057:13269853,44860006 +g1,18057:13601807,44860006 +g1,18057:13933761,44860006 +g1,18057:14265715,44860006 +g1,18057:14597669,44860006 +g1,18057:14929623,44860006 +g1,18057:15261577,44860006 +g1,18057:16921347,44860006 +g1,18057:17585255,44860006 +g1,18057:19245025,44860006 +h1,18057:19576979,44860006:0,0,0 +k1,18057:32583029,44860006:13006050 +g1,18057:32583029,44860006 +) +] +) +g1,18062:32583029,44939828 +g1,18062:6630773,44939828 +g1,18062:6630773,44939828 +g1,18062:32583029,44939828 +g1,18062:32583029,44939828 +) +] +(1,18062:32583029,45706769:0,0,0 +g1,18062:32583029,45706769 +) +) +] +(1,18062:6630773,47279633:25952256,0,0 +h1,18062:6630773,47279633:25952256,0,0 +) +] +(1,18062:4262630,4025873:0,0,0 +[1,18062:-473656,4025873:0,0,0 +(1,18062:-473656,-710413:0,0,0 +(1,18062:-473656,-710413:0,0,0 +g1,18062:-473656,-710413 +) +g1,18062:-473656,-710413 +) +] +) +] +!22689 +}297 +Input:2690:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2691:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2692:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2693:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2694:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2695:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2696:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2697:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2698:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2699:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2700:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2701:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2702:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2703:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2704:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2705:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2706:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2707:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2708:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2709:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2710:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2711:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2712:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2713:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2714:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1516 -{315 -[1,17994:4262630,47279633:28320399,43253760,0 -(1,17994:4262630,4025873:0,0,0 -[1,17994:-473656,4025873:0,0,0 -(1,17994:-473656,-710413:0,0,0 -(1,17994:-473656,-644877:0,0,0 -k1,17994:-473656,-644877:-65536 +!1140 +{298 +[1,18102:4262630,47279633:28320399,43253760,0 +(1,18102:4262630,4025873:0,0,0 +[1,18102:-473656,4025873:0,0,0 +(1,18102:-473656,-710413:0,0,0 +(1,18102:-473656,-644877:0,0,0 +k1,18102:-473656,-644877:-65536 ) -(1,17994:-473656,4736287:0,0,0 -k1,17994:-473656,4736287:5209943 +(1,18102:-473656,4736287:0,0,0 +k1,18102:-473656,4736287:5209943 ) -g1,17994:-473656,-710413 +g1,18102:-473656,-710413 ) ] ) -[1,17994:6630773,47279633:25952256,43253760,0 -[1,17994:6630773,4812305:25952256,786432,0 -(1,17994:6630773,4812305:25952256,513147,126483 -(1,17994:6630773,4812305:25952256,513147,126483 -g1,17994:3078558,4812305 -[1,17994:3078558,4812305:0,0,0 -(1,17994:3078558,2439708:0,1703936,0 -k1,17994:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,17994:2537886,2439708:1179648,16384,0 +[1,18102:6630773,47279633:25952256,43253760,0 +[1,18102:6630773,4812305:25952256,786432,0 +(1,18102:6630773,4812305:25952256,485622,11795 +(1,18102:6630773,4812305:25952256,485622,11795 +g1,18102:3078558,4812305 +[1,18102:3078558,4812305:0,0,0 +(1,18102:3078558,2439708:0,1703936,0 +k1,18102:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,18102:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,17994:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,18102:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,17994:3078558,4812305:0,0,0 -(1,17994:3078558,2439708:0,1703936,0 -g1,17994:29030814,2439708 -g1,17994:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,17994:36151628,1915420:16384,1179648,0 +[1,18102:3078558,4812305:0,0,0 +(1,18102:3078558,2439708:0,1703936,0 +g1,18102:29030814,2439708 +g1,18102:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,18102:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,17994:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,18102:37855564,2439708:1179648,16384,0 ) ) -k1,17994:3078556,2439708:-34777008 +k1,18102:3078556,2439708:-34777008 ) ] -[1,17994:3078558,4812305:0,0,0 -(1,17994:3078558,49800853:0,16384,2228224 -k1,17994:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,17994:2537886,49800853:1179648,16384,0 +[1,18102:3078558,4812305:0,0,0 +(1,18102:3078558,49800853:0,16384,2228224 +k1,18102:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,18102:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,17994:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,18102:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,17994:3078558,4812305:0,0,0 -(1,17994:3078558,49800853:0,16384,2228224 -g1,17994:29030814,49800853 -g1,17994:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,17994:36151628,51504789:16384,1179648,0 +[1,18102:3078558,4812305:0,0,0 +(1,18102:3078558,49800853:0,16384,2228224 +g1,18102:29030814,49800853 +g1,18102:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,18102:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,17994:37855564,49800853:1179648,16384,0 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,18102:37855564,49800853:1179648,16384,0 ) ) -k1,17994:3078556,49800853:-34777008 +k1,18102:3078556,49800853:-34777008 ) ] -g1,17994:6630773,4812305 -k1,17994:21350816,4812305:13524666 -g1,17994:21999622,4812305 -g1,17994:25611966,4812305 -g1,17994:28956923,4812305 -g1,17994:29772190,4812305 +g1,18102:6630773,4812305 +g1,18102:6630773,4812305 +g1,18102:10347975,4812305 +k1,18102:31387651,4812305:21039676 ) ) ] -[1,17994:6630773,45706769:25952256,40108032,0 -(1,17994:6630773,45706769:25952256,40108032,0 -(1,17994:6630773,45706769:0,0,0 -g1,17994:6630773,45706769 -) -[1,17994:6630773,45706769:25952256,40108032,0 -(1,17950:6630773,6254097:25952256,505283,134348 -h1,17949:6630773,6254097:983040,0,0 -k1,17949:9722702,6254097:334174 -(1,17949:9722702,6254097:0,452978,122846 -r1,17994:13598086,6254097:3875384,575824,122846 -k1,17949:9722702,6254097:-3875384 +[1,18102:6630773,45706769:25952256,40108032,0 +(1,18102:6630773,45706769:25952256,40108032,0 +(1,18102:6630773,45706769:0,0,0 +g1,18102:6630773,45706769 ) -(1,17949:9722702,6254097:3875384,452978,122846 -k1,17949:9722702,6254097:3277 -h1,17949:13594809,6254097:0,411205,112570 +[1,18102:6630773,45706769:25952256,40108032,0 +v1,18062:6630773,6254097:0,393216,0 +(1,18062:6630773,7957884:25952256,2097003,196608 +g1,18062:6630773,7957884 +g1,18062:6630773,7957884 +g1,18062:6434165,7957884 +(1,18062:6434165,7957884:0,2097003,196608 +r1,18102:32779637,7957884:26345472,2293611,196608 +k1,18062:6434165,7957884:-26345472 ) -k1,17949:13932259,6254097:334173 -k1,17949:16182706,6254097:334174 -k1,17949:16872739,6254097:334173 -k1,17949:18375420,6254097:334174 -k1,17949:20937162,6254097:334173 -k1,17949:25516758,6254097:334174 -(1,17949:25516758,6254097:0,452978,122846 -r1,17994:29392142,6254097:3875384,575824,122846 -k1,17949:25516758,6254097:-3875384 -) -(1,17949:25516758,6254097:3875384,452978,122846 -k1,17949:25516758,6254097:3277 -h1,17949:29388865,6254097:0,411205,112570 -) -k1,17949:29726315,6254097:334173 -k1,17949:32583029,6254097:0 -) -(1,17950:6630773,7095585:25952256,513147,134348 -k1,17949:8904508,7095585:442659 -k1,17949:10366251,7095585:442658 -k1,17949:12156330,7095585:442659 -k1,17949:14467419,7095585:442658 -k1,17949:15929163,7095585:442659 -k1,17949:17540329,7095585:442659 -k1,17949:21099879,7095585:442658 -k1,17949:22193966,7095585:442659 -k1,17949:23655709,7095585:442658 -(1,17949:23655709,7095585:0,459977,115847 -r1,17994:25069110,7095585:1413401,575824,115847 -k1,17949:23655709,7095585:-1413401 -) -(1,17949:23655709,7095585:1413401,459977,115847 -k1,17949:23655709,7095585:3277 -h1,17949:25065833,7095585:0,411205,112570 -) -k1,17949:25511769,7095585:442659 -k1,17949:28881265,7095585:442659 -k1,17949:29951758,7095585:442658 -k1,17950:32583029,7095585:0 -) -(1,17950:6630773,7937073:25952256,505283,122846 -(1,17949:6630773,7937073:0,452978,122846 -r1,17994:11209581,7937073:4578808,575824,122846 -k1,17949:6630773,7937073:-4578808 -) -(1,17949:6630773,7937073:4578808,452978,122846 -k1,17949:6630773,7937073:3277 -h1,17949:11206304,7937073:0,411205,112570 -) -k1,17949:11538204,7937073:328623 -k1,17949:13783100,7937073:328623 -k1,17949:15284162,7937073:328623 -k1,17949:17111592,7937073:328622 -k1,17949:19294884,7937073:328623 -k1,17949:20432877,7937073:328623 -k1,17949:21780585,7937073:328623 -(1,17949:21780585,7937073:0,414482,115847 -r1,17994:22138851,7937073:358266,530329,115847 -k1,17949:21780585,7937073:-358266 -) -(1,17949:21780585,7937073:358266,414482,115847 -k1,17949:21780585,7937073:3277 -h1,17949:22135574,7937073:0,411205,112570 -) -k1,17949:22641144,7937073:328623 -(1,17949:22641144,7937073:0,452978,115847 -r1,17994:24054545,7937073:1413401,568825,115847 -k1,17949:22641144,7937073:-1413401 -) -(1,17949:22641144,7937073:1413401,452978,115847 -k1,17949:22641144,7937073:3277 -h1,17949:24051268,7937073:0,411205,112570 -) -k1,17949:24383168,7937073:328623 -k1,17949:25903235,7937073:328622 -(1,17949:25903235,7937073:0,414482,115847 -r1,17994:27316636,7937073:1413401,530329,115847 -k1,17949:25903235,7937073:-1413401 -) -(1,17949:25903235,7937073:1413401,414482,115847 -k1,17949:25903235,7937073:3277 -h1,17949:27313359,7937073:0,411205,112570 -) -k1,17949:27645259,7937073:328623 -k1,17949:31189078,7937073:328623 -k1,17949:32583029,7937073:0 -) -(1,17950:6630773,8778561:25952256,513147,134348 -k1,17949:8102552,8778561:452694 -k1,17949:10343068,8778561:452694 -k1,17949:13430966,8778561:452695 -k1,17949:14902745,8778561:452694 -k1,17949:16854247,8778561:452694 -k1,17949:18915850,8778561:452694 -k1,17949:22485436,8778561:452694 -k1,17949:23589558,8778561:452694 -k1,17949:25061338,8778561:452695 -(1,17949:25061338,8778561:0,459977,115847 -r1,17994:26474739,8778561:1413401,575824,115847 -k1,17949:25061338,8778561:-1413401 -) -(1,17949:25061338,8778561:1413401,459977,115847 -k1,17949:25061338,8778561:3277 -h1,17949:26471462,8778561:0,411205,112570 -) -k1,17949:26927433,8778561:452694 -k1,17949:30306964,8778561:452694 -k1,17950:32583029,8778561:0 -) -(1,17950:6630773,9620049:25952256,505283,122846 -(1,17949:6630773,9620049:0,452978,122846 -r1,17994:11561293,9620049:4930520,575824,122846 -k1,17949:6630773,9620049:-4930520 -) -(1,17949:6630773,9620049:4930520,452978,122846 -k1,17949:6630773,9620049:3277 -h1,17949:11558016,9620049:0,411205,112570 -) -k1,17949:11805761,9620049:244468 -k1,17949:12581726,9620049:244468 -k1,17949:15028204,9620049:244468 -k1,17949:15924100,9620049:244468 -(1,17949:15924100,9620049:0,452978,122846 -r1,17994:19799484,9620049:3875384,575824,122846 -k1,17949:15924100,9620049:-3875384 -) -(1,17949:15924100,9620049:3875384,452978,122846 -k1,17949:15924100,9620049:3277 -h1,17949:19796207,9620049:0,411205,112570 -) -k1,17949:20043951,9620049:244467 -k1,17949:21360588,9620049:244468 -k1,17949:24430968,9620049:244468 -k1,17949:25694521,9620049:244468 -k1,17949:28511277,9620049:244468 -k1,17949:32583029,9620049:0 -) -(1,17950:6630773,10461537:25952256,513147,134348 -g1,17949:9387872,10461537 -g1,17949:9942961,10461537 -g1,17949:12173806,10461537 -g1,17949:14938114,10461537 -g1,17949:16421849,10461537 -g1,17949:19477792,10461537 -(1,17949:19477792,10461537:0,459977,115847 -r1,17994:20891193,10461537:1413401,575824,115847 -k1,17949:19477792,10461537:-1413401 -) -(1,17949:19477792,10461537:1413401,459977,115847 -k1,17949:19477792,10461537:3277 -h1,17949:20887916,10461537:0,411205,112570 -) -k1,17950:32583029,10461537:11518166 -g1,17950:32583029,10461537 -) -(1,17952:6630773,11303025:25952256,513147,126483 -h1,17951:6630773,11303025:983040,0,0 -k1,17951:9761187,11303025:420500 -k1,17951:10840980,11303025:420501 -k1,17951:12810096,11303025:420500 -k1,17951:14437770,11303025:420501 -k1,17951:17948293,11303025:420500 -k1,17951:20224118,11303025:420501 -k1,17951:21592269,11303025:420500 -(1,17951:21592269,11303025:0,452978,122846 -r1,17994:25819365,11303025:4227096,575824,122846 -k1,17951:21592269,11303025:-4227096 -) -(1,17951:21592269,11303025:4227096,452978,122846 -k1,17951:21592269,11303025:3277 -h1,17951:25816088,11303025:0,411205,112570 -) -k1,17951:26239866,11303025:420501 -k1,17951:27764648,11303025:420500 -k1,17951:28932915,11303025:420501 -k1,17951:31931601,11303025:420500 -k1,17952:32583029,11303025:0 -) -(1,17952:6630773,12144513:25952256,505283,134348 -(1,17951:6630773,12144513:0,452978,122846 -r1,17994:10506157,12144513:3875384,575824,122846 -k1,17951:6630773,12144513:-3875384 -) -(1,17951:6630773,12144513:3875384,452978,122846 -k1,17951:6630773,12144513:3277 -h1,17951:10502880,12144513:0,411205,112570 -) -k1,17951:10933907,12144513:254080 -(1,17951:10933907,12144513:0,452978,122846 -r1,17994:15512715,12144513:4578808,575824,122846 -k1,17951:10933907,12144513:-4578808 -) -(1,17951:10933907,12144513:4578808,452978,122846 -k1,17951:10933907,12144513:3277 -h1,17951:15509438,12144513:0,411205,112570 -) -k1,17951:15940465,12144513:254080 -(1,17951:15940465,12144513:0,452978,122846 -r1,17994:19815849,12144513:3875384,575824,122846 -k1,17951:15940465,12144513:-3875384 -) -(1,17951:15940465,12144513:3875384,452978,122846 -k1,17951:15940465,12144513:3277 -h1,17951:19812572,12144513:0,411205,112570 -) -k1,17951:20069928,12144513:254079 -k1,17951:21515453,12144513:254080 -k1,17951:23471503,12144513:254080 -k1,17951:27165568,12144513:254080 -k1,17951:30509670,12144513:254079 -k1,17951:31379788,12144513:254080 -k1,17951:32583029,12144513:0 -) -(1,17952:6630773,12986001:25952256,513147,134348 -k1,17951:9328094,12986001:244964 -k1,17951:10200893,12986001:244964 -k1,17951:12137997,12986001:244964 -k1,17951:14254014,12986001:244964 -k1,17951:14957075,12986001:244964 -k1,17951:15733536,12986001:244964 -k1,17951:17955722,12986001:244965 -k1,17951:18852114,12986001:244964 -k1,17951:20766280,12986001:244964 -k1,17951:22030329,12986001:244964 -k1,17951:25850937,12986001:244964 -k1,17951:27793939,12986001:244964 -k1,17951:29057988,12986001:244964 -k1,17951:31313597,12986001:244964 -k1,17952:32583029,12986001:0 -) -(1,17952:6630773,13827489:25952256,513147,134348 -k1,17951:8959923,13827489:344064 -k1,17951:10956150,13827489:344064 -k1,17951:11959506,13827489:344064 -k1,17951:12659429,13827489:344063 -k1,17951:14989234,13827489:344064 -k1,17951:17389818,13827489:344064 -k1,17951:18361717,13827489:344064 -k1,17951:19724866,13827489:344064 -k1,17951:21626721,13827489:344064 -k1,17951:25159112,13827489:344064 -k1,17951:28338262,13827489:344063 -k1,17951:29550678,13827489:344064 -k1,17951:31563944,13827489:344064 -k1,17951:32583029,13827489:0 -) -(1,17952:6630773,14668977:25952256,513147,134348 -k1,17951:9115716,14668977:235092 -k1,17951:10010100,14668977:235092 -k1,17951:11264277,14668977:235092 -k1,17951:14261712,14668977:235092 -k1,17951:16067047,14668977:235092 -k1,17951:17063668,14668977:235093 -k1,17951:19034153,14668977:235092 -(1,17951:19034153,14668977:0,452978,115847 -r1,17994:25371521,14668977:6337368,568825,115847 -k1,17951:19034153,14668977:-6337368 -) -(1,17951:19034153,14668977:6337368,452978,115847 -g1,17951:22202837,14668977 -g1,17951:22906261,14668977 -h1,17951:25368244,14668977:0,411205,112570 -) -k1,17951:25606613,14668977:235092 -k1,17951:28168888,14668977:235092 -k1,17951:29063272,14668977:235092 -k1,17951:30317449,14668977:235092 -k1,17952:32583029,14668977:0 -) -(1,17952:6630773,15510465:25952256,513147,138281 -(1,17951:6630773,15510465:0,452978,115847 -r1,17994:14023276,15510465:7392503,568825,115847 -k1,17951:6630773,15510465:-7392503 -) -(1,17951:6630773,15510465:7392503,452978,115847 -g1,17951:9799457,15510465 -g1,17951:10502881,15510465 -h1,17951:14019999,15510465:0,411205,112570 -) -k1,17951:14481905,15510465:284959 -k1,17951:17856230,15510465:284958 -k1,17951:19160274,15510465:284959 -$1,17951:19160274,15510465 -$1,17951:19712087,15510465 -k1,17951:19997046,15510465:284959 -k1,17951:21534397,15510465:284958 -k1,17951:22478648,15510465:284959 -k1,17951:23782691,15510465:284958 -k1,17951:25922974,15510465:284959 -k1,17951:28076364,15510465:284959 -k1,17951:29012750,15510465:284958 -k1,17951:30582215,15510465:284959 -k1,17951:32583029,15510465:0 -) -(1,17952:6630773,16351953:25952256,505283,134348 -g1,17951:8565395,16351953 -(1,17951:8565395,16351953:0,452978,122846 -r1,17994:12440779,16351953:3875384,575824,122846 -k1,17951:8565395,16351953:-3875384 -) -(1,17951:8565395,16351953:3875384,452978,122846 -k1,17951:8565395,16351953:3277 -h1,17951:12437502,16351953:0,411205,112570 -) -g1,17951:12640008,16351953 -g1,17951:13648607,16351953 -g1,17951:15345989,16351953 -h1,17951:16541366,16351953:0,0,0 -k1,17952:32583029,16351953:15660899 -g1,17952:32583029,16351953 -) -v1,17954:6630773,17542419:0,393216,0 -(1,17960:6630773,19189871:25952256,2040668,196608 -g1,17960:6630773,19189871 -g1,17960:6630773,19189871 -g1,17960:6434165,19189871 -(1,17960:6434165,19189871:0,2040668,196608 -r1,17994:32779637,19189871:26345472,2237276,196608 -k1,17960:6434165,19189871:-26345472 -) -(1,17960:6434165,19189871:26345472,2040668,196608 -[1,17960:6630773,19189871:25952256,1844060,0 -(1,17956:6630773,17750037:25952256,404226,107478 -(1,17955:6630773,17750037:0,0,0 -g1,17955:6630773,17750037 -g1,17955:6630773,17750037 -g1,17955:6303093,17750037 -(1,17955:6303093,17750037:0,0,0 -) -g1,17955:6630773,17750037 -) -k1,17956:6630773,17750037:0 -g1,17956:10424522,17750037 -g1,17956:11056814,17750037 -k1,17956:11056814,17750037:0 -h1,17956:13269834,17750037:0,0,0 -k1,17956:32583030,17750037:19313196 -g1,17956:32583030,17750037 -) -(1,17957:6630773,18416215:25952256,410518,107478 -h1,17957:6630773,18416215:0,0,0 -g1,17957:6946919,18416215 -g1,17957:7263065,18416215 -g1,17957:7579211,18416215 -g1,17957:7895357,18416215 -g1,17957:8211503,18416215 -g1,17957:8527649,18416215 -g1,17957:8843795,18416215 -g1,17957:10740670,18416215 -g1,17957:11372962,18416215 -g1,17957:12953691,18416215 -g1,17957:13585983,18416215 -g1,17957:14218275,18416215 -g1,17957:18960461,18416215 -g1,17957:20541190,18416215 -g1,17957:21173482,18416215 -g1,17957:23386502,18416215 -h1,17957:23702648,18416215:0,0,0 -k1,17957:32583029,18416215:8880381 -g1,17957:32583029,18416215 -) -(1,17958:6630773,19082393:25952256,404226,107478 -h1,17958:6630773,19082393:0,0,0 -g1,17958:6946919,19082393 -g1,17958:7263065,19082393 -g1,17958:13269833,19082393 -g1,17958:13902125,19082393 -h1,17958:16431291,19082393:0,0,0 -k1,17958:32583029,19082393:16151738 -g1,17958:32583029,19082393 -) -] -) -g1,17960:32583029,19189871 -g1,17960:6630773,19189871 -g1,17960:6630773,19189871 -g1,17960:32583029,19189871 -g1,17960:32583029,19189871 -) -h1,17960:6630773,19386479:0,0,0 -(1,17963:6630773,29059969:25952256,9083666,0 -k1,17963:10523651,29059969:3892878 -h1,17962:10523651,29059969:0,0,0 -(1,17962:10523651,29059969:18166500,9083666,0 -(1,17962:10523651,29059969:18167376,9083688,0 -(1,17962:10523651,29059969:18167376,9083688,0 -(1,17962:10523651,29059969:0,9083688,0 -(1,17962:10523651,29059969:0,14208860,0 -(1,17962:10523651,29059969:28417720,14208860,0 -) -k1,17962:10523651,29059969:-28417720 -) -) -g1,17962:28691027,29059969 -) -) -) -g1,17963:28690151,29059969 -k1,17963:32583029,29059969:3892878 -) -(1,17972:6630773,29901457:25952256,513147,134348 -h1,17971:6630773,29901457:983040,0,0 -k1,17971:10249408,29901457:359530 -k1,17971:12263723,29901457:359531 -k1,17971:16063238,29901457:359530 -k1,17971:17370420,29901457:359531 -k1,17971:20306170,29901457:359530 -k1,17971:22164508,29901457:359530 -k1,17971:24556966,29901457:359531 -k1,17971:25935581,29901457:359530 -k1,17971:28177961,29901457:359531 -k1,17971:31061938,29901457:359530 -k1,17972:32583029,29901457:0 -) -(1,17972:6630773,30742945:25952256,513147,122846 -(1,17971:6630773,30742945:0,452978,122846 -r1,17994:10857869,30742945:4227096,575824,122846 -k1,17971:6630773,30742945:-4227096 -) -(1,17971:6630773,30742945:4227096,452978,122846 -k1,17971:6630773,30742945:3277 -h1,17971:10854592,30742945:0,411205,112570 -) -k1,17971:11210614,30742945:179075 -(1,17971:11210614,30742945:0,452978,122846 -r1,17994:15437710,30742945:4227096,575824,122846 -k1,17971:11210614,30742945:-4227096 -) -(1,17971:11210614,30742945:4227096,452978,122846 -k1,17971:11210614,30742945:3277 -h1,17971:15434433,30742945:0,411205,112570 -) -k1,17971:15616785,30742945:179075 -k1,17971:16987305,30742945:179075 -(1,17971:16987305,30742945:0,452978,122846 -r1,17994:21566113,30742945:4578808,575824,122846 -k1,17971:16987305,30742945:-4578808 -) -(1,17971:16987305,30742945:4578808,452978,122846 -k1,17971:16987305,30742945:3277 -h1,17971:21562836,30742945:0,411205,112570 -) -k1,17971:21918858,30742945:179075 -k1,17971:23294619,30742945:179074 -k1,17971:24779827,30742945:179075 -k1,17971:26131341,30742945:179075 -k1,17971:27896387,30742945:179075 -k1,17971:31391584,30742945:179075 -k1,17971:32583029,30742945:0 -) -(1,17972:6630773,31584433:25952256,505283,134348 -k1,17971:9235829,31584433:259522 -k1,17971:11167831,31584433:259523 -k1,17971:15397524,31584433:259522 -k1,17971:17346565,31584433:259523 -k1,17971:18625172,31584433:259522 -k1,17971:20466734,31584433:259523 -k1,17971:21882966,31584433:259522 -k1,17971:24058762,31584433:259523 -k1,17971:26796856,31584433:259522 -k1,17971:28555187,31584433:259523 -k1,17971:31931601,31584433:259522 -k1,17971:32583029,31584433:0 -) -(1,17972:6630773,32425921:25952256,505283,134348 -k1,17971:7827676,32425921:177818 -k1,17971:11069959,32425921:177819 -(1,17971:11069959,32425921:0,452978,115847 -r1,17994:12835072,32425921:1765113,568825,115847 -k1,17971:11069959,32425921:-1765113 -) -(1,17971:11069959,32425921:1765113,452978,115847 -k1,17971:11069959,32425921:3277 -h1,17971:12831795,32425921:0,411205,112570 -) -k1,17971:13012890,32425921:177818 -k1,17971:14382153,32425921:177818 -(1,17971:14382153,32425921:0,452978,115847 -r1,17994:17554113,32425921:3171960,568825,115847 -k1,17971:14382153,32425921:-3171960 -) -(1,17971:14382153,32425921:3171960,452978,115847 -k1,17971:14382153,32425921:3277 -h1,17971:17550836,32425921:0,411205,112570 -) -k1,17971:17731932,32425921:177819 -k1,17971:21796690,32425921:177818 -k1,17971:22993594,32425921:177819 -k1,17971:25959314,32425921:177818 -k1,17971:27333819,32425921:177818 -k1,17971:29010446,32425921:177819 -k1,17971:31189078,32425921:177818 -k1,17971:32583029,32425921:0 -) -(1,17972:6630773,33267409:25952256,513147,134348 -g1,17971:8526729,33267409 -g1,17971:10380742,33267409 -g1,17971:12646321,33267409 -g1,17971:14997752,33267409 -g1,17971:15848409,33267409 -g1,17971:17066723,33267409 -g1,17971:18755585,33267409 -g1,17971:19614106,33267409 -g1,17971:20832420,33267409 -g1,17971:23556096,33267409 -k1,17972:32583029,33267409:7505842 -g1,17972:32583029,33267409 -) -(1,17974:6630773,34108897:25952256,505283,134348 -h1,17973:6630773,34108897:983040,0,0 -(1,17973:7613813,34108897:0,452978,122846 -r1,17994:11840909,34108897:4227096,575824,122846 -k1,17973:7613813,34108897:-4227096 -) -(1,17973:7613813,34108897:4227096,452978,122846 -k1,17973:7613813,34108897:3277 -h1,17973:11837632,34108897:0,411205,112570 -) -k1,17973:12224641,34108897:383732 -k1,17973:13799818,34108897:383732 -(1,17973:13799818,34108897:0,452978,122846 -r1,17994:18026914,34108897:4227096,575824,122846 -k1,17973:13799818,34108897:-4227096 -) -(1,17973:13799818,34108897:4227096,452978,122846 -k1,17973:13799818,34108897:3277 -h1,17973:18023637,34108897:0,411205,112570 -) -k1,17973:18410646,34108897:383732 -k1,17973:21086172,34108897:383732 -k1,17973:21825764,34108897:383732 -k1,17973:24082515,34108897:383732 -k1,17973:27484180,34108897:383732 -(1,17973:27484180,34108897:0,452978,115847 -r1,17994:31007852,34108897:3523672,568825,115847 -k1,17973:27484180,34108897:-3523672 -) -(1,17973:27484180,34108897:3523672,452978,115847 -k1,17973:27484180,34108897:3277 -h1,17973:31004575,34108897:0,411205,112570 -) -k1,17973:31391584,34108897:383732 -k1,17974:32583029,34108897:0 -) -(1,17974:6630773,34950385:25952256,513147,134348 -(1,17973:6630773,34950385:0,452978,115847 -r1,17994:10154445,34950385:3523672,568825,115847 -k1,17973:6630773,34950385:-3523672 -) -(1,17973:6630773,34950385:3523672,452978,115847 -k1,17973:6630773,34950385:3277 -h1,17973:10151168,34950385:0,411205,112570 -) -k1,17973:10498397,34950385:170282 -k1,17973:14638851,34950385:170283 -k1,17973:17654051,34950385:170282 -k1,17973:19391954,34950385:170282 -k1,17973:21264206,34950385:170282 -k1,17973:23674510,34950385:170283 -k1,17973:24863877,34950385:170282 -k1,17973:26423522,34950385:170282 -k1,17973:27541456,34950385:170283 -k1,17973:29408465,34950385:170282 -k1,17973:32583029,34950385:0 -) -(1,17974:6630773,35791873:25952256,513147,134348 -k1,17973:7877530,35791873:142475 -k1,17973:9305821,35791873:142475 -k1,17973:10196063,35791873:142476 -k1,17973:12543825,35791873:142475 -k1,17973:13372462,35791873:142475 -k1,17973:16272692,35791873:142475 -k1,17973:19035296,35791873:142475 -k1,17973:21659620,35791873:142476 -k1,17973:22998782,35791873:142475 -k1,17973:25272488,35791873:142475 -k1,17973:26362614,35791873:142475 -k1,17973:27708330,35791873:142475 -k1,17973:28382303,35791873:142476 -k1,17973:29809284,35791873:142475 -k1,17973:31648486,35791873:142475 -k1,17974:32583029,35791873:0 -) -(1,17974:6630773,36633361:25952256,513147,134348 -k1,17973:8155200,36633361:179628 -k1,17973:9326388,36633361:179628 -k1,17973:11107716,36633361:179628 -k1,17973:14592325,36633361:179628 -k1,17973:16285179,36633361:179628 -k1,17973:17116236,36633361:179629 -k1,17973:20092941,36633361:179628 -k1,17973:21880167,36633361:179628 -k1,17973:24011457,36633361:179628 -k1,17973:25633532,36633361:179628 -k1,17973:28337607,36633361:179628 -k1,17973:32583029,36633361:0 -) -(1,17974:6630773,37474849:25952256,513147,134348 -g1,17973:8303251,37474849 -g1,17973:10901098,37474849 -g1,17973:12384833,37474849 -g1,17973:13452414,37474849 -g1,17973:15200259,37474849 -g1,17973:16050916,37474849 -g1,17973:19107515,37474849 -g1,17973:20077447,37474849 -g1,17973:22000273,37474849 -g1,17973:22812264,37474849 -g1,17973:24030578,37474849 -g1,17973:25307219,37474849 -g1,17973:26165740,37474849 -g1,17973:27958805,37474849 -k1,17974:32583029,37474849:2982547 -g1,17974:32583029,37474849 -) -v1,17976:6630773,38665315:0,393216,0 -(1,17984:6630773,41645123:25952256,3373024,196608 -g1,17984:6630773,41645123 -g1,17984:6630773,41645123 -g1,17984:6434165,41645123 -(1,17984:6434165,41645123:0,3373024,196608 -r1,17994:32779637,41645123:26345472,3569632,196608 -k1,17984:6434165,41645123:-26345472 -) -(1,17984:6434165,41645123:26345472,3373024,196608 -[1,17984:6630773,41645123:25952256,3176416,0 -(1,17978:6630773,38872933:25952256,404226,107478 -(1,17977:6630773,38872933:0,0,0 -g1,17977:6630773,38872933 -g1,17977:6630773,38872933 -g1,17977:6303093,38872933 -(1,17977:6303093,38872933:0,0,0 -) -g1,17977:6630773,38872933 -) -k1,17978:6630773,38872933:0 -g1,17978:10424522,38872933 -g1,17978:11056814,38872933 -k1,17978:11056814,38872933:0 -h1,17978:13269834,38872933:0,0,0 -k1,17978:32583030,38872933:19313196 -g1,17978:32583030,38872933 -) -(1,17979:6630773,39539111:25952256,410518,107478 -h1,17979:6630773,39539111:0,0,0 -g1,17979:6946919,39539111 -g1,17979:7263065,39539111 -g1,17979:7579211,39539111 -g1,17979:7895357,39539111 -g1,17979:8211503,39539111 -g1,17979:8527649,39539111 -g1,17979:8843795,39539111 -g1,17979:10740670,39539111 -g1,17979:11372962,39539111 -g1,17979:12953691,39539111 -g1,17979:13585983,39539111 -g1,17979:14218275,39539111 -g1,17979:18960461,39539111 -g1,17979:20541190,39539111 -g1,17979:21173482,39539111 -g1,17979:23386502,39539111 -h1,17979:23702648,39539111:0,0,0 -k1,17979:32583029,39539111:8880381 -g1,17979:32583029,39539111 -) -(1,17980:6630773,40205289:25952256,404226,107478 -h1,17980:6630773,40205289:0,0,0 -g1,17980:6946919,40205289 -g1,17980:7263065,40205289 -g1,17980:13269833,40205289 -g1,17980:13902125,40205289 -g1,17980:16747437,40205289 -h1,17980:17063583,40205289:0,0,0 -k1,17980:32583029,40205289:15519446 -g1,17980:32583029,40205289 -) -(1,17981:6630773,40871467:25952256,404226,107478 -h1,17981:6630773,40871467:0,0,0 -g1,17981:6946919,40871467 -g1,17981:7263065,40871467 -g1,17981:14218271,40871467 -g1,17981:14850563,40871467 -g1,17981:16747438,40871467 -g1,17981:18644312,40871467 -g1,17981:19276604,40871467 -g1,17981:22438061,40871467 -h1,17981:22754207,40871467:0,0,0 -k1,17981:32583029,40871467:9828822 -g1,17981:32583029,40871467 -) -(1,17982:6630773,41537645:25952256,404226,107478 -h1,17982:6630773,41537645:0,0,0 -g1,17982:6946919,41537645 -g1,17982:7263065,41537645 -g1,17982:14218271,41537645 -g1,17982:14850563,41537645 -g1,17982:16747438,41537645 -g1,17982:19592749,41537645 -g1,17982:20225041,41537645 -h1,17982:23070352,41537645:0,0,0 -k1,17982:32583029,41537645:9512677 -g1,17982:32583029,41537645 -) -] -) -g1,17984:32583029,41645123 -g1,17984:6630773,41645123 -g1,17984:6630773,41645123 -g1,17984:32583029,41645123 -g1,17984:32583029,41645123 -) -h1,17984:6630773,41841731:0,0,0 -] -(1,17994:32583029,45706769:0,0,0 -g1,17994:32583029,45706769 -) -) -] -(1,17994:6630773,47279633:25952256,0,0 -h1,17994:6630773,47279633:25952256,0,0 -) -] -(1,17994:4262630,4025873:0,0,0 -[1,17994:-473656,4025873:0,0,0 -(1,17994:-473656,-710413:0,0,0 -(1,17994:-473656,-710413:0,0,0 -g1,17994:-473656,-710413 -) -g1,17994:-473656,-710413 -) -] -) -] -!25488 -}315 +(1,18062:6434165,7957884:26345472,2097003,196608 +[1,18062:6630773,7957884:25952256,1900395,0 +(1,18058:6630773,6481928:25952256,424439,112852 +h1,18058:6630773,6481928:0,0,0 +g1,18058:6962727,6481928 +g1,18058:7294681,6481928 +g1,18058:12937898,6481928 +g1,18058:13601806,6481928 +g1,18058:15593530,6481928 +g1,18058:17585254,6481928 +g1,18058:18249162,6481928 +g1,18058:21236748,6481928 +h1,18058:21568702,6481928:0,0,0 +k1,18058:32583029,6481928:11014327 +g1,18058:32583029,6481928 +) +(1,18059:6630773,7166783:25952256,424439,79822 +h1,18059:6630773,7166783:0,0,0 +g1,18059:6962727,7166783 +g1,18059:7294681,7166783 +g1,18059:13269852,7166783 +h1,18059:13601806,7166783:0,0,0 +k1,18059:32583030,7166783:18981224 +g1,18059:32583030,7166783 +) +(1,18060:6630773,7851638:25952256,424439,106246 +h1,18060:6630773,7851638:0,0,0 +g1,18060:6962727,7851638 +g1,18060:7294681,7851638 +g1,18060:15925484,7851638 +g1,18060:16589392,7851638 +g1,18060:18581116,7851638 +g1,18060:19908932,7851638 +h1,18060:21236748,7851638:0,0,0 +k1,18060:32583029,7851638:11346281 +g1,18060:32583029,7851638 +) +] +) +g1,18062:32583029,7957884 +g1,18062:6630773,7957884 +g1,18062:6630773,7957884 +g1,18062:32583029,7957884 +g1,18062:32583029,7957884 +) +h1,18062:6630773,8154492:0,0,0 +(1,18065:6630773,17303694:25952256,9083666,0 +k1,18065:10523651,17303694:3892878 +h1,18064:10523651,17303694:0,0,0 +(1,18064:10523651,17303694:18166500,9083666,0 +(1,18064:10523651,17303694:18167376,9083688,0 +(1,18064:10523651,17303694:18167376,9083688,0 +(1,18064:10523651,17303694:0,9083688,0 +(1,18064:10523651,17303694:0,14208860,0 +(1,18064:10523651,17303694:28417720,14208860,0 +) +k1,18064:10523651,17303694:-28417720 +) +) +g1,18064:28691027,17303694 +) +) +) +g1,18065:28690151,17303694 +k1,18065:32583029,17303694:3892878 +) +v1,18072:6630773,18168774:0,393216,0 +(1,18073:6630773,21909434:25952256,4133876,0 +g1,18073:6630773,21909434 +g1,18073:6237557,21909434 +r1,18102:6368629,21909434:131072,4133876,0 +g1,18073:6567858,21909434 +g1,18073:6764466,21909434 +[1,18073:6764466,21909434:25818563,4133876,0 +(1,18073:6764466,18441251:25818563,665693,196608 +(1,18072:6764466,18441251:0,665693,196608 +r1,18102:8010564,18441251:1246098,862301,196608 +k1,18072:6764466,18441251:-1246098 +) +(1,18072:6764466,18441251:1246098,665693,196608 +) +k1,18072:8285422,18441251:274858 +k1,18072:9603351,18441251:327680 +k1,18072:11175822,18441251:274858 +k1,18072:12844631,18441251:274858 +k1,18072:14138575,18441251:274859 +k1,18072:15909620,18441251:274858 +k1,18072:16800516,18441251:274858 +k1,18072:18094459,18441251:274858 +k1,18072:20339985,18441251:274858 +k1,18072:22643838,18441251:274858 +k1,18072:25430036,18441251:274858 +k1,18072:26387780,18441251:274859 +k1,18072:28903314,18441251:274858 +k1,18072:30629794,18441251:274858 +k1,18072:31563944,18441251:274858 +k1,18072:32583029,18441251:0 +) +(1,18073:6764466,19306331:25818563,505283,134348 +k1,18072:10145890,19306331:243560 +k1,18072:11580894,19306331:243559 +k1,18072:12843539,19306331:243560 +k1,18072:14832978,19306331:243560 +k1,18072:17371609,19306331:243560 +k1,18072:18634253,19306331:243559 +k1,18072:20161008,19306331:243560 +k1,18072:21855535,19306331:243560 +k1,18072:23290539,19306331:243559 +k1,18072:26294475,19306331:243560 +k1,18072:26996132,19306331:243560 +k1,18072:27891120,19306331:243560 +k1,18072:29153764,19306331:243559 +k1,18072:30554034,19306331:243560 +k1,18072:32583029,19306331:0 +) +(1,18073:6764466,20171411:25818563,505283,134348 +k1,18072:9856673,20171411:192239 +k1,18072:12381994,20171411:192239 +k1,18072:13968183,20171411:192238 +k1,18072:15179507,20171411:192239 +k1,18072:16867933,20171411:192239 +k1,18072:18553082,20171411:192239 +k1,18072:19915794,20171411:192239 +k1,18072:21099593,20171411:192239 +k1,18072:22672675,20171411:192238 +k1,18072:24035387,20171411:192239 +k1,18072:27892399,20171411:192239 +k1,18072:29633254,20171411:192239 +k1,18072:32583029,20171411:0 +) +(1,18073:6764466,21036491:25818563,513147,134348 +k1,18072:9531497,21036491:228166 +k1,18072:10375701,21036491:228166 +k1,18072:11622952,21036491:228166 +k1,18072:13128416,21036491:228167 +k1,18072:13888079,21036491:228166 +k1,18072:16081670,21036491:228166 +k1,18072:16992721,21036491:228166 +k1,18072:20055974,21036491:228166 +k1,18072:21045668,21036491:228166 +k1,18072:22725457,21036491:228167 +k1,18072:26146537,21036491:228166 +k1,18072:29447031,21036491:228166 +k1,18072:30358082,21036491:228166 +k1,18072:32583029,21036491:0 +) +(1,18073:6764466,21901571:25818563,505283,7863 +g1,18072:7579733,21901571 +g1,18072:8798047,21901571 +g1,18072:10493463,21901571 +k1,18073:32583030,21901571:18729536 +g1,18073:32583030,21901571 +) +] +g1,18073:32583029,21909434 +) +h1,18073:6630773,21909434:0,0,0 +(1,18077:6630773,22774514:25952256,505283,134348 +h1,18076:6630773,22774514:983040,0,0 +k1,18076:8341645,22774514:257939 +k1,18076:9131080,22774514:257938 +k1,18076:12166435,22774514:257939 +k1,18076:13075802,22774514:257939 +k1,18076:14919711,22774514:257938 +k1,18076:16784593,22774514:257939 +k1,18076:18417477,22774514:257939 +k1,18076:21355838,22774514:257938 +k1,18076:23007728,22774514:257939 +k1,18076:25284176,22774514:257939 +k1,18076:29573889,22774514:257938 +k1,18076:31900144,22774514:257939 +k1,18076:32583029,22774514:0 +) +(1,18077:6630773,23639594:25952256,513147,122846 +k1,18076:9565450,23639594:244424 +k1,18076:10469166,23639594:244424 +k1,18076:14785342,23639594:244424 +k1,18076:16221211,23639594:244424 +(1,18076:16221211,23639594:0,452978,122846 +r1,18102:22206866,23639594:5985655,575824,122846 +k1,18076:16221211,23639594:-5985655 +) +(1,18076:16221211,23639594:5985655,452978,122846 +k1,18076:16221211,23639594:3277 +h1,18076:22203589,23639594:0,411205,112570 +) +k1,18076:22451290,23639594:244424 +k1,18076:25383344,23639594:244423 +k1,18076:26831009,23639594:244424 +k1,18076:28411057,23639594:244424 +k1,18076:30510150,23639594:244424 +k1,18076:31563944,23639594:244424 +k1,18076:32583029,23639594:0 +) +(1,18077:6630773,24504674:25952256,513147,134348 +k1,18076:8915712,24504674:274294 +k1,18076:11775401,24504674:274294 +k1,18076:12701123,24504674:274294 +k1,18076:13994502,24504674:274294 +(1,18076:13994502,24504674:0,414482,115847 +r1,18102:14352768,24504674:358266,530329,115847 +k1,18076:13994502,24504674:-358266 +) +(1,18076:13994502,24504674:358266,414482,115847 +k1,18076:13994502,24504674:3277 +h1,18076:14349491,24504674:0,411205,112570 +) +k1,18076:14800732,24504674:274294 +(1,18076:14800732,24504674:0,414482,115847 +r1,18102:15158998,24504674:358266,530329,115847 +k1,18076:14800732,24504674:-358266 +) +(1,18076:14800732,24504674:358266,414482,115847 +k1,18076:14800732,24504674:3277 +h1,18076:15155721,24504674:0,411205,112570 +) +k1,18076:15606962,24504674:274294 +(1,18076:15606962,24504674:0,452978,115847 +r1,18102:17020363,24504674:1413401,568825,115847 +k1,18076:15606962,24504674:-1413401 +) +(1,18076:15606962,24504674:1413401,452978,115847 +k1,18076:15606962,24504674:3277 +h1,18076:17017086,24504674:0,411205,112570 +) +k1,18076:17294657,24504674:274294 +k1,18076:18760396,24504674:274294 +(1,18076:18760396,24504674:0,414482,115847 +r1,18102:20173797,24504674:1413401,530329,115847 +k1,18076:18760396,24504674:-1413401 +) +(1,18076:18760396,24504674:1413401,414482,115847 +k1,18076:18760396,24504674:3277 +h1,18076:20170520,24504674:0,411205,112570 +) +k1,18076:20621761,24504674:274294 +k1,18076:22631448,24504674:274294 +(1,18076:22631448,24504674:0,414482,115847 +r1,18102:22989714,24504674:358266,530329,115847 +k1,18076:22631448,24504674:-358266 +) +(1,18076:22631448,24504674:358266,414482,115847 +k1,18076:22631448,24504674:3277 +h1,18076:22986437,24504674:0,411205,112570 +) +k1,18076:23264008,24504674:274294 +k1,18076:24485953,24504674:274294 +k1,18076:25779332,24504674:274294 +k1,18076:28667857,24504674:274294 +k1,18076:29601443,24504674:274294 +k1,18076:30894822,24504674:274294 +k1,18076:32583029,24504674:0 +) +(1,18077:6630773,25369754:25952256,513147,134348 +k1,18076:8041513,25369754:219295 +(1,18076:8041513,25369754:0,452978,115847 +r1,18102:9454914,25369754:1413401,568825,115847 +k1,18076:8041513,25369754:-1413401 +) +(1,18076:8041513,25369754:1413401,452978,115847 +k1,18076:8041513,25369754:3277 +h1,18076:9451637,25369754:0,411205,112570 +) +k1,18076:9674208,25369754:219294 +k1,18076:11084948,25369754:219295 +(1,18076:11084948,25369754:0,414482,115847 +r1,18102:12498349,25369754:1413401,530329,115847 +k1,18076:11084948,25369754:-1413401 +) +(1,18076:11084948,25369754:1413401,414482,115847 +k1,18076:11084948,25369754:3277 +h1,18076:12495072,25369754:0,411205,112570 +) +k1,18076:12717644,25369754:219295 +k1,18076:13884589,25369754:219294 +k1,18076:15122969,25369754:219295 +k1,18076:18286797,25369754:219295 +k1,18076:19165383,25369754:219294 +k1,18076:20403763,25369754:219295 +k1,18076:22136283,25369754:219294 +k1,18076:23014870,25369754:219295 +k1,18076:24253250,25369754:219295 +k1,18076:25641051,25369754:219294 +k1,18076:28551254,25369754:219295 +k1,18076:32583029,25369754:0 +) +(1,18077:6630773,26234834:25952256,505283,134348 +k1,18076:7284751,26234834:298118 +k1,18076:9537153,26234834:298118 +k1,18076:11185313,26234834:298118 +k1,18076:13185401,26234834:298118 +k1,18076:17074236,26234834:298118 +(1,18076:17074236,26234834:0,452978,122846 +r1,18102:21301332,26234834:4227096,575824,122846 +k1,18076:17074236,26234834:-4227096 +) +(1,18076:17074236,26234834:4227096,452978,122846 +k1,18076:17074236,26234834:3277 +h1,18076:21298055,26234834:0,411205,112570 +) +k1,18076:21599449,26234834:298117 +k1,18076:23089012,26234834:298118 +(1,18076:23089012,26234834:0,452978,122846 +r1,18102:28371243,26234834:5282231,575824,122846 +k1,18076:23089012,26234834:-5282231 +) +(1,18076:23089012,26234834:5282231,452978,122846 +k1,18076:23089012,26234834:3277 +h1,18076:28367966,26234834:0,411205,112570 +) +k1,18076:28669361,26234834:298118 +k1,18076:30553450,26234834:298118 +k1,18076:32227169,26234834:298118 +k1,18076:32583029,26234834:0 +) +(1,18077:6630773,27099914:25952256,513147,134348 +k1,18076:9547507,27099914:225826 +k1,18076:10456218,27099914:225826 +k1,18076:11037904,27099914:225826 +k1,18076:13954638,27099914:225826 +k1,18076:15574415,27099914:225826 +k1,18076:18099244,27099914:225826 +k1,18076:20011967,27099914:225826 +k1,18076:21795584,27099914:225826 +k1,18076:23012970,27099914:225826 +k1,18076:26543777,27099914:225826 +k1,18076:28282829,27099914:225826 +k1,18076:31189078,27099914:225826 +k1,18076:32583029,27099914:0 +) +(1,18077:6630773,27964994:25952256,513147,126483 +k1,18076:9536841,27964994:223679 +k1,18076:11458559,27964994:223680 +k1,18076:15190380,27964994:223679 +k1,18076:16405619,27964994:223679 +k1,18076:19858258,27964994:223680 +k1,18076:20891307,27964994:223679 +k1,18076:22134071,27964994:223679 +k1,18076:23327027,27964994:223679 +k1,18076:24622876,27964994:223680 +k1,18076:25950837,27964994:223679 +k1,18076:27460332,27964994:223679 +k1,18076:28431778,27964994:223680 +k1,18076:30168683,27964994:223679 +k1,18076:32583029,27964994:0 +) +(1,18077:6630773,28830074:25952256,513147,134348 +k1,18076:8591985,28830074:263174 +k1,18076:9874244,28830074:263174 +k1,18076:11526780,28830074:263173 +k1,18076:15298096,28830074:263174 +k1,18076:16552830,28830074:263174 +k1,18076:18854174,28830074:263174 +k1,18076:19733386,28830074:263174 +k1,18076:20352419,28830074:263173 +k1,18076:22004956,28830074:263174 +k1,18076:24144426,28830074:263174 +k1,18076:26612887,28830074:263174 +k1,18076:27562222,28830074:263173 +k1,18076:28596099,28830074:263174 +k1,18076:31931601,28830074:263174 +k1,18077:32583029,28830074:0 +) +(1,18077:6630773,29695154:25952256,452978,115847 +(1,18076:6630773,29695154:0,452978,115847 +r1,18102:8044174,29695154:1413401,568825,115847 +k1,18076:6630773,29695154:-1413401 +) +(1,18076:6630773,29695154:1413401,452978,115847 +k1,18076:6630773,29695154:3277 +h1,18076:8040897,29695154:0,411205,112570 +) +k1,18077:32583028,29695154:24365184 +g1,18077:32583028,29695154 +) +(1,18078:6630773,31811972:25952256,534184,147783 +(1,18078:6630773,31811972:2450326,534184,12975 +g1,18078:6630773,31811972 +g1,18078:9081099,31811972 +) +k1,18078:32583029,31811972:22079602 +g1,18078:32583029,31811972 +) +(1,18083:6630773,33070268:25952256,505283,134348 +k1,18081:9038616,33070268:231392 +k1,18081:10347421,33070268:231393 +k1,18081:12186411,33070268:231392 +k1,18081:13409364,33070268:231393 +k1,18081:15153982,33070268:231392 +k1,18081:16146902,33070268:231392 +k1,18081:20108604,33070268:231393 +k1,18081:22678976,33070268:231392 +k1,18081:24290556,33070268:231392 +k1,18081:25513509,33070268:231393 +k1,18081:28032108,33070268:231392 +k1,18081:29034204,33070268:231393 +k1,18081:31931601,33070268:231392 +k1,18081:32583029,33070268:0 +) +(1,18083:6630773,33935348:25952256,513147,126483 +k1,18081:8995279,33935348:195264 +k1,18081:10971813,33935348:195265 +k1,18081:12069508,33935348:195264 +k1,18081:14926190,33935348:195265 +k1,18081:15780746,33935348:195264 +k1,18081:16995096,33935348:195265 +k1,18081:18282845,33935348:195264 +k1,18081:19145266,33935348:195265 +(1,18081:19145266,33935348:0,452978,122846 +r1,18102:22668938,33935348:3523672,575824,122846 +k1,18081:19145266,33935348:-3523672 +) +(1,18081:19145266,33935348:3523672,452978,122846 +k1,18081:19145266,33935348:3277 +h1,18081:22665661,33935348:0,411205,112570 +) +k1,18081:22864202,33935348:195264 +k1,18081:25548524,33935348:195265 +k1,18081:27301579,33935348:195264 +k1,18081:29212577,33935348:195265 +k1,18081:29865938,33935348:195264 +k1,18081:31931601,33935348:195265 +k1,18081:32583029,33935348:0 +) +(1,18083:6630773,34800428:25952256,513147,138281 +g1,18081:7854985,34800428 +g1,18081:9073299,34800428 +g1,18081:13053955,34800428 +g1,18081:13912476,34800428 +g1,18081:18183457,34800428 +g1,18082:20127254,34800428 +g1,18082:21345568,34800428 +$1,18082:21345568,34800428 +$1,18082:21848229,34800428 +g1,18082:22260450,34800428 +g1,18082:23651124,34800428 +$1,18082:23651124,34800428 +$1,18082:24202937,34800428 +k1,18083:32583029,34800428:6594891 +g1,18083:32583029,34800428 +) +v1,18085:6630773,35485283:0,393216,0 +(1,18092:6630773,37880531:25952256,2788464,196608 +g1,18092:6630773,37880531 +g1,18092:6630773,37880531 +g1,18092:6434165,37880531 +(1,18092:6434165,37880531:0,2788464,196608 +r1,18102:32779637,37880531:26345472,2985072,196608 +k1,18092:6434165,37880531:-26345472 +) +(1,18092:6434165,37880531:26345472,2788464,196608 +[1,18092:6630773,37880531:25952256,2591856,0 +(1,18087:6630773,35713114:25952256,424439,112852 +(1,18086:6630773,35713114:0,0,0 +g1,18086:6630773,35713114 +g1,18086:6630773,35713114 +g1,18086:6303093,35713114 +(1,18086:6303093,35713114:0,0,0 +) +g1,18086:6630773,35713114 +) +k1,18087:6630773,35713114:0 +g1,18087:10614221,35713114 +g1,18087:11278129,35713114 +k1,18087:11278129,35713114:0 +h1,18087:13601807,35713114:0,0,0 +k1,18087:32583029,35713114:18981222 +g1,18087:32583029,35713114 +) +(1,18088:6630773,36397969:25952256,431045,112852 +h1,18088:6630773,36397969:0,0,0 +g1,18088:6962727,36397969 +g1,18088:7294681,36397969 +g1,18088:7626635,36397969 +g1,18088:7958589,36397969 +g1,18088:8290543,36397969 +g1,18088:8622497,36397969 +g1,18088:8954451,36397969 +g1,18088:10946175,36397969 +g1,18088:11610083,36397969 +g1,18088:13601807,36397969 +g1,18088:14265715,36397969 +g1,18088:14929623,36397969 +g1,18088:16589393,36397969 +g1,18088:18581117,36397969 +g1,18088:19245025,36397969 +g1,18088:23892381,36397969 +h1,18088:24224335,36397969:0,0,0 +k1,18088:32583029,36397969:8358694 +g1,18088:32583029,36397969 +) +(1,18089:6630773,37082824:25952256,424439,112852 +h1,18089:6630773,37082824:0,0,0 +g1,18089:6962727,37082824 +g1,18089:7294681,37082824 +g1,18089:11610082,37082824 +h1,18089:11942036,37082824:0,0,0 +k1,18089:32583028,37082824:20640992 +g1,18089:32583028,37082824 +) +(1,18090:6630773,37767679:25952256,424439,112852 +h1,18090:6630773,37767679:0,0,0 +g1,18090:6962727,37767679 +g1,18090:7294681,37767679 +k1,18090:7294681,37767679:0 +h1,18090:10614220,37767679:0,0,0 +k1,18090:32583028,37767679:21968808 +g1,18090:32583028,37767679 +) +] +) +g1,18092:32583029,37880531 +g1,18092:6630773,37880531 +g1,18092:6630773,37880531 +g1,18092:32583029,37880531 +g1,18092:32583029,37880531 +) +h1,18092:6630773,38077139:0,0,0 +] +(1,18102:32583029,45706769:0,0,0 +g1,18102:32583029,45706769 +) +) +] +(1,18102:6630773,47279633:25952256,0,0 +h1,18102:6630773,47279633:25952256,0,0 +) +] +(1,18102:4262630,4025873:0,0,0 +[1,18102:-473656,4025873:0,0,0 +(1,18102:-473656,-710413:0,0,0 +(1,18102:-473656,-710413:0,0,0 +g1,18102:-473656,-710413 +) +g1,18102:-473656,-710413 +) +] +) +] +!19505 +}298 +Input:2702:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2703:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2704:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2705:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2706:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2707:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2708:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2709:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2710:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2711:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2712:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2713:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2714:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2715:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2716:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2717:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -309538,2711 +307426,2965 @@ Input:2718:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConso Input:2719:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2720:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2721:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!670 -{316 -[1,18040:4262630,47279633:28320399,43253760,0 -(1,18040:4262630,4025873:0,0,0 -[1,18040:-473656,4025873:0,0,0 -(1,18040:-473656,-710413:0,0,0 -(1,18040:-473656,-644877:0,0,0 -k1,18040:-473656,-644877:-65536 +Input:2722:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2723:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2724:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2725:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!2268 +{299 +[1,18131:4262630,47279633:28320399,43253760,0 +(1,18131:4262630,4025873:0,0,0 +[1,18131:-473656,4025873:0,0,0 +(1,18131:-473656,-710413:0,0,0 +(1,18131:-473656,-644877:0,0,0 +k1,18131:-473656,-644877:-65536 ) -(1,18040:-473656,4736287:0,0,0 -k1,18040:-473656,4736287:5209943 +(1,18131:-473656,4736287:0,0,0 +k1,18131:-473656,4736287:5209943 ) -g1,18040:-473656,-710413 +g1,18131:-473656,-710413 ) ] ) -[1,18040:6630773,47279633:25952256,43253760,0 -[1,18040:6630773,4812305:25952256,786432,0 -(1,18040:6630773,4812305:25952256,485622,11795 -(1,18040:6630773,4812305:25952256,485622,11795 -g1,18040:3078558,4812305 -[1,18040:3078558,4812305:0,0,0 -(1,18040:3078558,2439708:0,1703936,0 -k1,18040:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,18040:2537886,2439708:1179648,16384,0 +[1,18131:6630773,47279633:25952256,43253760,0 +[1,18131:6630773,4812305:25952256,786432,0 +(1,18131:6630773,4812305:25952256,513147,126483 +(1,18131:6630773,4812305:25952256,513147,126483 +g1,18131:3078558,4812305 +[1,18131:3078558,4812305:0,0,0 +(1,18131:3078558,2439708:0,1703936,0 +k1,18131:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,18131:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,18040:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,18131:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,18040:3078558,4812305:0,0,0 -(1,18040:3078558,2439708:0,1703936,0 -g1,18040:29030814,2439708 -g1,18040:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,18040:36151628,1915420:16384,1179648,0 +[1,18131:3078558,4812305:0,0,0 +(1,18131:3078558,2439708:0,1703936,0 +g1,18131:29030814,2439708 +g1,18131:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,18131:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,18040:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,18131:37855564,2439708:1179648,16384,0 ) ) -k1,18040:3078556,2439708:-34777008 +k1,18131:3078556,2439708:-34777008 ) ] -[1,18040:3078558,4812305:0,0,0 -(1,18040:3078558,49800853:0,16384,2228224 -k1,18040:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,18040:2537886,49800853:1179648,16384,0 +[1,18131:3078558,4812305:0,0,0 +(1,18131:3078558,49800853:0,16384,2228224 +k1,18131:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,18131:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,18040:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,18131:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,18040:3078558,4812305:0,0,0 -(1,18040:3078558,49800853:0,16384,2228224 -g1,18040:29030814,49800853 -g1,18040:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,18040:36151628,51504789:16384,1179648,0 +[1,18131:3078558,4812305:0,0,0 +(1,18131:3078558,49800853:0,16384,2228224 +g1,18131:29030814,49800853 +g1,18131:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,18131:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,18040:37855564,49800853:1179648,16384,0 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,18131:37855564,49800853:1179648,16384,0 ) ) -k1,18040:3078556,49800853:-34777008 +k1,18131:3078556,49800853:-34777008 ) ] -g1,18040:6630773,4812305 -g1,18040:6630773,4812305 -g1,18040:10347975,4812305 -k1,18040:31387651,4812305:21039676 +g1,18131:6630773,4812305 +k1,18131:21350816,4812305:13524666 +g1,18131:21999622,4812305 +g1,18131:25611966,4812305 +g1,18131:28956923,4812305 +g1,18131:29772190,4812305 ) ) ] -[1,18040:6630773,45706769:25952256,40108032,0 -(1,18040:6630773,45706769:25952256,40108032,0 -(1,18040:6630773,45706769:0,0,0 -g1,18040:6630773,45706769 -) -[1,18040:6630773,45706769:25952256,40108032,0 -(1,17987:6630773,14682403:25952256,9083666,0 -k1,17987:10523651,14682403:3892878 -h1,17986:10523651,14682403:0,0,0 -(1,17986:10523651,14682403:18166500,9083666,0 -(1,17986:10523651,14682403:18167376,9083688,0 -(1,17986:10523651,14682403:18167376,9083688,0 -(1,17986:10523651,14682403:0,9083688,0 -(1,17986:10523651,14682403:0,14208860,0 -(1,17986:10523651,14682403:28417720,14208860,0 -) -k1,17986:10523651,14682403:-28417720 -) +[1,18131:6630773,45706769:25952256,40108032,0 +(1,18131:6630773,45706769:25952256,40108032,0 +(1,18131:6630773,45706769:0,0,0 +g1,18131:6630773,45706769 ) -g1,17986:28691027,14682403 -) -) -) -g1,17987:28690151,14682403 -k1,17987:32583029,14682403:3892878 -) -v1,17994:6630773,16048179:0,393216,0 -(1,17995:6630773,18290176:25952256,2635213,0 -g1,17995:6630773,18290176 -g1,17995:6303093,18290176 -r1,18040:6401397,18290176:98304,2635213,0 -g1,17995:6600626,18290176 -g1,17995:6797234,18290176 -[1,17995:6797234,18290176:25785795,2635213,0 -(1,17995:6797234,16480717:25785795,825754,196608 -(1,17994:6797234,16480717:0,825754,196608 -r1,18040:7890375,16480717:1093141,1022362,196608 -k1,17994:6797234,16480717:-1093141 -) -(1,17994:6797234,16480717:1093141,825754,196608 -) -k1,17994:8091524,16480717:201149 -k1,17994:9817742,16480717:327680 -k1,17994:12381463,16480717:201148 -k1,17994:13601697,16480717:201149 -k1,17994:15542171,16480717:201148 -k1,17994:16402612,16480717:201149 -k1,17994:17622845,16480717:201148 -k1,17994:19478778,16480717:201149 -k1,17994:21568019,16480717:201149 -k1,17994:22385205,16480717:201148 -k1,17994:23605439,16480717:201149 -k1,17994:26468004,16480717:201148 -k1,17994:28698148,16480717:201149 -k1,17994:30320117,16480717:201148 -k1,17994:31563944,16480717:201149 -k1,17994:32583029,16480717:0 -) -(1,17995:6797234,17322205:25785795,513147,134348 -k1,17994:8837107,17322205:184549 -k1,17994:11589358,17322205:184550 -k1,17994:13407720,17322205:184549 -k1,17994:15331595,17322205:184549 -k1,17994:16047641,17322205:184549 -k1,17994:17894184,17322205:184550 -k1,17994:20120179,17322205:184549 -k1,17994:21323813,17322205:184549 -k1,17994:23161835,17322205:184549 -k1,17994:25085711,17322205:184550 -k1,17994:26018026,17322205:184549 -k1,17994:27221660,17322205:184549 -k1,17994:28741177,17322205:184549 -k1,17994:29873378,17322205:184550 -k1,17994:30413787,17322205:184549 -k1,17994:32583029,17322205:0 -) -(1,17995:6797234,18163693:25785795,505283,126483 -g1,17994:8600784,18163693 -g1,17994:10123185,18163693 -g1,17994:12278664,18163693 -g1,17994:12935990,18163693 -g1,17994:13882985,18163693 -g1,17994:17191242,18163693 -g1,17994:18041899,18163693 -g1,17994:19438471,18163693 -g1,17994:20810139,18163693 -(1,17994:20810139,18163693:0,452978,122846 -r1,18040:25037235,18163693:4227096,575824,122846 -k1,17994:20810139,18163693:-4227096 -) -(1,17994:20810139,18163693:4227096,452978,122846 -k1,17994:20810139,18163693:3277 -h1,17994:25033958,18163693:0,411205,112570 -) -g1,17994:25236464,18163693 -k1,17995:32583029,18163693:5131448 -g1,17995:32583029,18163693 -) -] -g1,17995:32583029,18290176 -) -h1,17995:6630773,18290176:0,0,0 -(1,17999:6630773,20905724:25952256,555811,12975 -(1,17999:6630773,20905724:2450326,534184,12975 -g1,17999:6630773,20905724 -g1,17999:9081099,20905724 -) -k1,17999:32583029,20905724:20670250 -g1,17999:32583029,20905724 -) -(1,18004:6630773,22140428:25952256,505283,134348 -k1,18003:8040871,22140428:213411 -k1,18003:11261728,22140428:213410 -(1,18003:11261728,22140428:0,452978,122846 -r1,18040:14785400,22140428:3523672,575824,122846 -k1,18003:11261728,22140428:-3523672 -) -(1,18003:11261728,22140428:3523672,452978,122846 -k1,18003:11261728,22140428:3277 -h1,18003:14782123,22140428:0,411205,112570 -) -k1,18003:14998811,22140428:213411 -k1,18003:16316503,22140428:213410 -k1,18003:17277680,22140428:213411 -k1,18003:19004316,22140428:213410 -k1,18003:19869155,22140428:213411 -k1,18003:22011945,22140428:213410 -k1,18003:24545986,22140428:213411 -k1,18003:26258205,22140428:213410 -k1,18003:28390510,22140428:213411 -k1,18003:30055542,22140428:213410 -k1,18003:31313597,22140428:213411 -k1,18004:32583029,22140428:0 -) -(1,18004:6630773,22981916:25952256,505283,7863 -g1,18003:9145389,22981916 -g1,18003:10115321,22981916 -g1,18003:14056000,22981916 -g1,18003:14938114,22981916 -g1,18003:16504424,22981916 -g1,18003:17319691,22981916 -g1,18003:18538005,22981916 -k1,18004:32583029,22981916:12481990 -g1,18004:32583029,22981916 -) -v1,18006:6630773,24347692:0,393216,0 -(1,18007:6630773,27415586:25952256,3461110,0 -g1,18007:6630773,27415586 -g1,18007:6303093,27415586 -r1,18040:6401397,27415586:98304,3461110,0 -g1,18007:6600626,27415586 -g1,18007:6797234,27415586 -[1,18007:6797234,27415586:25785795,3461110,0 -(1,18007:6797234,24768276:25785795,813800,267386 -(1,18006:6797234,24768276:0,813800,267386 -r1,18040:8134168,24768276:1336934,1081186,267386 -k1,18006:6797234,24768276:-1336934 -) -(1,18006:6797234,24768276:1336934,813800,267386 -) -k1,18006:8277545,24768276:143377 -k1,18006:8605225,24768276:327680 -k1,18006:9163389,24768276:143321 -k1,18006:11017911,24768276:143377 -k1,18006:12227559,24768276:143377 -k1,18006:14863270,24768276:143377 -k1,18006:15971992,24768276:143377 -k1,18006:17509320,24768276:143377 -k1,18006:20481230,24768276:143377 -k1,18006:21616166,24768276:143376 -k1,18006:25064524,24768276:143377 -k1,18006:28250082,24768276:143377 -k1,18006:29154987,24768276:143377 -k1,18006:30317449,24768276:143377 -k1,18006:32583029,24768276:0 -) -(1,18007:6797234,25609764:25785795,513147,134348 -k1,18006:9834427,25609764:277472 -k1,18006:10779054,25609764:277471 -(1,18006:10779054,25609764:0,452978,122846 -r1,18040:14302726,25609764:3523672,575824,122846 -k1,18006:10779054,25609764:-3523672 -) -(1,18006:10779054,25609764:3523672,452978,122846 -k1,18006:10779054,25609764:3277 -h1,18006:14299449,25609764:0,411205,112570 -) -k1,18006:14580198,25609764:277472 -k1,18006:15543831,25609764:277471 -k1,18006:16279400,25609764:277472 -k1,18006:17979658,25609764:277471 -(1,18006:17979658,25609764:0,452978,115847 -r1,18040:22206754,25609764:4227096,568825,115847 -k1,18006:17979658,25609764:-4227096 -) -(1,18006:17979658,25609764:4227096,452978,115847 -k1,18006:17979658,25609764:3277 -h1,18006:22203477,25609764:0,411205,112570 -) -k1,18006:22484226,25609764:277472 -k1,18006:23413125,25609764:277471 -k1,18006:26310726,25609764:277472 -k1,18006:26944057,25609764:277471 -k1,18006:30631367,25609764:277472 -k1,18006:32583029,25609764:0 -) -(1,18007:6797234,26451252:25785795,505283,134348 -k1,18006:8459796,26451252:220115 -k1,18006:11204359,26451252:220116 -k1,18006:13435119,26451252:220115 -k1,18006:14341396,26451252:220115 -k1,18006:15093009,26451252:220116 -k1,18006:16545201,26451252:220115 -k1,18006:19044003,26451252:220115 -h1,18006:20586721,26451252:0,0,0 -k1,18006:20806836,26451252:220115 -k1,18006:21836322,26451252:220116 -k1,18006:23554590,26451252:220115 -h1,18006:24749967,26451252:0,0,0 -k1,18006:25350846,26451252:220115 -(1,18006:25350846,26451252:0,452978,122846 -r1,18040:28874518,26451252:3523672,575824,122846 -k1,18006:25350846,26451252:-3523672 -) -(1,18006:25350846,26451252:3523672,452978,122846 -k1,18006:25350846,26451252:3277 -h1,18006:28871241,26451252:0,411205,112570 -) -k1,18006:29094634,26451252:220116 -k1,18006:29846246,26451252:220115 -k1,18006:32583029,26451252:0 -) -(1,18007:6797234,27292740:25785795,513147,122846 -g1,18006:7647891,27292740 -(1,18006:7647891,27292740:0,452978,122846 -r1,18040:11171563,27292740:3523672,575824,122846 -k1,18006:7647891,27292740:-3523672 -) -(1,18006:7647891,27292740:3523672,452978,122846 -k1,18006:7647891,27292740:3277 -h1,18006:11168286,27292740:0,411205,112570 -) -g1,18006:11370792,27292740 -g1,18006:12642190,27292740 -g1,18006:14235370,27292740 -(1,18006:14235370,27292740:0,452978,115847 -r1,18040:17759042,27292740:3523672,568825,115847 -k1,18006:14235370,27292740:-3523672 -) -(1,18006:14235370,27292740:3523672,452978,115847 -k1,18006:14235370,27292740:3277 -h1,18006:17755765,27292740:0,411205,112570 -) -g1,18006:17958271,27292740 -g1,18006:18843662,27292740 -g1,18006:20061976,27292740 -g1,18006:22526785,27292740 -k1,18007:32583029,27292740:7359437 -g1,18007:32583029,27292740 -) -] -g1,18007:32583029,27415586 -) -h1,18007:6630773,27415586:0,0,0 -(1,18010:6630773,28781362:25952256,513147,126483 -h1,18009:6630773,28781362:983040,0,0 -k1,18009:8840345,28781362:272983 -k1,18009:11042707,28781362:272982 -k1,18009:13944339,28781362:272983 -k1,18009:15606685,28781362:272983 -k1,18009:17164173,28781362:272982 -k1,18009:18305508,28781362:272983 -k1,18009:19710953,28781362:272983 -k1,18009:21712120,28781362:272983 -k1,18009:22601140,28781362:272982 -k1,18009:25545370,28781362:272983 -k1,18009:28974567,28781362:272983 -k1,18009:29906841,28781362:272982 -k1,18009:31198909,28781362:272983 -k1,18009:32583029,28781362:0 -) -(1,18010:6630773,29622850:25952256,513147,134348 -k1,18010:32583028,29622850:23923260 -g1,18010:32583028,29622850 -) -v1,18012:6630773,30813316:0,393216,0 -(1,18019:6630773,33101780:25952256,2681680,196608 -g1,18019:6630773,33101780 -g1,18019:6630773,33101780 -g1,18019:6434165,33101780 -(1,18019:6434165,33101780:0,2681680,196608 -r1,18040:32779637,33101780:26345472,2878288,196608 -k1,18019:6434165,33101780:-26345472 -) -(1,18019:6434165,33101780:26345472,2681680,196608 -[1,18019:6630773,33101780:25952256,2485072,0 -(1,18014:6630773,31020934:25952256,404226,76021 -(1,18013:6630773,31020934:0,0,0 -g1,18013:6630773,31020934 -g1,18013:6630773,31020934 -g1,18013:6303093,31020934 -(1,18013:6303093,31020934:0,0,0 -) -g1,18013:6630773,31020934 -) -k1,18014:6630773,31020934:0 -h1,18014:11689104,31020934:0,0,0 -k1,18014:32583028,31020934:20893924 -g1,18014:32583028,31020934 -) -(1,18015:6630773,31687112:25952256,410518,101187 -h1,18015:6630773,31687112:0,0,0 -g1,18015:10424521,31687112 -g1,18015:11372959,31687112 -g1,18015:18012019,31687112 -g1,18015:18644311,31687112 -g1,18015:24334935,31687112 -g1,18015:25915664,31687112 -g1,18015:27812539,31687112 -k1,18015:27812539,31687112:0 -h1,18015:29077122,31687112:0,0,0 -k1,18015:32583029,31687112:3505907 -g1,18015:32583029,31687112 -) -(1,18016:6630773,32353290:25952256,410518,107478 -h1,18016:6630773,32353290:0,0,0 -g1,18016:6946919,32353290 -g1,18016:7263065,32353290 -g1,18016:7579211,32353290 -g1,18016:7895357,32353290 -g1,18016:8211503,32353290 -g1,18016:8527649,32353290 -g1,18016:8843795,32353290 -g1,18016:9159941,32353290 -g1,18016:9476087,32353290 -g1,18016:9792233,32353290 -g1,18016:10108379,32353290 -g1,18016:10424525,32353290 -g1,18016:10740671,32353290 -g1,18016:11056817,32353290 -g1,18016:11372963,32353290 -g1,18016:11689109,32353290 -g1,18016:12005255,32353290 -g1,18016:12321401,32353290 -g1,18016:12637547,32353290 -g1,18016:12953693,32353290 -g1,18016:13269839,32353290 -g1,18016:13585985,32353290 -g1,18016:13902131,32353290 -g1,18016:14218277,32353290 -g1,18016:14534423,32353290 -g1,18016:14850569,32353290 -g1,18016:16747443,32353290 -g1,18016:17379735,32353290 -g1,18016:24018796,32353290 -g1,18016:27496399,32353290 -g1,18016:29077129,32353290 -k1,18016:29077129,32353290:0 -h1,18016:30657858,32353290:0,0,0 -k1,18016:32583029,32353290:1925171 -g1,18016:32583029,32353290 -) -(1,18017:6630773,33019468:25952256,404226,82312 -h1,18017:6630773,33019468:0,0,0 -g1,18017:6946919,33019468 -g1,18017:7263065,33019468 -g1,18017:7579211,33019468 -g1,18017:7895357,33019468 -g1,18017:8211503,33019468 -g1,18017:8527649,33019468 -g1,18017:8843795,33019468 -g1,18017:9159941,33019468 -g1,18017:9476087,33019468 -g1,18017:9792233,33019468 -g1,18017:10108379,33019468 -g1,18017:10424525,33019468 -g1,18017:10740671,33019468 -g1,18017:11056817,33019468 -g1,18017:11372963,33019468 -g1,18017:11689109,33019468 -g1,18017:12005255,33019468 -g1,18017:12321401,33019468 -g1,18017:12637547,33019468 -g1,18017:12953693,33019468 -g1,18017:13269839,33019468 -g1,18017:13585985,33019468 -g1,18017:13902131,33019468 -g1,18017:14218277,33019468 -g1,18017:14534423,33019468 -g1,18017:14850569,33019468 -g1,18017:18644317,33019468 -g1,18017:19276609,33019468 -g1,18017:22121921,33019468 -g1,18017:22754213,33019468 -g1,18017:24967234,33019468 -g1,18017:25915672,33019468 -h1,18017:26864109,33019468:0,0,0 -k1,18017:32583029,33019468:5718920 -g1,18017:32583029,33019468 -) -] -) -g1,18019:32583029,33101780 -g1,18019:6630773,33101780 -g1,18019:6630773,33101780 -g1,18019:32583029,33101780 -g1,18019:32583029,33101780 -) -h1,18019:6630773,33298388:0,0,0 -(1,18023:6630773,34664164:25952256,513147,134348 -h1,18022:6630773,34664164:983040,0,0 -k1,18022:9307213,34664164:257506 -k1,18022:10433071,34664164:257506 -k1,18022:11967874,34664164:257506 -k1,18022:13614743,34664164:257506 -k1,18022:14819900,34664164:257506 -k1,18022:17548113,34664164:257506 -k1,18022:19354889,34664164:257505 -k1,18022:21347788,34664164:257506 -k1,18022:24201175,34664164:257506 -k1,18022:25406332,34664164:257506 -k1,18022:26429954,34664164:257506 -k1,18022:29751924,34664164:257506 -k1,18022:32080368,34664164:257506 -$1,18022:32080368,34664164 -$1,18022:32583029,34664164 -k1,18023:32583029,34664164:0 -) -(1,18023:6630773,35505652:25952256,505283,138281 -g1,18022:8021447,35505652 -$1,18022:8021447,35505652 -$1,18022:8573260,35505652 -g1,18022:8772489,35505652 -g1,18022:10857189,35505652 -g1,18022:11924770,35505652 -g1,18022:15021346,35505652 -g1,18022:16617147,35505652 -g1,18022:17467804,35505652 -k1,18023:32583029,35505652:12099914 -g1,18023:32583029,35505652 -) -v1,18025:6630773,36696118:0,393216,0 -(1,18031:6630773,38349862:25952256,2046960,196608 -g1,18031:6630773,38349862 -g1,18031:6630773,38349862 -g1,18031:6434165,38349862 -(1,18031:6434165,38349862:0,2046960,196608 -r1,18040:32779637,38349862:26345472,2243568,196608 -k1,18031:6434165,38349862:-26345472 -) -(1,18031:6434165,38349862:26345472,2046960,196608 -[1,18031:6630773,38349862:25952256,1850352,0 -(1,18027:6630773,36910028:25952256,410518,107478 -(1,18026:6630773,36910028:0,0,0 -g1,18026:6630773,36910028 -g1,18026:6630773,36910028 -g1,18026:6303093,36910028 -(1,18026:6303093,36910028:0,0,0 -) -g1,18026:6630773,36910028 -) -k1,18027:6630773,36910028:0 -g1,18027:15166707,36910028 -g1,18027:17063581,36910028 -g1,18027:18012018,36910028 -k1,18027:18012018,36910028:0 -h1,18027:21173475,36910028:0,0,0 -k1,18027:32583029,36910028:11409554 -g1,18027:32583029,36910028 -) -(1,18028:6630773,37576206:25952256,404226,101187 -h1,18028:6630773,37576206:0,0,0 -g1,18028:6946919,37576206 -g1,18028:7263065,37576206 -g1,18028:7579211,37576206 -g1,18028:7895357,37576206 -g1,18028:8211503,37576206 -g1,18028:8527649,37576206 -g1,18028:8843795,37576206 -g1,18028:10740670,37576206 -g1,18028:11372962,37576206 -g1,18028:14850565,37576206 -g1,18028:15482857,37576206 -g1,18028:16115149,37576206 -g1,18028:20541189,37576206 -h1,18028:20857335,37576206:0,0,0 -k1,18028:32583029,37576206:11725694 -g1,18028:32583029,37576206 -) -(1,18029:6630773,38242384:25952256,404226,107478 -h1,18029:6630773,38242384:0,0,0 -g1,18029:6946919,38242384 -g1,18029:7263065,38242384 -g1,18029:7579211,38242384 -k1,18029:7579211,38242384:0 -h1,18029:10740667,38242384:0,0,0 -k1,18029:32583029,38242384:21842362 -g1,18029:32583029,38242384 -) -] -) -g1,18031:32583029,38349862 -g1,18031:6630773,38349862 -g1,18031:6630773,38349862 -g1,18031:32583029,38349862 -g1,18031:32583029,38349862 -) -h1,18031:6630773,38546470:0,0,0 -] -(1,18040:32583029,45706769:0,0,0 -g1,18040:32583029,45706769 -) -) -] -(1,18040:6630773,47279633:25952256,0,0 -h1,18040:6630773,47279633:25952256,0,0 -) -] -(1,18040:4262630,4025873:0,0,0 -[1,18040:-473656,4025873:0,0,0 -(1,18040:-473656,-710413:0,0,0 -(1,18040:-473656,-710413:0,0,0 -g1,18040:-473656,-710413 -) -g1,18040:-473656,-710413 -) -] -) -] -!18179 -}316 -Input:2722:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2723:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2724:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2725:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +[1,18131:6630773,45706769:25952256,40108032,0 +(1,18095:6630773,14682403:25952256,9083666,0 +k1,18095:10523651,14682403:3892878 +h1,18094:10523651,14682403:0,0,0 +(1,18094:10523651,14682403:18166500,9083666,0 +(1,18094:10523651,14682403:18167376,9083688,0 +(1,18094:10523651,14682403:18167376,9083688,0 +(1,18094:10523651,14682403:0,9083688,0 +(1,18094:10523651,14682403:0,14208860,0 +(1,18094:10523651,14682403:28417720,14208860,0 +) +k1,18094:10523651,14682403:-28417720 +) +) +g1,18094:28691027,14682403 +) +) +) +g1,18095:28690151,14682403 +k1,18095:32583029,14682403:3892878 +) +v1,18102:6630773,15547483:0,393216,0 +(1,18103:6630773,20360543:25952256,5206276,0 +g1,18103:6630773,20360543 +g1,18103:6237557,20360543 +r1,18131:6368629,20360543:131072,5206276,0 +g1,18103:6567858,20360543 +g1,18103:6764466,20360543 +[1,18103:6764466,20360543:25818563,5206276,0 +(1,18103:6764466,15908660:25818563,754393,260573 +(1,18102:6764466,15908660:0,754393,260573 +r1,18131:8010564,15908660:1246098,1014966,260573 +k1,18102:6764466,15908660:-1246098 +) +(1,18102:6764466,15908660:1246098,754393,260573 +) +k1,18102:8218716,15908660:208152 +k1,18102:8546396,15908660:327680 +k1,18102:9988591,15908660:208152 +k1,18102:11804341,15908660:208152 +k1,18102:13004052,15908660:208151 +k1,18102:14813904,15908660:208152 +k1,18102:16999277,15908660:208152 +k1,18102:18905467,15908660:208152 +k1,18102:20132704,15908660:208152 +k1,18102:21835077,15908660:208152 +k1,18102:24375655,15908660:208152 +k1,18102:25243098,15908660:208151 +k1,18102:29523002,15908660:208152 +k1,18102:30262651,15908660:208152 +k1,18102:31537074,15908660:208152 +k1,18102:32583029,15908660:0 +) +(1,18103:6764466,16773740:25818563,505283,134348 +k1,18102:8633016,16773740:289788 +k1,18102:12024624,16773740:289789 +k1,18102:13722125,16773740:289788 +k1,18102:16455095,16773740:289788 +k1,18102:17790838,16773740:289788 +k1,18102:20951759,16773740:289789 +k1,18102:22432992,16773740:289788 +k1,18102:23741865,16773740:289788 +k1,18102:25409220,16773740:289788 +k1,18102:28413510,16773740:289789 +k1,18102:30040232,16773740:289788 +k1,18102:32583029,16773740:0 +) +(1,18103:6764466,17638820:25818563,505283,134348 +k1,18102:8781664,17638820:233963 +k1,18102:11384754,17638820:233963 +k1,18102:12150215,17638820:233964 +k1,18102:15588889,17638820:233963 +k1,18102:18181493,17638820:233963 +k1,18102:19434541,17638820:233963 +k1,18102:22689714,17638820:233963 +k1,18102:28152796,17638820:233964 +k1,18102:29148287,17638820:233963 +k1,18102:31563944,17638820:233963 +k1,18103:32583029,17638820:0 +) +(1,18103:6764466,18503900:25818563,505283,115847 +(1,18102:6764466,18503900:0,452978,115847 +r1,18131:8529579,18503900:1765113,568825,115847 +k1,18102:6764466,18503900:-1765113 +) +(1,18102:6764466,18503900:1765113,452978,115847 +k1,18102:6764466,18503900:3277 +h1,18102:8526302,18503900:0,411205,112570 +) +k1,18102:8787874,18503900:258295 +k1,18102:11890432,18503900:258295 +k1,18102:12800155,18503900:258295 +k1,18102:13414310,18503900:258295 +k1,18102:16430360,18503900:258295 +k1,18102:18368998,18503900:258295 +k1,18102:20979381,18503900:258296 +k1,18102:22680123,18503900:258295 +k1,18102:24268799,18503900:258295 +k1,18102:25631376,18503900:258295 +k1,18102:27605404,18503900:258295 +k1,18102:28882784,18503900:258295 +k1,18102:31966991,18503900:258295 +k1,18102:32583029,18503900:0 +) +(1,18103:6764466,19368980:25818563,513147,134348 +k1,18102:9310718,19368980:213826 +k1,18102:11394942,19368980:213826 +k1,18102:12260196,19368980:213826 +k1,18102:15975611,19368980:213826 +k1,18102:17972672,19368980:213826 +k1,18102:19205582,19368980:213825 +k1,18102:21905189,19368980:213826 +k1,18102:22778307,19368980:213826 +k1,18102:27063885,19368980:213826 +k1,18102:27809208,19368980:213826 +k1,18102:29767602,19368980:213826 +k1,18102:32583029,19368980:0 +) +(1,18103:6764466,20234060:25818563,513147,126483 +g1,18102:9296121,20234060 +g1,18102:11102948,20234060 +g1,18102:13482560,20234060 +g1,18102:14429555,20234060 +k1,18103:32583029,20234060:14966458 +g1,18103:32583029,20234060 +) +] +g1,18103:32583029,20360543 +) +h1,18103:6630773,20360543:0,0,0 +(1,18106:6630773,22477361:25952256,555811,12975 +(1,18106:6630773,22477361:2450326,534184,12975 +g1,18106:6630773,22477361 +g1,18106:9081099,22477361 +) +g1,18106:10837923,22477361 +g1,18106:12405151,22477361 +k1,18106:32583029,22477361:18638044 +g1,18106:32583029,22477361 +) +(1,18110:6630773,23735657:25952256,513147,126483 +k1,18109:7927114,23735657:254319 +k1,18109:9349940,23735657:254319 +k1,18109:11211857,23735657:254319 +k1,18109:12334528,23735657:254319 +k1,18109:13681331,23735657:254318 +(1,18109:13681331,23735657:0,452978,122846 +r1,18131:17556715,23735657:3875384,575824,122846 +k1,18109:13681331,23735657:-3875384 +) +(1,18109:13681331,23735657:3875384,452978,122846 +k1,18109:13681331,23735657:3277 +h1,18109:17553438,23735657:0,411205,112570 +) +k1,18109:17984704,23735657:254319 +k1,18109:19435710,23735657:254319 +(1,18109:19435710,23735657:0,452978,115847 +r1,18131:20849111,23735657:1413401,568825,115847 +k1,18109:19435710,23735657:-1413401 +) +(1,18109:19435710,23735657:1413401,452978,115847 +k1,18109:19435710,23735657:3277 +h1,18109:20845834,23735657:0,411205,112570 +) +k1,18109:21103430,23735657:254319 +k1,18109:22017041,23735657:254319 +k1,18109:22627220,23735657:254319 +k1,18109:24050046,23735657:254319 +k1,18109:24835862,23735657:254319 +k1,18109:25878578,23735657:254318 +k1,18109:29328432,23735657:254319 +k1,18109:30774196,23735657:254319 +k1,18109:31714677,23735657:254319 +k1,18109:32583029,23735657:0 +) +(1,18110:6630773,24600737:25952256,513147,126483 +k1,18109:8092287,24600737:270069 +(1,18109:8092287,24600737:0,452978,115847 +r1,18131:9857400,24600737:1765113,568825,115847 +k1,18109:8092287,24600737:-1765113 +) +(1,18109:8092287,24600737:1765113,452978,115847 +k1,18109:8092287,24600737:3277 +h1,18109:9854123,24600737:0,411205,112570 +) +k1,18109:10127469,24600737:270069 +k1,18109:11345188,24600737:270068 +k1,18109:13807436,24600737:270069 +k1,18109:14945857,24600737:270069 +k1,18109:16691141,24600737:270069 +(1,18109:16691141,24600737:0,452978,115847 +r1,18131:19511390,24600737:2820249,568825,115847 +k1,18109:16691141,24600737:-2820249 +) +(1,18109:16691141,24600737:2820249,452978,115847 +k1,18109:16691141,24600737:3277 +h1,18109:19508113,24600737:0,411205,112570 +) +k1,18109:19781459,24600737:270069 +k1,18109:20999178,24600737:270068 +k1,18109:22941726,24600737:270069 +k1,18109:23839630,24600737:270069 +k1,18109:24465559,24600737:270069 +k1,18109:25904134,24600737:270068 +k1,18109:27625170,24600737:270069 +k1,18109:31966991,24600737:270069 +k1,18109:32583029,24600737:0 +) +(1,18110:6630773,25465817:25952256,513147,134348 +k1,18109:10226229,25465817:269504 +k1,18109:12029931,25465817:269504 +k1,18109:12958727,25465817:269504 +k1,18109:14247317,25465817:269505 +k1,18109:15906184,25465817:269504 +k1,18109:18225654,25465817:269504 +k1,18109:19178043,25465817:269504 +k1,18109:20466632,25465817:269504 +k1,18109:22816249,25465817:269504 +k1,18109:27709319,25465817:269505 +k1,18109:28630251,25465817:269504 +k1,18109:29255615,25465817:269504 +k1,18109:31591469,25465817:269504 +k1,18109:32583029,25465817:0 +) +(1,18110:6630773,26330897:25952256,513147,134348 +k1,18109:8803466,26330897:167291 +k1,18109:9732285,26330897:167291 +k1,18109:12378147,26330897:167290 +k1,18109:14217917,26330897:167291 +k1,18109:15338757,26330897:167291 +k1,18109:16598533,26330897:167291 +k1,18109:17121684,26330897:167291 +k1,18109:20051317,26330897:167290 +k1,18109:21607971,26330897:167291 +k1,18109:22709805,26330897:167291 +k1,18109:25635506,26330897:167291 +k1,18109:26418835,26330897:167291 +k1,18109:27174638,26330897:167290 +(1,18109:27174638,26330897:0,414482,122846 +r1,18131:29291463,26330897:2116825,537328,122846 +k1,18109:27174638,26330897:-2116825 +) +(1,18109:27174638,26330897:2116825,414482,122846 +k1,18109:27174638,26330897:3277 +h1,18109:29288186,26330897:0,411205,112570 +) +k1,18109:29632424,26330897:167291 +k1,18109:31193666,26330897:167291 +k1,18109:32583029,26330897:0 +) +(1,18110:6630773,27195977:25952256,513147,134348 +g1,18109:7639372,27195977 +g1,18109:8857686,27195977 +g1,18109:11306766,27195977 +g1,18109:12165287,27195977 +g1,18109:13499600,27195977 +g1,18109:15873969,27195977 +g1,18109:17817111,27195977 +g1,18109:19066227,27195977 +g1,18109:20284541,27195977 +g1,18109:21871823,27195977 +g1,18109:23569205,27195977 +g1,18109:24716085,27195977 +(1,18109:24716085,27195977:0,414482,122846 +r1,18131:26832910,27195977:2116825,537328,122846 +k1,18109:24716085,27195977:-2116825 +) +(1,18109:24716085,27195977:2116825,414482,122846 +k1,18109:24716085,27195977:3277 +h1,18109:26829633,27195977:0,411205,112570 +) +g1,18109:27032139,27195977 +g1,18109:28179019,27195977 +k1,18110:32583029,27195977:2112871 +g1,18110:32583029,27195977 +) +v1,18113:6630773,27880832:0,393216,0 +(1,18119:6630773,29591225:25952256,2103609,196608 +g1,18119:6630773,29591225 +g1,18119:6630773,29591225 +g1,18119:6434165,29591225 +(1,18119:6434165,29591225:0,2103609,196608 +r1,18131:32779637,29591225:26345472,2300217,196608 +k1,18119:6434165,29591225:-26345472 +) +(1,18119:6434165,29591225:26345472,2103609,196608 +[1,18119:6630773,29591225:25952256,1907001,0 +(1,18115:6630773,28108663:25952256,424439,112852 +(1,18114:6630773,28108663:0,0,0 +g1,18114:6630773,28108663 +g1,18114:6630773,28108663 +g1,18114:6303093,28108663 +(1,18114:6303093,28108663:0,0,0 +) +g1,18114:6630773,28108663 +) +k1,18115:6630773,28108663:0 +g1,18115:10614221,28108663 +g1,18115:11278129,28108663 +k1,18115:11278129,28108663:0 +h1,18115:13601807,28108663:0,0,0 +k1,18115:32583029,28108663:18981222 +g1,18115:32583029,28108663 +) +(1,18116:6630773,28793518:25952256,431045,112852 +h1,18116:6630773,28793518:0,0,0 +g1,18116:6962727,28793518 +g1,18116:7294681,28793518 +g1,18116:7626635,28793518 +g1,18116:7958589,28793518 +g1,18116:8290543,28793518 +g1,18116:8622497,28793518 +g1,18116:8954451,28793518 +g1,18116:10946175,28793518 +g1,18116:11610083,28793518 +g1,18116:13269853,28793518 +g1,18116:13933761,28793518 +g1,18116:14597669,28793518 +g1,18116:19576978,28793518 +g1,18116:22564563,28793518 +g1,18116:23228471,28793518 +g1,18116:25552149,28793518 +h1,18116:25884103,28793518:0,0,0 +k1,18116:32583029,28793518:6698926 +g1,18116:32583029,28793518 +) +(1,18117:6630773,29478373:25952256,424439,112852 +h1,18117:6630773,29478373:0,0,0 +g1,18117:6962727,29478373 +g1,18117:7294681,29478373 +k1,18117:7294681,29478373:0 +h1,18117:10946174,29478373:0,0,0 +k1,18117:32583030,29478373:21636856 +g1,18117:32583030,29478373 +) +] +) +g1,18119:32583029,29591225 +g1,18119:6630773,29591225 +g1,18119:6630773,29591225 +g1,18119:32583029,29591225 +g1,18119:32583029,29591225 +) +h1,18119:6630773,29787833:0,0,0 +(1,18122:6630773,38937035:25952256,9083666,0 +k1,18122:10523651,38937035:3892878 +h1,18121:10523651,38937035:0,0,0 +(1,18121:10523651,38937035:18166500,9083666,0 +(1,18121:10523651,38937035:18167376,9083688,0 +(1,18121:10523651,38937035:18167376,9083688,0 +(1,18121:10523651,38937035:0,9083688,0 +(1,18121:10523651,38937035:0,14208860,0 +(1,18121:10523651,38937035:28417720,14208860,0 +) +k1,18121:10523651,38937035:-28417720 +) +) +g1,18121:28691027,38937035 +) +) +) +g1,18122:28690151,38937035 +k1,18122:32583029,38937035:3892878 +) +(1,18131:6630773,39802115:25952256,513147,134348 +h1,18130:6630773,39802115:983040,0,0 +k1,18130:10173376,39802115:220583 +k1,18130:11053252,39802115:220584 +k1,18130:13850055,39802115:220583 +k1,18130:14426498,39802115:220583 +k1,18130:15815588,39802115:220583 +k1,18130:18263741,39802115:220584 +k1,18130:19503409,39802115:220583 +k1,18130:23049944,39802115:220583 +k1,18130:27515949,39802115:220583 +k1,18130:28604885,39802115:220584 +k1,18130:30162402,39802115:220583 +k1,18130:31931601,39802115:220583 +k1,18130:32583029,39802115:0 +) +(1,18131:6630773,40667195:25952256,513147,134348 +k1,18130:8384898,40667195:168154 +k1,18130:8908913,40667195:168155 +k1,18130:13292998,40667195:168154 +k1,18130:17321224,40667195:168155 +k1,18130:20180286,40667195:168154 +k1,18130:21296092,40667195:168155 +k1,18130:22915868,40667195:168154 +k1,18130:26825473,40667195:168155 +k1,18130:27676512,40667195:168154 +k1,18130:29048563,40667195:168155 +k1,18130:29832755,40667195:168154 +k1,18130:31019995,40667195:168155 +k1,18130:32583029,40667195:0 +) +(1,18131:6630773,41532275:25952256,505283,126483 +k1,18130:7478010,41532275:219402 +k1,18130:8900652,41532275:219401 +k1,18130:10660805,41532275:219402 +k1,18130:11748559,41532275:219402 +k1,18130:13060445,41532275:219401 +(1,18130:13060445,41532275:0,452978,122846 +r1,18131:17990965,41532275:4930520,575824,122846 +k1,18130:13060445,41532275:-4930520 +) +(1,18130:13060445,41532275:4930520,452978,122846 +k1,18130:13060445,41532275:3277 +h1,18130:17987688,41532275:0,411205,112570 +) +k1,18130:18210367,41532275:219402 +k1,18130:20315240,41532275:219402 +k1,18130:22912943,41532275:219401 +(1,18130:22912943,41532275:0,414482,115847 +r1,18131:23271209,41532275:358266,530329,115847 +k1,18130:22912943,41532275:-358266 +) +(1,18130:22912943,41532275:358266,414482,115847 +k1,18130:22912943,41532275:3277 +h1,18130:23267932,41532275:0,411205,112570 +) +k1,18130:23664281,41532275:219402 +(1,18130:23664281,41532275:0,452978,115847 +r1,18131:25077682,41532275:1413401,568825,115847 +k1,18130:23664281,41532275:-1413401 +) +(1,18130:23664281,41532275:1413401,452978,115847 +k1,18130:23664281,41532275:3277 +h1,18130:25074405,41532275:0,411205,112570 +) +k1,18130:25470753,41532275:219401 +(1,18130:25470753,41532275:0,414482,115847 +r1,18131:25829019,41532275:358266,530329,115847 +k1,18130:25470753,41532275:-358266 +) +(1,18130:25470753,41532275:358266,414482,115847 +k1,18130:25470753,41532275:3277 +h1,18130:25825742,41532275:0,411205,112570 +) +k1,18130:26048421,41532275:219402 +k1,18130:27459268,41532275:219402 +(1,18130:27459268,41532275:0,452978,115847 +r1,18131:28872669,41532275:1413401,568825,115847 +k1,18130:27459268,41532275:-1413401 +) +(1,18130:27459268,41532275:1413401,452978,115847 +k1,18130:27459268,41532275:3277 +h1,18130:28869392,41532275:0,411205,112570 +) +k1,18130:29092070,41532275:219401 +k1,18130:29997634,41532275:219402 +k1,18130:32583029,41532275:0 +) +(1,18131:6630773,42397355:25952256,505283,126483 +k1,18130:10130327,42397355:151320 +(1,18130:10130327,42397355:0,452978,122846 +r1,18131:14357423,42397355:4227096,575824,122846 +k1,18130:10130327,42397355:-4227096 +) +(1,18130:10130327,42397355:4227096,452978,122846 +k1,18130:10130327,42397355:3277 +h1,18130:14354146,42397355:0,411205,112570 +) +k1,18130:14508743,42397355:151320 +k1,18130:16576336,42397355:151320 +k1,18130:18889689,42397355:151320 +k1,18130:20713488,42397355:151320 +k1,18130:22056253,42397355:151320 +k1,18130:23226658,42397355:151320 +k1,18130:26608903,42397355:151320 +k1,18130:29048085,42397355:151320 +k1,18130:31391584,42397355:151320 +k1,18130:32583029,42397355:0 +) +(1,18131:6630773,43262435:25952256,505283,134348 +k1,18130:8852968,43262435:194511 +k1,18130:10151760,43262435:194510 +k1,18130:11094037,43262435:194511 +k1,18130:14549618,43262435:194510 +k1,18130:17302655,43262435:194511 +k1,18130:20724159,43262435:194511 +k1,18130:24133865,43262435:194510 +k1,18130:26202706,43262435:194511 +k1,18130:27569655,43262435:194510 +k1,18130:31204151,43262435:194511 +k1,18131:32583029,43262435:0 +) +(1,18131:6630773,44127515:25952256,513147,134348 +k1,18130:8211450,44127515:220150 +k1,18130:10279716,44127515:220151 +k1,18130:12368953,44127515:220150 +k1,18130:13201866,44127515:220151 +k1,18130:14930655,44127515:220150 +k1,18130:16837703,44127515:220151 +k1,18130:18874511,44127515:220150 +k1,18130:22534647,44127515:220151 +k1,18130:24732018,44127515:220150 +k1,18130:25899820,44127515:220151 +k1,18130:28696190,44127515:220150 +k1,18130:30415149,44127515:220151 +k1,18130:31318184,44127515:220150 +k1,18131:32583029,44127515:0 +) +(1,18131:6630773,44992595:25952256,513147,134348 +k1,18130:8794186,44992595:194056 +k1,18130:9979801,44992595:194055 +(1,18130:9979801,44992595:0,452978,122846 +r1,18131:13855185,44992595:3875384,575824,122846 +k1,18130:9979801,44992595:-3875384 +) +(1,18130:9979801,44992595:3875384,452978,122846 +k1,18130:9979801,44992595:3277 +h1,18130:13851908,44992595:0,411205,112570 +) +k1,18130:14222911,44992595:194056 +k1,18130:16302438,44992595:194056 +k1,18130:17027990,44992595:194055 +k1,18130:19424056,44992595:194056 +k1,18130:20269540,44992595:194056 +(1,18130:20269540,44992595:0,452978,122846 +r1,18131:24144924,44992595:3875384,575824,122846 +k1,18130:20269540,44992595:-3875384 +) +(1,18130:20269540,44992595:3875384,452978,122846 +k1,18130:20269540,44992595:3277 +h1,18130:24141647,44992595:0,411205,112570 +) +k1,18130:24512649,44992595:194055 +k1,18130:25778874,44992595:194056 +k1,18130:28300113,44992595:194056 +k1,18130:29153460,44992595:194055 +k1,18130:31575085,44992595:194056 +k1,18131:32583029,44992595:0 +) +] +(1,18131:32583029,45706769:0,0,0 +g1,18131:32583029,45706769 +) +) +] +(1,18131:6630773,47279633:25952256,0,0 +h1,18131:6630773,47279633:25952256,0,0 +) +] +(1,18131:4262630,4025873:0,0,0 +[1,18131:-473656,4025873:0,0,0 +(1,18131:-473656,-710413:0,0,0 +(1,18131:-473656,-710413:0,0,0 +g1,18131:-473656,-710413 +) +g1,18131:-473656,-710413 +) +] +) +] +!19883 +}299 Input:2726:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!482 -{317 -[1,18077:4262630,47279633:28320399,43253760,0 -(1,18077:4262630,4025873:0,0,0 -[1,18077:-473656,4025873:0,0,0 -(1,18077:-473656,-710413:0,0,0 -(1,18077:-473656,-644877:0,0,0 -k1,18077:-473656,-644877:-65536 +Input:2727:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2728:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2729:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2730:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2731:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2732:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2733:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2734:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2735:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2736:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2737:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2738:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2739:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2740:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2741:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2742:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2743:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2744:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2745:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2746:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1986 +{300 +[1,18184:4262630,47279633:28320399,43253760,0 +(1,18184:4262630,4025873:0,0,0 +[1,18184:-473656,4025873:0,0,0 +(1,18184:-473656,-710413:0,0,0 +(1,18184:-473656,-644877:0,0,0 +k1,18184:-473656,-644877:-65536 ) -(1,18077:-473656,4736287:0,0,0 -k1,18077:-473656,4736287:5209943 +(1,18184:-473656,4736287:0,0,0 +k1,18184:-473656,4736287:5209943 ) -g1,18077:-473656,-710413 +g1,18184:-473656,-710413 ) ] ) -[1,18077:6630773,47279633:25952256,43253760,0 -[1,18077:6630773,4812305:25952256,786432,0 -(1,18077:6630773,4812305:25952256,513147,126483 -(1,18077:6630773,4812305:25952256,513147,126483 -g1,18077:3078558,4812305 -[1,18077:3078558,4812305:0,0,0 -(1,18077:3078558,2439708:0,1703936,0 -k1,18077:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,18077:2537886,2439708:1179648,16384,0 +[1,18184:6630773,47279633:25952256,43253760,0 +[1,18184:6630773,4812305:25952256,786432,0 +(1,18184:6630773,4812305:25952256,485622,11795 +(1,18184:6630773,4812305:25952256,485622,11795 +g1,18184:3078558,4812305 +[1,18184:3078558,4812305:0,0,0 +(1,18184:3078558,2439708:0,1703936,0 +k1,18184:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,18184:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,18077:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,18184:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,18077:3078558,4812305:0,0,0 -(1,18077:3078558,2439708:0,1703936,0 -g1,18077:29030814,2439708 -g1,18077:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,18077:36151628,1915420:16384,1179648,0 +[1,18184:3078558,4812305:0,0,0 +(1,18184:3078558,2439708:0,1703936,0 +g1,18184:29030814,2439708 +g1,18184:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,18184:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,18077:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,18184:37855564,2439708:1179648,16384,0 ) ) -k1,18077:3078556,2439708:-34777008 +k1,18184:3078556,2439708:-34777008 ) ] -[1,18077:3078558,4812305:0,0,0 -(1,18077:3078558,49800853:0,16384,2228224 -k1,18077:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,18077:2537886,49800853:1179648,16384,0 +[1,18184:3078558,4812305:0,0,0 +(1,18184:3078558,49800853:0,16384,2228224 +k1,18184:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,18184:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,18077:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,18184:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,18077:3078558,4812305:0,0,0 -(1,18077:3078558,49800853:0,16384,2228224 -g1,18077:29030814,49800853 -g1,18077:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,18077:36151628,51504789:16384,1179648,0 +[1,18184:3078558,4812305:0,0,0 +(1,18184:3078558,49800853:0,16384,2228224 +g1,18184:29030814,49800853 +g1,18184:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,18184:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,18077:37855564,49800853:1179648,16384,0 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,18184:37855564,49800853:1179648,16384,0 ) ) -k1,18077:3078556,49800853:-34777008 +k1,18184:3078556,49800853:-34777008 ) ] -g1,18077:6630773,4812305 -k1,18077:21350816,4812305:13524666 -g1,18077:21999622,4812305 -g1,18077:25611966,4812305 -g1,18077:28956923,4812305 -g1,18077:29772190,4812305 +g1,18184:6630773,4812305 +g1,18184:6630773,4812305 +g1,18184:10347975,4812305 +k1,18184:31387651,4812305:21039676 ) ) ] -[1,18077:6630773,45706769:25952256,40108032,0 -(1,18077:6630773,45706769:25952256,40108032,0 -(1,18077:6630773,45706769:0,0,0 -g1,18077:6630773,45706769 +[1,18184:6630773,45706769:25952256,40108032,0 +(1,18184:6630773,45706769:25952256,40108032,0 +(1,18184:6630773,45706769:0,0,0 +g1,18184:6630773,45706769 ) -[1,18077:6630773,45706769:25952256,40108032,0 -(1,18034:6630773,14682403:25952256,9083666,0 -k1,18034:10523651,14682403:3892878 -h1,18033:10523651,14682403:0,0,0 -(1,18033:10523651,14682403:18166500,9083666,0 -(1,18033:10523651,14682403:18167376,9083688,0 -(1,18033:10523651,14682403:18167376,9083688,0 -(1,18033:10523651,14682403:0,9083688,0 -(1,18033:10523651,14682403:0,14208860,0 -(1,18033:10523651,14682403:28417720,14208860,0 +[1,18184:6630773,45706769:25952256,40108032,0 +(1,18131:6630773,6254097:25952256,505283,134348 +k1,18130:10151182,6254097:243609 +k1,18130:13511683,6254097:243609 +k1,18130:14406720,6254097:243609 +k1,18130:15669413,6254097:243608 +k1,18130:17923667,6254097:243609 +k1,18130:20752671,6254097:243609 +k1,18130:21647708,6254097:243609 +(1,18130:21647708,6254097:0,414482,115847 +r1,18184:22005974,6254097:358266,530329,115847 +k1,18130:21647708,6254097:-358266 ) -k1,18033:10523651,14682403:-28417720 -) -) -g1,18033:28691027,14682403 -) -) -) -g1,18034:28690151,14682403 -k1,18034:32583029,14682403:3892878 -) -(1,18041:6630773,15523891:25952256,513147,134348 -h1,18040:6630773,15523891:983040,0,0 -k1,18040:8718095,15523891:150733 -k1,18040:10211660,15523891:150732 -k1,18040:11756344,15523891:150733 -k1,18040:14971541,15523891:150733 -k1,18040:15773701,15523891:150732 -k1,18040:18544563,15523891:150733 -k1,18040:19051156,15523891:150733 -k1,18040:20479185,15523891:150732 -k1,18040:22023869,15523891:150733 -k1,18040:22530462,15523891:150733 -k1,18040:26521604,15523891:150732 -k1,18040:30071034,15523891:150733 -k1,18040:32583029,15523891:0 -) -(1,18041:6630773,16365379:25952256,513147,126483 -k1,18040:7817882,16365379:239458 -k1,18040:8413201,16365379:239459 -k1,18040:10960837,16365379:239458 -k1,18040:15914955,16365379:239458 -k1,18040:18142776,16365379:239459 -k1,18040:19065119,16365379:239458 -k1,18040:21060287,16365379:239458 -k1,18040:22349632,16365379:239458 -k1,18040:24867778,16365379:239459 -h1,18040:25838366,16365379:0,0,0 -k1,18040:26077824,16365379:239458 -k1,18040:27508727,16365379:239458 -k1,18040:30026873,16365379:239459 -h1,18040:31395920,16365379:0,0,0 -k1,18040:31635378,16365379:239458 -k1,18040:32583029,16365379:0 -) -(1,18041:6630773,17206867:25952256,513147,126483 -k1,18040:10677003,17206867:239244 -k1,18040:11725617,17206867:239244 -k1,18040:13867371,17206867:239244 -k1,18040:15298060,17206867:239244 -k1,18040:18027672,17206867:239244 -k1,18040:22237087,17206867:239244 -k1,18040:23429880,17206867:239244 -k1,18040:24603667,17206867:239244 -(1,18040:24603667,17206867:0,452978,115847 -r1,18077:28479051,17206867:3875384,568825,115847 -k1,18040:24603667,17206867:-3875384 -) -(1,18040:24603667,17206867:3875384,452978,115847 -g1,18040:26717215,17206867 -g1,18040:27420639,17206867 -h1,18040:28475774,17206867:0,411205,112570 -) -k1,18040:28718295,17206867:239244 -k1,18040:29608967,17206867:239244 -k1,18040:31563944,17206867:239244 -k1,18040:32583029,17206867:0 -) -(1,18041:6630773,18048355:25952256,513147,134348 -k1,18040:8302003,18048355:296285 -k1,18040:11670616,18048355:296285 -k1,18040:14173498,18048355:296285 -(1,18040:14173498,18048355:0,452978,115847 -r1,18077:19455730,18048355:5282232,568825,115847 -k1,18040:14173498,18048355:-5282232 -) -(1,18040:14173498,18048355:5282232,452978,115847 -g1,18040:16287046,18048355 -g1,18040:16990470,18048355 -h1,18040:19452453,18048355:0,411205,112570 -) -k1,18040:19752015,18048355:296285 -k1,18040:23023636,18048355:296286 -k1,18040:24339006,18048355:296285 -k1,18040:26900871,18048355:296285 -k1,18040:28813274,18048355:296285 -k1,18040:29768851,18048355:296285 -k1,18040:31084221,18048355:296285 -k1,18040:32583029,18048355:0 -) -(1,18041:6630773,18889843:25952256,505283,134348 -g1,18040:9960001,18889843 -g1,18040:11178315,18889843 -k1,18041:32583029,18889843:19856098 -g1,18041:32583029,18889843 -) -v1,18043:6630773,20080309:0,393216,0 -(1,18049:6630773,21734053:25952256,2046960,196608 -g1,18049:6630773,21734053 -g1,18049:6630773,21734053 -g1,18049:6434165,21734053 -(1,18049:6434165,21734053:0,2046960,196608 -r1,18077:32779637,21734053:26345472,2243568,196608 -k1,18049:6434165,21734053:-26345472 -) -(1,18049:6434165,21734053:26345472,2046960,196608 -[1,18049:6630773,21734053:25952256,1850352,0 -(1,18045:6630773,20294219:25952256,410518,107478 -(1,18044:6630773,20294219:0,0,0 -g1,18044:6630773,20294219 -g1,18044:6630773,20294219 -g1,18044:6303093,20294219 -(1,18044:6303093,20294219:0,0,0 -) -g1,18044:6630773,20294219 -) -k1,18045:6630773,20294219:0 -g1,18045:12953687,20294219 -g1,18045:14850562,20294219 -g1,18045:15482854,20294219 -g1,18045:18960457,20294219 -g1,18045:19592749,20294219 -g1,18045:20225041,20294219 -g1,18045:24334935,20294219 -g1,18045:25915664,20294219 -g1,18045:26547956,20294219 -g1,18045:29077122,20294219 -h1,18045:29393268,20294219:0,0,0 -k1,18045:32583029,20294219:3189761 -g1,18045:32583029,20294219 -) -(1,18046:6630773,20960397:25952256,404226,107478 -h1,18046:6630773,20960397:0,0,0 -g1,18046:6946919,20960397 -g1,18046:7263065,20960397 -g1,18046:7579211,20960397 -g1,18046:7895357,20960397 -g1,18046:8211503,20960397 -g1,18046:12953688,20960397 -g1,18046:13585980,20960397 -g1,18046:16431292,20960397 -g1,18046:18328166,20960397 -g1,18046:18960458,20960397 -g1,18046:20541187,20960397 -h1,18046:20857333,20960397:0,0,0 -k1,18046:32583029,20960397:11725696 -g1,18046:32583029,20960397 -) -(1,18047:6630773,21626575:25952256,410518,107478 -h1,18047:6630773,21626575:0,0,0 -g1,18047:6946919,21626575 -g1,18047:7263065,21626575 -g1,18047:7579211,21626575 -g1,18047:7895357,21626575 -g1,18047:8211503,21626575 -g1,18047:13902125,21626575 -g1,18047:14534417,21626575 -k1,18047:14534417,21626575:0 -h1,18047:18328165,21626575:0,0,0 -k1,18047:32583029,21626575:14254864 -g1,18047:32583029,21626575 -) -] -) -g1,18049:32583029,21734053 -g1,18049:6630773,21734053 -g1,18049:6630773,21734053 -g1,18049:32583029,21734053 -g1,18049:32583029,21734053 -) -h1,18049:6630773,21930661:0,0,0 -(1,18052:6630773,31604151:25952256,9083666,0 -k1,18052:10523651,31604151:3892878 -h1,18051:10523651,31604151:0,0,0 -(1,18051:10523651,31604151:18166500,9083666,0 -(1,18051:10523651,31604151:18167376,9083688,0 -(1,18051:10523651,31604151:18167376,9083688,0 -(1,18051:10523651,31604151:0,9083688,0 -(1,18051:10523651,31604151:0,14208860,0 -(1,18051:10523651,31604151:28417720,14208860,0 -) -k1,18051:10523651,31604151:-28417720 -) -) -g1,18051:28691027,31604151 -) -) -) -g1,18052:28690151,31604151 -k1,18052:32583029,31604151:3892878 -) -(1,18059:6630773,32445639:25952256,513147,126483 -h1,18058:6630773,32445639:983040,0,0 -k1,18058:8908979,32445639:341617 -k1,18058:10634717,32445639:341618 -k1,18058:12068819,32445639:341617 -k1,18058:12766297,32445639:341618 -k1,18058:15236523,32445639:341617 -k1,18058:17252585,32445639:341617 -k1,18058:18785648,32445639:341618 -k1,18058:19743303,32445639:341617 -k1,18058:22924596,32445639:341618 -k1,18058:24358698,32445639:341617 -k1,18058:25719400,32445639:341617 -k1,18058:27435963,32445639:341618 -k1,18058:29077159,32445639:341617 -k1,18058:30180305,32445639:341618 -k1,18058:31821501,32445639:341617 -k1,18058:32583029,32445639:0 -) -(1,18059:6630773,33287127:25952256,513147,134348 -k1,18058:9117386,33287127:304919 -(1,18058:9117386,33287127:0,452978,122846 -r1,18077:15454754,33287127:6337368,575824,122846 -k1,18058:9117386,33287127:-6337368 -) -(1,18058:9117386,33287127:6337368,452978,122846 -g1,18058:12286070,33287127 -g1,18058:12989494,33287127 -h1,18058:15451477,33287127:0,411205,112570 -) -k1,18058:15759673,33287127:304919 -k1,18058:16716020,33287127:304919 -k1,18058:19665972,33287127:304919 -k1,18058:20989976,33287127:304919 -k1,18058:23560475,33287127:304919 -(1,18058:23560475,33287127:0,452978,115847 -r1,18077:29897843,33287127:6337368,568825,115847 -k1,18058:23560475,33287127:-6337368 -) -(1,18058:23560475,33287127:6337368,452978,115847 -g1,18058:26729159,33287127 -g1,18058:27432583,33287127 -h1,18058:29894566,33287127:0,411205,112570 -) -k1,18058:30376432,33287127:304919 -k1,18059:32583029,33287127:0 -) -(1,18059:6630773,34128615:25952256,505283,134348 -(1,18058:6630773,34128615:0,452978,115847 -r1,18077:10154446,34128615:3523673,568825,115847 -k1,18058:6630773,34128615:-3523673 -) -(1,18058:6630773,34128615:3523673,452978,115847 -g1,18058:8744321,34128615 -g1,18058:9447745,34128615 -h1,18058:10151169,34128615:0,411205,112570 -) -g1,18058:10353675,34128615 -g1,18058:13237914,34128615 -g1,18058:14456228,34128615 -g1,18058:16154265,34128615 -g1,18058:19483493,34128615 -g1,18058:20701807,34128615 -k1,18059:32583029,34128615:10332606 -g1,18059:32583029,34128615 -) -v1,18061:6630773,35319081:0,393216,0 -(1,18067:6630773,36972825:25952256,2046960,196608 -g1,18067:6630773,36972825 -g1,18067:6630773,36972825 -g1,18067:6434165,36972825 -(1,18067:6434165,36972825:0,2046960,196608 -r1,18077:32779637,36972825:26345472,2243568,196608 -k1,18067:6434165,36972825:-26345472 -) -(1,18067:6434165,36972825:26345472,2046960,196608 -[1,18067:6630773,36972825:25952256,1850352,0 -(1,18063:6630773,35532991:25952256,410518,107478 -(1,18062:6630773,35532991:0,0,0 -g1,18062:6630773,35532991 -g1,18062:6630773,35532991 -g1,18062:6303093,35532991 -(1,18062:6303093,35532991:0,0,0 -) -g1,18062:6630773,35532991 -) -k1,18063:6630773,35532991:0 -g1,18063:12953687,35532991 -g1,18063:14850562,35532991 -g1,18063:15482854,35532991 -g1,18063:18960457,35532991 -g1,18063:19592749,35532991 -g1,18063:20225041,35532991 -g1,18063:24334935,35532991 -g1,18063:25915664,35532991 -g1,18063:26547956,35532991 -g1,18063:29077122,35532991 -h1,18063:29393268,35532991:0,0,0 -k1,18063:32583029,35532991:3189761 -g1,18063:32583029,35532991 -) -(1,18064:6630773,36199169:25952256,404226,107478 -h1,18064:6630773,36199169:0,0,0 -g1,18064:6946919,36199169 -g1,18064:7263065,36199169 -g1,18064:7579211,36199169 -g1,18064:7895357,36199169 -g1,18064:8211503,36199169 -g1,18064:12953688,36199169 -g1,18064:13585980,36199169 -g1,18064:14850563,36199169 -g1,18064:17695874,36199169 -g1,18064:18328166,36199169 -g1,18064:21173478,36199169 -h1,18064:21489624,36199169:0,0,0 -k1,18064:32583029,36199169:11093405 -g1,18064:32583029,36199169 -) -(1,18065:6630773,36865347:25952256,410518,107478 -h1,18065:6630773,36865347:0,0,0 -g1,18065:6946919,36865347 -g1,18065:7263065,36865347 -g1,18065:7579211,36865347 -g1,18065:7895357,36865347 -g1,18065:8211503,36865347 -g1,18065:13902125,36865347 -g1,18065:14534417,36865347 -k1,18065:14534417,36865347:0 -h1,18065:19276602,36865347:0,0,0 -k1,18065:32583029,36865347:13306427 -g1,18065:32583029,36865347 -) -] -) -g1,18067:32583029,36972825 -g1,18067:6630773,36972825 -g1,18067:6630773,36972825 -g1,18067:32583029,36972825 -g1,18067:32583029,36972825 -) -h1,18067:6630773,37169433:0,0,0 -] -(1,18077:32583029,45706769:0,0,0 -g1,18077:32583029,45706769 -) -) -] -(1,18077:6630773,47279633:25952256,0,0 -h1,18077:6630773,47279633:25952256,0,0 -) -] -(1,18077:4262630,4025873:0,0,0 -[1,18077:-473656,4025873:0,0,0 -(1,18077:-473656,-710413:0,0,0 -(1,18077:-473656,-710413:0,0,0 -g1,18077:-473656,-710413 -) -g1,18077:-473656,-710413 -) -] -) -] -!13420 -}317 -Input:2727:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2728:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2729:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2730:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2731:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2732:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2733:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2734:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2735:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2736:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2737:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2738:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2739:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2740:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2741:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2742:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2743:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2744:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1704 -{318 -[1,18123:4262630,47279633:28320399,43253760,0 -(1,18123:4262630,4025873:0,0,0 -[1,18123:-473656,4025873:0,0,0 -(1,18123:-473656,-710413:0,0,0 -(1,18123:-473656,-644877:0,0,0 -k1,18123:-473656,-644877:-65536 +(1,18130:21647708,6254097:358266,414482,115847 +k1,18130:21647708,6254097:3277 +h1,18130:22002697,6254097:0,411205,112570 +) +k1,18130:22423253,6254097:243609 +k1,18130:23124959,6254097:243609 +k1,18130:24936188,6254097:243608 +k1,18130:26818852,6254097:243609 +k1,18130:30179353,6254097:243609 +k1,18130:31074390,6254097:243609 +k1,18130:32583029,6254097:0 +) +(1,18131:6630773,7119177:25952256,505283,134348 +k1,18130:9968099,7119177:181112 +k1,18130:10765249,7119177:181112 +(1,18130:10765249,7119177:0,452978,115847 +r1,18184:12178650,7119177:1413401,568825,115847 +k1,18130:10765249,7119177:-1413401 +) +(1,18130:10765249,7119177:1413401,452978,115847 +k1,18130:10765249,7119177:3277 +h1,18130:12175373,7119177:0,411205,112570 +) +k1,18130:12533433,7119177:181113 +k1,18130:13905990,7119177:181112 +(1,18130:13905990,7119177:0,452978,122846 +r1,18184:18133086,7119177:4227096,575824,122846 +k1,18130:13905990,7119177:-4227096 +) +(1,18130:13905990,7119177:4227096,452978,122846 +k1,18130:13905990,7119177:3277 +h1,18130:18129809,7119177:0,411205,112570 +) +k1,18130:18487868,7119177:181112 +k1,18130:20554451,7119177:181112 +k1,18130:21267060,7119177:181112 +k1,18130:23650182,7119177:181112 +k1,18130:24482723,7119177:181113 +(1,18130:24482723,7119177:0,452978,122846 +r1,18184:29413243,7119177:4930520,575824,122846 +k1,18130:24482723,7119177:-4930520 +) +(1,18130:24482723,7119177:4930520,452978,122846 +k1,18130:24482723,7119177:3277 +h1,18130:29409966,7119177:0,411205,112570 +) +k1,18130:29594355,7119177:181112 +k1,18130:30847636,7119177:181112 +k1,18130:32583029,7119177:0 +) +(1,18131:6630773,7984257:25952256,513147,134348 +k1,18130:7260119,7984257:273486 +k1,18130:9198219,7984257:273486 +k1,18130:14793228,7984257:273486 +k1,18130:16921383,7984257:273486 +k1,18130:18004239,7984257:273486 +(1,18130:18004239,7984257:0,414482,115847 +r1,18184:18362505,7984257:358266,530329,115847 +k1,18130:18004239,7984257:-358266 +) +(1,18130:18004239,7984257:358266,414482,115847 +k1,18130:18004239,7984257:3277 +h1,18130:18359228,7984257:0,411205,112570 +) +k1,18130:18809661,7984257:273486 +(1,18130:18809661,7984257:0,414482,115847 +r1,18184:19167927,7984257:358266,530329,115847 +k1,18130:18809661,7984257:-358266 +) +(1,18130:18809661,7984257:358266,414482,115847 +k1,18130:18809661,7984257:3277 +h1,18130:19164650,7984257:0,411205,112570 +) +k1,18130:19441412,7984257:273485 +k1,18130:20662549,7984257:273486 +k1,18130:22984035,7984257:273486 +k1,18130:24448966,7984257:273486 +(1,18130:24448966,7984257:0,452978,122846 +r1,18184:26214079,7984257:1765113,575824,122846 +k1,18130:24448966,7984257:-1765113 +) +(1,18130:24448966,7984257:1765113,452978,122846 +k1,18130:24448966,7984257:3277 +h1,18130:26210802,7984257:0,411205,112570 +) +k1,18130:26487565,7984257:273486 +k1,18130:27952496,7984257:273486 +(1,18130:27952496,7984257:0,452978,115847 +r1,18184:30069321,7984257:2116825,568825,115847 +k1,18130:27952496,7984257:-2116825 +) +(1,18130:27952496,7984257:2116825,452978,115847 +k1,18130:27952496,7984257:3277 +h1,18130:30066044,7984257:0,411205,112570 +) +k1,18130:30342807,7984257:273486 +k1,18130:31563944,7984257:273486 +k1,18130:32583029,7984257:0 +) +(1,18131:6630773,8849337:25952256,505283,134348 +k1,18130:9740196,8849337:244844 +k1,18130:12261106,8849337:244845 +(1,18130:12261106,8849337:0,452978,122846 +r1,18184:16136490,8849337:3875384,575824,122846 +k1,18130:12261106,8849337:-3875384 +) +(1,18130:12261106,8849337:3875384,452978,122846 +k1,18130:12261106,8849337:3277 +h1,18130:16133213,8849337:0,411205,112570 +) +k1,18130:16381334,8849337:244844 +k1,18130:18233776,8849337:244844 +k1,18130:19854221,8849337:244844 +k1,18130:22444600,8849337:244845 +k1,18130:23880889,8849337:244844 +k1,18130:27441855,8849337:244844 +k1,18130:29185507,8849337:244844 +k1,18130:30081780,8849337:244845 +k1,18130:31563944,8849337:244844 +k1,18130:32583029,8849337:0 +) +(1,18131:6630773,9714417:25952256,505283,134348 +g1,18130:11075424,9714417 +g1,18130:13846941,9714417 +g1,18130:14402030,9714417 +g1,18130:17145367,9714417 +k1,18131:32583029,9714417:14095485 +g1,18131:32583029,9714417 +) +v1,18133:6630773,10399272:0,393216,0 +(1,18139:6630773,12109665:25952256,2103609,196608 +g1,18139:6630773,12109665 +g1,18139:6630773,12109665 +g1,18139:6434165,12109665 +(1,18139:6434165,12109665:0,2103609,196608 +r1,18184:32779637,12109665:26345472,2300217,196608 +k1,18139:6434165,12109665:-26345472 +) +(1,18139:6434165,12109665:26345472,2103609,196608 +[1,18139:6630773,12109665:25952256,1907001,0 +(1,18135:6630773,10627103:25952256,424439,112852 +(1,18134:6630773,10627103:0,0,0 +g1,18134:6630773,10627103 +g1,18134:6630773,10627103 +g1,18134:6303093,10627103 +(1,18134:6303093,10627103:0,0,0 +) +g1,18134:6630773,10627103 +) +k1,18135:6630773,10627103:0 +g1,18135:10614221,10627103 +g1,18135:11278129,10627103 +k1,18135:11278129,10627103:0 +h1,18135:13601807,10627103:0,0,0 +k1,18135:32583029,10627103:18981222 +g1,18135:32583029,10627103 +) +(1,18136:6630773,11311958:25952256,431045,112852 +h1,18136:6630773,11311958:0,0,0 +g1,18136:6962727,11311958 +g1,18136:7294681,11311958 +g1,18136:7626635,11311958 +g1,18136:7958589,11311958 +g1,18136:8290543,11311958 +g1,18136:8622497,11311958 +g1,18136:8954451,11311958 +g1,18136:10946175,11311958 +g1,18136:11610083,11311958 +g1,18136:13269853,11311958 +g1,18136:13933761,11311958 +g1,18136:14597669,11311958 +g1,18136:19576978,11311958 +g1,18136:22564563,11311958 +g1,18136:23228471,11311958 +g1,18136:25552149,11311958 +h1,18136:25884103,11311958:0,0,0 +k1,18136:32583029,11311958:6698926 +g1,18136:32583029,11311958 +) +(1,18137:6630773,11996813:25952256,424439,112852 +h1,18137:6630773,11996813:0,0,0 +g1,18137:6962727,11996813 +g1,18137:7294681,11996813 +k1,18137:7294681,11996813:0 +h1,18137:10946174,11996813:0,0,0 +k1,18137:32583030,11996813:21636856 +g1,18137:32583030,11996813 +) +] +) +g1,18139:32583029,12109665 +g1,18139:6630773,12109665 +g1,18139:6630773,12109665 +g1,18139:32583029,12109665 +g1,18139:32583029,12109665 +) +h1,18139:6630773,12306273:0,0,0 +(1,18142:6630773,21455475:25952256,9083666,0 +k1,18142:10523651,21455475:3892878 +h1,18141:10523651,21455475:0,0,0 +(1,18141:10523651,21455475:18166500,9083666,0 +(1,18141:10523651,21455475:18167376,9083688,0 +(1,18141:10523651,21455475:18167376,9083688,0 +(1,18141:10523651,21455475:0,9083688,0 +(1,18141:10523651,21455475:0,14208860,0 +(1,18141:10523651,21455475:28417720,14208860,0 +) +k1,18141:10523651,21455475:-28417720 +) +) +g1,18141:28691027,21455475 +) +) +) +g1,18142:28690151,21455475 +k1,18142:32583029,21455475:3892878 +) +v1,18150:6630773,22320555:0,393216,0 +(1,18159:6630773,24680258:25952256,2752919,0 +g1,18159:6630773,24680258 +g1,18159:6237557,24680258 +r1,18184:6368629,24680258:131072,2752919,0 +g1,18159:6567858,24680258 +g1,18159:6764466,24680258 +[1,18159:6764466,24680258:25818563,2752919,0 +(1,18151:6764466,22593032:25818563,665693,196608 +(1,18150:6764466,22593032:0,665693,196608 +r1,18184:8010564,22593032:1246098,862301,196608 +k1,18150:6764466,22593032:-1246098 +) +(1,18150:6764466,22593032:1246098,665693,196608 +) +k1,18150:8423588,22593032:413024 +k1,18150:9741517,22593032:327680 +k1,18150:11946294,22593032:413023 +k1,18150:13378403,22593032:413024 +k1,18150:16766761,22593032:413023 +k1,18150:18192316,22593032:413024 +k1,18150:20168373,22593032:413023 +k1,18150:22297130,22593032:413024 +k1,18150:24364937,22593032:413023 +k1,18150:26385559,22593032:413024 +k1,18150:28533975,22593032:413023 +(1,18150:28533975,22593032:0,452978,122846 +r1,18184:32409359,22593032:3875384,575824,122846 +k1,18150:28533975,22593032:-3875384 +) +(1,18150:28533975,22593032:3875384,452978,122846 +k1,18150:28533975,22593032:3277 +h1,18150:32406082,22593032:0,411205,112570 +) +k1,18151:32583029,22593032:0 +) +(1,18151:6764466,23458112:25818563,505283,126483 +(1,18150:6764466,23458112:0,452978,122846 +r1,18184:10639850,23458112:3875384,575824,122846 +k1,18150:6764466,23458112:-3875384 +) +(1,18150:6764466,23458112:3875384,452978,122846 +k1,18150:6764466,23458112:3277 +h1,18150:10636573,23458112:0,411205,112570 +) +g1,18150:11012749,23458112 +g1,18150:12403423,23458112 +(1,18150:12403423,23458112:0,414482,122846 +r1,18184:15575383,23458112:3171960,537328,122846 +k1,18150:12403423,23458112:-3171960 +) +(1,18150:12403423,23458112:3171960,414482,122846 +k1,18150:12403423,23458112:3277 +h1,18150:15572106,23458112:0,411205,112570 +) +g1,18150:15774612,23458112 +g1,18150:16625269,23458112 +g1,18150:18021841,23458112 +g1,18150:18576930,23458112 +k1,18151:32583029,23458112:12274638 +g1,18151:32583029,23458112 +) +v1,18153:6764466,24142967:0,393216,0 +(1,18157:6764466,24483650:25818563,733899,196608 +g1,18157:6764466,24483650 +g1,18157:6764466,24483650 +g1,18157:6567858,24483650 +(1,18157:6567858,24483650:0,733899,196608 +r1,18184:32779637,24483650:26211779,930507,196608 +k1,18157:6567857,24483650:-26211780 +) +(1,18157:6567858,24483650:26211779,733899,196608 +[1,18157:6764466,24483650:25818563,537291,0 +(1,18155:6764466,24377404:25818563,431045,106246 +(1,18154:6764466,24377404:0,0,0 +g1,18154:6764466,24377404 +g1,18154:6764466,24377404 +g1,18154:6436786,24377404 +(1,18154:6436786,24377404:0,0,0 +) +g1,18154:6764466,24377404 +) +g1,18155:9088144,24377404 +g1,18155:10084006,24377404 +g1,18155:14399407,24377404 +g1,18155:15063315,24377404 +g1,18155:19046763,24377404 +g1,18155:19710671,24377404 +g1,18155:20374579,24377404 +k1,18155:20374579,24377404:0 +h1,18155:24026073,24377404:0,0,0 +k1,18155:32583029,24377404:8556956 +g1,18155:32583029,24377404 +) +] +) +g1,18157:32583029,24483650 +g1,18157:6764466,24483650 +g1,18157:6764466,24483650 +g1,18157:32583029,24483650 +g1,18157:32583029,24483650 +) +h1,18157:6764466,24680258:0,0,0 +] +g1,18159:32583029,24680258 +) +h1,18159:6630773,24680258:0,0,0 +(1,18163:6630773,25545338:25952256,505283,134348 +h1,18162:6630773,25545338:983040,0,0 +k1,18162:9722702,25545338:334174 +(1,18162:9722702,25545338:0,452978,122846 +r1,18184:13598086,25545338:3875384,575824,122846 +k1,18162:9722702,25545338:-3875384 +) +(1,18162:9722702,25545338:3875384,452978,122846 +k1,18162:9722702,25545338:3277 +h1,18162:13594809,25545338:0,411205,112570 +) +k1,18162:13932259,25545338:334173 +k1,18162:16182706,25545338:334174 +k1,18162:16872739,25545338:334173 +k1,18162:18375420,25545338:334174 +k1,18162:20937162,25545338:334173 +k1,18162:25516758,25545338:334174 +(1,18162:25516758,25545338:0,452978,122846 +r1,18184:29392142,25545338:3875384,575824,122846 +k1,18162:25516758,25545338:-3875384 +) +(1,18162:25516758,25545338:3875384,452978,122846 +k1,18162:25516758,25545338:3277 +h1,18162:29388865,25545338:0,411205,112570 +) +k1,18162:29726315,25545338:334173 +k1,18162:32583029,25545338:0 +) +(1,18163:6630773,26410418:25952256,513147,134348 +k1,18162:8904508,26410418:442659 +k1,18162:10366251,26410418:442658 +k1,18162:12156330,26410418:442659 +k1,18162:14467419,26410418:442658 +k1,18162:15929163,26410418:442659 +k1,18162:17540329,26410418:442659 +k1,18162:21099879,26410418:442658 +k1,18162:22193966,26410418:442659 +k1,18162:23655709,26410418:442658 +(1,18162:23655709,26410418:0,459977,115847 +r1,18184:25069110,26410418:1413401,575824,115847 +k1,18162:23655709,26410418:-1413401 +) +(1,18162:23655709,26410418:1413401,459977,115847 +k1,18162:23655709,26410418:3277 +h1,18162:25065833,26410418:0,411205,112570 +) +k1,18162:25511769,26410418:442659 +k1,18162:28881265,26410418:442659 +k1,18162:29951758,26410418:442658 +k1,18163:32583029,26410418:0 +) +(1,18163:6630773,27275498:25952256,505283,122846 +(1,18162:6630773,27275498:0,452978,122846 +r1,18184:11209581,27275498:4578808,575824,122846 +k1,18162:6630773,27275498:-4578808 +) +(1,18162:6630773,27275498:4578808,452978,122846 +k1,18162:6630773,27275498:3277 +h1,18162:11206304,27275498:0,411205,112570 +) +k1,18162:11538204,27275498:328623 +k1,18162:13783100,27275498:328623 +k1,18162:15284162,27275498:328623 +k1,18162:17111592,27275498:328622 +k1,18162:19294884,27275498:328623 +k1,18162:20432877,27275498:328623 +k1,18162:21780585,27275498:328623 +(1,18162:21780585,27275498:0,414482,115847 +r1,18184:22138851,27275498:358266,530329,115847 +k1,18162:21780585,27275498:-358266 +) +(1,18162:21780585,27275498:358266,414482,115847 +k1,18162:21780585,27275498:3277 +h1,18162:22135574,27275498:0,411205,112570 +) +k1,18162:22641144,27275498:328623 +(1,18162:22641144,27275498:0,452978,115847 +r1,18184:24054545,27275498:1413401,568825,115847 +k1,18162:22641144,27275498:-1413401 +) +(1,18162:22641144,27275498:1413401,452978,115847 +k1,18162:22641144,27275498:3277 +h1,18162:24051268,27275498:0,411205,112570 +) +k1,18162:24383168,27275498:328623 +k1,18162:25903235,27275498:328622 +(1,18162:25903235,27275498:0,414482,115847 +r1,18184:27316636,27275498:1413401,530329,115847 +k1,18162:25903235,27275498:-1413401 +) +(1,18162:25903235,27275498:1413401,414482,115847 +k1,18162:25903235,27275498:3277 +h1,18162:27313359,27275498:0,411205,112570 +) +k1,18162:27645259,27275498:328623 +k1,18162:31189078,27275498:328623 +k1,18162:32583029,27275498:0 +) +(1,18163:6630773,28140578:25952256,513147,134348 +k1,18162:8102552,28140578:452694 +k1,18162:10343068,28140578:452694 +k1,18162:13430966,28140578:452695 +k1,18162:14902745,28140578:452694 +k1,18162:16854247,28140578:452694 +k1,18162:18915850,28140578:452694 +k1,18162:22485436,28140578:452694 +k1,18162:23589558,28140578:452694 +k1,18162:25061338,28140578:452695 +(1,18162:25061338,28140578:0,459977,115847 +r1,18184:26474739,28140578:1413401,575824,115847 +k1,18162:25061338,28140578:-1413401 +) +(1,18162:25061338,28140578:1413401,459977,115847 +k1,18162:25061338,28140578:3277 +h1,18162:26471462,28140578:0,411205,112570 +) +k1,18162:26927433,28140578:452694 +k1,18162:30306964,28140578:452694 +k1,18163:32583029,28140578:0 +) +(1,18163:6630773,29005658:25952256,505283,122846 +(1,18162:6630773,29005658:0,452978,122846 +r1,18184:11561293,29005658:4930520,575824,122846 +k1,18162:6630773,29005658:-4930520 +) +(1,18162:6630773,29005658:4930520,452978,122846 +k1,18162:6630773,29005658:3277 +h1,18162:11558016,29005658:0,411205,112570 +) +k1,18162:11805761,29005658:244468 +k1,18162:12581726,29005658:244468 +k1,18162:15028204,29005658:244468 +k1,18162:15924100,29005658:244468 +(1,18162:15924100,29005658:0,452978,122846 +r1,18184:19799484,29005658:3875384,575824,122846 +k1,18162:15924100,29005658:-3875384 +) +(1,18162:15924100,29005658:3875384,452978,122846 +k1,18162:15924100,29005658:3277 +h1,18162:19796207,29005658:0,411205,112570 +) +k1,18162:20043951,29005658:244467 +k1,18162:21360588,29005658:244468 +k1,18162:24430968,29005658:244468 +k1,18162:25694521,29005658:244468 +k1,18162:28511277,29005658:244468 +k1,18162:32583029,29005658:0 +) +(1,18163:6630773,29870738:25952256,513147,134348 +g1,18162:9387872,29870738 +g1,18162:9942961,29870738 +g1,18162:12173806,29870738 +g1,18162:14938114,29870738 +g1,18162:16421849,29870738 +g1,18162:19477792,29870738 +(1,18162:19477792,29870738:0,459977,115847 +r1,18184:20891193,29870738:1413401,575824,115847 +k1,18162:19477792,29870738:-1413401 +) +(1,18162:19477792,29870738:1413401,459977,115847 +k1,18162:19477792,29870738:3277 +h1,18162:20887916,29870738:0,411205,112570 +) +k1,18163:32583029,29870738:11518166 +g1,18163:32583029,29870738 +) +(1,18165:6630773,30735818:25952256,513147,126483 +h1,18164:6630773,30735818:983040,0,0 +k1,18164:9761187,30735818:420500 +k1,18164:10840980,30735818:420501 +k1,18164:12810096,30735818:420500 +k1,18164:14437770,30735818:420501 +k1,18164:17948293,30735818:420500 +k1,18164:20224118,30735818:420501 +k1,18164:21592269,30735818:420500 +(1,18164:21592269,30735818:0,452978,122846 +r1,18184:25819365,30735818:4227096,575824,122846 +k1,18164:21592269,30735818:-4227096 +) +(1,18164:21592269,30735818:4227096,452978,122846 +k1,18164:21592269,30735818:3277 +h1,18164:25816088,30735818:0,411205,112570 +) +k1,18164:26239866,30735818:420501 +k1,18164:27764648,30735818:420500 +k1,18164:28932915,30735818:420501 +k1,18164:31931601,30735818:420500 +k1,18165:32583029,30735818:0 +) +(1,18165:6630773,31600898:25952256,505283,134348 +(1,18164:6630773,31600898:0,452978,122846 +r1,18184:10506157,31600898:3875384,575824,122846 +k1,18164:6630773,31600898:-3875384 +) +(1,18164:6630773,31600898:3875384,452978,122846 +k1,18164:6630773,31600898:3277 +h1,18164:10502880,31600898:0,411205,112570 +) +k1,18164:10933907,31600898:254080 +(1,18164:10933907,31600898:0,452978,122846 +r1,18184:15512715,31600898:4578808,575824,122846 +k1,18164:10933907,31600898:-4578808 +) +(1,18164:10933907,31600898:4578808,452978,122846 +k1,18164:10933907,31600898:3277 +h1,18164:15509438,31600898:0,411205,112570 +) +k1,18164:15940465,31600898:254080 +(1,18164:15940465,31600898:0,452978,122846 +r1,18184:19815849,31600898:3875384,575824,122846 +k1,18164:15940465,31600898:-3875384 +) +(1,18164:15940465,31600898:3875384,452978,122846 +k1,18164:15940465,31600898:3277 +h1,18164:19812572,31600898:0,411205,112570 +) +k1,18164:20069928,31600898:254079 +k1,18164:21515453,31600898:254080 +k1,18164:23471503,31600898:254080 +k1,18164:27165568,31600898:254080 +k1,18164:30509670,31600898:254079 +k1,18164:31379788,31600898:254080 +k1,18164:32583029,31600898:0 +) +(1,18165:6630773,32465978:25952256,513147,134348 +k1,18164:9328094,32465978:244964 +k1,18164:10200893,32465978:244964 +k1,18164:12137997,32465978:244964 +k1,18164:14254014,32465978:244964 +k1,18164:14957075,32465978:244964 +k1,18164:15733536,32465978:244964 +k1,18164:17955722,32465978:244965 +k1,18164:18852114,32465978:244964 +k1,18164:20766280,32465978:244964 +k1,18164:22030329,32465978:244964 +k1,18164:25850937,32465978:244964 +k1,18164:27793939,32465978:244964 +k1,18164:29057988,32465978:244964 +k1,18164:31313597,32465978:244964 +k1,18165:32583029,32465978:0 +) +(1,18165:6630773,33331058:25952256,513147,134348 +k1,18164:8959923,33331058:344064 +k1,18164:10956150,33331058:344064 +k1,18164:11959506,33331058:344064 +k1,18164:12659429,33331058:344063 +k1,18164:14989234,33331058:344064 +k1,18164:17389818,33331058:344064 +k1,18164:18361717,33331058:344064 +k1,18164:19724866,33331058:344064 +k1,18164:21626721,33331058:344064 +k1,18164:25159112,33331058:344064 +k1,18164:28338262,33331058:344063 +k1,18164:29550678,33331058:344064 +k1,18164:31563944,33331058:344064 +k1,18164:32583029,33331058:0 +) +(1,18165:6630773,34196138:25952256,513147,134348 +k1,18164:9115716,34196138:235092 +k1,18164:10010100,34196138:235092 +k1,18164:11264277,34196138:235092 +k1,18164:14261712,34196138:235092 +k1,18164:16067047,34196138:235092 +k1,18164:17063668,34196138:235093 +k1,18164:19034153,34196138:235092 +(1,18164:19034153,34196138:0,452978,115847 +r1,18184:25371521,34196138:6337368,568825,115847 +k1,18164:19034153,34196138:-6337368 +) +(1,18164:19034153,34196138:6337368,452978,115847 +g1,18164:22202837,34196138 +g1,18164:22906261,34196138 +h1,18164:25368244,34196138:0,411205,112570 +) +k1,18164:25606613,34196138:235092 +k1,18164:28168888,34196138:235092 +k1,18164:29063272,34196138:235092 +k1,18164:30317449,34196138:235092 +k1,18165:32583029,34196138:0 +) +(1,18165:6630773,35061218:25952256,513147,138281 +(1,18164:6630773,35061218:0,452978,115847 +r1,18184:14023276,35061218:7392503,568825,115847 +k1,18164:6630773,35061218:-7392503 +) +(1,18164:6630773,35061218:7392503,452978,115847 +g1,18164:9799457,35061218 +g1,18164:10502881,35061218 +h1,18164:14019999,35061218:0,411205,112570 +) +k1,18164:14481905,35061218:284959 +k1,18164:17856230,35061218:284958 +k1,18164:19160274,35061218:284959 +$1,18164:19160274,35061218 +$1,18164:19712087,35061218 +k1,18164:19997046,35061218:284959 +k1,18164:21534397,35061218:284958 +k1,18164:22478648,35061218:284959 +k1,18164:23782691,35061218:284958 +k1,18164:25922974,35061218:284959 +k1,18164:28076364,35061218:284959 +k1,18164:29012750,35061218:284958 +k1,18164:30582215,35061218:284959 +k1,18164:32583029,35061218:0 +) +(1,18165:6630773,35926298:25952256,505283,134348 +g1,18164:8565395,35926298 +(1,18164:8565395,35926298:0,452978,122846 +r1,18184:12440779,35926298:3875384,575824,122846 +k1,18164:8565395,35926298:-3875384 +) +(1,18164:8565395,35926298:3875384,452978,122846 +k1,18164:8565395,35926298:3277 +h1,18164:12437502,35926298:0,411205,112570 +) +g1,18164:12640008,35926298 +g1,18164:13648607,35926298 +g1,18164:15345989,35926298 +h1,18164:16541366,35926298:0,0,0 +k1,18165:32583029,35926298:15660899 +g1,18165:32583029,35926298 +) +v1,18167:6630773,36611153:0,393216,0 +(1,18173:6630773,38321546:25952256,2103609,196608 +g1,18173:6630773,38321546 +g1,18173:6630773,38321546 +g1,18173:6434165,38321546 +(1,18173:6434165,38321546:0,2103609,196608 +r1,18184:32779637,38321546:26345472,2300217,196608 +k1,18173:6434165,38321546:-26345472 +) +(1,18173:6434165,38321546:26345472,2103609,196608 +[1,18173:6630773,38321546:25952256,1907001,0 +(1,18169:6630773,36838984:25952256,424439,112852 +(1,18168:6630773,36838984:0,0,0 +g1,18168:6630773,36838984 +g1,18168:6630773,36838984 +g1,18168:6303093,36838984 +(1,18168:6303093,36838984:0,0,0 +) +g1,18168:6630773,36838984 +) +k1,18169:6630773,36838984:0 +g1,18169:10614221,36838984 +g1,18169:11278129,36838984 +k1,18169:11278129,36838984:0 +h1,18169:13601807,36838984:0,0,0 +k1,18169:32583029,36838984:18981222 +g1,18169:32583029,36838984 +) +(1,18170:6630773,37523839:25952256,431045,112852 +h1,18170:6630773,37523839:0,0,0 +g1,18170:6962727,37523839 +g1,18170:7294681,37523839 +g1,18170:7626635,37523839 +g1,18170:7958589,37523839 +g1,18170:8290543,37523839 +g1,18170:8622497,37523839 +g1,18170:8954451,37523839 +g1,18170:10946175,37523839 +g1,18170:11610083,37523839 +g1,18170:13269853,37523839 +g1,18170:13933761,37523839 +g1,18170:14597669,37523839 +g1,18170:19576978,37523839 +g1,18170:21236748,37523839 +g1,18170:21900656,37523839 +g1,18170:24224334,37523839 +h1,18170:24556288,37523839:0,0,0 +k1,18170:32583029,37523839:8026741 +g1,18170:32583029,37523839 +) +(1,18171:6630773,38208694:25952256,424439,112852 +h1,18171:6630773,38208694:0,0,0 +g1,18171:6962727,38208694 +g1,18171:7294681,38208694 +g1,18171:13601805,38208694 +g1,18171:14265713,38208694 +h1,18171:16921345,38208694:0,0,0 +k1,18171:32583029,38208694:15661684 +g1,18171:32583029,38208694 +) +] +) +g1,18173:32583029,38321546 +g1,18173:6630773,38321546 +g1,18173:6630773,38321546 +g1,18173:32583029,38321546 +g1,18173:32583029,38321546 +) +h1,18173:6630773,38518154:0,0,0 +] +(1,18184:32583029,45706769:0,0,0 +g1,18184:32583029,45706769 +) +) +] +(1,18184:6630773,47279633:25952256,0,0 +h1,18184:6630773,47279633:25952256,0,0 +) +] +(1,18184:4262630,4025873:0,0,0 +[1,18184:-473656,4025873:0,0,0 +(1,18184:-473656,-710413:0,0,0 +(1,18184:-473656,-710413:0,0,0 +g1,18184:-473656,-710413 +) +g1,18184:-473656,-710413 +) +] +) +] +!25464 +}300 +Input:2747:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2748:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2749:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2750:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2751:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2752:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2753:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2754:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2755:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2756:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2757:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2758:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2759:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2760:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2761:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2762:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1516 +{301 +[1,18220:4262630,47279633:28320399,43253760,0 +(1,18220:4262630,4025873:0,0,0 +[1,18220:-473656,4025873:0,0,0 +(1,18220:-473656,-710413:0,0,0 +(1,18220:-473656,-644877:0,0,0 +k1,18220:-473656,-644877:-65536 ) -(1,18123:-473656,4736287:0,0,0 -k1,18123:-473656,4736287:5209943 +(1,18220:-473656,4736287:0,0,0 +k1,18220:-473656,4736287:5209943 ) -g1,18123:-473656,-710413 +g1,18220:-473656,-710413 ) ] ) -[1,18123:6630773,47279633:25952256,43253760,0 -[1,18123:6630773,4812305:25952256,786432,0 -(1,18123:6630773,4812305:25952256,485622,11795 -(1,18123:6630773,4812305:25952256,485622,11795 -g1,18123:3078558,4812305 -[1,18123:3078558,4812305:0,0,0 -(1,18123:3078558,2439708:0,1703936,0 -k1,18123:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,18123:2537886,2439708:1179648,16384,0 +[1,18220:6630773,47279633:25952256,43253760,0 +[1,18220:6630773,4812305:25952256,786432,0 +(1,18220:6630773,4812305:25952256,513147,126483 +(1,18220:6630773,4812305:25952256,513147,126483 +g1,18220:3078558,4812305 +[1,18220:3078558,4812305:0,0,0 +(1,18220:3078558,2439708:0,1703936,0 +k1,18220:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,18220:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,18123:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,18220:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,18123:3078558,4812305:0,0,0 -(1,18123:3078558,2439708:0,1703936,0 -g1,18123:29030814,2439708 -g1,18123:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,18123:36151628,1915420:16384,1179648,0 +[1,18220:3078558,4812305:0,0,0 +(1,18220:3078558,2439708:0,1703936,0 +g1,18220:29030814,2439708 +g1,18220:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,18220:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,18123:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,18220:37855564,2439708:1179648,16384,0 ) ) -k1,18123:3078556,2439708:-34777008 +k1,18220:3078556,2439708:-34777008 ) ] -[1,18123:3078558,4812305:0,0,0 -(1,18123:3078558,49800853:0,16384,2228224 -k1,18123:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,18123:2537886,49800853:1179648,16384,0 +[1,18220:3078558,4812305:0,0,0 +(1,18220:3078558,49800853:0,16384,2228224 +k1,18220:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,18220:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,18123:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,18220:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,18123:3078558,4812305:0,0,0 -(1,18123:3078558,49800853:0,16384,2228224 -g1,18123:29030814,49800853 -g1,18123:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,18123:36151628,51504789:16384,1179648,0 +[1,18220:3078558,4812305:0,0,0 +(1,18220:3078558,49800853:0,16384,2228224 +g1,18220:29030814,49800853 +g1,18220:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,18220:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,18123:37855564,49800853:1179648,16384,0 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,18220:37855564,49800853:1179648,16384,0 ) ) -k1,18123:3078556,49800853:-34777008 +k1,18220:3078556,49800853:-34777008 ) ] -g1,18123:6630773,4812305 -g1,18123:6630773,4812305 -g1,18123:10347975,4812305 -k1,18123:31387651,4812305:21039676 +g1,18220:6630773,4812305 +k1,18220:21350816,4812305:13524666 +g1,18220:21999622,4812305 +g1,18220:25611966,4812305 +g1,18220:28956923,4812305 +g1,18220:29772190,4812305 ) ) ] -[1,18123:6630773,45706769:25952256,40108032,0 -(1,18123:6630773,45706769:25952256,40108032,0 -(1,18123:6630773,45706769:0,0,0 -g1,18123:6630773,45706769 -) -[1,18123:6630773,45706769:25952256,40108032,0 -(1,18070:6630773,14682403:25952256,9083666,0 -k1,18070:10523651,14682403:3892878 -h1,18069:10523651,14682403:0,0,0 -(1,18069:10523651,14682403:18166500,9083666,0 -(1,18069:10523651,14682403:18167376,9083688,0 -(1,18069:10523651,14682403:18167376,9083688,0 -(1,18069:10523651,14682403:0,9083688,0 -(1,18069:10523651,14682403:0,14208860,0 -(1,18069:10523651,14682403:28417720,14208860,0 +[1,18220:6630773,45706769:25952256,40108032,0 +(1,18220:6630773,45706769:25952256,40108032,0 +(1,18220:6630773,45706769:0,0,0 +g1,18220:6630773,45706769 ) -k1,18069:10523651,14682403:-28417720 +[1,18220:6630773,45706769:25952256,40108032,0 +(1,18176:6630773,14682403:25952256,9083666,0 +k1,18176:10523651,14682403:3892878 +h1,18175:10523651,14682403:0,0,0 +(1,18175:10523651,14682403:18166500,9083666,0 +(1,18175:10523651,14682403:18167376,9083688,0 +(1,18175:10523651,14682403:18167376,9083688,0 +(1,18175:10523651,14682403:0,9083688,0 +(1,18175:10523651,14682403:0,14208860,0 +(1,18175:10523651,14682403:28417720,14208860,0 ) +k1,18175:10523651,14682403:-28417720 ) -g1,18069:28691027,14682403 ) +g1,18175:28691027,14682403 ) ) -g1,18070:28690151,14682403 -k1,18070:32583029,14682403:3892878 -) -v1,18077:6630773,15976546:0,393216,0 -(1,18078:6630773,18214906:25952256,2631576,0 -g1,18078:6630773,18214906 -g1,18078:6303093,18214906 -r1,18123:6401397,18214906:98304,2631576,0 -g1,18078:6600626,18214906 -g1,18078:6797234,18214906 -[1,18078:6797234,18214906:25785795,2631576,0 -(1,18078:6797234,16409084:25785795,825754,196608 -(1,18077:6797234,16409084:0,825754,196608 -r1,18123:7890375,16409084:1093141,1022362,196608 -k1,18077:6797234,16409084:-1093141 -) -(1,18077:6797234,16409084:1093141,825754,196608 -) -k1,18077:8209024,16409084:318649 -k1,18077:9935242,16409084:327680 -k1,18077:12616464,16409084:318649 -k1,18077:13954198,16409084:318649 -k1,18077:17345175,16409084:318649 -k1,18077:18315252,16409084:318649 -(1,18077:18315252,16409084:0,452978,115847 -r1,18123:21135501,16409084:2820249,568825,115847 -k1,18077:18315252,16409084:-2820249 -) -(1,18077:18315252,16409084:2820249,452978,115847 -k1,18077:18315252,16409084:3277 -h1,18077:21132224,16409084:0,411205,112570 -) -k1,18077:21627821,16409084:318650 -k1,18077:22629355,16409084:318649 -k1,18077:23757374,16409084:318649 -k1,18077:25095108,16409084:318649 -k1,18077:27679337,16409084:318649 -k1,18077:28745752,16409084:318649 -k1,18077:31090119,16409084:318649 -k1,18077:32583029,16409084:0 -) -(1,18078:6797234,17250572:25785795,513147,134348 -k1,18077:8200524,17250572:232817 -k1,18077:12098113,17250572:232816 -k1,18077:13119328,17250572:232817 -k1,18077:15122927,17250572:232816 -k1,18077:16165114,17250572:232817 -k1,18077:17417015,17250572:232816 -k1,18077:19678827,17250572:232817 -k1,18077:21545456,17250572:232816 -k1,18077:22309770,17250572:232817 -k1,18077:23561671,17250572:232816 -k1,18077:26980848,17250572:232817 -k1,18077:29848867,17250572:232816 -k1,18078:32583029,17250572:0 -) -(1,18078:6797234,18092060:25785795,505283,122846 -(1,18077:6797234,18092060:0,452978,115847 -r1,18123:10320906,18092060:3523672,568825,115847 -k1,18077:6797234,18092060:-3523672 -) -(1,18077:6797234,18092060:3523672,452978,115847 -k1,18077:6797234,18092060:3277 -h1,18077:10317629,18092060:0,411205,112570 -) -g1,18077:10693805,18092060 -(1,18077:10693805,18092060:0,452978,122846 -r1,18123:13162342,18092060:2468537,575824,122846 -k1,18077:10693805,18092060:-2468537 -) -(1,18077:10693805,18092060:2468537,452978,122846 -k1,18077:10693805,18092060:3277 -h1,18077:13159065,18092060:0,411205,112570 -) -g1,18077:13361571,18092060 -g1,18077:14752245,18092060 -(1,18077:14752245,18092060:0,452978,115847 -r1,18123:17220782,18092060:2468537,568825,115847 -k1,18077:14752245,18092060:-2468537 -) -(1,18077:14752245,18092060:2468537,452978,115847 -k1,18077:14752245,18092060:3277 -h1,18077:17217505,18092060:0,411205,112570 -) -k1,18078:32583029,18092060:15035222 -g1,18078:32583029,18092060 -) -] -g1,18078:32583029,18214906 -) -h1,18078:6630773,18214906:0,0,0 -v1,18081:6630773,19509049:0,393216,0 -(1,18082:6630773,21740410:25952256,2624577,0 -g1,18082:6630773,21740410 -g1,18082:6303093,21740410 -r1,18123:6401397,21740410:98304,2624577,0 -g1,18082:6600626,21740410 -g1,18082:6797234,21740410 -[1,18082:6797234,21740410:25785795,2624577,0 -(1,18082:6797234,19941587:25785795,825754,196608 -(1,18081:6797234,19941587:0,825754,196608 -r1,18123:7890375,19941587:1093141,1022362,196608 -k1,18081:6797234,19941587:-1093141 -) -(1,18081:6797234,19941587:1093141,825754,196608 -) -k1,18081:8091688,19941587:201313 -k1,18081:9817906,19941587:327680 -k1,18081:11168065,19941587:201313 -k1,18081:14457434,19941587:201313 -k1,18081:15344909,19941587:201313 -k1,18081:18948851,19941587:201313 -k1,18081:20097815,19941587:201313 -k1,18081:23363592,19941587:201313 -k1,18081:24247790,19941587:201313 -k1,18081:25845675,19941587:201313 -k1,18081:28558328,19941587:201313 -(1,18081:28558328,19941587:0,414482,115847 -r1,18123:31730288,19941587:3171960,530329,115847 -k1,18081:28558328,19941587:-3171960 -) -(1,18081:28558328,19941587:3171960,414482,115847 -k1,18081:28558328,19941587:3277 -h1,18081:31727011,19941587:0,411205,112570 -) -k1,18081:31931601,19941587:201313 -k1,18081:32583029,19941587:0 -) -(1,18082:6797234,20783075:25785795,513147,126483 -k1,18081:8175603,20783075:221659 -k1,18081:9080147,20783075:221659 -k1,18081:10952003,20783075:221659 -k1,18081:11832953,20783075:221658 -k1,18081:13073697,20783075:221659 -k1,18081:16359820,20783075:221659 -k1,18081:18094705,20783075:221659 -k1,18081:19077892,20783075:221659 -(1,18081:19077892,20783075:0,452978,122846 -r1,18123:22601564,20783075:3523672,575824,122846 -k1,18081:19077892,20783075:-3523672 -) -(1,18081:19077892,20783075:3523672,452978,122846 -k1,18081:19077892,20783075:3277 -h1,18081:22598287,20783075:0,411205,112570 -) -k1,18081:22996893,20783075:221659 -k1,18081:24712117,20783075:221658 -k1,18081:25619938,20783075:221659 -(1,18081:25619938,20783075:0,452978,115847 -r1,18123:27385051,20783075:1765113,568825,115847 -k1,18081:25619938,20783075:-1765113 -) -(1,18081:25619938,20783075:1765113,452978,115847 -k1,18081:25619938,20783075:3277 -h1,18081:27381774,20783075:0,411205,112570 -) -k1,18081:27780380,20783075:221659 -(1,18081:27780380,20783075:0,459977,115847 -r1,18123:29193781,20783075:1413401,575824,115847 -k1,18081:27780380,20783075:-1413401 -) -(1,18081:27780380,20783075:1413401,459977,115847 -k1,18081:27780380,20783075:3277 -h1,18081:29190504,20783075:0,411205,112570 -) -k1,18081:29589110,20783075:221659 -(1,18081:29589110,20783075:0,452978,115847 -r1,18123:32409359,20783075:2820249,568825,115847 -k1,18081:29589110,20783075:-2820249 -) -(1,18081:29589110,20783075:2820249,452978,115847 -k1,18081:29589110,20783075:3277 -h1,18081:32406082,20783075:0,411205,112570 -) -k1,18082:32583029,20783075:0 -) -(1,18082:6797234,21624563:25785795,505283,115847 -(1,18081:6797234,21624563:0,452978,115847 -r1,18123:8210635,21624563:1413401,568825,115847 -k1,18081:6797234,21624563:-1413401 -) -(1,18081:6797234,21624563:1413401,452978,115847 -k1,18081:6797234,21624563:3277 -h1,18081:8207358,21624563:0,411205,112570 -) -g1,18081:8583534,21624563 -(1,18081:8583534,21624563:0,452978,115847 -r1,18123:10348647,21624563:1765113,568825,115847 -k1,18081:8583534,21624563:-1765113 -) -(1,18081:8583534,21624563:1765113,452978,115847 -k1,18081:8583534,21624563:3277 -h1,18081:10345370,21624563:0,411205,112570 -) -g1,18081:10547876,21624563 -g1,18081:11938550,21624563 -(1,18081:11938550,21624563:0,452978,115847 -r1,18123:13703663,21624563:1765113,568825,115847 -k1,18081:11938550,21624563:-1765113 -) -(1,18081:11938550,21624563:1765113,452978,115847 -k1,18081:11938550,21624563:3277 -h1,18081:13700386,21624563:0,411205,112570 -) -k1,18082:32583029,21624563:18705696 -g1,18082:32583029,21624563 -) -] -g1,18082:32583029,21740410 -) -h1,18082:6630773,21740410:0,0,0 -(1,18087:6630773,24284325:25952256,555811,12975 -(1,18087:6630773,24284325:2450326,534184,12975 -g1,18087:6630773,24284325 -g1,18087:9081099,24284325 -) -k1,18087:32583030,24284325:21735736 -g1,18087:32583030,24284325 -) -(1,18091:6630773,25519029:25952256,505283,134348 -k1,18090:7807234,25519029:222912 -k1,18090:9134427,25519029:222911 -k1,18090:10943310,25519029:222912 -k1,18090:13307282,25519029:222911 -k1,18090:14213079,25519029:222912 -k1,18090:18071272,25519029:222911 -k1,18090:19635051,25519029:222912 -k1,18090:21251913,25519029:222911 -(1,18090:21251913,25519029:0,452978,122846 -r1,18123:25127297,25519029:3875384,575824,122846 -k1,18090:21251913,25519029:-3875384 -) -(1,18090:21251913,25519029:3875384,452978,122846 -k1,18090:21251913,25519029:3277 -h1,18090:25124020,25519029:0,411205,112570 -) -k1,18090:25350209,25519029:222912 -k1,18090:28836158,25519029:222911 -k1,18090:30069635,25519029:222912 -k1,18090:31900144,25519029:222911 -k1,18090:32583029,25519029:0 -) -(1,18091:6630773,26360517:25952256,505283,126483 -g1,18090:8954679,26360517 -g1,18090:10528853,26360517 -k1,18091:32583029,26360517:20153632 -g1,18091:32583029,26360517 -) -(1,18093:6630773,27202005:25952256,513147,134348 -h1,18092:6630773,27202005:983040,0,0 -k1,18092:8813832,27202005:246470 -k1,18092:10458185,27202005:246470 -k1,18092:13436851,27202005:246470 -k1,18092:14878698,27202005:246470 -k1,18092:17619468,27202005:246470 -k1,18092:19782211,27202005:246470 -k1,18092:21596301,27202005:246469 -k1,18092:22861856,27202005:246470 -$1,18092:22861856,27202005 -$1,18092:23306845,27202005 -k1,18092:23553315,27202005:246470 -k1,18092:27581212,27202005:246470 -k1,18092:29221633,27202005:246470 -k1,18092:31923737,27202005:246470 -k1,18092:32583029,27202005:0 -) -(1,18093:6630773,28043493:25952256,513147,102892 -g1,18092:9513046,28043493 -$1,18092:9513046,28043493 -(1,18092:9919371,28141807:311689,334430,0 -) -g1,18092:10413120,28043493 -g1,18092:11163377,28043493 -g1,18092:11860471,28043493 -(1,18092:12266796,28141807:311689,339935,0 -) -g1,18092:12760545,28043493 -g1,18092:13510802,28043493 -$1,18092:14307720,28043493 -k1,18093:32583030,28043493:18101640 -g1,18093:32583030,28043493 -) -v1,18095:6630773,29162327:0,393216,0 -(1,18102:6630773,31469666:25952256,2700555,196608 -g1,18102:6630773,31469666 -g1,18102:6630773,31469666 -g1,18102:6434165,31469666 -(1,18102:6434165,31469666:0,2700555,196608 -r1,18123:32779637,31469666:26345472,2897163,196608 -k1,18102:6434165,31469666:-26345472 -) -(1,18102:6434165,31469666:26345472,2700555,196608 -[1,18102:6630773,31469666:25952256,2503947,0 -(1,18097:6630773,29369945:25952256,404226,76021 -(1,18096:6630773,29369945:0,0,0 -g1,18096:6630773,29369945 -g1,18096:6630773,29369945 -g1,18096:6303093,29369945 -(1,18096:6303093,29369945:0,0,0 -) -g1,18096:6630773,29369945 -) -k1,18097:6630773,29369945:0 -h1,18097:11056813,29369945:0,0,0 -k1,18097:32583029,29369945:21526216 -g1,18097:32583029,29369945 -) -(1,18098:6630773,30036123:25952256,410518,82312 -h1,18098:6630773,30036123:0,0,0 -g1,18098:10108376,30036123 -g1,18098:11056814,30036123 -g1,18098:17063583,30036123 -g1,18098:17695875,30036123 -g1,18098:20225041,30036123 -g1,18098:21489624,30036123 -g1,18098:22121916,30036123 -g1,18098:23070354,30036123 -g1,18098:24334937,30036123 -g1,18098:24967229,30036123 -k1,18098:24967229,30036123:0 -h1,18098:26231812,30036123:0,0,0 -k1,18098:32583029,30036123:6351217 -g1,18098:32583029,30036123 -) -(1,18099:6630773,30702301:25952256,404226,101187 -h1,18099:6630773,30702301:0,0,0 -g1,18099:6946919,30702301 -g1,18099:7263065,30702301 -g1,18099:7579211,30702301 -g1,18099:7895357,30702301 -g1,18099:8211503,30702301 -g1,18099:8527649,30702301 -g1,18099:8843795,30702301 -g1,18099:9159941,30702301 -g1,18099:9476087,30702301 -g1,18099:9792233,30702301 -g1,18099:10108379,30702301 -g1,18099:10424525,30702301 -g1,18099:10740671,30702301 -g1,18099:11056817,30702301 -g1,18099:11372963,30702301 -g1,18099:11689109,30702301 -g1,18099:12005255,30702301 -g1,18099:12321401,30702301 -g1,18099:12637547,30702301 -g1,18099:12953693,30702301 -g1,18099:13269839,30702301 -g1,18099:13585985,30702301 -g1,18099:13902131,30702301 -g1,18099:14218277,30702301 -g1,18099:14534423,30702301 -g1,18099:15166715,30702301 -g1,18099:15799007,30702301 -g1,18099:21805776,30702301 -k1,18099:21805776,30702301:0 -h1,18099:23070359,30702301:0,0,0 -k1,18099:32583029,30702301:9512670 -g1,18099:32583029,30702301 -) -(1,18100:6630773,31368479:25952256,404226,101187 -h1,18100:6630773,31368479:0,0,0 -g1,18100:6946919,31368479 -g1,18100:7263065,31368479 -g1,18100:7579211,31368479 -g1,18100:7895357,31368479 -g1,18100:8211503,31368479 -g1,18100:8527649,31368479 -g1,18100:8843795,31368479 -g1,18100:9159941,31368479 -g1,18100:9476087,31368479 -g1,18100:9792233,31368479 -g1,18100:10108379,31368479 -g1,18100:10424525,31368479 -g1,18100:10740671,31368479 -g1,18100:11056817,31368479 -g1,18100:11372963,31368479 -g1,18100:11689109,31368479 -g1,18100:12005255,31368479 -g1,18100:12321401,31368479 -g1,18100:12637547,31368479 -g1,18100:12953693,31368479 -g1,18100:13269839,31368479 -g1,18100:13585985,31368479 -g1,18100:13902131,31368479 -g1,18100:14218277,31368479 -g1,18100:14534423,31368479 -g1,18100:15166715,31368479 -g1,18100:15799007,31368479 -g1,18100:21489630,31368479 -g1,18100:24018796,31368479 -h1,18100:25915670,31368479:0,0,0 -k1,18100:32583029,31368479:6667359 -g1,18100:32583029,31368479 -) -] -) -g1,18102:32583029,31469666 -g1,18102:6630773,31469666 -g1,18102:6630773,31469666 -g1,18102:32583029,31469666 -g1,18102:32583029,31469666 -) -h1,18102:6630773,31666274:0,0,0 -(1,18106:6630773,32960417:25952256,513147,138281 -h1,18105:6630773,32960417:983040,0,0 -(1,18105:7613813,32960417:0,452978,122846 -r1,18123:11489197,32960417:3875384,575824,122846 -k1,18105:7613813,32960417:-3875384 -) -(1,18105:7613813,32960417:3875384,452978,122846 -k1,18105:7613813,32960417:3277 -h1,18105:11485920,32960417:0,411205,112570 -) -k1,18105:11625854,32960417:136657 -k1,18105:14384606,32960417:136657 -k1,18105:17695827,32960417:136657 -$1,18105:17695827,32960417 -$1,18105:18198488,32960417 -k1,18105:18335145,32960417:136657 -k1,18105:19663247,32960417:136657 -$1,18105:19663247,32960417 -$1,18105:20215060,32960417 -k1,18105:20525387,32960417:136657 -k1,18105:22055995,32960417:136657 -k1,18105:23002022,32960417:136657 -k1,18105:25908230,32960417:136657 -k1,18105:27236332,32960417:136657 -(1,18105:27236332,32960417:0,452978,115847 -r1,18123:29001445,32960417:1765113,568825,115847 -k1,18105:27236332,32960417:-1765113 -) -(1,18105:27236332,32960417:1765113,452978,115847 -k1,18105:27236332,32960417:3277 -h1,18105:28998168,32960417:0,411205,112570 -) -k1,18105:29138102,32960417:136657 -k1,18105:30466204,32960417:136657 -(1,18105:30466204,32960417:0,452978,122846 -r1,18123:32583029,32960417:2116825,575824,122846 -k1,18105:30466204,32960417:-2116825 -) -(1,18105:30466204,32960417:2116825,452978,122846 -k1,18105:30466204,32960417:3277 -h1,18105:32579752,32960417:0,411205,112570 -) -k1,18105:32583029,32960417:0 -) -(1,18106:6630773,33801905:25952256,513147,134348 -g1,18105:8223953,33801905 -g1,18105:11019063,33801905 -g1,18105:12502798,33801905 -g1,18105:14417760,33801905 -g1,18105:15383105,33801905 -g1,18105:16923201,33801905 -g1,18105:17781722,33801905 -g1,18105:19708480,33801905 -g1,18105:21176486,33801905 -g1,18105:23206791,33801905 -g1,18105:24425105,33801905 -g1,18105:27148781,33801905 -k1,18106:32583029,33801905:3913157 -g1,18106:32583029,33801905 -) -v1,18108:6630773,34920738:0,393216,0 -(1,18113:6630773,35908304:25952256,1380782,196608 -g1,18113:6630773,35908304 -g1,18113:6630773,35908304 -g1,18113:6434165,35908304 -(1,18113:6434165,35908304:0,1380782,196608 -r1,18123:32779637,35908304:26345472,1577390,196608 -k1,18113:6434165,35908304:-26345472 -) -(1,18113:6434165,35908304:26345472,1380782,196608 -[1,18113:6630773,35908304:25952256,1184174,0 -(1,18110:6630773,35134648:25952256,410518,107478 -(1,18109:6630773,35134648:0,0,0 -g1,18109:6630773,35134648 -g1,18109:6630773,35134648 -g1,18109:6303093,35134648 -(1,18109:6303093,35134648:0,0,0 -) -g1,18109:6630773,35134648 -) -k1,18110:6630773,35134648:0 -g1,18110:12637541,35134648 -g1,18110:14850561,35134648 -g1,18110:15798999,35134648 -g1,18110:17379728,35134648 -g1,18110:18012020,35134648 -g1,18110:21173477,35134648 -h1,18110:21489623,35134648:0,0,0 -k1,18110:32583029,35134648:11093406 -g1,18110:32583029,35134648 -) -(1,18111:6630773,35800826:25952256,404226,107478 -h1,18111:6630773,35800826:0,0,0 -g1,18111:6946919,35800826 -g1,18111:7263065,35800826 -k1,18111:7263065,35800826:0 -h1,18111:10740667,35800826:0,0,0 -k1,18111:32583029,35800826:21842362 -g1,18111:32583029,35800826 -) -] -) -g1,18113:32583029,35908304 -g1,18113:6630773,35908304 -g1,18113:6630773,35908304 -g1,18113:32583029,35908304 -g1,18113:32583029,35908304 -) -h1,18113:6630773,36104912:0,0,0 -(1,18116:6630773,45706769:25952256,9083666,0 -k1,18116:10523651,45706769:3892878 -h1,18115:10523651,45706769:0,0,0 -(1,18115:10523651,45706769:18166500,9083666,0 -(1,18115:10523651,45706769:18167376,9083688,0 -(1,18115:10523651,45706769:18167376,9083688,0 -(1,18115:10523651,45706769:0,9083688,0 -(1,18115:10523651,45706769:0,14208860,0 -(1,18115:10523651,45706769:28417720,14208860,0 -) -k1,18115:10523651,45706769:-28417720 ) +g1,18176:28690151,14682403 +k1,18176:32583029,14682403:3892878 +) +(1,18185:6630773,15547483:25952256,513147,134348 +h1,18184:6630773,15547483:983040,0,0 +k1,18184:10249408,15547483:359530 +k1,18184:12263723,15547483:359531 +k1,18184:16063238,15547483:359530 +k1,18184:17370420,15547483:359531 +k1,18184:20306170,15547483:359530 +k1,18184:22164508,15547483:359530 +k1,18184:24556966,15547483:359531 +k1,18184:25935581,15547483:359530 +k1,18184:28177961,15547483:359531 +k1,18184:31061938,15547483:359530 +k1,18185:32583029,15547483:0 +) +(1,18185:6630773,16412563:25952256,513147,122846 +(1,18184:6630773,16412563:0,452978,122846 +r1,18220:10857869,16412563:4227096,575824,122846 +k1,18184:6630773,16412563:-4227096 +) +(1,18184:6630773,16412563:4227096,452978,122846 +k1,18184:6630773,16412563:3277 +h1,18184:10854592,16412563:0,411205,112570 +) +k1,18184:11210614,16412563:179075 +(1,18184:11210614,16412563:0,452978,122846 +r1,18220:15437710,16412563:4227096,575824,122846 +k1,18184:11210614,16412563:-4227096 +) +(1,18184:11210614,16412563:4227096,452978,122846 +k1,18184:11210614,16412563:3277 +h1,18184:15434433,16412563:0,411205,112570 +) +k1,18184:15616785,16412563:179075 +k1,18184:16987305,16412563:179075 +(1,18184:16987305,16412563:0,452978,122846 +r1,18220:21566113,16412563:4578808,575824,122846 +k1,18184:16987305,16412563:-4578808 +) +(1,18184:16987305,16412563:4578808,452978,122846 +k1,18184:16987305,16412563:3277 +h1,18184:21562836,16412563:0,411205,112570 +) +k1,18184:21918858,16412563:179075 +k1,18184:23294619,16412563:179074 +k1,18184:24779827,16412563:179075 +k1,18184:26131341,16412563:179075 +k1,18184:27896387,16412563:179075 +k1,18184:31391584,16412563:179075 +k1,18184:32583029,16412563:0 +) +(1,18185:6630773,17277643:25952256,505283,134348 +k1,18184:9235829,17277643:259522 +k1,18184:11167831,17277643:259523 +k1,18184:15397524,17277643:259522 +k1,18184:17346565,17277643:259523 +k1,18184:18625172,17277643:259522 +k1,18184:20466734,17277643:259523 +k1,18184:21882966,17277643:259522 +k1,18184:24058762,17277643:259523 +k1,18184:26796856,17277643:259522 +k1,18184:28555187,17277643:259523 +k1,18184:31931601,17277643:259522 +k1,18184:32583029,17277643:0 +) +(1,18185:6630773,18142723:25952256,505283,134348 +k1,18184:7827676,18142723:177818 +k1,18184:11069959,18142723:177819 +(1,18184:11069959,18142723:0,452978,115847 +r1,18220:12835072,18142723:1765113,568825,115847 +k1,18184:11069959,18142723:-1765113 +) +(1,18184:11069959,18142723:1765113,452978,115847 +k1,18184:11069959,18142723:3277 +h1,18184:12831795,18142723:0,411205,112570 +) +k1,18184:13012890,18142723:177818 +k1,18184:14382153,18142723:177818 +(1,18184:14382153,18142723:0,452978,115847 +r1,18220:17554113,18142723:3171960,568825,115847 +k1,18184:14382153,18142723:-3171960 +) +(1,18184:14382153,18142723:3171960,452978,115847 +k1,18184:14382153,18142723:3277 +h1,18184:17550836,18142723:0,411205,112570 +) +k1,18184:17731932,18142723:177819 +k1,18184:21796690,18142723:177818 +k1,18184:22993594,18142723:177819 +k1,18184:25959314,18142723:177818 +k1,18184:27333819,18142723:177818 +k1,18184:29010446,18142723:177819 +k1,18184:31189078,18142723:177818 +k1,18184:32583029,18142723:0 +) +(1,18185:6630773,19007803:25952256,513147,134348 +g1,18184:8526729,19007803 +g1,18184:10380742,19007803 +g1,18184:12646321,19007803 +g1,18184:14997752,19007803 +g1,18184:15848409,19007803 +g1,18184:17066723,19007803 +g1,18184:18755585,19007803 +g1,18184:19614106,19007803 +g1,18184:20832420,19007803 +g1,18184:23556096,19007803 +k1,18185:32583029,19007803:7505842 +g1,18185:32583029,19007803 +) +(1,18187:6630773,19872883:25952256,505283,134348 +h1,18186:6630773,19872883:983040,0,0 +(1,18186:7613813,19872883:0,452978,122846 +r1,18220:11840909,19872883:4227096,575824,122846 +k1,18186:7613813,19872883:-4227096 +) +(1,18186:7613813,19872883:4227096,452978,122846 +k1,18186:7613813,19872883:3277 +h1,18186:11837632,19872883:0,411205,112570 +) +k1,18186:12224641,19872883:383732 +k1,18186:13799818,19872883:383732 +(1,18186:13799818,19872883:0,452978,122846 +r1,18220:18026914,19872883:4227096,575824,122846 +k1,18186:13799818,19872883:-4227096 +) +(1,18186:13799818,19872883:4227096,452978,122846 +k1,18186:13799818,19872883:3277 +h1,18186:18023637,19872883:0,411205,112570 +) +k1,18186:18410646,19872883:383732 +k1,18186:21086172,19872883:383732 +k1,18186:21825764,19872883:383732 +k1,18186:24082515,19872883:383732 +k1,18186:27484180,19872883:383732 +(1,18186:27484180,19872883:0,452978,115847 +r1,18220:31007852,19872883:3523672,568825,115847 +k1,18186:27484180,19872883:-3523672 +) +(1,18186:27484180,19872883:3523672,452978,115847 +k1,18186:27484180,19872883:3277 +h1,18186:31004575,19872883:0,411205,112570 +) +k1,18186:31391584,19872883:383732 +k1,18187:32583029,19872883:0 +) +(1,18187:6630773,20737963:25952256,513147,134348 +(1,18186:6630773,20737963:0,452978,115847 +r1,18220:10154445,20737963:3523672,568825,115847 +k1,18186:6630773,20737963:-3523672 +) +(1,18186:6630773,20737963:3523672,452978,115847 +k1,18186:6630773,20737963:3277 +h1,18186:10151168,20737963:0,411205,112570 +) +k1,18186:10498397,20737963:170282 +k1,18186:14638851,20737963:170283 +k1,18186:17654051,20737963:170282 +k1,18186:19391954,20737963:170282 +k1,18186:21264206,20737963:170282 +k1,18186:23674510,20737963:170283 +k1,18186:24863877,20737963:170282 +k1,18186:26423522,20737963:170282 +k1,18186:27541456,20737963:170283 +k1,18186:29408465,20737963:170282 +k1,18186:32583029,20737963:0 +) +(1,18187:6630773,21603043:25952256,513147,134348 +k1,18186:7877530,21603043:142475 +k1,18186:9305821,21603043:142475 +k1,18186:10196063,21603043:142476 +k1,18186:12543825,21603043:142475 +k1,18186:13372462,21603043:142475 +k1,18186:16272692,21603043:142475 +k1,18186:19035296,21603043:142475 +k1,18186:21659620,21603043:142476 +k1,18186:22998782,21603043:142475 +k1,18186:25272488,21603043:142475 +k1,18186:26362614,21603043:142475 +k1,18186:27708330,21603043:142475 +k1,18186:28382303,21603043:142476 +k1,18186:29809284,21603043:142475 +k1,18186:31648486,21603043:142475 +k1,18187:32583029,21603043:0 +) +(1,18187:6630773,22468123:25952256,513147,134348 +k1,18186:8155200,22468123:179628 +k1,18186:9326388,22468123:179628 +k1,18186:11107716,22468123:179628 +k1,18186:14592325,22468123:179628 +k1,18186:16285179,22468123:179628 +k1,18186:17116236,22468123:179629 +k1,18186:20092941,22468123:179628 +k1,18186:21880167,22468123:179628 +k1,18186:24011457,22468123:179628 +k1,18186:25633532,22468123:179628 +k1,18186:28337607,22468123:179628 +k1,18186:32583029,22468123:0 +) +(1,18187:6630773,23333203:25952256,513147,134348 +g1,18186:8303251,23333203 +g1,18186:10901098,23333203 +g1,18186:12384833,23333203 +g1,18186:13452414,23333203 +g1,18186:15200259,23333203 +g1,18186:16050916,23333203 +g1,18186:19107515,23333203 +g1,18186:20077447,23333203 +g1,18186:22000273,23333203 +g1,18186:22812264,23333203 +g1,18186:24030578,23333203 +g1,18186:25307219,23333203 +g1,18186:26165740,23333203 +g1,18186:27958805,23333203 +k1,18187:32583029,23333203:2982547 +g1,18187:32583029,23333203 +) +v1,18189:6630773,24018058:0,393216,0 +(1,18197:6630773,27098161:25952256,3473319,196608 +g1,18197:6630773,27098161 +g1,18197:6630773,27098161 +g1,18197:6434165,27098161 +(1,18197:6434165,27098161:0,3473319,196608 +r1,18220:32779637,27098161:26345472,3669927,196608 +k1,18197:6434165,27098161:-26345472 +) +(1,18197:6434165,27098161:26345472,3473319,196608 +[1,18197:6630773,27098161:25952256,3276711,0 +(1,18191:6630773,24245889:25952256,424439,112852 +(1,18190:6630773,24245889:0,0,0 +g1,18190:6630773,24245889 +g1,18190:6630773,24245889 +g1,18190:6303093,24245889 +(1,18190:6303093,24245889:0,0,0 +) +g1,18190:6630773,24245889 +) +k1,18191:6630773,24245889:0 +g1,18191:10614221,24245889 +g1,18191:11278129,24245889 +k1,18191:11278129,24245889:0 +h1,18191:13601807,24245889:0,0,0 +k1,18191:32583029,24245889:18981222 +g1,18191:32583029,24245889 +) +(1,18192:6630773,24930744:25952256,431045,112852 +h1,18192:6630773,24930744:0,0,0 +g1,18192:6962727,24930744 +g1,18192:7294681,24930744 +g1,18192:7626635,24930744 +g1,18192:7958589,24930744 +g1,18192:8290543,24930744 +g1,18192:8622497,24930744 +g1,18192:8954451,24930744 +g1,18192:10946175,24930744 +g1,18192:11610083,24930744 +g1,18192:13269853,24930744 +g1,18192:13933761,24930744 +g1,18192:14597669,24930744 +g1,18192:19576978,24930744 +g1,18192:21236748,24930744 +g1,18192:21900656,24930744 +g1,18192:24224334,24930744 +h1,18192:24556288,24930744:0,0,0 +k1,18192:32583029,24930744:8026741 +g1,18192:32583029,24930744 +) +(1,18193:6630773,25615599:25952256,424439,112852 +h1,18193:6630773,25615599:0,0,0 +g1,18193:6962727,25615599 +g1,18193:7294681,25615599 +g1,18193:13601805,25615599 +g1,18193:14265713,25615599 +g1,18193:17253299,25615599 +h1,18193:17585253,25615599:0,0,0 +k1,18193:32583029,25615599:14997776 +g1,18193:32583029,25615599 +) +(1,18194:6630773,26300454:25952256,424439,112852 +h1,18194:6630773,26300454:0,0,0 +g1,18194:6962727,26300454 +g1,18194:7294681,26300454 +g1,18194:14597667,26300454 +g1,18194:15261575,26300454 +g1,18194:17253299,26300454 +g1,18194:19245023,26300454 +g1,18194:19908931,26300454 +g1,18194:23228470,26300454 +h1,18194:23560424,26300454:0,0,0 +k1,18194:32583029,26300454:9022605 +g1,18194:32583029,26300454 +) +(1,18195:6630773,26985309:25952256,424439,112852 +h1,18195:6630773,26985309:0,0,0 +g1,18195:6962727,26985309 +g1,18195:7294681,26985309 +g1,18195:14597667,26985309 +g1,18195:15261575,26985309 +g1,18195:17253299,26985309 +g1,18195:20240884,26985309 +g1,18195:20904792,26985309 +h1,18195:23892377,26985309:0,0,0 +k1,18195:32583029,26985309:8690652 +g1,18195:32583029,26985309 +) +] +) +g1,18197:32583029,27098161 +g1,18197:6630773,27098161 +g1,18197:6630773,27098161 +g1,18197:32583029,27098161 +g1,18197:32583029,27098161 +) +h1,18197:6630773,27294769:0,0,0 +(1,18200:6630773,36443971:25952256,9083666,0 +k1,18200:10523651,36443971:3892878 +h1,18199:10523651,36443971:0,0,0 +(1,18199:10523651,36443971:18166500,9083666,0 +(1,18199:10523651,36443971:18167376,9083688,0 +(1,18199:10523651,36443971:18167376,9083688,0 +(1,18199:10523651,36443971:0,9083688,0 +(1,18199:10523651,36443971:0,14208860,0 +(1,18199:10523651,36443971:28417720,14208860,0 +) +k1,18199:10523651,36443971:-28417720 +) +) +g1,18199:28691027,36443971 +) +) +) +g1,18200:28690151,36443971 +k1,18200:32583029,36443971:3892878 +) +v1,18207:6630773,37309051:0,393216,0 +(1,18208:6630773,39438171:25952256,2522336,0 +g1,18208:6630773,39438171 +g1,18208:6237557,39438171 +r1,18220:6368629,39438171:131072,2522336,0 +g1,18208:6567858,39438171 +g1,18208:6764466,39438171 +[1,18208:6764466,39438171:25818563,2522336,0 +(1,18208:6764466,37581528:25818563,665693,196608 +(1,18207:6764466,37581528:0,665693,196608 +r1,18220:8010564,37581528:1246098,862301,196608 +k1,18207:6764466,37581528:-1246098 +) +(1,18207:6764466,37581528:1246098,665693,196608 +) +k1,18207:8203128,37581528:192564 +k1,18207:9929346,37581528:327680 +k1,18207:12484482,37581528:192563 +k1,18207:13696131,37581528:192564 +k1,18207:15628021,37581528:192564 +k1,18207:16479876,37581528:192563 +k1,18207:17691525,37581528:192564 +k1,18207:19538872,37581528:192563 +k1,18207:21619528,37581528:192564 +k1,18207:22428130,37581528:192564 +k1,18207:23639778,37581528:192563 +k1,18207:26493759,37581528:192564 +k1,18207:28715318,37581528:192564 +k1,18207:30328702,37581528:192563 +k1,18207:31563944,37581528:192564 +k1,18207:32583029,37581528:0 +) +(1,18208:6764466,38446608:25818563,513147,134348 +k1,18207:8806524,38446608:186734 +k1,18207:11560959,38446608:186734 +k1,18207:13381505,38446608:186733 +k1,18207:15307565,38446608:186734 +k1,18207:16025796,38446608:186734 +k1,18207:17874523,38446608:186734 +k1,18207:20102703,38446608:186734 +k1,18207:21308521,38446608:186733 +k1,18207:23148728,38446608:186734 +k1,18207:25074788,38446608:186734 +k1,18207:26009288,38446608:186734 +k1,18207:27215107,38446608:186734 +k1,18207:28736808,38446608:186733 +k1,18207:29871193,38446608:186734 +k1,18207:30413787,38446608:186734 +k1,18207:32583029,38446608:0 +) +(1,18208:6764466,39311688:25818563,505283,126483 +g1,18207:8568016,39311688 +g1,18207:10090417,39311688 +g1,18207:12245896,39311688 +g1,18207:12903222,39311688 +g1,18207:13850217,39311688 +g1,18207:17158474,39311688 +g1,18207:18009131,39311688 +g1,18207:19405703,39311688 +g1,18207:20777371,39311688 +(1,18207:20777371,39311688:0,452978,122846 +r1,18220:25004467,39311688:4227096,575824,122846 +k1,18207:20777371,39311688:-4227096 +) +(1,18207:20777371,39311688:4227096,452978,122846 +k1,18207:20777371,39311688:3277 +h1,18207:25001190,39311688:0,411205,112570 +) +g1,18207:25203696,39311688 +k1,18208:32583029,39311688:5164216 +g1,18208:32583029,39311688 +) +] +g1,18208:32583029,39438171 +) +h1,18208:6630773,39438171:0,0,0 +(1,18212:6630773,41554989:25952256,555811,12975 +(1,18212:6630773,41554989:2450326,534184,12975 +g1,18212:6630773,41554989 +g1,18212:9081099,41554989 +) +k1,18212:32583029,41554989:20670250 +g1,18212:32583029,41554989 +) +(1,18217:6630773,42813285:25952256,505283,134348 +k1,18216:8040871,42813285:213411 +k1,18216:11261728,42813285:213410 +(1,18216:11261728,42813285:0,452978,122846 +r1,18220:14785400,42813285:3523672,575824,122846 +k1,18216:11261728,42813285:-3523672 +) +(1,18216:11261728,42813285:3523672,452978,122846 +k1,18216:11261728,42813285:3277 +h1,18216:14782123,42813285:0,411205,112570 +) +k1,18216:14998811,42813285:213411 +k1,18216:16316503,42813285:213410 +k1,18216:17277680,42813285:213411 +k1,18216:19004316,42813285:213410 +k1,18216:19869155,42813285:213411 +k1,18216:22011945,42813285:213410 +k1,18216:24545986,42813285:213411 +k1,18216:26258205,42813285:213410 +k1,18216:28390510,42813285:213411 +k1,18216:30055542,42813285:213410 +k1,18216:31313597,42813285:213411 +k1,18217:32583029,42813285:0 +) +(1,18217:6630773,43678365:25952256,505283,7863 +g1,18216:9145389,43678365 +g1,18216:10115321,43678365 +g1,18216:14056000,43678365 +g1,18216:14938114,43678365 +g1,18216:16504424,43678365 +g1,18216:17319691,43678365 +g1,18216:18538005,43678365 +k1,18217:32583029,43678365:12481990 +g1,18217:32583029,43678365 +) +v1,18219:6630773,44543445:0,393216,0 +] +(1,18220:32583029,45706769:0,0,0 +g1,18220:32583029,45706769 +) +) +] +(1,18220:6630773,47279633:25952256,0,0 +h1,18220:6630773,47279633:25952256,0,0 +) +] +(1,18220:4262630,4025873:0,0,0 +[1,18220:-473656,4025873:0,0,0 +(1,18220:-473656,-710413:0,0,0 +(1,18220:-473656,-710413:0,0,0 +g1,18220:-473656,-710413 +) +g1,18220:-473656,-710413 +) +] +) +] +!17670 +}301 +Input:2763:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2764:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2765:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2766:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2767:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!482 +{302 +[1,18274:4262630,47279633:28320399,43253760,0 +(1,18274:4262630,4025873:0,0,0 +[1,18274:-473656,4025873:0,0,0 +(1,18274:-473656,-710413:0,0,0 +(1,18274:-473656,-644877:0,0,0 +k1,18274:-473656,-644877:-65536 +) +(1,18274:-473656,4736287:0,0,0 +k1,18274:-473656,4736287:5209943 +) +g1,18274:-473656,-710413 ) -g1,18115:28691027,45706769 +] ) +[1,18274:6630773,47279633:25952256,43253760,0 +[1,18274:6630773,4812305:25952256,786432,0 +(1,18274:6630773,4812305:25952256,485622,11795 +(1,18274:6630773,4812305:25952256,485622,11795 +g1,18274:3078558,4812305 +[1,18274:3078558,4812305:0,0,0 +(1,18274:3078558,2439708:0,1703936,0 +k1,18274:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,18274:2537886,2439708:1179648,16384,0 ) +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,18274:3078558,1915420:16384,1179648,0 ) -g1,18116:28690151,45706769 -k1,18116:32583029,45706769:3892878 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] -(1,18123:32583029,45706769:0,0,0 -g1,18123:32583029,45706769 ) ) -] -(1,18123:6630773,47279633:25952256,0,0 -h1,18123:6630773,47279633:25952256,0,0 ) ] -(1,18123:4262630,4025873:0,0,0 -[1,18123:-473656,4025873:0,0,0 -(1,18123:-473656,-710413:0,0,0 -(1,18123:-473656,-710413:0,0,0 -g1,18123:-473656,-710413 +[1,18274:3078558,4812305:0,0,0 +(1,18274:3078558,2439708:0,1703936,0 +g1,18274:29030814,2439708 +g1,18274:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,18274:36151628,1915420:16384,1179648,0 ) -g1,18123:-473656,-710413 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -] -!19590 -}318 -Input:2745:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2746:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2747:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2748:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2749:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2750:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2751:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2752:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2753:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2754:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2755:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2756:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2757:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2758:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2759:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1422 -{319 -[1,18167:4262630,47279633:28320399,43253760,0 -(1,18167:4262630,4025873:0,0,0 -[1,18167:-473656,4025873:0,0,0 -(1,18167:-473656,-710413:0,0,0 -(1,18167:-473656,-644877:0,0,0 -k1,18167:-473656,-644877:-65536 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,18274:37855564,2439708:1179648,16384,0 ) -(1,18167:-473656,4736287:0,0,0 -k1,18167:-473656,4736287:5209943 ) -g1,18167:-473656,-710413 +k1,18274:3078556,2439708:-34777008 ) ] +[1,18274:3078558,4812305:0,0,0 +(1,18274:3078558,49800853:0,16384,2228224 +k1,18274:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,18274:2537886,49800853:1179648,16384,0 ) -[1,18167:6630773,47279633:25952256,43253760,0 -[1,18167:6630773,4812305:25952256,786432,0 -(1,18167:6630773,4812305:25952256,513147,126483 -(1,18167:6630773,4812305:25952256,513147,126483 -g1,18167:3078558,4812305 -[1,18167:3078558,4812305:0,0,0 -(1,18167:3078558,2439708:0,1703936,0 -k1,18167:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,18167:2537886,2439708:1179648,16384,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,18274:3078558,51504789:16384,1179648,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,18167:3078558,1915420:16384,1179648,0 -) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,18167:3078558,4812305:0,0,0 -(1,18167:3078558,2439708:0,1703936,0 -g1,18167:29030814,2439708 -g1,18167:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,18167:36151628,1915420:16384,1179648,0 -) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 -) -] +[1,18274:3078558,4812305:0,0,0 +(1,18274:3078558,49800853:0,16384,2228224 +g1,18274:29030814,49800853 +g1,18274:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,18274:36151628,51504789:16384,1179648,0 ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,18167:37855564,2439708:1179648,16384,0 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 +) +] ) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,18274:37855564,49800853:1179648,16384,0 ) -k1,18167:3078556,2439708:-34777008 ) -] -[1,18167:3078558,4812305:0,0,0 -(1,18167:3078558,49800853:0,16384,2228224 -k1,18167:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,18167:2537886,49800853:1179648,16384,0 -) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,18167:3078558,51504789:16384,1179648,0 -) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,18274:3078556,49800853:-34777008 +) +] +g1,18274:6630773,4812305 +g1,18274:6630773,4812305 +g1,18274:10347975,4812305 +k1,18274:31387651,4812305:21039676 +) +) +] +[1,18274:6630773,45706769:25952256,40108032,0 +(1,18274:6630773,45706769:25952256,40108032,0 +(1,18274:6630773,45706769:0,0,0 +g1,18274:6630773,45706769 +) +[1,18274:6630773,45706769:25952256,40108032,0 +v1,18220:6630773,6254097:0,393216,0 +(1,18220:6630773,9333360:25952256,3472479,0 +g1,18220:6630773,9333360 +g1,18220:6237557,9333360 +r1,18274:6368629,9333360:131072,3472479,0 +g1,18220:6567858,9333360 +g1,18220:6764466,9333360 +[1,18220:6764466,9333360:25818563,3472479,0 +(1,18220:6764466,6615274:25818563,754393,260573 +(1,18219:6764466,6615274:0,754393,260573 +r1,18274:8010564,6615274:1246098,1014966,260573 +k1,18219:6764466,6615274:-1246098 +) +(1,18219:6764466,6615274:1246098,754393,260573 +) +k1,18219:8163448,6615274:152884 +k1,18219:8491128,6615274:327680 +k1,18219:9058809,6615274:152838 +k1,18219:10922838,6615274:152884 +k1,18219:12141994,6615274:152885 +k1,18219:14787212,6615274:152884 +k1,18219:15905441,6615274:152884 +k1,18219:17452276,6615274:152884 +k1,18219:20433693,6615274:152884 +k1,18219:21578137,6615274:152884 +k1,18219:25036003,6615274:152885 +k1,18219:28231068,6615274:152884 +k1,18219:29145480,6615274:152884 +k1,18219:30317449,6615274:152884 +k1,18219:32583029,6615274:0 +) +(1,18220:6764466,7480354:25818563,513147,134348 +k1,18219:9804637,7480354:280450 +k1,18219:10752244,7480354:280451 +(1,18219:10752244,7480354:0,452978,122846 +r1,18274:14275916,7480354:3523672,575824,122846 +k1,18219:10752244,7480354:-3523672 +) +(1,18219:10752244,7480354:3523672,452978,122846 +k1,18219:10752244,7480354:3277 +h1,18219:14272639,7480354:0,411205,112570 +) +k1,18219:14556366,7480354:280450 +k1,18219:15522979,7480354:280451 +k1,18219:16261526,7480354:280450 +k1,18219:17964764,7480354:280451 +(1,18219:17964764,7480354:0,452978,115847 +r1,18274:22191860,7480354:4227096,568825,115847 +k1,18219:17964764,7480354:-4227096 +) +(1,18219:17964764,7480354:4227096,452978,115847 +k1,18219:17964764,7480354:3277 +h1,18219:22188583,7480354:0,411205,112570 +) +k1,18219:22472310,7480354:280450 +k1,18219:23404189,7480354:280451 +k1,18219:26304768,7480354:280450 +k1,18219:26941079,7480354:280451 +k1,18219:30631367,7480354:280450 +k1,18219:32583029,7480354:0 +) +(1,18220:6764466,8345434:25818563,505283,134348 +k1,18219:8429549,8345434:222636 +k1,18219:11176632,8345434:222636 +k1,18219:13409913,8345434:222636 +k1,18219:14318711,8345434:222636 +k1,18219:15072844,8345434:222636 +k1,18219:16527557,8345434:222636 +k1,18219:19028879,8345434:222635 +h1,18219:20571597,8345434:0,0,0 +k1,18219:20794233,8345434:222636 +k1,18219:21826239,8345434:222636 +k1,18219:23547028,8345434:222636 +h1,18219:24742405,8345434:0,0,0 +k1,18219:25345805,8345434:222636 +(1,18219:25345805,8345434:0,452978,122846 +r1,18274:28869477,8345434:3523672,575824,122846 +k1,18219:25345805,8345434:-3523672 +) +(1,18219:25345805,8345434:3523672,452978,122846 +k1,18219:25345805,8345434:3277 +h1,18219:28866200,8345434:0,411205,112570 +) +k1,18219:29092113,8345434:222636 +k1,18219:29846246,8345434:222636 +k1,18219:32583029,8345434:0 +) +(1,18220:6764466,9210514:25818563,513147,122846 +g1,18219:7615123,9210514 +(1,18219:7615123,9210514:0,452978,122846 +r1,18274:11138795,9210514:3523672,575824,122846 +k1,18219:7615123,9210514:-3523672 +) +(1,18219:7615123,9210514:3523672,452978,122846 +k1,18219:7615123,9210514:3277 +h1,18219:11135518,9210514:0,411205,112570 +) +g1,18219:11338024,9210514 +g1,18219:12609422,9210514 +g1,18219:14202602,9210514 +(1,18219:14202602,9210514:0,452978,115847 +r1,18274:17726274,9210514:3523672,568825,115847 +k1,18219:14202602,9210514:-3523672 +) +(1,18219:14202602,9210514:3523672,452978,115847 +k1,18219:14202602,9210514:3277 +h1,18219:17722997,9210514:0,411205,112570 +) +g1,18219:17925503,9210514 +g1,18219:18810894,9210514 +g1,18219:20029208,9210514 +g1,18219:22494017,9210514 +k1,18220:32583029,9210514:7392205 +g1,18220:32583029,9210514 +) +] +g1,18220:32583029,9333360 +) +h1,18220:6630773,9333360:0,0,0 +(1,18223:6630773,10198440:25952256,513147,126483 +h1,18222:6630773,10198440:983040,0,0 +k1,18222:8840345,10198440:272983 +k1,18222:11042707,10198440:272982 +k1,18222:13944339,10198440:272983 +k1,18222:15606685,10198440:272983 +k1,18222:17164173,10198440:272982 +k1,18222:18305508,10198440:272983 +k1,18222:19710953,10198440:272983 +k1,18222:21712120,10198440:272983 +k1,18222:22601140,10198440:272982 +k1,18222:25545370,10198440:272983 +k1,18222:28974567,10198440:272983 +k1,18222:29906841,10198440:272982 +k1,18222:31198909,10198440:272983 +k1,18222:32583029,10198440:0 +) +(1,18223:6630773,11063520:25952256,513147,134348 +k1,18223:32583028,11063520:23923260 +g1,18223:32583028,11063520 +) +v1,18225:6630773,11748375:0,393216,0 +(1,18232:6630773,14117199:25952256,2762040,196608 +g1,18232:6630773,14117199 +g1,18232:6630773,14117199 +g1,18232:6434165,14117199 +(1,18232:6434165,14117199:0,2762040,196608 +r1,18274:32779637,14117199:26345472,2958648,196608 +k1,18232:6434165,14117199:-26345472 +) +(1,18232:6434165,14117199:26345472,2762040,196608 +[1,18232:6630773,14117199:25952256,2565432,0 +(1,18227:6630773,11976206:25952256,424439,79822 +(1,18226:6630773,11976206:0,0,0 +g1,18226:6630773,11976206 +g1,18226:6630773,11976206 +g1,18226:6303093,11976206 +(1,18226:6303093,11976206:0,0,0 +) +g1,18226:6630773,11976206 +) +k1,18227:6630773,11976206:0 +h1,18227:11942036,11976206:0,0,0 +k1,18227:32583028,11976206:20640992 +g1,18227:32583028,11976206 +) +(1,18228:6630773,12661061:25952256,431045,106246 +h1,18228:6630773,12661061:0,0,0 +g1,18228:10614220,12661061 +g1,18228:11610082,12661061 +g1,18228:18581114,12661061 +g1,18228:19245022,12661061 +g1,18228:25220194,12661061 +g1,18228:26879964,12661061 +g1,18228:28871688,12661061 +k1,18228:28871688,12661061:0 +h1,18228:30199504,12661061:0,0,0 +k1,18228:32583029,12661061:2383525 +g1,18228:32583029,12661061 +) +(1,18229:6630773,13345916:25952256,431045,112852 +h1,18229:6630773,13345916:0,0,0 +g1,18229:6962727,13345916 +g1,18229:7294681,13345916 +g1,18229:7626635,13345916 +g1,18229:7958589,13345916 +g1,18229:8290543,13345916 +g1,18229:8622497,13345916 +g1,18229:8954451,13345916 +g1,18229:9286405,13345916 +g1,18229:9618359,13345916 +g1,18229:9950313,13345916 +g1,18229:10282267,13345916 +g1,18229:10614221,13345916 +g1,18229:10946175,13345916 +g1,18229:11278129,13345916 +g1,18229:11610083,13345916 +g1,18229:11942037,13345916 +g1,18229:12273991,13345916 +g1,18229:12605945,13345916 +g1,18229:12937899,13345916 +g1,18229:13269853,13345916 +g1,18229:13601807,13345916 +g1,18229:13933761,13345916 +g1,18229:14265715,13345916 +g1,18229:14597669,13345916 +g1,18229:14929623,13345916 +g1,18229:15261577,13345916 +g1,18229:17253301,13345916 +g1,18229:17917209,13345916 +g1,18229:24888243,13345916 +g1,18229:28539736,13345916 +g1,18229:30199506,13345916 +k1,18229:30199506,13345916:0 +h1,18229:31859276,13345916:0,0,0 +k1,18229:32583029,13345916:723753 +g1,18229:32583029,13345916 +) +(1,18230:6630773,14030771:25952256,424439,86428 +h1,18230:6630773,14030771:0,0,0 +g1,18230:6962727,14030771 +g1,18230:7294681,14030771 +g1,18230:7626635,14030771 +g1,18230:7958589,14030771 +g1,18230:8290543,14030771 +g1,18230:8622497,14030771 +g1,18230:8954451,14030771 +g1,18230:9286405,14030771 +g1,18230:9618359,14030771 +g1,18230:9950313,14030771 +g1,18230:10282267,14030771 +g1,18230:10614221,14030771 +g1,18230:10946175,14030771 +g1,18230:11278129,14030771 +g1,18230:11610083,14030771 +g1,18230:11942037,14030771 +g1,18230:12273991,14030771 +g1,18230:12605945,14030771 +g1,18230:12937899,14030771 +g1,18230:13269853,14030771 +g1,18230:13601807,14030771 +g1,18230:13933761,14030771 +g1,18230:14265715,14030771 +g1,18230:14597669,14030771 +g1,18230:14929623,14030771 +g1,18230:15261577,14030771 +g1,18230:19245024,14030771 +g1,18230:19908932,14030771 +g1,18230:22896518,14030771 +g1,18230:23560426,14030771 +g1,18230:25884104,14030771 +g1,18230:26879966,14030771 +h1,18230:27875828,14030771:0,0,0 +k1,18230:32583029,14030771:4707201 +g1,18230:32583029,14030771 +) +] +) +g1,18232:32583029,14117199 +g1,18232:6630773,14117199 +g1,18232:6630773,14117199 +g1,18232:32583029,14117199 +g1,18232:32583029,14117199 +) +h1,18232:6630773,14313807:0,0,0 +(1,18236:6630773,15178887:25952256,513147,134348 +h1,18235:6630773,15178887:983040,0,0 +k1,18235:9307213,15178887:257506 +k1,18235:10433071,15178887:257506 +k1,18235:11967874,15178887:257506 +k1,18235:13614743,15178887:257506 +k1,18235:14819900,15178887:257506 +k1,18235:17548113,15178887:257506 +k1,18235:19354889,15178887:257505 +k1,18235:21347788,15178887:257506 +k1,18235:24201175,15178887:257506 +k1,18235:25406332,15178887:257506 +k1,18235:26429954,15178887:257506 +k1,18235:29751924,15178887:257506 +k1,18235:32080368,15178887:257506 +$1,18235:32080368,15178887 +$1,18235:32583029,15178887 +k1,18236:32583029,15178887:0 +) +(1,18236:6630773,16043967:25952256,505283,138281 +g1,18235:8021447,16043967 +$1,18235:8021447,16043967 +$1,18235:8573260,16043967 +g1,18235:8772489,16043967 +g1,18235:10857189,16043967 +g1,18235:11924770,16043967 +g1,18235:15021346,16043967 +g1,18235:16617147,16043967 +g1,18235:17467804,16043967 +k1,18236:32583029,16043967:12099914 +g1,18236:32583029,16043967 +) +v1,18238:6630773,16728822:0,393216,0 +(1,18244:6630773,18445821:25952256,2110215,196608 +g1,18244:6630773,18445821 +g1,18244:6630773,18445821 +g1,18244:6434165,18445821 +(1,18244:6434165,18445821:0,2110215,196608 +r1,18274:32779637,18445821:26345472,2306823,196608 +k1,18244:6434165,18445821:-26345472 +) +(1,18244:6434165,18445821:26345472,2110215,196608 +[1,18244:6630773,18445821:25952256,1913607,0 +(1,18240:6630773,16963259:25952256,431045,112852 +(1,18239:6630773,16963259:0,0,0 +g1,18239:6630773,16963259 +g1,18239:6630773,16963259 +g1,18239:6303093,16963259 +(1,18239:6303093,16963259:0,0,0 +) +g1,18239:6630773,16963259 +) +k1,18240:6630773,16963259:0 +g1,18240:15593530,16963259 +g1,18240:17585254,16963259 +g1,18240:18581116,16963259 +k1,18240:18581116,16963259:0 +h1,18240:21900655,16963259:0,0,0 +k1,18240:32583029,16963259:10682374 +g1,18240:32583029,16963259 +) +(1,18241:6630773,17648114:25952256,424439,106246 +h1,18241:6630773,17648114:0,0,0 +g1,18241:6962727,17648114 +g1,18241:7294681,17648114 +g1,18241:7626635,17648114 +g1,18241:7958589,17648114 +g1,18241:8290543,17648114 +g1,18241:8622497,17648114 +g1,18241:8954451,17648114 +g1,18241:10946175,17648114 +g1,18241:11610083,17648114 +g1,18241:15261576,17648114 +g1,18241:15925484,17648114 +g1,18241:16589392,17648114 +g1,18241:21236747,17648114 +h1,18241:21568701,17648114:0,0,0 +k1,18241:32583029,17648114:11014328 +g1,18241:32583029,17648114 +) +(1,18242:6630773,18332969:25952256,424439,112852 +h1,18242:6630773,18332969:0,0,0 +g1,18242:6962727,18332969 +g1,18242:7294681,18332969 +g1,18242:7626635,18332969 +k1,18242:7626635,18332969:0 +h1,18242:10946174,18332969:0,0,0 +k1,18242:32583030,18332969:21636856 +g1,18242:32583030,18332969 +) +] +) +g1,18244:32583029,18445821 +g1,18244:6630773,18445821 +g1,18244:6630773,18445821 +g1,18244:32583029,18445821 +g1,18244:32583029,18445821 +) +h1,18244:6630773,18642429:0,0,0 +(1,18247:6630773,27791631:25952256,9083666,0 +k1,18247:10523651,27791631:3892878 +h1,18246:10523651,27791631:0,0,0 +(1,18246:10523651,27791631:18166500,9083666,0 +(1,18246:10523651,27791631:18167376,9083688,0 +(1,18246:10523651,27791631:18167376,9083688,0 +(1,18246:10523651,27791631:0,9083688,0 +(1,18246:10523651,27791631:0,14208860,0 +(1,18246:10523651,27791631:28417720,14208860,0 +) +k1,18246:10523651,27791631:-28417720 +) +) +g1,18246:28691027,27791631 +) +) +) +g1,18247:28690151,27791631 +k1,18247:32583029,27791631:3892878 +) +(1,18254:6630773,28656711:25952256,513147,134348 +h1,18253:6630773,28656711:983040,0,0 +k1,18253:8718095,28656711:150733 +k1,18253:10211660,28656711:150732 +k1,18253:11756344,28656711:150733 +k1,18253:14971541,28656711:150733 +k1,18253:15773701,28656711:150732 +k1,18253:18544563,28656711:150733 +k1,18253:19051156,28656711:150733 +k1,18253:20479185,28656711:150732 +k1,18253:22023869,28656711:150733 +k1,18253:22530462,28656711:150733 +k1,18253:26521604,28656711:150732 +k1,18253:30071034,28656711:150733 +k1,18253:32583029,28656711:0 +) +(1,18254:6630773,29521791:25952256,513147,126483 +k1,18253:7817882,29521791:239458 +k1,18253:8413201,29521791:239459 +k1,18253:10960837,29521791:239458 +k1,18253:15914955,29521791:239458 +k1,18253:18142776,29521791:239459 +k1,18253:19065119,29521791:239458 +k1,18253:21060287,29521791:239458 +k1,18253:22349632,29521791:239458 +k1,18253:24867778,29521791:239459 +h1,18253:25838366,29521791:0,0,0 +k1,18253:26077824,29521791:239458 +k1,18253:27508727,29521791:239458 +k1,18253:30026873,29521791:239459 +h1,18253:31395920,29521791:0,0,0 +k1,18253:31635378,29521791:239458 +k1,18253:32583029,29521791:0 +) +(1,18254:6630773,30386871:25952256,513147,126483 +k1,18253:10677003,30386871:239244 +k1,18253:11725617,30386871:239244 +k1,18253:13867371,30386871:239244 +k1,18253:15298060,30386871:239244 +k1,18253:18027672,30386871:239244 +k1,18253:22237087,30386871:239244 +k1,18253:23429880,30386871:239244 +k1,18253:24603667,30386871:239244 +(1,18253:24603667,30386871:0,452978,115847 +r1,18274:28479051,30386871:3875384,568825,115847 +k1,18253:24603667,30386871:-3875384 +) +(1,18253:24603667,30386871:3875384,452978,115847 +g1,18253:26717215,30386871 +g1,18253:27420639,30386871 +h1,18253:28475774,30386871:0,411205,112570 +) +k1,18253:28718295,30386871:239244 +k1,18253:29608967,30386871:239244 +k1,18253:31563944,30386871:239244 +k1,18253:32583029,30386871:0 +) +(1,18254:6630773,31251951:25952256,513147,134348 +k1,18253:8302003,31251951:296285 +k1,18253:11670616,31251951:296285 +k1,18253:14173498,31251951:296285 +(1,18253:14173498,31251951:0,452978,115847 +r1,18274:19455730,31251951:5282232,568825,115847 +k1,18253:14173498,31251951:-5282232 +) +(1,18253:14173498,31251951:5282232,452978,115847 +g1,18253:16287046,31251951 +g1,18253:16990470,31251951 +h1,18253:19452453,31251951:0,411205,112570 +) +k1,18253:19752015,31251951:296285 +k1,18253:23023636,31251951:296286 +k1,18253:24339006,31251951:296285 +k1,18253:26900871,31251951:296285 +k1,18253:28813274,31251951:296285 +k1,18253:29768851,31251951:296285 +k1,18253:31084221,31251951:296285 +k1,18253:32583029,31251951:0 +) +(1,18254:6630773,32117031:25952256,505283,134348 +g1,18253:9960001,32117031 +g1,18253:11178315,32117031 +k1,18254:32583029,32117031:19856098 +g1,18254:32583029,32117031 +) +v1,18256:6630773,32801886:0,393216,0 +(1,18262:6630773,34518885:25952256,2110215,196608 +g1,18262:6630773,34518885 +g1,18262:6630773,34518885 +g1,18262:6434165,34518885 +(1,18262:6434165,34518885:0,2110215,196608 +r1,18274:32779637,34518885:26345472,2306823,196608 +k1,18262:6434165,34518885:-26345472 +) +(1,18262:6434165,34518885:26345472,2110215,196608 +[1,18262:6630773,34518885:25952256,1913607,0 +(1,18258:6630773,33036323:25952256,431045,112852 +(1,18257:6630773,33036323:0,0,0 +g1,18257:6630773,33036323 +g1,18257:6630773,33036323 +g1,18257:6303093,33036323 +(1,18257:6303093,33036323:0,0,0 +) +g1,18257:6630773,33036323 +) +k1,18258:6630773,33036323:0 +g1,18258:13269852,33036323 +g1,18258:15261576,33036323 +g1,18258:15925484,33036323 +g1,18258:19576977,33036323 +g1,18258:20240885,33036323 +g1,18258:20904793,33036323 +g1,18258:25220194,33036323 +g1,18258:26879964,33036323 +g1,18258:27543872,33036323 +g1,18258:30199504,33036323 +h1,18258:30531458,33036323:0,0,0 +k1,18258:32583029,33036323:2051571 +g1,18258:32583029,33036323 +) +(1,18259:6630773,33721178:25952256,424439,112852 +h1,18259:6630773,33721178:0,0,0 +g1,18259:6962727,33721178 +g1,18259:7294681,33721178 +g1,18259:7626635,33721178 +g1,18259:7958589,33721178 +g1,18259:8290543,33721178 +g1,18259:13269852,33721178 +g1,18259:13933760,33721178 +g1,18259:16921346,33721178 +g1,18259:18913070,33721178 +g1,18259:19576978,33721178 +g1,18259:21236748,33721178 +h1,18259:21568702,33721178:0,0,0 +k1,18259:32583029,33721178:11014327 +g1,18259:32583029,33721178 +) +(1,18260:6630773,34406033:25952256,431045,112852 +h1,18260:6630773,34406033:0,0,0 +g1,18260:6962727,34406033 +g1,18260:7294681,34406033 +g1,18260:7626635,34406033 +g1,18260:7958589,34406033 +g1,18260:8290543,34406033 +g1,18260:14265714,34406033 +g1,18260:14929622,34406033 +k1,18260:14929622,34406033:0 +h1,18260:18913069,34406033:0,0,0 +k1,18260:32583029,34406033:13669960 +g1,18260:32583029,34406033 +) +] +) +g1,18262:32583029,34518885 +g1,18262:6630773,34518885 +g1,18262:6630773,34518885 +g1,18262:32583029,34518885 +g1,18262:32583029,34518885 +) +h1,18262:6630773,34715493:0,0,0 +(1,18265:6630773,43864695:25952256,9083666,0 +k1,18265:10523651,43864695:3892878 +h1,18264:10523651,43864695:0,0,0 +(1,18264:10523651,43864695:18166500,9083666,0 +(1,18264:10523651,43864695:18167376,9083688,0 +(1,18264:10523651,43864695:18167376,9083688,0 +(1,18264:10523651,43864695:0,9083688,0 +(1,18264:10523651,43864695:0,14208860,0 +(1,18264:10523651,43864695:28417720,14208860,0 +) +k1,18264:10523651,43864695:-28417720 +) +) +g1,18264:28691027,43864695 +) +) +) +g1,18265:28690151,43864695 +k1,18265:32583029,43864695:3892878 +) +(1,18272:6630773,44729775:25952256,513147,126483 +h1,18271:6630773,44729775:983040,0,0 +k1,18271:8908979,44729775:341617 +k1,18271:10634717,44729775:341618 +k1,18271:12068819,44729775:341617 +k1,18271:12766297,44729775:341618 +k1,18271:15236523,44729775:341617 +k1,18271:17252585,44729775:341617 +k1,18271:18785648,44729775:341618 +k1,18271:19743303,44729775:341617 +k1,18271:22924596,44729775:341618 +k1,18271:24358698,44729775:341617 +k1,18271:25719400,44729775:341617 +k1,18271:27435963,44729775:341618 +k1,18271:29077159,44729775:341617 +k1,18271:30180305,44729775:341618 +k1,18271:31821501,44729775:341617 +k1,18271:32583029,44729775:0 +) +] +(1,18274:32583029,45706769:0,0,0 +g1,18274:32583029,45706769 +) +) +] +(1,18274:6630773,47279633:25952256,0,0 +h1,18274:6630773,47279633:25952256,0,0 +) +] +(1,18274:4262630,4025873:0,0,0 +[1,18274:-473656,4025873:0,0,0 +(1,18274:-473656,-710413:0,0,0 +(1,18274:-473656,-710413:0,0,0 +g1,18274:-473656,-710413 +) +g1,18274:-473656,-710413 ) ] -) -) ) ] -[1,18167:3078558,4812305:0,0,0 -(1,18167:3078558,49800853:0,16384,2228224 -g1,18167:29030814,49800853 -g1,18167:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,18167:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] -) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,18167:37855564,49800853:1179648,16384,0 -) -) -k1,18167:3078556,49800853:-34777008 -) -] -g1,18167:6630773,4812305 -k1,18167:21350816,4812305:13524666 -g1,18167:21999622,4812305 -g1,18167:25611966,4812305 -g1,18167:28956923,4812305 -g1,18167:29772190,4812305 -) -) -] -[1,18167:6630773,45706769:25952256,40108032,0 -(1,18167:6630773,45706769:25952256,40108032,0 -(1,18167:6630773,45706769:0,0,0 -g1,18167:6630773,45706769 -) -[1,18167:6630773,45706769:25952256,40108032,0 -(1,18123:6630773,6254097:25952256,505283,122846 -h1,18122:6630773,6254097:983040,0,0 -k1,18122:8832427,6254097:265065 -k1,18122:10201773,6254097:265064 -k1,18122:11401381,6254097:265065 -(1,18122:11401381,6254097:0,452978,122846 -r1,18167:17035325,6254097:5633944,575824,122846 -k1,18122:11401381,6254097:-5633944 -) -(1,18122:11401381,6254097:5633944,452978,122846 -g1,18122:13514929,6254097 -g1,18122:14218353,6254097 -h1,18122:17032048,6254097:0,411205,112570 -) -k1,18122:17300390,6254097:265065 -k1,18122:18756900,6254097:265065 -(1,18122:18756900,6254097:0,452978,115847 -r1,18167:24390843,6254097:5633943,568825,115847 -k1,18122:18756900,6254097:-5633943 -) -(1,18122:18756900,6254097:5633943,452978,115847 -g1,18122:22277295,6254097 -g1,18122:22980719,6254097 -h1,18122:24387566,6254097:0,411205,112570 -) -k1,18122:24655907,6254097:265064 -k1,18122:25572400,6254097:265065 -k1,18122:27553198,6254097:265065 -k1,18122:28837347,6254097:265064 -k1,18122:30112977,6254097:265065 -k1,18122:32583029,6254097:0 -) -(1,18123:6630773,7095585:25952256,505283,134348 -k1,18122:8519615,7095585:238645 -k1,18122:10801016,7095585:238644 -k1,18122:11725823,7095585:238645 -k1,18122:12580506,7095585:238645 -k1,18122:13838236,7095585:238645 -k1,18122:16738297,7095585:238644 -k1,18122:19019044,7095585:238645 -k1,18122:19940574,7095585:238645 -k1,18122:21271703,7095585:238644 -k1,18122:21866208,7095585:238645 -k1,18122:25726372,7095585:238645 -k1,18122:27754805,7095585:238645 -k1,18122:28644877,7095585:238644 -k1,18122:30780789,7095585:238645 -k1,18123:32583029,7095585:0 -) -(1,18123:6630773,7937073:25952256,513147,126483 -k1,18122:8185989,7937073:247773 -k1,18122:9452847,7937073:247773 -k1,18122:12170671,7937073:247772 -k1,18122:13077736,7937073:247773 -k1,18122:14344594,7937073:247773 -k1,18122:16106904,7937073:247773 -k1,18122:17988490,7937073:247773 -k1,18122:18887690,7937073:247772 -k1,18122:20227948,7937073:247773 -k1,18122:21608183,7937073:247773 -k1,18122:24227704,7937073:247773 -k1,18122:25284846,7937073:247772 -k1,18122:28123257,7937073:247773 -k1,18122:29390115,7937073:247773 -k1,18122:32583029,7937073:0 -) -(1,18123:6630773,8778561:25952256,513147,134348 -k1,18122:8207624,8778561:235984 -k1,18122:9640951,8778561:235984 -k1,18122:13489935,8778561:235984 -k1,18122:17706576,8778561:235984 -k1,18122:18570395,8778561:235984 -k1,18122:20503761,8778561:235984 -k1,18122:21885970,8778561:235984 -k1,18122:23819992,8778561:235984 -k1,18122:25590174,8778561:235984 -k1,18122:26485450,8778561:235984 -k1,18122:28062301,8778561:235984 -k1,18122:31931601,8778561:235984 -k1,18122:32583029,8778561:0 -) -(1,18123:6630773,9620049:25952256,513147,134348 -k1,18122:10079337,9620049:255650 -k1,18122:12149024,9620049:255650 -k1,18122:13596118,9620049:255649 -k1,18122:16564959,9620049:255650 -k1,18122:17472037,9620049:255650 -k1,18122:20253445,9620049:255650 -k1,18122:24157484,9620049:255650 -k1,18122:25432219,9620049:255650 -k1,18122:26780353,9620049:255649 -k1,18122:27695295,9620049:255650 -k1,18122:31572464,9620049:255650 -k1,18122:32583029,9620049:0 -) -(1,18123:6630773,10461537:25952256,513147,126483 -k1,18122:9298240,10461537:197415 -k1,18122:10027151,10461537:197414 -k1,18122:13663895,10461537:197415 -k1,18122:14489144,10461537:197414 -k1,18122:17491500,10461537:197415 -k1,18122:18304952,10461537:197414 -k1,18122:19521452,10461537:197415 -k1,18122:21085947,10461537:197414 -k1,18122:22981400,10461537:197415 -k1,18122:24197899,10461537:197414 -k1,18122:25736181,10461537:197415 -k1,18122:26925155,10461537:197414 -k1,18122:27893273,10461537:197415 -k1,18122:32583029,10461537:0 -) -(1,18123:6630773,11303025:25952256,513147,134348 -k1,18122:7484941,11303025:202740 -k1,18122:8043542,11303025:202741 -k1,18122:11816683,11303025:202740 -k1,18122:14354471,11303025:202740 -k1,18122:16050777,11303025:202740 -k1,18122:16939680,11303025:202741 -k1,18122:21815792,11303025:202740 -k1,18122:22827902,11303025:202740 -k1,18122:23386503,11303025:202741 -k1,18122:25863342,11303025:202740 -k1,18122:28192070,11303025:202740 -k1,18122:29852986,11303025:202740 -k1,18122:30513824,11303025:202741 -k1,18122:31248061,11303025:202740 -k1,18122:32583029,11303025:0 -) -(1,18123:6630773,12144513:25952256,505283,126483 -g1,18122:7481430,12144513 -g1,18122:10563588,12144513 -g1,18122:11781902,12144513 -g1,18122:12991696,12144513 -k1,18123:32583030,12144513:16947612 -g1,18123:32583030,12144513 -) -v1,18125:6630773,13260254:0,393216,0 -(1,18130:6630773,14247820:25952256,1380782,196608 -g1,18130:6630773,14247820 -g1,18130:6630773,14247820 -g1,18130:6434165,14247820 -(1,18130:6434165,14247820:0,1380782,196608 -r1,18167:32779637,14247820:26345472,1577390,196608 -k1,18130:6434165,14247820:-26345472 -) -(1,18130:6434165,14247820:26345472,1380782,196608 -[1,18130:6630773,14247820:25952256,1184174,0 -(1,18127:6630773,13474164:25952256,410518,107478 -(1,18126:6630773,13474164:0,0,0 -g1,18126:6630773,13474164 -g1,18126:6630773,13474164 -g1,18126:6303093,13474164 -(1,18126:6303093,13474164:0,0,0 -) -g1,18126:6630773,13474164 -) -k1,18127:6630773,13474164:0 -g1,18127:12637541,13474164 -g1,18127:14850561,13474164 -g1,18127:15798999,13474164 -g1,18127:17379728,13474164 -g1,18127:18012020,13474164 -g1,18127:21173477,13474164 -h1,18127:21489623,13474164:0,0,0 -k1,18127:32583029,13474164:11093406 -g1,18127:32583029,13474164 -) -(1,18128:6630773,14140342:25952256,404226,107478 -h1,18128:6630773,14140342:0,0,0 -g1,18128:6946919,14140342 -g1,18128:7263065,14140342 -g1,18128:12321396,14140342 -g1,18128:12953688,14140342 -g1,18128:16115145,14140342 -g1,18128:19276602,14140342 -g1,18128:19908894,14140342 -h1,18128:21489623,14140342:0,0,0 -k1,18128:32583029,14140342:11093406 -g1,18128:32583029,14140342 -) -] -) -g1,18130:32583029,14247820 -g1,18130:6630773,14247820 -g1,18130:6630773,14247820 -g1,18130:32583029,14247820 -g1,18130:32583029,14247820 -) -h1,18130:6630773,14444428:0,0,0 -(1,18133:6630773,24043193:25952256,9083666,0 -k1,18133:10523651,24043193:3892878 -h1,18132:10523651,24043193:0,0,0 -(1,18132:10523651,24043193:18166500,9083666,0 -(1,18132:10523651,24043193:18167376,9083688,0 -(1,18132:10523651,24043193:18167376,9083688,0 -(1,18132:10523651,24043193:0,9083688,0 -(1,18132:10523651,24043193:0,14208860,0 -(1,18132:10523651,24043193:28417720,14208860,0 -) -k1,18132:10523651,24043193:-28417720 -) -) -g1,18132:28691027,24043193 -) -) -) -g1,18133:28690151,24043193 -k1,18133:32583029,24043193:3892878 -) -v1,18140:6630773,25334244:0,393216,0 -(1,18141:6630773,27576241:25952256,2635213,0 -g1,18141:6630773,27576241 -g1,18141:6303093,27576241 -r1,18167:6401397,27576241:98304,2635213,0 -g1,18141:6600626,27576241 -g1,18141:6797234,27576241 -[1,18141:6797234,27576241:25785795,2635213,0 -(1,18141:6797234,25766782:25785795,825754,196608 -(1,18140:6797234,25766782:0,825754,196608 -r1,18167:7890375,25766782:1093141,1022362,196608 -k1,18140:6797234,25766782:-1093141 -) -(1,18140:6797234,25766782:1093141,825754,196608 -) -k1,18140:8172069,25766782:281694 -k1,18140:9898287,25766782:327680 -k1,18140:11477594,25766782:281694 -k1,18140:13153239,25766782:281694 -k1,18140:14454018,25766782:281694 -k1,18140:18138341,25766782:281694 -k1,18140:20625321,25766782:281693 -k1,18140:21558443,25766782:281694 -k1,18140:25451171,25766782:281694 -(1,18140:25451171,25766782:0,452978,115847 -r1,18167:27216284,25766782:1765113,568825,115847 -k1,18140:25451171,25766782:-1765113 -) -(1,18140:25451171,25766782:1765113,452978,115847 -k1,18140:25451171,25766782:3277 -h1,18140:27213007,25766782:0,411205,112570 -) -k1,18140:27497978,25766782:281694 -k1,18140:28971117,25766782:281694 -(1,18140:28971117,25766782:0,452978,115847 -r1,18167:30384518,25766782:1413401,568825,115847 -k1,18140:28971117,25766782:-1413401 -) -(1,18140:28971117,25766782:1413401,452978,115847 -k1,18140:28971117,25766782:3277 -h1,18140:30381241,25766782:0,411205,112570 -) -k1,18140:30666212,25766782:281694 -k1,18140:31563944,25766782:281694 -k1,18140:32583029,25766782:0 -) -(1,18141:6797234,26608270:25785795,513147,134348 -k1,18140:9676707,26608270:218056 -k1,18140:11923758,26608270:218056 -k1,18140:15862948,26608270:218056 -k1,18140:17629620,26608270:218056 -k1,18140:20453387,26608270:218056 -k1,18140:21330736,26608270:218057 -k1,18140:22567877,26608270:218056 -k1,18140:24175296,26608270:218056 -k1,18140:25384912,26608270:218056 -k1,18140:27204668,26608270:218056 -k1,18140:29519221,26608270:218056 -k1,18140:32583029,26608270:0 -) -(1,18141:6797234,27449758:25785795,513147,126483 -g1,18140:7612501,27449758 -g1,18140:9263352,27449758 -g1,18140:10121873,27449758 -g1,18140:11340187,27449758 -g1,18140:13147014,27449758 -g1,18140:14516716,27449758 -k1,18141:32583029,27449758:15963263 -g1,18141:32583029,27449758 -) -] -g1,18141:32583029,27576241 -) -h1,18141:6630773,27576241:0,0,0 -(1,18144:6630773,28867293:25952256,513147,126483 -h1,18143:6630773,28867293:983040,0,0 -k1,18143:9074812,28867293:197465 -k1,18143:12842678,28867293:197465 -k1,18143:13880970,28867293:197465 -k1,18143:15650644,28867293:197465 -k1,18143:16952391,28867293:197465 -k1,18143:17897622,28867293:197465 -k1,18143:19608312,28867293:197464 -k1,18143:20457205,28867293:197465 -k1,18143:22942532,28867293:197465 -k1,18143:24159082,28867293:197465 -k1,18143:28170742,28867293:197465 -k1,18143:29856530,28867293:197465 -k1,18143:30922347,28867293:197465 -k1,18143:32583029,28867293:0 -) -(1,18144:6630773,29708781:25952256,505283,134348 -g1,18143:7185862,29708781 -g1,18143:8395656,29708781 -g1,18143:9872182,29708781 -g1,18143:11806804,29708781 -g1,18143:12361893,29708781 -g1,18143:13940655,29708781 -g1,18143:16973005,29708781 -g1,18143:18566185,29708781 -g1,18143:21237432,29708781 -g1,18143:23447306,29708781 -g1,18143:24262573,29708781 -k1,18144:32583029,29708781:7090345 -g1,18144:32583029,29708781 -) -v1,18146:6630773,30824522:0,393216,0 -(1,18152:6630773,32478266:25952256,2046960,196608 -g1,18152:6630773,32478266 -g1,18152:6630773,32478266 -g1,18152:6434165,32478266 -(1,18152:6434165,32478266:0,2046960,196608 -r1,18167:32779637,32478266:26345472,2243568,196608 -k1,18152:6434165,32478266:-26345472 -) -(1,18152:6434165,32478266:26345472,2046960,196608 -[1,18152:6630773,32478266:25952256,1850352,0 -(1,18148:6630773,31038432:25952256,410518,107478 -(1,18147:6630773,31038432:0,0,0 -g1,18147:6630773,31038432 -g1,18147:6630773,31038432 -g1,18147:6303093,31038432 -(1,18147:6303093,31038432:0,0,0 -) -g1,18147:6630773,31038432 -) -k1,18148:6630773,31038432:0 -g1,18148:12637541,31038432 -g1,18148:14850561,31038432 -g1,18148:15798999,31038432 -g1,18148:17379728,31038432 -g1,18148:18012020,31038432 -g1,18148:20857331,31038432 -h1,18148:21173477,31038432:0,0,0 -k1,18148:32583029,31038432:11409552 -g1,18148:32583029,31038432 -) -(1,18149:6630773,31704610:25952256,404226,107478 -h1,18149:6630773,31704610:0,0,0 -g1,18149:6946919,31704610 -g1,18149:7263065,31704610 -g1,18149:12321396,31704610 -g1,18149:12953688,31704610 -g1,18149:15799000,31704610 -h1,18149:16115146,31704610:0,0,0 -k1,18149:32583029,31704610:16467883 -g1,18149:32583029,31704610 -) -(1,18150:6630773,32370788:25952256,410518,107478 -h1,18150:6630773,32370788:0,0,0 -g1,18150:6946919,32370788 -g1,18150:7263065,32370788 -g1,18150:14850562,32370788 -g1,18150:15482854,32370788 -g1,18150:18644311,32370788 -g1,18150:20225040,32370788 -g1,18150:20857332,32370788 -g1,18150:24018789,32370788 -g1,18150:26864100,32370788 -g1,18150:27496392,32370788 -h1,18150:29393266,32370788:0,0,0 -k1,18150:32583029,32370788:3189763 -g1,18150:32583029,32370788 -) -] -) -g1,18152:32583029,32478266 -g1,18152:6630773,32478266 -g1,18152:6630773,32478266 -g1,18152:32583029,32478266 -g1,18152:32583029,32478266 -) -h1,18152:6630773,32674874:0,0,0 -(1,18156:6630773,33965925:25952256,505283,134348 -h1,18155:6630773,33965925:983040,0,0 -k1,18155:8497518,33965925:255870 -k1,18155:11384659,33965925:255870 -k1,18155:12291956,33965925:255869 -(1,18155:12291956,33965925:0,452978,122846 -r1,18167:16167340,33965925:3875384,575824,122846 -k1,18155:12291956,33965925:-3875384 -) -(1,18155:12291956,33965925:3875384,452978,122846 -k1,18155:12291956,33965925:3277 -h1,18155:16164063,33965925:0,411205,112570 -) -k1,18155:16596880,33965925:255870 -(1,18155:16596880,33965925:0,452978,122846 -r1,18167:20472264,33965925:3875384,575824,122846 -k1,18155:16596880,33965925:-3875384 -) -(1,18155:16596880,33965925:3875384,452978,122846 -k1,18155:16596880,33965925:3277 -h1,18155:20468987,33965925:0,411205,112570 -) -k1,18155:20728134,33965925:255870 -k1,18155:22900277,33965925:255870 -k1,18155:26791429,33965925:255870 -k1,18155:28388165,33965925:255869 -k1,18155:30498704,33965925:255870 -k1,18155:31563944,33965925:255870 -k1,18155:32583029,33965925:0 -) -(1,18156:6630773,34807413:25952256,513147,126483 -g1,18155:9444233,34807413 -g1,18155:10302754,34807413 -g1,18155:11521068,34807413 -g1,18155:14291274,34807413 -g1,18155:17075898,34807413 -g1,18155:17926555,34807413 -g1,18155:21300348,34807413 -(1,18155:21300348,34807413:0,452978,115847 -r1,18167:22713749,34807413:1413401,568825,115847 -k1,18155:21300348,34807413:-1413401 -) -(1,18155:21300348,34807413:1413401,452978,115847 -k1,18155:21300348,34807413:3277 -h1,18155:22710472,34807413:0,411205,112570 -) -g1,18155:23086648,34807413 -(1,18155:23086648,34807413:0,414482,115847 -r1,18167:24500049,34807413:1413401,530329,115847 -k1,18155:23086648,34807413:-1413401 -) -(1,18155:23086648,34807413:1413401,414482,115847 -k1,18155:23086648,34807413:3277 -h1,18155:24496772,34807413:0,411205,112570 -) -g1,18155:24872948,34807413 -(1,18155:24872948,34807413:0,452978,115847 -r1,18167:26286349,34807413:1413401,568825,115847 -k1,18155:24872948,34807413:-1413401 -) -(1,18155:24872948,34807413:1413401,452978,115847 -k1,18155:24872948,34807413:3277 -h1,18155:26283072,34807413:0,411205,112570 -) -g1,18155:26485578,34807413 -g1,18155:27876252,34807413 -(1,18155:27876252,34807413:0,414482,115847 -r1,18167:29289653,34807413:1413401,530329,115847 -k1,18155:27876252,34807413:-1413401 -) -(1,18155:27876252,34807413:1413401,414482,115847 -k1,18155:27876252,34807413:3277 -h1,18155:29286376,34807413:0,411205,112570 -) -k1,18156:32583029,34807413:3119706 -g1,18156:32583029,34807413 -) -(1,18160:6630773,36898673:25952256,564462,139132 -(1,18160:6630773,36898673:2450326,534184,12975 -g1,18160:6630773,36898673 -g1,18160:9081099,36898673 -) -g1,18160:11747694,36898673 -g1,18160:14946310,36898673 -k1,18160:32583029,36898673:16487611 -g1,18160:32583029,36898673 -) -(1,18165:6630773,38133377:25952256,513147,134348 -k1,18164:9683943,38133377:224637 -k1,18164:12242317,38133377:224637 -k1,18164:14009672,38133377:224637 -k1,18164:14917195,38133377:224638 -k1,18164:16595421,38133377:224637 -k1,18164:19676772,38133377:224637 -k1,18164:20920494,38133377:224637 -k1,18164:23669578,38133377:224637 -k1,18164:24553507,38133377:224637 -k1,18164:26647232,38133377:224638 -k1,18164:28261232,38133377:224637 -k1,18164:30687879,38133377:224637 -k1,18164:31563944,38133377:224637 -k1,18164:32583029,38133377:0 -) -(1,18165:6630773,38974865:25952256,513147,134348 -k1,18164:9374241,38974865:219021 -k1,18164:10209301,38974865:219022 -k1,18164:13933187,38974865:219021 -k1,18164:17959195,38974865:219022 -k1,18164:20754436,38974865:219021 -k1,18164:22435546,38974865:219002 -k1,18164:25213094,38974865:219022 -(1,18164:25213094,38974865:0,459977,122846 -r1,18167:28385054,38974865:3171960,582823,122846 -k1,18164:25213094,38974865:-3171960 -) -(1,18164:25213094,38974865:3171960,459977,122846 -k1,18164:25213094,38974865:3277 -h1,18164:28381777,38974865:0,411205,112570 -) -k1,18164:28604075,38974865:219021 -k1,18164:30014542,38974865:219022 -k1,18164:31021961,38974865:219021 -k1,18165:32583029,38974865:0 -) -(1,18165:6630773,39816353:25952256,505283,126483 -k1,18164:9541027,39816353:204272 -(1,18164:9541027,39816353:0,459977,122846 -r1,18167:14471547,39816353:4930520,582823,122846 -k1,18164:9541027,39816353:-4930520 -) -(1,18164:9541027,39816353:4930520,459977,122846 -k1,18164:9541027,39816353:3277 -h1,18164:14468270,39816353:0,411205,112570 -) -k1,18164:14849488,39816353:204271 -(1,18164:14849488,39816353:0,459977,122846 -r1,18167:20131719,39816353:5282231,582823,122846 -k1,18164:14849488,39816353:-5282231 -) -(1,18164:14849488,39816353:5282231,459977,122846 -k1,18164:14849488,39816353:3277 -h1,18164:20128442,39816353:0,411205,112570 -) -k1,18164:20509661,39816353:204272 -k1,18164:21905378,39816353:204272 -(1,18164:21905378,39816353:0,459977,115847 -r1,18167:25077338,39816353:3171960,575824,115847 -k1,18164:21905378,39816353:-3171960 -) -(1,18164:21905378,39816353:3171960,459977,115847 -k1,18164:21905378,39816353:3277 -h1,18164:25074061,39816353:0,411205,112570 -) -k1,18164:25455279,39816353:204271 -k1,18164:27040395,39816353:204272 -k1,18164:29290700,39816353:204271 -k1,18164:29953069,39816353:204272 -k1,18164:32583029,39816353:0 -) -(1,18165:6630773,40657841:25952256,513147,134348 -k1,18164:7529574,40657841:247373 -k1,18164:10072018,40657841:247373 -k1,18164:11708754,40657841:247373 -k1,18164:12765497,40657841:247373 -k1,18164:14913414,40657841:247373 -k1,18164:16108438,40657841:247373 -k1,18164:19190898,40657841:247373 -k1,18164:21173664,40657841:247373 -k1,18164:24183380,40657841:247373 -k1,18164:25271580,40657841:247373 -k1,18164:27529598,40657841:247373 -k1,18164:28724622,40657841:247373 -k1,18164:31734338,40657841:247373 -k1,18165:32583029,40657841:0 -) -(1,18165:6630773,41499329:25952256,513147,134348 -k1,18164:8686000,41499329:166479 -k1,18164:11071529,41499329:166480 -k1,18164:14571169,41499329:166479 -(1,18164:14571169,41499329:0,459977,115847 -r1,18167:18094841,41499329:3523672,575824,115847 -k1,18164:14571169,41499329:-3523672 -) -(1,18164:14571169,41499329:3523672,459977,115847 -k1,18164:14571169,41499329:3277 -h1,18164:18091564,41499329:0,411205,112570 -) -k1,18164:18261320,41499329:166479 -k1,18164:19532081,41499329:166479 -k1,18164:20446327,41499329:166480 -k1,18164:22126032,41499329:166479 -k1,18164:22943939,41499329:166479 -k1,18164:24931008,41499329:166479 -k1,18164:27859831,41499329:166480 -k1,18164:31635378,41499329:166479 -k1,18164:32583029,41499329:0 -) -(1,18165:6630773,42340817:25952256,505283,126483 -k1,18164:8695693,42340817:164376 -k1,18164:10056757,42340817:164377 -k1,18164:13008379,42340817:164376 -k1,18164:14685982,42340817:164377 -k1,18164:15381855,42340817:164376 -k1,18164:17414007,42340817:164376 -(1,18164:17414007,42340817:0,414482,122846 -r1,18167:20234256,42340817:2820249,537328,122846 -k1,18164:17414007,42340817:-2820249 -) -(1,18164:17414007,42340817:2820249,414482,122846 -k1,18164:17414007,42340817:3277 -h1,18164:20230979,42340817:0,411205,112570 -) -k1,18164:20398633,42340817:164377 -k1,18164:21754454,42340817:164376 -k1,18164:24612360,42340817:164376 -k1,18164:25428165,42340817:164377 -k1,18164:26358657,42340817:164376 -k1,18164:27542119,42340817:164377 -k1,18164:29408465,42340817:164376 -k1,18164:32583029,42340817:0 -) -(1,18165:6630773,43182305:25952256,513147,134348 -k1,18164:7666067,43182305:166942 -k1,18164:9308223,43182305:166941 -k1,18164:10914991,43182305:166942 -k1,18164:12574842,43182305:166941 -k1,18164:14245835,43182305:166942 -k1,18164:15431862,43182305:166942 -k1,18164:17609448,43182305:166941 -k1,18164:18427818,43182305:166942 -k1,18164:19342525,43182305:166941 -k1,18164:22094862,43182305:166942 -k1,18164:23253364,43182305:166942 -k1,18164:24079597,43182305:166941 -k1,18164:25801708,43182305:166942 -(1,18164:25801708,43182305:0,459977,115847 -r1,18167:26863397,43182305:1061689,575824,115847 -k1,18164:25801708,43182305:-1061689 -) -(1,18164:25801708,43182305:1061689,459977,115847 -k1,18164:25801708,43182305:3277 -h1,18164:26860120,43182305:0,411205,112570 -) -k1,18164:27030338,43182305:166941 -k1,18164:30559277,43182305:166942 -k1,18164:32583029,43182305:0 -) -(1,18165:6630773,44023793:25952256,513147,126483 -k1,18164:9451574,44023793:229507 -k1,18164:11070444,44023793:229507 -k1,18164:12693902,44023793:229507 -k1,18164:15594656,44023793:229507 -k1,18164:19925407,44023793:229508 -k1,18164:24354461,44023793:229507 -k1,18164:25243260,44023793:229507 -k1,18164:27597444,44023793:229507 -k1,18164:30432662,44023793:229507 -k1,18164:32051532,44023793:229507 -k1,18164:32583029,44023793:0 -) -(1,18165:6630773,44865281:25952256,513147,134348 -k1,18164:10111063,44865281:185795 -k1,18164:11058385,44865281:185794 -k1,18164:13824332,44865281:185795 -k1,18164:15124893,44865281:185795 -k1,18164:16691531,44865281:185794 -k1,18164:19187470,44865281:185795 -k1,18164:21864943,44865281:185794 -k1,18164:23069823,44865281:185795 -k1,18164:25082106,44865281:185795 -k1,18164:25927192,44865281:185794 -k1,18164:27316228,44865281:185795 -k1,18164:29257733,44865281:185795 -k1,18164:30168355,44865281:185794 -k1,18164:30710010,44865281:185795 -k1,18164:32583029,44865281:0 -) -(1,18165:6630773,45706769:25952256,513147,126483 -g1,18164:8021447,45706769 -g1,18164:9574650,45706769 -g1,18164:11898556,45706769 -g1,18164:14759202,45706769 -k1,18165:32583029,45706769:15334770 -g1,18165:32583029,45706769 -) -] -(1,18167:32583029,45706769:0,0,0 -g1,18167:32583029,45706769 -) -) -] -(1,18167:6630773,47279633:25952256,0,0 -h1,18167:6630773,47279633:25952256,0,0 -) -] -(1,18167:4262630,4025873:0,0,0 -[1,18167:-473656,4025873:0,0,0 -(1,18167:-473656,-710413:0,0,0 -(1,18167:-473656,-710413:0,0,0 -g1,18167:-473656,-710413 -) -g1,18167:-473656,-710413 -) -] -) -] -!23873 -}319 -Input:2760:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2761:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2762:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2763:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2764:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2765:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2766:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2767:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!20349 +}302 Input:2768:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2769:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2770:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -312259,809 +310401,811 @@ Input:2780:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConso Input:2781:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2782:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2783:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2784:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2785:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2786:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!2550 -{320 -[1,18211:4262630,47279633:28320399,43253760,0 -(1,18211:4262630,4025873:0,0,0 -[1,18211:-473656,4025873:0,0,0 -(1,18211:-473656,-710413:0,0,0 -(1,18211:-473656,-644877:0,0,0 -k1,18211:-473656,-644877:-65536 +!1516 +{303 +[1,18335:4262630,47279633:28320399,43253760,0 +(1,18335:4262630,4025873:0,0,0 +[1,18335:-473656,4025873:0,0,0 +(1,18335:-473656,-710413:0,0,0 +(1,18335:-473656,-644877:0,0,0 +k1,18335:-473656,-644877:-65536 ) -(1,18211:-473656,4736287:0,0,0 -k1,18211:-473656,4736287:5209943 +(1,18335:-473656,4736287:0,0,0 +k1,18335:-473656,4736287:5209943 ) -g1,18211:-473656,-710413 +g1,18335:-473656,-710413 ) ] ) -[1,18211:6630773,47279633:25952256,43253760,0 -[1,18211:6630773,4812305:25952256,786432,0 -(1,18211:6630773,4812305:25952256,485622,11795 -(1,18211:6630773,4812305:25952256,485622,11795 -g1,18211:3078558,4812305 -[1,18211:3078558,4812305:0,0,0 -(1,18211:3078558,2439708:0,1703936,0 -k1,18211:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,18211:2537886,2439708:1179648,16384,0 +[1,18335:6630773,47279633:25952256,43253760,0 +[1,18335:6630773,4812305:25952256,786432,0 +(1,18335:6630773,4812305:25952256,513147,126483 +(1,18335:6630773,4812305:25952256,513147,126483 +g1,18335:3078558,4812305 +[1,18335:3078558,4812305:0,0,0 +(1,18335:3078558,2439708:0,1703936,0 +k1,18335:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,18335:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,18211:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,18335:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,18211:3078558,4812305:0,0,0 -(1,18211:3078558,2439708:0,1703936,0 -g1,18211:29030814,2439708 -g1,18211:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,18211:36151628,1915420:16384,1179648,0 +[1,18335:3078558,4812305:0,0,0 +(1,18335:3078558,2439708:0,1703936,0 +g1,18335:29030814,2439708 +g1,18335:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,18335:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,18211:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,18335:37855564,2439708:1179648,16384,0 ) ) -k1,18211:3078556,2439708:-34777008 +k1,18335:3078556,2439708:-34777008 ) ] -[1,18211:3078558,4812305:0,0,0 -(1,18211:3078558,49800853:0,16384,2228224 -k1,18211:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,18211:2537886,49800853:1179648,16384,0 +[1,18335:3078558,4812305:0,0,0 +(1,18335:3078558,49800853:0,16384,2228224 +k1,18335:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,18335:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,18211:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,18335:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,18211:3078558,4812305:0,0,0 -(1,18211:3078558,49800853:0,16384,2228224 -g1,18211:29030814,49800853 -g1,18211:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,18211:36151628,51504789:16384,1179648,0 +[1,18335:3078558,4812305:0,0,0 +(1,18335:3078558,49800853:0,16384,2228224 +g1,18335:29030814,49800853 +g1,18335:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,18335:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,18211:37855564,49800853:1179648,16384,0 -) -) -k1,18211:3078556,49800853:-34777008 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,18335:37855564,49800853:1179648,16384,0 ) -] -g1,18211:6630773,4812305 -g1,18211:6630773,4812305 -g1,18211:10347975,4812305 -k1,18211:31387651,4812305:21039676 ) +k1,18335:3078556,49800853:-34777008 ) ] -[1,18211:6630773,45706769:25952256,40108032,0 -(1,18211:6630773,45706769:25952256,40108032,0 -(1,18211:6630773,45706769:0,0,0 -g1,18211:6630773,45706769 -) -[1,18211:6630773,45706769:25952256,40108032,0 -v1,18167:6630773,6254097:0,393216,0 -(1,18173:6630773,7907841:25952256,2046960,196608 -g1,18173:6630773,7907841 -g1,18173:6630773,7907841 -g1,18173:6434165,7907841 -(1,18173:6434165,7907841:0,2046960,196608 -r1,18211:32779637,7907841:26345472,2243568,196608 -k1,18173:6434165,7907841:-26345472 -) -(1,18173:6434165,7907841:26345472,2046960,196608 -[1,18173:6630773,7907841:25952256,1850352,0 -(1,18169:6630773,6468007:25952256,410518,107478 -(1,18168:6630773,6468007:0,0,0 -g1,18168:6630773,6468007 -g1,18168:6630773,6468007 -g1,18168:6303093,6468007 -(1,18168:6303093,6468007:0,0,0 -) -g1,18168:6630773,6468007 -) -g1,18169:7579210,6468007 -g1,18169:8527648,6468007 -g1,18169:21173476,6468007 -g1,18169:23702642,6468007 -g1,18169:24334934,6468007 -g1,18169:26547955,6468007 -g1,18169:28444829,6468007 -g1,18169:29077121,6468007 -h1,18169:30657850,6468007:0,0,0 -k1,18169:32583029,6468007:1925179 -g1,18169:32583029,6468007 -) -(1,18170:6630773,7134185:25952256,404226,107478 -h1,18170:6630773,7134185:0,0,0 -g1,18170:10108376,7134185 -h1,18170:10424522,7134185:0,0,0 -k1,18170:32583030,7134185:22158508 -g1,18170:32583030,7134185 -) -(1,18171:6630773,7800363:25952256,410518,107478 -h1,18171:6630773,7800363:0,0,0 -g1,18171:6946919,7800363 -g1,18171:7263065,7800363 -g1,18171:12637543,7800363 -g1,18171:13269835,7800363 -g1,18171:15482855,7800363 -g1,18171:17379729,7800363 -g1,18171:18012021,7800363 -h1,18171:20857332,7800363:0,0,0 -k1,18171:32583029,7800363:11725697 -g1,18171:32583029,7800363 -) -] -) -g1,18173:32583029,7907841 -g1,18173:6630773,7907841 -g1,18173:6630773,7907841 -g1,18173:32583029,7907841 -g1,18173:32583029,7907841 -) -h1,18173:6630773,8104449:0,0,0 -(1,18176:6630773,17769196:25952256,9083666,0 -k1,18176:10523651,17769196:3892878 -h1,18175:10523651,17769196:0,0,0 -(1,18175:10523651,17769196:18166500,9083666,0 -(1,18175:10523651,17769196:18167376,9083688,0 -(1,18175:10523651,17769196:18167376,9083688,0 -(1,18175:10523651,17769196:0,9083688,0 -(1,18175:10523651,17769196:0,14208860,0 -(1,18175:10523651,17769196:28417720,14208860,0 -) -k1,18175:10523651,17769196:-28417720 -) -) -g1,18175:28691027,17769196 -) -) -) -g1,18176:28690151,17769196 -k1,18176:32583029,17769196:3892878 -) -(1,18184:6630773,19860456:25952256,534184,12975 -(1,18184:6630773,19860456:2450326,534184,12975 -g1,18184:6630773,19860456 -g1,18184:9081099,19860456 -) -k1,18184:32583028,19860456:21863332 -g1,18184:32583028,19860456 -) -(1,18189:6630773,21095160:25952256,505283,122846 -k1,18188:7847536,21095160:263214 -k1,18188:9215032,21095160:263214 -k1,18188:10570732,21095160:263215 -(1,18188:10570732,21095160:0,452978,122846 -r1,18211:14446116,21095160:3875384,575824,122846 -k1,18188:10570732,21095160:-3875384 -) -(1,18188:10570732,21095160:3875384,452978,122846 -k1,18188:10570732,21095160:3277 -h1,18188:14442839,21095160:0,411205,112570 -) -k1,18188:14709330,21095160:263214 -k1,18188:15655429,21095160:263214 -(1,18188:15655429,21095160:0,452978,122846 -r1,18211:19882525,21095160:4227096,575824,122846 -k1,18188:15655429,21095160:-4227096 -) -(1,18188:15655429,21095160:4227096,452978,122846 -k1,18188:15655429,21095160:3277 -h1,18188:19879248,21095160:0,411205,112570 -) -k1,18188:20145739,21095160:263214 -k1,18188:21060381,21095160:263214 -k1,18188:22520938,21095160:263214 -k1,18188:24010332,21095160:263215 -k1,18188:26117729,21095160:263214 -k1,18188:27032371,21095160:263214 -k1,18188:31541007,21095160:263214 -k1,18189:32583029,21095160:0 -) -(1,18189:6630773,21936648:25952256,505283,126483 -(1,18188:6630773,21936648:0,452978,122846 -r1,18211:10506157,21936648:3875384,575824,122846 -k1,18188:6630773,21936648:-3875384 -) -(1,18188:6630773,21936648:3875384,452978,122846 -k1,18188:6630773,21936648:3277 -h1,18188:10502880,21936648:0,411205,112570 -) -k1,18188:10701528,21936648:195371 -k1,18188:12088345,21936648:195372 -(1,18188:12088345,21936648:0,452978,122846 -r1,18211:16315441,21936648:4227096,575824,122846 -k1,18188:12088345,21936648:-4227096 -) -(1,18188:12088345,21936648:4227096,452978,122846 -k1,18188:12088345,21936648:3277 -h1,18188:16312164,21936648:0,411205,112570 -) -k1,18188:16684482,21936648:195371 -k1,18188:17898939,21936648:195372 -k1,18188:20938573,21936648:195371 -(1,18188:20938573,21936648:0,452978,115847 -r1,18211:22703686,21936648:1765113,568825,115847 -k1,18188:20938573,21936648:-1765113 -) -(1,18188:20938573,21936648:1765113,452978,115847 -k1,18188:20938573,21936648:3277 -h1,18188:22700409,21936648:0,411205,112570 -) -k1,18188:22899058,21936648:195372 -k1,18188:25854805,21936648:195371 -k1,18188:27069262,21936648:195372 -k1,18188:28490812,21936648:195371 -k1,18188:29337612,21936648:195372 -k1,18188:30280749,21936648:195371 -k1,18188:32583029,21936648:0 -) -(1,18189:6630773,22778136:25952256,513147,126483 -k1,18188:8043365,22778136:221147 -k1,18188:9283597,22778136:221147 -k1,18188:11225720,22778136:221148 -k1,18188:14621431,22778136:221147 -(1,18188:14621431,22778136:0,414482,115847 -r1,18211:14979697,22778136:358266,530329,115847 -k1,18188:14621431,22778136:-358266 -) -(1,18188:14621431,22778136:358266,414482,115847 -k1,18188:14621431,22778136:3277 -h1,18188:14976420,22778136:0,411205,112570 -) -k1,18188:15200844,22778136:221147 -k1,18188:16613436,22778136:221147 -(1,18188:16613436,22778136:0,414482,115847 -r1,18211:16971702,22778136:358266,530329,115847 -k1,18188:16613436,22778136:-358266 -) -(1,18188:16613436,22778136:358266,414482,115847 -k1,18188:16613436,22778136:3277 -h1,18188:16968425,22778136:0,411205,112570 -) -k1,18188:17366519,22778136:221147 -k1,18188:18606752,22778136:221148 -k1,18188:21384458,22778136:221147 -k1,18188:22264897,22778136:221147 -k1,18188:23505129,22778136:221147 -k1,18188:25744130,22778136:221147 -k1,18188:26783167,22778136:221148 -k1,18188:28161024,22778136:221147 -k1,18188:30338421,22778136:221147 -k1,18188:32583029,22778136:0 -) -(1,18189:6630773,23619624:25952256,513147,115847 -g1,18188:7849087,23619624 -(1,18188:7849087,23619624:0,452978,115847 -r1,18211:9614200,23619624:1765113,568825,115847 -k1,18188:7849087,23619624:-1765113 -) -(1,18188:7849087,23619624:1765113,452978,115847 -k1,18188:7849087,23619624:3277 -h1,18188:9610923,23619624:0,411205,112570 -) -g1,18188:9813429,23619624 -g1,18188:11204103,23619624 -(1,18188:11204103,23619624:0,452978,115847 -r1,18211:12617504,23619624:1413401,568825,115847 -k1,18188:11204103,23619624:-1413401 -) -(1,18188:11204103,23619624:1413401,452978,115847 -k1,18188:11204103,23619624:3277 -h1,18188:12614227,23619624:0,411205,112570 -) -g1,18188:12816733,23619624 -g1,18188:16190526,23619624 -g1,18188:17494037,23619624 -g1,18188:18979082,23619624 -g1,18188:19926077,23619624 -g1,18188:21638532,23619624 -g1,18188:22785412,23619624 -g1,18188:24003726,23619624 -k1,18189:32583029,23619624:7179454 -g1,18189:32583029,23619624 -) -v1,18191:6630773,24801346:0,393216,0 -(1,18201:6630773,29113510:25952256,4705380,196608 -g1,18201:6630773,29113510 -g1,18201:6630773,29113510 -g1,18201:6434165,29113510 -(1,18201:6434165,29113510:0,4705380,196608 -r1,18211:32779637,29113510:26345472,4901988,196608 -k1,18201:6434165,29113510:-26345472 -) -(1,18201:6434165,29113510:26345472,4705380,196608 -[1,18201:6630773,29113510:25952256,4508772,0 -(1,18193:6630773,25008964:25952256,404226,107478 -(1,18192:6630773,25008964:0,0,0 -g1,18192:6630773,25008964 -g1,18192:6630773,25008964 -g1,18192:6303093,25008964 -(1,18192:6303093,25008964:0,0,0 -) -g1,18192:6630773,25008964 -) -k1,18193:6630773,25008964:0 -g1,18193:10424522,25008964 -g1,18193:11056814,25008964 -g1,18193:13585980,25008964 -g1,18193:15482855,25008964 -g1,18193:16115147,25008964 -g1,18193:18012022,25008964 -g1,18193:18644314,25008964 -g1,18193:19276606,25008964 -k1,18193:19276606,25008964:0 -h1,18193:20541189,25008964:0,0,0 -k1,18193:32583029,25008964:12041840 -g1,18193:32583029,25008964 -) -(1,18194:6630773,25675142:25952256,410518,101187 -h1,18194:6630773,25675142:0,0,0 -g1,18194:6946919,25675142 -g1,18194:7263065,25675142 -g1,18194:7579211,25675142 -g1,18194:7895357,25675142 -g1,18194:8211503,25675142 -g1,18194:8527649,25675142 -g1,18194:8843795,25675142 -g1,18194:9159941,25675142 -g1,18194:9476087,25675142 -g1,18194:9792233,25675142 -g1,18194:10108379,25675142 -g1,18194:10424525,25675142 -g1,18194:10740671,25675142 -g1,18194:11056817,25675142 -g1,18194:11372963,25675142 -g1,18194:11689109,25675142 -g1,18194:12005255,25675142 -g1,18194:12321401,25675142 -g1,18194:12637547,25675142 -g1,18194:12953693,25675142 -g1,18194:13269839,25675142 -g1,18194:13585985,25675142 -g1,18194:13902131,25675142 -g1,18194:14218277,25675142 -g1,18194:14534423,25675142 -g1,18194:14850569,25675142 -g1,18194:16747443,25675142 -g1,18194:17379735,25675142 -k1,18194:17379735,25675142:0 -h1,18194:21173483,25675142:0,0,0 -k1,18194:32583029,25675142:11409546 -g1,18194:32583029,25675142 -) -(1,18195:6630773,26341320:25952256,404226,82312 -h1,18195:6630773,26341320:0,0,0 -g1,18195:6946919,26341320 -g1,18195:7263065,26341320 -g1,18195:7579211,26341320 -g1,18195:7895357,26341320 -g1,18195:8211503,26341320 -g1,18195:8527649,26341320 -g1,18195:8843795,26341320 -g1,18195:9159941,26341320 -g1,18195:9476087,26341320 -g1,18195:9792233,26341320 -g1,18195:10108379,26341320 -g1,18195:10424525,26341320 -g1,18195:10740671,26341320 -g1,18195:11056817,26341320 -g1,18195:11372963,26341320 -g1,18195:11689109,26341320 -g1,18195:12005255,26341320 -g1,18195:12321401,26341320 -g1,18195:12637547,26341320 -g1,18195:12953693,26341320 -g1,18195:13269839,26341320 -g1,18195:13585985,26341320 -g1,18195:13902131,26341320 -g1,18195:14218277,26341320 -g1,18195:14534423,26341320 -g1,18195:14850569,26341320 -g1,18195:16431298,26341320 -g1,18195:17063590,26341320 -k1,18195:17063590,26341320:0 -h1,18195:18012027,26341320:0,0,0 -k1,18195:32583029,26341320:14571002 -g1,18195:32583029,26341320 -) -(1,18196:6630773,27007498:25952256,404226,101187 -h1,18196:6630773,27007498:0,0,0 -g1,18196:6946919,27007498 -g1,18196:7263065,27007498 -g1,18196:7579211,27007498 -g1,18196:7895357,27007498 -g1,18196:8211503,27007498 -g1,18196:8527649,27007498 -g1,18196:8843795,27007498 -g1,18196:9159941,27007498 -g1,18196:9476087,27007498 -g1,18196:9792233,27007498 -g1,18196:10108379,27007498 -g1,18196:10424525,27007498 -g1,18196:10740671,27007498 -g1,18196:11056817,27007498 -g1,18196:11372963,27007498 -g1,18196:11689109,27007498 -g1,18196:12005255,27007498 -g1,18196:12321401,27007498 -g1,18196:12637547,27007498 -g1,18196:12953693,27007498 -g1,18196:13269839,27007498 -g1,18196:13585985,27007498 -g1,18196:13902131,27007498 -g1,18196:14218277,27007498 -g1,18196:14534423,27007498 -g1,18196:14850569,27007498 -g1,18196:16747443,27007498 -g1,18196:17379735,27007498 -g1,18196:19276609,27007498 -h1,18196:19592755,27007498:0,0,0 -k1,18196:32583029,27007498:12990274 -g1,18196:32583029,27007498 -) -(1,18197:6630773,27673676:25952256,404226,76021 -h1,18197:6630773,27673676:0,0,0 -g1,18197:6946919,27673676 -g1,18197:7263065,27673676 -g1,18197:11372959,27673676 -h1,18197:11689105,27673676:0,0,0 -k1,18197:32583029,27673676:20893924 -g1,18197:32583029,27673676 -) -(1,18198:6630773,28339854:25952256,404226,107478 -h1,18198:6630773,28339854:0,0,0 -g1,18198:6946919,28339854 -g1,18198:7263065,28339854 -g1,18198:11372959,28339854 -h1,18198:11689105,28339854:0,0,0 -k1,18198:32583029,28339854:20893924 -g1,18198:32583029,28339854 -) -(1,18199:6630773,29006032:25952256,404226,107478 -h1,18199:6630773,29006032:0,0,0 -g1,18199:6946919,29006032 -g1,18199:7263065,29006032 -g1,18199:12321396,29006032 -g1,18199:12953688,29006032 -g1,18199:16747437,29006032 -g1,18199:18328166,29006032 -g1,18199:18960458,29006032 -h1,18199:19592750,29006032:0,0,0 -k1,18199:32583029,29006032:12990279 -g1,18199:32583029,29006032 -) -] -) -g1,18201:32583029,29113510 -g1,18201:6630773,29113510 -g1,18201:6630773,29113510 -g1,18201:32583029,29113510 -g1,18201:32583029,29113510 -) -h1,18201:6630773,29310118:0,0,0 -(1,18204:6630773,38974865:25952256,9083666,0 -k1,18204:10523651,38974865:3892878 -h1,18203:10523651,38974865:0,0,0 -(1,18203:10523651,38974865:18166500,9083666,0 -(1,18203:10523651,38974865:18167376,9083688,0 -(1,18203:10523651,38974865:18167376,9083688,0 -(1,18203:10523651,38974865:0,9083688,0 -(1,18203:10523651,38974865:0,14208860,0 -(1,18203:10523651,38974865:28417720,14208860,0 -) -k1,18203:10523651,38974865:-28417720 -) -) -g1,18203:28691027,38974865 -) -) -) -g1,18204:28690151,38974865 -k1,18204:32583029,38974865:3892878 -) -(1,18211:6630773,39816353:25952256,505283,134348 -h1,18210:6630773,39816353:983040,0,0 -k1,18210:8405966,39816353:164318 -k1,18210:11409960,39816353:164319 -(1,18210:11409960,39816353:0,452978,122846 -r1,18211:13175073,39816353:1765113,575824,122846 -k1,18210:11409960,39816353:-1765113 -) -(1,18210:11409960,39816353:1765113,452978,122846 -k1,18210:11409960,39816353:3277 -h1,18210:13171796,39816353:0,411205,112570 -) -k1,18210:13339391,39816353:164318 -k1,18210:14695154,39816353:164318 -(1,18210:14695154,39816353:0,452978,122846 -r1,18211:16460267,39816353:1765113,575824,122846 -k1,18210:14695154,39816353:-1765113 -) -(1,18210:14695154,39816353:1765113,452978,122846 -k1,18210:14695154,39816353:3277 -h1,18210:16456990,39816353:0,411205,112570 -) -k1,18210:16624586,39816353:164319 -k1,18210:17980349,39816353:164318 -(1,18210:17980349,39816353:0,452978,122846 -r1,18211:19745462,39816353:1765113,575824,122846 -k1,18210:17980349,39816353:-1765113 -) -(1,18210:17980349,39816353:1765113,452978,122846 -k1,18210:17980349,39816353:3277 -h1,18210:19742185,39816353:0,411205,112570 -) -k1,18210:19909780,39816353:164318 -k1,18210:21178381,39816353:164319 -k1,18210:22090465,39816353:164318 -k1,18210:23768009,39816353:164318 -k1,18210:24583756,39816353:164319 -k1,18210:26647963,39816353:164318 -k1,18210:27831366,39816353:164318 -k1,18210:29221864,39816353:164319 -k1,18210:30577627,39816353:164318 -k1,18210:32583029,39816353:0 -) -(1,18211:6630773,40657841:25952256,513147,126483 -k1,18210:7576470,40657841:157299 -k1,18210:10521670,40657841:157298 -k1,18210:11875656,40657841:157299 -k1,18210:14298535,40657841:157299 -k1,18210:16136176,40657841:157298 -k1,18210:16952767,40657841:157299 -k1,18210:18080654,40657841:157299 -k1,18210:19185603,40657841:157298 -k1,18210:20809598,40657841:157299 -(1,18210:20809598,40657841:0,452978,122846 -r1,18211:22574711,40657841:1765113,575824,122846 -k1,18210:20809598,40657841:-1765113 -) -(1,18210:20809598,40657841:1765113,452978,122846 -k1,18210:20809598,40657841:3277 -h1,18210:22571434,40657841:0,411205,112570 -) -k1,18210:22732010,40657841:157299 -k1,18210:24080754,40657841:157299 -(1,18210:24080754,40657841:0,452978,122846 -r1,18211:25845867,40657841:1765113,575824,122846 -k1,18210:24080754,40657841:-1765113 -) -(1,18210:24080754,40657841:1765113,452978,122846 -k1,18210:24080754,40657841:3277 -h1,18210:25842590,40657841:0,411205,112570 -) -k1,18210:26003165,40657841:157298 -k1,18210:27425309,40657841:157299 -k1,18210:28601693,40657841:157299 -k1,18210:30747353,40657841:157298 -k1,18210:31563944,40657841:157299 -k1,18210:32583029,40657841:0 -) -(1,18211:6630773,41499329:25952256,513147,134348 -k1,18210:8077626,41499329:220674 -k1,18210:8911061,41499329:220673 -k1,18210:10150820,41499329:220674 -k1,18210:13132525,41499329:220673 -(1,18210:13132525,41499329:0,414482,115847 -r1,18211:13490791,41499329:358266,530329,115847 -k1,18210:13132525,41499329:-358266 -) -(1,18210:13132525,41499329:358266,414482,115847 -k1,18210:13132525,41499329:3277 -h1,18210:13487514,41499329:0,411205,112570 -) -k1,18210:13711465,41499329:220674 -k1,18210:15123584,41499329:220674 -(1,18210:15123584,41499329:0,414482,115847 -r1,18211:15481850,41499329:358266,530329,115847 -k1,18210:15123584,41499329:-358266 -) -(1,18210:15123584,41499329:358266,414482,115847 -k1,18210:15123584,41499329:3277 -h1,18210:15478573,41499329:0,411205,112570 -) -k1,18210:15702523,41499329:220673 -k1,18210:19835041,41499329:220674 -k1,18210:23102483,41499329:220673 -k1,18210:24514602,41499329:220674 -k1,18210:28651706,41499329:220673 -k1,18210:29820031,41499329:220674 -k1,18211:32583029,41499329:0 -) -(1,18211:6630773,42340817:25952256,513147,126483 -k1,18210:8104618,42340817:206379 -k1,18210:9847162,42340817:206380 -k1,18210:10704969,42340817:206379 -k1,18210:11930433,42340817:206379 -k1,18210:13536662,42340817:206380 -k1,18210:14809312,42340817:206379 -k1,18210:16034776,42340817:206379 -k1,18210:17692123,42340817:206380 -k1,18210:19279346,42340817:206379 -k1,18210:20017222,42340817:206379 -k1,18210:23432900,42340817:206380 -k1,18210:25337317,42340817:206379 -(1,18210:25337317,42340817:0,452978,122846 -r1,18211:27102430,42340817:1765113,575824,122846 -k1,18210:25337317,42340817:-1765113 -) -(1,18210:25337317,42340817:1765113,452978,122846 -k1,18210:25337317,42340817:3277 -h1,18210:27099153,42340817:0,411205,112570 -) -k1,18210:27308809,42340817:206379 -k1,18210:28046686,42340817:206380 -k1,18210:31015408,42340817:206379 -k1,18210:32583029,42340817:0 -) -(1,18211:6630773,43182305:25952256,513147,134348 -k1,18210:8459977,43182305:235368 -k1,18210:10806915,43182305:235368 -k1,18210:12901539,43182305:235368 -k1,18210:14579353,43182305:235367 -k1,18210:15785309,43182305:235368 -k1,18210:17488683,43182305:235368 -k1,18210:18743136,43182305:235368 -k1,18210:20492386,43182305:235368 -k1,18210:21801889,43182305:235368 -k1,18210:22720142,43182305:235368 -k1,18210:24880301,43182305:235367 -k1,18210:26307114,43182305:235368 -k1,18210:28553127,43182305:235368 -k1,18210:31140582,43182305:235368 -k1,18210:32583029,43182305:0 -) -(1,18211:6630773,44023793:25952256,513147,134348 -k1,18210:7922971,44023793:147939 -k1,18210:9606418,44023793:147938 -k1,18210:10437242,44023793:147939 -k1,18210:11420765,44023793:147939 -k1,18210:12962655,44023793:147939 -k1,18210:15435155,44023793:147938 -k1,18210:16234522,44023793:147939 -k1,18210:17170859,44023793:147939 -(1,18210:17170859,44023793:0,414482,115847 -r1,18211:17529125,44023793:358266,530329,115847 -k1,18210:17170859,44023793:-358266 -) -(1,18210:17170859,44023793:358266,414482,115847 -k1,18210:17170859,44023793:3277 -h1,18210:17525848,44023793:0,411205,112570 -) -k1,18210:17677064,44023793:147939 -k1,18210:19016447,44023793:147938 -(1,18210:19016447,44023793:0,414482,115847 -r1,18211:19374713,44023793:358266,530329,115847 -k1,18210:19016447,44023793:-358266 -) -(1,18210:19016447,44023793:358266,414482,115847 -k1,18210:19016447,44023793:3277 -h1,18210:19371436,44023793:0,411205,112570 -) -k1,18210:19522652,44023793:147939 -k1,18210:23582435,44023793:147939 -k1,18210:24217911,44023793:147888 -k1,18210:26046192,44023793:147938 -k1,18210:26853423,44023793:147939 -k1,18210:27399821,44023793:147939 -k1,18210:28230645,44023793:147939 -k1,18210:28777042,44023793:147938 -k1,18210:30189826,44023793:147939 -k1,18210:31356850,44023793:147939 -k1,18210:32583029,44023793:0 -) -(1,18211:6630773,44865281:25952256,513147,134348 -k1,18210:7551537,44865281:195936 -k1,18210:9031978,44865281:195935 -k1,18210:10016312,44865281:195936 -k1,18210:11701880,44865281:195935 -k1,18210:12429313,44865281:195936 -k1,18210:13238010,44865281:195935 -k1,18210:14453031,44865281:195936 -k1,18210:17409999,44865281:195936 -k1,18210:21187477,44865281:195935 -k1,18210:23494983,44865281:195936 -k1,18210:26056768,44865281:195935 -k1,18210:27271789,44865281:195936 -k1,18210:29248337,44865281:195935 -$1,18210:29248337,44865281 -k1,18210:29756032,44865281:109236 -k1,18210:30520628,44865281:109236 -$1,18210:30919087,44865281 -k1,18210:31115023,44865281:195936 -k1,18210:32583029,44865281:0 -) -(1,18211:6630773,45706769:25952256,513147,134348 -k1,18210:7826384,45706769:176526 -k1,18210:9229088,45706769:176525 -k1,18210:10872310,45706769:176526 -k1,18210:13265264,45706769:176526 -k1,18210:15209295,45706769:176525 -k1,18210:18230084,45706769:176526 -k1,18210:19605263,45706769:176525 -k1,18210:21517182,45706769:176526 -k1,18210:23311792,45706769:176526 -k1,18210:25342986,45706769:176525 -k1,18210:26328882,45706769:176526 -k1,18210:27524493,45706769:176526 -k1,18210:29714284,45706769:176525 -k1,18210:30573695,45706769:176526 -k1,18210:32583029,45706769:0 -) -] -(1,18211:32583029,45706769:0,0,0 -g1,18211:32583029,45706769 -) -) -] -(1,18211:6630773,47279633:25952256,0,0 -h1,18211:6630773,47279633:25952256,0,0 -) -] -(1,18211:4262630,4025873:0,0,0 -[1,18211:-473656,4025873:0,0,0 -(1,18211:-473656,-710413:0,0,0 -(1,18211:-473656,-710413:0,0,0 -g1,18211:-473656,-710413 -) -g1,18211:-473656,-710413 -) -] -) -] -!22893 -}320 +g1,18335:6630773,4812305 +k1,18335:21350816,4812305:13524666 +g1,18335:21999622,4812305 +g1,18335:25611966,4812305 +g1,18335:28956923,4812305 +g1,18335:29772190,4812305 +) +) +] +[1,18335:6630773,45706769:25952256,40108032,0 +(1,18335:6630773,45706769:25952256,40108032,0 +(1,18335:6630773,45706769:0,0,0 +g1,18335:6630773,45706769 +) +[1,18335:6630773,45706769:25952256,40108032,0 +(1,18272:6630773,6254097:25952256,513147,134348 +k1,18271:9117386,6254097:304919 +(1,18271:9117386,6254097:0,452978,122846 +r1,18335:15454754,6254097:6337368,575824,122846 +k1,18271:9117386,6254097:-6337368 +) +(1,18271:9117386,6254097:6337368,452978,122846 +g1,18271:12286070,6254097 +g1,18271:12989494,6254097 +h1,18271:15451477,6254097:0,411205,112570 +) +k1,18271:15759673,6254097:304919 +k1,18271:16716020,6254097:304919 +k1,18271:19665972,6254097:304919 +k1,18271:20989976,6254097:304919 +k1,18271:23560475,6254097:304919 +(1,18271:23560475,6254097:0,452978,115847 +r1,18335:29897843,6254097:6337368,568825,115847 +k1,18271:23560475,6254097:-6337368 +) +(1,18271:23560475,6254097:6337368,452978,115847 +g1,18271:26729159,6254097 +g1,18271:27432583,6254097 +h1,18271:29894566,6254097:0,411205,112570 +) +k1,18271:30376432,6254097:304919 +k1,18272:32583029,6254097:0 +) +(1,18272:6630773,7119177:25952256,505283,134348 +(1,18271:6630773,7119177:0,452978,115847 +r1,18335:10154446,7119177:3523673,568825,115847 +k1,18271:6630773,7119177:-3523673 +) +(1,18271:6630773,7119177:3523673,452978,115847 +g1,18271:8744321,7119177 +g1,18271:9447745,7119177 +h1,18271:10151169,7119177:0,411205,112570 +) +g1,18271:10353675,7119177 +g1,18271:13237914,7119177 +g1,18271:14456228,7119177 +g1,18271:16154265,7119177 +g1,18271:19483493,7119177 +g1,18271:20701807,7119177 +k1,18272:32583029,7119177:10332606 +g1,18272:32583029,7119177 +) +v1,18274:6630773,7804032:0,393216,0 +(1,18280:6630773,9521031:25952256,2110215,196608 +g1,18280:6630773,9521031 +g1,18280:6630773,9521031 +g1,18280:6434165,9521031 +(1,18280:6434165,9521031:0,2110215,196608 +r1,18335:32779637,9521031:26345472,2306823,196608 +k1,18280:6434165,9521031:-26345472 +) +(1,18280:6434165,9521031:26345472,2110215,196608 +[1,18280:6630773,9521031:25952256,1913607,0 +(1,18276:6630773,8038469:25952256,431045,112852 +(1,18275:6630773,8038469:0,0,0 +g1,18275:6630773,8038469 +g1,18275:6630773,8038469 +g1,18275:6303093,8038469 +(1,18275:6303093,8038469:0,0,0 +) +g1,18275:6630773,8038469 +) +k1,18276:6630773,8038469:0 +g1,18276:13269852,8038469 +g1,18276:15261576,8038469 +g1,18276:15925484,8038469 +g1,18276:19576977,8038469 +g1,18276:20240885,8038469 +g1,18276:20904793,8038469 +g1,18276:25220194,8038469 +g1,18276:26879964,8038469 +g1,18276:27543872,8038469 +g1,18276:30199504,8038469 +h1,18276:30531458,8038469:0,0,0 +k1,18276:32583029,8038469:2051571 +g1,18276:32583029,8038469 +) +(1,18277:6630773,8723324:25952256,424439,112852 +h1,18277:6630773,8723324:0,0,0 +g1,18277:6962727,8723324 +g1,18277:7294681,8723324 +g1,18277:7626635,8723324 +g1,18277:7958589,8723324 +g1,18277:8290543,8723324 +g1,18277:13269852,8723324 +g1,18277:13933760,8723324 +g1,18277:15261576,8723324 +g1,18277:18249161,8723324 +g1,18277:18913069,8723324 +g1,18277:21900655,8723324 +h1,18277:22232609,8723324:0,0,0 +k1,18277:32583029,8723324:10350420 +g1,18277:32583029,8723324 +) +(1,18278:6630773,9408179:25952256,431045,112852 +h1,18278:6630773,9408179:0,0,0 +g1,18278:6962727,9408179 +g1,18278:7294681,9408179 +g1,18278:7626635,9408179 +g1,18278:7958589,9408179 +g1,18278:8290543,9408179 +g1,18278:14265714,9408179 +g1,18278:14929622,9408179 +k1,18278:14929622,9408179:0 +h1,18278:19908931,9408179:0,0,0 +k1,18278:32583029,9408179:12674098 +g1,18278:32583029,9408179 +) +] +) +g1,18280:32583029,9521031 +g1,18280:6630773,9521031 +g1,18280:6630773,9521031 +g1,18280:32583029,9521031 +g1,18280:32583029,9521031 +) +h1,18280:6630773,9717639:0,0,0 +(1,18283:6630773,18866841:25952256,9083666,0 +k1,18283:10523651,18866841:3892878 +h1,18282:10523651,18866841:0,0,0 +(1,18282:10523651,18866841:18166500,9083666,0 +(1,18282:10523651,18866841:18167376,9083688,0 +(1,18282:10523651,18866841:18167376,9083688,0 +(1,18282:10523651,18866841:0,9083688,0 +(1,18282:10523651,18866841:0,14208860,0 +(1,18282:10523651,18866841:28417720,14208860,0 +) +k1,18282:10523651,18866841:-28417720 +) +) +g1,18282:28691027,18866841 +) +) +) +g1,18283:28690151,18866841 +k1,18283:32583029,18866841:3892878 +) +v1,18290:6630773,19731921:0,393216,0 +(1,18291:6630773,21857404:25952256,2518699,0 +g1,18291:6630773,21857404 +g1,18291:6237557,21857404 +r1,18335:6368629,21857404:131072,2518699,0 +g1,18291:6567858,21857404 +g1,18291:6764466,21857404 +[1,18291:6764466,21857404:25818563,2518699,0 +(1,18291:6764466,20004398:25818563,665693,196608 +(1,18290:6764466,20004398:0,665693,196608 +r1,18335:8010564,20004398:1246098,862301,196608 +k1,18290:6764466,20004398:-1246098 +) +(1,18290:6764466,20004398:1246098,665693,196608 +) +k1,18290:8319197,20004398:308633 +k1,18290:10045415,20004398:327680 +k1,18290:12716622,20004398:308634 +k1,18290:14044340,20004398:308633 +k1,18290:17425301,20004398:308633 +k1,18290:18385363,20004398:308634 +(1,18290:18385363,20004398:0,452978,115847 +r1,18335:21205612,20004398:2820249,568825,115847 +k1,18290:18385363,20004398:-2820249 +) +(1,18290:18385363,20004398:2820249,452978,115847 +k1,18290:18385363,20004398:3277 +h1,18290:21202335,20004398:0,411205,112570 +) +k1,18290:21687915,20004398:308633 +k1,18290:22679433,20004398:308633 +k1,18290:23797437,20004398:308634 +k1,18290:25125155,20004398:308633 +k1,18290:27699368,20004398:308633 +k1,18290:28755768,20004398:308634 +k1,18290:31090119,20004398:308633 +k1,18290:32583029,20004398:0 +) +(1,18291:6764466,20869478:25818563,513147,134348 +k1,18290:8170486,20869478:235547 +k1,18290:12070806,20869478:235547 +k1,18290:13094752,20869478:235548 +k1,18290:15101082,20869478:235547 +k1,18290:16145999,20869478:235547 +k1,18290:17400631,20869478:235547 +k1,18290:19665173,20869478:235547 +k1,18290:21534533,20869478:235547 +k1,18290:22301578,20869478:235548 +k1,18290:23556210,20869478:235547 +k1,18290:26978117,20869478:235547 +k1,18290:29848867,20869478:235547 +k1,18291:32583029,20869478:0 +) +(1,18291:6764466,21734558:25818563,505283,122846 +(1,18290:6764466,21734558:0,452978,115847 +r1,18335:10288138,21734558:3523672,568825,115847 +k1,18290:6764466,21734558:-3523672 +) +(1,18290:6764466,21734558:3523672,452978,115847 +k1,18290:6764466,21734558:3277 +h1,18290:10284861,21734558:0,411205,112570 +) +g1,18290:10661037,21734558 +(1,18290:10661037,21734558:0,452978,122846 +r1,18335:13129574,21734558:2468537,575824,122846 +k1,18290:10661037,21734558:-2468537 +) +(1,18290:10661037,21734558:2468537,452978,122846 +k1,18290:10661037,21734558:3277 +h1,18290:13126297,21734558:0,411205,112570 +) +g1,18290:13328803,21734558 +g1,18290:14719477,21734558 +(1,18290:14719477,21734558:0,452978,115847 +r1,18335:17188014,21734558:2468537,568825,115847 +k1,18290:14719477,21734558:-2468537 +) +(1,18290:14719477,21734558:2468537,452978,115847 +k1,18290:14719477,21734558:3277 +h1,18290:17184737,21734558:0,411205,112570 +) +k1,18291:32583029,21734558:15067990 +g1,18291:32583029,21734558 +) +] +g1,18291:32583029,21857404 +) +h1,18291:6630773,21857404:0,0,0 +v1,18294:6630773,22722484:0,393216,0 +(1,18295:6630773,24840968:25952256,2511700,0 +g1,18295:6630773,24840968 +g1,18295:6237557,24840968 +r1,18335:6368629,24840968:131072,2511700,0 +g1,18295:6567858,24840968 +g1,18295:6764466,24840968 +[1,18295:6764466,24840968:25818563,2511700,0 +(1,18295:6764466,22994961:25818563,665693,196608 +(1,18294:6764466,22994961:0,665693,196608 +r1,18335:8010564,22994961:1246098,862301,196608 +k1,18294:6764466,22994961:-1246098 +) +(1,18294:6764466,22994961:1246098,665693,196608 +) +k1,18294:8200951,22994961:190387 +k1,18294:9927169,22994961:327680 +k1,18294:11266401,22994961:190386 +k1,18294:14544844,22994961:190387 +k1,18294:15421393,22994961:190387 +k1,18294:19014409,22994961:190387 +k1,18294:20152446,22994961:190386 +k1,18294:23407297,22994961:190387 +k1,18294:24280569,22994961:190387 +k1,18294:25867528,22994961:190387 +k1,18294:28569254,22994961:190386 +(1,18294:28569254,22994961:0,414482,115847 +r1,18335:31741214,22994961:3171960,530329,115847 +k1,18294:28569254,22994961:-3171960 +) +(1,18294:28569254,22994961:3171960,414482,115847 +k1,18294:28569254,22994961:3277 +h1,18294:31737937,22994961:0,411205,112570 +) +k1,18294:31931601,22994961:190387 +k1,18294:32583029,22994961:0 +) +(1,18295:6764466,23860041:25818563,513147,126483 +k1,18294:8145355,23860041:224179 +k1,18294:9052420,23860041:224180 +k1,18294:10926796,23860041:224179 +k1,18294:11810268,23860041:224180 +k1,18294:13053532,23860041:224179 +k1,18294:16342176,23860041:224180 +k1,18294:18079581,23860041:224179 +k1,18294:19065289,23860041:224180 +(1,18294:19065289,23860041:0,452978,122846 +r1,18335:22588961,23860041:3523672,575824,122846 +k1,18294:19065289,23860041:-3523672 +) +(1,18294:19065289,23860041:3523672,452978,122846 +k1,18294:19065289,23860041:3277 +h1,18294:22585684,23860041:0,411205,112570 +) +k1,18294:22986810,23860041:224179 +k1,18294:24704556,23860041:224180 +k1,18294:25614897,23860041:224179 +(1,18294:25614897,23860041:0,452978,115847 +r1,18335:27380010,23860041:1765113,568825,115847 +k1,18294:25614897,23860041:-1765113 +) +(1,18294:25614897,23860041:1765113,452978,115847 +k1,18294:25614897,23860041:3277 +h1,18294:27376733,23860041:0,411205,112570 +) +k1,18294:27777860,23860041:224180 +(1,18294:27777860,23860041:0,459977,115847 +r1,18335:29191261,23860041:1413401,575824,115847 +k1,18294:27777860,23860041:-1413401 +) +(1,18294:27777860,23860041:1413401,459977,115847 +k1,18294:27777860,23860041:3277 +h1,18294:29187984,23860041:0,411205,112570 +) +k1,18294:29589110,23860041:224179 +(1,18294:29589110,23860041:0,452978,115847 +r1,18335:32409359,23860041:2820249,568825,115847 +k1,18294:29589110,23860041:-2820249 +) +(1,18294:29589110,23860041:2820249,452978,115847 +k1,18294:29589110,23860041:3277 +h1,18294:32406082,23860041:0,411205,112570 +) +k1,18295:32583029,23860041:0 +) +(1,18295:6764466,24725121:25818563,505283,115847 +(1,18294:6764466,24725121:0,452978,115847 +r1,18335:8177867,24725121:1413401,568825,115847 +k1,18294:6764466,24725121:-1413401 +) +(1,18294:6764466,24725121:1413401,452978,115847 +k1,18294:6764466,24725121:3277 +h1,18294:8174590,24725121:0,411205,112570 +) +g1,18294:8550766,24725121 +(1,18294:8550766,24725121:0,452978,115847 +r1,18335:10315879,24725121:1765113,568825,115847 +k1,18294:8550766,24725121:-1765113 +) +(1,18294:8550766,24725121:1765113,452978,115847 +k1,18294:8550766,24725121:3277 +h1,18294:10312602,24725121:0,411205,112570 +) +g1,18294:10515108,24725121 +g1,18294:11905782,24725121 +(1,18294:11905782,24725121:0,452978,115847 +r1,18335:13670895,24725121:1765113,568825,115847 +k1,18294:11905782,24725121:-1765113 +) +(1,18294:11905782,24725121:1765113,452978,115847 +k1,18294:11905782,24725121:3277 +h1,18294:13667618,24725121:0,411205,112570 +) +k1,18295:32583029,24725121:18738464 +g1,18295:32583029,24725121 +) +] +g1,18295:32583029,24840968 +) +h1,18295:6630773,24840968:0,0,0 +(1,18300:6630773,26957786:25952256,555811,12975 +(1,18300:6630773,26957786:2450326,534184,12975 +g1,18300:6630773,26957786 +g1,18300:9081099,26957786 +) +k1,18300:32583030,26957786:21735736 +g1,18300:32583030,26957786 +) +(1,18304:6630773,28216082:25952256,505283,134348 +k1,18303:7807234,28216082:222912 +k1,18303:9134427,28216082:222911 +k1,18303:10943310,28216082:222912 +k1,18303:13307282,28216082:222911 +k1,18303:14213079,28216082:222912 +k1,18303:18071272,28216082:222911 +k1,18303:19635051,28216082:222912 +k1,18303:21251913,28216082:222911 +(1,18303:21251913,28216082:0,452978,122846 +r1,18335:25127297,28216082:3875384,575824,122846 +k1,18303:21251913,28216082:-3875384 +) +(1,18303:21251913,28216082:3875384,452978,122846 +k1,18303:21251913,28216082:3277 +h1,18303:25124020,28216082:0,411205,112570 +) +k1,18303:25350209,28216082:222912 +k1,18303:28836158,28216082:222911 +k1,18303:30069635,28216082:222912 +k1,18303:31900144,28216082:222911 +k1,18303:32583029,28216082:0 +) +(1,18304:6630773,29081162:25952256,505283,126483 +g1,18303:8954679,29081162 +g1,18303:10528853,29081162 +k1,18304:32583029,29081162:20153632 +g1,18304:32583029,29081162 +) +(1,18306:6630773,29946242:25952256,513147,134348 +h1,18305:6630773,29946242:983040,0,0 +k1,18305:8813832,29946242:246470 +k1,18305:10458185,29946242:246470 +k1,18305:13436851,29946242:246470 +k1,18305:14878698,29946242:246470 +k1,18305:17619468,29946242:246470 +k1,18305:19782211,29946242:246470 +k1,18305:21596301,29946242:246469 +k1,18305:22861856,29946242:246470 +$1,18305:22861856,29946242 +$1,18305:23306845,29946242 +k1,18305:23553315,29946242:246470 +k1,18305:27581212,29946242:246470 +k1,18305:29221633,29946242:246470 +k1,18305:31923737,29946242:246470 +k1,18305:32583029,29946242:0 +) +(1,18306:6630773,30811322:25952256,513147,102892 +g1,18305:9513046,30811322 +$1,18305:9513046,30811322 +(1,18305:9919371,30909636:311689,334430,0 +) +g1,18305:10413120,30811322 +g1,18305:11163377,30811322 +g1,18305:11860471,30811322 +(1,18305:12266796,30909636:311689,339935,0 +) +g1,18305:12760545,30811322 +g1,18305:13510802,30811322 +$1,18305:14307720,30811322 +k1,18306:32583030,30811322:18101640 +g1,18306:32583030,30811322 +) +v1,18308:6630773,31496177:0,393216,0 +(1,18315:6630773,33884819:25952256,2781858,196608 +g1,18315:6630773,33884819 +g1,18315:6630773,33884819 +g1,18315:6434165,33884819 +(1,18315:6434165,33884819:0,2781858,196608 +r1,18335:32779637,33884819:26345472,2978466,196608 +k1,18315:6434165,33884819:-26345472 +) +(1,18315:6434165,33884819:26345472,2781858,196608 +[1,18315:6630773,33884819:25952256,2585250,0 +(1,18310:6630773,31724008:25952256,424439,79822 +(1,18309:6630773,31724008:0,0,0 +g1,18309:6630773,31724008 +g1,18309:6630773,31724008 +g1,18309:6303093,31724008 +(1,18309:6303093,31724008:0,0,0 +) +g1,18309:6630773,31724008 +) +k1,18310:6630773,31724008:0 +h1,18310:11278128,31724008:0,0,0 +k1,18310:32583028,31724008:21304900 +g1,18310:32583028,31724008 +) +(1,18311:6630773,32408863:25952256,431045,86428 +h1,18311:6630773,32408863:0,0,0 +g1,18311:10282266,32408863 +g1,18311:11278128,32408863 +g1,18311:17585253,32408863 +g1,18311:18249161,32408863 +g1,18311:20904793,32408863 +g1,18311:22232609,32408863 +g1,18311:22896517,32408863 +g1,18311:23892379,32408863 +g1,18311:25220195,32408863 +g1,18311:25884103,32408863 +k1,18311:25884103,32408863:0 +h1,18311:27211919,32408863:0,0,0 +k1,18311:32583029,32408863:5371110 +g1,18311:32583029,32408863 +) +(1,18312:6630773,33093718:25952256,424439,106246 +h1,18312:6630773,33093718:0,0,0 +g1,18312:6962727,33093718 +g1,18312:7294681,33093718 +g1,18312:7626635,33093718 +g1,18312:7958589,33093718 +g1,18312:8290543,33093718 +g1,18312:8622497,33093718 +g1,18312:8954451,33093718 +g1,18312:9286405,33093718 +g1,18312:9618359,33093718 +g1,18312:9950313,33093718 +g1,18312:10282267,33093718 +g1,18312:10614221,33093718 +g1,18312:10946175,33093718 +g1,18312:11278129,33093718 +g1,18312:11610083,33093718 +g1,18312:11942037,33093718 +g1,18312:12273991,33093718 +g1,18312:12605945,33093718 +g1,18312:12937899,33093718 +g1,18312:13269853,33093718 +g1,18312:13601807,33093718 +g1,18312:13933761,33093718 +g1,18312:14265715,33093718 +g1,18312:14597669,33093718 +g1,18312:14929623,33093718 +g1,18312:15593531,33093718 +g1,18312:16257439,33093718 +g1,18312:22564564,33093718 +k1,18312:22564564,33093718:0 +h1,18312:23892380,33093718:0,0,0 +k1,18312:32583029,33093718:8690649 +g1,18312:32583029,33093718 +) +(1,18313:6630773,33778573:25952256,424439,106246 +h1,18313:6630773,33778573:0,0,0 +g1,18313:6962727,33778573 +g1,18313:7294681,33778573 +g1,18313:7626635,33778573 +g1,18313:7958589,33778573 +g1,18313:8290543,33778573 +g1,18313:8622497,33778573 +g1,18313:8954451,33778573 +g1,18313:9286405,33778573 +g1,18313:9618359,33778573 +g1,18313:9950313,33778573 +g1,18313:10282267,33778573 +g1,18313:10614221,33778573 +g1,18313:10946175,33778573 +g1,18313:11278129,33778573 +g1,18313:11610083,33778573 +g1,18313:11942037,33778573 +g1,18313:12273991,33778573 +g1,18313:12605945,33778573 +g1,18313:12937899,33778573 +g1,18313:13269853,33778573 +g1,18313:13601807,33778573 +g1,18313:13933761,33778573 +g1,18313:14265715,33778573 +g1,18313:14597669,33778573 +g1,18313:14929623,33778573 +g1,18313:15593531,33778573 +g1,18313:16257439,33778573 +g1,18313:22232610,33778573 +g1,18313:24888242,33778573 +h1,18313:26879966,33778573:0,0,0 +k1,18313:32583029,33778573:5703063 +g1,18313:32583029,33778573 +) +] +) +g1,18315:32583029,33884819 +g1,18315:6630773,33884819 +g1,18315:6630773,33884819 +g1,18315:32583029,33884819 +g1,18315:32583029,33884819 +) +h1,18315:6630773,34081427:0,0,0 +(1,18319:6630773,34946507:25952256,513147,138281 +h1,18318:6630773,34946507:983040,0,0 +(1,18318:7613813,34946507:0,452978,122846 +r1,18335:11489197,34946507:3875384,575824,122846 +k1,18318:7613813,34946507:-3875384 +) +(1,18318:7613813,34946507:3875384,452978,122846 +k1,18318:7613813,34946507:3277 +h1,18318:11485920,34946507:0,411205,112570 +) +k1,18318:11625854,34946507:136657 +k1,18318:14384606,34946507:136657 +k1,18318:17695827,34946507:136657 +$1,18318:17695827,34946507 +$1,18318:18198488,34946507 +k1,18318:18335145,34946507:136657 +k1,18318:19663247,34946507:136657 +$1,18318:19663247,34946507 +$1,18318:20215060,34946507 +k1,18318:20525387,34946507:136657 +k1,18318:22055995,34946507:136657 +k1,18318:23002022,34946507:136657 +k1,18318:25908230,34946507:136657 +k1,18318:27236332,34946507:136657 +(1,18318:27236332,34946507:0,452978,115847 +r1,18335:29001445,34946507:1765113,568825,115847 +k1,18318:27236332,34946507:-1765113 +) +(1,18318:27236332,34946507:1765113,452978,115847 +k1,18318:27236332,34946507:3277 +h1,18318:28998168,34946507:0,411205,112570 +) +k1,18318:29138102,34946507:136657 +k1,18318:30466204,34946507:136657 +(1,18318:30466204,34946507:0,452978,122846 +r1,18335:32583029,34946507:2116825,575824,122846 +k1,18318:30466204,34946507:-2116825 +) +(1,18318:30466204,34946507:2116825,452978,122846 +k1,18318:30466204,34946507:3277 +h1,18318:32579752,34946507:0,411205,112570 +) +k1,18318:32583029,34946507:0 +) +(1,18319:6630773,35811587:25952256,513147,134348 +g1,18318:8223953,35811587 +g1,18318:11019063,35811587 +g1,18318:12502798,35811587 +g1,18318:14417760,35811587 +g1,18318:15383105,35811587 +g1,18318:16923201,35811587 +g1,18318:17781722,35811587 +g1,18318:19708480,35811587 +g1,18318:21176486,35811587 +g1,18318:23206791,35811587 +g1,18318:24425105,35811587 +g1,18318:27148781,35811587 +k1,18319:32583029,35811587:3913157 +g1,18319:32583029,35811587 +) +v1,18321:6630773,36496442:0,393216,0 +(1,18326:6630773,37528586:25952256,1425360,196608 +g1,18326:6630773,37528586 +g1,18326:6630773,37528586 +g1,18326:6434165,37528586 +(1,18326:6434165,37528586:0,1425360,196608 +r1,18335:32779637,37528586:26345472,1621968,196608 +k1,18326:6434165,37528586:-26345472 +) +(1,18326:6434165,37528586:26345472,1425360,196608 +[1,18326:6630773,37528586:25952256,1228752,0 +(1,18323:6630773,36730879:25952256,431045,112852 +(1,18322:6630773,36730879:0,0,0 +g1,18322:6630773,36730879 +g1,18322:6630773,36730879 +g1,18322:6303093,36730879 +(1,18322:6303093,36730879:0,0,0 +) +g1,18322:6630773,36730879 +) +k1,18323:6630773,36730879:0 +g1,18323:12937898,36730879 +g1,18323:15261576,36730879 +g1,18323:16257438,36730879 +g1,18323:17917208,36730879 +g1,18323:18581116,36730879 +g1,18323:21900655,36730879 +h1,18323:22232609,36730879:0,0,0 +k1,18323:32583029,36730879:10350420 +g1,18323:32583029,36730879 +) +(1,18324:6630773,37415734:25952256,424439,112852 +h1,18324:6630773,37415734:0,0,0 +g1,18324:6962727,37415734 +g1,18324:7294681,37415734 +k1,18324:7294681,37415734:0 +h1,18324:10946174,37415734:0,0,0 +k1,18324:32583030,37415734:21636856 +g1,18324:32583030,37415734 +) +] +) +g1,18326:32583029,37528586 +g1,18326:6630773,37528586 +g1,18326:6630773,37528586 +g1,18326:32583029,37528586 +g1,18326:32583029,37528586 +) +h1,18326:6630773,37725194:0,0,0 +] +(1,18335:32583029,45706769:0,0,0 +g1,18335:32583029,45706769 +) +) +] +(1,18335:6630773,47279633:25952256,0,0 +h1,18335:6630773,47279633:25952256,0,0 +) +] +(1,18335:4262630,4025873:0,0,0 +[1,18335:-473656,4025873:0,0,0 +(1,18335:-473656,-710413:0,0,0 +(1,18335:-473656,-710413:0,0,0 +g1,18335:-473656,-710413 +) +g1,18335:-473656,-710413 +) +] +) +] +!22485 +}303 +Input:2784:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2785:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2786:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2787:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2788:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2789:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -313076,1023 +311220,635 @@ Input:2797:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConso Input:2798:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2799:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2800:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2801:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1422 -{321 -[1,18248:4262630,47279633:28320399,43253760,0 -(1,18248:4262630,4025873:0,0,0 -[1,18248:-473656,4025873:0,0,0 -(1,18248:-473656,-710413:0,0,0 -(1,18248:-473656,-644877:0,0,0 -k1,18248:-473656,-644877:-65536 +!1610 +{304 +[1,18378:4262630,47279633:28320399,43253760,0 +(1,18378:4262630,4025873:0,0,0 +[1,18378:-473656,4025873:0,0,0 +(1,18378:-473656,-710413:0,0,0 +(1,18378:-473656,-644877:0,0,0 +k1,18378:-473656,-644877:-65536 ) -(1,18248:-473656,4736287:0,0,0 -k1,18248:-473656,4736287:5209943 +(1,18378:-473656,4736287:0,0,0 +k1,18378:-473656,4736287:5209943 ) -g1,18248:-473656,-710413 +g1,18378:-473656,-710413 ) ] ) -[1,18248:6630773,47279633:25952256,43253760,0 -[1,18248:6630773,4812305:25952256,786432,0 -(1,18248:6630773,4812305:25952256,513147,126483 -(1,18248:6630773,4812305:25952256,513147,126483 -g1,18248:3078558,4812305 -[1,18248:3078558,4812305:0,0,0 -(1,18248:3078558,2439708:0,1703936,0 -k1,18248:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,18248:2537886,2439708:1179648,16384,0 +[1,18378:6630773,47279633:25952256,43253760,0 +[1,18378:6630773,4812305:25952256,786432,0 +(1,18378:6630773,4812305:25952256,485622,11795 +(1,18378:6630773,4812305:25952256,485622,11795 +g1,18378:3078558,4812305 +[1,18378:3078558,4812305:0,0,0 +(1,18378:3078558,2439708:0,1703936,0 +k1,18378:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,18378:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,18248:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,18378:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,18248:3078558,4812305:0,0,0 -(1,18248:3078558,2439708:0,1703936,0 -g1,18248:29030814,2439708 -g1,18248:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,18248:36151628,1915420:16384,1179648,0 +[1,18378:3078558,4812305:0,0,0 +(1,18378:3078558,2439708:0,1703936,0 +g1,18378:29030814,2439708 +g1,18378:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,18378:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,18248:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,18378:37855564,2439708:1179648,16384,0 ) ) -k1,18248:3078556,2439708:-34777008 +k1,18378:3078556,2439708:-34777008 ) ] -[1,18248:3078558,4812305:0,0,0 -(1,18248:3078558,49800853:0,16384,2228224 -k1,18248:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,18248:2537886,49800853:1179648,16384,0 +[1,18378:3078558,4812305:0,0,0 +(1,18378:3078558,49800853:0,16384,2228224 +k1,18378:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,18378:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,18248:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,18378:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,18248:3078558,4812305:0,0,0 -(1,18248:3078558,49800853:0,16384,2228224 -g1,18248:29030814,49800853 -g1,18248:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,18248:36151628,51504789:16384,1179648,0 +[1,18378:3078558,4812305:0,0,0 +(1,18378:3078558,49800853:0,16384,2228224 +g1,18378:29030814,49800853 +g1,18378:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,18378:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,18248:37855564,49800853:1179648,16384,0 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,18378:37855564,49800853:1179648,16384,0 ) ) -k1,18248:3078556,49800853:-34777008 +k1,18378:3078556,49800853:-34777008 ) ] -g1,18248:6630773,4812305 -k1,18248:21350816,4812305:13524666 -g1,18248:21999622,4812305 -g1,18248:25611966,4812305 -g1,18248:28956923,4812305 -g1,18248:29772190,4812305 +g1,18378:6630773,4812305 +g1,18378:6630773,4812305 +g1,18378:10347975,4812305 +k1,18378:31387651,4812305:21039676 ) ) ] -[1,18248:6630773,45706769:25952256,40108032,0 -(1,18248:6630773,45706769:25952256,40108032,0 -(1,18248:6630773,45706769:0,0,0 -g1,18248:6630773,45706769 +[1,18378:6630773,45706769:25952256,40108032,0 +(1,18378:6630773,45706769:25952256,40108032,0 +(1,18378:6630773,45706769:0,0,0 +g1,18378:6630773,45706769 ) -[1,18248:6630773,45706769:25952256,40108032,0 -(1,18211:6630773,6254097:25952256,513147,134348 -k1,18210:7577768,6254097:287703 -k1,18210:8884556,6254097:287703 -k1,18210:10398438,6254097:287703 -k1,18210:12373693,6254097:287703 -k1,18210:14806389,6254097:287703 -k1,18210:17758131,6254097:287703 -k1,18210:18705126,6254097:287703 -k1,18210:21821362,6254097:287703 -k1,18210:23824798,6254097:287703 -k1,18210:26742461,6254097:287703 -k1,18210:30847636,6254097:287703 -k1,18210:32583029,6254097:0 +[1,18378:6630773,45706769:25952256,40108032,0 +(1,18329:6630773,14682403:25952256,9083666,0 +k1,18329:10523651,14682403:3892878 +h1,18328:10523651,14682403:0,0,0 +(1,18328:10523651,14682403:18166500,9083666,0 +(1,18328:10523651,14682403:18167376,9083688,0 +(1,18328:10523651,14682403:18167376,9083688,0 +(1,18328:10523651,14682403:0,9083688,0 +(1,18328:10523651,14682403:0,14208860,0 +(1,18328:10523651,14682403:28417720,14208860,0 +) +k1,18328:10523651,14682403:-28417720 +) +) +g1,18328:28691027,14682403 +) +) +) +g1,18329:28690151,14682403 +k1,18329:32583029,14682403:3892878 +) +(1,18336:6630773,15547483:25952256,505283,122846 +h1,18335:6630773,15547483:983040,0,0 +k1,18335:8832427,15547483:265065 +k1,18335:10201773,15547483:265064 +k1,18335:11401381,15547483:265065 +(1,18335:11401381,15547483:0,452978,122846 +r1,18378:17035325,15547483:5633944,575824,122846 +k1,18335:11401381,15547483:-5633944 +) +(1,18335:11401381,15547483:5633944,452978,122846 +g1,18335:13514929,15547483 +g1,18335:14218353,15547483 +h1,18335:17032048,15547483:0,411205,112570 +) +k1,18335:17300390,15547483:265065 +k1,18335:18756900,15547483:265065 +(1,18335:18756900,15547483:0,452978,115847 +r1,18378:24390843,15547483:5633943,568825,115847 +k1,18335:18756900,15547483:-5633943 +) +(1,18335:18756900,15547483:5633943,452978,115847 +g1,18335:22277295,15547483 +g1,18335:22980719,15547483 +h1,18335:24387566,15547483:0,411205,112570 +) +k1,18335:24655907,15547483:265064 +k1,18335:25572400,15547483:265065 +k1,18335:27553198,15547483:265065 +k1,18335:28837347,15547483:265064 +k1,18335:30112977,15547483:265065 +k1,18335:32583029,15547483:0 +) +(1,18336:6630773,16412563:25952256,505283,134348 +k1,18335:8519615,16412563:238645 +k1,18335:10801016,16412563:238644 +k1,18335:11725823,16412563:238645 +k1,18335:12580506,16412563:238645 +k1,18335:13838236,16412563:238645 +k1,18335:16738297,16412563:238644 +k1,18335:19019044,16412563:238645 +k1,18335:19940574,16412563:238645 +k1,18335:21271703,16412563:238644 +k1,18335:21866208,16412563:238645 +k1,18335:25726372,16412563:238645 +k1,18335:27754805,16412563:238645 +k1,18335:28644877,16412563:238644 +k1,18335:30780789,16412563:238645 +k1,18336:32583029,16412563:0 +) +(1,18336:6630773,17277643:25952256,513147,126483 +k1,18335:8185989,17277643:247773 +k1,18335:9452847,17277643:247773 +k1,18335:12170671,17277643:247772 +k1,18335:13077736,17277643:247773 +k1,18335:14344594,17277643:247773 +k1,18335:16106904,17277643:247773 +k1,18335:17988490,17277643:247773 +k1,18335:18887690,17277643:247772 +k1,18335:20227948,17277643:247773 +k1,18335:21608183,17277643:247773 +k1,18335:24227704,17277643:247773 +k1,18335:25284846,17277643:247772 +k1,18335:28123257,17277643:247773 +k1,18335:29390115,17277643:247773 +k1,18335:32583029,17277643:0 +) +(1,18336:6630773,18142723:25952256,513147,134348 +k1,18335:8207624,18142723:235984 +k1,18335:9640951,18142723:235984 +k1,18335:13489935,18142723:235984 +k1,18335:17706576,18142723:235984 +k1,18335:18570395,18142723:235984 +k1,18335:20503761,18142723:235984 +k1,18335:21885970,18142723:235984 +k1,18335:23819992,18142723:235984 +k1,18335:25590174,18142723:235984 +k1,18335:26485450,18142723:235984 +k1,18335:28062301,18142723:235984 +k1,18335:31931601,18142723:235984 +k1,18335:32583029,18142723:0 +) +(1,18336:6630773,19007803:25952256,513147,134348 +k1,18335:10079337,19007803:255650 +k1,18335:12149024,19007803:255650 +k1,18335:13596118,19007803:255649 +k1,18335:16564959,19007803:255650 +k1,18335:17472037,19007803:255650 +k1,18335:20253445,19007803:255650 +k1,18335:24157484,19007803:255650 +k1,18335:25432219,19007803:255650 +k1,18335:26780353,19007803:255649 +k1,18335:27695295,19007803:255650 +k1,18335:31572464,19007803:255650 +k1,18335:32583029,19007803:0 +) +(1,18336:6630773,19872883:25952256,513147,126483 +k1,18335:9298240,19872883:197415 +k1,18335:10027151,19872883:197414 +k1,18335:13663895,19872883:197415 +k1,18335:14489144,19872883:197414 +k1,18335:17491500,19872883:197415 +k1,18335:18304952,19872883:197414 +k1,18335:19521452,19872883:197415 +k1,18335:21085947,19872883:197414 +k1,18335:22981400,19872883:197415 +k1,18335:24197899,19872883:197414 +k1,18335:25736181,19872883:197415 +k1,18335:26925155,19872883:197414 +k1,18335:27893273,19872883:197415 +k1,18335:32583029,19872883:0 +) +(1,18336:6630773,20737963:25952256,513147,134348 +k1,18335:7484941,20737963:202740 +k1,18335:8043542,20737963:202741 +k1,18335:11816683,20737963:202740 +k1,18335:14354471,20737963:202740 +k1,18335:16050777,20737963:202740 +k1,18335:16939680,20737963:202741 +k1,18335:21815792,20737963:202740 +k1,18335:22827902,20737963:202740 +k1,18335:23386503,20737963:202741 +k1,18335:25863342,20737963:202740 +k1,18335:28192070,20737963:202740 +k1,18335:29852986,20737963:202740 +k1,18335:30513824,20737963:202741 +k1,18335:31248061,20737963:202740 +k1,18335:32583029,20737963:0 +) +(1,18336:6630773,21603043:25952256,505283,126483 +g1,18335:7481430,21603043 +g1,18335:10563588,21603043 +g1,18335:11781902,21603043 +g1,18335:12991696,21603043 +k1,18336:32583030,21603043:16947612 +g1,18336:32583030,21603043 +) +v1,18338:6630773,22287898:0,393216,0 +(1,18343:6630773,23320042:25952256,1425360,196608 +g1,18343:6630773,23320042 +g1,18343:6630773,23320042 +g1,18343:6434165,23320042 +(1,18343:6434165,23320042:0,1425360,196608 +r1,18378:32779637,23320042:26345472,1621968,196608 +k1,18343:6434165,23320042:-26345472 +) +(1,18343:6434165,23320042:26345472,1425360,196608 +[1,18343:6630773,23320042:25952256,1228752,0 +(1,18340:6630773,22522335:25952256,431045,112852 +(1,18339:6630773,22522335:0,0,0 +g1,18339:6630773,22522335 +g1,18339:6630773,22522335 +g1,18339:6303093,22522335 +(1,18339:6303093,22522335:0,0,0 +) +g1,18339:6630773,22522335 +) +k1,18340:6630773,22522335:0 +g1,18340:12937898,22522335 +g1,18340:15261576,22522335 +g1,18340:16257438,22522335 +g1,18340:17917208,22522335 +g1,18340:18581116,22522335 +g1,18340:21900655,22522335 +h1,18340:22232609,22522335:0,0,0 +k1,18340:32583029,22522335:10350420 +g1,18340:32583029,22522335 +) +(1,18341:6630773,23207190:25952256,424439,112852 +h1,18341:6630773,23207190:0,0,0 +g1,18341:6962727,23207190 +g1,18341:7294681,23207190 +g1,18341:12605944,23207190 +g1,18341:13269852,23207190 +g1,18341:16589391,23207190 +g1,18341:19908930,23207190 +g1,18341:20572838,23207190 +h1,18341:22232608,23207190:0,0,0 +k1,18341:32583029,23207190:10350421 +g1,18341:32583029,23207190 +) +] +) +g1,18343:32583029,23320042 +g1,18343:6630773,23320042 +g1,18343:6630773,23320042 +g1,18343:32583029,23320042 +g1,18343:32583029,23320042 +) +h1,18343:6630773,23516650:0,0,0 +(1,18346:6630773,32665852:25952256,9083666,0 +k1,18346:10523651,32665852:3892878 +h1,18345:10523651,32665852:0,0,0 +(1,18345:10523651,32665852:18166500,9083666,0 +(1,18345:10523651,32665852:18167376,9083688,0 +(1,18345:10523651,32665852:18167376,9083688,0 +(1,18345:10523651,32665852:0,9083688,0 +(1,18345:10523651,32665852:0,14208860,0 +(1,18345:10523651,32665852:28417720,14208860,0 +) +k1,18345:10523651,32665852:-28417720 +) +) +g1,18345:28691027,32665852 +) +) +) +g1,18346:28690151,32665852 +k1,18346:32583029,32665852:3892878 +) +v1,18353:6630773,33530932:0,393216,0 +(1,18354:6630773,35660052:25952256,2522336,0 +g1,18354:6630773,35660052 +g1,18354:6237557,35660052 +r1,18378:6368629,35660052:131072,2522336,0 +g1,18354:6567858,35660052 +g1,18354:6764466,35660052 +[1,18354:6764466,35660052:25818563,2522336,0 +(1,18354:6764466,33803409:25818563,665693,196608 +(1,18353:6764466,33803409:0,665693,196608 +r1,18378:8010564,33803409:1246098,862301,196608 +k1,18353:6764466,33803409:-1246098 +) +(1,18353:6764466,33803409:1246098,665693,196608 +) +k1,18353:8282242,33803409:271678 +k1,18353:10008460,33803409:327680 +k1,18353:11577751,33803409:271678 +k1,18353:13243381,33803409:271679 +k1,18353:14534144,33803409:271678 +k1,18353:18208451,33803409:271678 +k1,18353:20685416,33803409:271678 +k1,18353:21608522,33803409:271678 +k1,18353:25491234,33803409:271678 +(1,18353:25491234,33803409:0,452978,115847 +r1,18378:27256347,33803409:1765113,568825,115847 +k1,18353:25491234,33803409:-1765113 +) +(1,18353:25491234,33803409:1765113,452978,115847 +k1,18353:25491234,33803409:3277 +h1,18353:27253070,33803409:0,411205,112570 +) +k1,18353:27528026,33803409:271679 +k1,18353:28991149,33803409:271678 +(1,18353:28991149,33803409:0,452978,115847 +r1,18378:30404550,33803409:1413401,568825,115847 +k1,18353:28991149,33803409:-1413401 +) +(1,18353:28991149,33803409:1413401,452978,115847 +k1,18353:28991149,33803409:3277 +h1,18353:30401273,33803409:0,411205,112570 +) +k1,18353:30676228,33803409:271678 +k1,18353:31563944,33803409:271678 +k1,18353:32583029,33803409:0 +) +(1,18354:6764466,34668489:25818563,513147,134348 +k1,18353:9646918,34668489:221035 +k1,18353:11896948,34668489:221035 +k1,18353:15839117,34668489:221035 +k1,18353:17608768,34668489:221035 +k1,18353:20435514,34668489:221035 +k1,18353:21315841,34668489:221035 +k1,18353:22555961,34668489:221035 +k1,18353:24166359,34668489:221035 +k1,18353:25378954,34668489:221035 +k1,18353:27201689,34668489:221035 +k1,18353:29519221,34668489:221035 +k1,18353:32583029,34668489:0 +) +(1,18354:6764466,35533569:25818563,513147,126483 +g1,18353:7579733,35533569 +g1,18353:9230584,35533569 +g1,18353:10089105,35533569 +g1,18353:11307419,35533569 +g1,18353:13114246,35533569 +g1,18353:14483948,35533569 +k1,18354:32583029,35533569:15996031 +g1,18354:32583029,35533569 +) +] +g1,18354:32583029,35660052 +) +h1,18354:6630773,35660052:0,0,0 +(1,18357:6630773,36525132:25952256,513147,126483 +h1,18356:6630773,36525132:983040,0,0 +k1,18356:9074812,36525132:197465 +k1,18356:12842678,36525132:197465 +k1,18356:13880970,36525132:197465 +k1,18356:15650644,36525132:197465 +k1,18356:16952391,36525132:197465 +k1,18356:17897622,36525132:197465 +k1,18356:19608312,36525132:197464 +k1,18356:20457205,36525132:197465 +k1,18356:22942532,36525132:197465 +k1,18356:24159082,36525132:197465 +k1,18356:28170742,36525132:197465 +k1,18356:29856530,36525132:197465 +k1,18356:30922347,36525132:197465 +k1,18356:32583029,36525132:0 +) +(1,18357:6630773,37390212:25952256,505283,134348 +g1,18356:7185862,37390212 +g1,18356:8395656,37390212 +g1,18356:9872182,37390212 +g1,18356:11806804,37390212 +g1,18356:12361893,37390212 +g1,18356:13940655,37390212 +g1,18356:16973005,37390212 +g1,18356:18566185,37390212 +g1,18356:21237432,37390212 +g1,18356:23447306,37390212 +g1,18356:24262573,37390212 +k1,18357:32583029,37390212:7090345 +g1,18357:32583029,37390212 +) +v1,18359:6630773,38075067:0,393216,0 +(1,18365:6630773,39792066:25952256,2110215,196608 +g1,18365:6630773,39792066 +g1,18365:6630773,39792066 +g1,18365:6434165,39792066 +(1,18365:6434165,39792066:0,2110215,196608 +r1,18378:32779637,39792066:26345472,2306823,196608 +k1,18365:6434165,39792066:-26345472 +) +(1,18365:6434165,39792066:26345472,2110215,196608 +[1,18365:6630773,39792066:25952256,1913607,0 +(1,18361:6630773,38309504:25952256,431045,112852 +(1,18360:6630773,38309504:0,0,0 +g1,18360:6630773,38309504 +g1,18360:6630773,38309504 +g1,18360:6303093,38309504 +(1,18360:6303093,38309504:0,0,0 +) +g1,18360:6630773,38309504 +) +k1,18361:6630773,38309504:0 +g1,18361:12937898,38309504 +g1,18361:15261576,38309504 +g1,18361:16257438,38309504 +g1,18361:17917208,38309504 +g1,18361:18581116,38309504 +g1,18361:21568701,38309504 +h1,18361:21900655,38309504:0,0,0 +k1,18361:32583029,38309504:10682374 +g1,18361:32583029,38309504 +) +(1,18362:6630773,38994359:25952256,424439,112852 +h1,18362:6630773,38994359:0,0,0 +g1,18362:6962727,38994359 +g1,18362:7294681,38994359 +g1,18362:12605944,38994359 +g1,18362:13269852,38994359 +g1,18362:16257438,38994359 +h1,18362:16589392,38994359:0,0,0 +k1,18362:32583029,38994359:15993637 +g1,18362:32583029,38994359 +) +(1,18363:6630773,39679214:25952256,431045,112852 +h1,18363:6630773,39679214:0,0,0 +g1,18363:6962727,39679214 +g1,18363:7294681,39679214 +g1,18363:15261575,39679214 +g1,18363:15925483,39679214 +g1,18363:19245022,39679214 +g1,18363:20904792,39679214 +g1,18363:21568700,39679214 +g1,18363:24888239,39679214 +g1,18363:27875824,39679214 +g1,18363:28539732,39679214 +h1,18363:30531456,39679214:0,0,0 +k1,18363:32583029,39679214:2051573 +g1,18363:32583029,39679214 +) +] +) +g1,18365:32583029,39792066 +g1,18365:6630773,39792066 +g1,18365:6630773,39792066 +g1,18365:32583029,39792066 +g1,18365:32583029,39792066 +) +h1,18365:6630773,39988674:0,0,0 +(1,18369:6630773,40853754:25952256,505283,134348 +h1,18368:6630773,40853754:983040,0,0 +k1,18368:8497518,40853754:255870 +k1,18368:11384659,40853754:255870 +k1,18368:12291956,40853754:255869 +(1,18368:12291956,40853754:0,452978,122846 +r1,18378:16167340,40853754:3875384,575824,122846 +k1,18368:12291956,40853754:-3875384 +) +(1,18368:12291956,40853754:3875384,452978,122846 +k1,18368:12291956,40853754:3277 +h1,18368:16164063,40853754:0,411205,112570 +) +k1,18368:16596880,40853754:255870 +(1,18368:16596880,40853754:0,452978,122846 +r1,18378:20472264,40853754:3875384,575824,122846 +k1,18368:16596880,40853754:-3875384 +) +(1,18368:16596880,40853754:3875384,452978,122846 +k1,18368:16596880,40853754:3277 +h1,18368:20468987,40853754:0,411205,112570 +) +k1,18368:20728134,40853754:255870 +k1,18368:22900277,40853754:255870 +k1,18368:26791429,40853754:255870 +k1,18368:28388165,40853754:255869 +k1,18368:30498704,40853754:255870 +k1,18368:31563944,40853754:255870 +k1,18368:32583029,40853754:0 +) +(1,18369:6630773,41718834:25952256,513147,126483 +g1,18368:9444233,41718834 +g1,18368:10302754,41718834 +g1,18368:11521068,41718834 +g1,18368:14291274,41718834 +g1,18368:17075898,41718834 +g1,18368:17926555,41718834 +g1,18368:21300348,41718834 +(1,18368:21300348,41718834:0,452978,115847 +r1,18378:22713749,41718834:1413401,568825,115847 +k1,18368:21300348,41718834:-1413401 +) +(1,18368:21300348,41718834:1413401,452978,115847 +k1,18368:21300348,41718834:3277 +h1,18368:22710472,41718834:0,411205,112570 +) +g1,18368:23086648,41718834 +(1,18368:23086648,41718834:0,414482,115847 +r1,18378:24500049,41718834:1413401,530329,115847 +k1,18368:23086648,41718834:-1413401 +) +(1,18368:23086648,41718834:1413401,414482,115847 +k1,18368:23086648,41718834:3277 +h1,18368:24496772,41718834:0,411205,112570 +) +g1,18368:24872948,41718834 +(1,18368:24872948,41718834:0,452978,115847 +r1,18378:26286349,41718834:1413401,568825,115847 +k1,18368:24872948,41718834:-1413401 +) +(1,18368:24872948,41718834:1413401,452978,115847 +k1,18368:24872948,41718834:3277 +h1,18368:26283072,41718834:0,411205,112570 +) +g1,18368:26485578,41718834 +g1,18368:27876252,41718834 +(1,18368:27876252,41718834:0,414482,115847 +r1,18378:29289653,41718834:1413401,530329,115847 +k1,18368:27876252,41718834:-1413401 +) +(1,18368:27876252,41718834:1413401,414482,115847 +k1,18368:27876252,41718834:3277 +h1,18368:29286376,41718834:0,411205,112570 +) +k1,18369:32583029,41718834:3119706 +g1,18369:32583029,41718834 +) +] +(1,18378:32583029,45706769:0,0,0 +g1,18378:32583029,45706769 ) -(1,18211:6630773,7095585:25952256,513147,134348 -k1,18210:9835092,7095585:229640 -k1,18210:13152788,7095585:229640 -k1,18210:14330078,7095585:229639 -k1,18210:17923681,7095585:229640 -(1,18210:17923681,7095585:0,459977,115847 -r1,18248:20040506,7095585:2116825,575824,115847 -k1,18210:17923681,7095585:-2116825 -) -(1,18210:17923681,7095585:2116825,459977,115847 -k1,18210:17923681,7095585:3277 -h1,18210:20037229,7095585:0,411205,112570 -) -k1,18210:20443816,7095585:229640 -(1,18210:20443816,7095585:0,452978,115847 -r1,18248:23264065,7095585:2820249,568825,115847 -k1,18210:20443816,7095585:-2820249 -) -(1,18210:20443816,7095585:2820249,452978,115847 -k1,18210:20443816,7095585:3277 -h1,18210:23260788,7095585:0,411205,112570 -) -k1,18210:23667375,7095585:229640 -(1,18210:23667375,7095585:0,452978,122846 -r1,18248:26135912,7095585:2468537,575824,122846 -k1,18210:23667375,7095585:-2468537 -) -(1,18210:23667375,7095585:2468537,452978,122846 -k1,18210:23667375,7095585:3277 -h1,18210:26132635,7095585:0,411205,112570 -) -k1,18210:26539221,7095585:229639 -(1,18210:26539221,7095585:0,452978,115847 -r1,18248:29359470,7095585:2820249,568825,115847 -k1,18210:26539221,7095585:-2820249 -) -(1,18210:26539221,7095585:2820249,452978,115847 -k1,18210:26539221,7095585:3277 -h1,18210:29356193,7095585:0,411205,112570 -) -k1,18210:29762780,7095585:229640 -(1,18210:29762780,7095585:0,452978,115847 -r1,18248:32583029,7095585:2820249,568825,115847 -k1,18210:29762780,7095585:-2820249 -) -(1,18210:29762780,7095585:2820249,452978,115847 -k1,18210:29762780,7095585:3277 -h1,18210:32579752,7095585:0,411205,112570 -) -k1,18210:32583029,7095585:0 -) -(1,18211:6630773,7937073:25952256,505283,134348 -k1,18210:7983323,7937073:161105 -(1,18210:7983323,7937073:0,452978,115847 -r1,18248:9748436,7937073:1765113,568825,115847 -k1,18210:7983323,7937073:-1765113 -) -(1,18210:7983323,7937073:1765113,452978,115847 -k1,18210:7983323,7937073:3277 -h1,18210:9745159,7937073:0,411205,112570 -) -k1,18210:10083211,7937073:161105 -k1,18210:11435760,7937073:161104 -k1,18210:12769304,7937073:161105 -k1,18210:15124554,7937073:161105 -k1,18210:18979923,7937073:161105 -(1,18210:18979923,7937073:0,452978,115847 -r1,18248:21800172,7937073:2820249,568825,115847 -k1,18210:18979923,7937073:-2820249 -) -(1,18210:18979923,7937073:2820249,452978,115847 -k1,18210:18979923,7937073:3277 -h1,18210:21796895,7937073:0,411205,112570 -) -k1,18210:21961277,7937073:161105 -k1,18210:23313826,7937073:161104 -(1,18210:23313826,7937073:0,452978,115847 -r1,18248:26485786,7937073:3171960,568825,115847 -k1,18210:23313826,7937073:-3171960 -) -(1,18210:23313826,7937073:3171960,452978,115847 -k1,18210:23313826,7937073:3277 -h1,18210:26482509,7937073:0,411205,112570 -) -k1,18210:26820561,7937073:161105 -k1,18210:28266172,7937073:161105 -k1,18210:32583029,7937073:0 -) -(1,18211:6630773,8778561:25952256,505283,134348 -g1,18210:8192496,8778561 -g1,18210:10246394,8778561 -g1,18210:11254993,8778561 -g1,18210:12473307,8778561 -g1,18210:15286767,8778561 -g1,18210:16102034,8778561 -g1,18210:17320348,8778561 -g1,18210:20044024,8778561 -k1,18211:32583029,8778561:11017914 -g1,18211:32583029,8778561 -) -(1,18213:6630773,9620049:25952256,513147,126483 -h1,18212:6630773,9620049:983040,0,0 -k1,18212:8443861,9620049:202213 -k1,18212:9665159,9620049:202213 -k1,18212:11234452,9620049:202212 -k1,18212:12103821,9620049:202213 -(1,18212:12103821,9620049:0,452978,122846 -r1,18248:16330917,9620049:4227096,575824,122846 -k1,18212:12103821,9620049:-4227096 -) -(1,18212:12103821,9620049:4227096,452978,122846 -k1,18212:12103821,9620049:3277 -h1,18212:16327640,9620049:0,411205,112570 -) -k1,18212:16533130,9620049:202213 -k1,18212:17754428,9620049:202213 -k1,18212:19182820,9620049:202213 -k1,18212:19916529,9620049:202212 -k1,18212:22912542,9620049:202213 -k1,18212:23730793,9620049:202213 -k1,18212:24288866,9620049:202213 -k1,18212:25824737,9620049:202213 -k1,18212:27912420,9620049:202212 -k1,18212:29948330,9620049:202213 -k1,18212:31169628,9620049:202213 -(1,18212:31169628,9620049:0,459977,115847 -r1,18248:32583029,9620049:1413401,575824,115847 -k1,18212:31169628,9620049:-1413401 -) -(1,18212:31169628,9620049:1413401,459977,115847 -k1,18212:31169628,9620049:3277 -h1,18212:32579752,9620049:0,411205,112570 -) -k1,18212:32583029,9620049:0 -) -(1,18213:6630773,10461537:25952256,505283,134348 -k1,18212:9567179,10461537:149160 -k1,18212:10907783,10461537:149159 -k1,18212:12739908,10461537:149160 -k1,18212:16116060,10461537:149159 -k1,18212:19876254,10461537:149160 -k1,18212:23322530,10461537:149160 -k1,18212:25950261,10461537:149159 -k1,18212:26712183,10461537:149160 -k1,18212:28359495,10461537:149159 -h1,18212:29554872,10461537:0,0,0 -k1,18212:29911126,10461537:149160 -k1,18212:32583029,10461537:0 -) -(1,18213:6630773,11303025:25952256,513147,126483 -k1,18212:9103041,11303025:184406 -k1,18212:9946739,11303025:184406 -k1,18212:11150231,11303025:184407 -k1,18212:13203724,11303025:184406 -k1,18212:14579575,11303025:184406 -k1,18212:16032758,11303025:184406 -k1,18212:16876457,11303025:184407 -k1,18212:18079948,11303025:184406 -k1,18212:19598012,11303025:184406 -k1,18212:22717120,11303025:184406 -(1,18212:22717120,11303025:0,452978,122846 -r1,18248:26944216,11303025:4227096,575824,122846 -k1,18212:22717120,11303025:-4227096 -) -(1,18212:22717120,11303025:4227096,452978,122846 -k1,18212:22717120,11303025:3277 -h1,18212:26940939,11303025:0,411205,112570 -) -k1,18212:27128623,11303025:184407 -k1,18212:28805939,11303025:184406 -k1,18212:30056616,11303025:184406 -k1,18212:32583029,11303025:0 -) -(1,18213:6630773,12144513:25952256,505283,122846 -g1,18212:9393115,12144513 -g1,18212:10986295,12144513 -g1,18212:12204609,12144513 -(1,18212:12204609,12144513:0,452978,122846 -r1,18248:13969722,12144513:1765113,575824,122846 -k1,18212:12204609,12144513:-1765113 -) -(1,18212:12204609,12144513:1765113,452978,122846 -k1,18212:12204609,12144513:3277 -h1,18212:13966445,12144513:0,411205,112570 -) -g1,18212:14168951,12144513 -k1,18213:32583029,12144513:15396145 -g1,18213:32583029,12144513 -) -v1,18215:6630773,13502292:0,393216,0 -(1,18216:6630773,27513167:25952256,14404091,0 -g1,18216:6630773,27513167 -g1,18216:6303093,27513167 -r1,18248:6401397,27513167:98304,14404091,0 -g1,18216:6600626,27513167 -g1,18216:6797234,27513167 -[1,18216:6797234,27513167:25785795,14404091,0 -(1,18216:6797234,13922876:25785795,813800,267386 -(1,18215:6797234,13922876:0,813800,267386 -r1,18248:8134168,13922876:1336934,1081186,267386 -k1,18215:6797234,13922876:-1336934 -) -(1,18215:6797234,13922876:1336934,813800,267386 -) -k1,18215:8303581,13922876:169413 -k1,18215:8631261,13922876:327680 -k1,18215:10054377,13922876:169412 -k1,18215:12404173,13922876:169413 -k1,18215:13321352,13922876:169413 -k1,18215:15359195,13922876:169412 -k1,18215:16813114,13922876:169413 -k1,18215:17397340,13922876:169383 -k1,18215:18758198,13922876:169413 -k1,18215:21756144,13922876:169413 -k1,18215:24451969,13922876:169412 -k1,18215:25640467,13922876:169413 -k1,18215:26902365,13922876:169413 -k1,18215:27731069,13922876:169412 -k1,18215:31089463,13922876:169413 -k1,18215:32583029,13922876:0 -) -(1,18216:6797234,14764364:25785795,513147,134348 -k1,18215:7713934,14764364:230538 -k1,18215:9607776,14764364:230538 -k1,18215:12812993,14764364:230538 -k1,18215:16275111,14764364:230538 -k1,18215:17121687,14764364:230538 -k1,18215:19722007,14764364:230538 -k1,18215:20430302,14764364:230538 -k1,18215:22119671,14764364:230538 -k1,18215:24259273,14764364:230538 -k1,18215:25172696,14764364:230538 -k1,18215:26490444,14764364:230506 -k1,18215:29577696,14764364:230538 -k1,18215:31316873,14764364:230538 -k1,18215:32583029,14764364:0 -) -(1,18216:6797234,15605852:25785795,505283,126483 -k1,18215:8410025,15605852:178863 -k1,18215:9759361,15605852:178863 -k1,18215:11042505,15605852:178862 -k1,18215:12607454,15605852:178863 -k1,18215:14641641,15605852:178863 -k1,18215:16852775,15605852:178863 -k1,18215:18223082,15605852:178862 -k1,18215:20526622,15605852:178863 -k1,18215:22683362,15605852:178863 -k1,18215:25503981,15605852:178863 -k1,18215:28270860,15605852:178862 -k1,18215:29641168,15605852:178863 -k1,18215:31200219,15605852:178863 -k1,18216:32583029,15605852:0 -) -(1,18216:6797234,16447340:25785795,513147,134348 -k1,18215:8642587,16447340:184671 -k1,18215:11636131,16447340:184671 -k1,18215:12436840,16447340:184671 -k1,18215:14465695,16447340:184672 -k1,18215:15116327,16447340:184671 -k1,18215:15656858,16447340:184671 -k1,18215:18353524,16447340:184671 -k1,18215:19869231,16447340:184671 -k1,18215:20585399,16447340:184671 -k1,18215:22914408,16447340:184671 -k1,18215:24290525,16447340:184672 -k1,18215:25245899,16447340:184671 -k1,18215:28350854,16447340:184671 -k1,18215:31436804,16447340:184671 -k1,18215:32583029,16447340:0 -) -(1,18216:6797234,17288828:25785795,513147,134348 -k1,18215:8714663,17288828:254125 -k1,18215:9500286,17288828:254126 -k1,18215:10370449,17288828:254125 -k1,18215:11717060,17288828:254126 -k1,18215:12732713,17288828:254125 -k1,18215:14005923,17288828:254125 -k1,18215:17314027,17288828:254126 -k1,18215:19987741,17288828:254125 -k1,18215:21732156,17288828:254126 -k1,18215:22452242,17288828:254125 -k1,18215:24369672,17288828:254126 -k1,18215:25155294,17288828:254125 -k1,18215:26025457,17288828:254125 -k1,18215:27545739,17288828:254126 -k1,18215:29026043,17288828:254125 -k1,18215:29811666,17288828:254126 -k1,18215:31132062,17288828:254125 -k1,18215:32583029,17288828:0 -) -(1,18216:6797234,18130316:25785795,513147,126483 -k1,18215:9699773,18130316:233258 -k1,18215:11975788,18130316:233258 -k1,18215:13228130,18130316:233257 -k1,18215:15114861,18130316:233258 -k1,18215:16679155,18130316:233258 -k1,18215:17443910,18130316:233258 -k1,18215:20634806,18130316:233257 -k1,18215:21554226,18130316:233258 -k1,18215:23254180,18130316:233258 -k1,18215:23953399,18130316:233258 -k1,18215:25205741,18130316:233257 -k1,18215:28413678,18130316:233258 -k1,18215:31591469,18130316:233258 -k1,18215:32583029,18130316:0 -) -(1,18216:6797234,18971804:25785795,513147,134348 -k1,18215:11222406,18971804:222348 -k1,18215:12392405,18971804:222348 -k1,18215:14366530,18971804:222348 -k1,18215:17935145,18971804:222347 -k1,18215:19759193,18971804:222348 -k1,18215:22996829,18971804:222325 -k1,18215:24880515,18971804:222348 -k1,18215:27629275,18971804:222347 -k1,18215:28464385,18971804:222348 -k1,18215:30288433,18971804:222348 -k1,18215:30866641,18971804:222348 -k1,18215:32583029,18971804:0 -) -(1,18216:6797234,19813292:25785795,513147,134348 -k1,18215:9452350,19813292:169335 -k1,18215:10280977,19813292:169335 -k1,18215:13796580,19813292:169335 -k1,18215:14593750,19813292:169335 -k1,18215:17596206,19813292:169335 -k1,18215:18922251,19813292:169335 -k1,18215:20195868,19813292:169335 -k1,18215:21457688,19813292:169335 -k1,18215:22830264,19813292:169335 -k1,18215:26637502,19813292:169335 -k1,18215:27458265,19813292:169335 -k1,18215:29102815,19813292:169335 -k1,18215:31116333,19813292:169335 -k1,18215:32583029,19813292:0 -) -(1,18216:6797234,20654780:25785795,505283,134348 -k1,18215:8779632,20654780:247005 -k1,18215:10728607,20654780:247005 -k1,18215:14063013,20654780:247005 -k1,18215:15501463,20654780:247005 -k1,18215:18921066,20654780:247005 -k1,18215:20314296,20654780:247005 -k1,18215:23072641,20654780:247005 -k1,18215:24713597,20654780:247005 -k1,18215:26469241,20654780:247005 -k1,18215:29941273,20654780:247005 -k1,18215:32583029,20654780:0 -) -(1,18216:6797234,21496268:25785795,513147,134348 -k1,18215:9001448,21496268:249930 -k1,18215:9867417,21496268:249931 -k1,18215:11136432,21496268:249930 -k1,18215:13039835,21496268:249930 -k1,18215:15318760,21496268:249930 -k1,18215:19762340,21496268:249931 -k1,18215:21031355,21496268:249930 -k1,18215:23807698,21496268:249930 -k1,18215:25005279,21496268:249930 -k1,18215:26916548,21496268:249931 -k1,18215:28357923,21496268:249930 -k1,18215:32583029,21496268:0 -) -(1,18216:6797234,22337756:25785795,513147,134348 -k1,18215:10015008,22337756:243095 -k1,18215:11522948,22337756:243095 -k1,18215:12382081,22337756:243095 -k1,18215:13039975,22337756:243051 -k1,18215:13814567,22337756:243095 -k1,18215:18436778,22337756:243095 -k1,18215:22244376,22337756:243095 -k1,18215:23684158,22337756:243095 -k1,18215:25258289,22337756:243095 -k1,18215:28402663,22337756:243095 -k1,18215:30158984,22337756:243095 -k1,18215:31163607,22337756:243095 -k1,18215:31821501,22337756:243051 -k1,18215:32583029,22337756:0 -) -(1,18216:6797234,23179244:25785795,513147,134348 -k1,18215:9248554,23179244:185740 -k1,18215:12136342,23179244:185739 -k1,18215:13131452,23179244:185740 -k1,18215:14336277,23179244:185740 -k1,18215:16787597,23179244:185740 -k1,18215:18814898,23179244:185739 -k1,18215:21512633,23179244:185740 -k1,18215:22357665,23179244:185740 -k1,18215:23562490,23179244:185740 -k1,18215:26802207,23179244:185739 -k1,18215:29407536,23179244:185740 -k1,18215:31478747,23179244:185740 -k1,18215:32583029,23179244:0 -) -(1,18216:6797234,24020732:25785795,505283,134348 -k1,18215:8379819,24020732:296769 -k1,18215:10005658,24020732:296769 -k1,18215:10953854,24020732:296768 -k1,18215:13746889,24020732:296769 -k1,18215:16393779,24020732:296769 -k1,18215:17341976,24020732:296769 -k1,18215:18657829,24020732:296768 -k1,18215:21374843,24020732:296769 -k1,18215:22354497,24020732:296769 -k1,18215:24644216,24020732:296769 -k1,18215:28245965,24020732:296768 -k1,18215:30280749,24020732:296769 -k1,18215:32583029,24020732:0 -) -(1,18216:6797234,24862220:25785795,513147,134348 -k1,18215:9537060,24862220:216690 -k1,18215:10772835,24862220:216690 -k1,18215:12642998,24862220:216690 -k1,18215:14355876,24862220:216691 -k1,18215:15381936,24862220:216690 -k1,18215:15954486,24862220:216690 -k1,18215:18933519,24862220:216690 -k1,18215:22226469,24862220:216690 -k1,18215:24010780,24862220:216690 -k1,18215:25246555,24862220:216690 -k1,18215:26619956,24862220:216691 -k1,18215:28755540,24862220:216690 -k1,18215:29328090,24862220:216690 -k1,18215:31375856,24862220:216690 -k1,18215:32583029,24862220:0 -) -(1,18216:6797234,25703708:25785795,513147,134348 -k1,18215:9481017,25703708:159992 -k1,18215:10784612,25703708:159992 -k1,18215:11710720,25703708:159992 -k1,18215:12402209,25703708:159992 -k1,18215:13922729,25703708:159993 -k1,18215:16526559,25703708:159992 -k1,18215:17372713,25703708:159992 -k1,18215:17947509,25703708:159953 -k1,18215:19211783,25703708:159992 -k1,18215:20119541,25703708:159992 -k1,18215:22744997,25703708:159992 -k1,18215:23556417,25703708:159992 -k1,18215:24808895,25703708:159993 -k1,18215:27214806,25703708:159992 -k1,18215:29036136,25703708:159992 -k1,18215:30387573,25703708:159992 -k1,18215:32583029,25703708:0 -) -(1,18216:6797234,26545196:25785795,513147,134348 -k1,18215:8696832,26545196:238260 -k1,18215:10329043,26545196:238260 -k1,18215:13593100,26545196:238260 -k1,18215:16682176,26545196:238260 -k1,18215:17681963,26545196:238259 -k1,18215:20830677,26545196:238260 -k1,18215:24320177,26545196:238260 -k1,18215:25749882,26545196:238260 -k1,18215:29445165,26545196:238260 -k1,18216:32583029,26545196:0 -) -(1,18216:6797234,27386684:25785795,505283,126483 -g1,18215:9218134,27386684 -g1,18215:12597825,27386684 -g1,18215:15904771,27386684 -g1,18215:16720038,27386684 -g1,18215:21113571,27386684 -g1,18215:22304360,27386684 -k1,18216:32583029,27386684:7327583 -g1,18216:32583029,27386684 -) -] -g1,18216:32583029,27513167 -) -h1,18216:6630773,27513167:0,0,0 -(1,18219:6630773,28870946:25952256,505283,134348 -h1,18218:6630773,28870946:983040,0,0 -k1,18218:8564540,28870946:322892 -k1,18218:9906516,28870946:322891 -k1,18218:13447226,28870946:322892 -k1,18218:16935507,28870946:322892 -k1,18218:18652350,28870946:322892 -k1,18218:21133997,28870946:322891 -k1,18218:22523160,28870946:322892 -k1,18218:25095248,28870946:322892 -k1,18218:26286492,28870946:322892 -k1,18218:27701868,28870946:322891 -(1,18218:27701868,28870946:0,452978,122846 -r1,18248:31577252,28870946:3875384,575824,122846 -k1,18218:27701868,28870946:-3875384 -) -(1,18218:27701868,28870946:3875384,452978,122846 -k1,18218:27701868,28870946:3277 -h1,18218:31573975,28870946:0,411205,112570 -) -k1,18218:31900144,28870946:322892 -k1,18219:32583029,28870946:0 -) -(1,18219:6630773,29712434:25952256,505283,134348 -(1,18218:6630773,29712434:0,452978,122846 -r1,18248:10857869,29712434:4227096,575824,122846 -k1,18218:6630773,29712434:-4227096 -) -(1,18218:6630773,29712434:4227096,452978,122846 -k1,18218:6630773,29712434:3277 -h1,18218:10854592,29712434:0,411205,112570 -) -k1,18218:11109322,29712434:251453 -k1,18218:14041198,29712434:251453 -k1,18218:15686602,29712434:251453 -(1,18218:15686602,29712434:0,452978,122846 -r1,18248:19913698,29712434:4227096,575824,122846 -k1,18218:15686602,29712434:-4227096 -) -(1,18218:15686602,29712434:4227096,452978,122846 -k1,18218:15686602,29712434:3277 -h1,18218:19910421,29712434:0,411205,112570 -) -k1,18218:20165150,29712434:251452 -k1,18218:21102765,29712434:251453 -k1,18218:22557459,29712434:251453 -k1,18218:23340409,29712434:251453 -k1,18218:24922243,29712434:251453 -k1,18218:26553884,29712434:251453 -k1,18218:28142270,29712434:251452 -k1,18218:29141489,29712434:251453 -k1,18218:30906168,29712434:251453 -k1,18218:31809049,29712434:251453 -k1,18219:32583029,29712434:0 -) -(1,18219:6630773,30553922:25952256,505283,7863 -g1,18218:7782895,30553922 -k1,18219:32583029,30553922:20554712 -g1,18219:32583029,30553922 -) -v1,18221:6630773,31736391:0,393216,0 -(1,18232:6630773,36714733:25952256,5371558,196608 -g1,18232:6630773,36714733 -g1,18232:6630773,36714733 -g1,18232:6434165,36714733 -(1,18232:6434165,36714733:0,5371558,196608 -r1,18248:32779637,36714733:26345472,5568166,196608 -k1,18232:6434165,36714733:-26345472 -) -(1,18232:6434165,36714733:26345472,5371558,196608 -[1,18232:6630773,36714733:25952256,5174950,0 -(1,18223:6630773,31944009:25952256,404226,101187 -(1,18222:6630773,31944009:0,0,0 -g1,18222:6630773,31944009 -g1,18222:6630773,31944009 -g1,18222:6303093,31944009 -(1,18222:6303093,31944009:0,0,0 -) -g1,18222:6630773,31944009 -) -g1,18223:9159939,31944009 -k1,18223:9159939,31944009:0 -h1,18223:9792231,31944009:0,0,0 -k1,18223:32583029,31944009:22790798 -g1,18223:32583029,31944009 -) -(1,18224:6630773,32610187:25952256,410518,82312 -h1,18224:6630773,32610187:0,0,0 -g1,18224:6946919,32610187 -g1,18224:7263065,32610187 -g1,18224:11372960,32610187 -g1,18224:12005252,32610187 -k1,18224:12005252,32610187:0 -h1,18224:13269836,32610187:0,0,0 -k1,18224:32583028,32610187:19313192 -g1,18224:32583028,32610187 -) -(1,18225:6630773,33276365:25952256,404226,101187 -h1,18225:6630773,33276365:0,0,0 -g1,18225:6946919,33276365 -g1,18225:7263065,33276365 -g1,18225:7579211,33276365 -g1,18225:7895357,33276365 -g1,18225:8211503,33276365 -g1,18225:8527649,33276365 -g1,18225:8843795,33276365 -g1,18225:9159941,33276365 -g1,18225:9476087,33276365 -g1,18225:9792233,33276365 -g1,18225:10108379,33276365 -g1,18225:10424525,33276365 -g1,18225:10740671,33276365 -g1,18225:11372963,33276365 -g1,18225:12005255,33276365 -g1,18225:14218276,33276365 -k1,18225:14218276,33276365:0 -h1,18225:15166714,33276365:0,0,0 -k1,18225:32583030,33276365:17416316 -g1,18225:32583030,33276365 -) -(1,18226:6630773,33942543:25952256,404226,82312 -h1,18226:6630773,33942543:0,0,0 -g1,18226:6946919,33942543 -g1,18226:7263065,33942543 -g1,18226:7579211,33942543 -g1,18226:7895357,33942543 -g1,18226:8211503,33942543 -g1,18226:8527649,33942543 -g1,18226:8843795,33942543 -g1,18226:9159941,33942543 -g1,18226:9476087,33942543 -g1,18226:9792233,33942543 -g1,18226:10108379,33942543 -g1,18226:10424525,33942543 -g1,18226:10740671,33942543 -g1,18226:12637545,33942543 -g1,18226:13269837,33942543 -g1,18226:15482858,33942543 -g1,18226:17063587,33942543 -g1,18226:18644316,33942543 -g1,18226:20225045,33942543 -h1,18226:21805773,33942543:0,0,0 -k1,18226:32583029,33942543:10777256 -g1,18226:32583029,33942543 -) -(1,18227:6630773,34608721:25952256,0,0 -h1,18227:6630773,34608721:0,0,0 -h1,18227:6630773,34608721:0,0,0 -k1,18227:32583029,34608721:25952256 -g1,18227:32583029,34608721 -) -(1,18228:6630773,35274899:25952256,404226,107478 -h1,18228:6630773,35274899:0,0,0 -g1,18228:11689104,35274899 -g1,18228:13902124,35274899 -g1,18228:14850562,35274899 -g1,18228:16747436,35274899 -g1,18228:17379728,35274899 -g1,18228:19908894,35274899 -h1,18228:20225040,35274899:0,0,0 -k1,18228:32583029,35274899:12357989 -g1,18228:32583029,35274899 -) -(1,18229:6630773,35941077:25952256,404226,107478 -h1,18229:6630773,35941077:0,0,0 -g1,18229:6946919,35941077 -g1,18229:7263065,35941077 -g1,18229:12321396,35941077 -g1,18229:12953688,35941077 -g1,18229:14218271,35941077 -g1,18229:16115145,35941077 -g1,18229:16747437,35941077 -g1,18229:18328166,35941077 -g1,18229:19908895,35941077 -g1,18229:20541187,35941077 -g1,18229:21489625,35941077 -h1,18229:21805771,35941077:0,0,0 -k1,18229:32583029,35941077:10777258 -g1,18229:32583029,35941077 -) -(1,18230:6630773,36607255:25952256,404226,107478 -h1,18230:6630773,36607255:0,0,0 -g1,18230:6946919,36607255 -g1,18230:7263065,36607255 -k1,18230:7263065,36607255:0 -h1,18230:11056813,36607255:0,0,0 -k1,18230:32583029,36607255:21526216 -g1,18230:32583029,36607255 -) -] -) -g1,18232:32583029,36714733 -g1,18232:6630773,36714733 -g1,18232:6630773,36714733 -g1,18232:32583029,36714733 -g1,18232:32583029,36714733 -) -h1,18232:6630773,36911341:0,0,0 -v1,18236:6630773,38785411:0,393216,0 -(1,18237:6630773,40193785:25952256,1801590,0 -g1,18237:6630773,40193785 -g1,18237:6303093,40193785 -r1,18248:6401397,40193785:98304,1801590,0 -g1,18237:6600626,40193785 -g1,18237:6797234,40193785 -[1,18237:6797234,40193785:25785795,1801590,0 -(1,18237:6797234,39217949:25785795,825754,196608 -(1,18236:6797234,39217949:0,825754,196608 -r1,18248:7890375,39217949:1093141,1022362,196608 -k1,18236:6797234,39217949:-1093141 -) -(1,18236:6797234,39217949:1093141,825754,196608 -) -k1,18236:8128769,39217949:238394 -k1,18236:9854987,39217949:327680 -k1,18236:12299322,39217949:238393 -k1,18236:13556801,39217949:238394 -k1,18236:16456611,39217949:238393 -k1,18236:18550329,39217949:238394 -k1,18236:19440151,39217949:238394 -k1,18236:20771029,39217949:238393 -(1,18236:20771029,39217949:0,452978,122846 -r1,18248:24998125,39217949:4227096,575824,122846 -k1,18236:20771029,39217949:-4227096 -) -(1,18236:20771029,39217949:4227096,452978,122846 -k1,18236:20771029,39217949:3277 -h1,18236:24994848,39217949:0,411205,112570 -) -k1,18236:25236519,39217949:238394 -k1,18236:27802095,39217949:238393 -k1,18236:28707645,39217949:238394 -(1,18236:28707645,39217949:0,452978,122846 -r1,18248:32583029,39217949:3875384,575824,122846 -k1,18236:28707645,39217949:-3875384 -) -(1,18236:28707645,39217949:3875384,452978,122846 -k1,18236:28707645,39217949:3277 -h1,18236:32579752,39217949:0,411205,112570 -) -k1,18236:32583029,39217949:0 -) -(1,18237:6797234,40059437:25785795,505283,134348 -g1,18236:8905527,40059437 -g1,18236:9720794,40059437 -g1,18236:12759698,40059437 -g1,18236:13978012,40059437 -(1,18236:13978012,40059437:0,459977,115847 -r1,18248:15391413,40059437:1413401,575824,115847 -k1,18236:13978012,40059437:-1413401 -) -(1,18236:13978012,40059437:1413401,459977,115847 -k1,18236:13978012,40059437:3277 -h1,18236:15388136,40059437:0,411205,112570 -) -g1,18236:15590642,40059437 -k1,18237:32583029,40059437:13974454 -g1,18237:32583029,40059437 -) -] -g1,18237:32583029,40193785 -) -h1,18237:6630773,40193785:0,0,0 -(1,18240:6630773,41551564:25952256,513147,134348 -h1,18239:6630773,41551564:983040,0,0 -k1,18239:8414260,41551564:172612 -k1,18239:9605956,41551564:172611 -k1,18239:11162688,41551564:172612 -k1,18239:13996717,41551564:172612 -k1,18239:15037680,41551564:172611 -k1,18239:17030882,41551564:172612 -k1,18239:17559354,41551564:172612 -k1,18239:20494309,41551564:172612 -k1,18239:21997956,41551564:172611 -k1,18239:24352262,41551564:172612 -k1,18239:26260267,41551564:172612 -k1,18239:27451963,41551564:172611 -k1,18239:29278048,41551564:172612 -k1,18239:32583029,41551564:0 -) -(1,18240:6630773,42393052:25952256,513147,126483 -k1,18239:7507932,42393052:261121 -k1,18239:8788139,42393052:261122 -k1,18239:11279450,42393052:261121 -k1,18239:14471341,42393052:261121 -k1,18239:15929149,42393052:261121 -k1,18239:18258587,42393052:261122 -(1,18239:18258587,42393052:0,452978,115847 -r1,18248:20375412,42393052:2116825,568825,115847 -k1,18239:18258587,42393052:-2116825 -) -(1,18239:18258587,42393052:2116825,452978,115847 -k1,18239:18258587,42393052:3277 -h1,18239:20372135,42393052:0,411205,112570 -) -k1,18239:20636533,42393052:261121 -k1,18239:22123833,42393052:261121 -k1,18239:25031298,42393052:261121 -(1,18239:25031298,42393052:0,459977,115847 -r1,18248:27499835,42393052:2468537,575824,115847 -k1,18239:25031298,42393052:-2468537 -) -(1,18239:25031298,42393052:2468537,459977,115847 -k1,18239:25031298,42393052:3277 -h1,18239:27496558,42393052:0,411205,112570 -) -k1,18239:27760957,42393052:261122 -k1,18239:29213523,42393052:261121 -(1,18239:29213523,42393052:0,452978,115847 -r1,18248:31330348,42393052:2116825,568825,115847 -k1,18239:29213523,42393052:-2116825 -) -(1,18239:29213523,42393052:2116825,452978,115847 -k1,18239:29213523,42393052:3277 -h1,18239:31327071,42393052:0,411205,112570 -) -k1,18239:31591469,42393052:261121 -k1,18239:32583029,42393052:0 -) -(1,18240:6630773,43234540:25952256,513147,134348 -k1,18239:10366920,43234540:224073 -k1,18239:11352522,43234540:224074 -k1,18239:12342711,43234540:224073 -k1,18239:15285873,43234540:224073 -k1,18239:17847616,43234540:224074 -k1,18239:18881059,43234540:224073 -k1,18239:19871249,43234540:224074 -k1,18239:23149300,43234540:224073 -k1,18239:26123264,43234540:224073 -k1,18239:29706058,43234540:224074 -k1,18239:31591469,43234540:224073 -k1,18239:32583029,43234540:0 -) -(1,18240:6630773,44076028:25952256,513147,134348 -k1,18239:9713374,44076028:298632 -k1,18239:10959658,44076028:298633 -k1,18239:13655597,44076028:298632 -k1,18239:16343017,44076028:298633 -k1,18239:19152989,44076028:298632 -k1,18239:20945188,44076028:298633 -k1,18239:21929982,44076028:298632 -k1,18239:23247700,44076028:298633 -k1,18239:24343250,44076028:298632 -k1,18239:26480068,44076028:298533 -k1,18239:28440038,44076028:298632 -k1,18239:29500199,44076028:298633 -k1,18239:30817916,44076028:298632 -(1,18239:30817916,44076028:0,459977,115847 -r1,18248:32583029,44076028:1765113,575824,115847 -k1,18239:30817916,44076028:-1765113 -) -(1,18239:30817916,44076028:1765113,459977,115847 -k1,18239:30817916,44076028:3277 -h1,18239:32579752,44076028:0,411205,112570 -) -k1,18239:32583029,44076028:0 -) -(1,18240:6630773,44917516:25952256,505283,126483 -g1,18239:9011040,44917516 -g1,18239:9838104,44917516 -g1,18239:11240574,44917516 -g1,18239:12980554,44917516 -g1,18239:14688422,44917516 -g1,18239:16955967,44917516 -g1,18239:18259478,44917516 -g1,18239:19206473,44917516 -g1,18239:21829879,44917516 -g1,18239:23423059,44917516 -(1,18239:23423059,44917516:0,459977,115847 -r1,18248:29408714,44917516:5985655,575824,115847 -k1,18239:23423059,44917516:-5985655 -) -(1,18239:23423059,44917516:5985655,459977,115847 -k1,18239:23423059,44917516:3277 -h1,18239:29405437,44917516:0,411205,112570 -) -k1,18240:32583029,44917516:3000645 -g1,18240:32583029,44917516 -) -v1,18242:6630773,46099985:0,393216,0 -] -(1,18248:32583029,45706769:0,0,0 -g1,18248:32583029,45706769 -) -) -] -(1,18248:6630773,47279633:25952256,0,0 -h1,18248:6630773,47279633:25952256,0,0 -) -] -(1,18248:4262630,4025873:0,0,0 -[1,18248:-473656,4025873:0,0,0 -(1,18248:-473656,-710413:0,0,0 -(1,18248:-473656,-710413:0,0,0 -g1,18248:-473656,-710413 -) -g1,18248:-473656,-710413 -) -] -) -] -!30330 -}321 +) +] +(1,18378:6630773,47279633:25952256,0,0 +h1,18378:6630773,47279633:25952256,0,0 +) +] +(1,18378:4262630,4025873:0,0,0 +[1,18378:-473656,4025873:0,0,0 +(1,18378:-473656,-710413:0,0,0 +(1,18378:-473656,-710413:0,0,0 +g1,18378:-473656,-710413 +) +g1,18378:-473656,-710413 +) +] +) +] +!17796 +}304 +Input:2801:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2802:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2803:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2804:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -314101,842 +311857,777 @@ Input:2806:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConso Input:2807:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2808:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2809:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2810:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2811:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2812:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2813:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2814:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2815:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2816:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2817:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2818:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2819:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1704 -{322 -[1,18302:4262630,47279633:28320399,43253760,0 -(1,18302:4262630,4025873:0,0,0 -[1,18302:-473656,4025873:0,0,0 -(1,18302:-473656,-710413:0,0,0 -(1,18302:-473656,-644877:0,0,0 -k1,18302:-473656,-644877:-65536 +!858 +{305 +[1,18423:4262630,47279633:28320399,43253760,0 +(1,18423:4262630,4025873:0,0,0 +[1,18423:-473656,4025873:0,0,0 +(1,18423:-473656,-710413:0,0,0 +(1,18423:-473656,-644877:0,0,0 +k1,18423:-473656,-644877:-65536 ) -(1,18302:-473656,4736287:0,0,0 -k1,18302:-473656,4736287:5209943 +(1,18423:-473656,4736287:0,0,0 +k1,18423:-473656,4736287:5209943 ) -g1,18302:-473656,-710413 +g1,18423:-473656,-710413 ) ] ) -[1,18302:6630773,47279633:25952256,43253760,0 -[1,18302:6630773,4812305:25952256,786432,0 -(1,18302:6630773,4812305:25952256,485622,11795 -(1,18302:6630773,4812305:25952256,485622,11795 -g1,18302:3078558,4812305 -[1,18302:3078558,4812305:0,0,0 -(1,18302:3078558,2439708:0,1703936,0 -k1,18302:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,18302:2537886,2439708:1179648,16384,0 +[1,18423:6630773,47279633:25952256,43253760,0 +[1,18423:6630773,4812305:25952256,786432,0 +(1,18423:6630773,4812305:25952256,513147,126483 +(1,18423:6630773,4812305:25952256,513147,126483 +g1,18423:3078558,4812305 +[1,18423:3078558,4812305:0,0,0 +(1,18423:3078558,2439708:0,1703936,0 +k1,18423:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,18423:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,18302:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,18423:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,18302:3078558,4812305:0,0,0 -(1,18302:3078558,2439708:0,1703936,0 -g1,18302:29030814,2439708 -g1,18302:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,18302:36151628,1915420:16384,1179648,0 +[1,18423:3078558,4812305:0,0,0 +(1,18423:3078558,2439708:0,1703936,0 +g1,18423:29030814,2439708 +g1,18423:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,18423:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,18302:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,18423:37855564,2439708:1179648,16384,0 ) ) -k1,18302:3078556,2439708:-34777008 +k1,18423:3078556,2439708:-34777008 ) ] -[1,18302:3078558,4812305:0,0,0 -(1,18302:3078558,49800853:0,16384,2228224 -k1,18302:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,18302:2537886,49800853:1179648,16384,0 +[1,18423:3078558,4812305:0,0,0 +(1,18423:3078558,49800853:0,16384,2228224 +k1,18423:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,18423:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,18302:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,18423:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,18302:3078558,4812305:0,0,0 -(1,18302:3078558,49800853:0,16384,2228224 -g1,18302:29030814,49800853 -g1,18302:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,18302:36151628,51504789:16384,1179648,0 +[1,18423:3078558,4812305:0,0,0 +(1,18423:3078558,49800853:0,16384,2228224 +g1,18423:29030814,49800853 +g1,18423:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,18423:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,18302:37855564,49800853:1179648,16384,0 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,18423:37855564,49800853:1179648,16384,0 ) ) -k1,18302:3078556,49800853:-34777008 +k1,18423:3078556,49800853:-34777008 ) ] -g1,18302:6630773,4812305 -g1,18302:6630773,4812305 -g1,18302:10347975,4812305 -k1,18302:31387651,4812305:21039676 -) -) -] -[1,18302:6630773,45706769:25952256,40108032,0 -(1,18302:6630773,45706769:25952256,40108032,0 -(1,18302:6630773,45706769:0,0,0 -g1,18302:6630773,45706769 -) -[1,18302:6630773,45706769:25952256,40108032,0 -v1,18248:6630773,6254097:0,393216,0 -(1,18248:6630773,7901549:25952256,2040668,196608 -g1,18248:6630773,7901549 -g1,18248:6630773,7901549 -g1,18248:6434165,7901549 -(1,18248:6434165,7901549:0,2040668,196608 -r1,18302:32779637,7901549:26345472,2237276,196608 -k1,18248:6434165,7901549:-26345472 -) -(1,18248:6434165,7901549:26345472,2040668,196608 -[1,18248:6630773,7901549:25952256,1844060,0 -(1,18244:6630773,6461715:25952256,404226,107478 -(1,18243:6630773,6461715:0,0,0 -g1,18243:6630773,6461715 -g1,18243:6630773,6461715 -g1,18243:6303093,6461715 -(1,18243:6303093,6461715:0,0,0 -) -g1,18243:6630773,6461715 -) -k1,18244:6630773,6461715:0 -g1,18244:11689104,6461715 -g1,18244:13902124,6461715 -g1,18244:14850562,6461715 -g1,18244:16747436,6461715 -g1,18244:17379728,6461715 -g1,18244:19908894,6461715 -h1,18244:20225040,6461715:0,0,0 -k1,18244:32583029,6461715:12357989 -g1,18244:32583029,6461715 -) -(1,18245:6630773,7127893:25952256,410518,107478 -h1,18245:6630773,7127893:0,0,0 -g1,18245:6946919,7127893 -g1,18245:7263065,7127893 -g1,18245:12321396,7127893 -g1,18245:12953688,7127893 -g1,18245:14218271,7127893 -g1,18245:16115145,7127893 -g1,18245:16747437,7127893 -g1,18245:18328166,7127893 -g1,18245:19908895,7127893 -g1,18245:20541187,7127893 -g1,18245:21489625,7127893 -g1,18245:23702645,7127893 -g1,18245:24334937,7127893 -g1,18245:27180249,7127893 -h1,18245:27496395,7127893:0,0,0 -k1,18245:32583029,7127893:5086634 -g1,18245:32583029,7127893 -) -(1,18246:6630773,7794071:25952256,404226,107478 -h1,18246:6630773,7794071:0,0,0 -g1,18246:6946919,7794071 -g1,18246:7263065,7794071 -k1,18246:7263065,7794071:0 -h1,18246:11056813,7794071:0,0,0 -k1,18246:32583029,7794071:21526216 -g1,18246:32583029,7794071 -) -] -) -g1,18248:32583029,7901549 -g1,18248:6630773,7901549 -g1,18248:6630773,7901549 -g1,18248:32583029,7901549 -g1,18248:32583029,7901549 -) -h1,18248:6630773,8098157:0,0,0 -v1,18252:6630773,9988221:0,393216,0 -(1,18253:6630773,12953086:25952256,3358081,0 -g1,18253:6630773,12953086 -g1,18253:6303093,12953086 -r1,18302:6401397,12953086:98304,3358081,0 -g1,18253:6600626,12953086 -g1,18253:6797234,12953086 -[1,18253:6797234,12953086:25785795,3358081,0 -(1,18253:6797234,10420759:25785795,825754,196608 -(1,18252:6797234,10420759:0,825754,196608 -r1,18302:7890375,10420759:1093141,1022362,196608 -k1,18252:6797234,10420759:-1093141 -) -(1,18252:6797234,10420759:1093141,825754,196608 -) -k1,18252:8082194,10420759:191819 -k1,18252:9808412,10420759:327680 -k1,18252:10628066,10420759:191819 -k1,18252:11838970,10420759:191819 -k1,18252:15022507,10420759:191818 -k1,18252:17069650,10420759:191819 -k1,18252:18280554,10420759:191819 -k1,18252:21447052,10420759:191819 -k1,18252:23834982,10420759:191819 -k1,18252:25530852,10420759:191819 -k1,18252:26488786,10420759:191818 -k1,18252:27339897,10420759:191819 -k1,18252:28550801,10420759:191819 -k1,18252:30396093,10420759:191819 -k1,18252:32583029,10420759:0 -) -(1,18253:6797234,11262247:25785795,505283,134348 -k1,18252:10374487,11262247:215256 -k1,18252:10945603,11262247:215256 -k1,18252:13033878,11262247:215256 -k1,18252:16397484,11262247:215256 -k1,18252:18220338,11262247:215256 -k1,18252:19454679,11262247:215256 -k1,18252:21277533,11262247:215256 -k1,18252:23348113,11262247:215256 -k1,18252:24957320,11262247:215256 -k1,18252:27196983,11262247:215256 -k1,18252:30386918,11262247:215256 -k1,18252:32583029,11262247:0 -) -(1,18253:6797234,12103735:25785795,513147,134348 -k1,18252:7686102,12103735:229576 -k1,18252:10257934,12103735:229575 -k1,18252:12831077,12103735:229576 -k1,18252:15646047,12103735:229575 -k1,18252:16527051,12103735:229576 -k1,18252:17775711,12103735:229575 -(1,18252:17775711,12103735:0,452978,115847 -r1,18302:19540824,12103735:1765113,568825,115847 -k1,18252:17775711,12103735:-1765113 -) -(1,18252:17775711,12103735:1765113,452978,115847 -k1,18252:17775711,12103735:3277 -h1,18252:19537547,12103735:0,411205,112570 -) -k1,18252:19770400,12103735:229576 -k1,18252:22926812,12103735:229575 -k1,18252:24054231,12103735:229576 -k1,18252:25569622,12103735:229575 -k1,18252:27142031,12103735:229576 -k1,18252:28765557,12103735:229575 -k1,18252:32583029,12103735:0 -) -(1,18253:6797234,12945223:25785795,513147,7863 -g1,18252:7655755,12945223 -g1,18252:9551711,12945223 -k1,18253:32583029,12945223:21013464 -g1,18253:32583029,12945223 -) -] -g1,18253:32583029,12953086 -) -h1,18253:6630773,12953086:0,0,0 -(1,18256:6630773,14318862:25952256,505283,134348 -h1,18255:6630773,14318862:983040,0,0 -k1,18255:10378912,14318862:285872 -k1,18255:15402382,14318862:285872 -k1,18255:19458540,14318862:285872 -k1,18255:22352090,14318862:285872 -k1,18255:25445524,14318862:285872 -k1,18255:26382824,14318862:285872 -k1,18255:27687781,14318862:285872 -(1,18255:27687781,14318862:0,452978,115847 -r1,18302:29452894,14318862:1765113,568825,115847 -k1,18255:27687781,14318862:-1765113 -) -(1,18255:27687781,14318862:1765113,452978,115847 -k1,18255:27687781,14318862:3277 -h1,18255:29449617,14318862:0,411205,112570 -) -k1,18255:29738766,14318862:285872 -k1,18255:32583029,14318862:0 -) -(1,18256:6630773,15160350:25952256,505283,134348 -k1,18255:9789010,15160350:183558 -k1,18255:12168679,15160350:183558 -k1,18255:13636743,15160350:183558 -k1,18255:14924583,15160350:183558 -k1,18255:15855907,15160350:183558 -k1,18255:18202808,15160350:183558 -k1,18255:19072528,15160350:183558 -k1,18255:23200043,15160350:183558 -k1,18255:24575046,15160350:183558 -k1,18255:26940298,15160350:183558 -(1,18255:26940298,15160350:0,414482,115847 -r1,18302:31167394,15160350:4227096,530329,115847 -k1,18255:26940298,15160350:-4227096 -) -(1,18255:26940298,15160350:4227096,414482,115847 -g1,18255:29053846,15160350 -g1,18255:29757270,15160350 -h1,18255:31164117,15160350:0,411205,112570 -) -k1,18255:31350952,15160350:183558 -k1,18255:32583029,15160350:0 -) -(1,18256:6630773,16001838:25952256,513147,134348 -k1,18255:9048692,16001838:139232 -h1,18255:10417739,16001838:0,0,0 -k1,18255:10556971,16001838:139232 -k1,18255:11505572,16001838:139231 -k1,18255:13142957,16001838:139232 -h1,18255:14338334,16001838:0,0,0 -k1,18255:14858330,16001838:139232 -k1,18255:16659555,16001838:139232 -k1,18255:17667138,16001838:139231 -k1,18255:19448702,16001838:139232 -k1,18255:20607019,16001838:139232 -k1,18255:23720930,16001838:139232 -k1,18255:26056273,16001838:139232 -k1,18255:27930897,16001838:139231 -(1,18255:27930897,16001838:0,452978,115847 -r1,18302:30399434,16001838:2468537,568825,115847 -k1,18255:27930897,16001838:-2468537 -) -(1,18255:27930897,16001838:2468537,452978,115847 -k1,18255:27930897,16001838:3277 -h1,18255:30396157,16001838:0,411205,112570 -) -k1,18255:30538666,16001838:139232 -k1,18255:31923737,16001838:139232 -k1,18255:32583029,16001838:0 -) -(1,18256:6630773,16843326:25952256,513147,126483 -k1,18255:9071161,16843326:157769 -k1,18255:10609118,16843326:157769 -k1,18255:12535704,16843326:157769 -k1,18255:13979290,16843326:157770 -k1,18255:15612274,16843326:157769 -k1,18255:17279993,16843326:157769 -k1,18255:19860628,16843326:157769 -k1,18255:21175107,16843326:157769 -k1,18255:22094404,16843326:157769 -k1,18255:23582554,16843326:157769 -k1,18255:25121168,16843326:157770 -k1,18255:26371422,16843326:157769 -k1,18255:27196347,16843326:157769 -(1,18255:27196347,16843326:0,452978,115847 -r1,18302:29664884,16843326:2468537,568825,115847 -k1,18255:27196347,16843326:-2468537 -) -(1,18255:27196347,16843326:2468537,452978,115847 -k1,18255:27196347,16843326:3277 -h1,18255:29661607,16843326:0,411205,112570 -) -k1,18255:29822653,16843326:157769 -k1,18255:32583029,16843326:0 -) -(1,18256:6630773,17684814:25952256,513147,134348 -g1,18255:7600705,17684814 -g1,18255:10461351,17684814 -g1,18255:11319872,17684814 -g1,18255:14378437,17684814 -g1,18255:15236958,17684814 -g1,18255:17756817,17684814 -g1,18255:20264224,17684814 -g1,18255:21695530,17684814 -g1,18255:24173446,17684814 -h1,18255:25542493,17684814:0,0,0 -g1,18255:25741722,17684814 -g1,18255:26750321,17684814 -g1,18255:28447703,17684814 -h1,18255:29244621,17684814:0,0,0 -k1,18256:32583029,17684814:2957644 -g1,18256:32583029,17684814 -) -v1,18258:6630773,18875280:0,393216,0 -(1,18267:6630773,21182619:25952256,2700555,196608 -g1,18267:6630773,21182619 -g1,18267:6630773,21182619 -g1,18267:6434165,21182619 -(1,18267:6434165,21182619:0,2700555,196608 -r1,18302:32779637,21182619:26345472,2897163,196608 -k1,18267:6434165,21182619:-26345472 -) -(1,18267:6434165,21182619:26345472,2700555,196608 -[1,18267:6630773,21182619:25952256,2503947,0 -(1,18260:6630773,19082898:25952256,404226,101187 -(1,18259:6630773,19082898:0,0,0 -g1,18259:6630773,19082898 -g1,18259:6630773,19082898 -g1,18259:6303093,19082898 -(1,18259:6303093,19082898:0,0,0 -) -g1,18259:6630773,19082898 -) -g1,18260:9159939,19082898 -k1,18260:9159939,19082898:0 -h1,18260:9792231,19082898:0,0,0 -k1,18260:32583029,19082898:22790798 -g1,18260:32583029,19082898 -) -(1,18261:6630773,19749076:25952256,410518,101187 -h1,18261:6630773,19749076:0,0,0 -g1,18261:6946919,19749076 -g1,18261:7263065,19749076 -g1,18261:11372960,19749076 -g1,18261:12005252,19749076 -g1,18261:13585982,19749076 -g1,18261:14218274,19749076 -g1,18261:14850566,19749076 -g1,18261:17063587,19749076 -g1,18261:18328171,19749076 -g1,18261:20225045,19749076 -g1,18261:20857337,19749076 -g1,18261:25915668,19749076 -g1,18261:27496398,19749076 -g1,18261:29077127,19749076 -g1,18261:30341710,19749076 -g1,18261:30974002,19749076 -h1,18261:32238584,19749076:0,0,0 -k1,18261:32583029,19749076:344445 -g1,18261:32583029,19749076 -) -(1,18262:6630773,20415254:25952256,410518,101187 -h1,18262:6630773,20415254:0,0,0 -h1,18262:10740667,20415254:0,0,0 -k1,18262:32583029,20415254:21842362 -g1,18262:32583029,20415254 -) -(1,18266:6630773,21081432:25952256,404226,101187 -(1,18264:6630773,21081432:0,0,0 -g1,18264:6630773,21081432 -g1,18264:6630773,21081432 -g1,18264:6303093,21081432 -(1,18264:6303093,21081432:0,0,0 -) -g1,18264:6630773,21081432 -) -g1,18266:7579210,21081432 -g1,18266:8843793,21081432 -g1,18266:12321396,21081432 -g1,18266:15798999,21081432 -g1,18266:19276602,21081432 -g1,18266:22754205,21081432 -h1,18266:25915662,21081432:0,0,0 -k1,18266:32583029,21081432:6667367 -g1,18266:32583029,21081432 -) -] -) -g1,18267:32583029,21182619 -g1,18267:6630773,21182619 -g1,18267:6630773,21182619 -g1,18267:32583029,21182619 -g1,18267:32583029,21182619 -) -h1,18267:6630773,21379227:0,0,0 -(1,18271:6630773,22745003:25952256,505283,134348 -h1,18270:6630773,22745003:983040,0,0 -k1,18270:9169965,22745003:152371 -k1,18270:10513781,22745003:152371 -k1,18270:12510335,22745003:152371 -k1,18270:13477974,22745003:152371 -k1,18270:14696616,22745003:152371 -k1,18270:19165844,22745003:152371 -k1,18270:21642777,22745003:152371 -k1,18270:22814233,22745003:152371 -k1,18270:25491051,22745003:152371 -k1,18270:26990842,22745003:152371 -k1,18270:28507017,22745003:152371 -k1,18270:30168027,22745003:152371 -k1,18271:32583029,22745003:0 -) -(1,18271:6630773,23586491:25952256,505283,134348 -k1,18270:7828823,23586491:207801 -k1,18270:11948468,23586491:207801 -k1,18270:12784105,23586491:207802 -k1,18270:14010991,23586491:207801 -k1,18270:16880209,23586491:207801 -k1,18270:19117005,23586491:207801 -k1,18270:20193158,23586491:207801 -k1,18270:21931225,23586491:207801 -k1,18270:22790455,23586491:207802 -k1,18270:24090741,23586491:207801 -(1,18270:24090741,23586491:0,452978,115847 -r1,18302:29372972,23586491:5282231,568825,115847 -k1,18270:24090741,23586491:-5282231 -) -(1,18270:24090741,23586491:5282231,452978,115847 -k1,18270:24090741,23586491:3277 -h1,18270:29369695,23586491:0,411205,112570 -) -k1,18270:29580773,23586491:207801 -k1,18270:30440002,23586491:207801 -k1,18270:32583029,23586491:0 -) -(1,18271:6630773,24427979:25952256,513147,134348 -g1,18270:8114508,24427979 -g1,18270:9332822,24427979 -g1,18270:10758230,24427979 -g1,18270:11488956,24427979 -g1,18270:12754456,24427979 -g1,18270:15303151,24427979 -g1,18270:16115142,24427979 -g1,18270:17333456,24427979 -g1,18270:19022318,24427979 -g1,18270:19880839,24427979 -g1,18270:21099153,24427979 -g1,18270:23822829,24427979 -k1,18271:32583029,24427979:7239109 -g1,18271:32583029,24427979 -) -v1,18273:6630773,25618445:0,393216,0 -(1,18280:6630773,27925784:25952256,2700555,196608 -g1,18280:6630773,27925784 -g1,18280:6630773,27925784 -g1,18280:6434165,27925784 -(1,18280:6434165,27925784:0,2700555,196608 -r1,18302:32779637,27925784:26345472,2897163,196608 -k1,18280:6434165,27925784:-26345472 -) -(1,18280:6434165,27925784:26345472,2700555,196608 -[1,18280:6630773,27925784:25952256,2503947,0 -(1,18275:6630773,25826063:25952256,404226,107478 -(1,18274:6630773,25826063:0,0,0 -g1,18274:6630773,25826063 -g1,18274:6630773,25826063 -g1,18274:6303093,25826063 -(1,18274:6303093,25826063:0,0,0 -) -g1,18274:6630773,25826063 -) -k1,18275:6630773,25826063:0 -g1,18275:11689104,25826063 -g1,18275:13902124,25826063 -g1,18275:14850562,25826063 -g1,18275:16747436,25826063 -g1,18275:17379728,25826063 -g1,18275:19908894,25826063 -h1,18275:20225040,25826063:0,0,0 -k1,18275:32583029,25826063:12357989 -g1,18275:32583029,25826063 -) -(1,18276:6630773,26492241:25952256,404226,107478 -h1,18276:6630773,26492241:0,0,0 -g1,18276:6946919,26492241 -g1,18276:7263065,26492241 -g1,18276:12321396,26492241 -g1,18276:12953688,26492241 -g1,18276:14850563,26492241 -g1,18276:16747437,26492241 -g1,18276:17379729,26492241 -g1,18276:19276604,26492241 -g1,18276:20857333,26492241 -g1,18276:21489625,26492241 -g1,18276:22438063,26492241 -h1,18276:22754209,26492241:0,0,0 -k1,18276:32583029,26492241:9828820 -g1,18276:32583029,26492241 -) -(1,18277:6630773,27158419:25952256,404226,107478 -h1,18277:6630773,27158419:0,0,0 -g1,18277:6946919,27158419 -g1,18277:7263065,27158419 -g1,18277:11372959,27158419 -h1,18277:11689105,27158419:0,0,0 -k1,18277:32583029,27158419:20893924 -g1,18277:32583029,27158419 -) -(1,18278:6630773,27824597:25952256,404226,101187 -h1,18278:6630773,27824597:0,0,0 -g1,18278:6946919,27824597 -g1,18278:7263065,27824597 -g1,18278:12321397,27824597 -g1,18278:12953689,27824597 -h1,18278:14218272,27824597:0,0,0 -k1,18278:32583028,27824597:18364756 -g1,18278:32583028,27824597 -) -] -) -g1,18280:32583029,27925784 -g1,18280:6630773,27925784 -g1,18280:6630773,27925784 -g1,18280:32583029,27925784 -g1,18280:32583029,27925784 -) -h1,18280:6630773,28122392:0,0,0 -(1,18283:6630773,37795882:25952256,9083666,0 -k1,18283:10523651,37795882:3892878 -h1,18282:10523651,37795882:0,0,0 -(1,18282:10523651,37795882:18166500,9083666,0 -(1,18282:10523651,37795882:18167376,9083688,0 -(1,18282:10523651,37795882:18167376,9083688,0 -(1,18282:10523651,37795882:0,9083688,0 -(1,18282:10523651,37795882:0,14208860,0 -(1,18282:10523651,37795882:28417720,14208860,0 -) -k1,18282:10523651,37795882:-28417720 -) -) -g1,18282:28691027,37795882 -) -) -) -g1,18283:28690151,37795882 -k1,18283:32583029,37795882:3892878 -) -(1,18290:6630773,38637370:25952256,505283,126483 -h1,18289:6630773,38637370:983040,0,0 -k1,18289:8453247,38637370:211599 -k1,18289:9683932,38637370:211600 -k1,18289:12556948,38637370:211599 -k1,18289:14797542,38637370:211599 -k1,18289:15877493,38637370:211599 -k1,18289:18674488,38637370:211600 -k1,18289:19537515,38637370:211599 -k1,18289:21262996,38637370:211599 -k1,18289:22493680,38637370:211599 -k1,18289:23931459,38637370:211600 -k1,18289:24794486,38637370:211599 -k1,18289:25753851,38637370:211599 -k1,18289:28302464,38637370:211599 -k1,18289:28983957,38637370:211600 -k1,18289:29727053,38637370:211599 -k1,18289:31224468,38637370:211599 -k1,18290:32583029,38637370:0 -) -(1,18290:6630773,39478858:25952256,513147,126483 -k1,18289:8491070,39478858:202236 -k1,18289:9884752,39478858:202237 -k1,18289:12374195,39478858:202236 -k1,18289:16015761,39478858:202237 -k1,18289:16869425,39478858:202236 -k1,18289:18713994,39478858:202237 -k1,18289:21428225,39478858:202236 -k1,18289:23474645,39478858:202237 -k1,18289:24486251,39478858:202236 -k1,18289:25707573,39478858:202237 -k1,18289:26705416,39478858:202236 -k1,18289:28917642,39478858:202237 -(1,18289:28917642,39478858:0,452978,115847 -r1,18302:30682755,39478858:1765113,568825,115847 -k1,18289:28917642,39478858:-1765113 -) -(1,18289:28917642,39478858:1765113,452978,115847 -k1,18289:28917642,39478858:3277 -h1,18289:30679478,39478858:0,411205,112570 -) -k1,18289:30884991,39478858:202236 -k1,18289:32583029,39478858:0 -) -(1,18290:6630773,40320346:25952256,513147,134348 -k1,18289:9010955,40320346:198488 -k1,18289:10228527,40320346:198487 -k1,18289:13234577,40320346:198488 -k1,18289:14380715,40320346:198487 -(1,18289:14380715,40320346:0,452978,115847 -r1,18302:16145828,40320346:1765113,568825,115847 -k1,18289:14380715,40320346:-1765113 -) -(1,18289:14380715,40320346:1765113,452978,115847 -k1,18289:14380715,40320346:3277 -h1,18289:16142551,40320346:0,411205,112570 -) -k1,18289:16517986,40320346:198488 -k1,18289:18204796,40320346:198487 -k1,18289:19271636,40320346:198488 -k1,18289:20562608,40320346:198487 -(1,18289:20562608,40320346:0,452978,122846 -r1,18302:24437992,40320346:3875384,575824,122846 -k1,18289:20562608,40320346:-3875384 -) -(1,18289:20562608,40320346:3875384,452978,122846 -k1,18289:20562608,40320346:3277 -h1,18289:24434715,40320346:0,411205,112570 -) -k1,18289:24636480,40320346:198488 -k1,18289:26228918,40320346:198487 -k1,18289:28623517,40320346:198488 -k1,18289:29473432,40320346:198487 -k1,18289:30419686,40320346:198488 -k1,18289:32583029,40320346:0 -) -(1,18290:6630773,41161834:25952256,513147,126483 -k1,18289:8061267,41161834:163028 -k1,18289:11994581,41161834:163028 -k1,18289:14507730,41161834:163028 -k1,18289:15480127,41161834:163027 -k1,18289:16662240,41161834:163028 -k1,18289:17620875,41161834:163028 -k1,18289:19793892,41161834:163028 -k1,18289:20976005,41161834:163028 -k1,18289:22238727,41161834:163028 -k1,18289:23053183,41161834:163028 -(1,18289:23053183,41161834:0,452978,115847 -r1,18302:24818296,41161834:1765113,568825,115847 -k1,18289:23053183,41161834:-1765113 -) -(1,18289:23053183,41161834:1765113,452978,115847 -k1,18289:23053183,41161834:3277 -h1,18289:24815019,41161834:0,411205,112570 -) -k1,18289:25154993,41161834:163027 -k1,18289:26514708,41161834:163028 -k1,18289:28331209,41161834:163028 -k1,18289:31478747,41161834:163028 -k1,18289:32583029,41161834:0 -) -(1,18290:6630773,42003322:25952256,513147,134348 -g1,18289:7577768,42003322 -g1,18289:9290223,42003322 -g1,18289:10437103,42003322 -g1,18289:12910431,42003322 -g1,18289:16084339,42003322 -g1,18289:18479679,42003322 -g1,18289:19745179,42003322 -g1,18289:22879110,42003322 -k1,18290:32583029,42003322:7144738 -g1,18290:32583029,42003322 -) -v1,18292:6630773,43193788:0,393216,0 -(1,18298:6630773,44841240:25952256,2040668,196608 -g1,18298:6630773,44841240 -g1,18298:6630773,44841240 -g1,18298:6434165,44841240 -(1,18298:6434165,44841240:0,2040668,196608 -r1,18302:32779637,44841240:26345472,2237276,196608 -k1,18298:6434165,44841240:-26345472 -) -(1,18298:6434165,44841240:26345472,2040668,196608 -[1,18298:6630773,44841240:25952256,1844060,0 -(1,18294:6630773,43401406:25952256,404226,107478 -(1,18293:6630773,43401406:0,0,0 -g1,18293:6630773,43401406 -g1,18293:6630773,43401406 -g1,18293:6303093,43401406 -(1,18293:6303093,43401406:0,0,0 -) -g1,18293:6630773,43401406 -) -k1,18294:6630773,43401406:0 -g1,18294:11689104,43401406 -g1,18294:13902124,43401406 -g1,18294:14850562,43401406 -g1,18294:16747436,43401406 -g1,18294:17379728,43401406 -g1,18294:22438059,43401406 -g1,18294:23386497,43401406 -g1,18294:24967226,43401406 -g1,18294:26231809,43401406 -g1,18294:26864101,43401406 -g1,18294:28760975,43401406 -h1,18294:29077121,43401406:0,0,0 -k1,18294:32583029,43401406:3505908 -g1,18294:32583029,43401406 -) -(1,18295:6630773,44067584:25952256,404226,107478 -h1,18295:6630773,44067584:0,0,0 -g1,18295:6946919,44067584 -g1,18295:7263065,44067584 -g1,18295:12321396,44067584 -g1,18295:12953688,44067584 -g1,18295:14850563,44067584 -g1,18295:16747437,44067584 -g1,18295:17379729,44067584 -g1,18295:19276604,44067584 -g1,18295:20857333,44067584 -g1,18295:21489625,44067584 -g1,18295:22438063,44067584 -h1,18295:22754209,44067584:0,0,0 -k1,18295:32583029,44067584:9828820 -g1,18295:32583029,44067584 -) -(1,18296:6630773,44733762:25952256,404226,107478 -h1,18296:6630773,44733762:0,0,0 -g1,18296:6946919,44733762 -g1,18296:7263065,44733762 -k1,18296:7263065,44733762:0 -h1,18296:11056813,44733762:0,0,0 -k1,18296:32583029,44733762:21526216 -g1,18296:32583029,44733762 -) -] -) -g1,18298:32583029,44841240 -g1,18298:6630773,44841240 -g1,18298:6630773,44841240 -g1,18298:32583029,44841240 -g1,18298:32583029,44841240 -) -h1,18298:6630773,45037848:0,0,0 -] -(1,18302:32583029,45706769:0,0,0 -g1,18302:32583029,45706769 -) -) -] -(1,18302:6630773,47279633:25952256,0,0 -h1,18302:6630773,47279633:25952256,0,0 -) -] -(1,18302:4262630,4025873:0,0,0 -[1,18302:-473656,4025873:0,0,0 -(1,18302:-473656,-710413:0,0,0 -(1,18302:-473656,-710413:0,0,0 -g1,18302:-473656,-710413 -) -g1,18302:-473656,-710413 -) -] -) -] -!23366 -}322 +g1,18423:6630773,4812305 +k1,18423:21350816,4812305:13524666 +g1,18423:21999622,4812305 +g1,18423:25611966,4812305 +g1,18423:28956923,4812305 +g1,18423:29772190,4812305 +) +) +] +[1,18423:6630773,45706769:25952256,40108032,0 +(1,18423:6630773,45706769:25952256,40108032,0 +(1,18423:6630773,45706769:0,0,0 +g1,18423:6630773,45706769 +) +[1,18423:6630773,45706769:25952256,40108032,0 +(1,18373:6630773,6254097:25952256,564462,139132 +(1,18373:6630773,6254097:2450326,534184,12975 +g1,18373:6630773,6254097 +g1,18373:9081099,6254097 +) +g1,18373:11747694,6254097 +g1,18373:14946310,6254097 +k1,18373:32583029,6254097:16487611 +g1,18373:32583029,6254097 +) +(1,18378:6630773,7512393:25952256,513147,134348 +k1,18377:9683943,7512393:224637 +k1,18377:12242317,7512393:224637 +k1,18377:14009672,7512393:224637 +k1,18377:14917195,7512393:224638 +k1,18377:16595421,7512393:224637 +k1,18377:19676772,7512393:224637 +k1,18377:20920494,7512393:224637 +k1,18377:23669578,7512393:224637 +k1,18377:24553507,7512393:224637 +k1,18377:26647232,7512393:224638 +k1,18377:28261232,7512393:224637 +k1,18377:30687879,7512393:224637 +k1,18377:31563944,7512393:224637 +k1,18377:32583029,7512393:0 +) +(1,18378:6630773,8377473:25952256,513147,134348 +k1,18377:9374241,8377473:219021 +k1,18377:10209301,8377473:219022 +k1,18377:13933187,8377473:219021 +k1,18377:17959195,8377473:219022 +k1,18377:20754436,8377473:219021 +k1,18377:22435546,8377473:219002 +k1,18377:25213094,8377473:219022 +(1,18377:25213094,8377473:0,459977,122846 +r1,18423:28385054,8377473:3171960,582823,122846 +k1,18377:25213094,8377473:-3171960 +) +(1,18377:25213094,8377473:3171960,459977,122846 +k1,18377:25213094,8377473:3277 +h1,18377:28381777,8377473:0,411205,112570 +) +k1,18377:28604075,8377473:219021 +k1,18377:30014542,8377473:219022 +k1,18377:31021961,8377473:219021 +k1,18378:32583029,8377473:0 +) +(1,18378:6630773,9242553:25952256,505283,126483 +k1,18377:9541027,9242553:204272 +(1,18377:9541027,9242553:0,459977,122846 +r1,18423:14471547,9242553:4930520,582823,122846 +k1,18377:9541027,9242553:-4930520 +) +(1,18377:9541027,9242553:4930520,459977,122846 +k1,18377:9541027,9242553:3277 +h1,18377:14468270,9242553:0,411205,112570 +) +k1,18377:14849488,9242553:204271 +(1,18377:14849488,9242553:0,459977,122846 +r1,18423:20131719,9242553:5282231,582823,122846 +k1,18377:14849488,9242553:-5282231 +) +(1,18377:14849488,9242553:5282231,459977,122846 +k1,18377:14849488,9242553:3277 +h1,18377:20128442,9242553:0,411205,112570 +) +k1,18377:20509661,9242553:204272 +k1,18377:21905378,9242553:204272 +(1,18377:21905378,9242553:0,459977,115847 +r1,18423:25077338,9242553:3171960,575824,115847 +k1,18377:21905378,9242553:-3171960 +) +(1,18377:21905378,9242553:3171960,459977,115847 +k1,18377:21905378,9242553:3277 +h1,18377:25074061,9242553:0,411205,112570 +) +k1,18377:25455279,9242553:204271 +k1,18377:27040395,9242553:204272 +k1,18377:29290700,9242553:204271 +k1,18377:29953069,9242553:204272 +k1,18377:32583029,9242553:0 +) +(1,18378:6630773,10107633:25952256,513147,134348 +k1,18377:7529574,10107633:247373 +k1,18377:10072018,10107633:247373 +k1,18377:11708754,10107633:247373 +k1,18377:12765497,10107633:247373 +k1,18377:14913414,10107633:247373 +k1,18377:16108438,10107633:247373 +k1,18377:19190898,10107633:247373 +k1,18377:21173664,10107633:247373 +k1,18377:24183380,10107633:247373 +k1,18377:25271580,10107633:247373 +k1,18377:27529598,10107633:247373 +k1,18377:28724622,10107633:247373 +k1,18377:31734338,10107633:247373 +k1,18378:32583029,10107633:0 +) +(1,18378:6630773,10972713:25952256,513147,134348 +k1,18377:8686000,10972713:166479 +k1,18377:11071529,10972713:166480 +k1,18377:14571169,10972713:166479 +(1,18377:14571169,10972713:0,459977,115847 +r1,18423:18094841,10972713:3523672,575824,115847 +k1,18377:14571169,10972713:-3523672 +) +(1,18377:14571169,10972713:3523672,459977,115847 +k1,18377:14571169,10972713:3277 +h1,18377:18091564,10972713:0,411205,112570 +) +k1,18377:18261320,10972713:166479 +k1,18377:19532081,10972713:166479 +k1,18377:20446327,10972713:166480 +k1,18377:22126032,10972713:166479 +k1,18377:22943939,10972713:166479 +k1,18377:24931008,10972713:166479 +k1,18377:27859831,10972713:166480 +k1,18377:31635378,10972713:166479 +k1,18377:32583029,10972713:0 +) +(1,18378:6630773,11837793:25952256,505283,126483 +k1,18377:8695693,11837793:164376 +k1,18377:10056757,11837793:164377 +k1,18377:13008379,11837793:164376 +k1,18377:14685982,11837793:164377 +k1,18377:15381855,11837793:164376 +k1,18377:17414007,11837793:164376 +(1,18377:17414007,11837793:0,414482,122846 +r1,18423:20234256,11837793:2820249,537328,122846 +k1,18377:17414007,11837793:-2820249 +) +(1,18377:17414007,11837793:2820249,414482,122846 +k1,18377:17414007,11837793:3277 +h1,18377:20230979,11837793:0,411205,112570 +) +k1,18377:20398633,11837793:164377 +k1,18377:21754454,11837793:164376 +k1,18377:24612360,11837793:164376 +k1,18377:25428165,11837793:164377 +k1,18377:26358657,11837793:164376 +k1,18377:27542119,11837793:164377 +k1,18377:29408465,11837793:164376 +k1,18377:32583029,11837793:0 +) +(1,18378:6630773,12702873:25952256,513147,134348 +k1,18377:7666067,12702873:166942 +k1,18377:9308223,12702873:166941 +k1,18377:10914991,12702873:166942 +k1,18377:12574842,12702873:166941 +k1,18377:14245835,12702873:166942 +k1,18377:15431862,12702873:166942 +k1,18377:17609448,12702873:166941 +k1,18377:18427818,12702873:166942 +k1,18377:19342525,12702873:166941 +k1,18377:22094862,12702873:166942 +k1,18377:23253364,12702873:166942 +k1,18377:24079597,12702873:166941 +k1,18377:25801708,12702873:166942 +(1,18377:25801708,12702873:0,459977,115847 +r1,18423:26863397,12702873:1061689,575824,115847 +k1,18377:25801708,12702873:-1061689 +) +(1,18377:25801708,12702873:1061689,459977,115847 +k1,18377:25801708,12702873:3277 +h1,18377:26860120,12702873:0,411205,112570 +) +k1,18377:27030338,12702873:166941 +k1,18377:30559277,12702873:166942 +k1,18377:32583029,12702873:0 +) +(1,18378:6630773,13567953:25952256,513147,126483 +k1,18377:9451574,13567953:229507 +k1,18377:11070444,13567953:229507 +k1,18377:12693902,13567953:229507 +k1,18377:15594656,13567953:229507 +k1,18377:19925407,13567953:229508 +k1,18377:24354461,13567953:229507 +k1,18377:25243260,13567953:229507 +k1,18377:27597444,13567953:229507 +k1,18377:30432662,13567953:229507 +k1,18377:32051532,13567953:229507 +k1,18377:32583029,13567953:0 +) +(1,18378:6630773,14433033:25952256,513147,134348 +k1,18377:10111063,14433033:185795 +k1,18377:11058385,14433033:185794 +k1,18377:13824332,14433033:185795 +k1,18377:15124893,14433033:185795 +k1,18377:16691531,14433033:185794 +k1,18377:19187470,14433033:185795 +k1,18377:21864943,14433033:185794 +k1,18377:23069823,14433033:185795 +k1,18377:25082106,14433033:185795 +k1,18377:25927192,14433033:185794 +k1,18377:27316228,14433033:185795 +k1,18377:29257733,14433033:185795 +k1,18377:30168355,14433033:185794 +k1,18377:30710010,14433033:185795 +k1,18377:32583029,14433033:0 +) +(1,18378:6630773,15298113:25952256,513147,126483 +g1,18377:8021447,15298113 +g1,18377:9574650,15298113 +g1,18377:11898556,15298113 +g1,18377:14759202,15298113 +k1,18378:32583029,15298113:15334770 +g1,18378:32583029,15298113 +) +v1,18380:6630773,15982968:0,393216,0 +(1,18386:6630773,17699967:25952256,2110215,196608 +g1,18386:6630773,17699967 +g1,18386:6630773,17699967 +g1,18386:6434165,17699967 +(1,18386:6434165,17699967:0,2110215,196608 +r1,18423:32779637,17699967:26345472,2306823,196608 +k1,18386:6434165,17699967:-26345472 +) +(1,18386:6434165,17699967:26345472,2110215,196608 +[1,18386:6630773,17699967:25952256,1913607,0 +(1,18382:6630773,16217405:25952256,431045,112852 +(1,18381:6630773,16217405:0,0,0 +g1,18381:6630773,16217405 +g1,18381:6630773,16217405 +g1,18381:6303093,16217405 +(1,18381:6303093,16217405:0,0,0 +) +g1,18381:6630773,16217405 +) +g1,18382:7626635,16217405 +g1,18382:8622497,16217405 +g1,18382:21900655,16217405 +g1,18382:24556287,16217405 +g1,18382:25220195,16217405 +g1,18382:27543873,16217405 +g1,18382:29535597,16217405 +g1,18382:30199505,16217405 +h1,18382:31859275,16217405:0,0,0 +k1,18382:32583029,16217405:723754 +g1,18382:32583029,16217405 +) +(1,18383:6630773,16902260:25952256,424439,112852 +h1,18383:6630773,16902260:0,0,0 +g1,18383:10282267,16902260 +h1,18383:10614221,16902260:0,0,0 +k1,18383:32583029,16902260:21968808 +g1,18383:32583029,16902260 +) +(1,18384:6630773,17587115:25952256,431045,112852 +h1,18384:6630773,17587115:0,0,0 +g1,18384:6962727,17587115 +g1,18384:7294681,17587115 +g1,18384:12937899,17587115 +g1,18384:13601807,17587115 +g1,18384:15925485,17587115 +g1,18384:17917209,17587115 +g1,18384:18581117,17587115 +h1,18384:21568702,17587115:0,0,0 +k1,18384:32583029,17587115:11014327 +g1,18384:32583029,17587115 +) +] +) +g1,18386:32583029,17699967 +g1,18386:6630773,17699967 +g1,18386:6630773,17699967 +g1,18386:32583029,17699967 +g1,18386:32583029,17699967 +) +h1,18386:6630773,17896575:0,0,0 +(1,18389:6630773,27045777:25952256,9083666,0 +k1,18389:10523651,27045777:3892878 +h1,18388:10523651,27045777:0,0,0 +(1,18388:10523651,27045777:18166500,9083666,0 +(1,18388:10523651,27045777:18167376,9083688,0 +(1,18388:10523651,27045777:18167376,9083688,0 +(1,18388:10523651,27045777:0,9083688,0 +(1,18388:10523651,27045777:0,14208860,0 +(1,18388:10523651,27045777:28417720,14208860,0 +) +k1,18388:10523651,27045777:-28417720 +) +) +g1,18388:28691027,27045777 +) +) +) +g1,18389:28690151,27045777 +k1,18389:32583029,27045777:3892878 +) +(1,18397:6630773,29162595:25952256,534184,12975 +(1,18397:6630773,29162595:2450326,534184,12975 +g1,18397:6630773,29162595 +g1,18397:9081099,29162595 +) +k1,18397:32583028,29162595:21863332 +g1,18397:32583028,29162595 +) +(1,18402:6630773,30420891:25952256,505283,122846 +k1,18401:7847536,30420891:263214 +k1,18401:9215032,30420891:263214 +k1,18401:10570732,30420891:263215 +(1,18401:10570732,30420891:0,452978,122846 +r1,18423:14446116,30420891:3875384,575824,122846 +k1,18401:10570732,30420891:-3875384 +) +(1,18401:10570732,30420891:3875384,452978,122846 +k1,18401:10570732,30420891:3277 +h1,18401:14442839,30420891:0,411205,112570 +) +k1,18401:14709330,30420891:263214 +k1,18401:15655429,30420891:263214 +(1,18401:15655429,30420891:0,452978,122846 +r1,18423:19882525,30420891:4227096,575824,122846 +k1,18401:15655429,30420891:-4227096 +) +(1,18401:15655429,30420891:4227096,452978,122846 +k1,18401:15655429,30420891:3277 +h1,18401:19879248,30420891:0,411205,112570 +) +k1,18401:20145739,30420891:263214 +k1,18401:21060381,30420891:263214 +k1,18401:22520938,30420891:263214 +k1,18401:24010332,30420891:263215 +k1,18401:26117729,30420891:263214 +k1,18401:27032371,30420891:263214 +k1,18401:31541007,30420891:263214 +k1,18402:32583029,30420891:0 +) +(1,18402:6630773,31285971:25952256,505283,126483 +(1,18401:6630773,31285971:0,452978,122846 +r1,18423:10506157,31285971:3875384,575824,122846 +k1,18401:6630773,31285971:-3875384 +) +(1,18401:6630773,31285971:3875384,452978,122846 +k1,18401:6630773,31285971:3277 +h1,18401:10502880,31285971:0,411205,112570 +) +k1,18401:10701528,31285971:195371 +k1,18401:12088345,31285971:195372 +(1,18401:12088345,31285971:0,452978,122846 +r1,18423:16315441,31285971:4227096,575824,122846 +k1,18401:12088345,31285971:-4227096 +) +(1,18401:12088345,31285971:4227096,452978,122846 +k1,18401:12088345,31285971:3277 +h1,18401:16312164,31285971:0,411205,112570 +) +k1,18401:16684482,31285971:195371 +k1,18401:17898939,31285971:195372 +k1,18401:20938573,31285971:195371 +(1,18401:20938573,31285971:0,452978,115847 +r1,18423:22703686,31285971:1765113,568825,115847 +k1,18401:20938573,31285971:-1765113 +) +(1,18401:20938573,31285971:1765113,452978,115847 +k1,18401:20938573,31285971:3277 +h1,18401:22700409,31285971:0,411205,112570 +) +k1,18401:22899058,31285971:195372 +k1,18401:25854805,31285971:195371 +k1,18401:27069262,31285971:195372 +k1,18401:28490812,31285971:195371 +k1,18401:29337612,31285971:195372 +k1,18401:30280749,31285971:195371 +k1,18401:32583029,31285971:0 +) +(1,18402:6630773,32151051:25952256,513147,126483 +k1,18401:8043365,32151051:221147 +k1,18401:9283597,32151051:221147 +k1,18401:11225720,32151051:221148 +k1,18401:14621431,32151051:221147 +(1,18401:14621431,32151051:0,414482,115847 +r1,18423:14979697,32151051:358266,530329,115847 +k1,18401:14621431,32151051:-358266 +) +(1,18401:14621431,32151051:358266,414482,115847 +k1,18401:14621431,32151051:3277 +h1,18401:14976420,32151051:0,411205,112570 +) +k1,18401:15200844,32151051:221147 +k1,18401:16613436,32151051:221147 +(1,18401:16613436,32151051:0,414482,115847 +r1,18423:16971702,32151051:358266,530329,115847 +k1,18401:16613436,32151051:-358266 +) +(1,18401:16613436,32151051:358266,414482,115847 +k1,18401:16613436,32151051:3277 +h1,18401:16968425,32151051:0,411205,112570 +) +k1,18401:17366519,32151051:221147 +k1,18401:18606752,32151051:221148 +k1,18401:21384458,32151051:221147 +k1,18401:22264897,32151051:221147 +k1,18401:23505129,32151051:221147 +k1,18401:25744130,32151051:221147 +k1,18401:26783167,32151051:221148 +k1,18401:28161024,32151051:221147 +k1,18401:30338421,32151051:221147 +k1,18401:32583029,32151051:0 +) +(1,18402:6630773,33016131:25952256,513147,115847 +g1,18401:7849087,33016131 +(1,18401:7849087,33016131:0,452978,115847 +r1,18423:9614200,33016131:1765113,568825,115847 +k1,18401:7849087,33016131:-1765113 +) +(1,18401:7849087,33016131:1765113,452978,115847 +k1,18401:7849087,33016131:3277 +h1,18401:9610923,33016131:0,411205,112570 +) +g1,18401:9813429,33016131 +g1,18401:11204103,33016131 +(1,18401:11204103,33016131:0,452978,115847 +r1,18423:12617504,33016131:1413401,568825,115847 +k1,18401:11204103,33016131:-1413401 +) +(1,18401:11204103,33016131:1413401,452978,115847 +k1,18401:11204103,33016131:3277 +h1,18401:12614227,33016131:0,411205,112570 +) +g1,18401:12816733,33016131 +g1,18401:16190526,33016131 +g1,18401:17494037,33016131 +g1,18401:18979082,33016131 +g1,18401:19926077,33016131 +g1,18401:21638532,33016131 +g1,18401:22785412,33016131 +g1,18401:24003726,33016131 +k1,18402:32583029,33016131:7179454 +g1,18402:32583029,33016131 +) +v1,18404:6630773,33700986:0,393216,0 +(1,18414:6630773,38150799:25952256,4843029,196608 +g1,18414:6630773,38150799 +g1,18414:6630773,38150799 +g1,18414:6434165,38150799 +(1,18414:6434165,38150799:0,4843029,196608 +r1,18423:32779637,38150799:26345472,5039637,196608 +k1,18414:6434165,38150799:-26345472 +) +(1,18414:6434165,38150799:26345472,4843029,196608 +[1,18414:6630773,38150799:25952256,4646421,0 +(1,18406:6630773,33928817:25952256,424439,112852 +(1,18405:6630773,33928817:0,0,0 +g1,18405:6630773,33928817 +g1,18405:6630773,33928817 +g1,18405:6303093,33928817 +(1,18405:6303093,33928817:0,0,0 +) +g1,18405:6630773,33928817 +) +k1,18406:6630773,33928817:0 +g1,18406:10614221,33928817 +g1,18406:11278129,33928817 +g1,18406:13933761,33928817 +g1,18406:15925485,33928817 +g1,18406:16589393,33928817 +g1,18406:18581117,33928817 +g1,18406:19245025,33928817 +g1,18406:19908933,33928817 +k1,18406:19908933,33928817:0 +h1,18406:21236749,33928817:0,0,0 +k1,18406:32583029,33928817:11346280 +g1,18406:32583029,33928817 +) +(1,18407:6630773,34613672:25952256,431045,106246 +h1,18407:6630773,34613672:0,0,0 +g1,18407:6962727,34613672 +g1,18407:7294681,34613672 +g1,18407:7626635,34613672 +g1,18407:7958589,34613672 +g1,18407:8290543,34613672 +g1,18407:8622497,34613672 +g1,18407:8954451,34613672 +g1,18407:9286405,34613672 +g1,18407:9618359,34613672 +g1,18407:9950313,34613672 +g1,18407:10282267,34613672 +g1,18407:10614221,34613672 +g1,18407:10946175,34613672 +g1,18407:11278129,34613672 +g1,18407:11610083,34613672 +g1,18407:11942037,34613672 +g1,18407:12273991,34613672 +g1,18407:12605945,34613672 +g1,18407:12937899,34613672 +g1,18407:13269853,34613672 +g1,18407:13601807,34613672 +g1,18407:13933761,34613672 +g1,18407:14265715,34613672 +g1,18407:14597669,34613672 +g1,18407:14929623,34613672 +g1,18407:15261577,34613672 +g1,18407:17253301,34613672 +g1,18407:17917209,34613672 +k1,18407:17917209,34613672:0 +h1,18407:21900657,34613672:0,0,0 +k1,18407:32583029,34613672:10682372 +g1,18407:32583029,34613672 +) +(1,18408:6630773,35298527:25952256,424439,86428 +h1,18408:6630773,35298527:0,0,0 +g1,18408:6962727,35298527 +g1,18408:7294681,35298527 +g1,18408:7626635,35298527 +g1,18408:7958589,35298527 +g1,18408:8290543,35298527 +g1,18408:8622497,35298527 +g1,18408:8954451,35298527 +g1,18408:9286405,35298527 +g1,18408:9618359,35298527 +g1,18408:9950313,35298527 +g1,18408:10282267,35298527 +g1,18408:10614221,35298527 +g1,18408:10946175,35298527 +g1,18408:11278129,35298527 +g1,18408:11610083,35298527 +g1,18408:11942037,35298527 +g1,18408:12273991,35298527 +g1,18408:12605945,35298527 +g1,18408:12937899,35298527 +g1,18408:13269853,35298527 +g1,18408:13601807,35298527 +g1,18408:13933761,35298527 +g1,18408:14265715,35298527 +g1,18408:14597669,35298527 +g1,18408:14929623,35298527 +g1,18408:15261577,35298527 +g1,18408:16921347,35298527 +g1,18408:17585255,35298527 +k1,18408:17585255,35298527:0 +h1,18408:18581117,35298527:0,0,0 +k1,18408:32583029,35298527:14001912 +g1,18408:32583029,35298527 +) +(1,18409:6630773,35983382:25952256,424439,106246 +h1,18409:6630773,35983382:0,0,0 +g1,18409:6962727,35983382 +g1,18409:7294681,35983382 +g1,18409:7626635,35983382 +g1,18409:7958589,35983382 +g1,18409:8290543,35983382 +g1,18409:8622497,35983382 +g1,18409:8954451,35983382 +g1,18409:9286405,35983382 +g1,18409:9618359,35983382 +g1,18409:9950313,35983382 +g1,18409:10282267,35983382 +g1,18409:10614221,35983382 +g1,18409:10946175,35983382 +g1,18409:11278129,35983382 +g1,18409:11610083,35983382 +g1,18409:11942037,35983382 +g1,18409:12273991,35983382 +g1,18409:12605945,35983382 +g1,18409:12937899,35983382 +g1,18409:13269853,35983382 +g1,18409:13601807,35983382 +g1,18409:13933761,35983382 +g1,18409:14265715,35983382 +g1,18409:14597669,35983382 +g1,18409:14929623,35983382 +g1,18409:15261577,35983382 +g1,18409:17253301,35983382 +g1,18409:17917209,35983382 +g1,18409:19908933,35983382 +h1,18409:20240887,35983382:0,0,0 +k1,18409:32583029,35983382:12342142 +g1,18409:32583029,35983382 +) +(1,18410:6630773,36668237:25952256,424439,79822 +h1,18410:6630773,36668237:0,0,0 +g1,18410:6962727,36668237 +g1,18410:7294681,36668237 +g1,18410:11610082,36668237 +h1,18410:11942036,36668237:0,0,0 +k1,18410:32583028,36668237:20640992 +g1,18410:32583028,36668237 +) +(1,18411:6630773,37353092:25952256,424439,112852 +h1,18411:6630773,37353092:0,0,0 +g1,18411:6962727,37353092 +g1,18411:7294681,37353092 +g1,18411:11610082,37353092 +h1,18411:11942036,37353092:0,0,0 +k1,18411:32583028,37353092:20640992 +g1,18411:32583028,37353092 +) +(1,18412:6630773,38037947:25952256,424439,112852 +h1,18412:6630773,38037947:0,0,0 +g1,18412:6962727,38037947 +g1,18412:7294681,38037947 +g1,18412:12605944,38037947 +g1,18412:13269852,38037947 +g1,18412:17253299,38037947 +g1,18412:18913069,38037947 +g1,18412:19576977,38037947 +h1,18412:20240885,38037947:0,0,0 +k1,18412:32583029,38037947:12342144 +g1,18412:32583029,38037947 +) +] +) +g1,18414:32583029,38150799 +g1,18414:6630773,38150799 +g1,18414:6630773,38150799 +g1,18414:32583029,38150799 +g1,18414:32583029,38150799 +) +h1,18414:6630773,38347407:0,0,0 +] +(1,18423:32583029,45706769:0,0,0 +g1,18423:32583029,45706769 +) +) +] +(1,18423:6630773,47279633:25952256,0,0 +h1,18423:6630773,47279633:25952256,0,0 +) +] +(1,18423:4262630,4025873:0,0,0 +[1,18423:-473656,4025873:0,0,0 +(1,18423:-473656,-710413:0,0,0 +(1,18423:-473656,-710413:0,0,0 +g1,18423:-473656,-710413 +) +g1,18423:-473656,-710413 +) +] +) +] +!21624 +}305 +Input:2810:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2811:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2812:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2813:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2814:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2815:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2816:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2817:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2818:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2819:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2820:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2821:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2822:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -314948,878 +312639,918 @@ Input:2827:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConso Input:2828:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2829:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2830:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1046 -{323 -[1,18345:4262630,47279633:28320399,43253760,0 -(1,18345:4262630,4025873:0,0,0 -[1,18345:-473656,4025873:0,0,0 -(1,18345:-473656,-710413:0,0,0 -(1,18345:-473656,-644877:0,0,0 -k1,18345:-473656,-644877:-65536 +Input:2831:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2832:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2833:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2834:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!2362 +{306 +[1,18434:4262630,47279633:28320399,43253760,0 +(1,18434:4262630,4025873:0,0,0 +[1,18434:-473656,4025873:0,0,0 +(1,18434:-473656,-710413:0,0,0 +(1,18434:-473656,-644877:0,0,0 +k1,18434:-473656,-644877:-65536 ) -(1,18345:-473656,4736287:0,0,0 -k1,18345:-473656,4736287:5209943 +(1,18434:-473656,4736287:0,0,0 +k1,18434:-473656,4736287:5209943 ) -g1,18345:-473656,-710413 +g1,18434:-473656,-710413 ) ] ) -[1,18345:6630773,47279633:25952256,43253760,0 -[1,18345:6630773,4812305:25952256,786432,0 -(1,18345:6630773,4812305:25952256,513147,126483 -(1,18345:6630773,4812305:25952256,513147,126483 -g1,18345:3078558,4812305 -[1,18345:3078558,4812305:0,0,0 -(1,18345:3078558,2439708:0,1703936,0 -k1,18345:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,18345:2537886,2439708:1179648,16384,0 +[1,18434:6630773,47279633:25952256,43253760,0 +[1,18434:6630773,4812305:25952256,786432,0 +(1,18434:6630773,4812305:25952256,485622,11795 +(1,18434:6630773,4812305:25952256,485622,11795 +g1,18434:3078558,4812305 +[1,18434:3078558,4812305:0,0,0 +(1,18434:3078558,2439708:0,1703936,0 +k1,18434:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,18434:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,18345:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,18434:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,18345:3078558,4812305:0,0,0 -(1,18345:3078558,2439708:0,1703936,0 -g1,18345:29030814,2439708 -g1,18345:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,18345:36151628,1915420:16384,1179648,0 +[1,18434:3078558,4812305:0,0,0 +(1,18434:3078558,2439708:0,1703936,0 +g1,18434:29030814,2439708 +g1,18434:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,18434:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,18345:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,18434:37855564,2439708:1179648,16384,0 ) ) -k1,18345:3078556,2439708:-34777008 +k1,18434:3078556,2439708:-34777008 ) ] -[1,18345:3078558,4812305:0,0,0 -(1,18345:3078558,49800853:0,16384,2228224 -k1,18345:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,18345:2537886,49800853:1179648,16384,0 +[1,18434:3078558,4812305:0,0,0 +(1,18434:3078558,49800853:0,16384,2228224 +k1,18434:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,18434:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,18345:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,18434:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,18345:3078558,4812305:0,0,0 -(1,18345:3078558,49800853:0,16384,2228224 -g1,18345:29030814,49800853 -g1,18345:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,18345:36151628,51504789:16384,1179648,0 +[1,18434:3078558,4812305:0,0,0 +(1,18434:3078558,49800853:0,16384,2228224 +g1,18434:29030814,49800853 +g1,18434:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,18434:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,18345:37855564,49800853:1179648,16384,0 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,18434:37855564,49800853:1179648,16384,0 ) ) -k1,18345:3078556,49800853:-34777008 +k1,18434:3078556,49800853:-34777008 ) ] -g1,18345:6630773,4812305 -k1,18345:21350816,4812305:13524666 -g1,18345:21999622,4812305 -g1,18345:25611966,4812305 -g1,18345:28956923,4812305 -g1,18345:29772190,4812305 -) -) -] -[1,18345:6630773,45706769:25952256,40108032,0 -(1,18345:6630773,45706769:25952256,40108032,0 -(1,18345:6630773,45706769:0,0,0 -g1,18345:6630773,45706769 -) -[1,18345:6630773,45706769:25952256,40108032,0 -(1,18302:6630773,6254097:25952256,513147,126483 -h1,18301:6630773,6254097:983040,0,0 -k1,18301:8660504,6254097:228802 -(1,18301:8660504,6254097:0,452978,122846 -r1,18345:12887600,6254097:4227096,575824,122846 -k1,18301:8660504,6254097:-4227096 -) -(1,18301:8660504,6254097:4227096,452978,122846 -k1,18301:8660504,6254097:3277 -h1,18301:12884323,6254097:0,411205,112570 -) -k1,18301:13116403,6254097:228803 -k1,18301:15178902,6254097:228802 -k1,18301:16426790,6254097:228803 -k1,18301:18309065,6254097:228802 -k1,18301:22148901,6254097:228802 -k1,18301:23063866,6254097:228803 -(1,18301:23063866,6254097:0,452978,122846 -r1,18345:26939250,6254097:3875384,575824,122846 -k1,18301:23063866,6254097:-3875384 -) -(1,18301:23063866,6254097:3875384,452978,122846 -k1,18301:23063866,6254097:3277 -h1,18301:26935973,6254097:0,411205,112570 -) -k1,18301:27168052,6254097:228802 -k1,18301:29467793,6254097:228803 -k1,18301:30644246,6254097:228802 -(1,18301:30644246,6254097:0,452978,122846 -r1,18345:32409359,6254097:1765113,575824,122846 -k1,18301:30644246,6254097:-1765113 -) -(1,18301:30644246,6254097:1765113,452978,122846 -k1,18301:30644246,6254097:3277 -h1,18301:32406082,6254097:0,411205,112570 -) -k1,18301:32583029,6254097:0 -) -(1,18302:6630773,7095585:25952256,513147,126483 -k1,18301:7639020,7095585:139895 -k1,18301:9811842,7095585:139895 -k1,18301:12621019,7095585:139896 -k1,18301:14629345,7095585:139895 -k1,18301:16144841,7095585:139895 -k1,18301:17303821,7095585:139895 -k1,18301:20670709,7095585:139895 -k1,18301:24421639,7095585:139896 -k1,18301:27742652,7095585:139895 -k1,18301:28533975,7095585:139895 -(1,18301:28533975,7095585:0,452978,122846 -r1,18345:32409359,7095585:3875384,575824,122846 -k1,18301:28533975,7095585:-3875384 -) -(1,18301:28533975,7095585:3875384,452978,122846 -k1,18301:28533975,7095585:3277 -h1,18301:32406082,7095585:0,411205,112570 -) -k1,18301:32583029,7095585:0 -) -(1,18302:6630773,7937073:25952256,513147,126483 -k1,18301:7762322,7937073:178000 -k1,18301:9277257,7937073:178001 -k1,18301:11003873,7937073:178000 -k1,18301:11833301,7937073:178000 -k1,18301:13464890,7937073:178000 -k1,18301:14661976,7937073:178001 -k1,18301:17105556,7937073:178000 -k1,18301:19098248,7937073:178000 -k1,18301:19935541,7937073:178001 -k1,18301:21132626,7937073:178000 -k1,18301:23450377,7937073:178000 -k1,18301:24796885,7937073:178001 -k1,18301:25657770,7937073:178000 -k1,18301:26854855,7937073:178000 -k1,18301:28648973,7937073:178000 -k1,18301:30340200,7937073:178001 -k1,18301:31169628,7937073:178000 -(1,18301:31169628,7937073:0,459977,115847 -r1,18345:32583029,7937073:1413401,575824,115847 -k1,18301:31169628,7937073:-1413401 -) -(1,18301:31169628,7937073:1413401,459977,115847 -k1,18301:31169628,7937073:3277 -h1,18301:32579752,7937073:0,411205,112570 -) -k1,18301:32583029,7937073:0 -) -(1,18302:6630773,8778561:25952256,513147,134348 -k1,18301:7816420,8778561:166562 -k1,18301:11080213,8778561:166562 -k1,18301:11929661,8778561:166563 -k1,18301:12747651,8778561:166562 -k1,18301:15154889,8778561:166562 -k1,18301:16340536,8778561:166562 -k1,18301:20463507,8778561:166563 -k1,18301:21289361,8778561:166562 -k1,18301:22475008,8778561:166562 -k1,18301:25212547,8778561:166562 -k1,18301:26208140,8778561:166563 -k1,18301:29257631,8778561:166562 -k1,18301:30443278,8778561:166562 -k1,18301:32583029,8778561:0 -) -(1,18302:6630773,9620049:25952256,505283,126483 -k1,18301:8257954,9620049:285004 -k1,18301:9635443,9620049:285004 -(1,18301:9635443,9620049:0,452978,115847 -r1,18345:14565963,9620049:4930520,568825,115847 -k1,18301:9635443,9620049:-4930520 -) -(1,18301:9635443,9620049:4930520,452978,115847 -g1,18301:13507550,9620049 -g1,18301:14210974,9620049 -h1,18301:14562686,9620049:0,411205,112570 -) -k1,18301:15024637,9620049:285004 -k1,18301:17498544,9620049:285004 -k1,18301:21139648,9620049:285005 -k1,18301:21956149,9620049:285004 -k1,18301:25502224,9620049:285004 -k1,18301:26548756,9620049:285004 -k1,18301:30114492,9620049:285004 -(1,18301:30114492,9620049:0,452978,115847 -r1,18345:32583029,9620049:2468537,568825,115847 -k1,18301:30114492,9620049:-2468537 -) -(1,18301:30114492,9620049:2468537,452978,115847 -k1,18301:30114492,9620049:3277 -h1,18301:32579752,9620049:0,411205,112570 -) -k1,18301:32583029,9620049:0 -) -(1,18302:6630773,10461537:25952256,513147,134348 -g1,18301:8021447,10461537 -g1,18301:9239761,10461537 -g1,18301:10707767,10461537 -g1,18301:11566288,10461537 -g1,18301:12784602,10461537 -g1,18301:15238270,10461537 -g1,18301:17726672,10461537 -g1,18301:18944986,10461537 -g1,18301:20370394,10461537 -g1,18301:21331151,10461537 -(1,18301:21331151,10461537:0,452978,122846 -r1,18345:25909959,10461537:4578808,575824,122846 -k1,18301:21331151,10461537:-4578808 -) -(1,18301:21331151,10461537:4578808,452978,122846 -k1,18301:21331151,10461537:3277 -h1,18301:25906682,10461537:0,411205,112570 -) -k1,18302:32583029,10461537:6499400 -g1,18302:32583029,10461537 -) -v1,18305:6630773,11652003:0,393216,0 -(1,18320:6630773,19288766:25952256,8029979,196608 -g1,18320:6630773,19288766 -g1,18320:6630773,19288766 -g1,18320:6434165,19288766 -(1,18320:6434165,19288766:0,8029979,196608 -r1,18345:32779637,19288766:26345472,8226587,196608 -k1,18320:6434165,19288766:-26345472 -) -(1,18320:6434165,19288766:26345472,8029979,196608 -[1,18320:6630773,19288766:25952256,7833371,0 -(1,18307:6630773,11859621:25952256,404226,101187 -(1,18306:6630773,11859621:0,0,0 -g1,18306:6630773,11859621 -g1,18306:6630773,11859621 -g1,18306:6303093,11859621 -(1,18306:6303093,11859621:0,0,0 -) -g1,18306:6630773,11859621 -) -g1,18307:9159939,11859621 -k1,18307:9159939,11859621:0 -h1,18307:9792231,11859621:0,0,0 -k1,18307:32583029,11859621:22790798 -g1,18307:32583029,11859621 -) -(1,18308:6630773,12525799:25952256,410518,101187 -h1,18308:6630773,12525799:0,0,0 -g1,18308:6946919,12525799 -g1,18308:7263065,12525799 -g1,18308:11372960,12525799 -g1,18308:12005252,12525799 -g1,18308:13585982,12525799 -g1,18308:14218274,12525799 -g1,18308:14850566,12525799 -g1,18308:17063587,12525799 -k1,18308:17063587,12525799:0 -h1,18308:18012025,12525799:0,0,0 -k1,18308:32583029,12525799:14571004 -g1,18308:32583029,12525799 -) -(1,18309:6630773,13191977:25952256,410518,82312 -h1,18309:6630773,13191977:0,0,0 -g1,18309:6946919,13191977 -g1,18309:7263065,13191977 -g1,18309:7579211,13191977 -g1,18309:7895357,13191977 -g1,18309:8211503,13191977 -g1,18309:8527649,13191977 -g1,18309:8843795,13191977 -g1,18309:9159941,13191977 -g1,18309:9476087,13191977 -g1,18309:9792233,13191977 -g1,18309:10108379,13191977 -g1,18309:10424525,13191977 -g1,18309:10740671,13191977 -g1,18309:12637545,13191977 -g1,18309:13269837,13191977 -g1,18309:16115149,13191977 -g1,18309:18328169,13191977 -g1,18309:21173481,13191977 -g1,18309:23702647,13191977 -h1,18309:26231812,13191977:0,0,0 -k1,18309:32583029,13191977:6351217 -g1,18309:32583029,13191977 -) -(1,18310:6630773,13858155:25952256,0,0 -h1,18310:6630773,13858155:0,0,0 -h1,18310:6630773,13858155:0,0,0 -k1,18310:32583029,13858155:25952256 -g1,18310:32583029,13858155 -) -(1,18311:6630773,14524333:25952256,404226,107478 -h1,18311:6630773,14524333:0,0,0 -g1,18311:11689104,14524333 -g1,18311:13902124,14524333 -g1,18311:14850562,14524333 -g1,18311:16747436,14524333 -g1,18311:17379728,14524333 -g1,18311:19908894,14524333 -h1,18311:20225040,14524333:0,0,0 -k1,18311:32583029,14524333:12357989 -g1,18311:32583029,14524333 -) -(1,18312:6630773,15190511:25952256,404226,107478 -h1,18312:6630773,15190511:0,0,0 -g1,18312:6946919,15190511 -g1,18312:7263065,15190511 -g1,18312:12637542,15190511 -g1,18312:13269834,15190511 -g1,18312:15166709,15190511 -g1,18312:16747438,15190511 -g1,18312:17379730,15190511 -k1,18312:17379730,15190511:0 -h1,18312:18012022,15190511:0,0,0 -k1,18312:32583029,15190511:14571007 -g1,18312:32583029,15190511 -) -(1,18313:6630773,15856689:25952256,404226,82312 -h1,18313:6630773,15856689:0,0,0 -g1,18313:6946919,15856689 -g1,18313:7263065,15856689 -g1,18313:7579211,15856689 -g1,18313:7895357,15856689 -g1,18313:8211503,15856689 -g1,18313:8527649,15856689 -g1,18313:8843795,15856689 -g1,18313:9159941,15856689 -g1,18313:9476087,15856689 -g1,18313:9792233,15856689 -g1,18313:10108379,15856689 -g1,18313:10424525,15856689 -g1,18313:10740671,15856689 -g1,18313:14218274,15856689 -g1,18313:14850566,15856689 -k1,18313:14850566,15856689:0 -h1,18313:15799003,15856689:0,0,0 -k1,18313:32583029,15856689:16784026 -g1,18313:32583029,15856689 -) -(1,18314:6630773,16522867:25952256,404226,82312 -h1,18314:6630773,16522867:0,0,0 -g1,18314:6946919,16522867 -g1,18314:7263065,16522867 -g1,18314:7579211,16522867 -g1,18314:7895357,16522867 -g1,18314:8211503,16522867 -g1,18314:8527649,16522867 -g1,18314:8843795,16522867 -g1,18314:9159941,16522867 -g1,18314:9476087,16522867 -g1,18314:9792233,16522867 -g1,18314:10108379,16522867 -g1,18314:10424525,16522867 -g1,18314:10740671,16522867 -g1,18314:13269837,16522867 -g1,18314:13902129,16522867 -g1,18314:16431296,16522867 -k1,18314:16431296,16522867:0 -h1,18314:19276608,16522867:0,0,0 -k1,18314:32583029,16522867:13306421 -g1,18314:32583029,16522867 -) -(1,18315:6630773,17189045:25952256,404226,107478 -h1,18315:6630773,17189045:0,0,0 -g1,18315:6946919,17189045 -g1,18315:7263065,17189045 -g1,18315:7579211,17189045 -g1,18315:7895357,17189045 -g1,18315:8211503,17189045 -g1,18315:8527649,17189045 -g1,18315:8843795,17189045 -g1,18315:9159941,17189045 -g1,18315:9476087,17189045 -g1,18315:9792233,17189045 -g1,18315:10108379,17189045 -g1,18315:10424525,17189045 -g1,18315:10740671,17189045 -g1,18315:15166711,17189045 -g1,18315:15799003,17189045 -g1,18315:19276607,17189045 -k1,18315:19276607,17189045:0 -h1,18315:22121919,17189045:0,0,0 -k1,18315:32583029,17189045:10461110 -g1,18315:32583029,17189045 -) -(1,18316:6630773,17855223:25952256,410518,101187 -h1,18316:6630773,17855223:0,0,0 -g1,18316:6946919,17855223 -g1,18316:7263065,17855223 -g1,18316:7579211,17855223 -g1,18316:7895357,17855223 -g1,18316:8211503,17855223 -g1,18316:8527649,17855223 -g1,18316:8843795,17855223 -g1,18316:9159941,17855223 -g1,18316:9476087,17855223 -g1,18316:9792233,17855223 -g1,18316:10108379,17855223 -g1,18316:10424525,17855223 -g1,18316:10740671,17855223 -g1,18316:12321400,17855223 -g1,18316:12953692,17855223 -g1,18316:16115149,17855223 -g1,18316:18012023,17855223 -g1,18316:18644315,17855223 -g1,18316:20225044,17855223 -h1,18316:20541190,17855223:0,0,0 -k1,18316:32583029,17855223:12041839 -g1,18316:32583029,17855223 -) -(1,18317:6630773,18521401:25952256,404226,107478 -h1,18317:6630773,18521401:0,0,0 -g1,18317:6946919,18521401 -g1,18317:7263065,18521401 -g1,18317:11372959,18521401 -h1,18317:11689105,18521401:0,0,0 -k1,18317:32583029,18521401:20893924 -g1,18317:32583029,18521401 -) -(1,18318:6630773,19187579:25952256,404226,101187 -h1,18318:6630773,19187579:0,0,0 -g1,18318:6946919,19187579 -g1,18318:7263065,19187579 -g1,18318:12321397,19187579 -g1,18318:12953689,19187579 -h1,18318:14218272,19187579:0,0,0 -k1,18318:32583028,19187579:18364756 -g1,18318:32583028,19187579 -) -] -) -g1,18320:32583029,19288766 -g1,18320:6630773,19288766 -g1,18320:6630773,19288766 -g1,18320:32583029,19288766 -g1,18320:32583029,19288766 -) -h1,18320:6630773,19485374:0,0,0 -(1,18323:6630773,29158864:25952256,9083666,0 -k1,18323:10523651,29158864:3892878 -h1,18322:10523651,29158864:0,0,0 -(1,18322:10523651,29158864:18166500,9083666,0 -(1,18322:10523651,29158864:18167376,9083688,0 -(1,18322:10523651,29158864:18167376,9083688,0 -(1,18322:10523651,29158864:0,9083688,0 -(1,18322:10523651,29158864:0,14208860,0 -(1,18322:10523651,29158864:28417720,14208860,0 -) -k1,18322:10523651,29158864:-28417720 -) -) -g1,18322:28691027,29158864 -) -) -) -g1,18323:28690151,29158864 -k1,18323:32583029,29158864:3892878 -) -v1,18330:6630773,30524640:0,393216,0 -(1,18331:6630773,34330993:25952256,4199569,0 -g1,18331:6630773,34330993 -g1,18331:6303093,34330993 -r1,18345:6401397,34330993:98304,4199569,0 -g1,18331:6600626,34330993 -g1,18331:6797234,34330993 -[1,18331:6797234,34330993:25785795,4199569,0 -(1,18331:6797234,30957178:25785795,825754,196608 -(1,18330:6797234,30957178:0,825754,196608 -r1,18345:7890375,30957178:1093141,1022362,196608 -k1,18330:6797234,30957178:-1093141 -) -(1,18330:6797234,30957178:1093141,825754,196608 -) -k1,18330:8138155,30957178:247780 -k1,18330:9864373,30957178:327680 -k1,18330:11409767,30957178:247781 -k1,18330:13051498,30957178:247780 -k1,18330:14318364,30957178:247781 -k1,18330:17968773,30957178:247780 -k1,18330:18867982,30957178:247781 -k1,18330:20134847,30957178:247780 -k1,18330:23144970,30957178:247780 -k1,18330:27003785,30957178:247781 -k1,18330:28443010,30957178:247780 -k1,18330:30084742,30957178:247781 -k1,18330:31351607,30957178:247780 -k1,18331:32583029,30957178:0 -) -(1,18331:6797234,31798666:25785795,513147,134348 -k1,18330:9100300,31798666:264896 -k1,18330:10016625,31798666:264897 -k1,18330:11259974,31798666:264896 -k1,18330:12295574,31798666:264897 -k1,18330:13885608,31798666:264896 -k1,18330:14809796,31798666:264896 -k1,18330:16623309,31798666:264897 -k1,18330:17992487,31798666:264896 -k1,18330:19005150,31798666:264897 -k1,18330:20847498,31798666:264896 -k1,18330:22506345,31798666:264896 -k1,18330:24583968,31798666:264897 -k1,18330:25890886,31798666:264896 -k1,18330:28990870,31798666:264897 -k1,18330:30348251,31798666:264896 -k1,18330:32583029,31798666:0 -) -(1,18331:6797234,32640154:25785795,505283,134348 -k1,18330:9170512,32640154:233527 -k1,18330:10902846,32640154:233526 -k1,18330:12327818,32640154:233527 -k1,18330:15180163,32640154:233526 -k1,18330:16432775,32640154:233527 -k1,18330:19274634,32640154:233526 -k1,18330:20232989,32640154:233527 -k1,18330:21751021,32640154:233526 -k1,18330:22340408,32640154:233527 -k1,18330:25004664,32640154:233526 -k1,18330:29563567,32640154:233527 -k1,18330:32051532,32640154:233526 -k1,18330:32583029,32640154:0 -) -(1,18331:6797234,33481642:25785795,513147,134348 -k1,18330:9776687,33481642:173201 -k1,18330:11203592,33481642:173201 -k1,18330:12713727,33481642:173201 -k1,18330:14172744,33481642:173201 -k1,18330:15252308,33481642:173201 -k1,18330:18233071,33481642:173201 -k1,18330:19425356,33481642:173200 -(1,18330:19425356,33481642:0,459977,115847 -r1,18345:20838757,33481642:1413401,575824,115847 -k1,18330:19425356,33481642:-1413401 -) -(1,18330:19425356,33481642:1413401,459977,115847 -k1,18330:19425356,33481642:3277 -h1,18330:20835480,33481642:0,411205,112570 -) -k1,18330:21011958,33481642:173201 -k1,18330:22376604,33481642:173201 -(1,18330:22376604,33481642:0,452978,115847 -r1,18345:24141717,33481642:1765113,568825,115847 -k1,18330:22376604,33481642:-1765113 -) -(1,18330:22376604,33481642:1765113,452978,115847 -k1,18330:22376604,33481642:3277 -h1,18330:24138440,33481642:0,411205,112570 -) -k1,18330:24314918,33481642:173201 -k1,18330:27552583,33481642:173201 -k1,18330:28377212,33481642:173201 -k1,18330:30774705,33481642:173201 -k1,18330:31563944,33481642:173201 -k1,18330:32583029,33481642:0 -) -(1,18331:6797234,34323130:25785795,505283,7863 -k1,18331:32583028,34323130:24222760 -g1,18331:32583028,34323130 -) -] -g1,18331:32583029,34330993 -) -h1,18331:6630773,34330993:0,0,0 -(1,18334:6630773,35696769:25952256,513147,126483 -h1,18333:6630773,35696769:983040,0,0 -k1,18333:8434338,35696769:342768 -k1,18333:9796191,35696769:342768 -k1,18333:13419691,35696769:342768 -(1,18333:13419691,35696769:0,452978,115847 -r1,18345:17998499,35696769:4578808,568825,115847 -k1,18333:13419691,35696769:-4578808 -) -(1,18333:13419691,35696769:4578808,452978,115847 -k1,18333:13419691,35696769:3277 -h1,18333:17995222,35696769:0,411205,112570 -) -k1,18333:18341267,35696769:342768 -k1,18333:19351192,35696769:342769 -(1,18333:19351192,35696769:0,452978,122846 -r1,18345:23226576,35696769:3875384,575824,122846 -k1,18333:19351192,35696769:-3875384 -) -(1,18333:19351192,35696769:3875384,452978,122846 -k1,18333:19351192,35696769:3277 -h1,18333:23223299,35696769:0,411205,112570 -) -k1,18333:23569344,35696769:342768 -k1,18333:24443609,35696769:342768 -k1,18333:25720920,35696769:342768 -k1,18333:26715116,35696769:342768 -(1,18333:26715116,35696769:0,414482,115847 -r1,18345:28128517,35696769:1413401,530329,115847 -k1,18333:26715116,35696769:-1413401 -) -(1,18333:26715116,35696769:1413401,414482,115847 -k1,18333:26715116,35696769:3277 -h1,18333:28125240,35696769:0,411205,112570 -) -k1,18333:28644955,35696769:342768 -k1,18333:30213902,35696769:342768 -k1,18333:32583029,35696769:0 -) -(1,18334:6630773,36538257:25952256,505283,134348 -k1,18333:8152399,36538257:389164 -k1,18333:9289330,36538257:389165 -k1,18333:12176071,36538257:389164 -k1,18333:13326764,36538257:389165 -k1,18333:17589106,36538257:389164 -k1,18333:18997356,36538257:389165 -k1,18333:20612699,36538257:389164 -k1,18333:22286370,36538257:389165 -k1,18333:24631784,36538257:389164 -k1,18333:28122768,36538257:389165 -k1,18333:30881059,36538257:389164 -k1,18333:32583029,36538257:0 -) -(1,18334:6630773,37379745:25952256,513147,126483 -k1,18333:8231098,37379745:200476 -k1,18333:11404286,37379745:200475 -k1,18333:14268801,37379745:200476 -k1,18333:15136432,37379745:200475 -(1,18333:15136432,37379745:0,452978,122846 -r1,18345:19011816,37379745:3875384,575824,122846 -k1,18333:15136432,37379745:-3875384 -) -(1,18333:15136432,37379745:3875384,452978,122846 -k1,18333:15136432,37379745:3277 -h1,18333:19008539,37379745:0,411205,112570 -) -k1,18333:19212292,37379745:200476 -k1,18333:20604212,37379745:200475 -(1,18333:20604212,37379745:0,452978,122846 -r1,18345:24831308,37379745:4227096,575824,122846 -k1,18333:20604212,37379745:-4227096 -) -(1,18333:20604212,37379745:4227096,452978,122846 -k1,18333:20604212,37379745:3277 -h1,18333:24828031,37379745:0,411205,112570 -) -k1,18333:25205454,37379745:200476 -(1,18333:25205454,37379745:0,452978,122846 -r1,18345:31191109,37379745:5985655,575824,122846 -k1,18333:25205454,37379745:-5985655 -) -(1,18333:25205454,37379745:5985655,452978,122846 -k1,18333:25205454,37379745:3277 -h1,18333:31187832,37379745:0,411205,112570 -) -k1,18333:31391584,37379745:200475 -k1,18334:32583029,37379745:0 -) -(1,18334:6630773,38221233:25952256,505283,134348 -(1,18333:6630773,38221233:0,452978,122846 -r1,18345:12968140,38221233:6337367,575824,122846 -k1,18333:6630773,38221233:-6337367 -) -(1,18333:6630773,38221233:6337367,452978,122846 -k1,18333:6630773,38221233:3277 -h1,18333:12964863,38221233:0,411205,112570 -) -k1,18333:13452774,38221233:310964 -k1,18333:14755298,38221233:310964 -k1,18333:17850231,38221233:310964 -k1,18333:18777233,38221233:310964 -k1,18333:21668349,38221233:310964 -k1,18333:24917291,38221233:310964 -k1,18333:27102585,38221233:310964 -k1,18333:30853534,38221233:310964 -k1,18333:32583029,38221233:0 -) -(1,18334:6630773,39062721:25952256,505283,134348 -k1,18333:9513404,39062721:183203 -k1,18333:10458134,39062721:183202 -k1,18333:14958194,39062721:183203 -k1,18333:19381576,39062721:183203 -k1,18333:20583864,39062721:183203 -k1,18333:21993245,39062721:183202 -k1,18333:22859333,39062721:183203 -k1,18333:25060390,39062721:183203 -k1,18333:27205086,39062721:183203 -k1,18333:28800589,39062721:183202 -k1,18333:30002877,39062721:183203 -k1,18333:32583029,39062721:0 -) -(1,18334:6630773,39904209:25952256,513147,134348 -k1,18333:11655775,39904209:198931 -k1,18333:12802358,39904209:198932 -k1,18333:15118757,39904209:198931 -k1,18333:15976980,39904209:198931 -k1,18333:17506293,39904209:198932 -k1,18333:18356652,39904209:198931 -k1,18333:20843446,39904209:198932 -k1,18333:22061462,39904209:198931 -k1,18333:25277671,39904209:198931 -k1,18333:28160302,39904209:198932 -k1,18333:29550678,39904209:198931 -k1,18333:32583029,39904209:0 -) -(1,18334:6630773,40745697:25952256,513147,134348 -k1,18333:8024865,40745697:202647 -k1,18333:9246596,40745697:202646 -k1,18333:12745049,40745697:202647 -k1,18333:13606987,40745697:202646 -k1,18333:14828719,40745697:202647 -k1,18333:18052575,40745697:202646 -k1,18333:20459198,40745697:202647 -k1,18333:21680929,40745697:202646 -k1,18333:23727759,40745697:202647 -k1,18333:24581833,40745697:202646 -k1,18333:25803565,40745697:202647 -k1,18333:28620442,40745697:202646 -k1,18333:29482381,40745697:202647 -k1,18333:31193666,40745697:202646 -k1,18333:32583029,40745697:0 -) -(1,18334:6630773,41587185:25952256,505283,126483 -k1,18333:10732423,41587185:189806 -k1,18333:12972196,41587185:189807 -k1,18333:13928118,41587185:189806 -k1,18333:17292489,41587185:189807 -k1,18333:20776790,41587185:189806 -k1,18333:21728125,41587185:189807 -(1,18333:21728125,41587185:0,452978,122846 -r1,18345:25603509,41587185:3875384,575824,122846 -k1,18333:21728125,41587185:-3875384 -) -(1,18333:21728125,41587185:3875384,452978,122846 -k1,18333:21728125,41587185:3277 -h1,18333:25600232,41587185:0,411205,112570 -) -k1,18333:25793315,41587185:189806 -k1,18333:27174567,41587185:189807 -(1,18333:27174567,41587185:0,452978,122846 -r1,18345:31401663,41587185:4227096,575824,122846 -k1,18333:27174567,41587185:-4227096 -) -(1,18333:27174567,41587185:4227096,452978,122846 -k1,18333:27174567,41587185:3277 -h1,18333:31398386,41587185:0,411205,112570 -) -k1,18333:31591469,41587185:189806 -k1,18333:32583029,41587185:0 -) -(1,18334:6630773,42428673:25952256,505283,134348 -k1,18333:10136294,42428673:211026 -k1,18333:11108848,42428673:211026 -k1,18333:12338959,42428673:211026 -k1,18333:15462405,42428673:211026 -k1,18333:18511140,42428673:211026 -k1,18333:21656867,42428673:211025 -k1,18333:23562654,42428673:211026 -k1,18333:25058186,42428673:211026 -k1,18333:25625072,42428673:211026 -k1,18333:28527006,42428673:211026 -k1,18333:31563944,42428673:211026 -k1,18333:32583029,42428673:0 -) -(1,18334:6630773,43270161:25952256,513147,134348 -k1,18333:8357740,43270161:213085 -k1,18333:9253711,43270161:213086 -k1,18333:10692975,43270161:213085 -k1,18333:11557489,43270161:213086 -k1,18333:12558972,43270161:213085 -k1,18333:14974068,43270161:213086 -k1,18333:17049031,43270161:213085 -k1,18333:19493617,43270161:213085 -k1,18333:23002509,43270161:213086 -k1,18333:23874886,43270161:213085 -k1,18333:25784699,43270161:213086 -k1,18333:29018994,43270161:213085 -k1,18333:30336362,43270161:213086 -k1,18333:31835263,43270161:213085 -k1,18333:32583029,43270161:0 -) -(1,18334:6630773,44111649:25952256,505283,134348 -g1,18333:10091073,44111649 -g1,18333:11684253,44111649 -g1,18333:15058046,44111649 -g1,18333:15940160,44111649 -k1,18334:32583029,44111649:13066569 -g1,18334:32583029,44111649 -) -v1,18336:6630773,45302115:0,393216,0 -] -(1,18345:32583029,45706769:0,0,0 -g1,18345:32583029,45706769 -) -) -] -(1,18345:6630773,47279633:25952256,0,0 -h1,18345:6630773,47279633:25952256,0,0 -) -] -(1,18345:4262630,4025873:0,0,0 -[1,18345:-473656,4025873:0,0,0 -(1,18345:-473656,-710413:0,0,0 -(1,18345:-473656,-710413:0,0,0 -g1,18345:-473656,-710413 -) -g1,18345:-473656,-710413 -) -] -) -] -!25209 -}323 -Input:2831:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2832:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2833:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2834:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +g1,18434:6630773,4812305 +g1,18434:6630773,4812305 +g1,18434:10347975,4812305 +k1,18434:31387651,4812305:21039676 +) +) +] +[1,18434:6630773,45706769:25952256,40108032,0 +(1,18434:6630773,45706769:25952256,40108032,0 +(1,18434:6630773,45706769:0,0,0 +g1,18434:6630773,45706769 +) +[1,18434:6630773,45706769:25952256,40108032,0 +(1,18417:6630773,14682403:25952256,9083666,0 +k1,18417:10523651,14682403:3892878 +h1,18416:10523651,14682403:0,0,0 +(1,18416:10523651,14682403:18166500,9083666,0 +(1,18416:10523651,14682403:18167376,9083688,0 +(1,18416:10523651,14682403:18167376,9083688,0 +(1,18416:10523651,14682403:0,9083688,0 +(1,18416:10523651,14682403:0,14208860,0 +(1,18416:10523651,14682403:28417720,14208860,0 +) +k1,18416:10523651,14682403:-28417720 +) +) +g1,18416:28691027,14682403 +) +) +) +g1,18417:28690151,14682403 +k1,18417:32583029,14682403:3892878 +) +(1,18424:6630773,15547483:25952256,505283,134348 +h1,18423:6630773,15547483:983040,0,0 +k1,18423:8405966,15547483:164318 +k1,18423:11409960,15547483:164319 +(1,18423:11409960,15547483:0,452978,122846 +r1,18434:13175073,15547483:1765113,575824,122846 +k1,18423:11409960,15547483:-1765113 +) +(1,18423:11409960,15547483:1765113,452978,122846 +k1,18423:11409960,15547483:3277 +h1,18423:13171796,15547483:0,411205,112570 +) +k1,18423:13339391,15547483:164318 +k1,18423:14695154,15547483:164318 +(1,18423:14695154,15547483:0,452978,122846 +r1,18434:16460267,15547483:1765113,575824,122846 +k1,18423:14695154,15547483:-1765113 +) +(1,18423:14695154,15547483:1765113,452978,122846 +k1,18423:14695154,15547483:3277 +h1,18423:16456990,15547483:0,411205,112570 +) +k1,18423:16624586,15547483:164319 +k1,18423:17980349,15547483:164318 +(1,18423:17980349,15547483:0,452978,122846 +r1,18434:19745462,15547483:1765113,575824,122846 +k1,18423:17980349,15547483:-1765113 +) +(1,18423:17980349,15547483:1765113,452978,122846 +k1,18423:17980349,15547483:3277 +h1,18423:19742185,15547483:0,411205,112570 +) +k1,18423:19909780,15547483:164318 +k1,18423:21178381,15547483:164319 +k1,18423:22090465,15547483:164318 +k1,18423:23768009,15547483:164318 +k1,18423:24583756,15547483:164319 +k1,18423:26647963,15547483:164318 +k1,18423:27831366,15547483:164318 +k1,18423:29221864,15547483:164319 +k1,18423:30577627,15547483:164318 +k1,18423:32583029,15547483:0 +) +(1,18424:6630773,16412563:25952256,513147,126483 +k1,18423:7576470,16412563:157299 +k1,18423:10521670,16412563:157298 +k1,18423:11875656,16412563:157299 +k1,18423:14298535,16412563:157299 +k1,18423:16136176,16412563:157298 +k1,18423:16952767,16412563:157299 +k1,18423:18080654,16412563:157299 +k1,18423:19185603,16412563:157298 +k1,18423:20809598,16412563:157299 +(1,18423:20809598,16412563:0,452978,122846 +r1,18434:22574711,16412563:1765113,575824,122846 +k1,18423:20809598,16412563:-1765113 +) +(1,18423:20809598,16412563:1765113,452978,122846 +k1,18423:20809598,16412563:3277 +h1,18423:22571434,16412563:0,411205,112570 +) +k1,18423:22732010,16412563:157299 +k1,18423:24080754,16412563:157299 +(1,18423:24080754,16412563:0,452978,122846 +r1,18434:25845867,16412563:1765113,575824,122846 +k1,18423:24080754,16412563:-1765113 +) +(1,18423:24080754,16412563:1765113,452978,122846 +k1,18423:24080754,16412563:3277 +h1,18423:25842590,16412563:0,411205,112570 +) +k1,18423:26003165,16412563:157298 +k1,18423:27425309,16412563:157299 +k1,18423:28601693,16412563:157299 +k1,18423:30747353,16412563:157298 +k1,18423:31563944,16412563:157299 +k1,18423:32583029,16412563:0 +) +(1,18424:6630773,17277643:25952256,513147,134348 +k1,18423:8077626,17277643:220674 +k1,18423:8911061,17277643:220673 +k1,18423:10150820,17277643:220674 +k1,18423:13132525,17277643:220673 +(1,18423:13132525,17277643:0,414482,115847 +r1,18434:13490791,17277643:358266,530329,115847 +k1,18423:13132525,17277643:-358266 +) +(1,18423:13132525,17277643:358266,414482,115847 +k1,18423:13132525,17277643:3277 +h1,18423:13487514,17277643:0,411205,112570 +) +k1,18423:13711465,17277643:220674 +k1,18423:15123584,17277643:220674 +(1,18423:15123584,17277643:0,414482,115847 +r1,18434:15481850,17277643:358266,530329,115847 +k1,18423:15123584,17277643:-358266 +) +(1,18423:15123584,17277643:358266,414482,115847 +k1,18423:15123584,17277643:3277 +h1,18423:15478573,17277643:0,411205,112570 +) +k1,18423:15702523,17277643:220673 +k1,18423:19835041,17277643:220674 +k1,18423:23102483,17277643:220673 +k1,18423:24514602,17277643:220674 +k1,18423:28651706,17277643:220673 +k1,18423:29820031,17277643:220674 +k1,18424:32583029,17277643:0 +) +(1,18424:6630773,18142723:25952256,513147,126483 +k1,18423:8104618,18142723:206379 +k1,18423:9847162,18142723:206380 +k1,18423:10704969,18142723:206379 +k1,18423:11930433,18142723:206379 +k1,18423:13536662,18142723:206380 +k1,18423:14809312,18142723:206379 +k1,18423:16034776,18142723:206379 +k1,18423:17692123,18142723:206380 +k1,18423:19279346,18142723:206379 +k1,18423:20017222,18142723:206379 +k1,18423:23432900,18142723:206380 +k1,18423:25337317,18142723:206379 +(1,18423:25337317,18142723:0,452978,122846 +r1,18434:27102430,18142723:1765113,575824,122846 +k1,18423:25337317,18142723:-1765113 +) +(1,18423:25337317,18142723:1765113,452978,122846 +k1,18423:25337317,18142723:3277 +h1,18423:27099153,18142723:0,411205,112570 +) +k1,18423:27308809,18142723:206379 +k1,18423:28046686,18142723:206380 +k1,18423:31015408,18142723:206379 +k1,18423:32583029,18142723:0 +) +(1,18424:6630773,19007803:25952256,513147,134348 +k1,18423:8459977,19007803:235368 +k1,18423:10806915,19007803:235368 +k1,18423:12901539,19007803:235368 +k1,18423:14579353,19007803:235367 +k1,18423:15785309,19007803:235368 +k1,18423:17488683,19007803:235368 +k1,18423:18743136,19007803:235368 +k1,18423:20492386,19007803:235368 +k1,18423:21801889,19007803:235368 +k1,18423:22720142,19007803:235368 +k1,18423:24880301,19007803:235367 +k1,18423:26307114,19007803:235368 +k1,18423:28553127,19007803:235368 +k1,18423:31140582,19007803:235368 +k1,18423:32583029,19007803:0 +) +(1,18424:6630773,19872883:25952256,513147,134348 +k1,18423:7922971,19872883:147939 +k1,18423:9606418,19872883:147938 +k1,18423:10437242,19872883:147939 +k1,18423:11420765,19872883:147939 +k1,18423:12962655,19872883:147939 +k1,18423:15435155,19872883:147938 +k1,18423:16234522,19872883:147939 +k1,18423:17170859,19872883:147939 +(1,18423:17170859,19872883:0,414482,115847 +r1,18434:17529125,19872883:358266,530329,115847 +k1,18423:17170859,19872883:-358266 +) +(1,18423:17170859,19872883:358266,414482,115847 +k1,18423:17170859,19872883:3277 +h1,18423:17525848,19872883:0,411205,112570 +) +k1,18423:17677064,19872883:147939 +k1,18423:19016447,19872883:147938 +(1,18423:19016447,19872883:0,414482,115847 +r1,18434:19374713,19872883:358266,530329,115847 +k1,18423:19016447,19872883:-358266 +) +(1,18423:19016447,19872883:358266,414482,115847 +k1,18423:19016447,19872883:3277 +h1,18423:19371436,19872883:0,411205,112570 +) +k1,18423:19522652,19872883:147939 +k1,18423:23582435,19872883:147939 +k1,18423:24217911,19872883:147888 +k1,18423:26046192,19872883:147938 +k1,18423:26853423,19872883:147939 +k1,18423:27399821,19872883:147939 +k1,18423:28230645,19872883:147939 +k1,18423:28777042,19872883:147938 +k1,18423:30189826,19872883:147939 +k1,18423:31356850,19872883:147939 +k1,18423:32583029,19872883:0 +) +(1,18424:6630773,20737963:25952256,513147,134348 +k1,18423:7551537,20737963:195936 +k1,18423:9031978,20737963:195935 +k1,18423:10016312,20737963:195936 +k1,18423:11701880,20737963:195935 +k1,18423:12429313,20737963:195936 +k1,18423:13238010,20737963:195935 +k1,18423:14453031,20737963:195936 +k1,18423:17409999,20737963:195936 +k1,18423:21187477,20737963:195935 +k1,18423:23494983,20737963:195936 +k1,18423:26056768,20737963:195935 +k1,18423:27271789,20737963:195936 +k1,18423:29248337,20737963:195935 +$1,18423:29248337,20737963 +k1,18423:29756032,20737963:109236 +k1,18423:30520628,20737963:109236 +$1,18423:30919087,20737963 +k1,18423:31115023,20737963:195936 +k1,18423:32583029,20737963:0 +) +(1,18424:6630773,21603043:25952256,513147,134348 +k1,18423:7826384,21603043:176526 +k1,18423:9229088,21603043:176525 +k1,18423:10872310,21603043:176526 +k1,18423:13265264,21603043:176526 +k1,18423:15209295,21603043:176525 +k1,18423:18230084,21603043:176526 +k1,18423:19605263,21603043:176525 +k1,18423:21517182,21603043:176526 +k1,18423:23311792,21603043:176526 +k1,18423:25342986,21603043:176525 +k1,18423:26328882,21603043:176526 +k1,18423:27524493,21603043:176526 +k1,18423:29714284,21603043:176525 +k1,18423:30573695,21603043:176526 +k1,18423:32583029,21603043:0 +) +(1,18424:6630773,22468123:25952256,513147,134348 +k1,18423:7577768,22468123:287703 +k1,18423:8884556,22468123:287703 +k1,18423:10398438,22468123:287703 +k1,18423:12373693,22468123:287703 +k1,18423:14806389,22468123:287703 +k1,18423:17758131,22468123:287703 +k1,18423:18705126,22468123:287703 +k1,18423:21821362,22468123:287703 +k1,18423:23824798,22468123:287703 +k1,18423:26742461,22468123:287703 +k1,18423:30847636,22468123:287703 +k1,18423:32583029,22468123:0 +) +(1,18424:6630773,23333203:25952256,513147,134348 +k1,18423:9835092,23333203:229640 +k1,18423:13152788,23333203:229640 +k1,18423:14330078,23333203:229639 +k1,18423:17923681,23333203:229640 +(1,18423:17923681,23333203:0,459977,115847 +r1,18434:20040506,23333203:2116825,575824,115847 +k1,18423:17923681,23333203:-2116825 +) +(1,18423:17923681,23333203:2116825,459977,115847 +k1,18423:17923681,23333203:3277 +h1,18423:20037229,23333203:0,411205,112570 +) +k1,18423:20443816,23333203:229640 +(1,18423:20443816,23333203:0,452978,115847 +r1,18434:23264065,23333203:2820249,568825,115847 +k1,18423:20443816,23333203:-2820249 +) +(1,18423:20443816,23333203:2820249,452978,115847 +k1,18423:20443816,23333203:3277 +h1,18423:23260788,23333203:0,411205,112570 +) +k1,18423:23667375,23333203:229640 +(1,18423:23667375,23333203:0,452978,122846 +r1,18434:26135912,23333203:2468537,575824,122846 +k1,18423:23667375,23333203:-2468537 +) +(1,18423:23667375,23333203:2468537,452978,122846 +k1,18423:23667375,23333203:3277 +h1,18423:26132635,23333203:0,411205,112570 +) +k1,18423:26539221,23333203:229639 +(1,18423:26539221,23333203:0,452978,115847 +r1,18434:29359470,23333203:2820249,568825,115847 +k1,18423:26539221,23333203:-2820249 +) +(1,18423:26539221,23333203:2820249,452978,115847 +k1,18423:26539221,23333203:3277 +h1,18423:29356193,23333203:0,411205,112570 +) +k1,18423:29762780,23333203:229640 +(1,18423:29762780,23333203:0,452978,115847 +r1,18434:32583029,23333203:2820249,568825,115847 +k1,18423:29762780,23333203:-2820249 +) +(1,18423:29762780,23333203:2820249,452978,115847 +k1,18423:29762780,23333203:3277 +h1,18423:32579752,23333203:0,411205,112570 +) +k1,18423:32583029,23333203:0 +) +(1,18424:6630773,24198283:25952256,505283,134348 +k1,18423:7983323,24198283:161105 +(1,18423:7983323,24198283:0,452978,115847 +r1,18434:9748436,24198283:1765113,568825,115847 +k1,18423:7983323,24198283:-1765113 +) +(1,18423:7983323,24198283:1765113,452978,115847 +k1,18423:7983323,24198283:3277 +h1,18423:9745159,24198283:0,411205,112570 +) +k1,18423:10083211,24198283:161105 +k1,18423:11435760,24198283:161104 +k1,18423:12769304,24198283:161105 +k1,18423:15124554,24198283:161105 +k1,18423:18979923,24198283:161105 +(1,18423:18979923,24198283:0,452978,115847 +r1,18434:21800172,24198283:2820249,568825,115847 +k1,18423:18979923,24198283:-2820249 +) +(1,18423:18979923,24198283:2820249,452978,115847 +k1,18423:18979923,24198283:3277 +h1,18423:21796895,24198283:0,411205,112570 +) +k1,18423:21961277,24198283:161105 +k1,18423:23313826,24198283:161104 +(1,18423:23313826,24198283:0,452978,115847 +r1,18434:26485786,24198283:3171960,568825,115847 +k1,18423:23313826,24198283:-3171960 +) +(1,18423:23313826,24198283:3171960,452978,115847 +k1,18423:23313826,24198283:3277 +h1,18423:26482509,24198283:0,411205,112570 +) +k1,18423:26820561,24198283:161105 +k1,18423:28266172,24198283:161105 +k1,18423:32583029,24198283:0 +) +(1,18424:6630773,25063363:25952256,505283,134348 +g1,18423:8192496,25063363 +g1,18423:10246394,25063363 +g1,18423:11254993,25063363 +g1,18423:12473307,25063363 +g1,18423:15286767,25063363 +g1,18423:16102034,25063363 +g1,18423:17320348,25063363 +g1,18423:20044024,25063363 +k1,18424:32583029,25063363:11017914 +g1,18424:32583029,25063363 +) +(1,18426:6630773,25928443:25952256,513147,126483 +h1,18425:6630773,25928443:983040,0,0 +k1,18425:8443861,25928443:202213 +k1,18425:9665159,25928443:202213 +k1,18425:11234452,25928443:202212 +k1,18425:12103821,25928443:202213 +(1,18425:12103821,25928443:0,452978,122846 +r1,18434:16330917,25928443:4227096,575824,122846 +k1,18425:12103821,25928443:-4227096 +) +(1,18425:12103821,25928443:4227096,452978,122846 +k1,18425:12103821,25928443:3277 +h1,18425:16327640,25928443:0,411205,112570 +) +k1,18425:16533130,25928443:202213 +k1,18425:17754428,25928443:202213 +k1,18425:19182820,25928443:202213 +k1,18425:19916529,25928443:202212 +k1,18425:22912542,25928443:202213 +k1,18425:23730793,25928443:202213 +k1,18425:24288866,25928443:202213 +k1,18425:25824737,25928443:202213 +k1,18425:27912420,25928443:202212 +k1,18425:29948330,25928443:202213 +k1,18425:31169628,25928443:202213 +(1,18425:31169628,25928443:0,459977,115847 +r1,18434:32583029,25928443:1413401,575824,115847 +k1,18425:31169628,25928443:-1413401 +) +(1,18425:31169628,25928443:1413401,459977,115847 +k1,18425:31169628,25928443:3277 +h1,18425:32579752,25928443:0,411205,112570 +) +k1,18425:32583029,25928443:0 +) +(1,18426:6630773,26793523:25952256,505283,134348 +k1,18425:9567179,26793523:149160 +k1,18425:10907783,26793523:149159 +k1,18425:12739908,26793523:149160 +k1,18425:16116060,26793523:149159 +k1,18425:19876254,26793523:149160 +k1,18425:23322530,26793523:149160 +k1,18425:25950261,26793523:149159 +k1,18425:26712183,26793523:149160 +k1,18425:28359495,26793523:149159 +h1,18425:29554872,26793523:0,0,0 +k1,18425:29911126,26793523:149160 +k1,18425:32583029,26793523:0 +) +(1,18426:6630773,27658603:25952256,513147,126483 +k1,18425:9103041,27658603:184406 +k1,18425:9946739,27658603:184406 +k1,18425:11150231,27658603:184407 +k1,18425:13203724,27658603:184406 +k1,18425:14579575,27658603:184406 +k1,18425:16032758,27658603:184406 +k1,18425:16876457,27658603:184407 +k1,18425:18079948,27658603:184406 +k1,18425:19598012,27658603:184406 +k1,18425:22717120,27658603:184406 +(1,18425:22717120,27658603:0,452978,122846 +r1,18434:26944216,27658603:4227096,575824,122846 +k1,18425:22717120,27658603:-4227096 +) +(1,18425:22717120,27658603:4227096,452978,122846 +k1,18425:22717120,27658603:3277 +h1,18425:26940939,27658603:0,411205,112570 +) +k1,18425:27128623,27658603:184407 +k1,18425:28805939,27658603:184406 +k1,18425:30056616,27658603:184406 +k1,18425:32583029,27658603:0 +) +(1,18426:6630773,28523683:25952256,505283,122846 +g1,18425:9393115,28523683 +g1,18425:10986295,28523683 +g1,18425:12204609,28523683 +(1,18425:12204609,28523683:0,452978,122846 +r1,18434:13969722,28523683:1765113,575824,122846 +k1,18425:12204609,28523683:-1765113 +) +(1,18425:12204609,28523683:1765113,452978,122846 +k1,18425:12204609,28523683:3277 +h1,18425:13966445,28523683:0,411205,112570 +) +g1,18425:14168951,28523683 +k1,18426:32583029,28523683:15396145 +g1,18426:32583029,28523683 +) +v1,18428:6630773,29388763:0,393216,0 +(1,18429:6630773,43717703:25952256,14722156,0 +g1,18429:6630773,43717703 +g1,18429:6237557,43717703 +r1,18434:6368629,43717703:131072,14722156,0 +g1,18429:6567858,43717703 +g1,18429:6764466,43717703 +[1,18429:6764466,43717703:25818563,14722156,0 +(1,18429:6764466,29749940:25818563,754393,260573 +(1,18428:6764466,29749940:0,754393,260573 +r1,18434:8010564,29749940:1246098,1014966,260573 +k1,18428:6764466,29749940:-1246098 +) +(1,18428:6764466,29749940:1246098,754393,260573 +) +k1,18428:8188805,29749940:178241 +k1,18428:8516485,29749940:327680 +k1,18428:9948430,29749940:178241 +k1,18428:12307054,29749940:178241 +k1,18428:13233061,29749940:178241 +k1,18428:15279733,29749940:178241 +k1,18428:16742480,29749940:178241 +k1,18428:17335543,29749940:178220 +k1,18428:18705228,29749940:178240 +k1,18428:21712002,29749940:178241 +k1,18428:24416656,29749940:178241 +k1,18428:25613982,29749940:178241 +k1,18428:26884708,29749940:178241 +k1,18428:27722241,29749940:178241 +k1,18428:31089463,29749940:178241 +k1,18428:32583029,29749940:0 +) +(1,18429:6764466,30615020:25818563,513147,134348 +k1,18428:7683687,30615020:233059 +k1,18428:9580050,30615020:233059 +k1,18428:12787787,30615020:233058 +k1,18428:16252426,30615020:233059 +k1,18428:17101523,30615020:233059 +k1,18428:19704364,30615020:233059 +k1,18428:20415179,30615020:233058 +k1,18428:22107069,30615020:233059 +k1,18428:24249192,30615020:233059 +k1,18428:25165136,30615020:233059 +k1,18428:26485402,30615020:233024 +k1,18428:29575175,30615020:233059 +k1,18428:31316873,30615020:233059 +k1,18428:32583029,30615020:0 +) +(1,18429:6764466,31480100:25818563,505283,126483 +k1,18428:8379777,31480100:181383 +k1,18428:9731634,31480100:181384 +k1,18428:11017299,31480100:181383 +k1,18428:12584769,31480100:181384 +k1,18428:14621476,31480100:181383 +k1,18428:16835130,31480100:181383 +k1,18428:18207959,31480100:181384 +k1,18428:20514019,31480100:181383 +k1,18428:22673279,31480100:181383 +k1,18428:25496419,31480100:181384 +k1,18428:28265819,31480100:181383 +k1,18428:29638648,31480100:181384 +k1,18428:31200219,31480100:181383 +k1,18429:32583029,31480100:0 +) +(1,18429:6764466,32345180:25818563,513147,134348 +k1,18428:8612160,32345180:187012 +k1,18428:11608044,32345180:187011 +k1,18428:12411094,32345180:187012 +k1,18428:14442289,32345180:187012 +k1,18428:15095262,32345180:187012 +k1,18428:15638133,32345180:187011 +k1,18428:18337140,32345180:187012 +k1,18428:19855188,32345180:187012 +k1,18428:20573696,32345180:187011 +k1,18428:22905046,32345180:187012 +k1,18428:24283503,32345180:187012 +k1,18428:25241218,32345180:187012 +k1,18428:28348513,32345180:187011 +k1,18428:31436804,32345180:187012 +k1,18428:32583029,32345180:0 +) +(1,18429:6764466,33210260:25818563,513147,134348 +k1,18428:8683823,33210260:256053 +k1,18428:9471373,33210260:256053 +k1,18428:10343464,33210260:256053 +k1,18428:11692002,33210260:256053 +k1,18428:12709583,33210260:256053 +k1,18428:13984721,33210260:256053 +k1,18428:17294752,33210260:256053 +k1,18428:19970394,33210260:256053 +k1,18428:21716735,33210260:256052 +k1,18428:22438749,33210260:256053 +k1,18428:24358106,33210260:256053 +k1,18428:25145656,33210260:256053 +k1,18428:26017747,33210260:256053 +k1,18428:27539956,33210260:256053 +k1,18428:29022188,33210260:256053 +k1,18428:29809738,33210260:256053 +k1,18428:31132062,33210260:256053 +k1,18428:32583029,33210260:0 +) +(1,18429:6764466,34075340:25818563,513147,126483 +k1,18428:9669525,34075340:235778 +k1,18428:11948061,34075340:235779 +k1,18428:13202924,34075340:235778 +k1,18428:15092176,34075340:235779 +k1,18428:16658990,34075340:235778 +k1,18428:17426265,34075340:235778 +k1,18428:20619683,34075340:235779 +k1,18428:21541623,34075340:235778 +k1,18428:23244097,34075340:235778 +k1,18428:23945837,34075340:235779 +k1,18428:25200700,34075340:235778 +k1,18428:28411158,34075340:235779 +k1,18428:31591469,34075340:235778 +k1,18428:32583029,34075340:0 +) +(1,18429:6764466,34940420:25818563,513147,134348 +k1,18428:11192617,34940420:225327 +k1,18428:12365595,34940420:225327 +k1,18428:14342699,34940420:225327 +k1,18428:17914294,34940420:225327 +k1,18428:19741321,34940420:225327 +k1,18428:22981933,34940420:225301 +k1,18428:24868598,34940420:225327 +k1,18428:27620338,34940420:225327 +k1,18428:28458427,34940420:225327 +k1,18428:30285454,34940420:225327 +k1,18428:30866641,34940420:225327 +k1,18428:32583029,34940420:0 +) +(1,18429:6764466,35805500:25818563,513147,134348 +k1,18428:9422103,35805500:171856 +k1,18428:10253250,35805500:171855 +k1,18428:13771374,35805500:171856 +k1,18428:14571064,35805500:171855 +k1,18428:17576041,35805500:171856 +k1,18428:18904607,35805500:171856 +k1,18428:20180744,35805500:171855 +k1,18428:21445085,35805500:171856 +k1,18428:22820182,35805500:171856 +k1,18428:26629940,35805500:171855 +k1,18428:27453224,35805500:171856 +k1,18428:29100294,35805500:171855 +k1,18428:31116333,35805500:171856 +k1,18428:32583029,35805500:0 +) +(1,18429:6764466,36670580:25818563,505283,134348 +k1,18428:8750141,36670580:250282 +k1,18428:10702393,36670580:250282 +k1,18428:14040075,36670580:250281 +k1,18428:15481802,36670580:250282 +k1,18428:18904682,36670580:250282 +k1,18428:20301189,36670580:250282 +k1,18428:23062811,36670580:250282 +k1,18428:24707043,36670580:250281 +k1,18428:26465964,36670580:250282 +k1,18428:29941273,36670580:250282 +k1,18428:32583029,36670580:0 +) +(1,18429:6764466,37535660:25818563,513147,134348 +k1,18428:8971659,37535660:252909 +k1,18428:9840606,37535660:252909 +k1,18428:11112601,37535660:252910 +k1,18428:13018983,37535660:252909 +k1,18428:15300887,37535660:252909 +k1,18428:19747445,37535660:252909 +k1,18428:21019439,37535660:252909 +k1,18428:23798761,37535660:252909 +k1,18428:24999322,37535660:252910 +k1,18428:26913569,37535660:252909 +k1,18428:28357923,37535660:252909 +k1,18428:32583029,37535660:0 +) +(1,18429:6764466,38400740:25818563,513147,134348 +k1,18428:9984761,38400740:245616 +k1,18428:11495222,38400740:245616 +k1,18428:12356876,38400740:245616 +k1,18428:13017288,38400740:245569 +k1,18428:13794401,38400740:245616 +k1,18428:18419134,38400740:245617 +k1,18428:22229253,38400740:245616 +k1,18428:23671556,38400740:245616 +k1,18428:25248208,38400740:245616 +k1,18428:28395103,38400740:245616 +k1,18428:30153945,38400740:245616 +k1,18428:31161089,38400740:245616 +k1,18428:31821501,38400740:245569 +k1,18428:32583029,38400740:0 +) +(1,18429:6764466,39265820:25818563,513147,134348 +k1,18428:9218516,39265820:188470 +k1,18428:12109036,39265820:188471 +k1,18428:13106876,39265820:188470 +k1,18428:14314432,39265820:188471 +k1,18428:16768482,39265820:188470 +k1,18428:18798514,39265820:188470 +k1,18428:21498980,39265820:188471 +k1,18428:22346742,39265820:188470 +k1,18428:23554298,39265820:188471 +k1,18428:26796746,39265820:188470 +k1,18428:29404806,39265820:188471 +k1,18428:31478747,39265820:188470 +k1,18428:32583029,39265820:0 +) +(1,18429:6764466,40130900:25818563,505283,134348 +k1,18428:8224356,40130900:174074 +k1,18428:9727499,40130900:174073 +k1,18428:10553001,40130900:174074 +k1,18428:13223340,40130900:174073 +k1,18428:15747535,40130900:174074 +k1,18428:16573037,40130900:174074 +k1,18428:17766195,40130900:174073 +k1,18428:20360514,40130900:174074 +k1,18428:21217473,40130900:174074 +k1,18428:23384496,40130900:174073 +k1,18428:26863551,40130900:174074 +k1,18428:28775639,40130900:174073 +k1,18428:31251993,40130900:174074 +k1,18429:32583029,40130900:0 +) +(1,18429:6764466,40995980:25818563,513147,134348 +k1,18428:8369705,40995980:200147 +k1,18428:9588937,40995980:200147 +k1,18428:11442557,40995980:200147 +k1,18428:13138891,40995980:200147 +k1,18428:14148408,40995980:200147 +k1,18428:14704415,40995980:200147 +k1,18428:17666905,40995980:200147 +k1,18428:20943311,40995980:200146 +k1,18428:22711079,40995980:200147 +k1,18428:23930311,40995980:200147 +k1,18428:25287168,40995980:200147 +k1,18428:27406209,40995980:200147 +k1,18428:27962216,40995980:200147 +k1,18428:29993439,40995980:200147 +k1,18428:31400759,40995980:200147 +k1,18429:32583029,40995980:0 +) +(1,18429:6764466,41861060:25818563,513147,134348 +k1,18428:8541599,41861060:222619 +k1,18428:9907821,41861060:222619 +k1,18428:10896556,41861060:222619 +k1,18428:11650672,41861060:222619 +k1,18428:13233818,41861060:222619 +k1,18428:15900275,41861060:222619 +k1,18428:16809056,41861060:222619 +k1,18428:17446494,41861060:222595 +k1,18428:18773395,41861060:222619 +k1,18428:19743780,41861060:222619 +k1,18428:22431863,41861060:222619 +k1,18428:23305910,41861060:222619 +k1,18428:24621014,41861060:222619 +k1,18428:27089552,41861060:222619 +k1,18428:28973509,41861060:222619 +k1,18428:30387573,41861060:222619 +k1,18428:32583029,41861060:0 +) +(1,18429:6764466,42726140:25818563,513147,134348 +k1,18428:8667705,42726140:241901 +k1,18428:10303557,42726140:241901 +k1,18428:13571254,42726140:241900 +k1,18428:16663971,42726140:241901 +k1,18428:17667400,42726140:241901 +k1,18428:20819755,42726140:241901 +k1,18428:24312895,42726140:241900 +k1,18428:25746241,42726140:241901 +k1,18428:29445165,42726140:241901 +k1,18429:32583029,42726140:0 +) +(1,18429:6764466,43591220:25818563,505283,126483 +g1,18428:9185366,43591220 +g1,18428:12565057,43591220 +g1,18428:15872003,43591220 +g1,18428:16687270,43591220 +g1,18428:21080803,43591220 +g1,18428:22271592,43591220 +k1,18429:32583029,43591220:7360351 +g1,18429:32583029,43591220 +) +] +g1,18429:32583029,43717703 +) +h1,18429:6630773,43717703:0,0,0 +(1,18432:6630773,44582783:25952256,505283,134348 +h1,18431:6630773,44582783:983040,0,0 +k1,18431:8564540,44582783:322892 +k1,18431:9906516,44582783:322891 +k1,18431:13447226,44582783:322892 +k1,18431:16935507,44582783:322892 +k1,18431:18652350,44582783:322892 +k1,18431:21133997,44582783:322891 +k1,18431:22523160,44582783:322892 +k1,18431:25095248,44582783:322892 +k1,18431:26286492,44582783:322892 +k1,18431:27701868,44582783:322891 +(1,18431:27701868,44582783:0,452978,122846 +r1,18434:31577252,44582783:3875384,575824,122846 +k1,18431:27701868,44582783:-3875384 +) +(1,18431:27701868,44582783:3875384,452978,122846 +k1,18431:27701868,44582783:3277 +h1,18431:31573975,44582783:0,411205,112570 +) +k1,18431:31900144,44582783:322892 +k1,18432:32583029,44582783:0 +) +] +(1,18434:32583029,45706769:0,0,0 +g1,18434:32583029,45706769 +) +) +] +(1,18434:6630773,47279633:25952256,0,0 +h1,18434:6630773,47279633:25952256,0,0 +) +] +(1,18434:4262630,4025873:0,0,0 +[1,18434:-473656,4025873:0,0,0 +(1,18434:-473656,-710413:0,0,0 +(1,18434:-473656,-710413:0,0,0 +g1,18434:-473656,-710413 +) +g1,18434:-473656,-710413 +) +] +) +] +!27728 +}306 Input:2835:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2836:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2837:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -315834,878 +313565,990 @@ Input:2845:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConso Input:2846:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2847:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2848:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2849:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2850:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2851:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2852:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!2080 -{324 -[1,18383:4262630,47279633:28320399,43253760,0 -(1,18383:4262630,4025873:0,0,0 -[1,18383:-473656,4025873:0,0,0 -(1,18383:-473656,-710413:0,0,0 -(1,18383:-473656,-644877:0,0,0 -k1,18383:-473656,-644877:-65536 +!1328 +{307 +[1,18502:4262630,47279633:28320399,43253760,0 +(1,18502:4262630,4025873:0,0,0 +[1,18502:-473656,4025873:0,0,0 +(1,18502:-473656,-710413:0,0,0 +(1,18502:-473656,-644877:0,0,0 +k1,18502:-473656,-644877:-65536 ) -(1,18383:-473656,4736287:0,0,0 -k1,18383:-473656,4736287:5209943 +(1,18502:-473656,4736287:0,0,0 +k1,18502:-473656,4736287:5209943 ) -g1,18383:-473656,-710413 +g1,18502:-473656,-710413 ) ] ) -[1,18383:6630773,47279633:25952256,43253760,0 -[1,18383:6630773,4812305:25952256,786432,0 -(1,18383:6630773,4812305:25952256,485622,11795 -(1,18383:6630773,4812305:25952256,485622,11795 -g1,18383:3078558,4812305 -[1,18383:3078558,4812305:0,0,0 -(1,18383:3078558,2439708:0,1703936,0 -k1,18383:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,18383:2537886,2439708:1179648,16384,0 +[1,18502:6630773,47279633:25952256,43253760,0 +[1,18502:6630773,4812305:25952256,786432,0 +(1,18502:6630773,4812305:25952256,513147,126483 +(1,18502:6630773,4812305:25952256,513147,126483 +g1,18502:3078558,4812305 +[1,18502:3078558,4812305:0,0,0 +(1,18502:3078558,2439708:0,1703936,0 +k1,18502:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,18502:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,18383:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,18502:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,18383:3078558,4812305:0,0,0 -(1,18383:3078558,2439708:0,1703936,0 -g1,18383:29030814,2439708 -g1,18383:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,18383:36151628,1915420:16384,1179648,0 +[1,18502:3078558,4812305:0,0,0 +(1,18502:3078558,2439708:0,1703936,0 +g1,18502:29030814,2439708 +g1,18502:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,18502:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,18383:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,18502:37855564,2439708:1179648,16384,0 ) ) -k1,18383:3078556,2439708:-34777008 +k1,18502:3078556,2439708:-34777008 ) ] -[1,18383:3078558,4812305:0,0,0 -(1,18383:3078558,49800853:0,16384,2228224 -k1,18383:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,18383:2537886,49800853:1179648,16384,0 +[1,18502:3078558,4812305:0,0,0 +(1,18502:3078558,49800853:0,16384,2228224 +k1,18502:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,18502:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,18383:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,18502:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,18383:3078558,4812305:0,0,0 -(1,18383:3078558,49800853:0,16384,2228224 -g1,18383:29030814,49800853 -g1,18383:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,18383:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] -) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,18383:37855564,49800853:1179648,16384,0 -) -) -k1,18383:3078556,49800853:-34777008 -) -] -g1,18383:6630773,4812305 -g1,18383:6630773,4812305 -g1,18383:10347975,4812305 -k1,18383:31387651,4812305:21039676 -) -) -] -[1,18383:6630773,45706769:25952256,40108032,0 -(1,18383:6630773,45706769:25952256,40108032,0 -(1,18383:6630773,45706769:0,0,0 -g1,18383:6630773,45706769 -) -[1,18383:6630773,45706769:25952256,40108032,0 -v1,18345:6630773,6254097:0,393216,0 -(1,18345:6630773,9900083:25952256,4039202,196608 -g1,18345:6630773,9900083 -g1,18345:6630773,9900083 -g1,18345:6434165,9900083 -(1,18345:6434165,9900083:0,4039202,196608 -r1,18383:32779637,9900083:26345472,4235810,196608 -k1,18345:6434165,9900083:-26345472 -) -(1,18345:6434165,9900083:26345472,4039202,196608 -[1,18345:6630773,9900083:25952256,3842594,0 -(1,18338:6630773,6461715:25952256,404226,107478 -(1,18337:6630773,6461715:0,0,0 -g1,18337:6630773,6461715 -g1,18337:6630773,6461715 -g1,18337:6303093,6461715 -(1,18337:6303093,6461715:0,0,0 -) -g1,18337:6630773,6461715 -) -k1,18338:6630773,6461715:0 -g1,18338:10424522,6461715 -g1,18338:11056814,6461715 -k1,18338:11056814,6461715:0 -h1,18338:13269834,6461715:0,0,0 -k1,18338:32583030,6461715:19313196 -g1,18338:32583030,6461715 -) -(1,18339:6630773,7127893:25952256,410518,107478 -h1,18339:6630773,7127893:0,0,0 -g1,18339:6946919,7127893 -g1,18339:7263065,7127893 -g1,18339:7579211,7127893 -g1,18339:7895357,7127893 -g1,18339:8211503,7127893 -g1,18339:8527649,7127893 -g1,18339:8843795,7127893 -g1,18339:10740670,7127893 -g1,18339:11372962,7127893 -g1,18339:13269837,7127893 -g1,18339:13902129,7127893 -g1,18339:14534421,7127893 -g1,18339:16115150,7127893 -g1,18339:18012024,7127893 -g1,18339:18644316,7127893 -g1,18339:22754210,7127893 -g1,18339:24334939,7127893 -g1,18339:24967231,7127893 -g1,18339:26231814,7127893 -g1,18339:28128688,7127893 -g1,18339:28760980,7127893 -g1,18339:30657854,7127893 -h1,18339:30974000,7127893:0,0,0 -k1,18339:32583029,7127893:1609029 -g1,18339:32583029,7127893 -) -(1,18340:6630773,7794071:25952256,404226,76021 -h1,18340:6630773,7794071:0,0,0 -g1,18340:6946919,7794071 -g1,18340:7263065,7794071 -g1,18340:11372959,7794071 -h1,18340:11689105,7794071:0,0,0 -k1,18340:32583029,7794071:20893924 -g1,18340:32583029,7794071 -) -(1,18341:6630773,8460249:25952256,404226,107478 -h1,18341:6630773,8460249:0,0,0 -g1,18341:6946919,8460249 -g1,18341:7263065,8460249 -g1,18341:12637542,8460249 -g1,18341:13269834,8460249 -g1,18341:14850564,8460249 -h1,18341:15166710,8460249:0,0,0 -k1,18341:32583030,8460249:17416320 -g1,18341:32583030,8460249 -) -(1,18342:6630773,9126427:25952256,404226,107478 -h1,18342:6630773,9126427:0,0,0 -g1,18342:6946919,9126427 -g1,18342:7263065,9126427 -g1,18342:14218270,9126427 -g1,18342:14850562,9126427 -g1,18342:17695874,9126427 -g1,18342:19276603,9126427 -g1,18342:19908895,9126427 -k1,18342:19908895,9126427:0 -h1,18342:20541187,9126427:0,0,0 -k1,18342:32583029,9126427:12041842 -g1,18342:32583029,9126427 -) -(1,18343:6630773,9792605:25952256,404226,107478 -h1,18343:6630773,9792605:0,0,0 -g1,18343:6946919,9792605 -g1,18343:7263065,9792605 -g1,18343:7579211,9792605 -g1,18343:7895357,9792605 -g1,18343:8211503,9792605 -g1,18343:8527649,9792605 -g1,18343:8843795,9792605 -g1,18343:9159941,9792605 -g1,18343:9476087,9792605 -g1,18343:9792233,9792605 -g1,18343:10108379,9792605 -g1,18343:10424525,9792605 -g1,18343:10740671,9792605 -g1,18343:11056817,9792605 -g1,18343:11372963,9792605 -g1,18343:11689109,9792605 -g1,18343:12005255,9792605 -g1,18343:12321401,9792605 -g1,18343:18328169,9792605 -g1,18343:18960461,9792605 -g1,18343:20541190,9792605 -g1,18343:24967230,9792605 -g1,18343:25599522,9792605 -h1,18343:26864105,9792605:0,0,0 -k1,18343:32583029,9792605:5718924 -g1,18343:32583029,9792605 -) -] -) -g1,18345:32583029,9900083 -g1,18345:6630773,9900083 -g1,18345:6630773,9900083 -g1,18345:32583029,9900083 -g1,18345:32583029,9900083 -) -h1,18345:6630773,10096691:0,0,0 -(1,18348:6630773,19770181:25952256,9083666,0 -k1,18348:10523651,19770181:3892878 -h1,18347:10523651,19770181:0,0,0 -(1,18347:10523651,19770181:18166500,9083666,0 -(1,18347:10523651,19770181:18167376,9083688,0 -(1,18347:10523651,19770181:18167376,9083688,0 -(1,18347:10523651,19770181:0,9083688,0 -(1,18347:10523651,19770181:0,14208860,0 -(1,18347:10523651,19770181:28417720,14208860,0 -) -k1,18347:10523651,19770181:-28417720 -) -) -g1,18347:28691027,19770181 -) -) -) -g1,18348:28690151,19770181 -k1,18348:32583029,19770181:3892878 -) -(1,18357:6630773,21861441:25952256,555811,12975 -(1,18357:6630773,21861441:2450326,534184,12975 -g1,18357:6630773,21861441 -g1,18357:9081099,21861441 -) -g1,18357:10708162,21861441 -k1,18357:32583030,21861441:19728040 -g1,18357:32583030,21861441 -) -(1,18362:6630773,23096145:25952256,513147,134348 -k1,18361:8030638,23096145:203178 -k1,18361:10760229,23096145:203178 -k1,18361:11911059,23096145:203179 -k1,18361:13995120,23096145:203178 -k1,18361:14814336,23096145:203178 -k1,18361:17846047,23096145:203178 -k1,18361:18580722,23096145:203178 -k1,18361:21540344,23096145:203178 -k1,18361:22394951,23096145:203179 -(1,18361:22394951,23096145:0,452978,115847 -r1,18383:29084029,23096145:6689078,568825,115847 -k1,18361:22394951,23096145:-6689078 -) -(1,18361:22394951,23096145:6689078,452978,115847 -k1,18361:22394951,23096145:3277 -h1,18361:29080752,23096145:0,411205,112570 -) -k1,18361:29287207,23096145:203178 -k1,18361:31375856,23096145:203178 -k1,18361:32583029,23096145:0 -) -(1,18362:6630773,23937633:25952256,513147,134348 -k1,18361:9700900,23937633:213413 -k1,18361:10565742,23937633:213414 -k1,18361:11526921,23937633:213413 -k1,18361:13253560,23937633:213413 -k1,18361:14414624,23937633:213413 -k1,18361:16362776,23937633:213414 -k1,18361:20366791,23937633:213413 -k1,18361:23419224,23937633:213413 -k1,18361:24284066,23937633:213414 -k1,18361:25245245,23937633:213413 -k1,18361:26477743,23937633:213413 -k1,18361:28344629,23937633:213413 -k1,18361:29174081,23937633:213414 -k1,18361:30839116,23937633:213413 -k1,18361:32583029,23937633:0 -) -(1,18362:6630773,24779121:25952256,513147,134348 -k1,18361:7524129,24779121:234064 -k1,18361:8114054,24779121:234065 -k1,18361:9625415,24779121:234064 -k1,18361:11085659,24779121:234065 -k1,18361:12412208,24779121:234064 -k1,18361:13305564,24779121:234064 -k1,18361:17330231,24779121:234065 -k1,18361:18095792,24779121:234064 -k1,18361:21419879,24779121:234064 -k1,18361:22269982,24779121:234065 -k1,18361:24782733,24779121:234064 -h1,18361:26151780,24779121:0,0,0 -k1,18361:26766609,24779121:234065 -k1,18361:29535606,24779121:234064 -k1,18361:32583029,24779121:0 -) -(1,18362:6630773,25620609:25952256,505283,134348 -k1,18361:9568731,25620609:177582 -k1,18361:11812664,25620609:177583 -k1,18361:13274752,25620609:177582 -k1,18361:15428245,25620609:177583 -(1,18361:15428245,25620609:0,452978,122846 -r1,18383:19303629,25620609:3875384,575824,122846 -k1,18361:15428245,25620609:-3875384 -) -(1,18361:15428245,25620609:3875384,452978,122846 -k1,18361:15428245,25620609:3277 -h1,18361:19300352,25620609:0,411205,112570 -) -k1,18361:19481211,25620609:177582 -k1,18361:20274831,25620609:177582 -k1,18361:22916568,25620609:177583 -k1,18361:23745578,25620609:177582 -k1,18361:24942246,25620609:177583 -k1,18361:28184292,25620609:177582 -k1,18361:30048772,25620609:177583 -k1,18361:31298523,25620609:177582 -k1,18361:32583029,25620609:0 -) -(1,18362:6630773,26462097:25952256,505283,126483 -k1,18361:9541829,26462097:142815 -k1,18361:10336072,26462097:142815 -(1,18361:10336072,26462097:0,459977,122846 -r1,18383:13508032,26462097:3171960,582823,122846 -k1,18361:10336072,26462097:-3171960 -) -(1,18361:10336072,26462097:3171960,459977,122846 -k1,18361:10336072,26462097:3277 -h1,18361:13504755,26462097:0,411205,112570 -) -k1,18361:13824518,26462097:142816 -k1,18361:16038271,26462097:142815 -k1,18361:17465592,26462097:142815 -k1,18361:18627492,26462097:142815 -k1,18361:21153197,26462097:142816 -k1,18361:21912050,26462097:142815 -(1,18361:21912050,26462097:0,452978,115847 -r1,18383:23325451,26462097:1413401,568825,115847 -k1,18361:21912050,26462097:-1413401 -) -(1,18361:21912050,26462097:1413401,452978,115847 -k1,18361:21912050,26462097:3277 -h1,18361:23322174,26462097:0,411205,112570 -) -k1,18361:23468266,26462097:142815 -k1,18361:26196476,26462097:142815 -k1,18361:26990720,26462097:142816 -k1,18361:28152620,26462097:142815 -(1,18361:28152620,26462097:0,452978,115847 -r1,18383:29917733,26462097:1765113,568825,115847 -k1,18361:28152620,26462097:-1765113 -) -(1,18361:28152620,26462097:1765113,452978,115847 -k1,18361:28152620,26462097:3277 -h1,18361:29914456,26462097:0,411205,112570 -) -k1,18361:30060548,26462097:142815 -k1,18362:32583029,26462097:0 -) -(1,18362:6630773,27303585:25952256,513147,134348 -k1,18361:7630251,27303585:134403 -k1,18361:8756215,27303585:134404 -k1,18361:10214445,27303585:134403 -k1,18361:11008141,27303585:134404 -k1,18361:13432372,27303585:134403 -k1,18361:16928772,27303585:134403 -k1,18361:19734423,27303585:134404 -k1,18361:21849324,27303585:134403 -k1,18361:22643020,27303585:134404 -k1,18361:26758080,27303585:134403 -k1,18361:28844146,27303585:134404 -k1,18361:30420996,27303585:134403 -k1,18361:32583029,27303585:0 -) -(1,18362:6630773,28145073:25952256,505283,134348 -k1,18361:9338032,28145073:225411 -k1,18361:11395829,28145073:225410 -k1,18361:15128727,28145073:225411 -k1,18361:16345697,28145073:225410 -k1,18361:19481562,28145073:225411 -k1,18361:22664613,28145073:225411 -(1,18361:22664613,28145073:0,452978,122846 -r1,18383:26891709,28145073:4227096,575824,122846 -k1,18361:22664613,28145073:-4227096 -) -(1,18361:22664613,28145073:4227096,452978,122846 -k1,18361:22664613,28145073:3277 -h1,18361:26888432,28145073:0,411205,112570 -) -k1,18361:27290789,28145073:225410 -(1,18361:27290789,28145073:0,452978,122846 -r1,18383:31166173,28145073:3875384,575824,122846 -k1,18361:27290789,28145073:-3875384 -) -(1,18361:27290789,28145073:3875384,452978,122846 -k1,18361:27290789,28145073:3277 -h1,18361:31162896,28145073:0,411205,112570 -) -k1,18361:31391584,28145073:225411 -k1,18362:32583029,28145073:0 -) -(1,18362:6630773,28986561:25952256,452978,122846 -(1,18361:6630773,28986561:0,452978,122846 -r1,18383:10506157,28986561:3875384,575824,122846 -k1,18361:6630773,28986561:-3875384 -) -(1,18361:6630773,28986561:3875384,452978,122846 -k1,18361:6630773,28986561:3277 -h1,18361:10502880,28986561:0,411205,112570 -) -k1,18362:32583029,28986561:21903202 -g1,18362:32583029,28986561 -) -v1,18364:6630773,30352337:0,393216,0 -(1,18365:6630773,33423868:25952256,3464747,0 -g1,18365:6630773,33423868 -g1,18365:6303093,33423868 -r1,18383:6401397,33423868:98304,3464747,0 -g1,18365:6600626,33423868 -g1,18365:6797234,33423868 -[1,18365:6797234,33423868:25785795,3464747,0 -(1,18365:6797234,30772921:25785795,813800,267386 -(1,18364:6797234,30772921:0,813800,267386 -r1,18383:8134168,30772921:1336934,1081186,267386 -k1,18364:6797234,30772921:-1336934 -) -(1,18364:6797234,30772921:1336934,813800,267386 -) -k1,18364:8284795,30772921:150627 -k1,18364:8612475,30772921:327680 -k1,18364:10563377,30772921:150628 -k1,18364:11998510,30772921:150627 -(1,18364:11998510,30772921:0,452978,122846 -r1,18383:16225606,30772921:4227096,575824,122846 -k1,18364:11998510,30772921:-4227096 -) -(1,18364:11998510,30772921:4227096,452978,122846 -k1,18364:11998510,30772921:3277 -h1,18364:16222329,30772921:0,411205,112570 -) -k1,18364:16549904,30772921:150628 -(1,18364:16549904,30772921:0,452978,122846 -r1,18383:20425288,30772921:3875384,575824,122846 -k1,18364:16549904,30772921:-3875384 -) -(1,18364:16549904,30772921:3875384,452978,122846 -k1,18364:16549904,30772921:3277 -h1,18364:20422011,30772921:0,411205,112570 -) -k1,18364:20575915,30772921:150627 -k1,18364:21917988,30772921:150628 -(1,18364:21917988,30772921:0,452978,122846 -r1,18383:25793372,30772921:3875384,575824,122846 -k1,18364:21917988,30772921:-3875384 -) -(1,18364:21917988,30772921:3875384,452978,122846 -k1,18364:21917988,30772921:3277 -h1,18364:25790095,30772921:0,411205,112570 -) -k1,18364:25943999,30772921:150627 -k1,18364:27227089,30772921:150628 -k1,18364:29223865,30772921:150627 -k1,18364:30466978,30772921:150628 -k1,18364:30973465,30772921:150627 -k1,18365:32583029,30772921:0 -) -(1,18365:6797234,31614409:25785795,513147,134348 -k1,18364:8466623,31614409:258399 -k1,18364:11617781,31614409:258399 -k1,18364:13443801,31614409:258399 -k1,18364:14721285,31614409:258399 -k1,18364:16862533,31614409:258399 -k1,18364:18571899,31614409:258399 -k1,18364:19591827,31614409:258400 -k1,18364:22115806,31614409:258399 -k1,18364:23754393,31614409:258399 -k1,18364:24828060,31614409:258399 -k1,18364:26152730,31614409:258399 -k1,18364:28535806,31614409:258399 -k1,18364:29425972,31614409:258399 -k1,18364:31563944,31614409:258399 -k1,18364:32583029,31614409:0 -) -(1,18365:6797234,32455897:25785795,513147,134348 -k1,18364:9820901,32455897:216105 -k1,18364:12217389,32455897:216105 -k1,18364:13181260,32455897:216105 -k1,18364:16158397,32455897:216105 -k1,18364:17060664,32455897:216105 -k1,18364:18047472,32455897:216105 -k1,18364:21335904,32455897:216104 -k1,18364:22203437,32455897:216105 -k1,18364:24116269,32455897:216105 -k1,18364:27358171,32455897:216105 -k1,18364:28257161,32455897:216105 -k1,18364:29981905,32455897:216105 -k1,18365:32583029,32455897:0 -) -(1,18365:6797234,33297385:25785795,505283,126483 -g1,18364:7889063,33297385 -(1,18364:7889063,33297385:0,452978,115847 -r1,18383:11764447,33297385:3875384,568825,115847 -k1,18364:7889063,33297385:-3875384 -) -(1,18364:7889063,33297385:3875384,452978,115847 -k1,18364:7889063,33297385:3277 -h1,18364:11761170,33297385:0,411205,112570 -) -g1,18364:11963676,33297385 -g1,18364:15060252,33297385 -g1,18364:16194024,33297385 -g1,18364:17044681,33297385 -(1,18364:17044681,33297385:0,414482,115847 -r1,18383:18458082,33297385:1413401,530329,115847 -k1,18364:17044681,33297385:-1413401 -) -(1,18364:17044681,33297385:1413401,414482,115847 -k1,18364:17044681,33297385:3277 -h1,18364:18454805,33297385:0,411205,112570 -) -k1,18365:32583029,33297385:13951277 -g1,18365:32583029,33297385 -) -] -g1,18365:32583029,33423868 -) -h1,18365:6630773,33423868:0,0,0 -(1,18369:6630773,34789644:25952256,513147,134348 -h1,18368:6630773,34789644:983040,0,0 -k1,18368:9157076,34789644:346576 -k1,18368:12028098,34789644:346575 -k1,18368:13033966,34789644:346576 -k1,18368:15276498,34789644:346575 -k1,18368:16384602,34789644:346576 -k1,18368:19538739,34789644:346575 -k1,18368:20241175,34789644:346576 -k1,18368:21581276,34789644:346575 -k1,18368:22587144,34789644:346576 -k1,18368:24323082,34789644:346575 -k1,18368:26876255,34789644:346576 -k1,18368:27874258,34789644:346575 -k1,18368:29239919,34789644:346576 -(1,18368:29239919,34789644:0,452978,115847 -r1,18383:31005032,34789644:1765113,568825,115847 -k1,18368:29239919,34789644:-1765113 -) -(1,18368:29239919,34789644:1765113,452978,115847 -k1,18368:29239919,34789644:3277 -h1,18368:31001755,34789644:0,411205,112570 -) -k1,18368:31351607,34789644:346575 -k1,18369:32583029,34789644:0 -) -(1,18369:6630773,35631132:25952256,513147,134348 -k1,18368:8613950,35631132:222224 -k1,18368:9367671,35631132:222224 -k1,18368:11167348,35631132:222225 -k1,18368:12783523,35631132:222224 -(1,18368:12783523,35631132:0,452978,122846 -r1,18383:17010619,35631132:4227096,575824,122846 -k1,18368:12783523,35631132:-4227096 -) -(1,18368:12783523,35631132:4227096,452978,122846 -k1,18368:12783523,35631132:3277 -h1,18368:17007342,35631132:0,411205,112570 -) -k1,18368:17406513,35631132:222224 -k1,18368:21361668,35631132:222224 -k1,18368:25575035,35631132:222224 -k1,18368:26988704,35631132:222224 -k1,18368:28908311,35631132:222225 -k1,18368:30726992,35631132:222224 -k1,18368:31635378,35631132:222224 -k1,18369:32583029,35631132:0 -) -(1,18369:6630773,36472620:25952256,505283,134348 -(1,18368:6630773,36472620:0,452978,122846 -r1,18383:10506157,36472620:3875384,575824,122846 -k1,18368:6630773,36472620:-3875384 -) -(1,18368:6630773,36472620:3875384,452978,122846 -k1,18368:6630773,36472620:3277 -h1,18368:10502880,36472620:0,411205,112570 -) -k1,18368:10783135,36472620:276978 -k1,18368:12251557,36472620:276977 -k1,18368:13520095,36472620:276978 -k1,18368:16168820,36472620:276977 -k1,18368:17097226,36472620:276978 -k1,18368:18393289,36472620:276978 -k1,18368:20553115,36472620:276977 -k1,18368:22569419,36472620:276978 -k1,18368:24336685,36472620:276977 -(1,18368:24336685,36472620:0,452978,115847 -r1,18383:26453510,36472620:2116825,568825,115847 -k1,18368:24336685,36472620:-2116825 -) -(1,18368:24336685,36472620:2116825,452978,115847 -k1,18368:24336685,36472620:3277 -h1,18368:26450233,36472620:0,411205,112570 -) -k1,18368:26730488,36472620:276978 -k1,18368:29297293,36472620:276977 -k1,18368:30806348,36472620:276978 -k1,18369:32583029,36472620:0 -) -(1,18369:6630773,37314108:25952256,513147,134348 -k1,18368:10164201,37314108:271046 -k1,18368:11094539,37314108:271046 -k1,18368:13945737,37314108:271046 -k1,18368:16585909,37314108:271046 -k1,18368:17961237,37314108:271046 -k1,18368:20777702,37314108:271047 -k1,18368:21734910,37314108:271046 -k1,18368:25021267,37314108:271046 -k1,18368:26616140,37314108:271046 -k1,18368:27546478,37314108:271046 -k1,18368:29206887,37314108:271046 -k1,18368:31858201,37314108:271046 -k1,18368:32583029,37314108:0 -) -(1,18369:6630773,38155596:25952256,513147,134348 -k1,18368:8018637,38155596:184623 -k1,18368:11210708,38155596:184624 -k1,18368:14017426,38155596:184623 -k1,18368:15221134,38155596:184623 -k1,18368:16498243,38155596:184624 -k1,18368:17350022,38155596:184623 -(1,18368:17350022,38155596:0,452978,115847 -r1,18383:19466847,38155596:2116825,568825,115847 -k1,18368:17350022,38155596:-2116825 -) -(1,18368:17350022,38155596:2116825,452978,115847 -k1,18368:17350022,38155596:3277 -h1,18368:19463570,38155596:0,411205,112570 -) -k1,18368:19651470,38155596:184623 -k1,18368:22125922,38155596:184624 -k1,18368:22961973,38155596:184623 -k1,18368:24764026,38155596:184624 -k1,18368:25967734,38155596:184623 -k1,18368:27715391,38155596:184623 -k1,18368:29096702,38155596:184624 -k1,18368:31591469,38155596:184623 -k1,18368:32583029,38155596:0 -) -(1,18369:6630773,38997084:25952256,505283,134348 -k1,18368:9164976,38997084:184082 -k1,18368:10035220,38997084:184082 -k1,18368:11851148,38997084:184082 -(1,18368:11851148,38997084:0,452978,122846 -r1,18383:13264549,38997084:1413401,575824,122846 -k1,18368:11851148,38997084:-1413401 -) -(1,18368:11851148,38997084:1413401,452978,122846 -k1,18368:11851148,38997084:3277 -h1,18368:13261272,38997084:0,411205,112570 -) -k1,18368:13448631,38997084:184082 -k1,18368:16096211,38997084:184082 -k1,18368:19124556,38997084:184082 -k1,18368:19924676,38997084:184082 -k1,18368:20464618,38997084:184082 -k1,18368:21888641,38997084:184082 -k1,18368:23264168,38997084:184082 -k1,18368:25413675,38997084:184082 -k1,18368:26249185,38997084:184082 -k1,18368:27452352,38997084:184082 -(1,18368:27452352,38997084:0,452978,122846 -r1,18383:29569177,38997084:2116825,575824,122846 -k1,18368:27452352,38997084:-2116825 -) -(1,18368:27452352,38997084:2116825,452978,122846 -k1,18368:27452352,38997084:3277 -h1,18368:29565900,38997084:0,411205,112570 -) -k1,18368:29753259,38997084:184082 -k1,18368:31896867,38997084:184082 -k1,18368:32583029,38997084:0 -) -(1,18369:6630773,39838572:25952256,505283,126483 -g1,18368:7185862,39838572 -g1,18368:8668286,39838572 -k1,18369:32583029,39838572:22183282 -g1,18369:32583029,39838572 -) -(1,18371:6630773,40680060:25952256,513147,134348 -h1,18370:6630773,40680060:983040,0,0 -k1,18370:8803112,40680060:235750 -k1,18370:10344994,40680060:235749 -k1,18370:13312940,40680060:235750 -k1,18370:13904550,40680060:235750 -(1,18370:13904550,40680060:0,452978,115847 -r1,18383:16021375,40680060:2116825,568825,115847 -k1,18370:13904550,40680060:-2116825 -) -(1,18370:13904550,40680060:2116825,452978,115847 -k1,18370:13904550,40680060:3277 -h1,18370:16018098,40680060:0,411205,112570 -) -k1,18370:16257124,40680060:235749 -k1,18370:19854871,40680060:235750 -k1,18370:23598762,40680060:235749 -k1,18370:25402133,40680060:235750 -k1,18370:26656968,40680060:235750 -k1,18370:28455751,40680060:235749 -k1,18370:31896867,40680060:235750 -k1,18370:32583029,40680060:0 -) -(1,18371:6630773,41521548:25952256,505283,134348 -k1,18370:9845314,41521548:239862 -k1,18370:12454958,41521548:239862 -k1,18370:14280790,41521548:239861 -k1,18370:15723893,41521548:239862 -k1,18370:17775170,41521548:239862 -k1,18370:18631070,41521548:239862 -k1,18370:19226792,41521548:239862 -k1,18370:20633850,41521548:239862 -k1,18370:22065156,41521548:239861 -k1,18370:23922447,41521548:239862 -k1,18370:25365550,41521548:239862 -k1,18370:26598938,41521548:239862 -k1,18370:27524962,41521548:239862 -k1,18370:28120683,41521548:239861 -k1,18370:30743434,41521548:239862 -k1,18370:31599334,41521548:239862 -k1,18371:32583029,41521548:0 -) -(1,18371:6630773,42363036:25952256,513147,126483 -k1,18370:8539359,42363036:206616 -(1,18370:8539359,42363036:0,452978,115847 -r1,18383:10656184,42363036:2116825,568825,115847 -k1,18370:8539359,42363036:-2116825 -) -(1,18370:8539359,42363036:2116825,452978,115847 -k1,18370:8539359,42363036:3277 -h1,18370:10652907,42363036:0,411205,112570 -) -k1,18370:11036470,42363036:206616 -k1,18370:12072116,42363036:206616 -k1,18370:15888455,42363036:206616 -k1,18370:17471982,42363036:206616 -k1,18370:18546951,42363036:206617 -k1,18370:19846052,42363036:206616 -k1,18370:23078465,42363036:206616 -k1,18370:24852702,42363036:206616 -k1,18370:26078403,42363036:206616 -k1,18370:29493006,42363036:206616 -k1,18370:32583029,42363036:0 -) -(1,18371:6630773,43204524:25952256,505283,126483 -g1,18370:7446040,43204524 -g1,18370:10062892,43204524 -h1,18370:10461351,43204524:0,0,0 -k1,18371:32583029,43204524:21948008 -g1,18371:32583029,43204524 -) -v1,18373:6630773,44394990:0,393216,0 -(1,18383:6630773,45360535:25952256,1358761,196608 -g1,18383:6630773,45360535 -g1,18383:6630773,45360535 -g1,18383:6434165,45360535 -(1,18383:6434165,45360535:0,1358761,196608 -r1,18383:32779637,45360535:26345472,1555369,196608 -k1,18383:6434165,45360535:-26345472 -) -(1,18383:6434165,45360535:26345472,1358761,196608 -[1,18383:6630773,45360535:25952256,1162153,0 -(1,18375:6630773,44586879:25952256,388497,9436 -(1,18374:6630773,44586879:0,0,0 -g1,18374:6630773,44586879 -g1,18374:6630773,44586879 -g1,18374:6303093,44586879 -(1,18374:6303093,44586879:0,0,0 -) -g1,18374:6630773,44586879 -) -g1,18375:8843793,44586879 -k1,18375:8843793,44586879:0 -h1,18375:10108375,44586879:0,0,0 -k1,18375:32583029,44586879:22474654 -g1,18375:32583029,44586879 -) -(1,18376:6630773,45253057:25952256,404226,107478 -h1,18376:6630773,45253057:0,0,0 -g1,18376:6946919,45253057 -g1,18376:7263065,45253057 -g1,18376:11056813,45253057 -g1,18376:12637542,45253057 -k1,18376:12637542,45253057:0 -h1,18376:13902124,45253057:0,0,0 -k1,18376:32583028,45253057:18680904 -g1,18376:32583028,45253057 -) -] -) -g1,18383:32583029,45360535 -g1,18383:6630773,45360535 -g1,18383:6630773,45360535 -g1,18383:32583029,45360535 -g1,18383:32583029,45360535 -) -] -(1,18383:32583029,45706769:0,0,0 -g1,18383:32583029,45706769 -) -) -] -(1,18383:6630773,47279633:25952256,0,0 -h1,18383:6630773,47279633:25952256,0,0 -) -] -(1,18383:4262630,4025873:0,0,0 -[1,18383:-473656,4025873:0,0,0 -(1,18383:-473656,-710413:0,0,0 -(1,18383:-473656,-710413:0,0,0 -g1,18383:-473656,-710413 -) -g1,18383:-473656,-710413 -) -] -) -] -!25388 -}324 +[1,18502:3078558,4812305:0,0,0 +(1,18502:3078558,49800853:0,16384,2228224 +g1,18502:29030814,49800853 +g1,18502:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,18502:36151628,51504789:16384,1179648,0 +) +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 +) +] +) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,18502:37855564,49800853:1179648,16384,0 +) +) +k1,18502:3078556,49800853:-34777008 +) +] +g1,18502:6630773,4812305 +k1,18502:21350816,4812305:13524666 +g1,18502:21999622,4812305 +g1,18502:25611966,4812305 +g1,18502:28956923,4812305 +g1,18502:29772190,4812305 +) +) +] +[1,18502:6630773,45706769:25952256,40108032,0 +(1,18502:6630773,45706769:25952256,40108032,0 +(1,18502:6630773,45706769:0,0,0 +g1,18502:6630773,45706769 +) +[1,18502:6630773,45706769:25952256,40108032,0 +(1,18432:6630773,6254097:25952256,505283,134348 +(1,18431:6630773,6254097:0,452978,122846 +r1,18502:10857869,6254097:4227096,575824,122846 +k1,18431:6630773,6254097:-4227096 +) +(1,18431:6630773,6254097:4227096,452978,122846 +k1,18431:6630773,6254097:3277 +h1,18431:10854592,6254097:0,411205,112570 +) +k1,18431:11109322,6254097:251453 +k1,18431:14041198,6254097:251453 +k1,18431:15686602,6254097:251453 +(1,18431:15686602,6254097:0,452978,122846 +r1,18502:19913698,6254097:4227096,575824,122846 +k1,18431:15686602,6254097:-4227096 +) +(1,18431:15686602,6254097:4227096,452978,122846 +k1,18431:15686602,6254097:3277 +h1,18431:19910421,6254097:0,411205,112570 +) +k1,18431:20165150,6254097:251452 +k1,18431:21102765,6254097:251453 +k1,18431:22557459,6254097:251453 +k1,18431:23340409,6254097:251453 +k1,18431:24922243,6254097:251453 +k1,18431:26553884,6254097:251453 +k1,18431:28142270,6254097:251452 +k1,18431:29141489,6254097:251453 +k1,18431:30906168,6254097:251453 +k1,18431:31809049,6254097:251453 +k1,18432:32583029,6254097:0 +) +(1,18432:6630773,7119177:25952256,505283,7863 +g1,18431:7782895,7119177 +k1,18432:32583029,7119177:20554712 +g1,18432:32583029,7119177 +) +v1,18434:6630773,7804032:0,393216,0 +(1,18445:6630773,12938700:25952256,5527884,196608 +g1,18445:6630773,12938700 +g1,18445:6630773,12938700 +g1,18445:6434165,12938700 +(1,18445:6434165,12938700:0,5527884,196608 +r1,18502:32779637,12938700:26345472,5724492,196608 +k1,18445:6434165,12938700:-26345472 +) +(1,18445:6434165,12938700:26345472,5527884,196608 +[1,18445:6630773,12938700:25952256,5331276,0 +(1,18436:6630773,8031863:25952256,424439,106246 +(1,18435:6630773,8031863:0,0,0 +g1,18435:6630773,8031863 +g1,18435:6630773,8031863 +g1,18435:6303093,8031863 +(1,18435:6303093,8031863:0,0,0 +) +g1,18435:6630773,8031863 +) +g1,18436:9286405,8031863 +k1,18436:9286405,8031863:0 +h1,18436:9950313,8031863:0,0,0 +k1,18436:32583029,8031863:22632716 +g1,18436:32583029,8031863 +) +(1,18437:6630773,8716718:25952256,431045,86428 +h1,18437:6630773,8716718:0,0,0 +g1,18437:6962727,8716718 +g1,18437:7294681,8716718 +g1,18437:11610082,8716718 +g1,18437:12273990,8716718 +k1,18437:12273990,8716718:0 +h1,18437:13601806,8716718:0,0,0 +k1,18437:32583030,8716718:18981224 +g1,18437:32583030,8716718 +) +(1,18438:6630773,9401573:25952256,424439,106246 +h1,18438:6630773,9401573:0,0,0 +g1,18438:6962727,9401573 +g1,18438:7294681,9401573 +g1,18438:7626635,9401573 +g1,18438:7958589,9401573 +g1,18438:8290543,9401573 +g1,18438:8622497,9401573 +g1,18438:8954451,9401573 +g1,18438:9286405,9401573 +g1,18438:9618359,9401573 +g1,18438:9950313,9401573 +g1,18438:10282267,9401573 +g1,18438:10614221,9401573 +g1,18438:10946175,9401573 +g1,18438:11610083,9401573 +g1,18438:12273991,9401573 +g1,18438:14597669,9401573 +k1,18438:14597669,9401573:0 +h1,18438:15593531,9401573:0,0,0 +k1,18438:32583029,9401573:16989498 +g1,18438:32583029,9401573 +) +(1,18439:6630773,10086428:25952256,424439,86428 +h1,18439:6630773,10086428:0,0,0 +g1,18439:6962727,10086428 +g1,18439:7294681,10086428 +g1,18439:7626635,10086428 +g1,18439:7958589,10086428 +g1,18439:8290543,10086428 +g1,18439:8622497,10086428 +g1,18439:8954451,10086428 +g1,18439:9286405,10086428 +g1,18439:9618359,10086428 +g1,18439:9950313,10086428 +g1,18439:10282267,10086428 +g1,18439:10614221,10086428 +g1,18439:10946175,10086428 +g1,18439:12937899,10086428 +g1,18439:13601807,10086428 +g1,18439:15925485,10086428 +g1,18439:17585255,10086428 +g1,18439:19245025,10086428 +g1,18439:20904795,10086428 +h1,18439:22564565,10086428:0,0,0 +k1,18439:32583029,10086428:10018464 +g1,18439:32583029,10086428 +) +(1,18440:6630773,10771283:25952256,0,0 +h1,18440:6630773,10771283:0,0,0 +h1,18440:6630773,10771283:0,0,0 +k1,18440:32583029,10771283:25952256 +g1,18440:32583029,10771283 +) +(1,18441:6630773,11456138:25952256,424439,112852 +h1,18441:6630773,11456138:0,0,0 +g1,18441:11942036,11456138 +g1,18441:14265714,11456138 +g1,18441:15261576,11456138 +g1,18441:17253300,11456138 +g1,18441:17917208,11456138 +g1,18441:20572840,11456138 +h1,18441:20904794,11456138:0,0,0 +k1,18441:32583029,11456138:11678235 +g1,18441:32583029,11456138 +) +(1,18442:6630773,12140993:25952256,424439,112852 +h1,18442:6630773,12140993:0,0,0 +g1,18442:6962727,12140993 +g1,18442:7294681,12140993 +g1,18442:12605944,12140993 +g1,18442:13269852,12140993 +g1,18442:14597668,12140993 +g1,18442:16589392,12140993 +g1,18442:17253300,12140993 +g1,18442:18913070,12140993 +g1,18442:20572840,12140993 +g1,18442:21236748,12140993 +g1,18442:22232610,12140993 +h1,18442:22564564,12140993:0,0,0 +k1,18442:32583029,12140993:10018465 +g1,18442:32583029,12140993 +) +(1,18443:6630773,12825848:25952256,424439,112852 +h1,18443:6630773,12825848:0,0,0 +g1,18443:6962727,12825848 +g1,18443:7294681,12825848 +k1,18443:7294681,12825848:0 +h1,18443:11278128,12825848:0,0,0 +k1,18443:32583028,12825848:21304900 +g1,18443:32583028,12825848 +) +] +) +g1,18445:32583029,12938700 +g1,18445:6630773,12938700 +g1,18445:6630773,12938700 +g1,18445:32583029,12938700 +g1,18445:32583029,12938700 +) +h1,18445:6630773,13135308:0,0,0 +v1,18449:6630773,14000388:0,393216,0 +(1,18450:6630773,15272293:25952256,1665121,0 +g1,18450:6630773,15272293 +g1,18450:6237557,15272293 +r1,18502:6368629,15272293:131072,1665121,0 +g1,18450:6567858,15272293 +g1,18450:6764466,15272293 +[1,18450:6764466,15272293:25818563,1665121,0 +(1,18450:6764466,14272865:25818563,665693,196608 +(1,18449:6764466,14272865:0,665693,196608 +r1,18502:8010564,14272865:1246098,862301,196608 +k1,18449:6764466,14272865:-1246098 +) +(1,18449:6764466,14272865:1246098,665693,196608 +) +k1,18449:8236939,14272865:226375 +k1,18449:9963157,14272865:327680 +k1,18449:12395473,14272865:226374 +k1,18449:13640933,14272865:226375 +k1,18449:16528725,14272865:226375 +k1,18449:18610424,14272865:226375 +k1,18449:19488226,14272865:226374 +k1,18449:20807086,14272865:226375 +(1,18449:20807086,14272865:0,452978,122846 +r1,18502:25034182,14272865:4227096,575824,122846 +k1,18449:20807086,14272865:-4227096 +) +(1,18449:20807086,14272865:4227096,452978,122846 +k1,18449:20807086,14272865:3277 +h1,18449:25030905,14272865:0,411205,112570 +) +k1,18449:25260557,14272865:226375 +k1,18449:27814114,14272865:226374 +k1,18449:28707645,14272865:226375 +(1,18449:28707645,14272865:0,452978,122846 +r1,18502:32583029,14272865:3875384,575824,122846 +k1,18449:28707645,14272865:-3875384 +) +(1,18449:28707645,14272865:3875384,452978,122846 +k1,18449:28707645,14272865:3277 +h1,18449:32579752,14272865:0,411205,112570 +) +k1,18449:32583029,14272865:0 +) +(1,18450:6764466,15137945:25818563,505283,134348 +g1,18449:8872759,15137945 +g1,18449:9688026,15137945 +g1,18449:12726930,15137945 +g1,18449:13945244,15137945 +(1,18449:13945244,15137945:0,459977,115847 +r1,18502:15358645,15137945:1413401,575824,115847 +k1,18449:13945244,15137945:-1413401 +) +(1,18449:13945244,15137945:1413401,459977,115847 +k1,18449:13945244,15137945:3277 +h1,18449:15355368,15137945:0,411205,112570 +) +g1,18449:15557874,15137945 +k1,18450:32583029,15137945:14007222 +g1,18450:32583029,15137945 +) +] +g1,18450:32583029,15272293 +) +h1,18450:6630773,15272293:0,0,0 +(1,18453:6630773,16137373:25952256,513147,134348 +h1,18452:6630773,16137373:983040,0,0 +k1,18452:8414260,16137373:172612 +k1,18452:9605956,16137373:172611 +k1,18452:11162688,16137373:172612 +k1,18452:13996717,16137373:172612 +k1,18452:15037680,16137373:172611 +k1,18452:17030882,16137373:172612 +k1,18452:17559354,16137373:172612 +k1,18452:20494309,16137373:172612 +k1,18452:21997956,16137373:172611 +k1,18452:24352262,16137373:172612 +k1,18452:26260267,16137373:172612 +k1,18452:27451963,16137373:172611 +k1,18452:29278048,16137373:172612 +k1,18452:32583029,16137373:0 +) +(1,18453:6630773,17002453:25952256,513147,126483 +k1,18452:7507932,17002453:261121 +k1,18452:8788139,17002453:261122 +k1,18452:11279450,17002453:261121 +k1,18452:14471341,17002453:261121 +k1,18452:15929149,17002453:261121 +k1,18452:18258587,17002453:261122 +(1,18452:18258587,17002453:0,452978,115847 +r1,18502:20375412,17002453:2116825,568825,115847 +k1,18452:18258587,17002453:-2116825 +) +(1,18452:18258587,17002453:2116825,452978,115847 +k1,18452:18258587,17002453:3277 +h1,18452:20372135,17002453:0,411205,112570 +) +k1,18452:20636533,17002453:261121 +k1,18452:22123833,17002453:261121 +k1,18452:25031298,17002453:261121 +(1,18452:25031298,17002453:0,459977,115847 +r1,18502:27499835,17002453:2468537,575824,115847 +k1,18452:25031298,17002453:-2468537 +) +(1,18452:25031298,17002453:2468537,459977,115847 +k1,18452:25031298,17002453:3277 +h1,18452:27496558,17002453:0,411205,112570 +) +k1,18452:27760957,17002453:261122 +k1,18452:29213523,17002453:261121 +(1,18452:29213523,17002453:0,452978,115847 +r1,18502:31330348,17002453:2116825,568825,115847 +k1,18452:29213523,17002453:-2116825 +) +(1,18452:29213523,17002453:2116825,452978,115847 +k1,18452:29213523,17002453:3277 +h1,18452:31327071,17002453:0,411205,112570 +) +k1,18452:31591469,17002453:261121 +k1,18452:32583029,17002453:0 +) +(1,18453:6630773,17867533:25952256,513147,134348 +k1,18452:10366920,17867533:224073 +k1,18452:11352522,17867533:224074 +k1,18452:12342711,17867533:224073 +k1,18452:15285873,17867533:224073 +k1,18452:17847616,17867533:224074 +k1,18452:18881059,17867533:224073 +k1,18452:19871249,17867533:224074 +k1,18452:23149300,17867533:224073 +k1,18452:26123264,17867533:224073 +k1,18452:29706058,17867533:224074 +k1,18452:31591469,17867533:224073 +k1,18452:32583029,17867533:0 +) +(1,18453:6630773,18732613:25952256,513147,134348 +k1,18452:9713374,18732613:298632 +k1,18452:10959658,18732613:298633 +k1,18452:13655597,18732613:298632 +k1,18452:16343017,18732613:298633 +k1,18452:19152989,18732613:298632 +k1,18452:20945188,18732613:298633 +k1,18452:21929982,18732613:298632 +k1,18452:23247700,18732613:298633 +k1,18452:24343250,18732613:298632 +k1,18452:26480068,18732613:298533 +k1,18452:28440038,18732613:298632 +k1,18452:29500199,18732613:298633 +k1,18452:30817916,18732613:298632 +(1,18452:30817916,18732613:0,459977,115847 +r1,18502:32583029,18732613:1765113,575824,115847 +k1,18452:30817916,18732613:-1765113 +) +(1,18452:30817916,18732613:1765113,459977,115847 +k1,18452:30817916,18732613:3277 +h1,18452:32579752,18732613:0,411205,112570 +) +k1,18452:32583029,18732613:0 +) +(1,18453:6630773,19597693:25952256,505283,126483 +g1,18452:9011040,19597693 +g1,18452:9838104,19597693 +g1,18452:11240574,19597693 +g1,18452:12980554,19597693 +g1,18452:14688422,19597693 +g1,18452:16955967,19597693 +g1,18452:18259478,19597693 +g1,18452:19206473,19597693 +g1,18452:21829879,19597693 +g1,18452:23423059,19597693 +(1,18452:23423059,19597693:0,459977,115847 +r1,18502:29408714,19597693:5985655,575824,115847 +k1,18452:23423059,19597693:-5985655 +) +(1,18452:23423059,19597693:5985655,459977,115847 +k1,18452:23423059,19597693:3277 +h1,18452:29405437,19597693:0,411205,112570 +) +k1,18453:32583029,19597693:3000645 +g1,18453:32583029,19597693 +) +v1,18455:6630773,20282548:0,393216,0 +(1,18461:6630773,21992941:25952256,2103609,196608 +g1,18461:6630773,21992941 +g1,18461:6630773,21992941 +g1,18461:6434165,21992941 +(1,18461:6434165,21992941:0,2103609,196608 +r1,18502:32779637,21992941:26345472,2300217,196608 +k1,18461:6434165,21992941:-26345472 +) +(1,18461:6434165,21992941:26345472,2103609,196608 +[1,18461:6630773,21992941:25952256,1907001,0 +(1,18457:6630773,20510379:25952256,424439,112852 +(1,18456:6630773,20510379:0,0,0 +g1,18456:6630773,20510379 +g1,18456:6630773,20510379 +g1,18456:6303093,20510379 +(1,18456:6303093,20510379:0,0,0 +) +g1,18456:6630773,20510379 +) +k1,18457:6630773,20510379:0 +g1,18457:11942036,20510379 +g1,18457:14265714,20510379 +g1,18457:15261576,20510379 +g1,18457:17253300,20510379 +g1,18457:17917208,20510379 +g1,18457:20572840,20510379 +h1,18457:20904794,20510379:0,0,0 +k1,18457:32583029,20510379:11678235 +g1,18457:32583029,20510379 +) +(1,18458:6630773,21195234:25952256,431045,112852 +h1,18458:6630773,21195234:0,0,0 +g1,18458:6962727,21195234 +g1,18458:7294681,21195234 +g1,18458:12605944,21195234 +g1,18458:13269852,21195234 +g1,18458:14597668,21195234 +g1,18458:16589392,21195234 +g1,18458:17253300,21195234 +g1,18458:18913070,21195234 +g1,18458:20572840,21195234 +g1,18458:21236748,21195234 +g1,18458:22232610,21195234 +g1,18458:24556288,21195234 +g1,18458:25220196,21195234 +g1,18458:28207782,21195234 +h1,18458:28539736,21195234:0,0,0 +k1,18458:32583029,21195234:4043293 +g1,18458:32583029,21195234 +) +(1,18459:6630773,21880089:25952256,424439,112852 +h1,18459:6630773,21880089:0,0,0 +g1,18459:6962727,21880089 +g1,18459:7294681,21880089 +k1,18459:7294681,21880089:0 +h1,18459:11278128,21880089:0,0,0 +k1,18459:32583028,21880089:21304900 +g1,18459:32583028,21880089 +) +] +) +g1,18461:32583029,21992941 +g1,18461:6630773,21992941 +g1,18461:6630773,21992941 +g1,18461:32583029,21992941 +g1,18461:32583029,21992941 +) +h1,18461:6630773,22189549:0,0,0 +v1,18465:6630773,23054629:0,393216,0 +(1,18466:6630773,25930209:25952256,3268796,0 +g1,18466:6630773,25930209 +g1,18466:6237557,25930209 +r1,18502:6368629,25930209:131072,3268796,0 +g1,18466:6567858,25930209 +g1,18466:6764466,25930209 +[1,18466:6764466,25930209:25818563,3268796,0 +(1,18466:6764466,23327106:25818563,665693,196608 +(1,18465:6764466,23327106:0,665693,196608 +r1,18502:8010564,23327106:1246098,862301,196608 +k1,18465:6764466,23327106:-1246098 +) +(1,18465:6764466,23327106:1246098,665693,196608 +) +k1,18465:8193138,23327106:182574 +k1,18465:9919356,23327106:327680 +k1,18465:10729764,23327106:182573 +k1,18465:11931423,23327106:182574 +k1,18465:15105715,23327106:182573 +k1,18465:17143613,23327106:182574 +k1,18465:18345271,23327106:182573 +k1,18465:21502524,23327106:182574 +k1,18465:23881208,23327106:182573 +k1,18465:25567833,23327106:182574 +k1,18465:26516522,23327106:182573 +k1,18465:27358388,23327106:182574 +k1,18465:28560046,23327106:182573 +k1,18465:30396093,23327106:182574 +k1,18465:32583029,23327106:0 +) +(1,18466:6764466,24192186:25818563,505283,134348 +k1,18465:10344698,24192186:218235 +k1,18465:10918793,24192186:218235 +k1,18465:13010047,24192186:218235 +k1,18465:16376632,24192186:218235 +k1,18465:18202465,24192186:218235 +k1,18465:19439784,24192186:218234 +k1,18465:21265617,24192186:218235 +k1,18465:23339176,24192186:218235 +k1,18465:24951362,24192186:218235 +k1,18465:27194004,24192186:218235 +k1,18465:30386918,24192186:218235 +k1,18465:32583029,24192186:0 +) +(1,18466:6764466,25057266:25818563,513147,134348 +k1,18465:7656064,25057266:232306 +k1,18465:10230627,25057266:232306 +k1,18465:12806501,25057266:232307 +k1,18465:15624202,25057266:232306 +k1,18465:16507936,25057266:232306 +k1,18465:17759327,25057266:232306 +(1,18465:17759327,25057266:0,452978,115847 +r1,18502:19524440,25057266:1765113,568825,115847 +k1,18465:17759327,25057266:-1765113 +) +(1,18465:17759327,25057266:1765113,452978,115847 +k1,18465:17759327,25057266:3277 +h1,18465:19521163,25057266:0,411205,112570 +) +k1,18465:19756746,25057266:232306 +k1,18465:22915889,25057266:232306 +k1,18465:24046039,25057266:232307 +k1,18465:25564161,25057266:232306 +k1,18465:27139300,25057266:232306 +k1,18465:28765557,25057266:232306 +k1,18465:32583029,25057266:0 +) +(1,18466:6764466,25922346:25818563,513147,7863 +g1,18465:7622987,25922346 +g1,18465:9518943,25922346 +k1,18466:32583029,25922346:21046232 +g1,18466:32583029,25922346 +) +] +g1,18466:32583029,25930209 +) +h1,18466:6630773,25930209:0,0,0 +(1,18469:6630773,26795289:25952256,505283,134348 +h1,18468:6630773,26795289:983040,0,0 +k1,18468:10378912,26795289:285872 +k1,18468:15402382,26795289:285872 +k1,18468:19458540,26795289:285872 +k1,18468:22352090,26795289:285872 +k1,18468:25445524,26795289:285872 +k1,18468:26382824,26795289:285872 +k1,18468:27687781,26795289:285872 +(1,18468:27687781,26795289:0,452978,115847 +r1,18502:29452894,26795289:1765113,568825,115847 +k1,18468:27687781,26795289:-1765113 +) +(1,18468:27687781,26795289:1765113,452978,115847 +k1,18468:27687781,26795289:3277 +h1,18468:29449617,26795289:0,411205,112570 +) +k1,18468:29738766,26795289:285872 +k1,18468:32583029,26795289:0 +) +(1,18469:6630773,27660369:25952256,505283,134348 +k1,18468:9789010,27660369:183558 +k1,18468:12168679,27660369:183558 +k1,18468:13636743,27660369:183558 +k1,18468:14924583,27660369:183558 +k1,18468:15855907,27660369:183558 +k1,18468:18202808,27660369:183558 +k1,18468:19072528,27660369:183558 +k1,18468:23200043,27660369:183558 +k1,18468:24575046,27660369:183558 +k1,18468:26940298,27660369:183558 +(1,18468:26940298,27660369:0,414482,115847 +r1,18502:31167394,27660369:4227096,530329,115847 +k1,18468:26940298,27660369:-4227096 +) +(1,18468:26940298,27660369:4227096,414482,115847 +g1,18468:29053846,27660369 +g1,18468:29757270,27660369 +h1,18468:31164117,27660369:0,411205,112570 +) +k1,18468:31350952,27660369:183558 +k1,18468:32583029,27660369:0 +) +(1,18469:6630773,28525449:25952256,513147,134348 +k1,18468:9048692,28525449:139232 +h1,18468:10417739,28525449:0,0,0 +k1,18468:10556971,28525449:139232 +k1,18468:11505572,28525449:139231 +k1,18468:13142957,28525449:139232 +h1,18468:14338334,28525449:0,0,0 +k1,18468:14858330,28525449:139232 +k1,18468:16659555,28525449:139232 +k1,18468:17667138,28525449:139231 +k1,18468:19448702,28525449:139232 +k1,18468:20607019,28525449:139232 +k1,18468:23720930,28525449:139232 +k1,18468:26056273,28525449:139232 +k1,18468:27930897,28525449:139231 +(1,18468:27930897,28525449:0,452978,115847 +r1,18502:30399434,28525449:2468537,568825,115847 +k1,18468:27930897,28525449:-2468537 +) +(1,18468:27930897,28525449:2468537,452978,115847 +k1,18468:27930897,28525449:3277 +h1,18468:30396157,28525449:0,411205,112570 +) +k1,18468:30538666,28525449:139232 +k1,18468:31923737,28525449:139232 +k1,18468:32583029,28525449:0 +) +(1,18469:6630773,29390529:25952256,513147,126483 +k1,18468:9071161,29390529:157769 +k1,18468:10609118,29390529:157769 +k1,18468:12535704,29390529:157769 +k1,18468:13979290,29390529:157770 +k1,18468:15612274,29390529:157769 +k1,18468:17279993,29390529:157769 +k1,18468:19860628,29390529:157769 +k1,18468:21175107,29390529:157769 +k1,18468:22094404,29390529:157769 +k1,18468:23582554,29390529:157769 +k1,18468:25121168,29390529:157770 +k1,18468:26371422,29390529:157769 +k1,18468:27196347,29390529:157769 +(1,18468:27196347,29390529:0,452978,115847 +r1,18502:29664884,29390529:2468537,568825,115847 +k1,18468:27196347,29390529:-2468537 +) +(1,18468:27196347,29390529:2468537,452978,115847 +k1,18468:27196347,29390529:3277 +h1,18468:29661607,29390529:0,411205,112570 +) +k1,18468:29822653,29390529:157769 +k1,18468:32583029,29390529:0 +) +(1,18469:6630773,30255609:25952256,513147,134348 +g1,18468:7600705,30255609 +g1,18468:10461351,30255609 +g1,18468:11319872,30255609 +g1,18468:14378437,30255609 +g1,18468:15236958,30255609 +g1,18468:17756817,30255609 +g1,18468:20264224,30255609 +g1,18468:21695530,30255609 +g1,18468:24173446,30255609 +h1,18468:25542493,30255609:0,0,0 +g1,18468:25741722,30255609 +g1,18468:26750321,30255609 +g1,18468:28447703,30255609 +h1,18468:29244621,30255609:0,0,0 +k1,18469:32583029,30255609:2957644 +g1,18469:32583029,30255609 +) +v1,18471:6630773,30940464:0,393216,0 +(1,18480:6630773,33460178:25952256,2912930,196608 +g1,18480:6630773,33460178 +g1,18480:6630773,33460178 +g1,18480:6434165,33460178 +(1,18480:6434165,33460178:0,2912930,196608 +r1,18502:32779637,33460178:26345472,3109538,196608 +k1,18480:6434165,33460178:-26345472 +) +(1,18480:6434165,33460178:26345472,2912930,196608 +[1,18480:6630773,33460178:25952256,2716322,0 +(1,18473:6630773,31168295:25952256,424439,106246 +(1,18472:6630773,31168295:0,0,0 +g1,18472:6630773,31168295 +g1,18472:6630773,31168295 +g1,18472:6303093,31168295 +(1,18472:6303093,31168295:0,0,0 +) +g1,18472:6630773,31168295 +) +g1,18473:9286405,31168295 +k1,18473:9286405,31168295:0 +h1,18473:9950313,31168295:0,0,0 +k1,18473:32583029,31168295:22632716 +g1,18473:32583029,31168295 +) +(1,18474:6630773,31853150:25952256,431045,106246 +h1,18474:6630773,31853150:0,0,0 +k1,18474:6904226,31853150:273453 +k1,18474:7177679,31853150:273453 +k1,18474:11434579,31853150:273453 +k1,18474:12039986,31853150:273453 +k1,18474:13641255,31853150:273453 +k1,18474:14246662,31853150:273453 +k1,18474:14852069,31853150:273453 +k1,18474:17117246,31853150:273453 +k1,18474:18386561,31853150:273453 +k1,18474:20319784,31853150:273453 +k1,18474:20925191,31853150:273453 +k1,18474:26177953,31853150:273453 +k1,18474:27779222,31853150:273453 +k1,18474:29380491,31853150:273453 +k1,18474:30649806,31853150:273453 +k1,18474:31255213,31853150:273453 +h1,18474:32583029,31853150:0,0,0 +k1,18474:32583029,31853150:0 +k1,18474:32583029,31853150:0 +) +(1,18475:6630773,32538005:25952256,431045,106246 +h1,18475:6630773,32538005:0,0,0 +h1,18475:10946175,32538005:0,0,0 +k1,18475:32583029,32538005:21636854 +g1,18475:32583029,32538005 +) +(1,18479:6630773,33353932:25952256,424439,106246 +(1,18477:6630773,33353932:0,0,0 +g1,18477:6630773,33353932 +g1,18477:6630773,33353932 +g1,18477:6303093,33353932 +(1,18477:6303093,33353932:0,0,0 +) +g1,18477:6630773,33353932 +) +g1,18479:7626635,33353932 +g1,18479:8954451,33353932 +g1,18479:12605944,33353932 +g1,18479:16257437,33353932 +g1,18479:19908930,33353932 +g1,18479:23560423,33353932 +h1,18479:26879962,33353932:0,0,0 +k1,18479:32583029,33353932:5703067 +g1,18479:32583029,33353932 +) +] +) +g1,18480:32583029,33460178 +g1,18480:6630773,33460178 +g1,18480:6630773,33460178 +g1,18480:32583029,33460178 +g1,18480:32583029,33460178 +) +h1,18480:6630773,33656786:0,0,0 +(1,18484:6630773,34521866:25952256,505283,134348 +h1,18483:6630773,34521866:983040,0,0 +k1,18483:9169965,34521866:152371 +k1,18483:10513781,34521866:152371 +k1,18483:12510335,34521866:152371 +k1,18483:13477974,34521866:152371 +k1,18483:14696616,34521866:152371 +k1,18483:19165844,34521866:152371 +k1,18483:21642777,34521866:152371 +k1,18483:22814233,34521866:152371 +k1,18483:25491051,34521866:152371 +k1,18483:26990842,34521866:152371 +k1,18483:28507017,34521866:152371 +k1,18483:30168027,34521866:152371 +k1,18484:32583029,34521866:0 +) +(1,18484:6630773,35386946:25952256,505283,134348 +k1,18483:7828823,35386946:207801 +k1,18483:11948468,35386946:207801 +k1,18483:12784105,35386946:207802 +k1,18483:14010991,35386946:207801 +k1,18483:16880209,35386946:207801 +k1,18483:19117005,35386946:207801 +k1,18483:20193158,35386946:207801 +k1,18483:21931225,35386946:207801 +k1,18483:22790455,35386946:207802 +k1,18483:24090741,35386946:207801 +(1,18483:24090741,35386946:0,452978,115847 +r1,18502:29372972,35386946:5282231,568825,115847 +k1,18483:24090741,35386946:-5282231 +) +(1,18483:24090741,35386946:5282231,452978,115847 +k1,18483:24090741,35386946:3277 +h1,18483:29369695,35386946:0,411205,112570 +) +k1,18483:29580773,35386946:207801 +k1,18483:30440002,35386946:207801 +k1,18483:32583029,35386946:0 +) +(1,18484:6630773,36252026:25952256,513147,134348 +g1,18483:8114508,36252026 +g1,18483:9332822,36252026 +g1,18483:10758230,36252026 +g1,18483:11488956,36252026 +g1,18483:12754456,36252026 +g1,18483:15303151,36252026 +g1,18483:16115142,36252026 +g1,18483:17333456,36252026 +g1,18483:19022318,36252026 +g1,18483:19880839,36252026 +g1,18483:21099153,36252026 +g1,18483:23822829,36252026 +k1,18484:32583029,36252026:7239109 +g1,18484:32583029,36252026 +) +v1,18486:6630773,36936881:0,393216,0 +(1,18493:6630773,39325523:25952256,2781858,196608 +g1,18493:6630773,39325523 +g1,18493:6630773,39325523 +g1,18493:6434165,39325523 +(1,18493:6434165,39325523:0,2781858,196608 +r1,18502:32779637,39325523:26345472,2978466,196608 +k1,18493:6434165,39325523:-26345472 +) +(1,18493:6434165,39325523:26345472,2781858,196608 +[1,18493:6630773,39325523:25952256,2585250,0 +(1,18488:6630773,37164712:25952256,424439,112852 +(1,18487:6630773,37164712:0,0,0 +g1,18487:6630773,37164712 +g1,18487:6630773,37164712 +g1,18487:6303093,37164712 +(1,18487:6303093,37164712:0,0,0 +) +g1,18487:6630773,37164712 +) +k1,18488:6630773,37164712:0 +g1,18488:11942036,37164712 +g1,18488:14265714,37164712 +g1,18488:15261576,37164712 +g1,18488:17253300,37164712 +g1,18488:17917208,37164712 +g1,18488:20572840,37164712 +h1,18488:20904794,37164712:0,0,0 +k1,18488:32583029,37164712:11678235 +g1,18488:32583029,37164712 +) +(1,18489:6630773,37849567:25952256,424439,112852 +h1,18489:6630773,37849567:0,0,0 +g1,18489:6962727,37849567 +g1,18489:7294681,37849567 +g1,18489:12605944,37849567 +g1,18489:13269852,37849567 +g1,18489:15261576,37849567 +g1,18489:17253300,37849567 +g1,18489:17917208,37849567 +g1,18489:19908932,37849567 +g1,18489:21568702,37849567 +g1,18489:22232610,37849567 +g1,18489:23228472,37849567 +h1,18489:23560426,37849567:0,0,0 +k1,18489:32583029,37849567:9022603 +g1,18489:32583029,37849567 +) +(1,18490:6630773,38534422:25952256,424439,112852 +h1,18490:6630773,38534422:0,0,0 +g1,18490:6962727,38534422 +g1,18490:7294681,38534422 +g1,18490:11610082,38534422 +h1,18490:11942036,38534422:0,0,0 +k1,18490:32583028,38534422:20640992 +g1,18490:32583028,38534422 +) +(1,18491:6630773,39219277:25952256,424439,106246 +h1,18491:6630773,39219277:0,0,0 +g1,18491:6962727,39219277 +g1,18491:7294681,39219277 +g1,18491:12605944,39219277 +g1,18491:13269852,39219277 +h1,18491:14597668,39219277:0,0,0 +k1,18491:32583028,39219277:17985360 +g1,18491:32583028,39219277 +) +] +) +g1,18493:32583029,39325523 +g1,18493:6630773,39325523 +g1,18493:6630773,39325523 +g1,18493:32583029,39325523 +g1,18493:32583029,39325523 +) +h1,18493:6630773,39522131:0,0,0 +] +(1,18502:32583029,45706769:0,0,0 +g1,18502:32583029,45706769 +) +) +] +(1,18502:6630773,47279633:25952256,0,0 +h1,18502:6630773,47279633:25952256,0,0 +) +] +(1,18502:4262630,4025873:0,0,0 +[1,18502:-473656,4025873:0,0,0 +(1,18502:-473656,-710413:0,0,0 +(1,18502:-473656,-710413:0,0,0 +g1,18502:-473656,-710413 +) +g1,18502:-473656,-710413 +) +] +) +] +!28083 +}307 +Input:2849:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2850:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2851:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2852:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2853:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2854:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2855:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -316714,2839 +314557,767 @@ Input:2857:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConso Input:2858:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2859:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2860:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2861:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2862:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!952 -{325 -[1,18442:4262630,47279633:28320399,43253760,0 -(1,18442:4262630,4025873:0,0,0 -[1,18442:-473656,4025873:0,0,0 -(1,18442:-473656,-710413:0,0,0 -(1,18442:-473656,-644877:0,0,0 -k1,18442:-473656,-644877:-65536 +!1140 +{308 +[1,18543:4262630,47279633:28320399,43253760,0 +(1,18543:4262630,4025873:0,0,0 +[1,18543:-473656,4025873:0,0,0 +(1,18543:-473656,-710413:0,0,0 +(1,18543:-473656,-644877:0,0,0 +k1,18543:-473656,-644877:-65536 ) -(1,18442:-473656,4736287:0,0,0 -k1,18442:-473656,4736287:5209943 +(1,18543:-473656,4736287:0,0,0 +k1,18543:-473656,4736287:5209943 ) -g1,18442:-473656,-710413 +g1,18543:-473656,-710413 ) ] ) -[1,18442:6630773,47279633:25952256,43253760,0 -[1,18442:6630773,4812305:25952256,786432,0 -(1,18442:6630773,4812305:25952256,513147,126483 -(1,18442:6630773,4812305:25952256,513147,126483 -g1,18442:3078558,4812305 -[1,18442:3078558,4812305:0,0,0 -(1,18442:3078558,2439708:0,1703936,0 -k1,18442:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,18442:2537886,2439708:1179648,16384,0 +[1,18543:6630773,47279633:25952256,43253760,0 +[1,18543:6630773,4812305:25952256,786432,0 +(1,18543:6630773,4812305:25952256,485622,11795 +(1,18543:6630773,4812305:25952256,485622,11795 +g1,18543:3078558,4812305 +[1,18543:3078558,4812305:0,0,0 +(1,18543:3078558,2439708:0,1703936,0 +k1,18543:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,18543:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,18442:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,18543:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,18442:3078558,4812305:0,0,0 -(1,18442:3078558,2439708:0,1703936,0 -g1,18442:29030814,2439708 -g1,18442:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,18442:36151628,1915420:16384,1179648,0 -) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 -) -] -) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,18442:37855564,2439708:1179648,16384,0 -) +[1,18543:3078558,4812305:0,0,0 +(1,18543:3078558,2439708:0,1703936,0 +g1,18543:29030814,2439708 +g1,18543:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,18543:36151628,1915420:16384,1179648,0 ) -k1,18442:3078556,2439708:-34777008 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] -[1,18442:3078558,4812305:0,0,0 -(1,18442:3078558,49800853:0,16384,2228224 -k1,18442:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,18442:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,18442:3078558,51504789:16384,1179648,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,18543:37855564,2439708:1179648,16384,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 -) -] -) -) -) -] -[1,18442:3078558,4812305:0,0,0 -(1,18442:3078558,49800853:0,16384,2228224 -g1,18442:29030814,49800853 -g1,18442:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,18442:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] -) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,18442:37855564,49800853:1179648,16384,0 -) -) -k1,18442:3078556,49800853:-34777008 -) -] -g1,18442:6630773,4812305 -k1,18442:21350816,4812305:13524666 -g1,18442:21999622,4812305 -g1,18442:25611966,4812305 -g1,18442:28956923,4812305 -g1,18442:29772190,4812305 -) -) -] -[1,18442:6630773,45706769:25952256,40108032,0 -(1,18442:6630773,45706769:25952256,40108032,0 -(1,18442:6630773,45706769:0,0,0 -g1,18442:6630773,45706769 -) -[1,18442:6630773,45706769:25952256,40108032,0 -v1,18383:6630773,6254097:0,393216,0 -(1,18383:6630773,9227614:25952256,3366733,196608 -g1,18383:6630773,9227614 -g1,18383:6630773,9227614 -g1,18383:6434165,9227614 -(1,18383:6434165,9227614:0,3366733,196608 -r1,18442:32779637,9227614:26345472,3563341,196608 -k1,18383:6434165,9227614:-26345472 -) -(1,18383:6434165,9227614:26345472,3366733,196608 -[1,18383:6630773,9227614:25952256,3170125,0 -(1,18377:6630773,6461715:25952256,404226,82312 -h1,18377:6630773,6461715:0,0,0 -g1,18377:6946919,6461715 -g1,18377:7263065,6461715 -k1,18377:7263065,6461715:0 -h1,18377:11056813,6461715:0,0,0 -k1,18377:32583029,6461715:21526216 -g1,18377:32583029,6461715 -) -(1,18378:6630773,7127893:25952256,410518,107478 -h1,18378:6630773,7127893:0,0,0 -g1,18378:6946919,7127893 -g1,18378:7263065,7127893 -g1,18378:7579211,7127893 -g1,18378:7895357,7127893 -g1,18378:8211503,7127893 -g1,18378:8527649,7127893 -g1,18378:8843795,7127893 -g1,18378:9159941,7127893 -g1,18378:9476087,7127893 -g1,18378:9792233,7127893 -g1,18378:10108379,7127893 -g1,18378:10424525,7127893 -g1,18378:12321399,7127893 -g1,18378:13585982,7127893 -g1,18378:14218274,7127893 -g1,18378:19592752,7127893 -g1,18378:21805772,7127893 -g1,18378:22438064,7127893 -k1,18378:22438064,7127893:0 -h1,18378:23386502,7127893:0,0,0 -k1,18378:32583029,7127893:9196527 -g1,18378:32583029,7127893 -) -(1,18379:6630773,7794071:25952256,410518,107478 -h1,18379:6630773,7794071:0,0,0 -g1,18379:6946919,7794071 -g1,18379:7263065,7794071 -g1,18379:7579211,7794071 -g1,18379:7895357,7794071 -g1,18379:8211503,7794071 -g1,18379:8527649,7794071 -g1,18379:8843795,7794071 -g1,18379:9159941,7794071 -g1,18379:9476087,7794071 -g1,18379:9792233,7794071 -g1,18379:10108379,7794071 -g1,18379:10424525,7794071 -g1,18379:12321399,7794071 -g1,18379:14218273,7794071 -g1,18379:14850565,7794071 -g1,18379:20857334,7794071 -g1,18379:23070354,7794071 -g1,18379:23702646,7794071 -k1,18379:23702646,7794071:0 -h1,18379:24651084,7794071:0,0,0 -k1,18379:32583029,7794071:7931945 -g1,18379:32583029,7794071 -) -(1,18380:6630773,8460249:25952256,410518,107478 -h1,18380:6630773,8460249:0,0,0 -g1,18380:6946919,8460249 -g1,18380:7263065,8460249 -g1,18380:7579211,8460249 -g1,18380:7895357,8460249 -g1,18380:8211503,8460249 -g1,18380:8527649,8460249 -g1,18380:8843795,8460249 -g1,18380:9159941,8460249 -g1,18380:9476087,8460249 -g1,18380:9792233,8460249 -g1,18380:10108379,8460249 -g1,18380:10424525,8460249 -g1,18380:12321399,8460249 -g1,18380:13902128,8460249 -g1,18380:14534420,8460249 -g1,18380:20225043,8460249 -g1,18380:22438063,8460249 -g1,18380:23070355,8460249 -g1,18380:24334938,8460249 -g1,18380:25283376,8460249 -h1,18380:27812541,8460249:0,0,0 -k1,18380:32583029,8460249:4770488 -g1,18380:32583029,8460249 -) -(1,18381:6630773,9126427:25952256,404226,101187 -h1,18381:6630773,9126427:0,0,0 -g1,18381:9476084,9126427 -g1,18381:10424522,9126427 -g1,18381:13269834,9126427 -g1,18381:13902126,9126427 -g1,18381:15482855,9126427 -g1,18381:16115147,9126427 -g1,18381:16747439,9126427 -g1,18381:18012022,9126427 -g1,18381:21805770,9126427 -g1,18381:22438062,9126427 -k1,18381:22438062,9126427:0 -h1,18381:27180247,9126427:0,0,0 -k1,18381:32583029,9126427:5402782 -g1,18381:32583029,9126427 -) -] -) -g1,18383:32583029,9227614 -g1,18383:6630773,9227614 -g1,18383:6630773,9227614 -g1,18383:32583029,9227614 -g1,18383:32583029,9227614 -) -h1,18383:6630773,9424222:0,0,0 -v1,18387:6630773,10727597:0,393216,0 -(1,18399:6630773,16346951:25952256,6012570,196608 -g1,18399:6630773,16346951 -g1,18399:6630773,16346951 -g1,18399:6434165,16346951 -(1,18399:6434165,16346951:0,6012570,196608 -r1,18442:32779637,16346951:26345472,6209178,196608 -k1,18399:6434165,16346951:-26345472 -) -(1,18399:6434165,16346951:26345472,6012570,196608 -[1,18399:6630773,16346951:25952256,5815962,0 -(1,18389:6630773,10935215:25952256,404226,107478 -(1,18388:6630773,10935215:0,0,0 -g1,18388:6630773,10935215 -g1,18388:6630773,10935215 -g1,18388:6303093,10935215 -(1,18388:6303093,10935215:0,0,0 -) -g1,18388:6630773,10935215 -) -k1,18389:6630773,10935215:0 -g1,18389:10424522,10935215 -g1,18389:11056814,10935215 -g1,18389:13585980,10935215 -g1,18389:15482855,10935215 -g1,18389:16115147,10935215 -g1,18389:18012022,10935215 -g1,18389:18644314,10935215 -g1,18389:19276606,10935215 -k1,18389:19276606,10935215:0 -h1,18389:20541189,10935215:0,0,0 -k1,18389:32583029,10935215:12041840 -g1,18389:32583029,10935215 -) -(1,18390:6630773,11601393:25952256,410518,101187 -h1,18390:6630773,11601393:0,0,0 -g1,18390:6946919,11601393 -g1,18390:7263065,11601393 -g1,18390:7579211,11601393 -g1,18390:7895357,11601393 -g1,18390:8211503,11601393 -g1,18390:8527649,11601393 -g1,18390:8843795,11601393 -g1,18390:9159941,11601393 -g1,18390:9476087,11601393 -g1,18390:9792233,11601393 -g1,18390:10108379,11601393 -g1,18390:10424525,11601393 -g1,18390:10740671,11601393 -g1,18390:11056817,11601393 -g1,18390:11372963,11601393 -g1,18390:11689109,11601393 -g1,18390:12005255,11601393 -g1,18390:12321401,11601393 -g1,18390:12637547,11601393 -g1,18390:12953693,11601393 -g1,18390:13269839,11601393 -g1,18390:13585985,11601393 -g1,18390:13902131,11601393 -g1,18390:14218277,11601393 -g1,18390:14534423,11601393 -g1,18390:14850569,11601393 -g1,18390:16747443,11601393 -g1,18390:17379735,11601393 -k1,18390:17379735,11601393:0 -h1,18390:21173483,11601393:0,0,0 -k1,18390:32583029,11601393:11409546 -g1,18390:32583029,11601393 -) -(1,18391:6630773,12267571:25952256,404226,82312 -h1,18391:6630773,12267571:0,0,0 -g1,18391:6946919,12267571 -g1,18391:7263065,12267571 -g1,18391:7579211,12267571 -g1,18391:7895357,12267571 -g1,18391:8211503,12267571 -g1,18391:8527649,12267571 -g1,18391:8843795,12267571 -g1,18391:9159941,12267571 -g1,18391:9476087,12267571 -g1,18391:9792233,12267571 -g1,18391:10108379,12267571 -g1,18391:10424525,12267571 -g1,18391:10740671,12267571 -g1,18391:11056817,12267571 -g1,18391:11372963,12267571 -g1,18391:11689109,12267571 -g1,18391:12005255,12267571 -g1,18391:12321401,12267571 -g1,18391:12637547,12267571 -g1,18391:12953693,12267571 -g1,18391:13269839,12267571 -g1,18391:13585985,12267571 -g1,18391:13902131,12267571 -g1,18391:14218277,12267571 -g1,18391:14534423,12267571 -g1,18391:14850569,12267571 -g1,18391:16431298,12267571 -g1,18391:17063590,12267571 -k1,18391:17063590,12267571:0 -h1,18391:18012027,12267571:0,0,0 -k1,18391:32583029,12267571:14571002 -g1,18391:32583029,12267571 -) -(1,18392:6630773,12933749:25952256,404226,101187 -h1,18392:6630773,12933749:0,0,0 -g1,18392:6946919,12933749 -g1,18392:7263065,12933749 -g1,18392:7579211,12933749 -g1,18392:7895357,12933749 -g1,18392:8211503,12933749 -g1,18392:8527649,12933749 -g1,18392:8843795,12933749 -g1,18392:9159941,12933749 -g1,18392:9476087,12933749 -g1,18392:9792233,12933749 -g1,18392:10108379,12933749 -g1,18392:10424525,12933749 -g1,18392:10740671,12933749 -g1,18392:11056817,12933749 -g1,18392:11372963,12933749 -g1,18392:11689109,12933749 -g1,18392:12005255,12933749 -g1,18392:12321401,12933749 -g1,18392:12637547,12933749 -g1,18392:12953693,12933749 -g1,18392:13269839,12933749 -g1,18392:13585985,12933749 -g1,18392:13902131,12933749 -g1,18392:14218277,12933749 -g1,18392:14534423,12933749 -g1,18392:14850569,12933749 -g1,18392:16747443,12933749 -g1,18392:17379735,12933749 -g1,18392:19276609,12933749 -h1,18392:19592755,12933749:0,0,0 -k1,18392:32583029,12933749:12990274 -g1,18392:32583029,12933749 -) -(1,18393:6630773,13599927:25952256,404226,76021 -h1,18393:6630773,13599927:0,0,0 -g1,18393:6946919,13599927 -g1,18393:7263065,13599927 -g1,18393:11372959,13599927 -h1,18393:11689105,13599927:0,0,0 -k1,18393:32583029,13599927:20893924 -g1,18393:32583029,13599927 -) -(1,18394:6630773,14266105:25952256,404226,107478 -h1,18394:6630773,14266105:0,0,0 -g1,18394:6946919,14266105 -g1,18394:7263065,14266105 -g1,18394:11372959,14266105 -h1,18394:11689105,14266105:0,0,0 -k1,18394:32583029,14266105:20893924 -g1,18394:32583029,14266105 -) -(1,18395:6630773,14932283:25952256,404226,107478 -h1,18395:6630773,14932283:0,0,0 -g1,18395:6946919,14932283 -g1,18395:7263065,14932283 -g1,18395:12321397,14932283 -g1,18395:12953689,14932283 -k1,18395:12953689,14932283:0 -h1,18395:15799000,14932283:0,0,0 -k1,18395:32583028,14932283:16784028 -g1,18395:32583028,14932283 -) -(1,18396:6630773,15598461:25952256,404226,101187 -h1,18396:6630773,15598461:0,0,0 -g1,18396:6946919,15598461 -g1,18396:7263065,15598461 -g1,18396:7579211,15598461 -g1,18396:7895357,15598461 -g1,18396:8211503,15598461 -g1,18396:8527649,15598461 -g1,18396:8843795,15598461 -g1,18396:9159941,15598461 -g1,18396:9476087,15598461 -g1,18396:9792233,15598461 -g1,18396:10108379,15598461 -g1,18396:10424525,15598461 -g1,18396:10740671,15598461 -g1,18396:12637546,15598461 -g1,18396:13269838,15598461 -g1,18396:14218276,15598461 -g1,18396:14850568,15598461 -g1,18396:15482860,15598461 -g1,18396:16431298,15598461 -g1,18396:18328172,15598461 -g1,18396:18960464,15598461 -k1,18396:18960464,15598461:0 -h1,18396:23070358,15598461:0,0,0 -k1,18396:32583029,15598461:9512671 -g1,18396:32583029,15598461 -) -(1,18397:6630773,16264639:25952256,404226,82312 -h1,18397:6630773,16264639:0,0,0 -g1,18397:6946919,16264639 -g1,18397:7263065,16264639 -g1,18397:7579211,16264639 -g1,18397:7895357,16264639 -g1,18397:8211503,16264639 -g1,18397:8527649,16264639 -g1,18397:8843795,16264639 -g1,18397:9159941,16264639 -g1,18397:9476087,16264639 -g1,18397:9792233,16264639 -g1,18397:10108379,16264639 -g1,18397:10424525,16264639 -g1,18397:10740671,16264639 -g1,18397:12637545,16264639 -g1,18397:13269837,16264639 -g1,18397:16115149,16264639 -g1,18397:17695878,16264639 -g1,18397:18328170,16264639 -h1,18397:18960462,16264639:0,0,0 -k1,18397:32583029,16264639:13622567 -g1,18397:32583029,16264639 -) -] -) -g1,18399:32583029,16346951 -g1,18399:6630773,16346951 -g1,18399:6630773,16346951 -g1,18399:32583029,16346951 -g1,18399:32583029,16346951 -) -h1,18399:6630773,16543559:0,0,0 -(1,18402:6630773,26011359:25952256,9083666,0 -k1,18402:10523651,26011359:3892878 -h1,18401:10523651,26011359:0,0,0 -(1,18401:10523651,26011359:18166500,9083666,0 -(1,18401:10523651,26011359:18167376,9083688,0 -(1,18401:10523651,26011359:18167376,9083688,0 -(1,18401:10523651,26011359:0,9083688,0 -(1,18401:10523651,26011359:0,14208860,0 -(1,18401:10523651,26011359:28417720,14208860,0 -) -k1,18401:10523651,26011359:-28417720 -) -) -g1,18401:28691027,26011359 -) -) -) -g1,18402:28690151,26011359 -k1,18402:32583029,26011359:3892878 -) -(1,18410:6630773,26852847:25952256,505283,115847 -h1,18408:6630773,26852847:983040,0,0 -k1,18408:9053812,26852847:243312 -(1,18408:9053812,26852847:0,452978,115847 -r1,18442:10818925,26852847:1765113,568825,115847 -k1,18408:9053812,26852847:-1765113 -) -(1,18408:9053812,26852847:1765113,452978,115847 -k1,18408:9053812,26852847:3277 -h1,18408:10815648,26852847:0,411205,112570 -) -k1,18408:11062237,26852847:243312 -k1,18408:12496994,26852847:243312 -(1,18408:12496994,26852847:0,452978,115847 -r1,18442:13910395,26852847:1413401,568825,115847 -k1,18408:12496994,26852847:-1413401 -) -(1,18408:12496994,26852847:1413401,452978,115847 -k1,18408:12496994,26852847:3277 -h1,18408:13907118,26852847:0,411205,112570 -) -k1,18408:14153707,26852847:243312 -k1,18408:17571583,26852847:243312 -k1,18408:20102757,26852847:243312 -k1,18408:21365154,26852847:243312 -k1,18408:22834646,26852847:243313 -k1,18408:23693996,26852847:243312 -k1,18408:24956393,26852847:243312 -k1,18408:27509849,26852847:243312 -k1,18408:28439323,26852847:243312 -k1,18408:29038495,26852847:243312 -k1,18408:31338327,26852847:243312 -k1,18409:32051532,26852847:243312 -k1,18409:32583029,26852847:0 -) -(1,18410:6630773,27694335:25952256,513147,134348 -k1,18409:8122506,27694335:205917 -k1,18409:10958382,27694335:205916 -k1,18409:11815727,27694335:205917 -k1,18409:13921532,27694335:205916 -k1,18409:15146534,27694335:205917 -k1,18409:17662595,27694335:205917 -k1,18409:19603904,27694335:205916 -(1,18409:19603904,27694335:0,452978,122846 -r1,18442:21369017,27694335:1765113,575824,122846 -k1,18409:19603904,27694335:-1765113 -) -(1,18409:19603904,27694335:1765113,452978,122846 -k1,18409:19603904,27694335:3277 -h1,18409:21365740,27694335:0,411205,112570 -) -k1,18409:21748604,27694335:205917 -k1,18409:22772410,27694335:205917 -k1,18409:24372277,27694335:205916 -k1,18409:25804373,27694335:205917 -k1,18409:28028143,27694335:205916 -k1,18409:32051532,27694335:205917 -k1,18409:32583029,27694335:0 -) -(1,18410:6630773,28535823:25952256,505283,126483 -k1,18409:10468941,28535823:248106 -k1,18409:11333085,28535823:248106 -k1,18409:14045346,28535823:248107 -k1,18409:14944880,28535823:248106 -k1,18409:18197812,28535823:248106 -k1,18409:22146081,28535823:248106 -k1,18409:23347736,28535823:248106 -k1,18409:24530385,28535823:248106 -k1,18409:25797577,28535823:248107 -(1,18409:25797577,28535823:0,435480,115847 -r1,18442:27562691,28535823:1765114,551327,115847 -k1,18409:25797577,28535823:-1765114 -) -(1,18409:25797577,28535823:1765114,435480,115847 -g1,18409:26504278,28535823 -g1,18409:27207702,28535823 -h1,18409:27559414,28535823:0,411205,112570 -) -k1,18409:27810797,28535823:248106 -k1,18409:28674941,28535823:248106 -(1,18409:28674941,28535823:0,452978,115847 -r1,18442:31143478,28535823:2468537,568825,115847 -k1,18409:28674941,28535823:-2468537 -) -(1,18409:28674941,28535823:2468537,452978,115847 -k1,18409:28674941,28535823:3277 -h1,18409:31140201,28535823:0,411205,112570 -) -k1,18409:31391584,28535823:248106 -k1,18409:32583029,28535823:0 -) -(1,18410:6630773,29377311:25952256,513147,126483 -g1,18409:8263930,29377311 -g1,18409:9555644,29377311 -(1,18409:9555644,29377311:0,452978,122846 -r1,18442:12727605,29377311:3171961,575824,122846 -k1,18409:9555644,29377311:-3171961 -) -(1,18409:9555644,29377311:3171961,452978,122846 -g1,18409:11669192,29377311 -g1,18409:12372616,29377311 -h1,18409:12724328,29377311:0,411205,112570 -) -g1,18409:12926834,29377311 -g1,18409:13777491,29377311 -g1,18409:16590951,29377311 -g1,18409:17809265,29377311 -g1,18409:19080663,29377311 -g1,18409:19939184,29377311 -g1,18409:21157498,29377311 -g1,18409:22922382,29377311 -g1,18409:23734373,29377311 -g1,18409:25136843,29377311 -g1,18409:28743944,29377311 -k1,18410:32583029,29377311:1985071 -g1,18410:32583029,29377311 -) -v1,18412:6630773,30362087:0,393216,0 -(1,18421:6630773,34014365:25952256,4045494,196608 -g1,18421:6630773,34014365 -g1,18421:6630773,34014365 -g1,18421:6434165,34014365 -(1,18421:6434165,34014365:0,4045494,196608 -r1,18442:32779637,34014365:26345472,4242102,196608 -k1,18421:6434165,34014365:-26345472 -) -(1,18421:6434165,34014365:26345472,4045494,196608 -[1,18421:6630773,34014365:25952256,3848886,0 -(1,18414:6630773,30575997:25952256,410518,107478 -(1,18413:6630773,30575997:0,0,0 -g1,18413:6630773,30575997 -g1,18413:6630773,30575997 -g1,18413:6303093,30575997 -(1,18413:6303093,30575997:0,0,0 -) -g1,18413:6630773,30575997 -) -k1,18414:6630773,30575997:0 -g1,18414:10424522,30575997 -g1,18414:11056814,30575997 -g1,18414:13585980,30575997 -g1,18414:15482855,30575997 -g1,18414:16115147,30575997 -g1,18414:18012022,30575997 -g1,18414:18644314,30575997 -g1,18414:19276606,30575997 -g1,18414:20857335,30575997 -g1,18414:22754209,30575997 -g1,18414:23386501,30575997 -g1,18414:27812541,30575997 -h1,18414:28128687,30575997:0,0,0 -k1,18414:32583029,30575997:4454342 -g1,18414:32583029,30575997 -) -(1,18415:6630773,31242175:25952256,404226,107478 -h1,18415:6630773,31242175:0,0,0 -g1,18415:6946919,31242175 -g1,18415:7263065,31242175 -g1,18415:11372959,31242175 -h1,18415:11689105,31242175:0,0,0 -k1,18415:32583029,31242175:20893924 -g1,18415:32583029,31242175 -) -(1,18416:6630773,31908353:25952256,404226,107478 -h1,18416:6630773,31908353:0,0,0 -g1,18416:6946919,31908353 -g1,18416:7263065,31908353 -g1,18416:12321397,31908353 -g1,18416:12953689,31908353 -k1,18416:12953689,31908353:0 -h1,18416:15799000,31908353:0,0,0 -k1,18416:32583028,31908353:16784028 -g1,18416:32583028,31908353 -) -(1,18417:6630773,32574531:25952256,404226,101187 -h1,18417:6630773,32574531:0,0,0 -g1,18417:6946919,32574531 -g1,18417:7263065,32574531 -g1,18417:7579211,32574531 -g1,18417:7895357,32574531 -g1,18417:8211503,32574531 -g1,18417:8527649,32574531 -g1,18417:8843795,32574531 -g1,18417:9159941,32574531 -g1,18417:9476087,32574531 -g1,18417:9792233,32574531 -g1,18417:10108379,32574531 -g1,18417:10424525,32574531 -g1,18417:10740671,32574531 -g1,18417:12637546,32574531 -g1,18417:13269838,32574531 -g1,18417:14218276,32574531 -g1,18417:14850568,32574531 -g1,18417:15482860,32574531 -g1,18417:16431298,32574531 -g1,18417:18328172,32574531 -g1,18417:18960464,32574531 -k1,18417:18960464,32574531:0 -h1,18417:23070358,32574531:0,0,0 -k1,18417:32583029,32574531:9512671 -g1,18417:32583029,32574531 -) -(1,18418:6630773,33240709:25952256,404226,82312 -h1,18418:6630773,33240709:0,0,0 -g1,18418:6946919,33240709 -g1,18418:7263065,33240709 -g1,18418:7579211,33240709 -g1,18418:7895357,33240709 -g1,18418:8211503,33240709 -g1,18418:8527649,33240709 -g1,18418:8843795,33240709 -g1,18418:9159941,33240709 -g1,18418:9476087,33240709 -g1,18418:9792233,33240709 -g1,18418:10108379,33240709 -g1,18418:10424525,33240709 -g1,18418:10740671,33240709 -g1,18418:12637545,33240709 -g1,18418:13269837,33240709 -g1,18418:15799003,33240709 -g1,18418:17379732,33240709 -g1,18418:18012024,33240709 -k1,18418:18012024,33240709:0 -h1,18418:18644316,33240709:0,0,0 -k1,18418:32583029,33240709:13938713 -g1,18418:32583029,33240709 -) -(1,18419:6630773,33906887:25952256,404226,107478 -h1,18419:6630773,33906887:0,0,0 -g1,18419:6946919,33906887 -g1,18419:7263065,33906887 -g1,18419:7579211,33906887 -g1,18419:7895357,33906887 -g1,18419:8211503,33906887 -g1,18419:8527649,33906887 -g1,18419:8843795,33906887 -g1,18419:9159941,33906887 -g1,18419:9476087,33906887 -g1,18419:9792233,33906887 -g1,18419:10108379,33906887 -g1,18419:10424525,33906887 -g1,18419:10740671,33906887 -g1,18419:12637545,33906887 -g1,18419:13269837,33906887 -g1,18419:14218275,33906887 -g1,18419:16115149,33906887 -g1,18419:16747441,33906887 -g1,18419:17695879,33906887 -g1,18419:19592753,33906887 -g1,18419:20225045,33906887 -h1,18419:21173482,33906887:0,0,0 -k1,18419:32583029,33906887:11409547 -g1,18419:32583029,33906887 -) -] -) -g1,18421:32583029,34014365 -g1,18421:6630773,34014365 -g1,18421:6630773,34014365 -g1,18421:32583029,34014365 -g1,18421:32583029,34014365 -) -h1,18421:6630773,34210973:0,0,0 -(1,18425:6630773,35371060:25952256,513147,134348 -h1,18424:6630773,35371060:983040,0,0 -k1,18424:9891290,35371060:159353 -k1,18424:11450492,35371060:159353 -k1,18424:13345238,35371060:159353 -k1,18424:14453553,35371060:159354 -k1,18424:17465033,35371060:159353 -k1,18424:19708431,35371060:159353 -k1,18424:20399281,35371060:159353 -k1,18424:23853129,35371060:159353 -k1,18424:24628520,35371060:159353 -k1,18424:25806959,35371060:159354 -k1,18424:27705638,35371060:159353 -k1,18424:29258942,35371060:159353 -k1,18424:31931601,35371060:159353 -k1,18424:32583029,35371060:0 -) -(1,18425:6630773,36212548:25952256,513147,134348 -k1,18424:8405226,36212548:176685 -k1,18424:9808090,36212548:176685 -k1,18424:10600813,36212548:176685 -k1,18424:12144579,36212548:176685 -k1,18424:12980556,36212548:176685 -k1,18424:15542752,36212548:176685 -k1,18424:17830352,36212548:176685 -k1,18424:18816406,36212548:176684 -k1,18424:19348951,36212548:176685 -k1,18424:22895497,36212548:176685 -k1,18424:24863936,36212548:176685 -k1,18424:25994170,36212548:176685 -k1,18424:27353780,36212548:176685 -k1,18424:28733706,36212548:176685 -k1,18424:31189078,36212548:176685 -k1,18424:32583029,36212548:0 -) -(1,18425:6630773,37054036:25952256,513147,126483 -k1,18424:7202304,37054036:215671 -k1,18424:9542651,37054036:215670 -k1,18424:12593409,37054036:215671 -k1,18424:14694551,37054036:215671 -k1,18424:16376918,37054036:215671 -k1,18424:17058549,37054036:215670 -k1,18424:18340491,37054036:215671 -k1,18424:19910136,37054036:215671 -k1,18424:22276699,37054036:215671 -k1,18424:26855756,37054036:215670 -k1,18424:28355933,37054036:215671 -(1,18424:28355933,37054036:0,452978,122846 -r1,18442:32583029,37054036:4227096,575824,122846 -k1,18424:28355933,37054036:-4227096 -) -(1,18424:28355933,37054036:4227096,452978,122846 -k1,18424:28355933,37054036:3277 -h1,18424:32579752,37054036:0,411205,112570 -) -k1,18424:32583029,37054036:0 -) -(1,18425:6630773,37895524:25952256,505283,134348 -k1,18424:9359733,37895524:175677 -k1,18424:10681636,37895524:175678 -k1,18424:11213173,37895524:175677 -k1,18424:14267847,37895524:175677 -k1,18424:16469243,37895524:175678 -k1,18424:19652367,37895524:175677 -k1,18424:21019489,37895524:175677 -k1,18424:22479672,37895524:175677 -k1,18424:23011210,37895524:175678 -k1,18424:24752542,37895524:175677 -k1,18424:26032501,37895524:175677 -k1,18424:26955945,37895524:175678 -k1,18424:28150707,37895524:175677 -k1,18424:29701985,37895524:175677 -k1,18424:31435454,37895524:175678 -k1,18424:32227169,37895524:175677 -k1,18424:32583029,37895524:0 -) -(1,18425:6630773,38737012:25952256,513147,134348 -k1,18424:8828849,38737012:172358 -k1,18424:9467168,38737012:172358 -k1,18424:12169215,38737012:172357 -k1,18424:13538260,38737012:172358 -k1,18424:16376623,38737012:172358 -k1,18424:17208273,38737012:172358 -k1,18424:20051877,38737012:172357 -k1,18424:22120192,38737012:172358 -k1,18424:23686501,38737012:172358 -k1,18424:24214719,38737012:172358 -k1,18424:26260095,38737012:172357 -k1,18424:27532147,38737012:172358 -k1,18424:28355933,38737012:172358 -(1,18424:28355933,38737012:0,452978,122846 -r1,18442:32583029,38737012:4227096,575824,122846 -k1,18424:28355933,38737012:-4227096 -) -(1,18424:28355933,38737012:4227096,452978,122846 -k1,18424:28355933,38737012:3277 -h1,18424:32579752,38737012:0,411205,112570 -) -k1,18424:32583029,38737012:0 -) -(1,18425:6630773,39578500:25952256,513147,134348 -g1,18424:7591530,39578500 -g1,18424:10218213,39578500 -g1,18424:10773302,39578500 -(1,18424:10773302,39578500:0,452978,115847 -r1,18442:12890127,39578500:2116825,568825,115847 -k1,18424:10773302,39578500:-2116825 -) -(1,18424:10773302,39578500:2116825,452978,115847 -k1,18424:10773302,39578500:3277 -h1,18424:12886850,39578500:0,411205,112570 -) -g1,18424:13089356,39578500 -g1,18424:14682536,39578500 -g1,18424:17553012,39578500 -g1,18424:19286439,39578500 -g1,18424:20171830,39578500 -g1,18424:21141762,39578500 -g1,18424:24413319,39578500 -g1,18424:25560199,39578500 -(1,18424:25560199,39578500:0,452978,115847 -r1,18442:26973600,39578500:1413401,568825,115847 -k1,18424:25560199,39578500:-1413401 -) -(1,18424:25560199,39578500:1413401,452978,115847 -k1,18424:25560199,39578500:3277 -h1,18424:26970323,39578500:0,411205,112570 -) -g1,18424:27172829,39578500 -g1,18424:27903555,39578500 -g1,18424:29388600,39578500 -k1,18425:32583029,39578500:390799 -g1,18425:32583029,39578500 -) -v1,18427:6630773,40563276:0,393216,0 -(1,18438:6630773,45510161:25952256,5340101,196608 -g1,18438:6630773,45510161 -g1,18438:6630773,45510161 -g1,18438:6434165,45510161 -(1,18438:6434165,45510161:0,5340101,196608 -r1,18442:32779637,45510161:26345472,5536709,196608 -k1,18438:6434165,45510161:-26345472 -) -(1,18438:6434165,45510161:26345472,5340101,196608 -[1,18438:6630773,45510161:25952256,5143493,0 -(1,18429:6630773,40770894:25952256,404226,101187 -(1,18428:6630773,40770894:0,0,0 -g1,18428:6630773,40770894 -g1,18428:6630773,40770894 -g1,18428:6303093,40770894 -(1,18428:6303093,40770894:0,0,0 -) -g1,18428:6630773,40770894 -) -g1,18429:8527647,40770894 -g1,18429:9476085,40770894 -g1,18429:13585980,40770894 -g1,18429:14218272,40770894 -k1,18429:14218272,40770894:0 -h1,18429:14850564,40770894:0,0,0 -k1,18429:32583028,40770894:17732464 -g1,18429:32583028,40770894 -) -(1,18430:6630773,41437072:25952256,404226,82312 -h1,18430:6630773,41437072:0,0,0 -g1,18430:6946919,41437072 -g1,18430:7263065,41437072 -g1,18430:7579211,41437072 -g1,18430:7895357,41437072 -g1,18430:8211503,41437072 -g1,18430:8527649,41437072 -g1,18430:8843795,41437072 -g1,18430:9159941,41437072 -g1,18430:9476087,41437072 -g1,18430:9792233,41437072 -g1,18430:10108379,41437072 -g1,18430:10424525,41437072 -g1,18430:10740671,41437072 -g1,18430:11056817,41437072 -g1,18430:11372963,41437072 -g1,18430:11689109,41437072 -g1,18430:13585984,41437072 -g1,18430:14218276,41437072 -k1,18430:14218276,41437072:0 -h1,18430:15482860,41437072:0,0,0 -k1,18430:32583028,41437072:17100168 -g1,18430:32583028,41437072 -) -(1,18431:6630773,42103250:25952256,404226,82312 -h1,18431:6630773,42103250:0,0,0 -g1,18431:6946919,42103250 -g1,18431:7263065,42103250 -g1,18431:7579211,42103250 -g1,18431:7895357,42103250 -g1,18431:8211503,42103250 -g1,18431:8527649,42103250 -g1,18431:8843795,42103250 -g1,18431:9159941,42103250 -g1,18431:9476087,42103250 -g1,18431:9792233,42103250 -g1,18431:10108379,42103250 -g1,18431:10424525,42103250 -g1,18431:10740671,42103250 -g1,18431:11056817,42103250 -g1,18431:11372963,42103250 -g1,18431:11689109,42103250 -g1,18431:13585984,42103250 -g1,18431:14218276,42103250 -k1,18431:14218276,42103250:0 -h1,18431:16747444,42103250:0,0,0 -k1,18431:32583029,42103250:15835585 -g1,18431:32583029,42103250 -) -(1,18432:6630773,42769428:25952256,404226,76021 -h1,18432:6630773,42769428:0,0,0 -g1,18432:6946919,42769428 -g1,18432:7263065,42769428 -g1,18432:7579211,42769428 -g1,18432:7895357,42769428 -g1,18432:8211503,42769428 -g1,18432:8527649,42769428 -g1,18432:8843795,42769428 -g1,18432:9159941,42769428 -g1,18432:9476087,42769428 -g1,18432:9792233,42769428 -g1,18432:10108379,42769428 -g1,18432:10424525,42769428 -g1,18432:10740671,42769428 -g1,18432:11056817,42769428 -g1,18432:11372963,42769428 -g1,18432:11689109,42769428 -g1,18432:13585984,42769428 -g1,18432:14218276,42769428 -h1,18432:16747444,42769428:0,0,0 -k1,18432:32583029,42769428:15835585 -g1,18432:32583029,42769428 -) -(1,18433:6630773,43435606:25952256,404226,101187 -h1,18433:6630773,43435606:0,0,0 -g1,18433:9159939,43435606 -g1,18433:10108377,43435606 -g1,18433:12953689,43435606 -g1,18433:13585981,43435606 -g1,18433:14534419,43435606 -g1,18433:15166711,43435606 -g1,18433:15799003,43435606 -g1,18433:16747441,43435606 -g1,18433:20541189,43435606 -g1,18433:21173481,43435606 -k1,18433:21173481,43435606:0 -h1,18433:24967229,43435606:0,0,0 -k1,18433:32583029,43435606:7615800 -g1,18433:32583029,43435606 -) -(1,18434:6630773,44101784:25952256,404226,107478 -h1,18434:6630773,44101784:0,0,0 -g1,18434:11689104,44101784 -g1,18434:14218270,44101784 -g1,18434:14850562,44101784 -g1,18434:17063582,44101784 -g1,18434:18012020,44101784 -g1,18434:19908894,44101784 -g1,18434:20541186,44101784 -g1,18434:24967226,44101784 -h1,18434:25283372,44101784:0,0,0 -k1,18434:32583029,44101784:7299657 -g1,18434:32583029,44101784 -) -(1,18435:6630773,44767962:25952256,404226,107478 -h1,18435:6630773,44767962:0,0,0 -g1,18435:6946919,44767962 -g1,18435:7263065,44767962 -g1,18435:14534416,44767962 -g1,18435:15166708,44767962 -g1,18435:17063583,44767962 -g1,18435:18644312,44767962 -g1,18435:19276604,44767962 -g1,18435:20225042,44767962 -g1,18435:22121916,44767962 -g1,18435:22754208,44767962 -g1,18435:24651083,44767962 -h1,18435:24967229,44767962:0,0,0 -k1,18435:32583029,44767962:7615800 -g1,18435:32583029,44767962 -) -(1,18436:6630773,45434140:25952256,404226,76021 -h1,18436:6630773,45434140:0,0,0 -g1,18436:6946919,45434140 -g1,18436:7263065,45434140 -k1,18436:7263065,45434140:0 -h1,18436:11056813,45434140:0,0,0 -k1,18436:32583029,45434140:21526216 -g1,18436:32583029,45434140 -) -] -) -g1,18438:32583029,45510161 -g1,18438:6630773,45510161 -g1,18438:6630773,45510161 -g1,18438:32583029,45510161 -g1,18438:32583029,45510161 -) -h1,18438:6630773,45706769:0,0,0 -] -(1,18442:32583029,45706769:0,0,0 -g1,18442:32583029,45706769 -) -) -] -(1,18442:6630773,47279633:25952256,0,0 -h1,18442:6630773,47279633:25952256,0,0 -) -] -(1,18442:4262630,4025873:0,0,0 -[1,18442:-473656,4025873:0,0,0 -(1,18442:-473656,-710413:0,0,0 -(1,18442:-473656,-710413:0,0,0 -g1,18442:-473656,-710413 -) -g1,18442:-473656,-710413 -) -] -) -] -!30137 -}325 -Input:2863:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2864:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2865:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2866:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2867:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2868:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2869:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2870:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!764 -{326 -[1,18489:4262630,47279633:28320399,43253760,0 -(1,18489:4262630,4025873:0,0,0 -[1,18489:-473656,4025873:0,0,0 -(1,18489:-473656,-710413:0,0,0 -(1,18489:-473656,-644877:0,0,0 -k1,18489:-473656,-644877:-65536 -) -(1,18489:-473656,4736287:0,0,0 -k1,18489:-473656,4736287:5209943 ) -g1,18489:-473656,-710413 +k1,18543:3078556,2439708:-34777008 ) ] +[1,18543:3078558,4812305:0,0,0 +(1,18543:3078558,49800853:0,16384,2228224 +k1,18543:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,18543:2537886,49800853:1179648,16384,0 ) -[1,18489:6630773,47279633:25952256,43253760,0 -[1,18489:6630773,4812305:25952256,786432,0 -(1,18489:6630773,4812305:25952256,485622,11795 -(1,18489:6630773,4812305:25952256,485622,11795 -g1,18489:3078558,4812305 -[1,18489:3078558,4812305:0,0,0 -(1,18489:3078558,2439708:0,1703936,0 -k1,18489:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,18489:2537886,2439708:1179648,16384,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,18543:3078558,51504789:16384,1179648,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,18489:3078558,1915420:16384,1179648,0 -) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,18489:3078558,4812305:0,0,0 -(1,18489:3078558,2439708:0,1703936,0 -g1,18489:29030814,2439708 -g1,18489:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,18489:36151628,1915420:16384,1179648,0 +[1,18543:3078558,4812305:0,0,0 +(1,18543:3078558,49800853:0,16384,2228224 +g1,18543:29030814,49800853 +g1,18543:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,18543:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,18489:37855564,2439708:1179648,16384,0 -) -) -k1,18489:3078556,2439708:-34777008 -) -] -[1,18489:3078558,4812305:0,0,0 -(1,18489:3078558,49800853:0,16384,2228224 -k1,18489:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,18489:2537886,49800853:1179648,16384,0 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,18543:37855564,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,18489:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,18543:3078556,49800853:-34777008 ) ] -) +g1,18543:6630773,4812305 +g1,18543:6630773,4812305 +g1,18543:10347975,4812305 +k1,18543:31387651,4812305:21039676 ) ) ] -[1,18489:3078558,4812305:0,0,0 -(1,18489:3078558,49800853:0,16384,2228224 -g1,18489:29030814,49800853 -g1,18489:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,18489:36151628,51504789:16384,1179648,0 +[1,18543:6630773,45706769:25952256,40108032,0 +(1,18543:6630773,45706769:25952256,40108032,0 +(1,18543:6630773,45706769:0,0,0 +g1,18543:6630773,45706769 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] +[1,18543:6630773,45706769:25952256,40108032,0 +(1,18496:6630773,14682403:25952256,9083666,0 +k1,18496:10523651,14682403:3892878 +h1,18495:10523651,14682403:0,0,0 +(1,18495:10523651,14682403:18166500,9083666,0 +(1,18495:10523651,14682403:18167376,9083688,0 +(1,18495:10523651,14682403:18167376,9083688,0 +(1,18495:10523651,14682403:0,9083688,0 +(1,18495:10523651,14682403:0,14208860,0 +(1,18495:10523651,14682403:28417720,14208860,0 ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,18489:37855564,49800853:1179648,16384,0 +k1,18495:10523651,14682403:-28417720 ) ) -k1,18489:3078556,49800853:-34777008 +g1,18495:28691027,14682403 +) +) +) +g1,18496:28690151,14682403 +k1,18496:32583029,14682403:3892878 +) +(1,18503:6630773,15547483:25952256,505283,126483 +h1,18502:6630773,15547483:983040,0,0 +k1,18502:8453247,15547483:211599 +k1,18502:9683932,15547483:211600 +k1,18502:12556948,15547483:211599 +k1,18502:14797542,15547483:211599 +k1,18502:15877493,15547483:211599 +k1,18502:18674488,15547483:211600 +k1,18502:19537515,15547483:211599 +k1,18502:21262996,15547483:211599 +k1,18502:22493680,15547483:211599 +k1,18502:23931459,15547483:211600 +k1,18502:24794486,15547483:211599 +k1,18502:25753851,15547483:211599 +k1,18502:28302464,15547483:211599 +k1,18502:28983957,15547483:211600 +k1,18502:29727053,15547483:211599 +k1,18502:31224468,15547483:211599 +k1,18503:32583029,15547483:0 +) +(1,18503:6630773,16412563:25952256,513147,126483 +k1,18502:8491070,16412563:202236 +k1,18502:9884752,16412563:202237 +k1,18502:12374195,16412563:202236 +k1,18502:16015761,16412563:202237 +k1,18502:16869425,16412563:202236 +k1,18502:18713994,16412563:202237 +k1,18502:21428225,16412563:202236 +k1,18502:23474645,16412563:202237 +k1,18502:24486251,16412563:202236 +k1,18502:25707573,16412563:202237 +k1,18502:26705416,16412563:202236 +k1,18502:28917642,16412563:202237 +(1,18502:28917642,16412563:0,452978,115847 +r1,18543:30682755,16412563:1765113,568825,115847 +k1,18502:28917642,16412563:-1765113 +) +(1,18502:28917642,16412563:1765113,452978,115847 +k1,18502:28917642,16412563:3277 +h1,18502:30679478,16412563:0,411205,112570 +) +k1,18502:30884991,16412563:202236 +k1,18502:32583029,16412563:0 +) +(1,18503:6630773,17277643:25952256,513147,134348 +k1,18502:9010955,17277643:198488 +k1,18502:10228527,17277643:198487 +k1,18502:13234577,17277643:198488 +k1,18502:14380715,17277643:198487 +(1,18502:14380715,17277643:0,452978,115847 +r1,18543:16145828,17277643:1765113,568825,115847 +k1,18502:14380715,17277643:-1765113 +) +(1,18502:14380715,17277643:1765113,452978,115847 +k1,18502:14380715,17277643:3277 +h1,18502:16142551,17277643:0,411205,112570 +) +k1,18502:16517986,17277643:198488 +k1,18502:18204796,17277643:198487 +k1,18502:19271636,17277643:198488 +k1,18502:20562608,17277643:198487 +(1,18502:20562608,17277643:0,452978,122846 +r1,18543:24437992,17277643:3875384,575824,122846 +k1,18502:20562608,17277643:-3875384 +) +(1,18502:20562608,17277643:3875384,452978,122846 +k1,18502:20562608,17277643:3277 +h1,18502:24434715,17277643:0,411205,112570 +) +k1,18502:24636480,17277643:198488 +k1,18502:26228918,17277643:198487 +k1,18502:28623517,17277643:198488 +k1,18502:29473432,17277643:198487 +k1,18502:30419686,17277643:198488 +k1,18502:32583029,17277643:0 +) +(1,18503:6630773,18142723:25952256,513147,126483 +k1,18502:8061267,18142723:163028 +k1,18502:11994581,18142723:163028 +k1,18502:14507730,18142723:163028 +k1,18502:15480127,18142723:163027 +k1,18502:16662240,18142723:163028 +k1,18502:17620875,18142723:163028 +k1,18502:19793892,18142723:163028 +k1,18502:20976005,18142723:163028 +k1,18502:22238727,18142723:163028 +k1,18502:23053183,18142723:163028 +(1,18502:23053183,18142723:0,452978,115847 +r1,18543:24818296,18142723:1765113,568825,115847 +k1,18502:23053183,18142723:-1765113 +) +(1,18502:23053183,18142723:1765113,452978,115847 +k1,18502:23053183,18142723:3277 +h1,18502:24815019,18142723:0,411205,112570 +) +k1,18502:25154993,18142723:163027 +k1,18502:26514708,18142723:163028 +k1,18502:28331209,18142723:163028 +k1,18502:31478747,18142723:163028 +k1,18502:32583029,18142723:0 +) +(1,18503:6630773,19007803:25952256,513147,134348 +g1,18502:7577768,19007803 +g1,18502:9290223,19007803 +g1,18502:10437103,19007803 +g1,18502:12910431,19007803 +g1,18502:16084339,19007803 +g1,18502:18479679,19007803 +g1,18502:19745179,19007803 +g1,18502:22879110,19007803 +k1,18503:32583029,19007803:7144738 +g1,18503:32583029,19007803 +) +v1,18505:6630773,19692658:0,393216,0 +(1,18511:6630773,21403051:25952256,2103609,196608 +g1,18511:6630773,21403051 +g1,18511:6630773,21403051 +g1,18511:6434165,21403051 +(1,18511:6434165,21403051:0,2103609,196608 +r1,18543:32779637,21403051:26345472,2300217,196608 +k1,18511:6434165,21403051:-26345472 +) +(1,18511:6434165,21403051:26345472,2103609,196608 +[1,18511:6630773,21403051:25952256,1907001,0 +(1,18507:6630773,19920489:25952256,424439,112852 +(1,18506:6630773,19920489:0,0,0 +g1,18506:6630773,19920489 +g1,18506:6630773,19920489 +g1,18506:6303093,19920489 +(1,18506:6303093,19920489:0,0,0 +) +g1,18506:6630773,19920489 +) +k1,18507:6630773,19920489:0 +g1,18507:11942036,19920489 +g1,18507:14265714,19920489 +g1,18507:15261576,19920489 +g1,18507:17253300,19920489 +g1,18507:17917208,19920489 +g1,18507:23228471,19920489 +g1,18507:24224333,19920489 +g1,18507:25884103,19920489 +g1,18507:27211919,19920489 +g1,18507:27875827,19920489 +g1,18507:29867551,19920489 +h1,18507:30199505,19920489:0,0,0 +k1,18507:32583029,19920489:2383524 +g1,18507:32583029,19920489 +) +(1,18508:6630773,20605344:25952256,424439,112852 +h1,18508:6630773,20605344:0,0,0 +g1,18508:6962727,20605344 +g1,18508:7294681,20605344 +g1,18508:12605944,20605344 +g1,18508:13269852,20605344 +g1,18508:15261576,20605344 +g1,18508:17253300,20605344 +g1,18508:17917208,20605344 +g1,18508:19908932,20605344 +g1,18508:21568702,20605344 +g1,18508:22232610,20605344 +g1,18508:23228472,20605344 +h1,18508:23560426,20605344:0,0,0 +k1,18508:32583029,20605344:9022603 +g1,18508:32583029,20605344 +) +(1,18509:6630773,21290199:25952256,424439,112852 +h1,18509:6630773,21290199:0,0,0 +g1,18509:6962727,21290199 +g1,18509:7294681,21290199 +k1,18509:7294681,21290199:0 +h1,18509:11278128,21290199:0,0,0 +k1,18509:32583028,21290199:21304900 +g1,18509:32583028,21290199 +) +] +) +g1,18511:32583029,21403051 +g1,18511:6630773,21403051 +g1,18511:6630773,21403051 +g1,18511:32583029,21403051 +g1,18511:32583029,21403051 +) +h1,18511:6630773,21599659:0,0,0 +(1,18515:6630773,22464739:25952256,513147,126483 +h1,18514:6630773,22464739:983040,0,0 +k1,18514:8660504,22464739:228802 +(1,18514:8660504,22464739:0,452978,122846 +r1,18543:12887600,22464739:4227096,575824,122846 +k1,18514:8660504,22464739:-4227096 +) +(1,18514:8660504,22464739:4227096,452978,122846 +k1,18514:8660504,22464739:3277 +h1,18514:12884323,22464739:0,411205,112570 +) +k1,18514:13116403,22464739:228803 +k1,18514:15178902,22464739:228802 +k1,18514:16426790,22464739:228803 +k1,18514:18309065,22464739:228802 +k1,18514:22148901,22464739:228802 +k1,18514:23063866,22464739:228803 +(1,18514:23063866,22464739:0,452978,122846 +r1,18543:26939250,22464739:3875384,575824,122846 +k1,18514:23063866,22464739:-3875384 +) +(1,18514:23063866,22464739:3875384,452978,122846 +k1,18514:23063866,22464739:3277 +h1,18514:26935973,22464739:0,411205,112570 +) +k1,18514:27168052,22464739:228802 +k1,18514:29467793,22464739:228803 +k1,18514:30644246,22464739:228802 +(1,18514:30644246,22464739:0,452978,122846 +r1,18543:32409359,22464739:1765113,575824,122846 +k1,18514:30644246,22464739:-1765113 +) +(1,18514:30644246,22464739:1765113,452978,122846 +k1,18514:30644246,22464739:3277 +h1,18514:32406082,22464739:0,411205,112570 +) +k1,18514:32583029,22464739:0 +) +(1,18515:6630773,23329819:25952256,513147,126483 +k1,18514:7639020,23329819:139895 +k1,18514:9811842,23329819:139895 +k1,18514:12621019,23329819:139896 +k1,18514:14629345,23329819:139895 +k1,18514:16144841,23329819:139895 +k1,18514:17303821,23329819:139895 +k1,18514:20670709,23329819:139895 +k1,18514:24421639,23329819:139896 +k1,18514:27742652,23329819:139895 +k1,18514:28533975,23329819:139895 +(1,18514:28533975,23329819:0,452978,122846 +r1,18543:32409359,23329819:3875384,575824,122846 +k1,18514:28533975,23329819:-3875384 +) +(1,18514:28533975,23329819:3875384,452978,122846 +k1,18514:28533975,23329819:3277 +h1,18514:32406082,23329819:0,411205,112570 +) +k1,18514:32583029,23329819:0 +) +(1,18515:6630773,24194899:25952256,513147,126483 +k1,18514:7762322,24194899:178000 +k1,18514:9277257,24194899:178001 +k1,18514:11003873,24194899:178000 +k1,18514:11833301,24194899:178000 +k1,18514:13464890,24194899:178000 +k1,18514:14661976,24194899:178001 +k1,18514:17105556,24194899:178000 +k1,18514:19098248,24194899:178000 +k1,18514:19935541,24194899:178001 +k1,18514:21132626,24194899:178000 +k1,18514:23450377,24194899:178000 +k1,18514:24796885,24194899:178001 +k1,18514:25657770,24194899:178000 +k1,18514:26854855,24194899:178000 +k1,18514:28648973,24194899:178000 +k1,18514:30340200,24194899:178001 +k1,18514:31169628,24194899:178000 +(1,18514:31169628,24194899:0,459977,115847 +r1,18543:32583029,24194899:1413401,575824,115847 +k1,18514:31169628,24194899:-1413401 +) +(1,18514:31169628,24194899:1413401,459977,115847 +k1,18514:31169628,24194899:3277 +h1,18514:32579752,24194899:0,411205,112570 +) +k1,18514:32583029,24194899:0 +) +(1,18515:6630773,25059979:25952256,513147,134348 +k1,18514:7816420,25059979:166562 +k1,18514:11080213,25059979:166562 +k1,18514:11929661,25059979:166563 +k1,18514:12747651,25059979:166562 +k1,18514:15154889,25059979:166562 +k1,18514:16340536,25059979:166562 +k1,18514:20463507,25059979:166563 +k1,18514:21289361,25059979:166562 +k1,18514:22475008,25059979:166562 +k1,18514:25212547,25059979:166562 +k1,18514:26208140,25059979:166563 +k1,18514:29257631,25059979:166562 +k1,18514:30443278,25059979:166562 +k1,18514:32583029,25059979:0 +) +(1,18515:6630773,25925059:25952256,505283,126483 +k1,18514:8257954,25925059:285004 +k1,18514:9635443,25925059:285004 +(1,18514:9635443,25925059:0,452978,115847 +r1,18543:14565963,25925059:4930520,568825,115847 +k1,18514:9635443,25925059:-4930520 +) +(1,18514:9635443,25925059:4930520,452978,115847 +g1,18514:13507550,25925059 +g1,18514:14210974,25925059 +h1,18514:14562686,25925059:0,411205,112570 +) +k1,18514:15024637,25925059:285004 +k1,18514:17498544,25925059:285004 +k1,18514:21139648,25925059:285005 +k1,18514:21956149,25925059:285004 +k1,18514:25502224,25925059:285004 +k1,18514:26548756,25925059:285004 +k1,18514:30114492,25925059:285004 +(1,18514:30114492,25925059:0,452978,115847 +r1,18543:32583029,25925059:2468537,568825,115847 +k1,18514:30114492,25925059:-2468537 +) +(1,18514:30114492,25925059:2468537,452978,115847 +k1,18514:30114492,25925059:3277 +h1,18514:32579752,25925059:0,411205,112570 +) +k1,18514:32583029,25925059:0 +) +(1,18515:6630773,26790139:25952256,513147,134348 +g1,18514:8021447,26790139 +g1,18514:9239761,26790139 +g1,18514:10707767,26790139 +g1,18514:11566288,26790139 +g1,18514:12784602,26790139 +g1,18514:15238270,26790139 +g1,18514:17726672,26790139 +g1,18514:18944986,26790139 +g1,18514:20370394,26790139 +g1,18514:21331151,26790139 +(1,18514:21331151,26790139:0,452978,122846 +r1,18543:25909959,26790139:4578808,575824,122846 +k1,18514:21331151,26790139:-4578808 +) +(1,18514:21331151,26790139:4578808,452978,122846 +k1,18514:21331151,26790139:3277 +h1,18514:25906682,26790139:0,411205,112570 +) +k1,18515:32583029,26790139:6499400 +g1,18515:32583029,26790139 +) +v1,18518:6630773,27474994:0,393216,0 +(1,18533:6630773,35342476:25952256,8260698,196608 +g1,18533:6630773,35342476 +g1,18533:6630773,35342476 +g1,18533:6434165,35342476 +(1,18533:6434165,35342476:0,8260698,196608 +r1,18543:32779637,35342476:26345472,8457306,196608 +k1,18533:6434165,35342476:-26345472 +) +(1,18533:6434165,35342476:26345472,8260698,196608 +[1,18533:6630773,35342476:25952256,8064090,0 +(1,18520:6630773,27702825:25952256,424439,106246 +(1,18519:6630773,27702825:0,0,0 +g1,18519:6630773,27702825 +g1,18519:6630773,27702825 +g1,18519:6303093,27702825 +(1,18519:6303093,27702825:0,0,0 +) +g1,18519:6630773,27702825 +) +g1,18520:9286405,27702825 +k1,18520:9286405,27702825:0 +h1,18520:9950313,27702825:0,0,0 +k1,18520:32583029,27702825:22632716 +g1,18520:32583029,27702825 +) +(1,18521:6630773,28387680:25952256,431045,106246 +h1,18521:6630773,28387680:0,0,0 +g1,18521:6962727,28387680 +g1,18521:7294681,28387680 +g1,18521:11610082,28387680 +g1,18521:12273990,28387680 +g1,18521:13933760,28387680 +g1,18521:14597668,28387680 +g1,18521:15261576,28387680 +g1,18521:17585254,28387680 +k1,18521:17585254,28387680:0 +h1,18521:18581116,28387680:0,0,0 +k1,18521:32583029,28387680:14001913 +g1,18521:32583029,28387680 +) +(1,18522:6630773,29072535:25952256,431045,86428 +h1,18522:6630773,29072535:0,0,0 +g1,18522:6962727,29072535 +g1,18522:7294681,29072535 +g1,18522:7626635,29072535 +g1,18522:7958589,29072535 +g1,18522:8290543,29072535 +g1,18522:8622497,29072535 +g1,18522:8954451,29072535 +g1,18522:9286405,29072535 +g1,18522:9618359,29072535 +g1,18522:9950313,29072535 +g1,18522:10282267,29072535 +g1,18522:10614221,29072535 +g1,18522:10946175,29072535 +g1,18522:12937899,29072535 +g1,18522:13601807,29072535 +g1,18522:16589393,29072535 +g1,18522:18913071,29072535 +g1,18522:21900657,29072535 +g1,18522:24556289,29072535 +h1,18522:27211921,29072535:0,0,0 +k1,18522:32583029,29072535:5371108 +g1,18522:32583029,29072535 +) +(1,18523:6630773,29757390:25952256,0,0 +h1,18523:6630773,29757390:0,0,0 +h1,18523:6630773,29757390:0,0,0 +k1,18523:32583029,29757390:25952256 +g1,18523:32583029,29757390 +) +(1,18524:6630773,30442245:25952256,424439,112852 +h1,18524:6630773,30442245:0,0,0 +g1,18524:11942036,30442245 +g1,18524:14265714,30442245 +g1,18524:15261576,30442245 +g1,18524:17253300,30442245 +g1,18524:17917208,30442245 +g1,18524:20572840,30442245 +h1,18524:20904794,30442245:0,0,0 +k1,18524:32583029,30442245:11678235 +g1,18524:32583029,30442245 +) +(1,18525:6630773,31127100:25952256,424439,112852 +h1,18525:6630773,31127100:0,0,0 +g1,18525:6962727,31127100 +g1,18525:7294681,31127100 +g1,18525:12937898,31127100 +g1,18525:13601806,31127100 +g1,18525:15593530,31127100 +g1,18525:17253300,31127100 +g1,18525:17917208,31127100 +k1,18525:17917208,31127100:0 +h1,18525:18581116,31127100:0,0,0 +k1,18525:32583029,31127100:14001913 +g1,18525:32583029,31127100 +) +(1,18526:6630773,31811955:25952256,424439,86428 +h1,18526:6630773,31811955:0,0,0 +g1,18526:6962727,31811955 +g1,18526:7294681,31811955 +g1,18526:7626635,31811955 +g1,18526:7958589,31811955 +g1,18526:8290543,31811955 +g1,18526:8622497,31811955 +g1,18526:8954451,31811955 +g1,18526:9286405,31811955 +g1,18526:9618359,31811955 +g1,18526:9950313,31811955 +g1,18526:10282267,31811955 +g1,18526:10614221,31811955 +g1,18526:10946175,31811955 +g1,18526:14597668,31811955 +g1,18526:15261576,31811955 +k1,18526:15261576,31811955:0 +h1,18526:16257438,31811955:0,0,0 +k1,18526:32583029,31811955:16325591 +g1,18526:32583029,31811955 +) +(1,18527:6630773,32496810:25952256,424439,86428 +h1,18527:6630773,32496810:0,0,0 +g1,18527:6962727,32496810 +g1,18527:7294681,32496810 +g1,18527:7626635,32496810 +g1,18527:7958589,32496810 +g1,18527:8290543,32496810 +g1,18527:8622497,32496810 +g1,18527:8954451,32496810 +g1,18527:9286405,32496810 +g1,18527:9618359,32496810 +g1,18527:9950313,32496810 +g1,18527:10282267,32496810 +g1,18527:10614221,32496810 +g1,18527:10946175,32496810 +g1,18527:13601807,32496810 +g1,18527:14265715,32496810 +g1,18527:16921347,32496810 +k1,18527:16921347,32496810:0 +h1,18527:19908933,32496810:0,0,0 +k1,18527:32583029,32496810:12674096 +g1,18527:32583029,32496810 +) +(1,18528:6630773,33181665:25952256,424439,112852 +h1,18528:6630773,33181665:0,0,0 +g1,18528:6962727,33181665 +g1,18528:7294681,33181665 +g1,18528:7626635,33181665 +g1,18528:7958589,33181665 +g1,18528:8290543,33181665 +g1,18528:8622497,33181665 +g1,18528:8954451,33181665 +g1,18528:9286405,33181665 +g1,18528:9618359,33181665 +g1,18528:9950313,33181665 +g1,18528:10282267,33181665 +g1,18528:10614221,33181665 +g1,18528:10946175,33181665 +g1,18528:15593530,33181665 +g1,18528:16257438,33181665 +g1,18528:19908932,33181665 +k1,18528:19908932,33181665:0 +h1,18528:22896518,33181665:0,0,0 +k1,18528:32583029,33181665:9686511 +g1,18528:32583029,33181665 +) +(1,18529:6630773,33866520:25952256,431045,106246 +h1,18529:6630773,33866520:0,0,0 +g1,18529:6962727,33866520 +g1,18529:7294681,33866520 +g1,18529:7626635,33866520 +g1,18529:7958589,33866520 +g1,18529:8290543,33866520 +g1,18529:8622497,33866520 +g1,18529:8954451,33866520 +g1,18529:9286405,33866520 +g1,18529:9618359,33866520 +g1,18529:9950313,33866520 +g1,18529:10282267,33866520 +g1,18529:10614221,33866520 +g1,18529:10946175,33866520 +g1,18529:12605945,33866520 +g1,18529:13269853,33866520 +g1,18529:16589392,33866520 +g1,18529:18581116,33866520 +g1,18529:19245024,33866520 +g1,18529:20904794,33866520 +h1,18529:21236748,33866520:0,0,0 +k1,18529:32583029,33866520:11346281 +g1,18529:32583029,33866520 +) +(1,18530:6630773,34551375:25952256,424439,112852 +h1,18530:6630773,34551375:0,0,0 +g1,18530:6962727,34551375 +g1,18530:7294681,34551375 +g1,18530:11610082,34551375 +h1,18530:11942036,34551375:0,0,0 +k1,18530:32583028,34551375:20640992 +g1,18530:32583028,34551375 +) +(1,18531:6630773,35236230:25952256,424439,106246 +h1,18531:6630773,35236230:0,0,0 +g1,18531:6962727,35236230 +g1,18531:7294681,35236230 +g1,18531:12605944,35236230 +g1,18531:13269852,35236230 +h1,18531:14597668,35236230:0,0,0 +k1,18531:32583028,35236230:17985360 +g1,18531:32583028,35236230 +) +] +) +g1,18533:32583029,35342476 +g1,18533:6630773,35342476 +g1,18533:6630773,35342476 +g1,18533:32583029,35342476 +g1,18533:32583029,35342476 +) +h1,18533:6630773,35539084:0,0,0 +(1,18536:6630773,44688286:25952256,9083666,0 +k1,18536:10523651,44688286:3892878 +h1,18535:10523651,44688286:0,0,0 +(1,18535:10523651,44688286:18166500,9083666,0 +(1,18535:10523651,44688286:18167376,9083688,0 +(1,18535:10523651,44688286:18167376,9083688,0 +(1,18535:10523651,44688286:0,9083688,0 +(1,18535:10523651,44688286:0,14208860,0 +(1,18535:10523651,44688286:28417720,14208860,0 +) +k1,18535:10523651,44688286:-28417720 +) +) +g1,18535:28691027,44688286 +) +) +) +g1,18536:28690151,44688286 +k1,18536:32583029,44688286:3892878 +) +] +(1,18543:32583029,45706769:0,0,0 +g1,18543:32583029,45706769 +) +) +] +(1,18543:6630773,47279633:25952256,0,0 +h1,18543:6630773,47279633:25952256,0,0 +) +] +(1,18543:4262630,4025873:0,0,0 +[1,18543:-473656,4025873:0,0,0 +(1,18543:-473656,-710413:0,0,0 +(1,18543:-473656,-710413:0,0,0 +g1,18543:-473656,-710413 +) +g1,18543:-473656,-710413 +) +] ) ] -g1,18489:6630773,4812305 -g1,18489:6630773,4812305 -g1,18489:10347975,4812305 -k1,18489:31387651,4812305:21039676 -) -) -] -[1,18489:6630773,45706769:25952256,40108032,0 -(1,18489:6630773,45706769:25952256,40108032,0 -(1,18489:6630773,45706769:0,0,0 -g1,18489:6630773,45706769 -) -[1,18489:6630773,45706769:25952256,40108032,0 -v1,18442:6630773,6254097:0,393216,0 -(1,18443:6630773,8433494:25952256,2572613,0 -g1,18443:6630773,8433494 -g1,18443:6303093,8433494 -r1,18489:6401397,8433494:98304,2572613,0 -g1,18443:6600626,8433494 -g1,18443:6797234,8433494 -[1,18443:6797234,8433494:25785795,2572613,0 -(1,18443:6797234,6616170:25785795,755289,196608 -(1,18442:6797234,6616170:0,755289,196608 -r1,18489:8134168,6616170:1336934,951897,196608 -k1,18442:6797234,6616170:-1336934 -) -(1,18442:6797234,6616170:1336934,755289,196608 -) -k1,18442:8288372,6616170:154204 -k1,18442:8616052,6616170:327680 -k1,18442:9966943,6616170:154204 -k1,18442:13128594,6616170:154204 -(1,18442:13128594,6616170:0,452978,122846 -r1,18489:17355690,6616170:4227096,575824,122846 -k1,18442:13128594,6616170:-4227096 -) -(1,18442:13128594,6616170:4227096,452978,122846 -k1,18442:13128594,6616170:3277 -h1,18442:17352413,6616170:0,411205,112570 -) -k1,18442:17509894,6616170:154204 -k1,18442:19086885,6616170:154204 -k1,18442:22266886,6616170:154204 -k1,18442:23988711,6616170:154204 -k1,18442:26723067,6616170:154204 -k1,18442:30135065,6616170:154204 -k1,18442:30940697,6616170:154204 -k1,18442:32583029,6616170:0 -) -(1,18443:6797234,7457658:25785795,513147,134348 -k1,18442:7332357,7457658:179263 -k1,18442:10461395,7457658:179263 -k1,18442:12600184,7457658:179263 -k1,18442:13727097,7457658:179262 -k1,18442:14925445,7457658:179263 -k1,18442:16844034,7457658:179263 -k1,18442:18219984,7457658:179263 -k1,18442:19491732,7457658:179263 -k1,18442:20330287,7457658:179263 -k1,18442:22075205,7457658:179263 -k1,18442:24571166,7457658:179263 -k1,18442:25957601,7457658:179262 -k1,18442:27203135,7457658:179263 -k1,18442:28347743,7457658:179263 -k1,18442:31821501,7457658:179263 -k1,18442:32583029,7457658:0 -) -(1,18443:6797234,8299146:25785795,513147,134348 -g1,18442:8199704,8299146 -g1,18442:11388685,8299146 -g1,18442:12200676,8299146 -g1,18442:13418990,8299146 -g1,18442:15043627,8299146 -g1,18442:15902148,8299146 -k1,18443:32583029,8299146:14249495 -g1,18443:32583029,8299146 -) -] -g1,18443:32583029,8433494 -) -h1,18443:6630773,8433494:0,0,0 -(1,18448:6630773,9741752:25952256,513147,134348 -h1,18447:6630773,9741752:983040,0,0 -k1,18447:10889273,9741752:180195 -(1,18447:10889273,9741752:0,452978,122846 -r1,18489:14764657,9741752:3875384,575824,122846 -k1,18447:10889273,9741752:-3875384 -) -(1,18447:10889273,9741752:3875384,452978,122846 -k1,18447:10889273,9741752:3277 -h1,18447:14761380,9741752:0,411205,112570 -) -k1,18447:14944851,9741752:180194 -k1,18447:17051804,9741752:180195 -k1,18447:19015234,9741752:180195 -k1,18447:20341653,9741752:180194 -(1,18447:20341653,9741752:0,452978,122846 -r1,18489:24568749,9741752:4227096,575824,122846 -k1,18447:20341653,9741752:-4227096 -) -(1,18447:20341653,9741752:4227096,452978,122846 -k1,18447:20341653,9741752:3277 -h1,18447:24565472,9741752:0,411205,112570 -) -k1,18447:24922614,9741752:180195 -k1,18447:26174978,9741752:180195 -k1,18447:28682355,9741752:180194 -k1,18447:29521842,9741752:180195 -k1,18447:32583029,9741752:0 -) -(1,18448:6630773,10583240:25952256,513147,126483 -k1,18447:7136389,10583240:149756 -k1,18447:8279670,10583240:149755 -k1,18447:9088718,10583240:149756 -k1,18447:10627836,10583240:149755 -k1,18447:12984189,10583240:149756 -k1,18447:13816830,10583240:149756 -k1,18447:16108302,10583240:149755 -k1,18447:16909486,10583240:149756 -k1,18447:17807007,10583240:149755 -k1,18447:20542158,10583240:149756 -k1,18447:21343341,10583240:149755 -k1,18447:22512182,10583240:149756 -(1,18447:22512182,10583240:0,452978,115847 -r1,18489:24277295,10583240:1765113,568825,115847 -k1,18447:22512182,10583240:-1765113 -) -(1,18447:22512182,10583240:1765113,452978,115847 -k1,18447:22512182,10583240:3277 -h1,18447:24274018,10583240:0,411205,112570 -) -k1,18447:24427051,10583240:149756 -k1,18447:27925040,10583240:149755 -k1,18447:28532893,10583240:149756 -k1,18447:31083887,10583240:149755 -k1,18447:31589503,10583240:149756 -k1,18447:32583029,10583240:0 -) -(1,18448:6630773,11424728:25952256,513147,134348 -k1,18447:7481241,11424728:191176 -k1,18447:10028435,11424728:191175 -k1,18447:12716533,11424728:191176 -k1,18447:13567000,11424728:191175 -k1,18447:15313345,11424728:191176 -(1,18447:15313345,11424728:0,414482,122846 -r1,18489:16023323,11424728:709978,537328,122846 -k1,18447:15313345,11424728:-709978 -) -(1,18447:15313345,11424728:709978,414482,122846 -k1,18447:15313345,11424728:3277 -h1,18447:16020046,11424728:0,411205,112570 -) -k1,18447:16595262,11424728:191175 -k1,18447:18167282,11424728:191176 -k1,18447:20370412,11424728:191175 -k1,18447:22749180,11424728:191176 -k1,18447:23626517,11424728:191175 -k1,18447:24588396,11424728:191176 -k1,18447:26330153,11424728:191175 -k1,18447:27172757,11424728:191176 -k1,18447:27719792,11424728:191175 -k1,18447:30110356,11424728:191176 -k1,18447:32583029,11424728:0 -) -(1,18448:6630773,12266216:25952256,513147,134348 -k1,18447:9006409,12266216:176248 -k1,18447:9810492,12266216:176248 -k1,18447:11005825,12266216:176248 -k1,18447:12937783,12266216:176248 -k1,18447:14812069,12266216:176248 -k1,18447:16595915,12266216:176248 -k1,18447:18276214,12266216:176248 -k1,18447:20058750,12266216:176249 -k1,18447:22589707,12266216:176248 -k1,18447:24159906,12266216:176248 -k1,18447:25941786,12266216:176248 -k1,18447:27126633,12266216:176248 -k1,18447:28112251,12266216:176248 -k1,18447:30295211,12266216:176248 -k1,18447:31490544,12266216:176248 -k1,18447:32583029,12266216:0 -) -(1,18448:6630773,13107704:25952256,513147,126483 -k1,18447:7552763,13107704:262698 -k1,18447:9366044,13107704:262699 -k1,18447:11236340,13107704:262698 -k1,18447:12706212,13107704:262699 -k1,18447:14619107,13107704:262698 -k1,18447:17620556,13107704:262699 -k1,18447:19325701,13107704:262698 -k1,18447:22916318,13107704:262699 -k1,18447:24741394,13107704:262698 -k1,18447:26611691,13107704:262699 -k1,18447:27978671,13107704:262698 -k1,18447:28989136,13107704:262699 -k1,18447:30605808,13107704:262698 -k1,18447:32583029,13107704:0 -) -(1,18448:6630773,13949192:25952256,513147,134348 -k1,18447:7824032,13949192:245608 -k1,18447:11687884,13949192:245609 -k1,18447:12742862,13949192:245608 -k1,18447:14640634,13949192:245609 -k1,18447:15545534,13949192:245608 -k1,18447:16147003,13949192:245609 -k1,18447:17984481,13949192:245608 -k1,18447:19507387,13949192:245609 -k1,18447:21671889,13949192:245608 -k1,18447:25989250,13949192:245609 -k1,18447:27226418,13949192:245608 -k1,18447:30198325,13949192:245609 -k1,18447:31635378,13949192:245608 -k1,18447:32583029,13949192:0 -) -(1,18448:6630773,14790680:25952256,505283,134348 -k1,18447:10074690,14790680:158597 -k1,18447:13741429,14790680:158597 -k1,18447:15754695,14790680:158597 -k1,18447:16722662,14790680:158597 -k1,18447:17900344,14790680:158597 -k1,18447:22130693,14790680:158597 -k1,18447:24364815,14790680:158597 -k1,18447:25139450,14790680:158597 -k1,18447:26317132,14790680:158597 -k1,18447:28067599,14790680:158597 -k1,18447:29677163,14790680:158597 -k1,18447:31032447,14790680:158597 -k1,18447:32583029,14790680:0 -) -(1,18448:6630773,15632168:25952256,513147,126483 -k1,18447:8450909,15632168:212538 -k1,18447:9655007,15632168:212538 -k1,18447:11985013,15632168:212538 -k1,18447:12813590,15632168:212539 -k1,18447:16143676,15632168:212538 -k1,18447:18241685,15632168:212538 -k1,18447:20742085,15632168:212538 -k1,18447:21973708,15632168:212538 -k1,18447:25861505,15632168:212538 -k1,18447:26733336,15632168:212539 -k1,18447:27964959,15632168:212538 -k1,18447:29728079,15632168:212538 -k1,18447:31391584,15632168:212538 -k1,18447:32583029,15632168:0 -) -(1,18448:6630773,16473656:25952256,513147,122846 -k1,18447:9994713,16473656:189376 -(1,18447:9994713,16473656:0,452978,122846 -r1,18489:13166673,16473656:3171960,575824,122846 -k1,18447:9994713,16473656:-3171960 -) -(1,18447:9994713,16473656:3171960,452978,122846 -k1,18447:9994713,16473656:3277 -h1,18447:13163396,16473656:0,411205,112570 -) -k1,18447:13356049,16473656:189376 -k1,18447:14736870,16473656:189376 -(1,18447:14736870,16473656:0,452978,115847 -r1,18489:17557119,16473656:2820249,568825,115847 -k1,18447:14736870,16473656:-2820249 -) -(1,18447:14736870,16473656:2820249,452978,115847 -k1,18447:14736870,16473656:3277 -h1,18447:17553842,16473656:0,411205,112570 -) -k1,18447:17746495,16473656:189376 -k1,18447:20223733,16473656:189376 -k1,18447:21921748,16473656:189376 -k1,18447:25759513,16473656:189376 -k1,18447:28544770,16473656:189376 -k1,18447:29393438,16473656:189376 -k1,18447:30715276,16473656:189376 -k1,18447:31563944,16473656:189376 -k1,18447:32583029,16473656:0 -) -(1,18448:6630773,17315144:25952256,513147,134348 -k1,18447:8922052,17315144:281945 -k1,18447:10395442,17315144:281945 -k1,18447:12492079,17315144:281945 -k1,18447:13433316,17315144:281945 -k1,18447:14734346,17315144:281945 -k1,18447:17540738,17315144:281945 -k1,18447:19170104,17315144:281946 -k1,18447:20111341,17315144:281945 -k1,18447:21412371,17315144:281945 -k1,18447:23286186,17315144:281945 -k1,18447:25019098,17315144:281945 -k1,18447:27795343,17315144:281945 -k1,18447:29181570,17315144:281945 -k1,18447:30211281,17315144:281945 -k1,18447:32583029,17315144:0 -) -(1,18448:6630773,18156632:25952256,505283,126483 -g1,18447:10098938,18156632 -g1,18447:10949595,18156632 -g1,18447:12167909,18156632 -g1,18447:13959008,18156632 -g1,18447:15349682,18156632 -g1,18447:17099493,18156632 -k1,18448:32583029,18156632:13702267 -g1,18448:32583029,18156632 -) -(1,18450:6630773,18998120:25952256,513147,126483 -h1,18449:6630773,18998120:983040,0,0 -k1,18449:8529250,18998120:287602 -k1,18449:9835937,18998120:287602 -k1,18449:11429672,18998120:287602 -k1,18449:14378692,18998120:287603 -k1,18449:15325586,18998120:287602 -k1,18449:17163770,18998120:287602 -k1,18449:19232641,18998120:287602 -k1,18449:20388595,18998120:287602 -k1,18449:23013866,18998120:287602 -k1,18449:24458179,18998120:287603 -k1,18449:25405073,18998120:287602 -k1,18449:26711760,18998120:287602 -k1,18449:30507504,18998120:287602 -k1,18449:32583029,18998120:0 -) -(1,18450:6630773,19839608:25952256,513147,134348 -g1,18449:8685326,19839608 -g1,18449:9570717,19839608 -g1,18449:10540649,19839608 -g1,18449:12290460,19839608 -g1,18449:14229015,19839608 -g1,18449:15381793,19839608 -g1,18449:16887155,19839608 -g1,18449:19015764,19839608 -g1,18449:19570853,19839608 -g1,18449:21581497,19839608 -g1,18449:25142723,19839608 -g1,18449:26361037,19839608 -g1,18449:27837563,19839608 -g1,18449:28688220,19839608 -g1,18449:29635215,19839608 -k1,18450:32583029,19839608:1223562 -g1,18450:32583029,19839608 -) -v1,18452:6630773,20972556:0,393216,0 -(1,18465:6630773,27261234:25952256,6681894,196608 -g1,18465:6630773,27261234 -g1,18465:6630773,27261234 -g1,18465:6434165,27261234 -(1,18465:6434165,27261234:0,6681894,196608 -r1,18489:32779637,27261234:26345472,6878502,196608 -k1,18465:6434165,27261234:-26345472 -) -(1,18465:6434165,27261234:26345472,6681894,196608 -[1,18465:6630773,27261234:25952256,6485286,0 -(1,18454:6630773,21164445:25952256,388497,9436 -(1,18453:6630773,21164445:0,0,0 -g1,18453:6630773,21164445 -g1,18453:6630773,21164445 -g1,18453:6303093,21164445 -(1,18453:6303093,21164445:0,0,0 -) -g1,18453:6630773,21164445 -) -g1,18454:8843793,21164445 -k1,18454:8843793,21164445:0 -h1,18454:10108375,21164445:0,0,0 -k1,18454:32583029,21164445:22474654 -g1,18454:32583029,21164445 -) -(1,18455:6630773,21830623:25952256,404226,107478 -h1,18455:6630773,21830623:0,0,0 -g1,18455:6946919,21830623 -g1,18455:7263065,21830623 -g1,18455:11056813,21830623 -g1,18455:12637542,21830623 -k1,18455:12637542,21830623:0 -h1,18455:13902124,21830623:0,0,0 -k1,18455:32583028,21830623:18680904 -g1,18455:32583028,21830623 -) -(1,18456:6630773,22496801:25952256,404226,107478 -h1,18456:6630773,22496801:0,0,0 -g1,18456:6946919,22496801 -g1,18456:7263065,22496801 -g1,18456:11372959,22496801 -g1,18456:14218270,22496801 -g1,18456:14850562,22496801 -g1,18456:18328165,22496801 -k1,18456:18328165,22496801:0 -h1,18456:19592747,22496801:0,0,0 -k1,18456:32583029,22496801:12990282 -g1,18456:32583029,22496801 -) -(1,18457:6630773,23162979:25952256,404226,107478 -h1,18457:6630773,23162979:0,0,0 -g1,18457:6946919,23162979 -g1,18457:7263065,23162979 -g1,18457:11056814,23162979 -g1,18457:11689106,23162979 -k1,18457:11689106,23162979:0 -h1,18457:12321398,23162979:0,0,0 -k1,18457:32583030,23162979:20261632 -g1,18457:32583030,23162979 -) -(1,18458:6630773,23829157:25952256,410518,107478 -h1,18458:6630773,23829157:0,0,0 -g1,18458:6946919,23829157 -g1,18458:7263065,23829157 -g1,18458:7579211,23829157 -g1,18458:7895357,23829157 -g1,18458:8211503,23829157 -g1,18458:8527649,23829157 -g1,18458:8843795,23829157 -g1,18458:9159941,23829157 -g1,18458:9476087,23829157 -g1,18458:14850564,23829157 -g1,18458:18012021,23829157 -g1,18458:19592750,23829157 -g1,18458:20225042,23829157 -g1,18458:24651082,23829157 -h1,18458:24967228,23829157:0,0,0 -k1,18458:32583029,23829157:7615801 -g1,18458:32583029,23829157 -) -(1,18459:6630773,24495335:25952256,410518,107478 -h1,18459:6630773,24495335:0,0,0 -g1,18459:6946919,24495335 -g1,18459:7263065,24495335 -g1,18459:15482853,24495335 -g1,18459:16115145,24495335 -g1,18459:18644311,24495335 -h1,18459:18960457,24495335:0,0,0 -k1,18459:32583029,24495335:13622572 -g1,18459:32583029,24495335 -) -(1,18460:6630773,25161513:25952256,404226,101187 -h1,18460:6630773,25161513:0,0,0 -g1,18460:6946919,25161513 -g1,18460:7263065,25161513 -g1,18460:14850562,25161513 -g1,18460:15482854,25161513 -g1,18460:17379729,25161513 -h1,18460:17695875,25161513:0,0,0 -k1,18460:32583029,25161513:14887154 -g1,18460:32583029,25161513 -) -(1,18461:6630773,25827691:25952256,404226,107478 -h1,18461:6630773,25827691:0,0,0 -g1,18461:6946919,25827691 -g1,18461:7263065,25827691 -g1,18461:7579211,25827691 -g1,18461:7895357,25827691 -g1,18461:11372959,25827691 -h1,18461:11689105,25827691:0,0,0 -k1,18461:32583029,25827691:20893924 -g1,18461:32583029,25827691 -) -(1,18462:6630773,26493869:25952256,404226,101187 -h1,18462:6630773,26493869:0,0,0 -g1,18462:6946919,26493869 -g1,18462:7263065,26493869 -g1,18462:7579211,26493869 -g1,18462:7895357,26493869 -g1,18462:11689106,26493869 -g1,18462:12637544,26493869 -h1,18462:14850564,26493869:0,0,0 -k1,18462:32583028,26493869:17732464 -g1,18462:32583028,26493869 -) -(1,18463:6630773,27160047:25952256,404226,101187 -h1,18463:6630773,27160047:0,0,0 -g1,18463:9159939,27160047 -g1,18463:10108377,27160047 -g1,18463:12953689,27160047 -g1,18463:13585981,27160047 -g1,18463:15166710,27160047 -g1,18463:15799002,27160047 -g1,18463:16431294,27160047 -g1,18463:17695877,27160047 -g1,18463:21173480,27160047 -g1,18463:21805772,27160047 -k1,18463:21805772,27160047:0 -h1,18463:26231812,27160047:0,0,0 -k1,18463:32583029,27160047:6351217 -g1,18463:32583029,27160047 -) -] -) -g1,18465:32583029,27261234 -g1,18465:6630773,27261234 -g1,18465:6630773,27261234 -g1,18465:32583029,27261234 -g1,18465:32583029,27261234 -) -h1,18465:6630773,27457842:0,0,0 -v1,18469:6630773,29057561:0,393216,0 -(1,18479:6630773,33369725:25952256,4705380,196608 -g1,18479:6630773,33369725 -g1,18479:6630773,33369725 -g1,18479:6434165,33369725 -(1,18479:6434165,33369725:0,4705380,196608 -r1,18489:32779637,33369725:26345472,4901988,196608 -k1,18479:6434165,33369725:-26345472 -) -(1,18479:6434165,33369725:26345472,4705380,196608 -[1,18479:6630773,33369725:25952256,4508772,0 -(1,18471:6630773,29265179:25952256,404226,107478 -(1,18470:6630773,29265179:0,0,0 -g1,18470:6630773,29265179 -g1,18470:6630773,29265179 -g1,18470:6303093,29265179 -(1,18470:6303093,29265179:0,0,0 -) -g1,18470:6630773,29265179 -) -k1,18471:6630773,29265179:0 -g1,18471:10424522,29265179 -g1,18471:11056814,29265179 -g1,18471:13585980,29265179 -g1,18471:15482855,29265179 -g1,18471:16115147,29265179 -g1,18471:18012022,29265179 -g1,18471:18644314,29265179 -g1,18471:19276606,29265179 -k1,18471:19276606,29265179:0 -h1,18471:20541189,29265179:0,0,0 -k1,18471:32583029,29265179:12041840 -g1,18471:32583029,29265179 -) -(1,18472:6630773,29931357:25952256,410518,101187 -h1,18472:6630773,29931357:0,0,0 -g1,18472:6946919,29931357 -g1,18472:7263065,29931357 -g1,18472:7579211,29931357 -g1,18472:7895357,29931357 -g1,18472:8211503,29931357 -g1,18472:8527649,29931357 -g1,18472:8843795,29931357 -g1,18472:9159941,29931357 -g1,18472:9476087,29931357 -g1,18472:9792233,29931357 -g1,18472:10108379,29931357 -g1,18472:10424525,29931357 -g1,18472:10740671,29931357 -g1,18472:11056817,29931357 -g1,18472:11372963,29931357 -g1,18472:11689109,29931357 -g1,18472:12005255,29931357 -g1,18472:12321401,29931357 -g1,18472:12637547,29931357 -g1,18472:12953693,29931357 -g1,18472:13269839,29931357 -g1,18472:13585985,29931357 -g1,18472:13902131,29931357 -g1,18472:14218277,29931357 -g1,18472:14534423,29931357 -g1,18472:14850569,29931357 -g1,18472:16747443,29931357 -g1,18472:17379735,29931357 -g1,18472:21805775,29931357 -h1,18472:22121921,29931357:0,0,0 -k1,18472:32583029,29931357:10461108 -g1,18472:32583029,29931357 -) -(1,18473:6630773,30597535:25952256,404226,107478 -h1,18473:6630773,30597535:0,0,0 -g1,18473:6946919,30597535 -g1,18473:7263065,30597535 -g1,18473:11372959,30597535 -h1,18473:11689105,30597535:0,0,0 -k1,18473:32583029,30597535:20893924 -g1,18473:32583029,30597535 -) -(1,18474:6630773,31263713:25952256,404226,107478 -h1,18474:6630773,31263713:0,0,0 -g1,18474:6946919,31263713 -g1,18474:7263065,31263713 -g1,18474:12005251,31263713 -g1,18474:12637543,31263713 -k1,18474:12637543,31263713:0 -h1,18474:15166709,31263713:0,0,0 -k1,18474:32583029,31263713:17416320 -g1,18474:32583029,31263713 -) -(1,18475:6630773,31929891:25952256,404226,101187 -h1,18475:6630773,31929891:0,0,0 -g1,18475:6946919,31929891 -g1,18475:7263065,31929891 -g1,18475:7579211,31929891 -g1,18475:7895357,31929891 -g1,18475:8211503,31929891 -g1,18475:8527649,31929891 -g1,18475:8843795,31929891 -g1,18475:9159941,31929891 -g1,18475:9476087,31929891 -g1,18475:9792233,31929891 -g1,18475:10108379,31929891 -g1,18475:10424525,31929891 -g1,18475:12321400,31929891 -g1,18475:12953692,31929891 -g1,18475:13902130,31929891 -g1,18475:14534422,31929891 -g1,18475:15166714,31929891 -g1,18475:16115152,31929891 -g1,18475:18012026,31929891 -g1,18475:18644318,31929891 -k1,18475:18644318,31929891:0 -h1,18475:22438066,31929891:0,0,0 -k1,18475:32583029,31929891:10144963 -g1,18475:32583029,31929891 -) -(1,18476:6630773,32596069:25952256,404226,101187 -h1,18476:6630773,32596069:0,0,0 -g1,18476:6946919,32596069 -g1,18476:7263065,32596069 -g1,18476:7579211,32596069 -g1,18476:7895357,32596069 -g1,18476:8211503,32596069 -g1,18476:8527649,32596069 -g1,18476:8843795,32596069 -g1,18476:9159941,32596069 -g1,18476:9476087,32596069 -g1,18476:9792233,32596069 -g1,18476:10108379,32596069 -g1,18476:10424525,32596069 -g1,18476:13269836,32596069 -g1,18476:13902128,32596069 -k1,18476:13902128,32596069:0 -h1,18476:15166712,32596069:0,0,0 -k1,18476:32583028,32596069:17416316 -g1,18476:32583028,32596069 -) -(1,18477:6630773,33262247:25952256,404226,107478 -h1,18477:6630773,33262247:0,0,0 -g1,18477:6946919,33262247 -g1,18477:7263065,33262247 -g1,18477:7579211,33262247 -g1,18477:7895357,33262247 -g1,18477:8211503,33262247 -g1,18477:8527649,33262247 -g1,18477:8843795,33262247 -g1,18477:9159941,33262247 -g1,18477:9476087,33262247 -g1,18477:9792233,33262247 -g1,18477:10108379,33262247 -g1,18477:10424525,33262247 -g1,18477:12321399,33262247 -g1,18477:12953691,33262247 -g1,18477:16115148,33262247 -g1,18477:18012022,33262247 -g1,18477:18644314,33262247 -h1,18477:21489625,33262247:0,0,0 -k1,18477:32583029,33262247:11093404 -g1,18477:32583029,33262247 -) -] -) -g1,18479:32583029,33369725 -g1,18479:6630773,33369725 -g1,18479:6630773,33369725 -g1,18479:32583029,33369725 -g1,18479:32583029,33369725 -) -h1,18479:6630773,33566333:0,0,0 -(1,18482:6630773,43182305:25952256,9083666,0 -k1,18482:10523651,43182305:3892878 -h1,18481:10523651,43182305:0,0,0 -(1,18481:10523651,43182305:18166500,9083666,0 -(1,18481:10523651,43182305:18167376,9083688,0 -(1,18481:10523651,43182305:18167376,9083688,0 -(1,18481:10523651,43182305:0,9083688,0 -(1,18481:10523651,43182305:0,14208860,0 -(1,18481:10523651,43182305:28417720,14208860,0 -) -k1,18481:10523651,43182305:-28417720 -) -) -g1,18481:28691027,43182305 -) -) -) -g1,18482:28690151,43182305 -k1,18482:32583029,43182305:3892878 -) -(1,18489:6630773,44023793:25952256,513147,126483 -h1,18488:6630773,44023793:983040,0,0 -k1,18488:8417896,44023793:176248 -k1,18488:9613229,44023793:176248 -k1,18488:12030808,44023793:176248 -k1,18488:14868474,44023793:176249 -k1,18488:15913074,44023793:176248 -k1,18488:17286665,44023793:176248 -k1,18488:18481998,44023793:176248 -k1,18488:21225291,44023793:176248 -k1,18488:23735276,44023793:176248 -k1,18488:24570816,44023793:176248 -k1,18488:25766149,44023793:176248 -k1,18488:27595871,44023793:176249 -k1,18488:29049416,44023793:176248 -k1,18488:29911826,44023793:176248 -k1,18488:30858777,44023793:176248 -k1,18488:32583029,44023793:0 -) -(1,18489:6630773,44865281:25952256,513147,134348 -k1,18488:7469459,44865281:233133 -k1,18488:10578968,44865281:233134 -k1,18488:11746644,44865281:233133 -k1,18488:13794469,44865281:233133 -k1,18488:14679031,44865281:233134 -k1,18488:15931249,44865281:233133 -k1,18488:19902556,44865281:233133 -k1,18488:20787118,44865281:233134 -k1,18488:22819214,44865281:233133 -k1,18488:24319813,44865281:233133 -k1,18488:24908807,44865281:233134 -k1,18488:27162415,44865281:233133 -k1,18488:28054840,44865281:233133 -k1,18488:29307059,44865281:233134 -k1,18488:31132062,44865281:233133 -k1,18488:32583029,44865281:0 -) -(1,18489:6630773,45706769:25952256,513147,126483 -k1,18488:7527923,45706769:291597 -k1,18488:8754062,45706769:291596 -k1,18488:10064744,45706769:291597 -k1,18488:12300138,45706769:291596 -k1,18488:13251027,45706769:291597 -k1,18488:14561709,45706769:291597 -k1,18488:16577557,45706769:291596 -k1,18488:17474707,45706769:291597 -k1,18488:20121012,45706769:291596 -k1,18488:21665002,45706769:291597 -k1,18488:23800782,45706769:291597 -k1,18488:24778540,45706769:291596 -k1,18488:26450325,45706769:291597 -k1,18488:27733481,45706769:291596 -k1,18488:29044163,45706769:291597 -k1,18488:30989232,45706769:291596 -k1,18488:31966991,45706769:291597 -k1,18488:32583029,45706769:0 -) -] -(1,18489:32583029,45706769:0,0,0 -g1,18489:32583029,45706769 -) -) -] -(1,18489:6630773,47279633:25952256,0,0 -h1,18489:6630773,47279633:25952256,0,0 -) -] -(1,18489:4262630,4025873:0,0,0 -[1,18489:-473656,4025873:0,0,0 -(1,18489:-473656,-710413:0,0,0 -(1,18489:-473656,-710413:0,0,0 -g1,18489:-473656,-710413 -) -g1,18489:-473656,-710413 -) -] -) -] -!24919 -}326 +!20980 +}308 +Input:2861:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2862:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2863:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2864:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2865:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2866:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2867:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2868:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2869:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2870:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2871:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2872:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2873:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2874:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2875:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!482 -{327 -[1,18537:4262630,47279633:28320399,43253760,0 -(1,18537:4262630,4025873:0,0,0 -[1,18537:-473656,4025873:0,0,0 -(1,18537:-473656,-710413:0,0,0 -(1,18537:-473656,-644877:0,0,0 -k1,18537:-473656,-644877:-65536 -) -(1,18537:-473656,4736287:0,0,0 -k1,18537:-473656,4736287:5209943 -) -g1,18537:-473656,-710413 -) -] -) -[1,18537:6630773,47279633:25952256,43253760,0 -[1,18537:6630773,4812305:25952256,786432,0 -(1,18537:6630773,4812305:25952256,513147,126483 -(1,18537:6630773,4812305:25952256,513147,126483 -g1,18537:3078558,4812305 -[1,18537:3078558,4812305:0,0,0 -(1,18537:3078558,2439708:0,1703936,0 -k1,18537:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,18537:2537886,2439708:1179648,16384,0 -) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,18537:3078558,1915420:16384,1179648,0 -) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 -) -] -) -) -) -] -[1,18537:3078558,4812305:0,0,0 -(1,18537:3078558,2439708:0,1703936,0 -g1,18537:29030814,2439708 -g1,18537:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,18537:36151628,1915420:16384,1179648,0 -) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 -) -] -) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,18537:37855564,2439708:1179648,16384,0 -) -) -k1,18537:3078556,2439708:-34777008 -) -] -[1,18537:3078558,4812305:0,0,0 -(1,18537:3078558,49800853:0,16384,2228224 -k1,18537:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,18537:2537886,49800853:1179648,16384,0 -) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,18537:3078558,51504789:16384,1179648,0 -) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 -) -] -) -) -) -] -[1,18537:3078558,4812305:0,0,0 -(1,18537:3078558,49800853:0,16384,2228224 -g1,18537:29030814,49800853 -g1,18537:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,18537:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] -) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,18537:37855564,49800853:1179648,16384,0 -) -) -k1,18537:3078556,49800853:-34777008 -) -] -g1,18537:6630773,4812305 -k1,18537:21350816,4812305:13524666 -g1,18537:21999622,4812305 -g1,18537:25611966,4812305 -g1,18537:28956923,4812305 -g1,18537:29772190,4812305 -) -) -] -[1,18537:6630773,45706769:25952256,40108032,0 -(1,18537:6630773,45706769:25952256,40108032,0 -(1,18537:6630773,45706769:0,0,0 -g1,18537:6630773,45706769 -) -[1,18537:6630773,45706769:25952256,40108032,0 -(1,18489:6630773,6254097:25952256,505283,134348 -k1,18488:7945285,6254097:295427 -k1,18488:9832581,6254097:295426 -k1,18488:11578975,6254097:295427 -k1,18488:12479955,6254097:295427 -k1,18488:13966826,6254097:295426 -k1,18488:14867806,6254097:295427 -k1,18488:18020603,6254097:295427 -k1,18488:19335114,6254097:295426 -k1,18488:23026617,6254097:295427 -k1,18488:25342518,6254097:295426 -k1,18488:26253983,6254097:295427 -k1,18488:27568495,6254097:295427 -k1,18488:29455791,6254097:295426 -k1,18488:31202185,6254097:295427 -k1,18488:32583029,6254097:0 -) -(1,18489:6630773,7095585:25952256,513147,134348 -k1,18488:8489647,7095585:182463 -k1,18488:11358431,7095585:182463 -k1,18488:14202311,7095585:182463 -k1,18488:16375758,7095585:182463 -k1,18488:17888602,7095585:182463 -k1,18488:18426925,7095585:182463 -k1,18488:19892584,7095585:182464 -k1,18488:23147375,7095585:182463 -k1,18488:23981266,7095585:182463 -k1,18488:26992262,7095585:182463 -k1,18488:28279007,7095585:182463 -k1,18488:31304422,7095585:182463 -k1,18488:32583029,7095585:0 -) -(1,18489:6630773,7937073:25952256,513147,134348 -k1,18488:8151426,7937073:253187 -k1,18488:9423699,7937073:253188 -k1,18488:12579476,7937073:253187 -k1,18488:13491955,7937073:253187 -k1,18488:16464232,7937073:253188 -k1,18488:19928028,7937073:253187 -k1,18488:20809050,7937073:253187 -k1,18488:22265479,7937073:253188 -k1,18488:25353753,7937073:253187 -k1,18488:26258368,7937073:253187 -k1,18488:28172238,7937073:253188 -k1,18488:29196128,7937073:253187 -k1,18488:32583029,7937073:0 -) -(1,18489:6630773,8778561:25952256,513147,134348 -k1,18488:10056743,8778561:267790 -k1,18488:12651716,8778561:267790 -k1,18488:13578799,8778561:267791 -k1,18488:16913019,8778561:267790 -k1,18488:17946925,8778561:267790 -k1,18488:19233800,8778561:267790 -k1,18488:20890954,8778561:267791 -k1,18488:22426210,8778561:267790 -k1,18488:23049860,8778561:267790 -k1,18488:24707013,8778561:267790 -k1,18488:27024770,8778561:267791 -k1,18488:28160912,8778561:267790 -k1,18488:29825274,8778561:267790 -k1,18488:32583029,8778561:0 -) -(1,18489:6630773,9620049:25952256,505283,126483 -k1,18488:8924790,9620049:283372 -k1,18488:11622507,9620049:283371 -k1,18488:12557307,9620049:283372 -k1,18488:13859764,9620049:283372 -k1,18488:16485393,9620049:283372 -k1,18488:19943328,9620049:283371 -k1,18488:22236689,9620049:283372 -(1,18488:22236689,9620049:0,452978,115847 -r1,18537:25760361,9620049:3523672,568825,115847 -k1,18488:22236689,9620049:-3523672 -) -(1,18488:22236689,9620049:3523672,452978,115847 -k1,18488:22236689,9620049:3277 -h1,18488:25757084,9620049:0,411205,112570 -) -k1,18488:26043733,9620049:283372 -k1,18488:27559182,9620049:283372 -k1,18488:30121240,9620049:283371 -h1,18488:31490287,9620049:0,0,0 -k1,18488:31773659,9620049:283372 -k1,18488:32583029,9620049:0 -) -(1,18489:6630773,10461537:25952256,505283,134348 -g1,18488:8328155,10461537 -h1,18488:9523532,10461537:0,0,0 -k1,18489:32583028,10461537:22678732 -g1,18489:32583028,10461537 -) -v1,18491:6630773,11652003:0,393216,0 -(1,18507:6630773,19961236:25952256,8702449,196608 -g1,18507:6630773,19961236 -g1,18507:6630773,19961236 -g1,18507:6434165,19961236 -(1,18507:6434165,19961236:0,8702449,196608 -r1,18537:32779637,19961236:26345472,8899057,196608 -k1,18507:6434165,19961236:-26345472 -) -(1,18507:6434165,19961236:26345472,8702449,196608 -[1,18507:6630773,19961236:25952256,8505841,0 -(1,18493:6630773,11865913:25952256,410518,107478 -(1,18492:6630773,11865913:0,0,0 -g1,18492:6630773,11865913 -g1,18492:6630773,11865913 -g1,18492:6303093,11865913 -(1,18492:6303093,11865913:0,0,0 -) -g1,18492:6630773,11865913 -) -g1,18493:8843793,11865913 -g1,18493:9792231,11865913 -g1,18493:13585980,11865913 -g1,18493:14218272,11865913 -g1,18493:16747438,11865913 -g1,18493:18644313,11865913 -g1,18493:19276605,11865913 -g1,18493:21173480,11865913 -g1,18493:21805772,11865913 -g1,18493:22438064,11865913 -g1,18493:24018793,11865913 -g1,18493:25915667,11865913 -g1,18493:26547959,11865913 -g1,18493:30973999,11865913 -h1,18493:31290145,11865913:0,0,0 -k1,18493:32583029,11865913:1292884 -g1,18493:32583029,11865913 -) -(1,18494:6630773,12532091:25952256,404226,107478 -h1,18494:6630773,12532091:0,0,0 -g1,18494:6946919,12532091 -g1,18494:7263065,12532091 -k1,18494:7263065,12532091:0 -h1,18494:11056813,12532091:0,0,0 -k1,18494:32583029,12532091:21526216 -g1,18494:32583029,12532091 -) -(1,18495:6630773,13198269:25952256,404226,101187 -h1,18495:6630773,13198269:0,0,0 -g1,18495:9159939,13198269 -g1,18495:10108377,13198269 -g1,18495:12321397,13198269 -h1,18495:12637543,13198269:0,0,0 -k1,18495:32583029,13198269:19945486 -g1,18495:32583029,13198269 -) -(1,18496:6630773,13864447:25952256,404226,101187 -h1,18496:6630773,13864447:0,0,0 -g1,18496:6946919,13864447 -g1,18496:7263065,13864447 -g1,18496:13902125,13864447 -g1,18496:14534417,13864447 -g1,18496:16747438,13864447 -g1,18496:18644313,13864447 -g1,18496:20225042,13864447 -g1,18496:20857334,13864447 -g1,18496:22754209,13864447 -g1,18496:24334937,13864447 -h1,18496:24651083,13864447:0,0,0 -k1,18496:32583029,13864447:7931946 -g1,18496:32583029,13864447 -) -(1,18497:6630773,14530625:25952256,404226,101187 -h1,18497:6630773,14530625:0,0,0 -g1,18497:6946919,14530625 -g1,18497:7263065,14530625 -g1,18497:9476086,14530625 -g1,18497:10108378,14530625 -g1,18497:12005253,14530625 -g1,18497:12637545,14530625 -g1,18497:13269837,14530625 -g1,18497:15166712,14530625 -h1,18497:15482858,14530625:0,0,0 -k1,18497:32583030,14530625:17100172 -g1,18497:32583030,14530625 -) -(1,18498:6630773,15196803:25952256,404226,107478 -h1,18498:6630773,15196803:0,0,0 -g1,18498:6946919,15196803 -g1,18498:7263065,15196803 -g1,18498:15798999,15196803 -g1,18498:16431291,15196803 -g1,18498:18960457,15196803 -h1,18498:19276603,15196803:0,0,0 -k1,18498:32583029,15196803:13306426 -g1,18498:32583029,15196803 -) -(1,18499:6630773,15862981:25952256,404226,101187 -h1,18499:6630773,15862981:0,0,0 -g1,18499:6946919,15862981 -g1,18499:7263065,15862981 -g1,18499:11056814,15862981 -g1,18499:11689106,15862981 -g1,18499:17695874,15862981 -g1,18499:18328166,15862981 -h1,18499:18960458,15862981:0,0,0 -k1,18499:32583029,15862981:13622571 -g1,18499:32583029,15862981 -) -(1,18500:6630773,16529159:25952256,404226,101187 -h1,18500:6630773,16529159:0,0,0 -g1,18500:8843793,16529159 -h1,18500:9159939,16529159:0,0,0 -k1,18500:32583029,16529159:23423090 -g1,18500:32583029,16529159 -) -(1,18501:6630773,17195337:25952256,404226,107478 -h1,18501:6630773,17195337:0,0,0 -g1,18501:6946919,17195337 -g1,18501:7263065,17195337 -g1,18501:11056814,17195337 -g1,18501:11689106,17195337 -g1,18501:13269835,17195337 -g1,18501:13902127,17195337 -g1,18501:14534419,17195337 -g1,18501:15799002,17195337 -g1,18501:17695876,17195337 -g1,18501:18328168,17195337 -g1,18501:23070354,17195337 -g1,18501:26231811,17195337 -g1,18501:26864103,17195337 -k1,18501:26864103,17195337:0 -h1,18501:28128687,17195337:0,0,0 -k1,18501:32583029,17195337:4454342 -g1,18501:32583029,17195337 -) -(1,18502:6630773,17861515:25952256,404226,107478 -h1,18502:6630773,17861515:0,0,0 -g1,18502:6946919,17861515 -g1,18502:7263065,17861515 -g1,18502:7579211,17861515 -g1,18502:7895357,17861515 -g1,18502:8211503,17861515 -g1,18502:8527649,17861515 -g1,18502:8843795,17861515 -g1,18502:9159941,17861515 -g1,18502:9476087,17861515 -g1,18502:9792233,17861515 -g1,18502:10108379,17861515 -g1,18502:10424525,17861515 -g1,18502:12321399,17861515 -g1,18502:12953691,17861515 -g1,18502:16115148,17861515 -g1,18502:18012022,17861515 -g1,18502:18644314,17861515 -g1,18502:21805771,17861515 -h1,18502:22121917,17861515:0,0,0 -k1,18502:32583029,17861515:10461112 -g1,18502:32583029,17861515 -) -(1,18503:6630773,18527693:25952256,410518,107478 -h1,18503:6630773,18527693:0,0,0 -g1,18503:6946919,18527693 -g1,18503:7263065,18527693 -g1,18503:11689105,18527693 -g1,18503:12321397,18527693 -g1,18503:14850563,18527693 -g1,18503:16431292,18527693 -g1,18503:17063584,18527693 -g1,18503:18328167,18527693 -g1,18503:20225041,18527693 -g1,18503:20857333,18527693 -k1,18503:20857333,18527693:0 -h1,18503:23386499,18527693:0,0,0 -k1,18503:32583029,18527693:9196530 -g1,18503:32583029,18527693 -) -(1,18504:6630773,19193871:25952256,404226,101187 -h1,18504:6630773,19193871:0,0,0 -g1,18504:6946919,19193871 -g1,18504:7263065,19193871 -g1,18504:7579211,19193871 -g1,18504:7895357,19193871 -g1,18504:8211503,19193871 -g1,18504:8527649,19193871 -g1,18504:8843795,19193871 -g1,18504:9159941,19193871 -g1,18504:9476087,19193871 -g1,18504:9792233,19193871 -g1,18504:10108379,19193871 -g1,18504:11689108,19193871 -g1,18504:12321400,19193871 -g1,18504:13902129,19193871 -g1,18504:15482858,19193871 -g1,18504:16115150,19193871 -g1,18504:17695879,19193871 -g1,18504:19276608,19193871 -g1,18504:19908900,19193871 -g1,18504:21173483,19193871 -g1,18504:22754212,19193871 -g1,18504:23386504,19193871 -k1,18504:23386504,19193871:0 -h1,18504:24334941,19193871:0,0,0 -k1,18504:32583029,19193871:8248088 -g1,18504:32583029,19193871 -) -(1,18505:6630773,19860049:25952256,404226,101187 -h1,18505:6630773,19860049:0,0,0 -g1,18505:6946919,19860049 -g1,18505:7263065,19860049 -g1,18505:7579211,19860049 -g1,18505:7895357,19860049 -g1,18505:8211503,19860049 -g1,18505:8527649,19860049 -g1,18505:8843795,19860049 -g1,18505:9159941,19860049 -g1,18505:9476087,19860049 -g1,18505:9792233,19860049 -g1,18505:10108379,19860049 -g1,18505:12953690,19860049 -g1,18505:13585982,19860049 -h1,18505:16431293,19860049:0,0,0 -k1,18505:32583029,19860049:16151736 -g1,18505:32583029,19860049 -) -] -) -g1,18507:32583029,19961236 -g1,18507:6630773,19961236 -g1,18507:6630773,19961236 -g1,18507:32583029,19961236 -g1,18507:32583029,19961236 -) -h1,18507:6630773,20157844:0,0,0 -(1,18510:6630773,29831334:25952256,9083666,0 -k1,18510:10523651,29831334:3892878 -h1,18509:10523651,29831334:0,0,0 -(1,18509:10523651,29831334:18166500,9083666,0 -(1,18509:10523651,29831334:18167376,9083688,0 -(1,18509:10523651,29831334:18167376,9083688,0 -(1,18509:10523651,29831334:0,9083688,0 -(1,18509:10523651,29831334:0,14208860,0 -(1,18509:10523651,29831334:28417720,14208860,0 -) -k1,18509:10523651,29831334:-28417720 -) -) -g1,18509:28691027,29831334 -) -) -) -g1,18510:28690151,29831334 -k1,18510:32583029,29831334:3892878 -) -(1,18518:6630773,30672822:25952256,505283,126483 -h1,18517:6630773,30672822:983040,0,0 -k1,18517:11056110,30672822:347032 -(1,18517:11056110,30672822:0,452978,122846 -r1,18537:14931494,30672822:3875384,575824,122846 -k1,18517:11056110,30672822:-3875384 -) -(1,18517:11056110,30672822:3875384,452978,122846 -k1,18517:11056110,30672822:3277 -h1,18517:14928217,30672822:0,411205,112570 -) -k1,18517:15278526,30672822:347032 -k1,18517:17552316,30672822:347032 -k1,18517:19682583,30672822:347032 -k1,18517:21175839,30672822:347031 -(1,18517:21175839,30672822:0,452978,122846 -r1,18537:25402935,30672822:4227096,575824,122846 -k1,18517:21175839,30672822:-4227096 -) -(1,18517:21175839,30672822:4227096,452978,122846 -k1,18517:21175839,30672822:3277 -h1,18517:25399658,30672822:0,411205,112570 -) -k1,18517:25749967,30672822:347032 -k1,18517:27288444,30672822:347032 -(1,18517:27288444,30672822:0,452978,122846 -r1,18537:31163828,30672822:3875384,575824,122846 -k1,18517:27288444,30672822:-3875384 -) -(1,18517:27288444,30672822:3875384,452978,122846 -k1,18517:27288444,30672822:3277 -h1,18517:31160551,30672822:0,411205,112570 -) -k1,18517:31510860,30672822:347032 -k1,18517:32583029,30672822:0 -) -(1,18518:6630773,31514310:25952256,513147,134348 -k1,18517:9351844,31514310:319832 -k1,18517:10027536,31514310:319832 -k1,18517:11340894,31514310:319832 -k1,18517:12320018,31514310:319832 -k1,18517:14265797,31514310:319832 -k1,18517:17535404,31514310:319832 -k1,18517:20318734,31514310:319832 -k1,18517:22506342,31514310:319832 -(1,18517:22506342,31514310:0,452978,122846 -r1,18537:23919743,31514310:1413401,575824,122846 -k1,18517:22506342,31514310:-1413401 -) -(1,18517:22506342,31514310:1413401,452978,122846 -k1,18517:22506342,31514310:3277 -h1,18517:23916466,31514310:0,411205,112570 -) -k1,18517:24239575,31514310:319832 -k1,18517:25507058,31514310:319832 -k1,18517:27685491,31514310:319832 -k1,18517:29386167,31514310:319832 -k1,18517:31233643,31514310:319832 -k1,18518:32583029,31514310:0 -) -(1,18518:6630773,32355798:25952256,513147,134348 -k1,18517:9038838,32355798:392178 -k1,18517:10043779,32355798:392179 -k1,18517:11455042,32355798:392178 -k1,18517:14420163,32355798:392178 -k1,18517:15471633,32355798:392178 -k1,18517:17981936,32355798:392179 -k1,18517:19025542,32355798:392178 -k1,18517:22686656,32355798:392178 -k1,18517:25008214,32355798:392178 -k1,18517:26419478,32355798:392179 -k1,18517:28599478,32355798:392178 -k1,18517:30847636,32355798:392178 -k1,18517:32583029,32355798:0 -) -(1,18518:6630773,33197286:25952256,513147,134348 -k1,18517:8541550,33197286:284830 -k1,18517:9509264,33197286:284829 -k1,18517:10555622,33197286:284830 -k1,18517:14223419,33197286:284829 -k1,18517:16210219,33197286:284830 -k1,18517:18784877,33197286:284830 -k1,18517:20337172,33197286:284829 -k1,18517:22583495,33197286:284830 -k1,18517:24249169,33197286:284830 -k1,18517:27523750,33197286:284829 -k1,18517:28340077,33197286:284830 -k1,18517:29311068,33197286:284829 -k1,18517:31896867,33197286:284830 -k1,18518:32583029,33197286:0 -) -(1,18518:6630773,34038774:25952256,505283,134348 -(1,18517:6630773,34038774:0,452978,115847 -r1,18537:13319851,34038774:6689078,568825,115847 -k1,18517:6630773,34038774:-6689078 -) -(1,18517:6630773,34038774:6689078,452978,115847 -k1,18517:6630773,34038774:3277 -h1,18517:13316574,34038774:0,411205,112570 -) -k1,18517:13606438,34038774:286587 -k1,18517:15286977,34038774:286588 -k1,18517:17898126,34038774:286587 -k1,18517:18836142,34038774:286588 -k1,18517:20141814,34038774:286587 -k1,18517:22389895,34038774:286588 -k1,18517:23748651,34038774:286587 -k1,18517:26588522,34038774:286588 -k1,18517:27561271,34038774:286587 -k1,18517:28203719,34038774:286588 -k1,18517:31629480,34038774:286587 -k1,18517:32583029,34038774:0 -) -(1,18518:6630773,34880262:25952256,513147,126483 -k1,18517:8535343,34880262:243888 -k1,18517:9549933,34880262:243887 -k1,18517:12455238,34880262:243888 -k1,18517:13983631,34880262:243887 -k1,18517:15755163,34880262:243888 -k1,18517:17171489,34880262:243887 -k1,18517:20000772,34880262:243888 -k1,18517:20896088,34880262:243888 -k1,18517:22159060,34880262:243887 -k1,18517:23853915,34880262:243888 -k1,18517:25294489,34880262:243887 -k1,18517:28123772,34880262:243888 -k1,18517:29359219,34880262:243887 -k1,18517:31015408,34880262:243888 -k1,18517:32583029,34880262:0 -) -(1,18518:6630773,35721750:25952256,513147,134348 -k1,18517:8246302,35721750:268109 -k1,18517:10001492,35721750:268178 -k1,18517:13430470,35721750:268177 -k1,18517:14966114,35721750:268178 -k1,18517:17195785,35721750:268178 -k1,18517:18655408,35721750:268178 -k1,18517:20889011,35721750:268178 -k1,18517:21808617,35721750:268178 -k1,18517:23095880,35721750:268178 -k1,18517:24641355,35721750:268178 -k1,18517:25595695,35721750:268178 -k1,18517:26219732,35721750:268177 -k1,18517:27771105,35721750:268178 -k1,18517:29770744,35721750:268178 -k1,18517:31235609,35721750:268178 -k1,18517:32583029,35721750:0 -) -(1,18518:6630773,36563238:25952256,505283,134348 -g1,18517:9415397,36563238 -g1,18517:11127852,36563238 -g1,18517:12802296,36563238 -g1,18517:13357385,36563238 -g1,18517:17286923,36563238 -k1,18518:32583029,36563238:11332489 -g1,18518:32583029,36563238 -) -v1,18520:6630773,37753704:0,393216,0 -(1,18537:6630773,45403050:25952256,8042562,196608 -g1,18537:6630773,45403050 -g1,18537:6630773,45403050 -g1,18537:6434165,45403050 -(1,18537:6434165,45403050:0,8042562,196608 -r1,18537:32779637,45403050:26345472,8239170,196608 -k1,18537:6434165,45403050:-26345472 -) -(1,18537:6434165,45403050:26345472,8042562,196608 -[1,18537:6630773,45403050:25952256,7845954,0 -(1,18522:6630773,37967614:25952256,410518,6290 -(1,18521:6630773,37967614:0,0,0 -g1,18521:6630773,37967614 -g1,18521:6630773,37967614 -g1,18521:6303093,37967614 -(1,18521:6303093,37967614:0,0,0 -) -g1,18521:6630773,37967614 -) -g1,18522:10108376,37967614 -k1,18522:10108376,37967614:0 -h1,18522:10740668,37967614:0,0,0 -k1,18522:32583028,37967614:21842360 -g1,18522:32583028,37967614 -) -(1,18523:6630773,38633792:25952256,410518,107478 -h1,18523:6630773,38633792:0,0,0 -g1,18523:6946919,38633792 -g1,18523:7263065,38633792 -g1,18523:14534416,38633792 -g1,18523:20857330,38633792 -g1,18523:23386496,38633792 -g1,18523:24018788,38633792 -g1,18523:27496391,38633792 -g1,18523:30341702,38633792 -g1,18523:30973994,38633792 -h1,18523:32554723,38633792:0,0,0 -k1,18523:32583029,38633792:28306 -g1,18523:32583029,38633792 -) -(1,18524:6630773,39299970:25952256,410518,107478 -h1,18524:6630773,39299970:0,0,0 -g1,18524:10740667,39299970 -g1,18524:11689105,39299970 -k1,18524:11689105,39299970:0 -h1,18524:21173475,39299970:0,0,0 -k1,18524:32583029,39299970:11409554 -g1,18524:32583029,39299970 -) -(1,18525:6630773,39966148:25952256,410518,6290 -h1,18525:6630773,39966148:0,0,0 -g1,18525:10108376,39966148 -k1,18525:10108376,39966148:0 -h1,18525:10740668,39966148:0,0,0 -k1,18525:32583028,39966148:21842360 -g1,18525:32583028,39966148 -) -(1,18526:6630773,40632326:25952256,410518,107478 -h1,18526:6630773,40632326:0,0,0 -g1,18526:6946919,40632326 -g1,18526:7263065,40632326 -g1,18526:14534416,40632326 -g1,18526:19276602,40632326 -g1,18526:21805768,40632326 -g1,18526:22438060,40632326 -g1,18526:25915663,40632326 -g1,18526:28760974,40632326 -g1,18526:29393266,40632326 -h1,18526:30973995,40632326:0,0,0 -k1,18526:32583029,40632326:1609034 -g1,18526:32583029,40632326 -) -(1,18527:6630773,41298504:25952256,410518,107478 -h1,18527:6630773,41298504:0,0,0 -g1,18527:9159939,41298504 -g1,18527:10108377,41298504 -k1,18527:10108377,41298504:0 -h1,18527:19592747,41298504:0,0,0 -k1,18527:32583029,41298504:12990282 -g1,18527:32583029,41298504 -) -(1,18528:6630773,41964682:25952256,404226,107478 -h1,18528:6630773,41964682:0,0,0 -g1,18528:9159939,41964682 -g1,18528:10108377,41964682 -g1,18528:12953689,41964682 -g1,18528:13585981,41964682 -g1,18528:15166711,41964682 -g1,18528:17063586,41964682 -g1,18528:17695878,41964682 -g1,18528:18328170,41964682 -g1,18528:20225045,41964682 -g1,18528:21805774,41964682 -g1,18528:24018794,41964682 -g1,18528:24651086,41964682 -g1,18528:26231816,41964682 -g1,18528:28128690,41964682 -g1,18528:28760982,41964682 -k1,18528:28760982,41964682:0 -h1,18528:30974004,41964682:0,0,0 -k1,18528:32583029,41964682:1609025 -g1,18528:32583029,41964682 -) -(1,18529:6630773,42630860:25952256,404226,107478 -h1,18529:6630773,42630860:0,0,0 -g1,18529:6946919,42630860 -g1,18529:7263065,42630860 -g1,18529:7579211,42630860 -g1,18529:7895357,42630860 -g1,18529:8211503,42630860 -g1,18529:8527649,42630860 -g1,18529:8843795,42630860 -g1,18529:9159941,42630860 -g1,18529:9476087,42630860 -g1,18529:9792233,42630860 -g1,18529:10108379,42630860 -g1,18529:10424525,42630860 -g1,18529:10740671,42630860 -g1,18529:11056817,42630860 -g1,18529:11372963,42630860 -g1,18529:11689109,42630860 -g1,18529:12005255,42630860 -g1,18529:12321401,42630860 -g1,18529:14218275,42630860 -g1,18529:14850567,42630860 -g1,18529:23702646,42630860 -g1,18529:24334938,42630860 -k1,18529:24334938,42630860:0 -h1,18529:28760978,42630860:0,0,0 -k1,18529:32583029,42630860:3822051 -g1,18529:32583029,42630860 -) -(1,18530:6630773,43297038:25952256,404226,107478 -h1,18530:6630773,43297038:0,0,0 -g1,18530:6946919,43297038 -g1,18530:7263065,43297038 -g1,18530:7579211,43297038 -g1,18530:7895357,43297038 -g1,18530:8211503,43297038 -g1,18530:8527649,43297038 -g1,18530:8843795,43297038 -g1,18530:9159941,43297038 -g1,18530:9476087,43297038 -g1,18530:9792233,43297038 -g1,18530:10108379,43297038 -g1,18530:10424525,43297038 -g1,18530:10740671,43297038 -g1,18530:11056817,43297038 -g1,18530:11372963,43297038 -g1,18530:11689109,43297038 -g1,18530:12005255,43297038 -g1,18530:12321401,43297038 -g1,18530:12637547,43297038 -g1,18530:12953693,43297038 -g1,18530:13269839,43297038 -g1,18530:13585985,43297038 -g1,18530:13902131,43297038 -g1,18530:14218277,43297038 -g1,18530:14534423,43297038 -g1,18530:14850569,43297038 -g1,18530:15166715,43297038 -g1,18530:15482861,43297038 -g1,18530:15799007,43297038 -g1,18530:16115153,43297038 -g1,18530:16431299,43297038 -g1,18530:23702650,43297038 -g1,18530:24334942,43297038 -h1,18530:27496399,43297038:0,0,0 -k1,18530:32583029,43297038:5086630 -g1,18530:32583029,43297038 -) -(1,18531:6630773,43963216:25952256,0,0 -h1,18531:6630773,43963216:0,0,0 -h1,18531:6630773,43963216:0,0,0 -k1,18531:32583029,43963216:25952256 -g1,18531:32583029,43963216 -) -(1,18532:6630773,44629394:25952256,404226,107478 -h1,18532:6630773,44629394:0,0,0 -g1,18532:9476084,44629394 -h1,18532:9792230,44629394:0,0,0 -k1,18532:32583030,44629394:22790800 -g1,18532:32583030,44629394 -) -(1,18533:6630773,45295572:25952256,404226,107478 -h1,18533:6630773,45295572:0,0,0 -g1,18533:6946919,45295572 -g1,18533:7263065,45295572 -g1,18533:12005251,45295572 -g1,18533:12637543,45295572 -k1,18533:12637543,45295572:0 -h1,18533:15166709,45295572:0,0,0 -k1,18533:32583029,45295572:17416320 -g1,18533:32583029,45295572 -) -] -) -g1,18537:32583029,45403050 -g1,18537:6630773,45403050 -g1,18537:6630773,45403050 -g1,18537:32583029,45403050 -g1,18537:32583029,45403050 -) -] -(1,18537:32583029,45706769:0,0,0 -g1,18537:32583029,45706769 -) -) -] -(1,18537:6630773,47279633:25952256,0,0 -h1,18537:6630773,47279633:25952256,0,0 -) -] -(1,18537:4262630,4025873:0,0,0 -[1,18537:-473656,4025873:0,0,0 -(1,18537:-473656,-710413:0,0,0 -(1,18537:-473656,-710413:0,0,0 -g1,18537:-473656,-710413 -) -g1,18537:-473656,-710413 -) -] -) -] -!24098 -}327 Input:2876:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2877:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2878:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -319556,10 +315327,8 @@ Input:2881:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConso Input:2882:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2883:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2884:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2885:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2886:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1046 -{328 +!2268 +{309 [1,18578:4262630,47279633:28320399,43253760,0 (1,18578:4262630,4025873:0,0,0 [1,18578:-473656,4025873:0,0,0 @@ -319576,25 +315345,25 @@ g1,18578:-473656,-710413 ) [1,18578:6630773,47279633:25952256,43253760,0 [1,18578:6630773,4812305:25952256,786432,0 -(1,18578:6630773,4812305:25952256,485622,11795 -(1,18578:6630773,4812305:25952256,485622,11795 +(1,18578:6630773,4812305:25952256,513147,126483 +(1,18578:6630773,4812305:25952256,513147,126483 g1,18578:3078558,4812305 [1,18578:3078558,4812305:0,0,0 (1,18578:3078558,2439708:0,1703936,0 k1,18578:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 r1,18578:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 r1,18578:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) @@ -319605,20 +315374,20 @@ g1,16770:29014430,1915420 (1,18578:3078558,2439708:0,1703936,0 g1,18578:29030814,2439708 g1,18578:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 r1,18578:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 r1,18578:37855564,2439708:1179648,16384,0 ) ) @@ -319628,19 +315397,19 @@ k1,18578:3078556,2439708:-34777008 [1,18578:3078558,4812305:0,0,0 (1,18578:3078558,49800853:0,16384,2228224 k1,18578:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 r1,18578:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 r1,18578:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) @@ -319651,20 +315420,20 @@ g1,16770:29014430,51504789 (1,18578:3078558,49800853:0,16384,2228224 g1,18578:29030814,49800853 g1,18578:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 r1,18578:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 r1,18578:37855564,49800853:1179648,16384,0 ) ) @@ -319672,9 +315441,11 @@ k1,18578:3078556,49800853:-34777008 ) ] g1,18578:6630773,4812305 -g1,18578:6630773,4812305 -g1,18578:10347975,4812305 -k1,18578:31387651,4812305:21039676 +k1,18578:21350816,4812305:13524666 +g1,18578:21999622,4812305 +g1,18578:25611966,4812305 +g1,18578:28956923,4812305 +g1,18578:29772190,4812305 ) ) ] @@ -319684,547 +315455,732 @@ k1,18578:31387651,4812305:21039676 g1,18578:6630773,45706769 ) [1,18578:6630773,45706769:25952256,40108032,0 -v1,18537:6630773,6254097:0,393216,0 -(1,18537:6630773,7235371:25952256,1374490,196608 -g1,18537:6630773,7235371 -g1,18537:6630773,7235371 -g1,18537:6434165,7235371 -(1,18537:6434165,7235371:0,1374490,196608 -r1,18578:32779637,7235371:26345472,1571098,196608 -k1,18537:6434165,7235371:-26345472 -) -(1,18537:6434165,7235371:26345472,1374490,196608 -[1,18537:6630773,7235371:25952256,1177882,0 -(1,18534:6630773,6461715:25952256,404226,107478 -h1,18534:6630773,6461715:0,0,0 -k1,18534:6935848,6461715:305075 -k1,18534:7240923,6461715:305075 -k1,18534:7545998,6461715:305075 -k1,18534:7851073,6461715:305075 -k1,18534:8156148,6461715:305075 -k1,18534:8461223,6461715:305075 -k1,18534:8766298,6461715:305075 -k1,18534:9071373,6461715:305075 -k1,18534:9376448,6461715:305075 -k1,18534:9681523,6461715:305075 -k1,18534:9986598,6461715:305075 -k1,18534:10291673,6461715:305075 -k1,18534:12177476,6461715:305074 -k1,18534:12798697,6461715:305075 -k1,18534:13736064,6461715:305075 -k1,18534:14357285,6461715:305075 -k1,18534:14978506,6461715:305075 -k1,18534:15915873,6461715:305075 -k1,18534:17801676,6461715:305075 -k1,18534:18422897,6461715:305075 -k1,18534:20624846,6461715:305075 -k1,18534:23775232,6461715:305075 -k1,18534:24396453,6461715:305075 -k1,18534:26914548,6461715:305075 -k1,18534:29748788,6461715:305075 -k1,18534:30370009,6461715:305075 -k1,18534:30370009,6461715:0 -h1,18534:32583029,6461715:0,0,0 -k1,18534:32583029,6461715:0 -k1,18534:32583029,6461715:0 -) -(1,18535:6630773,7127893:25952256,404226,107478 -h1,18535:6630773,7127893:0,0,0 -g1,18535:6946919,7127893 -g1,18535:7263065,7127893 -g1,18535:7579211,7127893 -g1,18535:7895357,7127893 -g1,18535:8211503,7127893 -g1,18535:8527649,7127893 -g1,18535:8843795,7127893 -g1,18535:9159941,7127893 -g1,18535:9476087,7127893 -g1,18535:9792233,7127893 -g1,18535:10108379,7127893 -g1,18535:10424525,7127893 -g1,18535:10740671,7127893 -g1,18535:11056817,7127893 -g1,18535:11372963,7127893 -g1,18535:11689109,7127893 -g1,18535:13585983,7127893 -g1,18535:14218275,7127893 -g1,18535:17379732,7127893 -g1,18535:19276606,7127893 -g1,18535:19908898,7127893 -h1,18535:22754209,7127893:0,0,0 -k1,18535:32583029,7127893:9828820 -g1,18535:32583029,7127893 -) -] -) -g1,18537:32583029,7235371 -g1,18537:6630773,7235371 -g1,18537:6630773,7235371 -g1,18537:32583029,7235371 -g1,18537:32583029,7235371 -) -h1,18537:6630773,7431979:0,0,0 -(1,18540:6630773,16901429:25952256,9083666,0 -k1,18540:10523651,16901429:3892878 -h1,18539:10523651,16901429:0,0,0 -(1,18539:10523651,16901429:18166500,9083666,0 -(1,18539:10523651,16901429:18167376,9083688,0 -(1,18539:10523651,16901429:18167376,9083688,0 -(1,18539:10523651,16901429:0,9083688,0 -(1,18539:10523651,16901429:0,14208860,0 -(1,18539:10523651,16901429:28417720,14208860,0 -) -k1,18539:10523651,16901429:-28417720 -) -) -g1,18539:28691027,16901429 -) -) -) -g1,18540:28690151,16901429 -k1,18540:32583029,16901429:3892878 -) -v1,18548:6630773,18063166:0,393216,0 -(1,18568:6630773,45386521:25952256,27716571,0 -g1,18568:6630773,45386521 -g1,18568:6303093,45386521 -r1,18578:6401397,45386521:98304,27716571,0 -g1,18568:6600626,45386521 -g1,18568:6797234,45386521 -[1,18568:6797234,45386521:25785795,27716571,0 -(1,18549:6797234,18425239:25785795,755289,196608 -(1,18548:6797234,18425239:0,755289,196608 -r1,18578:8134168,18425239:1336934,951897,196608 -k1,18548:6797234,18425239:-1336934 -) -(1,18548:6797234,18425239:1336934,755289,196608 -) -k1,18548:8287939,18425239:153771 -k1,18548:8615619,18425239:327680 -k1,18548:10159410,18425239:153772 -k1,18548:13032270,18425239:153771 -k1,18548:15616116,18425239:153771 -k1,18548:16788972,18425239:153771 -k1,18548:19738510,18425239:153772 -k1,18548:22918078,18425239:153771 -k1,18548:24356355,18425239:153771 -k1,18548:25976822,18425239:153771 -k1,18548:28959127,18425239:153772 -k1,18548:30304343,18425239:153771 -k1,18548:32583029,18425239:0 -) -(1,18549:6797234,19266727:25785795,513147,134348 -k1,18548:8094292,19266727:204573 -k1,18548:10184991,19266727:204573 -k1,18548:11408649,19266727:204573 -k1,18548:13411530,19266727:204573 -k1,18548:15006122,19266727:204573 -k1,18548:18067409,19266727:204573 -k1,18548:21034325,19266727:204573 -k1,18548:22955286,19266727:204573 -k1,18548:23819151,19266727:204573 -k1,18548:25641808,19266727:204573 -k1,18548:26794032,19266727:204573 -k1,18548:30418274,19266727:204573 -k1,18548:31641932,19266727:204573 -k1,18549:32583029,19266727:0 -) -(1,18549:6797234,20108215:25785795,513147,134348 -k1,18548:9995009,20108215:187706 -k1,18548:10842007,20108215:187706 -k1,18548:13974245,20108215:187705 -k1,18548:16171940,20108215:187706 -k1,18548:17378731,20108215:187706 -k1,18548:20090884,20108215:187706 -k1,18548:21799681,20108215:187706 -k1,18548:22885230,20108215:187706 -k1,18548:26064654,20108215:187705 -k1,18548:28618210,20108215:187706 -k1,18548:30009157,20108215:187706 -k1,18548:31423042,20108215:187706 -k1,18548:32583029,20108215:0 -) -(1,18549:6797234,20949703:25785795,505283,134348 -k1,18548:8064083,20949703:174364 -(1,18548:8064083,20949703:0,452978,115847 -r1,18578:10884332,20949703:2820249,568825,115847 -k1,18548:8064083,20949703:-2820249 -) -(1,18548:8064083,20949703:2820249,452978,115847 -k1,18548:8064083,20949703:3277 -h1,18548:10881055,20949703:0,411205,112570 -) -k1,18548:11058696,20949703:174364 -k1,18548:12622423,20949703:174364 -k1,18548:16708631,20949703:174364 -k1,18548:19727258,20949703:174364 -k1,18548:23639795,20949703:174363 -k1,18548:24918441,20949703:174364 -k1,18548:25840571,20949703:174364 -k1,18548:27300751,20949703:174364 -k1,18548:29169876,20949703:174364 -k1,18548:29960278,20949703:174364 -k1,18548:32583029,20949703:0 -) -(1,18549:6797234,21791191:25785795,513147,134348 -k1,18548:8608524,21791191:193206 -k1,18548:9947954,21791191:193205 -(1,18548:9947954,21791191:0,452978,115847 -r1,18578:11361355,21791191:1413401,568825,115847 -k1,18548:9947954,21791191:-1413401 -) -(1,18548:9947954,21791191:1413401,452978,115847 -k1,18548:9947954,21791191:3277 -h1,18548:11358078,21791191:0,411205,112570 -) -k1,18548:11728231,21791191:193206 -k1,18548:13515273,21791191:193206 -k1,18548:15685700,21791191:193206 -k1,18548:17576943,21791191:193205 -k1,18548:20356855,21791191:193206 -k1,18548:21944012,21791191:193206 -k1,18548:24670839,21791191:193205 -k1,18548:26471643,21791191:193206 -k1,18548:27196346,21791191:193206 -k1,18548:28040980,21791191:193206 -k1,18548:29326670,21791191:193205 -k1,18548:31289348,21791191:193206 -k1,18549:32583029,21791191:0 -) -(1,18549:6797234,22632679:25785795,505283,134348 -k1,18548:9497771,22632679:215412 -k1,18548:11803781,22632679:215412 -k1,18548:15814382,22632679:215412 -k1,18548:17915264,22632679:215411 -k1,18548:19122236,22632679:215412 -k1,18548:22535150,22632679:215412 -k1,18548:23436724,22632679:215412 -k1,18548:26468218,22632679:215412 -k1,18548:27299668,22632679:215412 -k1,18548:28534164,22632679:215411 -k1,18548:30530189,22632679:215412 -k1,18548:31144060,22632679:215412 -k1,18548:32010900,22632679:215412 -k1,18548:32583029,22632679:0 -) -(1,18549:6797234,23474167:25785795,513147,134348 -k1,18548:9367088,23474167:210558 -k1,18548:10229073,23474167:210557 -k1,18548:11458716,23474167:210558 -k1,18548:15344533,23474167:210558 -k1,18548:16214383,23474167:210558 -k1,18548:17444025,23474167:210557 -k1,18548:19284463,23474167:210558 -k1,18548:20154313,23474167:210558 -k1,18548:21383955,23474167:210557 -k1,18548:23938736,23474167:210558 -k1,18548:27051228,23474167:210558 -k1,18548:28655737,23474167:210558 -k1,18548:30740624,23474167:210557 -k1,18548:31563944,23474167:210558 -k1,18548:32583029,23474167:0 -) -(1,18549:6797234,24315655:25785795,513147,7863 -g1,18548:8752828,24315655 -g1,18548:10026192,24315655 -k1,18549:32583028,24315655:20316160 -g1,18549:32583028,24315655 -) -(1,18551:6797234,25157143:25785795,505283,138281 -h1,18550:6797234,25157143:983040,0,0 -k1,18550:10700535,25157143:385328 -k1,18550:13914396,25157143:385328 -k1,18550:17452007,25157143:385329 -$1,18550:17452007,25157143 -$1,18550:17954668,25157143 -k1,18550:18339996,25157143:385328 -k1,18550:19916769,25157143:385328 -$1,18550:19916769,25157143 -$1,18550:20468582,25157143 -k1,18550:20853910,25157143:385328 -k1,18550:24977412,25157143:385328 -k1,18550:25978779,25157143:385329 -(1,18550:25978779,25157143:0,452978,115847 -r1,18578:28799028,25157143:2820249,568825,115847 -k1,18550:25978779,25157143:-2820249 -) -(1,18550:25978779,25157143:2820249,452978,115847 -k1,18550:25978779,25157143:3277 -h1,18550:28795751,25157143:0,411205,112570 -) -k1,18550:29184356,25157143:385328 -k1,18550:30959047,25157143:385328 -k1,18551:32583029,25157143:0 -) -(1,18551:6797234,25998631:25785795,505283,134348 -k1,18550:9719757,25998631:421669 -k1,18550:11332872,25998631:421670 -k1,18550:14223938,25998631:421669 -k1,18550:16620862,25998631:421669 -k1,18550:17693959,25998631:421669 -k1,18550:18863395,25998631:421670 -k1,18550:21583412,25998631:421669 -k1,18550:22656509,25998631:421669 -k1,18550:24056631,25998631:421669 -k1,18550:26767474,25998631:421670 -k1,18550:28392384,25998631:421669 -k1,18550:32095441,25998631:421669 -k1,18550:32583029,25998631:0 -) -(1,18551:6797234,26840119:25785795,505283,134348 -k1,18550:9205464,26840119:456568 -k1,18550:11995113,26840119:456567 -k1,18550:15063946,26840119:456568 -k1,18550:16052010,26840119:456567 -k1,18550:19359394,26840119:456568 -k1,18550:20577489,26840119:456567 -k1,18550:23614209,26840119:456568 -k1,18550:27118200,26840119:456568 -k1,18550:30133293,26840119:456567 -k1,18551:32583029,26840119:0 -) -(1,18551:6797234,27681607:25785795,513147,134348 -k1,18550:8029697,27681607:412607 -(1,18550:8029697,27681607:0,414482,115847 -r1,18578:9443098,27681607:1413401,530329,115847 -k1,18550:8029697,27681607:-1413401 -) -(1,18550:8029697,27681607:1413401,414482,115847 -k1,18550:8029697,27681607:3277 -h1,18550:9439821,27681607:0,411205,112570 -) -k1,18550:9855704,27681607:412606 -k1,18550:11459756,27681607:412607 -(1,18550:11459756,27681607:0,414482,115847 -r1,18578:12873157,27681607:1413401,530329,115847 -k1,18550:11459756,27681607:-1413401 -) -(1,18550:11459756,27681607:1413401,414482,115847 -k1,18550:11459756,27681607:3277 -h1,18550:12869880,27681607:0,411205,112570 -) -k1,18550:13285763,27681607:412606 -k1,18550:14889815,27681607:412607 -k1,18550:18742406,27681607:412606 -k1,18550:20439519,27681607:412607 -k1,18550:23378538,27681607:412606 -k1,18550:25603871,27681607:412607 -k1,18550:26760966,27681607:412606 -k1,18550:28192658,27681607:412607 -k1,18550:30030672,27681607:412606 -k1,18550:31102571,27681607:412607 -k1,18551:32583029,27681607:0 -) -(1,18551:6797234,28523095:25785795,505283,134348 -k1,18550:8176568,28523095:215415 -(1,18550:8176568,28523095:0,452978,122846 -r1,18578:13458799,28523095:5282231,575824,122846 -k1,18550:8176568,28523095:-5282231 -) -(1,18550:8176568,28523095:5282231,452978,122846 -k1,18550:8176568,28523095:3277 -h1,18550:13455522,28523095:0,411205,112570 -) -k1,18550:13847883,28523095:215414 -(1,18550:13847883,28523095:0,452978,122846 -r1,18578:19481826,28523095:5633943,575824,122846 -k1,18550:13847883,28523095:-5633943 -) -(1,18550:13847883,28523095:5633943,452978,122846 -k1,18550:13847883,28523095:3277 -h1,18550:19478549,28523095:0,411205,112570 -) -k1,18550:19870911,28523095:215415 -(1,18550:19870911,28523095:0,452978,122846 -r1,18578:25504854,28523095:5633943,575824,122846 -k1,18550:19870911,28523095:-5633943 -) -(1,18550:19870911,28523095:5633943,452978,122846 -k1,18550:19870911,28523095:3277 -h1,18550:25501577,28523095:0,411205,112570 -) -k1,18550:25893938,28523095:215414 -(1,18550:25893938,28523095:0,452978,122846 -r1,18578:31176169,28523095:5282231,575824,122846 -k1,18550:25893938,28523095:-5282231 -) -(1,18550:25893938,28523095:5282231,452978,122846 -k1,18550:25893938,28523095:3277 -h1,18550:31172892,28523095:0,411205,112570 -) -k1,18550:31391584,28523095:215415 -k1,18551:32583029,28523095:0 -) -(1,18551:6797234,29364583:25785795,513147,134348 -(1,18550:6797234,29364583:0,452978,122846 -r1,18578:12079465,29364583:5282231,575824,122846 -k1,18550:6797234,29364583:-5282231 -) -(1,18550:6797234,29364583:5282231,452978,122846 -k1,18550:6797234,29364583:3277 -h1,18550:12076188,29364583:0,411205,112570 -) -k1,18550:12437485,29364583:184350 -k1,18550:14496164,29364583:184349 -k1,18550:18120499,29364583:184350 -k1,18550:19296409,29364583:184350 -k1,18550:21457979,29364583:184349 -k1,18550:22589980,29364583:184350 -k1,18550:26214315,29364583:184350 -k1,18550:28006263,29364583:184350 -k1,18550:29382057,29364583:184349 -k1,18550:31753999,29364583:184350 -k1,18551:32583029,29364583:0 -) -(1,18551:6797234,30206071:25785795,505283,134348 -k1,18550:8237661,30206071:175582 -k1,18550:9026004,30206071:175581 -k1,18550:12146119,30206071:175582 -k1,18550:14680997,30206071:175582 -k1,18550:15508006,30206071:175581 -k1,18550:16702673,30206071:175582 -k1,18550:19402702,30206071:175582 -k1,18550:20925703,30206071:175581 -k1,18550:22385791,30206071:175582 -k1,18550:24788942,30206071:175582 -k1,18550:27093788,30206071:175581 -k1,18550:30550102,30206071:175582 -k1,18550:32583029,30206071:0 -) -(1,18551:6797234,31047559:25785795,513147,134348 -k1,18550:9757748,31047559:198171 -k1,18550:11737187,31047559:198170 -k1,18550:12618243,31047559:198171 -k1,18550:14849341,31047559:198171 -k1,18550:17121725,31047559:198170 -k1,18550:19017934,31047559:198171 -k1,18550:20951498,31047559:198171 -k1,18550:23038417,31047559:198171 -k1,18550:24630538,31047559:198170 -k1,18550:26076515,31047559:198171 -k1,18550:27527079,31047559:198171 -k1,18550:29713611,31047559:198170 -k1,18550:31648486,31047559:198171 -k1,18551:32583029,31047559:0 -) -(1,18551:6797234,31889047:25785795,513147,126483 -k1,18550:9737233,31889047:154064 -k1,18550:11271485,31889047:154064 -k1,18550:13855624,31889047:154064 -k1,18550:16692733,31889047:154065 -k1,18550:17462835,31889047:154064 -k1,18550:18635984,31889047:154064 -k1,18550:21659214,31889047:154064 -k1,18550:23778703,31889047:154064 -k1,18550:24584195,31889047:154064 -k1,18550:27500603,31889047:154065 -k1,18550:29728881,31889047:154064 -k1,18550:31074390,31889047:154064 -k1,18550:32583029,31889047:0 -) -(1,18551:6797234,32730535:25785795,473825,126483 -k1,18551:32583029,32730535:22667592 -g1,18551:32583029,32730535 -) -v1,18553:6797234,33921001:0,393216,0 -(1,18559:6797234,35574745:25785795,2046960,196608 -g1,18559:6797234,35574745 -g1,18559:6797234,35574745 -g1,18559:6600626,35574745 -(1,18559:6600626,35574745:0,2046960,196608 -r1,18578:32779637,35574745:26179011,2243568,196608 -k1,18559:6600625,35574745:-26179012 -) -(1,18559:6600626,35574745:26179011,2046960,196608 -[1,18559:6797234,35574745:25785795,1850352,0 -(1,18555:6797234,34134911:25785795,410518,107478 -(1,18554:6797234,34134911:0,0,0 -g1,18554:6797234,34134911 -g1,18554:6797234,34134911 -g1,18554:6469554,34134911 -(1,18554:6469554,34134911:0,0,0 -) -g1,18554:6797234,34134911 -) -k1,18555:6797234,34134911:0 -g1,18555:10590983,34134911 -g1,18555:11223275,34134911 -g1,18555:13752441,34134911 -g1,18555:15649316,34134911 -g1,18555:16281608,34134911 -g1,18555:18178483,34134911 -g1,18555:18810775,34134911 -g1,18555:19443067,34134911 -g1,18555:21023796,34134911 -g1,18555:22920670,34134911 -g1,18555:23552962,34134911 -g1,18555:27979002,34134911 -h1,18555:28295148,34134911:0,0,0 -k1,18555:32583029,34134911:4287881 -g1,18555:32583029,34134911 -) -(1,18556:6797234,34801089:25785795,404226,107478 -h1,18556:6797234,34801089:0,0,0 -g1,18556:7113380,34801089 -g1,18556:7429526,34801089 -g1,18556:11539420,34801089 -h1,18556:11855566,34801089:0,0,0 -k1,18556:32583030,34801089:20727464 -g1,18556:32583030,34801089 -) -(1,18557:6797234,35467267:25785795,404226,107478 -h1,18557:6797234,35467267:0,0,0 -g1,18557:7113380,35467267 -g1,18557:7429526,35467267 -g1,18557:13752441,35467267 -g1,18557:14384733,35467267 -g1,18557:15965462,35467267 -g1,18557:17546191,35467267 -g1,18557:18178483,35467267 -g1,18557:19759212,35467267 -g1,18557:21656086,35467267 -g1,18557:22288378,35467267 -g1,18557:23236815,35467267 -g1,18557:25765981,35467267 -g1,18557:27662855,35467267 -g1,18557:28295147,35467267 -h1,18557:30824313,35467267:0,0,0 -k1,18557:32583029,35467267:1758716 -g1,18557:32583029,35467267 -) -] -) -g1,18559:32583029,35574745 -g1,18559:6797234,35574745 -g1,18559:6797234,35574745 -g1,18559:32583029,35574745 -g1,18559:32583029,35574745 -) -h1,18559:6797234,35771353:0,0,0 -(1,18562:6797234,45386521:25785795,9025344,0 -k1,18562:10665143,45386521:3867909 -h1,18561:10665143,45386521:0,0,0 -(1,18561:10665143,45386521:18049977,9025344,0 -(1,18561:10665143,45386521:18050733,9025366,0 -(1,18561:10665143,45386521:18050733,9025366,0 -(1,18561:10665143,45386521:0,9025366,0 -(1,18561:10665143,45386521:0,14208860,0 -(1,18561:10665143,45386521:28417720,14208860,0 -) -k1,18561:10665143,45386521:-28417720 -) -) -g1,18561:28715876,45386521 -) -) -) -g1,18562:28715120,45386521 -k1,18562:32583029,45386521:3867909 -) -] -g1,18568:32583029,45386521 -) -h1,18568:6630773,45386521:0,0,0 +v1,18543:6630773,6254097:0,393216,0 +(1,18544:6630773,9994757:25952256,4133876,0 +g1,18544:6630773,9994757 +g1,18544:6237557,9994757 +r1,18578:6368629,9994757:131072,4133876,0 +g1,18544:6567858,9994757 +g1,18544:6764466,9994757 +[1,18544:6764466,9994757:25818563,4133876,0 +(1,18544:6764466,6526574:25818563,665693,196608 +(1,18543:6764466,6526574:0,665693,196608 +r1,18578:8010564,6526574:1246098,862301,196608 +k1,18543:6764466,6526574:-1246098 +) +(1,18543:6764466,6526574:1246098,665693,196608 +) +k1,18543:8248329,6526574:237765 +k1,18543:9974547,6526574:327680 +k1,18543:11509924,6526574:237764 +k1,18543:13141640,6526574:237765 +k1,18543:14398490,6526574:237765 +k1,18543:18038883,6526574:237764 +k1,18543:18928076,6526574:237765 +k1,18543:20184926,6526574:237765 +k1,18543:23185033,6526574:237764 +k1,18543:27033832,6526574:237765 +k1,18543:28463042,6526574:237765 +k1,18543:30094757,6526574:237764 +k1,18543:31351607,6526574:237765 +k1,18544:32583029,6526574:0 +) +(1,18544:6764466,7391654:25818563,513147,134348 +k1,18543:9069717,7391654:267081 +k1,18543:9988226,7391654:267081 +k1,18543:11233760,7391654:267081 +k1,18543:12271544,7391654:267081 +k1,18543:13863763,7391654:267081 +k1,18543:14790136,7391654:267081 +k1,18543:16605833,7391654:267081 +k1,18543:17977196,7391654:267081 +k1,18543:18992042,7391654:267080 +k1,18543:20836575,7391654:267081 +k1,18543:22497607,7391654:267081 +k1,18543:24577414,7391654:267081 +k1,18543:25886517,7391654:267081 +k1,18543:28988685,7391654:267081 +k1,18543:30348251,7391654:267081 +k1,18543:32583029,7391654:0 +) +(1,18544:6764466,8256734:25818563,505283,134348 +k1,18543:9140474,8256734:236257 +k1,18543:10875539,8256734:236257 +k1,18543:12303242,8256734:236258 +k1,18543:15158318,8256734:236257 +k1,18543:16413660,8256734:236257 +k1,18543:19258250,8256734:236257 +k1,18543:20219335,8256734:236257 +k1,18543:21740098,8256734:236257 +k1,18543:22332216,8256734:236258 +k1,18543:24999203,8256734:236257 +k1,18543:29560836,8256734:236257 +k1,18543:32051532,8256734:236257 +k1,18543:32583029,8256734:0 +) +(1,18544:6764466,9121814:25818563,513147,134348 +k1,18543:9746259,9121814:175541 +k1,18543:11175505,9121814:175542 +k1,18543:12687980,9121814:175541 +k1,18543:14149338,9121814:175542 +k1,18543:15231242,9121814:175541 +k1,18543:18214346,9121814:175542 +k1,18543:19408972,9121814:175541 +(1,18543:19408972,9121814:0,459977,115847 +r1,18578:20822373,9121814:1413401,575824,115847 +k1,18543:19408972,9121814:-1413401 +) +(1,18543:19408972,9121814:1413401,459977,115847 +k1,18543:19408972,9121814:3277 +h1,18543:20819096,9121814:0,411205,112570 +) +k1,18543:20997915,9121814:175542 +k1,18543:22364901,9121814:175541 +(1,18543:22364901,9121814:0,452978,115847 +r1,18578:24130014,9121814:1765113,568825,115847 +k1,18543:22364901,9121814:-1765113 +) +(1,18543:22364901,9121814:1765113,452978,115847 +k1,18543:22364901,9121814:3277 +h1,18543:24126737,9121814:0,411205,112570 +) +k1,18543:24305556,9121814:175542 +k1,18543:27545561,9121814:175541 +k1,18543:28372531,9121814:175542 +k1,18543:30772364,9121814:175541 +k1,18543:31563944,9121814:175542 +k1,18543:32583029,9121814:0 +) +(1,18544:6764466,9986894:25818563,505283,7863 +k1,18544:32583028,9986894:24255528 +g1,18544:32583028,9986894 +) +] +g1,18544:32583029,9994757 +) +h1,18544:6630773,9994757:0,0,0 +(1,18547:6630773,10859837:25952256,513147,126483 +h1,18546:6630773,10859837:983040,0,0 +k1,18546:8434338,10859837:342768 +k1,18546:9796191,10859837:342768 +k1,18546:13419691,10859837:342768 +(1,18546:13419691,10859837:0,452978,115847 +r1,18578:17998499,10859837:4578808,568825,115847 +k1,18546:13419691,10859837:-4578808 +) +(1,18546:13419691,10859837:4578808,452978,115847 +k1,18546:13419691,10859837:3277 +h1,18546:17995222,10859837:0,411205,112570 +) +k1,18546:18341267,10859837:342768 +k1,18546:19351192,10859837:342769 +(1,18546:19351192,10859837:0,452978,122846 +r1,18578:23226576,10859837:3875384,575824,122846 +k1,18546:19351192,10859837:-3875384 +) +(1,18546:19351192,10859837:3875384,452978,122846 +k1,18546:19351192,10859837:3277 +h1,18546:23223299,10859837:0,411205,112570 +) +k1,18546:23569344,10859837:342768 +k1,18546:24443609,10859837:342768 +k1,18546:25720920,10859837:342768 +k1,18546:26715116,10859837:342768 +(1,18546:26715116,10859837:0,414482,115847 +r1,18578:28128517,10859837:1413401,530329,115847 +k1,18546:26715116,10859837:-1413401 +) +(1,18546:26715116,10859837:1413401,414482,115847 +k1,18546:26715116,10859837:3277 +h1,18546:28125240,10859837:0,411205,112570 +) +k1,18546:28644955,10859837:342768 +k1,18546:30213902,10859837:342768 +k1,18546:32583029,10859837:0 +) +(1,18547:6630773,11724917:25952256,505283,134348 +k1,18546:8152399,11724917:389164 +k1,18546:9289330,11724917:389165 +k1,18546:12176071,11724917:389164 +k1,18546:13326764,11724917:389165 +k1,18546:17589106,11724917:389164 +k1,18546:18997356,11724917:389165 +k1,18546:20612699,11724917:389164 +k1,18546:22286370,11724917:389165 +k1,18546:24631784,11724917:389164 +k1,18546:28122768,11724917:389165 +k1,18546:30881059,11724917:389164 +k1,18546:32583029,11724917:0 +) +(1,18547:6630773,12589997:25952256,513147,126483 +k1,18546:8231098,12589997:200476 +k1,18546:11404286,12589997:200475 +k1,18546:14268801,12589997:200476 +k1,18546:15136432,12589997:200475 +(1,18546:15136432,12589997:0,452978,122846 +r1,18578:19011816,12589997:3875384,575824,122846 +k1,18546:15136432,12589997:-3875384 +) +(1,18546:15136432,12589997:3875384,452978,122846 +k1,18546:15136432,12589997:3277 +h1,18546:19008539,12589997:0,411205,112570 +) +k1,18546:19212292,12589997:200476 +k1,18546:20604212,12589997:200475 +(1,18546:20604212,12589997:0,452978,122846 +r1,18578:24831308,12589997:4227096,575824,122846 +k1,18546:20604212,12589997:-4227096 +) +(1,18546:20604212,12589997:4227096,452978,122846 +k1,18546:20604212,12589997:3277 +h1,18546:24828031,12589997:0,411205,112570 +) +k1,18546:25205454,12589997:200476 +(1,18546:25205454,12589997:0,452978,122846 +r1,18578:31191109,12589997:5985655,575824,122846 +k1,18546:25205454,12589997:-5985655 +) +(1,18546:25205454,12589997:5985655,452978,122846 +k1,18546:25205454,12589997:3277 +h1,18546:31187832,12589997:0,411205,112570 +) +k1,18546:31391584,12589997:200475 +k1,18547:32583029,12589997:0 +) +(1,18547:6630773,13455077:25952256,505283,134348 +(1,18546:6630773,13455077:0,452978,122846 +r1,18578:12968140,13455077:6337367,575824,122846 +k1,18546:6630773,13455077:-6337367 +) +(1,18546:6630773,13455077:6337367,452978,122846 +k1,18546:6630773,13455077:3277 +h1,18546:12964863,13455077:0,411205,112570 +) +k1,18546:13452774,13455077:310964 +k1,18546:14755298,13455077:310964 +k1,18546:17850231,13455077:310964 +k1,18546:18777233,13455077:310964 +k1,18546:21668349,13455077:310964 +k1,18546:24917291,13455077:310964 +k1,18546:27102585,13455077:310964 +k1,18546:30853534,13455077:310964 +k1,18546:32583029,13455077:0 +) +(1,18547:6630773,14320157:25952256,505283,134348 +k1,18546:9513404,14320157:183203 +k1,18546:10458134,14320157:183202 +k1,18546:14958194,14320157:183203 +k1,18546:19381576,14320157:183203 +k1,18546:20583864,14320157:183203 +k1,18546:21993245,14320157:183202 +k1,18546:22859333,14320157:183203 +k1,18546:25060390,14320157:183203 +k1,18546:27205086,14320157:183203 +k1,18546:28800589,14320157:183202 +k1,18546:30002877,14320157:183203 +k1,18546:32583029,14320157:0 +) +(1,18547:6630773,15185237:25952256,513147,134348 +k1,18546:11655775,15185237:198931 +k1,18546:12802358,15185237:198932 +k1,18546:15118757,15185237:198931 +k1,18546:15976980,15185237:198931 +k1,18546:17506293,15185237:198932 +k1,18546:18356652,15185237:198931 +k1,18546:20843446,15185237:198932 +k1,18546:22061462,15185237:198931 +k1,18546:25277671,15185237:198931 +k1,18546:28160302,15185237:198932 +k1,18546:29550678,15185237:198931 +k1,18546:32583029,15185237:0 +) +(1,18547:6630773,16050317:25952256,513147,134348 +k1,18546:8024865,16050317:202647 +k1,18546:9246596,16050317:202646 +k1,18546:12745049,16050317:202647 +k1,18546:13606987,16050317:202646 +k1,18546:14828719,16050317:202647 +k1,18546:18052575,16050317:202646 +k1,18546:20459198,16050317:202647 +k1,18546:21680929,16050317:202646 +k1,18546:23727759,16050317:202647 +k1,18546:24581833,16050317:202646 +k1,18546:25803565,16050317:202647 +k1,18546:28620442,16050317:202646 +k1,18546:29482381,16050317:202647 +k1,18546:31193666,16050317:202646 +k1,18546:32583029,16050317:0 +) +(1,18547:6630773,16915397:25952256,505283,126483 +k1,18546:10732423,16915397:189806 +k1,18546:12972196,16915397:189807 +k1,18546:13928118,16915397:189806 +k1,18546:17292489,16915397:189807 +k1,18546:20776790,16915397:189806 +k1,18546:21728125,16915397:189807 +(1,18546:21728125,16915397:0,452978,122846 +r1,18578:25603509,16915397:3875384,575824,122846 +k1,18546:21728125,16915397:-3875384 +) +(1,18546:21728125,16915397:3875384,452978,122846 +k1,18546:21728125,16915397:3277 +h1,18546:25600232,16915397:0,411205,112570 +) +k1,18546:25793315,16915397:189806 +k1,18546:27174567,16915397:189807 +(1,18546:27174567,16915397:0,452978,122846 +r1,18578:31401663,16915397:4227096,575824,122846 +k1,18546:27174567,16915397:-4227096 +) +(1,18546:27174567,16915397:4227096,452978,122846 +k1,18546:27174567,16915397:3277 +h1,18546:31398386,16915397:0,411205,112570 +) +k1,18546:31591469,16915397:189806 +k1,18546:32583029,16915397:0 +) +(1,18547:6630773,17780477:25952256,505283,134348 +k1,18546:10136294,17780477:211026 +k1,18546:11108848,17780477:211026 +k1,18546:12338959,17780477:211026 +k1,18546:15462405,17780477:211026 +k1,18546:18511140,17780477:211026 +k1,18546:21656867,17780477:211025 +k1,18546:23562654,17780477:211026 +k1,18546:25058186,17780477:211026 +k1,18546:25625072,17780477:211026 +k1,18546:28527006,17780477:211026 +k1,18546:31563944,17780477:211026 +k1,18546:32583029,17780477:0 +) +(1,18547:6630773,18645557:25952256,513147,134348 +k1,18546:8357740,18645557:213085 +k1,18546:9253711,18645557:213086 +k1,18546:10692975,18645557:213085 +k1,18546:11557489,18645557:213086 +k1,18546:12558972,18645557:213085 +k1,18546:14974068,18645557:213086 +k1,18546:17049031,18645557:213085 +k1,18546:19493617,18645557:213085 +k1,18546:23002509,18645557:213086 +k1,18546:23874886,18645557:213085 +k1,18546:25784699,18645557:213086 +k1,18546:29018994,18645557:213085 +k1,18546:30336362,18645557:213086 +k1,18546:31835263,18645557:213085 +k1,18546:32583029,18645557:0 +) +(1,18547:6630773,19510637:25952256,505283,134348 +g1,18546:10091073,19510637 +g1,18546:11684253,19510637 +g1,18546:15058046,19510637 +g1,18546:15940160,19510637 +k1,18547:32583029,19510637:13066569 +g1,18547:32583029,19510637 +) +v1,18549:6630773,20195492:0,393216,0 +(1,18558:6630773,23960450:25952256,4158174,196608 +g1,18558:6630773,23960450 +g1,18558:6630773,23960450 +g1,18558:6434165,23960450 +(1,18558:6434165,23960450:0,4158174,196608 +r1,18578:32779637,23960450:26345472,4354782,196608 +k1,18558:6434165,23960450:-26345472 +) +(1,18558:6434165,23960450:26345472,4158174,196608 +[1,18558:6630773,23960450:25952256,3961566,0 +(1,18551:6630773,20423323:25952256,424439,112852 +(1,18550:6630773,20423323:0,0,0 +g1,18550:6630773,20423323 +g1,18550:6630773,20423323 +g1,18550:6303093,20423323 +(1,18550:6303093,20423323:0,0,0 +) +g1,18550:6630773,20423323 +) +k1,18551:6630773,20423323:0 +g1,18551:10614221,20423323 +g1,18551:11278129,20423323 +k1,18551:11278129,20423323:0 +h1,18551:13601807,20423323:0,0,0 +k1,18551:32583029,20423323:18981222 +g1,18551:32583029,20423323 +) +(1,18552:6630773,21108178:25952256,431045,112852 +h1,18552:6630773,21108178:0,0,0 +g1,18552:6962727,21108178 +g1,18552:7294681,21108178 +g1,18552:7626635,21108178 +g1,18552:7958589,21108178 +g1,18552:8290543,21108178 +g1,18552:8622497,21108178 +g1,18552:8954451,21108178 +g1,18552:10946175,21108178 +g1,18552:11610083,21108178 +g1,18552:13601807,21108178 +g1,18552:14265715,21108178 +g1,18552:14929623,21108178 +g1,18552:16589393,21108178 +g1,18552:18581117,21108178 +g1,18552:19245025,21108178 +g1,18552:23560427,21108178 +g1,18552:25220197,21108178 +g1,18552:25884105,21108178 +g1,18552:27211921,21108178 +g1,18552:29203645,21108178 +g1,18552:29867553,21108178 +g1,18552:31859277,21108178 +h1,18552:32191231,21108178:0,0,0 +k1,18552:32583029,21108178:391798 +g1,18552:32583029,21108178 +) +(1,18553:6630773,21793033:25952256,424439,79822 +h1,18553:6630773,21793033:0,0,0 +g1,18553:6962727,21793033 +g1,18553:7294681,21793033 +g1,18553:11610082,21793033 +h1,18553:11942036,21793033:0,0,0 +k1,18553:32583028,21793033:20640992 +g1,18553:32583028,21793033 +) +(1,18554:6630773,22477888:25952256,424439,112852 +h1,18554:6630773,22477888:0,0,0 +g1,18554:6962727,22477888 +g1,18554:7294681,22477888 +g1,18554:12937898,22477888 +g1,18554:13601806,22477888 +g1,18554:15261576,22477888 +h1,18554:15593530,22477888:0,0,0 +k1,18554:32583030,22477888:16989500 +g1,18554:32583030,22477888 +) +(1,18555:6630773,23162743:25952256,424439,112852 +h1,18555:6630773,23162743:0,0,0 +g1,18555:6962727,23162743 +g1,18555:7294681,23162743 +g1,18555:14597668,23162743 +g1,18555:15261576,23162743 +g1,18555:18249162,23162743 +g1,18555:19908932,23162743 +g1,18555:20572840,23162743 +k1,18555:20572840,23162743:0 +h1,18555:21236748,23162743:0,0,0 +k1,18555:32583029,23162743:11346281 +g1,18555:32583029,23162743 +) +(1,18556:6630773,23847598:25952256,424439,112852 +h1,18556:6630773,23847598:0,0,0 +g1,18556:6962727,23847598 +g1,18556:7294681,23847598 +g1,18556:7626635,23847598 +g1,18556:7958589,23847598 +g1,18556:8290543,23847598 +g1,18556:8622497,23847598 +g1,18556:8954451,23847598 +g1,18556:9286405,23847598 +g1,18556:9618359,23847598 +g1,18556:9950313,23847598 +g1,18556:10282267,23847598 +g1,18556:10614221,23847598 +g1,18556:10946175,23847598 +g1,18556:11278129,23847598 +g1,18556:11610083,23847598 +g1,18556:11942037,23847598 +g1,18556:12273991,23847598 +g1,18556:12605945,23847598 +g1,18556:18913070,23847598 +g1,18556:19576978,23847598 +g1,18556:21236748,23847598 +g1,18556:25884103,23847598 +g1,18556:26548011,23847598 +h1,18556:27875827,23847598:0,0,0 +k1,18556:32583029,23847598:4707202 +g1,18556:32583029,23847598 +) +] +) +g1,18558:32583029,23960450 +g1,18558:6630773,23960450 +g1,18558:6630773,23960450 +g1,18558:32583029,23960450 +g1,18558:32583029,23960450 +) +h1,18558:6630773,24157058:0,0,0 +(1,18561:6630773,33306260:25952256,9083666,0 +k1,18561:10523651,33306260:3892878 +h1,18560:10523651,33306260:0,0,0 +(1,18560:10523651,33306260:18166500,9083666,0 +(1,18560:10523651,33306260:18167376,9083688,0 +(1,18560:10523651,33306260:18167376,9083688,0 +(1,18560:10523651,33306260:0,9083688,0 +(1,18560:10523651,33306260:0,14208860,0 +(1,18560:10523651,33306260:28417720,14208860,0 +) +k1,18560:10523651,33306260:-28417720 +) +) +g1,18560:28691027,33306260 +) +) +) +g1,18561:28690151,33306260 +k1,18561:32583029,33306260:3892878 +) +(1,18570:6630773,35423078:25952256,555811,12975 +(1,18570:6630773,35423078:2450326,534184,12975 +g1,18570:6630773,35423078 +g1,18570:9081099,35423078 +) +g1,18570:10708162,35423078 +k1,18570:32583030,35423078:19728040 +g1,18570:32583030,35423078 +) +(1,18575:6630773,36681374:25952256,513147,134348 +k1,18574:8030638,36681374:203178 +k1,18574:10760229,36681374:203178 +k1,18574:11911059,36681374:203179 +k1,18574:13995120,36681374:203178 +k1,18574:14814336,36681374:203178 +k1,18574:17846047,36681374:203178 +k1,18574:18580722,36681374:203178 +k1,18574:21540344,36681374:203178 +k1,18574:22394951,36681374:203179 +(1,18574:22394951,36681374:0,452978,115847 +r1,18578:29084029,36681374:6689078,568825,115847 +k1,18574:22394951,36681374:-6689078 +) +(1,18574:22394951,36681374:6689078,452978,115847 +k1,18574:22394951,36681374:3277 +h1,18574:29080752,36681374:0,411205,112570 +) +k1,18574:29287207,36681374:203178 +k1,18574:31375856,36681374:203178 +k1,18574:32583029,36681374:0 +) +(1,18575:6630773,37546454:25952256,513147,134348 +k1,18574:9700900,37546454:213413 +k1,18574:10565742,37546454:213414 +k1,18574:11526921,37546454:213413 +k1,18574:13253560,37546454:213413 +k1,18574:14414624,37546454:213413 +k1,18574:16362776,37546454:213414 +k1,18574:20366791,37546454:213413 +k1,18574:23419224,37546454:213413 +k1,18574:24284066,37546454:213414 +k1,18574:25245245,37546454:213413 +k1,18574:26477743,37546454:213413 +k1,18574:28344629,37546454:213413 +k1,18574:29174081,37546454:213414 +k1,18574:30839116,37546454:213413 +k1,18574:32583029,37546454:0 +) +(1,18575:6630773,38411534:25952256,513147,134348 +k1,18574:7524129,38411534:234064 +k1,18574:8114054,38411534:234065 +k1,18574:9625415,38411534:234064 +k1,18574:11085659,38411534:234065 +k1,18574:12412208,38411534:234064 +k1,18574:13305564,38411534:234064 +k1,18574:17330231,38411534:234065 +k1,18574:18095792,38411534:234064 +k1,18574:21419879,38411534:234064 +k1,18574:22269982,38411534:234065 +k1,18574:24782733,38411534:234064 +h1,18574:26151780,38411534:0,0,0 +k1,18574:26766609,38411534:234065 +k1,18574:29535606,38411534:234064 +k1,18574:32583029,38411534:0 +) +(1,18575:6630773,39276614:25952256,505283,134348 +k1,18574:9568731,39276614:177582 +k1,18574:11812664,39276614:177583 +k1,18574:13274752,39276614:177582 +k1,18574:15428245,39276614:177583 +(1,18574:15428245,39276614:0,452978,122846 +r1,18578:19303629,39276614:3875384,575824,122846 +k1,18574:15428245,39276614:-3875384 +) +(1,18574:15428245,39276614:3875384,452978,122846 +k1,18574:15428245,39276614:3277 +h1,18574:19300352,39276614:0,411205,112570 +) +k1,18574:19481211,39276614:177582 +k1,18574:20274831,39276614:177582 +k1,18574:22916568,39276614:177583 +k1,18574:23745578,39276614:177582 +k1,18574:24942246,39276614:177583 +k1,18574:28184292,39276614:177582 +k1,18574:30048772,39276614:177583 +k1,18574:31298523,39276614:177582 +k1,18574:32583029,39276614:0 +) +(1,18575:6630773,40141694:25952256,505283,126483 +k1,18574:9541829,40141694:142815 +k1,18574:10336072,40141694:142815 +(1,18574:10336072,40141694:0,459977,122846 +r1,18578:13508032,40141694:3171960,582823,122846 +k1,18574:10336072,40141694:-3171960 +) +(1,18574:10336072,40141694:3171960,459977,122846 +k1,18574:10336072,40141694:3277 +h1,18574:13504755,40141694:0,411205,112570 +) +k1,18574:13824518,40141694:142816 +k1,18574:16038271,40141694:142815 +k1,18574:17465592,40141694:142815 +k1,18574:18627492,40141694:142815 +k1,18574:21153197,40141694:142816 +k1,18574:21912050,40141694:142815 +(1,18574:21912050,40141694:0,452978,115847 +r1,18578:23325451,40141694:1413401,568825,115847 +k1,18574:21912050,40141694:-1413401 +) +(1,18574:21912050,40141694:1413401,452978,115847 +k1,18574:21912050,40141694:3277 +h1,18574:23322174,40141694:0,411205,112570 +) +k1,18574:23468266,40141694:142815 +k1,18574:26196476,40141694:142815 +k1,18574:26990720,40141694:142816 +k1,18574:28152620,40141694:142815 +(1,18574:28152620,40141694:0,452978,115847 +r1,18578:29917733,40141694:1765113,568825,115847 +k1,18574:28152620,40141694:-1765113 +) +(1,18574:28152620,40141694:1765113,452978,115847 +k1,18574:28152620,40141694:3277 +h1,18574:29914456,40141694:0,411205,112570 +) +k1,18574:30060548,40141694:142815 +k1,18575:32583029,40141694:0 +) +(1,18575:6630773,41006774:25952256,513147,134348 +k1,18574:7630251,41006774:134403 +k1,18574:8756215,41006774:134404 +k1,18574:10214445,41006774:134403 +k1,18574:11008141,41006774:134404 +k1,18574:13432372,41006774:134403 +k1,18574:16928772,41006774:134403 +k1,18574:19734423,41006774:134404 +k1,18574:21849324,41006774:134403 +k1,18574:22643020,41006774:134404 +k1,18574:26758080,41006774:134403 +k1,18574:28844146,41006774:134404 +k1,18574:30420996,41006774:134403 +k1,18574:32583029,41006774:0 +) +(1,18575:6630773,41871854:25952256,505283,134348 +k1,18574:9338032,41871854:225411 +k1,18574:11395829,41871854:225410 +k1,18574:15128727,41871854:225411 +k1,18574:16345697,41871854:225410 +k1,18574:19481562,41871854:225411 +k1,18574:22664613,41871854:225411 +(1,18574:22664613,41871854:0,452978,122846 +r1,18578:26891709,41871854:4227096,575824,122846 +k1,18574:22664613,41871854:-4227096 +) +(1,18574:22664613,41871854:4227096,452978,122846 +k1,18574:22664613,41871854:3277 +h1,18574:26888432,41871854:0,411205,112570 +) +k1,18574:27290789,41871854:225410 +(1,18574:27290789,41871854:0,452978,122846 +r1,18578:31166173,41871854:3875384,575824,122846 +k1,18574:27290789,41871854:-3875384 +) +(1,18574:27290789,41871854:3875384,452978,122846 +k1,18574:27290789,41871854:3277 +h1,18574:31162896,41871854:0,411205,112570 +) +k1,18574:31391584,41871854:225411 +k1,18575:32583029,41871854:0 +) +(1,18575:6630773,42736934:25952256,452978,122846 +(1,18574:6630773,42736934:0,452978,122846 +r1,18578:10506157,42736934:3875384,575824,122846 +k1,18574:6630773,42736934:-3875384 +) +(1,18574:6630773,42736934:3875384,452978,122846 +k1,18574:6630773,42736934:3277 +h1,18574:10502880,42736934:0,411205,112570 +) +k1,18575:32583029,42736934:21903202 +g1,18575:32583029,42736934 +) +v1,18577:6630773,43602014:0,393216,0 +(1,18578:6630773,44962619:25952256,1753821,0 +g1,18578:6630773,44962619 +g1,18578:6237557,44962619 +r1,18578:6368629,44962619:131072,1753821,0 +g1,18578:6567858,44962619 +g1,18578:6764466,44962619 +[1,18578:6764466,44962619:25818563,1753821,0 +(1,18578:6764466,43963191:25818563,754393,260573 +(1,18577:6764466,43963191:0,754393,260573 +r1,18578:8010564,43963191:1246098,1014966,260573 +k1,18577:6764466,43963191:-1246098 +) +(1,18577:6764466,43963191:1246098,754393,260573 +) +k1,18577:8172428,43963191:161864 +k1,18577:8500108,43963191:327680 +k1,18577:10462246,43963191:161864 +k1,18577:11908617,43963191:161865 +(1,18577:11908617,43963191:0,452978,122846 +r1,18578:16135713,43963191:4227096,575824,122846 +k1,18577:11908617,43963191:-4227096 +) +(1,18577:11908617,43963191:4227096,452978,122846 +k1,18577:11908617,43963191:3277 +h1,18577:16132436,43963191:0,411205,112570 +) +k1,18577:16471247,43963191:161864 +(1,18577:16471247,43963191:0,452978,122846 +r1,18578:20346631,43963191:3875384,575824,122846 +k1,18577:16471247,43963191:-3875384 +) +(1,18577:16471247,43963191:3875384,452978,122846 +k1,18577:16471247,43963191:3277 +h1,18577:20343354,43963191:0,411205,112570 +) +k1,18577:20508495,43963191:161864 +k1,18577:21861804,43963191:161864 +(1,18577:21861804,43963191:0,452978,122846 +r1,18578:25737188,43963191:3875384,575824,122846 +k1,18577:21861804,43963191:-3875384 +) +(1,18577:21861804,43963191:3875384,452978,122846 +k1,18577:21861804,43963191:3277 +h1,18577:25733911,43963191:0,411205,112570 +) +k1,18577:25899052,43963191:161864 +k1,18577:27193378,43963191:161864 +k1,18577:29201392,43963191:161865 +k1,18577:30455741,43963191:161864 +k1,18577:30973465,43963191:161864 +k1,18578:32583029,43963191:0 +) +(1,18578:6764466,44828271:25818563,513147,134348 +k1,18577:8436196,44828271:260740 +k1,18577:11589694,44828271:260739 +k1,18577:13418055,44828271:260740 +k1,18577:14697880,44828271:260740 +k1,18577:16841468,44828271:260739 +k1,18577:18553175,44828271:260740 +k1,18577:19575443,44828271:260740 +k1,18577:22101762,44828271:260739 +k1,18577:23742690,44828271:260740 +k1,18577:24818697,44828271:260739 +k1,18577:26145708,44828271:260740 +k1,18577:28531125,44828271:260740 +k1,18577:29423631,44828271:260739 +k1,18577:31563944,44828271:260740 +k1,18577:32583029,44828271:0 +) +] +g1,18578:32583029,44962619 +) ] (1,18578:32583029,45706769:0,0,0 g1,18578:32583029,45706769 @@ -320246,8 +316202,10 @@ g1,18578:-473656,-710413 ] ) ] -!19906 -}328 +!25893 +}309 +Input:2885:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2886:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2887:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2888:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2889:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -320259,792 +316217,1071 @@ Input:2894:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConso Input:2895:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2896:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2897:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1046 -{329 -[1,18619:4262630,47279633:28320399,43253760,0 -(1,18619:4262630,4025873:0,0,0 -[1,18619:-473656,4025873:0,0,0 -(1,18619:-473656,-710413:0,0,0 -(1,18619:-473656,-644877:0,0,0 -k1,18619:-473656,-644877:-65536 +Input:2898:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2899:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1422 +{310 +[1,18634:4262630,47279633:28320399,43253760,0 +(1,18634:4262630,4025873:0,0,0 +[1,18634:-473656,4025873:0,0,0 +(1,18634:-473656,-710413:0,0,0 +(1,18634:-473656,-644877:0,0,0 +k1,18634:-473656,-644877:-65536 ) -(1,18619:-473656,4736287:0,0,0 -k1,18619:-473656,4736287:5209943 +(1,18634:-473656,4736287:0,0,0 +k1,18634:-473656,4736287:5209943 ) -g1,18619:-473656,-710413 +g1,18634:-473656,-710413 ) ] ) -[1,18619:6630773,47279633:25952256,43253760,0 -[1,18619:6630773,4812305:25952256,786432,0 -(1,18619:6630773,4812305:25952256,513147,126483 -(1,18619:6630773,4812305:25952256,513147,126483 -g1,18619:3078558,4812305 -[1,18619:3078558,4812305:0,0,0 -(1,18619:3078558,2439708:0,1703936,0 -k1,18619:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,18619:2537886,2439708:1179648,16384,0 +[1,18634:6630773,47279633:25952256,43253760,0 +[1,18634:6630773,4812305:25952256,786432,0 +(1,18634:6630773,4812305:25952256,485622,11795 +(1,18634:6630773,4812305:25952256,485622,11795 +g1,18634:3078558,4812305 +[1,18634:3078558,4812305:0,0,0 +(1,18634:3078558,2439708:0,1703936,0 +k1,18634:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,18634:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,18619:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,18634:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,18619:3078558,4812305:0,0,0 -(1,18619:3078558,2439708:0,1703936,0 -g1,18619:29030814,2439708 -g1,18619:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,18619:36151628,1915420:16384,1179648,0 +[1,18634:3078558,4812305:0,0,0 +(1,18634:3078558,2439708:0,1703936,0 +g1,18634:29030814,2439708 +g1,18634:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,18634:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,18619:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,18634:37855564,2439708:1179648,16384,0 ) ) -k1,18619:3078556,2439708:-34777008 +k1,18634:3078556,2439708:-34777008 ) ] -[1,18619:3078558,4812305:0,0,0 -(1,18619:3078558,49800853:0,16384,2228224 -k1,18619:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,18619:2537886,49800853:1179648,16384,0 +[1,18634:3078558,4812305:0,0,0 +(1,18634:3078558,49800853:0,16384,2228224 +k1,18634:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,18634:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,18619:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,18634:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,18619:3078558,4812305:0,0,0 -(1,18619:3078558,49800853:0,16384,2228224 -g1,18619:29030814,49800853 -g1,18619:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,18619:36151628,51504789:16384,1179648,0 +[1,18634:3078558,4812305:0,0,0 +(1,18634:3078558,49800853:0,16384,2228224 +g1,18634:29030814,49800853 +g1,18634:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,18634:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,18619:37855564,49800853:1179648,16384,0 -) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,18634:37855564,49800853:1179648,16384,0 ) -k1,18619:3078556,49800853:-34777008 ) -] -g1,18619:6630773,4812305 -k1,18619:21350816,4812305:13524666 -g1,18619:21999622,4812305 -g1,18619:25611966,4812305 -g1,18619:28956923,4812305 -g1,18619:29772190,4812305 -) -) -] -[1,18619:6630773,45706769:25952256,40108032,0 -(1,18619:6630773,45706769:25952256,40108032,0 -(1,18619:6630773,45706769:0,0,0 -g1,18619:6630773,45706769 -) -[1,18619:6630773,45706769:25952256,40108032,0 -(1,18574:6630773,6254097:25952256,32768,229376 -(1,18574:6630773,6254097:0,32768,229376 -(1,18574:6630773,6254097:5505024,32768,229376 -r1,18619:12135797,6254097:5505024,262144,229376 -) -k1,18574:6630773,6254097:-5505024 -) -(1,18574:6630773,6254097:25952256,32768,0 -r1,18619:32583029,6254097:25952256,32768,0 -) -) -(1,18574:6630773,7858425:25952256,606339,14155 -(1,18574:6630773,7858425:1974731,582746,14155 -g1,18574:6630773,7858425 -g1,18574:8605504,7858425 -) -k1,18574:32583028,7858425:20424424 -g1,18574:32583028,7858425 -) -(1,18578:6630773,9093129:25952256,513147,134348 -k1,18577:8826834,9093129:154615 -k1,18577:11583227,9093129:154614 -k1,18577:13560398,9093129:154615 -k1,18577:16543545,9093129:154614 -k1,18577:19531281,9093129:154615 -k1,18577:20143993,9093129:154615 -k1,18577:20830104,9093129:154614 -k1,18577:24194017,9093129:154615 -k1,18577:25000060,9093129:154615 -k1,18577:26629889,9093129:154614 -k1,18577:28314770,9093129:154615 -k1,18577:29799765,9093129:154614 -k1,18577:30973465,9093129:154615 -k1,18578:32583029,9093129:0 -) -(1,18578:6630773,9934617:25952256,513147,134348 -k1,18577:8194960,9934617:153197 -k1,18577:9007450,9934617:153198 -k1,18577:11384939,9934617:153197 -k1,18577:12189565,9934617:153198 -k1,18577:15407226,9934617:153197 -k1,18577:17660853,9934617:153198 -k1,18577:19597285,9934617:153197 -k1,18577:20106342,9934617:153197 -k1,18577:22327201,9934617:153198 -k1,18577:23428049,9934617:153197 -k1,18577:26416334,9934617:153198 -k1,18577:27101028,9934617:153197 -k1,18577:29839621,9934617:153198 -k1,18577:30644246,9934617:153197 -(1,18577:30644246,9934617:0,452978,115847 -r1,18619:32409359,9934617:1765113,568825,115847 -k1,18577:30644246,9934617:-1765113 -) -(1,18577:30644246,9934617:1765113,452978,115847 -k1,18577:30644246,9934617:3277 -h1,18577:32406082,9934617:0,411205,112570 -) -k1,18577:32583029,9934617:0 -) -(1,18578:6630773,10776105:25952256,513147,134348 -k1,18577:7283465,10776105:194595 -k1,18577:9737741,10776105:194595 -k1,18577:10288196,10776105:194595 -k1,18577:11765987,10776105:194596 -k1,18577:15017181,10776105:194595 -k1,18577:16605727,10776105:194595 -k1,18577:17819407,10776105:194595 -k1,18577:22085754,10776105:194595 -k1,18577:25251751,10776105:194595 -k1,18577:25802206,10776105:194595 -k1,18577:27691563,10776105:194596 -k1,18577:29348266,10776105:194595 -k1,18577:30202153,10776105:194595 -k1,18577:31415833,10776105:194595 -k1,18578:32583029,10776105:0 -) -(1,18578:6630773,11617593:25952256,513147,134348 -k1,18577:7924922,11617593:180692 -k1,18577:12729179,11617593:180692 -k1,18577:13561299,11617593:180692 -k1,18577:14097851,11617593:180692 -k1,18577:16344893,11617593:180692 -k1,18577:18070924,11617593:180692 -k1,18577:20934005,11617593:180692 -k1,18577:23525767,11617593:180692 -k1,18577:24515829,11617593:180692 -k1,18577:25715606,11617593:180692 -k1,18577:27285661,11617593:180692 -k1,18577:28414004,11617593:180692 -k1,18577:30046318,11617593:180692 -k1,18577:30886302,11617593:180692 -k1,18577:32583029,11617593:0 -) -(1,18578:6630773,12459081:25952256,513147,134348 -k1,18577:9043317,12459081:189563 -k1,18577:12675486,12459081:189563 -k1,18577:15865943,12459081:189563 -k1,18577:16411365,12459081:189562 -k1,18577:19591336,12459081:189563 -k1,18577:20728550,12459081:189563 -k1,18577:22369735,12459081:189563 -k1,18577:24625648,12459081:189563 -k1,18577:25762861,12459081:189562 -k1,18577:28787511,12459081:189563 -k1,18577:29996159,12459081:189563 -k1,18577:31923737,12459081:189563 -k1,18577:32583029,12459081:0 -) -(1,18578:6630773,13300569:25952256,505283,134348 -g1,18577:7849087,13300569 -g1,18577:12120068,13300569 -g1,18577:12935335,13300569 -g1,18577:13490424,13300569 -k1,18578:32583030,13300569:17026256 -g1,18578:32583030,13300569 -) -(1,18579:6630773,15391829:25952256,555811,12975 -(1,18579:6630773,15391829:2450326,534184,12975 -g1,18579:6630773,15391829 -g1,18579:9081099,15391829 -) -k1,18579:32583029,15391829:19939262 -g1,18579:32583029,15391829 -) -(1,18583:6630773,16626533:25952256,513147,138281 -k1,18582:7405177,16626533:146569 -k1,18582:10217751,16626533:146569 -k1,18582:11015749,16626533:146570 -k1,18582:13686765,16626533:146569 -k1,18582:15222697,16626533:146569 -k1,18582:16936887,16626533:146569 -k1,18582:17439317,16626533:146570 -k1,18582:18975249,16626533:146569 -k1,18582:20998114,16626533:146569 -k1,18582:22538634,16626533:146569 -k1,18582:25526845,16626533:146570 -k1,18582:26324842,16626533:146569 -k1,18582:27867983,16626533:146569 -k1,18582:28665980,16626533:146569 -$1,18582:28665980,16626533 -$1,18582:29168641,16626533 -k1,18582:29315211,16626533:146570 -k1,18582:30653225,16626533:146569 -$1,18582:30653225,16626533 -$1,18582:31205038,16626533 -k1,18582:31351607,16626533:146569 -k1,18583:32583029,16626533:0 -) -(1,18583:6630773,17468021:25952256,505283,126483 -k1,18582:8996011,17468021:176336 -k1,18582:9630445,17468021:176337 -k1,18582:10338278,17468021:176336 -k1,18582:13144575,17468021:176337 -k1,18582:13972339,17468021:176336 -k1,18582:15623891,17468021:176337 -k1,18582:17175828,17468021:176336 -k1,18582:17708025,17468021:176337 -k1,18582:20395701,17468021:176336 -k1,18582:23157433,17468021:176337 -k1,18582:23985197,17468021:176336 -$1,18582:23985197,17468021 -$1,18582:24487858,17468021 -k1,18582:24664195,17468021:176337 -k1,18582:26031976,17468021:176336 -k1,18582:27300798,17468021:176337 -(1,18582:27300798,17468021:0,459977,115847 -r1,18619:32583029,17468021:5282231,575824,115847 -k1,18582:27300798,17468021:-5282231 -) -(1,18582:27300798,17468021:5282231,459977,115847 -k1,18582:27300798,17468021:3277 -h1,18582:32579752,17468021:0,411205,112570 -) -k1,18582:32583029,17468021:0 -) -(1,18583:6630773,18309509:25952256,513147,138281 -k1,18582:7439408,18309509:157207 -k1,18582:10384517,18309509:157207 -k1,18582:11560809,18309509:157207 -k1,18582:13728661,18309509:157207 -k1,18582:14537296,18309509:157207 -k1,18582:15442269,18309509:157207 -k1,18582:18184870,18309509:157206 -k1,18582:18993505,18309509:157207 -$1,18582:18993505,18309509 -$1,18582:19545318,18309509 -k1,18582:19702525,18309509:157207 -k1,18582:21595125,18309509:157207 -k1,18582:22523035,18309509:157207 -k1,18582:23095043,18309509:157165 -k1,18582:26121416,18309509:157207 -k1,18582:27659467,18309509:157207 -k1,18582:29876471,18309509:157207 -k1,18582:31052763,18309509:157207 -k1,18582:32583029,18309509:0 -) -(1,18583:6630773,19150997:25952256,513147,134348 -k1,18582:7435695,19150997:153494 -k1,18582:10321386,19150997:153495 -k1,18582:11864243,19150997:153494 -k1,18582:15666783,19150997:153495 -k1,18582:16506440,19150997:153495 -k1,18582:18126630,19150997:153494 -k1,18582:19299209,19150997:153494 -k1,18582:21938485,19150997:153495 -k1,18582:22751272,19150997:153495 -k1,18582:24294129,19150997:153494 -k1,18582:26466133,19150997:153495 -k1,18582:27271055,19150997:153494 -k1,18582:28172315,19150997:153494 -k1,18582:31478747,19150997:153495 -k1,18582:32583029,19150997:0 -) -(1,18583:6630773,19992485:25952256,513147,134348 -k1,18582:7546879,19992485:168340 -k1,18582:8649762,19992485:168340 -k1,18582:9434141,19992485:168341 -(1,18582:9434141,19992485:0,459977,122846 -r1,18619:14716372,19992485:5282231,582823,122846 -k1,18582:9434141,19992485:-5282231 -) -(1,18582:9434141,19992485:5282231,459977,122846 -k1,18582:9434141,19992485:3277 -h1,18582:14713095,19992485:0,411205,112570 -) -k1,18582:15058382,19992485:168340 -k1,18582:16490256,19992485:168340 -k1,18582:17073409,19992485:168310 -k1,18582:20110915,19992485:168340 -k1,18582:21660099,19992485:168340 -k1,18582:24210018,19992485:168341 -k1,18582:25061243,19992485:168340 -k1,18582:26469524,19992485:168340 -k1,18582:27742146,19992485:168340 -k1,18582:28658252,19992485:168340 -k1,18582:30339819,19992485:168341 -k1,18582:31194321,19992485:168340 -k1,18582:32583029,19992485:0 -) -(1,18583:6630773,20833973:25952256,513147,134348 -k1,18582:7572525,20833973:255590 -k1,18582:8286212,20833973:255590 -k1,18582:9073300,20833973:255591 -k1,18582:12839654,20833973:255590 -k1,18582:14489195,20833973:255590 -k1,18582:15763870,20833973:255590 -k1,18582:18032726,20833973:255590 -k1,18582:18947609,20833973:255591 -k1,18582:20222284,20833973:255590 -k1,18582:23256601,20833973:255590 -k1,18582:25490068,20833973:255590 -k1,18582:27473187,20833973:255590 -k1,18582:28380206,20833973:255591 -k1,18582:29654881,20833973:255590 -k1,18582:31923737,20833973:255590 -k1,18582:32583029,20833973:0 -) -(1,18583:6630773,21675461:25952256,513147,134348 -k1,18582:7828833,21675461:178975 -k1,18582:9985686,21675461:178976 -k1,18582:12369948,21675461:178975 -k1,18582:13235085,21675461:178975 -k1,18582:14720193,21675461:178975 -k1,18582:17971497,21675461:178976 -k1,18582:18801900,21675461:178975 -k1,18582:19612642,21675461:178975 -k1,18582:20988305,21675461:178976 -k1,18582:23678620,21675461:178975 -k1,18582:26442990,21675461:178975 -k1,18582:27273393,21675461:178975 -(1,18582:27273393,21675461:0,414482,115847 -r1,18619:27631659,21675461:358266,530329,115847 -k1,18582:27273393,21675461:-358266 -) -(1,18582:27273393,21675461:358266,414482,115847 -k1,18582:27273393,21675461:3277 -h1,18582:27628382,21675461:0,411205,112570 -) -k1,18582:27810635,21675461:178976 -k1,18582:31563944,21675461:178975 -k1,18582:32583029,21675461:0 -) -(1,18583:6630773,22516949:25952256,513147,134348 -k1,18582:8770841,22516949:185784 -k1,18582:10148069,22516949:185783 -k1,18582:11352938,22516949:185784 -k1,18582:14611049,22516949:185783 -k1,18582:15448261,22516949:185784 -k1,18582:18914777,22516949:185784 -(1,18582:18914777,22516949:0,414482,115847 -r1,18619:19273043,22516949:358266,530329,115847 -k1,18582:18914777,22516949:-358266 -) -(1,18582:18914777,22516949:358266,414482,115847 -k1,18582:18914777,22516949:3277 -h1,18582:19269766,22516949:0,411205,112570 -) -k1,18582:19458826,22516949:185783 -k1,18582:20311766,22516949:185784 -(1,18582:20311766,22516949:0,459977,122846 -r1,18619:25593997,22516949:5282231,582823,122846 -k1,18582:20311766,22516949:-5282231 -) -(1,18582:20311766,22516949:5282231,459977,122846 -k1,18582:20311766,22516949:3277 -h1,18582:25590720,22516949:0,411205,112570 -) -k1,18582:25779781,22516949:185784 -k1,18582:26984649,22516949:185783 -k1,18582:29183699,22516949:185784 -k1,18582:30028774,22516949:185783 -k1,18582:31233643,22516949:185784 -k1,18583:32583029,22516949:0 -) -(1,18583:6630773,23358437:25952256,513147,134348 -k1,18582:8861968,23358437:214652 -k1,18582:11054496,23358437:214651 -k1,18582:12553654,23358437:214652 -k1,18582:13299802,23358437:214651 -k1,18582:15719741,23358437:214652 -k1,18582:16620555,23358437:214652 -k1,18582:18141339,23358437:214651 -k1,18582:21428319,23358437:214652 -k1,18582:22294398,23358437:214651 -(1,18582:22294398,23358437:0,459977,115847 -r1,18619:23356087,23358437:1061689,575824,115847 -k1,18582:22294398,23358437:-1061689 -) -(1,18582:22294398,23358437:1061689,459977,115847 -k1,18582:22294398,23358437:3277 -h1,18582:23352810,23358437:0,411205,112570 -) -k1,18582:23570739,23358437:214652 -k1,18582:25483429,23358437:214652 -k1,18582:26156177,23358437:214651 -k1,18582:26902326,23358437:214652 -k1,18582:28984753,23358437:214651 -k1,18582:29850833,23358437:214652 -k1,18582:32583029,23358437:0 -) -(1,18583:6630773,24199925:25952256,505283,138281 -g1,18582:7849087,24199925 -g1,18582:10058961,24199925 -g1,18582:10909618,24199925 -g1,18582:13489115,24199925 -g1,18582:14339772,24199925 -(1,18582:14339772,24199925:0,414482,115847 -r1,18619:14698038,24199925:358266,530329,115847 -k1,18582:14339772,24199925:-358266 -) -(1,18582:14339772,24199925:358266,414482,115847 -k1,18582:14339772,24199925:3277 -h1,18582:14694761,24199925:0,411205,112570 -) -g1,18582:15070937,24199925 -g1,18582:17144496,24199925 -g1,18582:18335285,24199925 -g1,18582:19553599,24199925 -$1,18582:19553599,24199925 -$1,18582:20056260,24199925 -g1,18582:20255489,24199925 -g1,18582:21646163,24199925 -$1,18582:21646163,24199925 -$1,18582:22197976,24199925 -g1,18582:22397205,24199925 -g1,18582:24607079,24199925 -g1,18582:27011595,24199925 -g1,18582:27862252,24199925 -g1,18582:29080566,24199925 -k1,18583:32583029,24199925:363289 -g1,18583:32583029,24199925 -) -(1,18585:6630773,25041413:25952256,513147,126483 -h1,18584:6630773,25041413:983040,0,0 -k1,18584:8738974,25041413:171612 -k1,18584:10398909,25041413:171612 -k1,18584:11964472,25041413:171612 -k1,18584:13155169,25041413:171612 -k1,18584:15682800,25041413:171612 -k1,18584:19635839,25041413:171612 -k1,18584:22676617,25041413:171612 -k1,18584:23801778,25041413:171612 -k1,18584:25175320,25041413:171612 -k1,18584:26156302,25041413:171612 -k1,18584:27346999,25041413:171612 -k1,18584:30114492,25041413:171612 -(1,18584:30114492,25041413:0,435480,115847 -r1,18619:32583029,25041413:2468537,551327,115847 -k1,18584:30114492,25041413:-2468537 -) -(1,18584:30114492,25041413:2468537,435480,115847 -g1,18584:30821193,25041413 -g1,18584:31524617,25041413 -h1,18584:32579752,25041413:0,411205,112570 -) -k1,18584:32583029,25041413:0 -) -(1,18585:6630773,25882901:25952256,505283,122846 -g1,18584:8021447,25882901 -(1,18584:8021447,25882901:0,452978,122846 -r1,18619:12600255,25882901:4578808,575824,122846 -k1,18584:8021447,25882901:-4578808 -) -(1,18584:8021447,25882901:4578808,452978,122846 -g1,18584:9783283,25882901 -g1,18584:10486707,25882901 -h1,18584:12596978,25882901:0,411205,112570 -) -k1,18585:32583029,25882901:19809104 -g1,18585:32583029,25882901 -) -v1,18587:6630773,27073367:0,393216,0 -(1,18592:6630773,28029476:25952256,1349325,196608 -g1,18592:6630773,28029476 -g1,18592:6630773,28029476 -g1,18592:6434165,28029476 -(1,18592:6434165,28029476:0,1349325,196608 -r1,18619:32779637,28029476:26345472,1545933,196608 -k1,18592:6434165,28029476:-26345472 -) -(1,18592:6434165,28029476:26345472,1349325,196608 -[1,18592:6630773,28029476:25952256,1152717,0 -(1,18589:6630773,27287277:25952256,410518,107478 -(1,18588:6630773,27287277:0,0,0 -g1,18588:6630773,27287277 -g1,18588:6630773,27287277 -g1,18588:6303093,27287277 -(1,18588:6303093,27287277:0,0,0 -) -g1,18588:6630773,27287277 -) -k1,18589:6630773,27287277:0 -g1,18589:12953688,27287277 -g1,18589:13585980,27287277 -g1,18589:15799002,27287277 -g1,18589:17695877,27287277 -g1,18589:18328169,27287277 -g1,18589:19592752,27287277 -h1,18589:19908898,27287277:0,0,0 -k1,18589:32583029,27287277:12674131 -g1,18589:32583029,27287277 -) -(1,18590:6630773,27953455:25952256,410518,76021 -h1,18590:6630773,27953455:0,0,0 -g1,18590:6946919,27953455 -g1,18590:7263065,27953455 -g1,18590:12953688,27953455 -g1,18590:13585980,27953455 -h1,18590:15482854,27953455:0,0,0 -k1,18590:32583030,27953455:17100176 -g1,18590:32583030,27953455 -) -] -) -g1,18592:32583029,28029476 -g1,18592:6630773,28029476 -g1,18592:6630773,28029476 -g1,18592:32583029,28029476 -g1,18592:32583029,28029476 -) -h1,18592:6630773,28226084:0,0,0 -(1,18595:6630773,37899574:25952256,9083666,0 -k1,18595:10523651,37899574:3892878 -h1,18594:10523651,37899574:0,0,0 -(1,18594:10523651,37899574:18166500,9083666,0 -(1,18594:10523651,37899574:18167376,9083688,0 -(1,18594:10523651,37899574:18167376,9083688,0 -(1,18594:10523651,37899574:0,9083688,0 -(1,18594:10523651,37899574:0,14208860,0 -(1,18594:10523651,37899574:28417720,14208860,0 -) -k1,18594:10523651,37899574:-28417720 -) -) -g1,18594:28691027,37899574 -) -) -) -g1,18595:28690151,37899574 -k1,18595:32583029,37899574:3892878 -) -(1,18602:6630773,38741062:25952256,505283,134348 -h1,18601:6630773,38741062:983040,0,0 -k1,18601:9645663,38741062:240096 -k1,18601:10241618,38741062:240095 -k1,18601:11475240,38741062:240096 -k1,18601:12583688,38741062:240096 -k1,18601:13928066,38741062:240096 -k1,18601:15634857,38741062:240095 -k1,18601:17312158,38741062:240096 -k1,18601:18313782,38741062:240096 -k1,18601:20291892,38741062:240095 -k1,18601:23758981,38741062:240096 -k1,18601:27401706,38741062:240096 -k1,18601:28293230,38741062:240096 -k1,18601:29625810,38741062:240095 -k1,18601:31563944,38741062:240096 -k1,18601:32583029,38741062:0 -) -(1,18602:6630773,39582550:25952256,513147,7863 -g1,18601:9525498,39582550 -g1,18601:10256224,39582550 -k1,18602:32583030,39582550:20285360 -g1,18602:32583030,39582550 -) -v1,18604:6630773,40773016:0,393216,0 -(1,18609:6630773,41760582:25952256,1380782,196608 -g1,18609:6630773,41760582 -g1,18609:6630773,41760582 -g1,18609:6434165,41760582 -(1,18609:6434165,41760582:0,1380782,196608 -r1,18619:32779637,41760582:26345472,1577390,196608 -k1,18609:6434165,41760582:-26345472 -) -(1,18609:6434165,41760582:26345472,1380782,196608 -[1,18609:6630773,41760582:25952256,1184174,0 -(1,18606:6630773,40986926:25952256,410518,107478 -(1,18605:6630773,40986926:0,0,0 -g1,18605:6630773,40986926 -g1,18605:6630773,40986926 -g1,18605:6303093,40986926 -(1,18605:6303093,40986926:0,0,0 -) -g1,18605:6630773,40986926 -) -k1,18606:6630773,40986926:0 -g1,18606:12953688,40986926 -g1,18606:13585980,40986926 -g1,18606:15799002,40986926 -g1,18606:17695877,40986926 -g1,18606:18328169,40986926 -g1,18606:19592752,40986926 -h1,18606:19908898,40986926:0,0,0 -k1,18606:32583029,40986926:12674131 -g1,18606:32583029,40986926 -) -(1,18607:6630773,41653104:25952256,410518,107478 -h1,18607:6630773,41653104:0,0,0 -g1,18607:6946919,41653104 -g1,18607:7263065,41653104 -g1,18607:12953688,41653104 -g1,18607:13585980,41653104 -g1,18607:15799000,41653104 -g1,18607:17379729,41653104 -g1,18607:18012021,41653104 -g1,18607:21173479,41653104 -g1,18607:21805771,41653104 -g1,18607:22754209,41653104 -g1,18607:23702646,41653104 -g1,18607:24334938,41653104 -h1,18607:25599520,41653104:0,0,0 -k1,18607:32583029,41653104:6983509 -g1,18607:32583029,41653104 -) -] -) -g1,18609:32583029,41760582 -g1,18609:6630773,41760582 -g1,18609:6630773,41760582 -g1,18609:32583029,41760582 -g1,18609:32583029,41760582 -) -h1,18609:6630773,41957190:0,0,0 -v1,18613:6630773,43847254:0,393216,0 -(1,18614:6630773,45237127:25952256,1783089,0 -g1,18614:6630773,45237127 -g1,18614:6303093,45237127 -r1,18619:6401397,45237127:98304,1783089,0 -g1,18614:6600626,45237127 -g1,18614:6797234,45237127 -[1,18614:6797234,45237127:25785795,1783089,0 -(1,18614:6797234,44279792:25785795,825754,196608 -(1,18613:6797234,44279792:0,825754,196608 -r1,18619:7890375,44279792:1093141,1022362,196608 -k1,18613:6797234,44279792:-1093141 -) -(1,18613:6797234,44279792:1093141,825754,196608 -) -k1,18613:8097469,44279792:207094 -k1,18613:9823687,44279792:327680 -k1,18613:11280552,44279792:207093 -k1,18613:12506731,44279792:207094 -k1,18613:14210012,44279792:207094 -k1,18613:16272430,44279792:207094 -k1,18613:17204351,44279792:207093 -k1,18613:18097607,44279792:207094 -k1,18613:18956129,44279792:207094 -k1,18613:20440520,44279792:207094 -k1,18613:21263651,44279792:207093 -k1,18613:22489830,44279792:207094 -k1,18613:24350397,44279792:207094 -k1,18613:26412815,44279792:207094 -k1,18613:28274692,44279792:207093 -k1,18613:30727049,44279792:207094 -k1,18613:32583029,44279792:0 -) -(1,18614:6797234,45121280:25785795,513147,115847 -g1,18613:7944114,45121280 -g1,18613:9798127,45121280 -g1,18613:12759699,45121280 -g1,18613:14969573,45121280 -g1,18613:16116453,45121280 -(1,18613:16116453,45121280:0,414482,115847 -r1,18619:17529854,45121280:1413401,530329,115847 -k1,18613:16116453,45121280:-1413401 -) -(1,18613:16116453,45121280:1413401,414482,115847 -k1,18613:16116453,45121280:3277 -h1,18613:17526577,45121280:0,411205,112570 -) -g1,18613:17729083,45121280 -g1,18613:18611197,45121280 -g1,18613:19758077,45121280 -g1,18613:21612090,45121280 -g1,18613:24573662,45121280 -g1,18613:26783536,45121280 -g1,18613:27930416,45121280 -(1,18613:27930416,45121280:0,452978,115847 -r1,18619:28640394,45121280:709978,568825,115847 -k1,18613:27930416,45121280:-709978 -) -(1,18613:27930416,45121280:709978,452978,115847 -k1,18613:27930416,45121280:3277 -h1,18613:28637117,45121280:0,411205,112570 -) -k1,18614:32583029,45121280:3768965 -g1,18614:32583029,45121280 -) -] -g1,18614:32583029,45237127 -) -h1,18614:6630773,45237127:0,0,0 -] -(1,18619:32583029,45706769:0,0,0 -g1,18619:32583029,45706769 -) -) -] -(1,18619:6630773,47279633:25952256,0,0 -h1,18619:6630773,47279633:25952256,0,0 -) -] -(1,18619:4262630,4025873:0,0,0 -[1,18619:-473656,4025873:0,0,0 -(1,18619:-473656,-710413:0,0,0 -(1,18619:-473656,-710413:0,0,0 -g1,18619:-473656,-710413 -) -g1,18619:-473656,-710413 -) -] +k1,18634:3078556,49800853:-34777008 ) ] -!22764 -}329 -Input:2898:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2899:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +g1,18634:6630773,4812305 +g1,18634:6630773,4812305 +g1,18634:10347975,4812305 +k1,18634:31387651,4812305:21039676 +) +) +] +[1,18634:6630773,45706769:25952256,40108032,0 +(1,18634:6630773,45706769:25952256,40108032,0 +(1,18634:6630773,45706769:0,0,0 +g1,18634:6630773,45706769 +) +[1,18634:6630773,45706769:25952256,40108032,0 +v1,18578:6630773,6254097:0,393216,0 +(1,18578:6630773,7365591:25952256,1504710,0 +g1,18578:6630773,7365591 +g1,18578:6237557,7365591 +r1,18634:6368629,7365591:131072,1504710,0 +g1,18578:6567858,7365591 +g1,18578:6764466,7365591 +[1,18578:6764466,7365591:25818563,1504710,0 +(1,18578:6764466,6374028:25818563,513147,134348 +k1,18577:9790864,6374028:218836 +k1,18577:12190082,6374028:218835 +k1,18577:13156684,6374028:218836 +k1,18577:16136551,6374028:218835 +k1,18577:17041549,6374028:218836 +k1,18577:18031088,6374028:218836 +k1,18577:21322251,6374028:218835 +k1,18577:22192515,6374028:218836 +k1,18577:24108077,6374028:218835 +k1,18577:27352710,6374028:218836 +k1,18577:28254430,6374028:218835 +k1,18577:29981905,6374028:218836 +k1,18578:32583029,6374028:0 +) +(1,18578:6764466,7239108:25818563,505283,126483 +g1,18577:7856295,7239108 +(1,18577:7856295,7239108:0,452978,115847 +r1,18634:11731679,7239108:3875384,568825,115847 +k1,18577:7856295,7239108:-3875384 +) +(1,18577:7856295,7239108:3875384,452978,115847 +k1,18577:7856295,7239108:3277 +h1,18577:11728402,7239108:0,411205,112570 +) +g1,18577:11930908,7239108 +g1,18577:15027484,7239108 +g1,18577:16161256,7239108 +g1,18577:17011913,7239108 +(1,18577:17011913,7239108:0,414482,115847 +r1,18634:18425314,7239108:1413401,530329,115847 +k1,18577:17011913,7239108:-1413401 +) +(1,18577:17011913,7239108:1413401,414482,115847 +k1,18577:17011913,7239108:3277 +h1,18577:18422037,7239108:0,411205,112570 +) +k1,18578:32583029,7239108:13984045 +g1,18578:32583029,7239108 +) +] +g1,18578:32583029,7365591 +) +h1,18578:6630773,7365591:0,0,0 +(1,18582:6630773,8230671:25952256,513147,134348 +h1,18581:6630773,8230671:983040,0,0 +k1,18581:9157076,8230671:346576 +k1,18581:12028098,8230671:346575 +k1,18581:13033966,8230671:346576 +k1,18581:15276498,8230671:346575 +k1,18581:16384602,8230671:346576 +k1,18581:19538739,8230671:346575 +k1,18581:20241175,8230671:346576 +k1,18581:21581276,8230671:346575 +k1,18581:22587144,8230671:346576 +k1,18581:24323082,8230671:346575 +k1,18581:26876255,8230671:346576 +k1,18581:27874258,8230671:346575 +k1,18581:29239919,8230671:346576 +(1,18581:29239919,8230671:0,452978,115847 +r1,18634:31005032,8230671:1765113,568825,115847 +k1,18581:29239919,8230671:-1765113 +) +(1,18581:29239919,8230671:1765113,452978,115847 +k1,18581:29239919,8230671:3277 +h1,18581:31001755,8230671:0,411205,112570 +) +k1,18581:31351607,8230671:346575 +k1,18582:32583029,8230671:0 +) +(1,18582:6630773,9095751:25952256,513147,134348 +k1,18581:8613950,9095751:222224 +k1,18581:9367671,9095751:222224 +k1,18581:11167348,9095751:222225 +k1,18581:12783523,9095751:222224 +(1,18581:12783523,9095751:0,452978,122846 +r1,18634:17010619,9095751:4227096,575824,122846 +k1,18581:12783523,9095751:-4227096 +) +(1,18581:12783523,9095751:4227096,452978,122846 +k1,18581:12783523,9095751:3277 +h1,18581:17007342,9095751:0,411205,112570 +) +k1,18581:17406513,9095751:222224 +k1,18581:21361668,9095751:222224 +k1,18581:25575035,9095751:222224 +k1,18581:26988704,9095751:222224 +k1,18581:28908311,9095751:222225 +k1,18581:30726992,9095751:222224 +k1,18581:31635378,9095751:222224 +k1,18582:32583029,9095751:0 +) +(1,18582:6630773,9960831:25952256,505283,134348 +(1,18581:6630773,9960831:0,452978,122846 +r1,18634:10506157,9960831:3875384,575824,122846 +k1,18581:6630773,9960831:-3875384 +) +(1,18581:6630773,9960831:3875384,452978,122846 +k1,18581:6630773,9960831:3277 +h1,18581:10502880,9960831:0,411205,112570 +) +k1,18581:10783135,9960831:276978 +k1,18581:12251557,9960831:276977 +k1,18581:13520095,9960831:276978 +k1,18581:16168820,9960831:276977 +k1,18581:17097226,9960831:276978 +k1,18581:18393289,9960831:276978 +k1,18581:20553115,9960831:276977 +k1,18581:22569419,9960831:276978 +k1,18581:24336685,9960831:276977 +(1,18581:24336685,9960831:0,452978,115847 +r1,18634:26453510,9960831:2116825,568825,115847 +k1,18581:24336685,9960831:-2116825 +) +(1,18581:24336685,9960831:2116825,452978,115847 +k1,18581:24336685,9960831:3277 +h1,18581:26450233,9960831:0,411205,112570 +) +k1,18581:26730488,9960831:276978 +k1,18581:29297293,9960831:276977 +k1,18581:30806348,9960831:276978 +k1,18582:32583029,9960831:0 +) +(1,18582:6630773,10825911:25952256,513147,134348 +k1,18581:10164201,10825911:271046 +k1,18581:11094539,10825911:271046 +k1,18581:13945737,10825911:271046 +k1,18581:16585909,10825911:271046 +k1,18581:17961237,10825911:271046 +k1,18581:20777702,10825911:271047 +k1,18581:21734910,10825911:271046 +k1,18581:25021267,10825911:271046 +k1,18581:26616140,10825911:271046 +k1,18581:27546478,10825911:271046 +k1,18581:29206887,10825911:271046 +k1,18581:31858201,10825911:271046 +k1,18581:32583029,10825911:0 +) +(1,18582:6630773,11690991:25952256,513147,134348 +k1,18581:8018637,11690991:184623 +k1,18581:11210708,11690991:184624 +k1,18581:14017426,11690991:184623 +k1,18581:15221134,11690991:184623 +k1,18581:16498243,11690991:184624 +k1,18581:17350022,11690991:184623 +(1,18581:17350022,11690991:0,452978,115847 +r1,18634:19466847,11690991:2116825,568825,115847 +k1,18581:17350022,11690991:-2116825 +) +(1,18581:17350022,11690991:2116825,452978,115847 +k1,18581:17350022,11690991:3277 +h1,18581:19463570,11690991:0,411205,112570 +) +k1,18581:19651470,11690991:184623 +k1,18581:22125922,11690991:184624 +k1,18581:22961973,11690991:184623 +k1,18581:24764026,11690991:184624 +k1,18581:25967734,11690991:184623 +k1,18581:27715391,11690991:184623 +k1,18581:29096702,11690991:184624 +k1,18581:31591469,11690991:184623 +k1,18581:32583029,11690991:0 +) +(1,18582:6630773,12556071:25952256,505283,134348 +k1,18581:9164976,12556071:184082 +k1,18581:10035220,12556071:184082 +k1,18581:11851148,12556071:184082 +(1,18581:11851148,12556071:0,452978,122846 +r1,18634:13264549,12556071:1413401,575824,122846 +k1,18581:11851148,12556071:-1413401 +) +(1,18581:11851148,12556071:1413401,452978,122846 +k1,18581:11851148,12556071:3277 +h1,18581:13261272,12556071:0,411205,112570 +) +k1,18581:13448631,12556071:184082 +k1,18581:16096211,12556071:184082 +k1,18581:19124556,12556071:184082 +k1,18581:19924676,12556071:184082 +k1,18581:20464618,12556071:184082 +k1,18581:21888641,12556071:184082 +k1,18581:23264168,12556071:184082 +k1,18581:25413675,12556071:184082 +k1,18581:26249185,12556071:184082 +k1,18581:27452352,12556071:184082 +(1,18581:27452352,12556071:0,452978,122846 +r1,18634:29569177,12556071:2116825,575824,122846 +k1,18581:27452352,12556071:-2116825 +) +(1,18581:27452352,12556071:2116825,452978,122846 +k1,18581:27452352,12556071:3277 +h1,18581:29565900,12556071:0,411205,112570 +) +k1,18581:29753259,12556071:184082 +k1,18581:31896867,12556071:184082 +k1,18581:32583029,12556071:0 +) +(1,18582:6630773,13421151:25952256,505283,126483 +g1,18581:7185862,13421151 +g1,18581:8668286,13421151 +k1,18582:32583029,13421151:22183282 +g1,18582:32583029,13421151 +) +(1,18584:6630773,14286231:25952256,513147,134348 +h1,18583:6630773,14286231:983040,0,0 +k1,18583:8803112,14286231:235750 +k1,18583:10344994,14286231:235749 +k1,18583:13312940,14286231:235750 +k1,18583:13904550,14286231:235750 +(1,18583:13904550,14286231:0,452978,115847 +r1,18634:16021375,14286231:2116825,568825,115847 +k1,18583:13904550,14286231:-2116825 +) +(1,18583:13904550,14286231:2116825,452978,115847 +k1,18583:13904550,14286231:3277 +h1,18583:16018098,14286231:0,411205,112570 +) +k1,18583:16257124,14286231:235749 +k1,18583:19854871,14286231:235750 +k1,18583:23598762,14286231:235749 +k1,18583:25402133,14286231:235750 +k1,18583:26656968,14286231:235750 +k1,18583:28455751,14286231:235749 +k1,18583:31896867,14286231:235750 +k1,18583:32583029,14286231:0 +) +(1,18584:6630773,15151311:25952256,505283,134348 +k1,18583:9845314,15151311:239862 +k1,18583:12454958,15151311:239862 +k1,18583:14280790,15151311:239861 +k1,18583:15723893,15151311:239862 +k1,18583:17775170,15151311:239862 +k1,18583:18631070,15151311:239862 +k1,18583:19226792,15151311:239862 +k1,18583:20633850,15151311:239862 +k1,18583:22065156,15151311:239861 +k1,18583:23922447,15151311:239862 +k1,18583:25365550,15151311:239862 +k1,18583:26598938,15151311:239862 +k1,18583:27524962,15151311:239862 +k1,18583:28120683,15151311:239861 +k1,18583:30743434,15151311:239862 +k1,18583:31599334,15151311:239862 +k1,18584:32583029,15151311:0 +) +(1,18584:6630773,16016391:25952256,513147,126483 +k1,18583:8539359,16016391:206616 +(1,18583:8539359,16016391:0,452978,115847 +r1,18634:10656184,16016391:2116825,568825,115847 +k1,18583:8539359,16016391:-2116825 +) +(1,18583:8539359,16016391:2116825,452978,115847 +k1,18583:8539359,16016391:3277 +h1,18583:10652907,16016391:0,411205,112570 +) +k1,18583:11036470,16016391:206616 +k1,18583:12072116,16016391:206616 +k1,18583:15888455,16016391:206616 +k1,18583:17471982,16016391:206616 +k1,18583:18546951,16016391:206617 +k1,18583:19846052,16016391:206616 +k1,18583:23078465,16016391:206616 +k1,18583:24852702,16016391:206616 +k1,18583:26078403,16016391:206616 +k1,18583:29493006,16016391:206616 +k1,18583:32583029,16016391:0 +) +(1,18584:6630773,16881471:25952256,505283,126483 +g1,18583:7446040,16881471 +g1,18583:10062892,16881471 +h1,18583:10461351,16881471:0,0,0 +k1,18584:32583029,16881471:21948008 +g1,18584:32583029,16881471 +) +v1,18586:6630773,17566326:0,393216,0 +(1,18596:6630773,21993017:25952256,4819907,196608 +g1,18596:6630773,21993017 +g1,18596:6630773,21993017 +g1,18596:6434165,21993017 +(1,18596:6434165,21993017:0,4819907,196608 +r1,18634:32779637,21993017:26345472,5016515,196608 +k1,18596:6434165,21993017:-26345472 +) +(1,18596:6434165,21993017:26345472,4819907,196608 +[1,18596:6630773,21993017:25952256,4623299,0 +(1,18588:6630773,17777641:25952256,407923,9908 +(1,18587:6630773,17777641:0,0,0 +g1,18587:6630773,17777641 +g1,18587:6630773,17777641 +g1,18587:6303093,17777641 +(1,18587:6303093,17777641:0,0,0 +) +g1,18587:6630773,17777641 +) +g1,18588:8954451,17777641 +k1,18588:8954451,17777641:0 +h1,18588:10282267,17777641:0,0,0 +k1,18588:32583029,17777641:22300762 +g1,18588:32583029,17777641 +) +(1,18589:6630773,18462496:25952256,424439,112852 +h1,18589:6630773,18462496:0,0,0 +g1,18589:6962727,18462496 +g1,18589:7294681,18462496 +g1,18589:11278128,18462496 +g1,18589:12937898,18462496 +k1,18589:12937898,18462496:0 +h1,18589:14265714,18462496:0,0,0 +k1,18589:32583030,18462496:18317316 +g1,18589:32583030,18462496 +) +(1,18590:6630773,19147351:25952256,424439,86428 +h1,18590:6630773,19147351:0,0,0 +g1,18590:6962727,19147351 +g1,18590:7294681,19147351 +k1,18590:7294681,19147351:0 +h1,18590:11278128,19147351:0,0,0 +k1,18590:32583028,19147351:21304900 +g1,18590:32583028,19147351 +) +(1,18591:6630773,19832206:25952256,431045,112852 +h1,18591:6630773,19832206:0,0,0 +g1,18591:6962727,19832206 +g1,18591:7294681,19832206 +g1,18591:7626635,19832206 +g1,18591:7958589,19832206 +g1,18591:8290543,19832206 +g1,18591:8622497,19832206 +g1,18591:8954451,19832206 +g1,18591:9286405,19832206 +g1,18591:9618359,19832206 +g1,18591:9950313,19832206 +g1,18591:10282267,19832206 +g1,18591:10614221,19832206 +g1,18591:12605945,19832206 +g1,18591:13933761,19832206 +g1,18591:14597669,19832206 +g1,18591:20240887,19832206 +g1,18591:22564565,19832206 +g1,18591:23228473,19832206 +k1,18591:23228473,19832206:0 +h1,18591:24224335,19832206:0,0,0 +k1,18591:32583029,19832206:8358694 +g1,18591:32583029,19832206 +) +(1,18592:6630773,20517061:25952256,431045,112852 +h1,18592:6630773,20517061:0,0,0 +g1,18592:6962727,20517061 +g1,18592:7294681,20517061 +g1,18592:7626635,20517061 +g1,18592:7958589,20517061 +g1,18592:8290543,20517061 +g1,18592:8622497,20517061 +g1,18592:8954451,20517061 +g1,18592:9286405,20517061 +g1,18592:9618359,20517061 +g1,18592:9950313,20517061 +g1,18592:10282267,20517061 +g1,18592:10614221,20517061 +g1,18592:12605945,20517061 +g1,18592:14597669,20517061 +g1,18592:15261577,20517061 +g1,18592:21568703,20517061 +g1,18592:23892381,20517061 +g1,18592:24556289,20517061 +k1,18592:24556289,20517061:0 +h1,18592:25552151,20517061:0,0,0 +k1,18592:32583029,20517061:7030878 +g1,18592:32583029,20517061 +) +(1,18593:6630773,21201916:25952256,431045,112852 +h1,18593:6630773,21201916:0,0,0 +g1,18593:6962727,21201916 +g1,18593:7294681,21201916 +g1,18593:7626635,21201916 +g1,18593:7958589,21201916 +g1,18593:8290543,21201916 +g1,18593:8622497,21201916 +g1,18593:8954451,21201916 +g1,18593:9286405,21201916 +g1,18593:9618359,21201916 +g1,18593:9950313,21201916 +g1,18593:10282267,21201916 +g1,18593:10614221,21201916 +g1,18593:12605945,21201916 +g1,18593:14265715,21201916 +g1,18593:14929623,21201916 +g1,18593:20904795,21201916 +g1,18593:23228473,21201916 +g1,18593:23892381,21201916 +g1,18593:25220197,21201916 +g1,18593:26216059,21201916 +h1,18593:28871690,21201916:0,0,0 +k1,18593:32583029,21201916:3711339 +g1,18593:32583029,21201916 +) +(1,18594:6630773,21886771:25952256,424439,106246 +h1,18594:6630773,21886771:0,0,0 +g1,18594:9618358,21886771 +g1,18594:10614220,21886771 +g1,18594:13601806,21886771 +g1,18594:14265714,21886771 +g1,18594:15925484,21886771 +g1,18594:16589392,21886771 +g1,18594:17253300,21886771 +g1,18594:18581116,21886771 +g1,18594:22564563,21886771 +g1,18594:23228471,21886771 +k1,18594:23228471,21886771:0 +h1,18594:28207780,21886771:0,0,0 +k1,18594:32583029,21886771:4375249 +g1,18594:32583029,21886771 +) +] +) +g1,18596:32583029,21993017 +g1,18596:6630773,21993017 +g1,18596:6630773,21993017 +g1,18596:32583029,21993017 +g1,18596:32583029,21993017 +) +h1,18596:6630773,22189625:0,0,0 +v1,18600:6630773,22874480:0,393216,0 +(1,18612:6630773,28667579:25952256,6186315,196608 +g1,18612:6630773,28667579 +g1,18612:6630773,28667579 +g1,18612:6434165,28667579 +(1,18612:6434165,28667579:0,6186315,196608 +r1,18634:32779637,28667579:26345472,6382923,196608 +k1,18612:6434165,28667579:-26345472 +) +(1,18612:6434165,28667579:26345472,6186315,196608 +[1,18612:6630773,28667579:25952256,5989707,0 +(1,18602:6630773,23102311:25952256,424439,112852 +(1,18601:6630773,23102311:0,0,0 +g1,18601:6630773,23102311 +g1,18601:6630773,23102311 +g1,18601:6303093,23102311 +(1,18601:6303093,23102311:0,0,0 +) +g1,18601:6630773,23102311 +) +k1,18602:6630773,23102311:0 +g1,18602:10614221,23102311 +g1,18602:11278129,23102311 +g1,18602:13933761,23102311 +g1,18602:15925485,23102311 +g1,18602:16589393,23102311 +g1,18602:18581117,23102311 +g1,18602:19245025,23102311 +g1,18602:19908933,23102311 +k1,18602:19908933,23102311:0 +h1,18602:21236749,23102311:0,0,0 +k1,18602:32583029,23102311:11346280 +g1,18602:32583029,23102311 +) +(1,18603:6630773,23787166:25952256,431045,106246 +h1,18603:6630773,23787166:0,0,0 +g1,18603:6962727,23787166 +g1,18603:7294681,23787166 +g1,18603:7626635,23787166 +g1,18603:7958589,23787166 +g1,18603:8290543,23787166 +g1,18603:8622497,23787166 +g1,18603:8954451,23787166 +g1,18603:9286405,23787166 +g1,18603:9618359,23787166 +g1,18603:9950313,23787166 +g1,18603:10282267,23787166 +g1,18603:10614221,23787166 +g1,18603:10946175,23787166 +g1,18603:11278129,23787166 +g1,18603:11610083,23787166 +g1,18603:11942037,23787166 +g1,18603:12273991,23787166 +g1,18603:12605945,23787166 +g1,18603:12937899,23787166 +g1,18603:13269853,23787166 +g1,18603:13601807,23787166 +g1,18603:13933761,23787166 +g1,18603:14265715,23787166 +g1,18603:14597669,23787166 +g1,18603:14929623,23787166 +g1,18603:15261577,23787166 +g1,18603:17253301,23787166 +g1,18603:17917209,23787166 +k1,18603:17917209,23787166:0 +h1,18603:21900657,23787166:0,0,0 +k1,18603:32583029,23787166:10682372 +g1,18603:32583029,23787166 +) +(1,18604:6630773,24472021:25952256,424439,86428 +h1,18604:6630773,24472021:0,0,0 +g1,18604:6962727,24472021 +g1,18604:7294681,24472021 +g1,18604:7626635,24472021 +g1,18604:7958589,24472021 +g1,18604:8290543,24472021 +g1,18604:8622497,24472021 +g1,18604:8954451,24472021 +g1,18604:9286405,24472021 +g1,18604:9618359,24472021 +g1,18604:9950313,24472021 +g1,18604:10282267,24472021 +g1,18604:10614221,24472021 +g1,18604:10946175,24472021 +g1,18604:11278129,24472021 +g1,18604:11610083,24472021 +g1,18604:11942037,24472021 +g1,18604:12273991,24472021 +g1,18604:12605945,24472021 +g1,18604:12937899,24472021 +g1,18604:13269853,24472021 +g1,18604:13601807,24472021 +g1,18604:13933761,24472021 +g1,18604:14265715,24472021 +g1,18604:14597669,24472021 +g1,18604:14929623,24472021 +g1,18604:15261577,24472021 +g1,18604:16921347,24472021 +g1,18604:17585255,24472021 +k1,18604:17585255,24472021:0 +h1,18604:18581117,24472021:0,0,0 +k1,18604:32583029,24472021:14001912 +g1,18604:32583029,24472021 +) +(1,18605:6630773,25156876:25952256,424439,106246 +h1,18605:6630773,25156876:0,0,0 +g1,18605:6962727,25156876 +g1,18605:7294681,25156876 +g1,18605:7626635,25156876 +g1,18605:7958589,25156876 +g1,18605:8290543,25156876 +g1,18605:8622497,25156876 +g1,18605:8954451,25156876 +g1,18605:9286405,25156876 +g1,18605:9618359,25156876 +g1,18605:9950313,25156876 +g1,18605:10282267,25156876 +g1,18605:10614221,25156876 +g1,18605:10946175,25156876 +g1,18605:11278129,25156876 +g1,18605:11610083,25156876 +g1,18605:11942037,25156876 +g1,18605:12273991,25156876 +g1,18605:12605945,25156876 +g1,18605:12937899,25156876 +g1,18605:13269853,25156876 +g1,18605:13601807,25156876 +g1,18605:13933761,25156876 +g1,18605:14265715,25156876 +g1,18605:14597669,25156876 +g1,18605:14929623,25156876 +g1,18605:15261577,25156876 +g1,18605:17253301,25156876 +g1,18605:17917209,25156876 +g1,18605:19908933,25156876 +h1,18605:20240887,25156876:0,0,0 +k1,18605:32583029,25156876:12342142 +g1,18605:32583029,25156876 +) +(1,18606:6630773,25841731:25952256,424439,79822 +h1,18606:6630773,25841731:0,0,0 +g1,18606:6962727,25841731 +g1,18606:7294681,25841731 +g1,18606:11610082,25841731 +h1,18606:11942036,25841731:0,0,0 +k1,18606:32583028,25841731:20640992 +g1,18606:32583028,25841731 +) +(1,18607:6630773,26526586:25952256,424439,112852 +h1,18607:6630773,26526586:0,0,0 +g1,18607:6962727,26526586 +g1,18607:7294681,26526586 +g1,18607:11610082,26526586 +h1,18607:11942036,26526586:0,0,0 +k1,18607:32583028,26526586:20640992 +g1,18607:32583028,26526586 +) +(1,18608:6630773,27211441:25952256,424439,112852 +h1,18608:6630773,27211441:0,0,0 +g1,18608:6962727,27211441 +g1,18608:7294681,27211441 +g1,18608:12605944,27211441 +g1,18608:13269852,27211441 +k1,18608:13269852,27211441:0 +h1,18608:16257437,27211441:0,0,0 +k1,18608:32583029,27211441:16325592 +g1,18608:32583029,27211441 +) +(1,18609:6630773,27896296:25952256,424439,106246 +h1,18609:6630773,27896296:0,0,0 +g1,18609:6962727,27896296 +g1,18609:7294681,27896296 +g1,18609:7626635,27896296 +g1,18609:7958589,27896296 +g1,18609:8290543,27896296 +g1,18609:8622497,27896296 +g1,18609:8954451,27896296 +g1,18609:9286405,27896296 +g1,18609:9618359,27896296 +g1,18609:9950313,27896296 +g1,18609:10282267,27896296 +g1,18609:10614221,27896296 +g1,18609:10946175,27896296 +g1,18609:12937899,27896296 +g1,18609:13601807,27896296 +g1,18609:14597669,27896296 +g1,18609:15261577,27896296 +g1,18609:15925485,27896296 +g1,18609:16921347,27896296 +g1,18609:18913071,27896296 +g1,18609:19576979,27896296 +k1,18609:19576979,27896296:0 +h1,18609:23892380,27896296:0,0,0 +k1,18609:32583029,27896296:8690649 +g1,18609:32583029,27896296 +) +(1,18610:6630773,28581151:25952256,424439,86428 +h1,18610:6630773,28581151:0,0,0 +g1,18610:6962727,28581151 +g1,18610:7294681,28581151 +g1,18610:7626635,28581151 +g1,18610:7958589,28581151 +g1,18610:8290543,28581151 +g1,18610:8622497,28581151 +g1,18610:8954451,28581151 +g1,18610:9286405,28581151 +g1,18610:9618359,28581151 +g1,18610:9950313,28581151 +g1,18610:10282267,28581151 +g1,18610:10614221,28581151 +g1,18610:10946175,28581151 +g1,18610:12937899,28581151 +g1,18610:13601807,28581151 +g1,18610:16589393,28581151 +g1,18610:18249163,28581151 +g1,18610:18913071,28581151 +h1,18610:19576979,28581151:0,0,0 +k1,18610:32583029,28581151:13006050 +g1,18610:32583029,28581151 +) +] +) +g1,18612:32583029,28667579 +g1,18612:6630773,28667579 +g1,18612:6630773,28667579 +g1,18612:32583029,28667579 +g1,18612:32583029,28667579 +) +h1,18612:6630773,28864187:0,0,0 +(1,18615:6630773,38013389:25952256,9083666,0 +k1,18615:10523651,38013389:3892878 +h1,18614:10523651,38013389:0,0,0 +(1,18614:10523651,38013389:18166500,9083666,0 +(1,18614:10523651,38013389:18167376,9083688,0 +(1,18614:10523651,38013389:18167376,9083688,0 +(1,18614:10523651,38013389:0,9083688,0 +(1,18614:10523651,38013389:0,14208860,0 +(1,18614:10523651,38013389:28417720,14208860,0 +) +k1,18614:10523651,38013389:-28417720 +) +) +g1,18614:28691027,38013389 +) +) +) +g1,18615:28690151,38013389 +k1,18615:32583029,38013389:3892878 +) +(1,18623:6630773,38878469:25952256,505283,115847 +h1,18621:6630773,38878469:983040,0,0 +k1,18621:9053812,38878469:243312 +(1,18621:9053812,38878469:0,452978,115847 +r1,18634:10818925,38878469:1765113,568825,115847 +k1,18621:9053812,38878469:-1765113 +) +(1,18621:9053812,38878469:1765113,452978,115847 +k1,18621:9053812,38878469:3277 +h1,18621:10815648,38878469:0,411205,112570 +) +k1,18621:11062237,38878469:243312 +k1,18621:12496994,38878469:243312 +(1,18621:12496994,38878469:0,452978,115847 +r1,18634:13910395,38878469:1413401,568825,115847 +k1,18621:12496994,38878469:-1413401 +) +(1,18621:12496994,38878469:1413401,452978,115847 +k1,18621:12496994,38878469:3277 +h1,18621:13907118,38878469:0,411205,112570 +) +k1,18621:14153707,38878469:243312 +k1,18621:17571583,38878469:243312 +k1,18621:20102757,38878469:243312 +k1,18621:21365154,38878469:243312 +k1,18621:22834646,38878469:243313 +k1,18621:23693996,38878469:243312 +k1,18621:24956393,38878469:243312 +k1,18621:27509849,38878469:243312 +k1,18621:28439323,38878469:243312 +k1,18621:29038495,38878469:243312 +k1,18621:31338327,38878469:243312 +k1,18622:32051532,38878469:243312 +k1,18622:32583029,38878469:0 +) +(1,18623:6630773,39743549:25952256,513147,134348 +k1,18622:8122506,39743549:205917 +k1,18622:10958382,39743549:205916 +k1,18622:11815727,39743549:205917 +k1,18622:13921532,39743549:205916 +k1,18622:15146534,39743549:205917 +k1,18622:17662595,39743549:205917 +k1,18622:19603904,39743549:205916 +(1,18622:19603904,39743549:0,452978,122846 +r1,18634:21369017,39743549:1765113,575824,122846 +k1,18622:19603904,39743549:-1765113 +) +(1,18622:19603904,39743549:1765113,452978,122846 +k1,18622:19603904,39743549:3277 +h1,18622:21365740,39743549:0,411205,112570 +) +k1,18622:21748604,39743549:205917 +k1,18622:22772410,39743549:205917 +k1,18622:24372277,39743549:205916 +k1,18622:25804373,39743549:205917 +k1,18622:28028143,39743549:205916 +k1,18622:32051532,39743549:205917 +k1,18622:32583029,39743549:0 +) +(1,18623:6630773,40608629:25952256,505283,126483 +k1,18622:10468941,40608629:248106 +k1,18622:11333085,40608629:248106 +k1,18622:14045346,40608629:248107 +k1,18622:14944880,40608629:248106 +k1,18622:18197812,40608629:248106 +k1,18622:22146081,40608629:248106 +k1,18622:23347736,40608629:248106 +k1,18622:24530385,40608629:248106 +k1,18622:25797577,40608629:248107 +(1,18622:25797577,40608629:0,435480,115847 +r1,18634:27562691,40608629:1765114,551327,115847 +k1,18622:25797577,40608629:-1765114 +) +(1,18622:25797577,40608629:1765114,435480,115847 +g1,18622:26504278,40608629 +g1,18622:27207702,40608629 +h1,18622:27559414,40608629:0,411205,112570 +) +k1,18622:27810797,40608629:248106 +k1,18622:28674941,40608629:248106 +(1,18622:28674941,40608629:0,452978,115847 +r1,18634:31143478,40608629:2468537,568825,115847 +k1,18622:28674941,40608629:-2468537 +) +(1,18622:28674941,40608629:2468537,452978,115847 +k1,18622:28674941,40608629:3277 +h1,18622:31140201,40608629:0,411205,112570 +) +k1,18622:31391584,40608629:248106 +k1,18622:32583029,40608629:0 +) +(1,18623:6630773,41473709:25952256,513147,126483 +g1,18622:8263930,41473709 +g1,18622:9555644,41473709 +(1,18622:9555644,41473709:0,452978,122846 +r1,18634:12727605,41473709:3171961,575824,122846 +k1,18622:9555644,41473709:-3171961 +) +(1,18622:9555644,41473709:3171961,452978,122846 +g1,18622:11669192,41473709 +g1,18622:12372616,41473709 +h1,18622:12724328,41473709:0,411205,112570 +) +g1,18622:12926834,41473709 +g1,18622:13777491,41473709 +g1,18622:16590951,41473709 +g1,18622:17809265,41473709 +g1,18622:19080663,41473709 +g1,18622:19939184,41473709 +g1,18622:21157498,41473709 +g1,18622:22922382,41473709 +g1,18622:23734373,41473709 +g1,18622:25136843,41473709 +g1,18622:28743944,41473709 +k1,18623:32583029,41473709:1985071 +g1,18623:32583029,41473709 +) +v1,18625:6630773,42158564:0,393216,0 +(1,18634:6630773,45218849:25952256,3453501,196608 +g1,18634:6630773,45218849 +g1,18634:6630773,45218849 +g1,18634:6434165,45218849 +(1,18634:6434165,45218849:0,3453501,196608 +r1,18634:32779637,45218849:26345472,3650109,196608 +k1,18634:6434165,45218849:-26345472 +) +(1,18634:6434165,45218849:26345472,3453501,196608 +[1,18634:6630773,45218849:25952256,3256893,0 +(1,18627:6630773,42393001:25952256,431045,112852 +(1,18626:6630773,42393001:0,0,0 +g1,18626:6630773,42393001 +g1,18626:6630773,42393001 +g1,18626:6303093,42393001 +(1,18626:6303093,42393001:0,0,0 +) +g1,18626:6630773,42393001 +) +k1,18627:6630773,42393001:0 +g1,18627:10614221,42393001 +g1,18627:11278129,42393001 +g1,18627:13933761,42393001 +g1,18627:15925485,42393001 +g1,18627:16589393,42393001 +g1,18627:18581117,42393001 +g1,18627:19245025,42393001 +g1,18627:19908933,42393001 +g1,18627:21568703,42393001 +g1,18627:23560427,42393001 +g1,18627:24224335,42393001 +g1,18627:28871691,42393001 +h1,18627:29203645,42393001:0,0,0 +k1,18627:32583029,42393001:3379384 +g1,18627:32583029,42393001 +) +(1,18628:6630773,43077856:25952256,424439,112852 +h1,18628:6630773,43077856:0,0,0 +g1,18628:6962727,43077856 +g1,18628:7294681,43077856 +g1,18628:11610082,43077856 +h1,18628:11942036,43077856:0,0,0 +k1,18628:32583028,43077856:20640992 +g1,18628:32583028,43077856 +) +(1,18629:6630773,43762711:25952256,424439,112852 +h1,18629:6630773,43762711:0,0,0 +g1,18629:6962727,43762711 +g1,18629:7294681,43762711 +g1,18629:12605944,43762711 +g1,18629:13269852,43762711 +k1,18629:13269852,43762711:0 +h1,18629:16257437,43762711:0,0,0 +k1,18629:32583029,43762711:16325592 +g1,18629:32583029,43762711 +) +(1,18630:6630773,44447566:25952256,424439,106246 +h1,18630:6630773,44447566:0,0,0 +g1,18630:6962727,44447566 +g1,18630:7294681,44447566 +g1,18630:7626635,44447566 +g1,18630:7958589,44447566 +g1,18630:8290543,44447566 +g1,18630:8622497,44447566 +g1,18630:8954451,44447566 +g1,18630:9286405,44447566 +g1,18630:9618359,44447566 +g1,18630:9950313,44447566 +g1,18630:10282267,44447566 +g1,18630:10614221,44447566 +g1,18630:10946175,44447566 +g1,18630:12937899,44447566 +g1,18630:13601807,44447566 +g1,18630:14597669,44447566 +g1,18630:15261577,44447566 +g1,18630:15925485,44447566 +g1,18630:16921347,44447566 +g1,18630:18913071,44447566 +g1,18630:19576979,44447566 +k1,18630:19576979,44447566:0 +h1,18630:23892380,44447566:0,0,0 +k1,18630:32583029,44447566:8690649 +g1,18630:32583029,44447566 +) +(1,18631:6630773,45132421:25952256,424439,86428 +h1,18631:6630773,45132421:0,0,0 +g1,18631:6962727,45132421 +g1,18631:7294681,45132421 +g1,18631:7626635,45132421 +g1,18631:7958589,45132421 +g1,18631:8290543,45132421 +g1,18631:8622497,45132421 +g1,18631:8954451,45132421 +g1,18631:9286405,45132421 +g1,18631:9618359,45132421 +g1,18631:9950313,45132421 +g1,18631:10282267,45132421 +g1,18631:10614221,45132421 +g1,18631:10946175,45132421 +g1,18631:12937899,45132421 +g1,18631:13601807,45132421 +g1,18631:16257439,45132421 +g1,18631:17917209,45132421 +g1,18631:18581117,45132421 +k1,18631:18581117,45132421:0 +h1,18631:19245025,45132421:0,0,0 +k1,18631:32583029,45132421:13338004 +g1,18631:32583029,45132421 +) +] +) +g1,18634:32583029,45218849 +g1,18634:6630773,45218849 +g1,18634:6630773,45218849 +g1,18634:32583029,45218849 +g1,18634:32583029,45218849 +) +] +(1,18634:32583029,45706769:0,0,0 +g1,18634:32583029,45706769 +) +) +] +(1,18634:6630773,47279633:25952256,0,0 +h1,18634:6630773,47279633:25952256,0,0 +) +] +(1,18634:4262630,4025873:0,0,0 +[1,18634:-473656,4025873:0,0,0 +(1,18634:-473656,-710413:0,0,0 +(1,18634:-473656,-710413:0,0,0 +g1,18634:-473656,-710413 +) +g1,18634:-473656,-710413 +) +] +) +] +!30081 +}310 Input:2900:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2901:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2902:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -321056,10962 +317293,11316 @@ Input:2907:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConso Input:2908:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2909:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2910:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2911:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2912:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1422 -{330 -[1,18676:4262630,47279633:28320399,43253760,0 -(1,18676:4262630,4025873:0,0,0 -[1,18676:-473656,4025873:0,0,0 -(1,18676:-473656,-710413:0,0,0 -(1,18676:-473656,-644877:0,0,0 -k1,18676:-473656,-644877:-65536 +!1046 +{311 +[1,18701:4262630,47279633:28320399,43253760,0 +(1,18701:4262630,4025873:0,0,0 +[1,18701:-473656,4025873:0,0,0 +(1,18701:-473656,-710413:0,0,0 +(1,18701:-473656,-644877:0,0,0 +k1,18701:-473656,-644877:-65536 ) -(1,18676:-473656,4736287:0,0,0 -k1,18676:-473656,4736287:5209943 +(1,18701:-473656,4736287:0,0,0 +k1,18701:-473656,4736287:5209943 ) -g1,18676:-473656,-710413 +g1,18701:-473656,-710413 ) ] ) -[1,18676:6630773,47279633:25952256,43253760,0 -[1,18676:6630773,4812305:25952256,786432,0 -(1,18676:6630773,4812305:25952256,485622,11795 -(1,18676:6630773,4812305:25952256,485622,11795 -g1,18676:3078558,4812305 -[1,18676:3078558,4812305:0,0,0 -(1,18676:3078558,2439708:0,1703936,0 -k1,18676:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,18676:2537886,2439708:1179648,16384,0 +[1,18701:6630773,47279633:25952256,43253760,0 +[1,18701:6630773,4812305:25952256,786432,0 +(1,18701:6630773,4812305:25952256,513147,126483 +(1,18701:6630773,4812305:25952256,513147,126483 +g1,18701:3078558,4812305 +[1,18701:3078558,4812305:0,0,0 +(1,18701:3078558,2439708:0,1703936,0 +k1,18701:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,18701:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,18676:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,18701:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,18676:3078558,4812305:0,0,0 -(1,18676:3078558,2439708:0,1703936,0 -g1,18676:29030814,2439708 -g1,18676:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,18676:36151628,1915420:16384,1179648,0 +[1,18701:3078558,4812305:0,0,0 +(1,18701:3078558,2439708:0,1703936,0 +g1,18701:29030814,2439708 +g1,18701:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,18701:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,18676:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,18701:37855564,2439708:1179648,16384,0 ) ) -k1,18676:3078556,2439708:-34777008 +k1,18701:3078556,2439708:-34777008 ) ] -[1,18676:3078558,4812305:0,0,0 -(1,18676:3078558,49800853:0,16384,2228224 -k1,18676:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,18676:2537886,49800853:1179648,16384,0 +[1,18701:3078558,4812305:0,0,0 +(1,18701:3078558,49800853:0,16384,2228224 +k1,18701:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,18701:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,18676:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,18701:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,18676:3078558,4812305:0,0,0 -(1,18676:3078558,49800853:0,16384,2228224 -g1,18676:29030814,49800853 -g1,18676:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,18676:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] -) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,18676:37855564,49800853:1179648,16384,0 -) -) -k1,18676:3078556,49800853:-34777008 -) -] -g1,18676:6630773,4812305 -g1,18676:6630773,4812305 -g1,18676:9560887,4812305 -k1,18676:31387651,4812305:21826764 -) -) -] -[1,18676:6630773,45706769:25952256,40108032,0 -(1,18676:6630773,45706769:25952256,40108032,0 -(1,18676:6630773,45706769:0,0,0 -g1,18676:6630773,45706769 -) -[1,18676:6630773,45706769:25952256,40108032,0 -(1,18617:6630773,6254097:25952256,513147,126483 -h1,18616:6630773,6254097:983040,0,0 -k1,18616:10075099,6254097:225198 -k1,18616:14275711,6254097:225198 -k1,18616:17526706,6254097:225198 -k1,18616:19025269,6254097:225198 -k1,18616:21706756,6254097:225198 -k1,18616:23123399,6254097:225198 -k1,18616:27049415,6254097:225198 -k1,18616:30300410,6254097:225198 -k1,18616:32583029,6254097:0 -) -(1,18617:6630773,7095585:25952256,505283,7863 -g1,18616:7934284,7095585 -g1,18616:9419329,7095585 -g1,18616:10366324,7095585 -k1,18617:32583029,7095585:20529808 -g1,18617:32583029,7095585 -) -v1,18619:6630773,8286051:0,393216,0 -(1,18625:6630773,9939795:25952256,2046960,196608 -g1,18625:6630773,9939795 -g1,18625:6630773,9939795 -g1,18625:6434165,9939795 -(1,18625:6434165,9939795:0,2046960,196608 -r1,18676:32779637,9939795:26345472,2243568,196608 -k1,18625:6434165,9939795:-26345472 -) -(1,18625:6434165,9939795:26345472,2046960,196608 -[1,18625:6630773,9939795:25952256,1850352,0 -(1,18621:6630773,8499961:25952256,410518,107478 -(1,18620:6630773,8499961:0,0,0 -g1,18620:6630773,8499961 -g1,18620:6630773,8499961 -g1,18620:6303093,8499961 -(1,18620:6303093,8499961:0,0,0 -) -g1,18620:6630773,8499961 -) -k1,18621:6630773,8499961:0 -g1,18621:12953688,8499961 -g1,18621:13585980,8499961 -g1,18621:15482856,8499961 -g1,18621:17379731,8499961 -g1,18621:18012023,8499961 -g1,18621:19276606,8499961 -h1,18621:19592752,8499961:0,0,0 -k1,18621:32583029,8499961:12990277 -g1,18621:32583029,8499961 -) -(1,18622:6630773,9166139:25952256,410518,82312 -h1,18622:6630773,9166139:0,0,0 -g1,18622:6946919,9166139 -g1,18622:7263065,9166139 -g1,18622:12953688,9166139 -g1,18622:13585980,9166139 -g1,18622:17379729,9166139 -g1,18622:18328167,9166139 -g1,18622:19908896,9166139 -g1,18622:20541188,9166139 -g1,18622:21173480,9166139 -g1,18622:21805772,9166139 -k1,18622:21805772,9166139:0 -h1,18622:23386502,9166139:0,0,0 -k1,18622:32583029,9166139:9196527 -g1,18622:32583029,9166139 -) -(1,18623:6630773,9832317:25952256,404226,107478 -h1,18623:6630773,9832317:0,0,0 -g1,18623:6946919,9832317 -g1,18623:7263065,9832317 -g1,18623:7579211,9832317 -g1,18623:7895357,9832317 -g1,18623:8211503,9832317 -g1,18623:8527649,9832317 -g1,18623:8843795,9832317 -g1,18623:9159941,9832317 -g1,18623:9476087,9832317 -g1,18623:9792233,9832317 -g1,18623:10108379,9832317 -g1,18623:10424525,9832317 -g1,18623:10740671,9832317 -g1,18623:11056817,9832317 -g1,18623:11372963,9832317 -g1,18623:11689109,9832317 -g1,18623:13269838,9832317 -g1,18623:13902130,9832317 -g1,18623:16115151,9832317 -g1,18623:16747443,9832317 -g1,18623:17695881,9832317 -g1,18623:18328173,9832317 -g1,18623:18960465,9832317 -h1,18623:20541193,9832317:0,0,0 -k1,18623:32583029,9832317:12041836 -g1,18623:32583029,9832317 -) -] -) -g1,18625:32583029,9939795 -g1,18625:6630773,9939795 -g1,18625:6630773,9939795 -g1,18625:32583029,9939795 -g1,18625:32583029,9939795 -) -h1,18625:6630773,10136403:0,0,0 -v1,18629:6630773,12026467:0,393216,0 -(1,18630:6630773,14991332:25952256,3358081,0 -g1,18630:6630773,14991332 -g1,18630:6303093,14991332 -r1,18676:6401397,14991332:98304,3358081,0 -g1,18630:6600626,14991332 -g1,18630:6797234,14991332 -[1,18630:6797234,14991332:25785795,3358081,0 -(1,18630:6797234,12459005:25785795,825754,196608 -(1,18629:6797234,12459005:0,825754,196608 -r1,18676:7890375,12459005:1093141,1022362,196608 -k1,18629:6797234,12459005:-1093141 -) -(1,18629:6797234,12459005:1093141,825754,196608 -) -k1,18629:8108418,12459005:218043 -k1,18629:9834636,12459005:327680 -k1,18629:11302451,12459005:218043 -k1,18629:12539579,12459005:218043 -k1,18629:14253810,12459005:218044 -k1,18629:16327177,12459005:218043 -k1,18629:17196648,12459005:218043 -k1,18629:18507176,12459005:218043 -k1,18629:19081079,12459005:218043 -k1,18629:22061465,12459005:218043 -k1,18629:25148675,12459005:218044 -k1,18629:26860284,12459005:218043 -k1,18629:27764489,12459005:218043 -$1,18629:27764489,12459005 -(1,18629:28124282,12183724:1071383,353698,7340 -) -$1,18629:29195665,12459005 -k1,18629:29587378,12459005:218043 -k1,18629:32583029,12459005:0 -) -(1,18630:6797234,13300493:25785795,513147,134348 -k1,18629:8016385,13300493:200066 -k1,18629:12033268,13300493:200066 -k1,18629:14438622,13300493:200067 -k1,18629:17197214,13300493:200066 -(1,18629:17197214,13300493:0,414482,122846 -r1,18676:18610615,13300493:1413401,537328,122846 -k1,18629:17197214,13300493:-1413401 -) -(1,18629:17197214,13300493:1413401,414482,122846 -k1,18629:17197214,13300493:3277 -h1,18629:18607338,13300493:0,411205,112570 -) -k1,18629:18810681,13300493:200066 -k1,18629:22867541,13300493:200066 -k1,18629:23965450,13300493:200066 -k1,18629:25368757,13300493:200066 -k1,18629:26330352,13300493:200067 -k1,18629:28598734,13300493:200066 -k1,18629:29458092,13300493:200066 -k1,18629:30428861,13300493:200066 -k1,18630:32583029,13300493:0 -) -(1,18630:6797234,14141981:25785795,513147,126483 -k1,18629:8802254,14141981:245378 -k1,18629:11916798,14141981:245378 -k1,18629:13353620,14141981:245377 -k1,18629:14360526,14141981:245378 -k1,18629:16674220,14141981:245378 -k1,18629:17578890,14141981:245378 -k1,18629:18594970,14141981:245377 -k1,18629:22145329,14141981:245378 -k1,18629:24549463,14141981:245378 -k1,18629:27490337,14141981:245378 -k1,18629:30117292,14141981:245377 -k1,18629:31124198,14141981:245378 -k1,18629:32583029,14141981:0 -) -(1,18630:6797234,14983469:25785795,505283,7863 -k1,18630:32583029,14983469:24115938 -g1,18630:32583029,14983469 -) -] -g1,18630:32583029,14991332 -) -h1,18630:6630773,14991332:0,0,0 -(1,18635:6630773,17606880:25952256,555811,12975 -(1,18635:6630773,17606880:2450326,534184,12975 -g1,18635:6630773,17606880 -g1,18635:9081099,17606880 -) -k1,18635:32583029,17606880:19484376 -g1,18635:32583029,17606880 -) -(1,18640:6630773,18841584:25952256,505283,126483 -k1,18639:8034663,18841584:207203 -k1,18639:11750008,18841584:207203 -k1,18639:15086555,18841584:207203 -k1,18639:15909796,18841584:207203 -k1,18639:17320240,18841584:207203 -k1,18639:19806130,18841584:207203 -k1,18639:21117614,18841584:207202 -k1,18639:22072583,18841584:207203 -k1,18639:26816188,18841584:207203 -k1,18639:27832761,18841584:207203 -k1,18639:29205194,18841584:207203 -k1,18639:30801760,18841584:207203 -k1,18639:32583029,18841584:0 -) -(1,18640:6630773,19683072:25952256,513147,126483 -k1,18639:7457603,19683072:143945 -k1,18639:9903828,19683072:143945 -k1,18639:10857143,19683072:143945 -k1,18639:12509727,19683072:143945 -k1,18639:14157723,19683072:143945 -k1,18639:16734364,19683072:143945 -k1,18639:18162815,19683072:143945 -k1,18639:18772721,19683072:143945 -k1,18639:20488875,19683072:143945 -k1,18639:22447512,19683072:143945 -k1,18639:23583017,19683072:143945 -k1,18639:26659698,19683072:143945 -k1,18639:27911857,19683072:143945 -k1,18639:29074887,19683072:143945 -k1,18639:32583029,19683072:0 -) -(1,18640:6630773,20524560:25952256,513147,11795 -k1,18639:7958095,20524560:194860 -k1,18639:8900722,20524560:194861 -k1,18639:12324541,20524560:194860 -k1,18639:14087022,20524560:194860 -k1,18639:15300968,20524560:194861 -k1,18639:17575941,20524560:194860 -k1,18639:18430093,20524560:194860 -k1,18639:22696706,20524560:194861 -k1,18639:24901555,20524560:194860 -k1,18639:26793142,20524560:194860 -k1,18639:28976365,20524560:194861 -k1,18639:30768337,20524560:194860 -k1,18639:32583029,20524560:0 -) -(1,18640:6630773,21366048:25952256,513147,134348 -k1,18639:7895430,21366048:160375 -k1,18639:8803571,21366048:160375 -k1,18639:11185617,21366048:160375 -k1,18639:13044030,21366048:160375 -k1,18639:16101752,21366048:160375 -k1,18639:18865872,21366048:160375 -k1,18639:19382107,21366048:160375 -k1,18639:21114691,21366048:160375 -k1,18639:21957951,21366048:160375 -k1,18639:22879854,21366048:160375 -k1,18639:25108545,21366048:160375 -k1,18639:25928212,21366048:160375 -k1,18639:29114384,21366048:160375 -(1,18639:29114384,21366048:0,452978,115847 -r1,18676:31231209,21366048:2116825,568825,115847 -k1,18639:29114384,21366048:-2116825 -) -(1,18639:29114384,21366048:2116825,452978,115847 -k1,18639:29114384,21366048:3277 -h1,18639:31227932,21366048:0,411205,112570 -) -k1,18639:31391584,21366048:160375 -k1,18640:32583029,21366048:0 -) -(1,18640:6630773,22207536:25952256,513147,134348 -(1,18639:6630773,22207536:0,452978,115847 -r1,18676:8747598,22207536:2116825,568825,115847 -k1,18639:6630773,22207536:-2116825 -) -(1,18639:6630773,22207536:2116825,452978,115847 -k1,18639:6630773,22207536:3277 -h1,18639:8744321,22207536:0,411205,112570 -) -k1,18639:9136528,22207536:215260 -k1,18639:10401674,22207536:215259 -k1,18639:12895621,22207536:215260 -h1,18639:14264668,22207536:0,0,0 -k1,18639:14479927,22207536:215259 -k1,18639:15504557,22207536:215260 -k1,18639:17217969,22207536:215259 -h1,18639:18413346,22207536:0,0,0 -k1,18639:18628606,22207536:215260 -k1,18639:19791516,22207536:215259 -k1,18639:20777479,22207536:215260 -k1,18639:24725013,22207536:215259 -k1,18639:25599565,22207536:215260 -k1,18639:27145205,22207536:215259 -k1,18639:30768337,22207536:215260 -k1,18639:32583029,22207536:0 -) -(1,18640:6630773,23049024:25952256,513147,138281 -k1,18639:7997322,23049024:262267 -k1,18639:9007355,23049024:262267 -k1,18639:10782847,23049024:262266 -k1,18639:11696542,23049024:262267 -k1,18639:13757772,23049024:262267 -k1,18639:15287505,23049024:262267 -k1,18639:15905632,23049024:262267 -k1,18639:17445195,23049024:262266 -k1,18639:20167684,23049024:262267 -k1,18639:23506866,23049024:262267 -k1,18639:24428425,23049024:262267 -$1,18639:24428425,23049024 -$1,18639:24931086,23049024 -k1,18639:25193353,23049024:262267 -k1,18639:26647065,23049024:262267 -$1,18639:26647065,23049024 -$1,18639:27198878,23049024 -k1,18639:27461144,23049024:262266 -k1,18639:29734056,23049024:262267 -k1,18639:31563944,23049024:262267 -k1,18639:32583029,23049024:0 -) -(1,18640:6630773,23890512:25952256,505283,7863 -k1,18640:32583029,23890512:24389222 -g1,18640:32583029,23890512 -) -(1,18642:6630773,24732000:25952256,513147,134348 -h1,18641:6630773,24732000:983040,0,0 -k1,18641:8330215,24732000:246509 -k1,18641:9108221,24732000:246509 -k1,18641:11984690,24732000:246509 -k1,18641:12882627,24732000:246509 -k1,18641:16696916,24732000:246509 -k1,18641:18332788,24732000:246509 -k1,18641:19388667,24732000:246509 -k1,18641:20654260,24732000:246508 -k1,18641:21696376,24732000:246509 -k1,18641:23640923,24732000:246509 -k1,18641:26585549,24732000:246509 -k1,18641:27785607,24732000:246509 -k1,18641:30701397,24732000:246509 -k1,18641:31563944,24732000:246509 -k1,18641:32583029,24732000:0 -) -(1,18642:6630773,25573488:25952256,513147,126483 -k1,18641:8496036,25573488:211790 -k1,18641:10986514,25573488:211791 -k1,18641:12217389,25573488:211790 -k1,18641:15900622,25573488:211791 -k1,18641:16771704,25573488:211790 -k1,18641:20017812,25573488:211791 -k1,18641:20888894,25573488:211790 -k1,18641:23302694,25573488:211790 -k1,18641:26411176,25573488:211791 -k1,18641:27814411,25573488:211790 -k1,18641:28685494,25573488:211791 -k1,18641:31896867,25573488:211790 -k1,18642:32583029,25573488:0 -) -(1,18642:6630773,26414976:25952256,505283,134348 -(1,18641:6630773,26414976:0,452978,115847 -r1,18676:11561293,26414976:4930520,568825,115847 -k1,18641:6630773,26414976:-4930520 -) -(1,18641:6630773,26414976:4930520,452978,115847 -k1,18641:6630773,26414976:3277 -h1,18641:11558016,26414976:0,411205,112570 -) -k1,18641:11789403,26414976:228110 -k1,18641:14029469,26414976:228111 -k1,18641:15896634,26414976:228110 -k1,18641:16776173,26414976:228111 -k1,18641:17752049,26414976:228110 -k1,18641:21209119,26414976:228111 -k1,18641:26289515,26414976:228110 -k1,18641:27709071,26414976:228111 -k1,18641:29902606,26414976:228110 -k1,18641:32583029,26414976:0 -) -(1,18642:6630773,27256464:25952256,505283,134348 -g1,18641:8223953,27256464 -g1,18641:8779042,27256464 -g1,18641:10851290,27256464 -k1,18642:32583029,27256464:20000278 -g1,18642:32583029,27256464 -) -(1,18644:6630773,28097952:25952256,513147,134348 -h1,18643:6630773,28097952:983040,0,0 -k1,18643:8852741,28097952:196906 -k1,18643:10142132,28097952:196906 -k1,18643:10955075,28097952:196905 -k1,18643:12171066,28097952:196906 -k1,18643:15533361,28097952:196906 -k1,18643:16598619,28097952:196906 -k1,18643:19527721,28097952:196906 -k1,18643:21416767,28097952:196906 -k1,18643:24458590,28097952:196905 -k1,18643:28194440,28097952:196906 -k1,18643:31019995,28097952:196906 -k1,18644:32583029,28097952:0 -k1,18644:32583029,28097952:0 -) -v1,18646:6630773,29288418:0,393216,0 -(1,18654:6630773,32243061:25952256,3347859,196608 -g1,18654:6630773,32243061 -g1,18654:6630773,32243061 -g1,18654:6434165,32243061 -(1,18654:6434165,32243061:0,3347859,196608 -r1,18676:32779637,32243061:26345472,3544467,196608 -k1,18654:6434165,32243061:-26345472 -) -(1,18654:6434165,32243061:26345472,3347859,196608 -[1,18654:6630773,32243061:25952256,3151251,0 -(1,18648:6630773,29502328:25952256,410518,76021 -(1,18647:6630773,29502328:0,0,0 -g1,18647:6630773,29502328 -g1,18647:6630773,29502328 -g1,18647:6303093,29502328 -(1,18647:6303093,29502328:0,0,0 -) -g1,18647:6630773,29502328 -) -g1,18648:9792230,29502328 -g1,18648:10740668,29502328 -k1,18648:10740668,29502328:0 -h1,18648:14218271,29502328:0,0,0 -k1,18648:32583029,29502328:18364758 -g1,18648:32583029,29502328 -) -(1,18649:6630773,30168506:25952256,404226,101187 -h1,18649:6630773,30168506:0,0,0 -g1,18649:6946919,30168506 -g1,18649:7263065,30168506 -g1,18649:7895357,30168506 -g1,18649:8527649,30168506 -g1,18649:12321398,30168506 -g1,18649:13902127,30168506 -g1,18649:14534419,30168506 -g1,18649:15482857,30168506 -g1,18649:16431294,30168506 -g1,18649:17063586,30168506 -k1,18649:17063586,30168506:0 -h1,18649:18644315,30168506:0,0,0 -k1,18649:32583029,30168506:13938714 -g1,18649:32583029,30168506 -) -(1,18650:6630773,30834684:25952256,404226,82312 -h1,18650:6630773,30834684:0,0,0 -g1,18650:6946919,30834684 -g1,18650:7263065,30834684 -g1,18650:7579211,30834684 -g1,18650:7895357,30834684 -g1,18650:8211503,30834684 -g1,18650:8527649,30834684 -g1,18650:8843795,30834684 -g1,18650:9159941,30834684 -g1,18650:12321398,30834684 -g1,18650:13902127,30834684 -g1,18650:14534419,30834684 -g1,18650:15482857,30834684 -g1,18650:16431294,30834684 -g1,18650:17063586,30834684 -k1,18650:17063586,30834684:0 -h1,18650:18960460,30834684:0,0,0 -k1,18650:32583029,30834684:13622569 -g1,18650:32583029,30834684 -) -(1,18651:6630773,31500862:25952256,410518,107478 -h1,18651:6630773,31500862:0,0,0 -g1,18651:6946919,31500862 -g1,18651:7263065,31500862 -g1,18651:9159939,31500862 -g1,18651:9792231,31500862 -g1,18651:15482855,31500862 -g1,18651:17063584,31500862 -g1,18651:19908896,31500862 -h1,18651:21489624,31500862:0,0,0 -k1,18651:32583029,31500862:11093405 -g1,18651:32583029,31500862 -) -(1,18652:6630773,32167040:25952256,404226,76021 -h1,18652:6630773,32167040:0,0,0 -g1,18652:6946919,32167040 -g1,18652:7263065,32167040 -h1,18652:7579211,32167040:0,0,0 -k1,18652:32583029,32167040:25003818 -g1,18652:32583029,32167040 -) -] -) -g1,18654:32583029,32243061 -g1,18654:6630773,32243061 -g1,18654:6630773,32243061 -g1,18654:32583029,32243061 -g1,18654:32583029,32243061 -) -h1,18654:6630773,32439669:0,0,0 -(1,18658:6630773,33805445:25952256,513147,126483 -h1,18657:6630773,33805445:983040,0,0 -k1,18657:8813515,33805445:246153 -k1,18657:10192130,33805445:246153 -k1,18657:12166468,33805445:246154 -k1,18657:12768481,33805445:246153 -k1,18657:15048872,33805445:246153 -k1,18657:17464267,33805445:246153 -k1,18657:18987717,33805445:246153 -k1,18657:19849909,33805445:246154 -k1,18657:20451922,33805445:246153 -k1,18657:22542913,33805445:246153 -k1,18657:23448358,33805445:246153 -k1,18657:26859900,33805445:246153 -k1,18657:27830882,33805445:246154 -k1,18657:29361541,33805445:246153 -k1,18657:30626779,33805445:246153 -k1,18658:32583029,33805445:0 -) -(1,18658:6630773,34646933:25952256,513147,134348 -k1,18657:8655966,34646933:251789 -k1,18657:9899315,34646933:251789 -k1,18657:12021502,34646933:251789 -k1,18657:12924720,34646933:251790 -k1,18657:16678098,34646933:251789 -k1,18657:17883436,34646933:251789 -k1,18657:19441358,34646933:251789 -k1,18657:20890490,34646933:251789 -k1,18657:22371079,34646933:251789 -k1,18657:23641953,34646933:251789 -k1,18657:25805428,34646933:251790 -k1,18657:26685052,34646933:251789 -k1,18657:28140082,34646933:251789 -k1,18657:29932622,34646933:251789 -k1,18657:31052763,34646933:251789 -k1,18657:32583029,34646933:0 -) -(1,18658:6630773,35488421:25952256,513147,134348 -k1,18657:7562739,35488421:280538 -k1,18657:9280482,35488421:280538 -k1,18657:10247182,35488421:280538 -k1,18657:11298424,35488421:280539 -k1,18657:14651290,35488421:280538 -k1,18657:15583256,35488421:280538 -(1,18657:15583256,35488421:0,452978,115847 -r1,18676:20513776,35488421:4930520,568825,115847 -k1,18657:15583256,35488421:-4930520 -) -(1,18657:15583256,35488421:4930520,452978,115847 -k1,18657:15583256,35488421:3277 -h1,18657:20510499,35488421:0,411205,112570 -) -k1,18657:20967984,35488421:280538 -k1,18657:22267607,35488421:280538 -(1,18657:22267607,35488421:0,414482,122846 -r1,18676:23681008,35488421:1413401,537328,122846 -k1,18657:22267607,35488421:-1413401 -) -(1,18657:22267607,35488421:1413401,414482,122846 -k1,18657:22267607,35488421:3277 -h1,18657:23677731,35488421:0,411205,112570 -) -k1,18657:23961546,35488421:280538 -k1,18657:24893512,35488421:280538 -k1,18657:26440207,35488421:280539 -k1,18657:27406907,35488421:280538 -k1,18657:28706530,35488421:280538 -k1,18657:31252648,35488421:280538 -k1,18658:32583029,35488421:0 -) -(1,18658:6630773,36329909:25952256,513147,134348 -(1,18657:6630773,36329909:0,452978,122846 -r1,18676:12616428,36329909:5985655,575824,122846 -k1,18657:6630773,36329909:-5985655 -) -(1,18657:6630773,36329909:5985655,452978,122846 -k1,18657:6630773,36329909:3277 -h1,18657:12613151,36329909:0,411205,112570 -) -k1,18657:13034107,36329909:244009 -k1,18657:15679356,36329909:244010 -k1,18657:17312728,36329909:244009 -k1,18657:18504388,36329909:244009 -k1,18657:21272844,36329909:244009 -k1,18657:23123797,36329909:244010 -k1,18657:24742751,36329909:244009 -k1,18657:25602798,36329909:244009 -k1,18657:28512812,36329909:244009 -k1,18657:29408250,36329909:244010 -k1,18657:30671344,36329909:244009 -k1,18657:32583029,36329909:0 -) -(1,18658:6630773,37171397:25952256,513147,126483 -k1,18657:8158401,37171397:146784 -k1,18657:10966603,37171397:146785 -k1,18657:12536174,37171397:146784 -k1,18657:13038818,37171397:146784 -k1,18657:15559316,37171397:146784 -k1,18657:18680780,37171397:146785 -k1,18657:19513726,37171397:146784 -k1,18657:20679595,37171397:146784 -k1,18657:23584135,37171397:146785 -k1,18657:25411262,37171397:146784 -k1,18657:26225202,37171397:146784 -(1,18657:26225202,37171397:0,452978,115847 -r1,18676:27990315,37171397:1765113,568825,115847 -k1,18657:26225202,37171397:-1765113 -) -(1,18657:26225202,37171397:1765113,452978,115847 -k1,18657:26225202,37171397:3277 -h1,18657:27987038,37171397:0,411205,112570 -) -k1,18657:28137099,37171397:146784 -k1,18657:29515961,37171397:146785 -k1,18657:30681830,37171397:146784 -k1,18658:32583029,37171397:0 -) -(1,18658:6630773,38012885:25952256,513147,134348 -k1,18657:7834391,38012885:230408 -k1,18657:9012449,38012885:230407 -(1,18657:9012449,38012885:0,452978,122846 -r1,18676:13239545,38012885:4227096,575824,122846 -k1,18657:9012449,38012885:-4227096 -) -(1,18657:9012449,38012885:4227096,452978,122846 -k1,18657:9012449,38012885:3277 -h1,18657:13236268,38012885:0,411205,112570 -) -k1,18657:13469953,38012885:230408 -k1,18657:14509730,38012885:230407 -k1,18657:16238291,38012885:230408 -h1,18657:17433668,38012885:0,0,0 -k1,18657:17664076,38012885:230408 -k1,18657:18703853,38012885:230407 -k1,18657:19953346,38012885:230408 -k1,18657:21276238,38012885:230407 -k1,18657:22165938,38012885:230408 -k1,18657:24180891,38012885:230408 -k1,18657:25097460,38012885:230407 -(1,18657:25097460,38012885:0,452978,115847 -r1,18676:26862573,38012885:1765113,568825,115847 -k1,18657:25097460,38012885:-1765113 -) -(1,18657:25097460,38012885:1765113,452978,115847 -k1,18657:25097460,38012885:3277 -h1,18657:26859296,38012885:0,411205,112570 -) -k1,18657:27473745,38012885:230408 -k1,18657:30043132,38012885:230407 -k1,18657:30932832,38012885:230408 -k1,18658:32583029,38012885:0 -) -(1,18658:6630773,38854373:25952256,505283,134348 -k1,18657:7889045,38854373:268023 -(1,18657:7889045,38854373:0,452978,115847 -r1,18676:10005870,38854373:2116825,568825,115847 -k1,18657:7889045,38854373:-2116825 -) -(1,18657:7889045,38854373:2116825,452978,115847 -k1,18657:7889045,38854373:3277 -h1,18657:10002593,38854373:0,411205,112570 -) -k1,18657:10273893,38854373:268023 -k1,18657:11228079,38854373:268024 -k1,18657:12266805,38854373:268023 -k1,18657:15607156,38854373:268023 -k1,18657:16526607,38854373:268023 -k1,18657:20075363,38854373:268024 -(1,18657:20075363,38854373:0,459977,115847 -r1,18676:21137052,38854373:1061689,575824,115847 -k1,18657:20075363,38854373:-1061689 -) -(1,18657:20075363,38854373:1061689,459977,115847 -k1,18657:20075363,38854373:3277 -h1,18657:21133775,38854373:0,411205,112570 -) -k1,18657:21405075,38854373:268023 -k1,18657:23913774,38854373:268023 -k1,18657:26049573,38854373:268023 -(1,18657:26049573,38854373:0,459977,115847 -r1,18676:27814686,38854373:1765113,575824,115847 -k1,18657:26049573,38854373:-1765113 -) -(1,18657:26049573,38854373:1765113,459977,115847 -k1,18657:26049573,38854373:3277 -h1,18657:27811409,38854373:0,411205,112570 -) -k1,18657:28463474,38854373:268024 -k1,18657:29599849,38854373:268023 -k1,18657:30972154,38854373:268023 -k1,18657:32583029,38854373:0 -) -(1,18658:6630773,39695861:25952256,513147,126483 -k1,18657:7321940,39695861:225206 -k1,18657:10076835,39695861:225205 -k1,18657:12004011,39695861:225206 -k1,18657:15219625,39695861:225206 -k1,18657:18470628,39695861:225206 -k1,18657:19842059,39695861:225206 -(1,18657:19842059,39695861:0,452978,115847 -r1,18676:22662308,39695861:2820249,568825,115847 -k1,18657:19842059,39695861:-2820249 -) -(1,18657:19842059,39695861:2820249,452978,115847 -k1,18657:19842059,39695861:3277 -h1,18657:22659031,39695861:0,411205,112570 -) -k1,18657:23061183,39695861:225205 -k1,18657:23914224,39695861:225206 -k1,18657:25158515,39695861:225206 -k1,18657:26750801,39695861:225205 -k1,18657:27635299,39695861:225206 -k1,18657:29557232,39695861:225206 -k1,18657:32583029,39695861:0 -) -(1,18658:6630773,40537349:25952256,505283,134348 -k1,18657:8106896,40537349:191617 -k1,18657:10309158,40537349:191617 -k1,18657:10856635,40537349:191617 -k1,18657:12921271,40537349:191617 -k1,18657:16321531,40537349:191617 -k1,18657:18367162,40537349:191617 -k1,18657:19427131,40537349:191617 -k1,18657:21055953,40537349:191617 -k1,18657:23060296,40537349:191617 -k1,18657:23934798,40537349:191617 -k1,18657:27101094,40537349:191617 -k1,18657:29488822,40537349:191617 -k1,18657:31074390,40537349:191617 -k1,18657:32583029,40537349:0 -) -(1,18658:6630773,41378837:25952256,459977,134348 -g1,18657:9071989,41378837 -g1,18657:9957380,41378837 -g1,18657:10927312,41378837 -g1,18657:14198869,41378837 -g1,18657:15049526,41378837 -g1,18657:18529487,41378837 -(1,18657:18529487,41378837:0,459977,115847 -r1,18676:19591176,41378837:1061689,575824,115847 -k1,18657:18529487,41378837:-1061689 -) -(1,18657:18529487,41378837:1061689,459977,115847 -k1,18657:18529487,41378837:3277 -h1,18657:19587899,41378837:0,411205,112570 -) -k1,18658:32583029,41378837:12818183 -g1,18658:32583029,41378837 -) -v1,18660:6630773,42569303:0,393216,0 -(1,18667:6630773,44882934:25952256,2706847,196608 -g1,18667:6630773,44882934 -g1,18667:6630773,44882934 -g1,18667:6434165,44882934 -(1,18667:6434165,44882934:0,2706847,196608 -r1,18676:32779637,44882934:26345472,2903455,196608 -k1,18667:6434165,44882934:-26345472 -) -(1,18667:6434165,44882934:26345472,2706847,196608 -[1,18667:6630773,44882934:25952256,2510239,0 -(1,18662:6630773,42783213:25952256,410518,107478 -(1,18661:6630773,42783213:0,0,0 -g1,18661:6630773,42783213 -g1,18661:6630773,42783213 -g1,18661:6303093,42783213 -(1,18661:6303093,42783213:0,0,0 -) -g1,18661:6630773,42783213 -) -k1,18662:6630773,42783213:0 -g1,18662:10424522,42783213 -g1,18662:11056814,42783213 -g1,18662:14534417,42783213 -g1,18662:16431292,42783213 -g1,18662:17063584,42783213 -g1,18662:18012022,42783213 -g1,18662:18644314,42783213 -g1,18662:19276606,42783213 -g1,18662:21805772,42783213 -h1,18662:22121918,42783213:0,0,0 -k1,18662:32583029,42783213:10461111 -g1,18662:32583029,42783213 -) -(1,18663:6630773,43449391:25952256,404226,107478 -h1,18663:6630773,43449391:0,0,0 -g1,18663:6946919,43449391 -g1,18663:7263065,43449391 -g1,18663:12637542,43449391 -g1,18663:13269834,43449391 -g1,18663:14534417,43449391 -h1,18663:14850563,43449391:0,0,0 -k1,18663:32583029,43449391:17732466 -g1,18663:32583029,43449391 -) -(1,18664:6630773,44115569:25952256,410518,107478 -h1,18664:6630773,44115569:0,0,0 -g1,18664:6946919,44115569 -g1,18664:7263065,44115569 -g1,18664:12637542,44115569 -g1,18664:13269834,44115569 -g1,18664:15799000,44115569 -g1,18664:17379729,44115569 -g1,18664:18012021,44115569 -k1,18664:18012021,44115569:0 -h1,18664:20541187,44115569:0,0,0 -k1,18664:32583029,44115569:12041842 -g1,18664:32583029,44115569 -) -(1,18665:6630773,44781747:25952256,404226,101187 -h1,18665:6630773,44781747:0,0,0 -g1,18665:6946919,44781747 -g1,18665:7263065,44781747 -g1,18665:7579211,44781747 -g1,18665:7895357,44781747 -g1,18665:8211503,44781747 -g1,18665:8527649,44781747 -g1,18665:8843795,44781747 -g1,18665:9159941,44781747 -g1,18665:9476087,44781747 -g1,18665:9792233,44781747 -g1,18665:10108379,44781747 -g1,18665:10424525,44781747 -g1,18665:10740671,44781747 -g1,18665:11056817,44781747 -g1,18665:11372963,44781747 -g1,18665:13269837,44781747 -g1,18665:13902129,44781747 -g1,18665:16115149,44781747 -g1,18665:18012023,44781747 -g1,18665:18644315,44781747 -g1,18665:20225044,44781747 -g1,18665:21805773,44781747 -g1,18665:22438065,44781747 -h1,18665:23386502,44781747:0,0,0 -k1,18665:32583029,44781747:9196527 -g1,18665:32583029,44781747 -) -] -) -g1,18667:32583029,44882934 -g1,18667:6630773,44882934 -g1,18667:6630773,44882934 -g1,18667:32583029,44882934 -g1,18667:32583029,44882934 -) -h1,18667:6630773,45079542:0,0,0 -] -(1,18676:32583029,45706769:0,0,0 -g1,18676:32583029,45706769 -) -) -] -(1,18676:6630773,47279633:25952256,0,0 -h1,18676:6630773,47279633:25952256,0,0 -) -] -(1,18676:4262630,4025873:0,0,0 -[1,18676:-473656,4025873:0,0,0 -(1,18676:-473656,-710413:0,0,0 -(1,18676:-473656,-710413:0,0,0 -g1,18676:-473656,-710413 -) -g1,18676:-473656,-710413 -) -] -) -] -!28750 -}330 +[1,18701:3078558,4812305:0,0,0 +(1,18701:3078558,49800853:0,16384,2228224 +g1,18701:29030814,49800853 +g1,18701:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,18701:36151628,51504789:16384,1179648,0 +) +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 +) +] +) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,18701:37855564,49800853:1179648,16384,0 +) +) +k1,18701:3078556,49800853:-34777008 +) +] +g1,18701:6630773,4812305 +k1,18701:21350816,4812305:13524666 +g1,18701:21999622,4812305 +g1,18701:25611966,4812305 +g1,18701:28956923,4812305 +g1,18701:29772190,4812305 +) +) +] +[1,18701:6630773,45706769:25952256,40108032,0 +(1,18701:6630773,45706769:25952256,40108032,0 +(1,18701:6630773,45706769:0,0,0 +g1,18701:6630773,45706769 +) +[1,18701:6630773,45706769:25952256,40108032,0 +v1,18634:6630773,6254097:0,393216,0 +(1,18634:6630773,6594780:25952256,733899,196608 +g1,18634:6630773,6594780 +g1,18634:6630773,6594780 +g1,18634:6434165,6594780 +(1,18634:6434165,6594780:0,733899,196608 +r1,18701:32779637,6594780:26345472,930507,196608 +k1,18634:6434165,6594780:-26345472 +) +(1,18634:6434165,6594780:26345472,733899,196608 +[1,18634:6630773,6594780:25952256,537291,0 +(1,18632:6630773,6481928:25952256,424439,112852 +h1,18632:6630773,6481928:0,0,0 +g1,18632:6962727,6481928 +g1,18632:7294681,6481928 +g1,18632:7626635,6481928 +g1,18632:7958589,6481928 +g1,18632:8290543,6481928 +g1,18632:8622497,6481928 +g1,18632:8954451,6481928 +g1,18632:9286405,6481928 +g1,18632:9618359,6481928 +g1,18632:9950313,6481928 +g1,18632:10282267,6481928 +g1,18632:10614221,6481928 +g1,18632:10946175,6481928 +g1,18632:12937899,6481928 +g1,18632:13601807,6481928 +g1,18632:14597669,6481928 +g1,18632:16589393,6481928 +g1,18632:17253301,6481928 +g1,18632:18249163,6481928 +g1,18632:20240887,6481928 +g1,18632:20904795,6481928 +h1,18632:21900657,6481928:0,0,0 +k1,18632:32583029,6481928:10682372 +g1,18632:32583029,6481928 +) +] +) +g1,18634:32583029,6594780 +g1,18634:6630773,6594780 +g1,18634:6630773,6594780 +g1,18634:32583029,6594780 +g1,18634:32583029,6594780 +) +h1,18634:6630773,6791388:0,0,0 +(1,18638:6630773,7656468:25952256,513147,134348 +h1,18637:6630773,7656468:983040,0,0 +k1,18637:9891290,7656468:159353 +k1,18637:11450492,7656468:159353 +k1,18637:13345238,7656468:159353 +k1,18637:14453553,7656468:159354 +k1,18637:17465033,7656468:159353 +k1,18637:19708431,7656468:159353 +k1,18637:20399281,7656468:159353 +k1,18637:23853129,7656468:159353 +k1,18637:24628520,7656468:159353 +k1,18637:25806959,7656468:159354 +k1,18637:27705638,7656468:159353 +k1,18637:29258942,7656468:159353 +k1,18637:31931601,7656468:159353 +k1,18637:32583029,7656468:0 +) +(1,18638:6630773,8521548:25952256,513147,134348 +k1,18637:8405226,8521548:176685 +k1,18637:9808090,8521548:176685 +k1,18637:10600813,8521548:176685 +k1,18637:12144579,8521548:176685 +k1,18637:12980556,8521548:176685 +k1,18637:15542752,8521548:176685 +k1,18637:17830352,8521548:176685 +k1,18637:18816406,8521548:176684 +k1,18637:19348951,8521548:176685 +k1,18637:22895497,8521548:176685 +k1,18637:24863936,8521548:176685 +k1,18637:25994170,8521548:176685 +k1,18637:27353780,8521548:176685 +k1,18637:28733706,8521548:176685 +k1,18637:31189078,8521548:176685 +k1,18637:32583029,8521548:0 +) +(1,18638:6630773,9386628:25952256,513147,126483 +k1,18637:7202304,9386628:215671 +k1,18637:9542651,9386628:215670 +k1,18637:12593409,9386628:215671 +k1,18637:14694551,9386628:215671 +k1,18637:16376918,9386628:215671 +k1,18637:17058549,9386628:215670 +k1,18637:18340491,9386628:215671 +k1,18637:19910136,9386628:215671 +k1,18637:22276699,9386628:215671 +k1,18637:26855756,9386628:215670 +k1,18637:28355933,9386628:215671 +(1,18637:28355933,9386628:0,452978,122846 +r1,18701:32583029,9386628:4227096,575824,122846 +k1,18637:28355933,9386628:-4227096 +) +(1,18637:28355933,9386628:4227096,452978,122846 +k1,18637:28355933,9386628:3277 +h1,18637:32579752,9386628:0,411205,112570 +) +k1,18637:32583029,9386628:0 +) +(1,18638:6630773,10251708:25952256,505283,134348 +k1,18637:9359733,10251708:175677 +k1,18637:10681636,10251708:175678 +k1,18637:11213173,10251708:175677 +k1,18637:14267847,10251708:175677 +k1,18637:16469243,10251708:175678 +k1,18637:19652367,10251708:175677 +k1,18637:21019489,10251708:175677 +k1,18637:22479672,10251708:175677 +k1,18637:23011210,10251708:175678 +k1,18637:24752542,10251708:175677 +k1,18637:26032501,10251708:175677 +k1,18637:26955945,10251708:175678 +k1,18637:28150707,10251708:175677 +k1,18637:29701985,10251708:175677 +k1,18637:31435454,10251708:175678 +k1,18637:32227169,10251708:175677 +k1,18637:32583029,10251708:0 +) +(1,18638:6630773,11116788:25952256,513147,134348 +k1,18637:8828849,11116788:172358 +k1,18637:9467168,11116788:172358 +k1,18637:12169215,11116788:172357 +k1,18637:13538260,11116788:172358 +k1,18637:16376623,11116788:172358 +k1,18637:17208273,11116788:172358 +k1,18637:20051877,11116788:172357 +k1,18637:22120192,11116788:172358 +k1,18637:23686501,11116788:172358 +k1,18637:24214719,11116788:172358 +k1,18637:26260095,11116788:172357 +k1,18637:27532147,11116788:172358 +k1,18637:28355933,11116788:172358 +(1,18637:28355933,11116788:0,452978,122846 +r1,18701:32583029,11116788:4227096,575824,122846 +k1,18637:28355933,11116788:-4227096 +) +(1,18637:28355933,11116788:4227096,452978,122846 +k1,18637:28355933,11116788:3277 +h1,18637:32579752,11116788:0,411205,112570 +) +k1,18637:32583029,11116788:0 +) +(1,18638:6630773,11981868:25952256,513147,134348 +g1,18637:7591530,11981868 +g1,18637:10218213,11981868 +g1,18637:10773302,11981868 +(1,18637:10773302,11981868:0,452978,115847 +r1,18701:12890127,11981868:2116825,568825,115847 +k1,18637:10773302,11981868:-2116825 +) +(1,18637:10773302,11981868:2116825,452978,115847 +k1,18637:10773302,11981868:3277 +h1,18637:12886850,11981868:0,411205,112570 +) +g1,18637:13089356,11981868 +g1,18637:14682536,11981868 +g1,18637:17553012,11981868 +g1,18637:19286439,11981868 +g1,18637:20171830,11981868 +g1,18637:21141762,11981868 +g1,18637:24413319,11981868 +g1,18637:25560199,11981868 +(1,18637:25560199,11981868:0,452978,115847 +r1,18701:26973600,11981868:1413401,568825,115847 +k1,18637:25560199,11981868:-1413401 +) +(1,18637:25560199,11981868:1413401,452978,115847 +k1,18637:25560199,11981868:3277 +h1,18637:26970323,11981868:0,411205,112570 +) +g1,18637:27172829,11981868 +g1,18637:27903555,11981868 +g1,18637:29388600,11981868 +k1,18638:32583029,11981868:390799 +g1,18638:32583029,11981868 +) +v1,18640:6630773,12666723:0,393216,0 +(1,18651:6630773,17768361:25952256,5494854,196608 +g1,18651:6630773,17768361 +g1,18651:6630773,17768361 +g1,18651:6434165,17768361 +(1,18651:6434165,17768361:0,5494854,196608 +r1,18701:32779637,17768361:26345472,5691462,196608 +k1,18651:6434165,17768361:-26345472 +) +(1,18651:6434165,17768361:26345472,5494854,196608 +[1,18651:6630773,17768361:25952256,5298246,0 +(1,18642:6630773,12894554:25952256,424439,106246 +(1,18641:6630773,12894554:0,0,0 +g1,18641:6630773,12894554 +g1,18641:6630773,12894554 +g1,18641:6303093,12894554 +(1,18641:6303093,12894554:0,0,0 +) +g1,18641:6630773,12894554 +) +g1,18642:8622497,12894554 +g1,18642:9618359,12894554 +g1,18642:13933761,12894554 +g1,18642:14597669,12894554 +k1,18642:14597669,12894554:0 +h1,18642:15261577,12894554:0,0,0 +k1,18642:32583029,12894554:17321452 +g1,18642:32583029,12894554 +) +(1,18643:6630773,13579409:25952256,424439,86428 +h1,18643:6630773,13579409:0,0,0 +g1,18643:6962727,13579409 +g1,18643:7294681,13579409 +g1,18643:7626635,13579409 +g1,18643:7958589,13579409 +g1,18643:8290543,13579409 +g1,18643:8622497,13579409 +g1,18643:8954451,13579409 +g1,18643:9286405,13579409 +g1,18643:9618359,13579409 +g1,18643:9950313,13579409 +g1,18643:10282267,13579409 +g1,18643:10614221,13579409 +g1,18643:10946175,13579409 +g1,18643:11278129,13579409 +g1,18643:11610083,13579409 +g1,18643:11942037,13579409 +g1,18643:13933761,13579409 +g1,18643:14597669,13579409 +k1,18643:14597669,13579409:0 +h1,18643:15925485,13579409:0,0,0 +k1,18643:32583029,13579409:16657544 +g1,18643:32583029,13579409 +) +(1,18644:6630773,14264264:25952256,424439,86428 +h1,18644:6630773,14264264:0,0,0 +g1,18644:6962727,14264264 +g1,18644:7294681,14264264 +g1,18644:7626635,14264264 +g1,18644:7958589,14264264 +g1,18644:8290543,14264264 +g1,18644:8622497,14264264 +g1,18644:8954451,14264264 +g1,18644:9286405,14264264 +g1,18644:9618359,14264264 +g1,18644:9950313,14264264 +g1,18644:10282267,14264264 +g1,18644:10614221,14264264 +g1,18644:10946175,14264264 +g1,18644:11278129,14264264 +g1,18644:11610083,14264264 +g1,18644:11942037,14264264 +g1,18644:13933761,14264264 +g1,18644:14597669,14264264 +k1,18644:14597669,14264264:0 +h1,18644:17253301,14264264:0,0,0 +k1,18644:32583029,14264264:15329728 +g1,18644:32583029,14264264 +) +(1,18645:6630773,14949119:25952256,424439,79822 +h1,18645:6630773,14949119:0,0,0 +g1,18645:6962727,14949119 +g1,18645:7294681,14949119 +g1,18645:7626635,14949119 +g1,18645:7958589,14949119 +g1,18645:8290543,14949119 +g1,18645:8622497,14949119 +g1,18645:8954451,14949119 +g1,18645:9286405,14949119 +g1,18645:9618359,14949119 +g1,18645:9950313,14949119 +g1,18645:10282267,14949119 +g1,18645:10614221,14949119 +g1,18645:10946175,14949119 +g1,18645:11278129,14949119 +g1,18645:11610083,14949119 +g1,18645:11942037,14949119 +g1,18645:13933761,14949119 +g1,18645:14597669,14949119 +h1,18645:17253301,14949119:0,0,0 +k1,18645:32583029,14949119:15329728 +g1,18645:32583029,14949119 +) +(1,18646:6630773,15633974:25952256,424439,106246 +h1,18646:6630773,15633974:0,0,0 +g1,18646:9286405,15633974 +g1,18646:10282267,15633974 +g1,18646:13269853,15633974 +g1,18646:13933761,15633974 +g1,18646:14929623,15633974 +g1,18646:15593531,15633974 +g1,18646:16257439,15633974 +g1,18646:17253301,15633974 +g1,18646:21236748,15633974 +g1,18646:21900656,15633974 +k1,18646:21900656,15633974:0 +h1,18646:25884103,15633974:0,0,0 +k1,18646:32583029,15633974:6698926 +g1,18646:32583029,15633974 +) +(1,18647:6630773,16318829:25952256,424439,112852 +h1,18647:6630773,16318829:0,0,0 +g1,18647:11942036,16318829 +g1,18647:14597668,16318829 +g1,18647:15261576,16318829 +g1,18647:17585254,16318829 +g1,18647:18581116,16318829 +g1,18647:20572840,16318829 +g1,18647:21236748,16318829 +g1,18647:25884103,16318829 +h1,18647:26216057,16318829:0,0,0 +k1,18647:32583029,16318829:6366972 +g1,18647:32583029,16318829 +) +(1,18648:6630773,17003684:25952256,424439,112852 +h1,18648:6630773,17003684:0,0,0 +g1,18648:6962727,17003684 +g1,18648:7294681,17003684 +g1,18648:14929621,17003684 +g1,18648:15593529,17003684 +g1,18648:17585253,17003684 +g1,18648:19245023,17003684 +g1,18648:19908931,17003684 +g1,18648:20904793,17003684 +g1,18648:22896517,17003684 +g1,18648:23560425,17003684 +g1,18648:25552149,17003684 +h1,18648:25884103,17003684:0,0,0 +k1,18648:32583029,17003684:6698926 +g1,18648:32583029,17003684 +) +(1,18649:6630773,17688539:25952256,424439,79822 +h1,18649:6630773,17688539:0,0,0 +g1,18649:6962727,17688539 +g1,18649:7294681,17688539 +k1,18649:7294681,17688539:0 +h1,18649:11278128,17688539:0,0,0 +k1,18649:32583028,17688539:21304900 +g1,18649:32583028,17688539 +) +] +) +g1,18651:32583029,17768361 +g1,18651:6630773,17768361 +g1,18651:6630773,17768361 +g1,18651:32583029,17768361 +g1,18651:32583029,17768361 +) +h1,18651:6630773,17964969:0,0,0 +v1,18655:6630773,18830049:0,393216,0 +(1,18656:6630773,21002855:25952256,2566022,0 +g1,18656:6630773,21002855 +g1,18656:6237557,21002855 +r1,18701:6368629,21002855:131072,2566022,0 +g1,18656:6567858,21002855 +g1,18656:6764466,21002855 +[1,18656:6764466,21002855:25818563,2566022,0 +(1,18656:6764466,19138347:25818563,701514,196608 +(1,18655:6764466,19138347:0,701514,196608 +r1,18701:8010564,19138347:1246098,898122,196608 +k1,18655:6764466,19138347:-1246098 +) +(1,18655:6764466,19138347:1246098,701514,196608 +) +k1,18655:8177128,19138347:166564 +k1,18655:8504808,19138347:327680 +k1,18655:9868060,19138347:166565 +k1,18655:13042071,19138347:166564 +(1,18655:13042071,19138347:0,452978,122846 +r1,18701:17269167,19138347:4227096,575824,122846 +k1,18655:13042071,19138347:-4227096 +) +(1,18655:13042071,19138347:4227096,452978,122846 +k1,18655:13042071,19138347:3277 +h1,18655:17265890,19138347:0,411205,112570 +) +k1,18655:17435732,19138347:166565 +k1,18655:19025083,19138347:166564 +k1,18655:22217444,19138347:166564 +k1,18655:23951630,19138347:166565 +k1,18655:26698346,19138347:166564 +k1,18655:30122705,19138347:166565 +k1,18655:30940697,19138347:166564 +k1,18655:32583029,19138347:0 +) +(1,18656:6764466,20003427:25818563,513147,134348 +k1,18655:7301773,20003427:181447 +k1,18655:10432996,20003427:181448 +k1,18655:12573969,20003427:181447 +k1,18655:13703068,20003427:181448 +k1,18655:14903600,20003427:181447 +k1,18655:16824373,20003427:181447 +k1,18655:18202508,20003427:181448 +k1,18655:19476440,20003427:181447 +k1,18655:20317180,20003427:181448 +k1,18655:22064282,20003427:181447 +k1,18655:24562427,20003427:181447 +k1,18655:25951048,20003427:181448 +k1,18655:27198766,20003427:181447 +k1,18655:28345559,20003427:181448 +k1,18655:31821501,20003427:181447 +k1,18655:32583029,20003427:0 +) +(1,18656:6764466,20868507:25818563,513147,134348 +g1,18655:8166936,20868507 +g1,18655:11355917,20868507 +g1,18655:12167908,20868507 +g1,18655:13386222,20868507 +g1,18655:15010859,20868507 +g1,18655:15869380,20868507 +k1,18656:32583029,20868507:14282263 +g1,18656:32583029,20868507 +) +] +g1,18656:32583029,21002855 +) +h1,18656:6630773,21002855:0,0,0 +(1,18661:6630773,21867935:25952256,513147,134348 +h1,18660:6630773,21867935:983040,0,0 +k1,18660:10889273,21867935:180195 +(1,18660:10889273,21867935:0,452978,122846 +r1,18701:14764657,21867935:3875384,575824,122846 +k1,18660:10889273,21867935:-3875384 +) +(1,18660:10889273,21867935:3875384,452978,122846 +k1,18660:10889273,21867935:3277 +h1,18660:14761380,21867935:0,411205,112570 +) +k1,18660:14944851,21867935:180194 +k1,18660:17051804,21867935:180195 +k1,18660:19015234,21867935:180195 +k1,18660:20341653,21867935:180194 +(1,18660:20341653,21867935:0,452978,122846 +r1,18701:24568749,21867935:4227096,575824,122846 +k1,18660:20341653,21867935:-4227096 +) +(1,18660:20341653,21867935:4227096,452978,122846 +k1,18660:20341653,21867935:3277 +h1,18660:24565472,21867935:0,411205,112570 +) +k1,18660:24922614,21867935:180195 +k1,18660:26174978,21867935:180195 +k1,18660:28682355,21867935:180194 +k1,18660:29521842,21867935:180195 +k1,18660:32583029,21867935:0 +) +(1,18661:6630773,22733015:25952256,513147,126483 +k1,18660:7136389,22733015:149756 +k1,18660:8279670,22733015:149755 +k1,18660:9088718,22733015:149756 +k1,18660:10627836,22733015:149755 +k1,18660:12984189,22733015:149756 +k1,18660:13816830,22733015:149756 +k1,18660:16108302,22733015:149755 +k1,18660:16909486,22733015:149756 +k1,18660:17807007,22733015:149755 +k1,18660:20542158,22733015:149756 +k1,18660:21343341,22733015:149755 +k1,18660:22512182,22733015:149756 +(1,18660:22512182,22733015:0,452978,115847 +r1,18701:24277295,22733015:1765113,568825,115847 +k1,18660:22512182,22733015:-1765113 +) +(1,18660:22512182,22733015:1765113,452978,115847 +k1,18660:22512182,22733015:3277 +h1,18660:24274018,22733015:0,411205,112570 +) +k1,18660:24427051,22733015:149756 +k1,18660:27925040,22733015:149755 +k1,18660:28532893,22733015:149756 +k1,18660:31083887,22733015:149755 +k1,18660:31589503,22733015:149756 +k1,18660:32583029,22733015:0 +) +(1,18661:6630773,23598095:25952256,513147,134348 +k1,18660:7481241,23598095:191176 +k1,18660:10028435,23598095:191175 +k1,18660:12716533,23598095:191176 +k1,18660:13567000,23598095:191175 +k1,18660:15313345,23598095:191176 +(1,18660:15313345,23598095:0,414482,122846 +r1,18701:16023323,23598095:709978,537328,122846 +k1,18660:15313345,23598095:-709978 +) +(1,18660:15313345,23598095:709978,414482,122846 +k1,18660:15313345,23598095:3277 +h1,18660:16020046,23598095:0,411205,112570 +) +k1,18660:16595262,23598095:191175 +k1,18660:18167282,23598095:191176 +k1,18660:20370412,23598095:191175 +k1,18660:22749180,23598095:191176 +k1,18660:23626517,23598095:191175 +k1,18660:24588396,23598095:191176 +k1,18660:26330153,23598095:191175 +k1,18660:27172757,23598095:191176 +k1,18660:27719792,23598095:191175 +k1,18660:30110356,23598095:191176 +k1,18660:32583029,23598095:0 +) +(1,18661:6630773,24463175:25952256,513147,134348 +k1,18660:9006409,24463175:176248 +k1,18660:9810492,24463175:176248 +k1,18660:11005825,24463175:176248 +k1,18660:12937783,24463175:176248 +k1,18660:14812069,24463175:176248 +k1,18660:16595915,24463175:176248 +k1,18660:18276214,24463175:176248 +k1,18660:20058750,24463175:176249 +k1,18660:22589707,24463175:176248 +k1,18660:24159906,24463175:176248 +k1,18660:25941786,24463175:176248 +k1,18660:27126633,24463175:176248 +k1,18660:28112251,24463175:176248 +k1,18660:30295211,24463175:176248 +k1,18660:31490544,24463175:176248 +k1,18660:32583029,24463175:0 +) +(1,18661:6630773,25328255:25952256,513147,126483 +k1,18660:7552763,25328255:262698 +k1,18660:9366044,25328255:262699 +k1,18660:11236340,25328255:262698 +k1,18660:12706212,25328255:262699 +k1,18660:14619107,25328255:262698 +k1,18660:17620556,25328255:262699 +k1,18660:19325701,25328255:262698 +k1,18660:22916318,25328255:262699 +k1,18660:24741394,25328255:262698 +k1,18660:26611691,25328255:262699 +k1,18660:27978671,25328255:262698 +k1,18660:28989136,25328255:262699 +k1,18660:30605808,25328255:262698 +k1,18660:32583029,25328255:0 +) +(1,18661:6630773,26193335:25952256,513147,134348 +k1,18660:7824032,26193335:245608 +k1,18660:11687884,26193335:245609 +k1,18660:12742862,26193335:245608 +k1,18660:14640634,26193335:245609 +k1,18660:15545534,26193335:245608 +k1,18660:16147003,26193335:245609 +k1,18660:17984481,26193335:245608 +k1,18660:19507387,26193335:245609 +k1,18660:21671889,26193335:245608 +k1,18660:25989250,26193335:245609 +k1,18660:27226418,26193335:245608 +k1,18660:30198325,26193335:245609 +k1,18660:31635378,26193335:245608 +k1,18660:32583029,26193335:0 +) +(1,18661:6630773,27058415:25952256,505283,134348 +k1,18660:10074690,27058415:158597 +k1,18660:13741429,27058415:158597 +k1,18660:15754695,27058415:158597 +k1,18660:16722662,27058415:158597 +k1,18660:17900344,27058415:158597 +k1,18660:22130693,27058415:158597 +k1,18660:24364815,27058415:158597 +k1,18660:25139450,27058415:158597 +k1,18660:26317132,27058415:158597 +k1,18660:28067599,27058415:158597 +k1,18660:29677163,27058415:158597 +k1,18660:31032447,27058415:158597 +k1,18660:32583029,27058415:0 +) +(1,18661:6630773,27923495:25952256,513147,126483 +k1,18660:8450909,27923495:212538 +k1,18660:9655007,27923495:212538 +k1,18660:11985013,27923495:212538 +k1,18660:12813590,27923495:212539 +k1,18660:16143676,27923495:212538 +k1,18660:18241685,27923495:212538 +k1,18660:20742085,27923495:212538 +k1,18660:21973708,27923495:212538 +k1,18660:25861505,27923495:212538 +k1,18660:26733336,27923495:212539 +k1,18660:27964959,27923495:212538 +k1,18660:29728079,27923495:212538 +k1,18660:31391584,27923495:212538 +k1,18660:32583029,27923495:0 +) +(1,18661:6630773,28788575:25952256,513147,122846 +k1,18660:9994713,28788575:189376 +(1,18660:9994713,28788575:0,452978,122846 +r1,18701:13166673,28788575:3171960,575824,122846 +k1,18660:9994713,28788575:-3171960 +) +(1,18660:9994713,28788575:3171960,452978,122846 +k1,18660:9994713,28788575:3277 +h1,18660:13163396,28788575:0,411205,112570 +) +k1,18660:13356049,28788575:189376 +k1,18660:14736870,28788575:189376 +(1,18660:14736870,28788575:0,452978,115847 +r1,18701:17557119,28788575:2820249,568825,115847 +k1,18660:14736870,28788575:-2820249 +) +(1,18660:14736870,28788575:2820249,452978,115847 +k1,18660:14736870,28788575:3277 +h1,18660:17553842,28788575:0,411205,112570 +) +k1,18660:17746495,28788575:189376 +k1,18660:20223733,28788575:189376 +k1,18660:21921748,28788575:189376 +k1,18660:25759513,28788575:189376 +k1,18660:28544770,28788575:189376 +k1,18660:29393438,28788575:189376 +k1,18660:30715276,28788575:189376 +k1,18660:31563944,28788575:189376 +k1,18660:32583029,28788575:0 +) +(1,18661:6630773,29653655:25952256,513147,134348 +k1,18660:8922052,29653655:281945 +k1,18660:10395442,29653655:281945 +k1,18660:12492079,29653655:281945 +k1,18660:13433316,29653655:281945 +k1,18660:14734346,29653655:281945 +k1,18660:17540738,29653655:281945 +k1,18660:19170104,29653655:281946 +k1,18660:20111341,29653655:281945 +k1,18660:21412371,29653655:281945 +k1,18660:23286186,29653655:281945 +k1,18660:25019098,29653655:281945 +k1,18660:27795343,29653655:281945 +k1,18660:29181570,29653655:281945 +k1,18660:30211281,29653655:281945 +k1,18660:32583029,29653655:0 +) +(1,18661:6630773,30518735:25952256,505283,126483 +g1,18660:10098938,30518735 +g1,18660:10949595,30518735 +g1,18660:12167909,30518735 +g1,18660:13959008,30518735 +g1,18660:15349682,30518735 +g1,18660:17099493,30518735 +k1,18661:32583029,30518735:13702267 +g1,18661:32583029,30518735 +) +(1,18663:6630773,31383815:25952256,513147,126483 +h1,18662:6630773,31383815:983040,0,0 +k1,18662:8529250,31383815:287602 +k1,18662:9835937,31383815:287602 +k1,18662:11429672,31383815:287602 +k1,18662:14378692,31383815:287603 +k1,18662:15325586,31383815:287602 +k1,18662:17163770,31383815:287602 +k1,18662:19232641,31383815:287602 +k1,18662:20388595,31383815:287602 +k1,18662:23013866,31383815:287602 +k1,18662:24458179,31383815:287603 +k1,18662:25405073,31383815:287602 +k1,18662:26711760,31383815:287602 +k1,18662:30507504,31383815:287602 +k1,18662:32583029,31383815:0 +) +(1,18663:6630773,32248895:25952256,513147,134348 +g1,18662:8685326,32248895 +g1,18662:9570717,32248895 +g1,18662:10540649,32248895 +g1,18662:12290460,32248895 +g1,18662:14229015,32248895 +g1,18662:15381793,32248895 +g1,18662:16887155,32248895 +g1,18662:19015764,32248895 +g1,18662:19570853,32248895 +g1,18662:21581497,32248895 +g1,18662:25142723,32248895 +g1,18662:26361037,32248895 +g1,18662:27837563,32248895 +g1,18662:28688220,32248895 +g1,18662:29635215,32248895 +k1,18663:32583029,32248895:1223562 +g1,18663:32583029,32248895 +) +v1,18665:6630773,32933750:0,393216,0 +(1,18678:6630773,39415006:25952256,6874472,196608 +g1,18678:6630773,39415006 +g1,18678:6630773,39415006 +g1,18678:6434165,39415006 +(1,18678:6434165,39415006:0,6874472,196608 +r1,18701:32779637,39415006:26345472,7071080,196608 +k1,18678:6434165,39415006:-26345472 +) +(1,18678:6434165,39415006:26345472,6874472,196608 +[1,18678:6630773,39415006:25952256,6677864,0 +(1,18667:6630773,33145065:25952256,407923,9908 +(1,18666:6630773,33145065:0,0,0 +g1,18666:6630773,33145065 +g1,18666:6630773,33145065 +g1,18666:6303093,33145065 +(1,18666:6303093,33145065:0,0,0 +) +g1,18666:6630773,33145065 +) +g1,18667:8954451,33145065 +k1,18667:8954451,33145065:0 +h1,18667:10282267,33145065:0,0,0 +k1,18667:32583029,33145065:22300762 +g1,18667:32583029,33145065 +) +(1,18668:6630773,33829920:25952256,424439,112852 +h1,18668:6630773,33829920:0,0,0 +g1,18668:6962727,33829920 +g1,18668:7294681,33829920 +g1,18668:11278128,33829920 +g1,18668:12937898,33829920 +k1,18668:12937898,33829920:0 +h1,18668:14265714,33829920:0,0,0 +k1,18668:32583030,33829920:18317316 +g1,18668:32583030,33829920 +) +(1,18669:6630773,34514775:25952256,424439,112852 +h1,18669:6630773,34514775:0,0,0 +g1,18669:6962727,34514775 +g1,18669:7294681,34514775 +g1,18669:11610082,34514775 +g1,18669:14597667,34514775 +g1,18669:15261575,34514775 +g1,18669:18913069,34514775 +k1,18669:18913069,34514775:0 +h1,18669:20240885,34514775:0,0,0 +k1,18669:32583029,34514775:12342144 +g1,18669:32583029,34514775 +) +(1,18670:6630773,35199630:25952256,424439,112852 +h1,18670:6630773,35199630:0,0,0 +g1,18670:6962727,35199630 +g1,18670:7294681,35199630 +g1,18670:11278129,35199630 +g1,18670:11942037,35199630 +k1,18670:11942037,35199630:0 +h1,18670:12605945,35199630:0,0,0 +k1,18670:32583029,35199630:19977084 +g1,18670:32583029,35199630 +) +(1,18671:6630773,35884485:25952256,431045,112852 +h1,18671:6630773,35884485:0,0,0 +g1,18671:6962727,35884485 +g1,18671:7294681,35884485 +g1,18671:7626635,35884485 +g1,18671:7958589,35884485 +g1,18671:8290543,35884485 +g1,18671:8622497,35884485 +g1,18671:8954451,35884485 +g1,18671:9286405,35884485 +g1,18671:9618359,35884485 +g1,18671:15261577,35884485 +g1,18671:18581116,35884485 +g1,18671:20240886,35884485 +g1,18671:20904794,35884485 +g1,18671:25552150,35884485 +h1,18671:25884104,35884485:0,0,0 +k1,18671:32583029,35884485:6698925 +g1,18671:32583029,35884485 +) +(1,18672:6630773,36569340:25952256,431045,112852 +h1,18672:6630773,36569340:0,0,0 +g1,18672:6962727,36569340 +g1,18672:7294681,36569340 +g1,18672:15925483,36569340 +g1,18672:16589391,36569340 +g1,18672:19245023,36569340 +h1,18672:19576977,36569340:0,0,0 +k1,18672:32583029,36569340:13006052 +g1,18672:32583029,36569340 +) +(1,18673:6630773,37254195:25952256,424439,106246 +h1,18673:6630773,37254195:0,0,0 +g1,18673:6962727,37254195 +g1,18673:7294681,37254195 +g1,18673:15261576,37254195 +g1,18673:15925484,37254195 +g1,18673:17917208,37254195 +h1,18673:18249162,37254195:0,0,0 +k1,18673:32583029,37254195:14333867 +g1,18673:32583029,37254195 +) +(1,18674:6630773,37939050:25952256,424439,112852 +h1,18674:6630773,37939050:0,0,0 +g1,18674:6962727,37939050 +g1,18674:7294681,37939050 +g1,18674:7626635,37939050 +g1,18674:7958589,37939050 +g1,18674:11610082,37939050 +h1,18674:11942036,37939050:0,0,0 +k1,18674:32583028,37939050:20640992 +g1,18674:32583028,37939050 +) +(1,18675:6630773,38623905:25952256,424439,106246 +h1,18675:6630773,38623905:0,0,0 +g1,18675:6962727,38623905 +g1,18675:7294681,38623905 +g1,18675:7626635,38623905 +g1,18675:7958589,38623905 +g1,18675:11942036,38623905 +g1,18675:12937898,38623905 +h1,18675:15261576,38623905:0,0,0 +k1,18675:32583028,38623905:17321452 +g1,18675:32583028,38623905 +) +(1,18676:6630773,39308760:25952256,424439,106246 +h1,18676:6630773,39308760:0,0,0 +g1,18676:9286405,39308760 +g1,18676:10282267,39308760 +g1,18676:13269853,39308760 +g1,18676:13933761,39308760 +g1,18676:15593531,39308760 +g1,18676:16257439,39308760 +g1,18676:16921347,39308760 +g1,18676:18249163,39308760 +g1,18676:21900656,39308760 +g1,18676:22564564,39308760 +k1,18676:22564564,39308760:0 +h1,18676:27211919,39308760:0,0,0 +k1,18676:32583029,39308760:5371110 +g1,18676:32583029,39308760 +) +] +) +g1,18678:32583029,39415006 +g1,18678:6630773,39415006 +g1,18678:6630773,39415006 +g1,18678:32583029,39415006 +g1,18678:32583029,39415006 +) +h1,18678:6630773,39611614:0,0,0 +v1,18682:6630773,40296469:0,393216,0 +(1,18692:6630773,44746282:25952256,4843029,196608 +g1,18692:6630773,44746282 +g1,18692:6630773,44746282 +g1,18692:6434165,44746282 +(1,18692:6434165,44746282:0,4843029,196608 +r1,18701:32779637,44746282:26345472,5039637,196608 +k1,18692:6434165,44746282:-26345472 +) +(1,18692:6434165,44746282:26345472,4843029,196608 +[1,18692:6630773,44746282:25952256,4646421,0 +(1,18684:6630773,40524300:25952256,424439,112852 +(1,18683:6630773,40524300:0,0,0 +g1,18683:6630773,40524300 +g1,18683:6630773,40524300 +g1,18683:6303093,40524300 +(1,18683:6303093,40524300:0,0,0 +) +g1,18683:6630773,40524300 +) +k1,18684:6630773,40524300:0 +g1,18684:10614221,40524300 +g1,18684:11278129,40524300 +g1,18684:13933761,40524300 +g1,18684:15925485,40524300 +g1,18684:16589393,40524300 +g1,18684:18581117,40524300 +g1,18684:19245025,40524300 +g1,18684:19908933,40524300 +k1,18684:19908933,40524300:0 +h1,18684:21236749,40524300:0,0,0 +k1,18684:32583029,40524300:11346280 +g1,18684:32583029,40524300 +) +(1,18685:6630773,41209155:25952256,431045,106246 +h1,18685:6630773,41209155:0,0,0 +g1,18685:6962727,41209155 +g1,18685:7294681,41209155 +g1,18685:7626635,41209155 +g1,18685:7958589,41209155 +g1,18685:8290543,41209155 +g1,18685:8622497,41209155 +g1,18685:8954451,41209155 +g1,18685:9286405,41209155 +g1,18685:9618359,41209155 +g1,18685:9950313,41209155 +g1,18685:10282267,41209155 +g1,18685:10614221,41209155 +g1,18685:10946175,41209155 +g1,18685:11278129,41209155 +g1,18685:11610083,41209155 +g1,18685:11942037,41209155 +g1,18685:12273991,41209155 +g1,18685:12605945,41209155 +g1,18685:12937899,41209155 +g1,18685:13269853,41209155 +g1,18685:13601807,41209155 +g1,18685:13933761,41209155 +g1,18685:14265715,41209155 +g1,18685:14597669,41209155 +g1,18685:14929623,41209155 +g1,18685:15261577,41209155 +g1,18685:17253301,41209155 +g1,18685:17917209,41209155 +g1,18685:22564565,41209155 +h1,18685:22896519,41209155:0,0,0 +k1,18685:32583029,41209155:9686510 +g1,18685:32583029,41209155 +) +(1,18686:6630773,41894010:25952256,424439,112852 +h1,18686:6630773,41894010:0,0,0 +g1,18686:6962727,41894010 +g1,18686:7294681,41894010 +g1,18686:11610082,41894010 +h1,18686:11942036,41894010:0,0,0 +k1,18686:32583028,41894010:20640992 +g1,18686:32583028,41894010 +) +(1,18687:6630773,42578865:25952256,424439,112852 +h1,18687:6630773,42578865:0,0,0 +g1,18687:6962727,42578865 +g1,18687:7294681,42578865 +g1,18687:12273990,42578865 +g1,18687:12937898,42578865 +k1,18687:12937898,42578865:0 +h1,18687:15593530,42578865:0,0,0 +k1,18687:32583030,42578865:16989500 +g1,18687:32583030,42578865 +) +(1,18688:6630773,43263720:25952256,424439,106246 +h1,18688:6630773,43263720:0,0,0 +g1,18688:6962727,43263720 +g1,18688:7294681,43263720 +g1,18688:7626635,43263720 +g1,18688:7958589,43263720 +g1,18688:8290543,43263720 +g1,18688:8622497,43263720 +g1,18688:8954451,43263720 +g1,18688:9286405,43263720 +g1,18688:9618359,43263720 +g1,18688:9950313,43263720 +g1,18688:10282267,43263720 +g1,18688:10614221,43263720 +g1,18688:12605945,43263720 +g1,18688:13269853,43263720 +g1,18688:14265715,43263720 +g1,18688:14929623,43263720 +g1,18688:15593531,43263720 +g1,18688:16589393,43263720 +g1,18688:18581117,43263720 +g1,18688:19245025,43263720 +k1,18688:19245025,43263720:0 +h1,18688:23228472,43263720:0,0,0 +k1,18688:32583029,43263720:9354557 +g1,18688:32583029,43263720 +) +(1,18689:6630773,43948575:25952256,424439,106246 +h1,18689:6630773,43948575:0,0,0 +g1,18689:6962727,43948575 +g1,18689:7294681,43948575 +g1,18689:7626635,43948575 +g1,18689:7958589,43948575 +g1,18689:8290543,43948575 +g1,18689:8622497,43948575 +g1,18689:8954451,43948575 +g1,18689:9286405,43948575 +g1,18689:9618359,43948575 +g1,18689:9950313,43948575 +g1,18689:10282267,43948575 +g1,18689:10614221,43948575 +g1,18689:13601806,43948575 +g1,18689:14265714,43948575 +k1,18689:14265714,43948575:0 +h1,18689:15593530,43948575:0,0,0 +k1,18689:32583030,43948575:16989500 +g1,18689:32583030,43948575 +) +(1,18690:6630773,44633430:25952256,424439,112852 +h1,18690:6630773,44633430:0,0,0 +g1,18690:6962727,44633430 +g1,18690:7294681,44633430 +g1,18690:7626635,44633430 +g1,18690:7958589,44633430 +g1,18690:8290543,44633430 +g1,18690:8622497,44633430 +g1,18690:8954451,44633430 +g1,18690:9286405,44633430 +g1,18690:9618359,44633430 +g1,18690:9950313,44633430 +g1,18690:10282267,44633430 +g1,18690:10614221,44633430 +g1,18690:12605945,44633430 +g1,18690:13269853,44633430 +g1,18690:16589392,44633430 +g1,18690:18581116,44633430 +g1,18690:19245024,44633430 +h1,18690:22232609,44633430:0,0,0 +k1,18690:32583029,44633430:10350420 +g1,18690:32583029,44633430 +) +] +) +g1,18692:32583029,44746282 +g1,18692:6630773,44746282 +g1,18692:6630773,44746282 +g1,18692:32583029,44746282 +g1,18692:32583029,44746282 +) +h1,18692:6630773,44942890:0,0,0 +] +(1,18701:32583029,45706769:0,0,0 +g1,18701:32583029,45706769 +) +) +] +(1,18701:6630773,47279633:25952256,0,0 +h1,18701:6630773,47279633:25952256,0,0 +) +] +(1,18701:4262630,4025873:0,0,0 +[1,18701:-473656,4025873:0,0,0 +(1,18701:-473656,-710413:0,0,0 +(1,18701:-473656,-710413:0,0,0 +g1,18701:-473656,-710413 +) +g1,18701:-473656,-710413 +) +] +) +] +!32762 +}311 +Input:2911:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2912:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2913:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2914:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2915:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2916:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2917:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2918:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2919:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2920:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2921:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2922:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2923:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2924:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2925:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2926:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2927:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1422 -{331 -[1,18724:4262630,47279633:28320399,43253760,0 -(1,18724:4262630,4025873:0,0,0 -[1,18724:-473656,4025873:0,0,0 -(1,18724:-473656,-710413:0,0,0 -(1,18724:-473656,-644877:0,0,0 -k1,18724:-473656,-644877:-65536 +!576 +{312 +[1,18731:4262630,47279633:28320399,43253760,0 +(1,18731:4262630,4025873:0,0,0 +[1,18731:-473656,4025873:0,0,0 +(1,18731:-473656,-710413:0,0,0 +(1,18731:-473656,-644877:0,0,0 +k1,18731:-473656,-644877:-65536 ) -(1,18724:-473656,4736287:0,0,0 -k1,18724:-473656,4736287:5209943 +(1,18731:-473656,4736287:0,0,0 +k1,18731:-473656,4736287:5209943 ) -g1,18724:-473656,-710413 +g1,18731:-473656,-710413 ) ] ) -[1,18724:6630773,47279633:25952256,43253760,0 -[1,18724:6630773,4812305:25952256,786432,0 -(1,18724:6630773,4812305:25952256,513147,126483 -(1,18724:6630773,4812305:25952256,513147,126483 -g1,18724:3078558,4812305 -[1,18724:3078558,4812305:0,0,0 -(1,18724:3078558,2439708:0,1703936,0 -k1,18724:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,18724:2537886,2439708:1179648,16384,0 +[1,18731:6630773,47279633:25952256,43253760,0 +[1,18731:6630773,4812305:25952256,786432,0 +(1,18731:6630773,4812305:25952256,485622,11795 +(1,18731:6630773,4812305:25952256,485622,11795 +g1,18731:3078558,4812305 +[1,18731:3078558,4812305:0,0,0 +(1,18731:3078558,2439708:0,1703936,0 +k1,18731:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,18731:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,18724:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,18731:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,18724:3078558,4812305:0,0,0 -(1,18724:3078558,2439708:0,1703936,0 -g1,18724:29030814,2439708 -g1,18724:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,18724:36151628,1915420:16384,1179648,0 +[1,18731:3078558,4812305:0,0,0 +(1,18731:3078558,2439708:0,1703936,0 +g1,18731:29030814,2439708 +g1,18731:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,18731:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,18724:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,18731:37855564,2439708:1179648,16384,0 ) ) -k1,18724:3078556,2439708:-34777008 +k1,18731:3078556,2439708:-34777008 ) ] -[1,18724:3078558,4812305:0,0,0 -(1,18724:3078558,49800853:0,16384,2228224 -k1,18724:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,18724:2537886,49800853:1179648,16384,0 +[1,18731:3078558,4812305:0,0,0 +(1,18731:3078558,49800853:0,16384,2228224 +k1,18731:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,18731:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,18724:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,18731:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,18724:3078558,4812305:0,0,0 -(1,18724:3078558,49800853:0,16384,2228224 -g1,18724:29030814,49800853 -g1,18724:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,18724:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] -) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,18724:37855564,49800853:1179648,16384,0 +[1,18731:3078558,4812305:0,0,0 +(1,18731:3078558,49800853:0,16384,2228224 +g1,18731:29030814,49800853 +g1,18731:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,18731:36151628,51504789:16384,1179648,0 ) -) -k1,18724:3078556,49800853:-34777008 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] -g1,18724:6630773,4812305 -k1,18724:21350816,4812305:13524666 -g1,18724:21999622,4812305 -g1,18724:25611966,4812305 -g1,18724:28956923,4812305 -g1,18724:29772190,4812305 ) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,18731:37855564,49800853:1179648,16384,0 ) -] -[1,18724:6630773,45706769:25952256,40108032,0 -(1,18724:6630773,45706769:25952256,40108032,0 -(1,18724:6630773,45706769:0,0,0 -g1,18724:6630773,45706769 ) -[1,18724:6630773,45706769:25952256,40108032,0 -(1,18670:6630773,14682403:25952256,9083666,0 -k1,18670:10523651,14682403:3892878 -h1,18669:10523651,14682403:0,0,0 -(1,18669:10523651,14682403:18166500,9083666,0 -(1,18669:10523651,14682403:18167376,9083688,0 -(1,18669:10523651,14682403:18167376,9083688,0 -(1,18669:10523651,14682403:0,9083688,0 -(1,18669:10523651,14682403:0,14208860,0 -(1,18669:10523651,14682403:28417720,14208860,0 +k1,18731:3078556,49800853:-34777008 ) -k1,18669:10523651,14682403:-28417720 -) -) -g1,18669:28691027,14682403 -) -) -) -g1,18670:28690151,14682403 -k1,18670:32583029,14682403:3892878 -) -(1,18677:6630773,15523891:25952256,513147,134348 -h1,18676:6630773,15523891:983040,0,0 -k1,18676:8682517,15523891:239674 -k1,18676:10359397,15523891:239675 -k1,18676:11285233,15523891:239674 -k1,18676:12295611,15523891:239675 -k1,18676:15607613,15523891:239674 -k1,18676:16203148,15523891:239675 -k1,18676:19138318,15523891:239674 -k1,18676:20662498,15523891:239674 -k1,18676:23243119,15523891:239675 -k1,18676:23838653,15523891:239674 -k1,18676:26280338,15523891:239675 -k1,18676:28200355,15523891:239674 -k1,18676:29586255,15523891:239675 -k1,18676:30845014,15523891:239674 -k1,18676:32583029,15523891:0 -) -(1,18677:6630773,16365379:25952256,513147,126483 -k1,18676:8219650,16365379:217864 -k1,18676:11874876,16365379:217863 -k1,18676:12775625,16365379:217864 -k1,18676:14695458,16365379:217863 -k1,18676:16901684,16365379:217864 -k1,18676:17987900,16365379:217864 -k1,18676:19298248,16365379:217863 -k1,18676:22796844,16365379:217864 -(1,18676:22796844,16365379:0,459977,115847 -r1,18724:25617093,16365379:2820249,575824,115847 -k1,18676:22796844,16365379:-2820249 -) -(1,18676:22796844,16365379:2820249,459977,115847 -k1,18676:22796844,16365379:3277 -h1,18676:25613816,16365379:0,411205,112570 -) -k1,18676:25834957,16365379:217864 -k1,18676:28380003,16365379:217863 -k1,18676:29265023,16365379:217864 -(1,18676:29265023,16365379:0,459977,115847 -r1,18724:30326712,16365379:1061689,575824,115847 -k1,18676:29265023,16365379:-1061689 -) -(1,18676:29265023,16365379:1061689,459977,115847 -k1,18676:29265023,16365379:3277 -h1,18676:30323435,16365379:0,411205,112570 -) -k1,18676:30718245,16365379:217863 -k1,18676:31563944,16365379:217864 -k1,18676:32583029,16365379:0 -) -(1,18677:6630773,17206867:25952256,513147,138281 -k1,18676:8266237,17206867:251344 -k1,18676:11178998,17206867:251344 -k1,18676:12298693,17206867:251343 -k1,18676:13747380,17206867:251344 -k1,18676:16067040,17206867:251344 -k1,18676:17509829,17206867:251344 -k1,18676:21198535,17206867:251343 -k1,18676:24206979,17206867:251344 -k1,18676:25405974,17206867:251344 -$1,18676:25405974,17206867 -k1,18676:26151209,17206867:277308 -k1,18676:26996714,17206867:277308 -$1,18676:28381490,17206867 -k1,18676:28632833,17206867:251343 -k1,18676:30110356,17206867:251344 -k1,18676:32583029,17206867:0 -) -(1,18677:6630773,18048355:25952256,505283,134348 -g1,18676:9871528,18048355 -k1,18677:32583029,18048355:19439944 -g1,18677:32583029,18048355 -) -v1,18679:6630773,19238821:0,393216,0 -(1,18683:6630773,19553918:25952256,708313,196608 -g1,18683:6630773,19553918 -g1,18683:6630773,19553918 -g1,18683:6434165,19553918 -(1,18683:6434165,19553918:0,708313,196608 -r1,18724:32779637,19553918:26345472,904921,196608 -k1,18683:6434165,19553918:-26345472 -) -(1,18683:6434165,19553918:26345472,708313,196608 -[1,18683:6630773,19553918:25952256,511705,0 -(1,18681:6630773,19452731:25952256,410518,101187 -(1,18680:6630773,19452731:0,0,0 -g1,18680:6630773,19452731 -g1,18680:6630773,19452731 -g1,18680:6303093,19452731 -(1,18680:6303093,19452731:0,0,0 -) -g1,18680:6630773,19452731 -) -g1,18681:6946919,19452731 -g1,18681:7263065,19452731 -g1,18681:14218270,19452731 -g1,18681:14850562,19452731 -g1,18681:20541185,19452731 -g1,18681:22438059,19452731 -g1,18681:23070351,19452731 -g1,18681:25283371,19452731 -g1,18681:26864100,19452731 -g1,18681:27496392,19452731 -g1,18681:28444830,19452731 -g1,18681:30341704,19452731 -g1,18681:30973996,19452731 -h1,18681:32238579,19452731:0,0,0 -k1,18681:32583029,19452731:344450 -g1,18681:32583029,19452731 -) -] -) -g1,18683:32583029,19553918 -g1,18683:6630773,19553918 -g1,18683:6630773,19553918 -g1,18683:32583029,19553918 -g1,18683:32583029,19553918 -) -h1,18683:6630773,19750526:0,0,0 -(1,18687:6630773,21116302:25952256,513147,138281 -h1,18686:6630773,21116302:983040,0,0 -k1,18686:8761588,21116302:194226 -k1,18686:10060097,21116302:194227 -k1,18686:12899356,21116302:194226 -k1,18686:14112668,21116302:194227 -k1,18686:16572474,21116302:194226 -k1,18686:17425993,21116302:194227 -$1,18686:17425993,21116302 -k1,18686:18075980,21116302:182060 -k1,18686:18826237,21116302:182060 -$1,18686:20211013,21116302 -k1,18686:20405239,21116302:194226 -k1,18686:21547117,21116302:194227 -k1,18686:25178706,21116302:194226 -k1,18686:28130033,21116302:194227 -k1,18686:29085787,21116302:194226 -k1,18686:31635378,21116302:194227 -k1,18686:32583029,21116302:0 -) -(1,18687:6630773,21957790:25952256,513147,134348 -k1,18686:9663667,21957790:197807 -(1,18686:9663667,21957790:0,459977,115847 -r1,18724:14945899,21957790:5282232,575824,115847 -k1,18686:9663667,21957790:-5282232 -) -(1,18686:9663667,21957790:5282232,459977,115847 -g1,18686:12832351,21957790 -g1,18686:13535775,21957790 -h1,18686:14942622,21957790:0,411205,112570 -) -k1,18686:15143706,21957790:197807 -k1,18686:15957551,21957790:197807 -k1,18686:17174443,21957790:197807 -k1,18686:18365776,21957790:197807 -k1,18686:19222875,21957790:197807 -k1,18686:22823311,21957790:197807 -k1,18686:25226405,21957790:197807 -k1,18686:26075640,21957790:197807 -k1,18686:27292532,21957790:197807 -k1,18686:30359505,21957790:197807 -k1,18686:31753999,21957790:197807 -k1,18687:32583029,21957790:0 -) -(1,18687:6630773,22799278:25952256,505283,134348 -k1,18686:8935316,22799278:163482 -k1,18686:10203081,22799278:163483 -k1,18686:11652379,22799278:163482 -k1,18686:12563628,22799278:163483 -k1,18686:15935753,22799278:163482 -k1,18686:18559458,22799278:163483 -k1,18686:21764466,22799278:163482 -k1,18686:25199506,22799278:163483 -k1,18686:27098381,22799278:163482 -k1,18686:28280949,22799278:163483 -k1,18686:31417799,22799278:163482 -k1,18687:32583029,22799278:0 -) -(1,18687:6630773,23640766:25952256,513147,126483 -k1,18686:9599183,23640766:139221 -k1,18686:12874956,23640766:139220 -k1,18686:14581798,23640766:139221 -k1,18686:15740104,23640766:139221 -k1,18686:17268687,23640766:139220 -k1,18686:18169436,23640766:139221 -k1,18686:21580870,23640766:139221 -k1,18686:22549121,23640766:139221 -k1,18686:25045671,23640766:139220 -k1,18686:26388133,23640766:139221 -k1,18686:27395706,23640766:139221 -k1,18686:28972131,23640766:139220 -k1,18686:29762780,23640766:139221 -(1,18686:29762780,23640766:0,459977,115847 -r1,18724:32583029,23640766:2820249,575824,115847 -k1,18686:29762780,23640766:-2820249 -) -(1,18686:29762780,23640766:2820249,459977,115847 -k1,18686:29762780,23640766:3277 -h1,18686:32579752,23640766:0,411205,112570 -) -k1,18686:32583029,23640766:0 -) -(1,18687:6630773,24482254:25952256,513147,134348 -g1,18686:7849087,24482254 -g1,18686:11120644,24482254 -(1,18686:11120644,24482254:0,452978,115847 -r1,18724:16051164,24482254:4930520,568825,115847 -k1,18686:11120644,24482254:-4930520 -) -(1,18686:11120644,24482254:4930520,452978,115847 -k1,18686:11120644,24482254:3277 -h1,18686:16047887,24482254:0,411205,112570 -) -g1,18686:16250393,24482254 -g1,18686:18776805,24482254 -g1,18686:19643190,24482254 -(1,18686:19643190,24482254:0,452978,115847 -r1,18724:25277133,24482254:5633943,568825,115847 -k1,18686:19643190,24482254:-5633943 -) -(1,18686:19643190,24482254:5633943,452978,115847 -k1,18686:19643190,24482254:3277 -h1,18686:25273856,24482254:0,411205,112570 -) -k1,18687:32583029,24482254:7132226 -g1,18687:32583029,24482254 -) -v1,18689:6630773,25672720:0,393216,0 -(1,18695:6630773,27320173:25952256,2040669,196608 -g1,18695:6630773,27320173 -g1,18695:6630773,27320173 -g1,18695:6434165,27320173 -(1,18695:6434165,27320173:0,2040669,196608 -r1,18724:32779637,27320173:26345472,2237277,196608 -k1,18695:6434165,27320173:-26345472 -) -(1,18695:6434165,27320173:26345472,2040669,196608 -[1,18695:6630773,27320173:25952256,1844061,0 -(1,18691:6630773,25886630:25952256,410518,101187 -(1,18690:6630773,25886630:0,0,0 -g1,18690:6630773,25886630 -g1,18690:6630773,25886630 -g1,18690:6303093,25886630 -(1,18690:6303093,25886630:0,0,0 -) -g1,18690:6630773,25886630 -) -g1,18691:6946919,25886630 -g1,18691:7263065,25886630 -g1,18691:14218270,25886630 -g1,18691:14850562,25886630 -k1,18691:14850562,25886630:0 -h1,18691:19592748,25886630:0,0,0 -k1,18691:32583029,25886630:12990281 -g1,18691:32583029,25886630 -) -(1,18692:6630773,26552808:25952256,410518,107478 -h1,18692:6630773,26552808:0,0,0 -g1,18692:6946919,26552808 -g1,18692:7263065,26552808 -g1,18692:7579211,26552808 -g1,18692:7895357,26552808 -g1,18692:8211503,26552808 -g1,18692:8527649,26552808 -g1,18692:8843795,26552808 -g1,18692:9159941,26552808 -g1,18692:9476087,26552808 -g1,18692:9792233,26552808 -g1,18692:10108379,26552808 -g1,18692:10424525,26552808 -g1,18692:10740671,26552808 -g1,18692:11056817,26552808 -g1,18692:11372963,26552808 -g1,18692:14218274,26552808 -g1,18692:14850566,26552808 -g1,18692:19276606,26552808 -g1,18692:19908898,26552808 -k1,18692:19908898,26552808:0 -h1,18692:21805773,26552808:0,0,0 -k1,18692:32583029,26552808:10777256 -g1,18692:32583029,26552808 -) -(1,18693:6630773,27218986:25952256,404226,101187 -h1,18693:6630773,27218986:0,0,0 -g1,18693:6946919,27218986 -g1,18693:7263065,27218986 -g1,18693:7579211,27218986 -g1,18693:7895357,27218986 -g1,18693:8211503,27218986 -g1,18693:8527649,27218986 -g1,18693:8843795,27218986 -g1,18693:9159941,27218986 -g1,18693:9476087,27218986 -g1,18693:9792233,27218986 -g1,18693:10108379,27218986 -g1,18693:10424525,27218986 -g1,18693:10740671,27218986 -g1,18693:11056817,27218986 -g1,18693:11372963,27218986 -g1,18693:13269837,27218986 -g1,18693:13902129,27218986 -g1,18693:16115149,27218986 -g1,18693:17695878,27218986 -g1,18693:18328170,27218986 -g1,18693:19276608,27218986 -g1,18693:21173482,27218986 -g1,18693:21805774,27218986 -h1,18693:23070357,27218986:0,0,0 -k1,18693:32583029,27218986:9512672 -g1,18693:32583029,27218986 -) -] -) -g1,18695:32583029,27320173 -g1,18695:6630773,27320173 -g1,18695:6630773,27320173 -g1,18695:32583029,27320173 -g1,18695:32583029,27320173 -) -h1,18695:6630773,27516781:0,0,0 -(1,18699:6630773,28882557:25952256,513147,126483 -h1,18698:6630773,28882557:983040,0,0 -g1,18698:8855064,28882557 -$1,18698:8855064,28882557 -[1,18698:8855064,28882557:502661,458096,7864 -(1,18698:9325611,28874693:0,450232,0 -) -(1,18698:8855064,28882557:502661,355205,7864 -) -] -g1,18698:9503373,28882557 -g1,18698:10217218,28882557 -(1,18698:10217218,28882557:1056440,355205,7864 -) -$1,18698:11273658,28882557 -g1,18698:11472887,28882557 -g1,18698:12540468,28882557 -g1,18698:14920080,28882557 -g1,18698:16556514,28882557 -(1,18698:16556514,28882557:0,452978,115847 -r1,18724:19728474,28882557:3171960,568825,115847 -k1,18698:16556514,28882557:-3171960 -) -(1,18698:16556514,28882557:3171960,452978,115847 -k1,18698:16556514,28882557:3277 -h1,18698:19725197,28882557:0,411205,112570 -) -g1,18698:19927703,28882557 -g1,18698:21318377,28882557 -g1,18698:22465257,28882557 -$1,18698:22465257,28882557 -[1,18698:22465257,28882557:502661,458096,7864 -(1,18698:22935804,28874693:0,450232,0 -) -(1,18698:22465257,28882557:502661,355205,7864 -) -] -g1,18698:23113566,28882557 -g1,18698:23827411,28882557 -(1,18698:23827411,28882557:1129840,505283,7864 -) -$1,18698:24957251,28882557 -g1,18698:25156480,28882557 -(1,18698:25156480,28882557:0,452978,115847 -r1,18724:28680152,28882557:3523672,568825,115847 -k1,18698:25156480,28882557:-3523672 -) -(1,18698:25156480,28882557:3523672,452978,115847 -k1,18698:25156480,28882557:3277 -h1,18698:28676875,28882557:0,411205,112570 -) -k1,18699:32583029,28882557:3729207 -g1,18699:32583029,28882557 -) -v1,18701:6630773,30073023:0,393216,0 -(1,18706:6630773,31054298:25952256,1374491,196608 -g1,18706:6630773,31054298 -g1,18706:6630773,31054298 -g1,18706:6434165,31054298 -(1,18706:6434165,31054298:0,1374491,196608 -r1,18724:32779637,31054298:26345472,1571099,196608 -k1,18706:6434165,31054298:-26345472 -) -(1,18706:6434165,31054298:26345472,1374491,196608 -[1,18706:6630773,31054298:25952256,1177883,0 -(1,18703:6630773,30286933:25952256,410518,101187 -(1,18702:6630773,30286933:0,0,0 -g1,18702:6630773,30286933 -g1,18702:6630773,30286933 -g1,18702:6303093,30286933 -(1,18702:6303093,30286933:0,0,0 -) -g1,18702:6630773,30286933 -) -g1,18703:6946919,30286933 -g1,18703:7263065,30286933 -g1,18703:14218270,30286933 -g1,18703:14850562,30286933 -k1,18703:14850562,30286933:0 -h1,18703:18012019,30286933:0,0,0 -k1,18703:32583029,30286933:14571010 -g1,18703:32583029,30286933 -) -(1,18704:6630773,30953111:25952256,404226,101187 -h1,18704:6630773,30953111:0,0,0 -g1,18704:6946919,30953111 -g1,18704:7263065,30953111 -g1,18704:7579211,30953111 -g1,18704:7895357,30953111 -g1,18704:8211503,30953111 -g1,18704:8527649,30953111 -g1,18704:8843795,30953111 -g1,18704:9159941,30953111 -g1,18704:9476087,30953111 -g1,18704:9792233,30953111 -g1,18704:10108379,30953111 -g1,18704:10424525,30953111 -g1,18704:10740671,30953111 -g1,18704:11056817,30953111 -g1,18704:11372963,30953111 -g1,18704:13269837,30953111 -g1,18704:13902129,30953111 -g1,18704:16115149,30953111 -g1,18704:17695878,30953111 -g1,18704:18328170,30953111 -g1,18704:19276608,30953111 -g1,18704:21173482,30953111 -g1,18704:21805774,30953111 -h1,18704:23070357,30953111:0,0,0 -k1,18704:32583029,30953111:9512672 -g1,18704:32583029,30953111 -) -] -) -g1,18706:32583029,31054298 -g1,18706:6630773,31054298 -g1,18706:6630773,31054298 -g1,18706:32583029,31054298 -g1,18706:32583029,31054298 -) -h1,18706:6630773,31250906:0,0,0 -(1,18710:6630773,32616682:25952256,513147,134348 -h1,18709:6630773,32616682:983040,0,0 -k1,18709:8838681,32616682:271319 -k1,18709:9925268,32616682:271319 -k1,18709:11262858,32616682:271319 -k1,18709:12814095,32616682:271319 -k1,18709:13856117,32616682:271319 -k1,18709:16788853,32616682:271319 -k1,18709:18631724,32616682:271318 -k1,18709:19975212,32616682:271319 -k1,18709:20704628,32616682:271319 -k1,18709:21507444,32616682:271319 -k1,18709:24408723,32616682:271319 -k1,18709:25331470,32616682:271319 -k1,18709:26695274,32616682:271319 -k1,18709:30942007,32616682:271319 -k1,18710:32583029,32616682:0 -) -(1,18710:6630773,33458170:25952256,513147,134348 -k1,18709:8485278,33458170:256737 -k1,18709:11069199,33458170:256738 -k1,18709:11985228,33458170:256737 -k1,18709:13261050,33458170:256737 -k1,18709:16543585,33458170:256738 -k1,18709:19641308,33458170:256737 -k1,18709:20659573,33458170:256737 -k1,18709:23496463,33458170:256738 -k1,18709:26581733,33458170:256737 -k1,18709:28900233,33458170:256737 -k1,18709:29966341,33458170:256738 -k1,18709:31966991,33458170:256737 -k1,18709:32583029,33458170:0 -) -(1,18710:6630773,34299658:25952256,513147,134348 -k1,18709:9394863,34299658:183938 -k1,18709:12259222,34299658:183937 -k1,18709:14971539,34299658:183938 -k1,18709:18558105,34299658:183937 -k1,18709:19393471,34299658:183938 -k1,18709:20596493,34299658:183937 -k1,18709:23475927,34299658:183938 -k1,18709:25346762,34299658:183938 -k1,18709:27601637,34299658:183937 -k1,18709:28733226,34299658:183938 -k1,18709:29936248,34299658:183937 -k1,18709:31426319,34299658:183938 -k1,18709:32583029,34299658:0 -) -(1,18710:6630773,35141146:25952256,505283,138281 -k1,18709:10153582,35141146:160812 -k1,18709:11333479,35141146:160812 -k1,18709:14005632,35141146:160813 -k1,18709:14782482,35141146:160812 -(1,18709:14782482,35141146:0,452978,115847 -r1,18724:16195883,35141146:1413401,568825,115847 -k1,18709:14782482,35141146:-1413401 -) -(1,18709:14782482,35141146:1413401,452978,115847 -k1,18709:14782482,35141146:3277 -h1,18709:16192606,35141146:0,411205,112570 -) -k1,18709:16356695,35141146:160812 -k1,18709:19102902,35141146:160812 -k1,18709:19915142,35141146:160812 -k1,18709:21095040,35141146:160813 -$1,18709:21095040,35141146 -$1,18709:21646853,35141146 -k1,18709:21807665,35141146:160812 -k1,18709:24986410,35141146:160812 -k1,18709:26138782,35141146:160812 -k1,18709:29060627,35141146:160813 -k1,18709:29907601,35141146:160812 -k1,18709:30424273,35141146:160812 -k1,18709:32583029,35141146:0 -) -(1,18710:6630773,35982634:25952256,513147,134348 -k1,18709:7863901,35982634:239602 -k1,18709:10662029,35982634:239602 -k1,18709:14182363,35982634:239602 -(1,18709:14182363,35982634:0,459977,122846 -r1,18724:17002612,35982634:2820249,582823,122846 -k1,18709:14182363,35982634:-2820249 -) -(1,18709:14182363,35982634:2820249,459977,122846 -k1,18709:14182363,35982634:3277 -h1,18709:16999335,35982634:0,411205,112570 -) -k1,18709:17415884,35982634:239602 -k1,18709:18674571,35982634:239602 -k1,18709:20982489,35982634:239602 -k1,18709:22735317,35982634:239602 -k1,18709:23922570,35982634:239602 -k1,18709:27773206,35982634:239602 -k1,18709:28628846,35982634:239602 -k1,18709:29887533,35982634:239602 -k1,18709:32583029,35982634:0 -) -(1,18710:6630773,36824122:25952256,513147,126483 -g1,18709:9912160,36824122 -g1,18709:11641655,36824122 -g1,18709:13216485,36824122 -g1,18709:15396867,36824122 -g1,18709:16615181,36824122 -g1,18709:18882726,36824122 -g1,18709:19697993,36824122 -g1,18709:21100463,36824122 -k1,18710:32583029,36824122:10315370 -g1,18710:32583029,36824122 -) -(1,18712:6630773,37665610:25952256,505283,126483 -h1,18711:6630773,37665610:983040,0,0 -k1,18711:10043778,37665610:153900 -k1,18711:11066031,37665610:153901 -k1,18711:12497228,37665610:153900 -k1,18711:13670213,37665610:153900 -k1,18711:15892430,37665610:153901 -k1,18711:16662368,37665610:153900 -k1,18711:17172128,37665610:153900 -k1,18711:19495271,37665610:153901 -k1,18711:21100138,37665610:153900 -k1,18711:22647989,37665610:153900 -k1,18711:23820975,37665610:153901 -k1,18711:28046627,37665610:153900 -k1,18711:32583029,37665610:0 -) -(1,18712:6630773,38507098:25952256,513147,126483 -k1,18711:7626374,38507098:186231 -k1,18711:8831691,38507098:186232 -k1,18711:10624865,38507098:186231 -k1,18711:12186042,38507098:186232 -k1,18711:13058435,38507098:186231 -k1,18711:13600526,38507098:186231 -k1,18711:15629630,38507098:186232 -k1,18711:16475153,38507098:186231 -k1,18711:17680469,38507098:186231 -k1,18711:19606027,38507098:186232 -k1,18711:20408296,38507098:186231 -k1,18711:22479999,38507098:186232 -k1,18711:23685315,38507098:186231 -k1,18711:25759638,38507098:186231 -k1,18711:26937430,38507098:186232 -k1,18711:29089086,38507098:186231 -k1,18711:29926746,38507098:186232 -k1,18711:31132062,38507098:186231 -k1,18711:32583029,38507098:0 -) -(1,18712:6630773,39348586:25952256,505283,126483 -k1,18711:7446819,39348586:188211 -k1,18711:8838271,39348586:188211 -k1,18711:10567233,39348586:188211 -k1,18711:11623797,39348586:188212 -k1,18711:12746551,39348586:188211 -(1,18711:12746551,39348586:0,459977,115847 -r1,18724:14159952,39348586:1413401,575824,115847 -k1,18711:12746551,39348586:-1413401 -) -(1,18711:12746551,39348586:1413401,459977,115847 -k1,18711:12746551,39348586:3277 -h1,18711:14156675,39348586:0,411205,112570 -) -k1,18711:14521833,39348586:188211 -(1,18711:14521833,39348586:0,452978,115847 -r1,18724:16286946,39348586:1765113,568825,115847 -k1,18711:14521833,39348586:-1765113 -) -(1,18711:14521833,39348586:1765113,452978,115847 -k1,18711:14521833,39348586:3277 -h1,18711:16283669,39348586:0,411205,112570 -) -k1,18711:16475157,39348586:188211 -k1,18711:17854813,39348586:188211 -(1,18711:17854813,39348586:0,452978,115847 -r1,18724:19619926,39348586:1765113,568825,115847 -k1,18711:17854813,39348586:-1765113 -) -(1,18711:17854813,39348586:1765113,452978,115847 -k1,18711:17854813,39348586:3277 -h1,18711:19616649,39348586:0,411205,112570 -) -k1,18711:19808137,39348586:188211 -k1,18711:24578625,39348586:188211 -k1,18711:25418265,39348586:188212 -k1,18711:28868203,39348586:188211 -k1,18711:30128583,39348586:188211 -k1,18711:30932832,39348586:188211 -k1,18711:32583029,39348586:0 -) -(1,18712:6630773,40190074:25952256,513147,134348 -k1,18711:9547889,40190074:230795 -k1,18711:11168048,40190074:230796 -k1,18711:12837358,40190074:230795 -k1,18711:15875715,40190074:230795 -k1,18711:17745566,40190074:230796 -k1,18711:18627789,40190074:230795 -k1,18711:21082877,40190074:230796 -k1,18711:21929710,40190074:230795 -(1,18711:21929710,40190074:0,452978,115847 -r1,18724:23343111,40190074:1413401,568825,115847 -k1,18711:21929710,40190074:-1413401 -) -(1,18711:21929710,40190074:1413401,452978,115847 -k1,18711:21929710,40190074:3277 -h1,18711:23339834,40190074:0,411205,112570 -) -k1,18711:23573906,40190074:230795 -k1,18711:24908984,40190074:230796 -k1,18711:25887545,40190074:230795 -k1,18711:27631566,40190074:230795 -k1,18711:28810013,40190074:230796 -k1,18711:31923737,40190074:230795 -k1,18711:32583029,40190074:0 -) -(1,18712:6630773,41031562:25952256,505283,134348 -k1,18711:11104297,41031562:228102 -k1,18711:12994393,41031562:228103 -k1,18711:15410087,41031562:228102 -k1,18711:16810628,41031562:228102 -k1,18711:18316028,41031562:228103 -k1,18711:20432222,41031562:228102 -k1,18711:22054276,41031562:228103 -(1,18711:22054276,41031562:0,452978,115847 -r1,18724:26984796,41031562:4930520,568825,115847 -k1,18711:22054276,41031562:-4930520 -) -(1,18711:22054276,41031562:4930520,452978,115847 -k1,18711:22054276,41031562:3277 -h1,18711:26981519,41031562:0,411205,112570 -) -k1,18711:27212898,41031562:228102 -k1,18711:29452955,41031562:228102 -k1,18711:30426202,41031562:228103 -k1,18711:31305732,41031562:228102 -k1,18711:32583029,41031562:0 -) -(1,18712:6630773,41873050:25952256,513147,134348 -g1,18711:7849087,41873050 -g1,18711:9786331,41873050 -g1,18711:11177005,41873050 -g1,18711:12395319,41873050 -g1,18711:14201491,41873050 -g1,18711:15775665,41873050 -g1,18711:17710287,41873050 -g1,18711:20671859,41873050 -k1,18712:32583029,41873050:9791080 -g1,18712:32583029,41873050 -) -v1,18714:6630773,43063516:0,393216,0 -(1,18724:6630773,45377147:25952256,2706847,196608 -g1,18724:6630773,45377147 -g1,18724:6630773,45377147 -g1,18724:6434165,45377147 -(1,18724:6434165,45377147:0,2706847,196608 -r1,18724:32779637,45377147:26345472,2903455,196608 -k1,18724:6434165,45377147:-26345472 -) -(1,18724:6434165,45377147:26345472,2706847,196608 -[1,18724:6630773,45377147:25952256,2510239,0 -(1,18716:6630773,43277426:25952256,410518,107478 -(1,18715:6630773,43277426:0,0,0 -g1,18715:6630773,43277426 -g1,18715:6630773,43277426 -g1,18715:6303093,43277426 -(1,18715:6303093,43277426:0,0,0 -) -g1,18715:6630773,43277426 -) -k1,18716:6630773,43277426:0 -g1,18716:10424522,43277426 -g1,18716:11056814,43277426 -g1,18716:14534417,43277426 -g1,18716:16431292,43277426 -g1,18716:17063584,43277426 -g1,18716:18012022,43277426 -g1,18716:18644314,43277426 -g1,18716:19276606,43277426 -g1,18716:21805772,43277426 -h1,18716:22121918,43277426:0,0,0 -k1,18716:32583029,43277426:10461111 -g1,18716:32583029,43277426 -) -(1,18717:6630773,43943604:25952256,410518,107478 -h1,18717:6630773,43943604:0,0,0 -g1,18717:6946919,43943604 -g1,18717:7263065,43943604 -g1,18717:12637542,43943604 -g1,18717:13269834,43943604 -g1,18717:15799000,43943604 -g1,18717:17379729,43943604 -g1,18717:18012021,43943604 -k1,18717:18012021,43943604:0 -h1,18717:20541187,43943604:0,0,0 -k1,18717:32583029,43943604:12041842 -g1,18717:32583029,43943604 -) -(1,18718:6630773,44609782:25952256,410518,82312 -h1,18718:6630773,44609782:0,0,0 -g1,18718:6946919,44609782 -g1,18718:7263065,44609782 -g1,18718:7579211,44609782 -g1,18718:7895357,44609782 -g1,18718:8211503,44609782 -g1,18718:8527649,44609782 -g1,18718:8843795,44609782 -g1,18718:9159941,44609782 -g1,18718:9476087,44609782 -g1,18718:9792233,44609782 -g1,18718:10108379,44609782 -g1,18718:10424525,44609782 -g1,18718:10740671,44609782 -g1,18718:11056817,44609782 -g1,18718:11372963,44609782 -g1,18718:12953692,44609782 -g1,18718:13585984,44609782 -g1,18718:16431296,44609782 -g1,18718:18328170,44609782 -g1,18718:18960462,44609782 -g1,18718:21805774,44609782 -h1,18718:22121920,44609782:0,0,0 -k1,18718:32583029,44609782:10461109 -g1,18718:32583029,44609782 -) -(1,18719:6630773,45275960:25952256,410518,101187 -h1,18719:6630773,45275960:0,0,0 -g1,18719:6946919,45275960 -g1,18719:7263065,45275960 -g1,18719:14218270,45275960 -g1,18719:14850562,45275960 -k1,18719:14850562,45275960:0 -h1,18719:19592748,45275960:0,0,0 -k1,18719:32583029,45275960:12990281 -g1,18719:32583029,45275960 -) -] -) -g1,18724:32583029,45377147 -g1,18724:6630773,45377147 -g1,18724:6630773,45377147 -g1,18724:32583029,45377147 -g1,18724:32583029,45377147 -) -] -(1,18724:32583029,45706769:0,0,0 -g1,18724:32583029,45706769 -) -) -] -(1,18724:6630773,47279633:25952256,0,0 -h1,18724:6630773,47279633:25952256,0,0 -) -] -(1,18724:4262630,4025873:0,0,0 -[1,18724:-473656,4025873:0,0,0 -(1,18724:-473656,-710413:0,0,0 -(1,18724:-473656,-710413:0,0,0 -g1,18724:-473656,-710413 -) -g1,18724:-473656,-710413 -) -] -) -] -!27257 -}331 -Input:2928:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2929:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2930:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2931:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2932:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2933:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2934:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2935:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2936:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2937:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2938:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2939:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2940:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2941:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2942:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2943:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2944:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2945:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2946:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1798 -{332 -[1,18780:4262630,47279633:28320399,43253760,0 -(1,18780:4262630,4025873:0,0,0 -[1,18780:-473656,4025873:0,0,0 -(1,18780:-473656,-710413:0,0,0 -(1,18780:-473656,-644877:0,0,0 -k1,18780:-473656,-644877:-65536 +] +g1,18731:6630773,4812305 +g1,18731:6630773,4812305 +g1,18731:10347975,4812305 +k1,18731:31387651,4812305:21039676 +) +) +] +[1,18731:6630773,45706769:25952256,40108032,0 +(1,18731:6630773,45706769:25952256,40108032,0 +(1,18731:6630773,45706769:0,0,0 +g1,18731:6630773,45706769 +) +[1,18731:6630773,45706769:25952256,40108032,0 +(1,18695:6630773,14682403:25952256,9083666,0 +k1,18695:10523651,14682403:3892878 +h1,18694:10523651,14682403:0,0,0 +(1,18694:10523651,14682403:18166500,9083666,0 +(1,18694:10523651,14682403:18167376,9083688,0 +(1,18694:10523651,14682403:18167376,9083688,0 +(1,18694:10523651,14682403:0,9083688,0 +(1,18694:10523651,14682403:0,14208860,0 +(1,18694:10523651,14682403:28417720,14208860,0 +) +k1,18694:10523651,14682403:-28417720 +) +) +g1,18694:28691027,14682403 +) +) +) +g1,18695:28690151,14682403 +k1,18695:32583029,14682403:3892878 +) +(1,18702:6630773,15547483:25952256,513147,126483 +h1,18701:6630773,15547483:983040,0,0 +k1,18701:8417896,15547483:176248 +k1,18701:9613229,15547483:176248 +k1,18701:12030808,15547483:176248 +k1,18701:14868474,15547483:176249 +k1,18701:15913074,15547483:176248 +k1,18701:17286665,15547483:176248 +k1,18701:18481998,15547483:176248 +k1,18701:21225291,15547483:176248 +k1,18701:23735276,15547483:176248 +k1,18701:24570816,15547483:176248 +k1,18701:25766149,15547483:176248 +k1,18701:27595871,15547483:176249 +k1,18701:29049416,15547483:176248 +k1,18701:29911826,15547483:176248 +k1,18701:30858777,15547483:176248 +k1,18701:32583029,15547483:0 +) +(1,18702:6630773,16412563:25952256,513147,134348 +k1,18701:7469459,16412563:233133 +k1,18701:10578968,16412563:233134 +k1,18701:11746644,16412563:233133 +k1,18701:13794469,16412563:233133 +k1,18701:14679031,16412563:233134 +k1,18701:15931249,16412563:233133 +k1,18701:19902556,16412563:233133 +k1,18701:20787118,16412563:233134 +k1,18701:22819214,16412563:233133 +k1,18701:24319813,16412563:233133 +k1,18701:24908807,16412563:233134 +k1,18701:27162415,16412563:233133 +k1,18701:28054840,16412563:233133 +k1,18701:29307059,16412563:233134 +k1,18701:31132062,16412563:233133 +k1,18701:32583029,16412563:0 +) +(1,18702:6630773,17277643:25952256,513147,126483 +k1,18701:7527923,17277643:291597 +k1,18701:8754062,17277643:291596 +k1,18701:10064744,17277643:291597 +k1,18701:12300138,17277643:291596 +k1,18701:13251027,17277643:291597 +k1,18701:14561709,17277643:291597 +k1,18701:16577557,17277643:291596 +k1,18701:17474707,17277643:291597 +k1,18701:20121012,17277643:291596 +k1,18701:21665002,17277643:291597 +k1,18701:23800782,17277643:291597 +k1,18701:24778540,17277643:291596 +k1,18701:26450325,17277643:291597 +k1,18701:27733481,17277643:291596 +k1,18701:29044163,17277643:291597 +k1,18701:30989232,17277643:291596 +k1,18701:31966991,17277643:291597 +k1,18701:32583029,17277643:0 +) +(1,18702:6630773,18142723:25952256,505283,134348 +k1,18701:7945285,18142723:295427 +k1,18701:9832581,18142723:295426 +k1,18701:11578975,18142723:295427 +k1,18701:12479955,18142723:295427 +k1,18701:13966826,18142723:295426 +k1,18701:14867806,18142723:295427 +k1,18701:18020603,18142723:295427 +k1,18701:19335114,18142723:295426 +k1,18701:23026617,18142723:295427 +k1,18701:25342518,18142723:295426 +k1,18701:26253983,18142723:295427 +k1,18701:27568495,18142723:295427 +k1,18701:29455791,18142723:295426 +k1,18701:31202185,18142723:295427 +k1,18701:32583029,18142723:0 +) +(1,18702:6630773,19007803:25952256,513147,134348 +k1,18701:8489647,19007803:182463 +k1,18701:11358431,19007803:182463 +k1,18701:14202311,19007803:182463 +k1,18701:16375758,19007803:182463 +k1,18701:17888602,19007803:182463 +k1,18701:18426925,19007803:182463 +k1,18701:19892584,19007803:182464 +k1,18701:23147375,19007803:182463 +k1,18701:23981266,19007803:182463 +k1,18701:26992262,19007803:182463 +k1,18701:28279007,19007803:182463 +k1,18701:31304422,19007803:182463 +k1,18701:32583029,19007803:0 +) +(1,18702:6630773,19872883:25952256,513147,134348 +k1,18701:8151426,19872883:253187 +k1,18701:9423699,19872883:253188 +k1,18701:12579476,19872883:253187 +k1,18701:13491955,19872883:253187 +k1,18701:16464232,19872883:253188 +k1,18701:19928028,19872883:253187 +k1,18701:20809050,19872883:253187 +k1,18701:22265479,19872883:253188 +k1,18701:25353753,19872883:253187 +k1,18701:26258368,19872883:253187 +k1,18701:28172238,19872883:253188 +k1,18701:29196128,19872883:253187 +k1,18701:32583029,19872883:0 +) +(1,18702:6630773,20737963:25952256,513147,134348 +k1,18701:10056743,20737963:267790 +k1,18701:12651716,20737963:267790 +k1,18701:13578799,20737963:267791 +k1,18701:16913019,20737963:267790 +k1,18701:17946925,20737963:267790 +k1,18701:19233800,20737963:267790 +k1,18701:20890954,20737963:267791 +k1,18701:22426210,20737963:267790 +k1,18701:23049860,20737963:267790 +k1,18701:24707013,20737963:267790 +k1,18701:27024770,20737963:267791 +k1,18701:28160912,20737963:267790 +k1,18701:29825274,20737963:267790 +k1,18701:32583029,20737963:0 +) +(1,18702:6630773,21603043:25952256,505283,126483 +k1,18701:8924790,21603043:283372 +k1,18701:11622507,21603043:283371 +k1,18701:12557307,21603043:283372 +k1,18701:13859764,21603043:283372 +k1,18701:16485393,21603043:283372 +k1,18701:19943328,21603043:283371 +k1,18701:22236689,21603043:283372 +(1,18701:22236689,21603043:0,452978,115847 +r1,18731:25760361,21603043:3523672,568825,115847 +k1,18701:22236689,21603043:-3523672 +) +(1,18701:22236689,21603043:3523672,452978,115847 +k1,18701:22236689,21603043:3277 +h1,18701:25757084,21603043:0,411205,112570 +) +k1,18701:26043733,21603043:283372 +k1,18701:27559182,21603043:283372 +k1,18701:30121240,21603043:283371 +h1,18701:31490287,21603043:0,0,0 +k1,18701:31773659,21603043:283372 +k1,18701:32583029,21603043:0 +) +(1,18702:6630773,22468123:25952256,505283,134348 +g1,18701:8328155,22468123 +h1,18701:9523532,22468123:0,0,0 +k1,18702:32583028,22468123:22678732 +g1,18702:32583028,22468123 +) +v1,18704:6630773,23152978:0,393216,0 +(1,18720:6630773,31711921:25952256,8952159,196608 +g1,18720:6630773,31711921 +g1,18720:6630773,31711921 +g1,18720:6434165,31711921 +(1,18720:6434165,31711921:0,8952159,196608 +r1,18731:32779637,31711921:26345472,9148767,196608 +k1,18720:6434165,31711921:-26345472 +) +(1,18720:6434165,31711921:26345472,8952159,196608 +[1,18720:6630773,31711921:25952256,8755551,0 +(1,18706:6630773,23387415:25952256,431045,112852 +(1,18705:6630773,23387415:0,0,0 +g1,18705:6630773,23387415 +g1,18705:6630773,23387415 +g1,18705:6303093,23387415 +(1,18705:6303093,23387415:0,0,0 +) +g1,18705:6630773,23387415 +) +g1,18706:8954451,23387415 +g1,18706:9950313,23387415 +g1,18706:13933761,23387415 +g1,18706:14597669,23387415 +g1,18706:17253301,23387415 +g1,18706:19245025,23387415 +g1,18706:19908933,23387415 +g1,18706:21900657,23387415 +g1,18706:22564565,23387415 +g1,18706:23228473,23387415 +g1,18706:24888243,23387415 +g1,18706:26879967,23387415 +g1,18706:27543875,23387415 +g1,18706:32191231,23387415 +h1,18706:32523185,23387415:0,0,0 +k1,18706:32583029,23387415:59844 +g1,18706:32583029,23387415 +) +(1,18707:6630773,24072270:25952256,424439,112852 +h1,18707:6630773,24072270:0,0,0 +g1,18707:6962727,24072270 +g1,18707:7294681,24072270 +k1,18707:7294681,24072270:0 +h1,18707:11278128,24072270:0,0,0 +k1,18707:32583028,24072270:21304900 +g1,18707:32583028,24072270 +) +(1,18708:6630773,24757125:25952256,424439,106246 +h1,18708:6630773,24757125:0,0,0 +g1,18708:9286405,24757125 +g1,18708:10282267,24757125 +g1,18708:12605945,24757125 +h1,18708:12937899,24757125:0,0,0 +k1,18708:32583029,24757125:19645130 +g1,18708:32583029,24757125 +) +(1,18709:6630773,25441980:25952256,424439,106246 +h1,18709:6630773,25441980:0,0,0 +g1,18709:6962727,25441980 +g1,18709:7294681,25441980 +g1,18709:14265714,25441980 +g1,18709:14929622,25441980 +g1,18709:17253300,25441980 +g1,18709:19245024,25441980 +g1,18709:20904794,25441980 +g1,18709:21568702,25441980 +g1,18709:23560426,25441980 +g1,18709:25220196,25441980 +h1,18709:25552150,25441980:0,0,0 +k1,18709:32583029,25441980:7030879 +g1,18709:32583029,25441980 +) +(1,18710:6630773,26126835:25952256,424439,106246 +h1,18710:6630773,26126835:0,0,0 +g1,18710:6962727,26126835 +g1,18710:7294681,26126835 +g1,18710:9618359,26126835 +g1,18710:10282267,26126835 +g1,18710:12273991,26126835 +g1,18710:12937899,26126835 +g1,18710:13601807,26126835 +g1,18710:15593531,26126835 +h1,18710:15925485,26126835:0,0,0 +k1,18710:32583029,26126835:16657544 +g1,18710:32583029,26126835 +) +(1,18711:6630773,26811690:25952256,424439,112852 +h1,18711:6630773,26811690:0,0,0 +g1,18711:6962727,26811690 +g1,18711:7294681,26811690 +g1,18711:16257438,26811690 +g1,18711:16921346,26811690 +g1,18711:19576978,26811690 +h1,18711:19908932,26811690:0,0,0 +k1,18711:32583029,26811690:12674097 +g1,18711:32583029,26811690 +) +(1,18712:6630773,27496545:25952256,424439,106246 +h1,18712:6630773,27496545:0,0,0 +g1,18712:6962727,27496545 +g1,18712:7294681,27496545 +g1,18712:11278128,27496545 +g1,18712:11942036,27496545 +g1,18712:18249161,27496545 +g1,18712:18913069,27496545 +h1,18712:19576977,27496545:0,0,0 +k1,18712:32583029,27496545:13006052 +g1,18712:32583029,27496545 +) +(1,18713:6630773,28181400:25952256,424439,106246 +h1,18713:6630773,28181400:0,0,0 +g1,18713:8954451,28181400 +h1,18713:9286405,28181400:0,0,0 +k1,18713:32583029,28181400:23296624 +g1,18713:32583029,28181400 +) +(1,18714:6630773,28866255:25952256,424439,112852 +h1,18714:6630773,28866255:0,0,0 +g1,18714:6962727,28866255 +g1,18714:7294681,28866255 +g1,18714:11278128,28866255 +g1,18714:11942036,28866255 +g1,18714:13601806,28866255 +g1,18714:14265714,28866255 +g1,18714:14929622,28866255 +g1,18714:16257438,28866255 +g1,18714:18249162,28866255 +g1,18714:18913070,28866255 +g1,18714:23892379,28866255 +g1,18714:27211918,28866255 +g1,18714:27875826,28866255 +k1,18714:27875826,28866255:0 +h1,18714:29203642,28866255:0,0,0 +k1,18714:32583029,28866255:3379387 +g1,18714:32583029,28866255 +) +(1,18715:6630773,29551110:25952256,424439,112852 +h1,18715:6630773,29551110:0,0,0 +g1,18715:6962727,29551110 +g1,18715:7294681,29551110 +g1,18715:7626635,29551110 +g1,18715:7958589,29551110 +g1,18715:8290543,29551110 +g1,18715:8622497,29551110 +g1,18715:8954451,29551110 +g1,18715:9286405,29551110 +g1,18715:9618359,29551110 +g1,18715:9950313,29551110 +g1,18715:10282267,29551110 +g1,18715:10614221,29551110 +g1,18715:12605945,29551110 +g1,18715:13269853,29551110 +g1,18715:16589392,29551110 +g1,18715:18581116,29551110 +g1,18715:19245024,29551110 +g1,18715:22564563,29551110 +h1,18715:22896517,29551110:0,0,0 +k1,18715:32583029,29551110:9686512 +g1,18715:32583029,29551110 +) +(1,18716:6630773,30235965:25952256,431045,112852 +h1,18716:6630773,30235965:0,0,0 +g1,18716:6962727,30235965 +g1,18716:7294681,30235965 +g1,18716:11942036,30235965 +g1,18716:12605944,30235965 +g1,18716:15261576,30235965 +g1,18716:16921346,30235965 +g1,18716:17585254,30235965 +g1,18716:18913070,30235965 +g1,18716:20904794,30235965 +g1,18716:21568702,30235965 +k1,18716:21568702,30235965:0 +h1,18716:24224334,30235965:0,0,0 +k1,18716:32583029,30235965:8358695 +g1,18716:32583029,30235965 +) +(1,18717:6630773,30920820:25952256,424439,106246 +h1,18717:6630773,30920820:0,0,0 +g1,18717:6962727,30920820 +g1,18717:7294681,30920820 +g1,18717:7626635,30920820 +g1,18717:7958589,30920820 +g1,18717:8290543,30920820 +g1,18717:8622497,30920820 +g1,18717:8954451,30920820 +g1,18717:9286405,30920820 +g1,18717:9618359,30920820 +g1,18717:9950313,30920820 +g1,18717:10282267,30920820 +g1,18717:11942037,30920820 +g1,18717:12605945,30920820 +g1,18717:14265715,30920820 +g1,18717:15925485,30920820 +g1,18717:16589393,30920820 +g1,18717:18249163,30920820 +g1,18717:19908933,30920820 +g1,18717:20572841,30920820 +g1,18717:21900657,30920820 +g1,18717:23560427,30920820 +g1,18717:24224335,30920820 +k1,18717:24224335,30920820:0 +h1,18717:25220197,30920820:0,0,0 +k1,18717:32583029,30920820:7362832 +g1,18717:32583029,30920820 +) +(1,18718:6630773,31605675:25952256,424439,106246 +h1,18718:6630773,31605675:0,0,0 +g1,18718:6962727,31605675 +g1,18718:7294681,31605675 +g1,18718:7626635,31605675 +g1,18718:7958589,31605675 +g1,18718:8290543,31605675 +g1,18718:8622497,31605675 +g1,18718:8954451,31605675 +g1,18718:9286405,31605675 +g1,18718:9618359,31605675 +g1,18718:9950313,31605675 +g1,18718:10282267,31605675 +g1,18718:13269852,31605675 +g1,18718:13933760,31605675 +h1,18718:16921345,31605675:0,0,0 +k1,18718:32583029,31605675:15661684 +g1,18718:32583029,31605675 +) +] +) +g1,18720:32583029,31711921 +g1,18720:6630773,31711921 +g1,18720:6630773,31711921 +g1,18720:32583029,31711921 +g1,18720:32583029,31711921 +) +h1,18720:6630773,31908529:0,0,0 +(1,18723:6630773,41057731:25952256,9083666,0 +k1,18723:10523651,41057731:3892878 +h1,18722:10523651,41057731:0,0,0 +(1,18722:10523651,41057731:18166500,9083666,0 +(1,18722:10523651,41057731:18167376,9083688,0 +(1,18722:10523651,41057731:18167376,9083688,0 +(1,18722:10523651,41057731:0,9083688,0 +(1,18722:10523651,41057731:0,14208860,0 +(1,18722:10523651,41057731:28417720,14208860,0 +) +k1,18722:10523651,41057731:-28417720 +) +) +g1,18722:28691027,41057731 +) +) +) +g1,18723:28690151,41057731 +k1,18723:32583029,41057731:3892878 +) +(1,18731:6630773,41922811:25952256,505283,126483 +h1,18730:6630773,41922811:983040,0,0 +k1,18730:11056110,41922811:347032 +(1,18730:11056110,41922811:0,452978,122846 +r1,18731:14931494,41922811:3875384,575824,122846 +k1,18730:11056110,41922811:-3875384 +) +(1,18730:11056110,41922811:3875384,452978,122846 +k1,18730:11056110,41922811:3277 +h1,18730:14928217,41922811:0,411205,112570 +) +k1,18730:15278526,41922811:347032 +k1,18730:17552316,41922811:347032 +k1,18730:19682583,41922811:347032 +k1,18730:21175839,41922811:347031 +(1,18730:21175839,41922811:0,452978,122846 +r1,18731:25402935,41922811:4227096,575824,122846 +k1,18730:21175839,41922811:-4227096 +) +(1,18730:21175839,41922811:4227096,452978,122846 +k1,18730:21175839,41922811:3277 +h1,18730:25399658,41922811:0,411205,112570 +) +k1,18730:25749967,41922811:347032 +k1,18730:27288444,41922811:347032 +(1,18730:27288444,41922811:0,452978,122846 +r1,18731:31163828,41922811:3875384,575824,122846 +k1,18730:27288444,41922811:-3875384 +) +(1,18730:27288444,41922811:3875384,452978,122846 +k1,18730:27288444,41922811:3277 +h1,18730:31160551,41922811:0,411205,112570 +) +k1,18730:31510860,41922811:347032 +k1,18730:32583029,41922811:0 +) +(1,18731:6630773,42787891:25952256,513147,134348 +k1,18730:9351844,42787891:319832 +k1,18730:10027536,42787891:319832 +k1,18730:11340894,42787891:319832 +k1,18730:12320018,42787891:319832 +k1,18730:14265797,42787891:319832 +k1,18730:17535404,42787891:319832 +k1,18730:20318734,42787891:319832 +k1,18730:22506342,42787891:319832 +(1,18730:22506342,42787891:0,452978,122846 +r1,18731:23919743,42787891:1413401,575824,122846 +k1,18730:22506342,42787891:-1413401 +) +(1,18730:22506342,42787891:1413401,452978,122846 +k1,18730:22506342,42787891:3277 +h1,18730:23916466,42787891:0,411205,112570 +) +k1,18730:24239575,42787891:319832 +k1,18730:25507058,42787891:319832 +k1,18730:27685491,42787891:319832 +k1,18730:29386167,42787891:319832 +k1,18730:31233643,42787891:319832 +k1,18731:32583029,42787891:0 +) +(1,18731:6630773,43652971:25952256,513147,134348 +k1,18730:9038838,43652971:392178 +k1,18730:10043779,43652971:392179 +k1,18730:11455042,43652971:392178 +k1,18730:14420163,43652971:392178 +k1,18730:15471633,43652971:392178 +k1,18730:17981936,43652971:392179 +k1,18730:19025542,43652971:392178 +k1,18730:22686656,43652971:392178 +k1,18730:25008214,43652971:392178 +k1,18730:26419478,43652971:392179 +k1,18730:28599478,43652971:392178 +k1,18730:30847636,43652971:392178 +k1,18730:32583029,43652971:0 +) +(1,18731:6630773,44518051:25952256,513147,134348 +k1,18730:8541550,44518051:284830 +k1,18730:9509264,44518051:284829 +k1,18730:10555622,44518051:284830 +k1,18730:14223419,44518051:284829 +k1,18730:16210219,44518051:284830 +k1,18730:18784877,44518051:284830 +k1,18730:20337172,44518051:284829 +k1,18730:22583495,44518051:284830 +k1,18730:24249169,44518051:284830 +k1,18730:27523750,44518051:284829 +k1,18730:28340077,44518051:284830 +k1,18730:29311068,44518051:284829 +k1,18730:31896867,44518051:284830 +k1,18731:32583029,44518051:0 +) +(1,18731:6630773,45383131:25952256,505283,134348 +(1,18730:6630773,45383131:0,452978,115847 +r1,18731:13319851,45383131:6689078,568825,115847 +k1,18730:6630773,45383131:-6689078 +) +(1,18730:6630773,45383131:6689078,452978,115847 +k1,18730:6630773,45383131:3277 +h1,18730:13316574,45383131:0,411205,112570 +) +k1,18730:13606438,45383131:286587 +k1,18730:15286977,45383131:286588 +k1,18730:17898126,45383131:286587 +k1,18730:18836142,45383131:286588 +k1,18730:20141814,45383131:286587 +k1,18730:22389895,45383131:286588 +k1,18730:23748651,45383131:286587 +k1,18730:26588522,45383131:286588 +k1,18730:27561271,45383131:286587 +k1,18730:28203719,45383131:286588 +k1,18730:31629480,45383131:286587 +k1,18730:32583029,45383131:0 +) +] +(1,18731:32583029,45706769:0,0,0 +g1,18731:32583029,45706769 +) +) +] +(1,18731:6630773,47279633:25952256,0,0 +h1,18731:6630773,47279633:25952256,0,0 +) +] +(1,18731:4262630,4025873:0,0,0 +[1,18731:-473656,4025873:0,0,0 +(1,18731:-473656,-710413:0,0,0 +(1,18731:-473656,-710413:0,0,0 +g1,18731:-473656,-710413 +) +g1,18731:-473656,-710413 +) +] +) +] +!19472 +}312 +Input:2917:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2918:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2919:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2920:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2921:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2922:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2923:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2924:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2925:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2926:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!952 +{313 +[1,18781:4262630,47279633:28320399,43253760,0 +(1,18781:4262630,4025873:0,0,0 +[1,18781:-473656,4025873:0,0,0 +(1,18781:-473656,-710413:0,0,0 +(1,18781:-473656,-644877:0,0,0 +k1,18781:-473656,-644877:-65536 ) -(1,18780:-473656,4736287:0,0,0 -k1,18780:-473656,4736287:5209943 +(1,18781:-473656,4736287:0,0,0 +k1,18781:-473656,4736287:5209943 ) -g1,18780:-473656,-710413 +g1,18781:-473656,-710413 ) ] ) -[1,18780:6630773,47279633:25952256,43253760,0 -[1,18780:6630773,4812305:25952256,786432,0 -(1,18780:6630773,4812305:25952256,485622,11795 -(1,18780:6630773,4812305:25952256,485622,11795 -g1,18780:3078558,4812305 -[1,18780:3078558,4812305:0,0,0 -(1,18780:3078558,2439708:0,1703936,0 -k1,18780:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,18780:2537886,2439708:1179648,16384,0 +[1,18781:6630773,47279633:25952256,43253760,0 +[1,18781:6630773,4812305:25952256,786432,0 +(1,18781:6630773,4812305:25952256,513147,126483 +(1,18781:6630773,4812305:25952256,513147,126483 +g1,18781:3078558,4812305 +[1,18781:3078558,4812305:0,0,0 +(1,18781:3078558,2439708:0,1703936,0 +k1,18781:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,18781:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,18780:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,18781:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,18780:3078558,4812305:0,0,0 -(1,18780:3078558,2439708:0,1703936,0 -g1,18780:29030814,2439708 -g1,18780:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,18780:36151628,1915420:16384,1179648,0 +[1,18781:3078558,4812305:0,0,0 +(1,18781:3078558,2439708:0,1703936,0 +g1,18781:29030814,2439708 +g1,18781:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,18781:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,18780:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,18781:37855564,2439708:1179648,16384,0 ) ) -k1,18780:3078556,2439708:-34777008 +k1,18781:3078556,2439708:-34777008 ) ] -[1,18780:3078558,4812305:0,0,0 -(1,18780:3078558,49800853:0,16384,2228224 -k1,18780:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,18780:2537886,49800853:1179648,16384,0 -) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,18780:3078558,51504789:16384,1179648,0 -) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 -) -] -) -) -) -] -[1,18780:3078558,4812305:0,0,0 -(1,18780:3078558,49800853:0,16384,2228224 -g1,18780:29030814,49800853 -g1,18780:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,18780:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] -) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,18780:37855564,49800853:1179648,16384,0 -) -) -k1,18780:3078556,49800853:-34777008 -) -] -g1,18780:6630773,4812305 -g1,18780:6630773,4812305 -g1,18780:9560887,4812305 -k1,18780:31387651,4812305:21826764 -) -) -] -[1,18780:6630773,45706769:25952256,40108032,0 -(1,18780:6630773,45706769:25952256,40108032,0 -(1,18780:6630773,45706769:0,0,0 -g1,18780:6630773,45706769 -) -[1,18780:6630773,45706769:25952256,40108032,0 -v1,18724:6630773,6254097:0,393216,0 -(1,18724:6630773,7901549:25952256,2040668,196608 -g1,18724:6630773,7901549 -g1,18724:6630773,7901549 -g1,18724:6434165,7901549 -(1,18724:6434165,7901549:0,2040668,196608 -r1,18780:32779637,7901549:26345472,2237276,196608 -k1,18724:6434165,7901549:-26345472 -) -(1,18724:6434165,7901549:26345472,2040668,196608 -[1,18724:6630773,7901549:25952256,1844060,0 -(1,18720:6630773,6461715:25952256,404226,107478 -h1,18720:6630773,6461715:0,0,0 -g1,18720:6946919,6461715 -g1,18720:7263065,6461715 -g1,18720:7579211,6461715 -g1,18720:7895357,6461715 -g1,18720:8211503,6461715 -g1,18720:8527649,6461715 -g1,18720:8843795,6461715 -g1,18720:9159941,6461715 -g1,18720:9476087,6461715 -g1,18720:9792233,6461715 -g1,18720:10108379,6461715 -g1,18720:10424525,6461715 -g1,18720:10740671,6461715 -g1,18720:11056817,6461715 -g1,18720:11372963,6461715 -g1,18720:12953692,6461715 -g1,18720:13585984,6461715 -k1,18720:13585984,6461715:0 -h1,18720:17063587,6461715:0,0,0 -k1,18720:32583029,6461715:15519442 -g1,18720:32583029,6461715 -) -(1,18721:6630773,7127893:25952256,404226,82312 -h1,18721:6630773,7127893:0,0,0 -g1,18721:6946919,7127893 -g1,18721:7263065,7127893 -g1,18721:7579211,7127893 -g1,18721:7895357,7127893 -g1,18721:8211503,7127893 -g1,18721:8527649,7127893 -g1,18721:8843795,7127893 -g1,18721:9159941,7127893 -g1,18721:9476087,7127893 -g1,18721:9792233,7127893 -g1,18721:10108379,7127893 -g1,18721:10424525,7127893 -g1,18721:10740671,7127893 -g1,18721:11056817,7127893 -g1,18721:11372963,7127893 -g1,18721:13269837,7127893 -g1,18721:13902129,7127893 -g1,18721:15482858,7127893 -g1,18721:17063587,7127893 -g1,18721:17695879,7127893 -g1,18721:18644317,7127893 -g1,18721:20541191,7127893 -g1,18721:21173483,7127893 -g1,18721:23386503,7127893 -h1,18721:23702649,7127893:0,0,0 -k1,18721:32583029,7127893:8880380 -g1,18721:32583029,7127893 -) -(1,18722:6630773,7794071:25952256,404226,107478 -h1,18722:6630773,7794071:0,0,0 -g1,18722:6946919,7794071 -g1,18722:7263065,7794071 -g1,18722:12321397,7794071 -g1,18722:12953689,7794071 -g1,18722:13902127,7794071 -g1,18722:15799001,7794071 -g1,18722:16431293,7794071 -h1,18722:17695876,7794071:0,0,0 -k1,18722:32583029,7794071:14887153 -g1,18722:32583029,7794071 -) -] -) -g1,18724:32583029,7901549 -g1,18724:6630773,7901549 -g1,18724:6630773,7901549 -g1,18724:32583029,7901549 -g1,18724:32583029,7901549 -) -h1,18724:6630773,8098157:0,0,0 -(1,18728:6630773,9256962:25952256,505283,134348 -h1,18727:6630773,9256962:983040,0,0 -k1,18727:8801980,9256962:234618 -k1,18727:10140880,9256962:234618 -k1,18727:11652795,9256962:234618 -k1,18727:14129399,9256962:234617 -k1,18727:15046902,9256962:234618 -k1,18727:16983490,9256962:234618 -k1,18727:20899921,9256962:234618 -k1,18727:21896067,9256962:234618 -k1,18727:24023365,9256962:234618 -k1,18727:26843378,9256962:234618 -k1,18727:27729423,9256962:234617 -(1,18727:27729423,9256962:0,414482,115847 -r1,18780:28087689,9256962:358266,530329,115847 -k1,18727:27729423,9256962:-358266 -) -(1,18727:27729423,9256962:358266,414482,115847 -k1,18727:27729423,9256962:3277 -h1,18727:28084412,9256962:0,411205,112570 -) -k1,18727:28322307,9256962:234618 -(1,18727:28529401,9256962:0,452978,115847 -r1,18780:30294514,9256962:1765113,568825,115847 -k1,18727:28529401,9256962:-1765113 -) -(1,18727:28529401,9256962:1765113,452978,115847 -k1,18727:28529401,9256962:3277 -h1,18727:30291237,9256962:0,411205,112570 -) -k1,18727:30529132,9256962:234618 -k1,18727:31379788,9256962:234618 -k1,18727:32583029,9256962:0 -) -(1,18728:6630773,10098450:25952256,505283,134348 -k1,18727:9652331,10098450:153047 -k1,18727:10491540,10098450:153047 -k1,18727:13357778,10098450:153047 -k1,18727:14272354,10098450:153048 -k1,18727:16852855,10098450:153047 -(1,18727:16852855,10098450:0,452978,115847 -r1,18780:18617968,10098450:1765113,568825,115847 -k1,18727:16852855,10098450:-1765113 -) -(1,18727:16852855,10098450:1765113,452978,115847 -k1,18727:16852855,10098450:3277 -h1,18727:18614691,10098450:0,411205,112570 -) -k1,18727:18771015,10098450:153047 -k1,18727:19610224,10098450:153047 -k1,18727:20533974,10098450:153047 -k1,18727:23759349,10098450:153047 -k1,18727:24563824,10098450:153047 -(1,18727:24563824,10098450:0,414482,122846 -r1,18780:25977225,10098450:1413401,537328,122846 -k1,18727:24563824,10098450:-1413401 -) -(1,18727:24563824,10098450:1413401,414482,122846 -k1,18727:24563824,10098450:3277 -h1,18727:25973948,10098450:0,411205,112570 -) -k1,18727:26303942,10098450:153047 -k1,18727:27084825,10098450:153048 -k1,18727:28441113,10098450:153047 -k1,18727:29832135,10098450:153047 -k1,18727:30853534,10098450:153047 -k1,18727:32583029,10098450:0 -) -(1,18728:6630773,10939938:25952256,505283,126483 -g1,18727:7849087,10939938 -g1,18727:9578582,10939938 -g1,18727:10429239,10939938 -g1,18727:13416370,10939938 -g1,18727:14634684,10939938 -g1,18727:18342055,10939938 -g1,18727:19157322,10939938 -k1,18728:32583029,10939938:10666641 -g1,18728:32583029,10939938 -) -v1,18730:6630773,11923433:0,393216,0 -(1,18735:6630773,12904707:25952256,1374490,196608 -g1,18735:6630773,12904707 -g1,18735:6630773,12904707 -g1,18735:6434165,12904707 -(1,18735:6434165,12904707:0,1374490,196608 -r1,18780:32779637,12904707:26345472,1571098,196608 -k1,18735:6434165,12904707:-26345472 -) -(1,18735:6434165,12904707:26345472,1374490,196608 -[1,18735:6630773,12904707:25952256,1177882,0 -(1,18732:6630773,12131051:25952256,404226,107478 -(1,18731:6630773,12131051:0,0,0 -g1,18731:6630773,12131051 -g1,18731:6630773,12131051 -g1,18731:6303093,12131051 -(1,18731:6303093,12131051:0,0,0 -) -g1,18731:6630773,12131051 -) -k1,18732:6630773,12131051:0 -g1,18732:10424522,12131051 -g1,18732:13902125,12131051 -g1,18732:15798999,12131051 -h1,18732:16115145,12131051:0,0,0 -k1,18732:32583029,12131051:16467884 -g1,18732:32583029,12131051 -) -(1,18733:6630773,12797229:25952256,410518,107478 -h1,18733:6630773,12797229:0,0,0 -g1,18733:6946919,12797229 -g1,18733:7263065,12797229 -g1,18733:12953688,12797229 -g1,18733:13585980,12797229 -g1,18733:15799000,12797229 -g1,18733:17063583,12797229 -g1,18733:17695875,12797229 -h1,18733:19276603,12797229:0,0,0 -k1,18733:32583029,12797229:13306426 -g1,18733:32583029,12797229 -) -] -) -g1,18735:32583029,12904707 -g1,18735:6630773,12904707 -g1,18735:6630773,12904707 -g1,18735:32583029,12904707 -g1,18735:32583029,12904707 -) -h1,18735:6630773,13101315:0,0,0 -(1,18738:6630773,22567834:25952256,9083666,0 -k1,18738:10523651,22567834:3892878 -h1,18737:10523651,22567834:0,0,0 -(1,18737:10523651,22567834:18166500,9083666,0 -(1,18737:10523651,22567834:18167376,9083688,0 -(1,18737:10523651,22567834:18167376,9083688,0 -(1,18737:10523651,22567834:0,9083688,0 -(1,18737:10523651,22567834:0,14208860,0 -(1,18737:10523651,22567834:28417720,14208860,0 -) -k1,18737:10523651,22567834:-28417720 -) -) -g1,18737:28691027,22567834 -) -) -) -g1,18738:28690151,22567834 -k1,18738:32583029,22567834:3892878 -) -(1,18745:6630773,23409322:25952256,505283,126483 -h1,18744:6630773,23409322:983040,0,0 -k1,18744:8967381,23409322:400019 -k1,18744:10471681,23409322:400018 -k1,18744:12672629,23409322:400019 -k1,18744:14269990,23409322:400018 -k1,18744:16276952,23409322:400019 -k1,18744:18051916,23409322:400019 -k1,18744:19103362,23409322:400018 -k1,18744:20522466,23409322:400019 -k1,18744:23305373,23409322:400018 -k1,18744:25156359,23409322:400019 -k1,18744:26509926,23409322:400018 -k1,18744:28002430,23409322:400019 -(1,18744:28002430,23409322:0,452978,115847 -r1,18780:29415831,23409322:1413401,568825,115847 -k1,18744:28002430,23409322:-1413401 -) -(1,18744:28002430,23409322:1413401,452978,115847 -k1,18744:28002430,23409322:3277 -h1,18744:29412554,23409322:0,411205,112570 -) -k1,18744:29815850,23409322:400019 -k1,18744:30867296,23409322:400018 -k1,18744:32583029,23409322:0 -) -(1,18745:6630773,24250810:25952256,513147,134348 -k1,18744:7968015,24250810:318157 -k1,18744:9784980,24250810:318157 -k1,18744:10762428,24250810:318156 -k1,18744:12099670,24250810:318157 -k1,18744:14024770,24250810:318157 -k1,18744:15717872,24250810:318157 -k1,18744:18444476,24250810:318156 -k1,18744:19959320,24250810:318157 -k1,18744:22543057,24250810:318157 -k1,18744:25868661,24250810:318157 -k1,18744:26802855,24250810:318156 -(1,18744:26802855,24250810:0,452978,115847 -r1,18780:31733375,24250810:4930520,568825,115847 -k1,18744:26802855,24250810:-4930520 -) -(1,18744:26802855,24250810:4930520,452978,115847 -k1,18744:26802855,24250810:3277 -h1,18744:31730098,24250810:0,411205,112570 -) -k1,18744:32051532,24250810:318157 -k1,18745:32583029,24250810:0 -) -(1,18745:6630773,25092298:25952256,513147,134348 -(1,18744:6630773,25092298:0,452978,122846 -r1,18780:12616428,25092298:5985655,575824,122846 -k1,18744:6630773,25092298:-5985655 -) -(1,18744:6630773,25092298:5985655,452978,122846 -k1,18744:6630773,25092298:3277 -h1,18744:12613151,25092298:0,411205,112570 -) -k1,18744:12994547,25092298:204449 -k1,18744:13923824,25092298:204449 -k1,18744:14996624,25092298:204448 -k1,18744:16305355,25092298:204449 -k1,18744:17947009,25092298:204449 -(1,18744:17947009,25092298:0,452978,122846 -r1,18780:21822393,25092298:3875384,575824,122846 -k1,18744:17947009,25092298:-3875384 -) -(1,18744:17947009,25092298:3875384,452978,122846 -k1,18744:17947009,25092298:3277 -h1,18744:21819116,25092298:0,411205,112570 -) -k1,18744:22026842,25092298:204449 -k1,18744:22917452,25092298:204448 -k1,18744:23892604,25092298:204449 -k1,18744:27169381,25092298:204449 -k1,18744:28321481,25092298:204449 -(1,18744:28321481,25092298:0,414482,122846 -r1,18780:29734882,25092298:1413401,537328,122846 -k1,18744:28321481,25092298:-1413401 -) -(1,18744:28321481,25092298:1413401,414482,122846 -k1,18744:28321481,25092298:3277 -h1,18744:29731605,25092298:0,411205,112570 -) -k1,18744:29939330,25092298:204448 -k1,18744:30795207,25092298:204449 -k1,18745:32583029,25092298:0 -) -(1,18745:6630773,25933786:25952256,505283,126483 -g1,18744:8204947,25933786 -g1,18744:9423261,25933786 -k1,18745:32583029,25933786:21297890 -g1,18745:32583029,25933786 -) -v1,18747:6630773,26917281:0,393216,0 -(1,18752:6630773,27879681:25952256,1355616,196608 -g1,18752:6630773,27879681 -g1,18752:6630773,27879681 -g1,18752:6434165,27879681 -(1,18752:6434165,27879681:0,1355616,196608 -r1,18780:32779637,27879681:26345472,1552224,196608 -k1,18752:6434165,27879681:-26345472 -) -(1,18752:6434165,27879681:26345472,1355616,196608 -[1,18752:6630773,27879681:25952256,1159008,0 -(1,18749:6630773,27131191:25952256,410518,107478 -(1,18748:6630773,27131191:0,0,0 -g1,18748:6630773,27131191 -g1,18748:6630773,27131191 -g1,18748:6303093,27131191 -(1,18748:6303093,27131191:0,0,0 -) -g1,18748:6630773,27131191 -) -g1,18749:6946919,27131191 -g1,18749:7263065,27131191 -g1,18749:12953688,27131191 -g1,18749:13585980,27131191 -g1,18749:17695874,27131191 -g1,18749:20541185,27131191 -g1,18749:21173477,27131191 -k1,18749:21173477,27131191:0 -h1,18749:24334934,27131191:0,0,0 -k1,18749:32583029,27131191:8248095 -g1,18749:32583029,27131191 -) -(1,18750:6630773,27797369:25952256,404226,82312 -h1,18750:6630773,27797369:0,0,0 -g1,18750:6946919,27797369 -g1,18750:7263065,27797369 -g1,18750:7579211,27797369 -g1,18750:7895357,27797369 -g1,18750:8211503,27797369 -g1,18750:8527649,27797369 -g1,18750:8843795,27797369 -g1,18750:9159941,27797369 -g1,18750:9476087,27797369 -g1,18750:9792233,27797369 -g1,18750:10108379,27797369 -g1,18750:10424525,27797369 -g1,18750:10740671,27797369 -g1,18750:11056817,27797369 -g1,18750:11372963,27797369 -g1,18750:12953692,27797369 -g1,18750:13585984,27797369 -g1,18750:14534422,27797369 -g1,18750:16431296,27797369 -g1,18750:17063588,27797369 -h1,18750:18960462,27797369:0,0,0 -k1,18750:32583029,27797369:13622567 -g1,18750:32583029,27797369 -) -] -) -g1,18752:32583029,27879681 -g1,18752:6630773,27879681 -g1,18752:6630773,27879681 -g1,18752:32583029,27879681 -g1,18752:32583029,27879681 -) -h1,18752:6630773,28076289:0,0,0 -(1,18756:6630773,29235094:25952256,513147,134348 -h1,18755:6630773,29235094:983040,0,0 -k1,18755:10439162,29235094:443115 -(1,18755:10439162,29235094:0,452978,115847 -r1,18780:13962834,29235094:3523672,568825,115847 -k1,18755:10439162,29235094:-3523672 -) -(1,18755:10439162,29235094:3523672,452978,115847 -k1,18755:10439162,29235094:3277 -h1,18755:13959557,29235094:0,411205,112570 -) -k1,18755:14405949,29235094:443115 -k1,18755:17176247,29235094:443115 -k1,18755:18286518,29235094:443115 -(1,18755:18286518,29235094:0,452978,122846 -r1,18780:22161902,29235094:3875384,575824,122846 -k1,18755:18286518,29235094:-3875384 -) -(1,18755:18286518,29235094:3875384,452978,122846 -k1,18755:18286518,29235094:3277 -h1,18755:22158625,29235094:0,411205,112570 -) -k1,18755:22605017,29235094:443115 -k1,18755:23699560,29235094:443115 -(1,18755:23699560,29235094:0,414482,122846 -r1,18780:25112961,29235094:1413401,537328,122846 -k1,18755:23699560,29235094:-1413401 -) -(1,18755:23699560,29235094:1413401,414482,122846 -k1,18755:23699560,29235094:3277 -h1,18755:25109684,29235094:0,411205,112570 -) -k1,18755:25556076,29235094:443115 -k1,18755:28172365,29235094:443115 -k1,18755:29231518,29235094:443115 -k1,18755:32583029,29235094:0 -) -(1,18756:6630773,30076582:25952256,513147,134348 -k1,18755:9730374,30076582:200288 -k1,18755:11537605,30076582:200288 -k1,18755:13286509,30076582:200288 -k1,18755:16421499,30076582:200288 -k1,18755:17825028,30076582:200288 -k1,18755:19411402,30076582:200288 -k1,18755:20270981,30076582:200287 -k1,18755:22078212,30076582:200288 -k1,18755:23323144,30076582:200288 -k1,18755:24624437,30076582:200288 -k1,18755:26334675,30076582:200288 -k1,18755:29508987,30076582:200288 -k1,18755:30395437,30076582:200288 -k1,18755:32583029,30076582:0 -) -(1,18756:6630773,30918070:25952256,513147,126483 -k1,18755:10750857,30918070:181370 -k1,18755:13035277,30918070:181370 -k1,18755:13868076,30918070:181371 -k1,18755:15657044,30918070:181370 -k1,18755:17763862,30918070:181370 -k1,18755:19919939,30918070:181477 -k1,18755:21054858,30918070:181370 -k1,18755:22340511,30918070:181371 -k1,18755:23614366,30918070:181370 -(1,18755:23614366,30918070:0,452978,115847 -r1,18780:25379479,30918070:1765113,568825,115847 -k1,18755:23614366,30918070:-1765113 -) -(1,18755:23614366,30918070:1765113,452978,115847 -k1,18755:23614366,30918070:3277 -h1,18755:25376202,30918070:0,411205,112570 -) -k1,18755:25560849,30918070:181370 -k1,18755:26393647,30918070:181370 -k1,18755:28727220,30918070:181371 -k1,18755:29927675,30918070:181370 -k1,18755:31923737,30918070:181370 -k1,18755:32583029,30918070:0 -) -(1,18756:6630773,31759558:25952256,513147,126483 -g1,18755:7849087,31759558 -g1,18755:9488797,31759558 -g1,18755:10300788,31759558 -g1,18755:11519102,31759558 -g1,18755:13231557,31759558 -g1,18755:14090078,31759558 -g1,18755:15308392,31759558 -g1,18755:17114564,31759558 -k1,18756:32583029,31759558:13919849 -g1,18756:32583029,31759558 -) -(1,18758:6630773,32601046:25952256,513147,126483 -h1,18757:6630773,32601046:983040,0,0 -k1,18757:8300126,32601046:208556 -k1,18757:9377033,32601046:208555 -k1,18757:11060804,32601046:208556 -k1,18757:13603751,32601046:208555 -k1,18757:17041266,32601046:208556 -k1,18757:19260466,32601046:208555 -k1,18757:20416673,32601046:208556 -k1,18757:21644313,32601046:208555 -k1,18757:25534682,32601046:208556 -k1,18757:26611589,32601046:208555 -k1,18757:27924427,32601046:208556 -k1,18757:29331636,32601046:208555 -k1,18757:31563944,32601046:208556 -k1,18757:32583029,32601046:0 -) -(1,18758:6630773,33442534:25952256,505283,134348 -k1,18757:8563164,33442534:278918 -k1,18757:10449681,33442534:278919 -k1,18757:11490127,33442534:278918 -k1,18757:14576607,33442534:278918 -k1,18757:17697167,33442534:278919 -k1,18757:18627513,33442534:278918 -k1,18757:19925516,33442534:278918 -k1,18757:23268898,33442534:278918 -k1,18757:26260352,33442534:278919 -k1,18757:27300798,33442534:278918 -(1,18757:27300798,33442534:0,452978,122846 -r1,18780:32583029,33442534:5282231,575824,122846 -k1,18757:27300798,33442534:-5282231 -) -(1,18757:27300798,33442534:5282231,452978,122846 -k1,18757:27300798,33442534:3277 -h1,18757:32579752,33442534:0,411205,112570 -) -k1,18757:32583029,33442534:0 -) -(1,18758:6630773,34284022:25952256,505283,122846 -g1,18757:8021447,34284022 -(1,18757:8021447,34284022:0,452978,122846 -r1,18780:13655390,34284022:5633943,575824,122846 -k1,18757:8021447,34284022:-5633943 -) -(1,18757:8021447,34284022:5633943,452978,122846 -k1,18757:8021447,34284022:3277 -h1,18757:13652113,34284022:0,411205,112570 -) -g1,18757:14028289,34284022 -(1,18757:14028289,34284022:0,414482,115847 -r1,18780:14386555,34284022:358266,530329,115847 -k1,18757:14028289,34284022:-358266 -) -(1,18757:14028289,34284022:358266,414482,115847 -k1,18757:14028289,34284022:3277 -h1,18757:14383278,34284022:0,411205,112570 -) -g1,18757:14759454,34284022 -(1,18757:14759454,34284022:0,414482,115847 -r1,18780:15117720,34284022:358266,530329,115847 -k1,18757:14759454,34284022:-358266 -) -(1,18757:14759454,34284022:358266,414482,115847 -k1,18757:14759454,34284022:3277 -h1,18757:15114443,34284022:0,411205,112570 -) -g1,18757:15490619,34284022 -(1,18757:15490619,34284022:0,414482,115847 -r1,18780:16904020,34284022:1413401,530329,115847 -k1,18757:15490619,34284022:-1413401 -) -(1,18757:15490619,34284022:1413401,414482,115847 -k1,18757:15490619,34284022:3277 -h1,18757:16900743,34284022:0,411205,112570 -) -g1,18757:17103249,34284022 -g1,18757:18493923,34284022 -(1,18757:18493923,34284022:0,452978,115847 -r1,18780:19907324,34284022:1413401,568825,115847 -k1,18757:18493923,34284022:-1413401 -) -(1,18757:18493923,34284022:1413401,452978,115847 -k1,18757:18493923,34284022:3277 -h1,18757:19904047,34284022:0,411205,112570 -) -k1,18758:32583029,34284022:12502035 -g1,18758:32583029,34284022 -) -v1,18760:6630773,35442827:0,393216,0 -(1,18770:6630773,40380512:25952256,5330901,0 -g1,18770:6630773,40380512 -g1,18770:6303093,40380512 -r1,18780:6401397,40380512:98304,5330901,0 -g1,18770:6600626,40380512 -g1,18770:6797234,40380512 -[1,18770:6797234,40380512:25785795,5330901,0 -(1,18761:6797234,35804900:25785795,755289,196608 -(1,18760:6797234,35804900:0,755289,196608 -r1,18780:8134168,35804900:1336934,951897,196608 -k1,18760:6797234,35804900:-1336934 -) -(1,18760:6797234,35804900:1336934,755289,196608 -) -k1,18760:8372326,35804900:238158 -k1,18760:8700006,35804900:327680 -k1,18760:10134851,35804900:238158 -k1,18760:13279530,35804900:238157 -k1,18760:15601733,35804900:238158 -k1,18760:16371388,35804900:238158 -k1,18760:17895362,35804900:238158 -k1,18760:19847286,35804900:238158 -k1,18760:20771605,35804900:238157 -k1,18760:21878115,35804900:238158 -k1,18760:23220555,35804900:238158 -k1,18760:24656056,35804900:238158 -k1,18760:25913299,35804900:238158 -k1,18760:29158903,35804900:238157 -k1,18760:30048489,35804900:238158 -k1,18760:31305732,35804900:238158 -k1,18760:32583029,35804900:0 -) -(1,18761:6797234,36646388:25785795,505283,134348 -k1,18760:8926990,36646388:170230 -k1,18760:10288664,36646388:170229 -k1,18760:11896099,36646388:170230 -k1,18760:13085414,36646388:170230 -k1,18760:15938032,36646388:170229 -k1,18760:16794424,36646388:170230 -k1,18760:17735357,36646388:170230 -k1,18760:20977914,36646388:170229 -k1,18760:21799572,36646388:170230 -k1,18760:22601569,36646388:170230 -k1,18760:23399634,36646388:170230 -k1,18760:25902945,36646388:170229 -k1,18760:26689213,36646388:170230 -k1,18760:28062684,36646388:170230 -k1,18760:29814952,36646388:170229 -k1,18760:30853534,36646388:170230 -k1,18760:32583029,36646388:0 -) -(1,18761:6797234,37487876:25785795,513147,126483 -g1,18760:8199704,37487876 -g1,18760:11785834,37487876 -g1,18760:14069108,37487876 -g1,18760:15215988,37487876 -g1,18760:16434302,37487876 -g1,18760:18059594,37487876 -g1,18760:18918115,37487876 -k1,18761:32583029,37487876:9772731 -g1,18761:32583029,37487876 -) -v1,18763:6797234,38678342:0,393216,0 -(1,18768:6797234,39659616:25785795,1374490,196608 -g1,18768:6797234,39659616 -g1,18768:6797234,39659616 -g1,18768:6600626,39659616 -(1,18768:6600626,39659616:0,1374490,196608 -r1,18780:32779637,39659616:26179011,1571098,196608 -k1,18768:6600625,39659616:-26179012 -) -(1,18768:6600626,39659616:26179011,1374490,196608 -[1,18768:6797234,39659616:25785795,1177882,0 -(1,18765:6797234,38885960:25785795,404226,107478 -(1,18764:6797234,38885960:0,0,0 -g1,18764:6797234,38885960 -g1,18764:6797234,38885960 -g1,18764:6469554,38885960 -(1,18764:6469554,38885960:0,0,0 -) -g1,18764:6797234,38885960 -) -k1,18765:6797234,38885960:0 -g1,18765:10590983,38885960 -g1,18765:14068586,38885960 -g1,18765:15965460,38885960 -h1,18765:16281606,38885960:0,0,0 -k1,18765:32583029,38885960:16301423 -g1,18765:32583029,38885960 -) -(1,18766:6797234,39552138:25785795,410518,107478 -h1,18766:6797234,39552138:0,0,0 -g1,18766:7113380,39552138 -g1,18766:7429526,39552138 -g1,18766:11855566,39552138 -g1,18766:12487858,39552138 -g1,18766:15965461,39552138 -g1,18766:17230044,39552138 -g1,18766:17862336,39552138 -h1,18766:19443064,39552138:0,0,0 -k1,18766:32583029,39552138:13139965 -g1,18766:32583029,39552138 -) -] -) -g1,18768:32583029,39659616 -g1,18768:6797234,39659616 -g1,18768:6797234,39659616 -g1,18768:32583029,39659616 -g1,18768:32583029,39659616 -) -h1,18768:6797234,39856224:0,0,0 -] -g1,18770:32583029,40380512 -) -h1,18770:6630773,40380512:0,0,0 -(1,18774:6630773,42789089:25952256,555811,12975 -(1,18774:6630773,42789089:2450326,534184,12975 -g1,18774:6630773,42789089 -g1,18774:9081099,42789089 -) -g1,18774:13161371,42789089 -g1,18774:14728599,42789089 -k1,18774:32583029,42789089:15225322 -g1,18774:32583029,42789089 -) -(1,18780:6630773,44023793:25952256,513147,134348 -k1,18779:7831611,44023793:158816 -k1,18779:11302616,44023793:158815 -k1,18779:12144317,44023793:158816 -k1,18779:16150751,44023793:158815 -k1,18779:20471103,44023793:158816 -k1,18779:23265121,44023793:158815 -k1,18779:25020394,44023793:158816 -k1,18779:25838501,44023793:158815 -k1,18779:29567718,44023793:158816 -k1,18779:32583029,44023793:0 -) -(1,18780:6630773,44865281:25952256,513147,134348 -k1,18779:8586285,44865281:220119 -k1,18779:9162264,44865281:220119 -k1,18779:10724560,44865281:220119 -k1,18779:13423252,44865281:220120 -k1,18779:14326256,44865281:220119 -k1,18779:16882078,44865281:220119 -k1,18779:17718235,44865281:220119 -k1,18779:18294214,44865281:220119 -k1,18779:19791630,44865281:220119 -k1,18779:20543246,44865281:220119 -k1,18779:22117339,44865281:220119 -k1,18779:25187620,44865281:220120 -k1,18779:26236769,44865281:220119 -k1,18779:28042859,44865281:220119 -k1,18779:29761786,44865281:220119 -k1,18779:31266411,44865281:220119 -k1,18780:32583029,44865281:0 -) -(1,18780:6630773,45706769:25952256,513147,134348 -k1,18779:8203965,45706769:246743 -k1,18779:8806568,45706769:246743 -k1,18779:12666311,45706769:246743 -k1,18779:14104499,45706769:246743 -k1,18779:17037563,45706769:246743 -k1,18779:20894029,45706769:246743 -k1,18779:21800063,45706769:246742 -k1,18779:23065891,45706769:246743 -k1,18779:27317539,45706769:246743 -k1,18779:28432634,45706769:246743 -k1,18779:29366850,45706769:246743 -k1,18779:31931601,45706769:246743 -k1,18779:32583029,45706769:0 -) -] -(1,18780:32583029,45706769:0,0,0 -g1,18780:32583029,45706769 -) -) -] -(1,18780:6630773,47279633:25952256,0,0 -h1,18780:6630773,47279633:25952256,0,0 -) -] -(1,18780:4262630,4025873:0,0,0 -[1,18780:-473656,4025873:0,0,0 -(1,18780:-473656,-710413:0,0,0 -(1,18780:-473656,-710413:0,0,0 -g1,18780:-473656,-710413 -) -g1,18780:-473656,-710413 -) -] -) -] -!25784 -}332 -Input:2947:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2948:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2949:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2950:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2951:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2952:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2953:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2954:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!764 -{333 -[1,18840:4262630,47279633:28320399,43253760,0 -(1,18840:4262630,4025873:0,0,0 -[1,18840:-473656,4025873:0,0,0 -(1,18840:-473656,-710413:0,0,0 -(1,18840:-473656,-644877:0,0,0 -k1,18840:-473656,-644877:-65536 +[1,18781:3078558,4812305:0,0,0 +(1,18781:3078558,49800853:0,16384,2228224 +k1,18781:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,18781:2537886,49800853:1179648,16384,0 ) -(1,18840:-473656,4736287:0,0,0 -k1,18840:-473656,4736287:5209943 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,18781:3078558,51504789:16384,1179648,0 ) -g1,18840:-473656,-710413 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) -[1,18840:6630773,47279633:25952256,43253760,0 -[1,18840:6630773,4812305:25952256,786432,0 -(1,18840:6630773,4812305:25952256,513147,126483 -(1,18840:6630773,4812305:25952256,513147,126483 -g1,18840:3078558,4812305 -[1,18840:3078558,4812305:0,0,0 -(1,18840:3078558,2439708:0,1703936,0 -k1,18840:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,18840:2537886,2439708:1179648,16384,0 -) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,18840:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +) +] +[1,18781:3078558,4812305:0,0,0 +(1,18781:3078558,49800853:0,16384,2228224 +g1,18781:29030814,49800853 +g1,18781:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,18781:36151628,51504789:16384,1179648,0 +) +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 +) +] +) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,18781:37855564,49800853:1179648,16384,0 +) +) +k1,18781:3078556,49800853:-34777008 +) +] +g1,18781:6630773,4812305 +k1,18781:21350816,4812305:13524666 +g1,18781:21999622,4812305 +g1,18781:25611966,4812305 +g1,18781:28956923,4812305 +g1,18781:29772190,4812305 +) +) +] +[1,18781:6630773,45706769:25952256,40108032,0 +(1,18781:6630773,45706769:25952256,40108032,0 +(1,18781:6630773,45706769:0,0,0 +g1,18781:6630773,45706769 +) +[1,18781:6630773,45706769:25952256,40108032,0 +(1,18731:6630773,6254097:25952256,513147,126483 +k1,18730:8535343,6254097:243888 +k1,18730:9549933,6254097:243887 +k1,18730:12455238,6254097:243888 +k1,18730:13983631,6254097:243887 +k1,18730:15755163,6254097:243888 +k1,18730:17171489,6254097:243887 +k1,18730:20000772,6254097:243888 +k1,18730:20896088,6254097:243888 +k1,18730:22159060,6254097:243887 +k1,18730:23853915,6254097:243888 +k1,18730:25294489,6254097:243887 +k1,18730:28123772,6254097:243888 +k1,18730:29359219,6254097:243887 +k1,18730:31015408,6254097:243888 +k1,18730:32583029,6254097:0 +) +(1,18731:6630773,7119177:25952256,513147,134348 +k1,18730:8246302,7119177:268109 +k1,18730:10001492,7119177:268178 +k1,18730:13430470,7119177:268177 +k1,18730:14966114,7119177:268178 +k1,18730:17195785,7119177:268178 +k1,18730:18655408,7119177:268178 +k1,18730:20889011,7119177:268178 +k1,18730:21808617,7119177:268178 +k1,18730:23095880,7119177:268178 +k1,18730:24641355,7119177:268178 +k1,18730:25595695,7119177:268178 +k1,18730:26219732,7119177:268177 +k1,18730:27771105,7119177:268178 +k1,18730:29770744,7119177:268178 +k1,18730:31235609,7119177:268178 +k1,18730:32583029,7119177:0 +) +(1,18731:6630773,7984257:25952256,505283,134348 +g1,18730:9415397,7984257 +g1,18730:11127852,7984257 +g1,18730:12802296,7984257 +g1,18730:13357385,7984257 +g1,18730:17286923,7984257 +k1,18731:32583029,7984257:11332489 +g1,18731:32583029,7984257 +) +v1,18733:6630773,8669112:0,393216,0 +(1,18750:6630773,18604371:25952256,10328475,196608 +g1,18750:6630773,18604371 +g1,18750:6630773,18604371 +g1,18750:6434165,18604371 +(1,18750:6434165,18604371:0,10328475,196608 +r1,18781:32779637,18604371:26345472,10525083,196608 +k1,18750:6434165,18604371:-26345472 +) +(1,18750:6434165,18604371:26345472,10328475,196608 +[1,18750:6630773,18604371:25952256,10131867,0 +(1,18735:6630773,8903549:25952256,431045,6605 +(1,18734:6630773,8903549:0,0,0 +g1,18734:6630773,8903549 +g1,18734:6630773,8903549 +g1,18734:6303093,8903549 +(1,18734:6303093,8903549:0,0,0 +) +g1,18734:6630773,8903549 +) +g1,18735:10282266,8903549 +k1,18735:10282266,8903549:0 +h1,18735:10946174,8903549:0,0,0 +k1,18735:32583030,8903549:21636856 +g1,18735:32583030,8903549 +) +(1,18736:6630773,9588404:25952256,431045,112852 +h1,18736:6630773,9588404:0,0,0 +k1,18736:7303231,9588404:672458 +k1,18736:7975688,9588404:672457 +k1,18736:15951132,9588404:672458 +k1,18736:22930715,9588404:672458 +k1,18736:25926851,9588404:672458 +k1,18736:26931262,9588404:672457 +k1,18736:30923259,9588404:672458 +k1,18736:32583029,9588404:0 +) +(1,18736:6630773,10273259:25952256,424439,79822 +g1,18736:8290543,10273259 +g1,18736:8954451,10273259 +h1,18736:10614221,10273259:0,0,0 +k1,18736:32583029,10273259:21968808 +g1,18736:32583029,10273259 +) +(1,18737:6630773,10958114:25952256,431045,112852 +h1,18737:6630773,10958114:0,0,0 +g1,18737:10946174,10958114 +g1,18737:11942036,10958114 +k1,18737:11942036,10958114:0 +h1,18737:21900654,10958114:0,0,0 +k1,18737:32583029,10958114:10682375 +g1,18737:32583029,10958114 +) +(1,18738:6630773,11642969:25952256,431045,6605 +h1,18738:6630773,11642969:0,0,0 +g1,18738:10282266,11642969 +k1,18738:10282266,11642969:0 +h1,18738:10946174,11642969:0,0,0 +k1,18738:32583030,11642969:21636856 +g1,18738:32583030,11642969 +) +(1,18739:6630773,12327824:25952256,431045,112852 +h1,18739:6630773,12327824:0,0,0 +g1,18739:6962727,12327824 +g1,18739:7294681,12327824 +g1,18739:14929621,12327824 +g1,18739:19908930,12327824 +g1,18739:22564562,12327824 +g1,18739:23228470,12327824 +g1,18739:26879963,12327824 +g1,18739:29867548,12327824 +g1,18739:30531456,12327824 +h1,18739:32191226,12327824:0,0,0 +k1,18739:32583029,12327824:391803 +g1,18739:32583029,12327824 +) +(1,18740:6630773,13012679:25952256,431045,112852 +h1,18740:6630773,13012679:0,0,0 +g1,18740:9286405,13012679 +g1,18740:10282267,13012679 +k1,18740:10282267,13012679:0 +h1,18740:20240885,13012679:0,0,0 +k1,18740:32583029,13012679:12342144 +g1,18740:32583029,13012679 +) +(1,18741:6630773,13697534:25952256,424439,112852 +h1,18741:6630773,13697534:0,0,0 +g1,18741:9286405,13697534 +g1,18741:10282267,13697534 +g1,18741:13269853,13697534 +g1,18741:13933761,13697534 +g1,18741:15593531,13697534 +g1,18741:17585255,13697534 +g1,18741:18249163,13697534 +g1,18741:18913071,13697534 +g1,18741:20904795,13697534 +g1,18741:22564565,13697534 +g1,18741:24888243,13697534 +g1,18741:25552151,13697534 +g1,18741:27211921,13697534 +g1,18741:29203645,13697534 +g1,18741:29867553,13697534 +k1,18741:29867553,13697534:0 +h1,18741:32191231,13697534:0,0,0 +k1,18741:32583029,13697534:391798 +g1,18741:32583029,13697534 +) +(1,18742:6630773,14382389:25952256,424439,112852 +h1,18742:6630773,14382389:0,0,0 +g1,18742:6962727,14382389 +g1,18742:7294681,14382389 +g1,18742:7626635,14382389 +g1,18742:7958589,14382389 +g1,18742:8290543,14382389 +g1,18742:8622497,14382389 +g1,18742:8954451,14382389 +g1,18742:9286405,14382389 +g1,18742:9618359,14382389 +g1,18742:9950313,14382389 +g1,18742:10282267,14382389 +g1,18742:10614221,14382389 +g1,18742:10946175,14382389 +g1,18742:11278129,14382389 +g1,18742:11610083,14382389 +g1,18742:11942037,14382389 +g1,18742:12273991,14382389 +g1,18742:12605945,14382389 +g1,18742:14597669,14382389 +g1,18742:15261577,14382389 +g1,18742:24556288,14382389 +g1,18742:25220196,14382389 +k1,18742:25220196,14382389:0 +h1,18742:29867551,14382389:0,0,0 +k1,18742:32583029,14382389:2715478 +g1,18742:32583029,14382389 +) +(1,18743:6630773,15067244:25952256,424439,112852 +h1,18743:6630773,15067244:0,0,0 +g1,18743:6962727,15067244 +g1,18743:7294681,15067244 +g1,18743:7626635,15067244 +g1,18743:7958589,15067244 +g1,18743:8290543,15067244 +g1,18743:8622497,15067244 +g1,18743:8954451,15067244 +g1,18743:9286405,15067244 +g1,18743:9618359,15067244 +g1,18743:9950313,15067244 +g1,18743:10282267,15067244 +g1,18743:10614221,15067244 +g1,18743:10946175,15067244 +g1,18743:11278129,15067244 +g1,18743:11610083,15067244 +g1,18743:11942037,15067244 +g1,18743:12273991,15067244 +g1,18743:12605945,15067244 +g1,18743:12937899,15067244 +g1,18743:13269853,15067244 +g1,18743:13601807,15067244 +g1,18743:13933761,15067244 +g1,18743:14265715,15067244 +g1,18743:14597669,15067244 +g1,18743:14929623,15067244 +g1,18743:15261577,15067244 +g1,18743:15593531,15067244 +g1,18743:15925485,15067244 +g1,18743:16257439,15067244 +g1,18743:16589393,15067244 +g1,18743:16921347,15067244 +g1,18743:24556288,15067244 +g1,18743:25220196,15067244 +h1,18743:28539735,15067244:0,0,0 +k1,18743:32583029,15067244:4043294 +g1,18743:32583029,15067244 +) +(1,18744:6630773,15752099:25952256,0,0 +h1,18744:6630773,15752099:0,0,0 +h1,18744:6630773,15752099:0,0,0 +k1,18744:32583029,15752099:25952256 +g1,18744:32583029,15752099 +) +(1,18745:6630773,16436954:25952256,424439,112852 +h1,18745:6630773,16436954:0,0,0 +g1,18745:9618359,16436954 +h1,18745:9950313,16436954:0,0,0 +k1,18745:32583029,16436954:22632716 +g1,18745:32583029,16436954 +) +(1,18746:6630773,17121809:25952256,424439,112852 +h1,18746:6630773,17121809:0,0,0 +g1,18746:6962727,17121809 +g1,18746:7294681,17121809 +g1,18746:12273990,17121809 +g1,18746:12937898,17121809 +k1,18746:12937898,17121809:0 +h1,18746:15593530,17121809:0,0,0 +k1,18746:32583030,17121809:16989500 +g1,18746:32583030,17121809 +) +(1,18747:6630773,17806664:25952256,424439,112852 +h1,18747:6630773,17806664:0,0,0 +k1,18747:6901191,17806664:270418 +k1,18747:7171610,17806664:270419 +k1,18747:7442028,17806664:270418 +k1,18747:7712447,17806664:270419 +k1,18747:7982865,17806664:270418 +k1,18747:8253284,17806664:270419 +k1,18747:8523702,17806664:270418 +k1,18747:8794121,17806664:270419 +k1,18747:9064539,17806664:270418 +k1,18747:9334958,17806664:270419 +k1,18747:9605376,17806664:270418 +k1,18747:9875794,17806664:270418 +k1,18747:11805983,17806664:270419 +k1,18747:12408355,17806664:270418 +k1,18747:13342682,17806664:270419 +k1,18747:13945054,17806664:270418 +k1,18747:14547427,17806664:270419 +k1,18747:15481753,17806664:270418 +k1,18747:17411942,17806664:270419 +k1,18747:18014314,17806664:270418 +k1,18747:20276457,17806664:270419 +k1,18747:23534460,17806664:270418 +k1,18747:24136832,17806664:270418 +k1,18747:26730929,17806664:270419 +k1,18747:29656978,17806664:270418 +k1,18747:30259351,17806664:270419 +k1,18747:30259351,17806664:0 +h1,18747:32583029,17806664:0,0,0 +k1,18747:32583029,17806664:0 +k1,18747:32583029,17806664:0 +) +(1,18748:6630773,18491519:25952256,424439,112852 +h1,18748:6630773,18491519:0,0,0 +g1,18748:6962727,18491519 +g1,18748:7294681,18491519 +g1,18748:7626635,18491519 +g1,18748:7958589,18491519 +g1,18748:8290543,18491519 +g1,18748:8622497,18491519 +g1,18748:8954451,18491519 +g1,18748:9286405,18491519 +g1,18748:9618359,18491519 +g1,18748:9950313,18491519 +g1,18748:10282267,18491519 +g1,18748:10614221,18491519 +g1,18748:10946175,18491519 +g1,18748:11278129,18491519 +g1,18748:11610083,18491519 +g1,18748:11942037,18491519 +g1,18748:13933761,18491519 +g1,18748:14597669,18491519 +g1,18748:17917208,18491519 +g1,18748:19908932,18491519 +g1,18748:20572840,18491519 +h1,18748:23560425,18491519:0,0,0 +k1,18748:32583029,18491519:9022604 +g1,18748:32583029,18491519 +) +] +) +g1,18750:32583029,18604371 +g1,18750:6630773,18604371 +g1,18750:6630773,18604371 +g1,18750:32583029,18604371 +g1,18750:32583029,18604371 +) +h1,18750:6630773,18800979:0,0,0 +(1,18753:6630773,27950181:25952256,9083666,0 +k1,18753:10523651,27950181:3892878 +h1,18752:10523651,27950181:0,0,0 +(1,18752:10523651,27950181:18166500,9083666,0 +(1,18752:10523651,27950181:18167376,9083688,0 +(1,18752:10523651,27950181:18167376,9083688,0 +(1,18752:10523651,27950181:0,9083688,0 +(1,18752:10523651,27950181:0,14208860,0 +(1,18752:10523651,27950181:28417720,14208860,0 +) +k1,18752:10523651,27950181:-28417720 +) +) +g1,18752:28691027,27950181 +) +) +) +g1,18753:28690151,27950181 +k1,18753:32583029,27950181:3892878 +) +v1,18761:6630773,28815261:0,393216,0 +(1,18781:6630773,43956402:25952256,15534357,0 +g1,18781:6630773,43956402 +g1,18781:6237557,43956402 +r1,18781:6368629,43956402:131072,15534357,0 +g1,18781:6567858,43956402 +g1,18781:6764466,43956402 +[1,18781:6764466,43956402:25818563,15534357,0 +(1,18762:6764466,29123559:25818563,701514,196608 +(1,18761:6764466,29123559:0,701514,196608 +r1,18781:8010564,29123559:1246098,898122,196608 +k1,18761:6764466,29123559:-1246098 +) +(1,18761:6764466,29123559:1246098,701514,196608 +) +k1,18761:8175572,29123559:165008 +k1,18761:8503252,29123559:327680 +k1,18761:10058279,29123559:165008 +k1,18761:12942376,29123559:165008 +k1,18761:15537459,29123559:165008 +k1,18761:16721552,29123559:165008 +k1,18761:19682326,29123559:165008 +k1,18761:22873131,29123559:165008 +k1,18761:24322645,29123559:165008 +k1,18761:25954349,29123559:165008 +k1,18761:28947890,29123559:165008 +k1,18761:30304343,29123559:165008 +k1,18761:32583029,29123559:0 +) +(1,18762:6764466,29988639:25818563,513147,134348 +k1,18761:8064045,29988639:207094 +k1,18761:10157264,29988639:207093 +k1,18761:11383443,29988639:207094 +k1,18761:13388844,29988639:207093 +k1,18761:14985957,29988639:207094 +k1,18761:18049765,29988639:207094 +k1,18761:21019201,29988639:207093 +k1,18761:22942683,29988639:207094 +k1,18761:23809069,29988639:207094 +k1,18761:25634246,29988639:207093 +k1,18761:26788991,29988639:207094 +k1,18761:30415753,29988639:207093 +k1,18761:31641932,29988639:207094 +k1,18762:32583029,29988639:0 +) +(1,18762:6764466,30853719:25818563,513147,134348 +k1,18761:9964971,30853719:190436 +k1,18761:10814700,30853719:190437 +k1,18761:13949670,30853719:190437 +k1,18761:16150095,30853719:190436 +k1,18761:17359617,30853719:190437 +k1,18761:20074500,30853719:190436 +k1,18761:21786028,30853719:190437 +k1,18761:22874307,30853719:190436 +k1,18761:26056463,30853719:190437 +k1,18761:28612749,30853719:190436 +k1,18761:30006427,30853719:190437 +k1,18761:31423042,30853719:190436 +k1,18761:32583029,30853719:0 +) +(1,18762:6764466,31718799:25818563,505283,134348 +k1,18761:8034294,31718799:177343 +(1,18761:8034294,31718799:0,452978,115847 +r1,18781:10854543,31718799:2820249,568825,115847 +k1,18761:8034294,31718799:-2820249 +) +(1,18761:8034294,31718799:2820249,452978,115847 +k1,18761:8034294,31718799:3277 +h1,18761:10851266,31718799:0,411205,112570 +) +k1,18761:11031886,31718799:177343 +k1,18761:12598591,31718799:177342 +k1,18761:16687778,31718799:177343 +k1,18761:19709384,31718799:177343 +k1,18761:23624901,31718799:177343 +k1,18761:24906526,31718799:177343 +k1,18761:25831635,31718799:177343 +k1,18761:27294793,31718799:177342 +k1,18761:29166897,31718799:177343 +k1,18761:29960278,31718799:177343 +k1,18761:32583029,31718799:0 +) +(1,18762:6764466,32583879:25818563,513147,134348 +k1,18761:8578096,32583879:195546 +k1,18761:9919868,32583879:195547 +(1,18761:9919868,32583879:0,452978,115847 +r1,18781:11333269,32583879:1413401,568825,115847 +k1,18761:9919868,32583879:-1413401 +) +(1,18761:9919868,32583879:1413401,452978,115847 +k1,18761:9919868,32583879:3277 +h1,18761:11329992,32583879:0,411205,112570 +) +k1,18761:11702485,32583879:195546 +k1,18761:13491867,32583879:195546 +k1,18761:15664634,32583879:195546 +k1,18761:17558219,32583879:195547 +k1,18761:20340471,32583879:195546 +k1,18761:21929968,32583879:195546 +k1,18761:24659137,32583879:195547 +k1,18761:26462281,32583879:195546 +k1,18761:27189324,32583879:195546 +k1,18761:28036298,32583879:195546 +k1,18761:29324330,32583879:195547 +k1,18761:31289348,32583879:195546 +k1,18762:32583029,32583879:0 +) +(1,18762:6764466,33448959:25818563,505283,134348 +k1,18761:9467523,33448959:217932 +k1,18761:11776054,33448959:217933 +k1,18761:15789175,33448959:217932 +k1,18761:17892579,33448959:217933 +k1,18761:19102071,33448959:217932 +k1,18761:22517506,33448959:217933 +k1,18761:23421600,33448959:217932 +k1,18761:26455615,33448959:217933 +k1,18761:27289585,33448959:217932 +k1,18761:28526603,33448959:217933 +k1,18761:30525148,33448959:217932 +k1,18761:31141540,33448959:217933 +k1,18761:32010900,33448959:217932 +k1,18761:32583029,33448959:0 +) +(1,18762:6764466,34314039:25818563,513147,134348 +k1,18761:9336660,34314039:212898 +k1,18761:10200987,34314039:212899 +k1,18761:11432970,34314039:212898 +k1,18761:15321127,34314039:212898 +k1,18761:16193317,34314039:212898 +k1,18761:17425301,34314039:212899 +k1,18761:19268079,34314039:212898 +k1,18761:20140269,34314039:212898 +k1,18761:21372253,34314039:212899 +k1,18761:23929374,34314039:212898 +k1,18761:27044206,34314039:212898 +k1,18761:28651055,34314039:212898 +k1,18761:30738284,34314039:212899 +k1,18761:31563944,34314039:212898 +k1,18761:32583029,34314039:0 +) +(1,18762:6764466,35179119:25818563,513147,7863 +g1,18761:8720060,35179119 +g1,18761:9993424,35179119 +k1,18762:32583028,35179119:20348928 +g1,18762:32583028,35179119 +) +(1,18764:6764466,36044199:25818563,505283,138281 +h1,18763:6764466,36044199:983040,0,0 +k1,18763:10671044,36044199:388605 +k1,18763:13888182,36044199:388605 +k1,18763:17429069,36044199:388605 +$1,18763:17429069,36044199 +$1,18763:17931730,36044199 +k1,18763:18320335,36044199:388605 +k1,18763:19900385,36044199:388605 +$1,18763:19900385,36044199 +$1,18763:20452198,36044199 +k1,18763:20840803,36044199:388605 +k1,18763:24967582,36044199:388605 +k1,18763:25972225,36044199:388605 +(1,18763:25972225,36044199:0,452978,115847 +r1,18781:28792474,36044199:2820249,568825,115847 +k1,18763:25972225,36044199:-2820249 +) +(1,18763:25972225,36044199:2820249,452978,115847 +k1,18763:25972225,36044199:3277 +h1,18763:28789197,36044199:0,411205,112570 +) +k1,18763:29181079,36044199:388605 +k1,18763:30959047,36044199:388605 +k1,18764:32583029,36044199:0 +) +(1,18764:6764466,36909279:25818563,505283,134348 +k1,18763:9689720,36909279:424400 +k1,18763:11305565,36909279:424400 +k1,18763:14199362,36909279:424400 +k1,18763:16599017,36909279:424400 +k1,18763:17674845,36909279:424400 +k1,18763:18847011,36909279:424400 +k1,18763:21569758,36909279:424399 +k1,18763:22645586,36909279:424400 +k1,18763:24048439,36909279:424400 +k1,18763:26762012,36909279:424400 +k1,18763:28389653,36909279:424400 +k1,18763:32095441,36909279:424400 +k1,18763:32583029,36909279:0 +) +(1,18764:6764466,37774359:25818563,505283,134348 +k1,18763:9176336,37774359:460208 +k1,18763:11969627,37774359:460209 +k1,18763:15042100,37774359:460208 +k1,18763:16033806,37774359:460209 +k1,18763:19344830,37774359:460208 +k1,18763:20566567,37774359:460209 +k1,18763:23606927,37774359:460208 +k1,18763:27114559,37774359:460209 +k1,18763:30133293,37774359:460208 +k1,18764:32583029,37774359:0 +) +(1,18764:6764466,38639439:25818563,513147,134348 +k1,18763:7999449,38639439:415127 +(1,18763:7999449,38639439:0,414482,115847 +r1,18781:9412850,38639439:1413401,530329,115847 +k1,18763:7999449,38639439:-1413401 +) +(1,18763:7999449,38639439:1413401,414482,115847 +k1,18763:7999449,38639439:3277 +h1,18763:9409573,38639439:0,411205,112570 +) +k1,18763:9827977,38639439:415127 +k1,18763:11434549,38639439:415127 +(1,18763:11434549,38639439:0,414482,115847 +r1,18781:12847950,38639439:1413401,530329,115847 +k1,18763:11434549,38639439:-1413401 +) +(1,18763:11434549,38639439:1413401,414482,115847 +k1,18763:11434549,38639439:3277 +h1,18763:12844673,38639439:0,411205,112570 +) +k1,18763:13263078,38639439:415128 +k1,18763:14869650,38639439:415127 +k1,18763:18724762,38639439:415127 +k1,18763:20424395,38639439:415127 +k1,18763:23365935,38639439:415127 +k1,18763:25593788,38639439:415127 +k1,18763:26753405,38639439:415128 +k1,18763:28187617,38639439:415127 +k1,18763:30028152,38639439:415127 +k1,18763:31102571,38639439:415127 +k1,18764:32583029,38639439:0 +) +(1,18764:6764466,39504519:25818563,505283,134348 +k1,18763:8150353,39504519:221968 +(1,18763:8150353,39504519:0,452978,122846 +r1,18781:13432584,39504519:5282231,575824,122846 +k1,18763:8150353,39504519:-5282231 +) +(1,18763:8150353,39504519:5282231,452978,122846 +k1,18763:8150353,39504519:3277 +h1,18763:13429307,39504519:0,411205,112570 +) +k1,18763:13828222,39504519:221968 +(1,18763:13828222,39504519:0,452978,122846 +r1,18781:19462165,39504519:5633943,575824,122846 +k1,18763:13828222,39504519:-5633943 +) +(1,18763:13828222,39504519:5633943,452978,122846 +k1,18763:13828222,39504519:3277 +h1,18763:19458888,39504519:0,411205,112570 +) +k1,18763:19857804,39504519:221969 +(1,18763:19857804,39504519:0,452978,122846 +r1,18781:25491747,39504519:5633943,575824,122846 +k1,18763:19857804,39504519:-5633943 +) +(1,18763:19857804,39504519:5633943,452978,122846 +k1,18763:19857804,39504519:3277 +h1,18763:25488470,39504519:0,411205,112570 +) +k1,18763:25887385,39504519:221968 +(1,18763:25887385,39504519:0,452978,122846 +r1,18781:31169616,39504519:5282231,575824,122846 +k1,18763:25887385,39504519:-5282231 +) +(1,18763:25887385,39504519:5282231,452978,122846 +k1,18763:25887385,39504519:3277 +h1,18763:31166339,39504519:0,411205,112570 +) +k1,18763:31391584,39504519:221968 +k1,18764:32583029,39504519:0 +) +(1,18764:6764466,40369599:25818563,513147,134348 +(1,18763:6764466,40369599:0,452978,122846 +r1,18781:12046697,40369599:5282231,575824,122846 +k1,18763:6764466,40369599:-5282231 +) +(1,18763:6764466,40369599:5282231,452978,122846 +k1,18763:6764466,40369599:3277 +h1,18763:12043420,40369599:0,411205,112570 +) +k1,18763:12407993,40369599:187626 +k1,18763:14469950,40369599:187627 +k1,18763:18097561,40369599:187626 +k1,18763:19276748,40369599:187627 +k1,18763:21441595,40369599:187626 +k1,18763:22576873,40369599:187627 +k1,18763:26204484,40369599:187626 +k1,18763:27999709,40369599:187627 +k1,18763:29378780,40369599:187626 +k1,18763:31753999,40369599:187627 +k1,18764:32583029,40369599:0 +) +(1,18764:6764466,41234679:25818563,505283,134348 +k1,18763:8207623,41234679:178312 +k1,18763:8998698,41234679:178313 +k1,18763:12121543,41234679:178312 +k1,18763:14659151,41234679:178312 +k1,18763:15488892,41234679:178313 +k1,18763:16686289,41234679:178312 +k1,18763:19389048,41234679:178312 +k1,18763:20914781,41234679:178313 +k1,18763:22377599,41234679:178312 +k1,18763:24783480,41234679:178312 +k1,18763:27091058,41234679:178313 +k1,18763:30550102,41234679:178312 +k1,18763:32583029,41234679:0 +) +(1,18764:6764466,42099759:25818563,513147,134348 +k1,18763:9727500,42099759:200691 +k1,18763:11709461,42099759:200692 +k1,18763:12593037,42099759:200691 +k1,18763:14826655,42099759:200691 +k1,18763:17101561,42099759:200692 +k1,18763:19000290,42099759:200691 +k1,18763:20936374,42099759:200691 +k1,18763:23025813,42099759:200691 +k1,18763:24620456,42099759:200692 +k1,18763:26068953,42099759:200691 +k1,18763:27522037,42099759:200691 +k1,18763:29711091,42099759:200692 +k1,18763:31648486,42099759:200691 +k1,18764:32583029,42099759:0 +) +(1,18764:6764466,42964839:25818563,513147,126483 +k1,18763:9707196,42964839:156795 +k1,18763:11244179,42964839:156795 +k1,18763:13831048,42964839:156794 +k1,18763:16670887,42964839:156795 +k1,18763:17443720,42964839:156795 +k1,18763:18619600,42964839:156795 +k1,18763:21645561,42964839:156795 +k1,18763:23767781,42964839:156795 +k1,18763:24576003,42964839:156794 +k1,18763:27495141,42964839:156795 +k1,18763:29726150,42964839:156795 +k1,18763:31074390,42964839:156795 +k1,18763:32583029,42964839:0 +) +(1,18764:6764466,43829919:25818563,473825,126483 +k1,18764:32583029,43829919:22700360 +g1,18764:32583029,43829919 +) +] +g1,18781:32583029,43956402 +) +] +(1,18781:32583029,45706769:0,0,0 +g1,18781:32583029,45706769 +) +) +] +(1,18781:6630773,47279633:25952256,0,0 +h1,18781:6630773,47279633:25952256,0,0 +) +] +(1,18781:4262630,4025873:0,0,0 +[1,18781:-473656,4025873:0,0,0 +(1,18781:-473656,-710413:0,0,0 +(1,18781:-473656,-710413:0,0,0 +g1,18781:-473656,-710413 +) +g1,18781:-473656,-710413 +) +] +) +] +!24010 +}313 +Input:2927:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2928:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2929:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2930:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2931:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2932:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2933:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2934:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2935:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2936:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!952 +{314 +[1,18814:4262630,47279633:28320399,43253760,0 +(1,18814:4262630,4025873:0,0,0 +[1,18814:-473656,4025873:0,0,0 +(1,18814:-473656,-710413:0,0,0 +(1,18814:-473656,-644877:0,0,0 +k1,18814:-473656,-644877:-65536 +) +(1,18814:-473656,4736287:0,0,0 +k1,18814:-473656,4736287:5209943 +) +g1,18814:-473656,-710413 ) ] ) +[1,18814:6630773,47279633:25952256,43253760,0 +[1,18814:6630773,4812305:25952256,786432,0 +(1,18814:6630773,4812305:25952256,485622,11795 +(1,18814:6630773,4812305:25952256,485622,11795 +g1,18814:3078558,4812305 +[1,18814:3078558,4812305:0,0,0 +(1,18814:3078558,2439708:0,1703936,0 +k1,18814:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,18814:2537886,2439708:1179648,16384,0 ) +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,18814:3078558,1915420:16384,1179648,0 ) -] -[1,18840:3078558,4812305:0,0,0 -(1,18840:3078558,2439708:0,1703936,0 -g1,18840:29030814,2439708 -g1,18840:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,18840:36151628,1915420:16384,1179648,0 -) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,18840:37855564,2439708:1179648,16384,0 -) ) -k1,18840:3078556,2439708:-34777008 ) ] -[1,18840:3078558,4812305:0,0,0 -(1,18840:3078558,49800853:0,16384,2228224 -k1,18840:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,18840:2537886,49800853:1179648,16384,0 +[1,18814:3078558,4812305:0,0,0 +(1,18814:3078558,2439708:0,1703936,0 +g1,18814:29030814,2439708 +g1,18814:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,18814:36151628,1915420:16384,1179648,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,18840:3078558,51504789:16384,1179648,0 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 -) -] -) -) -) -] -[1,18840:3078558,4812305:0,0,0 -(1,18840:3078558,49800853:0,16384,2228224 -g1,18840:29030814,49800853 -g1,18840:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,18840:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] -) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,18840:37855564,49800853:1179648,16384,0 -) -) -k1,18840:3078556,49800853:-34777008 -) -] -g1,18840:6630773,4812305 -k1,18840:21350816,4812305:13524666 -g1,18840:21999622,4812305 -g1,18840:25611966,4812305 -g1,18840:28956923,4812305 -g1,18840:29772190,4812305 -) -) -] -[1,18840:6630773,45706769:25952256,40108032,0 -(1,18840:6630773,45706769:25952256,40108032,0 -(1,18840:6630773,45706769:0,0,0 -g1,18840:6630773,45706769 -) -[1,18840:6630773,45706769:25952256,40108032,0 -(1,18780:6630773,6254097:25952256,505283,134348 -k1,18779:10852930,6254097:150405 -k1,18779:12194780,6254097:150405 -k1,18779:13779113,6254097:150405 -k1,18779:14948603,6254097:150405 -k1,18779:17401288,6254097:150405 -k1,18779:18720200,6254097:150405 -k1,18779:19679975,6254097:150405 -k1,18779:21818087,6254097:150405 -k1,18779:25751885,6254097:150405 -k1,18779:27638994,6254097:150405 -k1,18779:28992640,6254097:150405 -k1,18779:29498905,6254097:150405 -k1,18779:32583029,6254097:0 -) -(1,18780:6630773,7095585:25952256,505283,134348 -k1,18779:10096448,7095585:209846 -k1,18779:11497739,7095585:209846 -k1,18779:15779337,7095585:209846 -k1,18779:18299327,7095585:209846 -k1,18779:19160602,7095585:209847 -k1,18779:23461205,7095585:209846 -k1,18779:26670634,7095585:209846 -k1,18779:27748832,7095585:209846 -k1,18779:29062960,7095585:209846 -k1,18779:30558622,7095585:209846 -k1,18779:32583029,7095585:0 -) -(1,18780:6630773,7937073:25952256,513147,134348 -k1,18779:7802164,7937073:152306 -k1,18779:10978300,7937073:152305 -k1,18779:11789898,7937073:152306 -k1,18779:12961288,7937073:152305 -k1,18779:16666301,7937073:152306 -k1,18779:17868493,7937073:152305 -k1,18779:20299486,7937073:152306 -h1,18779:21270074,7937073:0,0,0 -k1,18779:21422379,7937073:152305 -k1,18779:22384055,7937073:152306 -k1,18779:24034513,7937073:152305 -h1,18779:25229890,7937073:0,0,0 -k1,18779:25382196,7937073:152306 -k1,18779:26482152,7937073:152305 -k1,18779:26990318,7937073:152306 -k1,18779:30752346,7937073:152305 -k1,18779:31563944,7937073:152306 -k1,18779:32583029,7937073:0 -) -(1,18780:6630773,8778561:25952256,513147,134348 -k1,18779:8812073,8778561:193593 -k1,18779:10940289,8778561:193593 -k1,18779:14720013,8778561:193594 -k1,18779:18356212,8778561:193593 -k1,18779:19568890,8778561:193593 -k1,18779:22286930,8778561:193593 -k1,18779:25570546,8778561:193593 -k1,18779:26380178,8778561:193594 -k1,18779:27592856,8778561:193593 -k1,18779:30130672,8778561:193593 -k1,18780:32583029,8778561:0 -k1,18780:32583029,8778561:0 -) -(1,18782:6630773,9620049:25952256,513147,115847 -h1,18781:6630773,9620049:983040,0,0 -k1,18781:8963761,9620049:153261 -k1,18781:11522194,9620049:153261 -(1,18781:11522194,9620049:0,452978,115847 -r1,18840:16101002,9620049:4578808,568825,115847 -k1,18781:11522194,9620049:-4578808 -) -(1,18781:11522194,9620049:4578808,452978,115847 -k1,18781:11522194,9620049:3277 -h1,18781:16097725,9620049:0,411205,112570 -) -k1,18781:16254263,9620049:153261 -k1,18781:17425298,9620049:153261 -k1,18781:17934419,9620049:153261 -k1,18781:20498749,9620049:153260 -k1,18781:22393302,9620049:153261 -k1,18781:23197991,9620049:153261 -k1,18781:27423004,9620049:153261 -k1,18781:28192303,9620049:153261 -k1,18781:29364649,9620049:153261 -k1,18781:30884991,9620049:153261 -k1,18781:32583029,9620049:0 -) -(1,18782:6630773,10461537:25952256,513147,138281 -k1,18781:7788944,10461537:139086 -k1,18781:9830541,10461537:139087 -k1,18781:10917278,10461537:139086 -$1,18781:10917278,10461537 -$1,18781:11419939,10461537 -k1,18781:11559026,10461537:139087 -k1,18781:12889557,10461537:139086 -$1,18781:12889557,10461537 -$1,18781:13441370,10461537 -k1,18781:13580457,10461537:139087 -k1,18781:14711103,10461537:139086 -k1,18781:20095036,10461537:139087 -k1,18781:24857687,10461537:139086 -k1,18781:28004221,10461537:139087 -(1,18781:28004221,10461537:0,452978,122846 -r1,18840:32583029,10461537:4578808,575824,122846 -k1,18781:28004221,10461537:-4578808 -) -(1,18781:28004221,10461537:4578808,452978,122846 -k1,18781:28004221,10461537:3277 -h1,18781:32579752,10461537:0,411205,112570 -) -k1,18781:32583029,10461537:0 -) -(1,18782:6630773,11303025:25952256,513147,134348 -k1,18781:8347816,11303025:294256 -k1,18781:9845314,11303025:294257 -k1,18781:12684333,11303025:294256 -k1,18781:14170035,11303025:294257 -k1,18781:16537850,11303025:294256 -k1,18781:18207708,11303025:294257 -k1,18781:19118002,11303025:294256 -k1,18781:20742640,11303025:294257 -k1,18781:24439525,11303025:294256 -k1,18781:25725342,11303025:294257 -k1,18781:28224885,11303025:294256 -k1,18781:29170570,11303025:294257 -k1,18781:31593435,11303025:294256 -k1,18782:32583029,11303025:0 -) -(1,18782:6630773,12144513:25952256,513147,126483 -k1,18781:9848251,12144513:209375 -k1,18781:11099648,12144513:209375 -k1,18781:12328108,12144513:209375 -k1,18781:13843616,12144513:209375 -k1,18781:16888078,12144513:209375 -k1,18781:17965806,12144513:209376 -k1,18781:19267666,12144513:209375 -(1,18781:19267666,12144513:0,452978,115847 -r1,18840:23846474,12144513:4578808,568825,115847 -k1,18781:19267666,12144513:-4578808 -) -(1,18781:19267666,12144513:4578808,452978,115847 -k1,18781:19267666,12144513:3277 -h1,18781:23843197,12144513:0,411205,112570 -) -k1,18781:24055849,12144513:209375 -k1,18781:25659175,12144513:209375 -k1,18781:26887635,12144513:209375 -k1,18781:29362590,12144513:209375 -k1,18781:32583029,12144513:0 -) -(1,18782:6630773,12986001:25952256,513147,126483 -k1,18781:7240661,12986001:254028 -k1,18781:9587908,12986001:254027 -k1,18781:11038623,12986001:254028 -k1,18781:12678736,12986001:254027 -k1,18781:13592056,12986001:254028 -k1,18781:16892852,12986001:254027 -k1,18781:17678377,12986001:254028 -k1,18781:22249261,12986001:254027 -k1,18781:24738722,12986001:254028 -k1,18781:26847418,12986001:254027 -k1,18781:27910816,12986001:254028 -k1,18781:29183928,12986001:254027 -k1,18781:31923737,12986001:254028 -k1,18781:32583029,12986001:0 -) -(1,18782:6630773,13827489:25952256,513147,134348 -k1,18781:10951142,13827489:248617 -k1,18781:12391204,13827489:248617 -k1,18781:15591563,13827489:248617 -k1,18781:16601707,13827489:248616 -k1,18781:17206184,13827489:248617 -k1,18781:20333798,13827489:248617 -k1,18781:21779102,13827489:248617 -(1,18781:21779102,13827489:0,459977,115847 -r1,18840:24247639,13827489:2468537,575824,115847 -k1,18781:21779102,13827489:-2468537 -) -(1,18781:21779102,13827489:2468537,459977,115847 -k1,18781:21779102,13827489:3277 -h1,18781:24244362,13827489:0,411205,112570 -) -k1,18781:24496256,13827489:248617 -k1,18781:26366889,13827489:248617 -k1,18781:27363271,13827489:248616 -k1,18781:29579934,13827489:248617 -k1,18781:31563944,13827489:248617 -k1,18781:32583029,13827489:0 -) -(1,18782:6630773,14668977:25952256,513147,138281 -k1,18781:8944147,14668977:245058 -k1,18781:9848497,14668977:245058 -k1,18781:11112640,14668977:245058 -$1,18781:11112640,14668977 -$1,18781:11615301,14668977 -k1,18781:11860358,14668977:245057 -k1,18781:13296861,14668977:245058 -$1,18781:13296861,14668977 -$1,18781:13848674,14668977 -k1,18781:14093732,14668977:245058 -k1,18781:17687024,14668977:245058 -k1,18781:19883744,14668977:245058 -k1,18781:21571249,14668977:245058 -k1,18781:22835392,14668977:245058 -k1,18781:25515767,14668977:245057 -k1,18781:27829141,14668977:245058 -k1,18781:28733491,14668977:245058 -k1,18781:29997634,14668977:245058 -k1,18781:32583029,14668977:0 -) -(1,18782:6630773,15510465:25952256,513147,134348 -k1,18781:9702545,15510465:230131 -k1,18781:10548714,15510465:230131 -k1,18781:11797930,15510465:230131 -(1,18781:11797930,15510465:0,414482,115847 -r1,18840:13914755,15510465:2116825,530329,115847 -k1,18781:11797930,15510465:-2116825 -) -(1,18781:11797930,15510465:2116825,414482,115847 -k1,18781:11797930,15510465:3277 -h1,18781:13911478,15510465:0,411205,112570 -) -k1,18781:14144887,15510465:230132 -k1,18781:15764381,15510465:230131 -k1,18781:18044478,15510465:230131 -k1,18781:20549364,15510465:230131 -k1,18781:21771055,15510465:230131 -k1,18781:25091209,15510465:230131 -k1,18781:25937379,15510465:230132 -k1,18781:28446197,15510465:230131 -h1,18781:29815244,15510465:0,0,0 -k1,18781:30045375,15510465:230131 -k1,18781:31084876,15510465:230131 -k1,18781:32583029,15510465:0 -) -(1,18782:6630773,16351953:25952256,485622,11795 -h1,18781:7826150,16351953:0,0,0 -k1,18782:32583028,16351953:24583208 -g1,18782:32583028,16351953 -) -v1,18784:6630773,17485026:0,393216,0 -(1,18789:6630773,18460009:25952256,1368199,196608 -g1,18789:6630773,18460009 -g1,18789:6630773,18460009 -g1,18789:6434165,18460009 -(1,18789:6434165,18460009:0,1368199,196608 -r1,18840:32779637,18460009:26345472,1564807,196608 -k1,18789:6434165,18460009:-26345472 -) -(1,18789:6434165,18460009:26345472,1368199,196608 -[1,18789:6630773,18460009:25952256,1171591,0 -(1,18786:6630773,17692644:25952256,404226,107478 -(1,18785:6630773,17692644:0,0,0 -g1,18785:6630773,17692644 -g1,18785:6630773,17692644 -g1,18785:6303093,17692644 -(1,18785:6303093,17692644:0,0,0 -) -g1,18785:6630773,17692644 -) -k1,18786:6630773,17692644:0 -g1,18786:10424522,17692644 -g1,18786:11056814,17692644 -g1,18786:13585980,17692644 -g1,18786:15482855,17692644 -g1,18786:16115147,17692644 -g1,18786:18012022,17692644 -g1,18786:18644314,17692644 -g1,18786:19276606,17692644 -g1,18786:21173480,17692644 -h1,18786:21489626,17692644:0,0,0 -k1,18786:32583029,17692644:11093403 -g1,18786:32583029,17692644 -) -(1,18787:6630773,18358822:25952256,410518,101187 -h1,18787:6630773,18358822:0,0,0 -g1,18787:6946919,18358822 -g1,18787:7263065,18358822 -g1,18787:7579211,18358822 -g1,18787:7895357,18358822 -g1,18787:8211503,18358822 -g1,18787:8527649,18358822 -g1,18787:8843795,18358822 -g1,18787:15166709,18358822 -g1,18787:15799001,18358822 -g1,18787:16431293,18358822 -g1,18787:17063585,18358822 -h1,18787:17695876,18358822:0,0,0 -k1,18787:32583029,18358822:14887153 -g1,18787:32583029,18358822 -) -] -) -g1,18789:32583029,18460009 -g1,18789:6630773,18460009 -g1,18789:6630773,18460009 -g1,18789:32583029,18460009 -g1,18789:32583029,18460009 -) -h1,18789:6630773,18656617:0,0,0 -(1,18793:6630773,19965000:25952256,505283,134348 -h1,18792:6630773,19965000:983040,0,0 -k1,18792:8432732,19965000:191084 -k1,18792:10225516,19965000:191084 -k1,18792:12113982,19965000:191084 -k1,18792:13173418,19965000:191084 -k1,18792:14496964,19965000:191084 -k1,18792:16236664,19965000:191084 -k1,18792:17079176,19965000:191084 -k1,18792:18547558,19965000:191085 -k1,18792:19757727,19965000:191084 -k1,18792:24020563,19965000:191084 -k1,18792:24897809,19965000:191084 -k1,18792:27107402,19965000:191084 -k1,18792:29978909,19965000:191084 -k1,18792:31563944,19965000:191084 -k1,18792:32583029,19965000:0 -) -(1,18793:6630773,20806488:25952256,513147,126483 -k1,18792:10089623,20806488:238411 -k1,18792:11281582,20806488:238410 -k1,18792:12624275,20806488:238411 -k1,18792:14139982,20806488:238410 -k1,18792:15397478,20806488:238411 -k1,18792:19377338,20806488:238410 -k1,18792:20425119,20806488:238411 -k1,18792:21735698,20806488:238410 -k1,18792:22633401,20806488:238411 -k1,18792:23890896,20806488:238410 -k1,18792:27349746,20806488:238411 -k1,18792:28274318,20806488:238410 -k1,18792:30090181,20806488:238411 -k1,18792:31900144,20806488:238410 -k1,18792:32583029,20806488:0 -) -(1,18793:6630773,21647976:25952256,513147,126483 -g1,18792:7849087,21647976 -g1,18792:11095085,21647976 -g1,18792:12103684,21647976 -g1,18792:13375082,21647976 -g1,18792:14233603,21647976 -g1,18792:15451917,21647976 -k1,18793:32583029,21647976:12885690 -g1,18793:32583029,21647976 -) -v1,18795:6630773,22781049:0,393216,0 -(1,18803:6630773,25750039:25952256,3362206,196608 -g1,18803:6630773,25750039 -g1,18803:6630773,25750039 -g1,18803:6434165,25750039 -(1,18803:6434165,25750039:0,3362206,196608 -r1,18840:32779637,25750039:26345472,3558814,196608 -k1,18803:6434165,25750039:-26345472 -) -(1,18803:6434165,25750039:26345472,3362206,196608 -[1,18803:6630773,25750039:25952256,3165598,0 -(1,18797:6630773,22988667:25952256,404226,107478 -(1,18796:6630773,22988667:0,0,0 -g1,18796:6630773,22988667 -g1,18796:6630773,22988667 -g1,18796:6303093,22988667 -(1,18796:6303093,22988667:0,0,0 -) -g1,18796:6630773,22988667 -) -k1,18797:6630773,22988667:0 -g1,18797:10424522,22988667 -g1,18797:11056814,22988667 -g1,18797:13585980,22988667 -g1,18797:15482855,22988667 -g1,18797:16115147,22988667 -g1,18797:18012022,22988667 -g1,18797:18644314,22988667 -g1,18797:19276606,22988667 -g1,18797:21173480,22988667 -h1,18797:21489626,22988667:0,0,0 -k1,18797:32583029,22988667:11093403 -g1,18797:32583029,22988667 -) -(1,18798:6630773,23654845:25952256,410518,101187 -h1,18798:6630773,23654845:0,0,0 -g1,18798:6946919,23654845 -g1,18798:7263065,23654845 -g1,18798:13585979,23654845 -g1,18798:14218271,23654845 -g1,18798:14850563,23654845 -g1,18798:15482855,23654845 -g1,18798:16431292,23654845 -h1,18798:16747438,23654845:0,0,0 -k1,18798:32583029,23654845:15835591 -g1,18798:32583029,23654845 -) -(1,18799:6630773,24321023:25952256,404226,107478 -h1,18799:6630773,24321023:0,0,0 -g1,18799:6946919,24321023 -g1,18799:7263065,24321023 -k1,18799:7263065,24321023:0 -h1,18799:11056813,24321023:0,0,0 -k1,18799:32583029,24321023:21526216 -g1,18799:32583029,24321023 -) -(1,18803:6630773,25642561:25952256,410518,107478 -g1,18803:7579210,25642561 -g1,18803:12637541,25642561 -g1,18803:14534415,25642561 -g1,18803:16747435,25642561 -g1,18803:17379727,25642561 -k1,18803:32583029,25642561:12990282 -g1,18803:32583029,25642561 -) -] -) -g1,18803:32583029,25750039 -g1,18803:6630773,25750039 -g1,18803:6630773,25750039 -g1,18803:32583029,25750039 -g1,18803:32583029,25750039 -) -h1,18803:6630773,25946647:0,0,0 -(1,18806:6630773,35562743:25952256,9083666,0 -k1,18806:10523651,35562743:3892878 -h1,18805:10523651,35562743:0,0,0 -(1,18805:10523651,35562743:18166500,9083666,0 -(1,18805:10523651,35562743:18167376,9083688,0 -(1,18805:10523651,35562743:18167376,9083688,0 -(1,18805:10523651,35562743:0,9083688,0 -(1,18805:10523651,35562743:0,14208860,0 -(1,18805:10523651,35562743:28417720,14208860,0 -) -k1,18805:10523651,35562743:-28417720 -) -) -g1,18805:28691027,35562743 -) -) -) -g1,18806:28690151,35562743 -k1,18806:32583029,35562743:3892878 -) -(1,18813:6630773,36404231:25952256,513147,134348 -h1,18812:6630773,36404231:983040,0,0 -k1,18812:10126042,36404231:173249 -k1,18812:10958583,36404231:173249 -k1,18812:12867225,36404231:173249 -k1,18812:14059559,36404231:173249 -k1,18812:16498388,36404231:173249 -k1,18812:18764857,36404231:173249 -k1,18812:19806458,36404231:173249 -k1,18812:21083989,36404231:173249 -k1,18812:21944711,36404231:173249 -k1,18812:22473820,36404231:173249 -k1,18812:25409412,36404231:173249 -k1,18812:27744038,36404231:173249 -k1,18812:28545122,36404231:173249 -k1,18812:29921612,36404231:173249 -k1,18812:32583029,36404231:0 -) -(1,18813:6630773,37245719:25952256,513147,134348 -k1,18812:7768821,37245719:269696 -k1,18812:9131001,37245719:269695 -k1,18812:9756557,37245719:269696 -k1,18812:11838979,37245719:269696 -k1,18812:14096382,37245719:269696 -k1,18812:15052239,37245719:269695 -k1,18812:18542374,37245719:269696 -k1,18812:20524526,37245719:269696 -k1,18812:21555749,37245719:269695 -(1,18812:21555749,37245719:0,452978,115847 -r1,18840:22969150,37245719:1413401,568825,115847 -k1,18812:21555749,37245719:-1413401 -) -(1,18812:21555749,37245719:1413401,452978,115847 -k1,18812:21555749,37245719:3277 -h1,18812:22965873,37245719:0,411205,112570 -) -k1,18812:23412516,37245719:269696 -k1,18812:25613558,37245719:269696 -k1,18812:27817877,37245719:269696 -k1,18812:28619069,37245719:269695 -k1,18812:31966991,37245719:269696 -k1,18812:32583029,37245719:0 -) -(1,18813:6630773,38087207:25952256,485622,134348 -g1,18812:9108689,38087207 -h1,18812:10079277,38087207:0,0,0 -g1,18812:10278506,38087207 -g1,18812:11287105,38087207 -g1,18812:12984487,38087207 -h1,18812:14179864,38087207:0,0,0 -k1,18813:32583030,38087207:18229496 -g1,18813:32583030,38087207 -) -v1,18815:6630773,39220280:0,393216,0 -(1,18819:6630773,39535377:25952256,708313,196608 -g1,18819:6630773,39535377 -g1,18819:6630773,39535377 -g1,18819:6434165,39535377 -(1,18819:6434165,39535377:0,708313,196608 -r1,18840:32779637,39535377:26345472,904921,196608 -k1,18819:6434165,39535377:-26345472 -) -(1,18819:6434165,39535377:26345472,708313,196608 -[1,18819:6630773,39535377:25952256,511705,0 -(1,18817:6630773,39434190:25952256,410518,101187 -(1,18816:6630773,39434190:0,0,0 -g1,18816:6630773,39434190 -g1,18816:6630773,39434190 -g1,18816:6303093,39434190 -(1,18816:6303093,39434190:0,0,0 -) -g1,18816:6630773,39434190 -) -g1,18817:6946919,39434190 -g1,18817:7263065,39434190 -g1,18817:13269833,39434190 -g1,18817:13902125,39434190 -g1,18817:15799000,39434190 -g1,18817:18328166,39434190 -g1,18817:18960458,39434190 -g1,18817:19592750,39434190 -g1,18817:20225042,39434190 -g1,18817:21173479,39434190 -h1,18817:21489625,39434190:0,0,0 -k1,18817:32583029,39434190:11093404 -g1,18817:32583029,39434190 -) -] -) -g1,18819:32583029,39535377 -g1,18819:6630773,39535377 -g1,18819:6630773,39535377 -g1,18819:32583029,39535377 -g1,18819:32583029,39535377 -) -h1,18819:6630773,39731985:0,0,0 -(1,18823:6630773,41040368:25952256,505283,134348 -h1,18822:6630773,41040368:983040,0,0 -k1,18822:9733633,41040368:245490 -k1,18822:11368486,41040368:245490 -k1,18822:12605536,41040368:245490 -k1,18822:14613944,41040368:245490 -k1,18822:17693866,41040368:245490 -k1,18822:18664184,41040368:245490 -k1,18822:19778025,41040368:245489 -k1,18822:21420087,41040368:245490 -k1,18822:24176917,41040368:245490 -(1,18822:24176917,41040368:0,452978,115847 -r1,18840:25238606,41040368:1061689,568825,115847 -k1,18822:24176917,41040368:-1061689 -) -(1,18822:24176917,41040368:1061689,452978,115847 -k1,18822:24176917,41040368:3277 -h1,18822:25235329,41040368:0,411205,112570 -) -k1,18822:25484096,41040368:245490 -k1,18822:26381014,41040368:245490 -k1,18822:27645589,41040368:245490 -(1,18822:27645589,41040368:0,452978,115847 -r1,18840:29410702,41040368:1765113,568825,115847 -k1,18822:27645589,41040368:-1765113 -) -(1,18822:27645589,41040368:1765113,452978,115847 -k1,18822:27645589,41040368:3277 -h1,18822:29407425,41040368:0,411205,112570 -) -k1,18822:29656192,41040368:245490 -k1,18822:32583029,41040368:0 -) -(1,18823:6630773,41881856:25952256,513147,134348 -k1,18822:8262266,41881856:223780 -k1,18822:9354398,41881856:223780 -k1,18822:10556631,41881856:223780 -k1,18822:12435196,41881856:223781 -k1,18822:14881957,41881856:223780 -k1,18822:15765029,41881856:223780 -k1,18822:18007318,41881856:223780 -k1,18822:19625049,41881856:223780 -k1,18822:22611172,41881856:223780 -k1,18822:25196215,41881856:223781 -k1,18822:26492164,41881856:223780 -k1,18822:28001760,41881856:223780 -k1,18822:29880324,41881856:223780 -k1,18822:32583029,41881856:0 -) -(1,18823:6630773,42723344:25952256,505283,7863 -g1,18822:9241072,42723344 -k1,18823:32583029,42723344:21669478 -g1,18823:32583029,42723344 -) -v1,18825:6630773,43856417:0,393216,0 -(1,18831:6630773,45510161:25952256,2046960,196608 -g1,18831:6630773,45510161 -g1,18831:6630773,45510161 -g1,18831:6434165,45510161 -(1,18831:6434165,45510161:0,2046960,196608 -r1,18840:32779637,45510161:26345472,2243568,196608 -k1,18831:6434165,45510161:-26345472 -) -(1,18831:6434165,45510161:26345472,2046960,196608 -[1,18831:6630773,45510161:25952256,1850352,0 -(1,18827:6630773,44070327:25952256,410518,107478 -(1,18826:6630773,44070327:0,0,0 -g1,18826:6630773,44070327 -g1,18826:6630773,44070327 -g1,18826:6303093,44070327 -(1,18826:6303093,44070327:0,0,0 -) -g1,18826:6630773,44070327 -) -k1,18827:6630773,44070327:0 -g1,18827:10424522,44070327 -g1,18827:11056814,44070327 -g1,18827:13585980,44070327 -g1,18827:15482855,44070327 -g1,18827:16115147,44070327 -g1,18827:18012022,44070327 -g1,18827:18644314,44070327 -g1,18827:19276606,44070327 -g1,18827:20857335,44070327 -g1,18827:22754209,44070327 -g1,18827:23386501,44070327 -g1,18827:27812541,44070327 -h1,18827:28128687,44070327:0,0,0 -k1,18827:32583029,44070327:4454342 -g1,18827:32583029,44070327 -) -(1,18828:6630773,44736505:25952256,410518,101187 -h1,18828:6630773,44736505:0,0,0 -g1,18828:6946919,44736505 -g1,18828:7263065,44736505 -g1,18828:13269833,44736505 -g1,18828:13902125,44736505 -g1,18828:15799000,44736505 -g1,18828:18328166,44736505 -g1,18828:18960458,44736505 -g1,18828:19592750,44736505 -g1,18828:20225042,44736505 -g1,18828:21173479,44736505 -h1,18828:21489625,44736505:0,0,0 -k1,18828:32583029,44736505:11093404 -g1,18828:32583029,44736505 -) -(1,18829:6630773,45402683:25952256,404226,107478 -h1,18829:6630773,45402683:0,0,0 -g1,18829:6946919,45402683 -g1,18829:7263065,45402683 -k1,18829:7263065,45402683:0 -h1,18829:11056813,45402683:0,0,0 -k1,18829:32583029,45402683:21526216 -g1,18829:32583029,45402683 -) -] -) -g1,18831:32583029,45510161 -g1,18831:6630773,45510161 -g1,18831:6630773,45510161 -g1,18831:32583029,45510161 -g1,18831:32583029,45510161 -) -h1,18831:6630773,45706769:0,0,0 -] -(1,18840:32583029,45706769:0,0,0 -g1,18840:32583029,45706769 -) -) -] -(1,18840:6630773,47279633:25952256,0,0 -h1,18840:6630773,47279633:25952256,0,0 -) -] -(1,18840:4262630,4025873:0,0,0 -[1,18840:-473656,4025873:0,0,0 -(1,18840:-473656,-710413:0,0,0 -(1,18840:-473656,-710413:0,0,0 -g1,18840:-473656,-710413 -) -g1,18840:-473656,-710413 -) -] -) -] -!23244 -}333 -Input:2955:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2956:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2957:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2958:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2959:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2960:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2961:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2962:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2963:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2964:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2965:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2966:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2967:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2968:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2969:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2970:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1516 -{334 -[1,18873:4262630,47279633:28320399,43253760,0 -(1,18873:4262630,4025873:0,0,0 -[1,18873:-473656,4025873:0,0,0 -(1,18873:-473656,-710413:0,0,0 -(1,18873:-473656,-644877:0,0,0 -k1,18873:-473656,-644877:-65536 +] ) -(1,18873:-473656,4736287:0,0,0 -k1,18873:-473656,4736287:5209943 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,18814:37855564,2439708:1179648,16384,0 ) -g1,18873:-473656,-710413 ) -] +k1,18814:3078556,2439708:-34777008 ) -[1,18873:6630773,47279633:25952256,43253760,0 -[1,18873:6630773,4812305:25952256,786432,0 -(1,18873:6630773,4812305:25952256,485622,11795 -(1,18873:6630773,4812305:25952256,485622,11795 -g1,18873:3078558,4812305 -[1,18873:3078558,4812305:0,0,0 -(1,18873:3078558,2439708:0,1703936,0 -k1,18873:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,18873:2537886,2439708:1179648,16384,0 +] +[1,18814:3078558,4812305:0,0,0 +(1,18814:3078558,49800853:0,16384,2228224 +k1,18814:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,18814:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,18873:3078558,1915420:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,18814:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,18873:3078558,4812305:0,0,0 -(1,18873:3078558,2439708:0,1703936,0 -g1,18873:29030814,2439708 -g1,18873:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,18873:36151628,1915420:16384,1179648,0 +[1,18814:3078558,4812305:0,0,0 +(1,18814:3078558,49800853:0,16384,2228224 +g1,18814:29030814,49800853 +g1,18814:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,18814:36151628,51504789:16384,1179648,0 +) +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 +) +] +) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,18814:37855564,49800853:1179648,16384,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 ) -] +k1,18814:3078556,49800853:-34777008 +) +] +g1,18814:6630773,4812305 +g1,18814:6630773,4812305 +g1,18814:9560887,4812305 +k1,18814:31387651,4812305:21826764 +) +) +] +[1,18814:6630773,45706769:25952256,40108032,0 +(1,18814:6630773,45706769:25952256,40108032,0 +(1,18814:6630773,45706769:0,0,0 +g1,18814:6630773,45706769 +) +[1,18814:6630773,45706769:25952256,40108032,0 +v1,18781:6630773,6254097:0,393216,0 +(1,18781:6630773,17270075:25952256,11409194,0 +g1,18781:6630773,17270075 +g1,18781:6237557,17270075 +r1,18814:6368629,17270075:131072,11409194,0 +g1,18781:6567858,17270075 +g1,18781:6764466,17270075 +[1,18781:6764466,17270075:25818563,11409194,0 +v1,18766:6764466,6254097:0,393216,0 +(1,18772:6764466,7971096:25818563,2110215,196608 +g1,18772:6764466,7971096 +g1,18772:6764466,7971096 +g1,18772:6567858,7971096 +(1,18772:6567858,7971096:0,2110215,196608 +r1,18814:32779637,7971096:26211779,2306823,196608 +k1,18772:6567857,7971096:-26211780 ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,18873:37855564,2439708:1179648,16384,0 +(1,18772:6567858,7971096:26211779,2110215,196608 +[1,18772:6764466,7971096:25818563,1913607,0 +(1,18768:6764466,6488534:25818563,431045,112852 +(1,18767:6764466,6488534:0,0,0 +g1,18767:6764466,6488534 +g1,18767:6764466,6488534 +g1,18767:6436786,6488534 +(1,18767:6436786,6488534:0,0,0 ) +g1,18767:6764466,6488534 ) -k1,18873:3078556,2439708:-34777008 +k1,18768:6764466,6488534:0 +g1,18768:10747914,6488534 +g1,18768:11411822,6488534 +g1,18768:14067454,6488534 +g1,18768:16059178,6488534 +g1,18768:16723086,6488534 +g1,18768:18714810,6488534 +g1,18768:19378718,6488534 +g1,18768:20042626,6488534 +g1,18768:21702396,6488534 +g1,18768:23694120,6488534 +g1,18768:24358028,6488534 +g1,18768:29005384,6488534 +h1,18768:29337338,6488534:0,0,0 +k1,18768:32583029,6488534:3245691 +g1,18768:32583029,6488534 +) +(1,18769:6764466,7173389:25818563,424439,112852 +h1,18769:6764466,7173389:0,0,0 +g1,18769:7096420,7173389 +g1,18769:7428374,7173389 +g1,18769:11743775,7173389 +h1,18769:12075729,7173389:0,0,0 +k1,18769:32583029,7173389:20507300 +g1,18769:32583029,7173389 +) +(1,18770:6764466,7858244:25818563,424439,112852 +h1,18770:6764466,7858244:0,0,0 +g1,18770:7096420,7858244 +g1,18770:7428374,7858244 +g1,18770:14067453,7858244 +g1,18770:14731361,7858244 +g1,18770:16391131,7858244 +g1,18770:18050901,7858244 +g1,18770:18714809,7858244 +g1,18770:20374579,7858244 +g1,18770:22366303,7858244 +g1,18770:23030211,7858244 +g1,18770:24026073,7858244 +g1,18770:26681705,7858244 +g1,18770:28673429,7858244 +g1,18770:29337337,7858244 +h1,18770:31992969,7858244:0,0,0 +k1,18770:32583029,7858244:590060 +g1,18770:32583029,7858244 +) +] +) +g1,18772:32583029,7971096 +g1,18772:6764466,7971096 +g1,18772:6764466,7971096 +g1,18772:32583029,7971096 +g1,18772:32583029,7971096 +) +h1,18772:6764466,8167704:0,0,0 +(1,18775:6764466,17270075:25818563,9036835,0 +k1,18775:10637290,17270075:3872824 +h1,18774:10637290,17270075:0,0,0 +(1,18774:10637290,17270075:18072915,9036835,0 +(1,18774:10637290,17270075:18073715,9036857,0 +(1,18774:10637290,17270075:18073715,9036857,0 +(1,18774:10637290,17270075:0,9036857,0 +(1,18774:10637290,17270075:0,14208860,0 +(1,18774:10637290,17270075:28417720,14208860,0 +) +k1,18774:10637290,17270075:-28417720 +) +) +g1,18774:28711005,17270075 +) +) +) +g1,18775:28710205,17270075 +k1,18775:32583029,17270075:3872824 +) +] +g1,18781:32583029,17270075 +) +h1,18781:6630773,17270075:0,0,0 +(1,18787:6630773,20101235:25952256,32768,229376 +(1,18787:6630773,20101235:0,32768,229376 +(1,18787:6630773,20101235:5505024,32768,229376 +r1,18814:12135797,20101235:5505024,262144,229376 +) +k1,18787:6630773,20101235:-5505024 +) +(1,18787:6630773,20101235:25952256,32768,0 +r1,18814:32583029,20101235:25952256,32768,0 +) +) +(1,18787:6630773,21733087:25952256,606339,14155 +(1,18787:6630773,21733087:1974731,582746,14155 +g1,18787:6630773,21733087 +g1,18787:8605504,21733087 +) +k1,18787:32583028,21733087:20424424 +g1,18787:32583028,21733087 +) +(1,18791:6630773,22991383:25952256,513147,134348 +k1,18790:8826834,22991383:154615 +k1,18790:11583227,22991383:154614 +k1,18790:13560398,22991383:154615 +k1,18790:16543545,22991383:154614 +k1,18790:19531281,22991383:154615 +k1,18790:20143993,22991383:154615 +k1,18790:20830104,22991383:154614 +k1,18790:24194017,22991383:154615 +k1,18790:25000060,22991383:154615 +k1,18790:26629889,22991383:154614 +k1,18790:28314770,22991383:154615 +k1,18790:29799765,22991383:154614 +k1,18790:30973465,22991383:154615 +k1,18791:32583029,22991383:0 +) +(1,18791:6630773,23856463:25952256,513147,134348 +k1,18790:8194960,23856463:153197 +k1,18790:9007450,23856463:153198 +k1,18790:11384939,23856463:153197 +k1,18790:12189565,23856463:153198 +k1,18790:15407226,23856463:153197 +k1,18790:17660853,23856463:153198 +k1,18790:19597285,23856463:153197 +k1,18790:20106342,23856463:153197 +k1,18790:22327201,23856463:153198 +k1,18790:23428049,23856463:153197 +k1,18790:26416334,23856463:153198 +k1,18790:27101028,23856463:153197 +k1,18790:29839621,23856463:153198 +k1,18790:30644246,23856463:153197 +(1,18790:30644246,23856463:0,452978,115847 +r1,18814:32409359,23856463:1765113,568825,115847 +k1,18790:30644246,23856463:-1765113 +) +(1,18790:30644246,23856463:1765113,452978,115847 +k1,18790:30644246,23856463:3277 +h1,18790:32406082,23856463:0,411205,112570 +) +k1,18790:32583029,23856463:0 +) +(1,18791:6630773,24721543:25952256,513147,134348 +k1,18790:7283465,24721543:194595 +k1,18790:9737741,24721543:194595 +k1,18790:10288196,24721543:194595 +k1,18790:11765987,24721543:194596 +k1,18790:15017181,24721543:194595 +k1,18790:16605727,24721543:194595 +k1,18790:17819407,24721543:194595 +k1,18790:22085754,24721543:194595 +k1,18790:25251751,24721543:194595 +k1,18790:25802206,24721543:194595 +k1,18790:27691563,24721543:194596 +k1,18790:29348266,24721543:194595 +k1,18790:30202153,24721543:194595 +k1,18790:31415833,24721543:194595 +k1,18791:32583029,24721543:0 +) +(1,18791:6630773,25586623:25952256,513147,134348 +k1,18790:7924922,25586623:180692 +k1,18790:12729179,25586623:180692 +k1,18790:13561299,25586623:180692 +k1,18790:14097851,25586623:180692 +k1,18790:16344893,25586623:180692 +k1,18790:18070924,25586623:180692 +k1,18790:20934005,25586623:180692 +k1,18790:23525767,25586623:180692 +k1,18790:24515829,25586623:180692 +k1,18790:25715606,25586623:180692 +k1,18790:27285661,25586623:180692 +k1,18790:28414004,25586623:180692 +k1,18790:30046318,25586623:180692 +k1,18790:30886302,25586623:180692 +k1,18790:32583029,25586623:0 +) +(1,18791:6630773,26451703:25952256,513147,134348 +k1,18790:9043317,26451703:189563 +k1,18790:12675486,26451703:189563 +k1,18790:15865943,26451703:189563 +k1,18790:16411365,26451703:189562 +k1,18790:19591336,26451703:189563 +k1,18790:20728550,26451703:189563 +k1,18790:22369735,26451703:189563 +k1,18790:24625648,26451703:189563 +k1,18790:25762861,26451703:189562 +k1,18790:28787511,26451703:189563 +k1,18790:29996159,26451703:189563 +k1,18790:31923737,26451703:189563 +k1,18790:32583029,26451703:0 +) +(1,18791:6630773,27316783:25952256,505283,134348 +g1,18790:7849087,27316783 +g1,18790:12120068,27316783 +g1,18790:12935335,27316783 +g1,18790:13490424,27316783 +k1,18791:32583030,27316783:17026256 +g1,18791:32583030,27316783 +) +(1,18792:6630773,29433601:25952256,555811,12975 +(1,18792:6630773,29433601:2450326,534184,12975 +g1,18792:6630773,29433601 +g1,18792:9081099,29433601 +) +k1,18792:32583029,29433601:19939262 +g1,18792:32583029,29433601 +) +(1,18796:6630773,30691897:25952256,513147,138281 +k1,18795:7405177,30691897:146569 +k1,18795:10217751,30691897:146569 +k1,18795:11015749,30691897:146570 +k1,18795:13686765,30691897:146569 +k1,18795:15222697,30691897:146569 +k1,18795:16936887,30691897:146569 +k1,18795:17439317,30691897:146570 +k1,18795:18975249,30691897:146569 +k1,18795:20998114,30691897:146569 +k1,18795:22538634,30691897:146569 +k1,18795:25526845,30691897:146570 +k1,18795:26324842,30691897:146569 +k1,18795:27867983,30691897:146569 +k1,18795:28665980,30691897:146569 +$1,18795:28665980,30691897 +$1,18795:29168641,30691897 +k1,18795:29315211,30691897:146570 +k1,18795:30653225,30691897:146569 +$1,18795:30653225,30691897 +$1,18795:31205038,30691897 +k1,18795:31351607,30691897:146569 +k1,18796:32583029,30691897:0 +) +(1,18796:6630773,31556977:25952256,505283,126483 +k1,18795:8996011,31556977:176336 +k1,18795:9630445,31556977:176337 +k1,18795:10338278,31556977:176336 +k1,18795:13144575,31556977:176337 +k1,18795:13972339,31556977:176336 +k1,18795:15623891,31556977:176337 +k1,18795:17175828,31556977:176336 +k1,18795:17708025,31556977:176337 +k1,18795:20395701,31556977:176336 +k1,18795:23157433,31556977:176337 +k1,18795:23985197,31556977:176336 +$1,18795:23985197,31556977 +$1,18795:24487858,31556977 +k1,18795:24664195,31556977:176337 +k1,18795:26031976,31556977:176336 +k1,18795:27300798,31556977:176337 +(1,18795:27300798,31556977:0,459977,115847 +r1,18814:32583029,31556977:5282231,575824,115847 +k1,18795:27300798,31556977:-5282231 +) +(1,18795:27300798,31556977:5282231,459977,115847 +k1,18795:27300798,31556977:3277 +h1,18795:32579752,31556977:0,411205,112570 +) +k1,18795:32583029,31556977:0 +) +(1,18796:6630773,32422057:25952256,513147,138281 +k1,18795:7439408,32422057:157207 +k1,18795:10384517,32422057:157207 +k1,18795:11560809,32422057:157207 +k1,18795:13728661,32422057:157207 +k1,18795:14537296,32422057:157207 +k1,18795:15442269,32422057:157207 +k1,18795:18184870,32422057:157206 +k1,18795:18993505,32422057:157207 +$1,18795:18993505,32422057 +$1,18795:19545318,32422057 +k1,18795:19702525,32422057:157207 +k1,18795:21595125,32422057:157207 +k1,18795:22523035,32422057:157207 +k1,18795:23095043,32422057:157165 +k1,18795:26121416,32422057:157207 +k1,18795:27659467,32422057:157207 +k1,18795:29876471,32422057:157207 +k1,18795:31052763,32422057:157207 +k1,18795:32583029,32422057:0 +) +(1,18796:6630773,33287137:25952256,513147,134348 +k1,18795:7435695,33287137:153494 +k1,18795:10321386,33287137:153495 +k1,18795:11864243,33287137:153494 +k1,18795:15666783,33287137:153495 +k1,18795:16506440,33287137:153495 +k1,18795:18126630,33287137:153494 +k1,18795:19299209,33287137:153494 +k1,18795:21938485,33287137:153495 +k1,18795:22751272,33287137:153495 +k1,18795:24294129,33287137:153494 +k1,18795:26466133,33287137:153495 +k1,18795:27271055,33287137:153494 +k1,18795:28172315,33287137:153494 +k1,18795:31478747,33287137:153495 +k1,18795:32583029,33287137:0 +) +(1,18796:6630773,34152217:25952256,513147,134348 +k1,18795:7546879,34152217:168340 +k1,18795:8649762,34152217:168340 +k1,18795:9434141,34152217:168341 +(1,18795:9434141,34152217:0,459977,122846 +r1,18814:14716372,34152217:5282231,582823,122846 +k1,18795:9434141,34152217:-5282231 +) +(1,18795:9434141,34152217:5282231,459977,122846 +k1,18795:9434141,34152217:3277 +h1,18795:14713095,34152217:0,411205,112570 +) +k1,18795:15058382,34152217:168340 +k1,18795:16490256,34152217:168340 +k1,18795:17073409,34152217:168310 +k1,18795:20110915,34152217:168340 +k1,18795:21660099,34152217:168340 +k1,18795:24210018,34152217:168341 +k1,18795:25061243,34152217:168340 +k1,18795:26469524,34152217:168340 +k1,18795:27742146,34152217:168340 +k1,18795:28658252,34152217:168340 +k1,18795:30339819,34152217:168341 +k1,18795:31194321,34152217:168340 +k1,18795:32583029,34152217:0 +) +(1,18796:6630773,35017297:25952256,513147,134348 +k1,18795:7572525,35017297:255590 +k1,18795:8286212,35017297:255590 +k1,18795:9073300,35017297:255591 +k1,18795:12839654,35017297:255590 +k1,18795:14489195,35017297:255590 +k1,18795:15763870,35017297:255590 +k1,18795:18032726,35017297:255590 +k1,18795:18947609,35017297:255591 +k1,18795:20222284,35017297:255590 +k1,18795:23256601,35017297:255590 +k1,18795:25490068,35017297:255590 +k1,18795:27473187,35017297:255590 +k1,18795:28380206,35017297:255591 +k1,18795:29654881,35017297:255590 +k1,18795:31923737,35017297:255590 +k1,18795:32583029,35017297:0 +) +(1,18796:6630773,35882377:25952256,513147,134348 +k1,18795:7828833,35882377:178975 +k1,18795:9985686,35882377:178976 +k1,18795:12369948,35882377:178975 +k1,18795:13235085,35882377:178975 +k1,18795:14720193,35882377:178975 +k1,18795:17971497,35882377:178976 +k1,18795:18801900,35882377:178975 +k1,18795:19612642,35882377:178975 +k1,18795:20988305,35882377:178976 +k1,18795:23678620,35882377:178975 +k1,18795:26442990,35882377:178975 +k1,18795:27273393,35882377:178975 +(1,18795:27273393,35882377:0,414482,115847 +r1,18814:27631659,35882377:358266,530329,115847 +k1,18795:27273393,35882377:-358266 +) +(1,18795:27273393,35882377:358266,414482,115847 +k1,18795:27273393,35882377:3277 +h1,18795:27628382,35882377:0,411205,112570 +) +k1,18795:27810635,35882377:178976 +k1,18795:31563944,35882377:178975 +k1,18795:32583029,35882377:0 +) +(1,18796:6630773,36747457:25952256,513147,134348 +k1,18795:8770841,36747457:185784 +k1,18795:10148069,36747457:185783 +k1,18795:11352938,36747457:185784 +k1,18795:14611049,36747457:185783 +k1,18795:15448261,36747457:185784 +k1,18795:18914777,36747457:185784 +(1,18795:18914777,36747457:0,414482,115847 +r1,18814:19273043,36747457:358266,530329,115847 +k1,18795:18914777,36747457:-358266 +) +(1,18795:18914777,36747457:358266,414482,115847 +k1,18795:18914777,36747457:3277 +h1,18795:19269766,36747457:0,411205,112570 +) +k1,18795:19458826,36747457:185783 +k1,18795:20311766,36747457:185784 +(1,18795:20311766,36747457:0,459977,122846 +r1,18814:25593997,36747457:5282231,582823,122846 +k1,18795:20311766,36747457:-5282231 +) +(1,18795:20311766,36747457:5282231,459977,122846 +k1,18795:20311766,36747457:3277 +h1,18795:25590720,36747457:0,411205,112570 +) +k1,18795:25779781,36747457:185784 +k1,18795:26984649,36747457:185783 +k1,18795:29183699,36747457:185784 +k1,18795:30028774,36747457:185783 +k1,18795:31233643,36747457:185784 +k1,18796:32583029,36747457:0 +) +(1,18796:6630773,37612537:25952256,513147,134348 +k1,18795:8861968,37612537:214652 +k1,18795:11054496,37612537:214651 +k1,18795:12553654,37612537:214652 +k1,18795:13299802,37612537:214651 +k1,18795:15719741,37612537:214652 +k1,18795:16620555,37612537:214652 +k1,18795:18141339,37612537:214651 +k1,18795:21428319,37612537:214652 +k1,18795:22294398,37612537:214651 +(1,18795:22294398,37612537:0,459977,115847 +r1,18814:23356087,37612537:1061689,575824,115847 +k1,18795:22294398,37612537:-1061689 +) +(1,18795:22294398,37612537:1061689,459977,115847 +k1,18795:22294398,37612537:3277 +h1,18795:23352810,37612537:0,411205,112570 +) +k1,18795:23570739,37612537:214652 +k1,18795:25483429,37612537:214652 +k1,18795:26156177,37612537:214651 +k1,18795:26902326,37612537:214652 +k1,18795:28984753,37612537:214651 +k1,18795:29850833,37612537:214652 +k1,18795:32583029,37612537:0 +) +(1,18796:6630773,38477617:25952256,505283,138281 +g1,18795:7849087,38477617 +g1,18795:10058961,38477617 +g1,18795:10909618,38477617 +g1,18795:13489115,38477617 +g1,18795:14339772,38477617 +(1,18795:14339772,38477617:0,414482,115847 +r1,18814:14698038,38477617:358266,530329,115847 +k1,18795:14339772,38477617:-358266 +) +(1,18795:14339772,38477617:358266,414482,115847 +k1,18795:14339772,38477617:3277 +h1,18795:14694761,38477617:0,411205,112570 +) +g1,18795:15070937,38477617 +g1,18795:17144496,38477617 +g1,18795:18335285,38477617 +g1,18795:19553599,38477617 +$1,18795:19553599,38477617 +$1,18795:20056260,38477617 +g1,18795:20255489,38477617 +g1,18795:21646163,38477617 +$1,18795:21646163,38477617 +$1,18795:22197976,38477617 +g1,18795:22397205,38477617 +g1,18795:24607079,38477617 +g1,18795:27011595,38477617 +g1,18795:27862252,38477617 +g1,18795:29080566,38477617 +k1,18796:32583029,38477617:363289 +g1,18796:32583029,38477617 +) +(1,18798:6630773,39342697:25952256,513147,126483 +h1,18797:6630773,39342697:983040,0,0 +k1,18797:8738974,39342697:171612 +k1,18797:10398909,39342697:171612 +k1,18797:11964472,39342697:171612 +k1,18797:13155169,39342697:171612 +k1,18797:15682800,39342697:171612 +k1,18797:19635839,39342697:171612 +k1,18797:22676617,39342697:171612 +k1,18797:23801778,39342697:171612 +k1,18797:25175320,39342697:171612 +k1,18797:26156302,39342697:171612 +k1,18797:27346999,39342697:171612 +k1,18797:30114492,39342697:171612 +(1,18797:30114492,39342697:0,435480,115847 +r1,18814:32583029,39342697:2468537,551327,115847 +k1,18797:30114492,39342697:-2468537 +) +(1,18797:30114492,39342697:2468537,435480,115847 +g1,18797:30821193,39342697 +g1,18797:31524617,39342697 +h1,18797:32579752,39342697:0,411205,112570 +) +k1,18797:32583029,39342697:0 +) +(1,18798:6630773,40207777:25952256,505283,122846 +g1,18797:8021447,40207777 +(1,18797:8021447,40207777:0,452978,122846 +r1,18814:12600255,40207777:4578808,575824,122846 +k1,18797:8021447,40207777:-4578808 +) +(1,18797:8021447,40207777:4578808,452978,122846 +g1,18797:9783283,40207777 +g1,18797:10486707,40207777 +h1,18797:12596978,40207777:0,411205,112570 +) +k1,18798:32583029,40207777:19809104 +g1,18798:32583029,40207777 +) +v1,18800:6630773,40892632:0,393216,0 +(1,18805:6630773,41891746:25952256,1392330,196608 +g1,18805:6630773,41891746 +g1,18805:6630773,41891746 +g1,18805:6434165,41891746 +(1,18805:6434165,41891746:0,1392330,196608 +r1,18814:32779637,41891746:26345472,1588938,196608 +k1,18805:6434165,41891746:-26345472 +) +(1,18805:6434165,41891746:26345472,1392330,196608 +[1,18805:6630773,41891746:25952256,1195722,0 +(1,18802:6630773,41127069:25952256,431045,112852 +(1,18801:6630773,41127069:0,0,0 +g1,18801:6630773,41127069 +g1,18801:6630773,41127069 +g1,18801:6303093,41127069 +(1,18801:6303093,41127069:0,0,0 +) +g1,18801:6630773,41127069 +) +k1,18802:6630773,41127069:0 +g1,18802:13269852,41127069 +g1,18802:13933760,41127069 +g1,18802:16257438,41127069 +g1,18802:18249162,41127069 +g1,18802:18913070,41127069 +g1,18802:20240886,41127069 +h1,18802:20572840,41127069:0,0,0 +k1,18802:32583029,41127069:12010189 +g1,18802:32583029,41127069 +) +(1,18803:6630773,41811924:25952256,431045,79822 +h1,18803:6630773,41811924:0,0,0 +g1,18803:6962727,41811924 +g1,18803:7294681,41811924 +g1,18803:13269852,41811924 +g1,18803:13933760,41811924 +h1,18803:15925484,41811924:0,0,0 +k1,18803:32583029,41811924:16657545 +g1,18803:32583029,41811924 +) +] +) +g1,18805:32583029,41891746 +g1,18805:6630773,41891746 +g1,18805:6630773,41891746 +g1,18805:32583029,41891746 +g1,18805:32583029,41891746 +) +h1,18805:6630773,42088354:0,0,0 +] +(1,18814:32583029,45706769:0,0,0 +g1,18814:32583029,45706769 +) +) +] +(1,18814:6630773,47279633:25952256,0,0 +h1,18814:6630773,47279633:25952256,0,0 +) +] +(1,18814:4262630,4025873:0,0,0 +[1,18814:-473656,4025873:0,0,0 +(1,18814:-473656,-710413:0,0,0 +(1,18814:-473656,-710413:0,0,0 +g1,18814:-473656,-710413 +) +g1,18814:-473656,-710413 +) +] ) ] -[1,18873:3078558,4812305:0,0,0 -(1,18873:3078558,49800853:0,16384,2228224 -k1,18873:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,18873:2537886,49800853:1179648,16384,0 +!20665 +}314 +Input:2937:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2938:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2939:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2940:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2941:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2942:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2943:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2944:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2945:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2946:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2947:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2948:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2949:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2950:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2951:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2952:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2953:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1610 +{315 +[1,18871:4262630,47279633:28320399,43253760,0 +(1,18871:4262630,4025873:0,0,0 +[1,18871:-473656,4025873:0,0,0 +(1,18871:-473656,-710413:0,0,0 +(1,18871:-473656,-644877:0,0,0 +k1,18871:-473656,-644877:-65536 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,18873:3078558,51504789:16384,1179648,0 +(1,18871:-473656,4736287:0,0,0 +k1,18871:-473656,4736287:5209943 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +g1,18871:-473656,-710413 ) ] ) +[1,18871:6630773,47279633:25952256,43253760,0 +[1,18871:6630773,4812305:25952256,786432,0 +(1,18871:6630773,4812305:25952256,513147,126483 +(1,18871:6630773,4812305:25952256,513147,126483 +g1,18871:3078558,4812305 +[1,18871:3078558,4812305:0,0,0 +(1,18871:3078558,2439708:0,1703936,0 +k1,18871:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,18871:2537886,2439708:1179648,16384,0 ) +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,18871:3078558,1915420:16384,1179648,0 ) -] -[1,18873:3078558,4812305:0,0,0 -(1,18873:3078558,49800853:0,16384,2228224 -g1,18873:29030814,49800853 -g1,18873:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,18873:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,18873:37855564,49800853:1179648,16384,0 -) ) -k1,18873:3078556,49800853:-34777008 ) ] -g1,18873:6630773,4812305 -g1,18873:6630773,4812305 -g1,18873:9560887,4812305 -k1,18873:31387651,4812305:21826764 +[1,18871:3078558,4812305:0,0,0 +(1,18871:3078558,2439708:0,1703936,0 +g1,18871:29030814,2439708 +g1,18871:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,18871:36151628,1915420:16384,1179648,0 ) +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] -[1,18873:6630773,45706769:25952256,40108032,0 -(1,18873:6630773,45706769:25952256,40108032,0 -(1,18873:6630773,45706769:0,0,0 -g1,18873:6630773,45706769 ) -[1,18873:6630773,45706769:25952256,40108032,0 -(1,18834:6630773,14682403:25952256,9083666,0 -k1,18834:10523651,14682403:3892878 -h1,18833:10523651,14682403:0,0,0 -(1,18833:10523651,14682403:18166500,9083666,0 -(1,18833:10523651,14682403:18167376,9083688,0 -(1,18833:10523651,14682403:18167376,9083688,0 -(1,18833:10523651,14682403:0,9083688,0 -(1,18833:10523651,14682403:0,14208860,0 -(1,18833:10523651,14682403:28417720,14208860,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,18871:37855564,2439708:1179648,16384,0 ) -k1,18833:10523651,14682403:-28417720 ) -) -g1,18833:28691027,14682403 -) -) -) -g1,18834:28690151,14682403 -k1,18834:32583029,14682403:3892878 -) -(1,18841:6630773,15523891:25952256,513147,134348 -h1,18840:6630773,15523891:983040,0,0 -k1,18840:8599649,15523891:156806 -k1,18840:10780206,15523891:156805 -k1,18840:11292872,15523891:156806 -k1,18840:13322697,15523891:156806 -k1,18840:16526272,15523891:156806 -k1,18840:17630728,15523891:156805 -k1,18840:18806619,15523891:156806 -k1,18840:20618209,15523891:156806 -k1,18840:23171667,15523891:156806 -k1,18840:24196824,15523891:156805 -k1,18840:25883896,15523891:156806 -k1,18840:26692130,15523891:156806 -k1,18840:27783479,15523891:156806 -k1,18840:28959369,15523891:156805 -k1,18840:31923737,15523891:156806 -k1,18840:32583029,15523891:0 -) -(1,18841:6630773,16365379:25952256,505283,115847 -k1,18840:7861000,16365379:211142 -(1,18840:7861000,16365379:0,452978,115847 -r1,18873:9626113,16365379:1765113,568825,115847 -k1,18840:7861000,16365379:-1765113 -) -(1,18840:7861000,16365379:1765113,452978,115847 -k1,18840:7861000,16365379:3277 -h1,18840:9622836,16365379:0,411205,112570 -) -k1,18840:9837254,16365379:211141 -k1,18840:12835642,16365379:211142 -k1,18840:13698212,16365379:211142 -k1,18840:14265214,16365379:211142 -k1,18840:17234110,16365379:211141 -k1,18840:19455241,16365379:211142 -(1,18840:19455241,16365379:0,452978,115847 -r1,18873:24034049,16365379:4578808,568825,115847 -k1,18840:19455241,16365379:-4578808 -) -(1,18840:19455241,16365379:4578808,452978,115847 -k1,18840:19455241,16365379:3277 -h1,18840:24030772,16365379:0,411205,112570 -) -k1,18840:24418861,16365379:211142 -k1,18840:26010847,16365379:211142 -k1,18840:27716209,16365379:211141 -k1,18840:29607694,16365379:211142 -k1,18840:32583029,16365379:0 -) -(1,18841:6630773,17206867:25952256,513147,134348 -k1,18840:7851363,17206867:201505 -k1,18840:10318447,17206867:201504 -(1,18840:10318447,17206867:0,452978,115847 -r1,18873:12083560,17206867:1765113,568825,115847 -k1,18840:10318447,17206867:-1765113 -) -(1,18840:10318447,17206867:1765113,452978,115847 -k1,18840:10318447,17206867:3277 -h1,18840:12080283,17206867:0,411205,112570 -) -k1,18840:12285065,17206867:201505 -k1,18840:15294132,17206867:201505 -k1,18840:16430179,17206867:201504 -k1,18840:17247722,17206867:201505 -(1,18840:17247722,17206867:0,452978,122846 -r1,18873:20067971,17206867:2820249,575824,122846 -k1,18840:17247722,17206867:-2820249 -) -(1,18840:17247722,17206867:2820249,452978,122846 -k1,18840:17247722,17206867:3277 -h1,18840:20064694,17206867:0,411205,112570 -) -k1,18840:20269476,17206867:201505 -k1,18840:21699780,17206867:201504 -k1,18840:22848936,17206867:201505 -k1,18840:24253681,17206867:201504 -k1,18840:25732483,17206867:201505 -k1,18840:27665449,17206867:201505 -k1,18840:28820502,17206867:201504 -k1,18840:30114492,17206867:201505 -(1,18840:30114492,17206867:0,452978,115847 -r1,18873:32583029,17206867:2468537,568825,115847 -k1,18840:30114492,17206867:-2468537 -) -(1,18840:30114492,17206867:2468537,452978,115847 -k1,18840:30114492,17206867:3277 -h1,18840:32579752,17206867:0,411205,112570 -) -k1,18840:32583029,17206867:0 -) -(1,18841:6630773,18048355:25952256,513147,126483 -g1,18840:7902171,18048355 -g1,18840:9304641,18048355 -g1,18840:11272687,18048355 -g1,18840:12219682,18048355 -g1,18840:15138000,18048355 -g1,18840:16098757,18048355 -g1,18840:17429793,18048355 -g1,18840:19330992,18048355 -g1,18840:21146339,18048355 -g1,18840:24427726,18048355 -g1,18840:26764739,18048355 -g1,18840:27615396,18048355 -k1,18841:32583029,18048355:4379120 -g1,18841:32583029,18048355 -) -v1,18843:6630773,19238821:0,393216,0 -(1,18849:6630773,20892565:25952256,2046960,196608 -g1,18849:6630773,20892565 -g1,18849:6630773,20892565 -g1,18849:6434165,20892565 -(1,18849:6434165,20892565:0,2046960,196608 -r1,18873:32779637,20892565:26345472,2243568,196608 -k1,18849:6434165,20892565:-26345472 -) -(1,18849:6434165,20892565:26345472,2046960,196608 -[1,18849:6630773,20892565:25952256,1850352,0 -(1,18845:6630773,19452731:25952256,410518,107478 -(1,18844:6630773,19452731:0,0,0 -g1,18844:6630773,19452731 -g1,18844:6630773,19452731 -g1,18844:6303093,19452731 -(1,18844:6303093,19452731:0,0,0 -) -g1,18844:6630773,19452731 -) -k1,18845:6630773,19452731:0 -g1,18845:10424522,19452731 -g1,18845:11056814,19452731 -g1,18845:13585980,19452731 -g1,18845:15482855,19452731 -g1,18845:16115147,19452731 -g1,18845:18012022,19452731 -g1,18845:18644314,19452731 -g1,18845:19276606,19452731 -g1,18845:20857335,19452731 -g1,18845:22754209,19452731 -g1,18845:23386501,19452731 -g1,18845:27812541,19452731 -h1,18845:28128687,19452731:0,0,0 -k1,18845:32583029,19452731:4454342 -g1,18845:32583029,19452731 -) -(1,18846:6630773,20118909:25952256,410518,101187 -h1,18846:6630773,20118909:0,0,0 -g1,18846:6946919,20118909 -g1,18846:7263065,20118909 -g1,18846:13269833,20118909 -g1,18846:13902125,20118909 -g1,18846:15799000,20118909 -g1,18846:18328166,20118909 -g1,18846:18960458,20118909 -g1,18846:19592750,20118909 -g1,18846:20225042,20118909 -g1,18846:21173480,20118909 -g1,18846:23070354,20118909 -g1,18846:23702646,20118909 -g1,18846:26547958,20118909 -h1,18846:26864104,20118909:0,0,0 -k1,18846:32583029,20118909:5718925 -g1,18846:32583029,20118909 -) -(1,18847:6630773,20785087:25952256,404226,107478 -h1,18847:6630773,20785087:0,0,0 -g1,18847:6946919,20785087 -g1,18847:7263065,20785087 -k1,18847:7263065,20785087:0 -h1,18847:11056813,20785087:0,0,0 -k1,18847:32583029,20785087:21526216 -g1,18847:32583029,20785087 -) -] -) -g1,18849:32583029,20892565 -g1,18849:6630773,20892565 -g1,18849:6630773,20892565 -g1,18849:32583029,20892565 -g1,18849:32583029,20892565 -) -h1,18849:6630773,21089173:0,0,0 -(1,18853:6630773,22454949:25952256,513147,134348 -h1,18852:6630773,22454949:983040,0,0 -k1,18852:10241016,22454949:288223 -k1,18852:11188531,22454949:288223 -k1,18852:13212147,22454949:288223 -k1,18852:14519454,22454949:288222 -(1,18852:14519454,22454949:0,459977,115847 -r1,18873:16987991,22454949:2468537,575824,115847 -k1,18852:14519454,22454949:-2468537 -) -(1,18852:14519454,22454949:2468537,459977,115847 -k1,18852:14519454,22454949:3277 -h1,18852:16984714,22454949:0,411205,112570 -) -k1,18852:17276214,22454949:288223 -k1,18852:18512088,22454949:288223 -k1,18852:19156171,22454949:288223 -k1,18852:21257120,22454949:288223 -k1,18852:24862120,22454949:288223 -k1,18852:25836505,22454949:288223 -k1,18852:29345166,22454949:288222 -k1,18852:30501741,22454949:288223 -k1,18852:32227169,22454949:288223 -k1,18852:32583029,22454949:0 -) -(1,18853:6630773,23296437:25952256,513147,134348 -k1,18852:9583513,23296437:190397 -(1,18852:9583513,23296437:0,459977,115847 -r1,18873:12052050,23296437:2468537,575824,115847 -k1,18852:9583513,23296437:-2468537 -) -(1,18852:9583513,23296437:2468537,459977,115847 -k1,18852:9583513,23296437:3277 -h1,18852:12048773,23296437:0,411205,112570 -) -k1,18852:12242446,23296437:190396 -k1,18852:13119005,23296437:190397 -k1,18852:14080105,23296437:190397 -k1,18852:17516499,23296437:190396 -k1,18852:18334731,23296437:190397 -k1,18852:19728368,23296437:190396 -k1,18852:22580182,23296437:190397 -k1,18852:23638931,23296437:190397 -k1,18852:24921812,23296437:190396 -k1,18852:25468069,23296437:190397 -k1,18852:29231489,23296437:190397 -k1,18852:30081177,23296437:190396 -k1,18852:32010900,23296437:190397 -k1,18853:32583029,23296437:0 -k1,18853:32583029,23296437:0 -) -v1,18855:6630773,24486903:0,393216,0 -(1,18861:6630773,26140647:25952256,2046960,196608 -g1,18861:6630773,26140647 -g1,18861:6630773,26140647 -g1,18861:6434165,26140647 -(1,18861:6434165,26140647:0,2046960,196608 -r1,18873:32779637,26140647:26345472,2243568,196608 -k1,18861:6434165,26140647:-26345472 -) -(1,18861:6434165,26140647:26345472,2046960,196608 -[1,18861:6630773,26140647:25952256,1850352,0 -(1,18857:6630773,24700813:25952256,410518,107478 -(1,18856:6630773,24700813:0,0,0 -g1,18856:6630773,24700813 -g1,18856:6630773,24700813 -g1,18856:6303093,24700813 -(1,18856:6303093,24700813:0,0,0 -) -g1,18856:6630773,24700813 -) -k1,18857:6630773,24700813:0 -g1,18857:10424522,24700813 -g1,18857:11056814,24700813 -g1,18857:13585980,24700813 -g1,18857:15482855,24700813 -g1,18857:16115147,24700813 -g1,18857:18012022,24700813 -g1,18857:18644314,24700813 -g1,18857:19276606,24700813 -g1,18857:20857335,24700813 -g1,18857:22754209,24700813 -g1,18857:23386501,24700813 -g1,18857:27812541,24700813 -h1,18857:28128687,24700813:0,0,0 -k1,18857:32583029,24700813:4454342 -g1,18857:32583029,24700813 -) -(1,18858:6630773,25366991:25952256,410518,101187 -h1,18858:6630773,25366991:0,0,0 -g1,18858:6946919,25366991 -g1,18858:7263065,25366991 -g1,18858:13269833,25366991 -g1,18858:13902125,25366991 -g1,18858:15799000,25366991 -g1,18858:18328166,25366991 -g1,18858:18960458,25366991 -g1,18858:19592750,25366991 -g1,18858:20225042,25366991 -g1,18858:22754208,25366991 -g1,18858:24018792,25366991 -g1,18858:25915666,25366991 -g1,18858:26547958,25366991 -g1,18858:29393270,25366991 -h1,18858:29709416,25366991:0,0,0 -k1,18858:32583029,25366991:2873613 -g1,18858:32583029,25366991 -) -(1,18859:6630773,26033169:25952256,404226,107478 -h1,18859:6630773,26033169:0,0,0 -g1,18859:6946919,26033169 -g1,18859:7263065,26033169 -k1,18859:7263065,26033169:0 -h1,18859:11056813,26033169:0,0,0 -k1,18859:32583029,26033169:21526216 -g1,18859:32583029,26033169 -) -] -) -g1,18861:32583029,26140647 -g1,18861:6630773,26140647 -g1,18861:6630773,26140647 -g1,18861:32583029,26140647 -g1,18861:32583029,26140647 -) -h1,18861:6630773,26337255:0,0,0 -(1,18864:6630773,36010745:25952256,9083666,0 -k1,18864:10523651,36010745:3892878 -h1,18863:10523651,36010745:0,0,0 -(1,18863:10523651,36010745:18166500,9083666,0 -(1,18863:10523651,36010745:18167376,9083688,0 -(1,18863:10523651,36010745:18167376,9083688,0 -(1,18863:10523651,36010745:0,9083688,0 -(1,18863:10523651,36010745:0,14208860,0 -(1,18863:10523651,36010745:28417720,14208860,0 -) -k1,18863:10523651,36010745:-28417720 -) -) -g1,18863:28691027,36010745 -) -) -) -g1,18864:28690151,36010745 -k1,18864:32583029,36010745:3892878 -) -(1,18871:6630773,36852233:25952256,513147,134348 -h1,18870:6630773,36852233:983040,0,0 -k1,18870:8472450,36852233:388744 -k1,18870:9392691,36852233:388744 -k1,18870:12411395,36852233:388744 -k1,18870:13451566,36852233:388743 -k1,18870:14932795,36852233:388744 -k1,18870:17023509,36852233:388744 -k1,18870:19128641,36852233:388744 -k1,18870:20176677,36852233:388744 -k1,18870:23057100,36852233:388744 -k1,18870:26426421,36852233:388744 -k1,18870:28345895,36852233:388553 -k1,18870:29926084,36852233:388744 -k1,18870:31896867,36852233:388744 -k1,18870:32583029,36852233:0 -) -(1,18871:6630773,37693721:25952256,513147,134348 -k1,18870:10437657,37693721:256143 -k1,18870:11765969,37693721:256143 -k1,18870:12890464,37693721:256143 -k1,18870:14279069,37693721:256143 -k1,18870:15815130,37693721:256143 -k1,18870:17446874,37693721:256143 -k1,18870:18875456,37693721:256143 -k1,18870:21256277,37693721:256144 -k1,18870:24504139,37693721:256143 -k1,18870:25419574,37693721:256143 -k1,18870:26694802,37693721:256143 -k1,18870:28043430,37693721:256143 -k1,18870:28966729,37693721:256143 -(1,18870:28966729,37693721:0,452978,115847 -r1,18873:30731842,37693721:1765113,568825,115847 -k1,18870:28966729,37693721:-1765113 -) -(1,18870:28966729,37693721:1765113,452978,115847 -k1,18870:28966729,37693721:3277 -h1,18870:30728565,37693721:0,411205,112570 -) -k1,18870:30987985,37693721:256143 -k1,18870:31895556,37693721:256143 -k1,18870:32583029,37693721:0 -) -(1,18871:6630773,38535209:25952256,513147,134348 -k1,18870:7163159,38535209:176526 -k1,18870:9327392,38535209:176526 -k1,18870:12753848,38535209:176526 -k1,18870:13546411,38535209:176525 -k1,18870:14511335,38535209:176526 -k1,18870:18298895,38535209:176526 -k1,18870:19707498,38535209:176526 -k1,18870:22162711,38535209:176526 -h1,18870:23133299,38535209:0,0,0 -k1,18870:23309825,38535209:176526 -k1,18870:24295721,38535209:176526 -k1,18870:25970399,38535209:176525 -h1,18870:27165776,38535209:0,0,0 -k1,18870:27342302,38535209:176526 -k1,18870:28466479,38535209:176526 -k1,18870:30760473,38535209:176526 -k1,18870:32583029,38535209:0 -) -(1,18871:6630773,39376697:25952256,513147,134348 -k1,18870:8734369,39376697:168973 -k1,18870:10106583,39376697:168973 -k1,18870:11929029,39376697:168973 -k1,18870:14085709,39376697:168973 -k1,18870:15648633,39376697:168973 -(1,18870:15648633,39376697:0,452978,115847 -r1,18873:17413746,39376697:1765113,568825,115847 -k1,18870:15648633,39376697:-1765113 -) -(1,18870:15648633,39376697:1765113,452978,115847 -k1,18870:15648633,39376697:3277 -h1,18870:17410469,39376697:0,411205,112570 -) -k1,18870:17963483,39376697:168973 -k1,18870:18760290,39376697:168972 -k1,18870:19948348,39376697:168973 -k1,18870:21423454,39376697:168973 -k1,18870:22749137,39376697:168973 -k1,18870:23786462,39376697:168973 -k1,18870:24642908,39376697:168973 -k1,18870:25167741,39376697:168973 -k1,18870:30847636,39376697:168973 -k1,18871:32583029,39376697:0 -) -(1,18871:6630773,40218185:25952256,505283,115847 -k1,18870:8190864,40218185:292625 -k1,18870:9134917,40218185:292625 -k1,18870:12020146,40218185:292625 -k1,18870:13561232,40218185:292625 -(1,18870:13768326,40218185:0,414482,115847 -r1,18873:15181727,40218185:1413401,530329,115847 -k1,18870:13768326,40218185:-1413401 -) -(1,18870:13768326,40218185:1413401,414482,115847 -k1,18870:13768326,40218185:3277 -h1,18870:15178450,40218185:0,411205,112570 -) -k1,18870:15681446,40218185:292625 -k1,18870:18042388,40218185:292626 -k1,18870:20944657,40218185:292625 -k1,18870:25644578,40218185:292625 -(1,18870:25851672,40218185:0,414482,115847 -r1,18873:27265073,40218185:1413401,530329,115847 -k1,18870:25851672,40218185:-1413401 -) -(1,18870:25851672,40218185:1413401,414482,115847 -k1,18870:25851672,40218185:3277 -h1,18870:27261796,40218185:0,411205,112570 -) -k1,18870:27938462,40218185:292625 -(1,18870:27938462,40218185:0,452978,115847 -r1,18873:31110422,40218185:3171960,568825,115847 -k1,18870:27938462,40218185:-3171960 -) -(1,18870:27938462,40218185:3171960,452978,115847 -k1,18870:27938462,40218185:3277 -h1,18870:31107145,40218185:0,411205,112570 -) -k1,18870:31403047,40218185:292625 -k1,18870:32227169,40218185:292625 -k1,18870:32583029,40218185:0 -) -(1,18871:6630773,41059673:25952256,513147,115847 -k1,18870:8224061,41059673:203925 -k1,18870:9362529,41059673:203925 -k1,18870:12324864,41059673:203925 -k1,18870:13144827,41059673:203925 -k1,18870:14367838,41059673:203926 -k1,18870:14986601,41059673:203920 -k1,18870:19145624,41059673:203925 -k1,18870:22139417,41059673:203925 -(1,18870:22139417,41059673:0,452978,115847 -r1,18873:25663089,41059673:3523672,568825,115847 -k1,18870:22139417,41059673:-3523672 -) -(1,18870:22139417,41059673:3523672,452978,115847 -k1,18870:22139417,41059673:3277 -h1,18870:25659812,41059673:0,411205,112570 -) -k1,18870:25867014,41059673:203925 -k1,18870:26602437,41059673:203926 -k1,18870:28092178,41059673:203925 -k1,18870:29863724,41059673:203925 -k1,18870:30656162,41059673:203925 -k1,18870:32051532,41059673:203925 -k1,18870:32583029,41059673:0 -) -(1,18871:6630773,41901161:25952256,513147,134348 -k1,18870:7239602,41901161:252969 -k1,18870:11231400,41901161:252969 -k1,18870:16541127,41901161:252969 -k1,18870:17453388,41901161:252969 -k1,18870:18725442,41901161:252969 -k1,18870:24489333,41901161:252969 -k1,18870:27705840,41901161:252969 -k1,18870:30301721,41901161:252969 -k1,18870:31206118,41901161:252969 -k1,18870:32583029,41901161:0 -) -(1,18871:6630773,42742649:25952256,513147,134348 -k1,18870:8264760,42742649:167291 -k1,18870:10702219,42742649:167292 -k1,18870:11888595,42742649:167291 -k1,18870:12743360,42742649:167292 -k1,18870:13442148,42742649:167291 -k1,18870:15186891,42742649:167291 -k1,18870:16748134,42742649:167292 -k1,18870:17686128,42742649:167291 -k1,18870:20465685,42742649:167292 -k1,18870:23917640,42742649:167291 -k1,18870:24953283,42742649:167291 -k1,18870:25935843,42742649:167292 -k1,18870:27169405,42742649:167291 -k1,18870:28866963,42742649:167292 -k1,18870:29685682,42742649:167291 -k1,18870:32583029,42742649:0 -) -(1,18871:6630773,43584137:25952256,513147,134348 -k1,18870:9259034,43584137:198186 -k1,18870:11935792,43584137:198186 -k1,18870:14144622,43584137:198185 -k1,18870:15290459,43584137:198186 -k1,18870:16507730,43584137:198186 -k1,18870:20316950,43584137:198186 -k1,18870:21166563,43584137:198185 -k1,18870:22112515,43584137:198186 -k1,18870:24196827,43584137:198186 -k1,18870:25348562,43584137:198186 -k1,18870:27077013,43584137:198185 -k1,18870:27926627,43584137:198186 -k1,18870:29059356,43584137:198186 -(1,18870:29059356,43584137:0,414482,115847 -r1,18873:32583029,43584137:3523673,530329,115847 -k1,18870:29059356,43584137:-3523673 -) -(1,18870:29059356,43584137:3523673,414482,115847 -g1,18870:30117769,43584137 -g1,18870:30821193,43584137 -h1,18870:32579752,43584137:0,411205,112570 -) -k1,18870:32583029,43584137:0 -) -(1,18871:6630773,44425625:25952256,513147,126483 -k1,18870:9340521,44425625:180058 -k1,18870:12364186,44425625:180058 -k1,18870:14481488,44425625:180058 -k1,18870:15653106,44425625:180058 -k1,18870:16899435,44425625:180058 -k1,18870:20373988,44425625:180058 -k1,18870:21315575,44425625:180059 -k1,18870:22514718,44425625:180058 -(1,18870:22514718,44425625:0,452978,115847 -r1,18873:25686678,44425625:3171960,568825,115847 -k1,18870:22514718,44425625:-3171960 -) -(1,18870:22514718,44425625:3171960,452978,115847 -k1,18870:22514718,44425625:3277 -h1,18870:25683401,44425625:0,411205,112570 -) -k1,18870:25866736,44425625:180058 -k1,18870:28501117,44425625:180058 -k1,18870:29628826,44425625:180058 -(1,18870:29628826,44425625:0,452978,115847 -r1,18873:30690515,44425625:1061689,568825,115847 -k1,18870:29628826,44425625:-1061689 -) -(1,18870:29628826,44425625:1061689,452978,115847 -k1,18870:29628826,44425625:3277 -h1,18870:30687238,44425625:0,411205,112570 -) -k1,18870:30870573,44425625:180058 -k1,18870:32583029,44425625:0 -) -(1,18871:6630773,45267113:25952256,505283,7863 -k1,18871:32583028,45267113:23460576 -g1,18871:32583028,45267113 -) -] -(1,18873:32583029,45706769:0,0,0 -g1,18873:32583029,45706769 -) -) -] -(1,18873:6630773,47279633:25952256,0,0 -h1,18873:6630773,47279633:25952256,0,0 -) -] -(1,18873:4262630,4025873:0,0,0 -[1,18873:-473656,4025873:0,0,0 -(1,18873:-473656,-710413:0,0,0 -(1,18873:-473656,-710413:0,0,0 -g1,18873:-473656,-710413 -) -g1,18873:-473656,-710413 -) -] -) -] -!21336 -}334 -Input:2971:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2972:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2973:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2974:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2975:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!482 -{335 -[1,18939:4262630,47279633:28320399,43253760,0 -(1,18939:4262630,4025873:0,0,0 -[1,18939:-473656,4025873:0,0,0 -(1,18939:-473656,-710413:0,0,0 -(1,18939:-473656,-644877:0,0,0 -k1,18939:-473656,-644877:-65536 -) -(1,18939:-473656,4736287:0,0,0 -k1,18939:-473656,4736287:5209943 -) -g1,18939:-473656,-710413 +k1,18871:3078556,2439708:-34777008 ) ] +[1,18871:3078558,4812305:0,0,0 +(1,18871:3078558,49800853:0,16384,2228224 +k1,18871:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,18871:2537886,49800853:1179648,16384,0 ) -[1,18939:6630773,47279633:25952256,43253760,0 -[1,18939:6630773,4812305:25952256,786432,0 -(1,18939:6630773,4812305:25952256,513147,126483 -(1,18939:6630773,4812305:25952256,513147,126483 -g1,18939:3078558,4812305 -[1,18939:3078558,4812305:0,0,0 -(1,18939:3078558,2439708:0,1703936,0 -k1,18939:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,18939:2537886,2439708:1179648,16384,0 -) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,18939:3078558,1915420:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,18871:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,18939:3078558,4812305:0,0,0 -(1,18939:3078558,2439708:0,1703936,0 -g1,18939:29030814,2439708 -g1,18939:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,18939:36151628,1915420:16384,1179648,0 +[1,18871:3078558,4812305:0,0,0 +(1,18871:3078558,49800853:0,16384,2228224 +g1,18871:29030814,49800853 +g1,18871:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,18871:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,18939:37855564,2439708:1179648,16384,0 -) -) -k1,18939:3078556,2439708:-34777008 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,18871:37855564,49800853:1179648,16384,0 ) -] -[1,18939:3078558,4812305:0,0,0 -(1,18939:3078558,49800853:0,16384,2228224 -k1,18939:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,18939:2537886,49800853:1179648,16384,0 -) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,18939:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,18871:3078556,49800853:-34777008 ) ] -) -) +g1,18871:6630773,4812305 +k1,18871:21350816,4812305:13524666 +g1,18871:21999622,4812305 +g1,18871:25611966,4812305 +g1,18871:28956923,4812305 +g1,18871:29772190,4812305 +) ) ] -[1,18939:3078558,4812305:0,0,0 -(1,18939:3078558,49800853:0,16384,2228224 -g1,18939:29030814,49800853 -g1,18939:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,18939:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] -) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,18939:37855564,49800853:1179648,16384,0 -) -) -k1,18939:3078556,49800853:-34777008 -) -] -g1,18939:6630773,4812305 -k1,18939:21350816,4812305:13524666 -g1,18939:21999622,4812305 -g1,18939:25611966,4812305 -g1,18939:28956923,4812305 -g1,18939:29772190,4812305 -) -) -] -[1,18939:6630773,45706769:25952256,40108032,0 -(1,18939:6630773,45706769:25952256,40108032,0 -(1,18939:6630773,45706769:0,0,0 -g1,18939:6630773,45706769 -) -[1,18939:6630773,45706769:25952256,40108032,0 -v1,18873:6630773,6254097:0,393216,0 -(1,18881:6630773,9202448:25952256,3341567,196608 -g1,18881:6630773,9202448 -g1,18881:6630773,9202448 -g1,18881:6434165,9202448 -(1,18881:6434165,9202448:0,3341567,196608 -r1,18939:32779637,9202448:26345472,3538175,196608 -k1,18881:6434165,9202448:-26345472 -) -(1,18881:6434165,9202448:26345472,3341567,196608 -[1,18881:6630773,9202448:25952256,3144959,0 -(1,18875:6630773,6461715:25952256,404226,107478 -(1,18874:6630773,6461715:0,0,0 -g1,18874:6630773,6461715 -g1,18874:6630773,6461715 -g1,18874:6303093,6461715 -(1,18874:6303093,6461715:0,0,0 -) -g1,18874:6630773,6461715 -) -k1,18875:6630773,6461715:0 -g1,18875:12321396,6461715 -g1,18875:15482853,6461715 -g1,18875:17379728,6461715 -g1,18875:19276602,6461715 -g1,18875:19908894,6461715 -g1,18875:22438060,6461715 -h1,18875:22754206,6461715:0,0,0 -k1,18875:32583029,6461715:9828823 -g1,18875:32583029,6461715 -) -(1,18876:6630773,7127893:25952256,404226,107478 -h1,18876:6630773,7127893:0,0,0 -g1,18876:6946919,7127893 -g1,18876:7263065,7127893 -g1,18876:11372959,7127893 -h1,18876:11689105,7127893:0,0,0 -k1,18876:32583029,7127893:20893924 -g1,18876:32583029,7127893 -) -(1,18877:6630773,7794071:25952256,404226,107478 -h1,18877:6630773,7794071:0,0,0 -g1,18877:6946919,7794071 -g1,18877:7263065,7794071 -g1,18877:13269833,7794071 -g1,18877:13902125,7794071 -k1,18877:13902125,7794071:0 -h1,18877:15798999,7794071:0,0,0 -k1,18877:32583029,7794071:16784030 -g1,18877:32583029,7794071 -) -(1,18878:6630773,8460249:25952256,410518,101187 -h1,18878:6630773,8460249:0,0,0 -g1,18878:6946919,8460249 -g1,18878:7263065,8460249 -g1,18878:7579211,8460249 -g1,18878:7895357,8460249 -g1,18878:8211503,8460249 -g1,18878:8527649,8460249 -g1,18878:8843795,8460249 -g1,18878:9159941,8460249 -g1,18878:9476087,8460249 -g1,18878:9792233,8460249 -g1,18878:10108379,8460249 -g1,18878:10424525,8460249 -g1,18878:10740671,8460249 -g1,18878:11056817,8460249 -g1,18878:13585983,8460249 -g1,18878:14218275,8460249 -g1,18878:14534421,8460249 -g1,18878:15166713,8460249 -g1,18878:15799005,8460249 -g1,18878:19592753,8460249 -g1,18878:20857336,8460249 -k1,18878:20857336,8460249:0 -h1,18878:21805773,8460249:0,0,0 -k1,18878:32583029,8460249:10777256 -g1,18878:32583029,8460249 -) -(1,18879:6630773,9126427:25952256,404226,76021 -h1,18879:6630773,9126427:0,0,0 -g1,18879:6946919,9126427 -g1,18879:7263065,9126427 -g1,18879:7579211,9126427 -g1,18879:7895357,9126427 -g1,18879:8211503,9126427 -g1,18879:8527649,9126427 -g1,18879:8843795,9126427 -g1,18879:9159941,9126427 -g1,18879:9476087,9126427 -g1,18879:9792233,9126427 -g1,18879:10108379,9126427 -g1,18879:10424525,9126427 -g1,18879:10740671,9126427 -g1,18879:11056817,9126427 -g1,18879:12005254,9126427 -g1,18879:12637546,9126427 -h1,18879:14534420,9126427:0,0,0 -k1,18879:32583028,9126427:18048608 -g1,18879:32583028,9126427 -) -] -) -g1,18881:32583029,9202448 -g1,18881:6630773,9202448 -g1,18881:6630773,9202448 -g1,18881:32583029,9202448 -g1,18881:32583029,9202448 -) -h1,18881:6630773,9399056:0,0,0 -(1,18885:6630773,10696692:25952256,513147,126483 -h1,18884:6630773,10696692:983040,0,0 -k1,18884:8409017,10696692:167369 -k1,18884:9595471,10696692:167369 -k1,18884:12004171,10696692:167369 -k1,18884:14832956,10696692:167368 -k1,18884:15868677,10696692:167369 -k1,18884:17996883,10696692:167369 -k1,18884:19183337,10696692:167369 -k1,18884:21004179,10696692:167369 -k1,18884:23159255,10696692:167369 -k1,18884:25740969,10696692:167368 -k1,18884:26524376,10696692:167369 -k1,18884:27710830,10696692:167369 -k1,18884:29865906,10696692:167369 -k1,18884:32583029,10696692:0 -) -(1,18885:6630773,11538180:25952256,513147,134348 -k1,18884:8050884,11538180:228666 -k1,18884:10709625,11538180:228666 -k1,18884:11957376,11538180:228666 -k1,18884:14664613,11538180:228665 -k1,18884:16903924,11538180:228666 -k1,18884:20203607,11538180:228666 -k1,18884:21628960,11538180:228666 -k1,18884:23925942,11538180:228666 -k1,18884:25667834,11538180:228666 -k1,18884:26844150,11538180:228665 -k1,18884:28091901,11538180:228666 -k1,18884:31931601,11538180:228666 -k1,18884:32583029,11538180:0 -) -(1,18885:6630773,12379668:25952256,513147,134348 -k1,18884:7643352,12379668:264813 -k1,18884:9620622,12379668:264814 -k1,18884:10989717,12379668:264813 -k1,18884:12002296,12379668:264813 -k1,18884:14502543,12379668:264814 -k1,18884:15380118,12379668:264813 -k1,18884:16951064,12379668:264813 -k1,18884:19225867,12379668:264814 -k1,18884:20509765,12379668:264813 -k1,18884:24418380,12379668:264813 -k1,18884:25342486,12379668:264814 -k1,18884:26626384,12379668:264813 -k1,18884:27305974,12379668:264747 -k1,18884:30586755,12379668:264814 -k1,18884:31923737,12379668:264813 -k1,18884:32583029,12379668:0 -) -(1,18885:6630773,13221156:25952256,505283,115847 -g1,18884:8938951,13221156 -g1,18884:10157265,13221156 -g1,18884:12424810,13221156 -g1,18884:14137265,13221156 -g1,18884:14952532,13221156 -(1,18884:14952532,13221156:0,459977,115847 -r1,18939:17421069,13221156:2468537,575824,115847 -k1,18884:14952532,13221156:-2468537 -) -(1,18884:14952532,13221156:2468537,459977,115847 -k1,18884:14952532,13221156:3277 -h1,18884:17417792,13221156:0,411205,112570 -) -g1,18884:17620298,13221156 -g1,18884:19010972,13221156 -(1,18884:19010972,13221156:0,414482,115847 -r1,18939:20776085,13221156:1765113,530329,115847 -k1,18884:19010972,13221156:-1765113 -) -(1,18884:19010972,13221156:1765113,414482,115847 -k1,18884:19010972,13221156:3277 -h1,18884:20772808,13221156:0,411205,112570 -) -g1,18884:20975314,13221156 -g1,18884:22796559,13221156 -g1,18884:24976941,13221156 -g1,18884:26627792,13221156 -k1,18885:32583029,13221156:4079597 -g1,18885:32583029,13221156 -) -v1,18887:6630773,14343483:0,393216,0 -(1,18896:6630773,17958012:25952256,4007745,196608 -g1,18896:6630773,17958012 -g1,18896:6630773,17958012 -g1,18896:6434165,17958012 -(1,18896:6434165,17958012:0,4007745,196608 -r1,18939:32779637,17958012:26345472,4204353,196608 -k1,18896:6434165,17958012:-26345472 -) -(1,18896:6434165,17958012:26345472,4007745,196608 -[1,18896:6630773,17958012:25952256,3811137,0 -(1,18889:6630773,14551101:25952256,404226,107478 -(1,18888:6630773,14551101:0,0,0 -g1,18888:6630773,14551101 -g1,18888:6630773,14551101 -g1,18888:6303093,14551101 -(1,18888:6303093,14551101:0,0,0 -) -g1,18888:6630773,14551101 -) -k1,18889:6630773,14551101:0 -g1,18889:12321396,14551101 -g1,18889:15482853,14551101 -g1,18889:17379728,14551101 -g1,18889:19276602,14551101 -g1,18889:19908894,14551101 -g1,18889:22438060,14551101 -h1,18889:22754206,14551101:0,0,0 -k1,18889:32583029,14551101:9828823 -g1,18889:32583029,14551101 -) -(1,18890:6630773,15217279:25952256,404226,107478 -h1,18890:6630773,15217279:0,0,0 -g1,18890:6946919,15217279 -g1,18890:7263065,15217279 -g1,18890:11372959,15217279 -h1,18890:11689105,15217279:0,0,0 -k1,18890:32583029,15217279:20893924 -g1,18890:32583029,15217279 -) -(1,18891:6630773,15883457:25952256,404226,107478 -h1,18891:6630773,15883457:0,0,0 -g1,18891:6946919,15883457 -g1,18891:7263065,15883457 -g1,18891:13269833,15883457 -g1,18891:13902125,15883457 -k1,18891:13902125,15883457:0 -h1,18891:15798999,15883457:0,0,0 -k1,18891:32583029,15883457:16784030 -g1,18891:32583029,15883457 -) -(1,18892:6630773,16549635:25952256,410518,107478 -h1,18892:6630773,16549635:0,0,0 -g1,18892:6946919,16549635 -g1,18892:7263065,16549635 -g1,18892:7579211,16549635 -g1,18892:7895357,16549635 -g1,18892:8211503,16549635 -g1,18892:8527649,16549635 -g1,18892:8843795,16549635 -g1,18892:9159941,16549635 -g1,18892:9476087,16549635 -g1,18892:9792233,16549635 -g1,18892:10108379,16549635 -g1,18892:10424525,16549635 -g1,18892:10740671,16549635 -g1,18892:11056817,16549635 -g1,18892:14850565,16549635 -g1,18892:15482857,16549635 -g1,18892:19592752,16549635 -g1,18892:20225044,16549635 -g1,18892:20541190,16549635 -g1,18892:21173482,16549635 -g1,18892:21805774,16549635 -g1,18892:23702648,16549635 -g1,18892:24334940,16549635 -g1,18892:25283377,16549635 -g1,18892:25915669,16549635 -g1,18892:26864106,16549635 -g1,18892:27496398,16549635 -k1,18892:27496398,16549635:0 -h1,18892:28444835,16549635:0,0,0 -k1,18892:32583029,16549635:4138194 -g1,18892:32583029,16549635 -) -(1,18893:6630773,17215813:25952256,404226,82312 -h1,18893:6630773,17215813:0,0,0 -g1,18893:6946919,17215813 -g1,18893:7263065,17215813 -g1,18893:7579211,17215813 -g1,18893:7895357,17215813 -g1,18893:8211503,17215813 -g1,18893:8527649,17215813 -g1,18893:8843795,17215813 -g1,18893:9159941,17215813 -g1,18893:9476087,17215813 -g1,18893:9792233,17215813 -g1,18893:10108379,17215813 -g1,18893:10424525,17215813 -g1,18893:10740671,17215813 -g1,18893:11056817,17215813 -g1,18893:11372963,17215813 -g1,18893:11689109,17215813 -g1,18893:12005255,17215813 -g1,18893:12321401,17215813 -g1,18893:12637547,17215813 -g1,18893:12953693,17215813 -g1,18893:13269839,17215813 -g1,18893:13585985,17215813 -g1,18893:13902131,17215813 -g1,18893:14218277,17215813 -g1,18893:14534423,17215813 -g1,18893:14850569,17215813 -g1,18893:15166715,17215813 -g1,18893:15482861,17215813 -g1,18893:15799007,17215813 -g1,18893:16115153,17215813 -g1,18893:16431299,17215813 -g1,18893:16747445,17215813 -g1,18893:17063591,17215813 -g1,18893:18960465,17215813 -g1,18893:19592757,17215813 -g1,18893:22754215,17215813 -g1,18893:23386507,17215813 -g1,18893:24967236,17215813 -g1,18893:25599528,17215813 -g1,18893:26231820,17215813 -k1,18893:26231820,17215813:0 -h1,18893:28444840,17215813:0,0,0 -k1,18893:32583029,17215813:4138189 -g1,18893:32583029,17215813 -) -(1,18894:6630773,17881991:25952256,404226,76021 -h1,18894:6630773,17881991:0,0,0 -g1,18894:6946919,17881991 -g1,18894:7263065,17881991 -g1,18894:7579211,17881991 -g1,18894:7895357,17881991 -g1,18894:8211503,17881991 -g1,18894:8527649,17881991 -g1,18894:8843795,17881991 -g1,18894:9159941,17881991 -g1,18894:9476087,17881991 -g1,18894:9792233,17881991 -g1,18894:10108379,17881991 -g1,18894:10424525,17881991 -g1,18894:10740671,17881991 -g1,18894:11056817,17881991 -g1,18894:12005254,17881991 -g1,18894:12637546,17881991 -h1,18894:14534420,17881991:0,0,0 -k1,18894:32583028,17881991:18048608 -g1,18894:32583028,17881991 -) -] -) -g1,18896:32583029,17958012 -g1,18896:6630773,17958012 -g1,18896:6630773,17958012 -g1,18896:32583029,17958012 -g1,18896:32583029,17958012 -) -h1,18896:6630773,18154620:0,0,0 -(1,18900:6630773,19452256:25952256,513147,126483 -h1,18899:6630773,19452256:983040,0,0 -k1,18899:8481056,19452256:239408 -k1,18899:10412604,19452256:239408 -k1,18899:12349394,19452256:239408 -k1,18899:13046899,19452256:239408 -k1,18899:13817804,19452256:239408 -k1,18899:16953903,19452256:239408 -k1,18899:17844738,19452256:239407 -k1,18899:20881223,19452256:239408 -k1,18899:22728229,19452256:239408 -k1,18899:24361588,19452256:239408 -k1,18899:26313452,19452256:239408 -k1,18899:28540567,19452256:239408 -k1,18899:31900144,19452256:239408 -k1,18899:32583029,19452256:0 -) -(1,18900:6630773,20293744:25952256,513147,134348 -k1,18899:8578784,20293744:235555 -k1,18899:12599043,20293744:235555 -k1,18899:14105996,20293744:235555 -k1,18899:15579526,20293744:235555 -k1,18899:16474373,20293744:235555 -k1,18899:19710166,20293744:235555 -k1,18899:21148963,20293744:235556 -k1,18899:21916015,20293744:235555 -k1,18899:22913098,20293744:235555 -k1,18899:25083276,20293744:235555 -k1,18899:26337916,20293744:235555 -k1,18899:28561178,20293744:235555 -k1,18899:29988178,20293744:235555 -k1,18899:31657661,20293744:235555 -k1,18900:32583029,20293744:0 -) -(1,18900:6630773,21135232:25952256,513147,134348 -k1,18899:9319967,21135232:207346 -k1,18899:10546397,21135232:207345 -k1,18899:14364777,21135232:207346 -k1,18899:15223551,21135232:207346 -k1,18899:18363632,21135232:207345 -k1,18899:21594809,21135232:207346 -k1,18899:23028334,21135232:207346 -k1,18899:25431791,21135232:207346 -k1,18899:26290564,21135232:207345 -k1,18899:27590395,21135232:207346 -k1,18899:28745392,21135232:207346 -k1,18899:30178916,21135232:207345 -k1,18899:31069147,21135232:207346 -k1,18899:32583029,21135232:0 -) -(1,18900:6630773,21976720:25952256,505283,134348 -k1,18899:10811118,21976720:216072 -k1,18899:13961892,21976720:216072 -k1,18899:16758117,21976720:216073 -k1,18899:20021612,21976720:216072 -k1,18899:22283718,21976720:216072 -k1,18899:22957887,21976720:216072 -k1,18899:25803919,21976720:216072 -k1,18899:26671420,21976720:216073 -k1,18899:29889696,21976720:216072 -k1,18899:31599334,21976720:216072 -k1,18900:32583029,21976720:0 -) -(1,18900:6630773,22818208:25952256,505283,134348 -k1,18899:9914211,22818208:263539 -k1,18899:10793788,22818208:263539 -k1,18899:12809104,22818208:263539 -k1,18899:14943696,22818208:263539 -k1,18899:16588079,22818208:263539 -k1,18899:19431770,22818208:263539 -k1,18899:20981125,22818208:263539 -k1,18899:24005040,22818208:263539 -(1,18899:24005040,22818208:0,452978,115847 -r1,18939:29638983,22818208:5633943,568825,115847 -k1,18899:24005040,22818208:-5633943 -) -(1,18899:24005040,22818208:5633943,452978,115847 -k1,18899:24005040,22818208:3277 -h1,18899:29635706,22818208:0,411205,112570 -) -k1,18899:29902522,22818208:263539 -k1,18899:32051532,22818208:263539 -k1,18899:32583029,22818208:0 -) -(1,18900:6630773,23659696:25952256,513147,126483 -k1,18899:9087756,23659696:254973 -k1,18899:9994158,23659696:254974 -(1,18899:9994158,23659696:0,452978,115847 -r1,18939:14572966,23659696:4578808,568825,115847 -k1,18899:9994158,23659696:-4578808 -) -(1,18899:9994158,23659696:4578808,452978,115847 -k1,18899:9994158,23659696:3277 -h1,18899:14569689,23659696:0,411205,112570 -) -k1,18899:14827939,23659696:254973 -k1,18899:16155082,23659696:254974 -k1,18899:17804006,23659696:254973 -(1,18899:17804006,23659696:0,452978,115847 -r1,18939:22382814,23659696:4578808,568825,115847 -k1,18899:17804006,23659696:-4578808 -) -(1,18899:17804006,23659696:4578808,452978,115847 -g1,18899:20269266,23659696 -g1,18899:20972690,23659696 -h1,18899:22379537,23659696:0,411205,112570 -) -k1,18899:22637787,23659696:254973 -k1,18899:26739724,23659696:254974 -k1,18899:27680859,23659696:254973 -k1,18899:28724231,23659696:254974 -k1,18899:31244784,23659696:254973 -k1,18900:32583029,23659696:0 -) -(1,18900:6630773,24501184:25952256,513147,126483 -g1,18899:9424572,24501184 -g1,18899:10283093,24501184 -g1,18899:11501407,24501184 -g1,18899:14186417,24501184 -g1,18899:15044938,24501184 -k1,18900:32583029,24501184:13292669 -g1,18900:32583029,24501184 -) -v1,18902:6630773,25623510:0,393216,0 -(1,18911:6630773,29275788:25952256,4045494,196608 -g1,18911:6630773,29275788 -g1,18911:6630773,29275788 -g1,18911:6434165,29275788 -(1,18911:6434165,29275788:0,4045494,196608 -r1,18939:32779637,29275788:26345472,4242102,196608 -k1,18911:6434165,29275788:-26345472 -) -(1,18911:6434165,29275788:26345472,4045494,196608 -[1,18911:6630773,29275788:25952256,3848886,0 -(1,18904:6630773,25837420:25952256,410518,101187 -(1,18903:6630773,25837420:0,0,0 -g1,18903:6630773,25837420 -g1,18903:6630773,25837420 -g1,18903:6303093,25837420 -(1,18903:6303093,25837420:0,0,0 -) -g1,18903:6630773,25837420 -) -g1,18904:10108376,25837420 -g1,18904:11056814,25837420 -g1,18904:11689106,25837420 -g1,18904:12321398,25837420 -g1,18904:14850564,25837420 -h1,18904:15482856,25837420:0,0,0 -k1,18904:32583028,25837420:17100172 -g1,18904:32583028,25837420 -) -(1,18905:6630773,26503598:25952256,410518,107478 -h1,18905:6630773,26503598:0,0,0 -g1,18905:10424522,26503598 -g1,18905:11056814,26503598 -g1,18905:13585980,26503598 -g1,18905:15482855,26503598 -g1,18905:16115147,26503598 -g1,18905:18012022,26503598 -g1,18905:18644314,26503598 -g1,18905:19276606,26503598 -g1,18905:20857335,26503598 -g1,18905:22754209,26503598 -g1,18905:23386501,26503598 -g1,18905:27812541,26503598 -h1,18905:28128687,26503598:0,0,0 -k1,18905:32583029,26503598:4454342 -g1,18905:32583029,26503598 -) -(1,18906:6630773,27169776:25952256,410518,101187 -h1,18906:6630773,27169776:0,0,0 -g1,18906:6946919,27169776 -g1,18906:7263065,27169776 -g1,18906:14534417,27169776 -g1,18906:15166709,27169776 -g1,18906:18960458,27169776 -g1,18906:20857332,27169776 -g1,18906:21489624,27169776 -g1,18906:24334936,27169776 -h1,18906:24651082,27169776:0,0,0 -k1,18906:32583029,27169776:7931947 -g1,18906:32583029,27169776 -) -(1,18907:6630773,27835954:25952256,410518,107478 -h1,18907:6630773,27835954:0,0,0 -g1,18907:6946919,27835954 -g1,18907:7263065,27835954 -g1,18907:13902125,27835954 -g1,18907:14534417,27835954 -g1,18907:18328166,27835954 -g1,18907:20857332,27835954 -g1,18907:21489624,27835954 -g1,18907:27180248,27835954 -k1,18907:27180248,27835954:0 -h1,18907:29077122,27835954:0,0,0 -k1,18907:32583029,27835954:3505907 -g1,18907:32583029,27835954 -) -(1,18908:6630773,28502132:25952256,404226,101187 -h1,18908:6630773,28502132:0,0,0 -g1,18908:6946919,28502132 -g1,18908:7263065,28502132 -g1,18908:7579211,28502132 -g1,18908:7895357,28502132 -g1,18908:8211503,28502132 -g1,18908:8527649,28502132 -g1,18908:8843795,28502132 -g1,18908:9159941,28502132 -g1,18908:9476087,28502132 -g1,18908:9792233,28502132 -g1,18908:10108379,28502132 -g1,18908:10424525,28502132 -g1,18908:10740671,28502132 -g1,18908:11056817,28502132 -g1,18908:11372963,28502132 -g1,18908:13269837,28502132 -g1,18908:13902129,28502132 -g1,18908:16747441,28502132 -g1,18908:18644315,28502132 -g1,18908:19276607,28502132 -g1,18908:21173482,28502132 -g1,18908:24967230,28502132 -g1,18908:25599522,28502132 -g1,18908:27180251,28502132 -h1,18908:27496397,28502132:0,0,0 -k1,18908:32583029,28502132:5086632 -g1,18908:32583029,28502132 -) -(1,18909:6630773,29168310:25952256,404226,107478 -h1,18909:6630773,29168310:0,0,0 -g1,18909:6946919,29168310 -g1,18909:7263065,29168310 -k1,18909:7263065,29168310:0 -h1,18909:11056813,29168310:0,0,0 -k1,18909:32583029,29168310:21526216 -g1,18909:32583029,29168310 -) -] -) -g1,18911:32583029,29275788 -g1,18911:6630773,29275788 -g1,18911:6630773,29275788 -g1,18911:32583029,29275788 -g1,18911:32583029,29275788 -) -h1,18911:6630773,29472396:0,0,0 -(1,18914:6630773,39077747:25952256,9083666,0 -k1,18914:10523651,39077747:3892878 -h1,18913:10523651,39077747:0,0,0 -(1,18913:10523651,39077747:18166500,9083666,0 -(1,18913:10523651,39077747:18167376,9083688,0 -(1,18913:10523651,39077747:18167376,9083688,0 -(1,18913:10523651,39077747:0,9083688,0 -(1,18913:10523651,39077747:0,14208860,0 -(1,18913:10523651,39077747:28417720,14208860,0 -) -k1,18913:10523651,39077747:-28417720 -) -) -g1,18913:28691027,39077747 -) -) -) -g1,18914:28690151,39077747 -k1,18914:32583029,39077747:3892878 -) -(1,18921:6630773,39919235:25952256,505283,134348 -h1,18920:6630773,39919235:983040,0,0 -k1,18920:9256860,39919235:262203 -k1,18920:11172537,39919235:262204 -k1,18920:14014892,39919235:262203 -k1,18920:16323129,39919235:262203 -k1,18920:17043430,39919235:262204 -k1,18920:19935593,39919235:262203 -k1,18920:20849225,39919235:262204 -k1,18920:23908505,39919235:262203 -k1,18920:25778306,39919235:262203 -k1,18920:27434461,39919235:262204 -k1,18920:30687072,39919235:262203 -k1,18920:32583029,39919235:0 -) -(1,18921:6630773,40760723:25952256,513147,7863 -g1,18920:8397623,40760723 -g1,18920:8952712,40760723 -g1,18920:11139648,40760723 -k1,18921:32583029,40760723:20582238 -g1,18921:32583029,40760723 -) -v1,18923:6630773,41883049:0,393216,0 -(1,18939:6630773,45510161:25952256,4020328,196608 -g1,18939:6630773,45510161 -g1,18939:6630773,45510161 -g1,18939:6434165,45510161 -(1,18939:6434165,45510161:0,4020328,196608 -r1,18939:32779637,45510161:26345472,4216936,196608 -k1,18939:6434165,45510161:-26345472 -) -(1,18939:6434165,45510161:26345472,4020328,196608 -[1,18939:6630773,45510161:25952256,3823720,0 -(1,18925:6630773,42096959:25952256,410518,101187 -(1,18924:6630773,42096959:0,0,0 -g1,18924:6630773,42096959 -g1,18924:6630773,42096959 -g1,18924:6303093,42096959 -(1,18924:6303093,42096959:0,0,0 -) -g1,18924:6630773,42096959 -) -g1,18925:10108376,42096959 -g1,18925:11056814,42096959 -g1,18925:11689106,42096959 -g1,18925:12321398,42096959 -g1,18925:14850564,42096959 -h1,18925:15482856,42096959:0,0,0 -k1,18925:32583028,42096959:17100172 -g1,18925:32583028,42096959 -) -(1,18926:6630773,42763137:25952256,410518,107478 -h1,18926:6630773,42763137:0,0,0 -g1,18926:10424522,42763137 -g1,18926:11056814,42763137 -g1,18926:13585980,42763137 -g1,18926:15482855,42763137 -g1,18926:16115147,42763137 -g1,18926:18012022,42763137 -g1,18926:18644314,42763137 -g1,18926:19276606,42763137 -g1,18926:20857335,42763137 -g1,18926:22754209,42763137 -g1,18926:23386501,42763137 -g1,18926:27812541,42763137 -h1,18926:28128687,42763137:0,0,0 -k1,18926:32583029,42763137:4454342 -g1,18926:32583029,42763137 -) -(1,18927:6630773,43429315:25952256,410518,101187 -h1,18927:6630773,43429315:0,0,0 -g1,18927:6946919,43429315 -g1,18927:7263065,43429315 -g1,18927:14534417,43429315 -g1,18927:15166709,43429315 -g1,18927:18960458,43429315 -g1,18927:20857332,43429315 -g1,18927:21489624,43429315 -g1,18927:24334936,43429315 -h1,18927:24651082,43429315:0,0,0 -k1,18927:32583029,43429315:7931947 -g1,18927:32583029,43429315 -) -(1,18928:6630773,44095493:25952256,410518,107478 -h1,18928:6630773,44095493:0,0,0 -g1,18928:6946919,44095493 -g1,18928:7263065,44095493 -g1,18928:14850561,44095493 -g1,18928:15482853,44095493 -g1,18928:19592748,44095493 -g1,18928:20225040,44095493 -k1,18928:20225040,44095493:0 -h1,18928:24018788,44095493:0,0,0 -k1,18928:32583029,44095493:8564241 -g1,18928:32583029,44095493 -) -(1,18929:6630773,44761671:25952256,404226,82312 -h1,18929:6630773,44761671:0,0,0 -g1,18929:6946919,44761671 -g1,18929:7263065,44761671 -g1,18929:7579211,44761671 -g1,18929:7895357,44761671 -g1,18929:8211503,44761671 -g1,18929:8527649,44761671 -g1,18929:8843795,44761671 -g1,18929:9159941,44761671 -g1,18929:9476087,44761671 -g1,18929:9792233,44761671 -g1,18929:10108379,44761671 -g1,18929:10424525,44761671 -g1,18929:10740671,44761671 -g1,18929:11056817,44761671 -g1,18929:12953691,44761671 -g1,18929:13585983,44761671 -k1,18929:13585983,44761671:0 -h1,18929:16115149,44761671:0,0,0 -k1,18929:32583029,44761671:16467880 -g1,18929:32583029,44761671 -) -(1,18930:6630773,45427849:25952256,404226,82312 -h1,18930:6630773,45427849:0,0,0 -g1,18930:6946919,45427849 -g1,18930:7263065,45427849 -g1,18930:7579211,45427849 -g1,18930:7895357,45427849 -g1,18930:8211503,45427849 -g1,18930:8527649,45427849 -g1,18930:8843795,45427849 -g1,18930:9159941,45427849 -g1,18930:9476087,45427849 -g1,18930:9792233,45427849 -g1,18930:10108379,45427849 -g1,18930:10424525,45427849 -g1,18930:10740671,45427849 -g1,18930:11056817,45427849 -g1,18930:13585983,45427849 -g1,18930:14218275,45427849 -g1,18930:18012024,45427849 -g1,18930:18644316,45427849 -k1,18930:18644316,45427849:0 -h1,18930:20857336,45427849:0,0,0 -k1,18930:32583029,45427849:11725693 -g1,18930:32583029,45427849 -) -] -) -g1,18939:32583029,45510161 -g1,18939:6630773,45510161 -g1,18939:6630773,45510161 -g1,18939:32583029,45510161 -g1,18939:32583029,45510161 -) -] -(1,18939:32583029,45706769:0,0,0 -g1,18939:32583029,45706769 -) -) -] -(1,18939:6630773,47279633:25952256,0,0 -h1,18939:6630773,47279633:25952256,0,0 -) -] -(1,18939:4262630,4025873:0,0,0 -[1,18939:-473656,4025873:0,0,0 -(1,18939:-473656,-710413:0,0,0 -(1,18939:-473656,-710413:0,0,0 -g1,18939:-473656,-710413 -) -g1,18939:-473656,-710413 -) -] -) -] -!25546 -}335 -Input:2976:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2977:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2978:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2979:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2980:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2981:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2982:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2983:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!764 -{336 -[1,18971:4262630,47279633:28320399,43253760,0 -(1,18971:4262630,4025873:0,0,0 -[1,18971:-473656,4025873:0,0,0 -(1,18971:-473656,-710413:0,0,0 -(1,18971:-473656,-644877:0,0,0 -k1,18971:-473656,-644877:-65536 -) -(1,18971:-473656,4736287:0,0,0 -k1,18971:-473656,4736287:5209943 +[1,18871:6630773,45706769:25952256,40108032,0 +(1,18871:6630773,45706769:25952256,40108032,0 +(1,18871:6630773,45706769:0,0,0 +g1,18871:6630773,45706769 ) -g1,18971:-473656,-710413 +[1,18871:6630773,45706769:25952256,40108032,0 +(1,18808:6630773,14682403:25952256,9083666,0 +k1,18808:10523651,14682403:3892878 +h1,18807:10523651,14682403:0,0,0 +(1,18807:10523651,14682403:18166500,9083666,0 +(1,18807:10523651,14682403:18167376,9083688,0 +(1,18807:10523651,14682403:18167376,9083688,0 +(1,18807:10523651,14682403:0,9083688,0 +(1,18807:10523651,14682403:0,14208860,0 +(1,18807:10523651,14682403:28417720,14208860,0 ) -] -) -[1,18971:6630773,47279633:25952256,43253760,0 -[1,18971:6630773,4812305:25952256,786432,0 -(1,18971:6630773,4812305:25952256,485622,11795 -(1,18971:6630773,4812305:25952256,485622,11795 -g1,18971:3078558,4812305 -[1,18971:3078558,4812305:0,0,0 -(1,18971:3078558,2439708:0,1703936,0 -k1,18971:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,18971:2537886,2439708:1179648,16384,0 +k1,18807:10523651,14682403:-28417720 +) +) +g1,18807:28691027,14682403 +) +) +) +g1,18808:28690151,14682403 +k1,18808:32583029,14682403:3892878 +) +(1,18815:6630773,15547483:25952256,505283,134348 +h1,18814:6630773,15547483:983040,0,0 +k1,18814:9645663,15547483:240096 +k1,18814:10241618,15547483:240095 +k1,18814:11475240,15547483:240096 +k1,18814:12583688,15547483:240096 +k1,18814:13928066,15547483:240096 +k1,18814:15634857,15547483:240095 +k1,18814:17312158,15547483:240096 +k1,18814:18313782,15547483:240096 +k1,18814:20291892,15547483:240095 +k1,18814:23758981,15547483:240096 +k1,18814:27401706,15547483:240096 +k1,18814:28293230,15547483:240096 +k1,18814:29625810,15547483:240095 +k1,18814:31563944,15547483:240096 +k1,18814:32583029,15547483:0 +) +(1,18815:6630773,16412563:25952256,513147,7863 +g1,18814:9525498,16412563 +g1,18814:10256224,16412563 +k1,18815:32583030,16412563:20285360 +g1,18815:32583030,16412563 +) +v1,18817:6630773,17097418:0,393216,0 +(1,18822:6630773,18129562:25952256,1425360,196608 +g1,18822:6630773,18129562 +g1,18822:6630773,18129562 +g1,18822:6434165,18129562 +(1,18822:6434165,18129562:0,1425360,196608 +r1,18871:32779637,18129562:26345472,1621968,196608 +k1,18822:6434165,18129562:-26345472 +) +(1,18822:6434165,18129562:26345472,1425360,196608 +[1,18822:6630773,18129562:25952256,1228752,0 +(1,18819:6630773,17331855:25952256,431045,112852 +(1,18818:6630773,17331855:0,0,0 +g1,18818:6630773,17331855 +g1,18818:6630773,17331855 +g1,18818:6303093,17331855 +(1,18818:6303093,17331855:0,0,0 +) +g1,18818:6630773,17331855 +) +k1,18819:6630773,17331855:0 +g1,18819:13269852,17331855 +g1,18819:13933760,17331855 +g1,18819:16257438,17331855 +g1,18819:18249162,17331855 +g1,18819:18913070,17331855 +g1,18819:20240886,17331855 +h1,18819:20572840,17331855:0,0,0 +k1,18819:32583029,17331855:12010189 +g1,18819:32583029,17331855 +) +(1,18820:6630773,18016710:25952256,431045,112852 +h1,18820:6630773,18016710:0,0,0 +g1,18820:6962727,18016710 +g1,18820:7294681,18016710 +g1,18820:13269852,18016710 +g1,18820:13933760,18016710 +g1,18820:16257438,18016710 +g1,18820:17917208,18016710 +g1,18820:18581116,18016710 +g1,18820:21900656,18016710 +g1,18820:22564564,18016710 +g1,18820:23560426,18016710 +g1,18820:24556288,18016710 +g1,18820:25220196,18016710 +h1,18820:26548012,18016710:0,0,0 +k1,18820:32583029,18016710:6035017 +g1,18820:32583029,18016710 +) +] +) +g1,18822:32583029,18129562 +g1,18822:6630773,18129562 +g1,18822:6630773,18129562 +g1,18822:32583029,18129562 +g1,18822:32583029,18129562 +) +h1,18822:6630773,18326170:0,0,0 +v1,18826:6630773,19191250:0,393216,0 +(1,18827:6630773,20444654:25952256,1646620,0 +g1,18827:6630773,20444654 +g1,18827:6237557,20444654 +r1,18871:6368629,20444654:131072,1646620,0 +g1,18827:6567858,20444654 +g1,18827:6764466,20444654 +[1,18827:6764466,20444654:25818563,1646620,0 +(1,18827:6764466,19463727:25818563,665693,196608 +(1,18826:6764466,19463727:0,665693,196608 +r1,18871:8010564,19463727:1246098,862301,196608 +k1,18826:6764466,19463727:-1246098 +) +(1,18826:6764466,19463727:1246098,665693,196608 +) +k1,18826:8209645,19463727:199081 +k1,18826:9935863,19463727:327680 +k1,18826:11384716,19463727:199081 +k1,18826:12602882,19463727:199081 +k1,18826:14298151,19463727:199082 +k1,18826:16352556,19463727:199081 +k1,18826:17276465,19463727:199081 +k1,18826:18161708,19463727:199081 +k1,18826:19012217,19463727:199081 +k1,18826:20488595,19463727:199081 +k1,18826:21303714,19463727:199081 +k1,18826:22521880,19463727:199081 +k1,18826:24374435,19463727:199082 +k1,18826:26428840,19463727:199081 +k1,18826:28282705,19463727:199081 +k1,18826:30727049,19463727:199081 +k1,18826:32583029,19463727:0 +) +(1,18827:6764466,20328807:25818563,513147,115847 +g1,18826:7911346,20328807 +g1,18826:9765359,20328807 +g1,18826:12726931,20328807 +g1,18826:14936805,20328807 +g1,18826:16083685,20328807 +(1,18826:16083685,20328807:0,414482,115847 +r1,18871:17497086,20328807:1413401,530329,115847 +k1,18826:16083685,20328807:-1413401 +) +(1,18826:16083685,20328807:1413401,414482,115847 +k1,18826:16083685,20328807:3277 +h1,18826:17493809,20328807:0,411205,112570 +) +g1,18826:17696315,20328807 +g1,18826:18578429,20328807 +g1,18826:19725309,20328807 +g1,18826:21579322,20328807 +g1,18826:24540894,20328807 +g1,18826:26750768,20328807 +g1,18826:27897648,20328807 +(1,18826:27897648,20328807:0,452978,115847 +r1,18871:28607626,20328807:709978,568825,115847 +k1,18826:27897648,20328807:-709978 +) +(1,18826:27897648,20328807:709978,452978,115847 +k1,18826:27897648,20328807:3277 +h1,18826:28604349,20328807:0,411205,112570 +) +k1,18827:32583029,20328807:3801733 +g1,18827:32583029,20328807 +) +] +g1,18827:32583029,20444654 +) +h1,18827:6630773,20444654:0,0,0 +(1,18830:6630773,21309734:25952256,513147,126483 +h1,18829:6630773,21309734:983040,0,0 +k1,18829:10075099,21309734:225198 +k1,18829:14275711,21309734:225198 +k1,18829:17526706,21309734:225198 +k1,18829:19025269,21309734:225198 +k1,18829:21706756,21309734:225198 +k1,18829:23123399,21309734:225198 +k1,18829:27049415,21309734:225198 +k1,18829:30300410,21309734:225198 +k1,18829:32583029,21309734:0 +) +(1,18830:6630773,22174814:25952256,505283,7863 +g1,18829:7934284,22174814 +g1,18829:9419329,22174814 +g1,18829:10366324,22174814 +k1,18830:32583029,22174814:20529808 +g1,18830:32583029,22174814 +) +v1,18832:6630773,22859669:0,393216,0 +(1,18838:6630773,24576668:25952256,2110215,196608 +g1,18838:6630773,24576668 +g1,18838:6630773,24576668 +g1,18838:6434165,24576668 +(1,18838:6434165,24576668:0,2110215,196608 +r1,18871:32779637,24576668:26345472,2306823,196608 +k1,18838:6434165,24576668:-26345472 +) +(1,18838:6434165,24576668:26345472,2110215,196608 +[1,18838:6630773,24576668:25952256,1913607,0 +(1,18834:6630773,23094106:25952256,431045,112852 +(1,18833:6630773,23094106:0,0,0 +g1,18833:6630773,23094106 +g1,18833:6630773,23094106 +g1,18833:6303093,23094106 +(1,18833:6303093,23094106:0,0,0 +) +g1,18833:6630773,23094106 +) +k1,18834:6630773,23094106:0 +g1,18834:13269852,23094106 +g1,18834:13933760,23094106 +g1,18834:15925484,23094106 +g1,18834:17917208,23094106 +g1,18834:18581116,23094106 +g1,18834:19908932,23094106 +h1,18834:20240886,23094106:0,0,0 +k1,18834:32583029,23094106:12342143 +g1,18834:32583029,23094106 +) +(1,18835:6630773,23778961:25952256,431045,86428 +h1,18835:6630773,23778961:0,0,0 +g1,18835:6962727,23778961 +g1,18835:7294681,23778961 +g1,18835:13269852,23778961 +g1,18835:13933760,23778961 +g1,18835:17917207,23778961 +g1,18835:18913069,23778961 +g1,18835:20572839,23778961 +g1,18835:21236747,23778961 +g1,18835:21900655,23778961 +g1,18835:22564563,23778961 +k1,18835:22564563,23778961:0 +h1,18835:24224333,23778961:0,0,0 +k1,18835:32583029,23778961:8358696 +g1,18835:32583029,23778961 +) +(1,18836:6630773,24463816:25952256,424439,112852 +h1,18836:6630773,24463816:0,0,0 +g1,18836:6962727,24463816 +g1,18836:7294681,24463816 +g1,18836:7626635,24463816 +g1,18836:7958589,24463816 +g1,18836:8290543,24463816 +g1,18836:8622497,24463816 +g1,18836:8954451,24463816 +g1,18836:9286405,24463816 +g1,18836:9618359,24463816 +g1,18836:9950313,24463816 +g1,18836:10282267,24463816 +g1,18836:10614221,24463816 +g1,18836:10946175,24463816 +g1,18836:11278129,24463816 +g1,18836:11610083,24463816 +g1,18836:11942037,24463816 +g1,18836:13601807,24463816 +g1,18836:14265715,24463816 +g1,18836:16589393,24463816 +g1,18836:17253301,24463816 +g1,18836:18249163,24463816 +g1,18836:18913071,24463816 +g1,18836:19576979,24463816 +h1,18836:21236749,24463816:0,0,0 +k1,18836:32583029,24463816:11346280 +g1,18836:32583029,24463816 +) +] +) +g1,18838:32583029,24576668 +g1,18838:6630773,24576668 +g1,18838:6630773,24576668 +g1,18838:32583029,24576668 +g1,18838:32583029,24576668 +) +h1,18838:6630773,24773276:0,0,0 +v1,18842:6630773,25638356:0,393216,0 +(1,18843:6630773,28513936:25952256,3268796,0 +g1,18843:6630773,28513936 +g1,18843:6237557,28513936 +r1,18871:6368629,28513936:131072,3268796,0 +g1,18843:6567858,28513936 +g1,18843:6764466,28513936 +[1,18843:6764466,28513936:25818563,3268796,0 +(1,18843:6764466,25910833:25818563,665693,196608 +(1,18842:6764466,25910833:0,665693,196608 +r1,18871:8010564,25910833:1246098,862301,196608 +k1,18842:6764466,25910833:-1246098 +) +(1,18842:6764466,25910833:1246098,665693,196608 +) +k1,18842:8219362,25910833:208798 +k1,18842:9945580,25910833:327680 +k1,18842:11404150,25910833:208798 +k1,18842:12632033,25910833:208798 +k1,18842:14337017,25910833:208797 +k1,18842:16401139,25910833:208798 +k1,18842:17261365,25910833:208798 +k1,18842:18562648,25910833:208798 +k1,18842:19127306,25910833:208798 +k1,18842:22098447,25910833:208798 +k1,18842:25176410,25910833:208797 +k1,18842:26878774,25910833:208798 +k1,18842:27773734,25910833:208798 +$1,18842:27773734,25910833 +(1,18842:28133527,25635552:1071383,353698,7340 +) +$1,18842:29204910,25910833 +k1,18842:29587378,25910833:208798 +k1,18842:32583029,25910833:0 +) +(1,18843:6764466,26775913:25818563,513147,134348 +k1,18842:7986348,26775913:202797 +k1,18842:12005962,26775913:202797 +k1,18842:14414046,26775913:202797 +k1,18842:17175368,26775913:202796 +(1,18842:17175368,26775913:0,414482,122846 +r1,18871:18588769,26775913:1413401,537328,122846 +k1,18842:17175368,26775913:-1413401 +) +(1,18842:17175368,26775913:1413401,414482,122846 +k1,18842:17175368,26775913:3277 +h1,18842:18585492,26775913:0,411205,112570 +) +k1,18842:18791566,26775913:202797 +k1,18842:22851157,26775913:202797 +k1,18842:23951797,26775913:202797 +k1,18842:25357835,26775913:202797 +k1,18842:26322159,26775913:202796 +k1,18842:28593272,26775913:202797 +k1,18842:29455361,26775913:202797 +k1,18842:30428861,26775913:202797 +k1,18843:32583029,26775913:0 +) +(1,18843:6764466,27640993:25818563,513147,126483 +k1,18842:8772216,27640993:248108 +k1,18842:11889491,27640993:248109 +k1,18842:13329044,27640993:248108 +k1,18842:14338681,27640993:248109 +k1,18842:16655105,27640993:248108 +k1,18842:17562506,27640993:248109 +k1,18842:18581317,27640993:248108 +k1,18842:22134406,27640993:248108 +k1,18842:24541271,27640993:248109 +k1,18842:27484875,27640993:248108 +k1,18842:30114562,27640993:248109 +k1,18842:31124198,27640993:248108 +k1,18842:32583029,27640993:0 +) +(1,18843:6764466,28506073:25818563,505283,7863 +k1,18843:32583029,28506073:24148706 +g1,18843:32583029,28506073 +) +] +g1,18843:32583029,28513936 +) +h1,18843:6630773,28513936:0,0,0 +(1,18848:6630773,30630754:25952256,555811,12975 +(1,18848:6630773,30630754:2450326,534184,12975 +g1,18848:6630773,30630754 +g1,18848:9081099,30630754 +) +k1,18848:32583029,30630754:19484376 +g1,18848:32583029,30630754 +) +(1,18853:6630773,31889050:25952256,505283,126483 +k1,18852:8034663,31889050:207203 +k1,18852:11750008,31889050:207203 +k1,18852:15086555,31889050:207203 +k1,18852:15909796,31889050:207203 +k1,18852:17320240,31889050:207203 +k1,18852:19806130,31889050:207203 +k1,18852:21117614,31889050:207202 +k1,18852:22072583,31889050:207203 +k1,18852:26816188,31889050:207203 +k1,18852:27832761,31889050:207203 +k1,18852:29205194,31889050:207203 +k1,18852:30801760,31889050:207203 +k1,18852:32583029,31889050:0 +) +(1,18853:6630773,32754130:25952256,513147,126483 +k1,18852:7457603,32754130:143945 +k1,18852:9903828,32754130:143945 +k1,18852:10857143,32754130:143945 +k1,18852:12509727,32754130:143945 +k1,18852:14157723,32754130:143945 +k1,18852:16734364,32754130:143945 +k1,18852:18162815,32754130:143945 +k1,18852:18772721,32754130:143945 +k1,18852:20488875,32754130:143945 +k1,18852:22447512,32754130:143945 +k1,18852:23583017,32754130:143945 +k1,18852:26659698,32754130:143945 +k1,18852:27911857,32754130:143945 +k1,18852:29074887,32754130:143945 +k1,18852:32583029,32754130:0 +) +(1,18853:6630773,33619210:25952256,513147,11795 +k1,18852:7958095,33619210:194860 +k1,18852:8900722,33619210:194861 +k1,18852:12324541,33619210:194860 +k1,18852:14087022,33619210:194860 +k1,18852:15300968,33619210:194861 +k1,18852:17575941,33619210:194860 +k1,18852:18430093,33619210:194860 +k1,18852:22696706,33619210:194861 +k1,18852:24901555,33619210:194860 +k1,18852:26793142,33619210:194860 +k1,18852:28976365,33619210:194861 +k1,18852:30768337,33619210:194860 +k1,18852:32583029,33619210:0 +) +(1,18853:6630773,34484290:25952256,513147,134348 +k1,18852:7895430,34484290:160375 +k1,18852:8803571,34484290:160375 +k1,18852:11185617,34484290:160375 +k1,18852:13044030,34484290:160375 +k1,18852:16101752,34484290:160375 +k1,18852:18865872,34484290:160375 +k1,18852:19382107,34484290:160375 +k1,18852:21114691,34484290:160375 +k1,18852:21957951,34484290:160375 +k1,18852:22879854,34484290:160375 +k1,18852:25108545,34484290:160375 +k1,18852:25928212,34484290:160375 +k1,18852:29114384,34484290:160375 +(1,18852:29114384,34484290:0,452978,115847 +r1,18871:31231209,34484290:2116825,568825,115847 +k1,18852:29114384,34484290:-2116825 +) +(1,18852:29114384,34484290:2116825,452978,115847 +k1,18852:29114384,34484290:3277 +h1,18852:31227932,34484290:0,411205,112570 +) +k1,18852:31391584,34484290:160375 +k1,18853:32583029,34484290:0 +) +(1,18853:6630773,35349370:25952256,513147,134348 +(1,18852:6630773,35349370:0,452978,115847 +r1,18871:8747598,35349370:2116825,568825,115847 +k1,18852:6630773,35349370:-2116825 +) +(1,18852:6630773,35349370:2116825,452978,115847 +k1,18852:6630773,35349370:3277 +h1,18852:8744321,35349370:0,411205,112570 +) +k1,18852:9136528,35349370:215260 +k1,18852:10401674,35349370:215259 +k1,18852:12895621,35349370:215260 +h1,18852:14264668,35349370:0,0,0 +k1,18852:14479927,35349370:215259 +k1,18852:15504557,35349370:215260 +k1,18852:17217969,35349370:215259 +h1,18852:18413346,35349370:0,0,0 +k1,18852:18628606,35349370:215260 +k1,18852:19791516,35349370:215259 +k1,18852:20777479,35349370:215260 +k1,18852:24725013,35349370:215259 +k1,18852:25599565,35349370:215260 +k1,18852:27145205,35349370:215259 +k1,18852:30768337,35349370:215260 +k1,18852:32583029,35349370:0 +) +(1,18853:6630773,36214450:25952256,513147,138281 +k1,18852:7997322,36214450:262267 +k1,18852:9007355,36214450:262267 +k1,18852:10782847,36214450:262266 +k1,18852:11696542,36214450:262267 +k1,18852:13757772,36214450:262267 +k1,18852:15287505,36214450:262267 +k1,18852:15905632,36214450:262267 +k1,18852:17445195,36214450:262266 +k1,18852:20167684,36214450:262267 +k1,18852:23506866,36214450:262267 +k1,18852:24428425,36214450:262267 +$1,18852:24428425,36214450 +$1,18852:24931086,36214450 +k1,18852:25193353,36214450:262267 +k1,18852:26647065,36214450:262267 +$1,18852:26647065,36214450 +$1,18852:27198878,36214450 +k1,18852:27461144,36214450:262266 +k1,18852:29734056,36214450:262267 +k1,18852:31563944,36214450:262267 +k1,18852:32583029,36214450:0 +) +(1,18853:6630773,37079530:25952256,505283,7863 +k1,18853:32583029,37079530:24389222 +g1,18853:32583029,37079530 +) +(1,18855:6630773,37944610:25952256,513147,134348 +h1,18854:6630773,37944610:983040,0,0 +k1,18854:8330215,37944610:246509 +k1,18854:9108221,37944610:246509 +k1,18854:11984690,37944610:246509 +k1,18854:12882627,37944610:246509 +k1,18854:16696916,37944610:246509 +k1,18854:18332788,37944610:246509 +k1,18854:19388667,37944610:246509 +k1,18854:20654260,37944610:246508 +k1,18854:21696376,37944610:246509 +k1,18854:23640923,37944610:246509 +k1,18854:26585549,37944610:246509 +k1,18854:27785607,37944610:246509 +k1,18854:30701397,37944610:246509 +k1,18854:31563944,37944610:246509 +k1,18854:32583029,37944610:0 +) +(1,18855:6630773,38809690:25952256,513147,126483 +k1,18854:8496036,38809690:211790 +k1,18854:10986514,38809690:211791 +k1,18854:12217389,38809690:211790 +k1,18854:15900622,38809690:211791 +k1,18854:16771704,38809690:211790 +k1,18854:20017812,38809690:211791 +k1,18854:20888894,38809690:211790 +k1,18854:23302694,38809690:211790 +k1,18854:26411176,38809690:211791 +k1,18854:27814411,38809690:211790 +k1,18854:28685494,38809690:211791 +k1,18854:31896867,38809690:211790 +k1,18855:32583029,38809690:0 +) +(1,18855:6630773,39674770:25952256,505283,134348 +(1,18854:6630773,39674770:0,452978,115847 +r1,18871:11561293,39674770:4930520,568825,115847 +k1,18854:6630773,39674770:-4930520 +) +(1,18854:6630773,39674770:4930520,452978,115847 +k1,18854:6630773,39674770:3277 +h1,18854:11558016,39674770:0,411205,112570 +) +k1,18854:11789403,39674770:228110 +k1,18854:14029469,39674770:228111 +k1,18854:15896634,39674770:228110 +k1,18854:16776173,39674770:228111 +k1,18854:17752049,39674770:228110 +k1,18854:21209119,39674770:228111 +k1,18854:26289515,39674770:228110 +k1,18854:27709071,39674770:228111 +k1,18854:29902606,39674770:228110 +k1,18854:32583029,39674770:0 +) +(1,18855:6630773,40539850:25952256,505283,134348 +g1,18854:8223953,40539850 +g1,18854:8779042,40539850 +g1,18854:10851290,40539850 +k1,18855:32583029,40539850:20000278 +g1,18855:32583029,40539850 +) +(1,18857:6630773,41404930:25952256,513147,134348 +h1,18856:6630773,41404930:983040,0,0 +k1,18856:8852741,41404930:196906 +k1,18856:10142132,41404930:196906 +k1,18856:10955075,41404930:196905 +k1,18856:12171066,41404930:196906 +k1,18856:15533361,41404930:196906 +k1,18856:16598619,41404930:196906 +k1,18856:19527721,41404930:196906 +k1,18856:21416767,41404930:196906 +k1,18856:24458590,41404930:196905 +k1,18856:28194440,41404930:196906 +k1,18856:31019995,41404930:196906 +k1,18857:32583029,41404930:0 +k1,18857:32583029,41404930:0 +) +v1,18859:6630773,42089785:0,393216,0 +(1,18867:6630773,45143464:25952256,3446895,196608 +g1,18867:6630773,45143464 +g1,18867:6630773,45143464 +g1,18867:6434165,45143464 +(1,18867:6434165,45143464:0,3446895,196608 +r1,18871:32779637,45143464:26345472,3643503,196608 +k1,18867:6434165,45143464:-26345472 +) +(1,18867:6434165,45143464:26345472,3446895,196608 +[1,18867:6630773,45143464:25952256,3250287,0 +(1,18861:6630773,42324222:25952256,431045,79822 +(1,18860:6630773,42324222:0,0,0 +g1,18860:6630773,42324222 +g1,18860:6630773,42324222 +g1,18860:6303093,42324222 +(1,18860:6303093,42324222:0,0,0 +) +g1,18860:6630773,42324222 +) +g1,18861:9950312,42324222 +g1,18861:10946174,42324222 +k1,18861:10946174,42324222:0 +h1,18861:14597667,42324222:0,0,0 +k1,18861:32583029,42324222:17985362 +g1,18861:32583029,42324222 +) +(1,18862:6630773,43009077:25952256,424439,106246 +h1,18862:6630773,43009077:0,0,0 +g1,18862:6962727,43009077 +g1,18862:7294681,43009077 +g1,18862:7958589,43009077 +g1,18862:8622497,43009077 +g1,18862:12605945,43009077 +g1,18862:14265715,43009077 +g1,18862:14929623,43009077 +g1,18862:15925485,43009077 +g1,18862:16921347,43009077 +g1,18862:17585255,43009077 +k1,18862:17585255,43009077:0 +h1,18862:19245025,43009077:0,0,0 +k1,18862:32583029,43009077:13338004 +g1,18862:32583029,43009077 +) +(1,18863:6630773,43693932:25952256,424439,86428 +h1,18863:6630773,43693932:0,0,0 +g1,18863:6962727,43693932 +g1,18863:7294681,43693932 +g1,18863:7626635,43693932 +g1,18863:7958589,43693932 +g1,18863:8290543,43693932 +g1,18863:8622497,43693932 +g1,18863:8954451,43693932 +g1,18863:9286405,43693932 +g1,18863:12605945,43693932 +g1,18863:14265715,43693932 +g1,18863:14929623,43693932 +g1,18863:15925485,43693932 +g1,18863:16921347,43693932 +g1,18863:17585255,43693932 +k1,18863:17585255,43693932:0 +h1,18863:19576979,43693932:0,0,0 +k1,18863:32583029,43693932:13006050 +g1,18863:32583029,43693932 +) +(1,18864:6630773,44378787:25952256,431045,112852 +h1,18864:6630773,44378787:0,0,0 +g1,18864:6962727,44378787 +g1,18864:7294681,44378787 +g1,18864:9286405,44378787 +g1,18864:9950313,44378787 +g1,18864:15925485,44378787 +g1,18864:17585255,44378787 +g1,18864:20572841,44378787 +h1,18864:22232611,44378787:0,0,0 +k1,18864:32583029,44378787:10350418 +g1,18864:32583029,44378787 +) +(1,18865:6630773,45063642:25952256,424439,79822 +h1,18865:6630773,45063642:0,0,0 +g1,18865:6962727,45063642 +g1,18865:7294681,45063642 +h1,18865:7626635,45063642:0,0,0 +k1,18865:32583029,45063642:24956394 +g1,18865:32583029,45063642 +) +] +) +g1,18867:32583029,45143464 +g1,18867:6630773,45143464 +g1,18867:6630773,45143464 +g1,18867:32583029,45143464 +g1,18867:32583029,45143464 +) +h1,18867:6630773,45340072:0,0,0 +] +(1,18871:32583029,45706769:0,0,0 +g1,18871:32583029,45706769 +) +) +] +(1,18871:6630773,47279633:25952256,0,0 +h1,18871:6630773,47279633:25952256,0,0 +) +] +(1,18871:4262630,4025873:0,0,0 +[1,18871:-473656,4025873:0,0,0 +(1,18871:-473656,-710413:0,0,0 +(1,18871:-473656,-710413:0,0,0 +g1,18871:-473656,-710413 +) +g1,18871:-473656,-710413 +) +] +) +] +!23171 +}315 +Input:2954:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2955:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2956:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2957:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2958:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2959:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2960:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2961:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2962:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2963:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!952 +{316 +[1,18924:4262630,47279633:28320399,43253760,0 +(1,18924:4262630,4025873:0,0,0 +[1,18924:-473656,4025873:0,0,0 +(1,18924:-473656,-710413:0,0,0 +(1,18924:-473656,-644877:0,0,0 +k1,18924:-473656,-644877:-65536 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,18971:3078558,1915420:16384,1179648,0 +(1,18924:-473656,4736287:0,0,0 +k1,18924:-473656,4736287:5209943 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +g1,18924:-473656,-710413 ) ] ) +[1,18924:6630773,47279633:25952256,43253760,0 +[1,18924:6630773,4812305:25952256,786432,0 +(1,18924:6630773,4812305:25952256,485622,11795 +(1,18924:6630773,4812305:25952256,485622,11795 +g1,18924:3078558,4812305 +[1,18924:3078558,4812305:0,0,0 +(1,18924:3078558,2439708:0,1703936,0 +k1,18924:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,18924:2537886,2439708:1179648,16384,0 ) +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,18924:3078558,1915420:16384,1179648,0 ) -] -[1,18971:3078558,4812305:0,0,0 -(1,18971:3078558,2439708:0,1703936,0 -g1,18971:29030814,2439708 -g1,18971:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,18971:36151628,1915420:16384,1179648,0 -) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,18971:37855564,2439708:1179648,16384,0 -) -) -k1,18971:3078556,2439708:-34777008 -) -] -[1,18971:3078558,4812305:0,0,0 -(1,18971:3078558,49800853:0,16384,2228224 -k1,18971:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,18971:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,18971:3078558,51504789:16384,1179648,0 -) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 -) -] -) -) -) -] -[1,18971:3078558,4812305:0,0,0 -(1,18971:3078558,49800853:0,16384,2228224 -g1,18971:29030814,49800853 -g1,18971:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,18971:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] -) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,18971:37855564,49800853:1179648,16384,0 -) -) -k1,18971:3078556,49800853:-34777008 -) -] -g1,18971:6630773,4812305 -g1,18971:6630773,4812305 -g1,18971:9560887,4812305 -k1,18971:31387651,4812305:21826764 -) -) -] -[1,18971:6630773,45706769:25952256,40108032,0 -(1,18971:6630773,45706769:25952256,40108032,0 -(1,18971:6630773,45706769:0,0,0 -g1,18971:6630773,45706769 -) -[1,18971:6630773,45706769:25952256,40108032,0 -v1,18939:6630773,6254097:0,393216,0 -(1,18939:6630773,10566261:25952256,4705380,196608 -g1,18939:6630773,10566261 -g1,18939:6630773,10566261 -g1,18939:6434165,10566261 -(1,18939:6434165,10566261:0,4705380,196608 -r1,18971:32779637,10566261:26345472,4901988,196608 -k1,18939:6434165,10566261:-26345472 -) -(1,18939:6434165,10566261:26345472,4705380,196608 -[1,18939:6630773,10566261:25952256,4508772,0 -(1,18931:6630773,6461715:25952256,404226,82312 -h1,18931:6630773,6461715:0,0,0 -g1,18931:6946919,6461715 -g1,18931:7263065,6461715 -g1,18931:7579211,6461715 -g1,18931:7895357,6461715 -g1,18931:8211503,6461715 -g1,18931:8527649,6461715 -g1,18931:8843795,6461715 -g1,18931:9159941,6461715 -g1,18931:9476087,6461715 -g1,18931:9792233,6461715 -g1,18931:10108379,6461715 -g1,18931:10424525,6461715 -g1,18931:10740671,6461715 -g1,18931:11056817,6461715 -g1,18931:11372963,6461715 -g1,18931:11689109,6461715 -g1,18931:12005255,6461715 -g1,18931:12321401,6461715 -g1,18931:12637547,6461715 -g1,18931:12953693,6461715 -g1,18931:13269839,6461715 -g1,18931:13585985,6461715 -g1,18931:13902131,6461715 -g1,18931:14218277,6461715 -g1,18931:14534423,6461715 -g1,18931:14850569,6461715 -g1,18931:17695880,6461715 -g1,18931:18328172,6461715 -k1,18931:18328172,6461715:0 -h1,18931:21805775,6461715:0,0,0 -k1,18931:32583029,6461715:10777254 -g1,18931:32583029,6461715 -) -(1,18932:6630773,7127893:25952256,404226,82312 -h1,18932:6630773,7127893:0,0,0 -g1,18932:6946919,7127893 -g1,18932:7263065,7127893 -g1,18932:7579211,7127893 -g1,18932:7895357,7127893 -g1,18932:8211503,7127893 -g1,18932:8527649,7127893 -g1,18932:8843795,7127893 -g1,18932:9159941,7127893 -g1,18932:9476087,7127893 -g1,18932:9792233,7127893 -g1,18932:10108379,7127893 -g1,18932:10424525,7127893 -g1,18932:10740671,7127893 -g1,18932:11056817,7127893 -g1,18932:11372963,7127893 -g1,18932:11689109,7127893 -g1,18932:12005255,7127893 -g1,18932:12321401,7127893 -g1,18932:12637547,7127893 -g1,18932:12953693,7127893 -g1,18932:13269839,7127893 -g1,18932:13585985,7127893 -g1,18932:13902131,7127893 -g1,18932:14218277,7127893 -g1,18932:14534423,7127893 -g1,18932:14850569,7127893 -g1,18932:17063589,7127893 -g1,18932:17695881,7127893 -k1,18932:17695881,7127893:0 -h1,18932:21489629,7127893:0,0,0 -k1,18932:32583029,7127893:11093400 -g1,18932:32583029,7127893 -) -(1,18933:6630773,7794071:25952256,404226,82312 -h1,18933:6630773,7794071:0,0,0 -g1,18933:6946919,7794071 -g1,18933:7263065,7794071 -g1,18933:7579211,7794071 -g1,18933:7895357,7794071 -g1,18933:8211503,7794071 -g1,18933:8527649,7794071 -g1,18933:8843795,7794071 -g1,18933:9159941,7794071 -g1,18933:9476087,7794071 -g1,18933:9792233,7794071 -g1,18933:10108379,7794071 -g1,18933:10424525,7794071 -g1,18933:10740671,7794071 -g1,18933:11056817,7794071 -g1,18933:11372963,7794071 -g1,18933:11689109,7794071 -g1,18933:12005255,7794071 -g1,18933:12321401,7794071 -g1,18933:12637547,7794071 -g1,18933:12953693,7794071 -g1,18933:13269839,7794071 -g1,18933:13585985,7794071 -g1,18933:13902131,7794071 -g1,18933:14218277,7794071 -g1,18933:14534423,7794071 -g1,18933:14850569,7794071 -g1,18933:18644317,7794071 -g1,18933:19276609,7794071 -k1,18933:19276609,7794071:0 -h1,18933:23070357,7794071:0,0,0 -k1,18933:32583029,7794071:9512672 -g1,18933:32583029,7794071 -) -(1,18934:6630773,8460249:25952256,404226,101187 -h1,18934:6630773,8460249:0,0,0 -g1,18934:6946919,8460249 -g1,18934:7263065,8460249 -g1,18934:7579211,8460249 -g1,18934:7895357,8460249 -g1,18934:8211503,8460249 -g1,18934:8527649,8460249 -g1,18934:8843795,8460249 -g1,18934:9159941,8460249 -g1,18934:9476087,8460249 -g1,18934:9792233,8460249 -g1,18934:10108379,8460249 -g1,18934:10424525,8460249 -g1,18934:10740671,8460249 -g1,18934:11056817,8460249 -g1,18934:11372963,8460249 -g1,18934:11689109,8460249 -g1,18934:12005255,8460249 -g1,18934:12321401,8460249 -g1,18934:12637547,8460249 -g1,18934:12953693,8460249 -g1,18934:13269839,8460249 -g1,18934:13585985,8460249 -g1,18934:13902131,8460249 -g1,18934:14218277,8460249 -g1,18934:14534423,8460249 -g1,18934:14850569,8460249 -g1,18934:18644317,8460249 -g1,18934:19276609,8460249 -k1,18934:19276609,8460249:0 -h1,18934:22754212,8460249:0,0,0 -k1,18934:32583029,8460249:9828817 -g1,18934:32583029,8460249 -) -(1,18935:6630773,9126427:25952256,404226,107478 -h1,18935:6630773,9126427:0,0,0 -g1,18935:6946919,9126427 -g1,18935:7263065,9126427 -g1,18935:7579211,9126427 -g1,18935:7895357,9126427 -g1,18935:8211503,9126427 -g1,18935:8527649,9126427 -g1,18935:8843795,9126427 -g1,18935:9159941,9126427 -g1,18935:9476087,9126427 -g1,18935:9792233,9126427 -g1,18935:10108379,9126427 -g1,18935:10424525,9126427 -g1,18935:10740671,9126427 -g1,18935:11056817,9126427 -g1,18935:14850565,9126427 -g1,18935:15482857,9126427 -g1,18935:17695877,9126427 -g1,18935:21489625,9126427 -g1,18935:22121917,9126427 -k1,18935:22121917,9126427:0 -h1,18935:24651083,9126427:0,0,0 -k1,18935:32583029,9126427:7931946 -g1,18935:32583029,9126427 -) -(1,18936:6630773,9792605:25952256,404226,101187 -h1,18936:6630773,9792605:0,0,0 -g1,18936:6946919,9792605 -g1,18936:7263065,9792605 -g1,18936:7579211,9792605 -g1,18936:7895357,9792605 -g1,18936:8211503,9792605 -g1,18936:8527649,9792605 -g1,18936:8843795,9792605 -g1,18936:9159941,9792605 -g1,18936:9476087,9792605 -g1,18936:9792233,9792605 -g1,18936:10108379,9792605 -g1,18936:10424525,9792605 -g1,18936:10740671,9792605 -g1,18936:11056817,9792605 -g1,18936:12953691,9792605 -g1,18936:13585983,9792605 -g1,18936:15482858,9792605 -h1,18936:15799004,9792605:0,0,0 -k1,18936:32583028,9792605:16784024 -g1,18936:32583028,9792605 -) -(1,18937:6630773,10458783:25952256,404226,107478 -h1,18937:6630773,10458783:0,0,0 -g1,18937:6946919,10458783 -g1,18937:7263065,10458783 -k1,18937:7263065,10458783:0 -h1,18937:11056813,10458783:0,0,0 -k1,18937:32583029,10458783:21526216 -g1,18937:32583029,10458783 -) -] -) -g1,18939:32583029,10566261 -g1,18939:6630773,10566261 -g1,18939:6630773,10566261 -g1,18939:32583029,10566261 -g1,18939:32583029,10566261 -) -h1,18939:6630773,10762869:0,0,0 -(1,18942:6630773,20436359:25952256,9083666,0 -k1,18942:10523651,20436359:3892878 -h1,18941:10523651,20436359:0,0,0 -(1,18941:10523651,20436359:18166500,9083666,0 -(1,18941:10523651,20436359:18167376,9083688,0 -(1,18941:10523651,20436359:18167376,9083688,0 -(1,18941:10523651,20436359:0,9083688,0 -(1,18941:10523651,20436359:0,14208860,0 -(1,18941:10523651,20436359:28417720,14208860,0 -) -k1,18941:10523651,20436359:-28417720 -) -) -g1,18941:28691027,20436359 -) -) -) -g1,18942:28690151,20436359 -k1,18942:32583029,20436359:3892878 -) -(1,18949:6630773,21277847:25952256,513147,134348 -h1,18948:6630773,21277847:983040,0,0 -k1,18948:10484654,21277847:335908 -k1,18948:13867986,21277847:335909 -k1,18948:16964270,21277847:335908 -k1,18948:20527171,21277847:335908 -k1,18948:23545469,21277847:335909 -k1,18948:24829028,21277847:335908 -k1,18948:26184021,21277847:335908 -k1,18948:29980231,21277847:335909 -k1,18948:30975431,21277847:335908 -k1,18948:32583029,21277847:0 -) -(1,18949:6630773,22119335:25952256,513147,134348 -k1,18948:8724157,22119335:238715 -k1,18948:9772242,22119335:238715 -k1,18948:11723413,22119335:238715 -k1,18948:14280136,22119335:238715 -k1,18948:17813346,22119335:238715 -k1,18948:18813589,22119335:238715 -k1,18948:21632455,22119335:238714 -k1,18948:24316317,22119335:238715 -k1,18948:25746477,22119335:238715 -k1,18948:26773590,22119335:238715 -k1,18948:30588605,22119335:238715 -k1,18948:31297213,22119335:238715 -k1,18948:32583029,22119335:0 -) -(1,18949:6630773,22960823:25952256,513147,134348 -k1,18948:9747534,22960823:260047 -k1,18948:11506388,22960823:260046 -k1,18948:12957880,22960823:260047 -k1,18948:16338096,22960823:260047 -k1,18948:17545794,22960823:260047 -k1,18948:20406309,22960823:260046 -k1,18948:23983133,22960823:260047 -k1,18948:25434625,22960823:260047 -k1,18948:27580142,22960823:260046 -k1,18948:29092582,22960823:260047 -k1,18948:32583029,22960823:0 -) -(1,18949:6630773,23802311:25952256,513147,134348 -g1,18948:8791495,23802311 -g1,18948:10015707,23802311 -g1,18948:11234021,23802311 -g1,18948:14013402,23802311 -g1,18948:19038702,23802311 -g1,18948:20185582,23802311 -k1,18949:32583029,23802311:10106308 -g1,18949:32583029,23802311 -) -(1,18953:6630773,25893571:25952256,555811,139132 -(1,18953:6630773,25893571:2450326,534184,12975 -g1,18953:6630773,25893571 -g1,18953:9081099,25893571 -) -g1,18953:13681858,25893571 -g1,18953:15249086,25893571 -k1,18953:32583029,25893571:14898035 -g1,18953:32583029,25893571 -) -(1,18957:6630773,27128275:25952256,513147,126483 -k1,18956:8668662,27128275:254654 -k1,18956:9942401,27128275:254654 -k1,18956:12682836,27128275:254654 -k1,18956:13596782,27128275:254654 -k1,18956:17923188,27128275:254654 -k1,18956:18709339,27128275:254654 -k1,18956:20915656,27128275:254655 -k1,18956:23060368,27128275:254654 -k1,18956:24183374,27128275:254654 -k1,18956:25542310,27128275:254654 -k1,18956:26998894,27128275:254654 -k1,18956:28062918,27128275:254654 -k1,18956:29336657,27128275:254654 -k1,18956:31923737,27128275:254654 -k1,18956:32583029,27128275:0 -) -(1,18957:6630773,27969763:25952256,513147,134348 -k1,18956:9819755,27969763:239207 -k1,18956:12928127,27969763:239206 -k1,18956:13818762,27969763:239207 -k1,18956:16266531,27969763:239206 -k1,18956:17524823,27969763:239207 -k1,18956:20096455,27969763:239206 -k1,18956:20994954,27969763:239207 -k1,18956:22253245,27969763:239206 -k1,18956:26737874,27969763:239207 -k1,18956:28019102,27969763:239206 -k1,18956:31093396,27969763:239207 -k1,18957:32583029,27969763:0 -) -(1,18957:6630773,28811251:25952256,513147,134348 -k1,18956:7739077,28811251:215704 -k1,18956:9562378,28811251:215703 -k1,18956:11513475,28811251:215704 -k1,18956:15456210,28811251:215703 -k1,18956:17682559,28811251:215704 -k1,18956:18845914,28811251:215704 -(1,18956:18845914,28811251:0,452978,115847 -r1,18971:20611027,28811251:1765113,568825,115847 -k1,18956:18845914,28811251:-1765113 -) -(1,18956:18845914,28811251:1765113,452978,115847 -k1,18956:18845914,28811251:3277 -h1,18956:20607750,28811251:0,411205,112570 -) -k1,18956:20826730,28811251:215703 -k1,18956:22146716,28811251:215704 -k1,18956:23642337,28811251:215703 -k1,18956:24213901,28811251:215704 -k1,18956:28159258,28811251:215703 -k1,18956:31923737,28811251:215704 -k1,18956:32583029,28811251:0 -) -(1,18957:6630773,29652739:25952256,513147,134348 -k1,18956:7844046,29652739:194188 -k1,18956:10544331,29652739:194188 -k1,18956:11972562,29652739:194188 -k1,18956:13948019,29652739:194188 -k1,18956:17232230,29652739:194188 -k1,18956:18042456,29652739:194188 -k1,18956:20515331,29652739:194188 -h1,18956:22058049,29652739:0,0,0 -k1,18956:22252237,29652739:194188 -k1,18956:23255795,29652739:194188 -k1,18956:24948136,29652739:194188 -h1,18956:26143513,29652739:0,0,0 -k1,18956:26511371,29652739:194188 -k1,18956:27809841,29652739:194188 -k1,18956:29289845,29652739:194188 -k1,18957:32583029,29652739:0 -) -(1,18957:6630773,30494227:25952256,513147,138281 -k1,18956:7923525,30494227:236967 -k1,18956:10369056,30494227:236968 -k1,18956:11625108,30494227:236967 -k1,18956:14194501,30494227:236967 -k1,18956:15090760,30494227:236967 -k1,18956:19399479,30494227:236967 -k1,18956:21381015,30494227:236968 -$1,18956:21381015,30494227 -$1,18956:21883676,30494227 -k1,18956:22120643,30494227:236967 -k1,18956:24567484,30494227:236967 -$1,18956:24567484,30494227 -$1,18956:25119297,30494227 -k1,18956:25356265,30494227:236968 -k1,18956:27165441,30494227:236967 -k1,18956:28920877,30494227:236967 -k1,18956:32583029,30494227:0 -) -(1,18957:6630773,31335715:25952256,505283,126483 -k1,18956:7650186,31335715:204145 -k1,18956:8920601,31335715:204144 -k1,18956:11402122,31335715:204145 -k1,18956:16174125,31335715:204144 -k1,18956:18067788,31335715:204145 -k1,18956:19291017,31335715:204144 -k1,18956:22177551,31335715:204145 -k1,18956:25471718,31335715:204144 -k1,18956:26291901,31335715:204145 -k1,18956:27699286,31335715:204144 -k1,18956:30182118,31335715:204145 -k1,18956:31375200,31335715:204144 -k1,18957:32583029,31335715:0 -) -(1,18957:6630773,32177203:25952256,513147,134348 -k1,18956:9650213,32177203:225640 -k1,18956:10637382,32177203:225641 -k1,18956:14536970,32177203:225640 -k1,18956:15652590,32177203:225641 -k1,18956:17432089,32177203:225640 -k1,18956:18849174,32177203:225640 -k1,18956:22048183,32177203:225641 -k1,18956:24606249,32177203:225640 -k1,18956:27857687,32177203:225641 -k1,18956:29074887,32177203:225640 -k1,18956:32583029,32177203:0 -) -(1,18957:6630773,33018691:25952256,513147,134348 -k1,18956:9935813,33018691:197323 -k1,18956:12110357,33018691:197323 -k1,18956:14005717,33018691:197322 -k1,18956:15222125,33018691:197323 -k1,18956:17905229,33018691:197323 -k1,18956:18761844,33018691:197323 -k1,18956:23030919,33018691:197323 -k1,18956:23759739,33018691:197323 -k1,18956:25701629,33018691:197322 -k1,18956:27773282,33018691:197323 -k1,18956:31478747,33018691:197323 -k1,18956:32583029,33018691:0 -) -(1,18957:6630773,33860179:25952256,505283,126483 -g1,18956:7577768,33860179 -g1,18956:10985640,33860179 -g1,18956:11800907,33860179 -g1,18956:13156846,33860179 -g1,18956:14038960,33860179 -g1,18956:15888386,33860179 -k1,18957:32583029,33860179:12845714 -g1,18957:32583029,33860179 -) -(1,18959:6630773,34701667:25952256,513147,134348 -h1,18958:6630773,34701667:983040,0,0 -k1,18958:11452435,34701667:181713 -k1,18958:12625709,34701667:181714 -k1,18958:15189000,34701667:181713 -k1,18958:16132241,34701667:181713 -k1,18958:17644335,34701667:181713 -k1,18958:18845134,34701667:181714 -k1,18958:21329127,34701667:181713 -k1,18958:23521485,34701667:181713 -k1,18958:24694758,34701667:181713 -k1,18958:28279101,34701667:181714 -k1,18958:31423697,34701667:181713 -k1,18959:32583029,34701667:0 -) -(1,18959:6630773,35543155:25952256,513147,134348 -k1,18958:9546688,35543155:295786 -k1,18958:10834033,35543155:295785 -k1,18958:12731519,35543155:295786 -k1,18958:16332286,35543155:295786 -k1,18958:18930351,35543155:295785 -k1,18958:19912299,35543155:295786 -k1,18958:21252729,35543155:295786 -k1,18958:23329783,35543155:295785 -k1,18958:25377346,35543155:295786 -k1,18958:26717776,35543155:295786 -k1,18958:27696446,35543155:295785 -k1,18958:30975431,35543155:295786 -k1,18958:32583029,35543155:0 -) -(1,18959:6630773,36384643:25952256,505283,134348 -k1,18958:7859136,36384643:236803 -k1,18958:9162211,36384643:236804 -k1,18958:13139154,36384643:236803 -k1,18958:16338840,36384643:236803 -k1,18958:18421792,36384643:236803 -k1,18958:20236048,36384643:236804 -k1,18958:21088889,36384643:236803 -k1,18958:24036916,36384643:236803 -k1,18958:24629579,36384643:236803 -k1,18958:28102551,36384643:236804 -k1,18958:30108171,36384643:236803 -k1,18958:31092740,36384643:236803 -k1,18959:32583029,36384643:0 -) -(1,18959:6630773,37226131:25952256,513147,134348 -k1,18958:7898037,37226131:242281 -k1,18958:9875712,37226131:242282 -k1,18958:10473853,37226131:242281 -k1,18958:13478477,37226131:242281 -k1,18958:16728206,37226131:242282 -k1,18958:18705880,37226131:242281 -(1,18958:18705880,37226131:0,452978,115847 -r1,18971:22229552,37226131:3523672,568825,115847 -k1,18958:18705880,37226131:-3523672 -) -(1,18958:18705880,37226131:3523672,452978,115847 -k1,18958:18705880,37226131:3277 -h1,18958:22226275,37226131:0,411205,112570 -) -k1,18958:22645503,37226131:242281 -k1,18958:23906870,37226131:242282 -k1,18958:26554323,37226131:242281 -k1,18958:28309830,37226131:242281 -k1,18958:29313640,37226131:242282 -k1,18958:31821501,37226131:242281 -k1,18959:32583029,37226131:0 -) -(1,18959:6630773,38067619:25952256,513147,134348 -(1,18958:6630773,38067619:0,452978,122846 -r1,18971:12264716,38067619:5633943,575824,122846 -k1,18958:6630773,38067619:-5633943 -) -(1,18958:6630773,38067619:5633943,452978,122846 -k1,18958:6630773,38067619:3277 -h1,18958:12261439,38067619:0,411205,112570 -) -k1,18958:12718330,38067619:279944 -k1,18958:14379118,38067619:279944 -k1,18958:17064234,38067619:279944 -k1,18958:18837088,38067619:279944 -k1,18958:21538586,38067619:279943 -k1,18958:22477822,38067619:279944 -k1,18958:26829518,38067619:279944 -k1,18958:29152219,38067619:279944 -k1,18958:32583029,38067619:0 -) -(1,18959:6630773,38909107:25952256,513147,126483 -k1,18958:10671504,38909107:172796 -k1,18958:12035746,38909107:172797 -k1,18958:12740039,38909107:172796 -k1,18958:15424830,38909107:172796 -k1,18958:16545278,38909107:172797 -k1,18958:20288475,38909107:172796 -$1,18958:20288475,38909107 -$1,18958:20791136,38909107 -k1,18958:20963932,38909107:172796 -k1,18958:23212910,38909107:172797 -k1,18958:25168941,38909107:172796 -k1,18958:25697598,38909107:172797 -k1,18958:27764384,38909107:172796 -k1,18958:28468677,38909107:172796 -k1,18958:31226869,38909107:172797 -k1,18958:32051093,38909107:172796 -(1,18958:32051093,38909107:0,414482,115847 -r1,18971:32409359,38909107:358266,530329,115847 -k1,18958:32051093,38909107:-358266 -) -(1,18958:32051093,38909107:358266,414482,115847 -k1,18958:32051093,38909107:3277 -h1,18958:32406082,38909107:0,411205,112570 -) -k1,18959:32583029,38909107:0 -) -(1,18959:6630773,39750595:25952256,513147,122846 -(1,18958:6630773,39750595:0,452978,115847 -r1,18971:10857869,39750595:4227096,568825,115847 -k1,18958:6630773,39750595:-4227096 -) -(1,18958:6630773,39750595:4227096,452978,115847 -k1,18958:6630773,39750595:3277 -h1,18958:10854592,39750595:0,411205,112570 -) -k1,18958:11049812,39750595:191943 -k1,18958:13422138,39750595:191943 -k1,18958:14361847,39750595:191943 -k1,18958:16240688,39750595:191944 -k1,18958:18318102,39750595:191943 -k1,18958:19041542,39750595:191943 -k1,18958:20252570,39750595:191943 -k1,18958:22710093,39750595:191943 -(1,18958:22710093,39750595:0,414482,115847 -r1,18971:24123494,39750595:1413401,530329,115847 -k1,18958:22710093,39750595:-1413401 -) -(1,18958:22710093,39750595:1413401,414482,115847 -k1,18958:22710093,39750595:3277 -h1,18958:24120217,39750595:0,411205,112570 -) -k1,18958:24315437,39750595:191943 -k1,18958:25455032,39750595:191944 -(1,18958:25455032,39750595:0,452978,122846 -r1,18971:28978704,39750595:3523672,575824,122846 -k1,18958:25455032,39750595:-3523672 -) -(1,18958:25455032,39750595:3523672,452978,122846 -k1,18958:25455032,39750595:3277 -h1,18958:28975427,39750595:0,411205,112570 -) -k1,18958:29344317,39750595:191943 -k1,18958:31410590,39750595:191943 -k1,18958:32583029,39750595:0 -) -(1,18959:6630773,40592083:25952256,513147,134348 -k1,18958:10312228,40592083:241470 -k1,18958:11545258,40592083:241470 -k1,18958:14876752,40592083:241471 -k1,18958:15734260,40592083:241470 -k1,18958:17178971,40592083:241470 -k1,18958:19699128,40592083:241470 -k1,18958:21763154,40592083:241470 -k1,18958:25031732,40592083:241470 -k1,18958:27802893,40592083:241471 -k1,18958:29424551,40592083:241470 -k1,18958:31931601,40592083:241470 -k1,18958:32583029,40592083:0 -) -(1,18959:6630773,41433571:25952256,513147,134348 -k1,18958:8584643,41433571:218477 -k1,18958:11656558,41433571:218477 -k1,18958:14637377,41433571:218476 -k1,18958:16423475,41433571:218477 -(1,18958:16423475,41433571:0,452978,115847 -r1,18971:21705706,41433571:5282231,568825,115847 -k1,18958:16423475,41433571:-5282231 -) -(1,18958:16423475,41433571:5282231,452978,115847 -k1,18958:16423475,41433571:3277 -h1,18958:21702429,41433571:0,411205,112570 -) -k1,18958:21924183,41433571:218477 -k1,18958:23334105,41433571:218477 -k1,18958:27777687,41433571:218476 -k1,18958:31563944,41433571:218477 -k1,18958:32583029,41433571:0 -) -(1,18959:6630773,42275059:25952256,505283,7863 -k1,18959:32583029,42275059:24389222 -g1,18959:32583029,42275059 -) -(1,18961:6630773,43116547:25952256,513147,134348 -h1,18960:6630773,43116547:983040,0,0 -g1,18960:8630931,43116547 -g1,18960:11046588,43116547 -g1,18960:12114169,43116547 -g1,18960:15045594,43116547 -g1,18960:17756818,43116547 -g1,18960:20584696,43116547 -k1,18961:32583029,43116547:10435299 -g1,18961:32583029,43116547 -) -v1,18963:6630773,44307013:0,393216,0 -(1,18971:6630773,45281996:25952256,1368199,196608 -g1,18971:6630773,45281996 -g1,18971:6630773,45281996 -g1,18971:6434165,45281996 -(1,18971:6434165,45281996:0,1368199,196608 -r1,18971:32779637,45281996:26345472,1564807,196608 -k1,18971:6434165,45281996:-26345472 -) -(1,18971:6434165,45281996:26345472,1368199,196608 -[1,18971:6630773,45281996:25952256,1171591,0 -(1,18965:6630773,44514631:25952256,404226,76021 -(1,18964:6630773,44514631:0,0,0 -g1,18964:6630773,44514631 -g1,18964:6630773,44514631 -g1,18964:6303093,44514631 -(1,18964:6303093,44514631:0,0,0 -) -g1,18964:6630773,44514631 -) -k1,18965:6630773,44514631:0 -h1,18965:11372958,44514631:0,0,0 -k1,18965:32583030,44514631:21210072 -g1,18965:32583030,44514631 -) -(1,18966:6630773,45180809:25952256,404226,101187 -h1,18966:6630773,45180809:0,0,0 -g1,18966:9159939,45180809 -k1,18966:9159939,45180809:0 -h1,18966:9792231,45180809:0,0,0 -k1,18966:32583029,45180809:22790798 -g1,18966:32583029,45180809 -) -] -) -g1,18971:32583029,45281996 -g1,18971:6630773,45281996 -g1,18971:6630773,45281996 -g1,18971:32583029,45281996 -g1,18971:32583029,45281996 -) -] -(1,18971:32583029,45706769:0,0,0 -g1,18971:32583029,45706769 -) -) -] -(1,18971:6630773,47279633:25952256,0,0 -h1,18971:6630773,47279633:25952256,0,0 -) -] -(1,18971:4262630,4025873:0,0,0 -[1,18971:-473656,4025873:0,0,0 -(1,18971:-473656,-710413:0,0,0 -(1,18971:-473656,-710413:0,0,0 -g1,18971:-473656,-710413 -) -g1,18971:-473656,-710413 -) -] ) ] -!23754 -}336 -Input:2984:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2985:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2986:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2987:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2988:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2989:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2990:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2991:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2992:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2993:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2994:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2995:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2996:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1234 -{337 -[1,19019:4262630,47279633:28320399,43253760,0 -(1,19019:4262630,4025873:0,0,0 -[1,19019:-473656,4025873:0,0,0 -(1,19019:-473656,-710413:0,0,0 -(1,19019:-473656,-644877:0,0,0 -k1,19019:-473656,-644877:-65536 -) -(1,19019:-473656,4736287:0,0,0 -k1,19019:-473656,4736287:5209943 +[1,18924:3078558,4812305:0,0,0 +(1,18924:3078558,2439708:0,1703936,0 +g1,18924:29030814,2439708 +g1,18924:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,18924:36151628,1915420:16384,1179648,0 ) -g1,19019:-473656,-710413 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -[1,19019:6630773,47279633:25952256,43253760,0 -[1,19019:6630773,4812305:25952256,786432,0 -(1,19019:6630773,4812305:25952256,513147,126483 -(1,19019:6630773,4812305:25952256,513147,126483 -g1,19019:3078558,4812305 -[1,19019:3078558,4812305:0,0,0 -(1,19019:3078558,2439708:0,1703936,0 -k1,19019:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,19019:2537886,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,18924:37855564,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,19019:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,18924:3078556,2439708:-34777008 ) ] +[1,18924:3078558,4812305:0,0,0 +(1,18924:3078558,49800853:0,16384,2228224 +k1,18924:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,18924:2537886,49800853:1179648,16384,0 ) +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,18924:3078558,51504789:16384,1179648,0 ) +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] -[1,19019:3078558,4812305:0,0,0 -(1,19019:3078558,2439708:0,1703936,0 -g1,19019:29030814,2439708 -g1,19019:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,19019:36151628,1915420:16384,1179648,0 -) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 -) -] -) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,19019:37855564,2439708:1179648,16384,0 ) ) -k1,19019:3078556,2439708:-34777008 ) ] -[1,19019:3078558,4812305:0,0,0 -(1,19019:3078558,49800853:0,16384,2228224 -k1,19019:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,19019:2537886,49800853:1179648,16384,0 +[1,18924:3078558,4812305:0,0,0 +(1,18924:3078558,49800853:0,16384,2228224 +g1,18924:29030814,49800853 +g1,18924:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,18924:36151628,51504789:16384,1179648,0 +) +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 +) +] ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,19019:3078558,51504789:16384,1179648,0 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,18924:37855564,49800853:1179648,16384,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 -) -] -) -) -) -] -[1,19019:3078558,4812305:0,0,0 -(1,19019:3078558,49800853:0,16384,2228224 -g1,19019:29030814,49800853 -g1,19019:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,19019:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] -) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,19019:37855564,49800853:1179648,16384,0 -) -) -k1,19019:3078556,49800853:-34777008 -) -] -g1,19019:6630773,4812305 -k1,19019:21350816,4812305:13524666 -g1,19019:21999622,4812305 -g1,19019:25611966,4812305 -g1,19019:28956923,4812305 -g1,19019:29772190,4812305 -) -) -] -[1,19019:6630773,45706769:25952256,40108032,0 -(1,19019:6630773,45706769:25952256,40108032,0 -(1,19019:6630773,45706769:0,0,0 -g1,19019:6630773,45706769 -) -[1,19019:6630773,45706769:25952256,40108032,0 -v1,18971:6630773,6254097:0,393216,0 -(1,18971:6630773,7907841:25952256,2046960,196608 -g1,18971:6630773,7907841 -g1,18971:6630773,7907841 -g1,18971:6434165,7907841 -(1,18971:6434165,7907841:0,2046960,196608 -r1,19019:32779637,7907841:26345472,2243568,196608 -k1,18971:6434165,7907841:-26345472 -) -(1,18971:6434165,7907841:26345472,2046960,196608 -[1,18971:6630773,7907841:25952256,1850352,0 -(1,18967:6630773,6468007:25952256,410518,82312 -h1,18967:6630773,6468007:0,0,0 -g1,18967:6946919,6468007 -g1,18967:7263065,6468007 -g1,18967:11372960,6468007 -g1,18967:12005252,6468007 -k1,18967:12005252,6468007:0 -h1,18967:15482855,6468007:0,0,0 -k1,18967:32583029,6468007:17100174 -g1,18967:32583029,6468007 -) -(1,18968:6630773,7134185:25952256,404226,101187 -h1,18968:6630773,7134185:0,0,0 -g1,18968:6946919,7134185 -g1,18968:7263065,7134185 -g1,18968:7579211,7134185 -g1,18968:7895357,7134185 -g1,18968:8211503,7134185 -g1,18968:8527649,7134185 -g1,18968:8843795,7134185 -g1,18968:9159941,7134185 -g1,18968:9476087,7134185 -g1,18968:9792233,7134185 -g1,18968:10108379,7134185 -g1,18968:10424525,7134185 -g1,18968:10740671,7134185 -g1,18968:11372963,7134185 -g1,18968:12005255,7134185 -g1,18968:16115150,7134185 -g1,18968:17379734,7134185 -g1,18968:18644318,7134185 -g1,18968:22121921,7134185 -g1,18968:23070359,7134185 -k1,18968:23070359,7134185:0 -h1,18968:24334942,7134185:0,0,0 -k1,18968:32583029,7134185:8248087 -g1,18968:32583029,7134185 -) -(1,18969:6630773,7800363:25952256,410518,107478 -h1,18969:6630773,7800363:0,0,0 -g1,18969:6946919,7800363 -g1,18969:7263065,7800363 -g1,18969:7579211,7800363 -g1,18969:7895357,7800363 -g1,18969:8211503,7800363 -g1,18969:8527649,7800363 -g1,18969:8843795,7800363 -g1,18969:9159941,7800363 -g1,18969:9476087,7800363 -g1,18969:9792233,7800363 -g1,18969:10108379,7800363 -g1,18969:10424525,7800363 -g1,18969:10740671,7800363 -g1,18969:12637545,7800363 -g1,18969:13269837,7800363 -g1,18969:18960461,7800363 -g1,18969:20857336,7800363 -g1,18969:23070357,7800363 -g1,18969:25283377,7800363 -h1,18969:25599523,7800363:0,0,0 -k1,18969:32583029,7800363:6983506 -g1,18969:32583029,7800363 -) -] -) -g1,18971:32583029,7907841 -g1,18971:6630773,7907841 -g1,18971:6630773,7907841 -g1,18971:32583029,7907841 -g1,18971:32583029,7907841 -) -h1,18971:6630773,8104449:0,0,0 -(1,18975:6630773,9470225:25952256,513147,126483 -h1,18974:6630773,9470225:983040,0,0 -k1,18974:8826467,9470225:259105 -k1,18974:10854390,9470225:259106 -k1,18974:12588710,9470225:259105 -k1,18974:14657919,9470225:259105 -k1,18974:15726394,9470225:259105 -k1,18974:17004585,9470225:259106 -k1,18974:19529270,9470225:259105 -k1,18974:22274156,9470225:259105 -k1,18974:23192553,9470225:259105 -k1,18974:24798424,9470225:259106 -k1,18974:29374386,9470225:259105 -k1,18974:32583029,9470225:0 -) -(1,18975:6630773,10311713:25952256,505283,126483 -k1,18974:7607271,10311713:214970 -k1,18974:8841326,10311713:214970 -(1,18974:8841326,10311713:0,452978,115847 -r1,19019:12364998,10311713:3523672,568825,115847 -k1,18974:8841326,10311713:-3523672 -) -(1,18974:8841326,10311713:3523672,452978,115847 -k1,18974:8841326,10311713:3277 -h1,18974:12361721,10311713:0,411205,112570 -) -k1,18974:12579968,10311713:214970 -k1,18974:15491745,10311713:214970 -k1,18974:18550978,10311713:214970 -k1,18974:19634300,10311713:214970 -k1,18974:21247153,10311713:214970 -k1,18974:22396666,10311713:214970 -k1,18974:23069733,10311713:214970 -k1,18974:23936131,10311713:214970 -k1,18974:24948019,10311713:214970 -k1,18974:26556940,10311713:214970 -(1,18974:26556940,10311713:0,452978,115847 -r1,19019:29728901,10311713:3171961,568825,115847 -k1,18974:26556940,10311713:-3171961 -) -(1,18974:26556940,10311713:3171961,452978,115847 -g1,18974:28318776,10311713 -g1,18974:29022200,10311713 -h1,18974:29725624,10311713:0,411205,112570 -) -k1,18974:30117541,10311713:214970 -k1,18974:30802404,10311713:214970 -k1,18974:31548871,10311713:214970 -k1,18975:32583029,10311713:0 -) -(1,18975:6630773,11153201:25952256,505283,126483 -k1,18974:9277407,11153201:258502 -k1,18974:10187338,11153201:258503 -k1,18974:13704945,11153201:258502 -k1,18974:15247953,11153201:258502 -k1,18974:16122494,11153201:258503 -k1,18974:17584237,11153201:258502 -k1,18974:19209820,11153201:258502 -k1,18974:20277693,11153201:258503 -k1,18974:23047535,11153201:258502 -k1,18974:23922075,11153201:258502 -(1,18974:23922075,11153201:0,452978,115847 -r1,19019:25335476,11153201:1413401,568825,115847 -k1,18974:23922075,11153201:-1413401 -) -(1,18974:23922075,11153201:1413401,452978,115847 -k1,18974:23922075,11153201:3277 -h1,18974:25332199,11153201:0,411205,112570 -) -k1,18974:25593979,11153201:258503 -k1,18974:26383978,11153201:258502 -k1,18974:29227875,11153201:258502 -k1,18974:30947176,11153201:258503 -k1,18974:32224763,11153201:258502 -(1,18974:32224763,11153201:0,414482,115847 -r1,19019:32583029,11153201:358266,530329,115847 -k1,18974:32224763,11153201:-358266 -) -(1,18974:32224763,11153201:358266,414482,115847 -k1,18974:32224763,11153201:3277 -h1,18974:32579752,11153201:0,411205,112570 -) -k1,18974:32583029,11153201:0 -) -(1,18975:6630773,11994689:25952256,505283,7863 -k1,18975:32583030,11994689:23025420 -g1,18975:32583030,11994689 -) -v1,18977:6630773,13185155:0,393216,0 -(1,18982:6630773,14166429:25952256,1374490,196608 -g1,18982:6630773,14166429 -g1,18982:6630773,14166429 -g1,18982:6434165,14166429 -(1,18982:6434165,14166429:0,1374490,196608 -r1,19019:32779637,14166429:26345472,1571098,196608 -k1,18982:6434165,14166429:-26345472 -) -(1,18982:6434165,14166429:26345472,1374490,196608 -[1,18982:6630773,14166429:25952256,1177882,0 -(1,18979:6630773,13392773:25952256,404226,107478 -(1,18978:6630773,13392773:0,0,0 -g1,18978:6630773,13392773 -g1,18978:6630773,13392773 -g1,18978:6303093,13392773 -(1,18978:6303093,13392773:0,0,0 -) -g1,18978:6630773,13392773 -) -k1,18979:6630773,13392773:0 -g1,18979:11689104,13392773 -g1,18979:14218270,13392773 -h1,18979:14534416,13392773:0,0,0 -k1,18979:32583028,13392773:18048612 -g1,18979:32583028,13392773 -) -(1,18980:6630773,14058951:25952256,404226,107478 -h1,18980:6630773,14058951:0,0,0 -g1,18980:6946919,14058951 -g1,18980:7263065,14058951 -g1,18980:13585980,14058951 -g1,18980:14218272,14058951 -h1,18980:15166709,14058951:0,0,0 -k1,18980:32583029,14058951:17416320 -g1,18980:32583029,14058951 -) -] -) -g1,18982:32583029,14166429 -g1,18982:6630773,14166429 -g1,18982:6630773,14166429 -g1,18982:32583029,14166429 -g1,18982:32583029,14166429 -) -h1,18982:6630773,14363037:0,0,0 -(1,18985:6630773,24036527:25952256,9083666,0 -k1,18985:10523651,24036527:3892878 -h1,18984:10523651,24036527:0,0,0 -(1,18984:10523651,24036527:18166500,9083666,0 -(1,18984:10523651,24036527:18167376,9083688,0 -(1,18984:10523651,24036527:18167376,9083688,0 -(1,18984:10523651,24036527:0,9083688,0 -(1,18984:10523651,24036527:0,14208860,0 -(1,18984:10523651,24036527:28417720,14208860,0 -) -k1,18984:10523651,24036527:-28417720 -) -) -g1,18984:28691027,24036527 -) -) -) -g1,18985:28690151,24036527 -k1,18985:32583029,24036527:3892878 -) -(1,18992:6630773,24878015:25952256,513147,134348 -h1,18991:6630773,24878015:983040,0,0 -k1,18991:8295153,24878015:203583 -k1,18991:9367088,24878015:203583 -k1,18991:11500051,24878015:203583 -k1,18991:12059494,24878015:203583 -k1,18991:15146006,24878015:203583 -k1,18991:16111117,24878015:203583 -k1,18991:19122262,24878015:203583 -k1,18991:19681705,24878015:203583 -k1,18991:21779278,24878015:203583 -k1,18991:22634289,24878015:203583 -k1,18991:23608575,24878015:203583 -k1,18991:27039151,24878015:203583 -k1,18991:30029980,24878015:203583 -k1,18991:31563944,24878015:203583 -k1,18991:32583029,24878015:0 -) -(1,18992:6630773,25719503:25952256,505283,126483 -k1,18991:8235039,25719503:229321 -k1,18991:10814482,25719503:229322 -k1,18991:12035363,25719503:229321 -k1,18991:15646997,25719503:229321 -k1,18991:17270269,25719503:229321 -k1,18991:19824153,25719503:229322 -k1,18991:20704902,25719503:229321 -k1,18991:22385845,25719503:229321 -k1,18991:24317136,25719503:229321 -k1,18991:27319942,25719503:229322 -k1,18991:30295877,25719503:229321 -k1,18991:31478747,25719503:229321 -k1,18991:32583029,25719503:0 -) -(1,18992:6630773,26560991:25952256,505283,126483 -k1,18991:8265620,26560991:200919 -k1,18991:9743837,26560991:200920 -k1,18991:11244335,26560991:200919 -k1,18991:12206782,26560991:200919 -k1,18991:13707281,26560991:200920 -k1,18991:15302151,26560991:200919 -(1,18991:15302151,26560991:0,452978,122846 -r1,19019:21639519,26560991:6337368,575824,122846 -k1,18991:15302151,26560991:-6337368 -) -(1,18991:15302151,26560991:6337368,452978,122846 -g1,18991:18470835,26560991 -g1,18991:19174259,26560991 -h1,18991:21636242,26560991:0,411205,112570 -) -k1,18991:22014108,26560991:200919 -k1,18991:24652312,26560991:200920 -k1,18991:26009941,26560991:200919 -k1,18991:28066184,26560991:200919 -k1,18991:29286189,26560991:200920 -k1,18991:31189078,26560991:200919 -k1,18992:32583029,26560991:0 -) -(1,18992:6630773,27402479:25952256,505283,134348 -(1,18991:6630773,27402479:0,452978,115847 -r1,19019:12968141,27402479:6337368,568825,115847 -k1,18991:6630773,27402479:-6337368 -) -(1,18991:6630773,27402479:6337368,452978,115847 -g1,18991:9799457,27402479 -g1,18991:10502881,27402479 -h1,18991:12964864,27402479:0,411205,112570 -) -k1,18991:13252181,27402479:284040 -k1,18991:14727667,27402479:284041 -k1,18991:18791824,27402479:284040 -k1,18991:20469815,27402479:284040 -(1,18991:20469815,27402479:0,452978,115847 -r1,19019:27862318,27402479:7392503,568825,115847 -k1,18991:20469815,27402479:-7392503 -) -(1,18991:20469815,27402479:7392503,452978,115847 -g1,18991:23638499,27402479 -g1,18991:24341923,27402479 -h1,18991:27859041,27402479:0,411205,112570 -) -k1,18991:28146358,27402479:284040 -k1,18991:29046437,27402479:284041 -k1,18991:31215948,27402479:284040 -k1,18991:32583029,27402479:0 -) -(1,18992:6630773,28243967:25952256,505283,126483 -k1,18991:7703523,28243967:204398 -k1,18991:9438186,28243967:204397 -k1,18991:10294012,28243967:204398 -k1,18991:12214142,28243967:204397 -k1,18991:14057595,28243967:204398 -k1,18991:19704102,28243967:204397 -k1,18991:21302451,28243967:204398 -(1,18991:21302451,28243967:0,452978,115847 -r1,19019:25177835,28243967:3875384,568825,115847 -k1,18991:21302451,28243967:-3875384 -) -(1,18991:21302451,28243967:3875384,452978,115847 -g1,18991:23415999,28243967 -g1,18991:24119423,28243967 -h1,18991:25174558,28243967:0,411205,112570 -) -k1,18991:25382232,28243967:204397 -k1,18991:26311458,28243967:204398 -k1,18991:27800361,28243967:204397 -k1,18991:29384947,28243967:204398 -k1,18991:30355460,28243967:204397 -k1,18991:32583029,28243967:0 -) -(1,18992:6630773,29085455:25952256,505283,7863 -k1,18992:32583029,29085455:23735828 -g1,18992:32583029,29085455 -) -v1,18994:6630773,30275921:0,393216,0 -(1,18999:6630773,31263487:25952256,1380782,196608 -g1,18999:6630773,31263487 -g1,18999:6630773,31263487 -g1,18999:6434165,31263487 -(1,18999:6434165,31263487:0,1380782,196608 -r1,19019:32779637,31263487:26345472,1577390,196608 -k1,18999:6434165,31263487:-26345472 -) -(1,18999:6434165,31263487:26345472,1380782,196608 -[1,18999:6630773,31263487:25952256,1184174,0 -(1,18996:6630773,30489831:25952256,410518,107478 -(1,18995:6630773,30489831:0,0,0 -g1,18995:6630773,30489831 -g1,18995:6630773,30489831 -g1,18995:6303093,30489831 -(1,18995:6303093,30489831:0,0,0 -) -g1,18995:6630773,30489831 -) -k1,18996:6630773,30489831:0 -g1,18996:11689104,30489831 -g1,18996:13902124,30489831 -g1,18996:15482853,30489831 -g1,18996:16115145,30489831 -g1,18996:18644311,30489831 -h1,18996:18960457,30489831:0,0,0 -k1,18996:32583029,30489831:13622572 -g1,18996:32583029,30489831 -) -(1,18997:6630773,31156009:25952256,404226,107478 -h1,18997:6630773,31156009:0,0,0 -g1,18997:6946919,31156009 -g1,18997:7263065,31156009 -g1,18997:13585980,31156009 -g1,18997:14218272,31156009 -g1,18997:15482855,31156009 -g1,18997:18328166,31156009 -g1,18997:18960458,31156009 -h1,18997:21489624,31156009:0,0,0 -k1,18997:32583029,31156009:11093405 -g1,18997:32583029,31156009 -) -] -) -g1,18999:32583029,31263487 -g1,18999:6630773,31263487 -g1,18999:6630773,31263487 -g1,18999:32583029,31263487 -g1,18999:32583029,31263487 -) -h1,18999:6630773,31460095:0,0,0 -(1,19003:6630773,32825871:25952256,505283,134348 -h1,19002:6630773,32825871:983040,0,0 -k1,19002:9074987,32825871:264487 -k1,19002:12548116,32825871:264486 -k1,19002:14823248,32825871:264487 -k1,19002:16079294,32825871:264486 -k1,19002:19483611,32825871:264487 -k1,19002:20364135,32825871:264486 -k1,19002:21647707,32825871:264487 -(1,19002:21647707,32825871:0,452978,115847 -r1,19019:23061108,32825871:1413401,568825,115847 -k1,19002:21647707,32825871:-1413401 -) -(1,19002:21647707,32825871:1413401,452978,115847 -k1,19002:21647707,32825871:3277 -h1,19002:23057831,32825871:0,411205,112570 -) -k1,19002:23325594,32825871:264486 -k1,19002:24874587,32825871:264487 -k1,19002:26158158,32825871:264486 -k1,19002:29430092,32825871:264487 -k1,19002:32583029,32825871:0 -) -(1,19003:6630773,33667359:25952256,513147,126483 -k1,19002:8409181,33667359:210787 -k1,19002:9639054,33667359:210788 -k1,19002:12394604,33667359:210787 -k1,19002:14300807,33667359:210787 -k1,19002:17365033,33667359:210788 -k1,19002:20363722,33667359:210787 -k1,19002:23801503,33667359:210788 -k1,19002:26022935,33667359:210787 -k1,19002:27518228,33667359:210787 -k1,19002:28720576,33667359:210788 -k1,19002:29997634,33667359:210787 -k1,19002:32583029,33667359:0 -) -(1,19003:6630773,34508847:25952256,513147,134348 -k1,19002:7582339,34508847:190038 -k1,19002:10211628,34508847:190039 -k1,19002:12275996,34508847:190038 -k1,19002:13570317,34508847:190039 -k1,19002:14508121,34508847:190038 -k1,19002:17283554,34508847:190038 -k1,19002:18867544,34508847:190039 -(1,19002:18867544,34508847:0,452978,115847 -r1,19019:20632657,34508847:1765113,568825,115847 -k1,19002:18867544,34508847:-1765113 -) -(1,19002:18867544,34508847:1765113,452978,115847 -k1,19002:18867544,34508847:3277 -h1,19002:20629380,34508847:0,411205,112570 -) -k1,19002:20822695,34508847:190038 -k1,19002:21774262,34508847:190039 -k1,19002:24980267,34508847:190038 -k1,19002:26809360,34508847:190038 -k1,19002:27615437,34508847:190039 -k1,19002:28161335,34508847:190038 -k1,19002:29451068,34508847:190039 -k1,19002:30292534,34508847:190038 -(1,19002:30292534,34508847:0,452978,115847 -r1,19019:32409359,34508847:2116825,568825,115847 -k1,19002:30292534,34508847:-2116825 -) -(1,19002:30292534,34508847:2116825,452978,115847 -k1,19002:30292534,34508847:3277 -h1,19002:32406082,34508847:0,411205,112570 -) -k1,19002:32583029,34508847:0 -) -(1,19003:6630773,35350335:25952256,505283,134348 -k1,19002:8491150,35350335:198384 -k1,19002:9708619,35350335:198384 -k1,19002:11295056,35350335:198384 -k1,19002:12991593,35350335:198384 -k1,19002:14058329,35350335:198384 -k1,19002:15360995,35350335:198384 -k1,19002:17170909,35350335:198384 -k1,19002:18653799,35350335:198384 -k1,19002:19468221,35350335:198384 -k1,19002:22332610,35350335:198384 -k1,19002:23182422,35350335:198384 -k1,19002:25525799,35350335:198384 -k1,19002:26340221,35350335:198384 -k1,19002:29049945,35350335:198384 -(1,19002:29049945,35350335:0,414482,115847 -r1,19019:30815058,35350335:1765113,530329,115847 -k1,19002:29049945,35350335:-1765113 -) -(1,19002:29049945,35350335:1765113,414482,115847 -k1,19002:29049945,35350335:3277 -h1,19002:30811781,35350335:0,411205,112570 -) -k1,19002:31187112,35350335:198384 -k1,19003:32583029,35350335:0 -) -(1,19003:6630773,36191823:25952256,505283,126483 -k1,19002:8014638,36191823:234363 -k1,19002:8780497,36191823:234362 -k1,19002:11793587,36191823:234363 -k1,19002:12643987,36191823:234362 -k1,19002:15389690,36191823:234363 -(1,19002:15389690,36191823:0,452978,115847 -r1,19019:17858227,36191823:2468537,568825,115847 -k1,19002:15389690,36191823:-2468537 -) -(1,19002:15389690,36191823:2468537,452978,115847 -k1,19002:15389690,36191823:3277 -h1,19002:17854950,36191823:0,411205,112570 -) -k1,19002:18092590,36191823:234363 -k1,19002:19088480,36191823:234362 -k1,19002:20526084,36191823:234363 -k1,19002:23457253,36191823:234362 -k1,19002:28212290,36191823:234363 -k1,19002:29315004,36191823:234362 -k1,19002:30653649,36191823:234363 -k1,19002:32583029,36191823:0 -) -(1,19003:6630773,37033311:25952256,505283,134348 -k1,19002:7206279,37033311:219646 -k1,19002:10662094,37033311:219647 -k1,19002:12275691,37033311:219646 -k1,19002:13514423,37033311:219647 -k1,19002:15879062,37033311:219646 -k1,19002:17155148,37033311:219646 -k1,19002:18391258,37033311:219647 -k1,19002:21808406,37033311:219646 -k1,19002:22714214,37033311:219646 -k1,19002:25784022,37033311:219647 -k1,19002:28011691,37033311:219646 -k1,19002:30675176,37033311:219647 -k1,19002:31426319,37033311:219646 -k1,19002:32583029,37033311:0 -) -(1,19003:6630773,37874799:25952256,513147,102891 -k1,19002:8987857,37874799:198328 -k1,19002:10628632,37874799:198328 -k1,19002:12335600,37874799:198329 -k1,19002:14072713,37874799:198328 -k1,19002:14957203,37874799:198328 -k1,19002:16174616,37874799:198328 -k1,19002:18187637,37874799:198329 -k1,19002:19045257,37874799:198328 -k1,19002:20262670,37874799:198328 -k1,19002:21807763,37874799:198328 -k1,19002:22537589,37874799:198329 -k1,19002:23351955,37874799:198328 -k1,19002:24753524,37874799:198328 -k1,19002:26318933,37874799:198328 -k1,19002:29279605,37874799:198329 -k1,19002:31045554,37874799:198328 -k1,19002:32583029,37874799:0 -) -(1,19003:6630773,38716287:25952256,513147,7863 -g1,19002:7516164,38716287 -k1,19003:32583029,38716287:22577808 -g1,19003:32583029,38716287 -) -v1,19005:6630773,39906753:0,393216,0 -(1,19010:6630773,41560497:25952256,2046960,196608 -g1,19010:6630773,41560497 -g1,19010:6630773,41560497 -g1,19010:6434165,41560497 -(1,19010:6434165,41560497:0,2046960,196608 -r1,19019:32779637,41560497:26345472,2243568,196608 -k1,19010:6434165,41560497:-26345472 -) -(1,19010:6434165,41560497:26345472,2046960,196608 -[1,19010:6630773,41560497:25952256,1850352,0 -(1,19007:6630773,40120663:25952256,410518,107478 -(1,19006:6630773,40120663:0,0,0 -g1,19006:6630773,40120663 -g1,19006:6630773,40120663 -g1,19006:6303093,40120663 -(1,19006:6303093,40120663:0,0,0 -) -g1,19006:6630773,40120663 -) -k1,19007:6630773,40120663:0 -g1,19007:11689104,40120663 -g1,19007:13902124,40120663 -g1,19007:15482853,40120663 -g1,19007:16115145,40120663 -g1,19007:18644311,40120663 -h1,19007:18960457,40120663:0,0,0 -k1,19007:32583029,40120663:13622572 -g1,19007:32583029,40120663 -) -(1,19008:6630773,40786841:25952256,410518,107478 -h1,19008:6630773,40786841:0,0,0 -k1,19008:7234281,40786841:603508 -k1,19008:7837788,40786841:603507 -k1,19008:15396502,40786841:603508 -k1,19008:16316155,40786841:603507 -k1,19008:18500392,40786841:603508 -k1,19008:19420045,40786841:603507 -k1,19008:26662613,40786841:603508 -k1,19008:28530703,40786841:603507 -k1,19008:29450357,40786841:603508 -k1,19008:31002301,40786841:603507 -k1,19008:32583029,40786841:0 -) -(1,19008:6630773,41453019:25952256,404226,107478 -g1,19008:8211502,41453019 -g1,19008:8843794,41453019 -h1,19008:11372960,41453019:0,0,0 -k1,19008:32583028,41453019:21210068 -g1,19008:32583028,41453019 -) -] -) -g1,19010:32583029,41560497 -g1,19010:6630773,41560497 -g1,19010:6630773,41560497 -g1,19010:32583029,41560497 -g1,19010:32583029,41560497 -) -h1,19010:6630773,41757105:0,0,0 -] -(1,19019:32583029,45706769:0,0,0 -g1,19019:32583029,45706769 -) -) -] -(1,19019:6630773,47279633:25952256,0,0 -h1,19019:6630773,47279633:25952256,0,0 -) -] -(1,19019:4262630,4025873:0,0,0 -[1,19019:-473656,4025873:0,0,0 -(1,19019:-473656,-710413:0,0,0 -(1,19019:-473656,-710413:0,0,0 -g1,19019:-473656,-710413 -) -g1,19019:-473656,-710413 -) -] -) -] -!22200 -}337 -Input:2997:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2998:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2999:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3000:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3001:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3002:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3003:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3004:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3005:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3006:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3007:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3008:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3009:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3010:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3011:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3012:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3013:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3014:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3015:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3016:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1892 -{338 -[1,19057:4262630,47279633:28320399,43253760,0 -(1,19057:4262630,4025873:0,0,0 -[1,19057:-473656,4025873:0,0,0 -(1,19057:-473656,-710413:0,0,0 -(1,19057:-473656,-644877:0,0,0 -k1,19057:-473656,-644877:-65536 ) -(1,19057:-473656,4736287:0,0,0 -k1,19057:-473656,4736287:5209943 +k1,18924:3078556,49800853:-34777008 +) +] +g1,18924:6630773,4812305 +g1,18924:6630773,4812305 +g1,18924:9560887,4812305 +k1,18924:31387651,4812305:21826764 +) +) +] +[1,18924:6630773,45706769:25952256,40108032,0 +(1,18924:6630773,45706769:25952256,40108032,0 +(1,18924:6630773,45706769:0,0,0 +g1,18924:6630773,45706769 +) +[1,18924:6630773,45706769:25952256,40108032,0 +(1,18871:6630773,6254097:25952256,513147,126483 +h1,18870:6630773,6254097:983040,0,0 +k1,18870:8813515,6254097:246153 +k1,18870:10192130,6254097:246153 +k1,18870:12166468,6254097:246154 +k1,18870:12768481,6254097:246153 +k1,18870:15048872,6254097:246153 +k1,18870:17464267,6254097:246153 +k1,18870:18987717,6254097:246153 +k1,18870:19849909,6254097:246154 +k1,18870:20451922,6254097:246153 +k1,18870:22542913,6254097:246153 +k1,18870:23448358,6254097:246153 +k1,18870:26859900,6254097:246153 +k1,18870:27830882,6254097:246154 +k1,18870:29361541,6254097:246153 +k1,18870:30626779,6254097:246153 +k1,18871:32583029,6254097:0 +) +(1,18871:6630773,7119177:25952256,513147,134348 +k1,18870:8655966,7119177:251789 +k1,18870:9899315,7119177:251789 +k1,18870:12021502,7119177:251789 +k1,18870:12924720,7119177:251790 +k1,18870:16678098,7119177:251789 +k1,18870:17883436,7119177:251789 +k1,18870:19441358,7119177:251789 +k1,18870:20890490,7119177:251789 +k1,18870:22371079,7119177:251789 +k1,18870:23641953,7119177:251789 +k1,18870:25805428,7119177:251790 +k1,18870:26685052,7119177:251789 +k1,18870:28140082,7119177:251789 +k1,18870:29932622,7119177:251789 +k1,18870:31052763,7119177:251789 +k1,18870:32583029,7119177:0 +) +(1,18871:6630773,7984257:25952256,513147,134348 +k1,18870:7562739,7984257:280538 +k1,18870:9280482,7984257:280538 +k1,18870:10247182,7984257:280538 +k1,18870:11298424,7984257:280539 +k1,18870:14651290,7984257:280538 +k1,18870:15583256,7984257:280538 +(1,18870:15583256,7984257:0,452978,115847 +r1,18924:20513776,7984257:4930520,568825,115847 +k1,18870:15583256,7984257:-4930520 +) +(1,18870:15583256,7984257:4930520,452978,115847 +k1,18870:15583256,7984257:3277 +h1,18870:20510499,7984257:0,411205,112570 +) +k1,18870:20967984,7984257:280538 +k1,18870:22267607,7984257:280538 +(1,18870:22267607,7984257:0,414482,122846 +r1,18924:23681008,7984257:1413401,537328,122846 +k1,18870:22267607,7984257:-1413401 +) +(1,18870:22267607,7984257:1413401,414482,122846 +k1,18870:22267607,7984257:3277 +h1,18870:23677731,7984257:0,411205,112570 +) +k1,18870:23961546,7984257:280538 +k1,18870:24893512,7984257:280538 +k1,18870:26440207,7984257:280539 +k1,18870:27406907,7984257:280538 +k1,18870:28706530,7984257:280538 +k1,18870:31252648,7984257:280538 +k1,18871:32583029,7984257:0 +) +(1,18871:6630773,8849337:25952256,513147,134348 +(1,18870:6630773,8849337:0,452978,122846 +r1,18924:12616428,8849337:5985655,575824,122846 +k1,18870:6630773,8849337:-5985655 +) +(1,18870:6630773,8849337:5985655,452978,122846 +k1,18870:6630773,8849337:3277 +h1,18870:12613151,8849337:0,411205,112570 +) +k1,18870:13034107,8849337:244009 +k1,18870:15679356,8849337:244010 +k1,18870:17312728,8849337:244009 +k1,18870:18504388,8849337:244009 +k1,18870:21272844,8849337:244009 +k1,18870:23123797,8849337:244010 +k1,18870:24742751,8849337:244009 +k1,18870:25602798,8849337:244009 +k1,18870:28512812,8849337:244009 +k1,18870:29408250,8849337:244010 +k1,18870:30671344,8849337:244009 +k1,18870:32583029,8849337:0 +) +(1,18871:6630773,9714417:25952256,513147,126483 +k1,18870:8158401,9714417:146784 +k1,18870:10966603,9714417:146785 +k1,18870:12536174,9714417:146784 +k1,18870:13038818,9714417:146784 +k1,18870:15559316,9714417:146784 +k1,18870:18680780,9714417:146785 +k1,18870:19513726,9714417:146784 +k1,18870:20679595,9714417:146784 +k1,18870:23584135,9714417:146785 +k1,18870:25411262,9714417:146784 +k1,18870:26225202,9714417:146784 +(1,18870:26225202,9714417:0,452978,115847 +r1,18924:27990315,9714417:1765113,568825,115847 +k1,18870:26225202,9714417:-1765113 +) +(1,18870:26225202,9714417:1765113,452978,115847 +k1,18870:26225202,9714417:3277 +h1,18870:27987038,9714417:0,411205,112570 +) +k1,18870:28137099,9714417:146784 +k1,18870:29515961,9714417:146785 +k1,18870:30681830,9714417:146784 +k1,18871:32583029,9714417:0 +) +(1,18871:6630773,10579497:25952256,513147,134348 +k1,18870:7834391,10579497:230408 +k1,18870:9012449,10579497:230407 +(1,18870:9012449,10579497:0,452978,122846 +r1,18924:13239545,10579497:4227096,575824,122846 +k1,18870:9012449,10579497:-4227096 +) +(1,18870:9012449,10579497:4227096,452978,122846 +k1,18870:9012449,10579497:3277 +h1,18870:13236268,10579497:0,411205,112570 +) +k1,18870:13469953,10579497:230408 +k1,18870:14509730,10579497:230407 +k1,18870:16238291,10579497:230408 +h1,18870:17433668,10579497:0,0,0 +k1,18870:17664076,10579497:230408 +k1,18870:18703853,10579497:230407 +k1,18870:19953346,10579497:230408 +k1,18870:21276238,10579497:230407 +k1,18870:22165938,10579497:230408 +k1,18870:24180891,10579497:230408 +k1,18870:25097460,10579497:230407 +(1,18870:25097460,10579497:0,452978,115847 +r1,18924:26862573,10579497:1765113,568825,115847 +k1,18870:25097460,10579497:-1765113 +) +(1,18870:25097460,10579497:1765113,452978,115847 +k1,18870:25097460,10579497:3277 +h1,18870:26859296,10579497:0,411205,112570 +) +k1,18870:27473745,10579497:230408 +k1,18870:30043132,10579497:230407 +k1,18870:30932832,10579497:230408 +k1,18871:32583029,10579497:0 +) +(1,18871:6630773,11444577:25952256,505283,134348 +k1,18870:7889045,11444577:268023 +(1,18870:7889045,11444577:0,452978,115847 +r1,18924:10005870,11444577:2116825,568825,115847 +k1,18870:7889045,11444577:-2116825 +) +(1,18870:7889045,11444577:2116825,452978,115847 +k1,18870:7889045,11444577:3277 +h1,18870:10002593,11444577:0,411205,112570 +) +k1,18870:10273893,11444577:268023 +k1,18870:11228079,11444577:268024 +k1,18870:12266805,11444577:268023 +k1,18870:15607156,11444577:268023 +k1,18870:16526607,11444577:268023 +k1,18870:20075363,11444577:268024 +(1,18870:20075363,11444577:0,459977,115847 +r1,18924:21137052,11444577:1061689,575824,115847 +k1,18870:20075363,11444577:-1061689 +) +(1,18870:20075363,11444577:1061689,459977,115847 +k1,18870:20075363,11444577:3277 +h1,18870:21133775,11444577:0,411205,112570 +) +k1,18870:21405075,11444577:268023 +k1,18870:23913774,11444577:268023 +k1,18870:26049573,11444577:268023 +(1,18870:26049573,11444577:0,459977,115847 +r1,18924:27814686,11444577:1765113,575824,115847 +k1,18870:26049573,11444577:-1765113 +) +(1,18870:26049573,11444577:1765113,459977,115847 +k1,18870:26049573,11444577:3277 +h1,18870:27811409,11444577:0,411205,112570 +) +k1,18870:28463474,11444577:268024 +k1,18870:29599849,11444577:268023 +k1,18870:30972154,11444577:268023 +k1,18870:32583029,11444577:0 +) +(1,18871:6630773,12309657:25952256,513147,126483 +k1,18870:7321940,12309657:225206 +k1,18870:10076835,12309657:225205 +k1,18870:12004011,12309657:225206 +k1,18870:15219625,12309657:225206 +k1,18870:18470628,12309657:225206 +k1,18870:19842059,12309657:225206 +(1,18870:19842059,12309657:0,452978,115847 +r1,18924:22662308,12309657:2820249,568825,115847 +k1,18870:19842059,12309657:-2820249 +) +(1,18870:19842059,12309657:2820249,452978,115847 +k1,18870:19842059,12309657:3277 +h1,18870:22659031,12309657:0,411205,112570 +) +k1,18870:23061183,12309657:225205 +k1,18870:23914224,12309657:225206 +k1,18870:25158515,12309657:225206 +k1,18870:26750801,12309657:225205 +k1,18870:27635299,12309657:225206 +k1,18870:29557232,12309657:225206 +k1,18870:32583029,12309657:0 +) +(1,18871:6630773,13174737:25952256,505283,134348 +k1,18870:8106896,13174737:191617 +k1,18870:10309158,13174737:191617 +k1,18870:10856635,13174737:191617 +k1,18870:12921271,13174737:191617 +k1,18870:16321531,13174737:191617 +k1,18870:18367162,13174737:191617 +k1,18870:19427131,13174737:191617 +k1,18870:21055953,13174737:191617 +k1,18870:23060296,13174737:191617 +k1,18870:23934798,13174737:191617 +k1,18870:27101094,13174737:191617 +k1,18870:29488822,13174737:191617 +k1,18870:31074390,13174737:191617 +k1,18870:32583029,13174737:0 +) +(1,18871:6630773,14039817:25952256,459977,134348 +g1,18870:9071989,14039817 +g1,18870:9957380,14039817 +g1,18870:10927312,14039817 +g1,18870:14198869,14039817 +g1,18870:15049526,14039817 +g1,18870:18529487,14039817 +(1,18870:18529487,14039817:0,459977,115847 +r1,18924:19591176,14039817:1061689,575824,115847 +k1,18870:18529487,14039817:-1061689 +) +(1,18870:18529487,14039817:1061689,459977,115847 +k1,18870:18529487,14039817:3277 +h1,18870:19587899,14039817:0,411205,112570 +) +k1,18871:32583029,14039817:12818183 +g1,18871:32583029,14039817 +) +v1,18873:6630773,14724672:0,393216,0 +(1,18880:6630773,17119920:25952256,2788464,196608 +g1,18880:6630773,17119920 +g1,18880:6630773,17119920 +g1,18880:6434165,17119920 +(1,18880:6434165,17119920:0,2788464,196608 +r1,18924:32779637,17119920:26345472,2985072,196608 +k1,18880:6434165,17119920:-26345472 +) +(1,18880:6434165,17119920:26345472,2788464,196608 +[1,18880:6630773,17119920:25952256,2591856,0 +(1,18875:6630773,14959109:25952256,431045,112852 +(1,18874:6630773,14959109:0,0,0 +g1,18874:6630773,14959109 +g1,18874:6630773,14959109 +g1,18874:6303093,14959109 +(1,18874:6303093,14959109:0,0,0 +) +g1,18874:6630773,14959109 +) +k1,18875:6630773,14959109:0 +g1,18875:10614221,14959109 +g1,18875:11278129,14959109 +g1,18875:14929622,14959109 +g1,18875:16921346,14959109 +g1,18875:17585254,14959109 +g1,18875:18581116,14959109 +g1,18875:19245024,14959109 +g1,18875:19908932,14959109 +g1,18875:22564564,14959109 +h1,18875:22896518,14959109:0,0,0 +k1,18875:32583029,14959109:9686511 +g1,18875:32583029,14959109 +) +(1,18876:6630773,15643964:25952256,424439,112852 +h1,18876:6630773,15643964:0,0,0 +g1,18876:6962727,15643964 +g1,18876:7294681,15643964 +g1,18876:12937898,15643964 +g1,18876:13601806,15643964 +g1,18876:14929622,15643964 +h1,18876:15261576,15643964:0,0,0 +k1,18876:32583028,15643964:17321452 +g1,18876:32583028,15643964 +) +(1,18877:6630773,16328819:25952256,431045,112852 +h1,18877:6630773,16328819:0,0,0 +g1,18877:6962727,16328819 +g1,18877:7294681,16328819 +g1,18877:12937898,16328819 +g1,18877:13601806,16328819 +g1,18877:16257438,16328819 +g1,18877:17917208,16328819 +g1,18877:18581116,16328819 +k1,18877:18581116,16328819:0 +h1,18877:21236748,16328819:0,0,0 +k1,18877:32583029,16328819:11346281 +g1,18877:32583029,16328819 +) +(1,18878:6630773,17013674:25952256,424439,106246 +h1,18878:6630773,17013674:0,0,0 +g1,18878:6962727,17013674 +g1,18878:7294681,17013674 +g1,18878:7626635,17013674 +g1,18878:7958589,17013674 +g1,18878:8290543,17013674 +g1,18878:8622497,17013674 +g1,18878:8954451,17013674 +g1,18878:9286405,17013674 +g1,18878:9618359,17013674 +g1,18878:9950313,17013674 +g1,18878:10282267,17013674 +g1,18878:10614221,17013674 +g1,18878:10946175,17013674 +g1,18878:11278129,17013674 +g1,18878:11610083,17013674 +g1,18878:13601807,17013674 +g1,18878:14265715,17013674 +g1,18878:16589393,17013674 +g1,18878:18581117,17013674 +g1,18878:19245025,17013674 +g1,18878:20904795,17013674 +g1,18878:22564565,17013674 +g1,18878:23228473,17013674 +h1,18878:24224335,17013674:0,0,0 +k1,18878:32583029,17013674:8358694 +g1,18878:32583029,17013674 +) +] +) +g1,18880:32583029,17119920 +g1,18880:6630773,17119920 +g1,18880:6630773,17119920 +g1,18880:32583029,17119920 +g1,18880:32583029,17119920 +) +h1,18880:6630773,17316528:0,0,0 +(1,18883:6630773,26465730:25952256,9083666,0 +k1,18883:10523651,26465730:3892878 +h1,18882:10523651,26465730:0,0,0 +(1,18882:10523651,26465730:18166500,9083666,0 +(1,18882:10523651,26465730:18167376,9083688,0 +(1,18882:10523651,26465730:18167376,9083688,0 +(1,18882:10523651,26465730:0,9083688,0 +(1,18882:10523651,26465730:0,14208860,0 +(1,18882:10523651,26465730:28417720,14208860,0 +) +k1,18882:10523651,26465730:-28417720 +) +) +g1,18882:28691027,26465730 +) +) +) +g1,18883:28690151,26465730 +k1,18883:32583029,26465730:3892878 +) +(1,18890:6630773,27330810:25952256,513147,134348 +h1,18889:6630773,27330810:983040,0,0 +k1,18889:8682517,27330810:239674 +k1,18889:10359397,27330810:239675 +k1,18889:11285233,27330810:239674 +k1,18889:12295611,27330810:239675 +k1,18889:15607613,27330810:239674 +k1,18889:16203148,27330810:239675 +k1,18889:19138318,27330810:239674 +k1,18889:20662498,27330810:239674 +k1,18889:23243119,27330810:239675 +k1,18889:23838653,27330810:239674 +k1,18889:26280338,27330810:239675 +k1,18889:28200355,27330810:239674 +k1,18889:29586255,27330810:239675 +k1,18889:30845014,27330810:239674 +k1,18889:32583029,27330810:0 +) +(1,18890:6630773,28195890:25952256,513147,126483 +k1,18889:8219650,28195890:217864 +k1,18889:11874876,28195890:217863 +k1,18889:12775625,28195890:217864 +k1,18889:14695458,28195890:217863 +k1,18889:16901684,28195890:217864 +k1,18889:17987900,28195890:217864 +k1,18889:19298248,28195890:217863 +k1,18889:22796844,28195890:217864 +(1,18889:22796844,28195890:0,459977,115847 +r1,18924:25617093,28195890:2820249,575824,115847 +k1,18889:22796844,28195890:-2820249 +) +(1,18889:22796844,28195890:2820249,459977,115847 +k1,18889:22796844,28195890:3277 +h1,18889:25613816,28195890:0,411205,112570 +) +k1,18889:25834957,28195890:217864 +k1,18889:28380003,28195890:217863 +k1,18889:29265023,28195890:217864 +(1,18889:29265023,28195890:0,459977,115847 +r1,18924:30326712,28195890:1061689,575824,115847 +k1,18889:29265023,28195890:-1061689 +) +(1,18889:29265023,28195890:1061689,459977,115847 +k1,18889:29265023,28195890:3277 +h1,18889:30323435,28195890:0,411205,112570 +) +k1,18889:30718245,28195890:217863 +k1,18889:31563944,28195890:217864 +k1,18889:32583029,28195890:0 +) +(1,18890:6630773,29060970:25952256,513147,138281 +k1,18889:8266237,29060970:251344 +k1,18889:11178998,29060970:251344 +k1,18889:12298693,29060970:251343 +k1,18889:13747380,29060970:251344 +k1,18889:16067040,29060970:251344 +k1,18889:17509829,29060970:251344 +k1,18889:21198535,29060970:251343 +k1,18889:24206979,29060970:251344 +k1,18889:25405974,29060970:251344 +$1,18889:25405974,29060970 +k1,18889:26151209,29060970:277308 +k1,18889:26996714,29060970:277308 +$1,18889:28381490,29060970 +k1,18889:28632833,29060970:251343 +k1,18889:30110356,29060970:251344 +k1,18889:32583029,29060970:0 +) +(1,18890:6630773,29926050:25952256,505283,134348 +g1,18889:9871528,29926050 +k1,18890:32583029,29926050:19439944 +g1,18890:32583029,29926050 +) +v1,18892:6630773,30610905:0,393216,0 +(1,18896:6630773,30951588:25952256,733899,196608 +g1,18896:6630773,30951588 +g1,18896:6630773,30951588 +g1,18896:6434165,30951588 +(1,18896:6434165,30951588:0,733899,196608 +r1,18924:32779637,30951588:26345472,930507,196608 +k1,18896:6434165,30951588:-26345472 +) +(1,18896:6434165,30951588:26345472,733899,196608 +[1,18896:6630773,30951588:25952256,537291,0 +(1,18894:6630773,30845342:25952256,431045,106246 +(1,18893:6630773,30845342:0,0,0 +g1,18893:6630773,30845342 +g1,18893:6630773,30845342 +g1,18893:6303093,30845342 +(1,18893:6303093,30845342:0,0,0 +) +g1,18893:6630773,30845342 +) +k1,18894:6890726,30845342:259953 +k1,18894:7150679,30845342:259953 +k1,18894:14381664,30845342:259953 +k1,18894:14973570,30845342:259952 +k1,18894:20876740,30845342:259953 +k1,18894:22796463,30845342:259953 +k1,18894:23388370,30845342:259953 +k1,18894:25640047,30845342:259953 +k1,18894:27227816,30845342:259953 +k1,18894:27819722,30845342:259952 +k1,18894:28743583,30845342:259953 +k1,18894:30663306,30845342:259953 +k1,18894:31255213,30845342:259953 +h1,18894:32583029,30845342:0,0,0 +k1,18894:32583029,30845342:0 +k1,18894:32583029,30845342:0 +) +] +) +g1,18896:32583029,30951588 +g1,18896:6630773,30951588 +g1,18896:6630773,30951588 +g1,18896:32583029,30951588 +g1,18896:32583029,30951588 +) +h1,18896:6630773,31148196:0,0,0 +(1,18900:6630773,32013276:25952256,513147,138281 +h1,18899:6630773,32013276:983040,0,0 +k1,18899:8761588,32013276:194226 +k1,18899:10060097,32013276:194227 +k1,18899:12899356,32013276:194226 +k1,18899:14112668,32013276:194227 +k1,18899:16572474,32013276:194226 +k1,18899:17425993,32013276:194227 +$1,18899:17425993,32013276 +k1,18899:18075980,32013276:182060 +k1,18899:18826237,32013276:182060 +$1,18899:20211013,32013276 +k1,18899:20405239,32013276:194226 +k1,18899:21547117,32013276:194227 +k1,18899:25178706,32013276:194226 +k1,18899:28130033,32013276:194227 +k1,18899:29085787,32013276:194226 +k1,18899:31635378,32013276:194227 +k1,18899:32583029,32013276:0 +) +(1,18900:6630773,32878356:25952256,513147,134348 +k1,18899:9663667,32878356:197807 +(1,18899:9663667,32878356:0,459977,115847 +r1,18924:14945899,32878356:5282232,575824,115847 +k1,18899:9663667,32878356:-5282232 +) +(1,18899:9663667,32878356:5282232,459977,115847 +g1,18899:12832351,32878356 +g1,18899:13535775,32878356 +h1,18899:14942622,32878356:0,411205,112570 +) +k1,18899:15143706,32878356:197807 +k1,18899:15957551,32878356:197807 +k1,18899:17174443,32878356:197807 +k1,18899:18365776,32878356:197807 +k1,18899:19222875,32878356:197807 +k1,18899:22823311,32878356:197807 +k1,18899:25226405,32878356:197807 +k1,18899:26075640,32878356:197807 +k1,18899:27292532,32878356:197807 +k1,18899:30359505,32878356:197807 +k1,18899:31753999,32878356:197807 +k1,18900:32583029,32878356:0 +) +(1,18900:6630773,33743436:25952256,505283,134348 +k1,18899:8935316,33743436:163482 +k1,18899:10203081,33743436:163483 +k1,18899:11652379,33743436:163482 +k1,18899:12563628,33743436:163483 +k1,18899:15935753,33743436:163482 +k1,18899:18559458,33743436:163483 +k1,18899:21764466,33743436:163482 +k1,18899:25199506,33743436:163483 +k1,18899:27098381,33743436:163482 +k1,18899:28280949,33743436:163483 +k1,18899:31417799,33743436:163482 +k1,18900:32583029,33743436:0 +) +(1,18900:6630773,34608516:25952256,513147,126483 +k1,18899:9599183,34608516:139221 +k1,18899:12874956,34608516:139220 +k1,18899:14581798,34608516:139221 +k1,18899:15740104,34608516:139221 +k1,18899:17268687,34608516:139220 +k1,18899:18169436,34608516:139221 +k1,18899:21580870,34608516:139221 +k1,18899:22549121,34608516:139221 +k1,18899:25045671,34608516:139220 +k1,18899:26388133,34608516:139221 +k1,18899:27395706,34608516:139221 +k1,18899:28972131,34608516:139220 +k1,18899:29762780,34608516:139221 +(1,18899:29762780,34608516:0,459977,115847 +r1,18924:32583029,34608516:2820249,575824,115847 +k1,18899:29762780,34608516:-2820249 +) +(1,18899:29762780,34608516:2820249,459977,115847 +k1,18899:29762780,34608516:3277 +h1,18899:32579752,34608516:0,411205,112570 +) +k1,18899:32583029,34608516:0 +) +(1,18900:6630773,35473596:25952256,513147,134348 +g1,18899:7849087,35473596 +g1,18899:11120644,35473596 +(1,18899:11120644,35473596:0,452978,115847 +r1,18924:16051164,35473596:4930520,568825,115847 +k1,18899:11120644,35473596:-4930520 +) +(1,18899:11120644,35473596:4930520,452978,115847 +k1,18899:11120644,35473596:3277 +h1,18899:16047887,35473596:0,411205,112570 +) +g1,18899:16250393,35473596 +g1,18899:18776805,35473596 +g1,18899:19643190,35473596 +(1,18899:19643190,35473596:0,452978,115847 +r1,18924:25277133,35473596:5633943,568825,115847 +k1,18899:19643190,35473596:-5633943 +) +(1,18899:19643190,35473596:5633943,452978,115847 +k1,18899:19643190,35473596:3277 +h1,18899:25273856,35473596:0,411205,112570 +) +k1,18900:32583029,35473596:7132226 +g1,18900:32583029,35473596 +) +v1,18902:6630773,36158451:0,393216,0 +(1,18908:6630773,37868844:25952256,2103609,196608 +g1,18908:6630773,37868844 +g1,18908:6630773,37868844 +g1,18908:6434165,37868844 +(1,18908:6434165,37868844:0,2103609,196608 +r1,18924:32779637,37868844:26345472,2300217,196608 +k1,18908:6434165,37868844:-26345472 +) +(1,18908:6434165,37868844:26345472,2103609,196608 +[1,18908:6630773,37868844:25952256,1907001,0 +(1,18904:6630773,36392888:25952256,431045,106246 +(1,18903:6630773,36392888:0,0,0 +g1,18903:6630773,36392888 +g1,18903:6630773,36392888 +g1,18903:6303093,36392888 +(1,18903:6303093,36392888:0,0,0 +) +g1,18903:6630773,36392888 +) +g1,18904:6962727,36392888 +g1,18904:7294681,36392888 +g1,18904:14597667,36392888 +g1,18904:15261575,36392888 +k1,18904:15261575,36392888:0 +h1,18904:20240884,36392888:0,0,0 +k1,18904:32583029,36392888:12342145 +g1,18904:32583029,36392888 +) +(1,18905:6630773,37077743:25952256,431045,112852 +h1,18905:6630773,37077743:0,0,0 +g1,18905:6962727,37077743 +g1,18905:7294681,37077743 +g1,18905:7626635,37077743 +g1,18905:7958589,37077743 +g1,18905:8290543,37077743 +g1,18905:8622497,37077743 +g1,18905:8954451,37077743 +g1,18905:9286405,37077743 +g1,18905:9618359,37077743 +g1,18905:9950313,37077743 +g1,18905:10282267,37077743 +g1,18905:10614221,37077743 +g1,18905:10946175,37077743 +g1,18905:11278129,37077743 +g1,18905:11610083,37077743 +g1,18905:14597668,37077743 +g1,18905:15261576,37077743 +g1,18905:19908931,37077743 +g1,18905:20572839,37077743 +k1,18905:20572839,37077743:0 +h1,18905:22564563,37077743:0,0,0 +k1,18905:32583029,37077743:10018466 +g1,18905:32583029,37077743 +) +(1,18906:6630773,37762598:25952256,424439,106246 +h1,18906:6630773,37762598:0,0,0 +g1,18906:6962727,37762598 +g1,18906:7294681,37762598 +g1,18906:7626635,37762598 +g1,18906:7958589,37762598 +g1,18906:8290543,37762598 +g1,18906:8622497,37762598 +g1,18906:8954451,37762598 +g1,18906:9286405,37762598 +g1,18906:9618359,37762598 +g1,18906:9950313,37762598 +g1,18906:10282267,37762598 +g1,18906:10614221,37762598 +g1,18906:10946175,37762598 +g1,18906:11278129,37762598 +g1,18906:11610083,37762598 +g1,18906:13601807,37762598 +g1,18906:14265715,37762598 +g1,18906:16589393,37762598 +g1,18906:18249163,37762598 +g1,18906:18913071,37762598 +g1,18906:19908933,37762598 +g1,18906:21900657,37762598 +g1,18906:22564565,37762598 +h1,18906:23892381,37762598:0,0,0 +k1,18906:32583029,37762598:8690648 +g1,18906:32583029,37762598 +) +] +) +g1,18908:32583029,37868844 +g1,18908:6630773,37868844 +g1,18908:6630773,37868844 +g1,18908:32583029,37868844 +g1,18908:32583029,37868844 +) +h1,18908:6630773,38065452:0,0,0 +(1,18912:6630773,38930532:25952256,513147,126483 +h1,18911:6630773,38930532:983040,0,0 +g1,18911:8855064,38930532 +$1,18911:8855064,38930532 +[1,18911:8855064,38930532:502661,458096,7864 +(1,18911:9325611,38922668:0,450232,0 +) +(1,18911:8855064,38930532:502661,355205,7864 +) +] +g1,18911:9503373,38930532 +g1,18911:10217218,38930532 +(1,18911:10217218,38930532:1056440,355205,7864 +) +$1,18911:11273658,38930532 +g1,18911:11472887,38930532 +g1,18911:12540468,38930532 +g1,18911:14920080,38930532 +g1,18911:16556514,38930532 +(1,18911:16556514,38930532:0,452978,115847 +r1,18924:19728474,38930532:3171960,568825,115847 +k1,18911:16556514,38930532:-3171960 +) +(1,18911:16556514,38930532:3171960,452978,115847 +k1,18911:16556514,38930532:3277 +h1,18911:19725197,38930532:0,411205,112570 +) +g1,18911:19927703,38930532 +g1,18911:21318377,38930532 +g1,18911:22465257,38930532 +$1,18911:22465257,38930532 +[1,18911:22465257,38930532:502661,458096,7864 +(1,18911:22935804,38922668:0,450232,0 +) +(1,18911:22465257,38930532:502661,355205,7864 +) +] +g1,18911:23113566,38930532 +g1,18911:23827411,38930532 +(1,18911:23827411,38930532:1129840,505283,7864 +) +$1,18911:24957251,38930532 +g1,18911:25156480,38930532 +(1,18911:25156480,38930532:0,452978,115847 +r1,18924:28680152,38930532:3523672,568825,115847 +k1,18911:25156480,38930532:-3523672 +) +(1,18911:25156480,38930532:3523672,452978,115847 +k1,18911:25156480,38930532:3277 +h1,18911:28676875,38930532:0,411205,112570 +) +k1,18912:32583029,38930532:3729207 +g1,18912:32583029,38930532 +) +v1,18914:6630773,39615387:0,393216,0 +(1,18919:6630773,40640925:25952256,1418754,196608 +g1,18919:6630773,40640925 +g1,18919:6630773,40640925 +g1,18919:6434165,40640925 +(1,18919:6434165,40640925:0,1418754,196608 +r1,18924:32779637,40640925:26345472,1615362,196608 +k1,18919:6434165,40640925:-26345472 +) +(1,18919:6434165,40640925:26345472,1418754,196608 +[1,18919:6630773,40640925:25952256,1222146,0 +(1,18916:6630773,39849824:25952256,431045,106246 +(1,18915:6630773,39849824:0,0,0 +g1,18915:6630773,39849824 +g1,18915:6630773,39849824 +g1,18915:6303093,39849824 +(1,18915:6303093,39849824:0,0,0 +) +g1,18915:6630773,39849824 +) +g1,18916:6962727,39849824 +g1,18916:7294681,39849824 +g1,18916:14597667,39849824 +g1,18916:15261575,39849824 +k1,18916:15261575,39849824:0 +h1,18916:18581114,39849824:0,0,0 +k1,18916:32583029,39849824:14001915 +g1,18916:32583029,39849824 +) +(1,18917:6630773,40534679:25952256,424439,106246 +h1,18917:6630773,40534679:0,0,0 +g1,18917:6962727,40534679 +g1,18917:7294681,40534679 +g1,18917:7626635,40534679 +g1,18917:7958589,40534679 +g1,18917:8290543,40534679 +g1,18917:8622497,40534679 +g1,18917:8954451,40534679 +g1,18917:9286405,40534679 +g1,18917:9618359,40534679 +g1,18917:9950313,40534679 +g1,18917:10282267,40534679 +g1,18917:10614221,40534679 +g1,18917:10946175,40534679 +g1,18917:11278129,40534679 +g1,18917:11610083,40534679 +g1,18917:13601807,40534679 +g1,18917:14265715,40534679 +g1,18917:16589393,40534679 +g1,18917:18249163,40534679 +g1,18917:18913071,40534679 +g1,18917:19908933,40534679 +g1,18917:21900657,40534679 +g1,18917:22564565,40534679 +h1,18917:23892381,40534679:0,0,0 +k1,18917:32583029,40534679:8690648 +g1,18917:32583029,40534679 +) +] +) +g1,18919:32583029,40640925 +g1,18919:6630773,40640925 +g1,18919:6630773,40640925 +g1,18919:32583029,40640925 +g1,18919:32583029,40640925 +) +h1,18919:6630773,40837533:0,0,0 +(1,18923:6630773,41702613:25952256,513147,134348 +h1,18922:6630773,41702613:983040,0,0 +k1,18922:8838681,41702613:271319 +k1,18922:9925268,41702613:271319 +k1,18922:11262858,41702613:271319 +k1,18922:12814095,41702613:271319 +k1,18922:13856117,41702613:271319 +k1,18922:16788853,41702613:271319 +k1,18922:18631724,41702613:271318 +k1,18922:19975212,41702613:271319 +k1,18922:20704628,41702613:271319 +k1,18922:21507444,41702613:271319 +k1,18922:24408723,41702613:271319 +k1,18922:25331470,41702613:271319 +k1,18922:26695274,41702613:271319 +k1,18922:30942007,41702613:271319 +k1,18923:32583029,41702613:0 +) +(1,18923:6630773,42567693:25952256,513147,134348 +k1,18922:8485278,42567693:256737 +k1,18922:11069199,42567693:256738 +k1,18922:11985228,42567693:256737 +k1,18922:13261050,42567693:256737 +k1,18922:16543585,42567693:256738 +k1,18922:19641308,42567693:256737 +k1,18922:20659573,42567693:256737 +k1,18922:23496463,42567693:256738 +k1,18922:26581733,42567693:256737 +k1,18922:28900233,42567693:256737 +k1,18922:29966341,42567693:256738 +k1,18922:31966991,42567693:256737 +k1,18922:32583029,42567693:0 +) +(1,18923:6630773,43432773:25952256,513147,134348 +k1,18922:9394863,43432773:183938 +k1,18922:12259222,43432773:183937 +k1,18922:14971539,43432773:183938 +k1,18922:18558105,43432773:183937 +k1,18922:19393471,43432773:183938 +k1,18922:20596493,43432773:183937 +k1,18922:23475927,43432773:183938 +k1,18922:25346762,43432773:183938 +k1,18922:27601637,43432773:183937 +k1,18922:28733226,43432773:183938 +k1,18922:29936248,43432773:183937 +k1,18922:31426319,43432773:183938 +k1,18922:32583029,43432773:0 +) +(1,18923:6630773,44297853:25952256,505283,138281 +k1,18922:10153582,44297853:160812 +k1,18922:11333479,44297853:160812 +k1,18922:14005632,44297853:160813 +k1,18922:14782482,44297853:160812 +(1,18922:14782482,44297853:0,452978,115847 +r1,18924:16195883,44297853:1413401,568825,115847 +k1,18922:14782482,44297853:-1413401 +) +(1,18922:14782482,44297853:1413401,452978,115847 +k1,18922:14782482,44297853:3277 +h1,18922:16192606,44297853:0,411205,112570 +) +k1,18922:16356695,44297853:160812 +k1,18922:19102902,44297853:160812 +k1,18922:19915142,44297853:160812 +k1,18922:21095040,44297853:160813 +$1,18922:21095040,44297853 +$1,18922:21646853,44297853 +k1,18922:21807665,44297853:160812 +k1,18922:24986410,44297853:160812 +k1,18922:26138782,44297853:160812 +k1,18922:29060627,44297853:160813 +k1,18922:29907601,44297853:160812 +k1,18922:30424273,44297853:160812 +k1,18922:32583029,44297853:0 +) +] +(1,18924:32583029,45706769:0,0,0 +g1,18924:32583029,45706769 +) +) +] +(1,18924:6630773,47279633:25952256,0,0 +h1,18924:6630773,47279633:25952256,0,0 +) +] +(1,18924:4262630,4025873:0,0,0 +[1,18924:-473656,4025873:0,0,0 +(1,18924:-473656,-710413:0,0,0 +(1,18924:-473656,-710413:0,0,0 +g1,18924:-473656,-710413 +) +g1,18924:-473656,-710413 +) +] +) +] +!29849 +}316 +Input:2964:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2965:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2966:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2967:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2968:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2969:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2970:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2971:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2972:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2973:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2974:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2975:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2976:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2977:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2978:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2979:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2980:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2981:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2982:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2983:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2984:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2985:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2986:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2987:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!2268 +{317 +[1,18983:4262630,47279633:28320399,43253760,0 +(1,18983:4262630,4025873:0,0,0 +[1,18983:-473656,4025873:0,0,0 +(1,18983:-473656,-710413:0,0,0 +(1,18983:-473656,-644877:0,0,0 +k1,18983:-473656,-644877:-65536 +) +(1,18983:-473656,4736287:0,0,0 +k1,18983:-473656,4736287:5209943 ) -g1,19057:-473656,-710413 +g1,18983:-473656,-710413 ) ] ) -[1,19057:6630773,47279633:25952256,43253760,0 -[1,19057:6630773,4812305:25952256,786432,0 -(1,19057:6630773,4812305:25952256,485622,11795 -(1,19057:6630773,4812305:25952256,485622,11795 -g1,19057:3078558,4812305 -[1,19057:3078558,4812305:0,0,0 -(1,19057:3078558,2439708:0,1703936,0 -k1,19057:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,19057:2537886,2439708:1179648,16384,0 +[1,18983:6630773,47279633:25952256,43253760,0 +[1,18983:6630773,4812305:25952256,786432,0 +(1,18983:6630773,4812305:25952256,513147,126483 +(1,18983:6630773,4812305:25952256,513147,126483 +g1,18983:3078558,4812305 +[1,18983:3078558,4812305:0,0,0 +(1,18983:3078558,2439708:0,1703936,0 +k1,18983:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,18983:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,19057:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,18983:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,19057:3078558,4812305:0,0,0 -(1,19057:3078558,2439708:0,1703936,0 -g1,19057:29030814,2439708 -g1,19057:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,19057:36151628,1915420:16384,1179648,0 +[1,18983:3078558,4812305:0,0,0 +(1,18983:3078558,2439708:0,1703936,0 +g1,18983:29030814,2439708 +g1,18983:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,18983:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,19057:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,18983:37855564,2439708:1179648,16384,0 ) ) -k1,19057:3078556,2439708:-34777008 +k1,18983:3078556,2439708:-34777008 ) ] -[1,19057:3078558,4812305:0,0,0 -(1,19057:3078558,49800853:0,16384,2228224 -k1,19057:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,19057:2537886,49800853:1179648,16384,0 +[1,18983:3078558,4812305:0,0,0 +(1,18983:3078558,49800853:0,16384,2228224 +k1,18983:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,18983:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,19057:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,18983:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,19057:3078558,4812305:0,0,0 -(1,19057:3078558,49800853:0,16384,2228224 -g1,19057:29030814,49800853 -g1,19057:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,19057:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +[1,18983:3078558,4812305:0,0,0 +(1,18983:3078558,49800853:0,16384,2228224 +g1,18983:29030814,49800853 +g1,18983:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,18983:36151628,51504789:16384,1179648,0 +) +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 +) +] +) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,18983:37855564,49800853:1179648,16384,0 +) +) +k1,18983:3078556,49800853:-34777008 +) +] +g1,18983:6630773,4812305 +k1,18983:21350816,4812305:13524666 +g1,18983:21999622,4812305 +g1,18983:25611966,4812305 +g1,18983:28956923,4812305 +g1,18983:29772190,4812305 +) +) +] +[1,18983:6630773,45706769:25952256,40108032,0 +(1,18983:6630773,45706769:25952256,40108032,0 +(1,18983:6630773,45706769:0,0,0 +g1,18983:6630773,45706769 +) +[1,18983:6630773,45706769:25952256,40108032,0 +(1,18923:6630773,6254097:25952256,513147,134348 +k1,18922:7863901,6254097:239602 +k1,18922:10662029,6254097:239602 +k1,18922:14182363,6254097:239602 +(1,18922:14182363,6254097:0,459977,122846 +r1,18983:17002612,6254097:2820249,582823,122846 +k1,18922:14182363,6254097:-2820249 +) +(1,18922:14182363,6254097:2820249,459977,122846 +k1,18922:14182363,6254097:3277 +h1,18922:16999335,6254097:0,411205,112570 +) +k1,18922:17415884,6254097:239602 +k1,18922:18674571,6254097:239602 +k1,18922:20982489,6254097:239602 +k1,18922:22735317,6254097:239602 +k1,18922:23922570,6254097:239602 +k1,18922:27773206,6254097:239602 +k1,18922:28628846,6254097:239602 +k1,18922:29887533,6254097:239602 +k1,18922:32583029,6254097:0 +) +(1,18923:6630773,7119177:25952256,513147,126483 +g1,18922:9912160,7119177 +g1,18922:11641655,7119177 +g1,18922:13216485,7119177 +g1,18922:15396867,7119177 +g1,18922:16615181,7119177 +g1,18922:18882726,7119177 +g1,18922:19697993,7119177 +g1,18922:21100463,7119177 +k1,18923:32583029,7119177:10315370 +g1,18923:32583029,7119177 +) +(1,18925:6630773,7984257:25952256,505283,126483 +h1,18924:6630773,7984257:983040,0,0 +k1,18924:10043778,7984257:153900 +k1,18924:11066031,7984257:153901 +k1,18924:12497228,7984257:153900 +k1,18924:13670213,7984257:153900 +k1,18924:15892430,7984257:153901 +k1,18924:16662368,7984257:153900 +k1,18924:17172128,7984257:153900 +k1,18924:19495271,7984257:153901 +k1,18924:21100138,7984257:153900 +k1,18924:22647989,7984257:153900 +k1,18924:23820975,7984257:153901 +k1,18924:28046627,7984257:153900 +k1,18924:32583029,7984257:0 +) +(1,18925:6630773,8849337:25952256,513147,126483 +k1,18924:7626374,8849337:186231 +k1,18924:8831691,8849337:186232 +k1,18924:10624865,8849337:186231 +k1,18924:12186042,8849337:186232 +k1,18924:13058435,8849337:186231 +k1,18924:13600526,8849337:186231 +k1,18924:15629630,8849337:186232 +k1,18924:16475153,8849337:186231 +k1,18924:17680469,8849337:186231 +k1,18924:19606027,8849337:186232 +k1,18924:20408296,8849337:186231 +k1,18924:22479999,8849337:186232 +k1,18924:23685315,8849337:186231 +k1,18924:25759638,8849337:186231 +k1,18924:26937430,8849337:186232 +k1,18924:29089086,8849337:186231 +k1,18924:29926746,8849337:186232 +k1,18924:31132062,8849337:186231 +k1,18924:32583029,8849337:0 +) +(1,18925:6630773,9714417:25952256,505283,126483 +k1,18924:7446819,9714417:188211 +k1,18924:8838271,9714417:188211 +k1,18924:10567233,9714417:188211 +k1,18924:11623797,9714417:188212 +k1,18924:12746551,9714417:188211 +(1,18924:12746551,9714417:0,459977,115847 +r1,18983:14159952,9714417:1413401,575824,115847 +k1,18924:12746551,9714417:-1413401 +) +(1,18924:12746551,9714417:1413401,459977,115847 +k1,18924:12746551,9714417:3277 +h1,18924:14156675,9714417:0,411205,112570 +) +k1,18924:14521833,9714417:188211 +(1,18924:14521833,9714417:0,452978,115847 +r1,18983:16286946,9714417:1765113,568825,115847 +k1,18924:14521833,9714417:-1765113 +) +(1,18924:14521833,9714417:1765113,452978,115847 +k1,18924:14521833,9714417:3277 +h1,18924:16283669,9714417:0,411205,112570 +) +k1,18924:16475157,9714417:188211 +k1,18924:17854813,9714417:188211 +(1,18924:17854813,9714417:0,452978,115847 +r1,18983:19619926,9714417:1765113,568825,115847 +k1,18924:17854813,9714417:-1765113 +) +(1,18924:17854813,9714417:1765113,452978,115847 +k1,18924:17854813,9714417:3277 +h1,18924:19616649,9714417:0,411205,112570 +) +k1,18924:19808137,9714417:188211 +k1,18924:24578625,9714417:188211 +k1,18924:25418265,9714417:188212 +k1,18924:28868203,9714417:188211 +k1,18924:30128583,9714417:188211 +k1,18924:30932832,9714417:188211 +k1,18924:32583029,9714417:0 +) +(1,18925:6630773,10579497:25952256,513147,134348 +k1,18924:9547889,10579497:230795 +k1,18924:11168048,10579497:230796 +k1,18924:12837358,10579497:230795 +k1,18924:15875715,10579497:230795 +k1,18924:17745566,10579497:230796 +k1,18924:18627789,10579497:230795 +k1,18924:21082877,10579497:230796 +k1,18924:21929710,10579497:230795 +(1,18924:21929710,10579497:0,452978,115847 +r1,18983:23343111,10579497:1413401,568825,115847 +k1,18924:21929710,10579497:-1413401 +) +(1,18924:21929710,10579497:1413401,452978,115847 +k1,18924:21929710,10579497:3277 +h1,18924:23339834,10579497:0,411205,112570 +) +k1,18924:23573906,10579497:230795 +k1,18924:24908984,10579497:230796 +k1,18924:25887545,10579497:230795 +k1,18924:27631566,10579497:230795 +k1,18924:28810013,10579497:230796 +k1,18924:31923737,10579497:230795 +k1,18924:32583029,10579497:0 +) +(1,18925:6630773,11444577:25952256,505283,134348 +k1,18924:11104297,11444577:228102 +k1,18924:12994393,11444577:228103 +k1,18924:15410087,11444577:228102 +k1,18924:16810628,11444577:228102 +k1,18924:18316028,11444577:228103 +k1,18924:20432222,11444577:228102 +k1,18924:22054276,11444577:228103 +(1,18924:22054276,11444577:0,452978,115847 +r1,18983:26984796,11444577:4930520,568825,115847 +k1,18924:22054276,11444577:-4930520 +) +(1,18924:22054276,11444577:4930520,452978,115847 +k1,18924:22054276,11444577:3277 +h1,18924:26981519,11444577:0,411205,112570 +) +k1,18924:27212898,11444577:228102 +k1,18924:29452955,11444577:228102 +k1,18924:30426202,11444577:228103 +k1,18924:31305732,11444577:228102 +k1,18924:32583029,11444577:0 +) +(1,18925:6630773,12309657:25952256,513147,134348 +g1,18924:7849087,12309657 +g1,18924:9786331,12309657 +g1,18924:11177005,12309657 +g1,18924:12395319,12309657 +g1,18924:14201491,12309657 +g1,18924:15775665,12309657 +g1,18924:17710287,12309657 +g1,18924:20671859,12309657 +k1,18925:32583029,12309657:9791080 +g1,18925:32583029,12309657 +) +v1,18927:6630773,12994512:0,393216,0 +(1,18937:6630773,17450931:25952256,4849635,196608 +g1,18937:6630773,17450931 +g1,18937:6630773,17450931 +g1,18937:6434165,17450931 +(1,18937:6434165,17450931:0,4849635,196608 +r1,18983:32779637,17450931:26345472,5046243,196608 +k1,18937:6434165,17450931:-26345472 +) +(1,18937:6434165,17450931:26345472,4849635,196608 +[1,18937:6630773,17450931:25952256,4653027,0 +(1,18929:6630773,13228949:25952256,431045,112852 +(1,18928:6630773,13228949:0,0,0 +g1,18928:6630773,13228949 +g1,18928:6630773,13228949 +g1,18928:6303093,13228949 +(1,18928:6303093,13228949:0,0,0 +) +g1,18928:6630773,13228949 +) +k1,18929:6630773,13228949:0 +g1,18929:10614221,13228949 +g1,18929:11278129,13228949 +g1,18929:14929622,13228949 +g1,18929:16921346,13228949 +g1,18929:17585254,13228949 +g1,18929:18581116,13228949 +g1,18929:19245024,13228949 +g1,18929:19908932,13228949 +g1,18929:22564564,13228949 +h1,18929:22896518,13228949:0,0,0 +k1,18929:32583029,13228949:9686511 +g1,18929:32583029,13228949 +) +(1,18930:6630773,13913804:25952256,431045,112852 +h1,18930:6630773,13913804:0,0,0 +g1,18930:6962727,13913804 +g1,18930:7294681,13913804 +g1,18930:12937898,13913804 +g1,18930:13601806,13913804 +g1,18930:16257438,13913804 +g1,18930:17917208,13913804 +g1,18930:18581116,13913804 +k1,18930:18581116,13913804:0 +h1,18930:21236748,13913804:0,0,0 +k1,18930:32583029,13913804:11346281 +g1,18930:32583029,13913804 +) +(1,18931:6630773,14598659:25952256,431045,86428 +h1,18931:6630773,14598659:0,0,0 +g1,18931:6962727,14598659 +g1,18931:7294681,14598659 +g1,18931:7626635,14598659 +g1,18931:7958589,14598659 +g1,18931:8290543,14598659 +g1,18931:8622497,14598659 +g1,18931:8954451,14598659 +g1,18931:9286405,14598659 +g1,18931:9618359,14598659 +g1,18931:9950313,14598659 +g1,18931:10282267,14598659 +g1,18931:10614221,14598659 +g1,18931:10946175,14598659 +g1,18931:11278129,14598659 +g1,18931:11610083,14598659 +g1,18931:13269853,14598659 +g1,18931:13933761,14598659 +g1,18931:16921347,14598659 +g1,18931:18913071,14598659 +g1,18931:19576979,14598659 +g1,18931:22564565,14598659 +h1,18931:22896519,14598659:0,0,0 +k1,18931:32583029,14598659:9686510 +g1,18931:32583029,14598659 +) +(1,18932:6630773,15283514:25952256,431045,106246 +h1,18932:6630773,15283514:0,0,0 +g1,18932:6962727,15283514 +g1,18932:7294681,15283514 +g1,18932:14597667,15283514 +g1,18932:15261575,15283514 +k1,18932:15261575,15283514:0 +h1,18932:20240884,15283514:0,0,0 +k1,18932:32583029,15283514:12342145 +g1,18932:32583029,15283514 +) +(1,18933:6630773,15968369:25952256,424439,112852 +h1,18933:6630773,15968369:0,0,0 +g1,18933:6962727,15968369 +g1,18933:7294681,15968369 +g1,18933:7626635,15968369 +g1,18933:7958589,15968369 +g1,18933:8290543,15968369 +g1,18933:8622497,15968369 +g1,18933:8954451,15968369 +g1,18933:9286405,15968369 +g1,18933:9618359,15968369 +g1,18933:9950313,15968369 +g1,18933:10282267,15968369 +g1,18933:10614221,15968369 +g1,18933:10946175,15968369 +g1,18933:11278129,15968369 +g1,18933:11610083,15968369 +g1,18933:13269853,15968369 +g1,18933:13933761,15968369 +k1,18933:13933761,15968369:0 +h1,18933:17585254,15968369:0,0,0 +k1,18933:32583029,15968369:14997775 +g1,18933:32583029,15968369 +) +(1,18934:6630773,16653224:25952256,424439,86428 +h1,18934:6630773,16653224:0,0,0 +g1,18934:6962727,16653224 +g1,18934:7294681,16653224 +g1,18934:7626635,16653224 +g1,18934:7958589,16653224 +g1,18934:8290543,16653224 +g1,18934:8622497,16653224 +g1,18934:8954451,16653224 +g1,18934:9286405,16653224 +g1,18934:9618359,16653224 +g1,18934:9950313,16653224 +g1,18934:10282267,16653224 +g1,18934:10614221,16653224 +g1,18934:10946175,16653224 +g1,18934:11278129,16653224 +g1,18934:11610083,16653224 +g1,18934:13601807,16653224 +g1,18934:14265715,16653224 +g1,18934:15925485,16653224 +g1,18934:17585255,16653224 +g1,18934:18249163,16653224 +g1,18934:19245025,16653224 +g1,18934:21236749,16653224 +g1,18934:21900657,16653224 +g1,18934:24224335,16653224 +h1,18934:24556289,16653224:0,0,0 +k1,18934:32583029,16653224:8026740 +g1,18934:32583029,16653224 +) +(1,18935:6630773,17338079:25952256,424439,112852 +h1,18935:6630773,17338079:0,0,0 +g1,18935:6962727,17338079 +g1,18935:7294681,17338079 +g1,18935:12605944,17338079 +g1,18935:13269852,17338079 +g1,18935:14265714,17338079 +g1,18935:16257438,17338079 +g1,18935:16921346,17338079 +h1,18935:18249162,17338079:0,0,0 +k1,18935:32583029,17338079:14333867 +g1,18935:32583029,17338079 +) +] +) +g1,18937:32583029,17450931 +g1,18937:6630773,17450931 +g1,18937:6630773,17450931 +g1,18937:32583029,17450931 +g1,18937:32583029,17450931 +) +h1,18937:6630773,17647539:0,0,0 +(1,18941:6630773,18512619:25952256,505283,134348 +h1,18940:6630773,18512619:983040,0,0 +k1,18940:8801980,18512619:234618 +k1,18940:10140880,18512619:234618 +k1,18940:11652795,18512619:234618 +k1,18940:14129399,18512619:234617 +k1,18940:15046902,18512619:234618 +k1,18940:16983490,18512619:234618 +k1,18940:20899921,18512619:234618 +k1,18940:21896067,18512619:234618 +k1,18940:24023365,18512619:234618 +k1,18940:26843378,18512619:234618 +k1,18940:27729423,18512619:234617 +(1,18940:27729423,18512619:0,414482,115847 +r1,18983:28087689,18512619:358266,530329,115847 +k1,18940:27729423,18512619:-358266 +) +(1,18940:27729423,18512619:358266,414482,115847 +k1,18940:27729423,18512619:3277 +h1,18940:28084412,18512619:0,411205,112570 +) +k1,18940:28322307,18512619:234618 +(1,18940:28529401,18512619:0,452978,115847 +r1,18983:30294514,18512619:1765113,568825,115847 +k1,18940:28529401,18512619:-1765113 +) +(1,18940:28529401,18512619:1765113,452978,115847 +k1,18940:28529401,18512619:3277 +h1,18940:30291237,18512619:0,411205,112570 +) +k1,18940:30529132,18512619:234618 +k1,18940:31379788,18512619:234618 +k1,18940:32583029,18512619:0 +) +(1,18941:6630773,19377699:25952256,505283,134348 +k1,18940:9652331,19377699:153047 +k1,18940:10491540,19377699:153047 +k1,18940:13357778,19377699:153047 +k1,18940:14272354,19377699:153048 +k1,18940:16852855,19377699:153047 +(1,18940:16852855,19377699:0,452978,115847 +r1,18983:18617968,19377699:1765113,568825,115847 +k1,18940:16852855,19377699:-1765113 +) +(1,18940:16852855,19377699:1765113,452978,115847 +k1,18940:16852855,19377699:3277 +h1,18940:18614691,19377699:0,411205,112570 +) +k1,18940:18771015,19377699:153047 +k1,18940:19610224,19377699:153047 +k1,18940:20533974,19377699:153047 +k1,18940:23759349,19377699:153047 +k1,18940:24563824,19377699:153047 +(1,18940:24563824,19377699:0,414482,122846 +r1,18983:25977225,19377699:1413401,537328,122846 +k1,18940:24563824,19377699:-1413401 +) +(1,18940:24563824,19377699:1413401,414482,122846 +k1,18940:24563824,19377699:3277 +h1,18940:25973948,19377699:0,411205,112570 +) +k1,18940:26303942,19377699:153047 +k1,18940:27084825,19377699:153048 +k1,18940:28441113,19377699:153047 +k1,18940:29832135,19377699:153047 +k1,18940:30853534,19377699:153047 +k1,18940:32583029,19377699:0 +) +(1,18941:6630773,20242779:25952256,505283,126483 +g1,18940:7849087,20242779 +g1,18940:9578582,20242779 +g1,18940:10429239,20242779 +g1,18940:13416370,20242779 +g1,18940:14634684,20242779 +g1,18940:18342055,20242779 +g1,18940:19157322,20242779 +k1,18941:32583029,20242779:10666641 +g1,18941:32583029,20242779 +) +v1,18943:6630773,20927634:0,393216,0 +(1,18948:6630773,21953172:25952256,1418754,196608 +g1,18948:6630773,21953172 +g1,18948:6630773,21953172 +g1,18948:6434165,21953172 +(1,18948:6434165,21953172:0,1418754,196608 +r1,18983:32779637,21953172:26345472,1615362,196608 +k1,18948:6434165,21953172:-26345472 +) +(1,18948:6434165,21953172:26345472,1418754,196608 +[1,18948:6630773,21953172:25952256,1222146,0 +(1,18945:6630773,21155465:25952256,424439,112852 +(1,18944:6630773,21155465:0,0,0 +g1,18944:6630773,21155465 +g1,18944:6630773,21155465 +g1,18944:6303093,21155465 +(1,18944:6303093,21155465:0,0,0 +) +g1,18944:6630773,21155465 +) +k1,18945:6630773,21155465:0 +g1,18945:10614221,21155465 +g1,18945:14265715,21155465 +g1,18945:16257439,21155465 +h1,18945:16589393,21155465:0,0,0 +k1,18945:32583029,21155465:15993636 +g1,18945:32583029,21155465 +) +(1,18946:6630773,21840320:25952256,431045,112852 +h1,18946:6630773,21840320:0,0,0 +g1,18946:6962727,21840320 +g1,18946:7294681,21840320 +g1,18946:13269852,21840320 +g1,18946:13933760,21840320 +g1,18946:16257438,21840320 +g1,18946:17585254,21840320 +g1,18946:18249162,21840320 +h1,18946:19908932,21840320:0,0,0 +k1,18946:32583029,21840320:12674097 +g1,18946:32583029,21840320 +) +] +) +g1,18948:32583029,21953172 +g1,18948:6630773,21953172 +g1,18948:6630773,21953172 +g1,18948:32583029,21953172 +g1,18948:32583029,21953172 +) +h1,18948:6630773,22149780:0,0,0 +(1,18951:6630773,31298982:25952256,9083666,0 +k1,18951:10523651,31298982:3892878 +h1,18950:10523651,31298982:0,0,0 +(1,18950:10523651,31298982:18166500,9083666,0 +(1,18950:10523651,31298982:18167376,9083688,0 +(1,18950:10523651,31298982:18167376,9083688,0 +(1,18950:10523651,31298982:0,9083688,0 +(1,18950:10523651,31298982:0,14208860,0 +(1,18950:10523651,31298982:28417720,14208860,0 +) +k1,18950:10523651,31298982:-28417720 +) +) +g1,18950:28691027,31298982 +) +) +) +g1,18951:28690151,31298982 +k1,18951:32583029,31298982:3892878 +) +(1,18958:6630773,32164062:25952256,505283,126483 +h1,18957:6630773,32164062:983040,0,0 +k1,18957:8967381,32164062:400019 +k1,18957:10471681,32164062:400018 +k1,18957:12672629,32164062:400019 +k1,18957:14269990,32164062:400018 +k1,18957:16276952,32164062:400019 +k1,18957:18051916,32164062:400019 +k1,18957:19103362,32164062:400018 +k1,18957:20522466,32164062:400019 +k1,18957:23305373,32164062:400018 +k1,18957:25156359,32164062:400019 +k1,18957:26509926,32164062:400018 +k1,18957:28002430,32164062:400019 +(1,18957:28002430,32164062:0,452978,115847 +r1,18983:29415831,32164062:1413401,568825,115847 +k1,18957:28002430,32164062:-1413401 +) +(1,18957:28002430,32164062:1413401,452978,115847 +k1,18957:28002430,32164062:3277 +h1,18957:29412554,32164062:0,411205,112570 +) +k1,18957:29815850,32164062:400019 +k1,18957:30867296,32164062:400018 +k1,18957:32583029,32164062:0 +) +(1,18958:6630773,33029142:25952256,513147,134348 +k1,18957:7968015,33029142:318157 +k1,18957:9784980,33029142:318157 +k1,18957:10762428,33029142:318156 +k1,18957:12099670,33029142:318157 +k1,18957:14024770,33029142:318157 +k1,18957:15717872,33029142:318157 +k1,18957:18444476,33029142:318156 +k1,18957:19959320,33029142:318157 +k1,18957:22543057,33029142:318157 +k1,18957:25868661,33029142:318157 +k1,18957:26802855,33029142:318156 +(1,18957:26802855,33029142:0,452978,115847 +r1,18983:31733375,33029142:4930520,568825,115847 +k1,18957:26802855,33029142:-4930520 +) +(1,18957:26802855,33029142:4930520,452978,115847 +k1,18957:26802855,33029142:3277 +h1,18957:31730098,33029142:0,411205,112570 +) +k1,18957:32051532,33029142:318157 +k1,18958:32583029,33029142:0 +) +(1,18958:6630773,33894222:25952256,513147,134348 +(1,18957:6630773,33894222:0,452978,122846 +r1,18983:12616428,33894222:5985655,575824,122846 +k1,18957:6630773,33894222:-5985655 +) +(1,18957:6630773,33894222:5985655,452978,122846 +k1,18957:6630773,33894222:3277 +h1,18957:12613151,33894222:0,411205,112570 +) +k1,18957:12994547,33894222:204449 +k1,18957:13923824,33894222:204449 +k1,18957:14996624,33894222:204448 +k1,18957:16305355,33894222:204449 +k1,18957:17947009,33894222:204449 +(1,18957:17947009,33894222:0,452978,122846 +r1,18983:21822393,33894222:3875384,575824,122846 +k1,18957:17947009,33894222:-3875384 +) +(1,18957:17947009,33894222:3875384,452978,122846 +k1,18957:17947009,33894222:3277 +h1,18957:21819116,33894222:0,411205,112570 +) +k1,18957:22026842,33894222:204449 +k1,18957:22917452,33894222:204448 +k1,18957:23892604,33894222:204449 +k1,18957:27169381,33894222:204449 +k1,18957:28321481,33894222:204449 +(1,18957:28321481,33894222:0,414482,122846 +r1,18983:29734882,33894222:1413401,537328,122846 +k1,18957:28321481,33894222:-1413401 +) +(1,18957:28321481,33894222:1413401,414482,122846 +k1,18957:28321481,33894222:3277 +h1,18957:29731605,33894222:0,411205,112570 +) +k1,18957:29939330,33894222:204448 +k1,18957:30795207,33894222:204449 +k1,18958:32583029,33894222:0 +) +(1,18958:6630773,34759302:25952256,505283,126483 +g1,18957:8204947,34759302 +g1,18957:9423261,34759302 +k1,18958:32583029,34759302:21297890 +g1,18958:32583029,34759302 +) +v1,18960:6630773,35444157:0,393216,0 +(1,18965:6630773,36449877:25952256,1398936,196608 +g1,18965:6630773,36449877 +g1,18965:6630773,36449877 +g1,18965:6434165,36449877 +(1,18965:6434165,36449877:0,1398936,196608 +r1,18983:32779637,36449877:26345472,1595544,196608 +k1,18965:6434165,36449877:-26345472 +) +(1,18965:6434165,36449877:26345472,1398936,196608 +[1,18965:6630773,36449877:25952256,1202328,0 +(1,18962:6630773,35678594:25952256,431045,112852 +(1,18961:6630773,35678594:0,0,0 +g1,18961:6630773,35678594 +g1,18961:6630773,35678594 +g1,18961:6303093,35678594 +(1,18961:6303093,35678594:0,0,0 +) +g1,18961:6630773,35678594 +) +g1,18962:6962727,35678594 +g1,18962:7294681,35678594 +g1,18962:13269852,35678594 +g1,18962:13933760,35678594 +g1,18962:18249161,35678594 +g1,18962:21236746,35678594 +g1,18962:21900654,35678594 +k1,18962:21900654,35678594:0 +h1,18962:25220193,35678594:0,0,0 +k1,18962:32583029,35678594:7362836 +g1,18962:32583029,35678594 +) +(1,18963:6630773,36363449:25952256,424439,86428 +h1,18963:6630773,36363449:0,0,0 +g1,18963:6962727,36363449 +g1,18963:7294681,36363449 +g1,18963:7626635,36363449 +g1,18963:7958589,36363449 +g1,18963:8290543,36363449 +g1,18963:8622497,36363449 +g1,18963:8954451,36363449 +g1,18963:9286405,36363449 +g1,18963:9618359,36363449 +g1,18963:9950313,36363449 +g1,18963:10282267,36363449 +g1,18963:10614221,36363449 +g1,18963:10946175,36363449 +g1,18963:11278129,36363449 +g1,18963:11610083,36363449 +g1,18963:13269853,36363449 +g1,18963:13933761,36363449 +g1,18963:14929623,36363449 +g1,18963:16921347,36363449 +g1,18963:17585255,36363449 +h1,18963:19576979,36363449:0,0,0 +k1,18963:32583029,36363449:13006050 +g1,18963:32583029,36363449 +) +] +) +g1,18965:32583029,36449877 +g1,18965:6630773,36449877 +g1,18965:6630773,36449877 +g1,18965:32583029,36449877 +g1,18965:32583029,36449877 +) +h1,18965:6630773,36646485:0,0,0 +(1,18969:6630773,37511565:25952256,513147,134348 +h1,18968:6630773,37511565:983040,0,0 +k1,18968:10439162,37511565:443115 +(1,18968:10439162,37511565:0,452978,115847 +r1,18983:13962834,37511565:3523672,568825,115847 +k1,18968:10439162,37511565:-3523672 +) +(1,18968:10439162,37511565:3523672,452978,115847 +k1,18968:10439162,37511565:3277 +h1,18968:13959557,37511565:0,411205,112570 +) +k1,18968:14405949,37511565:443115 +k1,18968:17176247,37511565:443115 +k1,18968:18286518,37511565:443115 +(1,18968:18286518,37511565:0,452978,122846 +r1,18983:22161902,37511565:3875384,575824,122846 +k1,18968:18286518,37511565:-3875384 +) +(1,18968:18286518,37511565:3875384,452978,122846 +k1,18968:18286518,37511565:3277 +h1,18968:22158625,37511565:0,411205,112570 +) +k1,18968:22605017,37511565:443115 +k1,18968:23699560,37511565:443115 +(1,18968:23699560,37511565:0,414482,122846 +r1,18983:25112961,37511565:1413401,537328,122846 +k1,18968:23699560,37511565:-1413401 +) +(1,18968:23699560,37511565:1413401,414482,122846 +k1,18968:23699560,37511565:3277 +h1,18968:25109684,37511565:0,411205,112570 +) +k1,18968:25556076,37511565:443115 +k1,18968:28172365,37511565:443115 +k1,18968:29231518,37511565:443115 +k1,18968:32583029,37511565:0 +) +(1,18969:6630773,38376645:25952256,513147,134348 +k1,18968:9730374,38376645:200288 +k1,18968:11537605,38376645:200288 +k1,18968:13286509,38376645:200288 +k1,18968:16421499,38376645:200288 +k1,18968:17825028,38376645:200288 +k1,18968:19411402,38376645:200288 +k1,18968:20270981,38376645:200287 +k1,18968:22078212,38376645:200288 +k1,18968:23323144,38376645:200288 +k1,18968:24624437,38376645:200288 +k1,18968:26334675,38376645:200288 +k1,18968:29508987,38376645:200288 +k1,18968:30395437,38376645:200288 +k1,18968:32583029,38376645:0 +) +(1,18969:6630773,39241725:25952256,513147,126483 +k1,18968:10750857,39241725:181370 +k1,18968:13035277,39241725:181370 +k1,18968:13868076,39241725:181371 +k1,18968:15657044,39241725:181370 +k1,18968:17763862,39241725:181370 +k1,18968:19919939,39241725:181477 +k1,18968:21054858,39241725:181370 +k1,18968:22340511,39241725:181371 +k1,18968:23614366,39241725:181370 +(1,18968:23614366,39241725:0,452978,115847 +r1,18983:25379479,39241725:1765113,568825,115847 +k1,18968:23614366,39241725:-1765113 +) +(1,18968:23614366,39241725:1765113,452978,115847 +k1,18968:23614366,39241725:3277 +h1,18968:25376202,39241725:0,411205,112570 +) +k1,18968:25560849,39241725:181370 +k1,18968:26393647,39241725:181370 +k1,18968:28727220,39241725:181371 +k1,18968:29927675,39241725:181370 +k1,18968:31923737,39241725:181370 +k1,18968:32583029,39241725:0 +) +(1,18969:6630773,40106805:25952256,513147,126483 +g1,18968:7849087,40106805 +g1,18968:9488797,40106805 +g1,18968:10300788,40106805 +g1,18968:11519102,40106805 +g1,18968:13231557,40106805 +g1,18968:14090078,40106805 +g1,18968:15308392,40106805 +g1,18968:17114564,40106805 +k1,18969:32583029,40106805:13919849 +g1,18969:32583029,40106805 +) +(1,18971:6630773,40971885:25952256,513147,126483 +h1,18970:6630773,40971885:983040,0,0 +k1,18970:8300126,40971885:208556 +k1,18970:9377033,40971885:208555 +k1,18970:11060804,40971885:208556 +k1,18970:13603751,40971885:208555 +k1,18970:17041266,40971885:208556 +k1,18970:19260466,40971885:208555 +k1,18970:20416673,40971885:208556 +k1,18970:21644313,40971885:208555 +k1,18970:25534682,40971885:208556 +k1,18970:26611589,40971885:208555 +k1,18970:27924427,40971885:208556 +k1,18970:29331636,40971885:208555 +k1,18970:31563944,40971885:208556 +k1,18970:32583029,40971885:0 +) +(1,18971:6630773,41836965:25952256,505283,134348 +k1,18970:8563164,41836965:278918 +k1,18970:10449681,41836965:278919 +k1,18970:11490127,41836965:278918 +k1,18970:14576607,41836965:278918 +k1,18970:17697167,41836965:278919 +k1,18970:18627513,41836965:278918 +k1,18970:19925516,41836965:278918 +k1,18970:23268898,41836965:278918 +k1,18970:26260352,41836965:278919 +k1,18970:27300798,41836965:278918 +(1,18970:27300798,41836965:0,452978,122846 +r1,18983:32583029,41836965:5282231,575824,122846 +k1,18970:27300798,41836965:-5282231 +) +(1,18970:27300798,41836965:5282231,452978,122846 +k1,18970:27300798,41836965:3277 +h1,18970:32579752,41836965:0,411205,112570 +) +k1,18970:32583029,41836965:0 +) +(1,18971:6630773,42702045:25952256,505283,122846 +g1,18970:8021447,42702045 +(1,18970:8021447,42702045:0,452978,122846 +r1,18983:13655390,42702045:5633943,575824,122846 +k1,18970:8021447,42702045:-5633943 +) +(1,18970:8021447,42702045:5633943,452978,122846 +k1,18970:8021447,42702045:3277 +h1,18970:13652113,42702045:0,411205,112570 +) +g1,18970:14028289,42702045 +(1,18970:14028289,42702045:0,414482,115847 +r1,18983:14386555,42702045:358266,530329,115847 +k1,18970:14028289,42702045:-358266 +) +(1,18970:14028289,42702045:358266,414482,115847 +k1,18970:14028289,42702045:3277 +h1,18970:14383278,42702045:0,411205,112570 +) +g1,18970:14759454,42702045 +(1,18970:14759454,42702045:0,414482,115847 +r1,18983:15117720,42702045:358266,530329,115847 +k1,18970:14759454,42702045:-358266 +) +(1,18970:14759454,42702045:358266,414482,115847 +k1,18970:14759454,42702045:3277 +h1,18970:15114443,42702045:0,411205,112570 +) +g1,18970:15490619,42702045 +(1,18970:15490619,42702045:0,414482,115847 +r1,18983:16904020,42702045:1413401,530329,115847 +k1,18970:15490619,42702045:-1413401 +) +(1,18970:15490619,42702045:1413401,414482,115847 +k1,18970:15490619,42702045:3277 +h1,18970:16900743,42702045:0,411205,112570 +) +g1,18970:17103249,42702045 +g1,18970:18493923,42702045 +(1,18970:18493923,42702045:0,452978,115847 +r1,18983:19907324,42702045:1413401,568825,115847 +k1,18970:18493923,42702045:-1413401 +) +(1,18970:18493923,42702045:1413401,452978,115847 +k1,18970:18493923,42702045:3277 +h1,18970:19904047,42702045:0,411205,112570 +) +k1,18971:32583029,42702045:12502035 +g1,18971:32583029,42702045 +) +v1,18973:6630773,43567125:0,393216,0 +(1,18983:6630773,45706769:25952256,2532860,0 +g1,18983:6630773,45706769 +g1,18983:6237557,45706769 +r1,18983:6368629,45706769:131072,2532860,0 +g1,18983:6567858,45706769 +g1,18983:6764466,45706769 +[1,18983:6764466,45706769:25818563,2532860,0 +(1,18974:6764466,43875423:25818563,701514,196608 +(1,18973:6764466,43875423:0,701514,196608 +r1,18983:8010564,43875423:1246098,898122,196608 +k1,18973:6764466,43875423:-1246098 +) +(1,18973:6764466,43875423:1246098,701514,196608 +) +k1,18973:8256962,43875423:246398 +k1,18973:8584642,43875423:327680 +k1,18973:10027727,43875423:246398 +k1,18973:13180647,43875423:246398 +k1,18973:15511090,43875423:246398 +k1,18973:16288985,43875423:246398 +k1,18973:17821199,43875423:246398 +k1,18973:19781363,43875423:246398 +k1,18973:20713924,43875423:246399 +k1,18973:21828674,43875423:246398 +k1,18973:23179354,43875423:246398 +k1,18973:24623095,43875423:246398 +k1,18973:25888578,43875423:246398 +k1,18973:29142423,43875423:246398 +k1,18973:30040249,43875423:246398 +k1,18973:31305732,43875423:246398 +k1,18973:32583029,43875423:0 +) +(1,18974:6764466,44740503:25818563,505283,134348 +k1,18973:8896270,44740503:172278 +k1,18973:10259992,44740503:172277 +k1,18973:11869475,44740503:172278 +k1,18973:13060838,44740503:172278 +k1,18973:15915504,44740503:172277 +k1,18973:16773944,44740503:172278 +k1,18973:17716925,44740503:172278 +k1,18973:20961530,44740503:172277 +k1,18973:21785236,44740503:172278 +k1,18973:22589281,44740503:172278 +k1,18973:23389394,44740503:172278 +k1,18973:25894753,44740503:172277 +k1,18973:26683069,44740503:172278 +k1,18973:28058588,44740503:172278 +k1,18973:29812904,44740503:172277 +k1,18973:30853534,44740503:172278 +k1,18973:32583029,44740503:0 +) +(1,18974:6764466,45605583:25818563,513147,126483 +g1,18973:8166936,45605583 +g1,18973:11753066,45605583 +g1,18973:14036340,45605583 +g1,18973:15183220,45605583 +g1,18973:16401534,45605583 +g1,18973:18026826,45605583 +g1,18973:18885347,45605583 +k1,18974:32583029,45605583:9805499 +g1,18974:32583029,45605583 +) +] +g1,18983:32583029,45706769 +) +] +(1,18983:32583029,45706769:0,0,0 +g1,18983:32583029,45706769 +) +) +] +(1,18983:6630773,47279633:25952256,0,0 +h1,18983:6630773,47279633:25952256,0,0 +) +] +(1,18983:4262630,4025873:0,0,0 +[1,18983:-473656,4025873:0,0,0 +(1,18983:-473656,-710413:0,0,0 +(1,18983:-473656,-710413:0,0,0 +g1,18983:-473656,-710413 +) +g1,18983:-473656,-710413 +) +] +) +] +!30156 +}317 +Input:2988:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2989:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2990:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2991:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2992:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2993:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!576 +{318 +[1,19028:4262630,47279633:28320399,43253760,0 +(1,19028:4262630,4025873:0,0,0 +[1,19028:-473656,4025873:0,0,0 +(1,19028:-473656,-710413:0,0,0 +(1,19028:-473656,-644877:0,0,0 +k1,19028:-473656,-644877:-65536 ) -] +(1,19028:-473656,4736287:0,0,0 +k1,19028:-473656,4736287:5209943 ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,19057:37855564,49800853:1179648,16384,0 +g1,19028:-473656,-710413 ) +] ) -k1,19057:3078556,49800853:-34777008 +[1,19028:6630773,47279633:25952256,43253760,0 +[1,19028:6630773,4812305:25952256,786432,0 +(1,19028:6630773,4812305:25952256,485622,11795 +(1,19028:6630773,4812305:25952256,485622,11795 +g1,19028:3078558,4812305 +[1,19028:3078558,4812305:0,0,0 +(1,19028:3078558,2439708:0,1703936,0 +k1,19028:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,19028:2537886,2439708:1179648,16384,0 ) -] -g1,19057:6630773,4812305 -g1,19057:6630773,4812305 -g1,19057:9560887,4812305 -k1,19057:31387651,4812305:21826764 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,19028:3078558,1915420:16384,1179648,0 ) +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] -[1,19057:6630773,45706769:25952256,40108032,0 -(1,19057:6630773,45706769:25952256,40108032,0 -(1,19057:6630773,45706769:0,0,0 -g1,19057:6630773,45706769 ) -[1,19057:6630773,45706769:25952256,40108032,0 -(1,19013:6630773,14682403:25952256,9083666,0 -k1,19013:10523651,14682403:3892878 -h1,19012:10523651,14682403:0,0,0 -(1,19012:10523651,14682403:18166500,9083666,0 -(1,19012:10523651,14682403:18167376,9083688,0 -(1,19012:10523651,14682403:18167376,9083688,0 -(1,19012:10523651,14682403:0,9083688,0 -(1,19012:10523651,14682403:0,14208860,0 -(1,19012:10523651,14682403:28417720,14208860,0 ) -k1,19012:10523651,14682403:-28417720 ) +] +[1,19028:3078558,4812305:0,0,0 +(1,19028:3078558,2439708:0,1703936,0 +g1,19028:29030814,2439708 +g1,19028:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,19028:36151628,1915420:16384,1179648,0 ) -g1,19012:28691027,14682403 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) +] ) +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,19028:37855564,2439708:1179648,16384,0 ) -g1,19013:28690151,14682403 -k1,19013:32583029,14682403:3892878 -) -(1,19020:6630773,15523891:25952256,513147,134348 -h1,19019:6630773,15523891:983040,0,0 -k1,19019:8268179,15523891:176609 -k1,19019:8902884,15523891:176608 -k1,19019:10583544,15523891:176609 -k1,19019:11826423,15523891:176608 -k1,19019:12950683,15523891:176609 -k1,19019:14146377,15523891:176609 -k1,19019:16193383,15523891:176608 -k1,19019:17021420,15523891:176609 -k1,19019:20457134,15523891:176609 -k1,19019:22371757,15523891:176608 -k1,19019:23215522,15523891:176609 -(1,19019:23215522,15523891:0,452978,122846 -r1,19057:28849465,15523891:5633943,575824,122846 -k1,19019:23215522,15523891:-5633943 -) -(1,19019:23215522,15523891:5633943,452978,122846 -k1,19019:23215522,15523891:3277 -h1,19019:28846188,15523891:0,411205,112570 -) -k1,19019:29199743,15523891:176608 -k1,19019:31563944,15523891:176609 -k1,19019:32583029,15523891:0 -) -(1,19020:6630773,16365379:25952256,513147,126483 -k1,19019:8707350,16365379:188485 -k1,19019:10289786,16365379:188485 -(1,19019:10289786,16365379:0,452978,115847 -r1,19057:13813458,16365379:3523672,568825,115847 -k1,19019:10289786,16365379:-3523672 -) -(1,19019:10289786,16365379:3523672,452978,115847 -k1,19019:10289786,16365379:3277 -h1,19019:13810181,16365379:0,411205,112570 -) -k1,19019:14001943,16365379:188485 -k1,19019:14873313,16365379:188485 -(1,19019:14873313,16365379:0,452978,115847 -r1,19057:19100409,16365379:4227096,568825,115847 -k1,19019:14873313,16365379:-4227096 -) -(1,19019:14873313,16365379:4227096,452978,115847 -k1,19019:14873313,16365379:3277 -h1,19019:19097132,16365379:0,411205,112570 -) -k1,19019:19288894,16365379:188485 -k1,19019:21433629,16365379:188485 -k1,19019:22369880,16365379:188485 -k1,19019:25824024,16365379:188485 -k1,19019:26698671,16365379:188485 -k1,19019:27345253,16365379:188485 -k1,19019:29579772,16365379:188485 -k1,19019:31298523,16365379:188485 -k1,19019:32583029,16365379:0 -) -(1,19020:6630773,17206867:25952256,505283,126483 -g1,19019:11224191,17206867 -g1,19019:12232790,17206867 -g1,19019:13451104,17206867 -g1,19019:15039696,17206867 -g1,19019:16230485,17206867 -k1,19020:32583029,17206867:13480756 -g1,19020:32583029,17206867 -) -v1,19022:6630773,18397333:0,393216,0 -(1,19027:6630773,19384899:25952256,1380782,196608 -g1,19027:6630773,19384899 -g1,19027:6630773,19384899 -g1,19027:6434165,19384899 -(1,19027:6434165,19384899:0,1380782,196608 -r1,19057:32779637,19384899:26345472,1577390,196608 -k1,19027:6434165,19384899:-26345472 -) -(1,19027:6434165,19384899:26345472,1380782,196608 -[1,19027:6630773,19384899:25952256,1184174,0 -(1,19024:6630773,18611243:25952256,410518,107478 -(1,19023:6630773,18611243:0,0,0 -g1,19023:6630773,18611243 -g1,19023:6630773,18611243 -g1,19023:6303093,18611243 -(1,19023:6303093,18611243:0,0,0 -) -g1,19023:6630773,18611243 -) -k1,19024:6630773,18611243:0 -g1,19024:11689104,18611243 -g1,19024:13902124,18611243 -g1,19024:15482853,18611243 -g1,19024:16115145,18611243 -g1,19024:18644311,18611243 -h1,19024:18960457,18611243:0,0,0 -k1,19024:32583029,18611243:13622572 -g1,19024:32583029,18611243 -) -(1,19025:6630773,19277421:25952256,404226,107478 -h1,19025:6630773,19277421:0,0,0 -g1,19025:6946919,19277421 -g1,19025:7263065,19277421 -g1,19025:11689105,19277421 -g1,19025:12321397,19277421 -g1,19025:13585980,19277421 -g1,19025:16431291,19277421 -g1,19025:17063583,19277421 -h1,19025:19592749,19277421:0,0,0 -k1,19025:32583029,19277421:12990280 -g1,19025:32583029,19277421 -) -] -) -g1,19027:32583029,19384899 -g1,19027:6630773,19384899 -g1,19027:6630773,19384899 -g1,19027:32583029,19384899 -g1,19027:32583029,19384899 -) -h1,19027:6630773,19581507:0,0,0 -(1,19031:6630773,20947283:25952256,513147,134348 -h1,19030:6630773,20947283:983040,0,0 -k1,19030:8986058,20947283:175558 -k1,19030:11566789,20947283:175559 -(1,19030:11566789,20947283:0,452978,115847 -r1,19057:15793885,20947283:4227096,568825,115847 -k1,19030:11566789,20947283:-4227096 -) -(1,19030:11566789,20947283:4227096,452978,115847 -k1,19030:11566789,20947283:3277 -h1,19030:15790608,20947283:0,411205,112570 -) -k1,19030:16143113,20947283:175558 -k1,19030:17510116,20947283:175558 -k1,19030:18474073,20947283:175559 -k1,19030:21621033,20947283:175558 -k1,19030:24804038,20947283:175558 -(1,19030:24804038,20947283:0,452978,122846 -r1,19057:29031134,20947283:4227096,575824,122846 -k1,19030:24804038,20947283:-4227096 -) -(1,19030:24804038,20947283:4227096,452978,122846 -k1,19030:24804038,20947283:3277 -h1,19030:29027857,20947283:0,411205,112570 -) -k1,19030:29380363,20947283:175559 -k1,19030:30317449,20947283:175558 -k1,19030:32583029,20947283:0 -) -(1,19031:6630773,21788771:25952256,513147,134348 -k1,19030:9721760,21788771:303085 -k1,19030:10380706,21788771:303086 -k1,19030:13860321,21788771:303085 -k1,19030:17399574,21788771:303085 -k1,19030:18318698,21788771:303086 -k1,19030:19794222,21788771:303085 -k1,19030:23946236,21788771:303085 -k1,19030:25993890,21788771:303086 -k1,19030:27316060,21788771:303085 -(1,19030:27316060,21788771:0,414482,115847 -r1,19057:27674326,21788771:358266,530329,115847 -k1,19030:27316060,21788771:-358266 -) -(1,19030:27316060,21788771:358266,414482,115847 -k1,19030:27316060,21788771:3277 -h1,19030:27671049,21788771:0,411205,112570 -) -k1,19030:27977411,21788771:303085 -k1,19030:29471942,21788771:303086 -(1,19030:29471942,21788771:0,414482,115847 -r1,19057:29830208,21788771:358266,530329,115847 -k1,19030:29471942,21788771:-358266 -) -(1,19030:29471942,21788771:358266,414482,115847 -k1,19030:29471942,21788771:3277 -h1,19030:29826931,21788771:0,411205,112570 -) -k1,19030:30133293,21788771:303085 -k1,19031:32583029,21788771:0 -) -(1,19031:6630773,22630259:25952256,513147,134348 -k1,19030:7866001,22630259:264640 -k1,19030:9327328,22630259:264640 -k1,19030:12768498,22630259:264640 -k1,19030:13980789,22630259:264640 -k1,19030:15697051,22630259:264640 -k1,19030:19596973,22630259:264640 -k1,19030:20872179,22630259:264641 -k1,19030:21668316,22630259:264640 -k1,19030:24518351,22630259:264640 -k1,19030:26243789,22630259:264640 -k1,19030:26864289,22630259:264640 -(1,19030:26864289,22630259:0,459977,115847 -r1,19057:28277690,22630259:1413401,575824,115847 -k1,19030:26864289,22630259:-1413401 -) -(1,19030:26864289,22630259:1413401,459977,115847 -k1,19030:26864289,22630259:3277 -h1,19030:28274413,22630259:0,411205,112570 -) -k1,19030:28542330,22630259:264640 -k1,19030:30552849,22630259:264640 -k1,19030:31635378,22630259:264640 -k1,19031:32583029,22630259:0 -) -(1,19031:6630773,23471747:25952256,505283,126483 -(1,19030:6630773,23471747:0,452978,115847 -r1,19057:10154445,23471747:3523672,568825,115847 -k1,19030:6630773,23471747:-3523672 -) -(1,19030:6630773,23471747:3523672,452978,115847 -k1,19030:6630773,23471747:3277 -h1,19030:10151168,23471747:0,411205,112570 -) -k1,19030:10510066,23471747:181951 -(1,19030:10510066,23471747:0,452978,115847 -r1,19057:12978603,23471747:2468537,568825,115847 -k1,19030:10510066,23471747:-2468537 -) -(1,19030:10510066,23471747:2468537,452978,115847 -k1,19030:10510066,23471747:3277 -h1,19030:12975326,23471747:0,411205,112570 -) -k1,19030:13160553,23471747:181950 -k1,19030:13874001,23471747:181951 -k1,19030:15341767,23471747:181950 -k1,19030:18732361,23471747:181951 -k1,19030:20105756,23471747:181950 -k1,19030:23071676,23471747:181951 -k1,19030:23905055,23471747:181951 -k1,19030:24834771,23471747:181950 -k1,19030:27602117,23471747:181951 -k1,19030:28470229,23471747:181950 -k1,19030:30727705,23471747:181951 -k1,19030:32583029,23471747:0 -) -(1,19031:6630773,24313235:25952256,513147,126483 -k1,19030:7861974,24313235:283550 -(1,19030:7861974,24313235:0,452978,122846 -r1,19057:12792494,24313235:4930520,575824,122846 -k1,19030:7861974,24313235:-4930520 -) -(1,19030:7861974,24313235:4930520,452978,122846 -k1,19030:7861974,24313235:3277 -h1,19030:12789217,24313235:0,411205,112570 -) -k1,19030:13249713,24313235:283549 -k1,19030:14161098,24313235:283550 -k1,19030:15647889,24313235:283550 -k1,19030:18766526,24313235:283550 -k1,19030:19701503,24313235:283549 -k1,19030:22745429,24313235:283550 -k1,19030:26378524,24313235:283550 -k1,19030:27278111,24313235:283549 -k1,19030:28734100,24313235:283550 -k1,19030:32583029,24313235:0 -) -(1,19031:6630773,25154723:25952256,505283,138281 -k1,19030:8510965,25154723:152663 -$1,19030:8510965,25154723 -$1,19030:9013626,25154723 -k1,19030:9166289,25154723:152663 -k1,19030:10510398,25154723:152664 -$1,19030:10510398,25154723 -$1,19030:11062211,25154723 -k1,19030:11214874,25154723:152663 -k1,19030:13270047,25154723:152663 -k1,19030:14414270,25154723:152663 -k1,19030:16168634,25154723:152664 -k1,19030:19006962,25154723:152663 -k1,19030:21045096,25154723:152663 -k1,19030:22066111,25154723:152663 -k1,19030:24576105,25154723:152664 -k1,19030:25490296,25154723:152663 -k1,19030:27830551,25154723:152663 -(1,19030:27830551,25154723:0,459977,115847 -r1,19057:32409359,25154723:4578808,575824,115847 -k1,19030:27830551,25154723:-4578808 -) -(1,19030:27830551,25154723:4578808,459977,115847 -k1,19030:27830551,25154723:3277 -h1,19030:32406082,25154723:0,411205,112570 -) -k1,19030:32583029,25154723:0 -) -(1,19031:6630773,25996211:25952256,513147,134348 -k1,19030:8673259,25996211:157015 -k1,19030:9361771,25996211:157015 -k1,19030:9874646,25996211:157015 -k1,19030:12857572,25996211:157014 -k1,19030:13673879,25996211:157015 -k1,19030:14849979,25996211:157015 -k1,19030:17272574,25996211:157015 -(1,19030:17272574,25996211:0,452978,115847 -r1,19057:23258229,25996211:5985655,568825,115847 -k1,19030:17272574,25996211:-5985655 -) -(1,19030:17272574,25996211:5985655,452978,115847 -k1,19030:17272574,25996211:3277 -h1,19030:23254952,25996211:0,411205,112570 -) -k1,19030:23415244,25996211:157015 -k1,19030:24804336,25996211:157015 -k1,19030:27240037,25996211:157014 -h1,19030:28609084,25996211:0,0,0 -k1,19030:28766099,25996211:157015 -k1,19030:29732484,25996211:157015 -k1,19030:31387652,25996211:157015 -h1,19030:32583029,25996211:0,0,0 -k1,19030:32583029,25996211:0 -) -(1,19031:6630773,26837699:25952256,513147,126483 -g1,19030:7777653,26837699 -g1,19030:10094350,26837699 -g1,19030:11102949,26837699 -g1,19030:13004148,26837699 -g1,19030:15779597,26837699 -g1,19030:16638118,26837699 -k1,19031:32583029,26837699:11825973 -g1,19031:32583029,26837699 -) -v1,19033:6630773,28028165:0,393216,0 -(1,19039:6630773,29644160:25952256,2009211,196608 -g1,19039:6630773,29644160 -g1,19039:6630773,29644160 -g1,19039:6434165,29644160 -(1,19039:6434165,29644160:0,2009211,196608 -r1,19057:32779637,29644160:26345472,2205819,196608 -k1,19039:6434165,29644160:-26345472 -) -(1,19039:6434165,29644160:26345472,2009211,196608 -[1,19039:6630773,29644160:25952256,1812603,0 -(1,19035:6630773,28235783:25952256,404226,107478 -(1,19034:6630773,28235783:0,0,0 -g1,19034:6630773,28235783 -g1,19034:6630773,28235783 -g1,19034:6303093,28235783 -(1,19034:6303093,28235783:0,0,0 -) -g1,19034:6630773,28235783 -) -k1,19035:6630773,28235783:0 -g1,19035:11689104,28235783 -g1,19035:13902124,28235783 -g1,19035:15166707,28235783 -h1,19035:15482853,28235783:0,0,0 -k1,19035:32583029,28235783:17100176 -g1,19035:32583029,28235783 -) -(1,19036:6630773,28901961:25952256,404226,76021 -h1,19036:6630773,28901961:0,0,0 -g1,19036:6946919,28901961 -g1,19036:7263065,28901961 -g1,19036:12321397,28901961 -g1,19036:12953689,28901961 -g1,19036:13902127,28901961 -h1,19036:14218273,28901961:0,0,0 -k1,19036:32583029,28901961:18364756 -g1,19036:32583029,28901961 -) -(1,19037:6630773,29568139:25952256,410518,76021 -h1,19037:6630773,29568139:0,0,0 -g1,19037:6946919,29568139 -g1,19037:7263065,29568139 -g1,19037:12953687,29568139 -g1,19037:13585979,29568139 -h1,19037:14218271,29568139:0,0,0 -k1,19037:32583029,29568139:18364758 -g1,19037:32583029,29568139 -) -] -) -g1,19039:32583029,29644160 -g1,19039:6630773,29644160 -g1,19039:6630773,29644160 -g1,19039:32583029,29644160 -g1,19039:32583029,29644160 -) -h1,19039:6630773,29840768:0,0,0 -(1,19042:6630773,39514258:25952256,9083666,0 -k1,19042:10523651,39514258:3892878 -h1,19041:10523651,39514258:0,0,0 -(1,19041:10523651,39514258:18166500,9083666,0 -(1,19041:10523651,39514258:18167376,9083688,0 -(1,19041:10523651,39514258:18167376,9083688,0 -(1,19041:10523651,39514258:0,9083688,0 -(1,19041:10523651,39514258:0,14208860,0 -(1,19041:10523651,39514258:28417720,14208860,0 -) -k1,19041:10523651,39514258:-28417720 -) -) -g1,19041:28691027,39514258 -) -) -) -g1,19042:28690151,39514258 -k1,19042:32583029,39514258:3892878 -) -(1,19049:6630773,40355746:25952256,513147,134348 -h1,19048:6630773,40355746:983040,0,0 -k1,19048:9168484,40355746:357984 -k1,19048:11931641,40355746:357985 -(1,19048:11931641,40355746:0,452978,115847 -r1,19057:16862161,40355746:4930520,568825,115847 -k1,19048:11931641,40355746:-4930520 -) -(1,19048:11931641,40355746:4930520,452978,115847 -k1,19048:11931641,40355746:3277 -h1,19048:16858884,40355746:0,411205,112570 -) -k1,19048:17393815,40355746:357984 -k1,19048:18943245,40355746:357985 -k1,19048:20089627,40355746:357984 -k1,19048:23419013,40355746:357984 -k1,19048:26784445,40355746:357985 -(1,19048:26784445,40355746:0,452978,122846 -r1,19057:30308117,40355746:3523672,575824,122846 -k1,19048:26784445,40355746:-3523672 -) -(1,19048:26784445,40355746:3523672,452978,122846 -k1,19048:26784445,40355746:3277 -h1,19048:30304840,40355746:0,411205,112570 -) -k1,19048:30839771,40355746:357984 -k1,19048:32583029,40355746:0 -) -(1,19049:6630773,41197234:25952256,513147,134348 -k1,19048:8587567,41197234:389173 -(1,19048:8587567,41197234:0,452978,115847 -r1,19057:12814663,41197234:4227096,568825,115847 -k1,19048:8587567,41197234:-4227096 -) -(1,19048:8587567,41197234:4227096,452978,115847 -k1,19048:8587567,41197234:3277 -h1,19048:12811386,41197234:0,411205,112570 -) -k1,19048:13203835,41197234:389172 -k1,19048:14209046,41197234:389173 -k1,19048:16106858,41197234:389173 -k1,19048:17588515,41197234:389172 -k1,19048:18636980,41197234:389173 -k1,19048:22253801,41197234:389173 -k1,19048:24970156,41197234:389172 -k1,19048:26018621,41197234:389173 -k1,19048:28548855,41197234:389173 -k1,19048:30452564,41197234:389172 -k1,19048:31601955,41197234:389173 -k1,19049:32583029,41197234:0 -) -(1,19049:6630773,42038722:25952256,513147,134348 -k1,19048:8399538,42038722:271267 -k1,19048:9689890,42038722:271267 -k1,19048:13137687,42038722:271267 -k1,19048:14091840,42038722:271268 -(1,19048:14091840,42038722:0,414482,115847 -r1,19057:15856953,42038722:1765113,530329,115847 -k1,19048:14091840,42038722:-1765113 -) -(1,19048:14091840,42038722:1765113,414482,115847 -k1,19048:14091840,42038722:3277 -h1,19048:15853676,42038722:0,411205,112570 -) -k1,19048:16128220,42038722:271267 -k1,19048:17347138,42038722:271267 -k1,19048:19070027,42038722:271267 -k1,19048:22007954,42038722:271267 -k1,19048:22810718,42038722:271267 -k1,19048:25667381,42038722:271268 -k1,19048:26590076,42038722:271267 -k1,19048:27880428,42038722:271267 -(1,19048:27880428,42038722:0,459977,115847 -r1,19057:29293829,42038722:1413401,575824,115847 -k1,19048:27880428,42038722:-1413401 -) -(1,19048:27880428,42038722:1413401,459977,115847 -k1,19048:27880428,42038722:3277 -h1,19048:29290552,42038722:0,411205,112570 -) -k1,19048:29565096,42038722:271267 -k1,19048:32583029,42038722:0 -) -(1,19049:6630773,42880210:25952256,505283,126483 -k1,19048:8025778,42880210:322836 -k1,19048:10493608,42880210:322837 -k1,19048:14013946,42880210:322836 -k1,19048:15022944,42880210:322836 -(1,19048:15022944,42880210:0,452978,115847 -r1,19057:17491481,42880210:2468537,568825,115847 -k1,19048:15022944,42880210:-2468537 -) -(1,19048:15022944,42880210:2468537,452978,115847 -k1,19048:15022944,42880210:3277 -h1,19048:17488204,42880210:0,411205,112570 -) -k1,19048:17814317,42880210:322836 -k1,19048:19128714,42880210:322837 -k1,19048:20737366,42880210:322836 -k1,19048:24268845,42880210:322836 -k1,19048:25783126,42880210:322836 -k1,19048:27210245,42880210:322837 -k1,19048:28280847,42880210:322836 -k1,19048:31189078,42880210:322836 -k1,19049:32583029,42880210:0 -) -(1,19049:6630773,43721698:25952256,459977,115847 -(1,19048:6630773,43721698:0,459977,115847 -r1,19057:17540395,43721698:10909622,575824,115847 -k1,19048:6630773,43721698:-10909622 -) -(1,19048:6630773,43721698:10909622,459977,115847 -g1,19048:9799457,43721698 -g1,19048:10502881,43721698 -h1,19048:17537118,43721698:0,411205,112570 -) -k1,19049:32583029,43721698:14868964 -g1,19049:32583029,43721698 -) -v1,19051:6630773,44912164:0,393216,0 -] -(1,19057:32583029,45706769:0,0,0 -g1,19057:32583029,45706769 -) -) -] -(1,19057:6630773,47279633:25952256,0,0 -h1,19057:6630773,47279633:25952256,0,0 -) -] -(1,19057:4262630,4025873:0,0,0 -[1,19057:-473656,4025873:0,0,0 -(1,19057:-473656,-710413:0,0,0 -(1,19057:-473656,-710413:0,0,0 -g1,19057:-473656,-710413 -) -g1,19057:-473656,-710413 -) -] -) -] -!19832 -}338 -Input:3017:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3018:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3019:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3020:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3021:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3022:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!576 -{339 -[1,19112:4262630,47279633:28320399,43253760,0 -(1,19112:4262630,4025873:0,0,0 -[1,19112:-473656,4025873:0,0,0 -(1,19112:-473656,-710413:0,0,0 -(1,19112:-473656,-644877:0,0,0 -k1,19112:-473656,-644877:-65536 -) -(1,19112:-473656,4736287:0,0,0 -k1,19112:-473656,4736287:5209943 ) -g1,19112:-473656,-710413 +k1,19028:3078556,2439708:-34777008 ) ] +[1,19028:3078558,4812305:0,0,0 +(1,19028:3078558,49800853:0,16384,2228224 +k1,19028:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,19028:2537886,49800853:1179648,16384,0 ) -[1,19112:6630773,47279633:25952256,43253760,0 -[1,19112:6630773,4812305:25952256,786432,0 -(1,19112:6630773,4812305:25952256,513147,126483 -(1,19112:6630773,4812305:25952256,513147,126483 -g1,19112:3078558,4812305 -[1,19112:3078558,4812305:0,0,0 -(1,19112:3078558,2439708:0,1703936,0 -k1,19112:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,19112:2537886,2439708:1179648,16384,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,19028:3078558,51504789:16384,1179648,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,19112:3078558,1915420:16384,1179648,0 -) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,19112:3078558,4812305:0,0,0 -(1,19112:3078558,2439708:0,1703936,0 -g1,19112:29030814,2439708 -g1,19112:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,19112:36151628,1915420:16384,1179648,0 +[1,19028:3078558,4812305:0,0,0 +(1,19028:3078558,49800853:0,16384,2228224 +g1,19028:29030814,49800853 +g1,19028:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,19028:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,19112:37855564,2439708:1179648,16384,0 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,19028:37855564,49800853:1179648,16384,0 ) ) -k1,19112:3078556,2439708:-34777008 +k1,19028:3078556,49800853:-34777008 ) ] -[1,19112:3078558,4812305:0,0,0 -(1,19112:3078558,49800853:0,16384,2228224 -k1,19112:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,19112:2537886,49800853:1179648,16384,0 +g1,19028:6630773,4812305 +g1,19028:6630773,4812305 +g1,19028:9560887,4812305 +k1,19028:31387651,4812305:21826764 +) +) +] +[1,19028:6630773,45706769:25952256,40108032,0 +(1,19028:6630773,45706769:25952256,40108032,0 +(1,19028:6630773,45706769:0,0,0 +g1,19028:6630773,45706769 +) +[1,19028:6630773,45706769:25952256,40108032,0 +v1,18983:6630773,6254097:0,393216,0 +(1,18983:6630773,7476243:25952256,1615362,0 +g1,18983:6630773,7476243 +g1,18983:6237557,7476243 +r1,19028:6368629,7476243:131072,1615362,0 +g1,18983:6567858,7476243 +g1,18983:6764466,7476243 +[1,18983:6764466,7476243:25818563,1615362,0 +v1,18976:6764466,6254097:0,393216,0 +(1,18981:6764466,7279635:25818563,1418754,196608 +g1,18981:6764466,7279635 +g1,18981:6764466,7279635 +g1,18981:6567858,7279635 +(1,18981:6567858,7279635:0,1418754,196608 +r1,19028:32779637,7279635:26211779,1615362,196608 +k1,18981:6567857,7279635:-26211780 +) +(1,18981:6567858,7279635:26211779,1418754,196608 +[1,18981:6764466,7279635:25818563,1222146,0 +(1,18978:6764466,6481928:25818563,424439,112852 +(1,18977:6764466,6481928:0,0,0 +g1,18977:6764466,6481928 +g1,18977:6764466,6481928 +g1,18977:6436786,6481928 +(1,18977:6436786,6481928:0,0,0 +) +g1,18977:6764466,6481928 +) +k1,18978:6764466,6481928:0 +g1,18978:10747914,6481928 +g1,18978:14399408,6481928 +g1,18978:16391132,6481928 +h1,18978:16723086,6481928:0,0,0 +k1,18978:32583029,6481928:15859943 +g1,18978:32583029,6481928 +) +(1,18979:6764466,7166783:25818563,431045,112852 +h1,18979:6764466,7166783:0,0,0 +g1,18979:7096420,7166783 +g1,18979:7428374,7166783 +g1,18979:12075729,7166783 +g1,18979:12739637,7166783 +g1,18979:16391130,7166783 +g1,18979:17718946,7166783 +g1,18979:18382854,7166783 +h1,18979:20042624,7166783:0,0,0 +k1,18979:32583029,7166783:12540405 +g1,18979:32583029,7166783 +) +] +) +g1,18981:32583029,7279635 +g1,18981:6764466,7279635 +g1,18981:6764466,7279635 +g1,18981:32583029,7279635 +g1,18981:32583029,7279635 +) +h1,18981:6764466,7476243:0,0,0 +] +g1,18983:32583029,7476243 +) +h1,18983:6630773,7476243:0,0,0 +(1,18987:6630773,9593061:25952256,555811,12975 +(1,18987:6630773,9593061:2450326,534184,12975 +g1,18987:6630773,9593061 +g1,18987:9081099,9593061 +) +g1,18987:13161371,9593061 +g1,18987:14728599,9593061 +k1,18987:32583029,9593061:15225322 +g1,18987:32583029,9593061 +) +(1,18993:6630773,10851357:25952256,513147,134348 +k1,18992:7831611,10851357:158816 +k1,18992:11302616,10851357:158815 +k1,18992:12144317,10851357:158816 +k1,18992:16150751,10851357:158815 +k1,18992:20471103,10851357:158816 +k1,18992:23265121,10851357:158815 +k1,18992:25020394,10851357:158816 +k1,18992:25838501,10851357:158815 +k1,18992:29567718,10851357:158816 +k1,18992:32583029,10851357:0 +) +(1,18993:6630773,11716437:25952256,513147,134348 +k1,18992:8586285,11716437:220119 +k1,18992:9162264,11716437:220119 +k1,18992:10724560,11716437:220119 +k1,18992:13423252,11716437:220120 +k1,18992:14326256,11716437:220119 +k1,18992:16882078,11716437:220119 +k1,18992:17718235,11716437:220119 +k1,18992:18294214,11716437:220119 +k1,18992:19791630,11716437:220119 +k1,18992:20543246,11716437:220119 +k1,18992:22117339,11716437:220119 +k1,18992:25187620,11716437:220120 +k1,18992:26236769,11716437:220119 +k1,18992:28042859,11716437:220119 +k1,18992:29761786,11716437:220119 +k1,18992:31266411,11716437:220119 +k1,18993:32583029,11716437:0 +) +(1,18993:6630773,12581517:25952256,513147,134348 +k1,18992:8203965,12581517:246743 +k1,18992:8806568,12581517:246743 +k1,18992:12666311,12581517:246743 +k1,18992:14104499,12581517:246743 +k1,18992:17037563,12581517:246743 +k1,18992:20894029,12581517:246743 +k1,18992:21800063,12581517:246742 +k1,18992:23065891,12581517:246743 +k1,18992:27317539,12581517:246743 +k1,18992:28432634,12581517:246743 +k1,18992:29366850,12581517:246743 +k1,18992:31931601,12581517:246743 +k1,18992:32583029,12581517:0 +) +(1,18993:6630773,13446597:25952256,505283,134348 +k1,18992:10852930,13446597:150405 +k1,18992:12194780,13446597:150405 +k1,18992:13779113,13446597:150405 +k1,18992:14948603,13446597:150405 +k1,18992:17401288,13446597:150405 +k1,18992:18720200,13446597:150405 +k1,18992:19679975,13446597:150405 +k1,18992:21818087,13446597:150405 +k1,18992:25751885,13446597:150405 +k1,18992:27638994,13446597:150405 +k1,18992:28992640,13446597:150405 +k1,18992:29498905,13446597:150405 +k1,18992:32583029,13446597:0 +) +(1,18993:6630773,14311677:25952256,505283,134348 +k1,18992:10096448,14311677:209846 +k1,18992:11497739,14311677:209846 +k1,18992:15779337,14311677:209846 +k1,18992:18299327,14311677:209846 +k1,18992:19160602,14311677:209847 +k1,18992:23461205,14311677:209846 +k1,18992:26670634,14311677:209846 +k1,18992:27748832,14311677:209846 +k1,18992:29062960,14311677:209846 +k1,18992:30558622,14311677:209846 +k1,18992:32583029,14311677:0 +) +(1,18993:6630773,15176757:25952256,513147,134348 +k1,18992:7802164,15176757:152306 +k1,18992:10978300,15176757:152305 +k1,18992:11789898,15176757:152306 +k1,18992:12961288,15176757:152305 +k1,18992:16666301,15176757:152306 +k1,18992:17868493,15176757:152305 +k1,18992:20299486,15176757:152306 +h1,18992:21270074,15176757:0,0,0 +k1,18992:21422379,15176757:152305 +k1,18992:22384055,15176757:152306 +k1,18992:24034513,15176757:152305 +h1,18992:25229890,15176757:0,0,0 +k1,18992:25382196,15176757:152306 +k1,18992:26482152,15176757:152305 +k1,18992:26990318,15176757:152306 +k1,18992:30752346,15176757:152305 +k1,18992:31563944,15176757:152306 +k1,18992:32583029,15176757:0 +) +(1,18993:6630773,16041837:25952256,513147,134348 +k1,18992:8812073,16041837:193593 +k1,18992:10940289,16041837:193593 +k1,18992:14720013,16041837:193594 +k1,18992:18356212,16041837:193593 +k1,18992:19568890,16041837:193593 +k1,18992:22286930,16041837:193593 +k1,18992:25570546,16041837:193593 +k1,18992:26380178,16041837:193594 +k1,18992:27592856,16041837:193593 +k1,18992:30130672,16041837:193593 +k1,18993:32583029,16041837:0 +k1,18993:32583029,16041837:0 +) +(1,18995:6630773,16906917:25952256,513147,115847 +h1,18994:6630773,16906917:983040,0,0 +k1,18994:8963761,16906917:153261 +k1,18994:11522194,16906917:153261 +(1,18994:11522194,16906917:0,452978,115847 +r1,19028:16101002,16906917:4578808,568825,115847 +k1,18994:11522194,16906917:-4578808 +) +(1,18994:11522194,16906917:4578808,452978,115847 +k1,18994:11522194,16906917:3277 +h1,18994:16097725,16906917:0,411205,112570 +) +k1,18994:16254263,16906917:153261 +k1,18994:17425298,16906917:153261 +k1,18994:17934419,16906917:153261 +k1,18994:20498749,16906917:153260 +k1,18994:22393302,16906917:153261 +k1,18994:23197991,16906917:153261 +k1,18994:27423004,16906917:153261 +k1,18994:28192303,16906917:153261 +k1,18994:29364649,16906917:153261 +k1,18994:30884991,16906917:153261 +k1,18994:32583029,16906917:0 +) +(1,18995:6630773,17771997:25952256,513147,138281 +k1,18994:7788944,17771997:139086 +k1,18994:9830541,17771997:139087 +k1,18994:10917278,17771997:139086 +$1,18994:10917278,17771997 +$1,18994:11419939,17771997 +k1,18994:11559026,17771997:139087 +k1,18994:12889557,17771997:139086 +$1,18994:12889557,17771997 +$1,18994:13441370,17771997 +k1,18994:13580457,17771997:139087 +k1,18994:14711103,17771997:139086 +k1,18994:20095036,17771997:139087 +k1,18994:24857687,17771997:139086 +k1,18994:28004221,17771997:139087 +(1,18994:28004221,17771997:0,452978,122846 +r1,19028:32583029,17771997:4578808,575824,122846 +k1,18994:28004221,17771997:-4578808 +) +(1,18994:28004221,17771997:4578808,452978,122846 +k1,18994:28004221,17771997:3277 +h1,18994:32579752,17771997:0,411205,112570 +) +k1,18994:32583029,17771997:0 +) +(1,18995:6630773,18637077:25952256,513147,134348 +k1,18994:8347816,18637077:294256 +k1,18994:9845314,18637077:294257 +k1,18994:12684333,18637077:294256 +k1,18994:14170035,18637077:294257 +k1,18994:16537850,18637077:294256 +k1,18994:18207708,18637077:294257 +k1,18994:19118002,18637077:294256 +k1,18994:20742640,18637077:294257 +k1,18994:24439525,18637077:294256 +k1,18994:25725342,18637077:294257 +k1,18994:28224885,18637077:294256 +k1,18994:29170570,18637077:294257 +k1,18994:31593435,18637077:294256 +k1,18995:32583029,18637077:0 +) +(1,18995:6630773,19502157:25952256,513147,126483 +k1,18994:9848251,19502157:209375 +k1,18994:11099648,19502157:209375 +k1,18994:12328108,19502157:209375 +k1,18994:13843616,19502157:209375 +k1,18994:16888078,19502157:209375 +k1,18994:17965806,19502157:209376 +k1,18994:19267666,19502157:209375 +(1,18994:19267666,19502157:0,452978,115847 +r1,19028:23846474,19502157:4578808,568825,115847 +k1,18994:19267666,19502157:-4578808 +) +(1,18994:19267666,19502157:4578808,452978,115847 +k1,18994:19267666,19502157:3277 +h1,18994:23843197,19502157:0,411205,112570 +) +k1,18994:24055849,19502157:209375 +k1,18994:25659175,19502157:209375 +k1,18994:26887635,19502157:209375 +k1,18994:29362590,19502157:209375 +k1,18994:32583029,19502157:0 +) +(1,18995:6630773,20367237:25952256,513147,126483 +k1,18994:7240661,20367237:254028 +k1,18994:9587908,20367237:254027 +k1,18994:11038623,20367237:254028 +k1,18994:12678736,20367237:254027 +k1,18994:13592056,20367237:254028 +k1,18994:16892852,20367237:254027 +k1,18994:17678377,20367237:254028 +k1,18994:22249261,20367237:254027 +k1,18994:24738722,20367237:254028 +k1,18994:26847418,20367237:254027 +k1,18994:27910816,20367237:254028 +k1,18994:29183928,20367237:254027 +k1,18994:31923737,20367237:254028 +k1,18994:32583029,20367237:0 +) +(1,18995:6630773,21232317:25952256,513147,134348 +k1,18994:10951142,21232317:248617 +k1,18994:12391204,21232317:248617 +k1,18994:15591563,21232317:248617 +k1,18994:16601707,21232317:248616 +k1,18994:17206184,21232317:248617 +k1,18994:20333798,21232317:248617 +k1,18994:21779102,21232317:248617 +(1,18994:21779102,21232317:0,459977,115847 +r1,19028:24247639,21232317:2468537,575824,115847 +k1,18994:21779102,21232317:-2468537 +) +(1,18994:21779102,21232317:2468537,459977,115847 +k1,18994:21779102,21232317:3277 +h1,18994:24244362,21232317:0,411205,112570 +) +k1,18994:24496256,21232317:248617 +k1,18994:26366889,21232317:248617 +k1,18994:27363271,21232317:248616 +k1,18994:29579934,21232317:248617 +k1,18994:31563944,21232317:248617 +k1,18994:32583029,21232317:0 +) +(1,18995:6630773,22097397:25952256,513147,138281 +k1,18994:8944147,22097397:245058 +k1,18994:9848497,22097397:245058 +k1,18994:11112640,22097397:245058 +$1,18994:11112640,22097397 +$1,18994:11615301,22097397 +k1,18994:11860358,22097397:245057 +k1,18994:13296861,22097397:245058 +$1,18994:13296861,22097397 +$1,18994:13848674,22097397 +k1,18994:14093732,22097397:245058 +k1,18994:17687024,22097397:245058 +k1,18994:19883744,22097397:245058 +k1,18994:21571249,22097397:245058 +k1,18994:22835392,22097397:245058 +k1,18994:25515767,22097397:245057 +k1,18994:27829141,22097397:245058 +k1,18994:28733491,22097397:245058 +k1,18994:29997634,22097397:245058 +k1,18994:32583029,22097397:0 +) +(1,18995:6630773,22962477:25952256,513147,134348 +k1,18994:9702545,22962477:230131 +k1,18994:10548714,22962477:230131 +k1,18994:11797930,22962477:230131 +(1,18994:11797930,22962477:0,414482,115847 +r1,19028:13914755,22962477:2116825,530329,115847 +k1,18994:11797930,22962477:-2116825 +) +(1,18994:11797930,22962477:2116825,414482,115847 +k1,18994:11797930,22962477:3277 +h1,18994:13911478,22962477:0,411205,112570 +) +k1,18994:14144887,22962477:230132 +k1,18994:15764381,22962477:230131 +k1,18994:18044478,22962477:230131 +k1,18994:20549364,22962477:230131 +k1,18994:21771055,22962477:230131 +k1,18994:25091209,22962477:230131 +k1,18994:25937379,22962477:230132 +k1,18994:28446197,22962477:230131 +h1,18994:29815244,22962477:0,0,0 +k1,18994:30045375,22962477:230131 +k1,18994:31084876,22962477:230131 +k1,18994:32583029,22962477:0 +) +(1,18995:6630773,23827557:25952256,485622,0 +h1,18994:7826150,23827557:0,0,0 +k1,18995:32583028,23827557:24583208 +g1,18995:32583028,23827557 +) +v1,18997:6630773,24512412:0,393216,0 +(1,19002:6630773,25531344:25952256,1412148,196608 +g1,19002:6630773,25531344 +g1,19002:6630773,25531344 +g1,19002:6434165,25531344 +(1,19002:6434165,25531344:0,1412148,196608 +r1,19028:32779637,25531344:26345472,1608756,196608 +k1,19002:6434165,25531344:-26345472 +) +(1,19002:6434165,25531344:26345472,1412148,196608 +[1,19002:6630773,25531344:25952256,1215540,0 +(1,18999:6630773,24740243:25952256,424439,112852 +(1,18998:6630773,24740243:0,0,0 +g1,18998:6630773,24740243 +g1,18998:6630773,24740243 +g1,18998:6303093,24740243 +(1,18998:6303093,24740243:0,0,0 +) +g1,18998:6630773,24740243 +) +k1,18999:6630773,24740243:0 +g1,18999:10614221,24740243 +g1,18999:11278129,24740243 +g1,18999:13933761,24740243 +g1,18999:15925485,24740243 +g1,18999:16589393,24740243 +g1,18999:18581117,24740243 +g1,18999:19245025,24740243 +g1,18999:19908933,24740243 +g1,18999:21900657,24740243 +h1,18999:22232611,24740243:0,0,0 +k1,18999:32583029,24740243:10350418 +g1,18999:32583029,24740243 +) +(1,19000:6630773,25425098:25952256,431045,106246 +h1,19000:6630773,25425098:0,0,0 +g1,19000:6962727,25425098 +g1,19000:7294681,25425098 +g1,19000:7626635,25425098 +g1,19000:7958589,25425098 +g1,19000:8290543,25425098 +g1,19000:8622497,25425098 +g1,19000:8954451,25425098 +g1,19000:15593530,25425098 +g1,19000:16257438,25425098 +g1,19000:16921346,25425098 +g1,19000:17585254,25425098 +h1,19000:18249162,25425098:0,0,0 +k1,19000:32583029,25425098:14333867 +g1,19000:32583029,25425098 +) +] +) +g1,19002:32583029,25531344 +g1,19002:6630773,25531344 +g1,19002:6630773,25531344 +g1,19002:32583029,25531344 +g1,19002:32583029,25531344 +) +h1,19002:6630773,25727952:0,0,0 +(1,19006:6630773,26593032:25952256,505283,134348 +h1,19005:6630773,26593032:983040,0,0 +k1,19005:8432732,26593032:191084 +k1,19005:10225516,26593032:191084 +k1,19005:12113982,26593032:191084 +k1,19005:13173418,26593032:191084 +k1,19005:14496964,26593032:191084 +k1,19005:16236664,26593032:191084 +k1,19005:17079176,26593032:191084 +k1,19005:18547558,26593032:191085 +k1,19005:19757727,26593032:191084 +k1,19005:24020563,26593032:191084 +k1,19005:24897809,26593032:191084 +k1,19005:27107402,26593032:191084 +k1,19005:29978909,26593032:191084 +k1,19005:31563944,26593032:191084 +k1,19005:32583029,26593032:0 +) +(1,19006:6630773,27458112:25952256,513147,126483 +k1,19005:10089623,27458112:238411 +k1,19005:11281582,27458112:238410 +k1,19005:12624275,27458112:238411 +k1,19005:14139982,27458112:238410 +k1,19005:15397478,27458112:238411 +k1,19005:19377338,27458112:238410 +k1,19005:20425119,27458112:238411 +k1,19005:21735698,27458112:238410 +k1,19005:22633401,27458112:238411 +k1,19005:23890896,27458112:238410 +k1,19005:27349746,27458112:238411 +k1,19005:28274318,27458112:238410 +k1,19005:30090181,27458112:238411 +k1,19005:31900144,27458112:238410 +k1,19005:32583029,27458112:0 +) +(1,19006:6630773,28323192:25952256,513147,126483 +g1,19005:7849087,28323192 +g1,19005:11095085,28323192 +g1,19005:12103684,28323192 +g1,19005:13375082,28323192 +g1,19005:14233603,28323192 +g1,19005:15451917,28323192 +k1,19006:32583029,28323192:12885690 +g1,19006:32583029,28323192 +) +v1,19008:6630773,29008047:0,393216,0 +(1,19016:6630773,32058655:25952256,3443824,196608 +g1,19016:6630773,32058655 +g1,19016:6630773,32058655 +g1,19016:6434165,32058655 +(1,19016:6434165,32058655:0,3443824,196608 +r1,19028:32779637,32058655:26345472,3640432,196608 +k1,19016:6434165,32058655:-26345472 +) +(1,19016:6434165,32058655:26345472,3443824,196608 +[1,19016:6630773,32058655:25952256,3247216,0 +(1,19010:6630773,29235878:25952256,424439,112852 +(1,19009:6630773,29235878:0,0,0 +g1,19009:6630773,29235878 +g1,19009:6630773,29235878 +g1,19009:6303093,29235878 +(1,19009:6303093,29235878:0,0,0 +) +g1,19009:6630773,29235878 +) +k1,19010:6630773,29235878:0 +g1,19010:10614221,29235878 +g1,19010:11278129,29235878 +g1,19010:13933761,29235878 +g1,19010:15925485,29235878 +g1,19010:16589393,29235878 +g1,19010:18581117,29235878 +g1,19010:19245025,29235878 +g1,19010:19908933,29235878 +g1,19010:21900657,29235878 +h1,19010:22232611,29235878:0,0,0 +k1,19010:32583029,29235878:10350418 +g1,19010:32583029,29235878 +) +(1,19011:6630773,29920733:25952256,431045,106246 +h1,19011:6630773,29920733:0,0,0 +g1,19011:6962727,29920733 +g1,19011:7294681,29920733 +g1,19011:13933760,29920733 +g1,19011:14597668,29920733 +g1,19011:15261576,29920733 +g1,19011:15925484,29920733 +g1,19011:16921346,29920733 +h1,19011:17253300,29920733:0,0,0 +k1,19011:32583029,29920733:15329729 +g1,19011:32583029,29920733 +) +(1,19012:6630773,30605588:25952256,424439,112852 +h1,19012:6630773,30605588:0,0,0 +g1,19012:6962727,30605588 +g1,19012:7294681,30605588 +k1,19012:7294681,30605588:0 +h1,19012:11278128,30605588:0,0,0 +k1,19012:32583028,30605588:21304900 +g1,19012:32583028,30605588 +) +(1,19016:6630773,31945803:25952256,431045,112852 +g1,19016:7626635,31945803 +g1,19016:12937898,31945803 +g1,19016:14929622,31945803 +g1,19016:17253300,31945803 +g1,19016:17917208,31945803 +k1,19016:32583029,31945803:12342143 +g1,19016:32583029,31945803 +) +] +) +g1,19016:32583029,32058655 +g1,19016:6630773,32058655 +g1,19016:6630773,32058655 +g1,19016:32583029,32058655 +g1,19016:32583029,32058655 +) +h1,19016:6630773,32255263:0,0,0 +(1,19019:6630773,41404465:25952256,9083666,0 +k1,19019:10523651,41404465:3892878 +h1,19018:10523651,41404465:0,0,0 +(1,19018:10523651,41404465:18166500,9083666,0 +(1,19018:10523651,41404465:18167376,9083688,0 +(1,19018:10523651,41404465:18167376,9083688,0 +(1,19018:10523651,41404465:0,9083688,0 +(1,19018:10523651,41404465:0,14208860,0 +(1,19018:10523651,41404465:28417720,14208860,0 +) +k1,19018:10523651,41404465:-28417720 +) +) +g1,19018:28691027,41404465 +) +) +) +g1,19019:28690151,41404465 +k1,19019:32583029,41404465:3892878 +) +(1,19026:6630773,42269545:25952256,513147,134348 +h1,19025:6630773,42269545:983040,0,0 +k1,19025:10126042,42269545:173249 +k1,19025:10958583,42269545:173249 +k1,19025:12867225,42269545:173249 +k1,19025:14059559,42269545:173249 +k1,19025:16498388,42269545:173249 +k1,19025:18764857,42269545:173249 +k1,19025:19806458,42269545:173249 +k1,19025:21083989,42269545:173249 +k1,19025:21944711,42269545:173249 +k1,19025:22473820,42269545:173249 +k1,19025:25409412,42269545:173249 +k1,19025:27744038,42269545:173249 +k1,19025:28545122,42269545:173249 +k1,19025:29921612,42269545:173249 +k1,19025:32583029,42269545:0 +) +(1,19026:6630773,43134625:25952256,513147,134348 +k1,19025:7768821,43134625:269696 +k1,19025:9131001,43134625:269695 +k1,19025:9756557,43134625:269696 +k1,19025:11838979,43134625:269696 +k1,19025:14096382,43134625:269696 +k1,19025:15052239,43134625:269695 +k1,19025:18542374,43134625:269696 +k1,19025:20524526,43134625:269696 +k1,19025:21555749,43134625:269695 +(1,19025:21555749,43134625:0,452978,115847 +r1,19028:22969150,43134625:1413401,568825,115847 +k1,19025:21555749,43134625:-1413401 +) +(1,19025:21555749,43134625:1413401,452978,115847 +k1,19025:21555749,43134625:3277 +h1,19025:22965873,43134625:0,411205,112570 +) +k1,19025:23412516,43134625:269696 +k1,19025:25613558,43134625:269696 +k1,19025:27817877,43134625:269696 +k1,19025:28619069,43134625:269695 +k1,19025:31966991,43134625:269696 +k1,19025:32583029,43134625:0 +) +(1,19026:6630773,43999705:25952256,485622,134348 +g1,19025:9108689,43999705 +h1,19025:10079277,43999705:0,0,0 +g1,19025:10278506,43999705 +g1,19025:11287105,43999705 +g1,19025:12984487,43999705 +h1,19025:14179864,43999705:0,0,0 +k1,19026:32583030,43999705:18229496 +g1,19026:32583030,43999705 +) +] +(1,19028:32583029,45706769:0,0,0 +g1,19028:32583029,45706769 +) +) +] +(1,19028:6630773,47279633:25952256,0,0 +h1,19028:6630773,47279633:25952256,0,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,19112:3078558,51504789:16384,1179648,0 +] +(1,19028:4262630,4025873:0,0,0 +[1,19028:-473656,4025873:0,0,0 +(1,19028:-473656,-710413:0,0,0 +(1,19028:-473656,-710413:0,0,0 +g1,19028:-473656,-710413 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +g1,19028:-473656,-710413 ) ] ) +] +!21846 +}318 +Input:2994:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2995:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2996:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2997:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2998:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2999:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3000:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3001:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3002:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3003:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3004:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3005:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3006:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3007:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3008:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3009:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3010:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3011:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1704 +{319 +[1,19084:4262630,47279633:28320399,43253760,0 +(1,19084:4262630,4025873:0,0,0 +[1,19084:-473656,4025873:0,0,0 +(1,19084:-473656,-710413:0,0,0 +(1,19084:-473656,-644877:0,0,0 +k1,19084:-473656,-644877:-65536 ) +(1,19084:-473656,4736287:0,0,0 +k1,19084:-473656,4736287:5209943 ) -] -[1,19112:3078558,4812305:0,0,0 -(1,19112:3078558,49800853:0,16384,2228224 -g1,19112:29030814,49800853 -g1,19112:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,19112:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +g1,19084:-473656,-710413 ) ] ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,19112:37855564,49800853:1179648,16384,0 +[1,19084:6630773,47279633:25952256,43253760,0 +[1,19084:6630773,4812305:25952256,786432,0 +(1,19084:6630773,4812305:25952256,513147,126483 +(1,19084:6630773,4812305:25952256,513147,126483 +g1,19084:3078558,4812305 +[1,19084:3078558,4812305:0,0,0 +(1,19084:3078558,2439708:0,1703936,0 +k1,19084:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,19084:2537886,2439708:1179648,16384,0 ) +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,19084:3078558,1915420:16384,1179648,0 ) -k1,19112:3078556,49800853:-34777008 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] -g1,19112:6630773,4812305 -k1,19112:21350816,4812305:13524666 -g1,19112:21999622,4812305 -g1,19112:25611966,4812305 -g1,19112:28956923,4812305 -g1,19112:29772190,4812305 +) ) ) ] -[1,19112:6630773,45706769:25952256,40108032,0 -(1,19112:6630773,45706769:25952256,40108032,0 -(1,19112:6630773,45706769:0,0,0 -g1,19112:6630773,45706769 +[1,19084:3078558,4812305:0,0,0 +(1,19084:3078558,2439708:0,1703936,0 +g1,19084:29030814,2439708 +g1,19084:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,19084:36151628,1915420:16384,1179648,0 ) -[1,19112:6630773,45706769:25952256,40108032,0 -v1,19057:6630773,6254097:0,393216,0 -(1,19057:6630773,7870092:25952256,2009211,196608 -g1,19057:6630773,7870092 -g1,19057:6630773,7870092 -g1,19057:6434165,7870092 -(1,19057:6434165,7870092:0,2009211,196608 -r1,19112:32779637,7870092:26345472,2205819,196608 -k1,19057:6434165,7870092:-26345472 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) -(1,19057:6434165,7870092:26345472,2009211,196608 -[1,19057:6630773,7870092:25952256,1812603,0 -(1,19053:6630773,6461715:25952256,404226,107478 -(1,19052:6630773,6461715:0,0,0 -g1,19052:6630773,6461715 -g1,19052:6630773,6461715 -g1,19052:6303093,6461715 -(1,19052:6303093,6461715:0,0,0 -) -g1,19052:6630773,6461715 -) -k1,19053:6630773,6461715:0 -g1,19053:11689104,6461715 -g1,19053:13902124,6461715 -g1,19053:15166707,6461715 -h1,19053:15482853,6461715:0,0,0 -k1,19053:32583029,6461715:17100176 -g1,19053:32583029,6461715 -) -(1,19054:6630773,7127893:25952256,404226,76021 -h1,19054:6630773,7127893:0,0,0 -g1,19054:6946919,7127893 -g1,19054:7263065,7127893 -g1,19054:12953688,7127893 -g1,19054:13585980,7127893 -g1,19054:14534418,7127893 -h1,19054:14850564,7127893:0,0,0 -k1,19054:32583028,7127893:17732464 -g1,19054:32583028,7127893 -) -(1,19055:6630773,7794071:25952256,410518,76021 -h1,19055:6630773,7794071:0,0,0 -g1,19055:6946919,7794071 -g1,19055:7263065,7794071 -g1,19055:12953687,7794071 -g1,19055:13585979,7794071 -h1,19055:14218271,7794071:0,0,0 -k1,19055:32583029,7794071:18364758 -g1,19055:32583029,7794071 -) -] -) -g1,19057:32583029,7870092 -g1,19057:6630773,7870092 -g1,19057:6630773,7870092 -g1,19057:32583029,7870092 -g1,19057:32583029,7870092 -) -h1,19057:6630773,8066700:0,0,0 -(1,19060:6630773,17740190:25952256,9083666,0 -k1,19060:10523651,17740190:3892878 -h1,19059:10523651,17740190:0,0,0 -(1,19059:10523651,17740190:18166500,9083666,0 -(1,19059:10523651,17740190:18167376,9083688,0 -(1,19059:10523651,17740190:18167376,9083688,0 -(1,19059:10523651,17740190:0,9083688,0 -(1,19059:10523651,17740190:0,14208860,0 -(1,19059:10523651,17740190:28417720,14208860,0 -) -k1,19059:10523651,17740190:-28417720 -) -) -g1,19059:28691027,17740190 -) -) -) -g1,19060:28690151,17740190 -k1,19060:32583029,17740190:3892878 -) -(1,19067:6630773,19831450:25952256,564462,139132 -(1,19067:6630773,19831450:2450326,534184,12975 -g1,19067:6630773,19831450 -g1,19067:9081099,19831450 -) -g1,19067:12118955,19831450 -k1,19067:32583029,19831450:17022516 -g1,19067:32583029,19831450 -) -(1,19071:6630773,21066154:25952256,513147,134348 -k1,19070:9829764,21066154:202030 -k1,19070:12364219,21066154:202029 -k1,19070:15592046,21066154:202030 -k1,19070:16785636,21066154:202030 -k1,19070:18006750,21066154:202029 -k1,19070:21513761,21066154:202030 -k1,19070:22375082,21066154:202029 -k1,19070:22932972,21066154:202030 -k1,19070:26544840,21066154:202030 -k1,19070:27819038,21066154:202029 -k1,19070:29012628,21066154:202030 -k1,19070:32583029,21066154:0 -) -(1,19071:6630773,21907642:25952256,505283,134348 -k1,19070:8092460,21907642:270242 -k1,19070:9428974,21907642:270243 -k1,19070:12928175,21907642:270242 -k1,19070:14933810,21907642:270242 -k1,19070:16724487,21907642:270242 -k1,19070:18552521,21907642:270243 -k1,19070:19927045,21907642:270242 -k1,19070:20945053,21907642:270242 -k1,19070:24351849,21907642:270243 -k1,19070:25238129,21907642:270242 -k1,19070:25906830,21907642:270242 -k1,19070:26859957,21907642:270242 -k1,19070:27528659,21907642:270243 -k1,19070:31474160,21907642:270242 -k1,19070:32583029,21907642:0 -) -(1,19071:6630773,22749130:25952256,513147,138281 -k1,19070:7583789,22749130:270131 -k1,19070:9136460,22749130:270131 -k1,19070:10354242,22749130:270131 -$1,19070:10354242,22749130 -$1,19070:10856903,22749130 -k1,19070:11127035,22749130:270132 -k1,19070:12080051,22749130:270131 -$1,19070:12080051,22749130 -$1,19070:12582712,22749130 -k1,19070:12852843,22749130:270131 -k1,19070:14314419,22749130:270131 -$1,19070:14314419,22749130 -$1,19070:14866232,22749130 -k1,19070:15310033,22749130:270131 -k1,19070:19550335,22749130:270131 -k1,19070:20638355,22749130:270131 -k1,19070:22302437,22749130:270131 -k1,19070:26139038,22749130:270132 -k1,19070:26867266,22749130:270131 -k1,19070:27668894,22749130:270131 -k1,19070:30568985,22749130:270131 -k1,19070:31490544,22749130:270131 -k1,19070:32583029,22749130:0 -) -(1,19071:6630773,23590618:25952256,513147,134348 -k1,19070:9615618,23590618:222502 -k1,19070:13278105,23590618:222502 -k1,19070:14152035,23590618:222502 -k1,19070:17177512,23590618:222502 -k1,19070:19212740,23590618:222502 -k1,19070:22450553,23590618:222502 -k1,19070:23332347,23590618:222502 -k1,19070:24573934,23590618:222502 -k1,19070:25888921,23590618:222502 -k1,19070:26778579,23590618:222502 -(1,19070:26778579,23590618:0,452978,122846 -r1,19112:31709099,23590618:4930520,575824,122846 -k1,19070:26778579,23590618:-4930520 -) -(1,19070:26778579,23590618:4930520,452978,122846 -k1,19070:26778579,23590618:3277 -h1,19070:31705822,23590618:0,411205,112570 -) -k1,19070:31931601,23590618:222502 -k1,19070:32583029,23590618:0 -) -(1,19071:6630773,24432106:25952256,513147,126483 -g1,19070:8759382,24432106 -g1,19070:9860386,24432106 -g1,19070:12392041,24432106 -g1,19070:14198868,24432106 -k1,19071:32583029,24432106:16225405 -g1,19071:32583029,24432106 -) -v1,19073:6630773,25622572:0,393216,0 -(1,19078:6630773,26603846:25952256,1374490,196608 -g1,19078:6630773,26603846 -g1,19078:6630773,26603846 -g1,19078:6434165,26603846 -(1,19078:6434165,26603846:0,1374490,196608 -r1,19112:32779637,26603846:26345472,1571098,196608 -k1,19078:6434165,26603846:-26345472 -) -(1,19078:6434165,26603846:26345472,1374490,196608 -[1,19078:6630773,26603846:25952256,1177882,0 -(1,19075:6630773,25830190:25952256,404226,107478 -(1,19074:6630773,25830190:0,0,0 -g1,19074:6630773,25830190 -g1,19074:6630773,25830190 -g1,19074:6303093,25830190 -(1,19074:6303093,25830190:0,0,0 -) -g1,19074:6630773,25830190 -) -k1,19075:6630773,25830190:0 -g1,19075:11689104,25830190 -g1,19075:13902124,25830190 -g1,19075:15798998,25830190 -g1,19075:16431290,25830190 -g1,19075:18960456,25830190 -h1,19075:19276602,25830190:0,0,0 -k1,19075:32583029,25830190:13306427 -g1,19075:32583029,25830190 -) -(1,19076:6630773,26496368:25952256,404226,107478 -h1,19076:6630773,26496368:0,0,0 -g1,19076:6946919,26496368 -g1,19076:7263065,26496368 -k1,19076:7263065,26496368:0 -h1,19076:11689104,26496368:0,0,0 -k1,19076:32583028,26496368:20893924 -g1,19076:32583028,26496368 -) -] -) -g1,19078:32583029,26603846 -g1,19078:6630773,26603846 -g1,19078:6630773,26603846 -g1,19078:32583029,26603846 -g1,19078:32583029,26603846 -) -h1,19078:6630773,26800454:0,0,0 -(1,19081:6630773,36473944:25952256,9083666,0 -k1,19081:10523651,36473944:3892878 -h1,19080:10523651,36473944:0,0,0 -(1,19080:10523651,36473944:18166500,9083666,0 -(1,19080:10523651,36473944:18167376,9083688,0 -(1,19080:10523651,36473944:18167376,9083688,0 -(1,19080:10523651,36473944:0,9083688,0 -(1,19080:10523651,36473944:0,14208860,0 -(1,19080:10523651,36473944:28417720,14208860,0 -) -k1,19080:10523651,36473944:-28417720 -) -) -g1,19080:28691027,36473944 -) -) -) -g1,19081:28690151,36473944 -k1,19081:32583029,36473944:3892878 -) -(1,19088:6630773,37315432:25952256,513147,126483 -h1,19087:6630773,37315432:983040,0,0 -g1,19087:8300630,37315432 -g1,19087:13728977,37315432 -g1,19087:14769033,37315432 -g1,19087:16072544,37315432 -g1,19087:17019539,37315432 -g1,19087:18731994,37315432 -g1,19087:21258406,37315432 -g1,19087:22116927,37315432 -g1,19087:25115199,37315432 -k1,19088:32583029,37315432:5795351 -g1,19088:32583029,37315432 -) -v1,19090:6630773,38505898:0,393216,0 -(1,19095:6630773,39493464:25952256,1380782,196608 -g1,19095:6630773,39493464 -g1,19095:6630773,39493464 -g1,19095:6434165,39493464 -(1,19095:6434165,39493464:0,1380782,196608 -r1,19112:32779637,39493464:26345472,1577390,196608 -k1,19095:6434165,39493464:-26345472 -) -(1,19095:6434165,39493464:26345472,1380782,196608 -[1,19095:6630773,39493464:25952256,1184174,0 -(1,19092:6630773,38719808:25952256,410518,107478 -(1,19091:6630773,38719808:0,0,0 -g1,19091:6630773,38719808 -g1,19091:6630773,38719808 -g1,19091:6303093,38719808 -(1,19091:6303093,38719808:0,0,0 -) -g1,19091:6630773,38719808 -) -k1,19092:6630773,38719808:0 -g1,19092:11689104,38719808 -g1,19092:13902124,38719808 -g1,19092:15482853,38719808 -g1,19092:16115145,38719808 -g1,19092:18644311,38719808 -h1,19092:18960457,38719808:0,0,0 -k1,19092:32583029,38719808:13622572 -g1,19092:32583029,38719808 -) -(1,19093:6630773,39385986:25952256,404226,107478 -h1,19093:6630773,39385986:0,0,0 -g1,19093:6946919,39385986 -g1,19093:7263065,39385986 -g1,19093:13269833,39385986 -g1,19093:13902125,39385986 -h1,19093:15166708,39385986:0,0,0 -k1,19093:32583028,39385986:17416320 -g1,19093:32583028,39385986 -) -] -) -g1,19095:32583029,39493464 -g1,19095:6630773,39493464 -g1,19095:6630773,39493464 -g1,19095:32583029,39493464 -g1,19095:32583029,39493464 -) -h1,19095:6630773,39690072:0,0,0 -(1,19103:6630773,41055848:25952256,513147,134348 -h1,19102:6630773,41055848:983040,0,0 -k1,19102:10881593,41055848:252469 -k1,19102:11793354,41055848:252469 -k1,19102:12947544,41055848:252415 -k1,19102:15532439,41055848:252469 -k1,19102:17392506,41055848:252469 -k1,19102:19803731,41055848:252469 -k1,19102:20684035,41055848:252469 -k1,19102:21955589,41055848:252469 -k1,19102:23514191,41055848:252469 -k1,19102:26428077,41055848:252469 -k1,19102:27548898,41055848:252469 -k1,19102:28893852,41055848:252469 -k1,19102:30318760,41055848:252469 -k1,19103:32583029,41055848:0 -) -(1,19103:6630773,41897336:25952256,505283,126483 -k1,19102:8267342,41897336:255725 -k1,19102:10408539,41897336:255726 -k1,19102:12168315,41897336:255725 -k1,19102:14457622,41897336:255725 -k1,19102:17977040,41897336:255725 -(1,19102:17977040,41897336:0,452978,122846 -r1,19112:22204136,41897336:4227096,575824,122846 -k1,19102:17977040,41897336:-4227096 -) -(1,19102:17977040,41897336:4227096,452978,122846 -k1,19102:17977040,41897336:3277 -h1,19102:22200859,41897336:0,411205,112570 -) -k1,19102:22459862,41897336:255726 -k1,19102:23907032,41897336:255725 -(1,19102:23907032,41897336:0,452978,122846 -r1,19112:27430704,41897336:3523672,575824,122846 -k1,19102:23907032,41897336:-3523672 -) -(1,19102:23907032,41897336:3523672,452978,122846 -k1,19102:23907032,41897336:3277 -h1,19102:27427427,41897336:0,411205,112570 -) -k1,19102:27860099,41897336:255725 -k1,19102:28767252,41897336:255725 -k1,19102:30300275,41897336:255726 -k1,19102:31575085,41897336:255725 -k1,19103:32583029,41897336:0 -) -(1,19103:6630773,42738824:25952256,505283,134348 -k1,19102:10118571,42738824:210998 -k1,19102:10945607,42738824:210998 -k1,19102:12175690,42738824:210998 -k1,19102:16350305,42738824:210998 -k1,19102:18040450,42738824:210997 -(1,19102:18040450,42738824:0,452978,115847 -r1,19112:24026105,42738824:5985655,568825,115847 -k1,19102:18040450,42738824:-5985655 -) -(1,19102:18040450,42738824:5985655,452978,115847 -k1,19102:18040450,42738824:3277 -h1,19102:24022828,42738824:0,411205,112570 -) -k1,19102:24237103,42738824:210998 -k1,19102:25316453,42738824:210998 -k1,19102:26724794,42738824:210998 -k1,19102:27291652,42738824:210998 -k1,19102:32583029,42738824:0 -) -(1,19103:6630773,43580312:25952256,505283,134348 -g1,19102:9162428,43580312 -g1,19102:11358539,43580312 -g1,19102:15367376,43580312 -g1,19102:17301998,43580312 -g1,19102:20099730,43580312 -g1,19102:21252508,43580312 -g1,19102:22848309,43580312 -(1,19102:22848309,43580312:0,414482,122846 -r1,19112:24613422,43580312:1765113,537328,122846 -k1,19102:22848309,43580312:-1765113 -) -(1,19102:22848309,43580312:1765113,414482,122846 -k1,19102:22848309,43580312:3277 -h1,19102:24610145,43580312:0,411205,112570 -) -g1,19102:24812651,43580312 -g1,19102:25663308,43580312 -g1,19102:26881622,43580312 -(1,19102:26881622,43580312:0,452978,115847 -r1,19112:28646735,43580312:1765113,568825,115847 -k1,19102:26881622,43580312:-1765113 -) -(1,19102:26881622,43580312:1765113,452978,115847 -k1,19102:26881622,43580312:3277 -h1,19102:28643458,43580312:0,411205,112570 -) -g1,19102:28845964,43580312 -k1,19103:32583029,43580312:810228 -g1,19103:32583029,43580312 -) -v1,19105:6630773,44770778:0,393216,0 -] -(1,19112:32583029,45706769:0,0,0 -g1,19112:32583029,45706769 -) -) -] -(1,19112:6630773,47279633:25952256,0,0 -h1,19112:6630773,47279633:25952256,0,0 -) -] -(1,19112:4262630,4025873:0,0,0 -[1,19112:-473656,4025873:0,0,0 -(1,19112:-473656,-710413:0,0,0 -(1,19112:-473656,-710413:0,0,0 -g1,19112:-473656,-710413 -) -g1,19112:-473656,-710413 -) -] -) -] -!15233 -}339 -Input:3023:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3024:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3025:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3026:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3027:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3028:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!576 -{340 -[1,19166:4262630,47279633:28320399,43253760,0 -(1,19166:4262630,4025873:0,0,0 -[1,19166:-473656,4025873:0,0,0 -(1,19166:-473656,-710413:0,0,0 -(1,19166:-473656,-644877:0,0,0 -k1,19166:-473656,-644877:-65536 +] ) -(1,19166:-473656,4736287:0,0,0 -k1,19166:-473656,4736287:5209943 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,19084:37855564,2439708:1179648,16384,0 ) -g1,19166:-473656,-710413 ) -] +k1,19084:3078556,2439708:-34777008 ) -[1,19166:6630773,47279633:25952256,43253760,0 -[1,19166:6630773,4812305:25952256,786432,0 -(1,19166:6630773,4812305:25952256,485622,11795 -(1,19166:6630773,4812305:25952256,485622,11795 -g1,19166:3078558,4812305 -[1,19166:3078558,4812305:0,0,0 -(1,19166:3078558,2439708:0,1703936,0 -k1,19166:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,19166:2537886,2439708:1179648,16384,0 +] +[1,19084:3078558,4812305:0,0,0 +(1,19084:3078558,49800853:0,16384,2228224 +k1,19084:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,19084:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,19166:3078558,1915420:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,19084:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,19166:3078558,4812305:0,0,0 -(1,19166:3078558,2439708:0,1703936,0 -g1,19166:29030814,2439708 -g1,19166:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,19166:36151628,1915420:16384,1179648,0 +[1,19084:3078558,4812305:0,0,0 +(1,19084:3078558,49800853:0,16384,2228224 +g1,19084:29030814,49800853 +g1,19084:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,19084:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,19166:37855564,2439708:1179648,16384,0 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,19084:37855564,49800853:1179648,16384,0 ) ) -k1,19166:3078556,2439708:-34777008 +k1,19084:3078556,49800853:-34777008 ) ] -[1,19166:3078558,4812305:0,0,0 -(1,19166:3078558,49800853:0,16384,2228224 -k1,19166:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,19166:2537886,49800853:1179648,16384,0 +g1,19084:6630773,4812305 +k1,19084:21350816,4812305:13524666 +g1,19084:21999622,4812305 +g1,19084:25611966,4812305 +g1,19084:28956923,4812305 +g1,19084:29772190,4812305 +) +) +] +[1,19084:6630773,45706769:25952256,40108032,0 +(1,19084:6630773,45706769:25952256,40108032,0 +(1,19084:6630773,45706769:0,0,0 +g1,19084:6630773,45706769 +) +[1,19084:6630773,45706769:25952256,40108032,0 +v1,19028:6630773,6254097:0,393216,0 +(1,19032:6630773,6594780:25952256,733899,196608 +g1,19032:6630773,6594780 +g1,19032:6630773,6594780 +g1,19032:6434165,6594780 +(1,19032:6434165,6594780:0,733899,196608 +r1,19084:32779637,6594780:26345472,930507,196608 +k1,19032:6434165,6594780:-26345472 +) +(1,19032:6434165,6594780:26345472,733899,196608 +[1,19032:6630773,6594780:25952256,537291,0 +(1,19030:6630773,6488534:25952256,431045,106246 +(1,19029:6630773,6488534:0,0,0 +g1,19029:6630773,6488534 +g1,19029:6630773,6488534 +g1,19029:6303093,6488534 +(1,19029:6303093,6488534:0,0,0 +) +g1,19029:6630773,6488534 +) +g1,19030:6962727,6488534 +g1,19030:7294681,6488534 +g1,19030:13601806,6488534 +g1,19030:14265714,6488534 +g1,19030:16257438,6488534 +g1,19030:18913070,6488534 +g1,19030:19576978,6488534 +g1,19030:20240886,6488534 +g1,19030:20904794,6488534 +g1,19030:21900656,6488534 +h1,19030:22232610,6488534:0,0,0 +k1,19030:32583029,6488534:10350419 +g1,19030:32583029,6488534 +) +] +) +g1,19032:32583029,6594780 +g1,19032:6630773,6594780 +g1,19032:6630773,6594780 +g1,19032:32583029,6594780 +g1,19032:32583029,6594780 +) +h1,19032:6630773,6791388:0,0,0 +(1,19036:6630773,7656468:25952256,505283,134348 +h1,19035:6630773,7656468:983040,0,0 +k1,19035:9733633,7656468:245490 +k1,19035:11368486,7656468:245490 +k1,19035:12605536,7656468:245490 +k1,19035:14613944,7656468:245490 +k1,19035:17693866,7656468:245490 +k1,19035:18664184,7656468:245490 +k1,19035:19778025,7656468:245489 +k1,19035:21420087,7656468:245490 +k1,19035:24176917,7656468:245490 +(1,19035:24176917,7656468:0,452978,115847 +r1,19084:25238606,7656468:1061689,568825,115847 +k1,19035:24176917,7656468:-1061689 +) +(1,19035:24176917,7656468:1061689,452978,115847 +k1,19035:24176917,7656468:3277 +h1,19035:25235329,7656468:0,411205,112570 +) +k1,19035:25484096,7656468:245490 +k1,19035:26381014,7656468:245490 +k1,19035:27645589,7656468:245490 +(1,19035:27645589,7656468:0,452978,115847 +r1,19084:29410702,7656468:1765113,568825,115847 +k1,19035:27645589,7656468:-1765113 +) +(1,19035:27645589,7656468:1765113,452978,115847 +k1,19035:27645589,7656468:3277 +h1,19035:29407425,7656468:0,411205,112570 +) +k1,19035:29656192,7656468:245490 +k1,19035:32583029,7656468:0 +) +(1,19036:6630773,8521548:25952256,513147,134348 +k1,19035:8262266,8521548:223780 +k1,19035:9354398,8521548:223780 +k1,19035:10556631,8521548:223780 +k1,19035:12435196,8521548:223781 +k1,19035:14881957,8521548:223780 +k1,19035:15765029,8521548:223780 +k1,19035:18007318,8521548:223780 +k1,19035:19625049,8521548:223780 +k1,19035:22611172,8521548:223780 +k1,19035:25196215,8521548:223781 +k1,19035:26492164,8521548:223780 +k1,19035:28001760,8521548:223780 +k1,19035:29880324,8521548:223780 +k1,19035:32583029,8521548:0 +) +(1,19036:6630773,9386628:25952256,505283,7863 +g1,19035:9241072,9386628 +k1,19036:32583029,9386628:21669478 +g1,19036:32583029,9386628 +) +v1,19038:6630773,10071483:0,393216,0 +(1,19044:6630773,11788482:25952256,2110215,196608 +g1,19044:6630773,11788482 +g1,19044:6630773,11788482 +g1,19044:6434165,11788482 +(1,19044:6434165,11788482:0,2110215,196608 +r1,19084:32779637,11788482:26345472,2306823,196608 +k1,19044:6434165,11788482:-26345472 +) +(1,19044:6434165,11788482:26345472,2110215,196608 +[1,19044:6630773,11788482:25952256,1913607,0 +(1,19040:6630773,10305920:25952256,431045,112852 +(1,19039:6630773,10305920:0,0,0 +g1,19039:6630773,10305920 +g1,19039:6630773,10305920 +g1,19039:6303093,10305920 +(1,19039:6303093,10305920:0,0,0 +) +g1,19039:6630773,10305920 +) +k1,19040:6630773,10305920:0 +g1,19040:10614221,10305920 +g1,19040:11278129,10305920 +g1,19040:13933761,10305920 +g1,19040:15925485,10305920 +g1,19040:16589393,10305920 +g1,19040:18581117,10305920 +g1,19040:19245025,10305920 +g1,19040:19908933,10305920 +g1,19040:21568703,10305920 +g1,19040:23560427,10305920 +g1,19040:24224335,10305920 +g1,19040:28871691,10305920 +h1,19040:29203645,10305920:0,0,0 +k1,19040:32583029,10305920:3379384 +g1,19040:32583029,10305920 +) +(1,19041:6630773,10990775:25952256,431045,106246 +h1,19041:6630773,10990775:0,0,0 +g1,19041:6962727,10990775 +g1,19041:7294681,10990775 +g1,19041:13601806,10990775 +g1,19041:14265714,10990775 +g1,19041:16257438,10990775 +g1,19041:18913070,10990775 +g1,19041:19576978,10990775 +g1,19041:20240886,10990775 +g1,19041:20904794,10990775 +g1,19041:21900656,10990775 +h1,19041:22232610,10990775:0,0,0 +k1,19041:32583029,10990775:10350419 +g1,19041:32583029,10990775 +) +(1,19042:6630773,11675630:25952256,424439,112852 +h1,19042:6630773,11675630:0,0,0 +g1,19042:6962727,11675630 +g1,19042:7294681,11675630 +k1,19042:7294681,11675630:0 +h1,19042:11278128,11675630:0,0,0 +k1,19042:32583028,11675630:21304900 +g1,19042:32583028,11675630 +) +] +) +g1,19044:32583029,11788482 +g1,19044:6630773,11788482 +g1,19044:6630773,11788482 +g1,19044:32583029,11788482 +g1,19044:32583029,11788482 +) +h1,19044:6630773,11985090:0,0,0 +(1,19047:6630773,21134292:25952256,9083666,0 +k1,19047:10523651,21134292:3892878 +h1,19046:10523651,21134292:0,0,0 +(1,19046:10523651,21134292:18166500,9083666,0 +(1,19046:10523651,21134292:18167376,9083688,0 +(1,19046:10523651,21134292:18167376,9083688,0 +(1,19046:10523651,21134292:0,9083688,0 +(1,19046:10523651,21134292:0,14208860,0 +(1,19046:10523651,21134292:28417720,14208860,0 +) +k1,19046:10523651,21134292:-28417720 +) +) +g1,19046:28691027,21134292 +) +) +) +g1,19047:28690151,21134292 +k1,19047:32583029,21134292:3892878 +) +(1,19054:6630773,21999372:25952256,513147,134348 +h1,19053:6630773,21999372:983040,0,0 +k1,19053:8599649,21999372:156806 +k1,19053:10780206,21999372:156805 +k1,19053:11292872,21999372:156806 +k1,19053:13322697,21999372:156806 +k1,19053:16526272,21999372:156806 +k1,19053:17630728,21999372:156805 +k1,19053:18806619,21999372:156806 +k1,19053:20618209,21999372:156806 +k1,19053:23171667,21999372:156806 +k1,19053:24196824,21999372:156805 +k1,19053:25883896,21999372:156806 +k1,19053:26692130,21999372:156806 +k1,19053:27783479,21999372:156806 +k1,19053:28959369,21999372:156805 +k1,19053:31923737,21999372:156806 +k1,19053:32583029,21999372:0 +) +(1,19054:6630773,22864452:25952256,505283,115847 +k1,19053:7861000,22864452:211142 +(1,19053:7861000,22864452:0,452978,115847 +r1,19084:9626113,22864452:1765113,568825,115847 +k1,19053:7861000,22864452:-1765113 +) +(1,19053:7861000,22864452:1765113,452978,115847 +k1,19053:7861000,22864452:3277 +h1,19053:9622836,22864452:0,411205,112570 +) +k1,19053:9837254,22864452:211141 +k1,19053:12835642,22864452:211142 +k1,19053:13698212,22864452:211142 +k1,19053:14265214,22864452:211142 +k1,19053:17234110,22864452:211141 +k1,19053:19455241,22864452:211142 +(1,19053:19455241,22864452:0,452978,115847 +r1,19084:24034049,22864452:4578808,568825,115847 +k1,19053:19455241,22864452:-4578808 +) +(1,19053:19455241,22864452:4578808,452978,115847 +k1,19053:19455241,22864452:3277 +h1,19053:24030772,22864452:0,411205,112570 +) +k1,19053:24418861,22864452:211142 +k1,19053:26010847,22864452:211142 +k1,19053:27716209,22864452:211141 +k1,19053:29607694,22864452:211142 +k1,19053:32583029,22864452:0 +) +(1,19054:6630773,23729532:25952256,513147,134348 +k1,19053:7851363,23729532:201505 +k1,19053:10318447,23729532:201504 +(1,19053:10318447,23729532:0,452978,115847 +r1,19084:12083560,23729532:1765113,568825,115847 +k1,19053:10318447,23729532:-1765113 +) +(1,19053:10318447,23729532:1765113,452978,115847 +k1,19053:10318447,23729532:3277 +h1,19053:12080283,23729532:0,411205,112570 +) +k1,19053:12285065,23729532:201505 +k1,19053:15294132,23729532:201505 +k1,19053:16430179,23729532:201504 +k1,19053:17247722,23729532:201505 +(1,19053:17247722,23729532:0,452978,122846 +r1,19084:20067971,23729532:2820249,575824,122846 +k1,19053:17247722,23729532:-2820249 +) +(1,19053:17247722,23729532:2820249,452978,122846 +k1,19053:17247722,23729532:3277 +h1,19053:20064694,23729532:0,411205,112570 +) +k1,19053:20269476,23729532:201505 +k1,19053:21699780,23729532:201504 +k1,19053:22848936,23729532:201505 +k1,19053:24253681,23729532:201504 +k1,19053:25732483,23729532:201505 +k1,19053:27665449,23729532:201505 +k1,19053:28820502,23729532:201504 +k1,19053:30114492,23729532:201505 +(1,19053:30114492,23729532:0,452978,115847 +r1,19084:32583029,23729532:2468537,568825,115847 +k1,19053:30114492,23729532:-2468537 +) +(1,19053:30114492,23729532:2468537,452978,115847 +k1,19053:30114492,23729532:3277 +h1,19053:32579752,23729532:0,411205,112570 +) +k1,19053:32583029,23729532:0 +) +(1,19054:6630773,24594612:25952256,513147,126483 +g1,19053:7902171,24594612 +g1,19053:9304641,24594612 +g1,19053:11272687,24594612 +g1,19053:12219682,24594612 +g1,19053:15138000,24594612 +g1,19053:16098757,24594612 +g1,19053:17429793,24594612 +g1,19053:19330992,24594612 +g1,19053:21146339,24594612 +g1,19053:24427726,24594612 +g1,19053:26764739,24594612 +g1,19053:27615396,24594612 +k1,19054:32583029,24594612:4379120 +g1,19054:32583029,24594612 +) +v1,19056:6630773,25279467:0,393216,0 +(1,19062:6630773,26996466:25952256,2110215,196608 +g1,19062:6630773,26996466 +g1,19062:6630773,26996466 +g1,19062:6434165,26996466 +(1,19062:6434165,26996466:0,2110215,196608 +r1,19084:32779637,26996466:26345472,2306823,196608 +k1,19062:6434165,26996466:-26345472 +) +(1,19062:6434165,26996466:26345472,2110215,196608 +[1,19062:6630773,26996466:25952256,1913607,0 +(1,19058:6630773,25513904:25952256,431045,112852 +(1,19057:6630773,25513904:0,0,0 +g1,19057:6630773,25513904 +g1,19057:6630773,25513904 +g1,19057:6303093,25513904 +(1,19057:6303093,25513904:0,0,0 +) +g1,19057:6630773,25513904 +) +k1,19058:6630773,25513904:0 +g1,19058:10614221,25513904 +g1,19058:11278129,25513904 +g1,19058:13933761,25513904 +g1,19058:15925485,25513904 +g1,19058:16589393,25513904 +g1,19058:18581117,25513904 +g1,19058:19245025,25513904 +g1,19058:19908933,25513904 +g1,19058:21568703,25513904 +g1,19058:23560427,25513904 +g1,19058:24224335,25513904 +g1,19058:28871691,25513904 +h1,19058:29203645,25513904:0,0,0 +k1,19058:32583029,25513904:3379384 +g1,19058:32583029,25513904 +) +(1,19059:6630773,26198759:25952256,431045,106246 +h1,19059:6630773,26198759:0,0,0 +g1,19059:6962727,26198759 +g1,19059:7294681,26198759 +g1,19059:13601806,26198759 +g1,19059:14265714,26198759 +g1,19059:16257438,26198759 +g1,19059:18913070,26198759 +g1,19059:19576978,26198759 +g1,19059:20240886,26198759 +g1,19059:20904794,26198759 +g1,19059:21900656,26198759 +g1,19059:23892380,26198759 +g1,19059:24556288,26198759 +g1,19059:27543874,26198759 +h1,19059:27875828,26198759:0,0,0 +k1,19059:32583029,26198759:4707201 +g1,19059:32583029,26198759 +) +(1,19060:6630773,26883614:25952256,424439,112852 +h1,19060:6630773,26883614:0,0,0 +g1,19060:6962727,26883614 +g1,19060:7294681,26883614 +k1,19060:7294681,26883614:0 +h1,19060:11278128,26883614:0,0,0 +k1,19060:32583028,26883614:21304900 +g1,19060:32583028,26883614 +) +] +) +g1,19062:32583029,26996466 +g1,19062:6630773,26996466 +g1,19062:6630773,26996466 +g1,19062:32583029,26996466 +g1,19062:32583029,26996466 +) +h1,19062:6630773,27193074:0,0,0 +(1,19066:6630773,28058154:25952256,513147,134348 +h1,19065:6630773,28058154:983040,0,0 +k1,19065:10241016,28058154:288223 +k1,19065:11188531,28058154:288223 +k1,19065:13212147,28058154:288223 +k1,19065:14519454,28058154:288222 +(1,19065:14519454,28058154:0,459977,115847 +r1,19084:16987991,28058154:2468537,575824,115847 +k1,19065:14519454,28058154:-2468537 +) +(1,19065:14519454,28058154:2468537,459977,115847 +k1,19065:14519454,28058154:3277 +h1,19065:16984714,28058154:0,411205,112570 +) +k1,19065:17276214,28058154:288223 +k1,19065:18512088,28058154:288223 +k1,19065:19156171,28058154:288223 +k1,19065:21257120,28058154:288223 +k1,19065:24862120,28058154:288223 +k1,19065:25836505,28058154:288223 +k1,19065:29345166,28058154:288222 +k1,19065:30501741,28058154:288223 +k1,19065:32227169,28058154:288223 +k1,19065:32583029,28058154:0 +) +(1,19066:6630773,28923234:25952256,513147,134348 +k1,19065:9583513,28923234:190397 +(1,19065:9583513,28923234:0,459977,115847 +r1,19084:12052050,28923234:2468537,575824,115847 +k1,19065:9583513,28923234:-2468537 +) +(1,19065:9583513,28923234:2468537,459977,115847 +k1,19065:9583513,28923234:3277 +h1,19065:12048773,28923234:0,411205,112570 +) +k1,19065:12242446,28923234:190396 +k1,19065:13119005,28923234:190397 +k1,19065:14080105,28923234:190397 +k1,19065:17516499,28923234:190396 +k1,19065:18334731,28923234:190397 +k1,19065:19728368,28923234:190396 +k1,19065:22580182,28923234:190397 +k1,19065:23638931,28923234:190397 +k1,19065:24921812,28923234:190396 +k1,19065:25468069,28923234:190397 +k1,19065:29231489,28923234:190397 +k1,19065:30081177,28923234:190396 +k1,19065:32010900,28923234:190397 +k1,19066:32583029,28923234:0 +k1,19066:32583029,28923234:0 +) +v1,19068:6630773,29608089:0,393216,0 +(1,19074:6630773,31325088:25952256,2110215,196608 +g1,19074:6630773,31325088 +g1,19074:6630773,31325088 +g1,19074:6434165,31325088 +(1,19074:6434165,31325088:0,2110215,196608 +r1,19084:32779637,31325088:26345472,2306823,196608 +k1,19074:6434165,31325088:-26345472 +) +(1,19074:6434165,31325088:26345472,2110215,196608 +[1,19074:6630773,31325088:25952256,1913607,0 +(1,19070:6630773,29842526:25952256,431045,112852 +(1,19069:6630773,29842526:0,0,0 +g1,19069:6630773,29842526 +g1,19069:6630773,29842526 +g1,19069:6303093,29842526 +(1,19069:6303093,29842526:0,0,0 +) +g1,19069:6630773,29842526 +) +k1,19070:6630773,29842526:0 +g1,19070:10614221,29842526 +g1,19070:11278129,29842526 +g1,19070:13933761,29842526 +g1,19070:15925485,29842526 +g1,19070:16589393,29842526 +g1,19070:18581117,29842526 +g1,19070:19245025,29842526 +g1,19070:19908933,29842526 +g1,19070:21568703,29842526 +g1,19070:23560427,29842526 +g1,19070:24224335,29842526 +g1,19070:28871691,29842526 +h1,19070:29203645,29842526:0,0,0 +k1,19070:32583029,29842526:3379384 +g1,19070:32583029,29842526 +) +(1,19071:6630773,30527381:25952256,431045,106246 +h1,19071:6630773,30527381:0,0,0 +g1,19071:6962727,30527381 +g1,19071:7294681,30527381 +g1,19071:13601806,30527381 +g1,19071:14265714,30527381 +g1,19071:16257438,30527381 +g1,19071:18913070,30527381 +g1,19071:19576978,30527381 +g1,19071:20240886,30527381 +g1,19071:20904794,30527381 +g1,19071:23560426,30527381 +g1,19071:24888242,30527381 +g1,19071:26879966,30527381 +g1,19071:27543874,30527381 +g1,19071:30531460,30527381 +h1,19071:30863414,30527381:0,0,0 +k1,19071:32583029,30527381:1719615 +g1,19071:32583029,30527381 +) +(1,19072:6630773,31212236:25952256,424439,112852 +h1,19072:6630773,31212236:0,0,0 +g1,19072:6962727,31212236 +g1,19072:7294681,31212236 +k1,19072:7294681,31212236:0 +h1,19072:11278128,31212236:0,0,0 +k1,19072:32583028,31212236:21304900 +g1,19072:32583028,31212236 +) +] +) +g1,19074:32583029,31325088 +g1,19074:6630773,31325088 +g1,19074:6630773,31325088 +g1,19074:32583029,31325088 +g1,19074:32583029,31325088 +) +h1,19074:6630773,31521696:0,0,0 +(1,19077:6630773,40670898:25952256,9083666,0 +k1,19077:10523651,40670898:3892878 +h1,19076:10523651,40670898:0,0,0 +(1,19076:10523651,40670898:18166500,9083666,0 +(1,19076:10523651,40670898:18167376,9083688,0 +(1,19076:10523651,40670898:18167376,9083688,0 +(1,19076:10523651,40670898:0,9083688,0 +(1,19076:10523651,40670898:0,14208860,0 +(1,19076:10523651,40670898:28417720,14208860,0 +) +k1,19076:10523651,40670898:-28417720 +) +) +g1,19076:28691027,40670898 +) +) +) +g1,19077:28690151,40670898 +k1,19077:32583029,40670898:3892878 +) +(1,19084:6630773,41535978:25952256,513147,134348 +h1,19083:6630773,41535978:983040,0,0 +k1,19083:8472450,41535978:388744 +k1,19083:9392691,41535978:388744 +k1,19083:12411395,41535978:388744 +k1,19083:13451566,41535978:388743 +k1,19083:14932795,41535978:388744 +k1,19083:17023509,41535978:388744 +k1,19083:19128641,41535978:388744 +k1,19083:20176677,41535978:388744 +k1,19083:23057100,41535978:388744 +k1,19083:26426421,41535978:388744 +k1,19083:28345895,41535978:388553 +k1,19083:29926084,41535978:388744 +k1,19083:31896867,41535978:388744 +k1,19083:32583029,41535978:0 +) +(1,19084:6630773,42401058:25952256,513147,134348 +k1,19083:10437657,42401058:256143 +k1,19083:11765969,42401058:256143 +k1,19083:12890464,42401058:256143 +k1,19083:14279069,42401058:256143 +k1,19083:15815130,42401058:256143 +k1,19083:17446874,42401058:256143 +k1,19083:18875456,42401058:256143 +k1,19083:21256277,42401058:256144 +k1,19083:24504139,42401058:256143 +k1,19083:25419574,42401058:256143 +k1,19083:26694802,42401058:256143 +k1,19083:28043430,42401058:256143 +k1,19083:28966729,42401058:256143 +(1,19083:28966729,42401058:0,452978,115847 +r1,19084:30731842,42401058:1765113,568825,115847 +k1,19083:28966729,42401058:-1765113 +) +(1,19083:28966729,42401058:1765113,452978,115847 +k1,19083:28966729,42401058:3277 +h1,19083:30728565,42401058:0,411205,112570 +) +k1,19083:30987985,42401058:256143 +k1,19083:31895556,42401058:256143 +k1,19083:32583029,42401058:0 +) +(1,19084:6630773,43266138:25952256,513147,134348 +k1,19083:7163159,43266138:176526 +k1,19083:9327392,43266138:176526 +k1,19083:12753848,43266138:176526 +k1,19083:13546411,43266138:176525 +k1,19083:14511335,43266138:176526 +k1,19083:18298895,43266138:176526 +k1,19083:19707498,43266138:176526 +k1,19083:22162711,43266138:176526 +h1,19083:23133299,43266138:0,0,0 +k1,19083:23309825,43266138:176526 +k1,19083:24295721,43266138:176526 +k1,19083:25970399,43266138:176525 +h1,19083:27165776,43266138:0,0,0 +k1,19083:27342302,43266138:176526 +k1,19083:28466479,43266138:176526 +k1,19083:30760473,43266138:176526 +k1,19083:32583029,43266138:0 +) +(1,19084:6630773,44131218:25952256,513147,134348 +k1,19083:8734369,44131218:168973 +k1,19083:10106583,44131218:168973 +k1,19083:11929029,44131218:168973 +k1,19083:14085709,44131218:168973 +k1,19083:15648633,44131218:168973 +(1,19083:15648633,44131218:0,452978,115847 +r1,19084:17413746,44131218:1765113,568825,115847 +k1,19083:15648633,44131218:-1765113 +) +(1,19083:15648633,44131218:1765113,452978,115847 +k1,19083:15648633,44131218:3277 +h1,19083:17410469,44131218:0,411205,112570 +) +k1,19083:17963483,44131218:168973 +k1,19083:18760290,44131218:168972 +k1,19083:19948348,44131218:168973 +k1,19083:21423454,44131218:168973 +k1,19083:22749137,44131218:168973 +k1,19083:23786462,44131218:168973 +k1,19083:24642908,44131218:168973 +k1,19083:25167741,44131218:168973 +k1,19083:30847636,44131218:168973 +k1,19084:32583029,44131218:0 +) +(1,19084:6630773,44996298:25952256,505283,115847 +k1,19083:8190864,44996298:292625 +k1,19083:9134917,44996298:292625 +k1,19083:12020146,44996298:292625 +k1,19083:13561232,44996298:292625 +(1,19083:13768326,44996298:0,414482,115847 +r1,19084:15181727,44996298:1413401,530329,115847 +k1,19083:13768326,44996298:-1413401 +) +(1,19083:13768326,44996298:1413401,414482,115847 +k1,19083:13768326,44996298:3277 +h1,19083:15178450,44996298:0,411205,112570 +) +k1,19083:15681446,44996298:292625 +k1,19083:18042388,44996298:292626 +k1,19083:20944657,44996298:292625 +k1,19083:25644578,44996298:292625 +(1,19083:25851672,44996298:0,414482,115847 +r1,19084:27265073,44996298:1413401,530329,115847 +k1,19083:25851672,44996298:-1413401 +) +(1,19083:25851672,44996298:1413401,414482,115847 +k1,19083:25851672,44996298:3277 +h1,19083:27261796,44996298:0,411205,112570 +) +k1,19083:27938462,44996298:292625 +(1,19083:27938462,44996298:0,452978,115847 +r1,19084:31110422,44996298:3171960,568825,115847 +k1,19083:27938462,44996298:-3171960 +) +(1,19083:27938462,44996298:3171960,452978,115847 +k1,19083:27938462,44996298:3277 +h1,19083:31107145,44996298:0,411205,112570 +) +k1,19083:31403047,44996298:292625 +k1,19083:32227169,44996298:292625 +k1,19083:32583029,44996298:0 +) +] +(1,19084:32583029,45706769:0,0,0 +g1,19084:32583029,45706769 +) +) +] +(1,19084:6630773,47279633:25952256,0,0 +h1,19084:6630773,47279633:25952256,0,0 +) +] +(1,19084:4262630,4025873:0,0,0 +[1,19084:-473656,4025873:0,0,0 +(1,19084:-473656,-710413:0,0,0 +(1,19084:-473656,-710413:0,0,0 +g1,19084:-473656,-710413 +) +g1,19084:-473656,-710413 +) +] +) +] +!22427 +}319 +Input:3012:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3013:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3014:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3015:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3016:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!482 +{320 +[1,19136:4262630,47279633:28320399,43253760,0 +(1,19136:4262630,4025873:0,0,0 +[1,19136:-473656,4025873:0,0,0 +(1,19136:-473656,-710413:0,0,0 +(1,19136:-473656,-644877:0,0,0 +k1,19136:-473656,-644877:-65536 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,19166:3078558,51504789:16384,1179648,0 +(1,19136:-473656,4736287:0,0,0 +k1,19136:-473656,4736287:5209943 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +g1,19136:-473656,-710413 ) ] ) +[1,19136:6630773,47279633:25952256,43253760,0 +[1,19136:6630773,4812305:25952256,786432,0 +(1,19136:6630773,4812305:25952256,485622,11795 +(1,19136:6630773,4812305:25952256,485622,11795 +g1,19136:3078558,4812305 +[1,19136:3078558,4812305:0,0,0 +(1,19136:3078558,2439708:0,1703936,0 +k1,19136:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,19136:2537886,2439708:1179648,16384,0 ) +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,19136:3078558,1915420:16384,1179648,0 ) -] -[1,19166:3078558,4812305:0,0,0 -(1,19166:3078558,49800853:0,16384,2228224 -g1,19166:29030814,49800853 -g1,19166:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,19166:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,19166:37855564,49800853:1179648,16384,0 ) ) -k1,19166:3078556,49800853:-34777008 -) ] -g1,19166:6630773,4812305 -g1,19166:6630773,4812305 -g1,19166:9560887,4812305 -k1,19166:31387651,4812305:21826764 +[1,19136:3078558,4812305:0,0,0 +(1,19136:3078558,2439708:0,1703936,0 +g1,19136:29030814,2439708 +g1,19136:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,19136:36151628,1915420:16384,1179648,0 ) +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] -[1,19166:6630773,45706769:25952256,40108032,0 -(1,19166:6630773,45706769:25952256,40108032,0 -(1,19166:6630773,45706769:0,0,0 -g1,19166:6630773,45706769 -) -[1,19166:6630773,45706769:25952256,40108032,0 -v1,19112:6630773,6254097:0,393216,0 -(1,19112:6630773,8561436:25952256,2700555,196608 -g1,19112:6630773,8561436 -g1,19112:6630773,8561436 -g1,19112:6434165,8561436 -(1,19112:6434165,8561436:0,2700555,196608 -r1,19166:32779637,8561436:26345472,2897163,196608 -k1,19112:6434165,8561436:-26345472 ) -(1,19112:6434165,8561436:26345472,2700555,196608 -[1,19112:6630773,8561436:25952256,2503947,0 -(1,19107:6630773,6461715:25952256,404226,107478 -(1,19106:6630773,6461715:0,0,0 -g1,19106:6630773,6461715 -g1,19106:6630773,6461715 -g1,19106:6303093,6461715 -(1,19106:6303093,6461715:0,0,0 -) -g1,19106:6630773,6461715 -) -k1,19107:6630773,6461715:0 -g1,19107:11689104,6461715 -g1,19107:13902124,6461715 -g1,19107:14850562,6461715 -g1,19107:16747436,6461715 -g1,19107:17379728,6461715 -g1,19107:19908894,6461715 -h1,19107:20225040,6461715:0,0,0 -k1,19107:32583029,6461715:12357989 -g1,19107:32583029,6461715 -) -(1,19108:6630773,7127893:25952256,404226,107478 -h1,19108:6630773,7127893:0,0,0 -g1,19108:6946919,7127893 -g1,19108:7263065,7127893 -g1,19108:11372959,7127893 -h1,19108:11689105,7127893:0,0,0 -k1,19108:32583029,7127893:20893924 -g1,19108:32583029,7127893 -) -(1,19109:6630773,7794071:25952256,404226,107478 -h1,19109:6630773,7794071:0,0,0 -g1,19109:6946919,7794071 -g1,19109:7263065,7794071 -g1,19109:10740667,7794071 -h1,19109:11056813,7794071:0,0,0 -k1,19109:32583029,7794071:21526216 -g1,19109:32583029,7794071 -) -(1,19110:6630773,8460249:25952256,404226,101187 -h1,19110:6630773,8460249:0,0,0 -g1,19110:6946919,8460249 -g1,19110:7263065,8460249 -k1,19110:7263065,8460249:0 -h1,19110:12637541,8460249:0,0,0 -k1,19110:32583029,8460249:19945488 -g1,19110:32583029,8460249 -) -] -) -g1,19112:32583029,8561436 -g1,19112:6630773,8561436 -g1,19112:6630773,8561436 -g1,19112:32583029,8561436 -g1,19112:32583029,8561436 -) -h1,19112:6630773,8758044:0,0,0 -(1,19115:6630773,18431534:25952256,9083666,0 -k1,19115:10523651,18431534:3892878 -h1,19114:10523651,18431534:0,0,0 -(1,19114:10523651,18431534:18166500,9083666,0 -(1,19114:10523651,18431534:18167376,9083688,0 -(1,19114:10523651,18431534:18167376,9083688,0 -(1,19114:10523651,18431534:0,9083688,0 -(1,19114:10523651,18431534:0,14208860,0 -(1,19114:10523651,18431534:28417720,14208860,0 -) -k1,19114:10523651,18431534:-28417720 -) -) -g1,19114:28691027,18431534 -) -) -) -g1,19115:28690151,18431534 -k1,19115:32583029,18431534:3892878 -) -(1,19122:6630773,19273022:25952256,505283,126483 -h1,19121:6630773,19273022:983040,0,0 -k1,19121:8464552,19273022:222904 -k1,19121:9890696,19273022:222903 -k1,19121:11654351,19273022:222904 -(1,19121:11654351,19273022:0,452978,122846 -r1,19166:17640006,19273022:5985655,575824,122846 -k1,19121:11654351,19273022:-5985655 -) -(1,19121:11654351,19273022:5985655,452978,122846 -k1,19121:11654351,19273022:3277 -h1,19121:17636729,19273022:0,411205,112570 -) -k1,19121:17862910,19273022:222904 -k1,19121:18617310,19273022:222903 -k1,19121:22318865,19273022:222904 -k1,19121:23733214,19273022:222904 -k1,19121:24824470,19273022:222904 -k1,19121:26151655,19273022:222903 -k1,19121:28672907,19273022:222904 -k1,19121:29353908,19273022:222904 -k1,19121:30192849,19273022:222903 -k1,19121:31434838,19273022:222904 -k1,19121:32583029,19273022:0 -) -(1,19122:6630773,20114510:25952256,505283,7863 -g1,19121:7998509,20114510 -g1,19121:8813776,20114510 -g1,19121:10032090,20114510 -g1,19121:12201987,20114510 -k1,19122:32583030,20114510:18352048 -g1,19122:32583030,20114510 -) -v1,19124:6630773,21304976:0,393216,0 -(1,19128:6630773,21620072:25952256,708312,196608 -g1,19128:6630773,21620072 -g1,19128:6630773,21620072 -g1,19128:6434165,21620072 -(1,19128:6434165,21620072:0,708312,196608 -r1,19166:32779637,21620072:26345472,904920,196608 -k1,19128:6434165,21620072:-26345472 -) -(1,19128:6434165,21620072:26345472,708312,196608 -[1,19128:6630773,21620072:25952256,511704,0 -(1,19126:6630773,21512594:25952256,404226,107478 -(1,19125:6630773,21512594:0,0,0 -g1,19125:6630773,21512594 -g1,19125:6630773,21512594 -g1,19125:6303093,21512594 -(1,19125:6303093,21512594:0,0,0 -) -g1,19125:6630773,21512594 -) -g1,19126:6946919,21512594 -g1,19126:7263065,21512594 -k1,19126:7263065,21512594:0 -h1,19126:12637541,21512594:0,0,0 -k1,19126:32583029,21512594:19945488 -g1,19126:32583029,21512594 -) -] -) -g1,19128:32583029,21620072 -g1,19128:6630773,21620072 -g1,19128:6630773,21620072 -g1,19128:32583029,21620072 -g1,19128:32583029,21620072 -) -h1,19128:6630773,21816680:0,0,0 -(1,19132:6630773,23182456:25952256,505283,134348 -h1,19131:6630773,23182456:983040,0,0 -k1,19131:8435728,23182456:194080 -k1,19131:9648893,23182456:194080 -k1,19131:11227093,23182456:194080 -k1,19131:14082591,23182456:194081 -k1,19131:15145023,23182456:194080 -k1,19131:16616400,23182456:194080 -k1,19131:17829565,23182456:194080 -k1,19131:20246626,23182456:194080 -k1,19131:21056744,23182456:194080 -k1,19131:23953529,23182456:194080 -k1,19131:26395495,23182456:194081 -k1,19131:27781020,23182456:194080 -k1,19131:29067585,23182456:194080 -k1,19131:29617525,23182456:194080 -k1,19132:32583029,23182456:0 -) -(1,19132:6630773,24023944:25952256,505283,134348 -k1,19131:10394403,24023944:246968 -k1,19131:11660457,24023944:246969 -(1,19131:11660457,24023944:0,459977,115847 -r1,19166:13073858,24023944:1413401,575824,115847 -k1,19131:11660457,24023944:-1413401 -) -(1,19131:11660457,24023944:1413401,459977,115847 -k1,19131:11660457,24023944:3277 -h1,19131:13070581,24023944:0,411205,112570 -) -k1,19131:13320826,24023944:246968 -k1,19131:16355041,24023944:246969 -k1,19131:17793454,24023944:246968 -k1,19131:18908774,24023944:246968 -k1,19131:20552315,24023944:246969 -k1,19131:21450711,24023944:246968 -k1,19131:22155776,24023944:246968 -k1,19131:23421830,24023944:246969 -k1,19131:26180138,24023944:246968 -(1,19131:26180138,24023944:0,452978,115847 -r1,19166:27945251,24023944:1765113,568825,115847 -k1,19131:26180138,24023944:-1765113 -) -(1,19131:26180138,24023944:1765113,452978,115847 -k1,19131:26180138,24023944:3277 -h1,19131:27941974,24023944:0,411205,112570 -) -k1,19131:28365890,24023944:246969 -k1,19131:31821501,24023944:246968 -k1,19132:32583029,24023944:0 -) -(1,19132:6630773,24865432:25952256,452978,115847 -(1,19131:6630773,24865432:0,452978,115847 -r1,19166:12616428,24865432:5985655,568825,115847 -k1,19131:6630773,24865432:-5985655 -) -(1,19131:6630773,24865432:5985655,452978,115847 -k1,19131:6630773,24865432:3277 -h1,19131:12613151,24865432:0,411205,112570 -) -k1,19132:32583028,24865432:19966600 -g1,19132:32583028,24865432 -) -v1,19136:6630773,26055898:0,393216,0 -(1,19142:6630773,27703350:25952256,2040668,196608 -g1,19142:6630773,27703350 -g1,19142:6630773,27703350 -g1,19142:6434165,27703350 -(1,19142:6434165,27703350:0,2040668,196608 -r1,19166:32779637,27703350:26345472,2237276,196608 -k1,19142:6434165,27703350:-26345472 -) -(1,19142:6434165,27703350:26345472,2040668,196608 -[1,19142:6630773,27703350:25952256,1844060,0 -(1,19138:6630773,26263516:25952256,404226,107478 -(1,19137:6630773,26263516:0,0,0 -g1,19137:6630773,26263516 -g1,19137:6630773,26263516 -g1,19137:6303093,26263516 -(1,19137:6303093,26263516:0,0,0 -) -g1,19137:6630773,26263516 -) -k1,19138:6630773,26263516:0 -g1,19138:11689104,26263516 -g1,19138:13902124,26263516 -g1,19138:15166707,26263516 -h1,19138:15482853,26263516:0,0,0 -k1,19138:32583029,26263516:17100176 -g1,19138:32583029,26263516 -) -(1,19139:6630773,26929694:25952256,410518,107478 -h1,19139:6630773,26929694:0,0,0 -g1,19139:14534416,26929694 -g1,19139:15166708,26929694 -g1,19139:21489622,26929694 -g1,19139:23070351,26929694 -g1,19139:23702643,26929694 -g1,19139:27180246,26929694 -h1,19139:27496392,26929694:0,0,0 -k1,19139:32583029,26929694:5086637 -g1,19139:32583029,26929694 -) -(1,19140:6630773,27595872:25952256,410518,107478 -h1,19140:6630773,27595872:0,0,0 -g1,19140:6946919,27595872 -g1,19140:7263065,27595872 -k1,19140:7263065,27595872:0 -h1,19140:12953688,27595872:0,0,0 -k1,19140:32583028,27595872:19629340 -g1,19140:32583028,27595872 -) -] -) -g1,19142:32583029,27703350 -g1,19142:6630773,27703350 -g1,19142:6630773,27703350 -g1,19142:32583029,27703350 -g1,19142:32583029,27703350 -) -h1,19142:6630773,27899958:0,0,0 -(1,19145:6630773,37573448:25952256,9083666,0 -k1,19145:10523651,37573448:3892878 -h1,19144:10523651,37573448:0,0,0 -(1,19144:10523651,37573448:18166500,9083666,0 -(1,19144:10523651,37573448:18167376,9083688,0 -(1,19144:10523651,37573448:18167376,9083688,0 -(1,19144:10523651,37573448:0,9083688,0 -(1,19144:10523651,37573448:0,14208860,0 -(1,19144:10523651,37573448:28417720,14208860,0 -) -k1,19144:10523651,37573448:-28417720 -) -) -g1,19144:28691027,37573448 -) -) -) -g1,19145:28690151,37573448 -k1,19145:32583029,37573448:3892878 -) -(1,19154:6630773,39664708:25952256,555811,139132 -(1,19154:6630773,39664708:2450326,534184,12975 -g1,19154:6630773,39664708 -g1,19154:9081099,39664708 -) -g1,19154:10649769,39664708 -g1,19154:12216997,39664708 -g1,19154:15747225,39664708 -k1,19154:32583029,39664708:15028518 -g1,19154:32583029,39664708 -) -(1,19159:6630773,40899412:25952256,513147,134348 -k1,19158:8032286,40899412:242836 -k1,19158:9466567,40899412:242836 -k1,19158:12535315,40899412:242836 -k1,19158:14559420,40899412:242836 -k1,19158:16088072,40899412:242836 -k1,19158:17684882,40899412:242836 -k1,19158:21232698,40899412:242835 -k1,19158:23343310,40899412:242836 -k1,19158:24814946,40899412:242836 -k1,19158:26217769,40899412:242836 -k1,19158:28241874,40899412:242836 -k1,19158:29476270,40899412:242836 -k1,19158:31004922,40899412:242836 -k1,19159:32583029,40899412:0 -) -(1,19159:6630773,41740900:25952256,513147,126483 -k1,19158:9015573,41740900:241773 -k1,19158:10541852,41740900:241773 -k1,19158:12992188,41740900:241773 -k1,19158:14926101,41740900:241773 -k1,19158:15827166,41740900:241773 -k1,19158:17088025,41740900:241774 -k1,19158:20625604,41740900:241773 -k1,19158:21526669,41740900:241773 -k1,19158:22124302,41740900:241773 -k1,19158:26321173,41740900:241773 -k1,19158:28120737,41740900:241773 -k1,19158:29354070,41740900:241773 -k1,19158:32583029,41740900:0 -) -(1,19159:6630773,42582388:25952256,513147,134348 -k1,19158:7974343,42582388:152125 -k1,19158:10428749,42582388:152126 -k1,19158:11342402,42582388:152125 -k1,19158:13562843,42582388:152125 -k1,19158:14382124,42582388:152125 -(1,19158:14382124,42582388:0,452978,115847 -r1,19166:19312644,42582388:4930520,568825,115847 -k1,19158:14382124,42582388:-4930520 -) -(1,19158:14382124,42582388:4930520,452978,115847 -k1,19158:14382124,42582388:3277 -h1,19158:19309367,42582388:0,411205,112570 -) -k1,19158:19464770,42582388:152126 -k1,19158:20299780,42582388:152125 -k1,19158:21240303,42582388:152125 -k1,19158:24363831,42582388:152126 -(1,19158:24363831,42582388:0,452978,122846 -r1,19166:29294351,42582388:4930520,575824,122846 -k1,19158:24363831,42582388:-4930520 -) -(1,19158:24363831,42582388:4930520,452978,122846 -k1,19158:24363831,42582388:3277 -h1,19158:29291074,42582388:0,411205,112570 -) -k1,19158:29620146,42582388:152125 -k1,19158:32583029,42582388:0 -) -(1,19159:6630773,43423876:25952256,513147,134348 -k1,19158:8220395,43423876:209434 -k1,19158:9534111,43423876:209434 -k1,19158:10491311,43423876:209434 -k1,19158:13929705,43423876:209435 -k1,19158:15330584,43423876:209434 -k1,19158:17842298,43423876:209434 -k1,19158:19906401,43423876:209434 -k1,19158:20925205,43423876:209434 -k1,19158:22363439,43423876:209434 -k1,19158:22928733,43423876:209434 -k1,19158:24271286,43423876:209435 -k1,19158:28726142,43423876:209434 -k1,19158:30315764,43423876:209434 -k1,19158:31516758,43423876:209434 -k1,19158:32583029,43423876:0 -) -(1,19159:6630773,44265364:25952256,513147,126483 -g1,19158:8807223,44265364 -g1,19158:11049209,44265364 -g1,19158:12700060,44265364 -g1,19158:14059276,44265364 -g1,19158:15535802,44265364 -g1,19158:16266528,44265364 -g1,19158:18320426,44265364 -g1,19158:19329025,44265364 -g1,19158:21178451,44265364 -g1,19158:22820127,44265364 -g1,19158:23816274,44265364 -g1,19158:24666931,44265364 -g1,19158:25663078,44265364 -k1,19159:32583029,44265364:2674529 -g1,19159:32583029,44265364 -) -v1,19161:6630773,45455830:0,393216,0 -] -(1,19166:32583029,45706769:0,0,0 -g1,19166:32583029,45706769 -) -) -] -(1,19166:6630773,47279633:25952256,0,0 -h1,19166:6630773,47279633:25952256,0,0 -) -] -(1,19166:4262630,4025873:0,0,0 -[1,19166:-473656,4025873:0,0,0 -(1,19166:-473656,-710413:0,0,0 -(1,19166:-473656,-710413:0,0,0 -g1,19166:-473656,-710413 -) -g1,19166:-473656,-710413 -) -] -) -] -!15176 -}340 -Input:3029:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3030:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3031:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3032:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3033:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3034:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3035:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3036:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3037:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3038:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3039:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3040:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3041:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1234 -{341 -[1,19201:4262630,47279633:28320399,43253760,0 -(1,19201:4262630,4025873:0,0,0 -[1,19201:-473656,4025873:0,0,0 -(1,19201:-473656,-710413:0,0,0 -(1,19201:-473656,-644877:0,0,0 -k1,19201:-473656,-644877:-65536 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,19136:37855564,2439708:1179648,16384,0 ) -(1,19201:-473656,4736287:0,0,0 -k1,19201:-473656,4736287:5209943 ) -g1,19201:-473656,-710413 +k1,19136:3078556,2439708:-34777008 ) ] +[1,19136:3078558,4812305:0,0,0 +(1,19136:3078558,49800853:0,16384,2228224 +k1,19136:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,19136:2537886,49800853:1179648,16384,0 ) -[1,19201:6630773,47279633:25952256,43253760,0 -[1,19201:6630773,4812305:25952256,786432,0 -(1,19201:6630773,4812305:25952256,513147,126483 -(1,19201:6630773,4812305:25952256,513147,126483 -g1,19201:3078558,4812305 -[1,19201:3078558,4812305:0,0,0 -(1,19201:3078558,2439708:0,1703936,0 -k1,19201:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,19201:2537886,2439708:1179648,16384,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,19136:3078558,51504789:16384,1179648,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,19201:3078558,1915420:16384,1179648,0 -) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,19201:3078558,4812305:0,0,0 -(1,19201:3078558,2439708:0,1703936,0 -g1,19201:29030814,2439708 -g1,19201:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,19201:36151628,1915420:16384,1179648,0 -) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +[1,19136:3078558,4812305:0,0,0 +(1,19136:3078558,49800853:0,16384,2228224 +g1,19136:29030814,49800853 +g1,19136:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,19136:36151628,51504789:16384,1179648,0 +) +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 +) +] +) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,19136:37855564,49800853:1179648,16384,0 +) +) +k1,19136:3078556,49800853:-34777008 +) +] +g1,19136:6630773,4812305 +g1,19136:6630773,4812305 +g1,19136:9560887,4812305 +k1,19136:31387651,4812305:21826764 +) +) +] +[1,19136:6630773,45706769:25952256,40108032,0 +(1,19136:6630773,45706769:25952256,40108032,0 +(1,19136:6630773,45706769:0,0,0 +g1,19136:6630773,45706769 +) +[1,19136:6630773,45706769:25952256,40108032,0 +(1,19084:6630773,6254097:25952256,513147,115847 +k1,19083:8224061,6254097:203925 +k1,19083:9362529,6254097:203925 +k1,19083:12324864,6254097:203925 +k1,19083:13144827,6254097:203925 +k1,19083:14367838,6254097:203926 +k1,19083:14986601,6254097:203920 +k1,19083:19145624,6254097:203925 +k1,19083:22139417,6254097:203925 +(1,19083:22139417,6254097:0,452978,115847 +r1,19136:25663089,6254097:3523672,568825,115847 +k1,19083:22139417,6254097:-3523672 +) +(1,19083:22139417,6254097:3523672,452978,115847 +k1,19083:22139417,6254097:3277 +h1,19083:25659812,6254097:0,411205,112570 +) +k1,19083:25867014,6254097:203925 +k1,19083:26602437,6254097:203926 +k1,19083:28092178,6254097:203925 +k1,19083:29863724,6254097:203925 +k1,19083:30656162,6254097:203925 +k1,19083:32051532,6254097:203925 +k1,19083:32583029,6254097:0 +) +(1,19084:6630773,7119177:25952256,513147,134348 +k1,19083:7239602,7119177:252969 +k1,19083:11231400,7119177:252969 +k1,19083:16541127,7119177:252969 +k1,19083:17453388,7119177:252969 +k1,19083:18725442,7119177:252969 +k1,19083:24489333,7119177:252969 +k1,19083:27705840,7119177:252969 +k1,19083:30301721,7119177:252969 +k1,19083:31206118,7119177:252969 +k1,19083:32583029,7119177:0 +) +(1,19084:6630773,7984257:25952256,513147,134348 +k1,19083:8264760,7984257:167291 +k1,19083:10702219,7984257:167292 +k1,19083:11888595,7984257:167291 +k1,19083:12743360,7984257:167292 +k1,19083:13442148,7984257:167291 +k1,19083:15186891,7984257:167291 +k1,19083:16748134,7984257:167292 +k1,19083:17686128,7984257:167291 +k1,19083:20465685,7984257:167292 +k1,19083:23917640,7984257:167291 +k1,19083:24953283,7984257:167291 +k1,19083:25935843,7984257:167292 +k1,19083:27169405,7984257:167291 +k1,19083:28866963,7984257:167292 +k1,19083:29685682,7984257:167291 +k1,19083:32583029,7984257:0 +) +(1,19084:6630773,8849337:25952256,513147,134348 +k1,19083:9259034,8849337:198186 +k1,19083:11935792,8849337:198186 +k1,19083:14144622,8849337:198185 +k1,19083:15290459,8849337:198186 +k1,19083:16507730,8849337:198186 +k1,19083:20316950,8849337:198186 +k1,19083:21166563,8849337:198185 +k1,19083:22112515,8849337:198186 +k1,19083:24196827,8849337:198186 +k1,19083:25348562,8849337:198186 +k1,19083:27077013,8849337:198185 +k1,19083:27926627,8849337:198186 +k1,19083:29059356,8849337:198186 +(1,19083:29059356,8849337:0,414482,115847 +r1,19136:32583029,8849337:3523673,530329,115847 +k1,19083:29059356,8849337:-3523673 +) +(1,19083:29059356,8849337:3523673,414482,115847 +g1,19083:30117769,8849337 +g1,19083:30821193,8849337 +h1,19083:32579752,8849337:0,411205,112570 +) +k1,19083:32583029,8849337:0 +) +(1,19084:6630773,9714417:25952256,513147,126483 +k1,19083:9340521,9714417:180058 +k1,19083:12364186,9714417:180058 +k1,19083:14481488,9714417:180058 +k1,19083:15653106,9714417:180058 +k1,19083:16899435,9714417:180058 +k1,19083:20373988,9714417:180058 +k1,19083:21315575,9714417:180059 +k1,19083:22514718,9714417:180058 +(1,19083:22514718,9714417:0,452978,115847 +r1,19136:25686678,9714417:3171960,568825,115847 +k1,19083:22514718,9714417:-3171960 +) +(1,19083:22514718,9714417:3171960,452978,115847 +k1,19083:22514718,9714417:3277 +h1,19083:25683401,9714417:0,411205,112570 +) +k1,19083:25866736,9714417:180058 +k1,19083:28501117,9714417:180058 +k1,19083:29628826,9714417:180058 +(1,19083:29628826,9714417:0,452978,115847 +r1,19136:30690515,9714417:1061689,568825,115847 +k1,19083:29628826,9714417:-1061689 +) +(1,19083:29628826,9714417:1061689,452978,115847 +k1,19083:29628826,9714417:3277 +h1,19083:30687238,9714417:0,411205,112570 +) +k1,19083:30870573,9714417:180058 +k1,19083:32583029,9714417:0 +) +(1,19084:6630773,10579497:25952256,505283,7863 +k1,19084:32583028,10579497:23460576 +g1,19084:32583028,10579497 +) +v1,19086:6630773,11264352:0,393216,0 +(1,19094:6630773,14311425:25952256,3440289,196608 +g1,19094:6630773,14311425 +g1,19094:6630773,14311425 +g1,19094:6434165,14311425 +(1,19094:6434165,14311425:0,3440289,196608 +r1,19136:32779637,14311425:26345472,3636897,196608 +k1,19094:6434165,14311425:-26345472 +) +(1,19094:6434165,14311425:26345472,3440289,196608 +[1,19094:6630773,14311425:25952256,3243681,0 +(1,19088:6630773,11492183:25952256,424439,112852 +(1,19087:6630773,11492183:0,0,0 +g1,19087:6630773,11492183 +g1,19087:6630773,11492183 +g1,19087:6303093,11492183 +(1,19087:6303093,11492183:0,0,0 +) +g1,19087:6630773,11492183 +) +k1,19088:6630773,11492183:0 +g1,19088:12605944,11492183 +g1,19088:15925484,11492183 +g1,19088:17917208,11492183 +g1,19088:19908932,11492183 +g1,19088:20572840,11492183 +g1,19088:23228472,11492183 +h1,19088:23560426,11492183:0,0,0 +k1,19088:32583029,11492183:9022603 +g1,19088:32583029,11492183 +) +(1,19089:6630773,12177038:25952256,424439,112852 +h1,19089:6630773,12177038:0,0,0 +g1,19089:6962727,12177038 +g1,19089:7294681,12177038 +g1,19089:11610082,12177038 +h1,19089:11942036,12177038:0,0,0 +k1,19089:32583028,12177038:20640992 +g1,19089:32583028,12177038 +) +(1,19090:6630773,12861893:25952256,424439,112852 +h1,19090:6630773,12861893:0,0,0 +g1,19090:6962727,12861893 +g1,19090:7294681,12861893 +g1,19090:13601806,12861893 +g1,19090:14265714,12861893 +k1,19090:14265714,12861893:0 +h1,19090:16257438,12861893:0,0,0 +k1,19090:32583029,12861893:16325591 +g1,19090:32583029,12861893 +) +(1,19091:6630773,13546748:25952256,431045,106246 +h1,19091:6630773,13546748:0,0,0 +g1,19091:6962727,13546748 +g1,19091:7294681,13546748 +g1,19091:7626635,13546748 +g1,19091:7958589,13546748 +g1,19091:8290543,13546748 +g1,19091:8622497,13546748 +g1,19091:8954451,13546748 +g1,19091:9286405,13546748 +g1,19091:9618359,13546748 +g1,19091:9950313,13546748 +g1,19091:10282267,13546748 +g1,19091:10614221,13546748 +g1,19091:10946175,13546748 +g1,19091:11278129,13546748 +g1,19091:13933761,13546748 +g1,19091:14597669,13546748 +g1,19091:14929623,13546748 +g1,19091:15593531,13546748 +g1,19091:16257439,13546748 +g1,19091:20240886,13546748 +g1,19091:21568702,13546748 +k1,19091:21568702,13546748:0 +h1,19091:22564564,13546748:0,0,0 +k1,19091:32583029,13546748:10018465 +g1,19091:32583029,13546748 +) +(1,19092:6630773,14231603:25952256,424439,79822 +h1,19092:6630773,14231603:0,0,0 +g1,19092:6962727,14231603 +g1,19092:7294681,14231603 +g1,19092:7626635,14231603 +g1,19092:7958589,14231603 +g1,19092:8290543,14231603 +g1,19092:8622497,14231603 +g1,19092:8954451,14231603 +g1,19092:9286405,14231603 +g1,19092:9618359,14231603 +g1,19092:9950313,14231603 +g1,19092:10282267,14231603 +g1,19092:10614221,14231603 +g1,19092:10946175,14231603 +g1,19092:11278129,14231603 +g1,19092:12273991,14231603 +g1,19092:12937899,14231603 +h1,19092:14929623,14231603:0,0,0 +k1,19092:32583029,14231603:17653406 +g1,19092:32583029,14231603 +) +] +) +g1,19094:32583029,14311425 +g1,19094:6630773,14311425 +g1,19094:6630773,14311425 +g1,19094:32583029,14311425 +g1,19094:32583029,14311425 +) +h1,19094:6630773,14508033:0,0,0 +(1,19098:6630773,15373113:25952256,513147,126483 +h1,19097:6630773,15373113:983040,0,0 +k1,19097:8409017,15373113:167369 +k1,19097:9595471,15373113:167369 +k1,19097:12004171,15373113:167369 +k1,19097:14832956,15373113:167368 +k1,19097:15868677,15373113:167369 +k1,19097:17996883,15373113:167369 +k1,19097:19183337,15373113:167369 +k1,19097:21004179,15373113:167369 +k1,19097:23159255,15373113:167369 +k1,19097:25740969,15373113:167368 +k1,19097:26524376,15373113:167369 +k1,19097:27710830,15373113:167369 +k1,19097:29865906,15373113:167369 +k1,19097:32583029,15373113:0 +) +(1,19098:6630773,16238193:25952256,513147,134348 +k1,19097:8050884,16238193:228666 +k1,19097:10709625,16238193:228666 +k1,19097:11957376,16238193:228666 +k1,19097:14664613,16238193:228665 +k1,19097:16903924,16238193:228666 +k1,19097:20203607,16238193:228666 +k1,19097:21628960,16238193:228666 +k1,19097:23925942,16238193:228666 +k1,19097:25667834,16238193:228666 +k1,19097:26844150,16238193:228665 +k1,19097:28091901,16238193:228666 +k1,19097:31931601,16238193:228666 +k1,19097:32583029,16238193:0 +) +(1,19098:6630773,17103273:25952256,513147,134348 +k1,19097:7643352,17103273:264813 +k1,19097:9620622,17103273:264814 +k1,19097:10989717,17103273:264813 +k1,19097:12002296,17103273:264813 +k1,19097:14502543,17103273:264814 +k1,19097:15380118,17103273:264813 +k1,19097:16951064,17103273:264813 +k1,19097:19225867,17103273:264814 +k1,19097:20509765,17103273:264813 +k1,19097:24418380,17103273:264813 +k1,19097:25342486,17103273:264814 +k1,19097:26626384,17103273:264813 +k1,19097:27305974,17103273:264747 +k1,19097:30586755,17103273:264814 +k1,19097:31923737,17103273:264813 +k1,19097:32583029,17103273:0 +) +(1,19098:6630773,17968353:25952256,505283,115847 +g1,19097:8938951,17968353 +g1,19097:10157265,17968353 +g1,19097:12424810,17968353 +g1,19097:14137265,17968353 +g1,19097:14952532,17968353 +(1,19097:14952532,17968353:0,459977,115847 +r1,19136:17421069,17968353:2468537,575824,115847 +k1,19097:14952532,17968353:-2468537 +) +(1,19097:14952532,17968353:2468537,459977,115847 +k1,19097:14952532,17968353:3277 +h1,19097:17417792,17968353:0,411205,112570 +) +g1,19097:17620298,17968353 +g1,19097:19010972,17968353 +(1,19097:19010972,17968353:0,414482,115847 +r1,19136:20776085,17968353:1765113,530329,115847 +k1,19097:19010972,17968353:-1765113 +) +(1,19097:19010972,17968353:1765113,414482,115847 +k1,19097:19010972,17968353:3277 +h1,19097:20772808,17968353:0,411205,112570 +) +g1,19097:20975314,17968353 +g1,19097:22796559,17968353 +g1,19097:24976941,17968353 +g1,19097:26627792,17968353 +k1,19098:32583029,17968353:4079597 +g1,19098:32583029,17968353 +) +v1,19100:6630773,18653208:0,393216,0 +(1,19109:6630773,22385136:25952256,4125144,196608 +g1,19109:6630773,22385136 +g1,19109:6630773,22385136 +g1,19109:6434165,22385136 +(1,19109:6434165,22385136:0,4125144,196608 +r1,19136:32779637,22385136:26345472,4321752,196608 +k1,19109:6434165,22385136:-26345472 +) +(1,19109:6434165,22385136:26345472,4125144,196608 +[1,19109:6630773,22385136:25952256,3928536,0 +(1,19102:6630773,18881039:25952256,424439,112852 +(1,19101:6630773,18881039:0,0,0 +g1,19101:6630773,18881039 +g1,19101:6630773,18881039 +g1,19101:6303093,18881039 +(1,19101:6303093,18881039:0,0,0 +) +g1,19101:6630773,18881039 +) +k1,19102:6630773,18881039:0 +g1,19102:12605944,18881039 +g1,19102:15925484,18881039 +g1,19102:17917208,18881039 +g1,19102:19908932,18881039 +g1,19102:20572840,18881039 +g1,19102:23228472,18881039 +h1,19102:23560426,18881039:0,0,0 +k1,19102:32583029,18881039:9022603 +g1,19102:32583029,18881039 +) +(1,19103:6630773,19565894:25952256,424439,112852 +h1,19103:6630773,19565894:0,0,0 +g1,19103:6962727,19565894 +g1,19103:7294681,19565894 +g1,19103:11610082,19565894 +h1,19103:11942036,19565894:0,0,0 +k1,19103:32583028,19565894:20640992 +g1,19103:32583028,19565894 +) +(1,19104:6630773,20250749:25952256,424439,112852 +h1,19104:6630773,20250749:0,0,0 +g1,19104:6962727,20250749 +g1,19104:7294681,20250749 +g1,19104:13601806,20250749 +g1,19104:14265714,20250749 +k1,19104:14265714,20250749:0 +h1,19104:16257438,20250749:0,0,0 +k1,19104:32583029,20250749:16325591 +g1,19104:32583029,20250749 +) +(1,19105:6630773,20935604:25952256,431045,112852 +h1,19105:6630773,20935604:0,0,0 +g1,19105:6962727,20935604 +g1,19105:7294681,20935604 +g1,19105:7626635,20935604 +g1,19105:7958589,20935604 +g1,19105:8290543,20935604 +g1,19105:8622497,20935604 +g1,19105:8954451,20935604 +g1,19105:9286405,20935604 +g1,19105:9618359,20935604 +g1,19105:9950313,20935604 +g1,19105:10282267,20935604 +g1,19105:10614221,20935604 +g1,19105:10946175,20935604 +g1,19105:11278129,20935604 +g1,19105:15261576,20935604 +g1,19105:15925484,20935604 +g1,19105:20240886,20935604 +g1,19105:20904794,20935604 +g1,19105:21236748,20935604 +g1,19105:21900656,20935604 +g1,19105:22564564,20935604 +g1,19105:24556288,20935604 +g1,19105:25220196,20935604 +g1,19105:26216058,20935604 +g1,19105:26879966,20935604 +g1,19105:27875828,20935604 +g1,19105:28539736,20935604 +k1,19105:28539736,20935604:0 +h1,19105:29535598,20935604:0,0,0 +k1,19105:32583029,20935604:3047431 +g1,19105:32583029,20935604 +) +(1,19106:6630773,21620459:25952256,424439,86428 +h1,19106:6630773,21620459:0,0,0 +g1,19106:6962727,21620459 +g1,19106:7294681,21620459 +g1,19106:7626635,21620459 +g1,19106:7958589,21620459 +g1,19106:8290543,21620459 +g1,19106:8622497,21620459 +g1,19106:8954451,21620459 +g1,19106:9286405,21620459 +g1,19106:9618359,21620459 +g1,19106:9950313,21620459 +g1,19106:10282267,21620459 +g1,19106:10614221,21620459 +g1,19106:10946175,21620459 +g1,19106:11278129,21620459 +g1,19106:11610083,21620459 +g1,19106:11942037,21620459 +g1,19106:12273991,21620459 +g1,19106:12605945,21620459 +g1,19106:12937899,21620459 +g1,19106:13269853,21620459 +g1,19106:13601807,21620459 +g1,19106:13933761,21620459 +g1,19106:14265715,21620459 +g1,19106:14597669,21620459 +g1,19106:14929623,21620459 +g1,19106:15261577,21620459 +g1,19106:15593531,21620459 +g1,19106:15925485,21620459 +g1,19106:16257439,21620459 +g1,19106:16589393,21620459 +g1,19106:16921347,21620459 +g1,19106:17253301,21620459 +g1,19106:17585255,21620459 +g1,19106:19576979,21620459 +g1,19106:20240887,21620459 +g1,19106:23560427,21620459 +g1,19106:24224335,21620459 +g1,19106:25884105,21620459 +g1,19106:26548013,21620459 +g1,19106:27211921,21620459 +k1,19106:27211921,21620459:0 +h1,19106:29535599,21620459:0,0,0 +k1,19106:32583029,21620459:3047430 +g1,19106:32583029,21620459 +) +(1,19107:6630773,22305314:25952256,424439,79822 +h1,19107:6630773,22305314:0,0,0 +g1,19107:6962727,22305314 +g1,19107:7294681,22305314 +g1,19107:7626635,22305314 +g1,19107:7958589,22305314 +g1,19107:8290543,22305314 +g1,19107:8622497,22305314 +g1,19107:8954451,22305314 +g1,19107:9286405,22305314 +g1,19107:9618359,22305314 +g1,19107:9950313,22305314 +g1,19107:10282267,22305314 +g1,19107:10614221,22305314 +g1,19107:10946175,22305314 +g1,19107:11278129,22305314 +g1,19107:12273991,22305314 +g1,19107:12937899,22305314 +h1,19107:14929623,22305314:0,0,0 +k1,19107:32583029,22305314:17653406 +g1,19107:32583029,22305314 +) +] +) +g1,19109:32583029,22385136 +g1,19109:6630773,22385136 +g1,19109:6630773,22385136 +g1,19109:32583029,22385136 +g1,19109:32583029,22385136 +) +h1,19109:6630773,22581744:0,0,0 +(1,19113:6630773,23446824:25952256,513147,126483 +h1,19112:6630773,23446824:983040,0,0 +k1,19112:8481056,23446824:239408 +k1,19112:10412604,23446824:239408 +k1,19112:12349394,23446824:239408 +k1,19112:13046899,23446824:239408 +k1,19112:13817804,23446824:239408 +k1,19112:16953903,23446824:239408 +k1,19112:17844738,23446824:239407 +k1,19112:20881223,23446824:239408 +k1,19112:22728229,23446824:239408 +k1,19112:24361588,23446824:239408 +k1,19112:26313452,23446824:239408 +k1,19112:28540567,23446824:239408 +k1,19112:31900144,23446824:239408 +k1,19112:32583029,23446824:0 +) +(1,19113:6630773,24311904:25952256,513147,134348 +k1,19112:8578784,24311904:235555 +k1,19112:12599043,24311904:235555 +k1,19112:14105996,24311904:235555 +k1,19112:15579526,24311904:235555 +k1,19112:16474373,24311904:235555 +k1,19112:19710166,24311904:235555 +k1,19112:21148963,24311904:235556 +k1,19112:21916015,24311904:235555 +k1,19112:22913098,24311904:235555 +k1,19112:25083276,24311904:235555 +k1,19112:26337916,24311904:235555 +k1,19112:28561178,24311904:235555 +k1,19112:29988178,24311904:235555 +k1,19112:31657661,24311904:235555 +k1,19113:32583029,24311904:0 +) +(1,19113:6630773,25176984:25952256,513147,134348 +k1,19112:9319967,25176984:207346 +k1,19112:10546397,25176984:207345 +k1,19112:14364777,25176984:207346 +k1,19112:15223551,25176984:207346 +k1,19112:18363632,25176984:207345 +k1,19112:21594809,25176984:207346 +k1,19112:23028334,25176984:207346 +k1,19112:25431791,25176984:207346 +k1,19112:26290564,25176984:207345 +k1,19112:27590395,25176984:207346 +k1,19112:28745392,25176984:207346 +k1,19112:30178916,25176984:207345 +k1,19112:31069147,25176984:207346 +k1,19112:32583029,25176984:0 +) +(1,19113:6630773,26042064:25952256,505283,134348 +k1,19112:10811118,26042064:216072 +k1,19112:13961892,26042064:216072 +k1,19112:16758117,26042064:216073 +k1,19112:20021612,26042064:216072 +k1,19112:22283718,26042064:216072 +k1,19112:22957887,26042064:216072 +k1,19112:25803919,26042064:216072 +k1,19112:26671420,26042064:216073 +k1,19112:29889696,26042064:216072 +k1,19112:31599334,26042064:216072 +k1,19113:32583029,26042064:0 +) +(1,19113:6630773,26907144:25952256,505283,134348 +k1,19112:9914211,26907144:263539 +k1,19112:10793788,26907144:263539 +k1,19112:12809104,26907144:263539 +k1,19112:14943696,26907144:263539 +k1,19112:16588079,26907144:263539 +k1,19112:19431770,26907144:263539 +k1,19112:20981125,26907144:263539 +k1,19112:24005040,26907144:263539 +(1,19112:24005040,26907144:0,452978,115847 +r1,19136:29638983,26907144:5633943,568825,115847 +k1,19112:24005040,26907144:-5633943 +) +(1,19112:24005040,26907144:5633943,452978,115847 +k1,19112:24005040,26907144:3277 +h1,19112:29635706,26907144:0,411205,112570 +) +k1,19112:29902522,26907144:263539 +k1,19112:32051532,26907144:263539 +k1,19112:32583029,26907144:0 +) +(1,19113:6630773,27772224:25952256,513147,126483 +k1,19112:9087756,27772224:254973 +k1,19112:9994158,27772224:254974 +(1,19112:9994158,27772224:0,452978,115847 +r1,19136:14572966,27772224:4578808,568825,115847 +k1,19112:9994158,27772224:-4578808 +) +(1,19112:9994158,27772224:4578808,452978,115847 +k1,19112:9994158,27772224:3277 +h1,19112:14569689,27772224:0,411205,112570 +) +k1,19112:14827939,27772224:254973 +k1,19112:16155082,27772224:254974 +k1,19112:17804006,27772224:254973 +(1,19112:17804006,27772224:0,452978,115847 +r1,19136:22382814,27772224:4578808,568825,115847 +k1,19112:17804006,27772224:-4578808 +) +(1,19112:17804006,27772224:4578808,452978,115847 +g1,19112:20269266,27772224 +g1,19112:20972690,27772224 +h1,19112:22379537,27772224:0,411205,112570 +) +k1,19112:22637787,27772224:254973 +k1,19112:26739724,27772224:254974 +k1,19112:27680859,27772224:254973 +k1,19112:28724231,27772224:254974 +k1,19112:31244784,27772224:254973 +k1,19113:32583029,27772224:0 +) +(1,19113:6630773,28637304:25952256,513147,126483 +g1,19112:9424572,28637304 +g1,19112:10283093,28637304 +g1,19112:11501407,28637304 +g1,19112:14186417,28637304 +g1,19112:15044938,28637304 +k1,19113:32583029,28637304:13292669 +g1,19113:32583029,28637304 +) +v1,19115:6630773,29322159:0,393216,0 +(1,19124:6630773,33093723:25952256,4164780,196608 +g1,19124:6630773,33093723 +g1,19124:6630773,33093723 +g1,19124:6434165,33093723 +(1,19124:6434165,33093723:0,4164780,196608 +r1,19136:32779637,33093723:26345472,4361388,196608 +k1,19124:6434165,33093723:-26345472 +) +(1,19124:6434165,33093723:26345472,4164780,196608 +[1,19124:6630773,33093723:25952256,3968172,0 +(1,19117:6630773,29556596:25952256,431045,106246 +(1,19116:6630773,29556596:0,0,0 +g1,19116:6630773,29556596 +g1,19116:6630773,29556596 +g1,19116:6303093,29556596 +(1,19116:6303093,29556596:0,0,0 +) +g1,19116:6630773,29556596 +) +g1,19117:10282266,29556596 +g1,19117:11278128,29556596 +g1,19117:11942036,29556596 +g1,19117:12605944,29556596 +g1,19117:15261576,29556596 +h1,19117:15925484,29556596:0,0,0 +k1,19117:32583029,29556596:16657545 +g1,19117:32583029,29556596 +) +(1,19118:6630773,30241451:25952256,431045,112852 +h1,19118:6630773,30241451:0,0,0 +g1,19118:10614221,30241451 +g1,19118:11278129,30241451 +g1,19118:13933761,30241451 +g1,19118:15925485,30241451 +g1,19118:16589393,30241451 +g1,19118:18581117,30241451 +g1,19118:19245025,30241451 +g1,19118:19908933,30241451 +g1,19118:21568703,30241451 +g1,19118:23560427,30241451 +g1,19118:24224335,30241451 +g1,19118:28871691,30241451 +h1,19118:29203645,30241451:0,0,0 +k1,19118:32583029,30241451:3379384 +g1,19118:32583029,30241451 +) +(1,19119:6630773,30926306:25952256,431045,106246 +h1,19119:6630773,30926306:0,0,0 +g1,19119:6962727,30926306 +g1,19119:7294681,30926306 +g1,19119:14929622,30926306 +g1,19119:15593530,30926306 +g1,19119:19576977,30926306 +g1,19119:21568701,30926306 +g1,19119:22232609,30926306 +g1,19119:25220195,30926306 +h1,19119:25552149,30926306:0,0,0 +k1,19119:32583029,30926306:7030880 +g1,19119:32583029,30926306 +) +(1,19120:6630773,31611161:25952256,431045,112852 +h1,19120:6630773,31611161:0,0,0 +g1,19120:6962727,31611161 +g1,19120:7294681,31611161 +g1,19120:14265714,31611161 +g1,19120:14929622,31611161 +g1,19120:18913069,31611161 +g1,19120:21568701,31611161 +g1,19120:22232609,31611161 +g1,19120:28207780,31611161 +k1,19120:28207780,31611161:0 +h1,19120:30199504,31611161:0,0,0 +k1,19120:32583029,31611161:2383525 +g1,19120:32583029,31611161 +) +(1,19121:6630773,32296016:25952256,424439,106246 +h1,19121:6630773,32296016:0,0,0 +g1,19121:6962727,32296016 +g1,19121:7294681,32296016 +g1,19121:7626635,32296016 +g1,19121:7958589,32296016 +g1,19121:8290543,32296016 +g1,19121:8622497,32296016 +g1,19121:8954451,32296016 +g1,19121:9286405,32296016 +g1,19121:9618359,32296016 +g1,19121:9950313,32296016 +g1,19121:10282267,32296016 +g1,19121:10614221,32296016 +g1,19121:10946175,32296016 +g1,19121:11278129,32296016 +g1,19121:11610083,32296016 +g1,19121:13601807,32296016 +g1,19121:14265715,32296016 +g1,19121:17253301,32296016 +g1,19121:19245025,32296016 +g1,19121:19908933,32296016 +g1,19121:21900657,32296016 +g1,19121:25884104,32296016 +g1,19121:26548012,32296016 +g1,19121:28207782,32296016 +h1,19121:28539736,32296016:0,0,0 +k1,19121:32583029,32296016:4043293 +g1,19121:32583029,32296016 +) +(1,19122:6630773,32980871:25952256,424439,112852 +h1,19122:6630773,32980871:0,0,0 +g1,19122:6962727,32980871 +g1,19122:7294681,32980871 +k1,19122:7294681,32980871:0 +h1,19122:11278128,32980871:0,0,0 +k1,19122:32583028,32980871:21304900 +g1,19122:32583028,32980871 +) +] +) +g1,19124:32583029,33093723 +g1,19124:6630773,33093723 +g1,19124:6630773,33093723 +g1,19124:32583029,33093723 +g1,19124:32583029,33093723 +) +h1,19124:6630773,33290331:0,0,0 +(1,19127:6630773,42439533:25952256,9083666,0 +k1,19127:10523651,42439533:3892878 +h1,19126:10523651,42439533:0,0,0 +(1,19126:10523651,42439533:18166500,9083666,0 +(1,19126:10523651,42439533:18167376,9083688,0 +(1,19126:10523651,42439533:18167376,9083688,0 +(1,19126:10523651,42439533:0,9083688,0 +(1,19126:10523651,42439533:0,14208860,0 +(1,19126:10523651,42439533:28417720,14208860,0 +) +k1,19126:10523651,42439533:-28417720 +) +) +g1,19126:28691027,42439533 +) +) +) +g1,19127:28690151,42439533 +k1,19127:32583029,42439533:3892878 +) +(1,19134:6630773,43304613:25952256,505283,134348 +h1,19133:6630773,43304613:983040,0,0 +k1,19133:9256860,43304613:262203 +k1,19133:11172537,43304613:262204 +k1,19133:14014892,43304613:262203 +k1,19133:16323129,43304613:262203 +k1,19133:17043430,43304613:262204 +k1,19133:19935593,43304613:262203 +k1,19133:20849225,43304613:262204 +k1,19133:23908505,43304613:262203 +k1,19133:25778306,43304613:262203 +k1,19133:27434461,43304613:262204 +k1,19133:30687072,43304613:262203 +k1,19133:32583029,43304613:0 +) +(1,19134:6630773,44169693:25952256,513147,7863 +g1,19133:8397623,44169693 +g1,19133:8952712,44169693 +g1,19133:11139648,44169693 +k1,19134:32583029,44169693:20582238 +g1,19134:32583029,44169693 +) +] +(1,19136:32583029,45706769:0,0,0 +g1,19136:32583029,45706769 +) +) +] +(1,19136:6630773,47279633:25952256,0,0 +h1,19136:6630773,47279633:25952256,0,0 +) +] +(1,19136:4262630,4025873:0,0,0 +[1,19136:-473656,4025873:0,0,0 +(1,19136:-473656,-710413:0,0,0 +(1,19136:-473656,-710413:0,0,0 +g1,19136:-473656,-710413 +) +g1,19136:-473656,-710413 +) +] ) ] +!25627 +}320 +Input:3017:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3018:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3019:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3020:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3021:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3022:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3023:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3024:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!764 +{321 +[1,19173:4262630,47279633:28320399,43253760,0 +(1,19173:4262630,4025873:0,0,0 +[1,19173:-473656,4025873:0,0,0 +(1,19173:-473656,-710413:0,0,0 +(1,19173:-473656,-644877:0,0,0 +k1,19173:-473656,-644877:-65536 ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,19201:37855564,2439708:1179648,16384,0 -) +(1,19173:-473656,4736287:0,0,0 +k1,19173:-473656,4736287:5209943 ) -k1,19201:3078556,2439708:-34777008 +g1,19173:-473656,-710413 ) ] -[1,19201:3078558,4812305:0,0,0 -(1,19201:3078558,49800853:0,16384,2228224 -k1,19201:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,19201:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,19201:3078558,51504789:16384,1179648,0 +[1,19173:6630773,47279633:25952256,43253760,0 +[1,19173:6630773,4812305:25952256,786432,0 +(1,19173:6630773,4812305:25952256,513147,126483 +(1,19173:6630773,4812305:25952256,513147,126483 +g1,19173:3078558,4812305 +[1,19173:3078558,4812305:0,0,0 +(1,19173:3078558,2439708:0,1703936,0 +k1,19173:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,19173:2537886,2439708:1179648,16384,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,19173:3078558,1915420:16384,1179648,0 +) +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,19201:3078558,4812305:0,0,0 -(1,19201:3078558,49800853:0,16384,2228224 -g1,19201:29030814,49800853 -g1,19201:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,19201:36151628,51504789:16384,1179648,0 +[1,19173:3078558,4812305:0,0,0 +(1,19173:3078558,2439708:0,1703936,0 +g1,19173:29030814,2439708 +g1,19173:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,19173:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,19201:37855564,49800853:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,19173:37855564,2439708:1179648,16384,0 ) ) -k1,19201:3078556,49800853:-34777008 +k1,19173:3078556,2439708:-34777008 ) ] -g1,19201:6630773,4812305 -k1,19201:21350816,4812305:13524666 -g1,19201:21999622,4812305 -g1,19201:25611966,4812305 -g1,19201:28956923,4812305 -g1,19201:29772190,4812305 +[1,19173:3078558,4812305:0,0,0 +(1,19173:3078558,49800853:0,16384,2228224 +k1,19173:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,19173:2537886,49800853:1179648,16384,0 +) +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,19173:3078558,51504789:16384,1179648,0 ) +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] -[1,19201:6630773,45706769:25952256,40108032,0 -(1,19201:6630773,45706769:25952256,40108032,0 -(1,19201:6630773,45706769:0,0,0 -g1,19201:6630773,45706769 ) -[1,19201:6630773,45706769:25952256,40108032,0 -v1,19166:6630773,6254097:0,393216,0 -(1,19166:6630773,7229080:25952256,1368199,196608 -g1,19166:6630773,7229080 -g1,19166:6630773,7229080 -g1,19166:6434165,7229080 -(1,19166:6434165,7229080:0,1368199,196608 -r1,19201:32779637,7229080:26345472,1564807,196608 -k1,19166:6434165,7229080:-26345472 ) -(1,19166:6434165,7229080:26345472,1368199,196608 -[1,19166:6630773,7229080:25952256,1171591,0 -(1,19163:6630773,6461715:25952256,404226,107478 -(1,19162:6630773,6461715:0,0,0 -g1,19162:6630773,6461715 -g1,19162:6630773,6461715 -g1,19162:6303093,6461715 -(1,19162:6303093,6461715:0,0,0 ) -g1,19162:6630773,6461715 +] +[1,19173:3078558,4812305:0,0,0 +(1,19173:3078558,49800853:0,16384,2228224 +g1,19173:29030814,49800853 +g1,19173:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,19173:36151628,51504789:16384,1179648,0 +) +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 +) +] +) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,19173:37855564,49800853:1179648,16384,0 +) +) +k1,19173:3078556,49800853:-34777008 +) +] +g1,19173:6630773,4812305 +k1,19173:21350816,4812305:13524666 +g1,19173:21999622,4812305 +g1,19173:25611966,4812305 +g1,19173:28956923,4812305 +g1,19173:29772190,4812305 +) +) +] +[1,19173:6630773,45706769:25952256,40108032,0 +(1,19173:6630773,45706769:25952256,40108032,0 +(1,19173:6630773,45706769:0,0,0 +g1,19173:6630773,45706769 +) +[1,19173:6630773,45706769:25952256,40108032,0 +v1,19136:6630773,6254097:0,393216,0 +(1,19152:6630773,14819646:25952256,8958765,196608 +g1,19152:6630773,14819646 +g1,19152:6630773,14819646 +g1,19152:6434165,14819646 +(1,19152:6434165,14819646:0,8958765,196608 +r1,19173:32779637,14819646:26345472,9155373,196608 +k1,19152:6434165,14819646:-26345472 +) +(1,19152:6434165,14819646:26345472,8958765,196608 +[1,19152:6630773,14819646:25952256,8762157,0 +(1,19138:6630773,6488534:25952256,431045,106246 +(1,19137:6630773,6488534:0,0,0 +g1,19137:6630773,6488534 +g1,19137:6630773,6488534 +g1,19137:6303093,6488534 +(1,19137:6303093,6488534:0,0,0 +) +g1,19137:6630773,6488534 +) +g1,19138:10282266,6488534 +g1,19138:11278128,6488534 +g1,19138:11942036,6488534 +g1,19138:12605944,6488534 +g1,19138:15261576,6488534 +h1,19138:15925484,6488534:0,0,0 +k1,19138:32583029,6488534:16657545 +g1,19138:32583029,6488534 +) +(1,19139:6630773,7173389:25952256,431045,112852 +h1,19139:6630773,7173389:0,0,0 +g1,19139:10614221,7173389 +g1,19139:11278129,7173389 +g1,19139:13933761,7173389 +g1,19139:15925485,7173389 +g1,19139:16589393,7173389 +g1,19139:18581117,7173389 +g1,19139:19245025,7173389 +g1,19139:19908933,7173389 +g1,19139:21568703,7173389 +g1,19139:23560427,7173389 +g1,19139:24224335,7173389 +g1,19139:28871691,7173389 +h1,19139:29203645,7173389:0,0,0 +k1,19139:32583029,7173389:3379384 +g1,19139:32583029,7173389 +) +(1,19140:6630773,7858244:25952256,431045,106246 +h1,19140:6630773,7858244:0,0,0 +g1,19140:6962727,7858244 +g1,19140:7294681,7858244 +g1,19140:14929622,7858244 +g1,19140:15593530,7858244 +g1,19140:19576977,7858244 +g1,19140:21568701,7858244 +g1,19140:22232609,7858244 +g1,19140:25220195,7858244 +h1,19140:25552149,7858244:0,0,0 +k1,19140:32583029,7858244:7030880 +g1,19140:32583029,7858244 +) +(1,19141:6630773,8543099:25952256,431045,112852 +h1,19141:6630773,8543099:0,0,0 +g1,19141:6962727,8543099 +g1,19141:7294681,8543099 +g1,19141:15261575,8543099 +g1,19141:15925483,8543099 +g1,19141:20240885,8543099 +g1,19141:20904793,8543099 +k1,19141:20904793,8543099:0 +h1,19141:24888240,8543099:0,0,0 +k1,19141:32583029,8543099:7694789 +g1,19141:32583029,8543099 +) +(1,19142:6630773,9227954:25952256,424439,86428 +h1,19142:6630773,9227954:0,0,0 +g1,19142:6962727,9227954 +g1,19142:7294681,9227954 +g1,19142:7626635,9227954 +g1,19142:7958589,9227954 +g1,19142:8290543,9227954 +g1,19142:8622497,9227954 +g1,19142:8954451,9227954 +g1,19142:9286405,9227954 +g1,19142:9618359,9227954 +g1,19142:9950313,9227954 +g1,19142:10282267,9227954 +g1,19142:10614221,9227954 +g1,19142:10946175,9227954 +g1,19142:11278129,9227954 +g1,19142:13269853,9227954 +g1,19142:13933761,9227954 +k1,19142:13933761,9227954:0 +h1,19142:16589393,9227954:0,0,0 +k1,19142:32583029,9227954:15993636 +g1,19142:32583029,9227954 +) +(1,19143:6630773,9912809:25952256,424439,86428 +h1,19143:6630773,9912809:0,0,0 +g1,19143:6962727,9912809 +g1,19143:7294681,9912809 +g1,19143:7626635,9912809 +g1,19143:7958589,9912809 +g1,19143:8290543,9912809 +g1,19143:8622497,9912809 +g1,19143:8954451,9912809 +g1,19143:9286405,9912809 +g1,19143:9618359,9912809 +g1,19143:9950313,9912809 +g1,19143:10282267,9912809 +g1,19143:10614221,9912809 +g1,19143:10946175,9912809 +g1,19143:11278129,9912809 +g1,19143:13933761,9912809 +g1,19143:14597669,9912809 +g1,19143:18581116,9912809 +g1,19143:19245024,9912809 +k1,19143:19245024,9912809:0 +h1,19143:21568702,9912809:0,0,0 +k1,19143:32583029,9912809:11014327 +g1,19143:32583029,9912809 +) +(1,19144:6630773,10597664:25952256,424439,86428 +h1,19144:6630773,10597664:0,0,0 +g1,19144:6962727,10597664 +g1,19144:7294681,10597664 +g1,19144:7626635,10597664 +g1,19144:7958589,10597664 +g1,19144:8290543,10597664 +g1,19144:8622497,10597664 +g1,19144:8954451,10597664 +g1,19144:9286405,10597664 +g1,19144:9618359,10597664 +g1,19144:9950313,10597664 +g1,19144:10282267,10597664 +g1,19144:10614221,10597664 +g1,19144:10946175,10597664 +g1,19144:11278129,10597664 +g1,19144:11610083,10597664 +g1,19144:11942037,10597664 +g1,19144:12273991,10597664 +g1,19144:12605945,10597664 +g1,19144:12937899,10597664 +g1,19144:13269853,10597664 +g1,19144:13601807,10597664 +g1,19144:13933761,10597664 +g1,19144:14265715,10597664 +g1,19144:14597669,10597664 +g1,19144:14929623,10597664 +g1,19144:15261577,10597664 +g1,19144:18249162,10597664 +g1,19144:18913070,10597664 +k1,19144:18913070,10597664:0 +h1,19144:22564563,10597664:0,0,0 +k1,19144:32583029,10597664:10018466 +g1,19144:32583029,10597664 +) +(1,19145:6630773,11282519:25952256,424439,86428 +h1,19145:6630773,11282519:0,0,0 +g1,19145:6962727,11282519 +g1,19145:7294681,11282519 +g1,19145:7626635,11282519 +g1,19145:7958589,11282519 +g1,19145:8290543,11282519 +g1,19145:8622497,11282519 +g1,19145:8954451,11282519 +g1,19145:9286405,11282519 +g1,19145:9618359,11282519 +g1,19145:9950313,11282519 +g1,19145:10282267,11282519 +g1,19145:10614221,11282519 +g1,19145:10946175,11282519 +g1,19145:11278129,11282519 +g1,19145:11610083,11282519 +g1,19145:11942037,11282519 +g1,19145:12273991,11282519 +g1,19145:12605945,11282519 +g1,19145:12937899,11282519 +g1,19145:13269853,11282519 +g1,19145:13601807,11282519 +g1,19145:13933761,11282519 +g1,19145:14265715,11282519 +g1,19145:14597669,11282519 +g1,19145:14929623,11282519 +g1,19145:15261577,11282519 +g1,19145:17585255,11282519 +g1,19145:18249163,11282519 +k1,19145:18249163,11282519:0 +h1,19145:22232610,11282519:0,0,0 +k1,19145:32583029,11282519:10350419 +g1,19145:32583029,11282519 +) +(1,19146:6630773,11967374:25952256,424439,86428 +h1,19146:6630773,11967374:0,0,0 +g1,19146:6962727,11967374 +g1,19146:7294681,11967374 +g1,19146:7626635,11967374 +g1,19146:7958589,11967374 +g1,19146:8290543,11967374 +g1,19146:8622497,11967374 +g1,19146:8954451,11967374 +g1,19146:9286405,11967374 +g1,19146:9618359,11967374 +g1,19146:9950313,11967374 +g1,19146:10282267,11967374 +g1,19146:10614221,11967374 +g1,19146:10946175,11967374 +g1,19146:11278129,11967374 +g1,19146:11610083,11967374 +g1,19146:11942037,11967374 +g1,19146:12273991,11967374 +g1,19146:12605945,11967374 +g1,19146:12937899,11967374 +g1,19146:13269853,11967374 +g1,19146:13601807,11967374 +g1,19146:13933761,11967374 +g1,19146:14265715,11967374 +g1,19146:14597669,11967374 +g1,19146:14929623,11967374 +g1,19146:15261577,11967374 +g1,19146:19245024,11967374 +g1,19146:19908932,11967374 +k1,19146:19908932,11967374:0 +h1,19146:23892379,11967374:0,0,0 +k1,19146:32583029,11967374:8690650 +g1,19146:32583029,11967374 +) +(1,19147:6630773,12652229:25952256,424439,106246 +h1,19147:6630773,12652229:0,0,0 +g1,19147:6962727,12652229 +g1,19147:7294681,12652229 +g1,19147:7626635,12652229 +g1,19147:7958589,12652229 +g1,19147:8290543,12652229 +g1,19147:8622497,12652229 +g1,19147:8954451,12652229 +g1,19147:9286405,12652229 +g1,19147:9618359,12652229 +g1,19147:9950313,12652229 +g1,19147:10282267,12652229 +g1,19147:10614221,12652229 +g1,19147:10946175,12652229 +g1,19147:11278129,12652229 +g1,19147:11610083,12652229 +g1,19147:11942037,12652229 +g1,19147:12273991,12652229 +g1,19147:12605945,12652229 +g1,19147:12937899,12652229 +g1,19147:13269853,12652229 +g1,19147:13601807,12652229 +g1,19147:13933761,12652229 +g1,19147:14265715,12652229 +g1,19147:14597669,12652229 +g1,19147:14929623,12652229 +g1,19147:15261577,12652229 +g1,19147:19245024,12652229 +g1,19147:19908932,12652229 +k1,19147:19908932,12652229:0 +h1,19147:23560425,12652229:0,0,0 +k1,19147:32583029,12652229:9022604 +g1,19147:32583029,12652229 +) +(1,19148:6630773,13337084:25952256,424439,112852 +h1,19148:6630773,13337084:0,0,0 +g1,19148:6962727,13337084 +g1,19148:7294681,13337084 +g1,19148:7626635,13337084 +g1,19148:7958589,13337084 +g1,19148:8290543,13337084 +g1,19148:8622497,13337084 +g1,19148:8954451,13337084 +g1,19148:9286405,13337084 +g1,19148:9618359,13337084 +g1,19148:9950313,13337084 +g1,19148:10282267,13337084 +g1,19148:10614221,13337084 +g1,19148:10946175,13337084 +g1,19148:11278129,13337084 +g1,19148:15261576,13337084 +g1,19148:15925484,13337084 +g1,19148:18249162,13337084 +g1,19148:22232609,13337084 +g1,19148:22896517,13337084 +k1,19148:22896517,13337084:0 +h1,19148:25552149,13337084:0,0,0 +k1,19148:32583029,13337084:7030880 +g1,19148:32583029,13337084 +) +(1,19149:6630773,14021939:25952256,424439,106246 +h1,19149:6630773,14021939:0,0,0 +g1,19149:6962727,14021939 +g1,19149:7294681,14021939 +g1,19149:7626635,14021939 +g1,19149:7958589,14021939 +g1,19149:8290543,14021939 +g1,19149:8622497,14021939 +g1,19149:8954451,14021939 +g1,19149:9286405,14021939 +g1,19149:9618359,14021939 +g1,19149:9950313,14021939 +g1,19149:10282267,14021939 +g1,19149:10614221,14021939 +g1,19149:10946175,14021939 +g1,19149:11278129,14021939 +g1,19149:13269853,14021939 +g1,19149:13933761,14021939 +g1,19149:15925485,14021939 +h1,19149:16257439,14021939:0,0,0 +k1,19149:32583029,14021939:16325590 +g1,19149:32583029,14021939 +) +(1,19150:6630773,14706794:25952256,424439,112852 +h1,19150:6630773,14706794:0,0,0 +g1,19150:6962727,14706794 +g1,19150:7294681,14706794 +k1,19150:7294681,14706794:0 +h1,19150:11278128,14706794:0,0,0 +k1,19150:32583028,14706794:21304900 +g1,19150:32583028,14706794 +) +] +) +g1,19152:32583029,14819646 +g1,19152:6630773,14819646 +g1,19152:6630773,14819646 +g1,19152:32583029,14819646 +g1,19152:32583029,14819646 +) +h1,19152:6630773,15016254:0,0,0 +(1,19155:6630773,24165456:25952256,9083666,0 +k1,19155:10523651,24165456:3892878 +h1,19154:10523651,24165456:0,0,0 +(1,19154:10523651,24165456:18166500,9083666,0 +(1,19154:10523651,24165456:18167376,9083688,0 +(1,19154:10523651,24165456:18167376,9083688,0 +(1,19154:10523651,24165456:0,9083688,0 +(1,19154:10523651,24165456:0,14208860,0 +(1,19154:10523651,24165456:28417720,14208860,0 +) +k1,19154:10523651,24165456:-28417720 +) +) +g1,19154:28691027,24165456 +) +) +) +g1,19155:28690151,24165456 +k1,19155:32583029,24165456:3892878 +) +(1,19162:6630773,25030536:25952256,513147,134348 +h1,19161:6630773,25030536:983040,0,0 +k1,19161:10484654,25030536:335908 +k1,19161:13867986,25030536:335909 +k1,19161:16964270,25030536:335908 +k1,19161:20527171,25030536:335908 +k1,19161:23545469,25030536:335909 +k1,19161:24829028,25030536:335908 +k1,19161:26184021,25030536:335908 +k1,19161:29980231,25030536:335909 +k1,19161:30975431,25030536:335908 +k1,19161:32583029,25030536:0 +) +(1,19162:6630773,25895616:25952256,513147,134348 +k1,19161:8724157,25895616:238715 +k1,19161:9772242,25895616:238715 +k1,19161:11723413,25895616:238715 +k1,19161:14280136,25895616:238715 +k1,19161:17813346,25895616:238715 +k1,19161:18813589,25895616:238715 +k1,19161:21632455,25895616:238714 +k1,19161:24316317,25895616:238715 +k1,19161:25746477,25895616:238715 +k1,19161:26773590,25895616:238715 +k1,19161:30588605,25895616:238715 +k1,19161:31297213,25895616:238715 +k1,19161:32583029,25895616:0 +) +(1,19162:6630773,26760696:25952256,513147,134348 +k1,19161:9747534,26760696:260047 +k1,19161:11506388,26760696:260046 +k1,19161:12957880,26760696:260047 +k1,19161:16338096,26760696:260047 +k1,19161:17545794,26760696:260047 +k1,19161:20406309,26760696:260046 +k1,19161:23983133,26760696:260047 +k1,19161:25434625,26760696:260047 +k1,19161:27580142,26760696:260046 +k1,19161:29092582,26760696:260047 +k1,19161:32583029,26760696:0 +) +(1,19162:6630773,27625776:25952256,513147,134348 +g1,19161:8791495,27625776 +g1,19161:10015707,27625776 +g1,19161:11234021,27625776 +g1,19161:14013402,27625776 +g1,19161:19038702,27625776 +g1,19161:20185582,27625776 +k1,19162:32583029,27625776:10106308 +g1,19162:32583029,27625776 +) +(1,19166:6630773,29742594:25952256,555811,139132 +(1,19166:6630773,29742594:2450326,534184,12975 +g1,19166:6630773,29742594 +g1,19166:9081099,29742594 +) +g1,19166:13681858,29742594 +g1,19166:15249086,29742594 +k1,19166:32583029,29742594:14898035 +g1,19166:32583029,29742594 +) +(1,19170:6630773,31000890:25952256,513147,126483 +k1,19169:8668662,31000890:254654 +k1,19169:9942401,31000890:254654 +k1,19169:12682836,31000890:254654 +k1,19169:13596782,31000890:254654 +k1,19169:17923188,31000890:254654 +k1,19169:18709339,31000890:254654 +k1,19169:20915656,31000890:254655 +k1,19169:23060368,31000890:254654 +k1,19169:24183374,31000890:254654 +k1,19169:25542310,31000890:254654 +k1,19169:26998894,31000890:254654 +k1,19169:28062918,31000890:254654 +k1,19169:29336657,31000890:254654 +k1,19169:31923737,31000890:254654 +k1,19169:32583029,31000890:0 +) +(1,19170:6630773,31865970:25952256,513147,134348 +k1,19169:9819755,31865970:239207 +k1,19169:12928127,31865970:239206 +k1,19169:13818762,31865970:239207 +k1,19169:16266531,31865970:239206 +k1,19169:17524823,31865970:239207 +k1,19169:20096455,31865970:239206 +k1,19169:20994954,31865970:239207 +k1,19169:22253245,31865970:239206 +k1,19169:26737874,31865970:239207 +k1,19169:28019102,31865970:239206 +k1,19169:31093396,31865970:239207 +k1,19170:32583029,31865970:0 +) +(1,19170:6630773,32731050:25952256,513147,134348 +k1,19169:7739077,32731050:215704 +k1,19169:9562378,32731050:215703 +k1,19169:11513475,32731050:215704 +k1,19169:15456210,32731050:215703 +k1,19169:17682559,32731050:215704 +k1,19169:18845914,32731050:215704 +(1,19169:18845914,32731050:0,452978,115847 +r1,19173:20611027,32731050:1765113,568825,115847 +k1,19169:18845914,32731050:-1765113 +) +(1,19169:18845914,32731050:1765113,452978,115847 +k1,19169:18845914,32731050:3277 +h1,19169:20607750,32731050:0,411205,112570 +) +k1,19169:20826730,32731050:215703 +k1,19169:22146716,32731050:215704 +k1,19169:23642337,32731050:215703 +k1,19169:24213901,32731050:215704 +k1,19169:28159258,32731050:215703 +k1,19169:31923737,32731050:215704 +k1,19169:32583029,32731050:0 +) +(1,19170:6630773,33596130:25952256,513147,134348 +k1,19169:7844046,33596130:194188 +k1,19169:10544331,33596130:194188 +k1,19169:11972562,33596130:194188 +k1,19169:13948019,33596130:194188 +k1,19169:17232230,33596130:194188 +k1,19169:18042456,33596130:194188 +k1,19169:20515331,33596130:194188 +h1,19169:22058049,33596130:0,0,0 +k1,19169:22252237,33596130:194188 +k1,19169:23255795,33596130:194188 +k1,19169:24948136,33596130:194188 +h1,19169:26143513,33596130:0,0,0 +k1,19169:26511371,33596130:194188 +k1,19169:27809841,33596130:194188 +k1,19169:29289845,33596130:194188 +k1,19170:32583029,33596130:0 +) +(1,19170:6630773,34461210:25952256,513147,138281 +k1,19169:7923525,34461210:236967 +k1,19169:10369056,34461210:236968 +k1,19169:11625108,34461210:236967 +k1,19169:14194501,34461210:236967 +k1,19169:15090760,34461210:236967 +k1,19169:19399479,34461210:236967 +k1,19169:21381015,34461210:236968 +$1,19169:21381015,34461210 +$1,19169:21883676,34461210 +k1,19169:22120643,34461210:236967 +k1,19169:24567484,34461210:236967 +$1,19169:24567484,34461210 +$1,19169:25119297,34461210 +k1,19169:25356265,34461210:236968 +k1,19169:27165441,34461210:236967 +k1,19169:28920877,34461210:236967 +k1,19169:32583029,34461210:0 +) +(1,19170:6630773,35326290:25952256,505283,126483 +k1,19169:7650186,35326290:204145 +k1,19169:8920601,35326290:204144 +k1,19169:11402122,35326290:204145 +k1,19169:16174125,35326290:204144 +k1,19169:18067788,35326290:204145 +k1,19169:19291017,35326290:204144 +k1,19169:22177551,35326290:204145 +k1,19169:25471718,35326290:204144 +k1,19169:26291901,35326290:204145 +k1,19169:27699286,35326290:204144 +k1,19169:30182118,35326290:204145 +k1,19169:31375200,35326290:204144 +k1,19170:32583029,35326290:0 +) +(1,19170:6630773,36191370:25952256,513147,134348 +k1,19169:9650213,36191370:225640 +k1,19169:10637382,36191370:225641 +k1,19169:14536970,36191370:225640 +k1,19169:15652590,36191370:225641 +k1,19169:17432089,36191370:225640 +k1,19169:18849174,36191370:225640 +k1,19169:22048183,36191370:225641 +k1,19169:24606249,36191370:225640 +k1,19169:27857687,36191370:225641 +k1,19169:29074887,36191370:225640 +k1,19169:32583029,36191370:0 +) +(1,19170:6630773,37056450:25952256,513147,134348 +k1,19169:9935813,37056450:197323 +k1,19169:12110357,37056450:197323 +k1,19169:14005717,37056450:197322 +k1,19169:15222125,37056450:197323 +k1,19169:17905229,37056450:197323 +k1,19169:18761844,37056450:197323 +k1,19169:23030919,37056450:197323 +k1,19169:23759739,37056450:197323 +k1,19169:25701629,37056450:197322 +k1,19169:27773282,37056450:197323 +k1,19169:31478747,37056450:197323 +k1,19169:32583029,37056450:0 +) +(1,19170:6630773,37921530:25952256,505283,126483 +g1,19169:7577768,37921530 +g1,19169:10985640,37921530 +g1,19169:11800907,37921530 +g1,19169:13156846,37921530 +g1,19169:14038960,37921530 +g1,19169:15888386,37921530 +k1,19170:32583029,37921530:12845714 +g1,19170:32583029,37921530 +) +(1,19172:6630773,38786610:25952256,513147,134348 +h1,19171:6630773,38786610:983040,0,0 +k1,19171:11452435,38786610:181713 +k1,19171:12625709,38786610:181714 +k1,19171:15189000,38786610:181713 +k1,19171:16132241,38786610:181713 +k1,19171:17644335,38786610:181713 +k1,19171:18845134,38786610:181714 +k1,19171:21329127,38786610:181713 +k1,19171:23521485,38786610:181713 +k1,19171:24694758,38786610:181713 +k1,19171:28279101,38786610:181714 +k1,19171:31423697,38786610:181713 +k1,19172:32583029,38786610:0 +) +(1,19172:6630773,39651690:25952256,513147,134348 +k1,19171:9546688,39651690:295786 +k1,19171:10834033,39651690:295785 +k1,19171:12731519,39651690:295786 +k1,19171:16332286,39651690:295786 +k1,19171:18930351,39651690:295785 +k1,19171:19912299,39651690:295786 +k1,19171:21252729,39651690:295786 +k1,19171:23329783,39651690:295785 +k1,19171:25377346,39651690:295786 +k1,19171:26717776,39651690:295786 +k1,19171:27696446,39651690:295785 +k1,19171:30975431,39651690:295786 +k1,19171:32583029,39651690:0 +) +(1,19172:6630773,40516770:25952256,505283,134348 +k1,19171:7859136,40516770:236803 +k1,19171:9162211,40516770:236804 +k1,19171:13139154,40516770:236803 +k1,19171:16338840,40516770:236803 +k1,19171:18421792,40516770:236803 +k1,19171:20236048,40516770:236804 +k1,19171:21088889,40516770:236803 +k1,19171:24036916,40516770:236803 +k1,19171:24629579,40516770:236803 +k1,19171:28102551,40516770:236804 +k1,19171:30108171,40516770:236803 +k1,19171:31092740,40516770:236803 +k1,19172:32583029,40516770:0 +) +(1,19172:6630773,41381850:25952256,513147,134348 +k1,19171:7898037,41381850:242281 +k1,19171:9875712,41381850:242282 +k1,19171:10473853,41381850:242281 +k1,19171:13478477,41381850:242281 +k1,19171:16728206,41381850:242282 +k1,19171:18705880,41381850:242281 +(1,19171:18705880,41381850:0,452978,115847 +r1,19173:22229552,41381850:3523672,568825,115847 +k1,19171:18705880,41381850:-3523672 +) +(1,19171:18705880,41381850:3523672,452978,115847 +k1,19171:18705880,41381850:3277 +h1,19171:22226275,41381850:0,411205,112570 +) +k1,19171:22645503,41381850:242281 +k1,19171:23906870,41381850:242282 +k1,19171:26554323,41381850:242281 +k1,19171:28309830,41381850:242281 +k1,19171:29313640,41381850:242282 +k1,19171:31821501,41381850:242281 +k1,19172:32583029,41381850:0 +) +(1,19172:6630773,42246930:25952256,513147,134348 +(1,19171:6630773,42246930:0,452978,122846 +r1,19173:12264716,42246930:5633943,575824,122846 +k1,19171:6630773,42246930:-5633943 +) +(1,19171:6630773,42246930:5633943,452978,122846 +k1,19171:6630773,42246930:3277 +h1,19171:12261439,42246930:0,411205,112570 +) +k1,19171:12718330,42246930:279944 +k1,19171:14379118,42246930:279944 +k1,19171:17064234,42246930:279944 +k1,19171:18837088,42246930:279944 +k1,19171:21538586,42246930:279943 +k1,19171:22477822,42246930:279944 +k1,19171:26829518,42246930:279944 +k1,19171:29152219,42246930:279944 +k1,19171:32583029,42246930:0 +) +(1,19172:6630773,43112010:25952256,513147,126483 +k1,19171:10671504,43112010:172796 +k1,19171:12035746,43112010:172797 +k1,19171:12740039,43112010:172796 +k1,19171:15424830,43112010:172796 +k1,19171:16545278,43112010:172797 +k1,19171:20288475,43112010:172796 +$1,19171:20288475,43112010 +$1,19171:20791136,43112010 +k1,19171:20963932,43112010:172796 +k1,19171:23212910,43112010:172797 +k1,19171:25168941,43112010:172796 +k1,19171:25697598,43112010:172797 +k1,19171:27764384,43112010:172796 +k1,19171:28468677,43112010:172796 +k1,19171:31226869,43112010:172797 +k1,19171:32051093,43112010:172796 +(1,19171:32051093,43112010:0,414482,115847 +r1,19173:32409359,43112010:358266,530329,115847 +k1,19171:32051093,43112010:-358266 +) +(1,19171:32051093,43112010:358266,414482,115847 +k1,19171:32051093,43112010:3277 +h1,19171:32406082,43112010:0,411205,112570 +) +k1,19172:32583029,43112010:0 +) +(1,19172:6630773,43977090:25952256,513147,122846 +(1,19171:6630773,43977090:0,452978,115847 +r1,19173:10857869,43977090:4227096,568825,115847 +k1,19171:6630773,43977090:-4227096 +) +(1,19171:6630773,43977090:4227096,452978,115847 +k1,19171:6630773,43977090:3277 +h1,19171:10854592,43977090:0,411205,112570 +) +k1,19171:11049812,43977090:191943 +k1,19171:13422138,43977090:191943 +k1,19171:14361847,43977090:191943 +k1,19171:16240688,43977090:191944 +k1,19171:18318102,43977090:191943 +k1,19171:19041542,43977090:191943 +k1,19171:20252570,43977090:191943 +k1,19171:22710093,43977090:191943 +(1,19171:22710093,43977090:0,414482,115847 +r1,19173:24123494,43977090:1413401,530329,115847 +k1,19171:22710093,43977090:-1413401 +) +(1,19171:22710093,43977090:1413401,414482,115847 +k1,19171:22710093,43977090:3277 +h1,19171:24120217,43977090:0,411205,112570 +) +k1,19171:24315437,43977090:191943 +k1,19171:25455032,43977090:191944 +(1,19171:25455032,43977090:0,452978,122846 +r1,19173:28978704,43977090:3523672,575824,122846 +k1,19171:25455032,43977090:-3523672 +) +(1,19171:25455032,43977090:3523672,452978,122846 +k1,19171:25455032,43977090:3277 +h1,19171:28975427,43977090:0,411205,112570 +) +k1,19171:29344317,43977090:191943 +k1,19171:31410590,43977090:191943 +k1,19171:32583029,43977090:0 +) +(1,19172:6630773,44842170:25952256,513147,134348 +k1,19171:10312228,44842170:241470 +k1,19171:11545258,44842170:241470 +k1,19171:14876752,44842170:241471 +k1,19171:15734260,44842170:241470 +k1,19171:17178971,44842170:241470 +k1,19171:19699128,44842170:241470 +k1,19171:21763154,44842170:241470 +k1,19171:25031732,44842170:241470 +k1,19171:27802893,44842170:241471 +k1,19171:29424551,44842170:241470 +k1,19171:31931601,44842170:241470 +k1,19171:32583029,44842170:0 +) +] +(1,19173:32583029,45706769:0,0,0 +g1,19173:32583029,45706769 +) +) +] +(1,19173:6630773,47279633:25952256,0,0 +h1,19173:6630773,47279633:25952256,0,0 +) +] +(1,19173:4262630,4025873:0,0,0 +[1,19173:-473656,4025873:0,0,0 +(1,19173:-473656,-710413:0,0,0 +(1,19173:-473656,-710413:0,0,0 +g1,19173:-473656,-710413 +) +g1,19173:-473656,-710413 ) -k1,19163:6630773,6461715:0 -g1,19163:11689104,6461715 -g1,19163:15166707,6461715 -g1,19163:16431290,6461715 -h1,19163:16747436,6461715:0,0,0 -k1,19163:32583029,6461715:15835593 -g1,19163:32583029,6461715 +] ) -(1,19164:6630773,7127893:25952256,404226,101187 -h1,19164:6630773,7127893:0,0,0 -g1,19164:6946919,7127893 -g1,19164:7263065,7127893 -k1,19164:7263065,7127893:0 -h1,19164:11689104,7127893:0,0,0 -k1,19164:32583028,7127893:20893924 -g1,19164:32583028,7127893 -) -] -) -g1,19166:32583029,7229080 -g1,19166:6630773,7229080 -g1,19166:6630773,7229080 -g1,19166:32583029,7229080 -g1,19166:32583029,7229080 -) -h1,19166:6630773,7425688:0,0,0 -(1,19169:6630773,18402134:25952256,10510489,0 -k1,19169:12599879,18402134:5969106 -h1,19168:12599879,18402134:0,0,0 -(1,19168:12599879,18402134:14014044,10510489,0 -(1,19168:12599879,18402134:14014019,10510515,0 -(1,19168:12599879,18402134:14014019,10510515,0 -(1,19168:12599879,18402134:0,10510515,0 -(1,19168:12599879,18402134:0,14208860,0 -(1,19168:12599879,18402134:18945146,14208860,0 -) -k1,19168:12599879,18402134:-18945146 -) -) -g1,19168:26613898,18402134 -) -) -) -g1,19169:26613923,18402134 -k1,19169:32583029,18402134:5969106 -) -(1,19176:6630773,19243622:25952256,505283,126483 -h1,19175:6630773,19243622:983040,0,0 -k1,19175:8830816,19243622:399114 -k1,19175:10623881,19243622:399114 -k1,19175:12724966,19243622:399115 -k1,19175:15957201,19243622:399114 -k1,19175:17864954,19243622:399114 -k1,19175:21904593,19243622:399114 -k1,19175:24137404,19243622:399114 -k1,19175:26003215,19243622:399115 -k1,19175:27421414,19243622:399114 -k1,19175:29541503,19243622:399114 -k1,19176:32583029,19243622:0 -) -(1,19176:6630773,20085110:25952256,513147,126483 -k1,19175:8490784,20085110:366445 -k1,19175:9543390,20085110:366444 -(1,19175:9543390,20085110:0,452978,115847 -r1,19201:11308503,20085110:1765113,568825,115847 -k1,19175:9543390,20085110:-1765113 -) -(1,19175:9543390,20085110:1765113,452978,115847 -k1,19175:9543390,20085110:3277 -h1,19175:11305226,20085110:0,411205,112570 -) -k1,19175:11848618,20085110:366445 -k1,19175:13406507,20085110:366444 -k1,19175:17383986,20085110:366445 -k1,19175:20147737,20085110:366444 -k1,19175:21165610,20085110:366445 -k1,19175:22735295,20085110:366444 -k1,19175:24487826,20085110:366445 -k1,19175:25513563,20085110:366445 -k1,19175:27744506,20085110:366444 -k1,19176:32583029,20085110:0 -) -(1,19176:6630773,20926598:25952256,505283,115847 -(1,19175:6630773,20926598:0,452978,115847 -r1,19201:11209581,20926598:4578808,568825,115847 -k1,19175:6630773,20926598:-4578808 -) -(1,19175:6630773,20926598:4578808,452978,115847 -k1,19175:6630773,20926598:3277 -h1,19175:11206304,20926598:0,411205,112570 -) -k1,19175:11688012,20926598:304761 -(1,19175:11688012,20926598:0,459977,115847 -r1,19201:15915108,20926598:4227096,575824,115847 -k1,19175:11688012,20926598:-4227096 -) -(1,19175:11688012,20926598:4227096,459977,115847 -k1,19175:11688012,20926598:3277 -h1,19175:15911831,20926598:0,411205,112570 -) -k1,19175:16393538,20926598:304760 -(1,19175:16393538,20926598:0,452978,115847 -r1,19201:20972346,20926598:4578808,568825,115847 -k1,19175:16393538,20926598:-4578808 -) -(1,19175:16393538,20926598:4578808,452978,115847 -k1,19175:16393538,20926598:3277 -h1,19175:20969069,20926598:0,411205,112570 -) -k1,19175:21450777,20926598:304761 -(1,19175:21450777,20926598:0,452978,115847 -r1,19201:25677873,20926598:4227096,568825,115847 -k1,19175:21450777,20926598:-4227096 -) -(1,19175:21450777,20926598:4227096,452978,115847 -k1,19175:21450777,20926598:3277 -h1,19175:25674596,20926598:0,411205,112570 -) -k1,19175:26156303,20926598:304760 -(1,19175:26156303,20926598:0,452978,115847 -r1,19201:31086823,20926598:4930520,568825,115847 -k1,19175:26156303,20926598:-4930520 -) -(1,19175:26156303,20926598:4930520,452978,115847 -k1,19175:26156303,20926598:3277 -h1,19175:31083546,20926598:0,411205,112570 -) -k1,19175:31391584,20926598:304761 -k1,19176:32583029,20926598:0 -) -(1,19176:6630773,21768086:25952256,513147,126483 -(1,19175:6630773,21768086:0,452978,115847 -r1,19201:11209581,21768086:4578808,568825,115847 -k1,19175:6630773,21768086:-4578808 -) -(1,19175:6630773,21768086:4578808,452978,115847 -k1,19175:6630773,21768086:3277 -h1,19175:11206304,21768086:0,411205,112570 -) -k1,19175:11809610,21768086:426359 -k1,19175:14121440,21768086:426359 -k1,19175:16327101,21768086:426359 -k1,19175:17772545,21768086:426359 -k1,19175:20637499,21768086:426359 -k1,19175:21679896,21768086:426359 -k1,19175:22462114,21768086:426358 -k1,19175:24126448,21768086:426359 -k1,19175:26754817,21768086:426359 -k1,19175:27832604,21768086:426359 -k1,19175:29278048,21768086:426359 -k1,19176:32583029,21768086:0 -) -(1,19176:6630773,22609574:25952256,513147,134348 -(1,19175:6630773,22609574:0,452978,115847 -r1,19201:9802733,22609574:3171960,568825,115847 -k1,19175:6630773,22609574:-3171960 -) -(1,19175:6630773,22609574:3171960,452978,115847 -k1,19175:6630773,22609574:3277 -h1,19175:9799456,22609574:0,411205,112570 -) -k1,19175:9974535,22609574:171802 -k1,19175:10762375,22609574:171802 -(1,19175:10762375,22609574:0,452978,122846 -r1,19201:14989471,22609574:4227096,575824,122846 -k1,19175:10762375,22609574:-4227096 -) -(1,19175:10762375,22609574:4227096,452978,122846 -k1,19175:10762375,22609574:3277 -h1,19175:14986194,22609574:0,411205,112570 -) -k1,19175:15334943,22609574:171802 -k1,19175:16703431,22609574:171801 -k1,19175:18744320,22609574:171802 -k1,19175:20107567,22609574:171802 -k1,19175:22094061,22609574:171802 -k1,19175:22925155,22609574:171802 -k1,19175:24116042,22609574:171802 -k1,19175:26048140,22609574:171801 -k1,19175:27324224,22609574:171802 -k1,19175:28243792,22609574:171802 -k1,19175:31189078,22609574:171802 -k1,19176:32583029,22609574:0 -) -(1,19176:6630773,23451062:25952256,513147,126483 -(1,19175:6630773,23451062:0,452978,115847 -r1,19201:8395886,23451062:1765113,568825,115847 -k1,19175:6630773,23451062:-1765113 -) -(1,19175:6630773,23451062:1765113,452978,115847 -k1,19175:6630773,23451062:3277 -h1,19175:8392609,23451062:0,411205,112570 -) -k1,19175:8750566,23451062:181010 -(1,19175:8750566,23451062:0,452978,115847 -r1,19201:12274238,23451062:3523672,568825,115847 -k1,19175:8750566,23451062:-3523672 -) -(1,19175:8750566,23451062:3523672,452978,115847 -k1,19175:8750566,23451062:3277 -h1,19175:12270961,23451062:0,411205,112570 -) -k1,19175:12455248,23451062:181010 -k1,19175:13827703,23451062:181010 -(1,19175:13827703,23451062:0,452978,115847 -r1,19201:16647952,23451062:2820249,568825,115847 -k1,19175:13827703,23451062:-2820249 -) -(1,19175:13827703,23451062:2820249,452978,115847 -k1,19175:13827703,23451062:3277 -h1,19175:16644675,23451062:0,411205,112570 -) -k1,19175:17002633,23451062:181011 -k1,19175:19753310,23451062:181010 -k1,19175:20550358,23451062:181010 -k1,19175:21087228,23451062:181010 -k1,19175:23705522,23451062:181010 -k1,19175:25557045,23451062:181010 -k1,19175:26093916,23451062:181011 -k1,19175:28476936,23451062:181010 -k1,19175:29893300,23451062:181010 -k1,19175:31021961,23451062:181010 -k1,19176:32583029,23451062:0 -) -(1,19176:6630773,24292550:25952256,513147,134348 -g1,19175:8885211,24292550 -g1,19175:11774693,24292550 -g1,19175:12660084,24292550 -g1,19175:16296676,24292550 -g1,19175:18310597,24292550 -g1,19175:20180339,24292550 -g1,19175:22077606,24292550 -g1,19175:25680120,24292550 -k1,19176:32583029,24292550:4660922 -g1,19176:32583029,24292550 -) -v1,19178:6630773,25359150:0,393216,0 -(1,19184:6630773,27000311:25952256,2034377,196608 -g1,19184:6630773,27000311 -g1,19184:6630773,27000311 -g1,19184:6434165,27000311 -(1,19184:6434165,27000311:0,2034377,196608 -r1,19201:32779637,27000311:26345472,2230985,196608 -k1,19184:6434165,27000311:-26345472 -) -(1,19184:6434165,27000311:26345472,2034377,196608 -[1,19184:6630773,27000311:25952256,1837769,0 -(1,19180:6630773,25566768:25952256,404226,107478 -(1,19179:6630773,25566768:0,0,0 -g1,19179:6630773,25566768 -g1,19179:6630773,25566768 -g1,19179:6303093,25566768 -(1,19179:6303093,25566768:0,0,0 -) -g1,19179:6630773,25566768 -) -k1,19180:6630773,25566768:0 -g1,19180:11689104,25566768 -g1,19180:15166707,25566768 -g1,19180:16431290,25566768 -h1,19180:16747436,25566768:0,0,0 -k1,19180:32583029,25566768:15835593 -g1,19180:32583029,25566768 -) -(1,19181:6630773,26232946:25952256,404226,101187 -h1,19181:6630773,26232946:0,0,0 -g1,19181:6946919,26232946 -g1,19181:7263065,26232946 -g1,19181:13269833,26232946 -g1,19181:13902125,26232946 -g1,19181:15799000,26232946 -g1,19181:17695874,26232946 -g1,19181:18328166,26232946 -k1,19181:18328166,26232946:0 -h1,19181:19592749,26232946:0,0,0 -k1,19181:32583029,26232946:12990280 -g1,19181:32583029,26232946 -) -(1,19182:6630773,26899124:25952256,404226,101187 -h1,19182:6630773,26899124:0,0,0 -g1,19182:6946919,26899124 -g1,19182:7263065,26899124 -g1,19182:7579211,26899124 -g1,19182:7895357,26899124 -g1,19182:8211503,26899124 -g1,19182:8527649,26899124 -g1,19182:8843795,26899124 -g1,19182:9159941,26899124 -g1,19182:9476087,26899124 -g1,19182:9792233,26899124 -g1,19182:10108379,26899124 -g1,19182:10424525,26899124 -g1,19182:10740671,26899124 -g1,19182:11056817,26899124 -g1,19182:11372963,26899124 -g1,19182:15799003,26899124 -g1,19182:16431295,26899124 -g1,19182:18644315,26899124 -g1,19182:23070355,26899124 -g1,19182:23702647,26899124 -g1,19182:25283376,26899124 -g1,19182:29393270,26899124 -g1,19182:30025562,26899124 -h1,19182:30657854,26899124:0,0,0 -k1,19182:32583029,26899124:1925175 -g1,19182:32583029,26899124 -) -] -) -g1,19184:32583029,27000311 -g1,19184:6630773,27000311 -g1,19184:6630773,27000311 -g1,19184:32583029,27000311 -g1,19184:32583029,27000311 -) -h1,19184:6630773,27196919:0,0,0 -(1,19187:6630773,38173365:25952256,10510489,0 -k1,19187:12599879,38173365:5969106 -h1,19186:12599879,38173365:0,0,0 -(1,19186:12599879,38173365:14014044,10510489,0 -(1,19186:12599879,38173365:14014019,10510515,0 -(1,19186:12599879,38173365:14014019,10510515,0 -(1,19186:12599879,38173365:0,10510515,0 -(1,19186:12599879,38173365:0,14208860,0 -(1,19186:12599879,38173365:18945146,14208860,0 -) -k1,19186:12599879,38173365:-18945146 -) -) -g1,19186:26613898,38173365 -) -) -) -g1,19187:26613923,38173365 -k1,19187:32583029,38173365:5969106 -) -(1,19195:6630773,40264625:25952256,555811,139132 -(1,19195:6630773,40264625:2450326,534184,12975 -g1,19195:6630773,40264625 -g1,19195:9081099,40264625 -) -g1,19195:11467986,40264625 -k1,19195:32583028,40264625:19307756 -g1,19195:32583028,40264625 -) -(1,19199:6630773,41499329:25952256,505283,126483 -k1,19198:8757668,41499329:251910 -k1,19198:10617176,41499329:251910 -k1,19198:11860647,41499329:251911 -k1,19198:12468417,41499329:251910 -k1,19198:14370524,41499329:251910 -k1,19198:16610796,41499329:251910 -k1,19198:20994752,41499329:251911 -k1,19198:22689109,41499329:251910 -k1,19198:24101006,41499329:251910 -k1,19198:26134185,41499329:251910 -k1,19198:27577541,41499329:251911 -k1,19198:29883349,41499329:251910 -k1,19198:31529210,41499329:251910 -k1,19199:32583029,41499329:0 -) -(1,19199:6630773,42340817:25952256,513147,134348 -k1,19198:8966627,42340817:251154 -k1,19198:10788679,42340817:251154 -k1,19198:13855915,42340817:251154 -k1,19198:14766361,42340817:251154 -k1,19198:19262937,42340817:251154 -k1,19198:21071882,42340817:251154 -k1,19198:23091854,42340817:251155 -k1,19198:24090774,42340817:251154 -k1,19198:26868996,42340817:251154 -k1,19198:27779442,42340817:251154 -k1,19198:28716758,42340817:251154 -k1,19198:30705927,42340817:251154 -k1,19198:31312941,42340817:251154 -k1,19198:32583029,42340817:0 -) -(1,19199:6630773,43182305:25952256,513147,134348 -k1,19198:7543034,43182305:252969 -k1,19198:9882669,43182305:252969 -k1,19198:12770841,43182305:252969 -k1,19198:13794512,43182305:252968 -k1,19198:17020849,43182305:252969 -k1,19198:19606244,43182305:252969 -k1,19198:22554709,43182305:252969 -k1,19198:24039755,43182305:252969 -k1,19198:26571411,43182305:252969 -h1,19198:28114129,43182305:0,0,0 -k1,19198:28367097,43182305:252968 -k1,19198:29429436,43182305:252969 -k1,19198:31180558,43182305:252969 -h1,19198:32375935,43182305:0,0,0 -k1,19198:32583029,43182305:0 -) -(1,19199:6630773,44023793:25952256,505283,134348 -k1,19198:8032781,44023793:210563 -k1,19198:8599204,44023793:210563 -k1,19198:9969755,44023793:210564 -k1,19198:11457615,44023793:210563 -k1,19198:12900255,44023793:210563 -k1,19198:15389505,44023793:210563 -h1,19198:16932223,44023793:0,0,0 -k1,19198:17142786,44023793:210563 -k1,19198:18162719,44023793:210563 -k1,19198:19871436,44023793:210564 -h1,19198:21066813,44023793:0,0,0 -k1,19198:21658140,44023793:210563 -k1,19198:22686592,44023793:210563 -k1,19198:23428652,44023793:210563 -k1,19198:24658300,44023793:210563 -k1,19198:26235944,44023793:210563 -k1,19198:27840459,44023793:210564 -k1,19198:29211009,44023793:210563 -k1,19198:31202841,44023793:210563 -k1,19198:32583029,44023793:0 -) -(1,19199:6630773,44865281:25952256,513147,134348 -k1,19198:7813698,44865281:191365 -k1,19198:11692118,44865281:191365 -k1,19198:13860704,44865281:191365 -k1,19198:15750107,44865281:191365 -k1,19198:19344757,44865281:191365 -k1,19198:23647851,44865281:191365 -k1,19198:24498508,44865281:191365 -k1,19198:26911544,44865281:191365 -k1,19198:28665943,44865281:191365 -k1,19198:30156887,44865281:191365 -k1,19198:31109780,44865281:191365 -k1,19198:32583029,44865281:0 -) -(1,19199:6630773,45706769:25952256,505283,126483 -g1,19198:8387793,45706769 -g1,19198:9691304,45706769 -g1,19198:10638299,45706769 -g1,19198:13187649,45706769 -g1,19198:14780829,45706769 -(1,19198:14780829,45706769:0,452978,122846 -r1,19201:19359637,45706769:4578808,575824,122846 -k1,19198:14780829,45706769:-4578808 -) -(1,19198:14780829,45706769:4578808,452978,122846 -k1,19198:14780829,45706769:3277 -h1,19198:19356360,45706769:0,411205,112570 -) -g1,19198:19558866,45706769 -g1,19198:20444257,45706769 -g1,19198:22719011,45706769 -g1,19198:23534278,45706769 -g1,19198:24752592,45706769 -g1,19198:27943540,45706769 -k1,19199:32583029,45706769:2597387 -g1,19199:32583029,45706769 -) -] -(1,19201:32583029,45706769:0,0,0 -g1,19201:32583029,45706769 -) -) -] -(1,19201:6630773,47279633:25952256,0,0 -h1,19201:6630773,47279633:25952256,0,0 -) -] -(1,19201:4262630,4025873:0,0,0 -[1,19201:-473656,4025873:0,0,0 -(1,19201:-473656,-710413:0,0,0 -(1,19201:-473656,-710413:0,0,0 -g1,19201:-473656,-710413 -) -g1,19201:-473656,-710413 -) -] -) -] -!17683 -}341 -Input:3042:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3043:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3044:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!294 -{342 -[1,19256:4262630,47279633:28320399,43253760,0 -(1,19256:4262630,4025873:0,0,0 -[1,19256:-473656,4025873:0,0,0 -(1,19256:-473656,-710413:0,0,0 -(1,19256:-473656,-644877:0,0,0 -k1,19256:-473656,-644877:-65536 +] +!24777 +}321 +Input:3025:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3026:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3027:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3028:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3029:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3030:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3031:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3032:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3033:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3034:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3035:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3036:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3037:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1234 +{322 +[1,19232:4262630,47279633:28320399,43253760,0 +(1,19232:4262630,4025873:0,0,0 +[1,19232:-473656,4025873:0,0,0 +(1,19232:-473656,-710413:0,0,0 +(1,19232:-473656,-644877:0,0,0 +k1,19232:-473656,-644877:-65536 ) -(1,19256:-473656,4736287:0,0,0 -k1,19256:-473656,4736287:5209943 +(1,19232:-473656,4736287:0,0,0 +k1,19232:-473656,4736287:5209943 ) -g1,19256:-473656,-710413 +g1,19232:-473656,-710413 ) ] ) -[1,19256:6630773,47279633:25952256,43253760,0 -[1,19256:6630773,4812305:25952256,786432,0 -(1,19256:6630773,4812305:25952256,485622,11795 -(1,19256:6630773,4812305:25952256,485622,11795 -g1,19256:3078558,4812305 -[1,19256:3078558,4812305:0,0,0 -(1,19256:3078558,2439708:0,1703936,0 -k1,19256:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,19256:2537886,2439708:1179648,16384,0 +[1,19232:6630773,47279633:25952256,43253760,0 +[1,19232:6630773,4812305:25952256,786432,0 +(1,19232:6630773,4812305:25952256,485622,11795 +(1,19232:6630773,4812305:25952256,485622,11795 +g1,19232:3078558,4812305 +[1,19232:3078558,4812305:0,0,0 +(1,19232:3078558,2439708:0,1703936,0 +k1,19232:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,19232:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,19256:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,19232:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,19256:3078558,4812305:0,0,0 -(1,19256:3078558,2439708:0,1703936,0 -g1,19256:29030814,2439708 -g1,19256:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,19256:36151628,1915420:16384,1179648,0 +[1,19232:3078558,4812305:0,0,0 +(1,19232:3078558,2439708:0,1703936,0 +g1,19232:29030814,2439708 +g1,19232:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,19232:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,19256:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,19232:37855564,2439708:1179648,16384,0 ) ) -k1,19256:3078556,2439708:-34777008 +k1,19232:3078556,2439708:-34777008 ) ] -[1,19256:3078558,4812305:0,0,0 -(1,19256:3078558,49800853:0,16384,2228224 -k1,19256:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,19256:2537886,49800853:1179648,16384,0 +[1,19232:3078558,4812305:0,0,0 +(1,19232:3078558,49800853:0,16384,2228224 +k1,19232:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,19232:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,19256:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,19232:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,19256:3078558,4812305:0,0,0 -(1,19256:3078558,49800853:0,16384,2228224 -g1,19256:29030814,49800853 -g1,19256:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,19256:36151628,51504789:16384,1179648,0 +[1,19232:3078558,4812305:0,0,0 +(1,19232:3078558,49800853:0,16384,2228224 +g1,19232:29030814,49800853 +g1,19232:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,19232:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,19256:37855564,49800853:1179648,16384,0 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,19232:37855564,49800853:1179648,16384,0 ) ) -k1,19256:3078556,49800853:-34777008 +k1,19232:3078556,49800853:-34777008 ) ] -g1,19256:6630773,4812305 -g1,19256:6630773,4812305 -g1,19256:9560887,4812305 -k1,19256:31387651,4812305:21826764 -) -) -] -[1,19256:6630773,45706769:25952256,40108032,0 -(1,19256:6630773,45706769:25952256,40108032,0 -(1,19256:6630773,45706769:0,0,0 -g1,19256:6630773,45706769 -) -[1,19256:6630773,45706769:25952256,40108032,0 -v1,19201:6630773,6254097:0,393216,0 -(1,19206:6630773,7235371:25952256,1374490,196608 -g1,19206:6630773,7235371 -g1,19206:6630773,7235371 -g1,19206:6434165,7235371 -(1,19206:6434165,7235371:0,1374490,196608 -r1,19256:32779637,7235371:26345472,1571098,196608 -k1,19206:6434165,7235371:-26345472 -) -(1,19206:6434165,7235371:26345472,1374490,196608 -[1,19206:6630773,7235371:25952256,1177882,0 -(1,19203:6630773,6461715:25952256,404226,107478 -(1,19202:6630773,6461715:0,0,0 -g1,19202:6630773,6461715 -g1,19202:6630773,6461715 -g1,19202:6303093,6461715 -(1,19202:6303093,6461715:0,0,0 -) -g1,19202:6630773,6461715 -) -k1,19203:6630773,6461715:0 -g1,19203:11689104,6461715 -g1,19203:15166707,6461715 -g1,19203:16431290,6461715 -h1,19203:16747436,6461715:0,0,0 -k1,19203:32583029,6461715:15835593 -g1,19203:32583029,6461715 -) -(1,19204:6630773,7127893:25952256,404226,107478 -h1,19204:6630773,7127893:0,0,0 -g1,19204:6946919,7127893 -g1,19204:7263065,7127893 -k1,19204:7263065,7127893:0 -h1,19204:11372958,7127893:0,0,0 -k1,19204:32583030,7127893:21210072 -g1,19204:32583030,7127893 -) -] -) -g1,19206:32583029,7235371 -g1,19206:6630773,7235371 -g1,19206:6630773,7235371 -g1,19206:32583029,7235371 -g1,19206:32583029,7235371 -) -h1,19206:6630773,7431979:0,0,0 -v1,19210:6630773,9146733:0,393216,0 -(1,19217:6630773,11460364:25952256,2706847,196608 -g1,19217:6630773,11460364 -g1,19217:6630773,11460364 -g1,19217:6434165,11460364 -(1,19217:6434165,11460364:0,2706847,196608 -r1,19256:32779637,11460364:26345472,2903455,196608 -k1,19217:6434165,11460364:-26345472 -) -(1,19217:6434165,11460364:26345472,2706847,196608 -[1,19217:6630773,11460364:25952256,2510239,0 -(1,19212:6630773,9360643:25952256,410518,107478 -(1,19211:6630773,9360643:0,0,0 -g1,19211:6630773,9360643 -g1,19211:6630773,9360643 -g1,19211:6303093,9360643 -(1,19211:6303093,9360643:0,0,0 -) -g1,19211:6630773,9360643 -) -k1,19212:6630773,9360643:0 -g1,19212:11689104,9360643 -g1,19212:15166707,9360643 -g1,19212:16115145,9360643 -g1,19212:17695874,9360643 -g1,19212:18328166,9360643 -g1,19212:20857332,9360643 -h1,19212:21173478,9360643:0,0,0 -k1,19212:32583029,9360643:11409551 -g1,19212:32583029,9360643 -) -(1,19213:6630773,10026821:25952256,404226,107478 -h1,19213:6630773,10026821:0,0,0 -g1,19213:6946919,10026821 -g1,19213:7263065,10026821 -g1,19213:12953687,10026821 -g1,19213:13585979,10026821 -g1,19213:15482854,10026821 -h1,19213:15799000,10026821:0,0,0 -k1,19213:32583028,10026821:16784028 -g1,19213:32583028,10026821 -) -(1,19214:6630773,10692999:25952256,404226,107478 -h1,19214:6630773,10692999:0,0,0 -g1,19214:6946919,10692999 -g1,19214:7263065,10692999 -g1,19214:12637542,10692999 -g1,19214:13269834,10692999 -g1,19214:15166709,10692999 -g1,19214:16747438,10692999 -g1,19214:17379730,10692999 -k1,19214:17379730,10692999:0 -h1,19214:18644313,10692999:0,0,0 -k1,19214:32583029,10692999:13938716 -g1,19214:32583029,10692999 -) -(1,19215:6630773,11359177:25952256,404226,101187 -h1,19215:6630773,11359177:0,0,0 -g1,19215:6946919,11359177 -g1,19215:7263065,11359177 -g1,19215:7579211,11359177 -g1,19215:7895357,11359177 -g1,19215:8211503,11359177 -g1,19215:8527649,11359177 -g1,19215:8843795,11359177 -g1,19215:9159941,11359177 -g1,19215:9476087,11359177 -g1,19215:9792233,11359177 -g1,19215:10108379,11359177 -g1,19215:10424525,11359177 -g1,19215:10740671,11359177 -g1,19215:12637545,11359177 -g1,19215:13269837,11359177 -g1,19215:16115149,11359177 -g1,19215:18012023,11359177 -g1,19215:18644315,11359177 -h1,19215:19592752,11359177:0,0,0 -k1,19215:32583029,11359177:12990277 -g1,19215:32583029,11359177 -) -] -) -g1,19217:32583029,11460364 -g1,19217:6630773,11460364 -g1,19217:6630773,11460364 -g1,19217:32583029,11460364 -g1,19217:32583029,11460364 -) -h1,19217:6630773,11656972:0,0,0 -(1,19220:6630773,22757285:25952256,10510489,0 -k1,19220:12599879,22757285:5969106 -h1,19219:12599879,22757285:0,0,0 -(1,19219:12599879,22757285:14014044,10510489,0 -(1,19219:12599879,22757285:14014019,10510515,0 -(1,19219:12599879,22757285:14014019,10510515,0 -(1,19219:12599879,22757285:0,10510515,0 -(1,19219:12599879,22757285:0,14208860,0 -(1,19219:12599879,22757285:18945146,14208860,0 -) -k1,19219:12599879,22757285:-18945146 -) -) -g1,19219:26613898,22757285 -) -) -) -g1,19220:26613923,22757285 -k1,19220:32583029,22757285:5969106 -) -(1,19227:6630773,23598773:25952256,505283,134348 -h1,19226:6630773,23598773:983040,0,0 -k1,19226:8587797,23598773:156095 -k1,19226:10137842,23598773:156094 -k1,19226:11995907,23598773:156095 -k1,19226:15742719,23598773:156095 -k1,19226:17407453,23598773:156095 -k1,19226:21204072,23598773:156094 -k1,19226:23193864,23598773:156095 -k1,19226:24816655,23598773:156095 -k1,19226:25991835,23598773:156095 -k1,19226:27868904,23598773:156094 -k1,19226:31089463,23598773:156095 -k1,19226:32583029,23598773:0 -) -(1,19227:6630773,24440261:25952256,513147,126483 -g1,19226:7516164,24440261 -g1,19226:9505181,24440261 -g1,19226:10895855,24440261 -g1,19226:13127355,24440261 -g1,19226:15723891,24440261 -g1,19226:16574548,24440261 -g1,19226:18470504,24440261 -g1,19226:20386121,24440261 -g1,19226:21244642,24440261 -g1,19226:23308370,24440261 -k1,19227:32583029,24440261:4436136 -g1,19227:32583029,24440261 -) -(1,19229:6630773,25281749:25952256,513147,126483 -h1,19228:6630773,25281749:983040,0,0 -k1,19228:9730844,25281749:300373 -k1,19228:11747605,25281749:300373 -k1,19228:12707270,25281749:300373 -k1,19228:15633015,25281749:300373 -k1,19228:18155059,25281749:300373 -k1,19228:19106861,25281749:300374 -k1,19228:21181294,25281749:300373 -k1,19228:23089265,25281749:300373 -k1,19228:24381198,25281749:300373 -k1,19228:27893491,25281749:300373 -k1,19228:29801462,25281749:300373 -k1,19228:31293280,25281749:300373 -k1,19229:32583029,25281749:0 -) -(1,19229:6630773,26123237:25952256,513147,134348 -k1,19228:8572605,26123237:160563 -k1,19228:9924613,26123237:160563 -k1,19228:11189458,26123237:160563 -k1,19228:12097787,26123237:160563 -k1,19228:15299221,26123237:160563 -k1,19228:16853735,26123237:160563 -k1,19228:20454283,26123237:160563 -k1,19228:22996424,26123237:160563 -k1,19228:23773025,26123237:160563 -k1,19228:26844042,26123237:160563 -k1,19228:31391584,26123237:160563 -k1,19228:32583029,26123237:0 -) -(1,19229:6630773,26964725:25952256,513147,134348 -k1,19228:9751872,26964725:171980 -k1,19228:13894022,26964725:171979 -k1,19228:14553563,26964725:171953 -k1,19228:17343706,26964725:171980 -k1,19228:20177102,26964725:171979 -k1,19228:21008374,26964725:171980 -k1,19228:21536214,26964725:171980 -k1,19228:24918802,26964725:171979 -k1,19228:26368079,26964725:171980 -k1,19228:27071556,26964725:171980 -k1,19228:29319060,26964725:171979 -k1,19228:31533142,26964725:171980 -k1,19228:32583029,26964725:0 -) -(1,19229:6630773,27806213:25952256,513147,134348 -k1,19228:7808001,27806213:158143 -k1,19228:12792216,27806213:158144 -k1,19228:13609651,27806213:158143 -k1,19228:14786879,27806213:158143 -k1,19228:17855477,27806213:158144 -k1,19228:18961271,27806213:158143 -k1,19228:21236882,27806213:158143 -k1,19228:23217581,27806213:158143 -k1,19228:24394810,27806213:158144 -k1,19228:26304730,27806213:158143 -k1,19228:28875909,27806213:158143 -k1,19228:29650091,27806213:158144 -k1,19228:31316873,27806213:158143 -k1,19229:32583029,27806213:0 -k1,19229:32583029,27806213:0 -) -v1,19231:6630773,28996679:0,393216,0 -(1,19236:6630773,29977953:25952256,1374490,196608 -g1,19236:6630773,29977953 -g1,19236:6630773,29977953 -g1,19236:6434165,29977953 -(1,19236:6434165,29977953:0,1374490,196608 -r1,19256:32779637,29977953:26345472,1571098,196608 -k1,19236:6434165,29977953:-26345472 -) -(1,19236:6434165,29977953:26345472,1374490,196608 -[1,19236:6630773,29977953:25952256,1177882,0 -(1,19233:6630773,29204297:25952256,404226,107478 -(1,19232:6630773,29204297:0,0,0 -g1,19232:6630773,29204297 -g1,19232:6630773,29204297 -g1,19232:6303093,29204297 -(1,19232:6303093,29204297:0,0,0 -) -g1,19232:6630773,29204297 -) -k1,19233:6630773,29204297:0 -g1,19233:11689104,29204297 -g1,19233:15166707,29204297 -g1,19233:16431290,29204297 -h1,19233:16747436,29204297:0,0,0 -k1,19233:32583029,29204297:15835593 -g1,19233:32583029,29204297 -) -(1,19234:6630773,29870475:25952256,404226,107478 -h1,19234:6630773,29870475:0,0,0 -g1,19234:6946919,29870475 -g1,19234:7263065,29870475 -k1,19234:7263065,29870475:0 -h1,19234:12953687,29870475:0,0,0 -k1,19234:32583029,29870475:19629342 -g1,19234:32583029,29870475 -) -] -) -g1,19236:32583029,29977953 -g1,19236:6630773,29977953 -g1,19236:6630773,29977953 -g1,19236:32583029,29977953 -g1,19236:32583029,29977953 -) -h1,19236:6630773,30174561:0,0,0 -(1,19239:6630773,41274874:25952256,10510489,0 -k1,19239:12599879,41274874:5969106 -h1,19238:12599879,41274874:0,0,0 -(1,19238:12599879,41274874:14014044,10510489,0 -(1,19238:12599879,41274874:14014019,10510515,0 -(1,19238:12599879,41274874:14014019,10510515,0 -(1,19238:12599879,41274874:0,10510515,0 -(1,19238:12599879,41274874:0,14208860,0 -(1,19238:12599879,41274874:18945146,14208860,0 -) -k1,19238:12599879,41274874:-18945146 -) -) -g1,19238:26613898,41274874 -) -) -) -g1,19239:26613923,41274874 -k1,19239:32583029,41274874:5969106 -) -] -(1,19256:32583029,45706769:0,0,0 -g1,19256:32583029,45706769 -) -) -] -(1,19256:6630773,47279633:25952256,0,0 -h1,19256:6630773,47279633:25952256,0,0 -) -] -(1,19256:4262630,4025873:0,0,0 -[1,19256:-473656,4025873:0,0,0 -(1,19256:-473656,-710413:0,0,0 -(1,19256:-473656,-710413:0,0,0 -g1,19256:-473656,-710413 -) -g1,19256:-473656,-710413 -) -] -) -] -!12301 -}342 +g1,19232:6630773,4812305 +g1,19232:6630773,4812305 +g1,19232:9560887,4812305 +k1,19232:31387651,4812305:21826764 +) +) +] +[1,19232:6630773,45706769:25952256,40108032,0 +(1,19232:6630773,45706769:25952256,40108032,0 +(1,19232:6630773,45706769:0,0,0 +g1,19232:6630773,45706769 +) +[1,19232:6630773,45706769:25952256,40108032,0 +(1,19172:6630773,6254097:25952256,513147,134348 +k1,19171:8584643,6254097:218477 +k1,19171:11656558,6254097:218477 +k1,19171:14637377,6254097:218476 +k1,19171:16423475,6254097:218477 +(1,19171:16423475,6254097:0,452978,115847 +r1,19232:21705706,6254097:5282231,568825,115847 +k1,19171:16423475,6254097:-5282231 +) +(1,19171:16423475,6254097:5282231,452978,115847 +k1,19171:16423475,6254097:3277 +h1,19171:21702429,6254097:0,411205,112570 +) +k1,19171:21924183,6254097:218477 +k1,19171:23334105,6254097:218477 +k1,19171:27777687,6254097:218476 +k1,19171:31563944,6254097:218477 +k1,19171:32583029,6254097:0 +) +(1,19172:6630773,7119177:25952256,505283,7863 +k1,19172:32583029,7119177:24389222 +g1,19172:32583029,7119177 +) +(1,19174:6630773,7984257:25952256,513147,134348 +h1,19173:6630773,7984257:983040,0,0 +g1,19173:8630931,7984257 +g1,19173:11046588,7984257 +g1,19173:12114169,7984257 +g1,19173:15045594,7984257 +g1,19173:17756818,7984257 +g1,19173:20584696,7984257 +k1,19174:32583029,7984257:10435299 +g1,19174:32583029,7984257 +) +v1,19176:6630773,8669112:0,393216,0 +(1,19184:6630773,11749215:25952256,3473319,196608 +g1,19184:6630773,11749215 +g1,19184:6630773,11749215 +g1,19184:6434165,11749215 +(1,19184:6434165,11749215:0,3473319,196608 +r1,19232:32779637,11749215:26345472,3669927,196608 +k1,19184:6434165,11749215:-26345472 +) +(1,19184:6434165,11749215:26345472,3473319,196608 +[1,19184:6630773,11749215:25952256,3276711,0 +(1,19178:6630773,8896943:25952256,424439,79822 +(1,19177:6630773,8896943:0,0,0 +g1,19177:6630773,8896943 +g1,19177:6630773,8896943 +g1,19177:6303093,8896943 +(1,19177:6303093,8896943:0,0,0 +) +g1,19177:6630773,8896943 +) +k1,19178:6630773,8896943:0 +h1,19178:11610082,8896943:0,0,0 +k1,19178:32583030,8896943:20972948 +g1,19178:32583030,8896943 +) +(1,19179:6630773,9581798:25952256,424439,106246 +h1,19179:6630773,9581798:0,0,0 +g1,19179:9286405,9581798 +k1,19179:9286405,9581798:0 +h1,19179:9950313,9581798:0,0,0 +k1,19179:32583029,9581798:22632716 +g1,19179:32583029,9581798 +) +(1,19180:6630773,10266653:25952256,431045,86428 +h1,19180:6630773,10266653:0,0,0 +g1,19180:6962727,10266653 +g1,19180:7294681,10266653 +g1,19180:11610082,10266653 +g1,19180:12273990,10266653 +k1,19180:12273990,10266653:0 +h1,19180:15925484,10266653:0,0,0 +k1,19180:32583029,10266653:16657545 +g1,19180:32583029,10266653 +) +(1,19181:6630773,10951508:25952256,424439,106246 +h1,19181:6630773,10951508:0,0,0 +g1,19181:6962727,10951508 +g1,19181:7294681,10951508 +g1,19181:7626635,10951508 +g1,19181:7958589,10951508 +g1,19181:8290543,10951508 +g1,19181:8622497,10951508 +g1,19181:8954451,10951508 +g1,19181:9286405,10951508 +g1,19181:9618359,10951508 +g1,19181:9950313,10951508 +g1,19181:10282267,10951508 +g1,19181:10614221,10951508 +g1,19181:10946175,10951508 +g1,19181:11610083,10951508 +g1,19181:12273991,10951508 +g1,19181:16589393,10951508 +g1,19181:17917209,10951508 +g1,19181:19245025,10951508 +g1,19181:22896519,10951508 +g1,19181:23892381,10951508 +k1,19181:23892381,10951508:0 +h1,19181:25220197,10951508:0,0,0 +k1,19181:32583029,10951508:7362832 +g1,19181:32583029,10951508 +) +(1,19182:6630773,11636363:25952256,431045,112852 +h1,19182:6630773,11636363:0,0,0 +g1,19182:6962727,11636363 +g1,19182:7294681,11636363 +g1,19182:7626635,11636363 +g1,19182:7958589,11636363 +g1,19182:8290543,11636363 +g1,19182:8622497,11636363 +g1,19182:8954451,11636363 +g1,19182:9286405,11636363 +g1,19182:9618359,11636363 +g1,19182:9950313,11636363 +g1,19182:10282267,11636363 +g1,19182:10614221,11636363 +g1,19182:10946175,11636363 +g1,19182:12937899,11636363 +g1,19182:13601807,11636363 +g1,19182:19576979,11636363 +g1,19182:21568703,11636363 +g1,19182:23892381,11636363 +g1,19182:26216059,11636363 +h1,19182:26548013,11636363:0,0,0 +k1,19182:32583029,11636363:6035016 +g1,19182:32583029,11636363 +) +] +) +g1,19184:32583029,11749215 +g1,19184:6630773,11749215 +g1,19184:6630773,11749215 +g1,19184:32583029,11749215 +g1,19184:32583029,11749215 +) +h1,19184:6630773,11945823:0,0,0 +(1,19188:6630773,12810903:25952256,513147,126483 +h1,19187:6630773,12810903:983040,0,0 +k1,19187:8826467,12810903:259105 +k1,19187:10854390,12810903:259106 +k1,19187:12588710,12810903:259105 +k1,19187:14657919,12810903:259105 +k1,19187:15726394,12810903:259105 +k1,19187:17004585,12810903:259106 +k1,19187:19529270,12810903:259105 +k1,19187:22274156,12810903:259105 +k1,19187:23192553,12810903:259105 +k1,19187:24798424,12810903:259106 +k1,19187:29374386,12810903:259105 +k1,19187:32583029,12810903:0 +) +(1,19188:6630773,13675983:25952256,505283,126483 +k1,19187:7607271,13675983:214970 +k1,19187:8841326,13675983:214970 +(1,19187:8841326,13675983:0,452978,115847 +r1,19232:12364998,13675983:3523672,568825,115847 +k1,19187:8841326,13675983:-3523672 +) +(1,19187:8841326,13675983:3523672,452978,115847 +k1,19187:8841326,13675983:3277 +h1,19187:12361721,13675983:0,411205,112570 +) +k1,19187:12579968,13675983:214970 +k1,19187:15491745,13675983:214970 +k1,19187:18550978,13675983:214970 +k1,19187:19634300,13675983:214970 +k1,19187:21247153,13675983:214970 +k1,19187:22396666,13675983:214970 +k1,19187:23069733,13675983:214970 +k1,19187:23936131,13675983:214970 +k1,19187:24948019,13675983:214970 +k1,19187:26556940,13675983:214970 +(1,19187:26556940,13675983:0,452978,115847 +r1,19232:29728901,13675983:3171961,568825,115847 +k1,19187:26556940,13675983:-3171961 +) +(1,19187:26556940,13675983:3171961,452978,115847 +g1,19187:28318776,13675983 +g1,19187:29022200,13675983 +h1,19187:29725624,13675983:0,411205,112570 +) +k1,19187:30117541,13675983:214970 +k1,19187:30802404,13675983:214970 +k1,19187:31548871,13675983:214970 +k1,19188:32583029,13675983:0 +) +(1,19188:6630773,14541063:25952256,505283,126483 +k1,19187:9277407,14541063:258502 +k1,19187:10187338,14541063:258503 +k1,19187:13704945,14541063:258502 +k1,19187:15247953,14541063:258502 +k1,19187:16122494,14541063:258503 +k1,19187:17584237,14541063:258502 +k1,19187:19209820,14541063:258502 +k1,19187:20277693,14541063:258503 +k1,19187:23047535,14541063:258502 +k1,19187:23922075,14541063:258502 +(1,19187:23922075,14541063:0,452978,115847 +r1,19232:25335476,14541063:1413401,568825,115847 +k1,19187:23922075,14541063:-1413401 +) +(1,19187:23922075,14541063:1413401,452978,115847 +k1,19187:23922075,14541063:3277 +h1,19187:25332199,14541063:0,411205,112570 +) +k1,19187:25593979,14541063:258503 +k1,19187:26383978,14541063:258502 +k1,19187:29227875,14541063:258502 +k1,19187:30947176,14541063:258503 +k1,19187:32224763,14541063:258502 +(1,19187:32224763,14541063:0,414482,115847 +r1,19232:32583029,14541063:358266,530329,115847 +k1,19187:32224763,14541063:-358266 +) +(1,19187:32224763,14541063:358266,414482,115847 +k1,19187:32224763,14541063:3277 +h1,19187:32579752,14541063:0,411205,112570 +) +k1,19187:32583029,14541063:0 +) +(1,19188:6630773,15406143:25952256,505283,7863 +k1,19188:32583030,15406143:23025420 +g1,19188:32583030,15406143 +) +v1,19190:6630773,16090998:0,393216,0 +(1,19195:6630773,17116536:25952256,1418754,196608 +g1,19195:6630773,17116536 +g1,19195:6630773,17116536 +g1,19195:6434165,17116536 +(1,19195:6434165,17116536:0,1418754,196608 +r1,19232:32779637,17116536:26345472,1615362,196608 +k1,19195:6434165,17116536:-26345472 +) +(1,19195:6434165,17116536:26345472,1418754,196608 +[1,19195:6630773,17116536:25952256,1222146,0 +(1,19192:6630773,16318829:25952256,424439,112852 +(1,19191:6630773,16318829:0,0,0 +g1,19191:6630773,16318829 +g1,19191:6630773,16318829 +g1,19191:6303093,16318829 +(1,19191:6303093,16318829:0,0,0 +) +g1,19191:6630773,16318829 +) +k1,19192:6630773,16318829:0 +g1,19192:11942036,16318829 +g1,19192:14597668,16318829 +h1,19192:14929622,16318829:0,0,0 +k1,19192:32583030,16318829:17653408 +g1,19192:32583030,16318829 +) +(1,19193:6630773,17003684:25952256,424439,112852 +h1,19193:6630773,17003684:0,0,0 +g1,19193:6962727,17003684 +g1,19193:7294681,17003684 +g1,19193:13933760,17003684 +g1,19193:14597668,17003684 +h1,19193:15593530,17003684:0,0,0 +k1,19193:32583030,17003684:16989500 +g1,19193:32583030,17003684 +) +] +) +g1,19195:32583029,17116536 +g1,19195:6630773,17116536 +g1,19195:6630773,17116536 +g1,19195:32583029,17116536 +g1,19195:32583029,17116536 +) +h1,19195:6630773,17313144:0,0,0 +(1,19198:6630773,26462346:25952256,9083666,0 +k1,19198:10523651,26462346:3892878 +h1,19197:10523651,26462346:0,0,0 +(1,19197:10523651,26462346:18166500,9083666,0 +(1,19197:10523651,26462346:18167376,9083688,0 +(1,19197:10523651,26462346:18167376,9083688,0 +(1,19197:10523651,26462346:0,9083688,0 +(1,19197:10523651,26462346:0,14208860,0 +(1,19197:10523651,26462346:28417720,14208860,0 +) +k1,19197:10523651,26462346:-28417720 +) +) +g1,19197:28691027,26462346 +) +) +) +g1,19198:28690151,26462346 +k1,19198:32583029,26462346:3892878 +) +(1,19205:6630773,27327426:25952256,513147,134348 +h1,19204:6630773,27327426:983040,0,0 +k1,19204:8295153,27327426:203583 +k1,19204:9367088,27327426:203583 +k1,19204:11500051,27327426:203583 +k1,19204:12059494,27327426:203583 +k1,19204:15146006,27327426:203583 +k1,19204:16111117,27327426:203583 +k1,19204:19122262,27327426:203583 +k1,19204:19681705,27327426:203583 +k1,19204:21779278,27327426:203583 +k1,19204:22634289,27327426:203583 +k1,19204:23608575,27327426:203583 +k1,19204:27039151,27327426:203583 +k1,19204:30029980,27327426:203583 +k1,19204:31563944,27327426:203583 +k1,19204:32583029,27327426:0 +) +(1,19205:6630773,28192506:25952256,505283,126483 +k1,19204:8235039,28192506:229321 +k1,19204:10814482,28192506:229322 +k1,19204:12035363,28192506:229321 +k1,19204:15646997,28192506:229321 +k1,19204:17270269,28192506:229321 +k1,19204:19824153,28192506:229322 +k1,19204:20704902,28192506:229321 +k1,19204:22385845,28192506:229321 +k1,19204:24317136,28192506:229321 +k1,19204:27319942,28192506:229322 +k1,19204:30295877,28192506:229321 +k1,19204:31478747,28192506:229321 +k1,19204:32583029,28192506:0 +) +(1,19205:6630773,29057586:25952256,505283,126483 +k1,19204:8265620,29057586:200919 +k1,19204:9743837,29057586:200920 +k1,19204:11244335,29057586:200919 +k1,19204:12206782,29057586:200919 +k1,19204:13707281,29057586:200920 +k1,19204:15302151,29057586:200919 +(1,19204:15302151,29057586:0,452978,122846 +r1,19232:21639519,29057586:6337368,575824,122846 +k1,19204:15302151,29057586:-6337368 +) +(1,19204:15302151,29057586:6337368,452978,122846 +g1,19204:18470835,29057586 +g1,19204:19174259,29057586 +h1,19204:21636242,29057586:0,411205,112570 +) +k1,19204:22014108,29057586:200919 +k1,19204:24652312,29057586:200920 +k1,19204:26009941,29057586:200919 +k1,19204:28066184,29057586:200919 +k1,19204:29286189,29057586:200920 +k1,19204:31189078,29057586:200919 +k1,19205:32583029,29057586:0 +) +(1,19205:6630773,29922666:25952256,505283,134348 +(1,19204:6630773,29922666:0,452978,115847 +r1,19232:12968141,29922666:6337368,568825,115847 +k1,19204:6630773,29922666:-6337368 +) +(1,19204:6630773,29922666:6337368,452978,115847 +g1,19204:9799457,29922666 +g1,19204:10502881,29922666 +h1,19204:12964864,29922666:0,411205,112570 +) +k1,19204:13252181,29922666:284040 +k1,19204:14727667,29922666:284041 +k1,19204:18791824,29922666:284040 +k1,19204:20469815,29922666:284040 +(1,19204:20469815,29922666:0,452978,115847 +r1,19232:27862318,29922666:7392503,568825,115847 +k1,19204:20469815,29922666:-7392503 +) +(1,19204:20469815,29922666:7392503,452978,115847 +g1,19204:23638499,29922666 +g1,19204:24341923,29922666 +h1,19204:27859041,29922666:0,411205,112570 +) +k1,19204:28146358,29922666:284040 +k1,19204:29046437,29922666:284041 +k1,19204:31215948,29922666:284040 +k1,19204:32583029,29922666:0 +) +(1,19205:6630773,30787746:25952256,505283,126483 +k1,19204:7703523,30787746:204398 +k1,19204:9438186,30787746:204397 +k1,19204:10294012,30787746:204398 +k1,19204:12214142,30787746:204397 +k1,19204:14057595,30787746:204398 +k1,19204:19704102,30787746:204397 +k1,19204:21302451,30787746:204398 +(1,19204:21302451,30787746:0,452978,115847 +r1,19232:25177835,30787746:3875384,568825,115847 +k1,19204:21302451,30787746:-3875384 +) +(1,19204:21302451,30787746:3875384,452978,115847 +g1,19204:23415999,30787746 +g1,19204:24119423,30787746 +h1,19204:25174558,30787746:0,411205,112570 +) +k1,19204:25382232,30787746:204397 +k1,19204:26311458,30787746:204398 +k1,19204:27800361,30787746:204397 +k1,19204:29384947,30787746:204398 +k1,19204:30355460,30787746:204397 +k1,19204:32583029,30787746:0 +) +(1,19205:6630773,31652826:25952256,505283,7863 +k1,19205:32583029,31652826:23735828 +g1,19205:32583029,31652826 +) +v1,19207:6630773,32337681:0,393216,0 +(1,19212:6630773,33369825:25952256,1425360,196608 +g1,19212:6630773,33369825 +g1,19212:6630773,33369825 +g1,19212:6434165,33369825 +(1,19212:6434165,33369825:0,1425360,196608 +r1,19232:32779637,33369825:26345472,1621968,196608 +k1,19212:6434165,33369825:-26345472 +) +(1,19212:6434165,33369825:26345472,1425360,196608 +[1,19212:6630773,33369825:25952256,1228752,0 +(1,19209:6630773,32572118:25952256,431045,112852 +(1,19208:6630773,32572118:0,0,0 +g1,19208:6630773,32572118 +g1,19208:6630773,32572118 +g1,19208:6303093,32572118 +(1,19208:6303093,32572118:0,0,0 +) +g1,19208:6630773,32572118 +) +k1,19209:6630773,32572118:0 +g1,19209:11942036,32572118 +g1,19209:14265714,32572118 +g1,19209:15925484,32572118 +g1,19209:16589392,32572118 +g1,19209:19245024,32572118 +h1,19209:19576978,32572118:0,0,0 +k1,19209:32583029,32572118:13006051 +g1,19209:32583029,32572118 +) +(1,19210:6630773,33256973:25952256,424439,112852 +h1,19210:6630773,33256973:0,0,0 +g1,19210:6962727,33256973 +g1,19210:7294681,33256973 +g1,19210:13933760,33256973 +g1,19210:14597668,33256973 +g1,19210:15925484,33256973 +g1,19210:18913069,33256973 +g1,19210:19576977,33256973 +h1,19210:22232609,33256973:0,0,0 +k1,19210:32583029,33256973:10350420 +g1,19210:32583029,33256973 +) +] +) +g1,19212:32583029,33369825 +g1,19212:6630773,33369825 +g1,19212:6630773,33369825 +g1,19212:32583029,33369825 +g1,19212:32583029,33369825 +) +h1,19212:6630773,33566433:0,0,0 +(1,19216:6630773,34431513:25952256,505283,134348 +h1,19215:6630773,34431513:983040,0,0 +k1,19215:9074987,34431513:264487 +k1,19215:12548116,34431513:264486 +k1,19215:14823248,34431513:264487 +k1,19215:16079294,34431513:264486 +k1,19215:19483611,34431513:264487 +k1,19215:20364135,34431513:264486 +k1,19215:21647707,34431513:264487 +(1,19215:21647707,34431513:0,452978,115847 +r1,19232:23061108,34431513:1413401,568825,115847 +k1,19215:21647707,34431513:-1413401 +) +(1,19215:21647707,34431513:1413401,452978,115847 +k1,19215:21647707,34431513:3277 +h1,19215:23057831,34431513:0,411205,112570 +) +k1,19215:23325594,34431513:264486 +k1,19215:24874587,34431513:264487 +k1,19215:26158158,34431513:264486 +k1,19215:29430092,34431513:264487 +k1,19215:32583029,34431513:0 +) +(1,19216:6630773,35296593:25952256,513147,126483 +k1,19215:8409181,35296593:210787 +k1,19215:9639054,35296593:210788 +k1,19215:12394604,35296593:210787 +k1,19215:14300807,35296593:210787 +k1,19215:17365033,35296593:210788 +k1,19215:20363722,35296593:210787 +k1,19215:23801503,35296593:210788 +k1,19215:26022935,35296593:210787 +k1,19215:27518228,35296593:210787 +k1,19215:28720576,35296593:210788 +k1,19215:29997634,35296593:210787 +k1,19215:32583029,35296593:0 +) +(1,19216:6630773,36161673:25952256,513147,134348 +k1,19215:7582339,36161673:190038 +k1,19215:10211628,36161673:190039 +k1,19215:12275996,36161673:190038 +k1,19215:13570317,36161673:190039 +k1,19215:14508121,36161673:190038 +k1,19215:17283554,36161673:190038 +k1,19215:18867544,36161673:190039 +(1,19215:18867544,36161673:0,452978,115847 +r1,19232:20632657,36161673:1765113,568825,115847 +k1,19215:18867544,36161673:-1765113 +) +(1,19215:18867544,36161673:1765113,452978,115847 +k1,19215:18867544,36161673:3277 +h1,19215:20629380,36161673:0,411205,112570 +) +k1,19215:20822695,36161673:190038 +k1,19215:21774262,36161673:190039 +k1,19215:24980267,36161673:190038 +k1,19215:26809360,36161673:190038 +k1,19215:27615437,36161673:190039 +k1,19215:28161335,36161673:190038 +k1,19215:29451068,36161673:190039 +k1,19215:30292534,36161673:190038 +(1,19215:30292534,36161673:0,452978,115847 +r1,19232:32409359,36161673:2116825,568825,115847 +k1,19215:30292534,36161673:-2116825 +) +(1,19215:30292534,36161673:2116825,452978,115847 +k1,19215:30292534,36161673:3277 +h1,19215:32406082,36161673:0,411205,112570 +) +k1,19215:32583029,36161673:0 +) +(1,19216:6630773,37026753:25952256,505283,134348 +k1,19215:8491150,37026753:198384 +k1,19215:9708619,37026753:198384 +k1,19215:11295056,37026753:198384 +k1,19215:12991593,37026753:198384 +k1,19215:14058329,37026753:198384 +k1,19215:15360995,37026753:198384 +k1,19215:17170909,37026753:198384 +k1,19215:18653799,37026753:198384 +k1,19215:19468221,37026753:198384 +k1,19215:22332610,37026753:198384 +k1,19215:23182422,37026753:198384 +k1,19215:25525799,37026753:198384 +k1,19215:26340221,37026753:198384 +k1,19215:29049945,37026753:198384 +(1,19215:29049945,37026753:0,414482,115847 +r1,19232:30815058,37026753:1765113,530329,115847 +k1,19215:29049945,37026753:-1765113 +) +(1,19215:29049945,37026753:1765113,414482,115847 +k1,19215:29049945,37026753:3277 +h1,19215:30811781,37026753:0,411205,112570 +) +k1,19215:31187112,37026753:198384 +k1,19216:32583029,37026753:0 +) +(1,19216:6630773,37891833:25952256,505283,126483 +k1,19215:8014638,37891833:234363 +k1,19215:8780497,37891833:234362 +k1,19215:11793587,37891833:234363 +k1,19215:12643987,37891833:234362 +k1,19215:15389690,37891833:234363 +(1,19215:15389690,37891833:0,452978,115847 +r1,19232:17858227,37891833:2468537,568825,115847 +k1,19215:15389690,37891833:-2468537 +) +(1,19215:15389690,37891833:2468537,452978,115847 +k1,19215:15389690,37891833:3277 +h1,19215:17854950,37891833:0,411205,112570 +) +k1,19215:18092590,37891833:234363 +k1,19215:19088480,37891833:234362 +k1,19215:20526084,37891833:234363 +k1,19215:23457253,37891833:234362 +k1,19215:28212290,37891833:234363 +k1,19215:29315004,37891833:234362 +k1,19215:30653649,37891833:234363 +k1,19215:32583029,37891833:0 +) +(1,19216:6630773,38756913:25952256,505283,134348 +k1,19215:7206279,38756913:219646 +k1,19215:10662094,38756913:219647 +k1,19215:12275691,38756913:219646 +k1,19215:13514423,38756913:219647 +k1,19215:15879062,38756913:219646 +k1,19215:17155148,38756913:219646 +k1,19215:18391258,38756913:219647 +k1,19215:21808406,38756913:219646 +k1,19215:22714214,38756913:219646 +k1,19215:25784022,38756913:219647 +k1,19215:28011691,38756913:219646 +k1,19215:30675176,38756913:219647 +k1,19215:31426319,38756913:219646 +k1,19215:32583029,38756913:0 +) +(1,19216:6630773,39621993:25952256,513147,102891 +k1,19215:8987857,39621993:198328 +k1,19215:10628632,39621993:198328 +k1,19215:12335600,39621993:198329 +k1,19215:14072713,39621993:198328 +k1,19215:14957203,39621993:198328 +k1,19215:16174616,39621993:198328 +k1,19215:18187637,39621993:198329 +k1,19215:19045257,39621993:198328 +k1,19215:20262670,39621993:198328 +k1,19215:21807763,39621993:198328 +k1,19215:22537589,39621993:198329 +k1,19215:23351955,39621993:198328 +k1,19215:24753524,39621993:198328 +k1,19215:26318933,39621993:198328 +k1,19215:29279605,39621993:198329 +k1,19215:31045554,39621993:198328 +k1,19215:32583029,39621993:0 +) +(1,19216:6630773,40487073:25952256,513147,7863 +g1,19215:7516164,40487073 +k1,19216:32583029,40487073:22577808 +g1,19216:32583029,40487073 +) +v1,19218:6630773,41171928:0,393216,0 +(1,19223:6630773,42888927:25952256,2110215,196608 +g1,19223:6630773,42888927 +g1,19223:6630773,42888927 +g1,19223:6434165,42888927 +(1,19223:6434165,42888927:0,2110215,196608 +r1,19232:32779637,42888927:26345472,2306823,196608 +k1,19223:6434165,42888927:-26345472 +) +(1,19223:6434165,42888927:26345472,2110215,196608 +[1,19223:6630773,42888927:25952256,1913607,0 +(1,19220:6630773,41406365:25952256,431045,112852 +(1,19219:6630773,41406365:0,0,0 +g1,19219:6630773,41406365 +g1,19219:6630773,41406365 +g1,19219:6303093,41406365 +(1,19219:6303093,41406365:0,0,0 +) +g1,19219:6630773,41406365 +) +k1,19220:6630773,41406365:0 +g1,19220:11942036,41406365 +g1,19220:14265714,41406365 +g1,19220:15925484,41406365 +g1,19220:16589392,41406365 +g1,19220:19245024,41406365 +h1,19220:19576978,41406365:0,0,0 +k1,19220:32583029,41406365:13006051 +g1,19220:32583029,41406365 +) +(1,19221:6630773,42091220:25952256,431045,112852 +h1,19221:6630773,42091220:0,0,0 +k1,19221:7134689,42091220:503916 +k1,19221:7638604,42091220:503915 +k1,19221:15445507,42091220:503916 +k1,19221:16281377,42091220:503916 +k1,19221:18445062,42091220:503915 +k1,19221:19280932,42091220:503916 +k1,19221:26755880,42091220:503916 +k1,19221:28587612,42091220:503916 +k1,19221:29423481,42091220:503915 +k1,19221:30923259,42091220:503916 +k1,19221:32583029,42091220:0 +) +(1,19221:6630773,42776075:25952256,424439,112852 +g1,19221:8290543,42776075 +g1,19221:8954451,42776075 +h1,19221:11610083,42776075:0,0,0 +k1,19221:32583029,42776075:20972946 +g1,19221:32583029,42776075 +) +] +) +g1,19223:32583029,42888927 +g1,19223:6630773,42888927 +g1,19223:6630773,42888927 +g1,19223:32583029,42888927 +g1,19223:32583029,42888927 +) +h1,19223:6630773,43085535:0,0,0 +] +(1,19232:32583029,45706769:0,0,0 +g1,19232:32583029,45706769 +) +) +] +(1,19232:6630773,47279633:25952256,0,0 +h1,19232:6630773,47279633:25952256,0,0 +) +] +(1,19232:4262630,4025873:0,0,0 +[1,19232:-473656,4025873:0,0,0 +(1,19232:-473656,-710413:0,0,0 +(1,19232:-473656,-710413:0,0,0 +g1,19232:-473656,-710413 +) +g1,19232:-473656,-710413 +) +] +) +] +!23795 +}322 +Input:3038:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3039:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3040:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3041:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3042:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3043:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3044:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3045:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3046:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3047:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3048:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!388 -{343 -[1,19300:4262630,47279633:28320399,43253760,0 -(1,19300:4262630,4025873:0,0,0 -[1,19300:-473656,4025873:0,0,0 -(1,19300:-473656,-710413:0,0,0 -(1,19300:-473656,-644877:0,0,0 -k1,19300:-473656,-644877:-65536 +Input:3049:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3050:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3051:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3052:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3053:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3054:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3055:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3056:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3057:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1892 +{323 +[1,19280:4262630,47279633:28320399,43253760,0 +(1,19280:4262630,4025873:0,0,0 +[1,19280:-473656,4025873:0,0,0 +(1,19280:-473656,-710413:0,0,0 +(1,19280:-473656,-644877:0,0,0 +k1,19280:-473656,-644877:-65536 ) -(1,19300:-473656,4736287:0,0,0 -k1,19300:-473656,4736287:5209943 +(1,19280:-473656,4736287:0,0,0 +k1,19280:-473656,4736287:5209943 ) -g1,19300:-473656,-710413 +g1,19280:-473656,-710413 ) ] ) -[1,19300:6630773,47279633:25952256,43253760,0 -[1,19300:6630773,4812305:25952256,786432,0 -(1,19300:6630773,4812305:25952256,513147,126483 -(1,19300:6630773,4812305:25952256,513147,126483 -g1,19300:3078558,4812305 -[1,19300:3078558,4812305:0,0,0 -(1,19300:3078558,2439708:0,1703936,0 -k1,19300:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,19300:2537886,2439708:1179648,16384,0 +[1,19280:6630773,47279633:25952256,43253760,0 +[1,19280:6630773,4812305:25952256,786432,0 +(1,19280:6630773,4812305:25952256,513147,126483 +(1,19280:6630773,4812305:25952256,513147,126483 +g1,19280:3078558,4812305 +[1,19280:3078558,4812305:0,0,0 +(1,19280:3078558,2439708:0,1703936,0 +k1,19280:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,19280:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,19300:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,19280:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,19300:3078558,4812305:0,0,0 -(1,19300:3078558,2439708:0,1703936,0 -g1,19300:29030814,2439708 -g1,19300:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,19300:36151628,1915420:16384,1179648,0 +[1,19280:3078558,4812305:0,0,0 +(1,19280:3078558,2439708:0,1703936,0 +g1,19280:29030814,2439708 +g1,19280:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,19280:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,19300:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,19280:37855564,2439708:1179648,16384,0 ) ) -k1,19300:3078556,2439708:-34777008 +k1,19280:3078556,2439708:-34777008 ) ] -[1,19300:3078558,4812305:0,0,0 -(1,19300:3078558,49800853:0,16384,2228224 -k1,19300:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,19300:2537886,49800853:1179648,16384,0 +[1,19280:3078558,4812305:0,0,0 +(1,19280:3078558,49800853:0,16384,2228224 +k1,19280:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,19280:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,19300:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,19280:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,19300:3078558,4812305:0,0,0 -(1,19300:3078558,49800853:0,16384,2228224 -g1,19300:29030814,49800853 -g1,19300:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,19300:36151628,51504789:16384,1179648,0 +[1,19280:3078558,4812305:0,0,0 +(1,19280:3078558,49800853:0,16384,2228224 +g1,19280:29030814,49800853 +g1,19280:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,19280:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,19300:37855564,49800853:1179648,16384,0 -) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,19280:37855564,49800853:1179648,16384,0 ) -k1,19300:3078556,49800853:-34777008 ) -] -g1,19300:6630773,4812305 -k1,19300:21350816,4812305:13524666 -g1,19300:21999622,4812305 -g1,19300:25611966,4812305 -g1,19300:28956923,4812305 -g1,19300:29772190,4812305 -) -) -] -[1,19300:6630773,45706769:25952256,40108032,0 -(1,19300:6630773,45706769:25952256,40108032,0 -(1,19300:6630773,45706769:0,0,0 -g1,19300:6630773,45706769 -) -[1,19300:6630773,45706769:25952256,40108032,0 -(1,19248:6630773,6254097:25952256,32768,229376 -(1,19248:6630773,6254097:0,32768,229376 -(1,19248:6630773,6254097:5505024,32768,229376 -r1,19300:12135797,6254097:5505024,262144,229376 -) -k1,19248:6630773,6254097:-5505024 -) -(1,19248:6630773,6254097:25952256,32768,0 -r1,19300:32583029,6254097:25952256,32768,0 -) -) -(1,19248:6630773,7858425:25952256,606339,151780 -(1,19248:6630773,7858425:1974731,582746,14155 -g1,19248:6630773,7858425 -g1,19248:8605504,7858425 -) -g1,19248:11801564,7858425 -g1,19248:13606426,7858425 -k1,19248:32583029,7858425:16552033 -g1,19248:32583029,7858425 -) -(1,19256:6630773,9093129:25952256,505283,134348 -k1,19255:9750287,9093129:156631 -k1,19255:10365015,9093129:156631 -k1,19255:11053143,9093129:156631 -k1,19255:12228858,9093129:156630 -k1,19255:14103188,9093129:156631 -k1,19255:14911247,9093129:156631 -k1,19255:17156510,9093129:156631 -k1,19255:18920739,9093129:156631 -k1,19255:19802198,9093129:156631 -k1,19255:21243335,9093129:156631 -k1,19255:22419051,9093129:156631 -k1,19255:26582553,9093129:156631 -k1,19255:29250523,9093129:156630 -k1,19255:29938651,9093129:156631 -k1,19255:30904652,9093129:156631 -k1,19255:32080368,9093129:156631 -$1,19255:32080368,9093129 -$1,19255:32583029,9093129 -k1,19256:32583029,9093129:0 -) -(1,19256:6630773,9934617:25952256,505283,134348 -k1,19255:8247512,9934617:190676 -k1,19255:9507736,9934617:190676 -k1,19255:12283807,9934617:190676 -k1,19255:13125911,9934617:190676 -k1,19255:14335672,9934617:190676 -(1,19255:14335672,9934617:0,414482,115847 -r1,19300:14693938,9934617:358266,530329,115847 -k1,19255:14335672,9934617:-358266 -) -(1,19255:14335672,9934617:358266,414482,115847 -k1,19255:14335672,9934617:3277 -h1,19255:14690661,9934617:0,411205,112570 -) -k1,19255:14884614,9934617:190676 -k1,19255:18093222,9934617:190675 -k1,19255:19938682,9934617:190676 -k1,19255:21120918,9934617:190676 -k1,19255:24468463,9934617:190676 -k1,19255:26578033,9934617:190676 -k1,19255:29807613,9934617:190676 -k1,19255:31017374,9934617:190676 -k1,19255:32583029,9934617:0 -) -(1,19256:6630773,10776105:25952256,513147,138281 -k1,19255:7514731,10776105:224666 -$1,19255:7514731,10776105 -$1,19255:8017392,10776105 -k1,19255:8242057,10776105:224665 -k1,19255:9658168,10776105:224666 -$1,19255:9658168,10776105 -$1,19255:10209981,10776105 -k1,19255:10434646,10776105:224665 -k1,19255:11190809,10776105:224666 -k1,19255:13566366,10776105:224665 -k1,19255:14418867,10776105:224666 -k1,19255:17415050,10776105:224665 -k1,19255:18842957,10776105:224666 -k1,19255:19599119,10776105:224665 -k1,19255:22913808,10776105:224666 -k1,19255:23824635,10776105:224665 -k1,19255:26455783,10776105:224666 -k1,19255:27666109,10776105:224665 -k1,19255:31343212,10776105:224666 -k1,19255:32227169,10776105:224665 -k1,19255:32583029,10776105:0 -) -(1,19256:6630773,11617593:25952256,513147,134348 -k1,19255:8276634,11617593:194894 -k1,19255:9099363,11617593:194894 -k1,19255:10313343,11617593:194895 -k1,19255:12914064,11617593:194894 -k1,19255:15387645,11617593:194894 -k1,19255:15795527,11617593:194890 -k1,19255:19123042,11617593:194894 -k1,19255:20784632,11617593:194894 -k1,19255:22676908,11617593:194894 -k1,19255:24790696,11617593:194894 -k1,19255:26004676,11617593:194895 -k1,19255:28667001,11617593:194894 -k1,19255:29393392,11617593:194894 -k1,19255:32583029,11617593:0 -) -(1,19256:6630773,12459081:25952256,505283,134348 -k1,19255:8094452,12459081:272234 -k1,19255:10285580,12459081:272234 -k1,19255:11015911,12459081:272234 -k1,19255:13910240,12459081:272234 -k1,19255:15563318,12459081:272234 -k1,19255:19904682,12459081:272234 -k1,19255:21893959,12459081:272234 -k1,19255:25673680,12459081:272234 -k1,19255:27092139,12459081:272234 -(1,19255:27092139,12459081:0,452978,122846 -r1,19300:31319235,12459081:4227096,575824,122846 -k1,19255:27092139,12459081:-4227096 -) -(1,19255:27092139,12459081:4227096,452978,122846 -k1,19255:27092139,12459081:3277 -h1,19255:31315958,12459081:0,411205,112570 -) -k1,19255:31591469,12459081:272234 -k1,19255:32583029,12459081:0 -) -(1,19256:6630773,13300569:25952256,513147,126483 -k1,19255:10236161,13300569:246668 -k1,19255:11292199,13300569:246668 -k1,19255:12557953,13300569:246669 -k1,19255:13169002,13300569:246668 -k1,19255:14607115,13300569:246668 -k1,19255:15261417,13300569:246668 -k1,19255:18856319,13300569:246668 -k1,19255:20175156,13300569:246668 -k1,19255:22454096,13300569:246669 -k1,19255:23846989,13300569:246668 -(1,19255:23846989,13300569:0,452978,122846 -r1,19300:27722373,13300569:3875384,575824,122846 -k1,19255:23846989,13300569:-3875384 -) -(1,19255:23846989,13300569:3875384,452978,122846 -k1,19255:23846989,13300569:3277 -h1,19255:27719096,13300569:0,411205,112570 -) -k1,19255:27969041,13300569:246668 -k1,19255:30626779,13300569:246668 -k1,19256:32583029,13300569:0 -) -(1,19256:6630773,14142057:25952256,513147,126483 -g1,19255:8415318,14142057 -g1,19255:9423917,14142057 -g1,19255:9987527,14142057 -g1,19255:11378201,14142057 -g1,19255:12116791,14142057 -g1,19255:13696864,14142057 -g1,19255:14427590,14142057 -g1,19255:15912635,14142057 -g1,19255:17130949,14142057 -g1,19255:19027560,14142057 -g1,19255:20174440,14142057 -g1,19255:22536357,14142057 -g1,19255:23501702,14142057 -k1,19256:32583029,14142057:6248206 -g1,19256:32583029,14142057 -) -(1,19258:6630773,14983545:25952256,513147,134348 -h1,19257:6630773,14983545:983040,0,0 -k1,19257:10775269,14983545:332923 -k1,19257:13441929,14983545:332923 -k1,19257:15491239,14983545:332922 -k1,19257:18680876,14983545:332923 -k1,19257:21481230,14983545:332923 -k1,19257:22430191,14983545:332923 -k1,19257:24364813,14983545:332922 -k1,19257:28205223,14983545:332923 -k1,19257:29729591,14983545:332923 -k1,19257:32583029,14983545:0 -) -(1,19258:6630773,15825033:25952256,513147,134348 -k1,19257:8859753,15825033:310086 -k1,19257:9627936,15825033:310086 -k1,19257:10469519,15825033:310086 -k1,19257:14566275,15825033:310086 -k1,19257:16611754,15825033:310086 -k1,19257:17277700,15825033:310086 -k1,19257:18870981,15825033:310086 -k1,19257:21438782,15825033:310086 -k1,19257:23129712,15825033:310086 -k1,19257:24722993,15825033:310086 -k1,19257:28017589,15825033:310086 -k1,19257:28859172,15825033:310086 -k1,19257:31931601,15825033:310086 -k1,19257:32583029,15825033:0 -) -(1,19258:6630773,16666521:25952256,513147,134348 -k1,19257:7941384,16666521:291526 -k1,19257:9289350,16666521:291526 -k1,19257:10240168,16666521:291526 -k1,19257:11550779,16666521:291526 -k1,19257:15250177,16666521:291526 -k1,19257:17961292,16666521:291526 -k1,19257:19444262,16666521:291525 -k1,19257:21937798,16666521:291526 -k1,19257:22880752,16666521:291526 -k1,19257:24456784,16666521:291526 -k1,19257:28949823,16666521:291526 -k1,19257:30002877,16666521:291526 -k1,19257:32583029,16666521:0 -) -(1,19258:6630773,17508009:25952256,513147,134348 -k1,19257:10371436,17508009:355730 -k1,19257:13661867,17508009:355729 -k1,19257:16344780,17508009:355730 -k1,19257:17359801,17508009:355729 -k1,19257:20319276,17508009:355730 -k1,19257:21958201,17508009:355730 -k1,19257:25630052,17508009:355729 -k1,19257:27543573,17508009:355730 -k1,19257:30925099,17508009:355729 -k1,19257:31966991,17508009:355730 -k1,19257:32583029,17508009:0 -) -(1,19258:6630773,18349497:25952256,513147,134348 -k1,19257:10329207,18349497:313501 -k1,19257:11973088,18349497:313500 -k1,19257:13305674,18349497:313501 -k1,19257:17145666,18349497:313500 -k1,19257:18118459,18349497:313501 -k1,19257:20183736,18349497:313500 -k1,19257:22055028,18349497:313501 -k1,19257:25394325,18349497:313500 -k1,19257:27275447,18349497:313501 -k1,19257:30417481,18349497:313501 -k1,19257:31835263,18349497:313500 -k1,19257:32583029,18349497:0 -) -(1,19258:6630773,19190985:25952256,505283,134348 -k1,19257:9595458,19190985:303268 -k1,19257:10660254,19190985:303268 -k1,19257:11982606,19190985:303267 -k1,19257:13840388,19190985:303268 -k1,19257:15524500,19190985:303268 -k1,19257:16928773,19190985:303268 -k1,19257:18975953,19190985:303267 -k1,19257:22490484,19190985:303268 -k1,19257:24766386,19190985:303268 -k1,19257:28404126,19190985:303268 -k1,19257:29898838,19190985:303267 -k1,19257:31221191,19190985:303268 -k1,19258:32583029,19190985:0 -) -(1,19258:6630773,20032473:25952256,513147,134348 -k1,19257:7960677,20032473:339655 -k1,19257:8959624,20032473:339655 -k1,19257:11544542,20032473:339655 -k1,19257:13491795,20032473:339655 -k1,19257:15701848,20032473:339655 -k1,19257:17232949,20032473:339656 -k1,19257:19222801,20032473:339655 -k1,19257:22387713,20032473:339655 -k1,19257:25690251,20032473:339655 -k1,19257:28858439,20032473:339655 -k1,19257:30299099,20032473:339655 -k1,19258:32583029,20032473:0 -) -(1,19258:6630773,20873961:25952256,513147,134348 -(1,19257:6630773,20873961:0,459977,115847 -r1,19300:10857869,20873961:4227096,575824,115847 -k1,19257:6630773,20873961:-4227096 -) -(1,19257:6630773,20873961:4227096,459977,115847 -k1,19257:6630773,20873961:3277 -h1,19257:10854592,20873961:0,411205,112570 -) -k1,19257:11137433,20873961:279564 -k1,19257:12364647,20873961:279563 -k1,19257:13000071,20873961:279564 -k1,19257:14668343,20873961:279564 -k1,19257:16546984,20873961:279563 -k1,19257:18029789,20873961:279564 -k1,19257:20418957,20873961:279564 -k1,19257:21717605,20873961:279563 -k1,19257:23880018,20873961:279564 -k1,19257:25436879,20873961:279564 -k1,19257:27668104,20873961:279563 -k1,19257:29390115,20873961:279564 -k1,19257:32583029,20873961:0 -) -(1,19258:6630773,21715449:25952256,505283,126483 -k1,19258:32583028,21715449:23890492 -g1,19258:32583028,21715449 -) -(1,19260:6630773,22556937:25952256,513147,138281 -h1,19259:6630773,22556937:983040,0,0 -k1,19259:9543983,22556937:146935 -k1,19259:10046778,22556937:146935 -k1,19259:12087704,22556937:146936 -k1,19259:12766136,22556937:146935 -k1,19259:15498466,22556937:146935 -k1,19259:16296829,22556937:146935 -$1,19259:16296829,22556937 -$1,19259:16799490,22556937 -k1,19259:16946425,22556937:146935 -k1,19259:17776246,22556937:146936 -$1,19259:17776246,22556937 -$1,19259:18328059,22556937 -k1,19259:18474994,22556937:146935 -k1,19259:21089360,22556937:146935 -k1,19259:21767792,22556937:146935 -k1,19259:25278035,22556937:146935 -k1,19259:25912507,22556937:146884 -k1,19259:27953432,22556937:146935 -k1,19259:30360048,22556937:146935 -k1,19259:32583029,22556937:0 -) -(1,19260:6630773,23398425:25952256,513147,134348 -k1,19259:8006072,23398425:183854 -k1,19259:11698067,23398425:183853 -k1,19259:12873481,23398425:183854 -k1,19259:16265978,23398425:183854 -k1,19259:17506271,23398425:183853 -k1,19259:19756475,23398425:183854 -k1,19259:21009877,23398425:183854 -k1,19259:22250171,23398425:183854 -k1,19259:23896132,23398425:183853 -k1,19259:24739278,23398425:183854 -k1,19259:25942217,23398425:183854 -k1,19259:28020060,23398425:183853 -k1,19259:31923737,23398425:183854 -k1,19259:32583029,23398425:0 -) -(1,19260:6630773,24239913:25952256,513147,138281 -k1,19259:7878273,24239913:228415 -k1,19259:10000677,24239913:228414 -k1,19259:11967107,24239913:228415 -k1,19259:14780917,24239913:228415 -k1,19259:15660759,24239913:228414 -k1,19259:16908259,24239913:228415 -$1,19259:16908259,24239913 -$1,19259:17410920,24239913 -k1,19259:17639335,24239913:228415 -k1,19259:18550634,24239913:228414 -$1,19259:18550634,24239913 -$1,19259:19102447,24239913 -k1,19259:19330862,24239913:228415 -k1,19259:22577210,24239913:228415 -k1,19259:25488668,24239913:228414 -k1,19259:26908528,24239913:228415 -k1,19259:28714395,24239913:228415 -k1,19259:29758077,24239913:228414 -k1,19259:31052763,24239913:228415 -k1,19259:32583029,24239913:0 -) -(1,19260:6630773,25081401:25952256,505283,134348 -g1,19259:7961809,25081401 -g1,19259:10355183,25081401 -g1,19259:12638457,25081401 -g1,19259:13523848,25081401 -g1,19259:14181174,25081401 -g1,19259:15587576,25081401 -g1,19259:16805890,25081401 -g1,19259:18372200,25081401 -g1,19259:19965380,25081401 -g1,19259:22744761,25081401 -k1,19260:32583029,25081401:6453335 -g1,19260:32583029,25081401 -) -(1,19262:6630773,25922889:25952256,513147,134348 -h1,19261:6630773,25922889:983040,0,0 -k1,19261:9643404,25922889:197204 -k1,19261:10832167,25922889:197203 -k1,19261:12315187,25922889:197204 -k1,19261:14209773,25922889:197204 -k1,19261:15691483,25922889:197204 -k1,19261:18180480,25922889:197203 -k1,19261:19758528,25922889:197204 -k1,19261:24024862,25922889:197204 -k1,19261:25264088,25922889:197204 -k1,19261:28296378,25922889:197203 -k1,19261:30961013,25922889:197204 -k1,19261:32583029,25922889:0 -) -(1,19262:6630773,26764377:25952256,513147,138281 -k1,19261:7589363,26764377:210824 -k1,19261:10957712,26764377:210824 -k1,19261:14101272,26764377:210824 -k1,19261:14778058,26764377:210825 -k1,19261:16455578,26764377:210824 -$1,19261:16455578,26764377 -$1,19261:16958239,26764377 -k1,19261:17169063,26764377:210824 -k1,19261:18571332,26764377:210824 -$1,19261:18571332,26764377 -$1,19261:19123145,26764377 -k1,19261:19333969,26764377:210824 -k1,19261:20536353,26764377:210824 -k1,19261:23332573,26764377:210825 -k1,19261:24194825,26764377:210824 -k1,19261:27976050,26764377:210824 -k1,19261:31202185,26764377:210824 -k1,19261:32583029,26764377:0 -) -(1,19262:6630773,27605865:25952256,513147,138281 -g1,19261:7535169,27605865 -g1,19261:8682049,27605865 -g1,19261:11716365,27605865 -g1,19261:12934679,27605865 -g1,19261:14500989,27605865 -g1,19261:16094169,27605865 -(1,19261:16094169,27605865:0,452978,115847 -r1,19300:20672977,27605865:4578808,568825,115847 -k1,19261:16094169,27605865:-4578808 -) -(1,19261:16094169,27605865:4578808,452978,115847 -k1,19261:16094169,27605865:3277 -h1,19261:20669700,27605865:0,411205,112570 -) -g1,19261:20872206,27605865 -g1,19261:22262880,27605865 -g1,19261:22817969,27605865 -g1,19261:23704671,27605865 -g1,19261:24563192,27605865 -$1,19261:24563192,27605865 -$1,19261:25065853,27605865 -g1,19261:25265082,27605865 -g1,19261:26273681,27605865 -$1,19261:26273681,27605865 -$1,19261:26825494,27605865 -k1,19262:32583029,27605865:5583865 -g1,19262:32583029,27605865 -) -v1,19264:6630773,28971641:0,393216,0 -(1,19300:6630773,43178116:25952256,14599691,0 -g1,19300:6630773,43178116 -g1,19300:6303093,43178116 -r1,19300:6401397,43178116:98304,14599691,0 -g1,19300:6600626,43178116 -g1,19300:6797234,43178116 -[1,19300:6797234,43178116:25785795,14599691,0 -(1,19265:6797234,29333714:25785795,755289,196608 -(1,19264:6797234,29333714:0,755289,196608 -r1,19300:8134168,29333714:1336934,951897,196608 -k1,19264:6797234,29333714:-1336934 -) -(1,19264:6797234,29333714:1336934,755289,196608 -) -k1,19264:8267559,29333714:133391 -k1,19264:8595239,29333714:327680 -k1,19264:9356465,29333714:133391 -k1,19264:11515574,29333714:133391 -k1,19264:14676073,29333714:133391 -k1,19264:17236918,29333714:133391 -k1,19264:20896801,29333714:133391 -k1,19264:21598388,29333714:133390 -k1,19264:22693192,29333714:133391 -k1,19264:24999757,29333714:133391 -k1,19264:25749186,29333714:133391 -k1,19264:28523678,29333714:133391 -k1,19264:29941575,29333714:133391 -k1,19264:30606463,29333714:133391 -k1,19265:32583029,29333714:0 -) -(1,19265:6797234,30175202:25785795,513147,138281 -k1,19264:7968110,30175202:180627 -k1,19264:9167823,30175202:180628 -k1,19264:13150193,30175202:180627 -k1,19264:14844046,30175202:180627 -k1,19264:18063578,30175202:180628 -k1,19264:19263290,30175202:180627 -k1,19264:22581781,30175202:180627 -k1,19264:23421700,30175202:180627 -k1,19264:24621413,30175202:180628 -$1,19264:24621413,30175202 -$1,19264:25124074,30175202 -k1,19264:25304701,30175202:180627 -k1,19264:26676773,30175202:180627 -$1,19264:26676773,30175202 -$1,19264:27228586,30175202 -k1,19264:27409214,30175202:180628 -k1,19264:30938075,30175202:180627 -k1,19264:32583029,30175202:0 -) -(1,19265:6797234,31016690:25785795,513147,138281 -k1,19264:9813310,31016690:262253 -k1,19264:11094648,31016690:262253 -k1,19264:15158645,31016690:262254 -k1,19264:16439983,31016690:262253 -k1,19264:19840100,31016690:262253 -k1,19264:20761645,31016690:262253 -k1,19264:22042983,31016690:262253 -$1,19264:22042983,31016690 -$1,19264:22545644,31016690 -k1,19264:22807897,31016690:262253 -k1,19264:24261596,31016690:262254 -$1,19264:24261596,31016690 -$1,19264:24813409,31016690 -k1,19264:25075662,31016690:262253 -k1,19264:28512479,31016690:262253 -k1,19264:29766292,31016690:262253 -k1,19264:32583029,31016690:0 -) -(1,19265:6797234,31858178:25785795,505283,134348 -g1,19264:8698433,31858178 -g1,19264:11720953,31858178 -k1,19265:32583029,31858178:18612880 -g1,19265:32583029,31858178 -) -(1,19280:6797234,35625047:25785795,2698633,0 -h1,19269:6797234,35625047:0,0,0 -(1,19279:6797234,35625047:25786759,2698633,0 -(1,19279:6797234,35625047:0,2698633,0 -(1,19279:6797234,35625047:0,2673868,0 -(1,19279:6797234,35625047:25550112,2673868,0 -(1,19279:6797234,35625047:25550112,2673868,0 -(1,19279:6797234,35625047:25550112,2673868,0 -g1,19279:9007958,35625047 -(1,19279:9007958,34288113:0,0,0 -(1,19279:9007958,34288113:0,0,0 -g1,19279:9007958,34288113 -(1,19279:9007958,34288113:0,0,0 -(1,19279:9007958,34288113:0,0,0 -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -(1,19279:9007958,34288113:0,0,0 -(1,19279:9007958,34288113:3932160,505283,7863 -(1,19279:9007958,34288113:3932160,505283,7863 -[1,19279:9007958,34288113:3932160,505283,7863 -(1,19279:9007958,34288113:3932160,505283,7863 -k1,19279:10283289,34288113:1275331 -h1,19279:10283289,34288113:0,0,0 -h1,19279:10283289,34288113:0,0,0 -k1,19279:11664788,34288113:0 -k1,19279:12940118,34288113:1275330 -) -] -) -g1,19279:12940118,34288113 -) -) -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -) -) -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -(1,19279:9007958,34288113:0,0,0 -(1,19279:9007958,34288113:0,0,0 -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -(1,19279:9007958,34288113:0,0,0 -(1,19279:9007958,34288113:3932160,473825,7863 -(1,19279:9007958,34288113:3932160,473825,7863 -[1,19279:9007958,34288113:3932160,473825,7863 -(1,19279:9007958,34288113:3932160,473825,7863 -k1,19279:9734752,34288113:726794 -h1,19279:9734752,34288113:0,0,0 -h1,19279:9734752,34288113:0,0,0 -k1,19279:12213324,34288113:0 -k1,19279:12940118,34288113:726794 -) -] -) -g1,19279:12940118,34288113 -) -) -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -) -) -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -(1,19279:9007958,34288113:0,0,0 -(1,19279:9007958,34288113:0,0,0 -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -(1,19279:9007958,34288113:0,0,0 -(1,19279:9007958,34288113:3932160,416809,134348 -(1,19279:9007958,34288113:3932160,416809,134348 -[1,19279:9007958,34288113:3932160,416809,134348 -(1,19279:9007958,34288113:3932160,416809,134348 -k1,19279:9469987,34288113:462029 -h1,19279:9469987,34288113:0,0,0 -h1,19279:9469987,34288113:0,0,0 -k1,19279:12478090,34288113:0 -k1,19279:12940118,34288113:462028 -) -] -) -g1,19279:12940118,34288113 -) -) -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -) -) -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -(1,19279:9007958,34288113:0,0,0 -(1,19279:9007958,34288113:0,0,0 -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -(1,19279:9007958,34288113:0,0,0 -(1,19279:9007958,34288113:3932160,505283,967971 -(1,19279:9007958,34288113:3932160,505283,967971 -[1,19279:9007958,34288113:3932160,505283,967971 -(1,19279:9007958,34288113:3932160,505283,7863 -k1,19279:9542404,34288113:534446 -h1,19279:9542404,34288113:0,0,0 -h1,19279:9542404,34288113:0,0,0 -k1,19279:12405672,34288113:0 -k1,19279:12940118,34288113:534446 -) -(1,19279:9007958,35129601:3932160,505283,126483 -k1,19279:10349152,35129601:1341194 -h1,19279:10349152,35129601:0,0,0 -k1,19279:11598924,35129601:0 -k1,19279:12940118,35129601:1341194 +k1,19280:3078556,49800853:-34777008 ) ] +g1,19280:6630773,4812305 +k1,19280:21350816,4812305:13524666 +g1,19280:21999622,4812305 +g1,19280:25611966,4812305 +g1,19280:28956923,4812305 +g1,19280:29772190,4812305 ) -g1,19279:12940118,34288113 ) +] +[1,19280:6630773,45706769:25952256,40108032,0 +(1,19280:6630773,45706769:25952256,40108032,0 +(1,19280:6630773,45706769:0,0,0 +g1,19280:6630773,45706769 ) -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 +[1,19280:6630773,45706769:25952256,40108032,0 +(1,19226:6630773,14682403:25952256,9083666,0 +k1,19226:10523651,14682403:3892878 +h1,19225:10523651,14682403:0,0,0 +(1,19225:10523651,14682403:18166500,9083666,0 +(1,19225:10523651,14682403:18167376,9083688,0 +(1,19225:10523651,14682403:18167376,9083688,0 +(1,19225:10523651,14682403:0,9083688,0 +(1,19225:10523651,14682403:0,14208860,0 +(1,19225:10523651,14682403:28417720,14208860,0 ) +k1,19225:10523651,14682403:-28417720 ) -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -(1,19279:9007958,34288113:0,0,0 -(1,19279:9007958,34288113:0,0,0 -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -(1,19279:9007958,34288113:0,0,0 -(1,19279:9007958,34288113:2093615,513147,138281 -(1,19279:9007958,34288113:2093615,513147,138281 -$1,19279:9007958,34288113 -g1,19279:9692679,34288113 -g1,19279:10549760,34288113 -$1,19279:11101573,34288113 -) -g1,19279:11101573,34288113 -) -) -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -) -) -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -(1,19279:9007958,34288113:0,0,0 -(1,19279:9007958,34288113:0,0,0 -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -(1,19279:9007958,34288113:0,0,0 -(1,19279:9007958,34288113:2093615,513147,138281 -(1,19279:9007958,34288113:2093615,513147,138281 -$1,19279:9007958,34288113 -g1,19279:9741831,34288113 -g1,19279:10598912,34288113 -$1,19279:11101573,34288113 -) -g1,19279:11101573,34288113 -) -) -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -) -) -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -(1,19279:9007958,34288113:0,0,0 -(1,19279:9007958,34288113:0,0,0 -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -(1,19279:9007958,34288113:0,0,0 -(1,19279:9007958,34288113:0,0,0 -h1,19279:9007958,34288113:0,0,0 -g1,19279:9007958,34288113 -) -) -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -) -) -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -g1,19279:9007958,34288113 -) -g1,19279:9007958,34288113 -) -) -) -) -k1,19279:6797234,35625047:-25550112 -) -) -g1,19279:32583993,35625047 -) -g1,19280:32583993,35625047 -g1,19280:32583993,35625047 -) -(1,19282:6797234,37161217:25785795,513147,134348 -h1,19281:6797234,37161217:983040,0,0 -k1,19281:8671802,37161217:263693 -k1,19281:12616652,37161217:263693 -k1,19281:15307799,37161217:263693 -k1,19281:19097984,37161217:263693 -k1,19281:19929874,37161217:263693 -k1,19281:21154980,37161217:263693 -k1,19281:23591847,37161217:263693 -k1,19281:24471578,37161217:263693 -k1,19281:27202702,37161217:263693 -k1,19281:28125687,37161217:263693 -k1,19281:29408465,37161217:263693 -k1,19281:32583029,37161217:0 -) -(1,19282:6797234,38002705:25785795,513147,134348 -k1,19281:8051676,38002705:182273 -k1,19281:9627899,38002705:182272 -k1,19281:10166032,38002705:182273 -k1,19281:12088285,38002705:182272 -k1,19281:13312580,38002705:182273 -k1,19281:16329939,38002705:182272 -k1,19281:17128250,38002705:182273 -(1,19281:17128250,38002705:0,452978,122846 -r1,19300:21003634,38002705:3875384,575824,122846 -k1,19281:17128250,38002705:-3875384 -) -(1,19281:17128250,38002705:3875384,452978,122846 -k1,19281:17128250,38002705:3277 -h1,19281:21000357,38002705:0,411205,112570 -) -k1,19281:21359576,38002705:182272 -k1,19281:24009280,38002705:182273 -k1,19281:26762529,38002705:182272 -k1,19281:27963887,38002705:182273 -k1,19281:30722379,38002705:182272 -k1,19281:31563944,38002705:182273 -k1,19281:32583029,38002705:0 -) -(1,19282:6797234,38844193:25785795,513147,134348 -k1,19281:8636939,38844193:167226 -k1,19281:11726415,38844193:167226 -k1,19281:15965393,38844193:167226 -k1,19281:17124179,38844193:167226 -k1,19281:19329575,38844193:167226 -k1,19281:21241368,38844193:167225 -k1,19281:22427679,38844193:167226 -$1,19281:22427679,38844193 -$1,19281:22930340,38844193 -k1,19281:23097566,38844193:167226 -k1,19281:24517185,38844193:167226 -k1,19281:25632062,38844193:167226 -k1,19281:28375508,38844193:167226 -k1,19281:29561819,38844193:167226 -k1,19281:32583029,38844193:0 -) -(1,19282:6797234,39685681:25785795,513147,138281 -k1,19281:10550834,39685681:267740 -k1,19281:12631300,39685681:267740 -k1,19281:13376796,39685681:267739 -k1,19281:14512888,39685681:267740 -k1,19281:15837068,39685681:267740 -k1,19281:17308049,39685681:267740 -k1,19281:19307249,39685681:267739 -k1,19281:23646741,39685681:267740 -k1,19281:24906041,39685681:267740 -k1,19281:27211951,39685681:267740 -k1,19281:29224258,39685681:267739 -k1,19281:30511083,39685681:267740 -$1,19281:30511083,39685681 -$1,19281:31062896,39685681 -k1,19281:31330636,39685681:267740 -k1,19281:32583029,39685681:0 -) -(1,19282:6797234,40527169:25785795,513147,134348 -k1,19281:9018487,40527169:178496 -k1,19281:11773203,40527169:178496 -k1,19281:12970785,40527169:178497 -k1,19281:16635141,40527169:178496 -k1,19281:20008517,40527169:178496 -k1,19281:22072484,40527169:178496 -k1,19281:23355262,40527169:178496 -k1,19281:25249491,40527169:178496 -k1,19281:25783848,40527169:178497 -k1,19281:27847815,40527169:178496 -k1,19281:31386342,40527169:178496 -k1,19281:32583029,40527169:0 -) -(1,19282:6797234,41368657:25785795,513147,126483 -k1,19281:9930510,41368657:291635 -k1,19281:12297670,41368657:291635 -k1,19281:13398675,41368657:291635 -k1,19281:15141933,41368657:291636 -k1,19281:16685961,41368657:291635 -k1,19281:19205165,41368657:291635 -k1,19281:20515885,41368657:291635 -k1,19281:22634664,41368657:291635 -k1,19281:23612461,41368657:291635 -k1,19281:25397007,41368657:291636 -k1,19281:26707727,41368657:291635 -k1,19281:29613593,41368657:291635 -k1,19281:30564520,41368657:291635 -k1,19281:32583029,41368657:0 -) -(1,19282:6797234,42210145:25785795,505283,134348 -k1,19281:9000300,42210145:202252 -k1,19281:10596504,42210145:202253 -(1,19281:10596504,42210145:0,452978,122846 -r1,19300:14823600,42210145:4227096,575824,122846 -k1,19281:10596504,42210145:-4227096 -) -(1,19281:10596504,42210145:4227096,452978,122846 -k1,19281:10596504,42210145:3277 -h1,19281:14820323,42210145:0,411205,112570 -) -k1,19281:15199522,42210145:202252 -k1,19281:16029609,42210145:202252 -k1,19281:17435103,42210145:202253 -k1,19281:20298772,42210145:202252 -k1,19281:21876625,42210145:202252 -k1,19281:23251316,42210145:202252 -k1,19281:26474779,42210145:202253 -k1,19281:27668591,42210145:202252 -k1,19281:28889928,42210145:202252 -k1,19281:30745654,42210145:202253 -k1,19281:31563944,42210145:202252 -k1,19281:32583029,42210145:0 -) -(1,19282:6797234,43051633:25785795,513147,126483 -g1,19281:9241726,43051633 -g1,19281:10718252,43051633 -g1,19281:12108926,43051633 -g1,19281:13327240,43051633 -g1,19281:17050995,43051633 -k1,19282:32583029,43051633:14201653 -g1,19282:32583029,43051633 -) -] -g1,19300:32583029,43178116 -) -] -(1,19300:32583029,45706769:0,0,0 -g1,19300:32583029,45706769 -) -) -] -(1,19300:6630773,47279633:25952256,0,0 -h1,19300:6630773,47279633:25952256,0,0 -) -] -(1,19300:4262630,4025873:0,0,0 -[1,19300:-473656,4025873:0,0,0 -(1,19300:-473656,-710413:0,0,0 -(1,19300:-473656,-710413:0,0,0 -g1,19300:-473656,-710413 -) -g1,19300:-473656,-710413 -) -] -) -] -!29414 -}343 -Input:3049:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3050:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3051:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3052:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3053:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3054:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +) +g1,19225:28691027,14682403 +) +) +) +g1,19226:28690151,14682403 +k1,19226:32583029,14682403:3892878 +) +(1,19233:6630773,15547483:25952256,513147,134348 +h1,19232:6630773,15547483:983040,0,0 +k1,19232:8268179,15547483:176609 +k1,19232:8902884,15547483:176608 +k1,19232:10583544,15547483:176609 +k1,19232:11826423,15547483:176608 +k1,19232:12950683,15547483:176609 +k1,19232:14146377,15547483:176609 +k1,19232:16193383,15547483:176608 +k1,19232:17021420,15547483:176609 +k1,19232:20457134,15547483:176609 +k1,19232:22371757,15547483:176608 +k1,19232:23215522,15547483:176609 +(1,19232:23215522,15547483:0,452978,122846 +r1,19280:28849465,15547483:5633943,575824,122846 +k1,19232:23215522,15547483:-5633943 +) +(1,19232:23215522,15547483:5633943,452978,122846 +k1,19232:23215522,15547483:3277 +h1,19232:28846188,15547483:0,411205,112570 +) +k1,19232:29199743,15547483:176608 +k1,19232:31563944,15547483:176609 +k1,19232:32583029,15547483:0 +) +(1,19233:6630773,16412563:25952256,513147,126483 +k1,19232:8707350,16412563:188485 +k1,19232:10289786,16412563:188485 +(1,19232:10289786,16412563:0,452978,115847 +r1,19280:13813458,16412563:3523672,568825,115847 +k1,19232:10289786,16412563:-3523672 +) +(1,19232:10289786,16412563:3523672,452978,115847 +k1,19232:10289786,16412563:3277 +h1,19232:13810181,16412563:0,411205,112570 +) +k1,19232:14001943,16412563:188485 +k1,19232:14873313,16412563:188485 +(1,19232:14873313,16412563:0,452978,115847 +r1,19280:19100409,16412563:4227096,568825,115847 +k1,19232:14873313,16412563:-4227096 +) +(1,19232:14873313,16412563:4227096,452978,115847 +k1,19232:14873313,16412563:3277 +h1,19232:19097132,16412563:0,411205,112570 +) +k1,19232:19288894,16412563:188485 +k1,19232:21433629,16412563:188485 +k1,19232:22369880,16412563:188485 +k1,19232:25824024,16412563:188485 +k1,19232:26698671,16412563:188485 +k1,19232:27345253,16412563:188485 +k1,19232:29579772,16412563:188485 +k1,19232:31298523,16412563:188485 +k1,19232:32583029,16412563:0 +) +(1,19233:6630773,17277643:25952256,505283,126483 +g1,19232:11224191,17277643 +g1,19232:12232790,17277643 +g1,19232:13451104,17277643 +g1,19232:15039696,17277643 +g1,19232:16230485,17277643 +k1,19233:32583029,17277643:13480756 +g1,19233:32583029,17277643 +) +v1,19235:6630773,17962498:0,393216,0 +(1,19240:6630773,18994642:25952256,1425360,196608 +g1,19240:6630773,18994642 +g1,19240:6630773,18994642 +g1,19240:6434165,18994642 +(1,19240:6434165,18994642:0,1425360,196608 +r1,19280:32779637,18994642:26345472,1621968,196608 +k1,19240:6434165,18994642:-26345472 +) +(1,19240:6434165,18994642:26345472,1425360,196608 +[1,19240:6630773,18994642:25952256,1228752,0 +(1,19237:6630773,18196935:25952256,431045,112852 +(1,19236:6630773,18196935:0,0,0 +g1,19236:6630773,18196935 +g1,19236:6630773,18196935 +g1,19236:6303093,18196935 +(1,19236:6303093,18196935:0,0,0 +) +g1,19236:6630773,18196935 +) +k1,19237:6630773,18196935:0 +g1,19237:11942036,18196935 +g1,19237:14265714,18196935 +g1,19237:15925484,18196935 +g1,19237:16589392,18196935 +g1,19237:19245024,18196935 +h1,19237:19576978,18196935:0,0,0 +k1,19237:32583029,18196935:13006051 +g1,19237:32583029,18196935 +) +(1,19238:6630773,18881790:25952256,424439,112852 +h1,19238:6630773,18881790:0,0,0 +g1,19238:6962727,18881790 +g1,19238:7294681,18881790 +g1,19238:11942036,18881790 +g1,19238:12605944,18881790 +g1,19238:13933760,18881790 +g1,19238:16921345,18881790 +g1,19238:17585253,18881790 +h1,19238:20240885,18881790:0,0,0 +k1,19238:32583029,18881790:12342144 +g1,19238:32583029,18881790 +) +] +) +g1,19240:32583029,18994642 +g1,19240:6630773,18994642 +g1,19240:6630773,18994642 +g1,19240:32583029,18994642 +g1,19240:32583029,18994642 +) +h1,19240:6630773,19191250:0,0,0 +(1,19244:6630773,20056330:25952256,513147,134348 +h1,19243:6630773,20056330:983040,0,0 +k1,19243:8986058,20056330:175558 +k1,19243:11566789,20056330:175559 +(1,19243:11566789,20056330:0,452978,115847 +r1,19280:15793885,20056330:4227096,568825,115847 +k1,19243:11566789,20056330:-4227096 +) +(1,19243:11566789,20056330:4227096,452978,115847 +k1,19243:11566789,20056330:3277 +h1,19243:15790608,20056330:0,411205,112570 +) +k1,19243:16143113,20056330:175558 +k1,19243:17510116,20056330:175558 +k1,19243:18474073,20056330:175559 +k1,19243:21621033,20056330:175558 +k1,19243:24804038,20056330:175558 +(1,19243:24804038,20056330:0,452978,122846 +r1,19280:29031134,20056330:4227096,575824,122846 +k1,19243:24804038,20056330:-4227096 +) +(1,19243:24804038,20056330:4227096,452978,122846 +k1,19243:24804038,20056330:3277 +h1,19243:29027857,20056330:0,411205,112570 +) +k1,19243:29380363,20056330:175559 +k1,19243:30317449,20056330:175558 +k1,19243:32583029,20056330:0 +) +(1,19244:6630773,20921410:25952256,513147,134348 +k1,19243:9721760,20921410:303085 +k1,19243:10380706,20921410:303086 +k1,19243:13860321,20921410:303085 +k1,19243:17399574,20921410:303085 +k1,19243:18318698,20921410:303086 +k1,19243:19794222,20921410:303085 +k1,19243:23946236,20921410:303085 +k1,19243:25993890,20921410:303086 +k1,19243:27316060,20921410:303085 +(1,19243:27316060,20921410:0,414482,115847 +r1,19280:27674326,20921410:358266,530329,115847 +k1,19243:27316060,20921410:-358266 +) +(1,19243:27316060,20921410:358266,414482,115847 +k1,19243:27316060,20921410:3277 +h1,19243:27671049,20921410:0,411205,112570 +) +k1,19243:27977411,20921410:303085 +k1,19243:29471942,20921410:303086 +(1,19243:29471942,20921410:0,414482,115847 +r1,19280:29830208,20921410:358266,530329,115847 +k1,19243:29471942,20921410:-358266 +) +(1,19243:29471942,20921410:358266,414482,115847 +k1,19243:29471942,20921410:3277 +h1,19243:29826931,20921410:0,411205,112570 +) +k1,19243:30133293,20921410:303085 +k1,19244:32583029,20921410:0 +) +(1,19244:6630773,21786490:25952256,513147,134348 +k1,19243:7866001,21786490:264640 +k1,19243:9327328,21786490:264640 +k1,19243:12768498,21786490:264640 +k1,19243:13980789,21786490:264640 +k1,19243:15697051,21786490:264640 +k1,19243:19596973,21786490:264640 +k1,19243:20872179,21786490:264641 +k1,19243:21668316,21786490:264640 +k1,19243:24518351,21786490:264640 +k1,19243:26243789,21786490:264640 +k1,19243:26864289,21786490:264640 +(1,19243:26864289,21786490:0,459977,115847 +r1,19280:28277690,21786490:1413401,575824,115847 +k1,19243:26864289,21786490:-1413401 +) +(1,19243:26864289,21786490:1413401,459977,115847 +k1,19243:26864289,21786490:3277 +h1,19243:28274413,21786490:0,411205,112570 +) +k1,19243:28542330,21786490:264640 +k1,19243:30552849,21786490:264640 +k1,19243:31635378,21786490:264640 +k1,19244:32583029,21786490:0 +) +(1,19244:6630773,22651570:25952256,505283,126483 +(1,19243:6630773,22651570:0,452978,115847 +r1,19280:10154445,22651570:3523672,568825,115847 +k1,19243:6630773,22651570:-3523672 +) +(1,19243:6630773,22651570:3523672,452978,115847 +k1,19243:6630773,22651570:3277 +h1,19243:10151168,22651570:0,411205,112570 +) +k1,19243:10510066,22651570:181951 +(1,19243:10510066,22651570:0,452978,115847 +r1,19280:12978603,22651570:2468537,568825,115847 +k1,19243:10510066,22651570:-2468537 +) +(1,19243:10510066,22651570:2468537,452978,115847 +k1,19243:10510066,22651570:3277 +h1,19243:12975326,22651570:0,411205,112570 +) +k1,19243:13160553,22651570:181950 +k1,19243:13874001,22651570:181951 +k1,19243:15341767,22651570:181950 +k1,19243:18732361,22651570:181951 +k1,19243:20105756,22651570:181950 +k1,19243:23071676,22651570:181951 +k1,19243:23905055,22651570:181951 +k1,19243:24834771,22651570:181950 +k1,19243:27602117,22651570:181951 +k1,19243:28470229,22651570:181950 +k1,19243:30727705,22651570:181951 +k1,19243:32583029,22651570:0 +) +(1,19244:6630773,23516650:25952256,513147,126483 +k1,19243:7861974,23516650:283550 +(1,19243:7861974,23516650:0,452978,122846 +r1,19280:12792494,23516650:4930520,575824,122846 +k1,19243:7861974,23516650:-4930520 +) +(1,19243:7861974,23516650:4930520,452978,122846 +k1,19243:7861974,23516650:3277 +h1,19243:12789217,23516650:0,411205,112570 +) +k1,19243:13249713,23516650:283549 +k1,19243:14161098,23516650:283550 +k1,19243:15647889,23516650:283550 +k1,19243:18766526,23516650:283550 +k1,19243:19701503,23516650:283549 +k1,19243:22745429,23516650:283550 +k1,19243:26378524,23516650:283550 +k1,19243:27278111,23516650:283549 +k1,19243:28734100,23516650:283550 +k1,19243:32583029,23516650:0 +) +(1,19244:6630773,24381730:25952256,505283,138281 +k1,19243:8510965,24381730:152663 +$1,19243:8510965,24381730 +$1,19243:9013626,24381730 +k1,19243:9166289,24381730:152663 +k1,19243:10510398,24381730:152664 +$1,19243:10510398,24381730 +$1,19243:11062211,24381730 +k1,19243:11214874,24381730:152663 +k1,19243:13270047,24381730:152663 +k1,19243:14414270,24381730:152663 +k1,19243:16168634,24381730:152664 +k1,19243:19006962,24381730:152663 +k1,19243:21045096,24381730:152663 +k1,19243:22066111,24381730:152663 +k1,19243:24576105,24381730:152664 +k1,19243:25490296,24381730:152663 +k1,19243:27830551,24381730:152663 +(1,19243:27830551,24381730:0,459977,115847 +r1,19280:32409359,24381730:4578808,575824,115847 +k1,19243:27830551,24381730:-4578808 +) +(1,19243:27830551,24381730:4578808,459977,115847 +k1,19243:27830551,24381730:3277 +h1,19243:32406082,24381730:0,411205,112570 +) +k1,19243:32583029,24381730:0 +) +(1,19244:6630773,25246810:25952256,513147,134348 +k1,19243:8673259,25246810:157015 +k1,19243:9361771,25246810:157015 +k1,19243:9874646,25246810:157015 +k1,19243:12857572,25246810:157014 +k1,19243:13673879,25246810:157015 +k1,19243:14849979,25246810:157015 +k1,19243:17272574,25246810:157015 +(1,19243:17272574,25246810:0,452978,115847 +r1,19280:23258229,25246810:5985655,568825,115847 +k1,19243:17272574,25246810:-5985655 +) +(1,19243:17272574,25246810:5985655,452978,115847 +k1,19243:17272574,25246810:3277 +h1,19243:23254952,25246810:0,411205,112570 +) +k1,19243:23415244,25246810:157015 +k1,19243:24804336,25246810:157015 +k1,19243:27240037,25246810:157014 +h1,19243:28609084,25246810:0,0,0 +k1,19243:28766099,25246810:157015 +k1,19243:29732484,25246810:157015 +k1,19243:31387652,25246810:157015 +h1,19243:32583029,25246810:0,0,0 +k1,19243:32583029,25246810:0 +) +(1,19244:6630773,26111890:25952256,513147,126483 +g1,19243:7777653,26111890 +g1,19243:10094350,26111890 +g1,19243:11102949,26111890 +g1,19243:13004148,26111890 +g1,19243:15779597,26111890 +g1,19243:16638118,26111890 +k1,19244:32583029,26111890:11825973 +g1,19244:32583029,26111890 +) +v1,19246:6630773,26796745:0,393216,0 +(1,19252:6630773,28474108:25952256,2070579,196608 +g1,19252:6630773,28474108 +g1,19252:6630773,28474108 +g1,19252:6434165,28474108 +(1,19252:6434165,28474108:0,2070579,196608 +r1,19280:32779637,28474108:26345472,2267187,196608 +k1,19252:6434165,28474108:-26345472 +) +(1,19252:6434165,28474108:26345472,2070579,196608 +[1,19252:6630773,28474108:25952256,1873971,0 +(1,19248:6630773,27024576:25952256,424439,112852 +(1,19247:6630773,27024576:0,0,0 +g1,19247:6630773,27024576 +g1,19247:6630773,27024576 +g1,19247:6303093,27024576 +(1,19247:6303093,27024576:0,0,0 +) +g1,19247:6630773,27024576 +) +k1,19248:6630773,27024576:0 +g1,19248:11942036,27024576 +g1,19248:14265714,27024576 +g1,19248:15593530,27024576 +h1,19248:15925484,27024576:0,0,0 +k1,19248:32583029,27024576:16657545 +g1,19248:32583029,27024576 +) +(1,19249:6630773,27709431:25952256,424439,79822 +h1,19249:6630773,27709431:0,0,0 +g1,19249:6962727,27709431 +g1,19249:7294681,27709431 +g1,19249:12605944,27709431 +g1,19249:13269852,27709431 +g1,19249:14265714,27709431 +h1,19249:14597668,27709431:0,0,0 +k1,19249:32583028,27709431:17985360 +g1,19249:32583028,27709431 +) +(1,19250:6630773,28394286:25952256,431045,79822 +h1,19250:6630773,28394286:0,0,0 +g1,19250:6962727,28394286 +g1,19250:7294681,28394286 +g1,19250:13269852,28394286 +g1,19250:13933760,28394286 +h1,19250:14597668,28394286:0,0,0 +k1,19250:32583028,28394286:17985360 +g1,19250:32583028,28394286 +) +] +) +g1,19252:32583029,28474108 +g1,19252:6630773,28474108 +g1,19252:6630773,28474108 +g1,19252:32583029,28474108 +g1,19252:32583029,28474108 +) +h1,19252:6630773,28670716:0,0,0 +(1,19255:6630773,37819918:25952256,9083666,0 +k1,19255:10523651,37819918:3892878 +h1,19254:10523651,37819918:0,0,0 +(1,19254:10523651,37819918:18166500,9083666,0 +(1,19254:10523651,37819918:18167376,9083688,0 +(1,19254:10523651,37819918:18167376,9083688,0 +(1,19254:10523651,37819918:0,9083688,0 +(1,19254:10523651,37819918:0,14208860,0 +(1,19254:10523651,37819918:28417720,14208860,0 +) +k1,19254:10523651,37819918:-28417720 +) +) +g1,19254:28691027,37819918 +) +) +) +g1,19255:28690151,37819918 +k1,19255:32583029,37819918:3892878 +) +(1,19262:6630773,38684998:25952256,513147,134348 +h1,19261:6630773,38684998:983040,0,0 +k1,19261:9168484,38684998:357984 +k1,19261:11931641,38684998:357985 +(1,19261:11931641,38684998:0,452978,115847 +r1,19280:16862161,38684998:4930520,568825,115847 +k1,19261:11931641,38684998:-4930520 +) +(1,19261:11931641,38684998:4930520,452978,115847 +k1,19261:11931641,38684998:3277 +h1,19261:16858884,38684998:0,411205,112570 +) +k1,19261:17393815,38684998:357984 +k1,19261:18943245,38684998:357985 +k1,19261:20089627,38684998:357984 +k1,19261:23419013,38684998:357984 +k1,19261:26784445,38684998:357985 +(1,19261:26784445,38684998:0,452978,122846 +r1,19280:30308117,38684998:3523672,575824,122846 +k1,19261:26784445,38684998:-3523672 +) +(1,19261:26784445,38684998:3523672,452978,122846 +k1,19261:26784445,38684998:3277 +h1,19261:30304840,38684998:0,411205,112570 +) +k1,19261:30839771,38684998:357984 +k1,19261:32583029,38684998:0 +) +(1,19262:6630773,39550078:25952256,513147,134348 +k1,19261:8587567,39550078:389173 +(1,19261:8587567,39550078:0,452978,115847 +r1,19280:12814663,39550078:4227096,568825,115847 +k1,19261:8587567,39550078:-4227096 +) +(1,19261:8587567,39550078:4227096,452978,115847 +k1,19261:8587567,39550078:3277 +h1,19261:12811386,39550078:0,411205,112570 +) +k1,19261:13203835,39550078:389172 +k1,19261:14209046,39550078:389173 +k1,19261:16106858,39550078:389173 +k1,19261:17588515,39550078:389172 +k1,19261:18636980,39550078:389173 +k1,19261:22253801,39550078:389173 +k1,19261:24970156,39550078:389172 +k1,19261:26018621,39550078:389173 +k1,19261:28548855,39550078:389173 +k1,19261:30452564,39550078:389172 +k1,19261:31601955,39550078:389173 +k1,19262:32583029,39550078:0 +) +(1,19262:6630773,40415158:25952256,513147,134348 +k1,19261:8399538,40415158:271267 +k1,19261:9689890,40415158:271267 +k1,19261:13137687,40415158:271267 +k1,19261:14091840,40415158:271268 +(1,19261:14091840,40415158:0,414482,115847 +r1,19280:15856953,40415158:1765113,530329,115847 +k1,19261:14091840,40415158:-1765113 +) +(1,19261:14091840,40415158:1765113,414482,115847 +k1,19261:14091840,40415158:3277 +h1,19261:15853676,40415158:0,411205,112570 +) +k1,19261:16128220,40415158:271267 +k1,19261:17347138,40415158:271267 +k1,19261:19070027,40415158:271267 +k1,19261:22007954,40415158:271267 +k1,19261:22810718,40415158:271267 +k1,19261:25667381,40415158:271268 +k1,19261:26590076,40415158:271267 +k1,19261:27880428,40415158:271267 +(1,19261:27880428,40415158:0,459977,115847 +r1,19280:29293829,40415158:1413401,575824,115847 +k1,19261:27880428,40415158:-1413401 +) +(1,19261:27880428,40415158:1413401,459977,115847 +k1,19261:27880428,40415158:3277 +h1,19261:29290552,40415158:0,411205,112570 +) +k1,19261:29565096,40415158:271267 +k1,19261:32583029,40415158:0 +) +(1,19262:6630773,41280238:25952256,505283,126483 +k1,19261:8025778,41280238:322836 +k1,19261:10493608,41280238:322837 +k1,19261:14013946,41280238:322836 +k1,19261:15022944,41280238:322836 +(1,19261:15022944,41280238:0,452978,115847 +r1,19280:17491481,41280238:2468537,568825,115847 +k1,19261:15022944,41280238:-2468537 +) +(1,19261:15022944,41280238:2468537,452978,115847 +k1,19261:15022944,41280238:3277 +h1,19261:17488204,41280238:0,411205,112570 +) +k1,19261:17814317,41280238:322836 +k1,19261:19128714,41280238:322837 +k1,19261:20737366,41280238:322836 +k1,19261:24268845,41280238:322836 +k1,19261:25783126,41280238:322836 +k1,19261:27210245,41280238:322837 +k1,19261:28280847,41280238:322836 +k1,19261:31189078,41280238:322836 +k1,19262:32583029,41280238:0 +) +(1,19262:6630773,42145318:25952256,459977,115847 +(1,19261:6630773,42145318:0,459977,115847 +r1,19280:17540395,42145318:10909622,575824,115847 +k1,19261:6630773,42145318:-10909622 +) +(1,19261:6630773,42145318:10909622,459977,115847 +g1,19261:9799457,42145318 +g1,19261:10502881,42145318 +h1,19261:17537118,42145318:0,411205,112570 +) +k1,19262:32583029,42145318:14868964 +g1,19262:32583029,42145318 +) +v1,19264:6630773,42830173:0,393216,0 +(1,19270:6630773,44507536:25952256,2070579,196608 +g1,19270:6630773,44507536 +g1,19270:6630773,44507536 +g1,19270:6434165,44507536 +(1,19270:6434165,44507536:0,2070579,196608 +r1,19280:32779637,44507536:26345472,2267187,196608 +k1,19270:6434165,44507536:-26345472 +) +(1,19270:6434165,44507536:26345472,2070579,196608 +[1,19270:6630773,44507536:25952256,1873971,0 +(1,19266:6630773,43058004:25952256,424439,112852 +(1,19265:6630773,43058004:0,0,0 +g1,19265:6630773,43058004 +g1,19265:6630773,43058004 +g1,19265:6303093,43058004 +(1,19265:6303093,43058004:0,0,0 +) +g1,19265:6630773,43058004 +) +k1,19266:6630773,43058004:0 +g1,19266:11942036,43058004 +g1,19266:14265714,43058004 +g1,19266:15593530,43058004 +h1,19266:15925484,43058004:0,0,0 +k1,19266:32583029,43058004:16657545 +g1,19266:32583029,43058004 +) +(1,19267:6630773,43742859:25952256,424439,79822 +h1,19267:6630773,43742859:0,0,0 +g1,19267:6962727,43742859 +g1,19267:7294681,43742859 +g1,19267:13269852,43742859 +g1,19267:13933760,43742859 +g1,19267:14929622,43742859 +h1,19267:15261576,43742859:0,0,0 +k1,19267:32583028,43742859:17321452 +g1,19267:32583028,43742859 +) +(1,19268:6630773,44427714:25952256,431045,79822 +h1,19268:6630773,44427714:0,0,0 +g1,19268:6962727,44427714 +g1,19268:7294681,44427714 +g1,19268:13269852,44427714 +g1,19268:13933760,44427714 +h1,19268:14597668,44427714:0,0,0 +k1,19268:32583028,44427714:17985360 +g1,19268:32583028,44427714 +) +] +) +g1,19270:32583029,44507536 +g1,19270:6630773,44507536 +g1,19270:6630773,44507536 +g1,19270:32583029,44507536 +g1,19270:32583029,44507536 +) +h1,19270:6630773,44704144:0,0,0 +] +(1,19280:32583029,45706769:0,0,0 +g1,19280:32583029,45706769 +) +) +] +(1,19280:6630773,47279633:25952256,0,0 +h1,19280:6630773,47279633:25952256,0,0 +) +] +(1,19280:4262630,4025873:0,0,0 +[1,19280:-473656,4025873:0,0,0 +(1,19280:-473656,-710413:0,0,0 +(1,19280:-473656,-710413:0,0,0 +g1,19280:-473656,-710413 +) +g1,19280:-473656,-710413 +) +] +) +] +!21437 +}323 +Input:3058:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3059:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3060:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3061:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3062:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3063:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !576 -{344 +{324 [1,19334:4262630,47279633:28320399,43253760,0 (1,19334:4262630,4025873:0,0,0 [1,19334:-473656,4025873:0,0,0 @@ -332028,25 +328619,25 @@ g1,19334:-473656,-710413 ) [1,19334:6630773,47279633:25952256,43253760,0 [1,19334:6630773,4812305:25952256,786432,0 -(1,19334:6630773,4812305:25952256,505283,126483 -(1,19334:6630773,4812305:25952256,505283,126483 +(1,19334:6630773,4812305:25952256,485622,11795 +(1,19334:6630773,4812305:25952256,485622,11795 g1,19334:3078558,4812305 [1,19334:3078558,4812305:0,0,0 (1,19334:3078558,2439708:0,1703936,0 k1,19334:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 r1,19334:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 r1,19334:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) @@ -332057,20 +328648,20 @@ g1,16770:29014430,1915420 (1,19334:3078558,2439708:0,1703936,0 g1,19334:29030814,2439708 g1,19334:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 r1,19334:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 r1,19334:37855564,2439708:1179648,16384,0 ) ) @@ -332080,19 +328671,19 @@ k1,19334:3078556,2439708:-34777008 [1,19334:3078558,4812305:0,0,0 (1,19334:3078558,49800853:0,16384,2228224 k1,19334:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 r1,19334:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 r1,19334:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) @@ -332103,20 +328694,20 @@ g1,16770:29014430,51504789 (1,19334:3078558,49800853:0,16384,2228224 g1,19334:29030814,49800853 g1,19334:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 r1,19334:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 r1,19334:37855564,49800853:1179648,16384,0 ) ) @@ -332125,10 +328716,8 @@ k1,19334:3078556,49800853:-34777008 ] g1,19334:6630773,4812305 g1,19334:6630773,4812305 -g1,19334:9104757,4812305 -g1,19334:10491498,4812305 -g1,19334:12580130,4812305 -k1,19334:31387652,4812305:18807522 +g1,19334:9560887,4812305 +k1,19334:31387651,4812305:21826764 ) ) ] @@ -332138,361 +328727,417 @@ k1,19334:31387652,4812305:18807522 g1,19334:6630773,45706769 ) [1,19334:6630773,45706769:25952256,40108032,0 -v1,19300:6630773,6254097:0,393216,0 -(1,19300:6630773,19797220:25952256,13936339,0 -g1,19300:6630773,19797220 -g1,19300:6303093,19797220 -r1,19334:6401397,19797220:98304,13936339,0 -g1,19300:6600626,19797220 -g1,19300:6797234,19797220 -[1,19300:6797234,19797220:25785795,13936339,0 -v1,19284:6797234,6254097:0,393216,0 -(1,19291:6797234,8567727:25785795,2706846,196608 -g1,19291:6797234,8567727 -g1,19291:6797234,8567727 -g1,19291:6600626,8567727 -(1,19291:6600626,8567727:0,2706846,196608 -r1,19334:32779637,8567727:26179011,2903454,196608 -k1,19291:6600625,8567727:-26179012 -) -(1,19291:6600626,8567727:26179011,2706846,196608 -[1,19291:6797234,8567727:25785795,2510238,0 -(1,19286:6797234,6461715:25785795,404226,107478 -(1,19285:6797234,6461715:0,0,0 -g1,19285:6797234,6461715 -g1,19285:6797234,6461715 -g1,19285:6469554,6461715 -(1,19285:6469554,6461715:0,0,0 -) -g1,19285:6797234,6461715 -) -k1,19286:6797234,6461715:0 -g1,19286:12804003,6461715 -g1,19286:13752441,6461715 -g1,19286:15649316,6461715 -g1,19286:16281608,6461715 -g1,19286:17546191,6461715 -g1,19286:18178483,6461715 -g1,19286:18810775,6461715 -g1,19286:20707649,6461715 -h1,19286:21023795,6461715:0,0,0 -k1,19286:32583029,6461715:11559234 -g1,19286:32583029,6461715 -) -(1,19287:6797234,7127893:25785795,404226,107478 -h1,19287:6797234,7127893:0,0,0 -g1,19287:7113380,7127893 -g1,19287:7429526,7127893 -g1,19287:7745672,7127893 -g1,19287:8061818,7127893 -g1,19287:12171712,7127893 -h1,19287:12487858,7127893:0,0,0 -k1,19287:32583030,7127893:20095172 -g1,19287:32583030,7127893 -) -(1,19288:6797234,7794071:25785795,404226,107478 -h1,19288:6797234,7794071:0,0,0 -g1,19288:7113380,7794071 -g1,19288:7429526,7794071 -g1,19288:7745672,7794071 -g1,19288:8061818,7794071 -g1,19288:13120149,7794071 -g1,19288:13752441,7794071 -g1,19288:15333170,7794071 -h1,19288:15649316,7794071:0,0,0 -k1,19288:32583028,7794071:16933712 -g1,19288:32583028,7794071 -) -(1,19289:6797234,8460249:25785795,404226,107478 -h1,19289:6797234,8460249:0,0,0 -g1,19289:7113380,8460249 -g1,19289:7429526,8460249 -g1,19289:7745672,8460249 -g1,19289:8061818,8460249 -g1,19289:13120149,8460249 -g1,19289:13752441,8460249 -g1,19289:15333170,8460249 -g1,19289:19126918,8460249 -g1,19289:19759210,8460249 -g1,19289:21339939,8460249 -g1,19289:23552959,8460249 -g1,19289:24185251,8460249 -h1,19289:26082125,8460249:0,0,0 -k1,19289:32583029,8460249:6500904 -g1,19289:32583029,8460249 -) -] -) -g1,19291:32583029,8567727 -g1,19291:6797234,8567727 -g1,19291:6797234,8567727 -g1,19291:32583029,8567727 -g1,19291:32583029,8567727 -) -h1,19291:6797234,8764335:0,0,0 -(1,19294:6797234,19797220:25785795,10443061,0 -k1,19294:12728054,19797220:5930820 -h1,19293:12728054,19797220:0,0,0 -(1,19293:12728054,19797220:13924156,10443061,0 -(1,19293:12728054,19797220:13924115,10443087,0 -(1,19293:12728054,19797220:13924115,10443087,0 -(1,19293:12728054,19797220:0,10443087,0 -(1,19293:12728054,19797220:0,14208860,0 -(1,19293:12728054,19797220:18945146,14208860,0 -) -k1,19293:12728054,19797220:-18945146 -) -) -g1,19293:26652169,19797220 -) -) -) -g1,19294:26652210,19797220 -k1,19294:32583029,19797220:5930819 -) -] -g1,19300:32583029,19797220 -) -h1,19300:6630773,19797220:0,0,0 -(1,19303:6630773,21162996:25952256,513147,134348 -h1,19302:6630773,21162996:983040,0,0 -k1,19302:9015163,21162996:204663 -k1,19302:10603947,21162996:204664 -k1,19302:12074766,21162996:204663 -k1,19302:12938721,21162996:204663 -k1,19302:16135104,21162996:204664 -k1,19302:19472388,21162996:204663 -k1,19302:22866688,21162996:204663 -k1,19302:25538783,21162996:204664 -k1,19302:27478839,21162996:204663 -(1,19302:27478839,21162996:0,452978,115847 -r1,19334:32409359,21162996:4930520,568825,115847 -k1,19302:27478839,21162996:-4930520 -) -(1,19302:27478839,21162996:4930520,452978,115847 -k1,19302:27478839,21162996:3277 -h1,19302:32406082,21162996:0,411205,112570 -) -k1,19302:32583029,21162996:0 -) -(1,19303:6630773,22004484:25952256,513147,138281 -k1,19302:8255577,22004484:136481 -k1,19302:9260410,22004484:136481 -k1,19302:10793463,22004484:136481 -k1,19302:11949029,22004484:136481 -k1,19302:13979500,22004484:136481 -(1,19302:13979500,22004484:0,452978,115847 -r1,19334:16448037,22004484:2468537,568825,115847 -k1,19302:13979500,22004484:-2468537 -) -(1,19302:13979500,22004484:2468537,452978,115847 -k1,19302:13979500,22004484:3277 -h1,19302:16444760,22004484:0,411205,112570 -) -k1,19302:16584518,22004484:136481 -k1,19302:18027132,22004484:136481 -k1,19302:18815041,22004484:136481 -$1,19302:18815041,22004484 -$1,19302:19317702,22004484 -k1,19302:19454183,22004484:136481 -k1,19302:20782110,22004484:136482 -k1,19302:22352519,22004484:136481 -k1,19302:23140428,22004484:136481 -$1,19302:23140428,22004484 -$1,19302:23692241,22004484 -k1,19302:24002392,22004484:136481 -k1,19302:24766708,22004484:136481 -k1,19302:26369885,22004484:136481 -k1,19302:28203748,22004484:136481 -k1,19302:31107814,22004484:136481 -k1,19302:32583029,22004484:0 -) -(1,19303:6630773,22845972:25952256,513147,126483 -k1,19302:8336176,22845972:195453 -k1,19302:11740273,22845972:195454 -k1,19302:13127171,22845972:195453 -k1,19302:15624905,22845972:195454 -k1,19302:16768009,22845972:195453 -k1,19302:18415085,22845972:195454 -k1,19302:20072646,22845972:195453 -k1,19302:20927392,22845972:195454 -k1,19302:22141930,22845972:195453 -k1,19302:24405045,22845972:195454 -k1,19302:27478839,22845972:195453 -(1,19302:27478839,22845972:0,452978,115847 -r1,19334:32409359,22845972:4930520,568825,115847 -k1,19302:27478839,22845972:-4930520 -) -(1,19302:27478839,22845972:4930520,452978,115847 -k1,19302:27478839,22845972:3277 -h1,19302:32406082,22845972:0,411205,112570 -) -k1,19303:32583029,22845972:0 -) -(1,19303:6630773,23687460:25952256,505283,126483 -(1,19302:6630773,23687460:0,452978,115847 -r1,19334:11561293,23687460:4930520,568825,115847 -k1,19302:6630773,23687460:-4930520 -) -(1,19302:6630773,23687460:4930520,452978,115847 -k1,19302:6630773,23687460:3277 -h1,19302:11558016,23687460:0,411205,112570 -) -k1,19302:12000434,23687460:265471 -(1,19302:12000434,23687460:0,452978,122846 -r1,19334:17634377,23687460:5633943,575824,122846 -k1,19302:12000434,23687460:-5633943 -) -(1,19302:12000434,23687460:5633943,452978,122846 -k1,19302:12000434,23687460:3277 -h1,19302:17631100,23687460:0,411205,112570 -) -k1,19302:17899847,23687460:265470 -k1,19302:19356763,23687460:265471 -(1,19302:19356763,23687460:0,452978,115847 -r1,19334:24287283,23687460:4930520,568825,115847 -k1,19302:19356763,23687460:-4930520 -) -(1,19302:19356763,23687460:4930520,452978,115847 -k1,19302:19356763,23687460:3277 -h1,19302:24284006,23687460:0,411205,112570 -) -k1,19302:24552753,23687460:265470 -k1,19302:27041205,23687460:265471 -k1,19302:30074916,23687460:265470 -k1,19302:31734338,23687460:265471 -k1,19303:32583029,23687460:0 -) -(1,19303:6630773,24528948:25952256,513147,134348 -g1,19302:8518865,24528948 -g1,19302:9369522,24528948 -k1,19303:32583029,24528948:20572406 -g1,19303:32583029,24528948 -) -v1,19305:6630773,25719414:0,393216,0 -(1,19310:6630773,26694397:25952256,1368199,196608 -g1,19310:6630773,26694397 -g1,19310:6630773,26694397 -g1,19310:6434165,26694397 -(1,19310:6434165,26694397:0,1368199,196608 -r1,19334:32779637,26694397:26345472,1564807,196608 -k1,19310:6434165,26694397:-26345472 -) -(1,19310:6434165,26694397:26345472,1368199,196608 -[1,19310:6630773,26694397:25952256,1171591,0 -(1,19307:6630773,25927032:25952256,404226,107478 -(1,19306:6630773,25927032:0,0,0 -g1,19306:6630773,25927032 -g1,19306:6630773,25927032 -g1,19306:6303093,25927032 -(1,19306:6303093,25927032:0,0,0 -) -g1,19306:6630773,25927032 -) -k1,19307:6630773,25927032:0 -g1,19307:10740667,25927032 -g1,19307:12637542,25927032 -g1,19307:13269834,25927032 -g1,19307:16115146,25927032 -g1,19307:16747438,25927032 -g1,19307:17379730,25927032 -g1,19307:22121916,25927032 -h1,19307:22438062,25927032:0,0,0 -k1,19307:32583029,25927032:10144967 -g1,19307:32583029,25927032 -) -(1,19308:6630773,26593210:25952256,404226,101187 -h1,19308:6630773,26593210:0,0,0 -g1,19308:6946919,26593210 -g1,19308:7263065,26593210 -g1,19308:7579211,26593210 -g1,19308:7895357,26593210 -k1,19308:7895357,26593210:0 -h1,19308:12321396,26593210:0,0,0 -k1,19308:32583028,26593210:20261632 -g1,19308:32583028,26593210 -) -] -) -g1,19310:32583029,26694397 -g1,19310:6630773,26694397 -g1,19310:6630773,26694397 -g1,19310:32583029,26694397 -g1,19310:32583029,26694397 -) -h1,19310:6630773,26891005:0,0,0 -(1,19313:6630773,37991318:25952256,10510489,0 -k1,19313:12599879,37991318:5969106 -h1,19312:12599879,37991318:0,0,0 -(1,19312:12599879,37991318:14014044,10510489,0 -(1,19312:12599879,37991318:14014019,10510515,0 -(1,19312:12599879,37991318:14014019,10510515,0 -(1,19312:12599879,37991318:0,10510515,0 -(1,19312:12599879,37991318:0,14208860,0 -(1,19312:12599879,37991318:18945146,14208860,0 -) -k1,19312:12599879,37991318:-18945146 -) -) -g1,19312:26613898,37991318 -) -) -) -g1,19313:26613923,37991318 -k1,19313:32583029,37991318:5969106 -) -v1,19320:6630773,39181784:0,393216,0 -(1,19325:6630773,40156767:25952256,1368199,196608 -g1,19325:6630773,40156767 -g1,19325:6630773,40156767 -g1,19325:6434165,40156767 -(1,19325:6434165,40156767:0,1368199,196608 -r1,19334:32779637,40156767:26345472,1564807,196608 -k1,19325:6434165,40156767:-26345472 -) -(1,19325:6434165,40156767:26345472,1368199,196608 -[1,19325:6630773,40156767:25952256,1171591,0 -(1,19322:6630773,39389402:25952256,404226,107478 -(1,19321:6630773,39389402:0,0,0 -g1,19321:6630773,39389402 -g1,19321:6630773,39389402 -g1,19321:6303093,39389402 -(1,19321:6303093,39389402:0,0,0 -) -g1,19321:6630773,39389402 -) -k1,19322:6630773,39389402:0 -g1,19322:10740667,39389402 -g1,19322:12637542,39389402 -g1,19322:13269834,39389402 -g1,19322:17695874,39389402 -g1,19322:18328166,39389402 -g1,19322:18960458,39389402 -g1,19322:22121915,39389402 -h1,19322:22438061,39389402:0,0,0 -k1,19322:32583029,39389402:10144968 -g1,19322:32583029,39389402 -) -(1,19323:6630773,40055580:25952256,404226,101187 -h1,19323:6630773,40055580:0,0,0 -g1,19323:6946919,40055580 -g1,19323:7263065,40055580 -g1,19323:7579211,40055580 -g1,19323:7895357,40055580 -k1,19323:7895357,40055580:0 -h1,19323:12321396,40055580:0,0,0 -k1,19323:32583028,40055580:20261632 -g1,19323:32583028,40055580 -) -] -) -g1,19325:32583029,40156767 -g1,19325:6630773,40156767 -g1,19325:6630773,40156767 -g1,19325:32583029,40156767 -g1,19325:32583029,40156767 -) -h1,19325:6630773,40353375:0,0,0 +(1,19273:6630773,14682403:25952256,9083666,0 +k1,19273:10523651,14682403:3892878 +h1,19272:10523651,14682403:0,0,0 +(1,19272:10523651,14682403:18166500,9083666,0 +(1,19272:10523651,14682403:18167376,9083688,0 +(1,19272:10523651,14682403:18167376,9083688,0 +(1,19272:10523651,14682403:0,9083688,0 +(1,19272:10523651,14682403:0,14208860,0 +(1,19272:10523651,14682403:28417720,14208860,0 +) +k1,19272:10523651,14682403:-28417720 +) +) +g1,19272:28691027,14682403 +) +) +) +g1,19273:28690151,14682403 +k1,19273:32583029,14682403:3892878 +) +(1,19280:6630773,16799221:25952256,564462,139132 +(1,19280:6630773,16799221:2450326,534184,12975 +g1,19280:6630773,16799221 +g1,19280:9081099,16799221 +) +g1,19280:12118955,16799221 +k1,19280:32583029,16799221:17022516 +g1,19280:32583029,16799221 +) +(1,19284:6630773,18057517:25952256,513147,134348 +k1,19283:9829764,18057517:202030 +k1,19283:12364219,18057517:202029 +k1,19283:15592046,18057517:202030 +k1,19283:16785636,18057517:202030 +k1,19283:18006750,18057517:202029 +k1,19283:21513761,18057517:202030 +k1,19283:22375082,18057517:202029 +k1,19283:22932972,18057517:202030 +k1,19283:26544840,18057517:202030 +k1,19283:27819038,18057517:202029 +k1,19283:29012628,18057517:202030 +k1,19283:32583029,18057517:0 +) +(1,19284:6630773,18922597:25952256,505283,134348 +k1,19283:8092460,18922597:270242 +k1,19283:9428974,18922597:270243 +k1,19283:12928175,18922597:270242 +k1,19283:14933810,18922597:270242 +k1,19283:16724487,18922597:270242 +k1,19283:18552521,18922597:270243 +k1,19283:19927045,18922597:270242 +k1,19283:20945053,18922597:270242 +k1,19283:24351849,18922597:270243 +k1,19283:25238129,18922597:270242 +k1,19283:25906830,18922597:270242 +k1,19283:26859957,18922597:270242 +k1,19283:27528659,18922597:270243 +k1,19283:31474160,18922597:270242 +k1,19283:32583029,18922597:0 +) +(1,19284:6630773,19787677:25952256,513147,138281 +k1,19283:7583789,19787677:270131 +k1,19283:9136460,19787677:270131 +k1,19283:10354242,19787677:270131 +$1,19283:10354242,19787677 +$1,19283:10856903,19787677 +k1,19283:11127035,19787677:270132 +k1,19283:12080051,19787677:270131 +$1,19283:12080051,19787677 +$1,19283:12582712,19787677 +k1,19283:12852843,19787677:270131 +k1,19283:14314419,19787677:270131 +$1,19283:14314419,19787677 +$1,19283:14866232,19787677 +k1,19283:15310033,19787677:270131 +k1,19283:19550335,19787677:270131 +k1,19283:20638355,19787677:270131 +k1,19283:22302437,19787677:270131 +k1,19283:26139038,19787677:270132 +k1,19283:26867266,19787677:270131 +k1,19283:27668894,19787677:270131 +k1,19283:30568985,19787677:270131 +k1,19283:31490544,19787677:270131 +k1,19283:32583029,19787677:0 +) +(1,19284:6630773,20652757:25952256,513147,134348 +k1,19283:9615618,20652757:222502 +k1,19283:13278105,20652757:222502 +k1,19283:14152035,20652757:222502 +k1,19283:17177512,20652757:222502 +k1,19283:19212740,20652757:222502 +k1,19283:22450553,20652757:222502 +k1,19283:23332347,20652757:222502 +k1,19283:24573934,20652757:222502 +k1,19283:25888921,20652757:222502 +k1,19283:26778579,20652757:222502 +(1,19283:26778579,20652757:0,452978,122846 +r1,19334:31709099,20652757:4930520,575824,122846 +k1,19283:26778579,20652757:-4930520 +) +(1,19283:26778579,20652757:4930520,452978,122846 +k1,19283:26778579,20652757:3277 +h1,19283:31705822,20652757:0,411205,112570 +) +k1,19283:31931601,20652757:222502 +k1,19283:32583029,20652757:0 +) +(1,19284:6630773,21517837:25952256,513147,126483 +g1,19283:8759382,21517837 +g1,19283:9860386,21517837 +g1,19283:12392041,21517837 +g1,19283:14198868,21517837 +k1,19284:32583029,21517837:16225405 +g1,19284:32583029,21517837 +) +v1,19286:6630773,22202692:0,393216,0 +(1,19291:6630773,23228230:25952256,1418754,196608 +g1,19291:6630773,23228230 +g1,19291:6630773,23228230 +g1,19291:6434165,23228230 +(1,19291:6434165,23228230:0,1418754,196608 +r1,19334:32779637,23228230:26345472,1615362,196608 +k1,19291:6434165,23228230:-26345472 +) +(1,19291:6434165,23228230:26345472,1418754,196608 +[1,19291:6630773,23228230:25952256,1222146,0 +(1,19288:6630773,22430523:25952256,424439,112852 +(1,19287:6630773,22430523:0,0,0 +g1,19287:6630773,22430523 +g1,19287:6630773,22430523 +g1,19287:6303093,22430523 +(1,19287:6303093,22430523:0,0,0 +) +g1,19287:6630773,22430523 +) +k1,19288:6630773,22430523:0 +g1,19288:11942036,22430523 +g1,19288:14265714,22430523 +g1,19288:16257438,22430523 +g1,19288:16921346,22430523 +g1,19288:19576978,22430523 +h1,19288:19908932,22430523:0,0,0 +k1,19288:32583029,22430523:12674097 +g1,19288:32583029,22430523 +) +(1,19289:6630773,23115378:25952256,424439,112852 +h1,19289:6630773,23115378:0,0,0 +g1,19289:6962727,23115378 +g1,19289:7294681,23115378 +k1,19289:7294681,23115378:0 +h1,19289:11942036,23115378:0,0,0 +k1,19289:32583028,23115378:20640992 +g1,19289:32583028,23115378 +) +] +) +g1,19291:32583029,23228230 +g1,19291:6630773,23228230 +g1,19291:6630773,23228230 +g1,19291:32583029,23228230 +g1,19291:32583029,23228230 +) +h1,19291:6630773,23424838:0,0,0 +(1,19294:6630773,32574040:25952256,9083666,0 +k1,19294:10523651,32574040:3892878 +h1,19293:10523651,32574040:0,0,0 +(1,19293:10523651,32574040:18166500,9083666,0 +(1,19293:10523651,32574040:18167376,9083688,0 +(1,19293:10523651,32574040:18167376,9083688,0 +(1,19293:10523651,32574040:0,9083688,0 +(1,19293:10523651,32574040:0,14208860,0 +(1,19293:10523651,32574040:28417720,14208860,0 +) +k1,19293:10523651,32574040:-28417720 +) +) +g1,19293:28691027,32574040 +) +) +) +g1,19294:28690151,32574040 +k1,19294:32583029,32574040:3892878 +) +(1,19301:6630773,33439120:25952256,513147,126483 +h1,19300:6630773,33439120:983040,0,0 +g1,19300:8300630,33439120 +g1,19300:13728977,33439120 +g1,19300:14769033,33439120 +g1,19300:16072544,33439120 +g1,19300:17019539,33439120 +g1,19300:18731994,33439120 +g1,19300:21258406,33439120 +g1,19300:22116927,33439120 +g1,19300:25115199,33439120 +k1,19301:32583029,33439120:5795351 +g1,19301:32583029,33439120 +) +v1,19303:6630773,34123975:0,393216,0 +(1,19308:6630773,35156119:25952256,1425360,196608 +g1,19308:6630773,35156119 +g1,19308:6630773,35156119 +g1,19308:6434165,35156119 +(1,19308:6434165,35156119:0,1425360,196608 +r1,19334:32779637,35156119:26345472,1621968,196608 +k1,19308:6434165,35156119:-26345472 +) +(1,19308:6434165,35156119:26345472,1425360,196608 +[1,19308:6630773,35156119:25952256,1228752,0 +(1,19305:6630773,34358412:25952256,431045,112852 +(1,19304:6630773,34358412:0,0,0 +g1,19304:6630773,34358412 +g1,19304:6630773,34358412 +g1,19304:6303093,34358412 +(1,19304:6303093,34358412:0,0,0 +) +g1,19304:6630773,34358412 +) +k1,19305:6630773,34358412:0 +g1,19305:11942036,34358412 +g1,19305:14265714,34358412 +g1,19305:15925484,34358412 +g1,19305:16589392,34358412 +g1,19305:19245024,34358412 +h1,19305:19576978,34358412:0,0,0 +k1,19305:32583029,34358412:13006051 +g1,19305:32583029,34358412 +) +(1,19306:6630773,35043267:25952256,424439,112852 +h1,19306:6630773,35043267:0,0,0 +g1,19306:6962727,35043267 +g1,19306:7294681,35043267 +g1,19306:13601806,35043267 +g1,19306:14265714,35043267 +h1,19306:15593530,35043267:0,0,0 +k1,19306:32583030,35043267:16989500 +g1,19306:32583030,35043267 +) +] +) +g1,19308:32583029,35156119 +g1,19308:6630773,35156119 +g1,19308:6630773,35156119 +g1,19308:32583029,35156119 +g1,19308:32583029,35156119 +) +h1,19308:6630773,35352727:0,0,0 +(1,19316:6630773,36217807:25952256,513147,134348 +h1,19315:6630773,36217807:983040,0,0 +k1,19315:10881593,36217807:252469 +k1,19315:11793354,36217807:252469 +k1,19315:12947544,36217807:252415 +k1,19315:15532439,36217807:252469 +k1,19315:17392506,36217807:252469 +k1,19315:19803731,36217807:252469 +k1,19315:20684035,36217807:252469 +k1,19315:21955589,36217807:252469 +k1,19315:23514191,36217807:252469 +k1,19315:26428077,36217807:252469 +k1,19315:27548898,36217807:252469 +k1,19315:28893852,36217807:252469 +k1,19315:30318760,36217807:252469 +k1,19316:32583029,36217807:0 +) +(1,19316:6630773,37082887:25952256,505283,126483 +k1,19315:8267342,37082887:255725 +k1,19315:10408539,37082887:255726 +k1,19315:12168315,37082887:255725 +k1,19315:14457622,37082887:255725 +k1,19315:17977040,37082887:255725 +(1,19315:17977040,37082887:0,452978,122846 +r1,19334:22204136,37082887:4227096,575824,122846 +k1,19315:17977040,37082887:-4227096 +) +(1,19315:17977040,37082887:4227096,452978,122846 +k1,19315:17977040,37082887:3277 +h1,19315:22200859,37082887:0,411205,112570 +) +k1,19315:22459862,37082887:255726 +k1,19315:23907032,37082887:255725 +(1,19315:23907032,37082887:0,452978,122846 +r1,19334:27430704,37082887:3523672,575824,122846 +k1,19315:23907032,37082887:-3523672 +) +(1,19315:23907032,37082887:3523672,452978,122846 +k1,19315:23907032,37082887:3277 +h1,19315:27427427,37082887:0,411205,112570 +) +k1,19315:27860099,37082887:255725 +k1,19315:28767252,37082887:255725 +k1,19315:30300275,37082887:255726 +k1,19315:31575085,37082887:255725 +k1,19316:32583029,37082887:0 +) +(1,19316:6630773,37947967:25952256,505283,134348 +k1,19315:10118571,37947967:210998 +k1,19315:10945607,37947967:210998 +k1,19315:12175690,37947967:210998 +k1,19315:16350305,37947967:210998 +k1,19315:18040450,37947967:210997 +(1,19315:18040450,37947967:0,452978,115847 +r1,19334:24026105,37947967:5985655,568825,115847 +k1,19315:18040450,37947967:-5985655 +) +(1,19315:18040450,37947967:5985655,452978,115847 +k1,19315:18040450,37947967:3277 +h1,19315:24022828,37947967:0,411205,112570 +) +k1,19315:24237103,37947967:210998 +k1,19315:25316453,37947967:210998 +k1,19315:26724794,37947967:210998 +k1,19315:27291652,37947967:210998 +k1,19315:32583029,37947967:0 +) +(1,19316:6630773,38813047:25952256,505283,134348 +g1,19315:9162428,38813047 +g1,19315:11358539,38813047 +g1,19315:15367376,38813047 +g1,19315:17301998,38813047 +g1,19315:20099730,38813047 +g1,19315:21252508,38813047 +g1,19315:22848309,38813047 +(1,19315:22848309,38813047:0,414482,122846 +r1,19334:24613422,38813047:1765113,537328,122846 +k1,19315:22848309,38813047:-1765113 +) +(1,19315:22848309,38813047:1765113,414482,122846 +k1,19315:22848309,38813047:3277 +h1,19315:24610145,38813047:0,411205,112570 +) +g1,19315:24812651,38813047 +g1,19315:25663308,38813047 +g1,19315:26881622,38813047 +(1,19315:26881622,38813047:0,452978,115847 +r1,19334:28646735,38813047:1765113,568825,115847 +k1,19315:26881622,38813047:-1765113 +) +(1,19315:26881622,38813047:1765113,452978,115847 +k1,19315:26881622,38813047:3277 +h1,19315:28643458,38813047:0,411205,112570 +) +g1,19315:28845964,38813047 +k1,19316:32583029,38813047:810228 +g1,19316:32583029,38813047 +) +v1,19318:6630773,39497902:0,393216,0 +(1,19325:6630773,41886544:25952256,2781858,196608 +g1,19325:6630773,41886544 +g1,19325:6630773,41886544 +g1,19325:6434165,41886544 +(1,19325:6434165,41886544:0,2781858,196608 +r1,19334:32779637,41886544:26345472,2978466,196608 +k1,19325:6434165,41886544:-26345472 +) +(1,19325:6434165,41886544:26345472,2781858,196608 +[1,19325:6630773,41886544:25952256,2585250,0 +(1,19320:6630773,39725733:25952256,424439,112852 +(1,19319:6630773,39725733:0,0,0 +g1,19319:6630773,39725733 +g1,19319:6630773,39725733 +g1,19319:6303093,39725733 +(1,19319:6303093,39725733:0,0,0 +) +g1,19319:6630773,39725733 +) +k1,19320:6630773,39725733:0 +g1,19320:11942036,39725733 +g1,19320:14265714,39725733 +g1,19320:15261576,39725733 +g1,19320:17253300,39725733 +g1,19320:17917208,39725733 +g1,19320:20572840,39725733 +h1,19320:20904794,39725733:0,0,0 +k1,19320:32583029,39725733:11678235 +g1,19320:32583029,39725733 +) +(1,19321:6630773,40410588:25952256,424439,112852 +h1,19321:6630773,40410588:0,0,0 +g1,19321:6962727,40410588 +g1,19321:7294681,40410588 +g1,19321:11610082,40410588 +h1,19321:11942036,40410588:0,0,0 +k1,19321:32583028,40410588:20640992 +g1,19321:32583028,40410588 +) +(1,19322:6630773,41095443:25952256,424439,112852 +h1,19322:6630773,41095443:0,0,0 +g1,19322:6962727,41095443 +g1,19322:7294681,41095443 +g1,19322:10946174,41095443 +h1,19322:11278128,41095443:0,0,0 +k1,19322:32583028,41095443:21304900 +g1,19322:32583028,41095443 +) +(1,19323:6630773,41780298:25952256,424439,106246 +h1,19323:6630773,41780298:0,0,0 +g1,19323:6962727,41780298 +g1,19323:7294681,41780298 +k1,19323:7294681,41780298:0 +h1,19323:12937898,41780298:0,0,0 +k1,19323:32583030,41780298:19645132 +g1,19323:32583030,41780298 +) +] +) +g1,19325:32583029,41886544 +g1,19325:6630773,41886544 +g1,19325:6630773,41886544 +g1,19325:32583029,41886544 +g1,19325:32583029,41886544 +) +h1,19325:6630773,42083152:0,0,0 ] (1,19334:32583029,45706769:0,0,0 g1,19334:32583029,45706769 @@ -332514,13732 +329159,13222 @@ g1,19334:-473656,-710413 ] ) ] -!13630 -}344 -!12 -{345 -[1,19368:4262630,47279633:28320399,43253760,0 -(1,19368:4262630,4025873:0,0,0 -[1,19368:-473656,4025873:0,0,0 -(1,19368:-473656,-710413:0,0,0 -(1,19368:-473656,-644877:0,0,0 -k1,19368:-473656,-644877:-65536 +!15450 +}324 +Input:3064:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3065:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3066:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3067:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3068:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3069:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!576 +{325 +[1,19388:4262630,47279633:28320399,43253760,0 +(1,19388:4262630,4025873:0,0,0 +[1,19388:-473656,4025873:0,0,0 +(1,19388:-473656,-710413:0,0,0 +(1,19388:-473656,-644877:0,0,0 +k1,19388:-473656,-644877:-65536 ) -(1,19368:-473656,4736287:0,0,0 -k1,19368:-473656,4736287:5209943 +(1,19388:-473656,4736287:0,0,0 +k1,19388:-473656,4736287:5209943 ) -g1,19368:-473656,-710413 +g1,19388:-473656,-710413 ) ] ) -[1,19368:6630773,47279633:25952256,43253760,0 -[1,19368:6630773,4812305:25952256,786432,0 -(1,19368:6630773,4812305:25952256,513147,126483 -(1,19368:6630773,4812305:25952256,513147,126483 -g1,19368:3078558,4812305 -[1,19368:3078558,4812305:0,0,0 -(1,19368:3078558,2439708:0,1703936,0 -k1,19368:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,19368:2537886,2439708:1179648,16384,0 +[1,19388:6630773,47279633:25952256,43253760,0 +[1,19388:6630773,4812305:25952256,786432,0 +(1,19388:6630773,4812305:25952256,513147,126483 +(1,19388:6630773,4812305:25952256,513147,126483 +g1,19388:3078558,4812305 +[1,19388:3078558,4812305:0,0,0 +(1,19388:3078558,2439708:0,1703936,0 +k1,19388:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,19388:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,19368:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,19388:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,19368:3078558,4812305:0,0,0 -(1,19368:3078558,2439708:0,1703936,0 -g1,19368:29030814,2439708 -g1,19368:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,19368:36151628,1915420:16384,1179648,0 +[1,19388:3078558,4812305:0,0,0 +(1,19388:3078558,2439708:0,1703936,0 +g1,19388:29030814,2439708 +g1,19388:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,19388:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,19368:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,19388:37855564,2439708:1179648,16384,0 ) ) -k1,19368:3078556,2439708:-34777008 +k1,19388:3078556,2439708:-34777008 ) ] -[1,19368:3078558,4812305:0,0,0 -(1,19368:3078558,49800853:0,16384,2228224 -k1,19368:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,19368:2537886,49800853:1179648,16384,0 +[1,19388:3078558,4812305:0,0,0 +(1,19388:3078558,49800853:0,16384,2228224 +k1,19388:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,19388:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,19368:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,19388:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,19368:3078558,4812305:0,0,0 -(1,19368:3078558,49800853:0,16384,2228224 -g1,19368:29030814,49800853 -g1,19368:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,19368:36151628,51504789:16384,1179648,0 +[1,19388:3078558,4812305:0,0,0 +(1,19388:3078558,49800853:0,16384,2228224 +g1,19388:29030814,49800853 +g1,19388:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,19388:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,19368:37855564,49800853:1179648,16384,0 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,19388:37855564,49800853:1179648,16384,0 ) ) -k1,19368:3078556,49800853:-34777008 +k1,19388:3078556,49800853:-34777008 ) ] -g1,19368:6630773,4812305 -k1,19368:21350816,4812305:13524666 -g1,19368:21999622,4812305 -g1,19368:25611966,4812305 -g1,19368:28956923,4812305 -g1,19368:29772190,4812305 +g1,19388:6630773,4812305 +k1,19388:21350816,4812305:13524666 +g1,19388:21999622,4812305 +g1,19388:25611966,4812305 +g1,19388:28956923,4812305 +g1,19388:29772190,4812305 ) ) ] -[1,19368:6630773,45706769:25952256,40108032,0 -(1,19368:6630773,45706769:25952256,40108032,0 -(1,19368:6630773,45706769:0,0,0 -g1,19368:6630773,45706769 +[1,19388:6630773,45706769:25952256,40108032,0 +(1,19388:6630773,45706769:25952256,40108032,0 +(1,19388:6630773,45706769:0,0,0 +g1,19388:6630773,45706769 ) -[1,19368:6630773,45706769:25952256,40108032,0 -(1,19328:6630773,16109226:25952256,10510489,0 -k1,19328:12599879,16109226:5969106 -h1,19327:12599879,16109226:0,0,0 -(1,19327:12599879,16109226:14014044,10510489,0 -(1,19327:12599879,16109226:14014019,10510515,0 -(1,19327:12599879,16109226:14014019,10510515,0 -(1,19327:12599879,16109226:0,10510515,0 -(1,19327:12599879,16109226:0,14208860,0 -(1,19327:12599879,16109226:18945146,14208860,0 +[1,19388:6630773,45706769:25952256,40108032,0 +(1,19328:6630773,14682403:25952256,9083666,0 +k1,19328:10523651,14682403:3892878 +h1,19327:10523651,14682403:0,0,0 +(1,19327:10523651,14682403:18166500,9083666,0 +(1,19327:10523651,14682403:18167376,9083688,0 +(1,19327:10523651,14682403:18167376,9083688,0 +(1,19327:10523651,14682403:0,9083688,0 +(1,19327:10523651,14682403:0,14208860,0 +(1,19327:10523651,14682403:28417720,14208860,0 ) -k1,19327:12599879,16109226:-18945146 +k1,19327:10523651,14682403:-28417720 ) ) -g1,19327:26613898,16109226 -) -) -) -g1,19328:26613923,16109226 -k1,19328:32583029,16109226:5969106 +g1,19327:28691027,14682403 +) +) +) +g1,19328:28690151,14682403 +k1,19328:32583029,14682403:3892878 +) +(1,19335:6630773,15547483:25952256,505283,126483 +h1,19334:6630773,15547483:983040,0,0 +k1,19334:8464552,15547483:222904 +k1,19334:9890696,15547483:222903 +k1,19334:11654351,15547483:222904 +(1,19334:11654351,15547483:0,452978,122846 +r1,19388:17640006,15547483:5985655,575824,122846 +k1,19334:11654351,15547483:-5985655 +) +(1,19334:11654351,15547483:5985655,452978,122846 +k1,19334:11654351,15547483:3277 +h1,19334:17636729,15547483:0,411205,112570 +) +k1,19334:17862910,15547483:222904 +k1,19334:18617310,15547483:222903 +k1,19334:22318865,15547483:222904 +k1,19334:23733214,15547483:222904 +k1,19334:24824470,15547483:222904 +k1,19334:26151655,15547483:222903 +k1,19334:28672907,15547483:222904 +k1,19334:29353908,15547483:222904 +k1,19334:30192849,15547483:222903 +k1,19334:31434838,15547483:222904 +k1,19334:32583029,15547483:0 +) +(1,19335:6630773,16412563:25952256,505283,7863 +g1,19334:7998509,16412563 +g1,19334:8813776,16412563 +g1,19334:10032090,16412563 +g1,19334:12201987,16412563 +k1,19335:32583030,16412563:18352048 +g1,19335:32583030,16412563 +) +v1,19337:6630773,17097418:0,393216,0 +(1,19341:6630773,17438101:25952256,733899,196608 +g1,19341:6630773,17438101 +g1,19341:6630773,17438101 +g1,19341:6434165,17438101 +(1,19341:6434165,17438101:0,733899,196608 +r1,19388:32779637,17438101:26345472,930507,196608 +k1,19341:6434165,17438101:-26345472 +) +(1,19341:6434165,17438101:26345472,733899,196608 +[1,19341:6630773,17438101:25952256,537291,0 +(1,19339:6630773,17325249:25952256,424439,112852 +(1,19338:6630773,17325249:0,0,0 +g1,19338:6630773,17325249 +g1,19338:6630773,17325249 +g1,19338:6303093,17325249 +(1,19338:6303093,17325249:0,0,0 +) +g1,19338:6630773,17325249 +) +g1,19339:6962727,17325249 +g1,19339:7294681,17325249 +k1,19339:7294681,17325249:0 +h1,19339:12937898,17325249:0,0,0 +k1,19339:32583030,17325249:19645132 +g1,19339:32583030,17325249 +) +] +) +g1,19341:32583029,17438101 +g1,19341:6630773,17438101 +g1,19341:6630773,17438101 +g1,19341:32583029,17438101 +g1,19341:32583029,17438101 +) +h1,19341:6630773,17634709:0,0,0 +(1,19345:6630773,18499789:25952256,505283,134348 +h1,19344:6630773,18499789:983040,0,0 +k1,19344:8435728,18499789:194080 +k1,19344:9648893,18499789:194080 +k1,19344:11227093,18499789:194080 +k1,19344:14082591,18499789:194081 +k1,19344:15145023,18499789:194080 +k1,19344:16616400,18499789:194080 +k1,19344:17829565,18499789:194080 +k1,19344:20246626,18499789:194080 +k1,19344:21056744,18499789:194080 +k1,19344:23953529,18499789:194080 +k1,19344:26395495,18499789:194081 +k1,19344:27781020,18499789:194080 +k1,19344:29067585,18499789:194080 +k1,19344:29617525,18499789:194080 +k1,19345:32583029,18499789:0 +) +(1,19345:6630773,19364869:25952256,505283,134348 +k1,19344:10394403,19364869:246968 +k1,19344:11660457,19364869:246969 +(1,19344:11660457,19364869:0,459977,115847 +r1,19388:13073858,19364869:1413401,575824,115847 +k1,19344:11660457,19364869:-1413401 +) +(1,19344:11660457,19364869:1413401,459977,115847 +k1,19344:11660457,19364869:3277 +h1,19344:13070581,19364869:0,411205,112570 +) +k1,19344:13320826,19364869:246968 +k1,19344:16355041,19364869:246969 +k1,19344:17793454,19364869:246968 +k1,19344:18908774,19364869:246968 +k1,19344:20552315,19364869:246969 +k1,19344:21450711,19364869:246968 +k1,19344:22155776,19364869:246968 +k1,19344:23421830,19364869:246969 +k1,19344:26180138,19364869:246968 +(1,19344:26180138,19364869:0,452978,115847 +r1,19388:27945251,19364869:1765113,568825,115847 +k1,19344:26180138,19364869:-1765113 +) +(1,19344:26180138,19364869:1765113,452978,115847 +k1,19344:26180138,19364869:3277 +h1,19344:27941974,19364869:0,411205,112570 +) +k1,19344:28365890,19364869:246969 +k1,19344:31821501,19364869:246968 +k1,19345:32583029,19364869:0 +) +(1,19345:6630773,20229949:25952256,452978,115847 +(1,19344:6630773,20229949:0,452978,115847 +r1,19388:12616428,20229949:5985655,568825,115847 +k1,19344:6630773,20229949:-5985655 +) +(1,19344:6630773,20229949:5985655,452978,115847 +k1,19344:6630773,20229949:3277 +h1,19344:12613151,20229949:0,411205,112570 +) +k1,19345:32583028,20229949:19966600 +g1,19345:32583028,20229949 +) +v1,19349:6630773,20914804:0,393216,0 +(1,19355:6630773,22625197:25952256,2103609,196608 +g1,19355:6630773,22625197 +g1,19355:6630773,22625197 +g1,19355:6434165,22625197 +(1,19355:6434165,22625197:0,2103609,196608 +r1,19388:32779637,22625197:26345472,2300217,196608 +k1,19355:6434165,22625197:-26345472 +) +(1,19355:6434165,22625197:26345472,2103609,196608 +[1,19355:6630773,22625197:25952256,1907001,0 +(1,19351:6630773,21142635:25952256,424439,112852 +(1,19350:6630773,21142635:0,0,0 +g1,19350:6630773,21142635 +g1,19350:6630773,21142635 +g1,19350:6303093,21142635 +(1,19350:6303093,21142635:0,0,0 +) +g1,19350:6630773,21142635 +) +k1,19351:6630773,21142635:0 +g1,19351:11942036,21142635 +g1,19351:14265714,21142635 +g1,19351:15593530,21142635 +h1,19351:15925484,21142635:0,0,0 +k1,19351:32583029,21142635:16657545 +g1,19351:32583029,21142635 +) +(1,19352:6630773,21827490:25952256,431045,112852 +h1,19352:6630773,21827490:0,0,0 +g1,19352:14929622,21827490 +g1,19352:15593530,21827490 +g1,19352:22232608,21827490 +g1,19352:23892378,21827490 +g1,19352:24556286,21827490 +g1,19352:28207779,21827490 +h1,19352:28539733,21827490:0,0,0 +k1,19352:32583029,21827490:4043296 +g1,19352:32583029,21827490 +) +(1,19353:6630773,22512345:25952256,431045,112852 +h1,19353:6630773,22512345:0,0,0 +g1,19353:6962727,22512345 +g1,19353:7294681,22512345 +k1,19353:7294681,22512345:0 +h1,19353:13269852,22512345:0,0,0 +k1,19353:32583028,22512345:19313176 +g1,19353:32583028,22512345 +) +] +) +g1,19355:32583029,22625197 +g1,19355:6630773,22625197 +g1,19355:6630773,22625197 +g1,19355:32583029,22625197 +g1,19355:32583029,22625197 +) +h1,19355:6630773,22821805:0,0,0 +(1,19358:6630773,31971007:25952256,9083666,0 +k1,19358:10523651,31971007:3892878 +h1,19357:10523651,31971007:0,0,0 +(1,19357:10523651,31971007:18166500,9083666,0 +(1,19357:10523651,31971007:18167376,9083688,0 +(1,19357:10523651,31971007:18167376,9083688,0 +(1,19357:10523651,31971007:0,9083688,0 +(1,19357:10523651,31971007:0,14208860,0 +(1,19357:10523651,31971007:28417720,14208860,0 +) +k1,19357:10523651,31971007:-28417720 +) +) +g1,19357:28691027,31971007 +) +) +) +g1,19358:28690151,31971007 +k1,19358:32583029,31971007:3892878 +) +(1,19367:6630773,34087825:25952256,555811,139132 +(1,19367:6630773,34087825:2450326,534184,12975 +g1,19367:6630773,34087825 +g1,19367:9081099,34087825 +) +g1,19367:10649769,34087825 +g1,19367:12216997,34087825 +g1,19367:15747225,34087825 +k1,19367:32583029,34087825:15028518 +g1,19367:32583029,34087825 +) +(1,19372:6630773,35346121:25952256,513147,134348 +k1,19371:8032286,35346121:242836 +k1,19371:9466567,35346121:242836 +k1,19371:12535315,35346121:242836 +k1,19371:14559420,35346121:242836 +k1,19371:16088072,35346121:242836 +k1,19371:17684882,35346121:242836 +k1,19371:21232698,35346121:242835 +k1,19371:23343310,35346121:242836 +k1,19371:24814946,35346121:242836 +k1,19371:26217769,35346121:242836 +k1,19371:28241874,35346121:242836 +k1,19371:29476270,35346121:242836 +k1,19371:31004922,35346121:242836 +k1,19372:32583029,35346121:0 +) +(1,19372:6630773,36211201:25952256,513147,126483 +k1,19371:9015573,36211201:241773 +k1,19371:10541852,36211201:241773 +k1,19371:12992188,36211201:241773 +k1,19371:14926101,36211201:241773 +k1,19371:15827166,36211201:241773 +k1,19371:17088025,36211201:241774 +k1,19371:20625604,36211201:241773 +k1,19371:21526669,36211201:241773 +k1,19371:22124302,36211201:241773 +k1,19371:26321173,36211201:241773 +k1,19371:28120737,36211201:241773 +k1,19371:29354070,36211201:241773 +k1,19371:32583029,36211201:0 +) +(1,19372:6630773,37076281:25952256,513147,134348 +k1,19371:7974343,37076281:152125 +k1,19371:10428749,37076281:152126 +k1,19371:11342402,37076281:152125 +k1,19371:13562843,37076281:152125 +k1,19371:14382124,37076281:152125 +(1,19371:14382124,37076281:0,452978,115847 +r1,19388:19312644,37076281:4930520,568825,115847 +k1,19371:14382124,37076281:-4930520 +) +(1,19371:14382124,37076281:4930520,452978,115847 +k1,19371:14382124,37076281:3277 +h1,19371:19309367,37076281:0,411205,112570 +) +k1,19371:19464770,37076281:152126 +k1,19371:20299780,37076281:152125 +k1,19371:21240303,37076281:152125 +k1,19371:24363831,37076281:152126 +(1,19371:24363831,37076281:0,452978,122846 +r1,19388:29294351,37076281:4930520,575824,122846 +k1,19371:24363831,37076281:-4930520 +) +(1,19371:24363831,37076281:4930520,452978,122846 +k1,19371:24363831,37076281:3277 +h1,19371:29291074,37076281:0,411205,112570 +) +k1,19371:29620146,37076281:152125 +k1,19371:32583029,37076281:0 +) +(1,19372:6630773,37941361:25952256,513147,134348 +k1,19371:8220395,37941361:209434 +k1,19371:9534111,37941361:209434 +k1,19371:10491311,37941361:209434 +k1,19371:13929705,37941361:209435 +k1,19371:15330584,37941361:209434 +k1,19371:17842298,37941361:209434 +k1,19371:19906401,37941361:209434 +k1,19371:20925205,37941361:209434 +k1,19371:22363439,37941361:209434 +k1,19371:22928733,37941361:209434 +k1,19371:24271286,37941361:209435 +k1,19371:28726142,37941361:209434 +k1,19371:30315764,37941361:209434 +k1,19371:31516758,37941361:209434 +k1,19371:32583029,37941361:0 +) +(1,19372:6630773,38806441:25952256,513147,126483 +g1,19371:8807223,38806441 +g1,19371:11049209,38806441 +g1,19371:12700060,38806441 +g1,19371:14059276,38806441 +g1,19371:15535802,38806441 +g1,19371:16266528,38806441 +g1,19371:18320426,38806441 +g1,19371:19329025,38806441 +g1,19371:21178451,38806441 +g1,19371:22820127,38806441 +g1,19371:23816274,38806441 +g1,19371:24666931,38806441 +g1,19371:25663078,38806441 +k1,19372:32583029,38806441:2674529 +g1,19372:32583029,38806441 +) +v1,19374:6630773,39491296:0,393216,0 +(1,19379:6630773,40510228:25952256,1412148,196608 +g1,19379:6630773,40510228 +g1,19379:6630773,40510228 +g1,19379:6434165,40510228 +(1,19379:6434165,40510228:0,1412148,196608 +r1,19388:32779637,40510228:26345472,1608756,196608 +k1,19379:6434165,40510228:-26345472 +) +(1,19379:6434165,40510228:26345472,1412148,196608 +[1,19379:6630773,40510228:25952256,1215540,0 +(1,19376:6630773,39719127:25952256,424439,112852 +(1,19375:6630773,39719127:0,0,0 +g1,19375:6630773,39719127 +g1,19375:6630773,39719127 +g1,19375:6303093,39719127 +(1,19375:6303093,39719127:0,0,0 +) +g1,19375:6630773,39719127 +) +k1,19376:6630773,39719127:0 +g1,19376:11942036,39719127 +g1,19376:15593530,39719127 +g1,19376:16921346,39719127 +h1,19376:17253300,39719127:0,0,0 +k1,19376:32583029,39719127:15329729 +g1,19376:32583029,39719127 +) +(1,19377:6630773,40403982:25952256,424439,106246 +h1,19377:6630773,40403982:0,0,0 +g1,19377:6962727,40403982 +g1,19377:7294681,40403982 +k1,19377:7294681,40403982:0 +h1,19377:11942036,40403982:0,0,0 +k1,19377:32583028,40403982:20640992 +g1,19377:32583028,40403982 +) +] +) +g1,19379:32583029,40510228 +g1,19379:6630773,40510228 +g1,19379:6630773,40510228 +g1,19379:32583029,40510228 +g1,19379:32583029,40510228 +) +h1,19379:6630773,40706836:0,0,0 +] +(1,19388:32583029,45706769:0,0,0 +g1,19388:32583029,45706769 +) +) +] +(1,19388:6630773,47279633:25952256,0,0 +h1,19388:6630773,47279633:25952256,0,0 +) +] +(1,19388:4262630,4025873:0,0,0 +[1,19388:-473656,4025873:0,0,0 +(1,19388:-473656,-710413:0,0,0 +(1,19388:-473656,-710413:0,0,0 +g1,19388:-473656,-710413 +) +g1,19388:-473656,-710413 +) +] +) +] +!14655 +}325 +Input:3070:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3071:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3072:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3073:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3074:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3075:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3076:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3077:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3078:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3079:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3080:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3081:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3082:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1234 +{326 +[1,19423:4262630,47279633:28320399,43253760,0 +(1,19423:4262630,4025873:0,0,0 +[1,19423:-473656,4025873:0,0,0 +(1,19423:-473656,-710413:0,0,0 +(1,19423:-473656,-644877:0,0,0 +k1,19423:-473656,-644877:-65536 ) -(1,19335:6630773,16950714:25952256,513147,138281 -h1,19334:6630773,16950714:983040,0,0 -g1,19334:9596277,16950714 -g1,19334:10663858,16950714 -g1,19334:12259659,16950714 -g1,19334:12814748,16950714 -g1,19334:15525317,16950714 -g1,19334:16375974,16950714 -g1,19334:17950804,16950714 -g1,19334:19306743,16950714 -g1,19334:20165264,16950714 -$1,19334:20165264,16950714 -$1,19334:20667925,16950714 -g1,19334:20867154,16950714 -g1,19334:21749268,16950714 -$1,19334:21749268,16950714 -$1,19334:22301081,16950714 -g1,19334:22500310,16950714 -g1,19334:23718624,16950714 -g1,19334:24974293,16950714 -g1,19334:25705019,16950714 -g1,19334:27190064,16950714 -k1,19335:32583029,16950714:2029657 -g1,19335:32583029,16950714 -) -v1,19337:6630773,18141180:0,393216,0 -(1,19342:6630773,19116163:25952256,1368199,196608 -g1,19342:6630773,19116163 -g1,19342:6630773,19116163 -g1,19342:6434165,19116163 -(1,19342:6434165,19116163:0,1368199,196608 -r1,19368:32779637,19116163:26345472,1564807,196608 -k1,19342:6434165,19116163:-26345472 -) -(1,19342:6434165,19116163:26345472,1368199,196608 -[1,19342:6630773,19116163:25952256,1171591,0 -(1,19339:6630773,18348798:25952256,404226,107478 -(1,19338:6630773,18348798:0,0,0 -g1,19338:6630773,18348798 -g1,19338:6630773,18348798 -g1,19338:6303093,18348798 -(1,19338:6303093,18348798:0,0,0 -) -g1,19338:6630773,18348798 -) -k1,19339:6630773,18348798:0 -g1,19339:10740667,18348798 -g1,19339:12637542,18348798 -g1,19339:13269834,18348798 -g1,19339:17695874,18348798 -g1,19339:19592748,18348798 -g1,19339:20225040,18348798 -g1,19339:23386497,18348798 -h1,19339:23702643,18348798:0,0,0 -k1,19339:32583029,18348798:8880386 -g1,19339:32583029,18348798 -) -(1,19340:6630773,19014976:25952256,410518,101187 -h1,19340:6630773,19014976:0,0,0 -g1,19340:6946919,19014976 -g1,19340:7263065,19014976 -g1,19340:7579211,19014976 -g1,19340:7895357,19014976 -g1,19340:13585980,19014976 -g1,19340:14218272,19014976 -h1,19340:15166709,19014976:0,0,0 -k1,19340:32583029,19014976:17416320 -g1,19340:32583029,19014976 -) -] -) -g1,19342:32583029,19116163 -g1,19342:6630773,19116163 -g1,19342:6630773,19116163 -g1,19342:32583029,19116163 -g1,19342:32583029,19116163 -) -h1,19342:6630773,19312771:0,0,0 -(1,19345:6630773,30413084:25952256,10510489,0 -k1,19345:12599879,30413084:5969106 -h1,19344:12599879,30413084:0,0,0 -(1,19344:12599879,30413084:14014044,10510489,0 -(1,19344:12599879,30413084:14014019,10510515,0 -(1,19344:12599879,30413084:14014019,10510515,0 -(1,19344:12599879,30413084:0,10510515,0 -(1,19344:12599879,30413084:0,14208860,0 -(1,19344:12599879,30413084:18945146,14208860,0 -) -k1,19344:12599879,30413084:-18945146 -) -) -g1,19344:26613898,30413084 -) -) -) -g1,19345:26613923,30413084 -k1,19345:32583029,30413084:5969106 -) -v1,19352:6630773,31603550:0,393216,0 -(1,19357:6630773,32578533:25952256,1368199,196608 -g1,19357:6630773,32578533 -g1,19357:6630773,32578533 -g1,19357:6434165,32578533 -(1,19357:6434165,32578533:0,1368199,196608 -r1,19368:32779637,32578533:26345472,1564807,196608 -k1,19357:6434165,32578533:-26345472 -) -(1,19357:6434165,32578533:26345472,1368199,196608 -[1,19357:6630773,32578533:25952256,1171591,0 -(1,19354:6630773,31811168:25952256,404226,107478 -(1,19353:6630773,31811168:0,0,0 -g1,19353:6630773,31811168 -g1,19353:6630773,31811168 -g1,19353:6303093,31811168 -(1,19353:6303093,31811168:0,0,0 -) -g1,19353:6630773,31811168 -) -k1,19354:6630773,31811168:0 -g1,19354:10740667,31811168 -g1,19354:12637542,31811168 -g1,19354:13269834,31811168 -g1,19354:17695874,31811168 -g1,19354:19592748,31811168 -g1,19354:20225040,31811168 -g1,19354:23386497,31811168 -h1,19354:23702643,31811168:0,0,0 -k1,19354:32583029,31811168:8880386 -g1,19354:32583029,31811168 +(1,19423:-473656,4736287:0,0,0 +k1,19423:-473656,4736287:5209943 ) -(1,19355:6630773,32477346:25952256,410518,101187 -h1,19355:6630773,32477346:0,0,0 -g1,19355:6946919,32477346 -g1,19355:7263065,32477346 -g1,19355:7579211,32477346 -g1,19355:7895357,32477346 -g1,19355:13585980,32477346 -g1,19355:14218272,32477346 -h1,19355:15166709,32477346:0,0,0 -k1,19355:32583029,32477346:17416320 -g1,19355:32583029,32477346 +g1,19423:-473656,-710413 ) ] ) -g1,19357:32583029,32578533 -g1,19357:6630773,32578533 -g1,19357:6630773,32578533 -g1,19357:32583029,32578533 -g1,19357:32583029,32578533 -) -h1,19357:6630773,32775141:0,0,0 -(1,19360:6630773,43875454:25952256,10510489,0 -k1,19360:12599879,43875454:5969106 -h1,19359:12599879,43875454:0,0,0 -(1,19359:12599879,43875454:14014044,10510489,0 -(1,19359:12599879,43875454:14014019,10510515,0 -(1,19359:12599879,43875454:14014019,10510515,0 -(1,19359:12599879,43875454:0,10510515,0 -(1,19359:12599879,43875454:0,14208860,0 -(1,19359:12599879,43875454:18945146,14208860,0 +[1,19423:6630773,47279633:25952256,43253760,0 +[1,19423:6630773,4812305:25952256,786432,0 +(1,19423:6630773,4812305:25952256,485622,11795 +(1,19423:6630773,4812305:25952256,485622,11795 +g1,19423:3078558,4812305 +[1,19423:3078558,4812305:0,0,0 +(1,19423:3078558,2439708:0,1703936,0 +k1,19423:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,19423:2537886,2439708:1179648,16384,0 ) -k1,19359:12599879,43875454:-18945146 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,19423:3078558,1915420:16384,1179648,0 ) +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) -g1,19359:26613898,43875454 -) +] ) ) -g1,19360:26613923,43875454 -k1,19360:32583029,43875454:5969106 ) -v1,19367:6630773,45241230:0,393216,0 ] -(1,19368:32583029,45706769:0,0,0 -g1,19368:32583029,45706769 +[1,19423:3078558,4812305:0,0,0 +(1,19423:3078558,2439708:0,1703936,0 +g1,19423:29030814,2439708 +g1,19423:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,19423:36151628,1915420:16384,1179648,0 ) +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] -(1,19368:6630773,47279633:25952256,0,0 -h1,19368:6630773,47279633:25952256,0,0 ) -] -(1,19368:4262630,4025873:0,0,0 -[1,19368:-473656,4025873:0,0,0 -(1,19368:-473656,-710413:0,0,0 -(1,19368:-473656,-710413:0,0,0 -g1,19368:-473656,-710413 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,19423:37855564,2439708:1179648,16384,0 ) -g1,19368:-473656,-710413 ) -] +k1,19423:3078556,2439708:-34777008 ) ] -!8712 -}345 -Input:3055:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3056:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3057:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3058:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3059:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3060:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3061:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!669 -{346 -[1,19430:4262630,47279633:28320399,43253760,0 -(1,19430:4262630,4025873:0,0,0 -[1,19430:-473656,4025873:0,0,0 -(1,19430:-473656,-710413:0,0,0 -(1,19430:-473656,-644877:0,0,0 -k1,19430:-473656,-644877:-65536 +[1,19423:3078558,4812305:0,0,0 +(1,19423:3078558,49800853:0,16384,2228224 +k1,19423:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,19423:2537886,49800853:1179648,16384,0 ) -(1,19430:-473656,4736287:0,0,0 -k1,19430:-473656,4736287:5209943 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,19423:3078558,51504789:16384,1179648,0 ) -g1,19430:-473656,-710413 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) -[1,19430:6630773,47279633:25952256,43253760,0 -[1,19430:6630773,4812305:25952256,786432,0 -(1,19430:6630773,4812305:25952256,505283,126483 -(1,19430:6630773,4812305:25952256,505283,126483 -g1,19430:3078558,4812305 -[1,19430:3078558,4812305:0,0,0 -(1,19430:3078558,2439708:0,1703936,0 -k1,19430:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,19430:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,19430:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +] +[1,19423:3078558,4812305:0,0,0 +(1,19423:3078558,49800853:0,16384,2228224 +g1,19423:29030814,49800853 +g1,19423:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,19423:36151628,51504789:16384,1179648,0 +) +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] ) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,19423:37855564,49800853:1179648,16384,0 +) ) +k1,19423:3078556,49800853:-34777008 ) ] -[1,19430:3078558,4812305:0,0,0 -(1,19430:3078558,2439708:0,1703936,0 -g1,19430:29030814,2439708 -g1,19430:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,19430:36151628,1915420:16384,1179648,0 +g1,19423:6630773,4812305 +g1,19423:6630773,4812305 +g1,19423:9560887,4812305 +k1,19423:31387651,4812305:21826764 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 ) ] +[1,19423:6630773,45706769:25952256,40108032,0 +(1,19423:6630773,45706769:25952256,40108032,0 +(1,19423:6630773,45706769:0,0,0 +g1,19423:6630773,45706769 ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,19430:37855564,2439708:1179648,16384,0 +[1,19423:6630773,45706769:25952256,40108032,0 +(1,19382:6630773,16109226:25952256,10510489,0 +k1,19382:12599879,16109226:5969106 +h1,19381:12599879,16109226:0,0,0 +(1,19381:12599879,16109226:14014044,10510489,0 +(1,19381:12599879,16109226:14014019,10510515,0 +(1,19381:12599879,16109226:14014019,10510515,0 +(1,19381:12599879,16109226:0,10510515,0 +(1,19381:12599879,16109226:0,14208860,0 +(1,19381:12599879,16109226:18945146,14208860,0 ) +k1,19381:12599879,16109226:-18945146 ) -k1,19430:3078556,2439708:-34777008 ) -] -[1,19430:3078558,4812305:0,0,0 -(1,19430:3078558,49800853:0,16384,2228224 -k1,19430:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,19430:2537886,49800853:1179648,16384,0 +g1,19381:26613898,16109226 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,19430:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 ) -] -) -) -) -] -[1,19430:3078558,4812305:0,0,0 -(1,19430:3078558,49800853:0,16384,2228224 -g1,19430:29030814,49800853 -g1,19430:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,19430:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] -) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,19430:37855564,49800853:1179648,16384,0 -) -) -k1,19430:3078556,49800853:-34777008 -) -] -g1,19430:6630773,4812305 -g1,19430:6630773,4812305 -g1,19430:9104757,4812305 -g1,19430:10491498,4812305 -g1,19430:12580130,4812305 -k1,19430:31387652,4812305:18807522 -) -) -] -[1,19430:6630773,45706769:25952256,40108032,0 -(1,19430:6630773,45706769:25952256,40108032,0 -(1,19430:6630773,45706769:0,0,0 -g1,19430:6630773,45706769 -) -[1,19430:6630773,45706769:25952256,40108032,0 -v1,19368:6630773,6254097:0,393216,0 -(1,19368:6630773,11672961:25952256,5812080,0 -g1,19368:6630773,11672961 -g1,19368:6303093,11672961 -r1,19430:6401397,11672961:98304,5812080,0 -g1,19368:6600626,11672961 -g1,19368:6797234,11672961 -[1,19368:6797234,11672961:25785795,5812080,0 -(1,19368:6797234,6616170:25785795,755289,196608 -(1,19367:6797234,6616170:0,755289,196608 -r1,19430:8134168,6616170:1336934,951897,196608 -k1,19367:6797234,6616170:-1336934 -) -(1,19367:6797234,6616170:1336934,755289,196608 -) -k1,19367:8395351,6616170:261183 -k1,19367:8723031,6616170:327680 -k1,19367:9612048,6616170:261182 -k1,19367:10892316,6616170:261183 -k1,19367:12520580,6616170:261183 -k1,19367:13441055,6616170:261183 -k1,19367:16427224,6616170:261182 -k1,19367:18183939,6616170:261183 -k1,19367:20916485,6616170:261183 -k1,19367:22994981,6616170:261183 -k1,19367:26903242,6616170:261182 -k1,19367:27823717,6616170:261183 -$1,19367:27823717,6616170 -$1,19367:28375530,6616170 -k1,19367:28636713,6616170:261183 -k1,19367:29707266,6616170:261183 -$1,19367:29707266,6616170 -$1,19367:30209927,6616170 -k1,19367:30471109,6616170:261182 -k1,19367:31923737,6616170:261183 -k1,19367:32583029,6616170:0 -) -(1,19368:6797234,7457658:25785795,615216,138281 -$1,19367:7299895,7457658 -k1,19367:7530352,7457658:230457 -k1,19367:8570180,7457658:230458 -$1,19367:8570180,7457658 -$1,19367:9121993,7457658 -k1,19367:9352450,7457658:230457 -k1,19367:10198945,7457658:230457 -k1,19367:12031102,7457658:230457 -k1,19367:13958942,7457658:230458 -k1,19367:15724908,7457658:230457 -k1,19367:18717708,7457658:230457 -k1,19367:20660621,7457658:230457 -k1,19367:22563558,7457658:230458 -k1,19367:24260711,7457658:230457 -k1,19367:24957129,7457658:230457 -$1,19367:24957129,7457658 -(1,19367:25451270,7182377:311689,339935,0 -) -$1,19367:25762959,7457658 -k1,19367:25993416,7457658:230457 -k1,19367:26755371,7457658:230458 -k1,19367:30440231,7457658:230457 -k1,19367:32051532,7457658:230457 -k1,19367:32583029,7457658:0 -) -(1,19368:6797234,8299146:25785795,505283,126483 -k1,19367:8213517,8299146:233358 -k1,19367:9098304,8299146:233359 -k1,19367:10350747,8299146:233358 -k1,19367:14323590,8299146:233359 -k1,19367:15841454,8299146:233358 -$1,19367:15841454,8299146 -$1,19367:16344115,8299146 -k1,19367:16577473,8299146:233358 -k1,19367:18821477,8299146:233359 -k1,19367:20046395,8299146:233358 -k1,19367:22591208,8299146:233358 -k1,19367:24680547,8299146:233359 -k1,19367:25848448,8299146:233358 -k1,19367:26764692,8299146:233359 -k1,19367:30122807,8299146:233358 -k1,19367:32583029,8299146:0 -) -(1,19368:6797234,9140634:25785795,505283,134348 -k1,19367:8749098,9140634:171251 -k1,19367:9989896,9140634:171250 -k1,19367:11227418,9140634:171251 -k1,19367:13708812,9140634:171250 -k1,19367:14531491,9140634:171251 -k1,19367:17197042,9140634:171251 -k1,19367:20367875,9140634:171250 -k1,19367:21436969,9140634:171251 -k1,19367:25516132,9140634:171251 -k1,19367:28513294,9140634:171250 -k1,19367:29300583,9140634:171251 -k1,19367:30490918,9140634:171250 -k1,19367:32051532,9140634:171251 -k1,19367:32583029,9140634:0 -) -(1,19368:6797234,9982122:25785795,505283,138281 -k1,19367:9791651,9982122:175058 -k1,19367:10618137,9982122:175058 -k1,19367:11540962,9982122:175059 -k1,19367:12332058,9982122:175058 -$1,19367:12332058,9982122 -$1,19367:12883871,9982122 -k1,19367:13232599,9982122:175058 -k1,19367:14457544,9982122:175058 -k1,19367:17172122,9982122:175058 -(1,19367:17172122,9982122:661914,485622,0 -) -k1,19367:18009094,9982122:175058 -k1,19367:18993523,9982122:175059 -k1,19367:20666734,9982122:175058 -(1,19367:20666734,9982122:661914,485622,0 -) -k1,19367:21503706,9982122:175058 -k1,19367:22361649,9982122:175058 -k1,19367:24886828,9982122:175058 -k1,19367:25417746,9982122:175058 -k1,19367:28471146,9982122:175059 -k1,19367:30228243,9982122:175058 -k1,19367:31896867,9982122:175058 -k1,19367:32583029,9982122:0 -) -(1,19368:6797234,10823610:25785795,513147,134348 -k1,19367:9428673,10823610:238064 -k1,19367:12397621,10823610:238063 -k1,19367:13559743,10823610:238064 -k1,19367:16191181,10823610:238063 -k1,19367:18741355,10823610:238064 -k1,19367:21589063,10823610:238064 -k1,19367:23018571,10823610:238063 -k1,19367:25212885,10823610:238064 -k1,19367:27218571,10823610:238180 -k1,19367:28471787,10823610:238063 -k1,19367:31635378,10823610:238064 -k1,19367:32583029,10823610:0 -) -(1,19368:6797234,11665098:25785795,513147,7863 -g1,19367:10223456,11665098 -k1,19368:32583029,11665098:18378916 -g1,19368:32583029,11665098 -) -] -g1,19368:32583029,11672961 -) -h1,19368:6630773,11672961:0,0,0 -(1,19371:6630773,13038737:25952256,513147,126483 -h1,19370:6630773,13038737:983040,0,0 -k1,19370:9270509,13038737:177548 -k1,19370:10620496,13038737:177548 -k1,19370:14368444,13038737:177547 -k1,19370:17387633,13038737:177548 -k1,19370:20324247,13038737:177548 -k1,19370:21520880,13038737:177548 -k1,19370:23964008,13038737:177548 -k1,19370:24673053,13038737:177548 -k1,19370:25502028,13038737:177547 -k1,19370:27032239,13038737:177548 -$1,19370:27032239,13038737 -$1,19370:27534900,13038737 -k1,19370:27712448,13038737:177548 -k1,19370:28576158,13038737:177548 -k1,19370:32583029,13038737:0 -) -(1,19371:6630773,13880225:25952256,513147,138281 -k1,19370:8031731,13880225:209513 -$1,19370:8031731,13880225 -$1,19370:8583544,13880225 -k1,19370:8793058,13880225:209514 -k1,19370:9688733,13880225:209513 -k1,19370:13462750,13880225:209514 -k1,19370:15053107,13880225:209513 -k1,19370:17891925,13880225:209514 -k1,19370:18760730,13880225:209513 -k1,19370:21252863,13880225:209514 -k1,19370:23160414,13880225:209513 -k1,19370:27764117,13880225:209514 -k1,19370:28659792,13880225:209513 -k1,19370:29485344,13880225:209514 -k1,19370:31682564,13880225:209513 -k1,19371:32583029,13880225:0 -) -(1,19371:6630773,14721713:25952256,513147,138281 -k1,19370:8097966,14721713:220043 -k1,19370:9823372,14721713:220044 -$1,19370:9823372,14721713 -$1,19370:10326033,14721713 -k1,19370:10546076,14721713:220043 -k1,19370:11957564,14721713:220043 -$1,19370:11957564,14721713 -$1,19370:12509377,14721713 -k1,19370:12729420,14721713:220043 -k1,19370:16451708,14721713:220044 -k1,19370:17299586,14721713:220043 -k1,19370:18722870,14721713:220043 -k1,19370:20309995,14721713:220044 -k1,19370:23810770,14721713:220043 -(1,19370:23810770,14721713:0,452978,115847 -r1,19430:27686154,14721713:3875384,568825,115847 -k1,19370:23810770,14721713:-3875384 -) -(1,19370:23810770,14721713:3875384,452978,115847 -k1,19370:23810770,14721713:3277 -h1,19370:27682877,14721713:0,411205,112570 -) -k1,19370:27906197,14721713:220043 -k1,19370:29230522,14721713:220043 -k1,19370:30198332,14721713:220044 -k1,19370:31931601,14721713:220043 -k1,19370:32583029,14721713:0 -) -(1,19371:6630773,15563201:25952256,513147,138281 -g1,19370:9361658,15563201 -g1,19370:11446358,15563201 -g1,19370:12304879,15563201 -$1,19370:12304879,15563201 -$1,19370:12807540,15563201 -g1,19370:13006769,15563201 -g1,19370:13888883,15563201 -$1,19370:13888883,15563201 -$1,19370:14440696,15563201 -g1,19370:14639925,15563201 -g1,19370:15370651,15563201 -g1,19370:16588965,15563201 -g1,19370:20795065,15563201 -g1,19370:21677179,15563201 -g1,19370:25642107,15563201 -k1,19371:32583029,15563201:4255912 -g1,19371:32583029,15563201 -) -v1,19375:6630773,16753667:0,393216,0 -(1,19382:6630773,19061006:25952256,2700555,196608 -g1,19382:6630773,19061006 -g1,19382:6630773,19061006 -g1,19382:6434165,19061006 -(1,19382:6434165,19061006:0,2700555,196608 -r1,19430:32779637,19061006:26345472,2897163,196608 -k1,19382:6434165,19061006:-26345472 -) -(1,19382:6434165,19061006:26345472,2700555,196608 -[1,19382:6630773,19061006:25952256,2503947,0 -(1,19377:6630773,16961285:25952256,404226,107478 -(1,19376:6630773,16961285:0,0,0 -g1,19376:6630773,16961285 -g1,19376:6630773,16961285 -g1,19376:6303093,16961285 -(1,19376:6303093,16961285:0,0,0 -) -g1,19376:6630773,16961285 -) -k1,19377:6630773,16961285:0 -g1,19377:10740667,16961285 -g1,19377:16431290,16961285 -g1,19377:21173476,16961285 -h1,19377:21489622,16961285:0,0,0 -k1,19377:32583029,16961285:11093407 -g1,19377:32583029,16961285 -) -(1,19378:6630773,17627463:25952256,410518,101187 -h1,19378:6630773,17627463:0,0,0 -g1,19378:6946919,17627463 -g1,19378:7263065,17627463 -g1,19378:13269833,17627463 -g1,19378:13902125,17627463 -g1,19378:15799000,17627463 -g1,19378:18328166,17627463 -g1,19378:18960458,17627463 -g1,19378:19592750,17627463 -g1,19378:20225042,17627463 -g1,19378:21173479,17627463 -h1,19378:21489625,17627463:0,0,0 -k1,19378:32583029,17627463:11093404 -g1,19378:32583029,17627463 -) -(1,19379:6630773,18293641:25952256,404226,107478 -h1,19379:6630773,18293641:0,0,0 -g1,19379:6946919,18293641 -g1,19379:7263065,18293641 -g1,19379:11372959,18293641 -h1,19379:11689105,18293641:0,0,0 -k1,19379:32583029,18293641:20893924 -g1,19379:32583029,18293641 -) -(1,19380:6630773,18959819:25952256,410518,101187 -h1,19380:6630773,18959819:0,0,0 -g1,19380:6946919,18959819 -g1,19380:7263065,18959819 -g1,19380:13902126,18959819 -g1,19380:16115146,18959819 -g1,19380:16747438,18959819 -h1,19380:18960458,18959819:0,0,0 -k1,19380:32583029,18959819:13622571 -g1,19380:32583029,18959819 -) -] -) -g1,19382:32583029,19061006 -g1,19382:6630773,19061006 -g1,19382:6630773,19061006 -g1,19382:32583029,19061006 -g1,19382:32583029,19061006 -) -h1,19382:6630773,19257614:0,0,0 -(1,19385:6630773,28606106:25952256,8758668,0 -k1,19385:7928465,28606106:1297692 -h1,19384:7928465,28606106:0,0,0 -(1,19384:7928465,28606106:23356872,8758668,0 -(1,19384:7928465,28606106:23356506,8758690,0 -(1,19384:7928465,28606106:23356506,8758690,0 -(1,19384:7928465,28606106:0,8758690,0 -(1,19384:7928465,28606106:0,14208860,0 -(1,19384:7928465,28606106:37890292,14208860,0 -) -k1,19384:7928465,28606106:-37890292 -) -) -g1,19384:31284971,28606106 -) -) -) -g1,19385:31285337,28606106 -k1,19385:32583029,28606106:1297692 -) -(1,19392:6630773,29447594:25952256,505283,138281 -h1,19391:6630773,29447594:983040,0,0 -k1,19391:9303693,29447594:210732 -(1,19391:9303693,29447594:0,452978,115847 -r1,19430:15289348,29447594:5985655,568825,115847 -k1,19391:9303693,29447594:-5985655 -) -(1,19391:9303693,29447594:5985655,452978,115847 -g1,19391:13527512,29447594 -g1,19391:14230936,29447594 -h1,19391:15286071,29447594:0,411205,112570 -) -k1,19391:15500080,29447594:210732 -k1,19391:16579163,29447594:210731 -k1,19391:17804392,29447594:210732 -k1,19391:19299630,29447594:210732 -$1,19391:19299630,29447594 -$1,19391:19851443,29447594 -k1,19391:20062175,29447594:210732 -k1,19391:20804403,29447594:210731 -k1,19391:22034220,29447594:210732 -k1,19391:26251823,29447594:210732 -k1,19391:29147565,29447594:210732 -k1,19391:29986131,29447594:210731 -k1,19391:31215948,29447594:210732 -k1,19391:32583029,29447594:0 -) -(1,19392:6630773,30289082:25952256,513147,138281 -g1,19391:7497158,30289082 -(1,19391:7497158,30289082:0,452978,122846 -r1,19430:12075966,30289082:4578808,575824,122846 -k1,19391:7497158,30289082:-4578808 -) -(1,19391:7497158,30289082:4578808,452978,122846 -k1,19391:7497158,30289082:3277 -h1,19391:12072689,30289082:0,411205,112570 -) -g1,19391:12275195,30289082 -g1,19391:13677665,30289082 -g1,19391:15945210,30289082 -g1,19391:19150575,30289082 -g1,19391:22388708,30289082 -$1,19391:22388708,30289082 -$1,19391:22891369,30289082 -g1,19391:23090598,30289082 -g1,19391:24481272,30289082 -$1,19391:24481272,30289082 -$1,19391:25033085,30289082 -g1,19391:25232314,30289082 -g1,19391:26047581,30289082 -(1,19391:26047581,30289082:0,459977,115847 -r1,19430:28516118,30289082:2468537,575824,115847 -k1,19391:26047581,30289082:-2468537 -) -(1,19391:26047581,30289082:2468537,459977,115847 -k1,19391:26047581,30289082:3277 -h1,19391:28512841,30289082:0,411205,112570 -) -k1,19392:32583029,30289082:3893241 -g1,19392:32583029,30289082 -) -v1,19394:6630773,31479548:0,393216,0 -(1,19401:6630773,33786887:25952256,2700555,196608 -g1,19401:6630773,33786887 -g1,19401:6630773,33786887 -g1,19401:6434165,33786887 -(1,19401:6434165,33786887:0,2700555,196608 -r1,19430:32779637,33786887:26345472,2897163,196608 -k1,19401:6434165,33786887:-26345472 -) -(1,19401:6434165,33786887:26345472,2700555,196608 -[1,19401:6630773,33786887:25952256,2503947,0 -(1,19396:6630773,31687166:25952256,404226,107478 -(1,19395:6630773,31687166:0,0,0 -g1,19395:6630773,31687166 -g1,19395:6630773,31687166 -g1,19395:6303093,31687166 -(1,19395:6303093,31687166:0,0,0 -) -g1,19395:6630773,31687166 -) -k1,19396:6630773,31687166:0 -g1,19396:10740667,31687166 -g1,19396:16431290,31687166 -g1,19396:21173476,31687166 -h1,19396:21489622,31687166:0,0,0 -k1,19396:32583029,31687166:11093407 -g1,19396:32583029,31687166 -) -(1,19397:6630773,32353344:25952256,410518,101187 -h1,19397:6630773,32353344:0,0,0 -g1,19397:6946919,32353344 -g1,19397:7263065,32353344 -g1,19397:7579211,32353344 -g1,19397:7895357,32353344 -g1,19397:13902125,32353344 -g1,19397:14534417,32353344 -g1,19397:16431292,32353344 -g1,19397:18960458,32353344 -g1,19397:19592750,32353344 -g1,19397:20225042,32353344 -g1,19397:20857334,32353344 -g1,19397:21805772,32353344 -g1,19397:25599520,32353344 -g1,19397:26231812,32353344 -g1,19397:27812541,32353344 -h1,19397:28128687,32353344:0,0,0 -k1,19397:32583029,32353344:4454342 -g1,19397:32583029,32353344 -) -(1,19398:6630773,33019522:25952256,404226,107478 -h1,19398:6630773,33019522:0,0,0 -g1,19398:6946919,33019522 -g1,19398:7263065,33019522 -g1,19398:7579211,33019522 -g1,19398:7895357,33019522 -g1,19398:12005251,33019522 -h1,19398:12321397,33019522:0,0,0 -k1,19398:32583029,33019522:20261632 -g1,19398:32583029,33019522 -) -(1,19399:6630773,33685700:25952256,410518,101187 -h1,19399:6630773,33685700:0,0,0 -g1,19399:6946919,33685700 -g1,19399:7263065,33685700 -g1,19399:7579211,33685700 -g1,19399:7895357,33685700 -g1,19399:14534418,33685700 -g1,19399:16747438,33685700 -g1,19399:17379730,33685700 -h1,19399:19592750,33685700:0,0,0 -k1,19399:32583029,33685700:12990279 -g1,19399:32583029,33685700 -) -] -) -g1,19401:32583029,33786887 -g1,19401:6630773,33786887 -g1,19401:6630773,33786887 -g1,19401:32583029,33786887 -g1,19401:32583029,33786887 -) -h1,19401:6630773,33983495:0,0,0 -(1,19404:6630773,43331987:25952256,8758668,0 -k1,19404:7928465,43331987:1297692 -h1,19403:7928465,43331987:0,0,0 -(1,19403:7928465,43331987:23356872,8758668,0 -(1,19403:7928465,43331987:23356506,8758690,0 -(1,19403:7928465,43331987:23356506,8758690,0 -(1,19403:7928465,43331987:0,8758690,0 -(1,19403:7928465,43331987:0,14208860,0 -(1,19403:7928465,43331987:37890292,14208860,0 -) -k1,19403:7928465,43331987:-37890292 -) -) -g1,19403:31284971,43331987 -) -) -) -g1,19404:31285337,43331987 -k1,19404:32583029,43331987:1297692 -) -v1,19411:6630773,44697763:0,393216,0 -] -(1,19430:32583029,45706769:0,0,0 -g1,19430:32583029,45706769 -) -) -] -(1,19430:6630773,47279633:25952256,0,0 -h1,19430:6630773,47279633:25952256,0,0 -) -] -(1,19430:4262630,4025873:0,0,0 -[1,19430:-473656,4025873:0,0,0 -(1,19430:-473656,-710413:0,0,0 -(1,19430:-473656,-710413:0,0,0 -g1,19430:-473656,-710413 +g1,19382:26613923,16109226 +k1,19382:32583029,16109226:5969106 ) -g1,19430:-473656,-710413 -) -] +(1,19389:6630773,16974306:25952256,505283,126483 +h1,19388:6630773,16974306:983040,0,0 +k1,19388:8830816,16974306:399114 +k1,19388:10623881,16974306:399114 +k1,19388:12724966,16974306:399115 +k1,19388:15957201,16974306:399114 +k1,19388:17864954,16974306:399114 +k1,19388:21904593,16974306:399114 +k1,19388:24137404,16974306:399114 +k1,19388:26003215,16974306:399115 +k1,19388:27421414,16974306:399114 +k1,19388:29541503,16974306:399114 +k1,19389:32583029,16974306:0 ) -] -!17709 -}346 -Input:3062:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3063:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3064:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3065:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3066:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3067:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!576 -{347 -[1,19453:4262630,47279633:28320399,43253760,0 -(1,19453:4262630,4025873:0,0,0 -[1,19453:-473656,4025873:0,0,0 -(1,19453:-473656,-710413:0,0,0 -(1,19453:-473656,-644877:0,0,0 -k1,19453:-473656,-644877:-65536 +(1,19389:6630773,17839386:25952256,513147,126483 +k1,19388:8490784,17839386:366445 +k1,19388:9543390,17839386:366444 +(1,19388:9543390,17839386:0,452978,115847 +r1,19423:11308503,17839386:1765113,568825,115847 +k1,19388:9543390,17839386:-1765113 +) +(1,19388:9543390,17839386:1765113,452978,115847 +k1,19388:9543390,17839386:3277 +h1,19388:11305226,17839386:0,411205,112570 +) +k1,19388:11848618,17839386:366445 +k1,19388:13406507,17839386:366444 +k1,19388:17383986,17839386:366445 +k1,19388:20147737,17839386:366444 +k1,19388:21165610,17839386:366445 +k1,19388:22735295,17839386:366444 +k1,19388:24487826,17839386:366445 +k1,19388:25513563,17839386:366445 +k1,19388:27744506,17839386:366444 +k1,19389:32583029,17839386:0 +) +(1,19389:6630773,18704466:25952256,505283,115847 +(1,19388:6630773,18704466:0,452978,115847 +r1,19423:11209581,18704466:4578808,568825,115847 +k1,19388:6630773,18704466:-4578808 +) +(1,19388:6630773,18704466:4578808,452978,115847 +k1,19388:6630773,18704466:3277 +h1,19388:11206304,18704466:0,411205,112570 +) +k1,19388:11688012,18704466:304761 +(1,19388:11688012,18704466:0,459977,115847 +r1,19423:15915108,18704466:4227096,575824,115847 +k1,19388:11688012,18704466:-4227096 +) +(1,19388:11688012,18704466:4227096,459977,115847 +k1,19388:11688012,18704466:3277 +h1,19388:15911831,18704466:0,411205,112570 +) +k1,19388:16393538,18704466:304760 +(1,19388:16393538,18704466:0,452978,115847 +r1,19423:20972346,18704466:4578808,568825,115847 +k1,19388:16393538,18704466:-4578808 +) +(1,19388:16393538,18704466:4578808,452978,115847 +k1,19388:16393538,18704466:3277 +h1,19388:20969069,18704466:0,411205,112570 +) +k1,19388:21450777,18704466:304761 +(1,19388:21450777,18704466:0,452978,115847 +r1,19423:25677873,18704466:4227096,568825,115847 +k1,19388:21450777,18704466:-4227096 +) +(1,19388:21450777,18704466:4227096,452978,115847 +k1,19388:21450777,18704466:3277 +h1,19388:25674596,18704466:0,411205,112570 +) +k1,19388:26156303,18704466:304760 +(1,19388:26156303,18704466:0,452978,115847 +r1,19423:31086823,18704466:4930520,568825,115847 +k1,19388:26156303,18704466:-4930520 +) +(1,19388:26156303,18704466:4930520,452978,115847 +k1,19388:26156303,18704466:3277 +h1,19388:31083546,18704466:0,411205,112570 +) +k1,19388:31391584,18704466:304761 +k1,19389:32583029,18704466:0 +) +(1,19389:6630773,19569546:25952256,513147,126483 +(1,19388:6630773,19569546:0,452978,115847 +r1,19423:11209581,19569546:4578808,568825,115847 +k1,19388:6630773,19569546:-4578808 +) +(1,19388:6630773,19569546:4578808,452978,115847 +k1,19388:6630773,19569546:3277 +h1,19388:11206304,19569546:0,411205,112570 +) +k1,19388:11809610,19569546:426359 +k1,19388:14121440,19569546:426359 +k1,19388:16327101,19569546:426359 +k1,19388:17772545,19569546:426359 +k1,19388:20637499,19569546:426359 +k1,19388:21679896,19569546:426359 +k1,19388:22462114,19569546:426358 +k1,19388:24126448,19569546:426359 +k1,19388:26754817,19569546:426359 +k1,19388:27832604,19569546:426359 +k1,19388:29278048,19569546:426359 +k1,19389:32583029,19569546:0 +) +(1,19389:6630773,20434626:25952256,513147,134348 +(1,19388:6630773,20434626:0,452978,115847 +r1,19423:9802733,20434626:3171960,568825,115847 +k1,19388:6630773,20434626:-3171960 +) +(1,19388:6630773,20434626:3171960,452978,115847 +k1,19388:6630773,20434626:3277 +h1,19388:9799456,20434626:0,411205,112570 +) +k1,19388:9974535,20434626:171802 +k1,19388:10762375,20434626:171802 +(1,19388:10762375,20434626:0,452978,122846 +r1,19423:14989471,20434626:4227096,575824,122846 +k1,19388:10762375,20434626:-4227096 +) +(1,19388:10762375,20434626:4227096,452978,122846 +k1,19388:10762375,20434626:3277 +h1,19388:14986194,20434626:0,411205,112570 +) +k1,19388:15334943,20434626:171802 +k1,19388:16703431,20434626:171801 +k1,19388:18744320,20434626:171802 +k1,19388:20107567,20434626:171802 +k1,19388:22094061,20434626:171802 +k1,19388:22925155,20434626:171802 +k1,19388:24116042,20434626:171802 +k1,19388:26048140,20434626:171801 +k1,19388:27324224,20434626:171802 +k1,19388:28243792,20434626:171802 +k1,19388:31189078,20434626:171802 +k1,19389:32583029,20434626:0 +) +(1,19389:6630773,21299706:25952256,513147,126483 +(1,19388:6630773,21299706:0,452978,115847 +r1,19423:8395886,21299706:1765113,568825,115847 +k1,19388:6630773,21299706:-1765113 +) +(1,19388:6630773,21299706:1765113,452978,115847 +k1,19388:6630773,21299706:3277 +h1,19388:8392609,21299706:0,411205,112570 +) +k1,19388:8750566,21299706:181010 +(1,19388:8750566,21299706:0,452978,115847 +r1,19423:12274238,21299706:3523672,568825,115847 +k1,19388:8750566,21299706:-3523672 +) +(1,19388:8750566,21299706:3523672,452978,115847 +k1,19388:8750566,21299706:3277 +h1,19388:12270961,21299706:0,411205,112570 +) +k1,19388:12455248,21299706:181010 +k1,19388:13827703,21299706:181010 +(1,19388:13827703,21299706:0,452978,115847 +r1,19423:16647952,21299706:2820249,568825,115847 +k1,19388:13827703,21299706:-2820249 +) +(1,19388:13827703,21299706:2820249,452978,115847 +k1,19388:13827703,21299706:3277 +h1,19388:16644675,21299706:0,411205,112570 +) +k1,19388:17002633,21299706:181011 +k1,19388:19753310,21299706:181010 +k1,19388:20550358,21299706:181010 +k1,19388:21087228,21299706:181010 +k1,19388:23705522,21299706:181010 +k1,19388:25557045,21299706:181010 +k1,19388:26093916,21299706:181011 +k1,19388:28476936,21299706:181010 +k1,19388:29893300,21299706:181010 +k1,19388:31021961,21299706:181010 +k1,19389:32583029,21299706:0 +) +(1,19389:6630773,22164786:25952256,513147,134348 +g1,19388:8885211,22164786 +g1,19388:11774693,22164786 +g1,19388:12660084,22164786 +g1,19388:16296676,22164786 +g1,19388:18310597,22164786 +g1,19388:20180339,22164786 +g1,19388:22077606,22164786 +g1,19388:25680120,22164786 +k1,19389:32583029,22164786:4660922 +g1,19389:32583029,22164786 +) +v1,19391:6630773,22849641:0,393216,0 +(1,19397:6630773,24553428:25952256,2097003,196608 +g1,19397:6630773,24553428 +g1,19397:6630773,24553428 +g1,19397:6434165,24553428 +(1,19397:6434165,24553428:0,2097003,196608 +r1,19423:32779637,24553428:26345472,2293611,196608 +k1,19397:6434165,24553428:-26345472 +) +(1,19397:6434165,24553428:26345472,2097003,196608 +[1,19397:6630773,24553428:25952256,1900395,0 +(1,19393:6630773,23077472:25952256,424439,112852 +(1,19392:6630773,23077472:0,0,0 +g1,19392:6630773,23077472 +g1,19392:6630773,23077472 +g1,19392:6303093,23077472 +(1,19392:6303093,23077472:0,0,0 +) +g1,19392:6630773,23077472 +) +k1,19393:6630773,23077472:0 +g1,19393:11942036,23077472 +g1,19393:15593530,23077472 +g1,19393:16921346,23077472 +h1,19393:17253300,23077472:0,0,0 +k1,19393:32583029,23077472:15329729 +g1,19393:32583029,23077472 +) +(1,19394:6630773,23762327:25952256,424439,106246 +h1,19394:6630773,23762327:0,0,0 +g1,19394:6962727,23762327 +g1,19394:7294681,23762327 +g1,19394:13601806,23762327 +g1,19394:14265714,23762327 +g1,19394:16257438,23762327 +g1,19394:18249162,23762327 +g1,19394:18913070,23762327 +k1,19394:18913070,23762327:0 +h1,19394:20240886,23762327:0,0,0 +k1,19394:32583029,23762327:12342143 +g1,19394:32583029,23762327 +) +(1,19395:6630773,24447182:25952256,424439,106246 +h1,19395:6630773,24447182:0,0,0 +g1,19395:6962727,24447182 +g1,19395:7294681,24447182 +g1,19395:7626635,24447182 +g1,19395:7958589,24447182 +g1,19395:8290543,24447182 +g1,19395:8622497,24447182 +g1,19395:8954451,24447182 +g1,19395:9286405,24447182 +g1,19395:9618359,24447182 +g1,19395:9950313,24447182 +g1,19395:10282267,24447182 +g1,19395:10614221,24447182 +g1,19395:10946175,24447182 +g1,19395:11278129,24447182 +g1,19395:11610083,24447182 +g1,19395:16257438,24447182 +g1,19395:16921346,24447182 +g1,19395:19245024,24447182 +g1,19395:23892379,24447182 +g1,19395:24556287,24447182 +g1,19395:26216057,24447182 +g1,19395:30531458,24447182 +g1,19395:31195366,24447182 +h1,19395:31859274,24447182:0,0,0 +k1,19395:32583029,24447182:723755 +g1,19395:32583029,24447182 +) +] +) +g1,19397:32583029,24553428 +g1,19397:6630773,24553428 +g1,19397:6630773,24553428 +g1,19397:32583029,24553428 +g1,19397:32583029,24553428 +) +h1,19397:6630773,24750036:0,0,0 +(1,19400:6630773,35326061:25952256,10510489,0 +k1,19400:12599879,35326061:5969106 +h1,19399:12599879,35326061:0,0,0 +(1,19399:12599879,35326061:14014044,10510489,0 +(1,19399:12599879,35326061:14014019,10510515,0 +(1,19399:12599879,35326061:14014019,10510515,0 +(1,19399:12599879,35326061:0,10510515,0 +(1,19399:12599879,35326061:0,14208860,0 +(1,19399:12599879,35326061:18945146,14208860,0 +) +k1,19399:12599879,35326061:-18945146 +) +) +g1,19399:26613898,35326061 +) +) +) +g1,19400:26613923,35326061 +k1,19400:32583029,35326061:5969106 +) +(1,19408:6630773,37442879:25952256,555811,139132 +(1,19408:6630773,37442879:2450326,534184,12975 +g1,19408:6630773,37442879 +g1,19408:9081099,37442879 +) +g1,19408:11467986,37442879 +k1,19408:32583028,37442879:19307756 +g1,19408:32583028,37442879 +) +(1,19412:6630773,38701175:25952256,505283,126483 +k1,19411:8757668,38701175:251910 +k1,19411:10617176,38701175:251910 +k1,19411:11860647,38701175:251911 +k1,19411:12468417,38701175:251910 +k1,19411:14370524,38701175:251910 +k1,19411:16610796,38701175:251910 +k1,19411:20994752,38701175:251911 +k1,19411:22689109,38701175:251910 +k1,19411:24101006,38701175:251910 +k1,19411:26134185,38701175:251910 +k1,19411:27577541,38701175:251911 +k1,19411:29883349,38701175:251910 +k1,19411:31529210,38701175:251910 +k1,19412:32583029,38701175:0 +) +(1,19412:6630773,39566255:25952256,513147,134348 +k1,19411:8966627,39566255:251154 +k1,19411:10788679,39566255:251154 +k1,19411:13855915,39566255:251154 +k1,19411:14766361,39566255:251154 +k1,19411:19262937,39566255:251154 +k1,19411:21071882,39566255:251154 +k1,19411:23091854,39566255:251155 +k1,19411:24090774,39566255:251154 +k1,19411:26868996,39566255:251154 +k1,19411:27779442,39566255:251154 +k1,19411:28716758,39566255:251154 +k1,19411:30705927,39566255:251154 +k1,19411:31312941,39566255:251154 +k1,19411:32583029,39566255:0 +) +(1,19412:6630773,40431335:25952256,513147,134348 +k1,19411:7543034,40431335:252969 +k1,19411:9882669,40431335:252969 +k1,19411:12770841,40431335:252969 +k1,19411:13794512,40431335:252968 +k1,19411:17020849,40431335:252969 +k1,19411:19606244,40431335:252969 +k1,19411:22554709,40431335:252969 +k1,19411:24039755,40431335:252969 +k1,19411:26571411,40431335:252969 +h1,19411:28114129,40431335:0,0,0 +k1,19411:28367097,40431335:252968 +k1,19411:29429436,40431335:252969 +k1,19411:31180558,40431335:252969 +h1,19411:32375935,40431335:0,0,0 +k1,19411:32583029,40431335:0 +) +(1,19412:6630773,41296415:25952256,505283,134348 +k1,19411:8032781,41296415:210563 +k1,19411:8599204,41296415:210563 +k1,19411:9969755,41296415:210564 +k1,19411:11457615,41296415:210563 +k1,19411:12900255,41296415:210563 +k1,19411:15389505,41296415:210563 +h1,19411:16932223,41296415:0,0,0 +k1,19411:17142786,41296415:210563 +k1,19411:18162719,41296415:210563 +k1,19411:19871436,41296415:210564 +h1,19411:21066813,41296415:0,0,0 +k1,19411:21658140,41296415:210563 +k1,19411:22686592,41296415:210563 +k1,19411:23428652,41296415:210563 +k1,19411:24658300,41296415:210563 +k1,19411:26235944,41296415:210563 +k1,19411:27840459,41296415:210564 +k1,19411:29211009,41296415:210563 +k1,19411:31202841,41296415:210563 +k1,19411:32583029,41296415:0 +) +(1,19412:6630773,42161495:25952256,513147,134348 +k1,19411:7813698,42161495:191365 +k1,19411:11692118,42161495:191365 +k1,19411:13860704,42161495:191365 +k1,19411:15750107,42161495:191365 +k1,19411:19344757,42161495:191365 +k1,19411:23647851,42161495:191365 +k1,19411:24498508,42161495:191365 +k1,19411:26911544,42161495:191365 +k1,19411:28665943,42161495:191365 +k1,19411:30156887,42161495:191365 +k1,19411:31109780,42161495:191365 +k1,19411:32583029,42161495:0 +) +(1,19412:6630773,43026575:25952256,505283,126483 +g1,19411:8387793,43026575 +g1,19411:9691304,43026575 +g1,19411:10638299,43026575 +g1,19411:13187649,43026575 +g1,19411:14780829,43026575 +(1,19411:14780829,43026575:0,452978,122846 +r1,19423:19359637,43026575:4578808,575824,122846 +k1,19411:14780829,43026575:-4578808 +) +(1,19411:14780829,43026575:4578808,452978,122846 +k1,19411:14780829,43026575:3277 +h1,19411:19356360,43026575:0,411205,112570 +) +g1,19411:19558866,43026575 +g1,19411:20444257,43026575 +g1,19411:22719011,43026575 +g1,19411:23534278,43026575 +g1,19411:24752592,43026575 +g1,19411:27943540,43026575 +k1,19412:32583029,43026575:2597387 +g1,19412:32583029,43026575 +) +v1,19414:6630773,43711430:0,393216,0 +(1,19419:6630773,44736968:25952256,1418754,196608 +g1,19419:6630773,44736968 +g1,19419:6630773,44736968 +g1,19419:6434165,44736968 +(1,19419:6434165,44736968:0,1418754,196608 +r1,19423:32779637,44736968:26345472,1615362,196608 +k1,19419:6434165,44736968:-26345472 +) +(1,19419:6434165,44736968:26345472,1418754,196608 +[1,19419:6630773,44736968:25952256,1222146,0 +(1,19416:6630773,43939261:25952256,424439,112852 +(1,19415:6630773,43939261:0,0,0 +g1,19415:6630773,43939261 +g1,19415:6630773,43939261 +g1,19415:6303093,43939261 +(1,19415:6303093,43939261:0,0,0 +) +g1,19415:6630773,43939261 +) +k1,19416:6630773,43939261:0 +g1,19416:11942036,43939261 +g1,19416:15593530,43939261 +g1,19416:16921346,43939261 +h1,19416:17253300,43939261:0,0,0 +k1,19416:32583029,43939261:15329729 +g1,19416:32583029,43939261 +) +(1,19417:6630773,44624116:25952256,424439,112852 +h1,19417:6630773,44624116:0,0,0 +g1,19417:6962727,44624116 +g1,19417:7294681,44624116 +k1,19417:7294681,44624116:0 +h1,19417:11610082,44624116:0,0,0 +k1,19417:32583030,44624116:20972948 +g1,19417:32583030,44624116 +) +] +) +g1,19419:32583029,44736968 +g1,19419:6630773,44736968 +g1,19419:6630773,44736968 +g1,19419:32583029,44736968 +g1,19419:32583029,44736968 +) +h1,19419:6630773,44933576:0,0,0 +] +(1,19423:32583029,45706769:0,0,0 +g1,19423:32583029,45706769 +) +) +] +(1,19423:6630773,47279633:25952256,0,0 +h1,19423:6630773,47279633:25952256,0,0 +) +] +(1,19423:4262630,4025873:0,0,0 +[1,19423:-473656,4025873:0,0,0 +(1,19423:-473656,-710413:0,0,0 +(1,19423:-473656,-710413:0,0,0 +g1,19423:-473656,-710413 +) +g1,19423:-473656,-710413 +) +] +) +] +!17664 +}326 +Input:3083:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3084:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3085:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!294 +{327 +[1,19469:4262630,47279633:28320399,43253760,0 +(1,19469:4262630,4025873:0,0,0 +[1,19469:-473656,4025873:0,0,0 +(1,19469:-473656,-710413:0,0,0 +(1,19469:-473656,-644877:0,0,0 +k1,19469:-473656,-644877:-65536 ) -(1,19453:-473656,4736287:0,0,0 -k1,19453:-473656,4736287:5209943 +(1,19469:-473656,4736287:0,0,0 +k1,19469:-473656,4736287:5209943 ) -g1,19453:-473656,-710413 +g1,19469:-473656,-710413 ) ] ) -[1,19453:6630773,47279633:25952256,43253760,0 -[1,19453:6630773,4812305:25952256,786432,0 -(1,19453:6630773,4812305:25952256,513147,126483 -(1,19453:6630773,4812305:25952256,513147,126483 -g1,19453:3078558,4812305 -[1,19453:3078558,4812305:0,0,0 -(1,19453:3078558,2439708:0,1703936,0 -k1,19453:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,19453:2537886,2439708:1179648,16384,0 +[1,19469:6630773,47279633:25952256,43253760,0 +[1,19469:6630773,4812305:25952256,786432,0 +(1,19469:6630773,4812305:25952256,513147,126483 +(1,19469:6630773,4812305:25952256,513147,126483 +g1,19469:3078558,4812305 +[1,19469:3078558,4812305:0,0,0 +(1,19469:3078558,2439708:0,1703936,0 +k1,19469:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,19469:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,19453:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,19469:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,19453:3078558,4812305:0,0,0 -(1,19453:3078558,2439708:0,1703936,0 -g1,19453:29030814,2439708 -g1,19453:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,19453:36151628,1915420:16384,1179648,0 +[1,19469:3078558,4812305:0,0,0 +(1,19469:3078558,2439708:0,1703936,0 +g1,19469:29030814,2439708 +g1,19469:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,19469:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,19453:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,19469:37855564,2439708:1179648,16384,0 ) ) -k1,19453:3078556,2439708:-34777008 +k1,19469:3078556,2439708:-34777008 ) ] -[1,19453:3078558,4812305:0,0,0 -(1,19453:3078558,49800853:0,16384,2228224 -k1,19453:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,19453:2537886,49800853:1179648,16384,0 +[1,19469:3078558,4812305:0,0,0 +(1,19469:3078558,49800853:0,16384,2228224 +k1,19469:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,19469:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,19453:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,19469:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,19453:3078558,4812305:0,0,0 -(1,19453:3078558,49800853:0,16384,2228224 -g1,19453:29030814,49800853 -g1,19453:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,19453:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] +[1,19469:3078558,4812305:0,0,0 +(1,19469:3078558,49800853:0,16384,2228224 +g1,19469:29030814,49800853 +g1,19469:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,19469:36151628,51504789:16384,1179648,0 +) +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 +) +] +) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,19469:37855564,49800853:1179648,16384,0 +) +) +k1,19469:3078556,49800853:-34777008 +) +] +g1,19469:6630773,4812305 +k1,19469:21350816,4812305:13524666 +g1,19469:21999622,4812305 +g1,19469:25611966,4812305 +g1,19469:28956923,4812305 +g1,19469:29772190,4812305 +) +) +] +[1,19469:6630773,45706769:25952256,40108032,0 +(1,19469:6630773,45706769:25952256,40108032,0 +(1,19469:6630773,45706769:0,0,0 +g1,19469:6630773,45706769 +) +[1,19469:6630773,45706769:25952256,40108032,0 +v1,19423:6630773,6254097:0,393216,0 +(1,19430:6630773,8649345:25952256,2788464,196608 +g1,19430:6630773,8649345 +g1,19430:6630773,8649345 +g1,19430:6434165,8649345 +(1,19430:6434165,8649345:0,2788464,196608 +r1,19469:32779637,8649345:26345472,2985072,196608 +k1,19430:6434165,8649345:-26345472 ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,19453:37855564,49800853:1179648,16384,0 -) -) -k1,19453:3078556,49800853:-34777008 -) -] -g1,19453:6630773,4812305 -k1,19453:21350816,4812305:13524666 -g1,19453:21999622,4812305 -g1,19453:25611966,4812305 -g1,19453:28956923,4812305 -g1,19453:29772190,4812305 -) -) -] -[1,19453:6630773,45706769:25952256,40108032,0 -(1,19453:6630773,45706769:25952256,40108032,0 -(1,19453:6630773,45706769:0,0,0 -g1,19453:6630773,45706769 -) -[1,19453:6630773,45706769:25952256,40108032,0 -v1,19430:6630773,6254097:0,393216,0 -(1,19430:6630773,25318028:25952256,19457147,0 -g1,19430:6630773,25318028 -g1,19430:6303093,25318028 -r1,19453:6401397,25318028:98304,19457147,0 -g1,19430:6600626,25318028 -g1,19430:6797234,25318028 -[1,19430:6797234,25318028:25785795,19457147,0 -(1,19412:6797234,6616170:25785795,755289,196608 -(1,19411:6797234,6616170:0,755289,196608 -r1,19453:8134168,6616170:1336934,951897,196608 -k1,19411:6797234,6616170:-1336934 -) -(1,19411:6797234,6616170:1336934,755289,196608 -) -k1,19411:8337664,6616170:203496 -k1,19411:8665344,6616170:327680 -k1,19411:11466032,6616170:203496 -k1,19411:12688613,6616170:203496 -k1,19411:16418601,6616170:203496 -k1,19411:17281389,6616170:203496 -k1,19411:18762183,6616170:203497 -k1,19411:20853771,6616170:203496 -k1,19411:22451218,6616170:203496 -(1,19411:22451218,6616170:0,452978,115847 -r1,19453:28436873,6616170:5985655,568825,115847 -k1,19411:22451218,6616170:-5985655 -) -(1,19411:22451218,6616170:5985655,452978,115847 -g1,19411:26675037,6616170 -g1,19411:27378461,6616170 -h1,19411:28433596,6616170:0,411205,112570 -) -k1,19411:28640369,6616170:203496 -k1,19411:29375362,6616170:203496 -k1,19411:30645129,6616170:203496 -k1,19412:32583029,6616170:0 -) -(1,19412:6797234,7457658:25785795,513147,134348 -k1,19411:8658454,7457658:281147 -k1,19411:9591030,7457658:281148 -k1,19411:12339608,7457658:281147 -k1,19411:13639841,7457658:281148 -k1,19411:15803837,7457658:281147 -k1,19411:17362282,7457658:281148 -k1,19411:19037380,7457658:281147 -(1,19411:19037380,7457658:0,459977,115847 -r1,19453:23264476,7457658:4227096,575824,115847 -k1,19411:19037380,7457658:-4227096 -) -(1,19411:19037380,7457658:4227096,459977,115847 -k1,19411:19037380,7457658:3277 -h1,19411:23261199,7457658:0,411205,112570 -) -k1,19411:23719294,7457658:281148 -k1,19411:24628276,7457658:281147 -k1,19411:25928509,7457658:281148 -k1,19411:27515789,7457658:281147 -k1,19411:29164018,7457658:281148 -k1,19411:31330636,7457658:281147 -k1,19411:32583029,7457658:0 -) -(1,19412:6797234,8299146:25785795,513147,134348 -k1,19411:7545596,8299146:216865 -k1,19411:11261427,8299146:216864 -k1,19411:15485163,8299146:216865 -k1,19411:16649678,8299146:216864 -k1,19411:20930430,8299146:216865 -k1,19411:23718271,8299146:216864 -k1,19411:25007305,8299146:216865 -k1,19411:26290440,8299146:216864 -k1,19411:27526390,8299146:216865 -k1,19411:30687787,8299146:216864 -k1,19411:31563944,8299146:216865 -k1,19411:32583029,8299146:0 -) -(1,19412:6797234,9140634:25785795,513147,138281 -k1,19411:8405597,9140634:209825 -k1,19411:9231459,9140634:209824 -k1,19411:10460369,9140634:209825 -k1,19411:12121160,9140634:209824 -k1,19411:14020503,9140634:209825 -k1,19411:14846365,9140634:209824 -k1,19411:16075275,9140634:209825 -k1,19411:18526430,9140634:209824 -k1,19411:20103336,9140634:209825 -k1,19411:21332245,9140634:209824 -k1,19411:24156301,9140634:209825 -k1,19411:25025417,9140634:209824 -k1,19411:26254327,9140634:209825 -$1,19411:26254327,9140634 -$1,19411:26756988,9140634 -k1,19411:26966812,9140634:209824 -k1,19411:28368082,9140634:209825 -$1,19411:28368082,9140634 -$1,19411:28919895,9140634 -k1,19411:29129719,9140634:209824 -k1,19411:30738082,9140634:209825 -k1,19411:31563944,9140634:209824 -k1,19411:32583029,9140634:0 -) -(1,19412:6797234,9982122:25785795,513147,126483 -k1,19411:8243239,9982122:168708 -k1,19411:8943444,9982122:168708 -k1,19411:12102561,9982122:168709 -k1,19411:13194671,9982122:168708 -k1,19411:15061417,9982122:168708 -k1,19411:18968299,9982122:168708 -k1,19411:20128567,9982122:168708 -k1,19411:22542539,9982122:168709 -k1,19411:23730332,9982122:168708 -$1,19411:23730332,9982122 -$1,19411:24232993,9982122 -k1,19411:24401701,9982122:168708 -k1,19411:27414672,9982122:168708 -k1,19411:28114878,9982122:168709 -k1,19411:30585866,9982122:168708 -k1,19411:31563944,9982122:168708 -k1,19411:32583029,9982122:0 -) -(1,19412:6797234,10823610:25785795,513147,138281 -k1,19411:9309054,10823610:166286 -k1,19411:10727734,10823610:166287 -k1,19411:12085465,10823610:166286 -k1,19411:13270837,10823610:166287 -$1,19411:13270837,10823610 -$1,19411:13822650,10823610 -k1,19411:13988936,10823610:166286 -k1,19411:16999486,10823610:166287 -k1,19411:17975142,10823610:166286 -k1,19411:19160514,10823610:166287 -k1,19411:22642922,10823610:166286 -k1,19411:24235272,10823610:166287 -k1,19411:25473727,10823610:166286 -k1,19411:26659099,10823610:166287 -k1,19411:28060739,10823610:166286 -k1,19411:28886318,10823610:166287 -k1,19411:30071689,10823610:166286 -k1,19411:32583029,10823610:0 -) -(1,19412:6797234,11665098:25785795,505283,126483 -g1,19411:9581858,11665098 -g1,19411:10432515,11665098 -g1,19411:11650829,11665098 -(1,19411:11650829,11665098:0,414482,115847 -r1,19453:12009095,11665098:358266,530329,115847 -k1,19411:11650829,11665098:-358266 -) -(1,19411:11650829,11665098:358266,414482,115847 -k1,19411:11650829,11665098:3277 -h1,19411:12005818,11665098:0,411205,112570 -) -g1,19411:12208324,11665098 -g1,19411:15251816,11665098 -g1,19411:18008915,11665098 -g1,19411:18894306,11665098 -g1,19411:22859234,11665098 -k1,19412:32583029,11665098:7038785 -g1,19412:32583029,11665098 -) -v1,19414:6797234,12855564:0,393216,0 -(1,19422:6797234,15829081:25785795,3366733,196608 -g1,19422:6797234,15829081 -g1,19422:6797234,15829081 -g1,19422:6600626,15829081 -(1,19422:6600626,15829081:0,3366733,196608 -r1,19453:32779637,15829081:26179011,3563341,196608 -k1,19422:6600625,15829081:-26179012 -) -(1,19422:6600626,15829081:26179011,3366733,196608 -[1,19422:6797234,15829081:25785795,3170125,0 -(1,19416:6797234,13063182:25785795,404226,107478 -(1,19415:6797234,13063182:0,0,0 -g1,19415:6797234,13063182 -g1,19415:6797234,13063182 -g1,19415:6469554,13063182 -(1,19415:6469554,13063182:0,0,0 -) -g1,19415:6797234,13063182 -) -k1,19416:6797234,13063182:0 -g1,19416:10907128,13063182 -g1,19416:16597751,13063182 -g1,19416:21339937,13063182 -h1,19416:21656083,13063182:0,0,0 -k1,19416:32583029,13063182:10926946 -g1,19416:32583029,13063182 -) -(1,19417:6797234,13729360:25785795,410518,101187 -h1,19417:6797234,13729360:0,0,0 -g1,19417:7113380,13729360 -g1,19417:7429526,13729360 -g1,19417:7745672,13729360 -g1,19417:8061818,13729360 -g1,19417:14068586,13729360 -g1,19417:14700878,13729360 -g1,19417:16597753,13729360 -g1,19417:19126919,13729360 -g1,19417:19759211,13729360 -g1,19417:20391503,13729360 -g1,19417:21023795,13729360 -g1,19417:21972232,13729360 -h1,19417:22288378,13729360:0,0,0 -k1,19417:32583029,13729360:10294651 -g1,19417:32583029,13729360 -) -(1,19418:6797234,14395538:25785795,404226,107478 -h1,19418:6797234,14395538:0,0,0 -g1,19418:7113380,14395538 -g1,19418:7429526,14395538 -g1,19418:7745672,14395538 -g1,19418:8061818,14395538 -g1,19418:12171712,14395538 -h1,19418:12487858,14395538:0,0,0 -k1,19418:32583030,14395538:20095172 -g1,19418:32583030,14395538 -) -(1,19419:6797234,15061716:25785795,410518,101187 -h1,19419:6797234,15061716:0,0,0 -g1,19419:7113380,15061716 -g1,19419:7429526,15061716 -g1,19419:7745672,15061716 -g1,19419:8061818,15061716 -g1,19419:12171712,15061716 -h1,19419:12487858,15061716:0,0,0 -k1,19419:32583030,15061716:20095172 -g1,19419:32583030,15061716 -) -(1,19420:6797234,15727894:25785795,410518,101187 -h1,19420:6797234,15727894:0,0,0 -g1,19420:7113380,15727894 -g1,19420:7429526,15727894 -g1,19420:7745672,15727894 -g1,19420:8061818,15727894 -g1,19420:14700879,15727894 -g1,19420:16913899,15727894 -g1,19420:17546191,15727894 -h1,19420:19759211,15727894:0,0,0 -k1,19420:32583029,15727894:12823818 -g1,19420:32583029,15727894 -) -] -) -g1,19422:32583029,15829081 -g1,19422:6797234,15829081 -g1,19422:6797234,15829081 -g1,19422:32583029,15829081 -g1,19422:32583029,15829081 -) -h1,19422:6797234,16025689:0,0,0 -(1,19425:6797234,25318028:25785795,8702515,0 -k1,19425:8086603,25318028:1289369 -h1,19424:8086603,25318028:0,0,0 -(1,19424:8086603,25318028:23207058,8702515,0 -(1,19424:8086603,25318028:23206763,8702536,0 -(1,19424:8086603,25318028:23206763,8702536,0 -(1,19424:8086603,25318028:0,8702536,0 -(1,19424:8086603,25318028:0,14208860,0 -(1,19424:8086603,25318028:37890292,14208860,0 -) -k1,19424:8086603,25318028:-37890292 -) -) -g1,19424:31293366,25318028 -) -) -) -g1,19425:31293661,25318028 -k1,19425:32583029,25318028:1289368 -) -] -g1,19430:32583029,25318028 -) -h1,19430:6630773,25318028:0,0,0 -(1,19433:6630773,26491626:25952256,513147,134348 -h1,19432:6630773,26491626:983040,0,0 -k1,19432:8404996,26491626:163348 -k1,19432:11148497,26491626:163349 -k1,19432:14359269,26491626:163349 -k1,19432:17063448,26491626:163348 -$1,19432:17063448,26491626 -$1,19432:17631645,26491626 -k1,19432:17794993,26491626:163348 -k1,19432:19708153,26491626:163349 -k1,19432:22724940,26491626:163349 -k1,19432:25109959,26491626:163348 -k1,19432:25924735,26491626:163348 -k1,19432:28075791,26491626:163349 -k1,19432:30173763,26491626:163349 -k1,19432:31812326,26491626:163348 -k1,19433:32583029,26491626:0 -) -(1,19433:6630773,27333114:25952256,513147,134348 -(1,19432:6630773,27333114:0,452978,115847 -r1,19453:10506157,27333114:3875384,568825,115847 -k1,19432:6630773,27333114:-3875384 -) -(1,19432:6630773,27333114:3875384,452978,115847 -k1,19432:6630773,27333114:3277 -h1,19432:10502880,27333114:0,411205,112570 -) -k1,19432:10748559,27333114:242402 -k1,19432:14271693,27333114:242402 -k1,19432:15200257,27333114:242402 -k1,19432:17186572,27333114:242402 -k1,19432:18996595,27333114:242402 -k1,19432:21819148,27333114:242401 -k1,19432:24890083,27333114:242402 -k1,19432:26121423,27333114:242402 -k1,19432:27435994,27333114:242402 -k1,19432:28294434,27333114:242402 -k1,19432:31202841,27333114:242402 -k1,19432:32583029,27333114:0 -) -(1,19433:6630773,28174602:25952256,513147,138281 -k1,19432:8882631,28174602:203858 -k1,19432:11960244,28174602:203859 -k1,19432:14082996,28174602:203858 -$1,19432:14082996,28174602 -$1,19432:14585657,28174602 -k1,19432:14789516,28174602:203859 -k1,19432:15524871,28174602:203858 -k1,19432:16538099,28174602:203858 -k1,19432:17761043,28174602:203859 -k1,19432:18915173,28174602:203858 -k1,19432:20310477,28174602:203859 -$1,19432:20310477,28174602 -$1,19432:20862290,28174602 -k1,19432:21066148,28174602:203858 -k1,19432:22079376,28174602:203858 -k1,19432:23302320,28174602:203859 -k1,19432:24713351,28174602:203858 -k1,19432:26410776,28174602:203859 -k1,19432:27300796,28174602:203858 -(1,19432:27300796,28174602:0,459977,115847 -r1,19453:32583029,28174602:5282233,575824,115847 -k1,19432:27300796,28174602:-5282233 -) -(1,19432:27300796,28174602:5282233,459977,115847 -g1,19432:30117768,28174602 -g1,19432:30821192,28174602 -g1,19432:31524616,28174602 -g1,19432:32228040,28174602 -h1,19432:32579752,28174602:0,411205,112570 -) -k1,19432:32583029,28174602:0 -) -(1,19433:6630773,29016090:25952256,513147,134348 -k1,19432:9989329,29016090:285573 -k1,19432:10630762,29016090:285573 -k1,19432:13000380,29016090:285573 -k1,19432:16566685,29016090:285573 -k1,19432:18246209,29016090:285573 -k1,19432:19450597,29016090:285573 -k1,19432:21723877,29016090:285573 -k1,19432:23944073,29016090:285573 -k1,19432:27429114,29016090:285573 -k1,19432:28342522,29016090:285573 -k1,19432:29647180,29016090:285573 -k1,19432:31316873,29016090:285573 -k1,19432:32583029,29016090:0 -) -(1,19433:6630773,29857578:25952256,513147,126483 -k1,19432:7571531,29857578:281466 -k1,19432:10844716,29857578:281466 -k1,19432:11994535,29857578:281467 -k1,19432:13368486,29857578:281466 -(1,19432:13368486,29857578:0,452978,115847 -r1,19453:19002429,29857578:5633943,568825,115847 -k1,19432:13368486,29857578:-5633943 -) -(1,19432:13368486,29857578:5633943,452978,115847 -k1,19432:13368486,29857578:3277 -h1,19432:18999152,29857578:0,411205,112570 -) -k1,19432:19457565,29857578:281466 -k1,19432:20366866,29857578:281466 -k1,19432:21667418,29857578:281467 -k1,19432:23255017,29857578:281466 -k1,19432:26197900,29857578:281466 -k1,19432:27095404,29857578:281466 -k1,19432:28580112,29857578:281467 -k1,19432:30301404,29857578:281466 -k1,19432:31601955,29857578:281466 -k1,19433:32583029,29857578:0 -) -(1,19433:6630773,30699066:25952256,513147,126483 -k1,19432:8448620,30699066:320349 -(1,19432:8448620,30699066:0,459977,115847 -r1,19453:13730853,30699066:5282233,575824,115847 -k1,19432:8448620,30699066:-5282233 -) -(1,19432:8448620,30699066:5282233,459977,115847 -g1,19432:11265592,30699066 -g1,19432:11969016,30699066 -g1,19432:12672440,30699066 -g1,19432:13375864,30699066 -h1,19432:13727576,30699066:0,411205,112570 -) -k1,19432:14051202,30699066:320349 -k1,19432:14903048,30699066:320349 -k1,19432:16910294,30699066:320349 -k1,19432:18920161,30699066:320349 -k1,19432:19856547,30699066:320348 -k1,19432:21195981,30699066:320349 -k1,19432:23757661,30699066:320349 -k1,19432:26739427,30699066:320349 -k1,19432:27928128,30699066:320349 -k1,19432:29685682,30699066:320349 -k1,19433:32583029,30699066:0 -) -(1,19433:6630773,31540554:25952256,513147,134348 -(1,19432:6630773,31540554:0,459977,115847 -r1,19453:11913006,31540554:5282233,575824,115847 -k1,19432:6630773,31540554:-5282233 -) -(1,19432:6630773,31540554:5282233,459977,115847 -g1,19432:9447745,31540554 -g1,19432:10151169,31540554 -g1,19432:10854593,31540554 -g1,19432:11558017,31540554 -h1,19432:11909729,31540554:0,411205,112570 -) -k1,19432:12129764,31540554:216758 -k1,19432:12997949,31540554:216757 -k1,19432:14843277,31540554:216758 -k1,19432:16079119,31540554:216757 -k1,19432:18763308,31540554:216758 -k1,19432:19639358,31540554:216758 -k1,19432:20875200,31540554:216757 -k1,19432:22804414,31540554:216758 -k1,19432:25182548,31540554:216757 -k1,19432:26228336,31540554:216758 -k1,19432:28160826,31540554:216757 -k1,19432:29396669,31540554:216758 -k1,19432:32583029,31540554:0 -) -(1,19433:6630773,32382042:25952256,505283,134348 -g1,19432:8533938,32382042 -g1,19432:9601519,32382042 -g1,19432:11078045,32382042 -g1,19432:12743970,32382042 -g1,19432:14755925,32382042 -g1,19432:18602233,32382042 -g1,19432:19610832,32382042 -g1,19432:20829146,32382042 -g1,19432:22681848,32382042 -k1,19433:32583029,32382042:8119912 -g1,19433:32583029,32382042 -) -v1,19435:6630773,33380330:0,393216,0 -(1,19443:6630773,36353847:25952256,3366733,196608 -g1,19443:6630773,36353847 -g1,19443:6630773,36353847 -g1,19443:6434165,36353847 -(1,19443:6434165,36353847:0,3366733,196608 -r1,19453:32779637,36353847:26345472,3563341,196608 -k1,19443:6434165,36353847:-26345472 -) -(1,19443:6434165,36353847:26345472,3366733,196608 -[1,19443:6630773,36353847:25952256,3170125,0 -(1,19437:6630773,33587948:25952256,404226,107478 -(1,19436:6630773,33587948:0,0,0 -g1,19436:6630773,33587948 -g1,19436:6630773,33587948 -g1,19436:6303093,33587948 -(1,19436:6303093,33587948:0,0,0 -) -g1,19436:6630773,33587948 -) -k1,19437:6630773,33587948:0 -g1,19437:10740667,33587948 -g1,19437:16431290,33587948 -g1,19437:21173476,33587948 -h1,19437:21489622,33587948:0,0,0 -k1,19437:32583029,33587948:11093407 -g1,19437:32583029,33587948 -) -(1,19438:6630773,34254126:25952256,404226,101187 -h1,19438:6630773,34254126:0,0,0 -g1,19438:6946919,34254126 -g1,19438:7263065,34254126 -g1,19438:7579211,34254126 -g1,19438:7895357,34254126 -g1,19438:13269834,34254126 -h1,19438:13585980,34254126:0,0,0 -k1,19438:32583028,34254126:18997048 -g1,19438:32583028,34254126 -) -(1,19439:6630773,34920304:25952256,410518,101187 -h1,19439:6630773,34920304:0,0,0 -g1,19439:6946919,34920304 -g1,19439:7263065,34920304 -g1,19439:7579211,34920304 -g1,19439:7895357,34920304 -g1,19439:15166709,34920304 -g1,19439:15799001,34920304 -g1,19439:16431293,34920304 -g1,19439:17063585,34920304 -g1,19439:18012023,34920304 -g1,19439:19908897,34920304 -g1,19439:20541189,34920304 -g1,19439:22754209,34920304 -g1,19439:24334938,34920304 -g1,19439:24967230,34920304 -g1,19439:28128687,34920304 -h1,19439:28444833,34920304:0,0,0 -k1,19439:32583029,34920304:4138196 -g1,19439:32583029,34920304 -) -(1,19440:6630773,35586482:25952256,404226,107478 -h1,19440:6630773,35586482:0,0,0 -g1,19440:6946919,35586482 -g1,19440:7263065,35586482 -g1,19440:7579211,35586482 -g1,19440:7895357,35586482 -g1,19440:12005251,35586482 -h1,19440:12321397,35586482:0,0,0 -k1,19440:32583029,35586482:20261632 -g1,19440:32583029,35586482 -) -(1,19441:6630773,36252660:25952256,410518,101187 -h1,19441:6630773,36252660:0,0,0 -g1,19441:6946919,36252660 -g1,19441:7263065,36252660 -g1,19441:7579211,36252660 -g1,19441:7895357,36252660 -g1,19441:14534418,36252660 -g1,19441:16747438,36252660 -g1,19441:17379730,36252660 -h1,19441:19592750,36252660:0,0,0 -k1,19441:32583029,36252660:12990279 -g1,19441:32583029,36252660 -) -] -) -g1,19443:32583029,36353847 -g1,19443:6630773,36353847 -g1,19443:6630773,36353847 -g1,19443:32583029,36353847 -g1,19443:32583029,36353847 -) -h1,19443:6630773,36550455:0,0,0 -(1,19446:6630773,45706769:25952256,8758668,0 -k1,19446:7928465,45706769:1297692 -h1,19445:7928465,45706769:0,0,0 -(1,19445:7928465,45706769:23356872,8758668,0 -(1,19445:7928465,45706769:23356506,8758690,0 -(1,19445:7928465,45706769:23356506,8758690,0 -(1,19445:7928465,45706769:0,8758690,0 -(1,19445:7928465,45706769:0,14208860,0 -(1,19445:7928465,45706769:37890292,14208860,0 -) -k1,19445:7928465,45706769:-37890292 -) -) -g1,19445:31284971,45706769 -) -) -) -g1,19446:31285337,45706769 -k1,19446:32583029,45706769:1297692 -) -] -(1,19453:32583029,45706769:0,0,0 -g1,19453:32583029,45706769 -) -) -] -(1,19453:6630773,47279633:25952256,0,0 -h1,19453:6630773,47279633:25952256,0,0 -) -] -(1,19453:4262630,4025873:0,0,0 -[1,19453:-473656,4025873:0,0,0 -(1,19453:-473656,-710413:0,0,0 -(1,19453:-473656,-710413:0,0,0 -g1,19453:-473656,-710413 -) -g1,19453:-473656,-710413 -) -] -) -] -!20161 -}347 -Input:3068:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3069:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3070:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3071:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3072:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3073:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3074:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3075:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!764 -{348 -[1,19499:4262630,47279633:28320399,43253760,0 -(1,19499:4262630,4025873:0,0,0 -[1,19499:-473656,4025873:0,0,0 -(1,19499:-473656,-710413:0,0,0 -(1,19499:-473656,-644877:0,0,0 -k1,19499:-473656,-644877:-65536 +(1,19430:6434165,8649345:26345472,2788464,196608 +[1,19430:6630773,8649345:25952256,2591856,0 +(1,19425:6630773,6488534:25952256,431045,112852 +(1,19424:6630773,6488534:0,0,0 +g1,19424:6630773,6488534 +g1,19424:6630773,6488534 +g1,19424:6303093,6488534 +(1,19424:6303093,6488534:0,0,0 +) +g1,19424:6630773,6488534 +) +k1,19425:6630773,6488534:0 +g1,19425:11942036,6488534 +g1,19425:15593530,6488534 +g1,19425:16589392,6488534 +g1,19425:18249162,6488534 +g1,19425:18913070,6488534 +g1,19425:21568702,6488534 +h1,19425:21900656,6488534:0,0,0 +k1,19425:32583029,6488534:10682373 +g1,19425:32583029,6488534 +) +(1,19426:6630773,7173389:25952256,424439,112852 +h1,19426:6630773,7173389:0,0,0 +g1,19426:6962727,7173389 +g1,19426:7294681,7173389 +g1,19426:13269852,7173389 +g1,19426:13933760,7173389 +g1,19426:15925484,7173389 +h1,19426:16257438,7173389:0,0,0 +k1,19426:32583029,7173389:16325591 +g1,19426:32583029,7173389 +) +(1,19427:6630773,7858244:25952256,424439,112852 +h1,19427:6630773,7858244:0,0,0 +g1,19427:6962727,7858244 +g1,19427:7294681,7858244 +g1,19427:12937898,7858244 +g1,19427:13601806,7858244 +g1,19427:15593530,7858244 +g1,19427:17253300,7858244 +g1,19427:17917208,7858244 +k1,19427:17917208,7858244:0 +h1,19427:19245024,7858244:0,0,0 +k1,19427:32583029,7858244:13338005 +g1,19427:32583029,7858244 +) +(1,19428:6630773,8543099:25952256,424439,106246 +h1,19428:6630773,8543099:0,0,0 +g1,19428:6962727,8543099 +g1,19428:7294681,8543099 +g1,19428:7626635,8543099 +g1,19428:7958589,8543099 +g1,19428:8290543,8543099 +g1,19428:8622497,8543099 +g1,19428:8954451,8543099 +g1,19428:9286405,8543099 +g1,19428:9618359,8543099 +g1,19428:9950313,8543099 +g1,19428:10282267,8543099 +g1,19428:10614221,8543099 +g1,19428:10946175,8543099 +g1,19428:12937899,8543099 +g1,19428:13601807,8543099 +g1,19428:16589393,8543099 +g1,19428:18581117,8543099 +g1,19428:19245025,8543099 +h1,19428:20240887,8543099:0,0,0 +k1,19428:32583029,8543099:12342142 +g1,19428:32583029,8543099 +) +] +) +g1,19430:32583029,8649345 +g1,19430:6630773,8649345 +g1,19430:6630773,8649345 +g1,19430:32583029,8649345 +g1,19430:32583029,8649345 +) +h1,19430:6630773,8845953:0,0,0 +(1,19433:6630773,19421978:25952256,10510489,0 +k1,19433:12599879,19421978:5969106 +h1,19432:12599879,19421978:0,0,0 +(1,19432:12599879,19421978:14014044,10510489,0 +(1,19432:12599879,19421978:14014019,10510515,0 +(1,19432:12599879,19421978:14014019,10510515,0 +(1,19432:12599879,19421978:0,10510515,0 +(1,19432:12599879,19421978:0,14208860,0 +(1,19432:12599879,19421978:18945146,14208860,0 +) +k1,19432:12599879,19421978:-18945146 +) +) +g1,19432:26613898,19421978 +) +) +) +g1,19433:26613923,19421978 +k1,19433:32583029,19421978:5969106 +) +(1,19440:6630773,20287058:25952256,505283,134348 +h1,19439:6630773,20287058:983040,0,0 +k1,19439:8587797,20287058:156095 +k1,19439:10137842,20287058:156094 +k1,19439:11995907,20287058:156095 +k1,19439:15742719,20287058:156095 +k1,19439:17407453,20287058:156095 +k1,19439:21204072,20287058:156094 +k1,19439:23193864,20287058:156095 +k1,19439:24816655,20287058:156095 +k1,19439:25991835,20287058:156095 +k1,19439:27868904,20287058:156094 +k1,19439:31089463,20287058:156095 +k1,19439:32583029,20287058:0 +) +(1,19440:6630773,21152138:25952256,513147,126483 +g1,19439:7516164,21152138 +g1,19439:9505181,21152138 +g1,19439:10895855,21152138 +g1,19439:13127355,21152138 +g1,19439:15723891,21152138 +g1,19439:16574548,21152138 +g1,19439:18470504,21152138 +g1,19439:20386121,21152138 +g1,19439:21244642,21152138 +g1,19439:23308370,21152138 +k1,19440:32583029,21152138:4436136 +g1,19440:32583029,21152138 +) +(1,19442:6630773,22017218:25952256,513147,126483 +h1,19441:6630773,22017218:983040,0,0 +k1,19441:9730844,22017218:300373 +k1,19441:11747605,22017218:300373 +k1,19441:12707270,22017218:300373 +k1,19441:15633015,22017218:300373 +k1,19441:18155059,22017218:300373 +k1,19441:19106861,22017218:300374 +k1,19441:21181294,22017218:300373 +k1,19441:23089265,22017218:300373 +k1,19441:24381198,22017218:300373 +k1,19441:27893491,22017218:300373 +k1,19441:29801462,22017218:300373 +k1,19441:31293280,22017218:300373 +k1,19442:32583029,22017218:0 +) +(1,19442:6630773,22882298:25952256,513147,134348 +k1,19441:8572605,22882298:160563 +k1,19441:9924613,22882298:160563 +k1,19441:11189458,22882298:160563 +k1,19441:12097787,22882298:160563 +k1,19441:15299221,22882298:160563 +k1,19441:16853735,22882298:160563 +k1,19441:20454283,22882298:160563 +k1,19441:22996424,22882298:160563 +k1,19441:23773025,22882298:160563 +k1,19441:26844042,22882298:160563 +k1,19441:31391584,22882298:160563 +k1,19441:32583029,22882298:0 +) +(1,19442:6630773,23747378:25952256,513147,134348 +k1,19441:9751872,23747378:171980 +k1,19441:13894022,23747378:171979 +k1,19441:14553563,23747378:171953 +k1,19441:17343706,23747378:171980 +k1,19441:20177102,23747378:171979 +k1,19441:21008374,23747378:171980 +k1,19441:21536214,23747378:171980 +k1,19441:24918802,23747378:171979 +k1,19441:26368079,23747378:171980 +k1,19441:27071556,23747378:171980 +k1,19441:29319060,23747378:171979 +k1,19441:31533142,23747378:171980 +k1,19441:32583029,23747378:0 +) +(1,19442:6630773,24612458:25952256,513147,134348 +k1,19441:7808001,24612458:158143 +k1,19441:12792216,24612458:158144 +k1,19441:13609651,24612458:158143 +k1,19441:14786879,24612458:158143 +k1,19441:17855477,24612458:158144 +k1,19441:18961271,24612458:158143 +k1,19441:21236882,24612458:158143 +k1,19441:23217581,24612458:158143 +k1,19441:24394810,24612458:158144 +k1,19441:26304730,24612458:158143 +k1,19441:28875909,24612458:158143 +k1,19441:29650091,24612458:158144 +k1,19441:31316873,24612458:158143 +k1,19442:32583029,24612458:0 +k1,19442:32583029,24612458:0 +) +v1,19444:6630773,25297313:0,393216,0 +(1,19449:6630773,26322851:25952256,1418754,196608 +g1,19449:6630773,26322851 +g1,19449:6630773,26322851 +g1,19449:6434165,26322851 +(1,19449:6434165,26322851:0,1418754,196608 +r1,19469:32779637,26322851:26345472,1615362,196608 +k1,19449:6434165,26322851:-26345472 +) +(1,19449:6434165,26322851:26345472,1418754,196608 +[1,19449:6630773,26322851:25952256,1222146,0 +(1,19446:6630773,25525144:25952256,424439,112852 +(1,19445:6630773,25525144:0,0,0 +g1,19445:6630773,25525144 +g1,19445:6630773,25525144 +g1,19445:6303093,25525144 +(1,19445:6303093,25525144:0,0,0 +) +g1,19445:6630773,25525144 +) +k1,19446:6630773,25525144:0 +g1,19446:11942036,25525144 +g1,19446:15593530,25525144 +g1,19446:16921346,25525144 +h1,19446:17253300,25525144:0,0,0 +k1,19446:32583029,25525144:15329729 +g1,19446:32583029,25525144 +) +(1,19447:6630773,26209999:25952256,424439,112852 +h1,19447:6630773,26209999:0,0,0 +g1,19447:6962727,26209999 +g1,19447:7294681,26209999 +k1,19447:7294681,26209999:0 +h1,19447:13269852,26209999:0,0,0 +k1,19447:32583028,26209999:19313176 +g1,19447:32583028,26209999 +) +] +) +g1,19449:32583029,26322851 +g1,19449:6630773,26322851 +g1,19449:6630773,26322851 +g1,19449:32583029,26322851 +g1,19449:32583029,26322851 +) +h1,19449:6630773,26519459:0,0,0 +(1,19452:6630773,37095484:25952256,10510489,0 +k1,19452:12599879,37095484:5969106 +h1,19451:12599879,37095484:0,0,0 +(1,19451:12599879,37095484:14014044,10510489,0 +(1,19451:12599879,37095484:14014019,10510515,0 +(1,19451:12599879,37095484:14014019,10510515,0 +(1,19451:12599879,37095484:0,10510515,0 +(1,19451:12599879,37095484:0,14208860,0 +(1,19451:12599879,37095484:18945146,14208860,0 +) +k1,19451:12599879,37095484:-18945146 +) +) +g1,19451:26613898,37095484 +) +) +) +g1,19452:26613923,37095484 +k1,19452:32583029,37095484:5969106 +) +(1,19461:6630773,39926644:25952256,32768,229376 +(1,19461:6630773,39926644:0,32768,229376 +(1,19461:6630773,39926644:5505024,32768,229376 +r1,19469:12135797,39926644:5505024,262144,229376 +) +k1,19461:6630773,39926644:-5505024 +) +(1,19461:6630773,39926644:25952256,32768,0 +r1,19469:32583029,39926644:25952256,32768,0 +) +) +(1,19461:6630773,41558496:25952256,606339,151780 +(1,19461:6630773,41558496:1974731,582746,14155 +g1,19461:6630773,41558496 +g1,19461:8605504,41558496 +) +g1,19461:11801564,41558496 +g1,19461:13606426,41558496 +k1,19461:32583029,41558496:16552033 +g1,19461:32583029,41558496 +) +(1,19469:6630773,42816792:25952256,505283,134348 +k1,19468:9750287,42816792:156631 +k1,19468:10365015,42816792:156631 +k1,19468:11053143,42816792:156631 +k1,19468:12228858,42816792:156630 +k1,19468:14103188,42816792:156631 +k1,19468:14911247,42816792:156631 +k1,19468:17156510,42816792:156631 +k1,19468:18920739,42816792:156631 +k1,19468:19802198,42816792:156631 +k1,19468:21243335,42816792:156631 +k1,19468:22419051,42816792:156631 +k1,19468:26582553,42816792:156631 +k1,19468:29250523,42816792:156630 +k1,19468:29938651,42816792:156631 +k1,19468:30904652,42816792:156631 +k1,19468:32080368,42816792:156631 +$1,19468:32080368,42816792 +$1,19468:32583029,42816792 +k1,19469:32583029,42816792:0 +) +(1,19469:6630773,43681872:25952256,505283,134348 +k1,19468:8247512,43681872:190676 +k1,19468:9507736,43681872:190676 +k1,19468:12283807,43681872:190676 +k1,19468:13125911,43681872:190676 +k1,19468:14335672,43681872:190676 +(1,19468:14335672,43681872:0,414482,115847 +r1,19469:14693938,43681872:358266,530329,115847 +k1,19468:14335672,43681872:-358266 +) +(1,19468:14335672,43681872:358266,414482,115847 +k1,19468:14335672,43681872:3277 +h1,19468:14690661,43681872:0,411205,112570 +) +k1,19468:14884614,43681872:190676 +k1,19468:18093222,43681872:190675 +k1,19468:19938682,43681872:190676 +k1,19468:21120918,43681872:190676 +k1,19468:24468463,43681872:190676 +k1,19468:26578033,43681872:190676 +k1,19468:29807613,43681872:190676 +k1,19468:31017374,43681872:190676 +k1,19468:32583029,43681872:0 +) +(1,19469:6630773,44546952:25952256,513147,138281 +k1,19468:7514731,44546952:224666 +$1,19468:7514731,44546952 +$1,19468:8017392,44546952 +k1,19468:8242057,44546952:224665 +k1,19468:9658168,44546952:224666 +$1,19468:9658168,44546952 +$1,19468:10209981,44546952 +k1,19468:10434646,44546952:224665 +k1,19468:11190809,44546952:224666 +k1,19468:13566366,44546952:224665 +k1,19468:14418867,44546952:224666 +k1,19468:17415050,44546952:224665 +k1,19468:18842957,44546952:224666 +k1,19468:19599119,44546952:224665 +k1,19468:22913808,44546952:224666 +k1,19468:23824635,44546952:224665 +k1,19468:26455783,44546952:224666 +k1,19468:27666109,44546952:224665 +k1,19468:31343212,44546952:224666 +k1,19468:32227169,44546952:224665 +k1,19468:32583029,44546952:0 +) +(1,19469:6630773,45412032:25952256,513147,134348 +k1,19468:8276634,45412032:194894 +k1,19468:9099363,45412032:194894 +k1,19468:10313343,45412032:194895 +k1,19468:12914064,45412032:194894 +k1,19468:15387645,45412032:194894 +k1,19468:15795527,45412032:194890 +k1,19468:19123042,45412032:194894 +k1,19468:20784632,45412032:194894 +k1,19468:22676908,45412032:194894 +k1,19468:24790696,45412032:194894 +k1,19468:26004676,45412032:194895 +k1,19468:28667001,45412032:194894 +k1,19468:29393392,45412032:194894 +k1,19468:32583029,45412032:0 +) +] +(1,19469:32583029,45706769:0,0,0 +g1,19469:32583029,45706769 +) +) +] +(1,19469:6630773,47279633:25952256,0,0 +h1,19469:6630773,47279633:25952256,0,0 +) +] +(1,19469:4262630,4025873:0,0,0 +[1,19469:-473656,4025873:0,0,0 +(1,19469:-473656,-710413:0,0,0 +(1,19469:-473656,-710413:0,0,0 +g1,19469:-473656,-710413 +) +g1,19469:-473656,-710413 +) +] +) +] +!14364 +}327 +Input:3086:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3087:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3088:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3089:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!388 +{328 +[1,19513:4262630,47279633:28320399,43253760,0 +(1,19513:4262630,4025873:0,0,0 +[1,19513:-473656,4025873:0,0,0 +(1,19513:-473656,-710413:0,0,0 +(1,19513:-473656,-644877:0,0,0 +k1,19513:-473656,-644877:-65536 ) -(1,19499:-473656,4736287:0,0,0 -k1,19499:-473656,4736287:5209943 +(1,19513:-473656,4736287:0,0,0 +k1,19513:-473656,4736287:5209943 ) -g1,19499:-473656,-710413 +g1,19513:-473656,-710413 ) ] ) -[1,19499:6630773,47279633:25952256,43253760,0 -[1,19499:6630773,4812305:25952256,786432,0 -(1,19499:6630773,4812305:25952256,505283,126483 -(1,19499:6630773,4812305:25952256,505283,126483 -g1,19499:3078558,4812305 -[1,19499:3078558,4812305:0,0,0 -(1,19499:3078558,2439708:0,1703936,0 -k1,19499:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,19499:2537886,2439708:1179648,16384,0 +[1,19513:6630773,47279633:25952256,43253760,0 +[1,19513:6630773,4812305:25952256,786432,0 +(1,19513:6630773,4812305:25952256,505283,126483 +(1,19513:6630773,4812305:25952256,505283,126483 +g1,19513:3078558,4812305 +[1,19513:3078558,4812305:0,0,0 +(1,19513:3078558,2439708:0,1703936,0 +k1,19513:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,19513:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,19499:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,19513:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,19499:3078558,4812305:0,0,0 -(1,19499:3078558,2439708:0,1703936,0 -g1,19499:29030814,2439708 -g1,19499:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,19499:36151628,1915420:16384,1179648,0 +[1,19513:3078558,4812305:0,0,0 +(1,19513:3078558,2439708:0,1703936,0 +g1,19513:29030814,2439708 +g1,19513:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,19513:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,19499:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,19513:37855564,2439708:1179648,16384,0 ) ) -k1,19499:3078556,2439708:-34777008 -) -] -[1,19499:3078558,4812305:0,0,0 -(1,19499:3078558,49800853:0,16384,2228224 -k1,19499:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,19499:2537886,49800853:1179648,16384,0 -) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,19499:3078558,51504789:16384,1179648,0 -) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,19513:3078556,2439708:-34777008 ) ] +[1,19513:3078558,4812305:0,0,0 +(1,19513:3078558,49800853:0,16384,2228224 +k1,19513:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,19513:2537886,49800853:1179648,16384,0 ) +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,19513:3078558,51504789:16384,1179648,0 ) +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] -[1,19499:3078558,4812305:0,0,0 -(1,19499:3078558,49800853:0,16384,2228224 -g1,19499:29030814,49800853 -g1,19499:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,19499:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] -) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,19499:37855564,49800853:1179648,16384,0 -) -) -k1,19499:3078556,49800853:-34777008 -) -] -g1,19499:6630773,4812305 -g1,19499:6630773,4812305 -g1,19499:9104757,4812305 -g1,19499:10491498,4812305 -g1,19499:12580130,4812305 -k1,19499:31387652,4812305:18807522 -) -) -] -[1,19499:6630773,45706769:25952256,40108032,0 -(1,19499:6630773,45706769:25952256,40108032,0 -(1,19499:6630773,45706769:0,0,0 -g1,19499:6630773,45706769 -) -[1,19499:6630773,45706769:25952256,40108032,0 -(1,19453:6630773,6254097:25952256,513147,126483 -h1,19452:6630773,6254097:983040,0,0 -k1,19452:8511572,6254097:269924 -k1,19452:9800580,6254097:269923 -k1,19452:11437585,6254097:269924 -k1,19452:12366800,6254097:269923 -k1,19452:13655809,6254097:269924 -(1,19452:13655809,6254097:0,452978,115847 -r1,19499:15069210,6254097:1413401,568825,115847 -k1,19452:13655809,6254097:-1413401 -) -(1,19452:13655809,6254097:1413401,452978,115847 -k1,19452:13655809,6254097:3277 -h1,19452:15065933,6254097:0,411205,112570 -) -k1,19452:15339134,6254097:269924 -k1,19452:16998420,6254097:269923 -k1,19452:18781570,6254097:269924 -k1,19452:19999145,6254097:269924 -k1,19452:21965795,6254097:269923 -k1,19452:25401108,6254097:269924 -k1,19452:27137727,6254097:269923 -k1,19452:31069803,6254097:269924 -k1,19452:32583029,6254097:0 -) -(1,19453:6630773,7095585:25952256,505283,138281 -k1,19452:8699946,7095585:213849 -k1,19452:9565223,7095585:213849 -k1,19452:11591798,7095585:213849 -k1,19452:15122424,7095585:213849 -k1,19452:16327833,7095585:213849 -k1,19452:18708302,7095585:213849 -k1,19452:20118837,7095585:213848 -k1,19452:23174327,7095585:213849 -k1,19452:25973571,7095585:213849 -k1,19452:26838848,7095585:213849 -$1,19452:26838848,7095585 -$1,19452:27341509,7095585 -k1,19452:27555358,7095585:213849 -$1,19452:28746803,7095585 -$1,19452:29298616,7095585 -k1,19452:29512465,7095585:213849 -k1,19452:30717874,7095585:213849 -k1,19453:32583029,7095585:0 -) -(1,19453:6630773,7937073:25952256,505283,134348 -k1,19452:8421418,7937073:204674 -k1,19452:9698261,7937073:204674 -k1,19452:11369630,7937073:204673 -k1,19452:12565864,7937073:204674 -k1,19452:15895295,7937073:204674 -k1,19452:17493920,7937073:204674 -k1,19452:19305536,7937073:204673 -k1,19452:20701655,7937073:204674 -k1,19452:23216473,7937073:204674 -k1,19452:24072575,7937073:204674 -k1,19452:27343022,7937073:204673 -k1,19452:30547279,7937073:204674 -k1,19452:31379788,7937073:204674 -k1,19452:32583029,7937073:0 -) -(1,19453:6630773,8778561:25952256,505283,126483 -k1,19452:8176644,8778561:178790 -k1,19452:9374519,8778561:178790 -k1,19452:11795952,8778561:178791 -k1,19452:14959252,8778561:178790 -k1,19452:15669539,8778561:178790 -k1,19452:16499757,8778561:178790 -k1,19452:17744818,8778561:178790 -k1,19452:20322226,8778561:178790 -k1,19452:21785523,8778561:178791 -k1,19452:23619097,8778561:178790 -k1,19452:24329384,8778561:178790 -k1,19452:24864034,8778561:178790 -k1,19452:27554164,8778561:178790 -k1,19452:29017461,8778561:178791 -k1,19452:30300533,8778561:178790 -k1,19452:31227089,8778561:178790 -k1,19453:32583029,8778561:0 -) -(1,19453:6630773,9620049:25952256,505283,134348 -k1,19452:9159154,9620049:172362 -k1,19452:13512058,9620049:172362 -k1,19452:14875865,9620049:172362 -k1,19452:17375410,9620049:172362 -k1,19452:18640256,9620049:172361 -k1,19452:19168478,9620049:172362 -k1,19452:21795163,9620049:172362 -k1,19452:23113750,9620049:172362 -k1,19452:25171583,9620049:172362 -k1,19452:26596338,9620049:172362 -k1,19452:28234058,9620049:172335 -k1,19452:31896867,9620049:172362 -k1,19452:32583029,9620049:0 -) -(1,19453:6630773,10461537:25952256,505283,7863 -g1,19452:7934284,10461537 -g1,19452:8881279,10461537 -g1,19452:10520334,10461537 -k1,19453:32583028,10461537:20020592 -g1,19453:32583028,10461537 -) -v1,19455:6630773,11652003:0,393216,0 -(1,19462:6630773,13959342:25952256,2700555,196608 -g1,19462:6630773,13959342 -g1,19462:6630773,13959342 -g1,19462:6434165,13959342 -(1,19462:6434165,13959342:0,2700555,196608 -r1,19499:32779637,13959342:26345472,2897163,196608 -k1,19462:6434165,13959342:-26345472 -) -(1,19462:6434165,13959342:26345472,2700555,196608 -[1,19462:6630773,13959342:25952256,2503947,0 -(1,19457:6630773,11859621:25952256,404226,107478 -(1,19456:6630773,11859621:0,0,0 -g1,19456:6630773,11859621 -g1,19456:6630773,11859621 -g1,19456:6303093,11859621 -(1,19456:6303093,11859621:0,0,0 -) -g1,19456:6630773,11859621 -) -k1,19457:6630773,11859621:0 -g1,19457:10740667,11859621 -g1,19457:16431290,11859621 -g1,19457:21173476,11859621 -h1,19457:21489622,11859621:0,0,0 -k1,19457:32583029,11859621:11093407 -g1,19457:32583029,11859621 -) -(1,19458:6630773,12525799:25952256,404226,76021 -h1,19458:6630773,12525799:0,0,0 -g1,19458:6946919,12525799 -g1,19458:7263065,12525799 -g1,19458:7579211,12525799 -g1,19458:7895357,12525799 -g1,19458:12637542,12525799 -h1,19458:12953688,12525799:0,0,0 -k1,19458:32583028,12525799:19629340 -g1,19458:32583028,12525799 -) -(1,19459:6630773,13191977:25952256,404226,107478 -h1,19459:6630773,13191977:0,0,0 -g1,19459:6946919,13191977 -g1,19459:7263065,13191977 -g1,19459:7579211,13191977 -g1,19459:7895357,13191977 -g1,19459:12005251,13191977 -h1,19459:12321397,13191977:0,0,0 -k1,19459:32583029,13191977:20261632 -g1,19459:32583029,13191977 -) -(1,19460:6630773,13858155:25952256,410518,101187 -h1,19460:6630773,13858155:0,0,0 -g1,19460:6946919,13858155 -g1,19460:7263065,13858155 -g1,19460:7579211,13858155 -g1,19460:7895357,13858155 -g1,19460:14534418,13858155 -g1,19460:16747438,13858155 -g1,19460:17379730,13858155 -h1,19460:19592750,13858155:0,0,0 -k1,19460:32583029,13858155:12990279 -g1,19460:32583029,13858155 -) -] -) -g1,19462:32583029,13959342 -g1,19462:6630773,13959342 -g1,19462:6630773,13959342 -g1,19462:32583029,13959342 -g1,19462:32583029,13959342 -) -h1,19462:6630773,14155950:0,0,0 -(1,19465:6630773,23504442:25952256,8758668,0 -k1,19465:7928465,23504442:1297692 -h1,19464:7928465,23504442:0,0,0 -(1,19464:7928465,23504442:23356872,8758668,0 -(1,19464:7928465,23504442:23356506,8758690,0 -(1,19464:7928465,23504442:23356506,8758690,0 -(1,19464:7928465,23504442:0,8758690,0 -(1,19464:7928465,23504442:0,14208860,0 -(1,19464:7928465,23504442:37890292,14208860,0 -) -k1,19464:7928465,23504442:-37890292 -) -) -g1,19464:31284971,23504442 -) -) -) -g1,19465:31285337,23504442 -k1,19465:32583029,23504442:1297692 -) -(1,19472:6630773,24345930:25952256,505283,126483 -h1,19471:6630773,24345930:983040,0,0 -k1,19471:8394867,24345930:293466 -k1,19471:10910100,24345930:293562 -k1,19471:13880151,24345930:293561 -k1,19471:14705209,24345930:293561 -k1,19471:16696808,24345930:293561 -k1,19471:17858721,24345930:293561 -k1,19471:19682548,24345930:293561 -k1,19471:20627537,24345930:293561 -k1,19471:24488878,24345930:293561 -k1,19471:25398478,24345930:293562 -k1,19471:26711124,24345930:293561 -k1,19471:28658158,24345930:293561 -k1,19471:30229016,24345930:293561 -k1,19471:32080368,24345930:293561 -$1,19471:32080368,24345930 -$1,19471:32583029,24345930 -k1,19472:32583029,24345930:0 -) -(1,19472:6630773,25187418:25952256,505283,138281 -k1,19471:8160647,25187418:338429 -$1,19471:8160647,25187418 -$1,19471:8712460,25187418 -k1,19471:9050888,25187418:338428 -k1,19471:11573632,25187418:338429 -k1,19471:12399508,25187418:338288 -k1,19471:14862614,25187418:338429 -k1,19471:17862459,25187418:338428 -k1,19471:18732385,25187418:338429 -k1,19471:21258405,25187418:338428 -k1,19471:21952694,25187418:338429 -k1,19471:23979329,25187418:338428 -k1,19471:25711709,25187418:338429 -k1,19471:29788311,25187418:338428 -k1,19471:31821501,25187418:338429 -k1,19471:32583029,25187418:0 -) -(1,19472:6630773,26028906:25952256,505283,138281 -k1,19471:7937168,26028906:287310 -k1,19471:10292793,26028906:287309 -k1,19471:12324671,26028906:287310 -k1,19471:13631066,26028906:287310 -$1,19471:13631066,26028906 -$1,19471:14133727,26028906 -k1,19471:14421037,26028906:287310 -k1,19471:15899791,26028906:287309 -$1,19471:15899791,26028906 -$1,19471:16451604,26028906 -k1,19471:16738914,26028906:287310 -k1,19471:18424762,26028906:287310 -k1,19471:19398234,26028906:287310 -k1,19471:20553895,26028906:287309 -k1,19471:22371471,26028906:287310 -k1,19471:23310209,26028906:287310 -k1,19471:25034724,26028906:287310 -k1,19471:27018760,26028906:287309 -k1,19471:30514713,26028906:287310 -k1,19471:32583029,26028906:0 -) -(1,19472:6630773,26870394:25952256,505283,134348 -k1,19471:11806106,26870394:323047 -k1,19471:12780580,26870394:323046 -(1,19471:12780580,26870394:0,452978,122846 -r1,19499:17007676,26870394:4227096,575824,122846 -k1,19471:12780580,26870394:-4227096 -) -(1,19471:12780580,26870394:4227096,452978,122846 -k1,19471:12780580,26870394:3277 -h1,19471:17004399,26870394:0,411205,112570 -) -k1,19471:17504393,26870394:323047 -k1,19471:20362372,26870394:323046 -k1,19471:23513952,26870394:323047 -k1,19471:26597374,26870394:323046 -(1,19471:26597374,26870394:0,452978,115847 -r1,19499:32583029,26870394:5985655,568825,115847 -k1,19471:26597374,26870394:-5985655 -) -(1,19471:26597374,26870394:5985655,452978,115847 -k1,19471:26597374,26870394:3277 -h1,19471:32579752,26870394:0,411205,112570 -) -k1,19471:32583029,26870394:0 -) -(1,19472:6630773,27711882:25952256,505283,115847 -k1,19471:8062388,27711882:240170 -(1,19471:8062388,27711882:0,452978,115847 -r1,19499:14048043,27711882:5985655,568825,115847 -k1,19471:8062388,27711882:-5985655 -) -(1,19471:8062388,27711882:5985655,452978,115847 -k1,19471:8062388,27711882:3277 -h1,19471:14044766,27711882:0,411205,112570 -) -k1,19471:14461882,27711882:240169 -k1,19471:17636754,27711882:240170 -(1,19471:17636754,27711882:0,452978,115847 -r1,19499:23622409,27711882:5985655,568825,115847 -k1,19471:17636754,27711882:-5985655 -) -(1,19471:17636754,27711882:5985655,452978,115847 -k1,19471:17636754,27711882:3277 -h1,19471:23619132,27711882:0,411205,112570 -) -k1,19471:23862579,27711882:240170 -k1,19471:25525535,27711882:240169 -k1,19471:27286140,27711882:240170 -k1,19471:28717755,27711882:240170 -k1,19471:29489421,27711882:240169 -k1,19471:31931601,27711882:240170 -k1,19472:32583029,27711882:0 -) -(1,19472:6630773,28553370:25952256,505283,134348 -(1,19471:6630773,28553370:0,452978,115847 -r1,19499:12616428,28553370:5985655,568825,115847 -k1,19471:6630773,28553370:-5985655 -) -(1,19471:6630773,28553370:5985655,452978,115847 -k1,19471:6630773,28553370:3277 -h1,19471:12613151,28553370:0,411205,112570 -) -k1,19471:12867039,28553370:250611 -k1,19471:13733687,28553370:250610 -k1,19471:15314679,28553370:250611 -k1,19471:16584375,28553370:250611 -k1,19471:20043628,28553370:250610 -k1,19471:22304884,28553370:250611 -k1,19471:23547055,28553370:250611 -k1,19471:26750062,28553370:250610 -k1,19471:29535606,28553370:250611 -k1,19471:32583029,28553370:0 -) -(1,19472:6630773,29394858:25952256,513147,126483 -k1,19471:9586220,29394858:195071 -k1,19471:10953729,29394858:195070 -k1,19471:15054746,29394858:195071 -k1,19471:18885099,29394858:195071 -k1,19471:19747326,29394858:195071 -(1,19471:19747326,29394858:0,452978,115847 -r1,19499:24677846,29394858:4930520,568825,115847 -k1,19471:19747326,29394858:-4930520 -) -(1,19471:19747326,29394858:4930520,452978,115847 -k1,19471:19747326,29394858:3277 -h1,19471:24674569,29394858:0,411205,112570 -) -k1,19471:25046586,29394858:195070 -(1,19471:25046586,29394858:0,452978,115847 -r1,19499:30328817,29394858:5282231,568825,115847 -k1,19471:25046586,29394858:-5282231 -) -(1,19471:25046586,29394858:5282231,452978,115847 -k1,19471:25046586,29394858:3277 -h1,19471:30325540,29394858:0,411205,112570 -) -k1,19471:30697558,29394858:195071 -k1,19471:32583029,29394858:0 -) -(1,19472:6630773,30236346:25952256,513147,138281 -k1,19471:9085907,30236346:173826 -k1,19471:10278818,30236346:173826 -k1,19471:12106118,30236346:173827 -k1,19471:15270352,30236346:173826 -k1,19471:18139674,30236346:173826 -k1,19471:20058068,30236346:173826 -$1,19471:20058068,30236346 -$1,19471:20560729,30236346 -k1,19471:20734555,30236346:173826 -k1,19471:22099826,30236346:173826 -$1,19471:22099826,30236346 -$1,19471:22651639,30236346 -k1,19471:22999136,30236346:173827 -k1,19471:24364407,30236346:173826 -(1,19471:24364407,30236346:0,452978,115847 -r1,19499:30350062,30236346:5985655,568825,115847 -k1,19471:24364407,30236346:-5985655 -) -(1,19471:24364407,30236346:5985655,452978,115847 -k1,19471:24364407,30236346:3277 -h1,19471:30346785,30236346:0,411205,112570 -) -k1,19471:30697558,30236346:173826 -k1,19471:32583029,30236346:0 -) -(1,19472:6630773,31077834:25952256,513147,138281 -g1,19471:9208304,31077834 -g1,19471:10564243,31077834 -g1,19471:13458968,31077834 -g1,19471:14605848,31077834 -$1,19471:14605848,31077834 -$1,19471:15108509,31077834 -g1,19471:15307738,31077834 -g1,19471:16698412,31077834 -g1,19471:18054351,31077834 -g1,19471:19201231,31077834 -$1,19471:19201231,31077834 -$1,19471:19753044,31077834 -k1,19472:32583029,31077834:12656315 -g1,19472:32583029,31077834 -) -v1,19474:6630773,32268300:0,393216,0 -(1,19481:6630773,34575639:25952256,2700555,196608 -g1,19481:6630773,34575639 -g1,19481:6630773,34575639 -g1,19481:6434165,34575639 -(1,19481:6434165,34575639:0,2700555,196608 -r1,19499:32779637,34575639:26345472,2897163,196608 -k1,19481:6434165,34575639:-26345472 -) -(1,19481:6434165,34575639:26345472,2700555,196608 -[1,19481:6630773,34575639:25952256,2503947,0 -(1,19476:6630773,32475918:25952256,404226,107478 -(1,19475:6630773,32475918:0,0,0 -g1,19475:6630773,32475918 -g1,19475:6630773,32475918 -g1,19475:6303093,32475918 -(1,19475:6303093,32475918:0,0,0 -) -g1,19475:6630773,32475918 -) -k1,19476:6630773,32475918:0 -g1,19476:10740667,32475918 -g1,19476:16431290,32475918 -g1,19476:21173476,32475918 -h1,19476:21489622,32475918:0,0,0 -k1,19476:32583029,32475918:11093407 -g1,19476:32583029,32475918 -) -(1,19477:6630773,33142096:25952256,404226,107478 -h1,19477:6630773,33142096:0,0,0 -g1,19477:6946919,33142096 -g1,19477:7263065,33142096 -g1,19477:7579211,33142096 -g1,19477:7895357,33142096 -g1,19477:12005251,33142096 -h1,19477:12321397,33142096:0,0,0 -k1,19477:32583029,33142096:20261632 -g1,19477:32583029,33142096 -) -(1,19478:6630773,33808274:25952256,404226,76021 -h1,19478:6630773,33808274:0,0,0 -g1,19478:6946919,33808274 -g1,19478:7263065,33808274 -g1,19478:7579211,33808274 -g1,19478:7895357,33808274 -g1,19478:14218271,33808274 -g1,19478:14850563,33808274 -g1,19478:17063583,33808274 -h1,19478:17379729,33808274:0,0,0 -k1,19478:32583029,33808274:15203300 -g1,19478:32583029,33808274 -) -(1,19479:6630773,34474452:25952256,410518,101187 -h1,19479:6630773,34474452:0,0,0 -g1,19479:6946919,34474452 -g1,19479:7263065,34474452 -g1,19479:7579211,34474452 -g1,19479:7895357,34474452 -g1,19479:14534418,34474452 -g1,19479:16747438,34474452 -g1,19479:17379730,34474452 -h1,19479:19592750,34474452:0,0,0 -k1,19479:32583029,34474452:12990279 -g1,19479:32583029,34474452 -) -] -) -g1,19481:32583029,34575639 -g1,19481:6630773,34575639 -g1,19481:6630773,34575639 -g1,19481:32583029,34575639 -g1,19481:32583029,34575639 -) -h1,19481:6630773,34772247:0,0,0 -(1,19484:6630773,44120739:25952256,8758668,0 -k1,19484:7928465,44120739:1297692 -h1,19483:7928465,44120739:0,0,0 -(1,19483:7928465,44120739:23356872,8758668,0 -(1,19483:7928465,44120739:23356506,8758690,0 -(1,19483:7928465,44120739:23356506,8758690,0 -(1,19483:7928465,44120739:0,8758690,0 -(1,19483:7928465,44120739:0,14208860,0 -(1,19483:7928465,44120739:37890292,14208860,0 -) -k1,19483:7928465,44120739:-37890292 -) -) -g1,19483:31284971,44120739 -) -) -) -g1,19484:31285337,44120739 -k1,19484:32583029,44120739:1297692 -) -v1,19491:6630773,45311205:0,393216,0 -] -(1,19499:32583029,45706769:0,0,0 -g1,19499:32583029,45706769 ) ) -] -(1,19499:6630773,47279633:25952256,0,0 -h1,19499:6630773,47279633:25952256,0,0 ) ] -(1,19499:4262630,4025873:0,0,0 -[1,19499:-473656,4025873:0,0,0 -(1,19499:-473656,-710413:0,0,0 -(1,19499:-473656,-710413:0,0,0 -g1,19499:-473656,-710413 -) -g1,19499:-473656,-710413 +[1,19513:3078558,4812305:0,0,0 +(1,19513:3078558,49800853:0,16384,2228224 +g1,19513:29030814,49800853 +g1,19513:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,19513:36151628,51504789:16384,1179648,0 +) +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 +) +] +) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,19513:37855564,49800853:1179648,16384,0 +) +) +k1,19513:3078556,49800853:-34777008 +) +] +g1,19513:6630773,4812305 +g1,19513:6630773,4812305 +g1,19513:9104757,4812305 +g1,19513:10491498,4812305 +g1,19513:12580130,4812305 +k1,19513:31387652,4812305:18807522 +) +) +] +[1,19513:6630773,45706769:25952256,40108032,0 +(1,19513:6630773,45706769:25952256,40108032,0 +(1,19513:6630773,45706769:0,0,0 +g1,19513:6630773,45706769 +) +[1,19513:6630773,45706769:25952256,40108032,0 +(1,19469:6630773,6254097:25952256,505283,134348 +k1,19468:8094452,6254097:272234 +k1,19468:10285580,6254097:272234 +k1,19468:11015911,6254097:272234 +k1,19468:13910240,6254097:272234 +k1,19468:15563318,6254097:272234 +k1,19468:19904682,6254097:272234 +k1,19468:21893959,6254097:272234 +k1,19468:25673680,6254097:272234 +k1,19468:27092139,6254097:272234 +(1,19468:27092139,6254097:0,452978,122846 +r1,19513:31319235,6254097:4227096,575824,122846 +k1,19468:27092139,6254097:-4227096 +) +(1,19468:27092139,6254097:4227096,452978,122846 +k1,19468:27092139,6254097:3277 +h1,19468:31315958,6254097:0,411205,112570 +) +k1,19468:31591469,6254097:272234 +k1,19468:32583029,6254097:0 +) +(1,19469:6630773,7119177:25952256,513147,126483 +k1,19468:10236161,7119177:246668 +k1,19468:11292199,7119177:246668 +k1,19468:12557953,7119177:246669 +k1,19468:13169002,7119177:246668 +k1,19468:14607115,7119177:246668 +k1,19468:15261417,7119177:246668 +k1,19468:18856319,7119177:246668 +k1,19468:20175156,7119177:246668 +k1,19468:22454096,7119177:246669 +k1,19468:23846989,7119177:246668 +(1,19468:23846989,7119177:0,452978,122846 +r1,19513:27722373,7119177:3875384,575824,122846 +k1,19468:23846989,7119177:-3875384 +) +(1,19468:23846989,7119177:3875384,452978,122846 +k1,19468:23846989,7119177:3277 +h1,19468:27719096,7119177:0,411205,112570 +) +k1,19468:27969041,7119177:246668 +k1,19468:30626779,7119177:246668 +k1,19469:32583029,7119177:0 +) +(1,19469:6630773,7984257:25952256,513147,126483 +g1,19468:8415318,7984257 +g1,19468:9423917,7984257 +g1,19468:9987527,7984257 +g1,19468:11378201,7984257 +g1,19468:12116791,7984257 +g1,19468:13696864,7984257 +g1,19468:14427590,7984257 +g1,19468:15912635,7984257 +g1,19468:17130949,7984257 +g1,19468:19027560,7984257 +g1,19468:20174440,7984257 +g1,19468:22536357,7984257 +g1,19468:23501702,7984257 +k1,19469:32583029,7984257:6248206 +g1,19469:32583029,7984257 +) +(1,19471:6630773,8849337:25952256,513147,134348 +h1,19470:6630773,8849337:983040,0,0 +k1,19470:10775269,8849337:332923 +k1,19470:13441929,8849337:332923 +k1,19470:15491239,8849337:332922 +k1,19470:18680876,8849337:332923 +k1,19470:21481230,8849337:332923 +k1,19470:22430191,8849337:332923 +k1,19470:24364813,8849337:332922 +k1,19470:28205223,8849337:332923 +k1,19470:29729591,8849337:332923 +k1,19470:32583029,8849337:0 +) +(1,19471:6630773,9714417:25952256,513147,134348 +k1,19470:8859753,9714417:310086 +k1,19470:9627936,9714417:310086 +k1,19470:10469519,9714417:310086 +k1,19470:14566275,9714417:310086 +k1,19470:16611754,9714417:310086 +k1,19470:17277700,9714417:310086 +k1,19470:18870981,9714417:310086 +k1,19470:21438782,9714417:310086 +k1,19470:23129712,9714417:310086 +k1,19470:24722993,9714417:310086 +k1,19470:28017589,9714417:310086 +k1,19470:28859172,9714417:310086 +k1,19470:31931601,9714417:310086 +k1,19470:32583029,9714417:0 +) +(1,19471:6630773,10579497:25952256,513147,134348 +k1,19470:7941384,10579497:291526 +k1,19470:9289350,10579497:291526 +k1,19470:10240168,10579497:291526 +k1,19470:11550779,10579497:291526 +k1,19470:15250177,10579497:291526 +k1,19470:17961292,10579497:291526 +k1,19470:19444262,10579497:291525 +k1,19470:21937798,10579497:291526 +k1,19470:22880752,10579497:291526 +k1,19470:24456784,10579497:291526 +k1,19470:28949823,10579497:291526 +k1,19470:30002877,10579497:291526 +k1,19470:32583029,10579497:0 +) +(1,19471:6630773,11444577:25952256,513147,134348 +k1,19470:10371436,11444577:355730 +k1,19470:13661867,11444577:355729 +k1,19470:16344780,11444577:355730 +k1,19470:17359801,11444577:355729 +k1,19470:20319276,11444577:355730 +k1,19470:21958201,11444577:355730 +k1,19470:25630052,11444577:355729 +k1,19470:27543573,11444577:355730 +k1,19470:30925099,11444577:355729 +k1,19470:31966991,11444577:355730 +k1,19470:32583029,11444577:0 +) +(1,19471:6630773,12309657:25952256,513147,134348 +k1,19470:10329207,12309657:313501 +k1,19470:11973088,12309657:313500 +k1,19470:13305674,12309657:313501 +k1,19470:17145666,12309657:313500 +k1,19470:18118459,12309657:313501 +k1,19470:20183736,12309657:313500 +k1,19470:22055028,12309657:313501 +k1,19470:25394325,12309657:313500 +k1,19470:27275447,12309657:313501 +k1,19470:30417481,12309657:313501 +k1,19470:31835263,12309657:313500 +k1,19470:32583029,12309657:0 +) +(1,19471:6630773,13174737:25952256,505283,134348 +k1,19470:9595458,13174737:303268 +k1,19470:10660254,13174737:303268 +k1,19470:11982606,13174737:303267 +k1,19470:13840388,13174737:303268 +k1,19470:15524500,13174737:303268 +k1,19470:16928773,13174737:303268 +k1,19470:18975953,13174737:303267 +k1,19470:22490484,13174737:303268 +k1,19470:24766386,13174737:303268 +k1,19470:28404126,13174737:303268 +k1,19470:29898838,13174737:303267 +k1,19470:31221191,13174737:303268 +k1,19471:32583029,13174737:0 +) +(1,19471:6630773,14039817:25952256,513147,134348 +k1,19470:7960677,14039817:339655 +k1,19470:8959624,14039817:339655 +k1,19470:11544542,14039817:339655 +k1,19470:13491795,14039817:339655 +k1,19470:15701848,14039817:339655 +k1,19470:17232949,14039817:339656 +k1,19470:19222801,14039817:339655 +k1,19470:22387713,14039817:339655 +k1,19470:25690251,14039817:339655 +k1,19470:28858439,14039817:339655 +k1,19470:30299099,14039817:339655 +k1,19471:32583029,14039817:0 +) +(1,19471:6630773,14904897:25952256,513147,134348 +(1,19470:6630773,14904897:0,459977,115847 +r1,19513:10857869,14904897:4227096,575824,115847 +k1,19470:6630773,14904897:-4227096 +) +(1,19470:6630773,14904897:4227096,459977,115847 +k1,19470:6630773,14904897:3277 +h1,19470:10854592,14904897:0,411205,112570 +) +k1,19470:11137433,14904897:279564 +k1,19470:12364647,14904897:279563 +k1,19470:13000071,14904897:279564 +k1,19470:14668343,14904897:279564 +k1,19470:16546984,14904897:279563 +k1,19470:18029789,14904897:279564 +k1,19470:20418957,14904897:279564 +k1,19470:21717605,14904897:279563 +k1,19470:23880018,14904897:279564 +k1,19470:25436879,14904897:279564 +k1,19470:27668104,14904897:279563 +k1,19470:29390115,14904897:279564 +k1,19470:32583029,14904897:0 +) +(1,19471:6630773,15769977:25952256,505283,126483 +k1,19471:32583028,15769977:23890492 +g1,19471:32583028,15769977 +) +(1,19473:6630773,16635057:25952256,513147,138281 +h1,19472:6630773,16635057:983040,0,0 +k1,19472:9543983,16635057:146935 +k1,19472:10046778,16635057:146935 +k1,19472:12087704,16635057:146936 +k1,19472:12766136,16635057:146935 +k1,19472:15498466,16635057:146935 +k1,19472:16296829,16635057:146935 +$1,19472:16296829,16635057 +$1,19472:16799490,16635057 +k1,19472:16946425,16635057:146935 +k1,19472:17776246,16635057:146936 +$1,19472:17776246,16635057 +$1,19472:18328059,16635057 +k1,19472:18474994,16635057:146935 +k1,19472:21089360,16635057:146935 +k1,19472:21767792,16635057:146935 +k1,19472:25278035,16635057:146935 +k1,19472:25912507,16635057:146884 +k1,19472:27953432,16635057:146935 +k1,19472:30360048,16635057:146935 +k1,19472:32583029,16635057:0 +) +(1,19473:6630773,17500137:25952256,513147,134348 +k1,19472:8006072,17500137:183854 +k1,19472:11698067,17500137:183853 +k1,19472:12873481,17500137:183854 +k1,19472:16265978,17500137:183854 +k1,19472:17506271,17500137:183853 +k1,19472:19756475,17500137:183854 +k1,19472:21009877,17500137:183854 +k1,19472:22250171,17500137:183854 +k1,19472:23896132,17500137:183853 +k1,19472:24739278,17500137:183854 +k1,19472:25942217,17500137:183854 +k1,19472:28020060,17500137:183853 +k1,19472:31923737,17500137:183854 +k1,19472:32583029,17500137:0 +) +(1,19473:6630773,18365217:25952256,513147,138281 +k1,19472:7878273,18365217:228415 +k1,19472:10000677,18365217:228414 +k1,19472:11967107,18365217:228415 +k1,19472:14780917,18365217:228415 +k1,19472:15660759,18365217:228414 +k1,19472:16908259,18365217:228415 +$1,19472:16908259,18365217 +$1,19472:17410920,18365217 +k1,19472:17639335,18365217:228415 +k1,19472:18550634,18365217:228414 +$1,19472:18550634,18365217 +$1,19472:19102447,18365217 +k1,19472:19330862,18365217:228415 +k1,19472:22577210,18365217:228415 +k1,19472:25488668,18365217:228414 +k1,19472:26908528,18365217:228415 +k1,19472:28714395,18365217:228415 +k1,19472:29758077,18365217:228414 +k1,19472:31052763,18365217:228415 +k1,19472:32583029,18365217:0 +) +(1,19473:6630773,19230297:25952256,505283,134348 +g1,19472:7961809,19230297 +g1,19472:10355183,19230297 +g1,19472:12638457,19230297 +g1,19472:13523848,19230297 +g1,19472:14181174,19230297 +g1,19472:15587576,19230297 +g1,19472:16805890,19230297 +g1,19472:18372200,19230297 +g1,19472:19965380,19230297 +g1,19472:22744761,19230297 +k1,19473:32583029,19230297:6453335 +g1,19473:32583029,19230297 +) +(1,19475:6630773,20095377:25952256,513147,134348 +h1,19474:6630773,20095377:983040,0,0 +k1,19474:9643404,20095377:197204 +k1,19474:10832167,20095377:197203 +k1,19474:12315187,20095377:197204 +k1,19474:14209773,20095377:197204 +k1,19474:15691483,20095377:197204 +k1,19474:18180480,20095377:197203 +k1,19474:19758528,20095377:197204 +k1,19474:24024862,20095377:197204 +k1,19474:25264088,20095377:197204 +k1,19474:28296378,20095377:197203 +k1,19474:30961013,20095377:197204 +k1,19474:32583029,20095377:0 +) +(1,19475:6630773,20960457:25952256,513147,138281 +k1,19474:7589363,20960457:210824 +k1,19474:10957712,20960457:210824 +k1,19474:14101272,20960457:210824 +k1,19474:14778058,20960457:210825 +k1,19474:16455578,20960457:210824 +$1,19474:16455578,20960457 +$1,19474:16958239,20960457 +k1,19474:17169063,20960457:210824 +k1,19474:18571332,20960457:210824 +$1,19474:18571332,20960457 +$1,19474:19123145,20960457 +k1,19474:19333969,20960457:210824 +k1,19474:20536353,20960457:210824 +k1,19474:23332573,20960457:210825 +k1,19474:24194825,20960457:210824 +k1,19474:27976050,20960457:210824 +k1,19474:31202185,20960457:210824 +k1,19474:32583029,20960457:0 +) +(1,19475:6630773,21825537:25952256,513147,138281 +g1,19474:7535169,21825537 +g1,19474:8682049,21825537 +g1,19474:11716365,21825537 +g1,19474:12934679,21825537 +g1,19474:14500989,21825537 +g1,19474:16094169,21825537 +(1,19474:16094169,21825537:0,452978,115847 +r1,19513:20672977,21825537:4578808,568825,115847 +k1,19474:16094169,21825537:-4578808 +) +(1,19474:16094169,21825537:4578808,452978,115847 +k1,19474:16094169,21825537:3277 +h1,19474:20669700,21825537:0,411205,112570 +) +g1,19474:20872206,21825537 +g1,19474:22262880,21825537 +g1,19474:22817969,21825537 +g1,19474:23704671,21825537 +g1,19474:24563192,21825537 +$1,19474:24563192,21825537 +$1,19474:25065853,21825537 +g1,19474:25265082,21825537 +g1,19474:26273681,21825537 +$1,19474:26273681,21825537 +$1,19474:26825494,21825537 +k1,19475:32583029,21825537:5583865 +g1,19475:32583029,21825537 +) +v1,19477:6630773,22690617:0,393216,0 +(1,19513:6630773,40256484:25952256,17959083,0 +g1,19513:6630773,40256484 +g1,19513:6237557,40256484 +r1,19513:6368629,40256484:131072,17959083,0 +g1,19513:6567858,40256484 +g1,19513:6764466,40256484 +[1,19513:6764466,40256484:25818563,17959083,0 +(1,19478:6764466,22998915:25818563,701514,196608 +(1,19477:6764466,22998915:0,701514,196608 +r1,19513:8010564,22998915:1246098,898122,196608 +k1,19477:6764466,22998915:-1246098 +) +(1,19477:6764466,22998915:1246098,701514,196608 +) +k1,19477:8153463,22998915:142899 +k1,19477:8481143,22998915:327680 +k1,19477:9251877,22998915:142899 +k1,19477:11420494,22998915:142899 +k1,19477:14590501,22998915:142899 +k1,19477:17160854,22998915:142899 +k1,19477:20830245,22998915:142899 +k1,19477:21541340,22998915:142898 +k1,19477:22645652,22998915:142899 +k1,19477:24961725,22998915:142899 +k1,19477:25720662,22998915:142899 +k1,19477:28504662,22998915:142899 +k1,19477:29932067,22998915:142899 +k1,19477:30606463,22998915:142899 +k1,19478:32583029,22998915:0 +) +(1,19478:6764466,23863995:25818563,513147,138281 +k1,19477:7937863,23863995:183148 +k1,19477:9140096,23863995:183148 +k1,19477:13124987,23863995:183148 +k1,19477:14821361,23863995:183148 +k1,19477:18043413,23863995:183148 +k1,19477:19245646,23863995:183148 +k1,19477:22566657,23863995:183147 +k1,19477:23409097,23863995:183148 +k1,19477:24611330,23863995:183148 +$1,19477:24611330,23863995 +$1,19477:25113991,23863995 +k1,19477:25297139,23863995:183148 +k1,19477:26671732,23863995:183148 +$1,19477:26671732,23863995 +$1,19477:27223545,23863995 +k1,19477:27406693,23863995:183148 +k1,19477:30938075,23863995:183148 +k1,19477:32583029,23863995:0 +) +(1,19478:6764466,24729075:25818563,513147,138281 +k1,19477:9783273,24729075:264984 +k1,19477:11067342,24729075:264984 +k1,19477:15134069,24729075:264984 +k1,19477:16418137,24729075:264983 +k1,19477:19820985,24729075:264984 +k1,19477:20745261,24729075:264984 +k1,19477:22029330,24729075:264984 +$1,19477:22029330,24729075 +$1,19477:22531991,24729075 +k1,19477:22796975,24729075:264984 +k1,19477:24253404,24729075:264984 +$1,19477:24253404,24729075 +$1,19477:24805217,24729075 +k1,19477:25070200,24729075:264983 +k1,19477:28509748,24729075:264984 +k1,19477:29766292,24729075:264984 +k1,19477:32583029,24729075:0 +) +(1,19478:6764466,25594155:25818563,505283,134348 +g1,19477:8665665,25594155 +g1,19477:11688185,25594155 +k1,19478:32583029,25594155:18645648 +g1,19478:32583029,25594155 +) +(1,19493:6764466,29364451:25818563,2702060,0 +h1,19482:6764466,29364451:0,0,0 +(1,19492:6764466,29364451:25819507,2702060,0 +(1,19492:6764466,29364451:0,2702060,0 +(1,19492:6764466,29364451:0,2673868,0 +(1,19492:6764466,29364451:25550112,2673868,0 +(1,19492:6764466,29364451:25550112,2673868,0 +(1,19492:6764466,29364451:25550112,2673868,0 +g1,19492:8975190,29364451 +(1,19492:8975190,28027517:0,0,0 +(1,19492:8975190,28027517:0,0,0 +g1,19492:8975190,28027517 +(1,19492:8975190,28027517:0,0,0 +(1,19492:8975190,28027517:0,0,0 +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +(1,19492:8975190,28027517:0,0,0 +(1,19492:8975190,28027517:3932160,505283,7863 +(1,19492:8975190,28027517:3932160,505283,7863 +[1,19492:8975190,28027517:3932160,505283,7863 +(1,19492:8975190,28027517:3932160,505283,7863 +k1,19492:10250521,28027517:1275331 +h1,19492:10250521,28027517:0,0,0 +h1,19492:10250521,28027517:0,0,0 +k1,19492:11632020,28027517:0 +k1,19492:12907350,28027517:1275330 +) +] +) +g1,19492:12907350,28027517 +) +) +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +) +) +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +(1,19492:8975190,28027517:0,0,0 +(1,19492:8975190,28027517:0,0,0 +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +(1,19492:8975190,28027517:0,0,0 +(1,19492:8975190,28027517:3932160,473825,7863 +(1,19492:8975190,28027517:3932160,473825,7863 +[1,19492:8975190,28027517:3932160,473825,7863 +(1,19492:8975190,28027517:3932160,473825,7863 +k1,19492:9701984,28027517:726794 +h1,19492:9701984,28027517:0,0,0 +h1,19492:9701984,28027517:0,0,0 +k1,19492:12180556,28027517:0 +k1,19492:12907350,28027517:726794 +) +] +) +g1,19492:12907350,28027517 +) +) +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +) +) +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +(1,19492:8975190,28027517:0,0,0 +(1,19492:8975190,28027517:0,0,0 +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +(1,19492:8975190,28027517:0,0,0 +(1,19492:8975190,28027517:3932160,416809,134348 +(1,19492:8975190,28027517:3932160,416809,134348 +[1,19492:8975190,28027517:3932160,416809,134348 +(1,19492:8975190,28027517:3932160,416809,134348 +k1,19492:9437219,28027517:462029 +h1,19492:9437219,28027517:0,0,0 +h1,19492:9437219,28027517:0,0,0 +k1,19492:12445322,28027517:0 +k1,19492:12907350,28027517:462028 +) +] +) +g1,19492:12907350,28027517 +) +) +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +) +) +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +(1,19492:8975190,28027517:0,0,0 +(1,19492:8975190,28027517:0,0,0 +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +(1,19492:8975190,28027517:0,0,0 +(1,19492:8975190,28027517:3932160,505283,991563 +(1,19492:8975190,28027517:3932160,505283,991563 +[1,19492:8975190,28027517:3932160,505283,991563 +(1,19492:8975190,28027517:3932160,505283,7863 +k1,19492:9509636,28027517:534446 +h1,19492:9509636,28027517:0,0,0 +h1,19492:9509636,28027517:0,0,0 +k1,19492:12372904,28027517:0 +k1,19492:12907350,28027517:534446 +) +(1,19492:8975190,28892597:3932160,505283,126483 +k1,19492:10316384,28892597:1341194 +h1,19492:10316384,28892597:0,0,0 +k1,19492:11566156,28892597:0 +k1,19492:12907350,28892597:1341194 ) ] ) -] -!18102 -}348 -Input:3076:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3077:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3078:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3079:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3080:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3081:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3082:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3083:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!764 -{349 -[1,19542:4262630,47279633:28320399,43253760,0 -(1,19542:4262630,4025873:0,0,0 -[1,19542:-473656,4025873:0,0,0 -(1,19542:-473656,-710413:0,0,0 -(1,19542:-473656,-644877:0,0,0 -k1,19542:-473656,-644877:-65536 +g1,19492:12907350,28027517 ) -(1,19542:-473656,4736287:0,0,0 -k1,19542:-473656,4736287:5209943 ) -g1,19542:-473656,-710413 +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 ) -] ) -[1,19542:6630773,47279633:25952256,43253760,0 -[1,19542:6630773,4812305:25952256,786432,0 -(1,19542:6630773,4812305:25952256,513147,126483 -(1,19542:6630773,4812305:25952256,513147,126483 -g1,19542:3078558,4812305 -[1,19542:3078558,4812305:0,0,0 -(1,19542:3078558,2439708:0,1703936,0 -k1,19542:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,19542:2537886,2439708:1179648,16384,0 +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +(1,19492:8975190,28027517:0,0,0 +(1,19492:8975190,28027517:0,0,0 +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +(1,19492:8975190,28027517:0,0,0 +(1,19492:8975190,28027517:2093615,513147,138281 +(1,19492:8975190,28027517:2093615,513147,138281 +$1,19492:8975190,28027517 +g1,19492:9659911,28027517 +g1,19492:10516992,28027517 +$1,19492:11068805,28027517 +) +g1,19492:11068805,28027517 +) +) +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +) +) +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +(1,19492:8975190,28027517:0,0,0 +(1,19492:8975190,28027517:0,0,0 +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +(1,19492:8975190,28027517:0,0,0 +(1,19492:8975190,28027517:2093615,513147,138281 +(1,19492:8975190,28027517:2093615,513147,138281 +$1,19492:8975190,28027517 +g1,19492:9709063,28027517 +g1,19492:10566144,28027517 +$1,19492:11068805,28027517 +) +g1,19492:11068805,28027517 +) +) +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +) +) +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +(1,19492:8975190,28027517:0,0,0 +(1,19492:8975190,28027517:0,0,0 +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +(1,19492:8975190,28027517:0,0,0 +(1,19492:8975190,28027517:0,0,0 +h1,19492:8975190,28027517:0,0,0 +g1,19492:8975190,28027517 +) +) +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +) +) +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +g1,19492:8975190,28027517 +) +g1,19492:8975190,28027517 +) +) +) +) +k1,19492:6764466,29364451:-25550112 +) +) +g1,19492:32583973,29364451 +) +g1,19493:32583973,29364451 +g1,19493:32583973,29364451 +) +(1,19495:6764466,30924213:25818563,513147,134348 +h1,19494:6764466,30924213:983040,0,0 +k1,19494:8642013,30924213:266672 +k1,19494:12589842,30924213:266672 +k1,19494:15283968,30924213:266672 +k1,19494:19077132,30924213:266672 +k1,19494:19912001,30924213:266672 +k1,19494:21140085,30924213:266671 +k1,19494:23579931,30924213:266672 +k1,19494:24462641,30924213:266672 +k1,19494:27196744,30924213:266672 +k1,19494:28122708,30924213:266672 +k1,19494:29408465,30924213:266672 +k1,19494:32583029,30924213:0 +) +(1,19495:6764466,31789293:25818563,513147,134348 +k1,19494:8021428,31789293:184793 +k1,19494:9600172,31789293:184793 +k1,19494:10140825,31789293:184793 +k1,19494:12065600,31789293:184794 +k1,19494:13292415,31789293:184793 +k1,19494:16312295,31789293:184793 +k1,19494:17113126,31789293:184793 +(1,19494:17113126,31789293:0,452978,122846 +r1,19513:20988510,31789293:3875384,575824,122846 +k1,19494:17113126,31789293:-3875384 +) +(1,19494:17113126,31789293:3875384,452978,122846 +k1,19494:17113126,31789293:3277 +h1,19494:20985233,31789293:0,411205,112570 +) +k1,19494:21346973,31789293:184793 +k1,19494:23999197,31789293:184793 +k1,19494:26754968,31789293:184794 +k1,19494:27958846,31789293:184793 +k1,19494:30719859,31789293:184793 +k1,19494:31563944,31789293:184793 +k1,19494:32583029,31789293:0 +) +(1,19495:6764466,32654373:25818563,513147,134348 +k1,19494:8606902,32654373:169957 +k1,19494:11699108,32654373:169956 +k1,19494:15940817,32654373:169957 +k1,19494:17102333,32654373:169956 +k1,19494:19310460,32654373:169957 +k1,19494:21224984,32654373:169956 +k1,19494:22414026,32654373:169957 +$1,19494:22414026,32654373 +$1,19494:22916687,32654373 +k1,19494:23086644,32654373:169957 +k1,19494:24508993,32654373:169956 +k1,19494:25626601,32654373:169957 +k1,19494:28372777,32654373:169956 +k1,19494:29561819,32654373:169957 +k1,19494:32583029,32654373:0 +) +(1,19495:6764466,33519453:25818563,513147,138281 +k1,19494:10520586,33519453:270260 +k1,19494:12603573,33519453:270261 +k1,19494:13351590,33519453:270260 +k1,19494:14490203,33519453:270261 +k1,19494:15816903,33519453:270260 +k1,19494:17290404,33519453:270260 +k1,19494:19292126,33519453:270261 +k1,19494:23634138,33519453:270260 +k1,19494:24895958,33519453:270260 +k1,19494:27204389,33519453:270261 +k1,19494:29219217,33519453:270260 +k1,19494:30508563,33519453:270261 +$1,19494:30508563,33519453 +$1,19494:31060376,33519453 +k1,19494:31330636,33519453:270260 +k1,19494:32583029,33519453:0 +) +(1,19495:6764466,34384533:25818563,513147,134348 +k1,19494:8988698,34384533:181475 +k1,19494:11746393,34384533:181475 +k1,19494:12946953,34384533:181475 +k1,19494:16614288,34384533:181475 +k1,19494:19990643,34384533:181475 +k1,19494:22057590,34384533:181476 +k1,19494:23343347,34384533:181475 +k1,19494:25240555,34384533:181475 +k1,19494:25777890,34384533:181475 +k1,19494:27844836,34384533:181475 +k1,19494:31386342,34384533:181475 +k1,19494:32583029,34384533:0 +) +(1,19495:6764466,35249613:25818563,513147,126483 +k1,19494:9900263,35249613:294156 +k1,19494:12269944,35249613:294156 +k1,19494:13373469,35249613:294155 +k1,19494:15119247,35249613:294156 +k1,19494:16665796,35249613:294156 +k1,19494:19187521,35249613:294156 +k1,19494:20500761,35249613:294155 +k1,19494:22622061,35249613:294156 +k1,19494:23602379,35249613:294156 +k1,19494:25389445,35249613:294156 +k1,19494:26702685,35249613:294155 +k1,19494:29611072,35249613:294156 +k1,19494:30564520,35249613:294156 +k1,19494:32583029,35249613:0 +) +(1,19495:6764466,36114693:25818563,505283,134348 +k1,19494:8970053,36114693:204773 +k1,19494:10568777,36114693:204773 +(1,19494:10568777,36114693:0,452978,122846 +r1,19513:14795873,36114693:4227096,575824,122846 +k1,19494:10568777,36114693:-4227096 +) +(1,19494:10568777,36114693:4227096,452978,122846 +k1,19494:10568777,36114693:3277 +h1,19494:14792596,36114693:0,411205,112570 +) +k1,19494:15174316,36114693:204773 +k1,19494:16006924,36114693:204773 +k1,19494:17414938,36114693:204773 +k1,19494:20281128,36114693:204773 +k1,19494:21861501,36114693:204772 +k1,19494:23238713,36114693:204773 +k1,19494:26464696,36114693:204773 +k1,19494:27661029,36114693:204773 +k1,19494:28884887,36114693:204773 +k1,19494:30743133,36114693:204773 +k1,19494:31563944,36114693:204773 +k1,19494:32583029,36114693:0 +) +(1,19495:6764466,36979773:25818563,513147,126483 +g1,19494:9208958,36979773 +g1,19494:10685484,36979773 +g1,19494:12076158,36979773 +g1,19494:13294472,36979773 +g1,19494:17018227,36979773 +k1,19495:32583029,36979773:14234421 +g1,19495:32583029,36979773 +) +v1,19497:6764466,37664628:0,393216,0 +(1,19504:6764466,40059876:25818563,2788464,196608 +g1,19504:6764466,40059876 +g1,19504:6764466,40059876 +g1,19504:6567858,40059876 +(1,19504:6567858,40059876:0,2788464,196608 +r1,19513:32779637,40059876:26211779,2985072,196608 +k1,19504:6567857,40059876:-26211780 +) +(1,19504:6567858,40059876:26211779,2788464,196608 +[1,19504:6764466,40059876:25818563,2591856,0 +(1,19499:6764466,37892459:25818563,424439,112852 +(1,19498:6764466,37892459:0,0,0 +g1,19498:6764466,37892459 +g1,19498:6764466,37892459 +g1,19498:6436786,37892459 +(1,19498:6436786,37892459:0,0,0 +) +g1,19498:6764466,37892459 +) +k1,19499:6764466,37892459:0 +g1,19499:13071591,37892459 +g1,19499:14067453,37892459 +g1,19499:16059177,37892459 +g1,19499:16723085,37892459 +g1,19499:18050901,37892459 +g1,19499:18714809,37892459 +g1,19499:19378717,37892459 +g1,19499:21370441,37892459 +h1,19499:21702395,37892459:0,0,0 +k1,19499:32583029,37892459:10880634 +g1,19499:32583029,37892459 +) +(1,19500:6764466,38577314:25818563,424439,112852 +h1,19500:6764466,38577314:0,0,0 +g1,19500:7096420,38577314 +g1,19500:7428374,38577314 +g1,19500:7760328,38577314 +g1,19500:8092282,38577314 +g1,19500:12407683,38577314 +h1,19500:12739637,38577314:0,0,0 +k1,19500:32583029,38577314:19843392 +g1,19500:32583029,38577314 +) +(1,19501:6764466,39262169:25818563,424439,112852 +h1,19501:6764466,39262169:0,0,0 +g1,19501:7096420,39262169 +g1,19501:7428374,39262169 +g1,19501:7760328,39262169 +g1,19501:8092282,39262169 +g1,19501:13403545,39262169 +g1,19501:14067453,39262169 +g1,19501:15727223,39262169 +h1,19501:16059177,39262169:0,0,0 +k1,19501:32583029,39262169:16523852 +g1,19501:32583029,39262169 +) +(1,19502:6764466,39947024:25818563,424439,112852 +h1,19502:6764466,39947024:0,0,0 +g1,19502:7096420,39947024 +g1,19502:7428374,39947024 +g1,19502:7760328,39947024 +g1,19502:8092282,39947024 +g1,19502:13403545,39947024 +g1,19502:14067453,39947024 +g1,19502:15727223,39947024 +g1,19502:19710670,39947024 +g1,19502:20374578,39947024 +g1,19502:22034348,39947024 +g1,19502:24358026,39947024 +g1,19502:25021934,39947024 +h1,19502:27013658,39947024:0,0,0 +k1,19502:32583029,39947024:5569371 +g1,19502:32583029,39947024 +) +] +) +g1,19504:32583029,40059876 +g1,19504:6764466,40059876 +g1,19504:6764466,40059876 +g1,19504:32583029,40059876 +g1,19504:32583029,40059876 +) +h1,19504:6764466,40256484:0,0,0 +] +g1,19513:32583029,40256484 +) +] +(1,19513:32583029,45706769:0,0,0 +g1,19513:32583029,45706769 +) +) +] +(1,19513:6630773,47279633:25952256,0,0 +h1,19513:6630773,47279633:25952256,0,0 +) +] +(1,19513:4262630,4025873:0,0,0 +[1,19513:-473656,4025873:0,0,0 +(1,19513:-473656,-710413:0,0,0 +(1,19513:-473656,-710413:0,0,0 +g1,19513:-473656,-710413 +) +g1,19513:-473656,-710413 +) +] +) +] +!28406 +}328 +Input:3090:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3091:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3092:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3093:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3094:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3095:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!576 +{329 +[1,19550:4262630,47279633:28320399,43253760,0 +(1,19550:4262630,4025873:0,0,0 +[1,19550:-473656,4025873:0,0,0 +(1,19550:-473656,-710413:0,0,0 +(1,19550:-473656,-644877:0,0,0 +k1,19550:-473656,-644877:-65536 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,19542:3078558,1915420:16384,1179648,0 +(1,19550:-473656,4736287:0,0,0 +k1,19550:-473656,4736287:5209943 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +g1,19550:-473656,-710413 ) ] ) +[1,19550:6630773,47279633:25952256,43253760,0 +[1,19550:6630773,4812305:25952256,786432,0 +(1,19550:6630773,4812305:25952256,513147,126483 +(1,19550:6630773,4812305:25952256,513147,126483 +g1,19550:3078558,4812305 +[1,19550:3078558,4812305:0,0,0 +(1,19550:3078558,2439708:0,1703936,0 +k1,19550:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,19550:2537886,2439708:1179648,16384,0 ) +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,19550:3078558,1915420:16384,1179648,0 ) -] -[1,19542:3078558,4812305:0,0,0 -(1,19542:3078558,2439708:0,1703936,0 -g1,19542:29030814,2439708 -g1,19542:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,19542:36151628,1915420:16384,1179648,0 -) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,19542:37855564,2439708:1179648,16384,0 -) ) -k1,19542:3078556,2439708:-34777008 ) ] -[1,19542:3078558,4812305:0,0,0 -(1,19542:3078558,49800853:0,16384,2228224 -k1,19542:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,19542:2537886,49800853:1179648,16384,0 +[1,19550:3078558,4812305:0,0,0 +(1,19550:3078558,2439708:0,1703936,0 +g1,19550:29030814,2439708 +g1,19550:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,19550:36151628,1915420:16384,1179648,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,19542:3078558,51504789:16384,1179648,0 -) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,19550:37855564,2439708:1179648,16384,0 +) ) +k1,19550:3078556,2439708:-34777008 ) ] -[1,19542:3078558,4812305:0,0,0 -(1,19542:3078558,49800853:0,16384,2228224 -g1,19542:29030814,49800853 -g1,19542:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,19542:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] -) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,19542:37855564,49800853:1179648,16384,0 -) -) -k1,19542:3078556,49800853:-34777008 -) -] -g1,19542:6630773,4812305 -k1,19542:21350816,4812305:13524666 -g1,19542:21999622,4812305 -g1,19542:25611966,4812305 -g1,19542:28956923,4812305 -g1,19542:29772190,4812305 -) -) -] -[1,19542:6630773,45706769:25952256,40108032,0 -(1,19542:6630773,45706769:25952256,40108032,0 -(1,19542:6630773,45706769:0,0,0 -g1,19542:6630773,45706769 -) -[1,19542:6630773,45706769:25952256,40108032,0 -v1,19499:6630773,6254097:0,393216,0 -(1,19499:6630773,9227614:25952256,3366733,196608 -g1,19499:6630773,9227614 -g1,19499:6630773,9227614 -g1,19499:6434165,9227614 -(1,19499:6434165,9227614:0,3366733,196608 -r1,19542:32779637,9227614:26345472,3563341,196608 -k1,19499:6434165,9227614:-26345472 -) -(1,19499:6434165,9227614:26345472,3366733,196608 -[1,19499:6630773,9227614:25952256,3170125,0 -(1,19493:6630773,6461715:25952256,404226,107478 -(1,19492:6630773,6461715:0,0,0 -g1,19492:6630773,6461715 -g1,19492:6630773,6461715 -g1,19492:6303093,6461715 -(1,19492:6303093,6461715:0,0,0 -) -g1,19492:6630773,6461715 -) -k1,19493:6630773,6461715:0 -g1,19493:10740667,6461715 -g1,19493:16431290,6461715 -g1,19493:21173476,6461715 -h1,19493:21489622,6461715:0,0,0 -k1,19493:32583029,6461715:11093407 -g1,19493:32583029,6461715 -) -(1,19494:6630773,7127893:25952256,404226,107478 -h1,19494:6630773,7127893:0,0,0 -g1,19494:6946919,7127893 -g1,19494:7263065,7127893 -g1,19494:7579211,7127893 -g1,19494:7895357,7127893 -g1,19494:12005251,7127893 -h1,19494:12321397,7127893:0,0,0 -k1,19494:32583029,7127893:20261632 -g1,19494:32583029,7127893 -) -(1,19495:6630773,7794071:25952256,404226,107478 -h1,19495:6630773,7794071:0,0,0 -g1,19495:6946919,7794071 -g1,19495:7263065,7794071 -g1,19495:7579211,7794071 -g1,19495:7895357,7794071 -g1,19495:13902126,7794071 -g1,19495:14534418,7794071 -g1,19495:16747438,7794071 -g1,19495:18644312,7794071 -g1,19495:19276604,7794071 -k1,19495:19276604,7794071:0 -h1,19495:21489624,7794071:0,0,0 -k1,19495:32583029,7794071:11093405 -g1,19495:32583029,7794071 -) -(1,19496:6630773,8460249:25952256,404226,82312 -h1,19496:6630773,8460249:0,0,0 -g1,19496:6946919,8460249 -g1,19496:7263065,8460249 -g1,19496:7579211,8460249 -g1,19496:7895357,8460249 -g1,19496:8211503,8460249 -g1,19496:8527649,8460249 -g1,19496:8843795,8460249 -g1,19496:9159941,8460249 -g1,19496:9476087,8460249 -g1,19496:9792233,8460249 -g1,19496:10108379,8460249 -g1,19496:10424525,8460249 -g1,19496:10740671,8460249 -g1,19496:11056817,8460249 -g1,19496:11372963,8460249 -g1,19496:11689109,8460249 -g1,19496:12005255,8460249 -g1,19496:12321401,8460249 -g1,19496:14218275,8460249 -g1,19496:14850567,8460249 -g1,19496:17063587,8460249 -g1,19496:20225044,8460249 -g1,19496:20857336,8460249 -g1,19496:22438065,8460249 -h1,19496:22754211,8460249:0,0,0 -k1,19496:32583029,8460249:9828818 -g1,19496:32583029,8460249 -) -(1,19497:6630773,9126427:25952256,410518,101187 -h1,19497:6630773,9126427:0,0,0 -g1,19497:6946919,9126427 -g1,19497:7263065,9126427 -g1,19497:7579211,9126427 -g1,19497:7895357,9126427 -g1,19497:14534418,9126427 -g1,19497:16747438,9126427 -g1,19497:17379730,9126427 -h1,19497:19592750,9126427:0,0,0 -k1,19497:32583029,9126427:12990279 -g1,19497:32583029,9126427 -) -] -) -g1,19499:32583029,9227614 -g1,19499:6630773,9227614 -g1,19499:6630773,9227614 -g1,19499:32583029,9227614 -g1,19499:32583029,9227614 -) -h1,19499:6630773,9424222:0,0,0 -(1,19502:6630773,18772714:25952256,8758668,0 -k1,19502:7928465,18772714:1297692 -h1,19501:7928465,18772714:0,0,0 -(1,19501:7928465,18772714:23356872,8758668,0 -(1,19501:7928465,18772714:23356506,8758690,0 -(1,19501:7928465,18772714:23356506,8758690,0 -(1,19501:7928465,18772714:0,8758690,0 -(1,19501:7928465,18772714:0,14208860,0 -(1,19501:7928465,18772714:37890292,14208860,0 -) -k1,19501:7928465,18772714:-37890292 -) -) -g1,19501:31284971,18772714 -) -) -) -g1,19502:31285337,18772714 -k1,19502:32583029,18772714:1297692 -) -v1,19509:6630773,20138490:0,393216,0 -(1,19510:6630773,21546864:25952256,1801590,0 -g1,19510:6630773,21546864 -g1,19510:6303093,21546864 -r1,19542:6401397,21546864:98304,1801590,0 -g1,19510:6600626,21546864 -g1,19510:6797234,21546864 -[1,19510:6797234,21546864:25785795,1801590,0 -(1,19510:6797234,20571028:25785795,825754,196608 -(1,19509:6797234,20571028:0,825754,196608 -r1,19542:7890375,20571028:1093141,1022362,196608 -k1,19509:6797234,20571028:-1093141 -) -(1,19509:6797234,20571028:1093141,825754,196608 -) -k1,19509:8053472,20571028:163097 -k1,19509:9779690,20571028:327680 -k1,19509:11913455,20571028:163097 -k1,19509:12735845,20571028:163098 -k1,19509:13918027,20571028:163097 -k1,19509:15688722,20571028:163097 -k1,19509:16467857,20571028:163097 -k1,19509:17650039,20571028:163097 -k1,19509:18961328,20571028:163098 -k1,19509:20296864,20571028:163097 -k1,19509:22760930,20571028:163097 -k1,19509:24779351,20571028:163097 -k1,19509:26046730,20571028:163097 -k1,19509:26957594,20571028:163098 -k1,19509:29470812,20571028:163097 -k1,19509:30395437,20571028:163097 -k1,19509:32583029,20571028:0 -) -(1,19510:6797234,21412516:25785795,505283,134348 -g1,19509:8168902,21412516 -g1,19509:10256223,21412516 -g1,19509:11849403,21412516 -(1,19509:11849403,21412516:0,452978,115847 -r1,19542:16779923,21412516:4930520,568825,115847 -k1,19509:11849403,21412516:-4930520 -) -(1,19509:11849403,21412516:4930520,452978,115847 -k1,19509:11849403,21412516:3277 -h1,19509:16776646,21412516:0,411205,112570 -) -g1,19509:17306177,21412516 -g1,19509:20227116,21412516 -g1,19509:21629586,21412516 -g1,19509:23106112,21412516 -g1,19509:25040734,21412516 -(1,19509:25040734,21412516:0,452978,115847 -r1,19542:29971254,21412516:4930520,568825,115847 -k1,19509:25040734,21412516:-4930520 -) -(1,19509:25040734,21412516:4930520,452978,115847 -k1,19509:25040734,21412516:3277 -h1,19509:29967977,21412516:0,411205,112570 -) -k1,19510:32583029,21412516:2438105 -g1,19510:32583029,21412516 -) -] -g1,19510:32583029,21546864 -) -h1,19510:6630773,21546864:0,0,0 -(1,19516:6630773,24878720:25952256,32768,229376 -(1,19516:6630773,24878720:0,32768,229376 -(1,19516:6630773,24878720:5505024,32768,229376 -r1,19542:12135797,24878720:5505024,262144,229376 -) -k1,19516:6630773,24878720:-5505024 -) -(1,19516:6630773,24878720:25952256,32768,0 -r1,19542:32583029,24878720:25952256,32768,0 -) -) -(1,19516:6630773,26483048:25952256,582746,14155 -(1,19516:6630773,26483048:1974731,582746,14155 -g1,19516:6630773,26483048 -g1,19516:8605504,26483048 -) -k1,19516:32583028,26483048:21495544 -g1,19516:32583028,26483048 -) -(1,19521:6630773,27717752:25952256,513147,134348 -k1,19519:8826322,27717752:212430 -k1,19519:10030313,27717752:212431 -k1,19519:11755969,27717752:212430 -k1,19519:12584438,27717752:212431 -k1,19519:13152728,27717752:212430 -k1,19519:15559304,27717752:212431 -k1,19519:17201074,27717752:212430 -k1,19519:18072796,27717752:212430 -k1,19519:19892825,27717752:212431 -k1,19519:23467252,27717752:212430 -k1,19519:26350930,27717752:212431 -k1,19519:28637574,27717752:212430 -k1,19519:29466043,27717752:212431 -k1,19519:31563944,27717752:212430 -k1,19519:32583029,27717752:0 -) -(1,19521:6630773,28559240:25952256,513147,126483 -k1,19519:8930212,28559240:225225 -k1,19519:10892142,28559240:225226 -k1,19519:12809507,28559240:225225 -k1,19519:16504209,28559240:225226 -k1,19520:18603764,28559240:225225 -k1,19520:20093835,28559240:225226 -k1,19520:20978352,28559240:225225 -k1,19520:25032190,28559240:225225 -k1,19520:27331630,28559240:225226 -k1,19520:28548415,28559240:225225 -k1,19520:29129501,28559240:225226 -k1,19520:31331947,28559240:225225 -k1,19520:32583029,28559240:0 -) -(1,19521:6630773,29400728:25952256,513147,134348 -k1,19520:7866082,29400728:287658 -k1,19520:11599622,29400728:287657 -k1,19520:14573601,29400728:287658 -k1,19520:16424292,29400728:287657 -k1,19520:18586280,29400728:287658 -k1,19520:20481536,29400728:287658 -k1,19520:23173709,29400728:287657 -k1,19520:25961566,29400728:287658 -k1,19520:28807749,29400728:287657 -k1,19520:30114492,29400728:287658 -(1,19520:30114492,29400728:0,452978,115847 -r1,19542:32583029,29400728:2468537,568825,115847 -k1,19520:30114492,29400728:-2468537 -) -(1,19520:30114492,29400728:2468537,452978,115847 -k1,19520:30114492,29400728:3277 -h1,19520:32579752,29400728:0,411205,112570 -) -k1,19520:32583029,29400728:0 -) -(1,19521:6630773,30242216:25952256,505283,134348 -k1,19520:9052943,30242216:237855 -k1,19520:9906836,30242216:237855 -k1,19520:10671599,30242216:237854 -k1,19520:12100899,30242216:237855 -k1,19520:13357839,30242216:237855 -k1,19520:15874380,30242216:237855 -k1,19520:18692387,30242216:237855 -k1,19520:19546280,30242216:237855 -k1,19520:20372647,30242216:237854 -k1,19520:21807189,30242216:237855 -k1,19520:23666405,30242216:237855 -k1,19520:25229398,30242216:237855 -k1,19520:25998750,30242216:237855 -k1,19520:26888032,30242216:237854 -k1,19520:28601102,30242216:237855 -k1,19520:30373155,30242216:237855 -k1,19520:32583029,30242216:0 -) -(1,19521:6630773,31083704:25952256,513147,134348 -k1,19520:9591690,31083704:247726 -k1,19520:10498708,31083704:247726 -k1,19520:12354032,31083704:247726 -k1,19520:13995709,31083704:247726 -k1,19520:17020851,31083704:247726 -k1,19520:19344758,31083704:247726 -k1,19520:20358599,31083704:247725 -k1,19520:22213923,31083704:247726 -k1,19520:25112580,31083704:247726 -k1,19520:27370951,31083704:247726 -k1,19520:28566328,31083704:247726 -k1,19520:29833139,31083704:247726 -k1,19520:31734338,31083704:247726 -k1,19521:32583029,31083704:0 -) -(1,19521:6630773,31925192:25952256,513147,126483 -k1,19520:9154267,31925192:285439 -k1,19520:12124716,31925192:285439 -k1,19520:13790999,31925192:285439 -k1,19520:14607935,31925192:285439 -k1,19520:16870595,31925192:285439 -k1,19520:18854072,31925192:285439 -k1,19520:20794295,31925192:285439 -k1,19520:22071294,31925192:285439 -k1,19520:25027980,31925192:285439 -k1,19520:29457260,31925192:285439 -k1,19520:31966991,31925192:285439 -k1,19520:32583029,31925192:0 -) -(1,19521:6630773,32766680:25952256,513147,134348 -k1,19520:7235951,32766680:249318 -k1,19520:8874631,32766680:249317 -k1,19520:10232163,32766680:249318 -k1,19520:15298376,32766680:249317 -k1,19520:17328963,32766680:249318 -k1,19520:18650449,32766680:249317 -k1,19520:20293718,32766680:249318 -k1,19520:21790842,32766680:249318 -k1,19520:23942669,32766680:249317 -k1,19520:24874872,32766680:249318 -k1,19520:26518140,32766680:249317 -k1,19520:27786543,32766680:249318 -k1,19520:29689333,32766680:249317 -k1,19520:31510860,32766680:249318 -k1,19520:32583029,32766680:0 -) -(1,19521:6630773,33608168:25952256,513147,134348 -k1,19520:7258826,33608168:272193 -k1,19520:10310401,33608168:272193 -k1,19520:13623465,33608168:272193 -k1,19520:14887217,33608168:272192 -k1,19520:18607259,33608168:272193 -k1,19520:20165268,33608168:272193 -k1,19520:22588353,33608168:272193 -k1,19520:23488381,33608168:272193 -k1,19520:26589107,33608168:272193 -k1,19520:28516083,33608168:272192 -k1,19520:29779836,33608168:272193 -k1,19520:31224468,33608168:272193 -k1,19521:32583029,33608168:0 -) -(1,19521:6630773,34449656:25952256,513147,134348 -k1,19520:8391631,34449656:276468 -k1,19520:10384488,34449656:276469 -k1,19520:11320248,34449656:276468 -k1,19520:13659134,34449656:276468 -k1,19520:15824350,34449656:276468 -k1,19520:19287835,34449656:276469 -k1,19520:20180341,34449656:276468 -k1,19520:20812669,34449656:276468 -k1,19520:22547314,34449656:276469 -k1,19520:24015227,34449656:276468 -k1,19520:26180443,34449656:276468 -k1,19520:28201479,34449656:276468 -k1,19520:28833808,34449656:276469 -k1,19520:30983295,34449656:276468 -k1,19520:32583029,34449656:0 -) -(1,19521:6630773,35291144:25952256,513147,126483 -k1,19520:7560183,35291144:270118 -k1,19520:10656212,35291144:270117 -k1,19520:12172169,35291144:270118 -k1,19520:15259679,35291144:270117 -k1,19520:18304591,35291144:270118 -k1,19520:19842174,35291144:270117 -k1,19520:21284731,35291144:270118 -k1,19520:22237733,35291144:270117 -k1,19520:24158048,35291144:270118 -k1,19520:26136033,35291144:270117 -k1,19520:28280481,35291144:270118 -k1,19520:29542158,35291144:270117 -k1,19520:32583029,35291144:0 -) -(1,19521:6630773,36132632:25952256,505283,134348 -k1,19520:7626981,36132632:234680 -k1,19520:10049252,36132632:234679 -(1,19520:10049252,36132632:0,459977,122846 -r1,19542:14276348,36132632:4227096,582823,122846 -k1,19520:10049252,36132632:-4227096 -) -(1,19520:10049252,36132632:4227096,459977,122846 -k1,19520:10049252,36132632:3277 -h1,19520:14273071,36132632:0,411205,112570 -) -k1,19520:14511028,36132632:234680 -k1,19520:15428592,36132632:234679 -(1,19520:15428592,36132632:0,459977,115847 -r1,19542:19655688,36132632:4227096,575824,115847 -k1,19520:15428592,36132632:-4227096 -) -(1,19520:15428592,36132632:4227096,459977,115847 -k1,19520:15428592,36132632:3277 -h1,19520:19652411,36132632:0,411205,112570 -) -k1,19520:20064038,36132632:234680 -k1,19520:24268889,36132632:234680 -k1,19520:25131403,36132632:234679 -k1,19520:26385168,36132632:234680 -k1,19520:29611566,36132632:234679 -k1,19520:31714677,36132632:234680 -k1,19520:32583029,36132632:0 -) -(1,19521:6630773,36974120:25952256,513147,134348 -k1,19520:7922484,36974120:199226 -(1,19520:7922484,36974120:0,452978,122846 -r1,19542:12149580,36974120:4227096,575824,122846 -k1,19520:7922484,36974120:-4227096 -) -(1,19520:7922484,36974120:4227096,452978,122846 -k1,19520:7922484,36974120:3277 -h1,19520:12146303,36974120:0,411205,112570 -) -k1,19520:12348806,36974120:199226 -k1,19520:13620201,36974120:199226 -k1,19520:16368122,36974120:199226 -k1,19520:17671630,36974120:199226 -k1,19520:18618623,36974120:199227 -k1,19520:20331075,36974120:199226 -k1,19520:21924252,36974120:199226 -(1,19520:21924252,36974120:0,452978,122846 -r1,19542:24041077,36974120:2116825,575824,122846 -k1,19520:21924252,36974120:-2116825 -) -(1,19520:21924252,36974120:2116825,452978,122846 -k1,19520:21924252,36974120:3277 -h1,19520:24037800,36974120:0,411205,112570 -) -k1,19520:24240303,36974120:199226 -k1,19520:26729357,36974120:199226 -k1,19520:30290580,36974120:199226 -k1,19520:32583029,36974120:0 -) -(1,19521:6630773,37815608:25952256,513147,134348 -g1,19520:8589644,37815608 -g1,19520:9448165,37815608 -g1,19520:11709157,37815608 -g1,19520:15193706,37815608 -g1,19520:17248915,37815608 -g1,19520:21519896,37815608 -g1,19520:22402010,37815608 -g1,19520:26109381,37815608 -g1,19520:27876231,37815608 -(1,19520:27876231,37815608:0,452978,115847 -r1,19542:29289632,37815608:1413401,568825,115847 -k1,19520:27876231,37815608:-1413401 -) -(1,19520:27876231,37815608:1413401,452978,115847 -k1,19520:27876231,37815608:3277 -h1,19520:29286355,37815608:0,411205,112570 -) -k1,19521:32583029,37815608:3119727 -g1,19521:32583029,37815608 -) -(1,19525:6630773,38657096:25952256,505283,134348 -h1,19524:6630773,38657096:983040,0,0 -k1,19524:8736351,38657096:168989 -k1,19524:10393663,38657096:168989 -k1,19524:11324180,38657096:168989 -k1,19524:14065458,38657096:168990 -k1,19524:15425892,38657096:168989 -k1,19524:17628463,38657096:168989 -k1,19524:18153312,38657096:168989 -k1,19524:22152225,38657096:168989 -k1,19524:23598511,38657096:168989 -k1,19524:25052006,38657096:168989 -k1,19524:26089348,38657096:168990 -k1,19524:27390799,38657096:168989 -k1,19524:28652273,38657096:168989 -k1,19524:31379788,38657096:168989 -k1,19524:32583029,38657096:0 -) -(1,19525:6630773,39498584:25952256,513147,134348 -g1,19524:9108689,39498584 -g1,19524:9959346,39498584 -g1,19524:14191661,39498584 -g1,19524:15721271,39498584 -g1,19524:16939585,39498584 -g1,19524:18792287,39498584 -g1,19524:20268813,39498584 -g1,19524:23039019,39498584 -g1,19524:24936286,39498584 -g1,19524:26003867,39498584 -g1,19524:27400439,39498584 -k1,19525:32583029,39498584:3120172 -g1,19525:32583029,39498584 -) -v1,19527:6630773,40689050:0,393216,0 -(1,19533:6630773,42330211:25952256,2034377,196608 -g1,19533:6630773,42330211 -g1,19533:6630773,42330211 -g1,19533:6434165,42330211 -(1,19533:6434165,42330211:0,2034377,196608 -r1,19542:32779637,42330211:26345472,2230985,196608 -k1,19533:6434165,42330211:-26345472 -) -(1,19533:6434165,42330211:26345472,2034377,196608 -[1,19533:6630773,42330211:25952256,1837769,0 -(1,19529:6630773,40896668:25952256,404226,107478 -(1,19528:6630773,40896668:0,0,0 -g1,19528:6630773,40896668 -g1,19528:6630773,40896668 -g1,19528:6303093,40896668 -(1,19528:6303093,40896668:0,0,0 -) -g1,19528:6630773,40896668 -) -g1,19529:7263065,40896668 -g1,19529:8211503,40896668 -g1,19529:12005252,40896668 -g1,19529:12637544,40896668 -g1,19529:15166710,40896668 -g1,19529:17695876,40896668 -g1,19529:19592750,40896668 -h1,19529:19908896,40896668:0,0,0 -k1,19529:32583029,40896668:12674133 -g1,19529:32583029,40896668 -) -(1,19530:6630773,41562846:25952256,404226,107478 -h1,19530:6630773,41562846:0,0,0 -g1,19530:6946919,41562846 -g1,19530:7263065,41562846 -k1,19530:7263065,41562846:0 -h1,19530:11056813,41562846:0,0,0 -k1,19530:32583029,41562846:21526216 -g1,19530:32583029,41562846 -) -(1,19531:6630773,42229024:25952256,284164,101187 -h1,19531:6630773,42229024:0,0,0 -h1,19531:6946919,42229024:0,0,0 -k1,19531:32583029,42229024:25636110 -g1,19531:32583029,42229024 -) -] -) -g1,19533:32583029,42330211 -g1,19533:6630773,42330211 -g1,19533:6630773,42330211 -g1,19533:32583029,42330211 -g1,19533:32583029,42330211 -) -h1,19533:6630773,42526819:0,0,0 -] -(1,19542:32583029,45706769:0,0,0 -g1,19542:32583029,45706769 -) -) -] -(1,19542:6630773,47279633:25952256,0,0 -h1,19542:6630773,47279633:25952256,0,0 -) -] -(1,19542:4262630,4025873:0,0,0 -[1,19542:-473656,4025873:0,0,0 -(1,19542:-473656,-710413:0,0,0 -(1,19542:-473656,-710413:0,0,0 -g1,19542:-473656,-710413 -) -g1,19542:-473656,-710413 -) -] -) -] -!19799 -}349 -Input:3084:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3085:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3086:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3087:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3088:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3089:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3090:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3091:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!764 -{350 -[1,19609:4262630,47279633:28320399,43253760,0 -(1,19609:4262630,4025873:0,0,0 -[1,19609:-473656,4025873:0,0,0 -(1,19609:-473656,-710413:0,0,0 -(1,19609:-473656,-644877:0,0,0 -k1,19609:-473656,-644877:-65536 +[1,19550:3078558,4812305:0,0,0 +(1,19550:3078558,49800853:0,16384,2228224 +k1,19550:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,19550:2537886,49800853:1179648,16384,0 ) -(1,19609:-473656,4736287:0,0,0 -k1,19609:-473656,4736287:5209943 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,19550:3078558,51504789:16384,1179648,0 ) -g1,19609:-473656,-710413 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) -[1,19609:6630773,47279633:25952256,43253760,0 -[1,19609:6630773,4812305:25952256,786432,0 -(1,19609:6630773,4812305:25952256,485622,11795 -(1,19609:6630773,4812305:25952256,485622,11795 -g1,19609:3078558,4812305 -[1,19609:3078558,4812305:0,0,0 -(1,19609:3078558,2439708:0,1703936,0 -k1,19609:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,19609:2537886,2439708:1179648,16384,0 -) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,19609:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 ) ] +[1,19550:3078558,4812305:0,0,0 +(1,19550:3078558,49800853:0,16384,2228224 +g1,19550:29030814,49800853 +g1,19550:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,19550:36151628,51504789:16384,1179648,0 ) -) +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] -[1,19609:3078558,4812305:0,0,0 -(1,19609:3078558,2439708:0,1703936,0 -g1,19609:29030814,2439708 -g1,19609:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,19609:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,19550:37855564,49800853:1179648,16384,0 ) -] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,19609:37855564,2439708:1179648,16384,0 +k1,19550:3078556,49800853:-34777008 ) +] +g1,19550:6630773,4812305 +k1,19550:21350816,4812305:13524666 +g1,19550:21999622,4812305 +g1,19550:25611966,4812305 +g1,19550:28956923,4812305 +g1,19550:29772190,4812305 ) -k1,19609:3078556,2439708:-34777008 ) ] -[1,19609:3078558,4812305:0,0,0 -(1,19609:3078558,49800853:0,16384,2228224 -k1,19609:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,19609:2537886,49800853:1179648,16384,0 +[1,19550:6630773,45706769:25952256,40108032,0 +(1,19550:6630773,45706769:25952256,40108032,0 +(1,19550:6630773,45706769:0,0,0 +g1,19550:6630773,45706769 +) +[1,19550:6630773,45706769:25952256,40108032,0 +v1,19513:6630773,6254097:0,393216,0 +(1,19513:6630773,16317167:25952256,10456286,0 +g1,19513:6630773,16317167 +g1,19513:6237557,16317167 +r1,19550:6368629,16317167:131072,10456286,0 +g1,19513:6567858,16317167 +g1,19513:6764466,16317167 +[1,19513:6764466,16317167:25818563,10456286,0 +(1,19507:6764466,16317167:25818563,10456286,0 +k1,19507:12702823,16317167:5938357 +h1,19506:12702823,16317167:0,0,0 +(1,19506:12702823,16317167:13941850,10456286,0 +(1,19506:12702823,16317167:13941749,10456312,0 +(1,19506:12702823,16317167:13941749,10456312,0 +(1,19506:12702823,16317167:0,10456312,0 +(1,19506:12702823,16317167:0,14208860,0 +(1,19506:12702823,16317167:18945146,14208860,0 +) +k1,19506:12702823,16317167:-18945146 +) +) +g1,19506:26644572,16317167 +) +) ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,19609:3078558,51504789:16384,1179648,0 +g1,19507:26644673,16317167 +k1,19507:32583029,16317167:5938356 +) +] +g1,19513:32583029,16317167 +) +h1,19513:6630773,16317167:0,0,0 +(1,19516:6630773,17182247:25952256,513147,134348 +h1,19515:6630773,17182247:983040,0,0 +k1,19515:9015163,17182247:204663 +k1,19515:10603947,17182247:204664 +k1,19515:12074766,17182247:204663 +k1,19515:12938721,17182247:204663 +k1,19515:16135104,17182247:204664 +k1,19515:19472388,17182247:204663 +k1,19515:22866688,17182247:204663 +k1,19515:25538783,17182247:204664 +k1,19515:27478839,17182247:204663 +(1,19515:27478839,17182247:0,452978,115847 +r1,19550:32409359,17182247:4930520,568825,115847 +k1,19515:27478839,17182247:-4930520 +) +(1,19515:27478839,17182247:4930520,452978,115847 +k1,19515:27478839,17182247:3277 +h1,19515:32406082,17182247:0,411205,112570 +) +k1,19515:32583029,17182247:0 +) +(1,19516:6630773,18047327:25952256,513147,138281 +k1,19515:8255577,18047327:136481 +k1,19515:9260410,18047327:136481 +k1,19515:10793463,18047327:136481 +k1,19515:11949029,18047327:136481 +k1,19515:13979500,18047327:136481 +(1,19515:13979500,18047327:0,452978,115847 +r1,19550:16448037,18047327:2468537,568825,115847 +k1,19515:13979500,18047327:-2468537 +) +(1,19515:13979500,18047327:2468537,452978,115847 +k1,19515:13979500,18047327:3277 +h1,19515:16444760,18047327:0,411205,112570 +) +k1,19515:16584518,18047327:136481 +k1,19515:18027132,18047327:136481 +k1,19515:18815041,18047327:136481 +$1,19515:18815041,18047327 +$1,19515:19317702,18047327 +k1,19515:19454183,18047327:136481 +k1,19515:20782110,18047327:136482 +k1,19515:22352519,18047327:136481 +k1,19515:23140428,18047327:136481 +$1,19515:23140428,18047327 +$1,19515:23692241,18047327 +k1,19515:24002392,18047327:136481 +k1,19515:24766708,18047327:136481 +k1,19515:26369885,18047327:136481 +k1,19515:28203748,18047327:136481 +k1,19515:31107814,18047327:136481 +k1,19515:32583029,18047327:0 +) +(1,19516:6630773,18912407:25952256,513147,126483 +k1,19515:8336176,18912407:195453 +k1,19515:11740273,18912407:195454 +k1,19515:13127171,18912407:195453 +k1,19515:15624905,18912407:195454 +k1,19515:16768009,18912407:195453 +k1,19515:18415085,18912407:195454 +k1,19515:20072646,18912407:195453 +k1,19515:20927392,18912407:195454 +k1,19515:22141930,18912407:195453 +k1,19515:24405045,18912407:195454 +k1,19515:27478839,18912407:195453 +(1,19515:27478839,18912407:0,452978,115847 +r1,19550:32409359,18912407:4930520,568825,115847 +k1,19515:27478839,18912407:-4930520 +) +(1,19515:27478839,18912407:4930520,452978,115847 +k1,19515:27478839,18912407:3277 +h1,19515:32406082,18912407:0,411205,112570 +) +k1,19516:32583029,18912407:0 +) +(1,19516:6630773,19777487:25952256,505283,126483 +(1,19515:6630773,19777487:0,452978,115847 +r1,19550:11561293,19777487:4930520,568825,115847 +k1,19515:6630773,19777487:-4930520 +) +(1,19515:6630773,19777487:4930520,452978,115847 +k1,19515:6630773,19777487:3277 +h1,19515:11558016,19777487:0,411205,112570 +) +k1,19515:12000434,19777487:265471 +(1,19515:12000434,19777487:0,452978,122846 +r1,19550:17634377,19777487:5633943,575824,122846 +k1,19515:12000434,19777487:-5633943 +) +(1,19515:12000434,19777487:5633943,452978,122846 +k1,19515:12000434,19777487:3277 +h1,19515:17631100,19777487:0,411205,112570 +) +k1,19515:17899847,19777487:265470 +k1,19515:19356763,19777487:265471 +(1,19515:19356763,19777487:0,452978,115847 +r1,19550:24287283,19777487:4930520,568825,115847 +k1,19515:19356763,19777487:-4930520 +) +(1,19515:19356763,19777487:4930520,452978,115847 +k1,19515:19356763,19777487:3277 +h1,19515:24284006,19777487:0,411205,112570 +) +k1,19515:24552753,19777487:265470 +k1,19515:27041205,19777487:265471 +k1,19515:30074916,19777487:265470 +k1,19515:31734338,19777487:265471 +k1,19516:32583029,19777487:0 +) +(1,19516:6630773,20642567:25952256,513147,134348 +g1,19515:8518865,20642567 +g1,19515:9369522,20642567 +k1,19516:32583029,20642567:20572406 +g1,19516:32583029,20642567 +) +v1,19518:6630773,21327422:0,393216,0 +(1,19523:6630773,22346354:25952256,1412148,196608 +g1,19523:6630773,22346354 +g1,19523:6630773,22346354 +g1,19523:6434165,22346354 +(1,19523:6434165,22346354:0,1412148,196608 +r1,19550:32779637,22346354:26345472,1608756,196608 +k1,19523:6434165,22346354:-26345472 +) +(1,19523:6434165,22346354:26345472,1412148,196608 +[1,19523:6630773,22346354:25952256,1215540,0 +(1,19520:6630773,21555253:25952256,424439,112852 +(1,19519:6630773,21555253:0,0,0 +g1,19519:6630773,21555253 +g1,19519:6630773,21555253 +g1,19519:6303093,21555253 +(1,19519:6303093,21555253:0,0,0 +) +g1,19519:6630773,21555253 +) +k1,19520:6630773,21555253:0 +g1,19520:10946175,21555253 +g1,19520:12937899,21555253 +g1,19520:13601807,21555253 +g1,19520:16589393,21555253 +g1,19520:17253301,21555253 +g1,19520:17917209,21555253 +g1,19520:22896518,21555253 +h1,19520:23228472,21555253:0,0,0 +k1,19520:32583029,21555253:9354557 +g1,19520:32583029,21555253 +) +(1,19521:6630773,22240108:25952256,424439,106246 +h1,19521:6630773,22240108:0,0,0 +g1,19521:6962727,22240108 +g1,19521:7294681,22240108 +g1,19521:7626635,22240108 +g1,19521:7958589,22240108 +k1,19521:7958589,22240108:0 +h1,19521:12605944,22240108:0,0,0 +k1,19521:32583028,22240108:19977084 +g1,19521:32583028,22240108 +) +] +) +g1,19523:32583029,22346354 +g1,19523:6630773,22346354 +g1,19523:6630773,22346354 +g1,19523:32583029,22346354 +g1,19523:32583029,22346354 +) +h1,19523:6630773,22542962:0,0,0 +(1,19526:6630773,33118987:25952256,10510489,0 +k1,19526:12599879,33118987:5969106 +h1,19525:12599879,33118987:0,0,0 +(1,19525:12599879,33118987:14014044,10510489,0 +(1,19525:12599879,33118987:14014019,10510515,0 +(1,19525:12599879,33118987:14014019,10510515,0 +(1,19525:12599879,33118987:0,10510515,0 +(1,19525:12599879,33118987:0,14208860,0 +(1,19525:12599879,33118987:18945146,14208860,0 +) +k1,19525:12599879,33118987:-18945146 +) +) +g1,19525:26613898,33118987 +) +) +) +g1,19526:26613923,33118987 +k1,19526:32583029,33118987:5969106 +) +v1,19533:6630773,33803842:0,393216,0 +(1,19538:6630773,34822774:25952256,1412148,196608 +g1,19538:6630773,34822774 +g1,19538:6630773,34822774 +g1,19538:6434165,34822774 +(1,19538:6434165,34822774:0,1412148,196608 +r1,19550:32779637,34822774:26345472,1608756,196608 +k1,19538:6434165,34822774:-26345472 +) +(1,19538:6434165,34822774:26345472,1412148,196608 +[1,19538:6630773,34822774:25952256,1215540,0 +(1,19535:6630773,34031673:25952256,424439,112852 +(1,19534:6630773,34031673:0,0,0 +g1,19534:6630773,34031673 +g1,19534:6630773,34031673 +g1,19534:6303093,34031673 +(1,19534:6303093,34031673:0,0,0 +) +g1,19534:6630773,34031673 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,19535:6630773,34031673:0 +g1,19535:10946175,34031673 +g1,19535:12937899,34031673 +g1,19535:13601807,34031673 +g1,19535:18249162,34031673 +g1,19535:18913070,34031673 +g1,19535:19576978,34031673 +g1,19535:22896517,34031673 +h1,19535:23228471,34031673:0,0,0 +k1,19535:32583029,34031673:9354558 +g1,19535:32583029,34031673 +) +(1,19536:6630773,34716528:25952256,424439,106246 +h1,19536:6630773,34716528:0,0,0 +g1,19536:6962727,34716528 +g1,19536:7294681,34716528 +g1,19536:7626635,34716528 +g1,19536:7958589,34716528 +k1,19536:7958589,34716528:0 +h1,19536:12605944,34716528:0,0,0 +k1,19536:32583028,34716528:19977084 +g1,19536:32583028,34716528 ) ] ) +g1,19538:32583029,34822774 +g1,19538:6630773,34822774 +g1,19538:6630773,34822774 +g1,19538:32583029,34822774 +g1,19538:32583029,34822774 ) +h1,19538:6630773,35019382:0,0,0 +(1,19541:6630773,45595407:25952256,10510489,0 +k1,19541:12599879,45595407:5969106 +h1,19540:12599879,45595407:0,0,0 +(1,19540:12599879,45595407:14014044,10510489,0 +(1,19540:12599879,45595407:14014019,10510515,0 +(1,19540:12599879,45595407:14014019,10510515,0 +(1,19540:12599879,45595407:0,10510515,0 +(1,19540:12599879,45595407:0,14208860,0 +(1,19540:12599879,45595407:18945146,14208860,0 ) -] -[1,19609:3078558,4812305:0,0,0 -(1,19609:3078558,49800853:0,16384,2228224 -g1,19609:29030814,49800853 -g1,19609:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,19609:36151628,51504789:16384,1179648,0 +k1,19540:12599879,45595407:-18945146 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 ) -] +g1,19540:26613898,45595407 ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,19609:37855564,49800853:1179648,16384,0 ) ) -k1,19609:3078556,49800853:-34777008 +g1,19541:26613923,45595407 +k1,19541:32583029,45595407:5969106 ) ] -g1,19609:6630773,4812305 -g1,19609:6630773,4812305 -g1,19609:8769212,4812305 -k1,19609:31387652,4812305:22618440 +(1,19550:32583029,45706769:0,0,0 +g1,19550:32583029,45706769 ) ) ] -[1,19609:6630773,45706769:25952256,40108032,0 -(1,19609:6630773,45706769:25952256,40108032,0 -(1,19609:6630773,45706769:0,0,0 -g1,19609:6630773,45706769 -) -[1,19609:6630773,45706769:25952256,40108032,0 -(1,19536:6630773,14682403:25952256,9083666,0 -k1,19536:10523651,14682403:3892878 -h1,19535:10523651,14682403:0,0,0 -(1,19535:10523651,14682403:18166500,9083666,0 -(1,19535:10523651,14682403:18167376,9083688,0 -(1,19535:10523651,14682403:18167376,9083688,0 -(1,19535:10523651,14682403:0,9083688,0 -(1,19535:10523651,14682403:0,14208860,0 -(1,19535:10523651,14682403:28417720,14208860,0 +(1,19550:6630773,47279633:25952256,0,0 +h1,19550:6630773,47279633:25952256,0,0 ) -k1,19535:10523651,14682403:-28417720 +] +(1,19550:4262630,4025873:0,0,0 +[1,19550:-473656,4025873:0,0,0 +(1,19550:-473656,-710413:0,0,0 +(1,19550:-473656,-710413:0,0,0 +g1,19550:-473656,-710413 ) +g1,19550:-473656,-710413 ) -g1,19535:28691027,14682403 -) -) -) -g1,19536:28690151,14682403 -k1,19536:32583029,14682403:3892878 -) -(1,19543:6630773,15523891:25952256,513147,134348 -h1,19542:6630773,15523891:983040,0,0 -k1,19542:8329422,15523891:228021 -k1,19542:9841977,15523891:228049 -k1,19542:10729318,15523891:228049 -k1,19542:13031582,15523891:228050 -k1,19542:14360636,15523891:228049 -k1,19542:15761125,15523891:228050 -k1,19542:19838103,15523891:228049 -(1,19542:19838103,15523891:0,414482,115847 -r1,19609:21251504,15523891:1413401,530329,115847 -k1,19542:19838103,15523891:-1413401 -) -(1,19542:19838103,15523891:1413401,414482,115847 -k1,19542:19838103,15523891:3277 -h1,19542:21248227,15523891:0,411205,112570 -) -k1,19542:21479554,15523891:228050 -k1,19542:22899048,15523891:228049 -(1,19542:22899048,15523891:0,452978,115847 -r1,19609:24312449,15523891:1413401,568825,115847 -k1,19542:22899048,15523891:-1413401 -) -(1,19542:22899048,15523891:1413401,452978,115847 -k1,19542:22899048,15523891:3277 -h1,19542:24309172,15523891:0,411205,112570 -) -k1,19542:24714169,15523891:228050 -k1,19542:26816548,15523891:228049 -k1,19542:30719857,15523891:228050 -k1,19542:31563944,15523891:228049 -k1,19542:32583029,15523891:0 -) -(1,19543:6630773,16365379:25952256,513147,134348 -k1,19542:8077808,16365379:162529 -k1,19542:8899630,16365379:162530 -k1,19542:10339456,16365379:162529 -k1,19542:12576199,16365379:162529 -k1,19542:13843010,16365379:162529 -k1,19542:14753306,16365379:162530 -k1,19542:18101540,16365379:162529 -k1,19542:18915497,16365379:162529 -k1,19542:21475989,16365379:162530 -k1,19542:23187789,16365379:162529 -k1,19542:25904911,16365379:162529 -k1,19542:26423300,16365379:162529 -k1,19542:29129282,16365379:162530 -k1,19542:31375856,16365379:162529 -k1,19542:32583029,16365379:0 -) -(1,19543:6630773,17206867:25952256,513147,134348 -k1,19542:7801410,17206867:151552 -k1,19542:9328562,17206867:151551 -k1,19542:12264083,17206867:151552 -k1,19542:13746016,17206867:151552 -k1,19542:16860451,17206867:151552 -k1,19542:18215243,17206867:151551 -k1,19542:21056393,17206867:151552 -k1,19542:22308950,17206867:151552 -k1,19542:23970452,17206867:151552 -k1,19542:26928256,17206867:151552 -k1,19542:28098892,17206867:151551 -k1,19542:31263789,17206867:151552 -k1,19543:32583029,17206867:0 -) -(1,19543:6630773,18048355:25952256,505283,126483 -k1,19542:7798754,18048355:190184 -k1,19542:8520435,18048355:190184 -k1,19542:11621073,18048355:190184 -k1,19542:12462684,18048355:190183 -k1,19542:13745353,18048355:190184 -k1,19542:14954622,18048355:190184 -k1,19542:18755840,18048355:190184 -(1,19542:18755840,18048355:0,414482,115847 -r1,19609:20169241,18048355:1413401,530329,115847 -k1,19542:18755840,18048355:-1413401 -) -(1,19542:18755840,18048355:1413401,414482,115847 -k1,19542:18755840,18048355:3277 -h1,19542:20165964,18048355:0,411205,112570 -) -k1,19542:20359425,18048355:190184 -k1,19542:21741054,18048355:190184 -(1,19542:21741054,18048355:0,452978,115847 -r1,19609:23154455,18048355:1413401,568825,115847 -k1,19542:21741054,18048355:-1413401 -) -(1,19542:21741054,18048355:1413401,452978,115847 -k1,19542:21741054,18048355:3277 -h1,19542:23151178,18048355:0,411205,112570 -) -k1,19542:23518309,18048355:190184 -k1,19542:24662042,18048355:190184 -k1,19542:25944710,18048355:190183 -(1,19542:25944710,18048355:0,452978,115847 -r1,19609:27358111,18048355:1413401,568825,115847 -k1,19542:25944710,18048355:-1413401 -) -(1,19542:25944710,18048355:1413401,452978,115847 -k1,19542:25944710,18048355:3277 -h1,19542:27354834,18048355:0,411205,112570 -) -k1,19542:27548295,18048355:190184 -k1,19542:28354517,18048355:190184 -k1,19542:29747942,18048355:190184 -k1,19542:32583029,18048355:0 -) -(1,19543:6630773,18889843:25952256,513147,115847 -k1,19542:8314679,18889843:192962 -k1,19542:9792146,18889843:192961 -k1,19542:10853460,18889843:192962 -k1,19542:12576688,18889843:192962 -k1,19542:13421077,18889843:192961 -k1,19542:14706524,18889843:192962 -(1,19542:14706524,18889843:0,452978,115847 -r1,19609:16823349,18889843:2116825,568825,115847 -k1,19542:14706524,18889843:-2116825 -) -(1,19542:14706524,18889843:2116825,452978,115847 -k1,19542:14706524,18889843:3277 -h1,19542:16820072,18889843:0,411205,112570 -) -k1,19542:17016311,18889843:192962 -k1,19542:17860700,18889843:192961 -k1,19542:20426721,18889843:192962 -k1,19542:21638768,18889843:192962 -k1,19542:23900046,18889843:192962 -k1,19542:24752299,18889843:192961 -k1,19542:25964346,18889843:192962 -k1,19542:28998949,18889843:192962 -k1,19542:29807948,18889843:192961 -k1,19542:31019995,18889843:192962 -k1,19542:32583029,18889843:0 -) -(1,19543:6630773,19731331:25952256,513147,134348 -k1,19542:8008689,19731331:181229 -k1,19542:11649564,19731331:181229 -k1,19542:12490085,19731331:181229 -k1,19542:13690398,19731331:181228 -k1,19542:15945841,19731331:181229 -k1,19542:16809955,19731331:181229 -k1,19542:18408072,19731331:181229 -k1,19542:20407925,19731331:181229 -k1,19542:21580714,19731331:181229 -k1,19542:22523471,19731331:181229 -k1,19542:24970280,19731331:181229 -k1,19542:26170593,19731331:181228 -k1,19542:28144232,19731331:181229 -k1,19542:28984753,19731331:181229 -k1,19542:30185067,19731331:181229 -k1,19543:32583029,19731331:0 -k1,19543:32583029,19731331:0 -) -v1,19545:6630773,20921797:0,393216,0 -(1,19549:6630773,21243185:25952256,714604,196608 -g1,19549:6630773,21243185 -g1,19549:6630773,21243185 -g1,19549:6434165,21243185 -(1,19549:6434165,21243185:0,714604,196608 -r1,19609:32779637,21243185:26345472,911212,196608 -k1,19549:6434165,21243185:-26345472 -) -(1,19549:6434165,21243185:26345472,714604,196608 -[1,19549:6630773,21243185:25952256,517996,0 -(1,19547:6630773,21135707:25952256,410518,107478 -(1,19546:6630773,21135707:0,0,0 -g1,19546:6630773,21135707 -g1,19546:6630773,21135707 -g1,19546:6303093,21135707 -(1,19546:6303093,21135707:0,0,0 -) -g1,19546:6630773,21135707 -) -g1,19547:7263065,21135707 -g1,19547:7895357,21135707 -g1,19547:12953689,21135707 -g1,19547:13585981,21135707 -k1,19547:13585981,21135707:0 -h1,19547:16747438,21135707:0,0,0 -k1,19547:32583029,21135707:15835591 -g1,19547:32583029,21135707 -) -] -) -g1,19549:32583029,21243185 -g1,19549:6630773,21243185 -g1,19549:6630773,21243185 -g1,19549:32583029,21243185 -g1,19549:32583029,21243185 -) -h1,19549:6630773,21439793:0,0,0 -(1,19552:6630773,31113283:25952256,9083666,0 -k1,19552:10523651,31113283:3892878 -h1,19551:10523651,31113283:0,0,0 -(1,19551:10523651,31113283:18166500,9083666,0 -(1,19551:10523651,31113283:18167376,9083688,0 -(1,19551:10523651,31113283:18167376,9083688,0 -(1,19551:10523651,31113283:0,9083688,0 -(1,19551:10523651,31113283:0,14208860,0 -(1,19551:10523651,31113283:28417720,14208860,0 -) -k1,19551:10523651,31113283:-28417720 -) -) -g1,19551:28691027,31113283 -) -) -) -g1,19552:28690151,31113283 -k1,19552:32583029,31113283:3892878 -) -(1,19559:6630773,31954771:25952256,513147,126483 -h1,19558:6630773,31954771:983040,0,0 -g1,19558:8440877,31954771 -g1,19558:9659191,31954771 -g1,19558:13140463,31954771 -g1,19558:16329444,31954771 -g1,19558:17547758,31954771 -g1,19558:19400460,31954771 -g1,19558:20876986,31954771 -g1,19558:23032465,31954771 -g1,19558:24706909,31954771 -g1,19558:26416088,31954771 -g1,19558:28532245,31954771 -g1,19558:29417636,31954771 -k1,19559:32583029,31954771:676336 -g1,19559:32583029,31954771 -) -v1,19561:6630773,33145237:0,393216,0 -(1,19565:6630773,33466625:25952256,714604,196608 -g1,19565:6630773,33466625 -g1,19565:6630773,33466625 -g1,19565:6434165,33466625 -(1,19565:6434165,33466625:0,714604,196608 -r1,19609:32779637,33466625:26345472,911212,196608 -k1,19565:6434165,33466625:-26345472 -) -(1,19565:6434165,33466625:26345472,714604,196608 -[1,19565:6630773,33466625:25952256,517996,0 -(1,19563:6630773,33359147:25952256,410518,107478 -(1,19562:6630773,33359147:0,0,0 -g1,19562:6630773,33359147 -g1,19562:6630773,33359147 -g1,19562:6303093,33359147 -(1,19562:6303093,33359147:0,0,0 -) -g1,19562:6630773,33359147 -) -g1,19563:7263065,33359147 -g1,19563:7895357,33359147 -g1,19563:12005251,33359147 -g1,19563:12637543,33359147 -h1,19563:13902126,33359147:0,0,0 -k1,19563:32583030,33359147:18680904 -g1,19563:32583030,33359147 -) -] -) -g1,19565:32583029,33466625 -g1,19565:6630773,33466625 -g1,19565:6630773,33466625 -g1,19565:32583029,33466625 -g1,19565:32583029,33466625 -) -h1,19565:6630773,33663233:0,0,0 -(1,19569:6630773,35029009:25952256,513147,134348 -h1,19568:6630773,35029009:983040,0,0 -k1,19568:8595089,35029009:221058 -k1,19568:11255397,35029009:221058 -k1,19568:12242571,35029009:221058 -k1,19568:14537842,35029009:221057 -k1,19568:16495604,35029009:221058 -k1,19568:17735747,35029009:221058 -k1,19568:19610278,35029009:221058 -k1,19568:21403545,35029009:221058 -k1,19568:23439295,35029009:221058 -k1,19568:24851797,35029009:221057 -k1,19568:26809559,35029009:221058 -k1,19568:28049702,35029009:221058 -k1,19568:30795207,35029009:221058 -k1,19568:32583029,35029009:0 -) -(1,19569:6630773,35870497:25952256,513147,126483 -g1,19568:9036599,35870497 -g1,19568:10307997,35870497 -g1,19568:12203953,35870497 -g1,19568:14999063,35870497 -g1,19568:16302574,35870497 -g1,19568:17249569,35870497 -k1,19569:32583029,35870497:11679173 -g1,19569:32583029,35870497 -) -v1,19571:6630773,37060963:0,393216,0 -(1,19576:6630773,38048529:25952256,1380782,196608 -g1,19576:6630773,38048529 -g1,19576:6630773,38048529 -g1,19576:6434165,38048529 -(1,19576:6434165,38048529:0,1380782,196608 -r1,19609:32779637,38048529:26345472,1577390,196608 -k1,19576:6434165,38048529:-26345472 -) -(1,19576:6434165,38048529:26345472,1380782,196608 -[1,19576:6630773,38048529:25952256,1184174,0 -(1,19573:6630773,37274873:25952256,410518,107478 -(1,19572:6630773,37274873:0,0,0 -g1,19572:6630773,37274873 -g1,19572:6630773,37274873 -g1,19572:6303093,37274873 -(1,19572:6303093,37274873:0,0,0 -) -g1,19572:6630773,37274873 -) -g1,19573:7263065,37274873 -g1,19573:7895357,37274873 -g1,19573:12953689,37274873 -g1,19573:13585981,37274873 -g1,19573:17063584,37274873 -g1,19573:19276604,37274873 -g1,19573:19908896,37274873 -h1,19573:22121916,37274873:0,0,0 -k1,19573:32583029,37274873:10461113 -g1,19573:32583029,37274873 -) -(1,19574:6630773,37941051:25952256,410518,107478 -h1,19574:6630773,37941051:0,0,0 -g1,19574:7263065,37941051 -g1,19574:7895357,37941051 -g1,19574:12953689,37941051 -g1,19574:13585981,37941051 -g1,19574:17063584,37941051 -g1,19574:19276604,37941051 -g1,19574:19908896,37941051 -g1,19574:22438062,37941051 -g1,19574:24334936,37941051 -g1,19574:24967228,37941051 -h1,19574:27180248,37941051:0,0,0 -k1,19574:32583029,37941051:5402781 -g1,19574:32583029,37941051 -) -] -) -g1,19576:32583029,38048529 -g1,19576:6630773,38048529 -g1,19576:6630773,38048529 -g1,19576:32583029,38048529 -g1,19576:32583029,38048529 -) -h1,19576:6630773,38245137:0,0,0 -(1,19582:6630773,39610913:25952256,513147,134348 -h1,19581:6630773,39610913:983040,0,0 -g1,19581:8642072,39610913 -g1,19581:10865053,39610913 -g1,19581:11420142,39610913 -g1,19581:12521146,39610913 -g1,19581:14004881,39610913 -g1,19581:15072462,39610913 -g1,19581:16801957,39610913 -g1,19581:17652614,39610913 -g1,19581:20110869,39610913 -g1,19581:21776794,39610913 -(1,19581:21776794,39610913:0,414482,115847 -r1,19609:23190195,39610913:1413401,530329,115847 -k1,19581:21776794,39610913:-1413401 -) -(1,19581:21776794,39610913:1413401,414482,115847 -k1,19581:21776794,39610913:3277 -h1,19581:23186918,39610913:0,411205,112570 -) -g1,19581:23389424,39610913 -g1,19581:24780098,39610913 -(1,19581:24780098,39610913:0,452978,115847 -r1,19609:26193499,39610913:1413401,568825,115847 -k1,19581:24780098,39610913:-1413401 -) -(1,19581:24780098,39610913:1413401,452978,115847 -k1,19581:24780098,39610913:3277 -h1,19581:26190222,39610913:0,411205,112570 -) -k1,19582:32583029,39610913:6215860 -g1,19582:32583029,39610913 -) -v1,19584:6630773,40801379:0,393216,0 -(1,19588:6630773,41122767:25952256,714604,196608 -g1,19588:6630773,41122767 -g1,19588:6630773,41122767 -g1,19588:6434165,41122767 -(1,19588:6434165,41122767:0,714604,196608 -r1,19609:32779637,41122767:26345472,911212,196608 -k1,19588:6434165,41122767:-26345472 -) -(1,19588:6434165,41122767:26345472,714604,196608 -[1,19588:6630773,41122767:25952256,517996,0 -(1,19586:6630773,41015289:25952256,410518,107478 -(1,19585:6630773,41015289:0,0,0 -g1,19585:6630773,41015289 -g1,19585:6630773,41015289 -g1,19585:6303093,41015289 -(1,19585:6303093,41015289:0,0,0 -) -g1,19585:6630773,41015289 -) -g1,19586:7263065,41015289 -g1,19586:7895357,41015289 -g1,19586:12953689,41015289 -g1,19586:13585981,41015289 -g1,19586:16747439,41015289 -g1,19586:18328168,41015289 -g1,19586:18960460,41015289 -k1,19586:18960460,41015289:0 -h1,19586:21805771,41015289:0,0,0 -k1,19586:32583029,41015289:10777258 -g1,19586:32583029,41015289 -) -] -) -g1,19588:32583029,41122767 -g1,19588:6630773,41122767 -g1,19588:6630773,41122767 -g1,19588:32583029,41122767 -g1,19588:32583029,41122767 -) -h1,19588:6630773,41319375:0,0,0 -(1,19594:6630773,42685151:25952256,513147,134348 -h1,19593:6630773,42685151:983040,0,0 -k1,19593:10311876,42685151:169684 -k1,19593:12776630,42685151:169683 -k1,19593:13717017,42685151:169684 -k1,19593:17113693,42685151:169683 -k1,19593:19666266,42685151:169684 -k1,19593:20518834,42685151:169683 -k1,19593:21892414,42685151:169684 -k1,19593:22721390,42685151:169684 -k1,19593:24965287,42685151:169683 -k1,19593:26528922,42685151:169684 -k1,19593:27717690,42685151:169683 -k1,19593:31019995,42685151:169684 -k1,19594:32583029,42685151:0 -k1,19594:32583029,42685151:0 -) -v1,19596:6630773,43875617:0,393216,0 -(1,19600:6630773,44197005:25952256,714604,196608 -g1,19600:6630773,44197005 -g1,19600:6630773,44197005 -g1,19600:6434165,44197005 -(1,19600:6434165,44197005:0,714604,196608 -r1,19609:32779637,44197005:26345472,911212,196608 -k1,19600:6434165,44197005:-26345472 -) -(1,19600:6434165,44197005:26345472,714604,196608 -[1,19600:6630773,44197005:25952256,517996,0 -(1,19598:6630773,44089527:25952256,410518,107478 -(1,19597:6630773,44089527:0,0,0 -g1,19597:6630773,44089527 -g1,19597:6630773,44089527 -g1,19597:6303093,44089527 -(1,19597:6303093,44089527:0,0,0 -) -g1,19597:6630773,44089527 -) -g1,19598:7263065,44089527 -g1,19598:7895357,44089527 -g1,19598:12953689,44089527 -g1,19598:13585981,44089527 -g1,19598:17063584,44089527 -g1,19598:19592750,44089527 -g1,19598:20225042,44089527 -h1,19598:21805771,44089527:0,0,0 -k1,19598:32583029,44089527:10777258 -g1,19598:32583029,44089527 -) -] -) -g1,19600:32583029,44197005 -g1,19600:6630773,44197005 -g1,19600:6630773,44197005 -g1,19600:32583029,44197005 -g1,19600:32583029,44197005 -) -h1,19600:6630773,44393613:0,0,0 -] -(1,19609:32583029,45706769:0,0,0 -g1,19609:32583029,45706769 -) -) -] -(1,19609:6630773,47279633:25952256,0,0 -h1,19609:6630773,47279633:25952256,0,0 -) -] -(1,19609:4262630,4025873:0,0,0 -[1,19609:-473656,4025873:0,0,0 -(1,19609:-473656,-710413:0,0,0 -(1,19609:-473656,-710413:0,0,0 -g1,19609:-473656,-710413 -) -g1,19609:-473656,-710413 -) -] +] ) -] -!18000 -}350 -Input:3092:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3093:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3094:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3095:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +] +!11929 +}329 Input:3096:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3097:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3098:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3099:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3100:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3101:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3102:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1046 -{351 -[1,19661:4262630,47279633:28320399,43253760,0 -(1,19661:4262630,4025873:0,0,0 -[1,19661:-473656,4025873:0,0,0 -(1,19661:-473656,-710413:0,0,0 -(1,19661:-473656,-644877:0,0,0 -k1,19661:-473656,-644877:-65536 +!106 +{330 +[1,19604:4262630,47279633:28320399,43253760,0 +(1,19604:4262630,4025873:0,0,0 +[1,19604:-473656,4025873:0,0,0 +(1,19604:-473656,-710413:0,0,0 +(1,19604:-473656,-644877:0,0,0 +k1,19604:-473656,-644877:-65536 ) -(1,19661:-473656,4736287:0,0,0 -k1,19661:-473656,4736287:5209943 +(1,19604:-473656,4736287:0,0,0 +k1,19604:-473656,4736287:5209943 ) -g1,19661:-473656,-710413 +g1,19604:-473656,-710413 ) ] ) -[1,19661:6630773,47279633:25952256,43253760,0 -[1,19661:6630773,4812305:25952256,786432,0 -(1,19661:6630773,4812305:25952256,513147,126483 -(1,19661:6630773,4812305:25952256,513147,126483 -g1,19661:3078558,4812305 -[1,19661:3078558,4812305:0,0,0 -(1,19661:3078558,2439708:0,1703936,0 -k1,19661:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,19661:2537886,2439708:1179648,16384,0 +[1,19604:6630773,47279633:25952256,43253760,0 +[1,19604:6630773,4812305:25952256,786432,0 +(1,19604:6630773,4812305:25952256,505283,126483 +(1,19604:6630773,4812305:25952256,505283,126483 +g1,19604:3078558,4812305 +[1,19604:3078558,4812305:0,0,0 +(1,19604:3078558,2439708:0,1703936,0 +k1,19604:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,19604:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,19661:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,19604:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,19661:3078558,4812305:0,0,0 -(1,19661:3078558,2439708:0,1703936,0 -g1,19661:29030814,2439708 -g1,19661:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,19661:36151628,1915420:16384,1179648,0 +[1,19604:3078558,4812305:0,0,0 +(1,19604:3078558,2439708:0,1703936,0 +g1,19604:29030814,2439708 +g1,19604:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,19604:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,19661:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,19604:37855564,2439708:1179648,16384,0 ) ) -k1,19661:3078556,2439708:-34777008 +k1,19604:3078556,2439708:-34777008 ) ] -[1,19661:3078558,4812305:0,0,0 -(1,19661:3078558,49800853:0,16384,2228224 -k1,19661:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,19661:2537886,49800853:1179648,16384,0 +[1,19604:3078558,4812305:0,0,0 +(1,19604:3078558,49800853:0,16384,2228224 +k1,19604:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,19604:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,19661:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,19604:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,19661:3078558,4812305:0,0,0 -(1,19661:3078558,49800853:0,16384,2228224 -g1,19661:29030814,49800853 -g1,19661:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,19661:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] +[1,19604:3078558,4812305:0,0,0 +(1,19604:3078558,49800853:0,16384,2228224 +g1,19604:29030814,49800853 +g1,19604:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,19604:36151628,51504789:16384,1179648,0 ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,19661:37855564,49800853:1179648,16384,0 -) -) -k1,19661:3078556,49800853:-34777008 -) -] -g1,19661:6630773,4812305 -k1,19661:21350816,4812305:13524666 -g1,19661:21999622,4812305 -g1,19661:25611966,4812305 -g1,19661:28956923,4812305 -g1,19661:29772190,4812305 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 +) +] +) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,19604:37855564,49800853:1179648,16384,0 +) +) +k1,19604:3078556,49800853:-34777008 +) +] +g1,19604:6630773,4812305 +g1,19604:6630773,4812305 +g1,19604:9104757,4812305 +g1,19604:10491498,4812305 +g1,19604:12580130,4812305 +k1,19604:31387652,4812305:18807522 ) ) ] -[1,19661:6630773,45706769:25952256,40108032,0 -(1,19661:6630773,45706769:25952256,40108032,0 -(1,19661:6630773,45706769:0,0,0 -g1,19661:6630773,45706769 -) -[1,19661:6630773,45706769:25952256,40108032,0 -(1,19603:6630773,14682403:25952256,9083666,0 -k1,19603:10523651,14682403:3892878 -h1,19602:10523651,14682403:0,0,0 -(1,19602:10523651,14682403:18166500,9083666,0 -(1,19602:10523651,14682403:18167376,9083688,0 -(1,19602:10523651,14682403:18167376,9083688,0 -(1,19602:10523651,14682403:0,9083688,0 -(1,19602:10523651,14682403:0,14208860,0 -(1,19602:10523651,14682403:28417720,14208860,0 +[1,19604:6630773,45706769:25952256,40108032,0 +(1,19604:6630773,45706769:25952256,40108032,0 +(1,19604:6630773,45706769:0,0,0 +g1,19604:6630773,45706769 ) -k1,19602:10523651,14682403:-28417720 -) -) -g1,19602:28691027,14682403 -) -) -) -g1,19603:28690151,14682403 -k1,19603:32583029,14682403:3892878 -) -(1,19610:6630773,15523891:25952256,513147,134348 -h1,19609:6630773,15523891:983040,0,0 -k1,19609:8860308,15523891:292946 -k1,19609:10257536,15523891:292946 -k1,19609:13592007,15523891:292945 -k1,19609:15535150,15523891:292946 -k1,19609:17270543,15523891:292946 -k1,19609:18720199,15523891:292946 -k1,19609:21524484,15523891:292945 -k1,19609:22873870,15523891:292946 -k1,19609:26511774,15523891:292946 -k1,19609:27464012,15523891:292946 -k1,19609:28776042,15523891:292945 -k1,19609:30353494,15523891:292946 -k1,19609:31305732,15523891:292946 -k1,19609:32583029,15523891:0 -) -(1,19610:6630773,16365379:25952256,513147,126483 -k1,19609:9045253,16365379:166595 -k1,19609:10253869,16365379:166594 -k1,19609:11623705,16365379:166595 -k1,19609:14625386,16365379:166594 -k1,19609:15660333,16365379:166595 -k1,19609:17112744,16365379:166595 -k1,19609:19924371,16365379:166594 -k1,19609:21110051,16365379:166595 -k1,19609:23542226,16365379:166595 -(1,19609:23542226,16365379:0,452978,115847 -r1,19661:26362475,16365379:2820249,568825,115847 -k1,19609:23542226,16365379:-2820249 -) -(1,19609:23542226,16365379:2820249,452978,115847 -k1,19609:23542226,16365379:3277 -h1,19609:26359198,16365379:0,411205,112570 -) -k1,19609:26529069,16365379:166594 -k1,19609:28208890,16365379:166595 -k1,19609:29323135,16365379:166594 -k1,19609:30508815,16365379:166595 -k1,19609:32583029,16365379:0 -) -(1,19610:6630773,17206867:25952256,513147,7863 -k1,19609:8241211,17206867:216487 -k1,19609:9614408,17206867:216487 -k1,19609:11115401,17206867:216487 -k1,19609:13999860,17206867:216488 -k1,19609:15235432,17206867:216487 -k1,19609:17189934,17206867:216487 -k1,19609:18065713,17206867:216487 -k1,19609:19301285,17206867:216487 -k1,19609:22029112,17206867:216487 -k1,19609:22861637,17206867:216487 -k1,19609:25744129,17206867:216487 -k1,19609:26612045,17206867:216488 -k1,19609:28722522,17206867:216487 -k1,19609:30731419,17206867:216487 -k1,19609:31563944,17206867:216487 -k1,19609:32583029,17206867:0 -) -(1,19610:6630773,18048355:25952256,505283,126483 -g1,19609:8246890,18048355 -k1,19610:32583030,18048355:22366784 -g1,19610:32583030,18048355 -) -v1,19612:6630773,19238821:0,393216,0 -(1,19616:6630773,19560209:25952256,714604,196608 -g1,19616:6630773,19560209 -g1,19616:6630773,19560209 -g1,19616:6434165,19560209 -(1,19616:6434165,19560209:0,714604,196608 -r1,19661:32779637,19560209:26345472,911212,196608 -k1,19616:6434165,19560209:-26345472 -) -(1,19616:6434165,19560209:26345472,714604,196608 -[1,19616:6630773,19560209:25952256,517996,0 -(1,19614:6630773,19452731:25952256,410518,107478 -(1,19613:6630773,19452731:0,0,0 -g1,19613:6630773,19452731 -g1,19613:6630773,19452731 -g1,19613:6303093,19452731 -(1,19613:6303093,19452731:0,0,0 -) -g1,19613:6630773,19452731 -) -g1,19614:7263065,19452731 -g1,19614:7895357,19452731 -g1,19614:12953689,19452731 -g1,19614:13585981,19452731 -g1,19614:16431293,19452731 -g1,19614:18012022,19452731 -g1,19614:20857333,19452731 -g1,19614:21489625,19452731 -h1,19614:24967227,19452731:0,0,0 -k1,19614:32583029,19452731:7615802 -g1,19614:32583029,19452731 -) -] -) -g1,19616:32583029,19560209 -g1,19616:6630773,19560209 -g1,19616:6630773,19560209 -g1,19616:32583029,19560209 -g1,19616:32583029,19560209 -) -h1,19616:6630773,19756817:0,0,0 -(1,19619:6630773,29430307:25952256,9083666,0 -k1,19619:10523651,29430307:3892878 -h1,19618:10523651,29430307:0,0,0 -(1,19618:10523651,29430307:18166500,9083666,0 -(1,19618:10523651,29430307:18167376,9083688,0 -(1,19618:10523651,29430307:18167376,9083688,0 -(1,19618:10523651,29430307:0,9083688,0 -(1,19618:10523651,29430307:0,14208860,0 -(1,19618:10523651,29430307:28417720,14208860,0 -) -k1,19618:10523651,29430307:-28417720 -) -) -g1,19618:28691027,29430307 -) -) -) -g1,19619:28690151,29430307 -k1,19619:32583029,29430307:3892878 -) -v1,19626:6630773,30796083:0,393216,0 -(1,19654:6630773,45387932:25952256,14985065,0 -g1,19654:6630773,45387932 -g1,19654:6303093,45387932 -r1,19661:6401397,45387932:98304,14985065,0 -g1,19654:6600626,45387932 -g1,19654:6797234,45387932 -[1,19654:6797234,45387932:25785795,14985065,0 -(1,19627:6797234,31158156:25785795,755289,196608 -(1,19626:6797234,31158156:0,755289,196608 -r1,19661:8134168,31158156:1336934,951897,196608 -k1,19626:6797234,31158156:-1336934 -) -(1,19626:6797234,31158156:1336934,755289,196608 -) -k1,19626:8325414,31158156:191246 -k1,19626:8653094,31158156:327680 -k1,19626:12317093,31158156:191246 -k1,19626:13376691,31158156:191246 -k1,19626:14904871,31158156:191246 -k1,19626:16644733,31158156:191246 -k1,19626:17487408,31158156:191247 -k1,19626:19153869,31158156:191246 -k1,19626:23668525,31158156:191246 -k1,19626:27630057,31158156:191246 -k1,19626:28504188,31158156:191246 -k1,19626:30550758,31158156:191246 -k1,19626:32583029,31158156:0 -) -(1,19627:6797234,31999644:25785795,513147,134348 -k1,19626:7592011,31999644:178739 -k1,19626:8789834,31999644:178738 -k1,19626:10712486,31999644:178739 -k1,19626:13924231,31999644:178739 -k1,19626:15299656,31999644:178738 -k1,19626:16862515,31999644:178739 -k1,19626:19702671,31999644:178739 -k1,19626:21872393,31999644:178738 -k1,19626:22406992,31999644:178739 -k1,19626:23823706,31999644:178739 -k1,19626:24661736,31999644:178738 -k1,19626:27840713,31999644:178739 -k1,19626:29396363,31999644:178739 -k1,19626:30771788,31999644:178738 -k1,19626:32051532,31999644:178739 -k1,19626:32583029,31999644:0 -) -(1,19627:6797234,32841132:25785795,513147,134348 -g1,19626:7647891,32841132 -g1,19626:8939605,32841132 -g1,19626:9824996,32841132 -(1,19626:9824996,32841132:0,452978,115847 -r1,19661:12645245,32841132:2820249,568825,115847 -k1,19626:9824996,32841132:-2820249 -) -(1,19626:9824996,32841132:2820249,452978,115847 -k1,19626:9824996,32841132:3277 -h1,19626:12641968,32841132:0,411205,112570 -) -g1,19626:12844474,32841132 -g1,19626:13399563,32841132 -g1,19626:16294288,32841132 -g1,19626:17778023,32841132 -g1,19626:20050156,32841132 -g1,19626:23224064,32841132 -g1,19626:25619404,32841132 -g1,19626:27086099,32841132 -g1,19626:27700171,32841132 -k1,19627:32583029,32841132:938901 -g1,19627:32583029,32841132 -) -v1,19629:6797234,34031598:0,393216,0 -(1,19637:6797234,37017698:25785795,3379316,196608 -g1,19637:6797234,37017698 -g1,19637:6797234,37017698 -g1,19637:6600626,37017698 -(1,19637:6600626,37017698:0,3379316,196608 -r1,19661:32779637,37017698:26179011,3575924,196608 -k1,19637:6600625,37017698:-26179012 -) -(1,19637:6600626,37017698:26179011,3379316,196608 -[1,19637:6797234,37017698:25785795,3182708,0 -(1,19631:6797234,34245508:25785795,410518,101187 -(1,19630:6797234,34245508:0,0,0 -g1,19630:6797234,34245508 -g1,19630:6797234,34245508 -g1,19630:6469554,34245508 -(1,19630:6469554,34245508:0,0,0 -) -g1,19630:6797234,34245508 -) -g1,19631:10907128,34245508 -g1,19631:11855566,34245508 -k1,19631:11855566,34245508:0 -h1,19631:17546189,34245508:0,0,0 -k1,19631:32583029,34245508:15036840 -g1,19631:32583029,34245508 -) -(1,19632:6797234,34911686:25785795,404226,101187 -h1,19632:6797234,34911686:0,0,0 -g1,19632:7113380,34911686 -g1,19632:7429526,34911686 -g1,19632:7745672,34911686 -g1,19632:8061818,34911686 -g1,19632:8377964,34911686 -g1,19632:8694110,34911686 -g1,19632:9010256,34911686 -g1,19632:9326402,34911686 -g1,19632:9642548,34911686 -g1,19632:9958694,34911686 -g1,19632:10274840,34911686 -g1,19632:10590986,34911686 -g1,19632:10907132,34911686 -g1,19632:11223278,34911686 -g1,19632:11539424,34911686 -g1,19632:11855570,34911686 -g1,19632:12171716,34911686 -g1,19632:12487862,34911686 -g1,19632:12804008,34911686 -g1,19632:13120154,34911686 -g1,19632:13436300,34911686 -g1,19632:13752446,34911686 -g1,19632:14068592,34911686 -g1,19632:16281612,34911686 -g1,19632:16913904,34911686 -g1,19632:20391508,34911686 -g1,19632:22920674,34911686 -g1,19632:25765986,34911686 -h1,19632:27346714,34911686:0,0,0 -k1,19632:32583029,34911686:5236315 -g1,19632:32583029,34911686 -) -(1,19633:6797234,35577864:25785795,404226,107478 -h1,19633:6797234,35577864:0,0,0 -g1,19633:7745671,35577864 -g1,19633:8694109,35577864 -g1,19633:12487858,35577864 -g1,19633:13120150,35577864 -g1,19633:15649316,35577864 -g1,19633:18494628,35577864 -g1,19633:20075357,35577864 -h1,19633:20391503,35577864:0,0,0 -k1,19633:32583029,35577864:12191526 -g1,19633:32583029,35577864 -) -(1,19634:6797234,36244042:25785795,404226,107478 -h1,19634:6797234,36244042:0,0,0 -g1,19634:7113380,36244042 -g1,19634:7429526,36244042 -g1,19634:7745672,36244042 -g1,19634:8061818,36244042 -g1,19634:8377964,36244042 -g1,19634:8694110,36244042 -g1,19634:12804004,36244042 -h1,19634:13120150,36244042:0,0,0 -k1,19634:32583030,36244042:19462880 -g1,19634:32583030,36244042 -) -(1,19635:6797234,36910220:25785795,410518,107478 -h1,19635:6797234,36910220:0,0,0 -g1,19635:7113380,36910220 -g1,19635:7429526,36910220 -g1,19635:7745672,36910220 -g1,19635:8061818,36910220 -g1,19635:8377964,36910220 -g1,19635:8694110,36910220 -g1,19635:13752442,36910220 -g1,19635:14384734,36910220 -g1,19635:18494629,36910220 -g1,19635:21339940,36910220 -g1,19635:21972232,36910220 -h1,19635:26082126,36910220:0,0,0 -k1,19635:32583029,36910220:6500903 -g1,19635:32583029,36910220 -) -] -) -g1,19637:32583029,37017698 -g1,19637:6797234,37017698 -g1,19637:6797234,37017698 -g1,19637:32583029,37017698 -g1,19637:32583029,37017698 -) -h1,19637:6797234,37214306:0,0,0 -(1,19641:6797234,38580082:25785795,513147,126483 -h1,19640:6797234,38580082:983040,0,0 -k1,19640:9634616,38580082:260506 -k1,19640:13200102,38580082:260505 -k1,19640:14328960,38580082:260506 -k1,19640:15926399,38580082:260505 -k1,19640:17717171,38580082:260506 -k1,19640:18629104,38580082:260505 -k1,19640:21227279,38580082:260506 -k1,19640:22506870,38580082:260506 -k1,19640:24559785,38580082:260505 -k1,19640:25479583,38580082:260506 -k1,19640:26759173,38580082:260505 -k1,19640:28913669,38580082:260506 -k1,19640:30687400,38580082:260505 -k1,19640:31563944,38580082:260506 -k1,19640:32583029,38580082:0 -) -(1,19641:6797234,39421570:25785795,513147,134348 -k1,19640:9577395,39421570:231466 -k1,19640:10495023,39421570:231466 -k1,19640:12048349,39421570:231465 -k1,19640:12939107,39421570:231466 -k1,19640:14189658,39421570:231466 -k1,19640:16438978,39421570:231466 -k1,19640:18158766,39421570:231465 -k1,19640:19258584,39421570:231466 -k1,19640:20582535,39421570:231466 -k1,19640:21500163,39421570:231466 -(1,19640:21500163,39421570:0,452978,115847 -r1,19661:24320412,39421570:2820249,568825,115847 -k1,19640:21500163,39421570:-2820249 -) -(1,19640:21500163,39421570:2820249,452978,115847 -k1,19640:21500163,39421570:3277 -h1,19640:24317135,39421570:0,411205,112570 -) -k1,19640:24725547,39421570:231465 -k1,19640:27652509,39421570:231466 -(1,19640:27652509,39421570:0,452978,115847 -r1,19661:32583029,39421570:4930520,568825,115847 -k1,19640:27652509,39421570:-4930520 -) -(1,19640:27652509,39421570:4930520,452978,115847 -k1,19640:27652509,39421570:3277 -h1,19640:32579752,39421570:0,411205,112570 -) -k1,19640:32583029,39421570:0 -) -(1,19641:6797234,40263058:25785795,505283,126483 -k1,19640:8348925,40263058:157740 -k1,19640:8862525,40263058:157740 -k1,19640:11214410,40263058:157740 -k1,19640:13456196,40263058:157741 -k1,19640:14898442,40263058:157740 -k1,19640:17068137,40263058:157740 -k1,19640:17971021,40263058:157740 -k1,19640:18780189,40263058:157740 -k1,19640:20030414,40263058:157740 -k1,19640:20958858,40263058:157741 -k1,19640:24556583,40263058:157740 -k1,19640:26633217,40263058:157740 -k1,19640:30728360,40263058:157740 -k1,19640:32583029,40263058:0 -) -(1,19641:6797234,41104546:25785795,513147,126483 -k1,19640:7783141,41104546:176537 -k1,19640:8978764,41104546:176538 -k1,19640:10713747,41104546:176537 -k1,19640:13048386,41104546:176538 -k1,19640:14614286,41104546:176537 -k1,19640:16473789,41104546:176538 -k1,19640:18486645,41104546:176537 -k1,19640:19713070,41104546:176538 -k1,19640:22168294,41104546:176537 -h1,19640:23537341,41104546:0,0,0 -k1,19640:23713879,41104546:176538 -k1,19640:24838068,41104546:176538 -k1,19640:25785308,41104546:176537 -k1,19640:28623262,41104546:176537 -k1,19640:29459092,41104546:176538 -k1,19640:30654714,41104546:176537 -k1,19640:31923737,41104546:176538 -k1,19641:32583029,41104546:0 -) -(1,19641:6797234,41946034:25785795,513147,115847 -(1,19640:6797234,41946034:0,452978,115847 -r1,19661:9617483,41946034:2820249,568825,115847 -k1,19640:6797234,41946034:-2820249 -) -(1,19640:6797234,41946034:2820249,452978,115847 -k1,19640:6797234,41946034:3277 -h1,19640:9614206,41946034:0,411205,112570 -) -g1,19640:9990382,41946034 -g1,19640:11208696,41946034 -g1,19640:11822768,41946034 -g1,19640:14717493,41946034 -g1,19640:15726092,41946034 -g1,19640:17810792,41946034 -(1,19640:17810792,41946034:0,452978,115847 -r1,19661:22741312,41946034:4930520,568825,115847 -k1,19640:17810792,41946034:-4930520 -) -(1,19640:17810792,41946034:4930520,452978,115847 -k1,19640:17810792,41946034:3277 -h1,19640:22738035,41946034:0,411205,112570 -) -g1,19640:23114211,41946034 -g1,19640:23844937,41946034 -k1,19641:32583029,41946034:7085929 -g1,19641:32583029,41946034 -) -v1,19645:6797234,43136500:0,393216,0 -(1,19651:6797234,44667036:25785795,1923752,196608 -g1,19651:6797234,44667036 -g1,19651:6797234,44667036 -g1,19651:6600626,44667036 -(1,19651:6600626,44667036:0,1923752,196608 -r1,19661:32779637,44667036:26179011,2120360,196608 -k1,19651:6600625,44667036:-26179012 -) -(1,19651:6600626,44667036:26179011,1923752,196608 -[1,19651:6797234,44667036:25785795,1727144,0 -(1,19647:6797234,43233493:25785795,293601,101187 -(1,19646:6797234,43233493:0,0,0 -g1,19646:6797234,43233493 -g1,19646:6797234,43233493 -g1,19646:6469554,43233493 -(1,19646:6469554,43233493:0,0,0 -) -g1,19646:6797234,43233493 -) -g1,19647:7429526,43233493 -h1,19647:7745672,43233493:0,0,0 -k1,19647:32583028,43233493:24837356 -g1,19647:32583028,43233493 -) -(1,19648:6797234,43899671:25785795,410518,107478 -h1,19648:6797234,43899671:0,0,0 -g1,19648:7113380,43899671 -g1,19648:7429526,43899671 -g1,19648:12487858,43899671 -g1,19648:13120150,43899671 -k1,19648:13120150,43899671:0 -h1,19648:16281607,43899671:0,0,0 -k1,19648:32583029,43899671:16301422 -g1,19648:32583029,43899671 -) -(1,19649:6797234,44565849:25785795,404226,101187 -h1,19649:6797234,44565849:0,0,0 -g1,19649:7113380,44565849 -g1,19649:7429526,44565849 -g1,19649:7745672,44565849 -g1,19649:8061818,44565849 -g1,19649:8377964,44565849 -g1,19649:8694110,44565849 -g1,19649:9010256,44565849 -g1,19649:9326402,44565849 -g1,19649:9642548,44565849 -g1,19649:9958694,44565849 -g1,19649:10274840,44565849 -g1,19649:10590986,44565849 -g1,19649:10907132,44565849 -g1,19649:13752443,44565849 -g1,19649:14384735,44565849 -g1,19649:20075358,44565849 -g1,19649:20707650,44565849 -k1,19649:20707650,44565849:0 -h1,19649:27030563,44565849:0,0,0 -k1,19649:32583029,44565849:5552466 -g1,19649:32583029,44565849 -) -] -) -g1,19651:32583029,44667036 -g1,19651:6797234,44667036 -g1,19651:6797234,44667036 -g1,19651:32583029,44667036 -g1,19651:32583029,44667036 -) -h1,19651:6797234,44863644:0,0,0 -] -g1,19654:32583029,45387932 -) -h1,19654:6630773,45387932:0,0,0 -] -(1,19661:32583029,45706769:0,0,0 -g1,19661:32583029,45706769 -) -) -] -(1,19661:6630773,47279633:25952256,0,0 -h1,19661:6630773,47279633:25952256,0,0 -) -] -(1,19661:4262630,4025873:0,0,0 -[1,19661:-473656,4025873:0,0,0 -(1,19661:-473656,-710413:0,0,0 -(1,19661:-473656,-710413:0,0,0 -g1,19661:-473656,-710413 -) -g1,19661:-473656,-710413 -) -] -) -] -!18575 -}351 -Input:3103:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3104:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3105:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3106:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3107:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3108:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3109:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3110:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3111:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3112:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3113:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3114:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3115:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3116:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3117:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3118:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3119:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3120:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3121:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3122:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3123:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1986 -{352 -[1,19710:4262630,47279633:28320399,43253760,0 -(1,19710:4262630,4025873:0,0,0 -[1,19710:-473656,4025873:0,0,0 -(1,19710:-473656,-710413:0,0,0 -(1,19710:-473656,-644877:0,0,0 -k1,19710:-473656,-644877:-65536 +[1,19604:6630773,45706769:25952256,40108032,0 +(1,19548:6630773,6254097:25952256,513147,138281 +h1,19547:6630773,6254097:983040,0,0 +g1,19547:9596277,6254097 +g1,19547:10663858,6254097 +g1,19547:12259659,6254097 +g1,19547:12814748,6254097 +g1,19547:15525317,6254097 +g1,19547:16375974,6254097 +g1,19547:17950804,6254097 +g1,19547:19306743,6254097 +g1,19547:20165264,6254097 +$1,19547:20165264,6254097 +$1,19547:20667925,6254097 +g1,19547:20867154,6254097 +g1,19547:21749268,6254097 +$1,19547:21749268,6254097 +$1,19547:22301081,6254097 +g1,19547:22500310,6254097 +g1,19547:23718624,6254097 +g1,19547:24974293,6254097 +g1,19547:25705019,6254097 +g1,19547:27190064,6254097 +k1,19548:32583029,6254097:2029657 +g1,19548:32583029,6254097 +) +v1,19550:6630773,6938952:0,393216,0 +(1,19555:6630773,7957884:25952256,1412148,196608 +g1,19555:6630773,7957884 +g1,19555:6630773,7957884 +g1,19555:6434165,7957884 +(1,19555:6434165,7957884:0,1412148,196608 +r1,19604:32779637,7957884:26345472,1608756,196608 +k1,19555:6434165,7957884:-26345472 +) +(1,19555:6434165,7957884:26345472,1412148,196608 +[1,19555:6630773,7957884:25952256,1215540,0 +(1,19552:6630773,7166783:25952256,424439,112852 +(1,19551:6630773,7166783:0,0,0 +g1,19551:6630773,7166783 +g1,19551:6630773,7166783 +g1,19551:6303093,7166783 +(1,19551:6303093,7166783:0,0,0 +) +g1,19551:6630773,7166783 +) +k1,19552:6630773,7166783:0 +g1,19552:10946175,7166783 +g1,19552:12937899,7166783 +g1,19552:13601807,7166783 +g1,19552:18249162,7166783 +g1,19552:20240886,7166783 +g1,19552:20904794,7166783 +g1,19552:24224333,7166783 +h1,19552:24556287,7166783:0,0,0 +k1,19552:32583029,7166783:8026742 +g1,19552:32583029,7166783 +) +(1,19553:6630773,7851638:25952256,431045,106246 +h1,19553:6630773,7851638:0,0,0 +g1,19553:6962727,7851638 +g1,19553:7294681,7851638 +g1,19553:7626635,7851638 +g1,19553:7958589,7851638 +g1,19553:13933760,7851638 +g1,19553:14597668,7851638 +h1,19553:15593530,7851638:0,0,0 +k1,19553:32583030,7851638:16989500 +g1,19553:32583030,7851638 +) +] +) +g1,19555:32583029,7957884 +g1,19555:6630773,7957884 +g1,19555:6630773,7957884 +g1,19555:32583029,7957884 +g1,19555:32583029,7957884 +) +h1,19555:6630773,8154492:0,0,0 +(1,19558:6630773,18730517:25952256,10510489,0 +k1,19558:12599879,18730517:5969106 +h1,19557:12599879,18730517:0,0,0 +(1,19557:12599879,18730517:14014044,10510489,0 +(1,19557:12599879,18730517:14014019,10510515,0 +(1,19557:12599879,18730517:14014019,10510515,0 +(1,19557:12599879,18730517:0,10510515,0 +(1,19557:12599879,18730517:0,14208860,0 +(1,19557:12599879,18730517:18945146,14208860,0 +) +k1,19557:12599879,18730517:-18945146 +) +) +g1,19557:26613898,18730517 +) +) +) +g1,19558:26613923,18730517 +k1,19558:32583029,18730517:5969106 +) +v1,19565:6630773,19415372:0,393216,0 +(1,19570:6630773,20434304:25952256,1412148,196608 +g1,19570:6630773,20434304 +g1,19570:6630773,20434304 +g1,19570:6434165,20434304 +(1,19570:6434165,20434304:0,1412148,196608 +r1,19604:32779637,20434304:26345472,1608756,196608 +k1,19570:6434165,20434304:-26345472 +) +(1,19570:6434165,20434304:26345472,1412148,196608 +[1,19570:6630773,20434304:25952256,1215540,0 +(1,19567:6630773,19643203:25952256,424439,112852 +(1,19566:6630773,19643203:0,0,0 +g1,19566:6630773,19643203 +g1,19566:6630773,19643203 +g1,19566:6303093,19643203 +(1,19566:6303093,19643203:0,0,0 +) +g1,19566:6630773,19643203 +) +k1,19567:6630773,19643203:0 +g1,19567:10946175,19643203 +g1,19567:12937899,19643203 +g1,19567:13601807,19643203 +g1,19567:18249162,19643203 +g1,19567:20240886,19643203 +g1,19567:20904794,19643203 +g1,19567:24224333,19643203 +h1,19567:24556287,19643203:0,0,0 +k1,19567:32583029,19643203:8026742 +g1,19567:32583029,19643203 +) +(1,19568:6630773,20328058:25952256,431045,106246 +h1,19568:6630773,20328058:0,0,0 +g1,19568:6962727,20328058 +g1,19568:7294681,20328058 +g1,19568:7626635,20328058 +g1,19568:7958589,20328058 +g1,19568:13933760,20328058 +g1,19568:14597668,20328058 +h1,19568:15593530,20328058:0,0,0 +k1,19568:32583030,20328058:16989500 +g1,19568:32583030,20328058 +) +] +) +g1,19570:32583029,20434304 +g1,19570:6630773,20434304 +g1,19570:6630773,20434304 +g1,19570:32583029,20434304 +g1,19570:32583029,20434304 +) +h1,19570:6630773,20630912:0,0,0 +(1,19573:6630773,31206937:25952256,10510489,0 +k1,19573:12599879,31206937:5969106 +h1,19572:12599879,31206937:0,0,0 +(1,19572:12599879,31206937:14014044,10510489,0 +(1,19572:12599879,31206937:14014019,10510515,0 +(1,19572:12599879,31206937:14014019,10510515,0 +(1,19572:12599879,31206937:0,10510515,0 +(1,19572:12599879,31206937:0,14208860,0 +(1,19572:12599879,31206937:18945146,14208860,0 +) +k1,19572:12599879,31206937:-18945146 +) +) +g1,19572:26613898,31206937 +) +) +) +g1,19573:26613923,31206937 +k1,19573:32583029,31206937:5969106 +) +v1,19580:6630773,32072017:0,393216,0 +(1,19581:6630773,37578658:25952256,5899857,0 +g1,19581:6630773,37578658 +g1,19581:6237557,37578658 +r1,19604:6368629,37578658:131072,5899857,0 +g1,19581:6567858,37578658 +g1,19581:6764466,37578658 +[1,19581:6764466,37578658:25818563,5899857,0 +(1,19581:6764466,32380315:25818563,701514,196608 +(1,19580:6764466,32380315:0,701514,196608 +r1,19604:8010564,32380315:1246098,898122,196608 +k1,19580:6764466,32380315:-1246098 +) +(1,19580:6764466,32380315:1246098,701514,196608 +) +k1,19580:8171112,32380315:160548 +k1,19580:8498792,32380315:327680 +k1,19580:9287175,32380315:160548 +k1,19580:10466808,32380315:160548 +k1,19580:11994437,32380315:160548 +k1,19580:12814276,32380315:160547 +k1,19580:15699811,32380315:160548 +k1,19580:17355891,32380315:160548 +k1,19580:19987802,32380315:160548 +k1,19580:21965663,32380315:160548 +k1,19580:25773290,32380315:160548 +k1,19580:26593130,32380315:160548 +$1,19580:26593130,32380315 +$1,19580:27144943,32380315 +k1,19580:27305491,32380315:160548 +k1,19580:28275408,32380315:160547 +$1,19580:28275408,32380315 +$1,19580:28778069,32380315 +k1,19580:28938617,32380315:160548 +k1,19580:30290610,32380315:160548 +k1,19580:31110450,32380315:160548 +$1,19580:31110450,32380315 +$1,19580:31613111,32380315 +k1,19580:31773659,32380315:160548 +k1,19580:32583029,32380315:0 +) +(1,19581:6764466,33245395:25818563,615216,138281 +$1,19580:7316279,33245395 +k1,19580:7516139,33245395:199860 +k1,19580:8332037,33245395:199860 +k1,19580:10133597,33245395:199860 +k1,19580:12030840,33245395:199861 +k1,19580:13766209,33245395:199860 +k1,19580:16728412,33245395:199860 +k1,19580:18640728,33245395:199860 +k1,19580:20513067,33245395:199860 +k1,19580:22179623,33245395:199860 +k1,19580:22845444,33245395:199860 +$1,19580:22845444,33245395 +(1,19580:23339585,32970114:311689,339935,0 +) +$1,19580:23651274,33245395 +k1,19580:23851134,33245395:199860 +k1,19580:24582492,33245395:199861 +k1,19580:28236755,33245395:199860 +k1,19580:29817459,33245395:199860 +k1,19580:30548816,33245395:199860 +k1,19580:31931601,33245395:199860 +k1,19580:32583029,33245395:0 +) +(1,19581:6764466,34110475:25818563,505283,126483 +k1,19580:7941291,34110475:157740 +k1,19580:11838515,34110475:157740 +k1,19580:13280761,34110475:157740 +$1,19580:13280761,34110475 +$1,19580:13783422,34110475 +k1,19580:13941162,34110475:157740 +k1,19580:16109547,34110475:157740 +k1,19580:17258847,34110475:157740 +k1,19580:19728041,34110475:157739 +k1,19580:21741761,34110475:157740 +k1,19580:22834044,34110475:157740 +k1,19580:23674669,34110475:157740 +k1,19580:26957166,34110475:157740 +k1,19580:29575128,34110475:157740 +k1,19580:31513481,34110475:157740 +k1,19580:32583029,34110475:0 +) +(1,19581:6764466,34975555:25818563,505283,134348 +k1,19580:8021556,34975555:190819 +k1,19580:10522519,34975555:190819 +k1,19580:11364766,34975555:190819 +k1,19580:14049885,34975555:190819 +k1,19580:17240287,34975555:190819 +k1,19580:18328949,34975555:190819 +k1,19580:22427680,34975555:190819 +k1,19580:25444411,34975555:190819 +k1,19580:26251268,34975555:190819 +k1,19580:27461172,34975555:190819 +k1,19580:29041354,34975555:190819 +k1,19580:29763670,34975555:190819 +k1,19580:32583029,34975555:0 +) +(1,19581:6764466,35840635:25818563,505283,138281 +k1,19580:7617938,35840635:202044 +k1,19580:8567747,35840635:202043 +k1,19580:9385829,35840635:202044 +$1,19580:9385829,35840635 +$1,19580:9937642,35840635 +k1,19580:10313355,35840635:202043 +k1,19580:11565286,35840635:202044 +k1,19580:14306850,35840635:202044 +(1,19580:14306850,35840635:661914,485622,0 +) +k1,19580:15170807,35840635:202043 +k1,19580:16182221,35840635:202044 +k1,19580:17882417,35840635:202043 +(1,19580:17882417,35840635:661914,485622,0 +) +k1,19580:18746375,35840635:202044 +k1,19580:19631303,35840635:202043 +k1,19580:22183468,35840635:202044 +k1,19580:22741372,35840635:202044 +k1,19580:25821756,35840635:202043 +k1,19580:27605839,35840635:202044 +k1,19580:29301448,35840635:202043 +k1,19580:30189654,35840635:202044 +k1,19580:32583029,35840635:0 +) +(1,19581:6764466,36705715:25818563,513147,134348 +k1,19580:9660611,36705715:165260 +k1,19580:10749930,36705715:165261 +k1,19580:13308565,36705715:165260 +k1,19580:15785936,36705715:165261 +k1,19580:18560840,36705715:165260 +k1,19580:19917545,36705715:165260 +k1,19580:22039056,36705715:165261 +k1,19580:23971924,36705715:165362 +k1,19580:25152337,36705715:165260 +k1,19580:28243125,36705715:165261 +k1,19580:29356036,36705715:165260 +k1,19580:32583029,36705715:0 +) +(1,19581:6764466,37570795:25818563,513147,7863 +k1,19581:32583029,37570795:21837906 +g1,19581:32583029,37570795 +) +] +g1,19581:32583029,37578658 +) +h1,19581:6630773,37578658:0,0,0 +(1,19584:6630773,38443738:25952256,513147,126483 +h1,19583:6630773,38443738:983040,0,0 +k1,19583:9270509,38443738:177548 +k1,19583:10620496,38443738:177548 +k1,19583:14368444,38443738:177547 +k1,19583:17387633,38443738:177548 +k1,19583:20324247,38443738:177548 +k1,19583:21520880,38443738:177548 +k1,19583:23964008,38443738:177548 +k1,19583:24673053,38443738:177548 +k1,19583:25502028,38443738:177547 +k1,19583:27032239,38443738:177548 +$1,19583:27032239,38443738 +$1,19583:27534900,38443738 +k1,19583:27712448,38443738:177548 +k1,19583:28576158,38443738:177548 +k1,19583:32583029,38443738:0 +) +(1,19584:6630773,39308818:25952256,513147,138281 +k1,19583:8031731,39308818:209513 +$1,19583:8031731,39308818 +$1,19583:8583544,39308818 +k1,19583:8793058,39308818:209514 +k1,19583:9688733,39308818:209513 +k1,19583:13462750,39308818:209514 +k1,19583:15053107,39308818:209513 +k1,19583:17891925,39308818:209514 +k1,19583:18760730,39308818:209513 +k1,19583:21252863,39308818:209514 +k1,19583:23160414,39308818:209513 +k1,19583:27764117,39308818:209514 +k1,19583:28659792,39308818:209513 +k1,19583:29485344,39308818:209514 +k1,19583:31682564,39308818:209513 +k1,19584:32583029,39308818:0 +) +(1,19584:6630773,40173898:25952256,513147,138281 +k1,19583:8097966,40173898:220043 +k1,19583:9823372,40173898:220044 +$1,19583:9823372,40173898 +$1,19583:10326033,40173898 +k1,19583:10546076,40173898:220043 +k1,19583:11957564,40173898:220043 +$1,19583:11957564,40173898 +$1,19583:12509377,40173898 +k1,19583:12729420,40173898:220043 +k1,19583:16451708,40173898:220044 +k1,19583:17299586,40173898:220043 +k1,19583:18722870,40173898:220043 +k1,19583:20309995,40173898:220044 +k1,19583:23810770,40173898:220043 +(1,19583:23810770,40173898:0,452978,115847 +r1,19604:27686154,40173898:3875384,568825,115847 +k1,19583:23810770,40173898:-3875384 +) +(1,19583:23810770,40173898:3875384,452978,115847 +k1,19583:23810770,40173898:3277 +h1,19583:27682877,40173898:0,411205,112570 +) +k1,19583:27906197,40173898:220043 +k1,19583:29230522,40173898:220043 +k1,19583:30198332,40173898:220044 +k1,19583:31931601,40173898:220043 +k1,19583:32583029,40173898:0 +) +(1,19584:6630773,41038978:25952256,513147,138281 +g1,19583:9361658,41038978 +g1,19583:11446358,41038978 +g1,19583:12304879,41038978 +$1,19583:12304879,41038978 +$1,19583:12807540,41038978 +g1,19583:13006769,41038978 +g1,19583:13888883,41038978 +$1,19583:13888883,41038978 +$1,19583:14440696,41038978 +g1,19583:14639925,41038978 +g1,19583:15370651,41038978 +g1,19583:16588965,41038978 +g1,19583:20795065,41038978 +g1,19583:21677179,41038978 +g1,19583:25642107,41038978 +k1,19584:32583029,41038978:4255912 +g1,19584:32583029,41038978 +) +v1,19588:6630773,41723833:0,393216,0 +(1,19595:6630773,44112475:25952256,2781858,196608 +g1,19595:6630773,44112475 +g1,19595:6630773,44112475 +g1,19595:6434165,44112475 +(1,19595:6434165,44112475:0,2781858,196608 +r1,19604:32779637,44112475:26345472,2978466,196608 +k1,19595:6434165,44112475:-26345472 +) +(1,19595:6434165,44112475:26345472,2781858,196608 +[1,19595:6630773,44112475:25952256,2585250,0 +(1,19590:6630773,41951664:25952256,424439,112852 +(1,19589:6630773,41951664:0,0,0 +g1,19589:6630773,41951664 +g1,19589:6630773,41951664 +g1,19589:6303093,41951664 +(1,19589:6303093,41951664:0,0,0 +) +g1,19589:6630773,41951664 +) +k1,19590:6630773,41951664:0 +g1,19590:10946175,41951664 +g1,19590:16921346,41951664 +g1,19590:21900655,41951664 +h1,19590:22232609,41951664:0,0,0 +k1,19590:32583029,41951664:10350420 +g1,19590:32583029,41951664 +) +(1,19591:6630773,42636519:25952256,431045,106246 +h1,19591:6630773,42636519:0,0,0 +g1,19591:6962727,42636519 +g1,19591:7294681,42636519 +g1,19591:13601806,42636519 +g1,19591:14265714,42636519 +g1,19591:16257438,42636519 +g1,19591:18913070,42636519 +g1,19591:19576978,42636519 +g1,19591:20240886,42636519 +g1,19591:20904794,42636519 +g1,19591:21900656,42636519 +h1,19591:22232610,42636519:0,0,0 +k1,19591:32583029,42636519:10350419 +g1,19591:32583029,42636519 +) +(1,19592:6630773,43321374:25952256,424439,112852 +h1,19592:6630773,43321374:0,0,0 +g1,19592:6962727,43321374 +g1,19592:7294681,43321374 +g1,19592:11610082,43321374 +h1,19592:11942036,43321374:0,0,0 +k1,19592:32583028,43321374:20640992 +g1,19592:32583028,43321374 +) +(1,19593:6630773,44006229:25952256,431045,106246 +h1,19593:6630773,44006229:0,0,0 +g1,19593:6962727,44006229 +g1,19593:7294681,44006229 +g1,19593:14265714,44006229 +g1,19593:16589392,44006229 +g1,19593:17253300,44006229 +h1,19593:19576978,44006229:0,0,0 +k1,19593:32583029,44006229:13006051 +g1,19593:32583029,44006229 +) +] +) +g1,19595:32583029,44112475 +g1,19595:6630773,44112475 +g1,19595:6630773,44112475 +g1,19595:32583029,44112475 +g1,19595:32583029,44112475 +) +h1,19595:6630773,44309083:0,0,0 +] +(1,19604:32583029,45706769:0,0,0 +g1,19604:32583029,45706769 +) +) +] +(1,19604:6630773,47279633:25952256,0,0 +h1,19604:6630773,47279633:25952256,0,0 +) +] +(1,19604:4262630,4025873:0,0,0 +[1,19604:-473656,4025873:0,0,0 +(1,19604:-473656,-710413:0,0,0 +(1,19604:-473656,-710413:0,0,0 +g1,19604:-473656,-710413 +) +g1,19604:-473656,-710413 +) +] +) +] +!17210 +}330 +Input:3097:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3098:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3099:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3100:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3101:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3102:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!576 +{331 +[1,19643:4262630,47279633:28320399,43253760,0 +(1,19643:4262630,4025873:0,0,0 +[1,19643:-473656,4025873:0,0,0 +(1,19643:-473656,-710413:0,0,0 +(1,19643:-473656,-644877:0,0,0 +k1,19643:-473656,-644877:-65536 ) -(1,19710:-473656,4736287:0,0,0 -k1,19710:-473656,4736287:5209943 +(1,19643:-473656,4736287:0,0,0 +k1,19643:-473656,4736287:5209943 ) -g1,19710:-473656,-710413 +g1,19643:-473656,-710413 ) ] ) -[1,19710:6630773,47279633:25952256,43253760,0 -[1,19710:6630773,4812305:25952256,786432,0 -(1,19710:6630773,4812305:25952256,505283,11795 -(1,19710:6630773,4812305:25952256,505283,11795 -g1,19710:3078558,4812305 -[1,19710:3078558,4812305:0,0,0 -(1,19710:3078558,2439708:0,1703936,0 -k1,19710:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,19710:2537886,2439708:1179648,16384,0 +[1,19643:6630773,47279633:25952256,43253760,0 +[1,19643:6630773,4812305:25952256,786432,0 +(1,19643:6630773,4812305:25952256,513147,126483 +(1,19643:6630773,4812305:25952256,513147,126483 +g1,19643:3078558,4812305 +[1,19643:3078558,4812305:0,0,0 +(1,19643:3078558,2439708:0,1703936,0 +k1,19643:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,19643:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,19710:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,19643:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,19710:3078558,4812305:0,0,0 -(1,19710:3078558,2439708:0,1703936,0 -g1,19710:29030814,2439708 -g1,19710:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,19710:36151628,1915420:16384,1179648,0 +[1,19643:3078558,4812305:0,0,0 +(1,19643:3078558,2439708:0,1703936,0 +g1,19643:29030814,2439708 +g1,19643:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,19643:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,19710:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,19643:37855564,2439708:1179648,16384,0 ) ) -k1,19710:3078556,2439708:-34777008 +k1,19643:3078556,2439708:-34777008 ) ] -[1,19710:3078558,4812305:0,0,0 -(1,19710:3078558,49800853:0,16384,2228224 -k1,19710:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,19710:2537886,49800853:1179648,16384,0 +[1,19643:3078558,4812305:0,0,0 +(1,19643:3078558,49800853:0,16384,2228224 +k1,19643:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,19643:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,19710:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,19643:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 -) -] -) -) -) -] -[1,19710:3078558,4812305:0,0,0 -(1,19710:3078558,49800853:0,16384,2228224 -g1,19710:29030814,49800853 -g1,19710:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,19710:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] -) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,19710:37855564,49800853:1179648,16384,0 -) -) -k1,19710:3078556,49800853:-34777008 -) -] -g1,19710:6630773,4812305 -g1,19710:6630773,4812305 -g1,19710:8724648,4812305 -k1,19710:31387652,4812305:22663004 -) -) -] -[1,19710:6630773,45706769:25952256,40108032,0 -(1,19710:6630773,45706769:25952256,40108032,0 -(1,19710:6630773,45706769:0,0,0 -g1,19710:6630773,45706769 -) -[1,19710:6630773,45706769:25952256,40108032,0 -(1,19661:6630773,6254097:25952256,513147,126483 -h1,19660:6630773,6254097:983040,0,0 -k1,19660:8423969,6254097:182321 -k1,19660:9625375,6254097:182321 -k1,19660:11191816,6254097:182321 -k1,19660:14035555,6254097:182322 -k1,19660:15086228,6254097:182321 -k1,19660:17197929,6254097:182321 -k1,19660:17736110,6254097:182321 -k1,19660:19195728,6254097:182321 -k1,19660:20772000,6254097:182321 -k1,19660:23729115,6254097:182321 -k1,19660:25973854,6254097:182321 -k1,19660:26784011,6254097:182322 -k1,19660:28169573,6254097:182321 -k1,19660:29718975,6254097:182321 -k1,19660:30920381,6254097:182321 -k1,19661:32583029,6254097:0 -) -(1,19661:6630773,7095585:25952256,513147,134348 -k1,19660:7855247,7095585:188350 -k1,19660:8702890,7095585:188351 -k1,19660:10683650,7095585:188350 -k1,19660:11403498,7095585:188351 -k1,19660:13481906,7095585:188350 -k1,19660:14861701,7095585:188350 -k1,19660:15859422,7095585:188351 -k1,19660:19044733,7095585:188350 -k1,19660:20916049,7095585:188351 -k1,19660:22767047,7095585:188350 -k1,19660:23716925,7095585:188350 -k1,19660:26344526,7095585:188351 -k1,19660:27160711,7095585:188350 -k1,19660:29046444,7095585:188351 -k1,19660:30932832,7095585:188350 -k1,19660:32583029,7095585:0 -) -(1,19661:6630773,7937073:25952256,513147,134348 -k1,19660:8951566,7937073:246579 -k1,19660:10189705,7937073:246579 -k1,19660:13015782,7937073:246580 -k1,19660:16259322,7937073:246579 -k1,19660:17773367,7937073:246579 -k1,19660:19192385,7937073:246579 -k1,19660:20121849,7937073:246579 -k1,19660:22018625,7937073:246579 -k1,19660:26319262,7937073:246580 -k1,19660:28100039,7937073:246579 -k1,19660:28878115,7937073:246579 -k1,19660:30143779,7937073:246579 -k1,19660:32583029,7937073:0 -) -(1,19661:6630773,8778561:25952256,513147,134348 -k1,19660:8454782,8778561:162016 -k1,19660:9485150,8778561:162016 -k1,19660:11275736,8778561:162016 -k1,19660:14434714,8778561:162017 -k1,19660:15990681,8778561:162016 -(1,19660:15990681,8778561:0,435480,115847 -r1,19710:18810930,8778561:2820249,551327,115847 -k1,19660:15990681,8778561:-2820249 -) -(1,19660:15990681,8778561:2820249,435480,115847 -g1,19660:17752517,8778561 -g1,19660:18455941,8778561 -h1,19660:18807653,8778561:0,411205,112570 -) -k1,19660:19146616,8778561:162016 -k1,19660:21091867,8778561:162016 -k1,19660:22989276,8778561:162016 -(1,19660:22989276,8778561:0,459977,115847 -r1,19710:27216372,8778561:4227096,575824,115847 -k1,19660:22989276,8778561:-4227096 -) -(1,19660:22989276,8778561:4227096,459977,115847 -k1,19660:22989276,8778561:3277 -h1,19660:27213095,8778561:0,411205,112570 -) -k1,19660:27378388,8778561:162016 -k1,19660:29195189,8778561:162017 -k1,19660:29888702,8778561:162016 -k1,19660:31426319,8778561:162016 -k1,19660:32583029,8778561:0 -) -(1,19661:6630773,9620049:25952256,513147,126483 -g1,19660:10348630,9620049 -g1,19660:11739304,9620049 -g1,19660:12957618,9620049 -g1,19660:16437579,9620049 -g1,19660:17168305,9620049 -g1,19660:19235310,9620049 -(1,19660:19235310,9620049:0,459977,115847 -r1,19710:21352135,9620049:2116825,575824,115847 -k1,19660:19235310,9620049:-2116825 -) -(1,19660:19235310,9620049:2116825,459977,115847 -k1,19660:19235310,9620049:3277 -h1,19660:21348858,9620049:0,411205,112570 -) -g1,19660:21725034,9620049 -g1,19660:24251446,9620049 -g1,19660:25117831,9620049 -(1,19660:25117831,9620049:0,414482,115847 -r1,19710:26531232,9620049:1413401,530329,115847 -k1,19660:25117831,9620049:-1413401 -) -(1,19660:25117831,9620049:1413401,414482,115847 -k1,19660:25117831,9620049:3277 -h1,19660:26527955,9620049:0,411205,112570 -) -g1,19660:26730461,9620049 -g1,19660:27612575,9620049 -(1,19660:27612575,9620049:0,452978,115847 -r1,19710:29025976,9620049:1413401,568825,115847 -k1,19660:27612575,9620049:-1413401 -) -(1,19660:27612575,9620049:1413401,452978,115847 -k1,19660:27612575,9620049:3277 -h1,19660:29022699,9620049:0,411205,112570 -) -k1,19661:32583029,9620049:3383383 -g1,19661:32583029,9620049 -) -v1,19665:6630773,10631855:0,393216,0 -(1,19669:6630773,10946952:25952256,708313,196608 -g1,19669:6630773,10946952 -g1,19669:6630773,10946952 -g1,19669:6434165,10946952 -(1,19669:6434165,10946952:0,708313,196608 -r1,19710:32779637,10946952:26345472,904921,196608 -k1,19669:6434165,10946952:-26345472 -) -(1,19669:6434165,10946952:26345472,708313,196608 -[1,19669:6630773,10946952:25952256,511705,0 -(1,19667:6630773,10845765:25952256,410518,101187 -(1,19666:6630773,10845765:0,0,0 -g1,19666:6630773,10845765 -g1,19666:6630773,10845765 -g1,19666:6303093,10845765 -(1,19666:6303093,10845765:0,0,0 -) -g1,19666:6630773,10845765 -) -g1,19667:7263065,10845765 -g1,19667:7895357,10845765 -g1,19667:13585980,10845765 -g1,19667:14218272,10845765 -g1,19667:17695875,10845765 -g1,19667:19276604,10845765 -g1,19667:19908896,10845765 -h1,19667:20541188,10845765:0,0,0 -k1,19667:32583029,10845765:12041841 -g1,19667:32583029,10845765 -) -] -) -g1,19669:32583029,10946952 -g1,19669:6630773,10946952 -g1,19669:6630773,10946952 -g1,19669:32583029,10946952 -g1,19669:32583029,10946952 -) -h1,19669:6630773,11143560:0,0,0 -(1,19672:6630773,25568709:25952256,14013984,0 -k1,19672:12599879,25568709:5969106 -h1,19671:12599879,25568709:0,0,0 -(1,19671:12599879,25568709:14014044,14013984,0 -(1,19671:12599879,25568709:14014019,14014019,0 -(1,19671:12599879,25568709:14014019,14014019,0 -(1,19671:12599879,25568709:0,14014019,0 -(1,19671:12599879,25568709:0,18945146,0 -(1,19671:12599879,25568709:18945146,18945146,0 -) -k1,19671:12599879,25568709:-18945146 -) -) -g1,19671:26613898,25568709 -) -) -) -g1,19672:26613923,25568709 -k1,19672:32583029,25568709:5969106 -) -(1,19679:6630773,26410197:25952256,513147,126483 -h1,19678:6630773,26410197:983040,0,0 -k1,19678:8964071,26410197:153571 -k1,19678:11779059,26410197:153571 -k1,19678:13801062,26410197:153572 -k1,19678:15439023,26410197:153571 -k1,19678:16658865,26410197:153571 -k1,19678:19268725,26410197:153571 -k1,19678:19953794,26410197:153572 -k1,19678:22309375,26410197:153571 -k1,19678:23114374,26410197:153571 -k1,19678:24287030,26410197:153571 -k1,19678:26474184,26410197:153572 -k1,19678:27784465,26410197:153571 -k1,19678:28885687,26410197:153571 -(1,19678:28885687,26410197:0,459977,122846 -r1,19710:32409359,26410197:3523672,582823,122846 -k1,19678:28885687,26410197:-3523672 -) -(1,19678:28885687,26410197:3523672,459977,122846 -k1,19678:28885687,26410197:3277 -h1,19678:32406082,26410197:0,411205,112570 -) -k1,19678:32583029,26410197:0 -) -(1,19679:6630773,27251685:25952256,513147,134348 -k1,19678:7957220,27251685:254278 -k1,19678:10760192,27251685:254277 -k1,19678:14131362,27251685:254278 -k1,19678:15037067,27251685:254277 -k1,19678:16463784,27251685:254278 -k1,19678:18942353,27251685:254277 -k1,19678:20590582,27251685:254278 -(1,19678:20590582,27251685:0,459977,115847 -r1,19710:24817678,27251685:4227096,575824,115847 -k1,19678:20590582,27251685:-4227096 -) -(1,19678:20590582,27251685:4227096,459977,115847 -k1,19678:20590582,27251685:3277 -h1,19678:24814401,27251685:0,411205,112570 -) -k1,19678:25071955,27251685:254277 -k1,19678:27070801,27251685:254278 -k1,19678:27680938,27251685:254277 -k1,19678:29808235,27251685:254278 -k1,19678:32583029,27251685:0 -) -(1,19679:6630773,28093173:25952256,513147,126483 -g1,19678:8033898,28093173 -g1,19678:8892419,28093173 -k1,19679:32583028,28093173:21442724 -g1,19679:32583028,28093173 -) -v1,19681:6630773,29104979:0,393216,0 -(1,19685:6630773,29420076:25952256,708313,196608 -g1,19685:6630773,29420076 -g1,19685:6630773,29420076 -g1,19685:6434165,29420076 -(1,19685:6434165,29420076:0,708313,196608 -r1,19710:32779637,29420076:26345472,904921,196608 -k1,19685:6434165,29420076:-26345472 -) -(1,19685:6434165,29420076:26345472,708313,196608 -[1,19685:6630773,29420076:25952256,511705,0 -(1,19683:6630773,29318889:25952256,410518,101187 -(1,19682:6630773,29318889:0,0,0 -g1,19682:6630773,29318889 -g1,19682:6630773,29318889 -g1,19682:6303093,29318889 -(1,19682:6303093,29318889:0,0,0 -) -g1,19682:6630773,29318889 -) -g1,19683:7263065,29318889 -g1,19683:7895357,29318889 -g1,19683:13585980,29318889 -g1,19683:14218272,29318889 -g1,19683:17063584,29318889 -g1,19683:18644313,29318889 -g1,19683:20225042,29318889 -g1,19683:20857334,29318889 -g1,19683:21805772,29318889 -g1,19683:24651083,29318889 -g1,19683:25283375,29318889 -h1,19683:28760977,29318889:0,0,0 -k1,19683:32583029,29318889:3822052 -g1,19683:32583029,29318889 -) -] -) -g1,19685:32583029,29420076 -g1,19685:6630773,29420076 -g1,19685:6630773,29420076 -g1,19685:32583029,29420076 -g1,19685:32583029,29420076 -) -h1,19685:6630773,29616684:0,0,0 -(1,19702:6630773,32769881:25952256,32768,229376 -(1,19702:6630773,32769881:0,32768,229376 -(1,19702:6630773,32769881:5505024,32768,229376 -r1,19710:12135797,32769881:5505024,262144,229376 -) -k1,19702:6630773,32769881:-5505024 -) -(1,19702:6630773,32769881:25952256,32768,0 -r1,19710:32583029,32769881:25952256,32768,0 -) -) -(1,19702:6630773,34374209:25952256,606339,14155 -(1,19702:6630773,34374209:1974731,582746,14155 -g1,19702:6630773,34374209 -g1,19702:8605504,34374209 -) -k1,19702:32583028,34374209:21567896 -g1,19702:32583028,34374209 -) -(1,19706:6630773,35608913:25952256,513147,126483 -k1,19705:7532901,35608913:274293 -k1,19705:9840776,35608913:274293 -k1,19705:12724058,35608913:274294 -k1,19705:13657643,35608913:274293 -k1,19705:15135177,35608913:274293 -k1,19705:18000764,35608913:274293 -k1,19705:21266777,35608913:274294 -k1,19705:23016285,35608913:274293 -k1,19705:24803804,35608913:274293 -k1,19705:26097182,35608913:274293 -k1,19705:28637056,35608913:274294 -k1,19705:30757499,35608913:274293 -k1,19705:31714677,35608913:274293 -k1,19705:32583029,35608913:0 -) -(1,19706:6630773,36450401:25952256,513147,126483 -k1,19705:8349181,36450401:243193 -k1,19705:9526917,36450401:243193 -k1,19705:11409166,36450401:243194 -k1,19705:13046310,36450401:243193 -k1,19705:17196104,36450401:243193 -k1,19705:20638765,36450401:243193 -k1,19705:21509793,36450401:243193 -k1,19705:22772071,36450401:243193 -k1,19705:25421092,36450401:243194 -k1,19705:27942972,36450401:243193 -k1,19705:29054517,36450401:243193 -k1,19705:31966991,36450401:243193 -k1,19705:32583029,36450401:0 -) -(1,19706:6630773,37291889:25952256,513147,7863 -k1,19705:8576100,37291889:295130 -k1,19705:10658397,37291889:295130 -k1,19705:11972613,37291889:295131 -k1,19705:13360228,37291889:295130 -k1,19705:14314650,37291889:295130 -k1,19705:16606662,37291889:295130 -k1,19705:18734179,37291889:295130 -k1,19705:20020869,37291889:295130 -k1,19705:22162150,37291889:295131 -k1,19705:25241249,37291889:295130 -k1,19705:26484030,37291889:295130 -k1,19705:29541503,37291889:295130 -k1,19706:32583029,37291889:0 -) -(1,19706:6630773,38133377:25952256,513147,134348 -$1,19705:6837867,38133377 -$1,19705:7406064,38133377 -k1,19705:7611050,38133377:204986 -k1,19705:11132159,38133377:204987 -k1,19705:11996437,38133377:204986 -k1,19705:13220509,38133377:204987 -k1,19705:15727775,38133377:204986 -k1,19705:19657173,38133377:204987 -k1,19705:22325657,38133377:204986 -k1,19705:24024210,38133377:204987 -k1,19705:24915358,38133377:204986 -k1,19705:27734576,38133377:204987 -(1,19705:27941670,38133377:0,414482,115847 -r1,19710:30410208,38133377:2468538,530329,115847 -k1,19705:27941670,38133377:-2468538 -) -(1,19705:27941670,38133377:2468538,414482,115847 -g1,19705:29000083,38133377 -g1,19705:30055219,38133377 -h1,19705:30406931,38133377:0,411205,112570 -) -k1,19705:30995958,38133377:204986 -(1,19705:30995958,38133377:0,452978,115847 -r1,19710:32409359,38133377:1413401,568825,115847 -k1,19705:30995958,38133377:-1413401 -) -(1,19705:30995958,38133377:1413401,452978,115847 -k1,19705:30995958,38133377:3277 -h1,19705:32406082,38133377:0,411205,112570 -) -k1,19706:32583029,38133377:0 -) -(1,19706:6630773,38974865:25952256,505283,126483 -(1,19705:6630773,38974865:0,452978,115847 -r1,19710:8395886,38974865:1765113,568825,115847 -k1,19705:6630773,38974865:-1765113 -) -(1,19705:6630773,38974865:1765113,452978,115847 -k1,19705:6630773,38974865:3277 -h1,19705:8392609,38974865:0,411205,112570 -) -k1,19705:8795889,38974865:226333 -(1,19705:8795889,38974865:0,452978,115847 -r1,19710:11616138,38974865:2820249,568825,115847 -k1,19705:8795889,38974865:-2820249 -) -(1,19705:8795889,38974865:2820249,452978,115847 -k1,19705:8795889,38974865:3277 -h1,19705:11612861,38974865:0,411205,112570 -) -k1,19705:12016141,38974865:226333 -(1,19705:12016141,38974865:0,452978,115847 -r1,19710:13781254,38974865:1765113,568825,115847 -k1,19705:12016141,38974865:-1765113 -) -(1,19705:12016141,38974865:1765113,452978,115847 -k1,19705:12016141,38974865:3277 -h1,19705:13777977,38974865:0,411205,112570 -) -k1,19705:14181258,38974865:226334 -(1,19705:14181258,38974865:0,459977,115847 -r1,19710:15594659,38974865:1413401,575824,115847 -k1,19705:14181258,38974865:-1413401 -) -(1,19705:14181258,38974865:1413401,459977,115847 -k1,19705:14181258,38974865:3277 -h1,19705:15591382,38974865:0,411205,112570 -) -k1,19705:15994662,38974865:226333 -(1,19705:15994662,38974865:0,452978,115847 -r1,19710:17759775,38974865:1765113,568825,115847 -k1,19705:15994662,38974865:-1765113 -) -(1,19705:15994662,38974865:1765113,452978,115847 -k1,19705:15994662,38974865:3277 -h1,19705:17756498,38974865:0,411205,112570 -) -k1,19705:17986108,38974865:226333 -k1,19705:18895326,38974865:226333 -k1,19705:23463419,38974865:226333 -(1,19705:23463419,38974865:0,452978,122846 -r1,19710:25228532,38974865:1765113,575824,122846 -k1,19705:23463419,38974865:-1765113 -) -(1,19705:23463419,38974865:1765113,452978,122846 -k1,19705:23463419,38974865:3277 -h1,19705:25225255,38974865:0,411205,112570 -) -k1,19705:25628536,38974865:226334 -k1,19705:27782283,38974865:226333 -k1,19705:31252648,38974865:226333 -k1,19705:32583029,38974865:0 -) -(1,19706:6630773,39816353:25952256,513147,126483 -k1,19705:8913361,39816353:271943 -k1,19705:9801341,39816353:271942 -(1,19705:9801341,39816353:0,452978,115847 -r1,19710:11214742,39816353:1413401,568825,115847 -k1,19705:9801341,39816353:-1413401 -) -(1,19705:9801341,39816353:1413401,452978,115847 -k1,19705:9801341,39816353:3277 -h1,19705:11211465,39816353:0,411205,112570 -) -k1,19705:11486685,39816353:271943 -k1,19705:12750187,39816353:271942 -k1,19705:15607525,39816353:271943 -k1,19705:16530895,39816353:271942 -k1,19705:18813483,39816353:271943 -k1,19705:19744717,39816353:271942 -k1,19705:20787363,39816353:271943 -k1,19705:24274501,39816353:271942 -k1,19705:25737889,39816353:271943 -k1,19705:27340212,39816353:271942 -k1,19705:29308882,39816353:271943 -k1,19705:31591469,39816353:271942 -k1,19705:32583029,39816353:0 -) -(1,19706:6630773,40657841:25952256,505283,7863 -k1,19706:32583029,40657841:23496622 -g1,19706:32583029,40657841 -) -(1,19708:6630773,41499329:25952256,513147,134348 -h1,19707:6630773,41499329:983040,0,0 -k1,19707:11404296,41499329:345911 -k1,19707:12559576,41499329:345910 -k1,19707:13924572,41499329:345911 -k1,19707:18898636,41499329:345911 -k1,19707:19903838,41499329:345910 -k1,19707:21268834,41499329:345911 -k1,19707:23004107,41499329:345910 -k1,19707:25088033,41499329:345911 -k1,19707:28193010,41499329:345911 -k1,19707:30385070,41499329:345910 -k1,19707:31835263,41499329:345911 -k1,19707:32583029,41499329:0 -) -(1,19708:6630773,42340817:25952256,513147,126483 -k1,19707:10459780,42340817:258606 -k1,19707:11401271,42340817:258606 -k1,19707:14359305,42340817:258606 -k1,19707:15565562,42340817:258606 -(1,19707:15565562,42340817:0,452978,115847 -r1,19710:18034099,42340817:2468537,568825,115847 -k1,19707:15565562,42340817:-2468537 -) -(1,19707:15565562,42340817:2468537,452978,115847 -k1,19707:15565562,42340817:3277 -h1,19707:18030822,42340817:0,411205,112570 -) -k1,19707:18292705,42340817:258606 -k1,19707:19234195,42340817:258605 -(1,19707:19234195,42340817:0,459977,115847 -r1,19710:21351020,42340817:2116825,575824,115847 -k1,19707:19234195,42340817:-2116825 -) -(1,19707:19234195,42340817:2116825,459977,115847 -k1,19707:19234195,42340817:3277 -h1,19707:21347743,42340817:0,411205,112570 -) -k1,19707:21609626,42340817:258606 -k1,19707:24709873,42340817:258606 -k1,19707:25584517,42340817:258606 -(1,19707:25584517,42340817:0,452978,115847 -r1,19710:26997918,42340817:1413401,568825,115847 -k1,19707:25584517,42340817:-1413401 -) -(1,19707:25584517,42340817:1413401,452978,115847 -k1,19707:25584517,42340817:3277 -h1,19707:26994641,42340817:0,411205,112570 -) -k1,19707:27430194,42340817:258606 -k1,19707:31658971,42340817:258606 -k1,19707:32583029,42340817:0 -) -(1,19708:6630773,43182305:25952256,505283,126483 -k1,19707:7896236,43182305:246378 -k1,19707:9844584,43182305:246378 -k1,19707:11870921,43182305:246379 -k1,19707:13809439,43182305:246378 -k1,19707:17271013,43182305:246378 -k1,19707:18663616,43182305:246378 -(1,19707:18663616,43182305:0,452978,115847 -r1,19710:20077017,43182305:1413401,568825,115847 -k1,19707:18663616,43182305:-1413401 -) -(1,19707:18663616,43182305:1413401,452978,115847 -k1,19707:18663616,43182305:3277 -h1,19707:20073740,43182305:0,411205,112570 -) -k1,19707:20497065,43182305:246378 -k1,19707:21847725,43182305:246378 -k1,19707:23456598,43182305:246379 -k1,19707:27839608,43182305:246378 -k1,19707:29158155,43182305:246378 -k1,19707:31436804,43182305:246378 -k1,19708:32583029,43182305:0 -) -(1,19708:6630773,44023793:25952256,513147,126483 -(1,19707:6630773,44023793:0,452978,115847 -r1,19710:9451022,44023793:2820249,568825,115847 -k1,19707:6630773,44023793:-2820249 -) -(1,19707:6630773,44023793:2820249,452978,115847 -k1,19707:6630773,44023793:3277 -h1,19707:9447745,44023793:0,411205,112570 -) -k1,19707:9673823,44023793:222801 -k1,19707:10888184,44023793:222801 -k1,19707:14362881,44023793:222801 -k1,19707:17285110,44023793:222801 -k1,19707:18135746,44023793:222801 -k1,19707:21024551,44023793:222800 -k1,19707:21898780,44023793:222801 -k1,19707:24647339,44023793:222801 -k1,19707:26772650,44023793:222801 -k1,19707:27943102,44023793:222801 -k1,19707:31417799,44023793:222801 -k1,19708:32583029,44023793:0 -) -(1,19708:6630773,44865281:25952256,513147,126483 -k1,19707:8356633,44865281:152341 -k1,19707:11724171,44865281:152342 -k1,19707:14402270,44865281:152341 -k1,19707:16457121,44865281:152341 -k1,19707:17601022,44865281:152341 -k1,19707:20537333,44865281:152342 -k1,19707:21637325,44865281:152341 -k1,19707:23533579,44865281:152341 -k1,19707:26750384,44865281:152341 -k1,19707:28187232,44865281:152342 -k1,19707:29331133,44865281:152341 -k1,19707:32583029,44865281:0 -) -(1,19708:6630773,45706769:25952256,505283,115847 -g1,19707:10574074,45706769 -g1,19707:11919528,45706769 -(1,19707:11919528,45706769:0,414482,115847 -r1,19710:12277794,45706769:358266,530329,115847 -k1,19707:11919528,45706769:-358266 -) -(1,19707:11919528,45706769:358266,414482,115847 -k1,19707:11919528,45706769:3277 -h1,19707:12274517,45706769:0,411205,112570 -) -g1,19707:12650693,45706769 -(1,19707:12650693,45706769:0,414482,115847 -r1,19710:13008959,45706769:358266,530329,115847 -k1,19707:12650693,45706769:-358266 -) -(1,19707:12650693,45706769:358266,414482,115847 -k1,19707:12650693,45706769:3277 -h1,19707:13005682,45706769:0,411205,112570 -) -g1,19707:13381858,45706769 -(1,19707:13381858,45706769:0,452978,115847 -r1,19710:14795259,45706769:1413401,568825,115847 -k1,19707:13381858,45706769:-1413401 -) -(1,19707:13381858,45706769:1413401,452978,115847 -k1,19707:13381858,45706769:3277 -h1,19707:14791982,45706769:0,411205,112570 -) -g1,19707:15168158,45706769 -(1,19707:15168158,45706769:0,452978,115847 -r1,19710:16933271,45706769:1765113,568825,115847 -k1,19707:15168158,45706769:-1765113 -) -(1,19707:15168158,45706769:1765113,452978,115847 -k1,19707:15168158,45706769:3277 -h1,19707:16929994,45706769:0,411205,112570 -) -g1,19707:17306170,45706769 -k1,19708:32583029,45706769:14165368 -g1,19708:32583029,45706769 -) -] -(1,19710:32583029,45706769:0,0,0 -g1,19710:32583029,45706769 -) -) -] -(1,19710:6630773,47279633:25952256,0,0 -h1,19710:6630773,47279633:25952256,0,0 -) -] -(1,19710:4262630,4025873:0,0,0 -[1,19710:-473656,4025873:0,0,0 -(1,19710:-473656,-710413:0,0,0 -(1,19710:-473656,-710413:0,0,0 -g1,19710:-473656,-710413 -) -g1,19710:-473656,-710413 -) -] +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] -!22559 -}352 -Input:3124:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3125:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3126:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3127:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3128:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3129:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3130:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3131:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3132:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3133:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3134:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3135:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3136:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3137:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3138:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3139:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3140:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3141:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3142:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3143:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3144:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3145:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3146:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3147:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3148:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3149:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3150:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3151:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3152:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3153:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3154:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!2926 -{353 -[1,19748:4262630,47279633:28320399,43253760,0 -(1,19748:4262630,4025873:0,0,0 -[1,19748:-473656,4025873:0,0,0 -(1,19748:-473656,-710413:0,0,0 -(1,19748:-473656,-644877:0,0,0 -k1,19748:-473656,-644877:-65536 ) -(1,19748:-473656,4736287:0,0,0 -k1,19748:-473656,4736287:5209943 ) -g1,19748:-473656,-710413 ) ] +[1,19643:3078558,4812305:0,0,0 +(1,19643:3078558,49800853:0,16384,2228224 +g1,19643:29030814,49800853 +g1,19643:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,19643:36151628,51504789:16384,1179648,0 ) -[1,19748:6630773,47279633:25952256,43253760,0 -[1,19748:6630773,4812305:25952256,786432,0 -(1,19748:6630773,4812305:25952256,513147,126483 -(1,19748:6630773,4812305:25952256,513147,126483 -g1,19748:3078558,4812305 -[1,19748:3078558,4812305:0,0,0 -(1,19748:3078558,2439708:0,1703936,0 -k1,19748:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,19748:2537886,2439708:1179648,16384,0 -) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,19748:3078558,1915420:16384,1179648,0 -) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] ) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,19643:37855564,49800853:1179648,16384,0 ) ) -] -[1,19748:3078558,4812305:0,0,0 -(1,19748:3078558,2439708:0,1703936,0 -g1,19748:29030814,2439708 -g1,19748:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,19748:36151628,1915420:16384,1179648,0 -) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,19643:3078556,49800853:-34777008 ) ] -) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,19748:37855564,2439708:1179648,16384,0 +g1,19643:6630773,4812305 +k1,19643:21350816,4812305:13524666 +g1,19643:21999622,4812305 +g1,19643:25611966,4812305 +g1,19643:28956923,4812305 +g1,19643:29772190,4812305 ) ) -k1,19748:3078556,2439708:-34777008 -) ] -[1,19748:3078558,4812305:0,0,0 -(1,19748:3078558,49800853:0,16384,2228224 -k1,19748:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,19748:2537886,49800853:1179648,16384,0 +[1,19643:6630773,45706769:25952256,40108032,0 +(1,19643:6630773,45706769:25952256,40108032,0 +(1,19643:6630773,45706769:0,0,0 +g1,19643:6630773,45706769 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,19748:3078558,51504789:16384,1179648,0 +[1,19643:6630773,45706769:25952256,40108032,0 +(1,19598:6630773,14357405:25952256,8758668,0 +k1,19598:7928465,14357405:1297692 +h1,19597:7928465,14357405:0,0,0 +(1,19597:7928465,14357405:23356872,8758668,0 +(1,19597:7928465,14357405:23356506,8758690,0 +(1,19597:7928465,14357405:23356506,8758690,0 +(1,19597:7928465,14357405:0,8758690,0 +(1,19597:7928465,14357405:0,14208860,0 +(1,19597:7928465,14357405:37890292,14208860,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,19597:7928465,14357405:-37890292 ) -] -) -) -) -] -[1,19748:3078558,4812305:0,0,0 -(1,19748:3078558,49800853:0,16384,2228224 -g1,19748:29030814,49800853 -g1,19748:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,19748:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] -) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,19748:37855564,49800853:1179648,16384,0 -) -) -k1,19748:3078556,49800853:-34777008 -) -] -g1,19748:6630773,4812305 -k1,19748:21350816,4812305:13524666 -g1,19748:21999622,4812305 -g1,19748:25611966,4812305 -g1,19748:28956923,4812305 -g1,19748:29772190,4812305 -) -) -] -[1,19748:6630773,45706769:25952256,40108032,0 -(1,19748:6630773,45706769:25952256,40108032,0 -(1,19748:6630773,45706769:0,0,0 -g1,19748:6630773,45706769 -) -[1,19748:6630773,45706769:25952256,40108032,0 -(1,19710:6630773,6254097:25952256,513147,134348 -h1,19709:6630773,6254097:983040,0,0 -k1,19709:8945504,6254097:135004 -k1,19709:10983018,6254097:135004 -k1,19709:12631248,6254097:135004 -k1,19709:13527781,6254097:135005 -k1,19709:15928365,6254097:135004 -k1,19709:16997912,6254097:135004 -k1,19709:18152001,6254097:135004 -k1,19709:21094567,6254097:135004 -k1,19709:25546428,6254097:135004 -k1,19709:27131089,6254097:135005 -k1,19709:29151564,6254097:135004 -k1,19709:30902686,6254097:135004 -k1,19709:32583029,6254097:0 -) -(1,19710:6630773,7095585:25952256,513147,126483 -k1,19709:10814280,7095585:219890 -k1,19709:11685599,7095585:219891 -$1,19709:11685599,7095585 -k1,19709:12408082,7095585:219822 -k1,19709:13196100,7095585:219821 -$1,19709:13594559,7095585 -k1,19709:13814450,7095585:219891 -k1,19709:15225785,7095585:219890 -k1,19709:17331147,7095585:219891 -k1,19709:18707747,7095585:219890 -k1,19709:19579065,7095585:219890 -$1,19709:19579065,7095585 -k1,19709:20301548,7095585:219822 -k1,19709:21089567,7095585:219822 -$1,19709:21488026,7095585 -k1,19709:22088681,7095585:219891 -k1,19709:25243273,7095585:219890 -k1,19709:26410814,7095585:219890 -k1,19709:28082327,7095585:219891 -k1,19709:31089463,7095585:219890 -k1,19709:32583029,7095585:0 -) -(1,19710:6630773,7937073:25952256,513147,134348 -k1,19709:7515025,7937073:198090 -(1,19709:7515025,7937073:0,452978,115847 -r1,19748:9280138,7937073:1765113,568825,115847 -k1,19709:7515025,7937073:-1765113 -) -(1,19709:7515025,7937073:1765113,452978,115847 -k1,19709:7515025,7937073:3277 -h1,19709:9276861,7937073:0,411205,112570 -) -k1,19709:9651897,7937073:198089 -k1,19709:11504771,7937073:198090 -k1,19709:12694421,7937073:198090 -k1,19709:15563757,7937073:198089 -k1,19709:17664357,7937073:198090 -k1,19709:18513874,7937073:198089 -k1,19709:20927081,7937073:198090 -k1,19709:22692792,7937073:198090 -k1,19709:24588919,7937073:198089 -k1,19709:27359297,7937073:198090 -k1,19709:27913247,7937073:198090 -k1,19709:29562303,7937073:198089 -k1,19709:31227089,7937073:198090 -k1,19710:32583029,7937073:0 -) -(1,19710:6630773,8778561:25952256,513147,134348 -g1,19709:9257456,8778561 -g1,19709:10648130,8778561 -g1,19709:13373117,8778561 -g1,19709:15022002,8778561 -g1,19709:16018149,8778561 -g1,19709:18979721,8778561 -g1,19709:20795068,8778561 -g1,19709:22896807,8778561 -g1,19709:23712074,8778561 -g1,19709:26739836,8778561 -k1,19710:32583029,8778561:3919711 -g1,19710:32583029,8778561 -) -v1,19712:6630773,10144337:0,393216,0 -(1,19713:6630773,16523309:25952256,6772188,0 -g1,19713:6630773,16523309 -g1,19713:6303093,16523309 -r1,19748:6401397,16523309:98304,6772188,0 -g1,19713:6600626,16523309 -g1,19713:6797234,16523309 -[1,19713:6797234,16523309:25785795,6772188,0 -(1,19713:6797234,10506410:25785795,755289,196608 -(1,19712:6797234,10506410:0,755289,196608 -r1,19748:8134168,10506410:1336934,951897,196608 -k1,19712:6797234,10506410:-1336934 -) -(1,19712:6797234,10506410:1336934,755289,196608 -) -k1,19712:8324273,10506410:190105 -k1,19712:8651953,10506410:327680 -k1,19712:11997617,10506410:190105 -k1,19712:12803760,10506410:190105 -k1,19712:13349724,10506410:190104 -k1,19712:14817126,10506410:190105 -k1,19712:16738692,10506410:190105 -k1,19712:17544835,10506410:190105 -k1,19712:20400945,10506410:190105 -k1,19712:21242478,10506410:190105 -k1,19712:23170597,10506410:190104 -k1,19712:27025475,10506410:190105 -k1,19712:27977108,10506410:190105 -k1,19712:31478747,10506410:190105 -k1,19712:32583029,10506410:0 -) -(1,19713:6797234,11347898:25785795,505283,134348 -k1,19712:8357034,11347898:273984 -k1,19712:9378785,11347898:273985 -k1,19712:10587312,11347898:273984 -k1,19712:11512724,11347898:273984 -k1,19712:14544463,11347898:273984 -k1,19712:16829093,11347898:273985 -k1,19712:18552733,11347898:273984 -k1,19712:21351164,11347898:273984 -k1,19712:22391264,11347898:273984 -k1,19712:24683758,11347898:273985 -k1,19712:25573780,11347898:273984 -k1,19712:26203624,11347898:273984 -k1,19712:28035400,11347898:273985 -k1,19712:28925422,11347898:273984 -k1,19712:30255846,11347898:273984 -k1,19712:32583029,11347898:0 -) -(1,19713:6797234,12189386:25785795,513147,126483 -k1,19712:7705159,12189386:248633 -k1,19712:8972878,12189386:248634 -k1,19712:11487091,12189386:248633 -k1,19712:13804041,12189386:248634 -k1,19712:17208233,12189386:248633 -k1,19712:18391409,12189386:248633 -k1,19712:19291471,12189386:248634 -k1,19712:22297859,12189386:248633 -k1,19712:24730807,12189386:248633 -k1,19712:25971001,12189386:248634 -k1,19712:27285905,12189386:248633 -k1,19712:30119934,12189386:248634 -k1,19712:31019995,12189386:248633 -k1,19712:32583029,12189386:0 -) -(1,19713:6797234,13030874:25785795,513147,126483 -k1,19712:8256364,13030874:267685 -k1,19712:9515608,13030874:267684 -k1,19712:14008399,13030874:267685 -k1,19712:18282955,13030874:267685 -k1,19712:19209931,13030874:267684 -k1,19712:21553797,13030874:267685 -k1,19712:22449316,13030874:267684 -k1,19712:24418971,13030874:267685 -k1,19712:26815265,13030874:267685 -k1,19712:30378755,13030874:267684 -k1,19712:31305732,13030874:267685 -k1,19712:32583029,13030874:0 -) -(1,19713:6797234,13872362:25785795,513147,134348 -k1,19712:9895167,13872362:228767 -k1,19712:11228217,13872362:228768 -k1,19712:12204750,13872362:228767 -k1,19712:14289498,13872362:228768 -k1,19712:15452809,13872362:228768 -k1,19712:16333004,13872362:228767 -k1,19712:16917631,13872362:228767 -k1,19712:19019418,13872362:228768 -k1,19712:22005941,13872362:228768 -k1,19712:23915051,13872362:228767 -k1,19712:24803111,13872362:228768 -k1,19712:25802581,13872362:228767 -k1,19712:28818594,13872362:228767 -k1,19712:31816913,13872362:228768 -k1,19712:32583029,13872362:0 -) -(1,19713:6797234,14713850:25785795,505283,126483 -k1,19712:11098299,14713850:229313 -k1,19712:13733438,14713850:229312 -k1,19712:14578789,14713850:229313 -k1,19712:15827186,14713850:229312 -k1,19712:17614290,14713850:229313 -(1,19712:17614290,14713850:0,452978,115847 -r1,19748:19027691,14713850:1413401,568825,115847 -k1,19712:17614290,14713850:-1413401 -) -(1,19712:17614290,14713850:1413401,452978,115847 -k1,19712:17614290,14713850:3277 -h1,19712:19024414,14713850:0,411205,112570 -) -k1,19712:19430673,14713850:229312 -k1,19712:20342871,14713850:229313 -k1,19712:23157578,14713850:229312 -k1,19712:24038319,14713850:229313 -k1,19712:24623491,14713850:229312 -k1,19712:27364144,14713850:229313 -k1,19712:28209494,14713850:229312 -(1,19712:28209494,14713850:0,452978,115847 -r1,19748:29622895,14713850:1413401,568825,115847 -k1,19712:28209494,14713850:-1413401 -) -(1,19712:28209494,14713850:1413401,452978,115847 -k1,19712:28209494,14713850:3277 -h1,19712:29619618,14713850:0,411205,112570 -) -k1,19712:29852208,14713850:229313 -k1,19712:30697558,14713850:229312 -k1,19712:32583029,14713850:0 -) -(1,19713:6797234,15555338:25785795,513147,126483 -k1,19712:8429240,15555338:264925 -k1,19712:9713250,15555338:264925 -k1,19712:11658518,15555338:264925 -k1,19712:12582735,15555338:264925 -k1,19712:13866745,15555338:264925 -k1,19712:17058507,15555338:264925 -k1,19712:18816998,15555338:264925 -k1,19712:19768084,15555338:264924 -(1,19712:19768084,15555338:0,452978,115847 -r1,19748:21533197,15555338:1765113,568825,115847 -k1,19712:19768084,15555338:-1765113 -) -(1,19712:19768084,15555338:1765113,452978,115847 -k1,19712:19768084,15555338:3277 -h1,19712:21529920,15555338:0,411205,112570 -) -k1,19712:21971792,15555338:264925 -k1,19712:23369179,15555338:264925 -k1,19712:26005852,15555338:264925 -k1,19712:27080147,15555338:264925 -k1,19712:28364157,15555338:264925 -k1,19712:30639727,15555338:264925 -k1,19712:31563944,15555338:264925 -k1,19712:32583029,15555338:0 -) -(1,19713:6797234,16396826:25785795,505283,126483 -g1,19712:9581858,16396826 -k1,19713:32583028,16396826:20316160 -g1,19713:32583028,16396826 -) -] -g1,19713:32583029,16523309 -) -h1,19713:6630773,16523309:0,0,0 -(1,19716:6630773,17889085:25952256,505283,134348 -h1,19715:6630773,17889085:983040,0,0 -k1,19715:9100554,17889085:290054 -k1,19715:10992309,17889085:290055 -k1,19715:13130478,17889085:290054 -k1,19715:16228095,17889085:290055 -k1,19715:17169577,17889085:290054 -k1,19715:18848994,17889085:290054 -k1,19715:19670546,17889085:290055 -(1,19715:19670546,17889085:0,452978,115847 -r1,19748:22490795,17889085:2820249,568825,115847 -k1,19715:19670546,17889085:-2820249 -) -(1,19715:19670546,17889085:2820249,452978,115847 -k1,19715:19670546,17889085:3277 -h1,19715:22487518,17889085:0,411205,112570 -) -k1,19715:22954519,17889085:290054 -k1,19715:25130044,17889085:290054 -k1,19715:27488415,17889085:290055 -k1,19715:29062975,17889085:290054 -k1,19715:30372115,17889085:290055 -k1,19715:32051532,17889085:290054 -k1,19715:32583029,17889085:0 -) -(1,19716:6630773,18730573:25952256,513147,126483 -k1,19715:8721823,18730573:323544 -k1,19715:9658129,18730573:323544 -k1,19715:10770071,18730573:323544 -k1,19715:12395160,18730573:323544 -k1,19715:14572718,18730573:323544 -k1,19715:15524097,18730573:323544 -k1,19715:16203500,18730573:323543 -k1,19715:18143162,18730573:323544 -k1,19715:20212585,18730573:323544 -k1,19715:21583394,18730573:323544 -(1,19715:21583394,18730573:0,452978,115847 -r1,19748:29327608,18730573:7744214,568825,115847 -k1,19715:21583394,18730573:-7744214 -) -(1,19715:21583394,18730573:7744214,452978,115847 -k1,19715:21583394,18730573:3277 -h1,19715:29324331,18730573:0,411205,112570 -) -k1,19715:29824822,18730573:323544 -k1,19715:31167451,18730573:323544 -k1,19716:32583029,18730573:0 -) -(1,19716:6630773,19572061:25952256,505283,115847 -k1,19715:8195754,19572061:256227 -k1,19715:9068019,19572061:256227 -k1,19715:10343331,19572061:256227 -k1,19715:11988921,19572061:256227 -k1,19715:14201398,19572061:256227 -k1,19715:15205391,19572061:256227 -k1,19715:18140731,19572061:256228 -k1,19715:19790909,19572061:256227 -k1,19715:22057781,19572061:256227 -k1,19715:23807574,19572061:256227 -k1,19715:24749963,19572061:256227 -(1,19715:24749963,19572061:0,452978,115847 -r1,19748:26515076,19572061:1765113,568825,115847 -k1,19715:24749963,19572061:-1765113 -) -(1,19715:24749963,19572061:1765113,452978,115847 -k1,19715:24749963,19572061:3277 -h1,19715:26511799,19572061:0,411205,112570 -) -k1,19715:26944973,19572061:256227 -(1,19715:26944973,19572061:0,452978,115847 -r1,19748:29061798,19572061:2116825,568825,115847 -k1,19715:26944973,19572061:-2116825 -) -(1,19715:26944973,19572061:2116825,452978,115847 -k1,19715:26944973,19572061:3277 -h1,19715:29058521,19572061:0,411205,112570 -) -k1,19715:31042933,19572061:256227 -k1,19716:32583029,19572061:0 -) -(1,19716:6630773,20413549:25952256,513147,134348 -k1,19715:7293909,20413549:248293 -k1,19715:10077184,20413549:248342 -k1,19715:10953362,20413549:248343 -k1,19715:11557564,20413549:248342 -k1,19715:13930583,20413549:248342 -k1,19715:16986488,20413549:248343 -k1,19715:18970223,20413549:248342 -(1,19715:18970223,20413549:0,452978,115847 -r1,19748:26714437,20413549:7744214,568825,115847 -k1,19715:18970223,20413549:-7744214 -) -(1,19715:18970223,20413549:7744214,452978,115847 -k1,19715:18970223,20413549:3277 -h1,19715:26711160,20413549:0,411205,112570 -) -k1,19715:26962779,20413549:248342 -k1,19715:29003531,20413549:248342 -k1,19715:29911166,20413549:248343 -k1,19715:30515368,20413549:248342 -k1,19715:32583029,20413549:0 -) -(1,19716:6630773,21255037:25952256,505283,126483 -k1,19715:8320983,21255037:196644 -k1,19715:9203789,21255037:196644 -(1,19715:9203789,21255037:0,452978,115847 -r1,19748:13079173,21255037:3875384,568825,115847 -k1,19715:9203789,21255037:-3875384 -) -(1,19715:9203789,21255037:3875384,452978,115847 -k1,19715:9203789,21255037:3277 -h1,19715:13075896,21255037:0,411205,112570 -) -k1,19715:13275817,21255037:196644 -k1,19715:14663906,21255037:196644 -(1,19715:14663906,21255037:0,452978,115847 -r1,19748:17835866,21255037:3171960,568825,115847 -k1,19715:14663906,21255037:-3171960 -) -(1,19715:14663906,21255037:3171960,452978,115847 -k1,19715:14663906,21255037:3277 -h1,19715:17832589,21255037:0,411205,112570 -) -k1,19715:18032510,21255037:196644 -k1,19715:20185403,21255037:196643 -k1,19715:21129813,21255037:196644 -k1,19715:25136065,21255037:196644 -k1,19715:26018871,21255037:196644 -k1,19715:28631172,21255037:196644 -k1,19715:31189078,21255037:196644 -k1,19715:32583029,21255037:0 -) -(1,19716:6630773,22096525:25952256,513147,126483 -k1,19715:7903876,22096525:254018 -k1,19715:13234312,22096525:254017 -k1,19715:14147622,22096525:254018 -k1,19715:17594553,22096525:254017 -k1,19715:19742561,22096525:254018 -k1,19715:21788988,22096525:254017 -k1,19715:22694434,22096525:254018 -k1,19715:26141365,22096525:254017 -k1,19715:28756645,22096525:254018 -k1,19715:31599334,22096525:254017 -k1,19716:32583029,22096525:0 -) -(1,19716:6630773,22938013:25952256,513147,126483 -k1,19715:10436881,22938013:259955 -k1,19715:11458365,22938013:259956 -k1,19715:14157570,22938013:259955 -k1,19715:15045360,22938013:259955 -k1,19715:17936587,22938013:259956 -k1,19715:19590493,22938013:259955 -(1,19715:19590493,22938013:0,452978,115847 -r1,19748:26631284,22938013:7040791,568825,115847 -k1,19715:19590493,22938013:-7040791 -) -(1,19715:19590493,22938013:7040791,452978,115847 -k1,19715:19590493,22938013:3277 -h1,19715:26628007,22938013:0,411205,112570 -) -k1,19715:26891239,22938013:259955 -k1,19715:28170279,22938013:259955 -k1,19715:29811079,22938013:259956 -k1,19715:31931601,22938013:259955 -k1,19715:32583029,22938013:0 -) -(1,19716:6630773,23779501:25952256,513147,134348 -k1,19715:9717996,23779501:189876 -k1,19715:12337946,23779501:189875 -k1,19715:13546907,23779501:189876 -k1,19715:16544344,23779501:189875 -k1,19715:19369423,23779501:189876 -k1,19715:21453288,23779501:189875 -k1,19715:23435574,23779501:189876 -k1,19715:24816894,23779501:189875 -k1,19715:27368032,23779501:189876 -k1,19715:28319435,23779501:189875 -k1,19715:30936765,23779501:189876 -k1,19716:32583029,23779501:0 -) -(1,19716:6630773,24620989:25952256,513147,126483 -g1,19715:8799359,24620989 -g1,19715:9650016,24620989 -g1,19715:10868330,24620989 -g1,19715:12639768,24620989 -g1,19715:16038465,24620989 -g1,19715:19848728,24620989 -(1,19715:19848728,24620989:0,452978,115847 -r1,19748:21965553,24620989:2116825,568825,115847 -k1,19715:19848728,24620989:-2116825 -) -(1,19715:19848728,24620989:2116825,452978,115847 -k1,19715:19848728,24620989:3277 -h1,19715:21962276,24620989:0,411205,112570 -) -g1,19715:22164782,24620989 -g1,19715:23555456,24620989 -(1,19715:23555456,24620989:0,452978,115847 -r1,19748:25672281,24620989:2116825,568825,115847 -k1,19715:23555456,24620989:-2116825 -) -(1,19715:23555456,24620989:2116825,452978,115847 -k1,19715:23555456,24620989:3277 -h1,19715:25669004,24620989:0,411205,112570 -) -k1,19716:32583029,24620989:6737078 -g1,19716:32583029,24620989 -) -(1,19718:6630773,25462477:25952256,505283,134348 -h1,19717:6630773,25462477:983040,0,0 -k1,19717:8240787,25462477:139386 -k1,19717:11950633,25462477:139445 -k1,19717:13479441,25462477:139445 -k1,19717:16130226,25462477:139445 -k1,19717:18130238,25462477:139445 -k1,19717:18921111,25462477:139445 -k1,19717:19808322,25462477:139445 -k1,19717:22533162,25462477:139445 -k1,19717:23324035,25462477:139445 -k1,19717:24234183,25462477:139445 -k1,19717:27160874,25462477:139445 -k1,19717:29858845,25462477:139445 -k1,19717:30354150,25462477:139445 -k1,19718:32583029,25462477:0 -) -(1,19718:6630773,26303965:25952256,505283,115847 -k1,19717:8345846,26303965:160559 -k1,19717:10078614,26303965:160559 -k1,19717:11732739,26303965:160559 -k1,19717:12579460,26303965:160559 -(1,19717:12579460,26303965:0,452978,115847 -r1,19748:21027097,26303965:8447637,568825,115847 -k1,19717:12579460,26303965:-8447637 -) -(1,19717:12579460,26303965:8447637,452978,115847 -k1,19717:12579460,26303965:3277 -h1,19717:21023820,26303965:0,411205,112570 -) -k1,19717:21187656,26303965:160559 -k1,19717:22031099,26303965:160558 -k1,19717:23348368,26303965:160559 -k1,19717:24297325,26303965:160559 -k1,19717:26800141,26303965:160559 -k1,19717:29694862,26303965:160559 -k1,19717:31966991,26303965:160559 -k1,19717:32583029,26303965:0 -) -(1,19718:6630773,27145453:25952256,513147,134348 -k1,19717:7179763,27145453:193130 -(1,19717:7179763,27145453:0,452978,115847 -r1,19748:9648300,27145453:2468537,568825,115847 -k1,19717:7179763,27145453:-2468537 -) -(1,19717:7179763,27145453:2468537,452978,115847 -k1,19717:7179763,27145453:3277 -h1,19717:9645023,27145453:0,411205,112570 -) -k1,19717:9841430,27145453:193130 -k1,19717:12545899,27145453:193129 -k1,19717:13871491,27145453:193130 -k1,19717:14812387,27145453:193130 -k1,19717:17590912,27145453:193130 -k1,19717:19051508,27145453:193130 -k1,19717:19600498,27145453:193130 -k1,19717:23364028,27145453:193129 -k1,19717:25337771,27145453:193130 -k1,19717:26190193,27145453:193130 -k1,19717:28918256,27145453:193130 -k1,19717:32583029,27145453:0 -) -(1,19718:6630773,27986941:25952256,505283,134348 -k1,19717:8766974,27986941:280221 -k1,19717:13364052,27986941:280221 -k1,19717:16202799,27986941:280221 -k1,19717:16838880,27986941:280221 -k1,19717:19309314,27986941:280221 -k1,19717:20272419,27986941:280220 -k1,19717:23485376,27986941:280221 -k1,19717:24527125,27986941:280221 -k1,19717:26730172,27986941:280221 -k1,19717:28029478,27986941:280221 -k1,19717:30670961,27986941:280221 -k1,19717:31563944,27986941:280221 -k1,19717:32583029,27986941:0 -) -(1,19718:6630773,28828429:25952256,513147,134348 -k1,19717:9894645,28828429:187612 -k1,19717:11273701,28828429:187611 -k1,19717:14671266,28828429:187612 -k1,19717:15471640,28828429:187612 -k1,19717:18330498,28828429:187611 -k1,19717:22576099,28828429:187612 -k1,19717:24948025,28828429:187611 -k1,19717:27145626,28828429:187612 -k1,19717:28352323,28828429:187612 -k1,19717:30320547,28828429:187611 -k1,19717:31167451,28828429:187612 -k1,19718:32583029,28828429:0 -) -(1,19718:6630773,29669917:25952256,513147,134348 -k1,19717:8447481,29669917:193381 -k1,19717:9300155,29669917:193382 -k1,19717:10512621,29669917:193381 -k1,19717:13291398,29669917:193382 -k1,19717:15996119,29669917:193381 -k1,19717:17639157,29669917:193382 -k1,19717:19404747,29669917:193381 -k1,19717:22110124,29669917:193382 -k1,19717:23028333,29669917:193381 -k1,19717:24506221,29669917:193382 -k1,19717:25718687,29669917:193381 -k1,19717:27528187,29669917:193382 -k1,19717:29601796,29669917:193381 -k1,19717:32583029,29669917:0 -) -(1,19718:6630773,30511405:25952256,513147,134348 -k1,19717:9487012,30511405:221036 -(1,19717:9487012,30511405:0,452978,115847 -r1,19748:11252125,30511405:1765113,568825,115847 -k1,19717:9487012,30511405:-1765113 -) -(1,19717:9487012,30511405:1765113,452978,115847 -k1,19717:9487012,30511405:3277 -h1,19717:11248848,30511405:0,411205,112570 -) -k1,19717:11473161,30511405:221036 -k1,19717:12885642,30511405:221036 -(1,19717:12885642,30511405:0,452978,122846 -r1,19748:15705891,30511405:2820249,575824,122846 -k1,19717:12885642,30511405:-2820249 -) -(1,19717:12885642,30511405:2820249,452978,122846 -k1,19717:12885642,30511405:3277 -h1,19717:15702614,30511405:0,411205,112570 -) -k1,19717:16307691,30511405:221036 -k1,19717:19420831,30511405:221036 -k1,19717:20301159,30511405:221036 -k1,19717:22994213,30511405:221036 -k1,19717:25225894,30511405:221036 -k1,19717:25978427,30511405:221036 -k1,19717:27693029,30511405:221036 -k1,19717:29198571,30511405:221036 -k1,19717:32227169,30511405:221036 -k1,19717:32583029,30511405:0 -) -(1,19718:6630773,31352893:25952256,513147,126483 -k1,19717:8496569,31352893:185453 -k1,19717:9298060,31352893:185453 -k1,19717:9839373,31352893:185453 -k1,19717:12536165,31352893:185452 -k1,19717:13373046,31352893:185453 -k1,19717:14329202,31352893:185453 -(1,19717:14329202,31352893:0,414482,115847 -r1,19748:15039180,31352893:709978,530329,115847 -k1,19717:14329202,31352893:-709978 -) -(1,19717:14329202,31352893:709978,414482,115847 -k1,19717:14329202,31352893:3277 -h1,19717:15035903,31352893:0,411205,112570 -) -k1,19717:15224633,31352893:185453 -k1,19717:17090429,31352893:185453 -k1,19717:18223533,31352893:185453 -k1,19717:19179689,31352893:185453 -k1,19717:22209405,31352893:185453 -k1,19717:23888423,31352893:185452 -k1,19717:24760038,31352893:185453 -k1,19717:26561609,31352893:185453 -k1,19717:28793096,31352893:185453 -k1,19717:29997634,31352893:185453 -k1,19717:32583029,31352893:0 -) -(1,19718:6630773,32194381:25952256,513147,134348 -k1,19717:8865395,32194381:223977 -k1,19717:11921838,32194381:223977 -k1,19717:13342501,32194381:223976 -k1,19717:16046360,32194381:223977 -k1,19717:19077899,32194381:223977 -(1,19717:19077899,32194381:0,414482,115847 -r1,19748:19787877,32194381:709978,530329,115847 -k1,19717:19077899,32194381:-709978 -) -(1,19717:19077899,32194381:709978,414482,115847 -k1,19717:19077899,32194381:3277 -h1,19717:19784600,32194381:0,411205,112570 -) -k1,19717:20011854,32194381:223977 -k1,19717:22246476,32194381:223977 -k1,19717:23086490,32194381:223976 -k1,19717:24329552,32194381:223977 -k1,19717:25942892,32194381:223977 -k1,19717:26818297,32194381:223977 -k1,19717:27398133,32194381:223976 -k1,19717:30019417,32194381:223977 -k1,19717:31923737,32194381:223977 -k1,19717:32583029,32194381:0 -) -(1,19718:6630773,33035869:25952256,505283,134348 -k1,19717:7638901,33035869:237425 -k1,19717:10720589,33035869:237425 -k1,19717:11489510,33035869:237424 -k1,19717:13012751,33035869:237425 -k1,19717:15880136,33035869:237425 -k1,19717:17567217,33035869:237425 -k1,19717:21089961,33035869:237424 -(1,19717:21089961,33035869:0,414482,115847 -r1,19748:21799939,33035869:709978,530329,115847 -k1,19717:21089961,33035869:-709978 -) -(1,19717:21089961,33035869:709978,414482,115847 -k1,19717:21089961,33035869:3277 -h1,19717:21796662,33035869:0,411205,112570 -) -k1,19717:22037364,33035869:237425 -k1,19717:24285434,33035869:237425 -k1,19717:25138897,33035869:237425 -k1,19717:26395406,33035869:237424 -k1,19717:29218226,33035869:237425 -k1,19717:31966991,33035869:237425 -k1,19717:32583029,33035869:0 -) -(1,19718:6630773,33877357:25952256,513147,126483 -g1,19717:8060113,33877357 -g1,19717:9948860,33877357 -g1,19717:11850059,33877357 -g1,19717:14059933,33877357 -g1,19717:15250722,33877357 -g1,19717:18035346,33877357 -g1,19717:18886003,33877357 -g1,19717:21284620,33877357 -g1,19717:22143141,33877357 -k1,19718:32583029,33877357:8691387 -g1,19718:32583029,33877357 -) -(1,19725:6630773,35968617:25952256,555811,139132 -(1,19725:6630773,35968617:2450326,534184,12975 -g1,19725:6630773,35968617 -g1,19725:9081099,35968617 -) -g1,19725:10929477,35968617 -g1,19725:12496705,35968617 -g1,19725:14069701,35968617 -k1,19725:32583029,35968617:16399661 -g1,19725:32583029,35968617 -) -(1,19732:6630773,37203321:25952256,513147,115847 -k1,19731:8245302,37203321:178635 -k1,19731:9292290,37203321:178636 -k1,19731:12140206,37203321:178635 -k1,19731:12674702,37203321:178636 -k1,19731:15128747,37203321:178635 -k1,19731:18084799,37203321:178636 -k1,19731:18914862,37203321:178635 -k1,19731:19859614,37203321:178636 -k1,19731:22114430,37203321:178635 -k1,19731:23801705,37203321:178636 -(1,19731:23801705,37203321:0,414482,115847 -r1,19748:25215106,37203321:1413401,530329,115847 -k1,19731:23801705,37203321:-1413401 -) -(1,19731:23801705,37203321:1413401,414482,115847 -k1,19731:23801705,37203321:3277 -h1,19731:25211829,37203321:0,411205,112570 -) -k1,19731:25567411,37203321:178635 -k1,19731:26942734,37203321:178636 -k1,19731:29386949,37203321:178635 -(1,19731:29386949,37203321:0,414482,115847 -r1,19748:30800350,37203321:1413401,530329,115847 -k1,19731:29386949,37203321:-1413401 -) -(1,19731:29386949,37203321:1413401,414482,115847 -k1,19731:29386949,37203321:3277 -h1,19731:30797073,37203321:0,411205,112570 -) -k1,19731:30978986,37203321:178636 -k1,19731:31816913,37203321:178635 -k1,19731:32583029,37203321:0 -) -(1,19732:6630773,38044809:25952256,513147,126483 -k1,19731:8702019,38044809:168736 -k1,19731:9402252,38044809:168736 -k1,19731:10590072,38044809:168735 -k1,19731:12496823,38044809:168736 -k1,19731:13324851,38044809:168736 -k1,19731:14512672,38044809:168736 -k1,19731:17192748,38044809:168736 -k1,19731:18044369,38044809:168736 -k1,19731:19232189,38044809:168735 -k1,19731:22840910,38044809:168736 -k1,19731:25595041,38044809:168736 -k1,19731:26415205,38044809:168736 -k1,19731:27215708,38044809:168736 -k1,19731:28012279,38044809:168736 -k1,19731:29200099,38044809:168735 -k1,19731:30735916,38044809:168736 -k1,19731:31563944,38044809:168736 -k1,19732:32583029,38044809:0 -) -(1,19732:6630773,38886297:25952256,513147,134348 -(1,19731:6630773,38886297:0,414482,115847 -r1,19748:6989039,38886297:358266,530329,115847 -k1,19731:6630773,38886297:-358266 -) -(1,19731:6630773,38886297:358266,414482,115847 -k1,19731:6630773,38886297:3277 -h1,19731:6985762,38886297:0,411205,112570 -) -k1,19731:7332276,38886297:169567 -(1,19731:7332276,38886297:0,414482,115847 -r1,19748:7690542,38886297:358266,530329,115847 -k1,19731:7332276,38886297:-358266 -) -(1,19731:7332276,38886297:358266,414482,115847 -k1,19731:7332276,38886297:3277 -h1,19731:7687265,38886297:0,411205,112570 -) -k1,19731:7860110,38886297:169568 -k1,19731:9221122,38886297:169567 -(1,19731:9221122,38886297:0,414482,115847 -r1,19748:9579388,38886297:358266,530329,115847 -k1,19731:9221122,38886297:-358266 -) -(1,19731:9221122,38886297:358266,414482,115847 -k1,19731:9221122,38886297:3277 -h1,19731:9576111,38886297:0,411205,112570 -) -k1,19731:9748955,38886297:169567 -k1,19731:12982987,38886297:169568 -k1,19731:14171639,38886297:169567 -(1,19731:14171639,38886297:0,414482,115847 -r1,19748:15585040,38886297:1413401,530329,115847 -k1,19731:14171639,38886297:-1413401 -) -(1,19731:14171639,38886297:1413401,414482,115847 -k1,19731:14171639,38886297:3277 -h1,19731:15581763,38886297:0,411205,112570 -) -k1,19731:15754607,38886297:169567 -k1,19731:17618936,38886297:169568 -k1,19731:18439931,38886297:169567 -k1,19731:19628583,38886297:169567 -k1,19731:21370360,38886297:169568 -k1,19731:22071424,38886297:169567 -k1,19731:23754217,38886297:169567 -k1,19731:24871436,38886297:169568 -k1,19731:26060088,38886297:169567 -k1,19731:27482048,38886297:169567 -k1,19731:29669470,38886297:169568 -k1,19731:30881059,38886297:169567 -k1,19731:32583029,38886297:0 -) -(1,19732:6630773,39727785:25952256,513147,134348 -k1,19731:9888568,39727785:193331 -k1,19731:11100984,39727785:193331 -k1,19731:13032330,39727785:193331 -k1,19731:13884953,39727785:193331 -k1,19731:15097369,39727785:193331 -k1,19731:16862909,39727785:193331 -k1,19731:19829724,39727785:193331 -k1,19731:21042141,39727785:193332 -k1,19731:24364816,39727785:193331 -k1,19731:25241032,39727785:193331 -k1,19731:26506532,39727785:193331 -k1,19731:27883443,39727785:193331 -k1,19731:28736066,39727785:193331 -k1,19731:29948482,39727785:193331 -k1,19731:31900144,39727785:193331 -k1,19731:32583029,39727785:0 -) -(1,19732:6630773,40569273:25952256,505283,134348 -k1,19731:8125525,40569273:220077 -k1,19731:9243445,40569273:220077 -k1,19731:11366032,40569273:220077 -k1,19731:13061325,40569273:220078 -k1,19731:13637262,40569273:220077 -(1,19731:13637262,40569273:0,414482,115847 -r1,19748:15050663,40569273:1413401,530329,115847 -k1,19731:13637262,40569273:-1413401 -) -(1,19731:13637262,40569273:1413401,414482,115847 -k1,19731:13637262,40569273:3277 -h1,19731:15047386,40569273:0,411205,112570 -) -k1,19731:15270740,40569273:220077 -k1,19731:18771549,40569273:220077 -k1,19731:19643054,40569273:220077 -k1,19731:21748602,40569273:220077 -k1,19731:22324539,40569273:220077 -k1,19731:25519296,40569273:220078 -k1,19731:27605183,40569273:220077 -k1,19731:28508145,40569273:220077 -k1,19731:29143044,40569273:220056 -k1,19731:32583029,40569273:0 -) -(1,19732:6630773,41410761:25952256,513147,134348 -g1,19731:8062079,41410761 -g1,19731:10539995,41410761 -h1,19731:11909042,41410761:0,0,0 -g1,19731:12315365,41410761 -g1,19731:13618876,41410761 -g1,19731:14565871,41410761 -g1,19731:16970387,41410761 -g1,19731:17855778,41410761 -g1,19731:18825710,41410761 -g1,19731:22097267,41410761 -g1,19731:22947924,41410761 -g1,19731:25792186,41410761 -g1,19731:27010500,41410761 -k1,19732:32583029,41410761:3133279 -g1,19732:32583029,41410761 -) -(1,19734:6630773,42252249:25952256,505283,126483 -h1,19733:6630773,42252249:983040,0,0 -k1,19733:11244727,42252249:172579 -k1,19733:12858444,42252249:172580 -k1,19733:15444059,42252249:172579 -k1,19733:16808083,42252249:172579 -k1,19733:19358309,42252249:172580 -k1,19733:20522448,42252249:172579 -k1,19733:21761298,42252249:172579 -k1,19733:25197571,42252249:172580 -k1,19733:26021578,42252249:172579 -k1,19733:28040307,42252249:172579 -k1,19733:28895772,42252249:172580 -(1,19733:28895772,42252249:0,452978,115847 -r1,19748:30309173,42252249:1413401,568825,115847 -k1,19733:28895772,42252249:-1413401 -) -(1,19733:28895772,42252249:1413401,452978,115847 -k1,19733:28895772,42252249:3277 -h1,19733:30305896,42252249:0,411205,112570 -) -k1,19733:30655422,42252249:172579 -k1,19733:31315563,42252249:172553 -k1,19733:32583029,42252249:0 -) -(1,19734:6630773,43093737:25952256,513147,134348 -(1,19733:6837867,43093737:0,452978,115847 -r1,19748:8602980,43093737:1765113,568825,115847 -k1,19733:6837867,43093737:-1765113 -) -(1,19733:6837867,43093737:1765113,452978,115847 -k1,19733:6837867,43093737:3277 -h1,19733:8599703,43093737:0,411205,112570 -) -k1,19733:9056982,43093737:246908 -k1,19733:10495334,43093737:246907 -(1,19733:10495334,43093737:0,452978,115847 -r1,19748:13315583,43093737:2820249,568825,115847 -k1,19733:10495334,43093737:-2820249 -) -(1,19733:10495334,43093737:2820249,452978,115847 -k1,19733:10495334,43093737:3277 -h1,19733:13312306,43093737:0,411205,112570 -) -k1,19733:13562491,43093737:246908 -k1,19733:14913680,43093737:246907 -k1,19733:15908354,43093737:246908 -k1,19733:18120686,43093737:246907 -k1,19733:19863126,43093737:246908 -k1,19733:23819371,43093737:246907 -k1,19733:25460230,43093737:246908 -k1,19733:28402633,43093737:246907 -(1,19733:28402633,43093737:0,452978,122846 -r1,19748:31574593,43093737:3171960,575824,122846 -k1,19733:28402633,43093737:-3171960 -) -(1,19733:28402633,43093737:3171960,452978,122846 -k1,19733:28402633,43093737:3277 -h1,19733:31571316,43093737:0,411205,112570 -) -k1,19733:31821501,43093737:246908 -k1,19733:32583029,43093737:0 -) -(1,19734:6630773,43935225:25952256,505283,134348 -g1,19733:9257456,43935225 -g1,19733:11312665,43935225 -g1,19733:14486573,43935225 -g1,19733:16881913,43935225 -g1,19733:17764027,43935225 -g1,19733:18378099,43935225 -g1,19733:22347614,43935225 -g1,19733:23233005,43935225 -k1,19734:32583029,43935225:5773724 -g1,19734:32583029,43935225 -) -v1,19736:6630773,45125691:0,393216,0 -] -(1,19748:32583029,45706769:0,0,0 -g1,19748:32583029,45706769 -) -) -] -(1,19748:6630773,47279633:25952256,0,0 -h1,19748:6630773,47279633:25952256,0,0 -) -] -(1,19748:4262630,4025873:0,0,0 -[1,19748:-473656,4025873:0,0,0 -(1,19748:-473656,-710413:0,0,0 -(1,19748:-473656,-710413:0,0,0 -g1,19748:-473656,-710413 -) -g1,19748:-473656,-710413 -) -] -) -] -!33068 -}353 -Input:3155:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3156:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3157:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3158:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3159:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3160:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3161:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3162:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3163:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3164:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!952 -{354 -[1,19796:4262630,47279633:28320399,43253760,0 -(1,19796:4262630,4025873:0,0,0 -[1,19796:-473656,4025873:0,0,0 -(1,19796:-473656,-710413:0,0,0 -(1,19796:-473656,-644877:0,0,0 -k1,19796:-473656,-644877:-65536 ) -(1,19796:-473656,4736287:0,0,0 -k1,19796:-473656,4736287:5209943 +g1,19597:31284971,14357405 +) +) +) +g1,19598:31285337,14357405 +k1,19598:32583029,14357405:1297692 +) +(1,19605:6630773,15222485:25952256,505283,138281 +h1,19604:6630773,15222485:983040,0,0 +k1,19604:9303693,15222485:210732 +(1,19604:9303693,15222485:0,452978,115847 +r1,19643:15289348,15222485:5985655,568825,115847 +k1,19604:9303693,15222485:-5985655 +) +(1,19604:9303693,15222485:5985655,452978,115847 +g1,19604:13527512,15222485 +g1,19604:14230936,15222485 +h1,19604:15286071,15222485:0,411205,112570 +) +k1,19604:15500080,15222485:210732 +k1,19604:16579163,15222485:210731 +k1,19604:17804392,15222485:210732 +k1,19604:19299630,15222485:210732 +$1,19604:19299630,15222485 +$1,19604:19851443,15222485 +k1,19604:20062175,15222485:210732 +k1,19604:20804403,15222485:210731 +k1,19604:22034220,15222485:210732 +k1,19604:26251823,15222485:210732 +k1,19604:29147565,15222485:210732 +k1,19604:29986131,15222485:210731 +k1,19604:31215948,15222485:210732 +k1,19604:32583029,15222485:0 +) +(1,19605:6630773,16087565:25952256,513147,138281 +g1,19604:7497158,16087565 +(1,19604:7497158,16087565:0,452978,122846 +r1,19643:12075966,16087565:4578808,575824,122846 +k1,19604:7497158,16087565:-4578808 +) +(1,19604:7497158,16087565:4578808,452978,122846 +k1,19604:7497158,16087565:3277 +h1,19604:12072689,16087565:0,411205,112570 +) +g1,19604:12275195,16087565 +g1,19604:13677665,16087565 +g1,19604:15945210,16087565 +g1,19604:19150575,16087565 +g1,19604:22388708,16087565 +$1,19604:22388708,16087565 +$1,19604:22891369,16087565 +g1,19604:23090598,16087565 +g1,19604:24481272,16087565 +$1,19604:24481272,16087565 +$1,19604:25033085,16087565 +g1,19604:25232314,16087565 +g1,19604:26047581,16087565 +(1,19604:26047581,16087565:0,459977,115847 +r1,19643:28516118,16087565:2468537,575824,115847 +k1,19604:26047581,16087565:-2468537 +) +(1,19604:26047581,16087565:2468537,459977,115847 +k1,19604:26047581,16087565:3277 +h1,19604:28512841,16087565:0,411205,112570 +) +k1,19605:32583029,16087565:3893241 +g1,19605:32583029,16087565 +) +v1,19607:6630773,16772420:0,393216,0 +(1,19614:6630773,19161062:25952256,2781858,196608 +g1,19614:6630773,19161062 +g1,19614:6630773,19161062 +g1,19614:6434165,19161062 +(1,19614:6434165,19161062:0,2781858,196608 +r1,19643:32779637,19161062:26345472,2978466,196608 +k1,19614:6434165,19161062:-26345472 +) +(1,19614:6434165,19161062:26345472,2781858,196608 +[1,19614:6630773,19161062:25952256,2585250,0 +(1,19609:6630773,17000251:25952256,424439,112852 +(1,19608:6630773,17000251:0,0,0 +g1,19608:6630773,17000251 +g1,19608:6630773,17000251 +g1,19608:6303093,17000251 +(1,19608:6303093,17000251:0,0,0 +) +g1,19608:6630773,17000251 +) +k1,19609:6630773,17000251:0 +g1,19609:10946175,17000251 +g1,19609:16921346,17000251 +g1,19609:21900655,17000251 +h1,19609:22232609,17000251:0,0,0 +k1,19609:32583029,17000251:10350420 +g1,19609:32583029,17000251 +) +(1,19610:6630773,17685106:25952256,431045,106246 +h1,19610:6630773,17685106:0,0,0 +g1,19610:6962727,17685106 +g1,19610:7294681,17685106 +g1,19610:7626635,17685106 +g1,19610:7958589,17685106 +g1,19610:14265714,17685106 +g1,19610:14929622,17685106 +g1,19610:16921346,17685106 +g1,19610:19576978,17685106 +g1,19610:20240886,17685106 +g1,19610:20904794,17685106 +g1,19610:21568702,17685106 +g1,19610:22564564,17685106 +g1,19610:26548011,17685106 +g1,19610:27211919,17685106 +g1,19610:28871689,17685106 +h1,19610:29203643,17685106:0,0,0 +k1,19610:32583029,17685106:3379386 +g1,19610:32583029,17685106 +) +(1,19611:6630773,18369961:25952256,424439,112852 +h1,19611:6630773,18369961:0,0,0 +g1,19611:6962727,18369961 +g1,19611:7294681,18369961 +g1,19611:7626635,18369961 +g1,19611:7958589,18369961 +g1,19611:12273990,18369961 +h1,19611:12605944,18369961:0,0,0 +k1,19611:32583028,18369961:19977084 +g1,19611:32583028,18369961 +) +(1,19612:6630773,19054816:25952256,431045,106246 +h1,19612:6630773,19054816:0,0,0 +g1,19612:6962727,19054816 +g1,19612:7294681,19054816 +g1,19612:7626635,19054816 +g1,19612:7958589,19054816 +g1,19612:14929622,19054816 +g1,19612:17253300,19054816 +g1,19612:17917208,19054816 +h1,19612:20240886,19054816:0,0,0 +k1,19612:32583029,19054816:12342143 +g1,19612:32583029,19054816 +) +] +) +g1,19614:32583029,19161062 +g1,19614:6630773,19161062 +g1,19614:6630773,19161062 +g1,19614:32583029,19161062 +g1,19614:32583029,19161062 +) +h1,19614:6630773,19357670:0,0,0 +(1,19617:6630773,28181874:25952256,8758668,0 +k1,19617:7928465,28181874:1297692 +h1,19616:7928465,28181874:0,0,0 +(1,19616:7928465,28181874:23356872,8758668,0 +(1,19616:7928465,28181874:23356506,8758690,0 +(1,19616:7928465,28181874:23356506,8758690,0 +(1,19616:7928465,28181874:0,8758690,0 +(1,19616:7928465,28181874:0,14208860,0 +(1,19616:7928465,28181874:37890292,14208860,0 +) +k1,19616:7928465,28181874:-37890292 +) +) +g1,19616:31284971,28181874 +) +) +) +g1,19617:31285337,28181874 +k1,19617:32583029,28181874:1297692 +) +v1,19624:6630773,29046954:0,393216,0 +(1,19643:6630773,38500692:25952256,9846954,0 +g1,19643:6630773,38500692 +g1,19643:6237557,38500692 +r1,19643:6368629,38500692:131072,9846954,0 +g1,19643:6567858,38500692 +g1,19643:6764466,38500692 +[1,19643:6764466,38500692:25818563,9846954,0 +(1,19625:6764466,29355252:25818563,701514,196608 +(1,19624:6764466,29355252:0,701514,196608 +r1,19643:8010564,29355252:1246098,898122,196608 +k1,19624:6764466,29355252:-1246098 +) +(1,19624:6764466,29355252:1246098,701514,196608 +) +k1,19624:8225297,29355252:214733 +k1,19624:8552977,29355252:327680 +k1,19624:11364902,29355252:214733 +k1,19624:12598719,29355252:214732 +k1,19624:16339944,29355252:214733 +k1,19624:17213969,29355252:214733 +k1,19624:18705999,29355252:214733 +k1,19624:20808824,29355252:214733 +k1,19624:22417508,29355252:214733 +(1,19624:22417508,29355252:0,452978,115847 +r1,19643:28403163,29355252:5985655,568825,115847 +k1,19624:22417508,29355252:-5985655 +) +(1,19624:22417508,29355252:5985655,452978,115847 +g1,19624:26641327,29355252 +g1,19624:27344751,29355252 +h1,19624:28399886,29355252:0,411205,112570 +) +k1,19624:28617895,29355252:214732 +k1,19624:29364125,29355252:214733 +k1,19624:30645129,29355252:214733 +k1,19625:32583029,29355252:0 +) +(1,19625:6764466,30220332:25818563,513147,134348 +k1,19624:8628207,30220332:283668 +k1,19624:9563303,30220332:283668 +k1,19624:12314402,30220332:283668 +k1,19624:13617155,30220332:283668 +k1,19624:15783672,30220332:283668 +k1,19624:17344637,30220332:283668 +k1,19624:19022257,30220332:283669 +(1,19624:19022257,30220332:0,459977,115847 +r1,19643:23249353,30220332:4227096,575824,115847 +k1,19624:19022257,30220332:-4227096 +) +(1,19624:19022257,30220332:4227096,459977,115847 +k1,19624:19022257,30220332:3277 +h1,19624:23246076,30220332:0,411205,112570 +) +k1,19624:23706691,30220332:283668 +k1,19624:24618194,30220332:283668 +k1,19624:25920947,30220332:283668 +k1,19624:27510748,30220332:283668 +k1,19624:29161497,30220332:283668 +k1,19624:31330636,30220332:283668 +k1,19624:32583029,30220332:0 +) +(1,19625:6764466,31085412:25818563,513147,134348 +k1,19624:7515806,31085412:219843 +k1,19624:11234617,31085412:219844 +k1,19624:15461331,31085412:219843 +k1,19624:16628826,31085412:219844 +k1,19624:20912556,31085412:219843 +k1,19624:23703377,31085412:219844 +k1,19624:24995389,31085412:219843 +k1,19624:26281504,31085412:219844 +k1,19624:27520432,31085412:219843 +k1,19624:30684809,31085412:219844 +k1,19624:31563944,31085412:219843 +k1,19624:32583029,31085412:0 +) +(1,19625:6764466,31950492:25818563,513147,138281 +k1,19624:8374649,31950492:211645 +k1,19624:9202332,31950492:211645 +k1,19624:10433062,31950492:211645 +k1,19624:12095674,31950492:211645 +k1,19624:13996837,31950492:211645 +k1,19624:14824520,31950492:211645 +k1,19624:16055250,31950492:211645 +k1,19624:18508226,31950492:211645 +k1,19624:20086952,31950492:211645 +k1,19624:21317681,31950492:211644 +k1,19624:24143557,31950492:211645 +k1,19624:25014494,31950492:211645 +k1,19624:26245224,31950492:211645 +$1,19624:26245224,31950492 +$1,19624:26747885,31950492 +k1,19624:26959530,31950492:211645 +k1,19624:28362620,31950492:211645 +$1,19624:28362620,31950492 +$1,19624:28914433,31950492 +k1,19624:29126078,31950492:211645 +k1,19624:30736261,31950492:211645 +k1,19624:31563944,31950492:211645 +k1,19624:32583029,31950492:0 +) +(1,19625:6764466,32815572:25818563,513147,126483 +k1,19624:8212812,32815572:171049 +k1,19624:8915358,32815572:171049 +k1,19624:12076814,32815572:171048 +k1,19624:13171265,32815572:171049 +k1,19624:15040352,32815572:171049 +k1,19624:18949575,32815572:171049 +k1,19624:20112183,32815572:171048 +k1,19624:22528495,32815572:171049 +k1,19624:23718629,32815572:171049 +$1,19624:23718629,32815572 +$1,19624:24221290,32815572 +k1,19624:24392339,32815572:171049 +k1,19624:27407651,32815572:171049 +k1,19624:28110196,32815572:171048 +k1,19624:30583525,32815572:171049 +k1,19624:31563944,32815572:171049 +k1,19624:32583029,32815572:0 +) +(1,19625:6764466,33680652:25818563,513147,138281 +k1,19624:9278471,33680652:168471 +k1,19624:10699335,33680652:168471 +k1,19624:12059251,33680652:168471 +k1,19624:13246807,33680652:168471 +$1,19624:13246807,33680652 +$1,19624:13798620,33680652 +k1,19624:13967091,33680652:168471 +k1,19624:16979825,33680652:168471 +k1,19624:17957666,33680652:168471 +k1,19624:19145222,33680652:168471 +k1,19624:22629815,33680652:168471 +k1,19624:24224349,33680652:168471 +k1,19624:25464989,33680652:168471 +k1,19624:26652545,33680652:168471 +k1,19624:28056370,33680652:168471 +k1,19624:28884133,33680652:168471 +k1,19624:30071689,33680652:168471 +k1,19624:32583029,33680652:0 +) +(1,19625:6764466,34545732:25818563,505283,126483 +g1,19624:9549090,34545732 +g1,19624:10399747,34545732 +g1,19624:11618061,34545732 +(1,19624:11618061,34545732:0,414482,115847 +r1,19643:11976327,34545732:358266,530329,115847 +k1,19624:11618061,34545732:-358266 +) +(1,19624:11618061,34545732:358266,414482,115847 +k1,19624:11618061,34545732:3277 +h1,19624:11973050,34545732:0,411205,112570 +) +g1,19624:12175556,34545732 +g1,19624:15219048,34545732 +g1,19624:17976147,34545732 +g1,19624:18861538,34545732 +g1,19624:22826466,34545732 +k1,19625:32583029,34545732:7071553 +g1,19625:32583029,34545732 +) +v1,19627:6764466,35230587:0,393216,0 +(1,19635:6764466,38304084:25818563,3466713,196608 +g1,19635:6764466,38304084 +g1,19635:6764466,38304084 +g1,19635:6567858,38304084 +(1,19635:6567858,38304084:0,3466713,196608 +r1,19643:32779637,38304084:26211779,3663321,196608 +k1,19635:6567857,38304084:-26211780 +) +(1,19635:6567858,38304084:26211779,3466713,196608 +[1,19635:6764466,38304084:25818563,3270105,0 +(1,19629:6764466,35458418:25818563,424439,112852 +(1,19628:6764466,35458418:0,0,0 +g1,19628:6764466,35458418 +g1,19628:6764466,35458418 +g1,19628:6436786,35458418 +(1,19628:6436786,35458418:0,0,0 +) +g1,19628:6764466,35458418 +) +k1,19629:6764466,35458418:0 +g1,19629:11079868,35458418 +g1,19629:17055039,35458418 +g1,19629:22034348,35458418 +h1,19629:22366302,35458418:0,0,0 +k1,19629:32583029,35458418:10216727 +g1,19629:32583029,35458418 +) +(1,19630:6764466,36143273:25818563,431045,106246 +h1,19630:6764466,36143273:0,0,0 +g1,19630:7096420,36143273 +g1,19630:7428374,36143273 +g1,19630:7760328,36143273 +g1,19630:8092282,36143273 +g1,19630:14399407,36143273 +g1,19630:15063315,36143273 +g1,19630:17055039,36143273 +g1,19630:19710671,36143273 +g1,19630:20374579,36143273 +g1,19630:21038487,36143273 +g1,19630:21702395,36143273 +g1,19630:22698257,36143273 +h1,19630:23030211,36143273:0,0,0 +k1,19630:32583029,36143273:9552818 +g1,19630:32583029,36143273 +) +(1,19631:6764466,36828128:25818563,424439,112852 +h1,19631:6764466,36828128:0,0,0 +g1,19631:7096420,36828128 +g1,19631:7428374,36828128 +g1,19631:7760328,36828128 +g1,19631:8092282,36828128 +g1,19631:12407683,36828128 +h1,19631:12739637,36828128:0,0,0 +k1,19631:32583029,36828128:19843392 +g1,19631:32583029,36828128 +) +(1,19632:6764466,37512983:25818563,431045,106246 +h1,19632:6764466,37512983:0,0,0 +g1,19632:7096420,37512983 +g1,19632:7428374,37512983 +g1,19632:7760328,37512983 +g1,19632:8092282,37512983 +g1,19632:12407683,37512983 +h1,19632:12739637,37512983:0,0,0 +k1,19632:32583029,37512983:19843392 +g1,19632:32583029,37512983 +) +(1,19633:6764466,38197838:25818563,431045,106246 +h1,19633:6764466,38197838:0,0,0 +g1,19633:7096420,38197838 +g1,19633:7428374,38197838 +g1,19633:7760328,38197838 +g1,19633:8092282,38197838 +g1,19633:15063315,38197838 +g1,19633:17386993,38197838 +g1,19633:18050901,38197838 +h1,19633:20374579,38197838:0,0,0 +k1,19633:32583029,38197838:12208450 +g1,19633:32583029,38197838 +) +] +) +g1,19635:32583029,38304084 +g1,19635:6764466,38304084 +g1,19635:6764466,38304084 +g1,19635:32583029,38304084 +g1,19635:32583029,38304084 +) +h1,19635:6764466,38500692:0,0,0 +] +g1,19643:32583029,38500692 +) +] +(1,19643:32583029,45706769:0,0,0 +g1,19643:32583029,45706769 +) +) +] +(1,19643:6630773,47279633:25952256,0,0 +h1,19643:6630773,47279633:25952256,0,0 +) +] +(1,19643:4262630,4025873:0,0,0 +[1,19643:-473656,4025873:0,0,0 +(1,19643:-473656,-710413:0,0,0 +(1,19643:-473656,-710413:0,0,0 +g1,19643:-473656,-710413 +) +g1,19643:-473656,-710413 +) +] +) +] +!16240 +}331 +Input:3103:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3104:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3105:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3106:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3107:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3108:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!576 +{332 +[1,19684:4262630,47279633:28320399,43253760,0 +(1,19684:4262630,4025873:0,0,0 +[1,19684:-473656,4025873:0,0,0 +(1,19684:-473656,-710413:0,0,0 +(1,19684:-473656,-644877:0,0,0 +k1,19684:-473656,-644877:-65536 +) +(1,19684:-473656,4736287:0,0,0 +k1,19684:-473656,4736287:5209943 ) -g1,19796:-473656,-710413 +g1,19684:-473656,-710413 ) ] ) -[1,19796:6630773,47279633:25952256,43253760,0 -[1,19796:6630773,4812305:25952256,786432,0 -(1,19796:6630773,4812305:25952256,505283,11795 -(1,19796:6630773,4812305:25952256,505283,11795 -g1,19796:3078558,4812305 -[1,19796:3078558,4812305:0,0,0 -(1,19796:3078558,2439708:0,1703936,0 -k1,19796:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,19796:2537886,2439708:1179648,16384,0 +[1,19684:6630773,47279633:25952256,43253760,0 +[1,19684:6630773,4812305:25952256,786432,0 +(1,19684:6630773,4812305:25952256,505283,126483 +(1,19684:6630773,4812305:25952256,505283,126483 +g1,19684:3078558,4812305 +[1,19684:3078558,4812305:0,0,0 +(1,19684:3078558,2439708:0,1703936,0 +k1,19684:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,19684:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,19796:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,19684:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,19796:3078558,4812305:0,0,0 -(1,19796:3078558,2439708:0,1703936,0 -g1,19796:29030814,2439708 -g1,19796:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,19796:36151628,1915420:16384,1179648,0 +[1,19684:3078558,4812305:0,0,0 +(1,19684:3078558,2439708:0,1703936,0 +g1,19684:29030814,2439708 +g1,19684:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,19684:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,19796:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,19684:37855564,2439708:1179648,16384,0 ) ) -k1,19796:3078556,2439708:-34777008 +k1,19684:3078556,2439708:-34777008 ) ] -[1,19796:3078558,4812305:0,0,0 -(1,19796:3078558,49800853:0,16384,2228224 -k1,19796:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,19796:2537886,49800853:1179648,16384,0 +[1,19684:3078558,4812305:0,0,0 +(1,19684:3078558,49800853:0,16384,2228224 +k1,19684:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,19684:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,19796:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,19684:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,19796:3078558,4812305:0,0,0 -(1,19796:3078558,49800853:0,16384,2228224 -g1,19796:29030814,49800853 -g1,19796:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,19796:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] -) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,19796:37855564,49800853:1179648,16384,0 -) -) -k1,19796:3078556,49800853:-34777008 -) -] -g1,19796:6630773,4812305 -g1,19796:6630773,4812305 -g1,19796:8724648,4812305 -k1,19796:31387652,4812305:22663004 -) -) -] -[1,19796:6630773,45706769:25952256,40108032,0 -(1,19796:6630773,45706769:25952256,40108032,0 -(1,19796:6630773,45706769:0,0,0 -g1,19796:6630773,45706769 -) -[1,19796:6630773,45706769:25952256,40108032,0 -v1,19748:6630773,6254097:0,393216,0 -(1,19748:6630773,11898617:25952256,6037736,196608 -g1,19748:6630773,11898617 -g1,19748:6630773,11898617 -g1,19748:6434165,11898617 -(1,19748:6434165,11898617:0,6037736,196608 -r1,19796:32779637,11898617:26345472,6234344,196608 -k1,19748:6434165,11898617:-26345472 -) -(1,19748:6434165,11898617:26345472,6037736,196608 -[1,19748:6630773,11898617:25952256,5841128,0 -(1,19738:6630773,6461715:25952256,404226,107478 -(1,19737:6630773,6461715:0,0,0 -g1,19737:6630773,6461715 -g1,19737:6630773,6461715 -g1,19737:6303093,6461715 -(1,19737:6303093,6461715:0,0,0 -) -g1,19737:6630773,6461715 -) -k1,19738:6630773,6461715:0 -g1,19738:10424522,6461715 -g1,19738:11056814,6461715 -k1,19738:11056814,6461715:0 -h1,19738:13269834,6461715:0,0,0 -k1,19738:32583030,6461715:19313196 -g1,19738:32583030,6461715 -) -(1,19739:6630773,7127893:25952256,410518,107478 -h1,19739:6630773,7127893:0,0,0 -g1,19739:6946919,7127893 -g1,19739:7263065,7127893 -g1,19739:7579211,7127893 -g1,19739:7895357,7127893 -g1,19739:8211503,7127893 -g1,19739:8527649,7127893 -g1,19739:8843795,7127893 -g1,19739:10740670,7127893 -g1,19739:11372962,7127893 -g1,19739:12953691,7127893 -g1,19739:13585983,7127893 -g1,19739:14218275,7127893 -g1,19739:18960461,7127893 -g1,19739:20857335,7127893 -g1,19739:21489627,7127893 -g1,19739:23702647,7127893 -h1,19739:24018793,7127893:0,0,0 -k1,19739:32583029,7127893:8564236 -g1,19739:32583029,7127893 -) -(1,19740:6630773,7794071:25952256,404226,107478 -h1,19740:6630773,7794071:0,0,0 -g1,19740:6946919,7794071 -g1,19740:7263065,7794071 -g1,19740:11056813,7794071 -h1,19740:11372959,7794071:0,0,0 -k1,19740:32583029,7794071:21210070 -g1,19740:32583029,7794071 -) -(1,19741:6630773,8460249:25952256,404226,107478 -h1,19741:6630773,8460249:0,0,0 -g1,19741:6946919,8460249 -g1,19741:7263065,8460249 -g1,19741:11372959,8460249 -h1,19741:11689105,8460249:0,0,0 -k1,19741:32583029,8460249:20893924 -g1,19741:32583029,8460249 -) -(1,19742:6630773,9126427:25952256,404226,101187 -h1,19742:6630773,9126427:0,0,0 -g1,19742:6946919,9126427 -g1,19742:7263065,9126427 -g1,19742:12321397,9126427 -g1,19742:12953689,9126427 -g1,19742:13902127,9126427 -h1,19742:14218273,9126427:0,0,0 -k1,19742:32583029,9126427:18364756 -g1,19742:32583029,9126427 -) -(1,19743:6630773,9792605:25952256,404226,76021 -h1,19743:6630773,9792605:0,0,0 -g1,19743:6946919,9792605 -g1,19743:7263065,9792605 -g1,19743:14850562,9792605 -g1,19743:15482854,9792605 -g1,19743:17379728,9792605 -g1,19743:19276603,9792605 -h1,19743:19592749,9792605:0,0,0 -k1,19743:32583029,9792605:12990280 -g1,19743:32583029,9792605 -) -(1,19744:6630773,10458783:25952256,410518,101187 -h1,19744:6630773,10458783:0,0,0 -g1,19744:6946919,10458783 -g1,19744:7263065,10458783 -g1,19744:14850562,10458783 -g1,19744:15482854,10458783 -g1,19744:20225040,10458783 -g1,19744:22438060,10458783 -h1,19744:22754206,10458783:0,0,0 -k1,19744:32583029,10458783:9828823 -g1,19744:32583029,10458783 -) -(1,19745:6630773,11124961:25952256,410518,107478 -h1,19745:6630773,11124961:0,0,0 -g1,19745:6946919,11124961 -g1,19745:7263065,11124961 -g1,19745:11689105,11124961 -g1,19745:12321397,11124961 -g1,19745:14850563,11124961 -g1,19745:15799000,11124961 -g1,19745:18012020,11124961 -k1,19745:18012020,11124961:0 -h1,19745:20225040,11124961:0,0,0 -k1,19745:32583029,11124961:12357989 -g1,19745:32583029,11124961 -) -(1,19746:6630773,11791139:25952256,410518,107478 -h1,19746:6630773,11791139:0,0,0 -g1,19746:6946919,11791139 -g1,19746:7263065,11791139 -g1,19746:7579211,11791139 -g1,19746:7895357,11791139 -g1,19746:8211503,11791139 -g1,19746:8527649,11791139 -g1,19746:8843795,11791139 -g1,19746:9159941,11791139 -g1,19746:9476087,11791139 -g1,19746:9792233,11791139 -g1,19746:12637544,11791139 -g1,19746:13269836,11791139 -g1,19746:16431293,11791139 -g1,19746:18012022,11791139 -k1,19746:18012022,11791139:0 -h1,19746:21805771,11791139:0,0,0 -k1,19746:32583029,11791139:10777258 -g1,19746:32583029,11791139 -) -] -) -g1,19748:32583029,11898617 -g1,19748:6630773,11898617 -g1,19748:6630773,11898617 -g1,19748:32583029,11898617 -g1,19748:32583029,11898617 -) -h1,19748:6630773,12095225:0,0,0 -(1,19751:6630773,21768715:25952256,9083666,0 -k1,19751:10523651,21768715:3892878 -h1,19750:10523651,21768715:0,0,0 -(1,19750:10523651,21768715:18166500,9083666,0 -(1,19750:10523651,21768715:18167376,9083688,0 -(1,19750:10523651,21768715:18167376,9083688,0 -(1,19750:10523651,21768715:0,9083688,0 -(1,19750:10523651,21768715:0,14208860,0 -(1,19750:10523651,21768715:28417720,14208860,0 -) -k1,19750:10523651,21768715:-28417720 -) -) -g1,19750:28691027,21768715 -) -) -) -g1,19751:28690151,21768715 -k1,19751:32583029,21768715:3892878 -) -(1,19758:6630773,22610203:25952256,513147,115847 -h1,19757:6630773,22610203:983040,0,0 -k1,19757:11855503,22610203:213192 -k1,19757:15094491,22610203:213191 -(1,19757:15094491,22610203:0,452978,115847 -r1,19796:17211316,22610203:2116825,568825,115847 -k1,19757:15094491,22610203:-2116825 -) -(1,19757:15094491,22610203:2116825,452978,115847 -k1,19757:15094491,22610203:3277 -h1,19757:17208039,22610203:0,411205,112570 -) -k1,19757:17424508,22610203:213192 -k1,19757:18829145,22610203:213192 -(1,19757:18829145,22610203:0,452978,115847 -r1,19796:20945970,22610203:2116825,568825,115847 -k1,19757:18829145,22610203:-2116825 -) -(1,19757:18829145,22610203:2116825,452978,115847 -k1,19757:18829145,22610203:3277 -h1,19757:20942693,22610203:0,411205,112570 -) -k1,19757:21159161,22610203:213191 -k1,19757:22476635,22610203:213192 -k1,19757:23437593,22610203:213192 -k1,19757:25164011,22610203:213192 -k1,19757:26028630,22610203:213191 -k1,19757:27176365,22610203:213192 -k1,19757:28408642,22610203:213192 -k1,19757:29874226,22610203:213191 -k1,19757:31931601,22610203:213192 -k1,19757:32583029,22610203:0 -) -(1,19758:6630773,23451691:25952256,505283,126483 -g1,19757:8811155,23451691 -g1,19757:10754297,23451691 -g1,19757:11569564,23451691 -g1,19757:12787878,23451691 -g1,19757:15741585,23451691 -k1,19758:32583029,23451691:14697106 -g1,19758:32583029,23451691 -) -v1,19760:6630773,24642157:0,393216,0 -(1,19765:6630773,25617140:25952256,1368199,196608 -g1,19765:6630773,25617140 -g1,19765:6630773,25617140 -g1,19765:6434165,25617140 -(1,19765:6434165,25617140:0,1368199,196608 -r1,19796:32779637,25617140:26345472,1564807,196608 -k1,19765:6434165,25617140:-26345472 -) -(1,19765:6434165,25617140:26345472,1368199,196608 -[1,19765:6630773,25617140:25952256,1171591,0 -(1,19762:6630773,24849775:25952256,404226,76021 -(1,19761:6630773,24849775:0,0,0 -g1,19761:6630773,24849775 -g1,19761:6630773,24849775 -g1,19761:6303093,24849775 -(1,19761:6303093,24849775:0,0,0 -) -g1,19761:6630773,24849775 -) -g1,19762:6946919,24849775 -g1,19762:7263065,24849775 -g1,19762:10740669,24849775 -g1,19762:12637544,24849775 -h1,19762:12953690,24849775:0,0,0 -k1,19762:32583030,24849775:19629340 -g1,19762:32583030,24849775 -) -(1,19763:6630773,25515953:25952256,410518,101187 -h1,19763:6630773,25515953:0,0,0 -g1,19763:6946919,25515953 -g1,19763:7263065,25515953 -g1,19763:13585980,25515953 -g1,19763:15799000,25515953 -h1,19763:16115146,25515953:0,0,0 -k1,19763:32583029,25515953:16467883 -g1,19763:32583029,25515953 -) -] -) -g1,19765:32583029,25617140 -g1,19765:6630773,25617140 -g1,19765:6630773,25617140 -g1,19765:32583029,25617140 -g1,19765:32583029,25617140 -) -h1,19765:6630773,25813748:0,0,0 -(1,19769:6630773,27179524:25952256,513147,115847 -h1,19768:6630773,27179524:983040,0,0 -k1,19768:11897300,27179524:254989 -k1,19768:14847784,27179524:254988 -(1,19768:14847784,27179524:0,452978,115847 -r1,19796:16964609,27179524:2116825,568825,115847 -k1,19768:14847784,27179524:-2116825 -) -(1,19768:14847784,27179524:2116825,452978,115847 -k1,19768:14847784,27179524:3277 -h1,19768:16961332,27179524:0,411205,112570 -) -k1,19768:17219598,27179524:254989 -k1,19768:18006083,27179524:254988 -k1,19768:20238293,27179524:254989 -k1,19768:22191319,27179524:254988 -k1,19768:23314660,27179524:254989 -k1,19768:24662133,27179524:254988 -k1,19768:27182702,27179524:254989 -k1,19768:29340200,27179524:254988 -k1,19768:30542840,27179524:254989 -k1,19768:31563944,27179524:254988 -k1,19768:32583029,27179524:0 -) -(1,19769:6630773,28021012:25952256,505283,126483 -k1,19768:9891658,28021012:196421 -k1,19768:10704116,28021012:196420 -k1,19768:11256397,28021012:196421 -k1,19768:12730115,28021012:196421 -k1,19768:13998705,28021012:196421 -k1,19768:15743741,28021012:196420 -k1,19768:16591590,28021012:196421 -k1,19768:19720747,28021012:196421 -k1,19768:20851710,28021012:196420 -k1,19768:22300524,28021012:196421 -k1,19768:24341128,28021012:196421 -k1,19768:26747423,28021012:196421 -k1,19768:28044848,28021012:196420 -k1,19768:31563944,28021012:196421 -k1,19769:32583029,28021012:0 -) -(1,19769:6630773,28862500:25952256,513147,134348 -(1,19768:6630773,28862500:0,414482,115847 -r1,19796:8044174,28862500:1413401,530329,115847 -k1,19768:6630773,28862500:-1413401 -) -(1,19768:6630773,28862500:1413401,414482,115847 -k1,19768:6630773,28862500:3277 -h1,19768:8040897,28862500:0,411205,112570 -) -k1,19768:8179195,28862500:135021 -k1,19768:8973507,28862500:135020 -k1,19768:10805255,28862500:135021 -k1,19768:13016456,28862500:135020 -(1,19768:13016456,28862500:0,452978,115847 -r1,19796:15133281,28862500:2116825,568825,115847 -k1,19768:13016456,28862500:-2116825 -) -(1,19768:13016456,28862500:2116825,452978,115847 -k1,19768:13016456,28862500:3277 -h1,19768:15130004,28862500:0,411205,112570 -) -k1,19768:15268302,28862500:135021 -k1,19768:17781624,28862500:135020 -k1,19768:21319274,28862500:135021 -k1,19768:22401946,28862500:135021 -k1,19768:24233693,28862500:135020 -k1,19768:26437030,28862500:135021 -k1,19768:28481114,28862500:135020 -k1,19768:29302297,28862500:135021 -k1,19768:32583029,28862500:0 -) -(1,19769:6630773,29703988:25952256,513147,115847 -k1,19768:9031994,29703988:159234 -k1,19768:10210313,29703988:159234 -k1,19768:12437863,29703988:159234 -k1,19768:13256389,29703988:159234 -k1,19768:14434708,29703988:159234 -k1,19768:17809138,29703988:159234 -k1,19768:18438265,29703988:159234 -k1,19768:19883316,29703988:159235 -k1,19768:22054505,29703988:159234 -k1,19768:22958883,29703988:159234 -k1,19768:23769545,29703988:159234 -k1,19768:24863322,29703988:159234 -(1,19768:24863322,29703988:0,452978,115847 -r1,19796:26628435,29703988:1765113,568825,115847 -k1,19768:24863322,29703988:-1765113 -) -(1,19768:24863322,29703988:1765113,452978,115847 -k1,19768:24863322,29703988:3277 -h1,19768:26625158,29703988:0,411205,112570 -) -k1,19768:26961339,29703988:159234 -(1,19768:26961339,29703988:0,452978,115847 -r1,19796:29781588,29703988:2820249,568825,115847 -k1,19768:26961339,29703988:-2820249 -) -(1,19768:26961339,29703988:2820249,452978,115847 -k1,19768:26961339,29703988:3277 -h1,19768:29778311,29703988:0,411205,112570 -) -k1,19768:30114492,29703988:159234 -(1,19768:30114492,29703988:0,452978,115847 -r1,19796:32583029,29703988:2468537,568825,115847 -k1,19768:30114492,29703988:-2468537 -) -(1,19768:30114492,29703988:2468537,452978,115847 -k1,19768:30114492,29703988:3277 -h1,19768:32579752,29703988:0,411205,112570 -) -k1,19768:32583029,29703988:0 -) -(1,19769:6630773,30545476:25952256,513147,122846 -g1,19768:8021447,30545476 -(1,19768:8021447,30545476:0,414482,122846 -r1,19796:9083136,30545476:1061689,537328,122846 -k1,19768:8021447,30545476:-1061689 -) -(1,19768:8021447,30545476:1061689,414482,122846 -k1,19768:8021447,30545476:3277 -h1,19768:9079859,30545476:0,411205,112570 -) -g1,19768:9456035,30545476 -g1,19768:10314556,30545476 -g1,19768:12399256,30545476 -g1,19768:13617570,30545476 -g1,19768:15122932,30545476 -g1,19768:16494600,30545476 -g1,19768:17798111,30545476 -g1,19768:19283156,30545476 -g1,19768:20230151,30545476 -g1,19768:21363923,30545476 -g1,19768:22957103,30545476 -(1,19768:22957103,30545476:0,452978,122846 -r1,19796:26129063,30545476:3171960,575824,122846 -k1,19768:22957103,30545476:-3171960 -) -(1,19768:22957103,30545476:3171960,452978,122846 -k1,19768:22957103,30545476:3277 -h1,19768:26125786,30545476:0,411205,112570 -) -k1,19769:32583029,30545476:6280296 -g1,19769:32583029,30545476 -) -v1,19771:6630773,31735942:0,393216,0 -(1,19786:6630773,39347539:25952256,8004813,196608 -g1,19786:6630773,39347539 -g1,19786:6630773,39347539 -g1,19786:6434165,39347539 -(1,19786:6434165,39347539:0,8004813,196608 -r1,19796:32779637,39347539:26345472,8201421,196608 -k1,19786:6434165,39347539:-26345472 -) -(1,19786:6434165,39347539:26345472,8004813,196608 -[1,19786:6630773,39347539:25952256,7808205,0 -(1,19773:6630773,31943560:25952256,404226,107478 -(1,19772:6630773,31943560:0,0,0 -g1,19772:6630773,31943560 -g1,19772:6630773,31943560 -g1,19772:6303093,31943560 -(1,19772:6303093,31943560:0,0,0 -) -g1,19772:6630773,31943560 -) -k1,19773:6630773,31943560:0 -g1,19773:10424522,31943560 -g1,19773:11056814,31943560 -k1,19773:11056814,31943560:0 -h1,19773:13269834,31943560:0,0,0 -k1,19773:32583030,31943560:19313196 -g1,19773:32583030,31943560 -) -(1,19774:6630773,32609738:25952256,410518,107478 -h1,19774:6630773,32609738:0,0,0 -g1,19774:6946919,32609738 -g1,19774:7263065,32609738 -g1,19774:7579211,32609738 -g1,19774:7895357,32609738 -g1,19774:8211503,32609738 -g1,19774:8527649,32609738 -g1,19774:8843795,32609738 -g1,19774:10740670,32609738 -g1,19774:11372962,32609738 -g1,19774:12953691,32609738 -g1,19774:13585983,32609738 -g1,19774:14218275,32609738 -g1,19774:18960461,32609738 -g1,19774:20857335,32609738 -g1,19774:21489627,32609738 -g1,19774:23702647,32609738 -h1,19774:24018793,32609738:0,0,0 -k1,19774:32583029,32609738:8564236 -g1,19774:32583029,32609738 -) -(1,19775:6630773,33275916:25952256,404226,107478 -h1,19775:6630773,33275916:0,0,0 -g1,19775:6946919,33275916 -g1,19775:7263065,33275916 -g1,19775:11056813,33275916 -h1,19775:11372959,33275916:0,0,0 -k1,19775:32583029,33275916:21210070 -g1,19775:32583029,33275916 -) -(1,19776:6630773,33942094:25952256,404226,107478 -h1,19776:6630773,33942094:0,0,0 -g1,19776:6946919,33942094 -g1,19776:7263065,33942094 -g1,19776:11372959,33942094 -h1,19776:11689105,33942094:0,0,0 -k1,19776:32583029,33942094:20893924 -g1,19776:32583029,33942094 -) -(1,19777:6630773,34608272:25952256,404226,101187 -h1,19777:6630773,34608272:0,0,0 -g1,19777:6946919,34608272 -g1,19777:7263065,34608272 -g1,19777:12321397,34608272 -g1,19777:12953689,34608272 -g1,19777:13902127,34608272 -h1,19777:14218273,34608272:0,0,0 -k1,19777:32583029,34608272:18364756 -g1,19777:32583029,34608272 -) -(1,19778:6630773,35274450:25952256,410518,107478 -h1,19778:6630773,35274450:0,0,0 -g1,19778:6946919,35274450 -g1,19778:7263065,35274450 -g1,19778:10740668,35274450 -g1,19778:11372960,35274450 -g1,19778:13902126,35274450 -g1,19778:14850563,35274450 -g1,19778:17063583,35274450 -k1,19778:17063583,35274450:0 -h1,19778:19276603,35274450:0,0,0 -k1,19778:32583029,35274450:13306426 -g1,19778:32583029,35274450 -) -(1,19779:6630773,35940628:25952256,410518,107478 -h1,19779:6630773,35940628:0,0,0 -g1,19779:6946919,35940628 -g1,19779:7263065,35940628 -g1,19779:7579211,35940628 -g1,19779:7895357,35940628 -g1,19779:8211503,35940628 -g1,19779:8527649,35940628 -g1,19779:8843795,35940628 -g1,19779:11689106,35940628 -g1,19779:12321398,35940628 -g1,19779:15482855,35940628 -g1,19779:17063584,35940628 -k1,19779:17063584,35940628:0 -h1,19779:20857333,35940628:0,0,0 -k1,19779:32583029,35940628:11725696 -g1,19779:32583029,35940628 -) -(1,19780:6630773,36606806:25952256,404226,101187 -h1,19780:6630773,36606806:0,0,0 -g1,19780:6946919,36606806 -g1,19780:7263065,36606806 -g1,19780:7579211,36606806 -g1,19780:7895357,36606806 -g1,19780:8211503,36606806 -g1,19780:8527649,36606806 -g1,19780:8843795,36606806 -g1,19780:11372961,36606806 -g1,19780:12005253,36606806 -g1,19780:13585982,36606806 -g1,19780:16115148,36606806 -g1,19780:17063585,36606806 -g1,19780:18012022,36606806 -g1,19780:19276605,36606806 -g1,19780:21489625,36606806 -g1,19780:22438062,36606806 -k1,19780:22438062,36606806:0 -h1,19780:24967228,36606806:0,0,0 -k1,19780:32583029,36606806:7615801 -g1,19780:32583029,36606806 -) -(1,19781:6630773,37272984:25952256,404226,107478 -h1,19781:6630773,37272984:0,0,0 -g1,19781:6946919,37272984 -g1,19781:7263065,37272984 -g1,19781:7579211,37272984 -g1,19781:7895357,37272984 -g1,19781:8211503,37272984 -g1,19781:8527649,37272984 -g1,19781:8843795,37272984 -g1,19781:10108378,37272984 -g1,19781:10740670,37272984 -k1,19781:10740670,37272984:0 -h1,19781:12005253,37272984:0,0,0 -k1,19781:32583029,37272984:20577776 -g1,19781:32583029,37272984 -) -(1,19782:6630773,37939162:25952256,404226,82312 -h1,19782:6630773,37939162:0,0,0 -g1,19782:6946919,37939162 -g1,19782:7263065,37939162 -g1,19782:7579211,37939162 -g1,19782:7895357,37939162 -g1,19782:8211503,37939162 -g1,19782:8527649,37939162 -g1,19782:8843795,37939162 -g1,19782:9476087,37939162 -g1,19782:10108379,37939162 -g1,19782:12005253,37939162 -k1,19782:12005253,37939162:0 -h1,19782:13585982,37939162:0,0,0 -k1,19782:32583030,37939162:18997048 -g1,19782:32583030,37939162 -) -(1,19783:6630773,38605340:25952256,410518,101187 -h1,19783:6630773,38605340:0,0,0 -g1,19783:6946919,38605340 -g1,19783:7263065,38605340 -g1,19783:7579211,38605340 -g1,19783:7895357,38605340 -g1,19783:8211503,38605340 -g1,19783:8527649,38605340 -g1,19783:8843795,38605340 -g1,19783:9476087,38605340 -g1,19783:10108379,38605340 -g1,19783:14850565,38605340 -k1,19783:14850565,38605340:0 -h1,19783:16747439,38605340:0,0,0 -k1,19783:32583029,38605340:15835590 -g1,19783:32583029,38605340 -) -(1,19784:6630773,39271518:25952256,404226,76021 -h1,19784:6630773,39271518:0,0,0 -g1,19784:6946919,39271518 -g1,19784:7263065,39271518 -g1,19784:7579211,39271518 -g1,19784:7895357,39271518 -g1,19784:8211503,39271518 -g1,19784:8527649,39271518 -g1,19784:8843795,39271518 -g1,19784:10740669,39271518 -g1,19784:11372961,39271518 -h1,19784:16115147,39271518:0,0,0 -k1,19784:32583029,39271518:16467882 -g1,19784:32583029,39271518 -) -] -) -g1,19786:32583029,39347539 -g1,19786:6630773,39347539 -g1,19786:6630773,39347539 -g1,19786:32583029,39347539 -g1,19786:32583029,39347539 -) -h1,19786:6630773,39544147:0,0,0 -] -(1,19796:32583029,45706769:0,0,0 -g1,19796:32583029,45706769 -) -) -] -(1,19796:6630773,47279633:25952256,0,0 -h1,19796:6630773,47279633:25952256,0,0 -) -] -(1,19796:4262630,4025873:0,0,0 -[1,19796:-473656,4025873:0,0,0 -(1,19796:-473656,-710413:0,0,0 -(1,19796:-473656,-710413:0,0,0 -g1,19796:-473656,-710413 -) -g1,19796:-473656,-710413 -) -] -) -] -!20939 -}354 -Input:3165:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3166:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3167:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3168:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3169:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3170:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3171:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3172:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3173:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3174:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3175:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3176:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3177:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3178:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3179:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3180:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3181:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3182:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3183:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3184:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3185:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3186:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3187:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3188:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3189:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3190:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3191:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3192:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3193:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3194:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3195:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3196:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3197:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3198:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3199:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3200:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3201:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3202:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3203:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3204:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!3772 -{355 -[1,19834:4262630,47279633:28320399,43253760,0 -(1,19834:4262630,4025873:0,0,0 -[1,19834:-473656,4025873:0,0,0 -(1,19834:-473656,-710413:0,0,0 -(1,19834:-473656,-644877:0,0,0 -k1,19834:-473656,-644877:-65536 -) -(1,19834:-473656,4736287:0,0,0 -k1,19834:-473656,4736287:5209943 +[1,19684:3078558,4812305:0,0,0 +(1,19684:3078558,49800853:0,16384,2228224 +g1,19684:29030814,49800853 +g1,19684:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,19684:36151628,51504789:16384,1179648,0 ) -g1,19834:-473656,-710413 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] ) -[1,19834:6630773,47279633:25952256,43253760,0 -[1,19834:6630773,4812305:25952256,786432,0 -(1,19834:6630773,4812305:25952256,513147,126483 -(1,19834:6630773,4812305:25952256,513147,126483 -g1,19834:3078558,4812305 -[1,19834:3078558,4812305:0,0,0 -(1,19834:3078558,2439708:0,1703936,0 -k1,19834:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,19834:2537886,2439708:1179648,16384,0 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,19684:37855564,49800853:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,19834:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,19684:3078556,49800853:-34777008 ) ] +g1,19684:6630773,4812305 +g1,19684:6630773,4812305 +g1,19684:9104757,4812305 +g1,19684:10491498,4812305 +g1,19684:12580130,4812305 +k1,19684:31387652,4812305:18807522 +) +) +] +[1,19684:6630773,45706769:25952256,40108032,0 +(1,19684:6630773,45706769:25952256,40108032,0 +(1,19684:6630773,45706769:0,0,0 +g1,19684:6630773,45706769 ) +[1,19684:6630773,45706769:25952256,40108032,0 +v1,19643:6630773,6254097:0,393216,0 +(1,19643:6630773,14574453:25952256,8713572,0 +g1,19643:6630773,14574453 +g1,19643:6237557,14574453 +r1,19684:6368629,14574453:131072,8713572,0 +g1,19643:6567858,14574453 +g1,19643:6764466,14574453 +[1,19643:6764466,14574453:25818563,8713572,0 +(1,19638:6764466,14574453:25818563,8713572,0 +k1,19638:8055473,14574453:1291007 +h1,19637:8055473,14574453:0,0,0 +(1,19637:8055473,14574453:23236549,8713572,0 +(1,19637:8055473,14574453:23236249,8713593,0 +(1,19637:8055473,14574453:23236249,8713593,0 +(1,19637:8055473,14574453:0,8713593,0 +(1,19637:8055473,14574453:0,14208860,0 +(1,19637:8055473,14574453:37890292,14208860,0 +) +k1,19637:8055473,14574453:-37890292 +) +) +g1,19637:31291722,14574453 +) +) +) +g1,19638:31292022,14574453 +k1,19638:32583029,14574453:1291007 +) +] +g1,19643:32583029,14574453 +) +h1,19643:6630773,14574453:0,0,0 +(1,19646:6630773,15439533:25952256,513147,134348 +h1,19645:6630773,15439533:983040,0,0 +k1,19645:8404996,15439533:163348 +k1,19645:11148497,15439533:163349 +k1,19645:14359269,15439533:163349 +k1,19645:17063448,15439533:163348 +$1,19645:17063448,15439533 +$1,19645:17631645,15439533 +k1,19645:17794993,15439533:163348 +k1,19645:19708153,15439533:163349 +k1,19645:22724940,15439533:163349 +k1,19645:25109959,15439533:163348 +k1,19645:25924735,15439533:163348 +k1,19645:28075791,15439533:163349 +k1,19645:30173763,15439533:163349 +k1,19645:31812326,15439533:163348 +k1,19646:32583029,15439533:0 +) +(1,19646:6630773,16304613:25952256,513147,134348 +(1,19645:6630773,16304613:0,452978,115847 +r1,19684:10506157,16304613:3875384,568825,115847 +k1,19645:6630773,16304613:-3875384 +) +(1,19645:6630773,16304613:3875384,452978,115847 +k1,19645:6630773,16304613:3277 +h1,19645:10502880,16304613:0,411205,112570 +) +k1,19645:10748559,16304613:242402 +k1,19645:14271693,16304613:242402 +k1,19645:15200257,16304613:242402 +k1,19645:17186572,16304613:242402 +k1,19645:18996595,16304613:242402 +k1,19645:21819148,16304613:242401 +k1,19645:24890083,16304613:242402 +k1,19645:26121423,16304613:242402 +k1,19645:27435994,16304613:242402 +k1,19645:28294434,16304613:242402 +k1,19645:31202841,16304613:242402 +k1,19645:32583029,16304613:0 +) +(1,19646:6630773,17169693:25952256,513147,138281 +k1,19645:8882631,17169693:203858 +k1,19645:11960244,17169693:203859 +k1,19645:14082996,17169693:203858 +$1,19645:14082996,17169693 +$1,19645:14585657,17169693 +k1,19645:14789516,17169693:203859 +k1,19645:15524871,17169693:203858 +k1,19645:16538099,17169693:203858 +k1,19645:17761043,17169693:203859 +k1,19645:18915173,17169693:203858 +k1,19645:20310477,17169693:203859 +$1,19645:20310477,17169693 +$1,19645:20862290,17169693 +k1,19645:21066148,17169693:203858 +k1,19645:22079376,17169693:203858 +k1,19645:23302320,17169693:203859 +k1,19645:24713351,17169693:203858 +k1,19645:26410776,17169693:203859 +k1,19645:27300796,17169693:203858 +(1,19645:27300796,17169693:0,459977,115847 +r1,19684:32583029,17169693:5282233,575824,115847 +k1,19645:27300796,17169693:-5282233 +) +(1,19645:27300796,17169693:5282233,459977,115847 +g1,19645:30117768,17169693 +g1,19645:30821192,17169693 +g1,19645:31524616,17169693 +g1,19645:32228040,17169693 +h1,19645:32579752,17169693:0,411205,112570 +) +k1,19645:32583029,17169693:0 +) +(1,19646:6630773,18034773:25952256,513147,134348 +k1,19645:9989329,18034773:285573 +k1,19645:10630762,18034773:285573 +k1,19645:13000380,18034773:285573 +k1,19645:16566685,18034773:285573 +k1,19645:18246209,18034773:285573 +k1,19645:19450597,18034773:285573 +k1,19645:21723877,18034773:285573 +k1,19645:23944073,18034773:285573 +k1,19645:27429114,18034773:285573 +k1,19645:28342522,18034773:285573 +k1,19645:29647180,18034773:285573 +k1,19645:31316873,18034773:285573 +k1,19645:32583029,18034773:0 +) +(1,19646:6630773,18899853:25952256,513147,126483 +k1,19645:7571531,18899853:281466 +k1,19645:10844716,18899853:281466 +k1,19645:11994535,18899853:281467 +k1,19645:13368486,18899853:281466 +(1,19645:13368486,18899853:0,452978,115847 +r1,19684:19002429,18899853:5633943,568825,115847 +k1,19645:13368486,18899853:-5633943 +) +(1,19645:13368486,18899853:5633943,452978,115847 +k1,19645:13368486,18899853:3277 +h1,19645:18999152,18899853:0,411205,112570 +) +k1,19645:19457565,18899853:281466 +k1,19645:20366866,18899853:281466 +k1,19645:21667418,18899853:281467 +k1,19645:23255017,18899853:281466 +k1,19645:26197900,18899853:281466 +k1,19645:27095404,18899853:281466 +k1,19645:28580112,18899853:281467 +k1,19645:30301404,18899853:281466 +k1,19645:31601955,18899853:281466 +k1,19646:32583029,18899853:0 +) +(1,19646:6630773,19764933:25952256,513147,126483 +k1,19645:8448620,19764933:320349 +(1,19645:8448620,19764933:0,459977,115847 +r1,19684:13730853,19764933:5282233,575824,115847 +k1,19645:8448620,19764933:-5282233 +) +(1,19645:8448620,19764933:5282233,459977,115847 +g1,19645:11265592,19764933 +g1,19645:11969016,19764933 +g1,19645:12672440,19764933 +g1,19645:13375864,19764933 +h1,19645:13727576,19764933:0,411205,112570 +) +k1,19645:14051202,19764933:320349 +k1,19645:14903048,19764933:320349 +k1,19645:16910294,19764933:320349 +k1,19645:18920161,19764933:320349 +k1,19645:19856547,19764933:320348 +k1,19645:21195981,19764933:320349 +k1,19645:23757661,19764933:320349 +k1,19645:26739427,19764933:320349 +k1,19645:27928128,19764933:320349 +k1,19645:29685682,19764933:320349 +k1,19646:32583029,19764933:0 +) +(1,19646:6630773,20630013:25952256,513147,134348 +(1,19645:6630773,20630013:0,459977,115847 +r1,19684:11913006,20630013:5282233,575824,115847 +k1,19645:6630773,20630013:-5282233 +) +(1,19645:6630773,20630013:5282233,459977,115847 +g1,19645:9447745,20630013 +g1,19645:10151169,20630013 +g1,19645:10854593,20630013 +g1,19645:11558017,20630013 +h1,19645:11909729,20630013:0,411205,112570 +) +k1,19645:12129764,20630013:216758 +k1,19645:12997949,20630013:216757 +k1,19645:14843277,20630013:216758 +k1,19645:16079119,20630013:216757 +k1,19645:18763308,20630013:216758 +k1,19645:19639358,20630013:216758 +k1,19645:20875200,20630013:216757 +k1,19645:22804414,20630013:216758 +k1,19645:25182548,20630013:216757 +k1,19645:26228336,20630013:216758 +k1,19645:28160826,20630013:216757 +k1,19645:29396669,20630013:216758 +k1,19645:32583029,20630013:0 +) +(1,19646:6630773,21495093:25952256,505283,134348 +g1,19645:8533938,21495093 +g1,19645:9601519,21495093 +g1,19645:11078045,21495093 +g1,19645:12743970,21495093 +g1,19645:14755925,21495093 +g1,19645:18602233,21495093 +g1,19645:19610832,21495093 +g1,19645:20829146,21495093 +g1,19645:22681848,21495093 +k1,19646:32583029,21495093:8119912 +g1,19646:32583029,21495093 +) +v1,19648:6630773,22179948:0,393216,0 +(1,19656:6630773,25253445:25952256,3466713,196608 +g1,19656:6630773,25253445 +g1,19656:6630773,25253445 +g1,19656:6434165,25253445 +(1,19656:6434165,25253445:0,3466713,196608 +r1,19684:32779637,25253445:26345472,3663321,196608 +k1,19656:6434165,25253445:-26345472 +) +(1,19656:6434165,25253445:26345472,3466713,196608 +[1,19656:6630773,25253445:25952256,3270105,0 +(1,19650:6630773,22407779:25952256,424439,112852 +(1,19649:6630773,22407779:0,0,0 +g1,19649:6630773,22407779 +g1,19649:6630773,22407779 +g1,19649:6303093,22407779 +(1,19649:6303093,22407779:0,0,0 +) +g1,19649:6630773,22407779 +) +k1,19650:6630773,22407779:0 +g1,19650:10946175,22407779 +g1,19650:16921346,22407779 +g1,19650:21900655,22407779 +h1,19650:22232609,22407779:0,0,0 +k1,19650:32583029,22407779:10350420 +g1,19650:32583029,22407779 +) +(1,19651:6630773,23092634:25952256,424439,106246 +h1,19651:6630773,23092634:0,0,0 +g1,19651:6962727,23092634 +g1,19651:7294681,23092634 +g1,19651:7626635,23092634 +g1,19651:7958589,23092634 +g1,19651:13601806,23092634 +h1,19651:13933760,23092634:0,0,0 +k1,19651:32583028,23092634:18649268 +g1,19651:32583028,23092634 +) +(1,19652:6630773,23777489:25952256,431045,106246 +h1,19652:6630773,23777489:0,0,0 +g1,19652:6962727,23777489 +g1,19652:7294681,23777489 +g1,19652:7626635,23777489 +g1,19652:7958589,23777489 +g1,19652:15593530,23777489 +g1,19652:16257438,23777489 +g1,19652:16921346,23777489 +g1,19652:17585254,23777489 +g1,19652:18581116,23777489 +g1,19652:20572840,23777489 +g1,19652:21236748,23777489 +g1,19652:23560426,23777489 +g1,19652:25220196,23777489 +g1,19652:25884104,23777489 +g1,19652:29203643,23777489 +h1,19652:29535597,23777489:0,0,0 +k1,19652:32583029,23777489:3047432 +g1,19652:32583029,23777489 +) +(1,19653:6630773,24462344:25952256,424439,112852 +h1,19653:6630773,24462344:0,0,0 +g1,19653:6962727,24462344 +g1,19653:7294681,24462344 +g1,19653:7626635,24462344 +g1,19653:7958589,24462344 +g1,19653:12273990,24462344 +h1,19653:12605944,24462344:0,0,0 +k1,19653:32583028,24462344:19977084 +g1,19653:32583028,24462344 +) +(1,19654:6630773,25147199:25952256,431045,106246 +h1,19654:6630773,25147199:0,0,0 +g1,19654:6962727,25147199 +g1,19654:7294681,25147199 +g1,19654:7626635,25147199 +g1,19654:7958589,25147199 +g1,19654:14929622,25147199 +g1,19654:17253300,25147199 +g1,19654:17917208,25147199 +h1,19654:20240886,25147199:0,0,0 +k1,19654:32583029,25147199:12342143 +g1,19654:32583029,25147199 +) +] +) +g1,19656:32583029,25253445 +g1,19656:6630773,25253445 +g1,19656:6630773,25253445 +g1,19656:32583029,25253445 +g1,19656:32583029,25253445 +) +h1,19656:6630773,25450053:0,0,0 +(1,19659:6630773,34274257:25952256,8758668,0 +k1,19659:7928465,34274257:1297692 +h1,19658:7928465,34274257:0,0,0 +(1,19658:7928465,34274257:23356872,8758668,0 +(1,19658:7928465,34274257:23356506,8758690,0 +(1,19658:7928465,34274257:23356506,8758690,0 +(1,19658:7928465,34274257:0,8758690,0 +(1,19658:7928465,34274257:0,14208860,0 +(1,19658:7928465,34274257:37890292,14208860,0 +) +k1,19658:7928465,34274257:-37890292 +) +) +g1,19658:31284971,34274257 +) +) +) +g1,19659:31285337,34274257 +k1,19659:32583029,34274257:1297692 +) +(1,19666:6630773,35139337:25952256,513147,126483 +h1,19665:6630773,35139337:983040,0,0 +k1,19665:8511572,35139337:269924 +k1,19665:9800580,35139337:269923 +k1,19665:11437585,35139337:269924 +k1,19665:12366800,35139337:269923 +k1,19665:13655809,35139337:269924 +(1,19665:13655809,35139337:0,452978,115847 +r1,19684:15069210,35139337:1413401,568825,115847 +k1,19665:13655809,35139337:-1413401 +) +(1,19665:13655809,35139337:1413401,452978,115847 +k1,19665:13655809,35139337:3277 +h1,19665:15065933,35139337:0,411205,112570 +) +k1,19665:15339134,35139337:269924 +k1,19665:16998420,35139337:269923 +k1,19665:18781570,35139337:269924 +k1,19665:19999145,35139337:269924 +k1,19665:21965795,35139337:269923 +k1,19665:25401108,35139337:269924 +k1,19665:27137727,35139337:269923 +k1,19665:31069803,35139337:269924 +k1,19665:32583029,35139337:0 +) +(1,19666:6630773,36004417:25952256,505283,138281 +k1,19665:8699946,36004417:213849 +k1,19665:9565223,36004417:213849 +k1,19665:11591798,36004417:213849 +k1,19665:15122424,36004417:213849 +k1,19665:16327833,36004417:213849 +k1,19665:18708302,36004417:213849 +k1,19665:20118837,36004417:213848 +k1,19665:23174327,36004417:213849 +k1,19665:25973571,36004417:213849 +k1,19665:26838848,36004417:213849 +$1,19665:26838848,36004417 +$1,19665:27341509,36004417 +k1,19665:27555358,36004417:213849 +$1,19665:28746803,36004417 +$1,19665:29298616,36004417 +k1,19665:29512465,36004417:213849 +k1,19665:30717874,36004417:213849 +k1,19666:32583029,36004417:0 +) +(1,19666:6630773,36869497:25952256,505283,134348 +k1,19665:8421418,36869497:204674 +k1,19665:9698261,36869497:204674 +k1,19665:11369630,36869497:204673 +k1,19665:12565864,36869497:204674 +k1,19665:15895295,36869497:204674 +k1,19665:17493920,36869497:204674 +k1,19665:19305536,36869497:204673 +k1,19665:20701655,36869497:204674 +k1,19665:23216473,36869497:204674 +k1,19665:24072575,36869497:204674 +k1,19665:27343022,36869497:204673 +k1,19665:30547279,36869497:204674 +k1,19665:31379788,36869497:204674 +k1,19665:32583029,36869497:0 +) +(1,19666:6630773,37734577:25952256,505283,126483 +k1,19665:8176644,37734577:178790 +k1,19665:9374519,37734577:178790 +k1,19665:11795952,37734577:178791 +k1,19665:14959252,37734577:178790 +k1,19665:15669539,37734577:178790 +k1,19665:16499757,37734577:178790 +k1,19665:17744818,37734577:178790 +k1,19665:20322226,37734577:178790 +k1,19665:21785523,37734577:178791 +k1,19665:23619097,37734577:178790 +k1,19665:24329384,37734577:178790 +k1,19665:24864034,37734577:178790 +k1,19665:27554164,37734577:178790 +k1,19665:29017461,37734577:178791 +k1,19665:30300533,37734577:178790 +k1,19665:31227089,37734577:178790 +k1,19666:32583029,37734577:0 +) +(1,19666:6630773,38599657:25952256,505283,134348 +k1,19665:9159154,38599657:172362 +k1,19665:13512058,38599657:172362 +k1,19665:14875865,38599657:172362 +k1,19665:17375410,38599657:172362 +k1,19665:18640256,38599657:172361 +k1,19665:19168478,38599657:172362 +k1,19665:21795163,38599657:172362 +k1,19665:23113750,38599657:172362 +k1,19665:25171583,38599657:172362 +k1,19665:26596338,38599657:172362 +k1,19665:28234058,38599657:172335 +k1,19665:31896867,38599657:172362 +k1,19665:32583029,38599657:0 +) +(1,19666:6630773,39464737:25952256,505283,7863 +g1,19665:7934284,39464737 +g1,19665:8881279,39464737 +g1,19665:10520334,39464737 +k1,19666:32583028,39464737:20020592 +g1,19666:32583028,39464737 +) +v1,19668:6630773,40149592:0,393216,0 +(1,19675:6630773,42538234:25952256,2781858,196608 +g1,19675:6630773,42538234 +g1,19675:6630773,42538234 +g1,19675:6434165,42538234 +(1,19675:6434165,42538234:0,2781858,196608 +r1,19684:32779637,42538234:26345472,2978466,196608 +k1,19675:6434165,42538234:-26345472 +) +(1,19675:6434165,42538234:26345472,2781858,196608 +[1,19675:6630773,42538234:25952256,2585250,0 +(1,19670:6630773,40377423:25952256,424439,112852 +(1,19669:6630773,40377423:0,0,0 +g1,19669:6630773,40377423 +g1,19669:6630773,40377423 +g1,19669:6303093,40377423 +(1,19669:6303093,40377423:0,0,0 +) +g1,19669:6630773,40377423 +) +k1,19670:6630773,40377423:0 +g1,19670:10946175,40377423 +g1,19670:16921346,40377423 +g1,19670:21900655,40377423 +h1,19670:22232609,40377423:0,0,0 +k1,19670:32583029,40377423:10350420 +g1,19670:32583029,40377423 +) +(1,19671:6630773,41062278:25952256,424439,79822 +h1,19671:6630773,41062278:0,0,0 +g1,19671:6962727,41062278 +g1,19671:7294681,41062278 +g1,19671:7626635,41062278 +g1,19671:7958589,41062278 +g1,19671:12937898,41062278 +h1,19671:13269852,41062278:0,0,0 +k1,19671:32583028,41062278:19313176 +g1,19671:32583028,41062278 +) +(1,19672:6630773,41747133:25952256,424439,112852 +h1,19672:6630773,41747133:0,0,0 +g1,19672:6962727,41747133 +g1,19672:7294681,41747133 +g1,19672:7626635,41747133 +g1,19672:7958589,41747133 +g1,19672:12273990,41747133 +h1,19672:12605944,41747133:0,0,0 +k1,19672:32583028,41747133:19977084 +g1,19672:32583028,41747133 +) +(1,19673:6630773,42431988:25952256,431045,106246 +h1,19673:6630773,42431988:0,0,0 +g1,19673:6962727,42431988 +g1,19673:7294681,42431988 +g1,19673:7626635,42431988 +g1,19673:7958589,42431988 +g1,19673:14929622,42431988 +g1,19673:17253300,42431988 +g1,19673:17917208,42431988 +h1,19673:20240886,42431988:0,0,0 +k1,19673:32583029,42431988:12342143 +g1,19673:32583029,42431988 +) +] +) +g1,19675:32583029,42538234 +g1,19675:6630773,42538234 +g1,19675:6630773,42538234 +g1,19675:32583029,42538234 +g1,19675:32583029,42538234 +) +h1,19675:6630773,42734842:0,0,0 +] +(1,19684:32583029,45706769:0,0,0 +g1,19684:32583029,45706769 +) +) +] +(1,19684:6630773,47279633:25952256,0,0 +h1,19684:6630773,47279633:25952256,0,0 +) +] +(1,19684:4262630,4025873:0,0,0 +[1,19684:-473656,4025873:0,0,0 +(1,19684:-473656,-710413:0,0,0 +(1,19684:-473656,-710413:0,0,0 +g1,19684:-473656,-710413 +) +g1,19684:-473656,-710413 +) +] +) +] +!18219 +}332 +Input:3109:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3110:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3111:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3112:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3113:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3114:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3115:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3116:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!764 +{333 +[1,19722:4262630,47279633:28320399,43253760,0 +(1,19722:4262630,4025873:0,0,0 +[1,19722:-473656,4025873:0,0,0 +(1,19722:-473656,-710413:0,0,0 +(1,19722:-473656,-644877:0,0,0 +k1,19722:-473656,-644877:-65536 ) +(1,19722:-473656,4736287:0,0,0 +k1,19722:-473656,4736287:5209943 ) -] -[1,19834:3078558,4812305:0,0,0 -(1,19834:3078558,2439708:0,1703936,0 -g1,19834:29030814,2439708 -g1,19834:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,19834:36151628,1915420:16384,1179648,0 -) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +g1,19722:-473656,-710413 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,19834:37855564,2439708:1179648,16384,0 +[1,19722:6630773,47279633:25952256,43253760,0 +[1,19722:6630773,4812305:25952256,786432,0 +(1,19722:6630773,4812305:25952256,513147,126483 +(1,19722:6630773,4812305:25952256,513147,126483 +g1,19722:3078558,4812305 +[1,19722:3078558,4812305:0,0,0 +(1,19722:3078558,2439708:0,1703936,0 +k1,19722:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,19722:2537886,2439708:1179648,16384,0 ) +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,19722:3078558,1915420:16384,1179648,0 ) -k1,19834:3078556,2439708:-34777008 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] -[1,19834:3078558,4812305:0,0,0 -(1,19834:3078558,49800853:0,16384,2228224 -k1,19834:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,19834:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,19834:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +) +] +[1,19722:3078558,4812305:0,0,0 +(1,19722:3078558,2439708:0,1703936,0 +g1,19722:29030814,2439708 +g1,19722:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,19722:36151628,1915420:16384,1179648,0 +) +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,19722:37855564,2439708:1179648,16384,0 ) ) +k1,19722:3078556,2439708:-34777008 +) ] -[1,19834:3078558,4812305:0,0,0 -(1,19834:3078558,49800853:0,16384,2228224 -g1,19834:29030814,49800853 -g1,19834:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,19834:36151628,51504789:16384,1179648,0 +[1,19722:3078558,4812305:0,0,0 +(1,19722:3078558,49800853:0,16384,2228224 +k1,19722:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,19722:2537886,49800853:1179648,16384,0 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,19722:3078558,51504789:16384,1179648,0 ) -] +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,19834:37855564,49800853:1179648,16384,0 +] ) ) -k1,19834:3078556,49800853:-34777008 ) ] -g1,19834:6630773,4812305 -k1,19834:21350816,4812305:13524666 -g1,19834:21999622,4812305 -g1,19834:25611966,4812305 -g1,19834:28956923,4812305 -g1,19834:29772190,4812305 +[1,19722:3078558,4812305:0,0,0 +(1,19722:3078558,49800853:0,16384,2228224 +g1,19722:29030814,49800853 +g1,19722:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,19722:36151628,51504789:16384,1179648,0 ) +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] -[1,19834:6630773,45706769:25952256,40108032,0 -(1,19834:6630773,45706769:25952256,40108032,0 -(1,19834:6630773,45706769:0,0,0 -g1,19834:6630773,45706769 ) -[1,19834:6630773,45706769:25952256,40108032,0 -(1,19789:6630773,14682403:25952256,9083666,0 -k1,19789:10523651,14682403:3892878 -h1,19788:10523651,14682403:0,0,0 -(1,19788:10523651,14682403:18166500,9083666,0 -(1,19788:10523651,14682403:18167376,9083688,0 -(1,19788:10523651,14682403:18167376,9083688,0 -(1,19788:10523651,14682403:0,9083688,0 -(1,19788:10523651,14682403:0,14208860,0 -(1,19788:10523651,14682403:28417720,14208860,0 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,19722:37855564,49800853:1179648,16384,0 ) -k1,19788:10523651,14682403:-28417720 ) +k1,19722:3078556,49800853:-34777008 ) -g1,19788:28691027,14682403 -) -) -) -g1,19789:28690151,14682403 -k1,19789:32583029,14682403:3892878 -) -v1,19796:6630773,15796628:0,393216,0 -(1,19797:6630773,18046490:25952256,2643078,0 -g1,19797:6630773,18046490 -g1,19797:6303093,18046490 -r1,19834:6401397,18046490:98304,2643078,0 -g1,19797:6600626,18046490 -g1,19797:6797234,18046490 -[1,19797:6797234,18046490:25785795,2643078,0 -(1,19797:6797234,16229166:25785795,825754,196608 -(1,19796:6797234,16229166:0,825754,196608 -r1,19834:7890375,16229166:1093141,1022362,196608 -k1,19796:6797234,16229166:-1093141 -) -(1,19796:6797234,16229166:1093141,825754,196608 -) -k1,19796:8171888,16229166:281513 -k1,19796:9898106,16229166:327680 -k1,19796:11838991,16229166:281513 -k1,19796:12891207,16229166:281513 -k1,19796:15178777,16229166:281513 -k1,19796:16737587,16229166:281513 -(1,19796:16944681,16229166:0,452978,122846 -r1,19834:19764930,16229166:2820249,575824,122846 -k1,19796:16944681,16229166:-2820249 -) -(1,19796:16944681,16229166:2820249,452978,122846 -k1,19796:16944681,16229166:3277 -h1,19796:19761653,16229166:0,411205,112570 -) -k1,19796:20253536,16229166:281512 -k1,19796:21726494,16229166:281513 -k1,19796:23205350,16229166:281513 -k1,19796:24138291,16229166:281513 -k1,19796:24877901,16229166:281513 -k1,19796:25845576,16229166:281513 -k1,19796:27394555,16229166:281513 -k1,19796:28446771,16229166:281513 -k1,19796:29143044,16229166:281430 -k1,19796:32583029,16229166:0 -) -(1,19797:6797234,17070654:25785795,615216,138281 -k1,19796:10255275,17070654:195003 -$1,19796:10255275,17070654 -k1,19796:10989148,17070654:182060 -k1,19796:11739405,17070654:182060 -(1,19796:12163424,17168968:311689,339935,8258 -) -k1,19796:12611491,17070654:136378 -k1,19796:13316067,17070654:136379 -(1,19796:13740086,17168968:311689,334430,0 -) -k1,19796:14690815,17070654:136379 -k1,19796:15395390,17070654:136378 -(1,19796:15819409,17168968:311689,339935,0 -) -(1,19796:16633759,16795373:311689,339935,0 -) -$1,19796:16945448,17070654 -k1,19796:17314121,17070654:195003 -k1,19796:19268110,17070654:195003 -k1,19796:20938327,17070654:195002 -k1,19796:21489190,17070654:195003 -k1,19796:23070934,17070654:195002 -k1,19796:23878699,17070654:195003 -k1,19796:25092787,17070654:195003 -k1,19796:28279508,17070654:195002 -k1,19796:29422162,17070654:195003 -k1,19796:30636249,17070654:195002 -k1,19796:31923737,17070654:195003 -k1,19796:32583029,17070654:0 -) -(1,19797:6797234,17912142:25785795,505283,134348 -k1,19796:10750986,17912142:183466 -k1,19796:11550490,17912142:183466 -k1,19796:12753042,17912142:183467 -(1,19796:12753042,17912142:0,452978,115847 -r1,19834:15573291,17912142:2820249,568825,115847 -k1,19796:12753042,17912142:-2820249 -) -(1,19796:12753042,17912142:2820249,452978,115847 -k1,19796:12753042,17912142:3277 -h1,19796:15570014,17912142:0,411205,112570 -) -k1,19796:15756757,17912142:183466 -k1,19796:17722802,17912142:183466 -k1,19796:18522306,17912142:183466 -k1,19796:19120600,17912142:183451 -k1,19796:20065594,17912142:183466 -k1,19796:22278055,17912142:183466 -(1,19796:22278055,17912142:0,452978,115847 -r1,19834:27208575,17912142:4930520,568825,115847 -k1,19796:22278055,17912142:-4930520 -) -(1,19796:22278055,17912142:4930520,452978,115847 -k1,19796:22278055,17912142:3277 -h1,19796:27205298,17912142:0,411205,112570 -) -k1,19796:27392041,17912142:183466 -k1,19796:28188269,17912142:183466 -k1,19796:29390820,17912142:183466 -k1,19796:29989114,17912142:183451 -k1,19797:32583029,17912142:0 -k1,19797:32583029,17912142:0 -) -] -g1,19797:32583029,18046490 -) -h1,19797:6630773,18046490:0,0,0 -(1,19812:6630773,20410487:25952256,555811,12975 -(1,19812:6630773,20410487:2450326,534184,12975 -g1,19812:6630773,20410487 -g1,19812:9081099,20410487 -) -g1,19812:13486495,20410487 -k1,19812:32583028,20410487:16910776 -g1,19812:32583028,20410487 -) -(1,19815:6630773,21645191:25952256,513147,134348 -k1,19814:7843517,21645191:259195 -k1,19814:9591035,21645191:259195 -k1,19814:10611757,21645191:259194 -k1,19814:12854727,21645191:259195 -k1,19814:14133007,21645191:259195 -k1,19814:15993902,21645191:259195 -k1,19814:19558077,21645191:259194 -k1,19814:21330498,21645191:259195 -k1,19814:24992322,21645191:259195 -k1,19814:25902945,21645191:259195 -k1,19814:27181224,21645191:259194 -k1,19814:31010820,21645191:259195 -k1,19814:32583029,21645191:0 -) -(1,19815:6630773,22486679:25952256,513147,115847 -k1,19814:10164025,22486679:333784 -(1,19814:10164025,22486679:0,414482,115847 -r1,19834:11577426,22486679:1413401,530329,115847 -k1,19814:10164025,22486679:-1413401 -) -(1,19814:10164025,22486679:1413401,414482,115847 -k1,19814:10164025,22486679:3277 -h1,19814:11574149,22486679:0,411205,112570 -) -k1,19814:12084879,22486679:333783 -(1,19814:12084879,22486679:0,452978,115847 -r1,19834:14201704,22486679:2116825,568825,115847 -k1,19814:12084879,22486679:-2116825 -) -(1,19814:12084879,22486679:2116825,452978,115847 -k1,19814:12084879,22486679:3277 -h1,19814:14198427,22486679:0,411205,112570 -) -k1,19814:14709158,22486679:333784 -(1,19814:14709158,22486679:0,452978,115847 -r1,19834:18936254,22486679:4227096,568825,115847 -k1,19814:14709158,22486679:-4227096 -) -(1,19814:14709158,22486679:4227096,452978,115847 -k1,19814:14709158,22486679:3277 -h1,19814:18932977,22486679:0,411205,112570 -) -k1,19814:19443708,22486679:333784 -(1,19814:19443708,22486679:0,452978,115847 -r1,19834:21560533,22486679:2116825,568825,115847 -k1,19814:19443708,22486679:-2116825 -) -(1,19814:19443708,22486679:2116825,452978,115847 -k1,19814:19443708,22486679:3277 -h1,19814:21557256,22486679:0,411205,112570 -) -k1,19814:22067986,22486679:333783 -(1,19814:22067986,22486679:0,452978,115847 -r1,19834:24184811,22486679:2116825,568825,115847 -k1,19814:22067986,22486679:-2116825 -) -(1,19814:22067986,22486679:2116825,452978,115847 -k1,19814:22067986,22486679:3277 -h1,19814:24181534,22486679:0,411205,112570 -) -k1,19814:24692265,22486679:333784 -(1,19814:24692265,22486679:0,452978,115847 -r1,19834:26809090,22486679:2116825,568825,115847 -k1,19814:24692265,22486679:-2116825 -) -(1,19814:24692265,22486679:2116825,452978,115847 -k1,19814:24692265,22486679:3277 -h1,19814:26805813,22486679:0,411205,112570 -) -k1,19814:27316543,22486679:333783 -(1,19814:27316543,22486679:0,452978,115847 -r1,19834:30136792,22486679:2820249,568825,115847 -k1,19814:27316543,22486679:-2820249 -) -(1,19814:27316543,22486679:2820249,452978,115847 -k1,19814:27316543,22486679:3277 -h1,19814:30133515,22486679:0,411205,112570 -) -k1,19814:30644246,22486679:333784 -(1,19814:30644246,22486679:0,414482,115847 -r1,19834:32409359,22486679:1765113,530329,115847 -k1,19814:30644246,22486679:-1765113 -) -(1,19814:30644246,22486679:1765113,414482,115847 -k1,19814:30644246,22486679:3277 -h1,19814:32406082,22486679:0,411205,112570 -) -k1,19815:32583029,22486679:0 -) -(1,19815:6630773,23328167:25952256,513147,126483 -(1,19814:6630773,23328167:0,452978,122846 -r1,19834:8395886,23328167:1765113,575824,122846 -k1,19814:6630773,23328167:-1765113 -) -(1,19814:6630773,23328167:1765113,452978,122846 -k1,19814:6630773,23328167:3277 -h1,19814:8392609,23328167:0,411205,112570 -) -k1,19814:8786997,23328167:217441 -k1,19814:10195883,23328167:217441 -(1,19814:10195883,23328167:0,452978,115847 -r1,19834:13016132,23328167:2820249,568825,115847 -k1,19814:10195883,23328167:-2820249 -) -(1,19814:10195883,23328167:2820249,452978,115847 -k1,19814:10195883,23328167:3277 -h1,19814:13012855,23328167:0,411205,112570 -) -k1,19814:13407243,23328167:217441 -k1,19814:14821371,23328167:217441 -k1,19814:16719154,23328167:217440 -k1,19814:17603751,23328167:217441 -(1,19814:17603751,23328167:0,414482,115847 -r1,19834:19017152,23328167:1413401,530329,115847 -k1,19814:17603751,23328167:-1413401 -) -(1,19814:17603751,23328167:1413401,414482,115847 -k1,19814:17603751,23328167:3277 -h1,19814:19013875,23328167:0,411205,112570 -) -k1,19814:19234593,23328167:217441 -k1,19814:19983531,23328167:217441 -k1,19814:21714198,23328167:217441 -k1,19814:22879290,23328167:217441 -k1,19814:24349124,23328167:217441 -k1,19814:26410748,23328167:217441 -k1,19814:27311073,23328167:217440 -k1,19814:28547599,23328167:217441 -k1,19814:29866045,23328167:217441 -k1,19814:31350952,23328167:217441 -k1,19814:32583029,23328167:0 -) -(1,19815:6630773,24169655:25952256,513147,134348 -k1,19814:9567503,24169655:182252 -k1,19814:12409206,24169655:182252 -k1,19814:13788145,24169655:182252 -k1,19814:17373026,24169655:182252 -k1,19814:18206705,24169655:182251 -(1,19814:18206705,24169655:0,452978,115847 -r1,19834:20323530,24169655:2116825,568825,115847 -k1,19814:18206705,24169655:-2116825 -) -(1,19814:18206705,24169655:2116825,452978,115847 -k1,19814:18206705,24169655:3277 -h1,19814:20320253,24169655:0,411205,112570 -) -k1,19814:20505782,24169655:182252 -k1,19814:21879479,24169655:182252 -(1,19814:21879479,24169655:0,452978,115847 -r1,19834:26106575,24169655:4227096,568825,115847 -k1,19814:21879479,24169655:-4227096 -) -(1,19814:21879479,24169655:4227096,452978,115847 -k1,19814:21879479,24169655:3277 -h1,19814:26103298,24169655:0,411205,112570 -) -k1,19814:26288827,24169655:182252 -k1,19814:29116112,24169655:182252 -k1,19814:30317449,24169655:182252 -k1,19814:32583029,24169655:0 -) -(1,19815:6630773,25011143:25952256,513147,134348 -k1,19814:9692732,25011143:175098 -k1,19814:10527122,25011143:175098 -k1,19814:12587691,25011143:175098 -k1,19814:13954234,25011143:175098 -k1,19814:16048226,25011143:175098 -k1,19814:17737861,25011143:175098 -k1,19814:19104404,25011143:175098 -k1,19814:20564008,25011143:175098 -k1,19814:22411585,25011143:175098 -k1,19814:24793280,25011143:175098 -k1,19814:26607433,25011143:175098 -k1,19814:27433959,25011143:175098 -(1,19814:27433959,25011143:0,414482,115847 -r1,19834:28847360,25011143:1413401,530329,115847 -k1,19814:27433959,25011143:-1413401 -) -(1,19814:27433959,25011143:1413401,414482,115847 -k1,19814:27433959,25011143:3277 -h1,19814:28844083,25011143:0,411205,112570 -) -k1,19814:29022458,25011143:175098 -k1,19814:32583029,25011143:0 -) -(1,19815:6630773,25852631:25952256,513147,134348 -k1,19814:7858742,25852631:208884 -k1,19814:9755833,25852631:208884 -k1,19814:10724936,25852631:208885 -k1,19814:13199400,25852631:208884 -k1,19814:14427369,25852631:208884 -k1,19814:15820489,25852631:208884 -k1,19814:17873556,25852631:208884 -k1,19814:19074001,25852631:208885 -k1,19814:22435822,25852631:208884 -k1,19814:24212327,25852631:208884 -k1,19814:25440296,25852631:208884 -k1,19814:27329523,25852631:208884 -k1,19814:28205564,25852631:208885 -(1,19814:28205564,25852631:0,452978,115847 -r1,19834:30322389,25852631:2116825,568825,115847 -k1,19814:28205564,25852631:-2116825 -) -(1,19814:28205564,25852631:2116825,452978,115847 -k1,19814:28205564,25852631:3277 -h1,19814:30319112,25852631:0,411205,112570 -) -k1,19814:30531273,25852631:208884 -k1,19814:31812326,25852631:208884 -k1,19814:32583029,25852631:0 -) -(1,19815:6630773,26694119:25952256,513147,134348 -k1,19814:9923855,26694119:220754 -k1,19814:10796036,26694119:220753 -(1,19814:10796036,26694119:0,452978,115847 -r1,19834:12912861,26694119:2116825,568825,115847 -k1,19814:10796036,26694119:-2116825 -) -(1,19814:10796036,26694119:2116825,452978,115847 -k1,19814:10796036,26694119:3277 -h1,19814:12909584,26694119:0,411205,112570 -) -k1,19814:13133615,26694119:220754 -k1,19814:14013660,26694119:220753 -k1,19814:15253499,26694119:220754 -k1,19814:17127726,26694119:220754 -k1,19814:19361745,26694119:220753 -k1,19814:20268661,26694119:220754 -(1,19814:20268661,26694119:0,452978,115847 -r1,19834:22385486,26694119:2116825,568825,115847 -k1,19814:20268661,26694119:-2116825 -) -(1,19814:20268661,26694119:2116825,452978,115847 -k1,19814:20268661,26694119:3277 -h1,19814:22382209,26694119:0,411205,112570 -) -k1,19814:22606240,26694119:220754 -k1,19814:23959455,26694119:220753 -k1,19814:26478557,26694119:220754 -k1,19814:28396037,26694119:220753 -k1,19814:31386342,26694119:220754 -k1,19814:32583029,26694119:0 -) -(1,19815:6630773,27535607:25952256,513147,134348 -k1,19814:8854549,27535607:213131 -k1,19814:9734837,27535607:213132 -(1,19814:9734837,27535607:0,452978,115847 -r1,19834:11851662,27535607:2116825,568825,115847 -k1,19814:9734837,27535607:-2116825 -) -(1,19814:9734837,27535607:2116825,452978,115847 -k1,19814:9734837,27535607:3277 -h1,19814:11848385,27535607:0,411205,112570 -) -k1,19814:12064794,27535607:213132 -k1,19814:15521957,27535607:213131 -k1,19814:17201785,27535607:213132 -k1,19814:18434001,27535607:213131 -k1,19814:20427745,27535607:213131 -k1,19814:21300169,27535607:213132 -k1,19814:23523945,27535607:213131 -k1,19814:24353115,27535607:213132 -k1,19814:25585332,27535607:213132 -k1,19814:27187826,27535607:213131 -k1,19814:30159367,27535607:213131 -k1,19814:31563944,27535607:213132 -k1,19814:32583029,27535607:0 -) -(1,19815:6630773,28377095:25952256,513147,134348 -k1,19814:9341050,28377095:185830 -k1,19814:10874300,28377095:185830 -k1,19814:11746292,28377095:185830 -k1,19814:15022145,28377095:185830 -k1,19814:18480188,28377095:185830 -k1,19814:20931598,28377095:185830 -k1,19814:22136513,28377095:185830 -k1,19814:26849570,28377095:185830 -(1,19814:27056664,28377095:0,452978,115847 -r1,19834:28118353,28377095:1061689,568825,115847 -k1,19814:27056664,28377095:-1061689 -) -(1,19814:27056664,28377095:1061689,452978,115847 -k1,19814:27056664,28377095:3277 -h1,19814:28115076,28377095:0,411205,112570 -) -k1,19814:28511277,28377095:185830 -k1,19814:32583029,28377095:0 -) -(1,19815:6630773,29218583:25952256,505283,126483 -k1,19814:7781367,29218583:159034 -k1,19814:10659489,29218583:159033 -k1,19814:11580051,29218583:159034 -(1,19814:11580051,29218583:0,414482,115847 -r1,19834:12290029,29218583:709978,530329,115847 -k1,19814:11580051,29218583:-709978 -) -(1,19814:11580051,29218583:709978,414482,115847 -k1,19814:11580051,29218583:3277 -h1,19814:12286752,29218583:0,411205,112570 -) -k1,19814:12449062,29218583:159033 -k1,19814:13680265,29218583:159034 -k1,19814:14297395,29218583:159033 -k1,19814:14987926,29218583:159034 -k1,19814:17776919,29218583:159033 -k1,19814:18587381,29218583:159034 -k1,19814:21073597,29218583:159033 -k1,19814:23928782,29218583:159034 -k1,19814:25784542,29218583:159033 -k1,19814:30015328,29218583:159034 -k1,19814:32583029,29218583:0 -) -(1,19815:6630773,30060071:25952256,513147,134348 -k1,19814:7874271,30060071:224413 -k1,19814:9588317,30060071:224413 -k1,19814:10472022,30060071:224413 -k1,19814:11715520,30060071:224413 -k1,19814:14464380,30060071:224413 -k1,19814:16209884,30060071:224413 -k1,19814:17630984,30060071:224413 -k1,19814:20927725,30060071:224413 -k1,19814:21803566,30060071:224413 -(1,19814:21803566,30060071:0,452978,115847 -r1,19834:23920391,30060071:2116825,568825,115847 -k1,19814:21803566,30060071:-2116825 -) -(1,19814:21803566,30060071:2116825,452978,115847 -k1,19814:21803566,30060071:3277 -h1,19814:23917114,30060071:0,411205,112570 -) -k1,19814:24144804,30060071:224413 -k1,19814:27943551,30060071:224413 -k1,19814:29187049,30060071:224413 -k1,19814:30680239,30060071:224413 -k1,19814:31563944,30060071:224413 -k1,19814:32583029,30060071:0 -) -(1,19815:6630773,30901559:25952256,505283,134348 -k1,19814:9410423,30901559:194910 -k1,19814:10288218,30901559:194910 -k1,19814:13091461,30901559:194910 -k1,19814:15251796,30901559:194910 -k1,19814:16098134,30901559:194910 -k1,19814:17312129,30901559:194910 -k1,19814:18854460,30901559:194911 -k1,19814:22069924,30901559:194910 -k1,19814:23026362,30901559:194910 -(1,19814:23026362,30901559:0,452978,115847 -r1,19834:24439763,30901559:1413401,568825,115847 -k1,19814:23026362,30901559:-1413401 -) -(1,19814:23026362,30901559:1413401,452978,115847 -k1,19814:23026362,30901559:3277 -h1,19814:24436486,30901559:0,411205,112570 -) -k1,19814:24634673,30901559:194910 -k1,19814:26527621,30901559:194910 -k1,19814:28904225,30901559:194910 -k1,19814:30118220,30901559:194910 -k1,19814:32583029,30901559:0 -) -(1,19815:6630773,31743047:25952256,513147,134348 -k1,19814:9408063,31743047:252843 -k1,19814:11181996,31743047:252842 -k1,19814:12631526,31743047:252843 -k1,19814:14564711,31743047:252842 -k1,19814:17022841,31743047:252843 -k1,19814:17927111,31743047:252842 -(1,19814:17927111,31743047:0,452978,115847 -r1,19834:20747360,31743047:2820249,568825,115847 -k1,19814:17927111,31743047:-2820249 -) -(1,19814:17927111,31743047:2820249,452978,115847 -k1,19814:17927111,31743047:3277 -h1,19814:20744083,31743047:0,411205,112570 -) -k1,19814:21000203,31743047:252843 -k1,19814:21784543,31743047:252843 -k1,19814:23550611,31743047:252842 -k1,19814:24489616,31743047:252843 -k1,19814:25098318,31743047:252842 -k1,19814:29288564,31743047:252843 -k1,19814:30489057,31743047:252842 -(1,19814:30489057,31743047:0,414482,115847 -r1,19834:31199035,31743047:709978,530329,115847 -k1,19814:30489057,31743047:-709978 -) -(1,19814:30489057,31743047:709978,414482,115847 -k1,19814:30489057,31743047:3277 -h1,19814:31195758,31743047:0,411205,112570 -) -k1,19814:31451878,31743047:252843 -k1,19815:32583029,31743047:0 -) -(1,19815:6630773,32584535:25952256,513147,115847 -k1,19814:8009649,32584535:195951 -k1,19814:14534411,32584535:195950 -k1,19814:16707583,32584535:195951 -k1,19814:17851184,32584535:195950 -(1,19814:17851184,32584535:0,452978,115847 -r1,19834:19616297,32584535:1765113,568825,115847 -k1,19814:17851184,32584535:-1765113 -) -(1,19814:17851184,32584535:1765113,452978,115847 -k1,19814:17851184,32584535:3277 -h1,19814:19613020,32584535:0,411205,112570 -) -k1,19814:19812248,32584535:195951 -k1,19814:21199643,32584535:195950 -(1,19814:21199643,32584535:0,459977,115847 -r1,19834:22613044,32584535:1413401,575824,115847 -k1,19814:21199643,32584535:-1413401 -) -(1,19814:21199643,32584535:1413401,459977,115847 -k1,19814:21199643,32584535:3277 -h1,19814:22609767,32584535:0,411205,112570 -) -k1,19814:22808995,32584535:195951 -k1,19814:26353179,32584535:195950 -k1,19814:27745817,32584535:195951 -k1,19814:32583029,32584535:0 -) -(1,19815:6630773,33426023:25952256,513147,134348 -k1,19814:8812640,33426023:222341 -k1,19814:11240267,33426023:222340 -k1,19814:12148770,33426023:222341 -k1,19814:13141814,33426023:222341 -k1,19814:16436483,33426023:222341 -k1,19814:17310251,33426023:222340 -(1,19814:17310251,33426023:0,414482,115847 -r1,19834:19075364,33426023:1765113,530329,115847 -k1,19814:17310251,33426023:-1765113 -) -(1,19814:17310251,33426023:1765113,414482,115847 -k1,19814:17310251,33426023:3277 -h1,19814:19072087,33426023:0,411205,112570 -) -k1,19814:19297705,33426023:222341 -k1,19814:23094380,33426023:222341 -k1,19814:24335805,33426023:222340 -k1,19814:29395358,33426023:222341 -k1,19814:32583029,33426023:0 -) -(1,19815:6630773,34267511:25952256,513147,134348 -k1,19814:11656335,34267511:188350 -k1,19814:13954289,34267511:188350 -k1,19814:15161725,34267511:188351 -k1,19814:18620977,34267511:188350 -k1,19814:19881496,34267511:188350 -k1,19814:22184693,34267511:188350 -k1,19814:23564488,34267511:188350 -k1,19814:24937075,34267511:188351 -k1,19814:26969608,34267511:188350 -k1,19814:29385527,34267511:188350 -k1,19814:32583029,34267511:0 -) -(1,19815:6630773,35108999:25952256,513147,134348 -k1,19814:7429729,35108999:182918 -k1,19814:8631731,35108999:182917 -k1,19814:11249967,35108999:182918 -k1,19814:12822247,35108999:182917 -k1,19814:14796919,35108999:182918 -k1,19814:16176524,35108999:182918 -k1,19814:19431769,35108999:182917 -k1,19814:20266115,35108999:182918 -(1,19814:20266115,35108999:0,452978,122846 -r1,19834:22031228,35108999:1765113,575824,122846 -k1,19814:20266115,35108999:-1765113 -) -(1,19814:20266115,35108999:1765113,452978,122846 -k1,19814:20266115,35108999:3277 -h1,19814:22027951,35108999:0,411205,112570 -) -k1,19814:22214145,35108999:182917 -k1,19814:25971397,35108999:182918 -k1,19814:27173400,35108999:182918 -k1,19814:28742403,35108999:182917 -k1,19814:29584613,35108999:182918 -k1,19814:30868535,35108999:182917 -k1,19814:31734338,35108999:182918 -k1,19815:32583029,35108999:0 -) -(1,19815:6630773,35950487:25952256,513147,134348 -k1,19814:8832228,35950487:152144 -k1,19814:10003457,35950487:152144 -k1,19814:12421181,35950487:152144 -k1,19814:13848001,35950487:152145 -k1,19814:17444717,35950487:152144 -k1,19814:18406231,35950487:152144 -k1,19814:19577460,35950487:152144 -k1,19814:21301813,35950487:152144 -k1,19814:22069995,35950487:152144 -k1,19814:24986449,35950487:152145 -k1,19814:26204864,35950487:152144 -k1,19814:27123124,35950487:152144 -k1,19814:28971995,35950487:152144 -k1,19814:32583029,35950487:0 -) -(1,19815:6630773,36791975:25952256,505283,7863 -g1,19814:7821562,36791975 -k1,19815:32583030,36791975:21803828 -g1,19815:32583030,36791975 -) -(1,19819:6630773,37633463:25952256,513147,134348 -h1,19818:6630773,37633463:983040,0,0 -g1,19818:8766591,37633463 -g1,19818:11698016,37633463 -g1,19818:13180440,37633463 -g1,19818:14740196,37633463 -k1,19819:32583029,37633463:16279799 -g1,19819:32583029,37633463 -) -v1,19821:6630773,38572378:0,393216,0 -(1,19829:6630773,41533312:25952256,3354150,196608 -g1,19829:6630773,41533312 -g1,19829:6630773,41533312 -g1,19829:6434165,41533312 -(1,19829:6434165,41533312:0,3354150,196608 -r1,19834:32779637,41533312:26345472,3550758,196608 -k1,19829:6434165,41533312:-26345472 -) -(1,19829:6434165,41533312:26345472,3354150,196608 -[1,19829:6630773,41533312:25952256,3157542,0 -(1,19823:6630773,38786288:25952256,410518,6290 -(1,19822:6630773,38786288:0,0,0 -g1,19822:6630773,38786288 -g1,19822:6630773,38786288 -g1,19822:6303093,38786288 -(1,19822:6303093,38786288:0,0,0 -) -g1,19822:6630773,38786288 -) -g1,19823:10108376,38786288 -k1,19823:10108376,38786288:0 -h1,19823:10740668,38786288:0,0,0 -k1,19823:32583028,38786288:21842360 -g1,19823:32583028,38786288 -) -(1,19824:6630773,39452466:25952256,410518,101187 -h1,19824:6630773,39452466:0,0,0 -g1,19824:6946919,39452466 -g1,19824:7263065,39452466 -g1,19824:11372960,39452466 -g1,19824:12005252,39452466 -g1,19824:15799001,39452466 -g1,19824:17379730,39452466 -g1,19824:18012022,39452466 -g1,19824:19276605,39452466 -g1,19824:20225042,39452466 -g1,19824:20857334,39452466 -k1,19824:20857334,39452466:0 -h1,19824:21805772,39452466:0,0,0 -k1,19824:32583029,39452466:10777257 -g1,19824:32583029,39452466 -) -(1,19825:6630773,40118644:25952256,404226,82312 -h1,19825:6630773,40118644:0,0,0 -g1,19825:6946919,40118644 -g1,19825:7263065,40118644 -g1,19825:7579211,40118644 -g1,19825:7895357,40118644 -g1,19825:8211503,40118644 -g1,19825:8527649,40118644 -g1,19825:8843795,40118644 -g1,19825:9159941,40118644 -g1,19825:9476087,40118644 -g1,19825:9792233,40118644 -g1,19825:10108379,40118644 -g1,19825:10424525,40118644 -g1,19825:10740671,40118644 -g1,19825:11056817,40118644 -g1,19825:11372963,40118644 -g1,19825:11689109,40118644 -g1,19825:12005255,40118644 -g1,19825:12321401,40118644 -g1,19825:12637547,40118644 -g1,19825:15799004,40118644 -g1,19825:17379733,40118644 -g1,19825:18012025,40118644 -g1,19825:19276608,40118644 -g1,19825:20225045,40118644 -g1,19825:20857337,40118644 -k1,19825:20857337,40118644:0 -h1,19825:22438065,40118644:0,0,0 -k1,19825:32583029,40118644:10144964 -g1,19825:32583029,40118644 -) -(1,19826:6630773,40784822:25952256,410518,107478 -h1,19826:6630773,40784822:0,0,0 -g1,19826:6946919,40784822 -g1,19826:7263065,40784822 -g1,19826:7579211,40784822 -g1,19826:7895357,40784822 -g1,19826:8211503,40784822 -g1,19826:8527649,40784822 -g1,19826:8843795,40784822 -g1,19826:9159941,40784822 -g1,19826:9476087,40784822 -g1,19826:9792233,40784822 -g1,19826:10108379,40784822 -g1,19826:10424525,40784822 -g1,19826:10740671,40784822 -g1,19826:12637545,40784822 -g1,19826:13269837,40784822 -g1,19826:18960461,40784822 -g1,19826:20541190,40784822 -g1,19826:23386502,40784822 -k1,19826:23386502,40784822:0 -h1,19826:25283376,40784822:0,0,0 -k1,19826:32583029,40784822:7299653 -g1,19826:32583029,40784822 -) -(1,19827:6630773,41451000:25952256,404226,82312 -h1,19827:6630773,41451000:0,0,0 -g1,19827:6946919,41451000 -g1,19827:7263065,41451000 -g1,19827:7579211,41451000 -g1,19827:7895357,41451000 -g1,19827:8211503,41451000 -g1,19827:8527649,41451000 -g1,19827:8843795,41451000 -g1,19827:9159941,41451000 -g1,19827:9476087,41451000 -g1,19827:9792233,41451000 -g1,19827:10108379,41451000 -g1,19827:10424525,41451000 -g1,19827:10740671,41451000 -g1,19827:11372963,41451000 -g1,19827:12005255,41451000 -g1,19827:15166712,41451000 -g1,19827:16747441,41451000 -g1,19827:17379733,41451000 -g1,19827:18644316,41451000 -g1,19827:19592753,41451000 -g1,19827:20225045,41451000 -h1,19827:21173482,41451000:0,0,0 -k1,19827:32583029,41451000:11409547 -g1,19827:32583029,41451000 -) -] -) -g1,19829:32583029,41533312 -g1,19829:6630773,41533312 -g1,19829:6630773,41533312 -g1,19829:32583029,41533312 -g1,19829:32583029,41533312 -) -h1,19829:6630773,41729920:0,0,0 -(1,19831:6630773,43630577:25952256,505283,7863 -(1,19831:6630773,43630577:0,0,0 -g1,19831:6630773,43630577 -) -k1,19831:32583028,43630577:23911464 -g1,19831:32583028,43630577 -) -(1,19834:6630773,44865281:25952256,513147,134348 -k1,19833:8814835,44865281:209462 -k1,19833:10015857,44865281:209462 -k1,19833:12798262,44865281:209462 -k1,19833:13659152,44865281:209462 -k1,19833:14634730,44865281:209462 -k1,19833:16603834,44865281:209462 -k1,19833:17472589,44865281:209463 -k1,19833:19678933,44865281:209462 -k1,19833:21862995,44865281:209462 -k1,19833:23064017,44865281:209462 -k1,19833:24208022,44865281:209462 -k1,19833:26976010,44865281:209462 -k1,19833:30466204,44865281:209462 -(1,19833:30466204,44865281:0,452978,115847 -r1,19834:32583029,44865281:2116825,568825,115847 -k1,19833:30466204,44865281:-2116825 -) -(1,19833:30466204,44865281:2116825,452978,115847 -k1,19833:30466204,44865281:3277 -h1,19833:32579752,44865281:0,411205,112570 -) -k1,19833:32583029,44865281:0 -) -(1,19834:6630773,45706769:25952256,513147,126483 -k1,19833:7522008,45706769:231943 -k1,19833:8773035,45706769:231942 -k1,19833:11767321,45706769:231943 -k1,19833:13571473,45706769:231943 -k1,19833:17002883,45706769:231942 -k1,19833:18792617,45706769:231943 -k1,19833:20128842,45706769:231943 -k1,19833:21646600,45706769:231942 -k1,19833:22626309,45706769:231943 -k1,19833:23792795,45706769:231943 -k1,19833:25418688,45706769:231942 -k1,19833:29557232,45706769:231943 -k1,19834:32583029,45706769:0 -) -] -(1,19834:32583029,45706769:0,0,0 -g1,19834:32583029,45706769 -) -) -] -(1,19834:6630773,47279633:25952256,0,0 -h1,19834:6630773,47279633:25952256,0,0 -) -] -(1,19834:4262630,4025873:0,0,0 -[1,19834:-473656,4025873:0,0,0 -(1,19834:-473656,-710413:0,0,0 -(1,19834:-473656,-710413:0,0,0 -g1,19834:-473656,-710413 -) -g1,19834:-473656,-710413 -) -] -) -] -!29278 -}355 -Input:3205:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3206:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3207:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3208:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3209:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3210:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3211:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3212:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3213:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3214:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3215:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3216:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3217:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3218:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1328 -{356 -[1,19886:4262630,47279633:28320399,43253760,0 -(1,19886:4262630,4025873:0,0,0 -[1,19886:-473656,4025873:0,0,0 -(1,19886:-473656,-710413:0,0,0 -(1,19886:-473656,-644877:0,0,0 -k1,19886:-473656,-644877:-65536 +] +g1,19722:6630773,4812305 +k1,19722:21350816,4812305:13524666 +g1,19722:21999622,4812305 +g1,19722:25611966,4812305 +g1,19722:28956923,4812305 +g1,19722:29772190,4812305 +) +) +] +[1,19722:6630773,45706769:25952256,40108032,0 +(1,19722:6630773,45706769:25952256,40108032,0 +(1,19722:6630773,45706769:0,0,0 +g1,19722:6630773,45706769 +) +[1,19722:6630773,45706769:25952256,40108032,0 +(1,19678:6630773,14357405:25952256,8758668,0 +k1,19678:7928465,14357405:1297692 +h1,19677:7928465,14357405:0,0,0 +(1,19677:7928465,14357405:23356872,8758668,0 +(1,19677:7928465,14357405:23356506,8758690,0 +(1,19677:7928465,14357405:23356506,8758690,0 +(1,19677:7928465,14357405:0,8758690,0 +(1,19677:7928465,14357405:0,14208860,0 +(1,19677:7928465,14357405:37890292,14208860,0 +) +k1,19677:7928465,14357405:-37890292 +) +) +g1,19677:31284971,14357405 +) +) +) +g1,19678:31285337,14357405 +k1,19678:32583029,14357405:1297692 +) +(1,19685:6630773,15222485:25952256,505283,126483 +h1,19684:6630773,15222485:983040,0,0 +k1,19684:8394867,15222485:293466 +k1,19684:10910100,15222485:293562 +k1,19684:13880151,15222485:293561 +k1,19684:14705209,15222485:293561 +k1,19684:16696808,15222485:293561 +k1,19684:17858721,15222485:293561 +k1,19684:19682548,15222485:293561 +k1,19684:20627537,15222485:293561 +k1,19684:24488878,15222485:293561 +k1,19684:25398478,15222485:293562 +k1,19684:26711124,15222485:293561 +k1,19684:28658158,15222485:293561 +k1,19684:30229016,15222485:293561 +k1,19684:32080368,15222485:293561 +$1,19684:32080368,15222485 +$1,19684:32583029,15222485 +k1,19685:32583029,15222485:0 +) +(1,19685:6630773,16087565:25952256,505283,138281 +k1,19684:8160647,16087565:338429 +$1,19684:8160647,16087565 +$1,19684:8712460,16087565 +k1,19684:9050888,16087565:338428 +k1,19684:11573632,16087565:338429 +k1,19684:12399508,16087565:338288 +k1,19684:14862614,16087565:338429 +k1,19684:17862459,16087565:338428 +k1,19684:18732385,16087565:338429 +k1,19684:21258405,16087565:338428 +k1,19684:21952694,16087565:338429 +k1,19684:23979329,16087565:338428 +k1,19684:25711709,16087565:338429 +k1,19684:29788311,16087565:338428 +k1,19684:31821501,16087565:338429 +k1,19684:32583029,16087565:0 +) +(1,19685:6630773,16952645:25952256,505283,138281 +k1,19684:7937168,16952645:287310 +k1,19684:10292793,16952645:287309 +k1,19684:12324671,16952645:287310 +k1,19684:13631066,16952645:287310 +$1,19684:13631066,16952645 +$1,19684:14133727,16952645 +k1,19684:14421037,16952645:287310 +k1,19684:15899791,16952645:287309 +$1,19684:15899791,16952645 +$1,19684:16451604,16952645 +k1,19684:16738914,16952645:287310 +k1,19684:18424762,16952645:287310 +k1,19684:19398234,16952645:287310 +k1,19684:20553895,16952645:287309 +k1,19684:22371471,16952645:287310 +k1,19684:23310209,16952645:287310 +k1,19684:25034724,16952645:287310 +k1,19684:27018760,16952645:287309 +k1,19684:30514713,16952645:287310 +k1,19684:32583029,16952645:0 +) +(1,19685:6630773,17817725:25952256,505283,134348 +k1,19684:11806106,17817725:323047 +k1,19684:12780580,17817725:323046 +(1,19684:12780580,17817725:0,452978,122846 +r1,19722:17007676,17817725:4227096,575824,122846 +k1,19684:12780580,17817725:-4227096 +) +(1,19684:12780580,17817725:4227096,452978,122846 +k1,19684:12780580,17817725:3277 +h1,19684:17004399,17817725:0,411205,112570 +) +k1,19684:17504393,17817725:323047 +k1,19684:20362372,17817725:323046 +k1,19684:23513952,17817725:323047 +k1,19684:26597374,17817725:323046 +(1,19684:26597374,17817725:0,452978,115847 +r1,19722:32583029,17817725:5985655,568825,115847 +k1,19684:26597374,17817725:-5985655 +) +(1,19684:26597374,17817725:5985655,452978,115847 +k1,19684:26597374,17817725:3277 +h1,19684:32579752,17817725:0,411205,112570 +) +k1,19684:32583029,17817725:0 +) +(1,19685:6630773,18682805:25952256,505283,115847 +k1,19684:8062388,18682805:240170 +(1,19684:8062388,18682805:0,452978,115847 +r1,19722:14048043,18682805:5985655,568825,115847 +k1,19684:8062388,18682805:-5985655 +) +(1,19684:8062388,18682805:5985655,452978,115847 +k1,19684:8062388,18682805:3277 +h1,19684:14044766,18682805:0,411205,112570 +) +k1,19684:14461882,18682805:240169 +k1,19684:17636754,18682805:240170 +(1,19684:17636754,18682805:0,452978,115847 +r1,19722:23622409,18682805:5985655,568825,115847 +k1,19684:17636754,18682805:-5985655 +) +(1,19684:17636754,18682805:5985655,452978,115847 +k1,19684:17636754,18682805:3277 +h1,19684:23619132,18682805:0,411205,112570 +) +k1,19684:23862579,18682805:240170 +k1,19684:25525535,18682805:240169 +k1,19684:27286140,18682805:240170 +k1,19684:28717755,18682805:240170 +k1,19684:29489421,18682805:240169 +k1,19684:31931601,18682805:240170 +k1,19685:32583029,18682805:0 +) +(1,19685:6630773,19547885:25952256,505283,134348 +(1,19684:6630773,19547885:0,452978,115847 +r1,19722:12616428,19547885:5985655,568825,115847 +k1,19684:6630773,19547885:-5985655 +) +(1,19684:6630773,19547885:5985655,452978,115847 +k1,19684:6630773,19547885:3277 +h1,19684:12613151,19547885:0,411205,112570 +) +k1,19684:12867039,19547885:250611 +k1,19684:13733687,19547885:250610 +k1,19684:15314679,19547885:250611 +k1,19684:16584375,19547885:250611 +k1,19684:20043628,19547885:250610 +k1,19684:22304884,19547885:250611 +k1,19684:23547055,19547885:250611 +k1,19684:26750062,19547885:250610 +k1,19684:29535606,19547885:250611 +k1,19684:32583029,19547885:0 +) +(1,19685:6630773,20412965:25952256,513147,126483 +k1,19684:9586220,20412965:195071 +k1,19684:10953729,20412965:195070 +k1,19684:15054746,20412965:195071 +k1,19684:18885099,20412965:195071 +k1,19684:19747326,20412965:195071 +(1,19684:19747326,20412965:0,452978,115847 +r1,19722:24677846,20412965:4930520,568825,115847 +k1,19684:19747326,20412965:-4930520 +) +(1,19684:19747326,20412965:4930520,452978,115847 +k1,19684:19747326,20412965:3277 +h1,19684:24674569,20412965:0,411205,112570 +) +k1,19684:25046586,20412965:195070 +(1,19684:25046586,20412965:0,452978,115847 +r1,19722:30328817,20412965:5282231,568825,115847 +k1,19684:25046586,20412965:-5282231 +) +(1,19684:25046586,20412965:5282231,452978,115847 +k1,19684:25046586,20412965:3277 +h1,19684:30325540,20412965:0,411205,112570 +) +k1,19684:30697558,20412965:195071 +k1,19684:32583029,20412965:0 +) +(1,19685:6630773,21278045:25952256,513147,138281 +k1,19684:9085907,21278045:173826 +k1,19684:10278818,21278045:173826 +k1,19684:12106118,21278045:173827 +k1,19684:15270352,21278045:173826 +k1,19684:18139674,21278045:173826 +k1,19684:20058068,21278045:173826 +$1,19684:20058068,21278045 +$1,19684:20560729,21278045 +k1,19684:20734555,21278045:173826 +k1,19684:22099826,21278045:173826 +$1,19684:22099826,21278045 +$1,19684:22651639,21278045 +k1,19684:22999136,21278045:173827 +k1,19684:24364407,21278045:173826 +(1,19684:24364407,21278045:0,452978,115847 +r1,19722:30350062,21278045:5985655,568825,115847 +k1,19684:24364407,21278045:-5985655 +) +(1,19684:24364407,21278045:5985655,452978,115847 +k1,19684:24364407,21278045:3277 +h1,19684:30346785,21278045:0,411205,112570 +) +k1,19684:30697558,21278045:173826 +k1,19684:32583029,21278045:0 +) +(1,19685:6630773,22143125:25952256,513147,138281 +g1,19684:9208304,22143125 +g1,19684:10564243,22143125 +g1,19684:13458968,22143125 +g1,19684:14605848,22143125 +$1,19684:14605848,22143125 +$1,19684:15108509,22143125 +g1,19684:15307738,22143125 +g1,19684:16698412,22143125 +g1,19684:18054351,22143125 +g1,19684:19201231,22143125 +$1,19684:19201231,22143125 +$1,19684:19753044,22143125 +k1,19685:32583029,22143125:12656315 +g1,19685:32583029,22143125 +) +v1,19687:6630773,22827980:0,393216,0 +(1,19694:6630773,25216622:25952256,2781858,196608 +g1,19694:6630773,25216622 +g1,19694:6630773,25216622 +g1,19694:6434165,25216622 +(1,19694:6434165,25216622:0,2781858,196608 +r1,19722:32779637,25216622:26345472,2978466,196608 +k1,19694:6434165,25216622:-26345472 +) +(1,19694:6434165,25216622:26345472,2781858,196608 +[1,19694:6630773,25216622:25952256,2585250,0 +(1,19689:6630773,23055811:25952256,424439,112852 +(1,19688:6630773,23055811:0,0,0 +g1,19688:6630773,23055811 +g1,19688:6630773,23055811 +g1,19688:6303093,23055811 +(1,19688:6303093,23055811:0,0,0 +) +g1,19688:6630773,23055811 +) +k1,19689:6630773,23055811:0 +g1,19689:10946175,23055811 +g1,19689:16921346,23055811 +g1,19689:21900655,23055811 +h1,19689:22232609,23055811:0,0,0 +k1,19689:32583029,23055811:10350420 +g1,19689:32583029,23055811 +) +(1,19690:6630773,23740666:25952256,424439,112852 +h1,19690:6630773,23740666:0,0,0 +g1,19690:6962727,23740666 +g1,19690:7294681,23740666 +g1,19690:7626635,23740666 +g1,19690:7958589,23740666 +g1,19690:12273990,23740666 +h1,19690:12605944,23740666:0,0,0 +k1,19690:32583028,23740666:19977084 +g1,19690:32583028,23740666 +) +(1,19691:6630773,24425521:25952256,424439,79822 +h1,19691:6630773,24425521:0,0,0 +g1,19691:6962727,24425521 +g1,19691:7294681,24425521 +g1,19691:7626635,24425521 +g1,19691:7958589,24425521 +g1,19691:14597668,24425521 +g1,19691:15261576,24425521 +g1,19691:17585254,24425521 +h1,19691:17917208,24425521:0,0,0 +k1,19691:32583029,24425521:14665821 +g1,19691:32583029,24425521 +) +(1,19692:6630773,25110376:25952256,431045,106246 +h1,19692:6630773,25110376:0,0,0 +g1,19692:6962727,25110376 +g1,19692:7294681,25110376 +g1,19692:7626635,25110376 +g1,19692:7958589,25110376 +g1,19692:14929622,25110376 +g1,19692:17253300,25110376 +g1,19692:17917208,25110376 +h1,19692:20240886,25110376:0,0,0 +k1,19692:32583029,25110376:12342143 +g1,19692:32583029,25110376 +) +] +) +g1,19694:32583029,25216622 +g1,19694:6630773,25216622 +g1,19694:6630773,25216622 +g1,19694:32583029,25216622 +g1,19694:32583029,25216622 +) +h1,19694:6630773,25413230:0,0,0 +(1,19697:6630773,34237434:25952256,8758668,0 +k1,19697:7928465,34237434:1297692 +h1,19696:7928465,34237434:0,0,0 +(1,19696:7928465,34237434:23356872,8758668,0 +(1,19696:7928465,34237434:23356506,8758690,0 +(1,19696:7928465,34237434:23356506,8758690,0 +(1,19696:7928465,34237434:0,8758690,0 +(1,19696:7928465,34237434:0,14208860,0 +(1,19696:7928465,34237434:37890292,14208860,0 +) +k1,19696:7928465,34237434:-37890292 +) +) +g1,19696:31284971,34237434 +) +) +) +g1,19697:31285337,34237434 +k1,19697:32583029,34237434:1297692 +) +v1,19704:6630773,34922289:0,393216,0 +(1,19712:6630773,37995786:25952256,3466713,196608 +g1,19712:6630773,37995786 +g1,19712:6630773,37995786 +g1,19712:6434165,37995786 +(1,19712:6434165,37995786:0,3466713,196608 +r1,19722:32779637,37995786:26345472,3663321,196608 +k1,19712:6434165,37995786:-26345472 +) +(1,19712:6434165,37995786:26345472,3466713,196608 +[1,19712:6630773,37995786:25952256,3270105,0 +(1,19706:6630773,35150120:25952256,424439,112852 +(1,19705:6630773,35150120:0,0,0 +g1,19705:6630773,35150120 +g1,19705:6630773,35150120 +g1,19705:6303093,35150120 +(1,19705:6303093,35150120:0,0,0 +) +g1,19705:6630773,35150120 +) +k1,19706:6630773,35150120:0 +g1,19706:10946175,35150120 +g1,19706:16921346,35150120 +g1,19706:21900655,35150120 +h1,19706:22232609,35150120:0,0,0 +k1,19706:32583029,35150120:10350420 +g1,19706:32583029,35150120 +) +(1,19707:6630773,35834975:25952256,424439,112852 +h1,19707:6630773,35834975:0,0,0 +g1,19707:6962727,35834975 +g1,19707:7294681,35834975 +g1,19707:7626635,35834975 +g1,19707:7958589,35834975 +g1,19707:12273990,35834975 +h1,19707:12605944,35834975:0,0,0 +k1,19707:32583028,35834975:19977084 +g1,19707:32583028,35834975 +) +(1,19708:6630773,36519830:25952256,424439,112852 +h1,19708:6630773,36519830:0,0,0 +g1,19708:6962727,36519830 +g1,19708:7294681,36519830 +g1,19708:7626635,36519830 +g1,19708:7958589,36519830 +g1,19708:14265714,36519830 +g1,19708:14929622,36519830 +g1,19708:17253300,36519830 +g1,19708:19245024,36519830 +g1,19708:19908932,36519830 +k1,19708:19908932,36519830:0 +h1,19708:22232610,36519830:0,0,0 +k1,19708:32583029,36519830:10350419 +g1,19708:32583029,36519830 +) +(1,19709:6630773,37204685:25952256,424439,86428 +h1,19709:6630773,37204685:0,0,0 +g1,19709:6962727,37204685 +g1,19709:7294681,37204685 +g1,19709:7626635,37204685 +g1,19709:7958589,37204685 +g1,19709:8290543,37204685 +g1,19709:8622497,37204685 +g1,19709:8954451,37204685 +g1,19709:9286405,37204685 +g1,19709:9618359,37204685 +g1,19709:9950313,37204685 +g1,19709:10282267,37204685 +g1,19709:10614221,37204685 +g1,19709:10946175,37204685 +g1,19709:11278129,37204685 +g1,19709:11610083,37204685 +g1,19709:11942037,37204685 +g1,19709:12273991,37204685 +g1,19709:12605945,37204685 +g1,19709:14597669,37204685 +g1,19709:15261577,37204685 +g1,19709:17585255,37204685 +g1,19709:20904794,37204685 +g1,19709:21568702,37204685 +g1,19709:23228472,37204685 +h1,19709:23560426,37204685:0,0,0 +k1,19709:32583029,37204685:9022603 +g1,19709:32583029,37204685 +) +(1,19710:6630773,37889540:25952256,431045,106246 +h1,19710:6630773,37889540:0,0,0 +g1,19710:6962727,37889540 +g1,19710:7294681,37889540 +g1,19710:7626635,37889540 +g1,19710:7958589,37889540 +g1,19710:14929622,37889540 +g1,19710:17253300,37889540 +g1,19710:17917208,37889540 +h1,19710:20240886,37889540:0,0,0 +k1,19710:32583029,37889540:12342143 +g1,19710:32583029,37889540 +) +] +) +g1,19712:32583029,37995786 +g1,19712:6630773,37995786 +g1,19712:6630773,37995786 +g1,19712:32583029,37995786 +g1,19712:32583029,37995786 +) +h1,19712:6630773,38192394:0,0,0 +] +(1,19722:32583029,45706769:0,0,0 +g1,19722:32583029,45706769 +) +) +] +(1,19722:6630773,47279633:25952256,0,0 +h1,19722:6630773,47279633:25952256,0,0 +) +] +(1,19722:4262630,4025873:0,0,0 +[1,19722:-473656,4025873:0,0,0 +(1,19722:-473656,-710413:0,0,0 +(1,19722:-473656,-710413:0,0,0 +g1,19722:-473656,-710413 +) +g1,19722:-473656,-710413 +) +] +) +] +!15847 +}333 +Input:3117:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3118:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3119:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3120:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3121:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3122:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3123:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3124:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!764 +{334 +[1,19755:4262630,47279633:28320399,43253760,0 +(1,19755:4262630,4025873:0,0,0 +[1,19755:-473656,4025873:0,0,0 +(1,19755:-473656,-710413:0,0,0 +(1,19755:-473656,-644877:0,0,0 +k1,19755:-473656,-644877:-65536 ) -(1,19886:-473656,4736287:0,0,0 -k1,19886:-473656,4736287:5209943 +(1,19755:-473656,4736287:0,0,0 +k1,19755:-473656,4736287:5209943 ) -g1,19886:-473656,-710413 +g1,19755:-473656,-710413 ) ] ) -[1,19886:6630773,47279633:25952256,43253760,0 -[1,19886:6630773,4812305:25952256,786432,0 -(1,19886:6630773,4812305:25952256,505283,11795 -(1,19886:6630773,4812305:25952256,505283,11795 -g1,19886:3078558,4812305 -[1,19886:3078558,4812305:0,0,0 -(1,19886:3078558,2439708:0,1703936,0 -k1,19886:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,19886:2537886,2439708:1179648,16384,0 +[1,19755:6630773,47279633:25952256,43253760,0 +[1,19755:6630773,4812305:25952256,786432,0 +(1,19755:6630773,4812305:25952256,485622,11795 +(1,19755:6630773,4812305:25952256,485622,11795 +g1,19755:3078558,4812305 +[1,19755:3078558,4812305:0,0,0 +(1,19755:3078558,2439708:0,1703936,0 +k1,19755:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,19755:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,19886:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,19755:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,19886:3078558,4812305:0,0,0 -(1,19886:3078558,2439708:0,1703936,0 -g1,19886:29030814,2439708 -g1,19886:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,19886:36151628,1915420:16384,1179648,0 +[1,19755:3078558,4812305:0,0,0 +(1,19755:3078558,2439708:0,1703936,0 +g1,19755:29030814,2439708 +g1,19755:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,19755:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,19886:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,19755:37855564,2439708:1179648,16384,0 ) ) -k1,19886:3078556,2439708:-34777008 +k1,19755:3078556,2439708:-34777008 ) ] -[1,19886:3078558,4812305:0,0,0 -(1,19886:3078558,49800853:0,16384,2228224 -k1,19886:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,19886:2537886,49800853:1179648,16384,0 +[1,19755:3078558,4812305:0,0,0 +(1,19755:3078558,49800853:0,16384,2228224 +k1,19755:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,19755:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,19886:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,19755:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,19886:3078558,4812305:0,0,0 -(1,19886:3078558,49800853:0,16384,2228224 -g1,19886:29030814,49800853 -g1,19886:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,19886:36151628,51504789:16384,1179648,0 +[1,19755:3078558,4812305:0,0,0 +(1,19755:3078558,49800853:0,16384,2228224 +g1,19755:29030814,49800853 +g1,19755:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,19755:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,19886:37855564,49800853:1179648,16384,0 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,19755:37855564,49800853:1179648,16384,0 ) ) -k1,19886:3078556,49800853:-34777008 +k1,19755:3078556,49800853:-34777008 ) ] -g1,19886:6630773,4812305 -g1,19886:6630773,4812305 -g1,19886:8724648,4812305 -k1,19886:31387652,4812305:22663004 +g1,19755:6630773,4812305 +g1,19755:6630773,4812305 +g1,19755:8769212,4812305 +k1,19755:31387652,4812305:22618440 ) ) ] -[1,19886:6630773,45706769:25952256,40108032,0 -(1,19886:6630773,45706769:25952256,40108032,0 -(1,19886:6630773,45706769:0,0,0 -g1,19886:6630773,45706769 +[1,19755:6630773,45706769:25952256,40108032,0 +(1,19755:6630773,45706769:25952256,40108032,0 +(1,19755:6630773,45706769:0,0,0 +g1,19755:6630773,45706769 ) -[1,19886:6630773,45706769:25952256,40108032,0 -(1,19834:6630773,6254097:25952256,513147,134348 -(1,19833:6630773,6254097:0,452978,115847 -r1,19886:8747598,6254097:2116825,568825,115847 -k1,19833:6630773,6254097:-2116825 +[1,19755:6630773,45706769:25952256,40108032,0 +(1,19715:6630773,14357405:25952256,8758668,0 +k1,19715:7928465,14357405:1297692 +h1,19714:7928465,14357405:0,0,0 +(1,19714:7928465,14357405:23356872,8758668,0 +(1,19714:7928465,14357405:23356506,8758690,0 +(1,19714:7928465,14357405:23356506,8758690,0 +(1,19714:7928465,14357405:0,8758690,0 +(1,19714:7928465,14357405:0,14208860,0 +(1,19714:7928465,14357405:37890292,14208860,0 ) -(1,19833:6630773,6254097:2116825,452978,115847 -k1,19833:6630773,6254097:3277 -h1,19833:8744321,6254097:0,411205,112570 +k1,19714:7928465,14357405:-37890292 ) -k1,19833:8986831,6254097:239233 -k1,19833:10417510,6254097:239234 -(1,19833:10417510,6254097:0,452978,115847 -r1,19886:12534335,6254097:2116825,568825,115847 -k1,19833:10417510,6254097:-2116825 -) -(1,19833:10417510,6254097:2116825,452978,115847 -k1,19833:10417510,6254097:3277 -h1,19833:12531058,6254097:0,411205,112570 -) -k1,19833:12773568,6254097:239233 -k1,19833:13628840,6254097:239234 -k1,19833:14887158,6254097:239233 -k1,19833:16493472,6254097:239233 -k1,19833:17391998,6254097:239234 -k1,19833:18650316,6254097:239233 -(1,19833:18650316,6254097:0,414482,115847 -r1,19886:19008582,6254097:358266,530329,115847 -k1,19833:18650316,6254097:-358266 -) -(1,19833:18650316,6254097:358266,414482,115847 -k1,19833:18650316,6254097:3277 -h1,19833:19005305,6254097:0,411205,112570 -) -k1,19833:19247816,6254097:239234 -k1,19833:20678494,6254097:239233 -(1,19833:20678494,6254097:0,414482,115847 -r1,19886:21036760,6254097:358266,530329,115847 -k1,19833:20678494,6254097:-358266 -) -(1,19833:20678494,6254097:358266,414482,115847 -k1,19833:20678494,6254097:3277 -h1,19833:21033483,6254097:0,411205,112570 -) -k1,19833:21275993,6254097:239233 -k1,19833:24730423,6254097:239234 -k1,19833:26161101,6254097:239233 -k1,19833:28050532,6254097:239234 -k1,19833:31189078,6254097:239233 -k1,19833:32583029,6254097:0 -) -(1,19834:6630773,7095585:25952256,513147,134348 -k1,19833:9512448,7095585:186179 -(1,19833:9512448,7095585:0,452978,115847 -r1,19886:11629273,7095585:2116825,568825,115847 -k1,19833:9512448,7095585:-2116825 -) -(1,19833:9512448,7095585:2116825,452978,115847 -k1,19833:9512448,7095585:3277 -h1,19833:11625996,7095585:0,411205,112570 -) -k1,19833:11815453,7095585:186180 -k1,19833:13887103,7095585:186179 -k1,19833:15219508,7095585:186180 -(1,19833:15219508,7095585:0,452978,115847 -r1,19886:17336333,7095585:2116825,568825,115847 -k1,19833:15219508,7095585:-2116825 -) -(1,19833:15219508,7095585:2116825,452978,115847 -k1,19833:15219508,7095585:3277 -h1,19833:17333056,7095585:0,411205,112570 -) -k1,19833:17696182,7095585:186179 -k1,19833:19565327,7095585:186180 -k1,19833:23154135,7095585:186179 -k1,19833:25499071,7095585:186180 -k1,19833:28802142,7095585:186179 -k1,19833:29639750,7095585:186180 -k1,19833:30845014,7095585:186179 -k1,19833:32583029,7095585:0 -) -(1,19834:6630773,7937073:25952256,513147,134348 -k1,19833:7470591,7937073:180526 -k1,19833:8670201,7937073:180525 -k1,19833:12065923,7937073:180526 -k1,19833:13443135,7937073:180525 -(1,19833:13443135,7937073:0,452978,115847 -r1,19886:15559960,7937073:2116825,568825,115847 -k1,19833:13443135,7937073:-2116825 -) -(1,19833:13443135,7937073:2116825,452978,115847 -k1,19833:13443135,7937073:3277 -h1,19833:15556683,7937073:0,411205,112570 -) -k1,19833:15740486,7937073:180526 -k1,19833:18993339,7937073:180525 -k1,19833:19833157,7937073:180526 -k1,19833:21916192,7937073:180525 -k1,19833:24475020,7937073:180526 -k1,19833:27137393,7937073:180525 -k1,19833:29542211,7937073:180526 -k1,19833:30405621,7937073:180525 -k1,19833:30942007,7937073:180526 -k1,19834:32583029,7937073:0 -) -(1,19834:6630773,8778561:25952256,513147,134348 -k1,19833:8188642,8778561:290403 -k1,19833:11909855,8778561:290403 -k1,19833:13839314,8778561:290404 -k1,19833:15697338,8778561:290403 -(1,19833:15697338,8778561:0,452978,115847 -r1,19886:17110739,8778561:1413401,568825,115847 -k1,19833:15697338,8778561:-1413401 -) -(1,19833:15697338,8778561:1413401,452978,115847 -k1,19833:15697338,8778561:3277 -h1,19833:17107462,8778561:0,411205,112570 -) -k1,19833:17574812,8778561:290403 -k1,19833:18493050,8778561:290403 -k1,19833:21588394,8778561:290403 -k1,19833:22897883,8778561:290404 -k1,19833:27094887,8778561:290403 -k1,19833:30411087,8778561:290403 -k1,19833:31516758,8778561:290403 -k1,19833:32583029,8778561:0 -) -(1,19834:6630773,9620049:25952256,513147,134348 -g1,19833:8878002,9620049 -g1,19833:12103028,9620049 -g1,19833:12988419,9620049 -g1,19833:14696287,9620049 -k1,19834:32583029,9620049:14310442 -g1,19834:32583029,9620049 -) -(1,19836:6630773,10461537:25952256,505283,126483 -h1,19835:6630773,10461537:983040,0,0 -k1,19835:8424111,10461537:182463 -k1,19835:9625659,10461537:182463 -k1,19835:11192242,10461537:182463 -k1,19835:14036122,10461537:182463 -k1,19835:15086937,10461537:182463 -k1,19835:16203943,10461537:182463 -k1,19835:18466520,10461537:182464 -k1,19835:20637345,10461537:182463 -k1,19835:22705279,10461537:182463 -k1,19835:24020204,10461537:182463 -k1,19835:26636674,10461537:182463 -k1,19835:28511277,10461537:182463 -k1,19835:32583029,10461537:0 -) -(1,19836:6630773,11303025:25952256,513147,134348 -k1,19835:8459937,11303025:261543 -k1,19835:9740565,11303025:261543 -k1,19835:11279406,11303025:261544 -k1,19835:12732394,11303025:261543 -k1,19835:14561558,11303025:261543 -k1,19835:15954908,11303025:261543 -k1,19835:20280338,11303025:261543 -k1,19835:21201173,11303025:261543 -k1,19835:24970859,11303025:261544 -k1,19835:25915287,11303025:261543 -k1,19835:28111453,11303025:261543 -k1,19835:29032288,11303025:261543 -k1,19835:32583029,11303025:0 -) -(1,19836:6630773,12144513:25952256,513147,126483 -k1,19835:8393127,12144513:168518 -k1,19835:10960263,12144513:168518 -k1,19835:12147866,12144513:168518 -k1,19835:15224216,12144513:168518 -k1,19835:19464486,12144513:168518 -k1,19835:20624564,12144513:168518 -k1,19835:23953883,12144513:168518 -k1,19835:24773829,12144513:168518 -(1,19835:24773829,12144513:0,414482,115847 -r1,19886:25483807,12144513:709978,530329,115847 -k1,19835:24773829,12144513:-709978 -) -(1,19835:24773829,12144513:709978,414482,115847 -k1,19835:24773829,12144513:3277 -h1,19835:25480530,12144513:0,411205,112570 -) -k1,19835:25652325,12144513:168518 -k1,19835:27831488,12144513:168518 -k1,19835:30042763,12144513:168518 -k1,19835:31591469,12144513:168518 -k1,19835:32583029,12144513:0 -) -(1,19836:6630773,12986001:25952256,505283,134348 -g1,19835:9035289,12986001 -g1,19835:9920680,12986001 -(1,19835:9920680,12986001:0,452978,115847 -r1,19886:11334081,12986001:1413401,568825,115847 -k1,19835:9920680,12986001:-1413401 -) -(1,19835:9920680,12986001:1413401,452978,115847 -k1,19835:9920680,12986001:3277 -h1,19835:11330804,12986001:0,411205,112570 -) -g1,19835:11533310,12986001 -g1,19835:12383967,12986001 -k1,19836:32583029,12986001:16608345 -g1,19836:32583029,12986001 -) -v1,19838:6630773,14176467:0,393216,0 -(1,19843:6630773,15157742:25952256,1374491,196608 -g1,19843:6630773,15157742 -g1,19843:6630773,15157742 -g1,19843:6434165,15157742 -(1,19843:6434165,15157742:0,1374491,196608 -r1,19886:32779637,15157742:26345472,1571099,196608 -k1,19843:6434165,15157742:-26345472 -) -(1,19843:6434165,15157742:26345472,1374491,196608 -[1,19843:6630773,15157742:25952256,1177883,0 -(1,19840:6630773,14390377:25952256,410518,107478 -(1,19839:6630773,14390377:0,0,0 -g1,19839:6630773,14390377 -g1,19839:6630773,14390377 -g1,19839:6303093,14390377 -(1,19839:6303093,14390377:0,0,0 -) -g1,19839:6630773,14390377 -) -k1,19840:6630773,14390377:0 -g1,19840:12637541,14390377 -g1,19840:14850561,14390377 -g1,19840:16115144,14390377 -g1,19840:16747436,14390377 -g1,19840:20857330,14390377 -h1,19840:21173476,14390377:0,0,0 -k1,19840:32583029,14390377:11409553 -g1,19840:32583029,14390377 -) -(1,19841:6630773,15056555:25952256,404226,101187 -h1,19841:6630773,15056555:0,0,0 -g1,19841:6946919,15056555 -g1,19841:7263065,15056555 -g1,19841:15482853,15056555 -g1,19841:16115145,15056555 -g1,19841:17695875,15056555 -h1,19841:19276603,15056555:0,0,0 -k1,19841:32583029,15056555:13306426 -g1,19841:32583029,15056555 -) -] -) -g1,19843:32583029,15157742 -g1,19843:6630773,15157742 -g1,19843:6630773,15157742 -g1,19843:32583029,15157742 -g1,19843:32583029,15157742 -) -h1,19843:6630773,15354350:0,0,0 -(1,19847:6630773,16720126:25952256,513147,134348 -h1,19846:6630773,16720126:983040,0,0 -g1,19846:8642072,16720126 -g1,19846:9775844,16720126 -g1,19846:11350674,16720126 -g1,19846:12706613,16720126 -g1,19846:14390232,16720126 -g1,19846:16845210,16720126 -g1,19846:18063524,16720126 -g1,19846:19964723,16720126 -g1,19846:21585428,16720126 -g1,19846:22653009,16720126 -g1,19846:23956520,16720126 -g1,19846:25248234,16720126 -(1,19846:25248234,16720126:0,414482,115847 -r1,19886:25958212,16720126:709978,530329,115847 -k1,19846:25248234,16720126:-709978 -) -(1,19846:25248234,16720126:709978,414482,115847 -k1,19846:25248234,16720126:3277 -h1,19846:25954935,16720126:0,411205,112570 -) -g1,19846:26157441,16720126 -g1,19846:27042832,16720126 -g1,19846:27597921,16720126 -k1,19847:32583029,16720126:1760737 -g1,19847:32583029,16720126 -) -v1,19849:6630773,17910592:0,393216,0 -(1,19853:6630773,18219397:25952256,702021,196608 -g1,19853:6630773,18219397 -g1,19853:6630773,18219397 -g1,19853:6434165,18219397 -(1,19853:6434165,18219397:0,702021,196608 -r1,19886:32779637,18219397:26345472,898629,196608 -k1,19853:6434165,18219397:-26345472 -) -(1,19853:6434165,18219397:26345472,702021,196608 -[1,19853:6630773,18219397:25952256,505413,0 -(1,19851:6630773,18118210:25952256,404226,101187 -(1,19850:6630773,18118210:0,0,0 -g1,19850:6630773,18118210 -g1,19850:6630773,18118210 -g1,19850:6303093,18118210 -(1,19850:6303093,18118210:0,0,0 -) -g1,19850:6630773,18118210 -) -g1,19851:6946919,18118210 -g1,19851:7263065,18118210 -g1,19851:15482853,18118210 -g1,19851:16115145,18118210 -g1,19851:18012020,18118210 -h1,19851:19276602,18118210:0,0,0 -k1,19851:32583029,18118210:13306427 -g1,19851:32583029,18118210 -) -] -) -g1,19853:32583029,18219397 -g1,19853:6630773,18219397 -g1,19853:6630773,18219397 -g1,19853:32583029,18219397 -g1,19853:32583029,18219397 -) -h1,19853:6630773,18416005:0,0,0 -(1,19857:6630773,19781781:25952256,513147,115847 -h1,19856:6630773,19781781:983040,0,0 -k1,19856:11875718,19781781:233407 -k1,19856:15134922,19781781:233407 -(1,19856:15134922,19781781:0,452978,115847 -r1,19886:17251747,19781781:2116825,568825,115847 -k1,19856:15134922,19781781:-2116825 -) -(1,19856:15134922,19781781:2116825,452978,115847 -k1,19856:15134922,19781781:3277 -h1,19856:17248470,19781781:0,411205,112570 -) -k1,19856:17485154,19781781:233407 -k1,19856:18910006,19781781:233407 -(1,19856:18910006,19781781:0,452978,115847 -r1,19886:21026831,19781781:2116825,568825,115847 -k1,19856:18910006,19781781:-2116825 -) -(1,19856:18910006,19781781:2116825,452978,115847 -k1,19856:18910006,19781781:3277 -h1,19856:21023554,19781781:0,411205,112570 -) -k1,19856:21260238,19781781:233407 -k1,19856:22597927,19781781:233407 -k1,19856:23579100,19781781:233407 -k1,19856:25325733,19781781:233407 -k1,19856:26210568,19781781:233407 -k1,19856:27378518,19781781:233407 -k1,19856:28631010,19781781:233407 -k1,19856:30679109,19781781:233407 -k1,19856:31563944,19781781:233407 -k1,19856:32583029,19781781:0 -) -(1,19857:6630773,20623269:25952256,513147,138281 -k1,19856:9122582,20623269:226229 -$1,19856:9122582,20623269 -$1,19856:9625243,20623269 -k1,19856:9851471,20623269:226228 -k1,19856:11269145,20623269:226229 -$1,19856:11269145,20623269 -$1,19856:11820958,20623269 -k1,19856:12047186,20623269:226228 -k1,19856:14175925,20623269:226229 -k1,19856:15018192,20623269:226229 -k1,19856:16510576,20623269:226228 -k1,19856:17690354,20623269:226229 -k1,19856:19314465,20623269:226228 -k1,19856:20633179,20623269:226229 -(1,19856:20633179,20623269:0,452978,115847 -r1,19886:22750004,20623269:2116825,568825,115847 -k1,19856:20633179,20623269:-2116825 -) -(1,19856:20633179,20623269:2116825,452978,115847 -k1,19856:20633179,20623269:3277 -h1,19856:22746727,20623269:0,411205,112570 -) -k1,19856:23149903,20623269:226229 -k1,19856:24448300,20623269:226228 -(1,19856:24448300,20623269:0,452978,115847 -r1,19886:26565125,20623269:2116825,568825,115847 -k1,19856:24448300,20623269:-2116825 -) -(1,19856:24448300,20623269:2116825,452978,115847 -k1,19856:24448300,20623269:3277 -h1,19856:26561848,20623269:0,411205,112570 -) -k1,19856:26791354,20623269:226229 -k1,19856:27549079,20623269:226228 -k1,19856:30512091,20623269:226229 -k1,19856:32583029,20623269:0 -) -(1,19857:6630773,21464757:25952256,513147,7863 -g1,19856:7777653,21464757 -g1,19856:8995967,21464757 -g1,19856:10730049,21464757 -g1,19856:11387375,21464757 -k1,19857:32583029,21464757:18912380 -g1,19857:32583029,21464757 -) -v1,19859:6630773,22655223:0,393216,0 -(1,19863:6630773,22964028:25952256,702021,196608 -g1,19863:6630773,22964028 -g1,19863:6630773,22964028 -g1,19863:6434165,22964028 -(1,19863:6434165,22964028:0,702021,196608 -r1,19886:32779637,22964028:26345472,898629,196608 -k1,19863:6434165,22964028:-26345472 -) -(1,19863:6434165,22964028:26345472,702021,196608 -[1,19863:6630773,22964028:25952256,505413,0 -(1,19861:6630773,22862841:25952256,404226,101187 -(1,19860:6630773,22862841:0,0,0 -g1,19860:6630773,22862841 -g1,19860:6630773,22862841 -g1,19860:6303093,22862841 -(1,19860:6303093,22862841:0,0,0 -) -g1,19860:6630773,22862841 -) -g1,19861:6946919,22862841 -g1,19861:7263065,22862841 -g1,19861:10108377,22862841 -h1,19861:11056814,22862841:0,0,0 -k1,19861:32583030,22862841:21526216 -g1,19861:32583030,22862841 -) -] -) -g1,19863:32583029,22964028 -g1,19863:6630773,22964028 -g1,19863:6630773,22964028 -g1,19863:32583029,22964028 -g1,19863:32583029,22964028 -) -h1,19863:6630773,23160636:0,0,0 -(1,19868:6630773,24526412:25952256,505283,134348 -h1,19866:6630773,24526412:983040,0,0 -k1,19866:8538690,24526412:297042 -k1,19866:11342484,24526412:297042 -k1,19866:13821220,24526412:297042 -k1,19866:15598064,24526412:297041 -k1,19866:17709798,24526412:297042 -k1,19866:20187223,24526412:297042 -k1,19866:21232031,24526412:297042 -k1,19866:24200320,24526412:297042 -k1,19866:25964058,24526412:297042 -k1,19866:28531266,24526412:297041 -k1,19866:29184168,24526412:297042 -k1,19866:32051532,24526412:297042 -k1,19866:32583029,24526412:0 -) -(1,19868:6630773,25367900:25952256,505283,134348 -k1,19866:8905933,25367900:230437 -k1,19866:10958925,25367900:230436 -(1,19866:10958925,25367900:0,414482,115847 -r1,19886:11668903,25367900:709978,530329,115847 -k1,19866:10958925,25367900:-709978 -) -(1,19866:10958925,25367900:709978,414482,115847 -k1,19866:10958925,25367900:3277 -h1,19866:11665626,25367900:0,411205,112570 -) -k1,19866:11899340,25367900:230437 -k1,19866:14140422,25367900:230437 -k1,19866:16108873,25367900:230436 -k1,19866:19010557,25367900:230437 -k1,19866:19927156,25367900:230437 -k1,19866:20615689,25367900:230436 -k1,19866:21377623,25367900:230437 -k1,19866:23002665,25367900:230436 -k1,19866:23884530,25367900:230437 -k1,19866:27633595,25367900:230437 -k1,19866:29944144,25367900:230436 -k1,19866:31193666,25367900:230437 -k1,19866:32583029,25367900:0 -) -(1,19868:6630773,26209388:25952256,513147,134348 -k1,19866:8549610,26209388:180822 -k1,19866:11206382,26209388:180822 -k1,19867:11857098,26209388:180823 -k1,19867:12569417,26209388:180822 -k1,19867:16015898,26209388:180822 -k1,19867:16848148,26209388:180822 -k1,19867:18121456,26209388:180823 -k1,19867:20997774,26209388:180822 -(1,19867:20997774,26209388:0,452978,115847 -r1,19886:26280005,26209388:5282231,568825,115847 -k1,19867:20997774,26209388:-5282231 -) -(1,19867:20997774,26209388:5282231,452978,115847 -k1,19867:20997774,26209388:3277 -h1,19867:26276728,26209388:0,411205,112570 -) -k1,19867:26460827,26209388:180822 -k1,19867:27327811,26209388:180822 -k1,19867:27966731,26209388:180823 -k1,19867:30012052,26209388:180822 -k1,19868:32583029,26209388:0 -) -(1,19868:6630773,27050876:25952256,513147,134348 -k1,19867:7823747,27050876:173889 -k1,19867:11832146,27050876:173888 -k1,19867:15214678,27050876:173889 -k1,19867:17654147,27050876:173889 -k1,19867:19642728,27050876:173889 -k1,19867:20475908,27050876:173888 -k1,19867:21005657,27050876:173889 -k1,19867:24426200,27050876:173889 -k1,19867:26172298,27050876:173889 -k1,19867:28160878,27050876:173888 -k1,19867:29467229,27050876:173889 -k1,19867:31219225,27050876:173889 -k1,19867:32583029,27050876:0 -) -(1,19868:6630773,27892364:25952256,505283,126483 -k1,19867:7807800,27892364:157942 -k1,19867:11123266,27892364:157941 -k1,19867:14373852,27892364:157942 -k1,19867:16346485,27892364:157941 -k1,19867:18202465,27892364:157942 -k1,19867:20658755,27892364:157942 -k1,19867:21468124,27892364:157941 -k1,19867:26058921,27892364:157942 -k1,19867:26982978,27892364:157941 -k1,19867:31386342,27892364:157942 -k1,19867:32583029,27892364:0 -) -(1,19868:6630773,28733852:25952256,513147,134348 -k1,19867:10197314,28733852:163912 -k1,19867:11012655,28733852:163913 -(1,19867:11012655,28733852:0,414482,115847 -r1,19886:11370921,28733852:358266,530329,115847 -k1,19867:11012655,28733852:-358266 -) -(1,19867:11012655,28733852:358266,414482,115847 -k1,19867:11012655,28733852:3277 -h1,19867:11367644,28733852:0,411205,112570 -) -k1,19867:11534833,28733852:163912 -k1,19867:12890191,28733852:163913 -(1,19867:12890191,28733852:0,414482,115847 -r1,19886:13248457,28733852:358266,530329,115847 -k1,19867:12890191,28733852:-358266 -) -(1,19867:12890191,28733852:358266,414482,115847 -k1,19867:12890191,28733852:3277 -h1,19867:13245180,28733852:0,411205,112570 -) -k1,19867:13412369,28733852:163912 -k1,19867:14567842,28733852:163913 -k1,19867:17351883,28733852:163912 -k1,19867:19823974,28733852:163913 -k1,19867:20647178,28733852:163912 -k1,19867:22824357,28733852:163913 -k1,19867:24144979,28733852:163912 -k1,19867:24991777,28733852:163913 -k1,19867:26328128,28733852:163912 -k1,19867:28117334,28733852:163913 -k1,19867:31252648,28733852:163912 -k1,19867:32583029,28733852:0 -) -(1,19868:6630773,29575340:25952256,513147,138281 -k1,19867:7827155,29575340:177297 -k1,19867:9819143,29575340:177296 -k1,19867:10655732,29575340:177297 -k1,19867:11852113,29575340:177296 -$1,19867:11852113,29575340 -$1,19867:12354774,29575340 -k1,19867:12532071,29575340:177297 -k1,19867:13900813,29575340:177297 -$1,19867:13900813,29575340 -$1,19867:14452626,29575340 -k1,19867:14629922,29575340:177296 -k1,19867:18377620,29575340:177297 -k1,19867:20457426,29575340:177296 -k1,19867:21626283,29575340:177297 -k1,19867:24358829,29575340:177297 -k1,19867:26024448,29575340:177296 -k1,19867:27070097,29575340:177297 -k1,19867:29571955,29575340:177296 -k1,19867:30768337,29575340:177297 -k1,19867:32583029,29575340:0 -) -(1,19868:6630773,30416828:25952256,505283,134348 -g1,19867:7481430,30416828 -g1,19867:10018328,30416828 -g1,19867:11236642,30416828 -k1,19868:32583030,30416828:19298388 -g1,19868:32583030,30416828 -) -v1,19870:6630773,31607294:0,393216,0 -(1,19876:6630773,33254747:25952256,2040669,196608 -g1,19876:6630773,33254747 -g1,19876:6630773,33254747 -g1,19876:6434165,33254747 -(1,19876:6434165,33254747:0,2040669,196608 -r1,19886:32779637,33254747:26345472,2237277,196608 -k1,19876:6434165,33254747:-26345472 -) -(1,19876:6434165,33254747:26345472,2040669,196608 -[1,19876:6630773,33254747:25952256,1844061,0 -(1,19872:6630773,31821204:25952256,410518,107478 -(1,19871:6630773,31821204:0,0,0 -g1,19871:6630773,31821204 -g1,19871:6630773,31821204 -g1,19871:6303093,31821204 -(1,19871:6303093,31821204:0,0,0 -) -g1,19871:6630773,31821204 -) -k1,19872:6630773,31821204:0 -g1,19872:12637541,31821204 -g1,19872:14850561,31821204 -g1,19872:16115144,31821204 -h1,19872:16431290,31821204:0,0,0 -k1,19872:32583029,31821204:16151739 -g1,19872:32583029,31821204 -) -(1,19873:6630773,32487382:25952256,404226,107478 -h1,19873:6630773,32487382:0,0,0 -g1,19873:6946919,32487382 -g1,19873:7263065,32487382 -g1,19873:11372959,32487382 -h1,19873:11689105,32487382:0,0,0 -k1,19873:32583029,32487382:20893924 -g1,19873:32583029,32487382 -) -(1,19874:6630773,33153560:25952256,404226,101187 -h1,19874:6630773,33153560:0,0,0 -g1,19874:6946919,33153560 -g1,19874:7263065,33153560 -g1,19874:12321397,33153560 -g1,19874:12953689,33153560 -g1,19874:13902127,33153560 -g1,19874:14534419,33153560 -g1,19874:15166711,33153560 -h1,19874:15799003,33153560:0,0,0 -k1,19874:32583029,33153560:16784026 -g1,19874:32583029,33153560 -) -] -) -g1,19876:32583029,33254747 -g1,19876:6630773,33254747 -g1,19876:6630773,33254747 -g1,19876:32583029,33254747 -g1,19876:32583029,33254747 -) -h1,19876:6630773,33451355:0,0,0 -(1,19879:6630773,44551668:25952256,10510489,0 -k1,19879:12599879,44551668:5969106 -h1,19878:12599879,44551668:0,0,0 -(1,19878:12599879,44551668:14014044,10510489,0 -(1,19878:12599879,44551668:14014019,10510515,0 -(1,19878:12599879,44551668:14014019,10510515,0 -(1,19878:12599879,44551668:0,10510515,0 -(1,19878:12599879,44551668:0,14208860,0 -(1,19878:12599879,44551668:18945146,14208860,0 -) -k1,19878:12599879,44551668:-18945146 -) -) -g1,19878:26613898,44551668 -) -) -) -g1,19879:26613923,44551668 -k1,19879:32583029,44551668:5969106 -) -(1,19886:6630773,45393156:25952256,513147,126483 -h1,19885:6630773,45393156:983040,0,0 -k1,19885:8980413,45393156:169913 -(1,19885:8980413,45393156:0,452978,115847 -r1,19886:11097238,45393156:2116825,568825,115847 -k1,19885:8980413,45393156:-2116825 -) -(1,19885:8980413,45393156:2116825,452978,115847 -k1,19885:8980413,45393156:3277 -h1,19885:11093961,45393156:0,411205,112570 -) -k1,19885:11267152,45393156:169914 -k1,19885:14717797,45393156:169913 -k1,19885:15547002,45393156:169913 -k1,19885:16736000,45393156:169913 -k1,19885:18808424,45393156:169914 -k1,19885:20651471,45393156:169913 -k1,19885:21177244,45393156:169913 -k1,19885:24109500,45393156:169913 -k1,19885:25514768,45393156:169914 -k1,19885:27127128,45393156:169913 -(1,19885:27127128,45393156:0,452978,115847 -r1,19886:32409359,45393156:5282231,568825,115847 -k1,19885:27127128,45393156:-5282231 ) -(1,19885:27127128,45393156:5282231,452978,115847 -k1,19885:27127128,45393156:3277 -h1,19885:32406082,45393156:0,411205,112570 +g1,19714:31284971,14357405 ) -k1,19885:32583029,45393156:0 ) -] -(1,19886:32583029,45706769:0,0,0 -g1,19886:32583029,45706769 ) +g1,19715:31285337,14357405 +k1,19715:32583029,14357405:1297692 +) +v1,19722:6630773,15222485:0,393216,0 +(1,19723:6630773,16494390:25952256,1665121,0 +g1,19723:6630773,16494390 +g1,19723:6237557,16494390 +r1,19755:6368629,16494390:131072,1665121,0 +g1,19723:6567858,16494390 +g1,19723:6764466,16494390 +[1,19723:6764466,16494390:25818563,1665121,0 +(1,19723:6764466,15494962:25818563,665693,196608 +(1,19722:6764466,15494962:0,665693,196608 +r1,19755:8010564,15494962:1246098,862301,196608 +k1,19722:6764466,15494962:-1246098 +) +(1,19722:6764466,15494962:1246098,665693,196608 +) +k1,19722:8165649,15494962:155085 +k1,19722:9891867,15494962:327680 +k1,19722:12017619,15494962:155084 +k1,19722:12831996,15494962:155085 +k1,19722:14006165,15494962:155084 +k1,19722:15768848,15494962:155085 +k1,19722:16539971,15494962:155085 +k1,19722:17714140,15494962:155084 +k1,19722:19017416,15494962:155085 +k1,19722:20344939,15494962:155084 +k1,19722:22800993,15494962:155085 +k1,19722:24811402,15494962:155085 +k1,19722:26070768,15494962:155084 +k1,19722:26973619,15494962:155085 +k1,19722:29478824,15494962:155084 +k1,19722:30395437,15494962:155085 +k1,19722:32583029,15494962:0 +) +(1,19723:6764466,16360042:25818563,505283,134348 +g1,19722:8136134,16360042 +g1,19722:10223455,16360042 +g1,19722:11816635,16360042 +(1,19722:11816635,16360042:0,452978,115847 +r1,19755:16747155,16360042:4930520,568825,115847 +k1,19722:11816635,16360042:-4930520 +) +(1,19722:11816635,16360042:4930520,452978,115847 +k1,19722:11816635,16360042:3277 +h1,19722:16743878,16360042:0,411205,112570 +) +g1,19722:17273409,16360042 +g1,19722:20194348,16360042 +g1,19722:21596818,16360042 +g1,19722:23073344,16360042 +g1,19722:25007966,16360042 +(1,19722:25007966,16360042:0,452978,115847 +r1,19755:29938486,16360042:4930520,568825,115847 +k1,19722:25007966,16360042:-4930520 +) +(1,19722:25007966,16360042:4930520,452978,115847 +k1,19722:25007966,16360042:3277 +h1,19722:29935209,16360042:0,411205,112570 +) +k1,19723:32583029,16360042:2470873 +g1,19723:32583029,16360042 +) +] +g1,19723:32583029,16494390 +) +h1,19723:6630773,16494390:0,0,0 +(1,19729:6630773,19325550:25952256,32768,229376 +(1,19729:6630773,19325550:0,32768,229376 +(1,19729:6630773,19325550:5505024,32768,229376 +r1,19755:12135797,19325550:5505024,262144,229376 +) +k1,19729:6630773,19325550:-5505024 +) +(1,19729:6630773,19325550:25952256,32768,0 +r1,19755:32583029,19325550:25952256,32768,0 +) +) +(1,19729:6630773,20957402:25952256,582746,14155 +(1,19729:6630773,20957402:1974731,582746,14155 +g1,19729:6630773,20957402 +g1,19729:8605504,20957402 +) +k1,19729:32583028,20957402:21495544 +g1,19729:32583028,20957402 +) +(1,19734:6630773,22215698:25952256,513147,134348 +k1,19732:8826322,22215698:212430 +k1,19732:10030313,22215698:212431 +k1,19732:11755969,22215698:212430 +k1,19732:12584438,22215698:212431 +k1,19732:13152728,22215698:212430 +k1,19732:15559304,22215698:212431 +k1,19732:17201074,22215698:212430 +k1,19732:18072796,22215698:212430 +k1,19732:19892825,22215698:212431 +k1,19732:23467252,22215698:212430 +k1,19732:26350930,22215698:212431 +k1,19732:28637574,22215698:212430 +k1,19732:29466043,22215698:212431 +k1,19732:31563944,22215698:212430 +k1,19732:32583029,22215698:0 +) +(1,19734:6630773,23080778:25952256,513147,126483 +k1,19732:8930212,23080778:225225 +k1,19732:10892142,23080778:225226 +k1,19732:12809507,23080778:225225 +k1,19732:16504209,23080778:225226 +k1,19733:18603764,23080778:225225 +k1,19733:20093835,23080778:225226 +k1,19733:20978352,23080778:225225 +k1,19733:25032190,23080778:225225 +k1,19733:27331630,23080778:225226 +k1,19733:28548415,23080778:225225 +k1,19733:29129501,23080778:225226 +k1,19733:31331947,23080778:225225 +k1,19733:32583029,23080778:0 +) +(1,19734:6630773,23945858:25952256,513147,134348 +k1,19733:7866082,23945858:287658 +k1,19733:11599622,23945858:287657 +k1,19733:14573601,23945858:287658 +k1,19733:16424292,23945858:287657 +k1,19733:18586280,23945858:287658 +k1,19733:20481536,23945858:287658 +k1,19733:23173709,23945858:287657 +k1,19733:25961566,23945858:287658 +k1,19733:28807749,23945858:287657 +k1,19733:30114492,23945858:287658 +(1,19733:30114492,23945858:0,452978,115847 +r1,19755:32583029,23945858:2468537,568825,115847 +k1,19733:30114492,23945858:-2468537 +) +(1,19733:30114492,23945858:2468537,452978,115847 +k1,19733:30114492,23945858:3277 +h1,19733:32579752,23945858:0,411205,112570 +) +k1,19733:32583029,23945858:0 +) +(1,19734:6630773,24810938:25952256,505283,134348 +k1,19733:9052943,24810938:237855 +k1,19733:9906836,24810938:237855 +k1,19733:10671599,24810938:237854 +k1,19733:12100899,24810938:237855 +k1,19733:13357839,24810938:237855 +k1,19733:15874380,24810938:237855 +k1,19733:18692387,24810938:237855 +k1,19733:19546280,24810938:237855 +k1,19733:20372647,24810938:237854 +k1,19733:21807189,24810938:237855 +k1,19733:23666405,24810938:237855 +k1,19733:25229398,24810938:237855 +k1,19733:25998750,24810938:237855 +k1,19733:26888032,24810938:237854 +k1,19733:28601102,24810938:237855 +k1,19733:30373155,24810938:237855 +k1,19733:32583029,24810938:0 +) +(1,19734:6630773,25676018:25952256,513147,134348 +k1,19733:9591690,25676018:247726 +k1,19733:10498708,25676018:247726 +k1,19733:12354032,25676018:247726 +k1,19733:13995709,25676018:247726 +k1,19733:17020851,25676018:247726 +k1,19733:19344758,25676018:247726 +k1,19733:20358599,25676018:247725 +k1,19733:22213923,25676018:247726 +k1,19733:25112580,25676018:247726 +k1,19733:27370951,25676018:247726 +k1,19733:28566328,25676018:247726 +k1,19733:29833139,25676018:247726 +k1,19733:31734338,25676018:247726 +k1,19734:32583029,25676018:0 +) +(1,19734:6630773,26541098:25952256,513147,126483 +k1,19733:9154267,26541098:285439 +k1,19733:12124716,26541098:285439 +k1,19733:13790999,26541098:285439 +k1,19733:14607935,26541098:285439 +k1,19733:16870595,26541098:285439 +k1,19733:18854072,26541098:285439 +k1,19733:20794295,26541098:285439 +k1,19733:22071294,26541098:285439 +k1,19733:25027980,26541098:285439 +k1,19733:29457260,26541098:285439 +k1,19733:31966991,26541098:285439 +k1,19733:32583029,26541098:0 +) +(1,19734:6630773,27406178:25952256,513147,134348 +k1,19733:7235951,27406178:249318 +k1,19733:8874631,27406178:249317 +k1,19733:10232163,27406178:249318 +k1,19733:15298376,27406178:249317 +k1,19733:17328963,27406178:249318 +k1,19733:18650449,27406178:249317 +k1,19733:20293718,27406178:249318 +k1,19733:21790842,27406178:249318 +k1,19733:23942669,27406178:249317 +k1,19733:24874872,27406178:249318 +k1,19733:26518140,27406178:249317 +k1,19733:27786543,27406178:249318 +k1,19733:29689333,27406178:249317 +k1,19733:31510860,27406178:249318 +k1,19733:32583029,27406178:0 +) +(1,19734:6630773,28271258:25952256,513147,134348 +k1,19733:7258826,28271258:272193 +k1,19733:10310401,28271258:272193 +k1,19733:13623465,28271258:272193 +k1,19733:14887217,28271258:272192 +k1,19733:18607259,28271258:272193 +k1,19733:20165268,28271258:272193 +k1,19733:22588353,28271258:272193 +k1,19733:23488381,28271258:272193 +k1,19733:26589107,28271258:272193 +k1,19733:28516083,28271258:272192 +k1,19733:29779836,28271258:272193 +k1,19733:31224468,28271258:272193 +k1,19734:32583029,28271258:0 +) +(1,19734:6630773,29136338:25952256,513147,134348 +k1,19733:8391631,29136338:276468 +k1,19733:10384488,29136338:276469 +k1,19733:11320248,29136338:276468 +k1,19733:13659134,29136338:276468 +k1,19733:15824350,29136338:276468 +k1,19733:19287835,29136338:276469 +k1,19733:20180341,29136338:276468 +k1,19733:20812669,29136338:276468 +k1,19733:22547314,29136338:276469 +k1,19733:24015227,29136338:276468 +k1,19733:26180443,29136338:276468 +k1,19733:28201479,29136338:276468 +k1,19733:28833808,29136338:276469 +k1,19733:30983295,29136338:276468 +k1,19733:32583029,29136338:0 +) +(1,19734:6630773,30001418:25952256,513147,126483 +k1,19733:7560183,30001418:270118 +k1,19733:10656212,30001418:270117 +k1,19733:12172169,30001418:270118 +k1,19733:15259679,30001418:270117 +k1,19733:18304591,30001418:270118 +k1,19733:19842174,30001418:270117 +k1,19733:21284731,30001418:270118 +k1,19733:22237733,30001418:270117 +k1,19733:24158048,30001418:270118 +k1,19733:26136033,30001418:270117 +k1,19733:28280481,30001418:270118 +k1,19733:29542158,30001418:270117 +k1,19733:32583029,30001418:0 +) +(1,19734:6630773,30866498:25952256,505283,134348 +k1,19733:7626981,30866498:234680 +k1,19733:10049252,30866498:234679 +(1,19733:10049252,30866498:0,459977,122846 +r1,19755:14276348,30866498:4227096,582823,122846 +k1,19733:10049252,30866498:-4227096 +) +(1,19733:10049252,30866498:4227096,459977,122846 +k1,19733:10049252,30866498:3277 +h1,19733:14273071,30866498:0,411205,112570 +) +k1,19733:14511028,30866498:234680 +k1,19733:15428592,30866498:234679 +(1,19733:15428592,30866498:0,459977,115847 +r1,19755:19655688,30866498:4227096,575824,115847 +k1,19733:15428592,30866498:-4227096 +) +(1,19733:15428592,30866498:4227096,459977,115847 +k1,19733:15428592,30866498:3277 +h1,19733:19652411,30866498:0,411205,112570 +) +k1,19733:20064038,30866498:234680 +k1,19733:24268889,30866498:234680 +k1,19733:25131403,30866498:234679 +k1,19733:26385168,30866498:234680 +k1,19733:29611566,30866498:234679 +k1,19733:31714677,30866498:234680 +k1,19733:32583029,30866498:0 +) +(1,19734:6630773,31731578:25952256,513147,134348 +k1,19733:7922484,31731578:199226 +(1,19733:7922484,31731578:0,452978,122846 +r1,19755:12149580,31731578:4227096,575824,122846 +k1,19733:7922484,31731578:-4227096 +) +(1,19733:7922484,31731578:4227096,452978,122846 +k1,19733:7922484,31731578:3277 +h1,19733:12146303,31731578:0,411205,112570 +) +k1,19733:12348806,31731578:199226 +k1,19733:13620201,31731578:199226 +k1,19733:16368122,31731578:199226 +k1,19733:17671630,31731578:199226 +k1,19733:18618623,31731578:199227 +k1,19733:20331075,31731578:199226 +k1,19733:21924252,31731578:199226 +(1,19733:21924252,31731578:0,452978,122846 +r1,19755:24041077,31731578:2116825,575824,122846 +k1,19733:21924252,31731578:-2116825 +) +(1,19733:21924252,31731578:2116825,452978,122846 +k1,19733:21924252,31731578:3277 +h1,19733:24037800,31731578:0,411205,112570 +) +k1,19733:24240303,31731578:199226 +k1,19733:26729357,31731578:199226 +k1,19733:30290580,31731578:199226 +k1,19733:32583029,31731578:0 +) +(1,19734:6630773,32596658:25952256,513147,134348 +g1,19733:8589644,32596658 +g1,19733:9448165,32596658 +g1,19733:11709157,32596658 +g1,19733:15193706,32596658 +g1,19733:17248915,32596658 +g1,19733:21519896,32596658 +g1,19733:22402010,32596658 +g1,19733:26109381,32596658 +g1,19733:27876231,32596658 +(1,19733:27876231,32596658:0,452978,115847 +r1,19755:29289632,32596658:1413401,568825,115847 +k1,19733:27876231,32596658:-1413401 +) +(1,19733:27876231,32596658:1413401,452978,115847 +k1,19733:27876231,32596658:3277 +h1,19733:29286355,32596658:0,411205,112570 +) +k1,19734:32583029,32596658:3119727 +g1,19734:32583029,32596658 +) +(1,19738:6630773,33461738:25952256,505283,134348 +h1,19737:6630773,33461738:983040,0,0 +k1,19737:8736351,33461738:168989 +k1,19737:10393663,33461738:168989 +k1,19737:11324180,33461738:168989 +k1,19737:14065458,33461738:168990 +k1,19737:15425892,33461738:168989 +k1,19737:17628463,33461738:168989 +k1,19737:18153312,33461738:168989 +k1,19737:22152225,33461738:168989 +k1,19737:23598511,33461738:168989 +k1,19737:25052006,33461738:168989 +k1,19737:26089348,33461738:168990 +k1,19737:27390799,33461738:168989 +k1,19737:28652273,33461738:168989 +k1,19737:31379788,33461738:168989 +k1,19737:32583029,33461738:0 +) +(1,19738:6630773,34326818:25952256,513147,134348 +g1,19737:9108689,34326818 +g1,19737:9959346,34326818 +g1,19737:14191661,34326818 +g1,19737:15721271,34326818 +g1,19737:16939585,34326818 +g1,19737:18792287,34326818 +g1,19737:20268813,34326818 +g1,19737:23039019,34326818 +g1,19737:24936286,34326818 +g1,19737:26003867,34326818 +g1,19737:27400439,34326818 +k1,19738:32583029,34326818:3120172 +g1,19738:32583029,34326818 +) +v1,19740:6630773,35011673:0,393216,0 +(1,19746:6630773,36715460:25952256,2097003,196608 +g1,19746:6630773,36715460 +g1,19746:6630773,36715460 +g1,19746:6434165,36715460 +(1,19746:6434165,36715460:0,2097003,196608 +r1,19755:32779637,36715460:26345472,2293611,196608 +k1,19746:6434165,36715460:-26345472 +) +(1,19746:6434165,36715460:26345472,2097003,196608 +[1,19746:6630773,36715460:25952256,1900395,0 +(1,19742:6630773,35239504:25952256,424439,112852 +(1,19741:6630773,35239504:0,0,0 +g1,19741:6630773,35239504 +g1,19741:6630773,35239504 +g1,19741:6303093,35239504 +(1,19741:6303093,35239504:0,0,0 +) +g1,19741:6630773,35239504 +) +g1,19742:7294681,35239504 +g1,19742:8290543,35239504 +g1,19742:12273991,35239504 +g1,19742:12937899,35239504 +g1,19742:15593531,35239504 +g1,19742:18249163,35239504 +g1,19742:20240887,35239504 +h1,19742:20572841,35239504:0,0,0 +k1,19742:32583029,35239504:12010188 +g1,19742:32583029,35239504 +) +(1,19743:6630773,35924359:25952256,424439,112852 +h1,19743:6630773,35924359:0,0,0 +g1,19743:6962727,35924359 +g1,19743:7294681,35924359 +k1,19743:7294681,35924359:0 +h1,19743:11278128,35924359:0,0,0 +k1,19743:32583028,35924359:21304900 +g1,19743:32583028,35924359 +) +(1,19744:6630773,36609214:25952256,298373,106246 +h1,19744:6630773,36609214:0,0,0 +h1,19744:6962727,36609214:0,0,0 +k1,19744:32583029,36609214:25620302 +g1,19744:32583029,36609214 +) +] +) +g1,19746:32583029,36715460 +g1,19746:6630773,36715460 +g1,19746:6630773,36715460 +g1,19746:32583029,36715460 +g1,19746:32583029,36715460 +) +h1,19746:6630773,36912068:0,0,0 +] +(1,19755:32583029,45706769:0,0,0 +g1,19755:32583029,45706769 +) +) +] +(1,19755:6630773,47279633:25952256,0,0 +h1,19755:6630773,47279633:25952256,0,0 +) +] +(1,19755:4262630,4025873:0,0,0 +[1,19755:-473656,4025873:0,0,0 +(1,19755:-473656,-710413:0,0,0 +(1,19755:-473656,-710413:0,0,0 +g1,19755:-473656,-710413 +) +g1,19755:-473656,-710413 +) +] +) +] +!16912 +}334 +Input:3125:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3126:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3127:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3128:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3129:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3130:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3131:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3132:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!764 +{335 +[1,19822:4262630,47279633:28320399,43253760,0 +(1,19822:4262630,4025873:0,0,0 +[1,19822:-473656,4025873:0,0,0 +(1,19822:-473656,-710413:0,0,0 +(1,19822:-473656,-644877:0,0,0 +k1,19822:-473656,-644877:-65536 +) +(1,19822:-473656,4736287:0,0,0 +k1,19822:-473656,4736287:5209943 +) +g1,19822:-473656,-710413 ) ] -(1,19886:6630773,47279633:25952256,0,0 -h1,19886:6630773,47279633:25952256,0,0 +) +[1,19822:6630773,47279633:25952256,43253760,0 +[1,19822:6630773,4812305:25952256,786432,0 +(1,19822:6630773,4812305:25952256,513147,126483 +(1,19822:6630773,4812305:25952256,513147,126483 +g1,19822:3078558,4812305 +[1,19822:3078558,4812305:0,0,0 +(1,19822:3078558,2439708:0,1703936,0 +k1,19822:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,19822:2537886,2439708:1179648,16384,0 +) +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,19822:3078558,1915420:16384,1179648,0 +) +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] -(1,19886:4262630,4025873:0,0,0 -[1,19886:-473656,4025873:0,0,0 -(1,19886:-473656,-710413:0,0,0 -(1,19886:-473656,-710413:0,0,0 -g1,19886:-473656,-710413 ) -g1,19886:-473656,-710413 +) ) ] +[1,19822:3078558,4812305:0,0,0 +(1,19822:3078558,2439708:0,1703936,0 +g1,19822:29030814,2439708 +g1,19822:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,19822:36151628,1915420:16384,1179648,0 +) +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] -!24598 -}356 -Input:3219:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3220:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3221:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3222:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3223:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3224:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3225:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3226:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3227:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!858 -{357 -[1,19951:4262630,47279633:28320399,43253760,0 -(1,19951:4262630,4025873:0,0,0 -[1,19951:-473656,4025873:0,0,0 -(1,19951:-473656,-710413:0,0,0 -(1,19951:-473656,-644877:0,0,0 -k1,19951:-473656,-644877:-65536 ) -(1,19951:-473656,4736287:0,0,0 -k1,19951:-473656,4736287:5209943 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,19822:37855564,2439708:1179648,16384,0 ) -g1,19951:-473656,-710413 ) -] +k1,19822:3078556,2439708:-34777008 ) -[1,19951:6630773,47279633:25952256,43253760,0 -[1,19951:6630773,4812305:25952256,786432,0 -(1,19951:6630773,4812305:25952256,513147,126483 -(1,19951:6630773,4812305:25952256,513147,126483 -g1,19951:3078558,4812305 -[1,19951:3078558,4812305:0,0,0 -(1,19951:3078558,2439708:0,1703936,0 -k1,19951:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,19951:2537886,2439708:1179648,16384,0 +] +[1,19822:3078558,4812305:0,0,0 +(1,19822:3078558,49800853:0,16384,2228224 +k1,19822:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,19822:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,19951:3078558,1915420:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,19822:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,19951:3078558,4812305:0,0,0 -(1,19951:3078558,2439708:0,1703936,0 -g1,19951:29030814,2439708 -g1,19951:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,19951:36151628,1915420:16384,1179648,0 +[1,19822:3078558,4812305:0,0,0 +(1,19822:3078558,49800853:0,16384,2228224 +g1,19822:29030814,49800853 +g1,19822:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,19822:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,19951:37855564,2439708:1179648,16384,0 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,19822:37855564,49800853:1179648,16384,0 ) ) -k1,19951:3078556,2439708:-34777008 +k1,19822:3078556,49800853:-34777008 ) ] -[1,19951:3078558,4812305:0,0,0 -(1,19951:3078558,49800853:0,16384,2228224 -k1,19951:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,19951:2537886,49800853:1179648,16384,0 +g1,19822:6630773,4812305 +k1,19822:21350816,4812305:13524666 +g1,19822:21999622,4812305 +g1,19822:25611966,4812305 +g1,19822:28956923,4812305 +g1,19822:29772190,4812305 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,19951:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 -) -] -) -) -) -] -[1,19951:3078558,4812305:0,0,0 -(1,19951:3078558,49800853:0,16384,2228224 -g1,19951:29030814,49800853 -g1,19951:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,19951:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] -) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,19951:37855564,49800853:1179648,16384,0 -) -) -k1,19951:3078556,49800853:-34777008 -) -] -g1,19951:6630773,4812305 -k1,19951:21350816,4812305:13524666 -g1,19951:21999622,4812305 -g1,19951:25611966,4812305 -g1,19951:28956923,4812305 -g1,19951:29772190,4812305 -) -) -] -[1,19951:6630773,45706769:25952256,40108032,0 -(1,19951:6630773,45706769:25952256,40108032,0 -(1,19951:6630773,45706769:0,0,0 -g1,19951:6630773,45706769 -) -[1,19951:6630773,45706769:25952256,40108032,0 -(1,19886:6630773,6254097:25952256,513147,134348 -k1,19885:7291984,6254097:191318 -k1,19885:10101465,6254097:191318 -k1,19885:11623165,6254097:191319 -k1,19885:13597718,6254097:191318 -k1,19885:15648292,6254097:191318 -k1,19885:16858695,6254097:191318 -k1,19885:19514822,6254097:191318 -k1,19885:22230588,6254097:191319 -k1,19885:23769326,6254097:191318 -k1,19885:24492141,6254097:191318 -k1,19885:27864577,6254097:191318 -k1,19885:28707324,6254097:191319 -k1,19885:29917727,6254097:191318 -k1,19885:31923737,6254097:191318 -k1,19885:32583029,6254097:0 -) -(1,19886:6630773,7095585:25952256,505283,134348 -k1,19885:7840437,7095585:190579 -k1,19885:9953186,7095585:190578 -k1,19885:12668212,7095585:190579 -k1,19885:14379881,7095585:190578 -k1,19885:15198295,7095585:190579 -k1,19885:17090844,7095585:190579 -k1,19885:19410031,7095585:190578 -k1,19885:20058707,7095585:190579 -k1,19885:21776929,7095585:190578 -k1,19885:22323368,7095585:190579 -k1,19885:25368695,7095585:190579 -k1,19885:26242158,7095585:190578 -k1,19885:29041070,7095585:190579 -k1,19885:29883076,7095585:190578 -k1,19885:31092740,7095585:190579 -k1,19886:32583029,7095585:0 -) -(1,19886:6630773,7937073:25952256,505283,134348 -k1,19885:8114180,7937073:236257 -k1,19885:9697858,7937073:236258 -k1,19885:12299965,7937073:236257 -k1,19885:13555307,7937073:236257 -k1,19885:15606256,7937073:236257 -k1,19885:16777057,7937073:236258 -k1,19885:18869294,7937073:236257 -k1,19885:22940062,7937073:236257 -k1,19885:23859204,7937073:236257 -k1,19885:27201869,7937073:236258 -k1,19885:28893025,7937073:236257 -k1,19885:30975431,7937073:236257 -k1,19885:32583029,7937073:0 -) -(1,19886:6630773,8778561:25952256,513147,134348 -k1,19885:7781176,8778561:158843 -k1,19885:9940832,8778561:158842 -k1,19885:10824503,8778561:158843 -k1,19885:12267852,8778561:158843 -k1,19885:16498447,8778561:158843 -k1,19885:17648849,8778561:158842 -k1,19885:20109972,8778561:158843 -k1,19885:21078185,8778561:158843 -k1,19885:22309197,8778561:158843 -k1,19885:23127331,8778561:158842 -k1,19885:24305259,8778561:158843 -k1,19885:26036311,8778561:158843 -k1,19885:28914898,8778561:158843 -k1,19885:30276981,8778561:158842 -k1,19885:30967321,8778561:158843 -k1,19885:31482024,8778561:158843 -k1,19885:32583029,8778561:0 -) -(1,19886:6630773,9620049:25952256,513147,134348 -k1,19885:8105005,9620049:238878 -k1,19885:9011038,9620049:238877 -(1,19885:9011038,9620049:0,452978,115847 -r1,19951:11127863,9620049:2116825,568825,115847 -k1,19885:9011038,9620049:-2116825 -) -(1,19885:9011038,9620049:2116825,452978,115847 -k1,19885:9011038,9620049:3277 -h1,19885:11124586,9620049:0,411205,112570 -) -k1,19885:11540411,9620049:238878 -k1,19885:13013332,9620049:238878 -k1,19885:14859807,9620049:238877 -k1,19885:16290130,9620049:238878 -k1,19885:19344435,9620049:238878 -k1,19885:23373914,9620049:238877 -k1,19885:24745254,9620049:238878 -k1,19885:26269948,9620049:238878 -k1,19885:28800619,9620049:238877 -k1,19885:30058582,9620049:238878 -k1,19885:32583029,9620049:0 -) -(1,19886:6630773,10461537:25952256,513147,134348 -g1,19885:8177422,10461537 -g1,19885:9028079,10461537 -g1,19885:9975074,10461537 -g1,19885:13440617,10461537 -g1,19885:14267681,10461537 -g1,19885:17295443,10461537 -g1,19885:18513757,10461537 -g1,19885:20978566,10461537 -g1,19885:21709292,10461537 -g1,19885:22559949,10461537 -g1,19885:24888443,10461537 -g1,19885:26851246,10461537 -g1,19885:28742615,10461537 -k1,19886:32583029,10461537:422056 -g1,19886:32583029,10461537 -) -(1,19888:6630773,11303025:25952256,513147,134348 -h1,19887:6630773,11303025:983040,0,0 -k1,19887:8874258,11303025:306896 -k1,19887:10579036,11303025:306895 -k1,19887:11820475,11303025:306896 -k1,19887:13146456,11303025:306896 -k1,19887:15345376,11303025:306896 -k1,19887:17136661,11303025:306895 -k1,19887:18102849,11303025:306896 -k1,19887:19428830,11303025:306896 -k1,19887:22260172,11303025:306895 -k1,19887:23914488,11303025:306896 -k1,19887:24872812,11303025:306896 -k1,19887:25927474,11303025:306896 -k1,19887:29327013,11303025:306895 -k1,19887:30395437,11303025:306896 -k1,19887:32583029,11303025:0 -) -(1,19888:6630773,12144513:25952256,513147,134348 -k1,19887:9385485,12144513:146379 -k1,19887:10183292,12144513:146379 -k1,19887:11348756,12144513:146379 -k1,19887:12567305,12144513:146380 -k1,19887:13905129,12144513:146379 -k1,19887:16406217,12144513:146379 -k1,19887:17571681,12144513:146379 -k1,19887:19983640,12144513:146379 -k1,19887:22738352,12144513:146379 -k1,19887:24452352,12144513:146379 -k1,19887:25617817,12144513:146380 -k1,19887:28087447,12144513:146379 -k1,19887:28893118,12144513:146379 -k1,19887:30058582,12144513:146379 -k1,19887:32583029,12144513:0 -) -(1,19888:6630773,12986001:25952256,355205,7863 -k1,19888:32583028,12986001:24431164 -g1,19888:32583028,12986001 -) -v1,19890:6630773,14176467:0,393216,0 -(1,19897:6630773,16490098:25952256,2706847,196608 -g1,19897:6630773,16490098 -g1,19897:6630773,16490098 -g1,19897:6434165,16490098 -(1,19897:6434165,16490098:0,2706847,196608 -r1,19951:32779637,16490098:26345472,2903455,196608 -k1,19897:6434165,16490098:-26345472 -) -(1,19897:6434165,16490098:26345472,2706847,196608 -[1,19897:6630773,16490098:25952256,2510239,0 -(1,19892:6630773,14390377:25952256,410518,107478 -(1,19891:6630773,14390377:0,0,0 -g1,19891:6630773,14390377 -g1,19891:6630773,14390377 -g1,19891:6303093,14390377 -(1,19891:6303093,14390377:0,0,0 -) -g1,19891:6630773,14390377 -) -k1,19892:6630773,14390377:0 -k1,19892:6630773,14390377:0 -h1,19892:12321395,14390377:0,0,0 -k1,19892:32583029,14390377:20261634 -g1,19892:32583029,14390377 -) -(1,19893:6630773,15056555:25952256,410518,107478 -h1,19893:6630773,15056555:0,0,0 -g1,19893:6946919,15056555 -g1,19893:7263065,15056555 -g1,19893:10108377,15056555 -g1,19893:10740669,15056555 -g1,19893:12953689,15056555 -g1,19893:14850563,15056555 -g1,19893:15482855,15056555 -g1,19893:17695875,15056555 -g1,19893:18328167,15056555 -g1,19893:18960459,15056555 -g1,19893:20225042,15056555 -h1,19893:20541188,15056555:0,0,0 -k1,19893:32583029,15056555:12041841 -g1,19893:32583029,15056555 -) -(1,19894:6630773,15722733:25952256,404226,101187 -h1,19894:6630773,15722733:0,0,0 -g1,19894:6946919,15722733 -g1,19894:7263065,15722733 -g1,19894:13269833,15722733 -g1,19894:13902125,15722733 -g1,19894:15482854,15722733 -h1,19894:15799000,15722733:0,0,0 -k1,19894:32583028,15722733:16784028 -g1,19894:32583028,15722733 -) -(1,19895:6630773,16388911:25952256,404226,101187 -h1,19895:6630773,16388911:0,0,0 -g1,19895:6946919,16388911 -g1,19895:7263065,16388911 -g1,19895:15482853,16388911 -g1,19895:16115145,16388911 -g1,19895:21489622,16388911 -g1,19895:22121914,16388911 -g1,19895:23702644,16388911 -h1,19895:25915664,16388911:0,0,0 -k1,19895:32583029,16388911:6667365 -g1,19895:32583029,16388911 -) -] -) -g1,19897:32583029,16490098 -g1,19897:6630773,16490098 -g1,19897:6630773,16490098 -g1,19897:32583029,16490098 -g1,19897:32583029,16490098 -) -h1,19897:6630773,16686706:0,0,0 -(1,19901:6630773,18052482:25952256,513147,126483 -h1,19900:6630773,18052482:983040,0,0 -k1,19900:9309798,18052482:207662 -k1,19900:10385811,18052482:207661 -k1,19900:12920656,18052482:207662 -k1,19900:14220803,18052482:207662 -k1,19900:14784324,18052482:207661 -k1,19900:18152787,18052482:207662 -k1,19900:19011877,18052482:207662 -k1,19900:19575398,18052482:207661 -k1,19900:21985070,18052482:207662 -k1,19900:23963515,18052482:207662 -k1,19900:24857338,18052482:207661 -k1,19900:27093995,18052482:207662 -k1,19900:28170009,18052482:207662 -k1,19900:29575013,18052482:207661 -k1,19900:31021961,18052482:207662 -k1,19901:32583029,18052482:0 -) -(1,19901:6630773,18893970:25952256,513147,134348 -g1,19900:8663044,18893970 -g1,19900:9513701,18893970 -g1,19900:10732015,18893970 -g1,19900:12711857,18893970 -g1,19900:13570378,18893970 -g1,19900:14788692,18893970 -(1,19900:14788692,18893970:0,452978,115847 -r1,19951:16905517,18893970:2116825,568825,115847 -k1,19900:14788692,18893970:-2116825 -) -(1,19900:14788692,18893970:2116825,452978,115847 -k1,19900:14788692,18893970:3277 -h1,19900:16902240,18893970:0,411205,112570 -) -k1,19901:32583029,18893970:15503842 -g1,19901:32583029,18893970 -) -v1,19903:6630773,20084436:0,393216,0 -(1,19907:6630773,20393241:25952256,702021,196608 -g1,19907:6630773,20393241 -g1,19907:6630773,20393241 -g1,19907:6434165,20393241 -(1,19907:6434165,20393241:0,702021,196608 -r1,19951:32779637,20393241:26345472,898629,196608 -k1,19907:6434165,20393241:-26345472 -) -(1,19907:6434165,20393241:26345472,702021,196608 -[1,19907:6630773,20393241:25952256,505413,0 -(1,19905:6630773,20292054:25952256,404226,101187 -(1,19904:6630773,20292054:0,0,0 -g1,19904:6630773,20292054 -g1,19904:6630773,20292054 -g1,19904:6303093,20292054 -(1,19904:6303093,20292054:0,0,0 -) -g1,19904:6630773,20292054 -) -g1,19905:6946919,20292054 -g1,19905:7263065,20292054 -g1,19905:15482853,20292054 -g1,19905:16115145,20292054 -g1,19905:21805768,20292054 -g1,19905:22438060,20292054 -g1,19905:24018790,20292054 -h1,19905:25915664,20292054:0,0,0 -k1,19905:32583029,20292054:6667365 -g1,19905:32583029,20292054 -) -] -) -g1,19907:32583029,20393241 -g1,19907:6630773,20393241 -g1,19907:6630773,20393241 -g1,19907:32583029,20393241 -g1,19907:32583029,20393241 -) -h1,19907:6630773,20589849:0,0,0 -(1,19911:6630773,21955625:25952256,513147,134348 -h1,19910:6630773,21955625:983040,0,0 -k1,19910:8479241,21955625:237593 -k1,19910:9735919,21955625:237593 -k1,19910:11340593,21955625:237593 -k1,19910:12237478,21955625:237593 -k1,19910:14551252,21955625:237593 -k1,19910:15657197,21955625:237593 -k1,19910:18065343,21955625:237594 -k1,19910:20609148,21955625:237593 -k1,19910:22355380,21955625:237593 -k1,19910:25451653,21955625:237593 -k1,19910:28247772,21955625:237593 -k1,19910:29504450,21955625:237593 -k1,19910:31923737,21955625:237593 -k1,19910:32583029,21955625:0 -) -(1,19911:6630773,22797113:25952256,513147,11795 -k1,19910:8864744,22797113:245609 -k1,19910:10063901,22797113:245608 -k1,19910:11839776,22797113:245609 -k1,19910:14412568,22797113:245609 -k1,19910:15309604,22797113:245608 -k1,19910:16647698,22797113:245609 -k1,19910:17249167,22797113:245609 -k1,19910:22331988,22797113:245609 -k1,19910:23263758,22797113:245608 -k1,19910:26599390,22797113:245609 -k1,19910:27461037,22797113:245609 -k1,19910:29985332,22797113:245608 -h1,19910:31528050,22797113:0,0,0 -k1,19910:31773659,22797113:245609 -k1,19910:32583029,22797113:0 -) -(1,19911:6630773,23638601:25952256,513147,134348 -k1,19910:8334885,23638601:205959 -h1,19910:9530262,23638601:0,0,0 -k1,19910:9909892,23638601:205960 -k1,19910:11360380,23638601:205959 -k1,19910:16203012,23638601:205960 -(1,19910:16203012,23638601:0,452978,115847 -r1,19951:18319837,23638601:2116825,568825,115847 -k1,19910:16203012,23638601:-2116825 -) -(1,19910:16203012,23638601:2116825,452978,115847 -k1,19910:16203012,23638601:3277 -h1,19910:18316560,23638601:0,411205,112570 -) -k1,19910:18525796,23638601:205959 -k1,19910:19923201,23638601:205960 -(1,19910:19923201,23638601:0,452978,115847 -r1,19951:22040026,23638601:2116825,568825,115847 -k1,19910:19923201,23638601:-2116825 -) -(1,19910:19923201,23638601:2116825,452978,115847 -k1,19910:19923201,23638601:3277 -h1,19910:22036749,23638601:0,411205,112570 -) -k1,19910:22245985,23638601:205959 -k1,19910:23267213,23638601:205960 -k1,19910:26479308,23638601:205959 -k1,19910:28366922,23638601:205960 -k1,19910:29776122,23638601:205959 -k1,19911:32583029,23638601:0 -) -(1,19911:6630773,24480089:25952256,505283,134348 -g1,19910:9073299,24480089 -g1,19910:11831054,24480089 -g1,19910:13049368,24480089 -g1,19910:15868726,24480089 -g1,19910:18078600,24480089 -g1,19910:20483116,24480089 -g1,19910:21368507,24480089 -k1,19911:32583029,24480089:9226160 -g1,19911:32583029,24480089 -) -v1,19916:6630773,25845865:0,393216,0 -(1,19926:6630773,30012528:25952256,4559879,0 -g1,19926:6630773,30012528 -g1,19926:6303093,30012528 -r1,19951:6401397,30012528:98304,4559879,0 -g1,19926:6600626,30012528 -g1,19926:6797234,30012528 -[1,19926:6797234,30012528:25785795,4559879,0 -(1,19917:6797234,26278403:25785795,825754,196608 -(1,19916:6797234,26278403:0,825754,196608 -r1,19951:7890375,26278403:1093141,1022362,196608 -k1,19916:6797234,26278403:-1093141 -) -(1,19916:6797234,26278403:1093141,825754,196608 -) -k1,19916:8071953,26278403:181578 -k1,19916:9798171,26278403:327680 -k1,19916:11348797,26278403:181579 -k1,19916:13078991,26278403:181578 -k1,19916:14279655,26278403:181579 -k1,19916:16304105,26278403:181578 -k1,19916:17017180,26278403:181578 -k1,19916:18896797,26278403:181579 -k1,19916:20097460,26278403:181578 -k1,19916:21585172,26278403:181579 -k1,19916:23251140,26278403:181578 -k1,19916:23964215,26278403:181578 -k1,19916:26005050,26278403:181579 -k1,19916:27629075,26278403:181578 -k1,19916:28829739,26278403:181579 -k1,19916:31252648,26278403:181578 -k1,19916:32583029,26278403:0 -) -(1,19917:6797234,27119891:25785795,505283,134348 -g1,19916:7539756,27119891 -g1,19916:8197082,27119891 -g1,19916:9415396,27119891 -g1,19916:11268098,27119891 -g1,19916:12153489,27119891 -g1,19916:14050756,27119891 -g1,19916:16431679,27119891 -g1,19916:18327635,27119891 -g1,19916:20180337,27119891 -g1,19916:22390211,27119891 -g1,19916:23275602,27119891 -g1,19916:25289523,27119891 -g1,19916:26882703,27119891 -(1,19916:26882703,27119891:0,452978,115847 -r1,19951:28999528,27119891:2116825,568825,115847 -k1,19916:26882703,27119891:-2116825 -) -(1,19916:26882703,27119891:2116825,452978,115847 -k1,19916:26882703,27119891:3277 -h1,19916:28996251,27119891:0,411205,112570 -) -k1,19917:32583029,27119891:3256476 -g1,19917:32583029,27119891 -) -v1,19919:6797234,28310357:0,393216,0 -(1,19924:6797234,29291632:25785795,1374491,196608 -g1,19924:6797234,29291632 -g1,19924:6797234,29291632 -g1,19924:6600626,29291632 -(1,19924:6600626,29291632:0,1374491,196608 -r1,19951:32779637,29291632:26179011,1571099,196608 -k1,19924:6600625,29291632:-26179012 -) -(1,19924:6600626,29291632:26179011,1374491,196608 -[1,19924:6797234,29291632:25785795,1177883,0 -(1,19921:6797234,28524267:25785795,410518,107478 -(1,19920:6797234,28524267:0,0,0 -g1,19920:6797234,28524267 -g1,19920:6797234,28524267 -g1,19920:6469554,28524267 -(1,19920:6469554,28524267:0,0,0 -) -g1,19920:6797234,28524267 -) -k1,19921:6797234,28524267:0 -g1,19921:12804002,28524267 -g1,19921:15017022,28524267 -g1,19921:16281605,28524267 -g1,19921:16913897,28524267 -g1,19921:21023791,28524267 -h1,19921:21339937,28524267:0,0,0 -k1,19921:32583029,28524267:11243092 -g1,19921:32583029,28524267 -) -(1,19922:6797234,29190445:25785795,404226,101187 -h1,19922:6797234,29190445:0,0,0 -g1,19922:7113380,29190445 -g1,19922:7429526,29190445 -g1,19922:15649314,29190445 -g1,19922:16281606,29190445 -g1,19922:18494627,29190445 -h1,19922:19443064,29190445:0,0,0 -k1,19922:32583029,29190445:13139965 -g1,19922:32583029,29190445 -) -] -) -g1,19924:32583029,29291632 -g1,19924:6797234,29291632 -g1,19924:6797234,29291632 -g1,19924:32583029,29291632 -g1,19924:32583029,29291632 -) -h1,19924:6797234,29488240:0,0,0 -] -g1,19926:32583029,30012528 -) -h1,19926:6630773,30012528:0,0,0 -(1,19928:6630773,31640448:25952256,505283,7863 -(1,19928:6630773,31640448:0,0,0 -g1,19928:6630773,31640448 -) -g1,19928:8642728,31640448 -g1,19928:10067480,31640448 -g1,19928:11839573,31640448 -k1,19928:32583029,31640448:18821940 -g1,19928:32583029,31640448 -) -(1,19931:6630773,32875152:25952256,513147,134348 -k1,19930:10158171,32875152:291886 -(1,19930:10158171,32875152:0,452978,115847 -r1,19951:12274996,32875152:2116825,568825,115847 -k1,19930:10158171,32875152:-2116825 -) -(1,19930:10158171,32875152:2116825,452978,115847 -k1,19930:10158171,32875152:3277 -h1,19930:12271719,32875152:0,411205,112570 -) -k1,19930:12566883,32875152:291887 -k1,19930:13390266,32875152:291886 -k1,19930:15195379,32875152:291887 -k1,19930:16138693,32875152:291886 -k1,19930:17365123,32875152:291887 -k1,19930:18676094,32875152:291886 -k1,19930:21524540,32875152:291887 -k1,19930:22475718,32875152:291886 -k1,19930:24282142,32875152:291887 -k1,19930:26318596,32875152:291886 -k1,19930:27629568,32875152:291887 -k1,19930:29347517,32875152:291886 -k1,19931:32583029,32875152:0 -) -(1,19931:6630773,33716640:25952256,505283,126483 -(1,19930:6630773,33716640:0,452978,115847 -r1,19951:8747598,33716640:2116825,568825,115847 -k1,19930:6630773,33716640:-2116825 -) -(1,19930:6630773,33716640:2116825,452978,115847 -k1,19930:6630773,33716640:3277 -h1,19930:8744321,33716640:0,411205,112570 -) -k1,19930:8924937,33716640:177339 -k1,19930:9633774,33716640:177340 -k1,19930:11324339,33716640:177339 -k1,19930:12153107,33716640:177340 -k1,19930:13264989,33716640:177339 -k1,19930:14461413,33716640:177339 -k1,19930:15822989,33716640:177340 -k1,19930:18018182,33716640:177339 -k1,19930:19660907,33716640:177340 -k1,19930:23449280,33716640:177339 -k1,19930:24730901,33716640:177339 -k1,19930:25656007,33716640:177340 -k1,19930:28038633,33716640:177339 -k1,19930:30071953,33716640:177340 -k1,19930:30605152,33716640:177339 -k1,19930:32583029,33716640:0 -) -(1,19931:6630773,34558128:25952256,513147,134348 -k1,19930:7536434,34558128:222776 -k1,19930:8115069,34558128:222775 -k1,19930:11033341,34558128:222776 -k1,19930:11942278,34558128:222775 -k1,19930:12935757,34558128:222776 -k1,19930:16404530,34558128:222775 -k1,19930:17823993,34558128:222776 -k1,19930:20312348,34558128:222775 -k1,19930:21066621,34558128:222776 -k1,19930:21940824,34558128:222775 -k1,19930:24951502,34558128:222776 -k1,19930:27358592,34558128:222775 -k1,19930:29696215,34558128:222776 -k1,19930:31773659,34558128:222775 -k1,19930:32583029,34558128:0 -) -(1,19931:6630773,35399616:25952256,513147,134348 -g1,19930:7849087,35399616 -g1,19930:9863008,35399616 -g1,19930:11253682,35399616 -g1,19930:13633294,35399616 -g1,19930:14851608,35399616 -g1,19930:17866919,35399616 -g1,19930:18752310,35399616 -k1,19931:32583029,35399616:11460937 -g1,19931:32583029,35399616 -) -(1,19933:6630773,36241104:25952256,513147,134348 -h1,19932:6630773,36241104:983040,0,0 -k1,19932:9563564,36241104:166516 -k1,19932:12662816,36241104:166516 -k1,19932:15011025,36241104:166515 -k1,19932:17466058,36241104:166516 -k1,19932:18500926,36241104:166516 -k1,19932:19771724,36241104:166516 -k1,19932:21446223,36241104:166516 -k1,19932:22631824,36241104:166516 -k1,19932:25063919,36241104:166515 -k1,19932:28439078,36241104:166516 -k1,19932:30449777,36241104:166516 -k1,19932:31563944,36241104:166516 -k1,19933:32583029,36241104:0 -) -(1,19933:6630773,37082592:25952256,452978,115847 -(1,19932:6630773,37082592:0,452978,115847 -r1,19951:8747598,37082592:2116825,568825,115847 -k1,19932:6630773,37082592:-2116825 -) -(1,19932:6630773,37082592:2116825,452978,115847 -k1,19932:6630773,37082592:3277 -h1,19932:8744321,37082592:0,411205,112570 -) -k1,19933:32583028,37082592:23661760 -g1,19933:32583028,37082592 -) -v1,19935:6630773,38273058:0,393216,0 -(1,19941:6630773,39920511:25952256,2040669,196608 -g1,19941:6630773,39920511 -g1,19941:6630773,39920511 -g1,19941:6434165,39920511 -(1,19941:6434165,39920511:0,2040669,196608 -r1,19951:32779637,39920511:26345472,2237277,196608 -k1,19941:6434165,39920511:-26345472 -) -(1,19941:6434165,39920511:26345472,2040669,196608 -[1,19941:6630773,39920511:25952256,1844061,0 -(1,19937:6630773,38486968:25952256,410518,107478 -(1,19936:6630773,38486968:0,0,0 -g1,19936:6630773,38486968 -g1,19936:6630773,38486968 -g1,19936:6303093,38486968 -(1,19936:6303093,38486968:0,0,0 -) -g1,19936:6630773,38486968 -) -k1,19937:6630773,38486968:0 -g1,19937:12637541,38486968 -g1,19937:14850561,38486968 -g1,19937:16115144,38486968 -h1,19937:16431290,38486968:0,0,0 -k1,19937:32583029,38486968:16151739 -g1,19937:32583029,38486968 -) -(1,19938:6630773,39153146:25952256,404226,107478 -h1,19938:6630773,39153146:0,0,0 -g1,19938:6946919,39153146 -g1,19938:7263065,39153146 -g1,19938:11372959,39153146 -h1,19938:11689105,39153146:0,0,0 -k1,19938:32583029,39153146:20893924 -g1,19938:32583029,39153146 -) -(1,19939:6630773,39819324:25952256,404226,101187 -h1,19939:6630773,39819324:0,0,0 -g1,19939:6946919,39819324 -g1,19939:7263065,39819324 -g1,19939:15482853,39819324 -g1,19939:16115145,39819324 -g1,19939:18012020,39819324 -g1,19939:18960457,39819324 -g1,19939:19592749,39819324 -g1,19939:20857332,39819324 -g1,19939:22121915,39819324 -h1,19939:23386497,39819324:0,0,0 -k1,19939:32583029,39819324:9196532 -g1,19939:32583029,39819324 -) -] -) -g1,19941:32583029,39920511 -g1,19941:6630773,39920511 -g1,19941:6630773,39920511 -g1,19941:32583029,39920511 -g1,19941:32583029,39920511 -) -h1,19941:6630773,40117119:0,0,0 -(1,19945:6630773,41482895:25952256,513147,126483 -h1,19944:6630773,41482895:983040,0,0 -k1,19944:9082180,41482895:271680 -k1,19944:11619440,41482895:271680 -k1,19944:14005967,41482895:271680 -k1,19944:15269207,41482895:271680 -k1,19944:18749529,41482895:271679 -k1,19944:19782737,41482895:271680 -k1,19944:22749913,41482895:271680 -(1,19944:22749913,41482895:0,452978,115847 -r1,19951:28032144,41482895:5282231,568825,115847 -k1,19944:22749913,41482895:-5282231 -) -(1,19944:22749913,41482895:5282231,452978,115847 -k1,19944:22749913,41482895:3277 -h1,19944:28028867,41482895:0,411205,112570 -) -k1,19944:28303824,41482895:271680 -k1,19944:30143125,41482895:271680 -k1,19944:32583029,41482895:0 -) -(1,19945:6630773,42324383:25952256,505283,134348 -k1,19944:8021816,42324383:194356 -k1,19944:11288500,42324383:194356 -k1,19944:13688143,42324383:194356 -k1,19944:14533926,42324383:194355 -k1,19944:15516680,42324383:194356 -k1,19944:18991768,42324383:194356 -(1,19944:18991768,42324383:0,414482,115847 -r1,19951:19350034,42324383:358266,530329,115847 -k1,19944:18991768,42324383:-358266 -) -(1,19944:18991768,42324383:358266,414482,115847 -k1,19944:18991768,42324383:3277 -h1,19944:19346757,42324383:0,411205,112570 -) -k1,19944:19544390,42324383:194356 -k1,19944:23313080,42324383:194356 -k1,19944:24526521,42324383:194356 -k1,19944:26600449,42324383:194355 -k1,19944:29280586,42324383:194356 -k1,19944:30989479,42324383:194356 -k1,19944:31835263,42324383:194356 -k1,19944:32583029,42324383:0 -) -(1,19945:6630773,43165871:25952256,513147,134348 -k1,19944:9964947,43165871:181237 -k1,19944:14636710,43165871:181236 -k1,19944:15890116,43165871:181237 -k1,19944:17090438,43165871:181237 -k1,19944:19193846,43165871:181237 -k1,19944:21860863,43165871:181236 -k1,19944:22701392,43165871:181237 -k1,19944:24397166,43165871:181237 -k1,19944:27787046,43165871:181237 -k1,19944:29305216,43165871:181236 -k1,19944:30234219,43165871:181237 -k1,19944:32583029,43165871:0 -) -(1,19945:6630773,44007359:25952256,513147,134348 -g1,19944:9592345,44007359 -g1,19944:13153571,44007359 -g1,19944:14162170,44007359 -g1,19944:15380484,44007359 -g1,19944:17360326,44007359 -g1,19944:18218847,44007359 -g1,19944:19437161,44007359 -k1,19945:32583029,44007359:11582834 -g1,19945:32583029,44007359 -) -v1,19947:6630773,45197825:0,393216,0 -] -(1,19951:32583029,45706769:0,0,0 -g1,19951:32583029,45706769 -) -) -] -(1,19951:6630773,47279633:25952256,0,0 -h1,19951:6630773,47279633:25952256,0,0 -) -] -(1,19951:4262630,4025873:0,0,0 -[1,19951:-473656,4025873:0,0,0 -(1,19951:-473656,-710413:0,0,0 -(1,19951:-473656,-710413:0,0,0 -g1,19951:-473656,-710413 -) -g1,19951:-473656,-710413 -) -] -) -] -!25622 -}357 -Input:3228:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3229:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3230:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3231:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3232:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3233:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3234:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3235:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!764 -{358 -[1,19994:4262630,47279633:28320399,43253760,0 -(1,19994:4262630,4025873:0,0,0 -[1,19994:-473656,4025873:0,0,0 -(1,19994:-473656,-710413:0,0,0 -(1,19994:-473656,-644877:0,0,0 -k1,19994:-473656,-644877:-65536 +] +[1,19822:6630773,45706769:25952256,40108032,0 +(1,19822:6630773,45706769:25952256,40108032,0 +(1,19822:6630773,45706769:0,0,0 +g1,19822:6630773,45706769 +) +[1,19822:6630773,45706769:25952256,40108032,0 +(1,19749:6630773,14682403:25952256,9083666,0 +k1,19749:10523651,14682403:3892878 +h1,19748:10523651,14682403:0,0,0 +(1,19748:10523651,14682403:18166500,9083666,0 +(1,19748:10523651,14682403:18167376,9083688,0 +(1,19748:10523651,14682403:18167376,9083688,0 +(1,19748:10523651,14682403:0,9083688,0 +(1,19748:10523651,14682403:0,14208860,0 +(1,19748:10523651,14682403:28417720,14208860,0 +) +k1,19748:10523651,14682403:-28417720 +) +) +g1,19748:28691027,14682403 +) +) +) +g1,19749:28690151,14682403 +k1,19749:32583029,14682403:3892878 +) +(1,19756:6630773,15547483:25952256,513147,134348 +h1,19755:6630773,15547483:983040,0,0 +k1,19755:8329422,15547483:228021 +k1,19755:9841977,15547483:228049 +k1,19755:10729318,15547483:228049 +k1,19755:13031582,15547483:228050 +k1,19755:14360636,15547483:228049 +k1,19755:15761125,15547483:228050 +k1,19755:19838103,15547483:228049 +(1,19755:19838103,15547483:0,414482,115847 +r1,19822:21251504,15547483:1413401,530329,115847 +k1,19755:19838103,15547483:-1413401 +) +(1,19755:19838103,15547483:1413401,414482,115847 +k1,19755:19838103,15547483:3277 +h1,19755:21248227,15547483:0,411205,112570 +) +k1,19755:21479554,15547483:228050 +k1,19755:22899048,15547483:228049 +(1,19755:22899048,15547483:0,452978,115847 +r1,19822:24312449,15547483:1413401,568825,115847 +k1,19755:22899048,15547483:-1413401 +) +(1,19755:22899048,15547483:1413401,452978,115847 +k1,19755:22899048,15547483:3277 +h1,19755:24309172,15547483:0,411205,112570 +) +k1,19755:24714169,15547483:228050 +k1,19755:26816548,15547483:228049 +k1,19755:30719857,15547483:228050 +k1,19755:31563944,15547483:228049 +k1,19755:32583029,15547483:0 +) +(1,19756:6630773,16412563:25952256,513147,134348 +k1,19755:8077808,16412563:162529 +k1,19755:8899630,16412563:162530 +k1,19755:10339456,16412563:162529 +k1,19755:12576199,16412563:162529 +k1,19755:13843010,16412563:162529 +k1,19755:14753306,16412563:162530 +k1,19755:18101540,16412563:162529 +k1,19755:18915497,16412563:162529 +k1,19755:21475989,16412563:162530 +k1,19755:23187789,16412563:162529 +k1,19755:25904911,16412563:162529 +k1,19755:26423300,16412563:162529 +k1,19755:29129282,16412563:162530 +k1,19755:31375856,16412563:162529 +k1,19755:32583029,16412563:0 +) +(1,19756:6630773,17277643:25952256,513147,134348 +k1,19755:7801410,17277643:151552 +k1,19755:9328562,17277643:151551 +k1,19755:12264083,17277643:151552 +k1,19755:13746016,17277643:151552 +k1,19755:16860451,17277643:151552 +k1,19755:18215243,17277643:151551 +k1,19755:21056393,17277643:151552 +k1,19755:22308950,17277643:151552 +k1,19755:23970452,17277643:151552 +k1,19755:26928256,17277643:151552 +k1,19755:28098892,17277643:151551 +k1,19755:31263789,17277643:151552 +k1,19756:32583029,17277643:0 +) +(1,19756:6630773,18142723:25952256,505283,126483 +k1,19755:7798754,18142723:190184 +k1,19755:8520435,18142723:190184 +k1,19755:11621073,18142723:190184 +k1,19755:12462684,18142723:190183 +k1,19755:13745353,18142723:190184 +k1,19755:14954622,18142723:190184 +k1,19755:18755840,18142723:190184 +(1,19755:18755840,18142723:0,414482,115847 +r1,19822:20169241,18142723:1413401,530329,115847 +k1,19755:18755840,18142723:-1413401 +) +(1,19755:18755840,18142723:1413401,414482,115847 +k1,19755:18755840,18142723:3277 +h1,19755:20165964,18142723:0,411205,112570 +) +k1,19755:20359425,18142723:190184 +k1,19755:21741054,18142723:190184 +(1,19755:21741054,18142723:0,452978,115847 +r1,19822:23154455,18142723:1413401,568825,115847 +k1,19755:21741054,18142723:-1413401 +) +(1,19755:21741054,18142723:1413401,452978,115847 +k1,19755:21741054,18142723:3277 +h1,19755:23151178,18142723:0,411205,112570 +) +k1,19755:23518309,18142723:190184 +k1,19755:24662042,18142723:190184 +k1,19755:25944710,18142723:190183 +(1,19755:25944710,18142723:0,452978,115847 +r1,19822:27358111,18142723:1413401,568825,115847 +k1,19755:25944710,18142723:-1413401 +) +(1,19755:25944710,18142723:1413401,452978,115847 +k1,19755:25944710,18142723:3277 +h1,19755:27354834,18142723:0,411205,112570 +) +k1,19755:27548295,18142723:190184 +k1,19755:28354517,18142723:190184 +k1,19755:29747942,18142723:190184 +k1,19755:32583029,18142723:0 +) +(1,19756:6630773,19007803:25952256,513147,115847 +k1,19755:8314679,19007803:192962 +k1,19755:9792146,19007803:192961 +k1,19755:10853460,19007803:192962 +k1,19755:12576688,19007803:192962 +k1,19755:13421077,19007803:192961 +k1,19755:14706524,19007803:192962 +(1,19755:14706524,19007803:0,452978,115847 +r1,19822:16823349,19007803:2116825,568825,115847 +k1,19755:14706524,19007803:-2116825 +) +(1,19755:14706524,19007803:2116825,452978,115847 +k1,19755:14706524,19007803:3277 +h1,19755:16820072,19007803:0,411205,112570 +) +k1,19755:17016311,19007803:192962 +k1,19755:17860700,19007803:192961 +k1,19755:20426721,19007803:192962 +k1,19755:21638768,19007803:192962 +k1,19755:23900046,19007803:192962 +k1,19755:24752299,19007803:192961 +k1,19755:25964346,19007803:192962 +k1,19755:28998949,19007803:192962 +k1,19755:29807948,19007803:192961 +k1,19755:31019995,19007803:192962 +k1,19755:32583029,19007803:0 +) +(1,19756:6630773,19872883:25952256,513147,134348 +k1,19755:8008689,19872883:181229 +k1,19755:11649564,19872883:181229 +k1,19755:12490085,19872883:181229 +k1,19755:13690398,19872883:181228 +k1,19755:15945841,19872883:181229 +k1,19755:16809955,19872883:181229 +k1,19755:18408072,19872883:181229 +k1,19755:20407925,19872883:181229 +k1,19755:21580714,19872883:181229 +k1,19755:22523471,19872883:181229 +k1,19755:24970280,19872883:181229 +k1,19755:26170593,19872883:181228 +k1,19755:28144232,19872883:181229 +k1,19755:28984753,19872883:181229 +k1,19755:30185067,19872883:181229 +k1,19756:32583029,19872883:0 +k1,19756:32583029,19872883:0 +) +v1,19758:6630773,20557738:0,393216,0 +(1,19762:6630773,20905027:25952256,740505,196608 +g1,19762:6630773,20905027 +g1,19762:6630773,20905027 +g1,19762:6434165,20905027 +(1,19762:6434165,20905027:0,740505,196608 +r1,19822:32779637,20905027:26345472,937113,196608 +k1,19762:6434165,20905027:-26345472 +) +(1,19762:6434165,20905027:26345472,740505,196608 +[1,19762:6630773,20905027:25952256,543897,0 +(1,19760:6630773,20792175:25952256,431045,112852 +(1,19759:6630773,20792175:0,0,0 +g1,19759:6630773,20792175 +g1,19759:6630773,20792175 +g1,19759:6303093,20792175 +(1,19759:6303093,20792175:0,0,0 +) +g1,19759:6630773,20792175 +) +g1,19760:7294681,20792175 +g1,19760:7958589,20792175 +g1,19760:13269852,20792175 +g1,19760:13933760,20792175 +k1,19760:13933760,20792175:0 +h1,19760:17253300,20792175:0,0,0 +k1,19760:32583029,20792175:15329729 +g1,19760:32583029,20792175 +) +] +) +g1,19762:32583029,20905027 +g1,19762:6630773,20905027 +g1,19762:6630773,20905027 +g1,19762:32583029,20905027 +g1,19762:32583029,20905027 +) +h1,19762:6630773,21101635:0,0,0 +(1,19765:6630773,30250837:25952256,9083666,0 +k1,19765:10523651,30250837:3892878 +h1,19764:10523651,30250837:0,0,0 +(1,19764:10523651,30250837:18166500,9083666,0 +(1,19764:10523651,30250837:18167376,9083688,0 +(1,19764:10523651,30250837:18167376,9083688,0 +(1,19764:10523651,30250837:0,9083688,0 +(1,19764:10523651,30250837:0,14208860,0 +(1,19764:10523651,30250837:28417720,14208860,0 +) +k1,19764:10523651,30250837:-28417720 +) +) +g1,19764:28691027,30250837 +) +) +) +g1,19765:28690151,30250837 +k1,19765:32583029,30250837:3892878 +) +(1,19772:6630773,31115917:25952256,513147,126483 +h1,19771:6630773,31115917:983040,0,0 +g1,19771:8440877,31115917 +g1,19771:9659191,31115917 +g1,19771:13140463,31115917 +g1,19771:16329444,31115917 +g1,19771:17547758,31115917 +g1,19771:19400460,31115917 +g1,19771:20876986,31115917 +g1,19771:23032465,31115917 +g1,19771:24706909,31115917 +g1,19771:26416088,31115917 +g1,19771:28532245,31115917 +g1,19771:29417636,31115917 +k1,19772:32583029,31115917:676336 +g1,19772:32583029,31115917 +) +v1,19774:6630773,31800772:0,393216,0 +(1,19778:6630773,32148061:25952256,740505,196608 +g1,19778:6630773,32148061 +g1,19778:6630773,32148061 +g1,19778:6434165,32148061 +(1,19778:6434165,32148061:0,740505,196608 +r1,19822:32779637,32148061:26345472,937113,196608 +k1,19778:6434165,32148061:-26345472 +) +(1,19778:6434165,32148061:26345472,740505,196608 +[1,19778:6630773,32148061:25952256,543897,0 +(1,19776:6630773,32035209:25952256,431045,112852 +(1,19775:6630773,32035209:0,0,0 +g1,19775:6630773,32035209 +g1,19775:6630773,32035209 +g1,19775:6303093,32035209 +(1,19775:6303093,32035209:0,0,0 +) +g1,19775:6630773,32035209 +) +g1,19776:7294681,32035209 +g1,19776:7958589,32035209 +g1,19776:12273990,32035209 +g1,19776:12937898,32035209 +h1,19776:14265714,32035209:0,0,0 +k1,19776:32583030,32035209:18317316 +g1,19776:32583030,32035209 +) +] +) +g1,19778:32583029,32148061 +g1,19778:6630773,32148061 +g1,19778:6630773,32148061 +g1,19778:32583029,32148061 +g1,19778:32583029,32148061 +) +h1,19778:6630773,32344669:0,0,0 +(1,19782:6630773,33209749:25952256,513147,134348 +h1,19781:6630773,33209749:983040,0,0 +k1,19781:8595089,33209749:221058 +k1,19781:11255397,33209749:221058 +k1,19781:12242571,33209749:221058 +k1,19781:14537842,33209749:221057 +k1,19781:16495604,33209749:221058 +k1,19781:17735747,33209749:221058 +k1,19781:19610278,33209749:221058 +k1,19781:21403545,33209749:221058 +k1,19781:23439295,33209749:221058 +k1,19781:24851797,33209749:221057 +k1,19781:26809559,33209749:221058 +k1,19781:28049702,33209749:221058 +k1,19781:30795207,33209749:221058 +k1,19781:32583029,33209749:0 +) +(1,19782:6630773,34074829:25952256,513147,126483 +g1,19781:9036599,34074829 +g1,19781:10307997,34074829 +g1,19781:12203953,34074829 +g1,19781:14999063,34074829 +g1,19781:16302574,34074829 +g1,19781:17249569,34074829 +k1,19782:32583029,34074829:11679173 +g1,19782:32583029,34074829 +) +v1,19784:6630773,34759684:0,393216,0 +(1,19789:6630773,35791828:25952256,1425360,196608 +g1,19789:6630773,35791828 +g1,19789:6630773,35791828 +g1,19789:6434165,35791828 +(1,19789:6434165,35791828:0,1425360,196608 +r1,19822:32779637,35791828:26345472,1621968,196608 +k1,19789:6434165,35791828:-26345472 +) +(1,19789:6434165,35791828:26345472,1425360,196608 +[1,19789:6630773,35791828:25952256,1228752,0 +(1,19786:6630773,34994121:25952256,431045,112852 +(1,19785:6630773,34994121:0,0,0 +g1,19785:6630773,34994121 +g1,19785:6630773,34994121 +g1,19785:6303093,34994121 +(1,19785:6303093,34994121:0,0,0 +) +g1,19785:6630773,34994121 +) +g1,19786:7294681,34994121 +g1,19786:7958589,34994121 +g1,19786:13269852,34994121 +g1,19786:13933760,34994121 +g1,19786:17585254,34994121 +g1,19786:19908932,34994121 +g1,19786:20572840,34994121 +h1,19786:22896518,34994121:0,0,0 +k1,19786:32583029,34994121:9686511 +g1,19786:32583029,34994121 +) +(1,19787:6630773,35678976:25952256,431045,112852 +h1,19787:6630773,35678976:0,0,0 +g1,19787:7294681,35678976 +g1,19787:7958589,35678976 +g1,19787:13269852,35678976 +g1,19787:13933760,35678976 +g1,19787:17585254,35678976 +g1,19787:19908932,35678976 +g1,19787:20572840,35678976 +g1,19787:23228472,35678976 +g1,19787:25220196,35678976 +g1,19787:25884104,35678976 +h1,19787:28207782,35678976:0,0,0 +k1,19787:32583029,35678976:4375247 +g1,19787:32583029,35678976 +) +] +) +g1,19789:32583029,35791828 +g1,19789:6630773,35791828 +g1,19789:6630773,35791828 +g1,19789:32583029,35791828 +g1,19789:32583029,35791828 +) +h1,19789:6630773,35988436:0,0,0 +(1,19795:6630773,36853516:25952256,513147,134348 +h1,19794:6630773,36853516:983040,0,0 +g1,19794:8642072,36853516 +g1,19794:10865053,36853516 +g1,19794:11420142,36853516 +g1,19794:12521146,36853516 +g1,19794:14004881,36853516 +g1,19794:15072462,36853516 +g1,19794:16801957,36853516 +g1,19794:17652614,36853516 +g1,19794:20110869,36853516 +g1,19794:21776794,36853516 +(1,19794:21776794,36853516:0,414482,115847 +r1,19822:23190195,36853516:1413401,530329,115847 +k1,19794:21776794,36853516:-1413401 +) +(1,19794:21776794,36853516:1413401,414482,115847 +k1,19794:21776794,36853516:3277 +h1,19794:23186918,36853516:0,411205,112570 +) +g1,19794:23389424,36853516 +g1,19794:24780098,36853516 +(1,19794:24780098,36853516:0,452978,115847 +r1,19822:26193499,36853516:1413401,568825,115847 +k1,19794:24780098,36853516:-1413401 +) +(1,19794:24780098,36853516:1413401,452978,115847 +k1,19794:24780098,36853516:3277 +h1,19794:26190222,36853516:0,411205,112570 +) +k1,19795:32583029,36853516:6215860 +g1,19795:32583029,36853516 +) +v1,19797:6630773,37538371:0,393216,0 +(1,19801:6630773,37885660:25952256,740505,196608 +g1,19801:6630773,37885660 +g1,19801:6630773,37885660 +g1,19801:6434165,37885660 +(1,19801:6434165,37885660:0,740505,196608 +r1,19822:32779637,37885660:26345472,937113,196608 +k1,19801:6434165,37885660:-26345472 +) +(1,19801:6434165,37885660:26345472,740505,196608 +[1,19801:6630773,37885660:25952256,543897,0 +(1,19799:6630773,37772808:25952256,431045,112852 +(1,19798:6630773,37772808:0,0,0 +g1,19798:6630773,37772808 +g1,19798:6630773,37772808 +g1,19798:6303093,37772808 +(1,19798:6303093,37772808:0,0,0 +) +g1,19798:6630773,37772808 +) +g1,19799:7294681,37772808 +g1,19799:7958589,37772808 +g1,19799:13269852,37772808 +g1,19799:13933760,37772808 +g1,19799:17253300,37772808 +g1,19799:18913070,37772808 +g1,19799:19576978,37772808 +k1,19799:19576978,37772808:0 +h1,19799:22564564,37772808:0,0,0 +k1,19799:32583029,37772808:10018465 +g1,19799:32583029,37772808 +) +] +) +g1,19801:32583029,37885660 +g1,19801:6630773,37885660 +g1,19801:6630773,37885660 +g1,19801:32583029,37885660 +g1,19801:32583029,37885660 +) +h1,19801:6630773,38082268:0,0,0 +(1,19807:6630773,38947348:25952256,513147,134348 +h1,19806:6630773,38947348:983040,0,0 +k1,19806:10311876,38947348:169684 +k1,19806:12776630,38947348:169683 +k1,19806:13717017,38947348:169684 +k1,19806:17113693,38947348:169683 +k1,19806:19666266,38947348:169684 +k1,19806:20518834,38947348:169683 +k1,19806:21892414,38947348:169684 +k1,19806:22721390,38947348:169684 +k1,19806:24965287,38947348:169683 +k1,19806:26528922,38947348:169684 +k1,19806:27717690,38947348:169683 +k1,19806:31019995,38947348:169684 +k1,19807:32583029,38947348:0 +k1,19807:32583029,38947348:0 +) +v1,19809:6630773,39632203:0,393216,0 +(1,19813:6630773,39979492:25952256,740505,196608 +g1,19813:6630773,39979492 +g1,19813:6630773,39979492 +g1,19813:6434165,39979492 +(1,19813:6434165,39979492:0,740505,196608 +r1,19822:32779637,39979492:26345472,937113,196608 +k1,19813:6434165,39979492:-26345472 +) +(1,19813:6434165,39979492:26345472,740505,196608 +[1,19813:6630773,39979492:25952256,543897,0 +(1,19811:6630773,39866640:25952256,431045,112852 +(1,19810:6630773,39866640:0,0,0 +g1,19810:6630773,39866640 +g1,19810:6630773,39866640 +g1,19810:6303093,39866640 +(1,19810:6303093,39866640:0,0,0 +) +g1,19810:6630773,39866640 +) +g1,19811:7294681,39866640 +g1,19811:7958589,39866640 +g1,19811:13269852,39866640 +g1,19811:13933760,39866640 +g1,19811:17585254,39866640 +g1,19811:20240886,39866640 +g1,19811:20904794,39866640 +h1,19811:22564564,39866640:0,0,0 +k1,19811:32583029,39866640:10018465 +g1,19811:32583029,39866640 +) +] +) +g1,19813:32583029,39979492 +g1,19813:6630773,39979492 +g1,19813:6630773,39979492 +g1,19813:32583029,39979492 +g1,19813:32583029,39979492 +) +h1,19813:6630773,40176100:0,0,0 +] +(1,19822:32583029,45706769:0,0,0 +g1,19822:32583029,45706769 +) +) +] +(1,19822:6630773,47279633:25952256,0,0 +h1,19822:6630773,47279633:25952256,0,0 +) +] +(1,19822:4262630,4025873:0,0,0 +[1,19822:-473656,4025873:0,0,0 +(1,19822:-473656,-710413:0,0,0 +(1,19822:-473656,-710413:0,0,0 +g1,19822:-473656,-710413 +) +g1,19822:-473656,-710413 +) +] ) -(1,19994:-473656,4736287:0,0,0 -k1,19994:-473656,4736287:5209943 +] +!18055 +}335 +Input:3133:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3134:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3135:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3136:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3137:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3138:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3139:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3140:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3141:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3142:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3143:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1046 +{336 +[1,19878:4262630,47279633:28320399,43253760,0 +(1,19878:4262630,4025873:0,0,0 +[1,19878:-473656,4025873:0,0,0 +(1,19878:-473656,-710413:0,0,0 +(1,19878:-473656,-644877:0,0,0 +k1,19878:-473656,-644877:-65536 ) -g1,19994:-473656,-710413 +(1,19878:-473656,4736287:0,0,0 +k1,19878:-473656,4736287:5209943 +) +g1,19878:-473656,-710413 ) ] ) -[1,19994:6630773,47279633:25952256,43253760,0 -[1,19994:6630773,4812305:25952256,786432,0 -(1,19994:6630773,4812305:25952256,505283,11795 -(1,19994:6630773,4812305:25952256,505283,11795 -g1,19994:3078558,4812305 -[1,19994:3078558,4812305:0,0,0 -(1,19994:3078558,2439708:0,1703936,0 -k1,19994:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,19994:2537886,2439708:1179648,16384,0 +[1,19878:6630773,47279633:25952256,43253760,0 +[1,19878:6630773,4812305:25952256,786432,0 +(1,19878:6630773,4812305:25952256,485622,11795 +(1,19878:6630773,4812305:25952256,485622,11795 +g1,19878:3078558,4812305 +[1,19878:3078558,4812305:0,0,0 +(1,19878:3078558,2439708:0,1703936,0 +k1,19878:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,19878:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,19994:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,19878:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,19994:3078558,4812305:0,0,0 -(1,19994:3078558,2439708:0,1703936,0 -g1,19994:29030814,2439708 -g1,19994:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,19994:36151628,1915420:16384,1179648,0 +[1,19878:3078558,4812305:0,0,0 +(1,19878:3078558,2439708:0,1703936,0 +g1,19878:29030814,2439708 +g1,19878:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,19878:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,19994:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,19878:37855564,2439708:1179648,16384,0 ) ) -k1,19994:3078556,2439708:-34777008 +k1,19878:3078556,2439708:-34777008 ) ] -[1,19994:3078558,4812305:0,0,0 -(1,19994:3078558,49800853:0,16384,2228224 -k1,19994:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,19994:2537886,49800853:1179648,16384,0 +[1,19878:3078558,4812305:0,0,0 +(1,19878:3078558,49800853:0,16384,2228224 +k1,19878:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,19878:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,19994:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,19878:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,19994:3078558,4812305:0,0,0 -(1,19994:3078558,49800853:0,16384,2228224 -g1,19994:29030814,49800853 -g1,19994:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,19994:36151628,51504789:16384,1179648,0 +[1,19878:3078558,4812305:0,0,0 +(1,19878:3078558,49800853:0,16384,2228224 +g1,19878:29030814,49800853 +g1,19878:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,19878:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,19994:37855564,49800853:1179648,16384,0 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,19878:37855564,49800853:1179648,16384,0 +) ) +k1,19878:3078556,49800853:-34777008 +) +] +g1,19878:6630773,4812305 +g1,19878:6630773,4812305 +g1,19878:8769212,4812305 +k1,19878:31387652,4812305:22618440 ) -k1,19994:3078556,49800853:-34777008 ) ] -g1,19994:6630773,4812305 -g1,19994:6630773,4812305 -g1,19994:8724648,4812305 -k1,19994:31387652,4812305:22663004 -) -) -] -[1,19994:6630773,45706769:25952256,40108032,0 -(1,19994:6630773,45706769:25952256,40108032,0 -(1,19994:6630773,45706769:0,0,0 -g1,19994:6630773,45706769 -) -[1,19994:6630773,45706769:25952256,40108032,0 -v1,19951:6630773,6254097:0,393216,0 -(1,19951:6630773,6562902:25952256,702021,196608 -g1,19951:6630773,6562902 -g1,19951:6630773,6562902 -g1,19951:6434165,6562902 -(1,19951:6434165,6562902:0,702021,196608 -r1,19994:32779637,6562902:26345472,898629,196608 -k1,19951:6434165,6562902:-26345472 -) -(1,19951:6434165,6562902:26345472,702021,196608 -[1,19951:6630773,6562902:25952256,505413,0 -(1,19949:6630773,6461715:25952256,404226,101187 -(1,19948:6630773,6461715:0,0,0 -g1,19948:6630773,6461715 -g1,19948:6630773,6461715 -g1,19948:6303093,6461715 -(1,19948:6303093,6461715:0,0,0 -) -g1,19948:6630773,6461715 -) -g1,19949:6946919,6461715 -g1,19949:7263065,6461715 -g1,19949:15482853,6461715 -g1,19949:16115145,6461715 -g1,19949:21173477,6461715 -g1,19949:21805769,6461715 -h1,19949:22754206,6461715:0,0,0 -k1,19949:32583029,6461715:9828823 -g1,19949:32583029,6461715 -) -] -) -g1,19951:32583029,6562902 -g1,19951:6630773,6562902 -g1,19951:6630773,6562902 -g1,19951:32583029,6562902 -g1,19951:32583029,6562902 -) -h1,19951:6630773,6759510:0,0,0 -(1,19955:6630773,8003137:25952256,513147,134348 -h1,19954:6630773,8003137:983040,0,0 -k1,19954:8722769,8003137:155407 -k1,19954:9982458,8003137:155407 -k1,19954:11072407,8003137:155406 -k1,19954:12412050,8003137:155407 -k1,19954:14411640,8003137:155407 -k1,19954:17673454,8003137:155407 -k1,19954:18444899,8003137:155407 -k1,19954:20983849,8003137:155406 -k1,19954:21790684,8003137:155407 -k1,19954:22965176,8003137:155407 -k1,19954:25302277,8003137:155407 -k1,19954:26124840,8003137:155407 -(1,19954:26124840,8003137:0,452978,115847 -r1,19994:28241665,8003137:2116825,568825,115847 -k1,19954:26124840,8003137:-2116825 -) -(1,19954:26124840,8003137:2116825,452978,115847 -k1,19954:26124840,8003137:3277 -h1,19954:28238388,8003137:0,411205,112570 -) -k1,19954:28397071,8003137:155406 -k1,19954:29314006,8003137:155407 -k1,19954:31896867,8003137:155407 -k1,19954:32583029,8003137:0 -) -(1,19955:6630773,8844625:25952256,513147,134348 -k1,19954:10235807,8844625:202405 -k1,19954:11610652,8844625:202406 -k1,19954:14121235,8844625:202405 -k1,19954:14982933,8844625:202406 -k1,19954:16912867,8844625:202405 -k1,19954:19302209,8844625:202406 -k1,19954:20132449,8844625:202405 -k1,19954:21353940,8844625:202406 -k1,19954:22940465,8844625:202405 -k1,19954:25804288,8844625:202406 -k1,19954:26875045,8844625:202405 -k1,19954:28169936,8844625:202406 -k1,19954:29143044,8844625:202405 -k1,19954:32583029,8844625:0 -) -(1,19955:6630773,9686113:25952256,505283,11795 -g1,19954:7481430,9686113 -g1,19954:9704411,9686113 -g1,19954:10259500,9686113 -g1,19954:12314053,9686113 -k1,19955:32583029,9686113:18393336 -g1,19955:32583029,9686113 -) -v1,19957:6630773,10754431:0,393216,0 -(1,19964:6630773,13068062:25952256,2706847,196608 -g1,19964:6630773,13068062 -g1,19964:6630773,13068062 -g1,19964:6434165,13068062 -(1,19964:6434165,13068062:0,2706847,196608 -r1,19994:32779637,13068062:26345472,2903455,196608 -k1,19964:6434165,13068062:-26345472 -) -(1,19964:6434165,13068062:26345472,2706847,196608 -[1,19964:6630773,13068062:25952256,2510239,0 -(1,19959:6630773,10968341:25952256,410518,107478 -(1,19958:6630773,10968341:0,0,0 -g1,19958:6630773,10968341 -g1,19958:6630773,10968341 -g1,19958:6303093,10968341 -(1,19958:6303093,10968341:0,0,0 -) -g1,19958:6630773,10968341 -) -k1,19959:6630773,10968341:0 -g1,19959:12637541,10968341 -g1,19959:14850561,10968341 -g1,19959:16115144,10968341 -h1,19959:16431290,10968341:0,0,0 -k1,19959:32583029,10968341:16151739 -g1,19959:32583029,10968341 -) -(1,19960:6630773,11634519:25952256,404226,107478 -h1,19960:6630773,11634519:0,0,0 -g1,19960:6946919,11634519 -g1,19960:7263065,11634519 -g1,19960:11372959,11634519 -h1,19960:11689105,11634519:0,0,0 -k1,19960:32583029,11634519:20893924 -g1,19960:32583029,11634519 -) -(1,19961:6630773,12300697:25952256,404226,101187 -h1,19961:6630773,12300697:0,0,0 -g1,19961:6946919,12300697 -g1,19961:7263065,12300697 -g1,19961:15482853,12300697 -g1,19961:16115145,12300697 -g1,19961:18012020,12300697 -g1,19961:18960457,12300697 -g1,19961:19592749,12300697 -g1,19961:20857332,12300697 -g1,19961:22121915,12300697 -k1,19961:22121915,12300697:0 -h1,19961:23386498,12300697:0,0,0 -k1,19961:32583029,12300697:9196531 -g1,19961:32583029,12300697 -) -(1,19962:6630773,12966875:25952256,404226,101187 -h1,19962:6630773,12966875:0,0,0 -g1,19962:6946919,12966875 -g1,19962:7263065,12966875 -g1,19962:7579211,12966875 -g1,19962:7895357,12966875 -g1,19962:8211503,12966875 -g1,19962:8527649,12966875 -g1,19962:8843795,12966875 -g1,19962:9159941,12966875 -g1,19962:9476087,12966875 -g1,19962:9792233,12966875 -g1,19962:10108379,12966875 -g1,19962:10424525,12966875 -g1,19962:10740671,12966875 -g1,19962:11056817,12966875 -g1,19962:11372963,12966875 -g1,19962:11689109,12966875 -g1,19962:12005255,12966875 -g1,19962:12321401,12966875 -g1,19962:12637547,12966875 -g1,19962:12953693,12966875 -g1,19962:13269839,12966875 -g1,19962:15482859,12966875 -g1,19962:16115151,12966875 -g1,19962:18644318,12966875 -g1,19962:24651087,12966875 -g1,19962:26547962,12966875 -h1,19962:28444836,12966875:0,0,0 -k1,19962:32583029,12966875:4138193 -g1,19962:32583029,12966875 -) -] -) -g1,19964:32583029,13068062 -g1,19964:6630773,13068062 -g1,19964:6630773,13068062 -g1,19964:32583029,13068062 -g1,19964:32583029,13068062 -) -h1,19964:6630773,13264670:0,0,0 -(1,19967:6630773,24242834:25952256,10510489,0 -k1,19967:12599879,24242834:5969106 -h1,19966:12599879,24242834:0,0,0 -(1,19966:12599879,24242834:14014044,10510489,0 -(1,19966:12599879,24242834:14014019,10510515,0 -(1,19966:12599879,24242834:14014019,10510515,0 -(1,19966:12599879,24242834:0,10510515,0 -(1,19966:12599879,24242834:0,14208860,0 -(1,19966:12599879,24242834:18945146,14208860,0 -) -k1,19966:12599879,24242834:-18945146 -) -) -g1,19966:26613898,24242834 -) -) -) -g1,19967:26613923,24242834 -k1,19967:32583029,24242834:5969106 -) -(1,19974:6630773,25084322:25952256,513147,134348 -h1,19973:6630773,25084322:983040,0,0 -k1,19973:10324251,25084322:175505 -k1,19973:12765991,25084322:175506 -k1,19973:15701872,25084322:175505 -k1,19973:18108879,25084322:175506 -k1,19973:21310181,25084322:175505 -k1,19973:22433337,25084322:175505 -k1,19973:23627928,25084322:175506 -k1,19973:26993070,25084322:175505 -k1,19973:30563996,25084322:175506 -k1,19973:31398793,25084322:175505 -k1,19973:32583029,25084322:0 -) -(1,19974:6630773,25925810:25952256,513147,134348 -k1,19973:8837673,25925810:189046 -k1,19973:10068741,25925810:189046 -k1,19973:13092874,25925810:189046 -k1,19973:13933348,25925810:189046 -k1,19973:16417465,25925810:189046 -k1,19973:17790747,25925810:189046 -k1,19973:19823977,25925810:189047 -k1,19973:20699185,25925810:189046 -k1,19973:24705048,25925810:189046 -k1,19973:25841745,25925810:189046 -k1,19973:27420154,25925810:189046 -k1,19973:30393169,25925810:189046 -k1,19973:31268377,25925810:189046 -k1,19974:32583029,25925810:0 -) -(1,19974:6630773,26767298:25952256,513147,115847 -g1,19973:8212156,26767298 -g1,19973:11425386,26767298 -g1,19973:12492967,26767298 -g1,19973:13796478,26767298 -g1,19973:15088192,26767298 -g1,19973:17982917,26767298 -(1,19973:17982917,26767298:0,452978,115847 -r1,19994:21154877,26767298:3171960,568825,115847 -k1,19973:17982917,26767298:-3171960 -) -(1,19973:17982917,26767298:3171960,452978,115847 -k1,19973:17982917,26767298:3277 -h1,19973:21151600,26767298:0,411205,112570 -) -k1,19974:32583029,26767298:11254482 -g1,19974:32583029,26767298 -) -v1,19976:6630773,27835616:0,393216,0 -(1,19982:6630773,29483069:25952256,2040669,196608 -g1,19982:6630773,29483069 -g1,19982:6630773,29483069 -g1,19982:6434165,29483069 -(1,19982:6434165,29483069:0,2040669,196608 -r1,19994:32779637,29483069:26345472,2237277,196608 -k1,19982:6434165,29483069:-26345472 -) -(1,19982:6434165,29483069:26345472,2040669,196608 -[1,19982:6630773,29483069:25952256,1844061,0 -(1,19978:6630773,28049526:25952256,410518,107478 -(1,19977:6630773,28049526:0,0,0 -g1,19977:6630773,28049526 -g1,19977:6630773,28049526 -g1,19977:6303093,28049526 -(1,19977:6303093,28049526:0,0,0 -) -g1,19977:6630773,28049526 -) -k1,19978:6630773,28049526:0 -g1,19978:12637541,28049526 -g1,19978:14850561,28049526 -g1,19978:15482853,28049526 -g1,19978:16115145,28049526 -g1,19978:18960456,28049526 -h1,19978:19276602,28049526:0,0,0 -k1,19978:32583029,28049526:13306427 -g1,19978:32583029,28049526 -) -(1,19979:6630773,28715704:25952256,404226,107478 -h1,19979:6630773,28715704:0,0,0 -g1,19979:6946919,28715704 -g1,19979:7263065,28715704 -g1,19979:11372959,28715704 -h1,19979:11689105,28715704:0,0,0 -k1,19979:32583029,28715704:20893924 -g1,19979:32583029,28715704 -) -(1,19980:6630773,29381882:25952256,404226,101187 -h1,19980:6630773,29381882:0,0,0 -g1,19980:6946919,29381882 -g1,19980:7263065,29381882 -g1,19980:15482853,29381882 -g1,19980:16115145,29381882 -h1,19980:18644310,29381882:0,0,0 -k1,19980:32583029,29381882:13938719 -g1,19980:32583029,29381882 -) -] -) -g1,19982:32583029,29483069 -g1,19982:6630773,29483069 -g1,19982:6630773,29483069 -g1,19982:32583029,29483069 -g1,19982:32583029,29483069 -) -h1,19982:6630773,29679677:0,0,0 -(1,19985:6630773,40657841:25952256,10510489,0 -k1,19985:12599879,40657841:5969106 -h1,19984:12599879,40657841:0,0,0 -(1,19984:12599879,40657841:14014044,10510489,0 -(1,19984:12599879,40657841:14014019,10510515,0 -(1,19984:12599879,40657841:14014019,10510515,0 -(1,19984:12599879,40657841:0,10510515,0 -(1,19984:12599879,40657841:0,14208860,0 -(1,19984:12599879,40657841:18945146,14208860,0 -) -k1,19984:12599879,40657841:-18945146 -) -) -g1,19984:26613898,40657841 -) -) -) -g1,19985:26613923,40657841 -k1,19985:32583029,40657841:5969106 -) -(1,19992:6630773,41499329:25952256,505283,134348 -h1,19991:6630773,41499329:983040,0,0 -k1,19991:9078781,41499329:422946 -k1,19991:12457401,41499329:422946 -k1,19991:13748698,41499329:422945 -k1,19991:15275926,41499329:422946 -k1,19991:16791357,41499329:422946 -(1,19991:16791357,41499329:0,452978,115847 -r1,19994:19611606,41499329:2820249,568825,115847 -k1,19991:16791357,41499329:-2820249 -) -(1,19991:16791357,41499329:2820249,452978,115847 -k1,19991:16791357,41499329:3277 -h1,19991:19608329,41499329:0,411205,112570 -) -k1,19991:20208222,41499329:422946 -k1,19991:21282596,41499329:422946 -k1,19991:24043210,41499329:422945 -k1,19991:27120364,41499329:422946 -k1,19991:30888923,41499329:422946 -k1,19992:32583029,41499329:0 -) -(1,19992:6630773,42340817:25952256,513147,115847 -k1,19991:9239839,42340817:583348 -k1,19991:12569147,42340817:583349 -k1,19991:13877323,42340817:583348 -k1,19991:15443712,42340817:583349 -k1,19991:16895412,42340817:583348 -k1,19991:18583042,42340817:583348 -k1,19991:20258876,42340817:583349 -(1,19991:20258876,42340817:0,452978,115847 -r1,19994:22727413,42340817:2468537,568825,115847 -k1,19991:20258876,42340817:-2468537 -) -(1,19991:20258876,42340817:2468537,452978,115847 -k1,19991:20258876,42340817:3277 -h1,19991:22724136,42340817:0,411205,112570 -) -k1,19991:23484431,42340817:583348 -k1,19991:25259224,42340817:583348 -k1,19991:26790224,42340817:583349 -k1,19991:30189654,42340817:583348 -k1,19992:32583029,42340817:0 -) -(1,19992:6630773,43182305:25952256,513147,134348 -k1,19991:8169558,43182305:513802 -k1,19991:10418754,43182305:513803 -k1,19991:14224429,43182305:513802 -k1,19991:15397523,43182305:513802 -k1,19991:19340825,43182305:513803 -k1,19991:20802278,43182305:513802 -k1,19991:29156807,43182305:513802 -k1,19991:32583029,43182305:0 -) -(1,19992:6630773,44023793:25952256,459977,115847 -k1,19991:8264691,44023793:529636 -k1,19991:9886812,44023793:529636 -(1,19991:9886812,44023793:0,459977,115847 -r1,19994:16575890,44023793:6689078,575824,115847 -k1,19991:9886812,44023793:-6689078 -) -(1,19991:9886812,44023793:6689078,459977,115847 -k1,19991:9886812,44023793:3277 -h1,19991:16572613,44023793:0,411205,112570 -) -k1,19991:17279196,44023793:529636 -(1,19991:17279196,44023793:0,452978,115847 -r1,19994:32409359,44023793:15130163,568825,115847 -k1,19991:17279196,44023793:-15130163 -) -(1,19991:17279196,44023793:15130163,452978,115847 -g1,19991:25371845,44023793 -g1,19991:26075269,44023793 -h1,19991:32406082,44023793:0,411205,112570 -) -k1,19992:32583029,44023793:0 -) -(1,19992:6630773,44865281:25952256,505283,122846 -(1,19991:6630773,44865281:0,452978,122846 -r1,19994:10506157,44865281:3875384,575824,122846 -k1,19991:6630773,44865281:-3875384 -) -(1,19991:6630773,44865281:3875384,452978,122846 -k1,19991:6630773,44865281:3277 -h1,19991:10502880,44865281:0,411205,112570 -) -k1,19991:10971629,44865281:291802 -k1,19991:11946316,44865281:291802 -(1,19991:11946316,44865281:0,452978,122846 -r1,19994:24614496,44865281:12668180,575824,122846 -k1,19991:11946316,44865281:-12668180 -) -(1,19991:11946316,44865281:12668180,452978,122846 -g1,19991:20038965,44865281 -g1,19991:20742389,44865281 -h1,19991:24611219,44865281:0,411205,112570 -) -k1,19991:25079968,44865281:291802 -k1,19991:26189658,44865281:291801 -k1,19991:28556985,44865281:291802 -k1,19991:30890889,44865281:291802 -k1,19991:32583029,44865281:0 -) -(1,19992:6630773,45706769:25952256,513147,7863 -g1,19991:7489294,45706769 -g1,19991:9385250,45706769 -g1,19991:12610276,45706769 -g1,19991:13913787,45706769 -g1,19991:14860782,45706769 -g1,19991:17037232,45706769 -g1,19991:18630412,45706769 -g1,19991:23641294,45706769 -g1,19991:27410924,45706769 -k1,19992:32583029,45706769:3095924 -g1,19992:32583029,45706769 -) -] -(1,19994:32583029,45706769:0,0,0 -g1,19994:32583029,45706769 -) -) -] -(1,19994:6630773,47279633:25952256,0,0 -h1,19994:6630773,47279633:25952256,0,0 -) -] -(1,19994:4262630,4025873:0,0,0 -[1,19994:-473656,4025873:0,0,0 -(1,19994:-473656,-710413:0,0,0 -(1,19994:-473656,-710413:0,0,0 -g1,19994:-473656,-710413 +[1,19878:6630773,45706769:25952256,40108032,0 +(1,19878:6630773,45706769:25952256,40108032,0 +(1,19878:6630773,45706769:0,0,0 +g1,19878:6630773,45706769 ) -g1,19994:-473656,-710413 +[1,19878:6630773,45706769:25952256,40108032,0 +(1,19816:6630773,14682403:25952256,9083666,0 +k1,19816:10523651,14682403:3892878 +h1,19815:10523651,14682403:0,0,0 +(1,19815:10523651,14682403:18166500,9083666,0 +(1,19815:10523651,14682403:18167376,9083688,0 +(1,19815:10523651,14682403:18167376,9083688,0 +(1,19815:10523651,14682403:0,9083688,0 +(1,19815:10523651,14682403:0,14208860,0 +(1,19815:10523651,14682403:28417720,14208860,0 ) -] +k1,19815:10523651,14682403:-28417720 ) -] -!16403 -}358 -Input:3236:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3237:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3238:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3239:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3240:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3241:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3242:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3243:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3244:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3245:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3246:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3247:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3248:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3249:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3250:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3251:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1516 -{359 -[1,20047:4262630,47279633:28320399,43253760,0 -(1,20047:4262630,4025873:0,0,0 -[1,20047:-473656,4025873:0,0,0 -(1,20047:-473656,-710413:0,0,0 -(1,20047:-473656,-644877:0,0,0 -k1,20047:-473656,-644877:-65536 ) -(1,20047:-473656,4736287:0,0,0 -k1,20047:-473656,4736287:5209943 +g1,19815:28691027,14682403 +) +) +) +g1,19816:28690151,14682403 +k1,19816:32583029,14682403:3892878 +) +(1,19823:6630773,15547483:25952256,513147,134348 +h1,19822:6630773,15547483:983040,0,0 +k1,19822:8860308,15547483:292946 +k1,19822:10257536,15547483:292946 +k1,19822:13592007,15547483:292945 +k1,19822:15535150,15547483:292946 +k1,19822:17270543,15547483:292946 +k1,19822:18720199,15547483:292946 +k1,19822:21524484,15547483:292945 +k1,19822:22873870,15547483:292946 +k1,19822:26511774,15547483:292946 +k1,19822:27464012,15547483:292946 +k1,19822:28776042,15547483:292945 +k1,19822:30353494,15547483:292946 +k1,19822:31305732,15547483:292946 +k1,19822:32583029,15547483:0 +) +(1,19823:6630773,16412563:25952256,513147,126483 +k1,19822:9045253,16412563:166595 +k1,19822:10253869,16412563:166594 +k1,19822:11623705,16412563:166595 +k1,19822:14625386,16412563:166594 +k1,19822:15660333,16412563:166595 +k1,19822:17112744,16412563:166595 +k1,19822:19924371,16412563:166594 +k1,19822:21110051,16412563:166595 +k1,19822:23542226,16412563:166595 +(1,19822:23542226,16412563:0,452978,115847 +r1,19878:26362475,16412563:2820249,568825,115847 +k1,19822:23542226,16412563:-2820249 +) +(1,19822:23542226,16412563:2820249,452978,115847 +k1,19822:23542226,16412563:3277 +h1,19822:26359198,16412563:0,411205,112570 +) +k1,19822:26529069,16412563:166594 +k1,19822:28208890,16412563:166595 +k1,19822:29323135,16412563:166594 +k1,19822:30508815,16412563:166595 +k1,19822:32583029,16412563:0 +) +(1,19823:6630773,17277643:25952256,513147,7863 +k1,19822:8241211,17277643:216487 +k1,19822:9614408,17277643:216487 +k1,19822:11115401,17277643:216487 +k1,19822:13999860,17277643:216488 +k1,19822:15235432,17277643:216487 +k1,19822:17189934,17277643:216487 +k1,19822:18065713,17277643:216487 +k1,19822:19301285,17277643:216487 +k1,19822:22029112,17277643:216487 +k1,19822:22861637,17277643:216487 +k1,19822:25744129,17277643:216487 +k1,19822:26612045,17277643:216488 +k1,19822:28722522,17277643:216487 +k1,19822:30731419,17277643:216487 +k1,19822:31563944,17277643:216487 +k1,19822:32583029,17277643:0 +) +(1,19823:6630773,18142723:25952256,505283,126483 +g1,19822:8246890,18142723 +k1,19823:32583030,18142723:22366784 +g1,19823:32583030,18142723 +) +v1,19825:6630773,18827578:0,393216,0 +(1,19829:6630773,19174867:25952256,740505,196608 +g1,19829:6630773,19174867 +g1,19829:6630773,19174867 +g1,19829:6434165,19174867 +(1,19829:6434165,19174867:0,740505,196608 +r1,19878:32779637,19174867:26345472,937113,196608 +k1,19829:6434165,19174867:-26345472 +) +(1,19829:6434165,19174867:26345472,740505,196608 +[1,19829:6630773,19174867:25952256,543897,0 +(1,19827:6630773,19062015:25952256,431045,112852 +(1,19826:6630773,19062015:0,0,0 +g1,19826:6630773,19062015 +g1,19826:6630773,19062015 +g1,19826:6303093,19062015 +(1,19826:6303093,19062015:0,0,0 +) +g1,19826:6630773,19062015 +) +g1,19827:7294681,19062015 +g1,19827:7958589,19062015 +g1,19827:13269852,19062015 +g1,19827:13933760,19062015 +g1,19827:16921346,19062015 +g1,19827:18581116,19062015 +g1,19827:21568701,19062015 +g1,19827:22232609,19062015 +h1,19827:25884102,19062015:0,0,0 +k1,19827:32583029,19062015:6698927 +g1,19827:32583029,19062015 +) +] +) +g1,19829:32583029,19174867 +g1,19829:6630773,19174867 +g1,19829:6630773,19174867 +g1,19829:32583029,19174867 +g1,19829:32583029,19174867 +) +h1,19829:6630773,19371475:0,0,0 +(1,19832:6630773,28520677:25952256,9083666,0 +k1,19832:10523651,28520677:3892878 +h1,19831:10523651,28520677:0,0,0 +(1,19831:10523651,28520677:18166500,9083666,0 +(1,19831:10523651,28520677:18167376,9083688,0 +(1,19831:10523651,28520677:18167376,9083688,0 +(1,19831:10523651,28520677:0,9083688,0 +(1,19831:10523651,28520677:0,14208860,0 +(1,19831:10523651,28520677:28417720,14208860,0 +) +k1,19831:10523651,28520677:-28417720 +) +) +g1,19831:28691027,28520677 +) +) +) +g1,19832:28690151,28520677 +k1,19832:32583029,28520677:3892878 +) +v1,19839:6630773,29385757:0,393216,0 +(1,19867:6630773,42186880:25952256,13194339,0 +g1,19867:6630773,42186880 +g1,19867:6237557,42186880 +r1,19878:6368629,42186880:131072,13194339,0 +g1,19867:6567858,42186880 +g1,19867:6764466,42186880 +[1,19867:6764466,42186880:25818563,13194339,0 +(1,19840:6764466,29694055:25818563,701514,196608 +(1,19839:6764466,29694055:0,701514,196608 +r1,19878:8010564,29694055:1246098,898122,196608 +k1,19839:6764466,29694055:-1246098 +) +(1,19839:6764466,29694055:1246098,701514,196608 +) +k1,19839:8213047,29694055:202483 +k1,19839:8540727,29694055:327680 +k1,19839:12215963,29694055:202483 +k1,19839:13286797,29694055:202482 +k1,19839:14826214,29694055:202483 +k1,19839:16577313,29694055:202483 +k1,19839:17431224,29694055:202483 +k1,19839:19108922,29694055:202483 +k1,19839:23634815,29694055:202483 +k1,19839:27607583,29694055:202482 +k1,19839:28492951,29694055:202483 +k1,19839:30550758,29694055:202483 +k1,19839:32583029,29694055:0 +) +(1,19840:6764466,30559135:25818563,513147,134348 +k1,19839:7561427,30559135:180923 +k1,19839:8761435,30559135:180923 +k1,19839:10686272,30559135:180924 +k1,19839:13900201,30559135:180923 +k1,19839:15277811,30559135:180923 +k1,19839:16842854,30559135:180923 +k1,19839:19685194,30559135:180923 +k1,19839:21857102,30559135:180924 +k1,19839:22393885,30559135:180923 +k1,19839:23812783,30559135:180923 +k1,19839:24652998,30559135:180923 +k1,19839:27834159,30559135:180923 +k1,19839:29391994,30559135:180924 +k1,19839:30769604,30559135:180923 +k1,19839:32051532,30559135:180923 +k1,19839:32583029,30559135:0 +) +(1,19840:6764466,31424215:25818563,513147,134348 +g1,19839:7615123,31424215 +g1,19839:8906837,31424215 +g1,19839:9792228,31424215 +(1,19839:9792228,31424215:0,452978,115847 +r1,19878:12612477,31424215:2820249,568825,115847 +k1,19839:9792228,31424215:-2820249 +) +(1,19839:9792228,31424215:2820249,452978,115847 +k1,19839:9792228,31424215:3277 +h1,19839:12609200,31424215:0,411205,112570 +) +g1,19839:12811706,31424215 +g1,19839:13366795,31424215 +g1,19839:16261520,31424215 +g1,19839:17745255,31424215 +g1,19839:20017388,31424215 +g1,19839:23191296,31424215 +g1,19839:25586636,31424215 +g1,19839:27053331,31424215 +g1,19839:27667403,31424215 +k1,19840:32583029,31424215:971669 +g1,19840:32583029,31424215 +) +v1,19842:6764466,32109070:0,393216,0 +(1,19850:6764466,35195779:25818563,3479925,196608 +g1,19850:6764466,35195779 +g1,19850:6764466,35195779 +g1,19850:6567858,35195779 +(1,19850:6567858,35195779:0,3479925,196608 +r1,19878:32779637,35195779:26211779,3676533,196608 +k1,19850:6567857,35195779:-26211780 +) +(1,19850:6567858,35195779:26211779,3479925,196608 +[1,19850:6764466,35195779:25818563,3283317,0 +(1,19844:6764466,32343507:25818563,431045,106246 +(1,19843:6764466,32343507:0,0,0 +g1,19843:6764466,32343507 +g1,19843:6764466,32343507 +g1,19843:6436786,32343507 +(1,19843:6436786,32343507:0,0,0 +) +g1,19843:6764466,32343507 +) +g1,19844:11079868,32343507 +g1,19844:12075730,32343507 +k1,19844:12075730,32343507:0 +h1,19844:18050902,32343507:0,0,0 +k1,19844:32583029,32343507:14532127 +g1,19844:32583029,32343507 +) +(1,19845:6764466,33028362:25818563,424439,106246 +h1,19845:6764466,33028362:0,0,0 +g1,19845:7096420,33028362 +g1,19845:7428374,33028362 +g1,19845:7760328,33028362 +g1,19845:8092282,33028362 +g1,19845:8424236,33028362 +g1,19845:8756190,33028362 +g1,19845:9088144,33028362 +g1,19845:9420098,33028362 +g1,19845:9752052,33028362 +g1,19845:10084006,33028362 +g1,19845:10415960,33028362 +g1,19845:10747914,33028362 +g1,19845:11079868,33028362 +g1,19845:11411822,33028362 +g1,19845:11743776,33028362 +g1,19845:12075730,33028362 +g1,19845:12407684,33028362 +g1,19845:12739638,33028362 +g1,19845:13071592,33028362 +g1,19845:13403546,33028362 +g1,19845:13735500,33028362 +g1,19845:14067454,33028362 +g1,19845:14399408,33028362 +g1,19845:16723086,33028362 +g1,19845:17386994,33028362 +g1,19845:21038488,33028362 +g1,19845:23694120,33028362 +g1,19845:26681706,33028362 +h1,19845:28341476,33028362:0,0,0 +k1,19845:32583029,33028362:4241553 +g1,19845:32583029,33028362 +) +(1,19846:6764466,33713217:25818563,424439,112852 +h1,19846:6764466,33713217:0,0,0 +g1,19846:7760328,33713217 +g1,19846:8756190,33713217 +g1,19846:12739638,33713217 +g1,19846:13403546,33713217 +g1,19846:16059178,33713217 +g1,19846:19046764,33713217 +g1,19846:20706534,33713217 +h1,19846:21038488,33713217:0,0,0 +k1,19846:32583029,33713217:11544541 +g1,19846:32583029,33713217 +) +(1,19847:6764466,34398072:25818563,424439,112852 +h1,19847:6764466,34398072:0,0,0 +g1,19847:7096420,34398072 +g1,19847:7428374,34398072 +g1,19847:7760328,34398072 +g1,19847:8092282,34398072 +g1,19847:8424236,34398072 +g1,19847:8756190,34398072 +g1,19847:13071591,34398072 +h1,19847:13403545,34398072:0,0,0 +k1,19847:32583029,34398072:19179484 +g1,19847:32583029,34398072 +) +(1,19848:6764466,35082927:25818563,431045,112852 +h1,19848:6764466,35082927:0,0,0 +g1,19848:7096420,35082927 +g1,19848:7428374,35082927 +g1,19848:7760328,35082927 +g1,19848:8092282,35082927 +g1,19848:8424236,35082927 +g1,19848:8756190,35082927 +g1,19848:14067453,35082927 +g1,19848:14731361,35082927 +g1,19848:19046763,35082927 +g1,19848:22034348,35082927 +g1,19848:22698256,35082927 +h1,19848:27013657,35082927:0,0,0 +k1,19848:32583029,35082927:5569372 +g1,19848:32583029,35082927 +) +] +) +g1,19850:32583029,35195779 +g1,19850:6764466,35195779 +g1,19850:6764466,35195779 +g1,19850:32583029,35195779 +g1,19850:32583029,35195779 +) +h1,19850:6764466,35392387:0,0,0 +(1,19854:6764466,36257467:25818563,513147,126483 +h1,19853:6764466,36257467:983040,0,0 +k1,19853:9604188,36257467:262846 +k1,19853:13172015,36257467:262846 +k1,19853:14303213,36257467:262846 +k1,19853:15902994,36257467:262847 +k1,19853:17696106,36257467:262846 +k1,19853:18610380,36257467:262846 +k1,19853:21210895,36257467:262846 +k1,19853:22492826,36257467:262846 +k1,19853:24548082,36257467:262846 +k1,19853:25470220,36257467:262846 +k1,19853:26752152,36257467:262847 +k1,19853:28908988,36257467:262846 +k1,19853:30685060,36257467:262846 +k1,19853:31563944,36257467:262846 +k1,19853:32583029,36257467:0 +) +(1,19854:6764466,37122547:25818563,513147,134348 +k1,19853:9547357,37122547:234196 +k1,19853:10467716,37122547:234197 +k1,19853:12023773,37122547:234196 +k1,19853:12917262,37122547:234197 +k1,19853:14170543,37122547:234196 +k1,19853:16422594,37122547:234197 +k1,19853:18145113,37122547:234196 +k1,19853:19247661,37122547:234196 +k1,19853:20574343,37122547:234197 +k1,19853:21494701,37122547:234196 +(1,19853:21494701,37122547:0,452978,115847 +r1,19878:24314950,37122547:2820249,568825,115847 +k1,19853:21494701,37122547:-2820249 +) +(1,19853:21494701,37122547:2820249,452978,115847 +k1,19853:21494701,37122547:3277 +h1,19853:24311673,37122547:0,411205,112570 +) +k1,19853:24722817,37122547:234197 +k1,19853:27652509,37122547:234196 +(1,19853:27652509,37122547:0,452978,115847 +r1,19878:32583029,37122547:4930520,568825,115847 +k1,19853:27652509,37122547:-4930520 +) +(1,19853:27652509,37122547:4930520,452978,115847 +k1,19853:27652509,37122547:3277 +h1,19853:32579752,37122547:0,411205,112570 +) +k1,19853:32583029,37122547:0 +) +(1,19854:6764466,37987627:25818563,505283,126483 +k1,19853:8318678,37987627:160261 +k1,19853:8834799,37987627:160261 +k1,19853:11189204,37987627:160260 +k1,19853:13433510,37987627:160261 +k1,19853:14878277,37987627:160261 +k1,19853:17050493,37987627:160261 +k1,19853:17955897,37987627:160260 +k1,19853:18767586,37987627:160261 +k1,19853:20020332,37987627:160261 +k1,19853:20951296,37987627:160261 +k1,19853:24551541,37987627:160260 +k1,19853:26630696,37987627:160261 +k1,19853:30728360,37987627:160261 +k1,19853:32583029,37987627:0 +) +(1,19854:6764466,38852707:25818563,513147,126483 +k1,19853:7752421,38852707:178585 +k1,19853:8950092,38852707:178586 +k1,19853:10687123,38852707:178585 +k1,19853:13023810,38852707:178586 +k1,19853:14591758,38852707:178585 +k1,19853:16453309,38852707:178586 +k1,19853:18468213,38852707:178585 +k1,19853:19696686,38852707:178586 +k1,19853:22153958,38852707:178585 +h1,19853:23523005,38852707:0,0,0 +k1,19853:23701591,38852707:178586 +k1,19853:24827827,38852707:178585 +k1,19853:25777116,38852707:178586 +k1,19853:28617118,38852707:178585 +k1,19853:29454996,38852707:178586 +k1,19853:30652666,38852707:178585 +k1,19853:31923737,38852707:178586 +k1,19854:32583029,38852707:0 +) +(1,19854:6764466,39717787:25818563,513147,115847 +(1,19853:6764466,39717787:0,452978,115847 +r1,19878:9584715,39717787:2820249,568825,115847 +k1,19853:6764466,39717787:-2820249 +) +(1,19853:6764466,39717787:2820249,452978,115847 +k1,19853:6764466,39717787:3277 +h1,19853:9581438,39717787:0,411205,112570 +) +g1,19853:9957614,39717787 +g1,19853:11175928,39717787 +g1,19853:11790000,39717787 +g1,19853:14684725,39717787 +g1,19853:15693324,39717787 +g1,19853:17778024,39717787 +(1,19853:17778024,39717787:0,452978,115847 +r1,19878:22708544,39717787:4930520,568825,115847 +k1,19853:17778024,39717787:-4930520 +) +(1,19853:17778024,39717787:4930520,452978,115847 +k1,19853:17778024,39717787:3277 +h1,19853:22705267,39717787:0,411205,112570 +) +g1,19853:23081443,39717787 +g1,19853:23812169,39717787 +k1,19854:32583029,39717787:7118697 +g1,19854:32583029,39717787 +) +v1,19858:6764466,40402642:0,393216,0 +(1,19864:6764466,41990272:25818563,1980846,196608 +g1,19864:6764466,41990272 +g1,19864:6764466,41990272 +g1,19864:6567858,41990272 +(1,19864:6567858,41990272:0,1980846,196608 +r1,19878:32779637,41990272:26211779,2177454,196608 +k1,19864:6567857,41990272:-26211780 +) +(1,19864:6567858,41990272:26211779,1980846,196608 +[1,19864:6764466,41990272:25818563,1784238,0 +(1,19860:6764466,40514316:25818563,308282,106246 +(1,19859:6764466,40514316:0,0,0 +g1,19859:6764466,40514316 +g1,19859:6764466,40514316 +g1,19859:6436786,40514316 +(1,19859:6436786,40514316:0,0,0 +) +g1,19859:6764466,40514316 +) +g1,19860:7428374,40514316 +h1,19860:7760328,40514316:0,0,0 +k1,19860:32583028,40514316:24822700 +g1,19860:32583028,40514316 +) +(1,19861:6764466,41199171:25818563,431045,112852 +h1,19861:6764466,41199171:0,0,0 +g1,19861:7096420,41199171 +g1,19861:7428374,41199171 +g1,19861:12739637,41199171 +g1,19861:13403545,41199171 +k1,19861:13403545,41199171:0 +h1,19861:16723085,41199171:0,0,0 +k1,19861:32583029,41199171:15859944 +g1,19861:32583029,41199171 +) +(1,19862:6764466,41884026:25818563,424439,106246 +h1,19862:6764466,41884026:0,0,0 +g1,19862:7096420,41884026 +g1,19862:7428374,41884026 +g1,19862:7760328,41884026 +g1,19862:8092282,41884026 +g1,19862:8424236,41884026 +g1,19862:8756190,41884026 +g1,19862:9088144,41884026 +g1,19862:9420098,41884026 +g1,19862:9752052,41884026 +g1,19862:10084006,41884026 +g1,19862:10415960,41884026 +g1,19862:10747914,41884026 +g1,19862:11079868,41884026 +g1,19862:14067453,41884026 +g1,19862:14731361,41884026 +g1,19862:20706532,41884026 +g1,19862:21370440,41884026 +k1,19862:21370440,41884026:0 +h1,19862:28009519,41884026:0,0,0 +k1,19862:32583029,41884026:4573510 +g1,19862:32583029,41884026 +) +] +) +g1,19864:32583029,41990272 +g1,19864:6764466,41990272 +g1,19864:6764466,41990272 +g1,19864:32583029,41990272 +g1,19864:32583029,41990272 +) +h1,19864:6764466,42186880:0,0,0 +] +g1,19867:32583029,42186880 +) +h1,19867:6630773,42186880:0,0,0 +(1,19874:6630773,43051960:25952256,513147,126483 +h1,19873:6630773,43051960:983040,0,0 +k1,19873:8423969,43051960:182321 +k1,19873:9625375,43051960:182321 +k1,19873:11191816,43051960:182321 +k1,19873:14035555,43051960:182322 +k1,19873:15086228,43051960:182321 +k1,19873:17197929,43051960:182321 +k1,19873:17736110,43051960:182321 +k1,19873:19195728,43051960:182321 +k1,19873:20772000,43051960:182321 +k1,19873:23729115,43051960:182321 +k1,19873:25973854,43051960:182321 +k1,19873:26784011,43051960:182322 +k1,19873:28169573,43051960:182321 +k1,19873:29718975,43051960:182321 +k1,19873:30920381,43051960:182321 +k1,19874:32583029,43051960:0 +) +(1,19874:6630773,43917040:25952256,513147,134348 +k1,19873:7855247,43917040:188350 +k1,19873:8702890,43917040:188351 +k1,19873:10683650,43917040:188350 +k1,19873:11403498,43917040:188351 +k1,19873:13481906,43917040:188350 +k1,19873:14861701,43917040:188350 +k1,19873:15859422,43917040:188351 +k1,19873:19044733,43917040:188350 +k1,19873:20916049,43917040:188351 +k1,19873:22767047,43917040:188350 +k1,19873:23716925,43917040:188350 +k1,19873:26344526,43917040:188351 +k1,19873:27160711,43917040:188350 +k1,19873:29046444,43917040:188351 +k1,19873:30932832,43917040:188350 +k1,19873:32583029,43917040:0 +) +(1,19874:6630773,44782120:25952256,513147,134348 +k1,19873:8951566,44782120:246579 +k1,19873:10189705,44782120:246579 +k1,19873:13015782,44782120:246580 +k1,19873:16259322,44782120:246579 +k1,19873:17773367,44782120:246579 +k1,19873:19192385,44782120:246579 +k1,19873:20121849,44782120:246579 +k1,19873:22018625,44782120:246579 +k1,19873:26319262,44782120:246580 +k1,19873:28100039,44782120:246579 +k1,19873:28878115,44782120:246579 +k1,19873:30143779,44782120:246579 +k1,19873:32583029,44782120:0 +) +] +(1,19878:32583029,45706769:0,0,0 +g1,19878:32583029,45706769 +) +) +] +(1,19878:6630773,47279633:25952256,0,0 +h1,19878:6630773,47279633:25952256,0,0 +) +] +(1,19878:4262630,4025873:0,0,0 +[1,19878:-473656,4025873:0,0,0 +(1,19878:-473656,-710413:0,0,0 +(1,19878:-473656,-710413:0,0,0 +g1,19878:-473656,-710413 +) +g1,19878:-473656,-710413 +) +] +) +] +!20222 +}336 +Input:3144:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3145:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3146:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3147:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3148:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3149:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3150:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3151:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3152:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3153:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3154:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3155:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3156:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3157:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3158:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3159:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3160:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3161:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3162:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3163:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3164:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1986 +{337 +[1,19925:4262630,47279633:28320399,43253760,0 +(1,19925:4262630,4025873:0,0,0 +[1,19925:-473656,4025873:0,0,0 +(1,19925:-473656,-710413:0,0,0 +(1,19925:-473656,-644877:0,0,0 +k1,19925:-473656,-644877:-65536 +) +(1,19925:-473656,4736287:0,0,0 +k1,19925:-473656,4736287:5209943 ) -g1,20047:-473656,-710413 +g1,19925:-473656,-710413 ) ] ) -[1,20047:6630773,47279633:25952256,43253760,0 -[1,20047:6630773,4812305:25952256,786432,0 -(1,20047:6630773,4812305:25952256,513147,126483 -(1,20047:6630773,4812305:25952256,513147,126483 -g1,20047:3078558,4812305 -[1,20047:3078558,4812305:0,0,0 -(1,20047:3078558,2439708:0,1703936,0 -k1,20047:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,20047:2537886,2439708:1179648,16384,0 +[1,19925:6630773,47279633:25952256,43253760,0 +[1,19925:6630773,4812305:25952256,786432,0 +(1,19925:6630773,4812305:25952256,513147,126483 +(1,19925:6630773,4812305:25952256,513147,126483 +g1,19925:3078558,4812305 +[1,19925:3078558,4812305:0,0,0 +(1,19925:3078558,2439708:0,1703936,0 +k1,19925:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,19925:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,20047:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,19925:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,20047:3078558,4812305:0,0,0 -(1,20047:3078558,2439708:0,1703936,0 -g1,20047:29030814,2439708 -g1,20047:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,20047:36151628,1915420:16384,1179648,0 +[1,19925:3078558,4812305:0,0,0 +(1,19925:3078558,2439708:0,1703936,0 +g1,19925:29030814,2439708 +g1,19925:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,19925:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,20047:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,19925:37855564,2439708:1179648,16384,0 ) ) -k1,20047:3078556,2439708:-34777008 +k1,19925:3078556,2439708:-34777008 ) ] -[1,20047:3078558,4812305:0,0,0 -(1,20047:3078558,49800853:0,16384,2228224 -k1,20047:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,20047:2537886,49800853:1179648,16384,0 +[1,19925:3078558,4812305:0,0,0 +(1,19925:3078558,49800853:0,16384,2228224 +k1,19925:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,19925:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,20047:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,19925:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,20047:3078558,4812305:0,0,0 -(1,20047:3078558,49800853:0,16384,2228224 -g1,20047:29030814,49800853 -g1,20047:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,20047:36151628,51504789:16384,1179648,0 +[1,19925:3078558,4812305:0,0,0 +(1,19925:3078558,49800853:0,16384,2228224 +g1,19925:29030814,49800853 +g1,19925:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,19925:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,20047:37855564,49800853:1179648,16384,0 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,19925:37855564,49800853:1179648,16384,0 ) ) -k1,20047:3078556,49800853:-34777008 +k1,19925:3078556,49800853:-34777008 ) ] -g1,20047:6630773,4812305 -k1,20047:21350816,4812305:13524666 -g1,20047:21999622,4812305 -g1,20047:25611966,4812305 -g1,20047:28956923,4812305 -g1,20047:29772190,4812305 +g1,19925:6630773,4812305 +k1,19925:21350816,4812305:13524666 +g1,19925:21999622,4812305 +g1,19925:25611966,4812305 +g1,19925:28956923,4812305 +g1,19925:29772190,4812305 ) ) ] -[1,20047:6630773,45706769:25952256,40108032,0 -(1,20047:6630773,45706769:25952256,40108032,0 -(1,20047:6630773,45706769:0,0,0 -g1,20047:6630773,45706769 +[1,19925:6630773,45706769:25952256,40108032,0 +(1,19925:6630773,45706769:25952256,40108032,0 +(1,19925:6630773,45706769:0,0,0 +g1,19925:6630773,45706769 ) -[1,20047:6630773,45706769:25952256,40108032,0 -v1,19994:6630773,6254097:0,393216,0 -(1,20000:6630773,7907841:25952256,2046960,196608 -g1,20000:6630773,7907841 -g1,20000:6630773,7907841 -g1,20000:6434165,7907841 -(1,20000:6434165,7907841:0,2046960,196608 -r1,20047:32779637,7907841:26345472,2243568,196608 -k1,20000:6434165,7907841:-26345472 +[1,19925:6630773,45706769:25952256,40108032,0 +(1,19874:6630773,6254097:25952256,513147,134348 +k1,19873:8454782,6254097:162016 +k1,19873:9485150,6254097:162016 +k1,19873:11275736,6254097:162016 +k1,19873:14434714,6254097:162017 +k1,19873:15990681,6254097:162016 +(1,19873:15990681,6254097:0,435480,115847 +r1,19925:18810930,6254097:2820249,551327,115847 +k1,19873:15990681,6254097:-2820249 ) -(1,20000:6434165,7907841:26345472,2046960,196608 -[1,20000:6630773,7907841:25952256,1850352,0 -(1,19996:6630773,6468007:25952256,410518,107478 -(1,19995:6630773,6468007:0,0,0 -g1,19995:6630773,6468007 -g1,19995:6630773,6468007 -g1,19995:6303093,6468007 -(1,19995:6303093,6468007:0,0,0 -) -g1,19995:6630773,6468007 -) -k1,19996:6630773,6468007:0 -g1,19996:12637541,6468007 -g1,19996:14850561,6468007 -g1,19996:15482853,6468007 -g1,19996:16115145,6468007 -g1,19996:18328165,6468007 -h1,19996:18644311,6468007:0,0,0 -k1,19996:32583029,6468007:13938718 -g1,19996:32583029,6468007 -) -(1,19997:6630773,7134185:25952256,404226,107478 -h1,19997:6630773,7134185:0,0,0 -g1,19997:6946919,7134185 -g1,19997:7263065,7134185 -g1,19997:11372959,7134185 -h1,19997:11689105,7134185:0,0,0 -k1,19997:32583029,7134185:20893924 -g1,19997:32583029,7134185 -) -(1,19998:6630773,7800363:25952256,404226,107478 -h1,19998:6630773,7800363:0,0,0 -k1,19998:6914937,7800363:284164 -k1,19998:7199101,7800363:284164 -k1,19998:14754615,7800363:284163 -k1,19998:15354925,7800363:284164 -k1,19998:17852109,7800363:284164 -k1,19998:20033147,7800363:284164 -k1,19998:20633456,7800363:284163 -k1,19998:27872825,7800363:284164 -k1,19998:28473135,7800363:284164 -k1,19998:28473135,7800363:0 -h1,19998:32583029,7800363:0,0,0 -k1,19998:32583029,7800363:0 -k1,19998:32583029,7800363:0 -) -] -) -g1,20000:32583029,7907841 -g1,20000:6630773,7907841 -g1,20000:6630773,7907841 -g1,20000:32583029,7907841 -g1,20000:32583029,7907841 -) -h1,20000:6630773,8104449:0,0,0 -(1,20003:6630773,19204762:25952256,10510489,0 -k1,20003:12599879,19204762:5969106 -h1,20002:12599879,19204762:0,0,0 -(1,20002:12599879,19204762:14014044,10510489,0 -(1,20002:12599879,19204762:14014019,10510515,0 -(1,20002:12599879,19204762:14014019,10510515,0 -(1,20002:12599879,19204762:0,10510515,0 -(1,20002:12599879,19204762:0,14208860,0 -(1,20002:12599879,19204762:18945146,14208860,0 -) -k1,20002:12599879,19204762:-18945146 -) -) -g1,20002:26613898,19204762 -) -) -) -g1,20003:26613923,19204762 -k1,20003:32583029,19204762:5969106 -) -(1,20010:6630773,20046250:25952256,513147,138281 -h1,20009:6630773,20046250:983040,0,0 -k1,20009:9413029,20046250:320068 -k1,20009:11113940,20046250:320067 -k1,20009:13444653,20046250:320068 -k1,20009:16350115,20046250:320067 -k1,20009:17321611,20046250:320068 -$1,20009:17321611,20046250 -$1,20009:17824272,20046250 -k1,20009:18144340,20046250:320068 -k1,20009:19147292,20046250:320067 -$1,20009:19147292,20046250 -$1,20009:19699105,20046250 -k1,20009:20192843,20046250:320068 -k1,20009:21697147,20046250:320068 -k1,20009:23861397,20046250:320067 -k1,20009:25173025,20046250:320068 -k1,20009:27843213,20046250:320067 -k1,20009:29557232,20046250:320068 -k1,20010:32583029,20046250:0 -) -(1,20010:6630773,20887738:25952256,513147,115847 -(1,20009:6630773,20887738:0,452978,115847 -r1,20047:10857869,20887738:4227096,568825,115847 -k1,20009:6630773,20887738:-4227096 -) -(1,20009:6630773,20887738:4227096,452978,115847 -k1,20009:6630773,20887738:3277 -h1,20009:10854592,20887738:0,411205,112570 -) -k1,20009:11120484,20887738:262615 -k1,20009:12065984,20887738:262615 -(1,20009:12065984,20887738:0,452978,115847 -r1,20047:18403351,20887738:6337367,568825,115847 -k1,20009:12065984,20887738:-6337367 -) -(1,20009:12065984,20887738:6337367,452978,115847 -k1,20009:12065984,20887738:3277 -h1,20009:18400074,20887738:0,411205,112570 -) -k1,20009:18839637,20887738:262616 -k1,20009:19730087,20887738:262615 -k1,20009:21011787,20887738:262615 -k1,20009:22641483,20887738:262615 -k1,20009:23563390,20887738:262615 -k1,20009:25425083,20887738:262615 -k1,20009:26871935,20887738:262616 -k1,20009:28978733,20887738:262615 -k1,20009:30232908,20887738:262615 -k1,20009:32583029,20887738:0 -) -(1,20010:6630773,21729226:25952256,513147,115847 -g1,20009:8223953,21729226 -g1,20009:11118678,21729226 -(1,20009:11118678,21729226:0,452978,115847 -r1,20047:15345774,21729226:4227096,568825,115847 -k1,20009:11118678,21729226:-4227096 -) -(1,20009:11118678,21729226:4227096,452978,115847 -k1,20009:11118678,21729226:3277 -h1,20009:15342497,21729226:0,411205,112570 -) -k1,20010:32583028,21729226:17063584 -g1,20010:32583028,21729226 -) -v1,20012:6630773,22919692:0,393216,0 -(1,20016:6630773,23234789:25952256,708313,196608 -g1,20016:6630773,23234789 -g1,20016:6630773,23234789 -g1,20016:6434165,23234789 -(1,20016:6434165,23234789:0,708313,196608 -r1,20047:32779637,23234789:26345472,904921,196608 -k1,20016:6434165,23234789:-26345472 -) -(1,20016:6434165,23234789:26345472,708313,196608 -[1,20016:6630773,23234789:25952256,511705,0 -(1,20014:6630773,23133602:25952256,410518,101187 -(1,20013:6630773,23133602:0,0,0 -g1,20013:6630773,23133602 -g1,20013:6630773,23133602 -g1,20013:6303093,23133602 -(1,20013:6303093,23133602:0,0,0 -) -g1,20013:6630773,23133602 -) -g1,20014:7579210,23133602 -g1,20014:8843793,23133602 -g1,20014:11689104,23133602 -g1,20014:13585978,23133602 -g1,20014:16115144,23133602 -g1,20014:17379727,23133602 -g1,20014:19276601,23133602 -g1,20014:20541184,23133602 -k1,20014:20541184,23133602:0 -h1,20014:22121912,23133602:0,0,0 -k1,20014:32583029,23133602:10461117 -g1,20014:32583029,23133602 -) -] -) -g1,20016:32583029,23234789 -g1,20016:6630773,23234789 -g1,20016:6630773,23234789 -g1,20016:32583029,23234789 -g1,20016:32583029,23234789 -) -h1,20016:6630773,23431397:0,0,0 -(1,20020:6630773,24797173:25952256,513147,126483 -h1,20019:6630773,24797173:983040,0,0 -g1,20019:8282935,24797173 -g1,20019:9013661,24797173 -g1,20019:10498706,24797173 -g1,20019:13327895,24797173 -g1,20019:14178552,24797173 -g1,20019:15470266,24797173 -g1,20019:19644909,24797173 -g1,20019:22869935,24797173 -g1,20019:24535860,24797173 -g1,20019:25682740,24797173 -g1,20019:27996816,24797173 -g1,20019:29387490,24797173 -k1,20020:32583029,24797173:1177685 -g1,20020:32583029,24797173 -) -(1,20021:6630773,26425093:25952256,513147,7863 -(1,20021:6630773,26425093:0,0,0 -g1,20021:6630773,26425093 -) -g1,20021:11151446,26425093 -k1,20021:32583030,26425093:19444532 -g1,20021:32583030,26425093 -) -(1,20024:6630773,27659797:25952256,513147,126483 -k1,20023:8173387,27659797:345927 -k1,20023:10784893,27659797:345926 -k1,20023:13033330,27659797:345927 -k1,20023:14892483,27659797:345927 -k1,20023:15999937,27659797:345926 -k1,20023:17364949,27659797:345927 -(1,20023:17364949,27659797:0,414482,115847 -r1,20047:17723215,27659797:358266,530329,115847 -k1,20023:17364949,27659797:-358266 -) -(1,20023:17364949,27659797:358266,414482,115847 -k1,20023:17364949,27659797:3277 -h1,20023:17719938,27659797:0,411205,112570 -) -k1,20023:18069141,27659797:345926 -k1,20023:19606513,27659797:345927 -(1,20023:19606513,27659797:0,414482,115847 -r1,20047:19964779,27659797:358266,530329,115847 -k1,20023:19606513,27659797:-358266 -) -(1,20023:19606513,27659797:358266,414482,115847 -k1,20023:19606513,27659797:3277 -h1,20023:19961502,27659797:0,411205,112570 -) -k1,20023:20310706,27659797:345927 -k1,20023:24004866,27659797:345926 -(1,20023:24004866,27659797:0,452978,115847 -r1,20047:31045657,27659797:7040791,568825,115847 -k1,20023:24004866,27659797:-7040791 -) -(1,20023:24004866,27659797:7040791,452978,115847 -k1,20023:24004866,27659797:3277 -h1,20023:31042380,27659797:0,411205,112570 -) -k1,20023:31391584,27659797:345927 -k1,20024:32583029,27659797:0 -) -(1,20024:6630773,28501285:25952256,513147,134348 -(1,20023:6630773,28501285:0,452978,115847 -r1,20047:13671564,28501285:7040791,568825,115847 -k1,20023:6630773,28501285:-7040791 -) -(1,20023:6630773,28501285:7040791,452978,115847 -k1,20023:6630773,28501285:3277 -h1,20023:13668287,28501285:0,411205,112570 -) -k1,20023:14013138,28501285:167904 -k1,20023:16229042,28501285:167904 -k1,20023:16752806,28501285:167904 -k1,20023:21275576,28501285:167903 -k1,20023:26280692,28501285:167904 -k1,20023:29144092,28501285:167904 -k1,20023:29998158,28501285:167904 -k1,20023:30936765,28501285:167904 -k1,20024:32583029,28501285:0 -) -(1,20024:6630773,29342773:25952256,513147,126483 -k1,20023:8430192,29342773:160364 -k1,20023:9241983,29342773:160363 -(1,20023:9241983,29342773:0,414482,115847 -r1,20047:11007096,29342773:1765113,530329,115847 -k1,20023:9241983,29342773:-1765113 -) -(1,20023:9241983,29342773:1765113,414482,115847 -k1,20023:9241983,29342773:3277 -h1,20023:11003819,29342773:0,411205,112570 -) -k1,20023:11167460,29342773:160364 -k1,20023:12721775,29342773:160364 -k1,20023:15147718,29342773:160363 -k1,20023:18450533,29342773:160364 -k1,20023:19179093,29342773:160363 -k1,20023:22399988,29342773:160364 -k1,20023:23576815,29342773:160364 -k1,20023:28955155,29342773:160363 -k1,20023:29743354,29342773:160364 -k1,20023:32583029,29342773:0 -) -(1,20024:6630773,30184261:25952256,513147,126483 -g1,20023:8484786,30184261 -g1,20023:9675575,30184261 -g1,20023:13312823,30184261 -g1,20023:17418653,30184261 -g1,20023:19190091,30184261 -g1,20023:22415117,30184261 -g1,20023:23561997,30184261 -(1,20023:23561997,30184261:0,452978,122846 -r1,20047:25327110,30184261:1765113,575824,122846 -k1,20023:23561997,30184261:-1765113 -) -(1,20023:23561997,30184261:1765113,452978,122846 -k1,20023:23561997,30184261:3277 -h1,20023:25323833,30184261:0,411205,112570 -) -g1,20023:25700009,30184261 -(1,20023:25700009,30184261:0,414482,115847 -r1,20047:27113410,30184261:1413401,530329,115847 -k1,20023:25700009,30184261:-1413401 -) -(1,20023:25700009,30184261:1413401,414482,115847 -k1,20023:25700009,30184261:3277 -h1,20023:27110133,30184261:0,411205,112570 -) -g1,20023:27312639,30184261 -g1,20023:28703313,30184261 -(1,20023:28703313,30184261:0,414482,115847 -r1,20047:31171850,30184261:2468537,530329,115847 -k1,20023:28703313,30184261:-2468537 -) -(1,20023:28703313,30184261:2468537,414482,115847 -k1,20023:28703313,30184261:3277 -h1,20023:31168573,30184261:0,411205,112570 -) -k1,20024:32583029,30184261:1237509 -g1,20024:32583029,30184261 -) -v1,20026:6630773,31550037:0,393216,0 -(1,20027:6630773,33787945:25952256,2631124,0 -g1,20027:6630773,33787945 -g1,20027:6303093,33787945 -r1,20047:6401397,33787945:98304,2631124,0 -g1,20027:6600626,33787945 -g1,20027:6797234,33787945 -[1,20027:6797234,33787945:25785795,2631124,0 -(1,20027:6797234,31970621:25785795,813800,267386 -(1,20026:6797234,31970621:0,813800,267386 -r1,20047:8134168,31970621:1336934,1081186,267386 -k1,20026:6797234,31970621:-1336934 -) -(1,20026:6797234,31970621:1336934,813800,267386 -) -k1,20026:8644542,31970621:510374 -k1,20026:8972222,31970621:327680 -k1,20026:11709510,31970621:510375 -k1,20026:12871312,31970621:510374 -k1,20026:14400771,31970621:510374 -k1,20026:16889022,31970621:510374 -k1,20026:20425194,31970621:510375 -k1,20026:21602724,31970621:510374 -k1,20026:22701611,31970621:510374 -k1,20026:24231070,31970621:510374 -k1,20026:26479460,31970621:510375 -k1,20026:27649126,31970621:510374 -k1,20026:29178585,31970621:510374 -k1,20026:31591469,31970621:510374 -k1,20027:32583029,31970621:0 -) -(1,20027:6797234,32812109:25785795,505283,122846 -(1,20026:6797234,32812109:0,452978,122846 -r1,20047:12079465,32812109:5282231,575824,122846 -k1,20026:6797234,32812109:-5282231 -) -(1,20026:6797234,32812109:5282231,452978,122846 -k1,20026:6797234,32812109:3277 -h1,20026:12076188,32812109:0,411205,112570 -) -k1,20026:12369806,32812109:290341 -k1,20026:13851593,32812109:290342 -(1,20026:13851593,32812109:0,452978,122846 -r1,20047:19133824,32812109:5282231,575824,122846 -k1,20026:13851593,32812109:-5282231 -) -(1,20026:13851593,32812109:5282231,452978,122846 -k1,20026:13851593,32812109:3277 -h1,20026:19130547,32812109:0,411205,112570 -) -k1,20026:19424165,32812109:290341 -k1,20026:21666168,32812109:290341 -k1,20026:23398956,32812109:290341 -(1,20026:23398956,32812109:0,452978,122846 -r1,20047:27977764,32812109:4578808,575824,122846 -k1,20026:23398956,32812109:-4578808 -) -(1,20026:23398956,32812109:4578808,452978,122846 -k1,20026:23398956,32812109:3277 -h1,20026:27974487,32812109:0,411205,112570 -) -k1,20026:28268106,32812109:290342 -k1,20026:31088137,32812109:290341 -k1,20026:31994516,32812109:290341 -k1,20026:32583029,32812109:0 -) -(1,20027:6797234,33653597:25785795,513147,134348 -g1,20026:8015548,33653597 -g1,20026:10910273,33653597 -(1,20026:10910273,33653597:0,452978,122846 -r1,20047:11971962,33653597:1061689,575824,122846 -k1,20026:10910273,33653597:-1061689 -) -(1,20026:10910273,33653597:1061689,452978,122846 -k1,20026:10910273,33653597:3277 -h1,20026:11968685,33653597:0,411205,112570 -) -g1,20026:12171191,33653597 -g1,20026:14711366,33653597 -g1,20026:15929680,33653597 -g1,20026:18420703,33653597 -k1,20027:32583029,33653597:10877662 -g1,20027:32583029,33653597 -) -] -g1,20027:32583029,33787945 -) -h1,20027:6630773,33787945:0,0,0 -(1,20030:6630773,35153721:25952256,513147,115847 -h1,20029:6630773,35153721:983040,0,0 -g1,20029:8766591,35153721 -g1,20029:10070102,35153721 -g1,20029:11361816,35153721 -(1,20029:11361816,35153721:0,452978,115847 -r1,20047:17347471,35153721:5985655,568825,115847 -k1,20029:11361816,35153721:-5985655 -) -(1,20029:11361816,35153721:5985655,452978,115847 -k1,20029:11361816,35153721:3277 -h1,20029:17344194,35153721:0,411205,112570 -) -g1,20029:17546700,35153721 -g1,20029:18397357,35153721 -g1,20029:20902798,35153721 -g1,20029:22121112,35153721 -g1,20029:25179021,35153721 -g1,20029:26037542,35153721 -g1,20029:26592631,35153721 -g1,20029:30362261,35153721 -k1,20030:32583029,35153721:474889 -g1,20030:32583029,35153721 -) -v1,20032:6630773,36344187:0,393216,0 -(1,20038:6630773,37966474:25952256,2015503,196608 -g1,20038:6630773,37966474 -g1,20038:6630773,37966474 -g1,20038:6434165,37966474 -(1,20038:6434165,37966474:0,2015503,196608 -r1,20047:32779637,37966474:26345472,2212111,196608 -k1,20038:6434165,37966474:-26345472 -) -(1,20038:6434165,37966474:26345472,2015503,196608 -[1,20038:6630773,37966474:25952256,1818895,0 -(1,20034:6630773,36558097:25952256,410518,107478 -(1,20033:6630773,36558097:0,0,0 -g1,20033:6630773,36558097 -g1,20033:6630773,36558097 -g1,20033:6303093,36558097 -(1,20033:6303093,36558097:0,0,0 -) -g1,20033:6630773,36558097 -) -k1,20034:6630773,36558097:0 -g1,20034:12637541,36558097 -g1,20034:14850561,36558097 -g1,20034:16115144,36558097 -h1,20034:16431290,36558097:0,0,0 -k1,20034:32583029,36558097:16151739 -g1,20034:32583029,36558097 -) -(1,20035:6630773,37224275:25952256,404226,107478 -h1,20035:6630773,37224275:0,0,0 -g1,20035:6946919,37224275 -g1,20035:7263065,37224275 -g1,20035:11372959,37224275 -h1,20035:11689105,37224275:0,0,0 -k1,20035:32583029,37224275:20893924 -g1,20035:32583029,37224275 -) -(1,20036:6630773,37890453:25952256,404226,76021 -h1,20036:6630773,37890453:0,0,0 -g1,20036:6946919,37890453 -g1,20036:7263065,37890453 -k1,20036:7263065,37890453:0 -h1,20036:12637541,37890453:0,0,0 -k1,20036:32583029,37890453:19945488 -g1,20036:32583029,37890453 -) -] -) -g1,20038:32583029,37966474 -g1,20038:6630773,37966474 -g1,20038:6630773,37966474 -g1,20038:32583029,37966474 -g1,20038:32583029,37966474 -) -h1,20038:6630773,38163082:0,0,0 -] -(1,20047:32583029,45706769:0,0,0 -g1,20047:32583029,45706769 -) -) -] -(1,20047:6630773,47279633:25952256,0,0 -h1,20047:6630773,47279633:25952256,0,0 -) -] -(1,20047:4262630,4025873:0,0,0 -[1,20047:-473656,4025873:0,0,0 -(1,20047:-473656,-710413:0,0,0 -(1,20047:-473656,-710413:0,0,0 -g1,20047:-473656,-710413 +(1,19873:15990681,6254097:2820249,435480,115847 +g1,19873:17752517,6254097 +g1,19873:18455941,6254097 +h1,19873:18807653,6254097:0,411205,112570 +) +k1,19873:19146616,6254097:162016 +k1,19873:21091867,6254097:162016 +k1,19873:22989276,6254097:162016 +(1,19873:22989276,6254097:0,459977,115847 +r1,19925:27216372,6254097:4227096,575824,115847 +k1,19873:22989276,6254097:-4227096 +) +(1,19873:22989276,6254097:4227096,459977,115847 +k1,19873:22989276,6254097:3277 +h1,19873:27213095,6254097:0,411205,112570 ) -g1,20047:-473656,-710413 -) -] -) -] -!18266 -}359 -Input:3252:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3253:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3254:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3255:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3256:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3257:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3258:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3259:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!764 -{360 -[1,20114:4262630,47279633:28320399,43253760,0 -(1,20114:4262630,4025873:0,0,0 -[1,20114:-473656,4025873:0,0,0 -(1,20114:-473656,-710413:0,0,0 -(1,20114:-473656,-644877:0,0,0 -k1,20114:-473656,-644877:-65536 +k1,19873:27378388,6254097:162016 +k1,19873:29195189,6254097:162017 +k1,19873:29888702,6254097:162016 +k1,19873:31426319,6254097:162016 +k1,19873:32583029,6254097:0 +) +(1,19874:6630773,7119177:25952256,513147,126483 +g1,19873:10348630,7119177 +g1,19873:11739304,7119177 +g1,19873:12957618,7119177 +g1,19873:16437579,7119177 +g1,19873:17168305,7119177 +g1,19873:19235310,7119177 +(1,19873:19235310,7119177:0,459977,115847 +r1,19925:21352135,7119177:2116825,575824,115847 +k1,19873:19235310,7119177:-2116825 +) +(1,19873:19235310,7119177:2116825,459977,115847 +k1,19873:19235310,7119177:3277 +h1,19873:21348858,7119177:0,411205,112570 +) +g1,19873:21725034,7119177 +g1,19873:24251446,7119177 +g1,19873:25117831,7119177 +(1,19873:25117831,7119177:0,414482,115847 +r1,19925:26531232,7119177:1413401,530329,115847 +k1,19873:25117831,7119177:-1413401 +) +(1,19873:25117831,7119177:1413401,414482,115847 +k1,19873:25117831,7119177:3277 +h1,19873:26527955,7119177:0,411205,112570 +) +g1,19873:26730461,7119177 +g1,19873:27612575,7119177 +(1,19873:27612575,7119177:0,452978,115847 +r1,19925:29025976,7119177:1413401,568825,115847 +k1,19873:27612575,7119177:-1413401 +) +(1,19873:27612575,7119177:1413401,452978,115847 +k1,19873:27612575,7119177:3277 +h1,19873:29022699,7119177:0,411205,112570 +) +k1,19874:32583029,7119177:3383383 +g1,19874:32583029,7119177 +) +v1,19878:6630773,7804032:0,393216,0 +(1,19882:6630773,8144715:25952256,733899,196608 +g1,19882:6630773,8144715 +g1,19882:6630773,8144715 +g1,19882:6434165,8144715 +(1,19882:6434165,8144715:0,733899,196608 +r1,19925:32779637,8144715:26345472,930507,196608 +k1,19882:6434165,8144715:-26345472 +) +(1,19882:6434165,8144715:26345472,733899,196608 +[1,19882:6630773,8144715:25952256,537291,0 +(1,19880:6630773,8038469:25952256,431045,106246 +(1,19879:6630773,8038469:0,0,0 +g1,19879:6630773,8038469 +g1,19879:6630773,8038469 +g1,19879:6303093,8038469 +(1,19879:6303093,8038469:0,0,0 +) +g1,19879:6630773,8038469 +) +g1,19880:7294681,8038469 +g1,19880:7958589,8038469 +g1,19880:13933760,8038469 +g1,19880:14597668,8038469 +g1,19880:18249162,8038469 +g1,19880:19908932,8038469 +g1,19880:20572840,8038469 +h1,19880:21236748,8038469:0,0,0 +k1,19880:32583029,8038469:11346281 +g1,19880:32583029,8038469 +) +] +) +g1,19882:32583029,8144715 +g1,19882:6630773,8144715 +g1,19882:6630773,8144715 +g1,19882:32583029,8144715 +g1,19882:32583029,8144715 +) +h1,19882:6630773,8341323:0,0,0 +(1,19885:6630773,22420843:25952256,14013984,0 +k1,19885:12599879,22420843:5969106 +h1,19884:12599879,22420843:0,0,0 +(1,19884:12599879,22420843:14014044,14013984,0 +(1,19884:12599879,22420843:14014019,14014019,0 +(1,19884:12599879,22420843:14014019,14014019,0 +(1,19884:12599879,22420843:0,14014019,0 +(1,19884:12599879,22420843:0,18945146,0 +(1,19884:12599879,22420843:18945146,18945146,0 +) +k1,19884:12599879,22420843:-18945146 +) +) +g1,19884:26613898,22420843 +) +) +) +g1,19885:26613923,22420843 +k1,19885:32583029,22420843:5969106 +) +(1,19892:6630773,23285923:25952256,513147,126483 +h1,19891:6630773,23285923:983040,0,0 +k1,19891:8964071,23285923:153571 +k1,19891:11779059,23285923:153571 +k1,19891:13801062,23285923:153572 +k1,19891:15439023,23285923:153571 +k1,19891:16658865,23285923:153571 +k1,19891:19268725,23285923:153571 +k1,19891:19953794,23285923:153572 +k1,19891:22309375,23285923:153571 +k1,19891:23114374,23285923:153571 +k1,19891:24287030,23285923:153571 +k1,19891:26474184,23285923:153572 +k1,19891:27784465,23285923:153571 +k1,19891:28885687,23285923:153571 +(1,19891:28885687,23285923:0,459977,122846 +r1,19925:32409359,23285923:3523672,582823,122846 +k1,19891:28885687,23285923:-3523672 +) +(1,19891:28885687,23285923:3523672,459977,122846 +k1,19891:28885687,23285923:3277 +h1,19891:32406082,23285923:0,411205,112570 +) +k1,19891:32583029,23285923:0 +) +(1,19892:6630773,24151003:25952256,513147,134348 +k1,19891:7957220,24151003:254278 +k1,19891:10760192,24151003:254277 +k1,19891:14131362,24151003:254278 +k1,19891:15037067,24151003:254277 +k1,19891:16463784,24151003:254278 +k1,19891:18942353,24151003:254277 +k1,19891:20590582,24151003:254278 +(1,19891:20590582,24151003:0,459977,115847 +r1,19925:24817678,24151003:4227096,575824,115847 +k1,19891:20590582,24151003:-4227096 +) +(1,19891:20590582,24151003:4227096,459977,115847 +k1,19891:20590582,24151003:3277 +h1,19891:24814401,24151003:0,411205,112570 +) +k1,19891:25071955,24151003:254277 +k1,19891:27070801,24151003:254278 +k1,19891:27680938,24151003:254277 +k1,19891:29808235,24151003:254278 +k1,19891:32583029,24151003:0 +) +(1,19892:6630773,25016083:25952256,513147,126483 +g1,19891:8033898,25016083 +g1,19891:8892419,25016083 +k1,19892:32583028,25016083:21442724 +g1,19892:32583028,25016083 +) +v1,19894:6630773,25700938:0,393216,0 +(1,19898:6630773,26041621:25952256,733899,196608 +g1,19898:6630773,26041621 +g1,19898:6630773,26041621 +g1,19898:6434165,26041621 +(1,19898:6434165,26041621:0,733899,196608 +r1,19925:32779637,26041621:26345472,930507,196608 +k1,19898:6434165,26041621:-26345472 +) +(1,19898:6434165,26041621:26345472,733899,196608 +[1,19898:6630773,26041621:25952256,537291,0 +(1,19896:6630773,25935375:25952256,431045,106246 +(1,19895:6630773,25935375:0,0,0 +g1,19895:6630773,25935375 +g1,19895:6630773,25935375 +g1,19895:6303093,25935375 +(1,19895:6303093,25935375:0,0,0 +) +g1,19895:6630773,25935375 +) +g1,19896:7294681,25935375 +g1,19896:7958589,25935375 +g1,19896:13933760,25935375 +g1,19896:14597668,25935375 +g1,19896:17585254,25935375 +g1,19896:19245024,25935375 +g1,19896:20904794,25935375 +g1,19896:21568702,25935375 +g1,19896:22564564,25935375 +g1,19896:25552149,25935375 +g1,19896:26216057,25935375 +h1,19896:29867550,25935375:0,0,0 +k1,19896:32583029,25935375:2715479 +g1,19896:32583029,25935375 +) +] +) +g1,19898:32583029,26041621 +g1,19898:6630773,26041621 +g1,19898:6630773,26041621 +g1,19898:32583029,26041621 +g1,19898:32583029,26041621 +) +h1,19898:6630773,26238229:0,0,0 +(1,19915:6630773,29069389:25952256,32768,229376 +(1,19915:6630773,29069389:0,32768,229376 +(1,19915:6630773,29069389:5505024,32768,229376 +r1,19925:12135797,29069389:5505024,262144,229376 +) +k1,19915:6630773,29069389:-5505024 +) +(1,19915:6630773,29069389:25952256,32768,0 +r1,19925:32583029,29069389:25952256,32768,0 +) +) +(1,19915:6630773,30701241:25952256,606339,14155 +(1,19915:6630773,30701241:1974731,582746,14155 +g1,19915:6630773,30701241 +g1,19915:8605504,30701241 +) +k1,19915:32583028,30701241:21567896 +g1,19915:32583028,30701241 +) +(1,19919:6630773,31959537:25952256,513147,126483 +k1,19918:7532901,31959537:274293 +k1,19918:9840776,31959537:274293 +k1,19918:12724058,31959537:274294 +k1,19918:13657643,31959537:274293 +k1,19918:15135177,31959537:274293 +k1,19918:18000764,31959537:274293 +k1,19918:21266777,31959537:274294 +k1,19918:23016285,31959537:274293 +k1,19918:24803804,31959537:274293 +k1,19918:26097182,31959537:274293 +k1,19918:28637056,31959537:274294 +k1,19918:30757499,31959537:274293 +k1,19918:31714677,31959537:274293 +k1,19918:32583029,31959537:0 +) +(1,19919:6630773,32824617:25952256,513147,126483 +k1,19918:8349181,32824617:243193 +k1,19918:9526917,32824617:243193 +k1,19918:11409166,32824617:243194 +k1,19918:13046310,32824617:243193 +k1,19918:17196104,32824617:243193 +k1,19918:20638765,32824617:243193 +k1,19918:21509793,32824617:243193 +k1,19918:22772071,32824617:243193 +k1,19918:25421092,32824617:243194 +k1,19918:27942972,32824617:243193 +k1,19918:29054517,32824617:243193 +k1,19918:31966991,32824617:243193 +k1,19918:32583029,32824617:0 +) +(1,19919:6630773,33689697:25952256,513147,7863 +k1,19918:8576100,33689697:295130 +k1,19918:10658397,33689697:295130 +k1,19918:11972613,33689697:295131 +k1,19918:13360228,33689697:295130 +k1,19918:14314650,33689697:295130 +k1,19918:16606662,33689697:295130 +k1,19918:18734179,33689697:295130 +k1,19918:20020869,33689697:295130 +k1,19918:22162150,33689697:295131 +k1,19918:25241249,33689697:295130 +k1,19918:26484030,33689697:295130 +k1,19918:29541503,33689697:295130 +k1,19919:32583029,33689697:0 +) +(1,19919:6630773,34554777:25952256,513147,134348 +$1,19918:6837867,34554777 +$1,19918:7406064,34554777 +k1,19918:7611050,34554777:204986 +k1,19918:11132159,34554777:204987 +k1,19918:11996437,34554777:204986 +k1,19918:13220509,34554777:204987 +k1,19918:15727775,34554777:204986 +k1,19918:19657173,34554777:204987 +k1,19918:22325657,34554777:204986 +k1,19918:24024210,34554777:204987 +k1,19918:24915358,34554777:204986 +k1,19918:27734576,34554777:204987 +(1,19918:27941670,34554777:0,414482,115847 +r1,19925:30410208,34554777:2468538,530329,115847 +k1,19918:27941670,34554777:-2468538 +) +(1,19918:27941670,34554777:2468538,414482,115847 +g1,19918:29000083,34554777 +g1,19918:30055219,34554777 +h1,19918:30406931,34554777:0,411205,112570 +) +k1,19918:30995958,34554777:204986 +(1,19918:30995958,34554777:0,452978,115847 +r1,19925:32409359,34554777:1413401,568825,115847 +k1,19918:30995958,34554777:-1413401 +) +(1,19918:30995958,34554777:1413401,452978,115847 +k1,19918:30995958,34554777:3277 +h1,19918:32406082,34554777:0,411205,112570 +) +k1,19919:32583029,34554777:0 +) +(1,19919:6630773,35419857:25952256,505283,126483 +(1,19918:6630773,35419857:0,452978,115847 +r1,19925:8395886,35419857:1765113,568825,115847 +k1,19918:6630773,35419857:-1765113 +) +(1,19918:6630773,35419857:1765113,452978,115847 +k1,19918:6630773,35419857:3277 +h1,19918:8392609,35419857:0,411205,112570 +) +k1,19918:8795889,35419857:226333 +(1,19918:8795889,35419857:0,452978,115847 +r1,19925:11616138,35419857:2820249,568825,115847 +k1,19918:8795889,35419857:-2820249 +) +(1,19918:8795889,35419857:2820249,452978,115847 +k1,19918:8795889,35419857:3277 +h1,19918:11612861,35419857:0,411205,112570 +) +k1,19918:12016141,35419857:226333 +(1,19918:12016141,35419857:0,452978,115847 +r1,19925:13781254,35419857:1765113,568825,115847 +k1,19918:12016141,35419857:-1765113 +) +(1,19918:12016141,35419857:1765113,452978,115847 +k1,19918:12016141,35419857:3277 +h1,19918:13777977,35419857:0,411205,112570 +) +k1,19918:14181258,35419857:226334 +(1,19918:14181258,35419857:0,459977,115847 +r1,19925:15594659,35419857:1413401,575824,115847 +k1,19918:14181258,35419857:-1413401 +) +(1,19918:14181258,35419857:1413401,459977,115847 +k1,19918:14181258,35419857:3277 +h1,19918:15591382,35419857:0,411205,112570 +) +k1,19918:15994662,35419857:226333 +(1,19918:15994662,35419857:0,452978,115847 +r1,19925:17759775,35419857:1765113,568825,115847 +k1,19918:15994662,35419857:-1765113 +) +(1,19918:15994662,35419857:1765113,452978,115847 +k1,19918:15994662,35419857:3277 +h1,19918:17756498,35419857:0,411205,112570 +) +k1,19918:17986108,35419857:226333 +k1,19918:18895326,35419857:226333 +k1,19918:23463419,35419857:226333 +(1,19918:23463419,35419857:0,452978,122846 +r1,19925:25228532,35419857:1765113,575824,122846 +k1,19918:23463419,35419857:-1765113 +) +(1,19918:23463419,35419857:1765113,452978,122846 +k1,19918:23463419,35419857:3277 +h1,19918:25225255,35419857:0,411205,112570 +) +k1,19918:25628536,35419857:226334 +k1,19918:27782283,35419857:226333 +k1,19918:31252648,35419857:226333 +k1,19918:32583029,35419857:0 +) +(1,19919:6630773,36284937:25952256,513147,126483 +k1,19918:8913361,36284937:271943 +k1,19918:9801341,36284937:271942 +(1,19918:9801341,36284937:0,452978,115847 +r1,19925:11214742,36284937:1413401,568825,115847 +k1,19918:9801341,36284937:-1413401 +) +(1,19918:9801341,36284937:1413401,452978,115847 +k1,19918:9801341,36284937:3277 +h1,19918:11211465,36284937:0,411205,112570 +) +k1,19918:11486685,36284937:271943 +k1,19918:12750187,36284937:271942 +k1,19918:15607525,36284937:271943 +k1,19918:16530895,36284937:271942 +k1,19918:18813483,36284937:271943 +k1,19918:19744717,36284937:271942 +k1,19918:20787363,36284937:271943 +k1,19918:24274501,36284937:271942 +k1,19918:25737889,36284937:271943 +k1,19918:27340212,36284937:271942 +k1,19918:29308882,36284937:271943 +k1,19918:31591469,36284937:271942 +k1,19918:32583029,36284937:0 +) +(1,19919:6630773,37150017:25952256,505283,7863 +k1,19919:32583029,37150017:23496622 +g1,19919:32583029,37150017 +) +(1,19921:6630773,38015097:25952256,513147,134348 +h1,19920:6630773,38015097:983040,0,0 +k1,19920:11404296,38015097:345911 +k1,19920:12559576,38015097:345910 +k1,19920:13924572,38015097:345911 +k1,19920:18898636,38015097:345911 +k1,19920:19903838,38015097:345910 +k1,19920:21268834,38015097:345911 +k1,19920:23004107,38015097:345910 +k1,19920:25088033,38015097:345911 +k1,19920:28193010,38015097:345911 +k1,19920:30385070,38015097:345910 +k1,19920:31835263,38015097:345911 +k1,19920:32583029,38015097:0 +) +(1,19921:6630773,38880177:25952256,513147,126483 +k1,19920:10459780,38880177:258606 +k1,19920:11401271,38880177:258606 +k1,19920:14359305,38880177:258606 +k1,19920:15565562,38880177:258606 +(1,19920:15565562,38880177:0,452978,115847 +r1,19925:18034099,38880177:2468537,568825,115847 +k1,19920:15565562,38880177:-2468537 +) +(1,19920:15565562,38880177:2468537,452978,115847 +k1,19920:15565562,38880177:3277 +h1,19920:18030822,38880177:0,411205,112570 +) +k1,19920:18292705,38880177:258606 +k1,19920:19234195,38880177:258605 +(1,19920:19234195,38880177:0,459977,115847 +r1,19925:21351020,38880177:2116825,575824,115847 +k1,19920:19234195,38880177:-2116825 +) +(1,19920:19234195,38880177:2116825,459977,115847 +k1,19920:19234195,38880177:3277 +h1,19920:21347743,38880177:0,411205,112570 +) +k1,19920:21609626,38880177:258606 +k1,19920:24709873,38880177:258606 +k1,19920:25584517,38880177:258606 +(1,19920:25584517,38880177:0,452978,115847 +r1,19925:26997918,38880177:1413401,568825,115847 +k1,19920:25584517,38880177:-1413401 +) +(1,19920:25584517,38880177:1413401,452978,115847 +k1,19920:25584517,38880177:3277 +h1,19920:26994641,38880177:0,411205,112570 +) +k1,19920:27430194,38880177:258606 +k1,19920:31658971,38880177:258606 +k1,19920:32583029,38880177:0 +) +(1,19921:6630773,39745257:25952256,505283,126483 +k1,19920:7896236,39745257:246378 +k1,19920:9844584,39745257:246378 +k1,19920:11870921,39745257:246379 +k1,19920:13809439,39745257:246378 +k1,19920:17271013,39745257:246378 +k1,19920:18663616,39745257:246378 +(1,19920:18663616,39745257:0,452978,115847 +r1,19925:20077017,39745257:1413401,568825,115847 +k1,19920:18663616,39745257:-1413401 +) +(1,19920:18663616,39745257:1413401,452978,115847 +k1,19920:18663616,39745257:3277 +h1,19920:20073740,39745257:0,411205,112570 +) +k1,19920:20497065,39745257:246378 +k1,19920:21847725,39745257:246378 +k1,19920:23456598,39745257:246379 +k1,19920:27839608,39745257:246378 +k1,19920:29158155,39745257:246378 +k1,19920:31436804,39745257:246378 +k1,19921:32583029,39745257:0 +) +(1,19921:6630773,40610337:25952256,513147,126483 +(1,19920:6630773,40610337:0,452978,115847 +r1,19925:9451022,40610337:2820249,568825,115847 +k1,19920:6630773,40610337:-2820249 +) +(1,19920:6630773,40610337:2820249,452978,115847 +k1,19920:6630773,40610337:3277 +h1,19920:9447745,40610337:0,411205,112570 +) +k1,19920:9673823,40610337:222801 +k1,19920:10888184,40610337:222801 +k1,19920:14362881,40610337:222801 +k1,19920:17285110,40610337:222801 +k1,19920:18135746,40610337:222801 +k1,19920:21024551,40610337:222800 +k1,19920:21898780,40610337:222801 +k1,19920:24647339,40610337:222801 +k1,19920:26772650,40610337:222801 +k1,19920:27943102,40610337:222801 +k1,19920:31417799,40610337:222801 +k1,19921:32583029,40610337:0 +) +(1,19921:6630773,41475417:25952256,513147,126483 +k1,19920:8356633,41475417:152341 +k1,19920:11724171,41475417:152342 +k1,19920:14402270,41475417:152341 +k1,19920:16457121,41475417:152341 +k1,19920:17601022,41475417:152341 +k1,19920:20537333,41475417:152342 +k1,19920:21637325,41475417:152341 +k1,19920:23533579,41475417:152341 +k1,19920:26750384,41475417:152341 +k1,19920:28187232,41475417:152342 +k1,19920:29331133,41475417:152341 +k1,19920:32583029,41475417:0 +) +(1,19921:6630773,42340497:25952256,505283,115847 +g1,19920:10574074,42340497 +g1,19920:11919528,42340497 +(1,19920:11919528,42340497:0,414482,115847 +r1,19925:12277794,42340497:358266,530329,115847 +k1,19920:11919528,42340497:-358266 +) +(1,19920:11919528,42340497:358266,414482,115847 +k1,19920:11919528,42340497:3277 +h1,19920:12274517,42340497:0,411205,112570 +) +g1,19920:12650693,42340497 +(1,19920:12650693,42340497:0,414482,115847 +r1,19925:13008959,42340497:358266,530329,115847 +k1,19920:12650693,42340497:-358266 +) +(1,19920:12650693,42340497:358266,414482,115847 +k1,19920:12650693,42340497:3277 +h1,19920:13005682,42340497:0,411205,112570 +) +g1,19920:13381858,42340497 +(1,19920:13381858,42340497:0,452978,115847 +r1,19925:14795259,42340497:1413401,568825,115847 +k1,19920:13381858,42340497:-1413401 +) +(1,19920:13381858,42340497:1413401,452978,115847 +k1,19920:13381858,42340497:3277 +h1,19920:14791982,42340497:0,411205,112570 +) +g1,19920:15168158,42340497 +(1,19920:15168158,42340497:0,452978,115847 +r1,19925:16933271,42340497:1765113,568825,115847 +k1,19920:15168158,42340497:-1765113 +) +(1,19920:15168158,42340497:1765113,452978,115847 +k1,19920:15168158,42340497:3277 +h1,19920:16929994,42340497:0,411205,112570 +) +g1,19920:17306170,42340497 +k1,19921:32583029,42340497:14165368 +g1,19921:32583029,42340497 +) +(1,19923:6630773,43205577:25952256,513147,134348 +h1,19922:6630773,43205577:983040,0,0 +k1,19922:8945504,43205577:135004 +k1,19922:10983018,43205577:135004 +k1,19922:12631248,43205577:135004 +k1,19922:13527781,43205577:135005 +k1,19922:15928365,43205577:135004 +k1,19922:16997912,43205577:135004 +k1,19922:18152001,43205577:135004 +k1,19922:21094567,43205577:135004 +k1,19922:25546428,43205577:135004 +k1,19922:27131089,43205577:135005 +k1,19922:29151564,43205577:135004 +k1,19922:30902686,43205577:135004 +k1,19922:32583029,43205577:0 +) +(1,19923:6630773,44070657:25952256,513147,126483 +k1,19922:10814280,44070657:219890 +k1,19922:11685599,44070657:219891 +$1,19922:11685599,44070657 +k1,19922:12408082,44070657:219822 +k1,19922:13196100,44070657:219821 +$1,19922:13594559,44070657 +k1,19922:13814450,44070657:219891 +k1,19922:15225785,44070657:219890 +k1,19922:17331147,44070657:219891 +k1,19922:18707747,44070657:219890 +k1,19922:19579065,44070657:219890 +$1,19922:19579065,44070657 +k1,19922:20301548,44070657:219822 +k1,19922:21089567,44070657:219822 +$1,19922:21488026,44070657 +k1,19922:22088681,44070657:219891 +k1,19922:25243273,44070657:219890 +k1,19922:26410814,44070657:219890 +k1,19922:28082327,44070657:219891 +k1,19922:31089463,44070657:219890 +k1,19922:32583029,44070657:0 +) +] +(1,19925:32583029,45706769:0,0,0 +g1,19925:32583029,45706769 +) +) +] +(1,19925:6630773,47279633:25952256,0,0 +h1,19925:6630773,47279633:25952256,0,0 +) +] +(1,19925:4262630,4025873:0,0,0 +[1,19925:-473656,4025873:0,0,0 +(1,19925:-473656,-710413:0,0,0 +(1,19925:-473656,-710413:0,0,0 +g1,19925:-473656,-710413 +) +g1,19925:-473656,-710413 +) +] +) +] +!22187 +}337 +Input:3165:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3166:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3167:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3168:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3169:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3170:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3171:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3172:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3173:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3174:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3175:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3176:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3177:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3178:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3179:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3180:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3181:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3182:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3183:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3184:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3185:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3186:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3187:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3188:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3189:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3190:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3191:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3192:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3193:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3194:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3195:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!2926 +{338 +[1,19961:4262630,47279633:28320399,43253760,0 +(1,19961:4262630,4025873:0,0,0 +[1,19961:-473656,4025873:0,0,0 +(1,19961:-473656,-710413:0,0,0 +(1,19961:-473656,-644877:0,0,0 +k1,19961:-473656,-644877:-65536 ) -(1,20114:-473656,4736287:0,0,0 -k1,20114:-473656,4736287:5209943 +(1,19961:-473656,4736287:0,0,0 +k1,19961:-473656,4736287:5209943 ) -g1,20114:-473656,-710413 +g1,19961:-473656,-710413 ) ] ) -[1,20114:6630773,47279633:25952256,43253760,0 -[1,20114:6630773,4812305:25952256,786432,0 -(1,20114:6630773,4812305:25952256,505283,11795 -(1,20114:6630773,4812305:25952256,505283,11795 -g1,20114:3078558,4812305 -[1,20114:3078558,4812305:0,0,0 -(1,20114:3078558,2439708:0,1703936,0 -k1,20114:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,20114:2537886,2439708:1179648,16384,0 +[1,19961:6630773,47279633:25952256,43253760,0 +[1,19961:6630773,4812305:25952256,786432,0 +(1,19961:6630773,4812305:25952256,505283,11795 +(1,19961:6630773,4812305:25952256,505283,11795 +g1,19961:3078558,4812305 +[1,19961:3078558,4812305:0,0,0 +(1,19961:3078558,2439708:0,1703936,0 +k1,19961:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,19961:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,20114:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,19961:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,20114:3078558,4812305:0,0,0 -(1,20114:3078558,2439708:0,1703936,0 -g1,20114:29030814,2439708 -g1,20114:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,20114:36151628,1915420:16384,1179648,0 +[1,19961:3078558,4812305:0,0,0 +(1,19961:3078558,2439708:0,1703936,0 +g1,19961:29030814,2439708 +g1,19961:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,19961:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,20114:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,19961:37855564,2439708:1179648,16384,0 ) ) -k1,20114:3078556,2439708:-34777008 +k1,19961:3078556,2439708:-34777008 ) ] -[1,20114:3078558,4812305:0,0,0 -(1,20114:3078558,49800853:0,16384,2228224 -k1,20114:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,20114:2537886,49800853:1179648,16384,0 +[1,19961:3078558,4812305:0,0,0 +(1,19961:3078558,49800853:0,16384,2228224 +k1,19961:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,19961:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,20114:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,19961:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,20114:3078558,4812305:0,0,0 -(1,20114:3078558,49800853:0,16384,2228224 -g1,20114:29030814,49800853 -g1,20114:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,20114:36151628,51504789:16384,1179648,0 +[1,19961:3078558,4812305:0,0,0 +(1,19961:3078558,49800853:0,16384,2228224 +g1,19961:29030814,49800853 +g1,19961:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,19961:36151628,51504789:16384,1179648,0 +) +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 +) +] +) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,19961:37855564,49800853:1179648,16384,0 +) +) +k1,19961:3078556,49800853:-34777008 +) +] +g1,19961:6630773,4812305 +g1,19961:6630773,4812305 +g1,19961:8724648,4812305 +k1,19961:31387652,4812305:22663004 +) +) +] +[1,19961:6630773,45706769:25952256,40108032,0 +(1,19961:6630773,45706769:25952256,40108032,0 +(1,19961:6630773,45706769:0,0,0 +g1,19961:6630773,45706769 +) +[1,19961:6630773,45706769:25952256,40108032,0 +(1,19923:6630773,6254097:25952256,513147,134348 +k1,19922:7515025,6254097:198090 +(1,19922:7515025,6254097:0,452978,115847 +r1,19961:9280138,6254097:1765113,568825,115847 +k1,19922:7515025,6254097:-1765113 +) +(1,19922:7515025,6254097:1765113,452978,115847 +k1,19922:7515025,6254097:3277 +h1,19922:9276861,6254097:0,411205,112570 +) +k1,19922:9651897,6254097:198089 +k1,19922:11504771,6254097:198090 +k1,19922:12694421,6254097:198090 +k1,19922:15563757,6254097:198089 +k1,19922:17664357,6254097:198090 +k1,19922:18513874,6254097:198089 +k1,19922:20927081,6254097:198090 +k1,19922:22692792,6254097:198090 +k1,19922:24588919,6254097:198089 +k1,19922:27359297,6254097:198090 +k1,19922:27913247,6254097:198090 +k1,19922:29562303,6254097:198089 +k1,19922:31227089,6254097:198090 +k1,19923:32583029,6254097:0 +) +(1,19923:6630773,7119177:25952256,513147,134348 +g1,19922:9257456,7119177 +g1,19922:10648130,7119177 +g1,19922:13373117,7119177 +g1,19922:15022002,7119177 +g1,19922:16018149,7119177 +g1,19922:18979721,7119177 +g1,19922:20795068,7119177 +g1,19922:22896807,7119177 +g1,19922:23712074,7119177 +g1,19922:26739836,7119177 +k1,19923:32583029,7119177:3919711 +g1,19923:32583029,7119177 +) +v1,19925:6630773,7984257:0,393216,0 +(1,19926:6630773,14474598:25952256,6883557,0 +g1,19926:6630773,14474598 +g1,19926:6237557,14474598 +r1,19961:6368629,14474598:131072,6883557,0 +g1,19926:6567858,14474598 +g1,19926:6764466,14474598 +[1,19926:6764466,14474598:25818563,6883557,0 +(1,19926:6764466,8292555:25818563,701514,196608 +(1,19925:6764466,8292555:0,701514,196608 +r1,19961:8010564,8292555:1246098,898122,196608 +k1,19925:6764466,8292555:-1246098 +) +(1,19925:6764466,8292555:1246098,701514,196608 +) +k1,19925:8210177,8292555:199613 +k1,19925:8537857,8292555:327680 +k1,19925:11893029,8292555:199613 +k1,19925:12708680,8292555:199613 +k1,19925:13264152,8292555:199612 +k1,19925:14741062,8292555:199613 +k1,19925:16672136,8292555:199613 +k1,19925:17487787,8292555:199613 +k1,19925:20353405,8292555:199613 +k1,19925:21204446,8292555:199613 +k1,19925:23142073,8292555:199612 +k1,19925:27006459,8292555:199613 +k1,19925:27967600,8292555:199613 +k1,19925:31478747,8292555:199613 +k1,19925:32583029,8292555:0 +) +(1,19926:6764466,9157635:25818563,505283,134348 +k1,19925:8326451,9157635:276169 +k1,19925:9350386,9157635:276169 +k1,19925:10561097,9157635:276168 +k1,19925:11488694,9157635:276169 +k1,19925:14522618,9157635:276169 +k1,19925:16809432,9157635:276169 +k1,19925:18535257,9157635:276169 +k1,19925:21335872,9157635:276168 +k1,19925:22378157,9157635:276169 +k1,19925:24672835,9157635:276169 +k1,19925:25565042,9157635:276169 +k1,19925:26197071,9157635:276169 +k1,19925:28031030,9157635:276168 +k1,19925:28923237,9157635:276169 +k1,19925:30255846,9157635:276169 +k1,19925:32583029,9157635:0 +) +(1,19926:6764466,10022715:25818563,513147,126483 +k1,19925:7674912,10022715:251154 +k1,19925:8945151,10022715:251154 +k1,19925:11461885,10022715:251154 +k1,19925:13781355,10022715:251154 +k1,19925:17188068,10022715:251154 +k1,19925:18373765,10022715:251154 +k1,19925:19276347,10022715:251154 +k1,19925:22285256,10022715:251154 +k1,19925:24720725,10022715:251154 +k1,19925:25963439,10022715:251154 +k1,19925:27280864,10022715:251154 +k1,19925:30117413,10022715:251154 +k1,19925:31019995,10022715:251154 +k1,19925:32583029,10022715:0 +) +(1,19926:6764466,10887795:25818563,513147,126483 +k1,19925:8226575,10887795:270664 +k1,19925:9488798,10887795:270663 +k1,19925:13984568,10887795:270664 +k1,19925:18262102,10887795:270663 +k1,19925:19192058,10887795:270664 +k1,19925:21538902,10887795:270663 +k1,19925:22437401,10887795:270664 +k1,19925:24410034,10887795:270663 +k1,19925:26809307,10887795:270664 +k1,19925:30375776,10887795:270663 +k1,19925:31305732,10887795:270664 +k1,19925:32583029,10887795:0 +) +(1,19926:6764466,11752875:25818563,513147,134348 +k1,19925:9864740,11752875:231108 +k1,19925:11200130,11752875:231108 +k1,19925:12179004,11752875:231108 +k1,19925:14266092,11752875:231108 +k1,19925:15431743,11752875:231108 +k1,19925:16314279,11752875:231108 +k1,19925:16901248,11752875:231109 +k1,19925:19005375,11752875:231108 +k1,19925:21994238,11752875:231108 +k1,19925:23905689,11752875:231108 +k1,19925:24796089,11752875:231108 +k1,19925:25797900,11752875:231108 +k1,19925:28816254,11752875:231108 +k1,19925:31816913,11752875:231108 +k1,19925:32583029,11752875:0 +) +(1,19926:6764466,12617955:25818563,505283,126483 +k1,19925:11067871,12617955:231653 +k1,19925:13705351,12617955:231653 +k1,19925:14553042,12617955:231653 +k1,19925:15803780,12617955:231653 +k1,19925:17593224,12617955:231653 +(1,19925:17593224,12617955:0,452978,115847 +r1,19961:19006625,12617955:1413401,568825,115847 +k1,19925:17593224,12617955:-1413401 +) +(1,19925:17593224,12617955:1413401,452978,115847 +k1,19925:17593224,12617955:3277 +h1,19925:19003348,12617955:0,411205,112570 +) +k1,19925:19411948,12617955:231653 +k1,19925:20326486,12617955:231653 +k1,19925:23143535,12617955:231654 +k1,19925:24026616,12617955:231653 +k1,19925:24614129,12617955:231653 +k1,19925:27357122,12617955:231653 +k1,19925:28204813,12617955:231653 +(1,19925:28204813,12617955:0,452978,115847 +r1,19961:29618214,12617955:1413401,568825,115847 +k1,19925:28204813,12617955:-1413401 +) +(1,19925:28204813,12617955:1413401,452978,115847 +k1,19925:28204813,12617955:3277 +h1,19925:29614937,12617955:0,411205,112570 +) +k1,19925:29849867,12617955:231653 +k1,19925:30697558,12617955:231653 +k1,19925:32583029,12617955:0 +) +(1,19926:6764466,13483035:25818563,513147,126483 +k1,19925:8398656,13483035:267109 +k1,19925:9684851,13483035:267110 +k1,19925:11632303,13483035:267109 +k1,19925:12558705,13483035:267110 +k1,19925:13844899,13483035:267109 +k1,19925:17038846,13483035:267110 +k1,19925:18799521,13483035:267109 +k1,19925:19752793,13483035:267110 +(1,19925:19752793,13483035:0,452978,115847 +r1,19961:21517906,13483035:1765113,568825,115847 +k1,19925:19752793,13483035:-1765113 +) +(1,19925:19752793,13483035:1765113,452978,115847 +k1,19925:19752793,13483035:3277 +h1,19925:21514629,13483035:0,411205,112570 +) +k1,19925:21958685,13483035:267109 +k1,19925:23358257,13483035:267110 +k1,19925:25997114,13483035:267109 +k1,19925:27073594,13483035:267110 +k1,19925:28359788,13483035:267109 +k1,19925:30637543,13483035:267110 +k1,19925:31563944,13483035:267109 +k1,19925:32583029,13483035:0 +) +(1,19926:6764466,14348115:25818563,505283,126483 +g1,19925:9549090,14348115 +k1,19926:32583028,14348115:20348928 +g1,19926:32583028,14348115 +) +] +g1,19926:32583029,14474598 +) +h1,19926:6630773,14474598:0,0,0 +(1,19929:6630773,15339678:25952256,505283,134348 +h1,19928:6630773,15339678:983040,0,0 +k1,19928:9100554,15339678:290054 +k1,19928:10992309,15339678:290055 +k1,19928:13130478,15339678:290054 +k1,19928:16228095,15339678:290055 +k1,19928:17169577,15339678:290054 +k1,19928:18848994,15339678:290054 +k1,19928:19670546,15339678:290055 +(1,19928:19670546,15339678:0,452978,115847 +r1,19961:22490795,15339678:2820249,568825,115847 +k1,19928:19670546,15339678:-2820249 +) +(1,19928:19670546,15339678:2820249,452978,115847 +k1,19928:19670546,15339678:3277 +h1,19928:22487518,15339678:0,411205,112570 +) +k1,19928:22954519,15339678:290054 +k1,19928:25130044,15339678:290054 +k1,19928:27488415,15339678:290055 +k1,19928:29062975,15339678:290054 +k1,19928:30372115,15339678:290055 +k1,19928:32051532,15339678:290054 +k1,19928:32583029,15339678:0 +) +(1,19929:6630773,16204758:25952256,513147,126483 +k1,19928:8721823,16204758:323544 +k1,19928:9658129,16204758:323544 +k1,19928:10770071,16204758:323544 +k1,19928:12395160,16204758:323544 +k1,19928:14572718,16204758:323544 +k1,19928:15524097,16204758:323544 +k1,19928:16203500,16204758:323543 +k1,19928:18143162,16204758:323544 +k1,19928:20212585,16204758:323544 +k1,19928:21583394,16204758:323544 +(1,19928:21583394,16204758:0,452978,115847 +r1,19961:29327608,16204758:7744214,568825,115847 +k1,19928:21583394,16204758:-7744214 +) +(1,19928:21583394,16204758:7744214,452978,115847 +k1,19928:21583394,16204758:3277 +h1,19928:29324331,16204758:0,411205,112570 +) +k1,19928:29824822,16204758:323544 +k1,19928:31167451,16204758:323544 +k1,19929:32583029,16204758:0 +) +(1,19929:6630773,17069838:25952256,505283,115847 +k1,19928:8195754,17069838:256227 +k1,19928:9068019,17069838:256227 +k1,19928:10343331,17069838:256227 +k1,19928:11988921,17069838:256227 +k1,19928:14201398,17069838:256227 +k1,19928:15205391,17069838:256227 +k1,19928:18140731,17069838:256228 +k1,19928:19790909,17069838:256227 +k1,19928:22057781,17069838:256227 +k1,19928:23807574,17069838:256227 +k1,19928:24749963,17069838:256227 +(1,19928:24749963,17069838:0,452978,115847 +r1,19961:26515076,17069838:1765113,568825,115847 +k1,19928:24749963,17069838:-1765113 +) +(1,19928:24749963,17069838:1765113,452978,115847 +k1,19928:24749963,17069838:3277 +h1,19928:26511799,17069838:0,411205,112570 +) +k1,19928:26944973,17069838:256227 +(1,19928:26944973,17069838:0,452978,115847 +r1,19961:29061798,17069838:2116825,568825,115847 +k1,19928:26944973,17069838:-2116825 +) +(1,19928:26944973,17069838:2116825,452978,115847 +k1,19928:26944973,17069838:3277 +h1,19928:29058521,17069838:0,411205,112570 +) +k1,19928:31042933,17069838:256227 +k1,19929:32583029,17069838:0 +) +(1,19929:6630773,17934918:25952256,513147,134348 +k1,19928:7293909,17934918:248293 +k1,19928:10077184,17934918:248342 +k1,19928:10953362,17934918:248343 +k1,19928:11557564,17934918:248342 +k1,19928:13930583,17934918:248342 +k1,19928:16986488,17934918:248343 +k1,19928:18970223,17934918:248342 +(1,19928:18970223,17934918:0,452978,115847 +r1,19961:26714437,17934918:7744214,568825,115847 +k1,19928:18970223,17934918:-7744214 +) +(1,19928:18970223,17934918:7744214,452978,115847 +k1,19928:18970223,17934918:3277 +h1,19928:26711160,17934918:0,411205,112570 +) +k1,19928:26962779,17934918:248342 +k1,19928:29003531,17934918:248342 +k1,19928:29911166,17934918:248343 +k1,19928:30515368,17934918:248342 +k1,19928:32583029,17934918:0 +) +(1,19929:6630773,18799998:25952256,505283,126483 +k1,19928:8320983,18799998:196644 +k1,19928:9203789,18799998:196644 +(1,19928:9203789,18799998:0,452978,115847 +r1,19961:13079173,18799998:3875384,568825,115847 +k1,19928:9203789,18799998:-3875384 +) +(1,19928:9203789,18799998:3875384,452978,115847 +k1,19928:9203789,18799998:3277 +h1,19928:13075896,18799998:0,411205,112570 +) +k1,19928:13275817,18799998:196644 +k1,19928:14663906,18799998:196644 +(1,19928:14663906,18799998:0,452978,115847 +r1,19961:17835866,18799998:3171960,568825,115847 +k1,19928:14663906,18799998:-3171960 +) +(1,19928:14663906,18799998:3171960,452978,115847 +k1,19928:14663906,18799998:3277 +h1,19928:17832589,18799998:0,411205,112570 +) +k1,19928:18032510,18799998:196644 +k1,19928:20185403,18799998:196643 +k1,19928:21129813,18799998:196644 +k1,19928:25136065,18799998:196644 +k1,19928:26018871,18799998:196644 +k1,19928:28631172,18799998:196644 +k1,19928:31189078,18799998:196644 +k1,19928:32583029,18799998:0 +) +(1,19929:6630773,19665078:25952256,513147,126483 +k1,19928:7903876,19665078:254018 +k1,19928:13234312,19665078:254017 +k1,19928:14147622,19665078:254018 +k1,19928:17594553,19665078:254017 +k1,19928:19742561,19665078:254018 +k1,19928:21788988,19665078:254017 +k1,19928:22694434,19665078:254018 +k1,19928:26141365,19665078:254017 +k1,19928:28756645,19665078:254018 +k1,19928:31599334,19665078:254017 +k1,19929:32583029,19665078:0 +) +(1,19929:6630773,20530158:25952256,513147,126483 +k1,19928:10436881,20530158:259955 +k1,19928:11458365,20530158:259956 +k1,19928:14157570,20530158:259955 +k1,19928:15045360,20530158:259955 +k1,19928:17936587,20530158:259956 +k1,19928:19590493,20530158:259955 +(1,19928:19590493,20530158:0,452978,115847 +r1,19961:26631284,20530158:7040791,568825,115847 +k1,19928:19590493,20530158:-7040791 +) +(1,19928:19590493,20530158:7040791,452978,115847 +k1,19928:19590493,20530158:3277 +h1,19928:26628007,20530158:0,411205,112570 +) +k1,19928:26891239,20530158:259955 +k1,19928:28170279,20530158:259955 +k1,19928:29811079,20530158:259956 +k1,19928:31931601,20530158:259955 +k1,19928:32583029,20530158:0 +) +(1,19929:6630773,21395238:25952256,513147,134348 +k1,19928:9717996,21395238:189876 +k1,19928:12337946,21395238:189875 +k1,19928:13546907,21395238:189876 +k1,19928:16544344,21395238:189875 +k1,19928:19369423,21395238:189876 +k1,19928:21453288,21395238:189875 +k1,19928:23435574,21395238:189876 +k1,19928:24816894,21395238:189875 +k1,19928:27368032,21395238:189876 +k1,19928:28319435,21395238:189875 +k1,19928:30936765,21395238:189876 +k1,19929:32583029,21395238:0 +) +(1,19929:6630773,22260318:25952256,513147,126483 +g1,19928:8799359,22260318 +g1,19928:9650016,22260318 +g1,19928:10868330,22260318 +g1,19928:12639768,22260318 +g1,19928:16038465,22260318 +g1,19928:19848728,22260318 +(1,19928:19848728,22260318:0,452978,115847 +r1,19961:21965553,22260318:2116825,568825,115847 +k1,19928:19848728,22260318:-2116825 +) +(1,19928:19848728,22260318:2116825,452978,115847 +k1,19928:19848728,22260318:3277 +h1,19928:21962276,22260318:0,411205,112570 +) +g1,19928:22164782,22260318 +g1,19928:23555456,22260318 +(1,19928:23555456,22260318:0,452978,115847 +r1,19961:25672281,22260318:2116825,568825,115847 +k1,19928:23555456,22260318:-2116825 +) +(1,19928:23555456,22260318:2116825,452978,115847 +k1,19928:23555456,22260318:3277 +h1,19928:25669004,22260318:0,411205,112570 +) +k1,19929:32583029,22260318:6737078 +g1,19929:32583029,22260318 +) +(1,19931:6630773,23125398:25952256,505283,134348 +h1,19930:6630773,23125398:983040,0,0 +k1,19930:8240787,23125398:139386 +k1,19930:11950633,23125398:139445 +k1,19930:13479441,23125398:139445 +k1,19930:16130226,23125398:139445 +k1,19930:18130238,23125398:139445 +k1,19930:18921111,23125398:139445 +k1,19930:19808322,23125398:139445 +k1,19930:22533162,23125398:139445 +k1,19930:23324035,23125398:139445 +k1,19930:24234183,23125398:139445 +k1,19930:27160874,23125398:139445 +k1,19930:29858845,23125398:139445 +k1,19930:30354150,23125398:139445 +k1,19931:32583029,23125398:0 +) +(1,19931:6630773,23990478:25952256,505283,115847 +k1,19930:8345846,23990478:160559 +k1,19930:10078614,23990478:160559 +k1,19930:11732739,23990478:160559 +k1,19930:12579460,23990478:160559 +(1,19930:12579460,23990478:0,452978,115847 +r1,19961:21027097,23990478:8447637,568825,115847 +k1,19930:12579460,23990478:-8447637 +) +(1,19930:12579460,23990478:8447637,452978,115847 +k1,19930:12579460,23990478:3277 +h1,19930:21023820,23990478:0,411205,112570 +) +k1,19930:21187656,23990478:160559 +k1,19930:22031099,23990478:160558 +k1,19930:23348368,23990478:160559 +k1,19930:24297325,23990478:160559 +k1,19930:26800141,23990478:160559 +k1,19930:29694862,23990478:160559 +k1,19930:31966991,23990478:160559 +k1,19930:32583029,23990478:0 +) +(1,19931:6630773,24855558:25952256,513147,134348 +k1,19930:7179763,24855558:193130 +(1,19930:7179763,24855558:0,452978,115847 +r1,19961:9648300,24855558:2468537,568825,115847 +k1,19930:7179763,24855558:-2468537 +) +(1,19930:7179763,24855558:2468537,452978,115847 +k1,19930:7179763,24855558:3277 +h1,19930:9645023,24855558:0,411205,112570 +) +k1,19930:9841430,24855558:193130 +k1,19930:12545899,24855558:193129 +k1,19930:13871491,24855558:193130 +k1,19930:14812387,24855558:193130 +k1,19930:17590912,24855558:193130 +k1,19930:19051508,24855558:193130 +k1,19930:19600498,24855558:193130 +k1,19930:23364028,24855558:193129 +k1,19930:25337771,24855558:193130 +k1,19930:26190193,24855558:193130 +k1,19930:28918256,24855558:193130 +k1,19930:32583029,24855558:0 +) +(1,19931:6630773,25720638:25952256,505283,134348 +k1,19930:8766974,25720638:280221 +k1,19930:13364052,25720638:280221 +k1,19930:16202799,25720638:280221 +k1,19930:16838880,25720638:280221 +k1,19930:19309314,25720638:280221 +k1,19930:20272419,25720638:280220 +k1,19930:23485376,25720638:280221 +k1,19930:24527125,25720638:280221 +k1,19930:26730172,25720638:280221 +k1,19930:28029478,25720638:280221 +k1,19930:30670961,25720638:280221 +k1,19930:31563944,25720638:280221 +k1,19930:32583029,25720638:0 +) +(1,19931:6630773,26585718:25952256,513147,134348 +k1,19930:9894645,26585718:187612 +k1,19930:11273701,26585718:187611 +k1,19930:14671266,26585718:187612 +k1,19930:15471640,26585718:187612 +k1,19930:18330498,26585718:187611 +k1,19930:22576099,26585718:187612 +k1,19930:24948025,26585718:187611 +k1,19930:27145626,26585718:187612 +k1,19930:28352323,26585718:187612 +k1,19930:30320547,26585718:187611 +k1,19930:31167451,26585718:187612 +k1,19931:32583029,26585718:0 +) +(1,19931:6630773,27450798:25952256,513147,134348 +k1,19930:8447481,27450798:193381 +k1,19930:9300155,27450798:193382 +k1,19930:10512621,27450798:193381 +k1,19930:13291398,27450798:193382 +k1,19930:15996119,27450798:193381 +k1,19930:17639157,27450798:193382 +k1,19930:19404747,27450798:193381 +k1,19930:22110124,27450798:193382 +k1,19930:23028333,27450798:193381 +k1,19930:24506221,27450798:193382 +k1,19930:25718687,27450798:193381 +k1,19930:27528187,27450798:193382 +k1,19930:29601796,27450798:193381 +k1,19930:32583029,27450798:0 +) +(1,19931:6630773,28315878:25952256,513147,134348 +k1,19930:9487012,28315878:221036 +(1,19930:9487012,28315878:0,452978,115847 +r1,19961:11252125,28315878:1765113,568825,115847 +k1,19930:9487012,28315878:-1765113 +) +(1,19930:9487012,28315878:1765113,452978,115847 +k1,19930:9487012,28315878:3277 +h1,19930:11248848,28315878:0,411205,112570 +) +k1,19930:11473161,28315878:221036 +k1,19930:12885642,28315878:221036 +(1,19930:12885642,28315878:0,452978,122846 +r1,19961:15705891,28315878:2820249,575824,122846 +k1,19930:12885642,28315878:-2820249 +) +(1,19930:12885642,28315878:2820249,452978,122846 +k1,19930:12885642,28315878:3277 +h1,19930:15702614,28315878:0,411205,112570 +) +k1,19930:16307691,28315878:221036 +k1,19930:19420831,28315878:221036 +k1,19930:20301159,28315878:221036 +k1,19930:22994213,28315878:221036 +k1,19930:25225894,28315878:221036 +k1,19930:25978427,28315878:221036 +k1,19930:27693029,28315878:221036 +k1,19930:29198571,28315878:221036 +k1,19930:32227169,28315878:221036 +k1,19930:32583029,28315878:0 +) +(1,19931:6630773,29180958:25952256,513147,126483 +k1,19930:8496569,29180958:185453 +k1,19930:9298060,29180958:185453 +k1,19930:9839373,29180958:185453 +k1,19930:12536165,29180958:185452 +k1,19930:13373046,29180958:185453 +k1,19930:14329202,29180958:185453 +(1,19930:14329202,29180958:0,414482,115847 +r1,19961:15039180,29180958:709978,530329,115847 +k1,19930:14329202,29180958:-709978 +) +(1,19930:14329202,29180958:709978,414482,115847 +k1,19930:14329202,29180958:3277 +h1,19930:15035903,29180958:0,411205,112570 +) +k1,19930:15224633,29180958:185453 +k1,19930:17090429,29180958:185453 +k1,19930:18223533,29180958:185453 +k1,19930:19179689,29180958:185453 +k1,19930:22209405,29180958:185453 +k1,19930:23888423,29180958:185452 +k1,19930:24760038,29180958:185453 +k1,19930:26561609,29180958:185453 +k1,19930:28793096,29180958:185453 +k1,19930:29997634,29180958:185453 +k1,19930:32583029,29180958:0 +) +(1,19931:6630773,30046038:25952256,513147,134348 +k1,19930:8865395,30046038:223977 +k1,19930:11921838,30046038:223977 +k1,19930:13342501,30046038:223976 +k1,19930:16046360,30046038:223977 +k1,19930:19077899,30046038:223977 +(1,19930:19077899,30046038:0,414482,115847 +r1,19961:19787877,30046038:709978,530329,115847 +k1,19930:19077899,30046038:-709978 +) +(1,19930:19077899,30046038:709978,414482,115847 +k1,19930:19077899,30046038:3277 +h1,19930:19784600,30046038:0,411205,112570 +) +k1,19930:20011854,30046038:223977 +k1,19930:22246476,30046038:223977 +k1,19930:23086490,30046038:223976 +k1,19930:24329552,30046038:223977 +k1,19930:25942892,30046038:223977 +k1,19930:26818297,30046038:223977 +k1,19930:27398133,30046038:223976 +k1,19930:30019417,30046038:223977 +k1,19930:31923737,30046038:223977 +k1,19930:32583029,30046038:0 +) +(1,19931:6630773,30911118:25952256,505283,134348 +k1,19930:7638901,30911118:237425 +k1,19930:10720589,30911118:237425 +k1,19930:11489510,30911118:237424 +k1,19930:13012751,30911118:237425 +k1,19930:15880136,30911118:237425 +k1,19930:17567217,30911118:237425 +k1,19930:21089961,30911118:237424 +(1,19930:21089961,30911118:0,414482,115847 +r1,19961:21799939,30911118:709978,530329,115847 +k1,19930:21089961,30911118:-709978 +) +(1,19930:21089961,30911118:709978,414482,115847 +k1,19930:21089961,30911118:3277 +h1,19930:21796662,30911118:0,411205,112570 +) +k1,19930:22037364,30911118:237425 +k1,19930:24285434,30911118:237425 +k1,19930:25138897,30911118:237425 +k1,19930:26395406,30911118:237424 +k1,19930:29218226,30911118:237425 +k1,19930:31966991,30911118:237425 +k1,19930:32583029,30911118:0 +) +(1,19931:6630773,31776198:25952256,513147,126483 +g1,19930:8060113,31776198 +g1,19930:9948860,31776198 +g1,19930:11850059,31776198 +g1,19930:14059933,31776198 +g1,19930:15250722,31776198 +g1,19930:18035346,31776198 +g1,19930:18886003,31776198 +g1,19930:21284620,31776198 +g1,19930:22143141,31776198 +k1,19931:32583029,31776198:8691387 +g1,19931:32583029,31776198 +) +(1,19938:6630773,33893016:25952256,555811,139132 +(1,19938:6630773,33893016:2450326,534184,12975 +g1,19938:6630773,33893016 +g1,19938:9081099,33893016 +) +g1,19938:10929477,33893016 +g1,19938:12496705,33893016 +g1,19938:14069701,33893016 +k1,19938:32583029,33893016:16399661 +g1,19938:32583029,33893016 +) +(1,19945:6630773,35151312:25952256,513147,115847 +k1,19944:8245302,35151312:178635 +k1,19944:9292290,35151312:178636 +k1,19944:12140206,35151312:178635 +k1,19944:12674702,35151312:178636 +k1,19944:15128747,35151312:178635 +k1,19944:18084799,35151312:178636 +k1,19944:18914862,35151312:178635 +k1,19944:19859614,35151312:178636 +k1,19944:22114430,35151312:178635 +k1,19944:23801705,35151312:178636 +(1,19944:23801705,35151312:0,414482,115847 +r1,19961:25215106,35151312:1413401,530329,115847 +k1,19944:23801705,35151312:-1413401 +) +(1,19944:23801705,35151312:1413401,414482,115847 +k1,19944:23801705,35151312:3277 +h1,19944:25211829,35151312:0,411205,112570 +) +k1,19944:25567411,35151312:178635 +k1,19944:26942734,35151312:178636 +k1,19944:29386949,35151312:178635 +(1,19944:29386949,35151312:0,414482,115847 +r1,19961:30800350,35151312:1413401,530329,115847 +k1,19944:29386949,35151312:-1413401 +) +(1,19944:29386949,35151312:1413401,414482,115847 +k1,19944:29386949,35151312:3277 +h1,19944:30797073,35151312:0,411205,112570 +) +k1,19944:30978986,35151312:178636 +k1,19944:31816913,35151312:178635 +k1,19944:32583029,35151312:0 +) +(1,19945:6630773,36016392:25952256,513147,126483 +k1,19944:8702019,36016392:168736 +k1,19944:9402252,36016392:168736 +k1,19944:10590072,36016392:168735 +k1,19944:12496823,36016392:168736 +k1,19944:13324851,36016392:168736 +k1,19944:14512672,36016392:168736 +k1,19944:17192748,36016392:168736 +k1,19944:18044369,36016392:168736 +k1,19944:19232189,36016392:168735 +k1,19944:22840910,36016392:168736 +k1,19944:25595041,36016392:168736 +k1,19944:26415205,36016392:168736 +k1,19944:27215708,36016392:168736 +k1,19944:28012279,36016392:168736 +k1,19944:29200099,36016392:168735 +k1,19944:30735916,36016392:168736 +k1,19944:31563944,36016392:168736 +k1,19945:32583029,36016392:0 +) +(1,19945:6630773,36881472:25952256,513147,134348 +(1,19944:6630773,36881472:0,414482,115847 +r1,19961:6989039,36881472:358266,530329,115847 +k1,19944:6630773,36881472:-358266 +) +(1,19944:6630773,36881472:358266,414482,115847 +k1,19944:6630773,36881472:3277 +h1,19944:6985762,36881472:0,411205,112570 +) +k1,19944:7332276,36881472:169567 +(1,19944:7332276,36881472:0,414482,115847 +r1,19961:7690542,36881472:358266,530329,115847 +k1,19944:7332276,36881472:-358266 +) +(1,19944:7332276,36881472:358266,414482,115847 +k1,19944:7332276,36881472:3277 +h1,19944:7687265,36881472:0,411205,112570 +) +k1,19944:7860110,36881472:169568 +k1,19944:9221122,36881472:169567 +(1,19944:9221122,36881472:0,414482,115847 +r1,19961:9579388,36881472:358266,530329,115847 +k1,19944:9221122,36881472:-358266 +) +(1,19944:9221122,36881472:358266,414482,115847 +k1,19944:9221122,36881472:3277 +h1,19944:9576111,36881472:0,411205,112570 +) +k1,19944:9748955,36881472:169567 +k1,19944:12982987,36881472:169568 +k1,19944:14171639,36881472:169567 +(1,19944:14171639,36881472:0,414482,115847 +r1,19961:15585040,36881472:1413401,530329,115847 +k1,19944:14171639,36881472:-1413401 +) +(1,19944:14171639,36881472:1413401,414482,115847 +k1,19944:14171639,36881472:3277 +h1,19944:15581763,36881472:0,411205,112570 +) +k1,19944:15754607,36881472:169567 +k1,19944:17618936,36881472:169568 +k1,19944:18439931,36881472:169567 +k1,19944:19628583,36881472:169567 +k1,19944:21370360,36881472:169568 +k1,19944:22071424,36881472:169567 +k1,19944:23754217,36881472:169567 +k1,19944:24871436,36881472:169568 +k1,19944:26060088,36881472:169567 +k1,19944:27482048,36881472:169567 +k1,19944:29669470,36881472:169568 +k1,19944:30881059,36881472:169567 +k1,19944:32583029,36881472:0 +) +(1,19945:6630773,37746552:25952256,513147,134348 +k1,19944:9888568,37746552:193331 +k1,19944:11100984,37746552:193331 +k1,19944:13032330,37746552:193331 +k1,19944:13884953,37746552:193331 +k1,19944:15097369,37746552:193331 +k1,19944:16862909,37746552:193331 +k1,19944:19829724,37746552:193331 +k1,19944:21042141,37746552:193332 +k1,19944:24364816,37746552:193331 +k1,19944:25241032,37746552:193331 +k1,19944:26506532,37746552:193331 +k1,19944:27883443,37746552:193331 +k1,19944:28736066,37746552:193331 +k1,19944:29948482,37746552:193331 +k1,19944:31900144,37746552:193331 +k1,19944:32583029,37746552:0 +) +(1,19945:6630773,38611632:25952256,505283,134348 +k1,19944:8125525,38611632:220077 +k1,19944:9243445,38611632:220077 +k1,19944:11366032,38611632:220077 +k1,19944:13061325,38611632:220078 +k1,19944:13637262,38611632:220077 +(1,19944:13637262,38611632:0,414482,115847 +r1,19961:15050663,38611632:1413401,530329,115847 +k1,19944:13637262,38611632:-1413401 +) +(1,19944:13637262,38611632:1413401,414482,115847 +k1,19944:13637262,38611632:3277 +h1,19944:15047386,38611632:0,411205,112570 +) +k1,19944:15270740,38611632:220077 +k1,19944:18771549,38611632:220077 +k1,19944:19643054,38611632:220077 +k1,19944:21748602,38611632:220077 +k1,19944:22324539,38611632:220077 +k1,19944:25519296,38611632:220078 +k1,19944:27605183,38611632:220077 +k1,19944:28508145,38611632:220077 +k1,19944:29143044,38611632:220056 +k1,19944:32583029,38611632:0 +) +(1,19945:6630773,39476712:25952256,513147,134348 +g1,19944:8062079,39476712 +g1,19944:10539995,39476712 +h1,19944:11909042,39476712:0,0,0 +g1,19944:12315365,39476712 +g1,19944:13618876,39476712 +g1,19944:14565871,39476712 +g1,19944:16970387,39476712 +g1,19944:17855778,39476712 +g1,19944:18825710,39476712 +g1,19944:22097267,39476712 +g1,19944:22947924,39476712 +g1,19944:25792186,39476712 +g1,19944:27010500,39476712 +k1,19945:32583029,39476712:3133279 +g1,19945:32583029,39476712 +) +(1,19947:6630773,40341792:25952256,505283,126483 +h1,19946:6630773,40341792:983040,0,0 +k1,19946:11244727,40341792:172579 +k1,19946:12858444,40341792:172580 +k1,19946:15444059,40341792:172579 +k1,19946:16808083,40341792:172579 +k1,19946:19358309,40341792:172580 +k1,19946:20522448,40341792:172579 +k1,19946:21761298,40341792:172579 +k1,19946:25197571,40341792:172580 +k1,19946:26021578,40341792:172579 +k1,19946:28040307,40341792:172579 +k1,19946:28895772,40341792:172580 +(1,19946:28895772,40341792:0,452978,115847 +r1,19961:30309173,40341792:1413401,568825,115847 +k1,19946:28895772,40341792:-1413401 +) +(1,19946:28895772,40341792:1413401,452978,115847 +k1,19946:28895772,40341792:3277 +h1,19946:30305896,40341792:0,411205,112570 +) +k1,19946:30655422,40341792:172579 +k1,19946:31315563,40341792:172553 +k1,19946:32583029,40341792:0 +) +(1,19947:6630773,41206872:25952256,513147,134348 +(1,19946:6837867,41206872:0,452978,115847 +r1,19961:8602980,41206872:1765113,568825,115847 +k1,19946:6837867,41206872:-1765113 +) +(1,19946:6837867,41206872:1765113,452978,115847 +k1,19946:6837867,41206872:3277 +h1,19946:8599703,41206872:0,411205,112570 +) +k1,19946:9056982,41206872:246908 +k1,19946:10495334,41206872:246907 +(1,19946:10495334,41206872:0,452978,115847 +r1,19961:13315583,41206872:2820249,568825,115847 +k1,19946:10495334,41206872:-2820249 +) +(1,19946:10495334,41206872:2820249,452978,115847 +k1,19946:10495334,41206872:3277 +h1,19946:13312306,41206872:0,411205,112570 +) +k1,19946:13562491,41206872:246908 +k1,19946:14913680,41206872:246907 +k1,19946:15908354,41206872:246908 +k1,19946:18120686,41206872:246907 +k1,19946:19863126,41206872:246908 +k1,19946:23819371,41206872:246907 +k1,19946:25460230,41206872:246908 +k1,19946:28402633,41206872:246907 +(1,19946:28402633,41206872:0,452978,122846 +r1,19961:31574593,41206872:3171960,575824,122846 +k1,19946:28402633,41206872:-3171960 +) +(1,19946:28402633,41206872:3171960,452978,122846 +k1,19946:28402633,41206872:3277 +h1,19946:31571316,41206872:0,411205,112570 +) +k1,19946:31821501,41206872:246908 +k1,19946:32583029,41206872:0 +) +(1,19947:6630773,42071952:25952256,505283,134348 +g1,19946:9257456,42071952 +g1,19946:11312665,42071952 +g1,19946:14486573,42071952 +g1,19946:16881913,42071952 +g1,19946:17764027,42071952 +g1,19946:18378099,42071952 +g1,19946:22347614,42071952 +g1,19946:23233005,42071952 +k1,19947:32583029,42071952:5773724 +g1,19947:32583029,42071952 +) +v1,19949:6630773,42756807:0,393216,0 +(1,19961:6630773,45152055:25952256,2788464,196608 +g1,19961:6630773,45152055 +g1,19961:6630773,45152055 +g1,19961:6434165,45152055 +(1,19961:6434165,45152055:0,2788464,196608 +r1,19961:32779637,45152055:26345472,2985072,196608 +k1,19961:6434165,45152055:-26345472 +) +(1,19961:6434165,45152055:26345472,2788464,196608 +[1,19961:6630773,45152055:25952256,2591856,0 +(1,19951:6630773,42984638:25952256,424439,112852 +(1,19950:6630773,42984638:0,0,0 +g1,19950:6630773,42984638 +g1,19950:6630773,42984638 +g1,19950:6303093,42984638 +(1,19950:6303093,42984638:0,0,0 +) +g1,19950:6630773,42984638 +) +k1,19951:6630773,42984638:0 +g1,19951:10614221,42984638 +g1,19951:11278129,42984638 +k1,19951:11278129,42984638:0 +h1,19951:13601807,42984638:0,0,0 +k1,19951:32583029,42984638:18981222 +g1,19951:32583029,42984638 +) +(1,19952:6630773,43669493:25952256,431045,112852 +h1,19952:6630773,43669493:0,0,0 +g1,19952:6962727,43669493 +g1,19952:7294681,43669493 +g1,19952:7626635,43669493 +g1,19952:7958589,43669493 +g1,19952:8290543,43669493 +g1,19952:8622497,43669493 +g1,19952:8954451,43669493 +g1,19952:10946175,43669493 +g1,19952:11610083,43669493 +g1,19952:13269853,43669493 +g1,19952:13933761,43669493 +g1,19952:14597669,43669493 +g1,19952:19576978,43669493 +g1,19952:21568702,43669493 +g1,19952:22232610,43669493 +g1,19952:24556288,43669493 +h1,19952:24888242,43669493:0,0,0 +k1,19952:32583029,43669493:7694787 +g1,19952:32583029,43669493 +) +(1,19953:6630773,44354348:25952256,424439,112852 +h1,19953:6630773,44354348:0,0,0 +g1,19953:6962727,44354348 +g1,19953:7294681,44354348 +g1,19953:11278128,44354348 +h1,19953:11610082,44354348:0,0,0 +k1,19953:32583030,44354348:20972948 +g1,19953:32583030,44354348 +) +(1,19954:6630773,45039203:25952256,424439,112852 +h1,19954:6630773,45039203:0,0,0 +g1,19954:6962727,45039203 +g1,19954:7294681,45039203 +g1,19954:11610082,45039203 +h1,19954:11942036,45039203:0,0,0 +k1,19954:32583028,45039203:20640992 +g1,19954:32583028,45039203 +) +] +) +g1,19961:32583029,45152055 +g1,19961:6630773,45152055 +g1,19961:6630773,45152055 +g1,19961:32583029,45152055 +g1,19961:32583029,45152055 +) +] +(1,19961:32583029,45706769:0,0,0 +g1,19961:32583029,45706769 +) +) +] +(1,19961:6630773,47279633:25952256,0,0 +h1,19961:6630773,47279633:25952256,0,0 +) +] +(1,19961:4262630,4025873:0,0,0 +[1,19961:-473656,4025873:0,0,0 +(1,19961:-473656,-710413:0,0,0 +(1,19961:-473656,-710413:0,0,0 +g1,19961:-473656,-710413 +) +g1,19961:-473656,-710413 +) +] +) +] +!33799 +}338 +Input:3196:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3197:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3198:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3199:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3200:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3201:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3202:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3203:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3204:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3205:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!952 +{339 +[1,20009:4262630,47279633:28320399,43253760,0 +(1,20009:4262630,4025873:0,0,0 +[1,20009:-473656,4025873:0,0,0 +(1,20009:-473656,-710413:0,0,0 +(1,20009:-473656,-644877:0,0,0 +k1,20009:-473656,-644877:-65536 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +(1,20009:-473656,4736287:0,0,0 +k1,20009:-473656,4736287:5209943 +) +g1,20009:-473656,-710413 ) ] ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,20114:37855564,49800853:1179648,16384,0 +[1,20009:6630773,47279633:25952256,43253760,0 +[1,20009:6630773,4812305:25952256,786432,0 +(1,20009:6630773,4812305:25952256,513147,126483 +(1,20009:6630773,4812305:25952256,513147,126483 +g1,20009:3078558,4812305 +[1,20009:3078558,4812305:0,0,0 +(1,20009:3078558,2439708:0,1703936,0 +k1,20009:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,20009:2537886,2439708:1179648,16384,0 ) +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,20009:3078558,1915420:16384,1179648,0 ) -k1,20114:3078556,49800853:-34777008 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] -g1,20114:6630773,4812305 -g1,20114:6630773,4812305 -g1,20114:8724648,4812305 -k1,20114:31387652,4812305:22663004 ) ) -] -[1,20114:6630773,45706769:25952256,40108032,0 -(1,20114:6630773,45706769:25952256,40108032,0 -(1,20114:6630773,45706769:0,0,0 -g1,20114:6630773,45706769 ) -[1,20114:6630773,45706769:25952256,40108032,0 -(1,20041:6630773,16109226:25952256,10510489,0 -k1,20041:12599879,16109226:5969106 -h1,20040:12599879,16109226:0,0,0 -(1,20040:12599879,16109226:14014044,10510489,0 -(1,20040:12599879,16109226:14014019,10510515,0 -(1,20040:12599879,16109226:14014019,10510515,0 -(1,20040:12599879,16109226:0,10510515,0 -(1,20040:12599879,16109226:0,14208860,0 -(1,20040:12599879,16109226:18945146,14208860,0 +] +[1,20009:3078558,4812305:0,0,0 +(1,20009:3078558,2439708:0,1703936,0 +g1,20009:29030814,2439708 +g1,20009:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,20009:36151628,1915420:16384,1179648,0 ) -k1,20040:12599879,16109226:-18945146 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) +] ) -g1,20040:26613898,16109226 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,20009:37855564,2439708:1179648,16384,0 ) ) +k1,20009:3078556,2439708:-34777008 ) -g1,20041:26613923,16109226 -k1,20041:32583029,16109226:5969106 +] +[1,20009:3078558,4812305:0,0,0 +(1,20009:3078558,49800853:0,16384,2228224 +k1,20009:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,20009:2537886,49800853:1179648,16384,0 ) -(1,20048:6630773,16950714:25952256,513147,134348 -h1,20047:6630773,16950714:983040,0,0 -k1,20047:9193157,16950714:195224 -k1,20047:12629792,16950714:195224 -k1,20047:15120088,16950714:195225 -k1,20047:16334397,16950714:195224 -k1,20047:18964939,16950714:195224 -k1,20047:21170808,16950714:195224 -k1,20047:23408790,16950714:195225 -k1,20047:26357837,16950714:195224 -k1,20047:27572146,16950714:195224 -k1,20047:32583029,16950714:0 -) -(1,20048:6630773,17792202:25952256,505283,134348 -k1,20047:7984727,17792202:157267 -(1,20047:7984727,17792202:0,452978,115847 -r1,20114:10804976,17792202:2820249,568825,115847 -k1,20047:7984727,17792202:-2820249 -) -(1,20047:7984727,17792202:2820249,452978,115847 -k1,20047:7984727,17792202:3277 -h1,20047:10801699,17792202:0,411205,112570 -) -k1,20047:10962244,17792202:157268 -k1,20047:12649777,17792202:157267 -k1,20047:13458473,17792202:157268 -k1,20047:14363506,17792202:157267 -k1,20047:16215535,17792202:157268 -k1,20047:16988840,17792202:157267 -k1,20047:18165192,17792202:157267 -k1,20047:20757778,17792202:157268 -k1,20047:22487254,17792202:157267 -k1,20047:23330684,17792202:157268 -k1,20047:24940229,17792202:157267 -k1,20047:26051046,17792202:157268 -k1,20047:27300798,17792202:157267 -(1,20047:27300798,17792202:0,452978,122846 -r1,20114:32583029,17792202:5282231,575824,122846 -k1,20047:27300798,17792202:-5282231 -) -(1,20047:27300798,17792202:5282231,452978,122846 -k1,20047:27300798,17792202:3277 -h1,20047:32579752,17792202:0,411205,112570 -) -k1,20047:32583029,17792202:0 -) -(1,20048:6630773,18633690:25952256,513147,165547 -g1,20047:7481430,18633690 -g1,20047:9444233,18633690 -g1,20047:9999322,18633690 -$1,20047:9999322,18633690 -(1,20047:9999322,18633690:973866,505283,134349 -) -(1,20047:10973188,18790979:590610,339935,8258 -) -$1,20047:11563798,18633690 -g1,20047:11763027,18633690 -g1,20047:16799468,18633690 -g1,20047:17650125,18633690 -g1,20047:18868439,18633690 -$1,20047:18868439,18633690 -$1,20047:19420252,18633690 -g1,20047:19619481,18633690 -k1,20048:32583029,18633690:10779233 -g1,20048:32583029,18633690 -) -v1,20050:6630773,19824156:0,393216,0 -(1,20054:6630773,20139252:25952256,708312,196608 -g1,20054:6630773,20139252 -g1,20054:6630773,20139252 -g1,20054:6434165,20139252 -(1,20054:6434165,20139252:0,708312,196608 -r1,20114:32779637,20139252:26345472,904920,196608 -k1,20054:6434165,20139252:-26345472 -) -(1,20054:6434165,20139252:26345472,708312,196608 -[1,20054:6630773,20139252:25952256,511704,0 -(1,20052:6630773,20031774:25952256,404226,107478 -(1,20051:6630773,20031774:0,0,0 -g1,20051:6630773,20031774 -g1,20051:6630773,20031774 -g1,20051:6303093,20031774 -(1,20051:6303093,20031774:0,0,0 -) -g1,20051:6630773,20031774 -) -g1,20052:6946919,20031774 -g1,20052:7263065,20031774 -k1,20052:7263065,20031774:0 -h1,20052:18960456,20031774:0,0,0 -k1,20052:32583029,20031774:13622573 -g1,20052:32583029,20031774 -) -] -) -g1,20054:32583029,20139252 -g1,20054:6630773,20139252 -g1,20054:6630773,20139252 -g1,20054:32583029,20139252 -g1,20054:32583029,20139252 -) -h1,20054:6630773,20335860:0,0,0 -(1,20058:6630773,21701636:25952256,513147,134348 -h1,20057:6630773,21701636:983040,0,0 -k1,20057:9605603,21701636:200036 -k1,20057:10161499,21701636:200036 -k1,20057:15198747,21701636:200036 -k1,20057:16014821,21701636:200036 -k1,20057:16570717,21701636:200036 -k1,20057:18342962,21701636:200036 -k1,20057:19074496,21701636:200037 -k1,20057:20340803,21701636:200036 -k1,20057:23845820,21701636:200036 -k1,20057:24697284,21701636:200036 -k1,20057:27651143,21701636:200036 -k1,20057:28870264,21701636:200036 -k1,20057:30723773,21701636:200036 -k1,20058:32583029,21701636:0 -) -(1,20058:6630773,22543124:25952256,513147,138281 -k1,20057:10106103,22543124:284382 -k1,20057:11199856,22543124:284383 -k1,20057:12503323,22543124:284382 -k1,20057:13583313,22543124:284383 -k1,20057:15565733,22543124:284382 -k1,20057:18657678,22543124:284383 -k1,20057:19297920,22543124:284382 -k1,20057:22093643,22543124:284383 -k1,20057:23029453,22543124:284382 -k1,20057:24332921,22543124:284383 -$1,20057:24332921,22543124 -$1,20057:24835582,22543124 -k1,20057:25119964,22543124:284382 -k1,20057:26294326,22543124:284383 -$1,20057:26294326,22543124 -$1,20057:26846139,22543124 -k1,20057:27337615,22543124:284382 -k1,20057:30409244,22543124:284383 -k1,20057:31379788,22543124:284382 -k1,20057:32583029,22543124:0 -) -(1,20058:6630773,23384612:25952256,513147,126483 -g1,20057:9003176,23384612 -g1,20057:9818443,23384612 -g1,20057:13259083,23384612 -g1,20057:16655814,23384612 -g1,20057:17471081,23384612 -g1,20057:21652277,23384612 -k1,20058:32583029,23384612:8746437 -g1,20058:32583029,23384612 -) -v1,20060:6630773,24575078:0,393216,0 -(1,20065:6630773,25562644:25952256,1380782,196608 -g1,20065:6630773,25562644 -g1,20065:6630773,25562644 -g1,20065:6434165,25562644 -(1,20065:6434165,25562644:0,1380782,196608 -r1,20114:32779637,25562644:26345472,1577390,196608 -k1,20065:6434165,25562644:-26345472 -) -(1,20065:6434165,25562644:26345472,1380782,196608 -[1,20065:6630773,25562644:25952256,1184174,0 -(1,20062:6630773,24788988:25952256,410518,107478 -(1,20061:6630773,24788988:0,0,0 -g1,20061:6630773,24788988 -g1,20061:6630773,24788988 -g1,20061:6303093,24788988 -(1,20061:6303093,24788988:0,0,0 -) -g1,20061:6630773,24788988 -) -k1,20062:6630773,24788988:0 -g1,20062:12637541,24788988 -g1,20062:14850561,24788988 -g1,20062:18328163,24788988 -h1,20062:18644309,24788988:0,0,0 -k1,20062:32583029,24788988:13938720 -g1,20062:32583029,24788988 -) -(1,20063:6630773,25455166:25952256,404226,107478 -h1,20063:6630773,25455166:0,0,0 -g1,20063:6946919,25455166 -g1,20063:7263065,25455166 -k1,20063:7263065,25455166:0 -h1,20063:11056813,25455166:0,0,0 -k1,20063:32583029,25455166:21526216 -g1,20063:32583029,25455166 -) -] -) -g1,20065:32583029,25562644 -g1,20065:6630773,25562644 -g1,20065:6630773,25562644 -g1,20065:32583029,25562644 -g1,20065:32583029,25562644 -) -h1,20065:6630773,25759252:0,0,0 -(1,20069:6630773,27125028:25952256,513147,134348 -h1,20068:6630773,27125028:983040,0,0 -k1,20068:8807526,27125028:240164 -k1,20068:10708373,27125028:240165 -k1,20068:12332657,27125028:240164 -k1,20068:13903203,27125028:240165 -k1,20068:14794795,27125028:240164 -k1,20068:17293985,27125028:240164 -k1,20068:17890010,27125028:240165 -k1,20068:22967386,27125028:240164 -k1,20068:23858978,27125028:240164 -k1,20068:24455003,27125028:240165 -k1,20068:28265568,27125028:240164 -k1,20068:30251612,27125028:240165 -k1,20068:32227169,27125028:240164 -k1,20068:32583029,27125028:0 -) -(1,20069:6630773,27966516:25952256,513147,134348 -g1,20068:10268021,27966516 -g1,20068:15904772,27966516 -k1,20069:32583029,27966516:14545060 -g1,20069:32583029,27966516 -) -v1,20071:6630773,29156982:0,393216,0 -(1,20075:6630773,29465787:25952256,702021,196608 -g1,20075:6630773,29465787 -g1,20075:6630773,29465787 -g1,20075:6434165,29465787 -(1,20075:6434165,29465787:0,702021,196608 -r1,20114:32779637,29465787:26345472,898629,196608 -k1,20075:6434165,29465787:-26345472 -) -(1,20075:6434165,29465787:26345472,702021,196608 -[1,20075:6630773,29465787:25952256,505413,0 -(1,20073:6630773,29364600:25952256,404226,101187 -(1,20072:6630773,29364600:0,0,0 -g1,20072:6630773,29364600 -g1,20072:6630773,29364600 -g1,20072:6303093,29364600 -(1,20072:6303093,29364600:0,0,0 -) -g1,20072:6630773,29364600 -) -g1,20073:6946919,29364600 -g1,20073:7263065,29364600 -g1,20073:15166707,29364600 -g1,20073:15798999,29364600 -h1,20073:19908893,29364600:0,0,0 -k1,20073:32583029,29364600:12674136 -g1,20073:32583029,29364600 -) -] -) -g1,20075:32583029,29465787 -g1,20075:6630773,29465787 -g1,20075:6630773,29465787 -g1,20075:32583029,29465787 -g1,20075:32583029,29465787 -) -h1,20075:6630773,29662395:0,0,0 -(1,20079:6630773,31028171:25952256,505283,134348 -h1,20078:6630773,31028171:983040,0,0 -k1,20078:10202903,31028171:219963 -k1,20078:13864160,31028171:219962 -k1,20078:15075683,31028171:219963 -k1,20078:18504943,31028171:219962 -k1,20078:19340944,31028171:219963 -k1,20078:21810757,31028171:219962 -k1,20078:24585313,31028171:219963 -k1,20078:25491437,31028171:219962 -k1,20078:26730485,31028171:219963 -k1,20078:28648485,31028171:219962 -k1,20078:31157621,31028171:219963 -k1,20078:32583029,31028171:0 -) -(1,20079:6630773,31869659:25952256,505283,134348 -g1,20078:8440222,31869659 -g1,20078:9658536,31869659 -g1,20078:12217061,31869659 -g1,20078:14666141,31869659 -g1,20078:16287501,31869659 -g1,20078:17440279,31869659 -g1,20078:19300190,31869659 -g1,20078:20702660,31869659 -g1,20078:22295840,31869659 -g1,20078:23514154,31869659 -(1,20078:23514154,31869659:0,414482,122846 -r1,20114:25630979,31869659:2116825,537328,122846 -k1,20078:23514154,31869659:-2116825 -) -(1,20078:23514154,31869659:2116825,414482,122846 -k1,20078:23514154,31869659:3277 -h1,20078:25627702,31869659:0,411205,112570 -) -g1,20078:25830208,31869659 -g1,20078:27418800,31869659 -k1,20079:32583029,31869659:4056015 -g1,20079:32583029,31869659 -) -v1,20081:6630773,33060125:0,393216,0 -(1,20089:6630773,36039933:25952256,3373024,196608 -g1,20089:6630773,36039933 -g1,20089:6630773,36039933 -g1,20089:6434165,36039933 -(1,20089:6434165,36039933:0,3373024,196608 -r1,20114:32779637,36039933:26345472,3569632,196608 -k1,20089:6434165,36039933:-26345472 -) -(1,20089:6434165,36039933:26345472,3373024,196608 -[1,20089:6630773,36039933:25952256,3176416,0 -(1,20083:6630773,33267743:25952256,404226,107478 -(1,20082:6630773,33267743:0,0,0 -g1,20082:6630773,33267743 -g1,20082:6630773,33267743 -g1,20082:6303093,33267743 -(1,20082:6303093,33267743:0,0,0 -) -g1,20082:6630773,33267743 -) -k1,20083:6630773,33267743:0 -g1,20083:10424522,33267743 -g1,20083:11056814,33267743 -k1,20083:11056814,33267743:0 -h1,20083:13269834,33267743:0,0,0 -k1,20083:32583030,33267743:19313196 -g1,20083:32583030,33267743 -) -(1,20084:6630773,33933921:25952256,410518,107478 -h1,20084:6630773,33933921:0,0,0 -g1,20084:6946919,33933921 -g1,20084:7263065,33933921 -g1,20084:7579211,33933921 -g1,20084:7895357,33933921 -g1,20084:8211503,33933921 -g1,20084:8527649,33933921 -g1,20084:8843795,33933921 -g1,20084:10740670,33933921 -g1,20084:11372962,33933921 -g1,20084:12953691,33933921 -g1,20084:13585983,33933921 -g1,20084:14218275,33933921 -g1,20084:18960461,33933921 -g1,20084:20857335,33933921 -g1,20084:21489627,33933921 -g1,20084:23702647,33933921 -h1,20084:24018793,33933921:0,0,0 -k1,20084:32583029,33933921:8564236 -g1,20084:32583029,33933921 -) -(1,20085:6630773,34600099:25952256,404226,107478 -h1,20085:6630773,34600099:0,0,0 -g1,20085:6946919,34600099 -g1,20085:7263065,34600099 -g1,20085:11056813,34600099 -h1,20085:11372959,34600099:0,0,0 -k1,20085:32583029,34600099:21210070 -g1,20085:32583029,34600099 -) -(1,20086:6630773,35266277:25952256,404226,107478 -h1,20086:6630773,35266277:0,0,0 -g1,20086:6946919,35266277 -g1,20086:7263065,35266277 -g1,20086:11372959,35266277 -h1,20086:11689105,35266277:0,0,0 -k1,20086:32583029,35266277:20893924 -g1,20086:32583029,35266277 -) -(1,20087:6630773,35932455:25952256,404226,107478 -h1,20087:6630773,35932455:0,0,0 -g1,20087:6946919,35932455 -g1,20087:7263065,35932455 -g1,20087:15166707,35932455 -g1,20087:15798999,35932455 -g1,20087:18012019,35932455 -g1,20087:20225039,35932455 -g1,20087:20857331,35932455 -g1,20087:22754206,35932455 -g1,20087:24018789,35932455 -g1,20087:25599518,35932455 -h1,20087:27180246,35932455:0,0,0 -k1,20087:32583029,35932455:5402783 -g1,20087:32583029,35932455 -) -] -) -g1,20089:32583029,36039933 -g1,20089:6630773,36039933 -g1,20089:6630773,36039933 -g1,20089:32583029,36039933 -g1,20089:32583029,36039933 -) -h1,20089:6630773,36236541:0,0,0 -(1,20092:6630773,38388749:25952256,513147,138281 -(1,20092:6630773,38388749:0,0,0 -g1,20092:6630773,38388749 -) -g1,20092:9499284,38388749 -g1,20092:10380743,38388749 -$1,20092:10380743,38388749 -$1,20092:10883404,38388749 -g1,20092:11087876,38388749 -g1,20092:12512628,38388749 -$1,20092:12512628,38388749 -$1,20092:13064441,38388749 -g1,20092:13268913,38388749 -k1,20092:32583029,38388749:17839556 -g1,20092:32583029,38388749 -) -(1,20096:6630773,39623453:25952256,513147,134348 -k1,20095:8076178,39623453:248718 -k1,20095:10590475,39623453:248717 -k1,20095:13453424,39623453:248718 -k1,20095:14361433,39623453:248717 -k1,20095:16008689,39623453:248718 -k1,20095:17361688,39623453:248717 -k1,20095:18358172,39623453:248718 -k1,20095:21268306,39623453:248717 -k1,20095:24075550,39623453:248718 -k1,20095:27604999,39623453:248717 -(1,20095:27604999,39623453:0,452978,115847 -r1,20114:30425248,39623453:2820249,568825,115847 -k1,20095:27604999,39623453:-2820249 -) -(1,20095:27604999,39623453:2820249,452978,115847 -k1,20095:27604999,39623453:3277 -h1,20095:30421971,39623453:0,411205,112570 -) -k1,20095:30847636,39623453:248718 -k1,20095:32583029,39623453:0 -) -(1,20096:6630773,40464941:25952256,505283,122846 -g1,20095:9804681,40464941 -g1,20095:13091966,40464941 -(1,20095:13091966,40464941:0,452978,115847 -r1,20114:15912215,40464941:2820249,568825,115847 -k1,20095:13091966,40464941:-2820249 -) -(1,20095:13091966,40464941:2820249,452978,115847 -k1,20095:13091966,40464941:3277 -h1,20095:15908938,40464941:0,411205,112570 -) -g1,20095:16285114,40464941 -(1,20095:16285114,40464941:0,452978,115847 -r1,20114:18050227,40464941:1765113,568825,115847 -k1,20095:16285114,40464941:-1765113 -) -(1,20095:16285114,40464941:1765113,452978,115847 -k1,20095:16285114,40464941:3277 -h1,20095:18046950,40464941:0,411205,112570 -) -g1,20095:18423126,40464941 -(1,20095:18423126,40464941:0,459977,115847 -r1,20114:20539951,40464941:2116825,575824,115847 -k1,20095:18423126,40464941:-2116825 -) -(1,20095:18423126,40464941:2116825,459977,115847 -k1,20095:18423126,40464941:3277 -h1,20095:20536674,40464941:0,411205,112570 -) -g1,20095:20739180,40464941 -g1,20095:22129854,40464941 -(1,20095:22129854,40464941:0,452978,122846 -r1,20114:24598391,40464941:2468537,575824,122846 -k1,20095:22129854,40464941:-2468537 -) -(1,20095:22129854,40464941:2468537,452978,122846 -k1,20095:22129854,40464941:3277 -h1,20095:24595114,40464941:0,411205,112570 -) -k1,20096:32583029,40464941:7810968 -g1,20096:32583029,40464941 -) -v1,20098:6630773,41655407:0,393216,0 -(1,20105:6630773,43969037:25952256,2706846,196608 -g1,20105:6630773,43969037 -g1,20105:6630773,43969037 -g1,20105:6434165,43969037 -(1,20105:6434165,43969037:0,2706846,196608 -r1,20114:32779637,43969037:26345472,2903454,196608 -k1,20105:6434165,43969037:-26345472 -) -(1,20105:6434165,43969037:26345472,2706846,196608 -[1,20105:6630773,43969037:25952256,2510238,0 -(1,20100:6630773,41863025:25952256,404226,107478 -(1,20099:6630773,41863025:0,0,0 -g1,20099:6630773,41863025 -g1,20099:6630773,41863025 -g1,20099:6303093,41863025 -(1,20099:6303093,41863025:0,0,0 -) -g1,20099:6630773,41863025 -) -k1,20100:6630773,41863025:0 -g1,20100:10424522,41863025 -g1,20100:11056814,41863025 -g1,20100:13585980,41863025 -g1,20100:16115146,41863025 -g1,20100:18012020,41863025 -h1,20100:18328166,41863025:0,0,0 -k1,20100:32583029,41863025:14254863 -g1,20100:32583029,41863025 -) -(1,20101:6630773,42529203:25952256,404226,107478 -h1,20101:6630773,42529203:0,0,0 -g1,20101:6946919,42529203 -g1,20101:7263065,42529203 -g1,20101:11372959,42529203 -h1,20101:11689105,42529203:0,0,0 -k1,20101:32583029,42529203:20893924 -g1,20101:32583029,42529203 -) -(1,20102:6630773,43195381:25952256,404226,101187 -h1,20102:6630773,43195381:0,0,0 -g1,20102:6946919,43195381 -g1,20102:7263065,43195381 -g1,20102:16115144,43195381 -g1,20102:16747436,43195381 -g1,20102:18960456,43195381 -h1,20102:19276602,43195381:0,0,0 -k1,20102:32583029,43195381:13306427 -g1,20102:32583029,43195381 -) -(1,20103:6630773,43861559:25952256,404226,107478 -h1,20103:6630773,43861559:0,0,0 -g1,20103:6946919,43861559 -g1,20103:7263065,43861559 -g1,20103:16115144,43861559 -g1,20103:16747436,43861559 -h1,20103:19276602,43861559:0,0,0 -k1,20103:32583029,43861559:13306427 -g1,20103:32583029,43861559 -) -] -) -g1,20105:32583029,43969037 -g1,20105:6630773,43969037 -g1,20105:6630773,43969037 -g1,20105:32583029,43969037 -g1,20105:32583029,43969037 -) -h1,20105:6630773,44165645:0,0,0 -] -(1,20114:32583029,45706769:0,0,0 -g1,20114:32583029,45706769 -) -) -] -(1,20114:6630773,47279633:25952256,0,0 -h1,20114:6630773,47279633:25952256,0,0 -) -] -(1,20114:4262630,4025873:0,0,0 -[1,20114:-473656,4025873:0,0,0 -(1,20114:-473656,-710413:0,0,0 -(1,20114:-473656,-710413:0,0,0 -g1,20114:-473656,-710413 -) -g1,20114:-473656,-710413 -) -] -) -] -!19541 -}360 -Input:3260:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3261:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3262:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3263:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!388 -{361 -[1,20154:4262630,47279633:28320399,43253760,0 -(1,20154:4262630,4025873:0,0,0 -[1,20154:-473656,4025873:0,0,0 -(1,20154:-473656,-710413:0,0,0 -(1,20154:-473656,-644877:0,0,0 -k1,20154:-473656,-644877:-65536 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,20009:3078558,51504789:16384,1179648,0 +) +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 +) +] ) -(1,20154:-473656,4736287:0,0,0 -k1,20154:-473656,4736287:5209943 ) -g1,20154:-473656,-710413 +) +] +[1,20009:3078558,4812305:0,0,0 +(1,20009:3078558,49800853:0,16384,2228224 +g1,20009:29030814,49800853 +g1,20009:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,20009:36151628,51504789:16384,1179648,0 +) +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 +) +] +) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,20009:37855564,49800853:1179648,16384,0 +) +) +k1,20009:3078556,49800853:-34777008 +) +] +g1,20009:6630773,4812305 +k1,20009:21350816,4812305:13524666 +g1,20009:21999622,4812305 +g1,20009:25611966,4812305 +g1,20009:28956923,4812305 +g1,20009:29772190,4812305 +) +) +] +[1,20009:6630773,45706769:25952256,40108032,0 +(1,20009:6630773,45706769:25952256,40108032,0 +(1,20009:6630773,45706769:0,0,0 +g1,20009:6630773,45706769 +) +[1,20009:6630773,45706769:25952256,40108032,0 +v1,19961:6630773,6254097:0,393216,0 +(1,19961:6630773,9334200:25952256,3473319,196608 +g1,19961:6630773,9334200 +g1,19961:6630773,9334200 +g1,19961:6434165,9334200 +(1,19961:6434165,9334200:0,3473319,196608 +r1,20009:32779637,9334200:26345472,3669927,196608 +k1,19961:6434165,9334200:-26345472 +) +(1,19961:6434165,9334200:26345472,3473319,196608 +[1,19961:6630773,9334200:25952256,3276711,0 +(1,19955:6630773,6481928:25952256,424439,106246 +h1,19955:6630773,6481928:0,0,0 +g1,19955:6962727,6481928 +g1,19955:7294681,6481928 +g1,19955:12605944,6481928 +g1,19955:13269852,6481928 +g1,19955:14265714,6481928 +h1,19955:14597668,6481928:0,0,0 +k1,19955:32583028,6481928:17985360 +g1,19955:32583028,6481928 +) +(1,19956:6630773,7166783:25952256,424439,79822 +h1,19956:6630773,7166783:0,0,0 +g1,19956:6962727,7166783 +g1,19956:7294681,7166783 +g1,19956:15261576,7166783 +g1,19956:15925484,7166783 +g1,19956:17917208,7166783 +g1,19956:19908932,7166783 +h1,19956:20240886,7166783:0,0,0 +k1,19956:32583029,7166783:12342143 +g1,19956:32583029,7166783 +) +(1,19957:6630773,7851638:25952256,431045,106246 +h1,19957:6630773,7851638:0,0,0 +g1,19957:6962727,7851638 +g1,19957:7294681,7851638 +g1,19957:15261576,7851638 +g1,19957:15925484,7851638 +g1,19957:20904793,7851638 +g1,19957:23228471,7851638 +h1,19957:23560425,7851638:0,0,0 +k1,19957:32583029,7851638:9022604 +g1,19957:32583029,7851638 +) +(1,19958:6630773,8536493:25952256,431045,112852 +h1,19958:6630773,8536493:0,0,0 +g1,19958:6962727,8536493 +g1,19958:7294681,8536493 +g1,19958:11942037,8536493 +g1,19958:12605945,8536493 +g1,19958:15261577,8536493 +g1,19958:16257439,8536493 +g1,19958:18581117,8536493 +k1,19958:18581117,8536493:0 +h1,19958:20904795,8536493:0,0,0 +k1,19958:32583029,8536493:11678234 +g1,19958:32583029,8536493 +) +(1,19959:6630773,9221348:25952256,431045,112852 +h1,19959:6630773,9221348:0,0,0 +g1,19959:6962727,9221348 +g1,19959:7294681,9221348 +g1,19959:7626635,9221348 +g1,19959:7958589,9221348 +g1,19959:8290543,9221348 +g1,19959:8622497,9221348 +g1,19959:8954451,9221348 +g1,19959:9286405,9221348 +g1,19959:9618359,9221348 +g1,19959:9950313,9221348 +g1,19959:12937898,9221348 +g1,19959:13601806,9221348 +g1,19959:16921345,9221348 +g1,19959:18581115,9221348 +k1,19959:18581115,9221348:0 +h1,19959:22564563,9221348:0,0,0 +k1,19959:32583029,9221348:10018466 +g1,19959:32583029,9221348 +) +] +) +g1,19961:32583029,9334200 +g1,19961:6630773,9334200 +g1,19961:6630773,9334200 +g1,19961:32583029,9334200 +g1,19961:32583029,9334200 +) +h1,19961:6630773,9530808:0,0,0 +(1,19964:6630773,18680010:25952256,9083666,0 +k1,19964:10523651,18680010:3892878 +h1,19963:10523651,18680010:0,0,0 +(1,19963:10523651,18680010:18166500,9083666,0 +(1,19963:10523651,18680010:18167376,9083688,0 +(1,19963:10523651,18680010:18167376,9083688,0 +(1,19963:10523651,18680010:0,9083688,0 +(1,19963:10523651,18680010:0,14208860,0 +(1,19963:10523651,18680010:28417720,14208860,0 +) +k1,19963:10523651,18680010:-28417720 +) +) +g1,19963:28691027,18680010 +) +) +) +g1,19964:28690151,18680010 +k1,19964:32583029,18680010:3892878 +) +(1,19971:6630773,19545090:25952256,513147,115847 +h1,19970:6630773,19545090:983040,0,0 +k1,19970:11855503,19545090:213192 +k1,19970:15094491,19545090:213191 +(1,19970:15094491,19545090:0,452978,115847 +r1,20009:17211316,19545090:2116825,568825,115847 +k1,19970:15094491,19545090:-2116825 +) +(1,19970:15094491,19545090:2116825,452978,115847 +k1,19970:15094491,19545090:3277 +h1,19970:17208039,19545090:0,411205,112570 +) +k1,19970:17424508,19545090:213192 +k1,19970:18829145,19545090:213192 +(1,19970:18829145,19545090:0,452978,115847 +r1,20009:20945970,19545090:2116825,568825,115847 +k1,19970:18829145,19545090:-2116825 +) +(1,19970:18829145,19545090:2116825,452978,115847 +k1,19970:18829145,19545090:3277 +h1,19970:20942693,19545090:0,411205,112570 +) +k1,19970:21159161,19545090:213191 +k1,19970:22476635,19545090:213192 +k1,19970:23437593,19545090:213192 +k1,19970:25164011,19545090:213192 +k1,19970:26028630,19545090:213191 +k1,19970:27176365,19545090:213192 +k1,19970:28408642,19545090:213192 +k1,19970:29874226,19545090:213191 +k1,19970:31931601,19545090:213192 +k1,19970:32583029,19545090:0 +) +(1,19971:6630773,20410170:25952256,505283,126483 +g1,19970:8811155,20410170 +g1,19970:10754297,20410170 +g1,19970:11569564,20410170 +g1,19970:12787878,20410170 +g1,19970:15741585,20410170 +k1,19971:32583029,20410170:14697106 +g1,19971:32583029,20410170 +) +v1,19973:6630773,21095025:0,393216,0 +(1,19978:6630773,22113957:25952256,1412148,196608 +g1,19978:6630773,22113957 +g1,19978:6630773,22113957 +g1,19978:6434165,22113957 +(1,19978:6434165,22113957:0,1412148,196608 +r1,20009:32779637,22113957:26345472,1608756,196608 +k1,19978:6434165,22113957:-26345472 +) +(1,19978:6434165,22113957:26345472,1412148,196608 +[1,19978:6630773,22113957:25952256,1215540,0 +(1,19975:6630773,21322856:25952256,424439,79822 +(1,19974:6630773,21322856:0,0,0 +g1,19974:6630773,21322856 +g1,19974:6630773,21322856 +g1,19974:6303093,21322856 +(1,19974:6303093,21322856:0,0,0 +) +g1,19974:6630773,21322856 +) +g1,19975:6962727,21322856 +g1,19975:7294681,21322856 +g1,19975:10946175,21322856 +g1,19975:12937899,21322856 +h1,19975:13269853,21322856:0,0,0 +k1,19975:32583029,21322856:19313176 +g1,19975:32583029,21322856 +) +(1,19976:6630773,22007711:25952256,431045,106246 +h1,19976:6630773,22007711:0,0,0 +g1,19976:6962727,22007711 +g1,19976:7294681,22007711 +g1,19976:13933760,22007711 +g1,19976:16257438,22007711 +h1,19976:16589392,22007711:0,0,0 +k1,19976:32583029,22007711:15993637 +g1,19976:32583029,22007711 +) +] +) +g1,19978:32583029,22113957 +g1,19978:6630773,22113957 +g1,19978:6630773,22113957 +g1,19978:32583029,22113957 +g1,19978:32583029,22113957 +) +h1,19978:6630773,22310565:0,0,0 +(1,19982:6630773,23175645:25952256,513147,115847 +h1,19981:6630773,23175645:983040,0,0 +k1,19981:11897300,23175645:254989 +k1,19981:14847784,23175645:254988 +(1,19981:14847784,23175645:0,452978,115847 +r1,20009:16964609,23175645:2116825,568825,115847 +k1,19981:14847784,23175645:-2116825 +) +(1,19981:14847784,23175645:2116825,452978,115847 +k1,19981:14847784,23175645:3277 +h1,19981:16961332,23175645:0,411205,112570 +) +k1,19981:17219598,23175645:254989 +k1,19981:18006083,23175645:254988 +k1,19981:20238293,23175645:254989 +k1,19981:22191319,23175645:254988 +k1,19981:23314660,23175645:254989 +k1,19981:24662133,23175645:254988 +k1,19981:27182702,23175645:254989 +k1,19981:29340200,23175645:254988 +k1,19981:30542840,23175645:254989 +k1,19981:31563944,23175645:254988 +k1,19981:32583029,23175645:0 +) +(1,19982:6630773,24040725:25952256,505283,126483 +k1,19981:9891658,24040725:196421 +k1,19981:10704116,24040725:196420 +k1,19981:11256397,24040725:196421 +k1,19981:12730115,24040725:196421 +k1,19981:13998705,24040725:196421 +k1,19981:15743741,24040725:196420 +k1,19981:16591590,24040725:196421 +k1,19981:19720747,24040725:196421 +k1,19981:20851710,24040725:196420 +k1,19981:22300524,24040725:196421 +k1,19981:24341128,24040725:196421 +k1,19981:26747423,24040725:196421 +k1,19981:28044848,24040725:196420 +k1,19981:31563944,24040725:196421 +k1,19982:32583029,24040725:0 +) +(1,19982:6630773,24905805:25952256,513147,134348 +(1,19981:6630773,24905805:0,414482,115847 +r1,20009:8044174,24905805:1413401,530329,115847 +k1,19981:6630773,24905805:-1413401 +) +(1,19981:6630773,24905805:1413401,414482,115847 +k1,19981:6630773,24905805:3277 +h1,19981:8040897,24905805:0,411205,112570 +) +k1,19981:8179195,24905805:135021 +k1,19981:8973507,24905805:135020 +k1,19981:10805255,24905805:135021 +k1,19981:13016456,24905805:135020 +(1,19981:13016456,24905805:0,452978,115847 +r1,20009:15133281,24905805:2116825,568825,115847 +k1,19981:13016456,24905805:-2116825 +) +(1,19981:13016456,24905805:2116825,452978,115847 +k1,19981:13016456,24905805:3277 +h1,19981:15130004,24905805:0,411205,112570 +) +k1,19981:15268302,24905805:135021 +k1,19981:17781624,24905805:135020 +k1,19981:21319274,24905805:135021 +k1,19981:22401946,24905805:135021 +k1,19981:24233693,24905805:135020 +k1,19981:26437030,24905805:135021 +k1,19981:28481114,24905805:135020 +k1,19981:29302297,24905805:135021 +k1,19981:32583029,24905805:0 +) +(1,19982:6630773,25770885:25952256,513147,115847 +k1,19981:9031994,25770885:159234 +k1,19981:10210313,25770885:159234 +k1,19981:12437863,25770885:159234 +k1,19981:13256389,25770885:159234 +k1,19981:14434708,25770885:159234 +k1,19981:17809138,25770885:159234 +k1,19981:18438265,25770885:159234 +k1,19981:19883316,25770885:159235 +k1,19981:22054505,25770885:159234 +k1,19981:22958883,25770885:159234 +k1,19981:23769545,25770885:159234 +k1,19981:24863322,25770885:159234 +(1,19981:24863322,25770885:0,452978,115847 +r1,20009:26628435,25770885:1765113,568825,115847 +k1,19981:24863322,25770885:-1765113 +) +(1,19981:24863322,25770885:1765113,452978,115847 +k1,19981:24863322,25770885:3277 +h1,19981:26625158,25770885:0,411205,112570 +) +k1,19981:26961339,25770885:159234 +(1,19981:26961339,25770885:0,452978,115847 +r1,20009:29781588,25770885:2820249,568825,115847 +k1,19981:26961339,25770885:-2820249 +) +(1,19981:26961339,25770885:2820249,452978,115847 +k1,19981:26961339,25770885:3277 +h1,19981:29778311,25770885:0,411205,112570 +) +k1,19981:30114492,25770885:159234 +(1,19981:30114492,25770885:0,452978,115847 +r1,20009:32583029,25770885:2468537,568825,115847 +k1,19981:30114492,25770885:-2468537 +) +(1,19981:30114492,25770885:2468537,452978,115847 +k1,19981:30114492,25770885:3277 +h1,19981:32579752,25770885:0,411205,112570 +) +k1,19981:32583029,25770885:0 +) +(1,19982:6630773,26635965:25952256,513147,122846 +g1,19981:8021447,26635965 +(1,19981:8021447,26635965:0,414482,122846 +r1,20009:9083136,26635965:1061689,537328,122846 +k1,19981:8021447,26635965:-1061689 +) +(1,19981:8021447,26635965:1061689,414482,122846 +k1,19981:8021447,26635965:3277 +h1,19981:9079859,26635965:0,411205,112570 +) +g1,19981:9456035,26635965 +g1,19981:10314556,26635965 +g1,19981:12399256,26635965 +g1,19981:13617570,26635965 +g1,19981:15122932,26635965 +g1,19981:16494600,26635965 +g1,19981:17798111,26635965 +g1,19981:19283156,26635965 +g1,19981:20230151,26635965 +g1,19981:21363923,26635965 +g1,19981:22957103,26635965 +(1,19981:22957103,26635965:0,452978,122846 +r1,20009:26129063,26635965:3171960,575824,122846 +k1,19981:22957103,26635965:-3171960 +) +(1,19981:22957103,26635965:3171960,452978,122846 +k1,19981:22957103,26635965:3277 +h1,19981:26125786,26635965:0,411205,112570 +) +k1,19982:32583029,26635965:6280296 +g1,19982:32583029,26635965 +) +v1,19984:6630773,27320820:0,393216,0 +(1,19999:6630773,35161878:25952256,8234274,196608 +g1,19999:6630773,35161878 +g1,19999:6630773,35161878 +g1,19999:6434165,35161878 +(1,19999:6434165,35161878:0,8234274,196608 +r1,20009:32779637,35161878:26345472,8430882,196608 +k1,19999:6434165,35161878:-26345472 +) +(1,19999:6434165,35161878:26345472,8234274,196608 +[1,19999:6630773,35161878:25952256,8037666,0 +(1,19986:6630773,27548651:25952256,424439,112852 +(1,19985:6630773,27548651:0,0,0 +g1,19985:6630773,27548651 +g1,19985:6630773,27548651 +g1,19985:6303093,27548651 +(1,19985:6303093,27548651:0,0,0 +) +g1,19985:6630773,27548651 +) +k1,19986:6630773,27548651:0 +g1,19986:10614221,27548651 +g1,19986:11278129,27548651 +k1,19986:11278129,27548651:0 +h1,19986:13601807,27548651:0,0,0 +k1,19986:32583029,27548651:18981222 +g1,19986:32583029,27548651 +) +(1,19987:6630773,28233506:25952256,431045,112852 +h1,19987:6630773,28233506:0,0,0 +g1,19987:6962727,28233506 +g1,19987:7294681,28233506 +g1,19987:7626635,28233506 +g1,19987:7958589,28233506 +g1,19987:8290543,28233506 +g1,19987:8622497,28233506 +g1,19987:8954451,28233506 +g1,19987:10946175,28233506 +g1,19987:11610083,28233506 +g1,19987:13269853,28233506 +g1,19987:13933761,28233506 +g1,19987:14597669,28233506 +g1,19987:19576978,28233506 +g1,19987:21568702,28233506 +g1,19987:22232610,28233506 +g1,19987:24556288,28233506 +h1,19987:24888242,28233506:0,0,0 +k1,19987:32583029,28233506:7694787 +g1,19987:32583029,28233506 +) +(1,19988:6630773,28918361:25952256,424439,112852 +h1,19988:6630773,28918361:0,0,0 +g1,19988:6962727,28918361 +g1,19988:7294681,28918361 +g1,19988:11278128,28918361 +h1,19988:11610082,28918361:0,0,0 +k1,19988:32583030,28918361:20972948 +g1,19988:32583030,28918361 +) +(1,19989:6630773,29603216:25952256,424439,112852 +h1,19989:6630773,29603216:0,0,0 +g1,19989:6962727,29603216 +g1,19989:7294681,29603216 +g1,19989:11610082,29603216 +h1,19989:11942036,29603216:0,0,0 +k1,19989:32583028,29603216:20640992 +g1,19989:32583028,29603216 +) +(1,19990:6630773,30288071:25952256,424439,106246 +h1,19990:6630773,30288071:0,0,0 +g1,19990:6962727,30288071 +g1,19990:7294681,30288071 +g1,19990:12605944,30288071 +g1,19990:13269852,30288071 +g1,19990:14265714,30288071 +h1,19990:14597668,30288071:0,0,0 +k1,19990:32583028,30288071:17985360 +g1,19990:32583028,30288071 +) +(1,19991:6630773,30972926:25952256,431045,112852 +h1,19991:6630773,30972926:0,0,0 +g1,19991:6962727,30972926 +g1,19991:7294681,30972926 +g1,19991:10946175,30972926 +g1,19991:11610083,30972926 +g1,19991:14265715,30972926 +g1,19991:15261577,30972926 +g1,19991:17585255,30972926 +k1,19991:17585255,30972926:0 +h1,19991:19908933,30972926:0,0,0 +k1,19991:32583029,30972926:12674096 +g1,19991:32583029,30972926 +) +(1,19992:6630773,31657781:25952256,431045,112852 +h1,19992:6630773,31657781:0,0,0 +g1,19992:6962727,31657781 +g1,19992:7294681,31657781 +g1,19992:7626635,31657781 +g1,19992:7958589,31657781 +g1,19992:8290543,31657781 +g1,19992:8622497,31657781 +g1,19992:8954451,31657781 +g1,19992:11942036,31657781 +g1,19992:12605944,31657781 +g1,19992:15925483,31657781 +g1,19992:17585253,31657781 +k1,19992:17585253,31657781:0 +h1,19992:21568701,31657781:0,0,0 +k1,19992:32583029,31657781:11014328 +g1,19992:32583029,31657781 +) +(1,19993:6630773,32342636:25952256,424439,106246 +h1,19993:6630773,32342636:0,0,0 +g1,19993:6962727,32342636 +g1,19993:7294681,32342636 +g1,19993:7626635,32342636 +g1,19993:7958589,32342636 +g1,19993:8290543,32342636 +g1,19993:8622497,32342636 +g1,19993:8954451,32342636 +g1,19993:11610083,32342636 +g1,19993:12273991,32342636 +g1,19993:13933761,32342636 +g1,19993:16589393,32342636 +g1,19993:17585255,32342636 +g1,19993:18581117,32342636 +g1,19993:19908933,32342636 +g1,19993:22232611,32342636 +g1,19993:23228473,32342636 +k1,19993:23228473,32342636:0 +h1,19993:25884105,32342636:0,0,0 +k1,19993:32583029,32342636:6698924 +g1,19993:32583029,32342636 +) +(1,19994:6630773,33027491:25952256,424439,112852 +h1,19994:6630773,33027491:0,0,0 +g1,19994:6962727,33027491 +g1,19994:7294681,33027491 +g1,19994:7626635,33027491 +g1,19994:7958589,33027491 +g1,19994:8290543,33027491 +g1,19994:8622497,33027491 +g1,19994:8954451,33027491 +g1,19994:10282267,33027491 +g1,19994:10946175,33027491 +k1,19994:10946175,33027491:0 +h1,19994:12273991,33027491:0,0,0 +k1,19994:32583029,33027491:20309038 +g1,19994:32583029,33027491 +) +(1,19995:6630773,33712346:25952256,424439,86428 +h1,19995:6630773,33712346:0,0,0 +g1,19995:6962727,33712346 +g1,19995:7294681,33712346 +g1,19995:7626635,33712346 +g1,19995:7958589,33712346 +g1,19995:8290543,33712346 +g1,19995:8622497,33712346 +g1,19995:8954451,33712346 +g1,19995:9618359,33712346 +g1,19995:10282267,33712346 +g1,19995:12273991,33712346 +k1,19995:12273991,33712346:0 +h1,19995:13933761,33712346:0,0,0 +k1,19995:32583029,33712346:18649268 +g1,19995:32583029,33712346 +) +(1,19996:6630773,34397201:25952256,431045,106246 +h1,19996:6630773,34397201:0,0,0 +g1,19996:6962727,34397201 +g1,19996:7294681,34397201 +g1,19996:7626635,34397201 +g1,19996:7958589,34397201 +g1,19996:8290543,34397201 +g1,19996:8622497,34397201 +g1,19996:8954451,34397201 +g1,19996:9618359,34397201 +g1,19996:10282267,34397201 +g1,19996:15261576,34397201 +k1,19996:15261576,34397201:0 +h1,19996:17253300,34397201:0,0,0 +k1,19996:32583029,34397201:15329729 +g1,19996:32583029,34397201 +) +(1,19997:6630773,35082056:25952256,424439,79822 +h1,19997:6630773,35082056:0,0,0 +g1,19997:6962727,35082056 +g1,19997:7294681,35082056 +g1,19997:7626635,35082056 +g1,19997:7958589,35082056 +g1,19997:8290543,35082056 +g1,19997:8622497,35082056 +g1,19997:8954451,35082056 +g1,19997:10946175,35082056 +g1,19997:11610083,35082056 +h1,19997:16589392,35082056:0,0,0 +k1,19997:32583029,35082056:15993637 +g1,19997:32583029,35082056 +) +] +) +g1,19999:32583029,35161878 +g1,19999:6630773,35161878 +g1,19999:6630773,35161878 +g1,19999:32583029,35161878 +g1,19999:32583029,35161878 +) +h1,19999:6630773,35358486:0,0,0 +(1,20002:6630773,44507688:25952256,9083666,0 +k1,20002:10523651,44507688:3892878 +h1,20001:10523651,44507688:0,0,0 +(1,20001:10523651,44507688:18166500,9083666,0 +(1,20001:10523651,44507688:18167376,9083688,0 +(1,20001:10523651,44507688:18167376,9083688,0 +(1,20001:10523651,44507688:0,9083688,0 +(1,20001:10523651,44507688:0,14208860,0 +(1,20001:10523651,44507688:28417720,14208860,0 +) +k1,20001:10523651,44507688:-28417720 +) +) +g1,20001:28691027,44507688 +) +) +) +g1,20002:28690151,44507688 +k1,20002:32583029,44507688:3892878 +) +] +(1,20009:32583029,45706769:0,0,0 +g1,20009:32583029,45706769 +) +) +] +(1,20009:6630773,47279633:25952256,0,0 +h1,20009:6630773,47279633:25952256,0,0 +) +] +(1,20009:4262630,4025873:0,0,0 +[1,20009:-473656,4025873:0,0,0 +(1,20009:-473656,-710413:0,0,0 +(1,20009:-473656,-710413:0,0,0 +g1,20009:-473656,-710413 +) +g1,20009:-473656,-710413 ) ] ) -[1,20154:6630773,47279633:25952256,43253760,0 -[1,20154:6630773,4812305:25952256,786432,0 -(1,20154:6630773,4812305:25952256,513147,126483 -(1,20154:6630773,4812305:25952256,513147,126483 -g1,20154:3078558,4812305 -[1,20154:3078558,4812305:0,0,0 -(1,20154:3078558,2439708:0,1703936,0 -k1,20154:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,20154:2537886,2439708:1179648,16384,0 +] +!19955 +}339 +Input:3206:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3207:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3208:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3209:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3210:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3211:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3212:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3213:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3214:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3215:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3216:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3217:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3218:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3219:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3220:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3221:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3222:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3223:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3224:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3225:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3226:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3227:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3228:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3229:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3230:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3231:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3232:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3233:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3234:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3235:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3236:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3237:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3238:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3239:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3240:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3241:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3242:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3243:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3244:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3245:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3246:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3247:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3248:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!4054 +{340 +[1,20062:4262630,47279633:28320399,43253760,0 +(1,20062:4262630,4025873:0,0,0 +[1,20062:-473656,4025873:0,0,0 +(1,20062:-473656,-710413:0,0,0 +(1,20062:-473656,-644877:0,0,0 +k1,20062:-473656,-644877:-65536 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,20154:3078558,1915420:16384,1179648,0 +(1,20062:-473656,4736287:0,0,0 +k1,20062:-473656,4736287:5209943 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +g1,20062:-473656,-710413 ) ] ) +[1,20062:6630773,47279633:25952256,43253760,0 +[1,20062:6630773,4812305:25952256,786432,0 +(1,20062:6630773,4812305:25952256,505283,11795 +(1,20062:6630773,4812305:25952256,505283,11795 +g1,20062:3078558,4812305 +[1,20062:3078558,4812305:0,0,0 +(1,20062:3078558,2439708:0,1703936,0 +k1,20062:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,20062:2537886,2439708:1179648,16384,0 ) +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,20062:3078558,1915420:16384,1179648,0 ) -] -[1,20154:3078558,4812305:0,0,0 -(1,20154:3078558,2439708:0,1703936,0 -g1,20154:29030814,2439708 -g1,20154:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,20154:36151628,1915420:16384,1179648,0 -) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,20154:37855564,2439708:1179648,16384,0 -) ) -k1,20154:3078556,2439708:-34777008 ) ] -[1,20154:3078558,4812305:0,0,0 -(1,20154:3078558,49800853:0,16384,2228224 -k1,20154:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,20154:2537886,49800853:1179648,16384,0 +[1,20062:3078558,4812305:0,0,0 +(1,20062:3078558,2439708:0,1703936,0 +g1,20062:29030814,2439708 +g1,20062:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,20062:36151628,1915420:16384,1179648,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,20154:3078558,51504789:16384,1179648,0 -) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,20062:37855564,2439708:1179648,16384,0 +) ) +k1,20062:3078556,2439708:-34777008 ) ] -[1,20154:3078558,4812305:0,0,0 -(1,20154:3078558,49800853:0,16384,2228224 -g1,20154:29030814,49800853 -g1,20154:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,20154:36151628,51504789:16384,1179648,0 +[1,20062:3078558,4812305:0,0,0 +(1,20062:3078558,49800853:0,16384,2228224 +k1,20062:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,20062:2537886,49800853:1179648,16384,0 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,20062:3078558,51504789:16384,1179648,0 ) -] +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,20154:37855564,49800853:1179648,16384,0 +] ) ) -k1,20154:3078556,49800853:-34777008 ) ] -g1,20154:6630773,4812305 -k1,20154:21350816,4812305:13524666 -g1,20154:21999622,4812305 -g1,20154:25611966,4812305 -g1,20154:28956923,4812305 -g1,20154:29772190,4812305 +[1,20062:3078558,4812305:0,0,0 +(1,20062:3078558,49800853:0,16384,2228224 +g1,20062:29030814,49800853 +g1,20062:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,20062:36151628,51504789:16384,1179648,0 ) +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] -[1,20154:6630773,45706769:25952256,40108032,0 -(1,20154:6630773,45706769:25952256,40108032,0 -(1,20154:6630773,45706769:0,0,0 -g1,20154:6630773,45706769 ) -[1,20154:6630773,45706769:25952256,40108032,0 -(1,20108:6630773,16109226:25952256,10510489,0 -k1,20108:12599879,16109226:5969106 -h1,20107:12599879,16109226:0,0,0 -(1,20107:12599879,16109226:14014044,10510489,0 -(1,20107:12599879,16109226:14014019,10510515,0 -(1,20107:12599879,16109226:14014019,10510515,0 -(1,20107:12599879,16109226:0,10510515,0 -(1,20107:12599879,16109226:0,14208860,0 -(1,20107:12599879,16109226:18945146,14208860,0 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,20062:37855564,49800853:1179648,16384,0 ) -k1,20107:12599879,16109226:-18945146 ) +k1,20062:3078556,49800853:-34777008 ) -g1,20107:26613898,16109226 -) -) -) -g1,20108:26613923,16109226 -k1,20108:32583029,16109226:5969106 -) -(1,20114:6630773,17737146:25952256,505283,126483 -(1,20114:6630773,17737146:0,0,0 -g1,20114:6630773,17737146 +] +g1,20062:6630773,4812305 +g1,20062:6630773,4812305 +g1,20062:8724648,4812305 +k1,20062:31387652,4812305:22663004 +) +) +] +[1,20062:6630773,45706769:25952256,40108032,0 +(1,20062:6630773,45706769:25952256,40108032,0 +(1,20062:6630773,45706769:0,0,0 +g1,20062:6630773,45706769 ) -g1,20114:10278507,17737146 -k1,20114:32583029,17737146:20829962 -g1,20114:32583029,17737146 +[1,20062:6630773,45706769:25952256,40108032,0 +v1,20009:6630773,6254097:0,393216,0 +(1,20010:6630773,8391082:25952256,2530201,0 +g1,20010:6630773,8391082 +g1,20010:6237557,8391082 +r1,20062:6368629,8391082:131072,2530201,0 +g1,20010:6567858,8391082 +g1,20010:6764466,8391082 +[1,20010:6764466,8391082:25818563,2530201,0 +(1,20010:6764466,6526574:25818563,665693,196608 +(1,20009:6764466,6526574:0,665693,196608 +r1,20062:8010564,6526574:1246098,862301,196608 +k1,20009:6764466,6526574:-1246098 ) -(1,20117:6630773,18971850:25952256,513147,126483 -k1,20116:7378791,18971850:278125 -k1,20116:8188412,18971850:278124 -k1,20116:9752353,18971850:278125 -k1,20116:12660438,18971850:278125 -k1,20116:13589990,18971850:278124 -k1,20116:15065458,18971850:278125 -k1,20116:18590237,18971850:278125 -k1,20116:20266900,18971850:278125 -k1,20116:21938975,18971850:278124 -k1,20116:23731637,18971850:278125 -k1,20116:27072915,18971850:278125 -k1,20116:27967077,18971850:278124 -k1,20116:28601062,18971850:278125 -k1,20116:32583029,18971850:0 -) -(1,20117:6630773,19813338:25952256,505283,7863 -k1,20117:32583028,19813338:24206376 -g1,20117:32583028,19813338 -) -v1,20119:6630773,20924062:0,393216,0 -(1,20125:6630773,22565223:25952256,2034377,196608 -g1,20125:6630773,22565223 -g1,20125:6630773,22565223 -g1,20125:6434165,22565223 -(1,20125:6434165,22565223:0,2034377,196608 -r1,20154:32779637,22565223:26345472,2230985,196608 -k1,20125:6434165,22565223:-26345472 -) -(1,20125:6434165,22565223:26345472,2034377,196608 -[1,20125:6630773,22565223:25952256,1837769,0 -(1,20121:6630773,21131680:25952256,404226,107478 -(1,20120:6630773,21131680:0,0,0 -g1,20120:6630773,21131680 -g1,20120:6630773,21131680 -g1,20120:6303093,21131680 -(1,20120:6303093,21131680:0,0,0 -) -g1,20120:6630773,21131680 -) -k1,20121:6630773,21131680:0 -g1,20121:10424522,21131680 -g1,20121:11056814,21131680 -g1,20121:13585980,21131680 -g1,20121:16115146,21131680 -g1,20121:18012020,21131680 -h1,20121:18328166,21131680:0,0,0 -k1,20121:32583029,21131680:14254863 -g1,20121:32583029,21131680 -) -(1,20122:6630773,21797858:25952256,404226,107478 -h1,20122:6630773,21797858:0,0,0 -g1,20122:6946919,21797858 -g1,20122:7263065,21797858 -g1,20122:11372959,21797858 -h1,20122:11689105,21797858:0,0,0 -k1,20122:32583029,21797858:20893924 -g1,20122:32583029,21797858 -) -(1,20123:6630773,22464036:25952256,404226,101187 -h1,20123:6630773,22464036:0,0,0 -g1,20123:6946919,22464036 -g1,20123:7263065,22464036 -g1,20123:16115144,22464036 -g1,20123:16747436,22464036 -g1,20123:20225039,22464036 -g1,20123:20857331,22464036 -g1,20123:22438061,22464036 -g1,20123:24018790,22464036 -g1,20123:24651082,22464036 -g1,20123:26864102,22464036 -h1,20123:27180248,22464036:0,0,0 -k1,20123:32583029,22464036:5402781 -g1,20123:32583029,22464036 -) -] -) -g1,20125:32583029,22565223 -g1,20125:6630773,22565223 -g1,20125:6630773,22565223 -g1,20125:32583029,22565223 -g1,20125:32583029,22565223 -) -h1,20125:6630773,22761831:0,0,0 -(1,20128:6630773,33782402:25952256,10510489,0 -k1,20128:12599879,33782402:5969106 -h1,20127:12599879,33782402:0,0,0 -(1,20127:12599879,33782402:14014044,10510489,0 -(1,20127:12599879,33782402:14014019,10510515,0 -(1,20127:12599879,33782402:14014019,10510515,0 -(1,20127:12599879,33782402:0,10510515,0 -(1,20127:12599879,33782402:0,14208860,0 -(1,20127:12599879,33782402:18945146,14208860,0 -) -k1,20127:12599879,33782402:-18945146 -) -) -g1,20127:26613898,33782402 -) -) -) -g1,20128:26613923,33782402 -k1,20128:32583029,33782402:5969106 -) -(1,20135:6630773,34623890:25952256,513147,126483 -h1,20134:6630773,34623890:983040,0,0 -k1,20134:8337094,34623890:253388 -k1,20134:9121980,34623890:253389 -k1,20134:10661184,34623890:253388 -k1,20134:13544532,34623890:253388 -k1,20134:14449349,34623890:253389 -k1,20134:15795222,34623890:253388 -k1,20134:18810954,34623890:253389 -(1,20134:18810954,34623890:0,452978,115847 -r1,20154:20927779,34623890:2116825,568825,115847 -k1,20134:18810954,34623890:-2116825 -) -(1,20134:18810954,34623890:2116825,452978,115847 -k1,20134:18810954,34623890:3277 -h1,20134:20924502,34623890:0,411205,112570 -) -k1,20134:21181167,34623890:253388 -k1,20134:22626000,34623890:253388 -(1,20134:22626000,34623890:0,452978,115847 -r1,20154:24742825,34623890:2116825,568825,115847 -k1,20134:22626000,34623890:-2116825 -) -(1,20134:22626000,34623890:2116825,452978,115847 -k1,20134:22626000,34623890:3277 -h1,20134:24739548,34623890:0,411205,112570 -) -k1,20134:24996214,34623890:253389 -k1,20134:26692049,34623890:253388 -k1,20134:27893088,34623890:253388 -k1,20134:29165562,34623890:253389 -k1,20134:31010820,34623890:253388 -k1,20134:32583029,34623890:0 -) -(1,20135:6630773,35465378:25952256,513147,126483 -g1,20134:8021447,35465378 -g1,20134:8872104,35465378 -g1,20134:11501408,35465378 -g1,20134:12056497,35465378 -g1,20134:15018069,35465378 -(1,20134:15018069,35465378:0,414482,115847 -r1,20154:16431470,35465378:1413401,530329,115847 -k1,20134:15018069,35465378:-1413401 -) -(1,20134:15018069,35465378:1413401,414482,115847 -k1,20134:15018069,35465378:3277 -h1,20134:16428193,35465378:0,411205,112570 -) -g1,20134:16630699,35465378 -g1,20134:17481356,35465378 -g1,20134:18428351,35465378 -g1,20134:20140806,35465378 -g1,20134:21026197,35465378 -g1,20134:21581286,35465378 -g1,20134:25027169,35465378 -g1,20134:26478791,35465378 -k1,20135:32583029,35465378:4416686 -g1,20135:32583029,35465378 -) -v1,20137:6630773,36576103:0,393216,0 -(1,20142:6630773,37532211:25952256,1349324,196608 -g1,20142:6630773,37532211 -g1,20142:6630773,37532211 -g1,20142:6434165,37532211 -(1,20142:6434165,37532211:0,1349324,196608 -r1,20154:32779637,37532211:26345472,1545932,196608 -k1,20142:6434165,37532211:-26345472 -) -(1,20142:6434165,37532211:26345472,1349324,196608 -[1,20142:6630773,37532211:25952256,1152716,0 -(1,20139:6630773,36783721:25952256,404226,101187 -(1,20138:6630773,36783721:0,0,0 -g1,20138:6630773,36783721 -g1,20138:6630773,36783721 -g1,20138:6303093,36783721 -(1,20138:6303093,36783721:0,0,0 -) -g1,20138:6630773,36783721 -) -k1,20139:6896587,36783721:265814 -k1,20139:7162400,36783721:265813 -k1,20139:15964147,36783721:265814 -k1,20139:16546107,36783721:265814 -k1,20139:19973378,36783721:265814 -k1,20139:20555337,36783721:265813 -k1,20139:21137297,36783721:265814 -k1,20139:24564568,36783721:265814 -k1,20139:26094965,36783721:265814 -k1,20139:26676924,36783721:265813 -k1,20139:31052632,36783721:265814 -k1,20139:31634592,36783721:265814 -k1,20139:31634592,36783721:0 -h1,20139:32583029,36783721:0,0,0 -k1,20139:32583029,36783721:0 -k1,20139:32583029,36783721:0 -) -(1,20140:6630773,37449899:25952256,404226,82312 -h1,20140:6630773,37449899:0,0,0 -g1,20140:6946919,37449899 -g1,20140:7263065,37449899 -g1,20140:7579211,37449899 -g1,20140:7895357,37449899 -g1,20140:8211503,37449899 -g1,20140:8527649,37449899 -g1,20140:8843795,37449899 -g1,20140:9159941,37449899 -g1,20140:9476087,37449899 -g1,20140:9792233,37449899 -g1,20140:10108379,37449899 -g1,20140:10424525,37449899 -g1,20140:10740671,37449899 -g1,20140:11056817,37449899 -g1,20140:11372963,37449899 -g1,20140:11689109,37449899 -g1,20140:12005255,37449899 -g1,20140:12321401,37449899 -g1,20140:12637547,37449899 -g1,20140:12953693,37449899 -g1,20140:13269839,37449899 -g1,20140:13585985,37449899 -g1,20140:13902131,37449899 -g1,20140:14218277,37449899 -g1,20140:14534423,37449899 -g1,20140:14850569,37449899 -g1,20140:15166715,37449899 -g1,20140:15482861,37449899 -g1,20140:15799007,37449899 -g1,20140:16115153,37449899 -g1,20140:16431299,37449899 -g1,20140:16747445,37449899 -g1,20140:17063591,37449899 -g1,20140:17379737,37449899 -g1,20140:17695883,37449899 -g1,20140:18012029,37449899 -g1,20140:18328175,37449899 -g1,20140:18644321,37449899 -g1,20140:18960467,37449899 -g1,20140:19276613,37449899 -g1,20140:19592759,37449899 -g1,20140:21805779,37449899 -g1,20140:22438071,37449899 -g1,20140:24018801,37449899 -g1,20140:25599530,37449899 -g1,20140:26864113,37449899 -h1,20140:29077133,37449899:0,0,0 -k1,20140:32583029,37449899:3505896 -g1,20140:32583029,37449899 -) -] -) -g1,20142:32583029,37532211 -g1,20142:6630773,37532211 -g1,20142:6630773,37532211 -g1,20142:32583029,37532211 -g1,20142:32583029,37532211 -) -h1,20142:6630773,37728819:0,0,0 -(1,20146:6630773,40264625:25952256,564462,152109 -(1,20146:6630773,40264625:2450326,534184,12975 -g1,20146:6630773,40264625 -g1,20146:9081099,40264625 -) -g1,20146:11157280,40264625 -g1,20146:12724508,40264625 -g1,20146:14505843,40264625 -g1,20146:16916520,40264625 -g1,20146:18219180,40264625 -$1,20146:18219180,40264625 -$1,20146:18772107,40264625 -g1,20146:18997027,40264625 -g1,20146:20564255,40264625 -$1,20146:20564255,40264625 -$1,20146:21171249,40264625 -k1,20146:32583029,40264625:11411780 -g1,20146:32583029,40264625 -) -(1,20149:6630773,41499329:25952256,505283,134348 -k1,20148:7521866,41499329:263258 -k1,20148:8199902,41499329:263193 -k1,20148:9654605,41499329:263258 -k1,20148:11669640,41499329:263258 -k1,20148:13634868,41499329:263258 -k1,20148:17328936,41499329:263258 -k1,20148:20938462,41499329:263258 -k1,20148:22627128,41499329:263258 -k1,20148:24901031,41499329:263258 -k1,20148:26155848,41499329:263257 -k1,20148:28457276,41499329:263258 -k1,20148:29406696,41499329:263258 -k1,20148:31900144,41499329:263258 -k1,20148:32583029,41499329:0 -) -(1,20149:6630773,42340817:25952256,513147,134348 -k1,20148:9467707,42340817:216805 -k1,20148:11695157,42340817:216805 -k1,20148:14222106,42340817:216805 -k1,20148:15090339,42340817:216805 -k1,20148:17501289,42340817:216805 -k1,20148:22337071,42340817:216804 -k1,20148:24487188,42340817:216805 -k1,20148:26742163,42340817:216805 -k1,20148:27645130,42340817:216805 -k1,20148:30151763,42340817:216805 -k1,20148:31027860,42340817:216805 -k1,20149:32583029,42340817:0 -) -(1,20149:6630773,43182305:25952256,505283,138281 -(1,20148:6630773,43182305:0,414482,115847 -r1,20154:9099310,43182305:2468537,530329,115847 -k1,20148:6630773,43182305:-2468537 -) -(1,20148:6630773,43182305:2468537,414482,115847 -k1,20148:6630773,43182305:3277 -h1,20148:9096033,43182305:0,411205,112570 -) -k1,20148:9333087,43182305:233777 -k1,20148:10671147,43182305:233778 -k1,20148:11652690,43182305:233777 -k1,20148:14471863,43182305:233778 -k1,20148:15357068,43182305:233777 -k1,20148:19161247,43182305:233778 -k1,20148:22459488,43182305:233777 -k1,20148:24186832,43182305:233778 -k1,20148:25106771,43182305:233777 -$1,20148:25106771,43182305 -$1,20148:25609432,43182305 -k1,20148:25843210,43182305:233778 -k1,20148:27268432,43182305:233777 -$1,20148:27268432,43182305 -$1,20148:27820245,43182305 -k1,20148:28227693,43182305:233778 -k1,20148:30680519,43182305:233777 -k1,20148:32583029,43182305:0 -) -(1,20149:6630773,44023793:25952256,513147,126483 -g1,20148:7821562,44023793 -g1,20148:10804760,44023793 -g1,20148:11951640,44023793 -g1,20148:13847596,44023793 -k1,20149:32583029,44023793:15378024 -g1,20149:32583029,44023793 -) -(1,20151:6630773,44865281:25952256,505283,134348 -h1,20150:6630773,44865281:983040,0,0 -k1,20150:8773473,44865281:206111 -k1,20150:10083865,44865281:206110 -k1,20150:11224519,44865281:206111 -k1,20150:13245322,44865281:206111 -k1,20150:14642877,44865281:206110 -k1,20150:16963835,44865281:206111 -k1,20150:18905339,44865281:206111 -k1,20150:22199505,44865281:206110 -k1,20150:23091778,44865281:206111 -k1,20150:24723296,44865281:206110 -k1,20150:25612292,44865281:206111 -k1,20150:27703218,44865281:206111 -k1,20150:29783658,44865281:206110 -k1,20150:30981329,44865281:206111 -k1,20150:32583029,44865281:0 -) -(1,20151:6630773,45706769:25952256,513147,134348 -g1,20150:8630931,45706769 -g1,20150:10538684,45706769 -g1,20150:12131864,45706769 -g1,20150:13350178,45706769 -g1,20150:16575204,45706769 -g1,20150:17390471,45706769 -g1,20150:20500154,45706769 -g1,20150:23897539,45706769 -g1,20150:24779653,45706769 -k1,20151:32583029,45706769:4760541 -g1,20151:32583029,45706769 -) -] -(1,20154:32583029,45706769:0,0,0 -g1,20154:32583029,45706769 -) -) -] -(1,20154:6630773,47279633:25952256,0,0 -h1,20154:6630773,47279633:25952256,0,0 -) -] -(1,20154:4262630,4025873:0,0,0 -[1,20154:-473656,4025873:0,0,0 -(1,20154:-473656,-710413:0,0,0 -(1,20154:-473656,-710413:0,0,0 -g1,20154:-473656,-710413 -) -g1,20154:-473656,-710413 -) -] -) -] -!15249 -}361 -Input:3264:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!106 -{362 -[1,20207:4262630,47279633:28320399,43253760,0 -(1,20207:4262630,4025873:0,0,0 -[1,20207:-473656,4025873:0,0,0 -(1,20207:-473656,-710413:0,0,0 -(1,20207:-473656,-644877:0,0,0 -k1,20207:-473656,-644877:-65536 +(1,20009:6764466,6526574:1246098,665693,196608 +) +k1,20009:8283491,6526574:272927 +k1,20009:10009709,6526574:327680 +k1,20009:11942009,6526574:272928 +k1,20009:12985639,6526574:272927 +k1,20009:15264623,6526574:272927 +k1,20009:16814848,6526574:272928 +(1,20009:17021942,6526574:0,452978,122846 +r1,20062:19842191,6526574:2820249,575824,122846 +k1,20009:17021942,6526574:-2820249 +) +(1,20009:17021942,6526574:2820249,452978,122846 +k1,20009:17021942,6526574:3277 +h1,20009:19838914,6526574:0,411205,112570 +) +k1,20009:20322212,6526574:272927 +k1,20009:21786584,6526574:272927 +k1,20009:23256855,6526574:272928 +k1,20009:24181210,6526574:272927 +k1,20009:24912235,6526574:272928 +k1,20009:25871324,6526574:272927 +k1,20009:27411717,6526574:272927 +k1,20009:28455348,6526574:272928 +k1,20009:29143044,6526574:272853 +k1,20009:32583029,6526574:0 +) +(1,20010:6764466,7391654:25818563,615216,138281 +k1,20009:10224084,7391654:196580 +$1,20009:10224084,7391654 +k1,20009:10957957,7391654:182060 +k1,20009:11708214,7391654:182060 +(1,20009:12132233,7489968:311689,339935,8258 +) +k1,20009:12583760,7391654:139838 +k1,20009:13291796,7391654:139839 +(1,20009:13715815,7489968:311689,334430,0 +) +k1,20009:14670003,7391654:139838 +k1,20009:15378038,7391654:139838 +(1,20009:15802057,7489968:311689,339935,0 +) +(1,20009:16616407,7116373:311689,339935,0 +) +$1,20009:16928096,7391654 +k1,20009:17298346,7391654:196580 +k1,20009:19253913,7391654:196581 +k1,20009:20925708,7391654:196580 +k1,20009:21478148,7391654:196580 +k1,20009:23061470,7391654:196580 +k1,20009:23870812,7391654:196580 +k1,20009:25086477,7391654:196580 +k1,20009:28274776,7391654:196580 +k1,20009:29419007,7391654:196580 +k1,20009:30634672,7391654:196580 +k1,20009:31923737,7391654:196580 +k1,20009:32583029,7391654:0 +) +(1,20010:6764466,8256734:25818563,505283,134348 +k1,20009:10720738,8256734:185986 +k1,20009:11522763,8256734:185987 +k1,20009:12727834,8256734:185986 +(1,20009:12727834,8256734:0,452978,115847 +r1,20062:15548083,8256734:2820249,568825,115847 +k1,20009:12727834,8256734:-2820249 +) +(1,20009:12727834,8256734:2820249,452978,115847 +k1,20009:12727834,8256734:3277 +h1,20009:15544806,8256734:0,411205,112570 +) +k1,20009:15734070,8256734:185987 +k1,20009:17702635,8256734:185986 +k1,20009:18504659,8256734:185986 +k1,20009:19105476,8256734:185974 +k1,20009:20052990,8256734:185986 +k1,20009:22267972,8256734:185987 +(1,20009:22267972,8256734:0,452978,115847 +r1,20062:27198492,8256734:4930520,568825,115847 +k1,20009:22267972,8256734:-4930520 +) +(1,20009:22267972,8256734:4930520,452978,115847 +k1,20009:22267972,8256734:3277 +h1,20009:27195215,8256734:0,411205,112570 +) +k1,20009:27384478,8256734:185986 +k1,20009:28183226,8256734:185986 +k1,20009:29388298,8256734:185987 +k1,20009:29989114,8256734:185973 +k1,20010:32583029,8256734:0 +k1,20010:32583029,8256734:0 +) +] +g1,20010:32583029,8391082 +) +h1,20010:6630773,8391082:0,0,0 +(1,20025:6630773,10507900:25952256,555811,12975 +(1,20025:6630773,10507900:2450326,534184,12975 +g1,20025:6630773,10507900 +g1,20025:9081099,10507900 +) +g1,20025:13486495,10507900 +k1,20025:32583028,10507900:16910776 +g1,20025:32583028,10507900 +) +(1,20028:6630773,11766196:25952256,513147,134348 +k1,20027:7843517,11766196:259195 +k1,20027:9591035,11766196:259195 +k1,20027:10611757,11766196:259194 +k1,20027:12854727,11766196:259195 +k1,20027:14133007,11766196:259195 +k1,20027:15993902,11766196:259195 +k1,20027:19558077,11766196:259194 +k1,20027:21330498,11766196:259195 +k1,20027:24992322,11766196:259195 +k1,20027:25902945,11766196:259195 +k1,20027:27181224,11766196:259194 +k1,20027:31010820,11766196:259195 +k1,20027:32583029,11766196:0 +) +(1,20028:6630773,12631276:25952256,513147,115847 +k1,20027:10164025,12631276:333784 +(1,20027:10164025,12631276:0,414482,115847 +r1,20062:11577426,12631276:1413401,530329,115847 +k1,20027:10164025,12631276:-1413401 +) +(1,20027:10164025,12631276:1413401,414482,115847 +k1,20027:10164025,12631276:3277 +h1,20027:11574149,12631276:0,411205,112570 +) +k1,20027:12084879,12631276:333783 +(1,20027:12084879,12631276:0,452978,115847 +r1,20062:14201704,12631276:2116825,568825,115847 +k1,20027:12084879,12631276:-2116825 +) +(1,20027:12084879,12631276:2116825,452978,115847 +k1,20027:12084879,12631276:3277 +h1,20027:14198427,12631276:0,411205,112570 +) +k1,20027:14709158,12631276:333784 +(1,20027:14709158,12631276:0,452978,115847 +r1,20062:18936254,12631276:4227096,568825,115847 +k1,20027:14709158,12631276:-4227096 +) +(1,20027:14709158,12631276:4227096,452978,115847 +k1,20027:14709158,12631276:3277 +h1,20027:18932977,12631276:0,411205,112570 +) +k1,20027:19443708,12631276:333784 +(1,20027:19443708,12631276:0,452978,115847 +r1,20062:21560533,12631276:2116825,568825,115847 +k1,20027:19443708,12631276:-2116825 +) +(1,20027:19443708,12631276:2116825,452978,115847 +k1,20027:19443708,12631276:3277 +h1,20027:21557256,12631276:0,411205,112570 +) +k1,20027:22067986,12631276:333783 +(1,20027:22067986,12631276:0,452978,115847 +r1,20062:24184811,12631276:2116825,568825,115847 +k1,20027:22067986,12631276:-2116825 +) +(1,20027:22067986,12631276:2116825,452978,115847 +k1,20027:22067986,12631276:3277 +h1,20027:24181534,12631276:0,411205,112570 +) +k1,20027:24692265,12631276:333784 +(1,20027:24692265,12631276:0,452978,115847 +r1,20062:26809090,12631276:2116825,568825,115847 +k1,20027:24692265,12631276:-2116825 +) +(1,20027:24692265,12631276:2116825,452978,115847 +k1,20027:24692265,12631276:3277 +h1,20027:26805813,12631276:0,411205,112570 +) +k1,20027:27316543,12631276:333783 +(1,20027:27316543,12631276:0,452978,115847 +r1,20062:30136792,12631276:2820249,568825,115847 +k1,20027:27316543,12631276:-2820249 +) +(1,20027:27316543,12631276:2820249,452978,115847 +k1,20027:27316543,12631276:3277 +h1,20027:30133515,12631276:0,411205,112570 +) +k1,20027:30644246,12631276:333784 +(1,20027:30644246,12631276:0,414482,115847 +r1,20062:32409359,12631276:1765113,530329,115847 +k1,20027:30644246,12631276:-1765113 +) +(1,20027:30644246,12631276:1765113,414482,115847 +k1,20027:30644246,12631276:3277 +h1,20027:32406082,12631276:0,411205,112570 +) +k1,20028:32583029,12631276:0 +) +(1,20028:6630773,13496356:25952256,513147,126483 +(1,20027:6630773,13496356:0,452978,122846 +r1,20062:8395886,13496356:1765113,575824,122846 +k1,20027:6630773,13496356:-1765113 +) +(1,20027:6630773,13496356:1765113,452978,122846 +k1,20027:6630773,13496356:3277 +h1,20027:8392609,13496356:0,411205,112570 +) +k1,20027:8786997,13496356:217441 +k1,20027:10195883,13496356:217441 +(1,20027:10195883,13496356:0,452978,115847 +r1,20062:13016132,13496356:2820249,568825,115847 +k1,20027:10195883,13496356:-2820249 +) +(1,20027:10195883,13496356:2820249,452978,115847 +k1,20027:10195883,13496356:3277 +h1,20027:13012855,13496356:0,411205,112570 +) +k1,20027:13407243,13496356:217441 +k1,20027:14821371,13496356:217441 +k1,20027:16719154,13496356:217440 +k1,20027:17603751,13496356:217441 +(1,20027:17603751,13496356:0,414482,115847 +r1,20062:19017152,13496356:1413401,530329,115847 +k1,20027:17603751,13496356:-1413401 +) +(1,20027:17603751,13496356:1413401,414482,115847 +k1,20027:17603751,13496356:3277 +h1,20027:19013875,13496356:0,411205,112570 +) +k1,20027:19234593,13496356:217441 +k1,20027:19983531,13496356:217441 +k1,20027:21714198,13496356:217441 +k1,20027:22879290,13496356:217441 +k1,20027:24349124,13496356:217441 +k1,20027:26410748,13496356:217441 +k1,20027:27311073,13496356:217440 +k1,20027:28547599,13496356:217441 +k1,20027:29866045,13496356:217441 +k1,20027:31350952,13496356:217441 +k1,20027:32583029,13496356:0 +) +(1,20028:6630773,14361436:25952256,513147,134348 +k1,20027:9567503,14361436:182252 +k1,20027:12409206,14361436:182252 +k1,20027:13788145,14361436:182252 +k1,20027:17373026,14361436:182252 +k1,20027:18206705,14361436:182251 +(1,20027:18206705,14361436:0,452978,115847 +r1,20062:20323530,14361436:2116825,568825,115847 +k1,20027:18206705,14361436:-2116825 +) +(1,20027:18206705,14361436:2116825,452978,115847 +k1,20027:18206705,14361436:3277 +h1,20027:20320253,14361436:0,411205,112570 +) +k1,20027:20505782,14361436:182252 +k1,20027:21879479,14361436:182252 +(1,20027:21879479,14361436:0,452978,115847 +r1,20062:26106575,14361436:4227096,568825,115847 +k1,20027:21879479,14361436:-4227096 +) +(1,20027:21879479,14361436:4227096,452978,115847 +k1,20027:21879479,14361436:3277 +h1,20027:26103298,14361436:0,411205,112570 +) +k1,20027:26288827,14361436:182252 +k1,20027:29116112,14361436:182252 +k1,20027:30317449,14361436:182252 +k1,20027:32583029,14361436:0 +) +(1,20028:6630773,15226516:25952256,513147,134348 +k1,20027:9692732,15226516:175098 +k1,20027:10527122,15226516:175098 +k1,20027:12587691,15226516:175098 +k1,20027:13954234,15226516:175098 +k1,20027:16048226,15226516:175098 +k1,20027:17737861,15226516:175098 +k1,20027:19104404,15226516:175098 +k1,20027:20564008,15226516:175098 +k1,20027:22411585,15226516:175098 +k1,20027:24793280,15226516:175098 +k1,20027:26607433,15226516:175098 +k1,20027:27433959,15226516:175098 +(1,20027:27433959,15226516:0,414482,115847 +r1,20062:28847360,15226516:1413401,530329,115847 +k1,20027:27433959,15226516:-1413401 +) +(1,20027:27433959,15226516:1413401,414482,115847 +k1,20027:27433959,15226516:3277 +h1,20027:28844083,15226516:0,411205,112570 +) +k1,20027:29022458,15226516:175098 +k1,20027:32583029,15226516:0 +) +(1,20028:6630773,16091596:25952256,513147,134348 +k1,20027:7858742,16091596:208884 +k1,20027:9755833,16091596:208884 +k1,20027:10724936,16091596:208885 +k1,20027:13199400,16091596:208884 +k1,20027:14427369,16091596:208884 +k1,20027:15820489,16091596:208884 +k1,20027:17873556,16091596:208884 +k1,20027:19074001,16091596:208885 +k1,20027:22435822,16091596:208884 +k1,20027:24212327,16091596:208884 +k1,20027:25440296,16091596:208884 +k1,20027:27329523,16091596:208884 +k1,20027:28205564,16091596:208885 +(1,20027:28205564,16091596:0,452978,115847 +r1,20062:30322389,16091596:2116825,568825,115847 +k1,20027:28205564,16091596:-2116825 +) +(1,20027:28205564,16091596:2116825,452978,115847 +k1,20027:28205564,16091596:3277 +h1,20027:30319112,16091596:0,411205,112570 +) +k1,20027:30531273,16091596:208884 +k1,20027:31812326,16091596:208884 +k1,20027:32583029,16091596:0 +) +(1,20028:6630773,16956676:25952256,513147,134348 +k1,20027:9923855,16956676:220754 +k1,20027:10796036,16956676:220753 +(1,20027:10796036,16956676:0,452978,115847 +r1,20062:12912861,16956676:2116825,568825,115847 +k1,20027:10796036,16956676:-2116825 +) +(1,20027:10796036,16956676:2116825,452978,115847 +k1,20027:10796036,16956676:3277 +h1,20027:12909584,16956676:0,411205,112570 +) +k1,20027:13133615,16956676:220754 +k1,20027:14013660,16956676:220753 +k1,20027:15253499,16956676:220754 +k1,20027:17127726,16956676:220754 +k1,20027:19361745,16956676:220753 +k1,20027:20268661,16956676:220754 +(1,20027:20268661,16956676:0,452978,115847 +r1,20062:22385486,16956676:2116825,568825,115847 +k1,20027:20268661,16956676:-2116825 +) +(1,20027:20268661,16956676:2116825,452978,115847 +k1,20027:20268661,16956676:3277 +h1,20027:22382209,16956676:0,411205,112570 +) +k1,20027:22606240,16956676:220754 +k1,20027:23959455,16956676:220753 +k1,20027:26478557,16956676:220754 +k1,20027:28396037,16956676:220753 +k1,20027:31386342,16956676:220754 +k1,20027:32583029,16956676:0 +) +(1,20028:6630773,17821756:25952256,513147,134348 +k1,20027:8854549,17821756:213131 +k1,20027:9734837,17821756:213132 +(1,20027:9734837,17821756:0,452978,115847 +r1,20062:11851662,17821756:2116825,568825,115847 +k1,20027:9734837,17821756:-2116825 +) +(1,20027:9734837,17821756:2116825,452978,115847 +k1,20027:9734837,17821756:3277 +h1,20027:11848385,17821756:0,411205,112570 +) +k1,20027:12064794,17821756:213132 +k1,20027:15521957,17821756:213131 +k1,20027:17201785,17821756:213132 +k1,20027:18434001,17821756:213131 +k1,20027:20427745,17821756:213131 +k1,20027:21300169,17821756:213132 +k1,20027:23523945,17821756:213131 +k1,20027:24353115,17821756:213132 +k1,20027:25585332,17821756:213132 +k1,20027:27187826,17821756:213131 +k1,20027:30159367,17821756:213131 +k1,20027:31563944,17821756:213132 +k1,20027:32583029,17821756:0 +) +(1,20028:6630773,18686836:25952256,513147,134348 +k1,20027:9341050,18686836:185830 +k1,20027:10874300,18686836:185830 +k1,20027:11746292,18686836:185830 +k1,20027:15022145,18686836:185830 +k1,20027:18480188,18686836:185830 +k1,20027:20931598,18686836:185830 +k1,20027:22136513,18686836:185830 +k1,20027:26849570,18686836:185830 +(1,20027:27056664,18686836:0,452978,115847 +r1,20062:28118353,18686836:1061689,568825,115847 +k1,20027:27056664,18686836:-1061689 +) +(1,20027:27056664,18686836:1061689,452978,115847 +k1,20027:27056664,18686836:3277 +h1,20027:28115076,18686836:0,411205,112570 +) +k1,20027:28511277,18686836:185830 +k1,20027:32583029,18686836:0 +) +(1,20028:6630773,19551916:25952256,505283,126483 +k1,20027:7781367,19551916:159034 +k1,20027:10659489,19551916:159033 +k1,20027:11580051,19551916:159034 +(1,20027:11580051,19551916:0,414482,115847 +r1,20062:12290029,19551916:709978,530329,115847 +k1,20027:11580051,19551916:-709978 +) +(1,20027:11580051,19551916:709978,414482,115847 +k1,20027:11580051,19551916:3277 +h1,20027:12286752,19551916:0,411205,112570 +) +k1,20027:12449062,19551916:159033 +k1,20027:13680265,19551916:159034 +k1,20027:14297395,19551916:159033 +k1,20027:14987926,19551916:159034 +k1,20027:17776919,19551916:159033 +k1,20027:18587381,19551916:159034 +k1,20027:21073597,19551916:159033 +k1,20027:23928782,19551916:159034 +k1,20027:25784542,19551916:159033 +k1,20027:30015328,19551916:159034 +k1,20027:32583029,19551916:0 +) +(1,20028:6630773,20416996:25952256,513147,134348 +k1,20027:7874271,20416996:224413 +k1,20027:9588317,20416996:224413 +k1,20027:10472022,20416996:224413 +k1,20027:11715520,20416996:224413 +k1,20027:14464380,20416996:224413 +k1,20027:16209884,20416996:224413 +k1,20027:17630984,20416996:224413 +k1,20027:20927725,20416996:224413 +k1,20027:21803566,20416996:224413 +(1,20027:21803566,20416996:0,452978,115847 +r1,20062:23920391,20416996:2116825,568825,115847 +k1,20027:21803566,20416996:-2116825 +) +(1,20027:21803566,20416996:2116825,452978,115847 +k1,20027:21803566,20416996:3277 +h1,20027:23917114,20416996:0,411205,112570 +) +k1,20027:24144804,20416996:224413 +k1,20027:27943551,20416996:224413 +k1,20027:29187049,20416996:224413 +k1,20027:30680239,20416996:224413 +k1,20027:31563944,20416996:224413 +k1,20027:32583029,20416996:0 +) +(1,20028:6630773,21282076:25952256,505283,134348 +k1,20027:9410423,21282076:194910 +k1,20027:10288218,21282076:194910 +k1,20027:13091461,21282076:194910 +k1,20027:15251796,21282076:194910 +k1,20027:16098134,21282076:194910 +k1,20027:17312129,21282076:194910 +k1,20027:18854460,21282076:194911 +k1,20027:22069924,21282076:194910 +k1,20027:23026362,21282076:194910 +(1,20027:23026362,21282076:0,452978,115847 +r1,20062:24439763,21282076:1413401,568825,115847 +k1,20027:23026362,21282076:-1413401 +) +(1,20027:23026362,21282076:1413401,452978,115847 +k1,20027:23026362,21282076:3277 +h1,20027:24436486,21282076:0,411205,112570 +) +k1,20027:24634673,21282076:194910 +k1,20027:26527621,21282076:194910 +k1,20027:28904225,21282076:194910 +k1,20027:30118220,21282076:194910 +k1,20027:32583029,21282076:0 +) +(1,20028:6630773,22147156:25952256,513147,134348 +k1,20027:9408063,22147156:252843 +k1,20027:11181996,22147156:252842 +k1,20027:12631526,22147156:252843 +k1,20027:14564711,22147156:252842 +k1,20027:17022841,22147156:252843 +k1,20027:17927111,22147156:252842 +(1,20027:17927111,22147156:0,452978,115847 +r1,20062:20747360,22147156:2820249,568825,115847 +k1,20027:17927111,22147156:-2820249 +) +(1,20027:17927111,22147156:2820249,452978,115847 +k1,20027:17927111,22147156:3277 +h1,20027:20744083,22147156:0,411205,112570 +) +k1,20027:21000203,22147156:252843 +k1,20027:21784543,22147156:252843 +k1,20027:23550611,22147156:252842 +k1,20027:24489616,22147156:252843 +k1,20027:25098318,22147156:252842 +k1,20027:29288564,22147156:252843 +k1,20027:30489057,22147156:252842 +(1,20027:30489057,22147156:0,414482,115847 +r1,20062:31199035,22147156:709978,530329,115847 +k1,20027:30489057,22147156:-709978 +) +(1,20027:30489057,22147156:709978,414482,115847 +k1,20027:30489057,22147156:3277 +h1,20027:31195758,22147156:0,411205,112570 +) +k1,20027:31451878,22147156:252843 +k1,20028:32583029,22147156:0 +) +(1,20028:6630773,23012236:25952256,513147,115847 +k1,20027:8009649,23012236:195951 +k1,20027:14534411,23012236:195950 +k1,20027:16707583,23012236:195951 +k1,20027:17851184,23012236:195950 +(1,20027:17851184,23012236:0,452978,115847 +r1,20062:19616297,23012236:1765113,568825,115847 +k1,20027:17851184,23012236:-1765113 +) +(1,20027:17851184,23012236:1765113,452978,115847 +k1,20027:17851184,23012236:3277 +h1,20027:19613020,23012236:0,411205,112570 +) +k1,20027:19812248,23012236:195951 +k1,20027:21199643,23012236:195950 +(1,20027:21199643,23012236:0,459977,115847 +r1,20062:22613044,23012236:1413401,575824,115847 +k1,20027:21199643,23012236:-1413401 +) +(1,20027:21199643,23012236:1413401,459977,115847 +k1,20027:21199643,23012236:3277 +h1,20027:22609767,23012236:0,411205,112570 +) +k1,20027:22808995,23012236:195951 +k1,20027:26353179,23012236:195950 +k1,20027:27745817,23012236:195951 +k1,20027:32583029,23012236:0 +) +(1,20028:6630773,23877316:25952256,513147,134348 +k1,20027:8812640,23877316:222341 +k1,20027:11240267,23877316:222340 +k1,20027:12148770,23877316:222341 +k1,20027:13141814,23877316:222341 +k1,20027:16436483,23877316:222341 +k1,20027:17310251,23877316:222340 +(1,20027:17310251,23877316:0,414482,115847 +r1,20062:19075364,23877316:1765113,530329,115847 +k1,20027:17310251,23877316:-1765113 +) +(1,20027:17310251,23877316:1765113,414482,115847 +k1,20027:17310251,23877316:3277 +h1,20027:19072087,23877316:0,411205,112570 +) +k1,20027:19297705,23877316:222341 +k1,20027:23094380,23877316:222341 +k1,20027:24335805,23877316:222340 +k1,20027:29395358,23877316:222341 +k1,20027:32583029,23877316:0 +) +(1,20028:6630773,24742396:25952256,513147,134348 +k1,20027:11656335,24742396:188350 +k1,20027:13954289,24742396:188350 +k1,20027:15161725,24742396:188351 +k1,20027:18620977,24742396:188350 +k1,20027:19881496,24742396:188350 +k1,20027:22184693,24742396:188350 +k1,20027:23564488,24742396:188350 +k1,20027:24937075,24742396:188351 +k1,20027:26969608,24742396:188350 +k1,20027:29385527,24742396:188350 +k1,20027:32583029,24742396:0 +) +(1,20028:6630773,25607476:25952256,513147,134348 +k1,20027:7429729,25607476:182918 +k1,20027:8631731,25607476:182917 +k1,20027:11249967,25607476:182918 +k1,20027:12822247,25607476:182917 +k1,20027:14796919,25607476:182918 +k1,20027:16176524,25607476:182918 +k1,20027:19431769,25607476:182917 +k1,20027:20266115,25607476:182918 +(1,20027:20266115,25607476:0,452978,122846 +r1,20062:22031228,25607476:1765113,575824,122846 +k1,20027:20266115,25607476:-1765113 +) +(1,20027:20266115,25607476:1765113,452978,122846 +k1,20027:20266115,25607476:3277 +h1,20027:22027951,25607476:0,411205,112570 +) +k1,20027:22214145,25607476:182917 +k1,20027:25971397,25607476:182918 +k1,20027:27173400,25607476:182918 +k1,20027:28742403,25607476:182917 +k1,20027:29584613,25607476:182918 +k1,20027:30868535,25607476:182917 +k1,20027:31734338,25607476:182918 +k1,20028:32583029,25607476:0 +) +(1,20028:6630773,26472556:25952256,513147,134348 +k1,20027:8832228,26472556:152144 +k1,20027:10003457,26472556:152144 +k1,20027:12421181,26472556:152144 +k1,20027:13848001,26472556:152145 +k1,20027:17444717,26472556:152144 +k1,20027:18406231,26472556:152144 +k1,20027:19577460,26472556:152144 +k1,20027:21301813,26472556:152144 +k1,20027:22069995,26472556:152144 +k1,20027:24986449,26472556:152145 +k1,20027:26204864,26472556:152144 +k1,20027:27123124,26472556:152144 +k1,20027:28971995,26472556:152144 +k1,20027:32583029,26472556:0 +) +(1,20028:6630773,27337636:25952256,505283,7863 +g1,20027:7821562,27337636 +k1,20028:32583030,27337636:21803828 +g1,20028:32583030,27337636 +) +(1,20032:6630773,28202716:25952256,513147,134348 +h1,20031:6630773,28202716:983040,0,0 +g1,20031:8766591,28202716 +g1,20031:11698016,28202716 +g1,20031:13180440,28202716 +g1,20031:14740196,28202716 +k1,20032:32583029,28202716:16279799 +g1,20032:32583029,28202716 +) +v1,20034:6630773,28887571:0,393216,0 +(1,20042:6630773,31947856:25952256,3453501,196608 +g1,20042:6630773,31947856 +g1,20042:6630773,31947856 +g1,20042:6434165,31947856 +(1,20042:6434165,31947856:0,3453501,196608 +r1,20062:32779637,31947856:26345472,3650109,196608 +k1,20042:6434165,31947856:-26345472 +) +(1,20042:6434165,31947856:26345472,3453501,196608 +[1,20042:6630773,31947856:25952256,3256893,0 +(1,20036:6630773,29122008:25952256,431045,6605 +(1,20035:6630773,29122008:0,0,0 +g1,20035:6630773,29122008 +g1,20035:6630773,29122008 +g1,20035:6303093,29122008 +(1,20035:6303093,29122008:0,0,0 +) +g1,20035:6630773,29122008 +) +g1,20036:10282266,29122008 +k1,20036:10282266,29122008:0 +h1,20036:10946174,29122008:0,0,0 +k1,20036:32583030,29122008:21636856 +g1,20036:32583030,29122008 +) +(1,20037:6630773,29806863:25952256,431045,106246 +h1,20037:6630773,29806863:0,0,0 +g1,20037:6962727,29806863 +g1,20037:7294681,29806863 +g1,20037:11610082,29806863 +g1,20037:12273990,29806863 +g1,20037:16257438,29806863 +g1,20037:17917208,29806863 +g1,20037:18581116,29806863 +g1,20037:19908932,29806863 +g1,20037:20904794,29806863 +g1,20037:21568702,29806863 +k1,20037:21568702,29806863:0 +h1,20037:22564564,29806863:0,0,0 +k1,20037:32583029,29806863:10018465 +g1,20037:32583029,29806863 +) +(1,20038:6630773,30491718:25952256,424439,86428 +h1,20038:6630773,30491718:0,0,0 +g1,20038:6962727,30491718 +g1,20038:7294681,30491718 +g1,20038:7626635,30491718 +g1,20038:7958589,30491718 +g1,20038:8290543,30491718 +g1,20038:8622497,30491718 +g1,20038:8954451,30491718 +g1,20038:9286405,30491718 +g1,20038:9618359,30491718 +g1,20038:9950313,30491718 +g1,20038:10282267,30491718 +g1,20038:10614221,30491718 +g1,20038:10946175,30491718 +g1,20038:11278129,30491718 +g1,20038:11610083,30491718 +g1,20038:11942037,30491718 +g1,20038:12273991,30491718 +g1,20038:12605945,30491718 +g1,20038:12937899,30491718 +g1,20038:16257439,30491718 +g1,20038:17917209,30491718 +g1,20038:18581117,30491718 +g1,20038:19908933,30491718 +g1,20038:20904795,30491718 +g1,20038:21568703,30491718 +k1,20038:21568703,30491718:0 +h1,20038:23228473,30491718:0,0,0 +k1,20038:32583029,30491718:9354556 +g1,20038:32583029,30491718 +) +(1,20039:6630773,31176573:25952256,431045,112852 +h1,20039:6630773,31176573:0,0,0 +g1,20039:6962727,31176573 +g1,20039:7294681,31176573 +g1,20039:7626635,31176573 +g1,20039:7958589,31176573 +g1,20039:8290543,31176573 +g1,20039:8622497,31176573 +g1,20039:8954451,31176573 +g1,20039:9286405,31176573 +g1,20039:9618359,31176573 +g1,20039:9950313,31176573 +g1,20039:10282267,31176573 +g1,20039:10614221,31176573 +g1,20039:10946175,31176573 +g1,20039:12937899,31176573 +g1,20039:13601807,31176573 +g1,20039:19576979,31176573 +g1,20039:21236749,31176573 +g1,20039:24224335,31176573 +k1,20039:24224335,31176573:0 +h1,20039:26216059,31176573:0,0,0 +k1,20039:32583029,31176573:6366970 +g1,20039:32583029,31176573 +) +(1,20040:6630773,31861428:25952256,424439,86428 +h1,20040:6630773,31861428:0,0,0 +g1,20040:6962727,31861428 +g1,20040:7294681,31861428 +g1,20040:7626635,31861428 +g1,20040:7958589,31861428 +g1,20040:8290543,31861428 +g1,20040:8622497,31861428 +g1,20040:8954451,31861428 +g1,20040:9286405,31861428 +g1,20040:9618359,31861428 +g1,20040:9950313,31861428 +g1,20040:10282267,31861428 +g1,20040:10614221,31861428 +g1,20040:10946175,31861428 +g1,20040:11610083,31861428 +g1,20040:12273991,31861428 +g1,20040:15593531,31861428 +g1,20040:17253301,31861428 +g1,20040:17917209,31861428 +g1,20040:19245025,31861428 +g1,20040:20240887,31861428 +g1,20040:20904795,31861428 +h1,20040:21900657,31861428:0,0,0 +k1,20040:32583029,31861428:10682372 +g1,20040:32583029,31861428 +) +] +) +g1,20042:32583029,31947856 +g1,20042:6630773,31947856 +g1,20042:6630773,31947856 +g1,20042:32583029,31947856 +g1,20042:32583029,31947856 +) +h1,20042:6630773,32144464:0,0,0 +(1,20044:6630773,33795976:25952256,505283,7863 +(1,20044:6630773,33795976:0,0,0 +g1,20044:6630773,33795976 +) +k1,20044:32583028,33795976:23911464 +g1,20044:32583028,33795976 +) +(1,20047:6630773,35054272:25952256,513147,134348 +k1,20046:8814835,35054272:209462 +k1,20046:10015857,35054272:209462 +k1,20046:12798262,35054272:209462 +k1,20046:13659152,35054272:209462 +k1,20046:14634730,35054272:209462 +k1,20046:16603834,35054272:209462 +k1,20046:17472589,35054272:209463 +k1,20046:19678933,35054272:209462 +k1,20046:21862995,35054272:209462 +k1,20046:23064017,35054272:209462 +k1,20046:24208022,35054272:209462 +k1,20046:26976010,35054272:209462 +k1,20046:30466204,35054272:209462 +(1,20046:30466204,35054272:0,452978,115847 +r1,20062:32583029,35054272:2116825,568825,115847 +k1,20046:30466204,35054272:-2116825 +) +(1,20046:30466204,35054272:2116825,452978,115847 +k1,20046:30466204,35054272:3277 +h1,20046:32579752,35054272:0,411205,112570 +) +k1,20046:32583029,35054272:0 +) +(1,20047:6630773,35919352:25952256,513147,126483 +k1,20046:7522008,35919352:231943 +k1,20046:8773035,35919352:231942 +k1,20046:11767321,35919352:231943 +k1,20046:13571473,35919352:231943 +k1,20046:17002883,35919352:231942 +k1,20046:18792617,35919352:231943 +k1,20046:20128842,35919352:231943 +k1,20046:21646600,35919352:231942 +k1,20046:22626309,35919352:231943 +k1,20046:23792795,35919352:231943 +k1,20046:25418688,35919352:231942 +k1,20046:29557232,35919352:231943 +k1,20047:32583029,35919352:0 +) +(1,20047:6630773,36784432:25952256,513147,134348 +(1,20046:6630773,36784432:0,452978,115847 +r1,20062:8747598,36784432:2116825,568825,115847 +k1,20046:6630773,36784432:-2116825 +) +(1,20046:6630773,36784432:2116825,452978,115847 +k1,20046:6630773,36784432:3277 +h1,20046:8744321,36784432:0,411205,112570 +) +k1,20046:8986831,36784432:239233 +k1,20046:10417510,36784432:239234 +(1,20046:10417510,36784432:0,452978,115847 +r1,20062:12534335,36784432:2116825,568825,115847 +k1,20046:10417510,36784432:-2116825 +) +(1,20046:10417510,36784432:2116825,452978,115847 +k1,20046:10417510,36784432:3277 +h1,20046:12531058,36784432:0,411205,112570 +) +k1,20046:12773568,36784432:239233 +k1,20046:13628840,36784432:239234 +k1,20046:14887158,36784432:239233 +k1,20046:16493472,36784432:239233 +k1,20046:17391998,36784432:239234 +k1,20046:18650316,36784432:239233 +(1,20046:18650316,36784432:0,414482,115847 +r1,20062:19008582,36784432:358266,530329,115847 +k1,20046:18650316,36784432:-358266 +) +(1,20046:18650316,36784432:358266,414482,115847 +k1,20046:18650316,36784432:3277 +h1,20046:19005305,36784432:0,411205,112570 +) +k1,20046:19247816,36784432:239234 +k1,20046:20678494,36784432:239233 +(1,20046:20678494,36784432:0,414482,115847 +r1,20062:21036760,36784432:358266,530329,115847 +k1,20046:20678494,36784432:-358266 +) +(1,20046:20678494,36784432:358266,414482,115847 +k1,20046:20678494,36784432:3277 +h1,20046:21033483,36784432:0,411205,112570 +) +k1,20046:21275993,36784432:239233 +k1,20046:24730423,36784432:239234 +k1,20046:26161101,36784432:239233 +k1,20046:28050532,36784432:239234 +k1,20046:31189078,36784432:239233 +k1,20046:32583029,36784432:0 +) +(1,20047:6630773,37649512:25952256,513147,134348 +k1,20046:9512448,37649512:186179 +(1,20046:9512448,37649512:0,452978,115847 +r1,20062:11629273,37649512:2116825,568825,115847 +k1,20046:9512448,37649512:-2116825 +) +(1,20046:9512448,37649512:2116825,452978,115847 +k1,20046:9512448,37649512:3277 +h1,20046:11625996,37649512:0,411205,112570 +) +k1,20046:11815453,37649512:186180 +k1,20046:13887103,37649512:186179 +k1,20046:15219508,37649512:186180 +(1,20046:15219508,37649512:0,452978,115847 +r1,20062:17336333,37649512:2116825,568825,115847 +k1,20046:15219508,37649512:-2116825 +) +(1,20046:15219508,37649512:2116825,452978,115847 +k1,20046:15219508,37649512:3277 +h1,20046:17333056,37649512:0,411205,112570 +) +k1,20046:17696182,37649512:186179 +k1,20046:19565327,37649512:186180 +k1,20046:23154135,37649512:186179 +k1,20046:25499071,37649512:186180 +k1,20046:28802142,37649512:186179 +k1,20046:29639750,37649512:186180 +k1,20046:30845014,37649512:186179 +k1,20046:32583029,37649512:0 +) +(1,20047:6630773,38514592:25952256,513147,134348 +k1,20046:7470591,38514592:180526 +k1,20046:8670201,38514592:180525 +k1,20046:12065923,38514592:180526 +k1,20046:13443135,38514592:180525 +(1,20046:13443135,38514592:0,452978,115847 +r1,20062:15559960,38514592:2116825,568825,115847 +k1,20046:13443135,38514592:-2116825 +) +(1,20046:13443135,38514592:2116825,452978,115847 +k1,20046:13443135,38514592:3277 +h1,20046:15556683,38514592:0,411205,112570 +) +k1,20046:15740486,38514592:180526 +k1,20046:18993339,38514592:180525 +k1,20046:19833157,38514592:180526 +k1,20046:21916192,38514592:180525 +k1,20046:24475020,38514592:180526 +k1,20046:27137393,38514592:180525 +k1,20046:29542211,38514592:180526 +k1,20046:30405621,38514592:180525 +k1,20046:30942007,38514592:180526 +k1,20047:32583029,38514592:0 +) +(1,20047:6630773,39379672:25952256,513147,134348 +k1,20046:8188642,39379672:290403 +k1,20046:11909855,39379672:290403 +k1,20046:13839314,39379672:290404 +k1,20046:15697338,39379672:290403 +(1,20046:15697338,39379672:0,452978,115847 +r1,20062:17110739,39379672:1413401,568825,115847 +k1,20046:15697338,39379672:-1413401 +) +(1,20046:15697338,39379672:1413401,452978,115847 +k1,20046:15697338,39379672:3277 +h1,20046:17107462,39379672:0,411205,112570 +) +k1,20046:17574812,39379672:290403 +k1,20046:18493050,39379672:290403 +k1,20046:21588394,39379672:290403 +k1,20046:22897883,39379672:290404 +k1,20046:27094887,39379672:290403 +k1,20046:30411087,39379672:290403 +k1,20046:31516758,39379672:290403 +k1,20046:32583029,39379672:0 +) +(1,20047:6630773,40244752:25952256,513147,134348 +g1,20046:8878002,40244752 +g1,20046:12103028,40244752 +g1,20046:12988419,40244752 +g1,20046:14696287,40244752 +k1,20047:32583029,40244752:14310442 +g1,20047:32583029,40244752 +) +(1,20049:6630773,41109832:25952256,505283,126483 +h1,20048:6630773,41109832:983040,0,0 +k1,20048:8424111,41109832:182463 +k1,20048:9625659,41109832:182463 +k1,20048:11192242,41109832:182463 +k1,20048:14036122,41109832:182463 +k1,20048:15086937,41109832:182463 +k1,20048:16203943,41109832:182463 +k1,20048:18466520,41109832:182464 +k1,20048:20637345,41109832:182463 +k1,20048:22705279,41109832:182463 +k1,20048:24020204,41109832:182463 +k1,20048:26636674,41109832:182463 +k1,20048:28511277,41109832:182463 +k1,20048:32583029,41109832:0 +) +(1,20049:6630773,41974912:25952256,513147,134348 +k1,20048:8459937,41974912:261543 +k1,20048:9740565,41974912:261543 +k1,20048:11279406,41974912:261544 +k1,20048:12732394,41974912:261543 +k1,20048:14561558,41974912:261543 +k1,20048:15954908,41974912:261543 +k1,20048:20280338,41974912:261543 +k1,20048:21201173,41974912:261543 +k1,20048:24970859,41974912:261544 +k1,20048:25915287,41974912:261543 +k1,20048:28111453,41974912:261543 +k1,20048:29032288,41974912:261543 +k1,20048:32583029,41974912:0 +) +(1,20049:6630773,42839992:25952256,513147,126483 +k1,20048:8393127,42839992:168518 +k1,20048:10960263,42839992:168518 +k1,20048:12147866,42839992:168518 +k1,20048:15224216,42839992:168518 +k1,20048:19464486,42839992:168518 +k1,20048:20624564,42839992:168518 +k1,20048:23953883,42839992:168518 +k1,20048:24773829,42839992:168518 +(1,20048:24773829,42839992:0,414482,115847 +r1,20062:25483807,42839992:709978,530329,115847 +k1,20048:24773829,42839992:-709978 +) +(1,20048:24773829,42839992:709978,414482,115847 +k1,20048:24773829,42839992:3277 +h1,20048:25480530,42839992:0,411205,112570 +) +k1,20048:25652325,42839992:168518 +k1,20048:27831488,42839992:168518 +k1,20048:30042763,42839992:168518 +k1,20048:31591469,42839992:168518 +k1,20048:32583029,42839992:0 +) +(1,20049:6630773,43705072:25952256,505283,134348 +g1,20048:9035289,43705072 +g1,20048:9920680,43705072 +(1,20048:9920680,43705072:0,452978,115847 +r1,20062:11334081,43705072:1413401,568825,115847 +k1,20048:9920680,43705072:-1413401 +) +(1,20048:9920680,43705072:1413401,452978,115847 +k1,20048:9920680,43705072:3277 +h1,20048:11330804,43705072:0,411205,112570 +) +g1,20048:11533310,43705072 +g1,20048:12383967,43705072 +k1,20049:32583029,43705072:16608345 +g1,20049:32583029,43705072 +) +v1,20051:6630773,44389927:0,393216,0 +(1,20056:6630773,45415465:25952256,1418754,196608 +g1,20056:6630773,45415465 +g1,20056:6630773,45415465 +g1,20056:6434165,45415465 +(1,20056:6434165,45415465:0,1418754,196608 +r1,20062:32779637,45415465:26345472,1615362,196608 +k1,20056:6434165,45415465:-26345472 +) +(1,20056:6434165,45415465:26345472,1418754,196608 +[1,20056:6630773,45415465:25952256,1222146,0 +(1,20053:6630773,44624364:25952256,431045,112852 +(1,20052:6630773,44624364:0,0,0 +g1,20052:6630773,44624364 +g1,20052:6630773,44624364 +g1,20052:6303093,44624364 +(1,20052:6303093,44624364:0,0,0 +) +g1,20052:6630773,44624364 +) +k1,20053:6630773,44624364:0 +g1,20053:12937898,44624364 +g1,20053:15261576,44624364 +g1,20053:16589392,44624364 +g1,20053:17253300,44624364 +g1,20053:21568701,44624364 +h1,20053:21900655,44624364:0,0,0 +k1,20053:32583029,44624364:10682374 +g1,20053:32583029,44624364 +) +(1,20054:6630773,45309219:25952256,424439,106246 +h1,20054:6630773,45309219:0,0,0 +g1,20054:6962727,45309219 +g1,20054:7294681,45309219 +g1,20054:15925484,45309219 +g1,20054:16589392,45309219 +g1,20054:18249162,45309219 +h1,20054:19908932,45309219:0,0,0 +k1,20054:32583029,45309219:12674097 +g1,20054:32583029,45309219 +) +] +) +g1,20056:32583029,45415465 +g1,20056:6630773,45415465 +g1,20056:6630773,45415465 +g1,20056:32583029,45415465 +g1,20056:32583029,45415465 +) +h1,20056:6630773,45612073:0,0,0 +] +(1,20062:32583029,45706769:0,0,0 +g1,20062:32583029,45706769 +) +) +] +(1,20062:6630773,47279633:25952256,0,0 +h1,20062:6630773,47279633:25952256,0,0 +) +] +(1,20062:4262630,4025873:0,0,0 +[1,20062:-473656,4025873:0,0,0 +(1,20062:-473656,-710413:0,0,0 +(1,20062:-473656,-710413:0,0,0 +g1,20062:-473656,-710413 +) +g1,20062:-473656,-710413 +) +] +) +] +!36460 +}340 +Input:3249:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3250:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3251:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3252:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3253:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3254:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3255:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3256:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3257:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3258:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3259:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3260:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1140 +{341 +[1,20116:4262630,47279633:28320399,43253760,0 +(1,20116:4262630,4025873:0,0,0 +[1,20116:-473656,4025873:0,0,0 +(1,20116:-473656,-710413:0,0,0 +(1,20116:-473656,-644877:0,0,0 +k1,20116:-473656,-644877:-65536 ) -(1,20207:-473656,4736287:0,0,0 -k1,20207:-473656,4736287:5209943 +(1,20116:-473656,4736287:0,0,0 +k1,20116:-473656,4736287:5209943 ) -g1,20207:-473656,-710413 +g1,20116:-473656,-710413 ) ] ) -[1,20207:6630773,47279633:25952256,43253760,0 -[1,20207:6630773,4812305:25952256,786432,0 -(1,20207:6630773,4812305:25952256,505283,11795 -(1,20207:6630773,4812305:25952256,505283,11795 -g1,20207:3078558,4812305 -[1,20207:3078558,4812305:0,0,0 -(1,20207:3078558,2439708:0,1703936,0 -k1,20207:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,20207:2537886,2439708:1179648,16384,0 +[1,20116:6630773,47279633:25952256,43253760,0 +[1,20116:6630773,4812305:25952256,786432,0 +(1,20116:6630773,4812305:25952256,513147,126483 +(1,20116:6630773,4812305:25952256,513147,126483 +g1,20116:3078558,4812305 +[1,20116:3078558,4812305:0,0,0 +(1,20116:3078558,2439708:0,1703936,0 +k1,20116:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,20116:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,20207:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,20116:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,20207:3078558,4812305:0,0,0 -(1,20207:3078558,2439708:0,1703936,0 -g1,20207:29030814,2439708 -g1,20207:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,20207:36151628,1915420:16384,1179648,0 +[1,20116:3078558,4812305:0,0,0 +(1,20116:3078558,2439708:0,1703936,0 +g1,20116:29030814,2439708 +g1,20116:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,20116:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,20207:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,20116:37855564,2439708:1179648,16384,0 ) ) -k1,20207:3078556,2439708:-34777008 +k1,20116:3078556,2439708:-34777008 ) ] -[1,20207:3078558,4812305:0,0,0 -(1,20207:3078558,49800853:0,16384,2228224 -k1,20207:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,20207:2537886,49800853:1179648,16384,0 +[1,20116:3078558,4812305:0,0,0 +(1,20116:3078558,49800853:0,16384,2228224 +k1,20116:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,20116:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,20207:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,20116:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,20207:3078558,4812305:0,0,0 -(1,20207:3078558,49800853:0,16384,2228224 -g1,20207:29030814,49800853 -g1,20207:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,20207:36151628,51504789:16384,1179648,0 +[1,20116:3078558,4812305:0,0,0 +(1,20116:3078558,49800853:0,16384,2228224 +g1,20116:29030814,49800853 +g1,20116:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,20116:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,20207:37855564,49800853:1179648,16384,0 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,20116:37855564,49800853:1179648,16384,0 ) ) -k1,20207:3078556,49800853:-34777008 +k1,20116:3078556,49800853:-34777008 ) ] -g1,20207:6630773,4812305 -g1,20207:6630773,4812305 -g1,20207:8724648,4812305 -k1,20207:31387652,4812305:22663004 -) -) -] -[1,20207:6630773,45706769:25952256,40108032,0 -(1,20207:6630773,45706769:25952256,40108032,0 -(1,20207:6630773,45706769:0,0,0 -g1,20207:6630773,45706769 -) -[1,20207:6630773,45706769:25952256,40108032,0 -v1,20154:6630773,6254097:0,393216,0 -(1,20155:6630773,7642652:25952256,1781771,0 -g1,20155:6630773,7642652 -g1,20155:6303093,7642652 -r1,20207:6401397,7642652:98304,1781771,0 -g1,20155:6600626,7642652 -g1,20155:6797234,7642652 -[1,20155:6797234,7642652:25785795,1781771,0 -(1,20155:6797234,6674681:25785795,813800,267386 -(1,20154:6797234,6674681:0,813800,267386 -r1,20207:8134168,6674681:1336934,1081186,267386 -k1,20154:6797234,6674681:-1336934 -) -(1,20154:6797234,6674681:1336934,813800,267386 -) -k1,20154:8353277,6674681:219109 -k1,20154:8680957,6674681:327680 -k1,20154:11885885,6674681:219108 -k1,20154:13096554,6674681:219109 -k1,20154:15360386,6674681:219109 -k1,20154:16195533,6674681:219109 -k1,20154:17433726,6674681:219108 -k1,20154:19036955,6674681:219109 -k1,20154:20428503,6674681:219109 -k1,20154:22948581,6674681:219109 -k1,20154:23853851,6674681:219108 -k1,20154:24941312,6674681:219109 -k1,20154:26151981,6674681:219109 -k1,20154:28106483,6674681:219109 -k1,20154:29897800,6674681:219108 -k1,20154:31931601,6674681:219109 -k1,20154:32583029,6674681:0 -) -(1,20155:6797234,7516169:25785795,513147,126483 -g1,20154:9076576,7516169 -g1,20154:9631665,7516169 -g1,20154:11152755,7516169 -g1,20154:12011276,7516169 -g1,20154:13229590,7516169 -g1,20154:17500571,7516169 -g1,20154:20105627,7516169 -g1,20154:20920894,7516169 -(1,20154:20920894,7516169:0,452978,115847 -r1,20207:22334295,7516169:1413401,568825,115847 -k1,20154:20920894,7516169:-1413401 -) -(1,20154:20920894,7516169:1413401,452978,115847 -k1,20154:20920894,7516169:3277 -h1,20154:22331018,7516169:0,411205,112570 -) -k1,20155:32583029,7516169:10075064 -g1,20155:32583029,7516169 -) -] -g1,20155:32583029,7642652 -) -h1,20155:6630773,7642652:0,0,0 -v1,20158:6630773,9357406:0,393216,0 -(1,20171:6630773,15657286:25952256,6693096,196608 -g1,20171:6630773,15657286 -g1,20171:6630773,15657286 -g1,20171:6434165,15657286 -(1,20171:6434165,15657286:0,6693096,196608 -r1,20207:32779637,15657286:26345472,6889704,196608 -k1,20171:6434165,15657286:-26345472 -) -(1,20171:6434165,15657286:26345472,6693096,196608 -[1,20171:6630773,15657286:25952256,6496488,0 -(1,20160:6630773,9565024:25952256,404226,107478 -(1,20159:6630773,9565024:0,0,0 -g1,20159:6630773,9565024 -g1,20159:6630773,9565024 -g1,20159:6303093,9565024 -(1,20159:6303093,9565024:0,0,0 -) -g1,20159:6630773,9565024 -) -k1,20160:6630773,9565024:0 -g1,20160:10424522,9565024 -g1,20160:11056814,9565024 -k1,20160:11056814,9565024:0 -h1,20160:18012019,9565024:0,0,0 -k1,20160:32583029,9565024:14571010 -g1,20160:32583029,9565024 -) -(1,20161:6630773,10231202:25952256,404226,101187 -h1,20161:6630773,10231202:0,0,0 -g1,20161:6946919,10231202 -g1,20161:7263065,10231202 -g1,20161:7579211,10231202 -g1,20161:7895357,10231202 -g1,20161:8211503,10231202 -g1,20161:8527649,10231202 -g1,20161:8843795,10231202 -g1,20161:14534418,10231202 -g1,20161:16431292,10231202 -g1,20161:17063584,10231202 -g1,20161:19592750,10231202 -g1,20161:23702644,10231202 -h1,20161:24018790,10231202:0,0,0 -k1,20161:32583029,10231202:8564239 -g1,20161:32583029,10231202 -) -(1,20162:6630773,10897380:25952256,404226,107478 -h1,20162:6630773,10897380:0,0,0 -g1,20162:6946919,10897380 -g1,20162:7263065,10897380 -g1,20162:11056813,10897380 -h1,20162:11372959,10897380:0,0,0 -k1,20162:32583029,10897380:21210070 -g1,20162:32583029,10897380 -) -(1,20163:6630773,11563558:25952256,404226,82312 -h1,20163:6630773,11563558:0,0,0 -g1,20163:6946919,11563558 -g1,20163:7263065,11563558 -g1,20163:14218271,11563558 -g1,20163:14850563,11563558 -k1,20163:14850563,11563558:0 -h1,20163:16431292,11563558:0,0,0 -k1,20163:32583029,11563558:16151737 -g1,20163:32583029,11563558 -) -(1,20164:6630773,12229736:25952256,404226,101187 -h1,20164:6630773,12229736:0,0,0 -g1,20164:6946919,12229736 -g1,20164:7263065,12229736 -g1,20164:7579211,12229736 -g1,20164:7895357,12229736 -g1,20164:8211503,12229736 -g1,20164:8527649,12229736 -g1,20164:8843795,12229736 -g1,20164:9159941,12229736 -g1,20164:9476087,12229736 -g1,20164:9792233,12229736 -g1,20164:10108379,12229736 -g1,20164:10424525,12229736 -g1,20164:10740671,12229736 -g1,20164:11056817,12229736 -g1,20164:11372963,12229736 -g1,20164:11689109,12229736 -g1,20164:12005255,12229736 -g1,20164:12321401,12229736 -g1,20164:12637547,12229736 -g1,20164:14850567,12229736 -g1,20164:15482859,12229736 -g1,20164:21489627,12229736 -g1,20164:24018793,12229736 -g1,20164:24967230,12229736 -g1,20164:25599522,12229736 -g1,20164:27812542,12229736 -g1,20164:28444834,12229736 -k1,20164:28444834,12229736:0 -h1,20164:31606293,12229736:0,0,0 -k1,20164:32583029,12229736:976736 -g1,20164:32583029,12229736 -) -(1,20165:6630773,12895914:25952256,404226,101187 -h1,20165:6630773,12895914:0,0,0 -k1,20165:6915190,12895914:284417 -k1,20165:7199607,12895914:284417 -k1,20165:7484024,12895914:284417 -k1,20165:7768441,12895914:284417 -k1,20165:8052858,12895914:284417 -k1,20165:8337275,12895914:284417 -k1,20165:8621692,12895914:284417 -k1,20165:8906110,12895914:284418 -k1,20165:9190527,12895914:284417 -k1,20165:9474944,12895914:284417 -k1,20165:9759361,12895914:284417 -k1,20165:10043778,12895914:284417 -k1,20165:10328195,12895914:284417 -k1,20165:10612612,12895914:284417 -k1,20165:10897029,12895914:284417 -k1,20165:11181446,12895914:284417 -k1,20165:11465863,12895914:284417 -k1,20165:11750280,12895914:284417 -k1,20165:12034697,12895914:284417 -k1,20165:14215988,12895914:284417 -k1,20165:14816551,12895914:284417 -k1,20165:20791591,12895914:284418 -k1,20165:23289028,12895914:284417 -k1,20165:24205736,12895914:284417 -k1,20165:24806299,12895914:284417 -k1,20165:26987590,12895914:284417 -k1,20165:27588153,12895914:284417 -k1,20165:30717883,12895914:284417 -k1,20165:32266883,12895914:284417 -h1,20165:32583029,12895914:0,0,0 -k1,20165:32583029,12895914:0 -k1,20165:32583029,12895914:0 -) -(1,20166:6630773,13562092:25952256,404226,101187 -h1,20166:6630773,13562092:0,0,0 -g1,20166:6946919,13562092 -g1,20166:7263065,13562092 -g1,20166:14850562,13562092 -g1,20166:15482854,13562092 -g1,20166:17063583,13562092 -g1,20166:20857331,13562092 -g1,20166:22754206,13562092 -h1,20166:23070352,13562092:0,0,0 -k1,20166:32583029,13562092:9512677 -g1,20166:32583029,13562092 -) -(1,20167:6630773,14228270:25952256,404226,101187 -h1,20167:6630773,14228270:0,0,0 -g1,20167:6946919,14228270 -g1,20167:7263065,14228270 -g1,20167:12321397,14228270 -g1,20167:12953689,14228270 -h1,20167:13585981,14228270:0,0,0 -k1,20167:32583029,14228270:18997048 -g1,20167:32583029,14228270 -) -(1,20171:6630773,15549808:25952256,410518,107478 -g1,20171:7579210,15549808 -g1,20171:10424521,15549808 -g1,20171:12953687,15549808 -g1,20171:14534416,15549808 -g1,20171:16115145,15549808 -g1,20171:19592748,15549808 -g1,20171:22121914,15549808 -g1,20171:24334934,15549808 -k1,20171:32583029,15549808:3189764 -g1,20171:32583029,15549808 -) -] -) -g1,20171:32583029,15657286 -g1,20171:6630773,15657286 -g1,20171:6630773,15657286 -g1,20171:32583029,15657286 -g1,20171:32583029,15657286 -) -h1,20171:6630773,15853894:0,0,0 -(1,20174:6630773,25202386:25952256,8758668,0 -k1,20174:7928465,25202386:1297692 -h1,20173:7928465,25202386:0,0,0 -(1,20173:7928465,25202386:23356872,8758668,0 -(1,20173:7928465,25202386:23356506,8758690,0 -(1,20173:7928465,25202386:23356506,8758690,0 -(1,20173:7928465,25202386:0,8758690,0 -(1,20173:7928465,25202386:0,14208860,0 -(1,20173:7928465,25202386:37890292,14208860,0 -) -k1,20173:7928465,25202386:-37890292 -) -) -g1,20173:31284971,25202386 -) -) -) -g1,20174:31285337,25202386 -k1,20174:32583029,25202386:1297692 -) -(1,20181:6630773,26043874:25952256,513147,134348 -h1,20180:6630773,26043874:983040,0,0 -k1,20180:8603883,26043874:229852 -k1,20180:11099316,26043874:229853 -k1,20180:12348253,26043874:229852 -k1,20180:13762341,26043874:229852 -k1,20180:15836376,26043874:229852 -k1,20180:19107100,26043874:229853 -k1,20180:20528397,26043874:229852 -k1,20180:22266888,26043874:229852 -k1,20180:25924273,26043874:229852 -k1,20180:27145686,26043874:229853 -k1,20180:31692395,26043874:229852 -k1,20181:32583029,26043874:0 -) -(1,20181:6630773,26885362:25952256,513147,126483 -k1,20180:8773964,26885362:232161 -k1,20180:10860795,26885362:232162 -k1,20180:11902326,26885362:232161 -k1,20180:13153572,26885362:232161 -k1,20180:15374095,26885362:232161 -k1,20180:16265549,26885362:232162 -k1,20180:17516795,26885362:232161 -k1,20180:19174364,26885362:232161 -k1,20180:20969559,26885362:232161 -k1,20180:22243743,26885362:232162 -k1,20180:25310991,26885362:232161 -k1,20180:26009113,26885362:232161 -k1,20180:27109626,26885362:232161 -k1,20180:28817003,26885362:232162 -k1,20180:29815280,26885362:232161 -k1,20180:31436804,26885362:232161 -k1,20181:32583029,26885362:0 -) -(1,20181:6630773,27726850:25952256,513147,134348 -k1,20180:8746931,27726850:205128 -k1,20180:10962047,27726850:205127 -k1,20180:11523035,27726850:205128 -k1,20180:13601182,27726850:205128 -k1,20180:15117684,27726850:205127 -k1,20180:16756740,27726850:205128 -k1,20180:17980953,27726850:205128 -k1,20180:19370316,27726850:205127 -k1,20180:21419627,27726850:205128 -k1,20180:22757217,27726850:205128 -k1,20180:24623026,27726850:205127 -k1,20180:26671026,27726850:205128 -k1,20180:28067599,27726850:205128 -k1,20180:31031792,27726850:205127 -k1,20180:31714677,27726850:205128 -k1,20180:32583029,27726850:0 -) -(1,20181:6630773,28568338:25952256,513147,126483 -k1,20180:8062342,28568338:154272 -k1,20180:9605976,28568338:154271 -k1,20180:10707899,28568338:154272 -k1,20180:13093671,28568338:154271 -k1,20180:15104578,28568338:154272 -k1,20180:16277935,28568338:154272 -k1,20180:18276389,28568338:154271 -k1,20180:19563123,28568338:154272 -k1,20180:21378076,28568338:154271 -k1,20180:22551433,28568338:154272 -k1,20180:24086549,28568338:154272 -k1,20180:26611913,28568338:154271 -k1,20180:27425477,28568338:154272 -k1,20180:28598833,28568338:154271 -k1,20180:30178513,28568338:154272 -k1,20180:32583029,28568338:0 -) -(1,20181:6630773,29409826:25952256,513147,134348 -k1,20180:8063343,29409826:235883 -k1,20180:10564805,29409826:235882 -k1,20180:11332185,29409826:235883 -k1,20180:14873049,29409826:235883 -k1,20180:16692937,29409826:235883 -k1,20180:19463096,29409826:235882 -k1,20180:20771148,29409826:235883 -k1,20180:21465128,29409826:235883 -k1,20180:22232507,29409826:235882 -k1,20180:25272020,29409826:235883 -k1,20180:26194065,29409826:235883 -k1,20180:27377599,29409826:235883 -k1,20180:30603233,29409826:235882 -k1,20180:31490544,29409826:235883 -k1,20180:32583029,29409826:0 -) -(1,20181:6630773,30251314:25952256,513147,134348 -g1,20180:9592345,30251314 -g1,20180:12864557,30251314 -g1,20180:16089583,30251314 -g1,20180:16940240,30251314 -g1,20180:19871665,30251314 -g1,20180:21089979,30251314 -g1,20180:22473444,30251314 -k1,20181:32583029,30251314:8091731 -g1,20181:32583029,30251314 -) -v1,20183:6630773,31441780:0,393216,0 -(1,20197:6630773,38407838:25952256,7359274,196608 -g1,20197:6630773,38407838 -g1,20197:6630773,38407838 -g1,20197:6434165,38407838 -(1,20197:6434165,38407838:0,7359274,196608 -r1,20207:32779637,38407838:26345472,7555882,196608 -k1,20197:6434165,38407838:-26345472 -) -(1,20197:6434165,38407838:26345472,7359274,196608 -[1,20197:6630773,38407838:25952256,7162666,0 -(1,20185:6630773,31649398:25952256,404226,107478 -(1,20184:6630773,31649398:0,0,0 -g1,20184:6630773,31649398 -g1,20184:6630773,31649398 -g1,20184:6303093,31649398 -(1,20184:6303093,31649398:0,0,0 -) -g1,20184:6630773,31649398 -) -k1,20185:6630773,31649398:0 -g1,20185:10424522,31649398 -g1,20185:11056814,31649398 -k1,20185:11056814,31649398:0 -h1,20185:18012019,31649398:0,0,0 -k1,20185:32583029,31649398:14571010 -g1,20185:32583029,31649398 -) -(1,20186:6630773,32315576:25952256,404226,101187 -h1,20186:6630773,32315576:0,0,0 -g1,20186:6946919,32315576 -g1,20186:7263065,32315576 -g1,20186:7579211,32315576 -g1,20186:7895357,32315576 -g1,20186:8211503,32315576 -g1,20186:8527649,32315576 -g1,20186:8843795,32315576 -g1,20186:14534418,32315576 -g1,20186:16431292,32315576 -g1,20186:17063584,32315576 -g1,20186:19592750,32315576 -g1,20186:23702644,32315576 -h1,20186:24018790,32315576:0,0,0 -k1,20186:32583029,32315576:8564239 -g1,20186:32583029,32315576 -) -(1,20187:6630773,32981754:25952256,404226,107478 -h1,20187:6630773,32981754:0,0,0 -g1,20187:6946919,32981754 -g1,20187:7263065,32981754 -g1,20187:11056813,32981754 -h1,20187:11372959,32981754:0,0,0 -k1,20187:32583029,32981754:21210070 -g1,20187:32583029,32981754 -) -(1,20188:6630773,33647932:25952256,404226,82312 -h1,20188:6630773,33647932:0,0,0 -g1,20188:6946919,33647932 -g1,20188:7263065,33647932 -g1,20188:14218271,33647932 -g1,20188:14850563,33647932 -k1,20188:14850563,33647932:0 -h1,20188:16431292,33647932:0,0,0 -k1,20188:32583029,33647932:16151737 -g1,20188:32583029,33647932 -) -(1,20189:6630773,34314110:25952256,404226,82312 -h1,20189:6630773,34314110:0,0,0 -g1,20189:6946919,34314110 -g1,20189:7263065,34314110 -g1,20189:7579211,34314110 -g1,20189:7895357,34314110 -g1,20189:8211503,34314110 -g1,20189:8527649,34314110 -g1,20189:8843795,34314110 -g1,20189:9159941,34314110 -g1,20189:9476087,34314110 -g1,20189:9792233,34314110 -g1,20189:10108379,34314110 -g1,20189:10424525,34314110 -g1,20189:10740671,34314110 -g1,20189:11056817,34314110 -g1,20189:11372963,34314110 -g1,20189:11689109,34314110 -g1,20189:12005255,34314110 -g1,20189:12321401,34314110 -g1,20189:12637547,34314110 -g1,20189:16431295,34314110 -g1,20189:17063587,34314110 -g1,20189:18012024,34314110 -k1,20189:18012024,34314110:0 -h1,20189:19908898,34314110:0,0,0 -k1,20189:32583029,34314110:12674131 -g1,20189:32583029,34314110 -) -(1,20190:6630773,34980288:25952256,404226,101187 -h1,20190:6630773,34980288:0,0,0 -k1,20190:6914057,34980288:283284 -k1,20190:7197341,34980288:283284 -k1,20190:7480625,34980288:283284 -k1,20190:7763909,34980288:283284 -k1,20190:8047193,34980288:283284 -k1,20190:8330477,34980288:283284 -k1,20190:8613761,34980288:283284 -k1,20190:8897045,34980288:283284 -k1,20190:9180329,34980288:283284 -k1,20190:9463613,34980288:283284 -k1,20190:9746897,34980288:283284 -k1,20190:10030181,34980288:283284 -k1,20190:10313465,34980288:283284 -k1,20190:10596748,34980288:283283 -k1,20190:10880032,34980288:283284 -k1,20190:11163316,34980288:283284 -k1,20190:11446600,34980288:283284 -k1,20190:11729884,34980288:283284 -k1,20190:12013168,34980288:283284 -k1,20190:14193326,34980288:283284 -k1,20190:14792756,34980288:283284 -k1,20190:20766662,34980288:283284 -k1,20190:23262966,34980288:283284 -k1,20190:24178541,34980288:283284 -k1,20190:24777971,34980288:283284 -k1,20190:26958129,34980288:283284 -k1,20190:27557559,34980288:283284 -k1,20190:31002301,34980288:283284 -k1,20190:31002301,34980288:0 -h1,20190:32583029,34980288:0,0,0 -k1,20190:32583029,34980288:0 -k1,20190:32583029,34980288:0 -) -(1,20191:6630773,35646466:25952256,404226,76021 -h1,20191:6630773,35646466:0,0,0 -g1,20191:6946919,35646466 -g1,20191:7263065,35646466 -g1,20191:7579211,35646466 -g1,20191:7895357,35646466 -g1,20191:8211503,35646466 -g1,20191:8527649,35646466 -g1,20191:8843795,35646466 -g1,20191:9159941,35646466 -g1,20191:9476087,35646466 -g1,20191:9792233,35646466 -g1,20191:10108379,35646466 -g1,20191:10424525,35646466 -g1,20191:10740671,35646466 -g1,20191:11056817,35646466 -g1,20191:11372963,35646466 -g1,20191:11689109,35646466 -g1,20191:12005255,35646466 -g1,20191:12321401,35646466 -g1,20191:12637547,35646466 -g1,20191:16431295,35646466 -g1,20191:17063587,35646466 -g1,20191:19908899,35646466 -h1,20191:20225045,35646466:0,0,0 -k1,20191:32583029,35646466:12357984 -g1,20191:32583029,35646466 -) -(1,20192:6630773,36312644:25952256,404226,101187 -h1,20192:6630773,36312644:0,0,0 -g1,20192:6946919,36312644 -g1,20192:7263065,36312644 -g1,20192:14850562,36312644 -g1,20192:15482854,36312644 -g1,20192:17063583,36312644 -g1,20192:20857331,36312644 -g1,20192:22754206,36312644 -h1,20192:23070352,36312644:0,0,0 -k1,20192:32583029,36312644:9512677 -g1,20192:32583029,36312644 -) -(1,20193:6630773,36978822:25952256,404226,101187 -h1,20193:6630773,36978822:0,0,0 -g1,20193:6946919,36978822 -g1,20193:7263065,36978822 -g1,20193:12321397,36978822 -g1,20193:12953689,36978822 -h1,20193:13585981,36978822:0,0,0 -k1,20193:32583029,36978822:18997048 -g1,20193:32583029,36978822 -) -(1,20197:6630773,38300360:25952256,410518,107478 -g1,20197:7579210,38300360 -g1,20197:10424521,38300360 -g1,20197:12953687,38300360 -g1,20197:14534416,38300360 -g1,20197:16115145,38300360 -g1,20197:19592748,38300360 -g1,20197:22121914,38300360 -g1,20197:24334934,38300360 -k1,20197:32583029,38300360:3189764 -g1,20197:32583029,38300360 -) -] -) -g1,20197:32583029,38407838 -g1,20197:6630773,38407838 -g1,20197:6630773,38407838 -g1,20197:32583029,38407838 -g1,20197:32583029,38407838 -) -h1,20197:6630773,38604446:0,0,0 -] -(1,20207:32583029,45706769:0,0,0 -g1,20207:32583029,45706769 -) -) -] -(1,20207:6630773,47279633:25952256,0,0 -h1,20207:6630773,47279633:25952256,0,0 -) -] -(1,20207:4262630,4025873:0,0,0 -[1,20207:-473656,4025873:0,0,0 -(1,20207:-473656,-710413:0,0,0 -(1,20207:-473656,-710413:0,0,0 -g1,20207:-473656,-710413 -) -g1,20207:-473656,-710413 -) -] -) -] -!19650 -}362 +g1,20116:6630773,4812305 +k1,20116:21350816,4812305:13524666 +g1,20116:21999622,4812305 +g1,20116:25611966,4812305 +g1,20116:28956923,4812305 +g1,20116:29772190,4812305 +) +) +] +[1,20116:6630773,45706769:25952256,40108032,0 +(1,20116:6630773,45706769:25952256,40108032,0 +(1,20116:6630773,45706769:0,0,0 +g1,20116:6630773,45706769 +) +[1,20116:6630773,45706769:25952256,40108032,0 +(1,20060:6630773,6254097:25952256,513147,134348 +h1,20059:6630773,6254097:983040,0,0 +g1,20059:8642072,6254097 +g1,20059:9775844,6254097 +g1,20059:11350674,6254097 +g1,20059:12706613,6254097 +g1,20059:14390232,6254097 +g1,20059:16845210,6254097 +g1,20059:18063524,6254097 +g1,20059:19964723,6254097 +g1,20059:21585428,6254097 +g1,20059:22653009,6254097 +g1,20059:23956520,6254097 +g1,20059:25248234,6254097 +(1,20059:25248234,6254097:0,414482,115847 +r1,20116:25958212,6254097:709978,530329,115847 +k1,20059:25248234,6254097:-709978 +) +(1,20059:25248234,6254097:709978,414482,115847 +k1,20059:25248234,6254097:3277 +h1,20059:25954935,6254097:0,411205,112570 +) +g1,20059:26157441,6254097 +g1,20059:27042832,6254097 +g1,20059:27597921,6254097 +k1,20060:32583029,6254097:1760737 +g1,20060:32583029,6254097 +) +v1,20062:6630773,6938952:0,393216,0 +(1,20066:6630773,7273029:25952256,727293,196608 +g1,20066:6630773,7273029 +g1,20066:6630773,7273029 +g1,20066:6434165,7273029 +(1,20066:6434165,7273029:0,727293,196608 +r1,20116:32779637,7273029:26345472,923901,196608 +k1,20066:6434165,7273029:-26345472 +) +(1,20066:6434165,7273029:26345472,727293,196608 +[1,20066:6630773,7273029:25952256,530685,0 +(1,20064:6630773,7166783:25952256,424439,106246 +(1,20063:6630773,7166783:0,0,0 +g1,20063:6630773,7166783 +g1,20063:6630773,7166783 +g1,20063:6303093,7166783 +(1,20063:6303093,7166783:0,0,0 +) +g1,20063:6630773,7166783 +) +g1,20064:6962727,7166783 +g1,20064:7294681,7166783 +g1,20064:15925484,7166783 +g1,20064:16589392,7166783 +g1,20064:18581116,7166783 +h1,20064:19908932,7166783:0,0,0 +k1,20064:32583029,7166783:12674097 +g1,20064:32583029,7166783 +) +] +) +g1,20066:32583029,7273029 +g1,20066:6630773,7273029 +g1,20066:6630773,7273029 +g1,20066:32583029,7273029 +g1,20066:32583029,7273029 +) +h1,20066:6630773,7469637:0,0,0 +(1,20070:6630773,8334717:25952256,513147,115847 +h1,20069:6630773,8334717:983040,0,0 +k1,20069:11875718,8334717:233407 +k1,20069:15134922,8334717:233407 +(1,20069:15134922,8334717:0,452978,115847 +r1,20116:17251747,8334717:2116825,568825,115847 +k1,20069:15134922,8334717:-2116825 +) +(1,20069:15134922,8334717:2116825,452978,115847 +k1,20069:15134922,8334717:3277 +h1,20069:17248470,8334717:0,411205,112570 +) +k1,20069:17485154,8334717:233407 +k1,20069:18910006,8334717:233407 +(1,20069:18910006,8334717:0,452978,115847 +r1,20116:21026831,8334717:2116825,568825,115847 +k1,20069:18910006,8334717:-2116825 +) +(1,20069:18910006,8334717:2116825,452978,115847 +k1,20069:18910006,8334717:3277 +h1,20069:21023554,8334717:0,411205,112570 +) +k1,20069:21260238,8334717:233407 +k1,20069:22597927,8334717:233407 +k1,20069:23579100,8334717:233407 +k1,20069:25325733,8334717:233407 +k1,20069:26210568,8334717:233407 +k1,20069:27378518,8334717:233407 +k1,20069:28631010,8334717:233407 +k1,20069:30679109,8334717:233407 +k1,20069:31563944,8334717:233407 +k1,20069:32583029,8334717:0 +) +(1,20070:6630773,9199797:25952256,513147,138281 +k1,20069:9122582,9199797:226229 +$1,20069:9122582,9199797 +$1,20069:9625243,9199797 +k1,20069:9851471,9199797:226228 +k1,20069:11269145,9199797:226229 +$1,20069:11269145,9199797 +$1,20069:11820958,9199797 +k1,20069:12047186,9199797:226228 +k1,20069:14175925,9199797:226229 +k1,20069:15018192,9199797:226229 +k1,20069:16510576,9199797:226228 +k1,20069:17690354,9199797:226229 +k1,20069:19314465,9199797:226228 +k1,20069:20633179,9199797:226229 +(1,20069:20633179,9199797:0,452978,115847 +r1,20116:22750004,9199797:2116825,568825,115847 +k1,20069:20633179,9199797:-2116825 +) +(1,20069:20633179,9199797:2116825,452978,115847 +k1,20069:20633179,9199797:3277 +h1,20069:22746727,9199797:0,411205,112570 +) +k1,20069:23149903,9199797:226229 +k1,20069:24448300,9199797:226228 +(1,20069:24448300,9199797:0,452978,115847 +r1,20116:26565125,9199797:2116825,568825,115847 +k1,20069:24448300,9199797:-2116825 +) +(1,20069:24448300,9199797:2116825,452978,115847 +k1,20069:24448300,9199797:3277 +h1,20069:26561848,9199797:0,411205,112570 +) +k1,20069:26791354,9199797:226229 +k1,20069:27549079,9199797:226228 +k1,20069:30512091,9199797:226229 +k1,20069:32583029,9199797:0 +) +(1,20070:6630773,10064877:25952256,513147,7863 +g1,20069:7777653,10064877 +g1,20069:8995967,10064877 +g1,20069:10730049,10064877 +g1,20069:11387375,10064877 +k1,20070:32583029,10064877:18912380 +g1,20070:32583029,10064877 +) +v1,20072:6630773,10749732:0,393216,0 +(1,20076:6630773,11083809:25952256,727293,196608 +g1,20076:6630773,11083809 +g1,20076:6630773,11083809 +g1,20076:6434165,11083809 +(1,20076:6434165,11083809:0,727293,196608 +r1,20116:32779637,11083809:26345472,923901,196608 +k1,20076:6434165,11083809:-26345472 +) +(1,20076:6434165,11083809:26345472,727293,196608 +[1,20076:6630773,11083809:25952256,530685,0 +(1,20074:6630773,10977563:25952256,424439,106246 +(1,20073:6630773,10977563:0,0,0 +g1,20073:6630773,10977563 +g1,20073:6630773,10977563 +g1,20073:6303093,10977563 +(1,20073:6303093,10977563:0,0,0 +) +g1,20073:6630773,10977563 +) +g1,20074:6962727,10977563 +g1,20074:7294681,10977563 +g1,20074:10282267,10977563 +h1,20074:11278129,10977563:0,0,0 +k1,20074:32583029,10977563:21304900 +g1,20074:32583029,10977563 +) +] +) +g1,20076:32583029,11083809 +g1,20076:6630773,11083809 +g1,20076:6630773,11083809 +g1,20076:32583029,11083809 +g1,20076:32583029,11083809 +) +h1,20076:6630773,11280417:0,0,0 +(1,20081:6630773,12145497:25952256,505283,134348 +h1,20079:6630773,12145497:983040,0,0 +k1,20079:8538690,12145497:297042 +k1,20079:11342484,12145497:297042 +k1,20079:13821220,12145497:297042 +k1,20079:15598064,12145497:297041 +k1,20079:17709798,12145497:297042 +k1,20079:20187223,12145497:297042 +k1,20079:21232031,12145497:297042 +k1,20079:24200320,12145497:297042 +k1,20079:25964058,12145497:297042 +k1,20079:28531266,12145497:297041 +k1,20079:29184168,12145497:297042 +k1,20079:32051532,12145497:297042 +k1,20079:32583029,12145497:0 +) +(1,20081:6630773,13010577:25952256,505283,134348 +k1,20079:8905933,13010577:230437 +k1,20079:10958925,13010577:230436 +(1,20079:10958925,13010577:0,414482,115847 +r1,20116:11668903,13010577:709978,530329,115847 +k1,20079:10958925,13010577:-709978 +) +(1,20079:10958925,13010577:709978,414482,115847 +k1,20079:10958925,13010577:3277 +h1,20079:11665626,13010577:0,411205,112570 +) +k1,20079:11899340,13010577:230437 +k1,20079:14140422,13010577:230437 +k1,20079:16108873,13010577:230436 +k1,20079:19010557,13010577:230437 +k1,20079:19927156,13010577:230437 +k1,20079:20615689,13010577:230436 +k1,20079:21377623,13010577:230437 +k1,20079:23002665,13010577:230436 +k1,20079:23884530,13010577:230437 +k1,20079:27633595,13010577:230437 +k1,20079:29944144,13010577:230436 +k1,20079:31193666,13010577:230437 +k1,20079:32583029,13010577:0 +) +(1,20081:6630773,13875657:25952256,513147,134348 +k1,20079:8549610,13875657:180822 +k1,20079:11206382,13875657:180822 +k1,20080:11857098,13875657:180823 +k1,20080:12569417,13875657:180822 +k1,20080:16015898,13875657:180822 +k1,20080:16848148,13875657:180822 +k1,20080:18121456,13875657:180823 +k1,20080:20997774,13875657:180822 +(1,20080:20997774,13875657:0,452978,115847 +r1,20116:26280005,13875657:5282231,568825,115847 +k1,20080:20997774,13875657:-5282231 +) +(1,20080:20997774,13875657:5282231,452978,115847 +k1,20080:20997774,13875657:3277 +h1,20080:26276728,13875657:0,411205,112570 +) +k1,20080:26460827,13875657:180822 +k1,20080:27327811,13875657:180822 +k1,20080:27966731,13875657:180823 +k1,20080:30012052,13875657:180822 +k1,20081:32583029,13875657:0 +) +(1,20081:6630773,14740737:25952256,513147,134348 +k1,20080:7823747,14740737:173889 +k1,20080:11832146,14740737:173888 +k1,20080:15214678,14740737:173889 +k1,20080:17654147,14740737:173889 +k1,20080:19642728,14740737:173889 +k1,20080:20475908,14740737:173888 +k1,20080:21005657,14740737:173889 +k1,20080:24426200,14740737:173889 +k1,20080:26172298,14740737:173889 +k1,20080:28160878,14740737:173888 +k1,20080:29467229,14740737:173889 +k1,20080:31219225,14740737:173889 +k1,20080:32583029,14740737:0 +) +(1,20081:6630773,15605817:25952256,505283,126483 +k1,20080:7807800,15605817:157942 +k1,20080:11123266,15605817:157941 +k1,20080:14373852,15605817:157942 +k1,20080:16346485,15605817:157941 +k1,20080:18202465,15605817:157942 +k1,20080:20658755,15605817:157942 +k1,20080:21468124,15605817:157941 +k1,20080:26058921,15605817:157942 +k1,20080:26982978,15605817:157941 +k1,20080:31386342,15605817:157942 +k1,20080:32583029,15605817:0 +) +(1,20081:6630773,16470897:25952256,513147,134348 +k1,20080:10197314,16470897:163912 +k1,20080:11012655,16470897:163913 +(1,20080:11012655,16470897:0,414482,115847 +r1,20116:11370921,16470897:358266,530329,115847 +k1,20080:11012655,16470897:-358266 +) +(1,20080:11012655,16470897:358266,414482,115847 +k1,20080:11012655,16470897:3277 +h1,20080:11367644,16470897:0,411205,112570 +) +k1,20080:11534833,16470897:163912 +k1,20080:12890191,16470897:163913 +(1,20080:12890191,16470897:0,414482,115847 +r1,20116:13248457,16470897:358266,530329,115847 +k1,20080:12890191,16470897:-358266 +) +(1,20080:12890191,16470897:358266,414482,115847 +k1,20080:12890191,16470897:3277 +h1,20080:13245180,16470897:0,411205,112570 +) +k1,20080:13412369,16470897:163912 +k1,20080:14567842,16470897:163913 +k1,20080:17351883,16470897:163912 +k1,20080:19823974,16470897:163913 +k1,20080:20647178,16470897:163912 +k1,20080:22824357,16470897:163913 +k1,20080:24144979,16470897:163912 +k1,20080:24991777,16470897:163913 +k1,20080:26328128,16470897:163912 +k1,20080:28117334,16470897:163913 +k1,20080:31252648,16470897:163912 +k1,20080:32583029,16470897:0 +) +(1,20081:6630773,17335977:25952256,513147,138281 +k1,20080:7827155,17335977:177297 +k1,20080:9819143,17335977:177296 +k1,20080:10655732,17335977:177297 +k1,20080:11852113,17335977:177296 +$1,20080:11852113,17335977 +$1,20080:12354774,17335977 +k1,20080:12532071,17335977:177297 +k1,20080:13900813,17335977:177297 +$1,20080:13900813,17335977 +$1,20080:14452626,17335977 +k1,20080:14629922,17335977:177296 +k1,20080:18377620,17335977:177297 +k1,20080:20457426,17335977:177296 +k1,20080:21626283,17335977:177297 +k1,20080:24358829,17335977:177297 +k1,20080:26024448,17335977:177296 +k1,20080:27070097,17335977:177297 +k1,20080:29571955,17335977:177296 +k1,20080:30768337,17335977:177297 +k1,20080:32583029,17335977:0 +) +(1,20081:6630773,18201057:25952256,505283,134348 +g1,20080:7481430,18201057 +g1,20080:10018328,18201057 +g1,20080:11236642,18201057 +k1,20081:32583030,18201057:19298388 +g1,20081:32583030,18201057 +) +v1,20083:6630773,18885912:0,393216,0 +(1,20089:6630773,20596305:25952256,2103609,196608 +g1,20089:6630773,20596305 +g1,20089:6630773,20596305 +g1,20089:6434165,20596305 +(1,20089:6434165,20596305:0,2103609,196608 +r1,20116:32779637,20596305:26345472,2300217,196608 +k1,20089:6434165,20596305:-26345472 +) +(1,20089:6434165,20596305:26345472,2103609,196608 +[1,20089:6630773,20596305:25952256,1907001,0 +(1,20085:6630773,19120349:25952256,431045,112852 +(1,20084:6630773,19120349:0,0,0 +g1,20084:6630773,19120349 +g1,20084:6630773,19120349 +g1,20084:6303093,19120349 +(1,20084:6303093,19120349:0,0,0 +) +g1,20084:6630773,19120349 +) +k1,20085:6630773,19120349:0 +g1,20085:12937898,19120349 +g1,20085:15261576,19120349 +g1,20085:16589392,19120349 +h1,20085:16921346,19120349:0,0,0 +k1,20085:32583029,19120349:15661683 +g1,20085:32583029,19120349 +) +(1,20086:6630773,19805204:25952256,424439,112852 +h1,20086:6630773,19805204:0,0,0 +g1,20086:6962727,19805204 +g1,20086:7294681,19805204 +g1,20086:11610082,19805204 +h1,20086:11942036,19805204:0,0,0 +k1,20086:32583028,19805204:20640992 +g1,20086:32583028,19805204 +) +(1,20087:6630773,20490059:25952256,424439,106246 +h1,20087:6630773,20490059:0,0,0 +g1,20087:6962727,20490059 +g1,20087:7294681,20490059 +g1,20087:12605944,20490059 +g1,20087:13269852,20490059 +g1,20087:14265714,20490059 +g1,20087:14929622,20490059 +g1,20087:15593530,20490059 +h1,20087:16257438,20490059:0,0,0 +k1,20087:32583029,20490059:16325591 +g1,20087:32583029,20490059 +) +] +) +g1,20089:32583029,20596305 +g1,20089:6630773,20596305 +g1,20089:6630773,20596305 +g1,20089:32583029,20596305 +g1,20089:32583029,20596305 +) +h1,20089:6630773,20792913:0,0,0 +(1,20092:6630773,31368938:25952256,10510489,0 +k1,20092:12599879,31368938:5969106 +h1,20091:12599879,31368938:0,0,0 +(1,20091:12599879,31368938:14014044,10510489,0 +(1,20091:12599879,31368938:14014019,10510515,0 +(1,20091:12599879,31368938:14014019,10510515,0 +(1,20091:12599879,31368938:0,10510515,0 +(1,20091:12599879,31368938:0,14208860,0 +(1,20091:12599879,31368938:18945146,14208860,0 +) +k1,20091:12599879,31368938:-18945146 +) +) +g1,20091:26613898,31368938 +) +) +) +g1,20092:26613923,31368938 +k1,20092:32583029,31368938:5969106 +) +(1,20099:6630773,32234018:25952256,513147,126483 +h1,20098:6630773,32234018:983040,0,0 +k1,20098:8980413,32234018:169913 +(1,20098:8980413,32234018:0,452978,115847 +r1,20116:11097238,32234018:2116825,568825,115847 +k1,20098:8980413,32234018:-2116825 +) +(1,20098:8980413,32234018:2116825,452978,115847 +k1,20098:8980413,32234018:3277 +h1,20098:11093961,32234018:0,411205,112570 +) +k1,20098:11267152,32234018:169914 +k1,20098:14717797,32234018:169913 +k1,20098:15547002,32234018:169913 +k1,20098:16736000,32234018:169913 +k1,20098:18808424,32234018:169914 +k1,20098:20651471,32234018:169913 +k1,20098:21177244,32234018:169913 +k1,20098:24109500,32234018:169913 +k1,20098:25514768,32234018:169914 +k1,20098:27127128,32234018:169913 +(1,20098:27127128,32234018:0,452978,115847 +r1,20116:32409359,32234018:5282231,568825,115847 +k1,20098:27127128,32234018:-5282231 +) +(1,20098:27127128,32234018:5282231,452978,115847 +k1,20098:27127128,32234018:3277 +h1,20098:32406082,32234018:0,411205,112570 +) +k1,20098:32583029,32234018:0 +) +(1,20099:6630773,33099098:25952256,513147,134348 +k1,20098:7291984,33099098:191318 +k1,20098:10101465,33099098:191318 +k1,20098:11623165,33099098:191319 +k1,20098:13597718,33099098:191318 +k1,20098:15648292,33099098:191318 +k1,20098:16858695,33099098:191318 +k1,20098:19514822,33099098:191318 +k1,20098:22230588,33099098:191319 +k1,20098:23769326,33099098:191318 +k1,20098:24492141,33099098:191318 +k1,20098:27864577,33099098:191318 +k1,20098:28707324,33099098:191319 +k1,20098:29917727,33099098:191318 +k1,20098:31923737,33099098:191318 +k1,20098:32583029,33099098:0 +) +(1,20099:6630773,33964178:25952256,505283,134348 +k1,20098:7840437,33964178:190579 +k1,20098:9953186,33964178:190578 +k1,20098:12668212,33964178:190579 +k1,20098:14379881,33964178:190578 +k1,20098:15198295,33964178:190579 +k1,20098:17090844,33964178:190579 +k1,20098:19410031,33964178:190578 +k1,20098:20058707,33964178:190579 +k1,20098:21776929,33964178:190578 +k1,20098:22323368,33964178:190579 +k1,20098:25368695,33964178:190579 +k1,20098:26242158,33964178:190578 +k1,20098:29041070,33964178:190579 +k1,20098:29883076,33964178:190578 +k1,20098:31092740,33964178:190579 +k1,20099:32583029,33964178:0 +) +(1,20099:6630773,34829258:25952256,505283,134348 +k1,20098:8114180,34829258:236257 +k1,20098:9697858,34829258:236258 +k1,20098:12299965,34829258:236257 +k1,20098:13555307,34829258:236257 +k1,20098:15606256,34829258:236257 +k1,20098:16777057,34829258:236258 +k1,20098:18869294,34829258:236257 +k1,20098:22940062,34829258:236257 +k1,20098:23859204,34829258:236257 +k1,20098:27201869,34829258:236258 +k1,20098:28893025,34829258:236257 +k1,20098:30975431,34829258:236257 +k1,20098:32583029,34829258:0 +) +(1,20099:6630773,35694338:25952256,513147,134348 +k1,20098:7781176,35694338:158843 +k1,20098:9940832,35694338:158842 +k1,20098:10824503,35694338:158843 +k1,20098:12267852,35694338:158843 +k1,20098:16498447,35694338:158843 +k1,20098:17648849,35694338:158842 +k1,20098:20109972,35694338:158843 +k1,20098:21078185,35694338:158843 +k1,20098:22309197,35694338:158843 +k1,20098:23127331,35694338:158842 +k1,20098:24305259,35694338:158843 +k1,20098:26036311,35694338:158843 +k1,20098:28914898,35694338:158843 +k1,20098:30276981,35694338:158842 +k1,20098:30967321,35694338:158843 +k1,20098:31482024,35694338:158843 +k1,20098:32583029,35694338:0 +) +(1,20099:6630773,36559418:25952256,513147,134348 +k1,20098:8105005,36559418:238878 +k1,20098:9011038,36559418:238877 +(1,20098:9011038,36559418:0,452978,115847 +r1,20116:11127863,36559418:2116825,568825,115847 +k1,20098:9011038,36559418:-2116825 +) +(1,20098:9011038,36559418:2116825,452978,115847 +k1,20098:9011038,36559418:3277 +h1,20098:11124586,36559418:0,411205,112570 +) +k1,20098:11540411,36559418:238878 +k1,20098:13013332,36559418:238878 +k1,20098:14859807,36559418:238877 +k1,20098:16290130,36559418:238878 +k1,20098:19344435,36559418:238878 +k1,20098:23373914,36559418:238877 +k1,20098:24745254,36559418:238878 +k1,20098:26269948,36559418:238878 +k1,20098:28800619,36559418:238877 +k1,20098:30058582,36559418:238878 +k1,20098:32583029,36559418:0 +) +(1,20099:6630773,37424498:25952256,513147,134348 +g1,20098:8177422,37424498 +g1,20098:9028079,37424498 +g1,20098:9975074,37424498 +g1,20098:13440617,37424498 +g1,20098:14267681,37424498 +g1,20098:17295443,37424498 +g1,20098:18513757,37424498 +g1,20098:20978566,37424498 +g1,20098:21709292,37424498 +g1,20098:22559949,37424498 +g1,20098:24888443,37424498 +g1,20098:26851246,37424498 +g1,20098:28742615,37424498 +k1,20099:32583029,37424498:422056 +g1,20099:32583029,37424498 +) +(1,20101:6630773,38289578:25952256,513147,134348 +h1,20100:6630773,38289578:983040,0,0 +k1,20100:8874258,38289578:306896 +k1,20100:10579036,38289578:306895 +k1,20100:11820475,38289578:306896 +k1,20100:13146456,38289578:306896 +k1,20100:15345376,38289578:306896 +k1,20100:17136661,38289578:306895 +k1,20100:18102849,38289578:306896 +k1,20100:19428830,38289578:306896 +k1,20100:22260172,38289578:306895 +k1,20100:23914488,38289578:306896 +k1,20100:24872812,38289578:306896 +k1,20100:25927474,38289578:306896 +k1,20100:29327013,38289578:306895 +k1,20100:30395437,38289578:306896 +k1,20100:32583029,38289578:0 +) +(1,20101:6630773,39154658:25952256,513147,134348 +k1,20100:9385485,39154658:146379 +k1,20100:10183292,39154658:146379 +k1,20100:11348756,39154658:146379 +k1,20100:12567305,39154658:146380 +k1,20100:13905129,39154658:146379 +k1,20100:16406217,39154658:146379 +k1,20100:17571681,39154658:146379 +k1,20100:19983640,39154658:146379 +k1,20100:22738352,39154658:146379 +k1,20100:24452352,39154658:146379 +k1,20100:25617817,39154658:146380 +k1,20100:28087447,39154658:146379 +k1,20100:28893118,39154658:146379 +k1,20100:30058582,39154658:146379 +k1,20100:32583029,39154658:0 +) +(1,20101:6630773,40019738:25952256,355205,7863 +k1,20101:32583028,40019738:24431164 +g1,20101:32583028,40019738 +) +v1,20103:6630773,40704593:0,393216,0 +(1,20110:6630773,43099841:25952256,2788464,196608 +g1,20110:6630773,43099841 +g1,20110:6630773,43099841 +g1,20110:6434165,43099841 +(1,20110:6434165,43099841:0,2788464,196608 +r1,20116:32779637,43099841:26345472,2985072,196608 +k1,20110:6434165,43099841:-26345472 +) +(1,20110:6434165,43099841:26345472,2788464,196608 +[1,20110:6630773,43099841:25952256,2591856,0 +(1,20105:6630773,40939030:25952256,431045,112852 +(1,20104:6630773,40939030:0,0,0 +g1,20104:6630773,40939030 +g1,20104:6630773,40939030 +g1,20104:6303093,40939030 +(1,20104:6303093,40939030:0,0,0 +) +g1,20104:6630773,40939030 +) +k1,20105:6630773,40939030:0 +k1,20105:6630773,40939030:0 +h1,20105:12605944,40939030:0,0,0 +k1,20105:32583028,40939030:19977084 +g1,20105:32583028,40939030 +) +(1,20106:6630773,41623885:25952256,431045,112852 +h1,20106:6630773,41623885:0,0,0 +g1,20106:6962727,41623885 +g1,20106:7294681,41623885 +g1,20106:10282267,41623885 +g1,20106:10946175,41623885 +g1,20106:13269853,41623885 +g1,20106:15261577,41623885 +g1,20106:15925485,41623885 +g1,20106:18249163,41623885 +g1,20106:18913071,41623885 +g1,20106:19576979,41623885 +g1,20106:20904795,41623885 +h1,20106:21236749,41623885:0,0,0 +k1,20106:32583029,41623885:11346280 +g1,20106:32583029,41623885 +) +(1,20107:6630773,42308740:25952256,424439,106246 +h1,20107:6630773,42308740:0,0,0 +g1,20107:6962727,42308740 +g1,20107:7294681,42308740 +g1,20107:13601806,42308740 +g1,20107:14265714,42308740 +g1,20107:15925484,42308740 +h1,20107:16257438,42308740:0,0,0 +k1,20107:32583029,42308740:16325591 +g1,20107:32583029,42308740 +) +(1,20108:6630773,42993595:25952256,424439,106246 +h1,20108:6630773,42993595:0,0,0 +g1,20108:6962727,42993595 +g1,20108:7294681,42993595 +g1,20108:15925484,42993595 +g1,20108:16589392,42993595 +g1,20108:22232609,42993595 +g1,20108:22896517,42993595 +g1,20108:24556287,42993595 +h1,20108:26879965,42993595:0,0,0 +k1,20108:32583029,42993595:5703064 +g1,20108:32583029,42993595 +) +] +) +g1,20110:32583029,43099841 +g1,20110:6630773,43099841 +g1,20110:6630773,43099841 +g1,20110:32583029,43099841 +g1,20110:32583029,43099841 +) +h1,20110:6630773,43296449:0,0,0 +(1,20114:6630773,44161529:25952256,513147,126483 +h1,20113:6630773,44161529:983040,0,0 +k1,20113:9309798,44161529:207662 +k1,20113:10385811,44161529:207661 +k1,20113:12920656,44161529:207662 +k1,20113:14220803,44161529:207662 +k1,20113:14784324,44161529:207661 +k1,20113:18152787,44161529:207662 +k1,20113:19011877,44161529:207662 +k1,20113:19575398,44161529:207661 +k1,20113:21985070,44161529:207662 +k1,20113:23963515,44161529:207662 +k1,20113:24857338,44161529:207661 +k1,20113:27093995,44161529:207662 +k1,20113:28170009,44161529:207662 +k1,20113:29575013,44161529:207661 +k1,20113:31021961,44161529:207662 +k1,20114:32583029,44161529:0 +) +(1,20114:6630773,45026609:25952256,513147,134348 +g1,20113:8663044,45026609 +g1,20113:9513701,45026609 +g1,20113:10732015,45026609 +g1,20113:12711857,45026609 +g1,20113:13570378,45026609 +g1,20113:14788692,45026609 +(1,20113:14788692,45026609:0,452978,115847 +r1,20116:16905517,45026609:2116825,568825,115847 +k1,20113:14788692,45026609:-2116825 +) +(1,20113:14788692,45026609:2116825,452978,115847 +k1,20113:14788692,45026609:3277 +h1,20113:16902240,45026609:0,411205,112570 +) +k1,20114:32583029,45026609:15503842 +g1,20114:32583029,45026609 +) +] +(1,20116:32583029,45706769:0,0,0 +g1,20116:32583029,45706769 +) +) +] +(1,20116:6630773,47279633:25952256,0,0 +h1,20116:6630773,47279633:25952256,0,0 +) +] +(1,20116:4262630,4025873:0,0,0 +[1,20116:-473656,4025873:0,0,0 +(1,20116:-473656,-710413:0,0,0 +(1,20116:-473656,-710413:0,0,0 +g1,20116:-473656,-710413 +) +g1,20116:-473656,-710413 +) +] +) +] +!24757 +}341 +Input:3261:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3262:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3263:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3264:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3265:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3266:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3267:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3268:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3269:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3270:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!576 -{363 -[1,20236:4262630,47279633:28320399,43253760,0 -(1,20236:4262630,4025873:0,0,0 -[1,20236:-473656,4025873:0,0,0 -(1,20236:-473656,-710413:0,0,0 -(1,20236:-473656,-644877:0,0,0 -k1,20236:-473656,-644877:-65536 +!952 +{342 +[1,20187:4262630,47279633:28320399,43253760,0 +(1,20187:4262630,4025873:0,0,0 +[1,20187:-473656,4025873:0,0,0 +(1,20187:-473656,-710413:0,0,0 +(1,20187:-473656,-644877:0,0,0 +k1,20187:-473656,-644877:-65536 ) -(1,20236:-473656,4736287:0,0,0 -k1,20236:-473656,4736287:5209943 +(1,20187:-473656,4736287:0,0,0 +k1,20187:-473656,4736287:5209943 ) -g1,20236:-473656,-710413 +g1,20187:-473656,-710413 ) ] ) -[1,20236:6630773,47279633:25952256,43253760,0 -[1,20236:6630773,4812305:25952256,786432,0 -(1,20236:6630773,4812305:25952256,513147,126483 -(1,20236:6630773,4812305:25952256,513147,126483 -g1,20236:3078558,4812305 -[1,20236:3078558,4812305:0,0,0 -(1,20236:3078558,2439708:0,1703936,0 -k1,20236:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,20236:2537886,2439708:1179648,16384,0 +[1,20187:6630773,47279633:25952256,43253760,0 +[1,20187:6630773,4812305:25952256,786432,0 +(1,20187:6630773,4812305:25952256,505283,11795 +(1,20187:6630773,4812305:25952256,505283,11795 +g1,20187:3078558,4812305 +[1,20187:3078558,4812305:0,0,0 +(1,20187:3078558,2439708:0,1703936,0 +k1,20187:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,20187:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,20236:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,20187:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,20236:3078558,4812305:0,0,0 -(1,20236:3078558,2439708:0,1703936,0 -g1,20236:29030814,2439708 -g1,20236:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,20236:36151628,1915420:16384,1179648,0 +[1,20187:3078558,4812305:0,0,0 +(1,20187:3078558,2439708:0,1703936,0 +g1,20187:29030814,2439708 +g1,20187:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,20187:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,20236:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,20187:37855564,2439708:1179648,16384,0 ) ) -k1,20236:3078556,2439708:-34777008 +k1,20187:3078556,2439708:-34777008 ) ] -[1,20236:3078558,4812305:0,0,0 -(1,20236:3078558,49800853:0,16384,2228224 -k1,20236:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,20236:2537886,49800853:1179648,16384,0 +[1,20187:3078558,4812305:0,0,0 +(1,20187:3078558,49800853:0,16384,2228224 +k1,20187:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,20187:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,20236:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,20187:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,20236:3078558,4812305:0,0,0 -(1,20236:3078558,49800853:0,16384,2228224 -g1,20236:29030814,49800853 -g1,20236:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,20236:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] -) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,20236:37855564,49800853:1179648,16384,0 +[1,20187:3078558,4812305:0,0,0 +(1,20187:3078558,49800853:0,16384,2228224 +g1,20187:29030814,49800853 +g1,20187:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,20187:36151628,51504789:16384,1179648,0 ) -) -k1,20236:3078556,49800853:-34777008 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] -g1,20236:6630773,4812305 -k1,20236:21350816,4812305:13524666 -g1,20236:21999622,4812305 -g1,20236:25611966,4812305 -g1,20236:28956923,4812305 -g1,20236:29772190,4812305 ) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,20187:37855564,49800853:1179648,16384,0 ) -] -[1,20236:6630773,45706769:25952256,40108032,0 -(1,20236:6630773,45706769:25952256,40108032,0 -(1,20236:6630773,45706769:0,0,0 -g1,20236:6630773,45706769 ) -[1,20236:6630773,45706769:25952256,40108032,0 -(1,20200:6630773,14357405:25952256,8758668,0 -k1,20200:7928465,14357405:1297692 -h1,20199:7928465,14357405:0,0,0 -(1,20199:7928465,14357405:23356872,8758668,0 -(1,20199:7928465,14357405:23356506,8758690,0 -(1,20199:7928465,14357405:23356506,8758690,0 -(1,20199:7928465,14357405:0,8758690,0 -(1,20199:7928465,14357405:0,14208860,0 -(1,20199:7928465,14357405:37890292,14208860,0 +k1,20187:3078556,49800853:-34777008 ) -k1,20199:7928465,14357405:-37890292 -) -) -g1,20199:31284971,14357405 -) -) -) -g1,20200:31285337,14357405 -k1,20200:32583029,14357405:1297692 -) -v1,20207:6630773,15723181:0,393216,0 -(1,20208:6630773,20497507:25952256,5167542,0 -g1,20208:6630773,20497507 -g1,20208:6303093,20497507 -r1,20236:6401397,20497507:98304,5167542,0 -g1,20208:6600626,20497507 -g1,20208:6797234,20497507 -[1,20208:6797234,20497507:25785795,5167542,0 -(1,20208:6797234,16155719:25785795,825754,196608 -(1,20207:6797234,16155719:0,825754,196608 -r1,20236:7890375,16155719:1093141,1022362,196608 -k1,20207:6797234,16155719:-1093141 -) -(1,20207:6797234,16155719:1093141,825754,196608 -) -k1,20207:8203002,16155719:312627 -k1,20207:9929220,16155719:327680 -k1,20207:11438533,16155719:312626 -k1,20207:15178693,16155719:312627 -k1,20207:17687430,16155719:312626 -k1,20207:19513283,16155719:312627 -k1,20207:20817470,16155719:312627 -k1,20207:22874009,16155719:312626 -k1,20207:26481131,16155719:312627 -k1,20207:27555285,16155719:312626 -(1,20207:27555285,16155719:0,452978,115847 -r1,20236:31078957,16155719:3523672,568825,115847 -k1,20207:27555285,16155719:-3523672 -) -(1,20207:27555285,16155719:3523672,452978,115847 -k1,20207:27555285,16155719:3277 -h1,20207:31075680,16155719:0,411205,112570 -) -k1,20207:31391584,16155719:312627 -k1,20208:32583029,16155719:0 -) -(1,20208:6797234,16997207:25785795,505283,138281 -(1,20207:6797234,16997207:0,452978,115847 -r1,20236:11727754,16997207:4930520,568825,115847 -k1,20207:6797234,16997207:-4930520 -) -(1,20207:6797234,16997207:4930520,452978,115847 -k1,20207:6797234,16997207:3277 -h1,20207:11724477,16997207:0,411205,112570 -) -k1,20207:12049930,16997207:322176 -k1,20207:13695934,16997207:322177 -k1,20207:15830836,16997207:322176 -k1,20207:18689255,16997207:322176 -k1,20207:19627470,16997207:322177 -k1,20207:20968731,16997207:322176 -k1,20207:22463347,16997207:322177 -k1,20207:25777242,16997207:322176 -k1,20207:28128413,16997207:322176 -k1,20207:29469675,16997207:322177 -$1,20207:29469675,16997207 -$1,20207:30021488,16997207 -k1,20207:31809049,16997207:322176 -k1,20208:32583029,16997207:0 -) -(1,20208:6797234,17838695:25785795,513147,134348 -k1,20207:8382924,17838695:302495 -k1,20207:10198646,17838695:302496 -k1,20207:11692586,17838695:302495 -k1,20207:13014167,17838695:302496 -k1,20207:17029277,17838695:302495 -k1,20207:19669442,17838695:302496 -k1,20207:20327797,17838695:302495 -k1,20207:22503311,17838695:302495 -k1,20207:24318378,17838695:302496 -k1,20207:25303758,17838695:302495 -k1,20207:25962114,17838695:302496 -k1,20207:28147458,17838695:302495 -k1,20207:30058208,17838695:302496 -k1,20207:31019995,17838695:302495 -k1,20207:32583029,17838695:0 -) -(1,20208:6797234,18680183:25785795,513147,134348 -k1,20207:8880573,18680183:261438 -k1,20207:11027482,18680183:261438 -k1,20207:12473156,18680183:261438 -k1,20207:14578777,18680183:261438 -k1,20207:15831775,18680183:261438 -k1,20207:19134084,18680183:261438 -k1,20207:20157050,18680183:261438 -k1,20207:22684068,18680183:261438 -k1,20207:24136951,18680183:261438 -k1,20207:25832317,18680183:261438 -k1,20207:27530960,18680183:261438 -k1,20207:28478560,18680183:261438 -k1,20207:29510701,18680183:261438 -k1,20207:32583029,18680183:0 -) -(1,20208:6797234,19521671:25785795,513147,134348 -k1,20207:7717874,19521671:269212 -(1,20207:7717874,19521671:0,452978,115847 -r1,20236:11593258,19521671:3875384,568825,115847 -k1,20207:7717874,19521671:-3875384 -) -(1,20207:7717874,19521671:3875384,452978,115847 -k1,20207:7717874,19521671:3277 -h1,20207:11589981,19521671:0,411205,112570 -) -k1,20207:11862470,19521671:269212 -k1,20207:14894024,19521671:269211 -k1,20207:17343619,19521671:269212 -k1,20207:19982613,19521671:269212 -k1,20207:22247396,19521671:269212 -k1,20207:23784074,19521671:269212 -k1,20207:26557417,19521671:269212 -k1,20207:28111134,19521671:269211 -k1,20207:28996384,19521671:269212 -k1,20207:31931601,19521671:269212 -k1,20207:32583029,19521671:0 -) -(1,20208:6797234,20363159:25785795,513147,134348 -g1,20207:8015548,20363159 -g1,20207:11585949,20363159 -g1,20207:15656390,20363159 -g1,20207:17855778,20363159 -g1,20207:20235390,20363159 -g1,20207:22630730,20363159 -g1,20207:23934241,20363159 -g1,20207:26471139,20363159 -g1,20207:29897361,20363159 -k1,20208:32583029,20363159:1285819 -g1,20208:32583029,20363159 -) -] -g1,20208:32583029,20497507 -) -h1,20208:6630773,20497507:0,0,0 -(1,20211:6630773,23113055:25952256,564462,152109 -(1,20211:6630773,23113055:2450326,534184,12975 -g1,20211:6630773,23113055 -g1,20211:9081099,23113055 -) -g1,20211:12304226,23113055 -g1,20211:14714903,23113055 -g1,20211:16017563,23113055 -$1,20211:16017563,23113055 -$1,20211:16570490,23113055 -g1,20211:16795410,23113055 -g1,20211:18362638,23113055 -$1,20211:18362638,23113055 -$1,20211:18969632,23113055 -k1,20211:32583029,23113055:13613397 -g1,20211:32583029,23113055 -) -(1,20215:6630773,24347759:25952256,513147,126483 -k1,20214:7405278,24347759:146670 -k1,20214:8571032,24347759:146669 -k1,20214:10084783,24347759:146670 -k1,20214:10890744,24347759:146669 -k1,20214:13544821,24347759:146670 -k1,20214:14374375,24347759:146669 -k1,20214:17858138,24347759:146670 -k1,20214:20402769,24347759:146669 -k1,20214:21568524,24347759:146670 -k1,20214:22899429,24347759:146669 -k1,20214:24890282,24347759:146670 -k1,20214:26028511,24347759:146669 -k1,20214:26936709,24347759:146670 -k1,20214:29348958,24347759:146669 -k1,20214:30514713,24347759:146670 -k1,20214:32583029,24347759:0 -) -(1,20215:6630773,25189247:25952256,513147,134348 -k1,20214:7534991,25189247:244926 -k1,20214:8799002,25189247:244926 -k1,20214:10937918,25189247:244926 -k1,20214:13148924,25189247:244926 -k1,20214:17914524,25189247:244926 -k1,20214:19316159,25189247:244925 -k1,20214:23316953,25189247:244926 -k1,20214:24799854,25189247:244926 -k1,20214:25704072,25189247:244926 -k1,20214:28962999,25189247:244926 -k1,20214:30227010,25189247:244926 -k1,20214:32583029,25189247:0 -) -(1,20215:6630773,26030735:25952256,513147,126483 -k1,20214:8059084,26030735:244075 -k1,20214:10147341,26030735:244074 -k1,20214:10922913,26030735:244075 -k1,20214:11818416,26030735:244075 -k1,20214:12997034,26030735:244075 -k1,20214:14880163,26030735:244074 -k1,20214:15810400,26030735:244075 -k1,20214:17948465,26030735:244075 -k1,20214:20158619,26030735:244074 -k1,20214:21783538,26030735:244075 -k1,20214:25012123,26030735:244075 -k1,20214:25787695,26030735:244075 -k1,20214:27098040,26030735:244074 -k1,20214:31896867,26030735:244075 -k1,20214:32583029,26030735:0 -) -(1,20215:6630773,26872223:25952256,513147,134348 -k1,20214:7455175,26872223:208364 -k1,20214:9415315,26872223:208363 -k1,20214:11321061,26872223:208364 -k1,20214:12548509,26872223:208363 -k1,20214:13983052,26872223:208364 -k1,20214:14850707,26872223:208363 -k1,20214:16078156,26872223:208364 -k1,20214:18642539,26872223:208364 -k1,20214:20035138,26872223:208363 -k1,20214:22087685,26872223:208364 -k1,20214:23632982,26872223:208363 -k1,20214:24907617,26872223:208364 -k1,20214:25863746,26872223:208363 -k1,20214:29584184,26872223:208364 -k1,20214:30478709,26872223:208363 -k1,20214:31042933,26872223:208364 -k1,20214:32583029,26872223:0 -) -(1,20215:6630773,27713711:25952256,513147,134348 -k1,20214:8578197,27713711:209409 -k1,20214:11146248,27713711:209410 -k1,20214:12374742,27713711:209409 -k1,20214:14080338,27713711:209409 -k1,20214:16025140,27713711:209409 -k1,20214:17873605,27713711:209410 -k1,20214:19733211,27713711:209409 -k1,20214:22426435,27713711:209409 -k1,20214:23287272,27713711:209409 -k1,20214:24882768,27713711:209410 -k1,20214:25708215,27713711:209409 -k1,20214:28079001,27713711:209409 -k1,20214:28971295,27713711:209409 -k1,20214:29793467,27713711:209410 -k1,20214:31021961,27713711:209409 -k1,20215:32583029,27713711:0 -) -(1,20215:6630773,28555199:25952256,513147,126483 -k1,20214:8616186,28555199:173998 -k1,20214:11365094,28555199:173998 -k1,20214:12008985,28555199:173998 -k1,20214:12714480,28555199:173998 -k1,20214:14223446,28555199:173998 -k1,20214:15048872,28555199:173998 -k1,20214:16315355,28555199:173998 -k1,20214:18614030,28555199:173998 -k1,20214:22134296,28555199:173998 -k1,20214:23993225,28555199:173998 -k1,20214:26235539,28555199:173998 -k1,20214:27357188,28555199:173998 -k1,20214:29425176,28555199:173998 -k1,20214:31391584,28555199:173998 -k1,20214:32583029,28555199:0 -) -(1,20215:6630773,29396687:25952256,505283,134348 -k1,20214:9850304,29396687:204220 -k1,20214:11245969,29396687:204220 -k1,20214:12101617,29396687:204220 -k1,20214:13240381,29396687:204221 -k1,20214:15956596,29396687:204220 -k1,20214:18004999,29396687:204220 -k1,20214:20767745,29396687:204220 -k1,20214:22818115,29396687:204220 -k1,20214:24720373,29396687:204220 -k1,20214:27622711,29396687:204221 -k1,20214:28513093,29396687:204220 -k1,20214:29585665,29396687:204220 -k1,20214:30922347,29396687:204220 -k1,20214:32583029,29396687:0 -) -(1,20215:6630773,30238175:25952256,505283,7863 -k1,20215:32583030,30238175:24380704 -g1,20215:32583030,30238175 -) -(1,20217:6630773,31079663:25952256,505283,115847 -h1,20216:6630773,31079663:983040,0,0 -k1,20216:8792504,31079663:225142 -k1,20216:10121929,31079663:225143 -k1,20216:11439556,31079663:225142 -(1,20216:11439556,31079663:0,452978,115847 -r1,20236:17776923,31079663:6337367,568825,115847 -k1,20216:11439556,31079663:-6337367 -) -(1,20216:11439556,31079663:6337367,452978,115847 -k1,20216:11439556,31079663:3277 -h1,20216:17773646,31079663:0,411205,112570 -) -k1,20216:18002066,31079663:225143 -k1,20216:18878636,31079663:225142 -k1,20216:21478804,31079663:225143 -k1,20216:22895391,31079663:225142 -k1,20216:24941124,31079663:225143 -k1,20216:26185351,31079663:225142 -k1,20216:29123685,31079663:225143 -k1,20216:31809049,31079663:225142 -k1,20217:32583029,31079663:0 -) -(1,20217:6630773,31921151:25952256,513147,134348 -k1,20216:8702409,31921151:188787 -k1,20216:9910282,31921151:188788 -k1,20216:11662103,31921151:188787 -k1,20216:12328647,31921151:188787 -k1,20216:13385786,31921151:188787 -k1,20216:14667059,31921151:188788 -k1,20216:16059087,31921151:188787 -k1,20216:19232384,31921151:188787 -k1,20216:20072599,31921151:188787 -k1,20216:22341500,31921151:188788 -k1,20216:23549372,31921151:188787 -k1,20216:25301193,31921151:188787 -k1,20216:26923908,31921151:188787 -k1,20216:27764124,31921151:188788 -k1,20216:29682406,31921151:188787 -k1,20216:32583029,31921151:0 -) -(1,20217:6630773,32762639:25952256,505283,126483 -k1,20216:7777800,32762639:278675 -k1,20216:9586742,32762639:278676 -k1,20216:10516845,32762639:278675 -k1,20216:11992863,32762639:278675 -(1,20216:11992863,32762639:0,414482,115847 -r1,20236:16219959,32762639:4227096,530329,115847 -k1,20216:11992863,32762639:-4227096 -) -(1,20216:11992863,32762639:4227096,414482,115847 -g1,20216:14106411,32762639 -g1,20216:14809835,32762639 -h1,20216:16216682,32762639:0,411205,112570 -) -k1,20216:16672305,32762639:278676 -k1,20216:17904529,32762639:278675 -k1,20216:21976428,32762639:278675 -k1,20216:23347588,32762639:278675 -(1,20216:23347588,32762639:0,452978,115847 -r1,20236:28981531,32762639:5633943,568825,115847 -k1,20216:23347588,32762639:-5633943 -) -(1,20216:23347588,32762639:5633943,452978,115847 -k1,20216:23347588,32762639:3277 -h1,20216:28978254,32762639:0,411205,112570 -) -k1,20216:29260207,32762639:278676 -k1,20216:30190310,32762639:278675 -k1,20216:32583029,32762639:0 -) -(1,20217:6630773,33604127:25952256,505283,126483 -g1,20216:8292110,33604127 -g1,20216:10559655,33604127 -g1,20216:11410312,33604127 -k1,20217:32583028,33604127:17739940 -g1,20217:32583028,33604127 -) -v1,20220:6630773,34794593:0,393216,0 -(1,20227:6630773,37083057:25952256,2681680,196608 -g1,20227:6630773,37083057 -g1,20227:6630773,37083057 -g1,20227:6434165,37083057 -(1,20227:6434165,37083057:0,2681680,196608 -r1,20236:32779637,37083057:26345472,2878288,196608 -k1,20227:6434165,37083057:-26345472 -) -(1,20227:6434165,37083057:26345472,2681680,196608 -[1,20227:6630773,37083057:25952256,2485072,0 -(1,20222:6630773,35002211:25952256,404226,107478 -(1,20221:6630773,35002211:0,0,0 -g1,20221:6630773,35002211 -g1,20221:6630773,35002211 -g1,20221:6303093,35002211 -(1,20221:6303093,35002211:0,0,0 -) -g1,20221:6630773,35002211 -) -k1,20222:6630773,35002211:0 -g1,20222:10424522,35002211 -g1,20222:13902125,35002211 -g1,20222:15798999,35002211 -h1,20222:16115145,35002211:0,0,0 -k1,20222:32583029,35002211:16467884 -g1,20222:32583029,35002211 -) -(1,20223:6630773,35668389:25952256,410518,107478 -h1,20223:6630773,35668389:0,0,0 -g1,20223:6946919,35668389 -g1,20223:7263065,35668389 -g1,20223:12953688,35668389 -g1,20223:13585980,35668389 -g1,20223:15799000,35668389 -g1,20223:17063583,35668389 -g1,20223:17695875,35668389 -g1,20223:19592750,35668389 -g1,20223:21489624,35668389 -g1,20223:22121916,35668389 -g1,20223:24018791,35668389 -h1,20223:24334937,35668389:0,0,0 -k1,20223:32583029,35668389:8248092 -g1,20223:32583029,35668389 -) -(1,20224:6630773,36334567:25952256,404226,101187 -h1,20224:6630773,36334567:0,0,0 -g1,20224:6946919,36334567 -g1,20224:7263065,36334567 -g1,20224:14850562,36334567 -g1,20224:15482854,36334567 -g1,20224:19592749,36334567 -g1,20224:24018789,36334567 -k1,20224:24018789,36334567:0 -h1,20224:27496392,36334567:0,0,0 -k1,20224:32583029,36334567:5086637 -g1,20224:32583029,36334567 -) -(1,20225:6630773,37000745:25952256,404226,82312 -h1,20225:6630773,37000745:0,0,0 -g1,20225:6946919,37000745 -g1,20225:7263065,37000745 -g1,20225:7579211,37000745 -g1,20225:7895357,37000745 -g1,20225:8211503,37000745 -g1,20225:8527649,37000745 -g1,20225:8843795,37000745 -g1,20225:9159941,37000745 -g1,20225:9476087,37000745 -g1,20225:9792233,37000745 -g1,20225:10108379,37000745 -g1,20225:10424525,37000745 -g1,20225:10740671,37000745 -g1,20225:11056817,37000745 -g1,20225:11372963,37000745 -g1,20225:11689109,37000745 -g1,20225:12005255,37000745 -g1,20225:12321401,37000745 -g1,20225:12637547,37000745 -g1,20225:14850567,37000745 -g1,20225:15482859,37000745 -g1,20225:19592754,37000745 -g1,20225:24018794,37000745 -h1,20225:27496396,37000745:0,0,0 -k1,20225:32583029,37000745:5086633 -g1,20225:32583029,37000745 -) -] -) -g1,20227:32583029,37083057 -g1,20227:6630773,37083057 -g1,20227:6630773,37083057 -g1,20227:32583029,37083057 -g1,20227:32583029,37083057 -) -h1,20227:6630773,37279665:0,0,0 -] -(1,20236:32583029,45706769:0,0,0 -g1,20236:32583029,45706769 -) -) -] -(1,20236:6630773,47279633:25952256,0,0 -h1,20236:6630773,47279633:25952256,0,0 -) -] -(1,20236:4262630,4025873:0,0,0 -[1,20236:-473656,4025873:0,0,0 -(1,20236:-473656,-710413:0,0,0 -(1,20236:-473656,-710413:0,0,0 -g1,20236:-473656,-710413 -) -g1,20236:-473656,-710413 -) -] -) -] -!17728 -}363 +] +g1,20187:6630773,4812305 +g1,20187:6630773,4812305 +g1,20187:8724648,4812305 +k1,20187:31387652,4812305:22663004 +) +) +] +[1,20187:6630773,45706769:25952256,40108032,0 +(1,20187:6630773,45706769:25952256,40108032,0 +(1,20187:6630773,45706769:0,0,0 +g1,20187:6630773,45706769 +) +[1,20187:6630773,45706769:25952256,40108032,0 +v1,20116:6630773,6254097:0,393216,0 +(1,20120:6630773,6588174:25952256,727293,196608 +g1,20120:6630773,6588174 +g1,20120:6630773,6588174 +g1,20120:6434165,6588174 +(1,20120:6434165,6588174:0,727293,196608 +r1,20187:32779637,6588174:26345472,923901,196608 +k1,20120:6434165,6588174:-26345472 +) +(1,20120:6434165,6588174:26345472,727293,196608 +[1,20120:6630773,6588174:25952256,530685,0 +(1,20118:6630773,6481928:25952256,424439,106246 +(1,20117:6630773,6481928:0,0,0 +g1,20117:6630773,6481928 +g1,20117:6630773,6481928 +g1,20117:6303093,6481928 +(1,20117:6303093,6481928:0,0,0 +) +g1,20117:6630773,6481928 +) +g1,20118:6962727,6481928 +g1,20118:7294681,6481928 +g1,20118:15925484,6481928 +g1,20118:16589392,6481928 +g1,20118:22564563,6481928 +g1,20118:23228471,6481928 +g1,20118:24888241,6481928 +h1,20118:26879965,6481928:0,0,0 +k1,20118:32583029,6481928:5703064 +g1,20118:32583029,6481928 +) +] +) +g1,20120:32583029,6588174 +g1,20120:6630773,6588174 +g1,20120:6630773,6588174 +g1,20120:32583029,6588174 +g1,20120:32583029,6588174 +) +h1,20120:6630773,6784782:0,0,0 +(1,20124:6630773,7649862:25952256,513147,134348 +h1,20123:6630773,7649862:983040,0,0 +k1,20123:8479241,7649862:237593 +k1,20123:9735919,7649862:237593 +k1,20123:11340593,7649862:237593 +k1,20123:12237478,7649862:237593 +k1,20123:14551252,7649862:237593 +k1,20123:15657197,7649862:237593 +k1,20123:18065343,7649862:237594 +k1,20123:20609148,7649862:237593 +k1,20123:22355380,7649862:237593 +k1,20123:25451653,7649862:237593 +k1,20123:28247772,7649862:237593 +k1,20123:29504450,7649862:237593 +k1,20123:31923737,7649862:237593 +k1,20123:32583029,7649862:0 +) +(1,20124:6630773,8514942:25952256,513147,11795 +k1,20123:8864744,8514942:245609 +k1,20123:10063901,8514942:245608 +k1,20123:11839776,8514942:245609 +k1,20123:14412568,8514942:245609 +k1,20123:15309604,8514942:245608 +k1,20123:16647698,8514942:245609 +k1,20123:17249167,8514942:245609 +k1,20123:22331988,8514942:245609 +k1,20123:23263758,8514942:245608 +k1,20123:26599390,8514942:245609 +k1,20123:27461037,8514942:245609 +k1,20123:29985332,8514942:245608 +h1,20123:31528050,8514942:0,0,0 +k1,20123:31773659,8514942:245609 +k1,20123:32583029,8514942:0 +) +(1,20124:6630773,9380022:25952256,513147,134348 +k1,20123:8334885,9380022:205959 +h1,20123:9530262,9380022:0,0,0 +k1,20123:9909892,9380022:205960 +k1,20123:11360380,9380022:205959 +k1,20123:16203012,9380022:205960 +(1,20123:16203012,9380022:0,452978,115847 +r1,20187:18319837,9380022:2116825,568825,115847 +k1,20123:16203012,9380022:-2116825 +) +(1,20123:16203012,9380022:2116825,452978,115847 +k1,20123:16203012,9380022:3277 +h1,20123:18316560,9380022:0,411205,112570 +) +k1,20123:18525796,9380022:205959 +k1,20123:19923201,9380022:205960 +(1,20123:19923201,9380022:0,452978,115847 +r1,20187:22040026,9380022:2116825,568825,115847 +k1,20123:19923201,9380022:-2116825 +) +(1,20123:19923201,9380022:2116825,452978,115847 +k1,20123:19923201,9380022:3277 +h1,20123:22036749,9380022:0,411205,112570 +) +k1,20123:22245985,9380022:205959 +k1,20123:23267213,9380022:205960 +k1,20123:26479308,9380022:205959 +k1,20123:28366922,9380022:205960 +k1,20123:29776122,9380022:205959 +k1,20124:32583029,9380022:0 +) +(1,20124:6630773,10245102:25952256,505283,134348 +g1,20123:9073299,10245102 +g1,20123:11831054,10245102 +g1,20123:13049368,10245102 +g1,20123:15868726,10245102 +g1,20123:18078600,10245102 +g1,20123:20483116,10245102 +g1,20123:21368507,10245102 +k1,20124:32583029,10245102:9226160 +g1,20124:32583029,10245102 +) +v1,20129:6630773,11110182:0,393216,0 +(1,20139:6630773,14154740:25952256,3437774,0 +g1,20139:6630773,14154740 +g1,20139:6237557,14154740 +r1,20187:6368629,14154740:131072,3437774,0 +g1,20139:6567858,14154740 +g1,20139:6764466,14154740 +[1,20139:6764466,14154740:25818563,3437774,0 +(1,20130:6764466,11382659:25818563,665693,196608 +(1,20129:6764466,11382659:0,665693,196608 +r1,20187:8010564,11382659:1246098,862301,196608 +k1,20129:6764466,11382659:-1246098 +) +(1,20129:6764466,11382659:1246098,665693,196608 +) +k1,20129:8184130,11382659:173566 +k1,20129:9910348,11382659:327680 +k1,20129:11452961,11382659:173566 +k1,20129:13175142,11382659:173565 +k1,20129:14367793,11382659:173566 +k1,20129:16384231,11382659:173566 +k1,20129:17089294,11382659:173566 +k1,20129:18960898,11382659:173566 +k1,20129:20153548,11382659:173565 +k1,20129:21633247,11382659:173566 +k1,20129:23291203,11382659:173566 +k1,20129:23996266,11382659:173566 +k1,20129:26029088,11382659:173566 +k1,20129:27645100,11382659:173565 +k1,20129:28837751,11382659:173566 +k1,20129:31252648,11382659:173566 +k1,20129:32583029,11382659:0 +) +(1,20130:6764466,12247739:25818563,505283,134348 +g1,20129:7506988,12247739 +g1,20129:8164314,12247739 +g1,20129:9382628,12247739 +g1,20129:11235330,12247739 +g1,20129:12120721,12247739 +g1,20129:14017988,12247739 +g1,20129:16398911,12247739 +g1,20129:18294867,12247739 +g1,20129:20147569,12247739 +g1,20129:22357443,12247739 +g1,20129:23242834,12247739 +g1,20129:25256755,12247739 +g1,20129:26849935,12247739 +(1,20129:26849935,12247739:0,452978,115847 +r1,20187:28966760,12247739:2116825,568825,115847 +k1,20129:26849935,12247739:-2116825 +) +(1,20129:26849935,12247739:2116825,452978,115847 +k1,20129:26849935,12247739:3277 +h1,20129:28963483,12247739:0,411205,112570 +) +k1,20130:32583029,12247739:3289244 +g1,20130:32583029,12247739 +) +v1,20132:6764466,12932594:0,393216,0 +(1,20137:6764466,13958132:25818563,1418754,196608 +g1,20137:6764466,13958132 +g1,20137:6764466,13958132 +g1,20137:6567858,13958132 +(1,20137:6567858,13958132:0,1418754,196608 +r1,20187:32779637,13958132:26211779,1615362,196608 +k1,20137:6567857,13958132:-26211780 +) +(1,20137:6567858,13958132:26211779,1418754,196608 +[1,20137:6764466,13958132:25818563,1222146,0 +(1,20134:6764466,13167031:25818563,431045,112852 +(1,20133:6764466,13167031:0,0,0 +g1,20133:6764466,13167031 +g1,20133:6764466,13167031 +g1,20133:6436786,13167031 +(1,20133:6436786,13167031:0,0,0 +) +g1,20133:6764466,13167031 +) +k1,20134:6764466,13167031:0 +g1,20134:13071591,13167031 +g1,20134:15395269,13167031 +g1,20134:16723085,13167031 +g1,20134:17386993,13167031 +g1,20134:21702394,13167031 +h1,20134:22034348,13167031:0,0,0 +k1,20134:32583029,13167031:10548681 +g1,20134:32583029,13167031 +) +(1,20135:6764466,13851886:25818563,424439,106246 +h1,20135:6764466,13851886:0,0,0 +g1,20135:7096420,13851886 +g1,20135:7428374,13851886 +g1,20135:16059177,13851886 +g1,20135:16723085,13851886 +g1,20135:19046763,13851886 +h1,20135:20042625,13851886:0,0,0 +k1,20135:32583029,13851886:12540404 +g1,20135:32583029,13851886 +) +] +) +g1,20137:32583029,13958132 +g1,20137:6764466,13958132 +g1,20137:6764466,13958132 +g1,20137:32583029,13958132 +g1,20137:32583029,13958132 +) +h1,20137:6764466,14154740:0,0,0 +] +g1,20139:32583029,14154740 +) +h1,20139:6630773,14154740:0,0,0 +(1,20141:6630773,15806252:25952256,505283,7863 +(1,20141:6630773,15806252:0,0,0 +g1,20141:6630773,15806252 +) +g1,20141:8642728,15806252 +g1,20141:10067480,15806252 +g1,20141:11839573,15806252 +k1,20141:32583029,15806252:18821940 +g1,20141:32583029,15806252 +) +(1,20144:6630773,17064548:25952256,513147,134348 +k1,20143:10158171,17064548:291886 +(1,20143:10158171,17064548:0,452978,115847 +r1,20187:12274996,17064548:2116825,568825,115847 +k1,20143:10158171,17064548:-2116825 +) +(1,20143:10158171,17064548:2116825,452978,115847 +k1,20143:10158171,17064548:3277 +h1,20143:12271719,17064548:0,411205,112570 +) +k1,20143:12566883,17064548:291887 +k1,20143:13390266,17064548:291886 +k1,20143:15195379,17064548:291887 +k1,20143:16138693,17064548:291886 +k1,20143:17365123,17064548:291887 +k1,20143:18676094,17064548:291886 +k1,20143:21524540,17064548:291887 +k1,20143:22475718,17064548:291886 +k1,20143:24282142,17064548:291887 +k1,20143:26318596,17064548:291886 +k1,20143:27629568,17064548:291887 +k1,20143:29347517,17064548:291886 +k1,20144:32583029,17064548:0 +) +(1,20144:6630773,17929628:25952256,505283,126483 +(1,20143:6630773,17929628:0,452978,115847 +r1,20187:8747598,17929628:2116825,568825,115847 +k1,20143:6630773,17929628:-2116825 +) +(1,20143:6630773,17929628:2116825,452978,115847 +k1,20143:6630773,17929628:3277 +h1,20143:8744321,17929628:0,411205,112570 +) +k1,20143:8924937,17929628:177339 +k1,20143:9633774,17929628:177340 +k1,20143:11324339,17929628:177339 +k1,20143:12153107,17929628:177340 +k1,20143:13264989,17929628:177339 +k1,20143:14461413,17929628:177339 +k1,20143:15822989,17929628:177340 +k1,20143:18018182,17929628:177339 +k1,20143:19660907,17929628:177340 +k1,20143:23449280,17929628:177339 +k1,20143:24730901,17929628:177339 +k1,20143:25656007,17929628:177340 +k1,20143:28038633,17929628:177339 +k1,20143:30071953,17929628:177340 +k1,20143:30605152,17929628:177339 +k1,20143:32583029,17929628:0 +) +(1,20144:6630773,18794708:25952256,513147,134348 +k1,20143:7536434,18794708:222776 +k1,20143:8115069,18794708:222775 +k1,20143:11033341,18794708:222776 +k1,20143:11942278,18794708:222775 +k1,20143:12935757,18794708:222776 +k1,20143:16404530,18794708:222775 +k1,20143:17823993,18794708:222776 +k1,20143:20312348,18794708:222775 +k1,20143:21066621,18794708:222776 +k1,20143:21940824,18794708:222775 +k1,20143:24951502,18794708:222776 +k1,20143:27358592,18794708:222775 +k1,20143:29696215,18794708:222776 +k1,20143:31773659,18794708:222775 +k1,20143:32583029,18794708:0 +) +(1,20144:6630773,19659788:25952256,513147,134348 +g1,20143:7849087,19659788 +g1,20143:9863008,19659788 +g1,20143:11253682,19659788 +g1,20143:13633294,19659788 +g1,20143:14851608,19659788 +g1,20143:17866919,19659788 +g1,20143:18752310,19659788 +k1,20144:32583029,19659788:11460937 +g1,20144:32583029,19659788 +) +(1,20146:6630773,20524868:25952256,513147,134348 +h1,20145:6630773,20524868:983040,0,0 +k1,20145:9563564,20524868:166516 +k1,20145:12662816,20524868:166516 +k1,20145:15011025,20524868:166515 +k1,20145:17466058,20524868:166516 +k1,20145:18500926,20524868:166516 +k1,20145:19771724,20524868:166516 +k1,20145:21446223,20524868:166516 +k1,20145:22631824,20524868:166516 +k1,20145:25063919,20524868:166515 +k1,20145:28439078,20524868:166516 +k1,20145:30449777,20524868:166516 +k1,20145:31563944,20524868:166516 +k1,20146:32583029,20524868:0 +) +(1,20146:6630773,21389948:25952256,452978,115847 +(1,20145:6630773,21389948:0,452978,115847 +r1,20187:8747598,21389948:2116825,568825,115847 +k1,20145:6630773,21389948:-2116825 +) +(1,20145:6630773,21389948:2116825,452978,115847 +k1,20145:6630773,21389948:3277 +h1,20145:8744321,21389948:0,411205,112570 +) +k1,20146:32583028,21389948:23661760 +g1,20146:32583028,21389948 +) +v1,20148:6630773,22074803:0,393216,0 +(1,20154:6630773,23785196:25952256,2103609,196608 +g1,20154:6630773,23785196 +g1,20154:6630773,23785196 +g1,20154:6434165,23785196 +(1,20154:6434165,23785196:0,2103609,196608 +r1,20187:32779637,23785196:26345472,2300217,196608 +k1,20154:6434165,23785196:-26345472 +) +(1,20154:6434165,23785196:26345472,2103609,196608 +[1,20154:6630773,23785196:25952256,1907001,0 +(1,20150:6630773,22309240:25952256,431045,112852 +(1,20149:6630773,22309240:0,0,0 +g1,20149:6630773,22309240 +g1,20149:6630773,22309240 +g1,20149:6303093,22309240 +(1,20149:6303093,22309240:0,0,0 +) +g1,20149:6630773,22309240 +) +k1,20150:6630773,22309240:0 +g1,20150:12937898,22309240 +g1,20150:15261576,22309240 +g1,20150:16589392,22309240 +h1,20150:16921346,22309240:0,0,0 +k1,20150:32583029,22309240:15661683 +g1,20150:32583029,22309240 +) +(1,20151:6630773,22994095:25952256,424439,112852 +h1,20151:6630773,22994095:0,0,0 +g1,20151:6962727,22994095 +g1,20151:7294681,22994095 +g1,20151:11610082,22994095 +h1,20151:11942036,22994095:0,0,0 +k1,20151:32583028,22994095:20640992 +g1,20151:32583028,22994095 +) +(1,20152:6630773,23678950:25952256,424439,106246 +h1,20152:6630773,23678950:0,0,0 +g1,20152:6962727,23678950 +g1,20152:7294681,23678950 +g1,20152:15925484,23678950 +g1,20152:16589392,23678950 +g1,20152:18581116,23678950 +g1,20152:19576978,23678950 +g1,20152:20240886,23678950 +g1,20152:21568702,23678950 +g1,20152:22896518,23678950 +h1,20152:24224334,23678950:0,0,0 +k1,20152:32583029,23678950:8358695 +g1,20152:32583029,23678950 +) +] +) +g1,20154:32583029,23785196 +g1,20154:6630773,23785196 +g1,20154:6630773,23785196 +g1,20154:32583029,23785196 +g1,20154:32583029,23785196 +) +h1,20154:6630773,23981804:0,0,0 +(1,20158:6630773,24846884:25952256,513147,126483 +h1,20157:6630773,24846884:983040,0,0 +k1,20157:9082180,24846884:271680 +k1,20157:11619440,24846884:271680 +k1,20157:14005967,24846884:271680 +k1,20157:15269207,24846884:271680 +k1,20157:18749529,24846884:271679 +k1,20157:19782737,24846884:271680 +k1,20157:22749913,24846884:271680 +(1,20157:22749913,24846884:0,452978,115847 +r1,20187:28032144,24846884:5282231,568825,115847 +k1,20157:22749913,24846884:-5282231 +) +(1,20157:22749913,24846884:5282231,452978,115847 +k1,20157:22749913,24846884:3277 +h1,20157:28028867,24846884:0,411205,112570 +) +k1,20157:28303824,24846884:271680 +k1,20157:30143125,24846884:271680 +k1,20157:32583029,24846884:0 +) +(1,20158:6630773,25711964:25952256,505283,134348 +k1,20157:8021816,25711964:194356 +k1,20157:11288500,25711964:194356 +k1,20157:13688143,25711964:194356 +k1,20157:14533926,25711964:194355 +k1,20157:15516680,25711964:194356 +k1,20157:18991768,25711964:194356 +(1,20157:18991768,25711964:0,414482,115847 +r1,20187:19350034,25711964:358266,530329,115847 +k1,20157:18991768,25711964:-358266 +) +(1,20157:18991768,25711964:358266,414482,115847 +k1,20157:18991768,25711964:3277 +h1,20157:19346757,25711964:0,411205,112570 +) +k1,20157:19544390,25711964:194356 +k1,20157:23313080,25711964:194356 +k1,20157:24526521,25711964:194356 +k1,20157:26600449,25711964:194355 +k1,20157:29280586,25711964:194356 +k1,20157:30989479,25711964:194356 +k1,20157:31835263,25711964:194356 +k1,20157:32583029,25711964:0 +) +(1,20158:6630773,26577044:25952256,513147,134348 +k1,20157:9964947,26577044:181237 +k1,20157:14636710,26577044:181236 +k1,20157:15890116,26577044:181237 +k1,20157:17090438,26577044:181237 +k1,20157:19193846,26577044:181237 +k1,20157:21860863,26577044:181236 +k1,20157:22701392,26577044:181237 +k1,20157:24397166,26577044:181237 +k1,20157:27787046,26577044:181237 +k1,20157:29305216,26577044:181236 +k1,20157:30234219,26577044:181237 +k1,20157:32583029,26577044:0 +) +(1,20158:6630773,27442124:25952256,513147,134348 +g1,20157:9592345,27442124 +g1,20157:13153571,27442124 +g1,20157:14162170,27442124 +g1,20157:15380484,27442124 +g1,20157:17360326,27442124 +g1,20157:18218847,27442124 +g1,20157:19437161,27442124 +k1,20158:32583029,27442124:11582834 +g1,20158:32583029,27442124 +) +v1,20160:6630773,28126979:0,393216,0 +(1,20164:6630773,28461056:25952256,727293,196608 +g1,20164:6630773,28461056 +g1,20164:6630773,28461056 +g1,20164:6434165,28461056 +(1,20164:6434165,28461056:0,727293,196608 +r1,20187:32779637,28461056:26345472,923901,196608 +k1,20164:6434165,28461056:-26345472 +) +(1,20164:6434165,28461056:26345472,727293,196608 +[1,20164:6630773,28461056:25952256,530685,0 +(1,20162:6630773,28354810:25952256,424439,106246 +(1,20161:6630773,28354810:0,0,0 +g1,20161:6630773,28354810 +g1,20161:6630773,28354810 +g1,20161:6303093,28354810 +(1,20161:6303093,28354810:0,0,0 +) +g1,20161:6630773,28354810 +) +g1,20162:6962727,28354810 +g1,20162:7294681,28354810 +g1,20162:15925484,28354810 +g1,20162:16589392,28354810 +g1,20162:21900655,28354810 +g1,20162:22564563,28354810 +h1,20162:23560425,28354810:0,0,0 +k1,20162:32583029,28354810:9022604 +g1,20162:32583029,28354810 +) +] +) +g1,20164:32583029,28461056 +g1,20164:6630773,28461056 +g1,20164:6630773,28461056 +g1,20164:32583029,28461056 +g1,20164:32583029,28461056 +) +h1,20164:6630773,28657664:0,0,0 +(1,20168:6630773,29522744:25952256,513147,134348 +h1,20167:6630773,29522744:983040,0,0 +k1,20167:8722769,29522744:155407 +k1,20167:9982458,29522744:155407 +k1,20167:11072407,29522744:155406 +k1,20167:12412050,29522744:155407 +k1,20167:14411640,29522744:155407 +k1,20167:17673454,29522744:155407 +k1,20167:18444899,29522744:155407 +k1,20167:20983849,29522744:155406 +k1,20167:21790684,29522744:155407 +k1,20167:22965176,29522744:155407 +k1,20167:25302277,29522744:155407 +k1,20167:26124840,29522744:155407 +(1,20167:26124840,29522744:0,452978,115847 +r1,20187:28241665,29522744:2116825,568825,115847 +k1,20167:26124840,29522744:-2116825 +) +(1,20167:26124840,29522744:2116825,452978,115847 +k1,20167:26124840,29522744:3277 +h1,20167:28238388,29522744:0,411205,112570 +) +k1,20167:28397071,29522744:155406 +k1,20167:29314006,29522744:155407 +k1,20167:31896867,29522744:155407 +k1,20167:32583029,29522744:0 +) +(1,20168:6630773,30387824:25952256,513147,134348 +k1,20167:10235807,30387824:202405 +k1,20167:11610652,30387824:202406 +k1,20167:14121235,30387824:202405 +k1,20167:14982933,30387824:202406 +k1,20167:16912867,30387824:202405 +k1,20167:19302209,30387824:202406 +k1,20167:20132449,30387824:202405 +k1,20167:21353940,30387824:202406 +k1,20167:22940465,30387824:202405 +k1,20167:25804288,30387824:202406 +k1,20167:26875045,30387824:202405 +k1,20167:28169936,30387824:202406 +k1,20167:29143044,30387824:202405 +k1,20167:32583029,30387824:0 +) +(1,20168:6630773,31252904:25952256,505283,11795 +g1,20167:7481430,31252904 +g1,20167:9704411,31252904 +g1,20167:10259500,31252904 +g1,20167:12314053,31252904 +k1,20168:32583029,31252904:18393336 +g1,20168:32583029,31252904 +) +v1,20170:6630773,31937759:0,393216,0 +(1,20177:6630773,34333007:25952256,2788464,196608 +g1,20177:6630773,34333007 +g1,20177:6630773,34333007 +g1,20177:6434165,34333007 +(1,20177:6434165,34333007:0,2788464,196608 +r1,20187:32779637,34333007:26345472,2985072,196608 +k1,20177:6434165,34333007:-26345472 +) +(1,20177:6434165,34333007:26345472,2788464,196608 +[1,20177:6630773,34333007:25952256,2591856,0 +(1,20172:6630773,32172196:25952256,431045,112852 +(1,20171:6630773,32172196:0,0,0 +g1,20171:6630773,32172196 +g1,20171:6630773,32172196 +g1,20171:6303093,32172196 +(1,20171:6303093,32172196:0,0,0 +) +g1,20171:6630773,32172196 +) +k1,20172:6630773,32172196:0 +g1,20172:12937898,32172196 +g1,20172:15261576,32172196 +g1,20172:16589392,32172196 +h1,20172:16921346,32172196:0,0,0 +k1,20172:32583029,32172196:15661683 +g1,20172:32583029,32172196 +) +(1,20173:6630773,32857051:25952256,424439,112852 +h1,20173:6630773,32857051:0,0,0 +g1,20173:6962727,32857051 +g1,20173:7294681,32857051 +g1,20173:11610082,32857051 +h1,20173:11942036,32857051:0,0,0 +k1,20173:32583028,32857051:20640992 +g1,20173:32583028,32857051 +) +(1,20174:6630773,33541906:25952256,424439,106246 +h1,20174:6630773,33541906:0,0,0 +g1,20174:6962727,33541906 +g1,20174:7294681,33541906 +g1,20174:15925484,33541906 +g1,20174:16589392,33541906 +g1,20174:18581116,33541906 +g1,20174:19576978,33541906 +g1,20174:20240886,33541906 +g1,20174:21568702,33541906 +g1,20174:22896518,33541906 +k1,20174:22896518,33541906:0 +h1,20174:24224334,33541906:0,0,0 +k1,20174:32583029,33541906:8358695 +g1,20174:32583029,33541906 +) +(1,20175:6630773,34226761:25952256,424439,106246 +h1,20175:6630773,34226761:0,0,0 +g1,20175:6962727,34226761 +g1,20175:7294681,34226761 +g1,20175:7626635,34226761 +g1,20175:7958589,34226761 +g1,20175:8290543,34226761 +g1,20175:8622497,34226761 +g1,20175:8954451,34226761 +g1,20175:9286405,34226761 +g1,20175:9618359,34226761 +g1,20175:9950313,34226761 +g1,20175:10282267,34226761 +g1,20175:10614221,34226761 +g1,20175:10946175,34226761 +g1,20175:11278129,34226761 +g1,20175:11610083,34226761 +g1,20175:11942037,34226761 +g1,20175:12273991,34226761 +g1,20175:12605945,34226761 +g1,20175:12937899,34226761 +g1,20175:13269853,34226761 +g1,20175:13601807,34226761 +g1,20175:15925485,34226761 +g1,20175:16589393,34226761 +g1,20175:19245025,34226761 +g1,20175:25552150,34226761 +g1,20175:27543874,34226761 +h1,20175:29535598,34226761:0,0,0 +k1,20175:32583029,34226761:3047431 +g1,20175:32583029,34226761 +) +] +) +g1,20177:32583029,34333007 +g1,20177:6630773,34333007 +g1,20177:6630773,34333007 +g1,20177:32583029,34333007 +g1,20177:32583029,34333007 +) +h1,20177:6630773,34529615:0,0,0 +(1,20180:6630773,45105640:25952256,10510489,0 +k1,20180:12599879,45105640:5969106 +h1,20179:12599879,45105640:0,0,0 +(1,20179:12599879,45105640:14014044,10510489,0 +(1,20179:12599879,45105640:14014019,10510515,0 +(1,20179:12599879,45105640:14014019,10510515,0 +(1,20179:12599879,45105640:0,10510515,0 +(1,20179:12599879,45105640:0,14208860,0 +(1,20179:12599879,45105640:18945146,14208860,0 +) +k1,20179:12599879,45105640:-18945146 +) +) +g1,20179:26613898,45105640 +) +) +) +g1,20180:26613923,45105640 +k1,20180:32583029,45105640:5969106 +) +] +(1,20187:32583029,45706769:0,0,0 +g1,20187:32583029,45706769 +) +) +] +(1,20187:6630773,47279633:25952256,0,0 +h1,20187:6630773,47279633:25952256,0,0 +) +] +(1,20187:4262630,4025873:0,0,0 +[1,20187:-473656,4025873:0,0,0 +(1,20187:-473656,-710413:0,0,0 +(1,20187:-473656,-710413:0,0,0 +g1,20187:-473656,-710413 +) +g1,20187:-473656,-710413 +) +] +) +] +!23317 +}342 Input:3271:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3272:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3273:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -346257,6040 +342392,5542 @@ Input:3284:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConso Input:3285:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3286:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3287:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3288:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3289:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3290:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3291:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3292:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3293:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3294:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3295:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3296:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3297:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3298:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3299:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3300:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3301:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3302:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!3020 -{364 -[1,20273:4262630,47279633:28320399,43253760,0 -(1,20273:4262630,4025873:0,0,0 -[1,20273:-473656,4025873:0,0,0 -(1,20273:-473656,-710413:0,0,0 -(1,20273:-473656,-644877:0,0,0 -k1,20273:-473656,-644877:-65536 +!1610 +{343 +[1,20237:4262630,47279633:28320399,43253760,0 +(1,20237:4262630,4025873:0,0,0 +[1,20237:-473656,4025873:0,0,0 +(1,20237:-473656,-710413:0,0,0 +(1,20237:-473656,-644877:0,0,0 +k1,20237:-473656,-644877:-65536 ) -(1,20273:-473656,4736287:0,0,0 -k1,20273:-473656,4736287:5209943 +(1,20237:-473656,4736287:0,0,0 +k1,20237:-473656,4736287:5209943 ) -g1,20273:-473656,-710413 +g1,20237:-473656,-710413 ) ] ) -[1,20273:6630773,47279633:25952256,43253760,0 -[1,20273:6630773,4812305:25952256,786432,0 -(1,20273:6630773,4812305:25952256,505283,11795 -(1,20273:6630773,4812305:25952256,505283,11795 -g1,20273:3078558,4812305 -[1,20273:3078558,4812305:0,0,0 -(1,20273:3078558,2439708:0,1703936,0 -k1,20273:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,20273:2537886,2439708:1179648,16384,0 +[1,20237:6630773,47279633:25952256,43253760,0 +[1,20237:6630773,4812305:25952256,786432,0 +(1,20237:6630773,4812305:25952256,513147,126483 +(1,20237:6630773,4812305:25952256,513147,126483 +g1,20237:3078558,4812305 +[1,20237:3078558,4812305:0,0,0 +(1,20237:3078558,2439708:0,1703936,0 +k1,20237:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,20237:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,20273:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,20237:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,20273:3078558,4812305:0,0,0 -(1,20273:3078558,2439708:0,1703936,0 -g1,20273:29030814,2439708 -g1,20273:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,20273:36151628,1915420:16384,1179648,0 +[1,20237:3078558,4812305:0,0,0 +(1,20237:3078558,2439708:0,1703936,0 +g1,20237:29030814,2439708 +g1,20237:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,20237:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,20273:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,20237:37855564,2439708:1179648,16384,0 ) ) -k1,20273:3078556,2439708:-34777008 +k1,20237:3078556,2439708:-34777008 ) ] -[1,20273:3078558,4812305:0,0,0 -(1,20273:3078558,49800853:0,16384,2228224 -k1,20273:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,20273:2537886,49800853:1179648,16384,0 +[1,20237:3078558,4812305:0,0,0 +(1,20237:3078558,49800853:0,16384,2228224 +k1,20237:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,20237:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,20273:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,20237:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,20273:3078558,4812305:0,0,0 -(1,20273:3078558,49800853:0,16384,2228224 -g1,20273:29030814,49800853 -g1,20273:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,20273:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +[1,20237:3078558,4812305:0,0,0 +(1,20237:3078558,49800853:0,16384,2228224 +g1,20237:29030814,49800853 +g1,20237:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,20237:36151628,51504789:16384,1179648,0 ) -] +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 +) +] +) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,20237:37855564,49800853:1179648,16384,0 ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,20273:37855564,49800853:1179648,16384,0 ) +k1,20237:3078556,49800853:-34777008 +) +] +g1,20237:6630773,4812305 +k1,20237:21350816,4812305:13524666 +g1,20237:21999622,4812305 +g1,20237:25611966,4812305 +g1,20237:28956923,4812305 +g1,20237:29772190,4812305 +) +) +] +[1,20237:6630773,45706769:25952256,40108032,0 +(1,20237:6630773,45706769:25952256,40108032,0 +(1,20237:6630773,45706769:0,0,0 +g1,20237:6630773,45706769 +) +[1,20237:6630773,45706769:25952256,40108032,0 +(1,20187:6630773,6254097:25952256,513147,134348 +h1,20186:6630773,6254097:983040,0,0 +k1,20186:10324251,6254097:175505 +k1,20186:12765991,6254097:175506 +k1,20186:15701872,6254097:175505 +k1,20186:18108879,6254097:175506 +k1,20186:21310181,6254097:175505 +k1,20186:22433337,6254097:175505 +k1,20186:23627928,6254097:175506 +k1,20186:26993070,6254097:175505 +k1,20186:30563996,6254097:175506 +k1,20186:31398793,6254097:175505 +k1,20186:32583029,6254097:0 +) +(1,20187:6630773,7119177:25952256,513147,134348 +k1,20186:8837673,7119177:189046 +k1,20186:10068741,7119177:189046 +k1,20186:13092874,7119177:189046 +k1,20186:13933348,7119177:189046 +k1,20186:16417465,7119177:189046 +k1,20186:17790747,7119177:189046 +k1,20186:19823977,7119177:189047 +k1,20186:20699185,7119177:189046 +k1,20186:24705048,7119177:189046 +k1,20186:25841745,7119177:189046 +k1,20186:27420154,7119177:189046 +k1,20186:30393169,7119177:189046 +k1,20186:31268377,7119177:189046 +k1,20187:32583029,7119177:0 +) +(1,20187:6630773,7984257:25952256,513147,115847 +g1,20186:8212156,7984257 +g1,20186:11425386,7984257 +g1,20186:12492967,7984257 +g1,20186:13796478,7984257 +g1,20186:15088192,7984257 +g1,20186:17982917,7984257 +(1,20186:17982917,7984257:0,452978,115847 +r1,20237:21154877,7984257:3171960,568825,115847 +k1,20186:17982917,7984257:-3171960 +) +(1,20186:17982917,7984257:3171960,452978,115847 +k1,20186:17982917,7984257:3277 +h1,20186:21151600,7984257:0,411205,112570 +) +k1,20187:32583029,7984257:11254482 +g1,20187:32583029,7984257 +) +v1,20189:6630773,8669112:0,393216,0 +(1,20195:6630773,10379505:25952256,2103609,196608 +g1,20195:6630773,10379505 +g1,20195:6630773,10379505 +g1,20195:6434165,10379505 +(1,20195:6434165,10379505:0,2103609,196608 +r1,20237:32779637,10379505:26345472,2300217,196608 +k1,20195:6434165,10379505:-26345472 +) +(1,20195:6434165,10379505:26345472,2103609,196608 +[1,20195:6630773,10379505:25952256,1907001,0 +(1,20191:6630773,8903549:25952256,431045,112852 +(1,20190:6630773,8903549:0,0,0 +g1,20190:6630773,8903549 +g1,20190:6630773,8903549 +g1,20190:6303093,8903549 +(1,20190:6303093,8903549:0,0,0 +) +g1,20190:6630773,8903549 +) +k1,20191:6630773,8903549:0 +g1,20191:12937898,8903549 +g1,20191:15261576,8903549 +g1,20191:15925484,8903549 +g1,20191:16589392,8903549 +g1,20191:19576978,8903549 +h1,20191:19908932,8903549:0,0,0 +k1,20191:32583029,8903549:12674097 +g1,20191:32583029,8903549 +) +(1,20192:6630773,9588404:25952256,424439,112852 +h1,20192:6630773,9588404:0,0,0 +g1,20192:6962727,9588404 +g1,20192:7294681,9588404 +g1,20192:11610082,9588404 +h1,20192:11942036,9588404:0,0,0 +k1,20192:32583028,9588404:20640992 +g1,20192:32583028,9588404 +) +(1,20193:6630773,10273259:25952256,424439,106246 +h1,20193:6630773,10273259:0,0,0 +g1,20193:6962727,10273259 +g1,20193:7294681,10273259 +g1,20193:15925484,10273259 +g1,20193:16589392,10273259 +h1,20193:19245023,10273259:0,0,0 +k1,20193:32583029,10273259:13338006 +g1,20193:32583029,10273259 +) +] +) +g1,20195:32583029,10379505 +g1,20195:6630773,10379505 +g1,20195:6630773,10379505 +g1,20195:32583029,10379505 +g1,20195:32583029,10379505 +) +h1,20195:6630773,10576113:0,0,0 +(1,20198:6630773,21152138:25952256,10510489,0 +k1,20198:12599879,21152138:5969106 +h1,20197:12599879,21152138:0,0,0 +(1,20197:12599879,21152138:14014044,10510489,0 +(1,20197:12599879,21152138:14014019,10510515,0 +(1,20197:12599879,21152138:14014019,10510515,0 +(1,20197:12599879,21152138:0,10510515,0 +(1,20197:12599879,21152138:0,14208860,0 +(1,20197:12599879,21152138:18945146,14208860,0 +) +k1,20197:12599879,21152138:-18945146 +) +) +g1,20197:26613898,21152138 +) +) +) +g1,20198:26613923,21152138 +k1,20198:32583029,21152138:5969106 +) +(1,20205:6630773,22017218:25952256,505283,134348 +h1,20204:6630773,22017218:983040,0,0 +k1,20204:9078781,22017218:422946 +k1,20204:12457401,22017218:422946 +k1,20204:13748698,22017218:422945 +k1,20204:15275926,22017218:422946 +k1,20204:16791357,22017218:422946 +(1,20204:16791357,22017218:0,452978,115847 +r1,20237:19611606,22017218:2820249,568825,115847 +k1,20204:16791357,22017218:-2820249 +) +(1,20204:16791357,22017218:2820249,452978,115847 +k1,20204:16791357,22017218:3277 +h1,20204:19608329,22017218:0,411205,112570 +) +k1,20204:20208222,22017218:422946 +k1,20204:21282596,22017218:422946 +k1,20204:24043210,22017218:422945 +k1,20204:27120364,22017218:422946 +k1,20204:30888923,22017218:422946 +k1,20205:32583029,22017218:0 +) +(1,20205:6630773,22882298:25952256,513147,115847 +k1,20204:9239839,22882298:583348 +k1,20204:12569147,22882298:583349 +k1,20204:13877323,22882298:583348 +k1,20204:15443712,22882298:583349 +k1,20204:16895412,22882298:583348 +k1,20204:18583042,22882298:583348 +k1,20204:20258876,22882298:583349 +(1,20204:20258876,22882298:0,452978,115847 +r1,20237:22727413,22882298:2468537,568825,115847 +k1,20204:20258876,22882298:-2468537 +) +(1,20204:20258876,22882298:2468537,452978,115847 +k1,20204:20258876,22882298:3277 +h1,20204:22724136,22882298:0,411205,112570 +) +k1,20204:23484431,22882298:583348 +k1,20204:25259224,22882298:583348 +k1,20204:26790224,22882298:583349 +k1,20204:30189654,22882298:583348 +k1,20205:32583029,22882298:0 +) +(1,20205:6630773,23747378:25952256,513147,134348 +k1,20204:8169558,23747378:513802 +k1,20204:10418754,23747378:513803 +k1,20204:14224429,23747378:513802 +k1,20204:15397523,23747378:513802 +k1,20204:19340825,23747378:513803 +k1,20204:20802278,23747378:513802 +k1,20204:29156807,23747378:513802 +k1,20204:32583029,23747378:0 +) +(1,20205:6630773,24612458:25952256,459977,115847 +k1,20204:8264691,24612458:529636 +k1,20204:9886812,24612458:529636 +(1,20204:9886812,24612458:0,459977,115847 +r1,20237:16575890,24612458:6689078,575824,115847 +k1,20204:9886812,24612458:-6689078 +) +(1,20204:9886812,24612458:6689078,459977,115847 +k1,20204:9886812,24612458:3277 +h1,20204:16572613,24612458:0,411205,112570 +) +k1,20204:17279196,24612458:529636 +(1,20204:17279196,24612458:0,452978,115847 +r1,20237:32409359,24612458:15130163,568825,115847 +k1,20204:17279196,24612458:-15130163 +) +(1,20204:17279196,24612458:15130163,452978,115847 +g1,20204:25371845,24612458 +g1,20204:26075269,24612458 +h1,20204:32406082,24612458:0,411205,112570 +) +k1,20205:32583029,24612458:0 +) +(1,20205:6630773,25477538:25952256,505283,122846 +(1,20204:6630773,25477538:0,452978,122846 +r1,20237:10506157,25477538:3875384,575824,122846 +k1,20204:6630773,25477538:-3875384 +) +(1,20204:6630773,25477538:3875384,452978,122846 +k1,20204:6630773,25477538:3277 +h1,20204:10502880,25477538:0,411205,112570 +) +k1,20204:10971629,25477538:291802 +k1,20204:11946316,25477538:291802 +(1,20204:11946316,25477538:0,452978,122846 +r1,20237:24614496,25477538:12668180,575824,122846 +k1,20204:11946316,25477538:-12668180 +) +(1,20204:11946316,25477538:12668180,452978,122846 +g1,20204:20038965,25477538 +g1,20204:20742389,25477538 +h1,20204:24611219,25477538:0,411205,112570 +) +k1,20204:25079968,25477538:291802 +k1,20204:26189658,25477538:291801 +k1,20204:28556985,25477538:291802 +k1,20204:30890889,25477538:291802 +k1,20204:32583029,25477538:0 +) +(1,20205:6630773,26342618:25952256,513147,7863 +g1,20204:7489294,26342618 +g1,20204:9385250,26342618 +g1,20204:12610276,26342618 +g1,20204:13913787,26342618 +g1,20204:14860782,26342618 +g1,20204:17037232,26342618 +g1,20204:18630412,26342618 +g1,20204:23641294,26342618 +g1,20204:27410924,26342618 +k1,20205:32583029,26342618:3095924 +g1,20205:32583029,26342618 +) +v1,20207:6630773,27027473:0,393216,0 +(1,20213:6630773,29429327:25952256,2795070,196608 +g1,20213:6630773,29429327 +g1,20213:6630773,29429327 +g1,20213:6434165,29429327 +(1,20213:6434165,29429327:0,2795070,196608 +r1,20237:32779637,29429327:26345472,2991678,196608 +k1,20213:6434165,29429327:-26345472 +) +(1,20213:6434165,29429327:26345472,2795070,196608 +[1,20213:6630773,29429327:25952256,2598462,0 +(1,20209:6630773,27261910:25952256,431045,112852 +(1,20208:6630773,27261910:0,0,0 +g1,20208:6630773,27261910 +g1,20208:6630773,27261910 +g1,20208:6303093,27261910 +(1,20208:6303093,27261910:0,0,0 +) +g1,20208:6630773,27261910 +) +k1,20209:6630773,27261910:0 +g1,20209:12937898,27261910 +g1,20209:15261576,27261910 +g1,20209:15925484,27261910 +g1,20209:16589392,27261910 +g1,20209:18913070,27261910 +h1,20209:19245024,27261910:0,0,0 +k1,20209:32583029,27261910:13338005 +g1,20209:32583029,27261910 +) +(1,20210:6630773,27946765:25952256,424439,112852 +h1,20210:6630773,27946765:0,0,0 +g1,20210:6962727,27946765 +g1,20210:7294681,27946765 +g1,20210:11610082,27946765 +h1,20210:11942036,27946765:0,0,0 +k1,20210:32583028,27946765:20640992 +g1,20210:32583028,27946765 +) +(1,20211:6630773,28631620:25952256,424439,106246 +h1,20211:6630773,28631620:0,0,0 +k1,20211:8393936,28631620:1763163 +k1,20211:10157100,28631620:1763164 +k1,20211:19555204,28631620:1763163 +k1,20211:21650321,28631620:1763163 +k1,20211:25737162,28631620:1763163 +k1,20211:29492049,28631620:1763163 +k1,20211:31587167,28631620:1763164 +k1,20211:32583029,28631620:0 +) +(1,20211:6630773,29316475:25952256,424439,112852 +g1,20211:13601805,29316475 +g1,20211:14265713,29316475 +k1,20211:14265713,29316475:0 +h1,20211:18581115,29316475:0,0,0 +k1,20211:32583029,29316475:14001914 +g1,20211:32583029,29316475 +) +] +) +g1,20213:32583029,29429327 +g1,20213:6630773,29429327 +g1,20213:6630773,29429327 +g1,20213:32583029,29429327 +g1,20213:32583029,29429327 +) +h1,20213:6630773,29625935:0,0,0 +(1,20216:6630773,40201960:25952256,10510489,0 +k1,20216:12599879,40201960:5969106 +h1,20215:12599879,40201960:0,0,0 +(1,20215:12599879,40201960:14014044,10510489,0 +(1,20215:12599879,40201960:14014019,10510515,0 +(1,20215:12599879,40201960:14014019,10510515,0 +(1,20215:12599879,40201960:0,10510515,0 +(1,20215:12599879,40201960:0,14208860,0 +(1,20215:12599879,40201960:18945146,14208860,0 +) +k1,20215:12599879,40201960:-18945146 +) +) +g1,20215:26613898,40201960 +) +) +) +g1,20216:26613923,40201960 +k1,20216:32583029,40201960:5969106 +) +(1,20223:6630773,41067040:25952256,513147,138281 +h1,20222:6630773,41067040:983040,0,0 +k1,20222:9413029,41067040:320068 +k1,20222:11113940,41067040:320067 +k1,20222:13444653,41067040:320068 +k1,20222:16350115,41067040:320067 +k1,20222:17321611,41067040:320068 +$1,20222:17321611,41067040 +$1,20222:17824272,41067040 +k1,20222:18144340,41067040:320068 +k1,20222:19147292,41067040:320067 +$1,20222:19147292,41067040 +$1,20222:19699105,41067040 +k1,20222:20192843,41067040:320068 +k1,20222:21697147,41067040:320068 +k1,20222:23861397,41067040:320067 +k1,20222:25173025,41067040:320068 +k1,20222:27843213,41067040:320067 +k1,20222:29557232,41067040:320068 +k1,20223:32583029,41067040:0 +) +(1,20223:6630773,41932120:25952256,513147,115847 +(1,20222:6630773,41932120:0,452978,115847 +r1,20237:10857869,41932120:4227096,568825,115847 +k1,20222:6630773,41932120:-4227096 +) +(1,20222:6630773,41932120:4227096,452978,115847 +k1,20222:6630773,41932120:3277 +h1,20222:10854592,41932120:0,411205,112570 +) +k1,20222:11120484,41932120:262615 +k1,20222:12065984,41932120:262615 +(1,20222:12065984,41932120:0,452978,115847 +r1,20237:18403351,41932120:6337367,568825,115847 +k1,20222:12065984,41932120:-6337367 +) +(1,20222:12065984,41932120:6337367,452978,115847 +k1,20222:12065984,41932120:3277 +h1,20222:18400074,41932120:0,411205,112570 +) +k1,20222:18839637,41932120:262616 +k1,20222:19730087,41932120:262615 +k1,20222:21011787,41932120:262615 +k1,20222:22641483,41932120:262615 +k1,20222:23563390,41932120:262615 +k1,20222:25425083,41932120:262615 +k1,20222:26871935,41932120:262616 +k1,20222:28978733,41932120:262615 +k1,20222:30232908,41932120:262615 +k1,20222:32583029,41932120:0 +) +(1,20223:6630773,42797200:25952256,513147,115847 +g1,20222:8223953,42797200 +g1,20222:11118678,42797200 +(1,20222:11118678,42797200:0,452978,115847 +r1,20237:15345774,42797200:4227096,568825,115847 +k1,20222:11118678,42797200:-4227096 +) +(1,20222:11118678,42797200:4227096,452978,115847 +k1,20222:11118678,42797200:3277 +h1,20222:15342497,42797200:0,411205,112570 +) +k1,20223:32583028,42797200:17063584 +g1,20223:32583028,42797200 +) +v1,20225:6630773,43482055:0,393216,0 +(1,20229:6630773,43822738:25952256,733899,196608 +g1,20229:6630773,43822738 +g1,20229:6630773,43822738 +g1,20229:6434165,43822738 +(1,20229:6434165,43822738:0,733899,196608 +r1,20237:32779637,43822738:26345472,930507,196608 +k1,20229:6434165,43822738:-26345472 +) +(1,20229:6434165,43822738:26345472,733899,196608 +[1,20229:6630773,43822738:25952256,537291,0 +(1,20227:6630773,43716492:25952256,431045,106246 +(1,20226:6630773,43716492:0,0,0 +g1,20226:6630773,43716492 +g1,20226:6630773,43716492 +g1,20226:6303093,43716492 +(1,20226:6303093,43716492:0,0,0 +) +g1,20226:6630773,43716492 +) +g1,20227:7626635,43716492 +g1,20227:8954451,43716492 +g1,20227:11942036,43716492 +g1,20227:13933760,43716492 +g1,20227:16589392,43716492 +g1,20227:17917208,43716492 +g1,20227:19908932,43716492 +g1,20227:21236748,43716492 +k1,20227:21236748,43716492:0 +h1,20227:22896518,43716492:0,0,0 +k1,20227:32583029,43716492:9686511 +g1,20227:32583029,43716492 +) +] +) +g1,20229:32583029,43822738 +g1,20229:6630773,43822738 +g1,20229:6630773,43822738 +g1,20229:32583029,43822738 +g1,20229:32583029,43822738 +) +h1,20229:6630773,44019346:0,0,0 +(1,20233:6630773,44884426:25952256,513147,126483 +h1,20232:6630773,44884426:983040,0,0 +g1,20232:8282935,44884426 +g1,20232:9013661,44884426 +g1,20232:10498706,44884426 +g1,20232:13327895,44884426 +g1,20232:14178552,44884426 +g1,20232:15470266,44884426 +g1,20232:19644909,44884426 +g1,20232:22869935,44884426 +g1,20232:24535860,44884426 +g1,20232:25682740,44884426 +g1,20232:27996816,44884426 +g1,20232:29387490,44884426 +k1,20233:32583029,44884426:1177685 +g1,20233:32583029,44884426 +) +] +(1,20237:32583029,45706769:0,0,0 +g1,20237:32583029,45706769 +) +) +] +(1,20237:6630773,47279633:25952256,0,0 +h1,20237:6630773,47279633:25952256,0,0 +) +] +(1,20237:4262630,4025873:0,0,0 +[1,20237:-473656,4025873:0,0,0 +(1,20237:-473656,-710413:0,0,0 +(1,20237:-473656,-710413:0,0,0 +g1,20237:-473656,-710413 +) +g1,20237:-473656,-710413 +) +] +) +] +!16776 +}343 +Input:3288:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3289:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3290:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3291:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3292:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3293:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3294:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3295:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3296:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3297:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3298:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3299:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3300:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1234 +{344 +[1,20311:4262630,47279633:28320399,43253760,0 +(1,20311:4262630,4025873:0,0,0 +[1,20311:-473656,4025873:0,0,0 +(1,20311:-473656,-710413:0,0,0 +(1,20311:-473656,-644877:0,0,0 +k1,20311:-473656,-644877:-65536 +) +(1,20311:-473656,4736287:0,0,0 +k1,20311:-473656,4736287:5209943 ) -k1,20273:3078556,49800853:-34777008 +g1,20311:-473656,-710413 ) ] -g1,20273:6630773,4812305 -g1,20273:6630773,4812305 -g1,20273:8724648,4812305 -k1,20273:31387652,4812305:22663004 ) +[1,20311:6630773,47279633:25952256,43253760,0 +[1,20311:6630773,4812305:25952256,786432,0 +(1,20311:6630773,4812305:25952256,505283,11795 +(1,20311:6630773,4812305:25952256,505283,11795 +g1,20311:3078558,4812305 +[1,20311:3078558,4812305:0,0,0 +(1,20311:3078558,2439708:0,1703936,0 +k1,20311:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,20311:2537886,2439708:1179648,16384,0 ) -] -[1,20273:6630773,45706769:25952256,40108032,0 -(1,20273:6630773,45706769:25952256,40108032,0 -(1,20273:6630773,45706769:0,0,0 -g1,20273:6630773,45706769 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,20311:3078558,1915420:16384,1179648,0 ) -[1,20273:6630773,45706769:25952256,40108032,0 -(1,20230:6630773,16109226:25952256,10510489,0 -k1,20230:12599879,16109226:5969106 -h1,20229:12599879,16109226:0,0,0 -(1,20229:12599879,16109226:14014044,10510489,0 -(1,20229:12599879,16109226:14014019,10510515,0 -(1,20229:12599879,16109226:14014019,10510515,0 -(1,20229:12599879,16109226:0,10510515,0 -(1,20229:12599879,16109226:0,14208860,0 -(1,20229:12599879,16109226:18945146,14208860,0 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) -k1,20229:12599879,16109226:-18945146 +] ) ) -g1,20229:26613898,16109226 -) -) -) -g1,20230:26613923,16109226 -k1,20230:32583029,16109226:5969106 -) -(1,20237:6630773,16950714:25952256,513147,134348 -h1,20236:6630773,16950714:983040,0,0 -k1,20236:8519193,16950714:253952 -k1,20236:9459307,16950714:253952 -k1,20236:10329297,16950714:253952 -k1,20236:11602334,16950714:253952 -k1,20236:14610764,16950714:253952 -k1,20236:17699803,16950714:253952 -k1,20236:19329356,16950714:253952 -k1,20236:20602393,16950714:253952 -k1,20236:22223426,16950714:253952 -k1,20236:23136670,16950714:253952 -k1,20236:26365301,16950714:253952 -k1,20236:28815364,16950714:253952 -k1,20236:30929883,16950714:253952 -k1,20236:31835263,16950714:253952 -k1,20236:32583029,16950714:0 -) -(1,20237:6630773,17792202:25952256,513147,134348 -k1,20236:9666933,17792202:201073 -k1,20236:12295460,17792202:201073 -k1,20236:15192029,17792202:201073 -(1,20236:15192029,17792202:0,452978,115847 -r1,20273:18363989,17792202:3171960,568825,115847 -k1,20236:15192029,17792202:-3171960 -) -(1,20236:15192029,17792202:3171960,452978,115847 -k1,20236:15192029,17792202:3277 -h1,20236:18360712,17792202:0,411205,112570 -) -k1,20236:18565062,17792202:201073 -k1,20236:19449020,17792202:201073 -(1,20236:19449020,17792202:0,452978,115847 -r1,20273:22620980,17792202:3171960,568825,115847 -k1,20236:19449020,17792202:-3171960 -) -(1,20236:19449020,17792202:3171960,452978,115847 -k1,20236:19449020,17792202:3277 -h1,20236:22617703,17792202:0,411205,112570 -) -k1,20236:22822054,17792202:201074 -k1,20236:25035082,17792202:201073 -k1,20236:25592015,17792202:201073 -k1,20236:27443285,17792202:201073 -k1,20236:29977440,17792202:201073 -k1,20236:31369958,17792202:201073 -k1,20236:32583029,17792202:0 -) -(1,20237:6630773,18633690:25952256,513147,126483 -k1,20236:10479484,18633690:162966 -k1,20236:13800630,18633690:162966 -k1,20236:14591431,18633690:162966 -k1,20236:15965502,18633690:162966 -k1,20236:17260275,18633690:162966 -k1,20236:20292407,18633690:162966 -k1,20236:21836218,18633690:162967 -k1,20236:24380762,18633690:162966 -k1,20236:25226613,18633690:162966 -k1,20236:26629520,18633690:162966 -k1,20236:28677957,18633690:162966 -k1,20236:31563944,18633690:162966 -k1,20236:32583029,18633690:0 -) -(1,20237:6630773,19475178:25952256,513147,134348 -g1,20236:8840647,19475178 -g1,20236:9707032,19475178 -(1,20236:9707032,19475178:0,452978,115847 -r1,20273:11823857,19475178:2116825,568825,115847 -k1,20236:9707032,19475178:-2116825 -) -(1,20236:9707032,19475178:2116825,452978,115847 -k1,20236:9707032,19475178:3277 -h1,20236:11820580,19475178:0,411205,112570 -) -g1,20236:12023086,19475178 -g1,20236:13489781,19475178 -g1,20236:14708095,19475178 -g1,20236:17263343,19475178 -g1,20236:19473217,19475178 -g1,20236:20776728,19475178 -g1,20236:21723723,19475178 -g1,20236:24128239,19475178 -g1,20236:25013630,19475178 -g1,20236:25983562,19475178 -g1,20236:29255119,19475178 -g1,20236:30105776,19475178 -(1,20236:30105776,19475178:0,452978,115847 -r1,20273:32222601,19475178:2116825,568825,115847 -k1,20236:30105776,19475178:-2116825 -) -(1,20236:30105776,19475178:2116825,452978,115847 -k1,20236:30105776,19475178:3277 -h1,20236:32219324,19475178:0,411205,112570 -) -k1,20237:32583029,19475178:186758 -g1,20237:32583029,19475178 -) -v1,20239:6630773,20665644:0,393216,0 -(1,20244:6630773,21640627:25952256,1368199,196608 -g1,20244:6630773,21640627 -g1,20244:6630773,21640627 -g1,20244:6434165,21640627 -(1,20244:6434165,21640627:0,1368199,196608 -r1,20273:32779637,21640627:26345472,1564807,196608 -k1,20244:6434165,21640627:-26345472 -) -(1,20244:6434165,21640627:26345472,1368199,196608 -[1,20244:6630773,21640627:25952256,1171591,0 -(1,20241:6630773,20873262:25952256,404226,101187 -(1,20240:6630773,20873262:0,0,0 -g1,20240:6630773,20873262 -g1,20240:6630773,20873262 -g1,20240:6303093,20873262 -(1,20240:6303093,20873262:0,0,0 -) -g1,20240:6630773,20873262 -) -g1,20241:6946919,20873262 -g1,20241:7263065,20873262 -g1,20241:14850562,20873262 -g1,20241:15482854,20873262 -g1,20241:19592749,20873262 -g1,20241:24018789,20873262 -k1,20241:24018789,20873262:0 -h1,20241:27496392,20873262:0,0,0 -k1,20241:32583029,20873262:5086637 -g1,20241:32583029,20873262 -) -(1,20242:6630773,21539440:25952256,404226,101187 -h1,20242:6630773,21539440:0,0,0 -g1,20242:6946919,21539440 -g1,20242:7263065,21539440 -g1,20242:7579211,21539440 -g1,20242:7895357,21539440 -g1,20242:8211503,21539440 -g1,20242:8527649,21539440 -g1,20242:8843795,21539440 -g1,20242:9159941,21539440 -g1,20242:9476087,21539440 -g1,20242:9792233,21539440 -g1,20242:10108379,21539440 -g1,20242:10424525,21539440 -g1,20242:10740671,21539440 -g1,20242:11056817,21539440 -g1,20242:11372963,21539440 -g1,20242:11689109,21539440 -g1,20242:12005255,21539440 -g1,20242:12321401,21539440 -g1,20242:12637547,21539440 -g1,20242:14850567,21539440 -g1,20242:15482859,21539440 -h1,20242:18012024,21539440:0,0,0 -k1,20242:32583029,21539440:14571005 -g1,20242:32583029,21539440 -) -] -) -g1,20244:32583029,21640627 -g1,20244:6630773,21640627 -g1,20244:6630773,21640627 -g1,20244:32583029,21640627 -g1,20244:32583029,21640627 -) -h1,20244:6630773,21837235:0,0,0 -(1,20248:6630773,23203011:25952256,513147,134348 -h1,20247:6630773,23203011:983040,0,0 -k1,20247:12049895,23203011:177552 -k1,20247:13095799,23203011:177552 -k1,20247:14377633,23203011:177552 -k1,20247:16795861,23203011:177552 -k1,20247:17992498,23203011:177552 -k1,20247:19909376,23203011:177552 -k1,20247:20746219,23203011:177551 -k1,20247:21942856,23203011:177552 -k1,20247:24833599,23203011:177552 -k1,20247:25627189,23203011:177552 -k1,20247:26823826,23203011:177552 -k1,20247:28278675,23203011:177552 -k1,20247:29217755,23203011:177552 -k1,20247:32583029,23203011:0 -) -(1,20248:6630773,24044499:25952256,513147,134348 -k1,20247:7898620,24044499:248762 -k1,20247:9939792,24044499:248762 -k1,20247:10847847,24044499:248763 -k1,20247:12990599,24044499:248762 -(1,20247:12990599,24044499:0,459977,122846 -r1,20273:16162559,24044499:3171960,582823,122846 -k1,20247:12990599,24044499:-3171960 -) -(1,20247:12990599,24044499:3171960,459977,122846 -k1,20247:12990599,24044499:3277 -h1,20247:16159282,24044499:0,411205,112570 -) -k1,20247:16584991,24044499:248762 -k1,20247:18214597,24044499:248762 -k1,20247:21447869,24044499:248762 -k1,20247:23742665,24044499:248762 -k1,20247:25761555,24044499:248763 -k1,20247:26476278,24044499:248762 -k1,20247:27744125,24044499:248762 -k1,20247:30722462,24044499:248762 -k1,20247:32583029,24044499:0 -) -(1,20248:6630773,24885987:25952256,505283,134348 -k1,20247:7472130,24885987:189929 -k1,20247:8409825,24885987:189929 -k1,20247:10177205,24885987:189928 -k1,20247:16003886,24885987:189929 -k1,20247:18048484,24885987:189929 -k1,20247:19047783,24885987:189929 -k1,20247:21248357,24885987:189929 -k1,20247:22054323,24885987:189928 -(1,20247:22054323,24885987:0,452978,115847 -r1,20273:23467724,24885987:1413401,568825,115847 -k1,20247:22054323,24885987:-1413401 -) -(1,20247:22054323,24885987:1413401,452978,115847 -k1,20247:22054323,24885987:3277 -h1,20247:23464447,24885987:0,411205,112570 -) -k1,20247:23831323,24885987:189929 -k1,20247:25071139,24885987:189929 -k1,20247:27539755,24885987:189929 -h1,20247:28908802,24885987:0,0,0 -k1,20247:29098730,24885987:189928 -k1,20247:30098029,24885987:189929 -k1,20247:31786111,24885987:189929 -h1,20247:32583029,24885987:0,0,0 -k1,20247:32583029,24885987:0 -) -(1,20248:6630773,25727475:25952256,513147,134348 -k1,20247:7770206,25727475:191782 -k1,20247:10253127,25727475:191782 -k1,20247:11641596,25727475:191782 -k1,20247:14494795,25727475:191782 -k1,20247:16555008,25727475:191782 -k1,20247:18737774,25727475:191782 -k1,20247:20259937,25727475:191782 -k1,20247:21103147,25727475:191782 -k1,20247:23669954,25727475:191782 -k1,20247:24880821,25727475:191782 -k1,20247:27959464,25727475:191782 -k1,20247:32583029,25727475:0 -) -(1,20248:6630773,26568963:25952256,513147,115847 -g1,20247:7481430,26568963 -g1,20247:8699744,26568963 -g1,20247:10691383,26568963 -g1,20247:11557768,26568963 -(1,20247:11557768,26568963:0,452978,115847 -r1,20273:13322881,26568963:1765113,568825,115847 -k1,20247:11557768,26568963:-1765113 -) -(1,20247:11557768,26568963:1765113,452978,115847 -k1,20247:11557768,26568963:3277 -h1,20247:13319604,26568963:0,411205,112570 -) -g1,20247:13522110,26568963 -g1,20247:15576008,26568963 -g1,20247:16584607,26568963 -g1,20247:17802921,26568963 -(1,20247:17802921,26568963:0,452978,115847 -r1,20273:19919746,26568963:2116825,568825,115847 -k1,20247:17802921,26568963:-2116825 -) -(1,20247:17802921,26568963:2116825,452978,115847 -k1,20247:17802921,26568963:3277 -h1,20247:19916469,26568963:0,411205,112570 -) -g1,20247:20118975,26568963 -g1,20247:20985360,26568963 -(1,20247:20985360,26568963:0,452978,115847 -r1,20273:22047049,26568963:1061689,568825,115847 -k1,20247:20985360,26568963:-1061689 -) -(1,20247:20985360,26568963:1061689,452978,115847 -k1,20247:20985360,26568963:3277 -h1,20247:22043772,26568963:0,411205,112570 -) -k1,20248:32583029,26568963:10362310 -g1,20248:32583029,26568963 -) -v1,20250:6630773,27759429:0,393216,0 -(1,20255:6630773,28746995:25952256,1380782,196608 -g1,20255:6630773,28746995 -g1,20255:6630773,28746995 -g1,20255:6434165,28746995 -(1,20255:6434165,28746995:0,1380782,196608 -r1,20273:32779637,28746995:26345472,1577390,196608 -k1,20255:6434165,28746995:-26345472 -) -(1,20255:6434165,28746995:26345472,1380782,196608 -[1,20255:6630773,28746995:25952256,1184174,0 -(1,20252:6630773,27973339:25952256,410518,107478 -(1,20251:6630773,27973339:0,0,0 -g1,20251:6630773,27973339 -g1,20251:6630773,27973339 -g1,20251:6303093,27973339 -(1,20251:6303093,27973339:0,0,0 -) -g1,20251:6630773,27973339 -) -k1,20252:6630773,27973339:0 -g1,20252:10424522,27973339 -g1,20252:14850563,27973339 -g1,20252:15482855,27973339 -g1,20252:20225041,27973339 -g1,20252:20857333,27973339 -g1,20252:21489625,27973339 -g1,20252:23070354,27973339 -g1,20252:24334937,27973339 -g1,20252:24967229,27973339 -g1,20252:27180249,27973339 -g1,20252:29077123,27973339 -h1,20252:29393269,27973339:0,0,0 -k1,20252:32583029,27973339:3189760 -g1,20252:32583029,27973339 -) -(1,20253:6630773,28639517:25952256,410518,107478 -h1,20253:6630773,28639517:0,0,0 -g1,20253:6946919,28639517 -g1,20253:7263065,28639517 -g1,20253:12953688,28639517 -g1,20253:13585980,28639517 -g1,20253:15799000,28639517 -g1,20253:17063583,28639517 -g1,20253:17695875,28639517 -h1,20253:19276603,28639517:0,0,0 -k1,20253:32583029,28639517:13306426 -g1,20253:32583029,28639517 -) -] -) -g1,20255:32583029,28746995 -g1,20255:6630773,28746995 -g1,20255:6630773,28746995 -g1,20255:32583029,28746995 -g1,20255:32583029,28746995 -) -h1,20255:6630773,28943603:0,0,0 -(1,20260:6630773,31559151:25952256,555811,12975 -(1,20260:6630773,31559151:2450326,534184,12975 -g1,20260:6630773,31559151 -g1,20260:9081099,31559151 -) -k1,20260:32583029,31559151:22040674 -g1,20260:32583029,31559151 -) -(1,20263:6630773,32793855:25952256,505283,115847 -k1,20262:8120782,32793855:447987 -k1,20262:9587855,32793855:447988 -(1,20262:9587855,32793855:0,452978,115847 -r1,20273:11001256,32793855:1413401,568825,115847 -k1,20262:9587855,32793855:-1413401 -) -(1,20262:9587855,32793855:1413401,452978,115847 -k1,20262:9587855,32793855:3277 -h1,20262:10997979,32793855:0,411205,112570 -) -k1,20262:11449243,32793855:447987 -k1,20262:14824067,32793855:447987 -k1,20262:17503556,32793855:447988 -k1,20262:19854053,32793855:447987 -k1,20262:21293601,32793855:447988 -k1,20262:24699228,32793855:447987 -k1,20262:26613911,32793855:447987 -k1,20262:29587657,32793855:447988 -k1,20262:31227089,32793855:447987 -k1,20263:32583029,32793855:0 -) -(1,20263:6630773,33635343:25952256,513147,126483 -k1,20262:9648289,33635343:416392 -k1,20262:11622471,33635343:416391 -k1,20262:12854131,33635343:416392 -k1,20262:14336794,33635343:416392 -k1,20262:16496444,33635343:416392 -k1,20262:18696070,33635343:416391 -k1,20262:20680083,33635343:416392 -k1,20262:22840388,33635343:416392 -k1,20262:25591172,33635343:416392 -k1,20262:29097586,33635343:416391 -k1,20262:31542973,33635343:416392 -k1,20263:32583029,33635343:0 -) -(1,20263:6630773,34476831:25952256,473825,122846 -k1,20262:9725929,34476831:389174 -(1,20262:9725929,34476831:0,452978,122846 -r1,20273:13953025,34476831:4227096,575824,122846 -k1,20262:9725929,34476831:-4227096 -) -(1,20262:9725929,34476831:4227096,452978,122846 -k1,20262:9725929,34476831:3277 -h1,20262:13949748,34476831:0,411205,112570 -) -k1,20262:14515868,34476831:389173 -(1,20262:14515868,34476831:0,452978,122846 -r1,20273:18391252,34476831:3875384,575824,122846 -k1,20262:14515868,34476831:-3875384 -) -(1,20262:14515868,34476831:3875384,452978,122846 -k1,20262:14515868,34476831:3277 -h1,20262:18387975,34476831:0,411205,112570 -) -k1,20262:18954096,34476831:389174 -(1,20262:18954096,34476831:0,452978,122846 -r1,20273:23181192,34476831:4227096,575824,122846 -k1,20262:18954096,34476831:-4227096 -) -(1,20262:18954096,34476831:4227096,452978,122846 -k1,20262:18954096,34476831:3277 -h1,20262:23177915,34476831:0,411205,112570 -) -k1,20262:23744035,34476831:389173 -(1,20262:23744035,34476831:0,452978,122846 -r1,20273:27971131,34476831:4227096,575824,122846 -k1,20262:23744035,34476831:-4227096 -) -(1,20262:23744035,34476831:4227096,452978,122846 -k1,20262:23744035,34476831:3277 -h1,20262:27967854,34476831:0,411205,112570 -) -k1,20262:28533975,34476831:389174 -(1,20262:28533975,34476831:0,452978,122846 -r1,20273:32409359,34476831:3875384,575824,122846 -k1,20262:28533975,34476831:-3875384 -) -(1,20262:28533975,34476831:3875384,452978,122846 -k1,20262:28533975,34476831:3277 -h1,20262:32406082,34476831:0,411205,112570 -) -k1,20263:32583029,34476831:0 -) -(1,20263:6630773,35318319:25952256,513147,126483 -(1,20262:6630773,35318319:0,452978,122846 -r1,20273:10857869,35318319:4227096,575824,122846 -k1,20262:6630773,35318319:-4227096 -) -(1,20262:6630773,35318319:4227096,452978,122846 -k1,20262:6630773,35318319:3277 -h1,20262:10854592,35318319:0,411205,112570 -) -k1,20262:11261236,35318319:403367 -k1,20262:13167999,35318319:403367 -(1,20262:13167999,35318319:0,452978,115847 -r1,20273:14581400,35318319:1413401,568825,115847 -k1,20262:13167999,35318319:-1413401 -) -(1,20262:13167999,35318319:1413401,452978,115847 -k1,20262:13167999,35318319:3277 -h1,20262:14578123,35318319:0,411205,112570 -) -k1,20262:14984767,35318319:403367 -k1,20262:16074296,35318319:403367 -k1,20262:19490353,35318319:403367 -k1,20262:20521555,35318319:403367 -k1,20262:21944007,35318319:403367 -k1,20262:23714455,35318319:403367 -k1,20262:24784978,35318319:403367 -(1,20262:24784978,35318319:0,452978,122846 -r1,20273:28308650,35318319:3523672,575824,122846 -k1,20262:24784978,35318319:-3523672 -) -(1,20262:24784978,35318319:3523672,452978,122846 -k1,20262:24784978,35318319:3277 -h1,20262:28305373,35318319:0,411205,112570 -) -k1,20262:28885687,35318319:403367 -(1,20262:28885687,35318319:0,452978,122846 -r1,20273:32409359,35318319:3523672,575824,122846 -k1,20262:28885687,35318319:-3523672 -) -(1,20262:28885687,35318319:3523672,452978,122846 -k1,20262:28885687,35318319:3277 -h1,20262:32406082,35318319:0,411205,112570 -) -k1,20263:32583029,35318319:0 -) -(1,20263:6630773,36159807:25952256,505283,134348 -(1,20262:6630773,36159807:0,452978,122846 -r1,20273:10506157,36159807:3875384,575824,122846 -k1,20262:6630773,36159807:-3875384 -) -(1,20262:6630773,36159807:3875384,452978,122846 -k1,20262:6630773,36159807:3277 -h1,20262:10502880,36159807:0,411205,112570 -) -k1,20262:10763115,36159807:256958 -k1,20262:12211518,36159807:256958 -k1,20262:13234592,36159807:256958 -k1,20262:15193520,36159807:256958 -k1,20262:18613901,36159807:256958 -k1,20262:21740024,36159807:256957 -k1,20262:24904814,36159807:256958 -k1,20262:25923300,36159807:256958 -k1,20262:27852737,36159807:256958 -(1,20262:27852737,36159807:0,452978,115847 -r1,20273:29266138,36159807:1413401,568825,115847 -k1,20262:27852737,36159807:-1413401 -) -(1,20262:27852737,36159807:1413401,452978,115847 -k1,20262:27852737,36159807:3277 -h1,20262:29262861,36159807:0,411205,112570 -) -k1,20262:29523096,36159807:256958 -k1,20262:30311551,36159807:256958 -k1,20262:32583029,36159807:0 -) -(1,20263:6630773,37001295:25952256,513147,126483 -k1,20262:7627255,37001295:234954 -k1,20262:9558935,37001295:234953 -k1,20262:11933640,37001295:234954 -k1,20262:13841072,37001295:234953 -k1,20262:14703861,37001295:234954 -k1,20262:16323590,37001295:234953 -k1,20262:18260514,37001295:234954 -k1,20262:21670031,37001295:234953 -k1,20262:24196779,37001295:234954 -k1,20262:25379383,37001295:234953 -k1,20262:27113145,37001295:234954 -k1,20262:28841664,37001295:234953 -k1,20262:29762780,37001295:234954 -(1,20262:29762780,37001295:0,452978,115847 -r1,20273:32583029,37001295:2820249,568825,115847 -k1,20262:29762780,37001295:-2820249 -) -(1,20262:29762780,37001295:2820249,452978,115847 -k1,20262:29762780,37001295:3277 -h1,20262:32579752,37001295:0,411205,112570 -) -k1,20262:32583029,37001295:0 -) -(1,20263:6630773,37842783:25952256,505283,126483 -g1,20262:8115818,37842783 -g1,20262:10078621,37842783 -g1,20262:10929278,37842783 -g1,20262:12825234,37842783 -k1,20263:32583028,37842783:17114072 -g1,20263:32583028,37842783 -) -(1,20266:6630773,38684271:25952256,513147,134348 -h1,20264:6630773,38684271:983040,0,0 -k1,20264:9665087,38684271:268039 -k1,20264:11668519,38684271:268039 -(1,20264:11668519,38684271:0,452978,115847 -r1,20273:13081920,38684271:1413401,568825,115847 -k1,20264:11668519,38684271:-1413401 -) -(1,20264:11668519,38684271:1413401,452978,115847 -k1,20264:11668519,38684271:3277 -h1,20264:13078643,38684271:0,411205,112570 -) -k1,20264:13349959,38684271:268039 -k1,20264:15694179,38684271:268039 -(1,20264:15694179,38684271:0,452978,115847 -r1,20273:17811004,38684271:2116825,568825,115847 -k1,20264:15694179,38684271:-2116825 -) -(1,20264:15694179,38684271:2116825,452978,115847 -k1,20264:15694179,38684271:3277 -h1,20264:17807727,38684271:0,411205,112570 -) -k1,20264:18079043,38684271:268039 -k1,20264:19538527,38684271:268039 -(1,20264:19538527,38684271:0,452978,115847 -r1,20273:21655352,38684271:2116825,568825,115847 -k1,20264:19538527,38684271:-2116825 -) -(1,20264:19538527,38684271:2116825,452978,115847 -k1,20264:19538527,38684271:3277 -h1,20264:21652075,38684271:0,411205,112570 -) -k1,20264:21923390,38684271:268038 -k1,20264:23970731,38684271:268039 -k1,20264:25257855,38684271:268039 -k1,20264:26626899,38684271:268039 -k1,20264:27577823,38684271:268039 -(1,20264:27577823,38684271:0,452978,122846 -r1,20273:29342936,38684271:1765113,575824,122846 -k1,20264:27577823,38684271:-1765113 -) -(1,20264:27577823,38684271:1765113,452978,122846 -k1,20264:27577823,38684271:3277 -h1,20264:29339659,38684271:0,411205,112570 -) -k1,20264:29784645,38684271:268039 -k1,20264:30680519,38684271:268039 -k1,20264:32583029,38684271:0 -) -(1,20266:6630773,39525759:25952256,505283,134348 -k1,20264:8109243,39525759:193964 -k1,20264:10923336,39525759:193964 -k1,20264:11473160,39525759:193964 -k1,20264:12768129,39525759:193964 -k1,20264:15389547,39525759:193964 -(1,20264:15389547,39525759:0,452978,122846 -r1,20273:20320067,39525759:4930520,575824,122846 -k1,20264:15389547,39525759:-4930520 -) -(1,20264:15389547,39525759:4930520,452978,122846 -g1,20264:17503095,39525759 -g1,20264:18206519,39525759 -h1,20264:20316790,39525759:0,411205,112570 -) -k1,20264:20514031,39525759:193964 -k1,20264:23393005,39525759:193964 -k1,20264:24606054,39525759:193964 -k1,20264:25901023,39525759:193964 -k1,20264:30718552,39525759:193964 -k1,20264:31563944,39525759:193964 -k1,20264:32583029,39525759:0 -) -(1,20266:6630773,40367247:25952256,505283,7863 -g1,20264:8575881,40367247 -k1,20266:32583029,40367247:24007148 -g1,20266:32583029,40367247 -) -(1,20267:6630773,42458507:25952256,564462,12975 -(1,20267:6630773,42458507:2450326,534184,12975 -g1,20267:6630773,42458507 -g1,20267:9081099,42458507 -) -g1,20267:11275507,42458507 -g1,20267:12842735,42458507 -k1,20267:32583028,42458507:18787268 -g1,20267:32583028,42458507 -) -(1,20272:6630773,43693211:25952256,513147,126483 -k1,20271:8471445,43693211:224554 -k1,20271:9887445,43693211:224555 -k1,20271:10952826,43693211:224554 -k1,20271:13079890,43693211:224554 -k1,20271:14296005,43693211:224555 -k1,20271:16896239,43693211:224554 -k1,20271:18192963,43693211:224555 -k1,20271:19797705,43693211:224554 -k1,20271:21801561,43693211:224554 -k1,20271:24788459,43693211:224555 -k1,20271:27882179,43693211:224554 -k1,20271:28766025,43693211:224554 -k1,20271:30009665,43693211:224555 -k1,20271:31685186,43693211:224554 -k1,20271:32583029,43693211:0 -) -(1,20272:6630773,44534699:25952256,505283,126483 -k1,20271:8778219,44534699:282947 -k1,20271:11930332,44534699:282947 -k1,20271:12829316,44534699:282946 -k1,20271:13468123,44534699:282947 -k1,20271:15028367,44534699:282947 -k1,20271:16814710,44534699:282947 -k1,20271:18116741,44534699:282946 -(1,20271:18116741,44534699:0,452978,115847 -r1,20273:19881854,44534699:1765113,568825,115847 -k1,20271:18116741,44534699:-1765113 -) -(1,20271:18116741,44534699:1765113,452978,115847 -k1,20271:18116741,44534699:3277 -h1,20271:19878577,44534699:0,411205,112570 -) -k1,20271:20164801,44534699:282947 -k1,20271:23374585,44534699:282947 -k1,20271:24729701,44534699:282947 -k1,20271:26388249,44534699:282947 -k1,20271:29540361,44534699:282946 -k1,20271:31107814,44534699:282947 -k1,20271:32583029,44534699:0 -) -(1,20272:6630773,45376187:25952256,505283,134348 -k1,20271:7658678,45376187:257202 -k1,20271:9582461,45376187:257202 -k1,20271:11860138,45376187:257202 -k1,20271:13308785,45376187:257202 -k1,20271:13921847,45376187:257202 -k1,20271:17403420,45376187:257202 -k1,20271:19164019,45376187:257203 -k1,20271:20887917,45376187:257202 -(1,20271:20887917,45376187:0,452978,115847 -r1,20273:22653030,45376187:1765113,568825,115847 -k1,20271:20887917,45376187:-1765113 -) -(1,20271:20887917,45376187:1765113,452978,115847 -k1,20271:20887917,45376187:3277 -h1,20271:22649753,45376187:0,411205,112570 -) -k1,20271:22910232,45376187:257202 -k1,20271:24358879,45376187:257202 -(1,20271:24358879,45376187:0,459977,115847 -r1,20273:25772280,45376187:1413401,575824,115847 -k1,20271:24358879,45376187:-1413401 -) -(1,20271:24358879,45376187:1413401,459977,115847 -k1,20271:24358879,45376187:3277 -h1,20271:25769003,45376187:0,411205,112570 -) -k1,20271:26029482,45376187:257202 -k1,20271:29501880,45376187:257202 -k1,20271:31591469,45376187:257202 -k1,20271:32583029,45376187:0 -) -] -(1,20273:32583029,45706769:0,0,0 -g1,20273:32583029,45706769 -) -) -] -(1,20273:6630773,47279633:25952256,0,0 -h1,20273:6630773,47279633:25952256,0,0 -) -] -(1,20273:4262630,4025873:0,0,0 -[1,20273:-473656,4025873:0,0,0 -(1,20273:-473656,-710413:0,0,0 -(1,20273:-473656,-710413:0,0,0 -g1,20273:-473656,-710413 -) -g1,20273:-473656,-710413 -) -] -) -] -!25593 -}364 -Input:3303:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3304:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3305:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3306:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3307:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3308:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3309:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3310:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3311:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3312:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!952 -{365 -[1,20352:4262630,47279633:28320399,43253760,0 -(1,20352:4262630,4025873:0,0,0 -[1,20352:-473656,4025873:0,0,0 -(1,20352:-473656,-710413:0,0,0 -(1,20352:-473656,-644877:0,0,0 -k1,20352:-473656,-644877:-65536 ) -(1,20352:-473656,4736287:0,0,0 -k1,20352:-473656,4736287:5209943 +] +[1,20311:3078558,4812305:0,0,0 +(1,20311:3078558,2439708:0,1703936,0 +g1,20311:29030814,2439708 +g1,20311:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,20311:36151628,1915420:16384,1179648,0 ) -g1,20352:-473656,-710413 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -[1,20352:6630773,47279633:25952256,43253760,0 -[1,20352:6630773,4812305:25952256,786432,0 -(1,20352:6630773,4812305:25952256,513147,126483 -(1,20352:6630773,4812305:25952256,513147,126483 -g1,20352:3078558,4812305 -[1,20352:3078558,4812305:0,0,0 -(1,20352:3078558,2439708:0,1703936,0 -k1,20352:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,20352:2537886,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,20311:37855564,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,20352:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,20311:3078556,2439708:-34777008 ) ] +[1,20311:3078558,4812305:0,0,0 +(1,20311:3078558,49800853:0,16384,2228224 +k1,20311:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,20311:2537886,49800853:1179648,16384,0 ) +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,20311:3078558,51504789:16384,1179648,0 ) -) -] -[1,20352:3078558,4812305:0,0,0 -(1,20352:3078558,2439708:0,1703936,0 -g1,20352:29030814,2439708 -g1,20352:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,20352:36151628,1915420:16384,1179648,0 -) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,20352:37855564,2439708:1179648,16384,0 ) ) -k1,20352:3078556,2439708:-34777008 -) ] -[1,20352:3078558,4812305:0,0,0 -(1,20352:3078558,49800853:0,16384,2228224 -k1,20352:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,20352:2537886,49800853:1179648,16384,0 -) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,20352:3078558,51504789:16384,1179648,0 +[1,20311:3078558,4812305:0,0,0 +(1,20311:3078558,49800853:0,16384,2228224 +g1,20311:29030814,49800853 +g1,20311:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,20311:36151628,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] ) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,20311:37855564,49800853:1179648,16384,0 ) ) +k1,20311:3078556,49800853:-34777008 +) ] -[1,20352:3078558,4812305:0,0,0 -(1,20352:3078558,49800853:0,16384,2228224 -g1,20352:29030814,49800853 -g1,20352:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,20352:36151628,51504789:16384,1179648,0 +g1,20311:6630773,4812305 +g1,20311:6630773,4812305 +g1,20311:8724648,4812305 +k1,20311:31387652,4812305:22663004 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 ) ] +[1,20311:6630773,45706769:25952256,40108032,0 +(1,20311:6630773,45706769:25952256,40108032,0 +(1,20311:6630773,45706769:0,0,0 +g1,20311:6630773,45706769 ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,20352:37855564,49800853:1179648,16384,0 +[1,20311:6630773,45706769:25952256,40108032,0 +(1,20234:6630773,6254097:25952256,513147,7863 +(1,20234:6630773,6254097:0,0,0 +g1,20234:6630773,6254097 ) +g1,20234:11151446,6254097 +k1,20234:32583030,6254097:19444532 +g1,20234:32583030,6254097 +) +(1,20237:6630773,7512393:25952256,513147,126483 +k1,20236:8173387,7512393:345927 +k1,20236:10784893,7512393:345926 +k1,20236:13033330,7512393:345927 +k1,20236:14892483,7512393:345927 +k1,20236:15999937,7512393:345926 +k1,20236:17364949,7512393:345927 +(1,20236:17364949,7512393:0,414482,115847 +r1,20311:17723215,7512393:358266,530329,115847 +k1,20236:17364949,7512393:-358266 +) +(1,20236:17364949,7512393:358266,414482,115847 +k1,20236:17364949,7512393:3277 +h1,20236:17719938,7512393:0,411205,112570 +) +k1,20236:18069141,7512393:345926 +k1,20236:19606513,7512393:345927 +(1,20236:19606513,7512393:0,414482,115847 +r1,20311:19964779,7512393:358266,530329,115847 +k1,20236:19606513,7512393:-358266 +) +(1,20236:19606513,7512393:358266,414482,115847 +k1,20236:19606513,7512393:3277 +h1,20236:19961502,7512393:0,411205,112570 +) +k1,20236:20310706,7512393:345927 +k1,20236:24004866,7512393:345926 +(1,20236:24004866,7512393:0,452978,115847 +r1,20311:31045657,7512393:7040791,568825,115847 +k1,20236:24004866,7512393:-7040791 +) +(1,20236:24004866,7512393:7040791,452978,115847 +k1,20236:24004866,7512393:3277 +h1,20236:31042380,7512393:0,411205,112570 +) +k1,20236:31391584,7512393:345927 +k1,20237:32583029,7512393:0 +) +(1,20237:6630773,8377473:25952256,513147,134348 +(1,20236:6630773,8377473:0,452978,115847 +r1,20311:13671564,8377473:7040791,568825,115847 +k1,20236:6630773,8377473:-7040791 +) +(1,20236:6630773,8377473:7040791,452978,115847 +k1,20236:6630773,8377473:3277 +h1,20236:13668287,8377473:0,411205,112570 +) +k1,20236:14013138,8377473:167904 +k1,20236:16229042,8377473:167904 +k1,20236:16752806,8377473:167904 +k1,20236:21275576,8377473:167903 +k1,20236:26280692,8377473:167904 +k1,20236:29144092,8377473:167904 +k1,20236:29998158,8377473:167904 +k1,20236:30936765,8377473:167904 +k1,20237:32583029,8377473:0 +) +(1,20237:6630773,9242553:25952256,513147,126483 +k1,20236:8430192,9242553:160364 +k1,20236:9241983,9242553:160363 +(1,20236:9241983,9242553:0,414482,115847 +r1,20311:11007096,9242553:1765113,530329,115847 +k1,20236:9241983,9242553:-1765113 +) +(1,20236:9241983,9242553:1765113,414482,115847 +k1,20236:9241983,9242553:3277 +h1,20236:11003819,9242553:0,411205,112570 +) +k1,20236:11167460,9242553:160364 +k1,20236:12721775,9242553:160364 +k1,20236:15147718,9242553:160363 +k1,20236:18450533,9242553:160364 +k1,20236:19179093,9242553:160363 +k1,20236:22399988,9242553:160364 +k1,20236:23576815,9242553:160364 +k1,20236:28955155,9242553:160363 +k1,20236:29743354,9242553:160364 +k1,20236:32583029,9242553:0 +) +(1,20237:6630773,10107633:25952256,513147,126483 +g1,20236:8484786,10107633 +g1,20236:9675575,10107633 +g1,20236:13312823,10107633 +g1,20236:17418653,10107633 +g1,20236:19190091,10107633 +g1,20236:22415117,10107633 +g1,20236:23561997,10107633 +(1,20236:23561997,10107633:0,452978,122846 +r1,20311:25327110,10107633:1765113,575824,122846 +k1,20236:23561997,10107633:-1765113 +) +(1,20236:23561997,10107633:1765113,452978,122846 +k1,20236:23561997,10107633:3277 +h1,20236:25323833,10107633:0,411205,112570 +) +g1,20236:25700009,10107633 +(1,20236:25700009,10107633:0,414482,115847 +r1,20311:27113410,10107633:1413401,530329,115847 +k1,20236:25700009,10107633:-1413401 +) +(1,20236:25700009,10107633:1413401,414482,115847 +k1,20236:25700009,10107633:3277 +h1,20236:27110133,10107633:0,411205,112570 +) +g1,20236:27312639,10107633 +g1,20236:28703313,10107633 +(1,20236:28703313,10107633:0,414482,115847 +r1,20311:31171850,10107633:2468537,530329,115847 +k1,20236:28703313,10107633:-2468537 +) +(1,20236:28703313,10107633:2468537,414482,115847 +k1,20236:28703313,10107633:3277 +h1,20236:31168573,10107633:0,411205,112570 +) +k1,20237:32583029,10107633:1237509 +g1,20237:32583029,10107633 +) +v1,20239:6630773,10972713:0,393216,0 +(1,20240:6630773,13198398:25952256,2618901,0 +g1,20240:6630773,13198398 +g1,20240:6237557,13198398 +r1,20311:6368629,13198398:131072,2618901,0 +g1,20240:6567858,13198398 +g1,20240:6764466,13198398 +[1,20240:6764466,13198398:25818563,2618901,0 +(1,20240:6764466,11333890:25818563,754393,260573 +(1,20239:6764466,11333890:0,754393,260573 +r1,20311:8010564,11333890:1246098,1014966,260573 +k1,20239:6764466,11333890:-1246098 +) +(1,20239:6764466,11333890:1246098,754393,260573 +) +k1,20239:8530446,11333890:519882 +k1,20239:8858126,11333890:327680 +k1,20239:11604921,11333890:519882 +k1,20239:12776232,11333890:519883 +k1,20239:14315199,11333890:519882 +k1,20239:16812958,11333890:519882 +k1,20239:20358637,11333890:519882 +k1,20239:21545676,11333890:519883 +k1,20239:22654071,11333890:519882 +k1,20239:24193038,11333890:519882 +k1,20239:26450935,11333890:519882 +k1,20239:27630110,11333890:519883 +k1,20239:29169077,11333890:519882 +k1,20239:31591469,11333890:519882 +k1,20240:32583029,11333890:0 +) +(1,20240:6764466,12198970:25818563,505283,122846 +(1,20239:6764466,12198970:0,452978,122846 +r1,20311:12046697,12198970:5282231,575824,122846 +k1,20239:6764466,12198970:-5282231 +) +(1,20239:6764466,12198970:5282231,452978,122846 +k1,20239:6764466,12198970:3277 +h1,20239:12043420,12198970:0,411205,112570 +) +k1,20239:12341134,12198970:294437 +k1,20239:13827017,12198970:294438 +(1,20239:13827017,12198970:0,452978,122846 +r1,20311:19109248,12198970:5282231,575824,122846 +k1,20239:13827017,12198970:-5282231 +) +(1,20239:13827017,12198970:5282231,452978,122846 +k1,20239:13827017,12198970:3277 +h1,20239:19105971,12198970:0,411205,112570 +) +k1,20239:19403685,12198970:294437 +k1,20239:21649784,12198970:294437 +k1,20239:23386668,12198970:294437 +(1,20239:23386668,12198970:0,452978,122846 +r1,20311:27965476,12198970:4578808,575824,122846 +k1,20239:23386668,12198970:-4578808 +) +(1,20239:23386668,12198970:4578808,452978,122846 +k1,20239:23386668,12198970:3277 +h1,20239:27962199,12198970:0,411205,112570 +) +k1,20239:28259914,12198970:294438 +k1,20239:31084041,12198970:294437 +k1,20239:31994516,12198970:294437 +k1,20239:32583029,12198970:0 +) +(1,20240:6764466,13064050:25818563,513147,134348 +g1,20239:7982780,13064050 +g1,20239:10877505,13064050 +(1,20239:10877505,13064050:0,452978,122846 +r1,20311:11939194,13064050:1061689,575824,122846 +k1,20239:10877505,13064050:-1061689 +) +(1,20239:10877505,13064050:1061689,452978,122846 +k1,20239:10877505,13064050:3277 +h1,20239:11935917,13064050:0,411205,112570 +) +g1,20239:12138423,13064050 +g1,20239:14678598,13064050 +g1,20239:15896912,13064050 +g1,20239:18387935,13064050 +k1,20240:32583029,13064050:10910430 +g1,20240:32583029,13064050 +) +] +g1,20240:32583029,13198398 +) +h1,20240:6630773,13198398:0,0,0 +(1,20243:6630773,14063478:25952256,513147,115847 +h1,20242:6630773,14063478:983040,0,0 +g1,20242:8766591,14063478 +g1,20242:10070102,14063478 +g1,20242:11361816,14063478 +(1,20242:11361816,14063478:0,452978,115847 +r1,20311:17347471,14063478:5985655,568825,115847 +k1,20242:11361816,14063478:-5985655 +) +(1,20242:11361816,14063478:5985655,452978,115847 +k1,20242:11361816,14063478:3277 +h1,20242:17344194,14063478:0,411205,112570 +) +g1,20242:17546700,14063478 +g1,20242:18397357,14063478 +g1,20242:20902798,14063478 +g1,20242:22121112,14063478 +g1,20242:25179021,14063478 +g1,20242:26037542,14063478 +g1,20242:26592631,14063478 +g1,20242:30362261,14063478 +k1,20243:32583029,14063478:474889 +g1,20243:32583029,14063478 +) +v1,20245:6630773,14748333:0,393216,0 +(1,20251:6630773,16432302:25952256,2077185,196608 +g1,20251:6630773,16432302 +g1,20251:6630773,16432302 +g1,20251:6434165,16432302 +(1,20251:6434165,16432302:0,2077185,196608 +r1,20311:32779637,16432302:26345472,2273793,196608 +k1,20251:6434165,16432302:-26345472 +) +(1,20251:6434165,16432302:26345472,2077185,196608 +[1,20251:6630773,16432302:25952256,1880577,0 +(1,20247:6630773,14982770:25952256,431045,112852 +(1,20246:6630773,14982770:0,0,0 +g1,20246:6630773,14982770 +g1,20246:6630773,14982770 +g1,20246:6303093,14982770 +(1,20246:6303093,14982770:0,0,0 +) +g1,20246:6630773,14982770 +) +k1,20247:6630773,14982770:0 +g1,20247:12937898,14982770 +g1,20247:15261576,14982770 +g1,20247:16589392,14982770 +h1,20247:16921346,14982770:0,0,0 +k1,20247:32583029,14982770:15661683 +g1,20247:32583029,14982770 +) +(1,20248:6630773,15667625:25952256,424439,112852 +h1,20248:6630773,15667625:0,0,0 +g1,20248:6962727,15667625 +g1,20248:7294681,15667625 +g1,20248:11610082,15667625 +h1,20248:11942036,15667625:0,0,0 +k1,20248:32583028,15667625:20640992 +g1,20248:32583028,15667625 +) +(1,20249:6630773,16352480:25952256,424439,79822 +h1,20249:6630773,16352480:0,0,0 +g1,20249:6962727,16352480 +g1,20249:7294681,16352480 +k1,20249:7294681,16352480:0 +h1,20249:12937898,16352480:0,0,0 +k1,20249:32583030,16352480:19645132 +g1,20249:32583030,16352480 +) +] +) +g1,20251:32583029,16432302 +g1,20251:6630773,16432302 +g1,20251:6630773,16432302 +g1,20251:32583029,16432302 +g1,20251:32583029,16432302 +) +h1,20251:6630773,16628910:0,0,0 +(1,20254:6630773,27204935:25952256,10510489,0 +k1,20254:12599879,27204935:5969106 +h1,20253:12599879,27204935:0,0,0 +(1,20253:12599879,27204935:14014044,10510489,0 +(1,20253:12599879,27204935:14014019,10510515,0 +(1,20253:12599879,27204935:14014019,10510515,0 +(1,20253:12599879,27204935:0,10510515,0 +(1,20253:12599879,27204935:0,14208860,0 +(1,20253:12599879,27204935:18945146,14208860,0 +) +k1,20253:12599879,27204935:-18945146 +) +) +g1,20253:26613898,27204935 +) +) +) +g1,20254:26613923,27204935 +k1,20254:32583029,27204935:5969106 +) +(1,20261:6630773,28070015:25952256,513147,134348 +h1,20260:6630773,28070015:983040,0,0 +k1,20260:9193157,28070015:195224 +k1,20260:12629792,28070015:195224 +k1,20260:15120088,28070015:195225 +k1,20260:16334397,28070015:195224 +k1,20260:18964939,28070015:195224 +k1,20260:21170808,28070015:195224 +k1,20260:23408790,28070015:195225 +k1,20260:26357837,28070015:195224 +k1,20260:27572146,28070015:195224 +k1,20260:32583029,28070015:0 +) +(1,20261:6630773,28935095:25952256,505283,134348 +k1,20260:7984727,28935095:157267 +(1,20260:7984727,28935095:0,452978,115847 +r1,20311:10804976,28935095:2820249,568825,115847 +k1,20260:7984727,28935095:-2820249 +) +(1,20260:7984727,28935095:2820249,452978,115847 +k1,20260:7984727,28935095:3277 +h1,20260:10801699,28935095:0,411205,112570 +) +k1,20260:10962244,28935095:157268 +k1,20260:12649777,28935095:157267 +k1,20260:13458473,28935095:157268 +k1,20260:14363506,28935095:157267 +k1,20260:16215535,28935095:157268 +k1,20260:16988840,28935095:157267 +k1,20260:18165192,28935095:157267 +k1,20260:20757778,28935095:157268 +k1,20260:22487254,28935095:157267 +k1,20260:23330684,28935095:157268 +k1,20260:24940229,28935095:157267 +k1,20260:26051046,28935095:157268 +k1,20260:27300798,28935095:157267 +(1,20260:27300798,28935095:0,452978,122846 +r1,20311:32583029,28935095:5282231,575824,122846 +k1,20260:27300798,28935095:-5282231 +) +(1,20260:27300798,28935095:5282231,452978,122846 +k1,20260:27300798,28935095:3277 +h1,20260:32579752,28935095:0,411205,112570 +) +k1,20260:32583029,28935095:0 +) +(1,20261:6630773,29800175:25952256,513147,165547 +g1,20260:7481430,29800175 +g1,20260:9444233,29800175 +g1,20260:9999322,29800175 +$1,20260:9999322,29800175 +(1,20260:9999322,29800175:973866,505283,134349 +) +(1,20260:10973188,29957464:590610,339935,8258 +) +$1,20260:11563798,29800175 +g1,20260:11763027,29800175 +g1,20260:16799468,29800175 +g1,20260:17650125,29800175 +g1,20260:18868439,29800175 +$1,20260:18868439,29800175 +$1,20260:19420252,29800175 +g1,20260:19619481,29800175 +k1,20261:32583029,29800175:10779233 +g1,20261:32583029,29800175 +) +v1,20263:6630773,30485030:0,393216,0 +(1,20267:6630773,30825713:25952256,733899,196608 +g1,20267:6630773,30825713 +g1,20267:6630773,30825713 +g1,20267:6434165,30825713 +(1,20267:6434165,30825713:0,733899,196608 +r1,20311:32779637,30825713:26345472,930507,196608 +k1,20267:6434165,30825713:-26345472 +) +(1,20267:6434165,30825713:26345472,733899,196608 +[1,20267:6630773,30825713:25952256,537291,0 +(1,20265:6630773,30712861:25952256,424439,112852 +(1,20264:6630773,30712861:0,0,0 +g1,20264:6630773,30712861 +g1,20264:6630773,30712861 +g1,20264:6303093,30712861 +(1,20264:6303093,30712861:0,0,0 +) +g1,20264:6630773,30712861 +) +g1,20265:6962727,30712861 +g1,20265:7294681,30712861 +k1,20265:7294681,30712861:0 +h1,20265:19576978,30712861:0,0,0 +k1,20265:32583029,30712861:13006051 +g1,20265:32583029,30712861 +) +] +) +g1,20267:32583029,30825713 +g1,20267:6630773,30825713 +g1,20267:6630773,30825713 +g1,20267:32583029,30825713 +g1,20267:32583029,30825713 +) +h1,20267:6630773,31022321:0,0,0 +(1,20271:6630773,31887401:25952256,513147,134348 +h1,20270:6630773,31887401:983040,0,0 +k1,20270:9605603,31887401:200036 +k1,20270:10161499,31887401:200036 +k1,20270:15198747,31887401:200036 +k1,20270:16014821,31887401:200036 +k1,20270:16570717,31887401:200036 +k1,20270:18342962,31887401:200036 +k1,20270:19074496,31887401:200037 +k1,20270:20340803,31887401:200036 +k1,20270:23845820,31887401:200036 +k1,20270:24697284,31887401:200036 +k1,20270:27651143,31887401:200036 +k1,20270:28870264,31887401:200036 +k1,20270:30723773,31887401:200036 +k1,20271:32583029,31887401:0 +) +(1,20271:6630773,32752481:25952256,513147,138281 +k1,20270:10106103,32752481:284382 +k1,20270:11199856,32752481:284383 +k1,20270:12503323,32752481:284382 +k1,20270:13583313,32752481:284383 +k1,20270:15565733,32752481:284382 +k1,20270:18657678,32752481:284383 +k1,20270:19297920,32752481:284382 +k1,20270:22093643,32752481:284383 +k1,20270:23029453,32752481:284382 +k1,20270:24332921,32752481:284383 +$1,20270:24332921,32752481 +$1,20270:24835582,32752481 +k1,20270:25119964,32752481:284382 +k1,20270:26294326,32752481:284383 +$1,20270:26294326,32752481 +$1,20270:26846139,32752481 +k1,20270:27337615,32752481:284382 +k1,20270:30409244,32752481:284383 +k1,20270:31379788,32752481:284382 +k1,20270:32583029,32752481:0 +) +(1,20271:6630773,33617561:25952256,513147,126483 +g1,20270:9003176,33617561 +g1,20270:9818443,33617561 +g1,20270:13259083,33617561 +g1,20270:16655814,33617561 +g1,20270:17471081,33617561 +g1,20270:21652277,33617561 +k1,20271:32583029,33617561:8746437 +g1,20271:32583029,33617561 +) +v1,20273:6630773,34302416:0,393216,0 +(1,20278:6630773,35334560:25952256,1425360,196608 +g1,20278:6630773,35334560 +g1,20278:6630773,35334560 +g1,20278:6434165,35334560 +(1,20278:6434165,35334560:0,1425360,196608 +r1,20311:32779637,35334560:26345472,1621968,196608 +k1,20278:6434165,35334560:-26345472 +) +(1,20278:6434165,35334560:26345472,1425360,196608 +[1,20278:6630773,35334560:25952256,1228752,0 +(1,20275:6630773,34536853:25952256,431045,112852 +(1,20274:6630773,34536853:0,0,0 +g1,20274:6630773,34536853 +g1,20274:6630773,34536853 +g1,20274:6303093,34536853 +(1,20274:6303093,34536853:0,0,0 +) +g1,20274:6630773,34536853 +) +k1,20275:6630773,34536853:0 +g1,20275:12937898,34536853 +g1,20275:15261576,34536853 +g1,20275:18913070,34536853 +h1,20275:19245024,34536853:0,0,0 +k1,20275:32583029,34536853:13338005 +g1,20275:32583029,34536853 +) +(1,20276:6630773,35221708:25952256,424439,112852 +h1,20276:6630773,35221708:0,0,0 +g1,20276:6962727,35221708 +g1,20276:7294681,35221708 +k1,20276:7294681,35221708:0 +h1,20276:11278128,35221708:0,0,0 +k1,20276:32583028,35221708:21304900 +g1,20276:32583028,35221708 +) +] +) +g1,20278:32583029,35334560 +g1,20278:6630773,35334560 +g1,20278:6630773,35334560 +g1,20278:32583029,35334560 +g1,20278:32583029,35334560 +) +h1,20278:6630773,35531168:0,0,0 +(1,20282:6630773,36396248:25952256,513147,134348 +h1,20281:6630773,36396248:983040,0,0 +k1,20281:8807526,36396248:240164 +k1,20281:10708373,36396248:240165 +k1,20281:12332657,36396248:240164 +k1,20281:13903203,36396248:240165 +k1,20281:14794795,36396248:240164 +k1,20281:17293985,36396248:240164 +k1,20281:17890010,36396248:240165 +k1,20281:22967386,36396248:240164 +k1,20281:23858978,36396248:240164 +k1,20281:24455003,36396248:240165 +k1,20281:28265568,36396248:240164 +k1,20281:30251612,36396248:240165 +k1,20281:32227169,36396248:240164 +k1,20281:32583029,36396248:0 +) +(1,20282:6630773,37261328:25952256,513147,134348 +g1,20281:10268021,37261328 +g1,20281:15904772,37261328 +k1,20282:32583029,37261328:14545060 +g1,20282:32583029,37261328 +) +v1,20284:6630773,37946183:0,393216,0 +(1,20288:6630773,38280260:25952256,727293,196608 +g1,20288:6630773,38280260 +g1,20288:6630773,38280260 +g1,20288:6434165,38280260 +(1,20288:6434165,38280260:0,727293,196608 +r1,20311:32779637,38280260:26345472,923901,196608 +k1,20288:6434165,38280260:-26345472 +) +(1,20288:6434165,38280260:26345472,727293,196608 +[1,20288:6630773,38280260:25952256,530685,0 +(1,20286:6630773,38174014:25952256,424439,106246 +(1,20285:6630773,38174014:0,0,0 +g1,20285:6630773,38174014 +g1,20285:6630773,38174014 +g1,20285:6303093,38174014 +(1,20285:6303093,38174014:0,0,0 +) +g1,20285:6630773,38174014 +) +g1,20286:6962727,38174014 +g1,20286:7294681,38174014 +g1,20286:15593530,38174014 +g1,20286:16257438,38174014 +h1,20286:20572839,38174014:0,0,0 +k1,20286:32583029,38174014:12010190 +g1,20286:32583029,38174014 +) +] +) +g1,20288:32583029,38280260 +g1,20288:6630773,38280260 +g1,20288:6630773,38280260 +g1,20288:32583029,38280260 +g1,20288:32583029,38280260 +) +h1,20288:6630773,38476868:0,0,0 +(1,20292:6630773,39341948:25952256,505283,134348 +h1,20291:6630773,39341948:983040,0,0 +k1,20291:10202903,39341948:219963 +k1,20291:13864160,39341948:219962 +k1,20291:15075683,39341948:219963 +k1,20291:18504943,39341948:219962 +k1,20291:19340944,39341948:219963 +k1,20291:21810757,39341948:219962 +k1,20291:24585313,39341948:219963 +k1,20291:25491437,39341948:219962 +k1,20291:26730485,39341948:219963 +k1,20291:28648485,39341948:219962 +k1,20291:31157621,39341948:219963 +k1,20291:32583029,39341948:0 +) +(1,20292:6630773,40207028:25952256,505283,134348 +g1,20291:8440222,40207028 +g1,20291:9658536,40207028 +g1,20291:12217061,40207028 +g1,20291:14666141,40207028 +g1,20291:16287501,40207028 +g1,20291:17440279,40207028 +g1,20291:19300190,40207028 +g1,20291:20702660,40207028 +g1,20291:22295840,40207028 +g1,20291:23514154,40207028 +(1,20291:23514154,40207028:0,414482,122846 +r1,20311:25630979,40207028:2116825,537328,122846 +k1,20291:23514154,40207028:-2116825 +) +(1,20291:23514154,40207028:2116825,414482,122846 +k1,20291:23514154,40207028:3277 +h1,20291:25627702,40207028:0,411205,112570 +) +g1,20291:25830208,40207028 +g1,20291:27418800,40207028 +k1,20292:32583029,40207028:4056015 +g1,20292:32583029,40207028 +) +v1,20294:6630773,40891883:0,393216,0 +(1,20302:6630773,43971986:25952256,3473319,196608 +g1,20302:6630773,43971986 +g1,20302:6630773,43971986 +g1,20302:6434165,43971986 +(1,20302:6434165,43971986:0,3473319,196608 +r1,20311:32779637,43971986:26345472,3669927,196608 +k1,20302:6434165,43971986:-26345472 +) +(1,20302:6434165,43971986:26345472,3473319,196608 +[1,20302:6630773,43971986:25952256,3276711,0 +(1,20296:6630773,41119714:25952256,424439,112852 +(1,20295:6630773,41119714:0,0,0 +g1,20295:6630773,41119714 +g1,20295:6630773,41119714 +g1,20295:6303093,41119714 +(1,20295:6303093,41119714:0,0,0 +) +g1,20295:6630773,41119714 +) +k1,20296:6630773,41119714:0 +g1,20296:10614221,41119714 +g1,20296:11278129,41119714 +k1,20296:11278129,41119714:0 +h1,20296:13601807,41119714:0,0,0 +k1,20296:32583029,41119714:18981222 +g1,20296:32583029,41119714 +) +(1,20297:6630773,41804569:25952256,431045,112852 +h1,20297:6630773,41804569:0,0,0 +g1,20297:6962727,41804569 +g1,20297:7294681,41804569 +g1,20297:7626635,41804569 +g1,20297:7958589,41804569 +g1,20297:8290543,41804569 +g1,20297:8622497,41804569 +g1,20297:8954451,41804569 +g1,20297:10946175,41804569 +g1,20297:11610083,41804569 +g1,20297:13269853,41804569 +g1,20297:13933761,41804569 +g1,20297:14597669,41804569 +g1,20297:19576978,41804569 +g1,20297:21568702,41804569 +g1,20297:22232610,41804569 +g1,20297:24556288,41804569 +h1,20297:24888242,41804569:0,0,0 +k1,20297:32583029,41804569:7694787 +g1,20297:32583029,41804569 +) +(1,20298:6630773,42489424:25952256,424439,112852 +h1,20298:6630773,42489424:0,0,0 +g1,20298:6962727,42489424 +g1,20298:7294681,42489424 +g1,20298:11278128,42489424 +h1,20298:11610082,42489424:0,0,0 +k1,20298:32583030,42489424:20972948 +g1,20298:32583030,42489424 +) +(1,20299:6630773,43174279:25952256,424439,112852 +h1,20299:6630773,43174279:0,0,0 +g1,20299:6962727,43174279 +g1,20299:7294681,43174279 +g1,20299:11610082,43174279 +h1,20299:11942036,43174279:0,0,0 +k1,20299:32583028,43174279:20640992 +g1,20299:32583028,43174279 +) +(1,20300:6630773,43859134:25952256,424439,112852 +h1,20300:6630773,43859134:0,0,0 +g1,20300:6962727,43859134 +g1,20300:7294681,43859134 +g1,20300:15593530,43859134 +g1,20300:16257438,43859134 +g1,20300:18581116,43859134 +g1,20300:20904794,43859134 +g1,20300:21568702,43859134 +g1,20300:23560426,43859134 +g1,20300:24888242,43859134 +g1,20300:26548012,43859134 +h1,20300:28207782,43859134:0,0,0 +k1,20300:32583029,43859134:4375247 +g1,20300:32583029,43859134 +) +] +) +g1,20302:32583029,43971986 +g1,20302:6630773,43971986 +g1,20302:6630773,43971986 +g1,20302:32583029,43971986 +g1,20302:32583029,43971986 +) +h1,20302:6630773,44168594:0,0,0 +] +(1,20311:32583029,45706769:0,0,0 +g1,20311:32583029,45706769 +) +) +] +(1,20311:6630773,47279633:25952256,0,0 +h1,20311:6630773,47279633:25952256,0,0 +) +] +(1,20311:4262630,4025873:0,0,0 +[1,20311:-473656,4025873:0,0,0 +(1,20311:-473656,-710413:0,0,0 +(1,20311:-473656,-710413:0,0,0 +g1,20311:-473656,-710413 +) +g1,20311:-473656,-710413 +) +] +) +] +!23942 +}344 +Input:3301:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3302:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3303:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3304:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!388 +{345 +[1,20362:4262630,47279633:28320399,43253760,0 +(1,20362:4262630,4025873:0,0,0 +[1,20362:-473656,4025873:0,0,0 +(1,20362:-473656,-710413:0,0,0 +(1,20362:-473656,-644877:0,0,0 +k1,20362:-473656,-644877:-65536 ) -k1,20352:3078556,49800853:-34777008 -) -] -g1,20352:6630773,4812305 -k1,20352:21350816,4812305:13524666 -g1,20352:21999622,4812305 -g1,20352:25611966,4812305 -g1,20352:28956923,4812305 -g1,20352:29772190,4812305 -) -) -] -[1,20352:6630773,45706769:25952256,40108032,0 -(1,20352:6630773,45706769:25952256,40108032,0 -(1,20352:6630773,45706769:0,0,0 -g1,20352:6630773,45706769 -) -[1,20352:6630773,45706769:25952256,40108032,0 -(1,20272:6630773,6254097:25952256,513147,126483 -k1,20271:9595458,6254097:261980 -k1,20271:10929607,6254097:261980 -k1,20271:14496568,6254097:261980 -k1,20271:16023393,6254097:261980 -k1,20271:16944665,6254097:261980 -k1,20271:19109156,6254097:261981 -k1,20271:22155105,6254097:261980 -k1,20271:23364736,6254097:261980 -k1,20271:25323443,6254097:261980 -k1,20271:26757862,6254097:261980 -k1,20271:30235038,6254097:261980 -k1,20271:31450567,6254097:261980 -k1,20271:32583029,6254097:0 -) -(1,20272:6630773,7095585:25952256,513147,134348 -k1,20271:9499484,7095585:199430 -k1,20271:10314951,7095585:199429 -k1,20271:12164578,7095585:199430 -k1,20271:14151174,7095585:199429 -k1,20271:15369689,7095585:199430 -(1,20271:15369689,7095585:0,452978,115847 -r1,20352:17134802,7095585:1765113,568825,115847 -k1,20271:15369689,7095585:-1765113 -) -(1,20271:15369689,7095585:1765113,452978,115847 -k1,20271:15369689,7095585:3277 -h1,20271:17131525,7095585:0,411205,112570 -) -k1,20271:17334231,7095585:199429 -k1,20271:20320907,7095585:199430 -k1,20271:21711781,7095585:199429 -k1,20271:23191129,7095585:199430 -k1,20271:24766159,7095585:199429 -k1,20271:26657729,7095585:199430 -k1,20271:29848877,7095585:199429 -k1,20271:30995958,7095585:199430 -(1,20271:30995958,7095585:0,459977,115847 -r1,20352:32409359,7095585:1413401,575824,115847 -k1,20271:30995958,7095585:-1413401 -) -(1,20271:30995958,7095585:1413401,459977,115847 -k1,20271:30995958,7095585:3277 -h1,20271:32406082,7095585:0,411205,112570 -) -k1,20271:32583029,7095585:0 -) -(1,20272:6630773,7937073:25952256,513147,134348 -g1,20271:7783551,7937073 -g1,20271:9288913,7937073 -g1,20271:12332405,7937073 -g1,20271:14019957,7937073 -g1,20271:14980714,7937073 -g1,20271:18232610,7937073 -g1,20271:19762220,7937073 -g1,20271:21907868,7937073 -g1,20271:23098657,7937073 -g1,20271:25679464,7937073 -g1,20271:27070138,7937073 -g1,20271:28782593,7937073 -g1,20271:29597860,7937073 -k1,20272:32583029,7937073:2396656 -g1,20272:32583029,7937073 -) -(1,20273:6630773,9564993:25952256,513147,11795 -(1,20273:6630773,9564993:0,0,0 -g1,20273:6630773,9564993 -) -g1,20273:8625689,9564993 -g1,20273:12352066,9564993 -g1,20273:13198135,9564993 -k1,20273:32583030,9564993:18913036 -g1,20273:32583030,9564993 -) -(1,20276:6630773,10799697:25952256,513147,134348 -k1,20275:8969607,10799697:270518 -k1,20275:10344407,10799697:270518 -k1,20275:11362690,10799697:270517 -k1,20275:14465019,10799697:270518 -k1,20275:15351575,10799697:270518 -k1,20275:16036864,10799697:270446 -k1,20275:17373653,10799697:270518 -k1,20275:19019772,10799697:270518 -k1,20275:21848816,10799697:270518 -k1,20275:25094013,10799697:270518 -k1,20275:27560641,10799697:270517 -k1,20275:29225110,10799697:270518 -k1,20275:30514713,10799697:270518 -k1,20275:32583029,10799697:0 -) -(1,20276:6630773,11641185:25952256,513147,134348 -k1,20275:7517040,11641185:226975 -k1,20275:11064725,11641185:226976 -k1,20275:13673278,11641185:226975 -k1,20275:16020343,11641185:226975 -k1,20275:17319488,11641185:226976 -k1,20275:18832279,11641185:226975 -k1,20275:21473600,11641185:226975 -k1,20275:22386738,11641185:226976 -k1,20275:24809824,11641185:226975 -k1,20275:28348989,11641185:226975 -k1,20275:29595050,11641185:226976 -k1,20275:31145824,11641185:226947 -k1,20275:32583029,11641185:0 -) -(1,20276:6630773,12482673:25952256,505283,134348 -k1,20275:8569864,12482673:166997 -k1,20275:9928307,12482673:166998 -k1,20275:11670134,12482673:166997 -k1,20275:15764705,12482673:166998 -k1,20275:16617864,12482673:166997 -k1,20275:20751756,12482673:166998 -k1,20275:23734835,12482673:166997 -k1,20275:24918296,12482673:166998 -k1,20275:26519221,12482673:166997 -k1,20275:27483137,12482673:166998 -k1,20275:30847636,12482673:166997 -k1,20275:32583029,12482673:0 -) -(1,20276:6630773,13324161:25952256,513147,134348 -k1,20275:7423312,13324161:220410 -k1,20275:8215850,13324161:220409 -k1,20275:9008389,13324161:220410 -k1,20275:9800928,13324161:220410 -k1,20275:10593466,13324161:220409 -k1,20275:11386005,13324161:220410 -k1,20275:12178544,13324161:220410 -k1,20275:12971082,13324161:220409 -k1,20275:13763621,13324161:220410 -k1,20275:14645288,13324161:220409 -k1,20275:15438483,13324161:220410 -k1,20275:16288039,13324161:220410 -k1,20275:17185435,13324161:220409 -k1,20275:17950449,13324161:220410 -k1,20275:19362304,13324161:220410 -k1,20275:19941829,13324161:220388 -k1,20275:20848401,13324161:220410 -k1,20275:23660759,13324161:220409 -k1,20275:25374735,13324161:220410 -k1,20275:26281307,13324161:220410 -(1,20275:26281307,13324161:0,452978,115847 -r1,20352:29453267,13324161:3171960,568825,115847 -k1,20275:26281307,13324161:-3171960 -) -(1,20275:26281307,13324161:3171960,452978,115847 -k1,20275:26281307,13324161:3277 -h1,20275:29449990,13324161:0,411205,112570 -) -k1,20275:29673676,13324161:220409 -k1,20275:30841737,13324161:220410 -k1,20275:32583029,13324161:0 -) -(1,20276:6630773,14165649:25952256,513147,134348 -g1,20275:7512887,14165649 -(1,20275:7512887,14165649:0,452978,115847 -r1,20352:10684847,14165649:3171960,568825,115847 -k1,20275:7512887,14165649:-3171960 -) -(1,20275:7512887,14165649:3171960,452978,115847 -k1,20275:7512887,14165649:3277 -h1,20275:10681570,14165649:0,411205,112570 -) -g1,20275:10884076,14165649 -g1,20275:12030956,14165649 -g1,20275:14091407,14165649 -g1,20275:14973521,14165649 -(1,20275:14973521,14165649:0,452978,115847 -r1,20352:18145481,14165649:3171960,568825,115847 -k1,20275:14973521,14165649:-3171960 -) -(1,20275:14973521,14165649:3171960,452978,115847 -k1,20275:14973521,14165649:3277 -h1,20275:18142204,14165649:0,411205,112570 -) -g1,20275:18344710,14165649 -g1,20275:19491590,14165649 -g1,20275:20709904,14165649 -g1,20275:23779610,14165649 -g1,20275:26762808,14165649 -g1,20275:28433320,14165649 -k1,20276:32583029,14165649:2919598 -g1,20276:32583029,14165649 -) -(1,20279:6630773,15007137:25952256,513147,134348 -h1,20277:6630773,15007137:983040,0,0 -k1,20277:8994478,15007137:183978 -k1,20277:10171983,15007137:183979 -k1,20277:11015253,15007137:183978 -k1,20277:12815350,15007137:183979 -k1,20277:15067644,15007137:183978 -k1,20277:17389407,15007137:183979 -k1,20277:18224813,15007137:183978 -k1,20277:18823619,15007137:183963 -k1,20277:20111880,15007137:183979 -k1,20277:21043624,15007137:183978 -k1,20277:24019437,15007137:183979 -k1,20277:24951181,15007137:183978 -k1,20277:27164155,15007137:183979 -(1,20277:27164155,15007137:0,452978,115847 -r1,20352:29984404,15007137:2820249,568825,115847 -k1,20277:27164155,15007137:-2820249 -) -(1,20277:27164155,15007137:2820249,452978,115847 -k1,20277:27164155,15007137:3277 -h1,20277:29981127,15007137:0,411205,112570 -) -k1,20277:30168382,15007137:183978 -k1,20277:30965123,15007137:183979 -k1,20277:32168186,15007137:183978 -k1,20279:32583029,15007137:0 -) -(1,20279:6630773,15848625:25952256,513147,126483 -k1,20277:9417817,15848625:193129 -k1,20278:11411221,15848625:193130 -k1,20278:12623435,15848625:193129 -k1,20278:15302346,15848625:193130 -k1,20278:16154767,15848625:193129 -k1,20278:18294316,15848625:193130 -k1,20278:21445085,15848625:193129 -k1,20278:22506567,15848625:193130 -k1,20278:24036630,15848625:193129 -k1,20278:25778376,15848625:193130 -k1,20278:26622933,15848625:193129 -k1,20278:28896176,15848625:193130 -k1,20278:30728360,15848625:193129 -k1,20278:32583029,15848625:0 -) -(1,20279:6630773,16690113:25952256,505283,122846 -k1,20278:7664474,16690113:224331 -k1,20278:9397444,16690113:224331 -k1,20278:11863762,16690113:224331 -k1,20278:14877960,16690113:224330 -(1,20278:14877960,16690113:0,452978,115847 -r1,20352:17698209,16690113:2820249,568825,115847 -k1,20278:14877960,16690113:-2820249 -) -(1,20278:14877960,16690113:2820249,452978,115847 -k1,20278:14877960,16690113:3277 -h1,20278:17694932,16690113:0,411205,112570 -) -k1,20278:17922540,16690113:224331 -k1,20278:20487817,16690113:224331 -k1,20278:21068008,16690113:224331 -k1,20278:24267018,16690113:224331 -k1,20278:26642896,16690113:224331 -k1,20278:27820775,16690113:224330 -k1,20278:29149388,16690113:224331 -k1,20278:30466204,16690113:224331 -(1,20278:30466204,16690113:0,452978,122846 -r1,20352:32583029,16690113:2116825,575824,122846 -k1,20278:30466204,16690113:-2116825 -) -(1,20278:30466204,16690113:2116825,452978,122846 -k1,20278:30466204,16690113:3277 -h1,20278:32579752,16690113:0,411205,112570 -) -k1,20278:32583029,16690113:0 -) -(1,20279:6630773,17531601:25952256,513147,134348 -g1,20278:7481430,17531601 -g1,20278:8946815,17531601 -g1,20278:10165129,17531601 -g1,20278:12432674,17531601 -g1,20278:15993900,17531601 -g1,20278:16548989,17531601 -g1,20278:18442979,17531601 -g1,20278:21616887,17531601 -g1,20278:25001166,17531601 -g1,20278:25816433,17531601 -g1,20278:27218903,17531601 -g1,20278:30079549,17531601 -(1,20278:30079549,17531601:0,452978,115847 -r1,20352:32196374,17531601:2116825,568825,115847 -k1,20278:30079549,17531601:-2116825 -) -(1,20278:30079549,17531601:2116825,452978,115847 -k1,20278:30079549,17531601:3277 -h1,20278:32193097,17531601:0,411205,112570 -) -k1,20279:32583029,17531601:212985 -g1,20279:32583029,17531601 -) -v1,20281:6630773,18722067:0,393216,0 -(1,20304:6630773,28352837:25952256,10023986,196608 -g1,20304:6630773,28352837 -g1,20304:6630773,28352837 -g1,20304:6434165,28352837 -(1,20304:6434165,28352837:0,10023986,196608 -r1,20352:32779637,28352837:26345472,10220594,196608 -k1,20304:6434165,28352837:-26345472 -) -(1,20304:6434165,28352837:26345472,10023986,196608 -[1,20304:6630773,28352837:25952256,9827378,0 -(1,20283:6630773,18929685:25952256,404226,107478 -(1,20282:6630773,18929685:0,0,0 -g1,20282:6630773,18929685 -g1,20282:6630773,18929685 -g1,20282:6303093,18929685 -(1,20282:6303093,18929685:0,0,0 -) -g1,20282:6630773,18929685 -) -k1,20283:6630773,18929685:0 -k1,20283:6630773,18929685:0 -h1,20283:11689104,18929685:0,0,0 -k1,20283:32583028,18929685:20893924 -g1,20283:32583028,18929685 -) -(1,20287:6630773,19595863:25952256,404226,76021 -(1,20285:6630773,19595863:0,0,0 -g1,20285:6630773,19595863 -g1,20285:6630773,19595863 -g1,20285:6303093,19595863 -(1,20285:6303093,19595863:0,0,0 -) -g1,20285:6630773,19595863 -) -g1,20287:7579210,19595863 -g1,20287:8843793,19595863 -h1,20287:9792230,19595863:0,0,0 -k1,20287:32583030,19595863:22790800 -g1,20287:32583030,19595863 -) -(1,20289:6630773,20917401:25952256,404226,107478 -(1,20288:6630773,20917401:0,0,0 -g1,20288:6630773,20917401 -g1,20288:6630773,20917401 -g1,20288:6303093,20917401 -(1,20288:6303093,20917401:0,0,0 -) -g1,20288:6630773,20917401 -) -k1,20289:6630773,20917401:0 -g1,20289:13585979,20917401 -g1,20289:15482853,20917401 -g1,20289:16115145,20917401 -h1,20289:17695874,20917401:0,0,0 -k1,20289:32583029,20917401:14887155 -g1,20289:32583029,20917401 -) -(1,20303:6630773,21583579:25952256,404226,107478 -(1,20291:6630773,21583579:0,0,0 -g1,20291:6630773,21583579 -g1,20291:6630773,21583579 -g1,20291:6303093,21583579 -(1,20291:6303093,21583579:0,0,0 -) -g1,20291:6630773,21583579 -) -g1,20303:7579210,21583579 -g1,20303:7895356,21583579 -g1,20303:9159939,21583579 -g1,20303:12637542,21583579 -g1,20303:12953688,21583579 -g1,20303:13269834,21583579 -g1,20303:13585980,21583579 -g1,20303:13902126,21583579 -g1,20303:14218272,21583579 -g1,20303:14534418,21583579 -g1,20303:14850564,21583579 -g1,20303:18328167,21583579 -g1,20303:18644313,21583579 -g1,20303:18960459,21583579 -g1,20303:19276605,21583579 -g1,20303:19592751,21583579 -g1,20303:19908897,21583579 -g1,20303:20225043,21583579 -g1,20303:20541189,21583579 -g1,20303:25599520,21583579 -g1,20303:25915666,21583579 -g1,20303:26231812,21583579 -h1,20303:31290143,21583579:0,0,0 -k1,20303:32583029,21583579:1292886 -g1,20303:32583029,21583579 -) -(1,20303:6630773,22249757:25952256,404226,107478 -h1,20303:6630773,22249757:0,0,0 -g1,20303:7579210,22249757 -g1,20303:7895356,22249757 -g1,20303:9159939,22249757 -g1,20303:14534416,22249757 -g1,20303:14850562,22249757 -g1,20303:20225039,22249757 -g1,20303:20541185,22249757 -g1,20303:25915662,22249757 -g1,20303:26231808,22249757 -h1,20303:29393265,22249757:0,0,0 -k1,20303:32583029,22249757:3189764 -g1,20303:32583029,22249757 -) -(1,20303:6630773,22915935:25952256,404226,107478 -h1,20303:6630773,22915935:0,0,0 -g1,20303:7579210,22915935 -g1,20303:7895356,22915935 -g1,20303:9159939,22915935 -g1,20303:12953687,22915935 -g1,20303:13269833,22915935 -g1,20303:13585979,22915935 -g1,20303:13902125,22915935 -g1,20303:14218271,22915935 -g1,20303:14534417,22915935 -g1,20303:14850563,22915935 -g1,20303:18328166,22915935 -g1,20303:18644312,22915935 -g1,20303:18960458,22915935 -g1,20303:19276604,22915935 -g1,20303:19592750,22915935 -g1,20303:19908896,22915935 -g1,20303:20225042,22915935 -g1,20303:20541188,22915935 -g1,20303:24334936,22915935 -g1,20303:24651082,22915935 -g1,20303:24967228,22915935 -g1,20303:25283374,22915935 -g1,20303:25599520,22915935 -g1,20303:25915666,22915935 -g1,20303:26231812,22915935 -h1,20303:30341706,22915935:0,0,0 -k1,20303:32583029,22915935:2241323 -g1,20303:32583029,22915935 -) -(1,20303:6630773,23582113:25952256,404226,107478 -h1,20303:6630773,23582113:0,0,0 -g1,20303:7579210,23582113 -g1,20303:9159939,23582113 -g1,20303:14534416,23582113 -g1,20303:14850562,23582113 -g1,20303:20541185,23582113 -g1,20303:26231808,23582113 -h1,20303:31606285,23582113:0,0,0 -k1,20303:32583029,23582113:976744 -g1,20303:32583029,23582113 -) -(1,20303:6630773,24248291:25952256,404226,107478 -h1,20303:6630773,24248291:0,0,0 -g1,20303:7579210,24248291 -g1,20303:9159939,24248291 -g1,20303:14850562,24248291 -g1,20303:18960456,24248291 -g1,20303:19276602,24248291 -g1,20303:19592748,24248291 -g1,20303:19908894,24248291 -g1,20303:20225040,24248291 -g1,20303:20541186,24248291 -g1,20303:24967226,24248291 -g1,20303:25283372,24248291 -g1,20303:25599518,24248291 -g1,20303:25915664,24248291 -g1,20303:26231810,24248291 -h1,20303:30341704,24248291:0,0,0 -k1,20303:32583029,24248291:2241325 -g1,20303:32583029,24248291 -) -(1,20303:6630773,24914469:25952256,404226,107478 -h1,20303:6630773,24914469:0,0,0 -g1,20303:7579210,24914469 -g1,20303:9159939,24914469 -g1,20303:13585979,24914469 -g1,20303:13902125,24914469 -g1,20303:14218271,24914469 -g1,20303:14534417,24914469 -g1,20303:14850563,24914469 -g1,20303:19276603,24914469 -g1,20303:19592749,24914469 -g1,20303:19908895,24914469 -g1,20303:20225041,24914469 -g1,20303:20541187,24914469 -g1,20303:24651081,24914469 -g1,20303:24967227,24914469 -g1,20303:25283373,24914469 -g1,20303:25599519,24914469 -g1,20303:25915665,24914469 -g1,20303:26231811,24914469 -h1,20303:30341705,24914469:0,0,0 -k1,20303:32583029,24914469:2241324 -g1,20303:32583029,24914469 -) -(1,20303:6630773,25580647:25952256,404226,76021 -h1,20303:6630773,25580647:0,0,0 -g1,20303:7579210,25580647 -g1,20303:9159939,25580647 -g1,20303:13585979,25580647 -g1,20303:13902125,25580647 -g1,20303:14218271,25580647 -g1,20303:14534417,25580647 -g1,20303:14850563,25580647 -g1,20303:19276603,25580647 -g1,20303:19592749,25580647 -g1,20303:19908895,25580647 -g1,20303:20225041,25580647 -g1,20303:20541187,25580647 -g1,20303:24967227,25580647 -g1,20303:25283373,25580647 -g1,20303:25599519,25580647 -g1,20303:25915665,25580647 -g1,20303:26231811,25580647 -h1,20303:29077122,25580647:0,0,0 -k1,20303:32583029,25580647:3505907 -g1,20303:32583029,25580647 -) -(1,20303:6630773,26246825:25952256,404226,107478 -h1,20303:6630773,26246825:0,0,0 -g1,20303:7579210,26246825 -g1,20303:9159939,26246825 -g1,20303:13269833,26246825 -g1,20303:13585979,26246825 -g1,20303:13902125,26246825 -g1,20303:14218271,26246825 -g1,20303:14534417,26246825 -g1,20303:14850563,26246825 -g1,20303:19592749,26246825 -g1,20303:19908895,26246825 -g1,20303:20225041,26246825 -g1,20303:20541187,26246825 -g1,20303:25599518,26246825 -g1,20303:25915664,26246825 -g1,20303:26231810,26246825 -h1,20303:30973995,26246825:0,0,0 -k1,20303:32583029,26246825:1609034 -g1,20303:32583029,26246825 -) -(1,20303:6630773,26913003:25952256,404226,107478 -h1,20303:6630773,26913003:0,0,0 -g1,20303:7579210,26913003 -g1,20303:9159939,26913003 -g1,20303:14218270,26913003 -g1,20303:14534416,26913003 -g1,20303:14850562,26913003 -g1,20303:19908893,26913003 -g1,20303:20225039,26913003 -g1,20303:20541185,26913003 -g1,20303:25599516,26913003 -g1,20303:25915662,26913003 -g1,20303:26231808,26913003 -h1,20303:30973993,26913003:0,0,0 -k1,20303:32583029,26913003:1609036 -g1,20303:32583029,26913003 -) -(1,20303:6630773,27579181:25952256,404226,107478 -h1,20303:6630773,27579181:0,0,0 -g1,20303:7579210,27579181 -g1,20303:9159939,27579181 -g1,20303:14534416,27579181 -g1,20303:14850562,27579181 -g1,20303:20225039,27579181 -g1,20303:20541185,27579181 -g1,20303:25915662,27579181 -g1,20303:26231808,27579181 -h1,20303:31290139,27579181:0,0,0 -k1,20303:32583029,27579181:1292890 -g1,20303:32583029,27579181 -) -(1,20303:6630773,28245359:25952256,404226,107478 -h1,20303:6630773,28245359:0,0,0 -g1,20303:7579210,28245359 -g1,20303:9159939,28245359 -g1,20303:14218270,28245359 -g1,20303:14534416,28245359 -g1,20303:14850562,28245359 -g1,20303:19908893,28245359 -g1,20303:20225039,28245359 -g1,20303:20541185,28245359 -h1,20303:24334933,28245359:0,0,0 -k1,20303:32583029,28245359:8248096 -g1,20303:32583029,28245359 -) -] -) -g1,20304:32583029,28352837 -g1,20304:6630773,28352837 -g1,20304:6630773,28352837 -g1,20304:32583029,28352837 -g1,20304:32583029,28352837 -) -h1,20304:6630773,28549445:0,0,0 -(1,20308:6630773,29915221:25952256,513147,11795 -h1,20307:6630773,29915221:983040,0,0 -g1,20307:8642072,29915221 -g1,20307:11275308,29915221 -g1,20307:12493622,29915221 -g1,20307:14016678,29915221 -g1,20307:16226552,29915221 -g1,20307:17373432,29915221 -g1,20307:17928521,29915221 -g1,20307:19743868,29915221 -g1,20307:23025255,29915221 -g1,20307:24092836,29915221 -k1,20308:32583029,29915221:7224037 -g1,20308:32583029,29915221 -) -v1,20310:6630773,31105687:0,393216,0 -(1,20329:6630773,37973703:25952256,7261232,196608 -g1,20329:6630773,37973703 -g1,20329:6630773,37973703 -g1,20329:6434165,37973703 -(1,20329:6434165,37973703:0,7261232,196608 -r1,20352:32779637,37973703:26345472,7457840,196608 -k1,20329:6434165,37973703:-26345472 -) -(1,20329:6434165,37973703:26345472,7261232,196608 -[1,20329:6630773,37973703:25952256,7064624,0 -(1,20312:6630773,31313305:25952256,404226,107478 -(1,20311:6630773,31313305:0,0,0 -g1,20311:6630773,31313305 -g1,20311:6630773,31313305 -g1,20311:6303093,31313305 -(1,20311:6303093,31313305:0,0,0 -) -g1,20311:6630773,31313305 -) -k1,20312:6630773,31313305:0 -h1,20312:12005250,31313305:0,0,0 -k1,20312:32583030,31313305:20577780 -g1,20312:32583030,31313305 -) -(1,20319:6630773,31979483:25952256,404226,82312 -(1,20314:6630773,31979483:0,0,0 -g1,20314:6630773,31979483 -g1,20314:6630773,31979483 -g1,20314:6303093,31979483 -(1,20314:6303093,31979483:0,0,0 -) -g1,20314:6630773,31979483 -) -g1,20319:7579210,31979483 -g1,20319:7895356,31979483 -g1,20319:8211502,31979483 -g1,20319:8527648,31979483 -g1,20319:8843794,31979483 -g1,20319:9159940,31979483 -g1,20319:9476086,31979483 -k1,20319:9476086,31979483:0 -h1,20319:10740669,31979483:0,0,0 -k1,20319:32583029,31979483:21842360 -g1,20319:32583029,31979483 -) -(1,20319:6630773,32645661:25952256,404226,9436 -h1,20319:6630773,32645661:0,0,0 -g1,20319:7579210,32645661 -g1,20319:8843793,32645661 -g1,20319:9159939,32645661 -g1,20319:9476085,32645661 -g1,20319:9792231,32645661 -h1,20319:10740668,32645661:0,0,0 -k1,20319:32583028,32645661:21842360 -g1,20319:32583028,32645661 -) -(1,20319:6630773,33311839:25952256,388497,107478 -h1,20319:6630773,33311839:0,0,0 -g1,20319:7579210,33311839 -g1,20319:9476084,33311839 -g1,20319:9792230,33311839 -g1,20319:10108376,33311839 -h1,20319:10740667,33311839:0,0,0 -k1,20319:32583029,33311839:21842362 -g1,20319:32583029,33311839 -) -(1,20319:6630773,33978017:25952256,404226,9436 -h1,20319:6630773,33978017:0,0,0 -g1,20319:7579210,33978017 -g1,20319:9159939,33978017 -g1,20319:9476085,33978017 -g1,20319:9792231,33978017 -h1,20319:10740668,33978017:0,0,0 -k1,20319:32583028,33978017:21842360 -g1,20319:32583028,33978017 -) -(1,20321:6630773,35299555:25952256,404226,107478 -(1,20320:6630773,35299555:0,0,0 -g1,20320:6630773,35299555 -g1,20320:6630773,35299555 -g1,20320:6303093,35299555 -(1,20320:6303093,35299555:0,0,0 -) -g1,20320:6630773,35299555 -) -k1,20321:6630773,35299555:0 -h1,20321:12321396,35299555:0,0,0 -k1,20321:32583028,35299555:20261632 -g1,20321:32583028,35299555 -) -(1,20328:6630773,35965733:25952256,404226,82312 -(1,20323:6630773,35965733:0,0,0 -g1,20323:6630773,35965733 -g1,20323:6630773,35965733 -g1,20323:6303093,35965733 -(1,20323:6303093,35965733:0,0,0 -) -g1,20323:6630773,35965733 -) -g1,20328:7579210,35965733 -g1,20328:7895356,35965733 -g1,20328:8211502,35965733 -g1,20328:8527648,35965733 -g1,20328:8843794,35965733 -g1,20328:9159940,35965733 -g1,20328:9476086,35965733 -k1,20328:9476086,35965733:0 -h1,20328:10740669,35965733:0,0,0 -k1,20328:32583029,35965733:21842360 -g1,20328:32583029,35965733 -) -(1,20328:6630773,36631911:25952256,404226,9436 -h1,20328:6630773,36631911:0,0,0 -g1,20328:7579210,36631911 -g1,20328:8843793,36631911 -g1,20328:9159939,36631911 -g1,20328:9476085,36631911 -g1,20328:9792231,36631911 -h1,20328:10740668,36631911:0,0,0 -k1,20328:32583028,36631911:21842360 -g1,20328:32583028,36631911 -) -(1,20328:6630773,37298089:25952256,388497,107478 -h1,20328:6630773,37298089:0,0,0 -g1,20328:7579210,37298089 -g1,20328:9476084,37298089 -g1,20328:9792230,37298089 -g1,20328:10108376,37298089 -g1,20328:10424522,37298089 -h1,20328:10740668,37298089:0,0,0 -k1,20328:32583028,37298089:21842360 -g1,20328:32583028,37298089 -) -(1,20328:6630773,37964267:25952256,404226,9436 -h1,20328:6630773,37964267:0,0,0 -g1,20328:7579210,37964267 -g1,20328:9159939,37964267 -g1,20328:9476085,37964267 -g1,20328:9792231,37964267 -g1,20328:10108377,37964267 -g1,20328:10424523,37964267 -h1,20328:10740669,37964267:0,0,0 -k1,20328:32583029,37964267:21842360 -g1,20328:32583029,37964267 -) -] -) -g1,20329:32583029,37973703 -g1,20329:6630773,37973703 -g1,20329:6630773,37973703 -g1,20329:32583029,37973703 -g1,20329:32583029,37973703 -) -h1,20329:6630773,38170311:0,0,0 -(1,20333:6630773,39536087:25952256,513147,126483 -h1,20332:6630773,39536087:983040,0,0 -k1,20332:9559231,39536087:207403 -k1,20332:13179094,39536087:207403 -k1,20332:14002535,39536087:207403 -k1,20332:14624773,39536087:207395 -k1,20332:15936458,39536087:207403 -k1,20332:18515609,39536087:207403 -k1,20332:19078872,39536087:207403 -k1,20332:23512036,39536087:207403 -k1,20332:26809462,39536087:207403 -k1,20332:27778393,39536087:207403 -k1,20332:28756499,39536087:207403 -(1,20332:28756499,39536087:0,452978,115847 -r1,20352:30521612,39536087:1765113,568825,115847 -k1,20332:28756499,39536087:-1765113 -) -(1,20332:28756499,39536087:1765113,452978,115847 -k1,20332:28756499,39536087:3277 -h1,20332:30518335,39536087:0,411205,112570 -) -k1,20332:30729015,39536087:207403 -k1,20332:32583029,39536087:0 -) -(1,20333:6630773,40377575:25952256,513147,126483 -g1,20332:8715473,40377575 -g1,20332:9676230,40377575 -g1,20332:12141039,40377575 -g1,20332:12871765,40377575 -g1,20332:14137265,40377575 -k1,20333:32583029,40377575:15493367 -g1,20333:32583029,40377575 -) -v1,20335:6630773,41568041:0,393216,0 -(1,20346:6630773,45207736:25952256,4032911,196608 -g1,20346:6630773,45207736 -g1,20346:6630773,45207736 -g1,20346:6434165,45207736 -(1,20346:6434165,45207736:0,4032911,196608 -r1,20352:32779637,45207736:26345472,4229519,196608 -k1,20346:6434165,45207736:-26345472 -) -(1,20346:6434165,45207736:26345472,4032911,196608 -[1,20346:6630773,45207736:25952256,3836303,0 -(1,20337:6630773,41775659:25952256,404226,107478 -(1,20336:6630773,41775659:0,0,0 -g1,20336:6630773,41775659 -g1,20336:6630773,41775659 -g1,20336:6303093,41775659 -(1,20336:6303093,41775659:0,0,0 -) -g1,20336:6630773,41775659 -) -k1,20337:6630773,41775659:0 -g1,20337:12321396,41775659 -g1,20337:14218270,41775659 -g1,20337:14850562,41775659 -h1,20337:16431291,41775659:0,0,0 -k1,20337:32583029,41775659:16151738 -g1,20337:32583029,41775659 -) -(1,20345:6630773,42441837:25952256,404226,82312 -(1,20339:6630773,42441837:0,0,0 -g1,20339:6630773,42441837 -g1,20339:6630773,42441837 -g1,20339:6303093,42441837 -(1,20339:6303093,42441837:0,0,0 -) -g1,20339:6630773,42441837 -) -g1,20345:7579210,42441837 -g1,20345:7895356,42441837 -g1,20345:8211502,42441837 -g1,20345:8527648,42441837 -g1,20345:8843794,42441837 -g1,20345:9159940,42441837 -g1,20345:9476086,42441837 -k1,20345:9476086,42441837:0 -h1,20345:10740669,42441837:0,0,0 -k1,20345:32583029,42441837:21842360 -g1,20345:32583029,42441837 -) -(1,20345:6630773,43108015:25952256,404226,9436 -h1,20345:6630773,43108015:0,0,0 -g1,20345:7579210,43108015 -g1,20345:8843793,43108015 -g1,20345:9159939,43108015 -g1,20345:9476085,43108015 -g1,20345:9792231,43108015 -h1,20345:10740668,43108015:0,0,0 -k1,20345:32583028,43108015:21842360 -g1,20345:32583028,43108015 -) -(1,20345:6630773,43774193:25952256,388497,107478 -h1,20345:6630773,43774193:0,0,0 -g1,20345:7579210,43774193 -g1,20345:9476084,43774193 -g1,20345:9792230,43774193 -g1,20345:10108376,43774193 -h1,20345:10740667,43774193:0,0,0 -k1,20345:32583029,43774193:21842362 -g1,20345:32583029,43774193 -) -(1,20345:6630773,44440371:25952256,404226,9436 -h1,20345:6630773,44440371:0,0,0 -g1,20345:7579210,44440371 -g1,20345:9159939,44440371 -g1,20345:9476085,44440371 -g1,20345:9792231,44440371 -h1,20345:10740668,44440371:0,0,0 -k1,20345:32583028,44440371:21842360 -g1,20345:32583028,44440371 -) -(1,20345:6630773,45106549:25952256,404226,101187 -h1,20345:6630773,45106549:0,0,0 -g1,20345:7579210,45106549 -g1,20345:9476084,45106549 -g1,20345:9792230,45106549 -h1,20345:10740667,45106549:0,0,0 -k1,20345:32583029,45106549:21842362 -g1,20345:32583029,45106549 -) -] -) -g1,20346:32583029,45207736 -g1,20346:6630773,45207736 -g1,20346:6630773,45207736 -g1,20346:32583029,45207736 -g1,20346:32583029,45207736 -) -h1,20346:6630773,45404344:0,0,0 -] -(1,20352:32583029,45706769:0,0,0 -g1,20352:32583029,45706769 -) -) -] -(1,20352:6630773,47279633:25952256,0,0 -h1,20352:6630773,47279633:25952256,0,0 -) -] -(1,20352:4262630,4025873:0,0,0 -[1,20352:-473656,4025873:0,0,0 -(1,20352:-473656,-710413:0,0,0 -(1,20352:-473656,-710413:0,0,0 -g1,20352:-473656,-710413 -) -g1,20352:-473656,-710413 -) -] -) -] -!28475 -}365 -Input:3313:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3314:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3315:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3316:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3317:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3318:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3319:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3320:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3321:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3322:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3323:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3324:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3325:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3326:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3327:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3328:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3329:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3330:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1704 -{366 -[1,20413:4262630,47279633:28320399,43253760,0 -(1,20413:4262630,4025873:0,0,0 -[1,20413:-473656,4025873:0,0,0 -(1,20413:-473656,-710413:0,0,0 -(1,20413:-473656,-644877:0,0,0 -k1,20413:-473656,-644877:-65536 -) -(1,20413:-473656,4736287:0,0,0 -k1,20413:-473656,4736287:5209943 +(1,20362:-473656,4736287:0,0,0 +k1,20362:-473656,4736287:5209943 ) -g1,20413:-473656,-710413 +g1,20362:-473656,-710413 ) ] ) -[1,20413:6630773,47279633:25952256,43253760,0 -[1,20413:6630773,4812305:25952256,786432,0 -(1,20413:6630773,4812305:25952256,505283,11795 -(1,20413:6630773,4812305:25952256,505283,11795 -g1,20413:3078558,4812305 -[1,20413:3078558,4812305:0,0,0 -(1,20413:3078558,2439708:0,1703936,0 -k1,20413:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,20413:2537886,2439708:1179648,16384,0 +[1,20362:6630773,47279633:25952256,43253760,0 +[1,20362:6630773,4812305:25952256,786432,0 +(1,20362:6630773,4812305:25952256,513147,126483 +(1,20362:6630773,4812305:25952256,513147,126483 +g1,20362:3078558,4812305 +[1,20362:3078558,4812305:0,0,0 +(1,20362:3078558,2439708:0,1703936,0 +k1,20362:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,20362:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,20413:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,20362:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,20413:3078558,4812305:0,0,0 -(1,20413:3078558,2439708:0,1703936,0 -g1,20413:29030814,2439708 -g1,20413:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,20413:36151628,1915420:16384,1179648,0 +[1,20362:3078558,4812305:0,0,0 +(1,20362:3078558,2439708:0,1703936,0 +g1,20362:29030814,2439708 +g1,20362:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,20362:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,20413:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,20362:37855564,2439708:1179648,16384,0 ) ) -k1,20413:3078556,2439708:-34777008 +k1,20362:3078556,2439708:-34777008 ) ] -[1,20413:3078558,4812305:0,0,0 -(1,20413:3078558,49800853:0,16384,2228224 -k1,20413:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,20413:2537886,49800853:1179648,16384,0 +[1,20362:3078558,4812305:0,0,0 +(1,20362:3078558,49800853:0,16384,2228224 +k1,20362:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,20362:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,20413:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,20362:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,20413:3078558,4812305:0,0,0 -(1,20413:3078558,49800853:0,16384,2228224 -g1,20413:29030814,49800853 -g1,20413:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,20413:36151628,51504789:16384,1179648,0 +[1,20362:3078558,4812305:0,0,0 +(1,20362:3078558,49800853:0,16384,2228224 +g1,20362:29030814,49800853 +g1,20362:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,20362:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,20413:37855564,49800853:1179648,16384,0 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,20362:37855564,49800853:1179648,16384,0 ) ) -k1,20413:3078556,49800853:-34777008 +k1,20362:3078556,49800853:-34777008 ) ] -g1,20413:6630773,4812305 -g1,20413:6630773,4812305 -g1,20413:8724648,4812305 -k1,20413:31387652,4812305:22663004 +g1,20362:6630773,4812305 +k1,20362:21350816,4812305:13524666 +g1,20362:21999622,4812305 +g1,20362:25611966,4812305 +g1,20362:28956923,4812305 +g1,20362:29772190,4812305 ) ) ] -[1,20413:6630773,45706769:25952256,40108032,0 -(1,20413:6630773,45706769:25952256,40108032,0 -(1,20413:6630773,45706769:0,0,0 -g1,20413:6630773,45706769 +[1,20362:6630773,45706769:25952256,40108032,0 +(1,20362:6630773,45706769:25952256,40108032,0 +(1,20362:6630773,45706769:0,0,0 +g1,20362:6630773,45706769 ) -[1,20413:6630773,45706769:25952256,40108032,0 -(1,20350:6630773,6254097:25952256,513147,122846 -h1,20349:6630773,6254097:983040,0,0 -k1,20349:9255743,6254097:162782 -k1,20349:12114020,6254097:162781 -(1,20349:12114020,6254097:0,452978,122846 -r1,20413:13879133,6254097:1765113,575824,122846 -k1,20349:12114020,6254097:-1765113 +[1,20362:6630773,45706769:25952256,40108032,0 +(1,20305:6630773,6254097:25952256,513147,138281 +(1,20305:6630773,6254097:0,0,0 +g1,20305:6630773,6254097 ) -(1,20349:12114020,6254097:1765113,452978,122846 -k1,20349:12114020,6254097:3277 -h1,20349:13875856,6254097:0,411205,112570 -) -k1,20349:14041915,6254097:162782 -k1,20349:15073048,6254097:162781 -k1,20349:16340112,6254097:162782 -k1,20349:18463730,6254097:162781 -k1,20349:19909707,6254097:162782 -k1,20349:22192579,6254097:162782 -k1,20349:24033737,6254097:162781 -(1,20349:24033737,6254097:0,452978,122846 -r1,20413:27205697,6254097:3171960,575824,122846 -k1,20349:24033737,6254097:-3171960 -) -(1,20349:24033737,6254097:3171960,452978,122846 -k1,20349:24033737,6254097:3277 -h1,20349:27202420,6254097:0,411205,112570 -) -k1,20349:27368479,6254097:162782 -k1,20349:28478911,6254097:162781 -k1,20349:30291890,6254097:162782 -k1,20350:32583029,6254097:0 -k1,20350:32583029,6254097:0 -) -v1,20352:6630773,7241278:0,393216,0 -(1,20373:6630773,13432298:25952256,6584236,196608 -g1,20373:6630773,13432298 -g1,20373:6630773,13432298 -g1,20373:6434165,13432298 -(1,20373:6434165,13432298:0,6584236,196608 -r1,20413:32779637,13432298:26345472,6780844,196608 -k1,20373:6434165,13432298:-26345472 -) -(1,20373:6434165,13432298:26345472,6584236,196608 -[1,20373:6630773,13432298:25952256,6387628,0 -(1,20354:6630773,7448896:25952256,404226,107478 -(1,20353:6630773,7448896:0,0,0 -g1,20353:6630773,7448896 -g1,20353:6630773,7448896 -g1,20353:6303093,7448896 -(1,20353:6303093,7448896:0,0,0 -) -g1,20353:6630773,7448896 -) -k1,20354:6630773,7448896:0 -g1,20354:8843794,7448896 -g1,20354:9792232,7448896 -h1,20354:10424524,7448896:0,0,0 -k1,20354:32583028,7448896:22158504 -g1,20354:32583028,7448896 -) -(1,20358:6630773,8115074:25952256,404226,76021 -(1,20356:6630773,8115074:0,0,0 -g1,20356:6630773,8115074 -g1,20356:6630773,8115074 -g1,20356:6303093,8115074 -(1,20356:6303093,8115074:0,0,0 -) -g1,20356:6630773,8115074 -) -g1,20358:7579210,8115074 -g1,20358:8843793,8115074 -h1,20358:11689104,8115074:0,0,0 -k1,20358:32583028,8115074:20893924 -g1,20358:32583028,8115074 -) -(1,20360:6630773,9436612:25952256,404226,107478 -(1,20359:6630773,9436612:0,0,0 -g1,20359:6630773,9436612 -g1,20359:6630773,9436612 -g1,20359:6303093,9436612 -(1,20359:6303093,9436612:0,0,0 -) -g1,20359:6630773,9436612 -) -k1,20360:6630773,9436612:0 -g1,20360:8843794,9436612 -g1,20360:9792232,9436612 -g1,20360:10740670,9436612 -g1,20360:12637544,9436612 -g1,20360:13269836,9436612 -h1,20360:16747439,9436612:0,0,0 -k1,20360:32583029,9436612:15835590 -g1,20360:32583029,9436612 -) -(1,20365:6630773,10102790:25952256,404226,101187 -(1,20362:6630773,10102790:0,0,0 -g1,20362:6630773,10102790 -g1,20362:6630773,10102790 -g1,20362:6303093,10102790 -(1,20362:6303093,10102790:0,0,0 -) -g1,20362:6630773,10102790 -) -g1,20365:7579210,10102790 -g1,20365:7895356,10102790 -h1,20365:10424521,10102790:0,0,0 -k1,20365:32583029,10102790:22158508 -g1,20365:32583029,10102790 -) -(1,20365:6630773,10768968:25952256,404226,9436 -h1,20365:6630773,10768968:0,0,0 -g1,20365:7579210,10768968 -h1,20365:10424521,10768968:0,0,0 -k1,20365:32583029,10768968:22158508 -g1,20365:32583029,10768968 -) -(1,20367:6630773,12090506:25952256,404226,107478 -(1,20366:6630773,12090506:0,0,0 -g1,20366:6630773,12090506 -g1,20366:6630773,12090506 -g1,20366:6303093,12090506 -(1,20366:6303093,12090506:0,0,0 -) -g1,20366:6630773,12090506 -) -k1,20367:6630773,12090506:0 -g1,20367:9476085,12090506 -g1,20367:11056814,12090506 -g1,20367:12005252,12090506 -g1,20367:13902126,12090506 -g1,20367:14534418,12090506 -g1,20367:18328167,12090506 -g1,20367:22754207,12090506 -g1,20367:23386499,12090506 -h1,20367:24651082,12090506:0,0,0 -k1,20367:32583029,12090506:7931947 -g1,20367:32583029,12090506 -) -(1,20372:6630773,12756684:25952256,404226,101187 -(1,20369:6630773,12756684:0,0,0 -g1,20369:6630773,12756684 -g1,20369:6630773,12756684 -g1,20369:6303093,12756684 -(1,20369:6303093,12756684:0,0,0 -) -g1,20369:6630773,12756684 -) -g1,20372:7579210,12756684 -g1,20372:7895356,12756684 -h1,20372:10424521,12756684:0,0,0 -k1,20372:32583029,12756684:22158508 -g1,20372:32583029,12756684 -) -(1,20372:6630773,13422862:25952256,404226,9436 -h1,20372:6630773,13422862:0,0,0 -g1,20372:7579210,13422862 -h1,20372:10424521,13422862:0,0,0 -k1,20372:32583029,13422862:22158508 -g1,20372:32583029,13422862 -) -] -) -g1,20373:32583029,13432298 -g1,20373:6630773,13432298 -g1,20373:6630773,13432298 -g1,20373:32583029,13432298 -g1,20373:32583029,13432298 -) -h1,20373:6630773,13628906:0,0,0 -(1,20377:6630773,14791398:25952256,513147,126483 -h1,20376:6630773,14791398:983040,0,0 -k1,20376:8730117,14791398:298415 -k1,20376:12118556,14791398:298416 -k1,20376:14445966,14791398:298415 -k1,20376:16690801,14791398:298416 -k1,20376:18093498,14791398:298415 -k1,20376:19139680,14791398:298416 -k1,20376:21819673,14791398:298415 -k1,20376:22734127,14791398:298416 -k1,20376:24051627,14791398:298415 -k1,20376:25673770,14791398:298316 -k1,20376:27522768,14791398:298416 -k1,20376:29738766,14791398:298415 -k1,20376:32583029,14791398:0 -) -(1,20377:6630773,15632886:25952256,513147,102891 -k1,20376:8523172,15632886:190429 -k1,20376:10329720,15632886:190430 -k1,20376:12838157,15632886:190429 -k1,20376:14522153,15632886:190430 -k1,20376:15398744,15632886:190429 -k1,20376:16907749,15632886:190421 -k1,20376:18655969,15632886:190429 -k1,20376:22289661,15632886:190430 -k1,20376:24367527,15632886:190429 -k1,20376:25662238,15632886:190429 -k1,20376:26600434,15632886:190430 -k1,20376:28076679,15632886:190429 -k1,20376:29780335,15632886:190430 -k1,20376:30622192,15632886:190429 -k1,20376:32583029,15632886:0 -) -(1,20377:6630773,16474374:25952256,505283,7863 -k1,20377:32583030,16474374:23417324 -g1,20377:32583030,16474374 -) -v1,20379:6630773,17461555:0,393216,0 -(1,20386:6630773,18411372:25952256,1343033,196608 -g1,20386:6630773,18411372 -g1,20386:6630773,18411372 -g1,20386:6434165,18411372 -(1,20386:6434165,18411372:0,1343033,196608 -r1,20413:32779637,18411372:26345472,1539641,196608 -k1,20386:6434165,18411372:-26345472 -) -(1,20386:6434165,18411372:26345472,1343033,196608 -[1,20386:6630773,18411372:25952256,1146425,0 -(1,20381:6630773,17669173:25952256,404226,82312 -(1,20380:6630773,17669173:0,0,0 -g1,20380:6630773,17669173 -g1,20380:6630773,17669173 -g1,20380:6303093,17669173 -(1,20380:6303093,17669173:0,0,0 -) -g1,20380:6630773,17669173 -) -k1,20381:6630773,17669173:0 -g1,20381:14850565,17669173 -g1,20381:16431294,17669173 -h1,20381:17695877,17669173:0,0,0 -k1,20381:32583029,17669173:14887152 -g1,20381:32583029,17669173 -) -(1,20385:6630773,18335351:25952256,404226,76021 -(1,20383:6630773,18335351:0,0,0 -g1,20383:6630773,18335351 -g1,20383:6630773,18335351 -g1,20383:6303093,18335351 -(1,20383:6303093,18335351:0,0,0 -) -g1,20383:6630773,18335351 -) -g1,20385:7579210,18335351 -g1,20385:8843793,18335351 -g1,20385:12005250,18335351 -g1,20385:15166707,18335351 -g1,20385:18328164,18335351 -g1,20385:21489621,18335351 -h1,20385:24334932,18335351:0,0,0 -k1,20385:32583029,18335351:8248097 -g1,20385:32583029,18335351 -) -] -) -g1,20386:32583029,18411372 -g1,20386:6630773,18411372 -g1,20386:6630773,18411372 -g1,20386:32583029,18411372 -g1,20386:32583029,18411372 -) -h1,20386:6630773,18607980:0,0,0 -(1,20390:6630773,19770471:25952256,513147,126483 -h1,20389:6630773,19770471:983040,0,0 -k1,20389:10564948,19770471:169787 -k1,20389:11090595,19770471:169787 -k1,20389:12910579,19770471:169787 -k1,20389:15057587,19770471:169787 -k1,20389:17057795,19770471:169787 -k1,20389:17886875,19770471:169788 -k1,20389:19375216,19770471:169757 -k1,20389:21491422,19770471:169787 -k1,20389:22608861,19770471:169788 -k1,20389:23871133,19770471:169787 -k1,20389:24656958,19770471:169787 -k1,20389:26729255,19770471:169787 -k1,20389:27890602,19770471:169787 -k1,20389:29804302,19770471:169787 -k1,20389:32583029,19770471:0 -) -(1,20390:6630773,20611959:25952256,513147,126483 -k1,20389:7606530,20611959:214229 -k1,20389:10516255,20611959:214229 -(1,20389:10516255,20611959:0,452978,115847 -r1,20413:12281368,20611959:1765113,568825,115847 -k1,20389:10516255,20611959:-1765113 -) -(1,20389:10516255,20611959:1765113,452978,115847 -k1,20389:10516255,20611959:3277 -h1,20389:12278091,20611959:0,411205,112570 -) -k1,20389:12495597,20611959:214229 -k1,20389:13657477,20611959:214229 -k1,20389:15222403,20611959:214229 -k1,20389:17843769,20611959:214229 -k1,20389:19249442,20611959:214228 -k1,20389:22944943,20611959:214229 -k1,20389:24933887,20611959:214229 -k1,20389:26167201,20611959:214229 -k1,20389:28662083,20611959:214229 -k1,20389:30067757,20611959:214229 -k1,20390:32583029,20611959:0 -) -(1,20390:6630773,21453447:25952256,505283,126483 -k1,20389:8370302,21453447:171908 -k1,20389:9158248,21453447:171908 -k1,20389:10648713,21453447:171881 -k1,20389:11812181,21453447:171908 -k1,20389:13838758,21453447:171908 -k1,20389:14820035,21453447:171907 -k1,20389:17614694,21453447:171908 -k1,20389:19970917,21453447:171908 -k1,20389:21161910,21453447:171908 -k1,20389:24341265,21453447:171908 -k1,20389:25704618,21453447:171908 -k1,20389:29784438,21453447:171908 -k1,20389:31966991,21453447:171908 -k1,20389:32583029,21453447:0 -) -(1,20390:6630773,22294935:25952256,505283,126483 -k1,20389:8164416,22294935:207850 -k1,20389:9363835,22294935:207859 -k1,20389:11426363,22294935:207859 -k1,20389:12443592,22294935:207859 -k1,20389:14871811,22294935:207859 -k1,20389:16944169,22294935:207859 -k1,20389:20751265,22294935:207859 -k1,20389:23442283,22294935:207859 -k1,20389:25044093,22294935:207859 -k1,20389:26979481,22294935:207859 -k1,20389:30494942,22294935:207859 -k1,20389:31835263,22294935:207859 -k1,20389:32583029,22294935:0 -) -(1,20390:6630773,23136423:25952256,513147,134348 -k1,20389:8295902,23136423:225303 -k1,20389:9207368,23136423:225304 -k1,20389:11726431,23136423:225303 -k1,20389:13887668,23136423:225303 -k1,20389:14874499,23136423:225303 -k1,20389:15870506,23136423:225304 -k1,20389:19122262,23136423:225303 -k1,20389:21741595,23136423:225303 -k1,20389:22594734,23136423:225304 -k1,20389:23175897,23136423:225303 -k1,20389:24973409,23136423:225303 -k1,20389:27053381,23136423:225303 -k1,20389:28088055,23136423:225304 -k1,20389:31075701,23136423:225303 -k1,20389:32583029,23136423:0 -) -(1,20390:6630773,23977911:25952256,505283,134348 -k1,20389:7902226,23977911:199284 -k1,20389:9829039,23977911:199284 -k1,20389:12435461,23977911:199285 -k1,20389:13826190,23977911:199284 -k1,20389:17333076,23977911:199284 -k1,20389:19716675,23977911:199284 -k1,20389:20602121,23977911:199284 -k1,20389:22314631,23977911:199284 -k1,20389:23275443,23977911:199284 -k1,20389:26054880,23977911:199285 -k1,20389:29256367,23977911:199284 -k1,20389:30221767,23977911:199284 -k1,20389:32583029,23977911:0 -) -(1,20390:6630773,24819399:25952256,505283,134348 -k1,20389:7766418,24819399:144085 -k1,20389:10974312,24819399:144086 -k1,20389:11804559,24819399:144085 -k1,20389:14242405,24819399:144086 -k1,20389:16496094,24819399:144085 -k1,20389:17836867,24819399:144086 -k1,20389:19488280,24819399:144085 -k1,20389:21162632,24819399:144086 -k1,20389:21958145,24819399:144085 -k1,20389:22849997,24819399:144086 -k1,20389:26191584,24819399:144085 -k1,20389:27021832,24819399:144086 -k1,20389:29193601,24819399:144085 -k1,20389:29953725,24819399:144086 -k1,20389:32583029,24819399:0 -) -(1,20390:6630773,25660887:25952256,505283,11795 -g1,20389:8223953,25660887 -g1,20389:10433827,25660887 -g1,20389:13268259,25660887 -g1,20389:14887653,25660887 -g1,20389:16278327,25660887 -k1,20390:32583029,25660887:14935655 -g1,20390:32583029,25660887 -) -v1,20392:6630773,26648069:0,393216,0 -(1,20399:6630773,27597886:25952256,1343033,196608 -g1,20399:6630773,27597886 -g1,20399:6630773,27597886 -g1,20399:6434165,27597886 -(1,20399:6434165,27597886:0,1343033,196608 -r1,20413:32779637,27597886:26345472,1539641,196608 -k1,20399:6434165,27597886:-26345472 -) -(1,20399:6434165,27597886:26345472,1343033,196608 -[1,20399:6630773,27597886:25952256,1146425,0 -(1,20394:6630773,26855687:25952256,404226,82312 -(1,20393:6630773,26855687:0,0,0 -g1,20393:6630773,26855687 -g1,20393:6630773,26855687 -g1,20393:6303093,26855687 -(1,20393:6303093,26855687:0,0,0 -) -g1,20393:6630773,26855687 -) -k1,20394:6630773,26855687:0 -g1,20394:14534419,26855687 -g1,20394:15166711,26855687 -h1,20394:16431294,26855687:0,0,0 -k1,20394:32583029,26855687:16151735 -g1,20394:32583029,26855687 -) -(1,20398:6630773,27521865:25952256,404226,76021 -(1,20396:6630773,27521865:0,0,0 -g1,20396:6630773,27521865 -g1,20396:6630773,27521865 -g1,20396:6303093,27521865 -(1,20396:6303093,27521865:0,0,0 -) -g1,20396:6630773,27521865 -) -g1,20398:7579210,27521865 -g1,20398:8843793,27521865 -g1,20398:12005250,27521865 -g1,20398:15166707,27521865 -g1,20398:18328164,27521865 -g1,20398:21489621,27521865 -h1,20398:24334932,27521865:0,0,0 -k1,20398:32583029,27521865:8248097 -g1,20398:32583029,27521865 -) -] -) -g1,20399:32583029,27597886 -g1,20399:6630773,27597886 -g1,20399:6630773,27597886 -g1,20399:32583029,27597886 -g1,20399:32583029,27597886 -) -h1,20399:6630773,27794494:0,0,0 -(1,20404:6630773,28956985:25952256,505283,134348 -h1,20402:6630773,28956985:983040,0,0 -k1,20402:8340225,28956985:256519 -k1,20402:9128241,28956985:256519 -k1,20402:10670576,28956985:256519 -k1,20402:14136392,28956985:256518 -k1,20402:15044339,28956985:256519 -k1,20402:18559963,28956985:256519 -k1,20402:20100988,28956985:256519 -k1,20402:22908168,28956985:256519 -k1,20402:24268969,28956985:256519 -k1,20402:25901088,28956985:256518 -k1,20402:29718178,28956985:256519 -k1,20402:30330557,28956985:256519 -k1,20402:32583029,28956985:0 -) -(1,20404:6630773,29798473:25952256,513147,134348 -k1,20402:7793885,29798473:228569 -k1,20402:8681746,29798473:228569 -k1,20402:11445249,29798473:228570 -k1,20402:12865263,29798473:228569 -k1,20402:14560528,29798473:228569 -k1,20402:17141184,29798473:228569 -k1,20402:18985872,29798473:228570 -k1,20402:21566528,29798473:228569 -k1,20402:22899379,29798473:228569 -k1,20402:23875714,29798473:228569 -k1,20402:27780854,29798473:228570 -k1,20402:28770951,29798473:228569 -k1,20402:31391584,29798473:228569 -k1,20402:32583029,29798473:0 -) -(1,20404:6630773,30639961:25952256,513147,126483 -k1,20402:9579827,30639961:227344 -k1,20402:14000821,30639961:227345 -k1,20402:17054077,30639961:227344 -k1,20402:18849043,30639961:227345 -k1,20402:22269301,30639961:227344 -k1,20402:23148073,30639961:227344 -k1,20402:26568332,30639961:227345 -k1,20402:28626752,30639961:227344 -k1,20402:29470135,30639961:227345 -k1,20402:31313597,30639961:227344 -k1,20404:32583029,30639961:0 -) -(1,20404:6630773,31481449:25952256,513147,134348 -k1,20402:9425064,31481449:251494 -k1,20402:12657136,31481449:251495 -k1,20402:15670973,31481449:251494 -k1,20402:17638855,31481449:251494 -k1,20402:18549642,31481449:251495 -k1,20402:20417254,31481449:251494 -k1,20402:23907537,31481449:251494 -k1,20402:24628925,31481449:251495 -k1,20402:25411916,31481449:251494 -k1,20402:28872708,31481449:251494 -k1,20402:29775631,31481449:251495 -k1,20402:31379788,31481449:251494 -k1,20402:32583029,31481449:0 -) -(1,20404:6630773,32322937:25952256,505283,134348 -g1,20402:8097468,32322937 -g1,20402:10800828,32322937 -g1,20402:12698095,32322937 -g1,20402:15755349,32322937 -g1,20402:16973663,32322937 -g1,20402:19119311,32322937 -g1,20402:20831766,32322937 -g1,20402:21647033,32322937 -g1,20402:25875415,32322937 -k1,20404:32583029,32322937:6707614 -g1,20404:32583029,32322937 -) -(1,20405:6630773,34414197:25952256,555811,12975 -(1,20405:6630773,34414197:2450326,534184,12975 -g1,20405:6630773,34414197 -g1,20405:9081099,34414197 -) -g1,20405:13486495,34414197 -g1,20405:18295593,34414197 -k1,20405:32583029,34414197:12101679 -g1,20405:32583029,34414197 -) -(1,20408:6630773,35648901:25952256,505283,122846 -k1,20407:10873606,35648901:550535 -k1,20407:13040259,35648901:550535 -k1,20407:15493303,35648901:550534 -(1,20407:15493303,35648901:0,452978,115847 -r1,20413:23940940,35648901:8447637,568825,115847 -k1,20407:15493303,35648901:-8447637 -) -(1,20407:15493303,35648901:8447637,452978,115847 -k1,20407:15493303,35648901:3277 -h1,20407:23937663,35648901:0,411205,112570 -) -k1,20407:24665145,35648901:550535 -(1,20407:24665145,35648901:0,452978,122846 -r1,20413:32409359,35648901:7744214,575824,122846 -k1,20407:24665145,35648901:-7744214 -) -(1,20407:24665145,35648901:7744214,452978,122846 -k1,20407:24665145,35648901:3277 -h1,20407:32406082,35648901:0,411205,112570 -) -k1,20408:32583029,35648901:0 -) -(1,20408:6630773,36490389:25952256,505283,122846 -(1,20407:6630773,36490389:0,452978,122846 -r1,20413:14726699,36490389:8095926,575824,122846 -k1,20407:6630773,36490389:-8095926 -) -(1,20407:6630773,36490389:8095926,452978,122846 -k1,20407:6630773,36490389:3277 -h1,20407:14723422,36490389:0,411205,112570 -) -k1,20407:15528453,36490389:628084 -(1,20407:15528453,36490389:0,452978,122846 -r1,20413:23624379,36490389:8095926,575824,122846 -k1,20407:15528453,36490389:-8095926 -) -(1,20407:15528453,36490389:8095926,452978,122846 -k1,20407:15528453,36490389:3277 -h1,20407:23621102,36490389:0,411205,112570 -) -k1,20407:24426133,36490389:628084 -(1,20407:24426133,36490389:0,452978,115847 -r1,20413:30763500,36490389:6337367,568825,115847 -k1,20407:24426133,36490389:-6337367 -) -(1,20407:24426133,36490389:6337367,452978,115847 -k1,20407:24426133,36490389:3277 -h1,20407:30760223,36490389:0,411205,112570 -) -k1,20407:31391584,36490389:628084 -k1,20408:32583029,36490389:0 -) -(1,20408:6630773,37331877:25952256,505283,134348 -(1,20407:6630773,37331877:0,452978,115847 -r1,20413:14374987,37331877:7744214,568825,115847 -k1,20407:6630773,37331877:-7744214 -) -(1,20407:6630773,37331877:7744214,452978,115847 -k1,20407:6630773,37331877:3277 -h1,20407:14371710,37331877:0,411205,112570 -) -k1,20407:14728318,37331877:179661 -k1,20407:16187897,37331877:179661 -k1,20407:16723418,37331877:179661 -k1,20407:19314149,37331877:179661 -k1,20407:23064210,37331877:179660 -k1,20407:25903322,37331877:179661 -k1,20407:28718186,37331877:179661 -k1,20407:30070286,37331877:179661 -k1,20407:30932832,37331877:179661 -k1,20407:32583029,37331877:0 -) -(1,20408:6630773,38173365:25952256,505283,134348 -k1,20407:9458379,38173365:292673 -k1,20407:11308842,38173365:292672 -k1,20407:12593075,38173365:292673 -k1,20407:14398974,38173365:292673 -k1,20407:16085598,38173365:292673 -(1,20407:16085598,38173365:0,452978,115847 -r1,20413:18554135,38173365:2468537,568825,115847 -k1,20407:16085598,38173365:-2468537 -) -(1,20407:16085598,38173365:2468537,452978,115847 -k1,20407:16085598,38173365:3277 -h1,20407:18550858,38173365:0,411205,112570 -) -k1,20407:19020477,38173365:292672 -(1,20407:19020477,38173365:0,452978,115847 -r1,20413:20433878,38173365:1413401,568825,115847 -k1,20407:19020477,38173365:-1413401 -) -(1,20407:19020477,38173365:1413401,452978,115847 -k1,20407:19020477,38173365:3277 -h1,20407:20430601,38173365:0,411205,112570 -) -k1,20407:20726551,38173365:292673 -k1,20407:22210669,38173365:292673 -(1,20407:22210669,38173365:0,452978,115847 -r1,20413:25030918,38173365:2820249,568825,115847 -k1,20407:22210669,38173365:-2820249 -) -(1,20407:22210669,38173365:2820249,452978,115847 -k1,20407:22210669,38173365:3277 -h1,20407:25027641,38173365:0,411205,112570 -) -k1,20407:25323590,38173365:292672 -k1,20407:27179297,38173365:292673 -k1,20407:27959464,38173365:292579 -k1,20407:32583029,38173365:0 -) -(1,20408:6630773,39014853:25952256,513147,115847 -k1,20407:7756855,39014853:191539 -k1,20407:8615550,39014853:191539 -(1,20407:8615550,39014853:0,459977,115847 -r1,20413:10028951,39014853:1413401,575824,115847 -k1,20407:8615550,39014853:-1413401 -) -(1,20407:8615550,39014853:1413401,459977,115847 -k1,20407:8615550,39014853:3277 -h1,20407:10025674,39014853:0,411205,112570 -) -k1,20407:10220490,39014853:191539 -k1,20407:12314539,39014853:191539 -k1,20407:13037575,39014853:191539 -k1,20407:14514930,39014853:191539 -k1,20407:17664109,39014853:191539 -k1,20407:19672306,39014853:191539 -k1,20407:21766355,39014853:191539 -k1,20407:23104119,39014853:191539 -(1,20407:23104119,39014853:0,452978,115847 -r1,20413:31200045,39014853:8095926,568825,115847 -k1,20407:23104119,39014853:-8095926 -) -(1,20407:23104119,39014853:8095926,452978,115847 -k1,20407:23104119,39014853:3277 -h1,20407:31196768,39014853:0,411205,112570 -) -k1,20407:31391584,39014853:191539 -k1,20408:32583029,39014853:0 -) -(1,20408:6630773,39856341:25952256,513147,126483 -(1,20407:6630773,39856341:0,452978,115847 -r1,20413:14726699,39856341:8095926,568825,115847 -k1,20407:6630773,39856341:-8095926 -) -(1,20407:6630773,39856341:8095926,452978,115847 -k1,20407:6630773,39856341:3277 -h1,20407:14723422,39856341:0,411205,112570 -) -k1,20407:14962664,39856341:235965 -k1,20407:16190189,39856341:235965 -k1,20407:18280823,39856341:235965 -k1,20407:19326158,39856341:235965 -k1,20407:20581208,39856341:235965 -k1,20407:21909659,39856341:235966 -k1,20407:22804916,39856341:235965 -k1,20407:26771190,39856341:235965 -k1,20407:29527670,39856341:235965 -k1,20407:30422927,39856341:235965 -k1,20407:31923737,39856341:235965 -k1,20407:32583029,39856341:0 -) -(1,20408:6630773,40697829:25952256,513147,134348 -k1,20407:8439458,40697829:192567 -k1,20407:11621776,40697829:192566 -k1,20407:14049776,40697829:192567 -k1,20407:14893770,40697829:192566 -k1,20407:16682794,40697829:192567 -k1,20407:18153967,40697829:192566 -k1,20407:21026957,40697829:192567 -k1,20407:23105650,40697829:192567 -k1,20407:25969463,40697829:192566 -k1,20407:29524682,40697829:192567 -k1,20407:30400133,40697829:192566 -k1,20407:31540351,40697829:192567 -k1,20408:32583029,40697829:0 -) -(1,20408:6630773,41539317:25952256,513147,134348 -g1,20407:8220676,41539317 -g1,20407:10319138,41539317 -g1,20407:13498944,41539317 -g1,20407:16460516,41539317 -g1,20407:18376133,41539317 -g1,20407:19234654,41539317 -g1,20407:21050001,41539317 -k1,20408:32583029,41539317:8294239 -g1,20408:32583029,41539317 -) -(1,20409:6630773,43630577:25952256,555811,12975 -(1,20409:6630773,43630577:2450326,534184,12975 -g1,20409:6630773,43630577 -g1,20409:9081099,43630577 -) -g1,20409:12304226,43630577 -g1,20409:17113324,43630577 -k1,20409:32583029,43630577:13283948 -g1,20409:32583029,43630577 -) -(1,20412:6630773,44865281:25952256,505283,122846 -k1,20411:8843077,44865281:474289 -k1,20411:11219876,44865281:474289 -(1,20411:11219876,44865281:0,452978,115847 -r1,20413:18964090,44865281:7744214,568825,115847 -k1,20411:11219876,44865281:-7744214 -) -(1,20411:11219876,44865281:7744214,452978,115847 -k1,20411:11219876,44865281:3277 -h1,20411:18960813,44865281:0,411205,112570 -) -k1,20411:19612048,44865281:474288 -(1,20411:19612048,44865281:0,452978,115847 -r1,20413:25597703,44865281:5985655,568825,115847 -k1,20411:19612048,44865281:-5985655 -) -(1,20411:19612048,44865281:5985655,452978,115847 -k1,20411:19612048,44865281:3277 -h1,20411:25594426,44865281:0,411205,112570 -) -k1,20411:26245662,44865281:474289 -(1,20411:26245662,44865281:0,452978,122846 -r1,20413:32583029,44865281:6337367,575824,122846 -k1,20411:26245662,44865281:-6337367 -) -(1,20411:26245662,44865281:6337367,452978,122846 -k1,20411:26245662,44865281:3277 -h1,20411:32579752,44865281:0,411205,112570 -) -k1,20411:32583029,44865281:0 -) -(1,20412:6630773,45706769:25952256,513147,134348 -k1,20411:8345326,45706769:722993 -k1,20411:10581545,45706769:722993 -k1,20411:12698489,45706769:722993 -k1,20411:16868020,45706769:722993 -k1,20411:18980377,45706769:722994 -k1,20411:21741540,45706769:722993 -k1,20411:23150695,45706769:722993 -k1,20411:26271650,45706769:722993 -k1,20411:28811301,45706769:722993 -k1,20411:31436804,45706769:722993 -k1,20412:32583029,45706769:0 -) -] -(1,20413:32583029,45706769:0,0,0 -g1,20413:32583029,45706769 -) -) -] -(1,20413:6630773,47279633:25952256,0,0 -h1,20413:6630773,47279633:25952256,0,0 -) -] -(1,20413:4262630,4025873:0,0,0 -[1,20413:-473656,4025873:0,0,0 -(1,20413:-473656,-710413:0,0,0 -(1,20413:-473656,-710413:0,0,0 -g1,20413:-473656,-710413 -) -g1,20413:-473656,-710413 -) -] -) -] -!26496 -}366 -Input:3331:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3332:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3333:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3334:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!388 -{367 -[1,20467:4262630,47279633:28320399,43253760,0 -(1,20467:4262630,4025873:0,0,0 -[1,20467:-473656,4025873:0,0,0 -(1,20467:-473656,-710413:0,0,0 -(1,20467:-473656,-644877:0,0,0 -k1,20467:-473656,-644877:-65536 +g1,20305:9499284,6254097 +g1,20305:10380743,6254097 +$1,20305:10380743,6254097 +$1,20305:10883404,6254097 +g1,20305:11087876,6254097 +g1,20305:12512628,6254097 +$1,20305:12512628,6254097 +$1,20305:13064441,6254097 +g1,20305:13268913,6254097 +k1,20305:32583029,6254097:17839556 +g1,20305:32583029,6254097 +) +(1,20309:6630773,7512393:25952256,513147,134348 +k1,20308:8076178,7512393:248718 +k1,20308:10590475,7512393:248717 +k1,20308:13453424,7512393:248718 +k1,20308:14361433,7512393:248717 +k1,20308:16008689,7512393:248718 +k1,20308:17361688,7512393:248717 +k1,20308:18358172,7512393:248718 +k1,20308:21268306,7512393:248717 +k1,20308:24075550,7512393:248718 +k1,20308:27604999,7512393:248717 +(1,20308:27604999,7512393:0,452978,115847 +r1,20362:30425248,7512393:2820249,568825,115847 +k1,20308:27604999,7512393:-2820249 +) +(1,20308:27604999,7512393:2820249,452978,115847 +k1,20308:27604999,7512393:3277 +h1,20308:30421971,7512393:0,411205,112570 +) +k1,20308:30847636,7512393:248718 +k1,20308:32583029,7512393:0 +) +(1,20309:6630773,8377473:25952256,505283,122846 +g1,20308:9804681,8377473 +g1,20308:13091966,8377473 +(1,20308:13091966,8377473:0,452978,115847 +r1,20362:15912215,8377473:2820249,568825,115847 +k1,20308:13091966,8377473:-2820249 +) +(1,20308:13091966,8377473:2820249,452978,115847 +k1,20308:13091966,8377473:3277 +h1,20308:15908938,8377473:0,411205,112570 +) +g1,20308:16285114,8377473 +(1,20308:16285114,8377473:0,452978,115847 +r1,20362:18050227,8377473:1765113,568825,115847 +k1,20308:16285114,8377473:-1765113 +) +(1,20308:16285114,8377473:1765113,452978,115847 +k1,20308:16285114,8377473:3277 +h1,20308:18046950,8377473:0,411205,112570 +) +g1,20308:18423126,8377473 +(1,20308:18423126,8377473:0,459977,115847 +r1,20362:20539951,8377473:2116825,575824,115847 +k1,20308:18423126,8377473:-2116825 +) +(1,20308:18423126,8377473:2116825,459977,115847 +k1,20308:18423126,8377473:3277 +h1,20308:20536674,8377473:0,411205,112570 +) +g1,20308:20739180,8377473 +g1,20308:22129854,8377473 +(1,20308:22129854,8377473:0,452978,122846 +r1,20362:24598391,8377473:2468537,575824,122846 +k1,20308:22129854,8377473:-2468537 +) +(1,20308:22129854,8377473:2468537,452978,122846 +k1,20308:22129854,8377473:3277 +h1,20308:24595114,8377473:0,411205,112570 +) +k1,20309:32583029,8377473:7810968 +g1,20309:32583029,8377473 +) +v1,20311:6630773,9062328:0,393216,0 +(1,20318:6630773,11457576:25952256,2788464,196608 +g1,20318:6630773,11457576 +g1,20318:6630773,11457576 +g1,20318:6434165,11457576 +(1,20318:6434165,11457576:0,2788464,196608 +r1,20362:32779637,11457576:26345472,2985072,196608 +k1,20318:6434165,11457576:-26345472 +) +(1,20318:6434165,11457576:26345472,2788464,196608 +[1,20318:6630773,11457576:25952256,2591856,0 +(1,20313:6630773,9290159:25952256,424439,112852 +(1,20312:6630773,9290159:0,0,0 +g1,20312:6630773,9290159 +g1,20312:6630773,9290159 +g1,20312:6303093,9290159 +(1,20312:6303093,9290159:0,0,0 +) +g1,20312:6630773,9290159 +) +k1,20313:6630773,9290159:0 +g1,20313:10614221,9290159 +g1,20313:11278129,9290159 +g1,20313:13933761,9290159 +g1,20313:16589393,9290159 +g1,20313:18581117,9290159 +h1,20313:18913071,9290159:0,0,0 +k1,20313:32583029,9290159:13669958 +g1,20313:32583029,9290159 +) +(1,20314:6630773,9975014:25952256,424439,112852 +h1,20314:6630773,9975014:0,0,0 +g1,20314:6962727,9975014 +g1,20314:7294681,9975014 +g1,20314:11610082,9975014 +h1,20314:11942036,9975014:0,0,0 +k1,20314:32583028,9975014:20640992 +g1,20314:32583028,9975014 +) +(1,20315:6630773,10659869:25952256,424439,106246 +h1,20315:6630773,10659869:0,0,0 +g1,20315:6962727,10659869 +g1,20315:7294681,10659869 +g1,20315:16589391,10659869 +g1,20315:17253299,10659869 +g1,20315:19576977,10659869 +h1,20315:19908931,10659869:0,0,0 +k1,20315:32583029,10659869:12674098 +g1,20315:32583029,10659869 +) +(1,20316:6630773,11344724:25952256,424439,112852 +h1,20316:6630773,11344724:0,0,0 +g1,20316:6962727,11344724 +g1,20316:7294681,11344724 +g1,20316:16589391,11344724 +g1,20316:17253299,11344724 +h1,20316:19908931,11344724:0,0,0 +k1,20316:32583029,11344724:12674098 +g1,20316:32583029,11344724 +) +] +) +g1,20318:32583029,11457576 +g1,20318:6630773,11457576 +g1,20318:6630773,11457576 +g1,20318:32583029,11457576 +g1,20318:32583029,11457576 +) +h1,20318:6630773,11654184:0,0,0 +(1,20321:6630773,22230209:25952256,10510489,0 +k1,20321:12599879,22230209:5969106 +h1,20320:12599879,22230209:0,0,0 +(1,20320:12599879,22230209:14014044,10510489,0 +(1,20320:12599879,22230209:14014019,10510515,0 +(1,20320:12599879,22230209:14014019,10510515,0 +(1,20320:12599879,22230209:0,10510515,0 +(1,20320:12599879,22230209:0,14208860,0 +(1,20320:12599879,22230209:18945146,14208860,0 +) +k1,20320:12599879,22230209:-18945146 +) +) +g1,20320:26613898,22230209 +) +) +) +g1,20321:26613923,22230209 +k1,20321:32583029,22230209:5969106 +) +(1,20327:6630773,23881721:25952256,505283,126483 +(1,20327:6630773,23881721:0,0,0 +g1,20327:6630773,23881721 +) +g1,20327:10278507,23881721 +k1,20327:32583029,23881721:20829962 +g1,20327:32583029,23881721 +) +(1,20330:6630773,25140017:25952256,513147,126483 +k1,20329:7378791,25140017:278125 +k1,20329:8188412,25140017:278124 +k1,20329:9752353,25140017:278125 +k1,20329:12660438,25140017:278125 +k1,20329:13589990,25140017:278124 +k1,20329:15065458,25140017:278125 +k1,20329:18590237,25140017:278125 +k1,20329:20266900,25140017:278125 +k1,20329:21938975,25140017:278124 +k1,20329:23731637,25140017:278125 +k1,20329:27072915,25140017:278125 +k1,20329:27967077,25140017:278124 +k1,20329:28601062,25140017:278125 +k1,20329:32583029,25140017:0 +) +(1,20330:6630773,26005097:25952256,505283,7863 +k1,20330:32583028,26005097:24206376 +g1,20330:32583028,26005097 +) +v1,20332:6630773,26689952:0,393216,0 +(1,20338:6630773,28393739:25952256,2097003,196608 +g1,20338:6630773,28393739 +g1,20338:6630773,28393739 +g1,20338:6434165,28393739 +(1,20338:6434165,28393739:0,2097003,196608 +r1,20362:32779637,28393739:26345472,2293611,196608 +k1,20338:6434165,28393739:-26345472 +) +(1,20338:6434165,28393739:26345472,2097003,196608 +[1,20338:6630773,28393739:25952256,1900395,0 +(1,20334:6630773,26917783:25952256,424439,112852 +(1,20333:6630773,26917783:0,0,0 +g1,20333:6630773,26917783 +g1,20333:6630773,26917783 +g1,20333:6303093,26917783 +(1,20333:6303093,26917783:0,0,0 +) +g1,20333:6630773,26917783 +) +k1,20334:6630773,26917783:0 +g1,20334:10614221,26917783 +g1,20334:11278129,26917783 +g1,20334:13933761,26917783 +g1,20334:16589393,26917783 +g1,20334:18581117,26917783 +h1,20334:18913071,26917783:0,0,0 +k1,20334:32583029,26917783:13669958 +g1,20334:32583029,26917783 +) +(1,20335:6630773,27602638:25952256,424439,112852 +h1,20335:6630773,27602638:0,0,0 +g1,20335:6962727,27602638 +g1,20335:7294681,27602638 +g1,20335:11610082,27602638 +h1,20335:11942036,27602638:0,0,0 +k1,20335:32583028,27602638:20640992 +g1,20335:32583028,27602638 +) +(1,20336:6630773,28287493:25952256,424439,106246 +h1,20336:6630773,28287493:0,0,0 +g1,20336:6962727,28287493 +g1,20336:7294681,28287493 +g1,20336:16589391,28287493 +g1,20336:17253299,28287493 +g1,20336:20904792,28287493 +g1,20336:21568700,28287493 +g1,20336:23228470,28287493 +g1,20336:24888240,28287493 +g1,20336:25552148,28287493 +g1,20336:27875826,28287493 +h1,20336:28207780,28287493:0,0,0 +k1,20336:32583029,28287493:4375249 +g1,20336:32583029,28287493 +) +] +) +g1,20338:32583029,28393739 +g1,20338:6630773,28393739 +g1,20338:6630773,28393739 +g1,20338:32583029,28393739 +g1,20338:32583029,28393739 +) +h1,20338:6630773,28590347:0,0,0 +(1,20341:6630773,39166372:25952256,10510489,0 +k1,20341:12599879,39166372:5969106 +h1,20340:12599879,39166372:0,0,0 +(1,20340:12599879,39166372:14014044,10510489,0 +(1,20340:12599879,39166372:14014019,10510515,0 +(1,20340:12599879,39166372:14014019,10510515,0 +(1,20340:12599879,39166372:0,10510515,0 +(1,20340:12599879,39166372:0,14208860,0 +(1,20340:12599879,39166372:18945146,14208860,0 +) +k1,20340:12599879,39166372:-18945146 +) +) +g1,20340:26613898,39166372 +) +) +) +g1,20341:26613923,39166372 +k1,20341:32583029,39166372:5969106 +) +(1,20348:6630773,40031452:25952256,513147,126483 +h1,20347:6630773,40031452:983040,0,0 +k1,20347:8337094,40031452:253388 +k1,20347:9121980,40031452:253389 +k1,20347:10661184,40031452:253388 +k1,20347:13544532,40031452:253388 +k1,20347:14449349,40031452:253389 +k1,20347:15795222,40031452:253388 +k1,20347:18810954,40031452:253389 +(1,20347:18810954,40031452:0,452978,115847 +r1,20362:20927779,40031452:2116825,568825,115847 +k1,20347:18810954,40031452:-2116825 +) +(1,20347:18810954,40031452:2116825,452978,115847 +k1,20347:18810954,40031452:3277 +h1,20347:20924502,40031452:0,411205,112570 +) +k1,20347:21181167,40031452:253388 +k1,20347:22626000,40031452:253388 +(1,20347:22626000,40031452:0,452978,115847 +r1,20362:24742825,40031452:2116825,568825,115847 +k1,20347:22626000,40031452:-2116825 +) +(1,20347:22626000,40031452:2116825,452978,115847 +k1,20347:22626000,40031452:3277 +h1,20347:24739548,40031452:0,411205,112570 +) +k1,20347:24996214,40031452:253389 +k1,20347:26692049,40031452:253388 +k1,20347:27893088,40031452:253388 +k1,20347:29165562,40031452:253389 +k1,20347:31010820,40031452:253388 +k1,20347:32583029,40031452:0 +) +(1,20348:6630773,40896532:25952256,513147,126483 +g1,20347:8021447,40896532 +g1,20347:8872104,40896532 +g1,20347:11501408,40896532 +g1,20347:12056497,40896532 +g1,20347:15018069,40896532 +(1,20347:15018069,40896532:0,414482,115847 +r1,20362:16431470,40896532:1413401,530329,115847 +k1,20347:15018069,40896532:-1413401 +) +(1,20347:15018069,40896532:1413401,414482,115847 +k1,20347:15018069,40896532:3277 +h1,20347:16428193,40896532:0,411205,112570 +) +g1,20347:16630699,40896532 +g1,20347:17481356,40896532 +g1,20347:18428351,40896532 +g1,20347:20140806,40896532 +g1,20347:21026197,40896532 +g1,20347:21581286,40896532 +g1,20347:25027169,40896532 +g1,20347:26478791,40896532 +k1,20348:32583029,40896532:4416686 +g1,20348:32583029,40896532 +) +v1,20350:6630773,41581387:0,393216,0 +(1,20355:6630773,43265356:25952256,2077185,196608 +g1,20355:6630773,43265356 +g1,20355:6630773,43265356 +g1,20355:6434165,43265356 +(1,20355:6434165,43265356:0,2077185,196608 +r1,20362:32779637,43265356:26345472,2273793,196608 +k1,20355:6434165,43265356:-26345472 +) +(1,20355:6434165,43265356:26345472,2077185,196608 +[1,20355:6630773,43265356:25952256,1880577,0 +(1,20352:6630773,41809218:25952256,424439,106246 +(1,20351:6630773,41809218:0,0,0 +g1,20351:6630773,41809218 +g1,20351:6630773,41809218 +g1,20351:6303093,41809218 +(1,20351:6303093,41809218:0,0,0 +) +g1,20351:6630773,41809218 +) +k1,20352:7167884,41809218:537111 +k1,20352:7704995,41809218:537111 +k1,20352:17204863,41809218:537112 +k1,20352:18073928,41809218:537111 +k1,20352:21930578,41809218:537111 +k1,20352:22799643,41809218:537111 +k1,20352:23668708,41809218:537111 +k1,20352:27525359,41809218:537112 +k1,20352:29390286,41809218:537111 +k1,20352:30259351,41809218:537111 +k1,20352:32583029,41809218:0 +) +(1,20352:6630773,42494073:25952256,424439,86428 +g1,20352:9286405,42494073 +g1,20352:9950313,42494073 +k1,20352:9950313,42494073:0 +h1,20352:10946175,42494073:0,0,0 +k1,20352:32583029,42494073:21636854 +g1,20352:32583029,42494073 +) +(1,20353:6630773,43178928:25952256,424439,86428 +h1,20353:6630773,43178928:0,0,0 +g1,20353:6962727,43178928 +g1,20353:7294681,43178928 +g1,20353:7626635,43178928 +g1,20353:7958589,43178928 +g1,20353:8290543,43178928 +g1,20353:8622497,43178928 +g1,20353:8954451,43178928 +g1,20353:9286405,43178928 +g1,20353:9618359,43178928 +g1,20353:9950313,43178928 +g1,20353:10282267,43178928 +g1,20353:10614221,43178928 +g1,20353:10946175,43178928 +g1,20353:11278129,43178928 +g1,20353:11610083,43178928 +g1,20353:11942037,43178928 +g1,20353:12273991,43178928 +g1,20353:12605945,43178928 +g1,20353:12937899,43178928 +g1,20353:13269853,43178928 +g1,20353:13601807,43178928 +g1,20353:13933761,43178928 +g1,20353:14265715,43178928 +g1,20353:14597669,43178928 +g1,20353:14929623,43178928 +g1,20353:15261577,43178928 +g1,20353:15593531,43178928 +g1,20353:15925485,43178928 +g1,20353:16257439,43178928 +g1,20353:16589393,43178928 +g1,20353:16921347,43178928 +g1,20353:17253301,43178928 +g1,20353:17585255,43178928 +g1,20353:17917209,43178928 +g1,20353:18249163,43178928 +g1,20353:18581117,43178928 +g1,20353:18913071,43178928 +g1,20353:19245025,43178928 +g1,20353:19576979,43178928 +g1,20353:19908933,43178928 +g1,20353:20240887,43178928 +g1,20353:22564565,43178928 +g1,20353:23228473,43178928 +g1,20353:24888243,43178928 +g1,20353:26548013,43178928 +g1,20353:27875829,43178928 +h1,20353:30199507,43178928:0,0,0 +k1,20353:32583029,43178928:2383522 +g1,20353:32583029,43178928 +) +] +) +g1,20355:32583029,43265356 +g1,20355:6630773,43265356 +g1,20355:6630773,43265356 +g1,20355:32583029,43265356 +g1,20355:32583029,43265356 +) +h1,20355:6630773,43461964:0,0,0 +] +(1,20362:32583029,45706769:0,0,0 +g1,20362:32583029,45706769 +) +) +] +(1,20362:6630773,47279633:25952256,0,0 +h1,20362:6630773,47279633:25952256,0,0 +) +] +(1,20362:4262630,4025873:0,0,0 +[1,20362:-473656,4025873:0,0,0 +(1,20362:-473656,-710413:0,0,0 +(1,20362:-473656,-710413:0,0,0 +g1,20362:-473656,-710413 +) +g1,20362:-473656,-710413 +) +] +) +] +!16017 +}345 +Input:3305:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!106 +{346 +[1,20420:4262630,47279633:28320399,43253760,0 +(1,20420:4262630,4025873:0,0,0 +[1,20420:-473656,4025873:0,0,0 +(1,20420:-473656,-710413:0,0,0 +(1,20420:-473656,-644877:0,0,0 +k1,20420:-473656,-644877:-65536 ) -(1,20467:-473656,4736287:0,0,0 -k1,20467:-473656,4736287:5209943 +(1,20420:-473656,4736287:0,0,0 +k1,20420:-473656,4736287:5209943 ) -g1,20467:-473656,-710413 +g1,20420:-473656,-710413 ) ] ) -[1,20467:6630773,47279633:25952256,43253760,0 -[1,20467:6630773,4812305:25952256,786432,0 -(1,20467:6630773,4812305:25952256,513147,126483 -(1,20467:6630773,4812305:25952256,513147,126483 -g1,20467:3078558,4812305 -[1,20467:3078558,4812305:0,0,0 -(1,20467:3078558,2439708:0,1703936,0 -k1,20467:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,20467:2537886,2439708:1179648,16384,0 +[1,20420:6630773,47279633:25952256,43253760,0 +[1,20420:6630773,4812305:25952256,786432,0 +(1,20420:6630773,4812305:25952256,505283,11795 +(1,20420:6630773,4812305:25952256,505283,11795 +g1,20420:3078558,4812305 +[1,20420:3078558,4812305:0,0,0 +(1,20420:3078558,2439708:0,1703936,0 +k1,20420:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,20420:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,20467:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,20420:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,20467:3078558,4812305:0,0,0 -(1,20467:3078558,2439708:0,1703936,0 -g1,20467:29030814,2439708 -g1,20467:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,20467:36151628,1915420:16384,1179648,0 +[1,20420:3078558,4812305:0,0,0 +(1,20420:3078558,2439708:0,1703936,0 +g1,20420:29030814,2439708 +g1,20420:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,20420:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,20467:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,20420:37855564,2439708:1179648,16384,0 ) ) -k1,20467:3078556,2439708:-34777008 +k1,20420:3078556,2439708:-34777008 ) ] -[1,20467:3078558,4812305:0,0,0 -(1,20467:3078558,49800853:0,16384,2228224 -k1,20467:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,20467:2537886,49800853:1179648,16384,0 +[1,20420:3078558,4812305:0,0,0 +(1,20420:3078558,49800853:0,16384,2228224 +k1,20420:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,20420:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,20467:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,20420:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,20467:3078558,4812305:0,0,0 -(1,20467:3078558,49800853:0,16384,2228224 -g1,20467:29030814,49800853 -g1,20467:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,20467:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] -) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,20467:37855564,49800853:1179648,16384,0 -) -) -k1,20467:3078556,49800853:-34777008 -) -] -g1,20467:6630773,4812305 -k1,20467:21350816,4812305:13524666 -g1,20467:21999622,4812305 -g1,20467:25611966,4812305 -g1,20467:28956923,4812305 -g1,20467:29772190,4812305 -) -) -] -[1,20467:6630773,45706769:25952256,40108032,0 -(1,20467:6630773,45706769:25952256,40108032,0 -(1,20467:6630773,45706769:0,0,0 -g1,20467:6630773,45706769 -) -[1,20467:6630773,45706769:25952256,40108032,0 -(1,20412:6630773,6254097:25952256,513147,126483 -(1,20411:6630773,6254097:0,452978,115847 -r1,20467:14726699,6254097:8095926,568825,115847 -k1,20411:6630773,6254097:-8095926 -) -(1,20411:6630773,6254097:8095926,452978,115847 -k1,20411:6630773,6254097:3277 -h1,20411:14723422,6254097:0,411205,112570 -) -k1,20411:15184053,6254097:457354 -k1,20411:16832852,6254097:457354 -(1,20411:16832852,6254097:0,452978,115847 -r1,20467:23873643,6254097:7040791,568825,115847 -k1,20411:16832852,6254097:-7040791 -) -(1,20411:16832852,6254097:7040791,452978,115847 -k1,20411:16832852,6254097:3277 -h1,20411:23870366,6254097:0,411205,112570 -) -k1,20411:24330997,6254097:457354 -k1,20411:27218426,6254097:457354 -k1,20411:30201538,6254097:457354 -k1,20411:31923737,6254097:457354 -k1,20411:32583029,6254097:0 -) -(1,20412:6630773,7095585:25952256,505283,126483 -g1,20411:9191264,7095585 -g1,20411:11245162,7095585 -g1,20411:12253761,7095585 -k1,20412:32583030,7095585:17635084 -g1,20412:32583030,7095585 -) -(1,20413:6630773,9186845:25952256,555811,12975 -(1,20413:6630773,9186845:2450326,534184,12975 -g1,20413:6630773,9186845 -g1,20413:9081099,9186845 -) -g1,20413:11819063,9186845 -k1,20413:32583028,9186845:18578208 -g1,20413:32583028,9186845 -) -(1,20416:6630773,10421549:25952256,513147,134348 -k1,20415:8812903,10421549:140684 -k1,20415:11287324,10421549:140684 -k1,20415:12970726,10421549:140684 -k1,20415:13770702,10421549:140684 -k1,20415:16739919,10421549:140684 -k1,20415:18256204,10421549:140684 -k1,20415:19569327,10421549:140684 -k1,20415:21426399,10421549:140684 -k1,20415:22226375,10421549:140684 -k1,20415:24269569,10421549:140684 -k1,20415:25914304,10421549:140684 -k1,20415:29012628,10421549:140684 -k1,20415:32583029,10421549:0 -) -(1,20416:6630773,11263037:25952256,513147,126483 -k1,20415:8007434,11263037:185216 -k1,20415:10892078,11263037:185216 -k1,20415:11564867,11263037:185201 -k1,20415:13332122,11263037:185216 -k1,20415:14903424,11263037:185216 -k1,20415:15747932,11263037:185216 -k1,20415:17835657,11263037:185215 -k1,20415:22429480,11263037:185216 -k1,20415:23562347,11263037:185216 -k1,20415:24513679,11263037:185216 -k1,20415:25717979,11263037:185215 -k1,20415:29077759,11263037:185216 -k1,20415:31181869,11263037:185216 -k1,20416:32583029,11263037:0 -) -(1,20416:6630773,12104525:25952256,505283,126483 -k1,20415:8371410,12104525:148767 -k1,20415:9727349,12104525:148766 -k1,20415:11841541,12104525:148767 -k1,20415:12606346,12104525:148767 -k1,20415:15088849,12104525:148766 -k1,20415:16780334,12104525:148767 -k1,20415:18796876,12104525:148766 -k1,20415:21264306,12104525:148767 -k1,20415:22970864,12104525:148767 -k1,20415:24111190,12104525:148766 -k1,20415:24911385,12104525:148767 -k1,20415:25807918,12104525:148767 -k1,20415:27469910,12104525:148766 -k1,20415:29012628,12104525:148767 -k1,20415:32583029,12104525:0 -) -(1,20416:6630773,12946013:25952256,513147,126483 -k1,20415:9823687,12946013:177603 -k1,20415:11073458,12946013:177602 -k1,20415:12631249,12946013:177603 -k1,20415:15925743,12946013:177602 -k1,20415:17122431,12946013:177603 -k1,20415:20870435,12946013:177603 -k1,20415:23058682,12946013:177602 -k1,20415:24503751,12946013:177603 -k1,20415:26028119,12946013:177603 -k1,20415:26888606,12946013:177602 -k1,20415:29472691,12946013:177603 -k1,20415:31101915,12946013:177602 -k1,20415:32227169,12946013:177603 -k1,20415:32583029,12946013:0 -) -(1,20416:6630773,13787501:25952256,513147,134348 -k1,20415:8592353,13787501:180967 -k1,20415:9432611,13787501:180966 -k1,20415:11797893,13787501:180967 -k1,20415:13170305,13787501:180967 -k1,20415:14785200,13787501:180967 -k1,20415:18007692,13787501:180966 -k1,20415:19827714,13787501:180967 -k1,20415:20624719,13787501:180967 -k1,20415:21824771,13787501:180967 -k1,20415:23283034,13787501:180966 -k1,20415:25199394,13787501:180967 -k1,20415:25736221,13787501:180967 -k1,20415:28442946,13787501:180967 -k1,20415:29558455,13787501:180966 -k1,20415:30398714,13787501:180967 -k1,20415:32583029,13787501:0 -) -(1,20416:6630773,14628989:25952256,513147,134348 -k1,20415:7799117,14628989:214795 -k1,20415:9677871,14628989:214795 -k1,20415:10911752,14628989:214796 -k1,20415:12981871,14628989:214795 -k1,20415:15272191,14628989:214795 -k1,20415:16296356,14628989:214795 -k1,20415:18009304,14628989:214795 -h1,20415:19204681,14628989:0,0,0 -k1,20415:19419476,14628989:214795 -k1,20415:20706441,14628989:214796 -k1,20415:23862492,14628989:214795 -(1,20415:23862492,14628989:0,452978,122846 -r1,20467:31606706,14628989:7744214,575824,122846 -k1,20415:23862492,14628989:-7744214 -) -(1,20415:23862492,14628989:7744214,452978,122846 -k1,20415:23862492,14628989:3277 -h1,20415:31603429,14628989:0,411205,112570 -) -k1,20415:31821501,14628989:214795 -k1,20416:32583029,14628989:0 -) -(1,20416:6630773,15470477:25952256,452978,115847 -(1,20415:6630773,15470477:0,452978,115847 -r1,20467:13671564,15470477:7040791,568825,115847 -k1,20415:6630773,15470477:-7040791 -) -(1,20415:6630773,15470477:7040791,452978,115847 -k1,20415:6630773,15470477:3277 -h1,20415:13668287,15470477:0,411205,112570 -) -k1,20416:32583030,15470477:18737796 -g1,20416:32583030,15470477 -) -v1,20418:6630773,16585563:0,393216,0 -(1,20429:6630773,21557614:25952256,5365267,196608 -g1,20429:6630773,21557614 -g1,20429:6630773,21557614 -g1,20429:6434165,21557614 -(1,20429:6434165,21557614:0,5365267,196608 -r1,20467:32779637,21557614:26345472,5561875,196608 -k1,20429:6434165,21557614:-26345472 -) -(1,20429:6434165,21557614:26345472,5365267,196608 -[1,20429:6630773,21557614:25952256,5168659,0 -(1,20420:6630773,16793181:25952256,404226,107478 -(1,20419:6630773,16793181:0,0,0 -g1,20419:6630773,16793181 -g1,20419:6630773,16793181 -g1,20419:6303093,16793181 -(1,20419:6303093,16793181:0,0,0 -) -g1,20419:6630773,16793181 -) -g1,20420:7263065,16793181 -g1,20420:8211502,16793181 -g1,20420:9476085,16793181 -g1,20420:12005251,16793181 -g1,20420:14534417,16793181 -g1,20420:15166709,16793181 -g1,20420:16431292,16793181 -g1,20420:17063584,16793181 -g1,20420:18012021,16793181 -g1,20420:20857332,16793181 -g1,20420:22754206,16793181 -g1,20420:23702643,16793181 -k1,20420:23702643,16793181:0 -h1,20420:27180245,16793181:0,0,0 -k1,20420:32583029,16793181:5402784 -g1,20420:32583029,16793181 -) -(1,20421:6630773,17459359:25952256,410518,101187 -h1,20421:6630773,17459359:0,0,0 -g1,20421:7263065,17459359 -g1,20421:8843794,17459359 -g1,20421:10424523,17459359 -g1,20421:11689106,17459359 -g1,20421:12321398,17459359 -g1,20421:13585981,17459359 -g1,20421:14218273,17459359 -k1,20421:14218273,17459359:0 -h1,20421:17379730,17459359:0,0,0 -k1,20421:32583029,17459359:15203299 -g1,20421:32583029,17459359 -) -(1,20422:6630773,18125537:25952256,404226,76021 -h1,20422:6630773,18125537:0,0,0 -k1,20422:6630773,18125537:0 -h1,20422:11056813,18125537:0,0,0 -k1,20422:32583029,18125537:21526216 -g1,20422:32583029,18125537 -) -(1,20423:6630773,18791715:25952256,388497,9436 -h1,20423:6630773,18791715:0,0,0 -g1,20423:7263065,18791715 -g1,20423:8211503,18791715 -h1,20423:9476086,18791715:0,0,0 -k1,20423:32583030,18791715:23106944 -g1,20423:32583030,18791715 -) -(1,20424:6630773,19457893:25952256,404226,107478 -h1,20424:6630773,19457893:0,0,0 -g1,20424:7263065,19457893 -g1,20424:8211503,19457893 -g1,20424:9159940,19457893 -g1,20424:9792232,19457893 -g1,20424:11056816,19457893 -g1,20424:11689108,19457893 -g1,20424:13269838,19457893 -g1,20424:13902130,19457893 -g1,20424:19276607,19457893 -g1,20424:20857336,19457893 -g1,20424:21489628,19457893 -g1,20424:22438066,19457893 -g1,20424:23386503,19457893 -g1,20424:24018795,19457893 -g1,20424:27180253,19457893 -g1,20424:27812545,19457893 -h1,20424:28444837,19457893:0,0,0 -k1,20424:32583029,19457893:4138192 -g1,20424:32583029,19457893 -) -(1,20425:6630773,20124071:25952256,410518,101187 -h1,20425:6630773,20124071:0,0,0 -g1,20425:9159939,20124071 -g1,20425:10108377,20124071 -g1,20425:14534417,20124071 -h1,20425:15166708,20124071:0,0,0 -k1,20425:32583028,20124071:17416320 -g1,20425:32583028,20124071 -) -(1,20426:6630773,20790249:25952256,404226,101187 -h1,20426:6630773,20790249:0,0,0 -g1,20426:11689104,20790249 -g1,20426:12637542,20790249 -h1,20426:14850562,20790249:0,0,0 -k1,20426:32583030,20790249:17732468 -g1,20426:32583030,20790249 -) -(1,20427:6630773,21456427:25952256,404226,101187 -h1,20427:6630773,21456427:0,0,0 -g1,20427:12637542,21456427 -g1,20427:14218271,21456427 -g1,20427:15166709,21456427 -g1,20427:21173478,21456427 -g1,20427:22754207,21456427 -g1,20427:23386499,21456427 -h1,20427:24018790,21456427:0,0,0 -k1,20427:32583029,21456427:8564239 -g1,20427:32583029,21456427 -) -] -) -g1,20429:32583029,21557614 -g1,20429:6630773,21557614 -g1,20429:6630773,21557614 -g1,20429:32583029,21557614 -g1,20429:32583029,21557614 -) -h1,20429:6630773,21754222:0,0,0 -v1,20433:6630773,23318215:0,393216,0 -(1,20437:6630773,23633312:25952256,708313,196608 -g1,20437:6630773,23633312 -g1,20437:6630773,23633312 -g1,20437:6434165,23633312 -(1,20437:6434165,23633312:0,708313,196608 -r1,20467:32779637,23633312:26345472,904921,196608 -k1,20437:6434165,23633312:-26345472 -) -(1,20437:6434165,23633312:26345472,708313,196608 -[1,20437:6630773,23633312:25952256,511705,0 -(1,20435:6630773,23532125:25952256,410518,101187 -(1,20434:6630773,23532125:0,0,0 -g1,20434:6630773,23532125 -g1,20434:6630773,23532125 -g1,20434:6303093,23532125 -(1,20434:6303093,23532125:0,0,0 -) -g1,20434:6630773,23532125 -) -g1,20435:10108376,23532125 -g1,20435:11056814,23532125 -g1,20435:11689106,23532125 -g1,20435:12321398,23532125 -g1,20435:14850564,23532125 -g1,20435:15799002,23532125 -g1,20435:17063585,23532125 -g1,20435:17695877,23532125 -h1,20435:19276606,23532125:0,0,0 -k1,20435:32583029,23532125:13306423 -g1,20435:32583029,23532125 -) -] -) -g1,20437:32583029,23633312 -g1,20437:6630773,23633312 -g1,20437:6630773,23633312 -g1,20437:32583029,23633312 -g1,20437:32583029,23633312 -) -h1,20437:6630773,23829920:0,0,0 -v1,20441:6630773,25393913:0,393216,0 -(1,20454:6630773,31704611:25952256,6703914,196608 -g1,20454:6630773,31704611 -g1,20454:6630773,31704611 -g1,20454:6434165,31704611 -(1,20454:6434165,31704611:0,6703914,196608 -r1,20467:32779637,31704611:26345472,6900522,196608 -k1,20454:6434165,31704611:-26345472 -) -(1,20454:6434165,31704611:26345472,6703914,196608 -[1,20454:6630773,31704611:25952256,6507306,0 -(1,20443:6630773,25601531:25952256,404226,107478 -(1,20442:6630773,25601531:0,0,0 -g1,20442:6630773,25601531 -g1,20442:6630773,25601531 -g1,20442:6303093,25601531 -(1,20442:6303093,25601531:0,0,0 -) -g1,20442:6630773,25601531 -) -k1,20443:6630773,25601531:0 -g1,20443:14218270,25601531 -h1,20443:14534416,25601531:0,0,0 -k1,20443:32583028,25601531:18048612 -g1,20443:32583028,25601531 -) -(1,20444:6630773,26267709:25952256,410518,101187 -h1,20444:6630773,26267709:0,0,0 -g1,20444:6946919,26267709 -g1,20444:7263065,26267709 -g1,20444:15798999,26267709 -g1,20444:16431291,26267709 -k1,20444:16431291,26267709:0 -h1,20444:19908894,26267709:0,0,0 -k1,20444:32583029,26267709:12674135 -g1,20444:32583029,26267709 -) -(1,20445:6630773,26933887:25952256,404226,82312 -h1,20445:6630773,26933887:0,0,0 -g1,20445:6946919,26933887 -g1,20445:7263065,26933887 -g1,20445:7579211,26933887 -g1,20445:7895357,26933887 -g1,20445:8211503,26933887 -g1,20445:8527649,26933887 -g1,20445:8843795,26933887 -g1,20445:9159941,26933887 -g1,20445:9476087,26933887 -g1,20445:9792233,26933887 -g1,20445:10108379,26933887 -g1,20445:10424525,26933887 -g1,20445:10740671,26933887 -g1,20445:11056817,26933887 -g1,20445:11372963,26933887 -g1,20445:11689109,26933887 -g1,20445:12005255,26933887 -g1,20445:12321401,26933887 -g1,20445:12637547,26933887 -g1,20445:12953693,26933887 -g1,20445:13269839,26933887 -g1,20445:15482859,26933887 -g1,20445:16115151,26933887 -k1,20445:16115151,26933887:0 -h1,20445:18012025,26933887:0,0,0 -k1,20445:32583029,26933887:14571004 -g1,20445:32583029,26933887 -) -(1,20446:6630773,27600065:25952256,404226,107478 -h1,20446:6630773,27600065:0,0,0 -g1,20446:6946919,27600065 -g1,20446:7263065,27600065 -g1,20446:7579211,27600065 -g1,20446:7895357,27600065 -g1,20446:8211503,27600065 -g1,20446:8527649,27600065 -g1,20446:8843795,27600065 -g1,20446:9159941,27600065 -g1,20446:9476087,27600065 -g1,20446:9792233,27600065 -g1,20446:10108379,27600065 -g1,20446:10424525,27600065 -g1,20446:10740671,27600065 -g1,20446:11056817,27600065 -g1,20446:11372963,27600065 -g1,20446:11689109,27600065 -g1,20446:12005255,27600065 -g1,20446:12321401,27600065 -g1,20446:12637547,27600065 -g1,20446:12953693,27600065 -g1,20446:13269839,27600065 -g1,20446:15799005,27600065 -g1,20446:16431297,27600065 -g1,20446:18328172,27600065 -g1,20446:18960464,27600065 -k1,20446:18960464,27600065:0 -h1,20446:19592756,27600065:0,0,0 -k1,20446:32583029,27600065:12990273 -g1,20446:32583029,27600065 -) -(1,20447:6630773,28266243:25952256,404226,107478 -h1,20447:6630773,28266243:0,0,0 -g1,20447:6946919,28266243 -g1,20447:7263065,28266243 -g1,20447:7579211,28266243 -g1,20447:7895357,28266243 -g1,20447:8211503,28266243 -g1,20447:8527649,28266243 -g1,20447:8843795,28266243 -g1,20447:9159941,28266243 -g1,20447:9476087,28266243 -g1,20447:9792233,28266243 -g1,20447:10108379,28266243 -g1,20447:10424525,28266243 -g1,20447:10740671,28266243 -g1,20447:11056817,28266243 -g1,20447:11372963,28266243 -g1,20447:11689109,28266243 -g1,20447:12005255,28266243 -g1,20447:12321401,28266243 -g1,20447:12637547,28266243 -g1,20447:12953693,28266243 -g1,20447:13269839,28266243 -g1,20447:13585985,28266243 -g1,20447:13902131,28266243 -g1,20447:14218277,28266243 -g1,20447:14534423,28266243 -g1,20447:14850569,28266243 -g1,20447:15166715,28266243 -g1,20447:15482861,28266243 -g1,20447:15799007,28266243 -g1,20447:16115153,28266243 -g1,20447:16431299,28266243 -g1,20447:16747445,28266243 -g1,20447:17063591,28266243 -g1,20447:17379737,28266243 -g1,20447:17695883,28266243 -g1,20447:18328175,28266243 -g1,20447:18960467,28266243 -g1,20447:22754215,28266243 -g1,20447:23386507,28266243 -k1,20447:23386507,28266243:0 -h1,20447:24018799,28266243:0,0,0 -k1,20447:32583029,28266243:8564230 -g1,20447:32583029,28266243 -) -(1,20448:6630773,28932421:25952256,410518,107478 -h1,20448:6630773,28932421:0,0,0 -g1,20448:6946919,28932421 -g1,20448:7263065,28932421 -g1,20448:7579211,28932421 -g1,20448:7895357,28932421 -g1,20448:8211503,28932421 -g1,20448:8527649,28932421 -g1,20448:8843795,28932421 -g1,20448:9159941,28932421 -g1,20448:9476087,28932421 -g1,20448:9792233,28932421 -g1,20448:10108379,28932421 -g1,20448:10424525,28932421 -g1,20448:10740671,28932421 -g1,20448:11056817,28932421 -g1,20448:11372963,28932421 -g1,20448:11689109,28932421 -g1,20448:12005255,28932421 -g1,20448:12321401,28932421 -g1,20448:12637547,28932421 -g1,20448:12953693,28932421 -g1,20448:13269839,28932421 -g1,20448:13585985,28932421 -g1,20448:13902131,28932421 -g1,20448:14218277,28932421 -g1,20448:14534423,28932421 -g1,20448:14850569,28932421 -g1,20448:15166715,28932421 -g1,20448:15482861,28932421 -g1,20448:15799007,28932421 -g1,20448:16115153,28932421 -g1,20448:16431299,28932421 -g1,20448:16747445,28932421 -g1,20448:17063591,28932421 -g1,20448:17379737,28932421 -g1,20448:17695883,28932421 -g1,20448:18012029,28932421 -g1,20448:18328175,28932421 -g1,20448:18644321,28932421 -g1,20448:18960467,28932421 -g1,20448:19276613,28932421 -g1,20448:19592759,28932421 -g1,20448:19908905,28932421 -g1,20448:20225051,28932421 -g1,20448:20541197,28932421 -g1,20448:20857343,28932421 -g1,20448:24334946,28932421 -g1,20448:24967238,28932421 -g1,20448:25599530,28932421 -g1,20448:26231822,28932421 -k1,20448:26231822,28932421:0 -h1,20448:29077133,28932421:0,0,0 -k1,20448:32583029,28932421:3505896 -g1,20448:32583029,28932421 -) -(1,20449:6630773,29598599:25952256,410518,107478 -h1,20449:6630773,29598599:0,0,0 -g1,20449:6946919,29598599 -g1,20449:7263065,29598599 -g1,20449:7579211,29598599 -g1,20449:7895357,29598599 -g1,20449:8211503,29598599 -g1,20449:8527649,29598599 -g1,20449:8843795,29598599 -g1,20449:9159941,29598599 -g1,20449:9476087,29598599 -g1,20449:9792233,29598599 -g1,20449:10108379,29598599 -g1,20449:10424525,29598599 -g1,20449:10740671,29598599 -g1,20449:11056817,29598599 -g1,20449:11372963,29598599 -g1,20449:11689109,29598599 -g1,20449:12005255,29598599 -g1,20449:12321401,29598599 -g1,20449:12637547,29598599 -g1,20449:12953693,29598599 -g1,20449:13269839,29598599 -g1,20449:13585985,29598599 -g1,20449:13902131,29598599 -g1,20449:14218277,29598599 -g1,20449:14534423,29598599 -g1,20449:14850569,29598599 -g1,20449:15166715,29598599 -g1,20449:15482861,29598599 -g1,20449:15799007,29598599 -g1,20449:16115153,29598599 -g1,20449:16431299,29598599 -g1,20449:16747445,29598599 -g1,20449:17063591,29598599 -g1,20449:17379737,29598599 -g1,20449:17695883,29598599 -g1,20449:19908903,29598599 -g1,20449:20541195,29598599 -k1,20449:20541195,29598599:0 -h1,20449:27180255,29598599:0,0,0 -k1,20449:32583029,29598599:5402774 -g1,20449:32583029,29598599 -) -(1,20450:6630773,30264777:25952256,404226,107478 -h1,20450:6630773,30264777:0,0,0 -g1,20450:6946919,30264777 -g1,20450:7263065,30264777 -g1,20450:7579211,30264777 -g1,20450:7895357,30264777 -g1,20450:8211503,30264777 -g1,20450:8527649,30264777 -g1,20450:8843795,30264777 -g1,20450:9159941,30264777 -g1,20450:9476087,30264777 -g1,20450:9792233,30264777 -g1,20450:10108379,30264777 -g1,20450:10424525,30264777 -g1,20450:10740671,30264777 -g1,20450:11056817,30264777 -g1,20450:11372963,30264777 -g1,20450:11689109,30264777 -g1,20450:12005255,30264777 -g1,20450:12321401,30264777 -g1,20450:12637547,30264777 -g1,20450:12953693,30264777 -g1,20450:13269839,30264777 -g1,20450:17063587,30264777 -g1,20450:17695879,30264777 -g1,20450:19592754,30264777 -h1,20450:19908900,30264777:0,0,0 -k1,20450:32583029,30264777:12674129 -g1,20450:32583029,30264777 -) -(1,20451:6630773,30930955:25952256,404226,107478 -h1,20451:6630773,30930955:0,0,0 -g1,20451:6946919,30930955 -g1,20451:7263065,30930955 -g1,20451:14534416,30930955 -g1,20451:15166708,30930955 -g1,20451:17379728,30930955 -g1,20451:18960457,30930955 -g1,20451:19592749,30930955 -g1,20451:22121915,30930955 -g1,20451:24334935,30930955 -g1,20451:24967227,30930955 -g1,20451:26547957,30930955 -k1,20451:26547957,30930955:0 -h1,20451:27496395,30930955:0,0,0 -k1,20451:32583029,30930955:5086634 -g1,20451:32583029,30930955 -) -(1,20452:6630773,31597133:25952256,404226,107478 -h1,20452:6630773,31597133:0,0,0 -g1,20452:6946919,31597133 -g1,20452:7263065,31597133 -g1,20452:7579211,31597133 -g1,20452:7895357,31597133 -g1,20452:8211503,31597133 -g1,20452:8527649,31597133 -g1,20452:8843795,31597133 -g1,20452:9159941,31597133 -g1,20452:9476087,31597133 -g1,20452:9792233,31597133 -g1,20452:10108379,31597133 -g1,20452:10424525,31597133 -g1,20452:10740671,31597133 -g1,20452:11056817,31597133 -g1,20452:11372963,31597133 -g1,20452:11689109,31597133 -g1,20452:12005255,31597133 -g1,20452:12321401,31597133 -g1,20452:12637547,31597133 -g1,20452:12953693,31597133 -g1,20452:13269839,31597133 -g1,20452:15166713,31597133 -g1,20452:15799005,31597133 -g1,20452:19908899,31597133 -g1,20452:22754210,31597133 -g1,20452:23386502,31597133 -h1,20452:24018794,31597133:0,0,0 -k1,20452:32583029,31597133:8564235 -g1,20452:32583029,31597133 -) -] -) -g1,20454:32583029,31704611 -g1,20454:6630773,31704611 -g1,20454:6630773,31704611 -g1,20454:32583029,31704611 -g1,20454:32583029,31704611 -) -h1,20454:6630773,31901219:0,0,0 -(1,20457:6630773,41499329:25952256,9083666,0 -k1,20457:10523651,41499329:3892878 -h1,20456:10523651,41499329:0,0,0 -(1,20456:10523651,41499329:18166500,9083666,0 -(1,20456:10523651,41499329:18167376,9083688,0 -(1,20456:10523651,41499329:18167376,9083688,0 -(1,20456:10523651,41499329:0,9083688,0 -(1,20456:10523651,41499329:0,14208860,0 -(1,20456:10523651,41499329:28417720,14208860,0 -) -k1,20456:10523651,41499329:-28417720 -) -) -g1,20456:28691027,41499329 -) -) -) -g1,20457:28690151,41499329 -k1,20457:32583029,41499329:3892878 -) -(1,20464:6630773,42340817:25952256,513147,134348 -h1,20463:6630773,42340817:983040,0,0 -k1,20463:8968535,42340817:158035 -k1,20463:12365360,42340817:158036 -k1,20463:13182687,42340817:158035 -k1,20463:15540110,42340817:158035 -k1,20463:17600655,42340817:158035 -k1,20463:18290188,42340817:158036 -k1,20463:19732729,42340817:158035 -k1,20463:21270952,42340817:158035 -k1,20463:24207715,42340817:158036 -k1,20463:25384835,42340817:158035 -k1,20463:26750699,42340817:158035 -k1,20463:29311284,42340817:158035 -k1,20463:30128612,42340817:158036 -k1,20463:31305732,42340817:158035 -k1,20463:32583029,42340817:0 -) -(1,20464:6630773,43182305:25952256,513147,134348 -k1,20463:8544273,43182305:223982 -k1,20463:10276894,43182305:223982 -k1,20463:14691903,43182305:223982 -k1,20463:15447382,43182305:223982 -k1,20463:16690449,43182305:223982 -k1,20463:20106034,43182305:223982 -k1,20463:23577980,43182305:223982 -k1,20463:24461254,43182305:223982 -k1,20463:25704321,43182305:223982 -k1,20463:27674182,43182305:223982 -k1,20463:29094851,43182305:223982 -k1,20463:31343895,43182305:223982 -k1,20463:32227169,43182305:223982 -k1,20463:32583029,43182305:0 -) -(1,20464:6630773,44023793:25952256,513147,126483 -k1,20463:9078190,44023793:248029 -k1,20463:10187361,44023793:248028 -k1,20463:14005791,44023793:248029 -k1,20463:15999698,44023793:248028 -k1,20463:17439172,44023793:248029 -k1,20463:18706285,44023793:248028 -k1,20463:21440095,44023793:248029 -k1,20463:22879568,44023793:248028 -k1,20463:26696032,44023793:248029 -k1,20463:27603352,44023793:248028 -k1,20463:29371816,44023793:248029 -k1,20463:30554387,44023793:248028 -k1,20463:31563944,44023793:248029 -k1,20463:32583029,44023793:0 -) -(1,20464:6630773,44865281:25952256,513147,134348 -k1,20463:9899470,44865281:196369 -k1,20463:12301126,44865281:196369 -k1,20463:13148922,44865281:196368 -k1,20463:16626023,44865281:196369 -(1,20463:16626023,44865281:0,452978,115847 -r1,20467:19446272,44865281:2820249,568825,115847 -k1,20463:16626023,44865281:-2820249 -) -(1,20463:16626023,44865281:2820249,452978,115847 -k1,20463:16626023,44865281:3277 -h1,20463:19442995,44865281:0,411205,112570 -) -k1,20463:19642641,44865281:196369 -k1,20463:20521895,44865281:196369 -k1,20463:21369692,44865281:196369 -(1,20463:21369692,44865281:0,452978,115847 -r1,20467:23486517,44865281:2116825,568825,115847 -k1,20463:21369692,44865281:-2116825 -) -(1,20463:21369692,44865281:2116825,452978,115847 -k1,20463:21369692,44865281:3277 -h1,20463:23483240,44865281:0,411205,112570 -) -k1,20463:23682886,44865281:196369 -k1,20463:25409520,44865281:196368 -k1,20463:26257317,44865281:196369 -k1,20463:27201452,44865281:196369 -k1,20463:29633254,44865281:196369 -k1,20463:32583029,44865281:0 -) -(1,20464:6630773,45706769:25952256,513147,134348 -k1,20463:8924129,45706769:297785 -k1,20463:10489381,45706769:297786 -k1,20463:13291297,45706769:297785 -k1,20463:14608168,45706769:297786 -k1,20463:17915366,45706769:297785 -k1,20463:19232237,45706769:297786 -k1,20463:21543288,45706769:297785 -k1,20463:22500366,45706769:297786 -k1,20463:24223559,45706769:297785 -k1,20463:27305314,45706769:297786 -k1,20463:28254527,45706769:297785 -k1,20463:29571398,45706769:297786 -k1,20463:31931601,45706769:297785 -k1,20463:32583029,45706769:0 -) -] -(1,20467:32583029,45706769:0,0,0 -g1,20467:32583029,45706769 -) -) -] -(1,20467:6630773,47279633:25952256,0,0 -h1,20467:6630773,47279633:25952256,0,0 -) -] -(1,20467:4262630,4025873:0,0,0 -[1,20467:-473656,4025873:0,0,0 -(1,20467:-473656,-710413:0,0,0 -(1,20467:-473656,-710413:0,0,0 -g1,20467:-473656,-710413 -) -g1,20467:-473656,-710413 -) -] -) -] -!25882 -}367 -Input:3335:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3336:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3337:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3338:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3339:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3340:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3341:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3342:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3343:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3344:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3345:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3346:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3347:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3348:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3349:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1422 -{368 -[1,20504:4262630,47279633:28320399,43253760,0 -(1,20504:4262630,4025873:0,0,0 -[1,20504:-473656,4025873:0,0,0 -(1,20504:-473656,-710413:0,0,0 -(1,20504:-473656,-644877:0,0,0 -k1,20504:-473656,-644877:-65536 +[1,20420:3078558,4812305:0,0,0 +(1,20420:3078558,49800853:0,16384,2228224 +g1,20420:29030814,49800853 +g1,20420:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,20420:36151628,51504789:16384,1179648,0 +) +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 +) +] +) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,20420:37855564,49800853:1179648,16384,0 +) +) +k1,20420:3078556,49800853:-34777008 +) +] +g1,20420:6630773,4812305 +g1,20420:6630773,4812305 +g1,20420:8724648,4812305 +k1,20420:31387652,4812305:22663004 +) +) +] +[1,20420:6630773,45706769:25952256,40108032,0 +(1,20420:6630773,45706769:25952256,40108032,0 +(1,20420:6630773,45706769:0,0,0 +g1,20420:6630773,45706769 +) +[1,20420:6630773,45706769:25952256,40108032,0 +(1,20359:6630773,6254097:25952256,564462,152109 +(1,20359:6630773,6254097:2450326,534184,12975 +g1,20359:6630773,6254097 +g1,20359:9081099,6254097 +) +g1,20359:11157280,6254097 +g1,20359:12724508,6254097 +g1,20359:14505843,6254097 +g1,20359:16916520,6254097 +g1,20359:18219180,6254097 +$1,20359:18219180,6254097 +$1,20359:18772107,6254097 +g1,20359:18997027,6254097 +g1,20359:20564255,6254097 +$1,20359:20564255,6254097 +$1,20359:21171249,6254097 +k1,20359:32583029,6254097:11411780 +g1,20359:32583029,6254097 +) +(1,20362:6630773,7512393:25952256,505283,134348 +k1,20361:7521866,7512393:263258 +k1,20361:8199902,7512393:263193 +k1,20361:9654605,7512393:263258 +k1,20361:11669640,7512393:263258 +k1,20361:13634868,7512393:263258 +k1,20361:17328936,7512393:263258 +k1,20361:20938462,7512393:263258 +k1,20361:22627128,7512393:263258 +k1,20361:24901031,7512393:263258 +k1,20361:26155848,7512393:263257 +k1,20361:28457276,7512393:263258 +k1,20361:29406696,7512393:263258 +k1,20361:31900144,7512393:263258 +k1,20361:32583029,7512393:0 +) +(1,20362:6630773,8377473:25952256,513147,134348 +k1,20361:9467707,8377473:216805 +k1,20361:11695157,8377473:216805 +k1,20361:14222106,8377473:216805 +k1,20361:15090339,8377473:216805 +k1,20361:17501289,8377473:216805 +k1,20361:22337071,8377473:216804 +k1,20361:24487188,8377473:216805 +k1,20361:26742163,8377473:216805 +k1,20361:27645130,8377473:216805 +k1,20361:30151763,8377473:216805 +k1,20361:31027860,8377473:216805 +k1,20362:32583029,8377473:0 +) +(1,20362:6630773,9242553:25952256,505283,138281 +(1,20361:6630773,9242553:0,414482,115847 +r1,20420:9099310,9242553:2468537,530329,115847 +k1,20361:6630773,9242553:-2468537 +) +(1,20361:6630773,9242553:2468537,414482,115847 +k1,20361:6630773,9242553:3277 +h1,20361:9096033,9242553:0,411205,112570 +) +k1,20361:9333087,9242553:233777 +k1,20361:10671147,9242553:233778 +k1,20361:11652690,9242553:233777 +k1,20361:14471863,9242553:233778 +k1,20361:15357068,9242553:233777 +k1,20361:19161247,9242553:233778 +k1,20361:22459488,9242553:233777 +k1,20361:24186832,9242553:233778 +k1,20361:25106771,9242553:233777 +$1,20361:25106771,9242553 +$1,20361:25609432,9242553 +k1,20361:25843210,9242553:233778 +k1,20361:27268432,9242553:233777 +$1,20361:27268432,9242553 +$1,20361:27820245,9242553 +k1,20361:28227693,9242553:233778 +k1,20361:30680519,9242553:233777 +k1,20361:32583029,9242553:0 +) +(1,20362:6630773,10107633:25952256,513147,126483 +g1,20361:7821562,10107633 +g1,20361:10804760,10107633 +g1,20361:11951640,10107633 +g1,20361:13847596,10107633 +k1,20362:32583029,10107633:15378024 +g1,20362:32583029,10107633 +) +(1,20364:6630773,10972713:25952256,505283,134348 +h1,20363:6630773,10972713:983040,0,0 +k1,20363:8773473,10972713:206111 +k1,20363:10083865,10972713:206110 +k1,20363:11224519,10972713:206111 +k1,20363:13245322,10972713:206111 +k1,20363:14642877,10972713:206110 +k1,20363:16963835,10972713:206111 +k1,20363:18905339,10972713:206111 +k1,20363:22199505,10972713:206110 +k1,20363:23091778,10972713:206111 +k1,20363:24723296,10972713:206110 +k1,20363:25612292,10972713:206111 +k1,20363:27703218,10972713:206111 +k1,20363:29783658,10972713:206110 +k1,20363:30981329,10972713:206111 +k1,20363:32583029,10972713:0 +) +(1,20364:6630773,11837793:25952256,513147,134348 +g1,20363:8630931,11837793 +g1,20363:10538684,11837793 +g1,20363:12131864,11837793 +g1,20363:13350178,11837793 +g1,20363:16575204,11837793 +g1,20363:17390471,11837793 +g1,20363:20500154,11837793 +g1,20363:23897539,11837793 +g1,20363:24779653,11837793 +k1,20364:32583029,11837793:4760541 +g1,20364:32583029,11837793 +) +v1,20367:6630773,12702873:0,393216,0 +(1,20368:6630773,14055613:25952256,1745956,0 +g1,20368:6630773,14055613 +g1,20368:6237557,14055613 +r1,20420:6368629,14055613:131072,1745956,0 +g1,20368:6567858,14055613 +g1,20368:6764466,14055613 +[1,20368:6764466,14055613:25818563,1745956,0 +(1,20368:6764466,13064050:25818563,754393,260573 +(1,20367:6764466,13064050:0,754393,260573 +r1,20420:8010564,13064050:1246098,1014966,260573 +k1,20367:6764466,13064050:-1246098 +) +(1,20367:6764466,13064050:1246098,754393,260573 +) +k1,20367:8237913,13064050:227349 +k1,20367:8565593,13064050:327680 +k1,20367:11778762,13064050:227349 +k1,20367:12997671,13064050:227349 +k1,20367:15269743,13064050:227349 +k1,20367:16113130,13064050:227349 +k1,20367:17359564,13064050:227349 +k1,20367:18971033,13064050:227349 +k1,20367:20370821,13064050:227349 +k1,20367:22899139,13064050:227349 +k1,20367:23812650,13064050:227349 +k1,20367:24908351,13064050:227349 +k1,20367:26127260,13064050:227349 +k1,20367:28090002,13064050:227349 +k1,20367:29889560,13064050:227349 +k1,20367:31931601,13064050:227349 +k1,20367:32583029,13064050:0 +) +(1,20368:6764466,13929130:25818563,513147,126483 +g1,20367:9043808,13929130 +g1,20367:9598897,13929130 +g1,20367:11119987,13929130 +g1,20367:11978508,13929130 +g1,20367:13196822,13929130 +g1,20367:17467803,13929130 +g1,20367:20072859,13929130 +g1,20367:20888126,13929130 +(1,20367:20888126,13929130:0,452978,115847 +r1,20420:22301527,13929130:1413401,568825,115847 +k1,20367:20888126,13929130:-1413401 +) +(1,20367:20888126,13929130:1413401,452978,115847 +k1,20367:20888126,13929130:3277 +h1,20367:22298250,13929130:0,411205,112570 +) +k1,20368:32583029,13929130:10107832 +g1,20368:32583029,13929130 +) +] +g1,20368:32583029,14055613 +) +h1,20368:6630773,14055613:0,0,0 +v1,20371:6630773,14740468:0,393216,0 +(1,20384:6630773,21215351:25952256,6868099,196608 +g1,20384:6630773,21215351 +g1,20384:6630773,21215351 +g1,20384:6434165,21215351 +(1,20384:6434165,21215351:0,6868099,196608 +r1,20420:32779637,21215351:26345472,7064707,196608 +k1,20384:6434165,21215351:-26345472 +) +(1,20384:6434165,21215351:26345472,6868099,196608 +[1,20384:6630773,21215351:25952256,6671491,0 +(1,20373:6630773,14968299:25952256,424439,112852 +(1,20372:6630773,14968299:0,0,0 +g1,20372:6630773,14968299 +g1,20372:6630773,14968299 +g1,20372:6303093,14968299 +(1,20372:6303093,14968299:0,0,0 +) +g1,20372:6630773,14968299 +) +k1,20373:6630773,14968299:0 +g1,20373:10614221,14968299 +g1,20373:11278129,14968299 +k1,20373:11278129,14968299:0 +h1,20373:18581115,14968299:0,0,0 +k1,20373:32583029,14968299:14001914 +g1,20373:32583029,14968299 +) +(1,20374:6630773,15653154:25952256,424439,106246 +h1,20374:6630773,15653154:0,0,0 +g1,20374:6962727,15653154 +g1,20374:7294681,15653154 +g1,20374:7626635,15653154 +g1,20374:7958589,15653154 +g1,20374:8290543,15653154 +g1,20374:8622497,15653154 +g1,20374:8954451,15653154 +g1,20374:14929623,15653154 +g1,20374:16921347,15653154 +g1,20374:17585255,15653154 +g1,20374:20240887,15653154 +g1,20374:24556288,15653154 +h1,20374:24888242,15653154:0,0,0 +k1,20374:32583029,15653154:7694787 +g1,20374:32583029,15653154 +) +(1,20375:6630773,16338009:25952256,424439,112852 +h1,20375:6630773,16338009:0,0,0 +g1,20375:6962727,16338009 +g1,20375:7294681,16338009 +g1,20375:11278128,16338009 +h1,20375:11610082,16338009:0,0,0 +k1,20375:32583030,16338009:20972948 +g1,20375:32583030,16338009 +) +(1,20376:6630773,17022864:25952256,424439,86428 +h1,20376:6630773,17022864:0,0,0 +g1,20376:6962727,17022864 +g1,20376:7294681,17022864 +g1,20376:14597668,17022864 +g1,20376:15261576,17022864 +k1,20376:15261576,17022864:0 +h1,20376:16921346,17022864:0,0,0 +k1,20376:32583029,17022864:15661683 +g1,20376:32583029,17022864 +) +(1,20377:6630773,17707719:25952256,424439,106246 +h1,20377:6630773,17707719:0,0,0 +k1,20377:6952649,17707719:321876 +k1,20377:7274525,17707719:321876 +k1,20377:7596401,17707719:321876 +k1,20377:7918276,17707719:321875 +k1,20377:8240152,17707719:321876 +k1,20377:8562028,17707719:321876 +k1,20377:8883904,17707719:321876 +k1,20377:9205780,17707719:321876 +k1,20377:9527656,17707719:321876 +k1,20377:9849532,17707719:321876 +k1,20377:10171407,17707719:321875 +k1,20377:10493283,17707719:321876 +k1,20377:10815159,17707719:321876 +k1,20377:11137035,17707719:321876 +k1,20377:11458911,17707719:321876 +k1,20377:11780787,17707719:321876 +k1,20377:12102662,17707719:321875 +k1,20377:12424538,17707719:321876 +k1,20377:12746414,17707719:321876 +k1,20377:15060014,17707719:321876 +k1,20377:15713844,17707719:321876 +k1,20377:22010892,17707719:321876 +k1,20377:24656446,17707719:321876 +k1,20377:25642229,17707719:321875 +k1,20377:26296059,17707719:321876 +k1,20377:28609659,17707719:321876 +k1,20377:29263489,17707719:321876 +k1,20377:29263489,17707719:0 +h1,20377:32583029,17707719:0,0,0 +k1,20377:32583029,17707719:0 +k1,20377:32583029,17707719:0 +) +(1,20378:6630773,18392574:25952256,424439,106246 +h1,20378:6630773,18392574:0,0,0 +k1,20378:6884664,18392574:253891 +k1,20378:7138555,18392574:253891 +k1,20378:7392445,18392574:253890 +k1,20378:7646336,18392574:253891 +k1,20378:7900227,18392574:253891 +k1,20378:8154118,18392574:253891 +k1,20378:8408008,18392574:253890 +k1,20378:8661899,18392574:253891 +k1,20378:8915790,18392574:253891 +k1,20378:9169681,18392574:253891 +k1,20378:9423571,18392574:253890 +k1,20378:9677462,18392574:253891 +k1,20378:9931353,18392574:253891 +k1,20378:10185244,18392574:253891 +k1,20378:10439134,18392574:253890 +k1,20378:10693025,18392574:253891 +k1,20378:10946916,18392574:253891 +k1,20378:11200807,18392574:253891 +k1,20378:11454697,18392574:253890 +k1,20378:13700312,18392574:253891 +k1,20378:14286157,18392574:253891 +k1,20378:20515220,18392574:253891 +k1,20378:23092788,18392574:253890 +k1,20378:24010587,18392574:253891 +k1,20378:24596432,18392574:253891 +k1,20378:26842047,18392574:253891 +k1,20378:27427891,18392574:253890 +k1,20378:30669368,18392574:253891 +k1,20378:32251075,18392574:253891 +h1,20378:32583029,18392574:0,0,0 +k1,20378:32583029,18392574:0 +k1,20378:32583029,18392574:0 +) +(1,20379:6630773,19077429:25952256,424439,106246 +h1,20379:6630773,19077429:0,0,0 +g1,20379:6962727,19077429 +g1,20379:7294681,19077429 +g1,20379:15261576,19077429 +g1,20379:15925484,19077429 +g1,20379:17585254,19077429 +g1,20379:21568701,19077429 +g1,20379:23560425,19077429 +h1,20379:23892379,19077429:0,0,0 +k1,20379:32583029,19077429:8690650 +g1,20379:32583029,19077429 +) +(1,20380:6630773,19762284:25952256,424439,106246 +h1,20380:6630773,19762284:0,0,0 +g1,20380:6962727,19762284 +g1,20380:7294681,19762284 +g1,20380:12605944,19762284 +g1,20380:13269852,19762284 +h1,20380:13933760,19762284:0,0,0 +k1,20380:32583028,19762284:18649268 +g1,20380:32583028,19762284 +) +(1,20384:6630773,21102499:25952256,431045,112852 +g1,20384:7626635,21102499 +g1,20384:10614220,21102499 +g1,20384:13269852,21102499 +g1,20384:14929622,21102499 +g1,20384:16589392,21102499 +g1,20384:20240885,21102499 +g1,20384:22896517,21102499 +g1,20384:25220195,21102499 +k1,20384:32583029,21102499:2051571 +g1,20384:32583029,21102499 +) +] +) +g1,20384:32583029,21215351 +g1,20384:6630773,21215351 +g1,20384:6630773,21215351 +g1,20384:32583029,21215351 +g1,20384:32583029,21215351 +) +h1,20384:6630773,21411959:0,0,0 +(1,20387:6630773,30236163:25952256,8758668,0 +k1,20387:7928465,30236163:1297692 +h1,20386:7928465,30236163:0,0,0 +(1,20386:7928465,30236163:23356872,8758668,0 +(1,20386:7928465,30236163:23356506,8758690,0 +(1,20386:7928465,30236163:23356506,8758690,0 +(1,20386:7928465,30236163:0,8758690,0 +(1,20386:7928465,30236163:0,14208860,0 +(1,20386:7928465,30236163:37890292,14208860,0 +) +k1,20386:7928465,30236163:-37890292 +) +) +g1,20386:31284971,30236163 +) +) +) +g1,20387:31285337,30236163 +k1,20387:32583029,30236163:1297692 +) +(1,20394:6630773,31101243:25952256,513147,134348 +h1,20393:6630773,31101243:983040,0,0 +k1,20393:8603883,31101243:229852 +k1,20393:11099316,31101243:229853 +k1,20393:12348253,31101243:229852 +k1,20393:13762341,31101243:229852 +k1,20393:15836376,31101243:229852 +k1,20393:19107100,31101243:229853 +k1,20393:20528397,31101243:229852 +k1,20393:22266888,31101243:229852 +k1,20393:25924273,31101243:229852 +k1,20393:27145686,31101243:229853 +k1,20393:31692395,31101243:229852 +k1,20394:32583029,31101243:0 +) +(1,20394:6630773,31966323:25952256,513147,126483 +k1,20393:8773964,31966323:232161 +k1,20393:10860795,31966323:232162 +k1,20393:11902326,31966323:232161 +k1,20393:13153572,31966323:232161 +k1,20393:15374095,31966323:232161 +k1,20393:16265549,31966323:232162 +k1,20393:17516795,31966323:232161 +k1,20393:19174364,31966323:232161 +k1,20393:20969559,31966323:232161 +k1,20393:22243743,31966323:232162 +k1,20393:25310991,31966323:232161 +k1,20393:26009113,31966323:232161 +k1,20393:27109626,31966323:232161 +k1,20393:28817003,31966323:232162 +k1,20393:29815280,31966323:232161 +k1,20393:31436804,31966323:232161 +k1,20394:32583029,31966323:0 +) +(1,20394:6630773,32831403:25952256,513147,134348 +k1,20393:8746931,32831403:205128 +k1,20393:10962047,32831403:205127 +k1,20393:11523035,32831403:205128 +k1,20393:13601182,32831403:205128 +k1,20393:15117684,32831403:205127 +k1,20393:16756740,32831403:205128 +k1,20393:17980953,32831403:205128 +k1,20393:19370316,32831403:205127 +k1,20393:21419627,32831403:205128 +k1,20393:22757217,32831403:205128 +k1,20393:24623026,32831403:205127 +k1,20393:26671026,32831403:205128 +k1,20393:28067599,32831403:205128 +k1,20393:31031792,32831403:205127 +k1,20393:31714677,32831403:205128 +k1,20393:32583029,32831403:0 +) +(1,20394:6630773,33696483:25952256,513147,126483 +k1,20393:8062342,33696483:154272 +k1,20393:9605976,33696483:154271 +k1,20393:10707899,33696483:154272 +k1,20393:13093671,33696483:154271 +k1,20393:15104578,33696483:154272 +k1,20393:16277935,33696483:154272 +k1,20393:18276389,33696483:154271 +k1,20393:19563123,33696483:154272 +k1,20393:21378076,33696483:154271 +k1,20393:22551433,33696483:154272 +k1,20393:24086549,33696483:154272 +k1,20393:26611913,33696483:154271 +k1,20393:27425477,33696483:154272 +k1,20393:28598833,33696483:154271 +k1,20393:30178513,33696483:154272 +k1,20393:32583029,33696483:0 +) +(1,20394:6630773,34561563:25952256,513147,134348 +k1,20393:8063343,34561563:235883 +k1,20393:10564805,34561563:235882 +k1,20393:11332185,34561563:235883 +k1,20393:14873049,34561563:235883 +k1,20393:16692937,34561563:235883 +k1,20393:19463096,34561563:235882 +k1,20393:20771148,34561563:235883 +k1,20393:21465128,34561563:235883 +k1,20393:22232507,34561563:235882 +k1,20393:25272020,34561563:235883 +k1,20393:26194065,34561563:235883 +k1,20393:27377599,34561563:235883 +k1,20393:30603233,34561563:235882 +k1,20393:31490544,34561563:235883 +k1,20393:32583029,34561563:0 +) +(1,20394:6630773,35426643:25952256,513147,134348 +g1,20393:9592345,35426643 +g1,20393:12864557,35426643 +g1,20393:16089583,35426643 +g1,20393:16940240,35426643 +g1,20393:19871665,35426643 +g1,20393:21089979,35426643 +g1,20393:22473444,35426643 +k1,20394:32583029,35426643:8091731 +g1,20394:32583029,35426643 +) +v1,20396:6630773,36111498:0,393216,0 +(1,20410:6630773,43271236:25952256,7552954,196608 +g1,20410:6630773,43271236 +g1,20410:6630773,43271236 +g1,20410:6434165,43271236 +(1,20410:6434165,43271236:0,7552954,196608 +r1,20420:32779637,43271236:26345472,7749562,196608 +k1,20410:6434165,43271236:-26345472 +) +(1,20410:6434165,43271236:26345472,7552954,196608 +[1,20410:6630773,43271236:25952256,7356346,0 +(1,20398:6630773,36339329:25952256,424439,112852 +(1,20397:6630773,36339329:0,0,0 +g1,20397:6630773,36339329 +g1,20397:6630773,36339329 +g1,20397:6303093,36339329 +(1,20397:6303093,36339329:0,0,0 +) +g1,20397:6630773,36339329 +) +k1,20398:6630773,36339329:0 +g1,20398:10614221,36339329 +g1,20398:11278129,36339329 +k1,20398:11278129,36339329:0 +h1,20398:18581115,36339329:0,0,0 +k1,20398:32583029,36339329:14001914 +g1,20398:32583029,36339329 +) +(1,20399:6630773,37024184:25952256,424439,106246 +h1,20399:6630773,37024184:0,0,0 +g1,20399:6962727,37024184 +g1,20399:7294681,37024184 +g1,20399:7626635,37024184 +g1,20399:7958589,37024184 +g1,20399:8290543,37024184 +g1,20399:8622497,37024184 +g1,20399:8954451,37024184 +g1,20399:14929623,37024184 +g1,20399:16921347,37024184 +g1,20399:17585255,37024184 +g1,20399:20240887,37024184 +g1,20399:24556288,37024184 +h1,20399:24888242,37024184:0,0,0 +k1,20399:32583029,37024184:7694787 +g1,20399:32583029,37024184 +) +(1,20400:6630773,37709039:25952256,424439,112852 +h1,20400:6630773,37709039:0,0,0 +g1,20400:6962727,37709039 +g1,20400:7294681,37709039 +g1,20400:11278128,37709039 +h1,20400:11610082,37709039:0,0,0 +k1,20400:32583030,37709039:20972948 +g1,20400:32583030,37709039 +) +(1,20401:6630773,38393894:25952256,424439,86428 +h1,20401:6630773,38393894:0,0,0 +g1,20401:6962727,38393894 +g1,20401:7294681,38393894 +g1,20401:14597668,38393894 +g1,20401:15261576,38393894 +k1,20401:15261576,38393894:0 +h1,20401:16921346,38393894:0,0,0 +k1,20401:32583029,38393894:15661683 +g1,20401:32583029,38393894 +) +(1,20402:6630773,39078749:25952256,424439,86428 +h1,20402:6630773,39078749:0,0,0 +g1,20402:6962727,39078749 +g1,20402:7294681,39078749 +g1,20402:7626635,39078749 +g1,20402:7958589,39078749 +g1,20402:8290543,39078749 +g1,20402:8622497,39078749 +g1,20402:8954451,39078749 +g1,20402:9286405,39078749 +g1,20402:9618359,39078749 +g1,20402:9950313,39078749 +g1,20402:10282267,39078749 +g1,20402:10614221,39078749 +g1,20402:10946175,39078749 +g1,20402:11278129,39078749 +g1,20402:11610083,39078749 +g1,20402:11942037,39078749 +g1,20402:12273991,39078749 +g1,20402:12605945,39078749 +g1,20402:12937899,39078749 +g1,20402:16921346,39078749 +g1,20402:17585254,39078749 +g1,20402:18581116,39078749 +k1,20402:18581116,39078749:0 +h1,20402:20572840,39078749:0,0,0 +k1,20402:32583029,39078749:12010189 +g1,20402:32583029,39078749 +) +(1,20403:6630773,39763604:25952256,424439,106246 +h1,20403:6630773,39763604:0,0,0 +k1,20403:6881876,39763604:251103 +k1,20403:7132979,39763604:251103 +k1,20403:7384081,39763604:251102 +k1,20403:7635184,39763604:251103 +k1,20403:7886287,39763604:251103 +k1,20403:8137390,39763604:251103 +k1,20403:8388492,39763604:251102 +k1,20403:8639595,39763604:251103 +k1,20403:8890698,39763604:251103 +k1,20403:9141801,39763604:251103 +k1,20403:9392904,39763604:251103 +k1,20403:9644006,39763604:251102 +k1,20403:9895109,39763604:251103 +k1,20403:10146212,39763604:251103 +k1,20403:10397315,39763604:251103 +k1,20403:10648417,39763604:251102 +k1,20403:10899520,39763604:251103 +k1,20403:11150623,39763604:251103 +k1,20403:11401726,39763604:251103 +k1,20403:13644553,39763604:251103 +k1,20403:14227609,39763604:251102 +k1,20403:20453884,39763604:251103 +k1,20403:23028665,39763604:251103 +k1,20403:23943676,39763604:251103 +k1,20403:24526733,39763604:251103 +k1,20403:26769559,39763604:251102 +k1,20403:27352616,39763604:251103 +k1,20403:30923259,39763604:251103 +k1,20403:30923259,39763604:0 +h1,20403:32583029,39763604:0,0,0 +k1,20403:32583029,39763604:0 +k1,20403:32583029,39763604:0 +) +(1,20404:6630773,40448459:25952256,424439,79822 +h1,20404:6630773,40448459:0,0,0 +g1,20404:6962727,40448459 +g1,20404:7294681,40448459 +g1,20404:7626635,40448459 +g1,20404:7958589,40448459 +g1,20404:8290543,40448459 +g1,20404:8622497,40448459 +g1,20404:8954451,40448459 +g1,20404:9286405,40448459 +g1,20404:9618359,40448459 +g1,20404:9950313,40448459 +g1,20404:10282267,40448459 +g1,20404:10614221,40448459 +g1,20404:10946175,40448459 +g1,20404:11278129,40448459 +g1,20404:11610083,40448459 +g1,20404:11942037,40448459 +g1,20404:12273991,40448459 +g1,20404:12605945,40448459 +g1,20404:12937899,40448459 +g1,20404:16921346,40448459 +g1,20404:17585254,40448459 +g1,20404:20572840,40448459 +h1,20404:20904794,40448459:0,0,0 +k1,20404:32583029,40448459:11678235 +g1,20404:32583029,40448459 +) +(1,20405:6630773,41133314:25952256,424439,106246 +h1,20405:6630773,41133314:0,0,0 +g1,20405:6962727,41133314 +g1,20405:7294681,41133314 +g1,20405:15261576,41133314 +g1,20405:15925484,41133314 +g1,20405:17585254,41133314 +g1,20405:21568701,41133314 +g1,20405:23560425,41133314 +h1,20405:23892379,41133314:0,0,0 +k1,20405:32583029,41133314:8690650 +g1,20405:32583029,41133314 +) +(1,20406:6630773,41818169:25952256,424439,106246 +h1,20406:6630773,41818169:0,0,0 +g1,20406:6962727,41818169 +g1,20406:7294681,41818169 +g1,20406:12605944,41818169 +g1,20406:13269852,41818169 +h1,20406:13933760,41818169:0,0,0 +k1,20406:32583028,41818169:18649268 +g1,20406:32583028,41818169 +) +(1,20410:6630773,43158384:25952256,431045,112852 +g1,20410:7626635,43158384 +g1,20410:10614220,43158384 +g1,20410:13269852,43158384 +g1,20410:14929622,43158384 +g1,20410:16589392,43158384 +g1,20410:20240885,43158384 +g1,20410:22896517,43158384 +g1,20410:25220195,43158384 +k1,20410:32583029,43158384:2051571 +g1,20410:32583029,43158384 +) +] +) +g1,20410:32583029,43271236 +g1,20410:6630773,43271236 +g1,20410:6630773,43271236 +g1,20410:32583029,43271236 +g1,20410:32583029,43271236 +) +h1,20410:6630773,43467844:0,0,0 +] +(1,20420:32583029,45706769:0,0,0 +g1,20420:32583029,45706769 +) +) +] +(1,20420:6630773,47279633:25952256,0,0 +h1,20420:6630773,47279633:25952256,0,0 +) +] +(1,20420:4262630,4025873:0,0,0 +[1,20420:-473656,4025873:0,0,0 +(1,20420:-473656,-710413:0,0,0 +(1,20420:-473656,-710413:0,0,0 +g1,20420:-473656,-710413 +) +g1,20420:-473656,-710413 +) +] +) +] +!23358 +}346 +Input:3306:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3307:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3308:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3309:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3310:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3311:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!576 +{347 +[1,20449:4262630,47279633:28320399,43253760,0 +(1,20449:4262630,4025873:0,0,0 +[1,20449:-473656,4025873:0,0,0 +(1,20449:-473656,-710413:0,0,0 +(1,20449:-473656,-644877:0,0,0 +k1,20449:-473656,-644877:-65536 ) -(1,20504:-473656,4736287:0,0,0 -k1,20504:-473656,4736287:5209943 +(1,20449:-473656,4736287:0,0,0 +k1,20449:-473656,4736287:5209943 ) -g1,20504:-473656,-710413 +g1,20449:-473656,-710413 ) ] ) -[1,20504:6630773,47279633:25952256,43253760,0 -[1,20504:6630773,4812305:25952256,786432,0 -(1,20504:6630773,4812305:25952256,505283,134348 -(1,20504:6630773,4812305:25952256,505283,134348 -g1,20504:3078558,4812305 -[1,20504:3078558,4812305:0,0,0 -(1,20504:3078558,2439708:0,1703936,0 -k1,20504:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,20504:2537886,2439708:1179648,16384,0 +[1,20449:6630773,47279633:25952256,43253760,0 +[1,20449:6630773,4812305:25952256,786432,0 +(1,20449:6630773,4812305:25952256,513147,126483 +(1,20449:6630773,4812305:25952256,513147,126483 +g1,20449:3078558,4812305 +[1,20449:3078558,4812305:0,0,0 +(1,20449:3078558,2439708:0,1703936,0 +k1,20449:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,20449:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,20504:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,20449:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,20504:3078558,4812305:0,0,0 -(1,20504:3078558,2439708:0,1703936,0 -g1,20504:29030814,2439708 -g1,20504:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,20504:36151628,1915420:16384,1179648,0 +[1,20449:3078558,4812305:0,0,0 +(1,20449:3078558,2439708:0,1703936,0 +g1,20449:29030814,2439708 +g1,20449:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,20449:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,20504:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,20449:37855564,2439708:1179648,16384,0 ) ) -k1,20504:3078556,2439708:-34777008 +k1,20449:3078556,2439708:-34777008 ) ] -[1,20504:3078558,4812305:0,0,0 -(1,20504:3078558,49800853:0,16384,2228224 -k1,20504:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,20504:2537886,49800853:1179648,16384,0 +[1,20449:3078558,4812305:0,0,0 +(1,20449:3078558,49800853:0,16384,2228224 +k1,20449:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,20449:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,20504:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,20449:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,20504:3078558,4812305:0,0,0 -(1,20504:3078558,49800853:0,16384,2228224 -g1,20504:29030814,49800853 -g1,20504:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,20504:36151628,51504789:16384,1179648,0 +[1,20449:3078558,4812305:0,0,0 +(1,20449:3078558,49800853:0,16384,2228224 +g1,20449:29030814,49800853 +g1,20449:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,20449:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,20504:37855564,49800853:1179648,16384,0 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,20449:37855564,49800853:1179648,16384,0 ) ) -k1,20504:3078556,49800853:-34777008 +k1,20449:3078556,49800853:-34777008 ) -] -g1,20504:6630773,4812305 -g1,20504:6630773,4812305 -g1,20504:9113932,4812305 -g1,20504:13027742,4812305 -k1,20504:31387652,4812305:18359910 -) -) -] -[1,20504:6630773,45706769:25952256,40108032,0 -(1,20504:6630773,45706769:25952256,40108032,0 -(1,20504:6630773,45706769:0,0,0 -g1,20504:6630773,45706769 +] +g1,20449:6630773,4812305 +k1,20449:21350816,4812305:13524666 +g1,20449:21999622,4812305 +g1,20449:25611966,4812305 +g1,20449:28956923,4812305 +g1,20449:29772190,4812305 ) -[1,20504:6630773,45706769:25952256,40108032,0 -(1,20464:6630773,6254097:25952256,513147,126483 -k1,20463:8990367,6254097:210668 -k1,20463:10220121,6254097:210669 -k1,20463:11708086,6254097:210668 -k1,20463:12779897,6254097:210668 -k1,20463:14009651,6254097:210669 -k1,20463:16552745,6254097:210668 -k1,20463:17422706,6254097:210669 -k1,20463:21878796,6254097:210668 -k1,20463:27434580,6254097:210668 -k1,20463:28636809,6254097:210669 -k1,20463:30133293,6254097:210668 -k1,20463:32583029,6254097:0 -) -(1,20464:6630773,7095585:25952256,505283,7863 -g1,20463:7446040,7095585 -g1,20463:9341996,7095585 -g1,20463:11443735,7095585 -g1,20463:12329126,7095585 -g1,20463:13144393,7095585 -k1,20464:32583029,7095585:17232694 -g1,20464:32583029,7095585 -) -(1,20467:6630773,9186845:25952256,555811,139132 -(1,20467:6630773,9186845:2899444,534184,12975 -g1,20467:6630773,9186845 -g1,20467:9530217,9186845 -) -g1,20467:12619978,9186845 -k1,20467:32583029,9186845:17777294 -g1,20467:32583029,9186845 -) -(1,20470:6630773,10421549:25952256,513147,134348 -k1,20469:7465003,10421549:206395 -k1,20469:8690482,10421549:206394 -k1,20469:10263958,10421549:206395 -k1,20469:11129645,10421549:206395 -k1,20469:13796261,10421549:206394 -k1,20469:16078837,10421549:206395 -k1,20469:17304317,10421549:206395 -k1,20469:20318273,10421549:206394 -k1,20469:21056165,10421549:206395 -k1,20469:22419270,10421549:206395 -k1,20469:24646794,10421549:206394 -k1,20469:25504617,10421549:206395 -k1,20469:26730097,10421549:206395 -k1,20469:28499525,10421549:206394 -k1,20469:29747942,10421549:206395 -k1,20469:32583029,10421549:0 -) -(1,20470:6630773,11263037:25952256,513147,134348 -k1,20469:7309685,11263037:212951 -k1,20469:8390987,11263037:212950 -k1,20469:10000510,11263037:212951 -k1,20469:11232545,11263037:212950 -(1,20469:11232545,11263037:0,452978,115847 -r1,20504:12997658,11263037:1765113,568825,115847 -k1,20469:11232545,11263037:-1765113 -) -(1,20469:11232545,11263037:1765113,452978,115847 -k1,20469:11232545,11263037:3277 -h1,20469:12994381,11263037:0,411205,112570 -) -k1,20469:13210609,11263037:212951 -k1,20469:14106444,11263037:212950 -(1,20469:14106444,11263037:0,459977,115847 -r1,20504:15519845,11263037:1413401,575824,115847 -k1,20469:14106444,11263037:-1413401 -) -(1,20469:14106444,11263037:1413401,459977,115847 -k1,20469:14106444,11263037:3277 -h1,20469:15516568,11263037:0,411205,112570 -) -k1,20469:15732796,11263037:212951 -k1,20469:18732992,11263037:212950 -k1,20469:19597371,11263037:212951 -k1,20469:20166181,11263037:212950 -k1,20469:22890472,11263037:212951 -k1,20469:24838815,11263037:212950 -(1,20469:24838815,11263037:0,452978,115847 -r1,20504:32583029,11263037:7744214,568825,115847 -k1,20469:24838815,11263037:-7744214 -) -(1,20469:24838815,11263037:7744214,452978,115847 -k1,20469:24838815,11263037:3277 -h1,20469:32579752,11263037:0,411205,112570 -) -k1,20469:32583029,11263037:0 -) -(1,20470:6630773,12104525:25952256,505283,126483 -k1,20469:7547326,12104525:233668 -(1,20469:7547326,12104525:0,459977,115847 -r1,20504:14939828,12104525:7392502,575824,115847 -k1,20469:7547326,12104525:-7392502 -) -(1,20469:7547326,12104525:7392502,459977,115847 -k1,20469:7547326,12104525:3277 -h1,20469:14936551,12104525:0,411205,112570 -) -k1,20469:15347165,12104525:233667 -k1,20469:16599918,12104525:233668 -k1,20469:19418981,12104525:233668 -k1,20469:22163988,12104525:233667 -k1,20469:24019672,12104525:233668 -k1,20469:26587732,12104525:233668 -k1,20469:29193147,12104525:233667 -k1,20469:30966911,12104525:233668 -k1,20469:32583029,12104525:0 -) -(1,20470:6630773,12946013:25952256,513147,134348 -k1,20469:10366197,12946013:149294 -k1,20469:11143325,12946013:149293 -k1,20469:12311704,12946013:149294 -k1,20469:13828079,12946013:149294 -k1,20469:14636665,12946013:149294 -k1,20469:17593520,12946013:149293 -(1,20469:17593520,12946013:0,452978,115847 -r1,20504:19358633,12946013:1765113,568825,115847 -k1,20469:17593520,12946013:-1765113 -) -(1,20469:17593520,12946013:1765113,452978,115847 -k1,20469:17593520,12946013:3277 -h1,20469:19355356,12946013:0,411205,112570 -) -k1,20469:19681597,12946013:149294 -k1,20469:20849976,12946013:149294 -k1,20469:23510610,12946013:149294 -k1,20469:25281919,12946013:149293 -k1,20469:27802961,12946013:149294 -k1,20469:30572384,12946013:149294 -k1,20469:32583029,12946013:0 -) -(1,20470:6630773,13787501:25952256,505283,134348 -g1,20469:7446040,13787501 -g1,20469:8664354,13787501 -g1,20469:10644196,13787501 -g1,20469:11241884,13787501 -g1,20469:12092541,13787501 -k1,20470:32583030,13787501:19918360 -g1,20470:32583030,13787501 -) -(1,20472:6630773,14628989:25952256,513147,134348 -h1,20471:6630773,14628989:983040,0,0 -k1,20471:8711540,14628989:144178 -k1,20471:10785098,14628989:144178 -k1,20471:11285136,14628989:144178 -k1,20471:12818677,14628989:144178 -k1,20471:14839151,14628989:144178 -k1,20471:18345327,14628989:144179 -k1,20471:18845365,14628989:144178 -k1,20471:21500883,14628989:144178 -(1,20471:21500883,14628989:0,452978,115847 -r1,20504:23617708,14628989:2116825,568825,115847 -k1,20471:21500883,14628989:-2116825 -) -(1,20471:21500883,14628989:2116825,452978,115847 -k1,20471:21500883,14628989:3277 -h1,20471:23614431,14628989:0,411205,112570 -) -k1,20471:23761886,14628989:144178 -k1,20471:27268061,14628989:144178 -k1,20471:30386918,14628989:144178 -k1,20471:32583029,14628989:0 -) -(1,20472:6630773,15470477:25952256,513147,126483 -k1,20471:11058688,15470477:297181 -k1,20471:12042030,15470477:297180 -k1,20471:13358296,15470477:297181 -k1,20471:15723792,15470477:297180 -k1,20471:16680265,15470477:297181 -k1,20471:18593563,15470477:297180 -k1,20471:22303204,15470477:297181 -k1,20471:24738168,15470477:297180 -k1,20471:25686777,15470477:297181 -k1,20471:26572470,15470477:297180 -k1,20471:27823200,15470477:297181 -k1,20471:29554308,15470477:297180 -k1,20471:30943974,15470477:297181 -k1,20471:32583029,15470477:0 -) -(1,20472:6630773,16311965:25952256,505283,126483 -g1,20471:9244348,16311965 -g1,20471:10059615,16311965 -g1,20471:11277929,16311965 -k1,20472:32583028,16311965:19854132 -g1,20472:32583028,16311965 -) -v1,20474:6630773,17421803:0,393216,0 -(1,20482:6630773,20401612:25952256,3373025,196608 -g1,20482:6630773,20401612 -g1,20482:6630773,20401612 -g1,20482:6434165,20401612 -(1,20482:6434165,20401612:0,3373025,196608 -r1,20504:32779637,20401612:26345472,3569633,196608 -k1,20482:6434165,20401612:-26345472 -) -(1,20482:6434165,20401612:26345472,3373025,196608 -[1,20482:6630773,20401612:25952256,3176417,0 -(1,20476:6630773,17635713:25952256,410518,101187 -(1,20475:6630773,17635713:0,0,0 -g1,20475:6630773,17635713 -g1,20475:6630773,17635713 -g1,20475:6303093,17635713 -(1,20475:6303093,17635713:0,0,0 -) -g1,20475:6630773,17635713 -) -g1,20476:8211502,17635713 -g1,20476:9159940,17635713 -g1,20476:13269835,17635713 -g1,20476:13902127,17635713 -g1,20476:15799002,17635713 -g1,20476:16431294,17635713 -g1,20476:17063586,17635713 -g1,20476:20541189,17635713 -g1,20476:22754209,17635713 -g1,20476:23386501,17635713 -g1,20476:27496396,17635713 -g1,20476:30341708,17635713 -h1,20476:31290145,17635713:0,0,0 -k1,20476:32583029,17635713:1292884 -g1,20476:32583029,17635713 -) -(1,20477:6630773,18301891:25952256,0,0 -h1,20477:6630773,18301891:0,0,0 -h1,20477:6630773,18301891:0,0,0 -k1,20477:32583029,18301891:25952256 -g1,20477:32583029,18301891 -) -(1,20478:6630773,18968069:25952256,410518,107478 -h1,20478:6630773,18968069:0,0,0 -g1,20478:10740667,18968069 -g1,20478:12953687,18968069 -g1,20478:13902125,18968069 -g1,20478:15798999,18968069 -g1,20478:16431291,18968069 -g1,20478:19276602,18968069 -h1,20478:19592748,18968069:0,0,0 -k1,20478:32583029,18968069:12990281 -g1,20478:32583029,18968069 -) -(1,20479:6630773,19634247:25952256,404226,107478 -h1,20479:6630773,19634247:0,0,0 -g1,20479:6946919,19634247 -g1,20479:7263065,19634247 -g1,20479:11372959,19634247 -h1,20479:11689105,19634247:0,0,0 -k1,20479:32583029,19634247:20893924 -g1,20479:32583029,19634247 -) -(1,20480:6630773,20300425:25952256,404226,101187 -h1,20480:6630773,20300425:0,0,0 -g1,20480:6946919,20300425 -g1,20480:7263065,20300425 -k1,20480:7263065,20300425:0 -h1,20480:14218270,20300425:0,0,0 -k1,20480:32583030,20300425:18364760 -g1,20480:32583030,20300425 -) -] -) -g1,20482:32583029,20401612 -g1,20482:6630773,20401612 -g1,20482:6630773,20401612 -g1,20482:32583029,20401612 -g1,20482:32583029,20401612 -) -h1,20482:6630773,20598220:0,0,0 -(1,20485:6630773,30191082:25952256,9083666,0 -k1,20485:10523651,30191082:3892878 -h1,20484:10523651,30191082:0,0,0 -(1,20484:10523651,30191082:18166500,9083666,0 -(1,20484:10523651,30191082:18167376,9083688,0 -(1,20484:10523651,30191082:18167376,9083688,0 -(1,20484:10523651,30191082:0,9083688,0 -(1,20484:10523651,30191082:0,14208860,0 -(1,20484:10523651,30191082:28417720,14208860,0 -) -k1,20484:10523651,30191082:-28417720 -) -) -g1,20484:28691027,30191082 -) -) -) -g1,20485:28690151,30191082 -k1,20485:32583029,30191082:3892878 -) -v1,20492:6630773,31476231:0,393216,0 -(1,20495:6630773,34567581:25952256,3484566,0 -g1,20495:6630773,34567581 -g1,20495:6303093,34567581 -r1,20504:6401397,34567581:98304,3484566,0 -g1,20495:6600626,34567581 -g1,20495:6797234,34567581 -[1,20495:6797234,34567581:25785795,3484566,0 -(1,20493:6797234,31908769:25785795,825754,196608 -(1,20492:6797234,31908769:0,825754,196608 -r1,20504:7890375,31908769:1093141,1022362,196608 -k1,20492:6797234,31908769:-1093141 -) -(1,20492:6797234,31908769:1093141,825754,196608 -) -k1,20492:8072752,31908769:182377 -k1,20492:9798970,31908769:327680 -k1,20492:11402168,31908769:182377 -k1,20492:13077455,31908769:182377 -k1,20492:14278918,31908769:182378 -k1,20492:15738592,31908769:182377 -k1,20492:17481381,31908769:182377 -k1,20492:18129719,31908769:182377 -k1,20492:19331181,31908769:182377 -k1,20492:21973780,31908769:182377 -k1,20492:23728366,31908769:182377 -k1,20492:24442241,31908769:182378 -k1,20492:26970152,31908769:182377 -k1,20492:28720150,31908769:182377 -k1,20492:29921612,31908769:182377 -k1,20492:32583029,31908769:0 -) -(1,20493:6797234,32750257:25785795,505283,126483 -g1,20492:9178812,32750257 -g1,20492:10627813,32750257 -g1,20492:12018487,32750257 -g1,20492:14184451,32750257 -g1,20492:15402765,32750257 -g1,20492:18263411,32750257 -k1,20493:32583029,32750257:12649761 -g1,20493:32583029,32750257 -) -(1,20495:6797234,33591745:25785795,505283,134348 -h1,20494:6797234,33591745:983040,0,0 -k1,20494:9709704,33591745:154715 -k1,20494:11599812,33591745:154715 -k1,20494:12773613,33591745:154716 -k1,20494:15388550,33591745:154715 -k1,20494:17289144,33591745:154715 -k1,20494:18774240,33591745:154715 -k1,20494:20885206,33591745:154716 -k1,20494:22210394,33591745:154715 -k1,20494:23895375,33591745:154715 -k1,20494:24701518,33591745:154715 -k1,20494:27096910,33591745:154716 -k1,20494:28270710,33591745:154715 -k1,20494:29921612,33591745:154715 -k1,20494:32583029,33591745:0 -) -(1,20495:6797234,34433233:25785795,505283,134348 -g1,20494:9025458,34433233 -g1,20494:9876115,34433233 -g1,20494:12695473,34433233 -g1,20494:13250562,34433233 -g1,20494:14727088,34433233 -g1,20494:16320268,34433233 -g1,20494:18291591,34433233 -g1,20494:19682265,34433233 -g1,20494:21978646,34433233 -k1,20495:32583029,34433233:8258849 -g1,20495:32583029,34433233 -) -] -g1,20495:32583029,34567581 -) -h1,20495:6630773,34567581:0,0,0 -(1,20501:6630773,37818809:25952256,32768,229376 -(1,20501:6630773,37818809:0,32768,229376 -(1,20501:6630773,37818809:5505024,32768,229376 -r1,20504:12135797,37818809:5505024,262144,229376 -) -k1,20501:6630773,37818809:-5505024 -) -(1,20501:6630773,37818809:25952256,32768,0 -r1,20504:32583029,37818809:25952256,32768,0 -) -) -(1,20501:6630773,39423137:25952256,606339,161218 -(1,20501:6630773,39423137:2464678,582746,14155 -g1,20501:6630773,39423137 -g1,20501:9095451,39423137 -) -g1,20501:12232529,39423137 -k1,20501:32583029,39423137:15683026 -g1,20501:32583029,39423137 -) -(1,20504:6630773,40657841:25952256,513147,126483 -k1,20503:8065168,40657841:237708 -k1,20503:9628015,40657841:237709 -k1,20503:10525015,40657841:237708 -k1,20503:14553325,40657841:237708 -k1,20503:15322531,40657841:237709 -k1,20503:16844745,40657841:237708 -k1,20503:18462642,40657841:237709 -k1,20503:19897693,40657841:237708 -k1,20503:21412698,40657841:237708 -k1,20503:24519573,40657841:237709 -k1,20503:26041787,40657841:237708 -k1,20503:27271055,40657841:237708 -k1,20503:28575035,40657841:237709 -k1,20503:31227089,40657841:237708 -k1,20504:32583029,40657841:0 -) -(1,20504:6630773,41499329:25952256,505283,134348 -k1,20503:8962963,41499329:211445 -k1,20503:10568360,41499329:211446 -(1,20503:10568360,41499329:0,452978,115847 -r1,20504:11981761,41499329:1413401,568825,115847 -k1,20503:10568360,41499329:-1413401 -) -(1,20503:10568360,41499329:1413401,452978,115847 -k1,20503:10568360,41499329:3277 -h1,20503:11978484,41499329:0,411205,112570 -) -k1,20503:12366876,41499329:211445 -k1,20503:14463792,41499329:211445 -k1,20503:15543590,41499329:211446 -k1,20503:17523852,41499329:211445 -k1,20503:18834991,41499329:211445 -k1,20503:23384919,41499329:211445 -k1,20503:25089931,41499329:211446 -k1,20503:25987538,41499329:211445 -k1,20503:28377400,41499329:211445 -k1,20503:30102072,41499329:211446 -k1,20503:30964945,41499329:211445 -k1,20504:32583029,41499329:0 -) -(1,20504:6630773,42340817:25952256,513147,134348 -k1,20503:8216838,42340817:133787 -k1,20503:10042765,42340817:133787 -k1,20503:12451962,42340817:133787 -k1,20503:13245041,42340817:133787 -k1,20503:14397913,42340817:133787 -k1,20503:16094734,42340817:133787 -k1,20503:18625827,42340817:133786 -k1,20503:20778123,42340817:133787 -k1,20503:22656478,42340817:133787 -k1,20503:23560968,42340817:133787 -k1,20503:25120818,42340817:133787 -k1,20503:26366096,42340817:133787 -k1,20503:28057674,42340817:133787 -k1,20503:29183021,42340817:133787 -k1,20503:32583029,42340817:0 -) -(1,20504:6630773,43182305:25952256,505283,126483 -k1,20503:7429304,43182305:147103 -k1,20503:8595492,43182305:147103 -k1,20503:11634699,43182305:147103 -k1,20503:15519976,43182305:147103 -k1,20503:17180305,43182305:147103 -k1,20503:17978836,43182305:147103 -k1,20503:19403235,43182305:147102 -k1,20503:20569423,43182305:147103 -k1,20503:24961948,43182305:147103 -k1,20503:26181220,43182305:147103 -k1,20503:27319883,43182305:147103 -k1,20503:30336152,43182305:147103 -k1,20503:31767761,43182305:147103 -k1,20503:32583029,43182305:0 -) -(1,20504:6630773,44023793:25952256,513147,126483 -k1,20503:7876613,44023793:179569 -k1,20503:11097707,44023793:179568 -k1,20503:15349028,44023793:179569 -k1,20503:16211481,44023793:179568 -k1,20503:19899192,44023793:179569 -k1,20503:23287403,44023793:179568 -k1,20503:25034593,44023793:179569 -k1,20503:26233246,44023793:179568 -k1,20503:30658237,44023793:179569 -k1,20504:32583029,44023793:0 -) -(1,20504:6630773,44865281:25952256,505283,134348 -k1,20503:8987663,44865281:146361 -k1,20503:10125584,44865281:146361 -k1,20503:12237370,44865281:146361 -k1,20503:13035158,44865281:146360 -k1,20503:13537379,44865281:146361 -k1,20503:15709458,44865281:146361 -k1,20503:17249770,44865281:146361 -(1,20503:17249770,44865281:0,452978,115847 -r1,20504:20773442,44865281:3523672,568825,115847 -k1,20503:17249770,44865281:-3523672 -) -(1,20503:17249770,44865281:3523672,452978,115847 -k1,20503:17249770,44865281:3277 -h1,20503:20770165,44865281:0,411205,112570 -) -k1,20503:20919803,44865281:146361 -k1,20503:21752326,44865281:146361 -k1,20503:23175984,44865281:146361 -k1,20503:25210436,44865281:146360 -k1,20503:27015513,44865281:146361 -k1,20503:28261568,44865281:146361 -k1,20503:29059357,44865281:146361 -(1,20503:29059357,44865281:0,452978,115847 -r1,20504:32583029,44865281:3523672,568825,115847 -k1,20503:29059357,44865281:-3523672 -) -(1,20503:29059357,44865281:3523672,452978,115847 -k1,20503:29059357,44865281:3277 -h1,20503:32579752,44865281:0,411205,112570 -) -k1,20503:32583029,44865281:0 -) -(1,20504:6630773,45706769:25952256,513147,126483 -k1,20503:9087140,45706769:196686 -k1,20503:9639685,45706769:196685 -k1,20503:11119566,45706769:196686 -k1,20503:13254807,45706769:196686 -k1,20503:14280522,45706769:196685 -k1,20503:16834538,45706769:196686 -k1,20503:18050308,45706769:196685 -k1,20503:21006715,45706769:196686 -k1,20503:24042421,45706769:196686 -k1,20503:24898398,45706769:196685 -k1,20503:29059357,45706769:196686 -(1,20503:29059357,45706769:0,452978,115847 -r1,20504:32583029,45706769:3523672,568825,115847 -k1,20503:29059357,45706769:-3523672 -) -(1,20503:29059357,45706769:3523672,452978,115847 -k1,20503:29059357,45706769:3277 -h1,20503:32579752,45706769:0,411205,112570 -) -k1,20503:32583029,45706769:0 -) -] -(1,20504:32583029,45706769:0,0,0 -g1,20504:32583029,45706769 -) -) -] -(1,20504:6630773,47279633:25952256,0,0 -h1,20504:6630773,47279633:25952256,0,0 -) -] -(1,20504:4262630,4025873:0,0,0 -[1,20504:-473656,4025873:0,0,0 -(1,20504:-473656,-710413:0,0,0 -(1,20504:-473656,-710413:0,0,0 -g1,20504:-473656,-710413 -) -g1,20504:-473656,-710413 -) -] -) -] -!19526 -}368 -Input:3350:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3351:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3352:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3353:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3354:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3355:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3356:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!670 -{369 -[1,20557:4262630,47279633:28320399,43253760,0 -(1,20557:4262630,4025873:0,0,0 -[1,20557:-473656,4025873:0,0,0 -(1,20557:-473656,-710413:0,0,0 -(1,20557:-473656,-644877:0,0,0 -k1,20557:-473656,-644877:-65536 ) -(1,20557:-473656,4736287:0,0,0 -k1,20557:-473656,4736287:5209943 +] +[1,20449:6630773,45706769:25952256,40108032,0 +(1,20449:6630773,45706769:25952256,40108032,0 +(1,20449:6630773,45706769:0,0,0 +g1,20449:6630773,45706769 +) +[1,20449:6630773,45706769:25952256,40108032,0 +(1,20413:6630773,14357405:25952256,8758668,0 +k1,20413:7928465,14357405:1297692 +h1,20412:7928465,14357405:0,0,0 +(1,20412:7928465,14357405:23356872,8758668,0 +(1,20412:7928465,14357405:23356506,8758690,0 +(1,20412:7928465,14357405:23356506,8758690,0 +(1,20412:7928465,14357405:0,8758690,0 +(1,20412:7928465,14357405:0,14208860,0 +(1,20412:7928465,14357405:37890292,14208860,0 +) +k1,20412:7928465,14357405:-37890292 +) +) +g1,20412:31284971,14357405 +) +) +) +g1,20413:31285337,14357405 +k1,20413:32583029,14357405:1297692 +) +v1,20420:6630773,15222485:0,393216,0 +(1,20421:6630773,19954710:25952256,5125441,0 +g1,20421:6630773,19954710 +g1,20421:6237557,19954710 +r1,20449:6368629,19954710:131072,5125441,0 +g1,20421:6567858,19954710 +g1,20421:6764466,19954710 +[1,20421:6764466,19954710:25818563,5125441,0 +(1,20421:6764466,15494962:25818563,665693,196608 +(1,20420:6764466,15494962:0,665693,196608 +r1,20449:8010564,15494962:1246098,862301,196608 +k1,20420:6764466,15494962:-1246098 +) +(1,20420:6764466,15494962:1246098,665693,196608 +) +k1,20420:8311172,15494962:300608 +k1,20420:10037390,15494962:327680 +k1,20420:11534684,15494962:300607 +k1,20420:15262825,15494962:300608 +k1,20420:17759544,15494962:300608 +k1,20420:19573377,15494962:300607 +k1,20420:20865545,15494962:300608 +k1,20420:22910066,15494962:300608 +k1,20420:26505169,15494962:300608 +k1,20420:27567304,15494962:300607 +(1,20420:27567304,15494962:0,452978,115847 +r1,20449:31090976,15494962:3523672,568825,115847 +k1,20420:27567304,15494962:-3523672 +) +(1,20420:27567304,15494962:3523672,452978,115847 +k1,20420:27567304,15494962:3277 +h1,20420:31087699,15494962:0,411205,112570 +) +k1,20420:31391584,15494962:300608 +k1,20421:32583029,15494962:0 +) +(1,20421:6764466,16360042:25818563,505283,138281 +(1,20420:6764466,16360042:0,452978,115847 +r1,20449:11694986,16360042:4930520,568825,115847 +k1,20420:6764466,16360042:-4930520 +) +(1,20420:6764466,16360042:4930520,452978,115847 +k1,20420:6764466,16360042:3277 +h1,20420:11691709,16360042:0,411205,112570 +) +k1,20420:12020141,16360042:325155 +k1,20420:13669124,16360042:325156 +k1,20420:15807005,16360042:325155 +k1,20420:18668403,16360042:325155 +k1,20420:19609596,16360042:325155 +k1,20420:20953837,16360042:325156 +k1,20420:22451431,16360042:325155 +k1,20420:25768305,16360042:325155 +k1,20420:28122455,16360042:325155 +k1,20420:29466696,16360042:325156 +$1,20420:29466696,16360042 +$1,20420:30018509,16360042 +k1,20420:31809049,16360042:325155 +k1,20421:32583029,16360042:0 +) +(1,20421:6764466,17225122:25818563,513147,134348 +k1,20420:8352497,17225122:304836 +k1,20420:10170559,17225122:304836 +k1,20420:11666840,17225122:304836 +k1,20420:12990761,17225122:304836 +k1,20420:17008212,17225122:304836 +k1,20420:19650717,17225122:304836 +k1,20420:20311413,17225122:304836 +k1,20420:22489268,17225122:304836 +k1,20420:24306675,17225122:304836 +k1,20420:25294396,17225122:304836 +k1,20420:25955092,17225122:304836 +k1,20420:28142777,17225122:304836 +k1,20420:30055867,17225122:304836 +k1,20420:31019995,17225122:304836 +k1,20420:32583029,17225122:0 +) +(1,20421:6764466,18090202:25818563,513147,134348 +k1,20420:8850326,18090202:263959 +k1,20420:10999755,18090202:263958 +k1,20420:12447950,18090202:263959 +k1,20420:14556091,18090202:263958 +k1,20420:15811610,18090202:263959 +k1,20420:19116440,18090202:263959 +k1,20420:20141926,18090202:263958 +k1,20420:22671465,18090202:263959 +k1,20420:24126869,18090202:263959 +k1,20420:25824755,18090202:263958 +k1,20420:27525919,18090202:263959 +k1,20420:28476039,18090202:263958 +k1,20420:29510701,18090202:263959 +k1,20420:32583029,18090202:0 +) +(1,20421:6764466,18955282:25818563,513147,134348 +k1,20420:7688085,18955282:272191 +(1,20420:7688085,18955282:0,452978,115847 +r1,20449:11563469,18955282:3875384,568825,115847 +k1,20420:7688085,18955282:-3875384 +) +(1,20420:7688085,18955282:3875384,452978,115847 +k1,20420:7688085,18955282:3277 +h1,20420:11560192,18955282:0,411205,112570 +) +k1,20420:11835659,18955282:272190 +k1,20420:14870193,18955282:272191 +k1,20420:17322767,18955282:272191 +k1,20420:19964740,18955282:272191 +k1,20420:22232501,18955282:272190 +k1,20420:23772158,18955282:272191 +k1,20420:26548480,18955282:272191 +k1,20420:28105177,18955282:272191 +k1,20420:28993405,18955282:272190 +k1,20420:31931601,18955282:272191 +k1,20420:32583029,18955282:0 +) +(1,20421:6764466,19820362:25818563,513147,134348 +g1,20420:7982780,19820362 +g1,20420:11553181,19820362 +g1,20420:15623622,19820362 +g1,20420:17823010,19820362 +g1,20420:20202622,19820362 +g1,20420:22597962,19820362 +g1,20420:23901473,19820362 +g1,20420:26438371,19820362 +g1,20420:29864593,19820362 +k1,20421:32583029,19820362:1318587 +g1,20421:32583029,19820362 +) +] +g1,20421:32583029,19954710 +) +h1,20421:6630773,19954710:0,0,0 +(1,20424:6630773,22071528:25952256,564462,152109 +(1,20424:6630773,22071528:2450326,534184,12975 +g1,20424:6630773,22071528 +g1,20424:9081099,22071528 +) +g1,20424:12304226,22071528 +g1,20424:14714903,22071528 +g1,20424:16017563,22071528 +$1,20424:16017563,22071528 +$1,20424:16570490,22071528 +g1,20424:16795410,22071528 +g1,20424:18362638,22071528 +$1,20424:18362638,22071528 +$1,20424:18969632,22071528 +k1,20424:32583029,22071528:13613397 +g1,20424:32583029,22071528 +) +(1,20428:6630773,23329824:25952256,513147,126483 +k1,20427:7405278,23329824:146670 +k1,20427:8571032,23329824:146669 +k1,20427:10084783,23329824:146670 +k1,20427:10890744,23329824:146669 +k1,20427:13544821,23329824:146670 +k1,20427:14374375,23329824:146669 +k1,20427:17858138,23329824:146670 +k1,20427:20402769,23329824:146669 +k1,20427:21568524,23329824:146670 +k1,20427:22899429,23329824:146669 +k1,20427:24890282,23329824:146670 +k1,20427:26028511,23329824:146669 +k1,20427:26936709,23329824:146670 +k1,20427:29348958,23329824:146669 +k1,20427:30514713,23329824:146670 +k1,20427:32583029,23329824:0 +) +(1,20428:6630773,24194904:25952256,513147,134348 +k1,20427:7534991,24194904:244926 +k1,20427:8799002,24194904:244926 +k1,20427:10937918,24194904:244926 +k1,20427:13148924,24194904:244926 +k1,20427:17914524,24194904:244926 +k1,20427:19316159,24194904:244925 +k1,20427:23316953,24194904:244926 +k1,20427:24799854,24194904:244926 +k1,20427:25704072,24194904:244926 +k1,20427:28962999,24194904:244926 +k1,20427:30227010,24194904:244926 +k1,20427:32583029,24194904:0 +) +(1,20428:6630773,25059984:25952256,513147,126483 +k1,20427:8059084,25059984:244075 +k1,20427:10147341,25059984:244074 +k1,20427:10922913,25059984:244075 +k1,20427:11818416,25059984:244075 +k1,20427:12997034,25059984:244075 +k1,20427:14880163,25059984:244074 +k1,20427:15810400,25059984:244075 +k1,20427:17948465,25059984:244075 +k1,20427:20158619,25059984:244074 +k1,20427:21783538,25059984:244075 +k1,20427:25012123,25059984:244075 +k1,20427:25787695,25059984:244075 +k1,20427:27098040,25059984:244074 +k1,20427:31896867,25059984:244075 +k1,20427:32583029,25059984:0 +) +(1,20428:6630773,25925064:25952256,513147,134348 +k1,20427:7455175,25925064:208364 +k1,20427:9415315,25925064:208363 +k1,20427:11321061,25925064:208364 +k1,20427:12548509,25925064:208363 +k1,20427:13983052,25925064:208364 +k1,20427:14850707,25925064:208363 +k1,20427:16078156,25925064:208364 +k1,20427:18642539,25925064:208364 +k1,20427:20035138,25925064:208363 +k1,20427:22087685,25925064:208364 +k1,20427:23632982,25925064:208363 +k1,20427:24907617,25925064:208364 +k1,20427:25863746,25925064:208363 +k1,20427:29584184,25925064:208364 +k1,20427:30478709,25925064:208363 +k1,20427:31042933,25925064:208364 +k1,20427:32583029,25925064:0 +) +(1,20428:6630773,26790144:25952256,513147,134348 +k1,20427:8578197,26790144:209409 +k1,20427:11146248,26790144:209410 +k1,20427:12374742,26790144:209409 +k1,20427:14080338,26790144:209409 +k1,20427:16025140,26790144:209409 +k1,20427:17873605,26790144:209410 +k1,20427:19733211,26790144:209409 +k1,20427:22426435,26790144:209409 +k1,20427:23287272,26790144:209409 +k1,20427:24882768,26790144:209410 +k1,20427:25708215,26790144:209409 +k1,20427:28079001,26790144:209409 +k1,20427:28971295,26790144:209409 +k1,20427:29793467,26790144:209410 +k1,20427:31021961,26790144:209409 +k1,20428:32583029,26790144:0 +) +(1,20428:6630773,27655224:25952256,513147,126483 +k1,20427:8616186,27655224:173998 +k1,20427:11365094,27655224:173998 +k1,20427:12008985,27655224:173998 +k1,20427:12714480,27655224:173998 +k1,20427:14223446,27655224:173998 +k1,20427:15048872,27655224:173998 +k1,20427:16315355,27655224:173998 +k1,20427:18614030,27655224:173998 +k1,20427:22134296,27655224:173998 +k1,20427:23993225,27655224:173998 +k1,20427:26235539,27655224:173998 +k1,20427:27357188,27655224:173998 +k1,20427:29425176,27655224:173998 +k1,20427:31391584,27655224:173998 +k1,20427:32583029,27655224:0 +) +(1,20428:6630773,28520304:25952256,505283,134348 +k1,20427:9850304,28520304:204220 +k1,20427:11245969,28520304:204220 +k1,20427:12101617,28520304:204220 +k1,20427:13240381,28520304:204221 +k1,20427:15956596,28520304:204220 +k1,20427:18004999,28520304:204220 +k1,20427:20767745,28520304:204220 +k1,20427:22818115,28520304:204220 +k1,20427:24720373,28520304:204220 +k1,20427:27622711,28520304:204221 +k1,20427:28513093,28520304:204220 +k1,20427:29585665,28520304:204220 +k1,20427:30922347,28520304:204220 +k1,20427:32583029,28520304:0 +) +(1,20428:6630773,29385384:25952256,505283,7863 +k1,20428:32583030,29385384:24380704 +g1,20428:32583030,29385384 +) +(1,20430:6630773,30250464:25952256,505283,115847 +h1,20429:6630773,30250464:983040,0,0 +k1,20429:8792504,30250464:225142 +k1,20429:10121929,30250464:225143 +k1,20429:11439556,30250464:225142 +(1,20429:11439556,30250464:0,452978,115847 +r1,20449:17776923,30250464:6337367,568825,115847 +k1,20429:11439556,30250464:-6337367 +) +(1,20429:11439556,30250464:6337367,452978,115847 +k1,20429:11439556,30250464:3277 +h1,20429:17773646,30250464:0,411205,112570 +) +k1,20429:18002066,30250464:225143 +k1,20429:18878636,30250464:225142 +k1,20429:21478804,30250464:225143 +k1,20429:22895391,30250464:225142 +k1,20429:24941124,30250464:225143 +k1,20429:26185351,30250464:225142 +k1,20429:29123685,30250464:225143 +k1,20429:31809049,30250464:225142 +k1,20430:32583029,30250464:0 +) +(1,20430:6630773,31115544:25952256,513147,134348 +k1,20429:8702409,31115544:188787 +k1,20429:9910282,31115544:188788 +k1,20429:11662103,31115544:188787 +k1,20429:12328647,31115544:188787 +k1,20429:13385786,31115544:188787 +k1,20429:14667059,31115544:188788 +k1,20429:16059087,31115544:188787 +k1,20429:19232384,31115544:188787 +k1,20429:20072599,31115544:188787 +k1,20429:22341500,31115544:188788 +k1,20429:23549372,31115544:188787 +k1,20429:25301193,31115544:188787 +k1,20429:26923908,31115544:188787 +k1,20429:27764124,31115544:188788 +k1,20429:29682406,31115544:188787 +k1,20429:32583029,31115544:0 +) +(1,20430:6630773,31980624:25952256,505283,126483 +k1,20429:7777800,31980624:278675 +k1,20429:9586742,31980624:278676 +k1,20429:10516845,31980624:278675 +k1,20429:11992863,31980624:278675 +(1,20429:11992863,31980624:0,414482,115847 +r1,20449:16219959,31980624:4227096,530329,115847 +k1,20429:11992863,31980624:-4227096 +) +(1,20429:11992863,31980624:4227096,414482,115847 +g1,20429:14106411,31980624 +g1,20429:14809835,31980624 +h1,20429:16216682,31980624:0,411205,112570 +) +k1,20429:16672305,31980624:278676 +k1,20429:17904529,31980624:278675 +k1,20429:21976428,31980624:278675 +k1,20429:23347588,31980624:278675 +(1,20429:23347588,31980624:0,452978,115847 +r1,20449:28981531,31980624:5633943,568825,115847 +k1,20429:23347588,31980624:-5633943 +) +(1,20429:23347588,31980624:5633943,452978,115847 +k1,20429:23347588,31980624:3277 +h1,20429:28978254,31980624:0,411205,112570 +) +k1,20429:29260207,31980624:278676 +k1,20429:30190310,31980624:278675 +k1,20429:32583029,31980624:0 +) +(1,20430:6630773,32845704:25952256,505283,126483 +g1,20429:8292110,32845704 +g1,20429:10559655,32845704 +g1,20429:11410312,32845704 +k1,20430:32583028,32845704:17739940 +g1,20430:32583028,32845704 +) +v1,20433:6630773,33530559:0,393216,0 +(1,20440:6630773,35899383:25952256,2762040,196608 +g1,20440:6630773,35899383 +g1,20440:6630773,35899383 +g1,20440:6434165,35899383 +(1,20440:6434165,35899383:0,2762040,196608 +r1,20449:32779637,35899383:26345472,2958648,196608 +k1,20440:6434165,35899383:-26345472 +) +(1,20440:6434165,35899383:26345472,2762040,196608 +[1,20440:6630773,35899383:25952256,2565432,0 +(1,20435:6630773,33758390:25952256,424439,112852 +(1,20434:6630773,33758390:0,0,0 +g1,20434:6630773,33758390 +g1,20434:6630773,33758390 +g1,20434:6303093,33758390 +(1,20434:6303093,33758390:0,0,0 +) +g1,20434:6630773,33758390 +) +k1,20435:6630773,33758390:0 +g1,20435:10614221,33758390 +g1,20435:14265715,33758390 +g1,20435:16257439,33758390 +h1,20435:16589393,33758390:0,0,0 +k1,20435:32583029,33758390:15993636 +g1,20435:32583029,33758390 +) +(1,20436:6630773,34443245:25952256,431045,112852 +h1,20436:6630773,34443245:0,0,0 +g1,20436:6962727,34443245 +g1,20436:7294681,34443245 +g1,20436:13269852,34443245 +g1,20436:13933760,34443245 +g1,20436:16257438,34443245 +g1,20436:17585254,34443245 +g1,20436:18249162,34443245 +g1,20436:20240886,34443245 +g1,20436:22232610,34443245 +g1,20436:22896518,34443245 +g1,20436:24888242,34443245 +h1,20436:25220196,34443245:0,0,0 +k1,20436:32583029,34443245:7362833 +g1,20436:32583029,34443245 +) +(1,20437:6630773,35128100:25952256,424439,106246 +h1,20437:6630773,35128100:0,0,0 +g1,20437:6962727,35128100 +g1,20437:7294681,35128100 +g1,20437:15261576,35128100 +g1,20437:15925484,35128100 +g1,20437:20240885,35128100 +g1,20437:24888240,35128100 +k1,20437:24888240,35128100:0 +h1,20437:28539733,35128100:0,0,0 +k1,20437:32583029,35128100:4043296 +g1,20437:32583029,35128100 +) +(1,20438:6630773,35812955:25952256,424439,86428 +h1,20438:6630773,35812955:0,0,0 +g1,20438:6962727,35812955 +g1,20438:7294681,35812955 +g1,20438:7626635,35812955 +g1,20438:7958589,35812955 +g1,20438:8290543,35812955 +g1,20438:8622497,35812955 +g1,20438:8954451,35812955 +g1,20438:9286405,35812955 +g1,20438:9618359,35812955 +g1,20438:9950313,35812955 +g1,20438:10282267,35812955 +g1,20438:10614221,35812955 +g1,20438:10946175,35812955 +g1,20438:11278129,35812955 +g1,20438:11610083,35812955 +g1,20438:11942037,35812955 +g1,20438:12273991,35812955 +g1,20438:12605945,35812955 +g1,20438:12937899,35812955 +g1,20438:15261577,35812955 +g1,20438:15925485,35812955 +g1,20438:20240886,35812955 +g1,20438:24888241,35812955 +h1,20438:28539734,35812955:0,0,0 +k1,20438:32583029,35812955:4043295 +g1,20438:32583029,35812955 +) +] +) +g1,20440:32583029,35899383 +g1,20440:6630773,35899383 +g1,20440:6630773,35899383 +g1,20440:32583029,35899383 +g1,20440:32583029,35899383 +) +h1,20440:6630773,36095991:0,0,0 +] +(1,20449:32583029,45706769:0,0,0 +g1,20449:32583029,45706769 +) +) +] +(1,20449:6630773,47279633:25952256,0,0 +h1,20449:6630773,47279633:25952256,0,0 +) +] +(1,20449:4262630,4025873:0,0,0 +[1,20449:-473656,4025873:0,0,0 +(1,20449:-473656,-710413:0,0,0 +(1,20449:-473656,-710413:0,0,0 +g1,20449:-473656,-710413 +) +g1,20449:-473656,-710413 +) +] +) +] +!17729 +}347 +Input:3312:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3313:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3314:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3315:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3316:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3317:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3318:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3319:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3320:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3321:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3322:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3323:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3324:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3325:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3326:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3327:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3328:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3329:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3330:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3331:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3332:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3333:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3334:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3335:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3336:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3337:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3338:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3339:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3340:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3341:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3342:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3343:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!3020 +{348 +[1,20486:4262630,47279633:28320399,43253760,0 +(1,20486:4262630,4025873:0,0,0 +[1,20486:-473656,4025873:0,0,0 +(1,20486:-473656,-710413:0,0,0 +(1,20486:-473656,-644877:0,0,0 +k1,20486:-473656,-644877:-65536 +) +(1,20486:-473656,4736287:0,0,0 +k1,20486:-473656,4736287:5209943 ) -g1,20557:-473656,-710413 +g1,20486:-473656,-710413 ) ] ) -[1,20557:6630773,47279633:25952256,43253760,0 -[1,20557:6630773,4812305:25952256,786432,0 -(1,20557:6630773,4812305:25952256,513147,126483 -(1,20557:6630773,4812305:25952256,513147,126483 -g1,20557:3078558,4812305 -[1,20557:3078558,4812305:0,0,0 -(1,20557:3078558,2439708:0,1703936,0 -k1,20557:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,20557:2537886,2439708:1179648,16384,0 +[1,20486:6630773,47279633:25952256,43253760,0 +[1,20486:6630773,4812305:25952256,786432,0 +(1,20486:6630773,4812305:25952256,505283,11795 +(1,20486:6630773,4812305:25952256,505283,11795 +g1,20486:3078558,4812305 +[1,20486:3078558,4812305:0,0,0 +(1,20486:3078558,2439708:0,1703936,0 +k1,20486:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,20486:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,20557:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,20486:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,20557:3078558,4812305:0,0,0 -(1,20557:3078558,2439708:0,1703936,0 -g1,20557:29030814,2439708 -g1,20557:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,20557:36151628,1915420:16384,1179648,0 +[1,20486:3078558,4812305:0,0,0 +(1,20486:3078558,2439708:0,1703936,0 +g1,20486:29030814,2439708 +g1,20486:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,20486:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,20557:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,20486:37855564,2439708:1179648,16384,0 ) ) -k1,20557:3078556,2439708:-34777008 +k1,20486:3078556,2439708:-34777008 ) ] -[1,20557:3078558,4812305:0,0,0 -(1,20557:3078558,49800853:0,16384,2228224 -k1,20557:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,20557:2537886,49800853:1179648,16384,0 +[1,20486:3078558,4812305:0,0,0 +(1,20486:3078558,49800853:0,16384,2228224 +k1,20486:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,20486:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,20557:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,20486:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,20557:3078558,4812305:0,0,0 -(1,20557:3078558,49800853:0,16384,2228224 -g1,20557:29030814,49800853 -g1,20557:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,20557:36151628,51504789:16384,1179648,0 +[1,20486:3078558,4812305:0,0,0 +(1,20486:3078558,49800853:0,16384,2228224 +g1,20486:29030814,49800853 +g1,20486:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,20486:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,20557:37855564,49800853:1179648,16384,0 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,20486:37855564,49800853:1179648,16384,0 ) ) -k1,20557:3078556,49800853:-34777008 +k1,20486:3078556,49800853:-34777008 ) ] -g1,20557:6630773,4812305 -k1,20557:21350816,4812305:13524666 -g1,20557:21999622,4812305 -g1,20557:25611966,4812305 -g1,20557:28956923,4812305 -g1,20557:29772190,4812305 -) +g1,20486:6630773,4812305 +g1,20486:6630773,4812305 +g1,20486:8724648,4812305 +k1,20486:31387652,4812305:22663004 +) ) ] -[1,20557:6630773,45706769:25952256,40108032,0 -(1,20557:6630773,45706769:25952256,40108032,0 -(1,20557:6630773,45706769:0,0,0 -g1,20557:6630773,45706769 +[1,20486:6630773,45706769:25952256,40108032,0 +(1,20486:6630773,45706769:25952256,40108032,0 +(1,20486:6630773,45706769:0,0,0 +g1,20486:6630773,45706769 ) -[1,20557:6630773,45706769:25952256,40108032,0 -(1,20504:6630773,6254097:25952256,513147,122846 -k1,20503:8301102,6254097:177419 -k1,20503:9544791,6254097:177418 -k1,20503:11846887,6254097:177419 -k1,20503:13043390,6254097:177418 -k1,20503:15486389,6254097:177419 -(1,20503:15486389,6254097:0,452978,115847 -r1,20557:16899790,6254097:1413401,568825,115847 -k1,20503:15486389,6254097:-1413401 +[1,20486:6630773,45706769:25952256,40108032,0 +(1,20443:6630773,16109226:25952256,10510489,0 +k1,20443:12599879,16109226:5969106 +h1,20442:12599879,16109226:0,0,0 +(1,20442:12599879,16109226:14014044,10510489,0 +(1,20442:12599879,16109226:14014019,10510515,0 +(1,20442:12599879,16109226:14014019,10510515,0 +(1,20442:12599879,16109226:0,10510515,0 +(1,20442:12599879,16109226:0,14208860,0 +(1,20442:12599879,16109226:18945146,14208860,0 ) -(1,20503:15486389,6254097:1413401,452978,115847 -k1,20503:15486389,6254097:3277 -h1,20503:16896513,6254097:0,411205,112570 -) -k1,20503:17077208,6254097:177418 -k1,20503:17937512,6254097:177419 -(1,20503:17937512,6254097:0,452978,122846 -r1,20557:20406049,6254097:2468537,575824,122846 -k1,20503:17937512,6254097:-2468537 -) -(1,20503:17937512,6254097:2468537,452978,122846 -k1,20503:17937512,6254097:3277 -h1,20503:20402772,6254097:0,411205,112570 -) -k1,20503:20583468,6254097:177419 -k1,20503:21420178,6254097:177418 -k1,20503:24439238,6254097:177419 -k1,20503:25268084,6254097:177418 -k1,20503:28660699,6254097:177419 -k1,20503:32583029,6254097:0 -) -(1,20504:6630773,7095585:25952256,513147,134348 -k1,20503:10227824,7095585:292070 -k1,20503:12235626,7095585:292069 -k1,20503:13620181,7095585:292070 -k1,20503:14579407,7095585:292070 -(1,20503:14579407,7095585:0,452978,115847 -r1,20557:16696232,7095585:2116825,568825,115847 -k1,20503:14579407,7095585:-2116825 -) -(1,20503:14579407,7095585:2116825,452978,115847 -k1,20503:14579407,7095585:3277 -h1,20503:16692955,7095585:0,411205,112570 -) -k1,20503:16988301,7095585:292069 -k1,20503:17963256,7095585:292070 -(1,20503:17963256,7095585:0,452978,115847 -r1,20557:20431793,7095585:2468537,568825,115847 -k1,20503:17963256,7095585:-2468537 -) -(1,20503:17963256,7095585:2468537,452978,115847 -k1,20503:17963256,7095585:3277 -h1,20503:20428516,7095585:0,411205,112570 -) -k1,20503:20723862,7095585:292069 -k1,20503:24455917,7095585:292070 -k1,20503:26141938,7095585:292070 -k1,20503:29408686,7095585:292069 -k1,20503:31896867,7095585:292070 -k1,20503:32583029,7095585:0 -) -(1,20504:6630773,7937073:25952256,513147,126483 -k1,20503:8434203,7937073:240396 -k1,20503:11318322,7937073:240397 -k1,20503:12210146,7937073:240396 -k1,20503:13198308,7937073:240396 -k1,20503:15602047,7937073:240396 -k1,20503:16528606,7937073:240397 -k1,20503:20712959,7937073:240396 -k1,20503:23888057,7937073:240396 -k1,20503:25076104,7937073:240396 -k1,20503:28151588,7937073:240397 -k1,20503:29411069,7937073:240396 -(1,20503:29411069,7937073:0,452978,122846 -r1,20557:32583029,7937073:3171960,575824,122846 -k1,20503:29411069,7937073:-3171960 -) -(1,20503:29411069,7937073:3171960,452978,122846 -k1,20503:29411069,7937073:3277 -h1,20503:32579752,7937073:0,411205,112570 -) -k1,20503:32583029,7937073:0 -) -(1,20504:6630773,8778561:25952256,505283,134348 -g1,20503:9819754,8778561 -g1,20503:11123265,8778561 -g1,20503:12070260,8778561 -g1,20503:13782715,8778561 -g1,20503:14633372,8778561 -g1,20503:16029944,8778561 -k1,20504:32583029,8778561:14200998 -g1,20504:32583029,8778561 -) -v1,20506:6630773,10144337:0,393216,0 -(1,20507:6630773,14057356:25952256,4306235,0 -g1,20507:6630773,14057356 -g1,20507:6303093,14057356 -r1,20557:6401397,14057356:98304,4306235,0 -g1,20507:6600626,14057356 -g1,20507:6797234,14057356 -[1,20507:6797234,14057356:25785795,4306235,0 -(1,20507:6797234,10564921:25785795,813800,267386 -(1,20506:6797234,10564921:0,813800,267386 -r1,20557:8134168,10564921:1336934,1081186,267386 -k1,20506:6797234,10564921:-1336934 -) -(1,20506:6797234,10564921:1336934,813800,267386 -) -k1,20506:8335855,10564921:201687 -k1,20506:8663535,10564921:327680 -k1,20506:10639937,10564921:201687 -k1,20506:12729716,10564921:201687 -k1,20506:14896828,10564921:201687 -k1,20506:15749943,10564921:201687 -k1,20506:16307490,10564921:201687 -k1,20506:17786474,10564921:201687 -k1,20506:20402507,10564921:201687 -k1,20506:22339587,10564921:201687 -k1,20506:25981259,10564921:201687 -k1,20506:27374391,10564921:201687 -k1,20506:30258467,10564921:201687 -k1,20506:32583029,10564921:0 -) -(1,20507:6797234,11406409:25785795,513147,134348 -k1,20506:9803611,11406409:284011 -k1,20506:13547924,11406409:284012 -k1,20506:15720027,11406409:284011 -k1,20506:17969463,11406409:284011 -k1,20506:19647426,11406409:284012 -(1,20506:19647426,11406409:0,452978,115847 -r1,20557:23171098,11406409:3523672,568825,115847 -k1,20506:19647426,11406409:-3523672 -) -(1,20506:19647426,11406409:3523672,452978,115847 -k1,20506:19647426,11406409:3277 -h1,20506:23167821,11406409:0,411205,112570 -) -k1,20506:23455109,11406409:284011 -k1,20506:24730680,11406409:284011 -k1,20506:28191877,11406409:284012 -k1,20506:31966991,11406409:284011 -k1,20506:32583029,11406409:0 -) -(1,20507:6797234,12247897:25785795,513147,126483 -k1,20506:8649786,12247897:151237 -k1,20506:10544936,12247897:151237 -k1,20506:11355465,12247897:151237 -k1,20506:11862562,12247897:151237 -k1,20506:14340327,12247897:151237 -k1,20506:15942531,12247897:151237 -k1,20506:17290454,12247897:151236 -k1,20506:19572922,12247897:151237 -k1,20506:20255656,12247897:151237 -k1,20506:21691399,12247897:151237 -k1,20506:25302937,12247897:151237 -k1,20506:27342266,12247897:151237 -k1,20506:29541503,12247897:151237 -k1,20507:32583029,12247897:0 -) -(1,20507:6797234,13089385:25785795,513147,134348 -k1,20506:8465921,13089385:293086 -k1,20506:9445169,13089385:293086 -k1,20506:12496010,13089385:293086 -k1,20506:14799742,13089385:293087 -k1,20506:16978299,13089385:293086 -k1,20506:18262945,13089385:293086 -k1,20506:19575116,13089385:293086 -k1,20506:21521675,13089385:293086 -k1,20506:22762412,13089385:293086 -k1,20506:24756813,13089385:293086 -k1,20506:26793813,13089385:293087 -k1,20506:27773061,13089385:293086 -k1,20506:28875517,13089385:293086 -k1,20506:32051532,13089385:293086 -k1,20506:32583029,13089385:0 -) -(1,20507:6797234,13930873:25785795,505283,126483 -g1,20506:9626423,13930873 -g1,20506:12285874,13930873 -g1,20506:12840963,13930873 -(1,20506:12840963,13930873:0,452978,122846 -r1,20557:15309500,13930873:2468537,575824,122846 -k1,20506:12840963,13930873:-2468537 -) -(1,20506:12840963,13930873:2468537,452978,122846 -k1,20506:12840963,13930873:3277 -h1,20506:15306223,13930873:0,411205,112570 -) -g1,20506:15508729,13930873 -g1,20506:16359386,13930873 -(1,20506:16359386,13930873:0,452978,115847 -r1,20557:17772787,13930873:1413401,568825,115847 -k1,20506:16359386,13930873:-1413401 -) -(1,20506:16359386,13930873:1413401,452978,115847 -k1,20506:16359386,13930873:3277 -h1,20506:17769510,13930873:0,411205,112570 -) -k1,20507:32583029,13930873:14636572 -g1,20507:32583029,13930873 -) -] -g1,20507:32583029,14057356 -) -h1,20507:6630773,14057356:0,0,0 -(1,20510:6630773,15423132:25952256,505283,134348 -h1,20509:6630773,15423132:983040,0,0 -g1,20509:8766591,15423132 -g1,20509:10626502,15423132 -g1,20509:11181591,15423132 -g1,20509:13505497,15423132 -g1,20509:16366143,15423132 -g1,20509:18300765,15423132 -(1,20509:18300765,15423132:0,452978,115847 -r1,20557:20417590,15423132:2116825,568825,115847 -k1,20509:18300765,15423132:-2116825 -) -(1,20509:18300765,15423132:2116825,452978,115847 -k1,20509:18300765,15423132:3277 -h1,20509:20414313,15423132:0,411205,112570 -) -g1,20509:20616819,15423132 -g1,20509:21502210,15423132 -k1,20510:32583029,15423132:7941645 -g1,20510:32583029,15423132 -) -v1,20512:6630773,16613598:0,393216,0 -(1,20522:6630773,20900597:25952256,4680215,196608 -g1,20522:6630773,20900597 -g1,20522:6630773,20900597 -g1,20522:6434165,20900597 -(1,20522:6434165,20900597:0,4680215,196608 -r1,20557:32779637,20900597:26345472,4876823,196608 -k1,20522:6434165,20900597:-26345472 -) -(1,20522:6434165,20900597:26345472,4680215,196608 -[1,20522:6630773,20900597:25952256,4483607,0 -(1,20514:6630773,16827508:25952256,410518,107478 -(1,20513:6630773,16827508:0,0,0 -g1,20513:6630773,16827508 -g1,20513:6630773,16827508 -g1,20513:6303093,16827508 -(1,20513:6303093,16827508:0,0,0 -) -g1,20513:6630773,16827508 -) -k1,20514:6630773,16827508:0 -g1,20514:12637541,16827508 -g1,20514:14850561,16827508 -g1,20514:16115144,16827508 -h1,20514:16431290,16827508:0,0,0 -k1,20514:32583029,16827508:16151739 -g1,20514:32583029,16827508 -) -(1,20515:6630773,17493686:25952256,404226,107478 -h1,20515:6630773,17493686:0,0,0 -g1,20515:6946919,17493686 -g1,20515:7263065,17493686 -g1,20515:11372959,17493686 -h1,20515:11689105,17493686:0,0,0 -k1,20515:32583029,17493686:20893924 -g1,20515:32583029,17493686 -) -(1,20516:6630773,18159864:25952256,404226,107478 -h1,20516:6630773,18159864:0,0,0 -g1,20516:6946919,18159864 -g1,20516:7263065,18159864 -g1,20516:11689105,18159864 -g1,20516:12321397,18159864 -k1,20516:12321397,18159864:0 -h1,20516:14534417,18159864:0,0,0 -k1,20516:32583029,18159864:18048612 -g1,20516:32583029,18159864 -) -(1,20517:6630773,18826042:25952256,404226,107478 -h1,20517:6630773,18826042:0,0,0 -g1,20517:6946919,18826042 -g1,20517:7263065,18826042 -g1,20517:7579211,18826042 -g1,20517:7895357,18826042 -g1,20517:8211503,18826042 -g1,20517:8527649,18826042 -g1,20517:8843795,18826042 -g1,20517:9159941,18826042 -g1,20517:9476087,18826042 -g1,20517:9792233,18826042 -g1,20517:10108379,18826042 -g1,20517:12005253,18826042 -g1,20517:12637545,18826042 -k1,20517:12637545,18826042:0 -h1,20517:15482856,18826042:0,0,0 -k1,20517:32583028,18826042:17100172 -g1,20517:32583028,18826042 -) -(1,20518:6630773,19492220:25952256,388497,101187 -h1,20518:6630773,19492220:0,0,0 -g1,20518:6946919,19492220 -g1,20518:7263065,19492220 -g1,20518:7579211,19492220 -g1,20518:7895357,19492220 -g1,20518:8211503,19492220 -g1,20518:8527649,19492220 -g1,20518:8843795,19492220 -g1,20518:9159941,19492220 -g1,20518:9476087,19492220 -g1,20518:9792233,19492220 -g1,20518:10108379,19492220 -g1,20518:10740671,19492220 -g1,20518:11372963,19492220 -g1,20518:12321401,19492220 -g1,20518:12953693,19492220 -g1,20518:13585985,19492220 -k1,20518:13585985,19492220:0 -h1,20518:14218277,19492220:0,0,0 -k1,20518:32583029,19492220:18364752 -g1,20518:32583029,19492220 -) -(1,20519:6630773,20158398:25952256,404226,82312 -h1,20519:6630773,20158398:0,0,0 -g1,20519:6946919,20158398 -g1,20519:7263065,20158398 -g1,20519:7579211,20158398 -g1,20519:7895357,20158398 -g1,20519:8211503,20158398 -g1,20519:8527649,20158398 -g1,20519:8843795,20158398 -g1,20519:9159941,20158398 -g1,20519:9476087,20158398 -g1,20519:9792233,20158398 -g1,20519:10108379,20158398 -g1,20519:12005253,20158398 -g1,20519:12637545,20158398 -k1,20519:12637545,20158398:0 -h1,20519:14850565,20158398:0,0,0 -k1,20519:32583029,20158398:17732464 -g1,20519:32583029,20158398 -) -(1,20520:6630773,20824576:25952256,404226,76021 -h1,20520:6630773,20824576:0,0,0 -g1,20520:6946919,20824576 -g1,20520:7263065,20824576 -g1,20520:7579211,20824576 -g1,20520:7895357,20824576 -g1,20520:8211503,20824576 -g1,20520:8527649,20824576 -g1,20520:8843795,20824576 -g1,20520:9159941,20824576 -g1,20520:9476087,20824576 -g1,20520:9792233,20824576 -g1,20520:10108379,20824576 -h1,20520:12321400,20824576:0,0,0 -k1,20520:32583028,20824576:20261628 -g1,20520:32583028,20824576 -) -] -) -g1,20522:32583029,20900597 -g1,20522:6630773,20900597 -g1,20522:6630773,20900597 -g1,20522:32583029,20900597 -g1,20522:32583029,20900597 -) -h1,20522:6630773,21097205:0,0,0 -(1,20525:6630773,30770695:25952256,9083666,0 -k1,20525:10523651,30770695:3892878 -h1,20524:10523651,30770695:0,0,0 -(1,20524:10523651,30770695:18166500,9083666,0 -(1,20524:10523651,30770695:18167376,9083688,0 -(1,20524:10523651,30770695:18167376,9083688,0 -(1,20524:10523651,30770695:0,9083688,0 -(1,20524:10523651,30770695:0,14208860,0 -(1,20524:10523651,30770695:28417720,14208860,0 -) -k1,20524:10523651,30770695:-28417720 -) -) -g1,20524:28691027,30770695 -) -) -) -g1,20525:28690151,30770695 -k1,20525:32583029,30770695:3892878 -) -v1,20532:6630773,32136471:0,393216,0 -(1,20533:6630773,33544845:25952256,1801590,0 -g1,20533:6630773,33544845 -g1,20533:6303093,33544845 -r1,20557:6401397,33544845:98304,1801590,0 -g1,20533:6600626,33544845 -g1,20533:6797234,33544845 -[1,20533:6797234,33544845:25785795,1801590,0 -(1,20533:6797234,32569009:25785795,825754,196608 -(1,20532:6797234,32569009:0,825754,196608 -r1,20557:7890375,32569009:1093141,1022362,196608 -k1,20532:6797234,32569009:-1093141 -) -(1,20532:6797234,32569009:1093141,825754,196608 -) -k1,20532:8057154,32569009:166779 -k1,20532:9783372,32569009:327680 -k1,20532:11247764,32569009:166779 -k1,20532:12808494,32569009:166779 -k1,20532:13994358,32569009:166779 -k1,20532:16171782,32569009:166779 -k1,20532:16997853,32569009:166779 -k1,20532:18183717,32569009:166779 -k1,20532:21753125,32569009:166779 -k1,20532:22571332,32569009:166779 -(1,20532:22571332,32569009:0,452978,115847 -r1,20557:26095004,32569009:3523672,568825,115847 -k1,20532:22571332,32569009:-3523672 -) -(1,20532:22571332,32569009:3523672,452978,115847 -k1,20532:22571332,32569009:3277 -h1,20532:26091727,32569009:0,411205,112570 -) -k1,20532:26261783,32569009:166779 -k1,20532:27079990,32569009:166779 -k1,20532:28609263,32569009:166779 -k1,20532:29795127,32569009:166779 -k1,20532:32583029,32569009:0 -) -(1,20533:6797234,33410497:25785795,513147,134348 -k1,20532:8377416,33410497:137735 -k1,20532:10304939,33410497:137735 -k1,20532:11773710,33410497:137735 -k1,20532:14093139,33410497:137735 -k1,20532:15561910,33410497:137735 -k1,20532:17174859,33410497:137734 -k1,20532:19875707,33410497:137735 -k1,20532:21710824,33410497:137735 -k1,20532:23040004,33410497:137735 -k1,20532:26995211,33410497:137735 -k1,20532:27792238,33410497:137735 -k1,20532:28949058,33410497:137735 -k1,20533:32583029,33410497:0 -k1,20533:32583029,33410497:0 -) -] -g1,20533:32583029,33544845 -) -h1,20533:6630773,33544845:0,0,0 -(1,20537:6630773,34910621:25952256,505283,126483 -h1,20536:6630773,34910621:983040,0,0 -k1,20536:8269126,34910621:185420 -k1,20536:8986043,34910621:185420 -k1,20536:12096990,34910621:185420 -k1,20536:15059826,34910621:185420 -k1,20536:15896674,34910621:185420 -k1,20536:17174579,34910621:185420 -k1,20536:18910581,34910621:185420 -k1,20536:21165628,34910621:185420 -k1,20536:23132317,34910621:185420 -k1,20536:25903132,34910621:185420 -k1,20536:26771437,34910621:185420 -k1,20536:28934734,34910621:185420 -k1,20536:30727752,34910621:185420 -k1,20536:31599334,34910621:185420 -k1,20537:32583029,34910621:0 -) -(1,20537:6630773,35752109:25952256,505283,134348 -k1,20536:10031238,35752109:206896 -k1,20536:11717281,35752109:206895 -(1,20536:11717281,35752109:0,452978,115847 -r1,20557:18406359,35752109:6689078,568825,115847 -k1,20536:11717281,35752109:-6689078 -) -(1,20536:11717281,35752109:6689078,452978,115847 -k1,20536:11717281,35752109:3277 -h1,20536:18403082,35752109:0,411205,112570 -) -k1,20536:18786925,35752109:206896 -k1,20536:20781642,35752109:206895 -k1,20536:22821579,35752109:206896 -k1,20536:25978249,35752109:206895 -k1,20536:28351765,35752109:206896 -k1,20536:29662942,35752109:206895 -k1,20536:30617604,35752109:206896 -k1,20536:32583029,35752109:0 -) -(1,20537:6630773,36593597:25952256,513147,134348 -k1,20536:7498894,36593597:216693 -k1,20536:8071447,36593597:216693 -k1,20536:10487528,36593597:216693 -k1,20536:11533251,36593597:216693 -k1,20536:12947286,36593597:216692 -k1,20536:15636652,36593597:216693 -k1,20536:16536230,36593597:216693 -k1,20536:17772008,36593597:216693 -k1,20536:19642174,36593597:216693 -k1,20536:21136164,36593597:216693 -k1,20536:22039019,36593597:216693 -k1,20536:23026415,36593597:216693 -k1,20536:24967359,36593597:216692 -k1,20536:26052404,36593597:216693 -k1,20536:27575230,36593597:216693 -k1,20536:29322189,36593597:216693 -k1,20536:30190310,36593597:216693 -k1,20536:32583029,36593597:0 -) -(1,20537:6630773,37435085:25952256,513147,134348 -k1,20536:7358344,37435085:269474 -k1,20536:8895285,37435085:269475 -k1,20536:9520619,37435085:269474 -k1,20536:11421285,37435085:269475 -k1,20536:12318594,37435085:269474 -k1,20536:13607153,37435085:269474 -k1,20536:15243709,37435085:269475 -k1,20536:16172475,37435085:269474 -k1,20536:16797809,37435085:269474 -k1,20536:19093002,37435085:269475 -k1,20536:20230828,37435085:269474 -k1,20536:21592788,37435085:269475 -(1,20536:21592788,37435085:0,452978,122846 -r1,20557:25819884,37435085:4227096,575824,122846 -k1,20536:21592788,37435085:-4227096 -) -(1,20536:21592788,37435085:4227096,452978,122846 -k1,20536:21592788,37435085:3277 -h1,20536:25816607,37435085:0,411205,112570 -) -k1,20536:26263028,37435085:269474 -k1,20536:27160337,37435085:269474 -k1,20536:28633053,37435085:269475 -k1,20536:31563944,37435085:269474 -k1,20536:32583029,37435085:0 -) -(1,20537:6630773,38276573:25952256,505283,134348 -k1,20536:8402779,38276573:221424 -k1,20536:9155700,38276573:221424 -k1,20536:9732984,38276573:221424 -k1,20536:13350485,38276573:221425 -k1,20536:16045238,38276573:221424 -k1,20536:17534128,38276573:221424 -k1,20536:18774637,38276573:221424 -k1,20536:20587931,38276573:221424 -k1,20536:22260322,38276573:221424 -k1,20536:23109581,38276573:221424 -k1,20536:25997010,38276573:221424 -k1,20536:26869863,38276573:221425 -k1,20536:28110372,38276573:221424 -k1,20536:29962987,38276573:221424 -k1,20536:31052763,38276573:221424 -k1,20536:32583029,38276573:0 -) -(1,20537:6630773,39118061:25952256,513147,126483 -k1,20536:7505679,39118061:223478 -k1,20536:10159231,39118061:223477 -k1,20536:11401794,39118061:223478 -k1,20536:15363445,39118061:223477 -k1,20536:18784425,39118061:223478 -k1,20536:19623940,39118061:223477 -k1,20536:22739522,39118061:223478 -k1,20536:24352362,39118061:223477 -k1,20536:26193924,39118061:223478 -k1,20536:27076693,39118061:223477 -k1,20536:28319256,39118061:223478 -k1,20536:30134603,39118061:223477 -k1,20536:31635378,39118061:223478 -k1,20536:32583029,39118061:0 -) -(1,20537:6630773,39959549:25952256,513147,134348 -g1,20536:7849087,39959549 -g1,20536:10604875,39959549 -g1,20536:11463396,39959549 -g1,20536:12681710,39959549 -k1,20537:32583029,39959549:18270128 -g1,20537:32583029,39959549 -) -v1,20539:6630773,41150015:0,393216,0 -(1,20548:6630773,44796002:25952256,4039203,196608 -g1,20548:6630773,44796002 -g1,20548:6630773,44796002 -g1,20548:6434165,44796002 -(1,20548:6434165,44796002:0,4039203,196608 -r1,20557:32779637,44796002:26345472,4235811,196608 -k1,20548:6434165,44796002:-26345472 -) -(1,20548:6434165,44796002:26345472,4039203,196608 -[1,20548:6630773,44796002:25952256,3842595,0 -(1,20541:6630773,41363925:25952256,410518,107478 -(1,20540:6630773,41363925:0,0,0 -g1,20540:6630773,41363925 -g1,20540:6630773,41363925 -g1,20540:6303093,41363925 -(1,20540:6303093,41363925:0,0,0 -) -g1,20540:6630773,41363925 -) -g1,20541:7263065,41363925 -g1,20541:8211503,41363925 -g1,20541:14218271,41363925 -g1,20541:16431291,41363925 -g1,20541:17695874,41363925 -h1,20541:18012020,41363925:0,0,0 -k1,20541:32583029,41363925:14571009 -g1,20541:32583029,41363925 -) -(1,20542:6630773,42030103:25952256,404226,107478 -h1,20542:6630773,42030103:0,0,0 -g1,20542:6946919,42030103 -g1,20542:7263065,42030103 -k1,20542:7263065,42030103:0 -h1,20542:11056813,42030103:0,0,0 -k1,20542:32583029,42030103:21526216 -g1,20542:32583029,42030103 -) -(1,20543:6630773,42696281:25952256,404226,101187 -h1,20543:6630773,42696281:0,0,0 -g1,20543:7263065,42696281 -g1,20543:7895357,42696281 -g1,20543:12953689,42696281 -g1,20543:13585981,42696281 -g1,20543:14850564,42696281 -h1,20543:15166710,42696281:0,0,0 -k1,20543:32583030,42696281:17416320 -g1,20543:32583030,42696281 -) -(1,20544:6630773,43362459:25952256,404226,107478 -h1,20544:6630773,43362459:0,0,0 -k1,20544:6841537,43362459:210764 -k1,20544:7052301,43362459:210764 -k1,20544:16747436,43362459:210764 -k1,20544:17274346,43362459:210764 -k1,20544:23808024,43362459:210764 -k1,20544:24334934,43362459:210764 -k1,20544:25810282,43362459:210764 -k1,20544:27285629,43362459:210764 -k1,20544:28760976,43362459:210764 -k1,20544:29287886,43362459:210764 -k1,20544:31079379,43362459:210764 -k1,20544:32554725,43362459:210764 -h1,20544:32870871,43362459:0,0,0 -k1,20544:32870871,43362459:0 -k1,20544:32870871,43362459:0 -) -(1,20545:6630773,44028637:25952256,404226,82312 -h1,20545:6630773,44028637:0,0,0 -g1,20545:6946919,44028637 -g1,20545:7263065,44028637 -g1,20545:7579211,44028637 -g1,20545:7895357,44028637 -g1,20545:8211503,44028637 -g1,20545:8527649,44028637 -g1,20545:8843795,44028637 -g1,20545:9159941,44028637 -g1,20545:9476087,44028637 -g1,20545:9792233,44028637 -g1,20545:10108379,44028637 -g1,20545:10424525,44028637 -g1,20545:10740671,44028637 -g1,20545:11056817,44028637 -g1,20545:11372963,44028637 -g1,20545:11689109,44028637 -g1,20545:12005255,44028637 -g1,20545:12321401,44028637 -g1,20545:12637547,44028637 -g1,20545:12953693,44028637 -g1,20545:13269839,44028637 -g1,20545:13585985,44028637 -g1,20545:13902131,44028637 -g1,20545:14218277,44028637 -g1,20545:14534423,44028637 -g1,20545:14850569,44028637 -g1,20545:15166715,44028637 -g1,20545:15482861,44028637 -g1,20545:15799007,44028637 -g1,20545:16115153,44028637 -g1,20545:16431299,44028637 -k1,20545:16431299,44028637:0 -h1,20545:20857338,44028637:0,0,0 -k1,20545:32583029,44028637:11725691 -g1,20545:32583029,44028637 -) -(1,20546:6630773,44694815:25952256,404226,101187 -h1,20546:6630773,44694815:0,0,0 -g1,20546:6946919,44694815 -g1,20546:7263065,44694815 -g1,20546:7579211,44694815 -g1,20546:7895357,44694815 -g1,20546:8211503,44694815 -g1,20546:8527649,44694815 -g1,20546:8843795,44694815 -g1,20546:9159941,44694815 -g1,20546:9476087,44694815 -g1,20546:9792233,44694815 -g1,20546:10108379,44694815 -g1,20546:10424525,44694815 -g1,20546:10740671,44694815 -g1,20546:11056817,44694815 -g1,20546:11372963,44694815 -g1,20546:11689109,44694815 -g1,20546:12005255,44694815 -g1,20546:12321401,44694815 -g1,20546:12637547,44694815 -g1,20546:12953693,44694815 -g1,20546:14534422,44694815 -g1,20546:15166714,44694815 -g1,20546:16431297,44694815 -g1,20546:18012026,44694815 -g1,20546:18644318,44694815 -g1,20546:19908901,44694815 -g1,20546:21489630,44694815 -g1,20546:22121922,44694815 -g1,20546:23386505,44694815 -g1,20546:24967234,44694815 -g1,20546:25599526,44694815 -h1,20546:26547963,44694815:0,0,0 -k1,20546:32583029,44694815:6035066 -g1,20546:32583029,44694815 -) -] -) -g1,20548:32583029,44796002 -g1,20548:6630773,44796002 -g1,20548:6630773,44796002 -g1,20548:32583029,44796002 -g1,20548:32583029,44796002 -) -h1,20548:6630773,44992610:0,0,0 -] -(1,20557:32583029,45706769:0,0,0 -g1,20557:32583029,45706769 -) -) -] -(1,20557:6630773,47279633:25952256,0,0 -h1,20557:6630773,47279633:25952256,0,0 -) -] -(1,20557:4262630,4025873:0,0,0 -[1,20557:-473656,4025873:0,0,0 -(1,20557:-473656,-710413:0,0,0 -(1,20557:-473656,-710413:0,0,0 -g1,20557:-473656,-710413 -) -g1,20557:-473656,-710413 -) -] -) -] -!24963 -}369 -Input:3357:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3358:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3359:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3360:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!388 -{370 -[1,20594:4262630,47279633:28320399,43253760,0 -(1,20594:4262630,4025873:0,0,0 -[1,20594:-473656,4025873:0,0,0 -(1,20594:-473656,-710413:0,0,0 -(1,20594:-473656,-644877:0,0,0 -k1,20594:-473656,-644877:-65536 +k1,20442:12599879,16109226:-18945146 +) +) +g1,20442:26613898,16109226 +) +) +) +g1,20443:26613923,16109226 +k1,20443:32583029,16109226:5969106 +) +(1,20450:6630773,16974306:25952256,513147,134348 +h1,20449:6630773,16974306:983040,0,0 +k1,20449:8519193,16974306:253952 +k1,20449:9459307,16974306:253952 +k1,20449:10329297,16974306:253952 +k1,20449:11602334,16974306:253952 +k1,20449:14610764,16974306:253952 +k1,20449:17699803,16974306:253952 +k1,20449:19329356,16974306:253952 +k1,20449:20602393,16974306:253952 +k1,20449:22223426,16974306:253952 +k1,20449:23136670,16974306:253952 +k1,20449:26365301,16974306:253952 +k1,20449:28815364,16974306:253952 +k1,20449:30929883,16974306:253952 +k1,20449:31835263,16974306:253952 +k1,20449:32583029,16974306:0 +) +(1,20450:6630773,17839386:25952256,513147,134348 +k1,20449:9666933,17839386:201073 +k1,20449:12295460,17839386:201073 +k1,20449:15192029,17839386:201073 +(1,20449:15192029,17839386:0,452978,115847 +r1,20486:18363989,17839386:3171960,568825,115847 +k1,20449:15192029,17839386:-3171960 +) +(1,20449:15192029,17839386:3171960,452978,115847 +k1,20449:15192029,17839386:3277 +h1,20449:18360712,17839386:0,411205,112570 +) +k1,20449:18565062,17839386:201073 +k1,20449:19449020,17839386:201073 +(1,20449:19449020,17839386:0,452978,115847 +r1,20486:22620980,17839386:3171960,568825,115847 +k1,20449:19449020,17839386:-3171960 +) +(1,20449:19449020,17839386:3171960,452978,115847 +k1,20449:19449020,17839386:3277 +h1,20449:22617703,17839386:0,411205,112570 +) +k1,20449:22822054,17839386:201074 +k1,20449:25035082,17839386:201073 +k1,20449:25592015,17839386:201073 +k1,20449:27443285,17839386:201073 +k1,20449:29977440,17839386:201073 +k1,20449:31369958,17839386:201073 +k1,20449:32583029,17839386:0 +) +(1,20450:6630773,18704466:25952256,513147,126483 +k1,20449:10479484,18704466:162966 +k1,20449:13800630,18704466:162966 +k1,20449:14591431,18704466:162966 +k1,20449:15965502,18704466:162966 +k1,20449:17260275,18704466:162966 +k1,20449:20292407,18704466:162966 +k1,20449:21836218,18704466:162967 +k1,20449:24380762,18704466:162966 +k1,20449:25226613,18704466:162966 +k1,20449:26629520,18704466:162966 +k1,20449:28677957,18704466:162966 +k1,20449:31563944,18704466:162966 +k1,20449:32583029,18704466:0 +) +(1,20450:6630773,19569546:25952256,513147,134348 +g1,20449:8840647,19569546 +g1,20449:9707032,19569546 +(1,20449:9707032,19569546:0,452978,115847 +r1,20486:11823857,19569546:2116825,568825,115847 +k1,20449:9707032,19569546:-2116825 +) +(1,20449:9707032,19569546:2116825,452978,115847 +k1,20449:9707032,19569546:3277 +h1,20449:11820580,19569546:0,411205,112570 +) +g1,20449:12023086,19569546 +g1,20449:13489781,19569546 +g1,20449:14708095,19569546 +g1,20449:17263343,19569546 +g1,20449:19473217,19569546 +g1,20449:20776728,19569546 +g1,20449:21723723,19569546 +g1,20449:24128239,19569546 +g1,20449:25013630,19569546 +g1,20449:25983562,19569546 +g1,20449:29255119,19569546 +g1,20449:30105776,19569546 +(1,20449:30105776,19569546:0,452978,115847 +r1,20486:32222601,19569546:2116825,568825,115847 +k1,20449:30105776,19569546:-2116825 +) +(1,20449:30105776,19569546:2116825,452978,115847 +k1,20449:30105776,19569546:3277 +h1,20449:32219324,19569546:0,411205,112570 +) +k1,20450:32583029,19569546:186758 +g1,20450:32583029,19569546 +) +v1,20452:6630773,20254401:0,393216,0 +(1,20457:6630773,21273333:25952256,1412148,196608 +g1,20457:6630773,21273333 +g1,20457:6630773,21273333 +g1,20457:6434165,21273333 +(1,20457:6434165,21273333:0,1412148,196608 +r1,20486:32779637,21273333:26345472,1608756,196608 +k1,20457:6434165,21273333:-26345472 +) +(1,20457:6434165,21273333:26345472,1412148,196608 +[1,20457:6630773,21273333:25952256,1215540,0 +(1,20454:6630773,20482232:25952256,424439,106246 +(1,20453:6630773,20482232:0,0,0 +g1,20453:6630773,20482232 +g1,20453:6630773,20482232 +g1,20453:6303093,20482232 +(1,20453:6303093,20482232:0,0,0 +) +g1,20453:6630773,20482232 +) +g1,20454:6962727,20482232 +g1,20454:7294681,20482232 +g1,20454:15261576,20482232 +g1,20454:15925484,20482232 +g1,20454:20240885,20482232 +g1,20454:24888240,20482232 +k1,20454:24888240,20482232:0 +h1,20454:28539733,20482232:0,0,0 +k1,20454:32583029,20482232:4043296 +g1,20454:32583029,20482232 +) +(1,20455:6630773,21167087:25952256,424439,106246 +h1,20455:6630773,21167087:0,0,0 +g1,20455:6962727,21167087 +g1,20455:7294681,21167087 +g1,20455:7626635,21167087 +g1,20455:7958589,21167087 +g1,20455:8290543,21167087 +g1,20455:8622497,21167087 +g1,20455:8954451,21167087 +g1,20455:9286405,21167087 +g1,20455:9618359,21167087 +g1,20455:9950313,21167087 +g1,20455:10282267,21167087 +g1,20455:10614221,21167087 +g1,20455:10946175,21167087 +g1,20455:11278129,21167087 +g1,20455:11610083,21167087 +g1,20455:11942037,21167087 +g1,20455:12273991,21167087 +g1,20455:12605945,21167087 +g1,20455:12937899,21167087 +g1,20455:15261577,21167087 +g1,20455:15925485,21167087 +h1,20455:18581116,21167087:0,0,0 +k1,20455:32583029,21167087:14001913 +g1,20455:32583029,21167087 +) +] +) +g1,20457:32583029,21273333 +g1,20457:6630773,21273333 +g1,20457:6630773,21273333 +g1,20457:32583029,21273333 +g1,20457:32583029,21273333 +) +h1,20457:6630773,21469941:0,0,0 +(1,20461:6630773,22335021:25952256,513147,134348 +h1,20460:6630773,22335021:983040,0,0 +k1,20460:12049895,22335021:177552 +k1,20460:13095799,22335021:177552 +k1,20460:14377633,22335021:177552 +k1,20460:16795861,22335021:177552 +k1,20460:17992498,22335021:177552 +k1,20460:19909376,22335021:177552 +k1,20460:20746219,22335021:177551 +k1,20460:21942856,22335021:177552 +k1,20460:24833599,22335021:177552 +k1,20460:25627189,22335021:177552 +k1,20460:26823826,22335021:177552 +k1,20460:28278675,22335021:177552 +k1,20460:29217755,22335021:177552 +k1,20460:32583029,22335021:0 +) +(1,20461:6630773,23200101:25952256,513147,134348 +k1,20460:7898620,23200101:248762 +k1,20460:9939792,23200101:248762 +k1,20460:10847847,23200101:248763 +k1,20460:12990599,23200101:248762 +(1,20460:12990599,23200101:0,459977,122846 +r1,20486:16162559,23200101:3171960,582823,122846 +k1,20460:12990599,23200101:-3171960 +) +(1,20460:12990599,23200101:3171960,459977,122846 +k1,20460:12990599,23200101:3277 +h1,20460:16159282,23200101:0,411205,112570 +) +k1,20460:16584991,23200101:248762 +k1,20460:18214597,23200101:248762 +k1,20460:21447869,23200101:248762 +k1,20460:23742665,23200101:248762 +k1,20460:25761555,23200101:248763 +k1,20460:26476278,23200101:248762 +k1,20460:27744125,23200101:248762 +k1,20460:30722462,23200101:248762 +k1,20460:32583029,23200101:0 +) +(1,20461:6630773,24065181:25952256,505283,134348 +k1,20460:7472130,24065181:189929 +k1,20460:8409825,24065181:189929 +k1,20460:10177205,24065181:189928 +k1,20460:16003886,24065181:189929 +k1,20460:18048484,24065181:189929 +k1,20460:19047783,24065181:189929 +k1,20460:21248357,24065181:189929 +k1,20460:22054323,24065181:189928 +(1,20460:22054323,24065181:0,452978,115847 +r1,20486:23467724,24065181:1413401,568825,115847 +k1,20460:22054323,24065181:-1413401 +) +(1,20460:22054323,24065181:1413401,452978,115847 +k1,20460:22054323,24065181:3277 +h1,20460:23464447,24065181:0,411205,112570 +) +k1,20460:23831323,24065181:189929 +k1,20460:25071139,24065181:189929 +k1,20460:27539755,24065181:189929 +h1,20460:28908802,24065181:0,0,0 +k1,20460:29098730,24065181:189928 +k1,20460:30098029,24065181:189929 +k1,20460:31786111,24065181:189929 +h1,20460:32583029,24065181:0,0,0 +k1,20460:32583029,24065181:0 +) +(1,20461:6630773,24930261:25952256,513147,134348 +k1,20460:7770206,24930261:191782 +k1,20460:10253127,24930261:191782 +k1,20460:11641596,24930261:191782 +k1,20460:14494795,24930261:191782 +k1,20460:16555008,24930261:191782 +k1,20460:18737774,24930261:191782 +k1,20460:20259937,24930261:191782 +k1,20460:21103147,24930261:191782 +k1,20460:23669954,24930261:191782 +k1,20460:24880821,24930261:191782 +k1,20460:27959464,24930261:191782 +k1,20460:32583029,24930261:0 +) +(1,20461:6630773,25795341:25952256,513147,115847 +g1,20460:7481430,25795341 +g1,20460:8699744,25795341 +g1,20460:10691383,25795341 +g1,20460:11557768,25795341 +(1,20460:11557768,25795341:0,452978,115847 +r1,20486:13322881,25795341:1765113,568825,115847 +k1,20460:11557768,25795341:-1765113 +) +(1,20460:11557768,25795341:1765113,452978,115847 +k1,20460:11557768,25795341:3277 +h1,20460:13319604,25795341:0,411205,112570 +) +g1,20460:13522110,25795341 +g1,20460:15576008,25795341 +g1,20460:16584607,25795341 +g1,20460:17802921,25795341 +(1,20460:17802921,25795341:0,452978,115847 +r1,20486:19919746,25795341:2116825,568825,115847 +k1,20460:17802921,25795341:-2116825 +) +(1,20460:17802921,25795341:2116825,452978,115847 +k1,20460:17802921,25795341:3277 +h1,20460:19916469,25795341:0,411205,112570 +) +g1,20460:20118975,25795341 +g1,20460:20985360,25795341 +(1,20460:20985360,25795341:0,452978,115847 +r1,20486:22047049,25795341:1061689,568825,115847 +k1,20460:20985360,25795341:-1061689 +) +(1,20460:20985360,25795341:1061689,452978,115847 +k1,20460:20985360,25795341:3277 +h1,20460:22043772,25795341:0,411205,112570 +) +k1,20461:32583029,25795341:10362310 +g1,20461:32583029,25795341 +) +v1,20463:6630773,26480196:0,393216,0 +(1,20468:6630773,27512340:25952256,1425360,196608 +g1,20468:6630773,27512340 +g1,20468:6630773,27512340 +g1,20468:6434165,27512340 +(1,20468:6434165,27512340:0,1425360,196608 +r1,20486:32779637,27512340:26345472,1621968,196608 +k1,20468:6434165,27512340:-26345472 +) +(1,20468:6434165,27512340:26345472,1425360,196608 +[1,20468:6630773,27512340:25952256,1228752,0 +(1,20465:6630773,26714633:25952256,431045,112852 +(1,20464:6630773,26714633:0,0,0 +g1,20464:6630773,26714633 +g1,20464:6630773,26714633 +g1,20464:6303093,26714633 +(1,20464:6303093,26714633:0,0,0 +) +g1,20464:6630773,26714633 +) +k1,20465:6630773,26714633:0 +g1,20465:10614221,26714633 +g1,20465:15261577,26714633 +g1,20465:15925485,26714633 +g1,20465:20904795,26714633 +g1,20465:21568703,26714633 +g1,20465:22232611,26714633 +g1,20465:23892381,26714633 +g1,20465:25220197,26714633 +g1,20465:25884105,26714633 +g1,20465:28207783,26714633 +g1,20465:30199507,26714633 +h1,20465:30531461,26714633:0,0,0 +k1,20465:32583029,26714633:2051568 +g1,20465:32583029,26714633 +) +(1,20466:6630773,27399488:25952256,431045,112852 +h1,20466:6630773,27399488:0,0,0 +g1,20466:6962727,27399488 +g1,20466:7294681,27399488 +g1,20466:13269852,27399488 +g1,20466:13933760,27399488 +g1,20466:16257438,27399488 +g1,20466:17585254,27399488 +g1,20466:18249162,27399488 +h1,20466:19908932,27399488:0,0,0 +k1,20466:32583029,27399488:12674097 +g1,20466:32583029,27399488 +) +] +) +g1,20468:32583029,27512340 +g1,20468:6630773,27512340 +g1,20468:6630773,27512340 +g1,20468:32583029,27512340 +g1,20468:32583029,27512340 +) +h1,20468:6630773,27708948:0,0,0 +(1,20473:6630773,29825766:25952256,555811,12975 +(1,20473:6630773,29825766:2450326,534184,12975 +g1,20473:6630773,29825766 +g1,20473:9081099,29825766 +) +k1,20473:32583029,29825766:22040674 +g1,20473:32583029,29825766 +) +(1,20476:6630773,31084062:25952256,505283,115847 +k1,20475:8120782,31084062:447987 +k1,20475:9587855,31084062:447988 +(1,20475:9587855,31084062:0,452978,115847 +r1,20486:11001256,31084062:1413401,568825,115847 +k1,20475:9587855,31084062:-1413401 +) +(1,20475:9587855,31084062:1413401,452978,115847 +k1,20475:9587855,31084062:3277 +h1,20475:10997979,31084062:0,411205,112570 +) +k1,20475:11449243,31084062:447987 +k1,20475:14824067,31084062:447987 +k1,20475:17503556,31084062:447988 +k1,20475:19854053,31084062:447987 +k1,20475:21293601,31084062:447988 +k1,20475:24699228,31084062:447987 +k1,20475:26613911,31084062:447987 +k1,20475:29587657,31084062:447988 +k1,20475:31227089,31084062:447987 +k1,20476:32583029,31084062:0 +) +(1,20476:6630773,31949142:25952256,513147,126483 +k1,20475:9648289,31949142:416392 +k1,20475:11622471,31949142:416391 +k1,20475:12854131,31949142:416392 +k1,20475:14336794,31949142:416392 +k1,20475:16496444,31949142:416392 +k1,20475:18696070,31949142:416391 +k1,20475:20680083,31949142:416392 +k1,20475:22840388,31949142:416392 +k1,20475:25591172,31949142:416392 +k1,20475:29097586,31949142:416391 +k1,20475:31542973,31949142:416392 +k1,20476:32583029,31949142:0 +) +(1,20476:6630773,32814222:25952256,473825,122846 +k1,20475:9725929,32814222:389174 +(1,20475:9725929,32814222:0,452978,122846 +r1,20486:13953025,32814222:4227096,575824,122846 +k1,20475:9725929,32814222:-4227096 +) +(1,20475:9725929,32814222:4227096,452978,122846 +k1,20475:9725929,32814222:3277 +h1,20475:13949748,32814222:0,411205,112570 +) +k1,20475:14515868,32814222:389173 +(1,20475:14515868,32814222:0,452978,122846 +r1,20486:18391252,32814222:3875384,575824,122846 +k1,20475:14515868,32814222:-3875384 +) +(1,20475:14515868,32814222:3875384,452978,122846 +k1,20475:14515868,32814222:3277 +h1,20475:18387975,32814222:0,411205,112570 +) +k1,20475:18954096,32814222:389174 +(1,20475:18954096,32814222:0,452978,122846 +r1,20486:23181192,32814222:4227096,575824,122846 +k1,20475:18954096,32814222:-4227096 +) +(1,20475:18954096,32814222:4227096,452978,122846 +k1,20475:18954096,32814222:3277 +h1,20475:23177915,32814222:0,411205,112570 +) +k1,20475:23744035,32814222:389173 +(1,20475:23744035,32814222:0,452978,122846 +r1,20486:27971131,32814222:4227096,575824,122846 +k1,20475:23744035,32814222:-4227096 +) +(1,20475:23744035,32814222:4227096,452978,122846 +k1,20475:23744035,32814222:3277 +h1,20475:27967854,32814222:0,411205,112570 +) +k1,20475:28533975,32814222:389174 +(1,20475:28533975,32814222:0,452978,122846 +r1,20486:32409359,32814222:3875384,575824,122846 +k1,20475:28533975,32814222:-3875384 +) +(1,20475:28533975,32814222:3875384,452978,122846 +k1,20475:28533975,32814222:3277 +h1,20475:32406082,32814222:0,411205,112570 +) +k1,20476:32583029,32814222:0 +) +(1,20476:6630773,33679302:25952256,513147,126483 +(1,20475:6630773,33679302:0,452978,122846 +r1,20486:10857869,33679302:4227096,575824,122846 +k1,20475:6630773,33679302:-4227096 +) +(1,20475:6630773,33679302:4227096,452978,122846 +k1,20475:6630773,33679302:3277 +h1,20475:10854592,33679302:0,411205,112570 +) +k1,20475:11261236,33679302:403367 +k1,20475:13167999,33679302:403367 +(1,20475:13167999,33679302:0,452978,115847 +r1,20486:14581400,33679302:1413401,568825,115847 +k1,20475:13167999,33679302:-1413401 +) +(1,20475:13167999,33679302:1413401,452978,115847 +k1,20475:13167999,33679302:3277 +h1,20475:14578123,33679302:0,411205,112570 +) +k1,20475:14984767,33679302:403367 +k1,20475:16074296,33679302:403367 +k1,20475:19490353,33679302:403367 +k1,20475:20521555,33679302:403367 +k1,20475:21944007,33679302:403367 +k1,20475:23714455,33679302:403367 +k1,20475:24784978,33679302:403367 +(1,20475:24784978,33679302:0,452978,122846 +r1,20486:28308650,33679302:3523672,575824,122846 +k1,20475:24784978,33679302:-3523672 +) +(1,20475:24784978,33679302:3523672,452978,122846 +k1,20475:24784978,33679302:3277 +h1,20475:28305373,33679302:0,411205,112570 +) +k1,20475:28885687,33679302:403367 +(1,20475:28885687,33679302:0,452978,122846 +r1,20486:32409359,33679302:3523672,575824,122846 +k1,20475:28885687,33679302:-3523672 +) +(1,20475:28885687,33679302:3523672,452978,122846 +k1,20475:28885687,33679302:3277 +h1,20475:32406082,33679302:0,411205,112570 +) +k1,20476:32583029,33679302:0 +) +(1,20476:6630773,34544382:25952256,505283,134348 +(1,20475:6630773,34544382:0,452978,122846 +r1,20486:10506157,34544382:3875384,575824,122846 +k1,20475:6630773,34544382:-3875384 +) +(1,20475:6630773,34544382:3875384,452978,122846 +k1,20475:6630773,34544382:3277 +h1,20475:10502880,34544382:0,411205,112570 +) +k1,20475:10763115,34544382:256958 +k1,20475:12211518,34544382:256958 +k1,20475:13234592,34544382:256958 +k1,20475:15193520,34544382:256958 +k1,20475:18613901,34544382:256958 +k1,20475:21740024,34544382:256957 +k1,20475:24904814,34544382:256958 +k1,20475:25923300,34544382:256958 +k1,20475:27852737,34544382:256958 +(1,20475:27852737,34544382:0,452978,115847 +r1,20486:29266138,34544382:1413401,568825,115847 +k1,20475:27852737,34544382:-1413401 +) +(1,20475:27852737,34544382:1413401,452978,115847 +k1,20475:27852737,34544382:3277 +h1,20475:29262861,34544382:0,411205,112570 +) +k1,20475:29523096,34544382:256958 +k1,20475:30311551,34544382:256958 +k1,20475:32583029,34544382:0 +) +(1,20476:6630773,35409462:25952256,513147,126483 +k1,20475:7627255,35409462:234954 +k1,20475:9558935,35409462:234953 +k1,20475:11933640,35409462:234954 +k1,20475:13841072,35409462:234953 +k1,20475:14703861,35409462:234954 +k1,20475:16323590,35409462:234953 +k1,20475:18260514,35409462:234954 +k1,20475:21670031,35409462:234953 +k1,20475:24196779,35409462:234954 +k1,20475:25379383,35409462:234953 +k1,20475:27113145,35409462:234954 +k1,20475:28841664,35409462:234953 +k1,20475:29762780,35409462:234954 +(1,20475:29762780,35409462:0,452978,115847 +r1,20486:32583029,35409462:2820249,568825,115847 +k1,20475:29762780,35409462:-2820249 +) +(1,20475:29762780,35409462:2820249,452978,115847 +k1,20475:29762780,35409462:3277 +h1,20475:32579752,35409462:0,411205,112570 +) +k1,20475:32583029,35409462:0 +) +(1,20476:6630773,36274542:25952256,505283,126483 +g1,20475:8115818,36274542 +g1,20475:10078621,36274542 +g1,20475:10929278,36274542 +g1,20475:12825234,36274542 +k1,20476:32583028,36274542:17114072 +g1,20476:32583028,36274542 +) +(1,20479:6630773,37139622:25952256,513147,134348 +h1,20477:6630773,37139622:983040,0,0 +k1,20477:9665087,37139622:268039 +k1,20477:11668519,37139622:268039 +(1,20477:11668519,37139622:0,452978,115847 +r1,20486:13081920,37139622:1413401,568825,115847 +k1,20477:11668519,37139622:-1413401 +) +(1,20477:11668519,37139622:1413401,452978,115847 +k1,20477:11668519,37139622:3277 +h1,20477:13078643,37139622:0,411205,112570 +) +k1,20477:13349959,37139622:268039 +k1,20477:15694179,37139622:268039 +(1,20477:15694179,37139622:0,452978,115847 +r1,20486:17811004,37139622:2116825,568825,115847 +k1,20477:15694179,37139622:-2116825 +) +(1,20477:15694179,37139622:2116825,452978,115847 +k1,20477:15694179,37139622:3277 +h1,20477:17807727,37139622:0,411205,112570 +) +k1,20477:18079043,37139622:268039 +k1,20477:19538527,37139622:268039 +(1,20477:19538527,37139622:0,452978,115847 +r1,20486:21655352,37139622:2116825,568825,115847 +k1,20477:19538527,37139622:-2116825 +) +(1,20477:19538527,37139622:2116825,452978,115847 +k1,20477:19538527,37139622:3277 +h1,20477:21652075,37139622:0,411205,112570 +) +k1,20477:21923390,37139622:268038 +k1,20477:23970731,37139622:268039 +k1,20477:25257855,37139622:268039 +k1,20477:26626899,37139622:268039 +k1,20477:27577823,37139622:268039 +(1,20477:27577823,37139622:0,452978,122846 +r1,20486:29342936,37139622:1765113,575824,122846 +k1,20477:27577823,37139622:-1765113 +) +(1,20477:27577823,37139622:1765113,452978,122846 +k1,20477:27577823,37139622:3277 +h1,20477:29339659,37139622:0,411205,112570 +) +k1,20477:29784645,37139622:268039 +k1,20477:30680519,37139622:268039 +k1,20477:32583029,37139622:0 +) +(1,20479:6630773,38004702:25952256,505283,134348 +k1,20477:8109243,38004702:193964 +k1,20477:10923336,38004702:193964 +k1,20477:11473160,38004702:193964 +k1,20477:12768129,38004702:193964 +k1,20477:15389547,38004702:193964 +(1,20477:15389547,38004702:0,452978,122846 +r1,20486:20320067,38004702:4930520,575824,122846 +k1,20477:15389547,38004702:-4930520 +) +(1,20477:15389547,38004702:4930520,452978,122846 +g1,20477:17503095,38004702 +g1,20477:18206519,38004702 +h1,20477:20316790,38004702:0,411205,112570 +) +k1,20477:20514031,38004702:193964 +k1,20477:23393005,38004702:193964 +k1,20477:24606054,38004702:193964 +k1,20477:25901023,38004702:193964 +k1,20477:30718552,38004702:193964 +k1,20477:31563944,38004702:193964 +k1,20477:32583029,38004702:0 +) +(1,20479:6630773,38869782:25952256,505283,7863 +g1,20477:8575881,38869782 +k1,20479:32583029,38869782:24007148 +g1,20479:32583029,38869782 +) +(1,20480:6630773,40986600:25952256,564462,12975 +(1,20480:6630773,40986600:2450326,534184,12975 +g1,20480:6630773,40986600 +g1,20480:9081099,40986600 +) +g1,20480:11275507,40986600 +g1,20480:12842735,40986600 +k1,20480:32583028,40986600:18787268 +g1,20480:32583028,40986600 +) +(1,20485:6630773,42244896:25952256,513147,126483 +k1,20484:8471445,42244896:224554 +k1,20484:9887445,42244896:224555 +k1,20484:10952826,42244896:224554 +k1,20484:13079890,42244896:224554 +k1,20484:14296005,42244896:224555 +k1,20484:16896239,42244896:224554 +k1,20484:18192963,42244896:224555 +k1,20484:19797705,42244896:224554 +k1,20484:21801561,42244896:224554 +k1,20484:24788459,42244896:224555 +k1,20484:27882179,42244896:224554 +k1,20484:28766025,42244896:224554 +k1,20484:30009665,42244896:224555 +k1,20484:31685186,42244896:224554 +k1,20484:32583029,42244896:0 +) +(1,20485:6630773,43109976:25952256,505283,126483 +k1,20484:8778219,43109976:282947 +k1,20484:11930332,43109976:282947 +k1,20484:12829316,43109976:282946 +k1,20484:13468123,43109976:282947 +k1,20484:15028367,43109976:282947 +k1,20484:16814710,43109976:282947 +k1,20484:18116741,43109976:282946 +(1,20484:18116741,43109976:0,452978,115847 +r1,20486:19881854,43109976:1765113,568825,115847 +k1,20484:18116741,43109976:-1765113 +) +(1,20484:18116741,43109976:1765113,452978,115847 +k1,20484:18116741,43109976:3277 +h1,20484:19878577,43109976:0,411205,112570 +) +k1,20484:20164801,43109976:282947 +k1,20484:23374585,43109976:282947 +k1,20484:24729701,43109976:282947 +k1,20484:26388249,43109976:282947 +k1,20484:29540361,43109976:282946 +k1,20484:31107814,43109976:282947 +k1,20484:32583029,43109976:0 +) +(1,20485:6630773,43975056:25952256,505283,134348 +k1,20484:7658678,43975056:257202 +k1,20484:9582461,43975056:257202 +k1,20484:11860138,43975056:257202 +k1,20484:13308785,43975056:257202 +k1,20484:13921847,43975056:257202 +k1,20484:17403420,43975056:257202 +k1,20484:19164019,43975056:257203 +k1,20484:20887917,43975056:257202 +(1,20484:20887917,43975056:0,452978,115847 +r1,20486:22653030,43975056:1765113,568825,115847 +k1,20484:20887917,43975056:-1765113 +) +(1,20484:20887917,43975056:1765113,452978,115847 +k1,20484:20887917,43975056:3277 +h1,20484:22649753,43975056:0,411205,112570 +) +k1,20484:22910232,43975056:257202 +k1,20484:24358879,43975056:257202 +(1,20484:24358879,43975056:0,459977,115847 +r1,20486:25772280,43975056:1413401,575824,115847 +k1,20484:24358879,43975056:-1413401 +) +(1,20484:24358879,43975056:1413401,459977,115847 +k1,20484:24358879,43975056:3277 +h1,20484:25769003,43975056:0,411205,112570 +) +k1,20484:26029482,43975056:257202 +k1,20484:29501880,43975056:257202 +k1,20484:31591469,43975056:257202 +k1,20484:32583029,43975056:0 +) +(1,20485:6630773,44840136:25952256,513147,126483 +k1,20484:9595458,44840136:261980 +k1,20484:10929607,44840136:261980 +k1,20484:14496568,44840136:261980 +k1,20484:16023393,44840136:261980 +k1,20484:16944665,44840136:261980 +k1,20484:19109156,44840136:261981 +k1,20484:22155105,44840136:261980 +k1,20484:23364736,44840136:261980 +k1,20484:25323443,44840136:261980 +k1,20484:26757862,44840136:261980 +k1,20484:30235038,44840136:261980 +k1,20484:31450567,44840136:261980 +k1,20484:32583029,44840136:0 +) +] +(1,20486:32583029,45706769:0,0,0 +g1,20486:32583029,45706769 +) +) +] +(1,20486:6630773,47279633:25952256,0,0 +h1,20486:6630773,47279633:25952256,0,0 +) +] +(1,20486:4262630,4025873:0,0,0 +[1,20486:-473656,4025873:0,0,0 +(1,20486:-473656,-710413:0,0,0 +(1,20486:-473656,-710413:0,0,0 +g1,20486:-473656,-710413 +) +g1,20486:-473656,-710413 +) +] +) +] +!26080 +}348 +Input:3344:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3345:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3346:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3347:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3348:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3349:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3350:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3351:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3352:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3353:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!952 +{349 +[1,20586:4262630,47279633:28320399,43253760,0 +(1,20586:4262630,4025873:0,0,0 +[1,20586:-473656,4025873:0,0,0 +(1,20586:-473656,-710413:0,0,0 +(1,20586:-473656,-644877:0,0,0 +k1,20586:-473656,-644877:-65536 ) -(1,20594:-473656,4736287:0,0,0 -k1,20594:-473656,4736287:5209943 +(1,20586:-473656,4736287:0,0,0 +k1,20586:-473656,4736287:5209943 ) -g1,20594:-473656,-710413 +g1,20586:-473656,-710413 ) ] ) -[1,20594:6630773,47279633:25952256,43253760,0 -[1,20594:6630773,4812305:25952256,786432,0 -(1,20594:6630773,4812305:25952256,505283,134348 -(1,20594:6630773,4812305:25952256,505283,134348 -g1,20594:3078558,4812305 -[1,20594:3078558,4812305:0,0,0 -(1,20594:3078558,2439708:0,1703936,0 -k1,20594:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,20594:2537886,2439708:1179648,16384,0 +[1,20586:6630773,47279633:25952256,43253760,0 +[1,20586:6630773,4812305:25952256,786432,0 +(1,20586:6630773,4812305:25952256,513147,126483 +(1,20586:6630773,4812305:25952256,513147,126483 +g1,20586:3078558,4812305 +[1,20586:3078558,4812305:0,0,0 +(1,20586:3078558,2439708:0,1703936,0 +k1,20586:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,20586:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,20594:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,20586:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,20594:3078558,4812305:0,0,0 -(1,20594:3078558,2439708:0,1703936,0 -g1,20594:29030814,2439708 -g1,20594:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,20594:36151628,1915420:16384,1179648,0 +[1,20586:3078558,4812305:0,0,0 +(1,20586:3078558,2439708:0,1703936,0 +g1,20586:29030814,2439708 +g1,20586:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,20586:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,20594:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,20586:37855564,2439708:1179648,16384,0 ) ) -k1,20594:3078556,2439708:-34777008 +k1,20586:3078556,2439708:-34777008 ) ] -[1,20594:3078558,4812305:0,0,0 -(1,20594:3078558,49800853:0,16384,2228224 -k1,20594:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,20594:2537886,49800853:1179648,16384,0 +[1,20586:3078558,4812305:0,0,0 +(1,20586:3078558,49800853:0,16384,2228224 +k1,20586:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,20586:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,20594:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,20586:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,20594:3078558,4812305:0,0,0 -(1,20594:3078558,49800853:0,16384,2228224 -g1,20594:29030814,49800853 -g1,20594:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,20594:36151628,51504789:16384,1179648,0 +[1,20586:3078558,4812305:0,0,0 +(1,20586:3078558,49800853:0,16384,2228224 +g1,20586:29030814,49800853 +g1,20586:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,20586:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,20594:37855564,49800853:1179648,16384,0 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,20586:37855564,49800853:1179648,16384,0 +) +) +k1,20586:3078556,49800853:-34777008 +) +] +g1,20586:6630773,4812305 +k1,20586:21350816,4812305:13524666 +g1,20586:21999622,4812305 +g1,20586:25611966,4812305 +g1,20586:28956923,4812305 +g1,20586:29772190,4812305 +) +) +] +[1,20586:6630773,45706769:25952256,40108032,0 +(1,20586:6630773,45706769:25952256,40108032,0 +(1,20586:6630773,45706769:0,0,0 +g1,20586:6630773,45706769 +) +[1,20586:6630773,45706769:25952256,40108032,0 +(1,20485:6630773,6254097:25952256,513147,134348 +k1,20484:9499484,6254097:199430 +k1,20484:10314951,6254097:199429 +k1,20484:12164578,6254097:199430 +k1,20484:14151174,6254097:199429 +k1,20484:15369689,6254097:199430 +(1,20484:15369689,6254097:0,452978,115847 +r1,20586:17134802,6254097:1765113,568825,115847 +k1,20484:15369689,6254097:-1765113 +) +(1,20484:15369689,6254097:1765113,452978,115847 +k1,20484:15369689,6254097:3277 +h1,20484:17131525,6254097:0,411205,112570 +) +k1,20484:17334231,6254097:199429 +k1,20484:20320907,6254097:199430 +k1,20484:21711781,6254097:199429 +k1,20484:23191129,6254097:199430 +k1,20484:24766159,6254097:199429 +k1,20484:26657729,6254097:199430 +k1,20484:29848877,6254097:199429 +k1,20484:30995958,6254097:199430 +(1,20484:30995958,6254097:0,459977,115847 +r1,20586:32409359,6254097:1413401,575824,115847 +k1,20484:30995958,6254097:-1413401 +) +(1,20484:30995958,6254097:1413401,459977,115847 +k1,20484:30995958,6254097:3277 +h1,20484:32406082,6254097:0,411205,112570 +) +k1,20484:32583029,6254097:0 +) +(1,20485:6630773,7119177:25952256,513147,134348 +g1,20484:7783551,7119177 +g1,20484:9288913,7119177 +g1,20484:12332405,7119177 +g1,20484:14019957,7119177 +g1,20484:14980714,7119177 +g1,20484:18232610,7119177 +g1,20484:19762220,7119177 +g1,20484:21907868,7119177 +g1,20484:23098657,7119177 +g1,20484:25679464,7119177 +g1,20484:27070138,7119177 +g1,20484:28782593,7119177 +g1,20484:29597860,7119177 +k1,20485:32583029,7119177:2396656 +g1,20485:32583029,7119177 +) +(1,20486:6630773,8770689:25952256,513147,11795 +(1,20486:6630773,8770689:0,0,0 +g1,20486:6630773,8770689 +) +g1,20486:8625689,8770689 +g1,20486:12352066,8770689 +g1,20486:13198135,8770689 +k1,20486:32583030,8770689:18913036 +g1,20486:32583030,8770689 +) +(1,20489:6630773,10028985:25952256,513147,134348 +k1,20488:8969607,10028985:270518 +k1,20488:10344407,10028985:270518 +k1,20488:11362690,10028985:270517 +k1,20488:14465019,10028985:270518 +k1,20488:15351575,10028985:270518 +k1,20488:16036864,10028985:270446 +k1,20488:17373653,10028985:270518 +k1,20488:19019772,10028985:270518 +k1,20488:21848816,10028985:270518 +k1,20488:25094013,10028985:270518 +k1,20488:27560641,10028985:270517 +k1,20488:29225110,10028985:270518 +k1,20488:30514713,10028985:270518 +k1,20488:32583029,10028985:0 +) +(1,20489:6630773,10894065:25952256,513147,134348 +k1,20488:7517040,10894065:226975 +k1,20488:11064725,10894065:226976 +k1,20488:13673278,10894065:226975 +k1,20488:16020343,10894065:226975 +k1,20488:17319488,10894065:226976 +k1,20488:18832279,10894065:226975 +k1,20488:21473600,10894065:226975 +k1,20488:22386738,10894065:226976 +k1,20488:24809824,10894065:226975 +k1,20488:28348989,10894065:226975 +k1,20488:29595050,10894065:226976 +k1,20488:31145824,10894065:226947 +k1,20488:32583029,10894065:0 +) +(1,20489:6630773,11759145:25952256,505283,134348 +k1,20488:8569864,11759145:166997 +k1,20488:9928307,11759145:166998 +k1,20488:11670134,11759145:166997 +k1,20488:15764705,11759145:166998 +k1,20488:16617864,11759145:166997 +k1,20488:20751756,11759145:166998 +k1,20488:23734835,11759145:166997 +k1,20488:24918296,11759145:166998 +k1,20488:26519221,11759145:166997 +k1,20488:27483137,11759145:166998 +k1,20488:30847636,11759145:166997 +k1,20488:32583029,11759145:0 +) +(1,20489:6630773,12624225:25952256,513147,134348 +k1,20488:7423312,12624225:220410 +k1,20488:8215850,12624225:220409 +k1,20488:9008389,12624225:220410 +k1,20488:9800928,12624225:220410 +k1,20488:10593466,12624225:220409 +k1,20488:11386005,12624225:220410 +k1,20488:12178544,12624225:220410 +k1,20488:12971082,12624225:220409 +k1,20488:13763621,12624225:220410 +k1,20488:14645288,12624225:220409 +k1,20488:15438483,12624225:220410 +k1,20488:16288039,12624225:220410 +k1,20488:17185435,12624225:220409 +k1,20488:17950449,12624225:220410 +k1,20488:19362304,12624225:220410 +k1,20488:19941829,12624225:220388 +k1,20488:20848401,12624225:220410 +k1,20488:23660759,12624225:220409 +k1,20488:25374735,12624225:220410 +k1,20488:26281307,12624225:220410 +(1,20488:26281307,12624225:0,452978,115847 +r1,20586:29453267,12624225:3171960,568825,115847 +k1,20488:26281307,12624225:-3171960 +) +(1,20488:26281307,12624225:3171960,452978,115847 +k1,20488:26281307,12624225:3277 +h1,20488:29449990,12624225:0,411205,112570 +) +k1,20488:29673676,12624225:220409 +k1,20488:30841737,12624225:220410 +k1,20488:32583029,12624225:0 +) +(1,20489:6630773,13489305:25952256,513147,134348 +g1,20488:7512887,13489305 +(1,20488:7512887,13489305:0,452978,115847 +r1,20586:10684847,13489305:3171960,568825,115847 +k1,20488:7512887,13489305:-3171960 +) +(1,20488:7512887,13489305:3171960,452978,115847 +k1,20488:7512887,13489305:3277 +h1,20488:10681570,13489305:0,411205,112570 +) +g1,20488:10884076,13489305 +g1,20488:12030956,13489305 +g1,20488:14091407,13489305 +g1,20488:14973521,13489305 +(1,20488:14973521,13489305:0,452978,115847 +r1,20586:18145481,13489305:3171960,568825,115847 +k1,20488:14973521,13489305:-3171960 +) +(1,20488:14973521,13489305:3171960,452978,115847 +k1,20488:14973521,13489305:3277 +h1,20488:18142204,13489305:0,411205,112570 +) +g1,20488:18344710,13489305 +g1,20488:19491590,13489305 +g1,20488:20709904,13489305 +g1,20488:23779610,13489305 +g1,20488:26762808,13489305 +g1,20488:28433320,13489305 +k1,20489:32583029,13489305:2919598 +g1,20489:32583029,13489305 +) +(1,20492:6630773,14354385:25952256,513147,134348 +h1,20490:6630773,14354385:983040,0,0 +k1,20490:8994478,14354385:183978 +k1,20490:10171983,14354385:183979 +k1,20490:11015253,14354385:183978 +k1,20490:12815350,14354385:183979 +k1,20490:15067644,14354385:183978 +k1,20490:17389407,14354385:183979 +k1,20490:18224813,14354385:183978 +k1,20490:18823619,14354385:183963 +k1,20490:20111880,14354385:183979 +k1,20490:21043624,14354385:183978 +k1,20490:24019437,14354385:183979 +k1,20490:24951181,14354385:183978 +k1,20490:27164155,14354385:183979 +(1,20490:27164155,14354385:0,452978,115847 +r1,20586:29984404,14354385:2820249,568825,115847 +k1,20490:27164155,14354385:-2820249 +) +(1,20490:27164155,14354385:2820249,452978,115847 +k1,20490:27164155,14354385:3277 +h1,20490:29981127,14354385:0,411205,112570 +) +k1,20490:30168382,14354385:183978 +k1,20490:30965123,14354385:183979 +k1,20490:32168186,14354385:183978 +k1,20492:32583029,14354385:0 +) +(1,20492:6630773,15219465:25952256,513147,126483 +k1,20490:9417817,15219465:193129 +k1,20491:11411221,15219465:193130 +k1,20491:12623435,15219465:193129 +k1,20491:15302346,15219465:193130 +k1,20491:16154767,15219465:193129 +k1,20491:18294316,15219465:193130 +k1,20491:21445085,15219465:193129 +k1,20491:22506567,15219465:193130 +k1,20491:24036630,15219465:193129 +k1,20491:25778376,15219465:193130 +k1,20491:26622933,15219465:193129 +k1,20491:28896176,15219465:193130 +k1,20491:30728360,15219465:193129 +k1,20491:32583029,15219465:0 +) +(1,20492:6630773,16084545:25952256,505283,122846 +k1,20491:7664474,16084545:224331 +k1,20491:9397444,16084545:224331 +k1,20491:11863762,16084545:224331 +k1,20491:14877960,16084545:224330 +(1,20491:14877960,16084545:0,452978,115847 +r1,20586:17698209,16084545:2820249,568825,115847 +k1,20491:14877960,16084545:-2820249 +) +(1,20491:14877960,16084545:2820249,452978,115847 +k1,20491:14877960,16084545:3277 +h1,20491:17694932,16084545:0,411205,112570 +) +k1,20491:17922540,16084545:224331 +k1,20491:20487817,16084545:224331 +k1,20491:21068008,16084545:224331 +k1,20491:24267018,16084545:224331 +k1,20491:26642896,16084545:224331 +k1,20491:27820775,16084545:224330 +k1,20491:29149388,16084545:224331 +k1,20491:30466204,16084545:224331 +(1,20491:30466204,16084545:0,452978,122846 +r1,20586:32583029,16084545:2116825,575824,122846 +k1,20491:30466204,16084545:-2116825 +) +(1,20491:30466204,16084545:2116825,452978,122846 +k1,20491:30466204,16084545:3277 +h1,20491:32579752,16084545:0,411205,112570 +) +k1,20491:32583029,16084545:0 +) +(1,20492:6630773,16949625:25952256,513147,134348 +g1,20491:7481430,16949625 +g1,20491:8946815,16949625 +g1,20491:10165129,16949625 +g1,20491:12432674,16949625 +g1,20491:15993900,16949625 +g1,20491:16548989,16949625 +g1,20491:18442979,16949625 +g1,20491:21616887,16949625 +g1,20491:25001166,16949625 +g1,20491:25816433,16949625 +g1,20491:27218903,16949625 +g1,20491:30079549,16949625 +(1,20491:30079549,16949625:0,452978,115847 +r1,20586:32196374,16949625:2116825,568825,115847 +k1,20491:30079549,16949625:-2116825 +) +(1,20491:30079549,16949625:2116825,452978,115847 +k1,20491:30079549,16949625:3277 +h1,20491:32193097,16949625:0,411205,112570 +) +k1,20492:32583029,16949625:212985 +g1,20492:32583029,16949625 +) +v1,20494:6630773,17634480:0,393216,0 +(1,20517:6630773,27271494:25952256,10030230,196608 +g1,20517:6630773,27271494 +g1,20517:6630773,27271494 +g1,20517:6434165,27271494 +(1,20517:6434165,27271494:0,10030230,196608 +r1,20586:32779637,27271494:26345472,10226838,196608 +k1,20517:6434165,27271494:-26345472 +) +(1,20517:6434165,27271494:26345472,10030230,196608 +[1,20517:6630773,27271494:25952256,9833622,0 +(1,20496:6630773,17862311:25952256,424439,112852 +(1,20495:6630773,17862311:0,0,0 +g1,20495:6630773,17862311 +g1,20495:6630773,17862311 +g1,20495:6303093,17862311 +(1,20495:6303093,17862311:0,0,0 +) +g1,20495:6630773,17862311 +) +k1,20496:6630773,17862311:0 +k1,20496:6630773,17862311:0 +h1,20496:11942037,17862311:0,0,0 +k1,20496:32583029,17862311:20640992 +g1,20496:32583029,17862311 +) +(1,20500:6630773,18678238:25952256,424439,79822 +(1,20498:6630773,18678238:0,0,0 +g1,20498:6630773,18678238 +g1,20498:6630773,18678238 +g1,20498:6303093,18678238 +(1,20498:6303093,18678238:0,0,0 +) +g1,20498:6630773,18678238 +) +g1,20500:7626635,18678238 +g1,20500:8954451,18678238 +h1,20500:9950313,18678238:0,0,0 +k1,20500:32583029,18678238:22632716 +g1,20500:32583029,18678238 +) +(1,20502:6630773,19494165:25952256,424439,112852 +(1,20501:6630773,19494165:0,0,0 +g1,20501:6630773,19494165 +g1,20501:6630773,19494165 +g1,20501:6303093,19494165 +(1,20501:6303093,19494165:0,0,0 +) +g1,20501:6630773,19494165 +) +k1,20502:6630773,19494165:0 +g1,20502:13933761,19494165 +g1,20502:15925485,19494165 +g1,20502:16589393,19494165 +h1,20502:18249163,19494165:0,0,0 +k1,20502:32583029,19494165:14333866 +g1,20502:32583029,19494165 +) +(1,20516:6630773,20310092:25952256,424439,112852 +(1,20504:6630773,20310092:0,0,0 +g1,20504:6630773,20310092 +g1,20504:6630773,20310092 +g1,20504:6303093,20310092 +(1,20504:6303093,20310092:0,0,0 +) +g1,20504:6630773,20310092 +) +g1,20516:7626635,20310092 +g1,20516:7958589,20310092 +g1,20516:9286405,20310092 +g1,20516:12937898,20310092 +g1,20516:13269852,20310092 +g1,20516:13601806,20310092 +g1,20516:13933760,20310092 +g1,20516:14265714,20310092 +g1,20516:14597668,20310092 +g1,20516:14929622,20310092 +g1,20516:15261576,20310092 +g1,20516:18913069,20310092 +g1,20516:19245023,20310092 +g1,20516:19576977,20310092 +g1,20516:19908931,20310092 +g1,20516:20240885,20310092 +g1,20516:20572839,20310092 +g1,20516:20904793,20310092 +g1,20516:21236747,20310092 +g1,20516:26548010,20310092 +g1,20516:26879964,20310092 +g1,20516:27211918,20310092 +h1,20516:32523181,20310092:0,0,0 +k1,20516:32583029,20310092:59848 +g1,20516:32583029,20310092 +) +(1,20516:6630773,20994947:25952256,424439,112852 +h1,20516:6630773,20994947:0,0,0 +g1,20516:7626635,20994947 +g1,20516:7958589,20994947 +g1,20516:9286405,20994947 +g1,20516:14929622,20994947 +g1,20516:15261576,20994947 +g1,20516:20904793,20994947 +g1,20516:21236747,20994947 +g1,20516:26879964,20994947 +g1,20516:27211918,20994947 +h1,20516:30531457,20994947:0,0,0 +k1,20516:32583029,20994947:2051572 +g1,20516:32583029,20994947 +) +(1,20516:6630773,21679802:25952256,424439,112852 +h1,20516:6630773,21679802:0,0,0 +g1,20516:7626635,21679802 +g1,20516:7958589,21679802 +g1,20516:9286405,21679802 +g1,20516:13269852,21679802 +g1,20516:13601806,21679802 +g1,20516:13933760,21679802 +g1,20516:14265714,21679802 +g1,20516:14597668,21679802 +g1,20516:14929622,21679802 +g1,20516:15261576,21679802 +g1,20516:18913069,21679802 +g1,20516:19245023,21679802 +g1,20516:19576977,21679802 +g1,20516:19908931,21679802 +g1,20516:20240885,21679802 +g1,20516:20572839,21679802 +g1,20516:20904793,21679802 +g1,20516:21236747,21679802 +g1,20516:25220194,21679802 +g1,20516:25552148,21679802 +g1,20516:25884102,21679802 +g1,20516:26216056,21679802 +g1,20516:26548010,21679802 +g1,20516:26879964,21679802 +g1,20516:27211918,21679802 +h1,20516:31527319,21679802:0,0,0 +k1,20516:32583029,21679802:1055710 +g1,20516:32583029,21679802 +) +(1,20516:6630773,22364657:25952256,424439,112852 +h1,20516:6630773,22364657:0,0,0 +k1,20516:7581284,22364657:286603 +k1,20516:9195703,22364657:286603 +k1,20516:14793569,22364657:286603 +k1,20516:15080172,22364657:286603 +k1,20516:21009992,22364657:286603 +k1,20516:26939812,22364657:286603 +h1,20516:32583029,22364657:0,0,0 +k1,20516:32583029,22364657:0 +k1,20516:32583029,22364657:0 +) +(1,20516:6630773,23049512:25952256,424439,112852 +h1,20516:6630773,23049512:0,0,0 +g1,20516:7626635,23049512 +g1,20516:9286405,23049512 +g1,20516:15261576,23049512 +g1,20516:19576977,23049512 +g1,20516:19908931,23049512 +g1,20516:20240885,23049512 +g1,20516:20572839,23049512 +g1,20516:20904793,23049512 +g1,20516:21236747,23049512 +g1,20516:25884102,23049512 +g1,20516:26216056,23049512 +g1,20516:26548010,23049512 +g1,20516:26879964,23049512 +g1,20516:27211918,23049512 +h1,20516:31527319,23049512:0,0,0 +k1,20516:32583029,23049512:1055710 +g1,20516:32583029,23049512 +) +(1,20516:6630773,23734367:25952256,424439,112852 +h1,20516:6630773,23734367:0,0,0 +g1,20516:7626635,23734367 +g1,20516:9286405,23734367 +g1,20516:13933760,23734367 +g1,20516:14265714,23734367 +g1,20516:14597668,23734367 +g1,20516:14929622,23734367 +g1,20516:15261576,23734367 +g1,20516:19908931,23734367 +g1,20516:20240885,23734367 +g1,20516:20572839,23734367 +g1,20516:20904793,23734367 +g1,20516:21236747,23734367 +g1,20516:25552148,23734367 +g1,20516:25884102,23734367 +g1,20516:26216056,23734367 +g1,20516:26548010,23734367 +g1,20516:26879964,23734367 +g1,20516:27211918,23734367 +h1,20516:31527319,23734367:0,0,0 +k1,20516:32583029,23734367:1055710 +g1,20516:32583029,23734367 +) +(1,20516:6630773,24419222:25952256,424439,79822 +h1,20516:6630773,24419222:0,0,0 +g1,20516:7626635,24419222 +g1,20516:9286405,24419222 +g1,20516:13933760,24419222 +g1,20516:14265714,24419222 +g1,20516:14597668,24419222 +g1,20516:14929622,24419222 +g1,20516:15261576,24419222 +g1,20516:19908931,24419222 +g1,20516:20240885,24419222 +g1,20516:20572839,24419222 +g1,20516:20904793,24419222 +g1,20516:21236747,24419222 +g1,20516:25884102,24419222 +g1,20516:26216056,24419222 +g1,20516:26548010,24419222 +g1,20516:26879964,24419222 +g1,20516:27211918,24419222 +h1,20516:30199503,24419222:0,0,0 +k1,20516:32583029,24419222:2383526 +g1,20516:32583029,24419222 +) +(1,20516:6630773,25104077:25952256,424439,112852 +h1,20516:6630773,25104077:0,0,0 +g1,20516:7626635,25104077 +g1,20516:9286405,25104077 +g1,20516:13601806,25104077 +g1,20516:13933760,25104077 +g1,20516:14265714,25104077 +g1,20516:14597668,25104077 +g1,20516:14929622,25104077 +g1,20516:15261576,25104077 +g1,20516:20240885,25104077 +g1,20516:20572839,25104077 +g1,20516:20904793,25104077 +g1,20516:21236747,25104077 +g1,20516:26548010,25104077 +g1,20516:26879964,25104077 +g1,20516:27211918,25104077 +h1,20516:32191227,25104077:0,0,0 +k1,20516:32583029,25104077:391802 +g1,20516:32583029,25104077 +) +(1,20516:6630773,25788932:25952256,424439,112852 +h1,20516:6630773,25788932:0,0,0 +g1,20516:7626635,25788932 +g1,20516:9286405,25788932 +g1,20516:14597668,25788932 +g1,20516:14929622,25788932 +g1,20516:15261576,25788932 +g1,20516:20572839,25788932 +g1,20516:20904793,25788932 +g1,20516:21236747,25788932 +g1,20516:26548010,25788932 +g1,20516:26879964,25788932 +g1,20516:27211918,25788932 +h1,20516:32191227,25788932:0,0,0 +k1,20516:32583029,25788932:391802 +g1,20516:32583029,25788932 +) +(1,20516:6630773,26473787:25952256,424439,112852 +h1,20516:6630773,26473787:0,0,0 +g1,20516:7626635,26473787 +g1,20516:9286405,26473787 +g1,20516:14929622,26473787 +g1,20516:15261576,26473787 +g1,20516:20904793,26473787 +g1,20516:21236747,26473787 +g1,20516:26879964,26473787 +g1,20516:27211918,26473787 +h1,20516:32523181,26473787:0,0,0 +k1,20516:32583029,26473787:59848 +g1,20516:32583029,26473787 +) +(1,20516:6630773,27158642:25952256,424439,112852 +h1,20516:6630773,27158642:0,0,0 +g1,20516:7626635,27158642 +g1,20516:9286405,27158642 +g1,20516:14597668,27158642 +g1,20516:14929622,27158642 +g1,20516:15261576,27158642 +g1,20516:20572839,27158642 +g1,20516:20904793,27158642 +g1,20516:21236747,27158642 +h1,20516:25220194,27158642:0,0,0 +k1,20516:32583029,27158642:7362835 +g1,20516:32583029,27158642 +) +] +) +g1,20517:32583029,27271494 +g1,20517:6630773,27271494 +g1,20517:6630773,27271494 +g1,20517:32583029,27271494 +g1,20517:32583029,27271494 +) +h1,20517:6630773,27468102:0,0,0 +(1,20521:6630773,28333182:25952256,513147,11795 +h1,20520:6630773,28333182:983040,0,0 +g1,20520:8642072,28333182 +g1,20520:11275308,28333182 +g1,20520:12493622,28333182 +g1,20520:14016678,28333182 +g1,20520:16226552,28333182 +g1,20520:17373432,28333182 +g1,20520:17928521,28333182 +g1,20520:19743868,28333182 +g1,20520:23025255,28333182 +g1,20520:24092836,28333182 +k1,20521:32583029,28333182:7224037 +g1,20521:32583029,28333182 +) +v1,20523:6630773,29018037:0,393216,0 +(1,20542:6630773,35812687:25952256,7187866,196608 +g1,20542:6630773,35812687 +g1,20542:6630773,35812687 +g1,20542:6434165,35812687 +(1,20542:6434165,35812687:0,7187866,196608 +r1,20586:32779637,35812687:26345472,7384474,196608 +k1,20542:6434165,35812687:-26345472 +) +(1,20542:6434165,35812687:26345472,7187866,196608 +[1,20542:6630773,35812687:25952256,6991258,0 +(1,20525:6630773,29245868:25952256,424439,112852 +(1,20524:6630773,29245868:0,0,0 +g1,20524:6630773,29245868 +g1,20524:6630773,29245868 +g1,20524:6303093,29245868 +(1,20524:6303093,29245868:0,0,0 +) +g1,20524:6630773,29245868 +) +k1,20525:6630773,29245868:0 +h1,20525:12273990,29245868:0,0,0 +k1,20525:32583030,29245868:20309040 +g1,20525:32583030,29245868 +) +(1,20532:6630773,30061795:25952256,424439,86428 +(1,20527:6630773,30061795:0,0,0 +g1,20527:6630773,30061795 +g1,20527:6630773,30061795 +g1,20527:6303093,30061795 +(1,20527:6303093,30061795:0,0,0 +) +g1,20527:6630773,30061795 +) +g1,20532:7626635,30061795 +g1,20532:7958589,30061795 +g1,20532:8290543,30061795 +g1,20532:8622497,30061795 +g1,20532:8954451,30061795 +g1,20532:9286405,30061795 +g1,20532:9618359,30061795 +k1,20532:9618359,30061795:0 +h1,20532:10946175,30061795:0,0,0 +k1,20532:32583029,30061795:21636854 +g1,20532:32583029,30061795 +) +(1,20532:6630773,30746650:25952256,424439,9908 +h1,20532:6630773,30746650:0,0,0 +g1,20532:7626635,30746650 +g1,20532:8954451,30746650 +g1,20532:9286405,30746650 +g1,20532:9618359,30746650 +g1,20532:9950313,30746650 +h1,20532:10946175,30746650:0,0,0 +k1,20532:32583029,30746650:21636854 +g1,20532:32583029,30746650 +) +(1,20532:6630773,31431505:25952256,407923,112852 +h1,20532:6630773,31431505:0,0,0 +g1,20532:7626635,31431505 +g1,20532:9618359,31431505 +g1,20532:9950313,31431505 +g1,20532:10282267,31431505 +h1,20532:10946175,31431505:0,0,0 +k1,20532:32583029,31431505:21636854 +g1,20532:32583029,31431505 +) +(1,20532:6630773,32116360:25952256,424439,9908 +h1,20532:6630773,32116360:0,0,0 +g1,20532:7626635,32116360 +g1,20532:9286405,32116360 +g1,20532:9618359,32116360 +g1,20532:9950313,32116360 +h1,20532:10946175,32116360:0,0,0 +k1,20532:32583029,32116360:21636854 +g1,20532:32583029,32116360 +) +(1,20534:6630773,32932287:25952256,424439,112852 +(1,20533:6630773,32932287:0,0,0 +g1,20533:6630773,32932287 +g1,20533:6630773,32932287 +g1,20533:6303093,32932287 +(1,20533:6303093,32932287:0,0,0 +) +g1,20533:6630773,32932287 +) +k1,20534:6630773,32932287:0 +h1,20534:12605944,32932287:0,0,0 +k1,20534:32583028,32932287:19977084 +g1,20534:32583028,32932287 +) +(1,20541:6630773,33748214:25952256,424439,86428 +(1,20536:6630773,33748214:0,0,0 +g1,20536:6630773,33748214 +g1,20536:6630773,33748214 +g1,20536:6303093,33748214 +(1,20536:6303093,33748214:0,0,0 +) +g1,20536:6630773,33748214 +) +g1,20541:7626635,33748214 +g1,20541:7958589,33748214 +g1,20541:8290543,33748214 +g1,20541:8622497,33748214 +g1,20541:8954451,33748214 +g1,20541:9286405,33748214 +g1,20541:9618359,33748214 +k1,20541:9618359,33748214:0 +h1,20541:10946175,33748214:0,0,0 +k1,20541:32583029,33748214:21636854 +g1,20541:32583029,33748214 +) +(1,20541:6630773,34433069:25952256,424439,9908 +h1,20541:6630773,34433069:0,0,0 +g1,20541:7626635,34433069 +g1,20541:8954451,34433069 +g1,20541:9286405,34433069 +g1,20541:9618359,34433069 +g1,20541:9950313,34433069 +h1,20541:10946175,34433069:0,0,0 +k1,20541:32583029,34433069:21636854 +g1,20541:32583029,34433069 +) +(1,20541:6630773,35117924:25952256,407923,112852 +h1,20541:6630773,35117924:0,0,0 +g1,20541:7626635,35117924 +g1,20541:9618359,35117924 +g1,20541:9950313,35117924 +g1,20541:10282267,35117924 +g1,20541:10614221,35117924 +h1,20541:10946175,35117924:0,0,0 +k1,20541:32583029,35117924:21636854 +g1,20541:32583029,35117924 +) +(1,20541:6630773,35802779:25952256,424439,9908 +h1,20541:6630773,35802779:0,0,0 +g1,20541:7626635,35802779 +g1,20541:9286405,35802779 +g1,20541:9618359,35802779 +g1,20541:9950313,35802779 +g1,20541:10282267,35802779 +g1,20541:10614221,35802779 +h1,20541:10946175,35802779:0,0,0 +k1,20541:32583029,35802779:21636854 +g1,20541:32583029,35802779 +) +] +) +g1,20542:32583029,35812687 +g1,20542:6630773,35812687 +g1,20542:6630773,35812687 +g1,20542:32583029,35812687 +g1,20542:32583029,35812687 +) +h1,20542:6630773,36009295:0,0,0 +(1,20546:6630773,36874375:25952256,513147,126483 +h1,20545:6630773,36874375:983040,0,0 +k1,20545:9559231,36874375:207403 +k1,20545:13179094,36874375:207403 +k1,20545:14002535,36874375:207403 +k1,20545:14624773,36874375:207395 +k1,20545:15936458,36874375:207403 +k1,20545:18515609,36874375:207403 +k1,20545:19078872,36874375:207403 +k1,20545:23512036,36874375:207403 +k1,20545:26809462,36874375:207403 +k1,20545:27778393,36874375:207403 +k1,20545:28756499,36874375:207403 +(1,20545:28756499,36874375:0,452978,115847 +r1,20586:30521612,36874375:1765113,568825,115847 +k1,20545:28756499,36874375:-1765113 +) +(1,20545:28756499,36874375:1765113,452978,115847 +k1,20545:28756499,36874375:3277 +h1,20545:30518335,36874375:0,411205,112570 +) +k1,20545:30729015,36874375:207403 +k1,20545:32583029,36874375:0 +) +(1,20546:6630773,37739455:25952256,513147,126483 +g1,20545:8715473,37739455 +g1,20545:9676230,37739455 +g1,20545:12141039,37739455 +g1,20545:12871765,37739455 +g1,20545:14137265,37739455 +k1,20546:32583029,37739455:15493367 +g1,20546:32583029,37739455 +) +v1,20548:6630773,38424310:0,393216,0 +(1,20559:6630773,42313734:25952256,4282640,196608 +g1,20559:6630773,42313734 +g1,20559:6630773,42313734 +g1,20559:6434165,42313734 +(1,20559:6434165,42313734:0,4282640,196608 +r1,20586:32779637,42313734:26345472,4479248,196608 +k1,20559:6434165,42313734:-26345472 +) +(1,20559:6434165,42313734:26345472,4282640,196608 +[1,20559:6630773,42313734:25952256,4086032,0 +(1,20550:6630773,38652141:25952256,424439,112852 +(1,20549:6630773,38652141:0,0,0 +g1,20549:6630773,38652141 +g1,20549:6630773,38652141 +g1,20549:6303093,38652141 +(1,20549:6303093,38652141:0,0,0 +) +g1,20549:6630773,38652141 +) +k1,20550:6630773,38652141:0 +g1,20550:12605944,38652141 +g1,20550:14597668,38652141 +g1,20550:15261576,38652141 +h1,20550:16921346,38652141:0,0,0 +k1,20550:32583029,38652141:15661683 +g1,20550:32583029,38652141 +) +(1,20558:6630773,39468068:25952256,424439,86428 +(1,20552:6630773,39468068:0,0,0 +g1,20552:6630773,39468068 +g1,20552:6630773,39468068 +g1,20552:6303093,39468068 +(1,20552:6303093,39468068:0,0,0 +) +g1,20552:6630773,39468068 +) +g1,20558:7626635,39468068 +g1,20558:7958589,39468068 +g1,20558:8290543,39468068 +g1,20558:8622497,39468068 +g1,20558:8954451,39468068 +g1,20558:9286405,39468068 +g1,20558:9618359,39468068 +k1,20558:9618359,39468068:0 +h1,20558:10946175,39468068:0,0,0 +k1,20558:32583029,39468068:21636854 +g1,20558:32583029,39468068 +) +(1,20558:6630773,40152923:25952256,424439,9908 +h1,20558:6630773,40152923:0,0,0 +g1,20558:7626635,40152923 +g1,20558:8954451,40152923 +g1,20558:9286405,40152923 +g1,20558:9618359,40152923 +g1,20558:9950313,40152923 +h1,20558:10946175,40152923:0,0,0 +k1,20558:32583029,40152923:21636854 +g1,20558:32583029,40152923 +) +(1,20558:6630773,40837778:25952256,407923,112852 +h1,20558:6630773,40837778:0,0,0 +g1,20558:7626635,40837778 +g1,20558:9618359,40837778 +g1,20558:9950313,40837778 +g1,20558:10282267,40837778 +h1,20558:10946175,40837778:0,0,0 +k1,20558:32583029,40837778:21636854 +g1,20558:32583029,40837778 +) +(1,20558:6630773,41522633:25952256,424439,9908 +h1,20558:6630773,41522633:0,0,0 +g1,20558:7626635,41522633 +g1,20558:9286405,41522633 +g1,20558:9618359,41522633 +g1,20558:9950313,41522633 +h1,20558:10946175,41522633:0,0,0 +k1,20558:32583029,41522633:21636854 +g1,20558:32583029,41522633 +) +(1,20558:6630773,42207488:25952256,424439,106246 +h1,20558:6630773,42207488:0,0,0 +g1,20558:7626635,42207488 +g1,20558:9618359,42207488 +g1,20558:9950313,42207488 +h1,20558:10946175,42207488:0,0,0 +k1,20558:32583029,42207488:21636854 +g1,20558:32583029,42207488 +) +] +) +g1,20559:32583029,42313734 +g1,20559:6630773,42313734 +g1,20559:6630773,42313734 +g1,20559:32583029,42313734 +g1,20559:32583029,42313734 +) +h1,20559:6630773,42510342:0,0,0 +(1,20563:6630773,43375422:25952256,513147,122846 +h1,20562:6630773,43375422:983040,0,0 +k1,20562:9255743,43375422:162782 +k1,20562:12114020,43375422:162781 +(1,20562:12114020,43375422:0,452978,122846 +r1,20586:13879133,43375422:1765113,575824,122846 +k1,20562:12114020,43375422:-1765113 +) +(1,20562:12114020,43375422:1765113,452978,122846 +k1,20562:12114020,43375422:3277 +h1,20562:13875856,43375422:0,411205,112570 +) +k1,20562:14041915,43375422:162782 +k1,20562:15073048,43375422:162781 +k1,20562:16340112,43375422:162782 +k1,20562:18463730,43375422:162781 +k1,20562:19909707,43375422:162782 +k1,20562:22192579,43375422:162782 +k1,20562:24033737,43375422:162781 +(1,20562:24033737,43375422:0,452978,122846 +r1,20586:27205697,43375422:3171960,575824,122846 +k1,20562:24033737,43375422:-3171960 +) +(1,20562:24033737,43375422:3171960,452978,122846 +k1,20562:24033737,43375422:3277 +h1,20562:27202420,43375422:0,411205,112570 +) +k1,20562:27368479,43375422:162782 +k1,20562:28478911,43375422:162781 +k1,20562:30291890,43375422:162782 +k1,20563:32583029,43375422:0 +k1,20563:32583029,43375422:0 +) +v1,20565:6630773,44060277:0,393216,0 +(1,20586:6630773,45183857:25952256,1516796,196608 +g1,20586:6630773,45183857 +g1,20586:6630773,45183857 +g1,20586:6434165,45183857 +(1,20586:6434165,45183857:0,1516796,196608 +r1,20586:32779637,45183857:26345472,1713404,196608 +k1,20586:6434165,45183857:-26345472 +) +(1,20586:6434165,45183857:26345472,1516796,196608 +[1,20586:6630773,45183857:25952256,1320188,0 +(1,20567:6630773,44288108:25952256,424439,112852 +(1,20566:6630773,44288108:0,0,0 +g1,20566:6630773,44288108 +g1,20566:6630773,44288108 +g1,20566:6303093,44288108 +(1,20566:6303093,44288108:0,0,0 +) +g1,20566:6630773,44288108 +) +k1,20567:6630773,44288108:0 +g1,20567:8954451,44288108 +g1,20567:9950313,44288108 +h1,20567:10614221,44288108:0,0,0 +k1,20567:32583029,44288108:21968808 +g1,20567:32583029,44288108 +) +(1,20571:6630773,45104035:25952256,424439,79822 +(1,20569:6630773,45104035:0,0,0 +g1,20569:6630773,45104035 +g1,20569:6630773,45104035 +g1,20569:6303093,45104035 +(1,20569:6303093,45104035:0,0,0 +) +g1,20569:6630773,45104035 +) +g1,20571:7626635,45104035 +g1,20571:8954451,45104035 +h1,20571:11942036,45104035:0,0,0 +k1,20571:32583028,45104035:20640992 +g1,20571:32583028,45104035 +) +] +) +g1,20586:32583029,45183857 +g1,20586:6630773,45183857 +g1,20586:6630773,45183857 +g1,20586:32583029,45183857 +g1,20586:32583029,45183857 ) +] +(1,20586:32583029,45706769:0,0,0 +g1,20586:32583029,45706769 ) -k1,20594:3078556,49800853:-34777008 ) ] -g1,20594:6630773,4812305 -g1,20594:6630773,4812305 -g1,20594:9113932,4812305 -g1,20594:13027742,4812305 -k1,20594:31387652,4812305:18359910 -) -) -] -[1,20594:6630773,45706769:25952256,40108032,0 -(1,20594:6630773,45706769:25952256,40108032,0 -(1,20594:6630773,45706769:0,0,0 -g1,20594:6630773,45706769 -) -[1,20594:6630773,45706769:25952256,40108032,0 -(1,20551:6630773,14682403:25952256,9083666,0 -k1,20551:10523651,14682403:3892878 -h1,20550:10523651,14682403:0,0,0 -(1,20550:10523651,14682403:18166500,9083666,0 -(1,20550:10523651,14682403:18167376,9083688,0 -(1,20550:10523651,14682403:18167376,9083688,0 -(1,20550:10523651,14682403:0,9083688,0 -(1,20550:10523651,14682403:0,14208860,0 -(1,20550:10523651,14682403:28417720,14208860,0 -) -k1,20550:10523651,14682403:-28417720 -) -) -g1,20550:28691027,14682403 -) -) -) -g1,20551:28690151,14682403 -k1,20551:32583029,14682403:3892878 -) -(1,20559:6630773,15523891:25952256,513147,134348 -h1,20557:6630773,15523891:983040,0,0 -k1,20557:9223487,15523891:228830 -k1,20557:12436826,15523891:228829 -k1,20557:13766661,15523891:228830 -k1,20557:15014575,15523891:228829 -k1,20557:18351122,15523891:228830 -k1,20557:19864458,15523891:228830 -k1,20557:20559248,15523891:228829 -k1,20557:22301304,15523891:228830 -k1,20557:25210556,15523891:228829 -k1,20557:26833337,15523891:228830 -k1,20557:29784532,15523891:228829 -k1,20557:31032447,15523891:228830 -k1,20557:32583029,15523891:0 -) -(1,20559:6630773,16365379:25952256,513147,134348 -k1,20557:7967663,16365379:204428 -k1,20557:8919858,16365379:204429 -k1,20557:10143371,16365379:204428 -k1,20557:12001273,16365379:204429 -k1,20557:13153352,16365379:204428 -k1,20557:14809403,16365379:204429 -k1,20557:16291128,16365379:204428 -k1,20557:18413140,16365379:204429 -k1,20557:19667455,16365379:204428 -k1,20557:22150571,16365379:204429 -h1,20557:23693289,16365379:0,0,0 -k1,20557:23897717,16365379:204428 -k1,20557:24911516,16365379:204429 -k1,20557:26614097,16365379:204428 -h1,20557:27809474,16365379:0,0,0 -k1,20557:28013903,16365379:204429 -k1,20557:29165982,16365379:204428 -k1,20559:32583029,16365379:0 -) -(1,20559:6630773,17206867:25952256,505283,7863 -g1,20557:8114508,17206867 -g1,20557:9418019,17206867 -g1,20557:10365014,17206867 -g1,20557:12077469,17206867 -g1,20557:12928126,17206867 -g1,20557:14324698,17206867 -g1,20557:16578481,17206867 -k1,20559:32583029,17206867:16004548 -g1,20559:32583029,17206867 -) -(1,20561:6630773,18048355:25952256,505283,134348 -h1,20560:6630773,18048355:983040,0,0 -k1,20560:8577371,18048355:335723 -k1,20560:9932179,18048355:335723 -k1,20560:11652022,18048355:335723 -k1,20560:14822832,18048355:335723 -k1,20560:15774593,18048355:335723 -k1,20560:18776321,18048355:335723 -k1,20560:19763472,18048355:335723 -k1,20560:22286787,18048355:335723 -k1,20560:26392796,18048355:335723 -k1,20560:27414681,18048355:335723 -k1,20560:31714677,18048355:335723 -k1,20560:32583029,18048355:0 -) -(1,20561:6630773,18889843:25952256,505283,134348 -k1,20560:8249613,18889843:333024 -k1,20560:10019841,18889843:333023 -k1,20560:14123151,18889843:333024 -k1,20560:15142336,18889843:333023 -k1,20560:16659596,18889843:333024 -k1,20560:18836803,18889843:333024 -k1,20560:21728352,18889843:333023 -k1,20560:23080461,18889843:333024 -k1,20560:25159364,18889843:333024 -k1,20560:26390230,18889843:333023 -k1,20560:28671639,18889843:333024 -k1,20560:30289168,18889843:333023 -k1,20560:31490544,18889843:333024 -k1,20560:32583029,18889843:0 -) -(1,20561:6630773,19731331:25952256,513147,134348 -k1,20560:9788171,19731331:298062 -k1,20560:11033883,19731331:298061 -k1,20560:13513639,19731331:298062 -k1,20560:14830785,19731331:298061 -k1,20560:17417364,19731331:298062 -k1,20560:18401587,19731331:298061 -(1,20560:18401587,19731331:0,452978,115847 -r1,20594:27200938,19731331:8799351,568825,115847 -k1,20560:18401587,19731331:-8799351 -) -(1,20560:18401587,19731331:8799351,452978,115847 -g1,20560:20163423,19731331 -g1,20560:21921982,19731331 -g1,20560:22977118,19731331 -g1,20560:24735677,19731331 -g1,20560:25790813,19731331 -g1,20560:26494237,19731331 -h1,20560:27197661,19731331:0,411205,112570 -) -k1,20560:27499000,19731331:298062 -k1,20560:28328558,19731331:298061 -k1,20560:31931601,19731331:298062 -k1,20561:32583029,19731331:0 -) -(1,20561:6630773,20572819:25952256,505283,126483 -(1,20560:6630773,20572819:0,452978,115847 -r1,20594:18947241,20572819:12316468,568825,115847 -k1,20560:6630773,20572819:-12316468 -) -(1,20560:6630773,20572819:12316468,452978,115847 -g1,20560:8392609,20572819 -g1,20560:9799456,20572819 -g1,20560:10502880,20572819 -g1,20560:11909727,20572819 -g1,20560:13316574,20572819 -g1,20560:14723421,20572819 -g1,20560:15426845,20572819 -g1,20560:16833692,20572819 -g1,20560:17537116,20572819 -g1,20560:18240540,20572819 -h1,20560:18943964,20572819:0,411205,112570 -) -k1,20560:19297255,20572819:176344 -k1,20560:23395929,20572819:176344 -k1,20560:24563833,20572819:176344 -k1,20560:27042458,20572819:176345 -k1,20560:27831564,20572819:176344 -k1,20560:29516547,20572819:176344 -k1,20560:31023272,20572819:176344 -k1,20561:32583029,20572819:0 -) -(1,20561:6630773,21414307:25952256,505283,134348 -k1,20560:8250924,21414307:179014 -k1,20560:11481294,21414307:179014 -k1,20560:12311736,21414307:179014 -k1,20560:13622557,21414307:179014 -k1,20560:17543021,21414307:179014 -k1,20560:18338073,21414307:179014 -k1,20560:19536172,21414307:179014 -k1,20560:21278220,21414307:179014 -k1,20560:22529403,21414307:179014 -k1,20560:24443810,21414307:179014 -k1,20560:25641909,21414307:179014 -k1,20560:27474396,21414307:179014 -k1,20560:31391584,21414307:179014 -k1,20560:32583029,21414307:0 -) -(1,20561:6630773,22255795:25952256,513147,134348 -g1,20560:8448086,22255795 -g1,20560:9333477,22255795 -g1,20560:10480357,22255795 -g1,20560:13204033,22255795 -g1,20560:14422347,22255795 -k1,20561:32583029,22255795:16597648 -g1,20561:32583029,22255795 -) -v1,20563:6630773,23446261:0,393216,0 -(1,20583:6630773,34395040:25952256,11341995,196608 -g1,20583:6630773,34395040 -g1,20583:6630773,34395040 -g1,20583:6434165,34395040 -(1,20583:6434165,34395040:0,11341995,196608 -r1,20594:32779637,34395040:26345472,11538603,196608 -k1,20583:6434165,34395040:-26345472 -) -(1,20583:6434165,34395040:26345472,11341995,196608 -[1,20583:6630773,34395040:25952256,11145387,0 -(1,20565:6630773,23660171:25952256,410518,107478 -(1,20564:6630773,23660171:0,0,0 -g1,20564:6630773,23660171 -g1,20564:6630773,23660171 -g1,20564:6303093,23660171 -(1,20564:6303093,23660171:0,0,0 -) -g1,20564:6630773,23660171 -) -k1,20565:6630773,23660171:0 -g1,20565:12953688,23660171 -g1,20565:13585980,23660171 -g1,20565:15166710,23660171 -g1,20565:15799002,23660171 -g1,20565:16431294,23660171 -g1,20565:18328169,23660171 -g1,20565:20225044,23660171 -g1,20565:20857336,23660171 -g1,20565:22121919,23660171 -h1,20565:22438065,23660171:0,0,0 -k1,20565:32583029,23660171:10144964 -g1,20565:32583029,23660171 -) -(1,20566:6630773,24326349:25952256,410518,76021 -h1,20566:6630773,24326349:0,0,0 -g1,20566:6946919,24326349 -g1,20566:7263065,24326349 -g1,20566:12953688,24326349 -g1,20566:13585980,24326349 -g1,20566:15166709,24326349 -h1,20566:15482855,24326349:0,0,0 -k1,20566:32583029,24326349:17100174 -g1,20566:32583029,24326349 -) -(1,20567:6630773,24992527:25952256,404226,76021 -h1,20567:6630773,24992527:0,0,0 -g1,20567:6946919,24992527 -g1,20567:7263065,24992527 -k1,20567:7263065,24992527:0 -h1,20567:13269833,24992527:0,0,0 -k1,20567:32583029,24992527:19313196 -g1,20567:32583029,24992527 -) -(1,20568:6630773,25658705:25952256,404226,101187 -h1,20568:6630773,25658705:0,0,0 -g1,20568:6946919,25658705 -g1,20568:7263065,25658705 -g1,20568:7579211,25658705 -g1,20568:7895357,25658705 -g1,20568:10108377,25658705 -g1,20568:10740669,25658705 -g1,20568:12321399,25658705 -g1,20568:13902128,25658705 -g1,20568:14850566,25658705 -g1,20568:16431295,25658705 -g1,20568:17379733,25658705 -g1,20568:18012025,25658705 -k1,20568:18012025,25658705:0 -h1,20568:18960462,25658705:0,0,0 -k1,20568:32583029,25658705:13622567 -g1,20568:32583029,25658705 -) -(1,20569:6630773,26324883:25952256,404226,101187 -h1,20569:6630773,26324883:0,0,0 -g1,20569:6946919,26324883 -g1,20569:7263065,26324883 -g1,20569:7579211,26324883 -g1,20569:7895357,26324883 -g1,20569:10108377,26324883 -g1,20569:10740669,26324883 -g1,20569:12953690,26324883 -g1,20569:19276605,26324883 -k1,20569:19276605,26324883:0 -h1,20569:24018791,26324883:0,0,0 -k1,20569:32583029,26324883:8564238 -g1,20569:32583029,26324883 -) -(1,20570:6630773,26991061:25952256,404226,101187 -h1,20570:6630773,26991061:0,0,0 -g1,20570:6946919,26991061 -g1,20570:7263065,26991061 -g1,20570:7579211,26991061 -g1,20570:7895357,26991061 -g1,20570:8211503,26991061 -g1,20570:8527649,26991061 -g1,20570:8843795,26991061 -g1,20570:9159941,26991061 -g1,20570:9476087,26991061 -g1,20570:9792233,26991061 -g1,20570:10108379,26991061 -g1,20570:10424525,26991061 -g1,20570:10740671,26991061 -g1,20570:17063586,26991061 -g1,20570:23070355,26991061 -h1,20570:23386501,26991061:0,0,0 -k1,20570:32583029,26991061:9196528 -g1,20570:32583029,26991061 -) -(1,20571:6630773,27657239:25952256,404226,101187 -h1,20571:6630773,27657239:0,0,0 -g1,20571:6946919,27657239 -g1,20571:7263065,27657239 -g1,20571:9476086,27657239 -g1,20571:10108378,27657239 -g1,20571:13269835,27657239 -h1,20571:13585981,27657239:0,0,0 -k1,20571:32583029,27657239:18997048 -g1,20571:32583029,27657239 -) -(1,20572:6630773,28323417:25952256,404226,107478 -h1,20572:6630773,28323417:0,0,0 -g1,20572:6946919,28323417 -g1,20572:7263065,28323417 -g1,20572:11689105,28323417 -g1,20572:12321397,28323417 -k1,20572:12321397,28323417:0 -h1,20572:14534417,28323417:0,0,0 -k1,20572:32583029,28323417:18048612 -g1,20572:32583029,28323417 -) -(1,20573:6630773,28989595:25952256,404226,82312 -h1,20573:6630773,28989595:0,0,0 -g1,20573:6946919,28989595 -g1,20573:7263065,28989595 -g1,20573:7579211,28989595 -g1,20573:7895357,28989595 -g1,20573:8211503,28989595 -g1,20573:8527649,28989595 -g1,20573:8843795,28989595 -g1,20573:9159941,28989595 -g1,20573:9476087,28989595 -g1,20573:9792233,28989595 -g1,20573:10108379,28989595 -g1,20573:12005253,28989595 -g1,20573:12637545,28989595 -g1,20573:14850566,28989595 -k1,20573:14850566,28989595:0 -h1,20573:16431295,28989595:0,0,0 -k1,20573:32583029,28989595:16151734 -g1,20573:32583029,28989595 -) -(1,20574:6630773,29655773:25952256,404226,101187 -h1,20574:6630773,29655773:0,0,0 -g1,20574:6946919,29655773 -g1,20574:7263065,29655773 -g1,20574:7579211,29655773 -g1,20574:7895357,29655773 -g1,20574:8211503,29655773 -g1,20574:8527649,29655773 -g1,20574:8843795,29655773 -g1,20574:9159941,29655773 -g1,20574:9476087,29655773 -g1,20574:9792233,29655773 -g1,20574:10108379,29655773 -g1,20574:10740671,29655773 -g1,20574:11372963,29655773 -g1,20574:13585984,29655773 -g1,20574:15166713,29655773 -g1,20574:15799005,29655773 -g1,20574:17063588,29655773 -g1,20574:17695880,29655773 -g1,20574:18328172,29655773 -g1,20574:20541193,29655773 -k1,20574:20541193,29655773:0 -h1,20574:22438068,29655773:0,0,0 -k1,20574:32583029,29655773:10144961 -g1,20574:32583029,29655773 -) -(1,20575:6630773,30321951:25952256,404226,76021 -h1,20575:6630773,30321951:0,0,0 -g1,20575:6946919,30321951 -g1,20575:7263065,30321951 -g1,20575:7579211,30321951 -g1,20575:7895357,30321951 -g1,20575:8211503,30321951 -g1,20575:8527649,30321951 -g1,20575:8843795,30321951 -g1,20575:9159941,30321951 -g1,20575:9476087,30321951 -g1,20575:9792233,30321951 -g1,20575:10108379,30321951 -g1,20575:11689108,30321951 -g1,20575:12321400,30321951 -g1,20575:13585983,30321951 -h1,20575:13902129,30321951:0,0,0 -k1,20575:32583029,30321951:18680900 -g1,20575:32583029,30321951 -) -(1,20576:6630773,30988129:25952256,404226,107478 -h1,20576:6630773,30988129:0,0,0 -g1,20576:6946919,30988129 -g1,20576:7263065,30988129 -g1,20576:11689105,30988129 -g1,20576:12321397,30988129 -k1,20576:12321397,30988129:0 -h1,20576:14850563,30988129:0,0,0 -k1,20576:32583029,30988129:17732466 -g1,20576:32583029,30988129 -) -(1,20577:6630773,31654307:25952256,404226,82312 -h1,20577:6630773,31654307:0,0,0 -g1,20577:6946919,31654307 -g1,20577:7263065,31654307 -g1,20577:7579211,31654307 -g1,20577:7895357,31654307 -g1,20577:8211503,31654307 -g1,20577:8527649,31654307 -g1,20577:8843795,31654307 -g1,20577:9159941,31654307 -g1,20577:9476087,31654307 -g1,20577:9792233,31654307 -g1,20577:10108379,31654307 -g1,20577:12005253,31654307 -g1,20577:12637545,31654307 -k1,20577:12637545,31654307:0 -h1,20577:14534419,31654307:0,0,0 -k1,20577:32583029,31654307:18048610 -g1,20577:32583029,31654307 -) -(1,20578:6630773,32320485:25952256,404226,101187 -h1,20578:6630773,32320485:0,0,0 -g1,20578:6946919,32320485 -g1,20578:7263065,32320485 -g1,20578:7579211,32320485 -g1,20578:7895357,32320485 -g1,20578:8211503,32320485 -g1,20578:8527649,32320485 -g1,20578:8843795,32320485 -g1,20578:9159941,32320485 -g1,20578:9476087,32320485 -g1,20578:9792233,32320485 -g1,20578:10108379,32320485 -g1,20578:12005253,32320485 -g1,20578:12637545,32320485 -k1,20578:12637545,32320485:0 -h1,20578:13585982,32320485:0,0,0 -k1,20578:32583030,32320485:18997048 -g1,20578:32583030,32320485 -) -(1,20579:6630773,32986663:25952256,410518,82312 -h1,20579:6630773,32986663:0,0,0 -g1,20579:6946919,32986663 -g1,20579:7263065,32986663 -g1,20579:7579211,32986663 -g1,20579:7895357,32986663 -g1,20579:8211503,32986663 -g1,20579:8527649,32986663 -g1,20579:8843795,32986663 -g1,20579:9159941,32986663 -g1,20579:9476087,32986663 -g1,20579:9792233,32986663 -g1,20579:10108379,32986663 -g1,20579:11689108,32986663 -g1,20579:12321400,32986663 -k1,20579:12321400,32986663:0 -h1,20579:14850566,32986663:0,0,0 -k1,20579:32583030,32986663:17732464 -g1,20579:32583030,32986663 -) -(1,20580:6630773,33652841:25952256,404226,101187 -h1,20580:6630773,33652841:0,0,0 -g1,20580:6946919,33652841 -g1,20580:7263065,33652841 -g1,20580:7579211,33652841 -g1,20580:7895357,33652841 -g1,20580:8211503,33652841 -g1,20580:8527649,33652841 -g1,20580:8843795,33652841 -g1,20580:9159941,33652841 -g1,20580:9476087,33652841 -g1,20580:9792233,33652841 -g1,20580:10108379,33652841 -g1,20580:10740671,33652841 -g1,20580:11372963,33652841 -g1,20580:12953693,33652841 -g1,20580:13902131,33652841 -g1,20580:14850569,33652841 -g1,20580:15482861,33652841 -g1,20580:16747444,33652841 -g1,20580:17379736,33652841 -g1,20580:18012028,33652841 -k1,20580:18012028,33652841:0 -h1,20580:18644320,33652841:0,0,0 -k1,20580:32583029,33652841:13938709 -g1,20580:32583029,33652841 -) -(1,20581:6630773,34319019:25952256,404226,76021 -h1,20581:6630773,34319019:0,0,0 -g1,20581:6946919,34319019 -g1,20581:7263065,34319019 -g1,20581:7579211,34319019 -g1,20581:7895357,34319019 -g1,20581:8211503,34319019 -g1,20581:8527649,34319019 -g1,20581:8843795,34319019 -g1,20581:9159941,34319019 -g1,20581:9476087,34319019 -g1,20581:9792233,34319019 -g1,20581:10108379,34319019 -g1,20581:11689108,34319019 -g1,20581:12321400,34319019 -h1,20581:12953692,34319019:0,0,0 -k1,20581:32583028,34319019:19629336 -g1,20581:32583028,34319019 -) -] -) -g1,20583:32583029,34395040 -g1,20583:6630773,34395040 -g1,20583:6630773,34395040 -g1,20583:32583029,34395040 -g1,20583:32583029,34395040 -) -h1,20583:6630773,34591648:0,0,0 -(1,20586:6630773,44265138:25952256,9083666,0 -k1,20586:10523651,44265138:3892878 -h1,20585:10523651,44265138:0,0,0 -(1,20585:10523651,44265138:18166500,9083666,0 -(1,20585:10523651,44265138:18167376,9083688,0 -(1,20585:10523651,44265138:18167376,9083688,0 -(1,20585:10523651,44265138:0,9083688,0 -(1,20585:10523651,44265138:0,14208860,0 -(1,20585:10523651,44265138:28417720,14208860,0 -) -k1,20585:10523651,44265138:-28417720 -) -) -g1,20585:28691027,44265138 -) -) -) -g1,20586:28690151,44265138 -k1,20586:32583029,44265138:3892878 -) -v1,20593:6630773,45630914:0,393216,0 -] -(1,20594:32583029,45706769:0,0,0 -g1,20594:32583029,45706769 -) -) -] -(1,20594:6630773,47279633:25952256,0,0 -h1,20594:6630773,47279633:25952256,0,0 -) -] -(1,20594:4262630,4025873:0,0,0 -[1,20594:-473656,4025873:0,0,0 -(1,20594:-473656,-710413:0,0,0 -(1,20594:-473656,-710413:0,0,0 -g1,20594:-473656,-710413 -) -g1,20594:-473656,-710413 -) -] -) -] -!18377 -}370 +(1,20586:6630773,47279633:25952256,0,0 +h1,20586:6630773,47279633:25952256,0,0 +) +] +(1,20586:4262630,4025873:0,0,0 +[1,20586:-473656,4025873:0,0,0 +(1,20586:-473656,-710413:0,0,0 +(1,20586:-473656,-710413:0,0,0 +g1,20586:-473656,-710413 +) +g1,20586:-473656,-710413 +) +] +) +] +!30400 +}349 +Input:3354:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3355:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3356:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3357:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3358:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3359:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3360:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3361:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3362:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3363:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -352303,2213 +347940,1822 @@ Input:3369:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConso Input:3370:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3371:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3372:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1140 -{371 -[1,20628:4262630,47279633:28320399,43253760,0 -(1,20628:4262630,4025873:0,0,0 -[1,20628:-473656,4025873:0,0,0 -(1,20628:-473656,-710413:0,0,0 -(1,20628:-473656,-644877:0,0,0 -k1,20628:-473656,-644877:-65536 +Input:3373:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1892 +{350 +[1,20629:4262630,47279633:28320399,43253760,0 +(1,20629:4262630,4025873:0,0,0 +[1,20629:-473656,4025873:0,0,0 +(1,20629:-473656,-710413:0,0,0 +(1,20629:-473656,-644877:0,0,0 +k1,20629:-473656,-644877:-65536 ) -(1,20628:-473656,4736287:0,0,0 -k1,20628:-473656,4736287:5209943 +(1,20629:-473656,4736287:0,0,0 +k1,20629:-473656,4736287:5209943 ) -g1,20628:-473656,-710413 +g1,20629:-473656,-710413 ) ] ) -[1,20628:6630773,47279633:25952256,43253760,0 -[1,20628:6630773,4812305:25952256,786432,0 -(1,20628:6630773,4812305:25952256,513147,126483 -(1,20628:6630773,4812305:25952256,513147,126483 -g1,20628:3078558,4812305 -[1,20628:3078558,4812305:0,0,0 -(1,20628:3078558,2439708:0,1703936,0 -k1,20628:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,20628:2537886,2439708:1179648,16384,0 +[1,20629:6630773,47279633:25952256,43253760,0 +[1,20629:6630773,4812305:25952256,786432,0 +(1,20629:6630773,4812305:25952256,505283,11795 +(1,20629:6630773,4812305:25952256,505283,11795 +g1,20629:3078558,4812305 +[1,20629:3078558,4812305:0,0,0 +(1,20629:3078558,2439708:0,1703936,0 +k1,20629:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,20629:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,20628:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,20629:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,20628:3078558,4812305:0,0,0 -(1,20628:3078558,2439708:0,1703936,0 -g1,20628:29030814,2439708 -g1,20628:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,20628:36151628,1915420:16384,1179648,0 +[1,20629:3078558,4812305:0,0,0 +(1,20629:3078558,2439708:0,1703936,0 +g1,20629:29030814,2439708 +g1,20629:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,20629:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,20628:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,20629:37855564,2439708:1179648,16384,0 ) ) -k1,20628:3078556,2439708:-34777008 +k1,20629:3078556,2439708:-34777008 ) ] -[1,20628:3078558,4812305:0,0,0 -(1,20628:3078558,49800853:0,16384,2228224 -k1,20628:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,20628:2537886,49800853:1179648,16384,0 +[1,20629:3078558,4812305:0,0,0 +(1,20629:3078558,49800853:0,16384,2228224 +k1,20629:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,20629:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,20628:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,20629:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,20628:3078558,4812305:0,0,0 -(1,20628:3078558,49800853:0,16384,2228224 -g1,20628:29030814,49800853 -g1,20628:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,20628:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] -) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,20628:37855564,49800853:1179648,16384,0 +[1,20629:3078558,4812305:0,0,0 +(1,20629:3078558,49800853:0,16384,2228224 +g1,20629:29030814,49800853 +g1,20629:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,20629:36151628,51504789:16384,1179648,0 ) -) -k1,20628:3078556,49800853:-34777008 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] -g1,20628:6630773,4812305 -k1,20628:21350816,4812305:13524666 -g1,20628:21999622,4812305 -g1,20628:25611966,4812305 -g1,20628:28956923,4812305 -g1,20628:29772190,4812305 -) -) -] -[1,20628:6630773,45706769:25952256,40108032,0 -(1,20628:6630773,45706769:25952256,40108032,0 -(1,20628:6630773,45706769:0,0,0 -g1,20628:6630773,45706769 ) -[1,20628:6630773,45706769:25952256,40108032,0 -v1,20594:6630773,6254097:0,393216,0 -(1,20594:6630773,8377474:25952256,2516593,0 -g1,20594:6630773,8377474 -g1,20594:6303093,8377474 -r1,20628:6401397,8377474:98304,2516593,0 -g1,20594:6600626,8377474 -g1,20594:6797234,8377474 -[1,20594:6797234,8377474:25785795,2516593,0 -(1,20594:6797234,6686635:25785795,825754,196608 -(1,20593:6797234,6686635:0,825754,196608 -r1,20628:7890375,6686635:1093141,1022362,196608 -k1,20593:6797234,6686635:-1093141 -) -(1,20593:6797234,6686635:1093141,825754,196608 -) -k1,20593:8127867,6686635:237492 -k1,20593:9854085,6686635:327680 -k1,20593:12297520,6686635:237493 -k1,20593:13554097,6686635:237492 -k1,20593:15068886,6686635:237492 -k1,20593:17161703,6686635:237493 -k1,20593:18050623,6686635:237492 -k1,20593:19948797,6686635:237492 -k1,20593:21205374,6686635:237492 -k1,20593:23464653,6686635:237493 -k1,20593:26029328,6686635:237492 -k1,20593:26926112,6686635:237492 -k1,20593:28182690,6686635:237493 -k1,20593:29713863,6686635:237492 -k1,20593:32583029,6686635:0 -) -(1,20594:6797234,7528123:25785795,505283,134348 -k1,20593:9929568,7528123:191078 -(1,20593:9929568,7528123:0,452978,115847 -r1,20628:10991257,7528123:1061689,568825,115847 -k1,20593:9929568,7528123:-1061689 -) -(1,20593:9929568,7528123:1061689,452978,115847 -k1,20593:9929568,7528123:3277 -h1,20593:10987980,7528123:0,411205,112570 -) -k1,20593:11182334,7528123:191077 -k1,20593:12767363,7528123:191078 -(1,20593:12767363,7528123:0,414482,115847 -r1,20628:13829052,7528123:1061689,530329,115847 -k1,20593:12767363,7528123:-1061689 -) -(1,20593:12767363,7528123:1061689,414482,115847 -k1,20593:12767363,7528123:3277 -h1,20593:13825775,7528123:0,411205,112570 -) -k1,20593:14193799,7528123:191077 -k1,20593:15765721,7528123:191078 -k1,20593:16488295,7528123:191077 -k1,20593:18247650,7528123:191078 -k1,20593:19510896,7528123:191077 -k1,20593:20721059,7528123:191078 -k1,20593:22606898,7528123:191078 -k1,20593:23329472,7528123:191077 -k1,20593:24805056,7528123:191078 -k1,20593:26166606,7528123:191077 -k1,20593:27490146,7528123:191078 -k1,20593:29211489,7528123:191077 -k1,20593:30053995,7528123:191078 -k1,20593:32583029,7528123:0 -) -(1,20594:6797234,8369611:25785795,505283,7863 -g1,20593:8015548,8369611 -k1,20594:32583029,8369611:20603208 -g1,20594:32583029,8369611 -) -] -g1,20594:32583029,8377474 -) -h1,20594:6630773,8377474:0,0,0 -v1,20597:6630773,9700999:0,393216,0 -(1,20598:6630773,12754914:25952256,3447131,0 -g1,20598:6630773,12754914 -g1,20598:6303093,12754914 -r1,20628:6401397,12754914:98304,3447131,0 -g1,20598:6600626,12754914 -g1,20598:6797234,12754914 -[1,20598:6797234,12754914:25785795,3447131,0 -(1,20598:6797234,10096102:25785795,788319,218313 -(1,20597:6797234,10096102:0,788319,218313 -r1,20628:7917113,10096102:1119879,1006632,218313 -k1,20597:6797234,10096102:-1119879 -) -(1,20597:6797234,10096102:1119879,788319,218313 -) -k1,20597:8358662,10096102:441549 -k1,20597:8686342,10096102:327680 -k1,20597:10081440,10096102:441549 -k1,20597:12693541,10096102:441549 -k1,20597:14227575,10096102:441549 -(1,20597:14227575,10096102:0,452978,115847 -r1,20628:17751247,10096102:3523672,568825,115847 -k1,20597:14227575,10096102:-3523672 -) -(1,20597:14227575,10096102:3523672,452978,115847 -k1,20597:14227575,10096102:3277 -h1,20597:17747970,10096102:0,411205,112570 -) -k1,20597:18192795,10096102:441548 -k1,20597:20028295,10096102:441549 -(1,20597:20028295,10096102:0,452978,122846 -r1,20628:24958815,10096102:4930520,575824,122846 -k1,20597:20028295,10096102:-4930520 -) -(1,20597:20028295,10096102:4930520,452978,122846 -g1,20597:21790131,10096102 -g1,20597:22493555,10096102 -h1,20597:24955538,10096102:0,411205,112570 -) -k1,20597:25400364,10096102:441549 -k1,20597:26524798,10096102:441549 -(1,20597:26524798,10096102:0,452978,122846 -r1,20628:31455318,10096102:4930520,575824,122846 -k1,20597:26524798,10096102:-4930520 -) -(1,20597:26524798,10096102:4930520,452978,122846 -g1,20597:28286634,10096102 -g1,20597:28990058,10096102 -h1,20597:31452041,10096102:0,411205,112570 -) -k1,20597:31896867,10096102:441549 -k1,20597:32583029,10096102:0 -) -(1,20598:6797234,10937590:25785795,505283,122846 -k1,20597:8003305,10937590:337719 -k1,20597:9445306,10937590:337719 -k1,20597:10875509,10937590:337718 -(1,20597:10875509,10937590:0,452978,122846 -r1,20628:15454317,10937590:4578808,575824,122846 -k1,20597:10875509,10937590:-4578808 -) -(1,20597:10875509,10937590:4578808,452978,122846 -g1,20597:12637345,10937590 -g1,20597:13340769,10937590 -h1,20597:15451040,10937590:0,411205,112570 -) -k1,20597:15792036,10937590:337719 -k1,20597:16812640,10937590:337719 -(1,20597:16812640,10937590:0,452978,122846 -r1,20628:22446583,10937590:5633943,575824,122846 -k1,20597:16812640,10937590:-5633943 -) -(1,20597:16812640,10937590:5633943,452978,122846 -g1,20597:18574476,10937590 -g1,20597:19277900,10937590 -h1,20597:22443306,10937590:0,411205,112570 -) -k1,20597:22957972,10937590:337719 -k1,20597:25808340,10937590:337718 -(1,20597:25808340,10937590:0,452978,122846 -r1,20628:30035436,10937590:4227096,575824,122846 -k1,20597:25808340,10937590:-4227096 -) -(1,20597:25808340,10937590:4227096,452978,122846 -k1,20597:25808340,10937590:3277 -h1,20597:30032159,10937590:0,411205,112570 -) -k1,20597:30373155,10937590:337719 -k1,20598:32583029,10937590:0 -) -(1,20598:6797234,11779078:25785795,505283,134348 -(1,20597:6797234,11779078:0,452978,122846 -r1,20628:11024330,11779078:4227096,575824,122846 -k1,20597:6797234,11779078:-4227096 -) -(1,20597:6797234,11779078:4227096,452978,122846 -k1,20597:6797234,11779078:3277 -h1,20597:11021053,11779078:0,411205,112570 -) -k1,20597:11247329,11779078:222999 -k1,20597:12574610,11779078:222999 -k1,20597:13545374,11779078:222998 -k1,20597:15281599,11779078:222999 -k1,20597:17918944,11779078:222999 -k1,20597:20569397,11779078:222999 -k1,20597:23550151,11779078:222999 -k1,20597:27175779,11779078:222999 -k1,20597:28050205,11779078:222998 -k1,20597:30085930,11779078:222999 -k1,20597:31358816,11779078:222999 -k1,20598:32583029,11779078:0 -) -(1,20598:6797234,12620566:25785795,485622,134348 -g1,20597:8263929,12620566 -h1,20597:9806647,12620566:0,0,0 -g1,20597:10005876,12620566 -g1,20597:11014475,12620566 -g1,20597:12711857,12620566 -h1,20597:13907234,12620566:0,0,0 -k1,20598:32583028,12620566:18502124 -g1,20598:32583028,12620566 -) -] -g1,20598:32583029,12754914 -) -h1,20598:6630773,12754914:0,0,0 -(1,20601:6630773,16044519:25952256,32768,229376 -(1,20601:6630773,16044519:0,32768,229376 -(1,20601:6630773,16044519:5505024,32768,229376 -r1,20628:12135797,16044519:5505024,262144,229376 -) -k1,20601:6630773,16044519:-5505024 -) -(1,20601:6630773,16044519:25952256,32768,0 -r1,20628:32583029,16044519:25952256,32768,0 -) -) -(1,20601:6630773,17648847:25952256,606339,151780 -(1,20601:6630773,17648847:2464678,582746,14155 -g1,20601:6630773,17648847 -g1,20601:9095451,17648847 -) -g1,20601:14113674,17648847 -g1,20601:15823377,17648847 -g1,20601:19109090,17648847 -k1,20601:32583029,17648847:11502354 -g1,20601:32583029,17648847 -) -(1,20606:6630773,18883551:25952256,513147,134348 -k1,20604:9406626,18883551:233056 -k1,20604:11247280,18883551:233056 -k1,20604:12584618,18883551:233056 -k1,20604:13565440,18883551:233056 -k1,20604:16325564,18883551:233056 -k1,20604:17217912,18883551:233056 -k1,20604:18137130,18883551:233056 -k1,20604:19977784,18883551:233056 -k1,20604:23515821,18883551:233056 -k1,20604:24400305,18883551:233056 -k1,20604:26377274,18883551:233056 -k1,20604:29700353,18883551:233056 -k1,20604:31966991,18883551:233056 -k1,20604:32583029,18883551:0 -) -(1,20606:6630773,19725039:25952256,513147,134348 -k1,20604:8076123,19725039:242109 -k1,20604:10735854,19725039:242108 -k1,20604:12050132,19725039:242109 -k1,20604:14293055,19725039:242109 -k1,20604:16270557,19725039:242109 -k1,20604:16868525,19725039:242108 -k1,20604:19872977,19725039:242109 -k1,20604:22361005,19725039:242109 -k1,20604:23262405,19725039:242108 -k1,20604:27416358,19725039:242109 -k1,20604:29039311,19725039:242109 -k1,20604:29812917,19725039:242109 -k1,20604:30410885,19725039:242108 -k1,20604:31753999,19725039:242109 -k1,20606:32583029,19725039:0 -) -(1,20606:6630773,20566527:25952256,513147,134348 -k1,20604:8572958,20566527:191063 -k1,20604:10048526,20566527:191062 -k1,20604:11258674,20566527:191063 -k1,20604:14352326,20566527:191062 -k1,20604:15202681,20566527:191063 -k1,20604:18112833,20566527:191063 -k1,20604:18990057,20566527:191062 -k1,20604:23382633,20566527:191063 -k1,20604:24189734,20566527:191063 -k1,20604:27209329,20566527:191062 -k1,20604:29446426,20566527:191063 -k1,20604:30729973,20566527:191062 -k1,20604:31753999,20566527:191063 -k1,20604:32583029,20566527:0 -) -(1,20606:6630773,21408015:25952256,505283,134348 -k1,20604:8816248,21408015:161723 -k1,20604:11398870,21408015:161722 -k1,20604:13168191,21408015:161723 -k1,20604:14198265,21408015:161722 -k1,20604:15452473,21408015:161723 -k1,20604:16633280,21408015:161722 -k1,20604:18448476,21408015:161723 -k1,20604:22200915,21408015:161722 -k1,20604:25045027,21408015:161723 -k1,20604:26398194,21408015:161722 -k1,20604:28406067,21408015:161723 -k1,20604:29436141,21408015:161722 -k1,20604:31073079,21408015:161723 -k1,20604:32583029,21408015:0 -) -(1,20606:6630773,22249503:25952256,513147,134348 -k1,20604:8513824,22249503:147658 -k1,20604:10055432,22249503:147657 -k1,20604:11222175,22249503:147658 -k1,20604:13635412,22249503:147657 -k1,20604:16028989,22249503:147658 -k1,20604:16835938,22249503:147657 -k1,20604:19867835,22249503:147658 -k1,20604:23927336,22249503:147657 -k1,20604:25271681,22249503:147658 -k1,20604:26794939,22249503:147657 -k1,20604:28604590,22249503:147658 -k1,20604:30036753,22249503:147657 -k1,20604:31052763,22249503:147658 -k1,20604:32583029,22249503:0 -) -(1,20606:6630773,23090991:25952256,513147,126483 -k1,20604:7420402,23090991:138201 -k1,20604:8373871,23090991:138201 -k1,20604:9043569,23090991:138201 -k1,20604:9833197,23090991:138200 -k1,20604:11168741,23090991:138201 -(1,20604:11168741,23090991:0,452978,115847 -r1,20628:15747549,23090991:4578808,568825,115847 -k1,20604:11168741,23090991:-4578808 -) -(1,20604:11168741,23090991:4578808,452978,115847 -k1,20604:11168741,23090991:3277 -h1,20604:15744272,23090991:0,411205,112570 -) -k1,20604:15885750,23090991:138201 -k1,20604:16675379,23090991:138201 -k1,20604:19458613,23090991:138201 -k1,20604:20615899,23090991:138201 -k1,20604:23193350,23090991:138201 -k1,20604:24105530,23090991:138200 -k1,20604:26352680,23090991:138201 -k1,20604:27866482,23090991:138201 -k1,20604:29696823,23090991:138201 -k1,20604:32583029,23090991:0 -) -(1,20606:6630773,23932479:25952256,505283,126483 -k1,20604:9986065,23932479:171553 -k1,20604:11261900,23932479:171553 -k1,20604:12181219,23932479:171553 -k1,20604:14250039,23932479:171553 -k1,20604:17485400,23932479:171553 -k1,20604:18272991,23932479:171553 -k1,20604:20865445,23932479:171554 -k1,20604:22644596,23932479:171553 -k1,20604:24258596,23932479:171553 -k1,20604:25046187,23932479:171553 -k1,20604:28101979,23932479:171553 -k1,20604:30054801,23932479:171553 -k1,20604:31714677,23932479:171553 -k1,20604:32583029,23932479:0 -) -(1,20606:6630773,24773967:25952256,513147,134348 -k1,20604:7997979,24773967:169863 -k1,20604:8523703,24773967:169864 -k1,20604:9976761,24773967:169863 -k1,20604:12371572,24773967:169864 -k1,20604:13192863,24773967:169863 -k1,20604:14381812,24773967:169864 -k1,20604:17454265,24773967:169863 -k1,20604:18283421,24773967:169864 -k1,20604:21346043,24773967:169863 -k1,20604:25311096,24773967:169864 -k1,20604:26974525,24773967:169863 -k1,20604:27830551,24773967:169864 -(1,20604:27830551,24773967:0,452978,115847 -r1,20628:32409359,24773967:4578808,568825,115847 -k1,20604:27830551,24773967:-4578808 -) -(1,20604:27830551,24773967:4578808,452978,115847 -k1,20604:27830551,24773967:3277 -h1,20604:32406082,24773967:0,411205,112570 -) -k1,20604:32583029,24773967:0 -) -(1,20606:6630773,25615455:25952256,505283,134348 -k1,20605:8619622,25615455:205614 -k1,20605:10560630,25615455:205615 -k1,20605:12430858,25615455:205614 -k1,20605:16548317,25615455:205615 -k1,20605:17773016,25615455:205614 -(1,20605:17773016,25615455:0,414482,115847 -r1,20628:18131282,25615455:358266,530329,115847 -k1,20605:17773016,25615455:-358266 -) -(1,20605:17773016,25615455:358266,414482,115847 -k1,20605:17773016,25615455:3277 -h1,20605:18128005,25615455:0,411205,112570 -) -k1,20605:18336897,25615455:205615 -k1,20605:19733956,25615455:205614 -(1,20605:19733956,25615455:0,414482,115847 -r1,20628:20092222,25615455:358266,530329,115847 -k1,20605:19733956,25615455:-358266 -) -(1,20605:19733956,25615455:358266,414482,115847 -k1,20605:19733956,25615455:3277 -h1,20605:20088945,25615455:0,411205,112570 -) -k1,20605:20297837,25615455:205615 -k1,20605:23567915,25615455:205614 -k1,20605:27406846,25615455:205615 -k1,20605:28263888,25615455:205614 -k1,20605:29488588,25615455:205615 -k1,20605:31391584,25615455:205614 -k1,20605:32583029,25615455:0 -) -(1,20606:6630773,26456943:25952256,505283,126483 -g1,20605:8657146,26456943 -g1,20605:11690807,26456943 -k1,20606:32583030,26456943:16922052 -g1,20606:32583030,26456943 -) -(1,20607:6630773,28548203:25952256,555811,139132 -(1,20607:6630773,28548203:2899444,534184,12975 -g1,20607:6630773,28548203 -g1,20607:9530217,28548203 -) -g1,20607:13388453,28548203 -k1,20607:32583029,28548203:17387290 -g1,20607:32583029,28548203 -) -(1,20610:6630773,29782907:25952256,513147,126483 -k1,20609:8623559,29782907:275743 -k1,20609:10615689,29782907:275742 -k1,20609:11550724,29782907:275743 -k1,20609:13215829,29782907:275742 -k1,20609:14483132,29782907:275743 -k1,20609:16409072,29782907:275743 -k1,20609:19542839,29782907:275742 -k1,20609:23016084,29782907:275743 -k1,20609:24101196,29782907:275742 -k1,20609:26041553,29782907:275743 -k1,20609:30055469,29782907:275742 -k1,20609:31773659,29782907:275743 -k1,20609:32583029,29782907:0 -) -(1,20610:6630773,30624395:25952256,513147,126483 -k1,20609:9651506,30624395:136494 -k1,20609:13699843,30624395:136493 -k1,20609:15033024,30624395:136494 -k1,20609:17634326,30624395:136493 -k1,20609:20432237,30624395:136494 -k1,20609:21100227,30624395:136493 -k1,20609:22794512,30624395:136494 -k1,20609:25963356,30624395:136493 -k1,20609:27667471,30624395:136494 -k1,20609:29689435,30624395:136493 -k1,20609:30845014,30624395:136494 -k1,20609:32583029,30624395:0 -) -(1,20610:6630773,31465883:25952256,513147,134348 -k1,20609:9332974,31465883:236081 -k1,20609:10196890,31465883:236081 -k1,20609:12125111,31465883:236081 -k1,20609:14058573,31465883:236080 -k1,20609:14953946,31465883:236081 -k1,20609:16615435,31465883:236081 -k1,20609:18696354,31465883:236081 -k1,20609:20321798,31465883:236081 -k1,20609:21951830,31465883:236081 -k1,20609:22543770,31465883:236080 -k1,20609:24838992,31465883:236081 -k1,20609:27682751,31465883:236081 -k1,20609:30918415,31465883:236081 -k1,20609:32583029,31465883:0 -) -(1,20610:6630773,32307371:25952256,513147,134348 -k1,20609:10586879,32307371:217932 -k1,20609:11909094,32307371:217933 -k1,20609:12874792,32307371:217932 -k1,20609:14605950,32307371:217932 -k1,20609:15475311,32307371:217933 -k1,20609:18550613,32307371:217932 -k1,20609:19900352,32307371:217932 -k1,20609:21987371,32307371:217932 -k1,20609:24003612,32307371:217933 -k1,20609:24904429,32307371:217932 -k1,20609:27693338,32307371:217932 -k1,20609:28527309,32307371:217933 -k1,20609:32095441,32307371:217932 -k1,20609:32583029,32307371:0 -) -(1,20610:6630773,33148859:25952256,505283,134348 -k1,20609:8491996,33148859:211026 -k1,20609:11691464,33148859:211026 -k1,20609:15463060,33148859:211025 -k1,20609:16205583,33148859:211026 -k1,20609:17068037,33148859:211026 -k1,20609:18556360,33148859:211026 -k1,20609:21593297,33148859:211025 -k1,20609:22420361,33148859:211026 -k1,20609:22987247,33148859:211026 -k1,20609:26072027,33148859:211026 -k1,20609:28794392,33148859:211025 -k1,20609:31563944,33148859:211026 -k1,20609:32583029,33148859:0 -) -(1,20610:6630773,33990347:25952256,513147,126483 -g1,20609:7967707,33990347 -g1,20609:9560887,33990347 -g1,20609:10115976,33990347 -g1,20609:14848330,33990347 -g1,20609:19712412,33990347 -g1,20609:20570933,33990347 -g1,20609:22195570,33990347 -g1,20609:23054091,33990347 -k1,20610:32583029,33990347:8217563 -g1,20610:32583029,33990347 -) -(1,20612:6630773,34831835:25952256,513147,134348 -h1,20611:6630773,34831835:983040,0,0 -k1,20611:9510261,34831835:253460 -k1,20611:11124249,34831835:253461 -k1,20611:12985308,34831835:253461 -k1,20611:14230328,34831835:253460 -k1,20611:17788770,34831835:253461 -k1,20611:21608699,34831835:253460 -k1,20611:22545045,34831835:253461 -k1,20611:25130931,34831835:253460 -k1,20611:26991989,34831835:253460 -k1,20611:29246264,34831835:253461 -k1,20611:30309095,34831835:253461 -k1,20611:30918415,34831835:253460 -k1,20611:32583029,34831835:0 -) -(1,20612:6630773,35673323:25952256,513147,134348 -k1,20611:9070275,35673323:193583 -k1,20611:9923150,35673323:193583 -k1,20611:13854907,35673323:193583 -k1,20611:15280567,35673323:193583 -k1,20611:18083138,35673323:193583 -h1,20611:19625856,35673323:0,0,0 -k1,20611:19819439,35673323:193583 -k1,20611:21204467,35673323:193583 -h1,20611:22747185,35673323:0,0,0 -k1,20611:22940768,35673323:193583 -k1,20611:23943721,35673323:193583 -k1,20611:25965758,35673323:193583 -h1,20611:27161135,35673323:0,0,0 -k1,20611:27354718,35673323:193583 -k1,20611:28739746,35673323:193583 -h1,20611:29935123,35673323:0,0,0 -k1,20611:30302376,35673323:193583 -k1,20612:32583029,35673323:0 -) -(1,20612:6630773,36514811:25952256,513147,134348 -k1,20611:8596057,36514811:236444 -k1,20611:9780153,36514811:236445 -k1,20611:10372457,36514811:236444 -k1,20611:14218625,36514811:236445 -k1,20611:15114361,36514811:236444 -k1,20611:16369891,36514811:236445 -k1,20611:17698820,36514811:236444 -k1,20611:18594556,36514811:236444 -k1,20611:20527728,36514811:236445 -k1,20611:23446561,36514811:236444 -k1,20611:24874451,36514811:236445 -k1,20611:28931644,36514811:236444 -k1,20611:30121638,36514811:236445 -k1,20611:31490544,36514811:236444 -k1,20611:32583029,36514811:0 -) -(1,20612:6630773,37356299:25952256,513147,126483 -k1,20611:8491230,37356299:221402 -k1,20611:9660284,37356299:221403 -k1,20611:12873405,37356299:221402 -k1,20611:15013701,37356299:221402 -k1,20611:16103455,37356299:221402 -k1,20611:17602155,37356299:221403 -k1,20611:19381348,37356299:221402 -k1,20611:21469215,37356299:221402 -k1,20611:22882062,37356299:221402 -k1,20611:25962145,37356299:221403 -k1,20611:27746581,37356299:221402 -k1,20611:31092740,37356299:221402 -k1,20611:32583029,37356299:0 -) -(1,20612:6630773,38197787:25952256,513147,134348 -g1,20611:7886442,38197787 -g1,20611:10340765,38197787 -g1,20611:12654185,38197787 -g1,20611:13650332,38197787 -g1,20611:14264404,38197787 -g1,20611:16238348,38197787 -g1,20611:19017729,38197787 -k1,20612:32583029,38197787:9378206 -g1,20612:32583029,38197787 -) -(1,20614:6630773,39039275:25952256,513147,134348 -h1,20613:6630773,39039275:983040,0,0 -k1,20613:9298803,39039275:196667 -k1,20613:10363823,39039275:196668 -k1,20613:11837787,39039275:196667 -k1,20613:12390315,39039275:196668 -k1,20613:15007882,39039275:196667 -k1,20613:18440718,39039275:196668 -k1,20613:19296677,39039275:196667 -k1,20613:21051136,39039275:196668 -k1,20613:24436785,39039275:196667 -k1,20613:26027404,39039275:196668 -k1,20613:31062594,39039275:196667 -k1,20613:32583029,39039275:0 -) -(1,20614:6630773,39880763:25952256,513147,134348 -k1,20613:7742178,39880763:157856 -k1,20613:8992519,39880763:157856 -(1,20613:8992519,39880763:0,452978,115847 -r1,20628:12516191,39880763:3523672,568825,115847 -k1,20613:8992519,39880763:-3523672 -) -(1,20613:8992519,39880763:3523672,452978,115847 -k1,20613:8992519,39880763:3277 -h1,20613:12512914,39880763:0,411205,112570 -) -k1,20613:12847718,39880763:157857 -k1,20613:14202261,39880763:157856 -k1,20613:16505110,39880763:157856 -k1,20613:19704492,39880763:157856 -k1,20613:20881434,39880763:157857 -k1,20613:23525071,39880763:157856 -k1,20613:24342219,39880763:157856 -k1,20613:27085470,39880763:157856 -k1,20613:29357518,39880763:157857 -k1,20613:30312292,39880763:157856 -k1,20613:30884991,39880763:157856 -k1,20613:32583029,39880763:0 -) -(1,20614:6630773,40722251:25952256,505283,7863 -g1,20613:7849087,40722251 -g1,20613:9606107,40722251 -g1,20613:12664016,40722251 -g1,20613:14070418,40722251 -g1,20613:16279636,40722251 -g1,20613:17930487,40722251 -k1,20614:32583029,40722251:13462408 -g1,20614:32583029,40722251 -) -v1,20616:6630773,41870466:0,393216,0 -(1,20628:6630773,45510161:25952256,4032911,196608 -g1,20628:6630773,45510161 -g1,20628:6630773,45510161 -g1,20628:6434165,45510161 -(1,20628:6434165,45510161:0,4032911,196608 -r1,20628:32779637,45510161:26345472,4229519,196608 -k1,20628:6434165,45510161:-26345472 -) -(1,20628:6434165,45510161:26345472,4032911,196608 -[1,20628:6630773,45510161:25952256,3836303,0 -(1,20618:6630773,42078084:25952256,404226,107478 -(1,20617:6630773,42078084:0,0,0 -g1,20617:6630773,42078084 -g1,20617:6630773,42078084 -g1,20617:6303093,42078084 -(1,20617:6303093,42078084:0,0,0 -) -g1,20617:6630773,42078084 -) -g1,20618:7263065,42078084 -g1,20618:8211503,42078084 -g1,20618:15482854,42078084 -g1,20618:22121914,42078084 -g1,20618:22438060,42078084 -h1,20618:22754206,42078084:0,0,0 -k1,20618:32583029,42078084:9828823 -g1,20618:32583029,42078084 -) -(1,20619:6630773,42744262:25952256,404226,101187 -h1,20619:6630773,42744262:0,0,0 -g1,20619:6946919,42744262 -g1,20619:7263065,42744262 -g1,20619:11689104,42744262 -h1,20619:12005250,42744262:0,0,0 -k1,20619:32583030,42744262:20577780 -g1,20619:32583030,42744262 -) -(1,20620:6630773,43410440:25952256,404226,82312 -h1,20620:6630773,43410440:0,0,0 -g1,20620:6946919,43410440 -g1,20620:7263065,43410440 -g1,20620:15482853,43410440 -g1,20620:16115145,43410440 -g1,20620:17695875,43410440 -g1,20620:18960458,43410440 -g1,20620:20541187,43410440 -k1,20620:20541187,43410440:0 -h1,20620:22121916,43410440:0,0,0 -k1,20620:32583029,43410440:10461113 -g1,20620:32583029,43410440 -) -(1,20621:6630773,44076618:25952256,404226,82312 -h1,20621:6630773,44076618:0,0,0 -g1,20621:6946919,44076618 -g1,20621:7263065,44076618 -g1,20621:7579211,44076618 -g1,20621:7895357,44076618 -g1,20621:8211503,44076618 -g1,20621:8527649,44076618 -g1,20621:8843795,44076618 -g1,20621:9159941,44076618 -g1,20621:9476087,44076618 -g1,20621:9792233,44076618 -g1,20621:10108379,44076618 -g1,20621:10424525,44076618 -g1,20621:10740671,44076618 -g1,20621:11056817,44076618 -g1,20621:11372963,44076618 -g1,20621:11689109,44076618 -g1,20621:12005255,44076618 -g1,20621:12321401,44076618 -g1,20621:12637547,44076618 -g1,20621:12953693,44076618 -g1,20621:13269839,44076618 -g1,20621:15482859,44076618 -g1,20621:16115151,44076618 -g1,20621:18328172,44076618 -g1,20621:19908901,44076618 -g1,20621:21489630,44076618 -k1,20621:21489630,44076618:0 -h1,20621:23070359,44076618:0,0,0 -k1,20621:32583029,44076618:9512670 -g1,20621:32583029,44076618 -) -(1,20622:6630773,44742796:25952256,404226,82312 -h1,20622:6630773,44742796:0,0,0 -g1,20622:6946919,44742796 -g1,20622:7263065,44742796 -g1,20622:7579211,44742796 -g1,20622:7895357,44742796 -g1,20622:8211503,44742796 -g1,20622:8527649,44742796 -g1,20622:8843795,44742796 -g1,20622:9159941,44742796 -g1,20622:9476087,44742796 -g1,20622:9792233,44742796 -g1,20622:10108379,44742796 -g1,20622:10424525,44742796 -g1,20622:10740671,44742796 -g1,20622:11056817,44742796 -g1,20622:11372963,44742796 -g1,20622:11689109,44742796 -g1,20622:12005255,44742796 -g1,20622:12321401,44742796 -g1,20622:12637547,44742796 -g1,20622:12953693,44742796 -g1,20622:13269839,44742796 -g1,20622:15482859,44742796 -g1,20622:16115151,44742796 -g1,20622:17695881,44742796 -k1,20622:17695881,44742796:0 -h1,20622:19276610,44742796:0,0,0 -k1,20622:32583029,44742796:13306419 -g1,20622:32583029,44742796 -) -(1,20623:6630773,45408974:25952256,404226,101187 -h1,20623:6630773,45408974:0,0,0 -g1,20623:6946919,45408974 -g1,20623:7263065,45408974 -g1,20623:7579211,45408974 -g1,20623:7895357,45408974 -g1,20623:8211503,45408974 -g1,20623:8527649,45408974 -g1,20623:8843795,45408974 -g1,20623:9159941,45408974 -g1,20623:9476087,45408974 -g1,20623:9792233,45408974 -g1,20623:10108379,45408974 -g1,20623:10424525,45408974 -g1,20623:10740671,45408974 -g1,20623:11056817,45408974 -g1,20623:11372963,45408974 -g1,20623:11689109,45408974 -g1,20623:12005255,45408974 -g1,20623:12321401,45408974 -g1,20623:12637547,45408974 -g1,20623:12953693,45408974 -g1,20623:13269839,45408974 -g1,20623:15482859,45408974 -g1,20623:16115151,45408974 -g1,20623:17695881,45408974 -k1,20623:17695881,45408974:0 -h1,20623:18644319,45408974:0,0,0 -k1,20623:32583029,45408974:13938710 -g1,20623:32583029,45408974 -) -] -) -g1,20628:32583029,45510161 -g1,20628:6630773,45510161 -g1,20628:6630773,45510161 -g1,20628:32583029,45510161 -g1,20628:32583029,45510161 -) -] -(1,20628:32583029,45706769:0,0,0 -g1,20628:32583029,45706769 -) -) -] -(1,20628:6630773,47279633:25952256,0,0 -h1,20628:6630773,47279633:25952256,0,0 -) -] -(1,20628:4262630,4025873:0,0,0 -[1,20628:-473656,4025873:0,0,0 -(1,20628:-473656,-710413:0,0,0 -(1,20628:-473656,-710413:0,0,0 -g1,20628:-473656,-710413 -) -g1,20628:-473656,-710413 -) -] -) -] -!27549 -}371 -Input:3373:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3374:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3375:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3376:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3377:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3378:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3379:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!670 -{372 -[1,20674:4262630,47279633:28320399,43253760,0 -(1,20674:4262630,4025873:0,0,0 -[1,20674:-473656,4025873:0,0,0 -(1,20674:-473656,-710413:0,0,0 -(1,20674:-473656,-644877:0,0,0 -k1,20674:-473656,-644877:-65536 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,20629:37855564,49800853:1179648,16384,0 ) -(1,20674:-473656,4736287:0,0,0 -k1,20674:-473656,4736287:5209943 ) -g1,20674:-473656,-710413 +k1,20629:3078556,49800853:-34777008 ) ] +g1,20629:6630773,4812305 +g1,20629:6630773,4812305 +g1,20629:8724648,4812305 +k1,20629:31387652,4812305:22663004 ) -[1,20674:6630773,47279633:25952256,43253760,0 -[1,20674:6630773,4812305:25952256,786432,0 -(1,20674:6630773,4812305:25952256,505283,126483 -(1,20674:6630773,4812305:25952256,505283,126483 -g1,20674:3078558,4812305 -[1,20674:3078558,4812305:0,0,0 -(1,20674:3078558,2439708:0,1703936,0 -k1,20674:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,20674:2537886,2439708:1179648,16384,0 -) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,20674:3078558,1915420:16384,1179648,0 -) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 ) ] +[1,20629:6630773,45706769:25952256,40108032,0 +(1,20629:6630773,45706769:25952256,40108032,0 +(1,20629:6630773,45706769:0,0,0 +g1,20629:6630773,45706769 ) +[1,20629:6630773,45706769:25952256,40108032,0 +v1,20586:6630773,6254097:0,393216,0 +(1,20586:6630773,10309327:25952256,4448446,196608 +g1,20586:6630773,10309327 +g1,20586:6630773,10309327 +g1,20586:6434165,10309327 +(1,20586:6434165,10309327:0,4448446,196608 +r1,20629:32779637,10309327:26345472,4645054,196608 +k1,20586:6434165,10309327:-26345472 ) +(1,20586:6434165,10309327:26345472,4448446,196608 +[1,20586:6630773,10309327:25952256,4251838,0 +(1,20573:6630773,6481928:25952256,424439,112852 +(1,20572:6630773,6481928:0,0,0 +g1,20572:6630773,6481928 +g1,20572:6630773,6481928 +g1,20572:6303093,6481928 +(1,20572:6303093,6481928:0,0,0 +) +g1,20572:6630773,6481928 +) +k1,20573:6630773,6481928:0 +g1,20573:8954451,6481928 +g1,20573:9950313,6481928 +g1,20573:10946175,6481928 +g1,20573:12937899,6481928 +g1,20573:13601807,6481928 +h1,20573:17253300,6481928:0,0,0 +k1,20573:32583029,6481928:15329729 +g1,20573:32583029,6481928 +) +(1,20578:6630773,7297855:25952256,424439,106246 +(1,20575:6630773,7297855:0,0,0 +g1,20575:6630773,7297855 +g1,20575:6630773,7297855 +g1,20575:6303093,7297855 +(1,20575:6303093,7297855:0,0,0 +) +g1,20575:6630773,7297855 +) +g1,20578:7626635,7297855 +g1,20578:7958589,7297855 +h1,20578:10614220,7297855:0,0,0 +k1,20578:32583028,7297855:21968808 +g1,20578:32583028,7297855 +) +(1,20578:6630773,7982710:25952256,424439,9908 +h1,20578:6630773,7982710:0,0,0 +g1,20578:7626635,7982710 +h1,20578:10614220,7982710:0,0,0 +k1,20578:32583028,7982710:21968808 +g1,20578:32583028,7982710 +) +(1,20580:6630773,8798637:25952256,424439,112852 +(1,20579:6630773,8798637:0,0,0 +g1,20579:6630773,8798637 +g1,20579:6630773,8798637 +g1,20579:6303093,8798637 +(1,20579:6303093,8798637:0,0,0 +) +g1,20579:6630773,8798637 +) +k1,20580:6630773,8798637:0 +g1,20580:9618359,8798637 +g1,20580:11278129,8798637 +g1,20580:12273991,8798637 +g1,20580:14265715,8798637 +g1,20580:14929623,8798637 +g1,20580:18913070,8798637 +g1,20580:23560425,8798637 +g1,20580:24224333,8798637 +h1,20580:25552149,8798637:0,0,0 +k1,20580:32583029,8798637:7030880 +g1,20580:32583029,8798637 +) +(1,20585:6630773,9614564:25952256,424439,106246 +(1,20582:6630773,9614564:0,0,0 +g1,20582:6630773,9614564 +g1,20582:6630773,9614564 +g1,20582:6303093,9614564 +(1,20582:6303093,9614564:0,0,0 +) +g1,20582:6630773,9614564 +) +g1,20585:7626635,9614564 +g1,20585:7958589,9614564 +h1,20585:10614220,9614564:0,0,0 +k1,20585:32583028,9614564:21968808 +g1,20585:32583028,9614564 +) +(1,20585:6630773,10299419:25952256,424439,9908 +h1,20585:6630773,10299419:0,0,0 +g1,20585:7626635,10299419 +h1,20585:10614220,10299419:0,0,0 +k1,20585:32583028,10299419:21968808 +g1,20585:32583028,10299419 +) +] +) +g1,20586:32583029,10309327 +g1,20586:6630773,10309327 +g1,20586:6630773,10309327 +g1,20586:32583029,10309327 +g1,20586:32583029,10309327 +) +h1,20586:6630773,10505935:0,0,0 +(1,20590:6630773,11371015:25952256,513147,126483 +h1,20589:6630773,11371015:983040,0,0 +k1,20589:8730117,11371015:298415 +k1,20589:12118556,11371015:298416 +k1,20589:14445966,11371015:298415 +k1,20589:16690801,11371015:298416 +k1,20589:18093498,11371015:298415 +k1,20589:19139680,11371015:298416 +k1,20589:21819673,11371015:298415 +k1,20589:22734127,11371015:298416 +k1,20589:24051627,11371015:298415 +k1,20589:25673770,11371015:298316 +k1,20589:27522768,11371015:298416 +k1,20589:29738766,11371015:298415 +k1,20589:32583029,11371015:0 +) +(1,20590:6630773,12236095:25952256,513147,102891 +k1,20589:8523172,12236095:190429 +k1,20589:10329720,12236095:190430 +k1,20589:12838157,12236095:190429 +k1,20589:14522153,12236095:190430 +k1,20589:15398744,12236095:190429 +k1,20589:16907749,12236095:190421 +k1,20589:18655969,12236095:190429 +k1,20589:22289661,12236095:190430 +k1,20589:24367527,12236095:190429 +k1,20589:25662238,12236095:190429 +k1,20589:26600434,12236095:190430 +k1,20589:28076679,12236095:190429 +k1,20589:29780335,12236095:190430 +k1,20589:30622192,12236095:190429 +k1,20589:32583029,12236095:0 +) +(1,20590:6630773,13101175:25952256,505283,7863 +k1,20590:32583030,13101175:23417324 +g1,20590:32583030,13101175 +) +v1,20592:6630773,13786030:0,393216,0 +(1,20599:6630773,14909610:25952256,1516796,196608 +g1,20599:6630773,14909610 +g1,20599:6630773,14909610 +g1,20599:6434165,14909610 +(1,20599:6434165,14909610:0,1516796,196608 +r1,20629:32779637,14909610:26345472,1713404,196608 +k1,20599:6434165,14909610:-26345472 +) +(1,20599:6434165,14909610:26345472,1516796,196608 +[1,20599:6630773,14909610:25952256,1320188,0 +(1,20594:6630773,14013861:25952256,424439,86428 +(1,20593:6630773,14013861:0,0,0 +g1,20593:6630773,14013861 +g1,20593:6630773,14013861 +g1,20593:6303093,14013861 +(1,20593:6303093,14013861:0,0,0 +) +g1,20593:6630773,14013861 +) +k1,20594:6630773,14013861:0 +g1,20594:15261577,14013861 +g1,20594:16921347,14013861 +h1,20594:18249163,14013861:0,0,0 +k1,20594:32583029,14013861:14333866 +g1,20594:32583029,14013861 +) +(1,20598:6630773,14829788:25952256,424439,79822 +(1,20596:6630773,14829788:0,0,0 +g1,20596:6630773,14829788 +g1,20596:6630773,14829788 +g1,20596:6303093,14829788 +(1,20596:6303093,14829788:0,0,0 +) +g1,20596:6630773,14829788 +) +g1,20598:7626635,14829788 +g1,20598:8954451,14829788 +g1,20598:12273990,14829788 +g1,20598:15593529,14829788 +g1,20598:18913068,14829788 +g1,20598:22232607,14829788 +h1,20598:25220192,14829788:0,0,0 +k1,20598:32583029,14829788:7362837 +g1,20598:32583029,14829788 +) +] +) +g1,20599:32583029,14909610 +g1,20599:6630773,14909610 +g1,20599:6630773,14909610 +g1,20599:32583029,14909610 +g1,20599:32583029,14909610 +) +h1,20599:6630773,15106218:0,0,0 +(1,20603:6630773,15971298:25952256,513147,126483 +h1,20602:6630773,15971298:983040,0,0 +k1,20602:10564948,15971298:169787 +k1,20602:11090595,15971298:169787 +k1,20602:12910579,15971298:169787 +k1,20602:15057587,15971298:169787 +k1,20602:17057795,15971298:169787 +k1,20602:17886875,15971298:169788 +k1,20602:19375216,15971298:169757 +k1,20602:21491422,15971298:169787 +k1,20602:22608861,15971298:169788 +k1,20602:23871133,15971298:169787 +k1,20602:24656958,15971298:169787 +k1,20602:26729255,15971298:169787 +k1,20602:27890602,15971298:169787 +k1,20602:29804302,15971298:169787 +k1,20602:32583029,15971298:0 +) +(1,20603:6630773,16836378:25952256,513147,126483 +k1,20602:7606530,16836378:214229 +k1,20602:10516255,16836378:214229 +(1,20602:10516255,16836378:0,452978,115847 +r1,20629:12281368,16836378:1765113,568825,115847 +k1,20602:10516255,16836378:-1765113 +) +(1,20602:10516255,16836378:1765113,452978,115847 +k1,20602:10516255,16836378:3277 +h1,20602:12278091,16836378:0,411205,112570 +) +k1,20602:12495597,16836378:214229 +k1,20602:13657477,16836378:214229 +k1,20602:15222403,16836378:214229 +k1,20602:17843769,16836378:214229 +k1,20602:19249442,16836378:214228 +k1,20602:22944943,16836378:214229 +k1,20602:24933887,16836378:214229 +k1,20602:26167201,16836378:214229 +k1,20602:28662083,16836378:214229 +k1,20602:30067757,16836378:214229 +k1,20603:32583029,16836378:0 +) +(1,20603:6630773,17701458:25952256,505283,126483 +k1,20602:8370302,17701458:171908 +k1,20602:9158248,17701458:171908 +k1,20602:10648713,17701458:171881 +k1,20602:11812181,17701458:171908 +k1,20602:13838758,17701458:171908 +k1,20602:14820035,17701458:171907 +k1,20602:17614694,17701458:171908 +k1,20602:19970917,17701458:171908 +k1,20602:21161910,17701458:171908 +k1,20602:24341265,17701458:171908 +k1,20602:25704618,17701458:171908 +k1,20602:29784438,17701458:171908 +k1,20602:31966991,17701458:171908 +k1,20602:32583029,17701458:0 +) +(1,20603:6630773,18566538:25952256,505283,126483 +k1,20602:8164416,18566538:207850 +k1,20602:9363835,18566538:207859 +k1,20602:11426363,18566538:207859 +k1,20602:12443592,18566538:207859 +k1,20602:14871811,18566538:207859 +k1,20602:16944169,18566538:207859 +k1,20602:20751265,18566538:207859 +k1,20602:23442283,18566538:207859 +k1,20602:25044093,18566538:207859 +k1,20602:26979481,18566538:207859 +k1,20602:30494942,18566538:207859 +k1,20602:31835263,18566538:207859 +k1,20602:32583029,18566538:0 +) +(1,20603:6630773,19431618:25952256,513147,134348 +k1,20602:8295902,19431618:225303 +k1,20602:9207368,19431618:225304 +k1,20602:11726431,19431618:225303 +k1,20602:13887668,19431618:225303 +k1,20602:14874499,19431618:225303 +k1,20602:15870506,19431618:225304 +k1,20602:19122262,19431618:225303 +k1,20602:21741595,19431618:225303 +k1,20602:22594734,19431618:225304 +k1,20602:23175897,19431618:225303 +k1,20602:24973409,19431618:225303 +k1,20602:27053381,19431618:225303 +k1,20602:28088055,19431618:225304 +k1,20602:31075701,19431618:225303 +k1,20602:32583029,19431618:0 +) +(1,20603:6630773,20296698:25952256,505283,134348 +k1,20602:7902226,20296698:199284 +k1,20602:9829039,20296698:199284 +k1,20602:12435461,20296698:199285 +k1,20602:13826190,20296698:199284 +k1,20602:17333076,20296698:199284 +k1,20602:19716675,20296698:199284 +k1,20602:20602121,20296698:199284 +k1,20602:22314631,20296698:199284 +k1,20602:23275443,20296698:199284 +k1,20602:26054880,20296698:199285 +k1,20602:29256367,20296698:199284 +k1,20602:30221767,20296698:199284 +k1,20602:32583029,20296698:0 +) +(1,20603:6630773,21161778:25952256,505283,134348 +k1,20602:7766418,21161778:144085 +k1,20602:10974312,21161778:144086 +k1,20602:11804559,21161778:144085 +k1,20602:14242405,21161778:144086 +k1,20602:16496094,21161778:144085 +k1,20602:17836867,21161778:144086 +k1,20602:19488280,21161778:144085 +k1,20602:21162632,21161778:144086 +k1,20602:21958145,21161778:144085 +k1,20602:22849997,21161778:144086 +k1,20602:26191584,21161778:144085 +k1,20602:27021832,21161778:144086 +k1,20602:29193601,21161778:144085 +k1,20602:29953725,21161778:144086 +k1,20602:32583029,21161778:0 +) +(1,20603:6630773,22026858:25952256,505283,11795 +g1,20602:8223953,22026858 +g1,20602:10433827,22026858 +g1,20602:13268259,22026858 +g1,20602:14887653,22026858 +g1,20602:16278327,22026858 +k1,20603:32583029,22026858:14935655 +g1,20603:32583029,22026858 +) +v1,20605:6630773,22711713:0,393216,0 +(1,20612:6630773,23835293:25952256,1516796,196608 +g1,20612:6630773,23835293 +g1,20612:6630773,23835293 +g1,20612:6434165,23835293 +(1,20612:6434165,23835293:0,1516796,196608 +r1,20629:32779637,23835293:26345472,1713404,196608 +k1,20612:6434165,23835293:-26345472 +) +(1,20612:6434165,23835293:26345472,1516796,196608 +[1,20612:6630773,23835293:25952256,1320188,0 +(1,20607:6630773,22939544:25952256,424439,86428 +(1,20606:6630773,22939544:0,0,0 +g1,20606:6630773,22939544 +g1,20606:6630773,22939544 +g1,20606:6303093,22939544 +(1,20606:6303093,22939544:0,0,0 +) +g1,20606:6630773,22939544 +) +k1,20607:6630773,22939544:0 +g1,20607:14929623,22939544 +g1,20607:15593531,22939544 +h1,20607:16921347,22939544:0,0,0 +k1,20607:32583029,22939544:15661682 +g1,20607:32583029,22939544 +) +(1,20611:6630773,23755471:25952256,424439,79822 +(1,20609:6630773,23755471:0,0,0 +g1,20609:6630773,23755471 +g1,20609:6630773,23755471 +g1,20609:6303093,23755471 +(1,20609:6303093,23755471:0,0,0 +) +g1,20609:6630773,23755471 +) +g1,20611:7626635,23755471 +g1,20611:8954451,23755471 +g1,20611:12273990,23755471 +g1,20611:15593529,23755471 +g1,20611:18913068,23755471 +g1,20611:22232607,23755471 +h1,20611:25220192,23755471:0,0,0 +k1,20611:32583029,23755471:7362837 +g1,20611:32583029,23755471 +) +] +) +g1,20612:32583029,23835293 +g1,20612:6630773,23835293 +g1,20612:6630773,23835293 +g1,20612:32583029,23835293 +g1,20612:32583029,23835293 +) +h1,20612:6630773,24031901:0,0,0 +(1,20617:6630773,24896981:25952256,505283,134348 +h1,20615:6630773,24896981:983040,0,0 +k1,20615:8340225,24896981:256519 +k1,20615:9128241,24896981:256519 +k1,20615:10670576,24896981:256519 +k1,20615:14136392,24896981:256518 +k1,20615:15044339,24896981:256519 +k1,20615:18559963,24896981:256519 +k1,20615:20100988,24896981:256519 +k1,20615:22908168,24896981:256519 +k1,20615:24268969,24896981:256519 +k1,20615:25901088,24896981:256518 +k1,20615:29718178,24896981:256519 +k1,20615:30330557,24896981:256519 +k1,20615:32583029,24896981:0 +) +(1,20617:6630773,25762061:25952256,513147,134348 +k1,20615:7793885,25762061:228569 +k1,20615:8681746,25762061:228569 +k1,20615:11445249,25762061:228570 +k1,20615:12865263,25762061:228569 +k1,20615:14560528,25762061:228569 +k1,20615:17141184,25762061:228569 +k1,20615:18985872,25762061:228570 +k1,20615:21566528,25762061:228569 +k1,20615:22899379,25762061:228569 +k1,20615:23875714,25762061:228569 +k1,20615:27780854,25762061:228570 +k1,20615:28770951,25762061:228569 +k1,20615:31391584,25762061:228569 +k1,20615:32583029,25762061:0 +) +(1,20617:6630773,26627141:25952256,513147,126483 +k1,20615:9579827,26627141:227344 +k1,20615:14000821,26627141:227345 +k1,20615:17054077,26627141:227344 +k1,20615:18849043,26627141:227345 +k1,20615:22269301,26627141:227344 +k1,20615:23148073,26627141:227344 +k1,20615:26568332,26627141:227345 +k1,20615:28626752,26627141:227344 +k1,20615:29470135,26627141:227345 +k1,20615:31313597,26627141:227344 +k1,20617:32583029,26627141:0 +) +(1,20617:6630773,27492221:25952256,513147,134348 +k1,20615:9425064,27492221:251494 +k1,20615:12657136,27492221:251495 +k1,20615:15670973,27492221:251494 +k1,20615:17638855,27492221:251494 +k1,20615:18549642,27492221:251495 +k1,20615:20417254,27492221:251494 +k1,20615:23907537,27492221:251494 +k1,20615:24628925,27492221:251495 +k1,20615:25411916,27492221:251494 +k1,20615:28872708,27492221:251494 +k1,20615:29775631,27492221:251495 +k1,20615:31379788,27492221:251494 +k1,20615:32583029,27492221:0 +) +(1,20617:6630773,28357301:25952256,505283,134348 +g1,20615:8097468,28357301 +g1,20615:10800828,28357301 +g1,20615:12698095,28357301 +g1,20615:15755349,28357301 +g1,20615:16973663,28357301 +g1,20615:19119311,28357301 +g1,20615:20831766,28357301 +g1,20615:21647033,28357301 +g1,20615:25875415,28357301 +k1,20617:32583029,28357301:6707614 +g1,20617:32583029,28357301 +) +(1,20618:6630773,30474119:25952256,555811,12975 +(1,20618:6630773,30474119:2450326,534184,12975 +g1,20618:6630773,30474119 +g1,20618:9081099,30474119 +) +g1,20618:13486495,30474119 +g1,20618:18295593,30474119 +k1,20618:32583029,30474119:12101679 +g1,20618:32583029,30474119 +) +(1,20621:6630773,31732415:25952256,505283,122846 +k1,20620:10873606,31732415:550535 +k1,20620:13040259,31732415:550535 +k1,20620:15493303,31732415:550534 +(1,20620:15493303,31732415:0,452978,115847 +r1,20629:23940940,31732415:8447637,568825,115847 +k1,20620:15493303,31732415:-8447637 +) +(1,20620:15493303,31732415:8447637,452978,115847 +k1,20620:15493303,31732415:3277 +h1,20620:23937663,31732415:0,411205,112570 +) +k1,20620:24665145,31732415:550535 +(1,20620:24665145,31732415:0,452978,122846 +r1,20629:32409359,31732415:7744214,575824,122846 +k1,20620:24665145,31732415:-7744214 +) +(1,20620:24665145,31732415:7744214,452978,122846 +k1,20620:24665145,31732415:3277 +h1,20620:32406082,31732415:0,411205,112570 +) +k1,20621:32583029,31732415:0 +) +(1,20621:6630773,32597495:25952256,505283,122846 +(1,20620:6630773,32597495:0,452978,122846 +r1,20629:14726699,32597495:8095926,575824,122846 +k1,20620:6630773,32597495:-8095926 +) +(1,20620:6630773,32597495:8095926,452978,122846 +k1,20620:6630773,32597495:3277 +h1,20620:14723422,32597495:0,411205,112570 +) +k1,20620:15528453,32597495:628084 +(1,20620:15528453,32597495:0,452978,122846 +r1,20629:23624379,32597495:8095926,575824,122846 +k1,20620:15528453,32597495:-8095926 +) +(1,20620:15528453,32597495:8095926,452978,122846 +k1,20620:15528453,32597495:3277 +h1,20620:23621102,32597495:0,411205,112570 +) +k1,20620:24426133,32597495:628084 +(1,20620:24426133,32597495:0,452978,115847 +r1,20629:30763500,32597495:6337367,568825,115847 +k1,20620:24426133,32597495:-6337367 +) +(1,20620:24426133,32597495:6337367,452978,115847 +k1,20620:24426133,32597495:3277 +h1,20620:30760223,32597495:0,411205,112570 +) +k1,20620:31391584,32597495:628084 +k1,20621:32583029,32597495:0 +) +(1,20621:6630773,33462575:25952256,505283,134348 +(1,20620:6630773,33462575:0,452978,115847 +r1,20629:14374987,33462575:7744214,568825,115847 +k1,20620:6630773,33462575:-7744214 +) +(1,20620:6630773,33462575:7744214,452978,115847 +k1,20620:6630773,33462575:3277 +h1,20620:14371710,33462575:0,411205,112570 +) +k1,20620:14728318,33462575:179661 +k1,20620:16187897,33462575:179661 +k1,20620:16723418,33462575:179661 +k1,20620:19314149,33462575:179661 +k1,20620:23064210,33462575:179660 +k1,20620:25903322,33462575:179661 +k1,20620:28718186,33462575:179661 +k1,20620:30070286,33462575:179661 +k1,20620:30932832,33462575:179661 +k1,20620:32583029,33462575:0 +) +(1,20621:6630773,34327655:25952256,505283,134348 +k1,20620:9458379,34327655:292673 +k1,20620:11308842,34327655:292672 +k1,20620:12593075,34327655:292673 +k1,20620:14398974,34327655:292673 +k1,20620:16085598,34327655:292673 +(1,20620:16085598,34327655:0,452978,115847 +r1,20629:18554135,34327655:2468537,568825,115847 +k1,20620:16085598,34327655:-2468537 +) +(1,20620:16085598,34327655:2468537,452978,115847 +k1,20620:16085598,34327655:3277 +h1,20620:18550858,34327655:0,411205,112570 +) +k1,20620:19020477,34327655:292672 +(1,20620:19020477,34327655:0,452978,115847 +r1,20629:20433878,34327655:1413401,568825,115847 +k1,20620:19020477,34327655:-1413401 +) +(1,20620:19020477,34327655:1413401,452978,115847 +k1,20620:19020477,34327655:3277 +h1,20620:20430601,34327655:0,411205,112570 +) +k1,20620:20726551,34327655:292673 +k1,20620:22210669,34327655:292673 +(1,20620:22210669,34327655:0,452978,115847 +r1,20629:25030918,34327655:2820249,568825,115847 +k1,20620:22210669,34327655:-2820249 +) +(1,20620:22210669,34327655:2820249,452978,115847 +k1,20620:22210669,34327655:3277 +h1,20620:25027641,34327655:0,411205,112570 +) +k1,20620:25323590,34327655:292672 +k1,20620:27179297,34327655:292673 +k1,20620:27959464,34327655:292579 +k1,20620:32583029,34327655:0 +) +(1,20621:6630773,35192735:25952256,513147,115847 +k1,20620:7756855,35192735:191539 +k1,20620:8615550,35192735:191539 +(1,20620:8615550,35192735:0,459977,115847 +r1,20629:10028951,35192735:1413401,575824,115847 +k1,20620:8615550,35192735:-1413401 +) +(1,20620:8615550,35192735:1413401,459977,115847 +k1,20620:8615550,35192735:3277 +h1,20620:10025674,35192735:0,411205,112570 +) +k1,20620:10220490,35192735:191539 +k1,20620:12314539,35192735:191539 +k1,20620:13037575,35192735:191539 +k1,20620:14514930,35192735:191539 +k1,20620:17664109,35192735:191539 +k1,20620:19672306,35192735:191539 +k1,20620:21766355,35192735:191539 +k1,20620:23104119,35192735:191539 +(1,20620:23104119,35192735:0,452978,115847 +r1,20629:31200045,35192735:8095926,568825,115847 +k1,20620:23104119,35192735:-8095926 +) +(1,20620:23104119,35192735:8095926,452978,115847 +k1,20620:23104119,35192735:3277 +h1,20620:31196768,35192735:0,411205,112570 +) +k1,20620:31391584,35192735:191539 +k1,20621:32583029,35192735:0 +) +(1,20621:6630773,36057815:25952256,513147,126483 +(1,20620:6630773,36057815:0,452978,115847 +r1,20629:14726699,36057815:8095926,568825,115847 +k1,20620:6630773,36057815:-8095926 +) +(1,20620:6630773,36057815:8095926,452978,115847 +k1,20620:6630773,36057815:3277 +h1,20620:14723422,36057815:0,411205,112570 +) +k1,20620:14962664,36057815:235965 +k1,20620:16190189,36057815:235965 +k1,20620:18280823,36057815:235965 +k1,20620:19326158,36057815:235965 +k1,20620:20581208,36057815:235965 +k1,20620:21909659,36057815:235966 +k1,20620:22804916,36057815:235965 +k1,20620:26771190,36057815:235965 +k1,20620:29527670,36057815:235965 +k1,20620:30422927,36057815:235965 +k1,20620:31923737,36057815:235965 +k1,20620:32583029,36057815:0 +) +(1,20621:6630773,36922895:25952256,513147,134348 +k1,20620:8439458,36922895:192567 +k1,20620:11621776,36922895:192566 +k1,20620:14049776,36922895:192567 +k1,20620:14893770,36922895:192566 +k1,20620:16682794,36922895:192567 +k1,20620:18153967,36922895:192566 +k1,20620:21026957,36922895:192567 +k1,20620:23105650,36922895:192567 +k1,20620:25969463,36922895:192566 +k1,20620:29524682,36922895:192567 +k1,20620:30400133,36922895:192566 +k1,20620:31540351,36922895:192567 +k1,20621:32583029,36922895:0 +) +(1,20621:6630773,37787975:25952256,513147,134348 +g1,20620:8220676,37787975 +g1,20620:10319138,37787975 +g1,20620:13498944,37787975 +g1,20620:16460516,37787975 +g1,20620:18376133,37787975 +g1,20620:19234654,37787975 +g1,20620:21050001,37787975 +k1,20621:32583029,37787975:8294239 +g1,20621:32583029,37787975 +) +(1,20622:6630773,39904793:25952256,555811,12975 +(1,20622:6630773,39904793:2450326,534184,12975 +g1,20622:6630773,39904793 +g1,20622:9081099,39904793 +) +g1,20622:12304226,39904793 +g1,20622:17113324,39904793 +k1,20622:32583029,39904793:13283948 +g1,20622:32583029,39904793 +) +(1,20625:6630773,41163089:25952256,505283,122846 +k1,20624:8843077,41163089:474289 +k1,20624:11219876,41163089:474289 +(1,20624:11219876,41163089:0,452978,115847 +r1,20629:18964090,41163089:7744214,568825,115847 +k1,20624:11219876,41163089:-7744214 +) +(1,20624:11219876,41163089:7744214,452978,115847 +k1,20624:11219876,41163089:3277 +h1,20624:18960813,41163089:0,411205,112570 +) +k1,20624:19612048,41163089:474288 +(1,20624:19612048,41163089:0,452978,115847 +r1,20629:25597703,41163089:5985655,568825,115847 +k1,20624:19612048,41163089:-5985655 +) +(1,20624:19612048,41163089:5985655,452978,115847 +k1,20624:19612048,41163089:3277 +h1,20624:25594426,41163089:0,411205,112570 +) +k1,20624:26245662,41163089:474289 +(1,20624:26245662,41163089:0,452978,122846 +r1,20629:32583029,41163089:6337367,575824,122846 +k1,20624:26245662,41163089:-6337367 +) +(1,20624:26245662,41163089:6337367,452978,122846 +k1,20624:26245662,41163089:3277 +h1,20624:32579752,41163089:0,411205,112570 +) +k1,20624:32583029,41163089:0 +) +(1,20625:6630773,42028169:25952256,513147,134348 +k1,20624:8345326,42028169:722993 +k1,20624:10581545,42028169:722993 +k1,20624:12698489,42028169:722993 +k1,20624:16868020,42028169:722993 +k1,20624:18980377,42028169:722994 +k1,20624:21741540,42028169:722993 +k1,20624:23150695,42028169:722993 +k1,20624:26271650,42028169:722993 +k1,20624:28811301,42028169:722993 +k1,20624:31436804,42028169:722993 +k1,20625:32583029,42028169:0 +) +(1,20625:6630773,42893249:25952256,513147,126483 +(1,20624:6630773,42893249:0,452978,115847 +r1,20629:14726699,42893249:8095926,568825,115847 +k1,20624:6630773,42893249:-8095926 +) +(1,20624:6630773,42893249:8095926,452978,115847 +k1,20624:6630773,42893249:3277 +h1,20624:14723422,42893249:0,411205,112570 +) +k1,20624:15184053,42893249:457354 +k1,20624:16832852,42893249:457354 +(1,20624:16832852,42893249:0,452978,115847 +r1,20629:23873643,42893249:7040791,568825,115847 +k1,20624:16832852,42893249:-7040791 +) +(1,20624:16832852,42893249:7040791,452978,115847 +k1,20624:16832852,42893249:3277 +h1,20624:23870366,42893249:0,411205,112570 +) +k1,20624:24330997,42893249:457354 +k1,20624:27218426,42893249:457354 +k1,20624:30201538,42893249:457354 +k1,20624:31923737,42893249:457354 +k1,20624:32583029,42893249:0 +) +(1,20625:6630773,43758329:25952256,505283,126483 +g1,20624:9191264,43758329 +g1,20624:11245162,43758329 +g1,20624:12253761,43758329 +k1,20625:32583030,43758329:17635084 +g1,20625:32583030,43758329 +) +] +(1,20629:32583029,45706769:0,0,0 +g1,20629:32583029,45706769 +) +) +] +(1,20629:6630773,47279633:25952256,0,0 +h1,20629:6630773,47279633:25952256,0,0 ) ] -[1,20674:3078558,4812305:0,0,0 -(1,20674:3078558,2439708:0,1703936,0 -g1,20674:29030814,2439708 -g1,20674:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,20674:36151628,1915420:16384,1179648,0 +(1,20629:4262630,4025873:0,0,0 +[1,20629:-473656,4025873:0,0,0 +(1,20629:-473656,-710413:0,0,0 +(1,20629:-473656,-710413:0,0,0 +g1,20629:-473656,-710413 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +g1,20629:-473656,-710413 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,20674:37855564,2439708:1179648,16384,0 -) -) -k1,20674:3078556,2439708:-34777008 -) ] -[1,20674:3078558,4812305:0,0,0 -(1,20674:3078558,49800853:0,16384,2228224 -k1,20674:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,20674:2537886,49800853:1179648,16384,0 -) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,20674:3078558,51504789:16384,1179648,0 -) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 -) -] -) -) -) -] -[1,20674:3078558,4812305:0,0,0 -(1,20674:3078558,49800853:0,16384,2228224 -g1,20674:29030814,49800853 -g1,20674:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,20674:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] -) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,20674:37855564,49800853:1179648,16384,0 -) -) -k1,20674:3078556,49800853:-34777008 -) -] -g1,20674:6630773,4812305 -g1,20674:6630773,4812305 -g1,20674:10600288,4812305 -g1,20674:12009967,4812305 -g1,20674:14653689,4812305 -g1,20674:16328789,4812305 -k1,20674:31387652,4812305:15058863 -) -) -] -[1,20674:6630773,45706769:25952256,40108032,0 -(1,20674:6630773,45706769:25952256,40108032,0 -(1,20674:6630773,45706769:0,0,0 -g1,20674:6630773,45706769 -) -[1,20674:6630773,45706769:25952256,40108032,0 -v1,20628:6630773,6254097:0,393216,0 -(1,20628:6630773,7895258:25952256,2034377,196608 -g1,20628:6630773,7895258 -g1,20628:6630773,7895258 -g1,20628:6434165,7895258 -(1,20628:6434165,7895258:0,2034377,196608 -r1,20674:32779637,7895258:26345472,2230985,196608 -k1,20628:6434165,7895258:-26345472 -) -(1,20628:6434165,7895258:26345472,2034377,196608 -[1,20628:6630773,7895258:25952256,1837769,0 -(1,20624:6630773,6461715:25952256,404226,76021 -h1,20624:6630773,6461715:0,0,0 -g1,20624:6946919,6461715 -g1,20624:7263065,6461715 -g1,20624:7579211,6461715 -g1,20624:7895357,6461715 -g1,20624:8211503,6461715 -g1,20624:8527649,6461715 -g1,20624:8843795,6461715 -g1,20624:9159941,6461715 -g1,20624:9476087,6461715 -g1,20624:9792233,6461715 -g1,20624:10108379,6461715 -g1,20624:10424525,6461715 -g1,20624:10740671,6461715 -g1,20624:11056817,6461715 -g1,20624:11372963,6461715 -g1,20624:11689109,6461715 -g1,20624:12005255,6461715 -g1,20624:12321401,6461715 -g1,20624:12637547,6461715 -g1,20624:12953693,6461715 -g1,20624:13269839,6461715 -g1,20624:14850568,6461715 -g1,20624:15482860,6461715 -g1,20624:17379734,6461715 -h1,20624:20857337,6461715:0,0,0 -k1,20624:32583029,6461715:11725692 -g1,20624:32583029,6461715 -) -(1,20625:6630773,7127893:25952256,410518,107478 -h1,20625:6630773,7127893:0,0,0 -g1,20625:7263065,7127893 -g1,20625:7895357,7127893 -g1,20625:12637542,7127893 -g1,20625:13269834,7127893 -g1,20625:16115146,7127893 -g1,20625:17695875,7127893 -g1,20625:18328167,7127893 -g1,20625:21489624,7127893 -g1,20625:23070353,7127893 -g1,20625:23702645,7127893 -k1,20625:23702645,7127893:0 -h1,20625:25599519,7127893:0,0,0 -k1,20625:32583029,7127893:6983510 -g1,20625:32583029,7127893 -) -(1,20626:6630773,7794071:25952256,404226,101187 -h1,20626:6630773,7794071:0,0,0 -g1,20626:6946919,7794071 -g1,20626:7263065,7794071 -g1,20626:7579211,7794071 -g1,20626:7895357,7794071 -g1,20626:8211503,7794071 -g1,20626:8527649,7794071 -g1,20626:8843795,7794071 -g1,20626:9159941,7794071 -g1,20626:9476087,7794071 -g1,20626:9792233,7794071 -g1,20626:10108379,7794071 -g1,20626:10424525,7794071 -g1,20626:10740671,7794071 -g1,20626:13585982,7794071 -g1,20626:14218274,7794071 -g1,20626:15482857,7794071 -g1,20626:17379731,7794071 -g1,20626:18012023,7794071 -g1,20626:19908898,7794071 -g1,20626:20541190,7794071 -g1,20626:22754211,7794071 -g1,20626:23386503,7794071 -h1,20626:27180251,7794071:0,0,0 -k1,20626:32583029,7794071:5402778 -g1,20626:32583029,7794071 -) -] -) -g1,20628:32583029,7895258 -g1,20628:6630773,7895258 -g1,20628:6630773,7895258 -g1,20628:32583029,7895258 -g1,20628:32583029,7895258 -) -h1,20628:6630773,8091866:0,0,0 -(1,20631:6630773,17765356:25952256,9083666,0 -k1,20631:10523651,17765356:3892878 -h1,20630:10523651,17765356:0,0,0 -(1,20630:10523651,17765356:18166500,9083666,0 -(1,20630:10523651,17765356:18167376,9083688,0 -(1,20630:10523651,17765356:18167376,9083688,0 -(1,20630:10523651,17765356:0,9083688,0 -(1,20630:10523651,17765356:0,14208860,0 -(1,20630:10523651,17765356:28417720,14208860,0 -) -k1,20630:10523651,17765356:-28417720 -) -) -g1,20630:28691027,17765356 -) -) -) -g1,20631:28690151,17765356 -k1,20631:32583029,17765356:3892878 -) -(1,20638:6630773,18606844:25952256,505283,134348 -h1,20637:6630773,18606844:983040,0,0 -k1,20637:9231062,18606844:575227 -k1,20637:10576993,18606844:575228 -k1,20637:14457201,18606844:575227 -k1,20637:16483396,18606844:575228 -k1,20637:18794016,18606844:575227 -k1,20637:20139947,18606844:575228 -k1,20637:23688542,18606844:575227 -k1,20637:26769867,18606844:575228 -k1,20637:28213446,18606844:575227 -k1,20637:30263889,18606844:575228 -k1,20637:31490544,18606844:575227 -k1,20638:32583029,18606844:0 -) -(1,20638:6630773,19448332:25952256,513147,122846 -(1,20637:6630773,19448332:0,452978,115847 -r1,20674:11561293,19448332:4930520,568825,115847 -k1,20637:6630773,19448332:-4930520 -) -(1,20637:6630773,19448332:4930520,452978,115847 -k1,20637:6630773,19448332:3277 -h1,20637:11558016,19448332:0,411205,112570 -) -k1,20637:11772553,19448332:211260 -k1,20637:14310996,19448332:211260 -k1,20637:15189412,19448332:211260 -(1,20637:15189412,19448332:0,452978,115847 -r1,20674:18713084,19448332:3523672,568825,115847 -k1,20637:15189412,19448332:-3523672 -) -(1,20637:15189412,19448332:3523672,452978,115847 -k1,20637:15189412,19448332:3277 -h1,20637:18709807,19448332:0,411205,112570 -) -k1,20637:19098014,19448332:211260 -(1,20637:19098014,19448332:0,452978,122846 -r1,20674:24028534,19448332:4930520,575824,122846 -k1,20637:19098014,19448332:-4930520 -) -(1,20637:19098014,19448332:4930520,452978,122846 -k1,20637:19098014,19448332:3277 -h1,20637:24025257,19448332:0,411205,112570 -) -k1,20637:24239793,19448332:211259 -k1,20637:26778236,19448332:211260 -k1,20637:27656652,19448332:211260 -(1,20637:27656652,19448332:0,452978,122846 -r1,20674:31180324,19448332:3523672,575824,122846 -k1,20637:27656652,19448332:-3523672 -) -(1,20637:27656652,19448332:3523672,452978,122846 -k1,20637:27656652,19448332:3277 -h1,20637:31177047,19448332:0,411205,112570 -) -k1,20637:31391584,19448332:211260 -k1,20637:32583029,19448332:0 -) -(1,20638:6630773,20289820:25952256,513147,134348 -g1,20637:9070678,20289820 -g1,20637:10288992,20289820 -(1,20637:10288992,20289820:0,414482,115847 -r1,20674:11702393,20289820:1413401,530329,115847 -k1,20637:10288992,20289820:-1413401 -) -(1,20637:10288992,20289820:1413401,414482,115847 -k1,20637:10288992,20289820:3277 -h1,20637:11699116,20289820:0,411205,112570 -) -g1,20637:11901622,20289820 -g1,20637:12760143,20289820 -g1,20637:13978457,20289820 -(1,20637:13978457,20289820:0,414482,115847 -r1,20674:14336723,20289820:358266,530329,115847 -k1,20637:13978457,20289820:-358266 -) -(1,20637:13978457,20289820:358266,414482,115847 -k1,20637:13978457,20289820:3277 -h1,20637:14333446,20289820:0,411205,112570 -) -g1,20637:14535952,20289820 -k1,20638:32583029,20289820:16301198 -g1,20638:32583029,20289820 -) -v1,20640:6630773,21480286:0,393216,0 -(1,20647:6630773,26454102:25952256,5367032,196608 -g1,20647:6630773,26454102 -g1,20647:6630773,26454102 -g1,20647:6434165,26454102 -(1,20647:6434165,26454102:0,5367032,196608 -r1,20674:32779637,26454102:26345472,5563640,196608 -k1,20647:6434165,26454102:-26345472 -) -(1,20647:6434165,26454102:26345472,5367032,196608 -[1,20647:6630773,26454102:25952256,5170424,0 -(1,20642:6630773,21694196:25952256,410518,107478 -(1,20641:6630773,21694196:0,0,0 -g1,20641:6630773,21694196 -g1,20641:6630773,21694196 -g1,20641:6303093,21694196 -(1,20641:6303093,21694196:0,0,0 -) -g1,20641:6630773,21694196 -) -g1,20642:7263065,21694196 -g1,20642:7895357,21694196 -g1,20642:13902125,21694196 -g1,20642:14534417,21694196 -g1,20642:17379729,21694196 -g1,20642:18960458,21694196 -g1,20642:19592750,21694196 -k1,20642:19592750,21694196:0 -h1,20642:22438061,21694196:0,0,0 -k1,20642:32583029,21694196:10144968 -g1,20642:32583029,21694196 -) -(1,20643:6630773,22360374:25952256,404226,107478 -h1,20643:6630773,22360374:0,0,0 -g1,20643:6946919,22360374 -g1,20643:7263065,22360374 -g1,20643:7579211,22360374 -g1,20643:7895357,22360374 -g1,20643:8211503,22360374 -g1,20643:8527649,22360374 -g1,20643:8843795,22360374 -g1,20643:9159941,22360374 -g1,20643:9476087,22360374 -g1,20643:9792233,22360374 -g1,20643:10108379,22360374 -g1,20643:10424525,22360374 -g1,20643:10740671,22360374 -g1,20643:11056817,22360374 -g1,20643:11372963,22360374 -g1,20643:11689109,22360374 -g1,20643:12005255,22360374 -g1,20643:13585984,22360374 -g1,20643:14218276,22360374 -g1,20643:17695879,22360374 -g1,20643:19276608,22360374 -g1,20643:19908900,22360374 -g1,20643:20857338,22360374 -g1,20643:21489630,22360374 -g1,20643:23702651,22360374 -g1,20643:24334943,22360374 -h1,20643:27496400,22360374:0,0,0 -k1,20643:32583029,22360374:5086629 -g1,20643:32583029,22360374 -) -(1,20647:6630773,23681912:25952256,410518,107478 -g1,20647:7579210,23681912 -g1,20647:10424521,23681912 -g1,20647:12321395,23681912 -g1,20647:14534415,23681912 -g1,20647:17695872,23681912 -g1,20647:18960455,23681912 -g1,20647:20857329,23681912 -g1,20647:22121912,23681912 -g1,20647:25599515,23681912 -g1,20647:26547952,23681912 -g1,20647:29077118,23681912 -k1,20647:32583029,23681912:1609037 -g1,20647:32583029,23681912 -) -(1,20647:6630773,24348090:25952256,410518,6290 -g1,20647:7579210,24348090 -g1,20647:8211502,24348090 -g1,20647:10424522,24348090 -g1,20647:11689105,24348090 -g1,20647:15482853,24348090 -k1,20647:32583029,24348090:14571011 -g1,20647:32583029,24348090 -) -(1,20647:6630773,25014268:25952256,404226,107478 -g1,20647:7579210,25014268 -g1,20647:9159939,25014268 -g1,20647:11689105,25014268 -g1,20647:12637542,25014268 -g1,20647:15798999,25014268 -g1,20647:17379728,25014268 -g1,20647:19276602,25014268 -g1,20647:19908894,25014268 -k1,20647:32583029,25014268:10777261 -g1,20647:32583029,25014268 -) -(1,20647:6630773,25680446:25952256,410518,107478 -g1,20647:7579210,25680446 -g1,20647:9159939,25680446 -g1,20647:21489620,25680446 -g1,20647:22438057,25680446 -g1,20647:23702640,25680446 -g1,20647:25599514,25680446 -g1,20647:27180243,25680446 -g1,20647:29709409,25680446 -k1,20647:32583029,25680446:1925183 -g1,20647:32583029,25680446 -) -(1,20647:6630773,26346624:25952256,404226,107478 -g1,20647:7579210,26346624 -k1,20647:32583029,26346624:21842362 -g1,20647:32583029,26346624 -) -] -) -g1,20647:32583029,26454102 -g1,20647:6630773,26454102 -g1,20647:6630773,26454102 -g1,20647:32583029,26454102 -g1,20647:32583029,26454102 -) -h1,20647:6630773,26650710:0,0,0 -(1,20650:6630773,36324200:25952256,9083666,0 -k1,20650:10523651,36324200:3892878 -h1,20649:10523651,36324200:0,0,0 -(1,20649:10523651,36324200:18166500,9083666,0 -(1,20649:10523651,36324200:18167376,9083688,0 -(1,20649:10523651,36324200:18167376,9083688,0 -(1,20649:10523651,36324200:0,9083688,0 -(1,20649:10523651,36324200:0,14208860,0 -(1,20649:10523651,36324200:28417720,14208860,0 -) -k1,20649:10523651,36324200:-28417720 -) -) -g1,20649:28691027,36324200 -) -) -) -g1,20650:28690151,36324200 -k1,20650:32583029,36324200:3892878 -) -(1,20657:6630773,37165688:25952256,513147,126483 -h1,20656:6630773,37165688:983040,0,0 -k1,20656:8665466,37165688:233764 -k1,20656:9918316,37165688:233765 -k1,20656:11558483,37165688:233764 -k1,20656:14923558,37165688:233765 -k1,20656:16434619,37165688:233764 -k1,20656:19503471,37165688:233765 -k1,20656:20605587,37165688:233764 -k1,20656:21654620,37165688:233765 -k1,20656:22790124,37165688:233729 -k1,20656:25356315,37165688:233765 -k1,20656:26867376,37165688:233764 -k1,20656:28495092,37165688:233765 -k1,20656:30617604,37165688:233764 -k1,20656:32583029,37165688:0 -) -(1,20657:6630773,38007176:25952256,513147,126483 -k1,20656:8278397,38007176:253673 -(1,20656:8278397,38007176:0,459977,115847 -r1,20674:12505493,38007176:4227096,575824,115847 -k1,20656:8278397,38007176:-4227096 -) -(1,20656:8278397,38007176:4227096,459977,115847 -k1,20656:8278397,38007176:3277 -h1,20656:12502216,38007176:0,411205,112570 -) -k1,20656:12759166,38007176:253673 -k1,20656:13664267,38007176:253673 -k1,20656:15393155,38007176:253673 -k1,20656:18349534,38007176:253674 -k1,20656:20677421,38007176:253673 -k1,20656:21878745,38007176:253673 -k1,20656:23183561,38007176:253618 -k1,20656:24628679,38007176:253673 -k1,20656:25995154,38007176:253674 -k1,20656:27629671,38007176:253673 -k1,20656:29160641,38007176:253673 -k1,20656:30837101,38007176:253673 -k1,20656:31931601,38007176:253673 -k1,20656:32583029,38007176:0 -) -(1,20657:6630773,38848664:25952256,513147,126483 -k1,20656:9569552,38848664:269498 -k1,20656:10858136,38848664:269499 -k1,20656:13460060,38848664:269498 -k1,20656:14388851,38848664:269499 -k1,20656:18730101,38848664:269498 -k1,20656:19947251,38848664:269499 -k1,20656:22979092,38848664:269498 -k1,20656:27566758,38848664:269499 -k1,20656:29394047,38848664:269498 -k1,20656:32583029,38848664:0 -) -(1,20657:6630773,39690152:25952256,505283,138281 -k1,20656:8094646,39690152:272428 -k1,20656:10737511,39690152:272428 -k1,20656:12029024,39690152:272428 -k1,20656:14312752,39690152:272428 -$1,20656:14519846,39690152 -$1,20656:15071659,39690152 -k1,20656:15344087,39690152:272428 -k1,20656:18610855,39690152:272428 -k1,20656:19534710,39690152:272427 -k1,20656:22848664,39690152:272428 -k1,20656:24678883,39690152:272428 -k1,20656:27148078,39690152:272428 -k1,20656:28611951,39690152:272428 -k1,20656:29903464,39690152:272428 -k1,20656:31873274,39690152:272428 -$1,20656:32080368,39690152 -$1,20656:32583029,39690152 -k1,20657:32583029,39690152:0 -) -(1,20657:6630773,40531640:25952256,505283,126483 -g1,20656:9824342,40531640 -g1,20656:10674999,40531640 -g1,20656:13915754,40531640 -g1,20656:15672774,40531640 -k1,20657:32583029,40531640:13877904 -g1,20657:32583029,40531640 -) -v1,20661:6630773,41722106:0,393216,0 -(1,20674:6630773,45342926:25952256,4014036,196608 -g1,20674:6630773,45342926 -g1,20674:6630773,45342926 -g1,20674:6434165,45342926 -(1,20674:6434165,45342926:0,4014036,196608 -r1,20674:32779637,45342926:26345472,4210644,196608 -k1,20674:6434165,45342926:-26345472 -) -(1,20674:6434165,45342926:26345472,4014036,196608 -[1,20674:6630773,45342926:25952256,3817428,0 -(1,20663:6630773,41929724:25952256,404226,107478 -(1,20662:6630773,41929724:0,0,0 -g1,20662:6630773,41929724 -g1,20662:6630773,41929724 -g1,20662:6303093,41929724 -(1,20662:6303093,41929724:0,0,0 -) -g1,20662:6630773,41929724 -) -k1,20663:6630773,41929724:0 -g1,20663:13902124,41929724 -g1,20663:20225038,41929724 -g1,20663:25283369,41929724 -h1,20663:25599515,41929724:0,0,0 -k1,20663:32583029,41929724:6983514 -g1,20663:32583029,41929724 -) -(1,20664:6630773,42595902:25952256,404226,101187 -h1,20664:6630773,42595902:0,0,0 -g1,20664:6946919,42595902 -g1,20664:7263065,42595902 -g1,20664:11689104,42595902 -h1,20664:12005250,42595902:0,0,0 -k1,20664:32583030,42595902:20577780 -g1,20664:32583030,42595902 -) -(1,20665:6630773,43262080:25952256,410518,107478 -h1,20665:6630773,43262080:0,0,0 -g1,20665:6946919,43262080 -g1,20665:7263065,43262080 -g1,20665:15166708,43262080 -g1,20665:15799000,43262080 -g1,20665:22121914,43262080 -g1,20665:23702643,43262080 -g1,20665:24334935,43262080 -g1,20665:27812538,43262080 -h1,20665:28128684,43262080:0,0,0 -k1,20665:32583029,43262080:4454345 -g1,20665:32583029,43262080 -) -(1,20666:6630773,43928258:25952256,404226,82312 -h1,20666:6630773,43928258:0,0,0 -g1,20666:6946919,43928258 -g1,20666:7263065,43928258 -g1,20666:15482853,43928258 -g1,20666:16115145,43928258 -g1,20666:17695875,43928258 -g1,20666:18960458,43928258 -g1,20666:20541187,43928258 -k1,20666:20541187,43928258:0 -h1,20666:22121916,43928258:0,0,0 -k1,20666:32583029,43928258:10461113 -g1,20666:32583029,43928258 -) -(1,20667:6630773,44594436:25952256,404226,82312 -h1,20667:6630773,44594436:0,0,0 -g1,20667:6946919,44594436 -g1,20667:7263065,44594436 -g1,20667:7579211,44594436 -g1,20667:7895357,44594436 -g1,20667:8211503,44594436 -g1,20667:8527649,44594436 -g1,20667:8843795,44594436 -g1,20667:9159941,44594436 -g1,20667:9476087,44594436 -g1,20667:9792233,44594436 -g1,20667:10108379,44594436 -g1,20667:10424525,44594436 -g1,20667:10740671,44594436 -g1,20667:11056817,44594436 -g1,20667:11372963,44594436 -g1,20667:11689109,44594436 -g1,20667:12005255,44594436 -g1,20667:12321401,44594436 -g1,20667:12637547,44594436 -g1,20667:12953693,44594436 -g1,20667:13269839,44594436 -g1,20667:15482859,44594436 -g1,20667:16115151,44594436 -g1,20667:18328172,44594436 -g1,20667:19908901,44594436 -g1,20667:21489630,44594436 -k1,20667:21489630,44594436:0 -h1,20667:23070359,44594436:0,0,0 -k1,20667:32583029,44594436:9512670 -g1,20667:32583029,44594436 -) -(1,20668:6630773,45260614:25952256,404226,82312 -h1,20668:6630773,45260614:0,0,0 -g1,20668:6946919,45260614 -g1,20668:7263065,45260614 -g1,20668:7579211,45260614 -g1,20668:7895357,45260614 -g1,20668:8211503,45260614 -g1,20668:8527649,45260614 -g1,20668:8843795,45260614 -g1,20668:9159941,45260614 -g1,20668:9476087,45260614 -g1,20668:9792233,45260614 -g1,20668:10108379,45260614 -g1,20668:10424525,45260614 -g1,20668:10740671,45260614 -g1,20668:11056817,45260614 -g1,20668:11372963,45260614 -g1,20668:11689109,45260614 -g1,20668:12005255,45260614 -g1,20668:12321401,45260614 -g1,20668:12637547,45260614 -g1,20668:12953693,45260614 -g1,20668:13269839,45260614 -g1,20668:15482859,45260614 -g1,20668:16115151,45260614 -g1,20668:17695881,45260614 -k1,20668:17695881,45260614:0 -h1,20668:19276610,45260614:0,0,0 -k1,20668:32583029,45260614:13306419 -g1,20668:32583029,45260614 -) -] -) -g1,20674:32583029,45342926 -g1,20674:6630773,45342926 -g1,20674:6630773,45342926 -g1,20674:32583029,45342926 -g1,20674:32583029,45342926 -) -] -(1,20674:32583029,45706769:0,0,0 -g1,20674:32583029,45706769 -) -) -] -(1,20674:6630773,47279633:25952256,0,0 -h1,20674:6630773,47279633:25952256,0,0 -) -] -(1,20674:4262630,4025873:0,0,0 -[1,20674:-473656,4025873:0,0,0 -(1,20674:-473656,-710413:0,0,0 -(1,20674:-473656,-710413:0,0,0 -g1,20674:-473656,-710413 -) -g1,20674:-473656,-710413 -) -] -) -] -!19545 -}372 +!25652 +}350 +Input:3374:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3375:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3376:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3377:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3378:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3379:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3380:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3381:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!200 -{373 -[1,20718:4262630,47279633:28320399,43253760,0 -(1,20718:4262630,4025873:0,0,0 -[1,20718:-473656,4025873:0,0,0 -(1,20718:-473656,-710413:0,0,0 -(1,20718:-473656,-644877:0,0,0 -k1,20718:-473656,-644877:-65536 +!670 +{351 +[1,20683:4262630,47279633:28320399,43253760,0 +(1,20683:4262630,4025873:0,0,0 +[1,20683:-473656,4025873:0,0,0 +(1,20683:-473656,-710413:0,0,0 +(1,20683:-473656,-644877:0,0,0 +k1,20683:-473656,-644877:-65536 ) -(1,20718:-473656,4736287:0,0,0 -k1,20718:-473656,4736287:5209943 +(1,20683:-473656,4736287:0,0,0 +k1,20683:-473656,4736287:5209943 ) -g1,20718:-473656,-710413 +g1,20683:-473656,-710413 ) ] ) -[1,20718:6630773,47279633:25952256,43253760,0 -[1,20718:6630773,4812305:25952256,786432,0 -(1,20718:6630773,4812305:25952256,513147,126483 -(1,20718:6630773,4812305:25952256,513147,126483 -g1,20718:3078558,4812305 -[1,20718:3078558,4812305:0,0,0 -(1,20718:3078558,2439708:0,1703936,0 -k1,20718:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,20718:2537886,2439708:1179648,16384,0 +[1,20683:6630773,47279633:25952256,43253760,0 +[1,20683:6630773,4812305:25952256,786432,0 +(1,20683:6630773,4812305:25952256,513147,126483 +(1,20683:6630773,4812305:25952256,513147,126483 +g1,20683:3078558,4812305 +[1,20683:3078558,4812305:0,0,0 +(1,20683:3078558,2439708:0,1703936,0 +k1,20683:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,20683:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,20718:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,20683:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,20718:3078558,4812305:0,0,0 -(1,20718:3078558,2439708:0,1703936,0 -g1,20718:29030814,2439708 -g1,20718:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,20718:36151628,1915420:16384,1179648,0 +[1,20683:3078558,4812305:0,0,0 +(1,20683:3078558,2439708:0,1703936,0 +g1,20683:29030814,2439708 +g1,20683:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,20683:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,20718:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,20683:37855564,2439708:1179648,16384,0 ) ) -k1,20718:3078556,2439708:-34777008 +k1,20683:3078556,2439708:-34777008 ) ] -[1,20718:3078558,4812305:0,0,0 -(1,20718:3078558,49800853:0,16384,2228224 -k1,20718:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,20718:2537886,49800853:1179648,16384,0 +[1,20683:3078558,4812305:0,0,0 +(1,20683:3078558,49800853:0,16384,2228224 +k1,20683:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,20683:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,20718:3078558,51504789:16384,1179648,0 -) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 -) -] -) -) -) -] -[1,20718:3078558,4812305:0,0,0 -(1,20718:3078558,49800853:0,16384,2228224 -g1,20718:29030814,49800853 -g1,20718:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,20718:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] -) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,20718:37855564,49800853:1179648,16384,0 -) -) -k1,20718:3078556,49800853:-34777008 -) -] -g1,20718:6630773,4812305 -k1,20718:21350816,4812305:13524666 -g1,20718:21999622,4812305 -g1,20718:25611966,4812305 -g1,20718:28956923,4812305 -g1,20718:29772190,4812305 -) -) -] -[1,20718:6630773,45706769:25952256,40108032,0 -(1,20718:6630773,45706769:25952256,40108032,0 -(1,20718:6630773,45706769:0,0,0 -g1,20718:6630773,45706769 -) -[1,20718:6630773,45706769:25952256,40108032,0 -v1,20674:6630773,6254097:0,393216,0 -(1,20674:6630773,8561436:25952256,2700555,196608 -g1,20674:6630773,8561436 -g1,20674:6630773,8561436 -g1,20674:6434165,8561436 -(1,20674:6434165,8561436:0,2700555,196608 -r1,20718:32779637,8561436:26345472,2897163,196608 -k1,20674:6434165,8561436:-26345472 -) -(1,20674:6434165,8561436:26345472,2700555,196608 -[1,20674:6630773,8561436:25952256,2503947,0 -(1,20669:6630773,6461715:25952256,404226,101187 -h1,20669:6630773,6461715:0,0,0 -g1,20669:6946919,6461715 -g1,20669:7263065,6461715 -g1,20669:7579211,6461715 -g1,20669:7895357,6461715 -g1,20669:8211503,6461715 -g1,20669:8527649,6461715 -g1,20669:8843795,6461715 -g1,20669:9159941,6461715 -g1,20669:9476087,6461715 -g1,20669:9792233,6461715 -g1,20669:10108379,6461715 -g1,20669:10424525,6461715 -g1,20669:10740671,6461715 -g1,20669:11056817,6461715 -g1,20669:11372963,6461715 -g1,20669:11689109,6461715 -g1,20669:12005255,6461715 -g1,20669:12321401,6461715 -g1,20669:12637547,6461715 -g1,20669:12953693,6461715 -g1,20669:13269839,6461715 -g1,20669:15482859,6461715 -g1,20669:16115151,6461715 -g1,20669:17695881,6461715 -k1,20669:17695881,6461715:0 -h1,20669:18644319,6461715:0,0,0 -k1,20669:32583029,6461715:13938710 -g1,20669:32583029,6461715 -) -(1,20670:6630773,7127893:25952256,404226,76021 -h1,20670:6630773,7127893:0,0,0 -g1,20670:6946919,7127893 -g1,20670:7263065,7127893 -g1,20670:7579211,7127893 -g1,20670:7895357,7127893 -g1,20670:8211503,7127893 -g1,20670:8527649,7127893 -g1,20670:8843795,7127893 -g1,20670:9159941,7127893 -g1,20670:9476087,7127893 -g1,20670:9792233,7127893 -g1,20670:10108379,7127893 -g1,20670:10424525,7127893 -g1,20670:10740671,7127893 -g1,20670:11056817,7127893 -g1,20670:11372963,7127893 -g1,20670:11689109,7127893 -g1,20670:12005255,7127893 -g1,20670:12321401,7127893 -g1,20670:12637547,7127893 -g1,20670:12953693,7127893 -g1,20670:13269839,7127893 -g1,20670:14850568,7127893 -g1,20670:15482860,7127893 -g1,20670:17379734,7127893 -g1,20670:21173483,7127893 -h1,20670:21489629,7127893:0,0,0 -k1,20670:32583029,7127893:11093400 -g1,20670:32583029,7127893 -) -(1,20671:6630773,7794071:25952256,404226,101187 -h1,20671:6630773,7794071:0,0,0 -g1,20671:6946919,7794071 -g1,20671:7263065,7794071 -g1,20671:14850562,7794071 -g1,20671:15482854,7794071 -g1,20671:17379728,7794071 -g1,20671:19276602,7794071 -g1,20671:21805768,7794071 -h1,20671:22121914,7794071:0,0,0 -k1,20671:32583029,7794071:10461115 -g1,20671:32583029,7794071 -) -(1,20672:6630773,8460249:25952256,410518,101187 -h1,20672:6630773,8460249:0,0,0 -g1,20672:6946919,8460249 -g1,20672:7263065,8460249 -g1,20672:20857331,8460249 -g1,20672:21489623,8460249 -g1,20672:22754206,8460249 -g1,20672:24651081,8460249 -h1,20672:26864101,8460249:0,0,0 -k1,20672:32583029,8460249:5718928 -g1,20672:32583029,8460249 -) -] -) -g1,20674:32583029,8561436 -g1,20674:6630773,8561436 -g1,20674:6630773,8561436 -g1,20674:32583029,8561436 -g1,20674:32583029,8561436 -) -h1,20674:6630773,8758044:0,0,0 -(1,20677:6630773,18106536:25952256,8758668,0 -k1,20677:7928465,18106536:1297692 -h1,20676:7928465,18106536:0,0,0 -(1,20676:7928465,18106536:23356872,8758668,0 -(1,20676:7928465,18106536:23356506,8758690,0 -(1,20676:7928465,18106536:23356506,8758690,0 -(1,20676:7928465,18106536:0,8758690,0 -(1,20676:7928465,18106536:0,14208860,0 -(1,20676:7928465,18106536:37890292,14208860,0 -) -k1,20676:7928465,18106536:-37890292 -) -) -g1,20676:31284971,18106536 -) -) -) -g1,20677:31285337,18106536 -k1,20677:32583029,18106536:1297692 -) -(1,20685:6630773,20197796:25952256,555811,12975 -(1,20685:6630773,20197796:2899444,534184,12975 -g1,20685:6630773,20197796 -g1,20685:9530217,20197796 -) -g1,20685:10837202,20197796 -k1,20685:32583029,20197796:19492306 -g1,20685:32583029,20197796 -) -v1,20689:6630773,21956788:0,393216,0 -(1,20690:6630773,25877672:25952256,4314100,0 -g1,20690:6630773,25877672 -g1,20690:6303093,25877672 -r1,20718:6401397,25877672:98304,4314100,0 -g1,20690:6600626,25877672 -g1,20690:6797234,25877672 -[1,20690:6797234,25877672:25785795,4314100,0 -(1,20690:6797234,22377372:25785795,813800,267386 -(1,20689:6797234,22377372:0,813800,267386 -r1,20718:8134168,22377372:1336934,1081186,267386 -k1,20689:6797234,22377372:-1336934 -) -(1,20689:6797234,22377372:1336934,813800,267386 -) -k1,20689:8401414,22377372:267246 -k1,20689:8729094,22377372:327680 -k1,20689:9920399,22377372:267247 -k1,20689:12167488,22377372:267246 -k1,20689:13426294,22377372:267246 -k1,20689:15343737,22377372:267246 -k1,20689:18094799,22377372:267247 -k1,20689:19013473,22377372:267246 -k1,20689:20693020,22377372:267246 -k1,20689:22402714,22377372:267247 -k1,20689:23714604,22377372:267246 -k1,20689:25961693,22377372:267246 -k1,20689:28758629,22377372:267246 -k1,20689:30123604,22377372:267247 -k1,20689:32051532,22377372:267246 -k1,20689:32583029,22377372:0 -) -(1,20690:6797234,23218860:25785795,513147,134348 -k1,20689:8921760,23218860:227259 -k1,20689:9761780,23218860:227258 -k1,20689:13392324,23218860:227259 -k1,20689:15963150,23218860:227259 -k1,20689:17632855,23218860:227258 -k1,20689:20061468,23218860:227259 -k1,20689:20766484,23218860:227259 -k1,20689:22680640,23218860:227259 -k1,20689:23877175,23218860:227258 -k1,20689:26084277,23218860:227259 -k1,20689:28491919,23218860:227259 -k1,20689:30094778,23218860:227258 -k1,20689:31069803,23218860:227259 -k1,20689:32583029,23218860:0 -) -(1,20690:6797234,24060348:25785795,513147,126483 -k1,20689:7614140,24060348:165478 -k1,20689:9440301,24060348:165479 -k1,20689:13741756,24060348:165478 -k1,20689:14590119,24060348:165478 -k1,20689:17826615,24060348:165479 -k1,20689:21919666,24060348:165478 -k1,20689:23369650,24060348:165478 -k1,20689:24732472,24060348:165479 -k1,20689:25733534,24060348:165478 -k1,20689:26550441,24060348:165479 -k1,20689:27071779,24060348:165478 -k1,20689:28880245,24060348:165478 -k1,20689:29673559,24060348:165479 -k1,20689:31042278,24060348:165478 -k1,20689:32583029,24060348:0 -) -(1,20690:6797234,24901836:25785795,513147,126483 -k1,20689:8570900,24901836:260440 -k1,20689:10206941,24901836:260440 -k1,20689:10933342,24901836:260440 -k1,20689:12212867,24901836:260440 -k1,20689:14959088,24901836:260440 -k1,20689:15878820,24901836:260440 -k1,20689:17408692,24901836:260440 -k1,20689:19717132,24901836:260440 -k1,20689:20509069,24901836:260440 -k1,20689:22485897,24901836:260440 -k1,20689:24209101,24901836:260440 -k1,20689:25128833,24901836:260440 -k1,20689:27669926,24901836:260440 -k1,20689:29727363,24901836:260440 -k1,20689:30600565,24901836:260440 -k1,20689:32583029,24901836:0 -) -(1,20690:6797234,25743324:25785795,505283,134348 -g1,20689:9667055,25743324 -g1,20689:10482322,25743324 -g1,20689:13188303,25743324 -g1,20689:14767720,25743324 -g1,20689:15958509,25743324 -g1,20689:17492706,25743324 -k1,20690:32583029,25743324:12419076 -g1,20690:32583029,25743324 -) -] -g1,20690:32583029,25877672 -) -h1,20690:6630773,25877672:0,0,0 -(1,20693:6630773,27243448:25952256,513147,122846 -k1,20692:7617405,27243448:168743 -k1,20692:8654501,27243448:168744 -k1,20692:9915729,27243448:168743 -(1,20692:9915729,27243448:0,452978,122846 -r1,20718:13439401,27243448:3523672,575824,122846 -k1,20692:9915729,27243448:-3523672 -) -(1,20692:9915729,27243448:3523672,452978,122846 -k1,20692:9915729,27243448:3277 -h1,20692:13436124,27243448:0,411205,112570 -) -k1,20692:13608145,27243448:168744 -k1,20692:15662359,27243448:168743 -k1,20692:18426983,27243448:168743 -k1,20692:19247155,27243448:168744 -k1,20692:20508383,27243448:168743 -(1,20692:20508383,27243448:0,452978,115847 -r1,20718:24735479,27243448:4227096,568825,115847 -k1,20692:20508383,27243448:-4227096 -) -(1,20692:20508383,27243448:4227096,452978,115847 -k1,20692:20508383,27243448:3277 -h1,20692:24732202,27243448:0,411205,112570 -) -k1,20692:25077892,27243448:168743 -k1,20692:26200185,27243448:168744 -k1,20692:27461413,27243448:168743 -k1,20692:28649242,27243448:168744 -k1,20692:31010820,27243448:168743 -k1,20692:32583029,27243448:0 -) -(1,20693:6630773,28084936:25952256,513147,7863 -g1,20692:7777653,28084936 -g1,20692:9273840,28084936 -k1,20693:32583030,28084936:21189100 -g1,20693:32583030,28084936 -) -v1,20695:6630773,29275402:0,393216,0 -(1,20704:6630773,32902514:25952256,4020328,196608 -g1,20704:6630773,32902514 -g1,20704:6630773,32902514 -g1,20704:6434165,32902514 -(1,20704:6434165,32902514:0,4020328,196608 -r1,20718:32779637,32902514:26345472,4216936,196608 -k1,20704:6434165,32902514:-26345472 -) -(1,20704:6434165,32902514:26345472,4020328,196608 -[1,20704:6630773,32902514:25952256,3823720,0 -(1,20697:6630773,29489312:25952256,410518,107478 -(1,20696:6630773,29489312:0,0,0 -g1,20696:6630773,29489312 -g1,20696:6630773,29489312 -g1,20696:6303093,29489312 -(1,20696:6303093,29489312:0,0,0 -) -g1,20696:6630773,29489312 -) -k1,20697:6630773,29489312:0 -g1,20697:10424522,29489312 -g1,20697:11056814,29489312 -g1,20697:12637543,29489312 -g1,20697:14534418,29489312 -g1,20697:15166710,29489312 -g1,20697:18644314,29489312 -g1,20697:20225043,29489312 -g1,20697:20857335,29489312 -g1,20697:25915666,29489312 -h1,20697:26231812,29489312:0,0,0 -k1,20697:32583029,29489312:6351217 -g1,20697:32583029,29489312 -) -(1,20698:6630773,30155490:25952256,404226,107478 -h1,20698:6630773,30155490:0,0,0 -g1,20698:6946919,30155490 -g1,20698:7263065,30155490 -g1,20698:12005250,30155490 -g1,20698:12637542,30155490 -g1,20698:13585980,30155490 -g1,20698:15482854,30155490 -g1,20698:16115146,30155490 -g1,20698:18960458,30155490 -h1,20698:19276604,30155490:0,0,0 -k1,20698:32583029,30155490:13306425 -g1,20698:32583029,30155490 -) -(1,20699:6630773,30821668:25952256,404226,101187 -h1,20699:6630773,30821668:0,0,0 -g1,20699:6946919,30821668 -g1,20699:7263065,30821668 -g1,20699:12953687,30821668 -g1,20699:13585979,30821668 -g1,20699:15166708,30821668 -h1,20699:15482854,30821668:0,0,0 -k1,20699:32583030,30821668:17100176 -g1,20699:32583030,30821668 -) -(1,20700:6630773,31487846:25952256,410518,76021 -h1,20700:6630773,31487846:0,0,0 -g1,20700:6946919,31487846 -g1,20700:7263065,31487846 -g1,20700:13585979,31487846 -h1,20700:13902125,31487846:0,0,0 -k1,20700:32583029,31487846:18680904 -g1,20700:32583029,31487846 -) -(1,20701:6630773,32154024:25952256,404226,76021 -h1,20701:6630773,32154024:0,0,0 -g1,20701:6946919,32154024 -g1,20701:7263065,32154024 -g1,20701:14850562,32154024 -g1,20701:15482854,32154024 -g1,20701:17379729,32154024 -h1,20701:17695875,32154024:0,0,0 -k1,20701:32583029,32154024:14887154 -g1,20701:32583029,32154024 -) -(1,20702:6630773,32820202:25952256,410518,82312 -h1,20702:6630773,32820202:0,0,0 -g1,20702:6946919,32820202 -g1,20702:7263065,32820202 -g1,20702:9476086,32820202 -g1,20702:10108378,32820202 -g1,20702:12005253,32820202 -g1,20702:13585982,32820202 -g1,20702:14218274,32820202 -g1,20702:17063585,32820202 -h1,20702:19276605,32820202:0,0,0 -k1,20702:32583029,32820202:13306424 -g1,20702:32583029,32820202 -) -] -) -g1,20704:32583029,32902514 -g1,20704:6630773,32902514 -g1,20704:6630773,32902514 -g1,20704:32583029,32902514 -g1,20704:32583029,32902514 -) -h1,20704:6630773,33099122:0,0,0 -(1,20707:6630773,44199435:25952256,10510489,0 -k1,20707:12599879,44199435:5969106 -h1,20706:12599879,44199435:0,0,0 -(1,20706:12599879,44199435:14014044,10510489,0 -(1,20706:12599879,44199435:14014019,10510515,0 -(1,20706:12599879,44199435:14014019,10510515,0 -(1,20706:12599879,44199435:0,10510515,0 -(1,20706:12599879,44199435:0,14208860,0 -(1,20706:12599879,44199435:18945146,14208860,0 -) -k1,20706:12599879,44199435:-18945146 -) -) -g1,20706:26613898,44199435 -) -) -) -g1,20707:26613923,44199435 -k1,20707:32583029,44199435:5969106 -) -v1,20717:6630773,45565211:0,393216,0 -] -(1,20718:32583029,45706769:0,0,0 -g1,20718:32583029,45706769 -) -) -] -(1,20718:6630773,47279633:25952256,0,0 -h1,20718:6630773,47279633:25952256,0,0 -) -] -(1,20718:4262630,4025873:0,0,0 -[1,20718:-473656,4025873:0,0,0 -(1,20718:-473656,-710413:0,0,0 -(1,20718:-473656,-710413:0,0,0 -g1,20718:-473656,-710413 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,20683:3078558,51504789:16384,1179648,0 ) -g1,20718:-473656,-710413 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) +) +) ] -!14762 -}373 +[1,20683:3078558,4812305:0,0,0 +(1,20683:3078558,49800853:0,16384,2228224 +g1,20683:29030814,49800853 +g1,20683:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,20683:36151628,51504789:16384,1179648,0 +) +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 +) +] +) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,20683:37855564,49800853:1179648,16384,0 +) +) +k1,20683:3078556,49800853:-34777008 +) +] +g1,20683:6630773,4812305 +k1,20683:21350816,4812305:13524666 +g1,20683:21999622,4812305 +g1,20683:25611966,4812305 +g1,20683:28956923,4812305 +g1,20683:29772190,4812305 +) +) +] +[1,20683:6630773,45706769:25952256,40108032,0 +(1,20683:6630773,45706769:25952256,40108032,0 +(1,20683:6630773,45706769:0,0,0 +g1,20683:6630773,45706769 +) +[1,20683:6630773,45706769:25952256,40108032,0 +(1,20626:6630773,6254097:25952256,555811,12975 +(1,20626:6630773,6254097:2450326,534184,12975 +g1,20626:6630773,6254097 +g1,20626:9081099,6254097 +) +g1,20626:11819063,6254097 +k1,20626:32583028,6254097:18578208 +g1,20626:32583028,6254097 +) +(1,20629:6630773,7512393:25952256,513147,134348 +k1,20628:8812903,7512393:140684 +k1,20628:11287324,7512393:140684 +k1,20628:12970726,7512393:140684 +k1,20628:13770702,7512393:140684 +k1,20628:16739919,7512393:140684 +k1,20628:18256204,7512393:140684 +k1,20628:19569327,7512393:140684 +k1,20628:21426399,7512393:140684 +k1,20628:22226375,7512393:140684 +k1,20628:24269569,7512393:140684 +k1,20628:25914304,7512393:140684 +k1,20628:29012628,7512393:140684 +k1,20628:32583029,7512393:0 +) +(1,20629:6630773,8377473:25952256,513147,126483 +k1,20628:8007434,8377473:185216 +k1,20628:10892078,8377473:185216 +k1,20628:11564867,8377473:185201 +k1,20628:13332122,8377473:185216 +k1,20628:14903424,8377473:185216 +k1,20628:15747932,8377473:185216 +k1,20628:17835657,8377473:185215 +k1,20628:22429480,8377473:185216 +k1,20628:23562347,8377473:185216 +k1,20628:24513679,8377473:185216 +k1,20628:25717979,8377473:185215 +k1,20628:29077759,8377473:185216 +k1,20628:31181869,8377473:185216 +k1,20629:32583029,8377473:0 +) +(1,20629:6630773,9242553:25952256,505283,126483 +k1,20628:8371410,9242553:148767 +k1,20628:9727349,9242553:148766 +k1,20628:11841541,9242553:148767 +k1,20628:12606346,9242553:148767 +k1,20628:15088849,9242553:148766 +k1,20628:16780334,9242553:148767 +k1,20628:18796876,9242553:148766 +k1,20628:21264306,9242553:148767 +k1,20628:22970864,9242553:148767 +k1,20628:24111190,9242553:148766 +k1,20628:24911385,9242553:148767 +k1,20628:25807918,9242553:148767 +k1,20628:27469910,9242553:148766 +k1,20628:29012628,9242553:148767 +k1,20628:32583029,9242553:0 +) +(1,20629:6630773,10107633:25952256,513147,126483 +k1,20628:9823687,10107633:177603 +k1,20628:11073458,10107633:177602 +k1,20628:12631249,10107633:177603 +k1,20628:15925743,10107633:177602 +k1,20628:17122431,10107633:177603 +k1,20628:20870435,10107633:177603 +k1,20628:23058682,10107633:177602 +k1,20628:24503751,10107633:177603 +k1,20628:26028119,10107633:177603 +k1,20628:26888606,10107633:177602 +k1,20628:29472691,10107633:177603 +k1,20628:31101915,10107633:177602 +k1,20628:32227169,10107633:177603 +k1,20628:32583029,10107633:0 +) +(1,20629:6630773,10972713:25952256,513147,134348 +k1,20628:8592353,10972713:180967 +k1,20628:9432611,10972713:180966 +k1,20628:11797893,10972713:180967 +k1,20628:13170305,10972713:180967 +k1,20628:14785200,10972713:180967 +k1,20628:18007692,10972713:180966 +k1,20628:19827714,10972713:180967 +k1,20628:20624719,10972713:180967 +k1,20628:21824771,10972713:180967 +k1,20628:23283034,10972713:180966 +k1,20628:25199394,10972713:180967 +k1,20628:25736221,10972713:180967 +k1,20628:28442946,10972713:180967 +k1,20628:29558455,10972713:180966 +k1,20628:30398714,10972713:180967 +k1,20628:32583029,10972713:0 +) +(1,20629:6630773,11837793:25952256,513147,134348 +k1,20628:7799117,11837793:214795 +k1,20628:9677871,11837793:214795 +k1,20628:10911752,11837793:214796 +k1,20628:12981871,11837793:214795 +k1,20628:15272191,11837793:214795 +k1,20628:16296356,11837793:214795 +k1,20628:18009304,11837793:214795 +h1,20628:19204681,11837793:0,0,0 +k1,20628:19419476,11837793:214795 +k1,20628:20706441,11837793:214796 +k1,20628:23862492,11837793:214795 +(1,20628:23862492,11837793:0,452978,122846 +r1,20683:31606706,11837793:7744214,575824,122846 +k1,20628:23862492,11837793:-7744214 +) +(1,20628:23862492,11837793:7744214,452978,122846 +k1,20628:23862492,11837793:3277 +h1,20628:31603429,11837793:0,411205,112570 +) +k1,20628:31821501,11837793:214795 +k1,20629:32583029,11837793:0 +) +(1,20629:6630773,12702873:25952256,452978,115847 +(1,20628:6630773,12702873:0,452978,115847 +r1,20683:13671564,12702873:7040791,568825,115847 +k1,20628:6630773,12702873:-7040791 +) +(1,20628:6630773,12702873:7040791,452978,115847 +k1,20628:6630773,12702873:3277 +h1,20628:13668287,12702873:0,411205,112570 +) +k1,20629:32583030,12702873:18737796 +g1,20629:32583030,12702873 +) +v1,20631:6630773,13387728:0,393216,0 +(1,20642:6630773,18515790:25952256,5521278,196608 +g1,20642:6630773,18515790 +g1,20642:6630773,18515790 +g1,20642:6434165,18515790 +(1,20642:6434165,18515790:0,5521278,196608 +r1,20683:32779637,18515790:26345472,5717886,196608 +k1,20642:6434165,18515790:-26345472 +) +(1,20642:6434165,18515790:26345472,5521278,196608 +[1,20642:6630773,18515790:25952256,5324670,0 +(1,20633:6630773,13615559:25952256,424439,112852 +(1,20632:6630773,13615559:0,0,0 +g1,20632:6630773,13615559 +g1,20632:6630773,13615559 +g1,20632:6303093,13615559 +(1,20632:6303093,13615559:0,0,0 +) +g1,20632:6630773,13615559 +) +g1,20633:7294681,13615559 +g1,20633:8290543,13615559 +g1,20633:9618359,13615559 +g1,20633:12273991,13615559 +g1,20633:14929623,13615559 +g1,20633:15593531,13615559 +g1,20633:16921347,13615559 +g1,20633:17585255,13615559 +g1,20633:18581117,13615559 +g1,20633:21568702,13615559 +g1,20633:23560426,13615559 +g1,20633:24556288,13615559 +k1,20633:24556288,13615559:0 +h1,20633:28207781,13615559:0,0,0 +k1,20633:32583029,13615559:4375248 +g1,20633:32583029,13615559 +) +(1,20634:6630773,14300414:25952256,431045,106246 +h1,20634:6630773,14300414:0,0,0 +g1,20634:7294681,14300414 +g1,20634:8954451,14300414 +g1,20634:10614221,14300414 +g1,20634:11942037,14300414 +g1,20634:12605945,14300414 +g1,20634:13933761,14300414 +g1,20634:14597669,14300414 +k1,20634:14597669,14300414:0 +h1,20634:17917208,14300414:0,0,0 +k1,20634:32583029,14300414:14665821 +g1,20634:32583029,14300414 +) +(1,20635:6630773,14985269:25952256,424439,79822 +h1,20635:6630773,14985269:0,0,0 +k1,20635:6630773,14985269:0 +h1,20635:11278128,14985269:0,0,0 +k1,20635:32583028,14985269:21304900 +g1,20635:32583028,14985269 +) +(1,20636:6630773,15670124:25952256,407923,9908 +h1,20636:6630773,15670124:0,0,0 +g1,20636:7294681,15670124 +g1,20636:8290543,15670124 +h1,20636:9618359,15670124:0,0,0 +k1,20636:32583029,15670124:22964670 +g1,20636:32583029,15670124 +) +(1,20637:6630773,16354979:25952256,424439,112852 +h1,20637:6630773,16354979:0,0,0 +g1,20637:7294681,16354979 +g1,20637:8290543,16354979 +g1,20637:9286405,16354979 +g1,20637:9950313,16354979 +g1,20637:11278129,16354979 +g1,20637:11942037,16354979 +g1,20637:13601807,16354979 +g1,20637:14265715,16354979 +g1,20637:19908933,16354979 +g1,20637:21568703,16354979 +g1,20637:22232611,16354979 +g1,20637:23228473,16354979 +g1,20637:24224335,16354979 +g1,20637:24888243,16354979 +g1,20637:28207783,16354979 +g1,20637:28871691,16354979 +h1,20637:29535599,16354979:0,0,0 +k1,20637:32583029,16354979:3047430 +g1,20637:32583029,16354979 +) +(1,20638:6630773,17039834:25952256,431045,106246 +h1,20638:6630773,17039834:0,0,0 +g1,20638:9286405,17039834 +g1,20638:10282267,17039834 +g1,20638:14929622,17039834 +h1,20638:15593530,17039834:0,0,0 +k1,20638:32583030,17039834:16989500 +g1,20638:32583030,17039834 +) +(1,20639:6630773,17724689:25952256,424439,106246 +h1,20639:6630773,17724689:0,0,0 +g1,20639:11942036,17724689 +g1,20639:12937898,17724689 +h1,20639:15261576,17724689:0,0,0 +k1,20639:32583028,17724689:17321452 +g1,20639:32583028,17724689 +) +(1,20640:6630773,18409544:25952256,424439,106246 +h1,20640:6630773,18409544:0,0,0 +g1,20640:12937898,18409544 +g1,20640:14597668,18409544 +g1,20640:15593530,18409544 +g1,20640:21900655,18409544 +g1,20640:23560425,18409544 +g1,20640:24224333,18409544 +h1,20640:24888241,18409544:0,0,0 +k1,20640:32583029,18409544:7694788 +g1,20640:32583029,18409544 +) +] +) +g1,20642:32583029,18515790 +g1,20642:6630773,18515790 +g1,20642:6630773,18515790 +g1,20642:32583029,18515790 +g1,20642:32583029,18515790 +) +h1,20642:6630773,18712398:0,0,0 +v1,20646:6630773,19397253:0,393216,0 +(1,20650:6630773,19737936:25952256,733899,196608 +g1,20650:6630773,19737936 +g1,20650:6630773,19737936 +g1,20650:6434165,19737936 +(1,20650:6434165,19737936:0,733899,196608 +r1,20683:32779637,19737936:26345472,930507,196608 +k1,20650:6434165,19737936:-26345472 +) +(1,20650:6434165,19737936:26345472,733899,196608 +[1,20650:6630773,19737936:25952256,537291,0 +(1,20648:6630773,19631690:25952256,431045,106246 +(1,20647:6630773,19631690:0,0,0 +g1,20647:6630773,19631690 +g1,20647:6630773,19631690 +g1,20647:6303093,19631690 +(1,20647:6303093,19631690:0,0,0 +) +g1,20647:6630773,19631690 +) +g1,20648:10282266,19631690 +g1,20648:11278128,19631690 +g1,20648:11942036,19631690 +g1,20648:12605944,19631690 +g1,20648:15261576,19631690 +g1,20648:16257438,19631690 +g1,20648:17585254,19631690 +g1,20648:18249162,19631690 +h1,20648:19908932,19631690:0,0,0 +k1,20648:32583029,19631690:12674097 +g1,20648:32583029,19631690 +) +] +) +g1,20650:32583029,19737936 +g1,20650:6630773,19737936 +g1,20650:6630773,19737936 +g1,20650:32583029,19737936 +g1,20650:32583029,19737936 +) +h1,20650:6630773,19934544:0,0,0 +v1,20654:6630773,20619399:0,393216,0 +(1,20667:6630773,27123777:25952256,6897594,196608 +g1,20667:6630773,27123777 +g1,20667:6630773,27123777 +g1,20667:6434165,27123777 +(1,20667:6434165,27123777:0,6897594,196608 +r1,20683:32779637,27123777:26345472,7094202,196608 +k1,20667:6434165,27123777:-26345472 +) +(1,20667:6434165,27123777:26345472,6897594,196608 +[1,20667:6630773,27123777:25952256,6700986,0 +(1,20656:6630773,20847230:25952256,424439,112852 +(1,20655:6630773,20847230:0,0,0 +g1,20655:6630773,20847230 +g1,20655:6630773,20847230 +g1,20655:6303093,20847230 +(1,20655:6303093,20847230:0,0,0 +) +g1,20655:6630773,20847230 +) +k1,20656:6630773,20847230:0 +g1,20656:14597668,20847230 +h1,20656:14929622,20847230:0,0,0 +k1,20656:32583030,20847230:17653408 +g1,20656:32583030,20847230 +) +(1,20657:6630773,21532085:25952256,431045,106246 +h1,20657:6630773,21532085:0,0,0 +g1,20657:6962727,21532085 +g1,20657:7294681,21532085 +g1,20657:16257438,21532085 +g1,20657:16921346,21532085 +k1,20657:16921346,21532085:0 +h1,20657:20572839,21532085:0,0,0 +k1,20657:32583029,21532085:12010190 +g1,20657:32583029,21532085 +) +(1,20658:6630773,22216940:25952256,424439,86428 +h1,20658:6630773,22216940:0,0,0 +g1,20658:6962727,22216940 +g1,20658:7294681,22216940 +g1,20658:7626635,22216940 +g1,20658:7958589,22216940 +g1,20658:8290543,22216940 +g1,20658:8622497,22216940 +g1,20658:8954451,22216940 +g1,20658:9286405,22216940 +g1,20658:9618359,22216940 +g1,20658:9950313,22216940 +g1,20658:10282267,22216940 +g1,20658:10614221,22216940 +g1,20658:10946175,22216940 +g1,20658:11278129,22216940 +g1,20658:11610083,22216940 +g1,20658:11942037,22216940 +g1,20658:12273991,22216940 +g1,20658:12605945,22216940 +g1,20658:12937899,22216940 +g1,20658:13269853,22216940 +g1,20658:13601807,22216940 +g1,20658:15925485,22216940 +g1,20658:16589393,22216940 +k1,20658:16589393,22216940:0 +h1,20658:18581117,22216940:0,0,0 +k1,20658:32583029,22216940:14001912 +g1,20658:32583029,22216940 +) +(1,20659:6630773,22901795:25952256,424439,112852 +h1,20659:6630773,22901795:0,0,0 +g1,20659:6962727,22901795 +g1,20659:7294681,22901795 +g1,20659:7626635,22901795 +g1,20659:7958589,22901795 +g1,20659:8290543,22901795 +g1,20659:8622497,22901795 +g1,20659:8954451,22901795 +g1,20659:9286405,22901795 +g1,20659:9618359,22901795 +g1,20659:9950313,22901795 +g1,20659:10282267,22901795 +g1,20659:10614221,22901795 +g1,20659:10946175,22901795 +g1,20659:11278129,22901795 +g1,20659:11610083,22901795 +g1,20659:11942037,22901795 +g1,20659:12273991,22901795 +g1,20659:12605945,22901795 +g1,20659:12937899,22901795 +g1,20659:13269853,22901795 +g1,20659:13601807,22901795 +g1,20659:16257439,22901795 +g1,20659:16921347,22901795 +g1,20659:18913071,22901795 +g1,20659:19576979,22901795 +k1,20659:19576979,22901795:0 +h1,20659:20240887,22901795:0,0,0 +k1,20659:32583029,22901795:12342142 +g1,20659:32583029,22901795 +) +(1,20660:6630773,23586650:25952256,424439,112852 +h1,20660:6630773,23586650:0,0,0 +g1,20660:6962727,23586650 +g1,20660:7294681,23586650 +g1,20660:7626635,23586650 +g1,20660:7958589,23586650 +g1,20660:8290543,23586650 +g1,20660:8622497,23586650 +g1,20660:8954451,23586650 +g1,20660:9286405,23586650 +g1,20660:9618359,23586650 +g1,20660:9950313,23586650 +g1,20660:10282267,23586650 +g1,20660:10614221,23586650 +g1,20660:10946175,23586650 +g1,20660:11278129,23586650 +g1,20660:11610083,23586650 +g1,20660:11942037,23586650 +g1,20660:12273991,23586650 +g1,20660:12605945,23586650 +g1,20660:12937899,23586650 +g1,20660:13269853,23586650 +g1,20660:13601807,23586650 +g1,20660:13933761,23586650 +g1,20660:14265715,23586650 +g1,20660:14597669,23586650 +g1,20660:14929623,23586650 +g1,20660:15261577,23586650 +g1,20660:15593531,23586650 +g1,20660:15925485,23586650 +g1,20660:16257439,23586650 +g1,20660:16589393,23586650 +g1,20660:16921347,23586650 +g1,20660:17253301,23586650 +g1,20660:17585255,23586650 +g1,20660:17917209,23586650 +g1,20660:18249163,23586650 +g1,20660:18913071,23586650 +g1,20660:19576979,23586650 +g1,20660:23560427,23586650 +g1,20660:24224335,23586650 +k1,20660:24224335,23586650:0 +h1,20660:24888243,23586650:0,0,0 +k1,20660:32583029,23586650:7694786 +g1,20660:32583029,23586650 +) +(1,20661:6630773,24271505:25952256,431045,112852 +h1,20661:6630773,24271505:0,0,0 +g1,20661:6962727,24271505 +g1,20661:7294681,24271505 +g1,20661:7626635,24271505 +g1,20661:7958589,24271505 +g1,20661:8290543,24271505 +g1,20661:8622497,24271505 +g1,20661:8954451,24271505 +g1,20661:9286405,24271505 +g1,20661:9618359,24271505 +g1,20661:9950313,24271505 +g1,20661:10282267,24271505 +g1,20661:10614221,24271505 +g1,20661:10946175,24271505 +g1,20661:11278129,24271505 +g1,20661:11610083,24271505 +g1,20661:11942037,24271505 +g1,20661:12273991,24271505 +g1,20661:12605945,24271505 +g1,20661:12937899,24271505 +g1,20661:13269853,24271505 +g1,20661:13601807,24271505 +g1,20661:13933761,24271505 +g1,20661:14265715,24271505 +g1,20661:14597669,24271505 +g1,20661:14929623,24271505 +g1,20661:15261577,24271505 +g1,20661:15593531,24271505 +g1,20661:15925485,24271505 +g1,20661:16257439,24271505 +g1,20661:16589393,24271505 +g1,20661:16921347,24271505 +g1,20661:17253301,24271505 +g1,20661:17585255,24271505 +g1,20661:17917209,24271505 +g1,20661:18249163,24271505 +g1,20661:18581117,24271505 +g1,20661:18913071,24271505 +g1,20661:19245025,24271505 +g1,20661:19576979,24271505 +g1,20661:19908933,24271505 +g1,20661:20240887,24271505 +g1,20661:20572841,24271505 +g1,20661:20904795,24271505 +g1,20661:21236749,24271505 +g1,20661:21568703,24271505 +g1,20661:25220196,24271505 +g1,20661:25884104,24271505 +g1,20661:26548012,24271505 +g1,20661:27211920,24271505 +k1,20661:27211920,24271505:0 +h1,20661:30199505,24271505:0,0,0 +k1,20661:32583029,24271505:2383524 +g1,20661:32583029,24271505 +) +(1,20662:6630773,24956360:25952256,431045,112852 +h1,20662:6630773,24956360:0,0,0 +g1,20662:6962727,24956360 +g1,20662:7294681,24956360 +g1,20662:7626635,24956360 +g1,20662:7958589,24956360 +g1,20662:8290543,24956360 +g1,20662:8622497,24956360 +g1,20662:8954451,24956360 +g1,20662:9286405,24956360 +g1,20662:9618359,24956360 +g1,20662:9950313,24956360 +g1,20662:10282267,24956360 +g1,20662:10614221,24956360 +g1,20662:10946175,24956360 +g1,20662:11278129,24956360 +g1,20662:11610083,24956360 +g1,20662:11942037,24956360 +g1,20662:12273991,24956360 +g1,20662:12605945,24956360 +g1,20662:12937899,24956360 +g1,20662:13269853,24956360 +g1,20662:13601807,24956360 +g1,20662:13933761,24956360 +g1,20662:14265715,24956360 +g1,20662:14597669,24956360 +g1,20662:14929623,24956360 +g1,20662:15261577,24956360 +g1,20662:15593531,24956360 +g1,20662:15925485,24956360 +g1,20662:16257439,24956360 +g1,20662:16589393,24956360 +g1,20662:16921347,24956360 +g1,20662:17253301,24956360 +g1,20662:17585255,24956360 +g1,20662:17917209,24956360 +g1,20662:18249163,24956360 +g1,20662:20572841,24956360 +g1,20662:21236749,24956360 +k1,20662:21236749,24956360:0 +h1,20662:28207781,24956360:0,0,0 +k1,20662:32583029,24956360:4375248 +g1,20662:32583029,24956360 +) +(1,20663:6630773,25641215:25952256,424439,112852 +h1,20663:6630773,25641215:0,0,0 +g1,20663:6962727,25641215 +g1,20663:7294681,25641215 +g1,20663:7626635,25641215 +g1,20663:7958589,25641215 +g1,20663:8290543,25641215 +g1,20663:8622497,25641215 +g1,20663:8954451,25641215 +g1,20663:9286405,25641215 +g1,20663:9618359,25641215 +g1,20663:9950313,25641215 +g1,20663:10282267,25641215 +g1,20663:10614221,25641215 +g1,20663:10946175,25641215 +g1,20663:11278129,25641215 +g1,20663:11610083,25641215 +g1,20663:11942037,25641215 +g1,20663:12273991,25641215 +g1,20663:12605945,25641215 +g1,20663:12937899,25641215 +g1,20663:13269853,25641215 +g1,20663:13601807,25641215 +g1,20663:17585254,25641215 +g1,20663:18249162,25641215 +g1,20663:20240886,25641215 +h1,20663:20572840,25641215:0,0,0 +k1,20663:32583029,25641215:12010189 +g1,20663:32583029,25641215 +) +(1,20664:6630773,26326070:25952256,424439,112852 +h1,20664:6630773,26326070:0,0,0 +g1,20664:6962727,26326070 +g1,20664:7294681,26326070 +g1,20664:14929622,26326070 +g1,20664:15593530,26326070 +g1,20664:17917208,26326070 +g1,20664:19576978,26326070 +g1,20664:20240886,26326070 +g1,20664:22896518,26326070 +g1,20664:25220196,26326070 +g1,20664:25884104,26326070 +g1,20664:27543874,26326070 +k1,20664:27543874,26326070:0 +h1,20664:28539736,26326070:0,0,0 +k1,20664:32583029,26326070:4043293 +g1,20664:32583029,26326070 +) +(1,20665:6630773,27010925:25952256,424439,112852 +h1,20665:6630773,27010925:0,0,0 +g1,20665:6962727,27010925 +g1,20665:7294681,27010925 +g1,20665:7626635,27010925 +g1,20665:7958589,27010925 +g1,20665:8290543,27010925 +g1,20665:8622497,27010925 +g1,20665:8954451,27010925 +g1,20665:9286405,27010925 +g1,20665:9618359,27010925 +g1,20665:9950313,27010925 +g1,20665:10282267,27010925 +g1,20665:10614221,27010925 +g1,20665:10946175,27010925 +g1,20665:11278129,27010925 +g1,20665:11610083,27010925 +g1,20665:11942037,27010925 +g1,20665:12273991,27010925 +g1,20665:12605945,27010925 +g1,20665:12937899,27010925 +g1,20665:13269853,27010925 +g1,20665:13601807,27010925 +g1,20665:15593531,27010925 +g1,20665:16257439,27010925 +g1,20665:20572840,27010925 +g1,20665:23560425,27010925 +g1,20665:24224333,27010925 +h1,20665:24888241,27010925:0,0,0 +k1,20665:32583029,27010925:7694788 +g1,20665:32583029,27010925 +) +] +) +g1,20667:32583029,27123777 +g1,20667:6630773,27123777 +g1,20667:6630773,27123777 +g1,20667:32583029,27123777 +g1,20667:32583029,27123777 +) +h1,20667:6630773,27320385:0,0,0 +(1,20670:6630773,36469587:25952256,9083666,0 +k1,20670:10523651,36469587:3892878 +h1,20669:10523651,36469587:0,0,0 +(1,20669:10523651,36469587:18166500,9083666,0 +(1,20669:10523651,36469587:18167376,9083688,0 +(1,20669:10523651,36469587:18167376,9083688,0 +(1,20669:10523651,36469587:0,9083688,0 +(1,20669:10523651,36469587:0,14208860,0 +(1,20669:10523651,36469587:28417720,14208860,0 +) +k1,20669:10523651,36469587:-28417720 +) +) +g1,20669:28691027,36469587 +) +) +) +g1,20670:28690151,36469587 +k1,20670:32583029,36469587:3892878 +) +(1,20677:6630773,37334667:25952256,513147,134348 +h1,20676:6630773,37334667:983040,0,0 +k1,20676:8968535,37334667:158035 +k1,20676:12365360,37334667:158036 +k1,20676:13182687,37334667:158035 +k1,20676:15540110,37334667:158035 +k1,20676:17600655,37334667:158035 +k1,20676:18290188,37334667:158036 +k1,20676:19732729,37334667:158035 +k1,20676:21270952,37334667:158035 +k1,20676:24207715,37334667:158036 +k1,20676:25384835,37334667:158035 +k1,20676:26750699,37334667:158035 +k1,20676:29311284,37334667:158035 +k1,20676:30128612,37334667:158036 +k1,20676:31305732,37334667:158035 +k1,20676:32583029,37334667:0 +) +(1,20677:6630773,38199747:25952256,513147,134348 +k1,20676:8544273,38199747:223982 +k1,20676:10276894,38199747:223982 +k1,20676:14691903,38199747:223982 +k1,20676:15447382,38199747:223982 +k1,20676:16690449,38199747:223982 +k1,20676:20106034,38199747:223982 +k1,20676:23577980,38199747:223982 +k1,20676:24461254,38199747:223982 +k1,20676:25704321,38199747:223982 +k1,20676:27674182,38199747:223982 +k1,20676:29094851,38199747:223982 +k1,20676:31343895,38199747:223982 +k1,20676:32227169,38199747:223982 +k1,20676:32583029,38199747:0 +) +(1,20677:6630773,39064827:25952256,513147,126483 +k1,20676:9078190,39064827:248029 +k1,20676:10187361,39064827:248028 +k1,20676:14005791,39064827:248029 +k1,20676:15999698,39064827:248028 +k1,20676:17439172,39064827:248029 +k1,20676:18706285,39064827:248028 +k1,20676:21440095,39064827:248029 +k1,20676:22879568,39064827:248028 +k1,20676:26696032,39064827:248029 +k1,20676:27603352,39064827:248028 +k1,20676:29371816,39064827:248029 +k1,20676:30554387,39064827:248028 +k1,20676:31563944,39064827:248029 +k1,20676:32583029,39064827:0 +) +(1,20677:6630773,39929907:25952256,513147,134348 +k1,20676:9899470,39929907:196369 +k1,20676:12301126,39929907:196369 +k1,20676:13148922,39929907:196368 +k1,20676:16626023,39929907:196369 +(1,20676:16626023,39929907:0,452978,115847 +r1,20683:19446272,39929907:2820249,568825,115847 +k1,20676:16626023,39929907:-2820249 +) +(1,20676:16626023,39929907:2820249,452978,115847 +k1,20676:16626023,39929907:3277 +h1,20676:19442995,39929907:0,411205,112570 +) +k1,20676:19642641,39929907:196369 +k1,20676:20521895,39929907:196369 +k1,20676:21369692,39929907:196369 +(1,20676:21369692,39929907:0,452978,115847 +r1,20683:23486517,39929907:2116825,568825,115847 +k1,20676:21369692,39929907:-2116825 +) +(1,20676:21369692,39929907:2116825,452978,115847 +k1,20676:21369692,39929907:3277 +h1,20676:23483240,39929907:0,411205,112570 +) +k1,20676:23682886,39929907:196369 +k1,20676:25409520,39929907:196368 +k1,20676:26257317,39929907:196369 +k1,20676:27201452,39929907:196369 +k1,20676:29633254,39929907:196369 +k1,20676:32583029,39929907:0 +) +(1,20677:6630773,40794987:25952256,513147,134348 +k1,20676:8924129,40794987:297785 +k1,20676:10489381,40794987:297786 +k1,20676:13291297,40794987:297785 +k1,20676:14608168,40794987:297786 +k1,20676:17915366,40794987:297785 +k1,20676:19232237,40794987:297786 +k1,20676:21543288,40794987:297785 +k1,20676:22500366,40794987:297786 +k1,20676:24223559,40794987:297785 +k1,20676:27305314,40794987:297786 +k1,20676:28254527,40794987:297785 +k1,20676:29571398,40794987:297786 +k1,20676:31931601,40794987:297785 +k1,20676:32583029,40794987:0 +) +(1,20677:6630773,41660067:25952256,513147,126483 +k1,20676:8990367,41660067:210668 +k1,20676:10220121,41660067:210669 +k1,20676:11708086,41660067:210668 +k1,20676:12779897,41660067:210668 +k1,20676:14009651,41660067:210669 +k1,20676:16552745,41660067:210668 +k1,20676:17422706,41660067:210669 +k1,20676:21878796,41660067:210668 +k1,20676:27434580,41660067:210668 +k1,20676:28636809,41660067:210669 +k1,20676:30133293,41660067:210668 +k1,20676:32583029,41660067:0 +) +(1,20677:6630773,42525147:25952256,505283,7863 +g1,20676:7446040,42525147 +g1,20676:9341996,42525147 +g1,20676:11443735,42525147 +g1,20676:12329126,42525147 +g1,20676:13144393,42525147 +k1,20677:32583029,42525147:17232694 +g1,20677:32583029,42525147 +) +] +(1,20683:32583029,45706769:0,0,0 +g1,20683:32583029,45706769 +) +) +] +(1,20683:6630773,47279633:25952256,0,0 +h1,20683:6630773,47279633:25952256,0,0 +) +] +(1,20683:4262630,4025873:0,0,0 +[1,20683:-473656,4025873:0,0,0 +(1,20683:-473656,-710413:0,0,0 +(1,20683:-473656,-710413:0,0,0 +g1,20683:-473656,-710413 +) +g1,20683:-473656,-710413 +) +] +) +] +!25575 +}351 +Input:3381:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3382:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3383:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3384:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -354519,845 +349765,751 @@ Input:3387:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConso Input:3388:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3389:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3390:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!858 -{374 -[1,20753:4262630,47279633:28320399,43253760,0 -(1,20753:4262630,4025873:0,0,0 -[1,20753:-473656,4025873:0,0,0 -(1,20753:-473656,-710413:0,0,0 -(1,20753:-473656,-644877:0,0,0 -k1,20753:-473656,-644877:-65536 +!952 +{352 +[1,20719:4262630,47279633:28320399,43253760,0 +(1,20719:4262630,4025873:0,0,0 +[1,20719:-473656,4025873:0,0,0 +(1,20719:-473656,-710413:0,0,0 +(1,20719:-473656,-644877:0,0,0 +k1,20719:-473656,-644877:-65536 ) -(1,20753:-473656,4736287:0,0,0 -k1,20753:-473656,4736287:5209943 +(1,20719:-473656,4736287:0,0,0 +k1,20719:-473656,4736287:5209943 ) -g1,20753:-473656,-710413 +g1,20719:-473656,-710413 ) ] ) -[1,20753:6630773,47279633:25952256,43253760,0 -[1,20753:6630773,4812305:25952256,786432,0 -(1,20753:6630773,4812305:25952256,505283,11795 -(1,20753:6630773,4812305:25952256,505283,11795 -g1,20753:3078558,4812305 -[1,20753:3078558,4812305:0,0,0 -(1,20753:3078558,2439708:0,1703936,0 -k1,20753:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,20753:2537886,2439708:1179648,16384,0 +[1,20719:6630773,47279633:25952256,43253760,0 +[1,20719:6630773,4812305:25952256,786432,0 +(1,20719:6630773,4812305:25952256,505283,134348 +(1,20719:6630773,4812305:25952256,505283,134348 +g1,20719:3078558,4812305 +[1,20719:3078558,4812305:0,0,0 +(1,20719:3078558,2439708:0,1703936,0 +k1,20719:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,20719:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,20753:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,20719:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,20753:3078558,4812305:0,0,0 -(1,20753:3078558,2439708:0,1703936,0 -g1,20753:29030814,2439708 -g1,20753:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,20753:36151628,1915420:16384,1179648,0 +[1,20719:3078558,4812305:0,0,0 +(1,20719:3078558,2439708:0,1703936,0 +g1,20719:29030814,2439708 +g1,20719:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,20719:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,20753:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,20719:37855564,2439708:1179648,16384,0 ) ) -k1,20753:3078556,2439708:-34777008 +k1,20719:3078556,2439708:-34777008 ) ] -[1,20753:3078558,4812305:0,0,0 -(1,20753:3078558,49800853:0,16384,2228224 -k1,20753:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,20753:2537886,49800853:1179648,16384,0 +[1,20719:3078558,4812305:0,0,0 +(1,20719:3078558,49800853:0,16384,2228224 +k1,20719:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,20719:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,20753:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,20719:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,20753:3078558,4812305:0,0,0 -(1,20753:3078558,49800853:0,16384,2228224 -g1,20753:29030814,49800853 -g1,20753:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,20753:36151628,51504789:16384,1179648,0 +[1,20719:3078558,4812305:0,0,0 +(1,20719:3078558,49800853:0,16384,2228224 +g1,20719:29030814,49800853 +g1,20719:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,20719:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,20753:37855564,49800853:1179648,16384,0 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,20719:37855564,49800853:1179648,16384,0 ) ) -k1,20753:3078556,49800853:-34777008 +k1,20719:3078556,49800853:-34777008 ) ] -g1,20753:6630773,4812305 -g1,20753:6630773,4812305 -g1,20753:9264009,4812305 -k1,20753:31387653,4812305:22123644 -) -) -] -[1,20753:6630773,45706769:25952256,40108032,0 -(1,20753:6630773,45706769:25952256,40108032,0 -(1,20753:6630773,45706769:0,0,0 -g1,20753:6630773,45706769 +g1,20719:6630773,4812305 +g1,20719:6630773,4812305 +g1,20719:9113932,4812305 +g1,20719:13027742,4812305 +k1,20719:31387652,4812305:18359910 +) +) +] +[1,20719:6630773,45706769:25952256,40108032,0 +(1,20719:6630773,45706769:25952256,40108032,0 +(1,20719:6630773,45706769:0,0,0 +g1,20719:6630773,45706769 ) -[1,20753:6630773,45706769:25952256,40108032,0 -v1,20718:6630773,6254097:0,393216,0 -(1,20718:6630773,7654606:25952256,1793725,0 -g1,20718:6630773,7654606 -g1,20718:6303093,7654606 -r1,20753:6401397,7654606:98304,1793725,0 -g1,20718:6600626,7654606 -g1,20718:6797234,7654606 -[1,20718:6797234,7654606:25785795,1793725,0 -(1,20718:6797234,6686635:25785795,825754,196608 -(1,20717:6797234,6686635:0,825754,196608 -r1,20753:7890375,6686635:1093141,1022362,196608 -k1,20717:6797234,6686635:-1093141 -) -(1,20717:6797234,6686635:1093141,825754,196608 -) -k1,20717:8082559,6686635:192184 -k1,20717:9808777,6686635:327680 -k1,20717:11250733,6686635:192184 -k1,20717:12462003,6686635:192185 -k1,20717:14150374,6686635:192184 -k1,20717:15290209,6686635:192184 -k1,20717:16501478,6686635:192184 -k1,20717:17662940,6686635:192185 -k1,20717:19504665,6686635:192184 -k1,20717:21552173,6686635:192184 -k1,20717:22395785,6686635:192184 -k1,20717:24611722,6686635:192185 -k1,20717:25159766,6686635:192184 -k1,20717:26396594,6686635:192184 -k1,20717:28411990,6686635:192184 -k1,20717:30574843,6686635:192185 -k1,20717:31923737,6686635:192184 -k1,20717:32583029,6686635:0 -) -(1,20718:6797234,7528123:25785795,505283,126483 -g1,20717:8015548,7528123 -g1,20717:9387216,7528123 -g1,20717:11194043,7528123 -g1,20717:11924769,7528123 -g1,20717:13994396,7528123 -g1,20717:14845053,7528123 -k1,20718:32583029,7528123:15998650 -g1,20718:32583029,7528123 -) -] -g1,20718:32583029,7654606 -) -h1,20718:6630773,7654606:0,0,0 -(1,20720:6630773,10462174:25952256,32768,229376 -(1,20720:6630773,10462174:0,32768,229376 -(1,20720:6630773,10462174:5505024,32768,229376 -r1,20753:12135797,10462174:5505024,262144,229376 -) -k1,20720:6630773,10462174:-5505024 -) -(1,20720:6630773,10462174:25952256,32768,0 -r1,20753:32583029,10462174:25952256,32768,0 -) -) -(1,20720:6630773,12066502:25952256,606339,14155 -(1,20720:6630773,12066502:2464678,582746,14155 -g1,20720:6630773,12066502 -g1,20720:9095451,12066502 -) -k1,20720:32583030,12066502:20355220 -g1,20720:32583030,12066502 -) -(1,20724:6630773,13301206:25952256,513147,134348 -k1,20723:7528562,13301206:269954 -k1,20723:10800718,13301206:269953 -k1,20723:13325766,13301206:269954 -k1,20723:14587280,13301206:269954 -k1,20723:15876318,13301206:269953 -k1,20723:19451253,13301206:269954 -k1,20723:20380499,13301206:269954 -k1,20723:22151226,13301206:269953 -k1,20723:24621879,13301206:269954 -k1,20723:26449624,13301206:269954 -k1,20723:29963609,13301206:269953 -k1,20723:31563944,13301206:269954 -k1,20723:32583029,13301206:0 -) -(1,20724:6630773,14142694:25952256,513147,126483 -k1,20723:9652739,14142694:259623 -k1,20723:12781529,14142694:259624 -k1,20723:13700444,14142694:259623 -k1,20723:14315928,14142694:259624 -k1,20723:15852848,14142694:259623 -k1,20723:17104031,14142694:259623 -k1,20723:20238719,14142694:259624 -k1,20723:22196380,14142694:259623 -k1,20723:25692826,14142694:259623 -k1,20723:28302571,14142694:259624 -k1,20723:29245079,14142694:259623 -k1,20723:31316118,14142694:259624 -k1,20723:32227169,14142694:259623 -k1,20723:32583029,14142694:0 -) -(1,20724:6630773,14984182:25952256,513147,126483 -k1,20723:8041435,14984182:253952 -k1,20723:10752332,14984182:253952 -k1,20723:11821552,14984182:253952 -k1,20723:13141774,14984182:253951 -k1,20723:14849315,14984182:253952 -k1,20723:16651883,14984182:253952 -k1,20723:20080399,14984182:253952 -k1,20723:21017236,14984182:253952 -k1,20723:23173698,14984182:253952 -k1,20723:24419210,14984182:253952 -k1,20723:26186387,14984182:253951 -k1,20723:27091767,14984182:253952 -k1,20723:28623016,14984182:253952 -k1,20723:29896053,14984182:253952 -k1,20724:32583029,14984182:0 -) -(1,20724:6630773,15825670:25952256,505283,134348 -k1,20723:8487146,15825670:258605 -k1,20723:9428636,15825670:258605 -k1,20723:13369054,15825670:258605 -k1,20723:14699828,15825670:258605 -k1,20723:17285616,15825670:258605 -k1,20723:18874601,15825670:258604 -k1,20723:22590230,15825670:258605 -k1,20723:24620273,15825670:258605 -k1,20723:26451087,15825670:258605 -k1,20723:28498170,15825670:258605 -k1,20723:32583029,15825670:0 -) -(1,20724:6630773,16667158:25952256,513147,134348 -k1,20723:10589366,16667158:168646 -k1,20723:11949457,16667158:168646 -k1,20723:13576278,16667158:168645 -k1,20723:15030085,16667158:168646 -k1,20723:16190291,16667158:168646 -k1,20723:19564303,16667158:168646 -k1,20723:20924394,16667158:168646 -k1,20723:21559001,16667158:168646 -k1,20723:24790799,16667158:168645 -k1,20723:25642330,16667158:168646 -k1,20723:27050917,16667158:168646 -k1,20723:29754496,16667158:168646 -k1,20723:32583029,16667158:0 -) -(1,20724:6630773,17508646:25952256,513147,126483 -k1,20723:9486905,17508646:188161 -k1,20723:11906567,17508646:188161 -k1,20723:15532746,17508646:188160 -k1,20723:17664705,17508646:188161 -k1,20723:21732598,17508646:188161 -k1,20723:24415059,17508646:188161 -k1,20723:27693242,17508646:188160 -k1,20723:28567565,17508646:188161 -k1,20723:31391584,17508646:188161 -k1,20723:32583029,17508646:0 -) -(1,20724:6630773,18350134:25952256,513147,134348 -k1,20723:11460940,18350134:257065 -k1,20723:14979076,18350134:257065 -k1,20723:18308469,18350134:257065 -k1,20723:21475987,18350134:257064 -k1,20723:23693889,18350134:257065 -k1,20723:27177947,18350134:257065 -k1,20723:29095694,18350134:257065 -k1,20723:31227089,18350134:257065 -k1,20724:32583029,18350134:0 -) -(1,20724:6630773,19191622:25952256,505283,126483 -k1,20723:9708835,19191622:183992 -k1,20723:11903472,19191622:183992 -k1,20723:15012991,19191622:183992 -k1,20723:17687352,19191622:183993 -k1,20723:19756815,19191622:183992 -k1,20723:21638845,19191622:183992 -k1,20723:23788262,19191622:183992 -k1,20723:24623682,19191622:183992 -k1,20723:25163534,19191622:183992 -k1,20723:26798494,19191622:183993 -k1,20723:29280834,19191622:183992 -k1,20723:30596633,19191622:183992 -k1,20723:32583029,19191622:0 -) -(1,20724:6630773,20033110:25952256,505283,134348 -k1,20723:9216227,20033110:251062 -k1,20723:11873117,20033110:251063 -k1,20723:12740217,20033110:251062 -k1,20723:15047800,20033110:251063 -k1,20723:15926697,20033110:251062 -k1,20723:18843765,20033110:251063 -k1,20723:19746255,20033110:251062 -k1,20723:22855343,20033110:251063 -k1,20723:25265816,20033110:251062 -k1,20723:27213606,20033110:251063 -k1,20723:29799060,20033110:251062 -k1,20723:32583029,20033110:0 -) -(1,20724:6630773,20874598:25952256,513147,134348 -k1,20723:9622492,20874598:187433 -k1,20723:12215751,20874598:187433 -k1,20723:14114328,20874598:187432 -k1,20723:15406043,20874598:187433 -k1,20723:17855779,20874598:187433 -k1,20723:19062297,20874598:187433 -k1,20723:20736742,20874598:187433 -k1,20723:23258567,20874598:187433 -k1,20723:25851826,20874598:187432 -k1,20723:26800787,20874598:187433 -k1,20723:29175812,20874598:187433 -k1,20723:32583029,20874598:0 -) -(1,20724:6630773,21716086:25952256,505283,126483 -k1,20723:9072364,21716086:186497 -k1,20723:9910288,21716086:186496 -k1,20723:10452645,21716086:186497 -k1,20723:12090108,21716086:186496 -k1,20723:14059840,21716086:186497 -k1,20723:15759562,21716086:186496 -k1,20723:16562097,21716086:186497 -k1,20723:17951835,21716086:186497 -k1,20723:19549977,21716086:186496 -k1,20723:23143691,21716086:186497 -k1,20723:25585281,21716086:186496 -k1,20723:28058985,21716086:186497 -k1,20723:29237041,21716086:186496 -k1,20723:31773659,21716086:186497 -k1,20723:32583029,21716086:0 -) -(1,20724:6630773,22557574:25952256,513147,126483 -k1,20723:7875907,22557574:226049 -k1,20723:9071232,22557574:226048 -k1,20723:9767174,22557574:226049 -k1,20723:10524720,22557574:226049 -k1,20723:12036584,22557574:226048 -k1,20723:14892593,22557574:226049 -k1,20723:15770070,22557574:226049 -k1,20723:17925499,22557574:226049 -k1,20723:19434742,22557574:226048 -k1,20723:21647187,22557574:226049 -k1,20723:25910254,22557574:226049 -k1,20723:27420808,22557574:226048 -k1,20723:29657502,22557574:226049 -k1,20723:32583029,22557574:0 -) -(1,20724:6630773,23399062:25952256,513147,134348 -g1,20723:9320370,23399062 -g1,20723:11721609,23399062 -g1,20723:12572266,23399062 -(1,20723:12572266,23399062:0,452978,122846 -r1,20753:16799362,23399062:4227096,575824,122846 -k1,20723:12572266,23399062:-4227096 -) -(1,20723:12572266,23399062:4227096,452978,122846 -k1,20723:12572266,23399062:3277 -h1,20723:16796085,23399062:0,411205,112570 -) -g1,20723:16998591,23399062 -g1,20723:18765441,23399062 -k1,20724:32583029,23399062:10815385 -g1,20724:32583029,23399062 -) -(1,20725:6630773,25490322:25952256,555811,139132 -(1,20725:6630773,25490322:2899444,534184,12975 -g1,20725:6630773,25490322 -g1,20725:9530217,25490322 -) -g1,20725:13204624,25490322 -k1,20725:32583029,25490322:16741367 -g1,20725:32583029,25490322 -) -(1,20728:6630773,26725026:25952256,513147,134348 -k1,20727:8064221,26725026:236761 -k1,20727:10287379,26725026:236762 -k1,20727:12037366,26725026:236761 -k1,20727:13035656,26725026:236762 -k1,20727:15537997,26725026:236761 -k1,20727:16306256,26725026:236762 -(1,20727:16306256,26725026:0,452978,122846 -r1,20753:20533352,26725026:4227096,575824,122846 -k1,20727:16306256,26725026:-4227096 -) -(1,20727:16306256,26725026:4227096,452978,122846 -k1,20727:16306256,26725026:3277 -h1,20727:20530075,26725026:0,411205,112570 -) -k1,20727:20770113,26725026:236761 -k1,20727:22400826,26725026:236762 -k1,20727:24903167,26725026:236761 -k1,20727:28716229,26725026:236762 -k1,20727:29580825,26725026:236761 -k1,20727:32583029,26725026:0 -) -(1,20728:6630773,27566514:25952256,513147,126483 -k1,20727:10310911,27566514:242119 -k1,20727:12869728,27566514:242119 -k1,20727:14103407,27566514:242119 -k1,20727:16727104,27566514:242119 -k1,20727:17655384,27566514:242118 -k1,20727:21604219,27566514:242119 -k1,20727:25045806,27566514:242119 -k1,20727:26681876,27566514:242119 -k1,20727:30708699,27566514:242119 -k1,20727:32583029,27566514:0 -) -(1,20728:6630773,28408002:25952256,513147,134348 -k1,20727:10534292,28408002:292485 -k1,20727:12508431,28408002:292485 -k1,20727:15684501,28408002:292486 -k1,20727:17669126,28408002:292485 -k1,20727:19995849,28408002:292485 -k1,20727:23757810,28408002:292485 -k1,20727:25246982,28408002:292485 -(1,20727:25246982,28408002:0,452978,115847 -r1,20753:28418942,28408002:3171960,568825,115847 -k1,20727:25246982,28408002:-3171960 -) -(1,20727:25246982,28408002:3171960,452978,115847 -k1,20727:25246982,28408002:3277 -h1,20727:28415665,28408002:0,411205,112570 -) -k1,20727:28711428,28408002:292486 -k1,20727:29951564,28408002:292485 -k1,20727:31470228,28408002:292485 -k1,20728:32583029,28408002:0 -) -(1,20728:6630773,29249490:25952256,513147,134348 -k1,20727:8839437,29249490:239307 -k1,20727:12339815,29249490:239307 -k1,20727:13110619,29249490:239307 -k1,20727:15044688,29249490:239308 -k1,20727:15900033,29249490:239307 -k1,20727:18331519,29249490:239307 -k1,20727:19762271,29249490:239307 -k1,20727:22111182,29249490:239307 -k1,20727:23116605,29249490:239307 -k1,20727:24582092,29249490:239308 -k1,20727:27690565,29249490:239307 -k1,20727:28545910,29249490:239307 -k1,20727:29804302,29249490:239307 -k1,20727:32583029,29249490:0 -) -(1,20728:6630773,30090978:25952256,513147,134348 -k1,20727:8891250,30090978:274081 -k1,20727:11124857,30090978:274081 -k1,20727:12085100,30090978:274081 -k1,20727:13378266,30090978:274081 -k1,20727:14921124,30090978:274081 -k1,20727:15854497,30090978:274081 -k1,20727:17825305,30090978:274081 -k1,20727:20968551,30090978:274080 -k1,20727:21774129,30090978:274081 -k1,20727:22809738,30090978:274081 -k1,20727:25349399,30090978:274081 -k1,20727:28005058,30090978:274081 -k1,20727:30638435,30090978:274081 -k1,20727:31563944,30090978:274081 -k1,20727:32583029,30090978:0 -) -(1,20728:6630773,30932466:25952256,513147,126483 -k1,20727:8249383,30932466:184682 -k1,20727:9876512,30932466:184682 -k1,20727:12665595,30932466:184682 -k1,20727:16304681,30932466:184683 -(1,20727:16304681,30932466:0,459977,115847 -r1,20753:20180065,30932466:3875384,575824,115847 -k1,20727:16304681,30932466:-3875384 -) -(1,20727:16304681,30932466:3875384,459977,115847 -k1,20727:16304681,30932466:3277 -h1,20727:20176788,30932466:0,411205,112570 -) -k1,20727:20538417,30932466:184682 -k1,20727:22735054,30932466:184682 -k1,20727:23938821,30932466:184682 -k1,20727:25454539,30932466:184682 -k1,20727:27647244,30932466:184682 -k1,20727:28483355,30932466:184683 -k1,20727:29415803,30932466:184682 -k1,20727:30708699,30932466:184682 -k1,20727:32583029,30932466:0 -) -(1,20728:6630773,31773954:25952256,513147,126483 -g1,20727:9855799,31773954 -g1,20727:12065673,31773954 -g1,20727:15190429,31773954 -k1,20728:32583029,31773954:14902232 -g1,20728:32583029,31773954 -) -v1,20730:6630773,32933096:0,393216,0 -(1,20731:6630773,38529091:25952256,5989211,0 -g1,20731:6630773,38529091 -g1,20731:6303093,38529091 -r1,20753:6401397,38529091:98304,5989211,0 -g1,20731:6600626,38529091 -g1,20731:6797234,38529091 -[1,20731:6797234,38529091:25785795,5989211,0 -(1,20731:6797234,33353680:25785795,813800,267386 -(1,20730:6797234,33353680:0,813800,267386 -r1,20753:8134168,33353680:1336934,1081186,267386 -k1,20730:6797234,33353680:-1336934 -) -(1,20730:6797234,33353680:1336934,813800,267386 -) -k1,20730:8317366,33353680:183198 -k1,20730:8645046,33353680:327680 -k1,20730:11285189,33353680:183198 -k1,20730:12943603,33353680:183199 -k1,20730:13936171,33353680:183198 -k1,20730:15890152,33353680:183198 -k1,20730:16882720,33353680:183198 -k1,20730:18954011,33353680:183199 -k1,20730:22178080,33353680:183198 -k1,20730:23122806,33353680:183198 -k1,20730:26745989,33353680:183198 -k1,20730:27615350,33353680:183199 -k1,20730:30115246,33353680:183198 -k1,20730:31773659,33353680:183198 -k1,20730:32583029,33353680:0 -) -(1,20731:6797234,34195168:25785795,513147,134348 -k1,20730:8771018,34195168:203001 -k1,20730:9783388,34195168:203000 -k1,20730:13259912,34195168:203001 -k1,20730:15309063,34195168:203001 -k1,20730:16194949,34195168:203001 -k1,20730:19613145,34195168:203000 -k1,20730:20443981,34195168:203001 -k1,20730:21666067,34195168:203001 -k1,20730:23607083,34195168:203001 -(1,20730:23607083,34195168:0,452978,115847 -r1,20753:27130755,34195168:3523672,568825,115847 -k1,20730:23607083,34195168:-3523672 -) -(1,20730:23607083,34195168:3523672,452978,115847 -k1,20730:23607083,34195168:3277 -h1,20730:27127478,34195168:0,411205,112570 -) -k1,20730:27333755,34195168:203000 -k1,20730:30841737,34195168:203001 -k1,20730:32583029,34195168:0 -) -(1,20731:6797234,35036656:25785795,513147,134348 -k1,20730:8827334,35036656:163635 -k1,20730:9642397,35036656:163635 -k1,20730:10825117,35036656:163635 -k1,20730:12604870,35036656:163635 -k1,20730:13427798,35036656:163636 -k1,20730:14610518,35036656:163635 -k1,20730:18564100,35036656:163635 -k1,20730:19387027,35036656:163635 -k1,20730:20569747,35036656:163635 -k1,20730:23257829,35036656:163635 -k1,20730:24768884,35036656:163635 -k1,20730:26123964,35036656:163635 -k1,20730:28305454,35036656:163636 -k1,20730:28946846,35036656:163635 -k1,20730:30129566,35036656:163635 -k1,20730:31900144,35036656:163635 -k1,20730:32583029,35036656:0 -) -(1,20731:6797234,35878144:25785795,513147,134348 -k1,20730:7810552,35878144:172491 -k1,20730:11047506,35878144:172490 -k1,20730:12211557,35878144:172491 -k1,20730:14969443,35878144:172491 -k1,20730:15824819,35878144:172491 -k1,20730:16931852,35878144:172490 -k1,20730:17755771,35878144:172491 -k1,20730:18284122,35878144:172491 -k1,20730:21214368,35878144:172491 -k1,20730:22002896,35878144:172490 -k1,20730:23194472,35878144:172491 -k1,20730:25395958,35878144:172491 -k1,20730:27265176,35878144:172491 -k1,20730:28570128,35878144:172490 -k1,20730:29490385,35878144:172491 -k1,20730:32583029,35878144:0 -) -(1,20731:6797234,36719632:25785795,513147,134348 -k1,20730:10701541,36719632:184484 -k1,20730:11545317,36719632:184484 -k1,20730:12748886,36719632:184484 -k1,20730:15093437,36719632:184484 -k1,20730:16231470,36719632:184484 -k1,20730:18586506,36719632:184484 -k1,20730:21163709,36719632:184484 -k1,20730:21704053,36719632:184484 -k1,20730:23504655,36719632:184484 -k1,20730:25544463,36719632:184484 -k1,20730:26996413,36719632:184484 -k1,20730:27536757,36719632:184484 -k1,20730:32583029,36719632:0 -) -(1,20731:6797234,37561120:25785795,513147,134348 -k1,20730:8187533,37561120:233589 -k1,20730:9182650,37561120:233589 -k1,20730:11603831,37561120:233589 -k1,20730:12193280,37561120:233589 -k1,20730:14544337,37561120:233589 -k1,20730:15646278,37561120:233589 -k1,20730:17410133,37561120:233589 -k1,20730:18295150,37561120:233589 -k1,20730:20769415,37561120:233589 -k1,20730:22022089,37561120:233589 -k1,20730:25320142,37561120:233589 -k1,20730:27240628,37561120:233589 -k1,20730:28421868,37561120:233589 -k1,20730:31490544,37561120:233589 -k1,20731:32583029,37561120:0 -) -(1,20731:6797234,38402608:25785795,513147,126483 -(1,20730:6797234,38402608:0,452978,115847 -r1,20753:8562347,38402608:1765113,568825,115847 -k1,20730:6797234,38402608:-1765113 -) -(1,20730:6797234,38402608:1765113,452978,115847 -k1,20730:6797234,38402608:3277 -h1,20730:8559070,38402608:0,411205,112570 -) -g1,20730:8761576,38402608 -g1,20730:11287988,38402608 -g1,20730:12154373,38402608 -(1,20730:12154373,38402608:0,452978,115847 -r1,20753:13919486,38402608:1765113,568825,115847 -k1,20730:12154373,38402608:-1765113 -) -(1,20730:12154373,38402608:1765113,452978,115847 -k1,20730:12154373,38402608:3277 -h1,20730:13916209,38402608:0,411205,112570 -) -g1,20730:14118715,38402608 -g1,20730:15265595,38402608 -g1,20730:15820684,38402608 -g1,20730:17577704,38402608 -g1,20730:19742358,38402608 -g1,20730:21335538,38402608 -(1,20730:21335538,38402608:0,452978,122846 -r1,20753:25562634,38402608:4227096,575824,122846 -k1,20730:21335538,38402608:-4227096 -) -(1,20730:21335538,38402608:4227096,452978,122846 -k1,20730:21335538,38402608:3277 -h1,20730:25559357,38402608:0,411205,112570 -) -k1,20731:32583029,38402608:6846725 -g1,20731:32583029,38402608 -) -] -g1,20731:32583029,38529091 -) -h1,20731:6630773,38529091:0,0,0 -(1,20734:6630773,39688234:25952256,513147,134348 -h1,20733:6630773,39688234:983040,0,0 -k1,20733:9266770,39688234:162668 -k1,20733:10448523,39688234:162668 -k1,20733:12876771,39688234:162668 -(1,20733:12876771,39688234:0,452978,122846 -r1,20753:17103867,39688234:4227096,575824,122846 -k1,20733:12876771,39688234:-4227096 -) -(1,20733:12876771,39688234:4227096,452978,122846 -k1,20733:12876771,39688234:3277 -h1,20733:17100590,39688234:0,411205,112570 -) -k1,20733:17266534,39688234:162667 -k1,20733:18533484,39688234:162668 -k1,20733:19443918,39688234:162668 -k1,20733:21572011,39688234:162668 -k1,20733:22386107,39688234:162668 -k1,20733:22904635,39688234:162668 -k1,20733:24518270,39688234:162668 -k1,20733:25332365,39688234:162667 -k1,20733:27757336,39688234:162668 -k1,20733:28551771,39688234:162668 -k1,20733:29180400,39688234:162668 -k1,20733:32583029,39688234:0 -) -(1,20734:6630773,40529722:25952256,513147,126483 -k1,20733:9620979,40529722:227863 -k1,20733:10500271,40529722:227864 -k1,20733:11747219,40529722:227863 -k1,20733:14570964,40529722:227864 -k1,20733:15790387,40529722:227863 -k1,20733:18223538,40529722:227864 -k1,20733:20149439,40529722:227863 -k1,20733:22418749,40529722:227864 -k1,20733:23274447,40529722:227863 -k1,20733:24705552,40529722:227864 -k1,20733:27594832,40529722:227863 -k1,20733:28691048,40529722:227864 -k1,20733:31563944,40529722:227863 -k1,20733:32583029,40529722:0 -) -(1,20734:6630773,41371210:25952256,513147,134348 -k1,20733:9138508,41371210:242155 -k1,20733:10814592,41371210:242156 -k1,20733:12325524,41371210:242155 -k1,20733:13961631,41371210:242156 -k1,20733:14559646,41371210:242155 -k1,20733:16661058,41371210:242156 -k1,20733:18059923,41371210:242155 -k1,20733:19493523,41371210:242155 -k1,20733:20754764,41371210:242156 -k1,20733:23262499,41371210:242155 -k1,20733:26580915,41371210:242156 -k1,20733:28154106,41371210:242155 -k1,20733:29790213,41371210:242156 -k1,20733:31189078,41371210:242155 -k1,20733:32583029,41371210:0 -) -(1,20734:6630773,42212698:25952256,513147,7863 -k1,20734:32583029,42212698:24016322 -g1,20734:32583029,42212698 -) -v1,20736:6630773,43196530:0,393216,0 -(1,20743:6630773,45510161:25952256,2706847,196608 -g1,20743:6630773,45510161 -g1,20743:6630773,45510161 -g1,20743:6434165,45510161 -(1,20743:6434165,45510161:0,2706847,196608 -r1,20753:32779637,45510161:26345472,2903455,196608 -k1,20743:6434165,45510161:-26345472 -) -(1,20743:6434165,45510161:26345472,2706847,196608 -[1,20743:6630773,45510161:25952256,2510239,0 -(1,20738:6630773,43410440:25952256,410518,107478 -(1,20737:6630773,43410440:0,0,0 -g1,20737:6630773,43410440 -g1,20737:6630773,43410440 -g1,20737:6303093,43410440 -(1,20737:6303093,43410440:0,0,0 -) -g1,20737:6630773,43410440 -) -k1,20738:6630773,43410440:0 -g1,20738:12637541,43410440 -g1,20738:14850561,43410440 -g1,20738:16115144,43410440 -h1,20738:16431290,43410440:0,0,0 -k1,20738:32583029,43410440:16151739 -g1,20738:32583029,43410440 -) -(1,20739:6630773,44076618:25952256,404226,107478 -h1,20739:6630773,44076618:0,0,0 -g1,20739:6946919,44076618 -g1,20739:7263065,44076618 -g1,20739:11372959,44076618 -h1,20739:11689105,44076618:0,0,0 -k1,20739:32583029,44076618:20893924 -g1,20739:32583029,44076618 -) -(1,20740:6630773,44742796:25952256,404226,107478 -h1,20740:6630773,44742796:0,0,0 -g1,20740:6946919,44742796 -g1,20740:7263065,44742796 -g1,20740:13902125,44742796 -g1,20740:14534417,44742796 -k1,20740:14534417,44742796:0 -h1,20740:15482854,44742796:0,0,0 -k1,20740:32583030,44742796:17100176 -g1,20740:32583030,44742796 -) -(1,20741:6630773,45408974:25952256,410518,101187 -h1,20741:6630773,45408974:0,0,0 -g1,20741:6946919,45408974 -g1,20741:7263065,45408974 -g1,20741:7579211,45408974 -g1,20741:7895357,45408974 -g1,20741:8211503,45408974 -g1,20741:8527649,45408974 -g1,20741:8843795,45408974 -g1,20741:9159941,45408974 -g1,20741:9476087,45408974 -g1,20741:9792233,45408974 -g1,20741:10108379,45408974 -g1,20741:10424525,45408974 -g1,20741:10740671,45408974 -g1,20741:14534419,45408974 -g1,20741:15166711,45408974 -h1,20741:17695877,45408974:0,0,0 -k1,20741:32583029,45408974:14887152 -g1,20741:32583029,45408974 -) -] -) -g1,20743:32583029,45510161 -g1,20743:6630773,45510161 -g1,20743:6630773,45510161 -g1,20743:32583029,45510161 -g1,20743:32583029,45510161 -) -h1,20743:6630773,45706769:0,0,0 -] -(1,20753:32583029,45706769:0,0,0 -g1,20753:32583029,45706769 -) -) -] -(1,20753:6630773,47279633:25952256,0,0 -h1,20753:6630773,47279633:25952256,0,0 -) -] -(1,20753:4262630,4025873:0,0,0 -[1,20753:-473656,4025873:0,0,0 -(1,20753:-473656,-710413:0,0,0 -(1,20753:-473656,-710413:0,0,0 -g1,20753:-473656,-710413 -) -g1,20753:-473656,-710413 -) -] -) -] -!24946 -}374 +[1,20719:6630773,45706769:25952256,40108032,0 +(1,20680:6630773,6254097:25952256,555811,139132 +(1,20680:6630773,6254097:2899444,534184,12975 +g1,20680:6630773,6254097 +g1,20680:9530217,6254097 +) +g1,20680:12619978,6254097 +k1,20680:32583029,6254097:17777294 +g1,20680:32583029,6254097 +) +(1,20683:6630773,7512393:25952256,513147,134348 +k1,20682:7465003,7512393:206395 +k1,20682:8690482,7512393:206394 +k1,20682:10263958,7512393:206395 +k1,20682:11129645,7512393:206395 +k1,20682:13796261,7512393:206394 +k1,20682:16078837,7512393:206395 +k1,20682:17304317,7512393:206395 +k1,20682:20318273,7512393:206394 +k1,20682:21056165,7512393:206395 +k1,20682:22419270,7512393:206395 +k1,20682:24646794,7512393:206394 +k1,20682:25504617,7512393:206395 +k1,20682:26730097,7512393:206395 +k1,20682:28499525,7512393:206394 +k1,20682:29747942,7512393:206395 +k1,20682:32583029,7512393:0 +) +(1,20683:6630773,8377473:25952256,513147,134348 +k1,20682:7309685,8377473:212951 +k1,20682:8390987,8377473:212950 +k1,20682:10000510,8377473:212951 +k1,20682:11232545,8377473:212950 +(1,20682:11232545,8377473:0,452978,115847 +r1,20719:12997658,8377473:1765113,568825,115847 +k1,20682:11232545,8377473:-1765113 +) +(1,20682:11232545,8377473:1765113,452978,115847 +k1,20682:11232545,8377473:3277 +h1,20682:12994381,8377473:0,411205,112570 +) +k1,20682:13210609,8377473:212951 +k1,20682:14106444,8377473:212950 +(1,20682:14106444,8377473:0,459977,115847 +r1,20719:15519845,8377473:1413401,575824,115847 +k1,20682:14106444,8377473:-1413401 +) +(1,20682:14106444,8377473:1413401,459977,115847 +k1,20682:14106444,8377473:3277 +h1,20682:15516568,8377473:0,411205,112570 +) +k1,20682:15732796,8377473:212951 +k1,20682:18732992,8377473:212950 +k1,20682:19597371,8377473:212951 +k1,20682:20166181,8377473:212950 +k1,20682:22890472,8377473:212951 +k1,20682:24838815,8377473:212950 +(1,20682:24838815,8377473:0,452978,115847 +r1,20719:32583029,8377473:7744214,568825,115847 +k1,20682:24838815,8377473:-7744214 +) +(1,20682:24838815,8377473:7744214,452978,115847 +k1,20682:24838815,8377473:3277 +h1,20682:32579752,8377473:0,411205,112570 +) +k1,20682:32583029,8377473:0 +) +(1,20683:6630773,9242553:25952256,505283,126483 +k1,20682:7547326,9242553:233668 +(1,20682:7547326,9242553:0,459977,115847 +r1,20719:14939828,9242553:7392502,575824,115847 +k1,20682:7547326,9242553:-7392502 +) +(1,20682:7547326,9242553:7392502,459977,115847 +k1,20682:7547326,9242553:3277 +h1,20682:14936551,9242553:0,411205,112570 +) +k1,20682:15347165,9242553:233667 +k1,20682:16599918,9242553:233668 +k1,20682:19418981,9242553:233668 +k1,20682:22163988,9242553:233667 +k1,20682:24019672,9242553:233668 +k1,20682:26587732,9242553:233668 +k1,20682:29193147,9242553:233667 +k1,20682:30966911,9242553:233668 +k1,20682:32583029,9242553:0 +) +(1,20683:6630773,10107633:25952256,513147,134348 +k1,20682:10366197,10107633:149294 +k1,20682:11143325,10107633:149293 +k1,20682:12311704,10107633:149294 +k1,20682:13828079,10107633:149294 +k1,20682:14636665,10107633:149294 +k1,20682:17593520,10107633:149293 +(1,20682:17593520,10107633:0,452978,115847 +r1,20719:19358633,10107633:1765113,568825,115847 +k1,20682:17593520,10107633:-1765113 +) +(1,20682:17593520,10107633:1765113,452978,115847 +k1,20682:17593520,10107633:3277 +h1,20682:19355356,10107633:0,411205,112570 +) +k1,20682:19681597,10107633:149294 +k1,20682:20849976,10107633:149294 +k1,20682:23510610,10107633:149294 +k1,20682:25281919,10107633:149293 +k1,20682:27802961,10107633:149294 +k1,20682:30572384,10107633:149294 +k1,20682:32583029,10107633:0 +) +(1,20683:6630773,10972713:25952256,505283,134348 +g1,20682:7446040,10972713 +g1,20682:8664354,10972713 +g1,20682:10644196,10972713 +g1,20682:11241884,10972713 +g1,20682:12092541,10972713 +k1,20683:32583030,10972713:19918360 +g1,20683:32583030,10972713 +) +(1,20685:6630773,11837793:25952256,513147,134348 +h1,20684:6630773,11837793:983040,0,0 +k1,20684:8711540,11837793:144178 +k1,20684:10785098,11837793:144178 +k1,20684:11285136,11837793:144178 +k1,20684:12818677,11837793:144178 +k1,20684:14839151,11837793:144178 +k1,20684:18345327,11837793:144179 +k1,20684:18845365,11837793:144178 +k1,20684:21500883,11837793:144178 +(1,20684:21500883,11837793:0,452978,115847 +r1,20719:23617708,11837793:2116825,568825,115847 +k1,20684:21500883,11837793:-2116825 +) +(1,20684:21500883,11837793:2116825,452978,115847 +k1,20684:21500883,11837793:3277 +h1,20684:23614431,11837793:0,411205,112570 +) +k1,20684:23761886,11837793:144178 +k1,20684:27268061,11837793:144178 +k1,20684:30386918,11837793:144178 +k1,20684:32583029,11837793:0 +) +(1,20685:6630773,12702873:25952256,513147,126483 +k1,20684:11058688,12702873:297181 +k1,20684:12042030,12702873:297180 +k1,20684:13358296,12702873:297181 +k1,20684:15723792,12702873:297180 +k1,20684:16680265,12702873:297181 +k1,20684:18593563,12702873:297180 +k1,20684:22303204,12702873:297181 +k1,20684:24738168,12702873:297180 +k1,20684:25686777,12702873:297181 +k1,20684:26572470,12702873:297180 +k1,20684:27823200,12702873:297181 +k1,20684:29554308,12702873:297180 +k1,20684:30943974,12702873:297181 +k1,20684:32583029,12702873:0 +) +(1,20685:6630773,13567953:25952256,505283,126483 +g1,20684:9244348,13567953 +g1,20684:10059615,13567953 +g1,20684:11277929,13567953 +k1,20685:32583028,13567953:19854132 +g1,20685:32583028,13567953 +) +v1,20687:6630773,14252808:0,393216,0 +(1,20695:6630773,17332911:25952256,3473319,196608 +g1,20695:6630773,17332911 +g1,20695:6630773,17332911 +g1,20695:6434165,17332911 +(1,20695:6434165,17332911:0,3473319,196608 +r1,20719:32779637,17332911:26345472,3669927,196608 +k1,20695:6434165,17332911:-26345472 +) +(1,20695:6434165,17332911:26345472,3473319,196608 +[1,20695:6630773,17332911:25952256,3276711,0 +(1,20689:6630773,14487245:25952256,431045,106246 +(1,20688:6630773,14487245:0,0,0 +g1,20688:6630773,14487245 +g1,20688:6630773,14487245 +g1,20688:6303093,14487245 +(1,20688:6303093,14487245:0,0,0 +) +g1,20688:6630773,14487245 +) +g1,20689:8290543,14487245 +g1,20689:9286405,14487245 +g1,20689:13601806,14487245 +g1,20689:14265714,14487245 +g1,20689:16257438,14487245 +g1,20689:16921346,14487245 +g1,20689:17585254,14487245 +g1,20689:21236748,14487245 +g1,20689:23560426,14487245 +g1,20689:24224334,14487245 +g1,20689:28539736,14487245 +g1,20689:31527322,14487245 +h1,20689:32523184,14487245:0,0,0 +k1,20689:32583029,14487245:59845 +g1,20689:32583029,14487245 +) +(1,20690:6630773,15172100:25952256,0,0 +h1,20690:6630773,15172100:0,0,0 +h1,20690:6630773,15172100:0,0,0 +k1,20690:32583029,15172100:25952256 +g1,20690:32583029,15172100 +) +(1,20691:6630773,15856955:25952256,431045,112852 +h1,20691:6630773,15856955:0,0,0 +g1,20691:10946175,15856955 +g1,20691:13269853,15856955 +g1,20691:14265715,15856955 +g1,20691:16257439,15856955 +g1,20691:16921347,15856955 +g1,20691:19908932,15856955 +h1,20691:20240886,15856955:0,0,0 +k1,20691:32583029,15856955:12342143 +g1,20691:32583029,15856955 +) +(1,20692:6630773,16541810:25952256,424439,112852 +h1,20692:6630773,16541810:0,0,0 +g1,20692:6962727,16541810 +g1,20692:7294681,16541810 +g1,20692:11610082,16541810 +h1,20692:11942036,16541810:0,0,0 +k1,20692:32583028,16541810:20640992 +g1,20692:32583028,16541810 +) +(1,20693:6630773,17226665:25952256,424439,106246 +h1,20693:6630773,17226665:0,0,0 +g1,20693:6962727,17226665 +g1,20693:7294681,17226665 +k1,20693:7294681,17226665:0 +h1,20693:14597668,17226665:0,0,0 +k1,20693:32583028,17226665:17985360 +g1,20693:32583028,17226665 +) +] +) +g1,20695:32583029,17332911 +g1,20695:6630773,17332911 +g1,20695:6630773,17332911 +g1,20695:32583029,17332911 +g1,20695:32583029,17332911 +) +h1,20695:6630773,17529519:0,0,0 +(1,20698:6630773,26678721:25952256,9083666,0 +k1,20698:10523651,26678721:3892878 +h1,20697:10523651,26678721:0,0,0 +(1,20697:10523651,26678721:18166500,9083666,0 +(1,20697:10523651,26678721:18167376,9083688,0 +(1,20697:10523651,26678721:18167376,9083688,0 +(1,20697:10523651,26678721:0,9083688,0 +(1,20697:10523651,26678721:0,14208860,0 +(1,20697:10523651,26678721:28417720,14208860,0 +) +k1,20697:10523651,26678721:-28417720 +) +) +g1,20697:28691027,26678721 +) +) +) +g1,20698:28690151,26678721 +k1,20698:32583029,26678721:3892878 +) +v1,20705:6630773,27543801:0,393216,0 +(1,20708:6630773,30545866:25952256,3395281,0 +g1,20708:6630773,30545866 +g1,20708:6237557,30545866 +r1,20719:6368629,30545866:131072,3395281,0 +g1,20708:6567858,30545866 +g1,20708:6764466,30545866 +[1,20708:6764466,30545866:25818563,3395281,0 +(1,20706:6764466,27816278:25818563,665693,196608 +(1,20705:6764466,27816278:0,665693,196608 +r1,20719:8010564,27816278:1246098,862301,196608 +k1,20705:6764466,27816278:-1246098 +) +(1,20705:6764466,27816278:1246098,665693,196608 +) +k1,20705:8184356,27816278:173792 +k1,20705:9910574,27816278:327680 +k1,20705:11505187,27816278:173792 +k1,20705:13171890,27816278:173793 +k1,20705:14364767,27816278:173792 +k1,20705:15815856,27816278:173792 +k1,20705:17550060,27816278:173792 +k1,20705:18189813,27816278:173792 +k1,20705:19382691,27816278:173793 +k1,20705:22016705,27816278:173792 +k1,20705:23762706,27816278:173792 +k1,20705:24467995,27816278:173792 +k1,20705:26987322,27816278:173793 +k1,20705:28728735,27816278:173792 +k1,20705:29921612,27816278:173792 +k1,20705:32583029,27816278:0 +) +(1,20706:6764466,28681358:25818563,505283,126483 +g1,20705:9146044,28681358 +g1,20705:10595045,28681358 +g1,20705:11985719,28681358 +g1,20705:14151683,28681358 +g1,20705:15369997,28681358 +g1,20705:18230643,28681358 +k1,20706:32583029,28681358:12682529 +g1,20706:32583029,28681358 +) +(1,20708:6764466,29546438:25818563,505283,134348 +h1,20707:6764466,29546438:983040,0,0 +k1,20707:9679457,29546438:157236 +k1,20707:11572086,29546438:157236 +k1,20707:12748407,29546438:157236 +k1,20707:15365864,29546438:157235 +k1,20707:17268979,29546438:157236 +k1,20707:18756596,29546438:157236 +k1,20707:20870082,29546438:157236 +k1,20707:22197791,29546438:157236 +k1,20707:23885293,29546438:157236 +k1,20707:24693956,29546438:157235 +k1,20707:27091868,29546438:157236 +k1,20707:28268189,29546438:157236 +k1,20707:29921612,29546438:157236 +k1,20707:32583029,29546438:0 +) +(1,20708:6764466,30411518:25818563,505283,134348 +g1,20707:8992690,30411518 +g1,20707:9843347,30411518 +g1,20707:12662705,30411518 +g1,20707:13217794,30411518 +g1,20707:14694320,30411518 +g1,20707:16287500,30411518 +g1,20707:18258823,30411518 +g1,20707:19649497,30411518 +g1,20707:21945878,30411518 +k1,20708:32583029,30411518:8291617 +g1,20708:32583029,30411518 +) +] +g1,20708:32583029,30545866 +) +h1,20708:6630773,30545866:0,0,0 +(1,20714:6630773,33377026:25952256,32768,229376 +(1,20714:6630773,33377026:0,32768,229376 +(1,20714:6630773,33377026:5505024,32768,229376 +r1,20719:12135797,33377026:5505024,262144,229376 +) +k1,20714:6630773,33377026:-5505024 +) +(1,20714:6630773,33377026:25952256,32768,0 +r1,20719:32583029,33377026:25952256,32768,0 +) +) +(1,20714:6630773,35008878:25952256,606339,161218 +(1,20714:6630773,35008878:2464678,582746,14155 +g1,20714:6630773,35008878 +g1,20714:9095451,35008878 +) +g1,20714:12232529,35008878 +k1,20714:32583029,35008878:15683026 +g1,20714:32583029,35008878 +) +(1,20717:6630773,36267174:25952256,513147,126483 +k1,20716:8065168,36267174:237708 +k1,20716:9628015,36267174:237709 +k1,20716:10525015,36267174:237708 +k1,20716:14553325,36267174:237708 +k1,20716:15322531,36267174:237709 +k1,20716:16844745,36267174:237708 +k1,20716:18462642,36267174:237709 +k1,20716:19897693,36267174:237708 +k1,20716:21412698,36267174:237708 +k1,20716:24519573,36267174:237709 +k1,20716:26041787,36267174:237708 +k1,20716:27271055,36267174:237708 +k1,20716:28575035,36267174:237709 +k1,20716:31227089,36267174:237708 +k1,20717:32583029,36267174:0 +) +(1,20717:6630773,37132254:25952256,505283,134348 +k1,20716:8962963,37132254:211445 +k1,20716:10568360,37132254:211446 +(1,20716:10568360,37132254:0,452978,115847 +r1,20719:11981761,37132254:1413401,568825,115847 +k1,20716:10568360,37132254:-1413401 +) +(1,20716:10568360,37132254:1413401,452978,115847 +k1,20716:10568360,37132254:3277 +h1,20716:11978484,37132254:0,411205,112570 +) +k1,20716:12366876,37132254:211445 +k1,20716:14463792,37132254:211445 +k1,20716:15543590,37132254:211446 +k1,20716:17523852,37132254:211445 +k1,20716:18834991,37132254:211445 +k1,20716:23384919,37132254:211445 +k1,20716:25089931,37132254:211446 +k1,20716:25987538,37132254:211445 +k1,20716:28377400,37132254:211445 +k1,20716:30102072,37132254:211446 +k1,20716:30964945,37132254:211445 +k1,20717:32583029,37132254:0 +) +(1,20717:6630773,37997334:25952256,513147,134348 +k1,20716:8216838,37997334:133787 +k1,20716:10042765,37997334:133787 +k1,20716:12451962,37997334:133787 +k1,20716:13245041,37997334:133787 +k1,20716:14397913,37997334:133787 +k1,20716:16094734,37997334:133787 +k1,20716:18625827,37997334:133786 +k1,20716:20778123,37997334:133787 +k1,20716:22656478,37997334:133787 +k1,20716:23560968,37997334:133787 +k1,20716:25120818,37997334:133787 +k1,20716:26366096,37997334:133787 +k1,20716:28057674,37997334:133787 +k1,20716:29183021,37997334:133787 +k1,20716:32583029,37997334:0 +) +(1,20717:6630773,38862414:25952256,505283,126483 +k1,20716:7429304,38862414:147103 +k1,20716:8595492,38862414:147103 +k1,20716:11634699,38862414:147103 +k1,20716:15519976,38862414:147103 +k1,20716:17180305,38862414:147103 +k1,20716:17978836,38862414:147103 +k1,20716:19403235,38862414:147102 +k1,20716:20569423,38862414:147103 +k1,20716:24961948,38862414:147103 +k1,20716:26181220,38862414:147103 +k1,20716:27319883,38862414:147103 +k1,20716:30336152,38862414:147103 +k1,20716:31767761,38862414:147103 +k1,20716:32583029,38862414:0 +) +(1,20717:6630773,39727494:25952256,513147,126483 +k1,20716:7876613,39727494:179569 +k1,20716:11097707,39727494:179568 +k1,20716:15349028,39727494:179569 +k1,20716:16211481,39727494:179568 +k1,20716:19899192,39727494:179569 +k1,20716:23287403,39727494:179568 +k1,20716:25034593,39727494:179569 +k1,20716:26233246,39727494:179568 +k1,20716:30658237,39727494:179569 +k1,20717:32583029,39727494:0 +) +(1,20717:6630773,40592574:25952256,505283,134348 +k1,20716:8987663,40592574:146361 +k1,20716:10125584,40592574:146361 +k1,20716:12237370,40592574:146361 +k1,20716:13035158,40592574:146360 +k1,20716:13537379,40592574:146361 +k1,20716:15709458,40592574:146361 +k1,20716:17249770,40592574:146361 +(1,20716:17249770,40592574:0,452978,115847 +r1,20719:20773442,40592574:3523672,568825,115847 +k1,20716:17249770,40592574:-3523672 +) +(1,20716:17249770,40592574:3523672,452978,115847 +k1,20716:17249770,40592574:3277 +h1,20716:20770165,40592574:0,411205,112570 +) +k1,20716:20919803,40592574:146361 +k1,20716:21752326,40592574:146361 +k1,20716:23175984,40592574:146361 +k1,20716:25210436,40592574:146360 +k1,20716:27015513,40592574:146361 +k1,20716:28261568,40592574:146361 +k1,20716:29059357,40592574:146361 +(1,20716:29059357,40592574:0,452978,115847 +r1,20719:32583029,40592574:3523672,568825,115847 +k1,20716:29059357,40592574:-3523672 +) +(1,20716:29059357,40592574:3523672,452978,115847 +k1,20716:29059357,40592574:3277 +h1,20716:32579752,40592574:0,411205,112570 +) +k1,20716:32583029,40592574:0 +) +(1,20717:6630773,41457654:25952256,513147,126483 +k1,20716:9087140,41457654:196686 +k1,20716:9639685,41457654:196685 +k1,20716:11119566,41457654:196686 +k1,20716:13254807,41457654:196686 +k1,20716:14280522,41457654:196685 +k1,20716:16834538,41457654:196686 +k1,20716:18050308,41457654:196685 +k1,20716:21006715,41457654:196686 +k1,20716:24042421,41457654:196686 +k1,20716:24898398,41457654:196685 +k1,20716:29059357,41457654:196686 +(1,20716:29059357,41457654:0,452978,115847 +r1,20719:32583029,41457654:3523672,568825,115847 +k1,20716:29059357,41457654:-3523672 +) +(1,20716:29059357,41457654:3523672,452978,115847 +k1,20716:29059357,41457654:3277 +h1,20716:32579752,41457654:0,411205,112570 +) +k1,20716:32583029,41457654:0 +) +(1,20717:6630773,42322734:25952256,513147,122846 +k1,20716:8301102,42322734:177419 +k1,20716:9544791,42322734:177418 +k1,20716:11846887,42322734:177419 +k1,20716:13043390,42322734:177418 +k1,20716:15486389,42322734:177419 +(1,20716:15486389,42322734:0,452978,115847 +r1,20719:16899790,42322734:1413401,568825,115847 +k1,20716:15486389,42322734:-1413401 +) +(1,20716:15486389,42322734:1413401,452978,115847 +k1,20716:15486389,42322734:3277 +h1,20716:16896513,42322734:0,411205,112570 +) +k1,20716:17077208,42322734:177418 +k1,20716:17937512,42322734:177419 +(1,20716:17937512,42322734:0,452978,122846 +r1,20719:20406049,42322734:2468537,575824,122846 +k1,20716:17937512,42322734:-2468537 +) +(1,20716:17937512,42322734:2468537,452978,122846 +k1,20716:17937512,42322734:3277 +h1,20716:20402772,42322734:0,411205,112570 +) +k1,20716:20583468,42322734:177419 +k1,20716:21420178,42322734:177418 +k1,20716:24439238,42322734:177419 +k1,20716:25268084,42322734:177418 +k1,20716:28660699,42322734:177419 +k1,20716:32583029,42322734:0 +) +(1,20717:6630773,43187814:25952256,513147,134348 +k1,20716:10227824,43187814:292070 +k1,20716:12235626,43187814:292069 +k1,20716:13620181,43187814:292070 +k1,20716:14579407,43187814:292070 +(1,20716:14579407,43187814:0,452978,115847 +r1,20719:16696232,43187814:2116825,568825,115847 +k1,20716:14579407,43187814:-2116825 +) +(1,20716:14579407,43187814:2116825,452978,115847 +k1,20716:14579407,43187814:3277 +h1,20716:16692955,43187814:0,411205,112570 +) +k1,20716:16988301,43187814:292069 +k1,20716:17963256,43187814:292070 +(1,20716:17963256,43187814:0,452978,115847 +r1,20719:20431793,43187814:2468537,568825,115847 +k1,20716:17963256,43187814:-2468537 +) +(1,20716:17963256,43187814:2468537,452978,115847 +k1,20716:17963256,43187814:3277 +h1,20716:20428516,43187814:0,411205,112570 +) +k1,20716:20723862,43187814:292069 +k1,20716:24455917,43187814:292070 +k1,20716:26141938,43187814:292070 +k1,20716:29408686,43187814:292069 +k1,20716:31896867,43187814:292070 +k1,20716:32583029,43187814:0 +) +(1,20717:6630773,44052894:25952256,513147,126483 +k1,20716:8434203,44052894:240396 +k1,20716:11318322,44052894:240397 +k1,20716:12210146,44052894:240396 +k1,20716:13198308,44052894:240396 +k1,20716:15602047,44052894:240396 +k1,20716:16528606,44052894:240397 +k1,20716:20712959,44052894:240396 +k1,20716:23888057,44052894:240396 +k1,20716:25076104,44052894:240396 +k1,20716:28151588,44052894:240397 +k1,20716:29411069,44052894:240396 +(1,20716:29411069,44052894:0,452978,122846 +r1,20719:32583029,44052894:3171960,575824,122846 +k1,20716:29411069,44052894:-3171960 +) +(1,20716:29411069,44052894:3171960,452978,122846 +k1,20716:29411069,44052894:3277 +h1,20716:32579752,44052894:0,411205,112570 +) +k1,20716:32583029,44052894:0 +) +(1,20717:6630773,44917974:25952256,505283,134348 +g1,20716:9819754,44917974 +g1,20716:11123265,44917974 +g1,20716:12070260,44917974 +g1,20716:13782715,44917974 +g1,20716:14633372,44917974 +g1,20716:16029944,44917974 +k1,20717:32583029,44917974:14200998 +g1,20717:32583029,44917974 +) +] +(1,20719:32583029,45706769:0,0,0 +g1,20719:32583029,45706769 +) +) +] +(1,20719:6630773,47279633:25952256,0,0 +h1,20719:6630773,47279633:25952256,0,0 +) +] +(1,20719:4262630,4025873:0,0,0 +[1,20719:-473656,4025873:0,0,0 +(1,20719:-473656,-710413:0,0,0 +(1,20719:-473656,-710413:0,0,0 +g1,20719:-473656,-710413 +) +g1,20719:-473656,-710413 +) +] +) +] +!21728 +}352 Input:3391:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3392:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3393:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -355365,4375 +350517,4527 @@ Input:3394:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConso Input:3395:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3396:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3397:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3398:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3399:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3400:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3401:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3402:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3403:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3404:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3405:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3406:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1516 -{375 -[1,20795:4262630,47279633:28320399,43253760,0 -(1,20795:4262630,4025873:0,0,0 -[1,20795:-473656,4025873:0,0,0 -(1,20795:-473656,-710413:0,0,0 -(1,20795:-473656,-644877:0,0,0 -k1,20795:-473656,-644877:-65536 +!670 +{353 +[1,20770:4262630,47279633:28320399,43253760,0 +(1,20770:4262630,4025873:0,0,0 +[1,20770:-473656,4025873:0,0,0 +(1,20770:-473656,-710413:0,0,0 +(1,20770:-473656,-644877:0,0,0 +k1,20770:-473656,-644877:-65536 ) -(1,20795:-473656,4736287:0,0,0 -k1,20795:-473656,4736287:5209943 +(1,20770:-473656,4736287:0,0,0 +k1,20770:-473656,4736287:5209943 ) -g1,20795:-473656,-710413 +g1,20770:-473656,-710413 ) ] ) -[1,20795:6630773,47279633:25952256,43253760,0 -[1,20795:6630773,4812305:25952256,786432,0 -(1,20795:6630773,4812305:25952256,513147,126483 -(1,20795:6630773,4812305:25952256,513147,126483 -g1,20795:3078558,4812305 -[1,20795:3078558,4812305:0,0,0 -(1,20795:3078558,2439708:0,1703936,0 -k1,20795:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,20795:2537886,2439708:1179648,16384,0 +[1,20770:6630773,47279633:25952256,43253760,0 +[1,20770:6630773,4812305:25952256,786432,0 +(1,20770:6630773,4812305:25952256,513147,126483 +(1,20770:6630773,4812305:25952256,513147,126483 +g1,20770:3078558,4812305 +[1,20770:3078558,4812305:0,0,0 +(1,20770:3078558,2439708:0,1703936,0 +k1,20770:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,20770:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,20795:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,20770:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,20795:3078558,4812305:0,0,0 -(1,20795:3078558,2439708:0,1703936,0 -g1,20795:29030814,2439708 -g1,20795:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,20795:36151628,1915420:16384,1179648,0 +[1,20770:3078558,4812305:0,0,0 +(1,20770:3078558,2439708:0,1703936,0 +g1,20770:29030814,2439708 +g1,20770:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,20770:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,20795:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,20770:37855564,2439708:1179648,16384,0 +) +) +k1,20770:3078556,2439708:-34777008 +) +] +[1,20770:3078558,4812305:0,0,0 +(1,20770:3078558,49800853:0,16384,2228224 +k1,20770:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,20770:2537886,49800853:1179648,16384,0 ) +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,20770:3078558,51504789:16384,1179648,0 ) -k1,20795:3078556,2439708:-34777008 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] -[1,20795:3078558,4812305:0,0,0 -(1,20795:3078558,49800853:0,16384,2228224 -k1,20795:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,20795:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,20795:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 ) ] +[1,20770:3078558,4812305:0,0,0 +(1,20770:3078558,49800853:0,16384,2228224 +g1,20770:29030814,49800853 +g1,20770:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,20770:36151628,51504789:16384,1179648,0 +) +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 +) +] +) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,20770:37855564,49800853:1179648,16384,0 +) +) +k1,20770:3078556,49800853:-34777008 +) +] +g1,20770:6630773,4812305 +k1,20770:21350816,4812305:13524666 +g1,20770:21999622,4812305 +g1,20770:25611966,4812305 +g1,20770:28956923,4812305 +g1,20770:29772190,4812305 +) +) +] +[1,20770:6630773,45706769:25952256,40108032,0 +(1,20770:6630773,45706769:25952256,40108032,0 +(1,20770:6630773,45706769:0,0,0 +g1,20770:6630773,45706769 +) +[1,20770:6630773,45706769:25952256,40108032,0 +v1,20719:6630773,6254097:0,393216,0 +(1,20720:6630773,10202077:25952256,4341196,0 +g1,20720:6630773,10202077 +g1,20720:6237557,10202077 +r1,20770:6368629,10202077:131072,4341196,0 +g1,20720:6567858,10202077 +g1,20720:6764466,10202077 +[1,20720:6764466,10202077:25818563,4341196,0 +(1,20720:6764466,6615274:25818563,754393,260573 +(1,20719:6764466,6615274:0,754393,260573 +r1,20770:8010564,6615274:1246098,1014966,260573 +k1,20719:6764466,6615274:-1246098 +) +(1,20719:6764466,6615274:1246098,754393,260573 +) +k1,20719:8222551,6615274:211987 +k1,20719:8550231,6615274:327680 +k1,20719:10536934,6615274:211988 +k1,20719:12637013,6615274:211987 +k1,20719:14814425,6615274:211987 +k1,20719:15677841,6615274:211988 +k1,20719:16245688,6615274:211987 +k1,20719:17734972,6615274:211987 +k1,20719:20361306,6615274:211988 +k1,20719:22308686,6615274:211987 +k1,20719:25960658,6615274:211987 +k1,20719:27364091,6615274:211988 +k1,20719:30258467,6615274:211987 +k1,20719:32583029,6615274:0 +) +(1,20720:6764466,7480354:25818563,513147,134348 +k1,20719:9774484,7480354:287652 +k1,20719:13522437,7480354:287652 +k1,20719:15698182,7480354:287653 +k1,20719:17951259,7480354:287652 +k1,20719:19632862,7480354:287652 +(1,20719:19632862,7480354:0,452978,115847 +r1,20770:23156534,7480354:3523672,568825,115847 +k1,20719:19632862,7480354:-3523672 +) +(1,20719:19632862,7480354:3523672,452978,115847 +k1,20719:19632862,7480354:3277 +h1,20719:23153257,7480354:0,411205,112570 +) +k1,20719:23444186,7480354:287652 +k1,20719:24723399,7480354:287653 +k1,20719:28188236,7480354:287652 +k1,20719:31966991,7480354:287652 +k1,20719:32583029,7480354:0 +) +(1,20720:6764466,8345434:25818563,513147,126483 +k1,20719:8619539,8345434:153758 +k1,20719:10517209,8345434:153757 +k1,20719:11330259,8345434:153758 +k1,20719:11839876,8345434:153757 +k1,20719:14320162,8345434:153758 +k1,20719:15924886,8345434:153757 +k1,20719:17275331,8345434:153758 +k1,20719:19560319,8345434:153757 +k1,20719:20245574,8345434:153758 +k1,20719:21683837,8345434:153757 +k1,20719:25297896,8345434:153758 +k1,20719:27339745,8345434:153757 +k1,20719:29541503,8345434:153758 +k1,20720:32583029,8345434:0 +) +(1,20720:6764466,9210514:25818563,513147,134348 +k1,20719:8435494,9210514:295427 +k1,20719:9417082,9210514:295426 +k1,20719:12470264,9210514:295427 +k1,20719:14776336,9210514:295427 +k1,20719:16957234,9210514:295427 +k1,20719:18244220,9210514:295426 +k1,20719:19558732,9210514:295427 +k1,20719:21507632,9210514:295427 +k1,20719:22750709,9210514:295426 +k1,20719:24747451,9210514:295427 +k1,20719:26786791,9210514:295427 +k1,20719:27768380,9210514:295427 +k1,20719:28873176,9210514:295426 +k1,20719:32051532,9210514:295427 +k1,20719:32583029,9210514:0 +) +(1,20720:6764466,10075594:25818563,505283,126483 +g1,20719:9593655,10075594 +g1,20719:12253106,10075594 +g1,20719:12808195,10075594 +(1,20719:12808195,10075594:0,452978,122846 +r1,20770:15276732,10075594:2468537,575824,122846 +k1,20719:12808195,10075594:-2468537 +) +(1,20719:12808195,10075594:2468537,452978,122846 +k1,20719:12808195,10075594:3277 +h1,20719:15273455,10075594:0,411205,112570 +) +g1,20719:15475961,10075594 +g1,20719:16326618,10075594 +(1,20719:16326618,10075594:0,452978,115847 +r1,20770:17740019,10075594:1413401,568825,115847 +k1,20719:16326618,10075594:-1413401 +) +(1,20719:16326618,10075594:1413401,452978,115847 +k1,20719:16326618,10075594:3277 +h1,20719:17736742,10075594:0,411205,112570 +) +k1,20720:32583029,10075594:14669340 +g1,20720:32583029,10075594 +) +] +g1,20720:32583029,10202077 +) +h1,20720:6630773,10202077:0,0,0 +(1,20723:6630773,11067157:25952256,505283,134348 +h1,20722:6630773,11067157:983040,0,0 +g1,20722:8766591,11067157 +g1,20722:10626502,11067157 +g1,20722:11181591,11067157 +g1,20722:13505497,11067157 +g1,20722:16366143,11067157 +g1,20722:18300765,11067157 +(1,20722:18300765,11067157:0,452978,115847 +r1,20770:20417590,11067157:2116825,568825,115847 +k1,20722:18300765,11067157:-2116825 +) +(1,20722:18300765,11067157:2116825,452978,115847 +k1,20722:18300765,11067157:3277 +h1,20722:20414313,11067157:0,411205,112570 +) +g1,20722:20616819,11067157 +g1,20722:21502210,11067157 +k1,20723:32583029,11067157:7941645 +g1,20723:32583029,11067157 +) +v1,20725:6630773,11752012:0,393216,0 +(1,20735:6630773,16175401:25952256,4816605,196608 +g1,20735:6630773,16175401 +g1,20735:6630773,16175401 +g1,20735:6434165,16175401 +(1,20735:6434165,16175401:0,4816605,196608 +r1,20770:32779637,16175401:26345472,5013213,196608 +k1,20735:6434165,16175401:-26345472 +) +(1,20735:6434165,16175401:26345472,4816605,196608 +[1,20735:6630773,16175401:25952256,4619997,0 +(1,20727:6630773,11986449:25952256,431045,112852 +(1,20726:6630773,11986449:0,0,0 +g1,20726:6630773,11986449 +g1,20726:6630773,11986449 +g1,20726:6303093,11986449 +(1,20726:6303093,11986449:0,0,0 +) +g1,20726:6630773,11986449 +) +k1,20727:6630773,11986449:0 +g1,20727:12937898,11986449 +g1,20727:15261576,11986449 +g1,20727:16589392,11986449 +h1,20727:16921346,11986449:0,0,0 +k1,20727:32583029,11986449:15661683 +g1,20727:32583029,11986449 +) +(1,20728:6630773,12671304:25952256,424439,112852 +h1,20728:6630773,12671304:0,0,0 +g1,20728:6962727,12671304 +g1,20728:7294681,12671304 +g1,20728:11610082,12671304 +h1,20728:11942036,12671304:0,0,0 +k1,20728:32583028,12671304:20640992 +g1,20728:32583028,12671304 +) +(1,20729:6630773,13356159:25952256,424439,112852 +h1,20729:6630773,13356159:0,0,0 +g1,20729:6962727,13356159 +g1,20729:7294681,13356159 +g1,20729:11942036,13356159 +g1,20729:12605944,13356159 +k1,20729:12605944,13356159:0 +h1,20729:14929622,13356159:0,0,0 +k1,20729:32583030,13356159:17653408 +g1,20729:32583030,13356159 +) +(1,20730:6630773,14041014:25952256,424439,112852 +h1,20730:6630773,14041014:0,0,0 +g1,20730:6962727,14041014 +g1,20730:7294681,14041014 +g1,20730:7626635,14041014 +g1,20730:7958589,14041014 +g1,20730:8290543,14041014 +g1,20730:8622497,14041014 +g1,20730:8954451,14041014 +g1,20730:9286405,14041014 +g1,20730:9618359,14041014 +g1,20730:9950313,14041014 +g1,20730:10282267,14041014 +g1,20730:12273991,14041014 +g1,20730:12937899,14041014 +k1,20730:12937899,14041014:0 +h1,20730:15925484,14041014:0,0,0 +k1,20730:32583029,14041014:16657545 +g1,20730:32583029,14041014 +) +(1,20731:6630773,14725869:25952256,407923,106246 +h1,20731:6630773,14725869:0,0,0 +g1,20731:6962727,14725869 +g1,20731:7294681,14725869 +g1,20731:7626635,14725869 +g1,20731:7958589,14725869 +g1,20731:8290543,14725869 +g1,20731:8622497,14725869 +g1,20731:8954451,14725869 +g1,20731:9286405,14725869 +g1,20731:9618359,14725869 +g1,20731:9950313,14725869 +g1,20731:10282267,14725869 +g1,20731:10946175,14725869 +g1,20731:11610083,14725869 +g1,20731:12605945,14725869 +g1,20731:13269853,14725869 +g1,20731:13933761,14725869 +k1,20731:13933761,14725869:0 +h1,20731:14597669,14725869:0,0,0 +k1,20731:32583029,14725869:17985360 +g1,20731:32583029,14725869 +) +(1,20732:6630773,15410724:25952256,424439,86428 +h1,20732:6630773,15410724:0,0,0 +g1,20732:6962727,15410724 +g1,20732:7294681,15410724 +g1,20732:7626635,15410724 +g1,20732:7958589,15410724 +g1,20732:8290543,15410724 +g1,20732:8622497,15410724 +g1,20732:8954451,15410724 +g1,20732:9286405,15410724 +g1,20732:9618359,15410724 +g1,20732:9950313,15410724 +g1,20732:10282267,15410724 +g1,20732:12273991,15410724 +g1,20732:12937899,15410724 +k1,20732:12937899,15410724:0 +h1,20732:15261577,15410724:0,0,0 +k1,20732:32583029,15410724:17321452 +g1,20732:32583029,15410724 +) +(1,20733:6630773,16095579:25952256,424439,79822 +h1,20733:6630773,16095579:0,0,0 +g1,20733:6962727,16095579 +g1,20733:7294681,16095579 +g1,20733:7626635,16095579 +g1,20733:7958589,16095579 +g1,20733:8290543,16095579 +g1,20733:8622497,16095579 +g1,20733:8954451,16095579 +g1,20733:9286405,16095579 +g1,20733:9618359,16095579 +g1,20733:9950313,16095579 +g1,20733:10282267,16095579 +h1,20733:12605945,16095579:0,0,0 +k1,20733:32583029,16095579:19977084 +g1,20733:32583029,16095579 +) +] +) +g1,20735:32583029,16175401 +g1,20735:6630773,16175401 +g1,20735:6630773,16175401 +g1,20735:32583029,16175401 +g1,20735:32583029,16175401 +) +h1,20735:6630773,16372009:0,0,0 +(1,20738:6630773,25521211:25952256,9083666,0 +k1,20738:10523651,25521211:3892878 +h1,20737:10523651,25521211:0,0,0 +(1,20737:10523651,25521211:18166500,9083666,0 +(1,20737:10523651,25521211:18167376,9083688,0 +(1,20737:10523651,25521211:18167376,9083688,0 +(1,20737:10523651,25521211:0,9083688,0 +(1,20737:10523651,25521211:0,14208860,0 +(1,20737:10523651,25521211:28417720,14208860,0 +) +k1,20737:10523651,25521211:-28417720 +) +) +g1,20737:28691027,25521211 +) +) +) +g1,20738:28690151,25521211 +k1,20738:32583029,25521211:3892878 +) +v1,20745:6630773,26386291:0,393216,0 +(1,20746:6630773,27658196:25952256,1665121,0 +g1,20746:6630773,27658196 +g1,20746:6237557,27658196 +r1,20770:6368629,27658196:131072,1665121,0 +g1,20746:6567858,27658196 +g1,20746:6764466,27658196 +[1,20746:6764466,27658196:25818563,1665121,0 +(1,20746:6764466,26658768:25818563,665693,196608 +(1,20745:6764466,26658768:0,665693,196608 +r1,20770:8010564,26658768:1246098,862301,196608 +k1,20745:6764466,26658768:-1246098 +) +(1,20745:6764466,26658768:1246098,665693,196608 +) +k1,20745:8168098,26658768:157534 +k1,20745:9894316,26658768:327680 +k1,20745:11349462,26658768:157533 +k1,20745:12900947,26658768:157534 +k1,20745:14077566,26658768:157534 +k1,20745:16245744,26658768:157533 +k1,20745:17062570,26658768:157534 +k1,20745:18239189,26658768:157534 +k1,20745:21799352,26658768:157534 +k1,20745:22608313,26658768:157533 +(1,20745:22608313,26658768:0,452978,115847 +r1,20770:26131985,26658768:3523672,568825,115847 +k1,20745:22608313,26658768:-3523672 +) +(1,20745:22608313,26658768:3523672,452978,115847 +k1,20745:22608313,26658768:3277 +h1,20745:26128708,26658768:0,411205,112570 +) +k1,20745:26289519,26658768:157534 +k1,20745:27098481,26658768:157534 +k1,20745:28618508,26658768:157533 +k1,20745:29795127,26658768:157534 +k1,20745:32583029,26658768:0 +) +(1,20746:6764466,27523848:25818563,513147,134348 +k1,20745:8347379,27523848:140466 +k1,20745:10277632,27523848:140465 +k1,20745:11749134,27523848:140466 +k1,20745:14071293,27523848:140465 +k1,20745:15542795,27523848:140466 +k1,20745:17158475,27523848:140465 +k1,20745:19862054,27523848:140466 +k1,20745:21699902,27523848:140466 +k1,20745:23031812,27523848:140465 +k1,20745:26989750,27523848:140466 +k1,20745:27789507,27523848:140465 +k1,20745:28949058,27523848:140466 +k1,20746:32583029,27523848:0 +k1,20746:32583029,27523848:0 +) +] +g1,20746:32583029,27658196 +) +h1,20746:6630773,27658196:0,0,0 +(1,20750:6630773,28523276:25952256,505283,126483 +h1,20749:6630773,28523276:983040,0,0 +k1,20749:8269126,28523276:185420 +k1,20749:8986043,28523276:185420 +k1,20749:12096990,28523276:185420 +k1,20749:15059826,28523276:185420 +k1,20749:15896674,28523276:185420 +k1,20749:17174579,28523276:185420 +k1,20749:18910581,28523276:185420 +k1,20749:21165628,28523276:185420 +k1,20749:23132317,28523276:185420 +k1,20749:25903132,28523276:185420 +k1,20749:26771437,28523276:185420 +k1,20749:28934734,28523276:185420 +k1,20749:30727752,28523276:185420 +k1,20749:31599334,28523276:185420 +k1,20750:32583029,28523276:0 +) +(1,20750:6630773,29388356:25952256,505283,134348 +k1,20749:10031238,29388356:206896 +k1,20749:11717281,29388356:206895 +(1,20749:11717281,29388356:0,452978,115847 +r1,20770:18406359,29388356:6689078,568825,115847 +k1,20749:11717281,29388356:-6689078 +) +(1,20749:11717281,29388356:6689078,452978,115847 +k1,20749:11717281,29388356:3277 +h1,20749:18403082,29388356:0,411205,112570 +) +k1,20749:18786925,29388356:206896 +k1,20749:20781642,29388356:206895 +k1,20749:22821579,29388356:206896 +k1,20749:25978249,29388356:206895 +k1,20749:28351765,29388356:206896 +k1,20749:29662942,29388356:206895 +k1,20749:30617604,29388356:206896 +k1,20749:32583029,29388356:0 +) +(1,20750:6630773,30253436:25952256,513147,134348 +k1,20749:7498894,30253436:216693 +k1,20749:8071447,30253436:216693 +k1,20749:10487528,30253436:216693 +k1,20749:11533251,30253436:216693 +k1,20749:12947286,30253436:216692 +k1,20749:15636652,30253436:216693 +k1,20749:16536230,30253436:216693 +k1,20749:17772008,30253436:216693 +k1,20749:19642174,30253436:216693 +k1,20749:21136164,30253436:216693 +k1,20749:22039019,30253436:216693 +k1,20749:23026415,30253436:216693 +k1,20749:24967359,30253436:216692 +k1,20749:26052404,30253436:216693 +k1,20749:27575230,30253436:216693 +k1,20749:29322189,30253436:216693 +k1,20749:30190310,30253436:216693 +k1,20749:32583029,30253436:0 +) +(1,20750:6630773,31118516:25952256,513147,134348 +k1,20749:7358344,31118516:269474 +k1,20749:8895285,31118516:269475 +k1,20749:9520619,31118516:269474 +k1,20749:11421285,31118516:269475 +k1,20749:12318594,31118516:269474 +k1,20749:13607153,31118516:269474 +k1,20749:15243709,31118516:269475 +k1,20749:16172475,31118516:269474 +k1,20749:16797809,31118516:269474 +k1,20749:19093002,31118516:269475 +k1,20749:20230828,31118516:269474 +k1,20749:21592788,31118516:269475 +(1,20749:21592788,31118516:0,452978,122846 +r1,20770:25819884,31118516:4227096,575824,122846 +k1,20749:21592788,31118516:-4227096 +) +(1,20749:21592788,31118516:4227096,452978,122846 +k1,20749:21592788,31118516:3277 +h1,20749:25816607,31118516:0,411205,112570 +) +k1,20749:26263028,31118516:269474 +k1,20749:27160337,31118516:269474 +k1,20749:28633053,31118516:269475 +k1,20749:31563944,31118516:269474 +k1,20749:32583029,31118516:0 +) +(1,20750:6630773,31983596:25952256,505283,134348 +k1,20749:8402779,31983596:221424 +k1,20749:9155700,31983596:221424 +k1,20749:9732984,31983596:221424 +k1,20749:13350485,31983596:221425 +k1,20749:16045238,31983596:221424 +k1,20749:17534128,31983596:221424 +k1,20749:18774637,31983596:221424 +k1,20749:20587931,31983596:221424 +k1,20749:22260322,31983596:221424 +k1,20749:23109581,31983596:221424 +k1,20749:25997010,31983596:221424 +k1,20749:26869863,31983596:221425 +k1,20749:28110372,31983596:221424 +k1,20749:29962987,31983596:221424 +k1,20749:31052763,31983596:221424 +k1,20749:32583029,31983596:0 +) +(1,20750:6630773,32848676:25952256,513147,126483 +k1,20749:7505679,32848676:223478 +k1,20749:10159231,32848676:223477 +k1,20749:11401794,32848676:223478 +k1,20749:15363445,32848676:223477 +k1,20749:18784425,32848676:223478 +k1,20749:19623940,32848676:223477 +k1,20749:22739522,32848676:223478 +k1,20749:24352362,32848676:223477 +k1,20749:26193924,32848676:223478 +k1,20749:27076693,32848676:223477 +k1,20749:28319256,32848676:223478 +k1,20749:30134603,32848676:223477 +k1,20749:31635378,32848676:223478 +k1,20749:32583029,32848676:0 +) +(1,20750:6630773,33713756:25952256,513147,134348 +g1,20749:7849087,33713756 +g1,20749:10604875,33713756 +g1,20749:11463396,33713756 +g1,20749:12681710,33713756 +k1,20750:32583029,33713756:18270128 +g1,20750:32583029,33713756 +) +v1,20752:6630773,34398611:0,393216,0 +(1,20761:6630773,38163569:25952256,4158174,196608 +g1,20761:6630773,38163569 +g1,20761:6630773,38163569 +g1,20761:6434165,38163569 +(1,20761:6434165,38163569:0,4158174,196608 +r1,20770:32779637,38163569:26345472,4354782,196608 +k1,20761:6434165,38163569:-26345472 +) +(1,20761:6434165,38163569:26345472,4158174,196608 +[1,20761:6630773,38163569:25952256,3961566,0 +(1,20754:6630773,34633048:25952256,431045,112852 +(1,20753:6630773,34633048:0,0,0 +g1,20753:6630773,34633048 +g1,20753:6630773,34633048 +g1,20753:6303093,34633048 +(1,20753:6303093,34633048:0,0,0 +) +g1,20753:6630773,34633048 +) +g1,20754:7294681,34633048 +g1,20754:8290543,34633048 +g1,20754:14597668,34633048 +g1,20754:16921346,34633048 +g1,20754:18249162,34633048 +h1,20754:18581116,34633048:0,0,0 +k1,20754:32583029,34633048:14001913 +g1,20754:32583029,34633048 +) +(1,20755:6630773,35317903:25952256,424439,112852 +h1,20755:6630773,35317903:0,0,0 +g1,20755:6962727,35317903 +g1,20755:7294681,35317903 +k1,20755:7294681,35317903:0 +h1,20755:11278128,35317903:0,0,0 +k1,20755:32583028,35317903:21304900 +g1,20755:32583028,35317903 +) +(1,20756:6630773,36002758:25952256,424439,106246 +h1,20756:6630773,36002758:0,0,0 +g1,20756:7294681,36002758 +g1,20756:7958589,36002758 +g1,20756:13269852,36002758 +g1,20756:13933760,36002758 +g1,20756:15261576,36002758 +h1,20756:15593530,36002758:0,0,0 +k1,20756:32583030,36002758:16989500 +g1,20756:32583030,36002758 +) +(1,20757:6630773,36687613:25952256,424439,112852 +h1,20757:6630773,36687613:0,0,0 +k1,20757:6852076,36687613:221303 +k1,20757:7073379,36687613:221303 +k1,20757:17253300,36687613:221303 +k1,20757:17806557,36687613:221303 +k1,20757:24666939,36687613:221303 +k1,20757:25220196,36687613:221303 +k1,20757:26769315,36687613:221303 +k1,20757:28318434,36687613:221303 +k1,20757:29867553,36687613:221303 +k1,20757:30420810,36687613:221303 +k1,20757:32301883,36687613:221303 +k1,20757:33851002,36687613:221303 +h1,20757:34182956,36687613:0,0,0 +k1,20757:34182956,36687613:0 +k1,20757:34182956,36687613:0 +) +(1,20758:6630773,37372468:25952256,424439,86428 +h1,20758:6630773,37372468:0,0,0 +g1,20758:6962727,37372468 +g1,20758:7294681,37372468 +g1,20758:7626635,37372468 +g1,20758:7958589,37372468 +g1,20758:8290543,37372468 +g1,20758:8622497,37372468 +g1,20758:8954451,37372468 +g1,20758:9286405,37372468 +g1,20758:9618359,37372468 +g1,20758:9950313,37372468 +g1,20758:10282267,37372468 +g1,20758:10614221,37372468 +g1,20758:10946175,37372468 +g1,20758:11278129,37372468 +g1,20758:11610083,37372468 +g1,20758:11942037,37372468 +g1,20758:12273991,37372468 +g1,20758:12605945,37372468 +g1,20758:12937899,37372468 +g1,20758:13269853,37372468 +g1,20758:13601807,37372468 +g1,20758:13933761,37372468 +g1,20758:14265715,37372468 +g1,20758:14597669,37372468 +g1,20758:14929623,37372468 +g1,20758:15261577,37372468 +g1,20758:15593531,37372468 +g1,20758:15925485,37372468 +g1,20758:16257439,37372468 +g1,20758:16589393,37372468 +g1,20758:16921347,37372468 +k1,20758:16921347,37372468:0 +h1,20758:21568702,37372468:0,0,0 +k1,20758:32583029,37372468:11014327 +g1,20758:32583029,37372468 +) +(1,20759:6630773,38057323:25952256,424439,106246 +h1,20759:6630773,38057323:0,0,0 +g1,20759:6962727,38057323 +g1,20759:7294681,38057323 +g1,20759:7626635,38057323 +g1,20759:7958589,38057323 +g1,20759:8290543,38057323 +g1,20759:8622497,38057323 +g1,20759:8954451,38057323 +g1,20759:9286405,38057323 +g1,20759:9618359,38057323 +g1,20759:9950313,38057323 +g1,20759:10282267,38057323 +g1,20759:10614221,38057323 +g1,20759:10946175,38057323 +g1,20759:11278129,38057323 +g1,20759:11610083,38057323 +g1,20759:11942037,38057323 +g1,20759:12273991,38057323 +g1,20759:12605945,38057323 +g1,20759:12937899,38057323 +g1,20759:13269853,38057323 +g1,20759:14929623,38057323 +g1,20759:15593531,38057323 +g1,20759:16921347,38057323 +g1,20759:18581117,38057323 +g1,20759:19245025,38057323 +g1,20759:20572841,38057323 +g1,20759:22232611,38057323 +g1,20759:22896519,38057323 +g1,20759:24224335,38057323 +g1,20759:25884105,38057323 +g1,20759:26548013,38057323 +h1,20759:27543875,38057323:0,0,0 +k1,20759:32583029,38057323:5039154 +g1,20759:32583029,38057323 +) +] +) +g1,20761:32583029,38163569 +g1,20761:6630773,38163569 +g1,20761:6630773,38163569 +g1,20761:32583029,38163569 +g1,20761:32583029,38163569 +) +h1,20761:6630773,38360177:0,0,0 +] +(1,20770:32583029,45706769:0,0,0 +g1,20770:32583029,45706769 +) +) +] +(1,20770:6630773,47279633:25952256,0,0 +h1,20770:6630773,47279633:25952256,0,0 +) +] +(1,20770:4262630,4025873:0,0,0 +[1,20770:-473656,4025873:0,0,0 +(1,20770:-473656,-710413:0,0,0 +(1,20770:-473656,-710413:0,0,0 +g1,20770:-473656,-710413 +) +g1,20770:-473656,-710413 +) +] +) +] +!22027 +}353 +Input:3398:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3399:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3400:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3401:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!388 +{354 +[1,20807:4262630,47279633:28320399,43253760,0 +(1,20807:4262630,4025873:0,0,0 +[1,20807:-473656,4025873:0,0,0 +(1,20807:-473656,-710413:0,0,0 +(1,20807:-473656,-644877:0,0,0 +k1,20807:-473656,-644877:-65536 ) +(1,20807:-473656,4736287:0,0,0 +k1,20807:-473656,4736287:5209943 ) +g1,20807:-473656,-710413 ) ] -[1,20795:3078558,4812305:0,0,0 -(1,20795:3078558,49800853:0,16384,2228224 -g1,20795:29030814,49800853 -g1,20795:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,20795:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +[1,20807:6630773,47279633:25952256,43253760,0 +[1,20807:6630773,4812305:25952256,786432,0 +(1,20807:6630773,4812305:25952256,505283,134348 +(1,20807:6630773,4812305:25952256,505283,134348 +g1,20807:3078558,4812305 +[1,20807:3078558,4812305:0,0,0 +(1,20807:3078558,2439708:0,1703936,0 +k1,20807:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,20807:2537886,2439708:1179648,16384,0 +) +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,20807:3078558,1915420:16384,1179648,0 +) +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,20795:37855564,49800853:1179648,16384,0 ) ) -k1,20795:3078556,49800853:-34777008 +] +[1,20807:3078558,4812305:0,0,0 +(1,20807:3078558,2439708:0,1703936,0 +g1,20807:29030814,2439708 +g1,20807:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,20807:36151628,1915420:16384,1179648,0 +) +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] -g1,20795:6630773,4812305 -k1,20795:21350816,4812305:13524666 -g1,20795:21999622,4812305 -g1,20795:25611966,4812305 -g1,20795:28956923,4812305 -g1,20795:29772190,4812305 ) +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,20807:37855564,2439708:1179648,16384,0 +) +) +k1,20807:3078556,2439708:-34777008 ) ] -[1,20795:6630773,45706769:25952256,40108032,0 -(1,20795:6630773,45706769:25952256,40108032,0 -(1,20795:6630773,45706769:0,0,0 -g1,20795:6630773,45706769 +[1,20807:3078558,4812305:0,0,0 +(1,20807:3078558,49800853:0,16384,2228224 +k1,20807:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,20807:2537886,49800853:1179648,16384,0 +) +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,20807:3078558,51504789:16384,1179648,0 +) +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) -[1,20795:6630773,45706769:25952256,40108032,0 -(1,20746:6630773,16109226:25952256,10510489,0 -k1,20746:12599879,16109226:5969106 -h1,20745:12599879,16109226:0,0,0 -(1,20745:12599879,16109226:14014044,10510489,0 -(1,20745:12599879,16109226:14014019,10510515,0 -(1,20745:12599879,16109226:14014019,10510515,0 -(1,20745:12599879,16109226:0,10510515,0 -(1,20745:12599879,16109226:0,14208860,0 -(1,20745:12599879,16109226:18945146,14208860,0 +] ) -k1,20745:12599879,16109226:-18945146 ) ) -g1,20745:26613898,16109226 +] +[1,20807:3078558,4812305:0,0,0 +(1,20807:3078558,49800853:0,16384,2228224 +g1,20807:29030814,49800853 +g1,20807:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,20807:36151628,51504789:16384,1179648,0 ) +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) +] ) -g1,20746:26613923,16109226 -k1,20746:32583029,16109226:5969106 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,20807:37855564,49800853:1179648,16384,0 ) -v1,20753:6630773,17475002:0,393216,0 -(1,20754:6630773,19713362:25952256,2631576,0 -g1,20754:6630773,19713362 -g1,20754:6303093,19713362 -r1,20795:6401397,19713362:98304,2631576,0 -g1,20754:6600626,19713362 -g1,20754:6797234,19713362 -[1,20754:6797234,19713362:25785795,2631576,0 -(1,20754:6797234,17907540:25785795,825754,196608 -(1,20753:6797234,17907540:0,825754,196608 -r1,20795:7890375,17907540:1093141,1022362,196608 -k1,20753:6797234,17907540:-1093141 ) -(1,20753:6797234,17907540:1093141,825754,196608 +k1,20807:3078556,49800853:-34777008 ) -k1,20753:8075146,17907540:184771 -k1,20753:9801364,17907540:327680 -k1,20753:12348707,17907540:184770 -k1,20753:13552563,17907540:184771 -k1,20753:15233520,17907540:184770 -k1,20753:16034329,17907540:184771 -k1,20753:17238184,17907540:184770 -k1,20753:20177433,17907540:184771 -k1,20753:22332871,17907540:184770 -k1,20753:23169070,17907540:184771 -k1,20753:24619997,17907540:184771 -k1,20753:25961477,17907540:184770 -k1,20753:26759010,17907540:184771 -k1,20753:27299640,17907540:184770 -k1,20753:29083489,17907540:184771 -k1,20753:30719881,17907540:184770 -k1,20753:31563944,17907540:184771 -k1,20753:32583029,17907540:0 -) -(1,20754:6797234,18749028:25785795,513147,134348 -k1,20753:10377271,18749028:142018 -k1,20753:12835988,18749028:142019 -k1,20753:14545627,18749028:142018 -k1,20753:17689848,18749028:142018 -(1,20753:17689848,18749028:0,452978,115847 -r1,20795:21213520,18749028:3523672,568825,115847 -k1,20753:17689848,18749028:-3523672 -) -(1,20753:17689848,18749028:3523672,452978,115847 -k1,20753:17689848,18749028:3277 -h1,20753:21210243,18749028:0,411205,112570 -) -k1,20753:21529209,18749028:142019 -(1,20753:21529209,18749028:0,452978,115847 -r1,20795:26811440,18749028:5282231,568825,115847 -k1,20753:21529209,18749028:-5282231 -) -(1,20753:21529209,18749028:5282231,452978,115847 -k1,20753:21529209,18749028:3277 -h1,20753:26808163,18749028:0,411205,112570 -) -k1,20753:27127128,18749028:142018 -(1,20753:27127128,18749028:0,452978,115847 -r1,20795:32409359,18749028:5282231,568825,115847 -k1,20753:27127128,18749028:-5282231 -) -(1,20753:27127128,18749028:5282231,452978,115847 -k1,20753:27127128,18749028:3277 -h1,20753:32406082,18749028:0,411205,112570 -) -k1,20754:32583029,18749028:0 -) -(1,20754:6797234,19590516:25785795,505283,122846 -(1,20753:6797234,19590516:0,452978,115847 -r1,20795:12431177,19590516:5633943,568825,115847 -k1,20753:6797234,19590516:-5633943 -) -(1,20753:6797234,19590516:5633943,452978,115847 -k1,20753:6797234,19590516:3277 -h1,20753:12427900,19590516:0,411205,112570 -) -g1,20753:12804076,19590516 -(1,20753:12804076,19590516:0,452978,122846 -r1,20795:17382884,19590516:4578808,575824,122846 -k1,20753:12804076,19590516:-4578808 -) -(1,20753:12804076,19590516:4578808,452978,122846 -k1,20753:12804076,19590516:3277 -h1,20753:17379607,19590516:0,411205,112570 -) -g1,20753:17755783,19590516 -(1,20753:17755783,19590516:0,452978,115847 -r1,20795:21982879,19590516:4227096,568825,115847 -k1,20753:17755783,19590516:-4227096 -) -(1,20753:17755783,19590516:4227096,452978,115847 -k1,20753:17755783,19590516:3277 -h1,20753:21979602,19590516:0,411205,112570 -) -g1,20753:22182108,19590516 -g1,20753:23572782,19590516 -(1,20753:23572782,19590516:0,452978,115847 -r1,20795:27799878,19590516:4227096,568825,115847 -k1,20753:23572782,19590516:-4227096 -) -(1,20753:23572782,19590516:4227096,452978,115847 -k1,20753:23572782,19590516:3277 -h1,20753:27796601,19590516:0,411205,112570 -) -k1,20754:32583029,19590516:4609481 -g1,20754:32583029,19590516 -) -] -g1,20754:32583029,19713362 -) -h1,20754:6630773,19713362:0,0,0 -v1,20757:6630773,21079138:0,393216,0 -(1,20758:6630773,27465975:25952256,6780053,0 -g1,20758:6630773,27465975 -g1,20758:6303093,27465975 -r1,20795:6401397,27465975:98304,6780053,0 -g1,20758:6600626,27465975 -g1,20758:6797234,27465975 -[1,20758:6797234,27465975:25785795,6780053,0 -(1,20758:6797234,21441211:25785795,755289,196608 -(1,20757:6797234,21441211:0,755289,196608 -r1,20795:8134168,21441211:1336934,951897,196608 -k1,20757:6797234,21441211:-1336934 -) -(1,20757:6797234,21441211:1336934,755289,196608 -) -k1,20757:8699086,21441211:564918 -k1,20757:9026766,21441211:327680 -k1,20757:12984482,21441211:564917 -k1,20757:16466407,21441211:564918 -k1,20757:18177550,21441211:564918 -(1,20757:18177550,21441211:0,452978,122846 -r1,20795:22404646,21441211:4227096,575824,122846 -k1,20757:18177550,21441211:-4227096 -) -(1,20757:18177550,21441211:4227096,452978,122846 -k1,20757:18177550,21441211:3277 -h1,20757:22401369,21441211:0,411205,112570 -) -k1,20757:22969563,21441211:564917 -k1,20757:24699711,21441211:564918 -k1,20757:25880667,21441211:564918 -k1,20757:28635142,21441211:564917 -k1,20757:30266331,21441211:564918 -k1,20757:32583029,21441211:0 -) -(1,20758:6797234,22282699:25785795,513147,134348 -k1,20757:8410010,22282699:540607 -k1,20757:11277799,22282699:540606 -k1,20757:12809966,22282699:540607 -k1,20757:17387590,22282699:540606 -k1,20757:18587489,22282699:540607 -k1,20757:21114491,22282699:540606 -k1,20757:24118596,22282699:540607 -k1,20757:25855889,22282699:540606 -k1,20757:28651590,22282699:540607 -k1,20757:30572384,22282699:540606 -k1,20757:32583029,22282699:0 -) -(1,20758:6797234,23124187:25785795,505283,134348 -k1,20757:9079198,23124187:583926 -k1,20757:11530899,23124187:583925 -k1,20757:14486573,23124187:583926 -k1,20757:15879868,23124187:583925 -k1,20757:17482879,23124187:583926 -k1,20757:21469434,23124187:583926 -k1,20757:24258646,23124187:583925 -k1,20757:25494000,23124187:583926 -k1,20757:27586565,23124187:583926 -k1,20757:31955194,23124187:583925 -k1,20757:32583029,23124187:0 -) -(1,20758:6797234,23965675:25785795,513147,122846 -k1,20757:9045455,23965675:546251 -k1,20757:11720315,23965675:546251 -(1,20757:11720315,23965675:0,452978,122846 -r1,20795:20871377,23965675:9151062,575824,122846 -k1,20757:11720315,23965675:-9151062 -) -(1,20757:11720315,23965675:9151062,452978,122846 -g1,20757:19109541,23965675 -g1,20757:19812965,23965675 -h1,20757:20868100,23965675:0,411205,112570 -) -k1,20757:21591298,23965675:546251 -k1,20757:24397230,23965675:546251 -k1,20757:25299341,23965675:546251 -k1,20757:28607935,23965675:546251 -k1,20757:31140582,23965675:546251 -k1,20758:32583029,23965675:0 -) -(1,20758:6797234,24807163:25785795,513147,122846 -(1,20757:6797234,24807163:0,452978,122846 -r1,20795:15948296,24807163:9151062,575824,122846 -k1,20757:6797234,24807163:-9151062 -) -(1,20757:6797234,24807163:9151062,452978,122846 -g1,20757:14186460,24807163 -g1,20757:14889884,24807163 -h1,20757:15945019,24807163:0,411205,112570 -) -k1,20757:16351512,24807163:229546 -k1,20757:17208892,24807163:229545 -k1,20757:18641679,24807163:229546 -k1,20757:20411975,24807163:229545 -k1,20757:21327683,24807163:229546 -k1,20757:23156307,24807163:229546 -k1,20757:24045144,24807163:229545 -k1,20757:27037033,24807163:229546 -k1,20757:28492757,24807163:229545 -k1,20757:31591469,24807163:229546 -k1,20757:32583029,24807163:0 -) -(1,20758:6797234,25648651:25785795,513147,134348 -k1,20757:9411418,25648651:232606 -k1,20757:12003320,25648651:232606 -k1,20757:12887354,25648651:232606 -k1,20757:14139045,25648651:232606 -k1,20757:15805579,25648651:232606 -k1,20757:17480632,25648651:232606 -k1,20757:18732323,25648651:232606 -k1,20757:20233706,25648651:232606 -k1,20757:21125604,25648651:232606 -k1,20757:22124326,25648651:232606 -k1,20757:23583111,25648651:232606 -k1,20757:26684883,25648651:232606 -k1,20757:29488466,25648651:232606 -k1,20757:30337110,25648651:232606 -k1,20758:32583029,25648651:0 -) -(1,20758:6797234,26490139:25785795,513147,134348 -k1,20757:9198924,26490139:189850 -k1,20757:10814181,26490139:189849 -k1,20757:12272808,26490139:189850 -k1,20757:15033634,26490139:189849 -k1,20757:15985012,26490139:189850 -k1,20757:18429956,26490139:189850 -k1,20757:19435073,26490139:189849 -k1,20757:20691194,26490139:189850 -k1,20757:22660346,26490139:189850 -k1,20757:23869280,26490139:189849 -k1,20757:25327907,26490139:189850 -k1,20757:26177049,26490139:189850 -k1,20757:27593077,26490139:189849 -k1,20757:28465812,26490139:189850 -k1,20757:30499844,26490139:189849 -k1,20757:31305732,26490139:189850 -k1,20757:32583029,26490139:0 -) -(1,20758:6797234,27331627:25785795,505283,134348 -g1,20757:8884555,27331627 -g1,20757:11433905,27331627 -g1,20757:13027085,27331627 -g1,20757:16907471,27331627 -g1,20757:17792862,27331627 -g1,20757:19500730,27331627 -g1,20757:20968736,27331627 -g1,20757:21699462,27331627 -g1,20757:25159762,27331627 -g1,20757:26120519,27331627 -g1,20757:27338833,27331627 -(1,20757:27338833,27331627:0,452978,115847 -r1,20795:28752234,27331627:1413401,568825,115847 -k1,20757:27338833,27331627:-1413401 -) -(1,20757:27338833,27331627:1413401,452978,115847 -k1,20757:27338833,27331627:3277 -h1,20757:28748957,27331627:0,411205,112570 -) -g1,20757:28951463,27331627 -k1,20758:32583029,27331627:704729 -g1,20758:32583029,27331627 -) -] -g1,20758:32583029,27465975 -) -h1,20758:6630773,27465975:0,0,0 -(1,20761:6630773,28831751:25952256,513147,134348 -h1,20760:6630773,28831751:983040,0,0 -k1,20760:8252885,28831751:151484 -k1,20760:11143167,28831751:151532 -k1,20760:13132329,28831751:151532 -k1,20760:13815358,28831751:151532 -k1,20760:14618317,28831751:151531 -k1,20760:16699229,28831751:151532 -k1,20760:17206621,28831751:151532 -k1,20760:18635450,28831751:151532 -k1,20760:21247203,28831751:151531 -k1,20760:24648010,28831751:151532 -k1,20760:25155402,28831751:151532 -k1,20760:27467000,28831751:151531 -k1,20760:28809977,28831751:151532 -k1,20760:30395437,28831751:151532 -k1,20760:32583029,28831751:0 -) -(1,20761:6630773,29673239:25952256,513147,134348 -k1,20760:7855922,29673239:206064 -k1,20760:10048382,29673239:206064 -k1,20760:11952484,29673239:206064 -k1,20760:14730835,29673239:206063 -k1,20760:15619784,29673239:206064 -k1,20760:17859430,29673239:206064 -k1,20760:18697261,29673239:206064 -k1,20760:20284169,29673239:206064 -k1,20760:21594515,29673239:206064 -k1,20760:23191253,29673239:206064 -k1,20760:25167443,29673239:206063 -k1,20760:26321158,29673239:206064 -k1,20760:29362309,29673239:206064 -k1,20760:31266411,29673239:206064 -k1,20761:32583029,29673239:0 -) -(1,20761:6630773,30514727:25952256,513147,134348 -g1,20760:8989413,30514727 -g1,20760:11950985,30514727 -g1,20760:14814253,30514727 -g1,20760:15672774,30514727 -g1,20760:16891088,30514727 -g1,20760:18743790,30514727 -g1,20760:20220316,30514727 -g1,20760:21367196,30514727 -g1,20760:21922285,30514727 -g1,20760:25720751,30514727 -g1,20760:27111425,30514727 -g1,20760:27666514,30514727 -k1,20761:32583029,30514727:3532395 -g1,20761:32583029,30514727 -) -v1,20763:6630773,31705193:0,393216,0 -(1,20769:6630773,33352646:25952256,2040669,196608 -g1,20769:6630773,33352646 -g1,20769:6630773,33352646 -g1,20769:6434165,33352646 -(1,20769:6434165,33352646:0,2040669,196608 -r1,20795:32779637,33352646:26345472,2237277,196608 -k1,20769:6434165,33352646:-26345472 -) -(1,20769:6434165,33352646:26345472,2040669,196608 -[1,20769:6630773,33352646:25952256,1844061,0 -(1,20765:6630773,31919103:25952256,410518,107478 -(1,20764:6630773,31919103:0,0,0 -g1,20764:6630773,31919103 -g1,20764:6630773,31919103 -g1,20764:6303093,31919103 -(1,20764:6303093,31919103:0,0,0 -) -g1,20764:6630773,31919103 -) -g1,20765:7263065,31919103 -g1,20765:8211503,31919103 -g1,20765:14218271,31919103 -g1,20765:16431291,31919103 -g1,20765:17695874,31919103 -h1,20765:18012020,31919103:0,0,0 -k1,20765:32583029,31919103:14571009 -g1,20765:32583029,31919103 -) -(1,20766:6630773,32585281:25952256,404226,107478 -h1,20766:6630773,32585281:0,0,0 -g1,20766:6946919,32585281 -g1,20766:7263065,32585281 -g1,20766:7579211,32585281 -g1,20766:7895357,32585281 -g1,20766:8211503,32585281 -g1,20766:8527649,32585281 -g1,20766:8843795,32585281 -k1,20766:8843795,32585281:0 -h1,20766:12637543,32585281:0,0,0 -k1,20766:32583029,32585281:19945486 -g1,20766:32583029,32585281 -) -(1,20767:6630773,33251459:25952256,404226,101187 -h1,20767:6630773,33251459:0,0,0 -g1,20767:9159938,33251459 -g1,20767:9792230,33251459 -k1,20767:9792230,33251459:0 -h1,20767:13269832,33251459:0,0,0 -k1,20767:32583028,33251459:19313196 -g1,20767:32583028,33251459 -) -] -) -g1,20769:32583029,33352646 -g1,20769:6630773,33352646 -g1,20769:6630773,33352646 -g1,20769:32583029,33352646 -g1,20769:32583029,33352646 -) -h1,20769:6630773,33549254:0,0,0 -(1,20773:6630773,34915030:25952256,513147,134348 -h1,20772:6630773,34915030:983040,0,0 -k1,20772:8275115,34915030:191409 -k1,20772:8998022,34915030:191410 -k1,20772:10475247,34915030:191409 -k1,20772:13296616,34915030:191409 -k1,20772:14139454,34915030:191410 -k1,20772:16571539,34915030:191409 -k1,20772:17782033,34915030:191409 -k1,20772:19959839,34915030:191410 -k1,20772:21664474,34915030:191409 -k1,20772:22617411,34915030:191409 -k1,20772:25074400,34915030:191409 -k1,20772:25881848,34915030:191410 -k1,20772:27092342,34915030:191409 -k1,20772:29627974,34915030:191409 -k1,20772:30234219,34915030:191402 -k1,20772:32583029,34915030:0 -) -(1,20773:6630773,35756518:25952256,505283,115847 -g1,20772:8223953,35756518 -(1,20772:8223953,35756518:0,452978,115847 -r1,20795:12099337,35756518:3875384,568825,115847 -k1,20772:8223953,35756518:-3875384 -) -(1,20772:8223953,35756518:3875384,452978,115847 -k1,20772:8223953,35756518:3277 -h1,20772:12096060,35756518:0,411205,112570 -) -k1,20773:32583029,35756518:20310022 -g1,20773:32583029,35756518 -) -v1,20775:6630773,36946984:0,393216,0 -(1,20779:6630773,37230623:25952256,676855,196608 -g1,20779:6630773,37230623 -g1,20779:6630773,37230623 -g1,20779:6434165,37230623 -(1,20779:6434165,37230623:0,676855,196608 -r1,20795:32779637,37230623:26345472,873463,196608 -k1,20779:6434165,37230623:-26345472 -) -(1,20779:6434165,37230623:26345472,676855,196608 -[1,20779:6630773,37230623:25952256,480247,0 -(1,20777:6630773,37154602:25952256,404226,76021 -(1,20776:6630773,37154602:0,0,0 -g1,20776:6630773,37154602 -g1,20776:6630773,37154602 -g1,20776:6303093,37154602 -(1,20776:6303093,37154602:0,0,0 -) -g1,20776:6630773,37154602 -) -g1,20777:9792230,37154602 -g1,20777:10740668,37154602 -k1,20777:10740668,37154602:0 -h1,20777:18012018,37154602:0,0,0 -k1,20777:32583029,37154602:14571011 -g1,20777:32583029,37154602 -) -] -) -g1,20779:32583029,37230623 -g1,20779:6630773,37230623 -g1,20779:6630773,37230623 -g1,20779:32583029,37230623 -g1,20779:32583029,37230623 -) -h1,20779:6630773,37427231:0,0,0 -(1,20783:6630773,38793007:25952256,513147,134348 -h1,20782:6630773,38793007:983040,0,0 -k1,20782:10016124,38793007:175398 -k1,20782:10842950,38793007:175398 -k1,20782:12720318,38793007:175398 -k1,20782:15921513,38793007:175398 -k1,20782:17610137,38793007:175398 -k1,20782:18436963,38793007:175398 -k1,20782:20853037,38793007:175398 -k1,20782:23441471,38793007:175398 -k1,20782:24232907,38793007:175398 -k1,20782:24996818,38793007:175398 -(1,20782:24996818,38793007:0,452978,115847 -r1,20795:28872202,38793007:3875384,568825,115847 -k1,20782:24996818,38793007:-3875384 -) -(1,20782:24996818,38793007:3875384,452978,115847 -k1,20782:24996818,38793007:3277 -h1,20782:28868925,38793007:0,411205,112570 -) -k1,20782:29047600,38793007:175398 -k1,20782:31563944,38793007:175398 -k1,20782:32583029,38793007:0 -) -(1,20783:6630773,39634495:25952256,505283,134348 -k1,20782:9593046,39634495:207795 -k1,20782:12156204,39634495:207794 -k1,20782:13124217,39634495:207795 -k1,20782:15365594,39634495:207795 -k1,20782:16776629,39634495:207794 -k1,20782:18664767,39634495:207795 -k1,20782:19523990,39634495:207795 -k1,20782:20087644,39634495:207794 -k1,20782:22980449,39634495:207795 -k1,20782:24586126,39634495:207794 -(1,20782:24586126,39634495:0,452978,115847 -r1,20795:27758086,39634495:3171960,568825,115847 -k1,20782:24586126,39634495:-3171960 -) -(1,20782:24586126,39634495:3171960,452978,115847 -k1,20782:24586126,39634495:3277 -h1,20782:27754809,39634495:0,411205,112570 -) -k1,20782:28139551,39634495:207795 -k1,20782:29215698,39634495:207795 -k1,20782:30415052,39634495:207794 -k1,20782:31931601,39634495:207795 -k1,20782:32583029,39634495:0 -) -(1,20783:6630773,40475983:25952256,513147,134348 -g1,20782:9083130,40475983 -g1,20782:10301444,40475983 -g1,20782:13255151,40475983 -g1,20782:15893630,40475983 -g1,20782:16775744,40475983 -g1,20782:18619927,40475983 -g1,20782:19838241,40475983 -k1,20783:32583029,40475983:10330442 -g1,20783:32583029,40475983 -) -v1,20785:6630773,41666449:0,393216,0 -(1,20790:6630773,42641432:25952256,1368199,196608 -g1,20790:6630773,42641432 -g1,20790:6630773,42641432 -g1,20790:6434165,42641432 -(1,20790:6434165,42641432:0,1368199,196608 -r1,20795:32779637,42641432:26345472,1564807,196608 -k1,20790:6434165,42641432:-26345472 -) -(1,20790:6434165,42641432:26345472,1368199,196608 -[1,20790:6630773,42641432:25952256,1171591,0 -(1,20787:6630773,41874067:25952256,404226,76021 -(1,20786:6630773,41874067:0,0,0 -g1,20786:6630773,41874067 -g1,20786:6630773,41874067 -g1,20786:6303093,41874067 -(1,20786:6303093,41874067:0,0,0 -) -g1,20786:6630773,41874067 -) -k1,20787:6630773,41874067:0 -h1,20787:12953686,41874067:0,0,0 -k1,20787:32583030,41874067:19629344 -g1,20787:32583030,41874067 -) -(1,20788:6630773,42540245:25952256,284164,101187 -h1,20788:6630773,42540245:0,0,0 -h1,20788:6946919,42540245:0,0,0 -k1,20788:32583029,42540245:25636110 -g1,20788:32583029,42540245 -) -] -) -g1,20790:32583029,42641432 -g1,20790:6630773,42641432 -g1,20790:6630773,42641432 -g1,20790:32583029,42641432 -g1,20790:32583029,42641432 -) -h1,20790:6630773,42838040:0,0,0 -v1,20794:6630773,44728104:0,393216,0 -] -(1,20795:32583029,45706769:0,0,0 -g1,20795:32583029,45706769 -) -) -] -(1,20795:6630773,47279633:25952256,0,0 -h1,20795:6630773,47279633:25952256,0,0 -) -] -(1,20795:4262630,4025873:0,0,0 -[1,20795:-473656,4025873:0,0,0 -(1,20795:-473656,-710413:0,0,0 -(1,20795:-473656,-710413:0,0,0 -g1,20795:-473656,-710413 -) -g1,20795:-473656,-710413 -) -] -) -] -!20960 -}375 +] +g1,20807:6630773,4812305 +g1,20807:6630773,4812305 +g1,20807:9113932,4812305 +g1,20807:13027742,4812305 +k1,20807:31387652,4812305:18359910 +) +) +] +[1,20807:6630773,45706769:25952256,40108032,0 +(1,20807:6630773,45706769:25952256,40108032,0 +(1,20807:6630773,45706769:0,0,0 +g1,20807:6630773,45706769 +) +[1,20807:6630773,45706769:25952256,40108032,0 +(1,20764:6630773,14682403:25952256,9083666,0 +k1,20764:10523651,14682403:3892878 +h1,20763:10523651,14682403:0,0,0 +(1,20763:10523651,14682403:18166500,9083666,0 +(1,20763:10523651,14682403:18167376,9083688,0 +(1,20763:10523651,14682403:18167376,9083688,0 +(1,20763:10523651,14682403:0,9083688,0 +(1,20763:10523651,14682403:0,14208860,0 +(1,20763:10523651,14682403:28417720,14208860,0 +) +k1,20763:10523651,14682403:-28417720 +) +) +g1,20763:28691027,14682403 +) +) +) +g1,20764:28690151,14682403 +k1,20764:32583029,14682403:3892878 +) +(1,20772:6630773,15547483:25952256,513147,134348 +h1,20770:6630773,15547483:983040,0,0 +k1,20770:9223487,15547483:228830 +k1,20770:12436826,15547483:228829 +k1,20770:13766661,15547483:228830 +k1,20770:15014575,15547483:228829 +k1,20770:18351122,15547483:228830 +k1,20770:19864458,15547483:228830 +k1,20770:20559248,15547483:228829 +k1,20770:22301304,15547483:228830 +k1,20770:25210556,15547483:228829 +k1,20770:26833337,15547483:228830 +k1,20770:29784532,15547483:228829 +k1,20770:31032447,15547483:228830 +k1,20770:32583029,15547483:0 +) +(1,20772:6630773,16412563:25952256,513147,134348 +k1,20770:7967663,16412563:204428 +k1,20770:8919858,16412563:204429 +k1,20770:10143371,16412563:204428 +k1,20770:12001273,16412563:204429 +k1,20770:13153352,16412563:204428 +k1,20770:14809403,16412563:204429 +k1,20770:16291128,16412563:204428 +k1,20770:18413140,16412563:204429 +k1,20770:19667455,16412563:204428 +k1,20770:22150571,16412563:204429 +h1,20770:23693289,16412563:0,0,0 +k1,20770:23897717,16412563:204428 +k1,20770:24911516,16412563:204429 +k1,20770:26614097,16412563:204428 +h1,20770:27809474,16412563:0,0,0 +k1,20770:28013903,16412563:204429 +k1,20770:29165982,16412563:204428 +k1,20772:32583029,16412563:0 +) +(1,20772:6630773,17277643:25952256,505283,7863 +g1,20770:8114508,17277643 +g1,20770:9418019,17277643 +g1,20770:10365014,17277643 +g1,20770:12077469,17277643 +g1,20770:12928126,17277643 +g1,20770:14324698,17277643 +g1,20770:16578481,17277643 +k1,20772:32583029,17277643:16004548 +g1,20772:32583029,17277643 +) +(1,20774:6630773,18142723:25952256,505283,134348 +h1,20773:6630773,18142723:983040,0,0 +k1,20773:8577371,18142723:335723 +k1,20773:9932179,18142723:335723 +k1,20773:11652022,18142723:335723 +k1,20773:14822832,18142723:335723 +k1,20773:15774593,18142723:335723 +k1,20773:18776321,18142723:335723 +k1,20773:19763472,18142723:335723 +k1,20773:22286787,18142723:335723 +k1,20773:26392796,18142723:335723 +k1,20773:27414681,18142723:335723 +k1,20773:31714677,18142723:335723 +k1,20773:32583029,18142723:0 +) +(1,20774:6630773,19007803:25952256,505283,134348 +k1,20773:8249613,19007803:333024 +k1,20773:10019841,19007803:333023 +k1,20773:14123151,19007803:333024 +k1,20773:15142336,19007803:333023 +k1,20773:16659596,19007803:333024 +k1,20773:18836803,19007803:333024 +k1,20773:21728352,19007803:333023 +k1,20773:23080461,19007803:333024 +k1,20773:25159364,19007803:333024 +k1,20773:26390230,19007803:333023 +k1,20773:28671639,19007803:333024 +k1,20773:30289168,19007803:333023 +k1,20773:31490544,19007803:333024 +k1,20773:32583029,19007803:0 +) +(1,20774:6630773,19872883:25952256,513147,134348 +k1,20773:9788171,19872883:298062 +k1,20773:11033883,19872883:298061 +k1,20773:13513639,19872883:298062 +k1,20773:14830785,19872883:298061 +k1,20773:17417364,19872883:298062 +k1,20773:18401587,19872883:298061 +(1,20773:18401587,19872883:0,452978,115847 +r1,20807:27200938,19872883:8799351,568825,115847 +k1,20773:18401587,19872883:-8799351 +) +(1,20773:18401587,19872883:8799351,452978,115847 +g1,20773:20163423,19872883 +g1,20773:21921982,19872883 +g1,20773:22977118,19872883 +g1,20773:24735677,19872883 +g1,20773:25790813,19872883 +g1,20773:26494237,19872883 +h1,20773:27197661,19872883:0,411205,112570 +) +k1,20773:27499000,19872883:298062 +k1,20773:28328558,19872883:298061 +k1,20773:31931601,19872883:298062 +k1,20774:32583029,19872883:0 +) +(1,20774:6630773,20737963:25952256,505283,126483 +(1,20773:6630773,20737963:0,452978,115847 +r1,20807:18947241,20737963:12316468,568825,115847 +k1,20773:6630773,20737963:-12316468 +) +(1,20773:6630773,20737963:12316468,452978,115847 +g1,20773:8392609,20737963 +g1,20773:9799456,20737963 +g1,20773:10502880,20737963 +g1,20773:11909727,20737963 +g1,20773:13316574,20737963 +g1,20773:14723421,20737963 +g1,20773:15426845,20737963 +g1,20773:16833692,20737963 +g1,20773:17537116,20737963 +g1,20773:18240540,20737963 +h1,20773:18943964,20737963:0,411205,112570 +) +k1,20773:19297255,20737963:176344 +k1,20773:23395929,20737963:176344 +k1,20773:24563833,20737963:176344 +k1,20773:27042458,20737963:176345 +k1,20773:27831564,20737963:176344 +k1,20773:29516547,20737963:176344 +k1,20773:31023272,20737963:176344 +k1,20774:32583029,20737963:0 +) +(1,20774:6630773,21603043:25952256,505283,134348 +k1,20773:8250924,21603043:179014 +k1,20773:11481294,21603043:179014 +k1,20773:12311736,21603043:179014 +k1,20773:13622557,21603043:179014 +k1,20773:17543021,21603043:179014 +k1,20773:18338073,21603043:179014 +k1,20773:19536172,21603043:179014 +k1,20773:21278220,21603043:179014 +k1,20773:22529403,21603043:179014 +k1,20773:24443810,21603043:179014 +k1,20773:25641909,21603043:179014 +k1,20773:27474396,21603043:179014 +k1,20773:31391584,21603043:179014 +k1,20773:32583029,21603043:0 +) +(1,20774:6630773,22468123:25952256,513147,134348 +g1,20773:8448086,22468123 +g1,20773:9333477,22468123 +g1,20773:10480357,22468123 +g1,20773:13204033,22468123 +g1,20773:14422347,22468123 +k1,20774:32583029,22468123:16597648 +g1,20774:32583029,22468123 +) +v1,20776:6630773,23152978:0,393216,0 +(1,20796:6630773,34424917:25952256,11665155,196608 +g1,20796:6630773,34424917 +g1,20796:6630773,34424917 +g1,20796:6434165,34424917 +(1,20796:6434165,34424917:0,11665155,196608 +r1,20807:32779637,34424917:26345472,11861763,196608 +k1,20796:6434165,34424917:-26345472 +) +(1,20796:6434165,34424917:26345472,11665155,196608 +[1,20796:6630773,34424917:25952256,11468547,0 +(1,20778:6630773,23387415:25952256,431045,112852 +(1,20777:6630773,23387415:0,0,0 +g1,20777:6630773,23387415 +g1,20777:6630773,23387415 +g1,20777:6303093,23387415 +(1,20777:6303093,23387415:0,0,0 +) +g1,20777:6630773,23387415 +) +k1,20778:6630773,23387415:0 +g1,20778:13269852,23387415 +g1,20778:13933760,23387415 +g1,20778:15593530,23387415 +g1,20778:16257438,23387415 +g1,20778:16921346,23387415 +g1,20778:18913070,23387415 +g1,20778:20904794,23387415 +g1,20778:21568702,23387415 +g1,20778:22896518,23387415 +h1,20778:23228472,23387415:0,0,0 +k1,20778:32583029,23387415:9354557 +g1,20778:32583029,23387415 +) +(1,20779:6630773,24072270:25952256,431045,79822 +h1,20779:6630773,24072270:0,0,0 +g1,20779:6962727,24072270 +g1,20779:7294681,24072270 +g1,20779:13269852,24072270 +g1,20779:13933760,24072270 +g1,20779:15593530,24072270 +h1,20779:15925484,24072270:0,0,0 +k1,20779:32583029,24072270:16657545 +g1,20779:32583029,24072270 +) +(1,20780:6630773,24757125:25952256,424439,79822 +h1,20780:6630773,24757125:0,0,0 +g1,20780:6962727,24757125 +g1,20780:7294681,24757125 +k1,20780:7294681,24757125:0 +h1,20780:13601806,24757125:0,0,0 +k1,20780:32583030,24757125:18981224 +g1,20780:32583030,24757125 +) +(1,20781:6630773,25441980:25952256,424439,106246 +h1,20781:6630773,25441980:0,0,0 +g1,20781:6962727,25441980 +g1,20781:7294681,25441980 +g1,20781:7626635,25441980 +g1,20781:7958589,25441980 +g1,20781:10282267,25441980 +g1,20781:10946175,25441980 +g1,20781:12605945,25441980 +g1,20781:14265715,25441980 +g1,20781:15261577,25441980 +g1,20781:16921347,25441980 +g1,20781:17917209,25441980 +g1,20781:18581117,25441980 +k1,20781:18581117,25441980:0 +h1,20781:19576979,25441980:0,0,0 +k1,20781:32583029,25441980:13006050 +g1,20781:32583029,25441980 +) +(1,20782:6630773,26126835:25952256,424439,106246 +h1,20782:6630773,26126835:0,0,0 +g1,20782:6962727,26126835 +g1,20782:7294681,26126835 +g1,20782:7626635,26126835 +g1,20782:7958589,26126835 +g1,20782:10282267,26126835 +g1,20782:10946175,26126835 +g1,20782:13269853,26126835 +g1,20782:19908932,26126835 +k1,20782:19908932,26126835:0 +h1,20782:24888241,26126835:0,0,0 +k1,20782:32583029,26126835:7694788 +g1,20782:32583029,26126835 +) +(1,20783:6630773,26811690:25952256,424439,106246 +h1,20783:6630773,26811690:0,0,0 +g1,20783:6962727,26811690 +g1,20783:7294681,26811690 +g1,20783:7626635,26811690 +g1,20783:7958589,26811690 +g1,20783:8290543,26811690 +g1,20783:8622497,26811690 +g1,20783:8954451,26811690 +g1,20783:9286405,26811690 +g1,20783:9618359,26811690 +g1,20783:9950313,26811690 +g1,20783:10282267,26811690 +g1,20783:10614221,26811690 +g1,20783:10946175,26811690 +g1,20783:17585254,26811690 +g1,20783:23892379,26811690 +h1,20783:24224333,26811690:0,0,0 +k1,20783:32583029,26811690:8358696 +g1,20783:32583029,26811690 +) +(1,20784:6630773,27496545:25952256,424439,106246 +h1,20784:6630773,27496545:0,0,0 +g1,20784:6962727,27496545 +g1,20784:7294681,27496545 +g1,20784:9618359,27496545 +g1,20784:10282267,27496545 +g1,20784:13601806,27496545 +h1,20784:13933760,27496545:0,0,0 +k1,20784:32583028,27496545:18649268 +g1,20784:32583028,27496545 +) +(1,20785:6630773,28181400:25952256,424439,112852 +h1,20785:6630773,28181400:0,0,0 +g1,20785:6962727,28181400 +g1,20785:7294681,28181400 +g1,20785:11942036,28181400 +g1,20785:12605944,28181400 +k1,20785:12605944,28181400:0 +h1,20785:14929622,28181400:0,0,0 +k1,20785:32583030,28181400:17653408 +g1,20785:32583030,28181400 +) +(1,20786:6630773,28866255:25952256,424439,86428 +h1,20786:6630773,28866255:0,0,0 +g1,20786:6962727,28866255 +g1,20786:7294681,28866255 +g1,20786:7626635,28866255 +g1,20786:7958589,28866255 +g1,20786:8290543,28866255 +g1,20786:8622497,28866255 +g1,20786:8954451,28866255 +g1,20786:9286405,28866255 +g1,20786:9618359,28866255 +g1,20786:9950313,28866255 +g1,20786:10282267,28866255 +g1,20786:12273991,28866255 +g1,20786:12937899,28866255 +g1,20786:15261577,28866255 +k1,20786:15261577,28866255:0 +h1,20786:16921347,28866255:0,0,0 +k1,20786:32583029,28866255:15661682 +g1,20786:32583029,28866255 +) +(1,20787:6630773,29551110:25952256,424439,106246 +h1,20787:6630773,29551110:0,0,0 +g1,20787:6962727,29551110 +g1,20787:7294681,29551110 +g1,20787:7626635,29551110 +g1,20787:7958589,29551110 +g1,20787:8290543,29551110 +g1,20787:8622497,29551110 +g1,20787:8954451,29551110 +g1,20787:9286405,29551110 +g1,20787:9618359,29551110 +g1,20787:9950313,29551110 +g1,20787:10282267,29551110 +g1,20787:10946175,29551110 +g1,20787:11610083,29551110 +g1,20787:13933761,29551110 +g1,20787:15593531,29551110 +g1,20787:16257439,29551110 +g1,20787:17585255,29551110 +g1,20787:18249163,29551110 +g1,20787:18913071,29551110 +g1,20787:21236749,29551110 +k1,20787:21236749,29551110:0 +h1,20787:23228473,29551110:0,0,0 +k1,20787:32583029,29551110:9354556 +g1,20787:32583029,29551110 +) +(1,20788:6630773,30235965:25952256,424439,79822 +h1,20788:6630773,30235965:0,0,0 +g1,20788:6962727,30235965 +g1,20788:7294681,30235965 +g1,20788:7626635,30235965 +g1,20788:7958589,30235965 +g1,20788:8290543,30235965 +g1,20788:8622497,30235965 +g1,20788:8954451,30235965 +g1,20788:9286405,30235965 +g1,20788:9618359,30235965 +g1,20788:9950313,30235965 +g1,20788:10282267,30235965 +g1,20788:11942037,30235965 +g1,20788:12605945,30235965 +g1,20788:13933761,30235965 +h1,20788:14265715,30235965:0,0,0 +k1,20788:32583029,30235965:18317314 +g1,20788:32583029,30235965 +) +(1,20789:6630773,30920820:25952256,424439,112852 +h1,20789:6630773,30920820:0,0,0 +g1,20789:6962727,30920820 +g1,20789:7294681,30920820 +g1,20789:11942036,30920820 +g1,20789:12605944,30920820 +k1,20789:12605944,30920820:0 +h1,20789:15261576,30920820:0,0,0 +k1,20789:32583028,30920820:17321452 +g1,20789:32583028,30920820 +) +(1,20790:6630773,31605675:25952256,424439,86428 +h1,20790:6630773,31605675:0,0,0 +g1,20790:6962727,31605675 +g1,20790:7294681,31605675 +g1,20790:7626635,31605675 +g1,20790:7958589,31605675 +g1,20790:8290543,31605675 +g1,20790:8622497,31605675 +g1,20790:8954451,31605675 +g1,20790:9286405,31605675 +g1,20790:9618359,31605675 +g1,20790:9950313,31605675 +g1,20790:10282267,31605675 +g1,20790:12273991,31605675 +g1,20790:12937899,31605675 +k1,20790:12937899,31605675:0 +h1,20790:14929623,31605675:0,0,0 +k1,20790:32583029,31605675:17653406 +g1,20790:32583029,31605675 +) +(1,20791:6630773,32290530:25952256,424439,106246 +h1,20791:6630773,32290530:0,0,0 +g1,20791:6962727,32290530 +g1,20791:7294681,32290530 +g1,20791:7626635,32290530 +g1,20791:7958589,32290530 +g1,20791:8290543,32290530 +g1,20791:8622497,32290530 +g1,20791:8954451,32290530 +g1,20791:9286405,32290530 +g1,20791:9618359,32290530 +g1,20791:9950313,32290530 +g1,20791:10282267,32290530 +g1,20791:12273991,32290530 +g1,20791:12937899,32290530 +k1,20791:12937899,32290530:0 +h1,20791:13933761,32290530:0,0,0 +k1,20791:32583029,32290530:18649268 +g1,20791:32583029,32290530 +) +(1,20792:6630773,32975385:25952256,431045,86428 +h1,20792:6630773,32975385:0,0,0 +g1,20792:6962727,32975385 +g1,20792:7294681,32975385 +g1,20792:7626635,32975385 +g1,20792:7958589,32975385 +g1,20792:8290543,32975385 +g1,20792:8622497,32975385 +g1,20792:8954451,32975385 +g1,20792:9286405,32975385 +g1,20792:9618359,32975385 +g1,20792:9950313,32975385 +g1,20792:10282267,32975385 +g1,20792:11942037,32975385 +g1,20792:12605945,32975385 +k1,20792:12605945,32975385:0 +h1,20792:15261577,32975385:0,0,0 +k1,20792:32583029,32975385:17321452 +g1,20792:32583029,32975385 +) +(1,20793:6630773,33660240:25952256,424439,106246 +h1,20793:6630773,33660240:0,0,0 +g1,20793:6962727,33660240 +g1,20793:7294681,33660240 +g1,20793:7626635,33660240 +g1,20793:7958589,33660240 +g1,20793:8290543,33660240 +g1,20793:8622497,33660240 +g1,20793:8954451,33660240 +g1,20793:9286405,33660240 +g1,20793:9618359,33660240 +g1,20793:9950313,33660240 +g1,20793:10282267,33660240 +g1,20793:10946175,33660240 +g1,20793:11610083,33660240 +g1,20793:13269853,33660240 +g1,20793:14265715,33660240 +g1,20793:15261577,33660240 +g1,20793:15925485,33660240 +g1,20793:17253301,33660240 +g1,20793:17917209,33660240 +g1,20793:18581117,33660240 +k1,20793:18581117,33660240:0 +h1,20793:19245025,33660240:0,0,0 +k1,20793:32583029,33660240:13338004 +g1,20793:32583029,33660240 +) +(1,20794:6630773,34345095:25952256,424439,79822 +h1,20794:6630773,34345095:0,0,0 +g1,20794:6962727,34345095 +g1,20794:7294681,34345095 +g1,20794:7626635,34345095 +g1,20794:7958589,34345095 +g1,20794:8290543,34345095 +g1,20794:8622497,34345095 +g1,20794:8954451,34345095 +g1,20794:9286405,34345095 +g1,20794:9618359,34345095 +g1,20794:9950313,34345095 +g1,20794:10282267,34345095 +g1,20794:11942037,34345095 +g1,20794:12605945,34345095 +h1,20794:13269853,34345095:0,0,0 +k1,20794:32583029,34345095:19313176 +g1,20794:32583029,34345095 +) +] +) +g1,20796:32583029,34424917 +g1,20796:6630773,34424917 +g1,20796:6630773,34424917 +g1,20796:32583029,34424917 +g1,20796:32583029,34424917 +) +h1,20796:6630773,34621525:0,0,0 +(1,20799:6630773,43770727:25952256,9083666,0 +k1,20799:10523651,43770727:3892878 +h1,20798:10523651,43770727:0,0,0 +(1,20798:10523651,43770727:18166500,9083666,0 +(1,20798:10523651,43770727:18167376,9083688,0 +(1,20798:10523651,43770727:18167376,9083688,0 +(1,20798:10523651,43770727:0,9083688,0 +(1,20798:10523651,43770727:0,14208860,0 +(1,20798:10523651,43770727:28417720,14208860,0 +) +k1,20798:10523651,43770727:-28417720 +) +) +g1,20798:28691027,43770727 +) +) +) +g1,20799:28690151,43770727 +k1,20799:32583029,43770727:3892878 +) +v1,20806:6630773,44635807:0,393216,0 +] +(1,20807:32583029,45706769:0,0,0 +g1,20807:32583029,45706769 +) +) +] +(1,20807:6630773,47279633:25952256,0,0 +h1,20807:6630773,47279633:25952256,0,0 +) +] +(1,20807:4262630,4025873:0,0,0 +[1,20807:-473656,4025873:0,0,0 +(1,20807:-473656,-710413:0,0,0 +(1,20807:-473656,-710413:0,0,0 +g1,20807:-473656,-710413 +) +g1,20807:-473656,-710413 +) +] +) +] +!18375 +}354 +Input:3402:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3403:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3404:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3405:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3406:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3407:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3408:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3409:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3410:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3411:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!482 -{376 -[1,20825:4262630,47279633:28320399,43253760,0 -(1,20825:4262630,4025873:0,0,0 -[1,20825:-473656,4025873:0,0,0 -(1,20825:-473656,-710413:0,0,0 -(1,20825:-473656,-644877:0,0,0 -k1,20825:-473656,-644877:-65536 +Input:3412:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3413:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1140 +{355 +[1,20841:4262630,47279633:28320399,43253760,0 +(1,20841:4262630,4025873:0,0,0 +[1,20841:-473656,4025873:0,0,0 +(1,20841:-473656,-710413:0,0,0 +(1,20841:-473656,-644877:0,0,0 +k1,20841:-473656,-644877:-65536 ) -(1,20825:-473656,4736287:0,0,0 -k1,20825:-473656,4736287:5209943 +(1,20841:-473656,4736287:0,0,0 +k1,20841:-473656,4736287:5209943 ) -g1,20825:-473656,-710413 +g1,20841:-473656,-710413 ) ] ) -[1,20825:6630773,47279633:25952256,43253760,0 -[1,20825:6630773,4812305:25952256,786432,0 -(1,20825:6630773,4812305:25952256,505283,11795 -(1,20825:6630773,4812305:25952256,505283,11795 -g1,20825:3078558,4812305 -[1,20825:3078558,4812305:0,0,0 -(1,20825:3078558,2439708:0,1703936,0 -k1,20825:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,20825:2537886,2439708:1179648,16384,0 +[1,20841:6630773,47279633:25952256,43253760,0 +[1,20841:6630773,4812305:25952256,786432,0 +(1,20841:6630773,4812305:25952256,513147,126483 +(1,20841:6630773,4812305:25952256,513147,126483 +g1,20841:3078558,4812305 +[1,20841:3078558,4812305:0,0,0 +(1,20841:3078558,2439708:0,1703936,0 +k1,20841:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,20841:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,20825:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,20841:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,20825:3078558,4812305:0,0,0 -(1,20825:3078558,2439708:0,1703936,0 -g1,20825:29030814,2439708 -g1,20825:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,20825:36151628,1915420:16384,1179648,0 +[1,20841:3078558,4812305:0,0,0 +(1,20841:3078558,2439708:0,1703936,0 +g1,20841:29030814,2439708 +g1,20841:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,20841:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,20825:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,20841:37855564,2439708:1179648,16384,0 ) ) -k1,20825:3078556,2439708:-34777008 +k1,20841:3078556,2439708:-34777008 ) ] -[1,20825:3078558,4812305:0,0,0 -(1,20825:3078558,49800853:0,16384,2228224 -k1,20825:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,20825:2537886,49800853:1179648,16384,0 +[1,20841:3078558,4812305:0,0,0 +(1,20841:3078558,49800853:0,16384,2228224 +k1,20841:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,20841:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,20825:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,20841:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) -) -) +) +) ] -[1,20825:3078558,4812305:0,0,0 -(1,20825:3078558,49800853:0,16384,2228224 -g1,20825:29030814,49800853 -g1,20825:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,20825:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] -) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,20825:37855564,49800853:1179648,16384,0 -) -) -k1,20825:3078556,49800853:-34777008 -) -] -g1,20825:6630773,4812305 -g1,20825:6630773,4812305 -g1,20825:9264009,4812305 -k1,20825:31387653,4812305:22123644 -) -) -] -[1,20825:6630773,45706769:25952256,40108032,0 -(1,20825:6630773,45706769:25952256,40108032,0 -(1,20825:6630773,45706769:0,0,0 -g1,20825:6630773,45706769 -) -[1,20825:6630773,45706769:25952256,40108032,0 -v1,20795:6630773,6254097:0,393216,0 -(1,20795:6630773,12514449:25952256,6653568,0 -g1,20795:6630773,12514449 -g1,20795:6303093,12514449 -r1,20825:6401397,12514449:98304,6653568,0 -g1,20795:6600626,12514449 -g1,20795:6797234,12514449 -[1,20795:6797234,12514449:25785795,6653568,0 -(1,20795:6797234,6616170:25785795,755289,196608 -(1,20794:6797234,6616170:0,755289,196608 -r1,20825:8134168,6616170:1336934,951897,196608 -k1,20794:6797234,6616170:-1336934 -) -(1,20794:6797234,6616170:1336934,755289,196608 -) -k1,20794:8357271,6616170:223103 -k1,20794:8684951,6616170:327680 -k1,20794:10104742,6616170:223104 -k1,20794:11420330,6616170:223103 -k1,20794:12302725,6616170:223103 -k1,20794:12881688,6616170:223103 -k1,20794:14475805,6616170:223104 -k1,20794:18488855,6616170:223103 -k1,20794:19398120,6616170:223103 -k1,20794:21886804,6616170:223104 -k1,20794:23057558,6616170:223103 -k1,20794:24888259,6616170:223103 -k1,20794:25642859,6616170:223103 -k1,20794:28590295,6616170:223104 -k1,20794:30194242,6616170:223103 -k1,20794:32583029,6616170:0 -) -(1,20795:6797234,7457658:25785795,513147,134348 -k1,20794:9130792,7457658:244926 -k1,20794:12019440,7457658:244926 -k1,20794:15429099,7457658:244925 -k1,20794:16290063,7457658:244926 -k1,20794:17554074,7457658:244926 -k1,20794:21342532,7457658:244926 -k1,20794:23522736,7457658:244926 -k1,20794:24419090,7457658:244926 -k1,20794:27484685,7457658:244925 -k1,20794:28085471,7457658:244926 -k1,20794:30928900,7457658:244926 -k1,20795:32583029,7457658:0 -) -(1,20795:6797234,8299146:25785795,513147,134348 -k1,20794:8937942,8299146:181837 -k1,20794:12744576,8299146:181838 -k1,20794:13945498,8299146:181837 -k1,20794:15353514,8299146:181837 -k1,20794:16726797,8299146:181838 -k1,20794:18516232,8299146:181837 -k1,20794:19314107,8299146:181837 -k1,20794:19851804,8299146:181837 -k1,20794:21705465,8299146:181838 -k1,20794:23582718,8299146:181837 -k1,20794:26614060,8299146:181837 -k1,20794:29426513,8299146:181838 -k1,20794:31900144,8299146:181837 -k1,20794:32583029,8299146:0 -) -(1,20795:6797234,9140634:25785795,513147,134348 -k1,20794:7649328,9140634:239332 -k1,20794:9384192,9140634:239332 -k1,20794:11580429,9140634:239332 -k1,20794:12175621,9140634:239332 -k1,20794:14065150,9140634:239332 -k1,20794:17655994,9140634:239333 -k1,20794:20284113,9140634:239332 -k1,20794:22785748,9140634:239332 -k1,20794:25189079,9140634:239332 -(1,20794:25189079,9140634:0,452978,115847 -r1,20825:28712751,9140634:3523672,568825,115847 -k1,20794:25189079,9140634:-3523672 -) -(1,20794:25189079,9140634:3523672,452978,115847 -k1,20794:25189079,9140634:3277 -h1,20794:28709474,9140634:0,411205,112570 -) -k1,20794:28952083,9140634:239332 -k1,20794:29722912,9140634:239332 -k1,20794:30981329,9140634:239332 -k1,20794:32583029,9140634:0 -) -(1,20795:6797234,9982122:25785795,513147,134348 -k1,20794:9686498,9982122:199666 -k1,20794:10545457,9982122:199667 -k1,20794:11764208,9982122:199666 -k1,20794:15315385,9982122:199666 -k1,20794:17933985,9982122:199666 -k1,20794:21428147,9982122:199667 -k1,20794:22313975,9982122:199666 -k1,20794:22971738,9982122:199666 -k1,20794:25098162,9982122:199666 -k1,20794:26576436,9982122:199667 -k1,20794:28242798,9982122:199666 -k1,20794:29390115,9982122:199666 -k1,20794:32583029,9982122:0 -) -(1,20795:6797234,10823610:25785795,513147,134348 -k1,20794:8591658,10823610:186826 -k1,20794:9464645,10823610:186825 -k1,20794:10599122,10823610:186826 -k1,20794:12393545,10823610:186825 -k1,20794:13974322,10823610:186826 -k1,20794:16049896,10823610:186826 -k1,20794:16922883,10823610:186825 -k1,20794:17567806,10823610:186826 -k1,20794:20422603,10823610:186826 -k1,20794:20965288,10823610:186825 -k1,20794:22485772,10823610:186826 -k1,20794:24836596,10823610:186825 -(1,20794:24836596,10823610:0,452978,115847 -r1,20825:30118827,10823610:5282231,568825,115847 -k1,20794:24836596,10823610:-5282231 -) -(1,20794:24836596,10823610:5282231,452978,115847 -k1,20794:24836596,10823610:3277 -h1,20794:30115550,10823610:0,411205,112570 -) -k1,20794:30305653,10823610:186826 -k1,20794:32583029,10823610:0 -) -(1,20795:6797234,11665098:25785795,513147,134348 -k1,20794:7322873,11665098:169779 -k1,20794:8652639,11665098:169779 -k1,20794:10013864,11665098:169780 -k1,20794:11468149,11665098:169779 -k1,20794:13564686,11665098:169779 -k1,20794:15013072,11665098:169779 -k1,20794:16130503,11665098:169780 -k1,20794:19493196,11665098:169779 -k1,20794:21270573,11665098:169779 -k1,20794:22126514,11665098:169779 -k1,20794:23001461,11665098:169780 -k1,20794:24243409,11665098:169779 -k1,20794:26273755,11665098:169779 -k1,20794:29014511,11665098:169779 -k1,20794:29835719,11665098:169780 -k1,20794:31024583,11665098:169779 -k1,20794:32583029,11665098:0 -) -(1,20795:6797234,12506586:25785795,513147,7863 -g1,20794:8371408,12506586 -g1,20794:10268675,12506586 -g1,20794:11981130,12506586 -g1,20794:13574310,12506586 -k1,20795:32583028,12506586:16946300 -g1,20795:32583028,12506586 -) -] -g1,20795:32583029,12514449 -) -h1,20795:6630773,12514449:0,0,0 -(1,20798:6630773,15129997:25952256,555811,139132 -(1,20798:6630773,15129997:2899444,534184,12975 -g1,20798:6630773,15129997 -g1,20798:9530217,15129997 -) -g1,20798:13805131,15129997 -k1,20798:32583029,15129997:16140860 -g1,20798:32583029,15129997 -) -(1,20801:6630773,16364701:25952256,513147,126483 -k1,20800:7351188,16364701:242658 -k1,20800:8462198,16364701:242658 -k1,20800:10253472,16364701:242658 -k1,20800:11147558,16364701:242658 -k1,20800:14923917,16364701:242658 -k1,20800:17428878,16364701:242658 -k1,20800:18027396,16364701:242658 -k1,20800:20430120,16364701:242657 -k1,20800:22882652,16364701:242658 -k1,20800:24853494,16364701:242658 -k1,20800:25554249,16364701:242658 -k1,20800:26412945,16364701:242658 -k1,20800:29326850,16364701:242658 -k1,20800:31350777,16364701:242658 -k1,20800:32051532,16364701:242658 -k1,20800:32583029,16364701:0 -) -(1,20801:6630773,17206189:25952256,513147,126483 -k1,20800:8222592,17206189:256851 -k1,20800:9130871,17206189:256851 -k1,20800:11317101,17206189:256850 -k1,20800:11929812,17206189:256851 -k1,20800:13469858,17206189:256851 -k1,20800:17607096,17206189:256851 -k1,20800:18546831,17206189:256850 -k1,20800:19159542,17206189:256851 -k1,20800:22251480,17206189:256851 -k1,20800:25433858,17206189:256851 -k1,20800:27677104,17206189:256850 -k1,20800:28620117,17206189:256851 -k1,20800:31966991,17206189:256851 -k1,20800:32583029,17206189:0 -) -(1,20801:6630773,18047677:25952256,513147,134348 -k1,20800:7870845,18047677:220987 -k1,20800:9475953,18047677:220988 -k1,20800:12149297,18047677:220987 -k1,20800:12998120,18047677:220988 -k1,20800:14921077,18047677:220987 -k1,20800:16839446,18047677:220987 -k1,20800:17928786,18047677:220988 -k1,20800:19486707,18047677:220987 -k1,20800:21237961,18047677:220988 -k1,20800:22110376,18047677:220987 -k1,20800:24205037,18047677:220987 -k1,20800:26118165,18047677:220988 -k1,20800:28325548,18047677:220987 -k1,20800:31058531,18047677:220988 -k1,20800:32227169,18047677:220987 -k1,20800:32583029,18047677:0 -) -(1,20801:6630773,18889165:25952256,513147,134348 -k1,20800:8658151,18889165:154359 -k1,20800:10841505,18889165:154359 -k1,20800:11611902,18889165:154359 -k1,20800:13651732,18889165:154359 -k1,20800:15173172,18889165:154359 -k1,20800:16195883,18889165:154359 -k1,20800:17454524,18889165:154359 -k1,20800:19210584,18889165:154360 -k1,20800:22607664,18889165:154359 -k1,20800:23577291,18889165:154359 -k1,20800:24934891,18889165:154359 -k1,20800:26787288,18889165:154359 -k1,20800:29513935,18889165:154359 -k1,20800:30024154,18889165:154359 -k1,20800:31629480,18889165:154359 -k1,20800:32583029,18889165:0 -) -(1,20801:6630773,19730653:25952256,513147,134348 -k1,20800:9971381,19730653:207987 -k1,20800:11382610,19730653:207988 -k1,20800:14575107,19730653:207987 -k1,20800:15544622,19730653:207987 -k1,20800:18029985,19730653:207987 -k1,20800:19257058,19730653:207988 -k1,20800:22141535,19730653:207987 -k1,20800:23008814,19730653:207987 -k1,20800:26996918,19730653:207987 -$1,20800:26996918,19730653 -$1,20800:27499579,19730653 -k1,20800:29172952,19730653:207988 -k1,20800:30565175,19730653:207987 -k1,20800:32583029,19730653:0 -) -(1,20801:6630773,20572141:25952256,513147,134348 -k1,20800:7492118,20572141:233510 -k1,20800:10263182,20572141:233510 -k1,20800:11699932,20572141:233509 -k1,20800:14609932,20572141:233510 -k1,20800:15374939,20572141:233510 -k1,20800:17210149,20572141:233510 -k1,20800:20182408,20572141:233509 -k1,20800:22113956,20572141:233510 -k1,20800:24241456,20572141:233510 -k1,20800:26267376,20572141:233510 -k1,20800:27976100,20572141:233509 -k1,20800:29598318,20572141:233510 -k1,20800:31900144,20572141:233510 -k1,20800:32583029,20572141:0 -) -(1,20801:6630773,21413629:25952256,513147,134348 -k1,20800:7850773,21413629:200915 -k1,20800:9895870,21413629:200914 -k1,20800:11088345,21413629:200915 -k1,20800:13174074,21413629:200914 -k1,20800:16074417,21413629:200915 -k1,20800:17294416,21413629:200914 -k1,20800:18679567,21413629:200915 -k1,20800:20724665,21413629:200915 -k1,20800:21457076,21413629:200914 -k1,20800:22677076,21413629:200915 -k1,20800:24479690,21413629:200914 -k1,20800:26982229,21413629:200915 -k1,20800:29795408,21413629:200914 -k1,20800:31563944,21413629:200915 -k1,20800:32583029,21413629:0 -) -(1,20801:6630773,22255117:25952256,513147,134348 -g1,20800:9549091,22255117 -g1,20800:11836952,22255117 -g1,20800:13724388,22255117 -g1,20800:14582909,22255117 -k1,20801:32583029,22255117:16399731 -g1,20801:32583029,22255117 -) -v1,20803:6630773,23445583:0,393216,0 -(1,20810:6630773,25765505:25952256,2713138,196608 -g1,20810:6630773,25765505 -g1,20810:6630773,25765505 -g1,20810:6434165,25765505 -(1,20810:6434165,25765505:0,2713138,196608 -r1,20825:32779637,25765505:26345472,2909746,196608 -k1,20810:6434165,25765505:-26345472 -) -(1,20810:6434165,25765505:26345472,2713138,196608 -[1,20810:6630773,25765505:25952256,2516530,0 -(1,20805:6630773,23659493:25952256,410518,107478 -(1,20804:6630773,23659493:0,0,0 -g1,20804:6630773,23659493 -g1,20804:6630773,23659493 -g1,20804:6303093,23659493 -(1,20804:6303093,23659493:0,0,0 -) -g1,20804:6630773,23659493 -) -k1,20805:6630773,23659493:0 -g1,20805:12637541,23659493 -g1,20805:14534415,23659493 -g1,20805:15166707,23659493 -g1,20805:17063582,23659493 -g1,20805:18328165,23659493 -h1,20805:18644311,23659493:0,0,0 -k1,20805:32583029,23659493:13938718 -g1,20805:32583029,23659493 -) -(1,20806:6630773,24325671:25952256,404226,107478 -h1,20806:6630773,24325671:0,0,0 -g1,20806:6946919,24325671 -g1,20806:7263065,24325671 -g1,20806:11372959,24325671 -h1,20806:11689105,24325671:0,0,0 -k1,20806:32583029,24325671:20893924 -g1,20806:32583029,24325671 -) -(1,20807:6630773,24991849:25952256,404226,101187 -h1,20807:6630773,24991849:0,0,0 -g1,20807:6946919,24991849 -g1,20807:7263065,24991849 -g1,20807:15482853,24991849 -g1,20807:16115145,24991849 -g1,20807:23702642,24991849 -g1,20807:24334934,24991849 -g1,20807:25599517,24991849 -h1,20807:25915663,24991849:0,0,0 -k1,20807:32583029,24991849:6667366 -g1,20807:32583029,24991849 -) -(1,20808:6630773,25658027:25952256,404226,107478 -h1,20808:6630773,25658027:0,0,0 -g1,20808:6946919,25658027 -g1,20808:7263065,25658027 -g1,20808:12953687,25658027 -g1,20808:13585979,25658027 -g1,20808:19592747,25658027 -g1,20808:20225039,25658027 -g1,20808:21489622,25658027 -g1,20808:23386496,25658027 -g1,20808:24018788,25658027 -g1,20808:24967226,25658027 -g1,20808:26864100,25658027 -g1,20808:27496392,25658027 -h1,20808:29077120,25658027:0,0,0 -k1,20808:32583029,25658027:3505909 -g1,20808:32583029,25658027 -) -] -) -g1,20810:32583029,25765505 -g1,20810:6630773,25765505 -g1,20810:6630773,25765505 -g1,20810:32583029,25765505 -g1,20810:32583029,25765505 -) -h1,20810:6630773,25962113:0,0,0 -(1,20813:6630773,37062426:25952256,10510489,0 -k1,20813:12599879,37062426:5969106 -h1,20812:12599879,37062426:0,0,0 -(1,20812:12599879,37062426:14014044,10510489,0 -(1,20812:12599879,37062426:14014019,10510515,0 -(1,20812:12599879,37062426:14014019,10510515,0 -(1,20812:12599879,37062426:0,10510515,0 -(1,20812:12599879,37062426:0,14208860,0 -(1,20812:12599879,37062426:18945146,14208860,0 -) -k1,20812:12599879,37062426:-18945146 -) -) -g1,20812:26613898,37062426 -) -) -) -g1,20813:26613923,37062426 -k1,20813:32583029,37062426:5969106 -) -v1,20820:6630773,38428202:0,393216,0 -(1,20821:6630773,43064089:25952256,5029103,0 -g1,20821:6630773,43064089 -g1,20821:6303093,43064089 -r1,20825:6401397,43064089:98304,5029103,0 -g1,20821:6600626,43064089 -g1,20821:6797234,43064089 -[1,20821:6797234,43064089:25785795,5029103,0 -(1,20821:6797234,38848786:25785795,813800,267386 -(1,20820:6797234,38848786:0,813800,267386 -r1,20825:8134168,38848786:1336934,1081186,267386 -k1,20820:6797234,38848786:-1336934 -) -(1,20820:6797234,38848786:1336934,813800,267386 -) -k1,20820:8272730,38848786:138562 -k1,20820:8600410,38848786:327680 -k1,20820:10522206,38848786:138561 -k1,20820:11845004,38848786:138562 -k1,20820:13827749,38848786:138562 -k1,20820:14957871,38848786:138562 -k1,20820:17590732,38848786:138561 -k1,20820:18886004,38848786:138562 -k1,20820:21311773,38848786:138562 -k1,20820:23310901,38848786:138561 -k1,20820:24100891,38848786:138562 -k1,20820:25173996,38848786:138562 -k1,20820:26779254,38848786:138562 -k1,20820:27936900,38848786:138561 -k1,20820:31391584,38848786:138562 -k1,20820:32583029,38848786:0 -) -(1,20821:6797234,39690274:25785795,513147,134348 -k1,20820:9392418,39690274:249650 -k1,20820:13633212,39690274:249651 -(1,20820:13633212,39690274:0,452978,122846 -r1,20825:15398325,39690274:1765113,575824,122846 -k1,20820:13633212,39690274:-1765113 -) -(1,20820:13633212,39690274:1765113,452978,122846 -k1,20820:13633212,39690274:3277 -h1,20820:15395048,39690274:0,411205,112570 -) -k1,20820:15647975,39690274:249650 -k1,20820:17089071,39690274:249651 -(1,20820:17089071,39690274:0,452978,122846 -r1,20825:18854184,39690274:1765113,575824,122846 -k1,20820:17089071,39690274:-1765113 -) -(1,20820:17089071,39690274:1765113,452978,122846 -k1,20820:17089071,39690274:3277 -h1,20820:18850907,39690274:0,411205,112570 -) -k1,20820:19277504,39690274:249650 -k1,20820:20213317,39690274:249651 -k1,20820:21482052,39690274:249650 -k1,20820:23997283,39690274:249651 -k1,20820:26257578,39690274:249650 -k1,20820:27909699,39690274:249651 -k1,20820:29897364,39690274:249650 -k1,20820:32583029,39690274:0 -) -(1,20821:6797234,40531762:25785795,513147,134348 -k1,20820:8413867,40531762:235789 -k1,20820:9181153,40531762:235789 -k1,20820:10599867,40531762:235789 -k1,20820:11487084,40531762:235789 -k1,20820:12741958,40531762:235789 -k1,20820:14188852,40531762:235789 -k1,20820:15709147,40531762:235789 -k1,20820:19762408,40531762:235789 -k1,20820:22510192,40531762:235789 -k1,20820:23737541,40531762:235789 -k1,20820:27373338,40531762:235789 -k1,20820:28260555,40531762:235789 -k1,20820:29515429,40531762:235789 -k1,20820:30977397,40531762:235789 -k1,20820:32583029,40531762:0 -) -(1,20821:6797234,41373250:25785795,513147,134348 -k1,20820:8988002,41373250:239106 -k1,20820:10669554,41373250:239105 -k1,20820:11560088,41373250:239106 -k1,20820:12818278,41373250:239105 -k1,20820:14508351,41373250:239106 -k1,20820:15817004,41373250:239105 -k1,20820:18557619,41373250:239106 -k1,20820:22614196,41373250:239105 -k1,20820:23512594,41373250:239106 -$1,20820:23512594,41373250 -$1,20820:24015255,41373250 -k1,20820:25719745,41373250:239105 -k1,20820:27143087,41373250:239106 -k1,20820:29226375,41373250:239105 -k1,20820:31786111,41373250:239106 -k1,20820:32583029,41373250:0 -) -(1,20821:6797234,42214738:25785795,513147,134348 -k1,20820:9437406,42214738:184538 -k1,20820:11420252,42214738:184538 -k1,20820:13113430,42214738:184539 -k1,20820:16488261,42214738:184538 -k1,20820:18066750,42214738:184538 -k1,20820:20575850,42214738:184538 -k1,20820:21411817,42214738:184539 -k1,20820:22780591,42214738:184538 -k1,20820:24952181,42214738:184538 -k1,20820:26881287,42214738:184538 -k1,20820:28084911,42214738:184539 -k1,20820:32080368,42214738:184538 -$1,20820:32080368,42214738 -$1,20820:32583029,42214738 -k1,20821:32583029,42214738:0 -) -(1,20821:6797234,43056226:25785795,473825,7863 -k1,20821:32583029,43056226:24359732 -g1,20821:32583029,43056226 -) -] -g1,20821:32583029,43064089 -) -h1,20821:6630773,43064089:0,0,0 -v1,20824:6630773,44429865:0,393216,0 -] -(1,20825:32583029,45706769:0,0,0 -g1,20825:32583029,45706769 -) -) -] -(1,20825:6630773,47279633:25952256,0,0 -h1,20825:6630773,47279633:25952256,0,0 -) -] -(1,20825:4262630,4025873:0,0,0 -[1,20825:-473656,4025873:0,0,0 -(1,20825:-473656,-710413:0,0,0 -(1,20825:-473656,-710413:0,0,0 -g1,20825:-473656,-710413 -) -g1,20825:-473656,-710413 -) -] -) -] -!19238 -}376 -Input:3412:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3413:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +[1,20841:3078558,4812305:0,0,0 +(1,20841:3078558,49800853:0,16384,2228224 +g1,20841:29030814,49800853 +g1,20841:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,20841:36151628,51504789:16384,1179648,0 +) +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 +) +] +) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,20841:37855564,49800853:1179648,16384,0 +) +) +k1,20841:3078556,49800853:-34777008 +) +] +g1,20841:6630773,4812305 +k1,20841:21350816,4812305:13524666 +g1,20841:21999622,4812305 +g1,20841:25611966,4812305 +g1,20841:28956923,4812305 +g1,20841:29772190,4812305 +) +) +] +[1,20841:6630773,45706769:25952256,40108032,0 +(1,20841:6630773,45706769:25952256,40108032,0 +(1,20841:6630773,45706769:0,0,0 +g1,20841:6630773,45706769 +) +[1,20841:6630773,45706769:25952256,40108032,0 +v1,20807:6630773,6254097:0,393216,0 +(1,20807:6630773,8264597:25952256,2403716,0 +g1,20807:6630773,8264597 +g1,20807:6237557,8264597 +r1,20841:6368629,8264597:131072,2403716,0 +g1,20807:6567858,8264597 +g1,20807:6764466,8264597 +[1,20807:6764466,8264597:25818563,2403716,0 +(1,20807:6764466,6526574:25818563,665693,196608 +(1,20806:6764466,6526574:0,665693,196608 +r1,20841:8010564,6526574:1246098,862301,196608 +k1,20806:6764466,6526574:-1246098 +) +(1,20806:6764466,6526574:1246098,665693,196608 +) +k1,20806:8238811,6526574:228247 +k1,20806:9965029,6526574:327680 +k1,20806:12399218,6526574:228247 +k1,20806:13646550,6526574:228247 +k1,20806:15152094,6526574:228247 +k1,20806:17235665,6526574:228247 +k1,20806:18115340,6526574:228247 +k1,20806:20004269,6526574:228247 +k1,20806:21251601,6526574:228247 +k1,20806:23501634,6526574:228247 +k1,20806:26057064,6526574:228247 +k1,20806:26944603,6526574:228247 +k1,20806:28191935,6526574:228247 +k1,20806:29713863,6526574:228247 +k1,20806:32583029,6526574:0 +) +(1,20807:6764466,7391654:25818563,505283,134348 +k1,20806:9898848,7391654:193126 +(1,20806:9898848,7391654:0,452978,115847 +r1,20841:10960537,7391654:1061689,568825,115847 +k1,20806:9898848,7391654:-1061689 +) +(1,20806:9898848,7391654:1061689,452978,115847 +k1,20806:9898848,7391654:3277 +h1,20806:10957260,7391654:0,411205,112570 +) +k1,20806:11153662,7391654:193125 +k1,20806:12740739,7391654:193126 +(1,20806:12740739,7391654:0,414482,115847 +r1,20841:13802428,7391654:1061689,530329,115847 +k1,20806:12740739,7391654:-1061689 +) +(1,20806:12740739,7391654:1061689,414482,115847 +k1,20806:12740739,7391654:3277 +h1,20806:13799151,7391654:0,411205,112570 +) +k1,20806:14169223,7391654:193125 +k1,20806:15743193,7391654:193126 +k1,20806:16467815,7391654:193125 +k1,20806:18229218,7391654:193126 +k1,20806:19494513,7391654:193126 +k1,20806:20706723,7391654:193125 +k1,20806:22594610,7391654:193126 +k1,20806:23319232,7391654:193125 +k1,20806:24796864,7391654:193126 +k1,20806:26160462,7391654:193125 +k1,20806:27486050,7391654:193126 +k1,20806:29209441,7391654:193125 +k1,20806:30053995,7391654:193126 +k1,20806:32583029,7391654:0 +) +(1,20807:6764466,8256734:25818563,505283,7863 +g1,20806:7982780,8256734 +k1,20807:32583029,8256734:20635976 +g1,20807:32583029,8256734 +) +] +g1,20807:32583029,8264597 +) +h1,20807:6630773,8264597:0,0,0 +v1,20810:6630773,9129677:0,393216,0 +(1,20811:6630773,12273807:25952256,3537346,0 +g1,20811:6630773,12273807 +g1,20811:6237557,12273807 +r1,20841:6368629,12273807:131072,3537346,0 +g1,20811:6567858,12273807 +g1,20811:6764466,12273807 +[1,20811:6764466,12273807:25818563,3537346,0 +(1,20811:6764466,9544219:25818563,807758,219026 +(1,20810:6764466,9544219:0,807758,219026 +r1,20841:7908217,9544219:1143751,1026784,219026 +k1,20810:6764466,9544219:-1143751 +) +(1,20810:6764466,9544219:1143751,807758,219026 +) +k1,20810:8350754,9544219:442537 +k1,20810:8678434,9544219:327680 +k1,20810:10074521,9544219:442538 +k1,20810:12687610,9544219:442537 +k1,20810:14222632,9544219:442537 +(1,20810:14222632,9544219:0,452978,115847 +r1,20841:17746304,9544219:3523672,568825,115847 +k1,20810:14222632,9544219:-3523672 +) +(1,20810:14222632,9544219:3523672,452978,115847 +k1,20810:14222632,9544219:3277 +h1,20810:17743027,9544219:0,411205,112570 +) +k1,20810:18188842,9544219:442538 +k1,20810:20025330,9544219:442537 +(1,20810:20025330,9544219:0,452978,122846 +r1,20841:24955850,9544219:4930520,575824,122846 +k1,20810:20025330,9544219:-4930520 +) +(1,20810:20025330,9544219:4930520,452978,122846 +g1,20810:21787166,9544219 +g1,20810:22490590,9544219 +h1,20810:24952573,9544219:0,411205,112570 +) +k1,20810:25398387,9544219:442537 +k1,20810:26523810,9544219:442538 +(1,20810:26523810,9544219:0,452978,122846 +r1,20841:31454330,9544219:4930520,575824,122846 +k1,20810:26523810,9544219:-4930520 +) +(1,20810:26523810,9544219:4930520,452978,122846 +g1,20810:28285646,9544219 +g1,20810:28989070,9544219 +h1,20810:31451053,9544219:0,411205,112570 +) +k1,20810:31896867,9544219:442537 +k1,20810:32583029,9544219:0 +) +(1,20811:6764466,10409299:25818563,505283,122846 +k1,20810:7974633,10409299:341815 +k1,20810:9420730,10409299:341815 +k1,20810:10855029,10409299:341814 +(1,20810:10855029,10409299:0,452978,122846 +r1,20841:15433837,10409299:4578808,575824,122846 +k1,20810:10855029,10409299:-4578808 +) +(1,20810:10855029,10409299:4578808,452978,122846 +g1,20810:12616865,10409299 +g1,20810:13320289,10409299 +h1,20810:15430560,10409299:0,411205,112570 +) +k1,20810:15775652,10409299:341815 +k1,20810:16800352,10409299:341815 +(1,20810:16800352,10409299:0,452978,122846 +r1,20841:22434295,10409299:5633943,575824,122846 +k1,20810:16800352,10409299:-5633943 +) +(1,20810:16800352,10409299:5633943,452978,122846 +g1,20810:18562188,10409299 +g1,20810:19265612,10409299 +h1,20810:22431018,10409299:0,411205,112570 +) +k1,20810:22949780,10409299:341815 +k1,20810:25804244,10409299:341814 +(1,20810:25804244,10409299:0,452978,122846 +r1,20841:30031340,10409299:4227096,575824,122846 +k1,20810:25804244,10409299:-4227096 +) +(1,20810:25804244,10409299:4227096,452978,122846 +k1,20810:25804244,10409299:3277 +h1,20810:30028063,10409299:0,411205,112570 +) +k1,20810:30373155,10409299:341815 +k1,20811:32583029,10409299:0 +) +(1,20811:6764466,11274379:25818563,505283,134348 +(1,20810:6764466,11274379:0,452978,122846 +r1,20841:10991562,11274379:4227096,575824,122846 +k1,20810:6764466,11274379:-4227096 +) +(1,20810:6764466,11274379:4227096,452978,122846 +k1,20810:6764466,11274379:3277 +h1,20810:10988285,11274379:0,411205,112570 +) +k1,20810:11217540,11274379:225978 +k1,20810:12547799,11274379:225977 +k1,20810:13521543,11274379:225978 +k1,20810:15260747,11274379:225978 +k1,20810:17901071,11274379:225978 +k1,20810:20554502,11274379:225977 +k1,20810:23538235,11274379:225978 +k1,20810:27166842,11274379:225978 +k1,20810:28044248,11274379:225978 +k1,20810:30082951,11274379:225977 +k1,20810:31358816,11274379:225978 +k1,20811:32583029,11274379:0 +) +(1,20811:6764466,12139459:25818563,485622,134348 +g1,20810:8231161,12139459 +h1,20810:9773879,12139459:0,0,0 +g1,20810:9973108,12139459 +g1,20810:10981707,12139459 +g1,20810:12679089,12139459 +h1,20810:13874466,12139459:0,0,0 +k1,20811:32583028,12139459:18534892 +g1,20811:32583028,12139459 +) +] +g1,20811:32583029,12273807 +) +h1,20811:6630773,12273807:0,0,0 +(1,20814:6630773,15104967:25952256,32768,229376 +(1,20814:6630773,15104967:0,32768,229376 +(1,20814:6630773,15104967:5505024,32768,229376 +r1,20841:12135797,15104967:5505024,262144,229376 +) +k1,20814:6630773,15104967:-5505024 +) +(1,20814:6630773,15104967:25952256,32768,0 +r1,20841:32583029,15104967:25952256,32768,0 +) +) +(1,20814:6630773,16736819:25952256,606339,151780 +(1,20814:6630773,16736819:2464678,582746,14155 +g1,20814:6630773,16736819 +g1,20814:9095451,16736819 +) +g1,20814:14113674,16736819 +g1,20814:15823377,16736819 +g1,20814:19109090,16736819 +k1,20814:32583029,16736819:11502354 +g1,20814:32583029,16736819 +) +(1,20819:6630773,17995115:25952256,513147,134348 +k1,20817:9406626,17995115:233056 +k1,20817:11247280,17995115:233056 +k1,20817:12584618,17995115:233056 +k1,20817:13565440,17995115:233056 +k1,20817:16325564,17995115:233056 +k1,20817:17217912,17995115:233056 +k1,20817:18137130,17995115:233056 +k1,20817:19977784,17995115:233056 +k1,20817:23515821,17995115:233056 +k1,20817:24400305,17995115:233056 +k1,20817:26377274,17995115:233056 +k1,20817:29700353,17995115:233056 +k1,20817:31966991,17995115:233056 +k1,20817:32583029,17995115:0 +) +(1,20819:6630773,18860195:25952256,513147,134348 +k1,20817:8076123,18860195:242109 +k1,20817:10735854,18860195:242108 +k1,20817:12050132,18860195:242109 +k1,20817:14293055,18860195:242109 +k1,20817:16270557,18860195:242109 +k1,20817:16868525,18860195:242108 +k1,20817:19872977,18860195:242109 +k1,20817:22361005,18860195:242109 +k1,20817:23262405,18860195:242108 +k1,20817:27416358,18860195:242109 +k1,20817:29039311,18860195:242109 +k1,20817:29812917,18860195:242109 +k1,20817:30410885,18860195:242108 +k1,20817:31753999,18860195:242109 +k1,20819:32583029,18860195:0 +) +(1,20819:6630773,19725275:25952256,513147,134348 +k1,20817:8572958,19725275:191063 +k1,20817:10048526,19725275:191062 +k1,20817:11258674,19725275:191063 +k1,20817:14352326,19725275:191062 +k1,20817:15202681,19725275:191063 +k1,20817:18112833,19725275:191063 +k1,20817:18990057,19725275:191062 +k1,20817:23382633,19725275:191063 +k1,20817:24189734,19725275:191063 +k1,20817:27209329,19725275:191062 +k1,20817:29446426,19725275:191063 +k1,20817:30729973,19725275:191062 +k1,20817:31753999,19725275:191063 +k1,20817:32583029,19725275:0 +) +(1,20819:6630773,20590355:25952256,505283,134348 +k1,20817:8816248,20590355:161723 +k1,20817:11398870,20590355:161722 +k1,20817:13168191,20590355:161723 +k1,20817:14198265,20590355:161722 +k1,20817:15452473,20590355:161723 +k1,20817:16633280,20590355:161722 +k1,20817:18448476,20590355:161723 +k1,20817:22200915,20590355:161722 +k1,20817:25045027,20590355:161723 +k1,20817:26398194,20590355:161722 +k1,20817:28406067,20590355:161723 +k1,20817:29436141,20590355:161722 +k1,20817:31073079,20590355:161723 +k1,20817:32583029,20590355:0 +) +(1,20819:6630773,21455435:25952256,513147,134348 +k1,20817:8513824,21455435:147658 +k1,20817:10055432,21455435:147657 +k1,20817:11222175,21455435:147658 +k1,20817:13635412,21455435:147657 +k1,20817:16028989,21455435:147658 +k1,20817:16835938,21455435:147657 +k1,20817:19867835,21455435:147658 +k1,20817:23927336,21455435:147657 +k1,20817:25271681,21455435:147658 +k1,20817:26794939,21455435:147657 +k1,20817:28604590,21455435:147658 +k1,20817:30036753,21455435:147657 +k1,20817:31052763,21455435:147658 +k1,20817:32583029,21455435:0 +) +(1,20819:6630773,22320515:25952256,513147,126483 +k1,20817:7420402,22320515:138201 +k1,20817:8373871,22320515:138201 +k1,20817:9043569,22320515:138201 +k1,20817:9833197,22320515:138200 +k1,20817:11168741,22320515:138201 +(1,20817:11168741,22320515:0,452978,115847 +r1,20841:15747549,22320515:4578808,568825,115847 +k1,20817:11168741,22320515:-4578808 +) +(1,20817:11168741,22320515:4578808,452978,115847 +k1,20817:11168741,22320515:3277 +h1,20817:15744272,22320515:0,411205,112570 +) +k1,20817:15885750,22320515:138201 +k1,20817:16675379,22320515:138201 +k1,20817:19458613,22320515:138201 +k1,20817:20615899,22320515:138201 +k1,20817:23193350,22320515:138201 +k1,20817:24105530,22320515:138200 +k1,20817:26352680,22320515:138201 +k1,20817:27866482,22320515:138201 +k1,20817:29696823,22320515:138201 +k1,20817:32583029,22320515:0 +) +(1,20819:6630773,23185595:25952256,505283,126483 +k1,20817:9986065,23185595:171553 +k1,20817:11261900,23185595:171553 +k1,20817:12181219,23185595:171553 +k1,20817:14250039,23185595:171553 +k1,20817:17485400,23185595:171553 +k1,20817:18272991,23185595:171553 +k1,20817:20865445,23185595:171554 +k1,20817:22644596,23185595:171553 +k1,20817:24258596,23185595:171553 +k1,20817:25046187,23185595:171553 +k1,20817:28101979,23185595:171553 +k1,20817:30054801,23185595:171553 +k1,20817:31714677,23185595:171553 +k1,20817:32583029,23185595:0 +) +(1,20819:6630773,24050675:25952256,513147,134348 +k1,20817:7997979,24050675:169863 +k1,20817:8523703,24050675:169864 +k1,20817:9976761,24050675:169863 +k1,20817:12371572,24050675:169864 +k1,20817:13192863,24050675:169863 +k1,20817:14381812,24050675:169864 +k1,20817:17454265,24050675:169863 +k1,20817:18283421,24050675:169864 +k1,20817:21346043,24050675:169863 +k1,20817:25311096,24050675:169864 +k1,20817:26974525,24050675:169863 +k1,20817:27830551,24050675:169864 +(1,20817:27830551,24050675:0,452978,115847 +r1,20841:32409359,24050675:4578808,568825,115847 +k1,20817:27830551,24050675:-4578808 +) +(1,20817:27830551,24050675:4578808,452978,115847 +k1,20817:27830551,24050675:3277 +h1,20817:32406082,24050675:0,411205,112570 +) +k1,20817:32583029,24050675:0 +) +(1,20819:6630773,24915755:25952256,505283,134348 +k1,20818:8619622,24915755:205614 +k1,20818:10560630,24915755:205615 +k1,20818:12430858,24915755:205614 +k1,20818:16548317,24915755:205615 +k1,20818:17773016,24915755:205614 +(1,20818:17773016,24915755:0,414482,115847 +r1,20841:18131282,24915755:358266,530329,115847 +k1,20818:17773016,24915755:-358266 +) +(1,20818:17773016,24915755:358266,414482,115847 +k1,20818:17773016,24915755:3277 +h1,20818:18128005,24915755:0,411205,112570 +) +k1,20818:18336897,24915755:205615 +k1,20818:19733956,24915755:205614 +(1,20818:19733956,24915755:0,414482,115847 +r1,20841:20092222,24915755:358266,530329,115847 +k1,20818:19733956,24915755:-358266 +) +(1,20818:19733956,24915755:358266,414482,115847 +k1,20818:19733956,24915755:3277 +h1,20818:20088945,24915755:0,411205,112570 +) +k1,20818:20297837,24915755:205615 +k1,20818:23567915,24915755:205614 +k1,20818:27406846,24915755:205615 +k1,20818:28263888,24915755:205614 +k1,20818:29488588,24915755:205615 +k1,20818:31391584,24915755:205614 +k1,20818:32583029,24915755:0 +) +(1,20819:6630773,25780835:25952256,505283,126483 +g1,20818:8657146,25780835 +g1,20818:11690807,25780835 +k1,20819:32583030,25780835:16922052 +g1,20819:32583030,25780835 +) +(1,20820:6630773,27897653:25952256,555811,139132 +(1,20820:6630773,27897653:2899444,534184,12975 +g1,20820:6630773,27897653 +g1,20820:9530217,27897653 +) +g1,20820:13388453,27897653 +k1,20820:32583029,27897653:17387290 +g1,20820:32583029,27897653 +) +(1,20823:6630773,29155949:25952256,513147,126483 +k1,20822:8623559,29155949:275743 +k1,20822:10615689,29155949:275742 +k1,20822:11550724,29155949:275743 +k1,20822:13215829,29155949:275742 +k1,20822:14483132,29155949:275743 +k1,20822:16409072,29155949:275743 +k1,20822:19542839,29155949:275742 +k1,20822:23016084,29155949:275743 +k1,20822:24101196,29155949:275742 +k1,20822:26041553,29155949:275743 +k1,20822:30055469,29155949:275742 +k1,20822:31773659,29155949:275743 +k1,20822:32583029,29155949:0 +) +(1,20823:6630773,30021029:25952256,513147,126483 +k1,20822:9651506,30021029:136494 +k1,20822:13699843,30021029:136493 +k1,20822:15033024,30021029:136494 +k1,20822:17634326,30021029:136493 +k1,20822:20432237,30021029:136494 +k1,20822:21100227,30021029:136493 +k1,20822:22794512,30021029:136494 +k1,20822:25963356,30021029:136493 +k1,20822:27667471,30021029:136494 +k1,20822:29689435,30021029:136493 +k1,20822:30845014,30021029:136494 +k1,20822:32583029,30021029:0 +) +(1,20823:6630773,30886109:25952256,513147,134348 +k1,20822:9332974,30886109:236081 +k1,20822:10196890,30886109:236081 +k1,20822:12125111,30886109:236081 +k1,20822:14058573,30886109:236080 +k1,20822:14953946,30886109:236081 +k1,20822:16615435,30886109:236081 +k1,20822:18696354,30886109:236081 +k1,20822:20321798,30886109:236081 +k1,20822:21951830,30886109:236081 +k1,20822:22543770,30886109:236080 +k1,20822:24838992,30886109:236081 +k1,20822:27682751,30886109:236081 +k1,20822:30918415,30886109:236081 +k1,20822:32583029,30886109:0 +) +(1,20823:6630773,31751189:25952256,513147,134348 +k1,20822:10586879,31751189:217932 +k1,20822:11909094,31751189:217933 +k1,20822:12874792,31751189:217932 +k1,20822:14605950,31751189:217932 +k1,20822:15475311,31751189:217933 +k1,20822:18550613,31751189:217932 +k1,20822:19900352,31751189:217932 +k1,20822:21987371,31751189:217932 +k1,20822:24003612,31751189:217933 +k1,20822:24904429,31751189:217932 +k1,20822:27693338,31751189:217932 +k1,20822:28527309,31751189:217933 +k1,20822:32095441,31751189:217932 +k1,20822:32583029,31751189:0 +) +(1,20823:6630773,32616269:25952256,505283,134348 +k1,20822:8491996,32616269:211026 +k1,20822:11691464,32616269:211026 +k1,20822:15463060,32616269:211025 +k1,20822:16205583,32616269:211026 +k1,20822:17068037,32616269:211026 +k1,20822:18556360,32616269:211026 +k1,20822:21593297,32616269:211025 +k1,20822:22420361,32616269:211026 +k1,20822:22987247,32616269:211026 +k1,20822:26072027,32616269:211026 +k1,20822:28794392,32616269:211025 +k1,20822:31563944,32616269:211026 +k1,20822:32583029,32616269:0 +) +(1,20823:6630773,33481349:25952256,513147,126483 +g1,20822:7967707,33481349 +g1,20822:9560887,33481349 +g1,20822:10115976,33481349 +g1,20822:14848330,33481349 +g1,20822:19712412,33481349 +g1,20822:20570933,33481349 +g1,20822:22195570,33481349 +g1,20822:23054091,33481349 +k1,20823:32583029,33481349:8217563 +g1,20823:32583029,33481349 +) +(1,20825:6630773,34346429:25952256,513147,134348 +h1,20824:6630773,34346429:983040,0,0 +k1,20824:9510261,34346429:253460 +k1,20824:11124249,34346429:253461 +k1,20824:12985308,34346429:253461 +k1,20824:14230328,34346429:253460 +k1,20824:17788770,34346429:253461 +k1,20824:21608699,34346429:253460 +k1,20824:22545045,34346429:253461 +k1,20824:25130931,34346429:253460 +k1,20824:26991989,34346429:253460 +k1,20824:29246264,34346429:253461 +k1,20824:30309095,34346429:253461 +k1,20824:30918415,34346429:253460 +k1,20824:32583029,34346429:0 +) +(1,20825:6630773,35211509:25952256,513147,134348 +k1,20824:9070275,35211509:193583 +k1,20824:9923150,35211509:193583 +k1,20824:13854907,35211509:193583 +k1,20824:15280567,35211509:193583 +k1,20824:18083138,35211509:193583 +h1,20824:19625856,35211509:0,0,0 +k1,20824:19819439,35211509:193583 +k1,20824:21204467,35211509:193583 +h1,20824:22747185,35211509:0,0,0 +k1,20824:22940768,35211509:193583 +k1,20824:23943721,35211509:193583 +k1,20824:25965758,35211509:193583 +h1,20824:27161135,35211509:0,0,0 +k1,20824:27354718,35211509:193583 +k1,20824:28739746,35211509:193583 +h1,20824:29935123,35211509:0,0,0 +k1,20824:30302376,35211509:193583 +k1,20825:32583029,35211509:0 +) +(1,20825:6630773,36076589:25952256,513147,134348 +k1,20824:8596057,36076589:236444 +k1,20824:9780153,36076589:236445 +k1,20824:10372457,36076589:236444 +k1,20824:14218625,36076589:236445 +k1,20824:15114361,36076589:236444 +k1,20824:16369891,36076589:236445 +k1,20824:17698820,36076589:236444 +k1,20824:18594556,36076589:236444 +k1,20824:20527728,36076589:236445 +k1,20824:23446561,36076589:236444 +k1,20824:24874451,36076589:236445 +k1,20824:28931644,36076589:236444 +k1,20824:30121638,36076589:236445 +k1,20824:31490544,36076589:236444 +k1,20824:32583029,36076589:0 +) +(1,20825:6630773,36941669:25952256,513147,126483 +k1,20824:8491230,36941669:221402 +k1,20824:9660284,36941669:221403 +k1,20824:12873405,36941669:221402 +k1,20824:15013701,36941669:221402 +k1,20824:16103455,36941669:221402 +k1,20824:17602155,36941669:221403 +k1,20824:19381348,36941669:221402 +k1,20824:21469215,36941669:221402 +k1,20824:22882062,36941669:221402 +k1,20824:25962145,36941669:221403 +k1,20824:27746581,36941669:221402 +k1,20824:31092740,36941669:221402 +k1,20824:32583029,36941669:0 +) +(1,20825:6630773,37806749:25952256,513147,134348 +g1,20824:7886442,37806749 +g1,20824:10340765,37806749 +g1,20824:12654185,37806749 +g1,20824:13650332,37806749 +g1,20824:14264404,37806749 +g1,20824:16238348,37806749 +g1,20824:19017729,37806749 +k1,20825:32583029,37806749:9378206 +g1,20825:32583029,37806749 +) +(1,20827:6630773,38671829:25952256,513147,134348 +h1,20826:6630773,38671829:983040,0,0 +k1,20826:9298803,38671829:196667 +k1,20826:10363823,38671829:196668 +k1,20826:11837787,38671829:196667 +k1,20826:12390315,38671829:196668 +k1,20826:15007882,38671829:196667 +k1,20826:18440718,38671829:196668 +k1,20826:19296677,38671829:196667 +k1,20826:21051136,38671829:196668 +k1,20826:24436785,38671829:196667 +k1,20826:26027404,38671829:196668 +k1,20826:31062594,38671829:196667 +k1,20826:32583029,38671829:0 +) +(1,20827:6630773,39536909:25952256,513147,134348 +k1,20826:7742178,39536909:157856 +k1,20826:8992519,39536909:157856 +(1,20826:8992519,39536909:0,452978,115847 +r1,20841:12516191,39536909:3523672,568825,115847 +k1,20826:8992519,39536909:-3523672 +) +(1,20826:8992519,39536909:3523672,452978,115847 +k1,20826:8992519,39536909:3277 +h1,20826:12512914,39536909:0,411205,112570 +) +k1,20826:12847718,39536909:157857 +k1,20826:14202261,39536909:157856 +k1,20826:16505110,39536909:157856 +k1,20826:19704492,39536909:157856 +k1,20826:20881434,39536909:157857 +k1,20826:23525071,39536909:157856 +k1,20826:24342219,39536909:157856 +k1,20826:27085470,39536909:157856 +k1,20826:29357518,39536909:157857 +k1,20826:30312292,39536909:157856 +k1,20826:30884991,39536909:157856 +k1,20826:32583029,39536909:0 +) +(1,20827:6630773,40401989:25952256,505283,7863 +g1,20826:7849087,40401989 +g1,20826:9606107,40401989 +g1,20826:12664016,40401989 +g1,20826:14070418,40401989 +g1,20826:16279636,40401989 +g1,20826:17930487,40401989 +k1,20827:32583029,40401989:13462408 +g1,20827:32583029,40401989 +) +v1,20829:6630773,41086844:0,393216,0 +(1,20841:6630773,45503627:25952256,4809999,196608 +g1,20841:6630773,45503627 +g1,20841:6630773,45503627 +g1,20841:6434165,45503627 +(1,20841:6434165,45503627:0,4809999,196608 +r1,20841:32779637,45503627:26345472,5006607,196608 +k1,20841:6434165,45503627:-26345472 +) +(1,20841:6434165,45503627:26345472,4809999,196608 +[1,20841:6630773,45503627:25952256,4613391,0 +(1,20831:6630773,41314675:25952256,424439,112852 +(1,20830:6630773,41314675:0,0,0 +g1,20830:6630773,41314675 +g1,20830:6630773,41314675 +g1,20830:6303093,41314675 +(1,20830:6303093,41314675:0,0,0 +) +g1,20830:6630773,41314675 +) +g1,20831:7294681,41314675 +g1,20831:8290543,41314675 +g1,20831:15925484,41314675 +g1,20831:22896517,41314675 +g1,20831:23228471,41314675 +h1,20831:23560425,41314675:0,0,0 +k1,20831:32583029,41314675:9022604 +g1,20831:32583029,41314675 +) +(1,20832:6630773,41999530:25952256,424439,106246 +h1,20832:6630773,41999530:0,0,0 +g1,20832:6962727,41999530 +g1,20832:7294681,41999530 +g1,20832:11942036,41999530 +h1,20832:12273990,41999530:0,0,0 +k1,20832:32583030,41999530:20309040 +g1,20832:32583030,41999530 +) +(1,20833:6630773,42684385:25952256,424439,86428 +h1,20833:6630773,42684385:0,0,0 +g1,20833:6962727,42684385 +g1,20833:7294681,42684385 +g1,20833:15925484,42684385 +g1,20833:16589392,42684385 +g1,20833:18249162,42684385 +g1,20833:19576978,42684385 +g1,20833:21236748,42684385 +k1,20833:21236748,42684385:0 +h1,20833:22896518,42684385:0,0,0 +k1,20833:32583029,42684385:9686511 +g1,20833:32583029,42684385 +) +(1,20834:6630773,43369240:25952256,424439,86428 +h1,20834:6630773,43369240:0,0,0 +g1,20834:6962727,43369240 +g1,20834:7294681,43369240 +g1,20834:7626635,43369240 +g1,20834:7958589,43369240 +g1,20834:8290543,43369240 +g1,20834:8622497,43369240 +g1,20834:8954451,43369240 +g1,20834:9286405,43369240 +g1,20834:9618359,43369240 +g1,20834:9950313,43369240 +g1,20834:10282267,43369240 +g1,20834:10614221,43369240 +g1,20834:10946175,43369240 +g1,20834:11278129,43369240 +g1,20834:11610083,43369240 +g1,20834:11942037,43369240 +g1,20834:12273991,43369240 +g1,20834:12605945,43369240 +g1,20834:12937899,43369240 +g1,20834:13269853,43369240 +g1,20834:13601807,43369240 +g1,20834:15925485,43369240 +g1,20834:16589393,43369240 +g1,20834:18913071,43369240 +g1,20834:20572841,43369240 +g1,20834:22232611,43369240 +k1,20834:22232611,43369240:0 +h1,20834:23892381,43369240:0,0,0 +k1,20834:32583029,43369240:8690648 +g1,20834:32583029,43369240 +) +(1,20835:6630773,44054095:25952256,424439,86428 +h1,20835:6630773,44054095:0,0,0 +g1,20835:6962727,44054095 +g1,20835:7294681,44054095 +g1,20835:7626635,44054095 +g1,20835:7958589,44054095 +g1,20835:8290543,44054095 +g1,20835:8622497,44054095 +g1,20835:8954451,44054095 +g1,20835:9286405,44054095 +g1,20835:9618359,44054095 +g1,20835:9950313,44054095 +g1,20835:10282267,44054095 +g1,20835:10614221,44054095 +g1,20835:10946175,44054095 +g1,20835:11278129,44054095 +g1,20835:11610083,44054095 +g1,20835:11942037,44054095 +g1,20835:12273991,44054095 +g1,20835:12605945,44054095 +g1,20835:12937899,44054095 +g1,20835:13269853,44054095 +g1,20835:13601807,44054095 +g1,20835:15925485,44054095 +g1,20835:16589393,44054095 +g1,20835:18249163,44054095 +k1,20835:18249163,44054095:0 +h1,20835:19908933,44054095:0,0,0 +k1,20835:32583029,44054095:12674096 +g1,20835:32583029,44054095 +) +(1,20836:6630773,44738950:25952256,424439,106246 +h1,20836:6630773,44738950:0,0,0 +g1,20836:6962727,44738950 +g1,20836:7294681,44738950 +g1,20836:7626635,44738950 +g1,20836:7958589,44738950 +g1,20836:8290543,44738950 +g1,20836:8622497,44738950 +g1,20836:8954451,44738950 +g1,20836:9286405,44738950 +g1,20836:9618359,44738950 +g1,20836:9950313,44738950 +g1,20836:10282267,44738950 +g1,20836:10614221,44738950 +g1,20836:10946175,44738950 +g1,20836:11278129,44738950 +g1,20836:11610083,44738950 +g1,20836:11942037,44738950 +g1,20836:12273991,44738950 +g1,20836:12605945,44738950 +g1,20836:12937899,44738950 +g1,20836:13269853,44738950 +g1,20836:13601807,44738950 +g1,20836:15925485,44738950 +g1,20836:16589393,44738950 +g1,20836:18249163,44738950 +k1,20836:18249163,44738950:0 +h1,20836:19245025,44738950:0,0,0 +k1,20836:32583029,44738950:13338004 +g1,20836:32583029,44738950 +) +(1,20837:6630773,45423805:25952256,424439,79822 +h1,20837:6630773,45423805:0,0,0 +g1,20837:6962727,45423805 +g1,20837:7294681,45423805 +g1,20837:7626635,45423805 +g1,20837:7958589,45423805 +g1,20837:8290543,45423805 +g1,20837:8622497,45423805 +g1,20837:8954451,45423805 +g1,20837:9286405,45423805 +g1,20837:9618359,45423805 +g1,20837:9950313,45423805 +g1,20837:10282267,45423805 +g1,20837:10614221,45423805 +g1,20837:10946175,45423805 +g1,20837:11278129,45423805 +g1,20837:11610083,45423805 +g1,20837:11942037,45423805 +g1,20837:12273991,45423805 +g1,20837:12605945,45423805 +g1,20837:12937899,45423805 +g1,20837:13269853,45423805 +g1,20837:13601807,45423805 +g1,20837:15261577,45423805 +g1,20837:15925485,45423805 +g1,20837:17917209,45423805 +h1,20837:21568702,45423805:0,0,0 +k1,20837:32583029,45423805:11014327 +g1,20837:32583029,45423805 +) +] +) +g1,20841:32583029,45503627 +g1,20841:6630773,45503627 +g1,20841:6630773,45503627 +g1,20841:32583029,45503627 +g1,20841:32583029,45503627 +) +] +(1,20841:32583029,45706769:0,0,0 +g1,20841:32583029,45706769 +) +) +] +(1,20841:6630773,47279633:25952256,0,0 +h1,20841:6630773,47279633:25952256,0,0 +) +] +(1,20841:4262630,4025873:0,0,0 +[1,20841:-473656,4025873:0,0,0 +(1,20841:-473656,-710413:0,0,0 +(1,20841:-473656,-710413:0,0,0 +g1,20841:-473656,-710413 +) +g1,20841:-473656,-710413 +) +] +) +] +!28328 +}355 Input:3414:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3415:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3416:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3417:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3418:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3419:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3420:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !670 -{377 -[1,20874:4262630,47279633:28320399,43253760,0 -(1,20874:4262630,4025873:0,0,0 -[1,20874:-473656,4025873:0,0,0 -(1,20874:-473656,-710413:0,0,0 -(1,20874:-473656,-644877:0,0,0 -k1,20874:-473656,-644877:-65536 +{356 +[1,20887:4262630,47279633:28320399,43253760,0 +(1,20887:4262630,4025873:0,0,0 +[1,20887:-473656,4025873:0,0,0 +(1,20887:-473656,-710413:0,0,0 +(1,20887:-473656,-644877:0,0,0 +k1,20887:-473656,-644877:-65536 ) -(1,20874:-473656,4736287:0,0,0 -k1,20874:-473656,4736287:5209943 +(1,20887:-473656,4736287:0,0,0 +k1,20887:-473656,4736287:5209943 ) -g1,20874:-473656,-710413 +g1,20887:-473656,-710413 ) ] ) -[1,20874:6630773,47279633:25952256,43253760,0 -[1,20874:6630773,4812305:25952256,786432,0 -(1,20874:6630773,4812305:25952256,513147,126483 -(1,20874:6630773,4812305:25952256,513147,126483 -g1,20874:3078558,4812305 -[1,20874:3078558,4812305:0,0,0 -(1,20874:3078558,2439708:0,1703936,0 -k1,20874:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,20874:2537886,2439708:1179648,16384,0 +[1,20887:6630773,47279633:25952256,43253760,0 +[1,20887:6630773,4812305:25952256,786432,0 +(1,20887:6630773,4812305:25952256,505283,126483 +(1,20887:6630773,4812305:25952256,505283,126483 +g1,20887:3078558,4812305 +[1,20887:3078558,4812305:0,0,0 +(1,20887:3078558,2439708:0,1703936,0 +k1,20887:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,20887:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,20874:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,20887:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,20874:3078558,4812305:0,0,0 -(1,20874:3078558,2439708:0,1703936,0 -g1,20874:29030814,2439708 -g1,20874:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,20874:36151628,1915420:16384,1179648,0 +[1,20887:3078558,4812305:0,0,0 +(1,20887:3078558,2439708:0,1703936,0 +g1,20887:29030814,2439708 +g1,20887:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,20887:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,20874:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,20887:37855564,2439708:1179648,16384,0 ) ) -k1,20874:3078556,2439708:-34777008 +k1,20887:3078556,2439708:-34777008 +) +] +[1,20887:3078558,4812305:0,0,0 +(1,20887:3078558,49800853:0,16384,2228224 +k1,20887:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,20887:2537886,49800853:1179648,16384,0 +) +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,20887:3078558,51504789:16384,1179648,0 +) +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] -[1,20874:3078558,4812305:0,0,0 -(1,20874:3078558,49800853:0,16384,2228224 -k1,20874:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,20874:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,20874:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 ) ] +[1,20887:3078558,4812305:0,0,0 +(1,20887:3078558,49800853:0,16384,2228224 +g1,20887:29030814,49800853 +g1,20887:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,20887:36151628,51504789:16384,1179648,0 +) +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 +) +] +) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,20887:37855564,49800853:1179648,16384,0 ) ) +k1,20887:3078556,49800853:-34777008 ) ] -[1,20874:3078558,4812305:0,0,0 -(1,20874:3078558,49800853:0,16384,2228224 -g1,20874:29030814,49800853 -g1,20874:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,20874:36151628,51504789:16384,1179648,0 +g1,20887:6630773,4812305 +g1,20887:6630773,4812305 +g1,20887:10600288,4812305 +g1,20887:12009967,4812305 +g1,20887:14653689,4812305 +g1,20887:16328789,4812305 +k1,20887:31387652,4812305:15058863 +) +) +] +[1,20887:6630773,45706769:25952256,40108032,0 +(1,20887:6630773,45706769:25952256,40108032,0 +(1,20887:6630773,45706769:0,0,0 +g1,20887:6630773,45706769 +) +[1,20887:6630773,45706769:25952256,40108032,0 +v1,20841:6630773,6254097:0,393216,0 +(1,20841:6630773,7279635:25952256,1418754,196608 +g1,20841:6630773,7279635 +g1,20841:6630773,7279635 +g1,20841:6434165,7279635 +(1,20841:6434165,7279635:0,1418754,196608 +r1,20887:32779637,7279635:26345472,1615362,196608 +k1,20841:6434165,7279635:-26345472 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] -) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,20874:37855564,49800853:1179648,16384,0 -) -) -k1,20874:3078556,49800853:-34777008 -) -] -g1,20874:6630773,4812305 -k1,20874:21350816,4812305:13524666 -g1,20874:21999622,4812305 -g1,20874:25611966,4812305 -g1,20874:28956923,4812305 -g1,20874:29772190,4812305 -) -) -] -[1,20874:6630773,45706769:25952256,40108032,0 -(1,20874:6630773,45706769:25952256,40108032,0 -(1,20874:6630773,45706769:0,0,0 -g1,20874:6630773,45706769 -) -[1,20874:6630773,45706769:25952256,40108032,0 -v1,20825:6630773,6254097:0,393216,0 -(1,20825:6630773,8464637:25952256,2603756,0 -g1,20825:6630773,8464637 -g1,20825:6303093,8464637 -r1,20874:6401397,8464637:98304,2603756,0 -g1,20825:6600626,8464637 -g1,20825:6797234,8464637 -[1,20825:6797234,8464637:25785795,2603756,0 -(1,20825:6797234,6686635:25785795,825754,196608 -(1,20824:6797234,6686635:0,825754,196608 -r1,20874:7890375,6686635:1093141,1022362,196608 -k1,20824:6797234,6686635:-1093141 -) -(1,20824:6797234,6686635:1093141,825754,196608 -) -k1,20824:8135076,6686635:244701 -k1,20824:9861294,6686635:327680 -k1,20824:11403608,6686635:244701 -k1,20824:13042260,6686635:244701 -k1,20824:14306047,6686635:244702 -k1,20824:16046935,6686635:244701 -k1,20824:16907674,6686635:244701 -k1,20824:18171460,6686635:244701 -k1,20824:19564352,6686635:244701 -k1,20824:21779721,6686635:244701 -k1,20824:24053418,6686635:244702 -k1,20824:27550671,6686635:244701 -k1,20824:28814457,6686635:244701 -k1,20824:31069803,6686635:244701 -k1,20824:32583029,6686635:0 -) -(1,20825:6797234,7528123:25785795,513147,134348 -k1,20824:7894905,7528123:150020 -(1,20824:7894905,7528123:0,452978,122846 -r1,20874:9660018,7528123:1765113,575824,122846 -k1,20824:7894905,7528123:-1765113 -) -(1,20824:7894905,7528123:1765113,452978,122846 -k1,20824:7894905,7528123:3277 -h1,20824:9656741,7528123:0,411205,112570 -) -k1,20824:9983708,7528123:150020 -(1,20824:9983708,7528123:0,452978,122846 -r1,20874:11748821,7528123:1765113,575824,122846 -k1,20824:9983708,7528123:-1765113 -) -(1,20824:9983708,7528123:1765113,452978,122846 -k1,20824:9983708,7528123:3277 -h1,20824:11745544,7528123:0,411205,112570 -) -k1,20824:11898842,7528123:150021 -k1,20824:13240307,7528123:150020 -(1,20824:13240307,7528123:0,452978,122846 -r1,20874:15005420,7528123:1765113,575824,122846 -k1,20824:13240307,7528123:-1765113 -) -(1,20824:13240307,7528123:1765113,452978,122846 -k1,20824:13240307,7528123:3277 -h1,20824:15002143,7528123:0,411205,112570 -) -k1,20824:15329110,7528123:150020 -k1,20824:17845635,7528123:150020 -k1,20824:18987216,7528123:150021 -k1,20824:22334738,7528123:150020 -k1,20824:23100796,7528123:150020 -k1,20824:25880121,7528123:150021 -k1,20824:27221586,7528123:150020 -k1,20824:31189078,7528123:150020 -k1,20824:32583029,7528123:0 -) -(1,20825:6797234,8369611:25785795,505283,95026 -g1,20824:9007108,8369611 -g1,20824:11841540,8369611 -g1,20824:12439228,8369611 -g1,20824:13829902,8369611 -k1,20825:32583029,8369611:17973904 -g1,20825:32583029,8369611 -) -] -g1,20825:32583029,8464637 -) -h1,20825:6630773,8464637:0,0,0 -(1,20828:6630773,9830413:25952256,513147,134348 -h1,20827:6630773,9830413:983040,0,0 -k1,20827:8316209,9830413:214808 -k1,20827:9744104,9830413:214824 -k1,20827:12260552,9830413:214824 -k1,20827:15459886,9830413:214824 -k1,20827:16206206,9830413:214823 -k1,20827:17072458,9830413:214824 -k1,20827:18379767,9830413:214824 -k1,20827:18950451,9830413:214824 -k1,20827:21517362,9830413:214824 -k1,20827:23063222,9830413:214824 -k1,20827:24720492,9830413:214823 -k1,20827:27030502,9830413:214824 -(1,20827:27030502,9830413:0,452978,115847 -r1,20874:29499039,9830413:2468537,568825,115847 -k1,20827:27030502,9830413:-2468537 -) -(1,20827:27030502,9830413:2468537,452978,115847 -k1,20827:27030502,9830413:3277 -h1,20827:29495762,9830413:0,411205,112570 -) -k1,20827:29887533,9830413:214824 -k1,20828:32583029,9830413:0 -) -(1,20828:6630773,10671901:25952256,505283,126483 -(1,20827:6630773,10671901:0,452978,115847 -r1,20874:8395886,10671901:1765113,568825,115847 -k1,20827:6630773,10671901:-1765113 -) -(1,20827:6630773,10671901:1765113,452978,115847 -k1,20827:6630773,10671901:3277 -h1,20827:8392609,10671901:0,411205,112570 -) -k1,20827:8673007,10671901:277121 -k1,20827:10054410,10671901:277121 -k1,20827:11079297,10671901:277121 -k1,20827:12869644,10671901:277121 -k1,20827:13798193,10671901:277121 -k1,20827:15009857,10671901:277121 -k1,20827:16555755,10671901:277121 -k1,20827:19192173,10671901:277122 -k1,20827:20120722,10671901:277121 -k1,20827:21416928,10671901:277121 -k1,20827:23127977,10671901:277121 -k1,20827:24847545,10671901:277121 -k1,20827:25752501,10671901:277121 -k1,20827:27232863,10671901:277121 -k1,20827:30345071,10671901:277121 -k1,20827:31490544,10671901:277121 -k1,20828:32583029,10671901:0 -) -(1,20828:6630773,11513389:25952256,513147,134348 -(1,20827:6630773,11513389:0,452978,115847 -r1,20874:10506157,11513389:3875384,568825,115847 -k1,20827:6630773,11513389:-3875384 -) -(1,20827:6630773,11513389:3875384,452978,115847 -k1,20827:6630773,11513389:3277 -h1,20827:10502880,11513389:0,411205,112570 -) -g1,20827:10705386,11513389 -g1,20827:11629443,11513389 -g1,20827:12514834,11513389 -g1,20827:13365491,11513389 -g1,20827:15805396,11513389 -g1,20827:17023710,11513389 -g1,20827:18491716,11513389 -g1,20827:19350237,11513389 -g1,20827:20733702,11513389 -g1,20827:22777114,11513389 -g1,20827:24351944,11513389 -g1,20827:25498824,11513389 -g1,20827:26717138,11513389 -$1,20827:26717138,11513389 -$1,20827:27219799,11513389 -g1,20827:27419028,11513389 -k1,20828:32583029,11513389:3737938 -g1,20828:32583029,11513389 -) -v1,20830:6630773,12703855:0,393216,0 -(1,20834:6630773,12987494:25952256,676855,196608 -g1,20834:6630773,12987494 -g1,20834:6630773,12987494 -g1,20834:6434165,12987494 -(1,20834:6434165,12987494:0,676855,196608 -r1,20874:32779637,12987494:26345472,873463,196608 -k1,20834:6434165,12987494:-26345472 -) -(1,20834:6434165,12987494:26345472,676855,196608 -[1,20834:6630773,12987494:25952256,480247,0 -(1,20832:6630773,12911473:25952256,404226,76021 -(1,20831:6630773,12911473:0,0,0 -g1,20831:6630773,12911473 -g1,20831:6630773,12911473 -g1,20831:6303093,12911473 -(1,20831:6303093,12911473:0,0,0 -) -g1,20831:6630773,12911473 -) -g1,20832:6946919,12911473 -g1,20832:7263065,12911473 -g1,20832:12953687,12911473 -g1,20832:13585979,12911473 -g1,20832:19276602,12911473 -g1,20832:19908894,12911473 -k1,20832:19908894,12911473:0 -h1,20832:23070351,12911473:0,0,0 -k1,20832:32583029,12911473:9512678 -g1,20832:32583029,12911473 -) -] -) -g1,20834:32583029,12987494 -g1,20834:6630773,12987494 -g1,20834:6630773,12987494 -g1,20834:32583029,12987494 -g1,20834:32583029,12987494 -) -h1,20834:6630773,13184102:0,0,0 -(1,20838:6630773,14549878:25952256,513147,134348 -h1,20837:6630773,14549878:983040,0,0 -k1,20837:9999264,14549878:221452 -k1,20837:13633176,14549878:221452 -k1,20837:15839714,14549878:221452 -k1,20837:16417026,14549878:221452 -k1,20837:19817629,14549878:221452 -k1,20837:22710984,14549878:221452 -k1,20837:23677580,14549878:221452 -k1,20837:24550460,14549878:221452 -k1,20837:27034215,14549878:221452 -k1,20837:28274752,14549878:221452 -k1,20837:31923737,14549878:221452 -k1,20837:32583029,14549878:0 -) -(1,20838:6630773,15391366:25952256,513147,134348 -k1,20837:9056260,15391366:202506 -k1,20837:9918058,15391366:202506 -k1,20837:12322574,15391366:202506 -k1,20837:15567917,15391366:202506 -k1,20837:16456585,15391366:202506 -k1,20837:17937698,15391366:202506 -k1,20837:18826367,15391366:202507 -k1,20837:19688165,15391366:202506 -k1,20837:23083585,15391366:202506 -k1,20837:26328928,15391366:202506 -k1,20837:27159269,15391366:202506 -k1,20837:28380860,15391366:202506 -k1,20837:30554034,15391366:202506 -k1,20837:32583029,15391366:0 -) -(1,20838:6630773,16232854:25952256,513147,134348 -k1,20837:7981067,16232854:158849 -k1,20837:9008267,16232854:158848 -k1,20837:10680342,16232854:158849 -(1,20837:10680342,16232854:0,452978,115847 -r1,20874:13852302,16232854:3171960,568825,115847 -k1,20837:10680342,16232854:-3171960 -) -(1,20837:10680342,16232854:3171960,452978,115847 -k1,20837:10680342,16232854:3277 -h1,20837:13849025,16232854:0,411205,112570 -) -k1,20837:14011151,16232854:158849 -k1,20837:16497183,16232854:158849 -k1,20837:17323187,16232854:158848 -(1,20837:17323187,16232854:0,452978,115847 -r1,20874:21198571,16232854:3875384,568825,115847 -k1,20837:17323187,16232854:-3875384 -) -(1,20837:17323187,16232854:3875384,452978,115847 -k1,20837:17323187,16232854:3277 -h1,20837:21195294,16232854:0,411205,112570 -) -k1,20837:21531090,16232854:158849 -k1,20837:22709024,16232854:158849 -k1,20837:25108549,16232854:158849 -k1,20837:27223647,16232854:158848 -k1,20837:28857711,16232854:158849 -k1,20837:31563944,16232854:158849 -k1,20837:32583029,16232854:0 -) -(1,20838:6630773,17074342:25952256,505283,138281 -g1,20837:8014238,17074342 -g1,20837:10057650,17074342 -g1,20837:10872917,17074342 -g1,20837:12538842,17074342 -$1,20837:12538842,17074342 -$1,20837:13041503,17074342 -g1,20837:13240732,17074342 -g1,20837:14631406,17074342 -$1,20837:14631406,17074342 -$1,20837:15183219,17074342 -g1,20837:15382448,17074342 -k1,20838:32583029,17074342:15628372 -g1,20838:32583029,17074342 -) -v1,20840:6630773,18440118:0,393216,0 -(1,20841:6630773,23214444:25952256,5167542,0 -g1,20841:6630773,23214444 -g1,20841:6303093,23214444 -r1,20874:6401397,23214444:98304,5167542,0 -g1,20841:6600626,23214444 -g1,20841:6797234,23214444 -[1,20841:6797234,23214444:25785795,5167542,0 -(1,20841:6797234,18872656:25785795,825754,196608 -(1,20840:6797234,18872656:0,825754,196608 -r1,20874:7890375,18872656:1093141,1022362,196608 -k1,20840:6797234,18872656:-1093141 -) -(1,20840:6797234,18872656:1093141,825754,196608 -) -k1,20840:8093115,18872656:202740 -k1,20840:9819333,18872656:327680 -k1,20840:12228015,18872656:202740 -k1,20840:13449840,18872656:202740 -k1,20840:16313998,18872656:202741 -k1,20840:18545733,18872656:202740 -k1,20840:19473301,18872656:202740 -k1,20840:20960547,18872656:202740 -k1,20840:22182372,18872656:202740 -k1,20840:23569348,18872656:202740 -k1,20840:25616271,18872656:202740 -k1,20840:26628382,18872656:202741 -k1,20840:27850207,18872656:202740 -$1,20840:27850207,18872656 -$1,20840:28352868,18872656 -k1,20840:30020993,18872656:202740 -k1,20840:31215293,18872656:202740 -k1,20840:32583029,18872656:0 -) -(1,20841:6797234,19714144:25785795,513147,138281 -k1,20840:8282526,19714144:293847 -k1,20840:10320286,19714144:293847 -k1,20840:11423503,19714144:293847 -k1,20840:12736435,19714144:293847 -$1,20840:12736435,19714144 -$1,20840:13288248,19714144 -k1,20840:15047479,19714144:293846 -k1,20840:16571437,19714144:293847 -k1,20840:18056729,19714144:293847 -k1,20840:19369661,19714144:293847 -k1,20840:20994544,19714144:293847 -k1,20840:22557168,19714144:293847 -k1,20840:23382512,19714144:293847 -k1,20840:24695444,19714144:293847 -k1,20840:26642763,19714144:293846 -k1,20840:27884261,19714144:293847 -k1,20840:29644804,19714144:293847 -k1,20840:31510860,19714144:293847 -k1,20840:32583029,19714144:0 -) -(1,20841:6797234,20555632:25785795,513147,134348 -k1,20840:9655494,20555632:196843 -k1,20840:11419959,20555632:196844 -k1,20840:12635887,20555632:196843 -k1,20840:15271980,20555632:196843 -k1,20840:17940842,20555632:196844 -k1,20840:19156770,20555632:196843 -k1,20840:24179684,20555632:196843 -k1,20840:25324179,20555632:196844 -(1,20840:25324179,20555632:0,452978,115847 -r1,20874:27792716,20555632:2468537,568825,115847 -k1,20840:25324179,20555632:-2468537 -) -(1,20840:25324179,20555632:2468537,452978,115847 -k1,20840:25324179,20555632:3277 -h1,20840:27789439,20555632:0,411205,112570 -) -k1,20840:27989559,20555632:196843 -k1,20840:28837830,20555632:196843 -k1,20840:30300830,20555632:196844 -k1,20840:31563944,20555632:196843 -k1,20840:32583029,20555632:0 -) -(1,20841:6797234,21397120:25785795,513147,134348 -k1,20840:9009308,21397120:143758 -k1,20840:9812358,21397120:143758 -k1,20840:10975201,21397120:143758 -k1,20840:13988124,21397120:143757 -k1,20840:15416388,21397120:143758 -k1,20840:17090412,21397120:143758 -k1,20840:17885598,21397120:143758 -k1,20840:18777122,21397120:143758 -k1,20840:20615641,21397120:143758 -k1,20840:22042594,21397120:143758 -k1,20840:24370666,21397120:143757 -k1,20840:25556446,21397120:143758 -k1,20840:28865593,21397120:143758 -k1,20840:30034334,21397120:143758 -k1,20840:32583029,21397120:0 -) -(1,20841:6797234,22238608:25785795,513147,134348 -k1,20840:9392817,22238608:254637 -k1,20840:12458293,22238608:254637 -k1,20840:13636988,22238608:254637 -k1,20840:15425823,22238608:254637 -k1,20840:18326149,22238608:254637 -k1,20840:21712096,22238608:254637 -k1,20840:23158178,22238608:254637 -k1,20840:25566328,22238608:254637 -k1,20840:27621894,22238608:254637 -k1,20840:29067976,22238608:254637 -k1,20840:29772190,22238608:254637 -k1,20840:32583029,22238608:0 -) -(1,20841:6797234,23080096:25785795,505283,134348 -g1,20840:10079276,23080096 -g1,20840:12500831,23080096 -k1,20841:32583029,23080096:18107598 -g1,20841:32583029,23080096 -) -] -g1,20841:32583029,23214444 -) -h1,20841:6630773,23214444:0,0,0 -(1,20844:6630773,24580220:25952256,513147,134348 -h1,20843:6630773,24580220:983040,0,0 -k1,20843:11359196,24580220:223478 -k1,20843:12241965,24580220:223477 -k1,20843:14167413,24580220:223478 -k1,20843:15617070,24580220:223478 -k1,20843:18709713,24580220:223477 -k1,20843:20037473,24580220:223478 -k1,20843:21008717,24580220:223478 -k1,20843:24005678,24580220:223477 -k1,20843:24845194,24580220:223478 -k1,20843:25424531,24580220:223477 -k1,20843:27850019,24580220:223478 -k1,20843:29485143,24580220:223478 -k1,20843:30394782,24580220:223477 -k1,20843:31896867,24580220:223478 -k1,20843:32583029,24580220:0 -) -(1,20844:6630773,25421708:25952256,513147,134348 -k1,20843:9800234,25421708:147596 -k1,20843:10607123,25421708:147597 -k1,20843:12326928,25421708:147596 -k1,20843:14487790,25421708:147596 -k1,20843:15294679,25421708:147597 -k1,20843:16626511,25421708:147596 -k1,20843:18934829,25421708:147596 -k1,20843:20366932,25421708:147597 -k1,20843:22187007,25421708:147596 -k1,20843:23446095,25421708:147597 -k1,20843:26528393,25421708:147596 -k1,20843:27292027,25421708:147596 -k1,20843:29041324,25421708:147597 -k1,20843:30886302,25421708:147596 -k1,20843:32583029,25421708:0 -) -(1,20844:6630773,26263196:25952256,513147,134348 -k1,20843:7801355,26263196:179022 -k1,20843:10369165,26263196:179023 -k1,20843:12636819,26263196:179022 -k1,20843:15685008,26263196:179023 -k1,20843:17148536,26263196:179022 -k1,20843:18319119,26263196:179023 -k1,20843:19833109,26263196:179022 -k1,20843:21429676,26263196:179023 -k1,20843:24889430,26263196:179022 -k1,20843:28693249,26263196:179023 -k1,20843:30137116,26263196:179022 -k1,20843:30975431,26263196:179023 -k1,20843:32583029,26263196:0 -) -(1,20844:6630773,27104684:25952256,505283,134348 -g1,20843:8021447,27104684 -g1,20843:9555644,27104684 -g1,20843:12334370,27104684 -g1,20843:13295127,27104684 -g1,20843:16066644,27104684 -g1,20843:16621733,27104684 -g1,20843:18104157,27104684 -g1,20843:20247184,27104684 -g1,20843:21730919,27104684 -g1,20843:23034430,27104684 -g1,20843:23981425,27104684 -g1,20843:25981583,27104684 -k1,20844:32583029,27104684:4278850 -g1,20844:32583029,27104684 -) -v1,20846:6630773,28470460:0,393216,0 -(1,20847:6630773,31549856:25952256,3472612,0 -g1,20847:6630773,31549856 -g1,20847:6303093,31549856 -r1,20874:6401397,31549856:98304,3472612,0 -g1,20847:6600626,31549856 -g1,20847:6797234,31549856 -[1,20847:6797234,31549856:25785795,3472612,0 -(1,20847:6797234,28891044:25785795,813800,267386 -(1,20846:6797234,28891044:0,813800,267386 -r1,20874:8134168,28891044:1336934,1081186,267386 -k1,20846:6797234,28891044:-1336934 -) -(1,20846:6797234,28891044:1336934,813800,267386 -) -k1,20846:8325402,28891044:191234 -k1,20846:8653082,28891044:327680 -k1,20846:9322073,28891044:191234 -k1,20846:10683780,28891044:191234 -k1,20846:12341710,28891044:191234 -k1,20846:13730287,28891044:191234 -k1,20846:14277381,28891044:191234 -k1,20846:17272901,28891044:191234 -k1,20846:19407932,28891044:191233 -k1,20846:20790611,28891044:191234 -k1,20846:22530461,28891044:191234 -k1,20846:23373123,28891044:191234 -k1,20846:25826660,28891044:191234 -k1,20846:27710034,28891044:191234 -k1,20846:28560560,28891044:191234 -k1,20846:29540192,28891044:191234 -k1,20846:32583029,28891044:0 -) -(1,20847:6797234,29732532:25785795,513147,134348 -k1,20846:8141321,29732532:173614 -k1,20846:10495317,29732532:173613 -k1,20846:11866274,29732532:173614 -k1,20846:13058973,29732532:173614 -k1,20846:15115436,29732532:173614 -k1,20846:17275445,29732532:173613 -k1,20846:19491816,29732532:173614 -k1,20846:22917982,29732532:173614 -k1,20846:23549693,29732532:173614 -k1,20846:25117257,29732532:173613 -(1,20846:25117257,29732532:0,452978,115847 -r1,20874:29344353,29732532:4227096,568825,115847 -k1,20846:25117257,29732532:-4227096 -) -(1,20846:25117257,29732532:4227096,452978,115847 -g1,20846:25823958,29732532 -h1,20846:29341076,29732532:0,411205,112570 -) -k1,20846:29691637,29732532:173614 -k1,20846:31246095,29732532:173614 -k1,20846:32583029,29732532:0 -) -(1,20847:6797234,30574020:25785795,513147,134348 -k1,20846:8651073,30574020:208885 -k1,20846:11352948,30574020:208885 -k1,20846:13052122,30574020:208885 -k1,20846:14417717,30574020:208885 -k1,20846:15727607,30574020:208885 -k1,20846:16292352,30574020:208885 -k1,20846:18085242,30574020:208885 -k1,20846:20063599,30574020:208885 -k1,20846:20931776,30574020:208885 -k1,20846:22159746,30574020:208885 -k1,20846:25271221,30574020:208885 -k1,20846:26139398,30574020:208885 -k1,20846:29241042,30574020:208885 -k1,20846:30522096,30574020:208885 -k1,20846:31835263,30574020:208885 -k1,20846:32583029,30574020:0 -) -(1,20847:6797234,31415508:25785795,513147,134348 -g1,20846:7609225,31415508 -g1,20846:9114587,31415508 -k1,20847:32583029,31415508:18983158 -g1,20847:32583029,31415508 -) -] -g1,20847:32583029,31549856 -) -h1,20847:6630773,31549856:0,0,0 -(1,20850:6630773,32915632:25952256,513147,134348 -h1,20849:6630773,32915632:983040,0,0 -k1,20849:8228440,32915632:144734 -k1,20849:8904670,32915632:144733 -k1,20849:10335220,32915632:144734 -k1,20849:13109914,32915632:144734 -k1,20849:13906075,32915632:144733 -k1,20849:16313112,32915632:144734 -k1,20849:17476931,32915632:144734 -k1,20849:19887245,32915632:144734 -k1,20849:22018374,32915632:144733 -k1,20849:23676334,32915632:144734 -k1,20849:24768719,32915632:144734 -k1,20849:28010683,32915632:144733 -k1,20849:28921533,32915632:144734 -k1,20849:32583029,32915632:0 -) -(1,20850:6630773,33757120:25952256,505283,126483 -k1,20850:32583030,33757120:24170988 -g1,20850:32583030,33757120 -) -v1,20852:6630773,34947586:0,393216,0 -(1,20856:6630773,35256391:25952256,702021,196608 -g1,20856:6630773,35256391 -g1,20856:6630773,35256391 -g1,20856:6434165,35256391 -(1,20856:6434165,35256391:0,702021,196608 -r1,20874:32779637,35256391:26345472,898629,196608 -k1,20856:6434165,35256391:-26345472 -) -(1,20856:6434165,35256391:26345472,702021,196608 -[1,20856:6630773,35256391:25952256,505413,0 -(1,20854:6630773,35155204:25952256,404226,101187 -(1,20853:6630773,35155204:0,0,0 -g1,20853:6630773,35155204 -g1,20853:6630773,35155204 -g1,20853:6303093,35155204 -(1,20853:6303093,35155204:0,0,0 -) -g1,20853:6630773,35155204 -) -g1,20854:9792230,35155204 -g1,20854:10740668,35155204 -g1,20854:16431291,35155204 -g1,20854:17063583,35155204 -g1,20854:23070351,35155204 -g1,20854:23702643,35155204 -h1,20854:27180245,35155204:0,0,0 -k1,20854:32583029,35155204:5402784 -g1,20854:32583029,35155204 -) -] -) -g1,20856:32583029,35256391 -g1,20856:6630773,35256391 -g1,20856:6630773,35256391 -g1,20856:32583029,35256391 -g1,20856:32583029,35256391 -) -h1,20856:6630773,35452999:0,0,0 -(1,20862:6630773,38068547:25952256,564462,147783 -(1,20862:6630773,38068547:2899444,534184,12975 -g1,20862:6630773,38068547 -g1,20862:9530217,38068547 -) -g1,20862:12826154,38068547 -g1,20862:13451892,38068547 -g1,20862:15187810,38068547 -k1,20862:32583029,38068547:15135931 -g1,20862:32583029,38068547 -) -(1,20865:6630773,39303251:25952256,513147,134348 -k1,20864:9309502,39303251:184429 -k1,20864:10598213,39303251:184429 -k1,20864:11530409,39303251:184430 -k1,20864:14096416,39303251:184429 -k1,20864:15747541,39303251:184429 -k1,20864:17499591,39303251:184429 -k1,20864:20171112,39303251:184430 -k1,20864:21038426,39303251:184429 -k1,20864:21984383,39303251:184429 -k1,20864:25421364,39303251:184429 -k1,20864:28096817,39303251:184430 -k1,20864:30092661,39303251:184429 -k1,20864:32583029,39303251:0 -) -(1,20865:6630773,40144739:25952256,513147,134348 -k1,20864:8043125,40144739:220907 -k1,20864:10297613,40144739:220906 -k1,20864:11537605,40144739:220907 -k1,20864:14593599,40144739:220907 -k1,20864:17321912,40144739:220906 -k1,20864:18360708,40144739:220907 -k1,20864:21710959,40144739:220907 -k1,20864:23960861,40144739:220907 -k1,20864:24639864,40144739:220906 -k1,20864:25392268,40144739:220907 -k1,20864:26898991,40144739:220907 -k1,20864:29749857,40144739:220906 -k1,20864:30622192,40144739:220907 -k1,20864:32583029,40144739:0 -) -(1,20865:6630773,40986227:25952256,513147,126483 -g1,20864:7185862,40986227 -g1,20864:8841956,40986227 -g1,20864:13681134,40986227 -g1,20864:15866759,40986227 -g1,20864:19772704,40986227 -k1,20865:32583029,40986227:9941159 -g1,20865:32583029,40986227 -) -(1,20867:6630773,41827715:25952256,513147,126483 -h1,20866:6630773,41827715:983040,0,0 -k1,20866:9865018,41827715:152087 -k1,20866:10885457,41827715:152087 -k1,20866:12434116,41827715:152087 -k1,20866:13237631,41827715:152087 -k1,20866:15446238,41827715:152087 -k1,20866:17326509,41827715:152087 -k1,20866:18497681,41827715:152087 -k1,20866:19932964,41827715:152088 -k1,20866:22245118,41827715:152087 -k1,20866:24051989,41827715:152087 -k1,20866:24735573,41827715:152087 -k1,20866:27174867,41827715:152087 -k1,20866:28136324,41827715:152087 -k1,20866:29818677,41827715:152087 -k1,20866:30622192,41827715:152087 -k1,20866:32583029,41827715:0 -) -(1,20867:6630773,42669203:25952256,513147,126483 -k1,20866:7174107,42669203:187474 -k1,20866:8644776,42669203:187474 -k1,20866:11701415,42669203:187473 -k1,20866:12842438,42669203:187474 -k1,20866:14134194,42669203:187474 -k1,20866:16460108,42669203:187474 -k1,20866:18038256,42669203:187474 -k1,20866:19244814,42669203:187473 -k1,20866:22267375,42669203:187474 -k1,20866:24441245,42669203:187474 -k1,20866:25280147,42669203:187474 -k1,20866:25823481,42669203:187474 -k1,20866:28522295,42669203:187474 -k1,20866:29901213,42669203:187473 -k1,20866:31286030,42669203:187474 -k1,20866:31931601,42669203:187474 -k1,20866:32583029,42669203:0 -) -(1,20867:6630773,43510691:25952256,513147,134348 -k1,20866:9561392,43510691:168276 -k1,20866:11337267,43510691:168277 -k1,20866:12191705,43510691:168276 -k1,20866:14831999,43510691:168276 -k1,20866:15818165,43510691:168277 -k1,20866:16854793,43510691:168276 -k1,20866:18155531,43510691:168276 -k1,20866:19071573,43510691:168276 -k1,20866:21427442,43510691:168277 -k1,20866:21951578,43510691:168276 -k1,20866:26348892,43510691:168276 -k1,20866:28503565,43510691:168277 -k1,20866:30631367,43510691:168276 -k1,20866:32583029,43510691:0 -) -(1,20867:6630773,44352179:25952256,513147,126483 -g1,20866:8272449,44352179 -g1,20866:8827538,44352179 -g1,20866:11895933,44352179 -g1,20866:12963514,44352179 -g1,20866:13978011,44352179 -g1,20866:15243511,44352179 -g1,20866:16535225,44352179 -k1,20867:32583029,44352179:12019961 -g1,20867:32583029,44352179 -) -v1,20869:6630773,45542645:0,393216,0 -] -(1,20874:32583029,45706769:0,0,0 -g1,20874:32583029,45706769 -) -) -] -(1,20874:6630773,47279633:25952256,0,0 -h1,20874:6630773,47279633:25952256,0,0 -) -] -(1,20874:4262630,4025873:0,0,0 -[1,20874:-473656,4025873:0,0,0 -(1,20874:-473656,-710413:0,0,0 -(1,20874:-473656,-710413:0,0,0 -g1,20874:-473656,-710413 -) -g1,20874:-473656,-710413 -) -] -) -] -!25771 -}377 -Input:3419:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3420:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +(1,20841:6434165,7279635:26345472,1418754,196608 +[1,20841:6630773,7279635:25952256,1222146,0 +(1,20838:6630773,6488534:25952256,431045,112852 +h1,20838:6630773,6488534:0,0,0 +g1,20838:7294681,6488534 +g1,20838:7958589,6488534 +g1,20838:12937898,6488534 +g1,20838:13601806,6488534 +g1,20838:16589392,6488534 +g1,20838:18249162,6488534 +g1,20838:18913070,6488534 +g1,20838:22232609,6488534 +g1,20838:23892379,6488534 +g1,20838:24556287,6488534 +k1,20838:24556287,6488534:0 +h1,20838:26548011,6488534:0,0,0 +k1,20838:32583029,6488534:6035018 +g1,20838:32583029,6488534 +) +(1,20839:6630773,7173389:25952256,424439,106246 +h1,20839:6630773,7173389:0,0,0 +g1,20839:6962727,7173389 +g1,20839:7294681,7173389 +g1,20839:7626635,7173389 +g1,20839:7958589,7173389 +g1,20839:8290543,7173389 +g1,20839:8622497,7173389 +g1,20839:8954451,7173389 +g1,20839:9286405,7173389 +g1,20839:9618359,7173389 +g1,20839:9950313,7173389 +g1,20839:10282267,7173389 +g1,20839:10614221,7173389 +g1,20839:10946175,7173389 +g1,20839:13933760,7173389 +g1,20839:14597668,7173389 +g1,20839:15925484,7173389 +g1,20839:17917208,7173389 +g1,20839:18581116,7173389 +g1,20839:20572840,7173389 +g1,20839:21236748,7173389 +g1,20839:23560426,7173389 +g1,20839:24224334,7173389 +h1,20839:28207781,7173389:0,0,0 +k1,20839:32583029,7173389:4375248 +g1,20839:32583029,7173389 +) +] +) +g1,20841:32583029,7279635 +g1,20841:6630773,7279635 +g1,20841:6630773,7279635 +g1,20841:32583029,7279635 +g1,20841:32583029,7279635 +) +h1,20841:6630773,7476243:0,0,0 +(1,20844:6630773,16625445:25952256,9083666,0 +k1,20844:10523651,16625445:3892878 +h1,20843:10523651,16625445:0,0,0 +(1,20843:10523651,16625445:18166500,9083666,0 +(1,20843:10523651,16625445:18167376,9083688,0 +(1,20843:10523651,16625445:18167376,9083688,0 +(1,20843:10523651,16625445:0,9083688,0 +(1,20843:10523651,16625445:0,14208860,0 +(1,20843:10523651,16625445:28417720,14208860,0 +) +k1,20843:10523651,16625445:-28417720 +) +) +g1,20843:28691027,16625445 +) +) +) +g1,20844:28690151,16625445 +k1,20844:32583029,16625445:3892878 +) +(1,20851:6630773,17490525:25952256,505283,134348 +h1,20850:6630773,17490525:983040,0,0 +k1,20850:9231062,17490525:575227 +k1,20850:10576993,17490525:575228 +k1,20850:14457201,17490525:575227 +k1,20850:16483396,17490525:575228 +k1,20850:18794016,17490525:575227 +k1,20850:20139947,17490525:575228 +k1,20850:23688542,17490525:575227 +k1,20850:26769867,17490525:575228 +k1,20850:28213446,17490525:575227 +k1,20850:30263889,17490525:575228 +k1,20850:31490544,17490525:575227 +k1,20851:32583029,17490525:0 +) +(1,20851:6630773,18355605:25952256,513147,122846 +(1,20850:6630773,18355605:0,452978,115847 +r1,20887:11561293,18355605:4930520,568825,115847 +k1,20850:6630773,18355605:-4930520 +) +(1,20850:6630773,18355605:4930520,452978,115847 +k1,20850:6630773,18355605:3277 +h1,20850:11558016,18355605:0,411205,112570 +) +k1,20850:11772553,18355605:211260 +k1,20850:14310996,18355605:211260 +k1,20850:15189412,18355605:211260 +(1,20850:15189412,18355605:0,452978,115847 +r1,20887:18713084,18355605:3523672,568825,115847 +k1,20850:15189412,18355605:-3523672 +) +(1,20850:15189412,18355605:3523672,452978,115847 +k1,20850:15189412,18355605:3277 +h1,20850:18709807,18355605:0,411205,112570 +) +k1,20850:19098014,18355605:211260 +(1,20850:19098014,18355605:0,452978,122846 +r1,20887:24028534,18355605:4930520,575824,122846 +k1,20850:19098014,18355605:-4930520 +) +(1,20850:19098014,18355605:4930520,452978,122846 +k1,20850:19098014,18355605:3277 +h1,20850:24025257,18355605:0,411205,112570 +) +k1,20850:24239793,18355605:211259 +k1,20850:26778236,18355605:211260 +k1,20850:27656652,18355605:211260 +(1,20850:27656652,18355605:0,452978,122846 +r1,20887:31180324,18355605:3523672,575824,122846 +k1,20850:27656652,18355605:-3523672 +) +(1,20850:27656652,18355605:3523672,452978,122846 +k1,20850:27656652,18355605:3277 +h1,20850:31177047,18355605:0,411205,112570 +) +k1,20850:31391584,18355605:211260 +k1,20850:32583029,18355605:0 +) +(1,20851:6630773,19220685:25952256,513147,134348 +g1,20850:9070678,19220685 +g1,20850:10288992,19220685 +(1,20850:10288992,19220685:0,414482,115847 +r1,20887:11702393,19220685:1413401,530329,115847 +k1,20850:10288992,19220685:-1413401 +) +(1,20850:10288992,19220685:1413401,414482,115847 +k1,20850:10288992,19220685:3277 +h1,20850:11699116,19220685:0,411205,112570 +) +g1,20850:11901622,19220685 +g1,20850:12760143,19220685 +g1,20850:13978457,19220685 +(1,20850:13978457,19220685:0,414482,115847 +r1,20887:14336723,19220685:358266,530329,115847 +k1,20850:13978457,19220685:-358266 +) +(1,20850:13978457,19220685:358266,414482,115847 +k1,20850:13978457,19220685:3277 +h1,20850:14333446,19220685:0,411205,112570 +) +g1,20850:14535952,19220685 +k1,20851:32583029,19220685:16301198 +g1,20851:32583029,19220685 +) +v1,20853:6630773,19905540:0,393216,0 +(1,20860:6630773,25017319:25952256,5504995,196608 +g1,20860:6630773,25017319 +g1,20860:6630773,25017319 +g1,20860:6434165,25017319 +(1,20860:6434165,25017319:0,5504995,196608 +r1,20887:32779637,25017319:26345472,5701603,196608 +k1,20860:6434165,25017319:-26345472 +) +(1,20860:6434165,25017319:26345472,5504995,196608 +[1,20860:6630773,25017319:25952256,5308387,0 +(1,20855:6630773,20139977:25952256,431045,112852 +(1,20854:6630773,20139977:0,0,0 +g1,20854:6630773,20139977 +g1,20854:6630773,20139977 +g1,20854:6303093,20139977 +(1,20854:6303093,20139977:0,0,0 +) +g1,20854:6630773,20139977 +) +g1,20855:7294681,20139977 +g1,20855:7958589,20139977 +g1,20855:14265714,20139977 +g1,20855:14929622,20139977 +g1,20855:17917208,20139977 +g1,20855:19576978,20139977 +g1,20855:20240886,20139977 +k1,20855:20240886,20139977:0 +h1,20855:23228471,20139977:0,0,0 +k1,20855:32583029,20139977:9354558 +g1,20855:32583029,20139977 +) +(1,20856:6630773,20824832:25952256,424439,112852 +h1,20856:6630773,20824832:0,0,0 +g1,20856:6962727,20824832 +g1,20856:7294681,20824832 +g1,20856:7626635,20824832 +g1,20856:7958589,20824832 +g1,20856:8290543,20824832 +g1,20856:8622497,20824832 +g1,20856:8954451,20824832 +g1,20856:9286405,20824832 +g1,20856:9618359,20824832 +g1,20856:9950313,20824832 +g1,20856:10282267,20824832 +g1,20856:10614221,20824832 +g1,20856:10946175,20824832 +g1,20856:11278129,20824832 +g1,20856:11610083,20824832 +g1,20856:11942037,20824832 +g1,20856:12273991,20824832 +g1,20856:13933761,20824832 +g1,20856:14597669,20824832 +g1,20856:18249162,20824832 +g1,20856:19908932,20824832 +g1,20856:20572840,20824832 +g1,20856:21568702,20824832 +g1,20856:22232610,20824832 +g1,20856:24556288,20824832 +g1,20856:25220196,20824832 +h1,20856:28539735,20824832:0,0,0 +k1,20856:32583029,20824832:4043294 +g1,20856:32583029,20824832 +) +(1,20860:6630773,22165047:25952256,431045,112852 +g1,20860:7626635,22165047 +g1,20860:10614220,22165047 +g1,20860:12605944,22165047 +g1,20860:14929622,22165047 +g1,20860:18249161,22165047 +g1,20860:19576977,22165047 +g1,20860:21568701,22165047 +g1,20860:22896517,22165047 +g1,20860:26548010,22165047 +g1,20860:27543872,22165047 +g1,20860:30199504,22165047 +k1,20860:32583029,22165047:391801 +g1,20860:32583029,22165047 +) +(1,20860:6630773,22849902:25952256,431045,6605 +g1,20860:7626635,22849902 +g1,20860:8290543,22849902 +g1,20860:10614221,22849902 +g1,20860:11942037,22849902 +g1,20860:15925484,22849902 +k1,20860:32583029,22849902:14001914 +g1,20860:32583029,22849902 +) +(1,20860:6630773,23534757:25952256,424439,112852 +g1,20860:7626635,23534757 +g1,20860:9286405,23534757 +g1,20860:11942037,23534757 +g1,20860:12937899,23534757 +g1,20860:16257438,23534757 +g1,20860:17917208,23534757 +g1,20860:19908932,23534757 +g1,20860:20572840,23534757 +k1,20860:32583029,23534757:10018465 +g1,20860:32583029,23534757 +) +(1,20860:6630773,24219612:25952256,431045,112852 +g1,20860:7626635,24219612 +g1,20860:9286405,24219612 +g1,20860:22232607,24219612 +g1,20860:23228469,24219612 +g1,20860:24556285,24219612 +g1,20860:26548009,24219612 +g1,20860:28207779,24219612 +g1,20860:30863411,24219612 +k1,20860:32583029,24219612:723756 +g1,20860:32583029,24219612 +) +(1,20860:6630773,24904467:25952256,424439,112852 +g1,20860:7626635,24904467 +k1,20860:32583030,24904467:21636856 +g1,20860:32583030,24904467 +) +] +) +g1,20860:32583029,25017319 +g1,20860:6630773,25017319 +g1,20860:6630773,25017319 +g1,20860:32583029,25017319 +g1,20860:32583029,25017319 +) +h1,20860:6630773,25213927:0,0,0 +(1,20863:6630773,34363129:25952256,9083666,0 +k1,20863:10523651,34363129:3892878 +h1,20862:10523651,34363129:0,0,0 +(1,20862:10523651,34363129:18166500,9083666,0 +(1,20862:10523651,34363129:18167376,9083688,0 +(1,20862:10523651,34363129:18167376,9083688,0 +(1,20862:10523651,34363129:0,9083688,0 +(1,20862:10523651,34363129:0,14208860,0 +(1,20862:10523651,34363129:28417720,14208860,0 +) +k1,20862:10523651,34363129:-28417720 +) +) +g1,20862:28691027,34363129 +) +) +) +g1,20863:28690151,34363129 +k1,20863:32583029,34363129:3892878 +) +(1,20870:6630773,35228209:25952256,513147,126483 +h1,20869:6630773,35228209:983040,0,0 +k1,20869:8665466,35228209:233764 +k1,20869:9918316,35228209:233765 +k1,20869:11558483,35228209:233764 +k1,20869:14923558,35228209:233765 +k1,20869:16434619,35228209:233764 +k1,20869:19503471,35228209:233765 +k1,20869:20605587,35228209:233764 +k1,20869:21654620,35228209:233765 +k1,20869:22790124,35228209:233729 +k1,20869:25356315,35228209:233765 +k1,20869:26867376,35228209:233764 +k1,20869:28495092,35228209:233765 +k1,20869:30617604,35228209:233764 +k1,20869:32583029,35228209:0 +) +(1,20870:6630773,36093289:25952256,513147,126483 +k1,20869:8278397,36093289:253673 +(1,20869:8278397,36093289:0,459977,115847 +r1,20887:12505493,36093289:4227096,575824,115847 +k1,20869:8278397,36093289:-4227096 +) +(1,20869:8278397,36093289:4227096,459977,115847 +k1,20869:8278397,36093289:3277 +h1,20869:12502216,36093289:0,411205,112570 +) +k1,20869:12759166,36093289:253673 +k1,20869:13664267,36093289:253673 +k1,20869:15393155,36093289:253673 +k1,20869:18349534,36093289:253674 +k1,20869:20677421,36093289:253673 +k1,20869:21878745,36093289:253673 +k1,20869:23183561,36093289:253618 +k1,20869:24628679,36093289:253673 +k1,20869:25995154,36093289:253674 +k1,20869:27629671,36093289:253673 +k1,20869:29160641,36093289:253673 +k1,20869:30837101,36093289:253673 +k1,20869:31931601,36093289:253673 +k1,20869:32583029,36093289:0 +) +(1,20870:6630773,36958369:25952256,513147,126483 +k1,20869:9569552,36958369:269498 +k1,20869:10858136,36958369:269499 +k1,20869:13460060,36958369:269498 +k1,20869:14388851,36958369:269499 +k1,20869:18730101,36958369:269498 +k1,20869:19947251,36958369:269499 +k1,20869:22979092,36958369:269498 +k1,20869:27566758,36958369:269499 +k1,20869:29394047,36958369:269498 +k1,20869:32583029,36958369:0 +) +(1,20870:6630773,37823449:25952256,505283,138281 +k1,20869:8094646,37823449:272428 +k1,20869:10737511,37823449:272428 +k1,20869:12029024,37823449:272428 +k1,20869:14312752,37823449:272428 +$1,20869:14519846,37823449 +$1,20869:15071659,37823449 +k1,20869:15344087,37823449:272428 +k1,20869:18610855,37823449:272428 +k1,20869:19534710,37823449:272427 +k1,20869:22848664,37823449:272428 +k1,20869:24678883,37823449:272428 +k1,20869:27148078,37823449:272428 +k1,20869:28611951,37823449:272428 +k1,20869:29903464,37823449:272428 +k1,20869:31873274,37823449:272428 +$1,20869:32080368,37823449 +$1,20869:32583029,37823449 +k1,20870:32583029,37823449:0 +) +(1,20870:6630773,38688529:25952256,505283,126483 +g1,20869:9824342,38688529 +g1,20869:10674999,38688529 +g1,20869:13915754,38688529 +g1,20869:15672774,38688529 +k1,20870:32583029,38688529:13877904 +g1,20870:32583029,38688529 +) +v1,20874:6630773,39373384:0,393216,0 +(1,20887:6630773,45186301:25952256,6206133,196608 +g1,20887:6630773,45186301 +g1,20887:6630773,45186301 +g1,20887:6434165,45186301 +(1,20887:6434165,45186301:0,6206133,196608 +r1,20887:32779637,45186301:26345472,6402741,196608 +k1,20887:6434165,45186301:-26345472 +) +(1,20887:6434165,45186301:26345472,6206133,196608 +[1,20887:6630773,45186301:25952256,6009525,0 +(1,20876:6630773,39601215:25952256,424439,112852 +(1,20875:6630773,39601215:0,0,0 +g1,20875:6630773,39601215 +g1,20875:6630773,39601215 +g1,20875:6303093,39601215 +(1,20875:6303093,39601215:0,0,0 +) +g1,20875:6630773,39601215 +) +k1,20876:6630773,39601215:0 +g1,20876:14265714,39601215 +g1,20876:20904793,39601215 +g1,20876:26216056,39601215 +h1,20876:26548010,39601215:0,0,0 +k1,20876:32583029,39601215:6035019 +g1,20876:32583029,39601215 +) +(1,20877:6630773,40286070:25952256,424439,106246 +h1,20877:6630773,40286070:0,0,0 +g1,20877:6962727,40286070 +g1,20877:7294681,40286070 +g1,20877:11942036,40286070 +h1,20877:12273990,40286070:0,0,0 +k1,20877:32583030,40286070:20309040 +g1,20877:32583030,40286070 +) +(1,20878:6630773,40970925:25952256,431045,112852 +h1,20878:6630773,40970925:0,0,0 +g1,20878:6962727,40970925 +g1,20878:7294681,40970925 +g1,20878:15593530,40970925 +g1,20878:16257438,40970925 +g1,20878:22896516,40970925 +g1,20878:24556286,40970925 +g1,20878:25220194,40970925 +g1,20878:28871687,40970925 +h1,20878:29203641,40970925:0,0,0 +k1,20878:32583029,40970925:3379388 +g1,20878:32583029,40970925 +) +(1,20879:6630773,41655780:25952256,424439,86428 +h1,20879:6630773,41655780:0,0,0 +g1,20879:6962727,41655780 +g1,20879:7294681,41655780 +g1,20879:15925484,41655780 +g1,20879:16589392,41655780 +g1,20879:18249162,41655780 +g1,20879:19576978,41655780 +g1,20879:21236748,41655780 +k1,20879:21236748,41655780:0 +h1,20879:22896518,41655780:0,0,0 +k1,20879:32583029,41655780:9686511 +g1,20879:32583029,41655780 +) +(1,20880:6630773,42340635:25952256,424439,86428 +h1,20880:6630773,42340635:0,0,0 +g1,20880:6962727,42340635 +g1,20880:7294681,42340635 +g1,20880:7626635,42340635 +g1,20880:7958589,42340635 +g1,20880:8290543,42340635 +g1,20880:8622497,42340635 +g1,20880:8954451,42340635 +g1,20880:9286405,42340635 +g1,20880:9618359,42340635 +g1,20880:9950313,42340635 +g1,20880:10282267,42340635 +g1,20880:10614221,42340635 +g1,20880:10946175,42340635 +g1,20880:11278129,42340635 +g1,20880:11610083,42340635 +g1,20880:11942037,42340635 +g1,20880:12273991,42340635 +g1,20880:12605945,42340635 +g1,20880:12937899,42340635 +g1,20880:13269853,42340635 +g1,20880:13601807,42340635 +g1,20880:15925485,42340635 +g1,20880:16589393,42340635 +g1,20880:18913071,42340635 +g1,20880:20572841,42340635 +g1,20880:22232611,42340635 +k1,20880:22232611,42340635:0 +h1,20880:23892381,42340635:0,0,0 +k1,20880:32583029,42340635:8690648 +g1,20880:32583029,42340635 +) +(1,20881:6630773,43025490:25952256,424439,86428 +h1,20881:6630773,43025490:0,0,0 +g1,20881:6962727,43025490 +g1,20881:7294681,43025490 +g1,20881:7626635,43025490 +g1,20881:7958589,43025490 +g1,20881:8290543,43025490 +g1,20881:8622497,43025490 +g1,20881:8954451,43025490 +g1,20881:9286405,43025490 +g1,20881:9618359,43025490 +g1,20881:9950313,43025490 +g1,20881:10282267,43025490 +g1,20881:10614221,43025490 +g1,20881:10946175,43025490 +g1,20881:11278129,43025490 +g1,20881:11610083,43025490 +g1,20881:11942037,43025490 +g1,20881:12273991,43025490 +g1,20881:12605945,43025490 +g1,20881:12937899,43025490 +g1,20881:13269853,43025490 +g1,20881:13601807,43025490 +g1,20881:15925485,43025490 +g1,20881:16589393,43025490 +g1,20881:18249163,43025490 +k1,20881:18249163,43025490:0 +h1,20881:19908933,43025490:0,0,0 +k1,20881:32583029,43025490:12674096 +g1,20881:32583029,43025490 +) +(1,20882:6630773,43710345:25952256,424439,106246 +h1,20882:6630773,43710345:0,0,0 +g1,20882:6962727,43710345 +g1,20882:7294681,43710345 +g1,20882:7626635,43710345 +g1,20882:7958589,43710345 +g1,20882:8290543,43710345 +g1,20882:8622497,43710345 +g1,20882:8954451,43710345 +g1,20882:9286405,43710345 +g1,20882:9618359,43710345 +g1,20882:9950313,43710345 +g1,20882:10282267,43710345 +g1,20882:10614221,43710345 +g1,20882:10946175,43710345 +g1,20882:11278129,43710345 +g1,20882:11610083,43710345 +g1,20882:11942037,43710345 +g1,20882:12273991,43710345 +g1,20882:12605945,43710345 +g1,20882:12937899,43710345 +g1,20882:13269853,43710345 +g1,20882:13601807,43710345 +g1,20882:15925485,43710345 +g1,20882:16589393,43710345 +g1,20882:18249163,43710345 +k1,20882:18249163,43710345:0 +h1,20882:19245025,43710345:0,0,0 +k1,20882:32583029,43710345:13338004 +g1,20882:32583029,43710345 +) +(1,20883:6630773,44395200:25952256,424439,79822 +h1,20883:6630773,44395200:0,0,0 +g1,20883:6962727,44395200 +g1,20883:7294681,44395200 +g1,20883:7626635,44395200 +g1,20883:7958589,44395200 +g1,20883:8290543,44395200 +g1,20883:8622497,44395200 +g1,20883:8954451,44395200 +g1,20883:9286405,44395200 +g1,20883:9618359,44395200 +g1,20883:9950313,44395200 +g1,20883:10282267,44395200 +g1,20883:10614221,44395200 +g1,20883:10946175,44395200 +g1,20883:11278129,44395200 +g1,20883:11610083,44395200 +g1,20883:11942037,44395200 +g1,20883:12273991,44395200 +g1,20883:12605945,44395200 +g1,20883:12937899,44395200 +g1,20883:13269853,44395200 +g1,20883:13601807,44395200 +g1,20883:15261577,44395200 +g1,20883:15925485,44395200 +g1,20883:17917209,44395200 +g1,20883:21900656,44395200 +h1,20883:22232610,44395200:0,0,0 +k1,20883:32583029,44395200:10350419 +g1,20883:32583029,44395200 +) +(1,20884:6630773,45080055:25952256,424439,106246 +h1,20884:6630773,45080055:0,0,0 +g1,20884:6962727,45080055 +g1,20884:7294681,45080055 +g1,20884:15261576,45080055 +g1,20884:15925484,45080055 +g1,20884:17917208,45080055 +g1,20884:19908932,45080055 +g1,20884:22564564,45080055 +h1,20884:22896518,45080055:0,0,0 +k1,20884:32583029,45080055:9686511 +g1,20884:32583029,45080055 +) +] +) +g1,20887:32583029,45186301 +g1,20887:6630773,45186301 +g1,20887:6630773,45186301 +g1,20887:32583029,45186301 +g1,20887:32583029,45186301 +) +] +(1,20887:32583029,45706769:0,0,0 +g1,20887:32583029,45706769 +) +) +] +(1,20887:6630773,47279633:25952256,0,0 +h1,20887:6630773,47279633:25952256,0,0 +) +] +(1,20887:4262630,4025873:0,0,0 +[1,20887:-473656,4025873:0,0,0 +(1,20887:-473656,-710413:0,0,0 +(1,20887:-473656,-710413:0,0,0 +g1,20887:-473656,-710413 +) +g1,20887:-473656,-710413 +) +] +) +] +!20808 +}356 Input:3421:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3422:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3423:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3424:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3425:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!670 -{378 -[1,20938:4262630,47279633:28320399,43253760,0 -(1,20938:4262630,4025873:0,0,0 -[1,20938:-473656,4025873:0,0,0 -(1,20938:-473656,-710413:0,0,0 -(1,20938:-473656,-644877:0,0,0 -k1,20938:-473656,-644877:-65536 +!294 +{357 +[1,20937:4262630,47279633:28320399,43253760,0 +(1,20937:4262630,4025873:0,0,0 +[1,20937:-473656,4025873:0,0,0 +(1,20937:-473656,-710413:0,0,0 +(1,20937:-473656,-644877:0,0,0 +k1,20937:-473656,-644877:-65536 ) -(1,20938:-473656,4736287:0,0,0 -k1,20938:-473656,4736287:5209943 +(1,20937:-473656,4736287:0,0,0 +k1,20937:-473656,4736287:5209943 ) -g1,20938:-473656,-710413 +g1,20937:-473656,-710413 ) ] ) -[1,20938:6630773,47279633:25952256,43253760,0 -[1,20938:6630773,4812305:25952256,786432,0 -(1,20938:6630773,4812305:25952256,505283,11795 -(1,20938:6630773,4812305:25952256,505283,11795 -g1,20938:3078558,4812305 -[1,20938:3078558,4812305:0,0,0 -(1,20938:3078558,2439708:0,1703936,0 -k1,20938:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,20938:2537886,2439708:1179648,16384,0 +[1,20937:6630773,47279633:25952256,43253760,0 +[1,20937:6630773,4812305:25952256,786432,0 +(1,20937:6630773,4812305:25952256,513147,126483 +(1,20937:6630773,4812305:25952256,513147,126483 +g1,20937:3078558,4812305 +[1,20937:3078558,4812305:0,0,0 +(1,20937:3078558,2439708:0,1703936,0 +k1,20937:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,20937:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,20938:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,20937:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,20938:3078558,4812305:0,0,0 -(1,20938:3078558,2439708:0,1703936,0 -g1,20938:29030814,2439708 -g1,20938:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,20938:36151628,1915420:16384,1179648,0 +[1,20937:3078558,4812305:0,0,0 +(1,20937:3078558,2439708:0,1703936,0 +g1,20937:29030814,2439708 +g1,20937:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,20937:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,20938:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,20937:37855564,2439708:1179648,16384,0 ) ) -k1,20938:3078556,2439708:-34777008 +k1,20937:3078556,2439708:-34777008 ) ] -[1,20938:3078558,4812305:0,0,0 -(1,20938:3078558,49800853:0,16384,2228224 -k1,20938:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,20938:2537886,49800853:1179648,16384,0 +[1,20937:3078558,4812305:0,0,0 +(1,20937:3078558,49800853:0,16384,2228224 +k1,20937:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,20937:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,20938:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,20937:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,20938:3078558,4812305:0,0,0 -(1,20938:3078558,49800853:0,16384,2228224 -g1,20938:29030814,49800853 -g1,20938:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,20938:36151628,51504789:16384,1179648,0 +[1,20937:3078558,4812305:0,0,0 +(1,20937:3078558,49800853:0,16384,2228224 +g1,20937:29030814,49800853 +g1,20937:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,20937:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,20938:37855564,49800853:1179648,16384,0 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,20937:37855564,49800853:1179648,16384,0 ) ) -k1,20938:3078556,49800853:-34777008 +k1,20937:3078556,49800853:-34777008 ) ] -g1,20938:6630773,4812305 -g1,20938:6630773,4812305 -g1,20938:9264009,4812305 -k1,20938:31387653,4812305:22123644 +g1,20937:6630773,4812305 +k1,20937:21350816,4812305:13524666 +g1,20937:21999622,4812305 +g1,20937:25611966,4812305 +g1,20937:28956923,4812305 +g1,20937:29772190,4812305 ) ) ] -[1,20938:6630773,45706769:25952256,40108032,0 -(1,20938:6630773,45706769:25952256,40108032,0 -(1,20938:6630773,45706769:0,0,0 -g1,20938:6630773,45706769 -) -[1,20938:6630773,45706769:25952256,40108032,0 -v1,20874:6630773,6254097:0,393216,0 -(1,20874:6630773,7229080:25952256,1368199,196608 -g1,20874:6630773,7229080 -g1,20874:6630773,7229080 -g1,20874:6434165,7229080 -(1,20874:6434165,7229080:0,1368199,196608 -r1,20938:32779637,7229080:26345472,1564807,196608 -k1,20874:6434165,7229080:-26345472 +[1,20937:6630773,45706769:25952256,40108032,0 +(1,20937:6630773,45706769:25952256,40108032,0 +(1,20937:6630773,45706769:0,0,0 +g1,20937:6630773,45706769 ) -(1,20874:6434165,7229080:26345472,1368199,196608 -[1,20874:6630773,7229080:25952256,1171591,0 -(1,20871:6630773,6461715:25952256,404226,101187 -(1,20870:6630773,6461715:0,0,0 -g1,20870:6630773,6461715 -g1,20870:6630773,6461715 -g1,20870:6303093,6461715 -(1,20870:6303093,6461715:0,0,0 -) -g1,20870:6630773,6461715 -) -g1,20871:9476084,6461715 -g1,20871:10424522,6461715 -g1,20871:13902124,6461715 -g1,20871:14534416,6461715 -g1,20871:18012019,6461715 -g1,20871:18644311,6461715 -g1,20871:24651079,6461715 -g1,20871:25283371,6461715 -h1,20871:28760973,6461715:0,0,0 -k1,20871:32583029,6461715:3822056 -g1,20871:32583029,6461715 -) -(1,20872:6630773,7127893:25952256,404226,101187 -h1,20872:6630773,7127893:0,0,0 -g1,20872:7263065,7127893 -g1,20872:7895357,7127893 -h1,20872:10424522,7127893:0,0,0 -k1,20872:32583030,7127893:22158508 -g1,20872:32583030,7127893 -) -] -) -g1,20874:32583029,7229080 -g1,20874:6630773,7229080 -g1,20874:6630773,7229080 -g1,20874:32583029,7229080 -g1,20874:32583029,7229080 -) -h1,20874:6630773,7425688:0,0,0 -(1,20877:6630773,18331803:25952256,10510489,0 -k1,20877:12599879,18331803:5969106 -h1,20876:12599879,18331803:0,0,0 -(1,20876:12599879,18331803:14014044,10510489,0 -(1,20876:12599879,18331803:14014019,10510515,0 -(1,20876:12599879,18331803:14014019,10510515,0 -(1,20876:12599879,18331803:0,10510515,0 -(1,20876:12599879,18331803:0,14208860,0 -(1,20876:12599879,18331803:18945146,14208860,0 -) -k1,20876:12599879,18331803:-18945146 -) -) -g1,20876:26613898,18331803 -) -) -) -g1,20877:26613923,18331803 -k1,20877:32583029,18331803:5969106 -) -v1,20884:6630773,19503381:0,393216,0 -(1,20885:6630773,21753243:25952256,2643078,0 -g1,20885:6630773,21753243 -g1,20885:6303093,21753243 -r1,20938:6401397,21753243:98304,2643078,0 -g1,20885:6600626,21753243 -g1,20885:6797234,21753243 -[1,20885:6797234,21753243:25785795,2643078,0 -(1,20885:6797234,19935919:25785795,825754,196608 -(1,20884:6797234,19935919:0,825754,196608 -r1,20938:7890375,19935919:1093141,1022362,196608 -k1,20884:6797234,19935919:-1093141 -) -(1,20884:6797234,19935919:1093141,825754,196608 -) -k1,20884:8065777,19935919:175402 -k1,20884:9791995,19935919:327680 -k1,20884:10437291,19935919:175403 -k1,20884:11144190,19935919:175402 -k1,20884:13448858,19935919:175403 -k1,20884:15208265,19935919:175402 -k1,20884:16035096,19935919:175403 -k1,20884:17822028,19935919:175402 -k1,20884:18648858,19935919:175402 -k1,20884:21915594,19935919:175403 -k1,20884:23697939,19935919:175402 -k1,20884:27082640,19935919:175403 -k1,20884:28529440,19935919:175402 -k1,20884:29942818,19935919:175403 -k1,20884:30777512,19935919:175402 -k1,20884:32583029,19935919:0 -) -(1,20885:6797234,20777407:25785795,505283,134348 -k1,20884:8223852,20777407:223377 -k1,20884:8978726,20777407:223377 -k1,20884:9963631,20777407:223377 -k1,20884:13562112,20777407:223377 -k1,20884:15722733,20777407:223377 -k1,20884:16755480,20777407:223377 -k1,20884:19769379,20777407:223376 -k1,20884:20742488,20777407:223377 -k1,20884:21781133,20777407:223377 -k1,20884:23201853,20777407:223377 -k1,20884:27279402,20777407:223377 -k1,20884:28154207,20777407:223377 -k1,20884:29396669,20777407:223377 -k1,20884:32583029,20777407:0 -) -(1,20885:6797234,21618895:25785795,505283,134348 -g1,20884:7612501,21618895 -g1,20884:8830815,21618895 -g1,20884:10526231,21618895 -g1,20884:12696128,21618895 -g1,20884:14750681,21618895 -g1,20884:16141355,21618895 -g1,20884:18124474,21618895 -g1,20884:19342788,21618895 -g1,20884:21148960,21618895 -k1,20885:32583029,21618895:8555072 -g1,20885:32583029,21618895 -) -] -g1,20885:32583029,21753243 -) -h1,20885:6630773,21753243:0,0,0 -v1,20888:6630773,22924821:0,393216,0 -(1,20938:6630773,45706769:25952256,23175164,0 -g1,20938:6630773,45706769 -g1,20938:6303093,45706769 -r1,20938:6401397,45706769:98304,23175164,0 -g1,20938:6600626,45706769 -g1,20938:6797234,45706769 -[1,20938:6797234,45706769:25785795,23175164,0 -(1,20889:6797234,23286894:25785795,755289,196608 -(1,20888:6797234,23286894:0,755289,196608 -r1,20938:8134168,23286894:1336934,951897,196608 -k1,20888:6797234,23286894:-1336934 -) -(1,20888:6797234,23286894:1336934,755289,196608 -) -k1,20888:8300730,23286894:166562 -k1,20888:8628410,23286894:327680 -k1,20888:10215794,23286894:166563 -k1,20888:11033784,23286894:166562 -k1,20888:13129727,23286894:166563 -k1,20888:13652149,23286894:166562 -k1,20888:15101906,23286894:166562 -k1,20888:17254865,23286894:166563 -k1,20888:21128143,23286894:166562 -k1,20888:23496715,23286894:166562 -k1,20888:24314706,23286894:166563 -k1,20888:26225181,23286894:166562 -k1,20888:27007782,23286894:166563 -k1,20888:29754496,23286894:166562 -k1,20888:32583029,23286894:0 -) -(1,20889:6797234,24128382:25785795,513147,134348 -k1,20888:8053045,24128382:151529 -k1,20888:8952339,24128382:151528 -k1,20888:10780279,24128382:151529 -k1,20888:13056484,24128382:151528 -k1,20888:13673974,24128382:151529 -k1,20888:14844587,24128382:151528 -k1,20888:17567093,24128382:151529 -k1,20888:18710182,24128382:151529 -k1,20888:20168498,24128382:151528 -k1,20888:21137916,24128382:151529 -k1,20888:22308529,24128382:151528 -k1,20888:27516816,24128382:151529 -k1,20888:29785812,24128382:151528 -k1,20888:30596633,24128382:151529 -k1,20888:32583029,24128382:0 -) -(1,20889:6797234,24969870:25785795,513147,134348 -k1,20888:9295971,24969870:208909 -k1,20888:10841813,24969870:208908 -k1,20888:13291398,24969870:208909 -k1,20888:14116344,24969870:208908 -k1,20888:16312305,24969870:208909 -k1,20888:19185253,24969870:208909 -k1,20888:20053453,24969870:208908 -k1,20888:23264565,24969870:208909 -k1,20888:24492559,24969870:208909 -k1,20888:26586938,24969870:208908 -k1,20888:29780357,24969870:208909 -k1,20888:30520762,24969870:208908 -k1,20888:31381099,24969870:208909 -k1,20888:32583029,24969870:0 -) -(1,20889:6797234,25811358:25785795,513147,134348 -k1,20888:8344640,25811358:171805 -k1,20888:9325815,25811358:171805 -k1,20888:10516705,25811358:171805 -k1,20888:12664420,25811358:171805 -k1,20888:15646409,25811358:171805 -k1,20888:16477506,25811358:171805 -k1,20888:17668396,25811358:171805 -k1,20888:20594024,25811358:171805 -k1,20888:21719378,25811358:171805 -k1,20888:22995465,25811358:171805 -k1,20888:25353551,25811358:171805 -k1,20888:26544441,25811358:171805 -k1,20888:29742043,25811358:171805 -k1,20888:32583029,25811358:0 -) -(1,20889:6797234,26652846:25785795,513147,134348 -k1,20888:7760351,26652846:201589 -k1,20888:10542092,26652846:201589 -k1,20888:13572213,26652846:201588 -k1,20888:15689419,26652846:201589 -k1,20888:16246868,26652846:201589 -k1,20888:17731652,26652846:201589 -k1,20888:20802407,26652846:201589 -k1,20888:22046017,26652846:201588 -k1,20888:23450847,26652846:201589 -k1,20888:24520788,26652846:201589 -k1,20888:26252643,26652846:201589 -k1,20888:27105660,26652846:201589 -k1,20888:28573404,26652846:201588 -k1,20888:29841264,26652846:201589 -k1,20888:31591469,26652846:201589 -k1,20888:32583029,26652846:0 -) -(1,20889:6797234,27494334:25785795,505283,134348 -k1,20888:8082340,27494334:266021 -k1,20888:11959396,27494334:266022 -k1,20888:13416862,27494334:266021 -k1,20888:15191522,27494334:266021 -k1,20888:17196870,27494334:266022 -k1,20888:18654336,27494334:266021 -k1,20888:21876686,27494334:266021 -k1,20888:23839435,27494334:266022 -k1,20888:24721494,27494334:266021 -k1,20888:26085243,27494334:266021 -k1,20888:29167347,27494334:266022 -k1,20888:31970267,27494334:266021 -k1,20888:32583029,27494334:0 -) -(1,20889:6797234,28335822:25785795,513147,134348 -k1,20888:8032024,28335822:215705 -k1,20888:10670596,28335822:215706 -k1,20888:13164988,28335822:215705 -k1,20888:14039985,28335822:215705 -k1,20888:15274775,28335822:215705 -k1,20888:16878534,28335822:215706 -k1,20888:18592392,28335822:215705 -k1,20888:19755748,28335822:215705 -(1,20888:19755748,28335822:0,452978,122846 -r1,20938:23982844,28335822:4227096,575824,122846 -k1,20888:19755748,28335822:-4227096 -) -(1,20888:19755748,28335822:4227096,452978,122846 -k1,20888:19755748,28335822:3277 -h1,20888:23979567,28335822:0,411205,112570 -) -k1,20888:24198550,28335822:215706 -k1,20888:24945752,28335822:215705 -k1,20888:27695734,28335822:215705 -k1,20888:28539274,28335822:215705 -k1,20888:29958221,28335822:215706 -k1,20888:31714677,28335822:215705 -k1,20888:32583029,28335822:0 -) -(1,20889:6797234,29177310:25785795,513147,126483 -k1,20888:8811772,29177310:150039 -k1,20888:13344205,29177310:150040 -k1,20888:14566413,29177310:150039 -k1,20888:15913795,29177310:150039 -k1,20888:16419695,29177310:150040 -k1,20888:17852929,29177310:150039 -k1,20888:19436896,29177310:150039 -k1,20888:23041339,29177310:150040 -(1,20888:23041339,29177310:0,452978,115847 -r1,20938:26565011,29177310:3523672,568825,115847 -k1,20888:23041339,29177310:-3523672 -) -(1,20888:23041339,29177310:3523672,452978,115847 -k1,20888:23041339,29177310:3277 -h1,20888:26561734,29177310:0,411205,112570 -) -k1,20888:26888720,29177310:150039 -k1,20888:28230204,29177310:150039 -k1,20888:29314787,29177310:150040 -k1,20888:29820686,29177310:150039 -k1,20888:32583029,29177310:0 -) -(1,20889:6797234,30018798:25785795,513147,134348 -k1,20888:9264420,30018798:201606 -k1,20888:10413678,30018798:201607 -(1,20888:10413678,30018798:0,459977,115847 -r1,20938:14289062,30018798:3875384,575824,115847 -k1,20888:10413678,30018798:-3875384 -) -(1,20888:10413678,30018798:3875384,459977,115847 -k1,20888:10413678,30018798:3277 -h1,20888:14285785,30018798:0,411205,112570 -) -k1,20888:14664338,30018798:201606 -k1,20888:16062632,30018798:201607 -k1,20888:17365243,30018798:201606 -k1,20888:19354017,30018798:201607 -k1,20888:20087120,30018798:201606 -k1,20888:22716181,30018798:201607 -(1,20888:22716181,30018798:0,452978,115847 -r1,20938:27998413,30018798:5282232,568825,115847 -k1,20888:22716181,30018798:-5282232 -) -(1,20888:22716181,30018798:5282232,452978,115847 -g1,20888:25884865,30018798 -g1,20888:26588289,30018798 -h1,20888:27995136,30018798:0,411205,112570 -) -k1,20888:28200019,30018798:201606 -k1,20888:29053054,30018798:201607 -(1,20888:29053054,30018798:0,452978,115847 -r1,20938:31521591,30018798:2468537,568825,115847 -k1,20888:29053054,30018798:-2468537 -) -(1,20888:29053054,30018798:2468537,452978,115847 -k1,20888:29053054,30018798:3277 -h1,20888:31518314,30018798:0,411205,112570 -) -k1,20888:31896867,30018798:201606 -k1,20888:32583029,30018798:0 -) -(1,20889:6797234,30860286:25785795,513147,134348 -k1,20888:8186345,30860286:185870 -k1,20888:9689489,30860286:185870 -k1,20888:10894445,30860286:185871 -k1,20888:13859042,30860286:185870 -k1,20888:16031308,30860286:185870 -k1,20888:16903340,30860286:185870 -k1,20888:18827226,30860286:185871 -k1,20888:21066994,30860286:185870 -k1,20888:22014392,30860286:185870 -k1,20888:23979564,30860286:185870 -k1,20888:26998556,30860286:185871 -k1,20888:27800464,30860286:185870 -k1,20888:31923737,30860286:185870 -k1,20888:32583029,30860286:0 -) -(1,20889:6797234,31701774:25785795,505283,126483 -g1,20888:8128270,31701774 -g1,20888:10313895,31701774 -g1,20888:12847516,31701774 -g1,20888:13662783,31701774 -g1,20888:14217872,31701774 -g1,20888:15694398,31701774 -g1,20888:17591665,31701774 -g1,20888:18248991,31701774 -g1,20888:18979717,31701774 -k1,20889:32583029,31701774:11464217 -g1,20889:32583029,31701774 -) -v1,20891:6797234,32892240:0,393216,0 -(1,20910:6797234,43168549:25785795,10669525,196608 -g1,20910:6797234,43168549 -g1,20910:6797234,43168549 -g1,20910:6600626,43168549 -(1,20910:6600626,43168549:0,10669525,196608 -r1,20938:32779637,43168549:26179011,10866133,196608 -k1,20910:6600625,43168549:-26179012 -) -(1,20910:6600626,43168549:26179011,10669525,196608 -[1,20910:6797234,43168549:25785795,10472917,0 -(1,20893:6797234,33099858:25785795,404226,107478 -(1,20892:6797234,33099858:0,0,0 -g1,20892:6797234,33099858 -g1,20892:6797234,33099858 -g1,20892:6469554,33099858 -(1,20892:6469554,33099858:0,0,0 -) -g1,20892:6797234,33099858 -) -g1,20893:11223274,33099858 -k1,20893:11223274,33099858:0 -h1,20893:11855566,33099858:0,0,0 -k1,20893:32583030,33099858:20727464 -g1,20893:32583030,33099858 -) -(1,20894:6797234,33766036:25785795,410518,82312 -h1,20894:6797234,33766036:0,0,0 -g1,20894:7113380,33766036 -g1,20894:7429526,33766036 -g1,20894:10274837,33766036 -g1,20894:13752440,33766036 -g1,20894:14384732,33766036 -k1,20894:14384732,33766036:0 -h1,20894:15333169,33766036:0,0,0 -k1,20894:32583029,33766036:17249860 -g1,20894:32583029,33766036 -) -(1,20895:6797234,34432214:25785795,410518,101187 -h1,20895:6797234,34432214:0,0,0 -g1,20895:7113380,34432214 -g1,20895:7429526,34432214 -g1,20895:7745672,34432214 -g1,20895:8061818,34432214 -g1,20895:8377964,34432214 -g1,20895:8694110,34432214 -g1,20895:9010256,34432214 -g1,20895:9326402,34432214 -g1,20895:9642548,34432214 -g1,20895:9958694,34432214 -g1,20895:10274840,34432214 -g1,20895:10590986,34432214 -g1,20895:14384734,34432214 -g1,20895:15017026,34432214 -k1,20895:15017026,34432214:0 -h1,20895:17546192,34432214:0,0,0 -k1,20895:32583029,34432214:15036837 -g1,20895:32583029,34432214 -) -(1,20896:6797234,35098392:25785795,404226,82312 -h1,20896:6797234,35098392:0,0,0 -g1,20896:7113380,35098392 -g1,20896:7429526,35098392 -g1,20896:7745672,35098392 -g1,20896:8061818,35098392 -g1,20896:8377964,35098392 -g1,20896:8694110,35098392 -g1,20896:9010256,35098392 -g1,20896:9326402,35098392 -g1,20896:9642548,35098392 -g1,20896:9958694,35098392 -g1,20896:10274840,35098392 -g1,20896:10590986,35098392 -g1,20896:15333172,35098392 -g1,20896:15965464,35098392 -k1,20896:15965464,35098392:0 -h1,20896:20075358,35098392:0,0,0 -k1,20896:32583029,35098392:12507671 -g1,20896:32583029,35098392 -) -(1,20897:6797234,35764570:25785795,404226,82312 -h1,20897:6797234,35764570:0,0,0 -g1,20897:7113380,35764570 -g1,20897:7429526,35764570 -g1,20897:7745672,35764570 -g1,20897:8061818,35764570 -g1,20897:8377964,35764570 -g1,20897:8694110,35764570 -g1,20897:9010256,35764570 -g1,20897:9326402,35764570 -g1,20897:9642548,35764570 -g1,20897:9958694,35764570 -g1,20897:10274840,35764570 -g1,20897:10590986,35764570 -g1,20897:15333172,35764570 -g1,20897:15965464,35764570 -k1,20897:15965464,35764570:0 -h1,20897:20075358,35764570:0,0,0 -k1,20897:32583029,35764570:12507671 -g1,20897:32583029,35764570 -) -(1,20898:6797234,36430748:25785795,404226,76021 -h1,20898:6797234,36430748:0,0,0 -g1,20898:7113380,36430748 -g1,20898:7429526,36430748 -g1,20898:7745672,36430748 -g1,20898:8061818,36430748 -g1,20898:8377964,36430748 -g1,20898:8694110,36430748 -g1,20898:9010256,36430748 -g1,20898:9326402,36430748 -g1,20898:9642548,36430748 -g1,20898:9958694,36430748 -g1,20898:10274840,36430748 -g1,20898:10590986,36430748 -g1,20898:14068589,36430748 -g1,20898:14700881,36430748 -g1,20898:18494630,36430748 -h1,20898:18810776,36430748:0,0,0 -k1,20898:32583029,36430748:13772253 -g1,20898:32583029,36430748 -) -(1,20899:6797234,37096926:25785795,404226,107478 -h1,20899:6797234,37096926:0,0,0 -g1,20899:7113380,37096926 -g1,20899:7429526,37096926 -g1,20899:7745672,37096926 -g1,20899:8061818,37096926 -g1,20899:14700878,37096926 -g1,20899:15333170,37096926 -k1,20899:15333170,37096926:0 -h1,20899:18494627,37096926:0,0,0 -k1,20899:32583029,37096926:14088402 -g1,20899:32583029,37096926 -) -(1,20900:6797234,37763104:25785795,410518,101187 -h1,20900:6797234,37763104:0,0,0 -g1,20900:7113380,37763104 -g1,20900:7429526,37763104 -g1,20900:7745672,37763104 -g1,20900:8061818,37763104 -g1,20900:8377964,37763104 -g1,20900:8694110,37763104 -g1,20900:9010256,37763104 -g1,20900:9326402,37763104 -g1,20900:9642548,37763104 -g1,20900:9958694,37763104 -g1,20900:10274840,37763104 -g1,20900:10590986,37763104 -g1,20900:10907132,37763104 -g1,20900:11223278,37763104 -g1,20900:11539424,37763104 -g1,20900:15333172,37763104 -g1,20900:15965464,37763104 -k1,20900:15965464,37763104:0 -h1,20900:19759212,37763104:0,0,0 -k1,20900:32583029,37763104:12823817 -g1,20900:32583029,37763104 -) -(1,20901:6797234,38429282:25785795,404226,82312 -h1,20901:6797234,38429282:0,0,0 -g1,20901:7113380,38429282 -g1,20901:7429526,38429282 -g1,20901:7745672,38429282 -g1,20901:8061818,38429282 -g1,20901:8377964,38429282 -g1,20901:8694110,38429282 -g1,20901:9010256,38429282 -g1,20901:9326402,38429282 -g1,20901:9642548,38429282 -g1,20901:9958694,38429282 -g1,20901:10274840,38429282 -g1,20901:10590986,38429282 -g1,20901:10907132,38429282 -g1,20901:11223278,38429282 -g1,20901:11539424,38429282 -g1,20901:16281610,38429282 -g1,20901:16913902,38429282 -k1,20901:16913902,38429282:0 -h1,20901:21656088,38429282:0,0,0 -k1,20901:32583029,38429282:10926941 -g1,20901:32583029,38429282 -) -(1,20902:6797234,39095460:25785795,404226,76021 -h1,20902:6797234,39095460:0,0,0 -g1,20902:7113380,39095460 -g1,20902:7429526,39095460 -g1,20902:7745672,39095460 -g1,20902:8061818,39095460 -g1,20902:8377964,39095460 -g1,20902:8694110,39095460 -g1,20902:9010256,39095460 -g1,20902:9326402,39095460 -g1,20902:9642548,39095460 -g1,20902:9958694,39095460 -g1,20902:10274840,39095460 -g1,20902:10590986,39095460 -g1,20902:10907132,39095460 -g1,20902:11223278,39095460 -g1,20902:11539424,39095460 -g1,20902:16281610,39095460 -g1,20902:16913902,39095460 -g1,20902:21972233,39095460 -h1,20902:22288379,39095460:0,0,0 -k1,20902:32583029,39095460:10294650 -g1,20902:32583029,39095460 -) -(1,20903:6797234,39761638:25785795,404226,82312 -h1,20903:6797234,39761638:0,0,0 -g1,20903:7113380,39761638 -g1,20903:7429526,39761638 -g1,20903:7745672,39761638 -g1,20903:8061818,39761638 -g1,20903:11539421,39761638 -g1,20903:12171713,39761638 -g1,20903:18178481,39761638 -g1,20903:18810773,39761638 -k1,20903:18810773,39761638:0 -h1,20903:22604521,39761638:0,0,0 -k1,20903:32583029,39761638:9978508 -g1,20903:32583029,39761638 -) -(1,20904:6797234,40427816:25785795,404226,82312 -h1,20904:6797234,40427816:0,0,0 -g1,20904:7113380,40427816 -g1,20904:7429526,40427816 -g1,20904:7745672,40427816 -g1,20904:8061818,40427816 -g1,20904:8377964,40427816 -g1,20904:8694110,40427816 -g1,20904:9010256,40427816 -g1,20904:9326402,40427816 -g1,20904:9642548,40427816 -g1,20904:9958694,40427816 -g1,20904:11539423,40427816 -g1,20904:12171715,40427816 -g1,20904:18178483,40427816 -g1,20904:18810775,40427816 -k1,20904:18810775,40427816:0 -h1,20904:22604523,40427816:0,0,0 -k1,20904:32583029,40427816:9978506 -g1,20904:32583029,40427816 -) -(1,20905:6797234,41093994:25785795,404226,82312 -h1,20905:6797234,41093994:0,0,0 -g1,20905:7113380,41093994 -g1,20905:7429526,41093994 -g1,20905:7745672,41093994 -g1,20905:8061818,41093994 -g1,20905:8377964,41093994 -g1,20905:8694110,41093994 -g1,20905:9010256,41093994 -g1,20905:9326402,41093994 -g1,20905:9642548,41093994 -g1,20905:9958694,41093994 -g1,20905:11539423,41093994 -g1,20905:12171715,41093994 -g1,20905:18178483,41093994 -g1,20905:18810775,41093994 -k1,20905:18810775,41093994:0 -h1,20905:22604523,41093994:0,0,0 -k1,20905:32583029,41093994:9978506 -g1,20905:32583029,41093994 -) -(1,20906:6797234,41760172:25785795,404226,82312 -h1,20906:6797234,41760172:0,0,0 -g1,20906:7113380,41760172 -g1,20906:7429526,41760172 -g1,20906:7745672,41760172 -g1,20906:8061818,41760172 -g1,20906:8377964,41760172 -g1,20906:8694110,41760172 -g1,20906:9010256,41760172 -g1,20906:9326402,41760172 -g1,20906:9642548,41760172 -g1,20906:9958694,41760172 -g1,20906:11855568,41760172 -g1,20906:12487860,41760172 -g1,20906:18494628,41760172 -g1,20906:19126920,41760172 -k1,20906:19126920,41760172:0 -h1,20906:22920668,41760172:0,0,0 -k1,20906:32583029,41760172:9662361 -g1,20906:32583029,41760172 -) -(1,20907:6797234,42426350:25785795,404226,101187 -h1,20907:6797234,42426350:0,0,0 -g1,20907:7113380,42426350 -g1,20907:7429526,42426350 -g1,20907:7745672,42426350 -g1,20907:8061818,42426350 -g1,20907:8377964,42426350 -g1,20907:8694110,42426350 -g1,20907:9010256,42426350 -g1,20907:9326402,42426350 -g1,20907:9642548,42426350 -g1,20907:9958694,42426350 -g1,20907:13120151,42426350 -g1,20907:13752443,42426350 -g1,20907:19759211,42426350 -g1,20907:20391503,42426350 -g1,20907:24501397,42426350 -g1,20907:27346708,42426350 -g1,20907:27979000,42426350 -h1,20907:29559729,42426350:0,0,0 -k1,20907:32583029,42426350:3023300 -g1,20907:32583029,42426350 -) -(1,20908:6797234,43092528:25785795,404226,76021 -h1,20908:6797234,43092528:0,0,0 -g1,20908:7113380,43092528 -g1,20908:7429526,43092528 -h1,20908:7745672,43092528:0,0,0 -k1,20908:32583028,43092528:24837356 -g1,20908:32583028,43092528 -) -] -) -g1,20910:32583029,43168549 -g1,20910:6797234,43168549 -g1,20910:6797234,43168549 -g1,20910:32583029,43168549 -g1,20910:32583029,43168549 -) -h1,20910:6797234,43365157:0,0,0 -(1,20914:6797234,44730933:25785795,505283,102891 -h1,20913:6797234,44730933:983040,0,0 -k1,20913:8644366,44730933:236257 -k1,20913:9899708,44730933:236257 -k1,20913:12106634,44730933:236258 -k1,20913:14198215,44730933:236257 -k1,20913:15302824,44730933:236257 -k1,20913:17014296,44730933:236257 -k1,20913:19600674,44730933:236257 -k1,20913:20934659,44730933:236257 -k1,20913:22501298,44730933:236258 -k1,20913:24723951,44730933:236257 -k1,20913:28840595,44730933:236257 -k1,20913:31537074,44730933:236257 -k1,20913:32583029,44730933:0 -) -(1,20914:6797234,45572421:25785795,513147,134348 -k1,20913:8817508,45572421:237039 -k1,20913:11000965,45572421:237038 -k1,20913:12429449,45572421:237039 -k1,20913:14401880,45572421:237038 -k1,20913:15409622,45572421:237039 -k1,20913:18631170,45572421:237038 -k1,20913:20152715,45572421:237039 -k1,20913:20921250,45572421:237038 -k1,20913:22512263,45572421:237039 -k1,20913:24461757,45572421:237038 -k1,20913:25350224,45572421:237039 -k1,20913:28365333,45572421:237038 -k1,20913:31189078,45572421:237039 -k1,20913:32583029,45572421:0 -) -] -g1,20938:32583029,45706769 -) -] -(1,20938:32583029,45706769:0,0,0 -g1,20938:32583029,45706769 -) -) -] -(1,20938:6630773,47279633:25952256,0,0 -h1,20938:6630773,47279633:25952256,0,0 -) -] -(1,20938:4262630,4025873:0,0,0 -[1,20938:-473656,4025873:0,0,0 -(1,20938:-473656,-710413:0,0,0 -(1,20938:-473656,-710413:0,0,0 -g1,20938:-473656,-710413 -) -g1,20938:-473656,-710413 -) -] -) -] -!24615 -}378 -Input:3426:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3427:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3428:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3429:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3430:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3431:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!576 -{379 -[1,20964:4262630,47279633:28320399,43253760,0 -(1,20964:4262630,4025873:0,0,0 -[1,20964:-473656,4025873:0,0,0 -(1,20964:-473656,-710413:0,0,0 -(1,20964:-473656,-644877:0,0,0 -k1,20964:-473656,-644877:-65536 +[1,20937:6630773,45706769:25952256,40108032,0 +v1,20887:6630773,6254097:0,393216,0 +(1,20887:6630773,6594780:25952256,733899,196608 +g1,20887:6630773,6594780 +g1,20887:6630773,6594780 +g1,20887:6434165,6594780 +(1,20887:6434165,6594780:0,733899,196608 +r1,20937:32779637,6594780:26345472,930507,196608 +k1,20887:6434165,6594780:-26345472 ) -(1,20964:-473656,4736287:0,0,0 -k1,20964:-473656,4736287:5209943 +(1,20887:6434165,6594780:26345472,733899,196608 +[1,20887:6630773,6594780:25952256,537291,0 +(1,20885:6630773,6488534:25952256,431045,106246 +h1,20885:6630773,6488534:0,0,0 +g1,20885:6962727,6488534 +g1,20885:7294681,6488534 +g1,20885:21568701,6488534 +g1,20885:22232609,6488534 +g1,20885:23560425,6488534 +g1,20885:25552149,6488534 +h1,20885:27875827,6488534:0,0,0 +k1,20885:32583029,6488534:4707202 +g1,20885:32583029,6488534 +) +] +) +g1,20887:32583029,6594780 +g1,20887:6630773,6594780 +g1,20887:6630773,6594780 +g1,20887:32583029,6594780 +g1,20887:32583029,6594780 +) +h1,20887:6630773,6791388:0,0,0 +(1,20890:6630773,15615592:25952256,8758668,0 +k1,20890:7928465,15615592:1297692 +h1,20889:7928465,15615592:0,0,0 +(1,20889:7928465,15615592:23356872,8758668,0 +(1,20889:7928465,15615592:23356506,8758690,0 +(1,20889:7928465,15615592:23356506,8758690,0 +(1,20889:7928465,15615592:0,8758690,0 +(1,20889:7928465,15615592:0,14208860,0 +(1,20889:7928465,15615592:37890292,14208860,0 +) +k1,20889:7928465,15615592:-37890292 +) +) +g1,20889:31284971,15615592 +) +) +) +g1,20890:31285337,15615592 +k1,20890:32583029,15615592:1297692 +) +(1,20898:6630773,17732410:25952256,555811,12975 +(1,20898:6630773,17732410:2899444,534184,12975 +g1,20898:6630773,17732410 +g1,20898:9530217,17732410 +) +g1,20898:10837202,17732410 +k1,20898:32583029,17732410:19492306 +g1,20898:32583029,17732410 +) +v1,20902:6630773,18990706:0,393216,0 +(1,20903:6630773,22946551:25952256,4349061,0 +g1,20903:6630773,22946551 +g1,20903:6237557,22946551 +r1,20937:6368629,22946551:131072,4349061,0 +g1,20903:6567858,22946551 +g1,20903:6764466,22946551 +[1,20903:6764466,22946551:25818563,4349061,0 +(1,20903:6764466,19351883:25818563,754393,260573 +(1,20902:6764466,19351883:0,754393,260573 +r1,20937:8010564,19351883:1246098,1014966,260573 +k1,20902:6764466,19351883:-1246098 +) +(1,20902:6764466,19351883:1246098,754393,260573 +) +k1,20902:8286639,19351883:276075 +k1,20902:8614319,19351883:327680 +k1,20902:9814452,19351883:276075 +k1,20902:12070370,19351883:276075 +k1,20902:13338006,19351883:276076 +k1,20902:15264278,19351883:276075 +k1,20902:18024168,19351883:276075 +k1,20902:18951671,19351883:276075 +k1,20902:20640047,19351883:276075 +k1,20902:22358569,19351883:276075 +k1,20902:23679288,19351883:276075 +k1,20902:25935207,19351883:276076 +k1,20902:28740972,19351883:276075 +k1,20902:30114775,19351883:276075 +k1,20902:32051532,19351883:276075 +k1,20902:32583029,19351883:0 +) +(1,20903:6764466,20216963:25818563,513147,134348 +k1,20902:8891512,20216963:229779 +k1,20902:9734054,20216963:229780 +k1,20902:13367118,20216963:229779 +k1,20902:15940464,20216963:229779 +k1,20902:17612691,20216963:229780 +k1,20902:20043824,20216963:229779 +k1,20902:20751360,20216963:229779 +k1,20902:22668036,20216963:229779 +k1,20902:23867093,20216963:229780 +k1,20902:26076715,20216963:229779 +k1,20902:28486877,20216963:229779 +k1,20902:30092258,20216963:229780 +k1,20902:31069803,20216963:229779 +k1,20902:32583029,20216963:0 +) +(1,20903:6764466,21082043:25818563,513147,126483 +k1,20902:7583713,21082043:167819 +k1,20902:9412214,21082043:167819 +k1,20902:13716010,21082043:167819 +k1,20902:14566714,21082043:167819 +k1,20902:17805550,21082043:167819 +k1,20902:21900942,21082043:167819 +k1,20902:23353266,21082043:167818 +k1,20902:24718428,21082043:167819 +k1,20902:25721831,21082043:167819 +k1,20902:26541078,21082043:167819 +k1,20902:27064757,21082043:167819 +k1,20902:28875564,21082043:167819 +k1,20902:29671218,21082043:167819 +k1,20902:31042278,21082043:167819 +k1,20902:32583029,21082043:0 +) +(1,20903:6764466,21947123:25818563,513147,126483 +k1,20902:8540317,21947123:262625 +k1,20902:10178542,21947123:262624 +k1,20902:10907128,21947123:262625 +k1,20902:12188837,21947123:262624 +k1,20902:14937243,21947123:262625 +k1,20902:15859159,21947123:262624 +k1,20902:17391216,21947123:262625 +k1,20902:19701840,21947123:262624 +k1,20902:20495962,21947123:262625 +k1,20902:22474974,21947123:262624 +k1,20902:24200363,21947123:262625 +k1,20902:25122279,21947123:262624 +k1,20902:27665557,21947123:262625 +k1,20902:29725179,21947123:262625 +k1,20902:30600565,21947123:262624 +k1,20902:32583029,21947123:0 +) +(1,20903:6764466,22812203:25818563,505283,134348 +g1,20902:9634287,22812203 +g1,20902:10449554,22812203 +g1,20902:13155535,22812203 +g1,20902:14734952,22812203 +g1,20902:15925741,22812203 +g1,20902:17459938,22812203 +k1,20903:32583029,22812203:12451844 +g1,20903:32583029,22812203 +) +] +g1,20903:32583029,22946551 +) +h1,20903:6630773,22946551:0,0,0 +(1,20906:6630773,23811631:25952256,513147,122846 +k1,20905:7617405,23811631:168743 +k1,20905:8654501,23811631:168744 +k1,20905:9915729,23811631:168743 +(1,20905:9915729,23811631:0,452978,122846 +r1,20937:13439401,23811631:3523672,575824,122846 +k1,20905:9915729,23811631:-3523672 +) +(1,20905:9915729,23811631:3523672,452978,122846 +k1,20905:9915729,23811631:3277 +h1,20905:13436124,23811631:0,411205,112570 +) +k1,20905:13608145,23811631:168744 +k1,20905:15662359,23811631:168743 +k1,20905:18426983,23811631:168743 +k1,20905:19247155,23811631:168744 +k1,20905:20508383,23811631:168743 +(1,20905:20508383,23811631:0,452978,115847 +r1,20937:24735479,23811631:4227096,568825,115847 +k1,20905:20508383,23811631:-4227096 +) +(1,20905:20508383,23811631:4227096,452978,115847 +k1,20905:20508383,23811631:3277 +h1,20905:24732202,23811631:0,411205,112570 +) +k1,20905:25077892,23811631:168743 +k1,20905:26200185,23811631:168744 +k1,20905:27461413,23811631:168743 +k1,20905:28649242,23811631:168744 +k1,20905:31010820,23811631:168743 +k1,20905:32583029,23811631:0 +) +(1,20906:6630773,24676711:25952256,513147,7863 +g1,20905:7777653,24676711 +g1,20905:9273840,24676711 +k1,20906:32583030,24676711:21189100 +g1,20906:32583030,24676711 +) +v1,20908:6630773,25361566:0,393216,0 +(1,20917:6630773,29106706:25952256,4138356,196608 +g1,20917:6630773,29106706 +g1,20917:6630773,29106706 +g1,20917:6434165,29106706 +(1,20917:6434165,29106706:0,4138356,196608 +r1,20937:32779637,29106706:26345472,4334964,196608 +k1,20917:6434165,29106706:-26345472 +) +(1,20917:6434165,29106706:26345472,4138356,196608 +[1,20917:6630773,29106706:25952256,3941748,0 +(1,20910:6630773,25596003:25952256,431045,112852 +(1,20909:6630773,25596003:0,0,0 +g1,20909:6630773,25596003 +g1,20909:6630773,25596003 +g1,20909:6303093,25596003 +(1,20909:6303093,25596003:0,0,0 +) +g1,20909:6630773,25596003 +) +k1,20910:6630773,25596003:0 +g1,20910:10614221,25596003 +g1,20910:11278129,25596003 +g1,20910:12937899,25596003 +g1,20910:14929623,25596003 +g1,20910:15593531,25596003 +g1,20910:19245025,25596003 +g1,20910:20904795,25596003 +g1,20910:21568703,25596003 +g1,20910:26879966,25596003 +h1,20910:27211920,25596003:0,0,0 +k1,20910:32583029,25596003:5371109 +g1,20910:32583029,25596003 +) +(1,20911:6630773,26280858:25952256,424439,112852 +h1,20911:6630773,26280858:0,0,0 +g1,20911:6962727,26280858 +g1,20911:7294681,26280858 +g1,20911:12273990,26280858 +g1,20911:12937898,26280858 +g1,20911:13933760,26280858 +g1,20911:15925484,26280858 +g1,20911:16589392,26280858 +g1,20911:19576978,26280858 +h1,20911:19908932,26280858:0,0,0 +k1,20911:32583029,26280858:12674097 +g1,20911:32583029,26280858 +) +(1,20912:6630773,26965713:25952256,424439,106246 +h1,20912:6630773,26965713:0,0,0 +g1,20912:6962727,26965713 +g1,20912:7294681,26965713 +g1,20912:13269852,26965713 +g1,20912:13933760,26965713 +g1,20912:15593530,26965713 +h1,20912:15925484,26965713:0,0,0 +k1,20912:32583029,26965713:16657545 +g1,20912:32583029,26965713 +) +(1,20913:6630773,27650568:25952256,431045,79822 +h1,20913:6630773,27650568:0,0,0 +g1,20913:6962727,27650568 +g1,20913:7294681,27650568 +g1,20913:13933760,27650568 +h1,20913:14265714,27650568:0,0,0 +k1,20913:32583030,27650568:18317316 +g1,20913:32583030,27650568 +) +(1,20914:6630773,28335423:25952256,424439,79822 +h1,20914:6630773,28335423:0,0,0 +g1,20914:6962727,28335423 +g1,20914:7294681,28335423 +g1,20914:15261576,28335423 +g1,20914:15925484,28335423 +g1,20914:17917208,28335423 +h1,20914:18249162,28335423:0,0,0 +k1,20914:32583029,28335423:14333867 +g1,20914:32583029,28335423 +) +(1,20915:6630773,29020278:25952256,431045,86428 +h1,20915:6630773,29020278:0,0,0 +g1,20915:6962727,29020278 +g1,20915:7294681,29020278 +g1,20915:9618359,29020278 +g1,20915:10282267,29020278 +g1,20915:12273991,29020278 +g1,20915:13933761,29020278 +g1,20915:14597669,29020278 +g1,20915:17585254,29020278 +h1,20915:19908932,29020278:0,0,0 +k1,20915:32583029,29020278:12674097 +g1,20915:32583029,29020278 +) +] +) +g1,20917:32583029,29106706 +g1,20917:6630773,29106706 +g1,20917:6630773,29106706 +g1,20917:32583029,29106706 +g1,20917:32583029,29106706 +) +h1,20917:6630773,29303314:0,0,0 +(1,20920:6630773,39879339:25952256,10510489,0 +k1,20920:12599879,39879339:5969106 +h1,20919:12599879,39879339:0,0,0 +(1,20919:12599879,39879339:14014044,10510489,0 +(1,20919:12599879,39879339:14014019,10510515,0 +(1,20919:12599879,39879339:14014019,10510515,0 +(1,20919:12599879,39879339:0,10510515,0 +(1,20919:12599879,39879339:0,14208860,0 +(1,20919:12599879,39879339:18945146,14208860,0 +) +k1,20919:12599879,39879339:-18945146 +) +) +g1,20919:26613898,39879339 +) +) +) +g1,20920:26613923,39879339 +k1,20920:32583029,39879339:5969106 +) +v1,20930:6630773,40744419:0,393216,0 +(1,20931:6630773,42008459:25952256,1657256,0 +g1,20931:6630773,42008459 +g1,20931:6237557,42008459 +r1,20937:6368629,42008459:131072,1657256,0 +g1,20931:6567858,42008459 +g1,20931:6764466,42008459 +[1,20931:6764466,42008459:25818563,1657256,0 +(1,20931:6764466,41016896:25818563,665693,196608 +(1,20930:6764466,41016896:0,665693,196608 +r1,20937:8010564,41016896:1246098,862301,196608 +k1,20930:6764466,41016896:-1246098 +) +(1,20930:6764466,41016896:1246098,665693,196608 +) +k1,20930:8195236,41016896:184672 +k1,20930:9921454,41016896:327680 +k1,20930:11355899,41016896:184673 +k1,20930:12559656,41016896:184672 +k1,20930:14240516,41016896:184673 +k1,20930:15372839,41016896:184672 +k1,20930:16576597,41016896:184673 +k1,20930:17730546,41016896:184672 +k1,20930:19564759,41016896:184672 +k1,20930:21604756,41016896:184673 +k1,20930:22440856,41016896:184672 +k1,20930:24649281,41016896:184673 +k1,20930:25189813,41016896:184672 +k1,20930:26419130,41016896:184673 +k1,20930:28427014,41016896:184672 +k1,20930:30582355,41016896:184673 +k1,20930:31923737,41016896:184672 +k1,20930:32583029,41016896:0 +) +(1,20931:6764466,41881976:25818563,505283,126483 +g1,20930:7982780,41881976 +g1,20930:9354448,41881976 +g1,20930:11161275,41881976 +g1,20930:11892001,41881976 +g1,20930:13961628,41881976 +g1,20930:14812285,41881976 +k1,20931:32583029,41881976:16031418 +g1,20931:32583029,41881976 +) +] +g1,20931:32583029,42008459 +) +h1,20931:6630773,42008459:0,0,0 +] +(1,20937:32583029,45706769:0,0,0 +g1,20937:32583029,45706769 ) -g1,20964:-473656,-710413 ) ] -) -[1,20964:6630773,47279633:25952256,43253760,0 -[1,20964:6630773,4812305:25952256,786432,0 -(1,20964:6630773,4812305:25952256,513147,126483 -(1,20964:6630773,4812305:25952256,513147,126483 -g1,20964:3078558,4812305 -[1,20964:3078558,4812305:0,0,0 -(1,20964:3078558,2439708:0,1703936,0 -k1,20964:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,20964:2537886,2439708:1179648,16384,0 -) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,20964:3078558,1915420:16384,1179648,0 -) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +(1,20937:6630773,47279633:25952256,0,0 +h1,20937:6630773,47279633:25952256,0,0 ) ] +(1,20937:4262630,4025873:0,0,0 +[1,20937:-473656,4025873:0,0,0 +(1,20937:-473656,-710413:0,0,0 +(1,20937:-473656,-710413:0,0,0 +g1,20937:-473656,-710413 ) +g1,20937:-473656,-710413 ) +] ) ] -[1,20964:3078558,4812305:0,0,0 -(1,20964:3078558,2439708:0,1703936,0 -g1,20964:29030814,2439708 -g1,20964:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,20964:36151628,1915420:16384,1179648,0 +!14182 +}357 +Input:3424:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3425:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3426:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3427:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3428:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3429:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3430:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3431:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!764 +{358 +[1,20966:4262630,47279633:28320399,43253760,0 +(1,20966:4262630,4025873:0,0,0 +[1,20966:-473656,4025873:0,0,0 +(1,20966:-473656,-710413:0,0,0 +(1,20966:-473656,-644877:0,0,0 +k1,20966:-473656,-644877:-65536 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +(1,20966:-473656,4736287:0,0,0 +k1,20966:-473656,4736287:5209943 +) +g1,20966:-473656,-710413 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,20964:37855564,2439708:1179648,16384,0 +[1,20966:6630773,47279633:25952256,43253760,0 +[1,20966:6630773,4812305:25952256,786432,0 +(1,20966:6630773,4812305:25952256,505283,11795 +(1,20966:6630773,4812305:25952256,505283,11795 +g1,20966:3078558,4812305 +[1,20966:3078558,4812305:0,0,0 +(1,20966:3078558,2439708:0,1703936,0 +k1,20966:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,20966:2537886,2439708:1179648,16384,0 ) +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,20966:3078558,1915420:16384,1179648,0 ) -k1,20964:3078556,2439708:-34777008 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] -[1,20964:3078558,4812305:0,0,0 -(1,20964:3078558,49800853:0,16384,2228224 -k1,20964:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,20964:2537886,49800853:1179648,16384,0 -) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,20964:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 -) -] -) -) -) -] -[1,20964:3078558,4812305:0,0,0 -(1,20964:3078558,49800853:0,16384,2228224 -g1,20964:29030814,49800853 -g1,20964:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,20964:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] -) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,20964:37855564,49800853:1179648,16384,0 -) -) -k1,20964:3078556,49800853:-34777008 -) -] -g1,20964:6630773,4812305 -k1,20964:21350816,4812305:13524666 -g1,20964:21999622,4812305 -g1,20964:25611966,4812305 -g1,20964:28956923,4812305 -g1,20964:29772190,4812305 -) -) -] -[1,20964:6630773,45706769:25952256,40108032,0 -(1,20964:6630773,45706769:25952256,40108032,0 -(1,20964:6630773,45706769:0,0,0 -g1,20964:6630773,45706769 -) -[1,20964:6630773,45706769:25952256,40108032,0 -v1,20938:6630773,6254097:0,393216,0 -(1,20938:6630773,27225957:25952256,21365076,0 -g1,20938:6630773,27225957 -g1,20938:6303093,27225957 -r1,20964:6401397,27225957:98304,21365076,0 -g1,20938:6600626,27225957 -g1,20938:6797234,27225957 -[1,20938:6797234,27225957:25785795,21365076,0 -(1,20914:6797234,6374028:25785795,513147,134348 -k1,20913:9009238,6374028:224952 -k1,20913:11898230,6374028:224953 -k1,20913:12782474,6374028:224952 -k1,20913:16009629,6374028:224952 -k1,20913:17431269,6374028:224953 -k1,20913:19467636,6374028:224952 -k1,20913:21678984,6374028:224952 -k1,20913:22435434,6374028:224953 -k1,20913:23016246,6374028:224952 -k1,20913:25936694,6374028:224952 -k1,20913:27555598,6374028:224953 -k1,20913:31391584,6374028:224952 -k1,20913:32583029,6374028:0 -) -(1,20914:6797234,7215516:25785795,513147,126483 -k1,20913:9712384,7215516:319269 -k1,20913:10979305,7215516:319270 -k1,20913:13111300,7215516:319269 -k1,20913:14058405,7215516:319270 -k1,20913:15580915,7215516:319269 -k1,20913:18561602,7215516:319270 -k1,20913:19749223,7215516:319269 -k1,20913:21543707,7215516:319269 -k1,20913:23280521,7215516:319270 -k1,20913:24618875,7215516:319269 -k1,20913:27633641,7215516:319270 -k1,20913:31563944,7215516:319269 -k1,20913:32583029,7215516:0 -) -(1,20914:6797234,8057004:25785795,513147,134348 -k1,20913:8717111,8057004:266404 -k1,20913:9669677,8057004:266404 -k1,20913:11679994,8057004:266404 -k1,20913:13459624,8057004:266404 -k1,20913:14342066,8057004:266404 -k1,20913:17610673,8057004:266404 -k1,20913:19252678,8057004:266404 -k1,20913:21706674,8057004:266404 -k1,20913:22743781,8057004:266404 -k1,20913:26237178,8057004:266404 -k1,20913:29784314,8057004:266404 -k1,20913:31563944,8057004:266404 -k1,20913:32583029,8057004:0 -) -(1,20914:6797234,8898492:25785795,505283,134348 -k1,20913:9467528,8898492:179271 -k1,20913:11133811,8898492:179271 -k1,20913:11964509,8898492:179270 -k1,20913:15244288,8898492:179271 -k1,20913:19632281,8898492:179271 -k1,20913:21002997,8898492:179271 -k1,20913:22911763,8898492:179271 -k1,20913:26355382,8898492:179271 -k1,20913:28419467,8898492:179270 -k1,20913:29427768,8898492:179271 -k1,20913:31336534,8898492:179271 -k1,20914:32583029,8898492:0 -) -(1,20914:6797234,9739980:25785795,513147,134348 -k1,20913:9260968,9739980:232888 -k1,20913:11378672,9739980:232889 -k1,20913:12479912,9739980:232888 -k1,20913:14049735,9739980:232889 -k1,20913:15831239,9739980:232888 -k1,20913:19857352,9739980:232889 -k1,20913:20741668,9739980:232888 -k1,20913:22690290,9739980:232889 -(1,20913:22690290,9739980:0,452978,122846 -r1,20964:27972521,9739980:5282231,575824,122846 -k1,20913:22690290,9739980:-5282231 -) -(1,20913:22690290,9739980:5282231,452978,122846 -k1,20913:22690290,9739980:3277 -h1,20913:27969244,9739980:0,411205,112570 -) -k1,20913:28205409,9739980:232888 -k1,20913:28794158,9739980:232889 -k1,20913:31923737,9739980:232888 -k1,20914:32583029,9739980:0 -) -(1,20914:6797234,10581468:25785795,513147,134348 -(1,20913:6797234,10581468:0,452978,122846 -r1,20964:12079465,10581468:5282231,575824,122846 -k1,20913:6797234,10581468:-5282231 -) -(1,20913:6797234,10581468:5282231,452978,122846 -k1,20913:6797234,10581468:3277 -h1,20913:12076188,10581468:0,411205,112570 -) -g1,20913:12278694,10581468 -g1,20913:15453258,10581468 -g1,20913:18481020,10581468 -k1,20914:32583029,10581468:11390785 -g1,20914:32583029,10581468 -) -v1,20916:6797234,11771934:0,393216,0 -(1,20920:6797234,12087030:25785795,708312,196608 -g1,20920:6797234,12087030 -g1,20920:6797234,12087030 -g1,20920:6600626,12087030 -(1,20920:6600626,12087030:0,708312,196608 -r1,20964:32779637,12087030:26179011,904920,196608 -k1,20920:6600625,12087030:-26179012 -) -(1,20920:6600626,12087030:26179011,708312,196608 -[1,20920:6797234,12087030:25785795,511704,0 -(1,20918:6797234,11979552:25785795,404226,107478 -(1,20917:6797234,11979552:0,0,0 -g1,20917:6797234,11979552 -g1,20917:6797234,11979552 -g1,20917:6469554,11979552 -(1,20917:6469554,11979552:0,0,0 -) -g1,20917:6797234,11979552 -) -g1,20918:11223274,11979552 -g1,20918:12171712,11979552 -h1,20918:16281606,11979552:0,0,0 -k1,20918:32583029,11979552:16301423 -g1,20918:32583029,11979552 -) -] -) -g1,20920:32583029,12087030 -g1,20920:6797234,12087030 -g1,20920:6797234,12087030 -g1,20920:32583029,12087030 -g1,20920:32583029,12087030 -) -h1,20920:6797234,12283638:0,0,0 -(1,20924:6797234,13649414:25785795,513147,126483 -h1,20923:6797234,13649414:983040,0,0 -k1,20923:10243210,13649414:186871 -k1,20923:11298434,13649414:186872 -k1,20923:12577790,13649414:186871 -k1,20923:13783746,13649414:186871 -k1,20923:15253813,13649414:186872 -k1,20923:17427080,13649414:186871 -k1,20923:21320667,13649414:186871 -k1,20923:22123577,13649414:186872 -k1,20923:23329533,13649414:186871 -k1,20923:25169878,13649414:186872 -k1,20923:26594724,13649414:186871 -k1,20923:27467757,13649414:186871 -k1,20923:29398542,13649414:186872 -k1,20923:31966991,13649414:186871 -k1,20923:32583029,13649414:0 -) -(1,20924:6797234,14490902:25785795,505283,134348 -k1,20924:32583029,14490902:22783592 -g1,20924:32583029,14490902 -) -v1,20926:6797234,15681368:0,393216,0 -(1,20930:6797234,15996464:25785795,708312,196608 -g1,20930:6797234,15996464 -g1,20930:6797234,15996464 -g1,20930:6600626,15996464 -(1,20930:6600626,15996464:0,708312,196608 -r1,20964:32779637,15996464:26179011,904920,196608 -k1,20930:6600625,15996464:-26179012 -) -(1,20930:6600626,15996464:26179011,708312,196608 -[1,20930:6797234,15996464:25785795,511704,0 -(1,20928:6797234,15888986:25785795,404226,107478 -(1,20927:6797234,15888986:0,0,0 -g1,20927:6797234,15888986 -g1,20927:6797234,15888986 -g1,20927:6469554,15888986 -(1,20927:6469554,15888986:0,0,0 -) -g1,20927:6797234,15888986 -) -g1,20928:7429526,15888986 -g1,20928:8061818,15888986 -g1,20928:13752441,15888986 -g1,20928:17230044,15888986 -g1,20928:17862336,15888986 -h1,20928:21023793,15888986:0,0,0 -k1,20928:32583029,15888986:11559236 -g1,20928:32583029,15888986 -) -] -) -g1,20930:32583029,15996464 -g1,20930:6797234,15996464 -g1,20930:6797234,15996464 -g1,20930:32583029,15996464 -g1,20930:32583029,15996464 -) -h1,20930:6797234,16193072:0,0,0 -(1,20933:6797234,27225957:25785795,10443061,0 -k1,20933:12728054,27225957:5930820 -h1,20932:12728054,27225957:0,0,0 -(1,20932:12728054,27225957:13924156,10443061,0 -(1,20932:12728054,27225957:13924115,10443087,0 -(1,20932:12728054,27225957:13924115,10443087,0 -(1,20932:12728054,27225957:0,10443087,0 -(1,20932:12728054,27225957:0,14208860,0 -(1,20932:12728054,27225957:18945146,14208860,0 -) -k1,20932:12728054,27225957:-18945146 -) -) -g1,20932:26652169,27225957 -) -) -) -g1,20933:26652210,27225957 -k1,20933:32583029,27225957:5930819 -) -] -g1,20938:32583029,27225957 -) -h1,20938:6630773,27225957:0,0,0 -(1,20943:6630773,30557813:25952256,32768,229376 -(1,20943:6630773,30557813:0,32768,229376 -(1,20943:6630773,30557813:5505024,32768,229376 -r1,20964:12135797,30557813:5505024,262144,229376 -) -k1,20943:6630773,30557813:-5505024 -) -(1,20943:6630773,30557813:25952256,32768,0 -r1,20964:32583029,30557813:25952256,32768,0 -) -) -(1,20943:6630773,32162141:25952256,606339,161218 -(1,20943:6630773,32162141:2464678,582746,14155 -g1,20943:6630773,32162141 -g1,20943:9095451,32162141 -) -g1,20943:13796742,32162141 -k1,20943:32583029,32162141:16814702 -g1,20943:32583029,32162141 -) -(1,20946:6630773,33396845:25952256,513147,134348 -k1,20945:7502009,33396845:243401 -k1,20945:10024096,33396845:243400 -h1,20945:10994684,33396845:0,0,0 -k1,20945:11238085,33396845:243401 -k1,20945:12290855,33396845:243400 -k1,20945:14032409,33396845:243401 -h1,20945:15227786,33396845:0,0,0 -k1,20945:15644856,33396845:243400 -k1,20945:16756609,33396845:243401 -k1,20945:20090032,33396845:243400 -k1,20945:21663814,33396845:243401 -k1,20945:23795962,33396845:243400 -k1,20945:25143645,33396845:243401 -k1,20945:26134811,33396845:243400 -k1,20945:27891438,33396845:243401 -k1,20945:28786267,33396845:243401 -k1,20945:30959047,33396845:243400 -k1,20946:32583029,33396845:0 -) -(1,20946:6630773,34238333:25952256,513147,134348 -k1,20945:9286619,34238333:238223 -k1,20945:10789688,34238333:238224 -k1,20945:11687203,34238333:238223 -k1,20945:14173311,34238333:238223 -k1,20945:16266203,34238333:238223 -k1,20945:17313797,34238333:238224 -k1,20945:17907880,34238333:238223 -k1,20945:20019122,34238333:238223 -k1,20945:21646709,34238333:238224 -k1,20945:22993146,34238333:238223 -k1,20945:25339662,34238333:238223 -k1,20945:29056536,34238333:238223 -k1,20945:30163112,34238333:238224 -k1,20945:31931601,34238333:238223 -k1,20945:32583029,34238333:0 -) -(1,20946:6630773,35079821:25952256,513147,126483 -k1,20945:9794032,35079821:226591 -k1,20945:10376483,35079821:226591 -k1,20945:13902156,35079821:226591 -k1,20945:15406043,35079821:226590 -k1,20945:17200255,35079821:226591 -k1,20945:21185991,35079821:226591 -k1,20945:23762703,35079821:226591 -k1,20945:25770563,35079821:226591 -k1,20945:26474911,35079821:226591 -k1,20945:27858211,35079821:226590 -k1,20945:30229795,35079821:226591 -k1,20945:31107814,35079821:226591 -k1,20945:32583029,35079821:0 -) -(1,20946:6630773,35921309:25952256,513147,134348 -k1,20945:9637728,35921309:198082 -k1,20945:12155130,35921309:198083 -k1,20945:13605605,35921309:198082 -k1,20945:15647871,35921309:198083 -k1,20945:17037398,35921309:198082 -k1,20945:19759927,35921309:198082 -k1,20945:21809402,35921309:198083 -k1,20945:24209494,35921309:198082 -k1,20945:25059005,35921309:198083 -k1,20945:26955125,35921309:198082 -k1,20945:28888601,35921309:198083 -k1,20945:31149101,35921309:198082 -k1,20945:32583029,35921309:0 -) -(1,20946:6630773,36762797:25952256,513147,126483 -g1,20945:7849087,36762797 -g1,20945:9383940,36762797 -g1,20945:10114666,36762797 -g1,20945:11380166,36762797 -g1,20945:12974001,36762797 -g1,20945:13824658,36762797 -g1,20945:16381217,36762797 -g1,20945:19040668,36762797 -g1,20945:20258982,36762797 -g1,20945:21846264,36762797 -g1,20945:22704785,36762797 -g1,20945:25445500,36762797 -k1,20946:32583029,36762797:5382475 -g1,20946:32583029,36762797 -) -(1,20948:6630773,37604285:25952256,513147,134348 -h1,20947:6630773,37604285:983040,0,0 -k1,20947:10449192,37604285:300446 -k1,20947:14416377,37604285:300446 -k1,20947:17007962,37604285:300446 -k1,20947:17664268,37604285:300446 -k1,20947:20089391,37604285:300446 -k1,20947:23292427,37604285:300446 -k1,20947:24540524,37604285:300446 -k1,20947:28324864,37604285:300446 -k1,20947:30232908,37604285:300446 -k1,20947:32583029,37604285:0 -) -(1,20948:6630773,38445773:25952256,513147,134348 -k1,20947:8254006,38445773:229282 -k1,20947:11485491,38445773:229282 -k1,20947:12668322,38445773:229282 -k1,20947:14930531,38445773:229282 -k1,20947:17829094,38445773:229282 -k1,20947:19456259,38445773:229282 -k1,20947:20704626,38445773:229282 -k1,20947:22026392,38445773:229281 -k1,20947:22914966,38445773:229282 -k1,20947:26221163,38445773:229282 -(1,20947:26221163,38445773:0,414482,115847 -r1,20964:26579429,38445773:358266,530329,115847 -k1,20947:26221163,38445773:-358266 -) -(1,20947:26221163,38445773:358266,414482,115847 -k1,20947:26221163,38445773:3277 -h1,20947:26576152,38445773:0,411205,112570 -) -k1,20947:26982381,38445773:229282 -(1,20947:26982381,38445773:0,452978,115847 -r1,20964:27340647,38445773:358266,568825,115847 -k1,20947:26982381,38445773:-358266 -) -(1,20947:26982381,38445773:358266,452978,115847 -k1,20947:26982381,38445773:3277 -h1,20947:27337370,38445773:0,411205,112570 -) -k1,20947:27569929,38445773:229282 -k1,20947:28990656,38445773:229282 -(1,20947:28990656,38445773:0,452978,115847 -r1,20964:29348922,38445773:358266,568825,115847 -k1,20947:28990656,38445773:-358266 -) -(1,20947:28990656,38445773:358266,452978,115847 -k1,20947:28990656,38445773:3277 -h1,20947:29345645,38445773:0,411205,112570 -) -k1,20947:29751874,38445773:229282 -k1,20947:32583029,38445773:0 -) -(1,20948:6630773,39287261:25952256,513147,134348 -k1,20947:10445361,39287261:147849 -k1,20947:13353586,39287261:147849 -k1,20947:16728428,39287261:147849 -k1,20947:18457661,39287261:147849 -k1,20947:19553161,39287261:147849 -k1,20947:22304756,39287261:147850 -k1,20947:25138926,39287261:147849 -k1,20947:27605439,39287261:147849 -k1,20947:28412580,39287261:147849 -k1,20947:30808314,39287261:147849 -k1,20948:32583029,39287261:0 -) -(1,20948:6630773,40128749:25952256,513147,126483 -(1,20947:6630773,40128749:0,414482,115847 -r1,20964:6989039,40128749:358266,530329,115847 -k1,20947:6630773,40128749:-358266 -) -(1,20947:6630773,40128749:358266,414482,115847 -k1,20947:6630773,40128749:3277 -h1,20947:6985762,40128749:0,411205,112570 -) -k1,20947:7224716,40128749:235677 -k1,20947:9472348,40128749:235677 -k1,20947:12470368,40128749:235677 -k1,20947:15198379,40128749:235677 -(1,20947:15198379,40128749:0,452978,115847 -r1,20964:15556645,40128749:358266,568825,115847 -k1,20947:15198379,40128749:-358266 -) -(1,20947:15198379,40128749:358266,452978,115847 -k1,20947:15198379,40128749:3277 -h1,20947:15553368,40128749:0,411205,112570 -) -k1,20947:15792322,40128749:235677 -k1,20947:19199286,40128749:235677 -k1,20947:21509176,40128749:235676 -k1,20947:23044432,40128749:235677 -k1,20947:24041637,40128749:235677 -k1,20947:25750563,40128749:235677 -k1,20947:27177685,40128749:235677 -(1,20947:27177685,40128749:0,452978,115847 -r1,20964:27535951,40128749:358266,568825,115847 -k1,20947:27177685,40128749:-358266 -) -(1,20947:27177685,40128749:358266,452978,115847 -k1,20947:27177685,40128749:3277 -h1,20947:27532674,40128749:0,411205,112570 -) -k1,20947:27771628,40128749:235677 -k1,20947:31178592,40128749:235677 -k1,20948:32583029,40128749:0 -) -(1,20948:6630773,40970237:25952256,513147,134348 -k1,20947:7793300,40970237:279757 -k1,20947:8882427,40970237:279757 -k1,20947:10234352,40970237:279756 -k1,20947:11173401,40970237:279757 -k1,20947:12904780,40970237:279757 -k1,20947:15060177,40970237:279757 -k1,20947:16536621,40970237:279757 -k1,20947:18423976,40970237:279757 -k1,20947:19355160,40970237:279756 -k1,20947:20382683,40970237:279757 -k1,20947:22175666,40970237:279757 -k1,20947:23141585,40970237:279757 -k1,20947:25495556,40970237:279757 -k1,20947:26879594,40970237:279756 -k1,20947:27907117,40970237:279757 -k1,20947:30847636,40970237:279757 -k1,20947:32583029,40970237:0 -) -(1,20948:6630773,41811725:25952256,505283,126483 -k1,20948:32583028,41811725:21924412 -g1,20948:32583028,41811725 -) -(1,20951:6630773,42477903:25952256,505283,134348 -h1,20949:6630773,42477903:983040,0,0 -g1,20949:8766591,42477903 -g1,20949:10454143,42477903 -g1,20949:11414900,42477903 -g1,20949:14186417,42477903 -g1,20949:15577091,42477903 -g1,20949:17809902,42477903 -g1,20949:19663915,42477903 -g1,20949:21644413,42477903 -k1,20951:32583029,42477903:10938616 -g1,20951:32583029,42477903 -) -v1,20951:6630773,43668369:0,393216,0 -(1,20964:6630773,45322113:25952256,2046960,196608 -g1,20964:6630773,45322113 -g1,20964:6630773,45322113 -g1,20964:6434165,45322113 -(1,20964:6434165,45322113:0,2046960,196608 -r1,20964:32779637,45322113:26345472,2243568,196608 -k1,20964:6434165,45322113:-26345472 -) -(1,20964:6434165,45322113:26345472,2046960,196608 -[1,20964:6630773,45322113:25952256,1850352,0 -(1,20953:6630773,43882279:25952256,410518,107478 -(1,20952:6630773,43882279:0,0,0 -g1,20952:6630773,43882279 -g1,20952:6630773,43882279 -g1,20952:6303093,43882279 -(1,20952:6303093,43882279:0,0,0 -) -g1,20952:6630773,43882279 -) -g1,20953:7579210,43882279 -g1,20953:8527648,43882279 -g1,20953:12321397,43882279 -g1,20953:15799000,43882279 -g1,20953:17379729,43882279 -g1,20953:19276603,43882279 -g1,20953:19908895,43882279 -g1,20953:24334935,43882279 -h1,20953:24651081,43882279:0,0,0 -k1,20953:32583029,43882279:7931948 -g1,20953:32583029,43882279 -) -(1,20954:6630773,44548457:25952256,404226,107478 -h1,20954:6630773,44548457:0,0,0 -g1,20954:6946919,44548457 -g1,20954:7263065,44548457 -g1,20954:7579211,44548457 -g1,20954:7895357,44548457 -g1,20954:8211503,44548457 -g1,20954:8527649,44548457 -g1,20954:8843795,44548457 -g1,20954:9159941,44548457 -g1,20954:13269835,44548457 -h1,20954:13585981,44548457:0,0,0 -k1,20954:32583029,44548457:18997048 -g1,20954:32583029,44548457 -) -(1,20955:6630773,45214635:25952256,404226,107478 -h1,20955:6630773,45214635:0,0,0 -g1,20955:6946919,45214635 -g1,20955:7263065,45214635 -g1,20955:7579211,45214635 -g1,20955:7895357,45214635 -g1,20955:8211503,45214635 -g1,20955:8527649,45214635 -g1,20955:8843795,45214635 -g1,20955:9159941,45214635 -g1,20955:16115146,45214635 -g1,20955:16747438,45214635 -h1,20955:18644312,45214635:0,0,0 -k1,20955:32583029,45214635:13938717 -g1,20955:32583029,45214635 -) -] -) -g1,20964:32583029,45322113 -g1,20964:6630773,45322113 -g1,20964:6630773,45322113 -g1,20964:32583029,45322113 -g1,20964:32583029,45322113 -) -] -(1,20964:32583029,45706769:0,0,0 -g1,20964:32583029,45706769 -) -) -] -(1,20964:6630773,47279633:25952256,0,0 -h1,20964:6630773,47279633:25952256,0,0 -) -] -(1,20964:4262630,4025873:0,0,0 -[1,20964:-473656,4025873:0,0,0 -(1,20964:-473656,-710413:0,0,0 -(1,20964:-473656,-710413:0,0,0 -g1,20964:-473656,-710413 -) -g1,20964:-473656,-710413 ) -] ) ] -!19680 -}379 -Input:3432:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3433:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!200 -{380 -[1,21005:4262630,47279633:28320399,43253760,0 -(1,21005:4262630,4025873:0,0,0 -[1,21005:-473656,4025873:0,0,0 -(1,21005:-473656,-710413:0,0,0 -(1,21005:-473656,-644877:0,0,0 -k1,21005:-473656,-644877:-65536 -) -(1,21005:-473656,4736287:0,0,0 -k1,21005:-473656,4736287:5209943 +[1,20966:3078558,4812305:0,0,0 +(1,20966:3078558,2439708:0,1703936,0 +g1,20966:29030814,2439708 +g1,20966:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,20966:36151628,1915420:16384,1179648,0 ) -g1,21005:-473656,-710413 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -[1,21005:6630773,47279633:25952256,43253760,0 -[1,21005:6630773,4812305:25952256,786432,0 -(1,21005:6630773,4812305:25952256,505283,134348 -(1,21005:6630773,4812305:25952256,505283,134348 -g1,21005:3078558,4812305 -[1,21005:3078558,4812305:0,0,0 -(1,21005:3078558,2439708:0,1703936,0 -k1,21005:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,21005:2537886,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,20966:37855564,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,21005:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,20966:3078556,2439708:-34777008 ) ] +[1,20966:3078558,4812305:0,0,0 +(1,20966:3078558,49800853:0,16384,2228224 +k1,20966:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,20966:2537886,49800853:1179648,16384,0 ) +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,20966:3078558,51504789:16384,1179648,0 ) +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] -[1,21005:3078558,4812305:0,0,0 -(1,21005:3078558,2439708:0,1703936,0 -g1,21005:29030814,2439708 -g1,21005:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,21005:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 ) -] -) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,21005:37855564,2439708:1179648,16384,0 ) +] +[1,20966:3078558,4812305:0,0,0 +(1,20966:3078558,49800853:0,16384,2228224 +g1,20966:29030814,49800853 +g1,20966:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,20966:36151628,51504789:16384,1179648,0 ) -k1,21005:3078556,2439708:-34777008 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] -[1,21005:3078558,4812305:0,0,0 -(1,21005:3078558,49800853:0,16384,2228224 -k1,21005:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,21005:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,21005:3078558,51504789:16384,1179648,0 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,20966:37855564,49800853:1179648,16384,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 ) -] -) -) -) -] -[1,21005:3078558,4812305:0,0,0 -(1,21005:3078558,49800853:0,16384,2228224 -g1,21005:29030814,49800853 -g1,21005:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,21005:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] -) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,21005:37855564,49800853:1179648,16384,0 -) -) -k1,21005:3078556,49800853:-34777008 -) -] -g1,21005:6630773,4812305 -g1,21005:6630773,4812305 -g1,21005:10334867,4812305 -g1,21005:12009967,4812305 -k1,21005:31387651,4812305:19377684 -) -) -] -[1,21005:6630773,45706769:25952256,40108032,0 -(1,21005:6630773,45706769:25952256,40108032,0 -(1,21005:6630773,45706769:0,0,0 -g1,21005:6630773,45706769 -) -[1,21005:6630773,45706769:25952256,40108032,0 -v1,20964:6630773,6254097:0,393216,0 -(1,20964:6630773,10572553:25952256,4711672,196608 -g1,20964:6630773,10572553 -g1,20964:6630773,10572553 -g1,20964:6434165,10572553 -(1,20964:6434165,10572553:0,4711672,196608 -r1,21005:32779637,10572553:26345472,4908280,196608 -k1,20964:6434165,10572553:-26345472 -) -(1,20964:6434165,10572553:26345472,4711672,196608 -[1,20964:6630773,10572553:25952256,4515064,0 -(1,20956:6630773,6468007:25952256,410518,107478 -h1,20956:6630773,6468007:0,0,0 -g1,20956:7579210,6468007 -g1,20956:8527648,6468007 -g1,20956:12321397,6468007 -g1,20956:15799000,6468007 -g1,20956:17379729,6468007 -g1,20956:19276603,6468007 -g1,20956:19908895,6468007 -g1,20956:24651080,6468007 -h1,20956:24967226,6468007:0,0,0 -k1,20956:32583029,6468007:7615803 -g1,20956:32583029,6468007 -) -(1,20957:6630773,7134185:25952256,404226,107478 -h1,20957:6630773,7134185:0,0,0 -g1,20957:6946919,7134185 -g1,20957:7263065,7134185 -g1,20957:7579211,7134185 -g1,20957:7895357,7134185 -g1,20957:8211503,7134185 -g1,20957:8527649,7134185 -g1,20957:8843795,7134185 -g1,20957:9159941,7134185 -g1,20957:13269835,7134185 -h1,20957:13585981,7134185:0,0,0 -k1,20957:32583029,7134185:18997048 -g1,20957:32583029,7134185 -) -(1,20958:6630773,7800363:25952256,404226,107478 -h1,20958:6630773,7800363:0,0,0 -g1,20958:6946919,7800363 -g1,20958:7263065,7800363 -g1,20958:7579211,7800363 -g1,20958:7895357,7800363 -g1,20958:8211503,7800363 -g1,20958:8527649,7800363 -g1,20958:8843795,7800363 -g1,20958:9159941,7800363 -g1,20958:16115146,7800363 -g1,20958:16747438,7800363 -h1,20958:18644312,7800363:0,0,0 -k1,20958:32583029,7800363:13938717 -g1,20958:32583029,7800363 -) -(1,20959:6630773,8466541:25952256,410518,107478 -h1,20959:6630773,8466541:0,0,0 -g1,20959:7579210,8466541 -g1,20959:8527648,8466541 -g1,20959:12321397,8466541 -g1,20959:18328166,8466541 -g1,20959:20225040,8466541 -h1,20959:20541186,8466541:0,0,0 -k1,20959:32583029,8466541:12041843 -g1,20959:32583029,8466541 -) -(1,20960:6630773,9132719:25952256,404226,107478 -h1,20960:6630773,9132719:0,0,0 -g1,20960:6946919,9132719 -g1,20960:7263065,9132719 -g1,20960:7579211,9132719 -g1,20960:7895357,9132719 -g1,20960:8211503,9132719 -g1,20960:8527649,9132719 -g1,20960:8843795,9132719 -g1,20960:9159941,9132719 -g1,20960:13269835,9132719 -h1,20960:13585981,9132719:0,0,0 -k1,20960:32583029,9132719:18997048 -g1,20960:32583029,9132719 -) -(1,20961:6630773,9798897:25952256,404226,76021 -h1,20961:6630773,9798897:0,0,0 -g1,20961:6946919,9798897 -g1,20961:7263065,9798897 -g1,20961:7579211,9798897 -g1,20961:7895357,9798897 -g1,20961:8211503,9798897 -g1,20961:8527649,9798897 -g1,20961:8843795,9798897 -g1,20961:9159941,9798897 -g1,20961:14850563,9798897 -h1,20961:15166709,9798897:0,0,0 -k1,20961:32583029,9798897:17416320 -g1,20961:32583029,9798897 -) -(1,20962:6630773,10465075:25952256,404226,107478 -h1,20962:6630773,10465075:0,0,0 -g1,20962:6946919,10465075 -g1,20962:7263065,10465075 -g1,20962:7579211,10465075 -g1,20962:7895357,10465075 -g1,20962:8211503,10465075 -g1,20962:8527649,10465075 -g1,20962:8843795,10465075 -g1,20962:9159941,10465075 -g1,20962:9476087,10465075 -g1,20962:9792233,10465075 -g1,20962:10108379,10465075 -g1,20962:10424525,10465075 -g1,20962:10740671,10465075 -g1,20962:11056817,10465075 -g1,20962:11372963,10465075 -g1,20962:11689109,10465075 -g1,20962:17695877,10465075 -g1,20962:18328169,10465075 -g1,20962:19592752,10465075 -g1,20962:21489626,10465075 -g1,20962:22121918,10465075 -g1,20962:23070356,10465075 -g1,20962:24967230,10465075 -g1,20962:25599522,10465075 -h1,20962:27180250,10465075:0,0,0 -k1,20962:32583029,10465075:5402779 -g1,20962:32583029,10465075 -) -] -) -g1,20964:32583029,10572553 -g1,20964:6630773,10572553 -g1,20964:6630773,10572553 -g1,20964:32583029,10572553 -g1,20964:32583029,10572553 -) -h1,20964:6630773,10769161:0,0,0 -(1,20968:6630773,12132560:25952256,505283,134348 -h1,20967:6630773,12132560:983040,0,0 -k1,20967:9424526,12132560:175590 -k1,20967:10468467,12132560:175589 -k1,20967:13485043,12132560:175590 -k1,20967:14016493,12132560:175590 -k1,20967:15469380,12132560:175590 -k1,20967:17380362,12132560:175589 -k1,20967:18242114,12132560:175590 -k1,20967:20491918,12132560:175590 -k1,20967:21686592,12132560:175589 -k1,20967:23516966,12132560:175590 -k1,20967:25300154,12132560:175590 -k1,20967:27825865,12132560:175590 -k1,20967:29856778,12132560:175589 -k1,20967:31516758,12132560:175590 -k1,20967:32583029,12132560:0 -) -(1,20968:6630773,12974048:25952256,505283,95026 -k1,20968:32583030,12974048:23495968 -g1,20968:32583030,12974048 -) -v1,20972:6630773,14162137:0,393216,0 -(1,20976:6630773,14470942:25952256,702021,196608 -g1,20976:6630773,14470942 -g1,20976:6630773,14470942 -g1,20976:6434165,14470942 -(1,20976:6434165,14470942:0,702021,196608 -r1,21005:32779637,14470942:26345472,898629,196608 -k1,20976:6434165,14470942:-26345472 -) -(1,20976:6434165,14470942:26345472,702021,196608 -[1,20976:6630773,14470942:25952256,505413,0 -(1,20974:6630773,14369755:25952256,404226,101187 -(1,20973:6630773,14369755:0,0,0 -g1,20973:6630773,14369755 -g1,20973:6630773,14369755 -g1,20973:6303093,14369755 -(1,20973:6303093,14369755:0,0,0 -) -g1,20973:6630773,14369755 -) -g1,20974:7895356,14369755 -g1,20974:8527648,14369755 -g1,20974:9792231,14369755 -g1,20974:10424523,14369755 -h1,20974:11056814,14369755:0,0,0 -k1,20974:32583030,14369755:21526216 -g1,20974:32583030,14369755 -) -] -) -g1,20976:32583029,14470942 -g1,20976:6630773,14470942 -g1,20976:6630773,14470942 -g1,20976:32583029,14470942 -g1,20976:32583029,14470942 -) -h1,20976:6630773,14667550:0,0,0 -(1,20980:6630773,16030950:25952256,505283,134348 -h1,20979:6630773,16030950:983040,0,0 -k1,20979:8754140,16030950:186778 -k1,20979:10138260,16030950:186777 -k1,20979:10680898,16030950:186778 -k1,20979:12135141,16030950:186777 -k1,20979:13513364,16030950:186778 -k1,20979:14687113,16030950:186777 -k1,20979:15892976,16030950:186778 -k1,20979:18153967,16030950:186777 -k1,20979:19734696,16030950:186778 -k1,20979:20277334,16030950:186778 -k1,20979:22339751,16030950:186777 -k1,20979:23154364,16030950:186778 -k1,20979:24718052,16030950:186777 -k1,20979:26096275,16030950:186778 -k1,20979:28485062,16030950:186777 -k1,20979:30542893,16030950:186778 -k1,20980:32583029,16030950:0 -) -(1,20980:6630773,16872438:25952256,513147,126483 -g1,20979:8857031,16872438 -g1,20979:10393194,16872438 -g1,20979:11340189,16872438 -g1,20979:13837766,16872438 -g1,20979:14688423,16872438 -g1,20979:16341241,16872438 -g1,20979:17559555,16872438 -g1,20979:20024364,16872438 -g1,20979:23824796,16872438 -g1,20979:24683317,16872438 -g1,20979:25901631,16872438 -g1,20979:26515703,16872438 -k1,20980:32583029,16872438:2816740 -g1,20980:32583029,16872438 -) -v1,20982:6630773,18060527:0,393216,0 -(1,20987:6630773,19041801:25952256,1374490,196608 -g1,20987:6630773,19041801 -g1,20987:6630773,19041801 -g1,20987:6434165,19041801 -(1,20987:6434165,19041801:0,1374490,196608 -r1,21005:32779637,19041801:26345472,1571098,196608 -k1,20987:6434165,19041801:-26345472 -) -(1,20987:6434165,19041801:26345472,1374490,196608 -[1,20987:6630773,19041801:25952256,1177882,0 -(1,20984:6630773,18268145:25952256,404226,101187 -(1,20983:6630773,18268145:0,0,0 -g1,20983:6630773,18268145 -g1,20983:6630773,18268145 -g1,20983:6303093,18268145 -(1,20983:6303093,18268145:0,0,0 -) -g1,20983:6630773,18268145 -) -g1,20984:8211502,18268145 -g1,20984:8843794,18268145 -g1,20984:10108377,18268145 -g1,20984:10740669,18268145 -g1,20984:12005252,18268145 -h1,20984:12321398,18268145:0,0,0 -k1,20984:32583030,18268145:20261632 -g1,20984:32583030,18268145 -) -(1,20985:6630773,18934323:25952256,410518,107478 -h1,20985:6630773,18934323:0,0,0 -g1,20985:6946919,18934323 -g1,20985:7263065,18934323 -g1,20985:7579211,18934323 -g1,20985:14534416,18934323 -g1,20985:15166708,18934323 -g1,20985:17063582,18934323 -g1,20985:18328165,18934323 -g1,20985:19276602,18934323 -g1,20985:20857331,18934323 -g1,20985:24334934,18934323 -g1,20985:27812537,18934323 -g1,20985:28444829,18934323 -h1,20985:29709413,18934323:0,0,0 -k1,20985:32583029,18934323:2873616 -g1,20985:32583029,18934323 -) -] -) -g1,20987:32583029,19041801 -g1,20987:6630773,19041801 -g1,20987:6630773,19041801 -g1,20987:32583029,19041801 -g1,20987:32583029,19041801 -) -h1,20987:6630773,19238409:0,0,0 -(1,20990:6630773,43182305:25952256,23356449,0 -k1,20990:7928465,43182305:1297692 -h1,20989:7928465,43182305:0,0,0 -(1,20989:7928465,43182305:23356872,23356449,0 -(1,20989:7928465,43182305:23356506,23356506,0 -(1,20989:7928465,43182305:23356506,23356506,0 -(1,20989:7928465,43182305:0,23356506,0 -(1,20989:7928465,43182305:0,37890292,0 -(1,20989:7928465,43182305:37890292,37890292,0 -) -k1,20989:7928465,43182305:-37890292 -) -) -g1,20989:31284971,43182305 -) -) -) -g1,20990:31285337,43182305 -k1,20990:32583029,43182305:1297692 -) -(1,21000:6630773,44023793:25952256,513147,134348 -h1,20998:6630773,44023793:983040,0,0 -k1,20998:10296803,44023793:148057 -k1,20998:14111598,44023793:148056 -k1,20998:15360660,44023793:148057 -k1,20998:16124754,44023793:148056 -k1,20998:18261173,44023793:148057 -k1,20998:21073268,44023793:148056 -k1,20998:22802709,44023793:148057 -k1,20998:23898417,44023793:148057 -k1,20998:25065558,44023793:148056 -k1,20998:27806219,44023793:148057 -k1,20998:28613567,44023793:148056 -k1,20998:31447945,44023793:148057 -k1,21000:32583029,44023793:0 -) -(1,21000:6630773,44865281:25952256,513147,134348 -k1,20998:8390465,44865281:189449 -k1,20998:11245920,44865281:189450 -k1,20998:12094661,44865281:189449 -k1,20998:14164994,44865281:189450 -k1,20998:15545888,44865281:189449 -k1,20998:19090125,44865281:189449 -k1,20998:19895613,44865281:189450 -k1,20998:21104147,44865281:189449 -k1,20998:22947069,44865281:189449 -k1,20998:25124881,44865281:189450 -k1,20998:26921928,44865281:189449 -k1,20998:28302823,44865281:189450 -k1,20998:30194242,44865281:189449 -k1,20998:32583029,44865281:0 -) -(1,21000:6630773,45706769:25952256,505283,134348 -g1,20998:9119830,45706769 -g1,20998:10812625,45706769 -g1,20998:11698016,45706769 -g1,20998:14482640,45706769 -g1,20998:16175435,45706769 -g1,20998:17060826,45706769 -g1,20998:21325909,45706769 -g1,20998:22716583,45706769 -g1,20998:24382508,45706769 -g1,20998:26651364,45706769 -k1,21000:32583029,45706769:5931665 -g1,21000:32583029,45706769 -) -] -(1,21005:32583029,45706769:0,0,0 -g1,21005:32583029,45706769 -) -) -] -(1,21005:6630773,47279633:25952256,0,0 -h1,21005:6630773,47279633:25952256,0,0 -) -] -(1,21005:4262630,4025873:0,0,0 -[1,21005:-473656,4025873:0,0,0 -(1,21005:-473656,-710413:0,0,0 -(1,21005:-473656,-710413:0,0,0 -g1,21005:-473656,-710413 -) -g1,21005:-473656,-710413 -) -] +k1,20966:3078556,49800853:-34777008 ) -] -!13446 -}380 +] +g1,20966:6630773,4812305 +g1,20966:6630773,4812305 +g1,20966:9264009,4812305 +k1,20966:31387653,4812305:22123644 +) +) +] +[1,20966:6630773,45706769:25952256,40108032,0 +(1,20966:6630773,45706769:25952256,40108032,0 +(1,20966:6630773,45706769:0,0,0 +g1,20966:6630773,45706769 +) +[1,20966:6630773,45706769:25952256,40108032,0 +(1,20933:6630773,6254097:25952256,32768,229376 +(1,20933:6630773,6254097:0,32768,229376 +(1,20933:6630773,6254097:5505024,32768,229376 +r1,20966:12135797,6254097:5505024,262144,229376 +) +k1,20933:6630773,6254097:-5505024 +) +(1,20933:6630773,6254097:25952256,32768,0 +r1,20966:32583029,6254097:25952256,32768,0 +) +) +(1,20933:6630773,7885949:25952256,606339,14155 +(1,20933:6630773,7885949:2464678,582746,14155 +g1,20933:6630773,7885949 +g1,20933:9095451,7885949 +) +k1,20933:32583030,7885949:20355220 +g1,20933:32583030,7885949 +) +(1,20937:6630773,9144245:25952256,513147,134348 +k1,20936:7528562,9144245:269954 +k1,20936:10800718,9144245:269953 +k1,20936:13325766,9144245:269954 +k1,20936:14587280,9144245:269954 +k1,20936:15876318,9144245:269953 +k1,20936:19451253,9144245:269954 +k1,20936:20380499,9144245:269954 +k1,20936:22151226,9144245:269953 +k1,20936:24621879,9144245:269954 +k1,20936:26449624,9144245:269954 +k1,20936:29963609,9144245:269953 +k1,20936:31563944,9144245:269954 +k1,20936:32583029,9144245:0 +) +(1,20937:6630773,10009325:25952256,513147,126483 +k1,20936:9652739,10009325:259623 +k1,20936:12781529,10009325:259624 +k1,20936:13700444,10009325:259623 +k1,20936:14315928,10009325:259624 +k1,20936:15852848,10009325:259623 +k1,20936:17104031,10009325:259623 +k1,20936:20238719,10009325:259624 +k1,20936:22196380,10009325:259623 +k1,20936:25692826,10009325:259623 +k1,20936:28302571,10009325:259624 +k1,20936:29245079,10009325:259623 +k1,20936:31316118,10009325:259624 +k1,20936:32227169,10009325:259623 +k1,20936:32583029,10009325:0 +) +(1,20937:6630773,10874405:25952256,513147,126483 +k1,20936:8041435,10874405:253952 +k1,20936:10752332,10874405:253952 +k1,20936:11821552,10874405:253952 +k1,20936:13141774,10874405:253951 +k1,20936:14849315,10874405:253952 +k1,20936:16651883,10874405:253952 +k1,20936:20080399,10874405:253952 +k1,20936:21017236,10874405:253952 +k1,20936:23173698,10874405:253952 +k1,20936:24419210,10874405:253952 +k1,20936:26186387,10874405:253951 +k1,20936:27091767,10874405:253952 +k1,20936:28623016,10874405:253952 +k1,20936:29896053,10874405:253952 +k1,20937:32583029,10874405:0 +) +(1,20937:6630773,11739485:25952256,505283,134348 +k1,20936:8487146,11739485:258605 +k1,20936:9428636,11739485:258605 +k1,20936:13369054,11739485:258605 +k1,20936:14699828,11739485:258605 +k1,20936:17285616,11739485:258605 +k1,20936:18874601,11739485:258604 +k1,20936:22590230,11739485:258605 +k1,20936:24620273,11739485:258605 +k1,20936:26451087,11739485:258605 +k1,20936:28498170,11739485:258605 +k1,20936:32583029,11739485:0 +) +(1,20937:6630773,12604565:25952256,513147,134348 +k1,20936:10589366,12604565:168646 +k1,20936:11949457,12604565:168646 +k1,20936:13576278,12604565:168645 +k1,20936:15030085,12604565:168646 +k1,20936:16190291,12604565:168646 +k1,20936:19564303,12604565:168646 +k1,20936:20924394,12604565:168646 +k1,20936:21559001,12604565:168646 +k1,20936:24790799,12604565:168645 +k1,20936:25642330,12604565:168646 +k1,20936:27050917,12604565:168646 +k1,20936:29754496,12604565:168646 +k1,20936:32583029,12604565:0 +) +(1,20937:6630773,13469645:25952256,513147,126483 +k1,20936:9486905,13469645:188161 +k1,20936:11906567,13469645:188161 +k1,20936:15532746,13469645:188160 +k1,20936:17664705,13469645:188161 +k1,20936:21732598,13469645:188161 +k1,20936:24415059,13469645:188161 +k1,20936:27693242,13469645:188160 +k1,20936:28567565,13469645:188161 +k1,20936:31391584,13469645:188161 +k1,20936:32583029,13469645:0 +) +(1,20937:6630773,14334725:25952256,513147,134348 +k1,20936:11460940,14334725:257065 +k1,20936:14979076,14334725:257065 +k1,20936:18308469,14334725:257065 +k1,20936:21475987,14334725:257064 +k1,20936:23693889,14334725:257065 +k1,20936:27177947,14334725:257065 +k1,20936:29095694,14334725:257065 +k1,20936:31227089,14334725:257065 +k1,20937:32583029,14334725:0 +) +(1,20937:6630773,15199805:25952256,505283,126483 +k1,20936:9708835,15199805:183992 +k1,20936:11903472,15199805:183992 +k1,20936:15012991,15199805:183992 +k1,20936:17687352,15199805:183993 +k1,20936:19756815,15199805:183992 +k1,20936:21638845,15199805:183992 +k1,20936:23788262,15199805:183992 +k1,20936:24623682,15199805:183992 +k1,20936:25163534,15199805:183992 +k1,20936:26798494,15199805:183993 +k1,20936:29280834,15199805:183992 +k1,20936:30596633,15199805:183992 +k1,20936:32583029,15199805:0 +) +(1,20937:6630773,16064885:25952256,505283,134348 +k1,20936:9216227,16064885:251062 +k1,20936:11873117,16064885:251063 +k1,20936:12740217,16064885:251062 +k1,20936:15047800,16064885:251063 +k1,20936:15926697,16064885:251062 +k1,20936:18843765,16064885:251063 +k1,20936:19746255,16064885:251062 +k1,20936:22855343,16064885:251063 +k1,20936:25265816,16064885:251062 +k1,20936:27213606,16064885:251063 +k1,20936:29799060,16064885:251062 +k1,20936:32583029,16064885:0 +) +(1,20937:6630773,16929965:25952256,513147,134348 +k1,20936:9622492,16929965:187433 +k1,20936:12215751,16929965:187433 +k1,20936:14114328,16929965:187432 +k1,20936:15406043,16929965:187433 +k1,20936:17855779,16929965:187433 +k1,20936:19062297,16929965:187433 +k1,20936:20736742,16929965:187433 +k1,20936:23258567,16929965:187433 +k1,20936:25851826,16929965:187432 +k1,20936:26800787,16929965:187433 +k1,20936:29175812,16929965:187433 +k1,20936:32583029,16929965:0 +) +(1,20937:6630773,17795045:25952256,505283,126483 +k1,20936:9072364,17795045:186497 +k1,20936:9910288,17795045:186496 +k1,20936:10452645,17795045:186497 +k1,20936:12090108,17795045:186496 +k1,20936:14059840,17795045:186497 +k1,20936:15759562,17795045:186496 +k1,20936:16562097,17795045:186497 +k1,20936:17951835,17795045:186497 +k1,20936:19549977,17795045:186496 +k1,20936:23143691,17795045:186497 +k1,20936:25585281,17795045:186496 +k1,20936:28058985,17795045:186497 +k1,20936:29237041,17795045:186496 +k1,20936:31773659,17795045:186497 +k1,20936:32583029,17795045:0 +) +(1,20937:6630773,18660125:25952256,513147,126483 +k1,20936:7875907,18660125:226049 +k1,20936:9071232,18660125:226048 +k1,20936:9767174,18660125:226049 +k1,20936:10524720,18660125:226049 +k1,20936:12036584,18660125:226048 +k1,20936:14892593,18660125:226049 +k1,20936:15770070,18660125:226049 +k1,20936:17925499,18660125:226049 +k1,20936:19434742,18660125:226048 +k1,20936:21647187,18660125:226049 +k1,20936:25910254,18660125:226049 +k1,20936:27420808,18660125:226048 +k1,20936:29657502,18660125:226049 +k1,20936:32583029,18660125:0 +) +(1,20937:6630773,19525205:25952256,513147,134348 +g1,20936:9320370,19525205 +g1,20936:11721609,19525205 +g1,20936:12572266,19525205 +(1,20936:12572266,19525205:0,452978,122846 +r1,20966:16799362,19525205:4227096,575824,122846 +k1,20936:12572266,19525205:-4227096 +) +(1,20936:12572266,19525205:4227096,452978,122846 +k1,20936:12572266,19525205:3277 +h1,20936:16796085,19525205:0,411205,112570 +) +g1,20936:16998591,19525205 +g1,20936:18765441,19525205 +k1,20937:32583029,19525205:10815385 +g1,20937:32583029,19525205 +) +(1,20938:6630773,21642023:25952256,555811,139132 +(1,20938:6630773,21642023:2899444,534184,12975 +g1,20938:6630773,21642023 +g1,20938:9530217,21642023 +) +g1,20938:13204624,21642023 +k1,20938:32583029,21642023:16741367 +g1,20938:32583029,21642023 +) +(1,20941:6630773,22900319:25952256,513147,134348 +k1,20940:8064221,22900319:236761 +k1,20940:10287379,22900319:236762 +k1,20940:12037366,22900319:236761 +k1,20940:13035656,22900319:236762 +k1,20940:15537997,22900319:236761 +k1,20940:16306256,22900319:236762 +(1,20940:16306256,22900319:0,452978,122846 +r1,20966:20533352,22900319:4227096,575824,122846 +k1,20940:16306256,22900319:-4227096 +) +(1,20940:16306256,22900319:4227096,452978,122846 +k1,20940:16306256,22900319:3277 +h1,20940:20530075,22900319:0,411205,112570 +) +k1,20940:20770113,22900319:236761 +k1,20940:22400826,22900319:236762 +k1,20940:24903167,22900319:236761 +k1,20940:28716229,22900319:236762 +k1,20940:29580825,22900319:236761 +k1,20940:32583029,22900319:0 +) +(1,20941:6630773,23765399:25952256,513147,126483 +k1,20940:10310911,23765399:242119 +k1,20940:12869728,23765399:242119 +k1,20940:14103407,23765399:242119 +k1,20940:16727104,23765399:242119 +k1,20940:17655384,23765399:242118 +k1,20940:21604219,23765399:242119 +k1,20940:25045806,23765399:242119 +k1,20940:26681876,23765399:242119 +k1,20940:30708699,23765399:242119 +k1,20940:32583029,23765399:0 +) +(1,20941:6630773,24630479:25952256,513147,134348 +k1,20940:10534292,24630479:292485 +k1,20940:12508431,24630479:292485 +k1,20940:15684501,24630479:292486 +k1,20940:17669126,24630479:292485 +k1,20940:19995849,24630479:292485 +k1,20940:23757810,24630479:292485 +k1,20940:25246982,24630479:292485 +(1,20940:25246982,24630479:0,452978,115847 +r1,20966:28418942,24630479:3171960,568825,115847 +k1,20940:25246982,24630479:-3171960 +) +(1,20940:25246982,24630479:3171960,452978,115847 +k1,20940:25246982,24630479:3277 +h1,20940:28415665,24630479:0,411205,112570 +) +k1,20940:28711428,24630479:292486 +k1,20940:29951564,24630479:292485 +k1,20940:31470228,24630479:292485 +k1,20941:32583029,24630479:0 +) +(1,20941:6630773,25495559:25952256,513147,134348 +k1,20940:8839437,25495559:239307 +k1,20940:12339815,25495559:239307 +k1,20940:13110619,25495559:239307 +k1,20940:15044688,25495559:239308 +k1,20940:15900033,25495559:239307 +k1,20940:18331519,25495559:239307 +k1,20940:19762271,25495559:239307 +k1,20940:22111182,25495559:239307 +k1,20940:23116605,25495559:239307 +k1,20940:24582092,25495559:239308 +k1,20940:27690565,25495559:239307 +k1,20940:28545910,25495559:239307 +k1,20940:29804302,25495559:239307 +k1,20940:32583029,25495559:0 +) +(1,20941:6630773,26360639:25952256,513147,134348 +k1,20940:8891250,26360639:274081 +k1,20940:11124857,26360639:274081 +k1,20940:12085100,26360639:274081 +k1,20940:13378266,26360639:274081 +k1,20940:14921124,26360639:274081 +k1,20940:15854497,26360639:274081 +k1,20940:17825305,26360639:274081 +k1,20940:20968551,26360639:274080 +k1,20940:21774129,26360639:274081 +k1,20940:22809738,26360639:274081 +k1,20940:25349399,26360639:274081 +k1,20940:28005058,26360639:274081 +k1,20940:30638435,26360639:274081 +k1,20940:31563944,26360639:274081 +k1,20940:32583029,26360639:0 +) +(1,20941:6630773,27225719:25952256,513147,126483 +k1,20940:8249383,27225719:184682 +k1,20940:9876512,27225719:184682 +k1,20940:12665595,27225719:184682 +k1,20940:16304681,27225719:184683 +(1,20940:16304681,27225719:0,459977,115847 +r1,20966:20180065,27225719:3875384,575824,115847 +k1,20940:16304681,27225719:-3875384 +) +(1,20940:16304681,27225719:3875384,459977,115847 +k1,20940:16304681,27225719:3277 +h1,20940:20176788,27225719:0,411205,112570 +) +k1,20940:20538417,27225719:184682 +k1,20940:22735054,27225719:184682 +k1,20940:23938821,27225719:184682 +k1,20940:25454539,27225719:184682 +k1,20940:27647244,27225719:184682 +k1,20940:28483355,27225719:184683 +k1,20940:29415803,27225719:184682 +k1,20940:30708699,27225719:184682 +k1,20940:32583029,27225719:0 +) +(1,20941:6630773,28090799:25952256,513147,126483 +g1,20940:9855799,28090799 +g1,20940:12065673,28090799 +g1,20940:15190429,28090799 +k1,20941:32583029,28090799:14902232 +g1,20941:32583029,28090799 +) +v1,20943:6630773,28955879:0,393216,0 +(1,20944:6630773,34634019:25952256,6071356,0 +g1,20944:6630773,34634019 +g1,20944:6237557,34634019 +r1,20966:6368629,34634019:131072,6071356,0 +g1,20944:6567858,34634019 +g1,20944:6764466,34634019 +[1,20944:6764466,34634019:25818563,6071356,0 +(1,20944:6764466,29317056:25818563,754393,260573 +(1,20943:6764466,29317056:0,754393,260573 +r1,20966:8010564,29317056:1246098,1014966,260573 +k1,20943:6764466,29317056:-1246098 +) +(1,20943:6764466,29317056:1246098,754393,260573 +) +k1,20943:8203270,29317056:192706 +k1,20943:8530950,29317056:327680 +k1,20943:11180601,29317056:192706 +k1,20943:12848523,29317056:192707 +k1,20943:13850599,29317056:192706 +k1,20943:15814088,29317056:192706 +k1,20943:16816164,29317056:192706 +k1,20943:18896963,29317056:192707 +k1,20943:22130540,29317056:192706 +k1,20943:23084774,29317056:192706 +k1,20943:26717465,29317056:192706 +k1,20943:27596334,29317056:192707 +k1,20943:30105738,29317056:192706 +k1,20943:31773659,29317056:192706 +k1,20943:32583029,29317056:0 +) +(1,20944:6764466,30182136:25818563,513147,134348 +k1,20943:8741229,30182136:205980 +k1,20943:9756578,30182136:205979 +k1,20943:13236081,30182136:205980 +k1,20943:15288211,30182136:205980 +k1,20943:16177075,30182136:205979 +k1,20943:19598251,30182136:205980 +k1,20943:20432065,30182136:205979 +k1,20943:21657130,30182136:205980 +k1,20943:23601125,30182136:205980 +(1,20943:23601125,30182136:0,452978,115847 +r1,20966:27124797,30182136:3523672,568825,115847 +k1,20943:23601125,30182136:-3523672 +) +(1,20943:23601125,30182136:3523672,452978,115847 +k1,20943:23601125,30182136:3277 +h1,20943:27121520,30182136:0,411205,112570 +) +k1,20943:27330776,30182136:205979 +k1,20943:30841737,30182136:205980 +k1,20943:32583029,30182136:0 +) +(1,20944:6764466,31047216:25818563,513147,134348 +k1,20943:8796614,31047216:165683 +k1,20943:9613725,31047216:165683 +k1,20943:10798493,31047216:165683 +k1,20943:12580294,31047216:165683 +k1,20943:13405270,31047216:165684 +k1,20943:14590038,31047216:165683 +k1,20943:18545668,31047216:165683 +k1,20943:19370643,31047216:165683 +k1,20943:20555411,31047216:165683 +k1,20943:23245541,31047216:165683 +k1,20943:24758644,31047216:165683 +k1,20943:26115772,31047216:165683 +k1,20943:28299310,31047216:165684 +k1,20943:28942750,31047216:165683 +k1,20943:30127518,31047216:165683 +k1,20943:31900144,31047216:165683 +k1,20943:32583029,31047216:0 +) +(1,20944:6764466,31912296:25818563,513147,134348 +k1,20943:7779968,31912296:174675 +k1,20943:11019108,31912296:174676 +k1,20943:12185343,31912296:174675 +k1,20943:14945413,31912296:174675 +k1,20943:15802973,31912296:174675 +k1,20943:16912192,31912296:174676 +k1,20943:17738295,31912296:174675 +k1,20943:18268830,31912296:174675 +k1,20943:21201260,31912296:174675 +k1,20943:21991974,31912296:174676 +k1,20943:23185734,31912296:174675 +k1,20943:25389404,31912296:174675 +k1,20943:27260806,31912296:174675 +k1,20943:28567944,31912296:174676 +k1,20943:29490385,31912296:174675 +k1,20943:32583029,31912296:0 +) +(1,20944:6764466,32777376:25818563,513147,134348 +k1,20943:10671504,32777376:187215 +k1,20943:11518010,32777376:187214 +k1,20943:12724310,32777376:187215 +k1,20943:15071592,32777376:187215 +k1,20943:16212355,32777376:187214 +k1,20943:18570122,32777376:187215 +k1,20943:21150056,32777376:187215 +k1,20943:21693130,32777376:187214 +k1,20943:23496463,32777376:187215 +k1,20943:25539002,32777376:187215 +k1,20943:26993682,32777376:187214 +k1,20943:27536757,32777376:187215 +k1,20943:32583029,32777376:0 +) +(1,20944:6764466,33642456:25818563,513147,134348 +k1,20943:8157106,33642456:235930 +k1,20943:9154563,33642456:235929 +k1,20943:11578085,33642456:235930 +k1,20943:12169874,33642456:235929 +k1,20943:14523272,33642456:235930 +k1,20943:15627553,33642456:235929 +k1,20943:17393749,33642456:235930 +k1,20943:18281107,33642456:235930 +k1,20943:20757712,33642456:235929 +k1,20943:22012727,33642456:235930 +k1,20943:25313120,33642456:235929 +k1,20943:27235947,33642456:235930 +k1,20943:28419527,33642456:235929 +k1,20943:31490544,33642456:235930 +k1,20944:32583029,33642456:0 +) +(1,20944:6764466,34507536:25818563,513147,126483 +(1,20943:6764466,34507536:0,452978,115847 +r1,20966:8529579,34507536:1765113,568825,115847 +k1,20943:6764466,34507536:-1765113 +) +(1,20943:6764466,34507536:1765113,452978,115847 +k1,20943:6764466,34507536:3277 +h1,20943:8526302,34507536:0,411205,112570 +) +g1,20943:8728808,34507536 +g1,20943:11255220,34507536 +g1,20943:12121605,34507536 +(1,20943:12121605,34507536:0,452978,115847 +r1,20966:13886718,34507536:1765113,568825,115847 +k1,20943:12121605,34507536:-1765113 +) +(1,20943:12121605,34507536:1765113,452978,115847 +k1,20943:12121605,34507536:3277 +h1,20943:13883441,34507536:0,411205,112570 +) +g1,20943:14085947,34507536 +g1,20943:15232827,34507536 +g1,20943:15787916,34507536 +g1,20943:17544936,34507536 +g1,20943:19709590,34507536 +g1,20943:21302770,34507536 +(1,20943:21302770,34507536:0,452978,122846 +r1,20966:25529866,34507536:4227096,575824,122846 +k1,20943:21302770,34507536:-4227096 +) +(1,20943:21302770,34507536:4227096,452978,122846 +k1,20943:21302770,34507536:3277 +h1,20943:25526589,34507536:0,411205,112570 +) +k1,20944:32583029,34507536:6879493 +g1,20944:32583029,34507536 +) +] +g1,20944:32583029,34634019 +) +h1,20944:6630773,34634019:0,0,0 +(1,20947:6630773,35499099:25952256,513147,134348 +h1,20946:6630773,35499099:983040,0,0 +k1,20946:9266770,35499099:162668 +k1,20946:10448523,35499099:162668 +k1,20946:12876771,35499099:162668 +(1,20946:12876771,35499099:0,452978,122846 +r1,20966:17103867,35499099:4227096,575824,122846 +k1,20946:12876771,35499099:-4227096 +) +(1,20946:12876771,35499099:4227096,452978,122846 +k1,20946:12876771,35499099:3277 +h1,20946:17100590,35499099:0,411205,112570 +) +k1,20946:17266534,35499099:162667 +k1,20946:18533484,35499099:162668 +k1,20946:19443918,35499099:162668 +k1,20946:21572011,35499099:162668 +k1,20946:22386107,35499099:162668 +k1,20946:22904635,35499099:162668 +k1,20946:24518270,35499099:162668 +k1,20946:25332365,35499099:162667 +k1,20946:27757336,35499099:162668 +k1,20946:28551771,35499099:162668 +k1,20946:29180400,35499099:162668 +k1,20946:32583029,35499099:0 +) +(1,20947:6630773,36364179:25952256,513147,126483 +k1,20946:9620979,36364179:227863 +k1,20946:10500271,36364179:227864 +k1,20946:11747219,36364179:227863 +k1,20946:14570964,36364179:227864 +k1,20946:15790387,36364179:227863 +k1,20946:18223538,36364179:227864 +k1,20946:20149439,36364179:227863 +k1,20946:22418749,36364179:227864 +k1,20946:23274447,36364179:227863 +k1,20946:24705552,36364179:227864 +k1,20946:27594832,36364179:227863 +k1,20946:28691048,36364179:227864 +k1,20946:31563944,36364179:227863 +k1,20946:32583029,36364179:0 +) +(1,20947:6630773,37229259:25952256,513147,134348 +k1,20946:9138508,37229259:242155 +k1,20946:10814592,37229259:242156 +k1,20946:12325524,37229259:242155 +k1,20946:13961631,37229259:242156 +k1,20946:14559646,37229259:242155 +k1,20946:16661058,37229259:242156 +k1,20946:18059923,37229259:242155 +k1,20946:19493523,37229259:242155 +k1,20946:20754764,37229259:242156 +k1,20946:23262499,37229259:242155 +k1,20946:26580915,37229259:242156 +k1,20946:28154106,37229259:242155 +k1,20946:29790213,37229259:242156 +k1,20946:31189078,37229259:242155 +k1,20946:32583029,37229259:0 +) +(1,20947:6630773,38094339:25952256,513147,7863 +k1,20947:32583029,38094339:24016322 +g1,20947:32583029,38094339 +) +v1,20949:6630773,38779194:0,393216,0 +(1,20956:6630773,41174442:25952256,2788464,196608 +g1,20956:6630773,41174442 +g1,20956:6630773,41174442 +g1,20956:6434165,41174442 +(1,20956:6434165,41174442:0,2788464,196608 +r1,20966:32779637,41174442:26345472,2985072,196608 +k1,20956:6434165,41174442:-26345472 +) +(1,20956:6434165,41174442:26345472,2788464,196608 +[1,20956:6630773,41174442:25952256,2591856,0 +(1,20951:6630773,39013631:25952256,431045,112852 +(1,20950:6630773,39013631:0,0,0 +g1,20950:6630773,39013631 +g1,20950:6630773,39013631 +g1,20950:6303093,39013631 +(1,20950:6303093,39013631:0,0,0 +) +g1,20950:6630773,39013631 +) +k1,20951:6630773,39013631:0 +g1,20951:12937898,39013631 +g1,20951:15261576,39013631 +g1,20951:16589392,39013631 +h1,20951:16921346,39013631:0,0,0 +k1,20951:32583029,39013631:15661683 +g1,20951:32583029,39013631 +) +(1,20952:6630773,39698486:25952256,424439,112852 +h1,20952:6630773,39698486:0,0,0 +g1,20952:6962727,39698486 +g1,20952:7294681,39698486 +g1,20952:11610082,39698486 +h1,20952:11942036,39698486:0,0,0 +k1,20952:32583028,39698486:20640992 +g1,20952:32583028,39698486 +) +(1,20953:6630773,40383341:25952256,424439,112852 +h1,20953:6630773,40383341:0,0,0 +g1,20953:6962727,40383341 +g1,20953:7294681,40383341 +g1,20953:14265713,40383341 +g1,20953:14929621,40383341 +k1,20953:14929621,40383341:0 +h1,20953:15925483,40383341:0,0,0 +k1,20953:32583029,40383341:16657546 +g1,20953:32583029,40383341 +) +(1,20954:6630773,41068196:25952256,431045,106246 +h1,20954:6630773,41068196:0,0,0 +g1,20954:6962727,41068196 +g1,20954:7294681,41068196 +g1,20954:7626635,41068196 +g1,20954:7958589,41068196 +g1,20954:8290543,41068196 +g1,20954:8622497,41068196 +g1,20954:8954451,41068196 +g1,20954:9286405,41068196 +g1,20954:9618359,41068196 +g1,20954:9950313,41068196 +g1,20954:10282267,41068196 +g1,20954:10614221,41068196 +g1,20954:10946175,41068196 +g1,20954:14929622,41068196 +g1,20954:15593530,41068196 +h1,20954:18249162,41068196:0,0,0 +k1,20954:32583029,41068196:14333867 +g1,20954:32583029,41068196 +) +] +) +g1,20956:32583029,41174442 +g1,20956:6630773,41174442 +g1,20956:6630773,41174442 +g1,20956:32583029,41174442 +g1,20956:32583029,41174442 +) +h1,20956:6630773,41371050:0,0,0 +] +(1,20966:32583029,45706769:0,0,0 +g1,20966:32583029,45706769 +) +) +] +(1,20966:6630773,47279633:25952256,0,0 +h1,20966:6630773,47279633:25952256,0,0 +) +] +(1,20966:4262630,4025873:0,0,0 +[1,20966:-473656,4025873:0,0,0 +(1,20966:-473656,-710413:0,0,0 +(1,20966:-473656,-710413:0,0,0 +g1,20966:-473656,-710413 +) +g1,20966:-473656,-710413 +) +] +) +] +!23518 +}358 +Input:3432:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3433:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3434:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3435:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3436:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -359748,992 +355052,861 @@ Input:3444:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConso Input:3445:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3446:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3447:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1328 -{381 -[1,21032:4262630,47279633:28320399,43253760,0 -(1,21032:4262630,4025873:0,0,0 -[1,21032:-473656,4025873:0,0,0 -(1,21032:-473656,-710413:0,0,0 -(1,21032:-473656,-644877:0,0,0 -k1,21032:-473656,-644877:-65536 +!1516 +{359 +[1,21008:4262630,47279633:28320399,43253760,0 +(1,21008:4262630,4025873:0,0,0 +[1,21008:-473656,4025873:0,0,0 +(1,21008:-473656,-710413:0,0,0 +(1,21008:-473656,-644877:0,0,0 +k1,21008:-473656,-644877:-65536 ) -(1,21032:-473656,4736287:0,0,0 -k1,21032:-473656,4736287:5209943 +(1,21008:-473656,4736287:0,0,0 +k1,21008:-473656,4736287:5209943 ) -g1,21032:-473656,-710413 +g1,21008:-473656,-710413 ) ] ) -[1,21032:6630773,47279633:25952256,43253760,0 -[1,21032:6630773,4812305:25952256,786432,0 -(1,21032:6630773,4812305:25952256,513147,126483 -(1,21032:6630773,4812305:25952256,513147,126483 -g1,21032:3078558,4812305 -[1,21032:3078558,4812305:0,0,0 -(1,21032:3078558,2439708:0,1703936,0 -k1,21032:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,21032:2537886,2439708:1179648,16384,0 +[1,21008:6630773,47279633:25952256,43253760,0 +[1,21008:6630773,4812305:25952256,786432,0 +(1,21008:6630773,4812305:25952256,513147,126483 +(1,21008:6630773,4812305:25952256,513147,126483 +g1,21008:3078558,4812305 +[1,21008:3078558,4812305:0,0,0 +(1,21008:3078558,2439708:0,1703936,0 +k1,21008:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,21008:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,21032:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,21008:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,21032:3078558,4812305:0,0,0 -(1,21032:3078558,2439708:0,1703936,0 -g1,21032:29030814,2439708 -g1,21032:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,21032:36151628,1915420:16384,1179648,0 +[1,21008:3078558,4812305:0,0,0 +(1,21008:3078558,2439708:0,1703936,0 +g1,21008:29030814,2439708 +g1,21008:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,21008:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,21032:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,21008:37855564,2439708:1179648,16384,0 ) ) -k1,21032:3078556,2439708:-34777008 +k1,21008:3078556,2439708:-34777008 ) ] -[1,21032:3078558,4812305:0,0,0 -(1,21032:3078558,49800853:0,16384,2228224 -k1,21032:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,21032:2537886,49800853:1179648,16384,0 +[1,21008:3078558,4812305:0,0,0 +(1,21008:3078558,49800853:0,16384,2228224 +k1,21008:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,21008:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,21032:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,21008:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,21032:3078558,4812305:0,0,0 -(1,21032:3078558,49800853:0,16384,2228224 -g1,21032:29030814,49800853 -g1,21032:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,21032:36151628,51504789:16384,1179648,0 +[1,21008:3078558,4812305:0,0,0 +(1,21008:3078558,49800853:0,16384,2228224 +g1,21008:29030814,49800853 +g1,21008:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,21008:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,21032:37855564,49800853:1179648,16384,0 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,21008:37855564,49800853:1179648,16384,0 ) ) -k1,21032:3078556,49800853:-34777008 +k1,21008:3078556,49800853:-34777008 ) ] -g1,21032:6630773,4812305 -k1,21032:21350816,4812305:13524666 -g1,21032:21999622,4812305 -g1,21032:25611966,4812305 -g1,21032:28956923,4812305 -g1,21032:29772190,4812305 -) -) -] -[1,21032:6630773,45706769:25952256,40108032,0 -(1,21032:6630773,45706769:25952256,40108032,0 -(1,21032:6630773,45706769:0,0,0 -g1,21032:6630773,45706769 +g1,21008:6630773,4812305 +k1,21008:21350816,4812305:13524666 +g1,21008:21999622,4812305 +g1,21008:25611966,4812305 +g1,21008:28956923,4812305 +g1,21008:29772190,4812305 ) -[1,21032:6630773,45706769:25952256,40108032,0 -(1,21001:6630773,6254097:25952256,32768,229376 -(1,21001:6630773,6254097:0,32768,229376 -(1,21001:6630773,6254097:5505024,32768,229376 -r1,21032:12135797,6254097:5505024,262144,229376 -) -k1,21001:6630773,6254097:-5505024 -) -(1,21001:6630773,6254097:25952256,32768,0 -r1,21032:32583029,6254097:25952256,32768,0 -) -) -(1,21001:6630773,7858425:25952256,606339,161218 -(1,21001:6630773,7858425:2464678,582746,14155 -g1,21001:6630773,7858425 -g1,21001:9095451,7858425 -) -g1,21001:11581363,7858425 -(1,21001:11581363,7858425:0,542918,138361 -r1,21032:14964351,7858425:3382988,681279,138361 -k1,21001:11581363,7858425:-3382988 -) -(1,21001:11581363,7858425:3382988,542918,138361 -k1,21001:11581363,7858425:3277 -h1,21001:14961074,7858425:0,493446,135084 -) -g1,21001:15209718,7858425 -k1,21001:32583029,7858425:12643709 -g1,21001:32583029,7858425 -) -(1,21005:6630773,9093129:25952256,513147,134348 -k1,21004:7469416,9093129:210808 -k1,21004:10289212,9093129:210808 -h1,21004:11831930,9093129:0,0,0 -k1,21004:12042738,9093129:210808 -k1,21004:13444991,9093129:210808 -h1,21004:14987709,9093129:0,0,0 -k1,21004:15198518,9093129:210809 -k1,21004:16277678,9093129:210808 -k1,21004:17923069,9093129:210808 -k1,21004:19826017,9093129:210808 -k1,21004:22161502,9093129:210808 -k1,21004:25364029,9093129:210808 -k1,21004:26234129,9093129:210808 -k1,21004:27464022,9093129:210808 -k1,21004:28767315,9093129:210808 -k1,21004:29645280,9093129:210809 -k1,21004:30270919,9093129:210796 -k1,21005:32583029,9093129:0 -) -(1,21005:6630773,9934617:25952256,513147,134348 -k1,21004:8550006,9934617:248065 -k1,21004:9414108,9934617:248064 -k1,21004:11443442,9934617:248065 -k1,21004:12888193,9934617:248064 -(1,21004:12888193,9934617:0,452978,115847 -r1,21032:15708442,9934617:2820249,568825,115847 -k1,21004:12888193,9934617:-2820249 -) -(1,21004:12888193,9934617:2820249,452978,115847 -k1,21004:12888193,9934617:3277 -h1,21004:15705165,9934617:0,411205,112570 -) -k1,21004:15956507,9934617:248065 -k1,21004:17987151,9934617:248065 -k1,21004:19426660,9934617:248064 -k1,21004:21062778,9934617:248065 -k1,21004:21926881,9934617:248065 -k1,21004:22589739,9934617:248015 -k1,21004:25267879,9934617:248065 -k1,21004:27876550,9934617:248064 -k1,21004:31931601,9934617:248065 -k1,21004:32583029,9934617:0 -) -(1,21005:6630773,10776105:25952256,505283,134348 -k1,21004:8298665,10776105:179569 -k1,21004:10213626,10776105:179568 -k1,21004:14163481,10776105:179569 -k1,21004:14959087,10776105:179568 -k1,21004:16919925,10776105:179569 -k1,21004:20034195,10776105:179568 -k1,21004:23697658,10776105:179569 -k1,21004:27848708,10776105:179568 -k1,21004:30270919,10776105:179569 -k1,21005:32583029,10776105:0 -) -(1,21005:6630773,11617593:25952256,505283,134348 -k1,21004:8500396,11617593:198455 -k1,21004:9803132,11617593:198454 -k1,21004:10749353,11617593:198455 -k1,21004:14588988,11617593:198455 -k1,21004:17317133,11617593:198455 -k1,21004:19024226,11617593:198454 -k1,21004:21306726,11617593:198455 -k1,21004:22036678,11617593:198455 -k1,21004:24186795,11617593:198455 -k1,21004:27109581,11617593:198454 -k1,21004:30270919,11617593:198455 -k1,21005:32583029,11617593:0 -) -(1,21005:6630773,12459081:25952256,513147,134348 -k1,21004:8453023,12459081:151082 -k1,21004:9595666,12459081:151083 -k1,21004:11822273,12459081:151082 -k1,21004:13371238,12459081:151082 -k1,21004:14138359,12459081:151083 -k1,21004:15308526,12459081:151082 -k1,21004:17828735,12459081:151082 -k1,21004:18639110,12459081:151083 -k1,21004:21488309,12459081:151082 -k1,21004:23019579,12459081:151082 -k1,21004:24162222,12459081:151083 -k1,21004:25599120,12459081:151082 -k1,21004:27263428,12459081:151082 -k1,21004:28030549,12459081:151083 -k1,21004:29883601,12459081:151082 -k1,21004:32583029,12459081:0 -) -(1,21005:6630773,13300569:25952256,505283,7863 -g1,21004:7446040,13300569 -g1,21004:8060112,13300569 -k1,21005:32583029,13300569:22853060 -g1,21005:32583029,13300569 -) -(1,21007:6630773,14142057:25952256,513147,134348 -h1,21006:6630773,14142057:983040,0,0 -k1,21006:8766001,14142057:524353 -k1,21006:11623436,14142057:524353 -k1,21006:12605887,14142057:524354 -k1,21006:13661737,14142057:524353 -k1,21006:16816050,14142057:524353 -k1,21006:17991831,14142057:524353 -k1,21006:20445565,14142057:524354 -k1,21006:24547529,14142057:524353 -k1,21006:27969229,14142057:524353 -k1,21006:29887533,14142057:524353 -k1,21007:32583029,14142057:0 -) -(1,21007:6630773,14983545:25952256,513147,134348 -(1,21006:6630773,14983545:0,452978,115847 -r1,21032:10857869,14983545:4227096,568825,115847 -k1,21006:6630773,14983545:-4227096 -) -(1,21006:6630773,14983545:4227096,452978,115847 -k1,21006:6630773,14983545:3277 -h1,21006:10854592,14983545:0,411205,112570 -) -k1,21006:11278457,14983545:246918 -k1,21006:12208259,14983545:246917 -k1,21006:13216705,14983545:246918 -k1,21006:15849134,14983545:246918 -k1,21006:16451911,14983545:246917 -k1,21006:19673508,14983545:246918 -k1,21006:21959906,14983545:246918 -k1,21006:22834659,14983545:246918 -k1,21006:24100661,14983545:246917 -k1,21006:25714660,14983545:246918 -k1,21006:26620870,14983545:246918 -k1,21006:29696320,14983545:246917 -k1,21006:30890889,14983545:246918 -k1,21006:32583029,14983545:0 -) -(1,21007:6630773,15825033:25952256,505283,126483 -k1,21006:8094466,15825033:186396 -k1,21006:11323699,15825033:186396 -k1,21006:13398187,15825033:186396 -k1,21006:15934704,15825033:186396 -k1,21006:17515051,15825033:186396 -(1,21006:17515051,15825033:0,452978,122846 -r1,21032:21390435,15825033:3875384,575824,122846 -k1,21006:17515051,15825033:-3875384 -) -(1,21006:17515051,15825033:3875384,452978,122846 -k1,21006:17515051,15825033:3277 -h1,21006:21387158,15825033:0,411205,112570 -) -k1,21006:21576830,15825033:186395 -k1,21006:22954671,15825033:186396 -(1,21006:22954671,15825033:0,452978,122846 -r1,21032:27181767,15825033:4227096,575824,122846 -k1,21006:22954671,15825033:-4227096 -) -(1,21006:22954671,15825033:4227096,452978,122846 -k1,21006:22954671,15825033:3277 -h1,21006:27178490,15825033:0,411205,112570 -) -k1,21006:27541833,15825033:186396 -k1,21006:28919674,15825033:186396 -k1,21006:30125155,15825033:186396 -k1,21006:31809049,15825033:186396 -k1,21007:32583029,15825033:0 -) -(1,21007:6630773,16666521:25952256,513147,134348 -k1,21006:8173163,16666521:259195 -k1,21006:9091650,16666521:259195 -k1,21006:11239592,16666521:259194 -k1,21006:12517872,16666521:259195 -k1,21006:15162578,16666521:259195 -k1,21006:15953270,16666521:259195 -k1,21006:18670719,16666521:259194 -k1,21006:20121359,16666521:259195 -k1,21006:22752302,16666521:259195 -k1,21006:23662925,16666521:259195 -k1,21006:26507514,16666521:259194 -k1,21006:29741388,16666521:259195 -k1,21006:32583029,16666521:0 -) -(1,21007:6630773,17508009:25952256,513147,134348 -k1,21006:7445730,17508009:198919 -(1,21006:7445730,17508009:0,452978,115847 -r1,21032:8859131,17508009:1413401,568825,115847 -k1,21006:7445730,17508009:-1413401 -) -(1,21006:7445730,17508009:1413401,452978,115847 -k1,21006:7445730,17508009:3277 -h1,21006:8855854,17508009:0,411205,112570 -) -k1,21006:9231720,17508009:198919 -k1,21006:10058474,17508009:198919 -k1,21006:13062335,17508009:198920 -k1,21006:14208905,17508009:198919 -k1,21006:16179262,17508009:198919 -k1,21006:19295188,17508009:198919 -k1,21006:22375725,17508009:198919 -k1,21006:26057883,17508009:198919 -k1,21006:27368294,17508009:198920 -k1,21006:30568107,17508009:198919 -k1,21006:32051532,17508009:198919 -k1,21006:32583029,17508009:0 -) -(1,21007:6630773,18349497:25952256,513147,126483 -k1,21006:9253905,18349497:241554 -k1,21006:11505448,18349497:241554 -(1,21006:11505448,18349497:0,452978,115847 -r1,21032:13622273,18349497:2116825,568825,115847 -k1,21006:11505448,18349497:-2116825 -) -(1,21006:11505448,18349497:2116825,452978,115847 -k1,21006:11505448,18349497:3277 -h1,21006:13618996,18349497:0,411205,112570 -) -k1,21006:14070920,18349497:241553 -k1,21006:15331559,18349497:241554 -k1,21006:19343399,18349497:241554 -k1,21006:21060168,18349497:241554 -k1,21006:21953149,18349497:241553 -k1,21006:22942469,18349497:241554 -k1,21006:25606889,18349497:241554 -k1,21006:28919460,18349497:241554 -k1,21006:29843898,18349497:241553 -k1,21006:31896867,18349497:241554 -k1,21006:32583029,18349497:0 -) -(1,21007:6630773,19190985:25952256,505283,134348 -g1,21006:8323568,19190985 -g1,21006:9790263,19190985 -g1,21006:10345352,19190985 -g1,21006:13229591,19190985 -g1,21006:14620265,19190985 -g1,21006:15838579,19190985 -g1,21006:18549148,19190985 -g1,21006:20953664,19190985 -g1,21006:21839055,19190985 -g1,21006:22808987,19190985 -k1,21007:32583029,19190985:6528044 -g1,21007:32583029,19190985 -) -(1,21009:6630773,20032473:25952256,505283,134348 -h1,21008:6630773,20032473:983040,0,0 -k1,21008:9623123,20032473:226075 -k1,21008:12373645,20032473:226075 -k1,21008:16370006,20032473:226075 -k1,21008:18331474,20032473:226075 -(1,21008:18331474,20032473:0,452978,122846 -r1,21032:22206858,20032473:3875384,575824,122846 -k1,21008:18331474,20032473:-3875384 -) -(1,21008:18331474,20032473:3875384,452978,122846 -k1,21008:18331474,20032473:3277 -h1,21008:22203581,20032473:0,411205,112570 -) -k1,21008:22606604,20032473:226076 -k1,21008:24117185,20032473:226075 -k1,21008:27317939,20032473:226075 -k1,21008:29740125,20032473:226075 -k1,21008:30957760,20032473:226075 -k1,21008:31835263,20032473:226075 -k1,21008:32583029,20032473:0 -) -(1,21009:6630773,20873961:25952256,513147,134348 -k1,21008:8985933,20873961:191817 -k1,21008:9709247,20873961:191817 -k1,21008:12550685,20873961:191817 -k1,21008:14136452,20873961:191816 -(1,21008:14136452,20873961:0,414482,115847 -r1,21032:18363548,20873961:4227096,530329,115847 -k1,21008:14136452,20873961:-4227096 -) -(1,21008:14136452,20873961:4227096,414482,115847 -g1,21008:16250000,20873961 -g1,21008:16953424,20873961 -h1,21008:18360271,20873961:0,411205,112570 -) -k1,21008:18729035,20873961:191817 -k1,21008:19548687,20873961:191817 -k1,21008:20759589,20873961:191817 -k1,21008:22318487,20873961:191817 -k1,21008:23169596,20873961:191817 -k1,21008:25423830,20873961:191816 -k1,21008:27113145,20873961:191817 -k1,21008:29322816,20873961:191817 -k1,21008:31900144,20873961:191817 -k1,21008:32583029,20873961:0 -) -(1,21009:6630773,21715449:25952256,513147,126483 -k1,21008:7921317,21715449:224273 -k1,21008:10847640,21715449:224274 -k1,21008:11881283,21715449:224273 -k1,21008:13124642,21715449:224274 -k1,21008:15749499,21715449:224273 -k1,21008:18669269,21715449:224274 -k1,21008:20580439,21715449:224273 -k1,21008:21707143,21715449:224273 -k1,21008:25158410,21715449:224274 -k1,21008:26948993,21715449:224273 -k1,21008:27704764,21715449:224274 -k1,21008:28545075,21715449:224273 -k1,21008:29972590,21715449:224274 -k1,21008:31563944,21715449:224273 -k1,21008:32583029,21715449:0 -) -(1,21009:6630773,22556937:25952256,513147,134348 -g1,21008:10133017,22556937 -g1,21008:10991538,22556937 -g1,21008:14545555,22556937 -g1,21008:16479522,22556937 -g1,21008:19653430,22556937 -g1,21008:22048770,22556937 -g1,21008:23641950,22556937 -g1,21008:25851824,22556937 -g1,21008:27818559,22556937 -g1,21008:29585409,22556937 -(1,21008:29585409,22556937:0,452978,115847 -r1,21032:30998810,22556937:1413401,568825,115847 -k1,21008:29585409,22556937:-1413401 -) -(1,21008:29585409,22556937:1413401,452978,115847 -k1,21008:29585409,22556937:3277 -h1,21008:30995533,22556937:0,411205,112570 -) -k1,21009:32583029,22556937:1410549 -g1,21009:32583029,22556937 -) -(1,21011:6630773,23398425:25952256,513147,134348 -h1,21010:6630773,23398425:983040,0,0 -k1,21010:9020434,23398425:209934 -k1,21010:10832067,23398425:209933 -k1,21010:13525816,23398425:209934 -k1,21010:15397742,23398425:209933 -k1,21010:16259104,23398425:209934 -k1,21010:19728143,23398425:209934 -k1,21010:21636114,23398425:209933 -k1,21010:24103763,23398425:209934 -k1,21010:28083982,23398425:209933 -k1,21010:28825413,23398425:209934 -k1,21010:30365727,23398425:209933 -k1,21010:31227089,23398425:209934 -k1,21011:32583029,23398425:0 -) -(1,21011:6630773,24239913:25952256,513147,126483 -k1,21010:8155407,24239913:171971 -k1,21010:9346463,24239913:171971 -k1,21010:12280777,24239913:171971 -k1,21010:14278581,24239913:171971 -k1,21010:14938113,24239913:171944 -k1,21010:16541390,24239913:171971 -(1,21010:16748484,24239913:0,414482,115847 -r1,21032:17106750,24239913:358266,530329,115847 -k1,21010:16748484,24239913:-358266 -) -(1,21010:16748484,24239913:358266,414482,115847 -k1,21010:16748484,24239913:3277 -h1,21010:17103473,24239913:0,411205,112570 -) -k1,21010:17485815,24239913:171971 -k1,21010:19185430,24239913:171971 -k1,21010:21145223,24239913:171971 -k1,21010:21933232,24239913:171971 -k1,21010:24740406,24239913:171971 -k1,21010:27727804,24239913:171971 -k1,21010:30534322,24239913:171971 -(1,21010:30741416,24239913:0,414482,115847 -r1,21032:31099682,24239913:358266,530329,115847 -k1,21010:30741416,24239913:-358266 -) -(1,21010:30741416,24239913:358266,414482,115847 -k1,21010:30741416,24239913:3277 -h1,21010:31096405,24239913:0,411205,112570 -) -k1,21010:31478747,24239913:171971 -k1,21010:32583029,24239913:0 -) -(1,21011:6630773,25081401:25952256,505283,134348 -k1,21010:7632516,25081401:253977 -k1,21010:9172309,25081401:253977 -k1,21010:10939512,25081401:253977 -k1,21010:11879651,25081401:253977 -k1,21010:12489488,25081401:253977 -k1,21010:16095632,25081401:253977 -k1,21010:17541055,25081401:253978 -k1,21010:18326529,25081401:253977 -k1,21010:20878854,25081401:253977 -k1,21010:23420038,25081401:253977 -k1,21010:25372053,25081401:253977 -k1,21010:27945349,25081401:253977 -k1,21010:29593277,25081401:253977 -k1,21010:32583029,25081401:0 -) -(1,21011:6630773,25922889:25952256,513147,134348 -k1,21010:8592615,25922889:170088 -k1,21010:10550524,25922889:170087 -k1,21010:11252109,25922889:170088 -k1,21010:13871933,25922889:170088 -k1,21010:14658059,25922889:170088 -k1,21010:16520286,25922889:170087 -k1,21010:20020914,25922889:170088 -k1,21010:21263171,25922889:170088 -k1,21010:22499530,25922889:170088 -k1,21010:23285655,25922889:170087 -k1,21010:25661685,25922889:170088 -k1,21010:26660803,25922889:170088 -k1,21010:29168560,25922889:170088 -k1,21010:30527470,25922889:170087 -k1,21010:31356850,25922889:170088 -k1,21010:32583029,25922889:0 -) -(1,21011:6630773,26764377:25952256,513147,134348 -k1,21010:8848137,26764377:207375 -k1,21010:9826214,26764377:207374 -k1,21010:13473574,26764377:207375 -k1,21010:14549300,26764377:207374 -k1,21010:16286941,26764377:207375 -k1,21010:17145743,26764377:207374 -k1,21010:18445603,26764377:207375 -k1,21010:21746933,26764377:207375 -k1,21010:24115029,26764377:207374 -k1,21010:25364426,26764377:207375 -k1,21010:25927660,26764377:207374 -k1,21010:27523743,26764377:207375 -k1,21010:28724643,26764377:207374 -k1,21010:29591310,26764377:207375 -k1,21010:32583029,26764377:0 -) -(1,21011:6630773,27605865:25952256,505283,126483 -k1,21010:8269906,27605865:163918 -k1,21010:8789685,27605865:163919 -k1,21010:10340345,27605865:163918 -k1,21010:11117025,27605865:163918 -k1,21010:12300029,27605865:163919 -k1,21010:14622703,27605865:163918 -k1,21010:15978067,27605865:163919 -k1,21010:17638172,27605865:163918 -k1,21010:20865243,27605865:163918 -k1,21010:21790690,27605865:163919 -(1,21010:21790690,27605865:0,452978,115847 -r1,21032:26721210,27605865:4930520,568825,115847 -k1,21010:21790690,27605865:-4930520 -) -(1,21010:21790690,27605865:4930520,452978,115847 -k1,21010:21790690,27605865:3277 -h1,21010:26717933,27605865:0,411205,112570 -) -k1,21010:26885128,27605865:163918 -k1,21010:27661808,27605865:163918 -k1,21010:28844812,27605865:163919 -k1,21010:29423538,27605865:163883 -k1,21010:32583029,27605865:0 -) -(1,21011:6630773,28447353:25952256,426639,126483 -k1,21011:32583029,28447353:23377346 -g1,21011:32583029,28447353 -) -(1,21014:6630773,29288841:25952256,513147,126483 -h1,21012:6630773,29288841:983040,0,0 -k1,21012:8861568,29288841:294206 -k1,21012:10288236,29288841:294206 -k1,21012:11674927,29288841:294206 -k1,21012:12324994,29288841:294207 -k1,21012:14735358,29288841:294206 -k1,21012:15688856,29288841:294206 -k1,21012:18669383,29288841:294206 -k1,21012:21955308,29288841:294206 -k1,21012:22900942,29288841:294206 -k1,21012:24855831,29288841:294207 -k1,21012:26480418,29288841:294206 -k1,21012:27426052,29288841:294206 -k1,21012:28812743,29288841:294206 -k1,21012:32583029,29288841:0 -) -(1,21014:6630773,30130329:25952256,513147,134348 -k1,21012:7868950,30130329:290526 -k1,21012:10921820,30130329:290527 -k1,21012:14081512,30130329:290526 -k1,21012:15031330,30130329:290526 -k1,21012:15677716,30130329:290526 -k1,21012:17419210,30130329:290527 -k1,21013:18663285,30130329:290526 -k1,21013:20259944,30130329:290526 -k1,21013:22479851,30130329:290527 -k1,21013:23126237,30130329:290526 -k1,21013:24806126,30130329:290526 -k1,21013:27146618,30130329:290526 -k1,21013:29172538,30130329:290527 -(1,21013:29172538,30130329:0,452978,115847 -r1,21032:31641075,30130329:2468537,568825,115847 -k1,21013:29172538,30130329:-2468537 -) -(1,21013:29172538,30130329:2468537,452978,115847 -k1,21013:29172538,30130329:3277 -h1,21013:31637798,30130329:0,411205,112570 -) -k1,21013:31931601,30130329:290526 -k1,21013:32583029,30130329:0 -) -(1,21014:6630773,30971817:25952256,513147,134348 -k1,21013:9738872,30971817:171431 -k1,21013:10266163,30971817:171431 -k1,21013:12415471,30971817:171431 -k1,21013:13246195,30971817:171432 -k1,21013:17162353,30971817:171431 -$1,21013:17162353,30971817 -$1,21013:17670257,30971817 -k1,21013:17841688,30971817:171431 -k1,21013:20023764,30971817:171431 -k1,21013:20881357,30971817:171431 -k1,21013:24027467,30971817:171431 -k1,21013:26395010,30971817:171432 -k1,21013:29078436,30971817:171431 -k1,21013:30197518,30971817:171431 -k1,21013:32583029,30971817:0 -) -(1,21014:6630773,31813305:25952256,473825,126483 -g1,21013:8097468,31813305 -k1,21014:32583029,31813305:20541604 -g1,21014:32583029,31813305 -) -v1,21016:6630773,33003771:0,393216,0 -(1,21024:6630773,35983579:25952256,3373024,196608 -g1,21024:6630773,35983579 -g1,21024:6630773,35983579 -g1,21024:6434165,35983579 -(1,21024:6434165,35983579:0,3373024,196608 -r1,21032:32779637,35983579:26345472,3569632,196608 -k1,21024:6434165,35983579:-26345472 -) -(1,21024:6434165,35983579:26345472,3373024,196608 -[1,21024:6630773,35983579:25952256,3176416,0 -(1,21018:6630773,33211389:25952256,404226,107478 -(1,21017:6630773,33211389:0,0,0 -g1,21017:6630773,33211389 -g1,21017:6630773,33211389 -g1,21017:6303093,33211389 -(1,21017:6303093,33211389:0,0,0 -) -g1,21017:6630773,33211389 -) -k1,21018:6630773,33211389:0 -g1,21018:11689104,33211389 -g1,21018:12321396,33211389 -g1,21018:13902125,33211389 -g1,21018:15482854,33211389 -g1,21018:16431291,33211389 -g1,21018:18644311,33211389 -g1,21018:21489622,33211389 -g1,21018:22754205,33211389 -g1,21018:24334934,33211389 -k1,21018:24334934,33211389:11534 -h1,21018:25611051,33211389:0,0,0 -k1,21018:32583029,33211389:6971978 -g1,21018:32583029,33211389 -) -(1,21019:6630773,33877567:25952256,404226,101187 -h1,21019:6630773,33877567:0,0,0 -g1,21019:9159939,33877567 -k1,21019:9159939,33877567:0 -h1,21019:9792231,33877567:0,0,0 -k1,21019:32583029,33877567:22790798 -g1,21019:32583029,33877567 -) -(1,21020:6630773,34543745:25952256,410518,82312 -h1,21020:6630773,34543745:0,0,0 -g1,21020:6946919,34543745 -g1,21020:7263065,34543745 -g1,21020:11372960,34543745 -g1,21020:12005252,34543745 -k1,21020:12005252,34543745:0 -h1,21020:13269836,34543745:0,0,0 -k1,21020:32583028,34543745:19313192 -g1,21020:32583028,34543745 -) -(1,21021:6630773,35209923:25952256,404226,101187 -h1,21021:6630773,35209923:0,0,0 -g1,21021:6946919,35209923 -g1,21021:7263065,35209923 -g1,21021:7579211,35209923 -g1,21021:7895357,35209923 -g1,21021:8211503,35209923 -g1,21021:8527649,35209923 -g1,21021:8843795,35209923 -g1,21021:9159941,35209923 -g1,21021:9476087,35209923 -g1,21021:9792233,35209923 -g1,21021:10108379,35209923 -g1,21021:10424525,35209923 -g1,21021:10740671,35209923 -g1,21021:11372963,35209923 -g1,21021:12005255,35209923 -k1,21021:12005255,35209923:0 -h1,21021:14850567,35209923:0,0,0 -k1,21021:32583029,35209923:17732462 -g1,21021:32583029,35209923 -) -(1,21022:6630773,35876101:25952256,404226,107478 -h1,21022:6630773,35876101:0,0,0 -g1,21022:6946919,35876101 -g1,21022:7263065,35876101 -g1,21022:7579211,35876101 -g1,21022:7895357,35876101 -g1,21022:8211503,35876101 -g1,21022:8527649,35876101 -g1,21022:8843795,35876101 -g1,21022:9159941,35876101 -g1,21022:9476087,35876101 -g1,21022:9792233,35876101 -g1,21022:10108379,35876101 -g1,21022:10424525,35876101 -g1,21022:10740671,35876101 -g1,21022:14534419,35876101 -g1,21022:15166711,35876101 -g1,21022:20225042,35876101 -g1,21022:21805772,35876101 -g1,21022:23386501,35876101 -g1,21022:24651084,35876101 -g1,21022:25283376,35876101 -h1,21022:26547958,35876101:0,0,0 -k1,21022:32583029,35876101:6035071 -g1,21022:32583029,35876101 -) -] -) -g1,21024:32583029,35983579 -g1,21024:6630773,35983579 -g1,21024:6630773,35983579 -g1,21024:32583029,35983579 -g1,21024:32583029,35983579 -) -h1,21024:6630773,36180187:0,0,0 -(1,21028:6630773,37545963:25952256,505283,138281 -h1,21027:6630773,37545963:983040,0,0 -k1,21027:8803578,37545963:236216 -k1,21027:10132280,37545963:236217 -k1,21027:11054658,37545963:236216 -$1,21027:11054658,37545963 -$1,21027:11557319,37545963 -k1,21027:13258920,37545963:236216 -k1,21027:15182689,37545963:236217 -k1,21027:15774765,37545963:236216 -k1,21027:17866305,37545963:236216 -$1,21027:17866305,37545963 -$1,21027:18374209,37545963 -k1,21027:18610426,37545963:236217 -k1,21027:21821321,37545963:236216 -k1,21027:23451488,37545963:236216 -$1,21027:23451488,37545963 -$1,21027:23737880,37545963 -k1,21027:23974096,37545963:236216 -k1,21027:24896475,37545963:236217 -k1,21027:28283007,37545963:236216 -k1,21027:29710668,37545963:236216 -k1,21027:30562923,37545963:236217 -k1,21027:31818224,37545963:236216 -$1,21027:31818224,37545963 -$1,21027:32370037,37545963 -k1,21028:32583029,37545963:0 -) -(1,21028:6630773,38387451:25952256,505283,134348 -k1,21027:8056140,38387451:172974 -k1,21027:9916666,38387451:172974 -k1,21027:10957993,38387451:172975 -k1,21027:12606182,38387451:172974 -k1,21027:13135016,38387451:172974 -k1,21027:16940651,38387451:172974 -k1,21027:17729663,38387451:172974 -k1,21027:18921722,38387451:172974 -k1,21027:20886451,38387451:172975 -k1,21027:22101447,38387451:172974 -k1,21027:23293506,38387451:172974 -k1,21027:24733946,38387451:172974 -k1,21027:25775272,38387451:172974 -k1,21027:27040732,38387451:172975 -k1,21027:27569566,38387451:172974 -k1,21027:30717219,38387451:172974 -k1,21027:32583029,38387451:0 -) -(1,21028:6630773,39228939:25952256,513147,126483 -k1,21027:7882019,39228939:179077 -k1,21027:9008747,39228939:179077 -k1,21027:10206909,39228939:179077 -k1,21027:12799022,39228939:179077 -k1,21027:13333959,39228939:179077 -k1,21027:15464698,39228939:179077 -k1,21027:18330096,39228939:179077 -k1,21027:22122828,39228939:179077 -k1,21027:23255454,39228939:179077 -k1,21027:25363911,39228939:179077 -k1,21027:27239715,39228939:179077 -k1,21027:31189078,39228939:179077 -k1,21027:32583029,39228939:0 -) -(1,21028:6630773,40070427:25952256,513147,115847 -g1,21027:9525498,40070427 -(1,21027:9525498,40070427:0,452978,115847 -r1,21032:13752594,40070427:4227096,568825,115847 -k1,21027:9525498,40070427:-4227096 -) -(1,21027:9525498,40070427:4227096,452978,115847 -k1,21027:9525498,40070427:3277 -h1,21027:13749317,40070427:0,411205,112570 -) -k1,21028:32583028,40070427:18656764 -g1,21028:32583028,40070427 -) -(1,21030:6630773,40911915:25952256,505283,138281 -h1,21029:6630773,40911915:983040,0,0 -k1,21029:8806509,40911915:239147 -k1,21029:10559538,40911915:239147 -k1,21029:12250307,40911915:239147 -k1,21029:16230904,40911915:239147 -k1,21029:17864002,40911915:239147 -k1,21029:18459008,40911915:239146 -k1,21029:22442882,40911915:239147 -$1,21029:22442882,40911915 -$1,21029:24579355,40911915 -k1,21029:24992172,40911915:239147 -k1,21029:26184868,40911915:239147 -k1,21029:28594567,40911915:239147 -k1,21029:30270919,40911915:239147 -k1,21030:32583029,40911915:0 -) -(1,21030:6630773,41753403:25952256,505283,134348 -k1,21029:8573588,41753403:271647 -k1,21029:9496662,41753403:271646 -k1,21029:13208294,41753403:271647 -k1,21029:14241469,41753403:271647 -k1,21029:16651555,41753403:271646 -k1,21029:19730764,41753403:271647 -k1,21029:21641466,41753403:271647 -k1,21029:22564540,41753403:271646 -k1,21029:23855272,41753403:271647 -k1,21029:25640801,41753403:271647 -k1,21029:28930380,41753403:271646 -k1,21029:31714677,41753403:271647 -k1,21029:32583029,41753403:0 -) -(1,21030:6630773,42594891:25952256,505283,134348 -k1,21029:8298719,42594891:230741 -k1,21029:11504139,42594891:230741 -k1,21029:13930992,42594891:230742 -k1,21029:15446239,42594891:230741 -k1,21029:16781262,42594891:230741 -k1,21029:17759770,42594891:230742 -k1,21029:20153854,42594891:230741 -k1,21029:21652061,42594891:230741 -k1,21029:25826759,42594891:230741 -k1,21029:26685336,42594891:230742 -k1,21029:28618047,42594891:230741 -k1,21029:30977397,42594891:230741 -k1,21030:32583029,42594891:0 -) -(1,21030:6630773,43436379:25952256,513147,134348 -k1,21029:8514832,43436379:302020 -k1,21029:11186634,43436379:302020 -k1,21029:12773160,43436379:302020 -k1,21029:14066740,43436379:302020 -k1,21029:16655311,43436379:302020 -k1,21029:18692724,43436379:302020 -k1,21029:20013829,43436379:302020 -k1,21029:22399894,43436379:302020 -k1,21029:23361206,43436379:302020 -k1,21029:27607183,43436379:302020 -k1,21029:28862752,43436379:302020 -k1,21029:30695038,43436379:302020 -k1,21029:31648486,43436379:302020 -k1,21030:32583029,43436379:0 -) -(1,21030:6630773,44277867:25952256,513147,134348 -(1,21029:6630773,44277867:0,414482,115847 -r1,21032:10857869,44277867:4227096,530329,115847 -k1,21029:6630773,44277867:-4227096 -) -(1,21029:6630773,44277867:4227096,414482,115847 -g1,21029:8744321,44277867 -g1,21029:9447745,44277867 -h1,21029:10854592,44277867:0,411205,112570 -) -k1,21029:11050683,44277867:192814 -k1,21029:11859536,44277867:192815 -k1,21029:13071435,44277867:192814 -k1,21029:14363944,44277867:192815 -k1,21029:15208186,44277867:192814 -k1,21029:16420086,44277867:192815 -k1,21029:19620347,44277867:192814 -k1,21029:20537990,44277867:192815 -k1,21029:22015310,44277867:192814 -k1,21029:23227210,44277867:192815 -k1,21029:25789806,44277867:192814 -k1,21029:28309804,44277867:192815 -k1,21029:29161910,44277867:192814 -k1,21029:31092740,44277867:192815 -k1,21030:32583029,44277867:0 -) -(1,21030:6630773,45119355:25952256,513147,126483 -g1,21029:7854985,45119355 -g1,21029:8740376,45119355 -g1,21029:9644772,45119355 -g1,21029:10835561,45119355 -g1,21029:13198133,45119355 -g1,21029:14664828,45119355 -g1,21029:18634343,45119355 -g1,21029:20876329,45119355 -g1,21029:22094643,45119355 -g1,21029:23571169,45119355 -g1,21029:24301895,45119355 -k1,21030:32583029,45119355:5232399 -g1,21030:32583029,45119355 -) -] -(1,21032:32583029,45706769:0,0,0 -g1,21032:32583029,45706769 -) -) -] -(1,21032:6630773,47279633:25952256,0,0 -h1,21032:6630773,47279633:25952256,0,0 -) -] -(1,21032:4262630,4025873:0,0,0 -[1,21032:-473656,4025873:0,0,0 -(1,21032:-473656,-710413:0,0,0 -(1,21032:-473656,-710413:0,0,0 -g1,21032:-473656,-710413 -) -g1,21032:-473656,-710413 -) -] -) -] -!29508 -}381 +) +] +[1,21008:6630773,45706769:25952256,40108032,0 +(1,21008:6630773,45706769:25952256,40108032,0 +(1,21008:6630773,45706769:0,0,0 +g1,21008:6630773,45706769 +) +[1,21008:6630773,45706769:25952256,40108032,0 +(1,20959:6630773,16109226:25952256,10510489,0 +k1,20959:12599879,16109226:5969106 +h1,20958:12599879,16109226:0,0,0 +(1,20958:12599879,16109226:14014044,10510489,0 +(1,20958:12599879,16109226:14014019,10510515,0 +(1,20958:12599879,16109226:14014019,10510515,0 +(1,20958:12599879,16109226:0,10510515,0 +(1,20958:12599879,16109226:0,14208860,0 +(1,20958:12599879,16109226:18945146,14208860,0 +) +k1,20958:12599879,16109226:-18945146 +) +) +g1,20958:26613898,16109226 +) +) +) +g1,20959:26613923,16109226 +k1,20959:32583029,16109226:5969106 +) +v1,20966:6630773,16974306:0,393216,0 +(1,20967:6630773,19099789:25952256,2518699,0 +g1,20967:6630773,19099789 +g1,20967:6237557,19099789 +r1,21008:6368629,19099789:131072,2518699,0 +g1,20967:6567858,19099789 +g1,20967:6764466,19099789 +[1,20967:6764466,19099789:25818563,2518699,0 +(1,20967:6764466,17246783:25818563,665693,196608 +(1,20966:6764466,17246783:0,665693,196608 +r1,21008:8010564,17246783:1246098,862301,196608 +k1,20966:6764466,17246783:-1246098 +) +(1,20966:6764466,17246783:1246098,665693,196608 +) +k1,20966:8187823,17246783:177259 +k1,20966:9914041,17246783:327680 +k1,20966:12453872,17246783:177258 +k1,20966:13650216,17246783:177259 +k1,20966:15323662,17246783:177259 +k1,20966:16116959,17246783:177259 +k1,20966:17313302,17246783:177258 +k1,20966:20245039,17246783:177259 +k1,20966:22392966,17246783:177259 +k1,20966:23221653,17246783:177259 +k1,20966:24665067,17246783:177258 +k1,20966:25999036,17246783:177259 +k1,20966:26789057,17246783:177259 +k1,20966:27322176,17246783:177259 +k1,20966:29098512,17246783:177258 +k1,20966:30727393,17246783:177259 +k1,20966:31563944,17246783:177259 +k1,20966:32583029,17246783:0 +) +(1,20967:6764466,18111863:25818563,513147,134348 +k1,20966:10349965,18111863:147480 +k1,20966:12814142,18111863:147479 +k1,20966:14529243,18111863:147480 +k1,20966:17678926,18111863:147480 +(1,20966:17678926,18111863:0,452978,115847 +r1,21008:21202598,18111863:3523672,568825,115847 +k1,20966:17678926,18111863:-3523672 +) +(1,20966:17678926,18111863:3523672,452978,115847 +k1,20966:17678926,18111863:3277 +h1,20966:21199321,18111863:0,411205,112570 +) +k1,20966:21523747,18111863:147479 +(1,20966:21523747,18111863:0,452978,115847 +r1,21008:26805978,18111863:5282231,568825,115847 +k1,20966:21523747,18111863:-5282231 +) +(1,20966:21523747,18111863:5282231,452978,115847 +k1,20966:21523747,18111863:3277 +h1,20966:26802701,18111863:0,411205,112570 +) +k1,20966:27127128,18111863:147480 +(1,20966:27127128,18111863:0,452978,115847 +r1,21008:32409359,18111863:5282231,568825,115847 +k1,20966:27127128,18111863:-5282231 +) +(1,20966:27127128,18111863:5282231,452978,115847 +k1,20966:27127128,18111863:3277 +h1,20966:32406082,18111863:0,411205,112570 +) +k1,20967:32583029,18111863:0 +) +(1,20967:6764466,18976943:25818563,505283,122846 +(1,20966:6764466,18976943:0,452978,115847 +r1,21008:12398409,18976943:5633943,568825,115847 +k1,20966:6764466,18976943:-5633943 +) +(1,20966:6764466,18976943:5633943,452978,115847 +k1,20966:6764466,18976943:3277 +h1,20966:12395132,18976943:0,411205,112570 +) +g1,20966:12771308,18976943 +(1,20966:12771308,18976943:0,452978,122846 +r1,21008:17350116,18976943:4578808,575824,122846 +k1,20966:12771308,18976943:-4578808 +) +(1,20966:12771308,18976943:4578808,452978,122846 +k1,20966:12771308,18976943:3277 +h1,20966:17346839,18976943:0,411205,112570 +) +g1,20966:17723015,18976943 +(1,20966:17723015,18976943:0,452978,115847 +r1,21008:21950111,18976943:4227096,568825,115847 +k1,20966:17723015,18976943:-4227096 +) +(1,20966:17723015,18976943:4227096,452978,115847 +k1,20966:17723015,18976943:3277 +h1,20966:21946834,18976943:0,411205,112570 +) +g1,20966:22149340,18976943 +g1,20966:23540014,18976943 +(1,20966:23540014,18976943:0,452978,115847 +r1,21008:27767110,18976943:4227096,568825,115847 +k1,20966:23540014,18976943:-4227096 +) +(1,20966:23540014,18976943:4227096,452978,115847 +k1,20966:23540014,18976943:3277 +h1,20966:27763833,18976943:0,411205,112570 +) +k1,20967:32583029,18976943:4642249 +g1,20967:32583029,18976943 +) +] +g1,20967:32583029,19099789 +) +h1,20967:6630773,19099789:0,0,0 +v1,20970:6630773,19964869:0,393216,0 +(1,20971:6630773,26463075:25952256,6891422,0 +g1,20971:6630773,26463075 +g1,20971:6237557,26463075 +r1,21008:6368629,26463075:131072,6891422,0 +g1,20971:6567858,26463075 +g1,20971:6764466,26463075 +[1,20971:6764466,26463075:25818563,6891422,0 +(1,20971:6764466,20273167:25818563,701514,196608 +(1,20970:6764466,20273167:0,701514,196608 +r1,21008:8010564,20273167:1246098,898122,196608 +k1,20970:6764466,20273167:-1246098 +) +(1,20970:6764466,20273167:1246098,701514,196608 +) +k1,20970:8589215,20273167:578651 +k1,20970:8916895,20273167:327680 +k1,20970:12888346,20273167:578652 +k1,20970:16384004,20273167:578651 +k1,20970:18108881,20273167:578652 +(1,20970:18108881,20273167:0,452978,122846 +r1,21008:22335977,20273167:4227096,575824,122846 +k1,20970:18108881,20273167:-4227096 +) +(1,20970:18108881,20273167:4227096,452978,122846 +k1,20970:18108881,20273167:3277 +h1,20970:22332700,20273167:0,411205,112570 +) +k1,20970:22914628,20273167:578651 +k1,20970:24658510,20273167:578652 +k1,20970:25853199,20273167:578651 +k1,20970:28621409,20273167:578652 +k1,20970:30266331,20273167:578651 +k1,20970:32583029,20273167:0 +) +(1,20971:6764466,21138247:25818563,513147,134348 +k1,20970:8380518,21138247:543883 +k1,20970:11251585,21138247:543884 +k1,20970:12787028,21138247:543883 +k1,20970:17367929,21138247:543883 +k1,20970:18571105,21138247:543884 +k1,20970:21101384,21138247:543883 +k1,20970:24108765,21138247:543883 +k1,20970:25849336,21138247:543884 +k1,20970:28648313,21138247:543883 +k1,20970:30572384,21138247:543883 +k1,20970:32583029,21138247:0 +) +(1,20971:6764466,22003327:25818563,505283,134348 +k1,20970:9049706,22003327:587202 +k1,20970:11504685,22003327:587203 +k1,20970:14463635,22003327:587202 +k1,20970:15860208,22003327:587203 +k1,20970:17466495,22003327:587202 +k1,20970:21456326,22003327:587202 +k1,20970:24248816,22003327:587203 +k1,20970:25487446,22003327:587202 +k1,20970:27583288,22003327:587203 +k1,20970:31955194,22003327:587202 +k1,20970:32583029,22003327:0 +) +(1,20971:6764466,22868407:25818563,513147,122846 +k1,20970:9017368,22868407:550932 +k1,20970:11696909,22868407:550932 +(1,20970:11696909,22868407:0,452978,122846 +r1,21008:20847971,22868407:9151062,575824,122846 +k1,20970:11696909,22868407:-9151062 +) +(1,20970:11696909,22868407:9151062,452978,122846 +g1,20970:19086135,22868407 +g1,20970:19789559,22868407 +h1,20970:20844694,22868407:0,411205,112570 +) +k1,20970:21572573,22868407:550932 +k1,20970:24383187,22868407:550933 +k1,20970:25289979,22868407:550932 +k1,20970:28603254,22868407:550932 +k1,20970:31140582,22868407:550932 +k1,20971:32583029,22868407:0 +) +(1,20971:6764466,23733487:25818563,513147,122846 +(1,20970:6764466,23733487:0,452978,122846 +r1,21008:15915528,23733487:9151062,575824,122846 +k1,20970:6764466,23733487:-9151062 +) +(1,20970:6764466,23733487:9151062,452978,122846 +g1,20970:14153692,23733487 +g1,20970:14857116,23733487 +h1,20970:15912251,23733487:0,411205,112570 +) +k1,20970:16322020,23733487:232822 +k1,20970:17182678,23733487:232823 +k1,20970:18618741,23733487:232822 +k1,20970:20392315,23733487:232823 +k1,20970:21311299,23733487:232822 +k1,20970:23143199,23733487:232822 +k1,20970:24035314,23733487:232823 +k1,20970:27030479,23733487:232822 +k1,20970:28489481,23733487:232823 +k1,20970:31591469,23733487:232822 +k1,20970:32583029,23733487:0 +) +(1,20971:6764466,24598567:25818563,513147,134348 +k1,20970:9380991,24598567:234947 +k1,20970:11975233,24598567:234946 +k1,20970:12861608,24598567:234947 +k1,20970:14115639,24598567:234946 +k1,20970:15784514,24598567:234947 +k1,20970:17461907,24598567:234946 +k1,20970:18715939,24598567:234947 +k1,20970:20219663,24598567:234947 +k1,20970:21113901,24598567:234946 +k1,20970:22114964,24598567:234947 +k1,20970:23576089,24598567:234946 +k1,20970:26680202,24598567:234947 +k1,20970:29486125,24598567:234946 +k1,20970:30337110,24598567:234947 +k1,20971:32583029,24598567:0 +) +(1,20971:6764466,25463647:25818563,513147,134348 +k1,20970:9168204,25463647:191898 +k1,20970:10785509,25463647:191897 +k1,20970:12246184,25463647:191898 +k1,20970:15009058,25463647:191897 +k1,20970:15962484,25463647:191898 +k1,20970:18409476,25463647:191898 +k1,20970:19416641,25463647:191897 +k1,20970:20674810,25463647:191898 +k1,20970:22646010,25463647:191898 +k1,20970:23856992,25463647:191897 +k1,20970:25317667,25463647:191898 +k1,20970:26168856,25463647:191897 +k1,20970:27586933,25463647:191898 +k1,20970:28461716,25463647:191898 +k1,20970:30497796,25463647:191897 +k1,20970:31305732,25463647:191898 +k1,20970:32583029,25463647:0 +) +(1,20971:6764466,26328727:25818563,505283,134348 +g1,20970:8851787,26328727 +g1,20970:11401137,26328727 +g1,20970:12994317,26328727 +g1,20970:16874703,26328727 +g1,20970:17760094,26328727 +g1,20970:19467962,26328727 +g1,20970:20935968,26328727 +g1,20970:21666694,26328727 +g1,20970:25126994,26328727 +g1,20970:26087751,26328727 +g1,20970:27306065,26328727 +(1,20970:27306065,26328727:0,452978,115847 +r1,21008:28719466,26328727:1413401,568825,115847 +k1,20970:27306065,26328727:-1413401 +) +(1,20970:27306065,26328727:1413401,452978,115847 +k1,20970:27306065,26328727:3277 +h1,20970:28716189,26328727:0,411205,112570 +) +g1,20970:28918695,26328727 +k1,20971:32583029,26328727:737497 +g1,20971:32583029,26328727 +) +] +g1,20971:32583029,26463075 +) +h1,20971:6630773,26463075:0,0,0 +(1,20974:6630773,27328155:25952256,513147,134348 +h1,20973:6630773,27328155:983040,0,0 +k1,20973:8252885,27328155:151484 +k1,20973:11143167,27328155:151532 +k1,20973:13132329,27328155:151532 +k1,20973:13815358,27328155:151532 +k1,20973:14618317,27328155:151531 +k1,20973:16699229,27328155:151532 +k1,20973:17206621,27328155:151532 +k1,20973:18635450,27328155:151532 +k1,20973:21247203,27328155:151531 +k1,20973:24648010,27328155:151532 +k1,20973:25155402,27328155:151532 +k1,20973:27467000,27328155:151531 +k1,20973:28809977,27328155:151532 +k1,20973:30395437,27328155:151532 +k1,20973:32583029,27328155:0 +) +(1,20974:6630773,28193235:25952256,513147,134348 +k1,20973:7855922,28193235:206064 +k1,20973:10048382,28193235:206064 +k1,20973:11952484,28193235:206064 +k1,20973:14730835,28193235:206063 +k1,20973:15619784,28193235:206064 +k1,20973:17859430,28193235:206064 +k1,20973:18697261,28193235:206064 +k1,20973:20284169,28193235:206064 +k1,20973:21594515,28193235:206064 +k1,20973:23191253,28193235:206064 +k1,20973:25167443,28193235:206063 +k1,20973:26321158,28193235:206064 +k1,20973:29362309,28193235:206064 +k1,20973:31266411,28193235:206064 +k1,20974:32583029,28193235:0 +) +(1,20974:6630773,29058315:25952256,513147,134348 +g1,20973:8989413,29058315 +g1,20973:11950985,29058315 +g1,20973:14814253,29058315 +g1,20973:15672774,29058315 +g1,20973:16891088,29058315 +g1,20973:18743790,29058315 +g1,20973:20220316,29058315 +g1,20973:21367196,29058315 +g1,20973:21922285,29058315 +g1,20973:25720751,29058315 +g1,20973:27111425,29058315 +g1,20973:27666514,29058315 +k1,20974:32583029,29058315:3532395 +g1,20974:32583029,29058315 +) +v1,20976:6630773,29743170:0,393216,0 +(1,20982:6630773,31453563:25952256,2103609,196608 +g1,20982:6630773,31453563 +g1,20982:6630773,31453563 +g1,20982:6434165,31453563 +(1,20982:6434165,31453563:0,2103609,196608 +r1,21008:32779637,31453563:26345472,2300217,196608 +k1,20982:6434165,31453563:-26345472 +) +(1,20982:6434165,31453563:26345472,2103609,196608 +[1,20982:6630773,31453563:25952256,1907001,0 +(1,20978:6630773,29977607:25952256,431045,112852 +(1,20977:6630773,29977607:0,0,0 +g1,20977:6630773,29977607 +g1,20977:6630773,29977607 +g1,20977:6303093,29977607 +(1,20977:6303093,29977607:0,0,0 +) +g1,20977:6630773,29977607 +) +g1,20978:7294681,29977607 +g1,20978:8290543,29977607 +g1,20978:14597668,29977607 +g1,20978:16921346,29977607 +g1,20978:18249162,29977607 +h1,20978:18581116,29977607:0,0,0 +k1,20978:32583029,29977607:14001913 +g1,20978:32583029,29977607 +) +(1,20979:6630773,30662462:25952256,424439,112852 +h1,20979:6630773,30662462:0,0,0 +g1,20979:6962727,30662462 +g1,20979:7294681,30662462 +g1,20979:7626635,30662462 +g1,20979:7958589,30662462 +g1,20979:8290543,30662462 +g1,20979:8622497,30662462 +g1,20979:8954451,30662462 +k1,20979:8954451,30662462:0 +h1,20979:12937898,30662462:0,0,0 +k1,20979:32583030,30662462:19645132 +g1,20979:32583030,30662462 +) +(1,20980:6630773,31347317:25952256,424439,106246 +h1,20980:6630773,31347317:0,0,0 +g1,20980:9286405,31347317 +g1,20980:9950313,31347317 +k1,20980:9950313,31347317:0 +h1,20980:13601806,31347317:0,0,0 +k1,20980:32583030,31347317:18981224 +g1,20980:32583030,31347317 +) +] +) +g1,20982:32583029,31453563 +g1,20982:6630773,31453563 +g1,20982:6630773,31453563 +g1,20982:32583029,31453563 +g1,20982:32583029,31453563 +) +h1,20982:6630773,31650171:0,0,0 +(1,20986:6630773,32515251:25952256,513147,134348 +h1,20985:6630773,32515251:983040,0,0 +k1,20985:8275115,32515251:191409 +k1,20985:8998022,32515251:191410 +k1,20985:10475247,32515251:191409 +k1,20985:13296616,32515251:191409 +k1,20985:14139454,32515251:191410 +k1,20985:16571539,32515251:191409 +k1,20985:17782033,32515251:191409 +k1,20985:19959839,32515251:191410 +k1,20985:21664474,32515251:191409 +k1,20985:22617411,32515251:191409 +k1,20985:25074400,32515251:191409 +k1,20985:25881848,32515251:191410 +k1,20985:27092342,32515251:191409 +k1,20985:29627974,32515251:191409 +k1,20985:30234219,32515251:191402 +k1,20985:32583029,32515251:0 +) +(1,20986:6630773,33380331:25952256,505283,115847 +g1,20985:8223953,33380331 +(1,20985:8223953,33380331:0,452978,115847 +r1,21008:12099337,33380331:3875384,568825,115847 +k1,20985:8223953,33380331:-3875384 +) +(1,20985:8223953,33380331:3875384,452978,115847 +k1,20985:8223953,33380331:3277 +h1,20985:12096060,33380331:0,411205,112570 +) +k1,20986:32583029,33380331:20310022 +g1,20986:32583029,33380331 +) +v1,20988:6630773,34065186:0,393216,0 +(1,20992:6630773,34372839:25952256,700869,196608 +g1,20992:6630773,34372839 +g1,20992:6630773,34372839 +g1,20992:6434165,34372839 +(1,20992:6434165,34372839:0,700869,196608 +r1,21008:32779637,34372839:26345472,897477,196608 +k1,20992:6434165,34372839:-26345472 +) +(1,20992:6434165,34372839:26345472,700869,196608 +[1,20992:6630773,34372839:25952256,504261,0 +(1,20990:6630773,34293017:25952256,424439,79822 +(1,20989:6630773,34293017:0,0,0 +g1,20989:6630773,34293017 +g1,20989:6630773,34293017 +g1,20989:6303093,34293017 +(1,20989:6303093,34293017:0,0,0 +) +g1,20989:6630773,34293017 +) +g1,20990:9950312,34293017 +g1,20990:10946174,34293017 +k1,20990:10946174,34293017:0 +h1,20990:18581114,34293017:0,0,0 +k1,20990:32583029,34293017:14001915 +g1,20990:32583029,34293017 +) +] +) +g1,20992:32583029,34372839 +g1,20992:6630773,34372839 +g1,20992:6630773,34372839 +g1,20992:32583029,34372839 +g1,20992:32583029,34372839 +) +h1,20992:6630773,34569447:0,0,0 +(1,20996:6630773,35434527:25952256,513147,134348 +h1,20995:6630773,35434527:983040,0,0 +k1,20995:10016124,35434527:175398 +k1,20995:10842950,35434527:175398 +k1,20995:12720318,35434527:175398 +k1,20995:15921513,35434527:175398 +k1,20995:17610137,35434527:175398 +k1,20995:18436963,35434527:175398 +k1,20995:20853037,35434527:175398 +k1,20995:23441471,35434527:175398 +k1,20995:24232907,35434527:175398 +k1,20995:24996818,35434527:175398 +(1,20995:24996818,35434527:0,452978,115847 +r1,21008:28872202,35434527:3875384,568825,115847 +k1,20995:24996818,35434527:-3875384 +) +(1,20995:24996818,35434527:3875384,452978,115847 +k1,20995:24996818,35434527:3277 +h1,20995:28868925,35434527:0,411205,112570 +) +k1,20995:29047600,35434527:175398 +k1,20995:31563944,35434527:175398 +k1,20995:32583029,35434527:0 +) +(1,20996:6630773,36299607:25952256,505283,134348 +k1,20995:9593046,36299607:207795 +k1,20995:12156204,36299607:207794 +k1,20995:13124217,36299607:207795 +k1,20995:15365594,36299607:207795 +k1,20995:16776629,36299607:207794 +k1,20995:18664767,36299607:207795 +k1,20995:19523990,36299607:207795 +k1,20995:20087644,36299607:207794 +k1,20995:22980449,36299607:207795 +k1,20995:24586126,36299607:207794 +(1,20995:24586126,36299607:0,452978,115847 +r1,21008:27758086,36299607:3171960,568825,115847 +k1,20995:24586126,36299607:-3171960 +) +(1,20995:24586126,36299607:3171960,452978,115847 +k1,20995:24586126,36299607:3277 +h1,20995:27754809,36299607:0,411205,112570 +) +k1,20995:28139551,36299607:207795 +k1,20995:29215698,36299607:207795 +k1,20995:30415052,36299607:207794 +k1,20995:31931601,36299607:207795 +k1,20995:32583029,36299607:0 +) +(1,20996:6630773,37164687:25952256,513147,134348 +g1,20995:9083130,37164687 +g1,20995:10301444,37164687 +g1,20995:13255151,37164687 +g1,20995:15893630,37164687 +g1,20995:16775744,37164687 +g1,20995:18619927,37164687 +g1,20995:19838241,37164687 +k1,20996:32583029,37164687:10330442 +g1,20996:32583029,37164687 +) +v1,20998:6630773,37849542:0,393216,0 +(1,21003:6630773,38868474:25952256,1412148,196608 +g1,21003:6630773,38868474 +g1,21003:6630773,38868474 +g1,21003:6434165,38868474 +(1,21003:6434165,38868474:0,1412148,196608 +r1,21008:32779637,38868474:26345472,1608756,196608 +k1,21003:6434165,38868474:-26345472 +) +(1,21003:6434165,38868474:26345472,1412148,196608 +[1,21003:6630773,38868474:25952256,1215540,0 +(1,21000:6630773,38077373:25952256,424439,79822 +(1,20999:6630773,38077373:0,0,0 +g1,20999:6630773,38077373 +g1,20999:6630773,38077373 +g1,20999:6303093,38077373 +(1,20999:6303093,38077373:0,0,0 +) +g1,20999:6630773,38077373 +) +k1,21000:6630773,38077373:0 +h1,21000:13269851,38077373:0,0,0 +k1,21000:32583029,38077373:19313178 +g1,21000:32583029,38077373 +) +(1,21001:6630773,38762228:25952256,298373,106246 +h1,21001:6630773,38762228:0,0,0 +h1,21001:6962727,38762228:0,0,0 +k1,21001:32583029,38762228:25620302 +g1,21001:32583029,38762228 +) +] +) +g1,21003:32583029,38868474 +g1,21003:6630773,38868474 +g1,21003:6630773,38868474 +g1,21003:32583029,38868474 +g1,21003:32583029,38868474 +) +h1,21003:6630773,39065082:0,0,0 +v1,21007:6630773,39930162:0,393216,0 +(1,21008:6630773,44698208:25952256,5161262,0 +g1,21008:6630773,44698208 +g1,21008:6237557,44698208 +r1,21008:6368629,44698208:131072,5161262,0 +g1,21008:6567858,44698208 +g1,21008:6764466,44698208 +[1,21008:6764466,44698208:25818563,5161262,0 +(1,21008:6764466,40238460:25818563,701514,196608 +(1,21007:6764466,40238460:0,701514,196608 +r1,21008:8010564,40238460:1246098,898122,196608 +k1,21007:6764466,40238460:-1246098 +) +(1,21007:6764466,40238460:1246098,701514,196608 +) +k1,21007:8242496,40238460:231932 +k1,21007:8570176,40238460:327680 +k1,21007:9998795,40238460:231932 +k1,21007:11323212,40238460:231932 +k1,21007:12214437,40238460:231933 +k1,21007:12802229,40238460:231932 +k1,21007:14405174,40238460:231932 +k1,21007:18427053,40238460:231932 +k1,21007:19345147,40238460:231932 +k1,21007:21842659,40238460:231932 +k1,21007:23022242,40238460:231932 +k1,21007:24861773,40238460:231933 +k1,21007:25625202,40238460:231932 +k1,21007:28581466,40238460:231932 +k1,21007:30194242,40238460:231932 +k1,21007:32583029,40238460:0 +) +(1,21008:6764466,41103540:25818563,513147,134348 +k1,21007:9101003,41103540:247905 +k1,21007:11992629,41103540:247904 +k1,21007:15405268,41103540:247905 +k1,21007:16269211,41103540:247905 +k1,21007:17536201,41103540:247905 +k1,21007:21327637,41103540:247904 +k1,21007:23510820,41103540:247905 +k1,21007:24410153,41103540:247905 +k1,21007:27478728,41103540:247905 +k1,21007:28082492,41103540:247904 +k1,21007:30928900,41103540:247905 +k1,21008:32583029,41103540:0 +) +(1,21008:6764466,41968620:25818563,513147,134348 +k1,21007:8907695,41968620:184358 +k1,21007:12716849,41968620:184358 +k1,21007:13920292,41968620:184358 +k1,21007:15330829,41968620:184358 +k1,21007:16706632,41968620:184358 +k1,21007:18498588,41968620:184358 +k1,21007:19298983,41968620:184357 +k1,21007:19839201,41968620:184358 +k1,21007:21695382,41968620:184358 +k1,21007:23575156,41968620:184358 +k1,21007:26609019,41968620:184358 +k1,21007:29423992,41968620:184358 +k1,21007:31900144,41968620:184358 +k1,21007:32583029,41968620:0 +) +(1,21008:6764466,42833700:25818563,513147,134348 +k1,21007:7619291,42833700:242063 +k1,21007:9356886,42833700:242063 +k1,21007:11555853,42833700:242062 +k1,21007:12153776,42833700:242063 +k1,21007:14046036,42833700:242063 +k1,21007:17639610,42833700:242063 +k1,21007:20270459,42833700:242062 +k1,21007:22774825,42833700:242063 +k1,21007:25180887,42833700:242063 +(1,21007:25180887,42833700:0,452978,115847 +r1,21008:28704559,42833700:3523672,568825,115847 +k1,21007:25180887,42833700:-3523672 +) +(1,21007:25180887,42833700:3523672,452978,115847 +k1,21007:25180887,42833700:3277 +h1,21007:28701282,42833700:0,411205,112570 +) +k1,21007:28946622,42833700:242063 +k1,21007:29720181,42833700:242062 +k1,21007:30981329,42833700:242063 +k1,21007:32583029,42833700:0 +) +(1,21008:6764466,43698780:25818563,513147,134348 +k1,21007:9656461,43698780:202397 +k1,21007:10518150,43698780:202397 +k1,21007:11739632,43698780:202397 +k1,21007:15293540,43698780:202397 +k1,21007:17914871,43698780:202397 +k1,21007:21411762,43698780:202396 +k1,21007:22300321,43698780:202397 +k1,21007:22960815,43698780:202397 +k1,21007:25089970,43698780:202397 +k1,21007:26570974,43698780:202397 +k1,21007:28240067,43698780:202397 +k1,21007:29390115,43698780:202397 +k1,21007:32583029,43698780:0 +) +(1,21008:6764466,44563860:25818563,513147,134348 +k1,21007:8561410,44563860:189346 +k1,21007:9436918,44563860:189346 +k1,21007:10573916,44563860:189347 +k1,21007:12370860,44563860:189346 +k1,21007:13954157,44563860:189346 +k1,21007:16032251,44563860:189346 +k1,21007:16907760,44563860:189347 +k1,21007:17555203,44563860:189346 +k1,21007:20412520,44563860:189346 +k1,21007:20957726,44563860:189346 +k1,21007:22480731,44563860:189347 +k1,21007:24834076,44563860:189346 +(1,21007:24834076,44563860:0,452978,115847 +r1,21008:30116307,44563860:5282231,568825,115847 +k1,21007:24834076,44563860:-5282231 +) +(1,21007:24834076,44563860:5282231,452978,115847 +k1,21007:24834076,44563860:3277 +h1,21007:30113030,44563860:0,411205,112570 +) +k1,21007:30305653,44563860:189346 +k1,21007:32583029,44563860:0 +) +] +g1,21008:32583029,44698208 +) +] +(1,21008:32583029,45706769:0,0,0 +g1,21008:32583029,45706769 +) +) +] +(1,21008:6630773,47279633:25952256,0,0 +h1,21008:6630773,47279633:25952256,0,0 +) +] +(1,21008:4262630,4025873:0,0,0 +[1,21008:-473656,4025873:0,0,0 +(1,21008:-473656,-710413:0,0,0 +(1,21008:-473656,-710413:0,0,0 +g1,21008:-473656,-710413 +) +g1,21008:-473656,-710413 +) +] +) +] +!24972 +}359 Input:3448:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3449:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3450:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -360744,8 +355917,1497 @@ Input:3454:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConso Input:3455:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3456:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3457:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!952 +{360 +[1,21053:4262630,47279633:28320399,43253760,0 +(1,21053:4262630,4025873:0,0,0 +[1,21053:-473656,4025873:0,0,0 +(1,21053:-473656,-710413:0,0,0 +(1,21053:-473656,-644877:0,0,0 +k1,21053:-473656,-644877:-65536 +) +(1,21053:-473656,4736287:0,0,0 +k1,21053:-473656,4736287:5209943 +) +g1,21053:-473656,-710413 +) +] +) +[1,21053:6630773,47279633:25952256,43253760,0 +[1,21053:6630773,4812305:25952256,786432,0 +(1,21053:6630773,4812305:25952256,505283,11795 +(1,21053:6630773,4812305:25952256,505283,11795 +g1,21053:3078558,4812305 +[1,21053:3078558,4812305:0,0,0 +(1,21053:3078558,2439708:0,1703936,0 +k1,21053:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,21053:2537886,2439708:1179648,16384,0 +) +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,21053:3078558,1915420:16384,1179648,0 +) +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 +) +] +) +) +) +] +[1,21053:3078558,4812305:0,0,0 +(1,21053:3078558,2439708:0,1703936,0 +g1,21053:29030814,2439708 +g1,21053:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,21053:36151628,1915420:16384,1179648,0 +) +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 +) +] +) +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,21053:37855564,2439708:1179648,16384,0 +) +) +k1,21053:3078556,2439708:-34777008 +) +] +[1,21053:3078558,4812305:0,0,0 +(1,21053:3078558,49800853:0,16384,2228224 +k1,21053:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,21053:2537886,49800853:1179648,16384,0 +) +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,21053:3078558,51504789:16384,1179648,0 +) +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 +) +] +) +) +) +] +[1,21053:3078558,4812305:0,0,0 +(1,21053:3078558,49800853:0,16384,2228224 +g1,21053:29030814,49800853 +g1,21053:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,21053:36151628,51504789:16384,1179648,0 +) +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 +) +] +) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,21053:37855564,49800853:1179648,16384,0 +) +) +k1,21053:3078556,49800853:-34777008 +) +] +g1,21053:6630773,4812305 +g1,21053:6630773,4812305 +g1,21053:9264009,4812305 +k1,21053:31387653,4812305:22123644 +) +) +] +[1,21053:6630773,45706769:25952256,40108032,0 +(1,21053:6630773,45706769:25952256,40108032,0 +(1,21053:6630773,45706769:0,0,0 +g1,21053:6630773,45706769 +) +[1,21053:6630773,45706769:25952256,40108032,0 +v1,21008:6630773,6254097:0,393216,0 +(1,21008:6630773,7246971:25952256,1386090,0 +g1,21008:6630773,7246971 +g1,21008:6237557,7246971 +r1,21053:6368629,7246971:131072,1386090,0 +g1,21008:6567858,7246971 +g1,21008:6764466,7246971 +[1,21008:6764466,7246971:25818563,1386090,0 +(1,21008:6764466,6374028:25818563,513147,134348 +k1,21007:7292153,6374028:171827 +k1,21007:8623967,6374028:171827 +k1,21007:9987240,6374028:171828 +k1,21007:11443573,6374028:171827 +k1,21007:13542158,6374028:171827 +k1,21007:14992592,6374028:171827 +k1,21007:16112071,6374028:171828 +k1,21007:19476812,6374028:171827 +k1,21007:21256237,6374028:171827 +k1,21007:22114226,6374028:171827 +k1,21007:22991221,6374028:171828 +k1,21007:24235217,6374028:171827 +k1,21007:26267611,6374028:171827 +k1,21007:29010415,6374028:171827 +k1,21007:29833671,6374028:171828 +k1,21007:31024583,6374028:171827 +k1,21007:32583029,6374028:0 +) +(1,21008:6764466,7239108:25818563,513147,7863 +g1,21007:8338640,7239108 +g1,21007:10235907,7239108 +g1,21007:11948362,7239108 +g1,21007:13541542,7239108 +k1,21008:32583028,7239108:16979068 +g1,21008:32583028,7239108 +) +] +g1,21008:32583029,7246971 +) +h1,21008:6630773,7246971:0,0,0 +(1,21011:6630773,9363789:25952256,555811,139132 +(1,21011:6630773,9363789:2899444,534184,12975 +g1,21011:6630773,9363789 +g1,21011:9530217,9363789 +) +g1,21011:13805131,9363789 +k1,21011:32583029,9363789:16140860 +g1,21011:32583029,9363789 +) +(1,21014:6630773,10622085:25952256,513147,126483 +k1,21013:7351188,10622085:242658 +k1,21013:8462198,10622085:242658 +k1,21013:10253472,10622085:242658 +k1,21013:11147558,10622085:242658 +k1,21013:14923917,10622085:242658 +k1,21013:17428878,10622085:242658 +k1,21013:18027396,10622085:242658 +k1,21013:20430120,10622085:242657 +k1,21013:22882652,10622085:242658 +k1,21013:24853494,10622085:242658 +k1,21013:25554249,10622085:242658 +k1,21013:26412945,10622085:242658 +k1,21013:29326850,10622085:242658 +k1,21013:31350777,10622085:242658 +k1,21013:32051532,10622085:242658 +k1,21013:32583029,10622085:0 +) +(1,21014:6630773,11487165:25952256,513147,126483 +k1,21013:8222592,11487165:256851 +k1,21013:9130871,11487165:256851 +k1,21013:11317101,11487165:256850 +k1,21013:11929812,11487165:256851 +k1,21013:13469858,11487165:256851 +k1,21013:17607096,11487165:256851 +k1,21013:18546831,11487165:256850 +k1,21013:19159542,11487165:256851 +k1,21013:22251480,11487165:256851 +k1,21013:25433858,11487165:256851 +k1,21013:27677104,11487165:256850 +k1,21013:28620117,11487165:256851 +k1,21013:31966991,11487165:256851 +k1,21013:32583029,11487165:0 +) +(1,21014:6630773,12352245:25952256,513147,134348 +k1,21013:7870845,12352245:220987 +k1,21013:9475953,12352245:220988 +k1,21013:12149297,12352245:220987 +k1,21013:12998120,12352245:220988 +k1,21013:14921077,12352245:220987 +k1,21013:16839446,12352245:220987 +k1,21013:17928786,12352245:220988 +k1,21013:19486707,12352245:220987 +k1,21013:21237961,12352245:220988 +k1,21013:22110376,12352245:220987 +k1,21013:24205037,12352245:220987 +k1,21013:26118165,12352245:220988 +k1,21013:28325548,12352245:220987 +k1,21013:31058531,12352245:220988 +k1,21013:32227169,12352245:220987 +k1,21013:32583029,12352245:0 +) +(1,21014:6630773,13217325:25952256,513147,134348 +k1,21013:8658151,13217325:154359 +k1,21013:10841505,13217325:154359 +k1,21013:11611902,13217325:154359 +k1,21013:13651732,13217325:154359 +k1,21013:15173172,13217325:154359 +k1,21013:16195883,13217325:154359 +k1,21013:17454524,13217325:154359 +k1,21013:19210584,13217325:154360 +k1,21013:22607664,13217325:154359 +k1,21013:23577291,13217325:154359 +k1,21013:24934891,13217325:154359 +k1,21013:26787288,13217325:154359 +k1,21013:29513935,13217325:154359 +k1,21013:30024154,13217325:154359 +k1,21013:31629480,13217325:154359 +k1,21013:32583029,13217325:0 +) +(1,21014:6630773,14082405:25952256,513147,134348 +k1,21013:9971381,14082405:207987 +k1,21013:11382610,14082405:207988 +k1,21013:14575107,14082405:207987 +k1,21013:15544622,14082405:207987 +k1,21013:18029985,14082405:207987 +k1,21013:19257058,14082405:207988 +k1,21013:22141535,14082405:207987 +k1,21013:23008814,14082405:207987 +k1,21013:26996918,14082405:207987 +$1,21013:26996918,14082405 +$1,21013:27499579,14082405 +k1,21013:29172952,14082405:207988 +k1,21013:30565175,14082405:207987 +k1,21013:32583029,14082405:0 +) +(1,21014:6630773,14947485:25952256,513147,134348 +k1,21013:7492118,14947485:233510 +k1,21013:10263182,14947485:233510 +k1,21013:11699932,14947485:233509 +k1,21013:14609932,14947485:233510 +k1,21013:15374939,14947485:233510 +k1,21013:17210149,14947485:233510 +k1,21013:20182408,14947485:233509 +k1,21013:22113956,14947485:233510 +k1,21013:24241456,14947485:233510 +k1,21013:26267376,14947485:233510 +k1,21013:27976100,14947485:233509 +k1,21013:29598318,14947485:233510 +k1,21013:31900144,14947485:233510 +k1,21013:32583029,14947485:0 +) +(1,21014:6630773,15812565:25952256,513147,134348 +k1,21013:7850773,15812565:200915 +k1,21013:9895870,15812565:200914 +k1,21013:11088345,15812565:200915 +k1,21013:13174074,15812565:200914 +k1,21013:16074417,15812565:200915 +k1,21013:17294416,15812565:200914 +k1,21013:18679567,15812565:200915 +k1,21013:20724665,15812565:200915 +k1,21013:21457076,15812565:200914 +k1,21013:22677076,15812565:200915 +k1,21013:24479690,15812565:200914 +k1,21013:26982229,15812565:200915 +k1,21013:29795408,15812565:200914 +k1,21013:31563944,15812565:200915 +k1,21013:32583029,15812565:0 +) +(1,21014:6630773,16677645:25952256,513147,134348 +g1,21013:9549091,16677645 +g1,21013:11836952,16677645 +g1,21013:13724388,16677645 +g1,21013:14582909,16677645 +k1,21014:32583029,16677645:16399731 +g1,21014:32583029,16677645 +) +v1,21016:6630773,17362500:0,393216,0 +(1,21023:6630773,19764354:25952256,2795070,196608 +g1,21023:6630773,19764354 +g1,21023:6630773,19764354 +g1,21023:6434165,19764354 +(1,21023:6434165,19764354:0,2795070,196608 +r1,21053:32779637,19764354:26345472,2991678,196608 +k1,21023:6434165,19764354:-26345472 +) +(1,21023:6434165,19764354:26345472,2795070,196608 +[1,21023:6630773,19764354:25952256,2598462,0 +(1,21018:6630773,17596937:25952256,431045,112852 +(1,21017:6630773,17596937:0,0,0 +g1,21017:6630773,17596937 +g1,21017:6630773,17596937 +g1,21017:6303093,17596937 +(1,21017:6303093,17596937:0,0,0 +) +g1,21017:6630773,17596937 +) +k1,21018:6630773,17596937:0 +g1,21018:12937898,17596937 +g1,21018:14929622,17596937 +g1,21018:15593530,17596937 +g1,21018:17585254,17596937 +g1,21018:18913070,17596937 +h1,21018:19245024,17596937:0,0,0 +k1,21018:32583029,17596937:13338005 +g1,21018:32583029,17596937 +) +(1,21019:6630773,18281792:25952256,424439,112852 +h1,21019:6630773,18281792:0,0,0 +g1,21019:6962727,18281792 +g1,21019:7294681,18281792 +g1,21019:11610082,18281792 +h1,21019:11942036,18281792:0,0,0 +k1,21019:32583028,18281792:20640992 +g1,21019:32583028,18281792 +) +(1,21020:6630773,18966647:25952256,424439,106246 +h1,21020:6630773,18966647:0,0,0 +g1,21020:6962727,18966647 +g1,21020:7294681,18966647 +g1,21020:15925484,18966647 +g1,21020:16589392,18966647 +g1,21020:24556287,18966647 +g1,21020:25220195,18966647 +g1,21020:26548011,18966647 +h1,21020:26879965,18966647:0,0,0 +k1,21020:32583029,18966647:5703064 +g1,21020:32583029,18966647 +) +(1,21021:6630773,19651502:25952256,424439,112852 +h1,21021:6630773,19651502:0,0,0 +g1,21021:6962727,19651502 +g1,21021:7294681,19651502 +g1,21021:13269852,19651502 +g1,21021:13933760,19651502 +g1,21021:20240885,19651502 +g1,21021:20904793,19651502 +g1,21021:22232609,19651502 +g1,21021:24224333,19651502 +g1,21021:24888241,19651502 +g1,21021:25884103,19651502 +g1,21021:27875827,19651502 +g1,21021:28539735,19651502 +h1,21021:30199505,19651502:0,0,0 +k1,21021:32583029,19651502:2383524 +g1,21021:32583029,19651502 +) +] +) +g1,21023:32583029,19764354 +g1,21023:6630773,19764354 +g1,21023:6630773,19764354 +g1,21023:32583029,19764354 +g1,21023:32583029,19764354 +) +h1,21023:6630773,19960962:0,0,0 +(1,21026:6630773,30536987:25952256,10510489,0 +k1,21026:12599879,30536987:5969106 +h1,21025:12599879,30536987:0,0,0 +(1,21025:12599879,30536987:14014044,10510489,0 +(1,21025:12599879,30536987:14014019,10510515,0 +(1,21025:12599879,30536987:14014019,10510515,0 +(1,21025:12599879,30536987:0,10510515,0 +(1,21025:12599879,30536987:0,14208860,0 +(1,21025:12599879,30536987:18945146,14208860,0 +) +k1,21025:12599879,30536987:-18945146 +) +) +g1,21025:26613898,30536987 +) +) +) +g1,21026:26613923,30536987 +k1,21026:32583029,30536987:5969106 +) +v1,21033:6630773,31402067:0,393216,0 +(1,21034:6630773,36096507:25952256,5087656,0 +g1,21034:6630773,36096507 +g1,21034:6237557,36096507 +r1,21053:6368629,36096507:131072,5087656,0 +g1,21034:6567858,36096507 +g1,21034:6764466,36096507 +[1,21034:6764466,36096507:25818563,5087656,0 +(1,21034:6764466,31763244:25818563,754393,260573 +(1,21033:6764466,31763244:0,754393,260573 +r1,21053:8010564,31763244:1246098,1014966,260573 +k1,21033:6764466,31763244:-1246098 +) +(1,21033:6764466,31763244:1246098,754393,260573 +) +k1,21033:8157955,31763244:147391 +k1,21033:8485635,31763244:327680 +k1,21033:10416260,31763244:147390 +k1,21033:11747887,31763244:147391 +k1,21033:13739460,31763244:147390 +k1,21033:14878411,31763244:147391 +k1,21033:17520101,31763244:147390 +k1,21033:18824202,31763244:147391 +k1,21033:21258800,31763244:147391 +k1,21033:23266757,31763244:147390 +k1,21033:24065576,31763244:147391 +k1,21033:25147509,31763244:147390 +k1,21033:26761596,31763244:147391 +k1,21033:27928071,31763244:147390 +k1,21033:31391584,31763244:147391 +k1,21033:32583029,31763244:0 +) +(1,21034:6764466,32628324:25818563,513147,134348 +k1,21033:9362629,32628324:252629 +k1,21033:13606402,32628324:252630 +(1,21033:13606402,32628324:0,452978,122846 +r1,21053:15371515,32628324:1765113,575824,122846 +k1,21033:13606402,32628324:-1765113 +) +(1,21033:13606402,32628324:1765113,452978,122846 +k1,21033:13606402,32628324:3277 +h1,21033:15368238,32628324:0,411205,112570 +) +k1,21033:15624144,32628324:252629 +k1,21033:17068218,32628324:252629 +(1,21033:17068218,32628324:0,452978,122846 +r1,21053:18833331,32628324:1765113,575824,122846 +k1,21033:17068218,32628324:-1765113 +) +(1,21033:17068218,32628324:1765113,452978,122846 +k1,21033:17068218,32628324:3277 +h1,21033:18830054,32628324:0,411205,112570 +) +k1,21033:19259631,32628324:252630 +k1,21033:20198422,32628324:252629 +k1,21033:21470137,32628324:252630 +k1,21033:23988346,32628324:252629 +k1,21033:26251620,32628324:252629 +k1,21033:27906720,32628324:252630 +k1,21033:29897364,32628324:252629 +k1,21033:32583029,32628324:0 +) +(1,21034:6764466,33493404:25818563,513147,134348 +k1,21033:8383440,33493404:238130 +k1,21033:9153066,33493404:238129 +k1,21033:10574121,33493404:238130 +k1,21033:11463678,33493404:238129 +k1,21033:12720893,33493404:238130 +k1,21033:14170127,33493404:238129 +k1,21033:15692763,33493404:238130 +k1,21033:19748365,33493404:238130 +k1,21033:22498489,33493404:238129 +k1,21033:23728179,33493404:238130 +k1,21033:27366316,33493404:238129 +k1,21033:28255874,33493404:238130 +k1,21033:29513088,33493404:238129 +k1,21033:30977397,33493404:238130 +k1,21033:32583029,33493404:0 +) +(1,21034:6764466,34358484:25818563,513147,134348 +k1,21033:8957754,34358484:241626 +k1,21033:10641827,34358484:241626 +k1,21033:11534881,34358484:241626 +k1,21033:12795593,34358484:241627 +k1,21033:14488186,34358484:241626 +k1,21033:15799360,34358484:241626 +k1,21033:18542495,34358484:241626 +k1,21033:22601593,34358484:241626 +k1,21033:23502511,34358484:241626 +$1,21033:23502511,34358484 +$1,21033:24005172,34358484 +k1,21033:25712184,34358484:241627 +k1,21033:27138046,34358484:241626 +k1,21033:29223855,34358484:241626 +k1,21033:31786111,34358484:241626 +k1,21033:32583029,34358484:0 +) +(1,21034:6764466,35223564:25818563,513147,134348 +k1,21033:9407369,35223564:187269 +k1,21033:11392946,35223564:187269 +k1,21033:13088854,35223564:187269 +k1,21033:16466416,35223564:187269 +k1,21033:18047636,35223564:187269 +k1,21033:20559466,35223564:187268 +k1,21033:21398163,35223564:187269 +k1,21033:22769668,35223564:187269 +k1,21033:24943989,35223564:187269 +k1,21033:26875826,35223564:187269 +k1,21033:28082180,35223564:187269 +k1,21033:32080368,35223564:187269 +$1,21033:32080368,35223564 +$1,21033:32583029,35223564 +k1,21034:32583029,35223564:0 +) +(1,21034:6764466,36088644:25818563,473825,7863 +k1,21034:32583029,36088644:24392500 +g1,21034:32583029,36088644 +) +] +g1,21034:32583029,36096507 +) +h1,21034:6630773,36096507:0,0,0 +v1,21037:6630773,36961587:0,393216,0 +(1,21038:6630773,39059250:25952256,2490879,0 +g1,21038:6630773,39059250 +g1,21038:6237557,39059250 +r1,21053:6368629,39059250:131072,2490879,0 +g1,21038:6567858,39059250 +g1,21038:6764466,39059250 +[1,21038:6764466,39059250:25818563,2490879,0 +(1,21038:6764466,37234064:25818563,665693,196608 +(1,21037:6764466,37234064:0,665693,196608 +r1,21053:8010564,37234064:1246098,862301,196608 +k1,21037:6764466,37234064:-1246098 +) +(1,21037:6764466,37234064:1246098,665693,196608 +) +k1,21037:8246020,37234064:235456 +k1,21037:9972238,37234064:327680 +k1,21037:11505307,37234064:235456 +k1,21037:13134714,37234064:235456 +k1,21037:14389254,37234064:235455 +k1,21037:16120897,37234064:235456 +k1,21037:16972391,37234064:235456 +k1,21037:18226932,37234064:235456 +k1,21037:19610579,37234064:235456 +k1,21037:21816703,37234064:235456 +k1,21037:24081153,37234064:235455 +k1,21037:27569161,37234064:235456 +k1,21037:28823702,37234064:235456 +k1,21037:31069803,37234064:235456 +k1,21037:32583029,37234064:0 +) +(1,21038:6764466,38099144:25818563,513147,134348 +k1,21037:7864868,38099144:152751 +(1,21037:7864868,38099144:0,452978,122846 +r1,21053:9629981,38099144:1765113,575824,122846 +k1,21037:7864868,38099144:-1765113 +) +(1,21037:7864868,38099144:1765113,452978,122846 +k1,21037:7864868,38099144:3277 +h1,21037:9626704,38099144:0,411205,112570 +) +k1,21037:9956402,38099144:152751 +(1,21037:9956402,38099144:0,452978,122846 +r1,21053:11721515,38099144:1765113,575824,122846 +k1,21037:9956402,38099144:-1765113 +) +(1,21037:9956402,38099144:1765113,452978,122846 +k1,21037:9956402,38099144:3277 +h1,21037:11718238,38099144:0,411205,112570 +) +k1,21037:11874266,38099144:152751 +k1,21037:13218462,38099144:152751 +(1,21037:13218462,38099144:0,452978,122846 +r1,21053:14983575,38099144:1765113,575824,122846 +k1,21037:13218462,38099144:-1765113 +) +(1,21037:13218462,38099144:1765113,452978,122846 +k1,21037:13218462,38099144:3277 +h1,21037:14980298,38099144:0,411205,112570 +) +k1,21037:15309996,38099144:152751 +k1,21037:17829251,38099144:152750 +k1,21037:18973562,38099144:152751 +k1,21037:22323815,38099144:152751 +k1,21037:23092604,38099144:152751 +k1,21037:25874659,38099144:152751 +k1,21037:27218855,38099144:152751 +k1,21037:31189078,38099144:152751 +k1,21037:32583029,38099144:0 +) +(1,21038:6764466,38964224:25818563,505283,95026 +g1,21037:8974340,38964224 +g1,21037:11808772,38964224 +g1,21037:12406460,38964224 +g1,21037:13797134,38964224 +k1,21038:32583029,38964224:18006672 +g1,21038:32583029,38964224 +) +] +g1,21038:32583029,39059250 +) +h1,21038:6630773,39059250:0,0,0 +(1,21041:6630773,39924330:25952256,513147,134348 +h1,21040:6630773,39924330:983040,0,0 +k1,21040:8316209,39924330:214808 +k1,21040:9744104,39924330:214824 +k1,21040:12260552,39924330:214824 +k1,21040:15459886,39924330:214824 +k1,21040:16206206,39924330:214823 +k1,21040:17072458,39924330:214824 +k1,21040:18379767,39924330:214824 +k1,21040:18950451,39924330:214824 +k1,21040:21517362,39924330:214824 +k1,21040:23063222,39924330:214824 +k1,21040:24720492,39924330:214823 +k1,21040:27030502,39924330:214824 +(1,21040:27030502,39924330:0,452978,115847 +r1,21053:29499039,39924330:2468537,568825,115847 +k1,21040:27030502,39924330:-2468537 +) +(1,21040:27030502,39924330:2468537,452978,115847 +k1,21040:27030502,39924330:3277 +h1,21040:29495762,39924330:0,411205,112570 +) +k1,21040:29887533,39924330:214824 +k1,21041:32583029,39924330:0 +) +(1,21041:6630773,40789410:25952256,505283,126483 +(1,21040:6630773,40789410:0,452978,115847 +r1,21053:8395886,40789410:1765113,568825,115847 +k1,21040:6630773,40789410:-1765113 +) +(1,21040:6630773,40789410:1765113,452978,115847 +k1,21040:6630773,40789410:3277 +h1,21040:8392609,40789410:0,411205,112570 +) +k1,21040:8673007,40789410:277121 +k1,21040:10054410,40789410:277121 +k1,21040:11079297,40789410:277121 +k1,21040:12869644,40789410:277121 +k1,21040:13798193,40789410:277121 +k1,21040:15009857,40789410:277121 +k1,21040:16555755,40789410:277121 +k1,21040:19192173,40789410:277122 +k1,21040:20120722,40789410:277121 +k1,21040:21416928,40789410:277121 +k1,21040:23127977,40789410:277121 +k1,21040:24847545,40789410:277121 +k1,21040:25752501,40789410:277121 +k1,21040:27232863,40789410:277121 +k1,21040:30345071,40789410:277121 +k1,21040:31490544,40789410:277121 +k1,21041:32583029,40789410:0 +) +(1,21041:6630773,41654490:25952256,513147,134348 +(1,21040:6630773,41654490:0,452978,115847 +r1,21053:10506157,41654490:3875384,568825,115847 +k1,21040:6630773,41654490:-3875384 +) +(1,21040:6630773,41654490:3875384,452978,115847 +k1,21040:6630773,41654490:3277 +h1,21040:10502880,41654490:0,411205,112570 +) +g1,21040:10705386,41654490 +g1,21040:11629443,41654490 +g1,21040:12514834,41654490 +g1,21040:13365491,41654490 +g1,21040:15805396,41654490 +g1,21040:17023710,41654490 +g1,21040:18491716,41654490 +g1,21040:19350237,41654490 +g1,21040:20733702,41654490 +g1,21040:22777114,41654490 +g1,21040:24351944,41654490 +g1,21040:25498824,41654490 +g1,21040:26717138,41654490 +$1,21040:26717138,41654490 +$1,21040:27219799,41654490 +g1,21040:27419028,41654490 +k1,21041:32583029,41654490:3737938 +g1,21041:32583029,41654490 +) +v1,21043:6630773,42339345:0,393216,0 +(1,21047:6630773,42646998:25952256,700869,196608 +g1,21047:6630773,42646998 +g1,21047:6630773,42646998 +g1,21047:6434165,42646998 +(1,21047:6434165,42646998:0,700869,196608 +r1,21053:32779637,42646998:26345472,897477,196608 +k1,21047:6434165,42646998:-26345472 +) +(1,21047:6434165,42646998:26345472,700869,196608 +[1,21047:6630773,42646998:25952256,504261,0 +(1,21045:6630773,42567176:25952256,424439,79822 +(1,21044:6630773,42567176:0,0,0 +g1,21044:6630773,42567176 +g1,21044:6630773,42567176 +g1,21044:6303093,42567176 +(1,21044:6303093,42567176:0,0,0 +) +g1,21044:6630773,42567176 +) +g1,21045:6962727,42567176 +g1,21045:7294681,42567176 +g1,21045:13269852,42567176 +g1,21045:13933760,42567176 +g1,21045:19908931,42567176 +g1,21045:20572839,42567176 +k1,21045:20572839,42567176:0 +h1,21045:23892379,42567176:0,0,0 +k1,21045:32583029,42567176:8690650 +g1,21045:32583029,42567176 +) +] +) +g1,21047:32583029,42646998 +g1,21047:6630773,42646998 +g1,21047:6630773,42646998 +g1,21047:32583029,42646998 +g1,21047:32583029,42646998 +) +h1,21047:6630773,42843606:0,0,0 +(1,21051:6630773,43708686:25952256,513147,134348 +h1,21050:6630773,43708686:983040,0,0 +k1,21050:9999264,43708686:221452 +k1,21050:13633176,43708686:221452 +k1,21050:15839714,43708686:221452 +k1,21050:16417026,43708686:221452 +k1,21050:19817629,43708686:221452 +k1,21050:22710984,43708686:221452 +k1,21050:23677580,43708686:221452 +k1,21050:24550460,43708686:221452 +k1,21050:27034215,43708686:221452 +k1,21050:28274752,43708686:221452 +k1,21050:31923737,43708686:221452 +k1,21050:32583029,43708686:0 +) +(1,21051:6630773,44573766:25952256,513147,134348 +k1,21050:9056260,44573766:202506 +k1,21050:9918058,44573766:202506 +k1,21050:12322574,44573766:202506 +k1,21050:15567917,44573766:202506 +k1,21050:16456585,44573766:202506 +k1,21050:17937698,44573766:202506 +k1,21050:18826367,44573766:202507 +k1,21050:19688165,44573766:202506 +k1,21050:23083585,44573766:202506 +k1,21050:26328928,44573766:202506 +k1,21050:27159269,44573766:202506 +k1,21050:28380860,44573766:202506 +k1,21050:30554034,44573766:202506 +k1,21050:32583029,44573766:0 +) +] +(1,21053:32583029,45706769:0,0,0 +g1,21053:32583029,45706769 +) +) +] +(1,21053:6630773,47279633:25952256,0,0 +h1,21053:6630773,47279633:25952256,0,0 +) +] +(1,21053:4262630,4025873:0,0,0 +[1,21053:-473656,4025873:0,0,0 +(1,21053:-473656,-710413:0,0,0 +(1,21053:-473656,-710413:0,0,0 +g1,21053:-473656,-710413 +) +g1,21053:-473656,-710413 +) +] +) +] +!22589 +}360 Input:3458:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3459:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!200 +{361 +[1,21097:4262630,47279633:28320399,43253760,0 +(1,21097:4262630,4025873:0,0,0 +[1,21097:-473656,4025873:0,0,0 +(1,21097:-473656,-710413:0,0,0 +(1,21097:-473656,-644877:0,0,0 +k1,21097:-473656,-644877:-65536 +) +(1,21097:-473656,4736287:0,0,0 +k1,21097:-473656,4736287:5209943 +) +g1,21097:-473656,-710413 +) +] +) +[1,21097:6630773,47279633:25952256,43253760,0 +[1,21097:6630773,4812305:25952256,786432,0 +(1,21097:6630773,4812305:25952256,513147,126483 +(1,21097:6630773,4812305:25952256,513147,126483 +g1,21097:3078558,4812305 +[1,21097:3078558,4812305:0,0,0 +(1,21097:3078558,2439708:0,1703936,0 +k1,21097:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,21097:2537886,2439708:1179648,16384,0 +) +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,21097:3078558,1915420:16384,1179648,0 +) +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 +) +] +) +) +) +] +[1,21097:3078558,4812305:0,0,0 +(1,21097:3078558,2439708:0,1703936,0 +g1,21097:29030814,2439708 +g1,21097:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,21097:36151628,1915420:16384,1179648,0 +) +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 +) +] +) +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,21097:37855564,2439708:1179648,16384,0 +) +) +k1,21097:3078556,2439708:-34777008 +) +] +[1,21097:3078558,4812305:0,0,0 +(1,21097:3078558,49800853:0,16384,2228224 +k1,21097:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,21097:2537886,49800853:1179648,16384,0 +) +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,21097:3078558,51504789:16384,1179648,0 +) +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 +) +] +) +) +) +] +[1,21097:3078558,4812305:0,0,0 +(1,21097:3078558,49800853:0,16384,2228224 +g1,21097:29030814,49800853 +g1,21097:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,21097:36151628,51504789:16384,1179648,0 +) +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 +) +] +) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,21097:37855564,49800853:1179648,16384,0 +) +) +k1,21097:3078556,49800853:-34777008 +) +] +g1,21097:6630773,4812305 +k1,21097:21350816,4812305:13524666 +g1,21097:21999622,4812305 +g1,21097:25611966,4812305 +g1,21097:28956923,4812305 +g1,21097:29772190,4812305 +) +) +] +[1,21097:6630773,45706769:25952256,40108032,0 +(1,21097:6630773,45706769:25952256,40108032,0 +(1,21097:6630773,45706769:0,0,0 +g1,21097:6630773,45706769 +) +[1,21097:6630773,45706769:25952256,40108032,0 +(1,21051:6630773,6254097:25952256,513147,134348 +k1,21050:7981067,6254097:158849 +k1,21050:9008267,6254097:158848 +k1,21050:10680342,6254097:158849 +(1,21050:10680342,6254097:0,452978,115847 +r1,21097:13852302,6254097:3171960,568825,115847 +k1,21050:10680342,6254097:-3171960 +) +(1,21050:10680342,6254097:3171960,452978,115847 +k1,21050:10680342,6254097:3277 +h1,21050:13849025,6254097:0,411205,112570 +) +k1,21050:14011151,6254097:158849 +k1,21050:16497183,6254097:158849 +k1,21050:17323187,6254097:158848 +(1,21050:17323187,6254097:0,452978,115847 +r1,21097:21198571,6254097:3875384,568825,115847 +k1,21050:17323187,6254097:-3875384 +) +(1,21050:17323187,6254097:3875384,452978,115847 +k1,21050:17323187,6254097:3277 +h1,21050:21195294,6254097:0,411205,112570 +) +k1,21050:21531090,6254097:158849 +k1,21050:22709024,6254097:158849 +k1,21050:25108549,6254097:158849 +k1,21050:27223647,6254097:158848 +k1,21050:28857711,6254097:158849 +k1,21050:31563944,6254097:158849 +k1,21050:32583029,6254097:0 +) +(1,21051:6630773,7119177:25952256,505283,138281 +g1,21050:8014238,7119177 +g1,21050:10057650,7119177 +g1,21050:10872917,7119177 +g1,21050:12538842,7119177 +$1,21050:12538842,7119177 +$1,21050:13041503,7119177 +g1,21050:13240732,7119177 +g1,21050:14631406,7119177 +$1,21050:14631406,7119177 +$1,21050:15183219,7119177 +g1,21050:15382448,7119177 +k1,21051:32583029,7119177:15628372 +g1,21051:32583029,7119177 +) +v1,21053:6630773,7984257:0,393216,0 +(1,21054:6630773,12716482:25952256,5125441,0 +g1,21054:6630773,12716482 +g1,21054:6237557,12716482 +r1,21097:6368629,12716482:131072,5125441,0 +g1,21054:6567858,12716482 +g1,21054:6764466,12716482 +[1,21054:6764466,12716482:25818563,5125441,0 +(1,21054:6764466,8256734:25818563,665693,196608 +(1,21053:6764466,8256734:0,665693,196608 +r1,21097:8010564,8256734:1246098,862301,196608 +k1,21053:6764466,8256734:-1246098 +) +(1,21053:6764466,8256734:1246098,665693,196608 +) +k1,21053:8204719,8256734:194155 +k1,21053:9930937,8256734:327680 +k1,21053:12331034,8256734:194155 +k1,21053:13544275,8256734:194156 +k1,21053:16399847,8256734:194155 +k1,21053:18622997,8256734:194155 +k1,21053:19541980,8256734:194155 +k1,21053:21020641,8256734:194155 +k1,21053:22233882,8256734:194156 +k1,21053:23612273,8256734:194155 +k1,21053:25650611,8256734:194155 +k1,21053:26654136,8256734:194155 +k1,21053:27867377,8256734:194156 +$1,21053:27867377,8256734 +$1,21053:28370038,8256734 +k1,21053:30029578,8256734:194155 +k1,21053:31215293,8256734:194155 +k1,21053:32583029,8256734:0 +) +(1,21054:6764466,9121814:25818563,513147,138281 +k1,21053:8251806,9121814:295895 +k1,21053:10291614,9121814:295895 +k1,21053:11396879,9121814:295895 +k1,21053:12711859,9121814:295895 +$1,21053:12711859,9121814 +$1,21053:13263672,9121814 +k1,21053:15024951,9121814:295894 +k1,21053:16550957,9121814:295895 +k1,21053:18038297,9121814:295895 +k1,21053:19353277,9121814:295895 +k1,21053:20980208,9121814:295895 +k1,21053:22544880,9121814:295895 +k1,21053:23372272,9121814:295895 +k1,21053:24687252,9121814:295895 +k1,21053:26636619,9121814:295894 +k1,21053:27880165,9121814:295895 +k1,21053:29642756,9121814:295895 +k1,21053:31510860,9121814:295895 +k1,21053:32583029,9121814:0 +) +(1,21054:6764466,9986894:25818563,513147,134348 +k1,21053:9625457,9986894:199574 +k1,21053:11392652,9986894:199574 +k1,21053:12611311,9986894:199574 +k1,21053:15250135,9986894:199574 +k1,21053:17921727,9986894:199574 +k1,21053:19140386,9986894:199574 +k1,21053:24166031,9986894:199574 +k1,21053:25313256,9986894:199574 +(1,21053:25313256,9986894:0,452978,115847 +r1,21097:27781793,9986894:2468537,568825,115847 +k1,21053:25313256,9986894:-2468537 +) +(1,21053:25313256,9986894:2468537,452978,115847 +k1,21053:25313256,9986894:3277 +h1,21053:27778516,9986894:0,411205,112570 +) +k1,21053:27981367,9986894:199574 +k1,21053:28832369,9986894:199574 +k1,21053:30298099,9986894:199574 +k1,21053:31563944,9986894:199574 +k1,21053:32583029,9986894:0 +) +(1,21054:6764466,10851974:25818563,513147,134348 +k1,21053:8978880,10851974:146098 +k1,21053:9784271,10851974:146099 +k1,21053:10949454,10851974:146098 +k1,21053:13964719,10851974:146099 +k1,21053:15395323,10851974:146098 +k1,21053:17071688,10851974:146099 +k1,21053:17869214,10851974:146098 +k1,21053:18763078,10851974:146098 +k1,21053:20603938,10851974:146099 +k1,21053:22033231,10851974:146098 +k1,21053:24363645,10851974:146099 +k1,21053:25551765,10851974:146098 +k1,21053:28863253,10851974:146099 +k1,21053:30034334,10851974:146098 +k1,21053:32583029,10851974:0 +) +(1,21054:6764466,11717054:25818563,513147,134348 +k1,21053:9363028,11717054:257616 +k1,21053:12431483,11717054:257616 +k1,21053:13613157,11717054:257616 +k1,21053:15404971,11717054:257616 +k1,21053:18308276,11717054:257616 +k1,21053:21697201,11717054:257615 +k1,21053:23146262,11717054:257616 +k1,21053:25557391,11717054:257616 +k1,21053:27615936,11717054:257616 +k1,21053:29064997,11717054:257616 +k1,21053:29772190,11717054:257616 +k1,21053:32583029,11717054:0 +) +(1,21054:6764466,12582134:25818563,505283,134348 +g1,21053:10046508,12582134 +g1,21053:12468063,12582134 +k1,21054:32583029,12582134:18140366 +g1,21054:32583029,12582134 +) +] +g1,21054:32583029,12716482 +) +h1,21054:6630773,12716482:0,0,0 +(1,21057:6630773,13581562:25952256,513147,134348 +h1,21056:6630773,13581562:983040,0,0 +k1,21056:11359196,13581562:223478 +k1,21056:12241965,13581562:223477 +k1,21056:14167413,13581562:223478 +k1,21056:15617070,13581562:223478 +k1,21056:18709713,13581562:223477 +k1,21056:20037473,13581562:223478 +k1,21056:21008717,13581562:223478 +k1,21056:24005678,13581562:223477 +k1,21056:24845194,13581562:223478 +k1,21056:25424531,13581562:223477 +k1,21056:27850019,13581562:223478 +k1,21056:29485143,13581562:223478 +k1,21056:30394782,13581562:223477 +k1,21056:31896867,13581562:223478 +k1,21056:32583029,13581562:0 +) +(1,21057:6630773,14446642:25952256,513147,134348 +k1,21056:9800234,14446642:147596 +k1,21056:10607123,14446642:147597 +k1,21056:12326928,14446642:147596 +k1,21056:14487790,14446642:147596 +k1,21056:15294679,14446642:147597 +k1,21056:16626511,14446642:147596 +k1,21056:18934829,14446642:147596 +k1,21056:20366932,14446642:147597 +k1,21056:22187007,14446642:147596 +k1,21056:23446095,14446642:147597 +k1,21056:26528393,14446642:147596 +k1,21056:27292027,14446642:147596 +k1,21056:29041324,14446642:147597 +k1,21056:30886302,14446642:147596 +k1,21056:32583029,14446642:0 +) +(1,21057:6630773,15311722:25952256,513147,134348 +k1,21056:7801355,15311722:179022 +k1,21056:10369165,15311722:179023 +k1,21056:12636819,15311722:179022 +k1,21056:15685008,15311722:179023 +k1,21056:17148536,15311722:179022 +k1,21056:18319119,15311722:179023 +k1,21056:19833109,15311722:179022 +k1,21056:21429676,15311722:179023 +k1,21056:24889430,15311722:179022 +k1,21056:28693249,15311722:179023 +k1,21056:30137116,15311722:179022 +k1,21056:30975431,15311722:179023 +k1,21056:32583029,15311722:0 +) +(1,21057:6630773,16176802:25952256,505283,134348 +g1,21056:8021447,16176802 +g1,21056:9555644,16176802 +g1,21056:12334370,16176802 +g1,21056:13295127,16176802 +g1,21056:16066644,16176802 +g1,21056:16621733,16176802 +g1,21056:18104157,16176802 +g1,21056:20247184,16176802 +g1,21056:21730919,16176802 +g1,21056:23034430,16176802 +g1,21056:23981425,16176802 +g1,21056:25981583,16176802 +k1,21057:32583029,16176802:4278850 +g1,21057:32583029,16176802 +) +v1,21059:6630773,17041882:0,393216,0 +(1,21060:6630773,20132647:25952256,3483981,0 +g1,21060:6630773,20132647 +g1,21060:6237557,20132647 +r1,21097:6368629,20132647:131072,3483981,0 +g1,21060:6567858,20132647 +g1,21060:6764466,20132647 +[1,21060:6764466,20132647:25818563,3483981,0 +(1,21060:6764466,17403059:25818563,754393,260573 +(1,21059:6764466,17403059:0,754393,260573 +r1,21097:8010564,17403059:1246098,1014966,260573 +k1,21059:6764466,17403059:-1246098 +) +(1,21059:6764466,17403059:1246098,754393,260573 +) +k1,21059:8210038,17403059:199474 +k1,21059:8537718,17403059:327680 +k1,21059:9214949,17403059:199474 +k1,21059:10584897,17403059:199475 +k1,21059:12251067,17403059:199474 +k1,21059:13647884,17403059:199474 +k1,21059:14203218,17403059:199474 +k1,21059:17206978,17403059:199474 +k1,21059:19350251,17403059:199475 +k1,21059:20741170,17403059:199474 +k1,21059:22489260,17403059:199474 +k1,21059:23340162,17403059:199474 +k1,21059:25801939,17403059:199474 +k1,21059:27693554,17403059:199475 +k1,21059:28552320,17403059:199474 +k1,21059:29540192,17403059:199474 +k1,21059:32583029,17403059:0 +) +(1,21060:6764466,18268139:25818563,513147,134348 +k1,21059:8111283,18268139:176344 +k1,21059:10468011,18268139:176345 +k1,21059:11841698,18268139:176344 +k1,21059:13037128,18268139:176345 +k1,21059:15096321,18268139:176344 +k1,21059:17259061,18268139:176344 +k1,21059:19478163,18268139:176345 +k1,21059:22907059,18268139:176344 +k1,21059:23541501,18268139:176345 +k1,21059:25111796,18268139:176344 +(1,21059:25111796,18268139:0,452978,115847 +r1,21097:29338892,18268139:4227096,568825,115847 +k1,21059:25111796,18268139:-4227096 +) +(1,21059:25111796,18268139:4227096,452978,115847 +g1,21059:25818497,18268139 +h1,21059:29335615,18268139:0,411205,112570 +) +k1,21059:29688907,18268139:176345 +k1,21059:31246095,18268139:176344 +k1,21059:32583029,18268139:0 +) +(1,21060:6764466,19133219:25818563,513147,134348 +k1,21059:8620490,19133219:211070 +k1,21059:11324549,19133219:211069 +k1,21059:13025908,19133219:211070 +k1,21059:14393687,19133219:211069 +k1,21059:15705762,19133219:211070 +k1,21059:16272691,19133219:211069 +k1,21059:18067766,19133219:211070 +k1,21059:20048307,19133219:211069 +k1,21059:20918669,19133219:211070 +k1,21059:22148823,19133219:211069 +k1,21059:25262483,19133219:211070 +k1,21059:26132844,19133219:211069 +k1,21059:29236673,19133219:211070 +k1,21059:30519911,19133219:211069 +k1,21059:31835263,19133219:211070 +k1,21059:32583029,19133219:0 +) +(1,21060:6764466,19998299:25818563,513147,134348 +g1,21059:7576457,19998299 +g1,21059:9081819,19998299 +k1,21060:32583029,19998299:19015926 +g1,21060:32583029,19998299 +) +] +g1,21060:32583029,20132647 +) +h1,21060:6630773,20132647:0,0,0 +(1,21063:6630773,20997727:25952256,513147,134348 +h1,21062:6630773,20997727:983040,0,0 +k1,21062:8228440,20997727:144734 +k1,21062:8904670,20997727:144733 +k1,21062:10335220,20997727:144734 +k1,21062:13109914,20997727:144734 +k1,21062:13906075,20997727:144733 +k1,21062:16313112,20997727:144734 +k1,21062:17476931,20997727:144734 +k1,21062:19887245,20997727:144734 +k1,21062:22018374,20997727:144733 +k1,21062:23676334,20997727:144734 +k1,21062:24768719,20997727:144734 +k1,21062:28010683,20997727:144733 +k1,21062:28921533,20997727:144734 +k1,21062:32583029,20997727:0 +) +(1,21063:6630773,21862807:25952256,505283,126483 +k1,21063:32583030,21862807:24170988 +g1,21063:32583030,21862807 +) +v1,21065:6630773,22547662:0,393216,0 +(1,21069:6630773,22881739:25952256,727293,196608 +g1,21069:6630773,22881739 +g1,21069:6630773,22881739 +g1,21069:6434165,22881739 +(1,21069:6434165,22881739:0,727293,196608 +r1,21097:32779637,22881739:26345472,923901,196608 +k1,21069:6434165,22881739:-26345472 +) +(1,21069:6434165,22881739:26345472,727293,196608 +[1,21069:6630773,22881739:25952256,530685,0 +(1,21067:6630773,22775493:25952256,424439,106246 +(1,21066:6630773,22775493:0,0,0 +g1,21066:6630773,22775493 +g1,21066:6630773,22775493 +g1,21066:6303093,22775493 +(1,21066:6303093,22775493:0,0,0 +) +g1,21066:6630773,22775493 +) +g1,21067:9950312,22775493 +g1,21067:10946174,22775493 +g1,21067:16921345,22775493 +g1,21067:17585253,22775493 +g1,21067:23892378,22775493 +g1,21067:24556286,22775493 +h1,21067:28207779,22775493:0,0,0 +k1,21067:32583029,22775493:4375250 +g1,21067:32583029,22775493 +) +] +) +g1,21069:32583029,22881739 +g1,21069:6630773,22881739 +g1,21069:6630773,22881739 +g1,21069:32583029,22881739 +g1,21069:32583029,22881739 +) +h1,21069:6630773,23078347:0,0,0 +(1,21075:6630773,25195165:25952256,564462,147783 +(1,21075:6630773,25195165:2899444,534184,12975 +g1,21075:6630773,25195165 +g1,21075:9530217,25195165 +) +g1,21075:12826154,25195165 +g1,21075:13451892,25195165 +g1,21075:15187810,25195165 +k1,21075:32583029,25195165:15135931 +g1,21075:32583029,25195165 +) +(1,21078:6630773,26453461:25952256,513147,134348 +k1,21077:9309502,26453461:184429 +k1,21077:10598213,26453461:184429 +k1,21077:11530409,26453461:184430 +k1,21077:14096416,26453461:184429 +k1,21077:15747541,26453461:184429 +k1,21077:17499591,26453461:184429 +k1,21077:20171112,26453461:184430 +k1,21077:21038426,26453461:184429 +k1,21077:21984383,26453461:184429 +k1,21077:25421364,26453461:184429 +k1,21077:28096817,26453461:184430 +k1,21077:30092661,26453461:184429 +k1,21077:32583029,26453461:0 +) +(1,21078:6630773,27318541:25952256,513147,134348 +k1,21077:8043125,27318541:220907 +k1,21077:10297613,27318541:220906 +k1,21077:11537605,27318541:220907 +k1,21077:14593599,27318541:220907 +k1,21077:17321912,27318541:220906 +k1,21077:18360708,27318541:220907 +k1,21077:21710959,27318541:220907 +k1,21077:23960861,27318541:220907 +k1,21077:24639864,27318541:220906 +k1,21077:25392268,27318541:220907 +k1,21077:26898991,27318541:220907 +k1,21077:29749857,27318541:220906 +k1,21077:30622192,27318541:220907 +k1,21077:32583029,27318541:0 +) +(1,21078:6630773,28183621:25952256,513147,126483 +g1,21077:7185862,28183621 +g1,21077:8841956,28183621 +g1,21077:13681134,28183621 +g1,21077:15866759,28183621 +g1,21077:19772704,28183621 +k1,21078:32583029,28183621:9941159 +g1,21078:32583029,28183621 +) +(1,21080:6630773,29048701:25952256,513147,126483 +h1,21079:6630773,29048701:983040,0,0 +k1,21079:9865018,29048701:152087 +k1,21079:10885457,29048701:152087 +k1,21079:12434116,29048701:152087 +k1,21079:13237631,29048701:152087 +k1,21079:15446238,29048701:152087 +k1,21079:17326509,29048701:152087 +k1,21079:18497681,29048701:152087 +k1,21079:19932964,29048701:152088 +k1,21079:22245118,29048701:152087 +k1,21079:24051989,29048701:152087 +k1,21079:24735573,29048701:152087 +k1,21079:27174867,29048701:152087 +k1,21079:28136324,29048701:152087 +k1,21079:29818677,29048701:152087 +k1,21079:30622192,29048701:152087 +k1,21079:32583029,29048701:0 +) +(1,21080:6630773,29913781:25952256,513147,126483 +k1,21079:7174107,29913781:187474 +k1,21079:8644776,29913781:187474 +k1,21079:11701415,29913781:187473 +k1,21079:12842438,29913781:187474 +k1,21079:14134194,29913781:187474 +k1,21079:16460108,29913781:187474 +k1,21079:18038256,29913781:187474 +k1,21079:19244814,29913781:187473 +k1,21079:22267375,29913781:187474 +k1,21079:24441245,29913781:187474 +k1,21079:25280147,29913781:187474 +k1,21079:25823481,29913781:187474 +k1,21079:28522295,29913781:187474 +k1,21079:29901213,29913781:187473 +k1,21079:31286030,29913781:187474 +k1,21079:31931601,29913781:187474 +k1,21079:32583029,29913781:0 +) +(1,21080:6630773,30778861:25952256,513147,134348 +k1,21079:9561392,30778861:168276 +k1,21079:11337267,30778861:168277 +k1,21079:12191705,30778861:168276 +k1,21079:14831999,30778861:168276 +k1,21079:15818165,30778861:168277 +k1,21079:16854793,30778861:168276 +k1,21079:18155531,30778861:168276 +k1,21079:19071573,30778861:168276 +k1,21079:21427442,30778861:168277 +k1,21079:21951578,30778861:168276 +k1,21079:26348892,30778861:168276 +k1,21079:28503565,30778861:168277 +k1,21079:30631367,30778861:168276 +k1,21079:32583029,30778861:0 +) +(1,21080:6630773,31643941:25952256,513147,126483 +g1,21079:8272449,31643941 +g1,21079:8827538,31643941 +g1,21079:11895933,31643941 +g1,21079:12963514,31643941 +g1,21079:13978011,31643941 +g1,21079:15243511,31643941 +g1,21079:16535225,31643941 +k1,21080:32583029,31643941:12019961 +g1,21080:32583029,31643941 +) +v1,21082:6630773,32328796:0,393216,0 +(1,21087:6630773,33347728:25952256,1412148,196608 +g1,21087:6630773,33347728 +g1,21087:6630773,33347728 +g1,21087:6434165,33347728 +(1,21087:6434165,33347728:0,1412148,196608 +r1,21097:32779637,33347728:26345472,1608756,196608 +k1,21087:6434165,33347728:-26345472 +) +(1,21087:6434165,33347728:26345472,1412148,196608 +[1,21087:6630773,33347728:25952256,1215540,0 +(1,21084:6630773,32556627:25952256,424439,106246 +(1,21083:6630773,32556627:0,0,0 +g1,21083:6630773,32556627 +g1,21083:6630773,32556627 +g1,21083:6303093,32556627 +(1,21083:6303093,32556627:0,0,0 +) +g1,21083:6630773,32556627 +) +g1,21084:9618358,32556627 +g1,21084:10614220,32556627 +g1,21084:14265713,32556627 +g1,21084:14929621,32556627 +g1,21084:18581115,32556627 +g1,21084:19245023,32556627 +g1,21084:25552148,32556627 +g1,21084:26216056,32556627 +h1,21084:29867549,32556627:0,0,0 +k1,21084:32583029,32556627:2715480 +g1,21084:32583029,32556627 +) +(1,21085:6630773,33241482:25952256,424439,106246 +h1,21085:6630773,33241482:0,0,0 +g1,21085:7294681,33241482 +g1,21085:7958589,33241482 +h1,21085:10614220,33241482:0,0,0 +k1,21085:32583028,33241482:21968808 +g1,21085:32583028,33241482 +) +] +) +g1,21087:32583029,33347728 +g1,21087:6630773,33347728 +g1,21087:6630773,33347728 +g1,21087:32583029,33347728 +g1,21087:32583029,33347728 +) +h1,21087:6630773,33544336:0,0,0 +(1,21090:6630773,44120361:25952256,10510489,0 +k1,21090:12599879,44120361:5969106 +h1,21089:12599879,44120361:0,0,0 +(1,21089:12599879,44120361:14014044,10510489,0 +(1,21089:12599879,44120361:14014019,10510515,0 +(1,21089:12599879,44120361:14014019,10510515,0 +(1,21089:12599879,44120361:0,10510515,0 +(1,21089:12599879,44120361:0,14208860,0 +(1,21089:12599879,44120361:18945146,14208860,0 +) +k1,21089:12599879,44120361:-18945146 +) +) +g1,21089:26613898,44120361 +) +) +) +g1,21090:26613923,44120361 +k1,21090:32583029,44120361:5969106 +) +] +(1,21097:32583029,45706769:0,0,0 +g1,21097:32583029,45706769 +) +) +] +(1,21097:6630773,47279633:25952256,0,0 +h1,21097:6630773,47279633:25952256,0,0 +) +] +(1,21097:4262630,4025873:0,0,0 +[1,21097:-473656,4025873:0,0,0 +(1,21097:-473656,-710413:0,0,0 +(1,21097:-473656,-710413:0,0,0 +g1,21097:-473656,-710413 +) +g1,21097:-473656,-710413 +) +] +) +] +!20482 +}361 Input:3460:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3461:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3462:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -360753,1683 +357415,1774 @@ Input:3463:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConso Input:3464:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3465:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3466:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3467:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3468:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3469:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!2080 -{382 -[1,21169:4262630,47279633:28320399,43253760,0 -(1,21169:4262630,4025873:0,0,0 -[1,21169:-473656,4025873:0,0,0 -(1,21169:-473656,-710413:0,0,0 -(1,21169:-473656,-644877:0,0,0 -k1,21169:-473656,-644877:-65536 +!670 +{362 +[1,21151:4262630,47279633:28320399,43253760,0 +(1,21151:4262630,4025873:0,0,0 +[1,21151:-473656,4025873:0,0,0 +(1,21151:-473656,-710413:0,0,0 +(1,21151:-473656,-644877:0,0,0 +k1,21151:-473656,-644877:-65536 ) -(1,21169:-473656,4736287:0,0,0 -k1,21169:-473656,4736287:5209943 +(1,21151:-473656,4736287:0,0,0 +k1,21151:-473656,4736287:5209943 ) -g1,21169:-473656,-710413 +g1,21151:-473656,-710413 ) ] ) -[1,21169:6630773,47279633:25952256,43253760,0 -[1,21169:6630773,4812305:25952256,786432,0 -(1,21169:6630773,4812305:25952256,505283,134348 -(1,21169:6630773,4812305:25952256,505283,134348 -g1,21169:3078558,4812305 -[1,21169:3078558,4812305:0,0,0 -(1,21169:3078558,2439708:0,1703936,0 -k1,21169:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,21169:2537886,2439708:1179648,16384,0 +[1,21151:6630773,47279633:25952256,43253760,0 +[1,21151:6630773,4812305:25952256,786432,0 +(1,21151:6630773,4812305:25952256,505283,11795 +(1,21151:6630773,4812305:25952256,505283,11795 +g1,21151:3078558,4812305 +[1,21151:3078558,4812305:0,0,0 +(1,21151:3078558,2439708:0,1703936,0 +k1,21151:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,21151:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,21169:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,21151:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,21169:3078558,4812305:0,0,0 -(1,21169:3078558,2439708:0,1703936,0 -g1,21169:29030814,2439708 -g1,21169:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,21169:36151628,1915420:16384,1179648,0 +[1,21151:3078558,4812305:0,0,0 +(1,21151:3078558,2439708:0,1703936,0 +g1,21151:29030814,2439708 +g1,21151:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,21151:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,21169:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,21151:37855564,2439708:1179648,16384,0 ) ) -k1,21169:3078556,2439708:-34777008 +k1,21151:3078556,2439708:-34777008 ) ] -[1,21169:3078558,4812305:0,0,0 -(1,21169:3078558,49800853:0,16384,2228224 -k1,21169:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,21169:2537886,49800853:1179648,16384,0 +[1,21151:3078558,4812305:0,0,0 +(1,21151:3078558,49800853:0,16384,2228224 +k1,21151:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,21151:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,21169:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,21151:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,21169:3078558,4812305:0,0,0 -(1,21169:3078558,49800853:0,16384,2228224 -g1,21169:29030814,49800853 -g1,21169:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,21169:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] -) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,21169:37855564,49800853:1179648,16384,0 -) -) -k1,21169:3078556,49800853:-34777008 -) -] -g1,21169:6630773,4812305 -g1,21169:6630773,4812305 -g1,21169:8592265,4812305 -g1,21169:11642310,4812305 -g1,21169:15396212,4812305 -k1,21169:31387652,4812305:15991440 -) -) -] -[1,21169:6630773,45706769:25952256,40108032,0 -(1,21169:6630773,45706769:25952256,40108032,0 -(1,21169:6630773,45706769:0,0,0 -g1,21169:6630773,45706769 -) -[1,21169:6630773,45706769:25952256,40108032,0 -v1,21032:6630773,6254097:0,393216,0 -(1,21042:6630773,10566261:25952256,4705380,196608 -g1,21042:6630773,10566261 -g1,21042:6630773,10566261 -g1,21042:6434165,10566261 -(1,21042:6434165,10566261:0,4705380,196608 -r1,21169:32779637,10566261:26345472,4901988,196608 -k1,21042:6434165,10566261:-26345472 -) -(1,21042:6434165,10566261:26345472,4705380,196608 -[1,21042:6630773,10566261:25952256,4508772,0 -(1,21034:6630773,6461715:25952256,404226,107478 -(1,21033:6630773,6461715:0,0,0 -g1,21033:6630773,6461715 -g1,21033:6630773,6461715 -g1,21033:6303093,6461715 -(1,21033:6303093,6461715:0,0,0 -) -g1,21033:6630773,6461715 -) -k1,21034:6630773,6461715:0 -g1,21034:11689104,6461715 -g1,21034:13902124,6461715 -g1,21034:14850562,6461715 -g1,21034:16747436,6461715 -g1,21034:17379728,6461715 -g1,21034:21805768,6461715 -h1,21034:22121914,6461715:0,0,0 -k1,21034:32583029,6461715:10461115 -g1,21034:32583029,6461715 -) -(1,21035:6630773,7127893:25952256,404226,107478 -h1,21035:6630773,7127893:0,0,0 -g1,21035:6946919,7127893 -g1,21035:7263065,7127893 -g1,21035:7579211,7127893 -g1,21035:11689105,7127893 -h1,21035:12005251,7127893:0,0,0 -k1,21035:32583029,7127893:20577778 -g1,21035:32583029,7127893 -) -(1,21036:6630773,7794071:25952256,404226,107478 -h1,21036:6630773,7794071:0,0,0 -g1,21036:6946919,7794071 -g1,21036:7263065,7794071 -g1,21036:7579211,7794071 -g1,21036:12637542,7794071 -g1,21036:13269834,7794071 -g1,21036:14534417,7794071 -g1,21036:16431291,7794071 -g1,21036:17063583,7794071 -g1,21036:18644312,7794071 -g1,21036:20541186,7794071 -g1,21036:21173478,7794071 -g1,21036:23070353,7794071 -h1,21036:23386499,7794071:0,0,0 -k1,21036:32583029,7794071:9196530 -g1,21036:32583029,7794071 -) -(1,21037:6630773,8460249:25952256,404226,101187 -h1,21037:6630773,8460249:0,0,0 -g1,21037:6946919,8460249 -g1,21037:7263065,8460249 -g1,21037:7579211,8460249 -g1,21037:9792232,8460249 -g1,21037:10424524,8460249 -k1,21037:10424524,8460249:0 -h1,21037:17063584,8460249:0,0,0 -k1,21037:32583029,8460249:15519445 -g1,21037:32583029,8460249 -) -(1,21038:6630773,9126427:25952256,404226,101187 -h1,21038:6630773,9126427:0,0,0 -g1,21038:6946919,9126427 -g1,21038:7263065,9126427 -g1,21038:7579211,9126427 -g1,21038:7895357,9126427 -g1,21038:8211503,9126427 -g1,21038:8527649,9126427 -g1,21038:8843795,9126427 -g1,21038:9159941,9126427 -g1,21038:9792233,9126427 -g1,21038:10424525,9126427 -k1,21038:10424525,9126427:0 -h1,21038:19908897,9126427:0,0,0 -k1,21038:32583029,9126427:12674132 -g1,21038:32583029,9126427 -) -(1,21039:6630773,9792605:25952256,404226,107478 -h1,21039:6630773,9792605:0,0,0 -g1,21039:6946919,9792605 -g1,21039:7263065,9792605 -g1,21039:7579211,9792605 -g1,21039:7895357,9792605 -g1,21039:8211503,9792605 -g1,21039:8527649,9792605 -g1,21039:8843795,9792605 -g1,21039:9159941,9792605 -g1,21039:11056815,9792605 -g1,21039:11689107,9792605 -g1,21039:13902127,9792605 -k1,21039:13902127,9792605:0 -h1,21039:18012021,9792605:0,0,0 -k1,21039:32583029,9792605:14571008 -g1,21039:32583029,9792605 -) -(1,21040:6630773,10458783:25952256,410518,107478 -h1,21040:6630773,10458783:0,0,0 -g1,21040:6946919,10458783 -g1,21040:7263065,10458783 -g1,21040:7579211,10458783 -g1,21040:7895357,10458783 -g1,21040:8211503,10458783 -g1,21040:8527649,10458783 -g1,21040:8843795,10458783 -g1,21040:9159941,10458783 -g1,21040:12005252,10458783 -g1,21040:12637544,10458783 -g1,21040:20541188,10458783 -g1,21040:21173480,10458783 -g1,21040:24651083,10458783 -h1,21040:27496394,10458783:0,0,0 -k1,21040:32583029,10458783:5086635 -g1,21040:32583029,10458783 -) -] -) -g1,21042:32583029,10566261 -g1,21042:6630773,10566261 -g1,21042:6630773,10566261 -g1,21042:32583029,10566261 -g1,21042:32583029,10566261 -) -h1,21042:6630773,10762869:0,0,0 -(1,21045:6630773,20343083:25952256,9083666,0 -k1,21045:10523651,20343083:3892878 -h1,21044:10523651,20343083:0,0,0 -(1,21044:10523651,20343083:18166500,9083666,0 -(1,21044:10523651,20343083:18167376,9083688,0 -(1,21044:10523651,20343083:18167376,9083688,0 -(1,21044:10523651,20343083:0,9083688,0 -(1,21044:10523651,20343083:0,14208860,0 -(1,21044:10523651,20343083:28417720,14208860,0 -) -k1,21044:10523651,20343083:-28417720 -) -) -g1,21044:28691027,20343083 -) -) -) -g1,21045:28690151,20343083 -k1,21045:32583029,20343083:3892878 -) -(1,21052:6630773,21184571:25952256,513147,134348 -h1,21051:6630773,21184571:983040,0,0 -k1,21051:8724054,21184571:156692 -k1,21051:9985029,21184571:156693 -k1,21051:11427537,21184571:156692 -k1,21051:12676715,21184571:156693 -k1,21051:13189267,21184571:156692 -k1,21051:16320639,21184571:156693 -k1,21051:18343141,21184571:156692 -k1,21051:20538003,21184571:156692 -k1,21051:21310734,21184571:156693 -k1,21051:21823286,21184571:156692 -k1,21051:24664989,21184571:156693 -k1,21051:26013126,21184571:156692 -k1,21051:27262304,21184571:156693 -k1,21051:30114492,21184571:156692 -(1,21051:30114492,21184571:0,452978,115847 -r1,21169:32583029,21184571:2468537,568825,115847 -k1,21051:30114492,21184571:-2468537 -) -(1,21051:30114492,21184571:2468537,452978,115847 -k1,21051:30114492,21184571:3277 -h1,21051:32579752,21184571:0,411205,112570 -) -k1,21051:32583029,21184571:0 -) -(1,21052:6630773,22026059:25952256,513147,126483 -k1,21051:7529125,22026059:246924 -k1,21051:9518651,22026059:246924 -k1,21051:10223672,22026059:246924 -k1,21051:11086634,22026059:246924 -k1,21051:13030940,22026059:246924 -k1,21051:15196758,22026059:246924 -k1,21051:16214385,22026059:246924 -k1,21051:19901294,22026059:246924 -k1,21051:20679715,22026059:246924 -k1,21051:23639174,22026059:246924 -k1,21051:24572260,22026059:246924 -k1,21051:25687536,22026059:246924 -k1,21051:26749728,22026059:246924 -k1,21051:28394535,22026059:246924 -k1,21051:29589110,22026059:246924 -(1,21051:29589110,22026059:0,452978,115847 -r1,21169:32409359,22026059:2820249,568825,115847 -k1,21051:29589110,22026059:-2820249 -) -(1,21051:29589110,22026059:2820249,452978,115847 -k1,21051:29589110,22026059:3277 -h1,21051:32406082,22026059:0,411205,112570 -) -k1,21051:32583029,22026059:0 -) -(1,21052:6630773,22867547:25952256,505283,134348 -k1,21051:7610973,22867547:352365 -k1,21051:9166579,22867547:352365 -k1,21051:12180362,22867547:352366 -k1,21051:13401079,22867547:352365 -k1,21051:15039260,22867547:352365 -k1,21051:16326168,22867547:352365 -k1,21051:17862769,22867547:352365 -k1,21051:20059317,22867547:352365 -k1,21051:21063111,22867547:352366 -k1,21051:25359433,22867547:352365 -k1,21051:27707369,22867547:352365 -k1,21051:31298523,22867547:352365 -k1,21052:32583029,22867547:0 -) -(1,21052:6630773,23709035:25952256,505283,134348 -(1,21051:6630773,23709035:0,452978,115847 -r1,21169:10857869,23709035:4227096,568825,115847 -k1,21051:6630773,23709035:-4227096 -) -(1,21051:6630773,23709035:4227096,452978,115847 -k1,21051:6630773,23709035:3277 -h1,21051:10854592,23709035:0,411205,112570 -) -k1,21051:11013332,23709035:155463 -k1,21051:13547097,23709035:155463 -k1,21051:16373808,23709035:155464 -k1,21051:19931900,23709035:155463 -k1,21051:23210809,23709035:155463 -k1,21051:24127800,23709035:155463 -k1,21051:26937472,23709035:155464 -k1,21051:30093829,23709035:155463 -k1,21051:30605152,23709035:155463 -k1,21051:32583029,23709035:0 -) -(1,21052:6630773,24550523:25952256,513147,126483 -g1,21051:7489294,24550523 -k1,21052:32583029,24550523:21149778 -g1,21052:32583029,24550523 -) -v1,21054:6630773,25647713:0,393216,0 -(1,21064:6630773,29953586:25952256,4699089,196608 -g1,21064:6630773,29953586 -g1,21064:6630773,29953586 -g1,21064:6434165,29953586 -(1,21064:6434165,29953586:0,4699089,196608 -r1,21169:32779637,29953586:26345472,4895697,196608 -k1,21064:6434165,29953586:-26345472 -) -(1,21064:6434165,29953586:26345472,4699089,196608 -[1,21064:6630773,29953586:25952256,4502481,0 -(1,21056:6630773,25855331:25952256,404226,101187 -(1,21055:6630773,25855331:0,0,0 -g1,21055:6630773,25855331 -g1,21055:6630773,25855331 -g1,21055:6303093,25855331 -(1,21055:6303093,25855331:0,0,0 -) -g1,21055:6630773,25855331 -) -g1,21056:10108376,25855331 -g1,21056:11056814,25855331 -h1,21056:14218271,25855331:0,0,0 -k1,21056:32583029,25855331:18364758 -g1,21056:32583029,25855331 -) -(1,21057:6630773,26521509:25952256,404226,107478 -h1,21057:6630773,26521509:0,0,0 -g1,21057:11689104,26521509 -g1,21057:13902124,26521509 -g1,21057:15166707,26521509 -h1,21057:15482853,26521509:0,0,0 -k1,21057:32583029,26521509:17100176 -g1,21057:32583029,26521509 -) -(1,21058:6630773,27187687:25952256,404226,107478 -h1,21058:6630773,27187687:0,0,0 -g1,21058:6946919,27187687 -g1,21058:7263065,27187687 -g1,21058:7579211,27187687 -g1,21058:11689105,27187687 -h1,21058:12005251,27187687:0,0,0 -k1,21058:32583029,27187687:20577778 -g1,21058:32583029,27187687 -) -(1,21059:6630773,27853865:25952256,404226,101187 -h1,21059:6630773,27853865:0,0,0 -g1,21059:6946919,27853865 -g1,21059:7263065,27853865 -g1,21059:7579211,27853865 -g1,21059:11056814,27853865 -g1,21059:11689106,27853865 -g1,21059:15166709,27853865 -g1,21059:15799001,27853865 -g1,21059:19908895,27853865 -h1,21059:20225041,27853865:0,0,0 -k1,21059:32583029,27853865:12357988 -g1,21059:32583029,27853865 -) -(1,21060:6630773,28520043:25952256,404226,101187 -h1,21060:6630773,28520043:0,0,0 -g1,21060:6946919,28520043 -g1,21060:7263065,28520043 -g1,21060:7579211,28520043 -g1,21060:15166708,28520043 -g1,21060:15799000,28520043 -k1,21060:15799000,28520043:0 -h1,21060:22438060,28520043:0,0,0 -k1,21060:32583029,28520043:10144969 -g1,21060:32583029,28520043 -) -(1,21061:6630773,29186221:25952256,404226,82312 -h1,21061:6630773,29186221:0,0,0 -g1,21061:6946919,29186221 -g1,21061:7263065,29186221 -g1,21061:7579211,29186221 -g1,21061:7895357,29186221 -g1,21061:8211503,29186221 -g1,21061:8527649,29186221 -g1,21061:8843795,29186221 -g1,21061:9159941,29186221 -g1,21061:9476087,29186221 -g1,21061:9792233,29186221 -g1,21061:10108379,29186221 -g1,21061:10424525,29186221 -g1,21061:10740671,29186221 -g1,21061:11056817,29186221 -g1,21061:11372963,29186221 -g1,21061:11689109,29186221 -g1,21061:12005255,29186221 -g1,21061:12321401,29186221 -g1,21061:12637547,29186221 -g1,21061:12953693,29186221 -g1,21061:13269839,29186221 -g1,21061:13585985,29186221 -g1,21061:15799005,29186221 -g1,21061:16431297,29186221 -k1,21061:16431297,29186221:0 -h1,21061:19276611,29186221:0,0,0 -k1,21061:32583029,29186221:13306418 -g1,21061:32583029,29186221 -) -(1,21062:6630773,29852399:25952256,404226,101187 -h1,21062:6630773,29852399:0,0,0 -g1,21062:6946919,29852399 -g1,21062:7263065,29852399 -g1,21062:7579211,29852399 -g1,21062:7895357,29852399 -g1,21062:8211503,29852399 -g1,21062:8527649,29852399 -g1,21062:8843795,29852399 -g1,21062:9159941,29852399 -g1,21062:9476087,29852399 -g1,21062:9792233,29852399 -g1,21062:10108379,29852399 -g1,21062:10424525,29852399 -g1,21062:10740671,29852399 -g1,21062:11056817,29852399 -g1,21062:11372963,29852399 -g1,21062:11689109,29852399 -g1,21062:12005255,29852399 -g1,21062:12321401,29852399 -g1,21062:12637547,29852399 -g1,21062:12953693,29852399 -g1,21062:13269839,29852399 -g1,21062:13585985,29852399 -g1,21062:15799005,29852399 -g1,21062:16431297,29852399 -g1,21062:23070358,29852399 -g1,21062:26231816,29852399 -h1,21062:29393273,29852399:0,0,0 -k1,21062:32583029,29852399:3189756 -g1,21062:32583029,29852399 -) -] -) -g1,21064:32583029,29953586 -g1,21064:6630773,29953586 -g1,21064:6630773,29953586 -g1,21064:32583029,29953586 -g1,21064:32583029,29953586 -) -h1,21064:6630773,30150194:0,0,0 -(1,21067:6630773,39730408:25952256,9083666,0 -k1,21067:10523651,39730408:3892878 -h1,21066:10523651,39730408:0,0,0 -(1,21066:10523651,39730408:18166500,9083666,0 -(1,21066:10523651,39730408:18167376,9083688,0 -(1,21066:10523651,39730408:18167376,9083688,0 -(1,21066:10523651,39730408:0,9083688,0 -(1,21066:10523651,39730408:0,14208860,0 -(1,21066:10523651,39730408:28417720,14208860,0 -) -k1,21066:10523651,39730408:-28417720 -) -) -g1,21066:28691027,39730408 -) -) -) -g1,21067:28690151,39730408 -k1,21067:32583029,39730408:3892878 -) -(1,21074:6630773,40571896:25952256,513147,126483 -h1,21073:6630773,40571896:983040,0,0 -k1,21073:8269107,40571896:167706 -k1,21073:11199187,40571896:167737 -k1,21073:14351434,40571896:167737 -k1,21073:15535633,40571896:167736 -k1,21073:18364787,40571896:167737 -k1,21073:20815143,40571896:167737 -k1,21073:22939130,40571896:167737 -k1,21073:23854633,40571896:167737 -k1,21073:24673798,40571896:167737 -k1,21073:25934020,40571896:167737 -(1,21073:25934020,40571896:0,452978,115847 -r1,21169:28402557,40571896:2468537,568825,115847 -k1,21073:25934020,40571896:-2468537 -) -(1,21073:25934020,40571896:2468537,452978,115847 -k1,21073:25934020,40571896:3277 -h1,21073:28399280,40571896:0,411205,112570 -) -k1,21073:28570294,40571896:167737 -k1,21073:31635378,40571896:167737 -k1,21073:32583029,40571896:0 -) -(1,21074:6630773,41413384:25952256,513147,134348 -k1,21073:8269921,41413384:187526 -k1,21073:11650362,41413384:187527 -k1,21073:13525440,41413384:187526 -k1,21073:17067099,41413384:187526 -k1,21073:18539132,41413384:187527 -k1,21073:20593779,41413384:187526 -k1,21073:21529071,41413384:187526 -k1,21073:24014946,41413384:187527 -k1,21073:24668433,41413384:187526 -k1,21073:25875045,41413384:187527 -k1,21073:27246807,41413384:187526 -k1,21073:29278516,41413384:187526 -k1,21073:30996309,41413384:187527 -k1,21073:31835263,41413384:187526 -k1,21073:32583029,41413384:0 -) -(1,21074:6630773,42254872:25952256,513147,134348 -g1,21073:10787721,42254872 -g1,21073:16623702,42254872 -g1,21073:19150114,42254872 -g1,21073:20008635,42254872 -g1,21073:21142407,42254872 -g1,21073:22027798,42254872 -k1,21074:32583029,42254872:7293504 -g1,21074:32583029,42254872 -) -v1,21076:6630773,43527372:0,393216,0 -(1,21169:6630773,45706769:25952256,2572613,0 -g1,21169:6630773,45706769 -g1,21169:6303093,45706769 -r1,21169:6401397,45706769:98304,2572613,0 -g1,21169:6600626,45706769 -g1,21169:6797234,45706769 -[1,21169:6797234,45706769:25785795,2572613,0 -(1,21077:6797234,43889445:25785795,755289,196608 -(1,21076:6797234,43889445:0,755289,196608 -r1,21169:8134168,43889445:1336934,951897,196608 -k1,21076:6797234,43889445:-1336934 -) -(1,21076:6797234,43889445:1336934,755289,196608 -) -k1,21076:8338262,43889445:204094 -k1,21076:8665942,43889445:327680 -k1,21076:12636518,43889445:209465 -k1,21076:15630608,43889445:209465 -(1,21076:15630608,43889445:0,452978,115847 -r1,21169:18099145,43889445:2468537,568825,115847 -k1,21076:15630608,43889445:-2468537 -) -(1,21076:15630608,43889445:2468537,452978,115847 -k1,21076:15630608,43889445:3277 -h1,21076:18095868,43889445:0,411205,112570 -) -k1,21076:18308610,43889445:209465 -k1,21076:19738355,43889445:209465 -(1,21076:19738355,43889445:0,452978,115847 -r1,21169:23965451,43889445:4227096,568825,115847 -k1,21076:19738355,43889445:-4227096 -) -(1,21076:19738355,43889445:4227096,452978,115847 -k1,21076:19738355,43889445:3277 -h1,21076:23962174,43889445:0,411205,112570 -) -k1,21076:24343215,43889445:204094 -k1,21076:27337177,43889445:204094 -(1,21076:27337177,43889445:0,452978,115847 -r1,21169:29805714,43889445:2468537,568825,115847 -k1,21076:27337177,43889445:-2468537 -) -(1,21076:27337177,43889445:2468537,452978,115847 -k1,21076:27337177,43889445:3277 -h1,21076:29802437,43889445:0,411205,112570 -) -k1,21076:30009808,43889445:204094 -k1,21076:31896867,43889445:204094 -k1,21076:32583029,43889445:0 -) -(1,21077:6797234,44730933:25785795,513147,134348 -k1,21076:7777325,44730933:209388 -k1,21076:11059040,44730933:209387 -k1,21076:11624288,44730933:209388 -k1,21076:14808354,44730933:209387 -k1,21076:17057222,44730933:209388 -k1,21076:18647453,44730933:209387 -k1,21076:19388338,44730933:209388 -k1,21076:20951699,44730933:209387 -k1,21076:23138308,44730933:209388 -k1,21076:24033857,44730933:209387 -k1,21076:25262330,44730933:209388 -k1,21076:28446396,44730933:209387 -k1,21076:30521594,44730933:209388 -k1,21076:31835263,44730933:209387 -k1,21076:32583029,44730933:0 -) -(1,21077:6797234,45572421:25785795,505283,134348 -k1,21076:9392238,45572421:244883 -k1,21076:15447544,45572421:244884 -k1,21076:17475662,45572421:244883 -k1,21076:19455939,45572421:244884 -(1,21076:19455939,45572421:0,452978,115847 -r1,21169:23683035,45572421:4227096,568825,115847 -k1,21076:19455939,45572421:-4227096 -) -(1,21076:19455939,45572421:4227096,452978,115847 -k1,21076:19455939,45572421:3277 -h1,21076:23679758,45572421:0,411205,112570 -) -k1,21076:23927918,45572421:244883 -k1,21076:25376043,45572421:244884 -k1,21076:26152423,45572421:244883 -k1,21076:27463578,45572421:244884 -k1,21076:30512091,45572421:244883 -k1,21076:32583029,45572421:0 -) -] -g1,21169:32583029,45706769 -) -] -(1,21169:32583029,45706769:0,0,0 -g1,21169:32583029,45706769 -) -) -] -(1,21169:6630773,47279633:25952256,0,0 -h1,21169:6630773,47279633:25952256,0,0 -) -] -(1,21169:4262630,4025873:0,0,0 -[1,21169:-473656,4025873:0,0,0 -(1,21169:-473656,-710413:0,0,0 -(1,21169:-473656,-710413:0,0,0 -g1,21169:-473656,-710413 +[1,21151:3078558,4812305:0,0,0 +(1,21151:3078558,49800853:0,16384,2228224 +g1,21151:29030814,49800853 +g1,21151:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,21151:36151628,51504789:16384,1179648,0 +) +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 +) +] +) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,21151:37855564,49800853:1179648,16384,0 +) +) +k1,21151:3078556,49800853:-34777008 +) +] +g1,21151:6630773,4812305 +g1,21151:6630773,4812305 +g1,21151:9264009,4812305 +k1,21151:31387653,4812305:22123644 +) +) +] +[1,21151:6630773,45706769:25952256,40108032,0 +(1,21151:6630773,45706769:25952256,40108032,0 +(1,21151:6630773,45706769:0,0,0 +g1,21151:6630773,45706769 +) +[1,21151:6630773,45706769:25952256,40108032,0 +v1,21097:6630773,6254097:0,393216,0 +(1,21098:6630773,8391082:25952256,2530201,0 +g1,21098:6630773,8391082 +g1,21098:6237557,8391082 +r1,21151:6368629,8391082:131072,2530201,0 +g1,21098:6567858,8391082 +g1,21098:6764466,8391082 +[1,21098:6764466,8391082:25818563,2530201,0 +(1,21098:6764466,6526574:25818563,665693,196608 +(1,21097:6764466,6526574:0,665693,196608 +r1,21151:8010564,6526574:1246098,862301,196608 +k1,21097:6764466,6526574:-1246098 +) +(1,21097:6764466,6526574:1246098,665693,196608 +) +k1,21097:8177381,6526574:166817 +k1,21097:9903599,6526574:327680 +k1,21097:10540310,6526574:166818 +k1,21097:11238624,6526574:166817 +k1,21097:13534707,6526574:166818 +k1,21097:15285529,6526574:166817 +k1,21097:16103775,6526574:166818 +k1,21097:17882122,6526574:166817 +k1,21097:18700368,6526574:166818 +k1,21097:21958518,6526574:166817 +k1,21097:23732279,6526574:166818 +k1,21097:27108394,6526574:166817 +k1,21097:28546610,6526574:166818 +k1,21097:29951402,6526574:166817 +k1,21097:30777512,6526574:166818 +k1,21097:32583029,6526574:0 +) +(1,21098:6764466,7391654:25818563,505283,134348 +k1,21097:8193605,7391654:225898 +k1,21097:8950999,7391654:225897 +k1,21097:9938425,7391654:225898 +k1,21097:13539426,7391654:225897 +k1,21097:15702568,7391654:225898 +k1,21097:16737835,7391654:225897 +k1,21097:19754256,7391654:225898 +k1,21097:20729885,7391654:225897 +k1,21097:21771051,7391654:225898 +k1,21097:23194291,7391654:225897 +k1,21097:27274361,7391654:225898 +k1,21097:28151686,7391654:225897 +k1,21097:29396669,7391654:225898 +k1,21097:32583029,7391654:0 +) +(1,21098:6764466,8256734:25818563,505283,134348 +g1,21097:7579733,8256734 +g1,21097:8798047,8256734 +g1,21097:10493463,8256734 +g1,21097:12663360,8256734 +g1,21097:14717913,8256734 +g1,21097:16108587,8256734 +g1,21097:18091706,8256734 +g1,21097:19310020,8256734 +g1,21097:21116192,8256734 +k1,21098:32583029,8256734:8587840 +g1,21098:32583029,8256734 +) +] +g1,21098:32583029,8391082 +) +h1,21098:6630773,8391082:0,0,0 +v1,21101:6630773,9256162:0,393216,0 +(1,21151:6630773,40772293:25952256,31909347,0 +g1,21151:6630773,40772293 +g1,21151:6237557,40772293 +r1,21151:6368629,40772293:131072,31909347,0 +g1,21151:6567858,40772293 +g1,21151:6764466,40772293 +[1,21151:6764466,40772293:25818563,31909347,0 +(1,21102:6764466,9564460:25818563,701514,196608 +(1,21101:6764466,9564460:0,701514,196608 +r1,21151:8010564,9564460:1246098,898122,196608 +k1,21101:6764466,9564460:-1246098 +) +(1,21101:6764466,9564460:1246098,701514,196608 +) +k1,21101:8186634,9564460:176070 +k1,21101:8514314,9564460:327680 +k1,21101:10111206,9564460:176071 +k1,21101:10938704,9564460:176070 +k1,21101:13044155,9564460:176071 +k1,21101:13576085,9564460:176070 +k1,21101:15035350,9564460:176070 +k1,21101:17197817,9564460:176071 +k1,21101:21080603,9564460:176070 +k1,21101:23458683,9564460:176070 +k1,21101:24286182,9564460:176071 +k1,21101:26206165,9564460:176070 +k1,21101:26998274,9564460:176071 +k1,21101:29754496,9564460:176070 +k1,21101:32583029,9564460:0 +) +(1,21102:6764466,10429540:25818563,513147,134348 +k1,21101:8022617,10429540:153869 +k1,21101:8924252,10429540:153869 +k1,21101:10754532,10429540:153869 +k1,21101:13033079,10429540:153870 +k1,21101:13652909,10429540:153869 +k1,21101:14825863,10429540:153869 +k1,21101:17550709,10429540:153869 +k1,21101:18696138,10429540:153869 +k1,21101:20156795,10429540:153869 +k1,21101:21128553,10429540:153869 +k1,21101:22301508,10429540:153870 +k1,21101:27512135,10429540:153869 +k1,21101:29783472,10429540:153869 +k1,21101:30596633,10429540:153869 +k1,21101:32583029,10429540:0 +) +(1,21102:6764466,11294620:25818563,513147,134348 +k1,21101:9265723,11294620:211429 +k1,21101:10814086,11294620:211429 +k1,21101:13266192,11294620:211430 +k1,21101:14093659,11294620:211429 +k1,21101:16292140,11294620:211429 +k1,21101:19167608,11294620:211429 +k1,21101:20038330,11294620:211430 +k1,21101:23251962,11294620:211429 +k1,21101:24482476,11294620:211429 +k1,21101:26579376,11294620:211429 +k1,21101:29775316,11294620:211430 +k1,21101:30518242,11294620:211429 +k1,21101:31381099,11294620:211429 +k1,21101:32583029,11294620:0 +) +(1,21102:6764466,12159700:25818563,513147,134348 +k1,21101:8314393,12159700:174326 +k1,21101:9298088,12159700:174325 +k1,21101:10491499,12159700:174326 +k1,21101:12641734,12159700:174325 +k1,21101:15626244,12159700:174326 +k1,21101:16459862,12159700:174326 +k1,21101:17653272,12159700:174325 +k1,21101:20581421,12159700:174326 +k1,21101:21709296,12159700:174326 +k1,21101:22987903,12159700:174325 +k1,21101:25348510,12159700:174326 +k1,21101:26541920,12159700:174325 +k1,21101:29742043,12159700:174326 +k1,21101:32583029,12159700:0 +) +(1,21102:6764466,13024780:25818563,513147,134348 +k1,21101:7729767,13024780:203773 +k1,21101:10513693,13024780:203774 +k1,21101:13545999,13024780:203773 +k1,21101:15665389,13024780:203773 +k1,21101:16225023,13024780:203774 +k1,21101:17711991,13024780:203773 +k1,21101:20784930,13024780:203773 +k1,21101:22030726,13024780:203774 +k1,21101:23437740,13024780:203773 +k1,21101:24509865,13024780:203773 +k1,21101:26243905,13024780:203774 +k1,21101:27099106,13024780:203773 +k1,21101:28569035,13024780:203773 +k1,21101:29839080,13024780:203774 +k1,21101:31591469,13024780:203773 +k1,21101:32583029,13024780:0 +) +(1,21102:6764466,13889860:25818563,505283,134348 +k1,21101:8052303,13889860:268752 +k1,21101:11932089,13889860:268752 +k1,21101:13392286,13889860:268752 +k1,21101:15169677,13889860:268752 +k1,21101:17177755,13889860:268752 +k1,21101:18637952,13889860:268752 +k1,21101:21863033,13889860:268752 +k1,21101:23828512,13889860:268752 +k1,21101:24713302,13889860:268752 +k1,21101:26079782,13889860:268752 +k1,21101:29164616,13889860:268752 +k1,21101:31970267,13889860:268752 +k1,21101:32583029,13889860:0 +) +(1,21102:6764466,14754940:25818563,513147,134348 +k1,21101:8001597,14754940:218046 +k1,21101:10642509,14754940:218046 +k1,21101:13139242,14754940:218046 +k1,21101:14016579,14754940:218045 +k1,21101:15253710,14754940:218046 +k1,21101:16859809,14754940:218046 +k1,21101:18576008,14754940:218046 +k1,21101:19741705,14754940:218046 +(1,21101:19741705,14754940:0,452978,122846 +r1,21151:23968801,14754940:4227096,575824,122846 +k1,21101:19741705,14754940:-4227096 +) +(1,21101:19741705,14754940:4227096,452978,122846 +k1,21101:19741705,14754940:3277 +h1,21101:23965524,14754940:0,411205,112570 +) +k1,21101:24186847,14754940:218046 +k1,21101:24936390,14754940:218046 +k1,21101:27688712,14754940:218045 +k1,21101:28534593,14754940:218046 +k1,21101:29955880,14754940:218046 +k1,21101:31714677,14754940:218046 +k1,21101:32583029,14754940:0 +) +(1,21102:6764466,15620020:25818563,513147,126483 +k1,21101:8781735,15620020:152770 +k1,21101:13316898,15620020:152770 +k1,21101:14541837,15620020:152770 +k1,21101:15891950,15620020:152770 +k1,21101:16400580,15620020:152770 +k1,21101:17836545,15620020:152770 +k1,21101:19423243,15620020:152770 +k1,21101:23030416,15620020:152770 +(1,21101:23030416,15620020:0,452978,115847 +r1,21151:26554088,15620020:3523672,568825,115847 +k1,21101:23030416,15620020:-3523672 +) +(1,21101:23030416,15620020:3523672,452978,115847 +k1,21101:23030416,15620020:3277 +h1,21101:26550811,15620020:0,411205,112570 +) +k1,21101:26880528,15620020:152770 +k1,21101:28224743,15620020:152770 +k1,21101:29312056,15620020:152770 +k1,21101:29820686,15620020:152770 +k1,21101:32583029,15620020:0 +) +(1,21102:6764466,16485100:25818563,513147,134348 +k1,21101:9234631,16485100:204585 +k1,21101:10386868,16485100:204586 +(1,21101:10386868,16485100:0,459977,115847 +r1,21151:14262252,16485100:3875384,575824,115847 +k1,21101:10386868,16485100:-3875384 +) +(1,21101:10386868,16485100:3875384,459977,115847 +k1,21101:10386868,16485100:3277 +h1,21101:14258975,16485100:0,411205,112570 +) +k1,21101:14640507,16485100:204585 +k1,21101:16041779,16485100:204585 +k1,21101:17347370,16485100:204586 +k1,21101:19339122,16485100:204585 +k1,21101:20075205,16485100:204586 +k1,21101:22707244,16485100:204585 +(1,21101:22707244,16485100:0,452978,115847 +r1,21151:27989476,16485100:5282232,568825,115847 +k1,21101:22707244,16485100:-5282232 +) +(1,21101:22707244,16485100:5282232,452978,115847 +g1,21101:25875928,16485100 +g1,21101:26579352,16485100 +h1,21101:27986199,16485100:0,411205,112570 +) +k1,21101:28194061,16485100:204585 +k1,21101:29050075,16485100:204586 +(1,21101:29050075,16485100:0,452978,115847 +r1,21151:31518612,16485100:2468537,568825,115847 +k1,21101:29050075,16485100:-2468537 +) +(1,21101:29050075,16485100:2468537,452978,115847 +k1,21101:29050075,16485100:3277 +h1,21101:31515335,16485100:0,411205,112570 +) +k1,21101:31896867,16485100:204585 +k1,21101:32583029,16485100:0 +) +(1,21102:6764466,17350180:25818563,513147,134348 +k1,21101:8156098,17350180:188391 +k1,21101:9661763,17350180:188391 +k1,21101:10869239,17350180:188391 +k1,21101:13836356,17350180:188390 +k1,21101:16011143,17350180:188391 +k1,21101:16885696,17350180:188391 +k1,21101:18812102,17350180:188391 +k1,21101:21054391,17350180:188391 +k1,21101:22004310,17350180:188391 +k1,21101:23972002,17350180:188390 +k1,21101:26993514,17350180:188391 +k1,21101:27797943,17350180:188391 +k1,21101:31923737,17350180:188391 +k1,21101:32583029,17350180:0 +) +(1,21102:6764466,18215260:25818563,505283,126483 +g1,21101:8095502,18215260 +g1,21101:10281127,18215260 +g1,21101:12814748,18215260 +g1,21101:13630015,18215260 +g1,21101:14185104,18215260 +g1,21101:15661630,18215260 +g1,21101:17558897,18215260 +g1,21101:18216223,18215260 +g1,21101:18946949,18215260 +k1,21102:32583029,18215260:11496985 +g1,21102:32583029,18215260 +) +v1,21104:6764466,18900115:0,393216,0 +(1,21123:6764466,29480593:25818563,10973694,196608 +g1,21123:6764466,29480593 +g1,21123:6764466,29480593 +g1,21123:6567858,29480593 +(1,21123:6567858,29480593:0,10973694,196608 +r1,21151:32779637,29480593:26211779,11170302,196608 +k1,21123:6567857,29480593:-26211780 +) +(1,21123:6567858,29480593:26211779,10973694,196608 +[1,21123:6764466,29480593:25818563,10777086,0 +(1,21106:6764466,19127946:25818563,424439,112852 +(1,21105:6764466,19127946:0,0,0 +g1,21105:6764466,19127946 +g1,21105:6764466,19127946 +g1,21105:6436786,19127946 +(1,21105:6436786,19127946:0,0,0 +) +g1,21105:6764466,19127946 +) +g1,21106:11411821,19127946 +k1,21106:11411821,19127946:0 +h1,21106:12075729,19127946:0,0,0 +k1,21106:32583029,19127946:20507300 +g1,21106:32583029,19127946 +) +(1,21107:6764466,19812801:25818563,431045,86428 +h1,21107:6764466,19812801:0,0,0 +g1,21107:7096420,19812801 +g1,21107:7428374,19812801 +g1,21107:10415959,19812801 +g1,21107:14067452,19812801 +g1,21107:14731360,19812801 +k1,21107:14731360,19812801:0 +h1,21107:15727222,19812801:0,0,0 +k1,21107:32583030,19812801:16855808 +g1,21107:32583030,19812801 +) +(1,21108:6764466,20497656:25818563,431045,106246 +h1,21108:6764466,20497656:0,0,0 +g1,21108:7096420,20497656 +g1,21108:7428374,20497656 +g1,21108:7760328,20497656 +g1,21108:8092282,20497656 +g1,21108:8424236,20497656 +g1,21108:8756190,20497656 +g1,21108:9088144,20497656 +g1,21108:9420098,20497656 +g1,21108:9752052,20497656 +g1,21108:10084006,20497656 +g1,21108:10415960,20497656 +g1,21108:10747914,20497656 +g1,21108:14731361,20497656 +g1,21108:15395269,20497656 +k1,21108:15395269,20497656:0 +h1,21108:18050901,20497656:0,0,0 +k1,21108:32583029,20497656:14532128 +g1,21108:32583029,20497656 +) +(1,21109:6764466,21182511:25818563,424439,86428 +h1,21109:6764466,21182511:0,0,0 +g1,21109:7096420,21182511 +g1,21109:7428374,21182511 +g1,21109:7760328,21182511 +g1,21109:8092282,21182511 +g1,21109:8424236,21182511 +g1,21109:8756190,21182511 +g1,21109:9088144,21182511 +g1,21109:9420098,21182511 +g1,21109:9752052,21182511 +g1,21109:10084006,21182511 +g1,21109:10415960,21182511 +g1,21109:10747914,21182511 +g1,21109:15727223,21182511 +g1,21109:16391131,21182511 +k1,21109:16391131,21182511:0 +h1,21109:20706532,21182511:0,0,0 +k1,21109:32583029,21182511:11876497 +g1,21109:32583029,21182511 +) +(1,21110:6764466,21867366:25818563,424439,86428 +h1,21110:6764466,21867366:0,0,0 +g1,21110:7096420,21867366 +g1,21110:7428374,21867366 +g1,21110:7760328,21867366 +g1,21110:8092282,21867366 +g1,21110:8424236,21867366 +g1,21110:8756190,21867366 +g1,21110:9088144,21867366 +g1,21110:9420098,21867366 +g1,21110:9752052,21867366 +g1,21110:10084006,21867366 +g1,21110:10415960,21867366 +g1,21110:10747914,21867366 +g1,21110:15727223,21867366 +g1,21110:16391131,21867366 +k1,21110:16391131,21867366:0 +h1,21110:20706532,21867366:0,0,0 +k1,21110:32583029,21867366:11876497 +g1,21110:32583029,21867366 +) +(1,21111:6764466,22552221:25818563,424439,79822 +h1,21111:6764466,22552221:0,0,0 +g1,21111:7096420,22552221 +g1,21111:7428374,22552221 +g1,21111:7760328,22552221 +g1,21111:8092282,22552221 +g1,21111:8424236,22552221 +g1,21111:8756190,22552221 +g1,21111:9088144,22552221 +g1,21111:9420098,22552221 +g1,21111:9752052,22552221 +g1,21111:10084006,22552221 +g1,21111:10415960,22552221 +g1,21111:10747914,22552221 +g1,21111:14399407,22552221 +g1,21111:15063315,22552221 +g1,21111:19046762,22552221 +h1,21111:19378716,22552221:0,0,0 +k1,21111:32583029,22552221:13204313 +g1,21111:32583029,22552221 +) +(1,21112:6764466,23237076:25818563,424439,112852 +h1,21112:6764466,23237076:0,0,0 +g1,21112:7096420,23237076 +g1,21112:7428374,23237076 +g1,21112:7760328,23237076 +g1,21112:8092282,23237076 +g1,21112:15063314,23237076 +g1,21112:15727222,23237076 +k1,21112:15727222,23237076:0 +h1,21112:19046761,23237076:0,0,0 +k1,21112:32583029,23237076:13536268 +g1,21112:32583029,23237076 +) +(1,21113:6764466,23921931:25818563,431045,106246 +h1,21113:6764466,23921931:0,0,0 +g1,21113:7096420,23921931 +g1,21113:7428374,23921931 +g1,21113:7760328,23921931 +g1,21113:8092282,23921931 +g1,21113:8424236,23921931 +g1,21113:8756190,23921931 +g1,21113:9088144,23921931 +g1,21113:9420098,23921931 +g1,21113:9752052,23921931 +g1,21113:10084006,23921931 +g1,21113:10415960,23921931 +g1,21113:10747914,23921931 +g1,21113:11079868,23921931 +g1,21113:11411822,23921931 +g1,21113:11743776,23921931 +g1,21113:15727223,23921931 +g1,21113:16391131,23921931 +k1,21113:16391131,23921931:0 +h1,21113:20374578,23921931:0,0,0 +k1,21113:32583029,23921931:12208451 +g1,21113:32583029,23921931 +) +(1,21114:6764466,24606786:25818563,424439,86428 +h1,21114:6764466,24606786:0,0,0 +g1,21114:7096420,24606786 +g1,21114:7428374,24606786 +g1,21114:7760328,24606786 +g1,21114:8092282,24606786 +g1,21114:8424236,24606786 +g1,21114:8756190,24606786 +g1,21114:9088144,24606786 +g1,21114:9420098,24606786 +g1,21114:9752052,24606786 +g1,21114:10084006,24606786 +g1,21114:10415960,24606786 +g1,21114:10747914,24606786 +g1,21114:11079868,24606786 +g1,21114:11411822,24606786 +g1,21114:11743776,24606786 +g1,21114:16723085,24606786 +g1,21114:17386993,24606786 +k1,21114:17386993,24606786:0 +h1,21114:22366302,24606786:0,0,0 +k1,21114:32583029,24606786:10216727 +g1,21114:32583029,24606786 +) +(1,21115:6764466,25291641:25818563,424439,79822 +h1,21115:6764466,25291641:0,0,0 +g1,21115:7096420,25291641 +g1,21115:7428374,25291641 +g1,21115:7760328,25291641 +g1,21115:8092282,25291641 +g1,21115:8424236,25291641 +g1,21115:8756190,25291641 +g1,21115:9088144,25291641 +g1,21115:9420098,25291641 +g1,21115:9752052,25291641 +g1,21115:10084006,25291641 +g1,21115:10415960,25291641 +g1,21115:10747914,25291641 +g1,21115:11079868,25291641 +g1,21115:11411822,25291641 +g1,21115:11743776,25291641 +g1,21115:16723085,25291641 +g1,21115:17386993,25291641 +g1,21115:22698256,25291641 +h1,21115:23030210,25291641:0,0,0 +k1,21115:32583029,25291641:9552819 +g1,21115:32583029,25291641 +) +(1,21116:6764466,25976496:25818563,424439,86428 +h1,21116:6764466,25976496:0,0,0 +g1,21116:7096420,25976496 +g1,21116:7428374,25976496 +g1,21116:7760328,25976496 +g1,21116:8092282,25976496 +g1,21116:11743776,25976496 +g1,21116:12407684,25976496 +g1,21116:18714809,25976496 +g1,21116:19378717,25976496 +k1,21116:19378717,25976496:0 +h1,21116:23362164,25976496:0,0,0 +k1,21116:32583029,25976496:9220865 +g1,21116:32583029,25976496 +) +(1,21117:6764466,26661351:25818563,424439,86428 +h1,21117:6764466,26661351:0,0,0 +g1,21117:7096420,26661351 +g1,21117:7428374,26661351 +g1,21117:7760328,26661351 +g1,21117:8092282,26661351 +g1,21117:8424236,26661351 +g1,21117:8756190,26661351 +g1,21117:9088144,26661351 +g1,21117:9420098,26661351 +g1,21117:9752052,26661351 +g1,21117:10084006,26661351 +g1,21117:11743776,26661351 +g1,21117:12407684,26661351 +g1,21117:18714809,26661351 +g1,21117:19378717,26661351 +k1,21117:19378717,26661351:0 +h1,21117:23362164,26661351:0,0,0 +k1,21117:32583029,26661351:9220865 +g1,21117:32583029,26661351 +) +(1,21118:6764466,27346206:25818563,424439,86428 +h1,21118:6764466,27346206:0,0,0 +g1,21118:7096420,27346206 +g1,21118:7428374,27346206 +g1,21118:7760328,27346206 +g1,21118:8092282,27346206 +g1,21118:8424236,27346206 +g1,21118:8756190,27346206 +g1,21118:9088144,27346206 +g1,21118:9420098,27346206 +g1,21118:9752052,27346206 +g1,21118:10084006,27346206 +g1,21118:11743776,27346206 +g1,21118:12407684,27346206 +g1,21118:18714809,27346206 +g1,21118:19378717,27346206 +k1,21118:19378717,27346206:0 +h1,21118:23362164,27346206:0,0,0 +k1,21118:32583029,27346206:9220865 +g1,21118:32583029,27346206 +) +(1,21119:6764466,28031061:25818563,424439,86428 +h1,21119:6764466,28031061:0,0,0 +g1,21119:7096420,28031061 +g1,21119:7428374,28031061 +g1,21119:7760328,28031061 +g1,21119:8092282,28031061 +g1,21119:8424236,28031061 +g1,21119:8756190,28031061 +g1,21119:9088144,28031061 +g1,21119:9420098,28031061 +g1,21119:9752052,28031061 +g1,21119:10084006,28031061 +g1,21119:12075730,28031061 +g1,21119:12739638,28031061 +g1,21119:19046763,28031061 +g1,21119:19710671,28031061 +k1,21119:19710671,28031061:0 +h1,21119:23694118,28031061:0,0,0 +k1,21119:32583029,28031061:8888911 +g1,21119:32583029,28031061 +) +(1,21120:6764466,28715916:25818563,424439,106246 +h1,21120:6764466,28715916:0,0,0 +g1,21120:7096420,28715916 +g1,21120:7428374,28715916 +g1,21120:7760328,28715916 +g1,21120:8092282,28715916 +g1,21120:8424236,28715916 +g1,21120:8756190,28715916 +g1,21120:9088144,28715916 +g1,21120:9420098,28715916 +g1,21120:9752052,28715916 +g1,21120:10084006,28715916 +g1,21120:13403545,28715916 +g1,21120:14067453,28715916 +g1,21120:20374578,28715916 +g1,21120:21038486,28715916 +g1,21120:25353887,28715916 +g1,21120:28341472,28715916 +g1,21120:29005380,28715916 +h1,21120:30665150,28715916:0,0,0 +k1,21120:32583029,28715916:1917879 +g1,21120:32583029,28715916 +) +(1,21121:6764466,29400771:25818563,424439,79822 +h1,21121:6764466,29400771:0,0,0 +g1,21121:7096420,29400771 +g1,21121:7428374,29400771 +h1,21121:7760328,29400771:0,0,0 +k1,21121:32583028,29400771:24822700 +g1,21121:32583028,29400771 +) +] +) +g1,21123:32583029,29480593 +g1,21123:6764466,29480593 +g1,21123:6764466,29480593 +g1,21123:32583029,29480593 +g1,21123:32583029,29480593 +) +h1,21123:6764466,29677201:0,0,0 +(1,21127:6764466,30542281:25818563,505283,102891 +h1,21126:6764466,30542281:983040,0,0 +k1,21126:8614329,30542281:238988 +k1,21126:9872402,30542281:238988 +k1,21126:12082058,30542281:238988 +k1,21126:14176369,30542281:238987 +k1,21126:15283709,30542281:238988 +k1,21126:16997912,30542281:238988 +k1,21126:19587021,30542281:238988 +k1,21126:20923737,30542281:238988 +k1,21126:22493106,30542281:238988 +k1,21126:24718489,30542281:238987 +k1,21126:28837864,30542281:238988 +k1,21126:31537074,30542281:238988 +k1,21126:32583029,30542281:0 +) +(1,21127:6764466,31407361:25818563,513147,134348 +k1,21126:8787260,31407361:239559 +k1,21126:10973238,31407361:239559 +k1,21126:12404242,31407361:239559 +k1,21126:14379195,31407361:239560 +k1,21126:15389457,31407361:239559 +k1,21126:18613526,31407361:239559 +k1,21126:20137591,31407361:239559 +k1,21126:20908647,31407361:239559 +k1,21126:22502180,31407361:239559 +k1,21126:24454196,31407361:239560 +k1,21126:25345183,31407361:239559 +k1,21126:28362813,31407361:239559 +k1,21126:31189078,31407361:239559 +k1,21126:32583029,31407361:0 +) +(1,21127:6764466,32272441:25818563,513147,134348 +k1,21126:8979201,32272441:227683 +k1,21126:11870923,32272441:227683 +k1,21126:12757898,32272441:227683 +k1,21126:15987784,32272441:227683 +k1,21126:17412154,32272441:227683 +k1,21126:19451252,32272441:227683 +k1,21126:21665331,32272441:227683 +k1,21126:22424511,32272441:227683 +k1,21126:23008054,32272441:227683 +k1,21126:25931233,32272441:227683 +k1,21126:27552867,32272441:227683 +k1,21126:31391584,32272441:227683 +k1,21126:32583029,32272441:0 +) +(1,21127:6764466,33137521:25818563,513147,126483 +k1,21126:9682347,33137521:322000 +k1,21126:10951998,33137521:322000 +k1,21126:13086724,33137521:322000 +k1,21126:14036559,33137521:322000 +k1,21126:15561800,33137521:322000 +k1,21126:18545218,33137521:322001 +k1,21126:19735570,33137521:322000 +k1,21126:21532785,33137521:322000 +k1,21126:23272329,33137521:322000 +k1,21126:24613414,33137521:322000 +k1,21126:27630910,33137521:322000 +k1,21126:31563944,33137521:322000 +k1,21126:32583029,33137521:0 +) +(1,21127:6764466,34002601:25818563,513147,134348 +k1,21126:8687074,34002601:269135 +k1,21126:9642370,34002601:269134 +k1,21126:11655418,34002601:269135 +k1,21126:13437779,34002601:269135 +k1,21126:14322951,34002601:269134 +k1,21126:17594289,34002601:269135 +k1,21126:19239025,34002601:269135 +k1,21126:21695751,34002601:269134 +k1,21126:22735589,34002601:269135 +k1,21126:26231717,34002601:269135 +k1,21126:29781583,34002601:269134 +k1,21126:31563944,34002601:269135 +k1,21126:32583029,34002601:0 +) +(1,21127:6764466,34867681:25818563,505283,134348 +k1,21126:9437739,34867681:182250 +k1,21126:11107000,34867681:182249 +k1,21126:11940678,34867681:182250 +k1,21126:15223436,34867681:182250 +k1,21126:19614408,34867681:182250 +k1,21126:20988102,34867681:182249 +k1,21126:22899847,34867681:182250 +k1,21126:26346445,34867681:182250 +k1,21126:28413510,34867681:182250 +k1,21126:29424789,34867681:182249 +k1,21126:31336534,34867681:182250 +k1,21127:32583029,34867681:0 +) +(1,21127:6764466,35732761:25818563,513147,134348 +k1,21126:9231179,35732761:235867 +k1,21126:11351862,35732761:235868 +k1,21126:12456081,35732761:235867 +k1,21126:14028882,35732761:235867 +k1,21126:15813366,35732761:235868 +k1,21126:19842457,35732761:235867 +k1,21126:20729753,35732761:235868 +k1,21126:22681353,35732761:235867 +(1,21126:22681353,35732761:0,452978,122846 +r1,21151:27963584,35732761:5282231,575824,122846 +k1,21126:22681353,35732761:-5282231 +) +(1,21126:22681353,35732761:5282231,452978,122846 +k1,21126:22681353,35732761:3277 +h1,21126:27960307,35732761:0,411205,112570 +) +k1,21126:28199451,35732761:235867 +k1,21126:28791179,35732761:235868 +k1,21126:31923737,35732761:235867 +k1,21127:32583029,35732761:0 +) +(1,21127:6764466,36597841:25818563,513147,134348 +(1,21126:6764466,36597841:0,452978,122846 +r1,21151:12046697,36597841:5282231,575824,122846 +k1,21126:6764466,36597841:-5282231 +) +(1,21126:6764466,36597841:5282231,452978,122846 +k1,21126:6764466,36597841:3277 +h1,21126:12043420,36597841:0,411205,112570 +) +g1,21126:12245926,36597841 +g1,21126:15420490,36597841 +g1,21126:18448252,36597841 +k1,21127:32583029,36597841:11423553 +g1,21127:32583029,36597841 +) +v1,21129:6764466,37282696:0,393216,0 +(1,21133:6764466,37623379:25818563,733899,196608 +g1,21133:6764466,37623379 +g1,21133:6764466,37623379 +g1,21133:6567858,37623379 +(1,21133:6567858,37623379:0,733899,196608 +r1,21151:32779637,37623379:26211779,930507,196608 +k1,21133:6567857,37623379:-26211780 +) +(1,21133:6567858,37623379:26211779,733899,196608 +[1,21133:6764466,37623379:25818563,537291,0 +(1,21131:6764466,37510527:25818563,424439,112852 +(1,21130:6764466,37510527:0,0,0 +g1,21130:6764466,37510527 +g1,21130:6764466,37510527 +g1,21130:6436786,37510527 +(1,21130:6436786,37510527:0,0,0 +) +g1,21130:6764466,37510527 +) +g1,21131:11411821,37510527 +g1,21131:12407683,37510527 +h1,21131:16723084,37510527:0,0,0 +k1,21131:32583029,37510527:15859945 +g1,21131:32583029,37510527 +) +] +) +g1,21133:32583029,37623379 +g1,21133:6764466,37623379 +g1,21133:6764466,37623379 +g1,21133:32583029,37623379 +g1,21133:32583029,37623379 +) +h1,21133:6764466,37819987:0,0,0 +(1,21137:6764466,38685067:25818563,513147,126483 +h1,21136:6764466,38685067:983040,0,0 +k1,21136:10212783,38685067:189212 +k1,21136:11270347,38685067:189212 +k1,21136:12552044,38685067:189212 +k1,21136:13760341,38685067:189212 +k1,21136:15232748,38685067:189212 +k1,21136:17408356,38685067:189212 +k1,21136:21304283,38685067:189211 +k1,21136:22109533,38685067:189212 +k1,21136:23317830,38685067:189212 +k1,21136:25160515,38685067:189212 +k1,21136:26587702,38685067:189212 +k1,21136:27463076,38685067:189212 +k1,21136:29396201,38685067:189212 +k1,21136:31966991,38685067:189212 +k1,21136:32583029,38685067:0 +) +(1,21137:6764466,39550147:25818563,505283,134348 +k1,21137:32583029,39550147:22816360 +g1,21137:32583029,39550147 +) +v1,21139:6764466,40235002:0,393216,0 +(1,21143:6764466,40575685:25818563,733899,196608 +g1,21143:6764466,40575685 +g1,21143:6764466,40575685 +g1,21143:6567858,40575685 +(1,21143:6567858,40575685:0,733899,196608 +r1,21151:32779637,40575685:26211779,930507,196608 +k1,21143:6567857,40575685:-26211780 +) +(1,21143:6567858,40575685:26211779,733899,196608 +[1,21143:6764466,40575685:25818563,537291,0 +(1,21141:6764466,40462833:25818563,424439,112852 +(1,21140:6764466,40462833:0,0,0 +g1,21140:6764466,40462833 +g1,21140:6764466,40462833 +g1,21140:6436786,40462833 +(1,21140:6436786,40462833:0,0,0 +) +g1,21140:6764466,40462833 +) +g1,21141:7428374,40462833 +g1,21141:8092282,40462833 +g1,21141:14067453,40462833 +g1,21141:17718946,40462833 +g1,21141:18382854,40462833 +h1,21141:21702393,40462833:0,0,0 +k1,21141:32583029,40462833:10880636 +g1,21141:32583029,40462833 +) +] +) +g1,21143:32583029,40575685 +g1,21143:6764466,40575685 +g1,21143:6764466,40575685 +g1,21143:32583029,40575685 +g1,21143:32583029,40575685 +) +h1,21143:6764466,40772293:0,0,0 +] +g1,21151:32583029,40772293 +) +] +(1,21151:32583029,45706769:0,0,0 +g1,21151:32583029,45706769 ) -g1,21169:-473656,-710413 ) ] +(1,21151:6630773,47279633:25952256,0,0 +h1,21151:6630773,47279633:25952256,0,0 ) ] -!19532 -}382 -!12 -{383 -[1,21169:4262630,47279633:28320399,43253760,0 -(1,21169:4262630,4025873:0,0,0 -[1,21169:-473656,4025873:0,0,0 -(1,21169:-473656,-710413:0,0,0 -(1,21169:-473656,-644877:0,0,0 -k1,21169:-473656,-644877:-65536 +(1,21151:4262630,4025873:0,0,0 +[1,21151:-473656,4025873:0,0,0 +(1,21151:-473656,-710413:0,0,0 +(1,21151:-473656,-710413:0,0,0 +g1,21151:-473656,-710413 +) +g1,21151:-473656,-710413 +) +] +) +] +!28456 +}362 +Input:3467:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3468:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3469:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3470:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3471:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3472:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!576 +{363 +[1,21211:4262630,47279633:28320399,43253760,0 +(1,21211:4262630,4025873:0,0,0 +[1,21211:-473656,4025873:0,0,0 +(1,21211:-473656,-710413:0,0,0 +(1,21211:-473656,-644877:0,0,0 +k1,21211:-473656,-644877:-65536 ) -(1,21169:-473656,4736287:0,0,0 -k1,21169:-473656,4736287:5209943 +(1,21211:-473656,4736287:0,0,0 +k1,21211:-473656,4736287:5209943 ) -g1,21169:-473656,-710413 +g1,21211:-473656,-710413 ) ] ) -[1,21169:6630773,47279633:25952256,43253760,0 -[1,21169:6630773,4812305:25952256,786432,0 -(1,21169:6630773,4812305:25952256,513147,126483 -(1,21169:6630773,4812305:25952256,513147,126483 -g1,21169:3078558,4812305 -[1,21169:3078558,4812305:0,0,0 -(1,21169:3078558,2439708:0,1703936,0 -k1,21169:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,21169:2537886,2439708:1179648,16384,0 +[1,21211:6630773,47279633:25952256,43253760,0 +[1,21211:6630773,4812305:25952256,786432,0 +(1,21211:6630773,4812305:25952256,513147,126483 +(1,21211:6630773,4812305:25952256,513147,126483 +g1,21211:3078558,4812305 +[1,21211:3078558,4812305:0,0,0 +(1,21211:3078558,2439708:0,1703936,0 +k1,21211:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,21211:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,21169:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,21211:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,21169:3078558,4812305:0,0,0 -(1,21169:3078558,2439708:0,1703936,0 -g1,21169:29030814,2439708 -g1,21169:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,21169:36151628,1915420:16384,1179648,0 +[1,21211:3078558,4812305:0,0,0 +(1,21211:3078558,2439708:0,1703936,0 +g1,21211:29030814,2439708 +g1,21211:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,21211:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,21169:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,21211:37855564,2439708:1179648,16384,0 ) ) -k1,21169:3078556,2439708:-34777008 +k1,21211:3078556,2439708:-34777008 ) ] -[1,21169:3078558,4812305:0,0,0 -(1,21169:3078558,49800853:0,16384,2228224 -k1,21169:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,21169:2537886,49800853:1179648,16384,0 +[1,21211:3078558,4812305:0,0,0 +(1,21211:3078558,49800853:0,16384,2228224 +k1,21211:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,21211:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,21169:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,21211:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,21169:3078558,4812305:0,0,0 -(1,21169:3078558,49800853:0,16384,2228224 -g1,21169:29030814,49800853 -g1,21169:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,21169:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] -) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,21169:37855564,49800853:1179648,16384,0 -) -) -k1,21169:3078556,49800853:-34777008 -) -] -g1,21169:6630773,4812305 -k1,21169:21350816,4812305:13524666 -g1,21169:21999622,4812305 -g1,21169:25611966,4812305 -g1,21169:28956923,4812305 -g1,21169:29772190,4812305 -) -) -] -[1,21169:6630773,45706769:25952256,40108032,0 -(1,21169:6630773,45706769:25952256,40108032,0 -(1,21169:6630773,45706769:0,0,0 -g1,21169:6630773,45706769 -) -[1,21169:6630773,45706769:25952256,40108032,0 -v1,21169:6630773,6254097:0,393216,0 -(1,21169:6630773,45706769:25952256,39845888,0 -g1,21169:6630773,45706769 -g1,21169:6303093,45706769 -r1,21169:6401397,45706769:98304,39845888,0 -g1,21169:6600626,45706769 -g1,21169:6797234,45706769 -[1,21169:6797234,45706769:25785795,39845888,0 -(1,21077:6797234,6374028:25785795,513147,126483 -k1,21076:8002496,6374028:257611 -k1,21076:12133285,6374028:257611 -k1,21076:13003658,6374028:257611 -k1,21076:16336874,6374028:257611 -k1,21076:18019893,6374028:257611 -k1,21076:18936796,6374028:257611 -k1,21076:20213492,6374028:257611 -k1,21076:22151446,6374028:257611 -k1,21076:23068349,6374028:257611 -k1,21076:26167601,6374028:257611 -k1,21076:27692678,6374028:257611 -k1,21076:28969374,6374028:257611 -k1,21076:32583029,6374028:0 -) -(1,21077:6797234,7215516:25785795,513147,134348 -g1,21076:8046350,7215516 -g1,21076:9264664,7215516 -g1,21076:10851946,7215516 -g1,21076:12879629,7215516 -g1,21076:14026509,7215516 -g1,21076:15692434,7215516 -k1,21077:32583029,7215516:13691127 -g1,21077:32583029,7215516 -) -(1,21079:6797234,8057004:25785795,505283,134348 -h1,21078:6797234,8057004:983040,0,0 -k1,21078:10750445,8057004:180303 -(1,21078:10750445,8057004:0,452978,115847 -r1,21169:14977541,8057004:4227096,568825,115847 -k1,21078:10750445,8057004:-4227096 -) -(1,21078:10750445,8057004:4227096,452978,115847 -k1,21078:10750445,8057004:3277 -h1,21078:14974264,8057004:0,411205,112570 -) -k1,21078:15157843,8057004:180302 -k1,21078:17716448,8057004:180303 -k1,21078:18685149,8057004:180303 -k1,21078:22268081,8057004:180303 -k1,21078:24908605,8057004:180302 -k1,21078:26220715,8057004:180303 -k1,21078:29793161,8057004:180303 -k1,21079:32583029,8057004:0 -) -(1,21079:6797234,8898492:25785795,505283,134348 -(1,21078:6797234,8898492:0,452978,115847 -r1,21169:9265771,8898492:2468537,568825,115847 -k1,21078:6797234,8898492:-2468537 -) -(1,21078:6797234,8898492:2468537,452978,115847 -k1,21078:6797234,8898492:3277 -h1,21078:9262494,8898492:0,411205,112570 -) -k1,21078:9439409,8898492:173638 -k1,21078:11296012,8898492:173638 -k1,21078:11825510,8898492:173638 -k1,21078:13872168,8898492:173639 -k1,21078:17020485,8898492:173638 -k1,21078:19059933,8898492:173638 -k1,21078:19919733,8898492:173638 -k1,21078:20864074,8898492:173638 -k1,21078:24110040,8898492:173638 -k1,21078:24935106,8898492:173638 -k1,21078:25856511,8898492:173639 -k1,21078:28367163,8898492:173638 -k1,21078:29156839,8898492:173638 -k1,21078:31215948,8898492:173638 -k1,21078:32583029,8898492:0 -) -(1,21079:6797234,9739980:25785795,505283,134348 -k1,21078:10070277,9739980:179088 -k1,21078:12236416,9739980:179087 -k1,21078:14425493,9739980:179088 -k1,21078:15623665,9739980:179087 -k1,21078:17668563,9739980:179088 -k1,21078:19377916,9739980:179087 -k1,21078:20208432,9739980:179088 -k1,21078:21135285,9739980:179087 -k1,21078:23831610,9739980:179088 -k1,21078:25953184,9739980:179087 -(1,21078:25953184,9739980:0,452978,115847 -r1,21169:26663162,9739980:709978,568825,115847 -k1,21078:25953184,9739980:-709978 -) -(1,21078:25953184,9739980:709978,452978,115847 -k1,21078:25953184,9739980:3277 -h1,21078:26659885,9739980:0,411205,112570 -) -k1,21078:26842250,9739980:179088 -k1,21078:28940231,9739980:179087 -k1,21078:29475179,9739980:179088 -k1,21078:31514178,9739980:179087 -(1,21078:31514178,9739980:0,452978,115847 -r1,21169:31872444,9739980:358266,568825,115847 -k1,21078:31514178,9739980:-358266 -) -(1,21078:31514178,9739980:358266,452978,115847 -k1,21078:31514178,9739980:3277 -h1,21078:31869167,9739980:0,411205,112570 -) -k1,21078:32051532,9739980:179088 -k1,21078:32583029,9739980:0 -) -(1,21079:6797234,10581468:25785795,513147,134348 -k1,21078:9730057,10581468:196040 -k1,21078:10879646,10581468:196040 -k1,21078:12353639,10581468:196041 -k1,21078:13835495,10581468:196040 -k1,21078:14647573,10581468:196040 -k1,21078:16310309,10581468:196040 -k1,21078:18377402,10581468:196040 -k1,21078:20709261,10581468:196041 -k1,21078:21261161,10581468:196040 -k1,21078:24431880,10581468:196040 -k1,21078:26493730,10581468:196040 -k1,21078:27451298,10581468:196040 -k1,21078:29715655,10581468:196041 -k1,21078:30570987,10581468:196040 -k1,21078:31923737,10581468:196040 -k1,21078:32583029,10581468:0 -) -(1,21079:6797234,11422956:25785795,513147,115847 -k1,21078:7977889,11422956:161570 -k1,21078:11165256,11422956:161570 -(1,21078:11165256,11422956:0,452978,115847 -r1,21169:13633793,11422956:2468537,568825,115847 -k1,21078:11165256,11422956:-2468537 -) -(1,21078:11165256,11422956:2468537,452978,115847 -k1,21078:11165256,11422956:3277 -h1,21078:13630516,11422956:0,411205,112570 -) -k1,21078:13969033,11422956:161570 -(1,21078:13969033,11422956:0,452978,115847 -r1,21169:16789282,11422956:2820249,568825,115847 -k1,21078:13969033,11422956:-2820249 -) -(1,21078:13969033,11422956:2820249,452978,115847 -k1,21078:13969033,11422956:3277 -h1,21078:16786005,11422956:0,411205,112570 -) -k1,21078:17124522,11422956:161570 -(1,21078:17124522,11422956:0,452978,115847 -r1,21169:19241347,11422956:2116825,568825,115847 -k1,21078:17124522,11422956:-2116825 -) -(1,21078:17124522,11422956:2116825,452978,115847 -k1,21078:17124522,11422956:3277 -h1,21078:19238070,11422956:0,411205,112570 -) -k1,21078:19402917,11422956:161570 -k1,21078:20247373,11422956:161571 -(1,21078:20247373,11422956:0,452978,115847 -r1,21169:24474469,11422956:4227096,568825,115847 -k1,21078:20247373,11422956:-4227096 -) -(1,21078:20247373,11422956:4227096,452978,115847 -k1,21078:20247373,11422956:3277 -h1,21078:24471192,11422956:0,411205,112570 -) -k1,21078:24636039,11422956:161570 -k1,21078:26683080,11422956:161570 -k1,21078:28130466,11422956:161570 -k1,21078:30071338,11422956:161570 -k1,21078:31251993,11422956:161570 -k1,21078:32583029,11422956:0 -) -(1,21079:6797234,12264444:25785795,513147,134348 -k1,21078:8654726,12264444:170595 -k1,21078:10022009,12264444:170596 -k1,21078:13264932,12264444:170595 -k1,21078:14086955,12264444:170595 -k1,21078:15954278,12264444:170596 -k1,21078:19150670,12264444:170595 -k1,21078:21181832,12264444:170595 -k1,21078:22003855,12264444:170595 -k1,21078:22922217,12264444:170596 -k1,21078:23448672,12264444:170595 -k1,21078:26593946,12264444:170595 -k1,21078:28630352,12264444:170596 -k1,21078:31821501,12264444:170595 -k1,21078:32583029,12264444:0 -) -(1,21079:6797234,13105932:25785795,513147,126483 -g1,21078:10090418,13105932 -g1,21078:12276699,13105932 -g1,21078:12941889,13105932 -g1,21078:13599215,13105932 -g1,21078:14329941,13105932 -g1,21078:15595441,13105932 -g1,21078:16446098,13105932 -g1,21078:17393093,13105932 -k1,21079:32583029,13105932:12852922 -g1,21079:32583029,13105932 -) -(1,21081:6797234,13947420:25785795,505283,134348 -h1,21080:6797234,13947420:983040,0,0 -g1,21080:9762738,13947420 -g1,21080:11697360,13947420 -(1,21080:11697360,13947420:0,452978,115847 -r1,21169:15924456,13947420:4227096,568825,115847 -k1,21080:11697360,13947420:-4227096 -) -(1,21080:11697360,13947420:4227096,452978,115847 -k1,21080:11697360,13947420:3277 -h1,21080:15921179,13947420:0,411205,112570 -) -g1,21080:16297355,13947420 -g1,21080:17888569,13947420 -g1,21080:21181753,13947420 -g1,21080:23368034,13947420 -g1,21080:24671545,13947420 -g1,21080:25618540,13947420 -k1,21081:32583029,13947420:3466177 -g1,21081:32583029,13947420 -) -v1,21083:6797234,15004464:0,393216,0 -(1,21089:6797234,16645625:25785795,2034377,196608 -g1,21089:6797234,16645625 -g1,21089:6797234,16645625 -g1,21089:6600626,16645625 -(1,21089:6600626,16645625:0,2034377,196608 -r1,21169:32779637,16645625:26179011,2230985,196608 -k1,21089:6600625,16645625:-26179012 -) -(1,21089:6600626,16645625:26179011,2034377,196608 -[1,21089:6797234,16645625:25785795,1837769,0 -(1,21085:6797234,15212082:25785795,404226,107478 -(1,21084:6797234,15212082:0,0,0 -g1,21084:6797234,15212082 -g1,21084:6797234,15212082 -g1,21084:6469554,15212082 -(1,21084:6469554,15212082:0,0,0 -) -g1,21084:6797234,15212082 -) -k1,21085:6797234,15212082:0 -g1,21085:10907128,15212082 -g1,21085:14384731,15212082 -g1,21085:16597751,15212082 -h1,21085:16913897,15212082:0,0,0 -k1,21085:32583029,15212082:15669132 -g1,21085:32583029,15212082 -) -(1,21086:6797234,15878260:25785795,404226,107478 -h1,21086:6797234,15878260:0,0,0 -g1,21086:7113380,15878260 -g1,21086:7429526,15878260 -g1,21086:11539420,15878260 -h1,21086:11855566,15878260:0,0,0 -k1,21086:32583030,15878260:20727464 -g1,21086:32583030,15878260 -) -(1,21087:6797234,16544438:25785795,404226,101187 -h1,21087:6797234,16544438:0,0,0 -g1,21087:7113380,16544438 -g1,21087:7429526,16544438 -g1,21087:14700879,16544438 -g1,21087:15017025,16544438 -h1,21087:17230044,16544438:0,0,0 -k1,21087:32583029,16544438:15352985 -g1,21087:32583029,16544438 -) -] -) -g1,21089:32583029,16645625 -g1,21089:6797234,16645625 -g1,21089:6797234,16645625 -g1,21089:32583029,16645625 -g1,21089:32583029,16645625 -) -h1,21089:6797234,16842233:0,0,0 -(1,21093:6797234,18074586:25785795,513147,126483 -h1,21092:6797234,18074586:983040,0,0 -g1,21092:9669021,18074586 -g1,21092:10484288,18074586 -g1,21092:11702602,18074586 -g1,21092:13268912,18074586 -g1,21092:14135297,18074586 -(1,21092:14135297,18074586:0,452978,115847 -r1,21169:16603834,18074586:2468537,568825,115847 -k1,21092:14135297,18074586:-2468537 -) -(1,21092:14135297,18074586:2468537,452978,115847 -k1,21092:14135297,18074586:3277 -h1,21092:16600557,18074586:0,411205,112570 -) -g1,21092:16803063,18074586 -g1,21092:18382480,18074586 -g1,21092:20111975,18074586 -g1,21092:20962632,18074586 -g1,21092:21909627,18074586 -k1,21093:32583029,18074586:8017884 -g1,21093:32583029,18074586 -) -v1,21095:6797234,19131630:0,393216,0 -(1,21101:6797234,20772791:25785795,2034377,196608 -g1,21101:6797234,20772791 -g1,21101:6797234,20772791 -g1,21101:6600626,20772791 -(1,21101:6600626,20772791:0,2034377,196608 -r1,21169:32779637,20772791:26179011,2230985,196608 -k1,21101:6600625,20772791:-26179012 -) -(1,21101:6600626,20772791:26179011,2034377,196608 -[1,21101:6797234,20772791:25785795,1837769,0 -(1,21097:6797234,19339248:25785795,404226,107478 -(1,21096:6797234,19339248:0,0,0 -g1,21096:6797234,19339248 -g1,21096:6797234,19339248 -g1,21096:6469554,19339248 -(1,21096:6469554,19339248:0,0,0 -) -g1,21096:6797234,19339248 -) -k1,21097:6797234,19339248:0 -g1,21097:10907128,19339248 -g1,21097:14384731,19339248 -g1,21097:16597751,19339248 -h1,21097:16913897,19339248:0,0,0 -k1,21097:32583029,19339248:15669132 -g1,21097:32583029,19339248 -) -(1,21098:6797234,20005426:25785795,404226,107478 -h1,21098:6797234,20005426:0,0,0 -g1,21098:7113380,20005426 -g1,21098:7429526,20005426 -g1,21098:11539420,20005426 -h1,21098:11855566,20005426:0,0,0 -k1,21098:32583030,20005426:20727464 -g1,21098:32583030,20005426 -) -(1,21099:6797234,20671604:25785795,404226,101187 -h1,21099:6797234,20671604:0,0,0 -g1,21099:7113380,20671604 -g1,21099:7429526,20671604 -g1,21099:12487858,20671604 -g1,21099:13120150,20671604 -g1,21099:15965461,20671604 -g1,21099:16281607,20671604 -h1,21099:19126918,20671604:0,0,0 -k1,21099:32583029,20671604:13456111 -g1,21099:32583029,20671604 -) -] -) -g1,21101:32583029,20772791 -g1,21101:6797234,20772791 -g1,21101:6797234,20772791 -g1,21101:32583029,20772791 -g1,21101:32583029,20772791 -) -h1,21101:6797234,20969399:0,0,0 -(1,21105:6797234,22201753:25785795,513147,7863 -h1,21104:6797234,22201753:983040,0,0 -g1,21104:9170948,22201753 -g1,21104:9986215,22201753 -g1,21104:11877584,22201753 -g1,21104:13774195,22201753 -g1,21104:15105886,22201753 -g1,21104:16052881,22201753 -g1,21104:19045910,22201753 -g1,21104:21255128,22201753 -g1,21104:21810217,22201753 -g1,21104:24189829,22201753 -k1,21105:32583029,22201753:5524034 -g1,21105:32583029,22201753 -) -v1,21107:6797234,23258797:0,393216,0 -(1,21113:6797234,24899958:25785795,2034377,196608 -g1,21113:6797234,24899958 -g1,21113:6797234,24899958 -g1,21113:6600626,24899958 -(1,21113:6600626,24899958:0,2034377,196608 -r1,21169:32779637,24899958:26179011,2230985,196608 -k1,21113:6600625,24899958:-26179012 -) -(1,21113:6600626,24899958:26179011,2034377,196608 -[1,21113:6797234,24899958:25785795,1837769,0 -(1,21109:6797234,23466415:25785795,404226,107478 -(1,21108:6797234,23466415:0,0,0 -g1,21108:6797234,23466415 -g1,21108:6797234,23466415 -g1,21108:6469554,23466415 -(1,21108:6469554,23466415:0,0,0 -) -g1,21108:6797234,23466415 -) -k1,21109:6797234,23466415:0 -g1,21109:10907128,23466415 -g1,21109:14384731,23466415 -g1,21109:16597751,23466415 -h1,21109:16913897,23466415:0,0,0 -k1,21109:32583029,23466415:15669132 -g1,21109:32583029,23466415 -) -(1,21110:6797234,24132593:25785795,404226,107478 -h1,21110:6797234,24132593:0,0,0 -g1,21110:7113380,24132593 -g1,21110:7429526,24132593 -g1,21110:11539420,24132593 -h1,21110:11855566,24132593:0,0,0 -k1,21110:32583030,24132593:20727464 -g1,21110:32583030,24132593 -) -(1,21111:6797234,24798771:25785795,404226,101187 -h1,21111:6797234,24798771:0,0,0 -g1,21111:7113380,24798771 -g1,21111:7429526,24798771 -g1,21111:12487858,24798771 -g1,21111:13120150,24798771 -g1,21111:18178481,24798771 -g1,21111:18494627,24798771 -h1,21111:21656083,24798771:0,0,0 -k1,21111:32583029,24798771:10926946 -g1,21111:32583029,24798771 -) -] -) -g1,21113:32583029,24899958 -g1,21113:6797234,24899958 -g1,21113:6797234,24899958 -g1,21113:32583029,24899958 -g1,21113:32583029,24899958 -) -h1,21113:6797234,25096566:0,0,0 -(1,21117:6797234,26328919:25785795,513147,134348 -h1,21116:6797234,26328919:983040,0,0 -k1,21116:9703163,26328919:205846 -k1,21116:13136002,26328919:205846 -k1,21116:16138270,26328919:205847 -k1,21116:16829737,26328919:205846 -(1,21116:16829737,26328919:0,452978,115847 -r1,21169:21056833,26328919:4227096,568825,115847 -k1,21116:16829737,26328919:-4227096 -) -(1,21116:16829737,26328919:4227096,452978,115847 -k1,21116:16829737,26328919:3277 -h1,21116:21053556,26328919:0,411205,112570 -) -k1,21116:21262679,26328919:205846 -k1,21116:22000022,26328919:205846 -k1,21116:24411155,26328919:205846 -k1,21116:27288249,26328919:205847 -k1,21116:31070395,26328919:205846 -k1,21116:31734338,26328919:205846 -k1,21117:32583029,26328919:0 -) -(1,21117:6797234,27170407:25785795,513147,134348 -k1,21116:8725991,27170407:223510 -k1,21116:9305361,27170407:223510 -k1,21116:11506748,27170407:223510 -k1,21116:12389551,27170407:223511 -k1,21116:16557018,27170407:223510 -k1,21116:18784619,27170407:223510 -(1,21116:18784619,27170407:0,452978,122846 -r1,21169:21604868,27170407:2820249,575824,122846 -k1,21116:18784619,27170407:-2820249 -) -(1,21116:18784619,27170407:2820249,452978,122846 -k1,21116:18784619,27170407:3277 -h1,21116:21601591,27170407:0,411205,112570 -) -k1,21116:21828378,27170407:223510 -k1,21116:24453127,27170407:223510 -k1,21116:25032497,27170407:223510 -k1,21116:27129027,27170407:223511 -k1,21116:29032880,27170407:223510 -k1,21116:29942552,27170407:223510 -k1,21116:30936765,27170407:223510 -k1,21117:32583029,27170407:0 -) -(1,21117:6797234,28011895:25785795,513147,126483 -k1,21116:8890864,28011895:280904 -k1,21116:9857929,28011895:280903 -k1,21116:10754871,28011895:280904 -k1,21116:12054859,28011895:280903 -k1,21116:13702844,28011895:280904 -k1,21116:14643039,28011895:280903 -k1,21116:16176336,28011895:280904 -k1,21116:18475094,28011895:280904 -k1,21116:20131598,28011895:280903 -k1,21116:21431587,28011895:280904 -k1,21116:23018623,28011895:280903 -k1,21116:25922933,28011895:280904 -k1,21116:26863128,28011895:280903 -k1,21116:28163117,28011895:280904 -k1,21116:30421897,28011895:280903 -k1,21116:31835263,28011895:280904 -k1,21116:32583029,28011895:0 -) -(1,21117:6797234,28853383:25785795,505283,7863 -k1,21117:32583029,28853383:24098898 -g1,21117:32583029,28853383 -) -v1,21119:6797234,29910427:0,393216,0 -(1,21125:6797234,31551588:25785795,2034377,196608 -g1,21125:6797234,31551588 -g1,21125:6797234,31551588 -g1,21125:6600626,31551588 -(1,21125:6600626,31551588:0,2034377,196608 -r1,21169:32779637,31551588:26179011,2230985,196608 -k1,21125:6600625,31551588:-26179012 -) -(1,21125:6600626,31551588:26179011,2034377,196608 -[1,21125:6797234,31551588:25785795,1837769,0 -(1,21121:6797234,30118045:25785795,404226,107478 -(1,21120:6797234,30118045:0,0,0 -g1,21120:6797234,30118045 -g1,21120:6797234,30118045 -g1,21120:6469554,30118045 -(1,21120:6469554,30118045:0,0,0 -) -g1,21120:6797234,30118045 -) -k1,21121:6797234,30118045:0 -g1,21121:10907128,30118045 -g1,21121:14384731,30118045 -g1,21121:16597751,30118045 -h1,21121:16913897,30118045:0,0,0 -k1,21121:32583029,30118045:15669132 -g1,21121:32583029,30118045 -) -(1,21122:6797234,30784223:25785795,404226,107478 -h1,21122:6797234,30784223:0,0,0 -g1,21122:7113380,30784223 -g1,21122:7429526,30784223 -g1,21122:11539420,30784223 -h1,21122:11855566,30784223:0,0,0 -k1,21122:32583030,30784223:20727464 -g1,21122:32583030,30784223 -) -(1,21123:6797234,31450401:25785795,404226,101187 -h1,21123:6797234,31450401:0,0,0 -g1,21123:7113380,31450401 -g1,21123:7429526,31450401 -g1,21123:14384733,31450401 -g1,21123:15017025,31450401 -g1,21123:15333171,31450401 -h1,21123:17546190,31450401:0,0,0 -k1,21123:32583029,31450401:15036839 -g1,21123:32583029,31450401 -) -] -) -g1,21125:32583029,31551588 -g1,21125:6797234,31551588 -g1,21125:6797234,31551588 -g1,21125:32583029,31551588 -g1,21125:32583029,31551588 -) -h1,21125:6797234,31748196:0,0,0 -(1,21129:6797234,32980550:25785795,505283,134348 -h1,21128:6797234,32980550:983040,0,0 -k1,21128:11435872,32980550:211026 -k1,21128:12456268,32980550:211026 -k1,21128:13686379,32980550:211026 -k1,21128:16453964,32980550:211026 -k1,21128:18674979,32980550:211026 -k1,21128:19241864,32980550:211025 -k1,21128:23066545,32980550:211026 -k1,21128:25395695,32980550:211026 -k1,21128:27691421,32980550:211026 -k1,21128:30517334,32980550:211026 -k1,21128:31411245,32980550:211026 -k1,21129:32583029,32980550:0 -) -(1,21129:6797234,33822038:25785795,505283,134348 -k1,21128:8129216,33822038:223113 -k1,21128:9181360,33822038:223114 -k1,21128:12516778,33822038:223113 -k1,21128:15609058,33822038:223114 -k1,21128:18292393,33822038:223113 -k1,21128:20703099,33822038:223114 -k1,21128:22714034,33822038:223113 -k1,21128:24029632,33822038:223113 -(1,21128:24029632,33822038:0,414482,115847 -r1,21169:24387898,33822038:358266,530329,115847 -k1,21128:24029632,33822038:-358266 -) -(1,21128:24029632,33822038:358266,414482,115847 -k1,21128:24029632,33822038:3277 -h1,21128:24384621,33822038:0,411205,112570 -) -k1,21128:24784682,33822038:223114 -k1,21128:25659223,33822038:223113 -k1,21128:28779684,33822038:223114 -k1,21128:30841737,33822038:223113 -k1,21128:32583029,33822038:0 -) -(1,21129:6797234,34663526:25785795,505283,126483 -k1,21128:9054367,34663526:295640 -k1,21128:10442492,34663526:295640 -(1,21128:10442492,34663526:0,414482,115847 -r1,21169:10800758,34663526:358266,530329,115847 -k1,21128:10442492,34663526:-358266 -) -(1,21128:10442492,34663526:358266,414482,115847 -k1,21128:10442492,34663526:3277 -h1,21128:10797481,34663526:0,411205,112570 -) -k1,21128:11270068,34663526:295640 -k1,21128:12383597,34663526:295640 -k1,21128:14754762,34663526:295640 -k1,21128:17079397,34663526:295640 -k1,21128:19493160,34663526:295639 -k1,21128:20780360,34663526:295640 -k1,21128:23892082,34663526:295640 -k1,21128:26197711,34663526:295640 -k1,21128:28732061,34663526:295640 -k1,21128:30427550,34663526:295640 -k1,21129:32583029,34663526:0 -) -(1,21129:6797234,35505014:25785795,513147,134348 -g1,21128:9574649,35505014 -g1,21128:10792963,35505014 -g1,21128:13967527,35505014 -g1,21128:17883958,35505014 -g1,21128:19187469,35505014 -g1,21128:20672514,35505014 -g1,21128:21619509,35505014 -k1,21129:32583029,35505014:9276623 -g1,21129:32583029,35505014 -) -v1,21131:6797234,36562057:0,393216,0 -(1,21135:6797234,36870862:25785795,702021,196608 -g1,21135:6797234,36870862 -g1,21135:6797234,36870862 -g1,21135:6600626,36870862 -(1,21135:6600626,36870862:0,702021,196608 -r1,21169:32779637,36870862:26179011,898629,196608 -k1,21135:6600625,36870862:-26179012 -) -(1,21135:6600626,36870862:26179011,702021,196608 -[1,21135:6797234,36870862:25785795,505413,0 -(1,21133:6797234,36769675:25785795,404226,101187 -(1,21132:6797234,36769675:0,0,0 -g1,21132:6797234,36769675 -g1,21132:6797234,36769675 -g1,21132:6469554,36769675 -(1,21132:6469554,36769675:0,0,0 -) -g1,21132:6797234,36769675 -) -g1,21133:7113380,36769675 -g1,21133:7429526,36769675 -g1,21133:12487858,36769675 -g1,21133:13120150,36769675 -h1,21133:19443063,36769675:0,0,0 -k1,21133:32583029,36769675:13139966 -g1,21133:32583029,36769675 -) -] -) -g1,21135:32583029,36870862 -g1,21135:6797234,36870862 -g1,21135:6797234,36870862 -g1,21135:32583029,36870862 -g1,21135:32583029,36870862 -) -h1,21135:6797234,37067470:0,0,0 -v1,21139:6797234,38515380:0,393216,0 -(1,21143:6797234,38824185:25785795,702021,196608 -g1,21143:6797234,38824185 -g1,21143:6797234,38824185 -g1,21143:6600626,38824185 -(1,21143:6600626,38824185:0,702021,196608 -r1,21169:32779637,38824185:26179011,898629,196608 -k1,21143:6600625,38824185:-26179012 -) -(1,21143:6600626,38824185:26179011,702021,196608 -[1,21143:6797234,38824185:25785795,505413,0 -(1,21141:6797234,38722998:25785795,404226,101187 -(1,21140:6797234,38722998:0,0,0 -g1,21140:6797234,38722998 -g1,21140:6797234,38722998 -g1,21140:6469554,38722998 -(1,21140:6469554,38722998:0,0,0 -) -g1,21140:6797234,38722998 -) -g1,21141:7113380,38722998 -g1,21141:7429526,38722998 -g1,21141:12487858,38722998 -g1,21141:13120150,38722998 -h1,21141:20391500,38722998:0,0,0 -k1,21141:32583029,38722998:12191529 -g1,21141:32583029,38722998 -) -] -) -g1,21143:32583029,38824185 -g1,21143:6797234,38824185 -g1,21143:6797234,38824185 -g1,21143:32583029,38824185 -g1,21143:32583029,38824185 -) -h1,21143:6797234,39020793:0,0,0 -(1,21147:6797234,40253147:25785795,505283,126483 -h1,21146:6797234,40253147:983040,0,0 -g1,21146:10914205,40253147 -g1,21146:14181830,40253147 -g1,21146:16122351,40253147 -g1,21146:18109402,40253147 -g1,21146:18840128,40253147 -k1,21147:32583029,40253147:10450372 -g1,21147:32583029,40253147 -) -v1,21149:6797234,41310190:0,393216,0 -(1,21153:6797234,41618995:25785795,702021,196608 -g1,21153:6797234,41618995 -g1,21153:6797234,41618995 -g1,21153:6600626,41618995 -(1,21153:6600626,41618995:0,702021,196608 -r1,21169:32779637,41618995:26179011,898629,196608 -k1,21153:6600625,41618995:-26179012 -) -(1,21153:6600626,41618995:26179011,702021,196608 -[1,21153:6797234,41618995:25785795,505413,0 -(1,21151:6797234,41517808:25785795,404226,101187 -(1,21150:6797234,41517808:0,0,0 -g1,21150:6797234,41517808 -g1,21150:6797234,41517808 -g1,21150:6469554,41517808 -(1,21150:6469554,41517808:0,0,0 -) -g1,21150:6797234,41517808 -) -g1,21151:7113380,41517808 -g1,21151:7429526,41517808 -g1,21151:12487858,41517808 -g1,21151:13120150,41517808 -g1,21151:17230044,41517808 -g1,21151:17546190,41517808 -g1,21151:17862336,41517808 -h1,21151:20391501,41517808:0,0,0 -k1,21151:32583029,41517808:12191528 -g1,21151:32583029,41517808 -) -] -) -g1,21153:32583029,41618995 -g1,21153:6797234,41618995 -g1,21153:6797234,41618995 -g1,21153:32583029,41618995 -g1,21153:32583029,41618995 -) -h1,21153:6797234,41815603:0,0,0 -(1,21157:6797234,43047957:25785795,505283,134348 -h1,21156:6797234,43047957:983040,0,0 -k1,21156:10346663,43047957:290324 -k1,21156:11095085,43047957:290325 -k1,21156:12489691,43047957:290324 -k1,21156:13527782,43047957:290325 -k1,21156:17082454,43047957:290324 -k1,21156:18657285,43047957:290325 -k1,21156:21245301,43047957:290324 -k1,21156:23286093,43047957:290325 -k1,21156:24192455,43047957:290324 -k1,21156:27102909,43047957:290325 -k1,21156:29403878,43047957:290324 -k1,21156:32583029,43047957:0 -) -(1,21157:6797234,43889445:25785795,513147,134348 -k1,21156:8999384,43889445:192161 -k1,21156:9962248,43889445:192161 -k1,21156:13594394,43889445:192161 -k1,21156:14469439,43889445:192160 -k1,21156:15887779,43889445:192161 -k1,21156:16731368,43889445:192161 -k1,21156:17671295,43889445:192161 -k1,21156:20026799,43889445:192161 -k1,21156:21210520,43889445:192161 -k1,21156:24289542,43889445:192161 -k1,21156:25310732,43889445:192160 -k1,21156:27131463,43889445:192161 -k1,21156:28342709,43889445:192161 -k1,21156:30832562,43889445:192161 -k1,21156:32583029,43889445:0 -) -(1,21157:6797234,44730933:25785795,505283,126483 -k1,21156:7724000,44730933:275338 -k1,21156:8747105,44730933:275339 -k1,21156:11655024,44730933:275338 -k1,21156:12798715,44730933:275339 -k1,21156:14604319,44730933:275338 -k1,21156:15531085,44730933:275338 -k1,21156:18179483,44730933:275339 -k1,21156:19473906,44730933:275338 -k1,21156:22235026,44730933:275339 -k1,21156:23126402,44730933:275338 -k1,21156:26495695,44730933:275338 -k1,21156:28758086,44730933:275339 -k1,21156:29758252,44730933:275338 -k1,21156:31318097,44730933:275339 -k1,21156:32051532,44730933:275338 -k1,21156:32583029,44730933:0 -) -(1,21157:6797234,45572421:25785795,505283,134348 -g1,21156:10586525,45572421 -g1,21156:11471916,45572421 -g1,21156:12027005,45572421 -g1,21156:15200913,45572421 -k1,21157:32583029,45572421:15342636 -g1,21157:32583029,45572421 -) -] -g1,21169:32583029,45706769 -) -] -(1,21169:32583029,45706769:0,0,0 -g1,21169:32583029,45706769 -) -) -] -(1,21169:6630773,47279633:25952256,0,0 -h1,21169:6630773,47279633:25952256,0,0 -) -] -(1,21169:4262630,4025873:0,0,0 -[1,21169:-473656,4025873:0,0,0 -(1,21169:-473656,-710413:0,0,0 -(1,21169:-473656,-710413:0,0,0 -g1,21169:-473656,-710413 -) -g1,21169:-473656,-710413 -) -] -) -] -!27636 -}383 -Input:3470:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3471:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3472:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +[1,21211:3078558,4812305:0,0,0 +(1,21211:3078558,49800853:0,16384,2228224 +g1,21211:29030814,49800853 +g1,21211:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,21211:36151628,51504789:16384,1179648,0 +) +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 +) +] +) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,21211:37855564,49800853:1179648,16384,0 +) +) +k1,21211:3078556,49800853:-34777008 +) +] +g1,21211:6630773,4812305 +k1,21211:21350816,4812305:13524666 +g1,21211:21999622,4812305 +g1,21211:25611966,4812305 +g1,21211:28956923,4812305 +g1,21211:29772190,4812305 +) +) +] +[1,21211:6630773,45706769:25952256,40108032,0 +(1,21211:6630773,45706769:25952256,40108032,0 +(1,21211:6630773,45706769:0,0,0 +g1,21211:6630773,45706769 +) +[1,21211:6630773,45706769:25952256,40108032,0 +v1,21151:6630773,6254097:0,393216,0 +(1,21151:6630773,16317167:25952256,10456286,0 +g1,21151:6630773,16317167 +g1,21151:6237557,16317167 +r1,21211:6368629,16317167:131072,10456286,0 +g1,21151:6567858,16317167 +g1,21151:6764466,16317167 +[1,21151:6764466,16317167:25818563,10456286,0 +(1,21146:6764466,16317167:25818563,10456286,0 +k1,21146:12702823,16317167:5938357 +h1,21145:12702823,16317167:0,0,0 +(1,21145:12702823,16317167:13941850,10456286,0 +(1,21145:12702823,16317167:13941749,10456312,0 +(1,21145:12702823,16317167:13941749,10456312,0 +(1,21145:12702823,16317167:0,10456312,0 +(1,21145:12702823,16317167:0,14208860,0 +(1,21145:12702823,16317167:18945146,14208860,0 +) +k1,21145:12702823,16317167:-18945146 +) +) +g1,21145:26644572,16317167 +) +) +) +g1,21146:26644673,16317167 +k1,21146:32583029,16317167:5938356 +) +] +g1,21151:32583029,16317167 +) +h1,21151:6630773,16317167:0,0,0 +(1,21156:6630773,19148327:25952256,32768,229376 +(1,21156:6630773,19148327:0,32768,229376 +(1,21156:6630773,19148327:5505024,32768,229376 +r1,21211:12135797,19148327:5505024,262144,229376 +) +k1,21156:6630773,19148327:-5505024 +) +(1,21156:6630773,19148327:25952256,32768,0 +r1,21211:32583029,19148327:25952256,32768,0 +) +) +(1,21156:6630773,20780179:25952256,606339,161218 +(1,21156:6630773,20780179:2464678,582746,14155 +g1,21156:6630773,20780179 +g1,21156:9095451,20780179 +) +g1,21156:13796742,20780179 +k1,21156:32583029,20780179:16814702 +g1,21156:32583029,20780179 +) +(1,21159:6630773,22038475:25952256,513147,134348 +k1,21158:7502009,22038475:243401 +k1,21158:10024096,22038475:243400 +h1,21158:10994684,22038475:0,0,0 +k1,21158:11238085,22038475:243401 +k1,21158:12290855,22038475:243400 +k1,21158:14032409,22038475:243401 +h1,21158:15227786,22038475:0,0,0 +k1,21158:15644856,22038475:243400 +k1,21158:16756609,22038475:243401 +k1,21158:20090032,22038475:243400 +k1,21158:21663814,22038475:243401 +k1,21158:23795962,22038475:243400 +k1,21158:25143645,22038475:243401 +k1,21158:26134811,22038475:243400 +k1,21158:27891438,22038475:243401 +k1,21158:28786267,22038475:243401 +k1,21158:30959047,22038475:243400 +k1,21159:32583029,22038475:0 +) +(1,21159:6630773,22903555:25952256,513147,134348 +k1,21158:9286619,22903555:238223 +k1,21158:10789688,22903555:238224 +k1,21158:11687203,22903555:238223 +k1,21158:14173311,22903555:238223 +k1,21158:16266203,22903555:238223 +k1,21158:17313797,22903555:238224 +k1,21158:17907880,22903555:238223 +k1,21158:20019122,22903555:238223 +k1,21158:21646709,22903555:238224 +k1,21158:22993146,22903555:238223 +k1,21158:25339662,22903555:238223 +k1,21158:29056536,22903555:238223 +k1,21158:30163112,22903555:238224 +k1,21158:31931601,22903555:238223 +k1,21158:32583029,22903555:0 +) +(1,21159:6630773,23768635:25952256,513147,126483 +k1,21158:9794032,23768635:226591 +k1,21158:10376483,23768635:226591 +k1,21158:13902156,23768635:226591 +k1,21158:15406043,23768635:226590 +k1,21158:17200255,23768635:226591 +k1,21158:21185991,23768635:226591 +k1,21158:23762703,23768635:226591 +k1,21158:25770563,23768635:226591 +k1,21158:26474911,23768635:226591 +k1,21158:27858211,23768635:226590 +k1,21158:30229795,23768635:226591 +k1,21158:31107814,23768635:226591 +k1,21158:32583029,23768635:0 +) +(1,21159:6630773,24633715:25952256,513147,134348 +k1,21158:9637728,24633715:198082 +k1,21158:12155130,24633715:198083 +k1,21158:13605605,24633715:198082 +k1,21158:15647871,24633715:198083 +k1,21158:17037398,24633715:198082 +k1,21158:19759927,24633715:198082 +k1,21158:21809402,24633715:198083 +k1,21158:24209494,24633715:198082 +k1,21158:25059005,24633715:198083 +k1,21158:26955125,24633715:198082 +k1,21158:28888601,24633715:198083 +k1,21158:31149101,24633715:198082 +k1,21158:32583029,24633715:0 +) +(1,21159:6630773,25498795:25952256,513147,126483 +g1,21158:7849087,25498795 +g1,21158:9383940,25498795 +g1,21158:10114666,25498795 +g1,21158:11380166,25498795 +g1,21158:12974001,25498795 +g1,21158:13824658,25498795 +g1,21158:16381217,25498795 +g1,21158:19040668,25498795 +g1,21158:20258982,25498795 +g1,21158:21846264,25498795 +g1,21158:22704785,25498795 +g1,21158:25445500,25498795 +k1,21159:32583029,25498795:5382475 +g1,21159:32583029,25498795 +) +(1,21161:6630773,26363875:25952256,513147,134348 +h1,21160:6630773,26363875:983040,0,0 +k1,21160:10449192,26363875:300446 +k1,21160:14416377,26363875:300446 +k1,21160:17007962,26363875:300446 +k1,21160:17664268,26363875:300446 +k1,21160:20089391,26363875:300446 +k1,21160:23292427,26363875:300446 +k1,21160:24540524,26363875:300446 +k1,21160:28324864,26363875:300446 +k1,21160:30232908,26363875:300446 +k1,21160:32583029,26363875:0 +) +(1,21161:6630773,27228955:25952256,513147,134348 +k1,21160:8254006,27228955:229282 +k1,21160:11485491,27228955:229282 +k1,21160:12668322,27228955:229282 +k1,21160:14930531,27228955:229282 +k1,21160:17829094,27228955:229282 +k1,21160:19456259,27228955:229282 +k1,21160:20704626,27228955:229282 +k1,21160:22026392,27228955:229281 +k1,21160:22914966,27228955:229282 +k1,21160:26221163,27228955:229282 +(1,21160:26221163,27228955:0,414482,115847 +r1,21211:26579429,27228955:358266,530329,115847 +k1,21160:26221163,27228955:-358266 +) +(1,21160:26221163,27228955:358266,414482,115847 +k1,21160:26221163,27228955:3277 +h1,21160:26576152,27228955:0,411205,112570 +) +k1,21160:26982381,27228955:229282 +(1,21160:26982381,27228955:0,452978,115847 +r1,21211:27340647,27228955:358266,568825,115847 +k1,21160:26982381,27228955:-358266 +) +(1,21160:26982381,27228955:358266,452978,115847 +k1,21160:26982381,27228955:3277 +h1,21160:27337370,27228955:0,411205,112570 +) +k1,21160:27569929,27228955:229282 +k1,21160:28990656,27228955:229282 +(1,21160:28990656,27228955:0,452978,115847 +r1,21211:29348922,27228955:358266,568825,115847 +k1,21160:28990656,27228955:-358266 +) +(1,21160:28990656,27228955:358266,452978,115847 +k1,21160:28990656,27228955:3277 +h1,21160:29345645,27228955:0,411205,112570 +) +k1,21160:29751874,27228955:229282 +k1,21160:32583029,27228955:0 +) +(1,21161:6630773,28094035:25952256,513147,134348 +k1,21160:10445361,28094035:147849 +k1,21160:13353586,28094035:147849 +k1,21160:16728428,28094035:147849 +k1,21160:18457661,28094035:147849 +k1,21160:19553161,28094035:147849 +k1,21160:22304756,28094035:147850 +k1,21160:25138926,28094035:147849 +k1,21160:27605439,28094035:147849 +k1,21160:28412580,28094035:147849 +k1,21160:30808314,28094035:147849 +k1,21161:32583029,28094035:0 +) +(1,21161:6630773,28959115:25952256,513147,126483 +(1,21160:6630773,28959115:0,414482,115847 +r1,21211:6989039,28959115:358266,530329,115847 +k1,21160:6630773,28959115:-358266 +) +(1,21160:6630773,28959115:358266,414482,115847 +k1,21160:6630773,28959115:3277 +h1,21160:6985762,28959115:0,411205,112570 +) +k1,21160:7224716,28959115:235677 +k1,21160:9472348,28959115:235677 +k1,21160:12470368,28959115:235677 +k1,21160:15198379,28959115:235677 +(1,21160:15198379,28959115:0,452978,115847 +r1,21211:15556645,28959115:358266,568825,115847 +k1,21160:15198379,28959115:-358266 +) +(1,21160:15198379,28959115:358266,452978,115847 +k1,21160:15198379,28959115:3277 +h1,21160:15553368,28959115:0,411205,112570 +) +k1,21160:15792322,28959115:235677 +k1,21160:19199286,28959115:235677 +k1,21160:21509176,28959115:235676 +k1,21160:23044432,28959115:235677 +k1,21160:24041637,28959115:235677 +k1,21160:25750563,28959115:235677 +k1,21160:27177685,28959115:235677 +(1,21160:27177685,28959115:0,452978,115847 +r1,21211:27535951,28959115:358266,568825,115847 +k1,21160:27177685,28959115:-358266 +) +(1,21160:27177685,28959115:358266,452978,115847 +k1,21160:27177685,28959115:3277 +h1,21160:27532674,28959115:0,411205,112570 +) +k1,21160:27771628,28959115:235677 +k1,21160:31178592,28959115:235677 +k1,21161:32583029,28959115:0 +) +(1,21161:6630773,29824195:25952256,513147,134348 +k1,21160:7793300,29824195:279757 +k1,21160:8882427,29824195:279757 +k1,21160:10234352,29824195:279756 +k1,21160:11173401,29824195:279757 +k1,21160:12904780,29824195:279757 +k1,21160:15060177,29824195:279757 +k1,21160:16536621,29824195:279757 +k1,21160:18423976,29824195:279757 +k1,21160:19355160,29824195:279756 +k1,21160:20382683,29824195:279757 +k1,21160:22175666,29824195:279757 +k1,21160:23141585,29824195:279757 +k1,21160:25495556,29824195:279757 +k1,21160:26879594,29824195:279756 +k1,21160:27907117,29824195:279757 +k1,21160:30847636,29824195:279757 +k1,21160:32583029,29824195:0 +) +(1,21161:6630773,30689275:25952256,505283,126483 +k1,21161:32583028,30689275:21924412 +g1,21161:32583028,30689275 +) +(1,21164:6630773,31374130:25952256,505283,134348 +h1,21162:6630773,31374130:983040,0,0 +g1,21162:8766591,31374130 +g1,21162:10454143,31374130 +g1,21162:11414900,31374130 +g1,21162:14186417,31374130 +g1,21162:15577091,31374130 +g1,21162:17809902,31374130 +g1,21162:19663915,31374130 +g1,21162:21644413,31374130 +k1,21164:32583029,31374130:10938616 +g1,21164:32583029,31374130 +) +v1,21164:6630773,32058985:0,393216,0 +(1,21177:6630773,38569969:25952256,6904200,196608 +g1,21177:6630773,38569969 +g1,21177:6630773,38569969 +g1,21177:6434165,38569969 +(1,21177:6434165,38569969:0,6904200,196608 +r1,21211:32779637,38569969:26345472,7100808,196608 +k1,21177:6434165,38569969:-26345472 +) +(1,21177:6434165,38569969:26345472,6904200,196608 +[1,21177:6630773,38569969:25952256,6707592,0 +(1,21166:6630773,32293422:25952256,431045,112852 +(1,21165:6630773,32293422:0,0,0 +g1,21165:6630773,32293422 +g1,21165:6630773,32293422 +g1,21165:6303093,32293422 +(1,21165:6303093,32293422:0,0,0 +) +g1,21165:6630773,32293422 +) +g1,21166:7626635,32293422 +g1,21166:8622497,32293422 +g1,21166:12605945,32293422 +g1,21166:16257439,32293422 +g1,21166:17917209,32293422 +g1,21166:19908933,32293422 +g1,21166:20572841,32293422 +g1,21166:25220197,32293422 +h1,21166:25552151,32293422:0,0,0 +k1,21166:32583029,32293422:7030878 +g1,21166:32583029,32293422 +) +(1,21167:6630773,32978277:25952256,424439,112852 +h1,21167:6630773,32978277:0,0,0 +g1,21167:6962727,32978277 +g1,21167:7294681,32978277 +g1,21167:7626635,32978277 +g1,21167:7958589,32978277 +g1,21167:8290543,32978277 +g1,21167:8622497,32978277 +g1,21167:8954451,32978277 +g1,21167:9286405,32978277 +g1,21167:13601806,32978277 +h1,21167:13933760,32978277:0,0,0 +k1,21167:32583028,32978277:18649268 +g1,21167:32583028,32978277 +) +(1,21168:6630773,33663132:25952256,424439,112852 +h1,21168:6630773,33663132:0,0,0 +g1,21168:6962727,33663132 +g1,21168:7294681,33663132 +g1,21168:7626635,33663132 +g1,21168:7958589,33663132 +g1,21168:8290543,33663132 +g1,21168:8622497,33663132 +g1,21168:8954451,33663132 +g1,21168:9286405,33663132 +g1,21168:16589392,33663132 +g1,21168:17253300,33663132 +h1,21168:19245024,33663132:0,0,0 +k1,21168:32583029,33663132:13338005 +g1,21168:32583029,33663132 +) +(1,21169:6630773,34347987:25952256,431045,112852 +h1,21169:6630773,34347987:0,0,0 +g1,21169:7626635,34347987 +g1,21169:8622497,34347987 +g1,21169:12605945,34347987 +g1,21169:16257439,34347987 +g1,21169:17917209,34347987 +g1,21169:19908933,34347987 +g1,21169:20572841,34347987 +g1,21169:25552150,34347987 +h1,21169:25884104,34347987:0,0,0 +k1,21169:32583029,34347987:6698925 +g1,21169:32583029,34347987 +) +(1,21170:6630773,35032842:25952256,424439,112852 +h1,21170:6630773,35032842:0,0,0 +g1,21170:6962727,35032842 +g1,21170:7294681,35032842 +g1,21170:7626635,35032842 +g1,21170:7958589,35032842 +g1,21170:8290543,35032842 +g1,21170:8622497,35032842 +g1,21170:8954451,35032842 +g1,21170:9286405,35032842 +g1,21170:13601806,35032842 +h1,21170:13933760,35032842:0,0,0 +k1,21170:32583028,35032842:18649268 +g1,21170:32583028,35032842 +) +(1,21171:6630773,35717697:25952256,424439,112852 +h1,21171:6630773,35717697:0,0,0 +g1,21171:6962727,35717697 +g1,21171:7294681,35717697 +g1,21171:7626635,35717697 +g1,21171:7958589,35717697 +g1,21171:8290543,35717697 +g1,21171:8622497,35717697 +g1,21171:8954451,35717697 +g1,21171:9286405,35717697 +g1,21171:16589392,35717697 +g1,21171:17253300,35717697 +h1,21171:19245024,35717697:0,0,0 +k1,21171:32583029,35717697:13338005 +g1,21171:32583029,35717697 +) +(1,21172:6630773,36402552:25952256,431045,112852 +h1,21172:6630773,36402552:0,0,0 +g1,21172:7626635,36402552 +g1,21172:8622497,36402552 +g1,21172:12605945,36402552 +g1,21172:18913071,36402552 +g1,21172:20904795,36402552 +h1,21172:21236749,36402552:0,0,0 +k1,21172:32583029,36402552:11346280 +g1,21172:32583029,36402552 +) +(1,21173:6630773,37087407:25952256,424439,112852 +h1,21173:6630773,37087407:0,0,0 +g1,21173:6962727,37087407 +g1,21173:7294681,37087407 +g1,21173:7626635,37087407 +g1,21173:7958589,37087407 +g1,21173:8290543,37087407 +g1,21173:8622497,37087407 +g1,21173:8954451,37087407 +g1,21173:9286405,37087407 +g1,21173:13601806,37087407 +h1,21173:13933760,37087407:0,0,0 +k1,21173:32583028,37087407:18649268 +g1,21173:32583028,37087407 +) +(1,21174:6630773,37772262:25952256,424439,79822 +h1,21174:6630773,37772262:0,0,0 +g1,21174:6962727,37772262 +g1,21174:7294681,37772262 +g1,21174:7626635,37772262 +g1,21174:7958589,37772262 +g1,21174:8290543,37772262 +g1,21174:8622497,37772262 +g1,21174:8954451,37772262 +g1,21174:9286405,37772262 +g1,21174:15261576,37772262 +h1,21174:15593530,37772262:0,0,0 +k1,21174:32583030,37772262:16989500 +g1,21174:32583030,37772262 +) +(1,21175:6630773,38457117:25952256,424439,112852 +h1,21175:6630773,38457117:0,0,0 +g1,21175:6962727,38457117 +g1,21175:7294681,38457117 +g1,21175:7626635,38457117 +g1,21175:7958589,38457117 +g1,21175:8290543,38457117 +g1,21175:8622497,38457117 +g1,21175:8954451,38457117 +g1,21175:9286405,38457117 +g1,21175:9618359,38457117 +g1,21175:9950313,38457117 +g1,21175:10282267,38457117 +g1,21175:10614221,38457117 +g1,21175:10946175,38457117 +g1,21175:11278129,38457117 +g1,21175:11610083,38457117 +g1,21175:11942037,38457117 +g1,21175:18249162,38457117 +g1,21175:18913070,38457117 +g1,21175:20240886,38457117 +g1,21175:22232610,38457117 +g1,21175:22896518,38457117 +g1,21175:23892380,38457117 +g1,21175:25884104,38457117 +g1,21175:26548012,38457117 +h1,21175:28207782,38457117:0,0,0 +k1,21175:32583029,38457117:4375247 +g1,21175:32583029,38457117 +) +] +) +g1,21177:32583029,38569969 +g1,21177:6630773,38569969 +g1,21177:6630773,38569969 +g1,21177:32583029,38569969 +g1,21177:32583029,38569969 +) +h1,21177:6630773,38766577:0,0,0 +(1,21181:6630773,39631657:25952256,505283,134348 +h1,21180:6630773,39631657:983040,0,0 +k1,21180:9424526,39631657:175590 +k1,21180:10468467,39631657:175589 +k1,21180:13485043,39631657:175590 +k1,21180:14016493,39631657:175590 +k1,21180:15469380,39631657:175590 +k1,21180:17380362,39631657:175589 +k1,21180:18242114,39631657:175590 +k1,21180:20491918,39631657:175590 +k1,21180:21686592,39631657:175589 +k1,21180:23516966,39631657:175590 +k1,21180:25300154,39631657:175590 +k1,21180:27825865,39631657:175590 +k1,21180:29856778,39631657:175589 +k1,21180:31516758,39631657:175590 +k1,21180:32583029,39631657:0 +) +(1,21181:6630773,40496737:25952256,505283,95026 +k1,21181:32583030,40496737:23495968 +g1,21181:32583030,40496737 +) +v1,21185:6630773,41181592:0,393216,0 +(1,21189:6630773,41515669:25952256,727293,196608 +g1,21189:6630773,41515669 +g1,21189:6630773,41515669 +g1,21189:6434165,41515669 +(1,21189:6434165,41515669:0,727293,196608 +r1,21211:32779637,41515669:26345472,923901,196608 +k1,21189:6434165,41515669:-26345472 +) +(1,21189:6434165,41515669:26345472,727293,196608 +[1,21189:6630773,41515669:25952256,530685,0 +(1,21187:6630773,41409423:25952256,424439,106246 +(1,21186:6630773,41409423:0,0,0 +g1,21186:6630773,41409423 +g1,21186:6630773,41409423 +g1,21186:6303093,41409423 +(1,21186:6303093,41409423:0,0,0 +) +g1,21186:6630773,41409423 +) +g1,21187:7958589,41409423 +g1,21187:8622497,41409423 +g1,21187:9950313,41409423 +g1,21187:10614221,41409423 +h1,21187:11278129,41409423:0,0,0 +k1,21187:32583029,41409423:21304900 +g1,21187:32583029,41409423 +) +] +) +g1,21189:32583029,41515669 +g1,21189:6630773,41515669 +g1,21189:6630773,41515669 +g1,21189:32583029,41515669 +g1,21189:32583029,41515669 +) +h1,21189:6630773,41712277:0,0,0 +(1,21193:6630773,42577357:25952256,505283,134348 +h1,21192:6630773,42577357:983040,0,0 +k1,21192:8754140,42577357:186778 +k1,21192:10138260,42577357:186777 +k1,21192:10680898,42577357:186778 +k1,21192:12135141,42577357:186777 +k1,21192:13513364,42577357:186778 +k1,21192:14687113,42577357:186777 +k1,21192:15892976,42577357:186778 +k1,21192:18153967,42577357:186777 +k1,21192:19734696,42577357:186778 +k1,21192:20277334,42577357:186778 +k1,21192:22339751,42577357:186777 +k1,21192:23154364,42577357:186778 +k1,21192:24718052,42577357:186777 +k1,21192:26096275,42577357:186778 +k1,21192:28485062,42577357:186777 +k1,21192:30542893,42577357:186778 +k1,21193:32583029,42577357:0 +) +(1,21193:6630773,43442437:25952256,513147,126483 +g1,21192:8857031,43442437 +g1,21192:10393194,43442437 +g1,21192:11340189,43442437 +g1,21192:13837766,43442437 +g1,21192:14688423,43442437 +g1,21192:16341241,43442437 +g1,21192:17559555,43442437 +g1,21192:20024364,43442437 +g1,21192:23824796,43442437 +g1,21192:24683317,43442437 +g1,21192:25901631,43442437 +g1,21192:26515703,43442437 +k1,21193:32583029,43442437:2816740 +g1,21193:32583029,43442437 +) +v1,21195:6630773,44127292:0,393216,0 +(1,21200:6630773,45152830:25952256,1418754,196608 +g1,21200:6630773,45152830 +g1,21200:6630773,45152830 +g1,21200:6434165,45152830 +(1,21200:6434165,45152830:0,1418754,196608 +r1,21211:32779637,45152830:26345472,1615362,196608 +k1,21200:6434165,45152830:-26345472 +) +(1,21200:6434165,45152830:26345472,1418754,196608 +[1,21200:6630773,45152830:25952256,1222146,0 +(1,21197:6630773,44355123:25952256,424439,106246 +(1,21196:6630773,44355123:0,0,0 +g1,21196:6630773,44355123 +g1,21196:6630773,44355123 +g1,21196:6303093,44355123 +(1,21196:6303093,44355123:0,0,0 +) +g1,21196:6630773,44355123 +) +g1,21197:8290543,44355123 +g1,21197:8954451,44355123 +g1,21197:10282267,44355123 +g1,21197:10946175,44355123 +g1,21197:12273991,44355123 +h1,21197:12605945,44355123:0,0,0 +k1,21197:32583029,44355123:19977084 +g1,21197:32583029,44355123 +) +(1,21198:6630773,45039978:25952256,431045,112852 +h1,21198:6630773,45039978:0,0,0 +g1,21198:6962727,45039978 +g1,21198:7294681,45039978 +g1,21198:7626635,45039978 +g1,21198:14929622,45039978 +g1,21198:15593530,45039978 +g1,21198:17585254,45039978 +g1,21198:18913070,45039978 +g1,21198:19908932,45039978 +g1,21198:21568702,45039978 +g1,21198:25220195,45039978 +g1,21198:28871688,45039978 +g1,21198:29535596,45039978 +h1,21198:30863412,45039978:0,0,0 +k1,21198:32583029,45039978:1719617 +g1,21198:32583029,45039978 +) +] +) +g1,21200:32583029,45152830 +g1,21200:6630773,45152830 +g1,21200:6630773,45152830 +g1,21200:32583029,45152830 +g1,21200:32583029,45152830 +) +h1,21200:6630773,45349438:0,0,0 +] +(1,21211:32583029,45706769:0,0,0 +g1,21211:32583029,45706769 +) +) +] +(1,21211:6630773,47279633:25952256,0,0 +h1,21211:6630773,47279633:25952256,0,0 +) +] +(1,21211:4262630,4025873:0,0,0 +[1,21211:-473656,4025873:0,0,0 +(1,21211:-473656,-710413:0,0,0 +(1,21211:-473656,-710413:0,0,0 +g1,21211:-473656,-710413 +) +g1,21211:-473656,-710413 +) +] +) +] +!21569 +}363 Input:3473:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3474:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3475:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -362437,1561 +359190,1354 @@ Input:3476:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConso Input:3477:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3478:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3479:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3480:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3481:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3482:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3483:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3484:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3485:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3486:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1610 -{384 -[1,21221:4262630,47279633:28320399,43253760,0 -(1,21221:4262630,4025873:0,0,0 -[1,21221:-473656,4025873:0,0,0 -(1,21221:-473656,-710413:0,0,0 -(1,21221:-473656,-644877:0,0,0 -k1,21221:-473656,-644877:-65536 +!670 +{364 +[1,21220:4262630,47279633:28320399,43253760,0 +(1,21220:4262630,4025873:0,0,0 +[1,21220:-473656,4025873:0,0,0 +(1,21220:-473656,-710413:0,0,0 +(1,21220:-473656,-644877:0,0,0 +k1,21220:-473656,-644877:-65536 ) -(1,21221:-473656,4736287:0,0,0 -k1,21221:-473656,4736287:5209943 +(1,21220:-473656,4736287:0,0,0 +k1,21220:-473656,4736287:5209943 ) -g1,21221:-473656,-710413 +g1,21220:-473656,-710413 ) ] ) -[1,21221:6630773,47279633:25952256,43253760,0 -[1,21221:6630773,4812305:25952256,786432,0 -(1,21221:6630773,4812305:25952256,505283,134348 -(1,21221:6630773,4812305:25952256,505283,134348 -g1,21221:3078558,4812305 -[1,21221:3078558,4812305:0,0,0 -(1,21221:3078558,2439708:0,1703936,0 -k1,21221:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,21221:2537886,2439708:1179648,16384,0 +[1,21220:6630773,47279633:25952256,43253760,0 +[1,21220:6630773,4812305:25952256,786432,0 +(1,21220:6630773,4812305:25952256,505283,134348 +(1,21220:6630773,4812305:25952256,505283,134348 +g1,21220:3078558,4812305 +[1,21220:3078558,4812305:0,0,0 +(1,21220:3078558,2439708:0,1703936,0 +k1,21220:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,21220:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,21221:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,21220:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,21221:3078558,4812305:0,0,0 -(1,21221:3078558,2439708:0,1703936,0 -g1,21221:29030814,2439708 -g1,21221:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,21221:36151628,1915420:16384,1179648,0 +[1,21220:3078558,4812305:0,0,0 +(1,21220:3078558,2439708:0,1703936,0 +g1,21220:29030814,2439708 +g1,21220:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,21220:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,21221:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,21220:37855564,2439708:1179648,16384,0 ) ) -k1,21221:3078556,2439708:-34777008 +k1,21220:3078556,2439708:-34777008 ) ] -[1,21221:3078558,4812305:0,0,0 -(1,21221:3078558,49800853:0,16384,2228224 -k1,21221:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,21221:2537886,49800853:1179648,16384,0 +[1,21220:3078558,4812305:0,0,0 +(1,21220:3078558,49800853:0,16384,2228224 +k1,21220:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,21220:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,21221:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,21220:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,21221:3078558,4812305:0,0,0 -(1,21221:3078558,49800853:0,16384,2228224 -g1,21221:29030814,49800853 -g1,21221:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,21221:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] -) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,21221:37855564,49800853:1179648,16384,0 -) -) -k1,21221:3078556,49800853:-34777008 -) -] -g1,21221:6630773,4812305 -g1,21221:6630773,4812305 -g1,21221:8592265,4812305 -g1,21221:11642310,4812305 -g1,21221:15396212,4812305 -k1,21221:31387652,4812305:15991440 -) -) -] -[1,21221:6630773,45706769:25952256,40108032,0 -(1,21221:6630773,45706769:25952256,40108032,0 -(1,21221:6630773,45706769:0,0,0 -g1,21221:6630773,45706769 -) -[1,21221:6630773,45706769:25952256,40108032,0 -v1,21169:6630773,6254097:0,393216,0 -(1,21169:6630773,9948510:25952256,4087629,0 -g1,21169:6630773,9948510 -g1,21169:6303093,9948510 -r1,21221:6401397,9948510:98304,4087629,0 -g1,21169:6600626,9948510 -g1,21169:6797234,9948510 -[1,21169:6797234,9948510:25785795,4087629,0 -v1,21159:6797234,6254097:0,393216,0 -(1,21167:6797234,9227614:25785795,3366733,196608 -g1,21167:6797234,9227614 -g1,21167:6797234,9227614 -g1,21167:6600626,9227614 -(1,21167:6600626,9227614:0,3366733,196608 -r1,21221:32779637,9227614:26179011,3563341,196608 -k1,21167:6600625,9227614:-26179012 -) -(1,21167:6600626,9227614:26179011,3366733,196608 -[1,21167:6797234,9227614:25785795,3170125,0 -(1,21161:6797234,6461715:25785795,404226,107478 -(1,21160:6797234,6461715:0,0,0 -g1,21160:6797234,6461715 -g1,21160:6797234,6461715 -g1,21160:6469554,6461715 -(1,21160:6469554,6461715:0,0,0 -) -g1,21160:6797234,6461715 -) -k1,21161:6797234,6461715:0 -g1,21161:10907128,6461715 -g1,21161:14384731,6461715 -g1,21161:16597751,6461715 -h1,21161:16913897,6461715:0,0,0 -k1,21161:32583029,6461715:15669132 -g1,21161:32583029,6461715 -) -(1,21162:6797234,7127893:25785795,404226,107478 -h1,21162:6797234,7127893:0,0,0 -g1,21162:7113380,7127893 -g1,21162:7429526,7127893 -g1,21162:11539420,7127893 -h1,21162:11855566,7127893:0,0,0 -k1,21162:32583030,7127893:20727464 -g1,21162:32583030,7127893 -) -(1,21163:6797234,7794071:25785795,404226,107478 -h1,21163:6797234,7794071:0,0,0 -g1,21163:7113380,7794071 -g1,21163:7429526,7794071 -g1,21163:11855566,7794071 -g1,21163:12487858,7794071 -k1,21163:12487858,7794071:0 -h1,21163:14700878,7794071:0,0,0 -k1,21163:32583030,7794071:17882152 -g1,21163:32583030,7794071 -) -(1,21164:6797234,8460249:25785795,404226,101187 -h1,21164:6797234,8460249:0,0,0 -g1,21164:7113380,8460249 -g1,21164:7429526,8460249 -g1,21164:7745672,8460249 -g1,21164:8061818,8460249 -g1,21164:8377964,8460249 -g1,21164:8694110,8460249 -g1,21164:9010256,8460249 -g1,21164:9326402,8460249 -g1,21164:9642548,8460249 -g1,21164:9958694,8460249 -g1,21164:10274840,8460249 -g1,21164:10907132,8460249 -g1,21164:11539424,8460249 -g1,21164:13752445,8460249 -g1,21164:15017029,8460249 -g1,21164:15649321,8460249 -g1,21164:16281613,8460249 -g1,21164:18178488,8460249 -g1,21164:19759217,8460249 -k1,21164:19759217,8460249:0 -h1,21164:21339946,8460249:0,0,0 -k1,21164:32583029,8460249:11243083 -g1,21164:32583029,8460249 -) -(1,21165:6797234,9126427:25785795,404226,101187 -h1,21165:6797234,9126427:0,0,0 -g1,21165:7113380,9126427 -g1,21165:7429526,9126427 -g1,21165:7745672,9126427 -g1,21165:8061818,9126427 -g1,21165:8377964,9126427 -g1,21165:8694110,9126427 -g1,21165:9010256,9126427 -g1,21165:9326402,9126427 -g1,21165:9642548,9126427 -g1,21165:9958694,9126427 -g1,21165:10274840,9126427 -g1,21165:12171714,9126427 -g1,21165:12804006,9126427 -g1,21165:17862339,9126427 -g1,21165:21656088,9126427 -g1,21165:25765983,9126427 -g1,21165:27662857,9126427 -g1,21165:28295149,9126427 -h1,21165:29875878,9126427:0,0,0 -k1,21165:32583029,9126427:2707151 -g1,21165:32583029,9126427 -) -] -) -g1,21167:32583029,9227614 -g1,21167:6797234,9227614 -g1,21167:6797234,9227614 -g1,21167:32583029,9227614 -g1,21167:32583029,9227614 -) -h1,21167:6797234,9424222:0,0,0 -] -g1,21169:32583029,9948510 -) -h1,21169:6630773,9948510:0,0,0 -(1,21172:6630773,11133526:25952256,513147,115847 -h1,21171:6630773,11133526:983040,0,0 -k1,21171:9760552,11133526:159687 -k1,21171:10788591,11133526:159687 -k1,21171:12461504,11133526:159687 -(1,21171:12461504,11133526:0,452978,115847 -r1,21221:14930041,11133526:2468537,568825,115847 -k1,21171:12461504,11133526:-2468537 -) -(1,21171:12461504,11133526:2468537,452978,115847 -k1,21171:12461504,11133526:3277 -h1,21171:14926764,11133526:0,411205,112570 -) -k1,21171:15089727,11133526:159686 -k1,21171:15900842,11133526:159687 -k1,21171:17899469,11133526:159687 -k1,21171:20069801,11133526:159687 -k1,21171:22267658,11133526:159687 -k1,21171:23043382,11133526:159686 -k1,21171:23558929,11133526:159687 -k1,21171:26403626,11133526:159687 -k1,21171:29589110,11133526:159687 -(1,21171:29589110,11133526:0,459977,115847 -r1,21221:32409359,11133526:2820249,575824,115847 -k1,21171:29589110,11133526:-2820249 -) -(1,21171:29589110,11133526:2820249,459977,115847 -k1,21171:29589110,11133526:3277 -h1,21171:32406082,11133526:0,411205,112570 -) -k1,21172:32583029,11133526:0 -) -(1,21172:6630773,11975014:25952256,513147,134348 -(1,21171:6630773,11975014:0,459977,115847 -r1,21221:9802733,11975014:3171960,575824,115847 -k1,21171:6630773,11975014:-3171960 -) -(1,21171:6630773,11975014:3171960,459977,115847 -k1,21171:6630773,11975014:3277 -h1,21171:9799456,11975014:0,411205,112570 -) -k1,21171:10138532,11975014:162129 -k1,21171:11492105,11975014:162128 -(1,21171:11492105,11975014:0,459977,115847 -r1,21221:15015777,11975014:3523672,575824,115847 -k1,21171:11492105,11975014:-3523672 -) -(1,21171:11492105,11975014:3523672,459977,115847 -k1,21171:11492105,11975014:3277 -h1,21171:15012500,11975014:0,411205,112570 -) -k1,21171:15177906,11975014:162129 -k1,21171:17021689,11975014:162129 -k1,21171:18202903,11975014:162129 -k1,21171:21841716,11975014:162128 -k1,21171:23271311,11975014:162129 -k1,21171:26408119,11975014:162129 -k1,21171:28766359,11975014:162129 -k1,21171:29587779,11975014:162128 -k1,21171:31451878,11975014:162129 -k1,21172:32583029,11975014:0 -) -(1,21172:6630773,12816502:25952256,513147,134348 -k1,21171:8036302,12816502:139373 -k1,21171:10050005,12816502:139373 -k1,21171:13215175,12816502:139373 -k1,21171:14458830,12816502:139373 -k1,21171:15345969,12816502:139373 -k1,21171:16998568,12816502:139373 -k1,21171:18835980,12816502:139374 -k1,21171:21547641,12816502:139373 -k1,21171:23294612,12816502:139373 -k1,21171:24085413,12816502:139373 -k1,21171:26956982,12816502:139373 -k1,21171:29608350,12816502:139373 -k1,21171:32583029,12816502:0 -) -(1,21172:6630773,13657990:25952256,513147,134348 -k1,21171:9009006,13657990:182122 -k1,21171:10138779,13657990:182122 -k1,21171:11339986,13657990:182122 -(1,21171:11339986,13657990:0,452978,115847 -r1,21221:13105099,13657990:1765113,568825,115847 -k1,21171:11339986,13657990:-1765113 -) -(1,21171:11339986,13657990:1765113,452978,115847 -k1,21171:11339986,13657990:3277 -h1,21171:13101822,13657990:0,411205,112570 -) -k1,21171:13287221,13657990:182122 -k1,21171:16256589,13657990:182122 -k1,21171:17504982,13657990:182122 -k1,21171:18346396,13657990:182122 -k1,21171:21322318,13657990:182122 -k1,21171:23747737,13657990:182122 -k1,21171:25484373,13657990:182122 -k1,21171:27265573,13657990:182122 -k1,21171:28639140,13657990:182122 -k1,21171:30287958,13657990:182122 -k1,21172:32583029,13657990:0 -) -(1,21172:6630773,14499478:25952256,513147,126483 -g1,21171:7722602,14499478 -g1,21171:10106146,14499478 -g1,21171:11863166,14499478 -g1,21171:13166677,14499478 -g1,21171:14287342,14499478 -g1,21171:15434222,14499478 -g1,21171:18468538,14499478 -g1,21171:20180993,14499478 -g1,21171:21031650,14499478 -g1,21171:23160259,14499478 -g1,21171:25203671,14499478 -g1,21171:27412889,14499478 -g1,21171:27967978,14499478 -g1,21171:29266901,14499478 -g1,21171:30117558,14499478 -(1,21171:30117558,14499478:0,452978,115847 -r1,21221:31882671,14499478:1765113,568825,115847 -k1,21171:30117558,14499478:-1765113 -) -(1,21171:30117558,14499478:1765113,452978,115847 -k1,21171:30117558,14499478:3277 -h1,21171:31879394,14499478:0,411205,112570 -) -k1,21172:32583029,14499478:526688 -g1,21172:32583029,14499478 -) -v1,21174:6630773,15509183:0,393216,0 -(1,21187:6630773,18484465:25952256,3368498,196608 -g1,21187:6630773,18484465 -g1,21187:6630773,18484465 -g1,21187:6434165,18484465 -(1,21187:6434165,18484465:0,3368498,196608 -r1,21221:32779637,18484465:26345472,3565106,196608 -k1,21187:6434165,18484465:-26345472 -) -(1,21187:6434165,18484465:26345472,3368498,196608 -[1,21187:6630773,18484465:25952256,3171890,0 -(1,21176:6630773,15723093:25952256,410518,107478 -(1,21175:6630773,15723093:0,0,0 -g1,21175:6630773,15723093 -g1,21175:6630773,15723093 -g1,21175:6303093,15723093 -(1,21175:6303093,15723093:0,0,0 -) -g1,21175:6630773,15723093 -) -k1,21176:6630773,15723093:0 -g1,21176:12637542,15723093 -g1,21176:13269834,15723093 -g1,21176:15482854,15723093 -g1,21176:16431292,15723093 -k1,21176:16431292,15723093:0 -h1,21176:18644312,15723093:0,0,0 -k1,21176:32583029,15723093:13938717 -g1,21176:32583029,15723093 -) -(1,21180:6630773,16389271:25952256,404226,107478 -(1,21178:6630773,16389271:0,0,0 -g1,21178:6630773,16389271 -g1,21178:6630773,16389271 -g1,21178:6303093,16389271 -(1,21178:6303093,16389271:0,0,0 -) -g1,21178:6630773,16389271 -) -g1,21180:7579210,16389271 -g1,21180:8843793,16389271 -g1,21180:12637541,16389271 -g1,21180:13269833,16389271 -h1,21180:15166707,16389271:0,0,0 -k1,21180:32583029,16389271:17416322 -g1,21180:32583029,16389271 -) -(1,21182:6630773,17710809:25952256,410518,107478 -(1,21181:6630773,17710809:0,0,0 -g1,21181:6630773,17710809 -g1,21181:6630773,17710809 -g1,21181:6303093,17710809 -(1,21181:6303093,17710809:0,0,0 -) -g1,21181:6630773,17710809 -) -k1,21182:6630773,17710809:0 -g1,21182:12637542,17710809 -g1,21182:13269834,17710809 -g1,21182:15482854,17710809 -g1,21182:16431292,17710809 -k1,21182:16431292,17710809:0 -h1,21182:18644312,17710809:0,0,0 -k1,21182:32583029,17710809:13938717 -g1,21182:32583029,17710809 -) -(1,21186:6630773,18376987:25952256,404226,107478 -(1,21184:6630773,18376987:0,0,0 -g1,21184:6630773,18376987 -g1,21184:6630773,18376987 -g1,21184:6303093,18376987 -(1,21184:6303093,18376987:0,0,0 -) -g1,21184:6630773,18376987 -) -g1,21186:7579210,18376987 -g1,21186:8843793,18376987 -g1,21186:11372959,18376987 -g1,21186:12005251,18376987 -h1,21186:13585979,18376987:0,0,0 -k1,21186:32583029,18376987:18997050 -g1,21186:32583029,18376987 -) -] -) -g1,21187:32583029,18484465 -g1,21187:6630773,18484465 -g1,21187:6630773,18484465 -g1,21187:32583029,18484465 -g1,21187:32583029,18484465 -) -h1,21187:6630773,18681073:0,0,0 -v1,21191:6630773,20209617:0,393216,0 -(1,21194:6630773,24142455:25952256,4326054,0 -g1,21194:6630773,24142455 -g1,21194:6303093,24142455 -r1,21221:6401397,24142455:98304,4326054,0 -g1,21194:6600626,24142455 -g1,21194:6797234,24142455 -[1,21194:6797234,24142455:25785795,4326054,0 -(1,21192:6797234,20642155:25785795,825754,196608 -(1,21191:6797234,20642155:0,825754,196608 -r1,21221:7890375,20642155:1093141,1022362,196608 -k1,21191:6797234,20642155:-1093141 -) -(1,21191:6797234,20642155:1093141,825754,196608 -) -k1,21191:8210704,20642155:320329 -k1,21191:9936922,20642155:327680 -k1,21191:12066045,20642155:320329 -k1,21191:13405459,20642155:320329 -k1,21191:16030034,20642155:320329 -k1,21191:18379358,20642155:320329 -k1,21191:19177444,20642155:320329 -k1,21191:20668246,20642155:320329 -k1,21191:21980135,20642155:320329 -k1,21191:24792798,20642155:320329 -k1,21191:26507078,20642155:320329 -k1,21191:27280795,20642155:320208 -k1,21191:28284009,20642155:320329 -k1,21191:29887533,20642155:320329 -k1,21192:32583029,20642155:0 -) -(1,21192:6797234,21483643:25785795,513147,134348 -(1,21191:6797234,21483643:0,459977,115847 -r1,21221:9969194,21483643:3171960,575824,115847 -k1,21191:6797234,21483643:-3171960 -) -(1,21191:6797234,21483643:3171960,459977,115847 -k1,21191:6797234,21483643:3277 -h1,21191:9965917,21483643:0,411205,112570 -) -g1,21191:10168423,21483643 -g1,21191:11500114,21483643 -g1,21191:14033735,21483643 -g1,21191:14980730,21483643 -g1,21191:17672293,21483643 -g1,21191:18522950,21483643 -g1,21191:20066322,21483643 -g1,21191:23367370,21483643 -g1,21191:25350489,21483643 -g1,21191:26338116,21483643 -g1,21191:27925398,21483643 -k1,21192:32583029,21483643:2985808 -g1,21192:32583029,21483643 -) -(1,21194:6797234,22325131:25785795,513147,134348 -h1,21193:6797234,22325131:983040,0,0 -k1,21193:9286285,22325131:208398 -k1,21193:10888634,22325131:208398 -k1,21193:14122828,22325131:208397 -(1,21193:14122828,22325131:0,459977,115847 -r1,21221:16943077,22325131:2820249,575824,115847 -k1,21193:14122828,22325131:-2820249 -) -(1,21193:14122828,22325131:2820249,459977,115847 -k1,21193:14122828,22325131:3277 -h1,21193:16939800,22325131:0,411205,112570 -) -k1,21193:17325145,22325131:208398 -(1,21193:17325145,22325131:0,459977,115847 -r1,21221:20497105,22325131:3171960,575824,115847 -k1,21193:17325145,22325131:-3171960 -) -(1,21193:17325145,22325131:3171960,459977,115847 -k1,21193:17325145,22325131:3277 -h1,21193:20493828,22325131:0,411205,112570 -) -k1,21193:20879173,22325131:208398 -k1,21193:22279016,22325131:208398 -(1,21193:22279016,22325131:0,459977,115847 -r1,21221:25802688,22325131:3523672,575824,115847 -k1,21193:22279016,22325131:-3523672 -) -(1,21193:22279016,22325131:3523672,459977,115847 -k1,21193:22279016,22325131:3277 -h1,21193:25799411,22325131:0,411205,112570 -) -k1,21193:26184755,22325131:208397 -k1,21193:29820686,22325131:208398 -k1,21193:32583029,22325131:0 -) -(1,21194:6797234,23166619:25785795,513147,134348 -k1,21193:8683360,23166619:169738 -k1,21193:9512390,23166619:169738 -k1,21193:11245162,23166619:169738 -k1,21193:12682367,23166619:169739 -k1,21193:15826784,23166619:169738 -k1,21193:18192633,23166619:169738 -k1,21193:19021663,23166619:169738 -k1,21193:21953744,23166619:169738 -k1,21193:24442146,23166619:169738 -k1,21193:26005836,23166619:169739 -k1,21193:28937917,23166619:169738 -k1,21193:31923737,23166619:169738 -k1,21193:32583029,23166619:0 -) -(1,21194:6797234,24008107:25785795,505283,134348 -g1,21193:8954679,24008107 -k1,21194:32583030,24008107:22516860 -g1,21194:32583030,24008107 -) -] -g1,21194:32583029,24142455 -) -h1,21194:6630773,24142455:0,0,0 -(1,21197:6630773,25327471:25952256,513147,126483 -h1,21196:6630773,25327471:983040,0,0 -k1,21196:8324485,25327471:240779 -k1,21196:9096762,25327471:240780 -k1,21196:10623357,25327471:240779 -k1,21196:13494096,25327471:240779 -k1,21196:14386303,25327471:240779 -k1,21196:17837036,25327471:240780 -k1,21196:19096900,25327471:240779 -k1,21196:21018022,25327471:240779 -k1,21196:21918093,25327471:240779 -k1,21196:25000514,25327471:240780 -k1,21196:26097849,25327471:240779 -k1,21196:26954666,25327471:240779 -k1,21196:28580221,25327471:240779 -k1,21196:29840086,25327471:240780 -k1,21196:31923737,25327471:240779 -k1,21196:32583029,25327471:0 -) -(1,21197:6630773,26168959:25952256,513147,134348 -k1,21196:10291852,26168959:183739 -k1,21196:11743057,26168959:183739 -k1,21196:12282656,26168959:183739 -k1,21196:13749590,26168959:183739 -k1,21196:17546984,26168959:183739 -k1,21196:20402627,26168959:183740 -k1,21196:21395736,26168959:183739 -k1,21196:22598560,26168959:183739 -k1,21196:23577906,26168959:183739 -k1,21196:27796041,26168959:183739 -k1,21196:28639072,26168959:183739 -k1,21196:32583029,26168959:0 -) -(1,21197:6630773,27010447:25952256,513147,134348 -k1,21196:8372337,27010447:223095 -k1,21196:12365719,27010447:223096 -k1,21196:13580374,27010447:223095 -k1,21196:17108450,27010447:223095 -k1,21196:18844772,27010447:223096 -k1,21196:19754029,27010447:223095 -k1,21196:21821307,27010447:223095 -k1,21196:22660441,27010447:223096 -k1,21196:24664805,27010447:223095 -k1,21196:26268744,27010447:223095 -k1,21196:27023337,27010447:223096 -k1,21196:30024503,27010447:223095 -k1,21196:32583029,27010447:0 -) -(1,21197:6630773,27851935:25952256,513147,134348 -g1,21196:7922487,27851935 -g1,21196:8781008,27851935 -g1,21196:11392617,27851935 -g1,21196:12783291,27851935 -k1,21197:32583029,27851935:15975713 -g1,21197:32583029,27851935 -) -(1,21199:6630773,28693423:25952256,505283,126483 -h1,21198:6630773,28693423:983040,0,0 -k1,21198:8721806,28693423:154444 -k1,21198:9968736,28693423:154445 -(1,21198:9968736,28693423:0,452978,115847 -r1,21221:12788985,28693423:2820249,568825,115847 -k1,21198:9968736,28693423:-2820249 -) -(1,21198:9968736,28693423:2820249,452978,115847 -k1,21198:9968736,28693423:3277 -h1,21198:12785708,28693423:0,411205,112570 -) -k1,21198:12943429,28693423:154444 -k1,21198:13749302,28693423:154445 -k1,21198:17113699,28693423:154444 -k1,21198:20109784,28693423:154444 -k1,21198:20947114,28693423:154445 -k1,21198:24871844,28693423:154444 -k1,21198:27820089,28693423:154445 -k1,21198:28590571,28693423:154444 -(1,21198:28590571,28693423:0,452978,115847 -r1,21221:30003973,28693423:1413402,568825,115847 -k1,21198:28590571,28693423:-1413402 -) -(1,21198:28590571,28693423:1413402,452978,115847 -g1,21198:29648984,28693423 -h1,21198:30000696,28693423:0,411205,112570 -) -k1,21198:30158418,28693423:154445 -k1,21198:31074390,28693423:154444 -k1,21198:32583029,28693423:0 -) -(1,21199:6630773,29534911:25952256,505283,134348 -k1,21198:8721964,29534911:237177 -k1,21198:9705595,29534911:237176 -k1,21198:11811203,29534911:237177 -k1,21198:13332886,29534911:237177 -k1,21198:14589147,29534911:237176 -k1,21198:17898652,29534911:237177 -k1,21198:18787257,29534911:237177 -(1,21198:18787257,29534911:0,452978,115847 -r1,21221:21607506,29534911:2820249,568825,115847 -k1,21198:18787257,29534911:-2820249 -) -(1,21198:18787257,29534911:2820249,452978,115847 -k1,21198:18787257,29534911:3277 -h1,21198:21604229,29534911:0,411205,112570 -) -k1,21198:21844682,29534911:237176 -k1,21198:23942426,29534911:237177 -k1,21198:24831030,29534911:237176 -k1,21198:25815973,29534911:237177 -k1,21198:28339701,29534911:237177 -k1,21198:29263039,29534911:237176 -k1,21198:30270919,29534911:237177 -k1,21199:32583029,29534911:0 -) -(1,21199:6630773,30376399:25952256,505283,126483 -k1,21198:8390551,30376399:245241 -k1,21198:9251830,30376399:245241 -k1,21198:10700312,30376399:245241 -k1,21198:13606970,30376399:245241 -k1,21198:14720563,30376399:245241 -k1,21198:16496070,30376399:245241 -k1,21198:17392739,30376399:245241 -k1,21198:18730466,30376399:245242 -k1,21198:19331567,30376399:245241 -k1,21198:21181785,30376399:245241 -(1,21198:21181785,30376399:0,414482,115847 -r1,21221:21540051,30376399:358266,530329,115847 -k1,21198:21181785,30376399:-358266 -) -(1,21198:21181785,30376399:358266,414482,115847 -k1,21198:21181785,30376399:3277 -h1,21198:21536774,30376399:0,411205,112570 -) -k1,21198:21958962,30376399:245241 -k1,21198:22855631,30376399:245241 -k1,21198:24939812,30376399:245241 -k1,21198:25540913,30376399:245241 -k1,21198:27573976,30376399:245241 -k1,21198:30454420,30376399:245241 -k1,21198:32583029,30376399:0 -) -(1,21199:6630773,31217887:25952256,513147,126483 -k1,21198:11003772,31217887:179350 -k1,21198:11649083,31217887:179350 -k1,21198:12847518,31217887:179350 -k1,21198:16797155,31217887:179351 -k1,21198:19314174,31217887:179350 -k1,21198:22508835,31217887:179350 -k1,21198:24384912,31217887:179350 -k1,21198:25696724,31217887:179350 -k1,21198:26623840,31217887:179350 -k1,21198:29641555,31217887:179351 -k1,21198:30768556,31217887:179350 -k1,21198:31563944,31217887:179350 -k1,21198:32583029,31217887:0 -) -(1,21199:6630773,32059375:25952256,505283,126483 -g1,21198:10887336,32059375 -g1,21198:13038227,32059375 -g1,21198:14679903,32059375 -g1,21198:15495170,32059375 -(1,21198:15495170,32059375:0,452978,115847 -r1,21221:16908571,32059375:1413401,568825,115847 -k1,21198:15495170,32059375:-1413401 -) -(1,21198:15495170,32059375:1413401,452978,115847 -k1,21198:15495170,32059375:3277 -h1,21198:16905294,32059375:0,411205,112570 -) -g1,21198:17281470,32059375 -g1,21198:19551637,32059375 -g1,21198:21760855,32059375 -g1,21198:22315944,32059375 -g1,21198:23614867,32059375 -g1,21198:24465524,32059375 -(1,21198:24465524,32059375:0,452978,115847 -r1,21221:26230637,32059375:1765113,568825,115847 -k1,21198:24465524,32059375:-1765113 -) -(1,21198:24465524,32059375:1765113,452978,115847 -k1,21198:24465524,32059375:3277 -h1,21198:26227360,32059375:0,411205,112570 -) -k1,21199:32583029,32059375:6178722 -g1,21199:32583029,32059375 -) -v1,21201:6630773,33069080:0,393216,0 -(1,21209:6630773,36017431:25952256,3341567,196608 -g1,21209:6630773,36017431 -g1,21209:6630773,36017431 -g1,21209:6434165,36017431 -(1,21209:6434165,36017431:0,3341567,196608 -r1,21221:32779637,36017431:26345472,3538175,196608 -k1,21209:6434165,36017431:-26345472 -) -(1,21209:6434165,36017431:26345472,3341567,196608 -[1,21209:6630773,36017431:25952256,3144959,0 -(1,21203:6630773,33276698:25952256,404226,107478 -(1,21202:6630773,33276698:0,0,0 -g1,21202:6630773,33276698 -g1,21202:6630773,33276698 -g1,21202:6303093,33276698 -(1,21202:6303093,33276698:0,0,0 -) -g1,21202:6630773,33276698 -) -k1,21203:6630773,33276698:0 -g1,21203:10740667,33276698 -g1,21203:14218270,33276698 -g1,21203:16431290,33276698 -h1,21203:16747436,33276698:0,0,0 -k1,21203:32583029,33276698:15835593 -g1,21203:32583029,33276698 -) -(1,21204:6630773,33942876:25952256,404226,107478 -h1,21204:6630773,33942876:0,0,0 -g1,21204:6946919,33942876 -g1,21204:7263065,33942876 -g1,21204:11372959,33942876 -h1,21204:11689105,33942876:0,0,0 -k1,21204:32583029,33942876:20893924 -g1,21204:32583029,33942876 -) -(1,21205:6630773,34609054:25952256,404226,101187 -h1,21205:6630773,34609054:0,0,0 -g1,21205:6946919,34609054 -g1,21205:7263065,34609054 -g1,21205:10740668,34609054 -g1,21205:11372960,34609054 -g1,21205:17063583,34609054 -k1,21205:17063583,34609054:0 -h1,21205:23070352,34609054:0,0,0 -k1,21205:32583029,34609054:9512677 -g1,21205:32583029,34609054 -) -(1,21206:6630773,35275232:25952256,404226,101187 -h1,21206:6630773,35275232:0,0,0 -g1,21206:6946919,35275232 -g1,21206:7263065,35275232 -g1,21206:7579211,35275232 -g1,21206:7895357,35275232 -g1,21206:8211503,35275232 -g1,21206:8527649,35275232 -g1,21206:8843795,35275232 -g1,21206:11689106,35275232 -g1,21206:12321398,35275232 -g1,21206:16431292,35275232 -k1,21206:16431292,35275232:0 -h1,21206:24334934,35275232:0,0,0 -k1,21206:32583029,35275232:8248095 -g1,21206:32583029,35275232 -) -(1,21207:6630773,35941410:25952256,404226,76021 -h1,21207:6630773,35941410:0,0,0 -g1,21207:6946919,35941410 -g1,21207:7263065,35941410 -g1,21207:7579211,35941410 -g1,21207:7895357,35941410 -g1,21207:8211503,35941410 -g1,21207:8527649,35941410 -g1,21207:8843795,35941410 -h1,21207:9159941,35941410:0,0,0 -k1,21207:32583029,35941410:23423088 -g1,21207:32583029,35941410 -) -] -) -g1,21209:32583029,36017431 -g1,21209:6630773,36017431 -g1,21209:6630773,36017431 -g1,21209:32583029,36017431 -g1,21209:32583029,36017431 -) -h1,21209:6630773,36214039:0,0,0 -(1,21212:6630773,45706769:25952256,9083666,0 -k1,21212:10523651,45706769:3892878 -h1,21211:10523651,45706769:0,0,0 -(1,21211:10523651,45706769:18166500,9083666,0 -(1,21211:10523651,45706769:18167376,9083688,0 -(1,21211:10523651,45706769:18167376,9083688,0 -(1,21211:10523651,45706769:0,9083688,0 -(1,21211:10523651,45706769:0,14208860,0 -(1,21211:10523651,45706769:28417720,14208860,0 -) -k1,21211:10523651,45706769:-28417720 -) -) -g1,21211:28691027,45706769 -) -) -) -g1,21212:28690151,45706769 -k1,21212:32583029,45706769:3892878 -) -] -(1,21221:32583029,45706769:0,0,0 -g1,21221:32583029,45706769 -) -) -] -(1,21221:6630773,47279633:25952256,0,0 -h1,21221:6630773,47279633:25952256,0,0 +[1,21220:3078558,4812305:0,0,0 +(1,21220:3078558,49800853:0,16384,2228224 +g1,21220:29030814,49800853 +g1,21220:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,21220:36151628,51504789:16384,1179648,0 +) +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] -(1,21221:4262630,4025873:0,0,0 -[1,21221:-473656,4025873:0,0,0 -(1,21221:-473656,-710413:0,0,0 -(1,21221:-473656,-710413:0,0,0 -g1,21221:-473656,-710413 ) -g1,21221:-473656,-710413 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,21220:37855564,49800853:1179648,16384,0 +) +) +k1,21220:3078556,49800853:-34777008 ) ] +g1,21220:6630773,4812305 +g1,21220:6630773,4812305 +g1,21220:8592265,4812305 +g1,21220:11642310,4812305 +g1,21220:15396212,4812305 +k1,21220:31387652,4812305:15991440 +) ) ] -!25446 -}384 +[1,21220:6630773,45706769:25952256,40108032,0 +(1,21220:6630773,45706769:25952256,40108032,0 +(1,21220:6630773,45706769:0,0,0 +g1,21220:6630773,45706769 +) +[1,21220:6630773,45706769:25952256,40108032,0 +(1,21203:6630773,28955186:25952256,23356449,0 +k1,21203:7928465,28955186:1297692 +h1,21202:7928465,28955186:0,0,0 +(1,21202:7928465,28955186:23356872,23356449,0 +(1,21202:7928465,28955186:23356506,23356506,0 +(1,21202:7928465,28955186:23356506,23356506,0 +(1,21202:7928465,28955186:0,23356506,0 +(1,21202:7928465,28955186:0,37890292,0 +(1,21202:7928465,28955186:37890292,37890292,0 +) +k1,21202:7928465,28955186:-37890292 +) +) +g1,21202:31284971,28955186 +) +) +) +g1,21203:31285337,28955186 +k1,21203:32583029,28955186:1297692 +) +(1,21213:6630773,29820266:25952256,513147,134348 +h1,21211:6630773,29820266:983040,0,0 +k1,21211:10296803,29820266:148057 +k1,21211:14111598,29820266:148056 +k1,21211:15360660,29820266:148057 +k1,21211:16124754,29820266:148056 +k1,21211:18261173,29820266:148057 +k1,21211:21073268,29820266:148056 +k1,21211:22802709,29820266:148057 +k1,21211:23898417,29820266:148057 +k1,21211:25065558,29820266:148056 +k1,21211:27806219,29820266:148057 +k1,21211:28613567,29820266:148056 +k1,21211:31447945,29820266:148057 +k1,21213:32583029,29820266:0 +) +(1,21213:6630773,30685346:25952256,513147,134348 +k1,21211:8390465,30685346:189449 +k1,21211:11245920,30685346:189450 +k1,21211:12094661,30685346:189449 +k1,21211:14164994,30685346:189450 +k1,21211:15545888,30685346:189449 +k1,21211:19090125,30685346:189449 +k1,21211:19895613,30685346:189450 +k1,21211:21104147,30685346:189449 +k1,21211:22947069,30685346:189449 +k1,21211:25124881,30685346:189450 +k1,21211:26921928,30685346:189449 +k1,21211:28302823,30685346:189450 +k1,21211:30194242,30685346:189449 +k1,21211:32583029,30685346:0 +) +(1,21213:6630773,31550426:25952256,505283,134348 +g1,21211:9119830,31550426 +g1,21211:10812625,31550426 +g1,21211:11698016,31550426 +g1,21211:14482640,31550426 +g1,21211:16175435,31550426 +g1,21211:17060826,31550426 +g1,21211:21325909,31550426 +g1,21211:22716583,31550426 +g1,21211:24382508,31550426 +g1,21211:26651364,31550426 +k1,21213:32583029,31550426:5931665 +g1,21213:32583029,31550426 +) +(1,21214:6630773,34381586:25952256,32768,229376 +(1,21214:6630773,34381586:0,32768,229376 +(1,21214:6630773,34381586:5505024,32768,229376 +r1,21220:12135797,34381586:5505024,262144,229376 +) +k1,21214:6630773,34381586:-5505024 +) +(1,21214:6630773,34381586:25952256,32768,0 +r1,21220:32583029,34381586:25952256,32768,0 +) +) +(1,21214:6630773,36013438:25952256,606339,161218 +(1,21214:6630773,36013438:2464678,582746,14155 +g1,21214:6630773,36013438 +g1,21214:9095451,36013438 +) +g1,21214:11581363,36013438 +(1,21214:11581363,36013438:0,542918,138361 +r1,21220:14964351,36013438:3382988,681279,138361 +k1,21214:11581363,36013438:-3382988 +) +(1,21214:11581363,36013438:3382988,542918,138361 +k1,21214:11581363,36013438:3277 +h1,21214:14961074,36013438:0,493446,135084 +) +g1,21214:15209718,36013438 +k1,21214:32583029,36013438:12643709 +g1,21214:32583029,36013438 +) +(1,21218:6630773,37271734:25952256,513147,134348 +k1,21217:7469416,37271734:210808 +k1,21217:10289212,37271734:210808 +h1,21217:11831930,37271734:0,0,0 +k1,21217:12042738,37271734:210808 +k1,21217:13444991,37271734:210808 +h1,21217:14987709,37271734:0,0,0 +k1,21217:15198518,37271734:210809 +k1,21217:16277678,37271734:210808 +k1,21217:17923069,37271734:210808 +k1,21217:19826017,37271734:210808 +k1,21217:22161502,37271734:210808 +k1,21217:25364029,37271734:210808 +k1,21217:26234129,37271734:210808 +k1,21217:27464022,37271734:210808 +k1,21217:28767315,37271734:210808 +k1,21217:29645280,37271734:210809 +k1,21217:30270919,37271734:210796 +k1,21218:32583029,37271734:0 +) +(1,21218:6630773,38136814:25952256,513147,134348 +k1,21217:8550006,38136814:248065 +k1,21217:9414108,38136814:248064 +k1,21217:11443442,38136814:248065 +k1,21217:12888193,38136814:248064 +(1,21217:12888193,38136814:0,452978,115847 +r1,21220:15708442,38136814:2820249,568825,115847 +k1,21217:12888193,38136814:-2820249 +) +(1,21217:12888193,38136814:2820249,452978,115847 +k1,21217:12888193,38136814:3277 +h1,21217:15705165,38136814:0,411205,112570 +) +k1,21217:15956507,38136814:248065 +k1,21217:17987151,38136814:248065 +k1,21217:19426660,38136814:248064 +k1,21217:21062778,38136814:248065 +k1,21217:21926881,38136814:248065 +k1,21217:22589739,38136814:248015 +k1,21217:25267879,38136814:248065 +k1,21217:27876550,38136814:248064 +k1,21217:31931601,38136814:248065 +k1,21217:32583029,38136814:0 +) +(1,21218:6630773,39001894:25952256,505283,134348 +k1,21217:8298665,39001894:179569 +k1,21217:10213626,39001894:179568 +k1,21217:14163481,39001894:179569 +k1,21217:14959087,39001894:179568 +k1,21217:16919925,39001894:179569 +k1,21217:20034195,39001894:179568 +k1,21217:23697658,39001894:179569 +k1,21217:27848708,39001894:179568 +k1,21217:30270919,39001894:179569 +k1,21218:32583029,39001894:0 +) +(1,21218:6630773,39866974:25952256,505283,134348 +k1,21217:8500396,39866974:198455 +k1,21217:9803132,39866974:198454 +k1,21217:10749353,39866974:198455 +k1,21217:14588988,39866974:198455 +k1,21217:17317133,39866974:198455 +k1,21217:19024226,39866974:198454 +k1,21217:21306726,39866974:198455 +k1,21217:22036678,39866974:198455 +k1,21217:24186795,39866974:198455 +k1,21217:27109581,39866974:198454 +k1,21217:30270919,39866974:198455 +k1,21218:32583029,39866974:0 +) +(1,21218:6630773,40732054:25952256,513147,134348 +k1,21217:8453023,40732054:151082 +k1,21217:9595666,40732054:151083 +k1,21217:11822273,40732054:151082 +k1,21217:13371238,40732054:151082 +k1,21217:14138359,40732054:151083 +k1,21217:15308526,40732054:151082 +k1,21217:17828735,40732054:151082 +k1,21217:18639110,40732054:151083 +k1,21217:21488309,40732054:151082 +k1,21217:23019579,40732054:151082 +k1,21217:24162222,40732054:151083 +k1,21217:25599120,40732054:151082 +k1,21217:27263428,40732054:151082 +k1,21217:28030549,40732054:151083 +k1,21217:29883601,40732054:151082 +k1,21217:32583029,40732054:0 +) +(1,21218:6630773,41597134:25952256,505283,7863 +g1,21217:7446040,41597134 +g1,21217:8060112,41597134 +k1,21218:32583029,41597134:22853060 +g1,21218:32583029,41597134 +) +(1,21220:6630773,42462214:25952256,513147,134348 +h1,21219:6630773,42462214:983040,0,0 +k1,21219:8766001,42462214:524353 +k1,21219:11623436,42462214:524353 +k1,21219:12605887,42462214:524354 +k1,21219:13661737,42462214:524353 +k1,21219:16816050,42462214:524353 +k1,21219:17991831,42462214:524353 +k1,21219:20445565,42462214:524354 +k1,21219:24547529,42462214:524353 +k1,21219:27969229,42462214:524353 +k1,21219:29887533,42462214:524353 +k1,21220:32583029,42462214:0 +) +(1,21220:6630773,43327294:25952256,513147,134348 +(1,21219:6630773,43327294:0,452978,115847 +r1,21220:10857869,43327294:4227096,568825,115847 +k1,21219:6630773,43327294:-4227096 +) +(1,21219:6630773,43327294:4227096,452978,115847 +k1,21219:6630773,43327294:3277 +h1,21219:10854592,43327294:0,411205,112570 +) +k1,21219:11278457,43327294:246918 +k1,21219:12208259,43327294:246917 +k1,21219:13216705,43327294:246918 +k1,21219:15849134,43327294:246918 +k1,21219:16451911,43327294:246917 +k1,21219:19673508,43327294:246918 +k1,21219:21959906,43327294:246918 +k1,21219:22834659,43327294:246918 +k1,21219:24100661,43327294:246917 +k1,21219:25714660,43327294:246918 +k1,21219:26620870,43327294:246918 +k1,21219:29696320,43327294:246917 +k1,21219:30890889,43327294:246918 +k1,21219:32583029,43327294:0 +) +(1,21220:6630773,44192374:25952256,505283,126483 +k1,21219:8094466,44192374:186396 +k1,21219:11323699,44192374:186396 +k1,21219:13398187,44192374:186396 +k1,21219:15934704,44192374:186396 +k1,21219:17515051,44192374:186396 +(1,21219:17515051,44192374:0,452978,122846 +r1,21220:21390435,44192374:3875384,575824,122846 +k1,21219:17515051,44192374:-3875384 +) +(1,21219:17515051,44192374:3875384,452978,122846 +k1,21219:17515051,44192374:3277 +h1,21219:21387158,44192374:0,411205,112570 +) +k1,21219:21576830,44192374:186395 +k1,21219:22954671,44192374:186396 +(1,21219:22954671,44192374:0,452978,122846 +r1,21220:27181767,44192374:4227096,575824,122846 +k1,21219:22954671,44192374:-4227096 +) +(1,21219:22954671,44192374:4227096,452978,122846 +k1,21219:22954671,44192374:3277 +h1,21219:27178490,44192374:0,411205,112570 +) +k1,21219:27541833,44192374:186396 +k1,21219:28919674,44192374:186396 +k1,21219:30125155,44192374:186396 +k1,21219:31809049,44192374:186396 +k1,21220:32583029,44192374:0 +) +(1,21220:6630773,45057454:25952256,513147,134348 +k1,21219:8173163,45057454:259195 +k1,21219:9091650,45057454:259195 +k1,21219:11239592,45057454:259194 +k1,21219:12517872,45057454:259195 +k1,21219:15162578,45057454:259195 +k1,21219:15953270,45057454:259195 +k1,21219:18670719,45057454:259194 +k1,21219:20121359,45057454:259195 +k1,21219:22752302,45057454:259195 +k1,21219:23662925,45057454:259195 +k1,21219:26507514,45057454:259194 +k1,21219:29741388,45057454:259195 +k1,21219:32583029,45057454:0 +) +] +(1,21220:32583029,45706769:0,0,0 +g1,21220:32583029,45706769 +) +) +] +(1,21220:6630773,47279633:25952256,0,0 +h1,21220:6630773,47279633:25952256,0,0 +) +] +(1,21220:4262630,4025873:0,0,0 +[1,21220:-473656,4025873:0,0,0 +(1,21220:-473656,-710413:0,0,0 +(1,21220:-473656,-710413:0,0,0 +g1,21220:-473656,-710413 +) +g1,21220:-473656,-710413 +) +] +) +] +!12031 +}364 +Input:3480:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3481:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3482:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3483:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3484:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3485:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3486:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3487:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3488:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3489:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3490:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!388 -{385 -[1,21278:4262630,47279633:28320399,43253760,0 -(1,21278:4262630,4025873:0,0,0 -[1,21278:-473656,4025873:0,0,0 -(1,21278:-473656,-710413:0,0,0 -(1,21278:-473656,-644877:0,0,0 -k1,21278:-473656,-644877:-65536 +!858 +{365 +[1,21264:4262630,47279633:28320399,43253760,0 +(1,21264:4262630,4025873:0,0,0 +[1,21264:-473656,4025873:0,0,0 +(1,21264:-473656,-710413:0,0,0 +(1,21264:-473656,-644877:0,0,0 +k1,21264:-473656,-644877:-65536 ) -(1,21278:-473656,4736287:0,0,0 -k1,21278:-473656,4736287:5209943 +(1,21264:-473656,4736287:0,0,0 +k1,21264:-473656,4736287:5209943 ) -g1,21278:-473656,-710413 +g1,21264:-473656,-710413 ) ] ) -[1,21278:6630773,47279633:25952256,43253760,0 -[1,21278:6630773,4812305:25952256,786432,0 -(1,21278:6630773,4812305:25952256,513147,126483 -(1,21278:6630773,4812305:25952256,513147,126483 -g1,21278:3078558,4812305 -[1,21278:3078558,4812305:0,0,0 -(1,21278:3078558,2439708:0,1703936,0 -k1,21278:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,21278:2537886,2439708:1179648,16384,0 +[1,21264:6630773,47279633:25952256,43253760,0 +[1,21264:6630773,4812305:25952256,786432,0 +(1,21264:6630773,4812305:25952256,513147,126483 +(1,21264:6630773,4812305:25952256,513147,126483 +g1,21264:3078558,4812305 +[1,21264:3078558,4812305:0,0,0 +(1,21264:3078558,2439708:0,1703936,0 +k1,21264:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,21264:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,21278:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,21264:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,21278:3078558,4812305:0,0,0 -(1,21278:3078558,2439708:0,1703936,0 -g1,21278:29030814,2439708 -g1,21278:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,21278:36151628,1915420:16384,1179648,0 +[1,21264:3078558,4812305:0,0,0 +(1,21264:3078558,2439708:0,1703936,0 +g1,21264:29030814,2439708 +g1,21264:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,21264:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,21278:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,21264:37855564,2439708:1179648,16384,0 ) ) -k1,21278:3078556,2439708:-34777008 +k1,21264:3078556,2439708:-34777008 ) ] -[1,21278:3078558,4812305:0,0,0 -(1,21278:3078558,49800853:0,16384,2228224 -k1,21278:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,21278:2537886,49800853:1179648,16384,0 +[1,21264:3078558,4812305:0,0,0 +(1,21264:3078558,49800853:0,16384,2228224 +k1,21264:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,21264:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,21278:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,21264:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,21278:3078558,4812305:0,0,0 -(1,21278:3078558,49800853:0,16384,2228224 -g1,21278:29030814,49800853 -g1,21278:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,21278:36151628,51504789:16384,1179648,0 +[1,21264:3078558,4812305:0,0,0 +(1,21264:3078558,49800853:0,16384,2228224 +g1,21264:29030814,49800853 +g1,21264:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,21264:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,21278:37855564,49800853:1179648,16384,0 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,21264:37855564,49800853:1179648,16384,0 ) ) -k1,21278:3078556,49800853:-34777008 -) -] -g1,21278:6630773,4812305 -k1,21278:21350816,4812305:13524666 -g1,21278:21999622,4812305 -g1,21278:25611966,4812305 -g1,21278:28956923,4812305 -g1,21278:29772190,4812305 -) -) -] -[1,21278:6630773,45706769:25952256,40108032,0 -(1,21278:6630773,45706769:25952256,40108032,0 -(1,21278:6630773,45706769:0,0,0 -g1,21278:6630773,45706769 -) -[1,21278:6630773,45706769:25952256,40108032,0 -(1,21219:6630773,6254097:25952256,513147,126483 -h1,21218:6630773,6254097:983040,0,0 -k1,21218:8566755,6254097:325107 -k1,21218:9910947,6254097:325107 -k1,21218:11603135,6254097:325107 -k1,21218:12595398,6254097:325107 -(1,21218:12595398,6254097:0,452978,115847 -r1,21278:16822494,6254097:4227096,568825,115847 -k1,21218:12595398,6254097:-4227096 -) -(1,21218:12595398,6254097:4227096,452978,115847 -k1,21218:12595398,6254097:3277 -h1,21218:16819217,6254097:0,411205,112570 -) -k1,21218:17147601,6254097:325107 -k1,21218:18341060,6254097:325107 -k1,21218:20819025,6254097:325107 -k1,21218:22692748,6254097:325107 -k1,21218:23549352,6254097:325107 -k1,21218:24525887,6254097:325107 -k1,21218:25598760,6254097:325107 -k1,21218:27437093,6254097:325107 -k1,21218:28709851,6254097:325107 -k1,21218:32583029,6254097:0 -) -(1,21219:6630773,7095585:25952256,505283,134348 -g1,21218:9388528,7095585 -g1,21218:9943617,7095585 -g1,21218:12301602,7095585 -k1,21219:32583030,7095585:19114232 -g1,21219:32583030,7095585 -) -v1,21221:6630773,8253679:0,393216,0 -(1,21229:6630773,11202030:25952256,3341567,196608 -g1,21229:6630773,11202030 -g1,21229:6630773,11202030 -g1,21229:6434165,11202030 -(1,21229:6434165,11202030:0,3341567,196608 -r1,21278:32779637,11202030:26345472,3538175,196608 -k1,21229:6434165,11202030:-26345472 -) -(1,21229:6434165,11202030:26345472,3341567,196608 -[1,21229:6630773,11202030:25952256,3144959,0 -(1,21223:6630773,8461297:25952256,404226,107478 -(1,21222:6630773,8461297:0,0,0 -g1,21222:6630773,8461297 -g1,21222:6630773,8461297 -g1,21222:6303093,8461297 -(1,21222:6303093,8461297:0,0,0 -) -g1,21222:6630773,8461297 -) -k1,21223:6630773,8461297:0 -g1,21223:10740667,8461297 -g1,21223:14218270,8461297 -g1,21223:16431290,8461297 -h1,21223:16747436,8461297:0,0,0 -k1,21223:32583029,8461297:15835593 -g1,21223:32583029,8461297 -) -(1,21224:6630773,9127475:25952256,404226,107478 -h1,21224:6630773,9127475:0,0,0 -g1,21224:6946919,9127475 -g1,21224:7263065,9127475 -g1,21224:11372959,9127475 -h1,21224:11689105,9127475:0,0,0 -k1,21224:32583029,9127475:20893924 -g1,21224:32583029,9127475 -) -(1,21225:6630773,9793653:25952256,404226,101187 -h1,21225:6630773,9793653:0,0,0 -g1,21225:6946919,9793653 -g1,21225:7263065,9793653 -g1,21225:10740668,9793653 -g1,21225:11372960,9793653 -g1,21225:18328166,9793653 -g1,21225:19592749,9793653 -g1,21225:22121915,9793653 -g1,21225:22754207,9793653 -k1,21225:22754207,9793653:0 -h1,21225:28128684,9793653:0,0,0 -k1,21225:32583029,9793653:4454345 -g1,21225:32583029,9793653 -) -(1,21226:6630773,10459831:25952256,404226,101187 -h1,21226:6630773,10459831:0,0,0 -g1,21226:6946919,10459831 -g1,21226:7263065,10459831 -g1,21226:7579211,10459831 -g1,21226:7895357,10459831 -g1,21226:8211503,10459831 -g1,21226:8527649,10459831 -g1,21226:8843795,10459831 -g1,21226:11689106,10459831 -g1,21226:12321398,10459831 -g1,21226:17695875,10459831 -g1,21226:19592750,10459831 -g1,21226:22754208,10459831 -g1,21226:23386500,10459831 -k1,21226:23386500,10459831:0 -h1,21226:30657850,10459831:0,0,0 -k1,21226:32583029,10459831:1925179 -g1,21226:32583029,10459831 -) -(1,21227:6630773,11126009:25952256,404226,76021 -h1,21227:6630773,11126009:0,0,0 -g1,21227:6946919,11126009 -g1,21227:7263065,11126009 -g1,21227:7579211,11126009 -g1,21227:7895357,11126009 -g1,21227:8211503,11126009 -g1,21227:8527649,11126009 -g1,21227:8843795,11126009 -h1,21227:9159941,11126009:0,0,0 -k1,21227:32583029,11126009:23423088 -g1,21227:32583029,11126009 -) -] -) -g1,21229:32583029,11202030 -g1,21229:6630773,11202030 -g1,21229:6630773,11202030 -g1,21229:32583029,11202030 -g1,21229:32583029,11202030 -) -h1,21229:6630773,11398638:0,0,0 -(1,21232:6630773,21039756:25952256,9083666,0 -k1,21232:10523651,21039756:3892878 -h1,21231:10523651,21039756:0,0,0 -(1,21231:10523651,21039756:18166500,9083666,0 -(1,21231:10523651,21039756:18167376,9083688,0 -(1,21231:10523651,21039756:18167376,9083688,0 -(1,21231:10523651,21039756:0,9083688,0 -(1,21231:10523651,21039756:0,14208860,0 -(1,21231:10523651,21039756:28417720,14208860,0 -) -k1,21231:10523651,21039756:-28417720 -) -) -g1,21231:28691027,21039756 -) -) -) -g1,21232:28690151,21039756 -k1,21232:32583029,21039756:3892878 -) -(1,21239:6630773,21881244:25952256,513147,126483 -h1,21238:6630773,21881244:983040,0,0 -k1,21238:8826502,21881244:170667 -k1,21238:11832255,21881244:170666 -k1,21238:15876100,21881244:170667 -k1,21238:17151049,21881244:170667 -k1,21238:18069481,21881244:170666 -k1,21238:19753374,21881244:170667 -k1,21238:20575469,21881244:170667 -k1,21238:23682803,21881244:170666 -k1,21238:24624173,21881244:170667 -k1,21238:28234825,21881244:170667 -k1,21238:30415480,21881244:170666 -k1,21238:30942007,21881244:170667 -k1,21239:32583029,21881244:0 -) -(1,21239:6630773,22722732:25952256,513147,134348 -k1,21238:8120032,22722732:221793 -k1,21238:10196493,22722732:221792 -k1,21238:11227656,22722732:221793 -k1,21238:12468533,22722732:221792 -k1,21238:16092955,22722732:221793 -k1,21238:18693704,22722732:221792 -k1,21238:20186895,22722732:221793 -k1,21238:21775768,22722732:221792 -k1,21238:22656853,22722732:221793 -k1,21238:25321827,22722732:221792 -k1,21238:26075117,22722732:221793 -k1,21238:26948337,22722732:221792 -k1,21238:29604137,22722732:221793 -k1,21238:30845014,22722732:221792 -k1,21238:32583029,22722732:0 -) -(1,21239:6630773,23564220:25952256,513147,134348 -g1,21238:7489294,23564220 -g1,21238:8707608,23564220 -g1,21238:10866363,23564220 -g1,21238:13270879,23564220 -g1,21238:14156270,23564220 -g1,21238:15126202,23564220 -g1,21238:18571429,23564220 -g1,21238:20338279,23564220 -g1,21238:22547497,23564220 -g1,21238:23102586,23564220 -k1,21239:32583029,23564220:6611277 -g1,21239:32583029,23564220 -) -v1,21241:6630773,24722313:0,393216,0 -(1,21266:6630773,33650922:25952256,9321825,196608 -g1,21266:6630773,33650922 -g1,21266:6630773,33650922 -g1,21266:6434165,33650922 -(1,21266:6434165,33650922:0,9321825,196608 -r1,21278:32779637,33650922:26345472,9518433,196608 -k1,21266:6434165,33650922:-26345472 -) -(1,21266:6434165,33650922:26345472,9321825,196608 -[1,21266:6630773,33650922:25952256,9125217,0 -(1,21243:6630773,24936223:25952256,410518,101187 -(1,21242:6630773,24936223:0,0,0 -g1,21242:6630773,24936223 -g1,21242:6630773,24936223 -g1,21242:6303093,24936223 -(1,21242:6303093,24936223:0,0,0 -) -g1,21242:6630773,24936223 -) -g1,21243:10740667,24936223 -g1,21243:11689105,24936223 -g1,21243:15482854,24936223 -h1,21243:15799000,24936223:0,0,0 -k1,21243:32583028,24936223:16784028 -g1,21243:32583028,24936223 -) -(1,21244:6630773,25602401:25952256,404226,101187 -h1,21244:6630773,25602401:0,0,0 -g1,21244:6946919,25602401 -g1,21244:7263065,25602401 -k1,21244:7263065,25602401:0 -h1,21244:16431290,25602401:0,0,0 -k1,21244:32583029,25602401:16151739 -g1,21244:32583029,25602401 -) -(1,21245:6630773,26268579:25952256,404226,76021 -h1,21245:6630773,26268579:0,0,0 -h1,21245:6946919,26268579:0,0,0 -k1,21245:32583029,26268579:25636110 -g1,21245:32583029,26268579 -) -(1,21246:6630773,26934757:25952256,0,0 -h1,21246:6630773,26934757:0,0,0 -h1,21246:6630773,26934757:0,0,0 -k1,21246:32583029,26934757:25952256 -g1,21246:32583029,26934757 -) -(1,21247:6630773,27600935:25952256,404226,6290 -h1,21247:6630773,27600935:0,0,0 -g1,21247:7263065,27600935 -g1,21247:8211503,27600935 -g1,21247:10424523,27600935 -g1,21247:11372960,27600935 -h1,21247:14218271,27600935:0,0,0 -k1,21247:32583029,27600935:18364758 -g1,21247:32583029,27600935 -) -(1,21248:6630773,28267113:25952256,0,0 -h1,21248:6630773,28267113:0,0,0 -h1,21248:6630773,28267113:0,0,0 -k1,21248:32583029,28267113:25952256 -g1,21248:32583029,28267113 -) -(1,21249:6630773,28933291:25952256,404226,101187 -h1,21249:6630773,28933291:0,0,0 -k1,21249:6630773,28933291:0 -h1,21249:14218270,28933291:0,0,0 -k1,21249:32583030,28933291:18364760 -g1,21249:32583030,28933291 -) -(1,21253:6630773,29599469:25952256,404226,76021 -(1,21251:6630773,29599469:0,0,0 -g1,21251:6630773,29599469 -g1,21251:6630773,29599469 -g1,21251:6303093,29599469 -(1,21251:6303093,29599469:0,0,0 -) -g1,21251:6630773,29599469 -) -g1,21253:7579210,29599469 -g1,21253:8843793,29599469 -h1,21253:13269833,29599469:0,0,0 -k1,21253:32583029,29599469:19313196 -g1,21253:32583029,29599469 -) -(1,21255:6630773,30921007:25952256,404226,101187 -(1,21254:6630773,30921007:0,0,0 -g1,21254:6630773,30921007 -g1,21254:6630773,30921007 -g1,21254:6303093,30921007 -(1,21254:6303093,30921007:0,0,0 -) -g1,21254:6630773,30921007 -) -k1,21255:6630773,30921007:0 -g1,21255:11372959,30921007 -g1,21255:12005251,30921007 -h1,21255:12637543,30921007:0,0,0 -k1,21255:32583029,30921007:19945486 -g1,21255:32583029,30921007 -) -(1,21259:6630773,31587185:25952256,404226,76021 -(1,21257:6630773,31587185:0,0,0 -g1,21257:6630773,31587185 -g1,21257:6630773,31587185 -g1,21257:6303093,31587185 -(1,21257:6303093,31587185:0,0,0 -) -g1,21257:6630773,31587185 -) -g1,21259:7579210,31587185 -g1,21259:8843793,31587185 -g1,21259:9792230,31587185 -g1,21259:10424522,31587185 -h1,21259:11056813,31587185:0,0,0 -k1,21259:32583029,31587185:21526216 -g1,21259:32583029,31587185 -) -(1,21261:6630773,32908723:25952256,404226,101187 -(1,21260:6630773,32908723:0,0,0 -g1,21260:6630773,32908723 -g1,21260:6630773,32908723 -g1,21260:6303093,32908723 -(1,21260:6303093,32908723:0,0,0 -) -g1,21260:6630773,32908723 -) -k1,21261:6630773,32908723:0 -h1,21261:11372958,32908723:0,0,0 -k1,21261:32583030,32908723:21210072 -g1,21261:32583030,32908723 -) -(1,21265:6630773,33574901:25952256,404226,76021 -(1,21263:6630773,33574901:0,0,0 -g1,21263:6630773,33574901 -g1,21263:6630773,33574901 -g1,21263:6303093,33574901 -(1,21263:6303093,33574901:0,0,0 -) -g1,21263:6630773,33574901 -) -g1,21265:7579210,33574901 -g1,21265:8843793,33574901 -h1,21265:9792230,33574901:0,0,0 -k1,21265:32583030,33574901:22790800 -g1,21265:32583030,33574901 -) -] -) -g1,21266:32583029,33650922 -g1,21266:6630773,33650922 -g1,21266:6630773,33650922 -g1,21266:32583029,33650922 -g1,21266:32583029,33650922 -) -h1,21266:6630773,33847530:0,0,0 -v1,21270:6630773,35672850:0,393216,0 -(1,21271:6630773,37885277:25952256,2605643,0 -g1,21271:6630773,37885277 -g1,21271:6303093,37885277 -r1,21278:6401397,37885277:98304,2605643,0 -g1,21271:6600626,37885277 -g1,21271:6797234,37885277 -[1,21271:6797234,37885277:25785795,2605643,0 -(1,21271:6797234,36067953:25785795,788319,218313 -(1,21270:6797234,36067953:0,788319,218313 -r1,21278:7917113,36067953:1119879,1006632,218313 -k1,21270:6797234,36067953:-1119879 -) -(1,21270:6797234,36067953:1119879,788319,218313 -) -k1,21270:8140956,36067953:223843 -k1,21270:8468636,36067953:327680 -k1,21270:9180042,36067953:223818 -k1,21270:10687080,36067953:223843 -k1,21270:13664745,36067953:223842 -k1,21270:16483157,36067953:223843 -k1,21270:18592471,36067953:223843 -k1,21270:19347811,36067953:223843 -k1,21270:20637924,36067953:223842 -k1,21270:21827112,36067953:223843 -k1,21270:22666993,36067953:223843 -k1,21270:24869368,36067953:223843 -k1,21270:27853586,36067953:223842 -k1,21270:30754575,36067953:223843 -k1,21271:32583029,36067953:0 -) -(1,21271:6797234,36909441:25785795,513147,134348 -k1,21270:8885258,36909441:278575 -k1,21270:10355357,36909441:278654 -k1,21270:14144120,36909441:278654 -k1,21270:16949187,36909441:278654 -k1,21270:18175493,36909441:278655 -k1,21270:21456350,36909441:278654 -k1,21270:23201700,36909441:278654 -k1,21270:24428005,36909441:278654 -k1,21270:28497262,36909441:278655 -k1,21270:29967361,36909441:278654 -k1,21270:31193666,36909441:278654 -k1,21270:32583029,36909441:0 -) -(1,21271:6797234,37750929:25785795,513147,134348 -g1,21270:11249094,37750929 -g1,21270:12829167,37750929 -g1,21270:15608548,37750929 -g1,21270:18568153,37750929 -g1,21270:19538085,37750929 -g1,21270:23124215,37750929 -g1,21270:23974872,37750929 -g1,21270:25193186,37750929 -g1,21270:26484900,37750929 -g1,21270:27351285,37750929 -g1,21270:27965357,37750929 -k1,21271:32583029,37750929:673715 -g1,21271:32583029,37750929 -) -] -g1,21271:32583029,37885277 -) -h1,21271:6630773,37885277:0,0,0 -(1,21274:6630773,41184761:25952256,32768,229376 -(1,21274:6630773,41184761:0,32768,229376 -(1,21274:6630773,41184761:5505024,32768,229376 -r1,21278:12135797,41184761:5505024,262144,229376 -) -k1,21274:6630773,41184761:-5505024 -) -(1,21274:6630773,41184761:25952256,32768,0 -r1,21278:32583029,41184761:25952256,32768,0 -) -) -(1,21274:6630773,42789089:25952256,606339,161218 -(1,21274:6630773,42789089:2464678,582746,14155 -g1,21274:6630773,42789089 -g1,21274:9095451,42789089 -) -g1,21274:12689446,42789089 -g1,21274:16294451,42789089 -g1,21274:18233006,42789089 -k1,21274:32583029,42789089:11037571 -g1,21274:32583029,42789089 -) -(1,21278:6630773,44023793:25952256,513147,134348 -k1,21277:8006272,44023793:178812 -k1,21277:11087675,44023793:178813 -k1,21277:11925779,44023793:178812 -k1,21277:14823681,44023793:178813 -k1,21277:17014448,44023793:178812 -k1,21277:18349970,44023793:178812 -k1,21277:19180211,44023793:178813 -k1,21277:21001355,44023793:178812 -k1,21277:22371612,44023793:178812 -k1,21277:23741870,44023793:178813 -k1,21277:25528280,44023793:178812 -k1,21277:30232354,44023793:178813 -k1,21277:31039001,44023793:178812 -k1,21277:32583029,44023793:0 -) -(1,21278:6630773,44865281:25952256,505283,134348 -k1,21277:8124033,44865281:227104 -k1,21277:10049175,44865281:227104 -k1,21277:12848567,44865281:227104 -k1,21277:13431531,44865281:227104 -k1,21277:17150393,44865281:227104 -k1,21277:18660692,44865281:227104 -k1,21277:20338763,44865281:227104 -k1,21277:21023965,44865281:227105 -k1,21277:21782566,44865281:227104 -k1,21277:23344638,44865281:227104 -k1,21277:24223170,44865281:227104 -k1,21277:25938597,44865281:227104 -k1,21277:27559652,44865281:227104 -k1,21277:28142616,44865281:227104 -k1,21277:30494397,44865281:227104 -k1,21277:32583029,44865281:0 -) -(1,21278:6630773,45706769:25952256,513147,134348 -k1,21277:7780900,45706769:202476 -k1,21277:8339236,45706769:202476 -k1,21277:9992679,45706769:202476 -(1,21277:9992679,45706769:0,452978,115847 -r1,21278:12461216,45706769:2468537,568825,115847 -k1,21277:9992679,45706769:-2468537 -) -(1,21277:9992679,45706769:2468537,452978,115847 -k1,21277:9992679,45706769:3277 -h1,21277:12457939,45706769:0,411205,112570 -) -k1,21277:12663692,45706769:202476 -k1,21277:14069409,45706769:202476 -k1,21277:15722852,45706769:202476 -k1,21277:18737478,45706769:202476 -k1,21277:20224460,45706769:202476 -k1,21277:21446021,45706769:202476 -k1,21277:23807253,45706769:202476 -k1,21277:24541226,45706769:202476 -k1,21277:25429864,45706769:202476 -k1,21277:28471360,45706769:202476 -k1,21277:29865281,45706769:202476 -k1,21277:31086842,45706769:202476 -k1,21277:32583029,45706769:0 -) -] -(1,21278:32583029,45706769:0,0,0 -g1,21278:32583029,45706769 -) -) -] -(1,21278:6630773,47279633:25952256,0,0 -h1,21278:6630773,47279633:25952256,0,0 -) -] -(1,21278:4262630,4025873:0,0,0 -[1,21278:-473656,4025873:0,0,0 -(1,21278:-473656,-710413:0,0,0 -(1,21278:-473656,-710413:0,0,0 -g1,21278:-473656,-710413 -) -g1,21278:-473656,-710413 -) -] -) -] -!17673 -}385 +k1,21264:3078556,49800853:-34777008 +) +] +g1,21264:6630773,4812305 +k1,21264:21350816,4812305:13524666 +g1,21264:21999622,4812305 +g1,21264:25611966,4812305 +g1,21264:28956923,4812305 +g1,21264:29772190,4812305 +) +) +] +[1,21264:6630773,45706769:25952256,40108032,0 +(1,21264:6630773,45706769:25952256,40108032,0 +(1,21264:6630773,45706769:0,0,0 +g1,21264:6630773,45706769 +) +[1,21264:6630773,45706769:25952256,40108032,0 +(1,21220:6630773,6254097:25952256,513147,134348 +k1,21219:7445730,6254097:198919 +(1,21219:7445730,6254097:0,452978,115847 +r1,21264:8859131,6254097:1413401,568825,115847 +k1,21219:7445730,6254097:-1413401 +) +(1,21219:7445730,6254097:1413401,452978,115847 +k1,21219:7445730,6254097:3277 +h1,21219:8855854,6254097:0,411205,112570 +) +k1,21219:9231720,6254097:198919 +k1,21219:10058474,6254097:198919 +k1,21219:13062335,6254097:198920 +k1,21219:14208905,6254097:198919 +k1,21219:16179262,6254097:198919 +k1,21219:19295188,6254097:198919 +k1,21219:22375725,6254097:198919 +k1,21219:26057883,6254097:198919 +k1,21219:27368294,6254097:198920 +k1,21219:30568107,6254097:198919 +k1,21219:32051532,6254097:198919 +k1,21219:32583029,6254097:0 +) +(1,21220:6630773,7119177:25952256,513147,126483 +k1,21219:9253905,7119177:241554 +k1,21219:11505448,7119177:241554 +(1,21219:11505448,7119177:0,452978,115847 +r1,21264:13622273,7119177:2116825,568825,115847 +k1,21219:11505448,7119177:-2116825 +) +(1,21219:11505448,7119177:2116825,452978,115847 +k1,21219:11505448,7119177:3277 +h1,21219:13618996,7119177:0,411205,112570 +) +k1,21219:14070920,7119177:241553 +k1,21219:15331559,7119177:241554 +k1,21219:19343399,7119177:241554 +k1,21219:21060168,7119177:241554 +k1,21219:21953149,7119177:241553 +k1,21219:22942469,7119177:241554 +k1,21219:25606889,7119177:241554 +k1,21219:28919460,7119177:241554 +k1,21219:29843898,7119177:241553 +k1,21219:31896867,7119177:241554 +k1,21219:32583029,7119177:0 +) +(1,21220:6630773,7984257:25952256,505283,134348 +g1,21219:8323568,7984257 +g1,21219:9790263,7984257 +g1,21219:10345352,7984257 +g1,21219:13229591,7984257 +g1,21219:14620265,7984257 +g1,21219:15838579,7984257 +g1,21219:18549148,7984257 +g1,21219:20953664,7984257 +g1,21219:21839055,7984257 +g1,21219:22808987,7984257 +k1,21220:32583029,7984257:6528044 +g1,21220:32583029,7984257 +) +(1,21222:6630773,8849337:25952256,505283,134348 +h1,21221:6630773,8849337:983040,0,0 +k1,21221:9623123,8849337:226075 +k1,21221:12373645,8849337:226075 +k1,21221:16370006,8849337:226075 +k1,21221:18331474,8849337:226075 +(1,21221:18331474,8849337:0,452978,122846 +r1,21264:22206858,8849337:3875384,575824,122846 +k1,21221:18331474,8849337:-3875384 +) +(1,21221:18331474,8849337:3875384,452978,122846 +k1,21221:18331474,8849337:3277 +h1,21221:22203581,8849337:0,411205,112570 +) +k1,21221:22606604,8849337:226076 +k1,21221:24117185,8849337:226075 +k1,21221:27317939,8849337:226075 +k1,21221:29740125,8849337:226075 +k1,21221:30957760,8849337:226075 +k1,21221:31835263,8849337:226075 +k1,21221:32583029,8849337:0 +) +(1,21222:6630773,9714417:25952256,513147,134348 +k1,21221:8985933,9714417:191817 +k1,21221:9709247,9714417:191817 +k1,21221:12550685,9714417:191817 +k1,21221:14136452,9714417:191816 +(1,21221:14136452,9714417:0,414482,115847 +r1,21264:18363548,9714417:4227096,530329,115847 +k1,21221:14136452,9714417:-4227096 +) +(1,21221:14136452,9714417:4227096,414482,115847 +g1,21221:16250000,9714417 +g1,21221:16953424,9714417 +h1,21221:18360271,9714417:0,411205,112570 +) +k1,21221:18729035,9714417:191817 +k1,21221:19548687,9714417:191817 +k1,21221:20759589,9714417:191817 +k1,21221:22318487,9714417:191817 +k1,21221:23169596,9714417:191817 +k1,21221:25423830,9714417:191816 +k1,21221:27113145,9714417:191817 +k1,21221:29322816,9714417:191817 +k1,21221:31900144,9714417:191817 +k1,21221:32583029,9714417:0 +) +(1,21222:6630773,10579497:25952256,513147,126483 +k1,21221:7921317,10579497:224273 +k1,21221:10847640,10579497:224274 +k1,21221:11881283,10579497:224273 +k1,21221:13124642,10579497:224274 +k1,21221:15749499,10579497:224273 +k1,21221:18669269,10579497:224274 +k1,21221:20580439,10579497:224273 +k1,21221:21707143,10579497:224273 +k1,21221:25158410,10579497:224274 +k1,21221:26948993,10579497:224273 +k1,21221:27704764,10579497:224274 +k1,21221:28545075,10579497:224273 +k1,21221:29972590,10579497:224274 +k1,21221:31563944,10579497:224273 +k1,21221:32583029,10579497:0 +) +(1,21222:6630773,11444577:25952256,513147,134348 +g1,21221:10133017,11444577 +g1,21221:10991538,11444577 +g1,21221:14545555,11444577 +g1,21221:16479522,11444577 +g1,21221:19653430,11444577 +g1,21221:22048770,11444577 +g1,21221:23641950,11444577 +g1,21221:25851824,11444577 +g1,21221:27818559,11444577 +g1,21221:29585409,11444577 +(1,21221:29585409,11444577:0,452978,115847 +r1,21264:30998810,11444577:1413401,568825,115847 +k1,21221:29585409,11444577:-1413401 +) +(1,21221:29585409,11444577:1413401,452978,115847 +k1,21221:29585409,11444577:3277 +h1,21221:30995533,11444577:0,411205,112570 +) +k1,21222:32583029,11444577:1410549 +g1,21222:32583029,11444577 +) +(1,21224:6630773,12309657:25952256,513147,134348 +h1,21223:6630773,12309657:983040,0,0 +k1,21223:9020434,12309657:209934 +k1,21223:10832067,12309657:209933 +k1,21223:13525816,12309657:209934 +k1,21223:15397742,12309657:209933 +k1,21223:16259104,12309657:209934 +k1,21223:19728143,12309657:209934 +k1,21223:21636114,12309657:209933 +k1,21223:24103763,12309657:209934 +k1,21223:28083982,12309657:209933 +k1,21223:28825413,12309657:209934 +k1,21223:30365727,12309657:209933 +k1,21223:31227089,12309657:209934 +k1,21224:32583029,12309657:0 +) +(1,21224:6630773,13174737:25952256,513147,126483 +k1,21223:8155407,13174737:171971 +k1,21223:9346463,13174737:171971 +k1,21223:12280777,13174737:171971 +k1,21223:14278581,13174737:171971 +k1,21223:14938113,13174737:171944 +k1,21223:16541390,13174737:171971 +(1,21223:16748484,13174737:0,414482,115847 +r1,21264:17106750,13174737:358266,530329,115847 +k1,21223:16748484,13174737:-358266 +) +(1,21223:16748484,13174737:358266,414482,115847 +k1,21223:16748484,13174737:3277 +h1,21223:17103473,13174737:0,411205,112570 +) +k1,21223:17485815,13174737:171971 +k1,21223:19185430,13174737:171971 +k1,21223:21145223,13174737:171971 +k1,21223:21933232,13174737:171971 +k1,21223:24740406,13174737:171971 +k1,21223:27727804,13174737:171971 +k1,21223:30534322,13174737:171971 +(1,21223:30741416,13174737:0,414482,115847 +r1,21264:31099682,13174737:358266,530329,115847 +k1,21223:30741416,13174737:-358266 +) +(1,21223:30741416,13174737:358266,414482,115847 +k1,21223:30741416,13174737:3277 +h1,21223:31096405,13174737:0,411205,112570 +) +k1,21223:31478747,13174737:171971 +k1,21223:32583029,13174737:0 +) +(1,21224:6630773,14039817:25952256,505283,134348 +k1,21223:7632516,14039817:253977 +k1,21223:9172309,14039817:253977 +k1,21223:10939512,14039817:253977 +k1,21223:11879651,14039817:253977 +k1,21223:12489488,14039817:253977 +k1,21223:16095632,14039817:253977 +k1,21223:17541055,14039817:253978 +k1,21223:18326529,14039817:253977 +k1,21223:20878854,14039817:253977 +k1,21223:23420038,14039817:253977 +k1,21223:25372053,14039817:253977 +k1,21223:27945349,14039817:253977 +k1,21223:29593277,14039817:253977 +k1,21223:32583029,14039817:0 +) +(1,21224:6630773,14904897:25952256,513147,134348 +k1,21223:8592615,14904897:170088 +k1,21223:10550524,14904897:170087 +k1,21223:11252109,14904897:170088 +k1,21223:13871933,14904897:170088 +k1,21223:14658059,14904897:170088 +k1,21223:16520286,14904897:170087 +k1,21223:20020914,14904897:170088 +k1,21223:21263171,14904897:170088 +k1,21223:22499530,14904897:170088 +k1,21223:23285655,14904897:170087 +k1,21223:25661685,14904897:170088 +k1,21223:26660803,14904897:170088 +k1,21223:29168560,14904897:170088 +k1,21223:30527470,14904897:170087 +k1,21223:31356850,14904897:170088 +k1,21223:32583029,14904897:0 +) +(1,21224:6630773,15769977:25952256,513147,134348 +k1,21223:8848137,15769977:207375 +k1,21223:9826214,15769977:207374 +k1,21223:13473574,15769977:207375 +k1,21223:14549300,15769977:207374 +k1,21223:16286941,15769977:207375 +k1,21223:17145743,15769977:207374 +k1,21223:18445603,15769977:207375 +k1,21223:21746933,15769977:207375 +k1,21223:24115029,15769977:207374 +k1,21223:25364426,15769977:207375 +k1,21223:25927660,15769977:207374 +k1,21223:27523743,15769977:207375 +k1,21223:28724643,15769977:207374 +k1,21223:29591310,15769977:207375 +k1,21223:32583029,15769977:0 +) +(1,21224:6630773,16635057:25952256,505283,126483 +k1,21223:8269906,16635057:163918 +k1,21223:8789685,16635057:163919 +k1,21223:10340345,16635057:163918 +k1,21223:11117025,16635057:163918 +k1,21223:12300029,16635057:163919 +k1,21223:14622703,16635057:163918 +k1,21223:15978067,16635057:163919 +k1,21223:17638172,16635057:163918 +k1,21223:20865243,16635057:163918 +k1,21223:21790690,16635057:163919 +(1,21223:21790690,16635057:0,452978,115847 +r1,21264:26721210,16635057:4930520,568825,115847 +k1,21223:21790690,16635057:-4930520 +) +(1,21223:21790690,16635057:4930520,452978,115847 +k1,21223:21790690,16635057:3277 +h1,21223:26717933,16635057:0,411205,112570 +) +k1,21223:26885128,16635057:163918 +k1,21223:27661808,16635057:163918 +k1,21223:28844812,16635057:163919 +k1,21223:29423538,16635057:163883 +k1,21223:32583029,16635057:0 +) +(1,21224:6630773,17500137:25952256,426639,126483 +k1,21224:32583029,17500137:23377346 +g1,21224:32583029,17500137 +) +(1,21227:6630773,18365217:25952256,513147,126483 +h1,21225:6630773,18365217:983040,0,0 +k1,21225:8861568,18365217:294206 +k1,21225:10288236,18365217:294206 +k1,21225:11674927,18365217:294206 +k1,21225:12324994,18365217:294207 +k1,21225:14735358,18365217:294206 +k1,21225:15688856,18365217:294206 +k1,21225:18669383,18365217:294206 +k1,21225:21955308,18365217:294206 +k1,21225:22900942,18365217:294206 +k1,21225:24855831,18365217:294207 +k1,21225:26480418,18365217:294206 +k1,21225:27426052,18365217:294206 +k1,21225:28812743,18365217:294206 +k1,21225:32583029,18365217:0 +) +(1,21227:6630773,19230297:25952256,513147,134348 +k1,21225:7868950,19230297:290526 +k1,21225:10921820,19230297:290527 +k1,21225:14081512,19230297:290526 +k1,21225:15031330,19230297:290526 +k1,21225:15677716,19230297:290526 +k1,21225:17419210,19230297:290527 +k1,21226:18663285,19230297:290526 +k1,21226:20259944,19230297:290526 +k1,21226:22479851,19230297:290527 +k1,21226:23126237,19230297:290526 +k1,21226:24806126,19230297:290526 +k1,21226:27146618,19230297:290526 +k1,21226:29172538,19230297:290527 +(1,21226:29172538,19230297:0,452978,115847 +r1,21264:31641075,19230297:2468537,568825,115847 +k1,21226:29172538,19230297:-2468537 +) +(1,21226:29172538,19230297:2468537,452978,115847 +k1,21226:29172538,19230297:3277 +h1,21226:31637798,19230297:0,411205,112570 +) +k1,21226:31931601,19230297:290526 +k1,21226:32583029,19230297:0 +) +(1,21227:6630773,20095377:25952256,513147,134348 +k1,21226:9738872,20095377:171431 +k1,21226:10266163,20095377:171431 +k1,21226:12415471,20095377:171431 +k1,21226:13246195,20095377:171432 +k1,21226:17162353,20095377:171431 +$1,21226:17162353,20095377 +$1,21226:17670257,20095377 +k1,21226:17841688,20095377:171431 +k1,21226:20023764,20095377:171431 +k1,21226:20881357,20095377:171431 +k1,21226:24027467,20095377:171431 +k1,21226:26395010,20095377:171432 +k1,21226:29078436,20095377:171431 +k1,21226:30197518,20095377:171431 +k1,21226:32583029,20095377:0 +) +(1,21227:6630773,20960457:25952256,473825,126483 +g1,21226:8097468,20960457 +k1,21227:32583029,20960457:20541604 +g1,21227:32583029,20960457 +) +v1,21229:6630773,21645312:0,393216,0 +(1,21237:6630773,24725415:25952256,3473319,196608 +g1,21237:6630773,24725415 +g1,21237:6630773,24725415 +g1,21237:6434165,24725415 +(1,21237:6434165,24725415:0,3473319,196608 +r1,21264:32779637,24725415:26345472,3669927,196608 +k1,21237:6434165,24725415:-26345472 +) +(1,21237:6434165,24725415:26345472,3473319,196608 +[1,21237:6630773,24725415:25952256,3276711,0 +(1,21231:6630773,21873143:25952256,424439,112852 +(1,21230:6630773,21873143:0,0,0 +g1,21230:6630773,21873143 +g1,21230:6630773,21873143 +g1,21230:6303093,21873143 +(1,21230:6303093,21873143:0,0,0 +) +g1,21230:6630773,21873143 +) +k1,21231:6630773,21873143:0 +g1,21231:11942036,21873143 +g1,21231:12605944,21873143 +g1,21231:14265714,21873143 +g1,21231:15925484,21873143 +g1,21231:16921346,21873143 +g1,21231:19245024,21873143 +g1,21231:22232609,21873143 +g1,21231:23560425,21873143 +g1,21231:25220195,21873143 +k1,21231:25220195,21873143:12111 +h1,21231:26560122,21873143:0,0,0 +k1,21231:32583029,21873143:6022907 +g1,21231:32583029,21873143 +) +(1,21232:6630773,22557998:25952256,424439,106246 +h1,21232:6630773,22557998:0,0,0 +g1,21232:9286405,22557998 +k1,21232:9286405,22557998:0 +h1,21232:9950313,22557998:0,0,0 +k1,21232:32583029,22557998:22632716 +g1,21232:32583029,22557998 +) +(1,21233:6630773,23242853:25952256,431045,86428 +h1,21233:6630773,23242853:0,0,0 +g1,21233:6962727,23242853 +g1,21233:7294681,23242853 +g1,21233:11610082,23242853 +g1,21233:12273990,23242853 +k1,21233:12273990,23242853:0 +h1,21233:13601806,23242853:0,0,0 +k1,21233:32583030,23242853:18981224 +g1,21233:32583030,23242853 +) +(1,21234:6630773,23927708:25952256,424439,106246 +h1,21234:6630773,23927708:0,0,0 +g1,21234:6962727,23927708 +g1,21234:7294681,23927708 +g1,21234:7626635,23927708 +g1,21234:7958589,23927708 +g1,21234:8290543,23927708 +g1,21234:8622497,23927708 +g1,21234:8954451,23927708 +g1,21234:9286405,23927708 +g1,21234:9618359,23927708 +g1,21234:9950313,23927708 +g1,21234:10282267,23927708 +g1,21234:10614221,23927708 +g1,21234:10946175,23927708 +g1,21234:11610083,23927708 +g1,21234:12273991,23927708 +k1,21234:12273991,23927708:0 +h1,21234:15261577,23927708:0,0,0 +k1,21234:32583029,23927708:17321452 +g1,21234:32583029,23927708 +) +(1,21235:6630773,24612563:25952256,424439,112852 +h1,21235:6630773,24612563:0,0,0 +g1,21235:6962727,24612563 +g1,21235:7294681,24612563 +g1,21235:7626635,24612563 +g1,21235:7958589,24612563 +g1,21235:8290543,24612563 +g1,21235:8622497,24612563 +g1,21235:8954451,24612563 +g1,21235:9286405,24612563 +g1,21235:9618359,24612563 +g1,21235:9950313,24612563 +g1,21235:10282267,24612563 +g1,21235:10614221,24612563 +g1,21235:10946175,24612563 +g1,21235:14929622,24612563 +g1,21235:15593530,24612563 +g1,21235:20904793,24612563 +g1,21235:22564563,24612563 +g1,21235:24224333,24612563 +g1,21235:25552149,24612563 +g1,21235:26216057,24612563 +h1,21235:27543873,24612563:0,0,0 +k1,21235:32583029,24612563:5039156 +g1,21235:32583029,24612563 +) +] +) +g1,21237:32583029,24725415 +g1,21237:6630773,24725415 +g1,21237:6630773,24725415 +g1,21237:32583029,24725415 +g1,21237:32583029,24725415 +) +h1,21237:6630773,24922023:0,0,0 +(1,21241:6630773,25787103:25952256,505283,138281 +h1,21240:6630773,25787103:983040,0,0 +k1,21240:8803578,25787103:236216 +k1,21240:10132280,25787103:236217 +k1,21240:11054658,25787103:236216 +$1,21240:11054658,25787103 +$1,21240:11557319,25787103 +k1,21240:13258920,25787103:236216 +k1,21240:15182689,25787103:236217 +k1,21240:15774765,25787103:236216 +k1,21240:17866305,25787103:236216 +$1,21240:17866305,25787103 +$1,21240:18374209,25787103 +k1,21240:18610426,25787103:236217 +k1,21240:21821321,25787103:236216 +k1,21240:23451488,25787103:236216 +$1,21240:23451488,25787103 +$1,21240:23737880,25787103 +k1,21240:23974096,25787103:236216 +k1,21240:24896475,25787103:236217 +k1,21240:28283007,25787103:236216 +k1,21240:29710668,25787103:236216 +k1,21240:30562923,25787103:236217 +k1,21240:31818224,25787103:236216 +$1,21240:31818224,25787103 +$1,21240:32370037,25787103 +k1,21241:32583029,25787103:0 +) +(1,21241:6630773,26652183:25952256,505283,134348 +k1,21240:8056140,26652183:172974 +k1,21240:9916666,26652183:172974 +k1,21240:10957993,26652183:172975 +k1,21240:12606182,26652183:172974 +k1,21240:13135016,26652183:172974 +k1,21240:16940651,26652183:172974 +k1,21240:17729663,26652183:172974 +k1,21240:18921722,26652183:172974 +k1,21240:20886451,26652183:172975 +k1,21240:22101447,26652183:172974 +k1,21240:23293506,26652183:172974 +k1,21240:24733946,26652183:172974 +k1,21240:25775272,26652183:172974 +k1,21240:27040732,26652183:172975 +k1,21240:27569566,26652183:172974 +k1,21240:30717219,26652183:172974 +k1,21240:32583029,26652183:0 +) +(1,21241:6630773,27517263:25952256,513147,126483 +k1,21240:7882019,27517263:179077 +k1,21240:9008747,27517263:179077 +k1,21240:10206909,27517263:179077 +k1,21240:12799022,27517263:179077 +k1,21240:13333959,27517263:179077 +k1,21240:15464698,27517263:179077 +k1,21240:18330096,27517263:179077 +k1,21240:22122828,27517263:179077 +k1,21240:23255454,27517263:179077 +k1,21240:25363911,27517263:179077 +k1,21240:27239715,27517263:179077 +k1,21240:31189078,27517263:179077 +k1,21240:32583029,27517263:0 +) +(1,21241:6630773,28382343:25952256,513147,115847 +g1,21240:9525498,28382343 +(1,21240:9525498,28382343:0,452978,115847 +r1,21264:13752594,28382343:4227096,568825,115847 +k1,21240:9525498,28382343:-4227096 +) +(1,21240:9525498,28382343:4227096,452978,115847 +k1,21240:9525498,28382343:3277 +h1,21240:13749317,28382343:0,411205,112570 +) +k1,21241:32583028,28382343:18656764 +g1,21241:32583028,28382343 +) +(1,21243:6630773,29247423:25952256,505283,138281 +h1,21242:6630773,29247423:983040,0,0 +k1,21242:8806509,29247423:239147 +k1,21242:10559538,29247423:239147 +k1,21242:12250307,29247423:239147 +k1,21242:16230904,29247423:239147 +k1,21242:17864002,29247423:239147 +k1,21242:18459008,29247423:239146 +k1,21242:22442882,29247423:239147 +$1,21242:22442882,29247423 +$1,21242:24579355,29247423 +k1,21242:24992172,29247423:239147 +k1,21242:26184868,29247423:239147 +k1,21242:28594567,29247423:239147 +k1,21242:30270919,29247423:239147 +k1,21243:32583029,29247423:0 +) +(1,21243:6630773,30112503:25952256,505283,134348 +k1,21242:8573588,30112503:271647 +k1,21242:9496662,30112503:271646 +k1,21242:13208294,30112503:271647 +k1,21242:14241469,30112503:271647 +k1,21242:16651555,30112503:271646 +k1,21242:19730764,30112503:271647 +k1,21242:21641466,30112503:271647 +k1,21242:22564540,30112503:271646 +k1,21242:23855272,30112503:271647 +k1,21242:25640801,30112503:271647 +k1,21242:28930380,30112503:271646 +k1,21242:31714677,30112503:271647 +k1,21242:32583029,30112503:0 +) +(1,21243:6630773,30977583:25952256,505283,134348 +k1,21242:8298719,30977583:230741 +k1,21242:11504139,30977583:230741 +k1,21242:13930992,30977583:230742 +k1,21242:15446239,30977583:230741 +k1,21242:16781262,30977583:230741 +k1,21242:17759770,30977583:230742 +k1,21242:20153854,30977583:230741 +k1,21242:21652061,30977583:230741 +k1,21242:25826759,30977583:230741 +k1,21242:26685336,30977583:230742 +k1,21242:28618047,30977583:230741 +k1,21242:30977397,30977583:230741 +k1,21243:32583029,30977583:0 +) +(1,21243:6630773,31842663:25952256,513147,134348 +k1,21242:8514832,31842663:302020 +k1,21242:11186634,31842663:302020 +k1,21242:12773160,31842663:302020 +k1,21242:14066740,31842663:302020 +k1,21242:16655311,31842663:302020 +k1,21242:18692724,31842663:302020 +k1,21242:20013829,31842663:302020 +k1,21242:22399894,31842663:302020 +k1,21242:23361206,31842663:302020 +k1,21242:27607183,31842663:302020 +k1,21242:28862752,31842663:302020 +k1,21242:30695038,31842663:302020 +k1,21242:31648486,31842663:302020 +k1,21243:32583029,31842663:0 +) +(1,21243:6630773,32707743:25952256,513147,134348 +(1,21242:6630773,32707743:0,414482,115847 +r1,21264:10857869,32707743:4227096,530329,115847 +k1,21242:6630773,32707743:-4227096 +) +(1,21242:6630773,32707743:4227096,414482,115847 +g1,21242:8744321,32707743 +g1,21242:9447745,32707743 +h1,21242:10854592,32707743:0,411205,112570 +) +k1,21242:11050683,32707743:192814 +k1,21242:11859536,32707743:192815 +k1,21242:13071435,32707743:192814 +k1,21242:14363944,32707743:192815 +k1,21242:15208186,32707743:192814 +k1,21242:16420086,32707743:192815 +k1,21242:19620347,32707743:192814 +k1,21242:20537990,32707743:192815 +k1,21242:22015310,32707743:192814 +k1,21242:23227210,32707743:192815 +k1,21242:25789806,32707743:192814 +k1,21242:28309804,32707743:192815 +k1,21242:29161910,32707743:192814 +k1,21242:31092740,32707743:192815 +k1,21243:32583029,32707743:0 +) +(1,21243:6630773,33572823:25952256,513147,126483 +g1,21242:7854985,33572823 +g1,21242:8740376,33572823 +g1,21242:9644772,33572823 +g1,21242:10835561,33572823 +g1,21242:13198133,33572823 +g1,21242:14664828,33572823 +g1,21242:18634343,33572823 +g1,21242:20876329,33572823 +g1,21242:22094643,33572823 +g1,21242:23571169,33572823 +g1,21242:24301895,33572823 +k1,21243:32583029,33572823:5232399 +g1,21243:32583029,33572823 +) +v1,21245:6630773,34257678:0,393216,0 +(1,21255:6630773,38707491:25952256,4843029,196608 +g1,21255:6630773,38707491 +g1,21255:6630773,38707491 +g1,21255:6434165,38707491 +(1,21255:6434165,38707491:0,4843029,196608 +r1,21264:32779637,38707491:26345472,5039637,196608 +k1,21255:6434165,38707491:-26345472 +) +(1,21255:6434165,38707491:26345472,4843029,196608 +[1,21255:6630773,38707491:25952256,4646421,0 +(1,21247:6630773,34485509:25952256,424439,112852 +(1,21246:6630773,34485509:0,0,0 +g1,21246:6630773,34485509 +g1,21246:6630773,34485509 +g1,21246:6303093,34485509 +(1,21246:6303093,34485509:0,0,0 +) +g1,21246:6630773,34485509 +) +k1,21247:6630773,34485509:0 +g1,21247:11942036,34485509 +g1,21247:14265714,34485509 +g1,21247:15261576,34485509 +g1,21247:17253300,34485509 +g1,21247:17917208,34485509 +g1,21247:22564563,34485509 +h1,21247:22896517,34485509:0,0,0 +k1,21247:32583029,34485509:9686512 +g1,21247:32583029,34485509 +) +(1,21248:6630773,35170364:25952256,424439,112852 +h1,21248:6630773,35170364:0,0,0 +g1,21248:6962727,35170364 +g1,21248:7294681,35170364 +g1,21248:7626635,35170364 +g1,21248:11942036,35170364 +h1,21248:12273990,35170364:0,0,0 +k1,21248:32583030,35170364:20309040 +g1,21248:32583030,35170364 +) +(1,21249:6630773,35855219:25952256,424439,112852 +h1,21249:6630773,35855219:0,0,0 +g1,21249:6962727,35855219 +g1,21249:7294681,35855219 +g1,21249:7626635,35855219 +g1,21249:12937898,35855219 +g1,21249:13601806,35855219 +g1,21249:14929622,35855219 +g1,21249:16921346,35855219 +g1,21249:17585254,35855219 +g1,21249:19245024,35855219 +g1,21249:21236748,35855219 +g1,21249:21900656,35855219 +g1,21249:23892380,35855219 +h1,21249:24224334,35855219:0,0,0 +k1,21249:32583029,35855219:8358695 +g1,21249:32583029,35855219 +) +(1,21250:6630773,36540074:25952256,424439,106246 +h1,21250:6630773,36540074:0,0,0 +g1,21250:6962727,36540074 +g1,21250:7294681,36540074 +g1,21250:7626635,36540074 +g1,21250:9950313,36540074 +g1,21250:10614221,36540074 +k1,21250:10614221,36540074:0 +h1,21250:17585253,36540074:0,0,0 +k1,21250:32583029,36540074:14997776 +g1,21250:32583029,36540074 +) +(1,21251:6630773,37224929:25952256,424439,106246 +h1,21251:6630773,37224929:0,0,0 +g1,21251:6962727,37224929 +g1,21251:7294681,37224929 +g1,21251:7626635,37224929 +g1,21251:7958589,37224929 +g1,21251:8290543,37224929 +g1,21251:8622497,37224929 +g1,21251:8954451,37224929 +g1,21251:9286405,37224929 +g1,21251:9950313,37224929 +g1,21251:10614221,37224929 +k1,21251:10614221,37224929:0 +h1,21251:20572840,37224929:0,0,0 +k1,21251:32583029,37224929:12010189 +g1,21251:32583029,37224929 +) +(1,21252:6630773,37909784:25952256,424439,112852 +h1,21252:6630773,37909784:0,0,0 +g1,21252:6962727,37909784 +g1,21252:7294681,37909784 +g1,21252:7626635,37909784 +g1,21252:7958589,37909784 +g1,21252:8290543,37909784 +g1,21252:8622497,37909784 +g1,21252:8954451,37909784 +g1,21252:9286405,37909784 +g1,21252:11278129,37909784 +g1,21252:11942037,37909784 +g1,21252:14265715,37909784 +k1,21252:14265715,37909784:0 +h1,21252:18581116,37909784:0,0,0 +k1,21252:32583029,37909784:14001913 +g1,21252:32583029,37909784 +) +(1,21253:6630773,38594639:25952256,431045,112852 +h1,21253:6630773,38594639:0,0,0 +g1,21253:6962727,38594639 +g1,21253:7294681,38594639 +g1,21253:7626635,38594639 +g1,21253:7958589,38594639 +g1,21253:8290543,38594639 +g1,21253:8622497,38594639 +g1,21253:8954451,38594639 +g1,21253:9286405,38594639 +g1,21253:12273990,38594639 +g1,21253:12937898,38594639 +g1,21253:21236747,38594639 +g1,21253:21900655,38594639 +g1,21253:25552149,38594639 +h1,21253:28539734,38594639:0,0,0 +k1,21253:32583029,38594639:4043295 +g1,21253:32583029,38594639 +) +] +) +g1,21255:32583029,38707491 +g1,21255:6630773,38707491 +g1,21255:6630773,38707491 +g1,21255:32583029,38707491 +g1,21255:32583029,38707491 +) +h1,21255:6630773,38904099:0,0,0 +] +(1,21264:32583029,45706769:0,0,0 +g1,21264:32583029,45706769 +) +) +] +(1,21264:6630773,47279633:25952256,0,0 +h1,21264:6630773,47279633:25952256,0,0 +) +] +(1,21264:4262630,4025873:0,0,0 +[1,21264:-473656,4025873:0,0,0 +(1,21264:-473656,-710413:0,0,0 +(1,21264:-473656,-710413:0,0,0 +g1,21264:-473656,-710413 +) +g1,21264:-473656,-710413 +) +] +) +] +!26613 +}365 +Input:3489:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3490:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3491:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3492:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3493:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -363999,61825 +360545,64883 @@ Input:3494:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConso Input:3495:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3496:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3497:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!670 -{386 -[1,21313:4262630,47279633:28320399,43253760,0 -(1,21313:4262630,4025873:0,0,0 -[1,21313:-473656,4025873:0,0,0 -(1,21313:-473656,-710413:0,0,0 -(1,21313:-473656,-644877:0,0,0 -k1,21313:-473656,-644877:-65536 +Input:3498:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3499:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3500:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3501:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3502:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3503:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3504:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3505:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3506:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3507:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3508:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3509:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3510:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!2080 +{366 +[1,21382:4262630,47279633:28320399,43253760,0 +(1,21382:4262630,4025873:0,0,0 +[1,21382:-473656,4025873:0,0,0 +(1,21382:-473656,-710413:0,0,0 +(1,21382:-473656,-644877:0,0,0 +k1,21382:-473656,-644877:-65536 ) -(1,21313:-473656,4736287:0,0,0 -k1,21313:-473656,4736287:5209943 +(1,21382:-473656,4736287:0,0,0 +k1,21382:-473656,4736287:5209943 ) -g1,21313:-473656,-710413 +g1,21382:-473656,-710413 ) ] ) -[1,21313:6630773,47279633:25952256,43253760,0 -[1,21313:6630773,4812305:25952256,786432,0 -(1,21313:6630773,4812305:25952256,513147,134348 -(1,21313:6630773,4812305:25952256,513147,134348 -g1,21313:3078558,4812305 -[1,21313:3078558,4812305:0,0,0 -(1,21313:3078558,2439708:0,1703936,0 -k1,21313:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,21313:2537886,2439708:1179648,16384,0 +[1,21382:6630773,47279633:25952256,43253760,0 +[1,21382:6630773,4812305:25952256,786432,0 +(1,21382:6630773,4812305:25952256,505283,134348 +(1,21382:6630773,4812305:25952256,505283,134348 +g1,21382:3078558,4812305 +[1,21382:3078558,4812305:0,0,0 +(1,21382:3078558,2439708:0,1703936,0 +k1,21382:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,21382:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,21313:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,21382:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,21313:3078558,4812305:0,0,0 -(1,21313:3078558,2439708:0,1703936,0 -g1,21313:29030814,2439708 -g1,21313:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,21313:36151628,1915420:16384,1179648,0 +[1,21382:3078558,4812305:0,0,0 +(1,21382:3078558,2439708:0,1703936,0 +g1,21382:29030814,2439708 +g1,21382:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,21382:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,21313:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,21382:37855564,2439708:1179648,16384,0 ) ) -k1,21313:3078556,2439708:-34777008 +k1,21382:3078556,2439708:-34777008 ) ] -[1,21313:3078558,4812305:0,0,0 -(1,21313:3078558,49800853:0,16384,2228224 -k1,21313:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,21313:2537886,49800853:1179648,16384,0 +[1,21382:3078558,4812305:0,0,0 +(1,21382:3078558,49800853:0,16384,2228224 +k1,21382:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,21382:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,21313:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,21382:3078558,51504789:16384,1179648,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 -) -] -) -) -) -] -[1,21313:3078558,4812305:0,0,0 -(1,21313:3078558,49800853:0,16384,2228224 -g1,21313:29030814,49800853 -g1,21313:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,21313:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] -) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,21313:37855564,49800853:1179648,16384,0 -) -) -k1,21313:3078556,49800853:-34777008 -) -] -g1,21313:6630773,4812305 -g1,21313:6630773,4812305 -g1,21313:9573994,4812305 -g1,21313:10922069,4812305 -g1,21313:11737336,4812305 -g1,21313:13412436,4812305 -k1,21313:31387652,4812305:17975216 -) -) -] -[1,21313:6630773,45706769:25952256,40108032,0 -(1,21313:6630773,45706769:25952256,40108032,0 -(1,21313:6630773,45706769:0,0,0 -g1,21313:6630773,45706769 -) -[1,21313:6630773,45706769:25952256,40108032,0 -(1,21278:6630773,6254097:25952256,513147,134348 -k1,21277:10072855,6254097:200671 -k1,21277:14008423,6254097:200671 -k1,21277:15365804,6254097:200671 -k1,21277:16670757,6254097:200671 -k1,21277:18268000,6254097:200671 -k1,21277:21695663,6254097:200670 -k1,21277:24960798,6254097:200671 -k1,21277:26352914,6254097:200671 -k1,21277:27750928,6254097:200671 -k1,21277:31391584,6254097:200671 -k1,21277:32583029,6254097:0 -) -(1,21278:6630773,7095585:25952256,513147,134348 -k1,21277:9597386,7095585:284224 -k1,21277:13036514,7095585:284225 -k1,21277:14517425,7095585:284224 -k1,21277:16208052,7095585:284224 -k1,21277:18177863,7095585:284225 -k1,21277:19453647,7095585:284224 -k1,21277:21171799,7095585:284224 -k1,21277:22107452,7095585:284225 -k1,21277:23589019,7095585:284224 -k1,21277:27610762,7095585:284224 -k1,21277:29086431,7095585:284224 -k1,21277:30389741,7095585:284225 -k1,21277:31900144,7095585:284224 -k1,21277:32583029,7095585:0 -) -(1,21278:6630773,7937073:25952256,513147,126483 -k1,21277:10626855,7937073:225796 -k1,21277:12365878,7937073:225797 -k1,21277:13539325,7937073:225796 -k1,21277:15536560,7937073:225797 -k1,21277:16953801,7937073:225796 -k1,21277:18431991,7937073:225797 -k1,21277:19849232,7937073:225796 -k1,21277:21176034,7937073:225797 -k1,21277:23419684,7937073:225796 -k1,21277:26249882,7937073:225797 -k1,21277:29460188,7937073:225796 -k1,21277:30217482,7937073:225797 -k1,21277:31094706,7937073:225796 -k1,21277:32583029,7937073:0 -) -(1,21278:6630773,8778561:25952256,513147,134348 -k1,21277:8318091,8778561:293367 -k1,21277:9382161,8778561:293367 -k1,21277:12166551,8778561:293367 -k1,21277:13737216,8778561:293368 -k1,21277:15222028,8778561:293367 -k1,21277:17777698,8778561:293367 -k1,21277:18702832,8778561:293367 -k1,21277:20238762,8778561:293367 -k1,21277:21293657,8778561:293367 -k1,21277:23322417,8778561:293367 -k1,21277:24634870,8778561:293368 -k1,21277:26581710,8778561:293367 -k1,21277:29399524,8778561:293367 -k1,21277:31189078,8778561:293367 -k1,21277:32583029,8778561:0 -) -(1,21278:6630773,9620049:25952256,513147,134348 -k1,21277:9646938,9620049:253822 -(1,21277:9646938,9620049:0,452978,115847 -r1,21313:11060339,9620049:1413401,568825,115847 -k1,21277:9646938,9620049:-1413401 -) -(1,21277:9646938,9620049:1413401,452978,115847 -k1,21277:9646938,9620049:3277 -h1,21277:11057062,9620049:0,411205,112570 -) -k1,21277:11314161,9620049:253822 -k1,21277:12250868,9620049:253822 -k1,21277:15312252,9620049:253822 -k1,21277:18328417,9620049:253822 -k1,21277:21597550,9620049:253822 -k1,21277:23634607,9620049:253822 -k1,21277:26259522,9620049:253822 -k1,21277:28009531,9620049:253822 -k1,21277:29211004,9620049:253822 -k1,21277:29820686,9620049:253822 -k1,21277:32583029,9620049:0 -) -(1,21278:6630773,10461537:25952256,505283,126483 -g1,21277:8219365,10461537 -g1,21277:9526808,10461537 -g1,21277:11298246,10461537 -(1,21277:11298246,10461537:0,452978,115847 -r1,21313:13415071,10461537:2116825,568825,115847 -k1,21277:11298246,10461537:-2116825 -) -(1,21277:11298246,10461537:2116825,452978,115847 -k1,21277:11298246,10461537:3277 -h1,21277:13411794,10461537:0,411205,112570 -) -g1,21277:13614300,10461537 -g1,21277:15004974,10461537 -(1,21277:15004974,10461537:0,414482,115847 -r1,21313:16770087,10461537:1765113,530329,115847 -k1,21277:15004974,10461537:-1765113 -) -(1,21277:15004974,10461537:1765113,414482,115847 -k1,21277:15004974,10461537:3277 -h1,21277:16766810,10461537:0,411205,112570 -) -g1,21277:16969316,10461537 -g1,21277:18160105,10461537 -g1,21277:20071790,10461537 -g1,21277:20922447,10461537 -g1,21277:22651942,10461537 -g1,21277:23502599,10461537 -g1,21277:24449594,10461537 -k1,21278:32583029,10461537:5965504 -g1,21278:32583029,10461537 -) -v1,21280:6630773,11827313:0,393216,0 -(1,21281:6630773,16601639:25952256,5167542,0 -g1,21281:6630773,16601639 -g1,21281:6303093,16601639 -r1,21313:6401397,16601639:98304,5167542,0 -g1,21281:6600626,16601639 -g1,21281:6797234,16601639 -[1,21281:6797234,16601639:25785795,5167542,0 -(1,21281:6797234,12259851:25785795,825754,196608 -(1,21280:6797234,12259851:0,825754,196608 -r1,21313:7890375,12259851:1093141,1022362,196608 -k1,21280:6797234,12259851:-1093141 -) -(1,21280:6797234,12259851:1093141,825754,196608 -) -k1,21280:8118037,12259851:227662 -k1,21280:9844255,12259851:327680 -k1,21280:11712939,12259851:227662 -k1,21280:12296461,12259851:227662 -k1,21280:16040129,12259851:227661 -k1,21280:18954112,12259851:227662 -k1,21280:20571137,12259851:227662 -k1,21280:22076096,12259851:227662 -k1,21280:22963050,12259851:227662 -k1,21280:24649543,12259851:227662 -k1,21280:27494057,12259851:227661 -k1,21280:29077004,12259851:227662 -k1,21280:30066194,12259851:227662 -k1,21280:31822811,12259851:227662 -k1,21280:32583029,12259851:0 -) -(1,21281:6797234,13101339:25785795,513147,134348 -k1,21280:8322490,13101339:169971 -k1,21280:9253989,13101339:169971 -k1,21280:10952916,13101339:169972 -k1,21280:11335850,13101339:169942 -k1,21280:12321089,13101339:169971 -k1,21280:13557331,13101339:169971 -k1,21280:15263466,13101339:169971 -k1,21280:16084865,13101339:169971 -k1,21280:17990230,13101339:169972 -k1,21280:19179286,13101339:169971 -k1,21280:22251847,13101339:169971 -k1,21280:23037856,13101339:169971 -k1,21280:24226912,13101339:169971 -k1,21280:28431279,13101339:169971 -k1,21280:29260543,13101339:169972 -k1,21280:30449599,13101339:169971 -k1,21280:31896867,13101339:169971 -k1,21280:32583029,13101339:0 -) -(1,21281:6797234,13942827:25785795,513147,134348 -k1,21280:9246911,13942827:242424 -k1,21280:10561503,13942827:242423 -k1,21280:11463219,13942827:242424 -k1,21280:13701213,13942827:242423 -k1,21280:17182426,13942827:242424 -k1,21280:18084141,13942827:242423 -k1,21280:19529806,13942827:242424 -k1,21280:23290857,13942827:242423 -k1,21280:24184709,13942827:242424 -k1,21280:25618577,13942827:242423 -k1,21280:29918990,13942827:242424 -k1,21280:32583029,13942827:0 -) -(1,21281:6797234,14784315:25785795,513147,134348 -k1,21280:7646393,14784315:233121 -k1,21280:8650217,14784315:233121 -k1,21280:11495603,14784315:233121 -k1,21280:13817356,14784315:233121 -k1,21280:16669296,14784315:233121 -k1,21280:18208550,14784315:233121 -k1,21280:19203199,14784315:233121 -k1,21280:22068900,14784315:233120 -k1,21280:23137605,14784315:233121 -k1,21280:24389811,14784315:233121 -k1,21280:27309253,14784315:233121 -k1,21280:28819671,14784315:233121 -k1,21280:29668830,14784315:233121 -k1,21280:31896867,14784315:233121 -k1,21280:32583029,14784315:0 -) -(1,21281:6797234,15625803:25785795,513147,134348 -k1,21280:7403946,15625803:250852 -k1,21280:8905879,15625803:250851 -k1,21280:9772769,15625803:250852 -k1,21280:13519310,15625803:250851 -k1,21280:14961607,15625803:250852 -k1,21280:16666048,15625803:250852 -k1,21280:18652292,15625803:250851 -k1,21280:21620267,15625803:250852 -k1,21280:22487157,15625803:250852 -k1,21280:23757093,15625803:250851 -k1,21280:27130736,15625803:250852 -k1,21280:28040879,15625803:250851 -k1,21280:31563944,15625803:250852 -k1,21280:32583029,15625803:0 -) -(1,21281:6797234,16467291:25785795,513147,134348 -g1,21280:9385250,16467291 -g1,21280:11673111,16467291 -g1,21280:12531632,16467291 -g1,21280:13749946,16467291 -g1,21280:15226472,16467291 -g1,21280:16617146,16467291 -g1,21280:20088588,16467291 -g1,21280:21076215,16467291 -g1,21280:24669554,16467291 -g1,21280:26060228,16467291 -k1,21281:32583029,16467291:2249854 -g1,21281:32583029,16467291 -) -] -g1,21281:32583029,16601639 -) -h1,21281:6630773,16601639:0,0,0 -(1,21283:6630773,19409207:25952256,32768,229376 -(1,21283:6630773,19409207:0,32768,229376 -(1,21283:6630773,19409207:5505024,32768,229376 -r1,21313:12135797,19409207:5505024,262144,229376 -) -k1,21283:6630773,19409207:-5505024 -) -(1,21283:6630773,19409207:25952256,32768,0 -r1,21313:32583029,19409207:25952256,32768,0 -) -) -(1,21283:6630773,21013535:25952256,615776,161218 -(1,21283:6630773,21013535:2464678,582746,14155 -g1,21283:6630773,21013535 -g1,21283:9095451,21013535 -) -g1,21283:12689446,21013535 -g1,21283:14506891,21013535 -g1,21283:15564642,21013535 -k1,21283:32583029,21013535:15046802 -g1,21283:32583029,21013535 -) -(1,21286:6630773,22248239:25952256,513147,134348 -k1,21285:8434498,22248239:241347 -k1,21285:9327273,22248239:241347 -k1,21285:10316387,22248239:241348 -k1,21285:13731643,22248239:241347 -k1,21285:14585752,22248239:241347 -k1,21285:15182959,22248239:241347 -k1,21285:17119067,22248239:241347 -k1,21285:20118825,22248239:241348 -k1,21285:21043057,22248239:241347 -k1,21285:24439963,22248239:241347 -k1,21285:25367472,22248239:241347 -k1,21285:26930680,22248239:241347 -k1,21285:27831320,22248239:241348 -k1,21285:29091752,22248239:241347 -k1,21285:30986572,22248239:241347 -k1,21285:32583029,22248239:0 -) -(1,21286:6630773,23089727:25952256,505283,126483 -k1,21285:8316717,23089727:155678 -k1,21285:9123822,23089727:155677 -k1,21285:10027266,23089727:155678 -k1,21285:13463676,23089727:155678 -k1,21285:14235391,23089727:155677 -k1,21285:16733326,23089727:155678 -k1,21285:19717537,23089727:155677 -k1,21285:22363583,23089727:155678 -k1,21285:24421771,23089727:155678 -k1,21285:25768893,23089727:155677 -k1,21285:28618756,23089727:155678 -k1,21285:32583029,23089727:0 -) -(1,21286:6630773,23931215:25952256,505283,134348 -k1,21285:8379328,23931215:150787 -k1,21285:9721560,23931215:150787 -k1,21285:12753966,23931215:150788 -k1,21285:13733783,23931215:150787 -k1,21285:17040129,23931215:150787 -k1,21285:18394157,23931215:150787 -k1,21285:22263458,23931215:150788 -k1,21285:23282597,23931215:150787 -k1,21285:24963650,23931215:150787 -k1,21285:25765865,23931215:150787 -k1,21285:27558985,23931215:150788 -k1,21285:29317370,23931215:150787 -k1,21285:32583029,23931215:0 -) -(1,21286:6630773,24772703:25952256,505283,134348 -k1,21285:8079472,24772703:257254 -k1,21285:10066221,24772703:257254 -k1,21285:13452819,24772703:257254 -k1,21285:14471601,24772703:257254 -k1,21285:17725816,24772703:257254 -k1,21285:20051386,24772703:257254 -k1,21285:20960067,24772703:257253 -k1,21285:22236406,24772703:257254 -k1,21285:25826821,24772703:257254 -k1,21285:27368581,24772703:257254 -k1,21285:29156101,24772703:257254 -k1,21285:30064783,24772703:257254 -k1,21285:31069803,24772703:257254 -k1,21285:32583029,24772703:0 -) -(1,21286:6630773,25614191:25952256,505283,126483 -g1,21285:9501249,25614191 -k1,21286:32583029,25614191:21152400 -g1,21286:32583029,25614191 -) -(1,21287:6630773,27705451:25952256,555811,147783 -(1,21287:6630773,27705451:2899444,534184,12975 -g1,21287:6630773,27705451 -g1,21287:9530217,27705451 -) -g1,21287:12167976,27705451 -g1,21287:13822433,27705451 -g1,21287:16269875,27705451 -g1,21287:17837103,27705451 -g1,21287:20247780,27705451 -g1,21287:21178457,27705451 -k1,21287:32583029,27705451:8083404 -g1,21287:32583029,27705451 -) -(1,21290:6630773,28940155:25952256,505283,134348 -k1,21289:8635592,28940155:221584 -k1,21289:11429465,28940155:221585 -k1,21289:13258647,28940155:221584 -k1,21289:14874182,28940155:221584 -k1,21289:18097969,28940155:221584 -k1,21289:20609382,28940155:221585 -k1,21289:21822526,28940155:221584 -k1,21289:25305837,28940155:221584 -k1,21289:27262814,28940155:221584 -k1,21289:30231013,28940155:221585 -(1,21289:30231013,28940155:0,414482,115847 -r1,21313:30589279,28940155:358266,530329,115847 -k1,21289:30231013,28940155:-358266 -) -(1,21289:30231013,28940155:358266,414482,115847 -k1,21289:30231013,28940155:3277 -h1,21289:30586002,28940155:0,411205,112570 -) -k1,21289:30810863,28940155:221584 -k1,21289:31683875,28940155:221584 -k1,21290:32583029,28940155:0 -) -(1,21290:6630773,29781643:25952256,513147,134348 -k1,21289:9074544,29781643:193265 -k1,21289:11948233,29781643:193266 -k1,21289:13160583,29781643:193265 -k1,21289:16546763,29781643:193266 -k1,21289:20841271,29781643:193265 -k1,21289:22231224,29781643:193266 -k1,21289:25450286,29781643:193265 -k1,21289:26928058,29781643:193266 -k1,21289:29050703,29781643:193265 -k1,21289:30521266,29781643:193266 -k1,21289:32583029,29781643:0 -) -(1,21290:6630773,30623131:25952256,513147,134348 -k1,21289:8938145,30623131:231191 -k1,21289:10280826,30623131:231190 -k1,21289:11503577,30623131:231191 -k1,21289:15771785,30623131:231190 -k1,21289:16662268,30623131:231191 -k1,21289:19183286,30623131:231190 -k1,21289:20605922,30623131:231191 -k1,21289:21856197,30623131:231190 -k1,21289:24377216,30623131:231191 -k1,21289:25988594,30623131:231190 -k1,21289:28230430,30623131:231191 -k1,21289:29565902,30623131:231190 -k1,21289:30544859,30623131:231191 -k1,21289:32583029,30623131:0 -) -(1,21290:6630773,31464619:25952256,505283,126483 -g1,21289:7446040,31464619 -g1,21289:10660580,31464619 -g1,21289:12051254,31464619 -g1,21289:13740772,31464619 -g1,21289:15925087,31464619 -g1,21289:18089741,31464619 -g1,21289:18940398,31464619 -g1,21289:21810874,31464619 -g1,21289:23617701,31464619 -g1,21289:24429692,31464619 -g1,21289:24984781,31464619 -g1,21289:26637599,31464619 -k1,21290:32583029,31464619:4346352 -g1,21290:32583029,31464619 -) -(1,21292:6630773,32306107:25952256,505283,126483 -h1,21291:6630773,32306107:983040,0,0 -k1,21291:8726308,32306107:158946 -k1,21291:10814633,32306107:158945 -k1,21291:11329439,32306107:158946 -k1,21291:12765681,32306107:158945 -k1,21291:14116072,32306107:158946 -k1,21291:15665692,32306107:158946 -k1,21291:16282734,32306107:158945 -k1,21291:17093108,32306107:158946 -k1,21291:19763393,32306107:158945 -(1,21291:19763393,32306107:0,452978,115847 -r1,21313:21880218,32306107:2116825,568825,115847 -k1,21291:19763393,32306107:-2116825 -) -(1,21291:19763393,32306107:2116825,452978,115847 -k1,21291:19763393,32306107:3277 -h1,21291:21876941,32306107:0,411205,112570 -) -k1,21291:22039164,32306107:158946 -k1,21291:23389555,32306107:158946 -k1,21291:24416852,32306107:158945 -k1,21291:27844734,32306107:158946 -k1,21291:29394353,32306107:158945 -k1,21291:30572384,32306107:158946 -k1,21291:32583029,32306107:0 -) -(1,21292:6630773,33147595:25952256,513147,126483 -g1,21291:9608729,33147595 -g1,21291:10569486,33147595 -g1,21291:11124575,33147595 -g1,21291:12423498,33147595 -g1,21291:13274155,33147595 -g1,21291:16168880,33147595 -(1,21291:16168880,33147595:0,452978,115847 -r1,21313:18285705,33147595:2116825,568825,115847 -k1,21291:16168880,33147595:-2116825 -) -(1,21291:16168880,33147595:2116825,452978,115847 -k1,21291:16168880,33147595:3277 -h1,21291:18282428,33147595:0,411205,112570 -) -k1,21292:32583029,33147595:14123654 -g1,21292:32583029,33147595 -) -v1,21294:6630773,34338061:0,393216,0 -(1,21306:6630773,39976290:25952256,6031445,196608 -g1,21306:6630773,39976290 -g1,21306:6630773,39976290 -g1,21306:6434165,39976290 -(1,21306:6434165,39976290:0,6031445,196608 -r1,21313:32779637,39976290:26345472,6228053,196608 -k1,21306:6434165,39976290:-26345472 -) -(1,21306:6434165,39976290:26345472,6031445,196608 -[1,21306:6630773,39976290:25952256,5834837,0 -(1,21296:6630773,34545679:25952256,404226,107478 -(1,21295:6630773,34545679:0,0,0 -g1,21295:6630773,34545679 -g1,21295:6630773,34545679 -g1,21295:6303093,34545679 -(1,21295:6303093,34545679:0,0,0 -) -g1,21295:6630773,34545679 -) -g1,21296:8843793,34545679 -g1,21296:9792231,34545679 -g1,21296:13585980,34545679 -g1,21296:14218272,34545679 -k1,21296:14218272,34545679:0 -h1,21296:16431292,34545679:0,0,0 -k1,21296:32583029,34545679:16151737 -g1,21296:32583029,34545679 -) -(1,21297:6630773,35211857:25952256,404226,107478 -h1,21297:6630773,35211857:0,0,0 -g1,21297:6946919,35211857 -g1,21297:7263065,35211857 -g1,21297:7579211,35211857 -g1,21297:7895357,35211857 -g1,21297:8211503,35211857 -g1,21297:8527649,35211857 -g1,21297:8843795,35211857 -g1,21297:9159941,35211857 -g1,21297:9476087,35211857 -g1,21297:9792233,35211857 -g1,21297:10108379,35211857 -g1,21297:10424525,35211857 -g1,21297:10740671,35211857 -g1,21297:11056817,35211857 -g1,21297:11372963,35211857 -g1,21297:11689109,35211857 -g1,21297:12005255,35211857 -g1,21297:13902130,35211857 -g1,21297:14534422,35211857 -g1,21297:16431297,35211857 -g1,21297:17063589,35211857 -g1,21297:17695881,35211857 -k1,21297:17695881,35211857:0 -h1,21297:18960464,35211857:0,0,0 -k1,21297:32583029,35211857:13622565 -g1,21297:32583029,35211857 -) -(1,21298:6630773,35878035:25952256,410518,101187 -h1,21298:6630773,35878035:0,0,0 -g1,21298:6946919,35878035 -g1,21298:7263065,35878035 -g1,21298:7579211,35878035 -g1,21298:7895357,35878035 -g1,21298:8211503,35878035 -g1,21298:8527649,35878035 -g1,21298:8843795,35878035 -g1,21298:9159941,35878035 -g1,21298:9476087,35878035 -g1,21298:9792233,35878035 -g1,21298:10108379,35878035 -g1,21298:10424525,35878035 -g1,21298:10740671,35878035 -g1,21298:11056817,35878035 -g1,21298:11372963,35878035 -g1,21298:11689109,35878035 -g1,21298:12005255,35878035 -g1,21298:13902129,35878035 -g1,21298:14534421,35878035 -g1,21298:18960461,35878035 -h1,21298:19276607,35878035:0,0,0 -k1,21298:32583029,35878035:13306422 -g1,21298:32583029,35878035 -) -(1,21299:6630773,36544213:25952256,404226,107478 -h1,21299:6630773,36544213:0,0,0 -g1,21299:6946919,36544213 -g1,21299:7263065,36544213 -g1,21299:7579211,36544213 -g1,21299:7895357,36544213 -g1,21299:8211503,36544213 -g1,21299:8527649,36544213 -g1,21299:8843795,36544213 -g1,21299:9159941,36544213 -g1,21299:9476087,36544213 -g1,21299:9792233,36544213 -k1,21299:9792233,36544213:0 -h1,21299:13585981,36544213:0,0,0 -k1,21299:32583029,36544213:18997048 -g1,21299:32583029,36544213 -) -(1,21300:6630773,37210391:25952256,0,0 -h1,21300:6630773,37210391:0,0,0 -h1,21300:6630773,37210391:0,0,0 -k1,21300:32583029,37210391:25952256 -g1,21300:32583029,37210391 -) -(1,21301:6630773,37876569:25952256,404226,107478 -h1,21301:6630773,37876569:0,0,0 -g1,21301:8843793,37876569 -g1,21301:9792231,37876569 -g1,21301:12005252,37876569 -g1,21301:12637544,37876569 -g1,21301:15166710,37876569 -k1,21301:15166710,37876569:0 -h1,21301:19908896,37876569:0,0,0 -k1,21301:32583029,37876569:12674133 -g1,21301:32583029,37876569 -) -(1,21302:6630773,38542747:25952256,404226,101187 -h1,21302:6630773,38542747:0,0,0 -g1,21302:6946919,38542747 -g1,21302:7263065,38542747 -g1,21302:7579211,38542747 -g1,21302:7895357,38542747 -g1,21302:8211503,38542747 -g1,21302:8527649,38542747 -g1,21302:8843795,38542747 -g1,21302:9159941,38542747 -g1,21302:9476087,38542747 -g1,21302:9792233,38542747 -g1,21302:10108379,38542747 -g1,21302:10424525,38542747 -g1,21302:10740671,38542747 -g1,21302:11056817,38542747 -g1,21302:11372963,38542747 -g1,21302:12005255,38542747 -g1,21302:12637547,38542747 -g1,21302:14850567,38542747 -k1,21302:14850567,38542747:0 -h1,21302:18644315,38542747:0,0,0 -k1,21302:32583029,38542747:13938714 -g1,21302:32583029,38542747 -) -(1,21303:6630773,39208925:25952256,410518,101187 -h1,21303:6630773,39208925:0,0,0 -g1,21303:6946919,39208925 -g1,21303:7263065,39208925 -g1,21303:7579211,39208925 -g1,21303:7895357,39208925 -g1,21303:8211503,39208925 -g1,21303:8527649,39208925 -g1,21303:8843795,39208925 -g1,21303:9159941,39208925 -g1,21303:9476087,39208925 -g1,21303:9792233,39208925 -g1,21303:10108379,39208925 -g1,21303:10424525,39208925 -g1,21303:10740671,39208925 -g1,21303:11056817,39208925 -g1,21303:11372963,39208925 -g1,21303:13269837,39208925 -g1,21303:13902129,39208925 -g1,21303:16431295,39208925 -k1,21303:16431295,39208925:0 -h1,21303:21173481,39208925:0,0,0 -k1,21303:32583029,39208925:11409548 -g1,21303:32583029,39208925 -) -(1,21304:6630773,39875103:25952256,410518,101187 -h1,21304:6630773,39875103:0,0,0 -g1,21304:6946919,39875103 -g1,21304:7263065,39875103 -g1,21304:7579211,39875103 -g1,21304:7895357,39875103 -g1,21304:8211503,39875103 -g1,21304:8527649,39875103 -g1,21304:8843795,39875103 -g1,21304:9159941,39875103 -g1,21304:9476087,39875103 -g1,21304:9792233,39875103 -g1,21304:10108379,39875103 -g1,21304:10424525,39875103 -g1,21304:10740671,39875103 -g1,21304:11056817,39875103 -g1,21304:11372963,39875103 -g1,21304:13269837,39875103 -g1,21304:13902129,39875103 -g1,21304:16431295,39875103 -h1,21304:21173481,39875103:0,0,0 -k1,21304:32583029,39875103:11409548 -g1,21304:32583029,39875103 -) -] -) -g1,21306:32583029,39976290 -g1,21306:6630773,39976290 -g1,21306:6630773,39976290 -g1,21306:32583029,39976290 -g1,21306:32583029,39976290 -) -h1,21306:6630773,40172898:0,0,0 -(1,21310:6630773,41538674:25952256,513147,126483 -h1,21309:6630773,41538674:983040,0,0 -k1,21309:8788078,41538674:220716 -k1,21309:11945462,41538674:220716 -k1,21309:13185262,41538674:220715 -k1,21309:14812381,41538674:220716 -k1,21309:16310394,41538674:220716 -k1,21309:18098731,41538674:220716 -k1,21309:19338532,41538674:220716 -k1,21309:20731686,41538674:220715 -k1,21309:22604565,41538674:220716 -k1,21309:23693633,41538674:220716 -k1,21309:25725764,41538674:220716 -k1,21309:27213945,41538674:220715 -k1,21309:30449972,41538674:220716 -k1,21309:32051532,41538674:220716 -k1,21309:32583029,41538674:0 -) -(1,21310:6630773,42380162:25952256,513147,134348 -k1,21309:8762473,42380162:154479 -k1,21309:10614991,42380162:154480 -k1,21309:11637822,42380162:154479 -k1,21309:13322568,42380162:154480 -k1,21309:14128475,42380162:154479 -k1,21309:16212334,42380162:154479 -k1,21309:18598315,42380162:154480 -k1,21309:20360392,42380162:154479 -k1,21309:23300806,42380162:154479 -k1,21309:24739792,42380162:154480 -k1,21309:26466480,42380162:154479 -(1,21309:26466480,42380162:0,414482,115847 -r1,21313:27879881,42380162:1413401,530329,115847 -k1,21309:26466480,42380162:-1413401 -) -(1,21309:26466480,42380162:1413401,414482,115847 -k1,21309:26466480,42380162:3277 -h1,21309:27876604,42380162:0,411205,112570 -) -k1,21309:28034361,42380162:154480 -k1,21309:31591469,42380162:154479 -k1,21309:32583029,42380162:0 -) -(1,21310:6630773,43221650:25952256,505283,126483 -k1,21309:8342901,43221650:198902 -k1,21309:12562436,43221650:198901 -k1,21309:13389173,43221650:198902 -k1,21309:14607159,43221650:198901 -k1,21309:17467478,43221650:198902 -k1,21309:19695374,43221650:198901 -k1,21309:20762628,43221650:198902 -k1,21309:22772945,43221650:198902 -k1,21309:24668573,43221650:198901 -k1,21309:27109462,43221650:198902 -k1,21309:28380532,43221650:198901 -k1,21309:29598519,43221650:198902 -k1,21309:32583029,43221650:0 -) -(1,21310:6630773,44063138:25952256,513147,126483 -g1,21309:7934284,44063138 -g1,21309:8881279,44063138 -g1,21309:10593734,44063138 -g1,21309:11740614,44063138 -g1,21309:13641813,44063138 -g1,21309:15118339,44063138 -g1,21309:19245141,44063138 -g1,21309:20127255,44063138 -g1,21309:21650311,44063138 -g1,21309:22508832,44063138 -k1,21310:32583029,44063138:5972954 -g1,21310:32583029,44063138 -) -v1,21312:6630773,45428914:0,393216,0 -] -(1,21313:32583029,45706769:0,0,0 -g1,21313:32583029,45706769 -) -) -] -(1,21313:6630773,47279633:25952256,0,0 -h1,21313:6630773,47279633:25952256,0,0 -) -] -(1,21313:4262630,4025873:0,0,0 -[1,21313:-473656,4025873:0,0,0 -(1,21313:-473656,-710413:0,0,0 -(1,21313:-473656,-710413:0,0,0 -g1,21313:-473656,-710413 -) -g1,21313:-473656,-710413 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) +) +) +] +[1,21382:3078558,4812305:0,0,0 +(1,21382:3078558,49800853:0,16384,2228224 +g1,21382:29030814,49800853 +g1,21382:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,21382:36151628,51504789:16384,1179648,0 +) +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 +) +] +) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,21382:37855564,49800853:1179648,16384,0 +) +) +k1,21382:3078556,49800853:-34777008 +) +] +g1,21382:6630773,4812305 +g1,21382:6630773,4812305 +g1,21382:8592265,4812305 +g1,21382:11642310,4812305 +g1,21382:15396212,4812305 +k1,21382:31387652,4812305:15991440 +) +) +] +[1,21382:6630773,45706769:25952256,40108032,0 +(1,21382:6630773,45706769:25952256,40108032,0 +(1,21382:6630773,45706769:0,0,0 +g1,21382:6630773,45706769 +) +[1,21382:6630773,45706769:25952256,40108032,0 +(1,21258:6630773,14682403:25952256,9083666,0 +k1,21258:10523651,14682403:3892878 +h1,21257:10523651,14682403:0,0,0 +(1,21257:10523651,14682403:18166500,9083666,0 +(1,21257:10523651,14682403:18167376,9083688,0 +(1,21257:10523651,14682403:18167376,9083688,0 +(1,21257:10523651,14682403:0,9083688,0 +(1,21257:10523651,14682403:0,14208860,0 +(1,21257:10523651,14682403:28417720,14208860,0 +) +k1,21257:10523651,14682403:-28417720 +) +) +g1,21257:28691027,14682403 +) +) +) +g1,21258:28690151,14682403 +k1,21258:32583029,14682403:3892878 +) +(1,21265:6630773,15547483:25952256,513147,134348 +h1,21264:6630773,15547483:983040,0,0 +k1,21264:8724054,15547483:156692 +k1,21264:9985029,15547483:156693 +k1,21264:11427537,15547483:156692 +k1,21264:12676715,15547483:156693 +k1,21264:13189267,15547483:156692 +k1,21264:16320639,15547483:156693 +k1,21264:18343141,15547483:156692 +k1,21264:20538003,15547483:156692 +k1,21264:21310734,15547483:156693 +k1,21264:21823286,15547483:156692 +k1,21264:24664989,15547483:156693 +k1,21264:26013126,15547483:156692 +k1,21264:27262304,15547483:156693 +k1,21264:30114492,15547483:156692 +(1,21264:30114492,15547483:0,452978,115847 +r1,21382:32583029,15547483:2468537,568825,115847 +k1,21264:30114492,15547483:-2468537 +) +(1,21264:30114492,15547483:2468537,452978,115847 +k1,21264:30114492,15547483:3277 +h1,21264:32579752,15547483:0,411205,112570 +) +k1,21264:32583029,15547483:0 +) +(1,21265:6630773,16412563:25952256,513147,126483 +k1,21264:7529125,16412563:246924 +k1,21264:9518651,16412563:246924 +k1,21264:10223672,16412563:246924 +k1,21264:11086634,16412563:246924 +k1,21264:13030940,16412563:246924 +k1,21264:15196758,16412563:246924 +k1,21264:16214385,16412563:246924 +k1,21264:19901294,16412563:246924 +k1,21264:20679715,16412563:246924 +k1,21264:23639174,16412563:246924 +k1,21264:24572260,16412563:246924 +k1,21264:25687536,16412563:246924 +k1,21264:26749728,16412563:246924 +k1,21264:28394535,16412563:246924 +k1,21264:29589110,16412563:246924 +(1,21264:29589110,16412563:0,452978,115847 +r1,21382:32409359,16412563:2820249,568825,115847 +k1,21264:29589110,16412563:-2820249 +) +(1,21264:29589110,16412563:2820249,452978,115847 +k1,21264:29589110,16412563:3277 +h1,21264:32406082,16412563:0,411205,112570 +) +k1,21264:32583029,16412563:0 +) +(1,21265:6630773,17277643:25952256,505283,134348 +k1,21264:7610973,17277643:352365 +k1,21264:9166579,17277643:352365 +k1,21264:12180362,17277643:352366 +k1,21264:13401079,17277643:352365 +k1,21264:15039260,17277643:352365 +k1,21264:16326168,17277643:352365 +k1,21264:17862769,17277643:352365 +k1,21264:20059317,17277643:352365 +k1,21264:21063111,17277643:352366 +k1,21264:25359433,17277643:352365 +k1,21264:27707369,17277643:352365 +k1,21264:31298523,17277643:352365 +k1,21265:32583029,17277643:0 +) +(1,21265:6630773,18142723:25952256,505283,134348 +(1,21264:6630773,18142723:0,452978,115847 +r1,21382:10857869,18142723:4227096,568825,115847 +k1,21264:6630773,18142723:-4227096 +) +(1,21264:6630773,18142723:4227096,452978,115847 +k1,21264:6630773,18142723:3277 +h1,21264:10854592,18142723:0,411205,112570 +) +k1,21264:11013332,18142723:155463 +k1,21264:13547097,18142723:155463 +k1,21264:16373808,18142723:155464 +k1,21264:19931900,18142723:155463 +k1,21264:23210809,18142723:155463 +k1,21264:24127800,18142723:155463 +k1,21264:26937472,18142723:155464 +k1,21264:30093829,18142723:155463 +k1,21264:30605152,18142723:155463 +k1,21264:32583029,18142723:0 +) +(1,21265:6630773,19007803:25952256,513147,126483 +g1,21264:7489294,19007803 +k1,21265:32583029,19007803:21149778 +g1,21265:32583029,19007803 +) +v1,21267:6630773,19692658:0,393216,0 +(1,21277:6630773,24135865:25952256,4836423,196608 +g1,21277:6630773,24135865 +g1,21277:6630773,24135865 +g1,21277:6434165,24135865 +(1,21277:6434165,24135865:0,4836423,196608 +r1,21382:32779637,24135865:26345472,5033031,196608 +k1,21277:6434165,24135865:-26345472 +) +(1,21277:6434165,24135865:26345472,4836423,196608 +[1,21277:6630773,24135865:25952256,4639815,0 +(1,21269:6630773,19920489:25952256,424439,106246 +(1,21268:6630773,19920489:0,0,0 +g1,21268:6630773,19920489 +g1,21268:6630773,19920489 +g1,21268:6303093,19920489 +(1,21268:6303093,19920489:0,0,0 +) +g1,21268:6630773,19920489 +) +g1,21269:10282266,19920489 +g1,21269:11278128,19920489 +h1,21269:14597667,19920489:0,0,0 +k1,21269:32583029,19920489:17985362 +g1,21269:32583029,19920489 +) +(1,21270:6630773,20605344:25952256,424439,112852 +h1,21270:6630773,20605344:0,0,0 +g1,21270:11942036,20605344 +g1,21270:14265714,20605344 +g1,21270:15593530,20605344 +h1,21270:15925484,20605344:0,0,0 +k1,21270:32583029,20605344:16657545 +g1,21270:32583029,20605344 +) +(1,21271:6630773,21290199:25952256,424439,112852 +h1,21271:6630773,21290199:0,0,0 +g1,21271:6962727,21290199 +g1,21271:7294681,21290199 +g1,21271:7626635,21290199 +g1,21271:11942036,21290199 +h1,21271:12273990,21290199:0,0,0 +k1,21271:32583030,21290199:20309040 +g1,21271:32583030,21290199 +) +(1,21272:6630773,21975054:25952256,424439,106246 +h1,21272:6630773,21975054:0,0,0 +g1,21272:6962727,21975054 +g1,21272:7294681,21975054 +g1,21272:7626635,21975054 +g1,21272:11278129,21975054 +g1,21272:11942037,21975054 +g1,21272:15593531,21975054 +g1,21272:16257439,21975054 +g1,21272:20572840,21975054 +h1,21272:20904794,21975054:0,0,0 +k1,21272:32583029,21975054:11678235 +g1,21272:32583029,21975054 +) +(1,21273:6630773,22659909:25952256,424439,106246 +h1,21273:6630773,22659909:0,0,0 +g1,21273:6962727,22659909 +g1,21273:7294681,22659909 +g1,21273:7626635,22659909 +g1,21273:15593530,22659909 +g1,21273:16257438,22659909 +k1,21273:16257438,22659909:0 +h1,21273:23228470,22659909:0,0,0 +k1,21273:32583029,22659909:9354559 +g1,21273:32583029,22659909 +) +(1,21274:6630773,23344764:25952256,424439,86428 +h1,21274:6630773,23344764:0,0,0 +g1,21274:6962727,23344764 +g1,21274:7294681,23344764 +g1,21274:7626635,23344764 +g1,21274:7958589,23344764 +g1,21274:8290543,23344764 +g1,21274:8622497,23344764 +g1,21274:8954451,23344764 +g1,21274:9286405,23344764 +g1,21274:9618359,23344764 +g1,21274:9950313,23344764 +g1,21274:10282267,23344764 +g1,21274:10614221,23344764 +g1,21274:10946175,23344764 +g1,21274:11278129,23344764 +g1,21274:11610083,23344764 +g1,21274:11942037,23344764 +g1,21274:12273991,23344764 +g1,21274:12605945,23344764 +g1,21274:12937899,23344764 +g1,21274:13269853,23344764 +g1,21274:13601807,23344764 +g1,21274:13933761,23344764 +g1,21274:16257439,23344764 +g1,21274:16921347,23344764 +k1,21274:16921347,23344764:0 +h1,21274:19908933,23344764:0,0,0 +k1,21274:32583029,23344764:12674096 +g1,21274:32583029,23344764 +) +(1,21275:6630773,24029619:25952256,424439,106246 +h1,21275:6630773,24029619:0,0,0 +g1,21275:6962727,24029619 +g1,21275:7294681,24029619 +g1,21275:7626635,24029619 +g1,21275:7958589,24029619 +g1,21275:8290543,24029619 +g1,21275:8622497,24029619 +g1,21275:8954451,24029619 +g1,21275:9286405,24029619 +g1,21275:9618359,24029619 +g1,21275:9950313,24029619 +g1,21275:10282267,24029619 +g1,21275:10614221,24029619 +g1,21275:10946175,24029619 +g1,21275:11278129,24029619 +g1,21275:11610083,24029619 +g1,21275:11942037,24029619 +g1,21275:12273991,24029619 +g1,21275:12605945,24029619 +g1,21275:12937899,24029619 +g1,21275:13269853,24029619 +g1,21275:13601807,24029619 +g1,21275:13933761,24029619 +g1,21275:16257439,24029619 +g1,21275:16921347,24029619 +g1,21275:23892380,24029619 +g1,21275:27211920,24029619 +h1,21275:30531460,24029619:0,0,0 +k1,21275:32583029,24029619:2051569 +g1,21275:32583029,24029619 +) +] +) +g1,21277:32583029,24135865 +g1,21277:6630773,24135865 +g1,21277:6630773,24135865 +g1,21277:32583029,24135865 +g1,21277:32583029,24135865 +) +h1,21277:6630773,24332473:0,0,0 +(1,21280:6630773,33481675:25952256,9083666,0 +k1,21280:10523651,33481675:3892878 +h1,21279:10523651,33481675:0,0,0 +(1,21279:10523651,33481675:18166500,9083666,0 +(1,21279:10523651,33481675:18167376,9083688,0 +(1,21279:10523651,33481675:18167376,9083688,0 +(1,21279:10523651,33481675:0,9083688,0 +(1,21279:10523651,33481675:0,14208860,0 +(1,21279:10523651,33481675:28417720,14208860,0 +) +k1,21279:10523651,33481675:-28417720 +) +) +g1,21279:28691027,33481675 +) +) +) +g1,21280:28690151,33481675 +k1,21280:32583029,33481675:3892878 +) +(1,21287:6630773,34346755:25952256,513147,126483 +h1,21286:6630773,34346755:983040,0,0 +k1,21286:8269107,34346755:167706 +k1,21286:11199187,34346755:167737 +k1,21286:14351434,34346755:167737 +k1,21286:15535633,34346755:167736 +k1,21286:18364787,34346755:167737 +k1,21286:20815143,34346755:167737 +k1,21286:22939130,34346755:167737 +k1,21286:23854633,34346755:167737 +k1,21286:24673798,34346755:167737 +k1,21286:25934020,34346755:167737 +(1,21286:25934020,34346755:0,452978,115847 +r1,21382:28402557,34346755:2468537,568825,115847 +k1,21286:25934020,34346755:-2468537 +) +(1,21286:25934020,34346755:2468537,452978,115847 +k1,21286:25934020,34346755:3277 +h1,21286:28399280,34346755:0,411205,112570 +) +k1,21286:28570294,34346755:167737 +k1,21286:31635378,34346755:167737 +k1,21286:32583029,34346755:0 +) +(1,21287:6630773,35211835:25952256,513147,134348 +k1,21286:8269921,35211835:187526 +k1,21286:11650362,35211835:187527 +k1,21286:13525440,35211835:187526 +k1,21286:17067099,35211835:187526 +k1,21286:18539132,35211835:187527 +k1,21286:20593779,35211835:187526 +k1,21286:21529071,35211835:187526 +k1,21286:24014946,35211835:187527 +k1,21286:24668433,35211835:187526 +k1,21286:25875045,35211835:187527 +k1,21286:27246807,35211835:187526 +k1,21286:29278516,35211835:187526 +k1,21286:30996309,35211835:187527 +k1,21286:31835263,35211835:187526 +k1,21286:32583029,35211835:0 +) +(1,21287:6630773,36076915:25952256,513147,134348 +g1,21286:10787721,36076915 +g1,21286:16623702,36076915 +g1,21286:19150114,36076915 +g1,21286:20008635,36076915 +g1,21286:21142407,36076915 +g1,21286:22027798,36076915 +k1,21287:32583029,36076915:7293504 +g1,21287:32583029,36076915 +) +v1,21289:6630773,36941995:0,393216,0 +(1,21382:6630773,45151860:25952256,8603081,0 +g1,21382:6630773,45151860 +g1,21382:6237557,45151860 +r1,21382:6368629,45151860:131072,8603081,0 +g1,21382:6567858,45151860 +g1,21382:6764466,45151860 +[1,21382:6764466,45151860:25818563,8603081,0 +(1,21290:6764466,37250293:25818563,701514,196608 +(1,21289:6764466,37250293:0,701514,196608 +r1,21382:8010564,37250293:1246098,898122,196608 +k1,21289:6764466,37250293:-1246098 +) +(1,21289:6764466,37250293:1246098,701514,196608 +) +k1,21289:8228233,37250293:217669 +k1,21289:8555913,37250293:327680 +k1,21289:12540421,37250293:223397 +k1,21289:15548444,37250293:223398 +(1,21289:15548444,37250293:0,452978,115847 +r1,21382:18016981,37250293:2468537,568825,115847 +k1,21289:15548444,37250293:-2468537 +) +(1,21289:15548444,37250293:2468537,452978,115847 +k1,21289:15548444,37250293:3277 +h1,21289:18013704,37250293:0,411205,112570 +) +k1,21289:18240378,37250293:223397 +k1,21289:19684055,37250293:223397 +(1,21289:19684055,37250293:0,452978,115847 +r1,21382:23911151,37250293:4227096,568825,115847 +k1,21289:19684055,37250293:-4227096 +) +(1,21289:19684055,37250293:4227096,452978,115847 +k1,21289:19684055,37250293:3277 +h1,21289:23907874,37250293:0,411205,112570 +) +k1,21289:24302490,37250293:217669 +k1,21289:27310027,37250293:217669 +(1,21289:27310027,37250293:0,452978,115847 +r1,21382:29778564,37250293:2468537,568825,115847 +k1,21289:27310027,37250293:-2468537 +) +(1,21289:27310027,37250293:2468537,452978,115847 +k1,21289:27310027,37250293:3277 +h1,21289:29775287,37250293:0,411205,112570 +) +k1,21289:29996233,37250293:217669 +k1,21289:31896867,37250293:217669 +k1,21289:32583029,37250293:0 +) +(1,21290:6764466,38115373:25818563,513147,134348 +k1,21289:7746897,38115373:211728 +k1,21289:11030953,38115373:211728 +k1,21289:11598541,38115373:211728 +k1,21289:14784948,38115373:211728 +k1,21289:17036156,38115373:211728 +k1,21289:18628728,38115373:211728 +k1,21289:19371954,38115373:211729 +k1,21289:20937656,38115373:211728 +k1,21289:23126605,38115373:211728 +k1,21289:24024495,38115373:211728 +k1,21289:25255308,38115373:211728 +k1,21289:28441715,38115373:211728 +k1,21289:30519253,38115373:211728 +k1,21289:31835263,38115373:211728 +k1,21289:32583029,38115373:0 +) +(1,21290:6764466,38980453:25818563,505283,134348 +k1,21289:9363111,38980453:248524 +k1,21289:15422058,38980453:248525 +k1,21289:17453817,38980453:248524 +k1,21289:19437734,38980453:248524 +(1,21289:19437734,38980453:0,452978,115847 +r1,21382:23664830,38980453:4227096,568825,115847 +k1,21289:19437734,38980453:-4227096 +) +(1,21289:19437734,38980453:4227096,452978,115847 +k1,21289:19437734,38980453:3277 +h1,21289:23661553,38980453:0,411205,112570 +) +k1,21289:23913355,38980453:248525 +k1,21289:25365120,38980453:248524 +k1,21289:26145141,38980453:248524 +k1,21289:27459937,38980453:248525 +k1,21289:30512091,38980453:248524 +k1,21289:32583029,38980453:0 +) +(1,21290:6764466,39845533:25818563,513147,126483 +k1,21289:7871672,39845533:159555 +k1,21289:11904405,39845533:159555 +k1,21289:12676722,39845533:159555 +k1,21289:15911881,39845533:159554 +k1,21289:17496844,39845533:159555 +k1,21289:18315691,39845533:159555 +k1,21289:19494331,39845533:159555 +k1,21289:21334229,39845533:159555 +k1,21289:22153076,39845533:159555 +k1,21289:25154271,39845533:159554 +k1,21289:26581292,39845533:159555 +k1,21289:27759932,39845533:159555 +k1,21289:31533142,39845533:159555 +k1,21289:32583029,39845533:0 +) +(1,21290:6764466,40710613:25818563,513147,134348 +g1,21289:7982780,40710613 +g1,21289:9570062,40710613 +g1,21289:11597745,40710613 +g1,21289:12744625,40710613 +g1,21289:14410550,40710613 +k1,21290:32583029,40710613:14973011 +g1,21290:32583029,40710613 +) +(1,21292:6764466,41575693:25818563,505283,134348 +h1,21291:6764466,41575693:983040,0,0 +k1,21291:10721773,41575693:184399 +(1,21291:10721773,41575693:0,452978,115847 +r1,21382:14948869,41575693:4227096,568825,115847 +k1,21291:10721773,41575693:-4227096 +) +(1,21291:10721773,41575693:4227096,452978,115847 +k1,21291:10721773,41575693:3277 +h1,21291:14945592,41575693:0,411205,112570 +) +k1,21291:15133267,41575693:184398 +k1,21291:17695968,41575693:184399 +k1,21291:18668765,41575693:184399 +k1,21291:22255793,41575693:184399 +k1,21291:24900413,41575693:184398 +k1,21291:26216619,41575693:184399 +k1,21291:29793161,41575693:184399 +k1,21292:32583029,41575693:0 +) +(1,21292:6764466,42440773:25818563,505283,134348 +(1,21291:6764466,42440773:0,452978,115847 +r1,21382:9233003,42440773:2468537,568825,115847 +k1,21291:6764466,42440773:-2468537 +) +(1,21291:6764466,42440773:2468537,452978,115847 +k1,21291:6764466,42440773:3277 +h1,21291:9229726,42440773:0,411205,112570 +) +k1,21291:9408982,42440773:175979 +k1,21291:11267925,42440773:175978 +k1,21291:11799764,42440773:175979 +k1,21291:13848762,42440773:175979 +k1,21291:16999420,42440773:175979 +k1,21291:19041208,42440773:175978 +k1,21291:19903349,42440773:175979 +k1,21291:20850031,42440773:175979 +k1,21291:24098337,42440773:175978 +k1,21291:24925744,42440773:175979 +k1,21291:25849489,42440773:175979 +k1,21291:28362482,42440773:175979 +k1,21291:29154498,42440773:175978 +k1,21291:31215948,42440773:175979 +k1,21291:32583029,42440773:0 +) +(1,21292:6764466,43305853:25818563,505283,134348 +k1,21291:10039693,43305853:181272 +k1,21291:12208017,43305853:181272 +k1,21291:14399278,43305853:181272 +k1,21291:15599635,43305853:181272 +k1,21291:17646717,43305853:181272 +k1,21291:19358255,43305853:181272 +k1,21291:20190955,43305853:181272 +k1,21291:21119994,43305853:181273 +k1,21291:23818503,43305853:181272 +k1,21291:25942262,43305853:181272 +(1,21291:25942262,43305853:0,452978,115847 +r1,21382:26652240,43305853:709978,568825,115847 +k1,21291:25942262,43305853:-709978 +) +(1,21291:25942262,43305853:709978,452978,115847 +k1,21291:25942262,43305853:3277 +h1,21291:26648963,43305853:0,411205,112570 +) +k1,21291:26833512,43305853:181272 +k1,21291:28933678,43305853:181272 +k1,21291:29470810,43305853:181272 +k1,21291:31511994,43305853:181272 +(1,21291:31511994,43305853:0,452978,115847 +r1,21382:31870260,43305853:358266,568825,115847 +k1,21291:31511994,43305853:-358266 +) +(1,21291:31511994,43305853:358266,452978,115847 +k1,21291:31511994,43305853:3277 +h1,21291:31866983,43305853:0,411205,112570 +) +k1,21291:32051532,43305853:181272 +k1,21291:32583029,43305853:0 +) +(1,21292:6764466,44170933:25818563,513147,134348 +k1,21291:9699474,44170933:198225 +k1,21291:10851247,44170933:198224 +k1,21291:12327424,44170933:198225 +k1,21291:13811465,44170933:198225 +k1,21291:14625728,44170933:198225 +k1,21291:16290648,44170933:198224 +k1,21291:18359926,44170933:198225 +k1,21291:20693969,44170933:198225 +k1,21291:21248054,44170933:198225 +k1,21291:24420957,44170933:198224 +k1,21291:26484992,44170933:198225 +k1,21291:27444745,44170933:198225 +k1,21291:29711286,44170933:198225 +k1,21291:30568802,44170933:198224 +k1,21291:31923737,44170933:198225 +k1,21291:32583029,44170933:0 +) +(1,21292:6764466,45036013:25818563,513147,115847 +k1,21291:7948100,45036013:164549 +k1,21291:11138446,45036013:164549 +(1,21291:11138446,45036013:0,452978,115847 +r1,21382:13606983,45036013:2468537,568825,115847 +k1,21291:11138446,45036013:-2468537 +) +(1,21291:11138446,45036013:2468537,452978,115847 +k1,21291:11138446,45036013:3277 +h1,21291:13603706,45036013:0,411205,112570 +) +k1,21291:13945202,45036013:164549 +(1,21291:13945202,45036013:0,452978,115847 +r1,21382:16765451,45036013:2820249,568825,115847 +k1,21291:13945202,45036013:-2820249 +) +(1,21291:13945202,45036013:2820249,452978,115847 +k1,21291:13945202,45036013:3277 +h1,21291:16762174,45036013:0,411205,112570 +) +k1,21291:17103670,45036013:164549 +(1,21291:17103670,45036013:0,452978,115847 +r1,21382:19220495,45036013:2116825,568825,115847 +k1,21291:17103670,45036013:-2116825 +) +(1,21291:17103670,45036013:2116825,452978,115847 +k1,21291:17103670,45036013:3277 +h1,21291:19217218,45036013:0,411205,112570 +) +k1,21291:19385044,45036013:164549 +k1,21291:20232478,45036013:164549 +(1,21291:20232478,45036013:0,452978,115847 +r1,21382:24459574,45036013:4227096,568825,115847 +k1,21291:20232478,45036013:-4227096 +) +(1,21291:20232478,45036013:4227096,452978,115847 +k1,21291:20232478,45036013:3277 +h1,21291:24456297,45036013:0,411205,112570 +) +k1,21291:24624123,45036013:164549 +k1,21291:26674143,45036013:164549 +k1,21291:28124508,45036013:164549 +k1,21291:30068359,45036013:164549 +k1,21291:31251993,45036013:164549 +k1,21291:32583029,45036013:0 +) +] +g1,21382:32583029,45151860 +) +] +(1,21382:32583029,45706769:0,0,0 +g1,21382:32583029,45706769 +) +) +] +(1,21382:6630773,47279633:25952256,0,0 +h1,21382:6630773,47279633:25952256,0,0 +) +] +(1,21382:4262630,4025873:0,0,0 +[1,21382:-473656,4025873:0,0,0 +(1,21382:-473656,-710413:0,0,0 +(1,21382:-473656,-710413:0,0,0 +g1,21382:-473656,-710413 +) +g1,21382:-473656,-710413 +) +] +) +] +!21319 +}366 +Input:3511:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3512:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3513:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3514:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3515:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3516:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!576 +{367 +[1,21400:4262630,47279633:28320399,43253760,0 +(1,21400:4262630,4025873:0,0,0 +[1,21400:-473656,4025873:0,0,0 +(1,21400:-473656,-710413:0,0,0 +(1,21400:-473656,-644877:0,0,0 +k1,21400:-473656,-644877:-65536 +) +(1,21400:-473656,4736287:0,0,0 +k1,21400:-473656,4736287:5209943 +) +g1,21400:-473656,-710413 +) +] +) +[1,21400:6630773,47279633:25952256,43253760,0 +[1,21400:6630773,4812305:25952256,786432,0 +(1,21400:6630773,4812305:25952256,513147,126483 +(1,21400:6630773,4812305:25952256,513147,126483 +g1,21400:3078558,4812305 +[1,21400:3078558,4812305:0,0,0 +(1,21400:3078558,2439708:0,1703936,0 +k1,21400:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,21400:2537886,2439708:1179648,16384,0 +) +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,21400:3078558,1915420:16384,1179648,0 +) +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 +) ] -!25293 -}386 -Input:3498:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3499:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3500:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3501:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3502:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3503:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3504:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!670 -{387 -[1,21378:4262630,47279633:28320399,43253760,0 -(1,21378:4262630,4025873:0,0,0 -[1,21378:-473656,4025873:0,0,0 -(1,21378:-473656,-710413:0,0,0 -(1,21378:-473656,-644877:0,0,0 -k1,21378:-473656,-644877:-65536 ) -(1,21378:-473656,4736287:0,0,0 -k1,21378:-473656,4736287:5209943 ) -g1,21378:-473656,-710413 ) ] +[1,21400:3078558,4812305:0,0,0 +(1,21400:3078558,2439708:0,1703936,0 +g1,21400:29030814,2439708 +g1,21400:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,21400:36151628,1915420:16384,1179648,0 ) -[1,21378:6630773,47279633:25952256,43253760,0 -[1,21378:6630773,4812305:25952256,786432,0 -(1,21378:6630773,4812305:25952256,513147,126483 -(1,21378:6630773,4812305:25952256,513147,126483 -g1,21378:3078558,4812305 -[1,21378:3078558,4812305:0,0,0 -(1,21378:3078558,2439708:0,1703936,0 -k1,21378:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,21378:2537886,2439708:1179648,16384,0 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,21378:3078558,1915420:16384,1179648,0 +] +) +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,21400:37855564,2439708:1179648,16384,0 +) +) +k1,21400:3078556,2439708:-34777008 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +] +[1,21400:3078558,4812305:0,0,0 +(1,21400:3078558,49800853:0,16384,2228224 +k1,21400:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,21400:2537886,49800853:1179648,16384,0 +) +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,21400:3078558,51504789:16384,1179648,0 +) +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,21378:3078558,4812305:0,0,0 -(1,21378:3078558,2439708:0,1703936,0 -g1,21378:29030814,2439708 -g1,21378:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,21378:36151628,1915420:16384,1179648,0 +[1,21400:3078558,4812305:0,0,0 +(1,21400:3078558,49800853:0,16384,2228224 +g1,21400:29030814,49800853 +g1,21400:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,21400:36151628,51504789:16384,1179648,0 +) +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 +) +] +) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,21400:37855564,49800853:1179648,16384,0 +) +) +k1,21400:3078556,49800853:-34777008 +) +] +g1,21400:6630773,4812305 +k1,21400:21350816,4812305:13524666 +g1,21400:21999622,4812305 +g1,21400:25611966,4812305 +g1,21400:28956923,4812305 +g1,21400:29772190,4812305 +) +) +] +[1,21400:6630773,45706769:25952256,40108032,0 +(1,21400:6630773,45706769:25952256,40108032,0 +(1,21400:6630773,45706769:0,0,0 +g1,21400:6630773,45706769 +) +[1,21400:6630773,45706769:25952256,40108032,0 +v1,21382:6630773,6254097:0,393216,0 +(1,21382:6630773,39022968:25952256,33162087,0 +g1,21382:6630773,39022968 +g1,21382:6237557,39022968 +r1,21400:6368629,39022968:131072,33162087,0 +g1,21382:6567858,39022968 +g1,21382:6764466,39022968 +[1,21382:6764466,39022968:25818563,33162087,0 +(1,21292:6764466,6374028:25818563,513147,134348 +k1,21291:8624479,6374028:173116 +k1,21291:9994282,6374028:173116 +k1,21291:13239726,6374028:173116 +k1,21291:14064270,6374028:173116 +k1,21291:15934113,6374028:173116 +k1,21291:19133026,6374028:173116 +k1,21291:21166708,6374028:173115 +k1,21291:21991252,6374028:173116 +k1,21291:22912134,6374028:173116 +k1,21291:23441110,6374028:173116 +k1,21291:26588905,6374028:173116 +k1,21291:28627831,6374028:173116 +k1,21291:31821501,6374028:173116 +k1,21291:32583029,6374028:0 +) +(1,21292:6764466,7239108:25818563,513147,126483 +g1,21291:10057650,7239108 +g1,21291:12243931,7239108 +g1,21291:12909121,7239108 +g1,21291:13566447,7239108 +g1,21291:14297173,7239108 +g1,21291:15562673,7239108 +g1,21291:16413330,7239108 +g1,21291:17360325,7239108 +k1,21292:32583029,7239108:12885690 +g1,21292:32583029,7239108 +) +(1,21294:6764466,8104188:25818563,505283,134348 +h1,21293:6764466,8104188:983040,0,0 +g1,21293:9729970,8104188 +g1,21293:11664592,8104188 +(1,21293:11664592,8104188:0,452978,115847 +r1,21400:15891688,8104188:4227096,568825,115847 +k1,21293:11664592,8104188:-4227096 +) +(1,21293:11664592,8104188:4227096,452978,115847 +k1,21293:11664592,8104188:3277 +h1,21293:15888411,8104188:0,411205,112570 +) +g1,21293:16264587,8104188 +g1,21293:17855801,8104188 +g1,21293:21148985,8104188 +g1,21293:23335266,8104188 +g1,21293:24638777,8104188 +g1,21293:25585772,8104188 +k1,21294:32583029,8104188:3498945 +g1,21294:32583029,8104188 +) +v1,21296:6764466,8789043:0,393216,0 +(1,21302:6764466,10492830:25818563,2097003,196608 +g1,21302:6764466,10492830 +g1,21302:6764466,10492830 +g1,21302:6567858,10492830 +(1,21302:6567858,10492830:0,2097003,196608 +r1,21400:32779637,10492830:26211779,2293611,196608 +k1,21302:6567857,10492830:-26211780 +) +(1,21302:6567858,10492830:26211779,2097003,196608 +[1,21302:6764466,10492830:25818563,1900395,0 +(1,21298:6764466,9016874:25818563,424439,112852 +(1,21297:6764466,9016874:0,0,0 +g1,21297:6764466,9016874 +g1,21297:6764466,9016874 +g1,21297:6436786,9016874 +(1,21297:6436786,9016874:0,0,0 +) +g1,21297:6764466,9016874 +) +k1,21298:6764466,9016874:0 +g1,21298:11079868,9016874 +g1,21298:14731362,9016874 +g1,21298:17055040,9016874 +h1,21298:17386994,9016874:0,0,0 +k1,21298:32583029,9016874:15196035 +g1,21298:32583029,9016874 +) +(1,21299:6764466,9701729:25818563,424439,112852 +h1,21299:6764466,9701729:0,0,0 +g1,21299:7096420,9701729 +g1,21299:7428374,9701729 +g1,21299:11743775,9701729 +h1,21299:12075729,9701729:0,0,0 +k1,21299:32583029,9701729:20507300 +g1,21299:32583029,9701729 +) +(1,21300:6764466,10386584:25818563,424439,106246 +h1,21300:6764466,10386584:0,0,0 +g1,21300:7096420,10386584 +g1,21300:7428374,10386584 +g1,21300:15063315,10386584 +g1,21300:15395269,10386584 +h1,21300:17718947,10386584:0,0,0 +k1,21300:32583029,10386584:14864082 +g1,21300:32583029,10386584 +) +] +) +g1,21302:32583029,10492830 +g1,21302:6764466,10492830 +g1,21302:6764466,10492830 +g1,21302:32583029,10492830 +g1,21302:32583029,10492830 +) +h1,21302:6764466,10689438:0,0,0 +(1,21306:6764466,11554518:25818563,513147,126483 +h1,21305:6764466,11554518:983040,0,0 +g1,21305:9636253,11554518 +g1,21305:10451520,11554518 +g1,21305:11669834,11554518 +g1,21305:13236144,11554518 +g1,21305:14102529,11554518 +(1,21305:14102529,11554518:0,452978,115847 +r1,21400:16571066,11554518:2468537,568825,115847 +k1,21305:14102529,11554518:-2468537 +) +(1,21305:14102529,11554518:2468537,452978,115847 +k1,21305:14102529,11554518:3277 +h1,21305:16567789,11554518:0,411205,112570 +) +g1,21305:16770295,11554518 +g1,21305:18349712,11554518 +g1,21305:20079207,11554518 +g1,21305:20929864,11554518 +g1,21305:21876859,11554518 +k1,21306:32583029,11554518:8050652 +g1,21306:32583029,11554518 +) +v1,21308:6764466,12239373:0,393216,0 +(1,21314:6764466,13943160:25818563,2097003,196608 +g1,21314:6764466,13943160 +g1,21314:6764466,13943160 +g1,21314:6567858,13943160 +(1,21314:6567858,13943160:0,2097003,196608 +r1,21400:32779637,13943160:26211779,2293611,196608 +k1,21314:6567857,13943160:-26211780 +) +(1,21314:6567858,13943160:26211779,2097003,196608 +[1,21314:6764466,13943160:25818563,1900395,0 +(1,21310:6764466,12467204:25818563,424439,112852 +(1,21309:6764466,12467204:0,0,0 +g1,21309:6764466,12467204 +g1,21309:6764466,12467204 +g1,21309:6436786,12467204 +(1,21309:6436786,12467204:0,0,0 +) +g1,21309:6764466,12467204 +) +k1,21310:6764466,12467204:0 +g1,21310:11079868,12467204 +g1,21310:14731362,12467204 +g1,21310:17055040,12467204 +h1,21310:17386994,12467204:0,0,0 +k1,21310:32583029,12467204:15196035 +g1,21310:32583029,12467204 +) +(1,21311:6764466,13152059:25818563,424439,112852 +h1,21311:6764466,13152059:0,0,0 +g1,21311:7096420,13152059 +g1,21311:7428374,13152059 +g1,21311:11743775,13152059 +h1,21311:12075729,13152059:0,0,0 +k1,21311:32583029,13152059:20507300 +g1,21311:32583029,13152059 +) +(1,21312:6764466,13836914:25818563,424439,106246 +h1,21312:6764466,13836914:0,0,0 +g1,21312:7096420,13836914 +g1,21312:7428374,13836914 +g1,21312:12739638,13836914 +g1,21312:13403546,13836914 +g1,21312:16391131,13836914 +g1,21312:16723085,13836914 +h1,21312:19710671,13836914:0,0,0 +k1,21312:32583029,13836914:12872358 +g1,21312:32583029,13836914 +) +] +) +g1,21314:32583029,13943160 +g1,21314:6764466,13943160 +g1,21314:6764466,13943160 +g1,21314:32583029,13943160 +g1,21314:32583029,13943160 +) +h1,21314:6764466,14139768:0,0,0 +(1,21318:6764466,15004848:25818563,513147,7863 +h1,21317:6764466,15004848:983040,0,0 +g1,21317:9138180,15004848 +g1,21317:9953447,15004848 +g1,21317:11844816,15004848 +g1,21317:13741427,15004848 +g1,21317:15073118,15004848 +g1,21317:16020113,15004848 +g1,21317:19013142,15004848 +g1,21317:21222360,15004848 +g1,21317:21777449,15004848 +g1,21317:24157061,15004848 +k1,21318:32583029,15004848:5556802 +g1,21318:32583029,15004848 +) +v1,21320:6764466,15689703:0,393216,0 +(1,21326:6764466,17393490:25818563,2097003,196608 +g1,21326:6764466,17393490 +g1,21326:6764466,17393490 +g1,21326:6567858,17393490 +(1,21326:6567858,17393490:0,2097003,196608 +r1,21400:32779637,17393490:26211779,2293611,196608 +k1,21326:6567857,17393490:-26211780 +) +(1,21326:6567858,17393490:26211779,2097003,196608 +[1,21326:6764466,17393490:25818563,1900395,0 +(1,21322:6764466,15917534:25818563,424439,112852 +(1,21321:6764466,15917534:0,0,0 +g1,21321:6764466,15917534 +g1,21321:6764466,15917534 +g1,21321:6436786,15917534 +(1,21321:6436786,15917534:0,0,0 +) +g1,21321:6764466,15917534 +) +k1,21322:6764466,15917534:0 +g1,21322:11079868,15917534 +g1,21322:14731362,15917534 +g1,21322:17055040,15917534 +h1,21322:17386994,15917534:0,0,0 +k1,21322:32583029,15917534:15196035 +g1,21322:32583029,15917534 +) +(1,21323:6764466,16602389:25818563,424439,112852 +h1,21323:6764466,16602389:0,0,0 +g1,21323:7096420,16602389 +g1,21323:7428374,16602389 +g1,21323:11743775,16602389 +h1,21323:12075729,16602389:0,0,0 +k1,21323:32583029,16602389:20507300 +g1,21323:32583029,16602389 +) +(1,21324:6764466,17287244:25818563,424439,106246 +h1,21324:6764466,17287244:0,0,0 +g1,21324:7096420,17287244 +g1,21324:7428374,17287244 +g1,21324:12739638,17287244 +g1,21324:13403546,17287244 +g1,21324:18714809,17287244 +g1,21324:19046763,17287244 +h1,21324:22366302,17287244:0,0,0 +k1,21324:32583029,17287244:10216727 +g1,21324:32583029,17287244 +) +] +) +g1,21326:32583029,17393490 +g1,21326:6764466,17393490 +g1,21326:6764466,17393490 +g1,21326:32583029,17393490 +g1,21326:32583029,17393490 +) +h1,21326:6764466,17590098:0,0,0 +(1,21330:6764466,18455178:25818563,513147,134348 +h1,21329:6764466,18455178:983040,0,0 +k1,21329:9673672,18455178:209123 +k1,21329:13109788,18455178:209123 +k1,21329:16115332,18455178:209123 +k1,21329:16810076,18455178:209123 +(1,21329:16810076,18455178:0,452978,115847 +r1,21400:21037172,18455178:4227096,568825,115847 +k1,21329:16810076,18455178:-4227096 +) +(1,21329:16810076,18455178:4227096,452978,115847 +k1,21329:16810076,18455178:3277 +h1,21329:21033895,18455178:0,411205,112570 +) +k1,21329:21246295,18455178:209123 +k1,21329:21986915,18455178:209123 +k1,21329:24401325,18455178:209123 +k1,21329:27281695,18455178:209123 +k1,21329:31067118,18455178:209123 +k1,21329:31734338,18455178:209123 +k1,21330:32583029,18455178:0 +) +(1,21330:6764466,19320258:25818563,513147,134348 +k1,21329:8695744,19320258:226031 +k1,21329:9277635,19320258:226031 +k1,21329:11481542,19320258:226030 +k1,21329:12366865,19320258:226031 +k1,21329:16536853,19320258:226031 +k1,21329:18766975,19320258:226031 +(1,21329:18766975,19320258:0,452978,122846 +r1,21400:21587224,19320258:2820249,575824,122846 +k1,21329:18766975,19320258:-2820249 +) +(1,21329:18766975,19320258:2820249,452978,122846 +k1,21329:18766975,19320258:3277 +h1,21329:21583947,19320258:0,411205,112570 +) +k1,21329:21813254,19320258:226030 +k1,21329:24440524,19320258:226031 +k1,21329:25022415,19320258:226031 +k1,21329:27121465,19320258:226031 +k1,21329:29027838,19320258:226030 +k1,21329:29940031,19320258:226031 +k1,21329:30936765,19320258:226031 +k1,21330:32583029,19320258:0 +) +(1,21330:6764466,20185338:25818563,513147,126483 +k1,21329:8860144,20185338:282952 +k1,21329:9829257,20185338:282951 +k1,21329:10728247,20185338:282952 +k1,21329:12030283,20185338:282951 +k1,21329:13680316,20185338:282952 +k1,21329:14622559,20185338:282951 +k1,21329:16157904,20185338:282952 +k1,21329:18458710,20185338:282952 +k1,21329:20117262,20185338:282951 +k1,21329:21419299,20185338:282952 +k1,21329:23008383,20185338:282951 +k1,21329:25914741,20185338:282952 +k1,21329:26856984,20185338:282951 +k1,21329:28159021,20185338:282952 +k1,21329:30419849,20185338:282951 +k1,21329:31835263,20185338:282952 +k1,21329:32583029,20185338:0 +) +(1,21330:6764466,21050418:25818563,505283,7863 +k1,21330:32583029,21050418:24131666 +g1,21330:32583029,21050418 +) +v1,21332:6764466,21735273:0,393216,0 +(1,21338:6764466,23439060:25818563,2097003,196608 +g1,21338:6764466,23439060 +g1,21338:6764466,23439060 +g1,21338:6567858,23439060 +(1,21338:6567858,23439060:0,2097003,196608 +r1,21400:32779637,23439060:26211779,2293611,196608 +k1,21338:6567857,23439060:-26211780 +) +(1,21338:6567858,23439060:26211779,2097003,196608 +[1,21338:6764466,23439060:25818563,1900395,0 +(1,21334:6764466,21963104:25818563,424439,112852 +(1,21333:6764466,21963104:0,0,0 +g1,21333:6764466,21963104 +g1,21333:6764466,21963104 +g1,21333:6436786,21963104 +(1,21333:6436786,21963104:0,0,0 +) +g1,21333:6764466,21963104 +) +k1,21334:6764466,21963104:0 +g1,21334:11079868,21963104 +g1,21334:14731362,21963104 +g1,21334:17055040,21963104 +h1,21334:17386994,21963104:0,0,0 +k1,21334:32583029,21963104:15196035 +g1,21334:32583029,21963104 +) +(1,21335:6764466,22647959:25818563,424439,112852 +h1,21335:6764466,22647959:0,0,0 +g1,21335:7096420,22647959 +g1,21335:7428374,22647959 +g1,21335:11743775,22647959 +h1,21335:12075729,22647959:0,0,0 +k1,21335:32583029,22647959:20507300 +g1,21335:32583029,22647959 +) +(1,21336:6764466,23332814:25818563,424439,106246 +h1,21336:6764466,23332814:0,0,0 +g1,21336:7096420,23332814 +g1,21336:7428374,23332814 +g1,21336:14731361,23332814 +g1,21336:15395269,23332814 +g1,21336:15727223,23332814 +h1,21336:18050901,23332814:0,0,0 +k1,21336:32583029,23332814:14532128 +g1,21336:32583029,23332814 +) +] +) +g1,21338:32583029,23439060 +g1,21338:6764466,23439060 +g1,21338:6764466,23439060 +g1,21338:32583029,23439060 +g1,21338:32583029,23439060 +) +h1,21338:6764466,23635668:0,0,0 +(1,21342:6764466,24500748:25818563,505283,134348 +h1,21341:6764466,24500748:983040,0,0 +k1,21341:11406083,24500748:214005 +k1,21341:12429458,24500748:214005 +k1,21341:13662547,24500748:214004 +k1,21341:16433111,24500748:214005 +k1,21341:18657105,24500748:214005 +k1,21341:19226970,24500748:214005 +k1,21341:23054630,24500748:214005 +k1,21341:25386759,24500748:214005 +k1,21341:27685463,24500748:214004 +k1,21341:30514355,24500748:214005 +k1,21341:31411245,24500748:214005 +k1,21342:32583029,24500748:0 +) +(1,21342:6764466,25365828:25818563,505283,134348 +k1,21341:8099179,25365828:225844 +k1,21341:9154053,25365828:225844 +k1,21341:12492202,25365828:225844 +k1,21341:15587212,25365828:225844 +k1,21341:18273278,25365828:225844 +k1,21341:20686715,25365828:225845 +k1,21341:22700381,25365828:225844 +k1,21341:24018710,25365828:225844 +(1,21341:24018710,25365828:0,414482,115847 +r1,21400:24376976,25365828:358266,530329,115847 +k1,21341:24018710,25365828:-358266 +) +(1,21341:24018710,25365828:358266,414482,115847 +k1,21341:24018710,25365828:3277 +h1,21341:24373699,25365828:0,411205,112570 +) +k1,21341:24776490,25365828:225844 +k1,21341:25653762,25365828:225844 +k1,21341:28776953,25365828:225844 +k1,21341:30841737,25365828:225844 +k1,21341:32583029,25365828:0 +) +(1,21342:6764466,26230908:25818563,505283,126483 +k1,21341:9024330,26230908:298371 +k1,21341:10415185,26230908:298370 +(1,21341:10415185,26230908:0,414482,115847 +r1,21400:10773451,26230908:358266,530329,115847 +k1,21341:10415185,26230908:-358266 +) +(1,21341:10415185,26230908:358266,414482,115847 +k1,21341:10415185,26230908:3277 +h1,21341:10770174,26230908:0,411205,112570 +) +k1,21341:11245492,26230908:298371 +k1,21341:12361751,26230908:298370 +k1,21341:14735647,26230908:298371 +k1,21341:17063013,26230908:298371 +k1,21341:19479507,26230908:298370 +k1,21341:20769438,26230908:298371 +k1,21341:23883890,26230908:298370 +k1,21341:26192250,26230908:298371 +k1,21341:28729331,26230908:298371 +k1,21341:30427550,26230908:298370 +k1,21342:32583029,26230908:0 +) +(1,21342:6764466,27095988:25818563,513147,134348 +g1,21341:9541881,27095988 +g1,21341:10760195,27095988 +g1,21341:13934759,27095988 +g1,21341:17851190,27095988 +g1,21341:19154701,27095988 +g1,21341:20639746,27095988 +g1,21341:21586741,27095988 +k1,21342:32583029,27095988:9309391 +g1,21342:32583029,27095988 +) +v1,21344:6764466,27780843:0,393216,0 +(1,21348:6764466,28114920:25818563,727293,196608 +g1,21348:6764466,28114920 +g1,21348:6764466,28114920 +g1,21348:6567858,28114920 +(1,21348:6567858,28114920:0,727293,196608 +r1,21400:32779637,28114920:26211779,923901,196608 +k1,21348:6567857,28114920:-26211780 +) +(1,21348:6567858,28114920:26211779,727293,196608 +[1,21348:6764466,28114920:25818563,530685,0 +(1,21346:6764466,28008674:25818563,424439,106246 +(1,21345:6764466,28008674:0,0,0 +g1,21345:6764466,28008674 +g1,21345:6764466,28008674 +g1,21345:6436786,28008674 +(1,21345:6436786,28008674:0,0,0 +) +g1,21345:6764466,28008674 +) +g1,21346:7096420,28008674 +g1,21346:7428374,28008674 +g1,21346:12739638,28008674 +g1,21346:13403546,28008674 +h1,21346:20042625,28008674:0,0,0 +k1,21346:32583029,28008674:12540404 +g1,21346:32583029,28008674 +) +] +) +g1,21348:32583029,28114920 +g1,21348:6764466,28114920 +g1,21348:6764466,28114920 +g1,21348:32583029,28114920 +g1,21348:32583029,28114920 +) +h1,21348:6764466,28311528:0,0,0 +v1,21352:6764466,28996383:0,393216,0 +(1,21356:6764466,29330460:25818563,727293,196608 +g1,21356:6764466,29330460 +g1,21356:6764466,29330460 +g1,21356:6567858,29330460 +(1,21356:6567858,29330460:0,727293,196608 +r1,21400:32779637,29330460:26211779,923901,196608 +k1,21356:6567857,29330460:-26211780 +) +(1,21356:6567858,29330460:26211779,727293,196608 +[1,21356:6764466,29330460:25818563,530685,0 +(1,21354:6764466,29224214:25818563,424439,106246 +(1,21353:6764466,29224214:0,0,0 +g1,21353:6764466,29224214 +g1,21353:6764466,29224214 +g1,21353:6436786,29224214 +(1,21353:6436786,29224214:0,0,0 +) +g1,21353:6764466,29224214 +) +g1,21354:7096420,29224214 +g1,21354:7428374,29224214 +g1,21354:12739638,29224214 +g1,21354:13403546,29224214 +h1,21354:21038486,29224214:0,0,0 +k1,21354:32583029,29224214:11544543 +g1,21354:32583029,29224214 +) +] +) +g1,21356:32583029,29330460 +g1,21356:6764466,29330460 +g1,21356:6764466,29330460 +g1,21356:32583029,29330460 +g1,21356:32583029,29330460 +) +h1,21356:6764466,29527068:0,0,0 +(1,21360:6764466,30392148:25818563,505283,126483 +h1,21359:6764466,30392148:983040,0,0 +g1,21359:10881437,30392148 +g1,21359:14149062,30392148 +g1,21359:16089583,30392148 +g1,21359:18076634,30392148 +g1,21359:18807360,30392148 +k1,21360:32583029,30392148:10483140 +g1,21360:32583029,30392148 +) +v1,21362:6764466,31077003:0,393216,0 +(1,21366:6764466,31411080:25818563,727293,196608 +g1,21366:6764466,31411080 +g1,21366:6764466,31411080 +g1,21366:6567858,31411080 +(1,21366:6567858,31411080:0,727293,196608 +r1,21400:32779637,31411080:26211779,923901,196608 +k1,21366:6567857,31411080:-26211780 +) +(1,21366:6567858,31411080:26211779,727293,196608 +[1,21366:6764466,31411080:25818563,530685,0 +(1,21364:6764466,31304834:25818563,424439,106246 +(1,21363:6764466,31304834:0,0,0 +g1,21363:6764466,31304834 +g1,21363:6764466,31304834 +g1,21363:6436786,31304834 +(1,21363:6436786,31304834:0,0,0 +) +g1,21363:6764466,31304834 +) +g1,21364:7096420,31304834 +g1,21364:7428374,31304834 +g1,21364:12739638,31304834 +g1,21364:13403546,31304834 +g1,21364:17718947,31304834 +g1,21364:18050901,31304834 +g1,21364:18382855,31304834 +h1,21364:21038487,31304834:0,0,0 +k1,21364:32583029,31304834:11544542 +g1,21364:32583029,31304834 +) +] +) +g1,21366:32583029,31411080 +g1,21366:6764466,31411080 +g1,21366:6764466,31411080 +g1,21366:32583029,31411080 +g1,21366:32583029,31411080 +) +h1,21366:6764466,31607688:0,0,0 +(1,21370:6764466,32472768:25818563,505283,134348 +h1,21369:6764466,32472768:983040,0,0 +k1,21369:10316874,32472768:293303 +k1,21369:11068275,32472768:293304 +k1,21369:12465860,32472768:293303 +k1,21369:13506929,32472768:293303 +k1,21369:17064581,32472768:293304 +k1,21369:18642390,32472768:293303 +k1,21369:21233386,32472768:293304 +k1,21369:23277156,32472768:293303 +k1,21369:24186497,32472768:293303 +k1,21369:27099930,32472768:293304 +k1,21369:29403878,32472768:293303 +k1,21369:32583029,32472768:0 +) +(1,21370:6764466,33337848:25818563,513147,134348 +k1,21369:8968956,33337848:194501 +k1,21369:9934161,33337848:194502 +k1,21369:13568647,33337848:194501 +k1,21369:14446034,33337848:194502 +k1,21369:15866714,33337848:194501 +k1,21369:16712644,33337848:194502 +k1,21369:17654911,33337848:194501 +k1,21369:20012755,33337848:194501 +k1,21369:21198817,33337848:194502 +k1,21369:24280179,33337848:194501 +k1,21369:25303711,33337848:194502 +k1,21369:27126782,33337848:194501 +k1,21369:28340369,33337848:194502 +k1,21369:30832562,33337848:194501 +k1,21369:32583029,33337848:0 +) +(1,21370:6764466,34202928:25818563,505283,126483 +k1,21369:7693417,34202928:277523 +k1,21369:8718706,34202928:277523 +k1,21369:11628810,34202928:277523 +k1,21369:12774685,34202928:277523 +k1,21369:14582474,34202928:277523 +k1,21369:15511425,34202928:277523 +k1,21369:18162007,34202928:277523 +k1,21369:19458614,34202928:277522 +k1,21369:22221918,34202928:277523 +k1,21369:23115479,34202928:277523 +k1,21369:26486957,34202928:277523 +k1,21369:28751532,34202928:277523 +k1,21369:29753883,34202928:277523 +k1,21369:31315912,34202928:277523 +k1,21369:32051532,34202928:277523 +k1,21369:32583029,34202928:0 +) +(1,21370:6764466,35068008:25818563,505283,134348 +g1,21369:10553757,35068008 +g1,21369:11439148,35068008 +g1,21369:11994237,35068008 +g1,21369:15168145,35068008 +k1,21370:32583029,35068008:15375404 +g1,21370:32583029,35068008 +) +v1,21372:6764466,35752863:0,393216,0 +(1,21380:6764466,38826360:25818563,3466713,196608 +g1,21380:6764466,38826360 +g1,21380:6764466,38826360 +g1,21380:6567858,38826360 +(1,21380:6567858,38826360:0,3466713,196608 +r1,21400:32779637,38826360:26211779,3663321,196608 +k1,21380:6567857,38826360:-26211780 +) +(1,21380:6567858,38826360:26211779,3466713,196608 +[1,21380:6764466,38826360:25818563,3270105,0 +(1,21374:6764466,35980694:25818563,424439,112852 +(1,21373:6764466,35980694:0,0,0 +g1,21373:6764466,35980694 +g1,21373:6764466,35980694 +g1,21373:6436786,35980694 +(1,21373:6436786,35980694:0,0,0 +) +g1,21373:6764466,35980694 +) +k1,21374:6764466,35980694:0 +g1,21374:11079868,35980694 +g1,21374:14731362,35980694 +g1,21374:17055040,35980694 +h1,21374:17386994,35980694:0,0,0 +k1,21374:32583029,35980694:15196035 +g1,21374:32583029,35980694 +) +(1,21375:6764466,36665549:25818563,424439,112852 +h1,21375:6764466,36665549:0,0,0 +g1,21375:7096420,36665549 +g1,21375:7428374,36665549 +g1,21375:11743775,36665549 +h1,21375:12075729,36665549:0,0,0 +k1,21375:32583029,36665549:20507300 +g1,21375:32583029,36665549 +) +(1,21376:6764466,37350404:25818563,424439,112852 +h1,21376:6764466,37350404:0,0,0 +g1,21376:7096420,37350404 +g1,21376:7428374,37350404 +g1,21376:12075729,37350404 +g1,21376:12739637,37350404 +k1,21376:12739637,37350404:0 +h1,21376:15063315,37350404:0,0,0 +k1,21376:32583029,37350404:17519714 +g1,21376:32583029,37350404 +) +(1,21377:6764466,38035259:25818563,424439,106246 +h1,21377:6764466,38035259:0,0,0 +g1,21377:7096420,38035259 +g1,21377:7428374,38035259 +g1,21377:7760328,38035259 +g1,21377:8092282,38035259 +g1,21377:8424236,38035259 +g1,21377:8756190,38035259 +g1,21377:9088144,38035259 +g1,21377:9420098,38035259 +g1,21377:9752052,38035259 +g1,21377:10084006,38035259 +g1,21377:10415960,38035259 +g1,21377:11079868,38035259 +g1,21377:11743776,38035259 +g1,21377:14067454,38035259 +g1,21377:15395270,38035259 +g1,21377:16059178,38035259 +g1,21377:16723086,38035259 +g1,21377:18714810,38035259 +g1,21377:20374580,38035259 +k1,21377:20374580,38035259:0 +h1,21377:22034350,38035259:0,0,0 +k1,21377:32583029,38035259:10548679 +g1,21377:32583029,38035259 +) +(1,21378:6764466,38720114:25818563,424439,106246 +h1,21378:6764466,38720114:0,0,0 +g1,21378:7096420,38720114 +g1,21378:7428374,38720114 +g1,21378:7760328,38720114 +g1,21378:8092282,38720114 +g1,21378:8424236,38720114 +g1,21378:8756190,38720114 +g1,21378:9088144,38720114 +g1,21378:9420098,38720114 +g1,21378:9752052,38720114 +g1,21378:10084006,38720114 +g1,21378:10415960,38720114 +g1,21378:12407684,38720114 +g1,21378:13071592,38720114 +g1,21378:18382856,38720114 +g1,21378:22366303,38720114 +g1,21378:26681704,38720114 +g1,21378:28673428,38720114 +g1,21378:29337336,38720114 +h1,21378:30997106,38720114:0,0,0 +k1,21378:32583029,38720114:1585923 +g1,21378:32583029,38720114 +) +] +) +g1,21380:32583029,38826360 +g1,21380:6764466,38826360 +g1,21380:6764466,38826360 +g1,21380:32583029,38826360 +g1,21380:32583029,38826360 +) +h1,21380:6764466,39022968:0,0,0 +] +g1,21382:32583029,39022968 +) +h1,21382:6630773,39022968:0,0,0 +(1,21385:6630773,39888048:25952256,513147,115847 +h1,21384:6630773,39888048:983040,0,0 +k1,21384:9760552,39888048:159687 +k1,21384:10788591,39888048:159687 +k1,21384:12461504,39888048:159687 +(1,21384:12461504,39888048:0,452978,115847 +r1,21400:14930041,39888048:2468537,568825,115847 +k1,21384:12461504,39888048:-2468537 +) +(1,21384:12461504,39888048:2468537,452978,115847 +k1,21384:12461504,39888048:3277 +h1,21384:14926764,39888048:0,411205,112570 +) +k1,21384:15089727,39888048:159686 +k1,21384:15900842,39888048:159687 +k1,21384:17899469,39888048:159687 +k1,21384:20069801,39888048:159687 +k1,21384:22267658,39888048:159687 +k1,21384:23043382,39888048:159686 +k1,21384:23558929,39888048:159687 +k1,21384:26403626,39888048:159687 +k1,21384:29589110,39888048:159687 +(1,21384:29589110,39888048:0,459977,115847 +r1,21400:32409359,39888048:2820249,575824,115847 +k1,21384:29589110,39888048:-2820249 +) +(1,21384:29589110,39888048:2820249,459977,115847 +k1,21384:29589110,39888048:3277 +h1,21384:32406082,39888048:0,411205,112570 +) +k1,21385:32583029,39888048:0 +) +(1,21385:6630773,40753128:25952256,513147,134348 +(1,21384:6630773,40753128:0,459977,115847 +r1,21400:9802733,40753128:3171960,575824,115847 +k1,21384:6630773,40753128:-3171960 +) +(1,21384:6630773,40753128:3171960,459977,115847 +k1,21384:6630773,40753128:3277 +h1,21384:9799456,40753128:0,411205,112570 +) +k1,21384:10138532,40753128:162129 +k1,21384:11492105,40753128:162128 +(1,21384:11492105,40753128:0,459977,115847 +r1,21400:15015777,40753128:3523672,575824,115847 +k1,21384:11492105,40753128:-3523672 +) +(1,21384:11492105,40753128:3523672,459977,115847 +k1,21384:11492105,40753128:3277 +h1,21384:15012500,40753128:0,411205,112570 +) +k1,21384:15177906,40753128:162129 +k1,21384:17021689,40753128:162129 +k1,21384:18202903,40753128:162129 +k1,21384:21841716,40753128:162128 +k1,21384:23271311,40753128:162129 +k1,21384:26408119,40753128:162129 +k1,21384:28766359,40753128:162129 +k1,21384:29587779,40753128:162128 +k1,21384:31451878,40753128:162129 +k1,21385:32583029,40753128:0 +) +(1,21385:6630773,41618208:25952256,513147,134348 +k1,21384:8036302,41618208:139373 +k1,21384:10050005,41618208:139373 +k1,21384:13215175,41618208:139373 +k1,21384:14458830,41618208:139373 +k1,21384:15345969,41618208:139373 +k1,21384:16998568,41618208:139373 +k1,21384:18835980,41618208:139374 +k1,21384:21547641,41618208:139373 +k1,21384:23294612,41618208:139373 +k1,21384:24085413,41618208:139373 +k1,21384:26956982,41618208:139373 +k1,21384:29608350,41618208:139373 +k1,21384:32583029,41618208:0 +) +(1,21385:6630773,42483288:25952256,513147,134348 +k1,21384:9009006,42483288:182122 +k1,21384:10138779,42483288:182122 +k1,21384:11339986,42483288:182122 +(1,21384:11339986,42483288:0,452978,115847 +r1,21400:13105099,42483288:1765113,568825,115847 +k1,21384:11339986,42483288:-1765113 +) +(1,21384:11339986,42483288:1765113,452978,115847 +k1,21384:11339986,42483288:3277 +h1,21384:13101822,42483288:0,411205,112570 +) +k1,21384:13287221,42483288:182122 +k1,21384:16256589,42483288:182122 +k1,21384:17504982,42483288:182122 +k1,21384:18346396,42483288:182122 +k1,21384:21322318,42483288:182122 +k1,21384:23747737,42483288:182122 +k1,21384:25484373,42483288:182122 +k1,21384:27265573,42483288:182122 +k1,21384:28639140,42483288:182122 +k1,21384:30287958,42483288:182122 +k1,21385:32583029,42483288:0 +) +(1,21385:6630773,43348368:25952256,513147,126483 +g1,21384:7722602,43348368 +g1,21384:10106146,43348368 +g1,21384:11863166,43348368 +g1,21384:13166677,43348368 +g1,21384:14287342,43348368 +g1,21384:15434222,43348368 +g1,21384:18468538,43348368 +g1,21384:20180993,43348368 +g1,21384:21031650,43348368 +g1,21384:23160259,43348368 +g1,21384:25203671,43348368 +g1,21384:27412889,43348368 +g1,21384:27967978,43348368 +g1,21384:29266901,43348368 +g1,21384:30117558,43348368 +(1,21384:30117558,43348368:0,452978,115847 +r1,21400:31882671,43348368:1765113,568825,115847 +k1,21384:30117558,43348368:-1765113 +) +(1,21384:30117558,43348368:1765113,452978,115847 +k1,21384:30117558,43348368:3277 +h1,21384:31879394,43348368:0,411205,112570 +) +k1,21385:32583029,43348368:526688 +g1,21385:32583029,43348368 +) +v1,21387:6630773,44033223:0,393216,0 +(1,21400:6630773,45510161:25952256,1870154,196608 +g1,21400:6630773,45510161 +g1,21400:6630773,45510161 +g1,21400:6434165,45510161 +(1,21400:6434165,45510161:0,1870154,196608 +r1,21400:32779637,45510161:26345472,2066762,196608 +k1,21400:6434165,45510161:-26345472 +) +(1,21400:6434165,45510161:26345472,1870154,196608 +[1,21400:6630773,45510161:25952256,1673546,0 +(1,21389:6630773,44267660:25952256,431045,112852 +(1,21388:6630773,44267660:0,0,0 +g1,21388:6630773,44267660 +g1,21388:6630773,44267660 +g1,21388:6303093,44267660 +(1,21388:6303093,44267660:0,0,0 +) +g1,21388:6630773,44267660 +) +k1,21389:6630773,44267660:0 +g1,21389:12937898,44267660 +g1,21389:13601806,44267660 +g1,21389:15925484,44267660 +g1,21389:16921346,44267660 +k1,21389:16921346,44267660:0 +h1,21389:19245024,44267660:0,0,0 +k1,21389:32583029,44267660:13338005 +g1,21389:32583029,44267660 +) +(1,21393:6630773,44888910:25952256,424439,112852 +(1,21391:6630773,44888910:0,0,0 +g1,21391:6630773,44888910 +g1,21391:6630773,44888910 +g1,21391:6303093,44888910 +(1,21391:6303093,44888910:0,0,0 +) +g1,21391:6630773,44888910 +) +g1,21393:7626635,44888910 +g1,21393:8954451,44888910 +g1,21393:12937898,44888910 +g1,21393:13601806,44888910 +h1,21393:15593530,44888910:0,0,0 +k1,21393:32583030,44888910:16989500 +g1,21393:32583030,44888910 +) +(1,21395:6630773,45510161:25952256,431045,112852 +(1,21394:6630773,45510161:0,0,0 +g1,21394:6630773,45510161 +g1,21394:6630773,45510161 +g1,21394:6303093,45510161 +(1,21394:6303093,45510161:0,0,0 +) +g1,21394:6630773,45510161 +) +k1,21395:6630773,45510161:0 +g1,21395:12937898,45510161 +g1,21395:13601806,45510161 +g1,21395:15925484,45510161 +g1,21395:16921346,45510161 +k1,21395:16921346,45510161:0 +h1,21395:19245024,45510161:0,0,0 +k1,21395:32583029,45510161:13338005 +g1,21395:32583029,45510161 +) +] +) +g1,21400:32583029,45510161 +g1,21400:6630773,45510161 +g1,21400:6630773,45510161 +g1,21400:32583029,45510161 +g1,21400:32583029,45510161 +) +] +(1,21400:32583029,45706769:0,0,0 +g1,21400:32583029,45706769 +) +) +] +(1,21400:6630773,47279633:25952256,0,0 +h1,21400:6630773,47279633:25952256,0,0 +) +] +(1,21400:4262630,4025873:0,0,0 +[1,21400:-473656,4025873:0,0,0 +(1,21400:-473656,-710413:0,0,0 +(1,21400:-473656,-710413:0,0,0 +g1,21400:-473656,-710413 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +g1,21400:-473656,-710413 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,21378:37855564,2439708:1179648,16384,0 +] +!31206 +}367 +Input:3517:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3518:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3519:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3520:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3521:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3522:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3523:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3524:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3525:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3526:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3527:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1046 +{368 +[1,21451:4262630,47279633:28320399,43253760,0 +(1,21451:4262630,4025873:0,0,0 +[1,21451:-473656,4025873:0,0,0 +(1,21451:-473656,-710413:0,0,0 +(1,21451:-473656,-644877:0,0,0 +k1,21451:-473656,-644877:-65536 ) +(1,21451:-473656,4736287:0,0,0 +k1,21451:-473656,4736287:5209943 ) -k1,21378:3078556,2439708:-34777008 +g1,21451:-473656,-710413 ) ] -[1,21378:3078558,4812305:0,0,0 -(1,21378:3078558,49800853:0,16384,2228224 -k1,21378:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,21378:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,21378:3078558,51504789:16384,1179648,0 +[1,21451:6630773,47279633:25952256,43253760,0 +[1,21451:6630773,4812305:25952256,786432,0 +(1,21451:6630773,4812305:25952256,505283,134348 +(1,21451:6630773,4812305:25952256,505283,134348 +g1,21451:3078558,4812305 +[1,21451:3078558,4812305:0,0,0 +(1,21451:3078558,2439708:0,1703936,0 +k1,21451:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,21451:2537886,2439708:1179648,16384,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,21451:3078558,1915420:16384,1179648,0 +) +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,21378:3078558,4812305:0,0,0 -(1,21378:3078558,49800853:0,16384,2228224 -g1,21378:29030814,49800853 -g1,21378:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,21378:36151628,51504789:16384,1179648,0 +[1,21451:3078558,4812305:0,0,0 +(1,21451:3078558,2439708:0,1703936,0 +g1,21451:29030814,2439708 +g1,21451:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,21451:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,21378:37855564,49800853:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,21451:37855564,2439708:1179648,16384,0 ) ) -k1,21378:3078556,49800853:-34777008 +k1,21451:3078556,2439708:-34777008 ) ] -g1,21378:6630773,4812305 -k1,21378:21350816,4812305:13524666 -g1,21378:21999622,4812305 -g1,21378:25611966,4812305 -g1,21378:28956923,4812305 -g1,21378:29772190,4812305 +[1,21451:3078558,4812305:0,0,0 +(1,21451:3078558,49800853:0,16384,2228224 +k1,21451:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,21451:2537886,49800853:1179648,16384,0 +) +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,21451:3078558,51504789:16384,1179648,0 ) +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] -[1,21378:6630773,45706769:25952256,40108032,0 -(1,21378:6630773,45706769:25952256,40108032,0 -(1,21378:6630773,45706769:0,0,0 -g1,21378:6630773,45706769 ) -[1,21378:6630773,45706769:25952256,40108032,0 -v1,21313:6630773,6254097:0,393216,0 -(1,21313:6630773,8365520:25952256,2504639,0 -g1,21313:6630773,8365520 -g1,21313:6303093,8365520 -r1,21378:6401397,8365520:98304,2504639,0 -g1,21313:6600626,8365520 -g1,21313:6797234,8365520 -[1,21313:6797234,8365520:25785795,2504639,0 -(1,21313:6797234,6674681:25785795,813800,267386 -(1,21312:6797234,6674681:0,813800,267386 -r1,21378:8134168,6674681:1336934,1081186,267386 -k1,21312:6797234,6674681:-1336934 -) -(1,21312:6797234,6674681:1336934,813800,267386 -) -k1,21312:8303747,6674681:169579 -k1,21312:8631427,6674681:327680 -k1,21312:10584241,6674681:169579 -k1,21312:14237714,6674681:169579 -k1,21312:16014891,6674681:169579 -k1,21312:17578421,6674681:169579 -k1,21312:18767085,6674681:169579 -(1,21312:18767085,6674681:0,414482,115847 -r1,21378:19125351,6674681:358266,530329,115847 -k1,21312:18767085,6674681:-358266 -) -(1,21312:18767085,6674681:358266,414482,115847 -k1,21312:18767085,6674681:3277 -h1,21312:19122074,6674681:0,411205,112570 -) -k1,21312:19294930,6674681:169579 -k1,21312:22384793,6674681:169579 -k1,21312:23573457,6674681:169579 -k1,21312:28149022,6674681:169579 -k1,21312:30961013,6674681:169579 -k1,21312:32583029,6674681:0 -) -(1,21313:6797234,7516169:25785795,513147,134348 -k1,21312:7781243,7516169:236243 -k1,21312:8373345,7516169:236242 -(1,21312:8373345,7516169:0,452978,122846 -r1,21378:9786746,7516169:1413401,575824,122846 -k1,21312:8373345,7516169:-1413401 -) -(1,21312:8373345,7516169:1413401,452978,122846 -k1,21312:8373345,7516169:3277 -h1,21312:9783469,7516169:0,411205,112570 -) -k1,21312:10022989,7516169:236243 -k1,21312:12392429,7516169:236243 -k1,21312:13825358,7516169:236242 -k1,21312:15135736,7516169:236243 -k1,21312:18014390,7516169:236242 -k1,21312:18782130,7516169:236243 -k1,21312:20983798,7516169:236243 -k1,21312:21871468,7516169:236242 -k1,21312:23126796,7516169:236243 -(1,21312:23126796,7516169:0,452978,122846 -r1,21378:24540197,7516169:1413401,575824,122846 -k1,21312:23126796,7516169:-1413401 -) -(1,21312:23126796,7516169:1413401,452978,122846 -k1,21312:23126796,7516169:3277 -h1,21312:24536920,7516169:0,411205,112570 -) -k1,21312:24776439,7516169:236242 -k1,21312:26972208,7516169:236243 -k1,21312:28399896,7516169:236243 -k1,21312:29655223,7516169:236242 -k1,21312:31734338,7516169:236243 -k1,21313:32583029,7516169:0 -) -(1,21313:6797234,8357657:25785795,505283,7863 -k1,21313:32583028,8357657:23469096 -g1,21313:32583028,8357657 -) -] -g1,21313:32583029,8365520 -) -h1,21313:6630773,8365520:0,0,0 -v1,21316:6630773,10080274:0,393216,0 -(1,21322:6630773,11721435:25952256,2034377,196608 -g1,21322:6630773,11721435 -g1,21322:6630773,11721435 -g1,21322:6434165,11721435 -(1,21322:6434165,11721435:0,2034377,196608 -r1,21378:32779637,11721435:26345472,2230985,196608 -k1,21322:6434165,11721435:-26345472 -) -(1,21322:6434165,11721435:26345472,2034377,196608 -[1,21322:6630773,11721435:25952256,1837769,0 -(1,21318:6630773,10287892:25952256,404226,101187 -(1,21317:6630773,10287892:0,0,0 -g1,21317:6630773,10287892 -g1,21317:6630773,10287892 -g1,21317:6303093,10287892 -(1,21317:6303093,10287892:0,0,0 -) -g1,21317:6630773,10287892 -) -h1,21318:8527647,10287892:0,0,0 -k1,21318:32583029,10287892:24055382 -g1,21318:32583029,10287892 -) -(1,21319:6630773,10954070:25952256,404226,101187 -h1,21319:6630773,10954070:0,0,0 -g1,21319:8843793,10954070 -g1,21319:9476085,10954070 -g1,21319:11689105,10954070 -g1,21319:12321397,10954070 -k1,21319:12321397,10954070:0 -h1,21319:16115145,10954070:0,0,0 -k1,21319:32583029,10954070:16467884 -g1,21319:32583029,10954070 -) -(1,21320:6630773,11620248:25952256,404226,101187 -h1,21320:6630773,11620248:0,0,0 -g1,21320:8843793,11620248 -g1,21320:9476085,11620248 -g1,21320:11689105,11620248 -g1,21320:12321397,11620248 -g1,21320:16431291,11620248 -g1,21320:17063583,11620248 -g1,21320:19592750,11620248 -h1,21320:20541187,11620248:0,0,0 -k1,21320:32583029,11620248:12041842 -g1,21320:32583029,11620248 -) -] -) -g1,21322:32583029,11721435 -g1,21322:6630773,11721435 -g1,21322:6630773,11721435 -g1,21322:32583029,11721435 -g1,21322:32583029,11721435 -) -h1,21322:6630773,11918043:0,0,0 -(1,21326:6630773,13283819:25952256,505283,7863 -h1,21325:6630773,13283819:983040,0,0 -g1,21325:8766591,13283819 -g1,21325:10070102,13283819 -g1,21325:11555147,13283819 -g1,21325:13145050,13283819 -g1,21325:17402268,13283819 -k1,21326:32583029,13283819:12833917 -g1,21326:32583029,13283819 -) -v1,21328:6630773,14474285:0,393216,0 -(1,21333:6630773,15455559:25952256,1374490,196608 -g1,21333:6630773,15455559 -g1,21333:6630773,15455559 -g1,21333:6434165,15455559 -(1,21333:6434165,15455559:0,1374490,196608 -r1,21378:32779637,15455559:26345472,1571098,196608 -k1,21333:6434165,15455559:-26345472 -) -(1,21333:6434165,15455559:26345472,1374490,196608 -[1,21333:6630773,15455559:25952256,1177882,0 -(1,21330:6630773,14681903:25952256,404226,107478 -(1,21329:6630773,14681903:0,0,0 -g1,21329:6630773,14681903 -g1,21329:6630773,14681903 -g1,21329:6303093,14681903 -(1,21329:6303093,14681903:0,0,0 -) -g1,21329:6630773,14681903 -) -g1,21330:9792230,14681903 -g1,21330:10740668,14681903 -g1,21330:12953688,14681903 -g1,21330:13585980,14681903 -k1,21330:13585980,14681903:0 -h1,21330:22754206,14681903:0,0,0 -k1,21330:32583029,14681903:9828823 -g1,21330:32583029,14681903 -) -(1,21331:6630773,15348081:25952256,404226,107478 -h1,21331:6630773,15348081:0,0,0 -g1,21331:9792230,15348081 -g1,21331:10424522,15348081 -g1,21331:12637542,15348081 -g1,21331:13269834,15348081 -k1,21331:13269834,15348081:0 -h1,21331:17063582,15348081:0,0,0 -k1,21331:32583029,15348081:15519447 -g1,21331:32583029,15348081 -) -] -) -g1,21333:32583029,15455559 -g1,21333:6630773,15455559 -g1,21333:6630773,15455559 -g1,21333:32583029,15455559 -g1,21333:32583029,15455559 -) -h1,21333:6630773,15652167:0,0,0 -(1,21336:6630773,18267715:25952256,555811,147783 -(1,21336:6630773,18267715:2899444,534184,12975 -g1,21336:6630773,18267715 -g1,21336:9530217,18267715 -) -g1,21336:12167976,18267715 -g1,21336:13822433,18267715 -g1,21336:16269875,18267715 -g1,21336:17837103,18267715 -g1,21336:20247780,18267715 -g1,21336:21178457,18267715 -k1,21336:32583029,18267715:9900062 -g1,21336:32583029,18267715 -) -(1,21339:6630773,19502419:25952256,513147,134348 -k1,21338:7338329,19502419:229799 -k1,21338:8587212,19502419:229798 -k1,21338:10797509,19502419:229799 -k1,21338:11678736,19502419:229799 -k1,21338:12656300,19502419:229798 -k1,21338:13978584,19502419:229799 -k1,21338:16888806,19502419:229799 -k1,21338:17933873,19502419:229799 -k1,21338:19229942,19502419:229798 -k1,21338:21797410,19502419:229799 -k1,21338:22383069,19502419:229799 -(1,21338:22383069,19502419:0,452978,122846 -r1,21378:23796470,19502419:1413401,575824,122846 -k1,21338:22383069,19502419:-1413401 -) -(1,21338:22383069,19502419:1413401,452978,122846 -k1,21338:22383069,19502419:3277 -h1,21338:23793193,19502419:0,411205,112570 -) -k1,21338:24026268,19502419:229798 -k1,21338:26389264,19502419:229799 -k1,21338:27487415,19502419:229799 -k1,21338:28821495,19502419:229798 -k1,21338:30943974,19502419:229799 -k1,21338:32583029,19502419:0 -) -(1,21339:6630773,20343907:25952256,505283,134348 -k1,21338:8153371,20343907:255132 -k1,21338:9179206,20343907:255132 -k1,21338:9849124,20343907:255075 -k1,21338:11097782,20343907:255132 -k1,21338:12544359,20343907:255132 -k1,21338:14190165,20343907:255132 -k1,21338:15077063,20343907:255131 -k1,21338:17115430,20343907:255132 -k1,21338:18238914,20343907:255132 -k1,21338:19947635,20343907:255132 -k1,21338:21400110,20343907:255132 -k1,21338:22674326,20343907:255131 -k1,21338:24740873,20343907:255132 -k1,21338:25989531,20343907:255132 -k1,21338:26896091,20343907:255132 -k1,21338:27507082,20343907:255131 -(1,21338:27507082,20343907:0,452978,122846 -r1,21378:28920483,20343907:1413401,575824,122846 -k1,21338:27507082,20343907:-1413401 -) -(1,21338:27507082,20343907:1413401,452978,122846 -k1,21338:27507082,20343907:3277 -h1,21338:28917206,20343907:0,411205,112570 -) -k1,21338:29175615,20343907:255132 -k1,21338:31563944,20343907:255132 -k1,21338:32583029,20343907:0 -) -(1,21339:6630773,21185395:25952256,513147,134348 -g1,21338:9783710,21185395 -g1,21338:10642231,21185395 -g1,21338:11860545,21185395 -g1,21338:13053300,21185395 -g1,21338:14244089,21185395 -g1,21338:16408743,21185395 -g1,21338:17764682,21185395 -g1,21338:18725439,21185395 -g1,21338:20081378,21185395 -g1,21338:20932035,21185395 -g1,21338:22150349,21185395 -g1,21338:23626875,21185395 -g1,21338:27140915,21185395 -g1,21338:28848783,21185395 -k1,21339:32583029,21185395:1821250 -g1,21339:32583029,21185395 -) -v1,21341:6630773,22375861:0,393216,0 -(1,21346:6630773,23357135:25952256,1374490,196608 -g1,21346:6630773,23357135 -g1,21346:6630773,23357135 -g1,21346:6434165,23357135 -(1,21346:6434165,23357135:0,1374490,196608 -r1,21378:32779637,23357135:26345472,1571098,196608 -k1,21346:6434165,23357135:-26345472 -) -(1,21346:6434165,23357135:26345472,1374490,196608 -[1,21346:6630773,23357135:25952256,1177882,0 -(1,21343:6630773,22583479:25952256,404226,101187 -(1,21342:6630773,22583479:0,0,0 -g1,21342:6630773,22583479 -g1,21342:6630773,22583479 -g1,21342:6303093,22583479 -(1,21342:6303093,22583479:0,0,0 -) -g1,21342:6630773,22583479 -) -g1,21343:9159939,22583479 -g1,21343:10108377,22583479 -g1,21343:14218272,22583479 -k1,21343:14218272,22583479:0 -h1,21343:18328165,22583479:0,0,0 -k1,21343:32583029,22583479:14254864 -g1,21343:32583029,22583479 -) -(1,21344:6630773,23249657:25952256,404226,107478 -h1,21344:6630773,23249657:0,0,0 -g1,21344:9792230,23249657 -g1,21344:10424522,23249657 -h1,21344:12637542,23249657:0,0,0 -k1,21344:32583030,23249657:19945488 -g1,21344:32583030,23249657 -) -] -) -g1,21346:32583029,23357135 -g1,21346:6630773,23357135 -g1,21346:6630773,23357135 -g1,21346:32583029,23357135 -g1,21346:32583029,23357135 -) -h1,21346:6630773,23553743:0,0,0 -v1,21350:6630773,25443807:0,393216,0 -(1,21351:6630773,28527292:25952256,3476701,0 -g1,21351:6630773,28527292 -g1,21351:6303093,28527292 -r1,21378:6401397,28527292:98304,3476701,0 -g1,21351:6600626,28527292 -g1,21351:6797234,28527292 -[1,21351:6797234,28527292:25785795,3476701,0 -(1,21351:6797234,25876345:25785795,825754,196608 -(1,21350:6797234,25876345:0,825754,196608 -r1,21378:7890375,25876345:1093141,1022362,196608 -k1,21350:6797234,25876345:-1093141 -) -(1,21350:6797234,25876345:1093141,825754,196608 -) -k1,21350:8076115,25876345:185740 -k1,21350:9802333,25876345:327680 -k1,21350:12016412,25876345:185740 -k1,21350:13221237,25876345:185740 -k1,21350:14903164,25876345:185740 -k1,21350:16259377,25876345:185740 -k1,21350:18253254,25876345:185739 -k1,21350:19386645,25876345:185740 -k1,21350:20591470,25876345:185740 -k1,21350:25027875,25876345:185740 -k1,21350:27774107,25876345:185740 -k1,21350:28575885,25876345:185740 -k1,21350:31040312,25876345:185740 -h1,21350:32409359,25876345:0,0,0 -k1,21350:32583029,25876345:0 -) -(1,21351:6797234,26717833:25785795,513147,134348 -k1,21350:8108458,26717833:239055 -k1,21350:9550754,26717833:239055 -k1,21350:11388887,26717833:239055 -k1,21350:15529956,26717833:239055 -k1,21350:16960456,26717833:239055 -k1,21350:19233093,26717833:239055 -k1,21350:21695130,26717833:239056 -k1,21350:22593477,26717833:239055 -k1,21350:25701698,26717833:239055 -k1,21350:27225259,26717833:239055 -k1,21350:28634787,26717833:239055 -k1,21350:30944780,26717833:239055 -k1,21350:31835263,26717833:239055 -k1,21350:32583029,26717833:0 -) -(1,21351:6797234,27559321:25785795,513147,134348 -k1,21350:8979676,27559321:205221 -k1,21350:12676001,27559321:205222 -k1,21350:14579260,27559321:205221 -k1,21350:18268375,27559321:205221 -k1,21350:18829456,27559321:205221 -k1,21350:21797021,27559321:205222 -k1,21350:23279539,27559321:205221 -k1,21350:24144052,27559321:205221 -k1,21350:25368359,27559321:205222 -k1,21350:27227053,27559321:205221 -k1,21350:28992031,27559321:205221 -k1,21350:29880137,27559321:205221 -k1,21350:30441219,27559321:205222 -k1,21350:31923737,27559321:205221 -k1,21350:32583029,27559321:0 -) -(1,21351:6797234,28400809:25785795,513147,126483 -g1,21350:7352323,28400809 -g1,21350:10313895,28400809 -g1,21350:11899210,28400809 -g1,21350:13666060,28400809 -g1,21350:14884374,28400809 -g1,21350:16737076,28400809 -k1,21351:32583029,28400809:14282919 -g1,21351:32583029,28400809 -) -] -g1,21351:32583029,28527292 -) -h1,21351:6630773,28527292:0,0,0 -(1,21353:6630773,30618552:25952256,564462,147783 -(1,21353:6630773,30618552:2899444,534184,12975 -g1,21353:6630773,30618552 -g1,21353:9530217,30618552 -) -g1,21353:11808970,30618552 -g1,21353:15475448,30618552 -g1,21353:16478936,30618552 -g1,21353:19712876,30618552 -k1,21353:32583029,30618552:10490475 -g1,21353:32583029,30618552 -) -(1,21356:6630773,31853256:25952256,505283,134348 -k1,21355:8666019,31853256:252011 -k1,21355:9937115,31853256:252011 -k1,21355:12245646,31853256:252011 -k1,21355:13366009,31853256:252011 -k1,21355:16554688,31853256:252011 -k1,21355:18336965,31853256:252011 -k1,21355:19240404,31853256:252011 -k1,21355:21540415,31853256:252011 -k1,21355:25195055,31853256:252011 -k1,21355:27145104,31853256:252011 -k1,21355:29084012,31853256:252011 -k1,21355:30204375,31853256:252011 -k1,21355:31931601,31853256:252011 -k1,21355:32583029,31853256:0 -) -(1,21356:6630773,32694744:25952256,513147,134348 -k1,21355:8876757,32694744:285147 -k1,21355:12187701,32694744:285147 -k1,21355:14800032,32694744:285148 -k1,21355:15744471,32694744:285147 -k1,21355:18063200,32694744:285147 -k1,21355:19625644,32694744:285147 -k1,21355:23838364,32694744:285147 -k1,21355:24774940,32694744:285148 -k1,21355:28075398,32694744:285147 -k1,21355:29557232,32694744:285147 -k1,21355:32583029,32694744:0 -) -(1,21356:6630773,33536232:25952256,513147,134348 -k1,21355:7707461,33536232:208336 -k1,21355:10050304,33536232:208335 -k1,21355:11733855,33536232:208336 -k1,21355:12593619,33536232:208336 -k1,21355:14812599,33536232:208335 -k1,21355:15376795,33536232:208336 -(1,21355:15376795,33536232:0,452978,122846 -r1,21378:16790196,33536232:1413401,575824,122846 -k1,21355:15376795,33536232:-1413401 -) -(1,21355:15376795,33536232:1413401,452978,122846 -k1,21355:15376795,33536232:3277 -h1,21355:16786919,33536232:0,411205,112570 -) -k1,21355:16998532,33536232:208336 -k1,21355:19340065,33536232:208336 -k1,21355:19904260,33536232:208335 -k1,21355:21106122,33536232:208336 -k1,21355:21973750,33536232:208336 -k1,21355:23459382,33536232:208335 -k1,21355:27768961,33536232:208336 -k1,21355:28660182,33536232:208336 -k1,21355:29224377,33536232:208335 -k1,21355:31305732,33536232:208336 -k1,21355:32583029,33536232:0 -) -(1,21356:6630773,34377720:25952256,513147,134348 -k1,21355:10551792,34377720:150077 -k1,21355:11898557,34377720:150078 -k1,21355:14760514,34377720:150077 -k1,21355:16003076,34377720:150077 -k1,21355:16684651,34377720:150078 -k1,21355:17486156,34377720:150077 -k1,21355:19089822,34377720:150077 -k1,21355:20932040,34377720:150078 -k1,21355:23677998,34377720:150077 -k1,21355:24444113,34377720:150077 -k1,21355:27085214,34377720:150078 -k1,21355:30942007,34377720:150077 -k1,21356:32583029,34377720:0 -) -(1,21356:6630773,35219208:25952256,505283,134348 -k1,21355:8439912,35219208:211371 -k1,21355:11652176,35219208:211370 -(1,21355:11652176,35219208:0,452978,122846 -r1,21378:13065577,35219208:1413401,575824,122846 -k1,21355:11652176,35219208:-1413401 -) -(1,21355:11652176,35219208:1413401,452978,122846 -k1,21355:11652176,35219208:3277 -h1,21355:13062300,35219208:0,411205,112570 -) -k1,21355:13276948,35219208:211371 -k1,21355:15778146,35219208:211370 -k1,21355:16672402,35219208:211371 -k1,21355:18945535,35219208:211370 -k1,21355:20353593,35219208:211371 -k1,21355:22806294,35219208:211370 -(1,21355:23013388,35219208:0,414482,115847 -r1,21378:24075077,35219208:1061689,530329,115847 -k1,21355:23013388,35219208:-1061689 -) -(1,21355:23013388,35219208:1061689,414482,115847 -k1,21355:23013388,35219208:3277 -h1,21355:24071800,35219208:0,411205,112570 -) -k1,21355:24493542,35219208:211371 -k1,21355:26716867,35219208:211370 -k1,21355:29355692,35219208:211371 -k1,21355:31725818,35219208:211370 -k1,21356:32583029,35219208:0 -) -(1,21356:6630773,36060696:25952256,513147,134348 -k1,21355:9579691,36060696:190508 -k1,21355:10421627,36060696:190508 -k1,21355:10967995,36060696:190508 -k1,21355:13275971,36060696:190508 -k1,21355:16335645,36060696:190508 -k1,21355:17153988,36060696:190508 -k1,21355:18547738,36060696:190509 -k1,21355:20278997,36060696:190508 -k1,21355:22170820,36060696:190508 -k1,21355:24234347,36060696:190508 -k1,21355:27497183,36060696:190508 -k1,21355:29892978,36060696:190508 -k1,21355:30845014,36060696:190508 -k1,21355:32583029,36060696:0 -) -(1,21356:6630773,36902184:25952256,505283,134348 -k1,21355:7449845,36902184:167644 -(1,21355:7449845,36902184:0,452978,122846 -r1,21378:11325229,36902184:3875384,575824,122846 -k1,21355:7449845,36902184:-3875384 -) -(1,21355:7449845,36902184:3875384,452978,122846 -k1,21355:7449845,36902184:3277 -h1,21355:11321952,36902184:0,411205,112570 -) -k1,21355:11492874,36902184:167645 -k1,21355:12792980,36902184:167644 -k1,21355:13708391,36902184:167645 -k1,21355:15994159,36902184:167644 -k1,21355:16847966,36902184:167645 -k1,21355:20087938,36902184:167644 -k1,21355:20907011,36902184:167645 -k1,21355:22093740,36902184:167644 -k1,21355:24378853,36902184:167645 -k1,21355:25646191,36902184:167644 -k1,21355:26465264,36902184:167645 -(1,21355:26465264,36902184:0,452978,122846 -r1,21378:29285513,36902184:2820249,575824,122846 -k1,21355:26465264,36902184:-2820249 -) -(1,21355:26465264,36902184:2820249,452978,122846 -k1,21355:26465264,36902184:3277 -h1,21355:29282236,36902184:0,411205,112570 -) -k1,21355:29626827,36902184:167644 -k1,21355:30540927,36902184:167645 -k1,21355:32583029,36902184:0 -) -(1,21356:6630773,37743672:25952256,513147,134348 -k1,21355:8173228,37743672:257949 -k1,21355:11574285,37743672:257950 -k1,21355:15234863,37743672:257949 -k1,21355:16254341,37743672:257950 -k1,21355:19300192,37743672:257949 -k1,21355:20089638,37743672:257949 -k1,21355:22977548,37743672:257950 -k1,21355:24611098,37743672:257949 -k1,21355:25816699,37743672:257950 -k1,21355:29685682,37743672:257949 -k1,21355:32583029,37743672:0 -) -(1,21356:6630773,38585160:25952256,513147,126483 -g1,21355:9588412,38585160 -g1,21355:10403679,38585160 -g1,21355:11621993,38585160 -g1,21355:14903380,38585160 -g1,21355:15761901,38585160 -g1,21355:16980215,38585160 -g1,21355:19821856,38585160 -k1,21356:32583029,38585160:9892007 -g1,21356:32583029,38585160 -) -v1,21358:6630773,39775626:0,393216,0 -(1,21365:6630773,42064091:25952256,2681681,196608 -g1,21365:6630773,42064091 -g1,21365:6630773,42064091 -g1,21365:6434165,42064091 -(1,21365:6434165,42064091:0,2681681,196608 -r1,21378:32779637,42064091:26345472,2878289,196608 -k1,21365:6434165,42064091:-26345472 -) -(1,21365:6434165,42064091:26345472,2681681,196608 -[1,21365:6630773,42064091:25952256,2485073,0 -(1,21360:6630773,39989536:25952256,410518,107478 -(1,21359:6630773,39989536:0,0,0 -g1,21359:6630773,39989536 -g1,21359:6630773,39989536 -g1,21359:6303093,39989536 -(1,21359:6303093,39989536:0,0,0 -) -g1,21359:6630773,39989536 -) -g1,21360:9792230,39989536 -g1,21360:10740668,39989536 -g1,21360:15166708,39989536 -h1,21360:15482854,39989536:0,0,0 -k1,21360:32583030,39989536:17100176 -g1,21360:32583030,39989536 -) -(1,21361:6630773,40655714:25952256,404226,107478 -h1,21361:6630773,40655714:0,0,0 -g1,21361:6946919,40655714 -g1,21361:7263065,40655714 -g1,21361:11056813,40655714 -h1,21361:11372959,40655714:0,0,0 -k1,21361:32583029,40655714:21210070 -g1,21361:32583029,40655714 -) -(1,21362:6630773,41321892:25952256,404226,76021 -h1,21362:6630773,41321892:0,0,0 -g1,21362:6946919,41321892 -g1,21362:7263065,41321892 -k1,21362:7263065,41321892:0 -h1,21362:10424521,41321892:0,0,0 -k1,21362:32583029,41321892:22158508 -g1,21362:32583029,41321892 -) -(1,21363:6630773,41988070:25952256,404226,76021 -h1,21363:6630773,41988070:0,0,0 -h1,21363:6946919,41988070:0,0,0 -k1,21363:32583029,41988070:25636110 -g1,21363:32583029,41988070 -) -] -) -g1,21365:32583029,42064091 -g1,21365:6630773,42064091 -g1,21365:6630773,42064091 -g1,21365:32583029,42064091 -g1,21365:32583029,42064091 -) -h1,21365:6630773,42260699:0,0,0 -(1,21369:6630773,43626475:25952256,513147,7863 -h1,21368:6630773,43626475:983040,0,0 -g1,21368:9698513,43626475 -g1,21368:11666559,43626475 -g1,21368:12613554,43626475 -g1,21368:14326009,43626475 -g1,21368:15211400,43626475 -k1,21369:32583029,43626475:14882572 -g1,21369:32583029,43626475 -) -v1,21371:6630773,44816941:0,393216,0 -] -(1,21378:32583029,45706769:0,0,0 -g1,21378:32583029,45706769 -) -) -] -(1,21378:6630773,47279633:25952256,0,0 -h1,21378:6630773,47279633:25952256,0,0 -) -] -(1,21378:4262630,4025873:0,0,0 -[1,21378:-473656,4025873:0,0,0 -(1,21378:-473656,-710413:0,0,0 -(1,21378:-473656,-710413:0,0,0 -g1,21378:-473656,-710413 -) -g1,21378:-473656,-710413 -) -] -) -] -!23389 -}387 -Input:3505:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3506:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3507:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3508:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3509:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3510:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3511:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!670 -{388 -[1,21437:4262630,47279633:28320399,43253760,0 -(1,21437:4262630,4025873:0,0,0 -[1,21437:-473656,4025873:0,0,0 -(1,21437:-473656,-710413:0,0,0 -(1,21437:-473656,-644877:0,0,0 -k1,21437:-473656,-644877:-65536 ) -(1,21437:-473656,4736287:0,0,0 -k1,21437:-473656,4736287:5209943 ) -g1,21437:-473656,-710413 +] +[1,21451:3078558,4812305:0,0,0 +(1,21451:3078558,49800853:0,16384,2228224 +g1,21451:29030814,49800853 +g1,21451:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,21451:36151628,51504789:16384,1179648,0 +) +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 +) +] +) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,21451:37855564,49800853:1179648,16384,0 +) +) +k1,21451:3078556,49800853:-34777008 +) +] +g1,21451:6630773,4812305 +g1,21451:6630773,4812305 +g1,21451:8592265,4812305 +g1,21451:11642310,4812305 +g1,21451:15396212,4812305 +k1,21451:31387652,4812305:15991440 +) +) +] +[1,21451:6630773,45706769:25952256,40108032,0 +(1,21451:6630773,45706769:25952256,40108032,0 +(1,21451:6630773,45706769:0,0,0 +g1,21451:6630773,45706769 +) +[1,21451:6630773,45706769:25952256,40108032,0 +v1,21400:6630773,6254097:0,393216,0 +(1,21400:6630773,6594780:25952256,733899,196608 +g1,21400:6630773,6594780 +g1,21400:6630773,6594780 +g1,21400:6434165,6594780 +(1,21400:6434165,6594780:0,733899,196608 +r1,21451:32779637,6594780:26345472,930507,196608 +k1,21400:6434165,6594780:-26345472 +) +(1,21400:6434165,6594780:26345472,733899,196608 +[1,21400:6630773,6594780:25952256,537291,0 +(1,21399:6630773,6481928:25952256,424439,112852 +(1,21397:6630773,6481928:0,0,0 +g1,21397:6630773,6481928 +g1,21397:6630773,6481928 +g1,21397:6303093,6481928 +(1,21397:6303093,6481928:0,0,0 +) +g1,21397:6630773,6481928 +) +g1,21399:7626635,6481928 +g1,21399:8954451,6481928 +g1,21399:11610083,6481928 +g1,21399:12273991,6481928 +h1,21399:13933761,6481928:0,0,0 +k1,21399:32583029,6481928:18649268 +g1,21399:32583029,6481928 +) +] +) +g1,21400:32583029,6594780 +g1,21400:6630773,6594780 +g1,21400:6630773,6594780 +g1,21400:32583029,6594780 +g1,21400:32583029,6594780 +) +h1,21400:6630773,6791388:0,0,0 +v1,21404:6630773,7656468:0,393216,0 +(1,21407:6630773,11523613:25952256,4260361,0 +g1,21407:6630773,11523613 +g1,21407:6237557,11523613 +r1,21451:6368629,11523613:131072,4260361,0 +g1,21407:6567858,11523613 +g1,21407:6764466,11523613 +[1,21407:6764466,11523613:25818563,4260361,0 +(1,21405:6764466,7928945:25818563,665693,196608 +(1,21404:6764466,7928945:0,665693,196608 +r1,21451:8010564,7928945:1246098,862301,196608 +k1,21404:6764466,7928945:-1246098 +) +(1,21404:6764466,7928945:1246098,665693,196608 +) +k1,21404:8321647,7928945:311083 +k1,21404:10047865,7928945:327680 +k1,21404:12167742,7928945:311083 +k1,21404:13497910,7928945:311083 +k1,21404:16113239,7928945:311083 +k1,21404:18453317,7928945:311083 +k1,21404:19242157,7928945:311083 +k1,21404:20723713,7928945:311083 +k1,21404:22026356,7928945:311083 +k1,21404:24829773,7928945:311083 +k1,21404:26534807,7928945:311083 +k1,21404:27299287,7928945:310971 +k1,21404:28293255,7928945:311083 +k1,21404:29887533,7928945:311083 +k1,21405:32583029,7928945:0 +) +(1,21405:6764466,8794025:25818563,513147,134348 +(1,21404:6764466,8794025:0,459977,115847 +r1,21451:9936426,8794025:3171960,575824,115847 +k1,21404:6764466,8794025:-3171960 +) +(1,21404:6764466,8794025:3171960,459977,115847 +k1,21404:6764466,8794025:3277 +h1,21404:9933149,8794025:0,411205,112570 +) +g1,21404:10135655,8794025 +g1,21404:11467346,8794025 +g1,21404:14000967,8794025 +g1,21404:14947962,8794025 +g1,21404:17639525,8794025 +g1,21404:18490182,8794025 +g1,21404:20033554,8794025 +g1,21404:23334602,8794025 +g1,21404:25317721,8794025 +g1,21404:26305348,8794025 +g1,21404:27892630,8794025 +k1,21405:32583029,8794025:3018576 +g1,21405:32583029,8794025 +) +(1,21407:6764466,9659105:25818563,513147,134348 +h1,21406:6764466,9659105:983040,0,0 +k1,21406:9257613,9659105:212494 +k1,21406:10864058,9659105:212494 +k1,21406:14102348,9659105:212493 +(1,21406:14102348,9659105:0,459977,115847 +r1,21451:16922597,9659105:2820249,575824,115847 +k1,21406:14102348,9659105:-2820249 +) +(1,21406:14102348,9659105:2820249,459977,115847 +k1,21406:14102348,9659105:3277 +h1,21406:16919320,9659105:0,411205,112570 +) +k1,21406:17308761,9659105:212494 +(1,21406:17308761,9659105:0,459977,115847 +r1,21451:20480721,9659105:3171960,575824,115847 +k1,21406:17308761,9659105:-3171960 +) +(1,21406:17308761,9659105:3171960,459977,115847 +k1,21406:17308761,9659105:3277 +h1,21406:20477444,9659105:0,411205,112570 +) +k1,21406:20866885,9659105:212494 +k1,21406:22270824,9659105:212494 +(1,21406:22270824,9659105:0,459977,115847 +r1,21451:25794496,9659105:3523672,575824,115847 +k1,21406:22270824,9659105:-3523672 +) +(1,21406:22270824,9659105:3523672,459977,115847 +k1,21406:22270824,9659105:3277 +h1,21406:25791219,9659105:0,411205,112570 +) +k1,21406:26180659,9659105:212493 +k1,21406:29820686,9659105:212494 +k1,21406:32583029,9659105:0 +) +(1,21407:6764466,10524185:25818563,513147,134348 +k1,21406:8653323,10524185:172469 +k1,21406:9485084,10524185:172469 +k1,21406:11220586,10524185:172468 +k1,21406:12660521,10524185:172469 +k1,21406:15807669,10524185:172469 +k1,21406:18176249,10524185:172469 +k1,21406:19008010,10524185:172469 +k1,21406:21942822,10524185:172469 +k1,21406:24433954,10524185:172468 +k1,21406:26000374,10524185:172469 +k1,21406:28935186,10524185:172469 +k1,21406:31923737,10524185:172469 +k1,21406:32583029,10524185:0 +) +(1,21407:6764466,11389265:25818563,505283,134348 +g1,21406:8921911,11389265 +k1,21407:32583030,11389265:22549628 +g1,21407:32583030,11389265 +) +] +g1,21407:32583029,11523613 +) +h1,21407:6630773,11523613:0,0,0 +(1,21410:6630773,12388693:25952256,513147,126483 +h1,21409:6630773,12388693:983040,0,0 +k1,21409:8324485,12388693:240779 +k1,21409:9096762,12388693:240780 +k1,21409:10623357,12388693:240779 +k1,21409:13494096,12388693:240779 +k1,21409:14386303,12388693:240779 +k1,21409:17837036,12388693:240780 +k1,21409:19096900,12388693:240779 +k1,21409:21018022,12388693:240779 +k1,21409:21918093,12388693:240779 +k1,21409:25000514,12388693:240780 +k1,21409:26097849,12388693:240779 +k1,21409:26954666,12388693:240779 +k1,21409:28580221,12388693:240779 +k1,21409:29840086,12388693:240780 +k1,21409:31923737,12388693:240779 +k1,21409:32583029,12388693:0 +) +(1,21410:6630773,13253773:25952256,513147,134348 +k1,21409:10291852,13253773:183739 +k1,21409:11743057,13253773:183739 +k1,21409:12282656,13253773:183739 +k1,21409:13749590,13253773:183739 +k1,21409:17546984,13253773:183739 +k1,21409:20402627,13253773:183740 +k1,21409:21395736,13253773:183739 +k1,21409:22598560,13253773:183739 +k1,21409:23577906,13253773:183739 +k1,21409:27796041,13253773:183739 +k1,21409:28639072,13253773:183739 +k1,21409:32583029,13253773:0 +) +(1,21410:6630773,14118853:25952256,513147,134348 +k1,21409:8372337,14118853:223095 +k1,21409:12365719,14118853:223096 +k1,21409:13580374,14118853:223095 +k1,21409:17108450,14118853:223095 +k1,21409:18844772,14118853:223096 +k1,21409:19754029,14118853:223095 +k1,21409:21821307,14118853:223095 +k1,21409:22660441,14118853:223096 +k1,21409:24664805,14118853:223095 +k1,21409:26268744,14118853:223095 +k1,21409:27023337,14118853:223096 +k1,21409:30024503,14118853:223095 +k1,21409:32583029,14118853:0 +) +(1,21410:6630773,14983933:25952256,513147,134348 +g1,21409:7922487,14983933 +g1,21409:8781008,14983933 +g1,21409:11392617,14983933 +g1,21409:12783291,14983933 +k1,21410:32583029,14983933:15975713 +g1,21410:32583029,14983933 +) +(1,21412:6630773,15849013:25952256,505283,126483 +h1,21411:6630773,15849013:983040,0,0 +k1,21411:8721806,15849013:154444 +k1,21411:9968736,15849013:154445 +(1,21411:9968736,15849013:0,452978,115847 +r1,21451:12788985,15849013:2820249,568825,115847 +k1,21411:9968736,15849013:-2820249 +) +(1,21411:9968736,15849013:2820249,452978,115847 +k1,21411:9968736,15849013:3277 +h1,21411:12785708,15849013:0,411205,112570 +) +k1,21411:12943429,15849013:154444 +k1,21411:13749302,15849013:154445 +k1,21411:17113699,15849013:154444 +k1,21411:20109784,15849013:154444 +k1,21411:20947114,15849013:154445 +k1,21411:24871844,15849013:154444 +k1,21411:27820089,15849013:154445 +k1,21411:28590571,15849013:154444 +(1,21411:28590571,15849013:0,452978,115847 +r1,21451:30003973,15849013:1413402,568825,115847 +k1,21411:28590571,15849013:-1413402 +) +(1,21411:28590571,15849013:1413402,452978,115847 +g1,21411:29648984,15849013 +h1,21411:30000696,15849013:0,411205,112570 +) +k1,21411:30158418,15849013:154445 +k1,21411:31074390,15849013:154444 +k1,21411:32583029,15849013:0 +) +(1,21412:6630773,16714093:25952256,505283,134348 +k1,21411:8721964,16714093:237177 +k1,21411:9705595,16714093:237176 +k1,21411:11811203,16714093:237177 +k1,21411:13332886,16714093:237177 +k1,21411:14589147,16714093:237176 +k1,21411:17898652,16714093:237177 +k1,21411:18787257,16714093:237177 +(1,21411:18787257,16714093:0,452978,115847 +r1,21451:21607506,16714093:2820249,568825,115847 +k1,21411:18787257,16714093:-2820249 +) +(1,21411:18787257,16714093:2820249,452978,115847 +k1,21411:18787257,16714093:3277 +h1,21411:21604229,16714093:0,411205,112570 +) +k1,21411:21844682,16714093:237176 +k1,21411:23942426,16714093:237177 +k1,21411:24831030,16714093:237176 +k1,21411:25815973,16714093:237177 +k1,21411:28339701,16714093:237177 +k1,21411:29263039,16714093:237176 +k1,21411:30270919,16714093:237177 +k1,21412:32583029,16714093:0 +) +(1,21412:6630773,17579173:25952256,505283,126483 +k1,21411:8390551,17579173:245241 +k1,21411:9251830,17579173:245241 +k1,21411:10700312,17579173:245241 +k1,21411:13606970,17579173:245241 +k1,21411:14720563,17579173:245241 +k1,21411:16496070,17579173:245241 +k1,21411:17392739,17579173:245241 +k1,21411:18730466,17579173:245242 +k1,21411:19331567,17579173:245241 +k1,21411:21181785,17579173:245241 +(1,21411:21181785,17579173:0,414482,115847 +r1,21451:21540051,17579173:358266,530329,115847 +k1,21411:21181785,17579173:-358266 +) +(1,21411:21181785,17579173:358266,414482,115847 +k1,21411:21181785,17579173:3277 +h1,21411:21536774,17579173:0,411205,112570 +) +k1,21411:21958962,17579173:245241 +k1,21411:22855631,17579173:245241 +k1,21411:24939812,17579173:245241 +k1,21411:25540913,17579173:245241 +k1,21411:27573976,17579173:245241 +k1,21411:30454420,17579173:245241 +k1,21411:32583029,17579173:0 +) +(1,21412:6630773,18444253:25952256,513147,126483 +k1,21411:11003772,18444253:179350 +k1,21411:11649083,18444253:179350 +k1,21411:12847518,18444253:179350 +k1,21411:16797155,18444253:179351 +k1,21411:19314174,18444253:179350 +k1,21411:22508835,18444253:179350 +k1,21411:24384912,18444253:179350 +k1,21411:25696724,18444253:179350 +k1,21411:26623840,18444253:179350 +k1,21411:29641555,18444253:179351 +k1,21411:30768556,18444253:179350 +k1,21411:31563944,18444253:179350 +k1,21411:32583029,18444253:0 +) +(1,21412:6630773,19309333:25952256,505283,126483 +g1,21411:10887336,19309333 +g1,21411:13038227,19309333 +g1,21411:14679903,19309333 +g1,21411:15495170,19309333 +(1,21411:15495170,19309333:0,452978,115847 +r1,21451:16908571,19309333:1413401,568825,115847 +k1,21411:15495170,19309333:-1413401 +) +(1,21411:15495170,19309333:1413401,452978,115847 +k1,21411:15495170,19309333:3277 +h1,21411:16905294,19309333:0,411205,112570 +) +g1,21411:17281470,19309333 +g1,21411:19551637,19309333 +g1,21411:21760855,19309333 +g1,21411:22315944,19309333 +g1,21411:23614867,19309333 +g1,21411:24465524,19309333 +(1,21411:24465524,19309333:0,452978,115847 +r1,21451:26230637,19309333:1765113,568825,115847 +k1,21411:24465524,19309333:-1765113 +) +(1,21411:24465524,19309333:1765113,452978,115847 +k1,21411:24465524,19309333:3277 +h1,21411:26227360,19309333:0,411205,112570 +) +k1,21412:32583029,19309333:6178722 +g1,21412:32583029,19309333 +) +v1,21414:6630773,19994188:0,393216,0 +(1,21422:6630773,23041261:25952256,3440289,196608 +g1,21422:6630773,23041261 +g1,21422:6630773,23041261 +g1,21422:6434165,23041261 +(1,21422:6434165,23041261:0,3440289,196608 +r1,21451:32779637,23041261:26345472,3636897,196608 +k1,21422:6434165,23041261:-26345472 +) +(1,21422:6434165,23041261:26345472,3440289,196608 +[1,21422:6630773,23041261:25952256,3243681,0 +(1,21416:6630773,20222019:25952256,424439,112852 +(1,21415:6630773,20222019:0,0,0 +g1,21415:6630773,20222019 +g1,21415:6630773,20222019 +g1,21415:6303093,20222019 +(1,21415:6303093,20222019:0,0,0 +) +g1,21415:6630773,20222019 +) +k1,21416:6630773,20222019:0 +g1,21416:10946175,20222019 +g1,21416:14597669,20222019 +g1,21416:16921347,20222019 +h1,21416:17253301,20222019:0,0,0 +k1,21416:32583029,20222019:15329728 +g1,21416:32583029,20222019 +) +(1,21417:6630773,20906874:25952256,424439,112852 +h1,21417:6630773,20906874:0,0,0 +g1,21417:6962727,20906874 +g1,21417:7294681,20906874 +g1,21417:11610082,20906874 +h1,21417:11942036,20906874:0,0,0 +k1,21417:32583028,20906874:20640992 +g1,21417:32583028,20906874 +) +(1,21418:6630773,21591729:25952256,424439,106246 +h1,21418:6630773,21591729:0,0,0 +g1,21418:6962727,21591729 +g1,21418:7294681,21591729 +g1,21418:10946175,21591729 +g1,21418:11610083,21591729 +g1,21418:17585255,21591729 +k1,21418:17585255,21591729:0 +h1,21418:23892380,21591729:0,0,0 +k1,21418:32583029,21591729:8690649 +g1,21418:32583029,21591729 +) +(1,21419:6630773,22276584:25952256,424439,106246 +h1,21419:6630773,22276584:0,0,0 +g1,21419:6962727,22276584 +g1,21419:7294681,22276584 +g1,21419:7626635,22276584 +g1,21419:7958589,22276584 +g1,21419:8290543,22276584 +g1,21419:8622497,22276584 +g1,21419:8954451,22276584 +g1,21419:11942036,22276584 +g1,21419:12605944,22276584 +g1,21419:16921346,22276584 +k1,21419:16921346,22276584:0 +h1,21419:25220195,22276584:0,0,0 +k1,21419:32583029,22276584:7362834 +g1,21419:32583029,22276584 +) +(1,21420:6630773,22961439:25952256,424439,79822 +h1,21420:6630773,22961439:0,0,0 +g1,21420:6962727,22961439 +g1,21420:7294681,22961439 +g1,21420:7626635,22961439 +g1,21420:7958589,22961439 +g1,21420:8290543,22961439 +g1,21420:8622497,22961439 +g1,21420:8954451,22961439 +h1,21420:9286405,22961439:0,0,0 +k1,21420:32583029,22961439:23296624 +g1,21420:32583029,22961439 +) +] +) +g1,21422:32583029,23041261 +g1,21422:6630773,23041261 +g1,21422:6630773,23041261 +g1,21422:32583029,23041261 +g1,21422:32583029,23041261 +) +h1,21422:6630773,23237869:0,0,0 +(1,21425:6630773,32387071:25952256,9083666,0 +k1,21425:10523651,32387071:3892878 +h1,21424:10523651,32387071:0,0,0 +(1,21424:10523651,32387071:18166500,9083666,0 +(1,21424:10523651,32387071:18167376,9083688,0 +(1,21424:10523651,32387071:18167376,9083688,0 +(1,21424:10523651,32387071:0,9083688,0 +(1,21424:10523651,32387071:0,14208860,0 +(1,21424:10523651,32387071:28417720,14208860,0 +) +k1,21424:10523651,32387071:-28417720 +) +) +g1,21424:28691027,32387071 +) +) +) +g1,21425:28690151,32387071 +k1,21425:32583029,32387071:3892878 +) +(1,21432:6630773,33252151:25952256,513147,126483 +h1,21431:6630773,33252151:983040,0,0 +k1,21431:8566755,33252151:325107 +k1,21431:9910947,33252151:325107 +k1,21431:11603135,33252151:325107 +k1,21431:12595398,33252151:325107 +(1,21431:12595398,33252151:0,452978,115847 +r1,21451:16822494,33252151:4227096,568825,115847 +k1,21431:12595398,33252151:-4227096 +) +(1,21431:12595398,33252151:4227096,452978,115847 +k1,21431:12595398,33252151:3277 +h1,21431:16819217,33252151:0,411205,112570 +) +k1,21431:17147601,33252151:325107 +k1,21431:18341060,33252151:325107 +k1,21431:20819025,33252151:325107 +k1,21431:22692748,33252151:325107 +k1,21431:23549352,33252151:325107 +k1,21431:24525887,33252151:325107 +k1,21431:25598760,33252151:325107 +k1,21431:27437093,33252151:325107 +k1,21431:28709851,33252151:325107 +k1,21431:32583029,33252151:0 +) +(1,21432:6630773,34117231:25952256,505283,134348 +g1,21431:9388528,34117231 +g1,21431:9943617,34117231 +g1,21431:12301602,34117231 +k1,21432:32583030,34117231:19114232 +g1,21432:32583030,34117231 +) +v1,21434:6630773,34802086:0,393216,0 +(1,21442:6630773,37849159:25952256,3440289,196608 +g1,21442:6630773,37849159 +g1,21442:6630773,37849159 +g1,21442:6434165,37849159 +(1,21442:6434165,37849159:0,3440289,196608 +r1,21451:32779637,37849159:26345472,3636897,196608 +k1,21442:6434165,37849159:-26345472 +) +(1,21442:6434165,37849159:26345472,3440289,196608 +[1,21442:6630773,37849159:25952256,3243681,0 +(1,21436:6630773,35029917:25952256,424439,112852 +(1,21435:6630773,35029917:0,0,0 +g1,21435:6630773,35029917 +g1,21435:6630773,35029917 +g1,21435:6303093,35029917 +(1,21435:6303093,35029917:0,0,0 +) +g1,21435:6630773,35029917 +) +k1,21436:6630773,35029917:0 +g1,21436:10946175,35029917 +g1,21436:14597669,35029917 +g1,21436:16921347,35029917 +h1,21436:17253301,35029917:0,0,0 +k1,21436:32583029,35029917:15329728 +g1,21436:32583029,35029917 +) +(1,21437:6630773,35714772:25952256,424439,112852 +h1,21437:6630773,35714772:0,0,0 +g1,21437:6962727,35714772 +g1,21437:7294681,35714772 +g1,21437:11610082,35714772 +h1,21437:11942036,35714772:0,0,0 +k1,21437:32583028,35714772:20640992 +g1,21437:32583028,35714772 +) +(1,21438:6630773,36399627:25952256,424439,106246 +h1,21438:6630773,36399627:0,0,0 +g1,21438:6962727,36399627 +g1,21438:7294681,36399627 +g1,21438:10946175,36399627 +g1,21438:11610083,36399627 +g1,21438:18913070,36399627 +g1,21438:20240886,36399627 +g1,21438:22896518,36399627 +g1,21438:23560426,36399627 +k1,21438:23560426,36399627:0 +h1,21438:29203643,36399627:0,0,0 +k1,21438:32583029,36399627:3379386 +g1,21438:32583029,36399627 +) +(1,21439:6630773,37084482:25952256,424439,106246 +h1,21439:6630773,37084482:0,0,0 +g1,21439:6962727,37084482 +g1,21439:7294681,37084482 +g1,21439:7626635,37084482 +g1,21439:7958589,37084482 +g1,21439:8290543,37084482 +g1,21439:8622497,37084482 +g1,21439:8954451,37084482 +g1,21439:11942036,37084482 +g1,21439:12605944,37084482 +g1,21439:18249161,37084482 +g1,21439:20240885,37084482 +g1,21439:23560425,37084482 +g1,21439:24224333,37084482 +k1,21439:24224333,37084482:0 +h1,21439:31859274,37084482:0,0,0 +k1,21439:32583029,37084482:723755 +g1,21439:32583029,37084482 +) +(1,21440:6630773,37769337:25952256,424439,79822 +h1,21440:6630773,37769337:0,0,0 +g1,21440:6962727,37769337 +g1,21440:7294681,37769337 +g1,21440:7626635,37769337 +g1,21440:7958589,37769337 +g1,21440:8290543,37769337 +g1,21440:8622497,37769337 +g1,21440:8954451,37769337 +h1,21440:9286405,37769337:0,0,0 +k1,21440:32583029,37769337:23296624 +g1,21440:32583029,37769337 +) +] +) +g1,21442:32583029,37849159 +g1,21442:6630773,37849159 +g1,21442:6630773,37849159 +g1,21442:32583029,37849159 +g1,21442:32583029,37849159 +) +h1,21442:6630773,38045767:0,0,0 +] +(1,21451:32583029,45706769:0,0,0 +g1,21451:32583029,45706769 +) +) +] +(1,21451:6630773,47279633:25952256,0,0 +h1,21451:6630773,47279633:25952256,0,0 +) +] +(1,21451:4262630,4025873:0,0,0 +[1,21451:-473656,4025873:0,0,0 +(1,21451:-473656,-710413:0,0,0 +(1,21451:-473656,-710413:0,0,0 +g1,21451:-473656,-710413 +) +g1,21451:-473656,-710413 +) +] +) +] +!20344 +}368 +Input:3528:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3529:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3530:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3531:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!388 +{369 +[1,21494:4262630,47279633:28320399,43253760,0 +(1,21494:4262630,4025873:0,0,0 +[1,21494:-473656,4025873:0,0,0 +(1,21494:-473656,-710413:0,0,0 +(1,21494:-473656,-644877:0,0,0 +k1,21494:-473656,-644877:-65536 +) +(1,21494:-473656,4736287:0,0,0 +k1,21494:-473656,4736287:5209943 +) +g1,21494:-473656,-710413 +) +] +) +[1,21494:6630773,47279633:25952256,43253760,0 +[1,21494:6630773,4812305:25952256,786432,0 +(1,21494:6630773,4812305:25952256,513147,126483 +(1,21494:6630773,4812305:25952256,513147,126483 +g1,21494:3078558,4812305 +[1,21494:3078558,4812305:0,0,0 +(1,21494:3078558,2439708:0,1703936,0 +k1,21494:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,21494:2537886,2439708:1179648,16384,0 +) +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,21494:3078558,1915420:16384,1179648,0 +) +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) -[1,21437:6630773,47279633:25952256,43253760,0 -[1,21437:6630773,4812305:25952256,786432,0 -(1,21437:6630773,4812305:25952256,513147,134348 -(1,21437:6630773,4812305:25952256,513147,134348 -g1,21437:3078558,4812305 -[1,21437:3078558,4812305:0,0,0 -(1,21437:3078558,2439708:0,1703936,0 -k1,21437:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,21437:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,21437:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +] +[1,21494:3078558,4812305:0,0,0 +(1,21494:3078558,2439708:0,1703936,0 +g1,21494:29030814,2439708 +g1,21494:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,21494:36151628,1915420:16384,1179648,0 +) +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,21494:37855564,2439708:1179648,16384,0 ) ) +k1,21494:3078556,2439708:-34777008 +) ] -[1,21437:3078558,4812305:0,0,0 -(1,21437:3078558,2439708:0,1703936,0 -g1,21437:29030814,2439708 -g1,21437:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,21437:36151628,1915420:16384,1179648,0 +[1,21494:3078558,4812305:0,0,0 +(1,21494:3078558,49800853:0,16384,2228224 +k1,21494:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,21494:2537886,49800853:1179648,16384,0 +) +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,21494:3078558,51504789:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,21437:37855564,2439708:1179648,16384,0 ) ) -k1,21437:3078556,2439708:-34777008 +] +[1,21494:3078558,4812305:0,0,0 +(1,21494:3078558,49800853:0,16384,2228224 +g1,21494:29030814,49800853 +g1,21494:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,21494:36151628,51504789:16384,1179648,0 +) +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] -[1,21437:3078558,4812305:0,0,0 -(1,21437:3078558,49800853:0,16384,2228224 -k1,21437:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,21437:2537886,49800853:1179648,16384,0 ) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,21437:3078558,51504789:16384,1179648,0 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,21494:37855564,49800853:1179648,16384,0 ) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 ) -] +k1,21494:3078556,49800853:-34777008 ) +] +g1,21494:6630773,4812305 +k1,21494:21350816,4812305:13524666 +g1,21494:21999622,4812305 +g1,21494:25611966,4812305 +g1,21494:28956923,4812305 +g1,21494:29772190,4812305 +) +) +] +[1,21494:6630773,45706769:25952256,40108032,0 +(1,21494:6630773,45706769:25952256,40108032,0 +(1,21494:6630773,45706769:0,0,0 +g1,21494:6630773,45706769 ) +[1,21494:6630773,45706769:25952256,40108032,0 +(1,21445:6630773,14682403:25952256,9083666,0 +k1,21445:10523651,14682403:3892878 +h1,21444:10523651,14682403:0,0,0 +(1,21444:10523651,14682403:18166500,9083666,0 +(1,21444:10523651,14682403:18167376,9083688,0 +(1,21444:10523651,14682403:18167376,9083688,0 +(1,21444:10523651,14682403:0,9083688,0 +(1,21444:10523651,14682403:0,14208860,0 +(1,21444:10523651,14682403:28417720,14208860,0 ) -] -[1,21437:3078558,4812305:0,0,0 -(1,21437:3078558,49800853:0,16384,2228224 -g1,21437:29030814,49800853 -g1,21437:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,21437:36151628,51504789:16384,1179648,0 -) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 -) -] -) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,21437:37855564,49800853:1179648,16384,0 -) -) -k1,21437:3078556,49800853:-34777008 -) -] -g1,21437:6630773,4812305 -g1,21437:6630773,4812305 -g1,21437:10354528,4812305 -g1,21437:12610277,4812305 -g1,21437:14041583,4812305 -k1,21437:31387651,4812305:17346068 -) -) -] -[1,21437:6630773,45706769:25952256,40108032,0 -(1,21437:6630773,45706769:25952256,40108032,0 -(1,21437:6630773,45706769:0,0,0 -g1,21437:6630773,45706769 -) -[1,21437:6630773,45706769:25952256,40108032,0 -v1,21378:6630773,6254097:0,393216,0 -(1,21378:6630773,8567727:25952256,2706846,196608 -g1,21378:6630773,8567727 -g1,21378:6630773,8567727 -g1,21378:6434165,8567727 -(1,21378:6434165,8567727:0,2706846,196608 -r1,21437:32779637,8567727:26345472,2903454,196608 -k1,21378:6434165,8567727:-26345472 -) -(1,21378:6434165,8567727:26345472,2706846,196608 -[1,21378:6630773,8567727:25952256,2510238,0 -(1,21373:6630773,6461715:25952256,404226,107478 -(1,21372:6630773,6461715:0,0,0 -g1,21372:6630773,6461715 -g1,21372:6630773,6461715 -g1,21372:6303093,6461715 -(1,21372:6303093,6461715:0,0,0 -) -g1,21372:6630773,6461715 -) -k1,21373:6630773,6461715:0 -g1,21373:11372959,6461715 -g1,21373:12005251,6461715 -k1,21373:12005251,6461715:0 -h1,21373:14218271,6461715:0,0,0 -k1,21373:32583029,6461715:18364758 -g1,21373:32583029,6461715 -) -(1,21374:6630773,7127893:25952256,404226,107478 -h1,21374:6630773,7127893:0,0,0 -g1,21374:6946919,7127893 -g1,21374:7263065,7127893 -g1,21374:7579211,7127893 -g1,21374:7895357,7127893 -g1,21374:8211503,7127893 -g1,21374:8527649,7127893 -g1,21374:8843795,7127893 -g1,21374:9159941,7127893 -g1,21374:9476087,7127893 -g1,21374:9792233,7127893 -g1,21374:11689108,7127893 -g1,21374:12321400,7127893 -g1,21374:14218275,7127893 -g1,21374:14850567,7127893 -g1,21374:15482859,7127893 -k1,21374:15482859,7127893:0 -h1,21374:16747442,7127893:0,0,0 -k1,21374:32583029,7127893:15835587 -g1,21374:32583029,7127893 -) -(1,21375:6630773,7794071:25952256,410518,101187 -h1,21375:6630773,7794071:0,0,0 -g1,21375:6946919,7794071 -g1,21375:7263065,7794071 -g1,21375:7579211,7794071 -g1,21375:7895357,7794071 -g1,21375:8211503,7794071 -g1,21375:8527649,7794071 -g1,21375:8843795,7794071 -g1,21375:9159941,7794071 -g1,21375:9476087,7794071 -g1,21375:9792233,7794071 -g1,21375:11689107,7794071 -g1,21375:12321399,7794071 -g1,21375:16747439,7794071 -h1,21375:17063585,7794071:0,0,0 -k1,21375:32583029,7794071:15519444 -g1,21375:32583029,7794071 -) -(1,21376:6630773,8460249:25952256,404226,107478 -h1,21376:6630773,8460249:0,0,0 -g1,21376:6946919,8460249 -g1,21376:7263065,8460249 -g1,21376:7579211,8460249 -g1,21376:7895357,8460249 -g1,21376:8211503,8460249 -g1,21376:8527649,8460249 -g1,21376:8843795,8460249 -g1,21376:9159941,8460249 -g1,21376:9476087,8460249 -g1,21376:9792233,8460249 -k1,21376:9792233,8460249:0 -h1,21376:13585981,8460249:0,0,0 -k1,21376:32583029,8460249:18997048 -g1,21376:32583029,8460249 -) -] -) -g1,21378:32583029,8567727 -g1,21378:6630773,8567727 -g1,21378:6630773,8567727 -g1,21378:32583029,8567727 -g1,21378:32583029,8567727 -) -h1,21378:6630773,8764335:0,0,0 -(1,21384:6630773,12005162:25952256,32768,229376 -(1,21384:6630773,12005162:0,32768,229376 -(1,21384:6630773,12005162:5505024,32768,229376 -r1,21437:12135797,12005162:5505024,262144,229376 -) -k1,21384:6630773,12005162:-5505024 -) -(1,21384:6630773,12005162:25952256,32768,0 -r1,21437:32583029,12005162:25952256,32768,0 -) -) -(1,21384:6630773,13609490:25952256,615776,161218 -(1,21384:6630773,13609490:2464678,582746,14155 -g1,21384:6630773,13609490 -g1,21384:9095451,13609490 -) -g1,21384:13678777,13609490 -g1,21384:16562623,13609490 -k1,21384:32583029,13609490:14382268 -g1,21384:32583029,13609490 -) -(1,21390:6630773,14844194:25952256,513147,134348 -k1,21389:7359767,14844194:259101 -k1,21389:8150365,14844194:259101 -k1,21389:11213097,14844194:259102 -k1,21389:13170236,14844194:259101 -k1,21389:15164730,14844194:259101 -k1,21389:18021678,14844194:259101 -k1,21389:18932208,14844194:259102 -k1,21389:21605655,14844194:259101 -k1,21389:23937660,14844194:259101 -k1,21389:25215846,14844194:259101 -k1,21389:28538100,14844194:259101 -k1,21389:30074499,14844194:259102 -k1,21389:30985028,14844194:259101 -k1,21389:31599989,14844194:259101 -k1,21389:32583029,14844194:0 -) -(1,21390:6630773,15685682:25952256,513147,134348 -k1,21389:8538025,15685682:171859 -k1,21389:9065743,15685682:171858 -k1,21389:11208270,15685682:171859 -k1,21389:14314830,15685682:171858 -k1,21389:14952650,15685682:171859 -k1,21389:16143593,15685682:171858 -k1,21389:17298492,15685682:171859 -k1,21389:18602812,15685682:171858 -k1,21389:20249886,15685682:171859 -k1,21389:21073172,15685682:171858 -k1,21389:21992797,15685682:171859 -k1,21389:25317592,15685682:171858 -k1,21389:27191421,15685682:171859 -k1,21389:27976041,15685682:171858 -k1,21389:28503760,15685682:171859 -k1,21389:30129207,15685682:171858 -k1,21389:31900144,15685682:171859 -k1,21389:32583029,15685682:0 -) -(1,21390:6630773,16527170:25952256,513147,126483 -k1,21389:7198096,16527170:211463 -k1,21389:9254397,16527170:211463 -k1,21389:10125151,16527170:211462 -k1,21389:11944212,16527170:211463 -k1,21389:13685941,16527170:211463 -k1,21389:14548832,16527170:211463 -k1,21389:15508061,16527170:211463 -k1,21389:18760394,16527170:211462 -k1,21389:20365808,16527170:211463 -k1,21389:23858003,16527170:211463 -k1,21389:26423519,16527170:211463 -k1,21389:27093079,16527170:211463 -k1,21389:27836038,16527170:211462 -k1,21389:29382469,16527170:211463 -k1,21389:30245360,16527170:211463 -k1,21389:32583029,16527170:0 -) -(1,21390:6630773,17368658:25952256,505283,126483 -g1,21389:7849087,17368658 -g1,21389:11538108,17368658 -g1,21389:12388765,17368658 -g1,21389:14660898,17368658 -g1,21389:15879212,17368658 -g1,21389:17355738,17368658 -g1,21389:18171005,17368658 -g1,21389:19389319,17368658 -k1,21390:32583029,17368658:11188964 -g1,21390:32583029,17368658 -) -(1,21392:6630773,18210146:25952256,513147,134348 -h1,21391:6630773,18210146:983040,0,0 -k1,21391:8511858,18210146:270210 -k1,21391:9370581,18210146:270210 -k1,21391:10954133,18210146:270210 -k1,21391:12215902,18210146:270209 -k1,21391:14836233,18210146:270210 -k1,21391:15867971,18210146:270210 -k1,21391:18710469,18210146:270210 -k1,21391:19632107,18210146:270210 -k1,21391:22664660,18210146:270210 -k1,21391:25446209,18210146:270209 -k1,21391:28243487,18210146:270210 -k1,21391:29045194,18210146:270210 -k1,21391:31931601,18210146:270210 -k1,21391:32583029,18210146:0 -) -(1,21392:6630773,19051634:25952256,505283,126483 -k1,21391:7222290,19051634:235657 -k1,21391:10368400,19051634:235656 -k1,21391:12181508,19051634:235656 -k1,21391:14424533,19051634:235657 -k1,21391:16153756,19051634:235657 -k1,21391:16745272,19051634:235656 -k1,21391:19454257,19051634:235656 -k1,21391:20305952,19051634:235657 -k1,21391:23139456,19051634:235657 -k1,21391:25092155,19051634:235656 -k1,21391:27665481,19051634:235657 -k1,21391:30521266,19051634:235656 -k1,21391:32583029,19051634:0 -) -(1,21392:6630773,19893122:25952256,513147,126483 -k1,21391:9228838,19893122:265639 -k1,21391:11526748,19893122:265639 -k1,21391:13279399,19893122:265639 -k1,21391:15965283,19893122:265639 -k1,21391:18602670,19893122:265639 -k1,21391:19677680,19893122:265640 -k1,21391:22350456,19893122:265639 -k1,21391:24448482,19893122:265639 -k1,21391:25705681,19893122:265639 -k1,21391:27438016,19893122:265639 -k1,21391:30041324,19893122:265639 -k1,21391:31591469,19893122:265639 -k1,21391:32583029,19893122:0 -) -(1,21392:6630773,20734610:25952256,513147,134348 -g1,21391:8151863,20734610 -g1,21391:9018248,20734610 -g1,21391:9632320,20734610 -g1,21391:11022994,20734610 -g1,21391:14449216,20734610 -g1,21391:16135457,20734610 -g1,21391:18716264,20734610 -g1,21391:19531531,20734610 -g1,21391:23460414,20734610 -k1,21392:32583029,20734610:6038491 -g1,21392:32583029,20734610 -) -(1,21394:6630773,21576098:25952256,513147,134348 -h1,21393:6630773,21576098:983040,0,0 -k1,21393:10604985,21576098:296987 -k1,21393:11257833,21576098:296988 -k1,21393:12537860,21576098:296987 -k1,21393:15442525,21576098:296987 -k1,21393:18307213,21576098:296987 -k1,21393:18960061,21576098:296988 -k1,21393:21438086,21576098:296987 -k1,21393:24307361,21576098:296987 -k1,21393:25795793,21576098:296987 -k1,21393:28346564,21576098:296988 -k1,21393:29662636,21576098:296987 -k1,21393:31966991,21576098:296987 -k1,21393:32583029,21576098:0 -) -(1,21394:6630773,22417586:25952256,513147,126483 -g1,21393:9943617,22417586 -g1,21393:10770681,22417586 -g1,21393:12571610,22417586 -g1,21393:14468221,22417586 -g1,21393:15686535,22417586 -g1,21393:16868804,22417586 -g1,21393:19625903,22417586 -g1,21393:21919007,22417586 -g1,21393:23611146,22417586 -g1,21393:24829460,22417586 -g1,21393:27036057,22417586 -g1,21393:27766783,22417586 -k1,21394:32583029,22417586:3031701 -g1,21394:32583029,22417586 -) -(1,21396:6630773,23259074:25952256,505283,134348 -h1,21395:6630773,23259074:983040,0,0 -k1,21395:8808975,23259074:153140 -k1,21395:11623531,23259074:153139 -k1,21395:13474709,23259074:153140 -k1,21395:16725080,23259074:153140 -k1,21395:17234079,23259074:153139 -k1,21395:18664516,23259074:153140 -k1,21395:19469084,23259074:153140 -k1,21395:21033869,23259074:153139 -k1,21395:25414081,23259074:153140 -k1,21395:28598915,23259074:153139 -k1,21395:30045034,23259074:153094 -k1,21395:30881059,23259074:153140 -k1,21395:32583029,23259074:0 -) -(1,21396:6630773,24100562:25952256,513147,134348 -k1,21395:8829842,24100562:221192 -k1,21395:11770122,24100562:221191 -k1,21395:14675669,24100562:221192 -k1,21395:18299490,24100562:221192 -k1,21395:20725968,24100562:221191 -k1,21395:21598588,24100562:221192 -(1,21395:21598588,24100562:0,452978,115847 -r1,21437:23363701,24100562:1765113,568825,115847 -k1,21395:21598588,24100562:-1765113 -) -(1,21395:21598588,24100562:1765113,452978,115847 -k1,21395:21598588,24100562:3277 -h1,21395:23360424,24100562:0,411205,112570 -) -k1,21395:23584892,24100562:221191 -k1,21395:24997529,24100562:221192 -(1,21395:24997529,24100562:0,452978,122846 -r1,21437:27114354,24100562:2116825,575824,122846 -k1,21395:24997529,24100562:-2116825 -) -(1,21395:24997529,24100562:2116825,452978,122846 -k1,21395:24997529,24100562:3277 -h1,21395:27111077,24100562:0,411205,112570 -) -k1,21395:27335546,24100562:221192 -k1,21395:28548297,24100562:221191 -k1,21395:31966991,24100562:221192 -k1,21395:32583029,24100562:0 -) -(1,21396:6630773,24942050:25952256,505283,7863 -k1,21396:32583029,24942050:23736484 -g1,21396:32583029,24942050 -) -v1,21398:6630773,26041487:0,393216,0 -(1,21406:6630773,28996130:25952256,3347859,196608 -g1,21406:6630773,28996130 -g1,21406:6630773,28996130 -g1,21406:6434165,28996130 -(1,21406:6434165,28996130:0,3347859,196608 -r1,21437:32779637,28996130:26345472,3544467,196608 -k1,21406:6434165,28996130:-26345472 -) -(1,21406:6434165,28996130:26345472,3347859,196608 -[1,21406:6630773,28996130:25952256,3151251,0 -(1,21400:6630773,26255397:25952256,410518,107478 -(1,21399:6630773,26255397:0,0,0 -g1,21399:6630773,26255397 -g1,21399:6630773,26255397 -g1,21399:6303093,26255397 -(1,21399:6303093,26255397:0,0,0 -) -g1,21399:6630773,26255397 -) -g1,21400:8211502,26255397 -g1,21400:9159940,26255397 -g1,21400:15482855,26255397 -g1,21400:16115147,26255397 -g1,21400:18328169,26255397 -g1,21400:20225044,26255397 -g1,21400:20857336,26255397 -g1,21400:22121919,26255397 -h1,21400:22438065,26255397:0,0,0 -k1,21400:32583029,26255397:10144964 -g1,21400:32583029,26255397 -) -(1,21401:6630773,26921575:25952256,410518,76021 -h1,21401:6630773,26921575:0,0,0 -g1,21401:6946919,26921575 -g1,21401:7263065,26921575 -g1,21401:12953688,26921575 -g1,21401:13585980,26921575 -h1,21401:15482854,26921575:0,0,0 -k1,21401:32583030,26921575:17100176 -g1,21401:32583030,26921575 -) -(1,21402:6630773,27587753:25952256,410518,107478 -h1,21402:6630773,27587753:0,0,0 -g1,21402:9476085,27587753 -g1,21402:10108377,27587753 -g1,21402:13902126,27587753 -g1,21402:15799000,27587753 -g1,21402:16431292,27587753 -g1,21402:17379730,27587753 -g1,21402:19592750,27587753 -g1,21402:20225042,27587753 -h1,21402:20857334,27587753:0,0,0 -k1,21402:32583029,27587753:11725695 -g1,21402:32583029,27587753 -) -(1,21403:6630773,28253931:25952256,410518,107478 -h1,21403:6630773,28253931:0,0,0 -k1,21403:6630773,28253931:0 -h1,21403:10108375,28253931:0,0,0 -k1,21403:32583029,28253931:22474654 -g1,21403:32583029,28253931 -) -(1,21404:6630773,28920109:25952256,410518,76021 -h1,21404:6630773,28920109:0,0,0 -k1,21404:6630773,28920109:0 -h1,21404:9476084,28920109:0,0,0 -k1,21404:32583028,28920109:23106944 -g1,21404:32583028,28920109 -) -] -) -g1,21406:32583029,28996130 -g1,21406:6630773,28996130 -g1,21406:6630773,28996130 -g1,21406:32583029,28996130 -g1,21406:32583029,28996130 -) -h1,21406:6630773,29192738:0,0,0 -(1,21410:6630773,30467485:25952256,505283,126483 -h1,21409:6630773,30467485:983040,0,0 -k1,21409:8864398,30467485:208563 -k1,21409:13300033,30467485:208563 -k1,21409:16696924,30467485:208564 -k1,21409:18096932,30467485:208563 -k1,21409:19598511,30467485:208554 -k1,21409:22139500,30467485:208563 -k1,21409:23216415,30467485:208563 -k1,21409:24800579,30467485:208563 -k1,21409:26539409,30467485:208564 -k1,21409:27399400,30467485:208563 -k1,21409:30817916,30467485:208563 -(1,21409:30817916,30467485:0,459977,115847 -r1,21437:32583029,30467485:1765113,575824,115847 -k1,21409:30817916,30467485:-1765113 -) -(1,21409:30817916,30467485:1765113,459977,115847 -k1,21409:30817916,30467485:3277 -h1,21409:32579752,30467485:0,411205,112570 -) -k1,21409:32583029,30467485:0 -) -(1,21410:6630773,31308973:25952256,505283,126483 -g1,21409:8223953,31308973 -(1,21409:8223953,31308973:0,452978,115847 -r1,21437:12451049,31308973:4227096,568825,115847 -k1,21409:8223953,31308973:-4227096 -) -(1,21409:8223953,31308973:4227096,452978,115847 -k1,21409:8223953,31308973:3277 -h1,21409:12447772,31308973:0,411205,112570 -) -g1,21409:12650278,31308973 -g1,21409:13532392,31308973 -(1,21409:13532392,31308973:0,452978,122846 -r1,21437:15297505,31308973:1765113,575824,122846 -k1,21409:13532392,31308973:-1765113 -) -(1,21409:13532392,31308973:1765113,452978,122846 -k1,21409:13532392,31308973:3277 -h1,21409:15294228,31308973:0,411205,112570 -) -g1,21409:15670404,31308973 -k1,21410:32583029,31308973:12942454 -g1,21410:32583029,31308973 -) -v1,21412:6630773,32408410:0,393216,0 -(1,21418:6630773,34030697:25952256,2015503,196608 -g1,21418:6630773,34030697 -g1,21418:6630773,34030697 -g1,21418:6434165,34030697 -(1,21418:6434165,34030697:0,2015503,196608 -r1,21437:32779637,34030697:26345472,2212111,196608 -k1,21418:6434165,34030697:-26345472 -) -(1,21418:6434165,34030697:26345472,2015503,196608 -[1,21418:6630773,34030697:25952256,1818895,0 -(1,21414:6630773,32622320:25952256,410518,107478 -(1,21413:6630773,32622320:0,0,0 -g1,21413:6630773,32622320 -g1,21413:6630773,32622320 -g1,21413:6303093,32622320 -(1,21413:6303093,32622320:0,0,0 -) -g1,21413:6630773,32622320 -) -k1,21414:6630773,32622320:0 -g1,21414:11689105,32622320 -g1,21414:12321397,32622320 -g1,21414:16115146,32622320 -g1,21414:18012020,32622320 -g1,21414:18644312,32622320 -g1,21414:19592750,32622320 -g1,21414:21805770,32622320 -g1,21414:22438062,32622320 -h1,21414:23070354,32622320:0,0,0 -k1,21414:32583029,32622320:9512675 -g1,21414:32583029,32622320 -) -(1,21415:6630773,33288498:25952256,410518,107478 -h1,21415:6630773,33288498:0,0,0 -k1,21415:6630773,33288498:0 -h1,21415:10108375,33288498:0,0,0 -k1,21415:32583029,33288498:22474654 -g1,21415:32583029,33288498 -) -(1,21416:6630773,33954676:25952256,410518,76021 -h1,21416:6630773,33954676:0,0,0 -k1,21416:6630773,33954676:0 -h1,21416:9476084,33954676:0,0,0 -k1,21416:32583028,33954676:23106944 -g1,21416:32583028,33954676 -) -] -) -g1,21418:32583029,34030697 -g1,21418:6630773,34030697 -g1,21418:6630773,34030697 -g1,21418:32583029,34030697 -g1,21418:32583029,34030697 -) -h1,21418:6630773,34227305:0,0,0 -(1,21422:6630773,35502052:25952256,513147,134348 -h1,21421:6630773,35502052:983040,0,0 -k1,21421:8387363,35502052:145715 -k1,21421:9552164,35502052:145716 -k1,21421:11064960,35502052:145715 -k1,21421:11869967,35502052:145715 -k1,21421:14734772,35502052:145716 -k1,21421:17218156,35502052:145715 -k1,21421:18311523,35502052:145716 -k1,21421:19440278,35502052:145715 -k1,21421:21744749,35502052:145715 -k1,21421:22506503,35502052:145716 -k1,21421:24164134,35502052:145715 -k1,21421:25986260,35502052:145715 -k1,21421:27479342,35502052:145662 -k1,21421:28816503,35502052:145716 -k1,21421:30327935,35502052:145662 -k1,21421:32583029,35502052:0 -) -(1,21422:6630773,36343540:25952256,513147,134348 -g1,21421:9514357,36343540 -g1,21421:13116215,36343540 -g1,21421:15520731,36343540 -g1,21421:16371388,36343540 -(1,21421:16371388,36343540:0,452978,115847 -r1,21437:18136501,36343540:1765113,568825,115847 -k1,21421:16371388,36343540:-1765113 -) -(1,21421:16371388,36343540:1765113,452978,115847 -k1,21421:16371388,36343540:3277 -h1,21421:18133224,36343540:0,411205,112570 -) -g1,21421:18335730,36343540 -g1,21421:19726404,36343540 -(1,21421:19726404,36343540:0,452978,122846 -r1,21437:21843229,36343540:2116825,575824,122846 -k1,21421:19726404,36343540:-2116825 -) -(1,21421:19726404,36343540:2116825,452978,122846 -k1,21421:19726404,36343540:3277 -h1,21421:21839952,36343540:0,411205,112570 -) -g1,21421:22042458,36343540 -g1,21421:23233247,36343540 -g1,21421:26629978,36343540 -g1,21421:27445245,36343540 -k1,21422:32583029,36343540:3094371 -g1,21422:32583029,36343540 -) -v1,21424:6630773,37442977:0,393216,0 -(1,21430:6630773,39065264:25952256,2015503,196608 -g1,21430:6630773,39065264 -g1,21430:6630773,39065264 -g1,21430:6434165,39065264 -(1,21430:6434165,39065264:0,2015503,196608 -r1,21437:32779637,39065264:26345472,2212111,196608 -k1,21430:6434165,39065264:-26345472 -) -(1,21430:6434165,39065264:26345472,2015503,196608 -[1,21430:6630773,39065264:25952256,1818895,0 -(1,21426:6630773,37656887:25952256,410518,107478 -(1,21425:6630773,37656887:0,0,0 -g1,21425:6630773,37656887 -g1,21425:6630773,37656887 -g1,21425:6303093,37656887 -(1,21425:6303093,37656887:0,0,0 -) -g1,21425:6630773,37656887 -) -k1,21426:6630773,37656887:0 -g1,21426:9792231,37656887 -g1,21426:10424523,37656887 -g1,21426:14534417,37656887 -g1,21426:16431291,37656887 -g1,21426:17063583,37656887 -g1,21426:18960458,37656887 -g1,21426:21173478,37656887 -g1,21426:21805770,37656887 -h1,21426:23070353,37656887:0,0,0 -k1,21426:32583029,37656887:9512676 -g1,21426:32583029,37656887 -) -(1,21427:6630773,38323065:25952256,410518,107478 -h1,21427:6630773,38323065:0,0,0 -k1,21427:6630773,38323065:0 -h1,21427:10108375,38323065:0,0,0 -k1,21427:32583029,38323065:22474654 -g1,21427:32583029,38323065 -) -(1,21428:6630773,38989243:25952256,410518,76021 -h1,21428:6630773,38989243:0,0,0 -k1,21428:6630773,38989243:0 -h1,21428:9476084,38989243:0,0,0 -k1,21428:32583028,38989243:23106944 -g1,21428:32583028,38989243 -) -] -) -g1,21430:32583029,39065264 -g1,21430:6630773,39065264 -g1,21430:6630773,39065264 -g1,21430:32583029,39065264 -g1,21430:32583029,39065264 -) -h1,21430:6630773,39261872:0,0,0 -v1,21436:6630773,40969878:0,393216,0 -(1,21437:6630773,45706769:25952256,5130107,0 -g1,21437:6630773,45706769 -g1,21437:6303093,45706769 -r1,21437:6401397,45706769:98304,5130107,0 -g1,21437:6600626,45706769 -g1,21437:6797234,45706769 -[1,21437:6797234,45706769:25785795,5130107,0 -(1,21437:6797234,41364981:25785795,788319,218313 -(1,21436:6797234,41364981:0,788319,218313 -r1,21437:7917113,41364981:1119879,1006632,218313 -k1,21436:6797234,41364981:-1119879 -) -(1,21436:6797234,41364981:1119879,788319,218313 -) -k1,21436:8194068,41364981:276955 -k1,21436:8521748,41364981:327680 -k1,21436:10515746,41364981:276955 -k1,21436:13511791,41364981:276956 -k1,21436:16126415,41364981:276955 -k1,21436:17394930,41364981:276955 -k1,21436:18993746,41364981:276955 -k1,21436:19929993,41364981:276955 -k1,21436:22442381,41364981:276955 -k1,21436:23910782,41364981:276956 -k1,21436:26220008,41364981:276955 -k1,21436:27488523,41364981:276955 -k1,21436:31966991,41364981:276955 -k1,21436:32583029,41364981:0 -) -(1,21437:6797234,42206469:25785795,505283,134348 -k1,21436:10755215,42206469:228327 -k1,21436:14067667,42206469:228328 -k1,21436:14923829,42206469:228327 -k1,21436:16844297,42206469:228328 -k1,21436:18943677,42206469:228327 -k1,21436:20826788,42206469:228327 -k1,21436:22046676,42206469:228328 -k1,21436:24946250,42206469:228327 -k1,21436:27563365,42206469:228328 -k1,21436:29799060,42206469:228327 -k1,21436:32583029,42206469:0 -) -(1,21437:6797234,43047957:25785795,513147,134348 -k1,21436:8034063,43047957:289178 -k1,21436:11420471,43047957:289177 -k1,21436:14428738,43047957:289178 -k1,21436:15333953,43047957:289177 -k1,21436:15978991,43047957:289178 -k1,21436:17962930,43047957:289178 -k1,21436:19235147,43047957:289177 -k1,21436:21878378,43047957:289178 -k1,21436:24041885,43047957:289177 -k1,21436:26668732,43047957:289178 -k1,21436:29245116,43047957:289177 -k1,21436:30626779,43047957:289178 -k1,21437:32583029,43047957:0 -) -(1,21437:6797234,43889445:25785795,513147,134348 -k1,21436:7994756,43889445:178437 -k1,21436:10965026,43889445:178436 -k1,21436:11826348,43889445:178437 -k1,21436:13479999,43889445:178436 -k1,21436:15168386,43889445:178437 -k1,21436:18203536,43889445:178436 -k1,21436:19775924,43889445:178437 -k1,21436:22716703,43889445:178436 -k1,21436:24576138,43889445:178437 -k1,21436:26628904,43889445:178436 -k1,21436:30194242,43889445:178437 -k1,21436:32583029,43889445:0 -) -(1,21437:6797234,44730933:25785795,513147,134348 -k1,21436:9338821,44730933:203918 -k1,21436:10647020,44730933:203917 -k1,21436:12136754,44730933:203918 -k1,21436:14083930,44730933:203918 -k1,21436:14903885,44730933:203917 -k1,21436:16616442,44730933:203918 -k1,21436:19515856,44730933:203918 -k1,21436:22877299,44730933:203918 -k1,21436:24150764,44730933:203917 -k1,21436:25829897,44730933:203918 -k1,21436:29550477,44730933:203918 -k1,21436:30370432,44730933:203917 -k1,21436:31593435,44730933:203918 -k1,21437:32583029,44730933:0 -) -(1,21437:6797234,45572421:25785795,513147,134348 -k1,21436:9901347,45572421:269681 -k1,21436:11362472,45572421:269680 -k1,21436:13140792,45572421:269681 -k1,21436:15652459,45572421:269680 -k1,21436:16549975,45572421:269681 -k1,21436:18517037,45572421:269680 -k1,21436:20484756,45572421:269681 -k1,21436:23851667,45572421:269680 -k1,21436:25478599,45572421:269681 -k1,21436:29733523,45572421:269680 -k1,21436:30461301,45572421:269681 -k1,21436:31835263,45572421:269680 -k1,21436:32583029,45572421:0 -) -] -g1,21437:32583029,45706769 -) -] -(1,21437:32583029,45706769:0,0,0 -g1,21437:32583029,45706769 -) -) -] -(1,21437:6630773,47279633:25952256,0,0 -h1,21437:6630773,47279633:25952256,0,0 -) -] -(1,21437:4262630,4025873:0,0,0 -[1,21437:-473656,4025873:0,0,0 -(1,21437:-473656,-710413:0,0,0 -(1,21437:-473656,-710413:0,0,0 -g1,21437:-473656,-710413 -) -g1,21437:-473656,-710413 -) -] -) -] -!24828 -}388 -!12 -{389 -[1,21457:4262630,47279633:28320399,43253760,0 -(1,21457:4262630,4025873:0,0,0 -[1,21457:-473656,4025873:0,0,0 -(1,21457:-473656,-710413:0,0,0 -(1,21457:-473656,-644877:0,0,0 -k1,21457:-473656,-644877:-65536 +k1,21444:10523651,14682403:-28417720 +) +) +g1,21444:28691027,14682403 +) +) +) +g1,21445:28690151,14682403 +k1,21445:32583029,14682403:3892878 +) +(1,21452:6630773,15547483:25952256,513147,126483 +h1,21451:6630773,15547483:983040,0,0 +k1,21451:8826502,15547483:170667 +k1,21451:11832255,15547483:170666 +k1,21451:15876100,15547483:170667 +k1,21451:17151049,15547483:170667 +k1,21451:18069481,15547483:170666 +k1,21451:19753374,15547483:170667 +k1,21451:20575469,15547483:170667 +k1,21451:23682803,15547483:170666 +k1,21451:24624173,15547483:170667 +k1,21451:28234825,15547483:170667 +k1,21451:30415480,15547483:170666 +k1,21451:30942007,15547483:170667 +k1,21452:32583029,15547483:0 +) +(1,21452:6630773,16412563:25952256,513147,134348 +k1,21451:8120032,16412563:221793 +k1,21451:10196493,16412563:221792 +k1,21451:11227656,16412563:221793 +k1,21451:12468533,16412563:221792 +k1,21451:16092955,16412563:221793 +k1,21451:18693704,16412563:221792 +k1,21451:20186895,16412563:221793 +k1,21451:21775768,16412563:221792 +k1,21451:22656853,16412563:221793 +k1,21451:25321827,16412563:221792 +k1,21451:26075117,16412563:221793 +k1,21451:26948337,16412563:221792 +k1,21451:29604137,16412563:221793 +k1,21451:30845014,16412563:221792 +k1,21451:32583029,16412563:0 +) +(1,21452:6630773,17277643:25952256,513147,134348 +g1,21451:7489294,17277643 +g1,21451:8707608,17277643 +g1,21451:10866363,17277643 +g1,21451:13270879,17277643 +g1,21451:14156270,17277643 +g1,21451:15126202,17277643 +g1,21451:18571429,17277643 +g1,21451:20338279,17277643 +g1,21451:22547497,17277643 +g1,21451:23102586,17277643 +k1,21452:32583029,17277643:6611277 +g1,21452:32583029,17277643 +) +v1,21454:6630773,17962498:0,393216,0 +(1,21479:6630773,26465522:25952256,8896240,196608 +g1,21479:6630773,26465522 +g1,21479:6630773,26465522 +g1,21479:6434165,26465522 +(1,21479:6434165,26465522:0,8896240,196608 +r1,21494:32779637,26465522:26345472,9092848,196608 +k1,21479:6434165,26465522:-26345472 +) +(1,21479:6434165,26465522:26345472,8896240,196608 +[1,21479:6630773,26465522:25952256,8699632,0 +(1,21456:6630773,18196935:25952256,431045,106246 +(1,21455:6630773,18196935:0,0,0 +g1,21455:6630773,18196935 +g1,21455:6630773,18196935 +g1,21455:6303093,18196935 +(1,21455:6303093,18196935:0,0,0 +) +g1,21455:6630773,18196935 +) +g1,21456:10946174,18196935 +g1,21456:11942036,18196935 +g1,21456:15925483,18196935 +h1,21456:16257437,18196935:0,0,0 +k1,21456:32583029,18196935:16325592 +g1,21456:32583029,18196935 +) +(1,21457:6630773,18881790:25952256,424439,106246 +h1,21457:6630773,18881790:0,0,0 +g1,21457:6962727,18881790 +g1,21457:7294681,18881790 +k1,21457:7294681,18881790:0 +h1,21457:16921346,18881790:0,0,0 +k1,21457:32583029,18881790:15661683 +g1,21457:32583029,18881790 +) +(1,21458:6630773,19566645:25952256,424439,79822 +h1,21458:6630773,19566645:0,0,0 +h1,21458:6962727,19566645:0,0,0 +k1,21458:32583029,19566645:25620302 +g1,21458:32583029,19566645 +) +(1,21459:6630773,20251500:25952256,0,0 +h1,21459:6630773,20251500:0,0,0 +h1,21459:6630773,20251500:0,0,0 +k1,21459:32583029,20251500:25952256 +g1,21459:32583029,20251500 +) +(1,21460:6630773,20936355:25952256,424439,6605 +h1,21460:6630773,20936355:0,0,0 +g1,21460:7294681,20936355 +g1,21460:8290543,20936355 +g1,21460:10614221,20936355 +g1,21460:11610083,20936355 +h1,21460:14597668,20936355:0,0,0 +k1,21460:32583028,20936355:17985360 +g1,21460:32583028,20936355 +) +(1,21461:6630773,21621210:25952256,0,0 +h1,21461:6630773,21621210:0,0,0 +h1,21461:6630773,21621210:0,0,0 +k1,21461:32583029,21621210:25952256 +g1,21461:32583029,21621210 +) +(1,21462:6630773,22306065:25952256,424439,106246 +h1,21462:6630773,22306065:0,0,0 +k1,21462:6630773,22306065:0 +h1,21462:14597667,22306065:0,0,0 +k1,21462:32583029,22306065:17985362 +g1,21462:32583029,22306065 +) +(1,21466:6630773,23121992:25952256,424439,79822 +(1,21464:6630773,23121992:0,0,0 +g1,21464:6630773,23121992 +g1,21464:6630773,23121992 +g1,21464:6303093,23121992 +(1,21464:6303093,23121992:0,0,0 +) +g1,21464:6630773,23121992 +) +g1,21466:7626635,23121992 +g1,21466:8954451,23121992 +h1,21466:13601806,23121992:0,0,0 +k1,21466:32583030,23121992:18981224 +g1,21466:32583030,23121992 +) +(1,21468:6630773,23937919:25952256,424439,106246 +(1,21467:6630773,23937919:0,0,0 +g1,21467:6630773,23937919 +g1,21467:6630773,23937919 +g1,21467:6303093,23937919 +(1,21467:6303093,23937919:0,0,0 +) +g1,21467:6630773,23937919 +) +k1,21468:6630773,23937919:0 +g1,21468:11610082,23937919 +g1,21468:12273990,23937919 +h1,21468:12937898,23937919:0,0,0 +k1,21468:32583030,23937919:19645132 +g1,21468:32583030,23937919 +) +(1,21472:6630773,24753846:25952256,424439,79822 +(1,21470:6630773,24753846:0,0,0 +g1,21470:6630773,24753846 +g1,21470:6630773,24753846 +g1,21470:6303093,24753846 +(1,21470:6303093,24753846:0,0,0 +) +g1,21470:6630773,24753846 +) +g1,21472:7626635,24753846 +g1,21472:8954451,24753846 +g1,21472:9950313,24753846 +g1,21472:10614221,24753846 +h1,21472:11278129,24753846:0,0,0 +k1,21472:32583029,24753846:21304900 +g1,21472:32583029,24753846 +) +(1,21474:6630773,25569773:25952256,424439,106246 +(1,21473:6630773,25569773:0,0,0 +g1,21473:6630773,25569773 +g1,21473:6630773,25569773 +g1,21473:6303093,25569773 +(1,21473:6303093,25569773:0,0,0 +) +g1,21473:6630773,25569773 +) +k1,21474:6630773,25569773:0 +h1,21474:11610082,25569773:0,0,0 +k1,21474:32583030,25569773:20972948 +g1,21474:32583030,25569773 +) +(1,21478:6630773,26385700:25952256,424439,79822 +(1,21476:6630773,26385700:0,0,0 +g1,21476:6630773,26385700 +g1,21476:6630773,26385700 +g1,21476:6303093,26385700 +(1,21476:6303093,26385700:0,0,0 +) +g1,21476:6630773,26385700 +) +g1,21478:7626635,26385700 +g1,21478:8954451,26385700 +h1,21478:9950313,26385700:0,0,0 +k1,21478:32583029,26385700:22632716 +g1,21478:32583029,26385700 +) +] +) +g1,21479:32583029,26465522 +g1,21479:6630773,26465522 +g1,21479:6630773,26465522 +g1,21479:32583029,26465522 +g1,21479:32583029,26465522 +) +h1,21479:6630773,26662130:0,0,0 +v1,21483:6630773,27527210:0,393216,0 +(1,21484:6630773,29806260:25952256,2672266,0 +g1,21484:6630773,29806260 +g1,21484:6237557,29806260 +r1,21494:6368629,29806260:131072,2672266,0 +g1,21484:6567858,29806260 +g1,21484:6764466,29806260 +[1,21484:6764466,29806260:25818563,2672266,0 +(1,21484:6764466,27941752:25818563,807758,219026 +(1,21483:6764466,27941752:0,807758,219026 +r1,21494:7908217,27941752:1143751,1026784,219026 +k1,21483:6764466,27941752:-1143751 +) +(1,21483:6764466,27941752:1143751,807758,219026 +) +k1,21483:8132744,27941752:224527 +k1,21483:8460424,27941752:327680 +k1,21483:9172514,27941752:224502 +k1,21483:10680236,27941752:224527 +k1,21483:13658586,27941752:224527 +k1,21483:16477682,27941752:224527 +k1,21483:18587680,27941752:224527 +k1,21483:19343704,27941752:224527 +k1,21483:20634502,27941752:224527 +k1,21483:21824375,27941752:224528 +k1,21483:22664940,27941752:224527 +k1,21483:24867999,27941752:224527 +k1,21483:27852902,27941752:224527 +k1,21483:30754575,27941752:224527 +k1,21484:32583029,27941752:0 +) +(1,21484:6764466,28806832:25818563,513147,134348 +k1,21483:8855466,28806832:281551 +k1,21483:10328544,28806832:281633 +k1,21483:14120287,28806832:281634 +k1,21483:16928333,28806832:281633 +k1,21483:18157617,28806832:281633 +k1,21483:21441454,28806832:281634 +k1,21483:23189783,28806832:281633 +k1,21483:24419068,28806832:281634 +k1,21483:28491303,28806832:281633 +k1,21483:29964382,28806832:281634 +k1,21483:31193666,28806832:281633 +k1,21483:32583029,28806832:0 +) +(1,21484:6764466,29671912:25818563,513147,134348 +g1,21483:11216326,29671912 +g1,21483:12796399,29671912 +g1,21483:15575780,29671912 +g1,21483:18535385,29671912 +g1,21483:19505317,29671912 +g1,21483:23091447,29671912 +g1,21483:23942104,29671912 +g1,21483:25160418,29671912 +g1,21483:26452132,29671912 +g1,21483:27318517,29671912 +g1,21483:27932589,29671912 +k1,21484:32583029,29671912:706483 +g1,21484:32583029,29671912 +) +] +g1,21484:32583029,29806260 +) +h1,21484:6630773,29806260:0,0,0 +(1,21487:6630773,32637420:25952256,32768,229376 +(1,21487:6630773,32637420:0,32768,229376 +(1,21487:6630773,32637420:5505024,32768,229376 +r1,21494:12135797,32637420:5505024,262144,229376 +) +k1,21487:6630773,32637420:-5505024 +) +(1,21487:6630773,32637420:25952256,32768,0 +r1,21494:32583029,32637420:25952256,32768,0 +) +) +(1,21487:6630773,34269272:25952256,606339,161218 +(1,21487:6630773,34269272:2464678,582746,14155 +g1,21487:6630773,34269272 +g1,21487:9095451,34269272 +) +g1,21487:12689446,34269272 +g1,21487:16294451,34269272 +g1,21487:18233006,34269272 +k1,21487:32583029,34269272:11037571 +g1,21487:32583029,34269272 +) +(1,21491:6630773,35527568:25952256,513147,134348 +k1,21490:8006272,35527568:178812 +k1,21490:11087675,35527568:178813 +k1,21490:11925779,35527568:178812 +k1,21490:14823681,35527568:178813 +k1,21490:17014448,35527568:178812 +k1,21490:18349970,35527568:178812 +k1,21490:19180211,35527568:178813 +k1,21490:21001355,35527568:178812 +k1,21490:22371612,35527568:178812 +k1,21490:23741870,35527568:178813 +k1,21490:25528280,35527568:178812 +k1,21490:30232354,35527568:178813 +k1,21490:31039001,35527568:178812 +k1,21490:32583029,35527568:0 +) +(1,21491:6630773,36392648:25952256,505283,134348 +k1,21490:8124033,36392648:227104 +k1,21490:10049175,36392648:227104 +k1,21490:12848567,36392648:227104 +k1,21490:13431531,36392648:227104 +k1,21490:17150393,36392648:227104 +k1,21490:18660692,36392648:227104 +k1,21490:20338763,36392648:227104 +k1,21490:21023965,36392648:227105 +k1,21490:21782566,36392648:227104 +k1,21490:23344638,36392648:227104 +k1,21490:24223170,36392648:227104 +k1,21490:25938597,36392648:227104 +k1,21490:27559652,36392648:227104 +k1,21490:28142616,36392648:227104 +k1,21490:30494397,36392648:227104 +k1,21490:32583029,36392648:0 +) +(1,21491:6630773,37257728:25952256,513147,134348 +k1,21490:7780900,37257728:202476 +k1,21490:8339236,37257728:202476 +k1,21490:9992679,37257728:202476 +(1,21490:9992679,37257728:0,452978,115847 +r1,21494:12461216,37257728:2468537,568825,115847 +k1,21490:9992679,37257728:-2468537 +) +(1,21490:9992679,37257728:2468537,452978,115847 +k1,21490:9992679,37257728:3277 +h1,21490:12457939,37257728:0,411205,112570 +) +k1,21490:12663692,37257728:202476 +k1,21490:14069409,37257728:202476 +k1,21490:15722852,37257728:202476 +k1,21490:18737478,37257728:202476 +k1,21490:20224460,37257728:202476 +k1,21490:21446021,37257728:202476 +k1,21490:23807253,37257728:202476 +k1,21490:24541226,37257728:202476 +k1,21490:25429864,37257728:202476 +k1,21490:28471360,37257728:202476 +k1,21490:29865281,37257728:202476 +k1,21490:31086842,37257728:202476 +k1,21490:32583029,37257728:0 +) +(1,21491:6630773,38122808:25952256,513147,134348 +k1,21490:10072855,38122808:200671 +k1,21490:14008423,38122808:200671 +k1,21490:15365804,38122808:200671 +k1,21490:16670757,38122808:200671 +k1,21490:18268000,38122808:200671 +k1,21490:21695663,38122808:200670 +k1,21490:24960798,38122808:200671 +k1,21490:26352914,38122808:200671 +k1,21490:27750928,38122808:200671 +k1,21490:31391584,38122808:200671 +k1,21490:32583029,38122808:0 +) +(1,21491:6630773,38987888:25952256,513147,134348 +k1,21490:9597386,38987888:284224 +k1,21490:13036514,38987888:284225 +k1,21490:14517425,38987888:284224 +k1,21490:16208052,38987888:284224 +k1,21490:18177863,38987888:284225 +k1,21490:19453647,38987888:284224 +k1,21490:21171799,38987888:284224 +k1,21490:22107452,38987888:284225 +k1,21490:23589019,38987888:284224 +k1,21490:27610762,38987888:284224 +k1,21490:29086431,38987888:284224 +k1,21490:30389741,38987888:284225 +k1,21490:31900144,38987888:284224 +k1,21490:32583029,38987888:0 +) +(1,21491:6630773,39852968:25952256,513147,126483 +k1,21490:10626855,39852968:225796 +k1,21490:12365878,39852968:225797 +k1,21490:13539325,39852968:225796 +k1,21490:15536560,39852968:225797 +k1,21490:16953801,39852968:225796 +k1,21490:18431991,39852968:225797 +k1,21490:19849232,39852968:225796 +k1,21490:21176034,39852968:225797 +k1,21490:23419684,39852968:225796 +k1,21490:26249882,39852968:225797 +k1,21490:29460188,39852968:225796 +k1,21490:30217482,39852968:225797 +k1,21490:31094706,39852968:225796 +k1,21490:32583029,39852968:0 +) +(1,21491:6630773,40718048:25952256,513147,134348 +k1,21490:8318091,40718048:293367 +k1,21490:9382161,40718048:293367 +k1,21490:12166551,40718048:293367 +k1,21490:13737216,40718048:293368 +k1,21490:15222028,40718048:293367 +k1,21490:17777698,40718048:293367 +k1,21490:18702832,40718048:293367 +k1,21490:20238762,40718048:293367 +k1,21490:21293657,40718048:293367 +k1,21490:23322417,40718048:293367 +k1,21490:24634870,40718048:293368 +k1,21490:26581710,40718048:293367 +k1,21490:29399524,40718048:293367 +k1,21490:31189078,40718048:293367 +k1,21490:32583029,40718048:0 +) +(1,21491:6630773,41583128:25952256,513147,134348 +k1,21490:9646938,41583128:253822 +(1,21490:9646938,41583128:0,452978,115847 +r1,21494:11060339,41583128:1413401,568825,115847 +k1,21490:9646938,41583128:-1413401 +) +(1,21490:9646938,41583128:1413401,452978,115847 +k1,21490:9646938,41583128:3277 +h1,21490:11057062,41583128:0,411205,112570 +) +k1,21490:11314161,41583128:253822 +k1,21490:12250868,41583128:253822 +k1,21490:15312252,41583128:253822 +k1,21490:18328417,41583128:253822 +k1,21490:21597550,41583128:253822 +k1,21490:23634607,41583128:253822 +k1,21490:26259522,41583128:253822 +k1,21490:28009531,41583128:253822 +k1,21490:29211004,41583128:253822 +k1,21490:29820686,41583128:253822 +k1,21490:32583029,41583128:0 +) +(1,21491:6630773,42448208:25952256,505283,126483 +g1,21490:8219365,42448208 +g1,21490:9526808,42448208 +g1,21490:11298246,42448208 +(1,21490:11298246,42448208:0,452978,115847 +r1,21494:13415071,42448208:2116825,568825,115847 +k1,21490:11298246,42448208:-2116825 +) +(1,21490:11298246,42448208:2116825,452978,115847 +k1,21490:11298246,42448208:3277 +h1,21490:13411794,42448208:0,411205,112570 +) +g1,21490:13614300,42448208 +g1,21490:15004974,42448208 +(1,21490:15004974,42448208:0,414482,115847 +r1,21494:16770087,42448208:1765113,530329,115847 +k1,21490:15004974,42448208:-1765113 +) +(1,21490:15004974,42448208:1765113,414482,115847 +k1,21490:15004974,42448208:3277 +h1,21490:16766810,42448208:0,411205,112570 +) +g1,21490:16969316,42448208 +g1,21490:18160105,42448208 +g1,21490:20071790,42448208 +g1,21490:20922447,42448208 +g1,21490:22651942,42448208 +g1,21490:23502599,42448208 +g1,21490:24449594,42448208 +k1,21491:32583029,42448208:5965504 +g1,21491:32583029,42448208 +) +v1,21493:6630773,43313288:0,393216,0 +(1,21494:6630773,45450273:25952256,2530201,0 +g1,21494:6630773,45450273 +g1,21494:6237557,45450273 +r1,21494:6368629,45450273:131072,2530201,0 +g1,21494:6567858,45450273 +g1,21494:6764466,45450273 +[1,21494:6764466,45450273:25818563,2530201,0 +(1,21494:6764466,43585765:25818563,665693,196608 +(1,21493:6764466,43585765:0,665693,196608 +r1,21494:8010564,43585765:1246098,862301,196608 +k1,21493:6764466,43585765:-1246098 +) +(1,21493:6764466,43585765:1246098,665693,196608 +) +k1,21493:8228981,43585765:218417 +k1,21493:9955199,43585765:327680 +k1,21493:11814637,43585765:218416 +k1,21493:12388914,43585765:218417 +k1,21493:16123337,43585765:218416 +k1,21493:19028075,43585765:218417 +k1,21493:20635854,43585765:218416 +k1,21493:22131568,43585765:218417 +k1,21493:23009276,43585765:218416 +k1,21493:24686524,43585765:218417 +k1,21493:27521793,43585765:218416 +k1,21493:29095495,43585765:218417 +k1,21493:30075439,43585765:218416 +k1,21493:31822811,43585765:218417 +k1,21493:32583029,43585765:0 +) +(1,21494:6764466,44450845:25818563,513147,134348 +k1,21493:8345278,44450845:225527 +k1,21493:9332334,44450845:225528 +k1,21493:11086816,44450845:225527 +k1,21493:11525309,44450845:225501 +k1,21493:12566104,44450845:225527 +k1,21493:13857903,44450845:225528 +k1,21493:15619594,44450845:225527 +k1,21493:16496549,44450845:225527 +k1,21493:18457470,44450845:225528 +k1,21493:19702082,44450845:225527 +k1,21493:22830199,44450845:225527 +k1,21493:23671765,44450845:225528 +k1,21493:24916377,44450845:225527 +k1,21493:29176300,44450845:225527 +k1,21493:30061120,44450845:225528 +k1,21493:31305732,44450845:225527 +k1,21493:32583029,44450845:0 +) +(1,21494:6764466,45315925:25818563,513147,134348 +k1,21493:7618400,45315925:167772 +k1,21493:9993425,45315925:167772 +k1,21493:11233366,45315925:167772 +k1,21493:12060430,45315925:167772 +k1,21493:14223773,45315925:167772 +k1,21493:17630334,45315925:167772 +k1,21493:18457399,45315925:167773 +k1,21493:19828412,45315925:167772 +k1,21493:23514812,45315925:167772 +k1,21493:24334012,45315925:167772 +k1,21493:25693229,45315925:167772 +k1,21493:29918990,45315925:167772 +k1,21493:32583029,45315925:0 +) +] +g1,21494:32583029,45450273 +) +] +(1,21494:32583029,45706769:0,0,0 +g1,21494:32583029,45706769 +) +) +] +(1,21494:6630773,47279633:25952256,0,0 +h1,21494:6630773,47279633:25952256,0,0 +) +] +(1,21494:4262630,4025873:0,0,0 +[1,21494:-473656,4025873:0,0,0 +(1,21494:-473656,-710413:0,0,0 +(1,21494:-473656,-710413:0,0,0 +g1,21494:-473656,-710413 +) +g1,21494:-473656,-710413 +) +] +) +] +!19966 +}369 +Input:3532:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3533:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3534:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3535:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3536:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3537:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3538:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3539:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3540:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!858 +{370 +[1,21554:4262630,47279633:28320399,43253760,0 +(1,21554:4262630,4025873:0,0,0 +[1,21554:-473656,4025873:0,0,0 +(1,21554:-473656,-710413:0,0,0 +(1,21554:-473656,-644877:0,0,0 +k1,21554:-473656,-644877:-65536 ) -(1,21457:-473656,4736287:0,0,0 -k1,21457:-473656,4736287:5209943 +(1,21554:-473656,4736287:0,0,0 +k1,21554:-473656,4736287:5209943 ) -g1,21457:-473656,-710413 +g1,21554:-473656,-710413 ) ] ) -[1,21457:6630773,47279633:25952256,43253760,0 -[1,21457:6630773,4812305:25952256,786432,0 -(1,21457:6630773,4812305:25952256,513147,126483 -(1,21457:6630773,4812305:25952256,513147,126483 -g1,21457:3078558,4812305 -[1,21457:3078558,4812305:0,0,0 -(1,21457:3078558,2439708:0,1703936,0 -k1,21457:1358238,2439708:-1720320 -(1,16770:1358238,2439708:1720320,1703936,0 -(1,16770:1358238,2439708:1179648,16384,0 -r1,21457:2537886,2439708:1179648,16384,0 +[1,21554:6630773,47279633:25952256,43253760,0 +[1,21554:6630773,4812305:25952256,786432,0 +(1,21554:6630773,4812305:25952256,513147,134348 +(1,21554:6630773,4812305:25952256,513147,134348 +g1,21554:3078558,4812305 +[1,21554:3078558,4812305:0,0,0 +(1,21554:3078558,2439708:0,1703936,0 +k1,21554:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,21554:2537886,2439708:1179648,16384,0 ) -g1,16770:3062174,2439708 -(1,16770:3062174,2439708:16384,1703936,0 -[1,16770:3062174,2439708:25952256,1703936,0 -(1,16770:3062174,1915420:25952256,1179648,0 -(1,16770:3062174,1915420:16384,1179648,0 -r1,21457:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,21554:3078558,1915420:16384,1179648,0 ) -k1,16770:29014430,1915420:25935872 -g1,16770:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,21457:3078558,4812305:0,0,0 -(1,21457:3078558,2439708:0,1703936,0 -g1,21457:29030814,2439708 -g1,21457:36135244,2439708 -(1,16770:36135244,2439708:1720320,1703936,0 -(1,16770:36135244,2439708:16384,1703936,0 -[1,16770:36135244,2439708:25952256,1703936,0 -(1,16770:36135244,1915420:25952256,1179648,0 -(1,16770:36135244,1915420:16384,1179648,0 -r1,21457:36151628,1915420:16384,1179648,0 +[1,21554:3078558,4812305:0,0,0 +(1,21554:3078558,2439708:0,1703936,0 +g1,21554:29030814,2439708 +g1,21554:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,21554:36151628,1915420:16384,1179648,0 ) -k1,16770:62087500,1915420:25935872 -g1,16770:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,16770:36675916,2439708 -(1,16770:36675916,2439708:1179648,16384,0 -r1,21457:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,21554:37855564,2439708:1179648,16384,0 ) ) -k1,21457:3078556,2439708:-34777008 +k1,21554:3078556,2439708:-34777008 ) ] -[1,21457:3078558,4812305:0,0,0 -(1,21457:3078558,49800853:0,16384,2228224 -k1,21457:1358238,49800853:-1720320 -(1,16770:1358238,49800853:1720320,16384,2228224 -(1,16770:1358238,49800853:1179648,16384,0 -r1,21457:2537886,49800853:1179648,16384,0 -) -g1,16770:3062174,49800853 -(1,16770:3062174,52029077:16384,1703936,0 -[1,16770:3062174,52029077:25952256,1703936,0 -(1,16770:3062174,51504789:25952256,1179648,0 -(1,16770:3062174,51504789:16384,1179648,0 -r1,21457:3078558,51504789:16384,1179648,0 -) -k1,16770:29014430,51504789:25935872 -g1,16770:29014430,51504789 +[1,21554:3078558,4812305:0,0,0 +(1,21554:3078558,49800853:0,16384,2228224 +k1,21554:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,21554:2537886,49800853:1179648,16384,0 +) +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,21554:3078558,51504789:16384,1179648,0 +) +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] -) +) ) ) ] -[1,21457:3078558,4812305:0,0,0 -(1,21457:3078558,49800853:0,16384,2228224 -g1,21457:29030814,49800853 -g1,21457:36135244,49800853 -(1,16770:36135244,49800853:1720320,16384,2228224 -(1,16770:36135244,52029077:16384,1703936,0 -[1,16770:36135244,52029077:25952256,1703936,0 -(1,16770:36135244,51504789:25952256,1179648,0 -(1,16770:36135244,51504789:16384,1179648,0 -r1,21457:36151628,51504789:16384,1179648,0 +[1,21554:3078558,4812305:0,0,0 +(1,21554:3078558,49800853:0,16384,2228224 +g1,21554:29030814,49800853 +g1,21554:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,21554:36151628,51504789:16384,1179648,0 ) -k1,16770:62087500,51504789:25935872 -g1,16770:62087500,51504789 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 ) ] ) -g1,16770:36675916,49800853 -(1,16770:36675916,49800853:1179648,16384,0 -r1,21457:37855564,49800853:1179648,16384,0 +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,21554:37855564,49800853:1179648,16384,0 ) ) -k1,21457:3078556,49800853:-34777008 +k1,21554:3078556,49800853:-34777008 ) ] -g1,21457:6630773,4812305 -k1,21457:21350816,4812305:13524666 -g1,21457:21999622,4812305 -g1,21457:25611966,4812305 -g1,21457:28956923,4812305 -g1,21457:29772190,4812305 -) -) -] -[1,21457:6630773,45706769:25952256,40108032,0 -(1,21457:6630773,45706769:25952256,40108032,0 -(1,21457:6630773,45706769:0,0,0 -g1,21457:6630773,45706769 -) -[1,21457:6630773,45706769:25952256,40108032,0 -v1,21437:6630773,6254097:0,393216,0 -(1,21437:6630773,7349864:25952256,1488983,0 -g1,21437:6630773,7349864 -g1,21437:6303093,7349864 -r1,21457:6401397,7349864:98304,1488983,0 -g1,21437:6600626,7349864 -g1,21437:6797234,7349864 -[1,21437:6797234,7349864:25785795,1488983,0 -(1,21437:6797234,6374028:25785795,513147,134348 -k1,21436:10580124,6374028:217731 -k1,21436:11449282,6374028:217730 -k1,21436:13724843,6374028:217731 -k1,21436:14594001,6374028:217730 -k1,21436:15582435,6374028:217731 -k1,21436:19187067,6374028:217731 -k1,21436:22123886,6374028:217730 -k1,21436:24348985,6374028:217731 -k1,21436:25218144,6374028:217731 -k1,21436:26702030,6374028:217730 -k1,21436:27986032,6374028:217731 -k1,21436:28669723,6374028:217730 -k1,21436:29906539,6374028:217731 -k1,21436:32583029,6374028:0 -) -(1,21437:6797234,7215516:25785795,505283,134348 -g1,21436:7527960,7215516 -g1,21436:8343227,7215516 -g1,21436:9561541,7215516 -g1,21436:11038067,7215516 -g1,21436:11920181,7215516 -g1,21436:12735448,7215516 -g1,21436:13953762,7215516 -g1,21436:17250222,7215516 -k1,21437:32583029,7215516:13059363 -g1,21437:32583029,7215516 -) -] -g1,21437:32583029,7349864 -) -h1,21437:6630773,7349864:0,0,0 -(1,21439:6630773,10157432:25952256,32768,229376 -(1,21439:6630773,10157432:0,32768,229376 -(1,21439:6630773,10157432:5505024,32768,229376 -r1,21457:12135797,10157432:5505024,262144,229376 -) -k1,21439:6630773,10157432:-5505024 -) -(1,21439:6630773,10157432:25952256,32768,0 -r1,21457:32583029,10157432:25952256,32768,0 -) -) -(1,21439:6630773,11761760:25952256,606339,161218 -(1,21439:6630773,11761760:2464678,582746,14155 -g1,21439:6630773,11761760 -g1,21439:9095451,11761760 -) -g1,21439:12303307,11761760 -k1,21439:32583029,11761760:17283416 -g1,21439:32583029,11761760 -) -(1,21441:6630773,12996464:25952256,513147,134348 -k1,21440:7714793,12996464:181589 -k1,21440:10585981,12996464:181590 -k1,21440:14139397,12996464:181589 -k1,21440:14980278,12996464:181589 -k1,21440:16180953,12996464:181590 -k1,21440:18114319,12996464:181589 -k1,21440:21698537,12996464:181589 -k1,21440:22531555,12996464:181590 -k1,21440:25293296,12996464:181589 -k1,21440:28303418,12996464:181589 -k1,21440:29016505,12996464:181590 -k1,21440:31563944,12996464:181589 -k1,21440:32583029,12996464:0 -) -(1,21441:6630773,13837952:25952256,513147,134348 -k1,21440:8746124,13837952:288863 -k1,21440:9694278,13837952:288862 -k1,21440:11186382,13837952:288863 -k1,21440:13230954,13837952:288862 -k1,21440:15776222,13837952:288863 -k1,21440:17977425,13837952:288862 -k1,21440:20935569,13837952:288863 -k1,21440:21840469,13837952:288862 -k1,21440:23916499,13837952:288863 -k1,21440:25224446,13837952:288862 -k1,21440:26605794,13837952:288863 -k1,21440:27553949,13837952:288863 -k1,21440:30845014,13837952:288862 -k1,21440:32583029,13837952:0 -) -(1,21441:6630773,14679440:25952256,513147,134348 -k1,21440:9424661,14679440:245193 -k1,21440:12010572,14679440:244965 -k1,21440:15066375,14679440:244964 -k1,21440:16235398,14679440:244965 -k1,21440:18014561,14679440:244965 -k1,21440:20905214,14679440:244964 -k1,21440:24281489,14679440:244965 -k1,21440:25717898,14679440:244964 -k1,21440:28116376,14679440:244965 -k1,21440:30162269,14679440:244964 -k1,21440:31426319,14679440:244965 -k1,21440:32583029,14679440:0 -) -(1,21441:6630773,15520928:25952256,513147,134348 -k1,21440:9066141,15520928:148817 -k1,21440:9976486,15520928:148817 -k1,21440:11144388,15520928:148817 -k1,21440:12885075,15520928:148817 -k1,21440:15159225,15520928:148817 -k1,21440:15967334,15520928:148817 -k1,21440:17135236,15520928:148817 -k1,21440:20037876,15520928:148817 -k1,21440:21228715,15520928:148817 -k1,21440:24857494,15520928:148817 -k1,21440:25689196,15520928:148817 -k1,21440:28202552,15520928:148817 -k1,21440:29417640,15520928:148817 -k1,21440:32583029,15520928:0 -) -(1,21441:6630773,16362416:25952256,513147,134348 -k1,21440:7918064,16362416:268206 -k1,21440:9768309,16362416:268206 -k1,21440:10486092,16362416:268206 -k1,21440:13565137,16362416:268206 -k1,21440:16916156,16362416:268206 -k1,21440:19406689,16362416:268207 -k1,21440:21475824,16362416:268206 -k1,21440:22275527,16362416:268206 -k1,21440:23314436,16362416:268206 -k1,21440:26405278,16362416:268206 -k1,21440:29826421,16362416:268206 -k1,21440:30722462,16362416:268206 -k1,21440:32583029,16362416:0 -) -(1,21441:6630773,17203904:25952256,513147,134348 -k1,21440:10980253,17203904:286903 -k1,21440:11926448,17203904:286903 -k1,21440:13232436,17203904:286903 -k1,21440:16382608,17203904:286904 -k1,21440:19044536,17203904:286903 -k1,21440:19998595,17203904:286903 -k1,21440:20700253,17203904:286815 -k1,21440:23706245,17203904:286903 -k1,21440:24984708,17203904:286903 -k1,21440:28055581,17203904:286904 -k1,21440:28958522,17203904:286903 -k1,21440:30264510,17203904:286903 -k1,21440:32133452,17203904:286903 -k1,21440:32583029,17203904:0 -) -(1,21441:6630773,18045392:25952256,505283,126483 -g1,21440:9663779,18045392 -g1,21440:12382868,18045392 -k1,21441:32583028,18045392:18225560 -g1,21441:32583028,18045392 -) -v1,21443:6630773,19235858:0,393216,0 -(1,21447:6630773,19550954:25952256,708312,196608 -g1,21447:6630773,19550954 -g1,21447:6630773,19550954 -g1,21447:6434165,19550954 -(1,21447:6434165,19550954:0,708312,196608 -r1,21457:32779637,19550954:26345472,904920,196608 -k1,21447:6434165,19550954:-26345472 -) -(1,21447:6434165,19550954:26345472,708312,196608 -[1,21447:6630773,19550954:25952256,511704,0 -(1,21446:6630773,19443476:25952256,404226,107478 -(1,21444:6630773,19443476:0,0,0 -g1,21444:6630773,19443476 -g1,21444:6630773,19443476 -g1,21444:6303093,19443476 -(1,21444:6303093,19443476:0,0,0 -) -g1,21444:6630773,19443476 -) -g1,21446:7579210,19443476 -g1,21446:9476084,19443476 -g1,21446:10108376,19443476 -g1,21446:12637542,19443476 -g1,21446:15799000,19443476 -g1,21446:16747437,19443476 -g1,21446:19592748,19443476 -g1,21446:20541185,19443476 -g1,21446:22754206,19443476 -g1,21446:23702643,19443476 -g1,21446:25283372,19443476 -g1,21446:26547955,19443476 -g1,21446:27496392,19443476 -h1,21446:30025557,19443476:0,0,0 -k1,21446:32583029,19443476:2557472 -g1,21446:32583029,19443476 -) -] -) -g1,21447:32583029,19550954 -g1,21447:6630773,19550954 -g1,21447:6630773,19550954 -g1,21447:32583029,19550954 -g1,21447:32583029,19550954 -) -h1,21447:6630773,19747562:0,0,0 -] -(1,21457:32583029,45706769:0,0,0 -g1,21457:32583029,45706769 -) -) -] -(1,21457:6630773,47279633:25952256,0,0 -h1,21457:6630773,47279633:25952256,0,0 -) -] -(1,21457:4262630,4025873:0,0,0 -[1,21457:-473656,4025873:0,0,0 -(1,21457:-473656,-710413:0,0,0 -(1,21457:-473656,-710413:0,0,0 -g1,21457:-473656,-710413 -) -g1,21457:-473656,-710413 -) -] -) -] -!9636 -}389 -Input:3512:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3513:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3514:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3515:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!387 -{390 -[1,21478:4262630,47279633:28320399,43253760,11795 -(1,21478:4262630,4025873:0,0,0 -[1,21478:-473656,4025873:0,0,0 -(1,21478:-473656,-710413:0,0,0 -(1,21478:-473656,-644877:0,0,0 -k1,21478:-473656,-644877:-65536 +g1,21554:6630773,4812305 +g1,21554:6630773,4812305 +g1,21554:9573994,4812305 +g1,21554:10922069,4812305 +g1,21554:11737336,4812305 +g1,21554:13412436,4812305 +k1,21554:31387652,4812305:17975216 +) +) +] +[1,21554:6630773,45706769:25952256,40108032,0 +(1,21554:6630773,45706769:25952256,40108032,0 +(1,21554:6630773,45706769:0,0,0 +g1,21554:6630773,45706769 +) +[1,21554:6630773,45706769:25952256,40108032,0 +v1,21494:6630773,6254097:0,393216,0 +(1,21494:6630773,8238536:25952256,2377655,0 +g1,21494:6630773,8238536 +g1,21494:6237557,8238536 +r1,21554:6368629,8238536:131072,2377655,0 +g1,21494:6567858,8238536 +g1,21494:6764466,8238536 +[1,21494:6764466,8238536:25818563,2377655,0 +(1,21494:6764466,6374028:25818563,513147,134348 +k1,21493:7615966,6374028:235462 +k1,21493:8622130,6374028:235461 +k1,21493:11469857,6374028:235462 +k1,21493:13793950,6374028:235461 +k1,21493:16648231,6374028:235462 +k1,21493:18189825,6374028:235461 +k1,21493:19186815,6374028:235462 +k1,21493:22054857,6374028:235461 +k1,21493:23125903,6374028:235462 +k1,21493:24380449,6374028:235461 +k1,21493:27302232,6374028:235462 +k1,21493:28814990,6374028:235461 +k1,21493:29666490,6374028:235462 +k1,21493:31896867,6374028:235461 +k1,21493:32583029,6374028:0 +) +(1,21494:6764466,7239108:25818563,513147,134348 +k1,21493:7373698,7239108:253372 +k1,21493:8878152,7239108:253372 +k1,21493:9747563,7239108:253373 +k1,21493:13496625,7239108:253372 +k1,21493:14941442,7239108:253372 +k1,21493:16648403,7239108:253372 +k1,21493:18637169,7239108:253373 +k1,21493:21607664,7239108:253372 +k1,21493:22477074,7239108:253372 +k1,21493:23749531,7239108:253372 +k1,21493:27125695,7239108:253373 +k1,21493:28038359,7239108:253372 +k1,21493:31563944,7239108:253372 +k1,21493:32583029,7239108:0 +) +(1,21494:6764466,8104188:25818563,513147,134348 +g1,21493:9352482,8104188 +g1,21493:11640343,8104188 +g1,21493:12498864,8104188 +g1,21493:13717178,8104188 +g1,21493:15193704,8104188 +g1,21493:16584378,8104188 +g1,21493:20055820,8104188 +g1,21493:21043447,8104188 +g1,21493:24636786,8104188 +g1,21493:26027460,8104188 +k1,21494:32583029,8104188:2282622 +g1,21494:32583029,8104188 +) +] +g1,21494:32583029,8238536 +) +h1,21494:6630773,8238536:0,0,0 +(1,21496:6630773,11069696:25952256,32768,229376 +(1,21496:6630773,11069696:0,32768,229376 +(1,21496:6630773,11069696:5505024,32768,229376 +r1,21554:12135797,11069696:5505024,262144,229376 +) +k1,21496:6630773,11069696:-5505024 +) +(1,21496:6630773,11069696:25952256,32768,0 +r1,21554:32583029,11069696:25952256,32768,0 +) +) +(1,21496:6630773,12701548:25952256,615776,161218 +(1,21496:6630773,12701548:2464678,582746,14155 +g1,21496:6630773,12701548 +g1,21496:9095451,12701548 +) +g1,21496:12689446,12701548 +g1,21496:14506891,12701548 +g1,21496:15564642,12701548 +k1,21496:32583029,12701548:15046802 +g1,21496:32583029,12701548 +) +(1,21499:6630773,13959844:25952256,513147,134348 +k1,21498:8434498,13959844:241347 +k1,21498:9327273,13959844:241347 +k1,21498:10316387,13959844:241348 +k1,21498:13731643,13959844:241347 +k1,21498:14585752,13959844:241347 +k1,21498:15182959,13959844:241347 +k1,21498:17119067,13959844:241347 +k1,21498:20118825,13959844:241348 +k1,21498:21043057,13959844:241347 +k1,21498:24439963,13959844:241347 +k1,21498:25367472,13959844:241347 +k1,21498:26930680,13959844:241347 +k1,21498:27831320,13959844:241348 +k1,21498:29091752,13959844:241347 +k1,21498:30986572,13959844:241347 +k1,21498:32583029,13959844:0 +) +(1,21499:6630773,14824924:25952256,505283,126483 +k1,21498:8316717,14824924:155678 +k1,21498:9123822,14824924:155677 +k1,21498:10027266,14824924:155678 +k1,21498:13463676,14824924:155678 +k1,21498:14235391,14824924:155677 +k1,21498:16733326,14824924:155678 +k1,21498:19717537,14824924:155677 +k1,21498:22363583,14824924:155678 +k1,21498:24421771,14824924:155678 +k1,21498:25768893,14824924:155677 +k1,21498:28618756,14824924:155678 +k1,21498:32583029,14824924:0 +) +(1,21499:6630773,15690004:25952256,505283,134348 +k1,21498:8379328,15690004:150787 +k1,21498:9721560,15690004:150787 +k1,21498:12753966,15690004:150788 +k1,21498:13733783,15690004:150787 +k1,21498:17040129,15690004:150787 +k1,21498:18394157,15690004:150787 +k1,21498:22263458,15690004:150788 +k1,21498:23282597,15690004:150787 +k1,21498:24963650,15690004:150787 +k1,21498:25765865,15690004:150787 +k1,21498:27558985,15690004:150788 +k1,21498:29317370,15690004:150787 +k1,21498:32583029,15690004:0 +) +(1,21499:6630773,16555084:25952256,505283,134348 +k1,21498:8079472,16555084:257254 +k1,21498:10066221,16555084:257254 +k1,21498:13452819,16555084:257254 +k1,21498:14471601,16555084:257254 +k1,21498:17725816,16555084:257254 +k1,21498:20051386,16555084:257254 +k1,21498:20960067,16555084:257253 +k1,21498:22236406,16555084:257254 +k1,21498:25826821,16555084:257254 +k1,21498:27368581,16555084:257254 +k1,21498:29156101,16555084:257254 +k1,21498:30064783,16555084:257254 +k1,21498:31069803,16555084:257254 +k1,21498:32583029,16555084:0 +) +(1,21499:6630773,17420164:25952256,505283,126483 +g1,21498:9501249,17420164 +k1,21499:32583029,17420164:21152400 +g1,21499:32583029,17420164 +) +(1,21500:6630773,19536982:25952256,555811,147783 +(1,21500:6630773,19536982:2899444,534184,12975 +g1,21500:6630773,19536982 +g1,21500:9530217,19536982 +) +g1,21500:12167976,19536982 +g1,21500:13822433,19536982 +g1,21500:16269875,19536982 +g1,21500:17837103,19536982 +g1,21500:20247780,19536982 +g1,21500:21178457,19536982 +k1,21500:32583029,19536982:8083404 +g1,21500:32583029,19536982 +) +(1,21503:6630773,20795278:25952256,505283,134348 +k1,21502:8635592,20795278:221584 +k1,21502:11429465,20795278:221585 +k1,21502:13258647,20795278:221584 +k1,21502:14874182,20795278:221584 +k1,21502:18097969,20795278:221584 +k1,21502:20609382,20795278:221585 +k1,21502:21822526,20795278:221584 +k1,21502:25305837,20795278:221584 +k1,21502:27262814,20795278:221584 +k1,21502:30231013,20795278:221585 +(1,21502:30231013,20795278:0,414482,115847 +r1,21554:30589279,20795278:358266,530329,115847 +k1,21502:30231013,20795278:-358266 +) +(1,21502:30231013,20795278:358266,414482,115847 +k1,21502:30231013,20795278:3277 +h1,21502:30586002,20795278:0,411205,112570 +) +k1,21502:30810863,20795278:221584 +k1,21502:31683875,20795278:221584 +k1,21503:32583029,20795278:0 +) +(1,21503:6630773,21660358:25952256,513147,134348 +k1,21502:9074544,21660358:193265 +k1,21502:11948233,21660358:193266 +k1,21502:13160583,21660358:193265 +k1,21502:16546763,21660358:193266 +k1,21502:20841271,21660358:193265 +k1,21502:22231224,21660358:193266 +k1,21502:25450286,21660358:193265 +k1,21502:26928058,21660358:193266 +k1,21502:29050703,21660358:193265 +k1,21502:30521266,21660358:193266 +k1,21502:32583029,21660358:0 +) +(1,21503:6630773,22525438:25952256,513147,134348 +k1,21502:8938145,22525438:231191 +k1,21502:10280826,22525438:231190 +k1,21502:11503577,22525438:231191 +k1,21502:15771785,22525438:231190 +k1,21502:16662268,22525438:231191 +k1,21502:19183286,22525438:231190 +k1,21502:20605922,22525438:231191 +k1,21502:21856197,22525438:231190 +k1,21502:24377216,22525438:231191 +k1,21502:25988594,22525438:231190 +k1,21502:28230430,22525438:231191 +k1,21502:29565902,22525438:231190 +k1,21502:30544859,22525438:231191 +k1,21502:32583029,22525438:0 +) +(1,21503:6630773,23390518:25952256,505283,126483 +g1,21502:7446040,23390518 +g1,21502:10660580,23390518 +g1,21502:12051254,23390518 +g1,21502:13740772,23390518 +g1,21502:15925087,23390518 +g1,21502:18089741,23390518 +g1,21502:18940398,23390518 +g1,21502:21810874,23390518 +g1,21502:23617701,23390518 +g1,21502:24429692,23390518 +g1,21502:24984781,23390518 +g1,21502:26637599,23390518 +k1,21503:32583029,23390518:4346352 +g1,21503:32583029,23390518 +) +(1,21505:6630773,24255598:25952256,505283,126483 +h1,21504:6630773,24255598:983040,0,0 +k1,21504:8726308,24255598:158946 +k1,21504:10814633,24255598:158945 +k1,21504:11329439,24255598:158946 +k1,21504:12765681,24255598:158945 +k1,21504:14116072,24255598:158946 +k1,21504:15665692,24255598:158946 +k1,21504:16282734,24255598:158945 +k1,21504:17093108,24255598:158946 +k1,21504:19763393,24255598:158945 +(1,21504:19763393,24255598:0,452978,115847 +r1,21554:21880218,24255598:2116825,568825,115847 +k1,21504:19763393,24255598:-2116825 +) +(1,21504:19763393,24255598:2116825,452978,115847 +k1,21504:19763393,24255598:3277 +h1,21504:21876941,24255598:0,411205,112570 +) +k1,21504:22039164,24255598:158946 +k1,21504:23389555,24255598:158946 +k1,21504:24416852,24255598:158945 +k1,21504:27844734,24255598:158946 +k1,21504:29394353,24255598:158945 +k1,21504:30572384,24255598:158946 +k1,21504:32583029,24255598:0 +) +(1,21505:6630773,25120678:25952256,513147,126483 +g1,21504:9608729,25120678 +g1,21504:10569486,25120678 +g1,21504:11124575,25120678 +g1,21504:12423498,25120678 +g1,21504:13274155,25120678 +g1,21504:16168880,25120678 +(1,21504:16168880,25120678:0,452978,115847 +r1,21554:18285705,25120678:2116825,568825,115847 +k1,21504:16168880,25120678:-2116825 +) +(1,21504:16168880,25120678:2116825,452978,115847 +k1,21504:16168880,25120678:3277 +h1,21504:18282428,25120678:0,411205,112570 +) +k1,21505:32583029,25120678:14123654 +g1,21505:32583029,25120678 +) +v1,21507:6630773,25805533:0,393216,0 +(1,21519:6630773,31618450:25952256,6206133,196608 +g1,21519:6630773,31618450 +g1,21519:6630773,31618450 +g1,21519:6434165,31618450 +(1,21519:6434165,31618450:0,6206133,196608 +r1,21554:32779637,31618450:26345472,6402741,196608 +k1,21519:6434165,31618450:-26345472 +) +(1,21519:6434165,31618450:26345472,6206133,196608 +[1,21519:6630773,31618450:25952256,6009525,0 +(1,21509:6630773,26033364:25952256,424439,112852 +(1,21508:6630773,26033364:0,0,0 +g1,21508:6630773,26033364 +g1,21508:6630773,26033364 +g1,21508:6303093,26033364 +(1,21508:6303093,26033364:0,0,0 +) +g1,21508:6630773,26033364 +) +g1,21509:8954451,26033364 +g1,21509:9950313,26033364 +g1,21509:13933761,26033364 +g1,21509:14597669,26033364 +k1,21509:14597669,26033364:0 +h1,21509:16921347,26033364:0,0,0 +k1,21509:32583029,26033364:15661682 +g1,21509:32583029,26033364 +) +(1,21510:6630773,26718219:25952256,424439,112852 +h1,21510:6630773,26718219:0,0,0 +g1,21510:6962727,26718219 +g1,21510:7294681,26718219 +g1,21510:7626635,26718219 +g1,21510:7958589,26718219 +g1,21510:8290543,26718219 +g1,21510:8622497,26718219 +g1,21510:8954451,26718219 +g1,21510:9286405,26718219 +g1,21510:9618359,26718219 +g1,21510:9950313,26718219 +g1,21510:10282267,26718219 +g1,21510:10614221,26718219 +g1,21510:10946175,26718219 +g1,21510:11278129,26718219 +g1,21510:11610083,26718219 +g1,21510:11942037,26718219 +g1,21510:12273991,26718219 +g1,21510:14265715,26718219 +g1,21510:14929623,26718219 +g1,21510:16921347,26718219 +g1,21510:17585255,26718219 +g1,21510:18249163,26718219 +k1,21510:18249163,26718219:0 +h1,21510:19576979,26718219:0,0,0 +k1,21510:32583029,26718219:13006050 +g1,21510:32583029,26718219 +) +(1,21511:6630773,27403074:25952256,431045,106246 +h1,21511:6630773,27403074:0,0,0 +g1,21511:6962727,27403074 +g1,21511:7294681,27403074 +g1,21511:7626635,27403074 +g1,21511:7958589,27403074 +g1,21511:8290543,27403074 +g1,21511:8622497,27403074 +g1,21511:8954451,27403074 +g1,21511:9286405,27403074 +g1,21511:9618359,27403074 +g1,21511:9950313,27403074 +g1,21511:10282267,27403074 +g1,21511:10614221,27403074 +g1,21511:10946175,27403074 +g1,21511:11278129,27403074 +g1,21511:11610083,27403074 +g1,21511:11942037,27403074 +g1,21511:12273991,27403074 +g1,21511:14265715,27403074 +g1,21511:14929623,27403074 +g1,21511:19576979,27403074 +h1,21511:19908933,27403074:0,0,0 +k1,21511:32583029,27403074:12674096 +g1,21511:32583029,27403074 +) +(1,21512:6630773,28087929:25952256,424439,112852 +h1,21512:6630773,28087929:0,0,0 +g1,21512:6962727,28087929 +g1,21512:7294681,28087929 +g1,21512:7626635,28087929 +g1,21512:7958589,28087929 +g1,21512:8290543,28087929 +g1,21512:8622497,28087929 +g1,21512:8954451,28087929 +g1,21512:9286405,28087929 +g1,21512:9618359,28087929 +g1,21512:9950313,28087929 +k1,21512:9950313,28087929:0 +h1,21512:13933760,28087929:0,0,0 +k1,21512:32583028,28087929:18649268 +g1,21512:32583028,28087929 +) +(1,21513:6630773,28772784:25952256,0,0 +h1,21513:6630773,28772784:0,0,0 +h1,21513:6630773,28772784:0,0,0 +k1,21513:32583029,28772784:25952256 +g1,21513:32583029,28772784 +) +(1,21514:6630773,29457639:25952256,424439,112852 +h1,21514:6630773,29457639:0,0,0 +g1,21514:8954451,29457639 +g1,21514:9950313,29457639 +g1,21514:12273991,29457639 +g1,21514:12937899,29457639 +g1,21514:15593531,29457639 +k1,21514:15593531,29457639:0 +h1,21514:20572840,29457639:0,0,0 +k1,21514:32583029,29457639:12010189 +g1,21514:32583029,29457639 +) +(1,21515:6630773,30142494:25952256,424439,106246 +h1,21515:6630773,30142494:0,0,0 +g1,21515:6962727,30142494 +g1,21515:7294681,30142494 +g1,21515:7626635,30142494 +g1,21515:7958589,30142494 +g1,21515:8290543,30142494 +g1,21515:8622497,30142494 +g1,21515:8954451,30142494 +g1,21515:9286405,30142494 +g1,21515:9618359,30142494 +g1,21515:9950313,30142494 +g1,21515:10282267,30142494 +g1,21515:10614221,30142494 +g1,21515:10946175,30142494 +g1,21515:11278129,30142494 +g1,21515:11610083,30142494 +g1,21515:12273991,30142494 +g1,21515:12937899,30142494 +g1,21515:15261577,30142494 +k1,21515:15261577,30142494:0 +h1,21515:19245024,30142494:0,0,0 +k1,21515:32583029,30142494:13338005 +g1,21515:32583029,30142494 +) +(1,21516:6630773,30827349:25952256,431045,106246 +h1,21516:6630773,30827349:0,0,0 +g1,21516:6962727,30827349 +g1,21516:7294681,30827349 +g1,21516:7626635,30827349 +g1,21516:7958589,30827349 +g1,21516:8290543,30827349 +g1,21516:8622497,30827349 +g1,21516:8954451,30827349 +g1,21516:9286405,30827349 +g1,21516:9618359,30827349 +g1,21516:9950313,30827349 +g1,21516:10282267,30827349 +g1,21516:10614221,30827349 +g1,21516:10946175,30827349 +g1,21516:11278129,30827349 +g1,21516:11610083,30827349 +g1,21516:13601807,30827349 +g1,21516:14265715,30827349 +g1,21516:16921347,30827349 +k1,21516:16921347,30827349:0 +h1,21516:21900656,30827349:0,0,0 +k1,21516:32583029,30827349:10682373 +g1,21516:32583029,30827349 +) +(1,21517:6630773,31512204:25952256,431045,106246 +h1,21517:6630773,31512204:0,0,0 +g1,21517:6962727,31512204 +g1,21517:7294681,31512204 +g1,21517:7626635,31512204 +g1,21517:7958589,31512204 +g1,21517:8290543,31512204 +g1,21517:8622497,31512204 +g1,21517:8954451,31512204 +g1,21517:9286405,31512204 +g1,21517:9618359,31512204 +g1,21517:9950313,31512204 +g1,21517:10282267,31512204 +g1,21517:10614221,31512204 +g1,21517:10946175,31512204 +g1,21517:11278129,31512204 +g1,21517:11610083,31512204 +g1,21517:13601807,31512204 +g1,21517:14265715,31512204 +g1,21517:16921347,31512204 +h1,21517:21900656,31512204:0,0,0 +k1,21517:32583029,31512204:10682373 +g1,21517:32583029,31512204 +) +] +) +g1,21519:32583029,31618450 +g1,21519:6630773,31618450 +g1,21519:6630773,31618450 +g1,21519:32583029,31618450 +g1,21519:32583029,31618450 +) +h1,21519:6630773,31815058:0,0,0 +(1,21523:6630773,32680138:25952256,513147,126483 +h1,21522:6630773,32680138:983040,0,0 +k1,21522:8788078,32680138:220716 +k1,21522:11945462,32680138:220716 +k1,21522:13185262,32680138:220715 +k1,21522:14812381,32680138:220716 +k1,21522:16310394,32680138:220716 +k1,21522:18098731,32680138:220716 +k1,21522:19338532,32680138:220716 +k1,21522:20731686,32680138:220715 +k1,21522:22604565,32680138:220716 +k1,21522:23693633,32680138:220716 +k1,21522:25725764,32680138:220716 +k1,21522:27213945,32680138:220715 +k1,21522:30449972,32680138:220716 +k1,21522:32051532,32680138:220716 +k1,21522:32583029,32680138:0 +) +(1,21523:6630773,33545218:25952256,513147,134348 +k1,21522:8762473,33545218:154479 +k1,21522:10614991,33545218:154480 +k1,21522:11637822,33545218:154479 +k1,21522:13322568,33545218:154480 +k1,21522:14128475,33545218:154479 +k1,21522:16212334,33545218:154479 +k1,21522:18598315,33545218:154480 +k1,21522:20360392,33545218:154479 +k1,21522:23300806,33545218:154479 +k1,21522:24739792,33545218:154480 +k1,21522:26466480,33545218:154479 +(1,21522:26466480,33545218:0,414482,115847 +r1,21554:27879881,33545218:1413401,530329,115847 +k1,21522:26466480,33545218:-1413401 +) +(1,21522:26466480,33545218:1413401,414482,115847 +k1,21522:26466480,33545218:3277 +h1,21522:27876604,33545218:0,411205,112570 +) +k1,21522:28034361,33545218:154480 +k1,21522:31591469,33545218:154479 +k1,21522:32583029,33545218:0 +) +(1,21523:6630773,34410298:25952256,505283,126483 +k1,21522:8342901,34410298:198902 +k1,21522:12562436,34410298:198901 +k1,21522:13389173,34410298:198902 +k1,21522:14607159,34410298:198901 +k1,21522:17467478,34410298:198902 +k1,21522:19695374,34410298:198901 +k1,21522:20762628,34410298:198902 +k1,21522:22772945,34410298:198902 +k1,21522:24668573,34410298:198901 +k1,21522:27109462,34410298:198902 +k1,21522:28380532,34410298:198901 +k1,21522:29598519,34410298:198902 +k1,21522:32583029,34410298:0 +) +(1,21523:6630773,35275378:25952256,513147,126483 +g1,21522:7934284,35275378 +g1,21522:8881279,35275378 +g1,21522:10593734,35275378 +g1,21522:11740614,35275378 +g1,21522:13641813,35275378 +g1,21522:15118339,35275378 +g1,21522:19245141,35275378 +g1,21522:20127255,35275378 +g1,21522:21650311,35275378 +g1,21522:22508832,35275378 +k1,21523:32583029,35275378:5972954 +g1,21523:32583029,35275378 +) +v1,21525:6630773,36140458:0,393216,0 +(1,21526:6630773,38239658:25952256,2492416,0 +g1,21526:6630773,38239658 +g1,21526:6237557,38239658 +r1,21554:6368629,38239658:131072,2492416,0 +g1,21526:6567858,38239658 +g1,21526:6764466,38239658 +[1,21526:6764466,38239658:25818563,2492416,0 +(1,21526:6764466,36501635:25818563,754393,260573 +(1,21525:6764466,36501635:0,754393,260573 +r1,21554:8010564,36501635:1246098,1014966,260573 +k1,21525:6764466,36501635:-1246098 +) +(1,21525:6764466,36501635:1246098,754393,260573 +) +k1,21525:8191380,36501635:180816 +k1,21525:8519060,36501635:327680 +k1,21525:10483110,36501635:180815 +k1,21525:14147820,36501635:180816 +k1,21525:15936234,36501635:180816 +k1,21525:17511001,36501635:180816 +k1,21525:18710901,36501635:180815 +(1,21525:18710901,36501635:0,414482,115847 +r1,21554:19069167,36501635:358266,530329,115847 +k1,21525:18710901,36501635:-358266 +) +(1,21525:18710901,36501635:358266,414482,115847 +k1,21525:18710901,36501635:3277 +h1,21525:19065890,36501635:0,411205,112570 +) +k1,21525:19249983,36501635:180816 +k1,21525:22351083,36501635:180816 +k1,21525:23550984,36501635:180816 +k1,21525:28137785,36501635:180815 +k1,21525:30961013,36501635:180816 +k1,21525:32583029,36501635:0 +) +(1,21526:6764466,37366715:25818563,513147,134348 +k1,21525:7750523,37366715:238291 +k1,21525:8344673,37366715:238290 +(1,21525:8344673,37366715:0,452978,122846 +r1,21554:9758074,37366715:1413401,575824,122846 +k1,21525:8344673,37366715:-1413401 +) +(1,21525:8344673,37366715:1413401,452978,122846 +k1,21525:8344673,37366715:3277 +h1,21525:9754797,37366715:0,411205,112570 +) +k1,21525:9996365,37366715:238291 +k1,21525:12367853,37366715:238291 +k1,21525:13802830,37366715:238290 +k1,21525:15115256,37366715:238291 +k1,21525:17995958,37366715:238290 +k1,21525:18765746,37366715:238291 +k1,21525:20969462,37366715:238291 +k1,21525:21859180,37366715:238290 +k1,21525:23116556,37366715:238291 +(1,21525:23116556,37366715:0,452978,122846 +r1,21554:24529957,37366715:1413401,575824,122846 +k1,21525:23116556,37366715:-1413401 +) +(1,21525:23116556,37366715:1413401,452978,122846 +k1,21525:23116556,37366715:3277 +h1,21525:24526680,37366715:0,411205,112570 +) +k1,21525:24768248,37366715:238291 +k1,21525:26966064,37366715:238290 +k1,21525:28395800,37366715:238291 +k1,21525:29653175,37366715:238290 +k1,21525:31734338,37366715:238291 +k1,21526:32583029,37366715:0 +) +(1,21526:6764466,38231795:25818563,505283,7863 +k1,21526:32583028,38231795:23501864 +g1,21526:32583028,38231795 +) +] +g1,21526:32583029,38239658 +) +h1,21526:6630773,38239658:0,0,0 +v1,21529:6630773,38924513:0,393216,0 +(1,21535:6630773,40628300:25952256,2097003,196608 +g1,21535:6630773,40628300 +g1,21535:6630773,40628300 +g1,21535:6434165,40628300 +(1,21535:6434165,40628300:0,2097003,196608 +r1,21554:32779637,40628300:26345472,2293611,196608 +k1,21535:6434165,40628300:-26345472 +) +(1,21535:6434165,40628300:26345472,2097003,196608 +[1,21535:6630773,40628300:25952256,1900395,0 +(1,21531:6630773,39152344:25952256,424439,106246 +(1,21530:6630773,39152344:0,0,0 +g1,21530:6630773,39152344 +g1,21530:6630773,39152344 +g1,21530:6303093,39152344 +(1,21530:6303093,39152344:0,0,0 +) +g1,21530:6630773,39152344 +) +h1,21531:8622497,39152344:0,0,0 +k1,21531:32583029,39152344:23960532 +g1,21531:32583029,39152344 +) +(1,21532:6630773,39837199:25952256,424439,106246 +h1,21532:6630773,39837199:0,0,0 +g1,21532:8954451,39837199 +g1,21532:9618359,39837199 +g1,21532:11942037,39837199 +g1,21532:12605945,39837199 +k1,21532:12605945,39837199:0 +h1,21532:16589392,39837199:0,0,0 +k1,21532:32583029,39837199:15993637 +g1,21532:32583029,39837199 +) +(1,21533:6630773,40522054:25952256,424439,106246 +h1,21533:6630773,40522054:0,0,0 +g1,21533:8954451,40522054 +g1,21533:9618359,40522054 +g1,21533:11942037,40522054 +g1,21533:12605945,40522054 +g1,21533:16921346,40522054 +g1,21533:17585254,40522054 +g1,21533:20240886,40522054 +h1,21533:21236748,40522054:0,0,0 +k1,21533:32583029,40522054:11346281 +g1,21533:32583029,40522054 +) +] +) +g1,21535:32583029,40628300 +g1,21535:6630773,40628300 +g1,21535:6630773,40628300 +g1,21535:32583029,40628300 +g1,21535:32583029,40628300 +) +h1,21535:6630773,40824908:0,0,0 +(1,21539:6630773,41689988:25952256,505283,7863 +h1,21538:6630773,41689988:983040,0,0 +g1,21538:8766591,41689988 +g1,21538:10070102,41689988 +g1,21538:11555147,41689988 +g1,21538:13145050,41689988 +g1,21538:17402268,41689988 +k1,21539:32583029,41689988:12833917 +g1,21539:32583029,41689988 +) +v1,21541:6630773,42374843:0,393216,0 +(1,21546:6630773,43400381:25952256,1418754,196608 +g1,21546:6630773,43400381 +g1,21546:6630773,43400381 +g1,21546:6434165,43400381 +(1,21546:6434165,43400381:0,1418754,196608 +r1,21554:32779637,43400381:26345472,1615362,196608 +k1,21546:6434165,43400381:-26345472 +) +(1,21546:6434165,43400381:26345472,1418754,196608 +[1,21546:6630773,43400381:25952256,1222146,0 +(1,21543:6630773,42602674:25952256,424439,112852 +(1,21542:6630773,42602674:0,0,0 +g1,21542:6630773,42602674 +g1,21542:6630773,42602674 +g1,21542:6303093,42602674 +(1,21542:6303093,42602674:0,0,0 +) +g1,21542:6630773,42602674 +) +g1,21543:9950312,42602674 +g1,21543:10946174,42602674 +g1,21543:13269852,42602674 +g1,21543:13933760,42602674 +k1,21543:13933760,42602674:0 +h1,21543:23560425,42602674:0,0,0 +k1,21543:32583029,42602674:9022604 +g1,21543:32583029,42602674 +) +(1,21544:6630773,43287529:25952256,424439,112852 +h1,21544:6630773,43287529:0,0,0 +g1,21544:9950312,43287529 +g1,21544:10614220,43287529 +g1,21544:12937898,43287529 +g1,21544:13601806,43287529 +k1,21544:13601806,43287529:0 +h1,21544:17585253,43287529:0,0,0 +k1,21544:32583029,43287529:14997776 +g1,21544:32583029,43287529 +) +] +) +g1,21546:32583029,43400381 +g1,21546:6630773,43400381 +g1,21546:6630773,43400381 +g1,21546:32583029,43400381 +g1,21546:32583029,43400381 +) +h1,21546:6630773,43596989:0,0,0 +] +(1,21554:32583029,45706769:0,0,0 +g1,21554:32583029,45706769 +) +) +] +(1,21554:6630773,47279633:25952256,0,0 +h1,21554:6630773,47279633:25952256,0,0 +) +] +(1,21554:4262630,4025873:0,0,0 +[1,21554:-473656,4025873:0,0,0 +(1,21554:-473656,-710413:0,0,0 +(1,21554:-473656,-710413:0,0,0 +g1,21554:-473656,-710413 +) +g1,21554:-473656,-710413 +) +] +) +] +!25439 +}370 +Input:3541:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3542:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3543:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3544:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3545:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!482 +{371 +[1,21608:4262630,47279633:28320399,43253760,0 +(1,21608:4262630,4025873:0,0,0 +[1,21608:-473656,4025873:0,0,0 +(1,21608:-473656,-710413:0,0,0 +(1,21608:-473656,-644877:0,0,0 +k1,21608:-473656,-644877:-65536 ) -(1,21478:-473656,4736287:0,0,0 -k1,21478:-473656,4736287:5209943 +(1,21608:-473656,4736287:0,0,0 +k1,21608:-473656,4736287:5209943 ) -g1,21478:-473656,-710413 +g1,21608:-473656,-710413 ) ] ) -[1,21478:6630773,47279633:25952256,43253760,11795 -[1,21478:6630773,4812305:25952256,786432,0 -(1,21478:6630773,4812305:25952256,0,0 -(1,21478:6630773,4812305:25952256,0,0 -g1,21478:3078558,4812305 -[1,21478:3078558,4812305:0,0,0 -(1,21478:3078558,2439708:0,1703936,0 -k1,21478:1358238,2439708:-1720320 -(1,21457:1358238,2439708:1720320,1703936,0 -(1,21457:1358238,2439708:1179648,16384,0 -r1,21478:2537886,2439708:1179648,16384,0 +[1,21608:6630773,47279633:25952256,43253760,0 +[1,21608:6630773,4812305:25952256,786432,0 +(1,21608:6630773,4812305:25952256,513147,126483 +(1,21608:6630773,4812305:25952256,513147,126483 +g1,21608:3078558,4812305 +[1,21608:3078558,4812305:0,0,0 +(1,21608:3078558,2439708:0,1703936,0 +k1,21608:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,21608:2537886,2439708:1179648,16384,0 ) -g1,21457:3062174,2439708 -(1,21457:3062174,2439708:16384,1703936,0 -[1,21457:3062174,2439708:25952256,1703936,0 -(1,21457:3062174,1915420:25952256,1179648,0 -(1,21457:3062174,1915420:16384,1179648,0 -r1,21478:3078558,1915420:16384,1179648,0 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,21608:3078558,1915420:16384,1179648,0 ) -k1,21457:29014430,1915420:25935872 -g1,21457:29014430,1915420 +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] ) ) ) ] -[1,21478:3078558,4812305:0,0,0 -(1,21478:3078558,2439708:0,1703936,0 -g1,21478:29030814,2439708 -g1,21478:36135244,2439708 -(1,21457:36135244,2439708:1720320,1703936,0 -(1,21457:36135244,2439708:16384,1703936,0 -[1,21457:36135244,2439708:25952256,1703936,0 -(1,21457:36135244,1915420:25952256,1179648,0 -(1,21457:36135244,1915420:16384,1179648,0 -r1,21478:36151628,1915420:16384,1179648,0 +[1,21608:3078558,4812305:0,0,0 +(1,21608:3078558,2439708:0,1703936,0 +g1,21608:29030814,2439708 +g1,21608:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,21608:36151628,1915420:16384,1179648,0 ) -k1,21457:62087500,1915420:25935872 -g1,21457:62087500,1915420 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) ] ) -g1,21457:36675916,2439708 -(1,21457:36675916,2439708:1179648,16384,0 -r1,21478:37855564,2439708:1179648,16384,0 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,21608:37855564,2439708:1179648,16384,0 ) ) -k1,21478:3078556,2439708:-34777008 +k1,21608:3078556,2439708:-34777008 ) ] -[1,21478:3078558,4812305:0,0,0 -(1,21478:3078558,49800853:0,16384,2228224 -k1,21478:1358238,49800853:-1720320 -(1,21457:1358238,49800853:1720320,16384,2228224 -(1,21457:1358238,49800853:1179648,16384,0 -r1,21478:2537886,49800853:1179648,16384,0 +[1,21608:3078558,4812305:0,0,0 +(1,21608:3078558,49800853:0,16384,2228224 +k1,21608:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,21608:2537886,49800853:1179648,16384,0 ) -g1,21457:3062174,49800853 -(1,21457:3062174,52029077:16384,1703936,0 -[1,21457:3062174,52029077:25952256,1703936,0 -(1,21457:3062174,51504789:25952256,1179648,0 -(1,21457:3062174,51504789:16384,1179648,0 -r1,21478:3078558,51504789:16384,1179648,0 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,21608:3078558,51504789:16384,1179648,0 ) -k1,21457:29014430,51504789:25935872 -g1,21457:29014430,51504789 +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 ) ] ) ) ) ] -[1,21478:3078558,4812305:0,0,0 -(1,21478:3078558,49800853:0,16384,2228224 -g1,21478:29030814,49800853 -g1,21478:36135244,49800853 -(1,21457:36135244,49800853:1720320,16384,2228224 -(1,21457:36135244,52029077:16384,1703936,0 -[1,21457:36135244,52029077:25952256,1703936,0 -(1,21457:36135244,51504789:25952256,1179648,0 -(1,21457:36135244,51504789:16384,1179648,0 -r1,21478:36151628,51504789:16384,1179648,0 +[1,21608:3078558,4812305:0,0,0 +(1,21608:3078558,49800853:0,16384,2228224 +g1,21608:29030814,49800853 +g1,21608:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,21608:36151628,51504789:16384,1179648,0 ) -k1,21457:62087500,51504789:25935872 -g1,21457:62087500,51504789 +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 +) +] +) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,21608:37855564,49800853:1179648,16384,0 +) +) +k1,21608:3078556,49800853:-34777008 +) +] +g1,21608:6630773,4812305 +k1,21608:21350816,4812305:13524666 +g1,21608:21999622,4812305 +g1,21608:25611966,4812305 +g1,21608:28956923,4812305 +g1,21608:29772190,4812305 +) +) +] +[1,21608:6630773,45706769:25952256,40108032,0 +(1,21608:6630773,45706769:25952256,40108032,0 +(1,21608:6630773,45706769:0,0,0 +g1,21608:6630773,45706769 +) +[1,21608:6630773,45706769:25952256,40108032,0 +(1,21549:6630773,6254097:25952256,555811,147783 +(1,21549:6630773,6254097:2899444,534184,12975 +g1,21549:6630773,6254097 +g1,21549:9530217,6254097 +) +g1,21549:12167976,6254097 +g1,21549:13822433,6254097 +g1,21549:16269875,6254097 +g1,21549:17837103,6254097 +g1,21549:20247780,6254097 +g1,21549:21178457,6254097 +k1,21549:32583029,6254097:9900062 +g1,21549:32583029,6254097 +) +(1,21552:6630773,7512393:25952256,513147,134348 +k1,21551:7338329,7512393:229799 +k1,21551:8587212,7512393:229798 +k1,21551:10797509,7512393:229799 +k1,21551:11678736,7512393:229799 +k1,21551:12656300,7512393:229798 +k1,21551:13978584,7512393:229799 +k1,21551:16888806,7512393:229799 +k1,21551:17933873,7512393:229799 +k1,21551:19229942,7512393:229798 +k1,21551:21797410,7512393:229799 +k1,21551:22383069,7512393:229799 +(1,21551:22383069,7512393:0,452978,122846 +r1,21608:23796470,7512393:1413401,575824,122846 +k1,21551:22383069,7512393:-1413401 +) +(1,21551:22383069,7512393:1413401,452978,122846 +k1,21551:22383069,7512393:3277 +h1,21551:23793193,7512393:0,411205,112570 +) +k1,21551:24026268,7512393:229798 +k1,21551:26389264,7512393:229799 +k1,21551:27487415,7512393:229799 +k1,21551:28821495,7512393:229798 +k1,21551:30943974,7512393:229799 +k1,21551:32583029,7512393:0 +) +(1,21552:6630773,8377473:25952256,505283,134348 +k1,21551:8153371,8377473:255132 +k1,21551:9179206,8377473:255132 +k1,21551:9849124,8377473:255075 +k1,21551:11097782,8377473:255132 +k1,21551:12544359,8377473:255132 +k1,21551:14190165,8377473:255132 +k1,21551:15077063,8377473:255131 +k1,21551:17115430,8377473:255132 +k1,21551:18238914,8377473:255132 +k1,21551:19947635,8377473:255132 +k1,21551:21400110,8377473:255132 +k1,21551:22674326,8377473:255131 +k1,21551:24740873,8377473:255132 +k1,21551:25989531,8377473:255132 +k1,21551:26896091,8377473:255132 +k1,21551:27507082,8377473:255131 +(1,21551:27507082,8377473:0,452978,122846 +r1,21608:28920483,8377473:1413401,575824,122846 +k1,21551:27507082,8377473:-1413401 +) +(1,21551:27507082,8377473:1413401,452978,122846 +k1,21551:27507082,8377473:3277 +h1,21551:28917206,8377473:0,411205,112570 +) +k1,21551:29175615,8377473:255132 +k1,21551:31563944,8377473:255132 +k1,21551:32583029,8377473:0 +) +(1,21552:6630773,9242553:25952256,513147,134348 +g1,21551:9783710,9242553 +g1,21551:10642231,9242553 +g1,21551:11860545,9242553 +g1,21551:13053300,9242553 +g1,21551:14244089,9242553 +g1,21551:16408743,9242553 +g1,21551:17764682,9242553 +g1,21551:18725439,9242553 +g1,21551:20081378,9242553 +g1,21551:20932035,9242553 +g1,21551:22150349,9242553 +g1,21551:23626875,9242553 +g1,21551:27140915,9242553 +g1,21551:28848783,9242553 +k1,21552:32583029,9242553:1821250 +g1,21552:32583029,9242553 +) +v1,21554:6630773,9927408:0,393216,0 +(1,21559:6630773,10952946:25952256,1418754,196608 +g1,21559:6630773,10952946 +g1,21559:6630773,10952946 +g1,21559:6434165,10952946 +(1,21559:6434165,10952946:0,1418754,196608 +r1,21608:32779637,10952946:26345472,1615362,196608 +k1,21559:6434165,10952946:-26345472 +) +(1,21559:6434165,10952946:26345472,1418754,196608 +[1,21559:6630773,10952946:25952256,1222146,0 +(1,21556:6630773,10155239:25952256,424439,106246 +(1,21555:6630773,10155239:0,0,0 +g1,21555:6630773,10155239 +g1,21555:6630773,10155239 +g1,21555:6303093,10155239 +(1,21555:6303093,10155239:0,0,0 +) +g1,21555:6630773,10155239 +) +g1,21556:9286405,10155239 +g1,21556:10282267,10155239 +g1,21556:14597669,10155239 +k1,21556:14597669,10155239:0 +h1,21556:18913070,10155239:0,0,0 +k1,21556:32583029,10155239:13669959 +g1,21556:32583029,10155239 +) +(1,21557:6630773,10840094:25952256,424439,112852 +h1,21557:6630773,10840094:0,0,0 +g1,21557:9950312,10840094 +g1,21557:10614220,10840094 +h1,21557:12937898,10840094:0,0,0 +k1,21557:32583030,10840094:19645132 +g1,21557:32583030,10840094 +) +] +) +g1,21559:32583029,10952946 +g1,21559:6630773,10952946 +g1,21559:6630773,10952946 +g1,21559:32583029,10952946 +g1,21559:32583029,10952946 +) +h1,21559:6630773,11149554:0,0,0 +v1,21563:6630773,12014634:0,393216,0 +(1,21564:6630773,15008834:25952256,3387416,0 +g1,21564:6630773,15008834 +g1,21564:6237557,15008834 +r1,21608:6368629,15008834:131072,3387416,0 +g1,21564:6567858,15008834 +g1,21564:6764466,15008834 +[1,21564:6764466,15008834:25818563,3387416,0 +(1,21564:6764466,12287111:25818563,665693,196608 +(1,21563:6764466,12287111:0,665693,196608 +r1,21608:8010564,12287111:1246098,862301,196608 +k1,21563:6764466,12287111:-1246098 +) +(1,21563:6764466,12287111:1246098,665693,196608 +) +k1,21563:8186288,12287111:175724 +k1,21563:9912506,12287111:327680 +k1,21563:12116569,12287111:175724 +k1,21563:13311378,12287111:175724 +k1,21563:14983290,12287111:175725 +k1,21563:16329487,12287111:175724 +k1,21563:18313349,12287111:175724 +k1,21563:19436724,12287111:175724 +k1,21563:20631533,12287111:175724 +k1,21563:25057922,12287111:175724 +k1,21563:27794139,12287111:175725 +k1,21563:28585901,12287111:175724 +k1,21563:31040312,12287111:175724 +h1,21563:32409359,12287111:0,0,0 +k1,21563:32583029,12287111:0 +) +(1,21564:6764466,13152191:25818563,513147,134348 +k1,21563:8078211,13152191:241576 +k1,21563:9523027,13152191:241575 +k1,21563:11363681,13152191:241576 +k1,21563:15507271,13152191:241576 +k1,21563:16940291,13152191:241575 +k1,21563:19215449,13152191:241576 +k1,21563:21680006,13152191:241576 +k1,21563:22580874,13152191:241576 +k1,21563:25691615,13152191:241575 +k1,21563:27217697,13152191:241576 +k1,21563:28629746,13152191:241576 +k1,21563:30942259,13152191:241575 +k1,21563:31835263,13152191:241576 +k1,21563:32583029,13152191:0 +) +(1,21564:6764466,14017271:25818563,513147,134348 +k1,21563:8949249,14017271:207562 +k1,21563:12647914,14017271:207562 +k1,21563:14553514,14017271:207562 +k1,21563:18244969,14017271:207561 +k1,21563:18808391,14017271:207562 +k1,21563:21778296,14017271:207562 +k1,21563:23263155,14017271:207562 +k1,21563:24130009,14017271:207562 +k1,21563:25356656,14017271:207562 +k1,21563:27217691,14017271:207562 +k1,21563:28985009,14017271:207561 +k1,21563:29875456,14017271:207562 +k1,21563:30438878,14017271:207562 +k1,21563:31923737,14017271:207562 +k1,21563:32583029,14017271:0 +) +(1,21564:6764466,14882351:25818563,513147,126483 +g1,21563:7319555,14882351 +g1,21563:10281127,14882351 +g1,21563:11866442,14882351 +g1,21563:13633292,14882351 +g1,21563:14851606,14882351 +g1,21563:16704308,14882351 +k1,21564:32583029,14882351:14315687 +g1,21564:32583029,14882351 +) +] +g1,21564:32583029,15008834 +) +h1,21564:6630773,15008834:0,0,0 +(1,21566:6630773,17125652:25952256,564462,147783 +(1,21566:6630773,17125652:2899444,534184,12975 +g1,21566:6630773,17125652 +g1,21566:9530217,17125652 +) +g1,21566:11808970,17125652 +g1,21566:15475448,17125652 +g1,21566:16478936,17125652 +g1,21566:19712876,17125652 +k1,21566:32583029,17125652:10490475 +g1,21566:32583029,17125652 +) +(1,21569:6630773,18383948:25952256,505283,134348 +k1,21568:8666019,18383948:252011 +k1,21568:9937115,18383948:252011 +k1,21568:12245646,18383948:252011 +k1,21568:13366009,18383948:252011 +k1,21568:16554688,18383948:252011 +k1,21568:18336965,18383948:252011 +k1,21568:19240404,18383948:252011 +k1,21568:21540415,18383948:252011 +k1,21568:25195055,18383948:252011 +k1,21568:27145104,18383948:252011 +k1,21568:29084012,18383948:252011 +k1,21568:30204375,18383948:252011 +k1,21568:31931601,18383948:252011 +k1,21568:32583029,18383948:0 +) +(1,21569:6630773,19249028:25952256,513147,134348 +k1,21568:8876757,19249028:285147 +k1,21568:12187701,19249028:285147 +k1,21568:14800032,19249028:285148 +k1,21568:15744471,19249028:285147 +k1,21568:18063200,19249028:285147 +k1,21568:19625644,19249028:285147 +k1,21568:23838364,19249028:285147 +k1,21568:24774940,19249028:285148 +k1,21568:28075398,19249028:285147 +k1,21568:29557232,19249028:285147 +k1,21568:32583029,19249028:0 +) +(1,21569:6630773,20114108:25952256,513147,134348 +k1,21568:7707461,20114108:208336 +k1,21568:10050304,20114108:208335 +k1,21568:11733855,20114108:208336 +k1,21568:12593619,20114108:208336 +k1,21568:14812599,20114108:208335 +k1,21568:15376795,20114108:208336 +(1,21568:15376795,20114108:0,452978,122846 +r1,21608:16790196,20114108:1413401,575824,122846 +k1,21568:15376795,20114108:-1413401 +) +(1,21568:15376795,20114108:1413401,452978,122846 +k1,21568:15376795,20114108:3277 +h1,21568:16786919,20114108:0,411205,112570 +) +k1,21568:16998532,20114108:208336 +k1,21568:19340065,20114108:208336 +k1,21568:19904260,20114108:208335 +k1,21568:21106122,20114108:208336 +k1,21568:21973750,20114108:208336 +k1,21568:23459382,20114108:208335 +k1,21568:27768961,20114108:208336 +k1,21568:28660182,20114108:208336 +k1,21568:29224377,20114108:208335 +k1,21568:31305732,20114108:208336 +k1,21568:32583029,20114108:0 +) +(1,21569:6630773,20979188:25952256,513147,134348 +k1,21568:10551792,20979188:150077 +k1,21568:11898557,20979188:150078 +k1,21568:14760514,20979188:150077 +k1,21568:16003076,20979188:150077 +k1,21568:16684651,20979188:150078 +k1,21568:17486156,20979188:150077 +k1,21568:19089822,20979188:150077 +k1,21568:20932040,20979188:150078 +k1,21568:23677998,20979188:150077 +k1,21568:24444113,20979188:150077 +k1,21568:27085214,20979188:150078 +k1,21568:30942007,20979188:150077 +k1,21569:32583029,20979188:0 +) +(1,21569:6630773,21844268:25952256,505283,134348 +k1,21568:8439912,21844268:211371 +k1,21568:11652176,21844268:211370 +(1,21568:11652176,21844268:0,452978,122846 +r1,21608:13065577,21844268:1413401,575824,122846 +k1,21568:11652176,21844268:-1413401 +) +(1,21568:11652176,21844268:1413401,452978,122846 +k1,21568:11652176,21844268:3277 +h1,21568:13062300,21844268:0,411205,112570 +) +k1,21568:13276948,21844268:211371 +k1,21568:15778146,21844268:211370 +k1,21568:16672402,21844268:211371 +k1,21568:18945535,21844268:211370 +k1,21568:20353593,21844268:211371 +k1,21568:22806294,21844268:211370 +(1,21568:23013388,21844268:0,414482,115847 +r1,21608:24075077,21844268:1061689,530329,115847 +k1,21568:23013388,21844268:-1061689 +) +(1,21568:23013388,21844268:1061689,414482,115847 +k1,21568:23013388,21844268:3277 +h1,21568:24071800,21844268:0,411205,112570 +) +k1,21568:24493542,21844268:211371 +k1,21568:26716867,21844268:211370 +k1,21568:29355692,21844268:211371 +k1,21568:31725818,21844268:211370 +k1,21569:32583029,21844268:0 +) +(1,21569:6630773,22709348:25952256,513147,134348 +k1,21568:9579691,22709348:190508 +k1,21568:10421627,22709348:190508 +k1,21568:10967995,22709348:190508 +k1,21568:13275971,22709348:190508 +k1,21568:16335645,22709348:190508 +k1,21568:17153988,22709348:190508 +k1,21568:18547738,22709348:190509 +k1,21568:20278997,22709348:190508 +k1,21568:22170820,22709348:190508 +k1,21568:24234347,22709348:190508 +k1,21568:27497183,22709348:190508 +k1,21568:29892978,22709348:190508 +k1,21568:30845014,22709348:190508 +k1,21568:32583029,22709348:0 +) +(1,21569:6630773,23574428:25952256,505283,134348 +k1,21568:7449845,23574428:167644 +(1,21568:7449845,23574428:0,452978,122846 +r1,21608:11325229,23574428:3875384,575824,122846 +k1,21568:7449845,23574428:-3875384 +) +(1,21568:7449845,23574428:3875384,452978,122846 +k1,21568:7449845,23574428:3277 +h1,21568:11321952,23574428:0,411205,112570 +) +k1,21568:11492874,23574428:167645 +k1,21568:12792980,23574428:167644 +k1,21568:13708391,23574428:167645 +k1,21568:15994159,23574428:167644 +k1,21568:16847966,23574428:167645 +k1,21568:20087938,23574428:167644 +k1,21568:20907011,23574428:167645 +k1,21568:22093740,23574428:167644 +k1,21568:24378853,23574428:167645 +k1,21568:25646191,23574428:167644 +k1,21568:26465264,23574428:167645 +(1,21568:26465264,23574428:0,452978,122846 +r1,21608:29285513,23574428:2820249,575824,122846 +k1,21568:26465264,23574428:-2820249 +) +(1,21568:26465264,23574428:2820249,452978,122846 +k1,21568:26465264,23574428:3277 +h1,21568:29282236,23574428:0,411205,112570 +) +k1,21568:29626827,23574428:167644 +k1,21568:30540927,23574428:167645 +k1,21568:32583029,23574428:0 +) +(1,21569:6630773,24439508:25952256,513147,134348 +k1,21568:8173228,24439508:257949 +k1,21568:11574285,24439508:257950 +k1,21568:15234863,24439508:257949 +k1,21568:16254341,24439508:257950 +k1,21568:19300192,24439508:257949 +k1,21568:20089638,24439508:257949 +k1,21568:22977548,24439508:257950 +k1,21568:24611098,24439508:257949 +k1,21568:25816699,24439508:257950 +k1,21568:29685682,24439508:257949 +k1,21568:32583029,24439508:0 +) +(1,21569:6630773,25304588:25952256,513147,126483 +g1,21568:9588412,25304588 +g1,21568:10403679,25304588 +g1,21568:11621993,25304588 +g1,21568:14903380,25304588 +g1,21568:15761901,25304588 +g1,21568:16980215,25304588 +g1,21568:19821856,25304588 +k1,21569:32583029,25304588:9892007 +g1,21569:32583029,25304588 +) +v1,21571:6630773,25989443:0,393216,0 +(1,21578:6630773,28358267:25952256,2762040,196608 +g1,21578:6630773,28358267 +g1,21578:6630773,28358267 +g1,21578:6434165,28358267 +(1,21578:6434165,28358267:0,2762040,196608 +r1,21608:32779637,28358267:26345472,2958648,196608 +k1,21578:6434165,28358267:-26345472 +) +(1,21578:6434165,28358267:26345472,2762040,196608 +[1,21578:6630773,28358267:25952256,2565432,0 +(1,21573:6630773,26223880:25952256,431045,112852 +(1,21572:6630773,26223880:0,0,0 +g1,21572:6630773,26223880 +g1,21572:6630773,26223880 +g1,21572:6303093,26223880 +(1,21572:6303093,26223880:0,0,0 +) +g1,21572:6630773,26223880 +) +g1,21573:9950312,26223880 +g1,21573:10946174,26223880 +g1,21573:15593529,26223880 +h1,21573:15925483,26223880:0,0,0 +k1,21573:32583029,26223880:16657546 +g1,21573:32583029,26223880 +) +(1,21574:6630773,26908735:25952256,424439,112852 +h1,21574:6630773,26908735:0,0,0 +g1,21574:6962727,26908735 +g1,21574:7294681,26908735 +g1,21574:11278129,26908735 +h1,21574:11610083,26908735:0,0,0 +k1,21574:32583029,26908735:20972946 +g1,21574:32583029,26908735 +) +(1,21575:6630773,27593590:25952256,424439,79822 +h1,21575:6630773,27593590:0,0,0 +g1,21575:6962727,27593590 +g1,21575:7294681,27593590 +k1,21575:7294681,27593590:0 +h1,21575:10614220,27593590:0,0,0 +k1,21575:32583028,27593590:21968808 +g1,21575:32583028,27593590 +) +(1,21576:6630773,28278445:25952256,424439,79822 +h1,21576:6630773,28278445:0,0,0 +h1,21576:6962727,28278445:0,0,0 +k1,21576:32583029,28278445:25620302 +g1,21576:32583029,28278445 +) +] +) +g1,21578:32583029,28358267 +g1,21578:6630773,28358267 +g1,21578:6630773,28358267 +g1,21578:32583029,28358267 +g1,21578:32583029,28358267 +) +h1,21578:6630773,28554875:0,0,0 +(1,21582:6630773,29419955:25952256,513147,7863 +h1,21581:6630773,29419955:983040,0,0 +g1,21581:9698513,29419955 +g1,21581:11666559,29419955 +g1,21581:12613554,29419955 +g1,21581:14326009,29419955 +g1,21581:15211400,29419955 +k1,21582:32583029,29419955:14882572 +g1,21582:32583029,29419955 +) +v1,21584:6630773,30104810:0,393216,0 +(1,21591:6630773,32500058:25952256,2788464,196608 +g1,21591:6630773,32500058 +g1,21591:6630773,32500058 +g1,21591:6434165,32500058 +(1,21591:6434165,32500058:0,2788464,196608 +r1,21608:32779637,32500058:26345472,2985072,196608 +k1,21591:6434165,32500058:-26345472 +) +(1,21591:6434165,32500058:26345472,2788464,196608 +[1,21591:6630773,32500058:25952256,2591856,0 +(1,21586:6630773,30332641:25952256,424439,112852 +(1,21585:6630773,30332641:0,0,0 +g1,21585:6630773,30332641 +g1,21585:6630773,30332641 +g1,21585:6303093,30332641 +(1,21585:6303093,30332641:0,0,0 +) +g1,21585:6630773,30332641 +) +k1,21586:6630773,30332641:0 +g1,21586:11610082,30332641 +g1,21586:12273990,30332641 +k1,21586:12273990,30332641:0 +h1,21586:14597668,30332641:0,0,0 +k1,21586:32583028,30332641:17985360 +g1,21586:32583028,30332641 +) +(1,21587:6630773,31017496:25952256,424439,112852 +h1,21587:6630773,31017496:0,0,0 +g1,21587:6962727,31017496 +g1,21587:7294681,31017496 +g1,21587:7626635,31017496 +g1,21587:7958589,31017496 +g1,21587:8290543,31017496 +g1,21587:8622497,31017496 +g1,21587:8954451,31017496 +g1,21587:9286405,31017496 +g1,21587:9618359,31017496 +g1,21587:9950313,31017496 +g1,21587:11942037,31017496 +g1,21587:12605945,31017496 +g1,21587:14597669,31017496 +g1,21587:15261577,31017496 +g1,21587:15925485,31017496 +k1,21587:15925485,31017496:0 +h1,21587:17253301,31017496:0,0,0 +k1,21587:32583029,31017496:15329728 +g1,21587:32583029,31017496 +) +(1,21588:6630773,31702351:25952256,431045,106246 +h1,21588:6630773,31702351:0,0,0 +g1,21588:6962727,31702351 +g1,21588:7294681,31702351 +g1,21588:7626635,31702351 +g1,21588:7958589,31702351 +g1,21588:8290543,31702351 +g1,21588:8622497,31702351 +g1,21588:8954451,31702351 +g1,21588:9286405,31702351 +g1,21588:9618359,31702351 +g1,21588:9950313,31702351 +g1,21588:11942037,31702351 +g1,21588:12605945,31702351 +g1,21588:17253301,31702351 +h1,21588:17585255,31702351:0,0,0 +k1,21588:32583029,31702351:14997774 +g1,21588:32583029,31702351 +) +(1,21589:6630773,32387206:25952256,424439,112852 +h1,21589:6630773,32387206:0,0,0 +g1,21589:6962727,32387206 +g1,21589:7294681,32387206 +g1,21589:7626635,32387206 +g1,21589:7958589,32387206 +g1,21589:8290543,32387206 +g1,21589:8622497,32387206 +g1,21589:8954451,32387206 +g1,21589:9286405,32387206 +g1,21589:9618359,32387206 +g1,21589:9950313,32387206 +k1,21589:9950313,32387206:0 +h1,21589:13933760,32387206:0,0,0 +k1,21589:32583028,32387206:18649268 +g1,21589:32583028,32387206 +) +] +) +g1,21591:32583029,32500058 +g1,21591:6630773,32500058 +g1,21591:6630773,32500058 +g1,21591:32583029,32500058 +g1,21591:32583029,32500058 +) +h1,21591:6630773,32696666:0,0,0 +(1,21597:6630773,35527826:25952256,32768,229376 +(1,21597:6630773,35527826:0,32768,229376 +(1,21597:6630773,35527826:5505024,32768,229376 +r1,21608:12135797,35527826:5505024,262144,229376 +) +k1,21597:6630773,35527826:-5505024 +) +(1,21597:6630773,35527826:25952256,32768,0 +r1,21608:32583029,35527826:25952256,32768,0 +) +) +(1,21597:6630773,37159678:25952256,615776,161218 +(1,21597:6630773,37159678:2464678,582746,14155 +g1,21597:6630773,37159678 +g1,21597:9095451,37159678 +) +g1,21597:13678777,37159678 +g1,21597:16562623,37159678 +k1,21597:32583029,37159678:14382268 +g1,21597:32583029,37159678 +) +(1,21603:6630773,38417974:25952256,513147,134348 +k1,21602:7359767,38417974:259101 +k1,21602:8150365,38417974:259101 +k1,21602:11213097,38417974:259102 +k1,21602:13170236,38417974:259101 +k1,21602:15164730,38417974:259101 +k1,21602:18021678,38417974:259101 +k1,21602:18932208,38417974:259102 +k1,21602:21605655,38417974:259101 +k1,21602:23937660,38417974:259101 +k1,21602:25215846,38417974:259101 +k1,21602:28538100,38417974:259101 +k1,21602:30074499,38417974:259102 +k1,21602:30985028,38417974:259101 +k1,21602:31599989,38417974:259101 +k1,21602:32583029,38417974:0 +) +(1,21603:6630773,39283054:25952256,513147,134348 +k1,21602:8538025,39283054:171859 +k1,21602:9065743,39283054:171858 +k1,21602:11208270,39283054:171859 +k1,21602:14314830,39283054:171858 +k1,21602:14952650,39283054:171859 +k1,21602:16143593,39283054:171858 +k1,21602:17298492,39283054:171859 +k1,21602:18602812,39283054:171858 +k1,21602:20249886,39283054:171859 +k1,21602:21073172,39283054:171858 +k1,21602:21992797,39283054:171859 +k1,21602:25317592,39283054:171858 +k1,21602:27191421,39283054:171859 +k1,21602:27976041,39283054:171858 +k1,21602:28503760,39283054:171859 +k1,21602:30129207,39283054:171858 +k1,21602:31900144,39283054:171859 +k1,21602:32583029,39283054:0 +) +(1,21603:6630773,40148134:25952256,513147,126483 +k1,21602:7198096,40148134:211463 +k1,21602:9254397,40148134:211463 +k1,21602:10125151,40148134:211462 +k1,21602:11944212,40148134:211463 +k1,21602:13685941,40148134:211463 +k1,21602:14548832,40148134:211463 +k1,21602:15508061,40148134:211463 +k1,21602:18760394,40148134:211462 +k1,21602:20365808,40148134:211463 +k1,21602:23858003,40148134:211463 +k1,21602:26423519,40148134:211463 +k1,21602:27093079,40148134:211463 +k1,21602:27836038,40148134:211462 +k1,21602:29382469,40148134:211463 +k1,21602:30245360,40148134:211463 +k1,21602:32583029,40148134:0 +) +(1,21603:6630773,41013214:25952256,505283,126483 +g1,21602:7849087,41013214 +g1,21602:11538108,41013214 +g1,21602:12388765,41013214 +g1,21602:14660898,41013214 +g1,21602:15879212,41013214 +g1,21602:17355738,41013214 +g1,21602:18171005,41013214 +g1,21602:19389319,41013214 +k1,21603:32583029,41013214:11188964 +g1,21603:32583029,41013214 +) +(1,21605:6630773,41878294:25952256,513147,134348 +h1,21604:6630773,41878294:983040,0,0 +k1,21604:8511858,41878294:270210 +k1,21604:9370581,41878294:270210 +k1,21604:10954133,41878294:270210 +k1,21604:12215902,41878294:270209 +k1,21604:14836233,41878294:270210 +k1,21604:15867971,41878294:270210 +k1,21604:18710469,41878294:270210 +k1,21604:19632107,41878294:270210 +k1,21604:22664660,41878294:270210 +k1,21604:25446209,41878294:270209 +k1,21604:28243487,41878294:270210 +k1,21604:29045194,41878294:270210 +k1,21604:31931601,41878294:270210 +k1,21604:32583029,41878294:0 +) +(1,21605:6630773,42743374:25952256,505283,126483 +k1,21604:7222290,42743374:235657 +k1,21604:10368400,42743374:235656 +k1,21604:12181508,42743374:235656 +k1,21604:14424533,42743374:235657 +k1,21604:16153756,42743374:235657 +k1,21604:16745272,42743374:235656 +k1,21604:19454257,42743374:235656 +k1,21604:20305952,42743374:235657 +k1,21604:23139456,42743374:235657 +k1,21604:25092155,42743374:235656 +k1,21604:27665481,42743374:235657 +k1,21604:30521266,42743374:235656 +k1,21604:32583029,42743374:0 +) +(1,21605:6630773,43608454:25952256,513147,126483 +k1,21604:9228838,43608454:265639 +k1,21604:11526748,43608454:265639 +k1,21604:13279399,43608454:265639 +k1,21604:15965283,43608454:265639 +k1,21604:18602670,43608454:265639 +k1,21604:19677680,43608454:265640 +k1,21604:22350456,43608454:265639 +k1,21604:24448482,43608454:265639 +k1,21604:25705681,43608454:265639 +k1,21604:27438016,43608454:265639 +k1,21604:30041324,43608454:265639 +k1,21604:31591469,43608454:265639 +k1,21604:32583029,43608454:0 +) +(1,21605:6630773,44473534:25952256,513147,134348 +g1,21604:8151863,44473534 +g1,21604:9018248,44473534 +g1,21604:9632320,44473534 +g1,21604:11022994,44473534 +g1,21604:14449216,44473534 +g1,21604:16135457,44473534 +g1,21604:18716264,44473534 +g1,21604:19531531,44473534 +g1,21604:23460414,44473534 +k1,21605:32583029,44473534:6038491 +g1,21605:32583029,44473534 +) +] +(1,21608:32583029,45706769:0,0,0 +g1,21608:32583029,45706769 +) +) +] +(1,21608:6630773,47279633:25952256,0,0 +h1,21608:6630773,47279633:25952256,0,0 +) +] +(1,21608:4262630,4025873:0,0,0 +[1,21608:-473656,4025873:0,0,0 +(1,21608:-473656,-710413:0,0,0 +(1,21608:-473656,-710413:0,0,0 +g1,21608:-473656,-710413 +) +g1,21608:-473656,-710413 +) +] +) +] +!24848 +}371 +Input:3546:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3547:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3548:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3549:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3550:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3551:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3552:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!670 +{372 +[1,21670:4262630,47279633:28320399,43253760,0 +(1,21670:4262630,4025873:0,0,0 +[1,21670:-473656,4025873:0,0,0 +(1,21670:-473656,-710413:0,0,0 +(1,21670:-473656,-644877:0,0,0 +k1,21670:-473656,-644877:-65536 ) -] +(1,21670:-473656,4736287:0,0,0 +k1,21670:-473656,4736287:5209943 ) -g1,21457:36675916,49800853 -(1,21457:36675916,49800853:1179648,16384,0 -r1,21478:37855564,49800853:1179648,16384,0 +g1,21670:-473656,-710413 ) +] ) -k1,21478:3078556,49800853:-34777008 +[1,21670:6630773,47279633:25952256,43253760,0 +[1,21670:6630773,4812305:25952256,786432,0 +(1,21670:6630773,4812305:25952256,505283,134348 +(1,21670:6630773,4812305:25952256,505283,134348 +g1,21670:3078558,4812305 +[1,21670:3078558,4812305:0,0,0 +(1,21670:3078558,2439708:0,1703936,0 +k1,21670:1358238,2439708:-1720320 +(1,16983:1358238,2439708:1720320,1703936,0 +(1,16983:1358238,2439708:1179648,16384,0 +r1,21670:2537886,2439708:1179648,16384,0 ) -] -g1,21478:6630773,4812305 +g1,16983:3062174,2439708 +(1,16983:3062174,2439708:16384,1703936,0 +[1,16983:3062174,2439708:25952256,1703936,0 +(1,16983:3062174,1915420:25952256,1179648,0 +(1,16983:3062174,1915420:16384,1179648,0 +r1,21670:3078558,1915420:16384,1179648,0 ) +k1,16983:29014430,1915420:25935872 +g1,16983:29014430,1915420 ) ] -[1,21478:6630773,45706769:25952256,40108032,0 -(1,21478:6630773,45706769:25952256,40108032,0 -(1,21478:6630773,45706769:0,0,0 -g1,21478:6630773,45706769 ) -[1,21478:6630773,45706769:25952256,40108032,0 -[1,21457:6630773,11663733:25952256,6064996,0 -(1,21457:6630773,6633157:25952256,1165492,28311 -h1,21457:6630773,6633157:0,0,0 -k1,21457:20586796,6633157:11996234 -k1,21457:32583030,6633157:11996234 ) -(1,21457:6630773,7333093:25952256,32768,229376 -(1,21457:6630773,7333093:0,32768,229376 -(1,21457:6630773,7333093:5505024,32768,229376 -r1,21478:12135797,7333093:5505024,262144,229376 ) -k1,21457:6630773,7333093:-5505024 +] +[1,21670:3078558,4812305:0,0,0 +(1,21670:3078558,2439708:0,1703936,0 +g1,21670:29030814,2439708 +g1,21670:36135244,2439708 +(1,16983:36135244,2439708:1720320,1703936,0 +(1,16983:36135244,2439708:16384,1703936,0 +[1,16983:36135244,2439708:25952256,1703936,0 +(1,16983:36135244,1915420:25952256,1179648,0 +(1,16983:36135244,1915420:16384,1179648,0 +r1,21670:36151628,1915420:16384,1179648,0 ) -(1,21457:6630773,7333093:25952256,32768,0 -r1,21478:32583029,7333093:25952256,32768,0 +k1,16983:62087500,1915420:25935872 +g1,16983:62087500,1915420 ) +] ) -(1,21457:6630773,9128789:25952256,909509,241827 -h1,21457:6630773,9128789:0,0,0 -g1,21457:9551582,9128789 -g1,21457:10719434,9128789 -g1,21457:13256857,9128789 -g1,21457:19759077,9128789 -g1,21457:22879246,9128789 -k1,21457:29960673,9128789:2622357 -k1,21457:32583029,9128789:2622356 +g1,16983:36675916,2439708 +(1,16983:36675916,2439708:1179648,16384,0 +r1,21670:37855564,2439708:1179648,16384,0 ) -(1,21457:6630773,9828725:25952256,32768,0 -(1,21457:6630773,9828725:5505024,32768,0 -r1,21478:12135797,9828725:5505024,32768,0 ) -k1,21457:22359413,9828725:10223616 -k1,21457:32583029,9828725:10223616 -) -] -(1,21459:6630773,14556498:25952256,131072,0 -r1,21478:32583029,14556498:25952256,131072,0 -g1,21459:32583029,14556498 -g1,21459:32583029,14556498 -) -(1,21461:6630773,15876399:25952256,505283,134348 -k1,21461:8596853,15876399:1966080 -k1,21460:10349431,15876399:207239 -k1,21460:14884668,15876399:207239 -k1,21460:16567123,15876399:207240 -k1,21460:18214188,15876399:207239 -k1,21460:20234153,15876399:207239 -k1,21460:21632837,15876399:207239 -k1,21460:23441777,15876399:207240 -k1,21460:25233021,15876399:207239 -k1,21460:29768258,15876399:207239 -k1,21461:32583029,15876399:1966080 -) -(1,21461:6630773,16717887:25952256,505283,134348 -k1,21461:8596853,16717887:1966080 -k1,21460:10248360,16717887:152043 -k1,21460:12658774,16717887:152043 -k1,21460:15097369,16717887:152044 -k1,21460:15862174,16717887:152043 -k1,21460:17509749,16717887:152043 -k1,21460:18992173,16717887:152043 -k1,21460:20702007,16717887:152043 -k1,21460:21845610,16717887:152043 -k1,21460:23722562,16717887:152044 -k1,21460:26037293,16717887:152043 -k1,21460:27544621,16717887:152043 -k1,21460:32583029,16717887:1966080 -) -(1,21461:6630773,17559375:25952256,513147,134348 -g1,21461:8596853,17559375 -g1,21460:10080588,17559375 -g1,21460:12460200,17559375 -g1,21460:14134644,17559375 -g1,21460:15843823,17559375 -g1,21460:17901653,17559375 -g1,21460:19931303,17559375 -g1,21460:22991834,17559375 -k1,21461:30616949,17559375:4379117 -g1,21461:32583029,17559375 -) -(1,21462:6630773,19187295:25952256,505283,126483 -k1,21462:26585175,19187295:19954402 -h1,21462:26585175,19187295:0,0,0 -g1,21462:28285178,19187295 -g1,21462:30616949,19187295 -g1,21462:32583029,19187295 -) -(1,21463:6630773,20028783:25952256,505283,134348 -k1,21463:22157562,20028783:15526789 -h1,21462:22157562,20028783:0,0,0 -g1,21462:26747048,20028783 -g1,21462:29023113,20028783 -g1,21463:30616949,20028783 -g1,21463:32583029,20028783 -) -(1,21463:6630773,21263487:25952256,131072,0 -r1,21478:32583029,21263487:25952256,131072,0 -g1,21463:32583029,21263487 -g1,21463:34549109,21263487 -) -(1,21467:6630773,24071055:25952256,32768,229376 -(1,21467:6630773,24071055:0,32768,229376 -(1,21467:6630773,24071055:5505024,32768,229376 -r1,21478:12135797,24071055:5505024,262144,229376 -) -k1,21467:6630773,24071055:-5505024 -) -(1,21467:6630773,24071055:25952256,32768,0 -r1,21478:32583029,24071055:25952256,32768,0 -) -) -(1,21467:6630773,25675383:25952256,615776,151780 -(1,21467:6630773,25675383:2464678,582746,14155 -g1,21467:6630773,25675383 -g1,21467:9095451,25675383 -) -g1,21467:11394192,25675383 -g1,21467:12451943,25675383 -g1,21467:14185239,25675383 -k1,21467:32583029,25675383:15396765 -g1,21467:32583029,25675383 -) -(1,21470:6630773,26910087:25952256,513147,134348 -k1,21469:8248858,26910087:185468 -k1,21469:8849155,26910087:185454 -k1,21469:10226068,26910087:185468 -k1,21469:11430621,26910087:185468 -k1,21469:16170841,26910087:185468 -k1,21469:19266763,26910087:185468 -k1,21469:22396764,26910087:185468 -k1,21469:23343760,26910087:185468 -k1,21469:26001901,26910087:185468 -k1,21469:28525038,26910087:185468 -k1,21469:30942007,26910087:185468 -k1,21470:32583029,26910087:0 -) -(1,21470:6630773,27751575:25952256,513147,134348 -k1,21469:8519521,27751575:290980 -k1,21469:9758151,27751575:290979 -k1,21469:13221074,27751575:290980 -k1,21469:14703498,27751575:290979 -k1,21469:18057631,27751575:290980 -k1,21469:19911644,27751575:290979 -k1,21469:24054175,27751575:290980 -k1,21469:27255608,27751575:290979 -k1,21469:29976663,27751575:290980 -k1,21469:31734338,27751575:290979 -k1,21470:32583029,27751575:0 -) -(1,21470:6630773,28593063:25952256,513147,126483 -k1,21469:10552924,28593063:290146 -k1,21469:11790720,28593063:290145 -k1,21469:13773006,28593063:290146 -k1,21469:14722443,28593063:290145 -k1,21469:16709316,28593063:290146 -k1,21469:20025258,28593063:290145 -k1,21469:21506849,28593063:290146 -k1,21469:24323407,28593063:290145 -k1,21469:25561204,28593063:290146 -k1,21469:28082850,28593063:290145 -k1,21469:31599989,28593063:290146 -k1,21469:32583029,28593063:0 -) -(1,21470:6630773,29434551:25952256,513147,134348 -k1,21469:9576218,29434551:261090 -k1,21469:10465143,29434551:261090 -k1,21469:11745317,29434551:261089 -k1,21469:14412234,29434551:261090 -k1,21469:17264618,29434551:261090 -k1,21469:17738638,29434551:261028 -k1,21469:19176754,29434551:261089 -k1,21469:20050606,29434551:261090 -k1,21469:23623886,29434551:261090 -k1,21469:25351672,29434551:261090 -k1,21469:27002124,29434551:261089 -k1,21469:28971738,29434551:261090 -k1,21469:30424273,29434551:261090 -k1,21469:32583029,29434551:0 -) -(1,21470:6630773,30276039:25952256,513147,134348 -k1,21469:9535983,30276039:193986 -k1,21469:10346008,30276039:193987 -k1,21469:12327161,30276039:193986 -k1,21469:13896749,30276039:193987 -k1,21469:15109820,30276039:193986 -k1,21469:16905507,30276039:193987 -k1,21469:19876909,30276039:193986 -k1,21469:22956446,30276039:193987 -k1,21469:24539795,30276039:193986 -k1,21469:27244466,30276039:193987 -k1,21469:29389459,30276039:193986 -k1,21469:30649717,30276039:193987 -k1,21469:32583029,30276039:0 -) -(1,21470:6630773,31117527:25952256,505283,95026 -g1,21469:7481430,31117527 -k1,21470:32583029,31117527:24305992 -g1,21470:32583029,31117527 -) -(1,21472:6630773,31959015:25952256,513147,134348 -h1,21471:6630773,31959015:983040,0,0 -k1,21471:9338491,31959015:252739 -k1,21471:10574269,31959015:252738 -k1,21471:13337692,31959015:252739 -k1,21471:14874936,31959015:252738 -k1,21471:16119235,31959015:252739 -k1,21471:18657213,31959015:252738 -k1,21471:19561380,31959015:252739 -k1,21471:20228908,31959015:252685 -k1,21471:21473206,31959015:252738 -k1,21471:22792216,31959015:252739 -k1,21471:25174219,31959015:252738 -k1,21471:26705565,31959015:252739 -k1,21471:29513552,31959015:252738 -k1,21471:32124932,31959015:252739 -k1,21471:32583029,31959015:0 -) -(1,21472:6630773,32800503:25952256,513147,134348 -k1,21471:9914126,32800503:174325 -k1,21471:10739880,32800503:174326 -k1,21471:16168882,32800503:174325 -k1,21471:17362293,32800503:174326 -k1,21471:20977913,32800503:174325 -k1,21471:23450587,32800503:174326 -k1,21471:24276340,32800503:174325 -k1,21471:25862967,32800503:174326 -k1,21471:27850018,32800503:174325 -k1,21471:29898674,32800503:174326 -k1,21471:32583029,32800503:0 -) -(1,21472:6630773,33641991:25952256,513147,134348 -k1,21471:8309100,33641991:211631 -k1,21471:10218769,33641991:211631 -k1,21471:12526896,33641991:211630 -k1,21471:15293776,33641991:211631 -k1,21471:16842341,33641991:211631 -k1,21471:17801738,33641991:211631 -k1,21471:20650537,33641991:211630 -k1,21471:21623696,33641991:211631 -k1,21471:22854412,33641991:211631 -k1,21471:26525033,33641991:211631 -k1,21471:27395955,33641991:211630 -k1,21471:28626671,33641991:211631 -k1,21471:31123542,33641991:211631 -k1,21472:32583029,33641991:0 -) -(1,21472:6630773,34483479:25952256,513147,134348 -k1,21471:8289817,34483479:146473 -k1,21471:9720795,34483479:146472 -k1,21471:11812377,34483479:146473 -k1,21471:12977934,34483479:146472 -k1,21471:14611419,34483479:146473 -k1,21471:19278565,34483479:146472 -k1,21471:22908277,34483479:146473 -k1,21471:25813816,34483479:146473 -k1,21471:26611716,34483479:146472 -k1,21471:28170490,34483479:146473 -k1,21471:29508407,34483479:146472 -k1,21471:31269687,34483479:146473 -k1,21471:32583029,34483479:0 -) -(1,21472:6630773,35324967:25952256,513147,134348 -k1,21471:8578831,35324967:212665 -k1,21471:11076736,35324967:212665 -k1,21471:13800086,35324967:212666 -k1,21471:15117033,35324967:212665 -k1,21471:17130627,35324967:212665 -k1,21471:19186164,35324967:212665 -k1,21471:20014868,35324967:212666 -k1,21471:21789911,35324967:212665 -k1,21471:24165264,35324967:212665 -k1,21471:25569374,35324967:212665 -k1,21471:27137325,35324967:212666 -k1,21471:27764820,35324967:212652 -k1,21471:30312533,35324967:212665 -k1,21471:31478747,35324967:212665 -k1,21471:32583029,35324967:0 -) -(1,21472:6630773,36166455:25952256,513147,134348 -k1,21471:8137683,36166455:221094 -k1,21471:11877406,36166455:221095 -k1,21471:13713307,36166455:221094 -k1,21471:15430589,36166455:221095 -k1,21471:16936189,36166455:221094 -k1,21471:19444491,36166455:221095 -k1,21471:21592343,36166455:221094 -k1,21471:22885607,36166455:221095 -k1,21471:26992331,36166455:221094 -k1,21471:28570677,36166455:221095 -k1,21471:30185722,36166455:221094 -k1,21471:32583029,36166455:0 -) -(1,21472:6630773,37007943:25952256,513147,126483 -k1,21471:8347816,37007943:230031 -k1,21471:9260733,37007943:230032 -k1,21471:10957460,37007943:230031 -k1,21471:13242700,37007943:230031 -k1,21471:17358361,37007943:230031 -k1,21471:19910334,37007943:230032 -k1,21471:22867973,37007943:230031 -k1,21471:24117089,37007943:230031 -k1,21471:27296895,37007943:230031 -k1,21471:29089961,37007943:230032 -k1,21471:30516679,37007943:230031 -k1,21471:31923737,37007943:230031 -k1,21471:32583029,37007943:0 -) -(1,21472:6630773,37849431:25952256,513147,134348 -k1,21471:8017951,37849431:183937 -k1,21471:10619512,37849431:183938 -k1,21471:11334946,37849431:183937 -k1,21471:12170312,37849431:183938 -k1,21471:14784324,37849431:183937 -k1,21471:17830875,37849431:183938 -k1,21471:18962463,37849431:183937 -k1,21471:21402806,37849431:183938 -k1,21471:24612540,37849431:183937 -k1,21471:25744129,37849431:183938 -k1,21471:28330616,37849431:183937 -k1,21471:29903917,37849431:183938 -k1,21471:32583029,37849431:0 -) -(1,21472:6630773,38690919:25952256,513147,134348 -k1,21471:8591133,38690919:224967 -k1,21471:11101340,38690919:224967 -k1,21471:14010663,38690919:224968 -k1,21471:16946854,38690919:224967 -k1,21471:18638517,38690919:224967 -k1,21471:20297412,38690919:224967 -k1,21471:21110892,38690919:224967 -k1,21471:24316436,38690919:224967 -k1,21471:25560489,38690919:224968 -k1,21471:28412794,38690919:224967 -k1,21471:31391584,38690919:224967 -k1,21471:32583029,38690919:0 -) -(1,21472:6630773,39532407:25952256,513147,134348 -g1,21471:11403104,39532407 -g1,21471:15331987,39532407 -g1,21471:18615340,39532407 -g1,21471:20333038,39532407 -g1,21471:23558064,39532407 -g1,21471:24748853,39532407 -g1,21471:26226689,39532407 -g1,21471:28385444,39532407 -g1,21471:29267558,39532407 -k1,21472:32583029,39532407:220861 -g1,21472:32583029,39532407 -) -(1,21474:6630773,40373895:25952256,513147,134348 -h1,21473:6630773,40373895:983040,0,0 -k1,21473:8410567,40373895:168919 -k1,21473:9782727,40373895:168919 -k1,21473:12369269,40373895:168919 -k1,21473:13708661,40373895:168919 -k1,21473:15010042,40373895:168919 -k1,21473:18609770,40373895:168918 -k1,21473:21385056,40373895:168919 -k1,21473:22947926,40373895:168919 -k1,21473:24447226,40373895:168919 -k1,21473:25267573,40373895:168919 -k1,21473:28389544,40373895:168919 -k1,21473:29947826,40373895:168919 -k1,21474:32583029,40373895:0 -) -(1,21474:6630773,41215383:25952256,513147,126483 -k1,21473:7336746,41215383:291130 -k1,21473:8819414,41215383:291223 -k1,21473:10812606,41215383:291222 -k1,21473:15168372,41215383:291223 -k1,21473:16656282,41215383:291223 -k1,21473:19973301,41215383:291222 -(1,21473:19973301,41215383:0,452978,115847 -r1,21478:22090126,41215383:2116825,568825,115847 -k1,21473:19973301,41215383:-2116825 -) -(1,21473:19973301,41215383:2116825,452978,115847 -k1,21473:19973301,41215383:3277 -h1,21473:22086849,41215383:0,411205,112570 -) -k1,21473:22381349,41215383:291223 -k1,21473:23864016,41215383:291222 -(1,21473:23864016,41215383:0,452978,115847 -r1,21478:25980841,41215383:2116825,568825,115847 -k1,21473:23864016,41215383:-2116825 -) -(1,21473:23864016,41215383:2116825,452978,115847 -k1,21473:23864016,41215383:3277 -h1,21473:25977564,41215383:0,411205,112570 -) -k1,21473:26445734,41215383:291223 -k1,21473:27928401,41215383:291222 -(1,21473:27928401,41215383:0,452978,115847 -r1,21478:31100361,41215383:3171960,568825,115847 -k1,21473:27928401,41215383:-3171960 -) -(1,21473:27928401,41215383:3171960,452978,115847 -k1,21473:27928401,41215383:3277 -h1,21473:31097084,41215383:0,411205,112570 -) -k1,21473:31391584,41215383:291223 -k1,21474:32583029,41215383:0 -) -(1,21474:6630773,42056871:25952256,513147,115847 -(1,21473:6630773,42056871:0,452978,115847 -r1,21478:9802733,42056871:3171960,568825,115847 -k1,21473:6630773,42056871:-3171960 -) -(1,21473:6630773,42056871:3171960,452978,115847 -k1,21473:6630773,42056871:3277 -h1,21473:9799456,42056871:0,411205,112570 -) -k1,21473:10195105,42056871:218702 -k1,21473:11179922,42056871:218701 -k1,21473:12057916,42056871:218702 -k1,21473:14162089,42056871:218702 -k1,21473:15771464,42056871:218701 -k1,21473:17181611,42056871:218702 -k1,21473:18812614,42056871:218702 -k1,21473:20420678,42056871:218701 -k1,21473:21255418,42056871:218702 -k1,21473:22392934,42056871:218701 -k1,21473:24544948,42056871:218702 -k1,21473:27448005,42056871:218702 -k1,21473:28658266,42056871:218701 -k1,21473:31966991,42056871:218702 -k1,21473:32583029,42056871:0 -) -(1,21474:6630773,42898359:25952256,505283,134348 -g1,21473:9438990,42898359 -h1,21473:10981708,42898359:0,0,0 -g1,21473:11180937,42898359 -g1,21473:12571611,42898359 -h1,21473:14114329,42898359:0,0,0 -g1,21473:14313558,42898359 -g1,21473:16991359,42898359 -g1,21473:17999958,42898359 -g1,21473:19697340,42898359 -h1,21473:20892717,42898359:0,0,0 -k1,21474:32583029,42898359:11516642 -g1,21474:32583029,42898359 -) -] -(1,21478:32583029,45706769:0,0,0 -g1,21478:32583029,45706769 -) -) -] -(1,21478:6630773,47279633:25952256,485622,11795 -(1,21478:6630773,47279633:25952256,485622,11795 -(1,21478:6630773,47279633:0,0,0 -v1,21478:6630773,47279633:0,0,0 -) -g1,21478:6830002,47279633 -k1,21478:31387652,47279633:24557650 -) -) -] -(1,21478:4262630,4025873:0,0,0 -[1,21478:-473656,4025873:0,0,0 -(1,21478:-473656,-710413:0,0,0 -(1,21478:-473656,-710413:0,0,0 -g1,21478:-473656,-710413 -) -g1,21478:-473656,-710413 +k1,21670:3078556,2439708:-34777008 ) ] +[1,21670:3078558,4812305:0,0,0 +(1,21670:3078558,49800853:0,16384,2228224 +k1,21670:1358238,49800853:-1720320 +(1,16983:1358238,49800853:1720320,16384,2228224 +(1,16983:1358238,49800853:1179648,16384,0 +r1,21670:2537886,49800853:1179648,16384,0 ) -] -!17337 -}390 +g1,16983:3062174,49800853 +(1,16983:3062174,52029077:16384,1703936,0 +[1,16983:3062174,52029077:25952256,1703936,0 +(1,16983:3062174,51504789:25952256,1179648,0 +(1,16983:3062174,51504789:16384,1179648,0 +r1,21670:3078558,51504789:16384,1179648,0 +) +k1,16983:29014430,51504789:25935872 +g1,16983:29014430,51504789 +) +] +) +) +) +] +[1,21670:3078558,4812305:0,0,0 +(1,21670:3078558,49800853:0,16384,2228224 +g1,21670:29030814,49800853 +g1,21670:36135244,49800853 +(1,16983:36135244,49800853:1720320,16384,2228224 +(1,16983:36135244,52029077:16384,1703936,0 +[1,16983:36135244,52029077:25952256,1703936,0 +(1,16983:36135244,51504789:25952256,1179648,0 +(1,16983:36135244,51504789:16384,1179648,0 +r1,21670:36151628,51504789:16384,1179648,0 +) +k1,16983:62087500,51504789:25935872 +g1,16983:62087500,51504789 +) +] +) +g1,16983:36675916,49800853 +(1,16983:36675916,49800853:1179648,16384,0 +r1,21670:37855564,49800853:1179648,16384,0 +) +) +k1,21670:3078556,49800853:-34777008 +) +] +g1,21670:6630773,4812305 +g1,21670:6630773,4812305 +g1,21670:9205682,4812305 +g1,21670:11846782,4812305 +k1,21670:31387652,4812305:19540870 +) +) +] +[1,21670:6630773,45706769:25952256,40108032,0 +(1,21670:6630773,45706769:25952256,40108032,0 +(1,21670:6630773,45706769:0,0,0 +g1,21670:6630773,45706769 +) +[1,21670:6630773,45706769:25952256,40108032,0 +(1,21607:6630773,6254097:25952256,513147,134348 +h1,21606:6630773,6254097:983040,0,0 +k1,21606:10604985,6254097:296987 +k1,21606:11257833,6254097:296988 +k1,21606:12537860,6254097:296987 +k1,21606:15442525,6254097:296987 +k1,21606:18307213,6254097:296987 +k1,21606:18960061,6254097:296988 +k1,21606:21438086,6254097:296987 +k1,21606:24307361,6254097:296987 +k1,21606:25795793,6254097:296987 +k1,21606:28346564,6254097:296988 +k1,21606:29662636,6254097:296987 +k1,21606:31966991,6254097:296987 +k1,21606:32583029,6254097:0 +) +(1,21607:6630773,7119177:25952256,513147,126483 +g1,21606:9943617,7119177 +g1,21606:10770681,7119177 +g1,21606:12571610,7119177 +g1,21606:14468221,7119177 +g1,21606:15686535,7119177 +g1,21606:16868804,7119177 +g1,21606:19625903,7119177 +g1,21606:21919007,7119177 +g1,21606:23611146,7119177 +g1,21606:24829460,7119177 +g1,21606:27036057,7119177 +g1,21606:27766783,7119177 +k1,21607:32583029,7119177:3031701 +g1,21607:32583029,7119177 +) +(1,21609:6630773,7984257:25952256,505283,134348 +h1,21608:6630773,7984257:983040,0,0 +k1,21608:8808975,7984257:153140 +k1,21608:11623531,7984257:153139 +k1,21608:13474709,7984257:153140 +k1,21608:16725080,7984257:153140 +k1,21608:17234079,7984257:153139 +k1,21608:18664516,7984257:153140 +k1,21608:19469084,7984257:153140 +k1,21608:21033869,7984257:153139 +k1,21608:25414081,7984257:153140 +k1,21608:28598915,7984257:153139 +k1,21608:30045034,7984257:153094 +k1,21608:30881059,7984257:153140 +k1,21608:32583029,7984257:0 +) +(1,21609:6630773,8849337:25952256,513147,134348 +k1,21608:8829842,8849337:221192 +k1,21608:11770122,8849337:221191 +k1,21608:14675669,8849337:221192 +k1,21608:18299490,8849337:221192 +k1,21608:20725968,8849337:221191 +k1,21608:21598588,8849337:221192 +(1,21608:21598588,8849337:0,452978,115847 +r1,21670:23363701,8849337:1765113,568825,115847 +k1,21608:21598588,8849337:-1765113 +) +(1,21608:21598588,8849337:1765113,452978,115847 +k1,21608:21598588,8849337:3277 +h1,21608:23360424,8849337:0,411205,112570 +) +k1,21608:23584892,8849337:221191 +k1,21608:24997529,8849337:221192 +(1,21608:24997529,8849337:0,452978,122846 +r1,21670:27114354,8849337:2116825,575824,122846 +k1,21608:24997529,8849337:-2116825 +) +(1,21608:24997529,8849337:2116825,452978,122846 +k1,21608:24997529,8849337:3277 +h1,21608:27111077,8849337:0,411205,112570 +) +k1,21608:27335546,8849337:221192 +k1,21608:28548297,8849337:221191 +k1,21608:31966991,8849337:221192 +k1,21608:32583029,8849337:0 +) +(1,21609:6630773,9714417:25952256,505283,7863 +k1,21609:32583029,9714417:23736484 +g1,21609:32583029,9714417 +) +v1,21611:6630773,10399272:0,393216,0 +(1,21619:6630773,13452951:25952256,3446895,196608 +g1,21619:6630773,13452951 +g1,21619:6630773,13452951 +g1,21619:6434165,13452951 +(1,21619:6434165,13452951:0,3446895,196608 +r1,21670:32779637,13452951:26345472,3643503,196608 +k1,21619:6434165,13452951:-26345472 +) +(1,21619:6434165,13452951:26345472,3446895,196608 +[1,21619:6630773,13452951:25952256,3250287,0 +(1,21613:6630773,10633709:25952256,431045,112852 +(1,21612:6630773,10633709:0,0,0 +g1,21612:6630773,10633709 +g1,21612:6630773,10633709 +g1,21612:6303093,10633709 +(1,21612:6303093,10633709:0,0,0 +) +g1,21612:6630773,10633709 +) +g1,21613:8290543,10633709 +g1,21613:9286405,10633709 +g1,21613:15925484,10633709 +g1,21613:16589392,10633709 +g1,21613:18913070,10633709 +g1,21613:20904794,10633709 +g1,21613:21568702,10633709 +g1,21613:22896518,10633709 +h1,21613:23228472,10633709:0,0,0 +k1,21613:32583029,10633709:9354557 +g1,21613:32583029,10633709 +) +(1,21614:6630773,11318564:25952256,431045,79822 +h1,21614:6630773,11318564:0,0,0 +g1,21614:6962727,11318564 +g1,21614:7294681,11318564 +g1,21614:13269852,11318564 +g1,21614:13933760,11318564 +h1,21614:15925484,11318564:0,0,0 +k1,21614:32583029,11318564:16657545 +g1,21614:32583029,11318564 +) +(1,21615:6630773,12003419:25952256,431045,112852 +h1,21615:6630773,12003419:0,0,0 +g1,21615:9618359,12003419 +g1,21615:10282267,12003419 +g1,21615:14265714,12003419 +g1,21615:16257438,12003419 +g1,21615:16921346,12003419 +g1,21615:17917208,12003419 +g1,21615:20240886,12003419 +g1,21615:20904794,12003419 +h1,21615:21568702,12003419:0,0,0 +k1,21615:32583029,12003419:11014327 +g1,21615:32583029,12003419 +) +(1,21616:6630773,12688274:25952256,431045,112852 +h1,21616:6630773,12688274:0,0,0 +k1,21616:6630773,12688274:0 +h1,21616:10282267,12688274:0,0,0 +k1,21616:32583029,12688274:22300762 +g1,21616:32583029,12688274 +) +(1,21617:6630773,13373129:25952256,431045,79822 +h1,21617:6630773,13373129:0,0,0 +k1,21617:6630773,13373129:0 +h1,21617:9618359,13373129:0,0,0 +k1,21617:32583029,13373129:22964670 +g1,21617:32583029,13373129 +) +] +) +g1,21619:32583029,13452951 +g1,21619:6630773,13452951 +g1,21619:6630773,13452951 +g1,21619:32583029,13452951 +g1,21619:32583029,13452951 +) +h1,21619:6630773,13649559:0,0,0 +(1,21623:6630773,14514639:25952256,505283,126483 +h1,21622:6630773,14514639:983040,0,0 +k1,21622:8864398,14514639:208563 +k1,21622:13300033,14514639:208563 +k1,21622:16696924,14514639:208564 +k1,21622:18096932,14514639:208563 +k1,21622:19598511,14514639:208554 +k1,21622:22139500,14514639:208563 +k1,21622:23216415,14514639:208563 +k1,21622:24800579,14514639:208563 +k1,21622:26539409,14514639:208564 +k1,21622:27399400,14514639:208563 +k1,21622:30817916,14514639:208563 +(1,21622:30817916,14514639:0,459977,115847 +r1,21670:32583029,14514639:1765113,575824,115847 +k1,21622:30817916,14514639:-1765113 +) +(1,21622:30817916,14514639:1765113,459977,115847 +k1,21622:30817916,14514639:3277 +h1,21622:32579752,14514639:0,411205,112570 +) +k1,21622:32583029,14514639:0 +) +(1,21623:6630773,15379719:25952256,505283,126483 +g1,21622:8223953,15379719 +(1,21622:8223953,15379719:0,452978,115847 +r1,21670:12451049,15379719:4227096,568825,115847 +k1,21622:8223953,15379719:-4227096 +) +(1,21622:8223953,15379719:4227096,452978,115847 +k1,21622:8223953,15379719:3277 +h1,21622:12447772,15379719:0,411205,112570 +) +g1,21622:12650278,15379719 +g1,21622:13532392,15379719 +(1,21622:13532392,15379719:0,452978,122846 +r1,21670:15297505,15379719:1765113,575824,122846 +k1,21622:13532392,15379719:-1765113 +) +(1,21622:13532392,15379719:1765113,452978,122846 +k1,21622:13532392,15379719:3277 +h1,21622:15294228,15379719:0,411205,112570 +) +g1,21622:15670404,15379719 +k1,21623:32583029,15379719:12942454 +g1,21623:32583029,15379719 +) +v1,21625:6630773,16064574:0,393216,0 +(1,21631:6630773,17748543:25952256,2077185,196608 +g1,21631:6630773,17748543 +g1,21631:6630773,17748543 +g1,21631:6434165,17748543 +(1,21631:6434165,17748543:0,2077185,196608 +r1,21670:32779637,17748543:26345472,2273793,196608 +k1,21631:6434165,17748543:-26345472 +) +(1,21631:6434165,17748543:26345472,2077185,196608 +[1,21631:6630773,17748543:25952256,1880577,0 +(1,21627:6630773,16299011:25952256,431045,112852 +(1,21626:6630773,16299011:0,0,0 +g1,21626:6630773,16299011 +g1,21626:6630773,16299011 +g1,21626:6303093,16299011 +(1,21626:6303093,16299011:0,0,0 +) +g1,21626:6630773,16299011 +) +k1,21627:6630773,16299011:0 +g1,21627:11942036,16299011 +g1,21627:12605944,16299011 +g1,21627:16589391,16299011 +g1,21627:18581115,16299011 +g1,21627:19245023,16299011 +g1,21627:20240885,16299011 +g1,21627:22564563,16299011 +g1,21627:23228471,16299011 +h1,21627:23892379,16299011:0,0,0 +k1,21627:32583029,16299011:8690650 +g1,21627:32583029,16299011 +) +(1,21628:6630773,16983866:25952256,431045,112852 +h1,21628:6630773,16983866:0,0,0 +k1,21628:6630773,16983866:0 +h1,21628:10282267,16983866:0,0,0 +k1,21628:32583029,16983866:22300762 +g1,21628:32583029,16983866 +) +(1,21629:6630773,17668721:25952256,431045,79822 +h1,21629:6630773,17668721:0,0,0 +k1,21629:6630773,17668721:0 +h1,21629:9618359,17668721:0,0,0 +k1,21629:32583029,17668721:22964670 +g1,21629:32583029,17668721 +) +] +) +g1,21631:32583029,17748543 +g1,21631:6630773,17748543 +g1,21631:6630773,17748543 +g1,21631:32583029,17748543 +g1,21631:32583029,17748543 +) +h1,21631:6630773,17945151:0,0,0 +(1,21635:6630773,18810231:25952256,513147,134348 +h1,21634:6630773,18810231:983040,0,0 +k1,21634:8387363,18810231:145715 +k1,21634:9552164,18810231:145716 +k1,21634:11064960,18810231:145715 +k1,21634:11869967,18810231:145715 +k1,21634:14734772,18810231:145716 +k1,21634:17218156,18810231:145715 +k1,21634:18311523,18810231:145716 +k1,21634:19440278,18810231:145715 +k1,21634:21744749,18810231:145715 +k1,21634:22506503,18810231:145716 +k1,21634:24164134,18810231:145715 +k1,21634:25986260,18810231:145715 +k1,21634:27479342,18810231:145662 +k1,21634:28816503,18810231:145716 +k1,21634:30327935,18810231:145662 +k1,21634:32583029,18810231:0 +) +(1,21635:6630773,19675311:25952256,513147,134348 +g1,21634:9514357,19675311 +g1,21634:13116215,19675311 +g1,21634:15520731,19675311 +g1,21634:16371388,19675311 +(1,21634:16371388,19675311:0,452978,115847 +r1,21670:18136501,19675311:1765113,568825,115847 +k1,21634:16371388,19675311:-1765113 +) +(1,21634:16371388,19675311:1765113,452978,115847 +k1,21634:16371388,19675311:3277 +h1,21634:18133224,19675311:0,411205,112570 +) +g1,21634:18335730,19675311 +g1,21634:19726404,19675311 +(1,21634:19726404,19675311:0,452978,122846 +r1,21670:21843229,19675311:2116825,575824,122846 +k1,21634:19726404,19675311:-2116825 +) +(1,21634:19726404,19675311:2116825,452978,122846 +k1,21634:19726404,19675311:3277 +h1,21634:21839952,19675311:0,411205,112570 +) +g1,21634:22042458,19675311 +g1,21634:23233247,19675311 +g1,21634:26629978,19675311 +g1,21634:27445245,19675311 +k1,21635:32583029,19675311:3094371 +g1,21635:32583029,19675311 +) +v1,21637:6630773,20360166:0,393216,0 +(1,21643:6630773,22044135:25952256,2077185,196608 +g1,21643:6630773,22044135 +g1,21643:6630773,22044135 +g1,21643:6434165,22044135 +(1,21643:6434165,22044135:0,2077185,196608 +r1,21670:32779637,22044135:26345472,2273793,196608 +k1,21643:6434165,22044135:-26345472 +) +(1,21643:6434165,22044135:26345472,2077185,196608 +[1,21643:6630773,22044135:25952256,1880577,0 +(1,21639:6630773,20594603:25952256,431045,112852 +(1,21638:6630773,20594603:0,0,0 +g1,21638:6630773,20594603 +g1,21638:6630773,20594603 +g1,21638:6303093,20594603 +(1,21638:6303093,20594603:0,0,0 +) +g1,21638:6630773,20594603 +) +k1,21639:6630773,20594603:0 +g1,21639:9950313,20594603 +g1,21639:10614221,20594603 +g1,21639:14929622,20594603 +g1,21639:16921346,20594603 +g1,21639:17585254,20594603 +g1,21639:19576978,20594603 +g1,21639:21900656,20594603 +g1,21639:22564564,20594603 +h1,21639:23892380,20594603:0,0,0 +k1,21639:32583029,20594603:8690649 +g1,21639:32583029,20594603 +) +(1,21640:6630773,21279458:25952256,431045,112852 +h1,21640:6630773,21279458:0,0,0 +k1,21640:6630773,21279458:0 +h1,21640:10282267,21279458:0,0,0 +k1,21640:32583029,21279458:22300762 +g1,21640:32583029,21279458 +) +(1,21641:6630773,21964313:25952256,431045,79822 +h1,21641:6630773,21964313:0,0,0 +k1,21641:6630773,21964313:0 +h1,21641:9618359,21964313:0,0,0 +k1,21641:32583029,21964313:22964670 +g1,21641:32583029,21964313 +) +] +) +g1,21643:32583029,22044135 +g1,21643:6630773,22044135 +g1,21643:6630773,22044135 +g1,21643:32583029,22044135 +g1,21643:32583029,22044135 +) +h1,21643:6630773,22240743:0,0,0 +v1,21649:6630773,23105823:0,393216,0 +(1,21650:6630773,29710273:25952256,6997666,0 +g1,21650:6630773,29710273 +g1,21650:6237557,29710273 +r1,21670:6368629,29710273:131072,6997666,0 +g1,21650:6567858,29710273 +g1,21650:6764466,29710273 +[1,21650:6764466,29710273:25818563,6997666,0 +(1,21650:6764466,23520365:25818563,807758,219026 +(1,21649:6764466,23520365:0,807758,219026 +r1,21670:7908217,23520365:1143751,1026784,219026 +k1,21649:6764466,23520365:-1143751 +) +(1,21649:6764466,23520365:1143751,807758,219026 +) +k1,21649:8185914,23520365:277697 +k1,21649:8513594,23520365:327680 +k1,21649:10508333,23520365:277696 +k1,21649:13505118,23520365:277696 +k1,21649:16120484,23520365:277697 +k1,21649:17389741,23520365:277697 +k1,21649:18989298,23520365:277696 +k1,21649:19926287,23520365:277697 +k1,21649:22439416,23520365:277696 +k1,21649:23908558,23520365:277697 +k1,21649:26218525,23520365:277696 +k1,21649:27487782,23520365:277697 +k1,21649:31966991,23520365:277696 +k1,21649:32583029,23520365:0 +) +(1,21650:6764466,24385445:25818563,505283,134348 +k1,21649:10725724,24385445:231604 +k1,21649:14041452,24385445:231604 +k1,21649:14900892,24385445:231605 +k1,21649:16824636,24385445:231604 +k1,21649:18927293,24385445:231604 +k1,21649:20813681,24385445:231604 +k1,21649:22036845,24385445:231604 +k1,21649:24939697,24385445:231605 +k1,21649:27560088,24385445:231604 +k1,21649:29799060,24385445:231604 +k1,21649:32583029,24385445:0 +) +(1,21650:6764466,25250525:25818563,513147,134348 +k1,21649:8004025,25250525:291908 +k1,21649:11393165,25250525:291909 +k1,21649:14404162,25250525:291908 +k1,21649:15312108,25250525:291908 +k1,21649:15959876,25250525:291908 +k1,21649:17946546,25250525:291909 +k1,21649:19221494,25250525:291908 +k1,21649:21867455,25250525:291908 +k1,21649:24033693,25250525:291908 +k1,21649:26663271,25250525:291909 +k1,21649:29242386,25250525:291908 +k1,21649:30626779,25250525:291908 +k1,21650:32583029,25250525:0 +) +(1,21650:6764466,26115605:25818563,513147,134348 +k1,21649:7964966,26115605:181415 +k1,21649:10938216,26115605:181416 +k1,21649:11802516,26115605:181415 +k1,21649:13459147,26115605:181416 +k1,21649:15150512,26115605:181415 +k1,21649:18188642,26115605:181416 +k1,21649:19764008,26115605:181415 +k1,21649:22707767,26115605:181416 +k1,21649:24570180,26115605:181415 +k1,21649:26625926,26115605:181416 +k1,21649:30194242,26115605:181415 +k1,21649:32583029,26115605:0 +) +(1,21650:6764466,26980685:25818563,513147,134348 +k1,21649:9308573,26980685:206438 +k1,21649:10619294,26980685:206439 +k1,21649:12111548,26980685:206438 +k1,21649:14061244,26980685:206438 +k1,21649:14883721,26980685:206439 +k1,21649:16598798,26980685:206438 +k1,21649:19500732,26980685:206438 +k1,21649:22864695,26980685:206438 +k1,21649:24140682,26980685:206439 +k1,21649:25822335,26980685:206438 +k1,21649:29545435,26980685:206438 +k1,21649:30367912,26980685:206439 +k1,21649:31593435,26980685:206438 +k1,21650:32583029,26980685:0 +) +(1,21650:6764466,27845765:25818563,513147,134348 +k1,21649:9871309,27845765:272411 +k1,21649:11335165,27845765:272411 +k1,21649:13116216,27845765:272412 +k1,21649:15630614,27845765:272411 +k1,21649:16530860,27845765:272411 +k1,21649:18500653,27845765:272411 +k1,21649:20471102,27845765:272411 +k1,21649:23840744,27845765:272411 +k1,21649:25470407,27845765:272412 +k1,21649:29728062,27845765:272411 +k1,21649:30458570,27845765:272411 +k1,21649:31835263,27845765:272411 +k1,21649:32583029,27845765:0 +) +(1,21650:6764466,28710845:25818563,513147,134348 +k1,21649:10549876,28710845:220251 +k1,21649:11421555,28710845:220251 +k1,21649:13699637,28710845:220252 +k1,21649:14571316,28710845:220251 +k1,21649:15562270,28710845:220251 +k1,21649:19169422,28710845:220251 +k1,21649:22108763,28710845:220252 +k1,21649:24336382,28710845:220251 +k1,21649:25208061,28710845:220251 +k1,21649:26694468,28710845:220251 +k1,21649:27980991,28710845:220252 +k1,21649:28667203,28710845:220251 +k1,21649:29906539,28710845:220251 +k1,21649:32583029,28710845:0 +) +(1,21650:6764466,29575925:25818563,505283,134348 +g1,21649:7495192,29575925 +g1,21649:8310459,29575925 +g1,21649:9528773,29575925 +g1,21649:11005299,29575925 +g1,21649:11887413,29575925 +g1,21649:12702680,29575925 +g1,21649:13920994,29575925 +g1,21649:17217454,29575925 +k1,21650:32583029,29575925:13092131 +g1,21650:32583029,29575925 +) +] +g1,21650:32583029,29710273 +) +h1,21650:6630773,29710273:0,0,0 +(1,21652:6630773,32541433:25952256,32768,229376 +(1,21652:6630773,32541433:0,32768,229376 +(1,21652:6630773,32541433:5505024,32768,229376 +r1,21670:12135797,32541433:5505024,262144,229376 +) +k1,21652:6630773,32541433:-5505024 +) +(1,21652:6630773,32541433:25952256,32768,0 +r1,21670:32583029,32541433:25952256,32768,0 +) +) +(1,21652:6630773,34173285:25952256,606339,161218 +(1,21652:6630773,34173285:2464678,582746,14155 +g1,21652:6630773,34173285 +g1,21652:9095451,34173285 +) +g1,21652:12303307,34173285 +k1,21652:32583029,34173285:17283416 +g1,21652:32583029,34173285 +) +(1,21654:6630773,35431581:25952256,513147,134348 +k1,21653:7714793,35431581:181589 +k1,21653:10585981,35431581:181590 +k1,21653:14139397,35431581:181589 +k1,21653:14980278,35431581:181589 +k1,21653:16180953,35431581:181590 +k1,21653:18114319,35431581:181589 +k1,21653:21698537,35431581:181589 +k1,21653:22531555,35431581:181590 +k1,21653:25293296,35431581:181589 +k1,21653:28303418,35431581:181589 +k1,21653:29016505,35431581:181590 +k1,21653:31563944,35431581:181589 +k1,21653:32583029,35431581:0 +) +(1,21654:6630773,36296661:25952256,513147,134348 +k1,21653:8746124,36296661:288863 +k1,21653:9694278,36296661:288862 +k1,21653:11186382,36296661:288863 +k1,21653:13230954,36296661:288862 +k1,21653:15776222,36296661:288863 +k1,21653:17977425,36296661:288862 +k1,21653:20935569,36296661:288863 +k1,21653:21840469,36296661:288862 +k1,21653:23916499,36296661:288863 +k1,21653:25224446,36296661:288862 +k1,21653:26605794,36296661:288863 +k1,21653:27553949,36296661:288863 +k1,21653:30845014,36296661:288862 +k1,21653:32583029,36296661:0 +) +(1,21654:6630773,37161741:25952256,513147,134348 +k1,21653:9424661,37161741:245193 +k1,21653:12010572,37161741:244965 +k1,21653:15066375,37161741:244964 +k1,21653:16235398,37161741:244965 +k1,21653:18014561,37161741:244965 +k1,21653:20905214,37161741:244964 +k1,21653:24281489,37161741:244965 +k1,21653:25717898,37161741:244964 +k1,21653:28116376,37161741:244965 +k1,21653:30162269,37161741:244964 +k1,21653:31426319,37161741:244965 +k1,21653:32583029,37161741:0 +) +(1,21654:6630773,38026821:25952256,513147,134348 +k1,21653:9066141,38026821:148817 +k1,21653:9976486,38026821:148817 +k1,21653:11144388,38026821:148817 +k1,21653:12885075,38026821:148817 +k1,21653:15159225,38026821:148817 +k1,21653:15967334,38026821:148817 +k1,21653:17135236,38026821:148817 +k1,21653:20037876,38026821:148817 +k1,21653:21228715,38026821:148817 +k1,21653:24857494,38026821:148817 +k1,21653:25689196,38026821:148817 +k1,21653:28202552,38026821:148817 +k1,21653:29417640,38026821:148817 +k1,21653:32583029,38026821:0 +) +(1,21654:6630773,38891901:25952256,513147,134348 +k1,21653:7918064,38891901:268206 +k1,21653:9768309,38891901:268206 +k1,21653:10486092,38891901:268206 +k1,21653:13565137,38891901:268206 +k1,21653:16916156,38891901:268206 +k1,21653:19406689,38891901:268207 +k1,21653:21475824,38891901:268206 +k1,21653:22275527,38891901:268206 +k1,21653:23314436,38891901:268206 +k1,21653:26405278,38891901:268206 +k1,21653:29826421,38891901:268206 +k1,21653:30722462,38891901:268206 +k1,21653:32583029,38891901:0 +) +(1,21654:6630773,39756981:25952256,513147,134348 +k1,21653:10980253,39756981:286903 +k1,21653:11926448,39756981:286903 +k1,21653:13232436,39756981:286903 +k1,21653:16382608,39756981:286904 +k1,21653:19044536,39756981:286903 +k1,21653:19998595,39756981:286903 +k1,21653:20700253,39756981:286815 +k1,21653:23706245,39756981:286903 +k1,21653:24984708,39756981:286903 +k1,21653:28055581,39756981:286904 +k1,21653:28958522,39756981:286903 +k1,21653:30264510,39756981:286903 +k1,21653:32133452,39756981:286903 +k1,21653:32583029,39756981:0 +) +(1,21654:6630773,40622061:25952256,505283,126483 +g1,21653:9663779,40622061 +g1,21653:12382868,40622061 +k1,21654:32583028,40622061:18225560 +g1,21654:32583028,40622061 +) +v1,21656:6630773,41306916:0,393216,0 +(1,21660:6630773,41647599:25952256,733899,196608 +g1,21660:6630773,41647599 +g1,21660:6630773,41647599 +g1,21660:6434165,41647599 +(1,21660:6434165,41647599:0,733899,196608 +r1,21670:32779637,41647599:26345472,930507,196608 +k1,21660:6434165,41647599:-26345472 +) +(1,21660:6434165,41647599:26345472,733899,196608 +[1,21660:6630773,41647599:25952256,537291,0 +(1,21659:6630773,41534747:25952256,424439,112852 +(1,21657:6630773,41534747:0,0,0 +g1,21657:6630773,41534747 +g1,21657:6630773,41534747 +g1,21657:6303093,41534747 +(1,21657:6303093,41534747:0,0,0 +) +g1,21657:6630773,41534747 +) +g1,21659:7626635,41534747 +g1,21659:9618359,41534747 +g1,21659:10282267,41534747 +g1,21659:12937899,41534747 +g1,21659:16257439,41534747 +g1,21659:17253301,41534747 +g1,21659:20240886,41534747 +g1,21659:21236748,41534747 +g1,21659:23560426,41534747 +g1,21659:24556288,41534747 +g1,21659:26216058,41534747 +g1,21659:27543874,41534747 +g1,21659:28539736,41534747 +h1,21659:31195367,41534747:0,0,0 +k1,21659:32583029,41534747:1387662 +g1,21659:32583029,41534747 +) +] +) +g1,21660:32583029,41647599 +g1,21660:6630773,41647599 +g1,21660:6630773,41647599 +g1,21660:32583029,41647599 +g1,21660:32583029,41647599 +) +h1,21660:6630773,41844207:0,0,0 +] +(1,21670:32583029,45706769:0,0,0 +g1,21670:32583029,45706769 +) +) +] +(1,21670:6630773,47279633:25952256,0,0 +h1,21670:6630773,47279633:25952256,0,0 +) +] +(1,21670:4262630,4025873:0,0,0 +[1,21670:-473656,4025873:0,0,0 +(1,21670:-473656,-710413:0,0,0 +(1,21670:-473656,-710413:0,0,0 +g1,21670:-473656,-710413 +) +g1,21670:-473656,-710413 +) +] +) +] +!23453 +}372 !12 -{391 -[1,21521:4262630,47279633:28320399,43253760,0 -(1,21521:4262630,4025873:0,0,0 -[1,21521:-473656,4025873:0,0,0 -(1,21521:-473656,-710413:0,0,0 -(1,21521:-473656,-644877:0,0,0 -k1,21521:-473656,-644877:-65536 +{373 +[1,21670:4262630,47279633:28320399,43253760,0 +(1,21670:4262630,4025873:0,0,0 +[1,21670:-473656,4025873:0,0,0 +(1,21670:-473656,-710413:0,0,0 +(1,21670:-473656,-644877:0,0,0 +k1,21670:-473656,-644877:-65536 ) -(1,21521:-473656,4736287:0,0,0 -k1,21521:-473656,4736287:5209943 +(1,21670:-473656,4736287:0,0,0 +k1,21670:-473656,4736287:5209943 ) -g1,21521:-473656,-710413 +g1,21670:-473656,-710413 ) ] ) -[1,21521:6630773,47279633:25952256,43253760,0 -[1,21521:6630773,4812305:25952256,786432,0 -(1,21521:6630773,4812305:25952256,505283,134348 -(1,21521:6630773,4812305:25952256,505283,134348 -g1,21521:3078558,4812305 -[1,21521:3078558,4812305:0,0,0 -(1,21521:3078558,2439708:0,1703936,0 -k1,21521:1358238,2439708:-1720320 -(1,21457:1358238,2439708:1720320,1703936,0 -(1,21457:1358238,2439708:1179648,16384,0 -r1,21521:2537886,2439708:1179648,16384,0 +[1,21670:6630773,47279633:25952256,43253760,0 +[1,21670:6630773,4812305:25952256,786432,0 +(1,21670:6630773,4812305:25952256,0,0 +(1,21670:6630773,4812305:25952256,0,0 +g1,21670:3078558,4812305 +[1,21670:3078558,4812305:0,0,0 +(1,21670:3078558,2439708:0,1703936,0 +k1,21670:1358238,2439708:-1720320 +(1,21670:1358238,2439708:1720320,1703936,0 +(1,21670:1358238,2439708:1179648,16384,0 +r1,21670:2537886,2439708:1179648,16384,0 ) -g1,21457:3062174,2439708 -(1,21457:3062174,2439708:16384,1703936,0 -[1,21457:3062174,2439708:25952256,1703936,0 -(1,21457:3062174,1915420:25952256,1179648,0 -(1,21457:3062174,1915420:16384,1179648,0 -r1,21521:3078558,1915420:16384,1179648,0 +g1,21670:3062174,2439708 +(1,21670:3062174,2439708:16384,1703936,0 +[1,21670:3062174,2439708:25952256,1703936,0 +(1,21670:3062174,1915420:25952256,1179648,0 +(1,21670:3062174,1915420:16384,1179648,0 +r1,21670:3078558,1915420:16384,1179648,0 ) -k1,21457:29014430,1915420:25935872 -g1,21457:29014430,1915420 +k1,21670:29014430,1915420:25935872 +g1,21670:29014430,1915420 ) ] ) ) ) ] -[1,21521:3078558,4812305:0,0,0 -(1,21521:3078558,2439708:0,1703936,0 -g1,21521:29030814,2439708 -g1,21521:36135244,2439708 -(1,21457:36135244,2439708:1720320,1703936,0 -(1,21457:36135244,2439708:16384,1703936,0 -[1,21457:36135244,2439708:25952256,1703936,0 -(1,21457:36135244,1915420:25952256,1179648,0 -(1,21457:36135244,1915420:16384,1179648,0 -r1,21521:36151628,1915420:16384,1179648,0 +[1,21670:3078558,4812305:0,0,0 +(1,21670:3078558,2439708:0,1703936,0 +g1,21670:29030814,2439708 +g1,21670:36135244,2439708 +(1,21670:36135244,2439708:1720320,1703936,0 +(1,21670:36135244,2439708:16384,1703936,0 +[1,21670:36135244,2439708:25952256,1703936,0 +(1,21670:36135244,1915420:25952256,1179648,0 +(1,21670:36135244,1915420:16384,1179648,0 +r1,21670:36151628,1915420:16384,1179648,0 ) -k1,21457:62087500,1915420:25935872 -g1,21457:62087500,1915420 +k1,21670:62087500,1915420:25935872 +g1,21670:62087500,1915420 ) ] ) -g1,21457:36675916,2439708 -(1,21457:36675916,2439708:1179648,16384,0 -r1,21521:37855564,2439708:1179648,16384,0 +g1,21670:36675916,2439708 +(1,21670:36675916,2439708:1179648,16384,0 +r1,21670:37855564,2439708:1179648,16384,0 ) ) -k1,21521:3078556,2439708:-34777008 +k1,21670:3078556,2439708:-34777008 ) ] -[1,21521:3078558,4812305:0,0,0 -(1,21521:3078558,49800853:0,16384,2228224 -k1,21521:1358238,49800853:-1720320 -(1,21457:1358238,49800853:1720320,16384,2228224 -(1,21457:1358238,49800853:1179648,16384,0 -r1,21521:2537886,49800853:1179648,16384,0 +[1,21670:3078558,4812305:0,0,0 +(1,21670:3078558,49800853:0,16384,2228224 +k1,21670:1358238,49800853:-1720320 +(1,21670:1358238,49800853:1720320,16384,2228224 +(1,21670:1358238,49800853:1179648,16384,0 +r1,21670:2537886,49800853:1179648,16384,0 ) -g1,21457:3062174,49800853 -(1,21457:3062174,52029077:16384,1703936,0 -[1,21457:3062174,52029077:25952256,1703936,0 -(1,21457:3062174,51504789:25952256,1179648,0 -(1,21457:3062174,51504789:16384,1179648,0 -r1,21521:3078558,51504789:16384,1179648,0 +g1,21670:3062174,49800853 +(1,21670:3062174,52029077:16384,1703936,0 +[1,21670:3062174,52029077:25952256,1703936,0 +(1,21670:3062174,51504789:25952256,1179648,0 +(1,21670:3062174,51504789:16384,1179648,0 +r1,21670:3078558,51504789:16384,1179648,0 ) -k1,21457:29014430,51504789:25935872 -g1,21457:29014430,51504789 +k1,21670:29014430,51504789:25935872 +g1,21670:29014430,51504789 ) ] ) ) ) ] -[1,21521:3078558,4812305:0,0,0 -(1,21521:3078558,49800853:0,16384,2228224 -g1,21521:29030814,49800853 -g1,21521:36135244,49800853 -(1,21457:36135244,49800853:1720320,16384,2228224 -(1,21457:36135244,52029077:16384,1703936,0 -[1,21457:36135244,52029077:25952256,1703936,0 -(1,21457:36135244,51504789:25952256,1179648,0 -(1,21457:36135244,51504789:16384,1179648,0 -r1,21521:36151628,51504789:16384,1179648,0 +[1,21670:3078558,4812305:0,0,0 +(1,21670:3078558,49800853:0,16384,2228224 +g1,21670:29030814,49800853 +g1,21670:36135244,49800853 +(1,21670:36135244,49800853:1720320,16384,2228224 +(1,21670:36135244,52029077:16384,1703936,0 +[1,21670:36135244,52029077:25952256,1703936,0 +(1,21670:36135244,51504789:25952256,1179648,0 +(1,21670:36135244,51504789:16384,1179648,0 +r1,21670:36151628,51504789:16384,1179648,0 ) -k1,21457:62087500,51504789:25935872 -g1,21457:62087500,51504789 +k1,21670:62087500,51504789:25935872 +g1,21670:62087500,51504789 ) ] ) -g1,21457:36675916,49800853 -(1,21457:36675916,49800853:1179648,16384,0 -r1,21521:37855564,49800853:1179648,16384,0 +g1,21670:36675916,49800853 +(1,21670:36675916,49800853:1179648,16384,0 +r1,21670:37855564,49800853:1179648,16384,0 ) ) -k1,21521:3078556,49800853:-34777008 -) -] -g1,21521:6630773,4812305 -k1,21521:21078841,4812305:13252691 -g1,21521:22701512,4812305 -g1,21521:23350318,4812305 -g1,21521:24759997,4812305 -g1,21521:28372341,4812305 -g1,21521:30105768,4812305 -) -) -] -[1,21521:6630773,45706769:25952256,40108032,0 -(1,21521:6630773,45706769:25952256,40108032,0 -(1,21521:6630773,45706769:0,0,0 -g1,21521:6630773,45706769 -) -[1,21521:6630773,45706769:25952256,40108032,0 -(1,21475:6630773,6254097:25952256,32768,229376 -(1,21475:6630773,6254097:0,32768,229376 -(1,21475:6630773,6254097:5505024,32768,229376 -r1,21521:12135797,6254097:5505024,262144,229376 -) -k1,21475:6630773,6254097:-5505024 -) -(1,21475:6630773,6254097:25952256,32768,0 -r1,21521:32583029,6254097:25952256,32768,0 -) -) -(1,21475:6630773,7858425:25952256,606339,14155 -(1,21475:6630773,7858425:2464678,582746,14155 -g1,21475:6630773,7858425 -g1,21475:9095451,7858425 -) -k1,21475:32583028,7858425:18530696 -g1,21475:32583028,7858425 -) -(1,21478:6630773,9093129:25952256,513147,126483 -k1,21477:8032465,9093129:205005 -k1,21477:9543603,9093129:205005 -k1,21477:11103893,9093129:205005 -k1,21477:11924936,9093129:205005 -k1,21477:13261748,9093129:205005 -k1,21477:14856116,9093129:205005 -k1,21477:17615714,9093129:205005 -k1,21477:19214670,9093129:205005 -k1,21477:19834513,9093129:205000 -k1,21477:20571015,9093129:205005 -k1,21477:21427448,9093129:205005 -k1,21477:23340977,9093129:205005 -k1,21477:24228867,9093129:205005 -k1,21477:26675203,9093129:205005 -k1,21477:27899293,9093129:205005 -k1,21477:29667332,9093129:205005 -k1,21477:32583029,9093129:0 -) -(1,21478:6630773,9934617:25952256,513147,134348 -k1,21477:9357726,9934617:287703 -k1,21477:10304721,9934617:287703 -k1,21477:11981787,9934617:287703 -k1,21477:13261050,9934617:287703 -k1,21477:15300530,9934617:287703 -k1,21477:16779678,9934617:287703 -k1,21477:18456743,9934617:287702 -k1,21477:19848728,9934617:287703 -k1,21477:20884197,9934617:287703 -k1,21477:23210070,9934617:287703 -k1,21477:24180658,9934617:287703 -k1,21477:28217676,9934617:287703 -k1,21477:30240772,9934617:287703 -k1,21477:32583029,9934617:0 -) -(1,21478:6630773,10776105:25952256,513147,134348 -k1,21477:9460050,10776105:144922 -k1,21477:11071667,10776105:144921 -k1,21477:13071258,10776105:144922 -k1,21477:14025550,10776105:144922 -k1,21477:15396650,10776105:144921 -k1,21477:16224457,10776105:144922 -k1,21477:18391165,10776105:144922 -k1,21477:21941337,10776105:144921 -k1,21477:22556152,10776105:144922 -k1,21477:23232571,10776105:144922 -k1,21477:25510034,10776105:144921 -k1,21477:26939462,10776105:144922 -k1,21477:28473747,10776105:144922 -k1,21477:29150165,10776105:144921 -k1,21477:30361358,10776105:144922 -k1,21477:32583029,10776105:0 -) -(1,21478:6630773,11617593:25952256,513147,126483 -k1,21477:10413838,11617593:203489 -k1,21477:12315365,11617593:203489 -k1,21477:13931156,11617593:203490 -k1,21477:15326090,11617593:203489 -k1,21477:16814085,11617593:203489 -k1,21477:17633612,11617593:203489 -k1,21477:18856187,11617593:203490 -k1,21477:21759104,11617593:203489 -k1,21477:23329674,11617593:203489 -k1,21477:24192455,11617593:203489 -k1,21477:25166647,11617593:203489 -k1,21477:27150750,11617593:203490 -k1,21477:29291483,11617593:203489 -k1,21477:30486532,11617593:203489 -k1,21477:32583029,11617593:0 -) -(1,21478:6630773,12459081:25952256,505283,134348 -g1,21477:9767981,12459081 -g1,21477:11512549,12459081 -g1,21477:15052803,12459081 -g1,21477:16243592,12459081 -g1,21477:18198531,12459081 -g1,21477:23777610,12459081 -k1,21478:32583029,12459081:6694504 -g1,21478:32583029,12459081 -) -(1,21480:6630773,13300569:25952256,513147,126483 -h1,21479:6630773,13300569:983040,0,0 -k1,21479:9079689,13300569:269189 -k1,21479:10702852,13300569:269189 -k1,21479:13740937,13300569:269189 -k1,21479:16628945,13300569:269189 -k1,21479:17557426,13300569:269189 -k1,21479:21117833,13300569:269189 -k1,21479:22046314,13300569:269189 -k1,21479:23334588,13300569:269189 -k1,21479:25134043,13300569:269189 -k1,21479:26350883,13300569:269189 -k1,21479:28197524,13300569:269189 -k1,21479:31923737,13300569:269189 -k1,21479:32583029,13300569:0 -) -(1,21480:6630773,14142057:25952256,513147,134348 -k1,21479:8459949,14142057:266142 -k1,21479:10772124,14142057:266141 -k1,21479:12057351,14142057:266142 -k1,21479:14482249,14142057:266142 -k1,21479:15407683,14142057:266142 -k1,21479:17063187,14142057:266141 -k1,21479:18896950,14142057:266142 -k1,21479:19577868,14142057:266075 -k1,21479:21111476,14142057:266142 -k1,21479:25250795,14142057:266141 -k1,21479:30072345,14142057:266142 -k1,21479:32583029,14142057:0 -) -(1,21480:6630773,14983545:25952256,505283,126483 -k1,21479:9299016,14983545:195570 -k1,21479:11627129,14983545:195571 -k1,21479:13351654,14983545:195570 -k1,21479:18067898,14983545:195570 -k1,21479:18879507,14983545:195571 -k1,21479:20826854,14983545:195570 -k1,21479:22719806,14983545:195570 -k1,21479:23686080,14983545:195571 -k1,21479:27090948,14983545:195570 -k1,21479:28641803,14983545:195570 -k1,21479:29453412,14983545:195571 -k1,21479:31038345,14983545:195570 -k1,21480:32583029,14983545:0 -) -(1,21480:6630773,15825033:25952256,513147,126483 -k1,21479:8030997,15825033:177322 -k1,21479:8739815,15825033:177321 -k1,21479:9568565,15825033:177322 -k1,21479:11818791,15825033:177322 -k1,21479:13015197,15825033:177321 -k1,21479:14581882,15825033:177322 -k1,21479:15706854,15825033:177321 -k1,21479:19522079,15825033:177322 -k1,21479:20350829,15825033:177322 -k1,21479:20884010,15825033:177321 -k1,21479:24518356,15825033:177322 -k1,21479:25311716,15825033:177322 -k1,21479:28155042,15825033:177321 -k1,21479:28983792,15825033:177322 -k1,21479:32583029,15825033:0 -) -(1,21480:6630773,16666521:25952256,513147,126483 -g1,21479:7489294,16666521 -g1,21479:8707608,16666521 -g1,21479:11080011,16666521 -g1,21479:11938532,16666521 -g1,21479:13156846,16666521 -k1,21480:32583029,16666521:16697919 -g1,21480:32583029,16666521 -) -(1,21482:6630773,17508009:25952256,505283,126483 -h1,21481:6630773,17508009:983040,0,0 -k1,21481:9876553,17508009:324840 -k1,21481:12729117,17508009:324840 -k1,21481:15084917,17508009:324839 -k1,21481:16061185,17508009:324840 -k1,21481:17775388,17508009:324840 -k1,21481:20539478,17508009:324840 -k1,21481:22055762,17508009:324839 -k1,21481:24888665,17508009:324840 -k1,21481:29951758,17508009:324840 -k1,21481:32583029,17508009:0 -) -(1,21482:6630773,18349497:25952256,513147,134348 -k1,21481:8816580,18349497:275433 -k1,21481:10193094,18349497:275509 -k1,21481:12212516,18349497:275509 -k1,21481:12946122,18349497:275509 -k1,21481:15851591,18349497:275509 -k1,21481:16778528,18349497:275509 -k1,21481:20172895,18349497:275509 -k1,21481:22044861,18349497:275509 -k1,21481:23714322,18349497:275510 -k1,21481:26915358,18349497:275509 -k1,21481:28761765,18349497:275509 -k1,21481:30426637,18349497:275509 -k1,21481:31966991,18349497:275509 -k1,21482:32583029,18349497:0 -) -(1,21482:6630773,19190985:25952256,513147,126483 -k1,21481:7488029,19190985:268743 -k1,21481:9218880,19190985:268743 -k1,21481:9902396,19190985:268673 -k1,21481:12009424,19190985:268743 -k1,21481:13044283,19190985:268743 -k1,21481:14702388,19190985:268742 -k1,21481:15587169,19190985:268743 -k1,21481:18487183,19190985:268743 -k1,21481:20839971,19190985:268743 -k1,21481:23753092,19190985:268743 -k1,21481:25836527,19190985:268743 -k1,21481:26756698,19190985:268743 -k1,21481:28044525,19190985:268742 -k1,21481:29582045,19190985:268743 -k1,21481:30510080,19190985:268743 -k1,21481:32168186,19190985:268743 -k1,21482:32583029,19190985:0 -) -(1,21482:6630773,20032473:25952256,513147,134348 -k1,21481:9873213,20032473:216643 -k1,21481:11194138,20032473:216643 -k1,21481:13821852,20032473:216644 -k1,21481:15021535,20032473:216643 -k1,21481:16280200,20032473:216643 -k1,21481:17886206,20032473:216643 -k1,21481:19367695,20032473:216644 -k1,21481:21155236,20032473:216643 -k1,21481:23732486,20032473:216643 -k1,21481:25015400,20032473:216643 -k1,21481:25883471,20032473:216643 -k1,21481:26787588,20032473:216644 -k1,21481:27620269,20032473:216643 -k1,21481:30913172,20032473:216643 -k1,21481:32583029,20032473:0 -) -(1,21482:6630773,20873961:25952256,513147,134348 -k1,21481:7993921,20873961:206438 -k1,21481:9304642,20873961:206439 -k1,21481:10603565,20873961:206438 -k1,21481:13536302,20873961:206439 -k1,21481:16145290,20873961:206438 -k1,21481:17011021,20873961:206439 -k1,21481:18606822,20873961:206438 -k1,21481:20380881,20873961:206438 -k1,21481:21634585,20873961:206439 -k1,21481:23328035,20873961:206438 -k1,21481:24217359,20873961:206439 -k1,21481:25991418,20873961:206438 -k1,21481:29351449,20873961:206439 -k1,21481:31923737,20873961:206438 -k1,21482:32583029,20873961:0 -) -(1,21482:6630773,21715449:25952256,473825,0 -k1,21482:32583030,21715449:25363744 -g1,21482:32583030,21715449 -) -(1,21484:6630773,22556937:25952256,513147,134348 -h1,21483:6630773,22556937:983040,0,0 -k1,21483:9483340,22556937:152484 -k1,21483:13365479,22556937:152485 -k1,21483:13932759,22556937:152437 -k1,21483:16995698,22556937:152485 -k1,21483:19674595,22556937:152484 -k1,21483:22008773,22556937:152484 -k1,21483:22820550,22556937:152485 -k1,21483:24362397,22556937:152484 -k1,21483:26326296,22556937:152484 -k1,21483:27094818,22556937:152484 -k1,21483:28266388,22556937:152485 -k1,21483:30072345,22556937:152484 -k1,21483:32583029,22556937:0 -) -(1,21484:6630773,23398425:25952256,513147,134348 -k1,21483:9150763,23398425:185598 -k1,21483:12630856,23398425:185598 -k1,21483:13577981,23398425:185597 -k1,21483:15197507,23398425:185598 -k1,21483:15971618,23398425:185598 -k1,21483:17229385,23398425:185598 -k1,21483:19150376,23398425:185598 -k1,21483:22098316,23398425:185597 -k1,21483:26564726,23398425:185598 -k1,21483:29385527,23398425:185598 -k1,21483:32583029,23398425:0 -) -(1,21484:6630773,24239913:25952256,513147,126483 -k1,21483:8216442,24239913:191063 -k1,21483:9066797,24239913:191063 -k1,21483:10350346,24239913:191064 -k1,21483:11732854,24239913:191063 -k1,21483:16173271,24239913:191063 -k1,21483:19484503,24239913:191063 -k1,21483:20291605,24239913:191064 -k1,21483:21916596,24239913:191063 -k1,21483:22522494,24239913:191055 -k1,21483:24153383,24239913:191063 -k1,21483:24995875,24239913:191064 -k1,21483:28176690,24239913:191063 -k1,21483:31391584,24239913:191063 -k1,21483:32583029,24239913:0 -) -(1,21484:6630773,25081401:25952256,513147,134348 -k1,21483:10161635,25081401:221949 -k1,21483:11951204,25081401:221948 -k1,21483:13562516,25081401:221949 -k1,21483:17192336,25081401:221948 -k1,21483:19103803,25081401:221949 -k1,21483:21017891,25081401:221948 -k1,21483:24969494,25081401:221949 -k1,21483:28101896,25081401:221948 -k1,21483:31313597,25081401:221949 -k1,21484:32583029,25081401:0 -) -(1,21484:6630773,25922889:25952256,513147,134348 -k1,21483:10006592,25922889:182905 -k1,21483:12006154,25922889:182904 -k1,21483:15918713,25922889:182905 -k1,21483:19012072,25922889:182905 -k1,21483:20910710,25922889:182905 -k1,21483:21551711,25922889:182904 -k1,21483:24364576,25922889:182905 -k1,21483:25198909,25922889:182905 -k1,21483:27563508,25922889:182905 -k1,21483:28937857,25922889:182904 -k1,21483:31193666,25922889:182905 -k1,21483:32583029,25922889:0 -) -(1,21484:6630773,26764377:25952256,513147,126483 -k1,21483:8903565,26764377:234622 -k1,21483:9754224,26764377:234621 -k1,21483:10971886,26764377:234622 -k1,21483:13717191,26764377:234621 -k1,21483:15018084,26764377:234622 -k1,21483:18547200,26764377:234621 -k1,21483:19543350,26764377:234622 -k1,21483:21211900,26764377:234622 -k1,21483:21861329,26764377:234586 -k1,21483:25295418,26764377:234621 -k1,21483:27247083,26764377:234622 -k1,21483:28140996,26764377:234621 -k1,21483:30072345,26764377:234622 -k1,21483:32583029,26764377:0 -) -(1,21484:6630773,27605865:25952256,513147,134348 -k1,21483:7828509,27605865:206176 -k1,21483:11905241,27605865:206176 -k1,21483:14508725,27605865:206177 -k1,21483:16404419,27605865:206176 -k1,21483:18642866,27605865:206176 -k1,21483:19840602,27605865:206176 -k1,21483:20662816,27605865:206176 -k1,21483:24522625,27605865:206177 -k1,21483:25994957,27605865:206176 -k1,21483:29066367,27605865:206176 -k1,21483:32583029,27605865:0 -) -(1,21484:6630773,28447353:25952256,513147,134348 -k1,21483:8661078,28447353:182190 -k1,21483:11970646,28447353:182190 -k1,21483:12812129,28447353:182191 -k1,21483:14383682,28447353:182190 -k1,21483:15830717,28447353:182190 -k1,21483:17580528,28447353:182190 -k1,21483:19738628,28447353:182190 -k1,21483:23721906,28447353:182190 -k1,21483:24895657,28447353:182191 -k1,21483:28163937,28447353:182190 -k1,21483:29631943,28447353:182190 -k1,21484:32583029,28447353:0 -k1,21484:32583029,28447353:0 -) -(1,21485:6630773,31254921:25952256,32768,229376 -(1,21485:6630773,31254921:0,32768,229376 -(1,21485:6630773,31254921:5505024,32768,229376 -r1,21521:12135797,31254921:5505024,262144,229376 -) -k1,21485:6630773,31254921:-5505024 -) -(1,21485:6630773,31254921:25952256,32768,0 -r1,21521:32583029,31254921:25952256,32768,0 -) -) -(1,21485:6630773,32859249:25952256,606339,161218 -(1,21485:6630773,32859249:2464678,582746,14155 -g1,21485:6630773,32859249 -g1,21485:9095451,32859249 -) -g1,21485:12963124,32859249 -g1,21485:15089636,32859249 -g1,21485:16104920,32859249 -g1,21485:17838216,32859249 -k1,21485:32583029,32859249:11743788 -g1,21485:32583029,32859249 -) -v1,21488:6630773,34442931:0,393216,0 -(1,21492:6630773,34758027:25952256,708312,196608 -g1,21492:6630773,34758027 -g1,21492:6630773,34758027 -g1,21492:6434165,34758027 -(1,21492:6434165,34758027:0,708312,196608 -r1,21521:32779637,34758027:26345472,904920,196608 -k1,21492:6434165,34758027:-26345472 -) -(1,21492:6434165,34758027:26345472,708312,196608 -[1,21492:6630773,34758027:25952256,511704,0 -(1,21490:6630773,34650549:25952256,404226,107478 -(1,21489:6630773,34650549:0,0,0 -g1,21489:6630773,34650549 -g1,21489:6630773,34650549 -g1,21489:6303093,34650549 -(1,21489:6303093,34650549:0,0,0 -) -g1,21489:6630773,34650549 -) -k1,21490:6630773,34650549:0 -h1,21490:19908891,34650549:0,0,0 -k1,21490:32583029,34650549:12674138 -g1,21490:32583029,34650549 -) -] -) -g1,21492:32583029,34758027 -g1,21492:6630773,34758027 -g1,21492:6630773,34758027 -g1,21492:32583029,34758027 -g1,21492:32583029,34758027 -) -h1,21492:6630773,34954635:0,0,0 -(1,21496:6630773,36320411:25952256,513147,126483 -h1,21495:6630773,36320411:983040,0,0 -k1,21495:8614266,36320411:171423 -k1,21495:9903734,36320411:171424 -k1,21495:11094242,36320411:171423 -k1,21495:14257384,36320411:171423 -k1,21495:17187217,36320411:171423 -k1,21495:17974679,36320411:171424 -k1,21495:19349343,36320411:171423 -k1,21495:22112060,36320411:171423 -k1,21495:23453957,36320411:171424 -k1,21495:25155646,36320411:171423 -k1,21495:26633202,36320411:171423 -k1,21495:27456053,36320411:171423 -k1,21495:29003733,36320411:171424 -k1,21495:30867296,36320411:171423 -k1,21496:32583029,36320411:0 -) -(1,21496:6630773,37161899:25952256,513147,134348 -k1,21495:8257991,37161899:219505 -k1,21495:10045116,37161899:219504 -k1,21495:11283706,37161899:219505 -k1,21495:13603639,37161899:219504 -k1,21495:15055221,37161899:219505 -k1,21495:17553412,37161899:219504 -h1,21495:18524000,37161899:0,0,0 -k1,21495:18743505,37161899:219505 -k1,21495:19772379,37161899:219504 -k1,21495:21490037,37161899:219505 -h1,21495:22685414,37161899:0,0,0 -k1,21495:22904918,37161899:219504 -k1,21495:24072074,37161899:219505 -k1,21495:26409046,37161899:219504 -k1,21495:27437921,37161899:219505 -k1,21495:28676510,37161899:219504 -k1,21495:29988500,37161899:219505 -k1,21495:30867296,37161899:219504 -k1,21496:32583029,37161899:0 -) -(1,21496:6630773,38003387:25952256,505283,134348 -k1,21496:32583029,38003387:24163778 -g1,21496:32583029,38003387 -) -v1,21498:6630773,39193853:0,393216,0 -(1,21521:6630773,45498260:25952256,6697623,196608 -g1,21521:6630773,45498260 -g1,21521:6630773,45498260 -g1,21521:6434165,45498260 -(1,21521:6434165,45498260:0,6697623,196608 -r1,21521:32779637,45498260:26345472,6894231,196608 -k1,21521:6434165,45498260:-26345472 -) -(1,21521:6434165,45498260:26345472,6697623,196608 -[1,21521:6630773,45498260:25952256,6501015,0 -(1,21500:6630773,39401471:25952256,404226,101187 -(1,21499:6630773,39401471:0,0,0 -g1,21499:6630773,39401471 -g1,21499:6630773,39401471 -g1,21499:6303093,39401471 -(1,21499:6303093,39401471:0,0,0 -) -g1,21499:6630773,39401471 -) -k1,21500:6630773,39401471:0 -h1,21500:12637541,39401471:0,0,0 -k1,21500:32583029,39401471:19945488 -g1,21500:32583029,39401471 -) -(1,21501:6630773,40067649:25952256,404226,101187 -h1,21501:6630773,40067649:0,0,0 -k1,21501:6630773,40067649:0 -h1,21501:11372958,40067649:0,0,0 -k1,21501:32583030,40067649:21210072 -g1,21501:32583030,40067649 -) -(1,21502:6630773,40733827:25952256,404226,101187 -h1,21502:6630773,40733827:0,0,0 -k1,21502:6630773,40733827:0 -h1,21502:11056813,40733827:0,0,0 -k1,21502:32583029,40733827:21526216 -g1,21502:32583029,40733827 -) -(1,21503:6630773,41400005:25952256,404226,101187 -h1,21503:6630773,41400005:0,0,0 -k1,21503:6630773,41400005:0 -h1,21503:11056813,41400005:0,0,0 -k1,21503:32583029,41400005:21526216 -g1,21503:32583029,41400005 -) -(1,21504:6630773,42066183:25952256,404226,107478 -h1,21504:6630773,42066183:0,0,0 -k1,21504:6630773,42066183:0 -h1,21504:11689104,42066183:0,0,0 -k1,21504:32583028,42066183:20893924 -g1,21504:32583028,42066183 -) -(1,21505:6630773,42732361:25952256,404226,101187 -h1,21505:6630773,42732361:0,0,0 -k1,21505:6630773,42732361:0 -h1,21505:11056813,42732361:0,0,0 -k1,21505:32583029,42732361:21526216 -g1,21505:32583029,42732361 -) -(1,21506:6630773,43398539:25952256,404226,101187 -h1,21506:6630773,43398539:0,0,0 -k1,21506:6630773,43398539:0 -h1,21506:11056813,43398539:0,0,0 -k1,21506:32583029,43398539:21526216 -g1,21506:32583029,43398539 -) -(1,21507:6630773,44064717:25952256,404226,101187 -h1,21507:6630773,44064717:0,0,0 -k1,21507:6630773,44064717:0 -h1,21507:11056813,44064717:0,0,0 -k1,21507:32583029,44064717:21526216 -g1,21507:32583029,44064717 -) -(1,21508:6630773,44730895:25952256,404226,101187 -h1,21508:6630773,44730895:0,0,0 -k1,21508:6630773,44730895:0 -h1,21508:11372958,44730895:0,0,0 -k1,21508:32583030,44730895:21210072 -g1,21508:32583030,44730895 -) -(1,21509:6630773,45397073:25952256,404226,101187 -h1,21509:6630773,45397073:0,0,0 -k1,21509:6630773,45397073:0 -h1,21509:10740667,45397073:0,0,0 -k1,21509:32583029,45397073:21842362 -g1,21509:32583029,45397073 -) -] -) -g1,21521:32583029,45498260 -g1,21521:6630773,45498260 -g1,21521:6630773,45498260 -g1,21521:32583029,45498260 -g1,21521:32583029,45498260 -) -] -(1,21521:32583029,45706769:0,0,0 -g1,21521:32583029,45706769 -) -) -] -(1,21521:6630773,47279633:25952256,0,0 -h1,21521:6630773,47279633:25952256,0,0 -) -] -(1,21521:4262630,4025873:0,0,0 -[1,21521:-473656,4025873:0,0,0 -(1,21521:-473656,-710413:0,0,0 -(1,21521:-473656,-710413:0,0,0 -g1,21521:-473656,-710413 -) -g1,21521:-473656,-710413 +k1,21670:3078556,49800853:-34777008 ) ] +g1,21670:6630773,4812305 ) -] -!21069 -}391 -Input:3516:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3517:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3518:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3519:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3520:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3521:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!576 -{392 -[1,21567:4262630,47279633:28320399,43253760,0 -(1,21567:4262630,4025873:0,0,0 -[1,21567:-473656,4025873:0,0,0 -(1,21567:-473656,-710413:0,0,0 -(1,21567:-473656,-644877:0,0,0 -k1,21567:-473656,-644877:-65536 -) -(1,21567:-473656,4736287:0,0,0 -k1,21567:-473656,4736287:5209943 -) -g1,21567:-473656,-710413 ) ] +[1,21670:6630773,45706769:0,40108032,0 +(1,21670:6630773,45706769:0,40108032,0 +(1,21670:6630773,45706769:0,0,0 +g1,21670:6630773,45706769 ) -[1,21567:6630773,47279633:25952256,43253760,0 -[1,21567:6630773,4812305:25952256,786432,0 -(1,21567:6630773,4812305:25952256,505283,126483 -(1,21567:6630773,4812305:25952256,505283,126483 -g1,21567:3078558,4812305 -[1,21567:3078558,4812305:0,0,0 -(1,21567:3078558,2439708:0,1703936,0 -k1,21567:1358238,2439708:-1720320 -(1,21457:1358238,2439708:1720320,1703936,0 -(1,21457:1358238,2439708:1179648,16384,0 -r1,21567:2537886,2439708:1179648,16384,0 -) -g1,21457:3062174,2439708 -(1,21457:3062174,2439708:16384,1703936,0 -[1,21457:3062174,2439708:25952256,1703936,0 -(1,21457:3062174,1915420:25952256,1179648,0 -(1,21457:3062174,1915420:16384,1179648,0 -r1,21567:3078558,1915420:16384,1179648,0 -) -k1,21457:29014430,1915420:25935872 -g1,21457:29014430,1915420 -) +[1,21670:6630773,45706769:0,40108032,0 +h1,21670:6630773,6254097:0,0,0 ] +(1,21670:6630773,45706769:0,0,0 +g1,21670:6630773,45706769 ) ) +] +(1,21670:6630773,47279633:25952256,0,0 +h1,21670:6630773,47279633:25952256,0,0 ) ] -[1,21567:3078558,4812305:0,0,0 -(1,21567:3078558,2439708:0,1703936,0 -g1,21567:29030814,2439708 -g1,21567:36135244,2439708 -(1,21457:36135244,2439708:1720320,1703936,0 -(1,21457:36135244,2439708:16384,1703936,0 -[1,21457:36135244,2439708:25952256,1703936,0 -(1,21457:36135244,1915420:25952256,1179648,0 -(1,21457:36135244,1915420:16384,1179648,0 -r1,21567:36151628,1915420:16384,1179648,0 +(1,21670:4262630,4025873:0,0,0 +[1,21670:-473656,4025873:0,0,0 +(1,21670:-473656,-710413:0,0,0 +(1,21670:-473656,-710413:0,0,0 +g1,21670:-473656,-710413 ) -k1,21457:62087500,1915420:25935872 -g1,21457:62087500,1915420 +g1,21670:-473656,-710413 ) ] ) -g1,21457:36675916,2439708 -(1,21457:36675916,2439708:1179648,16384,0 -r1,21567:37855564,2439708:1179648,16384,0 +] +!3399 +}373 +Input:3553:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3554:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3555:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3556:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!387 +{374 +[1,21691:4262630,47279633:28320399,43253760,11795 +(1,21691:4262630,4025873:0,0,0 +[1,21691:-473656,4025873:0,0,0 +(1,21691:-473656,-710413:0,0,0 +(1,21691:-473656,-644877:0,0,0 +k1,21691:-473656,-644877:-65536 ) +(1,21691:-473656,4736287:0,0,0 +k1,21691:-473656,4736287:5209943 ) -k1,21567:3078556,2439708:-34777008 +g1,21691:-473656,-710413 ) ] -[1,21567:3078558,4812305:0,0,0 -(1,21567:3078558,49800853:0,16384,2228224 -k1,21567:1358238,49800853:-1720320 -(1,21457:1358238,49800853:1720320,16384,2228224 -(1,21457:1358238,49800853:1179648,16384,0 -r1,21567:2537886,49800853:1179648,16384,0 ) -g1,21457:3062174,49800853 -(1,21457:3062174,52029077:16384,1703936,0 -[1,21457:3062174,52029077:25952256,1703936,0 -(1,21457:3062174,51504789:25952256,1179648,0 -(1,21457:3062174,51504789:16384,1179648,0 -r1,21567:3078558,51504789:16384,1179648,0 +[1,21691:6630773,47279633:25952256,43253760,11795 +[1,21691:6630773,4812305:25952256,786432,0 +(1,21691:6630773,4812305:25952256,0,0 +(1,21691:6630773,4812305:25952256,0,0 +g1,21691:3078558,4812305 +[1,21691:3078558,4812305:0,0,0 +(1,21691:3078558,2439708:0,1703936,0 +k1,21691:1358238,2439708:-1720320 +(1,21670:1358238,2439708:1720320,1703936,0 +(1,21670:1358238,2439708:1179648,16384,0 +r1,21691:2537886,2439708:1179648,16384,0 +) +g1,21670:3062174,2439708 +(1,21670:3062174,2439708:16384,1703936,0 +[1,21670:3062174,2439708:25952256,1703936,0 +(1,21670:3062174,1915420:25952256,1179648,0 +(1,21670:3062174,1915420:16384,1179648,0 +r1,21691:3078558,1915420:16384,1179648,0 ) -k1,21457:29014430,51504789:25935872 -g1,21457:29014430,51504789 +k1,21670:29014430,1915420:25935872 +g1,21670:29014430,1915420 ) ] ) ) ) ] -[1,21567:3078558,4812305:0,0,0 -(1,21567:3078558,49800853:0,16384,2228224 -g1,21567:29030814,49800853 -g1,21567:36135244,49800853 -(1,21457:36135244,49800853:1720320,16384,2228224 -(1,21457:36135244,52029077:16384,1703936,0 -[1,21457:36135244,52029077:25952256,1703936,0 -(1,21457:36135244,51504789:25952256,1179648,0 -(1,21457:36135244,51504789:16384,1179648,0 -r1,21567:36151628,51504789:16384,1179648,0 +[1,21691:3078558,4812305:0,0,0 +(1,21691:3078558,2439708:0,1703936,0 +g1,21691:29030814,2439708 +g1,21691:36135244,2439708 +(1,21670:36135244,2439708:1720320,1703936,0 +(1,21670:36135244,2439708:16384,1703936,0 +[1,21670:36135244,2439708:25952256,1703936,0 +(1,21670:36135244,1915420:25952256,1179648,0 +(1,21670:36135244,1915420:16384,1179648,0 +r1,21691:36151628,1915420:16384,1179648,0 ) -k1,21457:62087500,51504789:25935872 -g1,21457:62087500,51504789 +k1,21670:62087500,1915420:25935872 +g1,21670:62087500,1915420 ) ] ) -g1,21457:36675916,49800853 -(1,21457:36675916,49800853:1179648,16384,0 -r1,21567:37855564,49800853:1179648,16384,0 +g1,21670:36675916,2439708 +(1,21670:36675916,2439708:1179648,16384,0 +r1,21691:37855564,2439708:1179648,16384,0 ) ) -k1,21567:3078556,49800853:-34777008 +k1,21691:3078556,2439708:-34777008 ) ] -g1,21567:6630773,4812305 -g1,21567:6630773,4812305 -g1,21567:7909380,4812305 -g1,21567:10167095,4812305 -g1,21567:11576774,4812305 -g1,21567:15078362,4812305 -k1,21567:31387652,4812305:16309290 +[1,21691:3078558,4812305:0,0,0 +(1,21691:3078558,49800853:0,16384,2228224 +k1,21691:1358238,49800853:-1720320 +(1,21670:1358238,49800853:1720320,16384,2228224 +(1,21670:1358238,49800853:1179648,16384,0 +r1,21691:2537886,49800853:1179648,16384,0 ) +g1,21670:3062174,49800853 +(1,21670:3062174,52029077:16384,1703936,0 +[1,21670:3062174,52029077:25952256,1703936,0 +(1,21670:3062174,51504789:25952256,1179648,0 +(1,21670:3062174,51504789:16384,1179648,0 +r1,21691:3078558,51504789:16384,1179648,0 +) +k1,21670:29014430,51504789:25935872 +g1,21670:29014430,51504789 ) ] -[1,21567:6630773,45706769:25952256,40108032,0 -(1,21567:6630773,45706769:25952256,40108032,0 -(1,21567:6630773,45706769:0,0,0 -g1,21567:6630773,45706769 ) -[1,21567:6630773,45706769:25952256,40108032,0 -v1,21521:6630773,6254097:0,393216,0 -(1,21521:6630773,12564795:25952256,6703914,196608 -g1,21521:6630773,12564795 -g1,21521:6630773,12564795 -g1,21521:6434165,12564795 -(1,21521:6434165,12564795:0,6703914,196608 -r1,21567:32779637,12564795:26345472,6900522,196608 -k1,21521:6434165,12564795:-26345472 ) -(1,21521:6434165,12564795:26345472,6703914,196608 -[1,21521:6630773,12564795:25952256,6507306,0 -(1,21510:6630773,6461715:25952256,404226,101187 -h1,21510:6630773,6461715:0,0,0 -k1,21510:6630773,6461715:0 -h1,21510:11689104,6461715:0,0,0 -k1,21510:32583028,6461715:20893924 -g1,21510:32583028,6461715 -) -(1,21511:6630773,7127893:25952256,410518,101187 -h1,21511:6630773,7127893:0,0,0 -k1,21511:6630773,7127893:0 -h1,21511:12005250,7127893:0,0,0 -k1,21511:32583030,7127893:20577780 -g1,21511:32583030,7127893 -) -(1,21512:6630773,7794071:25952256,410518,107478 -h1,21512:6630773,7794071:0,0,0 -k1,21512:6630773,7794071:0 -h1,21512:11689104,7794071:0,0,0 -k1,21512:32583028,7794071:20893924 -g1,21512:32583028,7794071 -) -(1,21513:6630773,8460249:25952256,404226,101187 -h1,21513:6630773,8460249:0,0,0 -k1,21513:6630773,8460249:0 -h1,21513:11056813,8460249:0,0,0 -k1,21513:32583029,8460249:21526216 -g1,21513:32583029,8460249 -) -(1,21514:6630773,9126427:25952256,404226,101187 -h1,21514:6630773,9126427:0,0,0 -k1,21514:6630773,9126427:0 -h1,21514:10740667,9126427:0,0,0 -k1,21514:32583029,9126427:21842362 -g1,21514:32583029,9126427 -) -(1,21515:6630773,9792605:25952256,404226,101187 -h1,21515:6630773,9792605:0,0,0 -k1,21515:6630773,9792605:0 -h1,21515:10424521,9792605:0,0,0 -k1,21515:32583029,9792605:22158508 -g1,21515:32583029,9792605 -) -(1,21516:6630773,10458783:25952256,410518,101187 -h1,21516:6630773,10458783:0,0,0 -k1,21516:6630773,10458783:0 -h1,21516:11056813,10458783:0,0,0 -k1,21516:32583029,10458783:21526216 -g1,21516:32583029,10458783 -) -(1,21517:6630773,11124961:25952256,404226,101187 -h1,21517:6630773,11124961:0,0,0 -k1,21517:6630773,11124961:0 -h1,21517:11372958,11124961:0,0,0 -k1,21517:32583030,11124961:21210072 -g1,21517:32583030,11124961 -) -(1,21518:6630773,11791139:25952256,404226,101187 -h1,21518:6630773,11791139:0,0,0 -k1,21518:6630773,11791139:0 -h1,21518:12321395,11791139:0,0,0 -k1,21518:32583029,11791139:20261634 -g1,21518:32583029,11791139 -) -(1,21519:6630773,12457317:25952256,404226,107478 -h1,21519:6630773,12457317:0,0,0 -k1,21519:6630773,12457317:0 -h1,21519:12005250,12457317:0,0,0 -k1,21519:32583030,12457317:20577780 -g1,21519:32583030,12457317 -) -] -) -g1,21521:32583029,12564795 -g1,21521:6630773,12564795 -g1,21521:6630773,12564795 -g1,21521:32583029,12564795 -g1,21521:32583029,12564795 -) -h1,21521:6630773,12761403:0,0,0 -v1,21525:6630773,14651467:0,393216,0 -(1,21554:6630773,28664170:25952256,14405919,0 -g1,21554:6630773,28664170 -g1,21554:6303093,28664170 -r1,21567:6401397,28664170:98304,14405919,0 -g1,21554:6600626,28664170 -g1,21554:6797234,28664170 -[1,21554:6797234,28664170:25785795,14405919,0 -(1,21527:6797234,15046570:25785795,788319,218313 -(1,21525:6797234,15046570:0,788319,218313 -r1,21567:7917113,15046570:1119879,1006632,218313 -k1,21525:6797234,15046570:-1119879 -) -(1,21525:6797234,15046570:1119879,788319,218313 -) -k1,21525:8226453,15046570:309340 -k1,21525:8554133,15046570:327680 -k1,21525:10580516,15046570:309340 -k1,21525:12279219,15046570:309340 -k1,21525:13853404,15046570:309340 -k1,21525:15675970,15046570:309340 -k1,21525:16601349,15046570:309341 -k1,21525:18113930,15046570:309340 -k1,21525:19614715,15046570:309340 -k1,21525:21626025,15046570:309340 -k1,21525:24683290,15046570:309340 -k1,21525:25984190,15046570:309340 -k1,21525:29077499,15046570:309340 -k1,21525:30002877,15046570:309340 -k1,21525:32583029,15046570:0 -) -(1,21527:6797234,15888058:25785795,513147,134348 -k1,21525:11026728,15888058:249494 -k1,21525:11904058,15888058:249495 -k1,21525:14819557,15888058:249494 -k1,21525:15720480,15888058:249495 -k1,21525:16989059,15888058:249494 -k1,21526:17683493,15888058:249445 -k1,21526:19322350,15888058:249494 -k1,21526:22035343,15888058:249495 -k1,21526:23153189,15888058:249494 -k1,21526:25832759,15888058:249495 -k1,21526:27395595,15888058:249494 -k1,21526:29456505,15888058:249495 -k1,21526:30322037,15888058:249494 -k1,21527:32583029,15888058:0 -) -(1,21527:6797234,16729546:25785795,513147,126483 -k1,21526:9719397,16729546:237808 -k1,21526:11842676,16729546:237808 -k1,21526:12948836,16729546:237808 -k1,21526:14699871,16729546:237809 -k1,21526:15553717,16729546:237808 -k1,21526:18783244,16729546:237808 -k1,21526:19830422,16729546:237808 -k1,21526:21398611,16729546:237808 -k1,21526:22287847,16729546:237808 -k1,21526:24707349,16729546:237808 -k1,21526:26508191,16729546:237808 -k1,21526:27942687,16729546:237809 -k1,21526:29493837,16729546:237808 -k1,21526:30835927,16729546:237808 -k1,21526:31821501,16729546:237808 -k1,21527:32583029,16729546:0 -) -(1,21527:6797234,17571034:25785795,513147,126483 -k1,21526:8339761,17571034:235084 -k1,21526:9987145,17571034:235083 -k1,21526:11789850,17571034:235084 -k1,21526:13044019,17571034:235084 -k1,21526:13693909,17571034:235047 -k1,21526:16203092,17571034:235084 -k1,21526:17121061,17571034:235084 -k1,21526:18923765,17571034:235083 -k1,21526:19514709,17571034:235084 -k1,21526:21259742,17571034:235083 -k1,21526:22110864,17571034:235084 -k1,21526:22701808,17571034:235084 -k1,21526:24431112,17571034:235083 -k1,21526:26760727,17571034:235084 -k1,21526:27623646,17571034:235084 -k1,21526:29061970,17571034:235083 -k1,21526:31714677,17571034:235084 -k1,21526:32583029,17571034:0 -) -(1,21527:6797234,18412522:25785795,513147,134348 -k1,21526:9418572,18412522:222720 -k1,21526:10660377,18412522:222720 -k1,21526:12263941,18412522:222720 -k1,21526:13587667,18412522:222721 -k1,21526:15928511,18412522:222720 -k1,21526:17170316,18412522:222720 -k1,21526:19313896,18412522:222720 -(1,21526:19313896,18412522:0,452978,115847 -r1,21567:22485856,18412522:3171960,568825,115847 -k1,21526:19313896,18412522:-3171960 -) -(1,21526:19313896,18412522:3171960,452978,115847 -k1,21526:19313896,18412522:3277 -h1,21526:22482579,18412522:0,411205,112570 -) -k1,21526:22708576,18412522:222720 -k1,21526:24498917,18412522:222720 -k1,21526:25740723,18412522:222721 -k1,21526:28543595,18412522:222720 -k1,21526:29417743,18412522:222720 -k1,21526:29996323,18412522:222720 -k1,21526:32583029,18412522:0 -) -(1,21527:6797234,19254010:25785795,513147,7863 -k1,21527:32583029,19254010:23691264 -g1,21527:32583029,19254010 -) -(1,21529:6797234,20095498:25785795,513147,134348 -h1,21528:6797234,20095498:983040,0,0 -g1,21528:9611349,20095498 -g1,21528:10829663,20095498 -g1,21528:12342234,20095498 -k1,21529:32583030,20095498:18331732 -g1,21529:32583030,20095498 -) -v1,21531:6797234,21285964:0,393216,0 -(1,21539:6797234,22908251:25785795,2015503,196608 -g1,21539:6797234,22908251 -g1,21539:6797234,22908251 -g1,21539:6600626,22908251 -(1,21539:6600626,22908251:0,2015503,196608 -r1,21567:32779637,22908251:26179011,2212111,196608 -k1,21539:6600625,22908251:-26179012 -) -(1,21539:6600626,22908251:26179011,2015503,196608 -[1,21539:6797234,22908251:25785795,1818895,0 -(1,21533:6797234,21499874:25785795,410518,107478 -(1,21532:6797234,21499874:0,0,0 -g1,21532:6797234,21499874 -g1,21532:6797234,21499874 -g1,21532:6469554,21499874 -(1,21532:6469554,21499874:0,0,0 -) -g1,21532:6797234,21499874 -) -g1,21533:9642545,21499874 -g1,21533:10590983,21499874 -g1,21533:17862334,21499874 -g1,21533:20391500,21499874 -g1,21533:21023792,21499874 -h1,21533:25133686,21499874:0,0,0 -k1,21533:32583029,21499874:7449343 -g1,21533:32583029,21499874 -) -(1,21534:6797234,22166052:25785795,410518,107478 -h1,21534:6797234,22166052:0,0,0 -g1,21534:13120148,22166052 -g1,21534:14700877,22166052 -g1,21534:17862334,22166052 -g1,21534:18494626,22166052 -g1,21534:20391501,22166052 -g1,21534:23552958,22166052 -g1,21534:24185250,22166052 -h1,21534:25765979,22166052:0,0,0 -k1,21534:32583029,22166052:6817050 -g1,21534:32583029,22166052 -) -(1,21538:6797234,22832230:25785795,404226,76021 -(1,21536:6797234,22832230:0,0,0 -g1,21536:6797234,22832230 -g1,21536:6797234,22832230 -g1,21536:6469554,22832230 -(1,21536:6469554,22832230:0,0,0 -) -g1,21536:6797234,22832230 -) -g1,21538:7745671,22832230 -g1,21538:9010254,22832230 -h1,21538:10274837,22832230:0,0,0 -k1,21538:32583029,22832230:22308192 -g1,21538:32583029,22832230 -) -] -) -g1,21539:32583029,22908251 -g1,21539:6797234,22908251 -g1,21539:6797234,22908251 -g1,21539:32583029,22908251 -g1,21539:32583029,22908251 -) -h1,21539:6797234,23104859:0,0,0 -(1,21543:6797234,24470635:25785795,513147,102891 -h1,21542:6797234,24470635:983040,0,0 -g1,21542:8933052,24470635 -g1,21542:10418097,24470635 -g1,21542:12333059,24470635 -g1,21542:13913132,24470635 -g1,21542:15131446,24470635 -g1,21542:17251535,24470635 -g1,21542:18963990,24470635 -g1,21542:19814647,24470635 -g1,21542:21404550,24470635 -g1,21542:22993142,24470635 -g1,21542:24604672,24470635 -g1,21542:26371522,24470635 -g1,21542:27589836,24470635 -g1,21542:30490459,24470635 -k1,21543:32583029,24470635:87824 -g1,21543:32583029,24470635 -) -v1,21545:6797234,25661101:0,393216,0 -(1,21552:6797234,27943274:25785795,2675389,196608 -g1,21552:6797234,27943274 -g1,21552:6797234,27943274 -g1,21552:6600626,27943274 -(1,21552:6600626,27943274:0,2675389,196608 -r1,21567:32779637,27943274:26179011,2871997,196608 -k1,21552:6600625,27943274:-26179012 -) -(1,21552:6600626,27943274:26179011,2675389,196608 -[1,21552:6797234,27943274:25785795,2478781,0 -(1,21547:6797234,25868719:25785795,404226,101187 -(1,21546:6797234,25868719:0,0,0 -g1,21546:6797234,25868719 -g1,21546:6797234,25868719 -g1,21546:6469554,25868719 -(1,21546:6469554,25868719:0,0,0 -) -g1,21546:6797234,25868719 -) -g1,21547:9958691,25868719 -g1,21547:10590983,25868719 -h1,21547:13120148,25868719:0,0,0 -k1,21547:32583028,25868719:19462880 -g1,21547:32583028,25868719 -) -(1,21548:6797234,26534897:25785795,410518,101187 -h1,21548:6797234,26534897:0,0,0 -g1,21548:7745671,26534897 -g1,21548:15649314,26534897 -h1,21548:15965460,26534897:0,0,0 -k1,21548:32583029,26534897:16617569 -g1,21548:32583029,26534897 -) -(1,21549:6797234,27201075:25785795,404226,101187 -h1,21549:6797234,27201075:0,0,0 -g1,21549:7113380,27201075 -g1,21549:7429526,27201075 -k1,21549:7429526,27201075:0 -h1,21549:14068585,27201075:0,0,0 -k1,21549:32583029,27201075:18514444 -g1,21549:32583029,27201075 -) -(1,21550:6797234,27867253:25785795,404226,76021 -h1,21550:6797234,27867253:0,0,0 -h1,21550:7113380,27867253:0,0,0 -k1,21550:32583028,27867253:25469648 -g1,21550:32583028,27867253 -) -] -) -g1,21552:32583029,27943274 -g1,21552:6797234,27943274 -g1,21552:6797234,27943274 -g1,21552:32583029,27943274 -g1,21552:32583029,27943274 -) -h1,21552:6797234,28139882:0,0,0 -] -g1,21554:32583029,28664170 -) -h1,21554:6630773,28664170:0,0,0 -(1,21556:6630773,31471738:25952256,32768,229376 -(1,21556:6630773,31471738:0,32768,229376 -(1,21556:6630773,31471738:5505024,32768,229376 -r1,21567:12135797,31471738:5505024,262144,229376 -) -k1,21556:6630773,31471738:-5505024 -) -(1,21556:6630773,31471738:25952256,32768,0 -r1,21567:32583029,31471738:25952256,32768,0 -) -) -(1,21556:6630773,33076066:25952256,606339,151780 -(1,21556:6630773,33076066:2464678,582746,14155 -g1,21556:6630773,33076066 -g1,21556:9095451,33076066 -) -g1,21556:10753250,33076066 -g1,21556:13564745,33076066 -g1,21556:15274448,33076066 -k1,21556:32583029,33076066:13094878 -g1,21556:32583029,33076066 -) -(1,21560:6630773,34310770:25952256,513147,134348 -k1,21559:7727147,34310770:142825 -k1,21559:9358294,34310770:142824 -k1,21559:10895070,34310770:142825 -k1,21559:12056980,34310770:142825 -k1,21559:14580727,34310770:142824 -k1,21559:15382844,34310770:142825 -k1,21559:16839011,34310770:142825 -k1,21559:17667997,34310770:142824 -k1,21559:18268919,34310770:142825 -k1,21559:20521348,34310770:142825 -k1,21559:22053535,34310770:142824 -k1,21559:24575972,34310770:142825 -k1,21559:28438620,34310770:142825 -k1,21559:29240736,34310770:142824 -k1,21559:30402646,34310770:142825 -k1,21559:32583029,34310770:0 -) -(1,21560:6630773,35152258:25952256,513147,134348 -k1,21559:8336565,35152258:192566 -k1,21559:9476783,35152258:192567 -k1,21559:10457747,35152258:192566 -k1,21559:13725263,35152258:192567 -k1,21559:15114516,35152258:192566 -k1,21559:16898953,35152258:192567 -k1,21559:19936437,35152258:192566 -k1,21559:20660501,35152258:192567 -k1,21559:22137573,35152258:192566 -k1,21559:25092483,35152258:192567 -k1,21559:28339027,35152258:192566 -k1,21559:31107814,35152258:192567 -k1,21559:32583029,35152258:0 -) -(1,21560:6630773,35993746:25952256,513147,134348 -k1,21559:9648152,35993746:255036 -k1,21559:11489158,35993746:255035 -k1,21559:14910894,35993746:255036 -k1,21559:16185015,35993746:255036 -k1,21559:18524095,35993746:255035 -k1,21559:20292357,35993746:255036 -k1,21559:21495044,35993746:255036 -k1,21559:22733120,35993746:255036 -k1,21559:25056471,35993746:255035 -k1,21559:26502952,35993746:255036 -k1,21559:27741028,35993746:255036 -k1,21559:29948381,35993746:255035 -k1,21559:30831252,35993746:255036 -k1,21559:32583029,35993746:0 -) -(1,21560:6630773,36835234:25952256,513147,134348 -k1,21559:8776775,36835234:274949 -k1,21559:10197948,36835234:274948 -k1,21559:12170935,36835234:274949 -k1,21559:15807881,36835234:274949 -k1,21559:17472192,36835234:274948 -k1,21559:19060483,36835234:274949 -k1,21559:19951470,36835234:274949 -k1,21559:20582279,36835234:274949 -k1,21559:22833137,36835234:274948 -k1,21559:26565110,36835234:274949 -k1,21559:27708411,36835234:274949 -k1,21559:29513625,36835234:274948 -k1,21559:30440002,36835234:274949 -k1,21559:32583029,36835234:0 -) -(1,21560:6630773,37676722:25952256,513147,134348 -k1,21559:8121858,37676722:206579 -k1,21559:9311477,37676722:206579 -k1,21559:11586372,37676722:206579 -k1,21559:12784510,37676722:206578 -k1,21559:14531185,37676722:206579 -k1,21559:15353802,37676722:206579 -k1,21559:18231628,37676722:206579 -k1,21559:21492185,37676722:206579 -k1,21559:24274984,37676722:206579 -k1,21559:26264142,37676722:206579 -k1,21559:26948477,37676722:206578 -k1,21559:28174141,37676722:206579 -k1,21559:30211796,37676722:206579 -k1,21559:31931601,37676722:206579 -k1,21559:32583029,37676722:0 -) -(1,21560:6630773,38518210:25952256,513147,134348 -k1,21559:8789572,38518210:229419 -k1,21559:10038075,38518210:229418 -k1,21559:11580836,38518210:229419 -k1,21559:12341752,38518210:229419 -k1,21559:14176803,38518210:229419 -k1,21559:17245241,38518210:229418 -k1,21559:18126088,38518210:229419 -k1,21559:19103273,38518210:229419 -k1,21559:20197081,38518210:229388 -k1,21559:23261587,38518210:229419 -k1,21559:24359357,38518210:229418 -k1,21559:25874592,38518210:229419 -k1,21559:27634277,38518210:229419 -k1,21559:28515124,38518210:229419 -k1,21559:29492308,38518210:229418 -k1,21559:31931601,38518210:229419 -k1,21559:32583029,38518210:0 -) -(1,21560:6630773,39359698:25952256,513147,134348 -k1,21559:8614903,39359698:168127 -k1,21559:9802115,39359698:168127 -k1,21559:10834632,39359698:168097 -k1,21559:11950410,39359698:168127 -k1,21559:13101577,39359698:168127 -k1,21559:15338020,39359698:168127 -k1,21559:16697592,39359698:168127 -k1,21559:18644366,39359698:168127 -k1,21559:21272715,39359698:168127 -k1,21559:23799484,39359698:168128 -k1,21559:28037397,39359698:168127 -k1,21559:29014894,39359698:168127 -k1,21559:30202106,39359698:168127 -k1,21559:32583029,39359698:0 -) -(1,21560:6630773,40201186:25952256,505283,134348 -k1,21559:8448208,40201186:231464 -k1,21559:9362557,40201186:231464 -k1,21559:12377990,40201186:231464 -k1,21559:13473842,40201186:231432 -k1,21559:17368769,40201186:231464 -k1,21559:18981077,40201186:231464 -k1,21559:19744038,40201186:231464 -k1,21559:23083219,40201186:231464 -k1,21559:26523981,40201186:231464 -k1,21559:28453483,40201186:231464 -k1,21559:32168186,40201186:231464 -k1,21560:32583029,40201186:0 -) -(1,21560:6630773,41042674:25952256,505283,134348 -k1,21560:32583029,41042674:22868132 -g1,21560:32583029,41042674 -) -v1,21562:6630773,42408450:0,393216,0 -(1,21564:6630773,45469345:25952256,3454111,0 -g1,21564:6630773,45469345 -g1,21564:6303093,45469345 -r1,21567:6401397,45469345:98304,3454111,0 -g1,21564:6600626,45469345 -g1,21564:6797234,45469345 -[1,21564:6797234,45469345:25785795,3454111,0 -(1,21564:6797234,42829034:25785795,813800,267386 -(1,21562:6797234,42829034:0,813800,267386 -r1,21567:8134168,42829034:1336934,1081186,267386 -k1,21562:6797234,42829034:-1336934 -) -(1,21562:6797234,42829034:1336934,813800,267386 -) -k1,21562:8300171,42829034:166003 -k1,21562:8627851,42829034:327680 -k1,21562:8627851,42829034:0 -k1,21563:9835875,42829034:166002 -k1,21563:13198724,42829034:166003 -k1,21563:16880734,42829034:166003 -k1,21563:18029777,42829034:166003 -k1,21563:20264095,42829034:166002 -k1,21563:22610481,42829034:166003 -k1,21563:24531538,42829034:166003 -k1,21563:27069288,42829034:166002 -k1,21563:30977397,42829034:166003 -k1,21564:32583029,42829034:0 -) -(1,21564:6797234,43670522:25785795,505283,126483 -k1,21563:9073409,43670522:363834 -k1,21563:10628688,43670522:363834 -k1,21563:13364270,43670522:363834 -k1,21563:14340866,43670522:363834 -k1,21563:16306400,43670522:363834 -k1,21563:17826944,43670522:363834 -k1,21563:19436616,43670522:363833 -k1,21563:20842472,43670522:363834 -k1,21563:22225391,43670522:363834 -k1,21563:24666716,43670522:363834 -k1,21563:27660510,43670522:363834 -k1,21563:31540351,43670522:363834 -k1,21564:32583029,43670522:0 -) -(1,21564:6797234,44512010:25785795,513147,134348 -k1,21563:10190211,44512010:312130 -k1,21563:12682725,44512010:312131 -k1,21563:13742621,44512010:312130 -k1,21563:16552328,44512010:312130 -k1,21563:18599851,44512010:312130 -k1,21563:21111370,44512010:312131 -k1,21563:23924354,44512010:312130 -k1,21563:25054373,44512010:312130 -k1,21563:26137206,44512010:312130 -k1,21563:29284424,44512010:312131 -k1,21563:31923737,44512010:312130 -k1,21564:32583029,44512010:0 -) -(1,21564:6797234,45353498:25785795,452978,115847 -(1,21563:6797234,45353498:0,452978,115847 -r1,21567:12431178,45353498:5633944,568825,115847 -k1,21563:6797234,45353498:-5633944 -) -(1,21563:6797234,45353498:5633944,452978,115847 -g1,21563:7855647,45353498 -h1,21563:12427901,45353498:0,411205,112570 -) -g1,21563:12804077,45353498 -g1,21563:14095791,45353498 -(1,21563:14095791,45353498:0,452978,115847 -r1,21567:19729734,45353498:5633943,568825,115847 -k1,21563:14095791,45353498:-5633943 -) -(1,21563:14095791,45353498:5633943,452978,115847 -k1,21563:14095791,45353498:3277 -h1,21563:19726457,45353498:0,411205,112570 -) -k1,21564:32583029,45353498:12679625 -g1,21564:32583029,45353498 -) -] -g1,21564:32583029,45469345 -) -h1,21564:6630773,45469345:0,0,0 -] -(1,21567:32583029,45706769:0,0,0 -g1,21567:32583029,45706769 -) -) -] -(1,21567:6630773,47279633:25952256,0,0 -h1,21567:6630773,47279633:25952256,0,0 -) -] -(1,21567:4262630,4025873:0,0,0 -[1,21567:-473656,4025873:0,0,0 -(1,21567:-473656,-710413:0,0,0 -(1,21567:-473656,-710413:0,0,0 -g1,21567:-473656,-710413 -) -g1,21567:-473656,-710413 -) -] -) -] -!21604 -}392 -Input:3522:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3523:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3524:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3525:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3526:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3527:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3528:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!670 -{393 -[1,21651:4262630,47279633:28320399,43253760,0 -(1,21651:4262630,4025873:0,0,0 -[1,21651:-473656,4025873:0,0,0 -(1,21651:-473656,-710413:0,0,0 -(1,21651:-473656,-644877:0,0,0 -k1,21651:-473656,-644877:-65536 ) -(1,21651:-473656,4736287:0,0,0 -k1,21651:-473656,4736287:5209943 +] +[1,21691:3078558,4812305:0,0,0 +(1,21691:3078558,49800853:0,16384,2228224 +g1,21691:29030814,49800853 +g1,21691:36135244,49800853 +(1,21670:36135244,49800853:1720320,16384,2228224 +(1,21670:36135244,52029077:16384,1703936,0 +[1,21670:36135244,52029077:25952256,1703936,0 +(1,21670:36135244,51504789:25952256,1179648,0 +(1,21670:36135244,51504789:16384,1179648,0 +r1,21691:36151628,51504789:16384,1179648,0 ) -g1,21651:-473656,-710413 +k1,21670:62087500,51504789:25935872 +g1,21670:62087500,51504789 ) ] ) -[1,21651:6630773,47279633:25952256,43253760,0 -[1,21651:6630773,4812305:25952256,786432,0 -(1,21651:6630773,4812305:25952256,505283,134348 -(1,21651:6630773,4812305:25952256,505283,134348 -g1,21651:3078558,4812305 -[1,21651:3078558,4812305:0,0,0 -(1,21651:3078558,2439708:0,1703936,0 -k1,21651:1358238,2439708:-1720320 -(1,21457:1358238,2439708:1720320,1703936,0 -(1,21457:1358238,2439708:1179648,16384,0 -r1,21651:2537886,2439708:1179648,16384,0 +g1,21670:36675916,49800853 +(1,21670:36675916,49800853:1179648,16384,0 +r1,21691:37855564,49800853:1179648,16384,0 ) -g1,21457:3062174,2439708 -(1,21457:3062174,2439708:16384,1703936,0 -[1,21457:3062174,2439708:25952256,1703936,0 -(1,21457:3062174,1915420:25952256,1179648,0 -(1,21457:3062174,1915420:16384,1179648,0 -r1,21651:3078558,1915420:16384,1179648,0 ) -k1,21457:29014430,1915420:25935872 -g1,21457:29014430,1915420 +k1,21691:3078556,49800853:-34777008 ) ] -) +g1,21691:6630773,4812305 ) ) ] -[1,21651:3078558,4812305:0,0,0 -(1,21651:3078558,2439708:0,1703936,0 -g1,21651:29030814,2439708 -g1,21651:36135244,2439708 -(1,21457:36135244,2439708:1720320,1703936,0 -(1,21457:36135244,2439708:16384,1703936,0 -[1,21457:36135244,2439708:25952256,1703936,0 -(1,21457:36135244,1915420:25952256,1179648,0 -(1,21457:36135244,1915420:16384,1179648,0 -r1,21651:36151628,1915420:16384,1179648,0 +[1,21691:6630773,45706769:25952256,40108032,0 +(1,21691:6630773,45706769:25952256,40108032,0 +(1,21691:6630773,45706769:0,0,0 +g1,21691:6630773,45706769 ) -k1,21457:62087500,1915420:25935872 -g1,21457:62087500,1915420 +[1,21691:6630773,45706769:25952256,40108032,0 +[1,21670:6630773,11797421:25952256,6198684,0 +(1,21670:6630773,6633157:25952256,1165492,28311 +h1,21670:6630773,6633157:0,0,0 +k1,21670:20586796,6633157:11996234 +k1,21670:32583030,6633157:11996234 ) -] +(1,21670:6630773,7380277:25952256,32768,229376 +(1,21670:6630773,7380277:0,32768,229376 +(1,21670:6630773,7380277:5505024,32768,229376 +r1,21691:12135797,7380277:5505024,262144,229376 ) -g1,21457:36675916,2439708 -(1,21457:36675916,2439708:1179648,16384,0 -r1,21651:37855564,2439708:1179648,16384,0 +k1,21670:6630773,7380277:-5505024 ) +(1,21670:6630773,7380277:25952256,32768,0 +r1,21691:32583029,7380277:25952256,32768,0 ) -k1,21651:3078556,2439708:-34777008 ) -] -[1,21651:3078558,4812305:0,0,0 -(1,21651:3078558,49800853:0,16384,2228224 -k1,21651:1358238,49800853:-1720320 -(1,21457:1358238,49800853:1720320,16384,2228224 -(1,21457:1358238,49800853:1179648,16384,0 -r1,21651:2537886,49800853:1179648,16384,0 +(1,21670:6630773,9215293:25952256,909509,241827 +h1,21670:6630773,9215293:0,0,0 +g1,21670:9551582,9215293 +g1,21670:10719434,9215293 +g1,21670:13256857,9215293 +g1,21670:19759077,9215293 +g1,21670:22879246,9215293 +k1,21670:29960673,9215293:2622357 +k1,21670:32583029,9215293:2622356 ) -g1,21457:3062174,49800853 -(1,21457:3062174,52029077:16384,1703936,0 -[1,21457:3062174,52029077:25952256,1703936,0 -(1,21457:3062174,51504789:25952256,1179648,0 -(1,21457:3062174,51504789:16384,1179648,0 -r1,21651:3078558,51504789:16384,1179648,0 +(1,21670:6630773,9962413:25952256,32768,0 +(1,21670:6630773,9962413:5505024,32768,0 +r1,21691:12135797,9962413:5505024,32768,0 ) -k1,21457:29014430,51504789:25935872 -g1,21457:29014430,51504789 +k1,21670:22359413,9962413:10223616 +k1,21670:32583029,9962413:10223616 +) +] +(1,21672:6630773,14713778:25952256,131072,0 +r1,21691:32583029,14713778:25952256,131072,0 +g1,21672:32583029,14713778 +g1,21672:32583029,14713778 +) +(1,21674:6630773,16057271:25952256,505283,134348 +k1,21674:8596853,16057271:1966080 +k1,21673:10349431,16057271:207239 +k1,21673:14884668,16057271:207239 +k1,21673:16567123,16057271:207240 +k1,21673:18214188,16057271:207239 +k1,21673:20234153,16057271:207239 +k1,21673:21632837,16057271:207239 +k1,21673:23441777,16057271:207240 +k1,21673:25233021,16057271:207239 +k1,21673:29768258,16057271:207239 +k1,21674:32583029,16057271:1966080 +) +(1,21674:6630773,16922351:25952256,505283,134348 +k1,21674:8596853,16922351:1966080 +k1,21673:10248360,16922351:152043 +k1,21673:12658774,16922351:152043 +k1,21673:15097369,16922351:152044 +k1,21673:15862174,16922351:152043 +k1,21673:17509749,16922351:152043 +k1,21673:18992173,16922351:152043 +k1,21673:20702007,16922351:152043 +k1,21673:21845610,16922351:152043 +k1,21673:23722562,16922351:152044 +k1,21673:26037293,16922351:152043 +k1,21673:27544621,16922351:152043 +k1,21673:32583029,16922351:1966080 +) +(1,21674:6630773,17787431:25952256,513147,134348 +g1,21674:8596853,17787431 +g1,21673:10080588,17787431 +g1,21673:12460200,17787431 +g1,21673:14134644,17787431 +g1,21673:15843823,17787431 +g1,21673:17901653,17787431 +g1,21673:19931303,17787431 +g1,21673:22991834,17787431 +k1,21674:30616949,17787431:4379117 +g1,21674:32583029,17787431 +) +(1,21675:6630773,19438943:25952256,505283,126483 +k1,21675:26585175,19438943:19954402 +h1,21675:26585175,19438943:0,0,0 +g1,21675:28285178,19438943 +g1,21675:30616949,19438943 +g1,21675:32583029,19438943 +) +(1,21676:6630773,20304023:25952256,505283,134348 +k1,21676:22157562,20304023:15526789 +h1,21675:22157562,20304023:0,0,0 +g1,21675:26747048,20304023 +g1,21675:29023113,20304023 +g1,21676:30616949,20304023 +g1,21676:32583029,20304023 +) +(1,21676:6630773,21562319:25952256,131072,0 +r1,21691:32583029,21562319:25952256,131072,0 +g1,21676:32583029,21562319 +g1,21676:34549109,21562319 +) +(1,21680:6630773,24393479:25952256,32768,229376 +(1,21680:6630773,24393479:0,32768,229376 +(1,21680:6630773,24393479:5505024,32768,229376 +r1,21691:12135797,24393479:5505024,262144,229376 +) +k1,21680:6630773,24393479:-5505024 +) +(1,21680:6630773,24393479:25952256,32768,0 +r1,21691:32583029,24393479:25952256,32768,0 +) +) +(1,21680:6630773,26025331:25952256,615776,151780 +(1,21680:6630773,26025331:2464678,582746,14155 +g1,21680:6630773,26025331 +g1,21680:9095451,26025331 +) +g1,21680:11394192,26025331 +g1,21680:12451943,26025331 +g1,21680:14185239,26025331 +k1,21680:32583029,26025331:15396765 +g1,21680:32583029,26025331 +) +(1,21683:6630773,27283627:25952256,513147,134348 +k1,21682:8248858,27283627:185468 +k1,21682:8849155,27283627:185454 +k1,21682:10226068,27283627:185468 +k1,21682:11430621,27283627:185468 +k1,21682:16170841,27283627:185468 +k1,21682:19266763,27283627:185468 +k1,21682:22396764,27283627:185468 +k1,21682:23343760,27283627:185468 +k1,21682:26001901,27283627:185468 +k1,21682:28525038,27283627:185468 +k1,21682:30942007,27283627:185468 +k1,21683:32583029,27283627:0 +) +(1,21683:6630773,28148707:25952256,513147,134348 +k1,21682:8519521,28148707:290980 +k1,21682:9758151,28148707:290979 +k1,21682:13221074,28148707:290980 +k1,21682:14703498,28148707:290979 +k1,21682:18057631,28148707:290980 +k1,21682:19911644,28148707:290979 +k1,21682:24054175,28148707:290980 +k1,21682:27255608,28148707:290979 +k1,21682:29976663,28148707:290980 +k1,21682:31734338,28148707:290979 +k1,21683:32583029,28148707:0 +) +(1,21683:6630773,29013787:25952256,513147,126483 +k1,21682:10552924,29013787:290146 +k1,21682:11790720,29013787:290145 +k1,21682:13773006,29013787:290146 +k1,21682:14722443,29013787:290145 +k1,21682:16709316,29013787:290146 +k1,21682:20025258,29013787:290145 +k1,21682:21506849,29013787:290146 +k1,21682:24323407,29013787:290145 +k1,21682:25561204,29013787:290146 +k1,21682:28082850,29013787:290145 +k1,21682:31599989,29013787:290146 +k1,21682:32583029,29013787:0 +) +(1,21683:6630773,29878867:25952256,513147,134348 +k1,21682:9576218,29878867:261090 +k1,21682:10465143,29878867:261090 +k1,21682:11745317,29878867:261089 +k1,21682:14412234,29878867:261090 +k1,21682:17264618,29878867:261090 +k1,21682:17738638,29878867:261028 +k1,21682:19176754,29878867:261089 +k1,21682:20050606,29878867:261090 +k1,21682:23623886,29878867:261090 +k1,21682:25351672,29878867:261090 +k1,21682:27002124,29878867:261089 +k1,21682:28971738,29878867:261090 +k1,21682:30424273,29878867:261090 +k1,21682:32583029,29878867:0 +) +(1,21683:6630773,30743947:25952256,513147,134348 +k1,21682:9535983,30743947:193986 +k1,21682:10346008,30743947:193987 +k1,21682:12327161,30743947:193986 +k1,21682:13896749,30743947:193987 +k1,21682:15109820,30743947:193986 +k1,21682:16905507,30743947:193987 +k1,21682:19876909,30743947:193986 +k1,21682:22956446,30743947:193987 +k1,21682:24539795,30743947:193986 +k1,21682:27244466,30743947:193987 +k1,21682:29389459,30743947:193986 +k1,21682:30649717,30743947:193987 +k1,21682:32583029,30743947:0 +) +(1,21683:6630773,31609027:25952256,505283,95026 +g1,21682:7481430,31609027 +k1,21683:32583029,31609027:24305992 +g1,21683:32583029,31609027 +) +(1,21685:6630773,32474107:25952256,513147,134348 +h1,21684:6630773,32474107:983040,0,0 +k1,21684:9338491,32474107:252739 +k1,21684:10574269,32474107:252738 +k1,21684:13337692,32474107:252739 +k1,21684:14874936,32474107:252738 +k1,21684:16119235,32474107:252739 +k1,21684:18657213,32474107:252738 +k1,21684:19561380,32474107:252739 +k1,21684:20228908,32474107:252685 +k1,21684:21473206,32474107:252738 +k1,21684:22792216,32474107:252739 +k1,21684:25174219,32474107:252738 +k1,21684:26705565,32474107:252739 +k1,21684:29513552,32474107:252738 +k1,21684:32124932,32474107:252739 +k1,21684:32583029,32474107:0 +) +(1,21685:6630773,33339187:25952256,513147,134348 +k1,21684:9914126,33339187:174325 +k1,21684:10739880,33339187:174326 +k1,21684:16168882,33339187:174325 +k1,21684:17362293,33339187:174326 +k1,21684:20977913,33339187:174325 +k1,21684:23450587,33339187:174326 +k1,21684:24276340,33339187:174325 +k1,21684:25862967,33339187:174326 +k1,21684:27850018,33339187:174325 +k1,21684:29898674,33339187:174326 +k1,21684:32583029,33339187:0 +) +(1,21685:6630773,34204267:25952256,513147,134348 +k1,21684:8309100,34204267:211631 +k1,21684:10218769,34204267:211631 +k1,21684:12526896,34204267:211630 +k1,21684:15293776,34204267:211631 +k1,21684:16842341,34204267:211631 +k1,21684:17801738,34204267:211631 +k1,21684:20650537,34204267:211630 +k1,21684:21623696,34204267:211631 +k1,21684:22854412,34204267:211631 +k1,21684:26525033,34204267:211631 +k1,21684:27395955,34204267:211630 +k1,21684:28626671,34204267:211631 +k1,21684:31123542,34204267:211631 +k1,21685:32583029,34204267:0 +) +(1,21685:6630773,35069347:25952256,513147,134348 +k1,21684:8289817,35069347:146473 +k1,21684:9720795,35069347:146472 +k1,21684:11812377,35069347:146473 +k1,21684:12977934,35069347:146472 +k1,21684:14611419,35069347:146473 +k1,21684:19278565,35069347:146472 +k1,21684:22908277,35069347:146473 +k1,21684:25813816,35069347:146473 +k1,21684:26611716,35069347:146472 +k1,21684:28170490,35069347:146473 +k1,21684:29508407,35069347:146472 +k1,21684:31269687,35069347:146473 +k1,21684:32583029,35069347:0 +) +(1,21685:6630773,35934427:25952256,513147,134348 +k1,21684:8578831,35934427:212665 +k1,21684:11076736,35934427:212665 +k1,21684:13800086,35934427:212666 +k1,21684:15117033,35934427:212665 +k1,21684:17130627,35934427:212665 +k1,21684:19186164,35934427:212665 +k1,21684:20014868,35934427:212666 +k1,21684:21789911,35934427:212665 +k1,21684:24165264,35934427:212665 +k1,21684:25569374,35934427:212665 +k1,21684:27137325,35934427:212666 +k1,21684:27764820,35934427:212652 +k1,21684:30312533,35934427:212665 +k1,21684:31478747,35934427:212665 +k1,21684:32583029,35934427:0 +) +(1,21685:6630773,36799507:25952256,513147,134348 +k1,21684:8137683,36799507:221094 +k1,21684:11877406,36799507:221095 +k1,21684:13713307,36799507:221094 +k1,21684:15430589,36799507:221095 +k1,21684:16936189,36799507:221094 +k1,21684:19444491,36799507:221095 +k1,21684:21592343,36799507:221094 +k1,21684:22885607,36799507:221095 +k1,21684:26992331,36799507:221094 +k1,21684:28570677,36799507:221095 +k1,21684:30185722,36799507:221094 +k1,21684:32583029,36799507:0 +) +(1,21685:6630773,37664587:25952256,513147,126483 +k1,21684:8347816,37664587:230031 +k1,21684:9260733,37664587:230032 +k1,21684:10957460,37664587:230031 +k1,21684:13242700,37664587:230031 +k1,21684:17358361,37664587:230031 +k1,21684:19910334,37664587:230032 +k1,21684:22867973,37664587:230031 +k1,21684:24117089,37664587:230031 +k1,21684:27296895,37664587:230031 +k1,21684:29089961,37664587:230032 +k1,21684:30516679,37664587:230031 +k1,21684:31923737,37664587:230031 +k1,21684:32583029,37664587:0 +) +(1,21685:6630773,38529667:25952256,513147,134348 +k1,21684:8017951,38529667:183937 +k1,21684:10619512,38529667:183938 +k1,21684:11334946,38529667:183937 +k1,21684:12170312,38529667:183938 +k1,21684:14784324,38529667:183937 +k1,21684:17830875,38529667:183938 +k1,21684:18962463,38529667:183937 +k1,21684:21402806,38529667:183938 +k1,21684:24612540,38529667:183937 +k1,21684:25744129,38529667:183938 +k1,21684:28330616,38529667:183937 +k1,21684:29903917,38529667:183938 +k1,21684:32583029,38529667:0 +) +(1,21685:6630773,39394747:25952256,513147,134348 +k1,21684:8591133,39394747:224967 +k1,21684:11101340,39394747:224967 +k1,21684:14010663,39394747:224968 +k1,21684:16946854,39394747:224967 +k1,21684:18638517,39394747:224967 +k1,21684:20297412,39394747:224967 +k1,21684:21110892,39394747:224967 +k1,21684:24316436,39394747:224967 +k1,21684:25560489,39394747:224968 +k1,21684:28412794,39394747:224967 +k1,21684:31391584,39394747:224967 +k1,21684:32583029,39394747:0 +) +(1,21685:6630773,40259827:25952256,513147,134348 +g1,21684:11403104,40259827 +g1,21684:15331987,40259827 +g1,21684:18615340,40259827 +g1,21684:20333038,40259827 +g1,21684:23558064,40259827 +g1,21684:24748853,40259827 +g1,21684:26226689,40259827 +g1,21684:28385444,40259827 +g1,21684:29267558,40259827 +k1,21685:32583029,40259827:220861 +g1,21685:32583029,40259827 +) +(1,21687:6630773,41124907:25952256,513147,134348 +h1,21686:6630773,41124907:983040,0,0 +k1,21686:8410567,41124907:168919 +k1,21686:9782727,41124907:168919 +k1,21686:12369269,41124907:168919 +k1,21686:13708661,41124907:168919 +k1,21686:15010042,41124907:168919 +k1,21686:18609770,41124907:168918 +k1,21686:21385056,41124907:168919 +k1,21686:22947926,41124907:168919 +k1,21686:24447226,41124907:168919 +k1,21686:25267573,41124907:168919 +k1,21686:28389544,41124907:168919 +k1,21686:29947826,41124907:168919 +k1,21687:32583029,41124907:0 +) +(1,21687:6630773,41989987:25952256,513147,126483 +k1,21686:7336746,41989987:291130 +k1,21686:8819414,41989987:291223 +k1,21686:10812606,41989987:291222 +k1,21686:15168372,41989987:291223 +k1,21686:16656282,41989987:291223 +k1,21686:19973301,41989987:291222 +(1,21686:19973301,41989987:0,452978,115847 +r1,21691:22090126,41989987:2116825,568825,115847 +k1,21686:19973301,41989987:-2116825 +) +(1,21686:19973301,41989987:2116825,452978,115847 +k1,21686:19973301,41989987:3277 +h1,21686:22086849,41989987:0,411205,112570 +) +k1,21686:22381349,41989987:291223 +k1,21686:23864016,41989987:291222 +(1,21686:23864016,41989987:0,452978,115847 +r1,21691:25980841,41989987:2116825,568825,115847 +k1,21686:23864016,41989987:-2116825 +) +(1,21686:23864016,41989987:2116825,452978,115847 +k1,21686:23864016,41989987:3277 +h1,21686:25977564,41989987:0,411205,112570 +) +k1,21686:26445734,41989987:291223 +k1,21686:27928401,41989987:291222 +(1,21686:27928401,41989987:0,452978,115847 +r1,21691:31100361,41989987:3171960,568825,115847 +k1,21686:27928401,41989987:-3171960 +) +(1,21686:27928401,41989987:3171960,452978,115847 +k1,21686:27928401,41989987:3277 +h1,21686:31097084,41989987:0,411205,112570 +) +k1,21686:31391584,41989987:291223 +k1,21687:32583029,41989987:0 +) +(1,21687:6630773,42855067:25952256,513147,115847 +(1,21686:6630773,42855067:0,452978,115847 +r1,21691:9802733,42855067:3171960,568825,115847 +k1,21686:6630773,42855067:-3171960 +) +(1,21686:6630773,42855067:3171960,452978,115847 +k1,21686:6630773,42855067:3277 +h1,21686:9799456,42855067:0,411205,112570 +) +k1,21686:10195105,42855067:218702 +k1,21686:11179922,42855067:218701 +k1,21686:12057916,42855067:218702 +k1,21686:14162089,42855067:218702 +k1,21686:15771464,42855067:218701 +k1,21686:17181611,42855067:218702 +k1,21686:18812614,42855067:218702 +k1,21686:20420678,42855067:218701 +k1,21686:21255418,42855067:218702 +k1,21686:22392934,42855067:218701 +k1,21686:24544948,42855067:218702 +k1,21686:27448005,42855067:218702 +k1,21686:28658266,42855067:218701 +k1,21686:31966991,42855067:218702 +k1,21686:32583029,42855067:0 +) +(1,21687:6630773,43720147:25952256,505283,134348 +g1,21686:9438990,43720147 +h1,21686:10981708,43720147:0,0,0 +g1,21686:11180937,43720147 +g1,21686:12571611,43720147 +h1,21686:14114329,43720147:0,0,0 +g1,21686:14313558,43720147 +g1,21686:16991359,43720147 +g1,21686:17999958,43720147 +g1,21686:19697340,43720147 +h1,21686:20892717,43720147:0,0,0 +k1,21687:32583029,43720147:11516642 +g1,21687:32583029,43720147 +) +] +(1,21691:32583029,45706769:0,0,0 +g1,21691:32583029,45706769 +) +) +] +(1,21691:6630773,47279633:25952256,485622,11795 +(1,21691:6630773,47279633:25952256,485622,11795 +(1,21691:6630773,47279633:0,0,0 +v1,21691:6630773,47279633:0,0,0 +) +g1,21691:6830002,47279633 +k1,21691:31387652,47279633:24557650 +) +) +] +(1,21691:4262630,4025873:0,0,0 +[1,21691:-473656,4025873:0,0,0 +(1,21691:-473656,-710413:0,0,0 +(1,21691:-473656,-710413:0,0,0 +g1,21691:-473656,-710413 +) +g1,21691:-473656,-710413 ) ] ) -) -) ] -[1,21651:3078558,4812305:0,0,0 -(1,21651:3078558,49800853:0,16384,2228224 -g1,21651:29030814,49800853 -g1,21651:36135244,49800853 -(1,21457:36135244,49800853:1720320,16384,2228224 -(1,21457:36135244,52029077:16384,1703936,0 -[1,21457:36135244,52029077:25952256,1703936,0 -(1,21457:36135244,51504789:25952256,1179648,0 -(1,21457:36135244,51504789:16384,1179648,0 -r1,21651:36151628,51504789:16384,1179648,0 -) -k1,21457:62087500,51504789:25935872 -g1,21457:62087500,51504789 -) -] -) -g1,21457:36675916,49800853 -(1,21457:36675916,49800853:1179648,16384,0 -r1,21651:37855564,49800853:1179648,16384,0 -) -) -k1,21651:3078556,49800853:-34777008 -) -] -g1,21651:6630773,4812305 -k1,21651:21078841,4812305:13252691 -g1,21651:22701512,4812305 -g1,21651:23350318,4812305 -g1,21651:24759997,4812305 -g1,21651:28372341,4812305 -g1,21651:30105768,4812305 -) -) -] -[1,21651:6630773,45706769:25952256,40108032,0 -(1,21651:6630773,45706769:25952256,40108032,0 -(1,21651:6630773,45706769:0,0,0 -g1,21651:6630773,45706769 -) -[1,21651:6630773,45706769:25952256,40108032,0 -(1,21567:6630773,6254097:25952256,513147,134348 -h1,21566:6630773,6254097:983040,0,0 -k1,21566:8174694,6254097:146038 -k1,21566:11081160,6254097:146090 -k1,21566:14253047,6254097:146090 -k1,21566:16284609,6254097:146091 -k1,21566:17818752,6254097:146090 -k1,21566:19358793,6254097:146090 -k1,21566:23020891,6254097:146091 -k1,21566:23928509,6254097:146090 -k1,21566:26101628,6254097:146090 -k1,21566:27266804,6254097:146091 -k1,21566:31923737,6254097:146090 -k1,21566:32583029,6254097:0 -) -(1,21567:6630773,7095585:25952256,513147,126483 -k1,21566:7840871,7095585:191013 -k1,21566:10794227,7095585:191013 -k1,21566:12179961,7095585:191013 -k1,21566:13938594,7095585:191012 -k1,21566:14544442,7095585:191005 -k1,21566:16405312,7095585:191013 -k1,21566:17224160,7095585:191013 -k1,21566:19576550,7095585:191013 -k1,21566:21464290,7095585:191013 -k1,21566:24681099,7095585:191012 -k1,21566:27052495,7095585:191013 -k1,21566:27991274,7095585:191013 -k1,21566:31195632,7095585:191013 -k1,21566:32583029,7095585:0 -) -(1,21567:6630773,7937073:25952256,505283,134348 -k1,21566:8748543,7937073:269655 -k1,21566:10117891,7937073:269654 -k1,21566:11038974,7937073:269655 -k1,21566:12172977,7937073:269583 -k1,21566:15932424,7937073:269655 -k1,21566:17478719,7937073:269654 -k1,21566:19483767,7937073:269655 -(1,21566:19483767,7937073:0,452978,115847 -r1,21651:21952304,7937073:2468537,568825,115847 -k1,21566:19483767,7937073:-2468537 -) -(1,21566:19483767,7937073:2468537,452978,115847 -k1,21566:19483767,7937073:3277 -h1,21566:21949027,7937073:0,411205,112570 -) -k1,21566:22221958,7937073:269654 -k1,21566:23174498,7937073:269655 -(1,21566:23174498,7937073:0,452978,115847 -r1,21651:25994747,7937073:2820249,568825,115847 -k1,21566:23174498,7937073:-2820249 -) -(1,21566:23174498,7937073:2820249,452978,115847 -k1,21566:23174498,7937073:3277 -h1,21566:25991470,7937073:0,411205,112570 -) -k1,21566:26471496,7937073:269655 -k1,21566:29779399,7937073:269654 -k1,21566:32583029,7937073:0 -) -(1,21567:6630773,8778561:25952256,513147,134348 -k1,21566:7700979,8778561:252317 -k1,21566:8972381,8778561:252317 -k1,21566:12335692,8778561:252317 -k1,21566:14886357,8778561:252317 -k1,21566:15790101,8778561:252316 -k1,21566:18246394,8778561:252317 -k1,21566:18854571,8778561:252317 -k1,21566:20089928,8778561:252317 -k1,21566:22080260,8778561:252317 -k1,21566:23900198,8778561:252317 -k1,21566:24508375,8778561:252317 -k1,21566:25743732,8778561:252317 -k1,21566:27444395,8778561:252317 -k1,21566:28228209,8778561:252317 -k1,21566:29344892,8778561:252263 -k1,21566:32168186,8778561:252317 -k1,21567:32583029,8778561:0 -) -(1,21567:6630773,9620049:25952256,513147,126483 -k1,21566:9627037,9620049:235888 -k1,21566:12888721,9620049:235887 -k1,21566:14618175,9620049:235888 -k1,21566:15540224,9620049:235887 -(1,21566:15540224,9620049:0,452978,115847 -r1,21651:19063896,9620049:3523672,568825,115847 -k1,21566:15540224,9620049:-3523672 -) -(1,21566:15540224,9620049:3523672,452978,115847 -k1,21566:15540224,9620049:3277 -h1,21566:19060619,9620049:0,411205,112570 -) -k1,21566:19473454,9620049:235888 -k1,21566:21717364,9620049:235887 -k1,21566:27010010,9620049:235888 -k1,21566:27777395,9620049:235888 -k1,21566:28877665,9620049:235850 -k1,21566:31510860,9620049:235888 -k1,21566:32583029,9620049:0 -) -(1,21567:6630773,10461537:25952256,513147,126483 -k1,21566:8440583,10461537:242189 -k1,21566:9701857,10461537:242189 -k1,21566:11243626,10461537:242190 -k1,21566:12152971,10461537:242189 -k1,21566:12809960,10461537:242146 -k1,21566:14548336,10461537:242189 -k1,21566:17013506,10461537:242189 -k1,21566:22910797,10461537:242189 -k1,21566:26178784,10461537:242190 -k1,21566:27805093,10461537:242189 -k1,21566:29066367,10461537:242189 -k1,21566:32583029,10461537:0 -) -(1,21567:6630773,11303025:25952256,513147,134348 -k1,21566:8962937,11303025:172753 -k1,21566:10330411,11303025:172753 -k1,21566:12070785,11303025:172753 -k1,21566:13262622,11303025:172752 -k1,21566:14816219,11303025:172753 -k1,21566:15656128,11303025:172753 -k1,21566:16417394,11303025:172753 -k1,21566:17786834,11303025:172753 -k1,21566:19930255,11303025:172753 -k1,21566:21971439,11303025:172753 -k1,21566:23248474,11303025:172753 -k1,21566:24168992,11303025:172752 -k1,21566:27180765,11303025:172753 -k1,21566:28004946,11303025:172753 -k1,21566:29774156,11303025:172753 -k1,21566:32583029,11303025:0 -) -(1,21567:6630773,12144513:25952256,513147,126483 -g1,21566:8716128,12144513 -g1,21566:10047164,12144513 -g1,21566:11110813,12144513 -g1,21566:12257693,12144513 -g1,21566:14342393,12144513 -g1,21566:14956465,12144513 -g1,21566:15687191,12144513 -k1,21567:32583029,12144513:13938198 -g1,21567:32583029,12144513 -) -v1,21569:6630773,13253841:0,393216,0 -(1,21576:6630773,14235116:25952256,1374491,196608 -g1,21576:6630773,14235116 -g1,21576:6630773,14235116 -g1,21576:6434165,14235116 -(1,21576:6434165,14235116:0,1374491,196608 -r1,21651:32779637,14235116:26345472,1571099,196608 -k1,21576:6434165,14235116:-26345472 -) -(1,21576:6434165,14235116:26345472,1374491,196608 -[1,21576:6630773,14235116:25952256,1177883,0 -(1,21571:6630773,13467751:25952256,410518,101187 -(1,21570:6630773,13467751:0,0,0 -g1,21570:6630773,13467751 -g1,21570:6630773,13467751 -g1,21570:6303093,13467751 -(1,21570:6303093,13467751:0,0,0 -) -g1,21570:6630773,13467751 -) -k1,21571:6630773,13467751:0 -k1,21571:6630773,13467751:0 -h1,21571:16431289,13467751:0,0,0 -k1,21571:32583029,13467751:16151740 -g1,21571:32583029,13467751 -) -(1,21575:6630773,14133929:25952256,410518,101187 -(1,21573:6630773,14133929:0,0,0 -g1,21573:6630773,14133929 -g1,21573:6630773,14133929 -g1,21573:6303093,14133929 -(1,21573:6303093,14133929:0,0,0 -) -g1,21573:6630773,14133929 -) -g1,21575:7579210,14133929 -g1,21575:8843793,14133929 -k1,21575:8843793,14133929:0 -h1,21575:12953687,14133929:0,0,0 -k1,21575:32583029,14133929:19629342 -g1,21575:32583029,14133929 -) -] -) -g1,21576:32583029,14235116 -g1,21576:6630773,14235116 -g1,21576:6630773,14235116 -g1,21576:32583029,14235116 -g1,21576:32583029,14235116 -) -h1,21576:6630773,14431724:0,0,0 -v1,21580:6630773,16159512:0,393216,0 -(1,21601:6630773,26509377:25952256,10743081,0 -g1,21601:6630773,26509377 -g1,21601:6303093,26509377 -r1,21651:6401397,26509377:98304,10743081,0 -g1,21601:6600626,26509377 -g1,21601:6797234,26509377 -[1,21601:6797234,26509377:25785795,10743081,0 -(1,21584:6797234,16580096:25785795,813800,267386 -(1,21580:6797234,16580096:0,813800,267386 -r1,21651:8134168,16580096:1336934,1081186,267386 -k1,21580:6797234,16580096:-1336934 -) -(1,21580:6797234,16580096:1336934,813800,267386 -) -k1,21580:8287686,16580096:153518 -k1,21580:8615366,16580096:327680 -k1,21580:8615366,16580096:0 -k1,21581:8768884,16580096:153518 -k1,21582:8768884,16580096:0 -k1,21583:10697118,16580096:153519 -k1,21583:11466674,16580096:153518 -k1,21583:13071814,16580096:153518 -k1,21583:14416777,16580096:153518 -k1,21583:16323383,16580096:153518 -k1,21583:18397761,16580096:153518 -k1,21583:20890915,16580096:153519 -k1,21583:21660471,16580096:153518 -k1,21583:22797029,16580096:153518 -k1,21583:24729194,16580096:153518 -k1,21583:25414209,16580096:153518 -k1,21583:27992560,16580096:153519 -k1,21583:29540029,16580096:153518 -k1,21583:30049407,16580096:153518 -k1,21583:32583029,16580096:0 -) -(1,21584:6797234,17421584:25785795,505283,102891 -k1,21583:8716188,17421584:282520 -k1,21583:11973387,17421584:282520 -h1,21583:12180481,17421584:0,0,0 -k1,21583:13238946,17421584:282519 -k1,21583:15407592,17421584:282520 -k1,21583:19630136,17421584:282520 -k1,21583:20370753,17421584:282520 -k1,21583:21184770,17421584:282520 -k1,21583:23892122,17421584:282520 -k1,21583:25568592,17421584:282519 -k1,21583:26206972,17421584:282520 -k1,21583:29608350,17421584:282520 -k1,21583:32583029,17421584:0 -) -(1,21584:6797234,18263072:25785795,513147,126483 -h1,21583:7004328,18263072:0,0,0 -k1,21583:8048801,18263072:268527 -k1,21583:11434877,18263072:268528 -h1,21583:11641971,18263072:0,0,0 -k1,21583:12512774,18263072:268527 -k1,21583:13312799,18263072:268528 -k1,21583:14352029,18263072:268527 -k1,21583:16755720,18263072:268528 -k1,21583:19998926,18263072:268527 -k1,21583:20883492,18263072:268528 -k1,21583:21566792,18263072:268457 -k1,21583:23026765,18263072:268528 -k1,21583:26885354,18263072:268527 -k1,21583:27840044,18263072:268528 -k1,21583:29127656,18263072:268527 -k1,21583:30884507,18263072:268528 -k1,21583:31812326,18263072:268527 -k1,21583:32583029,18263072:0 -) -(1,21584:6797234,19104560:25785795,513147,134348 -k1,21583:10327708,19104560:205833 -k1,21583:12727687,19104560:205834 -k1,21583:15873465,19104560:205833 -k1,21583:16738591,19104560:205834 -k1,21583:20249405,19104560:205833 -k1,21583:21687316,19104560:205834 -k1,21583:24171836,19104560:205833 -h1,21583:25142424,19104560:0,0,0 -k1,21583:25348258,19104560:205834 -k1,21583:26363461,19104560:205833 -k1,21583:28067448,19104560:205834 -h1,21583:28864366,19104560:0,0,0 -k1,21583:29450963,19104560:205833 -k1,21583:31346315,19104560:205834 -k1,21583:32168186,19104560:205833 -k1,21584:32583029,19104560:0 -) -(1,21584:6797234,19946048:25785795,513147,126483 -k1,21583:7316672,19946048:163578 -k1,21583:10013872,19946048:163578 -k1,21583:11813883,19946048:163577 -h1,21583:12020977,19946048:0,0,0 -k1,21583:12786831,19946048:163578 -k1,21583:14054691,19946048:163578 -k1,21583:14966035,19946048:163578 -k1,21583:16642839,19946048:163578 -k1,21583:17754067,19946048:163577 -k1,21583:18900685,19946048:163578 -k1,21583:20842910,19946048:163578 -k1,21583:22892614,19946048:163578 -k1,21583:24187999,19946048:163578 -k1,21583:25389666,19946048:163577 -k1,21583:26744689,19946048:163578 -k1,21583:29464171,19946048:163578 -k1,21583:32583029,19946048:0 -) -(1,21584:6797234,20787536:25785795,513147,126483 -h1,21583:7004328,20787536:0,0,0 -k1,21583:8189695,20787536:187909 -k1,21583:8909102,20787536:187910 -k1,21583:10637107,20787536:187909 -k1,21583:12200618,20787536:187910 -k1,21583:14274653,20787536:187909 -k1,21583:18656867,20787536:187910 -k1,21583:23365450,20787536:187909 -h1,21583:23365450,20787536:0,0,0 -k1,21583:23948542,20787536:187910 -k1,21583:26316834,20787536:187909 -k1,21583:27252510,20787536:187910 -k1,21583:29569684,20787536:187909 -k1,21583:32583029,20787536:0 -) -(1,21584:6797234,21629024:25785795,505283,126483 -g1,21583:7647891,21629024 -h1,21583:7647891,21629024:0,0,0 -g1,21583:8637484,21629024 -g1,21583:9488141,21629024 -g1,21583:11830397,21629024 -g1,21583:15545633,21629024 -g1,21583:16936307,21629024 -g1,21583:17667033,21629024 -g1,21583:18885347,21629024 -g1,21583:22069086,21629024 -g1,21583:23781541,21629024 -g1,21583:24596808,21629024 -g1,21583:25999278,21629024 -k1,21584:32583029,21629024:4828041 -g1,21584:32583029,21629024 -) -v1,21586:6797234,22819490:0,393216,0 -(1,21599:6797234,25788481:25785795,3362207,196608 -g1,21599:6797234,25788481 -g1,21599:6797234,25788481 -g1,21599:6600626,25788481 -(1,21599:6600626,25788481:0,3362207,196608 -r1,21651:32779637,25788481:26179011,3558815,196608 -k1,21599:6600625,25788481:-26179012 -) -(1,21599:6600626,25788481:26179011,3362207,196608 -[1,21599:6797234,25788481:25785795,3165599,0 -(1,21588:6797234,23033400:25785795,410518,101187 -(1,21587:6797234,23033400:0,0,0 -g1,21587:6797234,23033400 -g1,21587:6797234,23033400 -g1,21587:6469554,23033400 -(1,21587:6469554,23033400:0,0,0 -) -g1,21587:6797234,23033400 -) -k1,21588:6797234,23033400:0 -k1,21588:6797234,23033400:0 -h1,21588:16597750,23033400:0,0,0 -k1,21588:32583029,23033400:15985279 -g1,21588:32583029,23033400 -) -(1,21592:6797234,23699578:25785795,410518,101187 -(1,21590:6797234,23699578:0,0,0 -g1,21590:6797234,23699578 -g1,21590:6797234,23699578 -g1,21590:6469554,23699578 -(1,21590:6469554,23699578:0,0,0 -) -g1,21590:6797234,23699578 -) -g1,21592:7745671,23699578 -g1,21592:9010254,23699578 -k1,21592:9010254,23699578:0 -h1,21592:13120148,23699578:0,0,0 -k1,21592:32583028,23699578:19462880 -g1,21592:32583028,23699578 -) -(1,21594:6797234,25021116:25785795,410518,101187 -(1,21593:6797234,25021116:0,0,0 -g1,21593:6797234,25021116 -g1,21593:6797234,25021116 -g1,21593:6469554,25021116 -(1,21593:6469554,25021116:0,0,0 -) -g1,21593:6797234,25021116 -) -k1,21594:6797234,25021116:0 -k1,21594:6797234,25021116:0 -h1,21594:16913896,25021116:0,0,0 -k1,21594:32583029,25021116:15669133 -g1,21594:32583029,25021116 -) -(1,21598:6797234,25687294:25785795,410518,101187 -(1,21596:6797234,25687294:0,0,0 -g1,21596:6797234,25687294 -g1,21596:6797234,25687294 -g1,21596:6469554,25687294 -(1,21596:6469554,25687294:0,0,0 -) -g1,21596:6797234,25687294 -) -g1,21598:7745671,25687294 -g1,21598:9010254,25687294 -k1,21598:9010254,25687294:0 -h1,21598:13120148,25687294:0,0,0 -k1,21598:32583028,25687294:19462880 -g1,21598:32583028,25687294 -) -] -) -g1,21599:32583029,25788481 -g1,21599:6797234,25788481 -g1,21599:6797234,25788481 -g1,21599:32583029,25788481 -g1,21599:32583029,25788481 -) -h1,21599:6797234,25985089:0,0,0 -] -g1,21601:32583029,26509377 -) -h1,21601:6630773,26509377:0,0,0 -(1,21604:6630773,27794015:25952256,513147,126483 -h1,21603:6630773,27794015:983040,0,0 -k1,21603:9020102,27794015:209602 -k1,21603:14195367,27794015:209602 -k1,21603:17100465,27794015:209602 -k1,21603:17961495,27794015:209602 -(1,21603:17961495,27794015:0,452978,115847 -r1,21651:21485167,27794015:3523672,568825,115847 -k1,21603:17961495,27794015:-3523672 -) -(1,21603:17961495,27794015:3523672,452978,115847 -k1,21603:17961495,27794015:3277 -h1,21603:21481890,27794015:0,411205,112570 -) -k1,21603:21694770,27794015:209603 -k1,21603:22435869,27794015:209602 -(1,21603:22435869,27794015:0,452978,115847 -r1,21651:25607829,27794015:3171960,568825,115847 -k1,21603:22435869,27794015:-3171960 -) -(1,21603:22435869,27794015:3171960,452978,115847 -k1,21603:22435869,27794015:3277 -h1,21603:25604552,27794015:0,411205,112570 -) -k1,21603:25817431,27794015:209602 -k1,21603:27218478,27794015:209602 -k1,21603:29962357,27794015:209602 -k1,21603:31191044,27794015:209602 -k1,21603:32583029,27794015:0 -) -(1,21604:6630773,28635503:25952256,513147,134348 -g1,21603:8278348,28635503 -g1,21603:9129005,28635503 -g1,21603:10347319,28635503 -g1,21603:13908545,28635503 -g1,21603:16202305,28635503 -g1,21603:17969155,28635503 -g1,21603:18524244,28635503 -g1,21603:19813337,28635503 -g1,21603:20995606,28635503 -k1,21604:32583029,28635503:9965407 -g1,21604:32583029,28635503 -) -v1,21606:6630773,29744831:0,393216,0 -(1,21613:6630773,30700940:25952256,1349325,196608 -g1,21613:6630773,30700940 -g1,21613:6630773,30700940 -g1,21613:6434165,30700940 -(1,21613:6434165,30700940:0,1349325,196608 -r1,21651:32779637,30700940:26345472,1545933,196608 -k1,21613:6434165,30700940:-26345472 -) -(1,21613:6434165,30700940:26345472,1349325,196608 -[1,21613:6630773,30700940:25952256,1152717,0 -(1,21608:6630773,29958741:25952256,410518,101187 -(1,21607:6630773,29958741:0,0,0 -g1,21607:6630773,29958741 -g1,21607:6630773,29958741 -g1,21607:6303093,29958741 -(1,21607:6303093,29958741:0,0,0 -) -g1,21607:6630773,29958741 -) -k1,21608:6630773,29958741:0 -k1,21608:6630773,29958741:0 -h1,21608:16115144,29958741:0,0,0 -k1,21608:32583029,29958741:16467885 -g1,21608:32583029,29958741 -) -(1,21612:6630773,30624919:25952256,404226,76021 -(1,21610:6630773,30624919:0,0,0 -g1,21610:6630773,30624919 -g1,21610:6630773,30624919 -g1,21610:6303093,30624919 -(1,21610:6303093,30624919:0,0,0 -) -g1,21610:6630773,30624919 -) -g1,21612:7579210,30624919 -g1,21612:8843793,30624919 -h1,21612:11689104,30624919:0,0,0 -k1,21612:32583028,30624919:20893924 -g1,21612:32583028,30624919 -) -] -) -g1,21613:32583029,30700940 -g1,21613:6630773,30700940 -g1,21613:6630773,30700940 -g1,21613:32583029,30700940 -g1,21613:32583029,30700940 -) -h1,21613:6630773,30897548:0,0,0 -(1,21619:6630773,32182187:25952256,505283,134348 -h1,21618:6630773,32182187:983040,0,0 -k1,21618:10907822,32182187:173840 -(1,21618:10907822,32182187:0,452978,122846 -r1,21651:13376359,32182187:2468537,575824,122846 -k1,21618:10907822,32182187:-2468537 -) -(1,21618:10907822,32182187:2468537,452978,122846 -k1,21618:10907822,32182187:3277 -h1,21618:13373082,32182187:0,411205,112570 -) -k1,21618:13550199,32182187:173840 -k1,21618:14915483,32182187:173839 -(1,21618:14915483,32182187:0,452978,115847 -r1,21651:17384020,32182187:2468537,568825,115847 -k1,21618:14915483,32182187:-2468537 -) -(1,21618:14915483,32182187:2468537,452978,115847 -k1,21618:14915483,32182187:3277 -h1,21618:17380743,32182187:0,411205,112570 -) -k1,21618:17557860,32182187:173840 -k1,21618:18835982,32182187:173840 -k1,21618:19757588,32182187:173840 -k1,21618:21444653,32182187:173839 -k1,21618:22269921,32182187:173840 -k1,21618:23422214,32182187:173840 -k1,21618:24615139,32182187:173840 -k1,21618:26237325,32182187:173840 -k1,21618:27062592,32182187:173839 -k1,21618:28255517,32182187:173840 -k1,21618:30773580,32182187:173840 -k1,21619:32583029,32182187:0 -) -(1,21619:6630773,33023675:25952256,505283,134348 -g1,21618:7820251,33023675 -g1,21618:10911584,33023675 -g1,21618:12302258,33023675 -g1,21618:13152915,33023675 -g1,21618:14286687,33023675 -g1,21618:14841776,33023675 -g1,21618:17933109,33023675 -g1,21618:18818500,33023675 -g1,21618:21535622,33023675 -k1,21619:32583029,33023675:7077236 -g1,21619:32583029,33023675 -) -v1,21621:6630773,34133003:0,393216,0 -(1,21626:6630773,35089111:25952256,1349324,196608 -g1,21626:6630773,35089111 -g1,21626:6630773,35089111 -g1,21626:6434165,35089111 -(1,21626:6434165,35089111:0,1349324,196608 -r1,21651:32779637,35089111:26345472,1545932,196608 -k1,21626:6434165,35089111:-26345472 -) -(1,21626:6434165,35089111:26345472,1349324,196608 -[1,21626:6630773,35089111:25952256,1152716,0 -(1,21623:6630773,34315455:25952256,379060,6290 -(1,21622:6630773,34315455:0,0,0 -g1,21622:6630773,34315455 -g1,21622:6630773,34315455 -g1,21622:6303093,34315455 -(1,21622:6303093,34315455:0,0,0 -) -g1,21622:6630773,34315455 -) -g1,21623:7263065,34315455 -g1,21623:8527648,34315455 -k1,21623:8527648,34315455:0 -h1,21623:9476085,34315455:0,0,0 -k1,21623:32583029,34315455:23106944 -g1,21623:32583029,34315455 -) -(1,21624:6630773,34981633:25952256,404226,107478 -h1,21624:6630773,34981633:0,0,0 -k1,21624:6630773,34981633:0 -h1,21624:8843792,34981633:0,0,0 -k1,21624:32583028,34981633:23739236 -g1,21624:32583028,34981633 -) -] -) -g1,21626:32583029,35089111 -g1,21626:6630773,35089111 -g1,21626:6630773,35089111 -g1,21626:32583029,35089111 -g1,21626:32583029,35089111 -) -h1,21626:6630773,35285719:0,0,0 -(1,21630:6630773,36570357:25952256,505283,134348 -h1,21629:6630773,36570357:983040,0,0 -k1,21629:10660013,36570357:256332 -(1,21629:10660013,36570357:0,452978,115847 -r1,21651:13128550,36570357:2468537,568825,115847 -k1,21629:10660013,36570357:-2468537 -) -(1,21629:10660013,36570357:2468537,452978,115847 -k1,21629:10660013,36570357:3277 -h1,21629:13125273,36570357:0,411205,112570 -) -k1,21629:13384881,36570357:256331 -k1,21629:15982159,36570357:256332 -k1,21629:17257575,36570357:256331 -k1,21629:18962253,36570357:256332 -k1,21629:19870012,36570357:256331 -k1,21629:21145429,36570357:256332 -k1,21629:23745983,36570357:256331 -k1,21629:26589021,36570357:256332 -k1,21629:29911126,36570357:256331 -k1,21629:32583029,36570357:0 -) -(1,21630:6630773,37411845:25952256,505283,134348 -k1,21629:7612956,37411845:237039 -k1,21629:8501422,37411845:237038 -k1,21629:11421505,37411845:237039 -k1,21629:12593086,37411845:237038 -k1,21629:13849210,37411845:237039 -k1,21629:16672955,37411845:237039 -k1,21629:19802097,37411845:237038 -k1,21629:20690564,37411845:237039 -k1,21629:21946688,37411845:237039 -k1,21629:24938204,37411845:237038 -k1,21629:26505624,37411845:237039 -k1,21629:28208047,37411845:237038 -k1,21629:30804382,37411845:237039 -k1,21629:32583029,37411845:0 -) -(1,21630:6630773,38253333:25952256,505283,134348 -k1,21629:9462857,38253333:265694 -k1,21629:10379979,38253333:265694 -k1,21629:11664758,38253333:265694 -k1,21629:14274674,38253333:265693 -k1,21629:17127074,38253333:265694 -k1,21629:20665636,38253333:265694 -k1,21629:21617492,38253333:265694 -k1,21629:22499224,38253333:265694 -k1,21629:23784003,38253333:265694 -k1,21629:26884783,38253333:265693 -k1,21629:27833362,38253333:265694 -k1,21629:30804382,38253333:265694 -k1,21629:32583029,38253333:0 -) -(1,21630:6630773,39094821:25952256,513147,134348 -k1,21629:8776791,39094821:244163 -k1,21629:9636993,39094821:244164 -k1,21629:11178114,39094821:244163 -k1,21629:12413838,39094821:244164 -k1,21629:15474083,39094821:244163 -k1,21629:16404408,39094821:244163 -k1,21629:17419275,39094821:244164 -k1,21629:20909436,39094821:244163 -k1,21629:21781434,39094821:244163 -k1,21629:25816200,39094821:244164 -k1,21629:27255084,39094821:244163 -(1,21629:27555239,39094821:0,414482,115847 -r1,21651:27913505,39094821:358266,530329,115847 -k1,21629:27555239,39094821:-358266 -) -(1,21629:27555239,39094821:358266,414482,115847 -k1,21629:27555239,39094821:3277 -h1,21629:27910228,39094821:0,411205,112570 -) -k1,21629:28457824,39094821:244164 -k1,21629:31563944,39094821:244163 -k1,21629:32583029,39094821:0 -) -(1,21630:6630773,39936309:25952256,505283,126483 -g1,21629:9174225,39936309 -g1,21629:12265558,39936309 -g1,21629:13656232,39936309 -(1,21629:13956387,39936309:0,414482,115847 -r1,21651:14666365,39936309:709978,530329,115847 -k1,21629:13956387,39936309:-709978 -) -(1,21629:13956387,39936309:709978,414482,115847 -k1,21629:13956387,39936309:3277 -h1,21629:14663088,39936309:0,411205,112570 -) -g1,21629:15165749,39936309 -g1,21629:16384063,39936309 -g1,21629:19475396,39936309 -g1,21629:21529949,39936309 -g1,21629:22748263,39936309 -g1,21629:25291715,39936309 -k1,21630:32583029,39936309:5960933 -g1,21630:32583029,39936309 -) -v1,21632:6630773,41045637:0,393216,0 -(1,21638:6630773,42667923:25952256,2015502,196608 -g1,21638:6630773,42667923 -g1,21638:6630773,42667923 -g1,21638:6434165,42667923 -(1,21638:6434165,42667923:0,2015502,196608 -r1,21651:32779637,42667923:26345472,2212110,196608 -k1,21638:6434165,42667923:-26345472 -) -(1,21638:6434165,42667923:26345472,2015502,196608 -[1,21638:6630773,42667923:25952256,1818894,0 -(1,21634:6630773,41228089:25952256,379060,6290 -(1,21633:6630773,41228089:0,0,0 -g1,21633:6630773,41228089 -g1,21633:6630773,41228089 -g1,21633:6303093,41228089 -(1,21633:6303093,41228089:0,0,0 -) -g1,21633:6630773,41228089 -) -g1,21634:7263065,41228089 -g1,21634:8527648,41228089 -k1,21634:8527648,41228089:0 -h1,21634:9476085,41228089:0,0,0 -k1,21634:32583029,41228089:23106944 -g1,21634:32583029,41228089 -) -(1,21635:6630773,41894267:25952256,404226,76021 -h1,21635:6630773,41894267:0,0,0 -g1,21635:8527647,41894267 -g1,21635:9476085,41894267 -k1,21635:9476085,41894267:0 -h1,21635:12953688,41894267:0,0,0 -k1,21635:32583028,41894267:19629340 -g1,21635:32583028,41894267 -) -(1,21636:6630773,42560445:25952256,404226,107478 -h1,21636:6630773,42560445:0,0,0 -k1,21636:6630773,42560445:0 -h1,21636:8843792,42560445:0,0,0 -k1,21636:32583028,42560445:23739236 -g1,21636:32583028,42560445 -) -] -) -g1,21638:32583029,42667923 -g1,21638:6630773,42667923 -g1,21638:6630773,42667923 -g1,21638:32583029,42667923 -g1,21638:32583029,42667923 -) -h1,21638:6630773,42864531:0,0,0 -(1,21642:6630773,44149169:25952256,513147,126483 -h1,21641:6630773,44149169:983040,0,0 -k1,21641:9042731,44149169:232231 -k1,21641:12053690,44149169:232232 -k1,21641:13966264,44149169:232231 -k1,21641:14729993,44149169:232232 -k1,21641:17091489,44149169:232231 -k1,21641:18094424,44149169:232232 -k1,21641:21031981,44149169:232231 -k1,21641:22354076,44149169:232231 -k1,21641:24208324,44149169:232232 -k1,21641:25165383,44149169:232231 -k1,21641:25855712,44149169:232232 -k1,21641:28645813,44149169:232231 -k1,21641:30418141,44149169:232232 -k1,21641:32117068,44149169:232231 -k1,21641:32583029,44149169:0 -) -(1,21642:6630773,44990657:25952256,513147,134348 -g1,21641:7849087,44990657 -g1,21641:9496662,44990657 -g1,21641:10347319,44990657 -g1,21641:11565633,44990657 -g1,21641:14351568,44990657 -g1,21641:17442901,44990657 -g1,21641:20213107,44990657 -g1,21641:22062533,44990657 -g1,21641:23704209,44990657 -g1,21641:25393727,44990657 -g1,21641:27635713,44990657 -g1,21641:29572957,44990657 -k1,21642:32583029,44990657:162533 -g1,21642:32583029,44990657 -) -v1,21644:6630773,46099985:0,393216,0 -] -(1,21651:32583029,45706769:0,0,0 -g1,21651:32583029,45706769 -) -) -] -(1,21651:6630773,47279633:25952256,0,0 -h1,21651:6630773,47279633:25952256,0,0 -) -] -(1,21651:4262630,4025873:0,0,0 -[1,21651:-473656,4025873:0,0,0 -(1,21651:-473656,-710413:0,0,0 -(1,21651:-473656,-710413:0,0,0 -g1,21651:-473656,-710413 -) -g1,21651:-473656,-710413 -) -] -) -] -!26954 -}393 -Input:3529:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3530:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3531:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3532:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3533:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3534:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3535:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3536:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3537:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3538:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3539:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1046 -{394 -[1,21756:4262630,47279633:28320399,43253760,0 -(1,21756:4262630,4025873:0,0,0 -[1,21756:-473656,4025873:0,0,0 -(1,21756:-473656,-710413:0,0,0 -(1,21756:-473656,-644877:0,0,0 -k1,21756:-473656,-644877:-65536 +!17337 +}374 +!12 +{375 +[1,21734:4262630,47279633:28320399,43253760,0 +(1,21734:4262630,4025873:0,0,0 +[1,21734:-473656,4025873:0,0,0 +(1,21734:-473656,-710413:0,0,0 +(1,21734:-473656,-644877:0,0,0 +k1,21734:-473656,-644877:-65536 ) -(1,21756:-473656,4736287:0,0,0 -k1,21756:-473656,4736287:5209943 +(1,21734:-473656,4736287:0,0,0 +k1,21734:-473656,4736287:5209943 ) -g1,21756:-473656,-710413 +g1,21734:-473656,-710413 ) ] ) -[1,21756:6630773,47279633:25952256,43253760,0 -[1,21756:6630773,4812305:25952256,786432,0 -(1,21756:6630773,4812305:25952256,505283,126483 -(1,21756:6630773,4812305:25952256,505283,126483 -g1,21756:3078558,4812305 -[1,21756:3078558,4812305:0,0,0 -(1,21756:3078558,2439708:0,1703936,0 -k1,21756:1358238,2439708:-1720320 -(1,21457:1358238,2439708:1720320,1703936,0 -(1,21457:1358238,2439708:1179648,16384,0 -r1,21756:2537886,2439708:1179648,16384,0 +[1,21734:6630773,47279633:25952256,43253760,0 +[1,21734:6630773,4812305:25952256,786432,0 +(1,21734:6630773,4812305:25952256,505283,134348 +(1,21734:6630773,4812305:25952256,505283,134348 +g1,21734:3078558,4812305 +[1,21734:3078558,4812305:0,0,0 +(1,21734:3078558,2439708:0,1703936,0 +k1,21734:1358238,2439708:-1720320 +(1,21670:1358238,2439708:1720320,1703936,0 +(1,21670:1358238,2439708:1179648,16384,0 +r1,21734:2537886,2439708:1179648,16384,0 ) -g1,21457:3062174,2439708 -(1,21457:3062174,2439708:16384,1703936,0 -[1,21457:3062174,2439708:25952256,1703936,0 -(1,21457:3062174,1915420:25952256,1179648,0 -(1,21457:3062174,1915420:16384,1179648,0 -r1,21756:3078558,1915420:16384,1179648,0 +g1,21670:3062174,2439708 +(1,21670:3062174,2439708:16384,1703936,0 +[1,21670:3062174,2439708:25952256,1703936,0 +(1,21670:3062174,1915420:25952256,1179648,0 +(1,21670:3062174,1915420:16384,1179648,0 +r1,21734:3078558,1915420:16384,1179648,0 ) -k1,21457:29014430,1915420:25935872 -g1,21457:29014430,1915420 +k1,21670:29014430,1915420:25935872 +g1,21670:29014430,1915420 ) ] ) ) ) ] -[1,21756:3078558,4812305:0,0,0 -(1,21756:3078558,2439708:0,1703936,0 -g1,21756:29030814,2439708 -g1,21756:36135244,2439708 -(1,21457:36135244,2439708:1720320,1703936,0 -(1,21457:36135244,2439708:16384,1703936,0 -[1,21457:36135244,2439708:25952256,1703936,0 -(1,21457:36135244,1915420:25952256,1179648,0 -(1,21457:36135244,1915420:16384,1179648,0 -r1,21756:36151628,1915420:16384,1179648,0 +[1,21734:3078558,4812305:0,0,0 +(1,21734:3078558,2439708:0,1703936,0 +g1,21734:29030814,2439708 +g1,21734:36135244,2439708 +(1,21670:36135244,2439708:1720320,1703936,0 +(1,21670:36135244,2439708:16384,1703936,0 +[1,21670:36135244,2439708:25952256,1703936,0 +(1,21670:36135244,1915420:25952256,1179648,0 +(1,21670:36135244,1915420:16384,1179648,0 +r1,21734:36151628,1915420:16384,1179648,0 ) -k1,21457:62087500,1915420:25935872 -g1,21457:62087500,1915420 +k1,21670:62087500,1915420:25935872 +g1,21670:62087500,1915420 ) ] ) -g1,21457:36675916,2439708 -(1,21457:36675916,2439708:1179648,16384,0 -r1,21756:37855564,2439708:1179648,16384,0 +g1,21670:36675916,2439708 +(1,21670:36675916,2439708:1179648,16384,0 +r1,21734:37855564,2439708:1179648,16384,0 ) ) -k1,21756:3078556,2439708:-34777008 +k1,21734:3078556,2439708:-34777008 ) ] -[1,21756:3078558,4812305:0,0,0 -(1,21756:3078558,49800853:0,16384,2228224 -k1,21756:1358238,49800853:-1720320 -(1,21457:1358238,49800853:1720320,16384,2228224 -(1,21457:1358238,49800853:1179648,16384,0 -r1,21756:2537886,49800853:1179648,16384,0 +[1,21734:3078558,4812305:0,0,0 +(1,21734:3078558,49800853:0,16384,2228224 +k1,21734:1358238,49800853:-1720320 +(1,21670:1358238,49800853:1720320,16384,2228224 +(1,21670:1358238,49800853:1179648,16384,0 +r1,21734:2537886,49800853:1179648,16384,0 ) -g1,21457:3062174,49800853 -(1,21457:3062174,52029077:16384,1703936,0 -[1,21457:3062174,52029077:25952256,1703936,0 -(1,21457:3062174,51504789:25952256,1179648,0 -(1,21457:3062174,51504789:16384,1179648,0 -r1,21756:3078558,51504789:16384,1179648,0 +g1,21670:3062174,49800853 +(1,21670:3062174,52029077:16384,1703936,0 +[1,21670:3062174,52029077:25952256,1703936,0 +(1,21670:3062174,51504789:25952256,1179648,0 +(1,21670:3062174,51504789:16384,1179648,0 +r1,21734:3078558,51504789:16384,1179648,0 ) -k1,21457:29014430,51504789:25935872 -g1,21457:29014430,51504789 +k1,21670:29014430,51504789:25935872 +g1,21670:29014430,51504789 ) ] ) ) ) ] -[1,21756:3078558,4812305:0,0,0 -(1,21756:3078558,49800853:0,16384,2228224 -g1,21756:29030814,49800853 -g1,21756:36135244,49800853 -(1,21457:36135244,49800853:1720320,16384,2228224 -(1,21457:36135244,52029077:16384,1703936,0 -[1,21457:36135244,52029077:25952256,1703936,0 -(1,21457:36135244,51504789:25952256,1179648,0 -(1,21457:36135244,51504789:16384,1179648,0 -r1,21756:36151628,51504789:16384,1179648,0 +[1,21734:3078558,4812305:0,0,0 +(1,21734:3078558,49800853:0,16384,2228224 +g1,21734:29030814,49800853 +g1,21734:36135244,49800853 +(1,21670:36135244,49800853:1720320,16384,2228224 +(1,21670:36135244,52029077:16384,1703936,0 +[1,21670:36135244,52029077:25952256,1703936,0 +(1,21670:36135244,51504789:25952256,1179648,0 +(1,21670:36135244,51504789:16384,1179648,0 +r1,21734:36151628,51504789:16384,1179648,0 ) -k1,21457:62087500,51504789:25935872 -g1,21457:62087500,51504789 +k1,21670:62087500,51504789:25935872 +g1,21670:62087500,51504789 ) ] ) -g1,21457:36675916,49800853 -(1,21457:36675916,49800853:1179648,16384,0 -r1,21756:37855564,49800853:1179648,16384,0 +g1,21670:36675916,49800853 +(1,21670:36675916,49800853:1179648,16384,0 +r1,21734:37855564,49800853:1179648,16384,0 ) ) -k1,21756:3078556,49800853:-34777008 +k1,21734:3078556,49800853:-34777008 +) +] +g1,21734:6630773,4812305 +k1,21734:21078841,4812305:13252691 +g1,21734:22701512,4812305 +g1,21734:23350318,4812305 +g1,21734:24759997,4812305 +g1,21734:28372341,4812305 +g1,21734:30105768,4812305 +) +) +] +[1,21734:6630773,45706769:25952256,40108032,0 +(1,21734:6630773,45706769:25952256,40108032,0 +(1,21734:6630773,45706769:0,0,0 +g1,21734:6630773,45706769 +) +[1,21734:6630773,45706769:25952256,40108032,0 +(1,21688:6630773,6254097:25952256,32768,229376 +(1,21688:6630773,6254097:0,32768,229376 +(1,21688:6630773,6254097:5505024,32768,229376 +r1,21734:12135797,6254097:5505024,262144,229376 +) +k1,21688:6630773,6254097:-5505024 +) +(1,21688:6630773,6254097:25952256,32768,0 +r1,21734:32583029,6254097:25952256,32768,0 +) +) +(1,21688:6630773,7885949:25952256,606339,14155 +(1,21688:6630773,7885949:2464678,582746,14155 +g1,21688:6630773,7885949 +g1,21688:9095451,7885949 +) +k1,21688:32583028,7885949:18530696 +g1,21688:32583028,7885949 +) +(1,21691:6630773,9144245:25952256,513147,126483 +k1,21690:8032465,9144245:205005 +k1,21690:9543603,9144245:205005 +k1,21690:11103893,9144245:205005 +k1,21690:11924936,9144245:205005 +k1,21690:13261748,9144245:205005 +k1,21690:14856116,9144245:205005 +k1,21690:17615714,9144245:205005 +k1,21690:19214670,9144245:205005 +k1,21690:19834513,9144245:205000 +k1,21690:20571015,9144245:205005 +k1,21690:21427448,9144245:205005 +k1,21690:23340977,9144245:205005 +k1,21690:24228867,9144245:205005 +k1,21690:26675203,9144245:205005 +k1,21690:27899293,9144245:205005 +k1,21690:29667332,9144245:205005 +k1,21690:32583029,9144245:0 +) +(1,21691:6630773,10009325:25952256,513147,134348 +k1,21690:9357726,10009325:287703 +k1,21690:10304721,10009325:287703 +k1,21690:11981787,10009325:287703 +k1,21690:13261050,10009325:287703 +k1,21690:15300530,10009325:287703 +k1,21690:16779678,10009325:287703 +k1,21690:18456743,10009325:287702 +k1,21690:19848728,10009325:287703 +k1,21690:20884197,10009325:287703 +k1,21690:23210070,10009325:287703 +k1,21690:24180658,10009325:287703 +k1,21690:28217676,10009325:287703 +k1,21690:30240772,10009325:287703 +k1,21690:32583029,10009325:0 +) +(1,21691:6630773,10874405:25952256,513147,134348 +k1,21690:9460050,10874405:144922 +k1,21690:11071667,10874405:144921 +k1,21690:13071258,10874405:144922 +k1,21690:14025550,10874405:144922 +k1,21690:15396650,10874405:144921 +k1,21690:16224457,10874405:144922 +k1,21690:18391165,10874405:144922 +k1,21690:21941337,10874405:144921 +k1,21690:22556152,10874405:144922 +k1,21690:23232571,10874405:144922 +k1,21690:25510034,10874405:144921 +k1,21690:26939462,10874405:144922 +k1,21690:28473747,10874405:144922 +k1,21690:29150165,10874405:144921 +k1,21690:30361358,10874405:144922 +k1,21690:32583029,10874405:0 +) +(1,21691:6630773,11739485:25952256,513147,126483 +k1,21690:10413838,11739485:203489 +k1,21690:12315365,11739485:203489 +k1,21690:13931156,11739485:203490 +k1,21690:15326090,11739485:203489 +k1,21690:16814085,11739485:203489 +k1,21690:17633612,11739485:203489 +k1,21690:18856187,11739485:203490 +k1,21690:21759104,11739485:203489 +k1,21690:23329674,11739485:203489 +k1,21690:24192455,11739485:203489 +k1,21690:25166647,11739485:203489 +k1,21690:27150750,11739485:203490 +k1,21690:29291483,11739485:203489 +k1,21690:30486532,11739485:203489 +k1,21690:32583029,11739485:0 +) +(1,21691:6630773,12604565:25952256,505283,134348 +g1,21690:9767981,12604565 +g1,21690:11512549,12604565 +g1,21690:15052803,12604565 +g1,21690:16243592,12604565 +g1,21690:18198531,12604565 +g1,21690:23777610,12604565 +k1,21691:32583029,12604565:6694504 +g1,21691:32583029,12604565 +) +(1,21693:6630773,13469645:25952256,513147,126483 +h1,21692:6630773,13469645:983040,0,0 +k1,21692:9079689,13469645:269189 +k1,21692:10702852,13469645:269189 +k1,21692:13740937,13469645:269189 +k1,21692:16628945,13469645:269189 +k1,21692:17557426,13469645:269189 +k1,21692:21117833,13469645:269189 +k1,21692:22046314,13469645:269189 +k1,21692:23334588,13469645:269189 +k1,21692:25134043,13469645:269189 +k1,21692:26350883,13469645:269189 +k1,21692:28197524,13469645:269189 +k1,21692:31923737,13469645:269189 +k1,21692:32583029,13469645:0 +) +(1,21693:6630773,14334725:25952256,513147,134348 +k1,21692:8459949,14334725:266142 +k1,21692:10772124,14334725:266141 +k1,21692:12057351,14334725:266142 +k1,21692:14482249,14334725:266142 +k1,21692:15407683,14334725:266142 +k1,21692:17063187,14334725:266141 +k1,21692:18896950,14334725:266142 +k1,21692:19577868,14334725:266075 +k1,21692:21111476,14334725:266142 +k1,21692:25250795,14334725:266141 +k1,21692:30072345,14334725:266142 +k1,21692:32583029,14334725:0 +) +(1,21693:6630773,15199805:25952256,505283,126483 +k1,21692:9299016,15199805:195570 +k1,21692:11627129,15199805:195571 +k1,21692:13351654,15199805:195570 +k1,21692:18067898,15199805:195570 +k1,21692:18879507,15199805:195571 +k1,21692:20826854,15199805:195570 +k1,21692:22719806,15199805:195570 +k1,21692:23686080,15199805:195571 +k1,21692:27090948,15199805:195570 +k1,21692:28641803,15199805:195570 +k1,21692:29453412,15199805:195571 +k1,21692:31038345,15199805:195570 +k1,21693:32583029,15199805:0 +) +(1,21693:6630773,16064885:25952256,513147,126483 +k1,21692:8030997,16064885:177322 +k1,21692:8739815,16064885:177321 +k1,21692:9568565,16064885:177322 +k1,21692:11818791,16064885:177322 +k1,21692:13015197,16064885:177321 +k1,21692:14581882,16064885:177322 +k1,21692:15706854,16064885:177321 +k1,21692:19522079,16064885:177322 +k1,21692:20350829,16064885:177322 +k1,21692:20884010,16064885:177321 +k1,21692:24518356,16064885:177322 +k1,21692:25311716,16064885:177322 +k1,21692:28155042,16064885:177321 +k1,21692:28983792,16064885:177322 +k1,21692:32583029,16064885:0 +) +(1,21693:6630773,16929965:25952256,513147,126483 +g1,21692:7489294,16929965 +g1,21692:8707608,16929965 +g1,21692:11080011,16929965 +g1,21692:11938532,16929965 +g1,21692:13156846,16929965 +k1,21693:32583029,16929965:16697919 +g1,21693:32583029,16929965 +) +(1,21695:6630773,17795045:25952256,505283,126483 +h1,21694:6630773,17795045:983040,0,0 +k1,21694:9876553,17795045:324840 +k1,21694:12729117,17795045:324840 +k1,21694:15084917,17795045:324839 +k1,21694:16061185,17795045:324840 +k1,21694:17775388,17795045:324840 +k1,21694:20539478,17795045:324840 +k1,21694:22055762,17795045:324839 +k1,21694:24888665,17795045:324840 +k1,21694:29951758,17795045:324840 +k1,21694:32583029,17795045:0 +) +(1,21695:6630773,18660125:25952256,513147,134348 +k1,21694:8816580,18660125:275433 +k1,21694:10193094,18660125:275509 +k1,21694:12212516,18660125:275509 +k1,21694:12946122,18660125:275509 +k1,21694:15851591,18660125:275509 +k1,21694:16778528,18660125:275509 +k1,21694:20172895,18660125:275509 +k1,21694:22044861,18660125:275509 +k1,21694:23714322,18660125:275510 +k1,21694:26915358,18660125:275509 +k1,21694:28761765,18660125:275509 +k1,21694:30426637,18660125:275509 +k1,21694:31966991,18660125:275509 +k1,21695:32583029,18660125:0 +) +(1,21695:6630773,19525205:25952256,513147,126483 +k1,21694:7488029,19525205:268743 +k1,21694:9218880,19525205:268743 +k1,21694:9902396,19525205:268673 +k1,21694:12009424,19525205:268743 +k1,21694:13044283,19525205:268743 +k1,21694:14702388,19525205:268742 +k1,21694:15587169,19525205:268743 +k1,21694:18487183,19525205:268743 +k1,21694:20839971,19525205:268743 +k1,21694:23753092,19525205:268743 +k1,21694:25836527,19525205:268743 +k1,21694:26756698,19525205:268743 +k1,21694:28044525,19525205:268742 +k1,21694:29582045,19525205:268743 +k1,21694:30510080,19525205:268743 +k1,21694:32168186,19525205:268743 +k1,21695:32583029,19525205:0 +) +(1,21695:6630773,20390285:25952256,513147,134348 +k1,21694:9873213,20390285:216643 +k1,21694:11194138,20390285:216643 +k1,21694:13821852,20390285:216644 +k1,21694:15021535,20390285:216643 +k1,21694:16280200,20390285:216643 +k1,21694:17886206,20390285:216643 +k1,21694:19367695,20390285:216644 +k1,21694:21155236,20390285:216643 +k1,21694:23732486,20390285:216643 +k1,21694:25015400,20390285:216643 +k1,21694:25883471,20390285:216643 +k1,21694:26787588,20390285:216644 +k1,21694:27620269,20390285:216643 +k1,21694:30913172,20390285:216643 +k1,21694:32583029,20390285:0 +) +(1,21695:6630773,21255365:25952256,513147,134348 +k1,21694:7993921,21255365:206438 +k1,21694:9304642,21255365:206439 +k1,21694:10603565,21255365:206438 +k1,21694:13536302,21255365:206439 +k1,21694:16145290,21255365:206438 +k1,21694:17011021,21255365:206439 +k1,21694:18606822,21255365:206438 +k1,21694:20380881,21255365:206438 +k1,21694:21634585,21255365:206439 +k1,21694:23328035,21255365:206438 +k1,21694:24217359,21255365:206439 +k1,21694:25991418,21255365:206438 +k1,21694:29351449,21255365:206439 +k1,21694:31923737,21255365:206438 +k1,21695:32583029,21255365:0 +) +(1,21695:6630773,22120445:25952256,473825,0 +k1,21695:32583030,22120445:25363744 +g1,21695:32583030,22120445 +) +(1,21697:6630773,22985525:25952256,513147,134348 +h1,21696:6630773,22985525:983040,0,0 +k1,21696:9483340,22985525:152484 +k1,21696:13365479,22985525:152485 +k1,21696:13932759,22985525:152437 +k1,21696:16995698,22985525:152485 +k1,21696:19674595,22985525:152484 +k1,21696:22008773,22985525:152484 +k1,21696:22820550,22985525:152485 +k1,21696:24362397,22985525:152484 +k1,21696:26326296,22985525:152484 +k1,21696:27094818,22985525:152484 +k1,21696:28266388,22985525:152485 +k1,21696:30072345,22985525:152484 +k1,21696:32583029,22985525:0 +) +(1,21697:6630773,23850605:25952256,513147,134348 +k1,21696:9150763,23850605:185598 +k1,21696:12630856,23850605:185598 +k1,21696:13577981,23850605:185597 +k1,21696:15197507,23850605:185598 +k1,21696:15971618,23850605:185598 +k1,21696:17229385,23850605:185598 +k1,21696:19150376,23850605:185598 +k1,21696:22098316,23850605:185597 +k1,21696:26564726,23850605:185598 +k1,21696:29385527,23850605:185598 +k1,21696:32583029,23850605:0 +) +(1,21697:6630773,24715685:25952256,513147,126483 +k1,21696:8216442,24715685:191063 +k1,21696:9066797,24715685:191063 +k1,21696:10350346,24715685:191064 +k1,21696:11732854,24715685:191063 +k1,21696:16173271,24715685:191063 +k1,21696:19484503,24715685:191063 +k1,21696:20291605,24715685:191064 +k1,21696:21916596,24715685:191063 +k1,21696:22522494,24715685:191055 +k1,21696:24153383,24715685:191063 +k1,21696:24995875,24715685:191064 +k1,21696:28176690,24715685:191063 +k1,21696:31391584,24715685:191063 +k1,21696:32583029,24715685:0 +) +(1,21697:6630773,25580765:25952256,513147,134348 +k1,21696:10161635,25580765:221949 +k1,21696:11951204,25580765:221948 +k1,21696:13562516,25580765:221949 +k1,21696:17192336,25580765:221948 +k1,21696:19103803,25580765:221949 +k1,21696:21017891,25580765:221948 +k1,21696:24969494,25580765:221949 +k1,21696:28101896,25580765:221948 +k1,21696:31313597,25580765:221949 +k1,21697:32583029,25580765:0 +) +(1,21697:6630773,26445845:25952256,513147,134348 +k1,21696:10006592,26445845:182905 +k1,21696:12006154,26445845:182904 +k1,21696:15918713,26445845:182905 +k1,21696:19012072,26445845:182905 +k1,21696:20910710,26445845:182905 +k1,21696:21551711,26445845:182904 +k1,21696:24364576,26445845:182905 +k1,21696:25198909,26445845:182905 +k1,21696:27563508,26445845:182905 +k1,21696:28937857,26445845:182904 +k1,21696:31193666,26445845:182905 +k1,21696:32583029,26445845:0 +) +(1,21697:6630773,27310925:25952256,513147,126483 +k1,21696:8903565,27310925:234622 +k1,21696:9754224,27310925:234621 +k1,21696:10971886,27310925:234622 +k1,21696:13717191,27310925:234621 +k1,21696:15018084,27310925:234622 +k1,21696:18547200,27310925:234621 +k1,21696:19543350,27310925:234622 +k1,21696:21211900,27310925:234622 +k1,21696:21861329,27310925:234586 +k1,21696:25295418,27310925:234621 +k1,21696:27247083,27310925:234622 +k1,21696:28140996,27310925:234621 +k1,21696:30072345,27310925:234622 +k1,21696:32583029,27310925:0 +) +(1,21697:6630773,28176005:25952256,513147,134348 +k1,21696:7828509,28176005:206176 +k1,21696:11905241,28176005:206176 +k1,21696:14508725,28176005:206177 +k1,21696:16404419,28176005:206176 +k1,21696:18642866,28176005:206176 +k1,21696:19840602,28176005:206176 +k1,21696:20662816,28176005:206176 +k1,21696:24522625,28176005:206177 +k1,21696:25994957,28176005:206176 +k1,21696:29066367,28176005:206176 +k1,21696:32583029,28176005:0 +) +(1,21697:6630773,29041085:25952256,513147,134348 +k1,21696:8661078,29041085:182190 +k1,21696:11970646,29041085:182190 +k1,21696:12812129,29041085:182191 +k1,21696:14383682,29041085:182190 +k1,21696:15830717,29041085:182190 +k1,21696:17580528,29041085:182190 +k1,21696:19738628,29041085:182190 +k1,21696:23721906,29041085:182190 +k1,21696:24895657,29041085:182191 +k1,21696:28163937,29041085:182190 +k1,21696:29631943,29041085:182190 +k1,21697:32583029,29041085:0 +k1,21697:32583029,29041085:0 +) +(1,21698:6630773,31872245:25952256,32768,229376 +(1,21698:6630773,31872245:0,32768,229376 +(1,21698:6630773,31872245:5505024,32768,229376 +r1,21734:12135797,31872245:5505024,262144,229376 +) +k1,21698:6630773,31872245:-5505024 +) +(1,21698:6630773,31872245:25952256,32768,0 +r1,21734:32583029,31872245:25952256,32768,0 +) +) +(1,21698:6630773,33504097:25952256,606339,161218 +(1,21698:6630773,33504097:2464678,582746,14155 +g1,21698:6630773,33504097 +g1,21698:9095451,33504097 +) +g1,21698:12963124,33504097 +g1,21698:15089636,33504097 +g1,21698:16104920,33504097 +g1,21698:17838216,33504097 +k1,21698:32583029,33504097:11743788 +g1,21698:32583029,33504097 +) +v1,21701:6630773,34582168:0,393216,0 +(1,21705:6630773,34922851:25952256,733899,196608 +g1,21705:6630773,34922851 +g1,21705:6630773,34922851 +g1,21705:6434165,34922851 +(1,21705:6434165,34922851:0,733899,196608 +r1,21734:32779637,34922851:26345472,930507,196608 +k1,21705:6434165,34922851:-26345472 +) +(1,21705:6434165,34922851:26345472,733899,196608 +[1,21705:6630773,34922851:25952256,537291,0 +(1,21703:6630773,34809999:25952256,424439,112852 +(1,21702:6630773,34809999:0,0,0 +g1,21702:6630773,34809999 +g1,21702:6630773,34809999 +g1,21702:6303093,34809999 +(1,21702:6303093,34809999:0,0,0 +) +g1,21702:6630773,34809999 +) +k1,21703:6630773,34809999:0 +h1,21703:20572838,34809999:0,0,0 +k1,21703:32583029,34809999:12010191 +g1,21703:32583029,34809999 +) +] +) +g1,21705:32583029,34922851 +g1,21705:6630773,34922851 +g1,21705:6630773,34922851 +g1,21705:32583029,34922851 +g1,21705:32583029,34922851 +) +h1,21705:6630773,35119459:0,0,0 +(1,21709:6630773,35984539:25952256,513147,126483 +h1,21708:6630773,35984539:983040,0,0 +k1,21708:8614266,35984539:171423 +k1,21708:9903734,35984539:171424 +k1,21708:11094242,35984539:171423 +k1,21708:14257384,35984539:171423 +k1,21708:17187217,35984539:171423 +k1,21708:17974679,35984539:171424 +k1,21708:19349343,35984539:171423 +k1,21708:22112060,35984539:171423 +k1,21708:23453957,35984539:171424 +k1,21708:25155646,35984539:171423 +k1,21708:26633202,35984539:171423 +k1,21708:27456053,35984539:171423 +k1,21708:29003733,35984539:171424 +k1,21708:30867296,35984539:171423 +k1,21709:32583029,35984539:0 +) +(1,21709:6630773,36849619:25952256,513147,134348 +k1,21708:8257991,36849619:219505 +k1,21708:10045116,36849619:219504 +k1,21708:11283706,36849619:219505 +k1,21708:13603639,36849619:219504 +k1,21708:15055221,36849619:219505 +k1,21708:17553412,36849619:219504 +h1,21708:18524000,36849619:0,0,0 +k1,21708:18743505,36849619:219505 +k1,21708:19772379,36849619:219504 +k1,21708:21490037,36849619:219505 +h1,21708:22685414,36849619:0,0,0 +k1,21708:22904918,36849619:219504 +k1,21708:24072074,36849619:219505 +k1,21708:26409046,36849619:219504 +k1,21708:27437921,36849619:219505 +k1,21708:28676510,36849619:219504 +k1,21708:29988500,36849619:219505 +k1,21708:30867296,36849619:219504 +k1,21709:32583029,36849619:0 +) +(1,21709:6630773,37714699:25952256,505283,134348 +k1,21709:32583029,37714699:24163778 +g1,21709:32583029,37714699 +) +v1,21711:6630773,38399554:0,393216,0 +(1,21734:6630773,45510161:25952256,7503823,196608 +g1,21734:6630773,45510161 +g1,21734:6630773,45510161 +g1,21734:6434165,45510161 +(1,21734:6434165,45510161:0,7503823,196608 +r1,21734:32779637,45510161:26345472,7700431,196608 +k1,21734:6434165,45510161:-26345472 +) +(1,21734:6434165,45510161:26345472,7503823,196608 +[1,21734:6630773,45510161:25952256,7307215,0 +(1,21713:6630773,38627385:25952256,424439,106246 +(1,21712:6630773,38627385:0,0,0 +g1,21712:6630773,38627385 +g1,21712:6630773,38627385 +g1,21712:6303093,38627385 +(1,21712:6303093,38627385:0,0,0 +) +g1,21712:6630773,38627385 +) +k1,21713:6630773,38627385:0 +h1,21713:12937898,38627385:0,0,0 +k1,21713:32583030,38627385:19645132 +g1,21713:32583030,38627385 +) +(1,21714:6630773,39312240:25952256,424439,106246 +h1,21714:6630773,39312240:0,0,0 +k1,21714:6630773,39312240:0 +h1,21714:11610082,39312240:0,0,0 +k1,21714:32583030,39312240:20972948 +g1,21714:32583030,39312240 +) +(1,21715:6630773,39997095:25952256,424439,106246 +h1,21715:6630773,39997095:0,0,0 +k1,21715:6630773,39997095:0 +h1,21715:11278129,39997095:0,0,0 +k1,21715:32583029,39997095:21304900 +g1,21715:32583029,39997095 +) +(1,21716:6630773,40681950:25952256,424439,106246 +h1,21716:6630773,40681950:0,0,0 +k1,21716:6630773,40681950:0 +h1,21716:11278129,40681950:0,0,0 +k1,21716:32583029,40681950:21304900 +g1,21716:32583029,40681950 +) +(1,21717:6630773,41366805:25952256,424439,112852 +h1,21717:6630773,41366805:0,0,0 +k1,21717:6630773,41366805:0 +h1,21717:11942036,41366805:0,0,0 +k1,21717:32583028,41366805:20640992 +g1,21717:32583028,41366805 +) +(1,21718:6630773,42051660:25952256,424439,106246 +h1,21718:6630773,42051660:0,0,0 +k1,21718:6630773,42051660:0 +h1,21718:11278129,42051660:0,0,0 +k1,21718:32583029,42051660:21304900 +g1,21718:32583029,42051660 +) +(1,21719:6630773,42736515:25952256,424439,106246 +h1,21719:6630773,42736515:0,0,0 +k1,21719:6630773,42736515:0 +h1,21719:11278129,42736515:0,0,0 +k1,21719:32583029,42736515:21304900 +g1,21719:32583029,42736515 +) +(1,21720:6630773,43421370:25952256,424439,106246 +h1,21720:6630773,43421370:0,0,0 +k1,21720:6630773,43421370:0 +h1,21720:11278129,43421370:0,0,0 +k1,21720:32583029,43421370:21304900 +g1,21720:32583029,43421370 +) +(1,21721:6630773,44106225:25952256,424439,106246 +h1,21721:6630773,44106225:0,0,0 +k1,21721:6630773,44106225:0 +h1,21721:11610082,44106225:0,0,0 +k1,21721:32583030,44106225:20972948 +g1,21721:32583030,44106225 +) +(1,21722:6630773,44791080:25952256,424439,106246 +h1,21722:6630773,44791080:0,0,0 +k1,21722:6630773,44791080:0 +h1,21722:10946175,44791080:0,0,0 +k1,21722:32583029,44791080:21636854 +g1,21722:32583029,44791080 +) +(1,21723:6630773,45475935:25952256,424439,106246 +h1,21723:6630773,45475935:0,0,0 +k1,21723:6630773,45475935:0 +h1,21723:11942036,45475935:0,0,0 +k1,21723:32583028,45475935:20640992 +g1,21723:32583028,45475935 +) +] +) +g1,21734:32583029,45510161 +g1,21734:6630773,45510161 +g1,21734:6630773,45510161 +g1,21734:32583029,45510161 +g1,21734:32583029,45510161 +) +] +(1,21734:32583029,45706769:0,0,0 +g1,21734:32583029,45706769 +) +) +] +(1,21734:6630773,47279633:25952256,0,0 +h1,21734:6630773,47279633:25952256,0,0 +) +] +(1,21734:4262630,4025873:0,0,0 +[1,21734:-473656,4025873:0,0,0 +(1,21734:-473656,-710413:0,0,0 +(1,21734:-473656,-710413:0,0,0 +g1,21734:-473656,-710413 +) +g1,21734:-473656,-710413 +) +] ) ] -g1,21756:6630773,4812305 -g1,21756:6630773,4812305 -g1,21756:7909380,4812305 -g1,21756:10167095,4812305 -g1,21756:11576774,4812305 -g1,21756:15078362,4812305 -k1,21756:31387652,4812305:16309290 -) -) -] -[1,21756:6630773,45706769:25952256,40108032,0 -(1,21756:6630773,45706769:25952256,40108032,0 -(1,21756:6630773,45706769:0,0,0 -g1,21756:6630773,45706769 +!21291 +}375 +Input:3557:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3558:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3559:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3560:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3561:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3562:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!576 +{376 +[1,21780:4262630,47279633:28320399,43253760,0 +(1,21780:4262630,4025873:0,0,0 +[1,21780:-473656,4025873:0,0,0 +(1,21780:-473656,-710413:0,0,0 +(1,21780:-473656,-644877:0,0,0 +k1,21780:-473656,-644877:-65536 ) -[1,21756:6630773,45706769:25952256,40108032,0 -v1,21651:6630773,6254097:0,393216,0 -(1,21651:6630773,8542561:25952256,2681680,196608 -g1,21651:6630773,8542561 -g1,21651:6630773,8542561 -g1,21651:6434165,8542561 -(1,21651:6434165,8542561:0,2681680,196608 -r1,21756:32779637,8542561:26345472,2878288,196608 -k1,21651:6434165,8542561:-26345472 +(1,21780:-473656,4736287:0,0,0 +k1,21780:-473656,4736287:5209943 ) -(1,21651:6434165,8542561:26345472,2681680,196608 -[1,21651:6630773,8542561:25952256,2485072,0 -(1,21646:6630773,6436549:25952256,379060,6290 -(1,21645:6630773,6436549:0,0,0 -g1,21645:6630773,6436549 -g1,21645:6630773,6436549 -g1,21645:6303093,6436549 -(1,21645:6303093,6436549:0,0,0 -) -g1,21645:6630773,6436549 -) -g1,21646:7263065,6436549 -g1,21646:8527648,6436549 -k1,21646:8527648,6436549:0 -h1,21646:9476085,6436549:0,0,0 -k1,21646:32583029,6436549:23106944 -g1,21646:32583029,6436549 -) -(1,21647:6630773,7102727:25952256,404226,6290 -h1,21647:6630773,7102727:0,0,0 -h1,21647:8211501,7102727:0,0,0 -k1,21647:32583029,7102727:24371528 -g1,21647:32583029,7102727 -) -(1,21648:6630773,7768905:25952256,404226,76021 -h1,21648:6630773,7768905:0,0,0 -k1,21648:6630773,7768905:0 -h1,21648:10424521,7768905:0,0,0 -k1,21648:32583029,7768905:22158508 -g1,21648:32583029,7768905 -) -(1,21649:6630773,8435083:25952256,404226,107478 -h1,21649:6630773,8435083:0,0,0 -k1,21649:6630773,8435083:0 -h1,21649:8843792,8435083:0,0,0 -k1,21649:32583028,8435083:23739236 -g1,21649:32583028,8435083 -) -] -) -g1,21651:32583029,8542561 -g1,21651:6630773,8542561 -g1,21651:6630773,8542561 -g1,21651:32583029,8542561 -g1,21651:32583029,8542561 -) -h1,21651:6630773,8739169:0,0,0 -(1,21657:6630773,10104945:25952256,513147,126483 -h1,21656:6630773,10104945:983040,0,0 -k1,21656:8852717,10104945:285355 -k1,21656:10242353,10104945:285354 -k1,21656:11813524,10104945:285355 -k1,21656:14122630,10104945:285354 -k1,21656:15731812,10104945:285355 -k1,21656:16676459,10104945:285355 -k1,21656:18275155,10104945:285354 -k1,21656:20770384,10104945:285355 -k1,21656:24465576,10104945:285354 -k1,21656:25526222,10104945:285355 -k1,21656:27156375,10104945:285354 -k1,21656:29899985,10104945:285355 -k1,21656:32583029,10104945:0 -) -(1,21657:6630773,10946433:25952256,485622,11795 -g1,21656:8862929,10946433 -k1,21657:32583029,10946433:22351708 -g1,21657:32583029,10946433 -) -v1,21659:6630773,12136899:0,393216,0 -(1,21689:6630773,24421564:25952256,12677881,196608 -g1,21689:6630773,24421564 -g1,21689:6630773,24421564 -g1,21689:6434165,24421564 -(1,21689:6434165,24421564:0,12677881,196608 -r1,21756:32779637,24421564:26345472,12874489,196608 -k1,21689:6434165,24421564:-26345472 -) -(1,21689:6434165,24421564:26345472,12677881,196608 -[1,21689:6630773,24421564:25952256,12481273,0 -(1,21661:6630773,12350809:25952256,410518,76021 -(1,21660:6630773,12350809:0,0,0 -g1,21660:6630773,12350809 -g1,21660:6630773,12350809 -g1,21660:6303093,12350809 -(1,21660:6303093,12350809:0,0,0 -) -g1,21660:6630773,12350809 -) -k1,21661:6630773,12350809:0 -k1,21661:6630773,12350809:0 -h1,21661:12321396,12350809:0,0,0 -k1,21661:32583028,12350809:20261632 -g1,21661:32583028,12350809 -) -(1,21670:6630773,13016987:25952256,404226,101187 -(1,21663:6630773,13016987:0,0,0 -g1,21663:6630773,13016987 -g1,21663:6630773,13016987 -g1,21663:6303093,13016987 -(1,21663:6303093,13016987:0,0,0 -) -g1,21663:6630773,13016987 -) -g1,21670:7579210,13016987 -g1,21670:8843793,13016987 -h1,21670:12637541,13016987:0,0,0 -k1,21670:32583029,13016987:19945488 -g1,21670:32583029,13016987 -) -(1,21670:6630773,13683165:25952256,404226,107478 -h1,21670:6630773,13683165:0,0,0 -g1,21670:7579210,13683165 -g1,21670:8843793,13683165 -h1,21670:13269833,13683165:0,0,0 -k1,21670:32583029,13683165:19313196 -g1,21670:32583029,13683165 -) -(1,21670:6630773,14349343:25952256,410518,101187 -h1,21670:6630773,14349343:0,0,0 -g1,21670:7579210,14349343 -g1,21670:8843793,14349343 -k1,21670:8843793,14349343:0 -h1,21670:21173474,14349343:0,0,0 -k1,21670:32583029,14349343:11409555 -g1,21670:32583029,14349343 -) -(1,21670:6630773,15015521:25952256,410518,101187 -h1,21670:6630773,15015521:0,0,0 -g1,21670:7579210,15015521 -g1,21670:8843793,15015521 -k1,21670:8843793,15015521:0 -h1,21670:21805765,15015521:0,0,0 -k1,21670:32583029,15015521:10777264 -g1,21670:32583029,15015521 -) -(1,21670:6630773,15681699:25952256,410518,101187 -h1,21670:6630773,15681699:0,0,0 -g1,21670:7579210,15681699 -g1,21670:8843793,15681699 -k1,21670:8843793,15681699:0 -h1,21670:21805765,15681699:0,0,0 -k1,21670:32583029,15681699:10777264 -g1,21670:32583029,15681699 -) -(1,21670:6630773,16347877:25952256,410518,101187 -h1,21670:6630773,16347877:0,0,0 -g1,21670:7579210,16347877 -g1,21670:8843793,16347877 -k1,21670:8843793,16347877:0 -h1,21670:18328163,16347877:0,0,0 -k1,21670:32583029,16347877:14254866 -g1,21670:32583029,16347877 -) -(1,21672:6630773,17669415:25952256,404226,76021 -(1,21671:6630773,17669415:0,0,0 -g1,21671:6630773,17669415 -g1,21671:6630773,17669415 -g1,21671:6303093,17669415 -(1,21671:6303093,17669415:0,0,0 -) -g1,21671:6630773,17669415 -) -k1,21672:6630773,17669415:0 -k1,21672:6630773,17669415:0 -h1,21672:12005250,17669415:0,0,0 -k1,21672:32583030,17669415:20577780 -g1,21672:32583030,17669415 -) -(1,21677:6630773,18335593:25952256,410518,107478 -(1,21674:6630773,18335593:0,0,0 -g1,21674:6630773,18335593 -g1,21674:6630773,18335593 -g1,21674:6303093,18335593 -(1,21674:6303093,18335593:0,0,0 -) -g1,21674:6630773,18335593 -) -g1,21677:7579210,18335593 -g1,21677:8843793,18335593 -g1,21677:10108376,18335593 -g1,21677:10424522,18335593 -g1,21677:10740668,18335593 -g1,21677:11056814,18335593 -g1,21677:11372960,18335593 -g1,21677:11689106,18335593 -g1,21677:12005252,18335593 -g1,21677:12321398,18335593 -g1,21677:12637544,18335593 -g1,21677:12953690,18335593 -g1,21677:13269836,18335593 -g1,21677:13585982,18335593 -g1,21677:13902128,18335593 -g1,21677:14218274,18335593 -g1,21677:14534420,18335593 -g1,21677:14850566,18335593 -g1,21677:17695877,18335593 -g1,21677:18012023,18335593 -g1,21677:18328169,18335593 -g1,21677:18644315,18335593 -g1,21677:18960461,18335593 -g1,21677:19276607,18335593 -g1,21677:19592753,18335593 -g1,21677:19908899,18335593 -g1,21677:20225045,18335593 -g1,21677:20541191,18335593 -g1,21677:20857337,18335593 -g1,21677:25599523,18335593 -g1,21677:25915669,18335593 -g1,21677:26231815,18335593 -g1,21677:26547961,18335593 -g1,21677:26864107,18335593 -h1,21677:30974001,18335593:0,0,0 -k1,21677:32583029,18335593:1609028 -g1,21677:32583029,18335593 -) -(1,21677:6630773,19001771:25952256,410518,107478 -h1,21677:6630773,19001771:0,0,0 -g1,21677:7579210,19001771 -g1,21677:8843793,19001771 -g1,21677:13269833,19001771 -g1,21677:13585979,19001771 -g1,21677:13902125,19001771 -g1,21677:14218271,19001771 -g1,21677:14534417,19001771 -g1,21677:14850563,19001771 -h1,21677:20541185,19001771:0,0,0 -k1,21677:32583029,19001771:12041844 -g1,21677:32583029,19001771 -) -(1,21679:6630773,20323309:25952256,404226,76021 -(1,21678:6630773,20323309:0,0,0 -g1,21678:6630773,20323309 -g1,21678:6630773,20323309 -g1,21678:6303093,20323309 -(1,21678:6303093,20323309:0,0,0 -) -g1,21678:6630773,20323309 -) -k1,21679:6630773,20323309:0 -k1,21679:6630773,20323309:0 -h1,21679:10108376,20323309:0,0,0 -k1,21679:32583028,20323309:22474652 -g1,21679:32583028,20323309 -) -(1,21688:6630773,20989487:25952256,404226,101187 -(1,21681:6630773,20989487:0,0,0 -g1,21681:6630773,20989487 -g1,21681:6630773,20989487 -g1,21681:6303093,20989487 -(1,21681:6303093,20989487:0,0,0 -) -g1,21681:6630773,20989487 -) -g1,21688:7579210,20989487 -g1,21688:8843793,20989487 -h1,21688:12637541,20989487:0,0,0 -k1,21688:32583029,20989487:19945488 -g1,21688:32583029,20989487 -) -(1,21688:6630773,21655665:25952256,404226,107478 -h1,21688:6630773,21655665:0,0,0 -g1,21688:7579210,21655665 -g1,21688:8843793,21655665 -h1,21688:13269833,21655665:0,0,0 -k1,21688:32583029,21655665:19313196 -g1,21688:32583029,21655665 -) -(1,21688:6630773,22321843:25952256,410518,101187 -h1,21688:6630773,22321843:0,0,0 -g1,21688:7579210,22321843 -g1,21688:8843793,22321843 -k1,21688:8843793,22321843:0 -h1,21688:21173474,22321843:0,0,0 -k1,21688:32583029,22321843:11409555 -g1,21688:32583029,22321843 -) -(1,21688:6630773,22988021:25952256,410518,101187 -h1,21688:6630773,22988021:0,0,0 -g1,21688:7579210,22988021 -g1,21688:8843793,22988021 -k1,21688:8843793,22988021:0 -h1,21688:21805765,22988021:0,0,0 -k1,21688:32583029,22988021:10777264 -g1,21688:32583029,22988021 -) -(1,21688:6630773,23654199:25952256,410518,101187 -h1,21688:6630773,23654199:0,0,0 -g1,21688:7579210,23654199 -g1,21688:8843793,23654199 -k1,21688:8843793,23654199:0 -h1,21688:21805765,23654199:0,0,0 -k1,21688:32583029,23654199:10777264 -g1,21688:32583029,23654199 -) -(1,21688:6630773,24320377:25952256,410518,101187 -h1,21688:6630773,24320377:0,0,0 -g1,21688:7579210,24320377 -g1,21688:8843793,24320377 -k1,21688:8843793,24320377:0 -h1,21688:18328163,24320377:0,0,0 -k1,21688:32583029,24320377:14254866 -g1,21688:32583029,24320377 -) -] -) -g1,21689:32583029,24421564 -g1,21689:6630773,24421564 -g1,21689:6630773,24421564 -g1,21689:32583029,24421564 -g1,21689:32583029,24421564 -) -h1,21689:6630773,24618172:0,0,0 -v1,21693:6630773,26508236:0,393216,0 -(1,21694:6630773,30433209:25952256,4318189,0 -g1,21694:6630773,30433209 -g1,21694:6303093,30433209 -r1,21756:6401397,30433209:98304,4318189,0 -g1,21694:6600626,30433209 -g1,21694:6797234,30433209 -[1,21694:6797234,30433209:25785795,4318189,0 -(1,21694:6797234,26940774:25785795,825754,196608 -(1,21693:6797234,26940774:0,825754,196608 -r1,21756:7890375,26940774:1093141,1022362,196608 -k1,21693:6797234,26940774:-1093141 -) -(1,21693:6797234,26940774:1093141,825754,196608 -) -k1,21693:8118042,26940774:227667 -k1,21693:9844260,26940774:327680 -k1,21693:11268615,26940774:227668 -k1,21693:13761862,26940774:227667 -k1,21693:17061857,26940774:227667 -k1,21693:18237175,26940774:227667 -k1,21693:21745575,26940774:227668 -(1,21693:21745575,26940774:0,452978,115847 -r1,21756:23158976,26940774:1413401,568825,115847 -k1,21693:21745575,26940774:-1413401 -) -(1,21693:21745575,26940774:1413401,452978,115847 -k1,21693:21745575,26940774:3277 -h1,21693:23155699,26940774:0,411205,112570 -) -k1,21693:23386643,26940774:227667 -k1,21693:24145807,26940774:227667 -k1,21693:25392559,26940774:227667 -k1,21693:27964450,26940774:227668 -k1,21693:30778823,26940774:227667 -k1,21694:32583029,26940774:0 -) -(1,21694:6797234,27782262:25785795,513147,126483 -k1,21693:8546806,27782262:275012 -k1,21693:10707945,27782262:275013 -k1,21693:14045454,27782262:275012 -k1,21693:15946414,27782262:275012 -k1,21693:17412872,27782262:275013 -k1,21693:19448836,27782262:275012 -k1,21693:22676246,27782262:275013 -k1,21693:23712786,27782262:275012 -(1,21693:23712786,27782262:0,452978,115847 -r1,21756:24774475,27782262:1061689,568825,115847 -k1,21693:23712786,27782262:-1061689 -) -(1,21693:23712786,27782262:1061689,452978,115847 -k1,21693:23712786,27782262:3277 -h1,21693:24771198,27782262:0,411205,112570 -) -k1,21693:25223157,27782262:275012 -k1,21693:28417144,27782262:275013 -k1,21693:31298523,27782262:275012 -k1,21693:32583029,27782262:0 -) -(1,21694:6797234,28623750:25785795,513147,134348 -k1,21693:8179792,28623750:179317 -k1,21693:8890605,28623750:179316 -k1,21693:11222124,28623750:179317 -k1,21693:12420525,28623750:179316 -k1,21693:14865422,28623750:179317 -k1,21693:15806266,28623750:179316 -k1,21693:18075526,28623750:179317 -k1,21693:19273927,28623750:179316 -k1,21693:22479041,28623750:179317 -k1,21693:24052308,28623750:179316 -k1,21693:25002328,28623750:179317 -k1,21693:27512760,28623750:179316 -k1,21693:30938075,28623750:179317 -k1,21693:32583029,28623750:0 -) -(1,21694:6797234,29465238:25785795,513147,134348 -k1,21693:8385444,29465238:211299 -k1,21693:9939576,29465238:211299 -k1,21693:11544826,29465238:211299 -k1,21693:12775210,29465238:211299 -k1,21693:16012306,29465238:211299 -k1,21693:18120217,29465238:211299 -k1,21693:20033486,29465238:211299 -k1,21693:22735808,29465238:211299 -k1,21693:24138552,29465238:211299 -k1,21693:28306915,29465238:211299 -k1,21693:30296861,29465238:211299 -k1,21693:31124198,29465238:211299 -k1,21693:32583029,29465238:0 -) -(1,21694:6797234,30306726:25785795,426639,126483 -k1,21694:32583028,30306726:22535864 -g1,21694:32583028,30306726 -) -] -g1,21694:32583029,30433209 -) -h1,21694:6630773,30433209:0,0,0 -v1,21697:6630773,31798985:0,393216,0 -(1,21698:6630773,34048847:25952256,2643078,0 -g1,21698:6630773,34048847 -g1,21698:6303093,34048847 -r1,21756:6401397,34048847:98304,2643078,0 -g1,21698:6600626,34048847 -g1,21698:6797234,34048847 -[1,21698:6797234,34048847:25785795,2643078,0 -(1,21698:6797234,32231523:25785795,825754,196608 -(1,21697:6797234,32231523:0,825754,196608 -r1,21756:7890375,32231523:1093141,1022362,196608 -k1,21697:6797234,32231523:-1093141 -) -(1,21697:6797234,32231523:1093141,825754,196608 -) -k1,21697:8149675,32231523:259300 -k1,21697:9875893,32231523:327680 -k1,21697:11284039,32231523:259300 -k1,21697:14824071,32231523:259300 -(1,21697:14824071,32231523:0,459977,115847 -r1,21756:18347743,32231523:3523672,575824,115847 -k1,21697:14824071,32231523:-3523672 -) -(1,21697:14824071,32231523:3523672,459977,115847 -k1,21697:14824071,32231523:3277 -h1,21697:18344466,32231523:0,411205,112570 -) -k1,21697:18607043,32231523:259300 -k1,21697:20260294,32231523:259300 -(1,21697:20260294,32231523:0,459977,115847 -r1,21756:24487390,32231523:4227096,575824,115847 -k1,21697:20260294,32231523:-4227096 -) -(1,21697:20260294,32231523:4227096,459977,115847 -k1,21697:20260294,32231523:3277 -h1,21697:24484113,32231523:0,411205,112570 -) -k1,21697:24746691,32231523:259301 -k1,21697:25657419,32231523:259300 -k1,21697:27940471,32231523:259300 -k1,21697:30055751,32231523:259300 -k1,21697:30670911,32231523:259300 -k1,21697:31923737,32231523:259300 -k1,21697:32583029,32231523:0 -) -(1,21698:6797234,33073011:25785795,513147,134348 -k1,21697:7972294,33073011:192020 -k1,21697:9942962,33073011:192021 -k1,21697:10817867,33073011:192020 -k1,21697:12401872,33073011:192020 -k1,21697:13576932,33073011:192020 -k1,21697:16010940,33073011:192021 -k1,21697:19169775,33073011:192020 -k1,21697:22805057,33073011:192020 -k1,21697:24327459,33073011:192021 -k1,21697:25538564,33073011:192020 -k1,21697:28509311,33073011:192020 -k1,21697:29694857,33073011:192020 -k1,21697:30546170,33073011:192021 -k1,21697:32051532,33073011:192020 -k1,21697:32583029,33073011:0 -) -(1,21698:6797234,33914499:25785795,513147,134348 -g1,21697:9543847,33914499 -g1,21697:10504604,33914499 -g1,21697:11722918,33914499 -g1,21697:14994475,33914499 -g1,21697:17398991,33914499 -g1,21697:18249648,33914499 -(1,21697:18249648,33914499:0,452978,115847 -r1,21756:21421608,33914499:3171960,568825,115847 -k1,21697:18249648,33914499:-3171960 -) -(1,21697:18249648,33914499:3171960,452978,115847 -k1,21697:18249648,33914499:3277 -h1,21697:21418331,33914499:0,411205,112570 -) -k1,21698:32583029,33914499:10987751 -g1,21698:32583029,33914499 -) -] -g1,21698:32583029,34048847 -) -h1,21698:6630773,34048847:0,0,0 -v1,21701:6630773,35414623:0,393216,0 -(1,21702:6630773,37656620:25952256,2635213,0 -g1,21702:6630773,37656620 -g1,21702:6303093,37656620 -r1,21756:6401397,37656620:98304,2635213,0 -g1,21702:6600626,37656620 -g1,21702:6797234,37656620 -[1,21702:6797234,37656620:25785795,2635213,0 -(1,21702:6797234,35847161:25785795,825754,196608 -(1,21701:6797234,35847161:0,825754,196608 -r1,21756:7890375,35847161:1093141,1022362,196608 -k1,21701:6797234,35847161:-1093141 -) -(1,21701:6797234,35847161:1093141,825754,196608 -) -k1,21701:8140859,35847161:250484 -k1,21701:9867077,35847161:327680 -k1,21701:12999833,35847161:250483 -k1,21701:14269402,35847161:250484 -k1,21701:17279607,35847161:250484 -k1,21701:18189382,35847161:250483 -k1,21701:21465663,35847161:250484 -(1,21701:21465663,35847161:0,452978,115847 -r1,21756:23230776,35847161:1765113,568825,115847 -k1,21701:21465663,35847161:-1765113 -) -(1,21701:21465663,35847161:1765113,452978,115847 -k1,21701:21465663,35847161:3277 -h1,21701:23227499,35847161:0,411205,112570 -) -k1,21701:23481259,35847161:250483 -k1,21701:24923188,35847161:250484 -(1,21701:24923188,35847161:0,452978,115847 -r1,21756:28798572,35847161:3875384,568825,115847 -k1,21701:24923188,35847161:-3875384 -) -(1,21701:24923188,35847161:3875384,452978,115847 -k1,21701:24923188,35847161:3277 -h1,21701:28795295,35847161:0,411205,112570 -) -k1,21701:29222726,35847161:250484 -k1,21701:30664654,35847161:250483 -k1,21701:31821501,35847161:250484 -k1,21701:32583029,35847161:0 -) -(1,21702:6797234,36688649:25785795,513147,134348 -k1,21701:10239872,36688649:154697 -k1,21701:11413654,36688649:154697 -k1,21701:13833931,36688649:154697 -k1,21701:17391256,36688649:154696 -k1,21701:18213109,36688649:154697 -(1,21701:18213109,36688649:0,452978,115847 -r1,21756:22088493,36688649:3875384,568825,115847 -k1,21701:18213109,36688649:-3875384 -) -(1,21701:18213109,36688649:3875384,452978,115847 -k1,21701:18213109,36688649:3277 -h1,21701:22085216,36688649:0,411205,112570 -) -k1,21701:22416860,36688649:154697 -k1,21701:23222985,36688649:154697 -k1,21701:24356135,36688649:154697 -k1,21701:25529917,36688649:154697 -k1,21701:26784307,36688649:154696 -k1,21701:27590432,36688649:154697 -k1,21701:29755774,36688649:154697 -k1,21701:30929556,36688649:154697 -k1,21701:32583029,36688649:0 -) -(1,21702:6797234,37530137:25785795,513147,126483 -g1,21701:9155219,37530137 -g1,21701:10040610,37530137 -(1,21701:10040610,37530137:0,452978,115847 -r1,21756:11805723,37530137:1765113,568825,115847 -k1,21701:10040610,37530137:-1765113 -) -(1,21701:10040610,37530137:1765113,452978,115847 -k1,21701:10040610,37530137:3277 -h1,21701:11802446,37530137:0,411205,112570 -) -g1,21701:12004952,37530137 -g1,21701:13697091,37530137 -g1,21701:14657848,37530137 -k1,21702:32583029,37530137:15485931 -g1,21702:32583029,37530137 -) -] -g1,21702:32583029,37656620 -) -h1,21702:6630773,37656620:0,0,0 -(1,21706:6630773,39022396:25952256,513147,134348 -h1,21705:6630773,39022396:983040,0,0 -k1,21705:9249974,39022396:203544 -k1,21705:9868357,39022396:203540 -k1,21705:12832277,39022396:203544 -k1,21705:15267322,39022396:203544 -k1,21705:18496663,39022396:203544 -k1,21705:19647858,39022396:203544 -k1,21705:22534446,39022396:203544 -k1,21705:25324697,39022396:203545 -k1,21705:26922192,39022396:203544 -k1,21705:28612748,39022396:203544 -k1,21705:30007737,39022396:203544 -k1,21705:31591469,39022396:203544 -k1,21705:32583029,39022396:0 -) -(1,21706:6630773,39863884:25952256,513147,134348 -k1,21705:8610714,39863884:218333 -k1,21705:9445085,39863884:218333 -k1,21705:10682502,39863884:218332 -k1,21705:12288888,39863884:218333 -k1,21705:14005374,39863884:218333 -k1,21705:15171358,39863884:218333 -(1,21705:15171358,39863884:0,459977,115847 -r1,21756:16936471,39863884:1765113,575824,115847 -k1,21705:15171358,39863884:-1765113 -) -(1,21705:15171358,39863884:1765113,459977,115847 -k1,21705:15171358,39863884:3277 -h1,21705:16933194,39863884:0,411205,112570 -) -k1,21705:17154803,39863884:218332 -k1,21705:18564581,39863884:218333 -k1,21705:19398952,39863884:218333 -k1,21705:22810199,39863884:218333 -k1,21705:24416584,39863884:218332 -k1,21705:26637042,39863884:218333 -k1,21705:28004221,39863884:218333 -(1,21705:28004221,39863884:0,459977,115847 -r1,21756:32583029,39863884:4578808,575824,115847 -k1,21705:28004221,39863884:-4578808 -) -(1,21705:28004221,39863884:4578808,459977,115847 -k1,21705:28004221,39863884:3277 -h1,21705:32579752,39863884:0,411205,112570 -) -k1,21705:32583029,39863884:0 -) -(1,21706:6630773,40705372:25952256,513147,126483 -g1,21705:7481430,40705372 -g1,21705:9711620,40705372 -g1,21705:10929934,40705372 -g1,21705:12517216,40705372 -g1,21705:13664096,40705372 -g1,21705:15066566,40705372 -g1,21705:17874128,40705372 -g1,21705:18732649,40705372 -k1,21706:32583029,40705372:10650912 -g1,21706:32583029,40705372 -) -v1,21708:6630773,41895838:0,393216,0 -(1,21756:6630773,45429820:25952256,3927198,196608 -g1,21756:6630773,45429820 -g1,21756:6630773,45429820 -g1,21756:6434165,45429820 -(1,21756:6434165,45429820:0,3927198,196608 -r1,21756:32779637,45429820:26345472,4123806,196608 -k1,21756:6434165,45429820:-26345472 -) -(1,21756:6434165,45429820:26345472,3927198,196608 -[1,21756:6630773,45429820:25952256,3730590,0 -(1,21710:6630773,42109748:25952256,410518,76021 -(1,21709:6630773,42109748:0,0,0 -g1,21709:6630773,42109748 -g1,21709:6630773,42109748 -g1,21709:6303093,42109748 -(1,21709:6303093,42109748:0,0,0 -) -g1,21709:6630773,42109748 -) -k1,21710:6630773,42109748:0 -g1,21710:7579210,42109748 -g1,21710:15798998,42109748 -h1,21710:16115144,42109748:0,0,0 -k1,21710:32583029,42109748:16467885 -g1,21710:32583029,42109748 -) -(1,21711:6630773,42775926:25952256,410518,76021 -h1,21711:6630773,42775926:0,0,0 -g1,21711:6946919,42775926 -g1,21711:7263065,42775926 -k1,21711:7263065,42775926:0 -h1,21711:14218270,42775926:0,0,0 -k1,21711:32583030,42775926:18364760 -g1,21711:32583030,42775926 -) -(1,21712:6630773,43442104:25952256,404226,76021 -h1,21712:6630773,43442104:0,0,0 -h1,21712:6946919,43442104:0,0,0 -k1,21712:32583029,43442104:25636110 -g1,21712:32583029,43442104 -) -(1,21716:6630773,44108282:25952256,404226,76021 -(1,21714:6630773,44108282:0,0,0 -g1,21714:6630773,44108282 -g1,21714:6630773,44108282 -g1,21714:6303093,44108282 -(1,21714:6303093,44108282:0,0,0 -) -g1,21714:6630773,44108282 -) -g1,21716:7579210,44108282 -g1,21716:8843793,44108282 -h1,21716:10108376,44108282:0,0,0 -k1,21716:32583028,44108282:22474652 -g1,21716:32583028,44108282 -) -(1,21718:6630773,45429820:25952256,410518,76021 -(1,21717:6630773,45429820:0,0,0 -g1,21717:6630773,45429820 -g1,21717:6630773,45429820 -g1,21717:6303093,45429820 -(1,21717:6303093,45429820:0,0,0 -) -g1,21717:6630773,45429820 -) -k1,21718:6630773,45429820:0 -h1,21718:12953687,45429820:0,0,0 -k1,21718:32583029,45429820:19629342 -g1,21718:32583029,45429820 -) -] -) -g1,21756:32583029,45429820 -g1,21756:6630773,45429820 -g1,21756:6630773,45429820 -g1,21756:32583029,45429820 -g1,21756:32583029,45429820 +g1,21780:-473656,-710413 ) ] -(1,21756:32583029,45706769:0,0,0 -g1,21756:32583029,45706769 ) +[1,21780:6630773,47279633:25952256,43253760,0 +[1,21780:6630773,4812305:25952256,786432,0 +(1,21780:6630773,4812305:25952256,505283,126483 +(1,21780:6630773,4812305:25952256,505283,126483 +g1,21780:3078558,4812305 +[1,21780:3078558,4812305:0,0,0 +(1,21780:3078558,2439708:0,1703936,0 +k1,21780:1358238,2439708:-1720320 +(1,21670:1358238,2439708:1720320,1703936,0 +(1,21670:1358238,2439708:1179648,16384,0 +r1,21780:2537886,2439708:1179648,16384,0 +) +g1,21670:3062174,2439708 +(1,21670:3062174,2439708:16384,1703936,0 +[1,21670:3062174,2439708:25952256,1703936,0 +(1,21670:3062174,1915420:25952256,1179648,0 +(1,21670:3062174,1915420:16384,1179648,0 +r1,21780:3078558,1915420:16384,1179648,0 +) +k1,21670:29014430,1915420:25935872 +g1,21670:29014430,1915420 ) ] -(1,21756:6630773,47279633:25952256,0,0 -h1,21756:6630773,47279633:25952256,0,0 ) -] -(1,21756:4262630,4025873:0,0,0 -[1,21756:-473656,4025873:0,0,0 -(1,21756:-473656,-710413:0,0,0 -(1,21756:-473656,-710413:0,0,0 -g1,21756:-473656,-710413 ) -g1,21756:-473656,-710413 ) ] +[1,21780:3078558,4812305:0,0,0 +(1,21780:3078558,2439708:0,1703936,0 +g1,21780:29030814,2439708 +g1,21780:36135244,2439708 +(1,21670:36135244,2439708:1720320,1703936,0 +(1,21670:36135244,2439708:16384,1703936,0 +[1,21670:36135244,2439708:25952256,1703936,0 +(1,21670:36135244,1915420:25952256,1179648,0 +(1,21670:36135244,1915420:16384,1179648,0 +r1,21780:36151628,1915420:16384,1179648,0 +) +k1,21670:62087500,1915420:25935872 +g1,21670:62087500,1915420 ) ] -!24773 -}394 -Input:3540:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3541:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3542:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3543:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3544:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3545:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3546:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3547:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!764 -{395 -[1,21799:4262630,47279633:28320399,43253760,0 -(1,21799:4262630,4025873:0,0,0 -[1,21799:-473656,4025873:0,0,0 -(1,21799:-473656,-710413:0,0,0 -(1,21799:-473656,-644877:0,0,0 -k1,21799:-473656,-644877:-65536 ) -(1,21799:-473656,4736287:0,0,0 -k1,21799:-473656,4736287:5209943 +g1,21670:36675916,2439708 +(1,21670:36675916,2439708:1179648,16384,0 +r1,21780:37855564,2439708:1179648,16384,0 ) -g1,21799:-473656,-710413 ) -] +k1,21780:3078556,2439708:-34777008 ) -[1,21799:6630773,47279633:25952256,43253760,0 -[1,21799:6630773,4812305:25952256,786432,0 -(1,21799:6630773,4812305:25952256,505283,134348 -(1,21799:6630773,4812305:25952256,505283,134348 -g1,21799:3078558,4812305 -[1,21799:3078558,4812305:0,0,0 -(1,21799:3078558,2439708:0,1703936,0 -k1,21799:1358238,2439708:-1720320 -(1,21457:1358238,2439708:1720320,1703936,0 -(1,21457:1358238,2439708:1179648,16384,0 -r1,21799:2537886,2439708:1179648,16384,0 +] +[1,21780:3078558,4812305:0,0,0 +(1,21780:3078558,49800853:0,16384,2228224 +k1,21780:1358238,49800853:-1720320 +(1,21670:1358238,49800853:1720320,16384,2228224 +(1,21670:1358238,49800853:1179648,16384,0 +r1,21780:2537886,49800853:1179648,16384,0 ) -g1,21457:3062174,2439708 -(1,21457:3062174,2439708:16384,1703936,0 -[1,21457:3062174,2439708:25952256,1703936,0 -(1,21457:3062174,1915420:25952256,1179648,0 -(1,21457:3062174,1915420:16384,1179648,0 -r1,21799:3078558,1915420:16384,1179648,0 +g1,21670:3062174,49800853 +(1,21670:3062174,52029077:16384,1703936,0 +[1,21670:3062174,52029077:25952256,1703936,0 +(1,21670:3062174,51504789:25952256,1179648,0 +(1,21670:3062174,51504789:16384,1179648,0 +r1,21780:3078558,51504789:16384,1179648,0 ) -k1,21457:29014430,1915420:25935872 -g1,21457:29014430,1915420 +k1,21670:29014430,51504789:25935872 +g1,21670:29014430,51504789 ) ] ) ) ) ] -[1,21799:3078558,4812305:0,0,0 -(1,21799:3078558,2439708:0,1703936,0 -g1,21799:29030814,2439708 -g1,21799:36135244,2439708 -(1,21457:36135244,2439708:1720320,1703936,0 -(1,21457:36135244,2439708:16384,1703936,0 -[1,21457:36135244,2439708:25952256,1703936,0 -(1,21457:36135244,1915420:25952256,1179648,0 -(1,21457:36135244,1915420:16384,1179648,0 -r1,21799:36151628,1915420:16384,1179648,0 +[1,21780:3078558,4812305:0,0,0 +(1,21780:3078558,49800853:0,16384,2228224 +g1,21780:29030814,49800853 +g1,21780:36135244,49800853 +(1,21670:36135244,49800853:1720320,16384,2228224 +(1,21670:36135244,52029077:16384,1703936,0 +[1,21670:36135244,52029077:25952256,1703936,0 +(1,21670:36135244,51504789:25952256,1179648,0 +(1,21670:36135244,51504789:16384,1179648,0 +r1,21780:36151628,51504789:16384,1179648,0 ) -k1,21457:62087500,1915420:25935872 -g1,21457:62087500,1915420 +k1,21670:62087500,51504789:25935872 +g1,21670:62087500,51504789 ) ] ) -g1,21457:36675916,2439708 -(1,21457:36675916,2439708:1179648,16384,0 -r1,21799:37855564,2439708:1179648,16384,0 +g1,21670:36675916,49800853 +(1,21670:36675916,49800853:1179648,16384,0 +r1,21780:37855564,49800853:1179648,16384,0 ) ) -k1,21799:3078556,2439708:-34777008 +k1,21780:3078556,49800853:-34777008 ) ] -[1,21799:3078558,4812305:0,0,0 -(1,21799:3078558,49800853:0,16384,2228224 -k1,21799:1358238,49800853:-1720320 -(1,21457:1358238,49800853:1720320,16384,2228224 -(1,21457:1358238,49800853:1179648,16384,0 -r1,21799:2537886,49800853:1179648,16384,0 +g1,21780:6630773,4812305 +g1,21780:6630773,4812305 +g1,21780:7909380,4812305 +g1,21780:10167095,4812305 +g1,21780:11576774,4812305 +g1,21780:15078362,4812305 +k1,21780:31387652,4812305:16309290 +) +) +] +[1,21780:6630773,45706769:25952256,40108032,0 +(1,21780:6630773,45706769:25952256,40108032,0 +(1,21780:6630773,45706769:0,0,0 +g1,21780:6630773,45706769 +) +[1,21780:6630773,45706769:25952256,40108032,0 +v1,21734:6630773,6254097:0,393216,0 +(1,21734:6630773,12080226:25952256,6219345,196608 +g1,21734:6630773,12080226 +g1,21734:6630773,12080226 +g1,21734:6434165,12080226 +(1,21734:6434165,12080226:0,6219345,196608 +r1,21780:32779637,12080226:26345472,6415953,196608 +k1,21734:6434165,12080226:-26345472 +) +(1,21734:6434165,12080226:26345472,6219345,196608 +[1,21734:6630773,12080226:25952256,6022737,0 +(1,21724:6630773,6488534:25952256,431045,106246 +h1,21724:6630773,6488534:0,0,0 +k1,21724:6630773,6488534:0 +h1,21724:12273990,6488534:0,0,0 +k1,21724:32583030,6488534:20309040 +g1,21724:32583030,6488534 +) +(1,21725:6630773,7173389:25952256,431045,112852 +h1,21725:6630773,7173389:0,0,0 +k1,21725:6630773,7173389:0 +h1,21725:11942036,7173389:0,0,0 +k1,21725:32583028,7173389:20640992 +g1,21725:32583028,7173389 +) +(1,21726:6630773,7858244:25952256,424439,106246 +h1,21726:6630773,7858244:0,0,0 +k1,21726:6630773,7858244:0 +h1,21726:11278129,7858244:0,0,0 +k1,21726:32583029,7858244:21304900 +g1,21726:32583029,7858244 +) +(1,21727:6630773,8543099:25952256,424439,106246 +h1,21727:6630773,8543099:0,0,0 +k1,21727:6630773,8543099:0 +h1,21727:10946175,8543099:0,0,0 +k1,21727:32583029,8543099:21636854 +g1,21727:32583029,8543099 +) +(1,21728:6630773,9227954:25952256,424439,106246 +h1,21728:6630773,9227954:0,0,0 +k1,21728:6630773,9227954:0 +h1,21728:10614221,9227954:0,0,0 +k1,21728:32583029,9227954:21968808 +g1,21728:32583029,9227954 +) +(1,21729:6630773,9912809:25952256,431045,106246 +h1,21729:6630773,9912809:0,0,0 +k1,21729:6630773,9912809:0 +h1,21729:11278129,9912809:0,0,0 +k1,21729:32583029,9912809:21304900 +g1,21729:32583029,9912809 +) +(1,21730:6630773,10597664:25952256,424439,106246 +h1,21730:6630773,10597664:0,0,0 +k1,21730:6630773,10597664:0 +h1,21730:11610082,10597664:0,0,0 +k1,21730:32583030,10597664:20972948 +g1,21730:32583030,10597664 +) +(1,21731:6630773,11282519:25952256,424439,106246 +h1,21731:6630773,11282519:0,0,0 +k1,21731:6630773,11282519:0 +h1,21731:12605944,11282519:0,0,0 +k1,21731:32583028,11282519:19977084 +g1,21731:32583028,11282519 +) +(1,21732:6630773,11967374:25952256,424439,112852 +h1,21732:6630773,11967374:0,0,0 +k1,21732:6630773,11967374:0 +h1,21732:12273990,11967374:0,0,0 +k1,21732:32583030,11967374:20309040 +g1,21732:32583030,11967374 +) +] +) +g1,21734:32583029,12080226 +g1,21734:6630773,12080226 +g1,21734:6630773,12080226 +g1,21734:32583029,12080226 +g1,21734:32583029,12080226 +) +h1,21734:6630773,12276834:0,0,0 +v1,21738:6630773,13141914:0,393216,0 +(1,21767:6630773,24687121:25952256,11938423,0 +g1,21767:6630773,24687121 +g1,21767:6237557,24687121 +r1,21780:6368629,24687121:131072,11938423,0 +g1,21767:6567858,24687121 +g1,21767:6764466,24687121 +[1,21767:6764466,24687121:25818563,11938423,0 +(1,21740:6764466,13556456:25818563,807758,219026 +(1,21738:6764466,13556456:0,807758,219026 +r1,21780:7908217,13556456:1143751,1026784,219026 +k1,21738:6764466,13556456:-1143751 +) +(1,21738:6764466,13556456:1143751,807758,219026 +) +k1,21738:8218241,13556456:310024 +k1,21738:8545921,13556456:327680 +k1,21738:10572989,13556456:310025 +k1,21738:12272376,13556456:310024 +k1,21738:13847246,13556456:310025 +k1,21738:15670496,13556456:310024 +k1,21738:16596558,13556456:310024 +k1,21738:18109824,13556456:310025 +k1,21738:19611293,13556456:310024 +k1,21738:21623287,13556456:310024 +k1,21738:24681237,13556456:310025 +k1,21738:25982821,13556456:310024 +k1,21738:29076815,13556456:310025 +k1,21738:30002877,13556456:310024 +k1,21738:32583029,13556456:0 +) +(1,21740:6764466,14421536:25818563,513147,134348 +k1,21738:10996481,14421536:252015 +k1,21738:11876332,14421536:252016 +k1,21738:14794352,14421536:252015 +k1,21738:15697795,14421536:252015 +k1,21738:16968896,14421536:252016 +k1,21739:17665847,14421536:251962 +k1,21739:19307225,14421536:252015 +k1,21739:22022738,14421536:252015 +k1,21739:23143106,14421536:252016 +k1,21739:25825196,14421536:252015 +k1,21739:27390553,14421536:252015 +k1,21739:29453984,14421536:252016 +k1,21739:30322037,14421536:252015 +k1,21740:32583029,14421536:0 +) +(1,21740:6764466,15286616:25818563,513147,126483 +k1,21739:9615850,15286616:167029 +k1,21739:11668350,15286616:167029 +k1,21739:12703732,15286616:167030 +k1,21739:14383987,15286616:167029 +k1,21739:15167054,15286616:167029 +k1,21739:18325802,15286616:167029 +k1,21739:19302201,15286616:167029 +k1,21739:20799612,15286616:167030 +k1,21739:21618069,15286616:167029 +k1,21739:23966792,15286616:167029 +k1,21739:25696855,15286616:167029 +k1,21739:27060571,15286616:167029 +k1,21739:28540943,15286616:167030 +k1,21739:29812254,15286616:167029 +k1,21739:30727049,15286616:167029 +k1,21739:32583029,15286616:0 +) +(1,21740:6764466,16151696:25818563,513147,126483 +k1,21739:8349591,16151696:172824 +k1,21739:10090036,16151696:172824 +k1,21739:11281945,16151696:172824 +k1,21739:11869585,16151696:172797 +k1,21739:14316508,16151696:172824 +k1,21739:15172217,16151696:172824 +k1,21739:16912662,16151696:172824 +k1,21739:17441345,16151696:172823 +k1,21739:19124119,16151696:172824 +k1,21739:19912981,16151696:172824 +k1,21739:20441665,16151696:172824 +k1,21739:22108710,16151696:172824 +k1,21739:24376065,16151696:172824 +k1,21739:25176723,16151696:172823 +k1,21739:26552788,16151696:172824 +k1,21739:29143235,16151696:172824 +k1,21739:30184411,16151696:172824 +k1,21739:32583029,16151696:0 +) +(1,21740:6764466,17016776:25818563,513147,134348 +g1,21739:7982780,17016776 +g1,21739:9562853,17016776 +g1,21739:10863087,17016776 +g1,21739:13180440,17016776 +g1,21739:14398754,17016776 +g1,21739:16518843,17016776 +(1,21739:16518843,17016776:0,452978,115847 +r1,21780:19690803,17016776:3171960,568825,115847 +k1,21739:16518843,17016776:-3171960 +) +(1,21739:16518843,17016776:3171960,452978,115847 +k1,21739:16518843,17016776:3277 +h1,21739:19687526,17016776:0,411205,112570 +) +g1,21739:19890032,17016776 +g1,21739:21656882,17016776 +g1,21739:22875196,17016776 +g1,21739:25654577,17016776 +g1,21739:26505234,17016776 +g1,21739:27060323,17016776 +g1,21739:29846258,17016776 +k1,21740:32583029,17016776:642240 +g1,21740:32583029,17016776 +) +(1,21742:6764466,17881856:25818563,513147,134348 +h1,21741:6764466,17881856:983040,0,0 +g1,21741:9578581,17881856 +g1,21741:10796895,17881856 +g1,21741:12309466,17881856 +k1,21742:32583030,17881856:18364500 +g1,21742:32583030,17881856 +) +v1,21744:6764466,18566711:0,393216,0 +(1,21752:6764466,20381752:25818563,2208257,196608 +g1,21752:6764466,20381752 +g1,21752:6764466,20381752 +g1,21752:6567858,20381752 +(1,21752:6567858,20381752:0,2208257,196608 +r1,21780:32779637,20381752:26211779,2404865,196608 +k1,21752:6567857,20381752:-26211780 +) +(1,21752:6567858,20381752:26211779,2208257,196608 +[1,21752:6764466,20381752:25818563,2011649,0 +(1,21746:6764466,18801148:25818563,431045,112852 +(1,21745:6764466,18801148:0,0,0 +g1,21745:6764466,18801148 +g1,21745:6764466,18801148 +g1,21745:6436786,18801148 +(1,21745:6436786,18801148:0,0,0 +) +g1,21745:6764466,18801148 +) +g1,21746:9752051,18801148 +g1,21746:10747913,18801148 +g1,21746:18382853,18801148 +g1,21746:21038485,18801148 +g1,21746:21702393,18801148 +h1,21746:26017794,18801148:0,0,0 +k1,21746:32583029,18801148:6565235 +g1,21746:32583029,18801148 +) +(1,21747:6764466,19486003:25818563,431045,112852 +h1,21747:6764466,19486003:0,0,0 +g1,21747:13403544,19486003 +g1,21747:15063314,19486003 +g1,21747:18382853,19486003 +g1,21747:19046761,19486003 +g1,21747:21038485,19486003 +g1,21747:24358024,19486003 +g1,21747:25021932,19486003 +h1,21747:26681702,19486003:0,0,0 +k1,21747:32583029,19486003:5901327 +g1,21747:32583029,19486003 +) +(1,21751:6764466,20301930:25818563,424439,79822 +(1,21749:6764466,20301930:0,0,0 +g1,21749:6764466,20301930 +g1,21749:6764466,20301930 +g1,21749:6436786,20301930 +(1,21749:6436786,20301930:0,0,0 +) +g1,21749:6764466,20301930 +) +g1,21751:7760328,20301930 +g1,21751:9088144,20301930 +h1,21751:10415960,20301930:0,0,0 +k1,21751:32583028,20301930:22167068 +g1,21751:32583028,20301930 +) +] +) +g1,21752:32583029,20381752 +g1,21752:6764466,20381752 +g1,21752:6764466,20381752 +g1,21752:32583029,20381752 +g1,21752:32583029,20381752 +) +h1,21752:6764466,20578360:0,0,0 +(1,21756:6764466,21443440:25818563,513147,102891 +h1,21755:6764466,21443440:983040,0,0 +g1,21755:8900284,21443440 +g1,21755:10385329,21443440 +g1,21755:12300291,21443440 +g1,21755:13880364,21443440 +g1,21755:15098678,21443440 +g1,21755:17218767,21443440 +g1,21755:18931222,21443440 +g1,21755:19781879,21443440 +g1,21755:21371782,21443440 +g1,21755:22960374,21443440 +g1,21755:24571904,21443440 +g1,21755:26338754,21443440 +g1,21755:27557068,21443440 +g1,21755:30457691,21443440 +k1,21756:32583029,21443440:120592 +g1,21756:32583029,21443440 +) +v1,21758:6764466,22128295:0,393216,0 +(1,21765:6764466,24490513:25818563,2755434,196608 +g1,21765:6764466,24490513 +g1,21765:6764466,24490513 +g1,21765:6567858,24490513 +(1,21765:6567858,24490513:0,2755434,196608 +r1,21780:32779637,24490513:26211779,2952042,196608 +k1,21765:6567857,24490513:-26211780 +) +(1,21765:6567858,24490513:26211779,2755434,196608 +[1,21765:6764466,24490513:25818563,2558826,0 +(1,21760:6764466,22356126:25818563,424439,106246 +(1,21759:6764466,22356126:0,0,0 +g1,21759:6764466,22356126 +g1,21759:6764466,22356126 +g1,21759:6436786,22356126 +(1,21759:6436786,22356126:0,0,0 +) +g1,21759:6764466,22356126 +) +g1,21760:10084005,22356126 +g1,21760:10747913,22356126 +h1,21760:13403544,22356126:0,0,0 +k1,21760:32583028,22356126:19179484 +g1,21760:32583028,22356126 +) +(1,21761:6764466,23040981:25818563,431045,106246 +h1,21761:6764466,23040981:0,0,0 +g1,21761:7760328,23040981 +g1,21761:16059176,23040981 +h1,21761:16391130,23040981:0,0,0 +k1,21761:32583029,23040981:16191899 +g1,21761:32583029,23040981 +) +(1,21762:6764466,23725836:25818563,424439,106246 +h1,21762:6764466,23725836:0,0,0 +g1,21762:7096420,23725836 +g1,21762:7428374,23725836 +k1,21762:7428374,23725836:0 +h1,21762:14399406,23725836:0,0,0 +k1,21762:32583030,23725836:18183624 +g1,21762:32583030,23725836 +) +(1,21763:6764466,24410691:25818563,424439,79822 +h1,21763:6764466,24410691:0,0,0 +h1,21763:7096420,24410691:0,0,0 +k1,21763:32583028,24410691:25486608 +g1,21763:32583028,24410691 +) +] +) +g1,21765:32583029,24490513 +g1,21765:6764466,24490513 +g1,21765:6764466,24490513 +g1,21765:32583029,24490513 +g1,21765:32583029,24490513 +) +h1,21765:6764466,24687121:0,0,0 +] +g1,21767:32583029,24687121 +) +h1,21767:6630773,24687121:0,0,0 +(1,21769:6630773,27518281:25952256,32768,229376 +(1,21769:6630773,27518281:0,32768,229376 +(1,21769:6630773,27518281:5505024,32768,229376 +r1,21780:12135797,27518281:5505024,262144,229376 +) +k1,21769:6630773,27518281:-5505024 +) +(1,21769:6630773,27518281:25952256,32768,0 +r1,21780:32583029,27518281:25952256,32768,0 +) +) +(1,21769:6630773,29150133:25952256,606339,151780 +(1,21769:6630773,29150133:2464678,582746,14155 +g1,21769:6630773,29150133 +g1,21769:9095451,29150133 +) +g1,21769:10753250,29150133 +g1,21769:13564745,29150133 +g1,21769:15274448,29150133 +k1,21769:32583029,29150133:13094878 +g1,21769:32583029,29150133 +) +(1,21773:6630773,30408429:25952256,513147,134348 +k1,21772:7727147,30408429:142825 +k1,21772:9358294,30408429:142824 +k1,21772:10895070,30408429:142825 +k1,21772:12056980,30408429:142825 +k1,21772:14580727,30408429:142824 +k1,21772:15382844,30408429:142825 +k1,21772:16839011,30408429:142825 +k1,21772:17667997,30408429:142824 +k1,21772:18268919,30408429:142825 +k1,21772:20521348,30408429:142825 +k1,21772:22053535,30408429:142824 +k1,21772:24575972,30408429:142825 +k1,21772:28438620,30408429:142825 +k1,21772:29240736,30408429:142824 +k1,21772:30402646,30408429:142825 +k1,21772:32583029,30408429:0 +) +(1,21773:6630773,31273509:25952256,513147,134348 +k1,21772:8336565,31273509:192566 +k1,21772:9476783,31273509:192567 +k1,21772:10457747,31273509:192566 +k1,21772:13725263,31273509:192567 +k1,21772:15114516,31273509:192566 +k1,21772:16898953,31273509:192567 +k1,21772:19936437,31273509:192566 +k1,21772:20660501,31273509:192567 +k1,21772:22137573,31273509:192566 +k1,21772:25092483,31273509:192567 +k1,21772:28339027,31273509:192566 +k1,21772:31107814,31273509:192567 +k1,21772:32583029,31273509:0 +) +(1,21773:6630773,32138589:25952256,513147,134348 +k1,21772:9648152,32138589:255036 +k1,21772:11489158,32138589:255035 +k1,21772:14910894,32138589:255036 +k1,21772:16185015,32138589:255036 +k1,21772:18524095,32138589:255035 +k1,21772:20292357,32138589:255036 +k1,21772:21495044,32138589:255036 +k1,21772:22733120,32138589:255036 +k1,21772:25056471,32138589:255035 +k1,21772:26502952,32138589:255036 +k1,21772:27741028,32138589:255036 +k1,21772:29948381,32138589:255035 +k1,21772:30831252,32138589:255036 +k1,21772:32583029,32138589:0 +) +(1,21773:6630773,33003669:25952256,513147,134348 +k1,21772:8776775,33003669:274949 +k1,21772:10197948,33003669:274948 +k1,21772:12170935,33003669:274949 +k1,21772:15807881,33003669:274949 +k1,21772:17472192,33003669:274948 +k1,21772:19060483,33003669:274949 +k1,21772:19951470,33003669:274949 +k1,21772:20582279,33003669:274949 +k1,21772:22833137,33003669:274948 +k1,21772:26565110,33003669:274949 +k1,21772:27708411,33003669:274949 +k1,21772:29513625,33003669:274948 +k1,21772:30440002,33003669:274949 +k1,21772:32583029,33003669:0 +) +(1,21773:6630773,33868749:25952256,513147,134348 +k1,21772:8121858,33868749:206579 +k1,21772:9311477,33868749:206579 +k1,21772:11586372,33868749:206579 +k1,21772:12784510,33868749:206578 +k1,21772:14531185,33868749:206579 +k1,21772:15353802,33868749:206579 +k1,21772:18231628,33868749:206579 +k1,21772:21492185,33868749:206579 +k1,21772:24274984,33868749:206579 +k1,21772:26264142,33868749:206579 +k1,21772:26948477,33868749:206578 +k1,21772:28174141,33868749:206579 +k1,21772:30211796,33868749:206579 +k1,21772:31931601,33868749:206579 +k1,21772:32583029,33868749:0 +) +(1,21773:6630773,34733829:25952256,513147,134348 +k1,21772:8789572,34733829:229419 +k1,21772:10038075,34733829:229418 +k1,21772:11580836,34733829:229419 +k1,21772:12341752,34733829:229419 +k1,21772:14176803,34733829:229419 +k1,21772:17245241,34733829:229418 +k1,21772:18126088,34733829:229419 +k1,21772:19103273,34733829:229419 +k1,21772:20197081,34733829:229388 +k1,21772:23261587,34733829:229419 +k1,21772:24359357,34733829:229418 +k1,21772:25874592,34733829:229419 +k1,21772:27634277,34733829:229419 +k1,21772:28515124,34733829:229419 +k1,21772:29492308,34733829:229418 +k1,21772:31931601,34733829:229419 +k1,21772:32583029,34733829:0 +) +(1,21773:6630773,35598909:25952256,513147,134348 +k1,21772:8614903,35598909:168127 +k1,21772:9802115,35598909:168127 +k1,21772:10834632,35598909:168097 +k1,21772:11950410,35598909:168127 +k1,21772:13101577,35598909:168127 +k1,21772:15338020,35598909:168127 +k1,21772:16697592,35598909:168127 +k1,21772:18644366,35598909:168127 +k1,21772:21272715,35598909:168127 +k1,21772:23799484,35598909:168128 +k1,21772:28037397,35598909:168127 +k1,21772:29014894,35598909:168127 +k1,21772:30202106,35598909:168127 +k1,21772:32583029,35598909:0 +) +(1,21773:6630773,36463989:25952256,505283,134348 +k1,21772:8448208,36463989:231464 +k1,21772:9362557,36463989:231464 +k1,21772:12377990,36463989:231464 +k1,21772:13473842,36463989:231432 +k1,21772:17368769,36463989:231464 +k1,21772:18981077,36463989:231464 +k1,21772:19744038,36463989:231464 +k1,21772:23083219,36463989:231464 +k1,21772:26523981,36463989:231464 +k1,21772:28453483,36463989:231464 +k1,21772:32168186,36463989:231464 +k1,21773:32583029,36463989:0 +) +(1,21773:6630773,37329069:25952256,505283,134348 +k1,21773:32583029,37329069:22868132 +g1,21773:32583029,37329069 +) +v1,21775:6630773,38194149:0,393216,0 +(1,21777:6630773,41266413:25952256,3465480,0 +g1,21777:6630773,41266413 +g1,21777:6237557,41266413 +r1,21780:6368629,41266413:131072,3465480,0 +g1,21777:6567858,41266413 +g1,21777:6764466,41266413 +[1,21777:6764466,41266413:25818563,3465480,0 +(1,21777:6764466,38555326:25818563,754393,260573 +(1,21775:6764466,38555326:0,754393,260573 +r1,21780:8010564,38555326:1246098,1014966,260573 +k1,21775:6764466,38555326:-1246098 +) +(1,21775:6764466,38555326:1246098,754393,260573 +) +k1,21775:8188927,38555326:178363 +k1,21775:8516607,38555326:327680 +k1,21775:8516607,38555326:0 +k1,21776:9736992,38555326:178363 +k1,21776:13112201,38555326:178363 +k1,21776:16806571,38555326:178363 +k1,21776:17967974,38555326:178363 +k1,21776:20214654,38555326:178364 +k1,21776:22573400,38555326:178363 +k1,21776:24506817,38555326:178363 +k1,21776:27056928,38555326:178363 +k1,21776:30977397,38555326:178363 +k1,21777:32583029,38555326:0 +) +(1,21777:6764466,39420406:25818563,505283,126483 +k1,21776:9043372,39420406:366565 +k1,21776:10601381,39420406:366564 +k1,21776:13339694,39420406:366565 +k1,21776:14319020,39420406:366564 +k1,21776:16287285,39420406:366565 +k1,21776:17810560,39420406:366565 +k1,21776:19422963,39420406:366564 +k1,21776:20831550,39420406:366565 +k1,21776:22217199,39420406:366564 +k1,21776:24661255,39420406:366565 +k1,21776:27657779,39420406:366564 +k1,21776:31540351,39420406:366565 +k1,21777:32583029,39420406:0 +) +(1,21777:6764466,40285486:25818563,513147,134348 +k1,21776:10160422,40285486:315109 +k1,21776:12655914,40285486:315109 +k1,21776:13718790,40285486:315110 +k1,21776:16531476,40285486:315109 +k1,21776:18581978,40285486:315109 +k1,21776:21096475,40285486:315109 +k1,21776:23912438,40285486:315109 +k1,21776:25045437,40285486:315110 +k1,21776:26131249,40285486:315109 +k1,21776:29281445,40285486:315109 +k1,21776:31923737,40285486:315109 +k1,21777:32583029,40285486:0 +) +(1,21777:6764466,41150566:25818563,452978,115847 +(1,21776:6764466,41150566:0,452978,115847 +r1,21780:12398410,41150566:5633944,568825,115847 +k1,21776:6764466,41150566:-5633944 +) +(1,21776:6764466,41150566:5633944,452978,115847 +g1,21776:7822879,41150566 +h1,21776:12395133,41150566:0,411205,112570 +) +g1,21776:12771309,41150566 +g1,21776:14063023,41150566 +(1,21776:14063023,41150566:0,452978,115847 +r1,21780:19696966,41150566:5633943,568825,115847 +k1,21776:14063023,41150566:-5633943 +) +(1,21776:14063023,41150566:5633943,452978,115847 +k1,21776:14063023,41150566:3277 +h1,21776:19693689,41150566:0,411205,112570 +) +k1,21777:32583029,41150566:12712393 +g1,21777:32583029,41150566 +) +] +g1,21777:32583029,41266413 +) +h1,21777:6630773,41266413:0,0,0 +(1,21780:6630773,42131493:25952256,513147,134348 +h1,21779:6630773,42131493:983040,0,0 +k1,21779:8174694,42131493:146038 +k1,21779:11081160,42131493:146090 +k1,21779:14253047,42131493:146090 +k1,21779:16284609,42131493:146091 +k1,21779:17818752,42131493:146090 +k1,21779:19358793,42131493:146090 +k1,21779:23020891,42131493:146091 +k1,21779:23928509,42131493:146090 +k1,21779:26101628,42131493:146090 +k1,21779:27266804,42131493:146091 +k1,21779:31923737,42131493:146090 +k1,21779:32583029,42131493:0 +) +(1,21780:6630773,42996573:25952256,513147,126483 +k1,21779:7840871,42996573:191013 +k1,21779:10794227,42996573:191013 +k1,21779:12179961,42996573:191013 +k1,21779:13938594,42996573:191012 +k1,21779:14544442,42996573:191005 +k1,21779:16405312,42996573:191013 +k1,21779:17224160,42996573:191013 +k1,21779:19576550,42996573:191013 +k1,21779:21464290,42996573:191013 +k1,21779:24681099,42996573:191012 +k1,21779:27052495,42996573:191013 +k1,21779:27991274,42996573:191013 +k1,21779:31195632,42996573:191013 +k1,21779:32583029,42996573:0 +) +(1,21780:6630773,43861653:25952256,505283,134348 +k1,21779:8748543,43861653:269655 +k1,21779:10117891,43861653:269654 +k1,21779:11038974,43861653:269655 +k1,21779:12172977,43861653:269583 +k1,21779:15932424,43861653:269655 +k1,21779:17478719,43861653:269654 +k1,21779:19483767,43861653:269655 +(1,21779:19483767,43861653:0,452978,115847 +r1,21780:21952304,43861653:2468537,568825,115847 +k1,21779:19483767,43861653:-2468537 +) +(1,21779:19483767,43861653:2468537,452978,115847 +k1,21779:19483767,43861653:3277 +h1,21779:21949027,43861653:0,411205,112570 +) +k1,21779:22221958,43861653:269654 +k1,21779:23174498,43861653:269655 +(1,21779:23174498,43861653:0,452978,115847 +r1,21780:25994747,43861653:2820249,568825,115847 +k1,21779:23174498,43861653:-2820249 +) +(1,21779:23174498,43861653:2820249,452978,115847 +k1,21779:23174498,43861653:3277 +h1,21779:25991470,43861653:0,411205,112570 +) +k1,21779:26471496,43861653:269655 +k1,21779:29779399,43861653:269654 +k1,21779:32583029,43861653:0 +) +(1,21780:6630773,44726733:25952256,513147,134348 +k1,21779:7700979,44726733:252317 +k1,21779:8972381,44726733:252317 +k1,21779:12335692,44726733:252317 +k1,21779:14886357,44726733:252317 +k1,21779:15790101,44726733:252316 +k1,21779:18246394,44726733:252317 +k1,21779:18854571,44726733:252317 +k1,21779:20089928,44726733:252317 +k1,21779:22080260,44726733:252317 +k1,21779:23900198,44726733:252317 +k1,21779:24508375,44726733:252317 +k1,21779:25743732,44726733:252317 +k1,21779:27444395,44726733:252317 +k1,21779:28228209,44726733:252317 +k1,21779:29344892,44726733:252263 +k1,21779:32168186,44726733:252317 +k1,21780:32583029,44726733:0 +) +(1,21780:6630773,45591813:25952256,513147,126483 +k1,21779:9627037,45591813:235888 +k1,21779:12888721,45591813:235887 +k1,21779:14618175,45591813:235888 +k1,21779:15540224,45591813:235887 +(1,21779:15540224,45591813:0,452978,115847 +r1,21780:19063896,45591813:3523672,568825,115847 +k1,21779:15540224,45591813:-3523672 +) +(1,21779:15540224,45591813:3523672,452978,115847 +k1,21779:15540224,45591813:3277 +h1,21779:19060619,45591813:0,411205,112570 +) +k1,21779:19473454,45591813:235888 +k1,21779:21717364,45591813:235887 +k1,21779:27010010,45591813:235888 +k1,21779:27777395,45591813:235888 +k1,21779:28877665,45591813:235850 +k1,21779:31510860,45591813:235888 +k1,21779:32583029,45591813:0 +) +] +(1,21780:32583029,45706769:0,0,0 +g1,21780:32583029,45706769 +) +) +] +(1,21780:6630773,47279633:25952256,0,0 +h1,21780:6630773,47279633:25952256,0,0 +) +] +(1,21780:4262630,4025873:0,0,0 +[1,21780:-473656,4025873:0,0,0 +(1,21780:-473656,-710413:0,0,0 +(1,21780:-473656,-710413:0,0,0 +g1,21780:-473656,-710413 +) +g1,21780:-473656,-710413 +) +] +) +] +!24503 +}376 +Input:3563:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3564:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3565:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3566:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3567:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3568:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3569:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!670 +{377 +[1,21902:4262630,47279633:28320399,43253760,0 +(1,21902:4262630,4025873:0,0,0 +[1,21902:-473656,4025873:0,0,0 +(1,21902:-473656,-710413:0,0,0 +(1,21902:-473656,-644877:0,0,0 +k1,21902:-473656,-644877:-65536 ) -g1,21457:3062174,49800853 -(1,21457:3062174,52029077:16384,1703936,0 -[1,21457:3062174,52029077:25952256,1703936,0 -(1,21457:3062174,51504789:25952256,1179648,0 -(1,21457:3062174,51504789:16384,1179648,0 -r1,21799:3078558,51504789:16384,1179648,0 +(1,21902:-473656,4736287:0,0,0 +k1,21902:-473656,4736287:5209943 ) -k1,21457:29014430,51504789:25935872 -g1,21457:29014430,51504789 +g1,21902:-473656,-710413 ) ] ) +[1,21902:6630773,47279633:25952256,43253760,0 +[1,21902:6630773,4812305:25952256,786432,0 +(1,21902:6630773,4812305:25952256,505283,134348 +(1,21902:6630773,4812305:25952256,505283,134348 +g1,21902:3078558,4812305 +[1,21902:3078558,4812305:0,0,0 +(1,21902:3078558,2439708:0,1703936,0 +k1,21902:1358238,2439708:-1720320 +(1,21670:1358238,2439708:1720320,1703936,0 +(1,21670:1358238,2439708:1179648,16384,0 +r1,21902:2537886,2439708:1179648,16384,0 +) +g1,21670:3062174,2439708 +(1,21670:3062174,2439708:16384,1703936,0 +[1,21670:3062174,2439708:25952256,1703936,0 +(1,21670:3062174,1915420:25952256,1179648,0 +(1,21670:3062174,1915420:16384,1179648,0 +r1,21902:3078558,1915420:16384,1179648,0 ) +k1,21670:29014430,1915420:25935872 +g1,21670:29014430,1915420 ) ] -[1,21799:3078558,4812305:0,0,0 -(1,21799:3078558,49800853:0,16384,2228224 -g1,21799:29030814,49800853 -g1,21799:36135244,49800853 -(1,21457:36135244,49800853:1720320,16384,2228224 -(1,21457:36135244,52029077:16384,1703936,0 -[1,21457:36135244,52029077:25952256,1703936,0 -(1,21457:36135244,51504789:25952256,1179648,0 -(1,21457:36135244,51504789:16384,1179648,0 -r1,21799:36151628,51504789:16384,1179648,0 ) -k1,21457:62087500,51504789:25935872 -g1,21457:62087500,51504789 +) ) ] +[1,21902:3078558,4812305:0,0,0 +(1,21902:3078558,2439708:0,1703936,0 +g1,21902:29030814,2439708 +g1,21902:36135244,2439708 +(1,21670:36135244,2439708:1720320,1703936,0 +(1,21670:36135244,2439708:16384,1703936,0 +[1,21670:36135244,2439708:25952256,1703936,0 +(1,21670:36135244,1915420:25952256,1179648,0 +(1,21670:36135244,1915420:16384,1179648,0 +r1,21902:36151628,1915420:16384,1179648,0 ) -g1,21457:36675916,49800853 -(1,21457:36675916,49800853:1179648,16384,0 -r1,21799:37855564,49800853:1179648,16384,0 +k1,21670:62087500,1915420:25935872 +g1,21670:62087500,1915420 ) +] ) -k1,21799:3078556,49800853:-34777008 -) -] -g1,21799:6630773,4812305 -k1,21799:21078841,4812305:13252691 -g1,21799:22701512,4812305 -g1,21799:23350318,4812305 -g1,21799:24759997,4812305 -g1,21799:28372341,4812305 -g1,21799:30105768,4812305 -) -) -] -[1,21799:6630773,45706769:25952256,40108032,0 -(1,21799:6630773,45706769:25952256,40108032,0 -(1,21799:6630773,45706769:0,0,0 -g1,21799:6630773,45706769 -) -[1,21799:6630773,45706769:25952256,40108032,0 -v1,21756:6630773,6254097:0,393216,0 -(1,21756:6630773,18474850:25952256,12613969,196608 -g1,21756:6630773,18474850 -g1,21756:6630773,18474850 -g1,21756:6434165,18474850 -(1,21756:6434165,18474850:0,12613969,196608 -r1,21799:32779637,18474850:26345472,12810577,196608 -k1,21756:6434165,18474850:-26345472 -) -(1,21756:6434165,18474850:26345472,12613969,196608 -[1,21756:6630773,18474850:25952256,12417361,0 -(1,21722:6630773,6461715:25952256,404226,76021 -(1,21720:6630773,6461715:0,0,0 -g1,21720:6630773,6461715 -g1,21720:6630773,6461715 -g1,21720:6303093,6461715 -(1,21720:6303093,6461715:0,0,0 -) -g1,21720:6630773,6461715 -) -g1,21722:7579210,6461715 -g1,21722:8843793,6461715 -h1,21722:9159939,6461715:0,0,0 -k1,21722:32583029,6461715:23423090 -g1,21722:32583029,6461715 -) -(1,21724:6630773,7783253:25952256,410518,76021 -(1,21723:6630773,7783253:0,0,0 -g1,21723:6630773,7783253 -g1,21723:6630773,7783253 -g1,21723:6303093,7783253 -(1,21723:6303093,7783253:0,0,0 -) -g1,21723:6630773,7783253 -) -k1,21724:6630773,7783253:0 -h1,21724:12953687,7783253:0,0,0 -k1,21724:32583029,7783253:19629342 -g1,21724:32583029,7783253 -) -(1,21731:6630773,8449431:25952256,404226,6290 -(1,21726:6630773,8449431:0,0,0 -g1,21726:6630773,8449431 -g1,21726:6630773,8449431 -g1,21726:6303093,8449431 -(1,21726:6303093,8449431:0,0,0 -) -g1,21726:6630773,8449431 -) -g1,21731:7579210,8449431 -g1,21731:7895356,8449431 -g1,21731:8211502,8449431 -g1,21731:8527648,8449431 -g1,21731:8843794,8449431 -g1,21731:9159940,8449431 -g1,21731:9476086,8449431 -g1,21731:9792232,8449431 -g1,21731:10108378,8449431 -g1,21731:11689107,8449431 -g1,21731:13585981,8449431 -g1,21731:15166710,8449431 -g1,21731:15482856,8449431 -g1,21731:15799002,8449431 -g1,21731:16115148,8449431 -g1,21731:16431294,8449431 -g1,21731:16747440,8449431 -g1,21731:17063586,8449431 -g1,21731:17379732,8449431 -g1,21731:17695878,8449431 -g1,21731:18012024,8449431 -g1,21731:18328170,8449431 -g1,21731:18644316,8449431 -g1,21731:18960462,8449431 -g1,21731:19276608,8449431 -g1,21731:19592754,8449431 -g1,21731:21489628,8449431 -g1,21731:21805774,8449431 -g1,21731:22121920,8449431 -g1,21731:22438066,8449431 -g1,21731:22754212,8449431 -g1,21731:23070358,8449431 -g1,21731:23386504,8449431 -g1,21731:23702650,8449431 -g1,21731:24018796,8449431 -g1,21731:24334942,8449431 -g1,21731:24651088,8449431 -g1,21731:24967234,8449431 -g1,21731:25283380,8449431 -g1,21731:25599526,8449431 -g1,21731:25915672,8449431 -h1,21731:27496400,8449431:0,0,0 -k1,21731:32583029,8449431:5086629 -g1,21731:32583029,8449431 -) -(1,21731:6630773,9115609:25952256,388497,9436 -h1,21731:6630773,9115609:0,0,0 -g1,21731:7579210,9115609 -g1,21731:10108376,9115609 -g1,21731:10424522,9115609 -g1,21731:10740668,9115609 -g1,21731:11056814,9115609 -g1,21731:11689106,9115609 -g1,21731:13585980,9115609 -g1,21731:13902126,9115609 -g1,21731:15166709,9115609 -g1,21731:18644312,9115609 -g1,21731:21489623,9115609 -g1,21731:24967226,9115609 -h1,21731:27496391,9115609:0,0,0 -k1,21731:32583029,9115609:5086638 -g1,21731:32583029,9115609 -) -(1,21731:6630773,9781787:25952256,404226,6290 -h1,21731:6630773,9781787:0,0,0 -g1,21731:7579210,9781787 -g1,21731:7895356,9781787 -g1,21731:8211502,9781787 -g1,21731:8527648,9781787 -g1,21731:8843794,9781787 -g1,21731:9159940,9781787 -g1,21731:9476086,9781787 -g1,21731:9792232,9781787 -g1,21731:10108378,9781787 -g1,21731:10424524,9781787 -g1,21731:10740670,9781787 -g1,21731:11056816,9781787 -g1,21731:11372962,9781787 -g1,21731:11689108,9781787 -g1,21731:12005254,9781787 -g1,21731:12321400,9781787 -g1,21731:12637546,9781787 -g1,21731:12953692,9781787 -g1,21731:13269838,9781787 -g1,21731:13585984,9781787 -g1,21731:13902130,9781787 -g1,21731:14218276,9781787 -g1,21731:14534422,9781787 -g1,21731:16431296,9781787 -h1,21731:17379733,9781787:0,0,0 -k1,21731:32583029,9781787:15203296 -g1,21731:32583029,9781787 -) -(1,21731:6630773,10447965:25952256,388497,9436 -h1,21731:6630773,10447965:0,0,0 -g1,21731:7579210,10447965 -g1,21731:10108376,10447965 -g1,21731:13585979,10447965 -g1,21731:16431290,10447965 -g1,21731:16747436,10447965 -h1,21731:17379727,10447965:0,0,0 -k1,21731:32583029,10447965:15203302 -g1,21731:32583029,10447965 -) -(1,21733:6630773,11769503:25952256,410518,82312 -(1,21732:6630773,11769503:0,0,0 -g1,21732:6630773,11769503 -g1,21732:6630773,11769503 -g1,21732:6303093,11769503 -(1,21732:6303093,11769503:0,0,0 -) -g1,21732:6630773,11769503 -) -k1,21733:6630773,11769503:0 -g1,21733:13902124,11769503 -h1,21733:17063581,11769503:0,0,0 -k1,21733:32583029,11769503:15519448 -g1,21733:32583029,11769503 -) -(1,21737:6630773,12435681:25952256,404226,76021 -(1,21735:6630773,12435681:0,0,0 -g1,21735:6630773,12435681 -g1,21735:6630773,12435681 -g1,21735:6303093,12435681 -(1,21735:6303093,12435681:0,0,0 -) -g1,21735:6630773,12435681 -) -g1,21737:7579210,12435681 -g1,21737:8843793,12435681 -h1,21737:10108376,12435681:0,0,0 -k1,21737:32583028,12435681:22474652 -g1,21737:32583028,12435681 -) -(1,21739:6630773,13757219:25952256,410518,76021 -(1,21738:6630773,13757219:0,0,0 -g1,21738:6630773,13757219 -g1,21738:6630773,13757219 -g1,21738:6303093,13757219 -(1,21738:6303093,13757219:0,0,0 -) -g1,21738:6630773,13757219 -) -k1,21739:6630773,13757219:0 -h1,21739:13585978,13757219:0,0,0 -k1,21739:32583030,13757219:18997052 -g1,21739:32583030,13757219 -) -(1,21743:6630773,14423397:25952256,404226,76021 -(1,21741:6630773,14423397:0,0,0 -g1,21741:6630773,14423397 -g1,21741:6630773,14423397 -g1,21741:6303093,14423397 -(1,21741:6303093,14423397:0,0,0 -) -g1,21741:6630773,14423397 -) -g1,21743:7579210,14423397 -g1,21743:8843793,14423397 -h1,21743:10424521,14423397:0,0,0 -k1,21743:32583029,14423397:22158508 -g1,21743:32583029,14423397 -) -(1,21745:6630773,15744935:25952256,410518,76021 -(1,21744:6630773,15744935:0,0,0 -g1,21744:6630773,15744935 -g1,21744:6630773,15744935 -g1,21744:6303093,15744935 -(1,21744:6303093,15744935:0,0,0 -) -g1,21744:6630773,15744935 -) -k1,21745:6630773,15744935:0 -h1,21745:13585978,15744935:0,0,0 -k1,21745:32583030,15744935:18997052 -g1,21745:32583030,15744935 -) -(1,21749:6630773,16411113:25952256,404226,76021 -(1,21747:6630773,16411113:0,0,0 -g1,21747:6630773,16411113 -g1,21747:6630773,16411113 -g1,21747:6303093,16411113 -(1,21747:6303093,16411113:0,0,0 -) -g1,21747:6630773,16411113 -) -g1,21749:7579210,16411113 -g1,21749:8843793,16411113 -h1,21749:10108376,16411113:0,0,0 -k1,21749:32583028,16411113:22474652 -g1,21749:32583028,16411113 -) -(1,21751:6630773,17732651:25952256,410518,76021 -(1,21750:6630773,17732651:0,0,0 -g1,21750:6630773,17732651 -g1,21750:6630773,17732651 -g1,21750:6303093,17732651 -(1,21750:6303093,17732651:0,0,0 -) -g1,21750:6630773,17732651 -) -k1,21751:6630773,17732651:0 -h1,21751:13585978,17732651:0,0,0 -k1,21751:32583030,17732651:18997052 -g1,21751:32583030,17732651 -) -(1,21755:6630773,18398829:25952256,404226,76021 -(1,21753:6630773,18398829:0,0,0 -g1,21753:6630773,18398829 -g1,21753:6630773,18398829 -g1,21753:6303093,18398829 -(1,21753:6303093,18398829:0,0,0 -) -g1,21753:6630773,18398829 -) -g1,21755:7579210,18398829 -g1,21755:8843793,18398829 -h1,21755:10108376,18398829:0,0,0 -k1,21755:32583028,18398829:22474652 -g1,21755:32583028,18398829 -) -] -) -g1,21756:32583029,18474850 -g1,21756:6630773,18474850 -g1,21756:6630773,18474850 -g1,21756:32583029,18474850 -g1,21756:32583029,18474850 -) -h1,21756:6630773,18671458:0,0,0 -v1,21760:6630773,20246577:0,393216,0 -(1,21761:6630773,22496439:25952256,2643078,0 -g1,21761:6630773,22496439 -g1,21761:6303093,22496439 -r1,21799:6401397,22496439:98304,2643078,0 -g1,21761:6600626,22496439 -g1,21761:6797234,22496439 -[1,21761:6797234,22496439:25785795,2643078,0 -(1,21761:6797234,20679115:25785795,825754,196608 -(1,21760:6797234,20679115:0,825754,196608 -r1,21799:7890375,20679115:1093141,1022362,196608 -k1,21760:6797234,20679115:-1093141 -) -(1,21760:6797234,20679115:1093141,825754,196608 -) -k1,21760:8087015,20679115:196640 -k1,21760:9813233,20679115:327680 -k1,21760:12799741,20679115:196640 -(1,21760:12799741,20679115:0,459977,115847 -r1,21799:16675125,20679115:3875384,575824,115847 -k1,21760:12799741,20679115:-3875384 -) -(1,21760:12799741,20679115:3875384,459977,115847 -k1,21760:12799741,20679115:3277 -h1,21760:16671848,20679115:0,411205,112570 -) -k1,21760:16871765,20679115:196640 -k1,21760:18172686,20679115:196639 -k1,21760:19117092,20679115:196640 -k1,21760:20826958,20679115:196640 -k1,21760:21675026,20679115:196640 -k1,21760:24895497,20679115:196640 -k1,21760:25447997,20679115:196640 -k1,21760:26627676,20679115:196639 -k1,21760:28272662,20679115:196640 -k1,21760:30036923,20679115:196640 -k1,21760:31021961,20679115:196640 -k1,21761:32583029,20679115:0 -) -(1,21761:6797234,21520603:25785795,505283,134348 -k1,21760:9571537,21520603:194806 -k1,21760:10382380,21520603:194805 -k1,21760:10933046,21520603:194806 -k1,21760:12365826,21520603:194805 -k1,21760:13845138,21520603:194806 -k1,21760:14571441,21520603:194806 -k1,21760:17435527,21520603:194805 -k1,21760:19663260,21520603:194806 -k1,21760:21226458,21520603:194806 -k1,21760:22967913,21520603:194805 -k1,21760:23775481,21520603:194806 -k1,21760:24989371,21520603:194805 -k1,21760:26572230,21520603:194806 -k1,21760:28265189,21520603:194806 -k1,21760:29651439,21520603:194805 -k1,21760:31189078,21520603:194806 -k1,21760:32583029,21520603:0 -) -(1,21761:6797234,22362091:25785795,513147,134348 -g1,21760:8015548,22362091 -g1,21760:10910273,22362091 -g1,21760:11760930,22362091 -g1,21760:14896827,22362091 -g1,21760:16788196,22362091 -g1,21760:18766072,22362091 -g1,21760:20249807,22362091 -g1,21760:21949810,22362091 -g1,21760:22765077,22362091 -g1,21760:23983391,22362091 -g1,21760:27258880,22362091 -g1,21760:28628582,22362091 -g1,21760:29819371,22362091 -k1,21761:32583029,22362091:854594 -g1,21761:32583029,22362091 -) -] -g1,21761:32583029,22496439 -) -h1,21761:6630773,22496439:0,0,0 -(1,21764:6630773,25670822:25952256,32768,229376 -(1,21764:6630773,25670822:0,32768,229376 -(1,21764:6630773,25670822:5505024,32768,229376 -r1,21799:12135797,25670822:5505024,262144,229376 -) -k1,21764:6630773,25670822:-5505024 -) -(1,21764:6630773,25670822:25952256,32768,0 -r1,21799:32583029,25670822:25952256,32768,0 -) -) -(1,21764:6630773,27275150:25952256,615776,161218 -(1,21764:6630773,27275150:2464678,582746,14155 -g1,21764:6630773,27275150 -g1,21764:9095451,27275150 -) -g1,21764:12687873,27275150 -g1,21764:14397576,27275150 -g1,21764:17462302,27275150 -g1,21764:18933717,27275150 -k1,21764:32583029,27275150:8869378 -g1,21764:32583029,27275150 -) -(1,21767:6630773,28509854:25952256,513147,134348 -k1,21766:9807054,28509854:160970 -k1,21766:10584063,28509854:160971 -k1,21766:11764118,28509854:160970 -k1,21766:13147991,28509854:160971 -k1,21766:13968253,28509854:160970 -k1,21766:15332465,28509854:160971 -k1,21766:17911058,28509854:160970 -k1,21766:19164514,28509854:160971 -k1,21766:20011646,28509854:160970 -k1,21766:20943320,28509854:160971 -k1,21766:24176618,28509854:160970 -k1,21766:25285240,28509854:160971 -k1,21766:26465295,28509854:160970 -(1,21766:26465295,28509854:0,459977,115847 -r1,21799:27878696,28509854:1413401,575824,115847 -k1,21766:26465295,28509854:-1413401 -) -(1,21766:26465295,28509854:1413401,459977,115847 -k1,21766:26465295,28509854:3277 -h1,21766:27875419,28509854:0,411205,112570 -) -k1,21766:28039667,28509854:160971 -k1,21766:30329246,28509854:160970 -k1,21767:32583029,28509854:0 -) -(1,21767:6630773,29351342:25952256,505283,134348 -k1,21766:8096704,29351342:225990 -k1,21766:10182606,29351342:225990 -k1,21766:12187243,29351342:225990 -k1,21766:13096118,29351342:225990 -k1,21766:15107309,29351342:225990 -k1,21766:16524744,29351342:225990 -k1,21766:19676260,29351342:225989 -k1,21766:20921335,29351342:225990 -k1,21766:23549875,29351342:225990 -k1,21766:24458750,29351342:225990 -k1,21766:26942455,29351342:225990 -k1,21766:30573040,29351342:225990 -k1,21766:32583029,29351342:0 -) -(1,21767:6630773,30192830:25952256,513147,126483 -k1,21766:7836554,30192830:186696 -k1,21766:9122943,30192830:186695 -k1,21766:9961067,30192830:186696 -k1,21766:10503622,30192830:186695 -k1,21766:13559484,30192830:186696 -k1,21766:17218933,30192830:186696 -k1,21766:17863725,30192830:186695 -k1,21766:18581918,30192830:186696 -k1,21766:21877642,30192830:186696 -k1,21766:22715765,30192830:186695 -k1,21766:24314762,30192830:186696 -k1,21766:25184342,30192830:186695 -k1,21766:26985845,30192830:186696 -k1,21766:27528401,30192830:186696 -k1,21766:28941275,30192830:186695 -k1,21766:30111011,30192830:186696 -k1,21767:32583029,30192830:0 -) -(1,21767:6630773,31034318:25952256,513147,126483 -k1,21766:8577811,31034318:188052 -k1,21766:9922573,31034318:188052 -k1,21766:11314521,31034318:188052 -k1,21766:12185458,31034318:188052 -k1,21766:14446414,31034318:188052 -k1,21766:15247228,31034318:188052 -k1,21766:15791140,31034318:188052 -k1,21766:17578270,31034318:188052 -k1,21766:18394156,31034318:188051 -k1,21766:20075774,31034318:188052 -k1,21766:21961208,31034318:188052 -k1,21766:22607357,31034318:188052 -k1,21766:23326906,31034318:188052 -k1,21766:25116658,31034318:188052 -k1,21766:27857337,31034318:188052 -k1,21766:28696817,31034318:188052 -k1,21766:30392852,31034318:188052 -k1,21766:31599989,31034318:188052 -k1,21766:32583029,31034318:0 -) -(1,21767:6630773,31875806:25952256,505283,134348 -k1,21766:8462101,31875806:253876 -k1,21766:11351180,31875806:253876 -k1,21766:13347658,31875806:253876 -k1,21766:14792980,31875806:253877 -k1,21766:16657731,31875806:253876 -k1,21766:17930692,31875806:253876 -k1,21766:21690744,31875806:253876 -k1,21766:23320221,31875806:253876 -k1,21766:25272135,31875806:253876 -k1,21766:25984109,31875806:253877 -k1,21766:26769482,31875806:253876 -k1,21766:27832728,31875806:253876 -k1,21766:30111011,31875806:253876 -k1,21766:32583029,31875806:0 -) -(1,21767:6630773,32717294:25952256,513147,115847 -k1,21766:7896445,32717294:215785 -(1,21766:7896445,32717294:0,452978,115847 -r1,21799:13882100,32717294:5985655,568825,115847 -k1,21766:7896445,32717294:-5985655 -) -(1,21766:7896445,32717294:5985655,452978,115847 -k1,21766:7896445,32717294:3277 -h1,21766:13878823,32717294:0,411205,112570 -) -k1,21766:14097884,32717294:215784 -k1,21766:15261320,32717294:215785 -k1,21766:17594573,32717294:215785 -k1,21766:19632914,32717294:215785 -k1,21766:20867783,32717294:215784 -k1,21766:23425825,32717294:215785 -k1,21766:26667407,32717294:215785 -k1,21766:29667160,32717294:215784 -k1,21766:31074390,32717294:215785 -k1,21766:32583029,32717294:0 -) -(1,21767:6630773,33558782:25952256,513147,126483 -k1,21766:9583638,33558782:193144 -k1,21766:10392820,33558782:193144 -k1,21766:13348307,33558782:193144 -k1,21766:14909842,33558782:193143 -k1,21766:15730821,33558782:193144 -k1,21766:16943050,33558782:193144 -k1,21766:18520314,33558782:193144 -k1,21766:21374875,33558782:193144 -k1,21766:22436371,33558782:193144 -k1,21766:24206967,33558782:193144 -k1,21766:24755970,33558782:193143 -k1,21766:25932154,33558782:193144 -k1,21766:29805145,33558782:193144 -k1,21766:31410590,33558782:193144 -k1,21766:32583029,33558782:0 -) -(1,21767:6630773,34400270:25952256,513147,126483 -k1,21766:8471943,34400270:168691 -k1,21766:9946767,34400270:168691 -k1,21766:11134544,34400270:168692 -k1,21766:12375404,34400270:168691 -k1,21766:13700805,34400270:168691 -k1,21766:15263447,34400270:168691 -k1,21766:17815027,34400270:168691 -k1,21766:20662175,34400270:168692 -k1,21766:22264794,34400270:168691 -k1,21766:23049523,34400270:168691 -k1,21766:23574074,34400270:168691 -k1,21766:26445471,34400270:168692 -k1,21766:27713856,34400270:168691 -k1,21766:28533975,34400270:168691 -(1,21766:28533975,34400270:0,452978,115847 -r1,21799:32409359,34400270:3875384,568825,115847 -k1,21766:28533975,34400270:-3875384 -) -(1,21766:28533975,34400270:3875384,452978,115847 -k1,21766:28533975,34400270:3277 -h1,21766:32406082,34400270:0,411205,112570 -) -k1,21766:32583029,34400270:0 -) -(1,21767:6630773,35241758:25952256,513147,126483 -g1,21766:7849087,35241758 -g1,21766:9220755,35241758 -g1,21766:10918792,35241758 -g1,21766:11800906,35241758 -g1,21766:14403340,35241758 -g1,21766:15996520,35241758 -g1,21766:17758783,35241758 -g1,21766:19149457,35241758 -g1,21766:21321320,35241758 -g1,21766:23131424,35241758 -g1,21766:24349738,35241758 -k1,21767:32583029,35241758:4553444 -g1,21767:32583029,35241758 -) -v1,21769:6630773,36274752:0,393216,0 -(1,21777:6630773,37903330:25952256,2021794,196608 -g1,21777:6630773,37903330 -g1,21777:6630773,37903330 -g1,21777:6434165,37903330 -(1,21777:6434165,37903330:0,2021794,196608 -r1,21799:32779637,37903330:26345472,2218402,196608 -k1,21777:6434165,37903330:-26345472 -) -(1,21777:6434165,37903330:26345472,2021794,196608 -[1,21777:6630773,37903330:25952256,1825186,0 -(1,21771:6630773,36488662:25952256,410518,107478 -(1,21770:6630773,36488662:0,0,0 -g1,21770:6630773,36488662 -g1,21770:6630773,36488662 -g1,21770:6303093,36488662 -(1,21770:6303093,36488662:0,0,0 -) -g1,21770:6630773,36488662 -) -g1,21771:7579210,36488662 -g1,21771:8527648,36488662 -g1,21771:21489621,36488662 -g1,21771:23070350,36488662 -g1,21771:23702642,36488662 -g1,21771:25283371,36488662 -g1,21771:25915663,36488662 -g1,21771:27496392,36488662 -g1,21771:28760975,36488662 -k1,21771:28760975,36488662:11010 -h1,21771:30985005,36488662:0,0,0 -k1,21771:32583029,36488662:1598024 -g1,21771:32583029,36488662 -) -(1,21772:6630773,37154840:25952256,410518,82312 -h1,21772:6630773,37154840:0,0,0 -g1,21772:11056813,37154840 -g1,21772:11689105,37154840 -g1,21772:12321397,37154840 -h1,21772:12953689,37154840:0,0,0 -k1,21772:32583029,37154840:19629340 -g1,21772:32583029,37154840 -) -(1,21776:6630773,37821018:25952256,404226,82312 -(1,21774:6630773,37821018:0,0,0 -g1,21774:6630773,37821018 -g1,21774:6630773,37821018 -g1,21774:6303093,37821018 -(1,21774:6303093,37821018:0,0,0 -) -g1,21774:6630773,37821018 -) -g1,21776:7579210,37821018 -g1,21776:8843793,37821018 -k1,21776:8843793,37821018:0 -h1,21776:15482851,37821018:0,0,0 -k1,21776:32583029,37821018:17100178 -g1,21776:32583029,37821018 -) -] -) -g1,21777:32583029,37903330 -g1,21777:6630773,37903330 -g1,21777:6630773,37903330 -g1,21777:32583029,37903330 -g1,21777:32583029,37903330 -) -h1,21777:6630773,38099938:0,0,0 -v1,21781:6630773,39499746:0,393216,0 -(1,21791:6630773,41777393:25952256,2670863,196608 -g1,21791:6630773,41777393 -g1,21791:6630773,41777393 -g1,21791:6434165,41777393 -(1,21791:6434165,41777393:0,2670863,196608 -r1,21799:32779637,41777393:26345472,2867471,196608 -k1,21791:6434165,41777393:-26345472 -) -(1,21791:6434165,41777393:26345472,2670863,196608 -[1,21791:6630773,41777393:25952256,2474255,0 -(1,21783:6630773,39713656:25952256,410518,82312 -(1,21782:6630773,39713656:0,0,0 -g1,21782:6630773,39713656 -g1,21782:6630773,39713656 -g1,21782:6303093,39713656 -(1,21782:6303093,39713656:0,0,0 -) -g1,21782:6630773,39713656 -) -k1,21783:6630773,39713656:0 -g1,21783:11056813,39713656 -g1,21783:11689105,39713656 -g1,21783:12321397,39713656 -h1,21783:12953689,39713656:0,0,0 -k1,21783:32583029,39713656:19629340 -g1,21783:32583029,39713656 -) -(1,21787:6630773,40379834:25952256,404226,82312 -(1,21785:6630773,40379834:0,0,0 -g1,21785:6630773,40379834 -g1,21785:6630773,40379834 -g1,21785:6303093,40379834 -(1,21785:6303093,40379834:0,0,0 -) -g1,21785:6630773,40379834 -) -g1,21787:7579210,40379834 -g1,21787:8843793,40379834 -g1,21787:14850561,40379834 -g1,21787:19908891,40379834 -h1,21787:20541182,40379834:0,0,0 -k1,21787:32583029,40379834:12041847 -g1,21787:32583029,40379834 -) -(1,21789:6630773,41701372:25952256,410518,76021 -(1,21788:6630773,41701372:0,0,0 -g1,21788:6630773,41701372 -g1,21788:6630773,41701372 -g1,21788:6303093,41701372 -(1,21788:6303093,41701372:0,0,0 -) -g1,21788:6630773,41701372 -) -k1,21789:6630773,41701372:0 -h1,21789:9476084,41701372:0,0,0 -k1,21789:32583028,41701372:23106944 -g1,21789:32583028,41701372 -) -] -) -g1,21791:32583029,41777393 -g1,21791:6630773,41777393 -g1,21791:6630773,41777393 -g1,21791:32583029,41777393 -g1,21791:32583029,41777393 -) -h1,21791:6630773,41974001:0,0,0 -(1,21795:6630773,43182305:25952256,513147,115847 -h1,21794:6630773,43182305:983040,0,0 -k1,21794:9649940,43182305:252892 -k1,21794:10317621,43182305:252838 -k1,21794:11102010,43182305:252892 -k1,21794:12868128,43182305:252892 -k1,21794:13737058,43182305:252892 -k1,21794:15751558,43182305:252892 -k1,21794:17960700,43182305:252892 -k1,21794:19232677,43182305:252892 -k1,21794:21399219,43182305:252891 -(1,21794:21399219,43182305:0,452978,115847 -r1,21799:23164332,43182305:1765113,568825,115847 -k1,21794:21399219,43182305:-1765113 -) -(1,21794:21399219,43182305:1765113,452978,115847 -k1,21794:21399219,43182305:3277 -h1,21794:23161055,43182305:0,411205,112570 -) -k1,21794:23590894,43182305:252892 -(1,21794:23590894,43182305:0,452978,115847 -r1,21799:25707719,43182305:2116825,568825,115847 -k1,21794:23590894,43182305:-2116825 -) -(1,21794:23590894,43182305:2116825,452978,115847 -k1,21794:23590894,43182305:3277 -h1,21794:25704442,43182305:0,411205,112570 -) -k1,21794:25960611,43182305:252892 -k1,21794:27404948,43182305:252892 -(1,21794:27404948,43182305:0,452978,115847 -r1,21799:30225197,43182305:2820249,568825,115847 -k1,21794:27404948,43182305:-2820249 -) -(1,21794:27404948,43182305:2820249,452978,115847 -k1,21794:27404948,43182305:3277 -h1,21794:30221920,43182305:0,411205,112570 -) -k1,21794:30478089,43182305:252892 -k1,21794:31835263,43182305:252892 -k1,21794:32583029,43182305:0 -) -(1,21795:6630773,44023793:25952256,513147,126483 -k1,21794:9377639,44023793:227662 -k1,21794:10796746,44023793:227662 -k1,21794:12413771,44023793:227662 -k1,21794:14053734,44023793:227662 -k1,21794:16022688,44023793:227662 -k1,21794:16933235,44023793:227662 -k1,21794:19447447,44023793:227661 -k1,21794:20500207,44023793:227662 -k1,21794:22602199,44023793:227662 -k1,21794:25701648,44023793:227662 -k1,21794:28368560,44023793:227662 -k1,21794:29787667,44023793:227662 -k1,21794:31858201,44023793:227662 -k1,21794:32583029,44023793:0 -) -(1,21795:6630773,44865281:25952256,513147,134348 -k1,21794:9316876,44865281:193769 -k1,21794:10162073,44865281:193769 -k1,21794:10809345,44865281:193763 -k1,21794:15504782,44865281:193769 -k1,21794:17380205,44865281:193769 -k1,21794:18593059,44865281:193769 -k1,21794:19879313,44865281:193769 -k1,21794:20740237,44865281:193768 -k1,21794:21348844,44865281:193764 -k1,21794:23703990,44865281:193769 -k1,21794:24583921,44865281:193769 -k1,21794:26359073,44865281:193768 -k1,21794:27168880,44865281:193769 -k1,21794:28752012,44865281:193769 -k1,21794:30666101,44865281:193769 -k1,21794:32583029,44865281:0 -) -(1,21795:6630773,45706769:25952256,505283,126483 -g1,21794:7516164,45706769 -g1,21794:9218134,45706769 -g1,21794:11578740,45706769 -g1,21794:13664095,45706769 -g1,21794:15315602,45706769 -g1,21794:16706276,45706769 -g1,21794:18607475,45706769 -k1,21795:32583029,45706769:12607162 -g1,21795:32583029,45706769 -) -] -(1,21799:32583029,45706769:0,0,0 -g1,21799:32583029,45706769 -) -) -] -(1,21799:6630773,47279633:25952256,0,0 -h1,21799:6630773,47279633:25952256,0,0 -) -] -(1,21799:4262630,4025873:0,0,0 -[1,21799:-473656,4025873:0,0,0 -(1,21799:-473656,-710413:0,0,0 -(1,21799:-473656,-710413:0,0,0 -g1,21799:-473656,-710413 -) -g1,21799:-473656,-710413 -) -] -) -] -!25668 -}395 -Input:3548:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3549:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3550:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3551:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3552:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3553:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3554:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3555:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!764 -{396 -[1,21849:4262630,47279633:28320399,43253760,0 -(1,21849:4262630,4025873:0,0,0 -[1,21849:-473656,4025873:0,0,0 -(1,21849:-473656,-710413:0,0,0 -(1,21849:-473656,-644877:0,0,0 -k1,21849:-473656,-644877:-65536 -) -(1,21849:-473656,4736287:0,0,0 -k1,21849:-473656,4736287:5209943 +g1,21670:36675916,2439708 +(1,21670:36675916,2439708:1179648,16384,0 +r1,21902:37855564,2439708:1179648,16384,0 ) -g1,21849:-473656,-710413 ) -] +k1,21902:3078556,2439708:-34777008 ) -[1,21849:6630773,47279633:25952256,43253760,0 -[1,21849:6630773,4812305:25952256,786432,0 -(1,21849:6630773,4812305:25952256,513147,126483 -(1,21849:6630773,4812305:25952256,513147,126483 -g1,21849:3078558,4812305 -[1,21849:3078558,4812305:0,0,0 -(1,21849:3078558,2439708:0,1703936,0 -k1,21849:1358238,2439708:-1720320 -(1,21457:1358238,2439708:1720320,1703936,0 -(1,21457:1358238,2439708:1179648,16384,0 -r1,21849:2537886,2439708:1179648,16384,0 +] +[1,21902:3078558,4812305:0,0,0 +(1,21902:3078558,49800853:0,16384,2228224 +k1,21902:1358238,49800853:-1720320 +(1,21670:1358238,49800853:1720320,16384,2228224 +(1,21670:1358238,49800853:1179648,16384,0 +r1,21902:2537886,49800853:1179648,16384,0 ) -g1,21457:3062174,2439708 -(1,21457:3062174,2439708:16384,1703936,0 -[1,21457:3062174,2439708:25952256,1703936,0 -(1,21457:3062174,1915420:25952256,1179648,0 -(1,21457:3062174,1915420:16384,1179648,0 -r1,21849:3078558,1915420:16384,1179648,0 +g1,21670:3062174,49800853 +(1,21670:3062174,52029077:16384,1703936,0 +[1,21670:3062174,52029077:25952256,1703936,0 +(1,21670:3062174,51504789:25952256,1179648,0 +(1,21670:3062174,51504789:16384,1179648,0 +r1,21902:3078558,51504789:16384,1179648,0 ) -k1,21457:29014430,1915420:25935872 -g1,21457:29014430,1915420 +k1,21670:29014430,51504789:25935872 +g1,21670:29014430,51504789 ) ] ) ) ) ] -[1,21849:3078558,4812305:0,0,0 -(1,21849:3078558,2439708:0,1703936,0 -g1,21849:29030814,2439708 -g1,21849:36135244,2439708 -(1,21457:36135244,2439708:1720320,1703936,0 -(1,21457:36135244,2439708:16384,1703936,0 -[1,21457:36135244,2439708:25952256,1703936,0 -(1,21457:36135244,1915420:25952256,1179648,0 -(1,21457:36135244,1915420:16384,1179648,0 -r1,21849:36151628,1915420:16384,1179648,0 +[1,21902:3078558,4812305:0,0,0 +(1,21902:3078558,49800853:0,16384,2228224 +g1,21902:29030814,49800853 +g1,21902:36135244,49800853 +(1,21670:36135244,49800853:1720320,16384,2228224 +(1,21670:36135244,52029077:16384,1703936,0 +[1,21670:36135244,52029077:25952256,1703936,0 +(1,21670:36135244,51504789:25952256,1179648,0 +(1,21670:36135244,51504789:16384,1179648,0 +r1,21902:36151628,51504789:16384,1179648,0 +) +k1,21670:62087500,51504789:25935872 +g1,21670:62087500,51504789 +) +] +) +g1,21670:36675916,49800853 +(1,21670:36675916,49800853:1179648,16384,0 +r1,21902:37855564,49800853:1179648,16384,0 +) +) +k1,21902:3078556,49800853:-34777008 +) +] +g1,21902:6630773,4812305 +k1,21902:21078841,4812305:13252691 +g1,21902:22701512,4812305 +g1,21902:23350318,4812305 +g1,21902:24759997,4812305 +g1,21902:28372341,4812305 +g1,21902:30105768,4812305 +) +) +] +[1,21902:6630773,45706769:25952256,40108032,0 +(1,21902:6630773,45706769:25952256,40108032,0 +(1,21902:6630773,45706769:0,0,0 +g1,21902:6630773,45706769 +) +[1,21902:6630773,45706769:25952256,40108032,0 +(1,21780:6630773,6254097:25952256,513147,126483 +k1,21779:8440583,6254097:242189 +k1,21779:9701857,6254097:242189 +k1,21779:11243626,6254097:242190 +k1,21779:12152971,6254097:242189 +k1,21779:12809960,6254097:242146 +k1,21779:14548336,6254097:242189 +k1,21779:17013506,6254097:242189 +k1,21779:22910797,6254097:242189 +k1,21779:26178784,6254097:242190 +k1,21779:27805093,6254097:242189 +k1,21779:29066367,6254097:242189 +k1,21779:32583029,6254097:0 +) +(1,21780:6630773,7119177:25952256,513147,134348 +k1,21779:8962937,7119177:172753 +k1,21779:10330411,7119177:172753 +k1,21779:12070785,7119177:172753 +k1,21779:13262622,7119177:172752 +k1,21779:14816219,7119177:172753 +k1,21779:15656128,7119177:172753 +k1,21779:16417394,7119177:172753 +k1,21779:17786834,7119177:172753 +k1,21779:19930255,7119177:172753 +k1,21779:21971439,7119177:172753 +k1,21779:23248474,7119177:172753 +k1,21779:24168992,7119177:172752 +k1,21779:27180765,7119177:172753 +k1,21779:28004946,7119177:172753 +k1,21779:29774156,7119177:172753 +k1,21779:32583029,7119177:0 +) +(1,21780:6630773,7984257:25952256,513147,126483 +g1,21779:8716128,7984257 +g1,21779:10047164,7984257 +g1,21779:11110813,7984257 +g1,21779:12257693,7984257 +g1,21779:14342393,7984257 +g1,21779:14956465,7984257 +g1,21779:15687191,7984257 +k1,21780:32583029,7984257:13938198 +g1,21780:32583029,7984257 +) +v1,21782:6630773,8669112:0,393216,0 +(1,21789:6630773,9825722:25952256,1549826,196608 +g1,21789:6630773,9825722 +g1,21789:6630773,9825722 +g1,21789:6434165,9825722 +(1,21789:6434165,9825722:0,1549826,196608 +r1,21902:32779637,9825722:26345472,1746434,196608 +k1,21789:6434165,9825722:-26345472 +) +(1,21789:6434165,9825722:26345472,1549826,196608 +[1,21789:6630773,9825722:25952256,1353218,0 +(1,21784:6630773,8903549:25952256,431045,106246 +(1,21783:6630773,8903549:0,0,0 +g1,21783:6630773,8903549 +g1,21783:6630773,8903549 +g1,21783:6303093,8903549 +(1,21783:6303093,8903549:0,0,0 +) +g1,21783:6630773,8903549 +) +k1,21784:6630773,8903549:0 +k1,21784:6630773,8903549:0 +h1,21784:16921344,8903549:0,0,0 +k1,21784:32583029,8903549:15661685 +g1,21784:32583029,8903549 +) +(1,21788:6630773,9719476:25952256,431045,106246 +(1,21786:6630773,9719476:0,0,0 +g1,21786:6630773,9719476 +g1,21786:6630773,9719476 +g1,21786:6303093,9719476 +(1,21786:6303093,9719476:0,0,0 +) +g1,21786:6630773,9719476 +) +g1,21788:7626635,9719476 +g1,21788:8954451,9719476 +k1,21788:8954451,9719476:0 +h1,21788:13269852,9719476:0,0,0 +k1,21788:32583028,9719476:19313176 +g1,21788:32583028,9719476 +) +] +) +g1,21789:32583029,9825722 +g1,21789:6630773,9825722 +g1,21789:6630773,9825722 +g1,21789:32583029,9825722 +g1,21789:32583029,9825722 +) +h1,21789:6630773,10022330:0,0,0 +v1,21793:6630773,10887410:0,393216,0 +(1,21814:6630773,20108994:25952256,9614800,0 +g1,21814:6630773,20108994 +g1,21814:6237557,20108994 +r1,21902:6368629,20108994:131072,9614800,0 +g1,21814:6567858,20108994 +g1,21814:6764466,20108994 +[1,21814:6764466,20108994:25818563,9614800,0 +(1,21797:6764466,11248587:25818563,754393,260573 +(1,21793:6764466,11248587:0,754393,260573 +r1,21902:8010564,11248587:1246098,1014966,260573 +k1,21793:6764466,11248587:-1246098 +) +(1,21793:6764466,11248587:1246098,754393,260573 +) +k1,21793:8171807,11248587:161243 +k1,21793:8499487,11248587:327680 +k1,21793:8499487,11248587:0 +k1,21794:8660731,11248587:161244 +k1,21795:8660731,11248587:0 +k1,21796:10596689,11248587:161243 +k1,21796:11373971,11248587:161244 +k1,21796:12986836,11248587:161243 +k1,21796:14339525,11248587:161244 +k1,21796:16253856,11248587:161243 +k1,21796:18335959,11248587:161243 +k1,21796:20836838,11248587:161244 +k1,21796:21614119,11248587:161243 +k1,21796:22758403,11248587:161244 +k1,21796:24698293,11248587:161243 +k1,21796:25391034,11248587:161244 +k1,21796:27977109,11248587:161243 +k1,21796:29532304,11248587:161244 +k1,21796:30049407,11248587:161243 +k1,21796:32583029,11248587:0 +) +(1,21797:6764466,12113667:25818563,530548,102891 +k1,21796:8684602,12113667:283702 +k1,21796:11942984,12113667:283703 +h1,21796:12150078,12113667:0,0,0 +k1,21796:13229486,12113667:283702 +k1,21796:15399314,12113667:283702 +k1,21796:19623041,12113667:283703 +k1,21796:20364840,12113667:283702 +k1,21796:21180040,12113667:283703 +k1,21796:23888574,12113667:283702 +k1,21796:25566227,12113667:283702 +k1,21796:26205790,12113667:283703 +k1,21796:29608350,12113667:283702 +k1,21796:32583029,12113667:0 +) +(1,21797:6764466,12978747:25818563,530548,126483 +h1,21796:6971560,12978747:0,0,0 +k1,21796:8035343,12978747:268077 +k1,21796:11420969,12978747:268078 +h1,21796:11628063,12978747:0,0,0 +k1,21796:12518176,12978747:268077 +k1,21796:13317750,12978747:268077 +k1,21796:14356530,12978747:268077 +k1,21796:16759771,12978747:268078 +k1,21796:20002527,12978747:268077 +k1,21796:20886642,12978747:268077 +k1,21796:21569493,12978747:268008 +k1,21796:23029016,12978747:268078 +k1,21796:26887155,12978747:268077 +k1,21796:27841394,12978747:268077 +k1,21796:29128557,12978747:268078 +k1,21796:30884957,12978747:268077 +k1,21796:31812326,12978747:268077 +k1,21796:32583029,12978747:0 +) +(1,21797:6764466,13843827:25818563,513147,134348 +k1,21796:10257162,13843827:168055 +k1,21796:12619363,13843827:168056 +k1,21796:15727363,13843827:168055 +k1,21796:16554710,13843827:168055 +k1,21796:20027746,13843827:168055 +k1,21796:21427879,13843827:168056 +k1,21796:23874621,13843827:168055 +h1,21796:24845209,13843827:0,0,0 +k1,21796:25013264,13843827:168055 +k1,21796:25990690,13843827:168056 +k1,21796:27656898,13843827:168055 +h1,21796:28453816,13843827:0,0,0 +k1,21796:29002635,13843827:168055 +k1,21796:30860208,13843827:168055 +k1,21796:31644302,13843827:168056 +k1,21796:32227169,13843827:168024 +k1,21796:32583029,13843827:0 +) +(1,21797:6764466,14708907:25818563,530548,126483 +k1,21796:9499698,14708907:201610 +k1,21796:11337741,14708907:201609 +h1,21796:11544835,14708907:0,0,0 +k1,21796:12368481,14708907:201610 +k1,21796:13674373,14708907:201610 +k1,21796:14623748,14708907:201609 +k1,21796:16338584,14708907:201610 +k1,21796:17487845,14708907:201610 +k1,21796:18672494,14708907:201609 +k1,21796:20652751,14708907:201610 +k1,21796:22740486,14708907:201609 +k1,21796:24073903,14708907:201610 +k1,21796:25313603,14708907:201610 +k1,21796:26706657,14708907:201609 +k1,21796:29464171,14708907:201610 +k1,21796:32583029,14708907:0 +) +(1,21797:6764466,15573987:25818563,530548,126483 +h1,21796:6971560,15573987:0,0,0 +k1,21796:8194038,15573987:185499 +k1,21796:8911034,15573987:185499 +k1,21796:10636630,15573987:185500 +k1,21796:12197730,15573987:185499 +k1,21796:14269355,15573987:185499 +k1,21796:18649158,15573987:185499 +k1,21796:23355331,15573987:185499 +h1,21796:23355331,15573987:0,0,0 +k1,21796:23955772,15573987:185499 +k1,21796:26321655,15573987:185500 +k1,21796:27254920,15573987:185499 +k1,21796:29569684,15573987:185499 +k1,21796:32583029,15573987:0 +) +(1,21797:6764466,16439067:25818563,530548,126483 +g1,21796:7615123,16439067 +h1,21796:7615123,16439067:0,0,0 +g1,21796:8644237,16439067 +g1,21796:9494894,16439067 +g1,21796:11837150,16439067 +g1,21796:15552386,16439067 +g1,21796:16943060,16439067 +g1,21796:17673786,16439067 +g1,21796:18892100,16439067 +g1,21796:22075839,16439067 +g1,21796:23788294,16439067 +g1,21796:24603561,16439067 +g1,21796:26006031,16439067 +k1,21797:32583029,16439067:4821288 +g1,21797:32583029,16439067 +) +v1,21799:6764466,17123922:0,393216,0 +(1,21812:6764466,19912386:25818563,3181680,196608 +g1,21812:6764466,19912386 +g1,21812:6764466,19912386 +g1,21812:6567858,19912386 +(1,21812:6567858,19912386:0,3181680,196608 +r1,21902:32779637,19912386:26211779,3378288,196608 +k1,21812:6567857,19912386:-26211780 +) +(1,21812:6567858,19912386:26211779,3181680,196608 +[1,21812:6764466,19912386:25818563,2985072,0 +(1,21801:6764466,17358359:25818563,431045,106246 +(1,21800:6764466,17358359:0,0,0 +g1,21800:6764466,17358359 +g1,21800:6764466,17358359 +g1,21800:6436786,17358359 +(1,21800:6436786,17358359:0,0,0 +) +g1,21800:6764466,17358359 +) +k1,21801:6764466,17358359:0 +k1,21801:6764466,17358359:0 +h1,21801:17055037,17358359:0,0,0 +k1,21801:32583029,17358359:15527992 +g1,21801:32583029,17358359 +) +(1,21805:6764466,18174286:25818563,431045,106246 +(1,21803:6764466,18174286:0,0,0 +g1,21803:6764466,18174286 +g1,21803:6764466,18174286 +g1,21803:6436786,18174286 +(1,21803:6436786,18174286:0,0,0 +) +g1,21803:6764466,18174286 +) +g1,21805:7760328,18174286 +g1,21805:9088144,18174286 +k1,21805:9088144,18174286:0 +h1,21805:13403545,18174286:0,0,0 +k1,21805:32583029,18174286:19179484 +g1,21805:32583029,18174286 +) +(1,21807:6764466,18990213:25818563,431045,106246 +(1,21806:6764466,18990213:0,0,0 +g1,21806:6764466,18990213 +g1,21806:6764466,18990213 +g1,21806:6436786,18990213 +(1,21806:6436786,18990213:0,0,0 +) +g1,21806:6764466,18990213 +) +k1,21807:6764466,18990213:0 +k1,21807:6764466,18990213:0 +h1,21807:17386991,18990213:0,0,0 +k1,21807:32583029,18990213:15196038 +g1,21807:32583029,18990213 +) +(1,21811:6764466,19806140:25818563,431045,106246 +(1,21809:6764466,19806140:0,0,0 +g1,21809:6764466,19806140 +g1,21809:6764466,19806140 +g1,21809:6436786,19806140 +(1,21809:6436786,19806140:0,0,0 +) +g1,21809:6764466,19806140 +) +g1,21811:7760328,19806140 +g1,21811:9088144,19806140 +k1,21811:9088144,19806140:0 +h1,21811:13403545,19806140:0,0,0 +k1,21811:32583029,19806140:19179484 +g1,21811:32583029,19806140 +) +] +) +g1,21812:32583029,19912386 +g1,21812:6764466,19912386 +g1,21812:6764466,19912386 +g1,21812:32583029,19912386 +g1,21812:32583029,19912386 +) +h1,21812:6764466,20108994:0,0,0 +] +g1,21814:32583029,20108994 +) +h1,21814:6630773,20108994:0,0,0 +(1,21817:6630773,20974074:25952256,513147,126483 +h1,21816:6630773,20974074:983040,0,0 +k1,21816:9020102,20974074:209602 +k1,21816:14195367,20974074:209602 +k1,21816:17100465,20974074:209602 +k1,21816:17961495,20974074:209602 +(1,21816:17961495,20974074:0,452978,115847 +r1,21902:21485167,20974074:3523672,568825,115847 +k1,21816:17961495,20974074:-3523672 +) +(1,21816:17961495,20974074:3523672,452978,115847 +k1,21816:17961495,20974074:3277 +h1,21816:21481890,20974074:0,411205,112570 +) +k1,21816:21694770,20974074:209603 +k1,21816:22435869,20974074:209602 +(1,21816:22435869,20974074:0,452978,115847 +r1,21902:25607829,20974074:3171960,568825,115847 +k1,21816:22435869,20974074:-3171960 +) +(1,21816:22435869,20974074:3171960,452978,115847 +k1,21816:22435869,20974074:3277 +h1,21816:25604552,20974074:0,411205,112570 +) +k1,21816:25817431,20974074:209602 +k1,21816:27218478,20974074:209602 +k1,21816:29962357,20974074:209602 +k1,21816:31191044,20974074:209602 +k1,21816:32583029,20974074:0 +) +(1,21817:6630773,21839154:25952256,513147,134348 +g1,21816:8278348,21839154 +g1,21816:9129005,21839154 +g1,21816:10347319,21839154 +g1,21816:13908545,21839154 +g1,21816:16202305,21839154 +g1,21816:17969155,21839154 +g1,21816:18524244,21839154 +g1,21816:19813337,21839154 +g1,21816:20995606,21839154 +k1,21817:32583029,21839154:9965407 +g1,21817:32583029,21839154 +) +v1,21819:6630773,22524009:0,393216,0 +(1,21826:6630773,23654195:25952256,1523402,196608 +g1,21826:6630773,23654195 +g1,21826:6630773,23654195 +g1,21826:6434165,23654195 +(1,21826:6434165,23654195:0,1523402,196608 +r1,21902:32779637,23654195:26345472,1720010,196608 +k1,21826:6434165,23654195:-26345472 +) +(1,21826:6434165,23654195:26345472,1523402,196608 +[1,21826:6630773,23654195:25952256,1326794,0 +(1,21821:6630773,22758446:25952256,431045,106246 +(1,21820:6630773,22758446:0,0,0 +g1,21820:6630773,22758446 +g1,21820:6630773,22758446 +g1,21820:6303093,22758446 +(1,21820:6303093,22758446:0,0,0 +) +g1,21820:6630773,22758446 +) +k1,21821:6630773,22758446:0 +k1,21821:6630773,22758446:0 +h1,21821:16589391,22758446:0,0,0 +k1,21821:32583029,22758446:15993638 +g1,21821:32583029,22758446 +) +(1,21825:6630773,23574373:25952256,424439,79822 +(1,21823:6630773,23574373:0,0,0 +g1,21823:6630773,23574373 +g1,21823:6630773,23574373 +g1,21823:6303093,23574373 +(1,21823:6303093,23574373:0,0,0 +) +g1,21823:6630773,23574373 +) +g1,21825:7626635,23574373 +g1,21825:8954451,23574373 +h1,21825:11942036,23574373:0,0,0 +k1,21825:32583028,23574373:20640992 +g1,21825:32583028,23574373 +) +] +) +g1,21826:32583029,23654195 +g1,21826:6630773,23654195 +g1,21826:6630773,23654195 +g1,21826:32583029,23654195 +g1,21826:32583029,23654195 +) +h1,21826:6630773,23850803:0,0,0 +(1,21832:6630773,24715883:25952256,505283,134348 +h1,21831:6630773,24715883:983040,0,0 +k1,21831:10907822,24715883:173840 +(1,21831:10907822,24715883:0,452978,122846 +r1,21902:13376359,24715883:2468537,575824,122846 +k1,21831:10907822,24715883:-2468537 +) +(1,21831:10907822,24715883:2468537,452978,122846 +k1,21831:10907822,24715883:3277 +h1,21831:13373082,24715883:0,411205,112570 +) +k1,21831:13550199,24715883:173840 +k1,21831:14915483,24715883:173839 +(1,21831:14915483,24715883:0,452978,115847 +r1,21902:17384020,24715883:2468537,568825,115847 +k1,21831:14915483,24715883:-2468537 +) +(1,21831:14915483,24715883:2468537,452978,115847 +k1,21831:14915483,24715883:3277 +h1,21831:17380743,24715883:0,411205,112570 +) +k1,21831:17557860,24715883:173840 +k1,21831:18835982,24715883:173840 +k1,21831:19757588,24715883:173840 +k1,21831:21444653,24715883:173839 +k1,21831:22269921,24715883:173840 +k1,21831:23422214,24715883:173840 +k1,21831:24615139,24715883:173840 +k1,21831:26237325,24715883:173840 +k1,21831:27062592,24715883:173839 +k1,21831:28255517,24715883:173840 +k1,21831:30773580,24715883:173840 +k1,21832:32583029,24715883:0 +) +(1,21832:6630773,25580963:25952256,505283,134348 +g1,21831:7820251,25580963 +g1,21831:10911584,25580963 +g1,21831:12302258,25580963 +g1,21831:13152915,25580963 +g1,21831:14286687,25580963 +g1,21831:14841776,25580963 +g1,21831:17933109,25580963 +g1,21831:18818500,25580963 +g1,21831:21535622,25580963 +k1,21832:32583029,25580963:7077236 +g1,21832:32583029,25580963 +) +v1,21834:6630773,26265818:0,393216,0 +(1,21839:6630773,27264931:25952256,1392329,196608 +g1,21839:6630773,27264931 +g1,21839:6630773,27264931 +g1,21839:6434165,27264931 +(1,21839:6434165,27264931:0,1392329,196608 +r1,21902:32779637,27264931:26345472,1588937,196608 +k1,21839:6434165,27264931:-26345472 +) +(1,21839:6434165,27264931:26345472,1392329,196608 +[1,21839:6630773,27264931:25952256,1195721,0 +(1,21836:6630773,26467224:25952256,398014,6605 +(1,21835:6630773,26467224:0,0,0 +g1,21835:6630773,26467224 +g1,21835:6630773,26467224 +g1,21835:6303093,26467224 +(1,21835:6303093,26467224:0,0,0 +) +g1,21835:6630773,26467224 +) +g1,21836:7294681,26467224 +g1,21836:8622497,26467224 +k1,21836:8622497,26467224:0 +h1,21836:9618359,26467224:0,0,0 +k1,21836:32583029,26467224:22964670 +g1,21836:32583029,26467224 +) +(1,21837:6630773,27152079:25952256,424439,112852 +h1,21837:6630773,27152079:0,0,0 +k1,21837:6630773,27152079:0 +h1,21837:8954451,27152079:0,0,0 +k1,21837:32583029,27152079:23628578 +g1,21837:32583029,27152079 +) +] +) +g1,21839:32583029,27264931 +g1,21839:6630773,27264931 +g1,21839:6630773,27264931 +g1,21839:32583029,27264931 +g1,21839:32583029,27264931 +) +h1,21839:6630773,27461539:0,0,0 +(1,21843:6630773,28326619:25952256,505283,134348 +h1,21842:6630773,28326619:983040,0,0 +k1,21842:10660013,28326619:256332 +(1,21842:10660013,28326619:0,452978,115847 +r1,21902:13128550,28326619:2468537,568825,115847 +k1,21842:10660013,28326619:-2468537 +) +(1,21842:10660013,28326619:2468537,452978,115847 +k1,21842:10660013,28326619:3277 +h1,21842:13125273,28326619:0,411205,112570 +) +k1,21842:13384881,28326619:256331 +k1,21842:15982159,28326619:256332 +k1,21842:17257575,28326619:256331 +k1,21842:18962253,28326619:256332 +k1,21842:19870012,28326619:256331 +k1,21842:21145429,28326619:256332 +k1,21842:23745983,28326619:256331 +k1,21842:26589021,28326619:256332 +k1,21842:29911126,28326619:256331 +k1,21842:32583029,28326619:0 +) +(1,21843:6630773,29191699:25952256,505283,134348 +k1,21842:7612956,29191699:237039 +k1,21842:8501422,29191699:237038 +k1,21842:11421505,29191699:237039 +k1,21842:12593086,29191699:237038 +k1,21842:13849210,29191699:237039 +k1,21842:16672955,29191699:237039 +k1,21842:19802097,29191699:237038 +k1,21842:20690564,29191699:237039 +k1,21842:21946688,29191699:237039 +k1,21842:24938204,29191699:237038 +k1,21842:26505624,29191699:237039 +k1,21842:28208047,29191699:237038 +k1,21842:30804382,29191699:237039 +k1,21842:32583029,29191699:0 +) +(1,21843:6630773,30056779:25952256,505283,134348 +k1,21842:9462857,30056779:265694 +k1,21842:10379979,30056779:265694 +k1,21842:11664758,30056779:265694 +k1,21842:14274674,30056779:265693 +k1,21842:17127074,30056779:265694 +k1,21842:20665636,30056779:265694 +k1,21842:21617492,30056779:265694 +k1,21842:22499224,30056779:265694 +k1,21842:23784003,30056779:265694 +k1,21842:26884783,30056779:265693 +k1,21842:27833362,30056779:265694 +k1,21842:30804382,30056779:265694 +k1,21842:32583029,30056779:0 +) +(1,21843:6630773,30921859:25952256,513147,134348 +k1,21842:8776791,30921859:244163 +k1,21842:9636993,30921859:244164 +k1,21842:11178114,30921859:244163 +k1,21842:12413838,30921859:244164 +k1,21842:15474083,30921859:244163 +k1,21842:16404408,30921859:244163 +k1,21842:17419275,30921859:244164 +k1,21842:20909436,30921859:244163 +k1,21842:21781434,30921859:244163 +k1,21842:25816200,30921859:244164 +k1,21842:27255084,30921859:244163 +(1,21842:27555239,30921859:0,414482,115847 +r1,21902:27913505,30921859:358266,530329,115847 +k1,21842:27555239,30921859:-358266 +) +(1,21842:27555239,30921859:358266,414482,115847 +k1,21842:27555239,30921859:3277 +h1,21842:27910228,30921859:0,411205,112570 +) +k1,21842:28457824,30921859:244164 +k1,21842:31563944,30921859:244163 +k1,21842:32583029,30921859:0 +) +(1,21843:6630773,31786939:25952256,505283,126483 +g1,21842:9174225,31786939 +g1,21842:12265558,31786939 +g1,21842:13656232,31786939 +(1,21842:13956387,31786939:0,414482,115847 +r1,21902:14666365,31786939:709978,530329,115847 +k1,21842:13956387,31786939:-709978 +) +(1,21842:13956387,31786939:709978,414482,115847 +k1,21842:13956387,31786939:3277 +h1,21842:14663088,31786939:0,411205,112570 +) +g1,21842:15165749,31786939 +g1,21842:16384063,31786939 +g1,21842:19475396,31786939 +g1,21842:21529949,31786939 +g1,21842:22748263,31786939 +g1,21842:25291715,31786939 +k1,21843:32583029,31786939:5960933 +g1,21843:32583029,31786939 +) +v1,21845:6630773,32471794:0,393216,0 +(1,21851:6630773,34155762:25952256,2077184,196608 +g1,21851:6630773,34155762 +g1,21851:6630773,34155762 +g1,21851:6434165,34155762 +(1,21851:6434165,34155762:0,2077184,196608 +r1,21902:32779637,34155762:26345472,2273792,196608 +k1,21851:6434165,34155762:-26345472 +) +(1,21851:6434165,34155762:26345472,2077184,196608 +[1,21851:6630773,34155762:25952256,1880576,0 +(1,21847:6630773,32673200:25952256,398014,6605 +(1,21846:6630773,32673200:0,0,0 +g1,21846:6630773,32673200 +g1,21846:6630773,32673200 +g1,21846:6303093,32673200 +(1,21846:6303093,32673200:0,0,0 +) +g1,21846:6630773,32673200 +) +g1,21847:7294681,32673200 +g1,21847:8622497,32673200 +k1,21847:8622497,32673200:0 +h1,21847:9618359,32673200:0,0,0 +k1,21847:32583029,32673200:22964670 +g1,21847:32583029,32673200 +) +(1,21848:6630773,33358055:25952256,424439,79822 +h1,21848:6630773,33358055:0,0,0 +g1,21848:8622497,33358055 +g1,21848:9618359,33358055 +k1,21848:9618359,33358055:0 +h1,21848:13269853,33358055:0,0,0 +k1,21848:32583029,33358055:19313176 +g1,21848:32583029,33358055 +) +(1,21849:6630773,34042910:25952256,424439,112852 +h1,21849:6630773,34042910:0,0,0 +k1,21849:6630773,34042910:0 +h1,21849:8954451,34042910:0,0,0 +k1,21849:32583029,34042910:23628578 +g1,21849:32583029,34042910 +) +] +) +g1,21851:32583029,34155762 +g1,21851:6630773,34155762 +g1,21851:6630773,34155762 +g1,21851:32583029,34155762 +g1,21851:32583029,34155762 +) +h1,21851:6630773,34352370:0,0,0 +(1,21855:6630773,35217450:25952256,513147,126483 +h1,21854:6630773,35217450:983040,0,0 +k1,21854:9042731,35217450:232231 +k1,21854:12053690,35217450:232232 +k1,21854:13966264,35217450:232231 +k1,21854:14729993,35217450:232232 +k1,21854:17091489,35217450:232231 +k1,21854:18094424,35217450:232232 +k1,21854:21031981,35217450:232231 +k1,21854:22354076,35217450:232231 +k1,21854:24208324,35217450:232232 +k1,21854:25165383,35217450:232231 +k1,21854:25855712,35217450:232232 +k1,21854:28645813,35217450:232231 +k1,21854:30418141,35217450:232232 +k1,21854:32117068,35217450:232231 +k1,21854:32583029,35217450:0 +) +(1,21855:6630773,36082530:25952256,513147,134348 +g1,21854:7849087,36082530 +g1,21854:9496662,36082530 +g1,21854:10347319,36082530 +g1,21854:11565633,36082530 +g1,21854:14351568,36082530 +g1,21854:17442901,36082530 +g1,21854:20213107,36082530 +g1,21854:22062533,36082530 +g1,21854:23704209,36082530 +g1,21854:25393727,36082530 +g1,21854:27635713,36082530 +g1,21854:29572957,36082530 +k1,21855:32583029,36082530:162533 +g1,21855:32583029,36082530 +) +v1,21857:6630773,36767385:0,393216,0 +(1,21864:6630773,39136208:25952256,2762039,196608 +g1,21864:6630773,39136208 +g1,21864:6630773,39136208 +g1,21864:6434165,39136208 +(1,21864:6434165,39136208:0,2762039,196608 +r1,21902:32779637,39136208:26345472,2958647,196608 +k1,21864:6434165,39136208:-26345472 +) +(1,21864:6434165,39136208:26345472,2762039,196608 +[1,21864:6630773,39136208:25952256,2565431,0 +(1,21859:6630773,36968791:25952256,398014,6605 +(1,21858:6630773,36968791:0,0,0 +g1,21858:6630773,36968791 +g1,21858:6630773,36968791 +g1,21858:6303093,36968791 +(1,21858:6303093,36968791:0,0,0 +) +g1,21858:6630773,36968791 +) +g1,21859:7294681,36968791 +g1,21859:8622497,36968791 +k1,21859:8622497,36968791:0 +h1,21859:9618359,36968791:0,0,0 +k1,21859:32583029,36968791:22964670 +g1,21859:32583029,36968791 +) +(1,21860:6630773,37653646:25952256,424439,6605 +h1,21860:6630773,37653646:0,0,0 +h1,21860:8290543,37653646:0,0,0 +k1,21860:32583029,37653646:24292486 +g1,21860:32583029,37653646 +) +(1,21861:6630773,38338501:25952256,424439,79822 +h1,21861:6630773,38338501:0,0,0 +k1,21861:6630773,38338501:0 +h1,21861:10614221,38338501:0,0,0 +k1,21861:32583029,38338501:21968808 +g1,21861:32583029,38338501 +) +(1,21862:6630773,39023356:25952256,424439,112852 +h1,21862:6630773,39023356:0,0,0 +k1,21862:6630773,39023356:0 +h1,21862:8954451,39023356:0,0,0 +k1,21862:32583029,39023356:23628578 +g1,21862:32583029,39023356 +) +] +) +g1,21864:32583029,39136208 +g1,21864:6630773,39136208 +g1,21864:6630773,39136208 +g1,21864:32583029,39136208 +g1,21864:32583029,39136208 +) +h1,21864:6630773,39332816:0,0,0 +(1,21870:6630773,40197896:25952256,513147,126483 +h1,21869:6630773,40197896:983040,0,0 +k1,21869:8852717,40197896:285355 +k1,21869:10242353,40197896:285354 +k1,21869:11813524,40197896:285355 +k1,21869:14122630,40197896:285354 +k1,21869:15731812,40197896:285355 +k1,21869:16676459,40197896:285355 +k1,21869:18275155,40197896:285354 +k1,21869:20770384,40197896:285355 +k1,21869:24465576,40197896:285354 +k1,21869:25526222,40197896:285355 +k1,21869:27156375,40197896:285354 +k1,21869:29899985,40197896:285355 +k1,21869:32583029,40197896:0 +) +(1,21870:6630773,41062976:25952256,485622,11795 +g1,21869:8862929,41062976 +k1,21870:32583029,41062976:22351708 +g1,21870:32583029,41062976 +) +v1,21872:6630773,41747831:0,393216,0 +(1,21902:6630773,45510161:25952256,4155546,196608 +g1,21902:6630773,45510161 +g1,21902:6630773,45510161 +g1,21902:6434165,45510161 +(1,21902:6434165,45510161:0,4155546,196608 +r1,21902:32779637,45510161:26345472,4352154,196608 +k1,21902:6434165,45510161:-26345472 +) +(1,21902:6434165,45510161:26345472,4155546,196608 +[1,21902:6630773,45510161:25952256,3958938,0 +(1,21874:6630773,41982268:25952256,431045,79822 +(1,21873:6630773,41982268:0,0,0 +g1,21873:6630773,41982268 +g1,21873:6630773,41982268 +g1,21873:6303093,41982268 +(1,21873:6303093,41982268:0,0,0 +) +g1,21873:6630773,41982268 +) +k1,21874:6630773,41982268:0 +k1,21874:6630773,41982268:0 +h1,21874:12605944,41982268:0,0,0 +k1,21874:32583028,41982268:19977084 +g1,21874:32583028,41982268 +) +(1,21883:6630773,42664495:25952256,424439,106246 +(1,21876:6630773,42664495:0,0,0 +g1,21876:6630773,42664495 +g1,21876:6630773,42664495 +g1,21876:6303093,42664495 +(1,21876:6303093,42664495:0,0,0 +) +g1,21876:6630773,42664495 +) +g1,21883:7626635,42664495 +g1,21883:8954451,42664495 +h1,21883:12937898,42664495:0,0,0 +k1,21883:32583030,42664495:19645132 +g1,21883:32583030,42664495 +) +(1,21883:6630773,43349350:25952256,424439,112852 +h1,21883:6630773,43349350:0,0,0 +g1,21883:7626635,43349350 +g1,21883:8954451,43349350 +h1,21883:13601806,43349350:0,0,0 +k1,21883:32583030,43349350:18981224 +g1,21883:32583030,43349350 +) +(1,21883:6630773,44034205:25952256,431045,106246 +h1,21883:6630773,44034205:0,0,0 +g1,21883:7626635,44034205 +g1,21883:8954451,44034205 +k1,21883:8954451,44034205:0 +h1,21883:21900656,44034205:0,0,0 +k1,21883:32583029,44034205:10682373 +g1,21883:32583029,44034205 +) +(1,21883:6630773,44719060:25952256,431045,106246 +h1,21883:6630773,44719060:0,0,0 +g1,21883:7626635,44719060 +g1,21883:8954451,44719060 +k1,21883:8954451,44719060:0 +h1,21883:22564564,44719060:0,0,0 +k1,21883:32583029,44719060:10018465 +g1,21883:32583029,44719060 +) +(1,21883:6630773,45403915:25952256,431045,106246 +h1,21883:6630773,45403915:0,0,0 +g1,21883:7626635,45403915 +g1,21883:8954451,45403915 +k1,21883:8954451,45403915:0 +h1,21883:22564564,45403915:0,0,0 +k1,21883:32583029,45403915:10018465 +g1,21883:32583029,45403915 +) +] +) +g1,21902:32583029,45510161 +g1,21902:6630773,45510161 +g1,21902:6630773,45510161 +g1,21902:32583029,45510161 +g1,21902:32583029,45510161 +) +] +(1,21902:32583029,45706769:0,0,0 +g1,21902:32583029,45706769 +) +) +] +(1,21902:6630773,47279633:25952256,0,0 +h1,21902:6630773,47279633:25952256,0,0 +) +] +(1,21902:4262630,4025873:0,0,0 +[1,21902:-473656,4025873:0,0,0 +(1,21902:-473656,-710413:0,0,0 +(1,21902:-473656,-710413:0,0,0 +g1,21902:-473656,-710413 +) +g1,21902:-473656,-710413 +) +] +) +] +!28146 +}377 +Input:3570:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3571:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3572:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3573:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3574:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3575:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3576:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3577:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3578:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3579:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3580:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3581:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1140 +{378 +[1,21974:4262630,47279633:28320399,43253760,0 +(1,21974:4262630,4025873:0,0,0 +[1,21974:-473656,4025873:0,0,0 +(1,21974:-473656,-710413:0,0,0 +(1,21974:-473656,-644877:0,0,0 +k1,21974:-473656,-644877:-65536 ) -k1,21457:62087500,1915420:25935872 -g1,21457:62087500,1915420 +(1,21974:-473656,4736287:0,0,0 +k1,21974:-473656,4736287:5209943 +) +g1,21974:-473656,-710413 ) ] ) -g1,21457:36675916,2439708 -(1,21457:36675916,2439708:1179648,16384,0 -r1,21849:37855564,2439708:1179648,16384,0 +[1,21974:6630773,47279633:25952256,43253760,0 +[1,21974:6630773,4812305:25952256,786432,0 +(1,21974:6630773,4812305:25952256,505283,126483 +(1,21974:6630773,4812305:25952256,505283,126483 +g1,21974:3078558,4812305 +[1,21974:3078558,4812305:0,0,0 +(1,21974:3078558,2439708:0,1703936,0 +k1,21974:1358238,2439708:-1720320 +(1,21670:1358238,2439708:1720320,1703936,0 +(1,21670:1358238,2439708:1179648,16384,0 +r1,21974:2537886,2439708:1179648,16384,0 ) +g1,21670:3062174,2439708 +(1,21670:3062174,2439708:16384,1703936,0 +[1,21670:3062174,2439708:25952256,1703936,0 +(1,21670:3062174,1915420:25952256,1179648,0 +(1,21670:3062174,1915420:16384,1179648,0 +r1,21974:3078558,1915420:16384,1179648,0 ) -k1,21849:3078556,2439708:-34777008 +k1,21670:29014430,1915420:25935872 +g1,21670:29014430,1915420 ) ] -[1,21849:3078558,4812305:0,0,0 -(1,21849:3078558,49800853:0,16384,2228224 -k1,21849:1358238,49800853:-1720320 -(1,21457:1358238,49800853:1720320,16384,2228224 -(1,21457:1358238,49800853:1179648,16384,0 -r1,21849:2537886,49800853:1179648,16384,0 ) -g1,21457:3062174,49800853 -(1,21457:3062174,52029077:16384,1703936,0 -[1,21457:3062174,52029077:25952256,1703936,0 -(1,21457:3062174,51504789:25952256,1179648,0 -(1,21457:3062174,51504789:16384,1179648,0 -r1,21849:3078558,51504789:16384,1179648,0 ) -k1,21457:29014430,51504789:25935872 -g1,21457:29014430,51504789 +) +] +[1,21974:3078558,4812305:0,0,0 +(1,21974:3078558,2439708:0,1703936,0 +g1,21974:29030814,2439708 +g1,21974:36135244,2439708 +(1,21670:36135244,2439708:1720320,1703936,0 +(1,21670:36135244,2439708:16384,1703936,0 +[1,21670:36135244,2439708:25952256,1703936,0 +(1,21670:36135244,1915420:25952256,1179648,0 +(1,21670:36135244,1915420:16384,1179648,0 +r1,21974:36151628,1915420:16384,1179648,0 +) +k1,21670:62087500,1915420:25935872 +g1,21670:62087500,1915420 ) ] ) +g1,21670:36675916,2439708 +(1,21670:36675916,2439708:1179648,16384,0 +r1,21974:37855564,2439708:1179648,16384,0 ) ) +k1,21974:3078556,2439708:-34777008 +) ] -[1,21849:3078558,4812305:0,0,0 -(1,21849:3078558,49800853:0,16384,2228224 -g1,21849:29030814,49800853 -g1,21849:36135244,49800853 -(1,21457:36135244,49800853:1720320,16384,2228224 -(1,21457:36135244,52029077:16384,1703936,0 -[1,21457:36135244,52029077:25952256,1703936,0 -(1,21457:36135244,51504789:25952256,1179648,0 -(1,21457:36135244,51504789:16384,1179648,0 -r1,21849:36151628,51504789:16384,1179648,0 +[1,21974:3078558,4812305:0,0,0 +(1,21974:3078558,49800853:0,16384,2228224 +k1,21974:1358238,49800853:-1720320 +(1,21670:1358238,49800853:1720320,16384,2228224 +(1,21670:1358238,49800853:1179648,16384,0 +r1,21974:2537886,49800853:1179648,16384,0 +) +g1,21670:3062174,49800853 +(1,21670:3062174,52029077:16384,1703936,0 +[1,21670:3062174,52029077:25952256,1703936,0 +(1,21670:3062174,51504789:25952256,1179648,0 +(1,21670:3062174,51504789:16384,1179648,0 +r1,21974:3078558,51504789:16384,1179648,0 ) -k1,21457:62087500,51504789:25935872 -g1,21457:62087500,51504789 +k1,21670:29014430,51504789:25935872 +g1,21670:29014430,51504789 ) ] ) -g1,21457:36675916,49800853 -(1,21457:36675916,49800853:1179648,16384,0 -r1,21849:37855564,49800853:1179648,16384,0 ) ) -k1,21849:3078556,49800853:-34777008 -) -] -g1,21849:6630773,4812305 -g1,21849:6630773,4812305 -g1,21849:9744388,4812305 -g1,21849:11175694,4812305 -k1,21849:31387652,4812305:20211958 -) -) -] -[1,21849:6630773,45706769:25952256,40108032,0 -(1,21849:6630773,45706769:25952256,40108032,0 -(1,21849:6630773,45706769:0,0,0 -g1,21849:6630773,45706769 -) -[1,21849:6630773,45706769:25952256,40108032,0 -(1,21796:6630773,6254097:25952256,32768,229376 -(1,21796:6630773,6254097:0,32768,229376 -(1,21796:6630773,6254097:5505024,32768,229376 -r1,21849:12135797,6254097:5505024,262144,229376 -) -k1,21796:6630773,6254097:-5505024 -) -(1,21796:6630773,6254097:25952256,32768,0 -r1,21849:32583029,6254097:25952256,32768,0 -) -) -(1,21796:6630773,7858425:25952256,615776,14155 -(1,21796:6630773,7858425:2464678,582746,14155 -g1,21796:6630773,7858425 -g1,21796:9095451,7858425 -) -g1,21796:13045699,7858425 -k1,21796:32583029,7858425:17899192 -g1,21796:32583029,7858425 -) -(1,21799:6630773,9093129:25952256,513147,134348 -k1,21798:7509711,9093129:251103 -k1,21798:10267567,9093129:251104 -k1,21798:11744849,9093129:251103 -k1,21798:13309295,9093129:251104 -k1,21798:14551958,9093129:251103 -k1,21798:15822147,9093129:251104 -k1,21798:17674950,9093129:251103 -k1,21798:20595335,9093129:251104 -k1,21798:23830948,9093129:251103 -k1,21798:24733480,9093129:251104 -k1,21798:26373946,9093129:251103 -k1,21798:28972550,9093129:251104 -k1,21798:30295822,9093129:251103 -k1,21798:32583029,9093129:0 -) -(1,21799:6630773,9934617:25952256,513147,126483 -k1,21798:8125649,9934617:209060 -k1,21798:9353793,9934617:209059 -k1,21798:11058385,9934617:209060 -k1,21798:13820072,9934617:209060 -k1,21798:15423083,9934617:209060 -k1,21798:17956704,9934617:209059 -k1,21798:18817192,9934617:209060 -k1,21798:20045337,9934617:209060 -k1,21798:21523174,9934617:209060 -k1,21798:22391525,9934617:209059 -k1,21798:23619670,9934617:209060 -k1,21798:24985440,9934617:209060 -k1,21798:26598281,9934617:209060 -k1,21798:28120682,9934617:209059 -k1,21798:29321302,9934617:209060 -k1,21798:32583029,9934617:0 -) -(1,21799:6630773,10776105:25952256,513147,126483 -k1,21798:7482928,10776105:192863 -k1,21798:10354903,10776105:192863 -k1,21798:14026417,10776105:192863 -k1,21798:15600124,10776105:192863 -k1,21798:17839021,10776105:192863 -k1,21798:19670939,10776105:192863 -k1,21798:21258407,10776105:192862 -k1,21798:22102698,10776105:192863 -k1,21798:23521740,10776105:192863 -k1,21798:25108554,10776105:192863 -k1,21798:26527596,10776105:192863 -k1,21798:28959824,10776105:192863 -k1,21798:30344132,10776105:192863 -k1,21798:31931601,10776105:192863 -k1,21798:32583029,10776105:0 -) -(1,21799:6630773,11617593:25952256,513147,134348 -k1,21798:8249631,11617593:206557 -k1,21798:10023810,11617593:206558 -k1,21798:13302695,11617593:206557 -k1,21798:15795804,11617593:206558 -k1,21798:16618399,11617593:206557 -k1,21798:18426657,11617593:206558 -k1,21798:22985460,11617593:206557 -k1,21798:26538286,11617593:206558 -k1,21798:27668901,11617593:206557 -k1,21798:28894544,11617593:206558 -k1,21798:30803071,11617593:206557 -k1,21798:32583029,11617593:0 -) -(1,21799:6630773,12459081:25952256,513147,134348 -k1,21798:8246941,12459081:285787 -k1,21798:9551813,12459081:285787 -k1,21798:11226963,12459081:285787 -k1,21798:14191863,12459081:285788 -k1,21798:15163812,12459081:285787 -k1,21798:18754580,12459081:285787 -k1,21798:19571864,12459081:285787 -k1,21798:22703224,12459081:285787 -k1,21798:24093293,12459081:285787 -k1,21798:25126847,12459081:285788 -k1,21798:27267303,12459081:285787 -k1,21798:28362460,12459081:285787 -k1,21798:29820686,12459081:285787 -k1,21798:32583029,12459081:0 -) -(1,21799:6630773,13300569:25952256,513147,134348 -k1,21798:10663799,13300569:197204 -k1,21798:14036222,13300569:197204 -k1,21798:14916311,13300569:197204 -k1,21798:16848908,13300569:197204 -k1,21798:17401972,13300569:197204 -k1,21798:19996483,13300569:197204 -k1,21798:23168366,13300569:197204 -k1,21798:24051732,13300569:197204 -k1,21798:24604796,13300569:197204 -k1,21798:28013919,13300569:197204 -k1,21798:29407810,13300569:197204 -k1,21798:32583029,13300569:0 -) -(1,21799:6630773,14142057:25952256,505283,126483 -k1,21798:9795406,14142057:180123 -k1,21798:10507026,14142057:180123 -k1,21798:12337346,14142057:180123 -k1,21798:14872833,14142057:180123 -k1,21798:16125125,14142057:180123 -k1,21798:18467936,14142057:180123 -k1,21798:22198800,14142057:180123 -k1,21798:23030351,14142057:180123 -k1,21798:25761135,14142057:180123 -k1,21798:26627420,14142057:180123 -k1,21798:27826628,14142057:180123 -k1,21798:30017396,14142057:180123 -k1,21798:31315563,14142057:180123 -k1,21798:32583029,14142057:0 -) -(1,21799:6630773,14983545:25952256,513147,134348 -k1,21798:8284355,14983545:201960 -k1,21798:10361955,14983545:201960 -k1,21798:13123097,14983545:201961 -k1,21798:13984349,14983545:201960 -k1,21798:15575672,14983545:201960 -k1,21798:17815802,14983545:201960 -k1,21798:19753155,14983545:201960 -k1,21798:20310975,14983545:201960 -k1,21798:23688155,14983545:201961 -k1,21798:26874625,14983545:201960 -k1,21798:29698680,14983545:201960 -k1,21798:31931601,14983545:201960 -k1,21798:32583029,14983545:0 -) -(1,21799:6630773,15825033:25952256,513147,11795 -k1,21798:7231593,15825033:244960 -k1,21798:9656937,15825033:244961 -k1,21798:12984055,15825033:244960 -k1,21798:14420460,15825033:244960 -k1,21798:15872593,15825033:244960 -k1,21798:18894970,15825033:244961 -k1,21798:19755968,15825033:244960 -k1,21798:23173480,15825033:244914 -k1,21798:24609886,15825033:244961 -k1,21798:27092855,15825033:244914 -k1,21798:27950577,15825033:244960 -k1,21798:29214623,15825033:244961 -k1,21798:30884991,15825033:244960 -k1,21798:32583029,15825033:0 -) -(1,21799:6630773,16666521:25952256,513147,126483 -k1,21798:8785697,16666521:156076 -k1,21798:10670614,16666521:156077 -k1,21798:12330741,16666521:156076 -k1,21798:14000043,16666521:156076 -k1,21798:14807548,16666521:156077 -k1,21798:16581053,16666521:156076 -k1,21798:18300163,16666521:156076 -k1,21798:19084074,16666521:156076 -k1,21798:20259236,16666521:156077 -k1,21798:21782393,16666521:156076 -k1,21798:22597761,16666521:156076 -k1,21798:26296059,16666521:156077 -k1,21798:29214478,16666521:156076 -k1,21798:32583029,16666521:0 -) -(1,21799:6630773,17508009:25952256,505283,134348 -k1,21798:7801010,17508009:178677 -k1,21798:8595724,17508009:178676 -k1,21798:11551817,17508009:178677 -k1,21798:12996649,17508009:178676 -k1,21798:18957568,17508009:178677 -k1,21798:21146889,17508009:178676 -k1,21798:23008511,17508009:178657 -k1,21798:26418767,17508009:178676 -k1,21798:27689929,17508009:178677 -k1,21798:29724585,17508009:178676 -k1,21798:30259122,17508009:178677 -k1,21798:32583029,17508009:0 -) -(1,21799:6630773,18349497:25952256,513147,126483 -k1,21798:7497993,18349497:184335 -k1,21798:10923738,18349497:184334 -k1,21798:11759501,18349497:184335 -k1,21798:14646541,18349497:184335 -k1,21798:15849960,18349497:184334 -k1,21798:17768378,18349497:184335 -k1,21798:18635597,18349497:184334 -k1,21798:21706793,18349497:184335 -k1,21798:25171205,18349497:184335 -k1,21798:26038424,18349497:184334 -k1,21798:30572384,18349497:184335 -k1,21798:32583029,18349497:0 -) -(1,21799:6630773,19190985:25952256,505283,126483 -k1,21798:8485638,19190985:192872 -k1,21798:9771001,19190985:192878 -k1,21798:10982964,19190985:192878 -k1,21798:12189028,19190985:192877 -k1,21798:15356585,19190985:192878 -k1,21798:16235625,19190985:192878 -k1,21798:16784363,19190985:192878 -k1,21798:19360130,19190985:192878 -k1,21798:22764927,19190985:192878 -k1,21798:26430558,19190985:192878 -k1,21798:28364728,19190985:192878 -k1,21798:30345428,19190985:192878 -k1,21798:31069803,19190985:192878 -k1,21798:32583029,19190985:0 -) -(1,21799:6630773,20032473:25952256,505283,126483 -g1,21798:7516164,20032473 -g1,21798:8071253,20032473 -g1,21798:11482401,20032473 -g1,21798:13283330,20032473 -g1,21798:16826206,20032473 -g1,21798:18723473,20032473 -g1,21798:19688818,20032473 -g1,21798:21898692,20032473 -g1,21798:23089481,20032473 -g1,21798:23940138,20032473 -g1,21798:24887133,20032473 -g1,21798:28247163,20032473 -g1,21798:29097820,20032473 -(1,21798:29097820,20032473:0,452978,115847 -r1,21849:31566357,20032473:2468537,568825,115847 -k1,21798:29097820,20032473:-2468537 -) -(1,21798:29097820,20032473:2468537,452978,115847 -k1,21798:29097820,20032473:3277 -h1,21798:31563080,20032473:0,411205,112570 -) -k1,21799:32583029,20032473:843002 -g1,21799:32583029,20032473 -) -v1,21801:6630773,21398249:0,393216,0 -(1,21849:6630773,45448469:25952256,24443436,0 -g1,21849:6630773,45448469 -g1,21849:6303093,45448469 -r1,21849:6401397,45448469:98304,24443436,0 -g1,21849:6600626,45448469 -g1,21849:6797234,45448469 -[1,21849:6797234,45448469:25785795,24443436,0 -(1,21802:6797234,21760322:25785795,755289,196608 -(1,21801:6797234,21760322:0,755289,196608 -r1,21849:8134168,21760322:1336934,951897,196608 -k1,21801:6797234,21760322:-1336934 -) -(1,21801:6797234,21760322:1336934,755289,196608 -) -k1,21801:8316455,21760322:182287 -k1,21801:8644135,21760322:327680 -k1,21801:10006936,21760322:187085 -k1,21801:10984384,21760322:187084 -k1,21801:12448110,21760322:187085 -k1,21801:14000309,21760322:187084 -k1,21801:15222863,21760322:187085 -k1,21801:16965116,21760322:187084 -k1,21801:19114795,21760322:182288 -k1,21801:21080317,21760322:182287 -k1,21801:23665154,21760322:182287 -k1,21801:25073621,21760322:182288 -k1,21801:26742920,21760322:182287 -k1,21801:28116653,21760322:182288 -k1,21801:30561243,21760322:182287 -k1,21801:32583029,21760322:0 -) -(1,21802:6797234,22601810:25785795,513147,134348 -k1,21801:8317342,22601810:206766 -k1,21801:10409579,22601810:206766 -k1,21801:11953279,22601810:206766 -k1,21801:14531793,22601810:206766 -k1,21801:18063200,22601810:206766 -k1,21801:19496145,22601810:206766 -k1,21801:22072692,22601810:206765 -k1,21801:23934242,22601810:206766 -k1,21801:24672505,22601810:206766 -k1,21801:27732709,22601810:206766 -k1,21801:28887126,22601810:206766 -k1,21801:30602531,22601810:206766 -k1,21802:32583029,22601810:0 -) -(1,21802:6797234,23443298:25785795,513147,134348 -k1,21801:10770146,23443298:143643 -k1,21801:13027980,23443298:143643 -k1,21801:14190708,23443298:143643 -k1,21801:16516045,23443298:143643 -k1,21801:19907652,23443298:143643 -k1,21801:21322692,23443298:143642 -k1,21801:24243751,23443298:143643 -k1,21801:26496343,23443298:143643 -k1,21801:27299278,23443298:143643 -k1,21801:30623383,23443298:143643 -k1,21801:31298523,23443298:143643 -k1,21801:32583029,23443298:0 -) -(1,21802:6797234,24284786:25785795,505283,102891 -k1,21801:9414697,24284786:234574 -k1,21801:12154058,24284786:234575 -k1,21801:13380192,24284786:234574 -k1,21801:14266195,24284786:234575 -k1,21801:15248535,24284786:234574 -k1,21801:16895411,24284786:234575 -k1,21801:17816147,24284786:234574 -k1,21801:18465529,24284786:234539 -k1,21801:20942091,24284786:234575 -k1,21801:21994554,24284786:234574 -k1,21801:24262711,24284786:234575 -k1,21801:27800300,24284786:234574 -k1,21801:29689659,24284786:234575 -k1,21801:30915793,24284786:234574 -k1,21801:32583029,24284786:0 -) -(1,21802:6797234,25126274:25785795,513147,134348 -k1,21801:8797533,25126274:240657 -k1,21801:10531757,25126274:240658 -k1,21801:11458576,25126274:240657 -k1,21801:14418978,25126274:240658 -k1,21801:16777759,25126274:240657 -k1,21801:17701302,25126274:240658 -k1,21801:20136104,25126274:240657 -k1,21801:23681742,25126274:240657 -k1,21801:24388361,25126274:240658 -k1,21801:25648103,25126274:240657 -k1,21801:27957077,25126274:240658 -k1,21801:29189294,25126274:240657 -k1,21801:30081380,25126274:240658 -k1,21801:31069803,25126274:240657 -k1,21801:32583029,25126274:0 -) -(1,21802:6797234,25967762:25785795,513147,126483 -k1,21801:8443171,25967762:251986 -k1,21801:9714242,25967762:251986 -k1,21801:12244915,25967762:251986 -k1,21801:14754615,25967762:251985 -k1,21801:15930659,25967762:251986 -k1,21801:18538009,25967762:251986 -k1,21801:20482135,25967762:251986 -k1,21801:23759918,25967762:251986 -k1,21801:25144366,25967762:251986 -k1,21801:27910967,25967762:251985 -k1,21801:28814381,25967762:251986 -k1,21801:31563944,25967762:251986 -k1,21801:32583029,25967762:0 -) -(1,21802:6797234,26809250:25785795,505283,102891 -k1,21801:9264112,26809250:224891 -k1,21801:10561172,26809250:224891 -k1,21801:12818335,26809250:224892 -k1,21801:14283167,26809250:224891 -k1,21801:16053397,26809250:224891 -k1,21801:17771854,26809250:224891 -k1,21801:20065061,26809250:224891 -k1,21801:21281513,26809250:224892 -k1,21801:22705058,26809250:224891 -k1,21801:26114999,26809250:224891 -k1,21801:26955928,26809250:224891 -k1,21801:27595637,26809250:224866 -k1,21801:31510860,26809250:224891 -k1,21801:32583029,26809250:0 -) -(1,21802:6797234,27650738:25785795,513147,134348 -k1,21801:7358495,27650738:205401 -k1,21801:9758041,27650738:205401 -k1,21801:12047486,27650738:205400 -k1,21801:12784384,27650738:205401 -k1,21801:15288133,27650738:205401 -k1,21801:16144962,27650738:205401 -k1,21801:18648710,27650738:205400 -k1,21801:20493166,27650738:205401 -k1,21801:22266188,27650738:205401 -k1,21801:25592413,27650738:205401 -k1,21801:27881858,27650738:205400 -k1,21801:30024503,27650738:205401 -k1,21801:32583029,27650738:0 -) -(1,21802:6797234,28492226:25785795,513147,134348 -k1,21801:8500121,28492226:194248 -k1,21801:13139677,28492226:194249 -k1,21801:14020087,28492226:194248 -k1,21801:17568469,28492226:194249 -k1,21801:20525060,28492226:194248 -k1,21801:22161756,28492226:194249 -k1,21801:24867344,28492226:194248 -k1,21801:25744478,28492226:194249 -k1,21801:28634222,28492226:194248 -k1,21801:32168186,28492226:194249 -k1,21802:32583029,28492226:0 -) -(1,21802:6797234,29333714:25785795,505283,134348 -g1,21801:9051017,29333714 -g1,21801:10118598,29333714 -g1,21801:11365092,29333714 -g1,21801:12848827,29333714 -g1,21801:14428244,29333714 -g1,21801:16157739,29333714 -g1,21801:17008396,29333714 -g1,21801:17955391,29333714 -k1,21802:32583029,29333714:12215258 -g1,21802:32583029,29333714 -) -(1,21808:6797234,30175202:25785795,513147,134348 -h1,21803:6797234,30175202:983040,0,0 -k1,21803:9683920,30175202:186603 -k1,21803:10529814,30175202:186602 -k1,21803:11735502,30175202:186603 -k1,21803:13914399,30175202:186603 -k1,21803:14969354,30175202:186603 -k1,21803:16686222,30175202:186602 -k1,21803:17524253,30175202:186603 -k1,21803:18458622,30175202:186603 -k1,21803:19454595,30175202:186603 -k1,21803:20660282,30175202:186602 -k1,21803:22729079,30175202:186603 -k1,21803:23863333,30175202:186603 -k1,21803:25215166,30175202:186603 -k1,21804:26007321,30175202:186602 -k1,21804:29947826,30175202:186603 -k1,21804:32583029,30175202:0 -) -(1,21808:6797234,31016690:25785795,513147,134348 -k1,21804:8004688,31016690:188369 -k1,21804:11167736,31016690:188369 -k1,21804:14257384,31016690:188369 -k1,21804:17284773,31016690:188369 -k1,21804:18234670,31016690:188369 -k1,21804:19442124,31016690:188369 -k1,21804:22325989,31016690:188369 -k1,21804:24027585,31016690:188370 -k1,21804:24867382,31016690:188369 -k1,21804:26468052,31016690:188369 -k1,21804:27675506,31016690:188369 -k1,21804:29020585,31016690:188369 -k1,21804:30400399,31016690:188369 -k1,21804:31607853,31016690:188369 -k1,21808:32583029,31016690:0 -) -(1,21808:6797234,31858178:25785795,513147,134348 -k1,21804:9193230,31858178:256901 -k1,21804:10963357,31858178:256901 -k1,21804:12167909,31858178:256901 -k1,21804:14458392,31858178:256901 -k1,21804:15734378,31858178:256901 -k1,21804:19916885,31858178:256900 -k1,21804:22703476,31858178:256901 -k1,21804:23619669,31858178:256901 -k1,21804:26638913,31858178:256901 -k1,21804:29241348,31858178:256901 -k1,21805:30103802,31858178:256901 -k1,21805:32583029,31858178:0 -) -(1,21808:6797234,32699666:25785795,505283,134348 -k1,21805:7734518,32699666:254399 -k1,21805:10286609,32699666:254399 -k1,21805:13613990,32699666:254398 -k1,21805:15986513,32699666:254399 -k1,21805:18646739,32699666:254399 -k1,21805:19517176,32699666:254399 -k1,21805:20790660,32699666:254399 -k1,21805:24019738,32699666:254399 -k1,21805:26284781,32699666:254398 -k1,21805:27222065,32699666:254399 -k1,21805:29859353,32699666:254399 -k1,21808:32583029,32699666:0 -) -(1,21808:6797234,33541154:25785795,513147,134348 -k1,21805:8875763,33541154:193058 -k1,21805:10060381,33541154:193058 -k1,21805:12416127,33541154:193058 -k1,21805:15267981,33541154:193058 -k1,21805:17159077,33541154:193058 -k1,21805:18741498,33541154:193058 -k1,21805:21141153,33541154:193058 -k1,21805:22325771,33541154:193058 -k1,21805:25042620,33541154:193058 -k1,21806:25841231,33541154:193058 -k1,21806:28678667,33541154:193058 -k1,21806:31436804,33541154:193058 -k1,21808:32583029,33541154:0 -) -(1,21808:6797234,34382642:25785795,513147,134348 -k1,21806:8408209,34382642:161319 -k1,21806:11813561,34382642:161320 -k1,21806:14003875,34382642:161319 -k1,21806:16669326,34382642:161320 -k1,21806:19600196,34382642:161319 -k1,21806:20117376,34382642:161320 -k1,21806:22151714,34382642:161319 -k1,21806:23993377,34382642:161320 -k1,21806:24770734,34382642:161319 -k1,21806:25287914,34382642:161320 -k1,21806:28005792,34382642:161319 -k1,21806:29409675,34382642:161320 -k1,21806:30590079,34382642:161319 -k1,21806:32583029,34382642:0 -) -(1,21808:6797234,35224130:25785795,513147,134348 -k1,21806:8434263,35224130:207689 -k1,21806:9301245,35224130:207690 -k1,21806:11992749,35224130:207689 -k1,21806:14666559,35224130:207690 -k1,21806:17637246,35224130:207689 -k1,21806:18864021,35224130:207690 -k1,21806:21454599,35224130:207689 -k1,21806:23229910,35224130:207690 -k1,21806:25175614,35224130:207689 -k1,21806:28895378,35224130:207690 -k1,21806:29789229,35224130:207689 -k1,21806:32583029,35224130:0 -) -(1,21808:6797234,36065618:25785795,513147,126483 -k1,21807:7696388,36065618:293601 -k1,21807:11834330,36065618:293600 -k1,21807:14611746,36065618:293601 -k1,21807:17197796,36065618:293601 -k1,21807:18107435,36065618:293601 -(1,21807:18107435,36065618:0,414482,115847 -r1,21849:19169124,36065618:1061689,530329,115847 -k1,21807:18107435,36065618:-1061689 -) -(1,21807:18107435,36065618:1061689,414482,115847 -k1,21807:18107435,36065618:3277 -h1,21807:19165847,36065618:0,411205,112570 -) -k1,21807:19462724,36065618:293600 -k1,21807:22744111,36065618:293601 -k1,21807:25330161,36065618:293601 -k1,21807:28325811,36065618:293601 -k1,21807:29428781,36065618:293600 -k1,21807:30741467,36065618:293601 -k1,21807:32583029,36065618:0 -) -(1,21808:6797234,36907106:25785795,505283,134348 -g1,21807:10045853,36907106 -g1,21807:11436527,36907106 -g1,21807:15083605,36907106 -g1,21807:17954081,36907106 -k1,21808:32583029,36907106:11943283 -g1,21808:32583029,36907106 -) -(1,21810:6797234,37748594:25785795,513147,134348 -h1,21809:6797234,37748594:983040,0,0 -k1,21809:8538197,37748594:280166 -k1,21809:9988837,37748594:280167 -k1,21809:13481578,37748594:280166 -k1,21809:16768537,37748594:280167 -k1,21809:18561929,37748594:280166 -k1,21809:21197459,37748594:280166 -k1,21809:22971192,37748594:280167 -k1,21809:23937520,37748594:280166 -k1,21809:26295178,37748594:280167 -k1,21809:27234636,37748594:280166 -k1,21809:30254208,37748594:280167 -k1,21809:31193666,37748594:280166 -k1,21809:32583029,37748594:0 -) -(1,21810:6797234,38590082:25785795,513147,134348 -k1,21809:8944965,38590082:271435 -k1,21809:11929592,38590082:271436 -k1,21809:12962555,38590082:271435 -k1,21809:15145676,38590082:271436 -k1,21809:16509596,38590082:271435 -k1,21809:19476528,38590082:271436 -(1,21809:19476528,38590082:0,452978,115847 -r1,21849:21945065,38590082:2468537,568825,115847 -k1,21809:19476528,38590082:-2468537 -) -(1,21809:19476528,38590082:2468537,452978,115847 -k1,21809:19476528,38590082:3277 -h1,21809:21941788,38590082:0,411205,112570 -) -k1,21809:22216500,38590082:271435 -k1,21809:23139364,38590082:271436 -k1,21809:24389252,38590082:271435 -k1,21809:25679773,38590082:271436 -k1,21809:28019524,38590082:271435 -k1,21809:30641081,38590082:271436 -k1,21809:31563944,38590082:271435 -k1,21809:32583029,38590082:0 -) -(1,21810:6797234,39431570:25785795,513147,126483 -k1,21809:9415343,39431570:197864 -k1,21809:10299369,39431570:197864 -k1,21809:10853093,39431570:197864 -k1,21809:14025636,39431570:197864 -k1,21809:16375047,39431570:197864 -k1,21809:17953755,39431570:197864 -k1,21809:18683116,39431570:197864 -k1,21809:20858201,39431570:197864 -k1,21809:23585755,39431570:197864 -k1,21809:26758298,39431570:197864 -k1,21809:29264340,39431570:197864 -k1,21809:30453764,39431570:197864 -k1,21809:32583029,39431570:0 -) -(1,21810:6797234,40273058:25785795,505283,134348 -k1,21809:9301365,40273058:154010 -k1,21809:10849325,40273058:154009 -k1,21809:12454957,40273058:154010 -k1,21809:14474776,40273058:154009 -k1,21809:17649340,40273058:154010 -k1,21809:18564877,40273058:154009 -k1,21809:21812842,40273058:154010 -k1,21809:23953903,40273058:154009 -k1,21809:26466554,40273058:154010 -k1,21809:28939882,40273058:154009 -k1,21809:30285337,40273058:154010 -k1,21809:32583029,40273058:0 -) -(1,21810:6797234,41114546:25785795,513147,126483 -k1,21809:9167324,41114546:251966 -k1,21809:11515788,41114546:251967 -k1,21809:13984182,41114546:251966 -k1,21809:15432835,41114546:251966 -k1,21809:17338275,41114546:251967 -k1,21809:19871549,41114546:251966 -k1,21809:20774943,41114546:251966 -k1,21809:22119395,41114546:251967 -k1,21809:23038517,41114546:251966 -(1,21809:23038517,41114546:0,452978,115847 -r1,21849:25858766,41114546:2820249,568825,115847 -k1,21809:23038517,41114546:-2820249 -) -(1,21809:23038517,41114546:2820249,452978,115847 -k1,21809:23038517,41114546:3277 -h1,21809:25855489,41114546:0,411205,112570 -) -k1,21809:26110732,41114546:251966 -k1,21809:27756650,41114546:251967 -k1,21809:30232908,41114546:251966 -k1,21809:32583029,41114546:0 -) -(1,21810:6797234,41956034:25785795,505283,134348 -g1,21809:8390414,41956034 -g1,21809:9979006,41956034 -g1,21809:11462741,41956034 -g1,21809:13529091,41956034 -g1,21809:15203535,41956034 -g1,21809:18542594,41956034 -k1,21810:32583029,41956034:11032332 -g1,21810:32583029,41956034 -) -(1,21812:6797234,42797522:25785795,513147,126483 -h1,21811:6797234,42797522:983040,0,0 -k1,21811:8801779,42797522:192475 -k1,21811:13027339,42797522:192474 -k1,21811:14911954,42797522:192475 -k1,21811:15763721,42797522:192475 -k1,21811:17652922,42797522:192474 -k1,21811:21025859,42797522:192475 -k1,21811:21431319,42797522:192468 -k1,21811:23553174,42797522:192475 -k1,21811:24101508,42797522:192474 -k1,21811:25683346,42797522:192475 -k1,21811:27752117,42797522:192475 -k1,21811:29338542,42797522:192474 -k1,21811:31269032,42797522:192475 -k1,21812:32583029,42797522:0 -) -(1,21812:6797234,43639010:25785795,513147,102891 -k1,21811:9137763,43639010:259106 -k1,21811:12252272,43639010:259105 -k1,21811:13702823,43639010:259106 -k1,21811:14577966,43639010:259105 -k1,21811:15856157,43639010:259106 -k1,21811:18356593,43639010:259105 -k1,21811:21802059,43639010:259106 -k1,21811:23455115,43639010:259105 -k1,21811:26896649,43639010:259106 -k1,21811:29821104,43639010:259106 -k1,21811:31276896,43639010:259105 -k1,21811:32583029,43639010:0 -) -(1,21812:6797234,44480498:25785795,513147,134348 -k1,21811:10271118,44480498:287524 -k1,21811:11090140,44480498:287525 -k1,21811:14682645,44480498:287524 -k1,21811:15621597,44480498:287524 -k1,21811:16928207,44480498:287525 -k1,21811:19481311,44480498:287524 -k1,21811:22528557,44480498:287525 -k1,21811:23475373,44480498:287524 -k1,21811:26788694,44480498:287524 -k1,21811:27692257,44480498:287525 -k1,21811:30559933,44480498:287524 -k1,21811:32583029,44480498:0 -) -(1,21812:6797234,45321986:25785795,513147,126483 -k1,21811:8244778,45321986:256099 -k1,21811:9519962,45321986:256099 -k1,21811:12017391,45321986:256098 -k1,21811:12804987,45321986:256099 -k1,21811:16366067,45321986:256099 -k1,21811:17273594,45321986:256099 -k1,21811:18548777,45321986:256098 -k1,21811:21564597,45321986:256099 -k1,21811:22479988,45321986:256099 -k1,21811:24170015,45321986:256099 -k1,21811:24840899,45321986:256041 -k1,21811:28296466,45321986:256099 -k1,21811:30575661,45321986:256099 -k1,21812:32583029,45321986:0 -) -] -g1,21849:32583029,45448469 -) -] -(1,21849:32583029,45706769:0,0,0 -g1,21849:32583029,45706769 -) -) -] -(1,21849:6630773,47279633:25952256,0,0 -h1,21849:6630773,47279633:25952256,0,0 -) -] -(1,21849:4262630,4025873:0,0,0 -[1,21849:-473656,4025873:0,0,0 -(1,21849:-473656,-710413:0,0,0 -(1,21849:-473656,-710413:0,0,0 -g1,21849:-473656,-710413 -) -g1,21849:-473656,-710413 -) -] -) -] -!26398 -}396 -Input:3556:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3557:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3558:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!294 -{397 -[1,21866:4262630,47279633:28320399,43253760,0 -(1,21866:4262630,4025873:0,0,0 -[1,21866:-473656,4025873:0,0,0 -(1,21866:-473656,-710413:0,0,0 -(1,21866:-473656,-644877:0,0,0 -k1,21866:-473656,-644877:-65536 +] +[1,21974:3078558,4812305:0,0,0 +(1,21974:3078558,49800853:0,16384,2228224 +g1,21974:29030814,49800853 +g1,21974:36135244,49800853 +(1,21670:36135244,49800853:1720320,16384,2228224 +(1,21670:36135244,52029077:16384,1703936,0 +[1,21670:36135244,52029077:25952256,1703936,0 +(1,21670:36135244,51504789:25952256,1179648,0 +(1,21670:36135244,51504789:16384,1179648,0 +r1,21974:36151628,51504789:16384,1179648,0 +) +k1,21670:62087500,51504789:25935872 +g1,21670:62087500,51504789 +) +] +) +g1,21670:36675916,49800853 +(1,21670:36675916,49800853:1179648,16384,0 +r1,21974:37855564,49800853:1179648,16384,0 +) +) +k1,21974:3078556,49800853:-34777008 +) +] +g1,21974:6630773,4812305 +g1,21974:6630773,4812305 +g1,21974:7909380,4812305 +g1,21974:10167095,4812305 +g1,21974:11576774,4812305 +g1,21974:15078362,4812305 +k1,21974:31387652,4812305:16309290 +) +) +] +[1,21974:6630773,45706769:25952256,40108032,0 +(1,21974:6630773,45706769:25952256,40108032,0 +(1,21974:6630773,45706769:0,0,0 +g1,21974:6630773,45706769 +) +[1,21974:6630773,45706769:25952256,40108032,0 +v1,21902:6630773,6254097:0,393216,0 +(1,21902:6630773,13967618:25952256,8106737,196608 +g1,21902:6630773,13967618 +g1,21902:6630773,13967618 +g1,21902:6434165,13967618 +(1,21902:6434165,13967618:0,8106737,196608 +r1,21974:32779637,13967618:26345472,8303345,196608 +k1,21902:6434165,13967618:-26345472 +) +(1,21902:6434165,13967618:26345472,8106737,196608 +[1,21902:6630773,13967618:25952256,7910129,0 +(1,21883:6630773,6488534:25952256,431045,106246 +h1,21883:6630773,6488534:0,0,0 +g1,21883:7626635,6488534 +g1,21883:8954451,6488534 +k1,21883:8954451,6488534:0 +h1,21883:18913070,6488534:0,0,0 +k1,21883:32583029,6488534:13669959 +g1,21883:32583029,6488534 +) +(1,21885:6630773,7304461:25952256,424439,79822 +(1,21884:6630773,7304461:0,0,0 +g1,21884:6630773,7304461 +g1,21884:6630773,7304461 +g1,21884:6303093,7304461 +(1,21884:6303093,7304461:0,0,0 +) +g1,21884:6630773,7304461 +) +k1,21885:6630773,7304461:0 +k1,21885:6630773,7304461:0 +h1,21885:12273990,7304461:0,0,0 +k1,21885:32583030,7304461:20309040 +g1,21885:32583030,7304461 +) +(1,21890:6630773,8120388:25952256,431045,112852 +(1,21887:6630773,8120388:0,0,0 +g1,21887:6630773,8120388 +g1,21887:6630773,8120388 +g1,21887:6303093,8120388 +(1,21887:6303093,8120388:0,0,0 +) +g1,21887:6630773,8120388 +) +g1,21890:7626635,8120388 +g1,21890:8954451,8120388 +g1,21890:10282267,8120388 +g1,21890:10614221,8120388 +g1,21890:10946175,8120388 +g1,21890:11278129,8120388 +g1,21890:11610083,8120388 +g1,21890:11942037,8120388 +g1,21890:12273991,8120388 +g1,21890:12605945,8120388 +g1,21890:12937899,8120388 +g1,21890:13269853,8120388 +g1,21890:13601807,8120388 +g1,21890:13933761,8120388 +g1,21890:14265715,8120388 +g1,21890:14597669,8120388 +g1,21890:14929623,8120388 +g1,21890:15261577,8120388 +g1,21890:18249162,8120388 +g1,21890:18581116,8120388 +g1,21890:18913070,8120388 +g1,21890:19245024,8120388 +g1,21890:19576978,8120388 +g1,21890:19908932,8120388 +g1,21890:20240886,8120388 +g1,21890:20572840,8120388 +g1,21890:20904794,8120388 +g1,21890:21236748,8120388 +g1,21890:21568702,8120388 +g1,21890:26548011,8120388 +g1,21890:26879965,8120388 +g1,21890:27211919,8120388 +g1,21890:27543873,8120388 +g1,21890:27875827,8120388 +h1,21890:32191228,8120388:0,0,0 +k1,21890:32583029,8120388:391801 +g1,21890:32583029,8120388 +) +(1,21890:6630773,8805243:25952256,431045,112852 +h1,21890:6630773,8805243:0,0,0 +g1,21890:7626635,8805243 +g1,21890:8954451,8805243 +g1,21890:13601806,8805243 +g1,21890:13933760,8805243 +g1,21890:14265714,8805243 +g1,21890:14597668,8805243 +g1,21890:14929622,8805243 +g1,21890:15261576,8805243 +h1,21890:21236747,8805243:0,0,0 +k1,21890:32583029,8805243:11346282 +g1,21890:32583029,8805243 +) +(1,21892:6630773,9621170:25952256,424439,79822 +(1,21891:6630773,9621170:0,0,0 +g1,21891:6630773,9621170 +g1,21891:6630773,9621170 +g1,21891:6303093,9621170 +(1,21891:6303093,9621170:0,0,0 +) +g1,21891:6630773,9621170 +) +k1,21892:6630773,9621170:0 +k1,21892:6630773,9621170:0 +h1,21892:10282267,9621170:0,0,0 +k1,21892:32583029,9621170:22300762 +g1,21892:32583029,9621170 +) +(1,21901:6630773,10437097:25952256,424439,106246 +(1,21894:6630773,10437097:0,0,0 +g1,21894:6630773,10437097 +g1,21894:6630773,10437097 +g1,21894:6303093,10437097 +(1,21894:6303093,10437097:0,0,0 +) +g1,21894:6630773,10437097 +) +g1,21901:7626635,10437097 +g1,21901:8954451,10437097 +h1,21901:12937898,10437097:0,0,0 +k1,21901:32583030,10437097:19645132 +g1,21901:32583030,10437097 +) +(1,21901:6630773,11121952:25952256,424439,112852 +h1,21901:6630773,11121952:0,0,0 +g1,21901:7626635,11121952 +g1,21901:8954451,11121952 +h1,21901:13601806,11121952:0,0,0 +k1,21901:32583030,11121952:18981224 +g1,21901:32583030,11121952 +) +(1,21901:6630773,11806807:25952256,431045,106246 +h1,21901:6630773,11806807:0,0,0 +g1,21901:7626635,11806807 +g1,21901:8954451,11806807 +k1,21901:8954451,11806807:0 +h1,21901:21900656,11806807:0,0,0 +k1,21901:32583029,11806807:10682373 +g1,21901:32583029,11806807 +) +(1,21901:6630773,12491662:25952256,431045,106246 +h1,21901:6630773,12491662:0,0,0 +g1,21901:7626635,12491662 +g1,21901:8954451,12491662 +k1,21901:8954451,12491662:0 +h1,21901:22564564,12491662:0,0,0 +k1,21901:32583029,12491662:10018465 +g1,21901:32583029,12491662 +) +(1,21901:6630773,13176517:25952256,431045,106246 +h1,21901:6630773,13176517:0,0,0 +g1,21901:7626635,13176517 +g1,21901:8954451,13176517 +k1,21901:8954451,13176517:0 +h1,21901:22564564,13176517:0,0,0 +k1,21901:32583029,13176517:10018465 +g1,21901:32583029,13176517 +) +(1,21901:6630773,13861372:25952256,431045,106246 +h1,21901:6630773,13861372:0,0,0 +g1,21901:7626635,13861372 +g1,21901:8954451,13861372 +k1,21901:8954451,13861372:0 +h1,21901:18913070,13861372:0,0,0 +k1,21901:32583029,13861372:13669959 +g1,21901:32583029,13861372 +) +] +) +g1,21902:32583029,13967618 +g1,21902:6630773,13967618 +g1,21902:6630773,13967618 +g1,21902:32583029,13967618 +g1,21902:32583029,13967618 +) +h1,21902:6630773,14164226:0,0,0 +v1,21906:6630773,15029306:0,393216,0 +(1,21907:6630773,18888586:25952256,4252496,0 +g1,21907:6630773,18888586 +g1,21907:6237557,18888586 +r1,21974:6368629,18888586:131072,4252496,0 +g1,21907:6567858,18888586 +g1,21907:6764466,18888586 +[1,21907:6764466,18888586:25818563,4252496,0 +(1,21907:6764466,15301783:25818563,665693,196608 +(1,21906:6764466,15301783:0,665693,196608 +r1,21974:8010564,15301783:1246098,862301,196608 +k1,21906:6764466,15301783:-1246098 +) +(1,21906:6764466,15301783:1246098,665693,196608 +) +k1,21906:8227305,15301783:216741 +k1,21906:9953523,15301783:327680 +k1,21906:11366951,15301783:216741 +k1,21906:13849272,15301783:216741 +k1,21906:17138341,15301783:216741 +k1,21906:18302733,15301783:216741 +k1,21906:21800206,15301783:216741 +(1,21906:21800206,15301783:0,452978,115847 +r1,21974:23213607,15301783:1413401,568825,115847 +k1,21906:21800206,15301783:-1413401 +) +(1,21906:21800206,15301783:1413401,452978,115847 +k1,21906:21800206,15301783:3277 +h1,21906:23210330,15301783:0,411205,112570 +) +k1,21906:23430348,15301783:216741 +k1,21906:24178586,15301783:216741 +k1,21906:25414412,15301783:216741 +k1,21906:27975376,15301783:216741 +k1,21906:30778823,15301783:216741 +k1,21907:32583029,15301783:0 +) +(1,21907:6764466,16166863:25818563,513147,126483 +k1,21906:8517017,16166863:277991 +k1,21906:10681135,16166863:277992 +k1,21906:14021623,16166863:277991 +k1,21906:15925562,16166863:277991 +k1,21906:17394998,16166863:277991 +k1,21906:19433942,16166863:277992 +k1,21906:22664330,16166863:277991 +k1,21906:23703849,16166863:277991 +(1,21906:23703849,16166863:0,452978,115847 +r1,21974:24765538,16166863:1061689,568825,115847 +k1,21906:23703849,16166863:-1061689 +) +(1,21906:23703849,16166863:1061689,452978,115847 +k1,21906:23703849,16166863:3277 +h1,21906:24762261,16166863:0,411205,112570 +) +k1,21906:25217199,16166863:277991 +k1,21906:28414165,16166863:277992 +k1,21906:31298523,16166863:277991 +k1,21906:32583029,16166863:0 +) +(1,21907:6764466,17031943:25818563,513147,134348 +k1,21906:8149544,17031943:181837 +k1,21906:8862878,17031943:181837 +k1,21906:11196917,17031943:181837 +k1,21906:12397840,17031943:181838 +k1,21906:14845257,17031943:181837 +k1,21906:15788622,17031943:181837 +k1,21906:18060402,17031943:181837 +k1,21906:19261324,17031943:181837 +k1,21906:22468958,17031943:181837 +k1,21906:24044747,17031943:181838 +k1,21906:24997287,17031943:181837 +k1,21906:27510240,17031943:181837 +k1,21906:30938075,17031943:181837 +k1,21906:32583029,17031943:0 +) +(1,21907:6764466,17897023:25818563,513147,134348 +k1,21906:8355407,17897023:214030 +k1,21906:9912269,17897023:214029 +k1,21906:11520250,17897023:214030 +k1,21906:12753365,17897023:214030 +k1,21906:15993191,17897023:214029 +k1,21906:18103833,17897023:214030 +k1,21906:20019833,17897023:214030 +k1,21906:22724885,17897023:214029 +k1,21906:24130360,17897023:214030 +k1,21906:28301454,17897023:214030 +k1,21906:30294130,17897023:214029 +k1,21906:31124198,17897023:214030 +k1,21906:32583029,17897023:0 +) +(1,21907:6764466,18762103:25818563,426639,126483 +k1,21907:32583028,18762103:22568632 +g1,21907:32583028,18762103 +) +] +g1,21907:32583029,18888586 +) +h1,21907:6630773,18888586:0,0,0 +v1,21910:6630773,19753666:0,393216,0 +(1,21911:6630773,21890651:25952256,2530201,0 +g1,21911:6630773,21890651 +g1,21911:6237557,21890651 +r1,21974:6368629,21890651:131072,2530201,0 +g1,21911:6567858,21890651 +g1,21911:6764466,21890651 +[1,21911:6764466,21890651:25818563,2530201,0 +(1,21911:6764466,20026143:25818563,665693,196608 +(1,21910:6764466,20026143:0,665693,196608 +r1,21974:8010564,20026143:1246098,862301,196608 +k1,21910:6764466,20026143:-1246098 +) +(1,21910:6764466,20026143:1246098,665693,196608 +) +k1,21910:8258938,20026143:248374 +k1,21910:9985156,20026143:327680 +k1,21910:11382376,20026143:248374 +k1,21910:14911481,20026143:248373 +(1,21910:14911481,20026143:0,459977,115847 +r1,21974:18435153,20026143:3523672,575824,115847 +k1,21910:14911481,20026143:-3523672 +) +(1,21910:14911481,20026143:3523672,459977,115847 +k1,21910:14911481,20026143:3277 +h1,21910:18431876,20026143:0,411205,112570 +) +k1,21910:18683527,20026143:248374 +k1,21910:20325852,20026143:248374 +(1,21910:20325852,20026143:0,459977,115847 +r1,21974:24552948,20026143:4227096,575824,115847 +k1,21910:20325852,20026143:-4227096 +) +(1,21910:20325852,20026143:4227096,459977,115847 +k1,21910:20325852,20026143:3277 +h1,21910:24549671,20026143:0,411205,112570 +) +k1,21910:24801322,20026143:248374 +k1,21910:25701124,20026143:248374 +k1,21910:27973250,20026143:248374 +k1,21910:30077603,20026143:248373 +k1,21910:30681837,20026143:248374 +k1,21910:31923737,20026143:248374 +k1,21910:32583029,20026143:0 +) +(1,21911:6764466,20891223:25818563,513147,134348 +k1,21910:7941867,20891223:194361 +k1,21910:9914875,20891223:194361 +k1,21910:10792121,20891223:194361 +k1,21910:12378466,20891223:194360 +k1,21910:13555867,20891223:194361 +k1,21910:15992215,20891223:194361 +k1,21910:19153391,20891223:194361 +k1,21910:22791014,20891223:194361 +k1,21910:24315756,20891223:194361 +k1,21910:25529202,20891223:194361 +k1,21910:28502289,20891223:194360 +k1,21910:29690176,20891223:194361 +k1,21910:30543829,20891223:194361 +k1,21910:32051532,20891223:194361 +k1,21910:32583029,20891223:0 +) +(1,21911:6764466,21756303:25818563,513147,134348 +g1,21910:9511079,21756303 +g1,21910:10471836,21756303 +g1,21910:11690150,21756303 +g1,21910:14961707,21756303 +g1,21910:17366223,21756303 +g1,21910:18216880,21756303 +(1,21910:18216880,21756303:0,452978,115847 +r1,21974:21388840,21756303:3171960,568825,115847 +k1,21910:18216880,21756303:-3171960 +) +(1,21910:18216880,21756303:3171960,452978,115847 +k1,21910:18216880,21756303:3277 +h1,21910:21385563,21756303:0,411205,112570 +) +k1,21911:32583029,21756303:11020519 +g1,21911:32583029,21756303 +) +] +g1,21911:32583029,21890651 +) +h1,21911:6630773,21890651:0,0,0 +v1,21914:6630773,22755731:0,393216,0 +(1,21915:6630773,24884851:25952256,2522336,0 +g1,21915:6630773,24884851 +g1,21915:6237557,24884851 +r1,21974:6368629,24884851:131072,2522336,0 +g1,21915:6567858,24884851 +g1,21915:6764466,24884851 +[1,21915:6764466,24884851:25818563,2522336,0 +(1,21915:6764466,23028208:25818563,665693,196608 +(1,21914:6764466,23028208:0,665693,196608 +r1,21974:8010564,23028208:1246098,862301,196608 +k1,21914:6764466,23028208:-1246098 +) +(1,21914:6764466,23028208:1246098,665693,196608 +) +k1,21914:8250121,23028208:239557 +k1,21914:9976339,23028208:327680 +k1,21914:13098170,23028208:239558 +k1,21914:14356812,23028208:239557 +k1,21914:17356090,23028208:239557 +k1,21914:18254940,23028208:239558 +k1,21914:21520294,23028208:239557 +(1,21914:21520294,23028208:0,452978,115847 +r1,21974:23285407,23028208:1765113,568825,115847 +k1,21914:21520294,23028208:-1765113 +) +(1,21914:21520294,23028208:1765113,452978,115847 +k1,21914:21520294,23028208:3277 +h1,21914:23282130,23028208:0,411205,112570 +) +k1,21914:23524965,23028208:239558 +k1,21914:24955967,23028208:239557 +(1,21914:24955967,23028208:0,452978,115847 +r1,21974:28831351,23028208:3875384,568825,115847 +k1,21914:24955967,23028208:-3875384 +) +(1,21914:24955967,23028208:3875384,452978,115847 +k1,21914:24955967,23028208:3277 +h1,21914:28828074,23028208:0,411205,112570 +) +k1,21914:29244578,23028208:239557 +k1,21914:30675581,23028208:239558 +k1,21914:31821501,23028208:239557 +k1,21914:32583029,23028208:0 +) +(1,21915:6764466,23893288:25818563,513147,134348 +k1,21914:10209624,23893288:157217 +k1,21914:11385927,23893288:157218 +k1,21914:13808724,23893288:157217 +k1,21914:17368571,23893288:157218 +k1,21914:18192944,23893288:157217 +(1,21914:18192944,23893288:0,452978,115847 +r1,21974:22068328,23893288:3875384,568825,115847 +k1,21914:18192944,23893288:-3875384 +) +(1,21914:18192944,23893288:3875384,452978,115847 +k1,21914:18192944,23893288:3277 +h1,21914:22065051,23893288:0,411205,112570 +) +k1,21914:22399216,23893288:157218 +k1,21914:23207861,23893288:157217 +k1,21914:24343532,23893288:157218 +k1,21914:25519834,23893288:157217 +k1,21914:26776746,23893288:157218 +k1,21914:27585391,23893288:157217 +k1,21914:29753254,23893288:157218 +k1,21914:30929556,23893288:157217 +k1,21914:32583029,23893288:0 +) +(1,21915:6764466,24758368:25818563,513147,126483 +g1,21914:9122451,24758368 +g1,21914:10007842,24758368 +(1,21914:10007842,24758368:0,452978,115847 +r1,21974:11772955,24758368:1765113,568825,115847 +k1,21914:10007842,24758368:-1765113 +) +(1,21914:10007842,24758368:1765113,452978,115847 +k1,21914:10007842,24758368:3277 +h1,21914:11769678,24758368:0,411205,112570 +) +g1,21914:11972184,24758368 +g1,21914:13664323,24758368 +g1,21914:14625080,24758368 +k1,21915:32583029,24758368:15518699 +g1,21915:32583029,24758368 +) +] +g1,21915:32583029,24884851 +) +h1,21915:6630773,24884851:0,0,0 +(1,21919:6630773,25749931:25952256,513147,134348 +h1,21918:6630773,25749931:983040,0,0 +k1,21918:9249974,25749931:203544 +k1,21918:9868357,25749931:203540 +k1,21918:12832277,25749931:203544 +k1,21918:15267322,25749931:203544 +k1,21918:18496663,25749931:203544 +k1,21918:19647858,25749931:203544 +k1,21918:22534446,25749931:203544 +k1,21918:25324697,25749931:203545 +k1,21918:26922192,25749931:203544 +k1,21918:28612748,25749931:203544 +k1,21918:30007737,25749931:203544 +k1,21918:31591469,25749931:203544 +k1,21918:32583029,25749931:0 +) +(1,21919:6630773,26615011:25952256,513147,134348 +k1,21918:8610714,26615011:218333 +k1,21918:9445085,26615011:218333 +k1,21918:10682502,26615011:218332 +k1,21918:12288888,26615011:218333 +k1,21918:14005374,26615011:218333 +k1,21918:15171358,26615011:218333 +(1,21918:15171358,26615011:0,459977,115847 +r1,21974:16936471,26615011:1765113,575824,115847 +k1,21918:15171358,26615011:-1765113 +) +(1,21918:15171358,26615011:1765113,459977,115847 +k1,21918:15171358,26615011:3277 +h1,21918:16933194,26615011:0,411205,112570 +) +k1,21918:17154803,26615011:218332 +k1,21918:18564581,26615011:218333 +k1,21918:19398952,26615011:218333 +k1,21918:22810199,26615011:218333 +k1,21918:24416584,26615011:218332 +k1,21918:26637042,26615011:218333 +k1,21918:28004221,26615011:218333 +(1,21918:28004221,26615011:0,459977,115847 +r1,21974:32583029,26615011:4578808,575824,115847 +k1,21918:28004221,26615011:-4578808 +) +(1,21918:28004221,26615011:4578808,459977,115847 +k1,21918:28004221,26615011:3277 +h1,21918:32579752,26615011:0,411205,112570 +) +k1,21918:32583029,26615011:0 +) +(1,21919:6630773,27480091:25952256,513147,126483 +g1,21918:7481430,27480091 +g1,21918:9711620,27480091 +g1,21918:10929934,27480091 +g1,21918:12517216,27480091 +g1,21918:13664096,27480091 +g1,21918:15066566,27480091 +g1,21918:17874128,27480091 +g1,21918:18732649,27480091 +k1,21919:32583029,27480091:10650912 +g1,21919:32583029,27480091 +) +v1,21921:6630773,28164946:0,393216,0 +(1,21969:6630773,42510531:25952256,14738801,196608 +g1,21969:6630773,42510531 +g1,21969:6630773,42510531 +g1,21969:6434165,42510531 +(1,21969:6434165,42510531:0,14738801,196608 +r1,21974:32779637,42510531:26345472,14935409,196608 +k1,21969:6434165,42510531:-26345472 +) +(1,21969:6434165,42510531:26345472,14738801,196608 +[1,21969:6630773,42510531:25952256,14542193,0 +(1,21923:6630773,28399383:25952256,431045,79822 +(1,21922:6630773,28399383:0,0,0 +g1,21922:6630773,28399383 +g1,21922:6630773,28399383 +g1,21922:6303093,28399383 +(1,21922:6303093,28399383:0,0,0 +) +g1,21922:6630773,28399383 +) +k1,21923:6630773,28399383:0 +g1,21923:7626635,28399383 +g1,21923:16257437,28399383 +h1,21923:16589391,28399383:0,0,0 +k1,21923:32583029,28399383:15993638 +g1,21923:32583029,28399383 +) +(1,21924:6630773,29084238:25952256,431045,79822 +h1,21924:6630773,29084238:0,0,0 +g1,21924:6962727,29084238 +g1,21924:7294681,29084238 +k1,21924:7294681,29084238:0 +h1,21924:14597667,29084238:0,0,0 +k1,21924:32583029,29084238:17985362 +g1,21924:32583029,29084238 +) +(1,21925:6630773,29769093:25952256,424439,79822 +h1,21925:6630773,29769093:0,0,0 +h1,21925:6962727,29769093:0,0,0 +k1,21925:32583029,29769093:25620302 +g1,21925:32583029,29769093 +) +(1,21929:6630773,30585020:25952256,424439,79822 +(1,21927:6630773,30585020:0,0,0 +g1,21927:6630773,30585020 +g1,21927:6630773,30585020 +g1,21927:6303093,30585020 +(1,21927:6303093,30585020:0,0,0 +) +g1,21927:6630773,30585020 +) +g1,21929:7626635,30585020 +g1,21929:8954451,30585020 +h1,21929:10282267,30585020:0,0,0 +k1,21929:32583029,30585020:22300762 +g1,21929:32583029,30585020 +) +(1,21931:6630773,31400947:25952256,431045,79822 +(1,21930:6630773,31400947:0,0,0 +g1,21930:6630773,31400947 +g1,21930:6630773,31400947 +g1,21930:6303093,31400947 +(1,21930:6303093,31400947:0,0,0 +) +g1,21930:6630773,31400947 +) +k1,21931:6630773,31400947:0 +h1,21931:13269851,31400947:0,0,0 +k1,21931:32583029,31400947:19313178 +g1,21931:32583029,31400947 +) +(1,21935:6630773,32216874:25952256,424439,79822 +(1,21933:6630773,32216874:0,0,0 +g1,21933:6630773,32216874 +g1,21933:6630773,32216874 +g1,21933:6303093,32216874 +(1,21933:6303093,32216874:0,0,0 +) +g1,21933:6630773,32216874 +) +g1,21935:7626635,32216874 +g1,21935:8954451,32216874 +h1,21935:9286405,32216874:0,0,0 +k1,21935:32583029,32216874:23296624 +g1,21935:32583029,32216874 +) +(1,21937:6630773,33032801:25952256,431045,79822 +(1,21936:6630773,33032801:0,0,0 +g1,21936:6630773,33032801 +g1,21936:6630773,33032801 +g1,21936:6303093,33032801 +(1,21936:6303093,33032801:0,0,0 +) +g1,21936:6630773,33032801 +) +k1,21937:6630773,33032801:0 +h1,21937:13269851,33032801:0,0,0 +k1,21937:32583029,33032801:19313178 +g1,21937:32583029,33032801 +) +(1,21944:6630773,33848728:25952256,424439,6605 +(1,21939:6630773,33848728:0,0,0 +g1,21939:6630773,33848728 +g1,21939:6630773,33848728 +g1,21939:6303093,33848728 +(1,21939:6303093,33848728:0,0,0 +) +g1,21939:6630773,33848728 +) +g1,21944:7626635,33848728 +g1,21944:7958589,33848728 +g1,21944:8290543,33848728 +g1,21944:8622497,33848728 +g1,21944:8954451,33848728 +g1,21944:9286405,33848728 +g1,21944:9618359,33848728 +g1,21944:9950313,33848728 +g1,21944:10282267,33848728 +g1,21944:11942037,33848728 +g1,21944:13933761,33848728 +g1,21944:15593531,33848728 +g1,21944:15925485,33848728 +g1,21944:16257439,33848728 +g1,21944:16589393,33848728 +g1,21944:16921347,33848728 +g1,21944:17253301,33848728 +g1,21944:17585255,33848728 +g1,21944:17917209,33848728 +g1,21944:18249163,33848728 +g1,21944:18581117,33848728 +g1,21944:18913071,33848728 +g1,21944:19245025,33848728 +g1,21944:19576979,33848728 +g1,21944:19908933,33848728 +g1,21944:20240887,33848728 +g1,21944:22232611,33848728 +g1,21944:22564565,33848728 +g1,21944:22896519,33848728 +g1,21944:23228473,33848728 +g1,21944:23560427,33848728 +g1,21944:23892381,33848728 +g1,21944:24224335,33848728 +g1,21944:24556289,33848728 +g1,21944:24888243,33848728 +g1,21944:25220197,33848728 +g1,21944:25552151,33848728 +g1,21944:25884105,33848728 +g1,21944:26216059,33848728 +g1,21944:26548013,33848728 +g1,21944:26879967,33848728 +h1,21944:28539737,33848728:0,0,0 +k1,21944:32583029,33848728:4043292 +g1,21944:32583029,33848728 +) +(1,21944:6630773,34533583:25952256,407923,9908 +h1,21944:6630773,34533583:0,0,0 +g1,21944:7626635,34533583 +g1,21944:10282267,34533583 +g1,21944:10614221,34533583 +g1,21944:10946175,34533583 +g1,21944:11278129,34533583 +g1,21944:11942037,34533583 +g1,21944:13933761,34533583 +g1,21944:14265715,34533583 +g1,21944:15593531,34533583 +g1,21944:19245025,34533583 +g1,21944:22232610,34533583 +g1,21944:25884104,34533583 +h1,21944:28539735,34533583:0,0,0 +k1,21944:32583029,34533583:4043294 +g1,21944:32583029,34533583 +) +(1,21944:6630773,35218438:25952256,424439,6605 +h1,21944:6630773,35218438:0,0,0 +g1,21944:7626635,35218438 +g1,21944:7958589,35218438 +g1,21944:8290543,35218438 +g1,21944:8622497,35218438 +g1,21944:8954451,35218438 +g1,21944:9286405,35218438 +g1,21944:9618359,35218438 +g1,21944:9950313,35218438 +g1,21944:10282267,35218438 +g1,21944:10614221,35218438 +g1,21944:10946175,35218438 +g1,21944:11278129,35218438 +g1,21944:11610083,35218438 +g1,21944:11942037,35218438 +g1,21944:12273991,35218438 +g1,21944:12605945,35218438 +g1,21944:12937899,35218438 +g1,21944:13269853,35218438 +g1,21944:13601807,35218438 +g1,21944:13933761,35218438 +g1,21944:14265715,35218438 +g1,21944:14597669,35218438 +g1,21944:14929623,35218438 +g1,21944:16921347,35218438 +h1,21944:17917209,35218438:0,0,0 +k1,21944:32583029,35218438:14665820 +g1,21944:32583029,35218438 +) +(1,21944:6630773,35903293:25952256,407923,9908 +h1,21944:6630773,35903293:0,0,0 +g1,21944:7626635,35903293 +g1,21944:10282267,35903293 +g1,21944:13933761,35903293 +g1,21944:16921346,35903293 +g1,21944:17253300,35903293 +h1,21944:17917208,35903293:0,0,0 +k1,21944:32583029,35903293:14665821 +g1,21944:32583029,35903293 +) +(1,21946:6630773,36719220:25952256,431045,86428 +(1,21945:6630773,36719220:0,0,0 +g1,21945:6630773,36719220 +g1,21945:6630773,36719220 +g1,21945:6303093,36719220 +(1,21945:6303093,36719220:0,0,0 +) +g1,21945:6630773,36719220 +) +k1,21946:6630773,36719220:0 +g1,21946:14265713,36719220 +h1,21946:17585252,36719220:0,0,0 +k1,21946:32583029,36719220:14997777 +g1,21946:32583029,36719220 +) +(1,21950:6630773,37535147:25952256,424439,79822 +(1,21948:6630773,37535147:0,0,0 +g1,21948:6630773,37535147 +g1,21948:6630773,37535147 +g1,21948:6303093,37535147 +(1,21948:6303093,37535147:0,0,0 +) +g1,21948:6630773,37535147 +) +g1,21950:7626635,37535147 +g1,21950:8954451,37535147 +h1,21950:10282267,37535147:0,0,0 +k1,21950:32583029,37535147:22300762 +g1,21950:32583029,37535147 +) +(1,21952:6630773,38351074:25952256,431045,79822 +(1,21951:6630773,38351074:0,0,0 +g1,21951:6630773,38351074 +g1,21951:6630773,38351074 +g1,21951:6303093,38351074 +(1,21951:6303093,38351074:0,0,0 +) +g1,21951:6630773,38351074 +) +k1,21952:6630773,38351074:0 +h1,21952:13933759,38351074:0,0,0 +k1,21952:32583029,38351074:18649270 +g1,21952:32583029,38351074 +) +(1,21956:6630773,39167001:25952256,424439,79822 +(1,21954:6630773,39167001:0,0,0 +g1,21954:6630773,39167001 +g1,21954:6630773,39167001 +g1,21954:6303093,39167001 +(1,21954:6303093,39167001:0,0,0 +) +g1,21954:6630773,39167001 +) +g1,21956:7626635,39167001 +g1,21956:8954451,39167001 +h1,21956:10614221,39167001:0,0,0 +k1,21956:32583029,39167001:21968808 +g1,21956:32583029,39167001 +) +(1,21958:6630773,39982928:25952256,431045,79822 +(1,21957:6630773,39982928:0,0,0 +g1,21957:6630773,39982928 +g1,21957:6630773,39982928 +g1,21957:6303093,39982928 +(1,21957:6303093,39982928:0,0,0 +) +g1,21957:6630773,39982928 +) +k1,21958:6630773,39982928:0 +h1,21958:13933759,39982928:0,0,0 +k1,21958:32583029,39982928:18649270 +g1,21958:32583029,39982928 +) +(1,21962:6630773,40798855:25952256,424439,79822 +(1,21960:6630773,40798855:0,0,0 +g1,21960:6630773,40798855 +g1,21960:6630773,40798855 +g1,21960:6303093,40798855 +(1,21960:6303093,40798855:0,0,0 +) +g1,21960:6630773,40798855 +) +g1,21962:7626635,40798855 +g1,21962:8954451,40798855 +h1,21962:10282267,40798855:0,0,0 +k1,21962:32583029,40798855:22300762 +g1,21962:32583029,40798855 +) +(1,21964:6630773,41614782:25952256,431045,79822 +(1,21963:6630773,41614782:0,0,0 +g1,21963:6630773,41614782 +g1,21963:6630773,41614782 +g1,21963:6303093,41614782 +(1,21963:6303093,41614782:0,0,0 +) +g1,21963:6630773,41614782 +) +k1,21964:6630773,41614782:0 +h1,21964:13933759,41614782:0,0,0 +k1,21964:32583029,41614782:18649270 +g1,21964:32583029,41614782 +) +(1,21968:6630773,42430709:25952256,424439,79822 +(1,21966:6630773,42430709:0,0,0 +g1,21966:6630773,42430709 +g1,21966:6630773,42430709 +g1,21966:6303093,42430709 +(1,21966:6303093,42430709:0,0,0 +) +g1,21966:6630773,42430709 +) +g1,21968:7626635,42430709 +g1,21968:8954451,42430709 +h1,21968:10282267,42430709:0,0,0 +k1,21968:32583029,42430709:22300762 +g1,21968:32583029,42430709 +) +] +) +g1,21969:32583029,42510531 +g1,21969:6630773,42510531 +g1,21969:6630773,42510531 +g1,21969:32583029,42510531 +g1,21969:32583029,42510531 +) +h1,21969:6630773,42707139:0,0,0 +v1,21973:6630773,43572219:0,393216,0 +(1,21974:6630773,45706769:25952256,2527766,0 +g1,21974:6630773,45706769 +g1,21974:6237557,45706769 +r1,21974:6368629,45706769:131072,2527766,0 +g1,21974:6567858,45706769 +g1,21974:6764466,45706769 +[1,21974:6764466,45706769:25818563,2527766,0 +(1,21974:6764466,43844696:25818563,665693,196608 +(1,21973:6764466,43844696:0,665693,196608 +r1,21974:8010564,43844696:1246098,862301,196608 +k1,21973:6764466,43844696:-1246098 +) +(1,21973:6764466,43844696:1246098,665693,196608 +) +k1,21973:8197959,43844696:187395 +k1,21973:9924177,43844696:327680 +k1,21973:12901439,43844696:187394 +(1,21973:12901439,43844696:0,459977,115847 +r1,21974:16776823,43844696:3875384,575824,115847 +k1,21973:12901439,43844696:-3875384 +) +(1,21973:12901439,43844696:3875384,459977,115847 +k1,21973:12901439,43844696:3277 +h1,21973:16773546,43844696:0,411205,112570 +) +k1,21973:16964218,43844696:187395 +k1,21973:18255894,43844696:187394 +k1,21973:19191055,43844696:187395 +k1,21973:20891675,43844696:187394 +k1,21973:21730498,43844696:187395 +k1,21973:24941723,43844696:187394 +k1,21973:25484978,43844696:187395 +k1,21973:26655412,43844696:187394 +k1,21973:28291153,43844696:187395 +k1,21973:30046168,43844696:187394 +k1,21973:31021961,43844696:187395 +k1,21974:32583029,43844696:0 +) +(1,21974:6764466,44709776:25818563,505283,134348 +k1,21973:9540817,44709776:196854 +k1,21973:10353708,44709776:196853 +k1,21973:10906422,44709776:196854 +k1,21973:12341250,44709776:196853 +k1,21973:13822610,44709776:196854 +k1,21973:14550961,44709776:196854 +k1,21973:17417095,44709776:196853 +k1,21973:19646876,44709776:196854 +k1,21973:21212122,44709776:196854 +k1,21973:22955625,44709776:196853 +k1,21973:23765241,44709776:196854 +k1,21973:24981180,44709776:196854 +k1,21973:26566086,44709776:196853 +k1,21973:28261093,44709776:196854 +k1,21973:29649391,44709776:196853 +k1,21973:31189078,44709776:196854 +k1,21973:32583029,44709776:0 +) +(1,21974:6764466,45574856:25818563,513147,134348 +g1,21973:7982780,45574856 +g1,21973:10877505,45574856 +g1,21973:11728162,45574856 +g1,21973:14864059,45574856 +g1,21973:16755428,45574856 +g1,21973:18733304,45574856 +g1,21973:20217039,45574856 +g1,21973:21917042,45574856 +g1,21973:22732309,45574856 +g1,21973:23950623,45574856 +g1,21973:27226112,45574856 +g1,21973:28595814,45574856 +g1,21973:29786603,45574856 +k1,21974:32583029,45574856:887362 +g1,21974:32583029,45574856 +) +] +g1,21974:32583029,45706769 +) +] +(1,21974:32583029,45706769:0,0,0 +g1,21974:32583029,45706769 +) +) +] +(1,21974:6630773,47279633:25952256,0,0 +h1,21974:6630773,47279633:25952256,0,0 +) +] +(1,21974:4262630,4025873:0,0,0 +[1,21974:-473656,4025873:0,0,0 +(1,21974:-473656,-710413:0,0,0 +(1,21974:-473656,-710413:0,0,0 +g1,21974:-473656,-710413 +) +g1,21974:-473656,-710413 +) +] +) +] +!29822 +}378 +Input:3582:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3583:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3584:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3585:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3586:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3587:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3588:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!670 +{379 +[1,22014:4262630,47279633:28320399,43253760,0 +(1,22014:4262630,4025873:0,0,0 +[1,22014:-473656,4025873:0,0,0 +(1,22014:-473656,-710413:0,0,0 +(1,22014:-473656,-644877:0,0,0 +k1,22014:-473656,-644877:-65536 ) -(1,21866:-473656,4736287:0,0,0 -k1,21866:-473656,4736287:5209943 +(1,22014:-473656,4736287:0,0,0 +k1,22014:-473656,4736287:5209943 ) -g1,21866:-473656,-710413 +g1,22014:-473656,-710413 ) ] ) -[1,21866:6630773,47279633:25952256,43253760,0 -[1,21866:6630773,4812305:25952256,786432,0 -(1,21866:6630773,4812305:25952256,505283,134348 -(1,21866:6630773,4812305:25952256,505283,134348 -g1,21866:3078558,4812305 -[1,21866:3078558,4812305:0,0,0 -(1,21866:3078558,2439708:0,1703936,0 -k1,21866:1358238,2439708:-1720320 -(1,21457:1358238,2439708:1720320,1703936,0 -(1,21457:1358238,2439708:1179648,16384,0 -r1,21866:2537886,2439708:1179648,16384,0 +[1,22014:6630773,47279633:25952256,43253760,0 +[1,22014:6630773,4812305:25952256,786432,0 +(1,22014:6630773,4812305:25952256,505283,134348 +(1,22014:6630773,4812305:25952256,505283,134348 +g1,22014:3078558,4812305 +[1,22014:3078558,4812305:0,0,0 +(1,22014:3078558,2439708:0,1703936,0 +k1,22014:1358238,2439708:-1720320 +(1,21670:1358238,2439708:1720320,1703936,0 +(1,21670:1358238,2439708:1179648,16384,0 +r1,22014:2537886,2439708:1179648,16384,0 ) -g1,21457:3062174,2439708 -(1,21457:3062174,2439708:16384,1703936,0 -[1,21457:3062174,2439708:25952256,1703936,0 -(1,21457:3062174,1915420:25952256,1179648,0 -(1,21457:3062174,1915420:16384,1179648,0 -r1,21866:3078558,1915420:16384,1179648,0 +g1,21670:3062174,2439708 +(1,21670:3062174,2439708:16384,1703936,0 +[1,21670:3062174,2439708:25952256,1703936,0 +(1,21670:3062174,1915420:25952256,1179648,0 +(1,21670:3062174,1915420:16384,1179648,0 +r1,22014:3078558,1915420:16384,1179648,0 ) -k1,21457:29014430,1915420:25935872 -g1,21457:29014430,1915420 +k1,21670:29014430,1915420:25935872 +g1,21670:29014430,1915420 ) ] ) ) ) ] -[1,21866:3078558,4812305:0,0,0 -(1,21866:3078558,2439708:0,1703936,0 -g1,21866:29030814,2439708 -g1,21866:36135244,2439708 -(1,21457:36135244,2439708:1720320,1703936,0 -(1,21457:36135244,2439708:16384,1703936,0 -[1,21457:36135244,2439708:25952256,1703936,0 -(1,21457:36135244,1915420:25952256,1179648,0 -(1,21457:36135244,1915420:16384,1179648,0 -r1,21866:36151628,1915420:16384,1179648,0 +[1,22014:3078558,4812305:0,0,0 +(1,22014:3078558,2439708:0,1703936,0 +g1,22014:29030814,2439708 +g1,22014:36135244,2439708 +(1,21670:36135244,2439708:1720320,1703936,0 +(1,21670:36135244,2439708:16384,1703936,0 +[1,21670:36135244,2439708:25952256,1703936,0 +(1,21670:36135244,1915420:25952256,1179648,0 +(1,21670:36135244,1915420:16384,1179648,0 +r1,22014:36151628,1915420:16384,1179648,0 ) -k1,21457:62087500,1915420:25935872 -g1,21457:62087500,1915420 +k1,21670:62087500,1915420:25935872 +g1,21670:62087500,1915420 ) ] ) -g1,21457:36675916,2439708 -(1,21457:36675916,2439708:1179648,16384,0 -r1,21866:37855564,2439708:1179648,16384,0 +g1,21670:36675916,2439708 +(1,21670:36675916,2439708:1179648,16384,0 +r1,22014:37855564,2439708:1179648,16384,0 ) ) -k1,21866:3078556,2439708:-34777008 +k1,22014:3078556,2439708:-34777008 ) ] -[1,21866:3078558,4812305:0,0,0 -(1,21866:3078558,49800853:0,16384,2228224 -k1,21866:1358238,49800853:-1720320 -(1,21457:1358238,49800853:1720320,16384,2228224 -(1,21457:1358238,49800853:1179648,16384,0 -r1,21866:2537886,49800853:1179648,16384,0 +[1,22014:3078558,4812305:0,0,0 +(1,22014:3078558,49800853:0,16384,2228224 +k1,22014:1358238,49800853:-1720320 +(1,21670:1358238,49800853:1720320,16384,2228224 +(1,21670:1358238,49800853:1179648,16384,0 +r1,22014:2537886,49800853:1179648,16384,0 ) -g1,21457:3062174,49800853 -(1,21457:3062174,52029077:16384,1703936,0 -[1,21457:3062174,52029077:25952256,1703936,0 -(1,21457:3062174,51504789:25952256,1179648,0 -(1,21457:3062174,51504789:16384,1179648,0 -r1,21866:3078558,51504789:16384,1179648,0 +g1,21670:3062174,49800853 +(1,21670:3062174,52029077:16384,1703936,0 +[1,21670:3062174,52029077:25952256,1703936,0 +(1,21670:3062174,51504789:25952256,1179648,0 +(1,21670:3062174,51504789:16384,1179648,0 +r1,22014:3078558,51504789:16384,1179648,0 ) -k1,21457:29014430,51504789:25935872 -g1,21457:29014430,51504789 +k1,21670:29014430,51504789:25935872 +g1,21670:29014430,51504789 ) ] ) ) ) ] -[1,21866:3078558,4812305:0,0,0 -(1,21866:3078558,49800853:0,16384,2228224 -g1,21866:29030814,49800853 -g1,21866:36135244,49800853 -(1,21457:36135244,49800853:1720320,16384,2228224 -(1,21457:36135244,52029077:16384,1703936,0 -[1,21457:36135244,52029077:25952256,1703936,0 -(1,21457:36135244,51504789:25952256,1179648,0 -(1,21457:36135244,51504789:16384,1179648,0 -r1,21866:36151628,51504789:16384,1179648,0 -) -k1,21457:62087500,51504789:25935872 -g1,21457:62087500,51504789 -) -] -) -g1,21457:36675916,49800853 -(1,21457:36675916,49800853:1179648,16384,0 -r1,21866:37855564,49800853:1179648,16384,0 -) -) -k1,21866:3078556,49800853:-34777008 -) -] -g1,21866:6630773,4812305 -k1,21866:21078841,4812305:13252691 -g1,21866:22701512,4812305 -g1,21866:23350318,4812305 -g1,21866:24759997,4812305 -g1,21866:28372341,4812305 -g1,21866:30105768,4812305 -) -) -] -[1,21866:6630773,45706769:25952256,40108032,0 -(1,21866:6630773,45706769:25952256,40108032,0 -(1,21866:6630773,45706769:0,0,0 -g1,21866:6630773,45706769 -) -[1,21866:6630773,45706769:25952256,40108032,0 -v1,21849:6630773,6254097:0,393216,0 -(1,21849:6630773,30401694:25952256,24540813,0 -g1,21849:6630773,30401694 -g1,21849:6303093,30401694 -r1,21866:6401397,30401694:98304,24540813,0 -g1,21849:6600626,30401694 -g1,21849:6797234,30401694 -[1,21849:6797234,30401694:25785795,24540813,0 -(1,21812:6797234,6374028:25785795,513147,134348 -k1,21811:8577906,6374028:254994 -k1,21811:9851986,6374028:254995 -k1,21811:12809029,6374028:254994 -k1,21811:13723315,6374028:254994 -k1,21811:14997395,6374028:254995 -k1,21811:17687707,6374028:254994 -k1,21811:19332064,6374028:254994 -k1,21811:21276577,6374028:254995 -k1,21811:21946358,6374028:254938 -k1,21811:25521406,6374028:254994 -k1,21811:29985123,6374028:254995 -k1,21811:31634068,6374028:254994 -k1,21811:32583029,6374028:0 -) -(1,21812:6797234,7215516:25785795,505283,134348 -g1,21811:9377386,7215516 -k1,21812:32583028,7215516:21446000 -g1,21812:32583028,7215516 -) -v1,21814:6797234,8405982:0,393216,0 -(1,21829:6797234,12615578:25785795,4602812,196608 -g1,21829:6797234,12615578 -g1,21829:6797234,12615578 -g1,21829:6600626,12615578 -(1,21829:6600626,12615578:0,4602812,196608 -r1,21866:32779637,12615578:26179011,4799420,196608 -k1,21829:6600625,12615578:-26179012 -) -(1,21829:6600626,12615578:26179011,4602812,196608 -[1,21829:6797234,12615578:25785795,4406204,0 -(1,21816:6797234,8619892:25785795,410518,82312 -(1,21815:6797234,8619892:0,0,0 -g1,21815:6797234,8619892 -g1,21815:6797234,8619892 -g1,21815:6469554,8619892 -(1,21815:6469554,8619892:0,0,0 -) -g1,21815:6797234,8619892 -) -k1,21816:6797234,8619892:0 -g1,21816:10907129,8619892 -g1,21816:11539421,8619892 -g1,21816:12487859,8619892 -g1,21816:13436296,8619892 -g1,21816:14068588,8619892 -g1,21816:14700880,8619892 -g1,21816:15649318,8619892 -g1,21816:16281610,8619892 -g1,21816:17230047,8619892 -g1,21816:17862339,8619892 -g1,21816:18810777,8619892 -g1,21816:22604525,8619892 -g1,21816:23236817,8619892 -h1,21816:25133691,8619892:0,0,0 -k1,21816:32583029,8619892:7449338 -g1,21816:32583029,8619892 -) -(1,21821:6797234,9286070:25785795,379060,4718 -(1,21818:6797234,9286070:0,0,0 -g1,21818:6797234,9286070 -g1,21818:6797234,9286070 -g1,21818:6469554,9286070 -(1,21818:6469554,9286070:0,0,0 -) -g1,21818:6797234,9286070 -) -g1,21821:7745671,9286070 -g1,21821:8061817,9286070 -g1,21821:8377963,9286070 -g1,21821:9010255,9286070 -g1,21821:9642547,9286070 -g1,21821:9958693,9286070 -g1,21821:10274839,9286070 -h1,21821:10590985,9286070:0,0,0 -k1,21821:32583029,9286070:21992044 -g1,21821:32583029,9286070 -) -(1,21821:6797234,9952248:25785795,388497,9436 -h1,21821:6797234,9952248:0,0,0 -g1,21821:7745671,9952248 -g1,21821:8377963,9952248 -g1,21821:9010255,9952248 -g1,21821:9326401,9952248 -g1,21821:9958693,9952248 -g1,21821:10274839,9952248 -h1,21821:10590985,9952248:0,0,0 -k1,21821:32583029,9952248:21992044 -g1,21821:32583029,9952248 -) -(1,21823:6797234,11273786:25785795,410518,82312 -(1,21822:6797234,11273786:0,0,0 -g1,21822:6797234,11273786 -g1,21822:6797234,11273786 -g1,21822:6469554,11273786 -(1,21822:6469554,11273786:0,0,0 -) -g1,21822:6797234,11273786 -) -k1,21823:6797234,11273786:0 -g1,21823:10907129,11273786 -g1,21823:11539421,11273786 -g1,21823:12487859,11273786 -g1,21823:13436296,11273786 -g1,21823:14068588,11273786 -g1,21823:14700880,11273786 -g1,21823:15649318,11273786 -g1,21823:16281610,11273786 -g1,21823:17230047,11273786 -g1,21823:17862339,11273786 -h1,21823:18494631,11273786:0,0,0 -k1,21823:32583029,11273786:14088398 -g1,21823:32583029,11273786 -) -(1,21828:6797234,11939964:25785795,379060,4718 -(1,21825:6797234,11939964:0,0,0 -g1,21825:6797234,11939964 -g1,21825:6797234,11939964 -g1,21825:6469554,11939964 -(1,21825:6469554,11939964:0,0,0 -) -g1,21825:6797234,11939964 -) -g1,21828:7745671,11939964 -g1,21828:8061817,11939964 -g1,21828:8377963,11939964 -g1,21828:9010255,11939964 -g1,21828:9958692,11939964 -h1,21828:10907129,11939964:0,0,0 -k1,21828:32583029,11939964:21675900 -g1,21828:32583029,11939964 -) -(1,21828:6797234,12606142:25785795,388497,9436 -h1,21828:6797234,12606142:0,0,0 -g1,21828:7745671,12606142 -g1,21828:8377963,12606142 -g1,21828:9010255,12606142 -g1,21828:9326401,12606142 -g1,21828:9958693,12606142 -g1,21828:10274839,12606142 -g1,21828:10590985,12606142 -h1,21828:10907131,12606142:0,0,0 -k1,21828:32583029,12606142:21675898 -g1,21828:32583029,12606142 -) -] -) -g1,21829:32583029,12615578 -g1,21829:6797234,12615578 -g1,21829:6797234,12615578 -g1,21829:32583029,12615578 -g1,21829:32583029,12615578 -) -h1,21829:6797234,12812186:0,0,0 -(1,21833:6797234,14177962:25785795,513147,126483 -h1,21832:6797234,14177962:983040,0,0 -k1,21832:8957502,14177962:274797 -k1,21832:10698996,14177962:274798 -k1,21832:12623990,14177962:274797 -k1,21832:14853726,14177962:274797 -k1,21832:16495605,14177962:274798 -k1,21832:17301899,14177962:274797 -k1,21832:19274734,14177962:274797 -k1,21832:22854512,14177962:274797 -k1,21832:24233592,14177962:274798 -k1,21832:25256155,14177962:274797 -k1,21832:27331881,14177962:274797 -k1,21832:30527619,14177962:274798 -k1,21832:31563944,14177962:274797 -k1,21832:32583029,14177962:0 -) -(1,21833:6797234,15019450:25785795,505283,134348 -k1,21832:8445779,15019450:267701 -k1,21832:11116030,15019450:267701 -k1,21832:12402817,15019450:267702 -k1,21832:15002944,15019450:267701 -k1,21832:16690810,15019450:267701 -k1,21832:18149956,15019450:267701 -k1,21832:18812185,15019450:267702 -(1,21832:19019279,15019450:0,435480,115847 -r1,21866:19729257,15019450:709978,551327,115847 -k1,21832:19019279,15019450:-709978 -) -(1,21832:19019279,15019450:709978,435480,115847 -k1,21832:19019279,15019450:3277 -h1,21832:19725980,15019450:0,411205,112570 -) -k1,21832:19996958,15019450:267701 -k1,21832:21125802,15019450:267701 -(1,21832:21125802,15019450:0,414482,115847 -r1,21866:21835780,15019450:709978,530329,115847 -k1,21832:21125802,15019450:-709978 -) -(1,21832:21125802,15019450:709978,414482,115847 -k1,21832:21125802,15019450:3277 -h1,21832:21832503,15019450:0,411205,112570 -) -k1,21832:22310575,15019450:267701 -k1,21832:23261161,15019450:267701 -k1,21832:24081332,15019450:267702 -k1,21832:25540478,15019450:267701 -k1,21832:26964889,15019450:267701 -(1,21832:27171983,15019450:0,452978,115847 -r1,21866:27881961,15019450:709978,568825,115847 -k1,21832:27171983,15019450:-709978 -) -(1,21832:27171983,15019450:709978,452978,115847 -k1,21832:27171983,15019450:3277 -h1,21832:27878684,15019450:0,411205,112570 -) -k1,21832:28149662,15019450:267701 -k1,21832:29278507,15019450:267702 -(1,21832:29278507,15019450:0,435480,115847 -r1,21866:29988485,15019450:709978,551327,115847 -k1,21832:29278507,15019450:-709978 -) -(1,21832:29278507,15019450:709978,435480,115847 -k1,21832:29278507,15019450:3277 -h1,21832:29985208,15019450:0,411205,112570 -) -k1,21832:30463280,15019450:267701 -k1,21832:31835263,15019450:267701 -k1,21832:32583029,15019450:0 -) -(1,21833:6797234,15860938:25785795,513147,134348 -k1,21832:9540869,15860938:259820 -k1,21832:10452118,15860938:259821 -k1,21832:14272509,15860938:259820 -k1,21832:15148367,15860938:259820 -k1,21832:17100328,15860938:259821 -k1,21832:19195156,15860938:259820 -k1,21832:21238212,15860938:259821 -k1,21832:23233425,15860938:259820 -k1,21832:26724825,15860938:259820 -k1,21832:29403580,15860938:259821 -k1,21832:30322692,15860938:259820 -k1,21832:32583029,15860938:0 -) -(1,21833:6797234,16702426:25785795,505283,126483 -k1,21832:8696194,16702426:147183 -k1,21832:11818056,16702426:147183 -k1,21832:14338297,16702426:147182 -k1,21832:15979046,16702426:147183 -k1,21832:16812391,16702426:147183 -k1,21832:19660313,16702426:147183 -k1,21832:20423534,16702426:147183 -k1,21832:22262857,16702426:147183 -k1,21832:24107421,16702426:147182 -k1,21832:25427043,16702426:147183 -k1,21832:28879207,16702426:147183 -k1,21832:30420341,16702426:147183 -k1,21832:32583029,16702426:0 -) -(1,21833:6797234,17543914:25785795,513147,126483 -g1,21832:9733246,17543914 -g1,21832:11796974,17543914 -g1,21832:13865290,17543914 -g1,21832:15401453,17543914 -g1,21832:16348448,17543914 -g1,21832:19226789,17543914 -g1,21832:20112180,17543914 -g1,21832:23073752,17543914 -k1,21833:32583029,17543914:6030626 -g1,21833:32583029,17543914 -) -v1,21835:6797234,18734380:0,393216,0 -(1,21843:6797234,20290082:25785795,1948918,196608 -g1,21843:6797234,20290082 -g1,21843:6797234,20290082 -g1,21843:6600626,20290082 -(1,21843:6600626,20290082:0,1948918,196608 -r1,21866:32779637,20290082:26179011,2145526,196608 -k1,21843:6600625,20290082:-26179012 -) -(1,21843:6600626,20290082:26179011,1948918,196608 -[1,21843:6797234,20290082:25785795,1752310,0 -(1,21837:6797234,18948290:25785795,410518,82312 -(1,21836:6797234,18948290:0,0,0 -g1,21836:6797234,18948290 -g1,21836:6797234,18948290 -g1,21836:6469554,18948290 -(1,21836:6469554,18948290:0,0,0 -) -g1,21836:6797234,18948290 -) -k1,21837:6797234,18948290:0 -g1,21837:11223274,18948290 -g1,21837:11855566,18948290 -g1,21837:12804004,18948290 -g1,21837:13752441,18948290 -g1,21837:14384733,18948290 -g1,21837:15333171,18948290 -g1,21837:16281608,18948290 -g1,21837:16913900,18948290 -g1,21837:17862338,18948290 -g1,21837:18810775,18948290 -g1,21837:19443067,18948290 -h1,21837:20075359,18948290:0,0,0 -k1,21837:32583029,18948290:12507670 -g1,21837:32583029,18948290 -) -(1,21842:6797234,19614468:25785795,404226,9436 -(1,21839:6797234,19614468:0,0,0 -g1,21839:6797234,19614468 -g1,21839:6797234,19614468 -g1,21839:6469554,19614468 -(1,21839:6469554,19614468:0,0,0 -) -g1,21839:6797234,19614468 -) -g1,21842:7745671,19614468 -g1,21842:8061817,19614468 -g1,21842:8377963,19614468 -g1,21842:9326400,19614468 -g1,21842:10274837,19614468 -g1,21842:11223274,19614468 -h1,21842:11855565,19614468:0,0,0 -k1,21842:32583029,19614468:20727464 -g1,21842:32583029,19614468 -) -(1,21842:6797234,20280646:25785795,388497,9436 -h1,21842:6797234,20280646:0,0,0 -g1,21842:7745671,20280646 -g1,21842:8377963,20280646 -g1,21842:8694109,20280646 -g1,21842:9326401,20280646 -g1,21842:9642547,20280646 -g1,21842:10274839,20280646 -g1,21842:10590985,20280646 -g1,21842:11223277,20280646 -g1,21842:11539423,20280646 -h1,21842:11855569,20280646:0,0,0 -k1,21842:32583029,20280646:20727460 -g1,21842:32583029,20280646 -) -] -) -g1,21843:32583029,20290082 -g1,21843:6797234,20290082 -g1,21843:6797234,20290082 -g1,21843:32583029,20290082 -g1,21843:32583029,20290082 -) -h1,21843:6797234,20486690:0,0,0 -(1,21847:6797234,21852466:25785795,513147,134348 -h1,21846:6797234,21852466:983040,0,0 -k1,21846:10546502,21852466:207047 -k1,21846:12142912,21852466:207047 -k1,21846:13917580,21852466:207047 -k1,21846:14480487,21852466:207047 -k1,21846:15913713,21852466:207047 -k1,21846:17103800,21852466:207047 -k1,21846:18415129,21852466:207047 -k1,21846:20465047,21852466:207046 -k1,21846:21288132,21852466:207047 -k1,21846:22849153,21852466:207047 -k1,21846:26882192,21852466:207047 -k1,21846:29099884,21852466:207047 -k1,21846:31345101,21852466:207047 -k1,21846:32168186,21852466:207047 -k1,21847:32583029,21852466:0 -) -(1,21847:6797234,22693954:25785795,513147,134348 -k1,21846:9831130,22693954:192255 -k1,21846:12553075,22693954:192255 -k1,21846:13404622,22693954:192255 -k1,21846:13952737,22693954:192255 -k1,21846:17277613,22693954:192255 -k1,21846:18085906,22693954:192255 -k1,21846:21353110,22693954:192255 -k1,21846:22787929,22693954:192256 -k1,21846:24678222,22693954:192255 -k1,21846:25226337,22693954:192255 -k1,21846:26687362,22693954:192248 -k1,21846:27862657,22693954:192255 -k1,21846:29866327,22693954:192255 -k1,21846:31452533,22693954:192255 -k1,21847:32583029,22693954:0 -) -(1,21847:6797234,23535442:25785795,513147,134348 -k1,21846:8612077,23535442:167923 -k1,21846:9311498,23535442:167924 -k1,21846:11801362,23535442:167923 -k1,21846:14648398,23535442:167924 -k1,21846:16551714,23535442:167923 -k1,21846:18588068,23535442:167923 -k1,21846:21283060,23535442:167924 -k1,21846:23805036,23535442:167923 -k1,21846:25045128,23535442:167923 -k1,21846:26625353,23535442:167924 -k1,21846:27479438,23535442:167923 -k1,21846:28418065,23535442:167924 -k1,21846:30055961,23535442:167923 -k1,21846:32583029,23535442:0 -) -(1,21847:6797234,24376930:25785795,513147,7863 -g1,21846:9675575,24376930 -k1,21847:32583029,24376930:21750744 -g1,21847:32583029,24376930 -) -(1,21849:6797234,25218418:25785795,513147,134348 -h1,21848:6797234,25218418:983040,0,0 -k1,21848:9190860,25218418:213899 -k1,21848:11819106,25218418:213900 -k1,21848:13354866,25218418:213899 -k1,21848:14228058,25218418:213900 -k1,21848:15208073,25218418:213899 -k1,21848:17118699,25218418:213899 -k1,21848:20339391,25218418:213900 -k1,21848:21084787,25218418:213899 -k1,21848:21950114,25218418:213899 -k1,21848:25003034,25218418:213900 -k1,21848:26725572,25218418:213899 -k1,21848:28987472,25218418:213900 -k1,21848:29887533,25218418:213899 -k1,21848:32583029,25218418:0 -) -(1,21849:6797234,26059906:25785795,513147,134348 -k1,21848:10414384,26059906:214521 -k1,21848:11820350,26059906:214521 -k1,21848:14621577,26059906:214521 -k1,21848:18893432,26059906:214521 -k1,21848:21520989,26059906:214521 -k1,21848:22839793,26059906:214522 -k1,21848:23670352,26059906:214521 -k1,21848:25486573,26059906:214521 -k1,21848:27398476,26059906:214521 -k1,21848:28360763,26059906:214521 -k1,21848:30088510,26059906:214521 -k1,21848:30954459,26059906:214521 -k1,21848:32583029,26059906:0 -) -(1,21849:6797234,26901394:25785795,513147,134348 -k1,21848:7988679,26901394:172360 -k1,21848:10403680,26901394:172359 -k1,21848:13483217,26901394:172360 -k1,21848:14314868,26901394:172359 -k1,21848:15713407,26901394:172360 -k1,21848:17199108,26901394:172359 -k1,21848:18765419,26901394:172360 -k1,21848:21230227,26901394:172359 -k1,21848:26204410,26901394:172360 -k1,21848:28581400,26901394:172359 -k1,21848:29945205,26901394:172360 -k1,21848:32583029,26901394:0 -) -(1,21849:6797234,27742882:25785795,513147,134348 -k1,21848:8560058,27742882:272535 -k1,21848:9989302,27742882:272534 -k1,21848:12315080,27742882:272535 -k1,21848:14136230,27742882:272534 -k1,21848:14940262,27742882:272535 -k1,21848:18099003,27742882:272535 -k1,21848:19642935,27742882:272534 -k1,21848:22610966,27742882:272535 -k1,21848:23499538,27742882:272534 -k1,21848:24791158,27742882:272535 -k1,21848:25478462,27742882:272461 -k1,21848:27671200,27742882:272534 -k1,21848:30697558,27742882:272535 -k1,21848:32583029,27742882:0 -) -(1,21849:6797234,28584370:25785795,513147,134348 -k1,21848:7571296,28584370:242565 -k1,21848:8880132,28584370:242565 -k1,21848:12137353,28584370:242565 -k1,21848:13484200,28584370:242565 -k1,21848:14339527,28584370:242565 -k1,21848:15601177,28584370:242565 -k1,21848:17269150,28584370:242565 -k1,21848:18171007,28584370:242565 -k1,21848:20671286,28584370:242564 -k1,21848:21661617,28584370:242565 -k1,21848:23417408,28584370:242565 -k1,21848:24311401,28584370:242565 -k1,21848:25745411,28584370:242565 -k1,21848:27301318,28584370:242565 -k1,21848:28491534,28584370:242565 -k1,21848:29753184,28584370:242565 -k1,21848:32583029,28584370:0 -) -(1,21849:6797234,29425858:25785795,513147,115847 -k1,21848:7831034,29425858:224430 -k1,21848:11216896,29425858:224405 -k1,21848:14919977,29425858:224430 -(1,21848:14919977,29425858:0,459977,115847 -r1,21866:24071038,29425858:9151061,575824,115847 -k1,21848:14919977,29425858:-9151061 -) -(1,21848:14919977,29425858:9151061,459977,115847 -k1,21848:14919977,29425858:3277 -h1,21848:24067761,29425858:0,411205,112570 -) -k1,21848:24469138,29425858:224430 -k1,21848:26074413,29425858:224431 -k1,21848:28994339,29425858:224430 -k1,21848:30901734,29425858:224430 -k1,21848:31812326,29425858:224430 -k1,21848:32583029,29425858:0 -) -(1,21849:6797234,30267346:25785795,513147,134348 -g1,21848:10068791,30267346 -g1,21848:11287105,30267346 -g1,21848:12934680,30267346 -g1,21848:13785337,30267346 -g1,21848:14340426,30267346 -k1,21849:32583028,30267346:17085892 -g1,21849:32583028,30267346 -) -] -g1,21849:32583029,30401694 -) -h1,21849:6630773,30401694:0,0,0 -(1,21851:6630773,32492954:25952256,555811,12975 -(1,21851:6630773,32492954:2899444,534184,12975 -g1,21851:6630773,32492954 -g1,21851:9530217,32492954 -) -g1,21851:11399501,32492954 -g1,21851:12121839,32492954 -g1,21851:13689067,32492954 -k1,21851:32583030,32492954:16869688 -g1,21851:32583030,32492954 -) -(1,21854:6630773,33727658:25952256,513147,134348 -k1,21853:8212660,33727658:178106 -k1,21853:9704109,33727658:178107 -k1,21853:13244212,33727658:178106 -k1,21853:14811682,33727658:178107 -k1,21853:15605826,33727658:178106 -k1,21853:18497124,33727658:178107 -k1,21853:19779512,33727658:178106 -k1,21853:20705385,33727658:178107 -k1,21853:23252618,33727658:178106 -k1,21853:24698191,33727658:178107 -k1,21853:26048736,33727658:178106 -k1,21853:28086755,33727658:178107 -k1,21853:30661513,33727658:178106 -k1,21853:32583029,33727658:0 -) -(1,21854:6630773,34569146:25952256,513147,7863 -k1,21853:8217936,34569146:193212 -k1,21853:12002521,34569146:193212 -k1,21853:13929816,34569146:193212 -k1,21853:15314473,34569146:193212 -k1,21853:17251598,34569146:193212 -k1,21853:18838760,34569146:193211 -k1,21853:22052526,34569146:193212 -k1,21853:24153491,34569146:193212 -k1,21853:28067837,34569146:193212 -k1,21853:29995132,34569146:193212 -k1,21853:31692395,34569146:193212 -k1,21854:32583029,34569146:0 -) -(1,21854:6630773,35410634:25952256,513147,134348 -k1,21853:9356814,35410634:295966 -k1,21853:12430195,35410634:295965 -k1,21853:13342199,35410634:295966 -k1,21853:14657250,35410634:295966 -k1,21853:16511006,35410634:295965 -k1,21853:18274978,35410634:295966 -k1,21853:19238100,35410634:295966 -k1,21853:22574839,35410634:295868 -k1,21853:24062250,35410634:295966 -k1,21853:26556197,35410634:295869 -k1,21853:28550200,35410634:295965 -k1,21853:30235529,35410634:295966 -k1,21853:32583029,35410634:0 -) -(1,21854:6630773,36252122:25952256,513147,134348 -k1,21853:9509234,36252122:259642 -k1,21853:10976048,36252122:259641 -k1,21853:12589664,36252122:259642 -k1,21853:15275448,36252122:259641 -k1,21853:17409420,36252122:259642 -k1,21853:20179745,36252122:259641 -k1,21853:21430947,36252122:259642 -k1,21853:24995569,36252122:259641 -k1,21853:27674145,36252122:259642 -k1,21853:28593078,36252122:259641 -k1,21853:31753999,36252122:259642 -k1,21854:32583029,36252122:0 -) -(1,21854:6630773,37093610:25952256,513147,134348 -k1,21853:10080529,37093610:258808 -k1,21853:12074729,37093610:258807 -k1,21853:14102354,37093610:258808 -k1,21853:17666142,37093610:258807 -k1,21853:19367397,37093610:258808 -k1,21853:21324242,37093610:258807 -k1,21853:24603604,37093610:258808 -k1,21853:26596494,37093610:258807 -k1,21853:27846862,37093610:258808 -k1,21853:29792566,37093610:258807 -k1,21853:31248061,37093610:258808 -k1,21853:32583029,37093610:0 -) -(1,21854:6630773,37935098:25952256,513147,134348 -k1,21853:8115342,37935098:246594 -k1,21853:9021228,37935098:246594 -k1,21853:13922844,37935098:246594 -k1,21853:15188523,37935098:246594 -k1,21853:18951779,37935098:246594 -k1,21853:19729870,37935098:246594 -k1,21853:21370415,37935098:246594 -k1,21853:24782398,37935098:246594 -k1,21853:27991875,37935098:246594 -k1,21853:28854507,37935098:246594 -k1,21853:30304342,37935098:246594 -k1,21853:32583029,37935098:0 -) -(1,21854:6630773,38776586:25952256,513147,134348 -k1,21853:7742030,38776586:242905 -k1,21853:11117555,38776586:242904 -k1,21853:12379545,38776586:242905 -k1,21853:13714934,38776586:242904 -k1,21853:14617131,38776586:242905 -k1,21853:17885832,38776586:242904 -k1,21853:18890265,38776586:242905 -k1,21853:21560623,38776586:242904 -k1,21853:22159388,38776586:242905 -k1,21853:23385332,38776586:242904 -k1,21853:25366252,38776586:242905 -k1,21853:26295318,38776586:242904 -k1,21853:27308926,38776586:242905 -k1,21853:30797828,38776586:242904 -k1,21853:32583029,38776586:0 -) -(1,21854:6630773,39618074:25952256,513147,134348 -g1,21853:8021447,39618074 -g1,21853:9798128,39618074 -g1,21853:10980397,39618074 -g1,21853:14791970,39618074 -g1,21853:15982759,39618074 -g1,21853:17467804,39618074 -g1,21853:20483115,39618074 -g1,21853:21914421,39618074 -g1,21853:24392337,39618074 -h1,21853:25761384,39618074:0,0,0 -g1,21853:25960613,39618074 -g1,21853:26969212,39618074 -g1,21853:28666594,39618074 -h1,21853:29861971,39618074:0,0,0 -k1,21854:32583029,39618074:2340294 -g1,21854:32583029,39618074 -) -(1,21856:6630773,40459562:25952256,513147,126483 -h1,21855:6630773,40459562:983040,0,0 -k1,21855:8439321,40459562:197673 -k1,21855:9656079,40459562:197673 -k1,21855:11159885,40459562:197673 -k1,21855:14018974,40459562:197672 -k1,21855:15084999,40459562:197673 -k1,21855:16415134,40459562:197673 -k1,21855:18025108,40459562:197673 -k1,21855:18578641,40459562:197673 -k1,21855:19759354,40459562:197673 -k1,21855:21350978,40459562:197673 -k1,21855:23282734,40459562:197673 -k1,21855:25323934,40459562:197672 -k1,21855:28542161,40459562:197673 -k1,21855:29501362,40459562:197673 -k1,21855:30473015,40459562:197673 -k1,21855:32051532,40459562:197673 -k1,21855:32583029,40459562:0 -) -(1,21856:6630773,41301050:25952256,513147,126483 -k1,21855:8327505,41301050:148116 -k1,21855:9007117,41301050:148115 -k1,21855:11023009,41301050:148116 -k1,21855:19055106,41301050:148116 -k1,21855:20886136,41301050:148065 -k1,21855:23214634,41301050:148115 -k1,21855:25248221,41301050:148116 -k1,21855:26500619,41301050:148116 -k1,21855:27396501,41301050:148116 -k1,21855:28956917,41301050:148115 -k1,21855:30296478,41301050:148116 -k1,21855:32583029,41301050:0 -) -(1,21856:6630773,42142538:25952256,505283,126483 -g1,21855:8223953,42142538 -(1,21855:8223953,42142538:0,452978,115847 -r1,21866:11747625,42142538:3523672,568825,115847 -k1,21855:8223953,42142538:-3523672 -) -(1,21855:8223953,42142538:3523672,452978,115847 -k1,21855:8223953,42142538:3277 -h1,21855:11744348,42142538:0,411205,112570 -) -g1,21855:11946854,42142538 -g1,21855:13337528,42142538 -(1,21855:13337528,42142538:0,452978,115847 -r1,21866:17212912,42142538:3875384,568825,115847 -k1,21855:13337528,42142538:-3875384 -) -(1,21855:13337528,42142538:3875384,452978,115847 -k1,21855:13337528,42142538:3277 -h1,21855:17209635,42142538:0,411205,112570 -) -g1,21855:17585811,42142538 -k1,21856:32583029,42142538:11027047 -g1,21856:32583029,42142538 -) -(1,21858:6630773,42984026:25952256,513147,126483 -h1,21857:6630773,42984026:983040,0,0 -g1,21857:10498052,42984026 -g1,21857:11680321,42984026 -(1,21857:11680321,42984026:0,452978,122846 -r1,21866:20127958,42984026:8447637,575824,122846 -k1,21857:11680321,42984026:-8447637 -) -(1,21857:11680321,42984026:8447637,452978,122846 -k1,21857:11680321,42984026:3277 -h1,21857:20124681,42984026:0,411205,112570 -) -g1,21857:20327187,42984026 -k1,21858:32583029,42984026:9380122 -g1,21858:32583029,42984026 -) -v1,21860:6630773,43964776:0,393216,0 -(1,21866:6630773,45510161:25952256,1938601,196608 -g1,21866:6630773,45510161 -g1,21866:6630773,45510161 -g1,21866:6434165,45510161 -(1,21866:6434165,45510161:0,1938601,196608 -r1,21866:32779637,45510161:26345472,2135209,196608 -k1,21866:6434165,45510161:-26345472 -) -(1,21866:6434165,45510161:26345472,1938601,196608 -[1,21866:6630773,45510161:25952256,1741993,0 -(1,21865:6630773,44172394:25952256,404226,82312 -(1,21861:6630773,44172394:0,0,0 -g1,21861:6630773,44172394 -g1,21861:6630773,44172394 -g1,21861:6303093,44172394 -(1,21861:6303093,44172394:0,0,0 -) -g1,21861:6630773,44172394 -) -k1,21865:6630773,44172394:0 -k1,21865:6630773,44172394:0 -h1,21865:12637540,44172394:0,0,0 -k1,21865:32583028,44172394:19945488 -g1,21865:32583028,44172394 -) -(1,21865:6630773,44838572:25952256,388497,82312 -h1,21865:6630773,44838572:0,0,0 -k1,21865:6630773,44838572:0 -h1,21865:11689104,44838572:0,0,0 -k1,21865:32583028,44838572:20893924 -g1,21865:32583028,44838572 -) -(1,21865:6630773,45504750:25952256,388497,82312 -h1,21865:6630773,45504750:0,0,0 -g1,21865:11372958,45504750 -h1,21865:11689104,45504750:0,0,0 -k1,21865:32583028,45504750:20893924 -g1,21865:32583028,45504750 -) -] -) -g1,21866:32583029,45510161 -g1,21866:6630773,45510161 -g1,21866:6630773,45510161 -g1,21866:32583029,45510161 -g1,21866:32583029,45510161 -) -] -(1,21866:32583029,45706769:0,0,0 -g1,21866:32583029,45706769 +[1,22014:3078558,4812305:0,0,0 +(1,22014:3078558,49800853:0,16384,2228224 +g1,22014:29030814,49800853 +g1,22014:36135244,49800853 +(1,21670:36135244,49800853:1720320,16384,2228224 +(1,21670:36135244,52029077:16384,1703936,0 +[1,21670:36135244,52029077:25952256,1703936,0 +(1,21670:36135244,51504789:25952256,1179648,0 +(1,21670:36135244,51504789:16384,1179648,0 +r1,22014:36151628,51504789:16384,1179648,0 ) +k1,21670:62087500,51504789:25935872 +g1,21670:62087500,51504789 ) ] -(1,21866:6630773,47279633:25952256,0,0 -h1,21866:6630773,47279633:25952256,0,0 ) -] -(1,21866:4262630,4025873:0,0,0 -[1,21866:-473656,4025873:0,0,0 -(1,21866:-473656,-710413:0,0,0 -(1,21866:-473656,-710413:0,0,0 -g1,21866:-473656,-710413 +g1,21670:36675916,49800853 +(1,21670:36675916,49800853:1179648,16384,0 +r1,22014:37855564,49800853:1179648,16384,0 ) -g1,21866:-473656,-710413 ) -] +k1,22014:3078556,49800853:-34777008 ) ] -!26726 -}397 -Input:3559:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3560:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3561:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3562:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3563:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3564:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3565:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!670 -{398 -[1,21951:4262630,47279633:28320399,43253760,0 -(1,21951:4262630,4025873:0,0,0 -[1,21951:-473656,4025873:0,0,0 -(1,21951:-473656,-710413:0,0,0 -(1,21951:-473656,-644877:0,0,0 -k1,21951:-473656,-644877:-65536 +g1,22014:6630773,4812305 +k1,22014:21078841,4812305:13252691 +g1,22014:22701512,4812305 +g1,22014:23350318,4812305 +g1,22014:24759997,4812305 +g1,22014:28372341,4812305 +g1,22014:30105768,4812305 +) +) +] +[1,22014:6630773,45706769:25952256,40108032,0 +(1,22014:6630773,45706769:25952256,40108032,0 +(1,22014:6630773,45706769:0,0,0 +g1,22014:6630773,45706769 +) +[1,22014:6630773,45706769:25952256,40108032,0 +v1,21974:6630773,6254097:0,393216,0 +(1,21974:6630773,5860881:25952256,0,0 +g1,21974:6630773,5860881 +g1,21974:6237557,5860881 +r1,22014:6368629,5860881:131072,0,0 +g1,21974:6567858,5860881 +g1,21974:6764466,5860881 +[1,21974:6764466,5860881:25818563,0,0 +] +g1,21974:32583029,5860881 +) +h1,21974:6630773,5860881:0,0,0 +(1,21977:6630773,8692041:25952256,32768,229376 +(1,21977:6630773,8692041:0,32768,229376 +(1,21977:6630773,8692041:5505024,32768,229376 +r1,22014:12135797,8692041:5505024,262144,229376 +) +k1,21977:6630773,8692041:-5505024 +) +(1,21977:6630773,8692041:25952256,32768,0 +r1,22014:32583029,8692041:25952256,32768,0 +) +) +(1,21977:6630773,10323893:25952256,615776,161218 +(1,21977:6630773,10323893:2464678,582746,14155 +g1,21977:6630773,10323893 +g1,21977:9095451,10323893 +) +g1,21977:12687873,10323893 +g1,21977:14397576,10323893 +g1,21977:17462302,10323893 +g1,21977:18933717,10323893 +k1,21977:32583029,10323893:8869378 +g1,21977:32583029,10323893 +) +(1,21980:6630773,11582189:25952256,513147,134348 +k1,21979:9807054,11582189:160970 +k1,21979:10584063,11582189:160971 +k1,21979:11764118,11582189:160970 +k1,21979:13147991,11582189:160971 +k1,21979:13968253,11582189:160970 +k1,21979:15332465,11582189:160971 +k1,21979:17911058,11582189:160970 +k1,21979:19164514,11582189:160971 +k1,21979:20011646,11582189:160970 +k1,21979:20943320,11582189:160971 +k1,21979:24176618,11582189:160970 +k1,21979:25285240,11582189:160971 +k1,21979:26465295,11582189:160970 +(1,21979:26465295,11582189:0,459977,115847 +r1,22014:27878696,11582189:1413401,575824,115847 +k1,21979:26465295,11582189:-1413401 +) +(1,21979:26465295,11582189:1413401,459977,115847 +k1,21979:26465295,11582189:3277 +h1,21979:27875419,11582189:0,411205,112570 +) +k1,21979:28039667,11582189:160971 +k1,21979:30329246,11582189:160970 +k1,21980:32583029,11582189:0 +) +(1,21980:6630773,12447269:25952256,505283,134348 +k1,21979:8096704,12447269:225990 +k1,21979:10182606,12447269:225990 +k1,21979:12187243,12447269:225990 +k1,21979:13096118,12447269:225990 +k1,21979:15107309,12447269:225990 +k1,21979:16524744,12447269:225990 +k1,21979:19676260,12447269:225989 +k1,21979:20921335,12447269:225990 +k1,21979:23549875,12447269:225990 +k1,21979:24458750,12447269:225990 +k1,21979:26942455,12447269:225990 +k1,21979:30573040,12447269:225990 +k1,21979:32583029,12447269:0 +) +(1,21980:6630773,13312349:25952256,513147,126483 +k1,21979:7836554,13312349:186696 +k1,21979:9122943,13312349:186695 +k1,21979:9961067,13312349:186696 +k1,21979:10503622,13312349:186695 +k1,21979:13559484,13312349:186696 +k1,21979:17218933,13312349:186696 +k1,21979:17863725,13312349:186695 +k1,21979:18581918,13312349:186696 +k1,21979:21877642,13312349:186696 +k1,21979:22715765,13312349:186695 +k1,21979:24314762,13312349:186696 +k1,21979:25184342,13312349:186695 +k1,21979:26985845,13312349:186696 +k1,21979:27528401,13312349:186696 +k1,21979:28941275,13312349:186695 +k1,21979:30111011,13312349:186696 +k1,21980:32583029,13312349:0 +) +(1,21980:6630773,14177429:25952256,513147,126483 +k1,21979:8577811,14177429:188052 +k1,21979:9922573,14177429:188052 +k1,21979:11314521,14177429:188052 +k1,21979:12185458,14177429:188052 +k1,21979:14446414,14177429:188052 +k1,21979:15247228,14177429:188052 +k1,21979:15791140,14177429:188052 +k1,21979:17578270,14177429:188052 +k1,21979:18394156,14177429:188051 +k1,21979:20075774,14177429:188052 +k1,21979:21961208,14177429:188052 +k1,21979:22607357,14177429:188052 +k1,21979:23326906,14177429:188052 +k1,21979:25116658,14177429:188052 +k1,21979:27857337,14177429:188052 +k1,21979:28696817,14177429:188052 +k1,21979:30392852,14177429:188052 +k1,21979:31599989,14177429:188052 +k1,21979:32583029,14177429:0 +) +(1,21980:6630773,15042509:25952256,505283,134348 +k1,21979:8462101,15042509:253876 +k1,21979:11351180,15042509:253876 +k1,21979:13347658,15042509:253876 +k1,21979:14792980,15042509:253877 +k1,21979:16657731,15042509:253876 +k1,21979:17930692,15042509:253876 +k1,21979:21690744,15042509:253876 +k1,21979:23320221,15042509:253876 +k1,21979:25272135,15042509:253876 +k1,21979:25984109,15042509:253877 +k1,21979:26769482,15042509:253876 +k1,21979:27832728,15042509:253876 +k1,21979:30111011,15042509:253876 +k1,21979:32583029,15042509:0 +) +(1,21980:6630773,15907589:25952256,513147,115847 +k1,21979:7896445,15907589:215785 +(1,21979:7896445,15907589:0,452978,115847 +r1,22014:13882100,15907589:5985655,568825,115847 +k1,21979:7896445,15907589:-5985655 +) +(1,21979:7896445,15907589:5985655,452978,115847 +k1,21979:7896445,15907589:3277 +h1,21979:13878823,15907589:0,411205,112570 +) +k1,21979:14097884,15907589:215784 +k1,21979:15261320,15907589:215785 +k1,21979:17594573,15907589:215785 +k1,21979:19632914,15907589:215785 +k1,21979:20867783,15907589:215784 +k1,21979:23425825,15907589:215785 +k1,21979:26667407,15907589:215785 +k1,21979:29667160,15907589:215784 +k1,21979:31074390,15907589:215785 +k1,21979:32583029,15907589:0 +) +(1,21980:6630773,16772669:25952256,513147,126483 +k1,21979:9583638,16772669:193144 +k1,21979:10392820,16772669:193144 +k1,21979:13348307,16772669:193144 +k1,21979:14909842,16772669:193143 +k1,21979:15730821,16772669:193144 +k1,21979:16943050,16772669:193144 +k1,21979:18520314,16772669:193144 +k1,21979:21374875,16772669:193144 +k1,21979:22436371,16772669:193144 +k1,21979:24206967,16772669:193144 +k1,21979:24755970,16772669:193143 +k1,21979:25932154,16772669:193144 +k1,21979:29805145,16772669:193144 +k1,21979:31410590,16772669:193144 +k1,21979:32583029,16772669:0 +) +(1,21980:6630773,17637749:25952256,513147,126483 +k1,21979:8471943,17637749:168691 +k1,21979:9946767,17637749:168691 +k1,21979:11134544,17637749:168692 +k1,21979:12375404,17637749:168691 +k1,21979:13700805,17637749:168691 +k1,21979:15263447,17637749:168691 +k1,21979:17815027,17637749:168691 +k1,21979:20662175,17637749:168692 +k1,21979:22264794,17637749:168691 +k1,21979:23049523,17637749:168691 +k1,21979:23574074,17637749:168691 +k1,21979:26445471,17637749:168692 +k1,21979:27713856,17637749:168691 +k1,21979:28533975,17637749:168691 +(1,21979:28533975,17637749:0,452978,115847 +r1,22014:32409359,17637749:3875384,568825,115847 +k1,21979:28533975,17637749:-3875384 +) +(1,21979:28533975,17637749:3875384,452978,115847 +k1,21979:28533975,17637749:3277 +h1,21979:32406082,17637749:0,411205,112570 +) +k1,21979:32583029,17637749:0 +) +(1,21980:6630773,18502829:25952256,513147,126483 +g1,21979:7849087,18502829 +g1,21979:9220755,18502829 +g1,21979:10918792,18502829 +g1,21979:11800906,18502829 +g1,21979:14403340,18502829 +g1,21979:15996520,18502829 +g1,21979:17758783,18502829 +g1,21979:19149457,18502829 +g1,21979:21321320,18502829 +g1,21979:23131424,18502829 +g1,21979:24349738,18502829 +k1,21980:32583029,18502829:4553444 +g1,21980:32583029,18502829 +) +v1,21982:6630773,19187684:0,393216,0 +(1,21990:6630773,21009331:25952256,2214863,196608 +g1,21990:6630773,21009331 +g1,21990:6630773,21009331 +g1,21990:6434165,21009331 +(1,21990:6434165,21009331:0,2214863,196608 +r1,22014:32779637,21009331:26345472,2411471,196608 +k1,21990:6434165,21009331:-26345472 +) +(1,21990:6434165,21009331:26345472,2214863,196608 +[1,21990:6630773,21009331:25952256,2018255,0 +(1,21984:6630773,19422121:25952256,431045,112852 +(1,21983:6630773,19422121:0,0,0 +g1,21983:6630773,19422121 +g1,21983:6630773,19422121 +g1,21983:6303093,19422121 +(1,21983:6303093,19422121:0,0,0 +) +g1,21983:6630773,19422121 +) +g1,21984:7626635,19422121 +g1,21984:8622497,19422121 +g1,21984:22232608,19422121 +g1,21984:23892378,19422121 +g1,21984:24556286,19422121 +g1,21984:26216056,19422121 +g1,21984:26879964,19422121 +g1,21984:28539734,19422121 +g1,21984:29867550,19422121 +k1,21984:29867550,19422121:11561 +h1,21984:32202789,19422121:0,0,0 +k1,21984:32583029,19422121:380240 +g1,21984:32583029,19422121 +) +(1,21985:6630773,20106976:25952256,431045,86428 +h1,21985:6630773,20106976:0,0,0 +g1,21985:11278128,20106976 +g1,21985:11942036,20106976 +g1,21985:12605944,20106976 +h1,21985:13269852,20106976:0,0,0 +k1,21985:32583028,20106976:19313176 +g1,21985:32583028,20106976 +) +(1,21989:6630773,20922903:25952256,424439,86428 +(1,21987:6630773,20922903:0,0,0 +g1,21987:6630773,20922903 +g1,21987:6630773,20922903 +g1,21987:6303093,20922903 +(1,21987:6303093,20922903:0,0,0 +) +g1,21987:6630773,20922903 +) +g1,21989:7626635,20922903 +g1,21989:8954451,20922903 +k1,21989:8954451,20922903:0 +h1,21989:15925485,20922903:0,0,0 +k1,21989:32583029,20922903:16657544 +g1,21989:32583029,20922903 +) +] +) +g1,21990:32583029,21009331 +g1,21990:6630773,21009331 +g1,21990:6630773,21009331 +g1,21990:32583029,21009331 +g1,21990:32583029,21009331 +) +h1,21990:6630773,21205939:0,0,0 +v1,21994:6630773,21890794:0,393216,0 +(1,22004:6630773,23836907:25952256,2339329,196608 +g1,22004:6630773,23836907 +g1,22004:6630773,23836907 +g1,22004:6434165,23836907 +(1,22004:6434165,23836907:0,2339329,196608 +r1,22014:32779637,23836907:26345472,2535937,196608 +k1,22004:6434165,23836907:-26345472 +) +(1,22004:6434165,23836907:26345472,2339329,196608 +[1,22004:6630773,23836907:25952256,2142721,0 +(1,21996:6630773,22125231:25952256,431045,86428 +(1,21995:6630773,22125231:0,0,0 +g1,21995:6630773,22125231 +g1,21995:6630773,22125231 +g1,21995:6303093,22125231 +(1,21995:6303093,22125231:0,0,0 +) +g1,21995:6630773,22125231 +) +k1,21996:6630773,22125231:0 +g1,21996:11278128,22125231 +g1,21996:11942036,22125231 +g1,21996:12605944,22125231 +h1,21996:13269852,22125231:0,0,0 +k1,21996:32583028,22125231:19313176 +g1,21996:32583028,22125231 +) +(1,22000:6630773,22941158:25952256,424439,86428 +(1,21998:6630773,22941158:0,0,0 +g1,21998:6630773,22941158 +g1,21998:6630773,22941158 +g1,21998:6303093,22941158 +(1,21998:6303093,22941158:0,0,0 +) +g1,21998:6630773,22941158 +) +g1,22000:7626635,22941158 +g1,22000:8954451,22941158 +g1,22000:15261577,22941158 +g1,22000:20572841,22941158 +h1,22000:21236749,22941158:0,0,0 +k1,22000:32583029,22941158:11346280 +g1,22000:32583029,22941158 +) +(1,22002:6630773,23757085:25952256,431045,79822 +(1,22001:6630773,23757085:0,0,0 +g1,22001:6630773,23757085 +g1,22001:6630773,23757085 +g1,22001:6303093,23757085 +(1,22001:6303093,23757085:0,0,0 +) +g1,22001:6630773,23757085 +) +k1,22002:6630773,23757085:0 +h1,22002:9618359,23757085:0,0,0 +k1,22002:32583029,23757085:22964670 +g1,22002:32583029,23757085 +) +] +) +g1,22004:32583029,23836907 +g1,22004:6630773,23836907 +g1,22004:6630773,23836907 +g1,22004:32583029,23836907 +g1,22004:32583029,23836907 +) +h1,22004:6630773,24033515:0,0,0 +(1,22008:6630773,24898595:25952256,513147,115847 +h1,22007:6630773,24898595:983040,0,0 +k1,22007:9649940,24898595:252892 +k1,22007:10317621,24898595:252838 +k1,22007:11102010,24898595:252892 +k1,22007:12868128,24898595:252892 +k1,22007:13737058,24898595:252892 +k1,22007:15751558,24898595:252892 +k1,22007:17960700,24898595:252892 +k1,22007:19232677,24898595:252892 +k1,22007:21399219,24898595:252891 +(1,22007:21399219,24898595:0,452978,115847 +r1,22014:23164332,24898595:1765113,568825,115847 +k1,22007:21399219,24898595:-1765113 +) +(1,22007:21399219,24898595:1765113,452978,115847 +k1,22007:21399219,24898595:3277 +h1,22007:23161055,24898595:0,411205,112570 +) +k1,22007:23590894,24898595:252892 +(1,22007:23590894,24898595:0,452978,115847 +r1,22014:25707719,24898595:2116825,568825,115847 +k1,22007:23590894,24898595:-2116825 +) +(1,22007:23590894,24898595:2116825,452978,115847 +k1,22007:23590894,24898595:3277 +h1,22007:25704442,24898595:0,411205,112570 +) +k1,22007:25960611,24898595:252892 +k1,22007:27404948,24898595:252892 +(1,22007:27404948,24898595:0,452978,115847 +r1,22014:30225197,24898595:2820249,568825,115847 +k1,22007:27404948,24898595:-2820249 +) +(1,22007:27404948,24898595:2820249,452978,115847 +k1,22007:27404948,24898595:3277 +h1,22007:30221920,24898595:0,411205,112570 +) +k1,22007:30478089,24898595:252892 +k1,22007:31835263,24898595:252892 +k1,22007:32583029,24898595:0 +) +(1,22008:6630773,25763675:25952256,513147,126483 +k1,22007:9377639,25763675:227662 +k1,22007:10796746,25763675:227662 +k1,22007:12413771,25763675:227662 +k1,22007:14053734,25763675:227662 +k1,22007:16022688,25763675:227662 +k1,22007:16933235,25763675:227662 +k1,22007:19447447,25763675:227661 +k1,22007:20500207,25763675:227662 +k1,22007:22602199,25763675:227662 +k1,22007:25701648,25763675:227662 +k1,22007:28368560,25763675:227662 +k1,22007:29787667,25763675:227662 +k1,22007:31858201,25763675:227662 +k1,22007:32583029,25763675:0 +) +(1,22008:6630773,26628755:25952256,513147,134348 +k1,22007:9316876,26628755:193769 +k1,22007:10162073,26628755:193769 +k1,22007:10809345,26628755:193763 +k1,22007:15504782,26628755:193769 +k1,22007:17380205,26628755:193769 +k1,22007:18593059,26628755:193769 +k1,22007:19879313,26628755:193769 +k1,22007:20740237,26628755:193768 +k1,22007:21348844,26628755:193764 +k1,22007:23703990,26628755:193769 +k1,22007:24583921,26628755:193769 +k1,22007:26359073,26628755:193768 +k1,22007:27168880,26628755:193769 +k1,22007:28752012,26628755:193769 +k1,22007:30666101,26628755:193769 +k1,22007:32583029,26628755:0 +) +(1,22008:6630773,27493835:25952256,505283,126483 +g1,22007:7516164,27493835 +g1,22007:9218134,27493835 +g1,22007:11578740,27493835 +g1,22007:13664095,27493835 +g1,22007:15315602,27493835 +g1,22007:16706276,27493835 +g1,22007:18607475,27493835 +k1,22008:32583029,27493835:12607162 +g1,22008:32583029,27493835 +) +(1,22009:6630773,30324995:25952256,32768,229376 +(1,22009:6630773,30324995:0,32768,229376 +(1,22009:6630773,30324995:5505024,32768,229376 +r1,22014:12135797,30324995:5505024,262144,229376 +) +k1,22009:6630773,30324995:-5505024 +) +(1,22009:6630773,30324995:25952256,32768,0 +r1,22014:32583029,30324995:25952256,32768,0 +) +) +(1,22009:6630773,31956847:25952256,615776,14155 +(1,22009:6630773,31956847:2464678,582746,14155 +g1,22009:6630773,31956847 +g1,22009:9095451,31956847 +) +g1,22009:13045699,31956847 +k1,22009:32583029,31956847:17899192 +g1,22009:32583029,31956847 +) +(1,22012:6630773,33215143:25952256,513147,134348 +k1,22011:7509711,33215143:251103 +k1,22011:10267567,33215143:251104 +k1,22011:11744849,33215143:251103 +k1,22011:13309295,33215143:251104 +k1,22011:14551958,33215143:251103 +k1,22011:15822147,33215143:251104 +k1,22011:17674950,33215143:251103 +k1,22011:20595335,33215143:251104 +k1,22011:23830948,33215143:251103 +k1,22011:24733480,33215143:251104 +k1,22011:26373946,33215143:251103 +k1,22011:28972550,33215143:251104 +k1,22011:30295822,33215143:251103 +k1,22011:32583029,33215143:0 +) +(1,22012:6630773,34080223:25952256,513147,126483 +k1,22011:8125649,34080223:209060 +k1,22011:9353793,34080223:209059 +k1,22011:11058385,34080223:209060 +k1,22011:13820072,34080223:209060 +k1,22011:15423083,34080223:209060 +k1,22011:17956704,34080223:209059 +k1,22011:18817192,34080223:209060 +k1,22011:20045337,34080223:209060 +k1,22011:21523174,34080223:209060 +k1,22011:22391525,34080223:209059 +k1,22011:23619670,34080223:209060 +k1,22011:24985440,34080223:209060 +k1,22011:26598281,34080223:209060 +k1,22011:28120682,34080223:209059 +k1,22011:29321302,34080223:209060 +k1,22011:32583029,34080223:0 +) +(1,22012:6630773,34945303:25952256,513147,126483 +k1,22011:7482928,34945303:192863 +k1,22011:10354903,34945303:192863 +k1,22011:14026417,34945303:192863 +k1,22011:15600124,34945303:192863 +k1,22011:17839021,34945303:192863 +k1,22011:19670939,34945303:192863 +k1,22011:21258407,34945303:192862 +k1,22011:22102698,34945303:192863 +k1,22011:23521740,34945303:192863 +k1,22011:25108554,34945303:192863 +k1,22011:26527596,34945303:192863 +k1,22011:28959824,34945303:192863 +k1,22011:30344132,34945303:192863 +k1,22011:31931601,34945303:192863 +k1,22011:32583029,34945303:0 +) +(1,22012:6630773,35810383:25952256,513147,134348 +k1,22011:8249631,35810383:206557 +k1,22011:10023810,35810383:206558 +k1,22011:13302695,35810383:206557 +k1,22011:15795804,35810383:206558 +k1,22011:16618399,35810383:206557 +k1,22011:18426657,35810383:206558 +k1,22011:22985460,35810383:206557 +k1,22011:26538286,35810383:206558 +k1,22011:27668901,35810383:206557 +k1,22011:28894544,35810383:206558 +k1,22011:30803071,35810383:206557 +k1,22011:32583029,35810383:0 +) +(1,22012:6630773,36675463:25952256,513147,134348 +k1,22011:8246941,36675463:285787 +k1,22011:9551813,36675463:285787 +k1,22011:11226963,36675463:285787 +k1,22011:14191863,36675463:285788 +k1,22011:15163812,36675463:285787 +k1,22011:18754580,36675463:285787 +k1,22011:19571864,36675463:285787 +k1,22011:22703224,36675463:285787 +k1,22011:24093293,36675463:285787 +k1,22011:25126847,36675463:285788 +k1,22011:27267303,36675463:285787 +k1,22011:28362460,36675463:285787 +k1,22011:29820686,36675463:285787 +k1,22011:32583029,36675463:0 +) +(1,22012:6630773,37540543:25952256,513147,134348 +k1,22011:10663799,37540543:197204 +k1,22011:14036222,37540543:197204 +k1,22011:14916311,37540543:197204 +k1,22011:16848908,37540543:197204 +k1,22011:17401972,37540543:197204 +k1,22011:19996483,37540543:197204 +k1,22011:23168366,37540543:197204 +k1,22011:24051732,37540543:197204 +k1,22011:24604796,37540543:197204 +k1,22011:28013919,37540543:197204 +k1,22011:29407810,37540543:197204 +k1,22011:32583029,37540543:0 +) +(1,22012:6630773,38405623:25952256,505283,126483 +k1,22011:9795406,38405623:180123 +k1,22011:10507026,38405623:180123 +k1,22011:12337346,38405623:180123 +k1,22011:14872833,38405623:180123 +k1,22011:16125125,38405623:180123 +k1,22011:18467936,38405623:180123 +k1,22011:22198800,38405623:180123 +k1,22011:23030351,38405623:180123 +k1,22011:25761135,38405623:180123 +k1,22011:26627420,38405623:180123 +k1,22011:27826628,38405623:180123 +k1,22011:30017396,38405623:180123 +k1,22011:31315563,38405623:180123 +k1,22011:32583029,38405623:0 +) +(1,22012:6630773,39270703:25952256,513147,134348 +k1,22011:8284355,39270703:201960 +k1,22011:10361955,39270703:201960 +k1,22011:13123097,39270703:201961 +k1,22011:13984349,39270703:201960 +k1,22011:15575672,39270703:201960 +k1,22011:17815802,39270703:201960 +k1,22011:19753155,39270703:201960 +k1,22011:20310975,39270703:201960 +k1,22011:23688155,39270703:201961 +k1,22011:26874625,39270703:201960 +k1,22011:29698680,39270703:201960 +k1,22011:31931601,39270703:201960 +k1,22011:32583029,39270703:0 +) +(1,22012:6630773,40135783:25952256,513147,11795 +k1,22011:7231593,40135783:244960 +k1,22011:9656937,40135783:244961 +k1,22011:12984055,40135783:244960 +k1,22011:14420460,40135783:244960 +k1,22011:15872593,40135783:244960 +k1,22011:18894970,40135783:244961 +k1,22011:19755968,40135783:244960 +k1,22011:23173480,40135783:244914 +k1,22011:24609886,40135783:244961 +k1,22011:27092855,40135783:244914 +k1,22011:27950577,40135783:244960 +k1,22011:29214623,40135783:244961 +k1,22011:30884991,40135783:244960 +k1,22011:32583029,40135783:0 +) +(1,22012:6630773,41000863:25952256,513147,126483 +k1,22011:8785697,41000863:156076 +k1,22011:10670614,41000863:156077 +k1,22011:12330741,41000863:156076 +k1,22011:14000043,41000863:156076 +k1,22011:14807548,41000863:156077 +k1,22011:16581053,41000863:156076 +k1,22011:18300163,41000863:156076 +k1,22011:19084074,41000863:156076 +k1,22011:20259236,41000863:156077 +k1,22011:21782393,41000863:156076 +k1,22011:22597761,41000863:156076 +k1,22011:26296059,41000863:156077 +k1,22011:29214478,41000863:156076 +k1,22011:32583029,41000863:0 +) +(1,22012:6630773,41865943:25952256,505283,134348 +k1,22011:7801010,41865943:178677 +k1,22011:8595724,41865943:178676 +k1,22011:11551817,41865943:178677 +k1,22011:12996649,41865943:178676 +k1,22011:18957568,41865943:178677 +k1,22011:21146889,41865943:178676 +k1,22011:23008511,41865943:178657 +k1,22011:26418767,41865943:178676 +k1,22011:27689929,41865943:178677 +k1,22011:29724585,41865943:178676 +k1,22011:30259122,41865943:178677 +k1,22011:32583029,41865943:0 +) +(1,22012:6630773,42731023:25952256,513147,126483 +k1,22011:7497993,42731023:184335 +k1,22011:10923738,42731023:184334 +k1,22011:11759501,42731023:184335 +k1,22011:14646541,42731023:184335 +k1,22011:15849960,42731023:184334 +k1,22011:17768378,42731023:184335 +k1,22011:18635597,42731023:184334 +k1,22011:21706793,42731023:184335 +k1,22011:25171205,42731023:184335 +k1,22011:26038424,42731023:184334 +k1,22011:30572384,42731023:184335 +k1,22011:32583029,42731023:0 +) +(1,22012:6630773,43596103:25952256,505283,126483 +k1,22011:8485638,43596103:192872 +k1,22011:9771001,43596103:192878 +k1,22011:10982964,43596103:192878 +k1,22011:12189028,43596103:192877 +k1,22011:15356585,43596103:192878 +k1,22011:16235625,43596103:192878 +k1,22011:16784363,43596103:192878 +k1,22011:19360130,43596103:192878 +k1,22011:22764927,43596103:192878 +k1,22011:26430558,43596103:192878 +k1,22011:28364728,43596103:192878 +k1,22011:30345428,43596103:192878 +k1,22011:31069803,43596103:192878 +k1,22011:32583029,43596103:0 +) +(1,22012:6630773,44461183:25952256,505283,126483 +g1,22011:7516164,44461183 +g1,22011:8071253,44461183 +g1,22011:11482401,44461183 +g1,22011:13283330,44461183 +g1,22011:16826206,44461183 +g1,22011:18723473,44461183 +g1,22011:19688818,44461183 +g1,22011:21898692,44461183 +g1,22011:23089481,44461183 +g1,22011:23940138,44461183 +g1,22011:24887133,44461183 +g1,22011:28247163,44461183 +g1,22011:29097820,44461183 +(1,22011:29097820,44461183:0,452978,115847 +r1,22014:31566357,44461183:2468537,568825,115847 +k1,22011:29097820,44461183:-2468537 +) +(1,22011:29097820,44461183:2468537,452978,115847 +k1,22011:29097820,44461183:3277 +h1,22011:31563080,44461183:0,411205,112570 +) +k1,22012:32583029,44461183:843002 +g1,22012:32583029,44461183 +) +] +(1,22014:32583029,45706769:0,0,0 +g1,22014:32583029,45706769 +) +) +] +(1,22014:6630773,47279633:25952256,0,0 +h1,22014:6630773,47279633:25952256,0,0 +) +] +(1,22014:4262630,4025873:0,0,0 +[1,22014:-473656,4025873:0,0,0 +(1,22014:-473656,-710413:0,0,0 +(1,22014:-473656,-710413:0,0,0 +g1,22014:-473656,-710413 +) +g1,22014:-473656,-710413 +) +] +) +] +!24302 +}379 +Input:3589:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3590:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3591:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3592:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3593:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3594:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3595:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3596:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!764 +{380 +[1,22062:4262630,47279633:28320399,43253760,0 +(1,22062:4262630,4025873:0,0,0 +[1,22062:-473656,4025873:0,0,0 +(1,22062:-473656,-710413:0,0,0 +(1,22062:-473656,-644877:0,0,0 +k1,22062:-473656,-644877:-65536 ) -(1,21951:-473656,4736287:0,0,0 -k1,21951:-473656,4736287:5209943 +(1,22062:-473656,4736287:0,0,0 +k1,22062:-473656,4736287:5209943 ) -g1,21951:-473656,-710413 +g1,22062:-473656,-710413 ) ] ) -[1,21951:6630773,47279633:25952256,43253760,0 -[1,21951:6630773,4812305:25952256,786432,0 -(1,21951:6630773,4812305:25952256,513147,126483 -(1,21951:6630773,4812305:25952256,513147,126483 -g1,21951:3078558,4812305 -[1,21951:3078558,4812305:0,0,0 -(1,21951:3078558,2439708:0,1703936,0 -k1,21951:1358238,2439708:-1720320 -(1,21457:1358238,2439708:1720320,1703936,0 -(1,21457:1358238,2439708:1179648,16384,0 -r1,21951:2537886,2439708:1179648,16384,0 +[1,22062:6630773,47279633:25952256,43253760,0 +[1,22062:6630773,4812305:25952256,786432,0 +(1,22062:6630773,4812305:25952256,513147,126483 +(1,22062:6630773,4812305:25952256,513147,126483 +g1,22062:3078558,4812305 +[1,22062:3078558,4812305:0,0,0 +(1,22062:3078558,2439708:0,1703936,0 +k1,22062:1358238,2439708:-1720320 +(1,21670:1358238,2439708:1720320,1703936,0 +(1,21670:1358238,2439708:1179648,16384,0 +r1,22062:2537886,2439708:1179648,16384,0 ) -g1,21457:3062174,2439708 -(1,21457:3062174,2439708:16384,1703936,0 -[1,21457:3062174,2439708:25952256,1703936,0 -(1,21457:3062174,1915420:25952256,1179648,0 -(1,21457:3062174,1915420:16384,1179648,0 -r1,21951:3078558,1915420:16384,1179648,0 +g1,21670:3062174,2439708 +(1,21670:3062174,2439708:16384,1703936,0 +[1,21670:3062174,2439708:25952256,1703936,0 +(1,21670:3062174,1915420:25952256,1179648,0 +(1,21670:3062174,1915420:16384,1179648,0 +r1,22062:3078558,1915420:16384,1179648,0 ) -k1,21457:29014430,1915420:25935872 -g1,21457:29014430,1915420 +k1,21670:29014430,1915420:25935872 +g1,21670:29014430,1915420 ) ] ) ) ) ] -[1,21951:3078558,4812305:0,0,0 -(1,21951:3078558,2439708:0,1703936,0 -g1,21951:29030814,2439708 -g1,21951:36135244,2439708 -(1,21457:36135244,2439708:1720320,1703936,0 -(1,21457:36135244,2439708:16384,1703936,0 -[1,21457:36135244,2439708:25952256,1703936,0 -(1,21457:36135244,1915420:25952256,1179648,0 -(1,21457:36135244,1915420:16384,1179648,0 -r1,21951:36151628,1915420:16384,1179648,0 +[1,22062:3078558,4812305:0,0,0 +(1,22062:3078558,2439708:0,1703936,0 +g1,22062:29030814,2439708 +g1,22062:36135244,2439708 +(1,21670:36135244,2439708:1720320,1703936,0 +(1,21670:36135244,2439708:16384,1703936,0 +[1,21670:36135244,2439708:25952256,1703936,0 +(1,21670:36135244,1915420:25952256,1179648,0 +(1,21670:36135244,1915420:16384,1179648,0 +r1,22062:36151628,1915420:16384,1179648,0 ) -k1,21457:62087500,1915420:25935872 -g1,21457:62087500,1915420 +k1,21670:62087500,1915420:25935872 +g1,21670:62087500,1915420 ) ] ) -g1,21457:36675916,2439708 -(1,21457:36675916,2439708:1179648,16384,0 -r1,21951:37855564,2439708:1179648,16384,0 +g1,21670:36675916,2439708 +(1,21670:36675916,2439708:1179648,16384,0 +r1,22062:37855564,2439708:1179648,16384,0 ) ) -k1,21951:3078556,2439708:-34777008 +k1,22062:3078556,2439708:-34777008 ) ] -[1,21951:3078558,4812305:0,0,0 -(1,21951:3078558,49800853:0,16384,2228224 -k1,21951:1358238,49800853:-1720320 -(1,21457:1358238,49800853:1720320,16384,2228224 -(1,21457:1358238,49800853:1179648,16384,0 -r1,21951:2537886,49800853:1179648,16384,0 +[1,22062:3078558,4812305:0,0,0 +(1,22062:3078558,49800853:0,16384,2228224 +k1,22062:1358238,49800853:-1720320 +(1,21670:1358238,49800853:1720320,16384,2228224 +(1,21670:1358238,49800853:1179648,16384,0 +r1,22062:2537886,49800853:1179648,16384,0 ) -g1,21457:3062174,49800853 -(1,21457:3062174,52029077:16384,1703936,0 -[1,21457:3062174,52029077:25952256,1703936,0 -(1,21457:3062174,51504789:25952256,1179648,0 -(1,21457:3062174,51504789:16384,1179648,0 -r1,21951:3078558,51504789:16384,1179648,0 +g1,21670:3062174,49800853 +(1,21670:3062174,52029077:16384,1703936,0 +[1,21670:3062174,52029077:25952256,1703936,0 +(1,21670:3062174,51504789:25952256,1179648,0 +(1,21670:3062174,51504789:16384,1179648,0 +r1,22062:3078558,51504789:16384,1179648,0 ) -k1,21457:29014430,51504789:25935872 -g1,21457:29014430,51504789 +k1,21670:29014430,51504789:25935872 +g1,21670:29014430,51504789 ) ] -) -) +) +) ) ] -[1,21951:3078558,4812305:0,0,0 -(1,21951:3078558,49800853:0,16384,2228224 -g1,21951:29030814,49800853 -g1,21951:36135244,49800853 -(1,21457:36135244,49800853:1720320,16384,2228224 -(1,21457:36135244,52029077:16384,1703936,0 -[1,21457:36135244,52029077:25952256,1703936,0 -(1,21457:36135244,51504789:25952256,1179648,0 -(1,21457:36135244,51504789:16384,1179648,0 -r1,21951:36151628,51504789:16384,1179648,0 +[1,22062:3078558,4812305:0,0,0 +(1,22062:3078558,49800853:0,16384,2228224 +g1,22062:29030814,49800853 +g1,22062:36135244,49800853 +(1,21670:36135244,49800853:1720320,16384,2228224 +(1,21670:36135244,52029077:16384,1703936,0 +[1,21670:36135244,52029077:25952256,1703936,0 +(1,21670:36135244,51504789:25952256,1179648,0 +(1,21670:36135244,51504789:16384,1179648,0 +r1,22062:36151628,51504789:16384,1179648,0 +) +k1,21670:62087500,51504789:25935872 +g1,21670:62087500,51504789 +) +] +) +g1,21670:36675916,49800853 +(1,21670:36675916,49800853:1179648,16384,0 +r1,22062:37855564,49800853:1179648,16384,0 +) +) +k1,22062:3078556,49800853:-34777008 +) +] +g1,22062:6630773,4812305 +g1,22062:6630773,4812305 +g1,22062:9744388,4812305 +g1,22062:11175694,4812305 +k1,22062:31387652,4812305:20211958 +) +) +] +[1,22062:6630773,45706769:25952256,40108032,0 +(1,22062:6630773,45706769:25952256,40108032,0 +(1,22062:6630773,45706769:0,0,0 +g1,22062:6630773,45706769 +) +[1,22062:6630773,45706769:25952256,40108032,0 +v1,22014:6630773,6254097:0,393216,0 +(1,22062:6630773,45706769:25952256,39845888,0 +g1,22062:6630773,45706769 +g1,22062:6237557,45706769 +r1,22062:6368629,45706769:131072,39845888,0 +g1,22062:6567858,45706769 +g1,22062:6764466,45706769 +[1,22062:6764466,45706769:25818563,39845888,0 +(1,22015:6764466,6562395:25818563,701514,196608 +(1,22014:6764466,6562395:0,701514,196608 +r1,22062:8010564,6562395:1246098,898122,196608 +k1,22014:6764466,6562395:-1246098 +) +(1,22014:6764466,6562395:1246098,701514,196608 +) +k1,22014:8201582,6562395:191018 +k1,22014:8529262,6562395:327680 +k1,22014:9901022,6562395:196044 +k1,22014:10887431,6562395:196045 +k1,22014:12360117,6562395:196045 +k1,22014:13921276,6562395:196044 +k1,22014:15152790,6562395:196045 +k1,22014:16904004,6562395:196045 +k1,22014:19062412,6562395:191017 +k1,22014:21036665,6562395:191018 +k1,22014:23630233,6562395:191018 +k1,22014:25047430,6562395:191018 +k1,22014:26725459,6562395:191017 +k1,22014:28107922,6562395:191018 +k1,22014:30561243,6562395:191018 +k1,22014:32583029,6562395:0 +) +(1,22015:6764466,7427475:25818563,513147,134348 +k1,22014:8287305,7427475:209497 +k1,22014:10382272,7427475:209496 +k1,22014:11928703,7427475:209497 +k1,22014:14509947,7427475:209496 +k1,22014:18044085,7427475:209497 +k1,22014:19479761,7427475:209497 +k1,22014:22059039,7427475:209496 +k1,22014:23923320,7427475:209497 +k1,22014:24664313,7427475:209496 +k1,22014:27727248,7427475:209497 +k1,22014:28884395,7427475:209496 +k1,22014:30602531,7427475:209497 +k1,22015:32583029,7427475:0 +) +(1,22015:6764466,8292555:25818563,513147,134348 +k1,22014:10740357,8292555:146622 +k1,22014:13001170,8292555:146622 +k1,22014:14166876,8292555:146621 +k1,22014:16495192,8292555:146622 +k1,22014:19889778,8292555:146622 +k1,22014:21307798,8292555:146622 +k1,22014:24231836,8292555:146622 +k1,22014:26487407,8292555:146622 +k1,22014:27293320,8292555:146621 +k1,22014:30620404,8292555:146622 +k1,22014:31298523,8292555:146622 +k1,22014:32583029,8292555:0 +) +(1,22015:6764466,9157635:25818563,505283,102891 +k1,22014:9384270,9157635:236915 +k1,22014:12125971,9157635:236915 +k1,22014:13354447,9157635:236916 +k1,22014:14242790,9157635:236915 +k1,22014:15227471,9157635:236915 +k1,22014:16876687,9157635:236915 +k1,22014:17799764,9157635:236915 +k1,22014:18451485,9157635:236878 +k1,22014:20930387,9157635:236915 +k1,22014:21985191,9157635:236915 +k1,22014:24255688,9157635:236915 +k1,22014:27795619,9157635:236916 +k1,22014:29687318,9157635:236915 +k1,22014:30915793,9157635:236915 +k1,22014:32583029,9157635:0 +) +(1,22015:6764466,10022715:25818563,513147,134348 +k1,22014:8767106,10022715:242998 +k1,22014:10503670,10022715:242998 +k1,22014:11432830,10022715:242998 +k1,22014:14395572,10022715:242998 +k1,22014:16756694,10022715:242998 +k1,22014:17682577,10022715:242998 +k1,22014:20119720,10022715:242998 +k1,22014:23667699,10022715:242998 +k1,22014:24376658,10022715:242998 +k1,22014:25638741,10022715:242998 +k1,22014:27950055,10022715:242998 +k1,22014:29184613,10022715:242998 +k1,22014:30079039,10022715:242998 +k1,22014:31069803,10022715:242998 +k1,22014:32583029,10022715:0 +) +(1,22015:6764466,10887795:25818563,513147,126483 +k1,22014:8413134,10887795:254717 +k1,22014:9686935,10887795:254716 +k1,22014:12220339,10887795:254717 +k1,22014:14732770,10887795:254716 +k1,22014:15911545,10887795:254717 +k1,22014:18521625,10887795:254716 +k1,22014:20468482,10887795:254717 +k1,22014:23748995,10887795:254716 +k1,22014:25136174,10887795:254717 +k1,22014:27905506,10887795:254716 +k1,22014:28811651,10887795:254717 +k1,22014:31563944,10887795:254716 +k1,22014:32583029,10887795:0 +) +(1,22015:6764466,11752875:25818563,505283,102891 +k1,22014:9233865,11752875:227412 +k1,22014:10533446,11752875:227412 +k1,22014:12793129,11752875:227412 +k1,22014:14260482,11752875:227412 +k1,22014:16033233,11752875:227412 +k1,22014:17754211,11752875:227412 +k1,22014:20049939,11752875:227412 +k1,22014:21268911,11752875:227412 +k1,22014:22694977,11752875:227412 +k1,22014:26107439,11752875:227412 +k1,22014:26950889,11752875:227412 +k1,22014:27593116,11752875:227384 +k1,22014:31510860,11752875:227412 +k1,22014:32583029,11752875:0 +) +(1,22015:6764466,12617955:25818563,513147,134348 +k1,22014:7328457,12617955:208131 +k1,22014:9730734,12617955:208132 +k1,22014:12022910,12617955:208131 +k1,22014:12762539,12617955:208132 +k1,22014:15269018,12617955:208131 +k1,22014:16128578,12617955:208132 +k1,22014:18635057,12617955:208131 +k1,22014:20482243,12617955:208131 +k1,22014:22257996,12617955:208132 +k1,22014:25586951,12617955:208131 +k1,22014:27879128,12617955:208132 +k1,22014:30024503,12617955:208131 +k1,22014:32583029,12617955:0 +) +(1,22015:6764466,13483035:25818563,513147,134348 +k1,22014:8470630,13483035:197525 +k1,22014:13113463,13483035:197526 +k1,22014:13997150,13483035:197525 +k1,22014:17548808,13483035:197525 +k1,22014:20508676,13483035:197525 +k1,22014:22148649,13483035:197526 +k1,22014:24857514,13483035:197525 +k1,22014:25737924,13483035:197525 +k1,22014:28630946,13483035:197526 +k1,22014:32168186,13483035:197525 +k1,22015:32583029,13483035:0 +) +(1,22015:6764466,14348115:25818563,505283,134348 +g1,22014:9018249,14348115 +g1,22014:10085830,14348115 +g1,22014:11332324,14348115 +g1,22014:12816059,14348115 +g1,22014:14395476,14348115 +g1,22014:16124971,14348115 +g1,22014:16975628,14348115 +g1,22014:17922623,14348115 +k1,22015:32583029,14348115:12248026 +g1,22015:32583029,14348115 +) +(1,22021:6764466,15246224:25818563,513147,134348 +h1,22016:6764466,15246224:983040,0,0 +k1,22016:9653336,15246224:188787 +k1,22016:10501416,15246224:188788 +k1,22016:11709288,15246224:188787 +k1,22016:13890369,15246224:188787 +k1,22016:14947508,15246224:188787 +k1,22016:16666562,15246224:188788 +k1,22016:17506777,15246224:188787 +k1,22016:18443330,15246224:188787 +k1,22016:19441487,15246224:188787 +k1,22016:20649360,15246224:188788 +k1,22016:22720341,15246224:188787 +k1,22016:23856779,15246224:188787 +k1,22016:25210796,15246224:188787 +k1,22017:26005137,15246224:188788 +k1,22017:29947826,15246224:188787 +k1,22017:32583029,15246224:0 +) +(1,22021:6764466,16111304:25818563,513147,134348 +k1,22017:7974261,16111304:190710 +k1,22017:11139649,16111304:190709 +k1,22017:14231638,16111304:190710 +k1,22017:17261368,16111304:190710 +k1,22017:18213605,16111304:190709 +k1,22017:19423400,16111304:190710 +k1,22017:22309605,16111304:190709 +k1,22017:24013541,16111304:190710 +k1,22017:24855679,16111304:190710 +k1,22017:26458689,16111304:190709 +k1,22017:27668484,16111304:190710 +k1,22017:29015904,16111304:190710 +k1,22017:30398058,16111304:190709 +k1,22017:31607853,16111304:190710 +k1,22021:32583029,16111304:0 +) +(1,22021:6764466,16976384:25818563,513147,134348 +k1,22017:9163441,16976384:259880 +k1,22017:10936547,16976384:259880 +k1,22017:12144077,16976384:259879 +k1,22017:14437539,16976384:259880 +k1,22017:15716504,16976384:259880 +k1,22017:19901991,16976384:259880 +k1,22017:22691561,16976384:259880 +k1,22017:23610733,16976384:259880 +k1,22017:26632955,16976384:259879 +k1,22017:29238369,16976384:259880 +k1,22018:30103802,16976384:259880 +k1,22018:32583029,16976384:0 +) +(1,22021:6764466,17841464:25818563,505283,134348 +k1,22018:7704729,17841464:257378 +k1,22018:10259798,17841464:257377 +k1,22018:13590159,17841464:257378 +k1,22018:15965661,17841464:257378 +k1,22018:18628866,17841464:257378 +k1,22018:19502281,17841464:257377 +k1,22018:20778744,17841464:257378 +k1,22018:24010801,17841464:257378 +k1,22018:26278824,17841464:257378 +k1,22018:27219086,17841464:257377 +k1,22018:29859353,17841464:257378 +k1,22021:32583029,17841464:0 +) +(1,22021:6764466,18706544:25818563,513147,134348 +k1,22018:8845726,18706544:195789 +k1,22018:10033074,18706544:195788 +k1,22018:12391551,18706544:195789 +k1,22018:15246136,18706544:195789 +k1,22018:17139962,18706544:195788 +k1,22018:18725114,18706544:195789 +k1,22018:21127500,18706544:195789 +k1,22018:22314848,18706544:195788 +k1,22018:25034428,18706544:195789 +k1,22019:25835770,18706544:195789 +k1,22019:28675936,18706544:195788 +k1,22019:31436804,18706544:195789 +k1,22021:32583029,18706544:0 +) +(1,22021:6764466,19571624:25818563,513147,134348 +k1,22019:8377962,19571624:163840 +k1,22019:11785834,19571624:163840 +k1,22019:13978669,19571624:163840 +k1,22019:16646640,19571624:163840 +k1,22019:19580031,19571624:163840 +k1,22019:20099731,19571624:163840 +k1,22019:22136591,19571624:163841 +k1,22019:23980774,19571624:163840 +k1,22019:24760652,19571624:163840 +k1,22019:25280352,19571624:163840 +k1,22019:28000751,19571624:163840 +k1,22019:29407154,19571624:163840 +k1,22019:30590079,19571624:163840 +k1,22019:32583029,19571624:0 +) +(1,22021:6764466,20436704:25818563,513147,134348 +k1,22019:8404474,20436704:210668 +k1,22019:9274435,20436704:210669 +k1,22019:11968918,20436704:210668 +k1,22019:14645706,20436704:210668 +k1,22019:17619373,20436704:210669 +k1,22019:18849126,20436704:210668 +k1,22019:21442684,20436704:210669 +k1,22019:23220973,20436704:210668 +k1,22019:25169656,20436704:210668 +k1,22019:28892399,20436704:210669 +k1,22019:29789229,20436704:210668 +k1,22019:32583029,20436704:0 +) +(1,22021:6764466,21301784:25818563,513147,126483 +k1,22020:7525557,21301784:155538 +k1,22020:11525437,21301784:155538 +k1,22020:14164791,21301784:155539 +k1,22020:16612778,21301784:155538 +k1,22020:17384354,21301784:155538 +(1,22020:17384354,21301784:0,414482,115847 +r1,22062:18446043,21301784:1061689,530329,115847 +k1,22020:17384354,21301784:-1061689 +) +(1,22020:17384354,21301784:1061689,414482,115847 +k1,22020:17384354,21301784:3277 +h1,22020:18442766,21301784:0,411205,112570 +) +k1,22020:18601581,21301784:155538 +k1,22020:21744906,21301784:155539 +k1,22020:24192893,21301784:155538 +k1,22020:27050480,21301784:155538 +k1,22020:28015388,21301784:155538 +k1,22020:29190012,21301784:155539 +k1,22020:31187112,21301784:155538 +k1,22021:32583029,21301784:0 +) +(1,22021:6764466,22166864:25818563,505283,134348 +g1,22020:8830160,22166864 +g1,22020:10220834,22166864 +g1,22020:13867912,22166864 +g1,22020:16738388,22166864 +k1,22021:32583029,22166864:13158976 +g1,22021:32583029,22166864 +) +(1,22023:6764466,23064972:25818563,513147,134348 +h1,22022:6764466,23064972:983040,0,0 +k1,22022:8508160,23064972:282897 +k1,22022:9961530,23064972:282897 +k1,22022:13457002,23064972:282897 +k1,22022:16746691,23064972:282897 +k1,22022:18542814,23064972:282897 +k1,22022:21181076,23064972:282898 +k1,22022:22957539,23064972:282897 +k1,22022:23926598,23064972:282897 +k1,22022:26286986,23064972:282897 +k1,22022:27229175,23064972:282897 +k1,22022:30251477,23064972:282897 +k1,22022:31193666,23064972:282897 +k1,22022:32583029,23064972:0 +) +(1,22023:6764466,23930052:25818563,513147,134348 +k1,22022:8914718,23930052:273956 +k1,22022:11901865,23930052:273956 +k1,22022:12937349,23930052:273956 +k1,22022:15122990,23930052:273956 +k1,22022:16489431,23930052:273956 +k1,22022:19458883,23930052:273956 +(1,22022:19458883,23930052:0,452978,115847 +r1,22062:21927420,23930052:2468537,568825,115847 +k1,22022:19458883,23930052:-2468537 +) +(1,22022:19458883,23930052:2468537,452978,115847 +k1,22022:19458883,23930052:3277 +h1,22022:21924143,23930052:0,411205,112570 +) +k1,22022:22201377,23930052:273957 +k1,22022:23126761,23930052:273956 +k1,22022:24379170,23930052:273956 +k1,22022:25672211,23930052:273956 +k1,22022:28014483,23930052:273956 +k1,22022:30638560,23930052:273956 +k1,22022:31563944,23930052:273956 +k1,22022:32583029,23930052:0 +) +(1,22023:6764466,24795132:25818563,513147,126483 +k1,22022:9385306,24795132:200595 +k1,22022:10272062,24795132:200594 +k1,22022:10828517,24795132:200595 +k1,22022:14003791,24795132:200595 +k1,22022:16355932,24795132:200594 +k1,22022:17937371,24795132:200595 +k1,22022:18669463,24795132:200595 +k1,22022:20847278,24795132:200594 +k1,22022:23577563,24795132:200595 +k1,22022:26752837,24795132:200595 +k1,22022:29261609,24795132:200594 +k1,22022:30453764,24795132:200595 +k1,22022:32583029,24795132:0 +) +(1,22023:6764466,25660212:25818563,505283,134348 +k1,22022:9271575,25660212:156988 +k1,22022:10822515,25660212:156989 +k1,22022:12431125,25660212:156988 +k1,22022:14453924,25660212:156989 +k1,22022:17631466,25660212:156988 +k1,22022:18549983,25660212:156989 +k1,22022:21800926,25660212:156988 +k1,22022:23944967,25660212:156989 +k1,22022:26460596,25660212:156988 +k1,22022:28936904,25660212:156989 +k1,22022:30285337,25660212:156988 +k1,22022:32583029,25660212:0 +) +(1,22023:6764466,26525292:25818563,513147,126483 +k1,22022:9137287,26525292:254697 +k1,22022:11488481,26525292:254697 +k1,22022:13959606,26525292:254697 +k1,22022:15410990,26525292:254697 +k1,22022:17319160,26525292:254697 +k1,22022:19855165,26525292:254697 +k1,22022:20761290,26525292:254697 +k1,22022:22108472,26525292:254697 +k1,22022:23030325,26525292:254697 +(1,22022:23030325,26525292:0,452978,115847 +r1,22062:25850574,26525292:2820249,568825,115847 +k1,22022:23030325,26525292:-2820249 +) +(1,22022:23030325,26525292:2820249,452978,115847 +k1,22022:23030325,26525292:3277 +h1,22022:25847297,26525292:0,411205,112570 +) +k1,22022:26105271,26525292:254697 +k1,22022:27753919,26525292:254697 +k1,22022:30232908,26525292:254697 +k1,22022:32583029,26525292:0 +) +(1,22023:6764466,27390372:25818563,505283,134348 +g1,22022:8357646,27390372 +g1,22022:9946238,27390372 +g1,22022:11429973,27390372 +g1,22022:13496323,27390372 +g1,22022:15170767,27390372 +g1,22022:18509826,27390372 +k1,22023:32583029,27390372:11065100 +g1,22023:32583029,27390372 +) +(1,22025:6764466,28288481:25818563,513147,126483 +h1,22024:6764466,28288481:983040,0,0 +k1,22024:8771531,28288481:194995 +k1,22024:12999612,28288481:194995 +k1,22024:14886747,28288481:194995 +k1,22024:15741034,28288481:194995 +k1,22024:17632756,28288481:194995 +k1,22024:21008214,28288481:194996 +k1,22024:21416196,28288481:194990 +k1,22024:23540572,28288481:194996 +k1,22024:24091427,28288481:194995 +k1,22024:25675785,28288481:194995 +k1,22024:27747076,28288481:194995 +k1,22024:29336022,28288481:194995 +k1,22024:31269032,28288481:194995 +k1,22025:32583029,28288481:0 +) +(1,22025:6764466,29153561:25818563,513147,102891 +k1,22024:9107973,29153561:262084 +k1,22024:12225462,29153561:262085 +k1,22024:13678991,29153561:262084 +k1,22024:14557114,29153561:262085 +k1,22024:15838283,29153561:262084 +k1,22024:18341699,29153561:262085 +k1,22024:21790143,29153561:262084 +k1,22024:23446179,29153561:262085 +k1,22024:26890691,29153561:262084 +k1,22024:29818125,29153561:262085 +k1,22024:31276896,29153561:262084 +k1,22024:32583029,29153561:0 +) +(1,22025:6764466,30018641:25818563,513147,134348 +k1,22024:10117834,30018641:167008 +k1,22024:10816338,30018641:167007 +k1,22024:14288327,30018641:167008 +k1,22024:15106762,30018641:167007 +k1,22024:16292855,30018641:167008 +k1,22024:18725442,30018641:167007 +k1,22024:21652171,30018641:167008 +k1,22024:22478471,30018641:167008 +k1,22024:25671275,30018641:167007 +k1,22024:26454321,30018641:167008 +k1,22024:29201480,30018641:167007 +k1,22024:31391584,30018641:167008 +k1,22024:32583029,30018641:0 +) +(1,22025:6764466,30883721:25818563,513147,126483 +k1,22024:8053620,30883721:270069 +k1,22024:10565020,30883721:270069 +k1,22024:11366585,30883721:270068 +k1,22024:14941635,30883721:270069 +k1,22024:15863132,30883721:270069 +k1,22024:17152286,30883721:270069 +k1,22024:20182075,30883721:270068 +k1,22024:21111436,30883721:270069 +k1,22024:22815433,30883721:270069 +k1,22024:23500274,30883721:269998 +k1,22024:26969810,30883721:270068 +k1,22024:29262975,30883721:270069 +k1,22024:32583029,30883721:0 +) +(1,22025:6764466,31748801:25818563,513147,134348 +k1,22024:7970002,31748801:186451 +k1,22024:10858502,31748801:186451 +k1,22024:11704245,31748801:186451 +k1,22024:12909781,31748801:186451 +k1,22024:15531550,31748801:186451 +k1,22024:17107364,31748801:186451 +k1,22024:18983333,31748801:186451 +k1,22024:19584614,31748801:186438 +k1,22024:23091119,31748801:186451 +k1,22024:27486292,31748801:186451 +k1,22024:29066694,31748801:186451 +k1,22024:30202106,31748801:186451 +k1,22024:32583029,31748801:0 +) +(1,22025:6764466,32613881:25818563,505283,7863 +k1,22025:32583028,32613881:24058920 +g1,22025:32583028,32613881 +) +v1,22027:6764466,33331764:0,393216,0 +(1,22042:6764466,37393600:25818563,4455052,196608 +g1,22042:6764466,37393600 +g1,22042:6764466,37393600 +g1,22042:6567858,37393600 +(1,22042:6567858,37393600:0,4455052,196608 +r1,22062:32779637,37393600:26211779,4651660,196608 +k1,22042:6567857,37393600:-26211780 +) +(1,22042:6567858,37393600:26211779,4455052,196608 +[1,22042:6764466,37393600:25818563,4258444,0 +(1,22029:6764466,33566201:25818563,431045,86428 +(1,22028:6764466,33566201:0,0,0 +g1,22028:6764466,33566201 +g1,22028:6764466,33566201 +g1,22028:6436786,33566201 +(1,22028:6436786,33566201:0,0,0 +) +g1,22028:6764466,33566201 +) +k1,22029:6764466,33566201:0 +g1,22029:11079867,33566201 +g1,22029:11743775,33566201 +g1,22029:12739637,33566201 +g1,22029:13735499,33566201 +g1,22029:14399407,33566201 +g1,22029:15063315,33566201 +g1,22029:16059177,33566201 +g1,22029:16723085,33566201 +g1,22029:17718947,33566201 +g1,22029:18382855,33566201 +g1,22029:19378717,33566201 +g1,22029:23362164,33566201 +g1,22029:24026072,33566201 +h1,22029:26017796,33566201:0,0,0 +k1,22029:32583029,33566201:6565233 +g1,22029:32583029,33566201 +) +(1,22034:6764466,34382128:25818563,398014,4954 +(1,22031:6764466,34382128:0,0,0 +g1,22031:6764466,34382128 +g1,22031:6764466,34382128 +g1,22031:6436786,34382128 +(1,22031:6436786,34382128:0,0,0 +) +g1,22031:6764466,34382128 +) +g1,22034:7760328,34382128 +g1,22034:8092282,34382128 +g1,22034:8424236,34382128 +g1,22034:9088144,34382128 +g1,22034:9752052,34382128 +g1,22034:10084006,34382128 +g1,22034:10415960,34382128 +h1,22034:10747914,34382128:0,0,0 +k1,22034:32583030,34382128:21835116 +g1,22034:32583030,34382128 +) +(1,22034:6764466,35066983:25818563,407923,9908 +h1,22034:6764466,35066983:0,0,0 +g1,22034:7760328,35066983 +g1,22034:8424236,35066983 +g1,22034:9088144,35066983 +g1,22034:9420098,35066983 +g1,22034:10084006,35066983 +g1,22034:10415960,35066983 +h1,22034:10747914,35066983:0,0,0 +k1,22034:32583030,35066983:21835116 +g1,22034:32583030,35066983 +) +(1,22036:6764466,35882910:25818563,431045,86428 +(1,22035:6764466,35882910:0,0,0 +g1,22035:6764466,35882910 +g1,22035:6764466,35882910 +g1,22035:6436786,35882910 +(1,22035:6436786,35882910:0,0,0 +) +g1,22035:6764466,35882910 +) +k1,22036:6764466,35882910:0 +g1,22036:11079867,35882910 +g1,22036:11743775,35882910 +g1,22036:12739637,35882910 +g1,22036:13735499,35882910 +g1,22036:14399407,35882910 +g1,22036:15063315,35882910 +g1,22036:16059177,35882910 +g1,22036:16723085,35882910 +g1,22036:17718947,35882910 +g1,22036:18382855,35882910 +h1,22036:19046763,35882910:0,0,0 +k1,22036:32583029,35882910:13536266 +g1,22036:32583029,35882910 +) +(1,22041:6764466,36698837:25818563,398014,4954 +(1,22038:6764466,36698837:0,0,0 +g1,22038:6764466,36698837 +g1,22038:6764466,36698837 +g1,22038:6436786,36698837 +(1,22038:6436786,36698837:0,0,0 +) +g1,22038:6764466,36698837 +) +g1,22041:7760328,36698837 +g1,22041:8092282,36698837 +g1,22041:8424236,36698837 +g1,22041:9088144,36698837 +g1,22041:10084006,36698837 +h1,22041:11079868,36698837:0,0,0 +k1,22041:32583028,36698837:21503160 +g1,22041:32583028,36698837 +) +(1,22041:6764466,37383692:25818563,407923,9908 +h1,22041:6764466,37383692:0,0,0 +g1,22041:7760328,37383692 +g1,22041:8424236,37383692 +g1,22041:9088144,37383692 +g1,22041:9420098,37383692 +g1,22041:10084006,37383692 +g1,22041:10415960,37383692 +g1,22041:10747914,37383692 +h1,22041:11079868,37383692:0,0,0 +k1,22041:32583028,37383692:21503160 +g1,22041:32583028,37383692 +) +] +) +g1,22042:32583029,37393600 +g1,22042:6764466,37393600 +g1,22042:6764466,37393600 +g1,22042:32583029,37393600 +g1,22042:32583029,37393600 +) +h1,22042:6764466,37590208:0,0,0 +(1,22046:6764466,38521345:25818563,513147,126483 +h1,22045:6764466,38521345:983040,0,0 +k1,22045:8927255,38521345:277318 +k1,22045:10671269,38521345:277318 +k1,22045:12598784,38521345:277318 +k1,22045:14831041,38521345:277318 +k1,22045:16475440,38521345:277318 +k1,22045:17284255,38521345:277318 +k1,22045:19259611,38521345:277318 +k1,22045:22841909,38521345:277317 +k1,22045:24223509,38521345:277318 +k1,22045:25248593,38521345:277318 +k1,22045:27326840,38521345:277318 +k1,22045:30525098,38521345:277318 +k1,22045:31563944,38521345:277318 +k1,22045:32583029,38521345:0 +) +(1,22046:6764466,39386425:25818563,505283,134348 +k1,22045:8414832,39386425:269522 +k1,22045:11086903,39386425:269521 +k1,22045:12375510,39386425:269522 +k1,22045:14977458,39386425:269522 +k1,22045:16667144,39386425:269521 +k1,22045:18128111,39386425:269522 +k1,22045:18792160,39386425:269522 +(1,22045:18999254,39386425:0,435480,115847 +r1,22062:19709232,39386425:709978,551327,115847 +k1,22045:18999254,39386425:-709978 +) +(1,22045:18999254,39386425:709978,435480,115847 +k1,22045:18999254,39386425:3277 +h1,22045:19705955,39386425:0,411205,112570 +) +k1,22045:19978753,39386425:269521 +k1,22045:21109418,39386425:269522 +(1,22045:21109418,39386425:0,414482,115847 +r1,22062:21819396,39386425:709978,530329,115847 +k1,22045:21109418,39386425:-709978 +) +(1,22045:21109418,39386425:709978,414482,115847 +k1,22045:21109418,39386425:3277 +h1,22045:21816119,39386425:0,411205,112570 +) +k1,22045:22296012,39386425:269522 +k1,22045:23248418,39386425:269521 +k1,22045:24070409,39386425:269522 +k1,22045:25531376,39386425:269522 +k1,22045:26957607,39386425:269521 +(1,22045:27164701,39386425:0,452978,115847 +r1,22062:27874679,39386425:709978,568825,115847 +k1,22045:27164701,39386425:-709978 +) +(1,22045:27164701,39386425:709978,452978,115847 +k1,22045:27164701,39386425:3277 +h1,22045:27871402,39386425:0,411205,112570 +) +k1,22045:28144201,39386425:269522 +k1,22045:29274866,39386425:269522 +(1,22045:29274866,39386425:0,435480,115847 +r1,22062:29984844,39386425:709978,551327,115847 +k1,22045:29274866,39386425:-709978 +) +(1,22045:29274866,39386425:709978,435480,115847 +k1,22045:29274866,39386425:3277 +h1,22045:29981567,39386425:0,411205,112570 +) +k1,22045:30461459,39386425:269521 +k1,22045:31835263,39386425:269522 +k1,22045:32583029,39386425:0 +) +(1,22046:6764466,40251505:25818563,513147,134348 +k1,22045:9511080,40251505:262799 +k1,22045:10425308,40251505:262800 +k1,22045:14248678,40251505:262799 +k1,22045:15127515,40251505:262799 +k1,22045:17082454,40251505:262799 +k1,22045:19180262,40251505:262800 +k1,22045:21226296,40251505:262799 +k1,22045:23224488,40251505:262799 +k1,22045:26718868,40251505:262800 +k1,22045:29400601,40251505:262799 +k1,22045:30322692,40251505:262799 +k1,22045:32583029,40251505:0 +) +(1,22046:6764466,41116585:25818563,505283,126483 +k1,22045:8666156,41116585:149913 +k1,22045:11790749,41116585:149914 +k1,22045:14313721,41116585:149913 +k1,22045:15957201,41116585:149914 +k1,22045:16793276,41116585:149913 +k1,22045:19643929,41116585:149914 +k1,22045:20409880,41116585:149913 +k1,22045:22251934,41116585:149914 +k1,22045:24099229,41116585:149913 +k1,22045:25421582,41116585:149914 +k1,22045:28876476,41116585:149913 +k1,22045:30420341,41116585:149914 +k1,22045:32583029,41116585:0 +) +(1,22046:6764466,41981665:25818563,513147,126483 +g1,22045:9700478,41981665 +g1,22045:11764206,41981665 +g1,22045:13832522,41981665 +g1,22045:15368685,41981665 +g1,22045:16315680,41981665 +g1,22045:19194021,41981665 +g1,22045:20079412,41981665 +g1,22045:23040984,41981665 +k1,22046:32583029,41981665:6063394 +g1,22046:32583029,41981665 +) +v1,22048:6764466,42699549:0,393216,0 +(1,22056:6764466,44444676:25818563,2138343,196608 +g1,22056:6764466,44444676 +g1,22056:6764466,44444676 +g1,22056:6567858,44444676 +(1,22056:6567858,44444676:0,2138343,196608 +r1,22062:32779637,44444676:26211779,2334951,196608 +k1,22056:6567857,44444676:-26211780 +) +(1,22056:6567858,44444676:26211779,2138343,196608 +[1,22056:6764466,44444676:25818563,1941735,0 +(1,22050:6764466,42933986:25818563,431045,86428 +(1,22049:6764466,42933986:0,0,0 +g1,22049:6764466,42933986 +g1,22049:6764466,42933986 +g1,22049:6436786,42933986 +(1,22049:6436786,42933986:0,0,0 +) +g1,22049:6764466,42933986 +) +k1,22050:6764466,42933986:0 +g1,22050:11411821,42933986 +g1,22050:12075729,42933986 +g1,22050:13071591,42933986 +g1,22050:14067453,42933986 +g1,22050:14731361,42933986 +g1,22050:15727223,42933986 +g1,22050:16723085,42933986 +g1,22050:17386993,42933986 +g1,22050:18382855,42933986 +g1,22050:19378717,42933986 +g1,22050:20042625,42933986 +h1,22050:20706533,42933986:0,0,0 +k1,22050:32583029,42933986:11876496 +g1,22050:32583029,42933986 +) +(1,22055:6764466,43749913:25818563,424439,9908 +(1,22052:6764466,43749913:0,0,0 +g1,22052:6764466,43749913 +g1,22052:6764466,43749913 +g1,22052:6436786,43749913 +(1,22052:6436786,43749913:0,0,0 +) +g1,22052:6764466,43749913 +) +g1,22055:7760328,43749913 +g1,22055:8092282,43749913 +g1,22055:8424236,43749913 +g1,22055:9420098,43749913 +g1,22055:10415960,43749913 +g1,22055:11411822,43749913 +h1,22055:12075730,43749913:0,0,0 +k1,22055:32583030,43749913:20507300 +g1,22055:32583030,43749913 +) +(1,22055:6764466,44434768:25818563,407923,9908 +h1,22055:6764466,44434768:0,0,0 +g1,22055:7760328,44434768 +g1,22055:8424236,44434768 +g1,22055:8756190,44434768 +g1,22055:9420098,44434768 +g1,22055:9752052,44434768 +g1,22055:10415960,44434768 +g1,22055:10747914,44434768 +g1,22055:11411822,44434768 +g1,22055:11743776,44434768 +h1,22055:12075730,44434768:0,0,0 +k1,22055:32583030,44434768:20507300 +g1,22055:32583030,44434768 +) +] +) +g1,22056:32583029,44444676 +g1,22056:6764466,44444676 +g1,22056:6764466,44444676 +g1,22056:32583029,44444676 +g1,22056:32583029,44444676 +) +h1,22056:6764466,44641284:0,0,0 +(1,22060:6764466,45572421:25818563,513147,134348 +h1,22059:6764466,45572421:983040,0,0 +k1,22059:10516075,45572421:209388 +k1,22059:12114825,45572421:209387 +k1,22059:13891834,45572421:209388 +k1,22059:14457081,45572421:209387 +k1,22059:15892648,45572421:209388 +k1,22059:17085075,45572421:209387 +k1,22059:18398745,45572421:209388 +k1,22059:20451004,45572421:209387 +k1,22059:21276430,45572421:209388 +k1,22059:22839791,45572421:209387 +k1,22059:26875171,45572421:209388 +k1,22059:29095203,45572421:209387 +k1,22059:31342761,45572421:209388 +k1,22059:32168186,45572421:209387 +k1,22060:32583029,45572421:0 +) +] +g1,22062:32583029,45706769 +) +] +(1,22062:32583029,45706769:0,0,0 +g1,22062:32583029,45706769 +) +) +] +(1,22062:6630773,47279633:25952256,0,0 +h1,22062:6630773,47279633:25952256,0,0 +) +] +(1,22062:4262630,4025873:0,0,0 +[1,22062:-473656,4025873:0,0,0 +(1,22062:-473656,-710413:0,0,0 +(1,22062:-473656,-710413:0,0,0 +g1,22062:-473656,-710413 +) +g1,22062:-473656,-710413 +) +] +) +] +!28914 +}380 +Input:3597:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3598:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3599:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3600:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3601:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3602:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!576 +{381 +[1,22143:4262630,47279633:28320399,43253760,0 +(1,22143:4262630,4025873:0,0,0 +[1,22143:-473656,4025873:0,0,0 +(1,22143:-473656,-710413:0,0,0 +(1,22143:-473656,-644877:0,0,0 +k1,22143:-473656,-644877:-65536 +) +(1,22143:-473656,4736287:0,0,0 +k1,22143:-473656,4736287:5209943 ) -k1,21457:62087500,51504789:25935872 -g1,21457:62087500,51504789 +g1,22143:-473656,-710413 ) ] ) -g1,21457:36675916,49800853 -(1,21457:36675916,49800853:1179648,16384,0 -r1,21951:37855564,49800853:1179648,16384,0 +[1,22143:6630773,47279633:25952256,43253760,0 +[1,22143:6630773,4812305:25952256,786432,0 +(1,22143:6630773,4812305:25952256,505283,134348 +(1,22143:6630773,4812305:25952256,505283,134348 +g1,22143:3078558,4812305 +[1,22143:3078558,4812305:0,0,0 +(1,22143:3078558,2439708:0,1703936,0 +k1,22143:1358238,2439708:-1720320 +(1,21670:1358238,2439708:1720320,1703936,0 +(1,21670:1358238,2439708:1179648,16384,0 +r1,22143:2537886,2439708:1179648,16384,0 ) +g1,21670:3062174,2439708 +(1,21670:3062174,2439708:16384,1703936,0 +[1,21670:3062174,2439708:25952256,1703936,0 +(1,21670:3062174,1915420:25952256,1179648,0 +(1,21670:3062174,1915420:16384,1179648,0 +r1,22143:3078558,1915420:16384,1179648,0 ) -k1,21951:3078556,49800853:-34777008 +k1,21670:29014430,1915420:25935872 +g1,21670:29014430,1915420 ) ] -g1,21951:6630773,4812305 -g1,21951:6630773,4812305 -g1,21951:9744388,4812305 -g1,21951:11175694,4812305 -k1,21951:31387652,4812305:20211958 ) ) -] -[1,21951:6630773,45706769:25952256,40108032,0 -(1,21951:6630773,45706769:25952256,40108032,0 -(1,21951:6630773,45706769:0,0,0 -g1,21951:6630773,45706769 -) -[1,21951:6630773,45706769:25952256,40108032,0 -v1,21866:6630773,6254097:0,393216,0 -(1,21866:6630773,6057489:25952256,196608,196608 -g1,21866:6630773,6057489 -g1,21866:6630773,6057489 -g1,21866:6434165,6057489 -(1,21866:6434165,6057489:0,196608,196608 -r1,21951:32779637,6057489:26345472,393216,196608 -k1,21866:6434165,6057489:-26345472 ) -(1,21866:6434165,6057489:26345472,196608,196608 -[1,21866:6630773,6057489:25952256,0,0 ] +[1,22143:3078558,4812305:0,0,0 +(1,22143:3078558,2439708:0,1703936,0 +g1,22143:29030814,2439708 +g1,22143:36135244,2439708 +(1,21670:36135244,2439708:1720320,1703936,0 +(1,21670:36135244,2439708:16384,1703936,0 +[1,21670:36135244,2439708:25952256,1703936,0 +(1,21670:36135244,1915420:25952256,1179648,0 +(1,21670:36135244,1915420:16384,1179648,0 +r1,22143:36151628,1915420:16384,1179648,0 ) -g1,21866:32583029,6057489 -g1,21866:6630773,6057489 -g1,21866:6630773,6057489 -g1,21866:32583029,6057489 -g1,21866:32583029,6057489 -) -h1,21866:6630773,6254097:0,0,0 -v1,21870:6630773,7621634:0,393216,0 -(1,21874:6630773,8577743:25952256,1349325,196608 -g1,21874:6630773,8577743 -g1,21874:6630773,8577743 -g1,21874:6434165,8577743 -(1,21874:6434165,8577743:0,1349325,196608 -r1,21951:32779637,8577743:26345472,1545933,196608 -k1,21874:6434165,8577743:-26345472 -) -(1,21874:6434165,8577743:26345472,1349325,196608 -[1,21874:6630773,8577743:25952256,1152717,0 -(1,21872:6630773,7835544:25952256,410518,107478 -(1,21871:6630773,7835544:0,0,0 -g1,21871:6630773,7835544 -g1,21871:6630773,7835544 -g1,21871:6303093,7835544 -(1,21871:6303093,7835544:0,0,0 -) -g1,21871:6630773,7835544 -) -k1,21872:11803923,7835544:1063256 -k1,21872:13499470,7835544:1063255 -k1,21872:28473135,7835544:1063256 -k1,21872:32583029,7835544:0 -) -(1,21872:6630773,8501722:25952256,404226,76021 -g1,21872:8211502,8501722 -g1,21872:8843794,8501722 -h1,21872:10740668,8501722:0,0,0 -k1,21872:32583028,8501722:21842360 -g1,21872:32583028,8501722 -) -] -) -g1,21874:32583029,8577743 -g1,21874:6630773,8577743 -g1,21874:6630773,8577743 -g1,21874:32583029,8577743 -g1,21874:32583029,8577743 -) -h1,21874:6630773,8774351:0,0,0 -v1,21878:6630773,10141889:0,393216,0 -(1,21892:6630773,13751892:25952256,4003219,196608 -g1,21892:6630773,13751892 -g1,21892:6630773,13751892 -g1,21892:6434165,13751892 -(1,21892:6434165,13751892:0,4003219,196608 -r1,21951:32779637,13751892:26345472,4199827,196608 -k1,21892:6434165,13751892:-26345472 -) -(1,21892:6434165,13751892:26345472,4003219,196608 -[1,21892:6630773,13751892:25952256,3806611,0 -(1,21880:6630773,10355799:25952256,410518,101187 -(1,21879:6630773,10355799:0,0,0 -g1,21879:6630773,10355799 -g1,21879:6630773,10355799 -g1,21879:6303093,10355799 -(1,21879:6303093,10355799:0,0,0 -) -g1,21879:6630773,10355799 -) -k1,21880:6630773,10355799:0 -g1,21880:13585979,10355799 -h1,21880:15482853,10355799:0,0,0 -k1,21880:32583029,10355799:17100176 -g1,21880:32583029,10355799 -) -(1,21885:6630773,11021977:25952256,404226,9436 -(1,21882:6630773,11021977:0,0,0 -g1,21882:6630773,11021977 -g1,21882:6630773,11021977 -g1,21882:6303093,11021977 -(1,21882:6303093,11021977:0,0,0 -) -g1,21882:6630773,11021977 -) -g1,21885:7579210,11021977 -g1,21885:7895356,11021977 -g1,21885:8211502,11021977 -g1,21885:8527648,11021977 -g1,21885:8843794,11021977 -g1,21885:9159940,11021977 -g1,21885:9476086,11021977 -g1,21885:9792232,11021977 -g1,21885:11372961,11021977 -g1,21885:11689107,11021977 -g1,21885:12005253,11021977 -g1,21885:12321399,11021977 -g1,21885:12637545,11021977 -g1,21885:12953691,11021977 -g1,21885:13269837,11021977 -g1,21885:13585983,11021977 -g1,21885:15166712,11021977 -g1,21885:15482858,11021977 -g1,21885:15799004,11021977 -g1,21885:16115150,11021977 -g1,21885:16431296,11021977 -g1,21885:16747442,11021977 -g1,21885:17063588,11021977 -g1,21885:17379734,11021977 -g1,21885:18960463,11021977 -g1,21885:19276609,11021977 -g1,21885:19592755,11021977 -g1,21885:19908901,11021977 -g1,21885:20225047,11021977 -g1,21885:20541193,11021977 -g1,21885:20857339,11021977 -g1,21885:21173485,11021977 -h1,21885:22438068,11021977:0,0,0 -k1,21885:32583029,11021977:10144961 -g1,21885:32583029,11021977 -) -(1,21885:6630773,11688155:25952256,404226,107478 -h1,21885:6630773,11688155:0,0,0 -g1,21885:7579210,11688155 -g1,21885:7895356,11688155 -g1,21885:8211502,11688155 -g1,21885:11372959,11688155 -g1,21885:11689105,11688155 -g1,21885:12005251,11688155 -g1,21885:15166708,11688155 -g1,21885:15482854,11688155 -g1,21885:15799000,11688155 -g1,21885:18960457,11688155 -h1,21885:22438059,11688155:0,0,0 -k1,21885:32583029,11688155:10144970 -g1,21885:32583029,11688155 -) -(1,21887:6630773,13009693:25952256,410518,76021 -(1,21886:6630773,13009693:0,0,0 -g1,21886:6630773,13009693 -g1,21886:6630773,13009693 -g1,21886:6303093,13009693 -(1,21886:6303093,13009693:0,0,0 -) -g1,21886:6630773,13009693 -) -h1,21887:13902123,13009693:0,0,0 -k1,21887:32583029,13009693:18680906 -g1,21887:32583029,13009693 -) -(1,21891:6630773,13675871:25952256,404226,76021 -(1,21889:6630773,13675871:0,0,0 -g1,21889:6630773,13675871 -g1,21889:6630773,13675871 -g1,21889:6303093,13675871 -(1,21889:6303093,13675871:0,0,0 -) -g1,21889:6630773,13675871 -) -g1,21891:7579210,13675871 -g1,21891:8843793,13675871 -g1,21891:10740667,13675871 -g1,21891:11689104,13675871 -h1,21891:12321395,13675871:0,0,0 -k1,21891:32583029,13675871:20261634 -g1,21891:32583029,13675871 -) -] -) -g1,21892:32583029,13751892 -g1,21892:6630773,13751892 -g1,21892:6630773,13751892 -g1,21892:32583029,13751892 -g1,21892:32583029,13751892 -) -h1,21892:6630773,13948500:0,0,0 -v1,21896:6630773,15491347:0,393216,0 -(1,21930:6630773,31162101:25952256,16063970,0 -g1,21930:6630773,31162101 -g1,21930:6303093,31162101 -r1,21951:6401397,31162101:98304,16063970,0 -g1,21930:6600626,31162101 -g1,21930:6797234,31162101 -[1,21930:6797234,31162101:25785795,16063970,0 -(1,21897:6797234,15911931:25785795,813800,267386 -(1,21896:6797234,15911931:0,813800,267386 -r1,21951:8134168,15911931:1336934,1081186,267386 -k1,21896:6797234,15911931:-1336934 -) -(1,21896:6797234,15911931:1336934,813800,267386 -) -k1,21896:8332480,15911931:198312 -k1,21896:8660160,15911931:327680 -k1,21896:11119464,15911931:198312 -k1,21896:14030967,15911931:198312 -k1,21896:17591276,15911931:198312 -k1,21896:20764267,15911931:198312 -k1,21896:23158690,15911931:198312 -k1,21896:24641508,15911931:198312 -k1,21896:27010372,15911931:198312 -k1,21896:27956450,15911931:198312 -k1,21896:31315563,15911931:198312 -k1,21896:32583029,15911931:0 -) -(1,21897:6797234,16753419:25785795,513147,134348 -k1,21896:9792011,16753419:178695 -k1,21896:10962266,16753419:178695 -k1,21896:14301761,16753419:178694 -k1,21896:15747922,16753419:178695 -k1,21896:18150909,16753419:178695 -k1,21896:19012489,16753419:178695 -k1,21896:21418753,16753419:178695 -k1,21896:22283610,16753419:178695 -k1,21896:25436983,16753419:178694 -k1,21896:27811789,16753419:178695 -k1,21896:28606522,16753419:178695 -k1,21896:29804302,16753419:178695 -k1,21896:32583029,16753419:0 -) -(1,21897:6797234,17594907:25785795,513147,126483 -k1,21896:8385367,17594907:198770 -k1,21896:10460433,17594907:198770 -k1,21896:13361251,17594907:198769 -k1,21896:14369391,17594907:198770 -k1,21896:15587246,17594907:198770 -k1,21896:17466359,17594907:198770 -k1,21896:19870416,17594907:198770 -k1,21896:20720614,17594907:198770 -k1,21896:24200115,17594907:198769 -(1,21896:24200115,17594907:0,452978,122846 -r1,21951:29834058,17594907:5633943,575824,122846 -k1,21896:24200115,17594907:-5633943 -) -(1,21896:24200115,17594907:5633943,452978,122846 -k1,21896:24200115,17594907:3277 -h1,21896:29830781,17594907:0,411205,112570 -) -k1,21896:30206498,17594907:198770 -k1,21896:31601955,17594907:198770 -k1,21897:32583029,17594907:0 -) -(1,21897:6797234,18436395:25785795,513147,134348 -k1,21896:8519521,18436395:224789 -k1,21896:11405727,18436395:224789 -k1,21896:12246554,18436395:224789 -k1,21896:12886160,18436395:224763 -k1,21896:15444686,18436395:224789 -k1,21896:17212193,18436395:224789 -k1,21896:19004603,18436395:224789 -(1,21896:19004603,18436395:0,414482,115847 -r1,21951:20418004,18436395:1413401,530329,115847 -k1,21896:19004603,18436395:-1413401 -) -(1,21896:19004603,18436395:1413401,414482,115847 -k1,21896:19004603,18436395:3277 -h1,21896:20414727,18436395:0,411205,112570 -) -k1,21896:20642793,18436395:224789 -k1,21896:22135048,18436395:224789 -(1,21896:22135048,18436395:0,414482,115847 -r1,21951:23900161,18436395:1765113,530329,115847 -k1,21896:22135048,18436395:-1765113 -) -(1,21896:22135048,18436395:1765113,414482,115847 -k1,21896:22135048,18436395:3277 -h1,21896:23896884,18436395:0,411205,112570 -) -k1,21896:24298620,18436395:224789 -k1,21896:25248237,18436395:224789 -k1,21896:25931123,18436395:224789 -k1,21896:26687409,18436395:224789 -k1,21896:28809465,18436395:224789 -k1,21896:29685682,18436395:224789 -k1,21896:32583029,18436395:0 -) -(1,21897:6797234,19277883:25785795,505283,134348 -k1,21896:8482121,19277883:247682 -k1,21896:9500506,19277883:247682 -k1,21896:12820517,19277883:247683 -k1,21896:14766237,19277883:247682 -k1,21896:15472016,19277883:247682 -k1,21896:16251195,19277883:247682 -k1,21896:19128837,19277883:247682 -k1,21896:20661026,19277883:247683 -k1,21896:22404895,19277883:247682 -k1,21896:23184074,19277883:247682 -k1,21896:24549800,19277883:247682 -k1,21896:25606852,19277883:247682 -k1,21896:27321231,19277883:247683 -k1,21896:29487807,19277883:247682 -k1,21896:30926934,19277883:247682 -k1,21896:32583029,19277883:0 -) -(1,21897:6797234,20119371:25785795,513147,7863 -g1,21896:9660502,20119371 -g1,21896:10526887,20119371 -k1,21897:32583028,20119371:21467628 -g1,21897:32583028,20119371 -) -v1,21899:6797234,21309837:0,393216,0 -(1,21903:6797234,22265946:25785795,1349325,196608 -g1,21903:6797234,22265946 -g1,21903:6797234,22265946 -g1,21903:6600626,22265946 -(1,21903:6600626,22265946:0,1349325,196608 -r1,21951:32779637,22265946:26179011,1545933,196608 -k1,21903:6600625,22265946:-26179012 -) -(1,21903:6600626,22265946:26179011,1349325,196608 -[1,21903:6797234,22265946:25785795,1152717,0 -(1,21901:6797234,21523747:25785795,410518,107478 -(1,21900:6797234,21523747:0,0,0 -g1,21900:6797234,21523747 -g1,21900:6797234,21523747 -g1,21900:6469554,21523747 -(1,21900:6469554,21523747:0,0,0 -) -g1,21900:6797234,21523747 -) -k1,21901:11914897,21523747:1007769 -k1,21901:13554957,21523747:1007768 -k1,21901:28473135,21523747:1007769 -k1,21901:32583029,21523747:0 -) -(1,21901:6797234,22189925:25785795,404226,76021 -g1,21901:8377963,22189925 -g1,21901:9010255,22189925 -h1,21901:10590984,22189925:0,0,0 -k1,21901:32583028,22189925:21992044 -g1,21901:32583028,22189925 -) -] -) -g1,21903:32583029,22265946 -g1,21903:6797234,22265946 -g1,21903:6797234,22265946 -g1,21903:32583029,22265946 -g1,21903:32583029,22265946 -) -h1,21903:6797234,22462554:0,0,0 -v1,21907:6797234,24177308:0,393216,0 -(1,21928:6797234,30441205:25785795,6657113,196608 -g1,21928:6797234,30441205 -g1,21928:6797234,30441205 -g1,21928:6600626,30441205 -(1,21928:6600626,30441205:0,6657113,196608 -r1,21951:32779637,30441205:26179011,6853721,196608 -k1,21928:6600625,30441205:-26179012 -) -(1,21928:6600626,30441205:26179011,6657113,196608 -[1,21928:6797234,30441205:25785795,6460505,0 -(1,21909:6797234,24391218:25785795,410518,101187 -(1,21908:6797234,24391218:0,0,0 -g1,21908:6797234,24391218 -g1,21908:6797234,24391218 -g1,21908:6469554,24391218 -(1,21908:6469554,24391218:0,0,0 -) -g1,21908:6797234,24391218 -) -k1,21909:6797234,24391218:0 -g1,21909:13752440,24391218 -h1,21909:15649314,24391218:0,0,0 -k1,21909:32583030,24391218:16933716 -g1,21909:32583030,24391218 -) -(1,21914:6797234,25057396:25785795,404226,9436 -(1,21911:6797234,25057396:0,0,0 -g1,21911:6797234,25057396 -g1,21911:6797234,25057396 -g1,21911:6469554,25057396 -(1,21911:6469554,25057396:0,0,0 -) -g1,21911:6797234,25057396 -) -g1,21914:7745671,25057396 -g1,21914:8061817,25057396 -g1,21914:8377963,25057396 -g1,21914:8694109,25057396 -g1,21914:9010255,25057396 -g1,21914:9326401,25057396 -g1,21914:10907130,25057396 -g1,21914:11223276,25057396 -g1,21914:11539422,25057396 -g1,21914:11855568,25057396 -g1,21914:12171714,25057396 -g1,21914:12487860,25057396 -g1,21914:14068589,25057396 -g1,21914:14384735,25057396 -g1,21914:14700881,25057396 -g1,21914:15017027,25057396 -g1,21914:15333173,25057396 -g1,21914:15649319,25057396 -g1,21914:17230048,25057396 -g1,21914:17546194,25057396 -g1,21914:17862340,25057396 -g1,21914:18178486,25057396 -g1,21914:18494632,25057396 -g1,21914:18810778,25057396 -h1,21914:20075361,25057396:0,0,0 -k1,21914:32583029,25057396:12507668 -g1,21914:32583029,25057396 -) -(1,21914:6797234,25723574:25785795,410518,107478 -h1,21914:6797234,25723574:0,0,0 -g1,21914:7745671,25723574 -g1,21914:10907128,25723574 -g1,21914:14068585,25723574 -g1,21914:17230042,25723574 -g1,21914:17546188,25723574 -h1,21914:20075353,25723574:0,0,0 -k1,21914:32583029,25723574:12507676 -g1,21914:32583029,25723574 -) -(1,21916:6797234,27045112:25785795,410518,76021 -(1,21915:6797234,27045112:0,0,0 -g1,21915:6797234,27045112 -g1,21915:6797234,27045112 -g1,21915:6469554,27045112 -(1,21915:6469554,27045112:0,0,0 -) -g1,21915:6797234,27045112 -) -h1,21916:14068584,27045112:0,0,0 -k1,21916:32583028,27045112:18514444 -g1,21916:32583028,27045112 -) -(1,21921:6797234,27711290:25785795,404226,76021 -(1,21918:6797234,27711290:0,0,0 -g1,21918:6797234,27711290 -g1,21918:6797234,27711290 -g1,21918:6469554,27711290 -(1,21918:6469554,27711290:0,0,0 -) -g1,21918:6797234,27711290 -) -g1,21921:7745671,27711290 -g1,21921:9010254,27711290 -g1,21921:10274837,27711290 -g1,21921:10907129,27711290 -h1,21921:11223275,27711290:0,0,0 -k1,21921:32583029,27711290:21359754 -g1,21921:32583029,27711290 -) -(1,21921:6797234,28377468:25785795,404226,7863 -h1,21921:6797234,28377468:0,0,0 -g1,21921:7745671,28377468 -g1,21921:10274837,28377468 -g1,21921:11539420,28377468 -g1,21921:12171712,28377468 -h1,21921:12487858,28377468:0,0,0 -k1,21921:32583030,28377468:20095172 -g1,21921:32583030,28377468 -) -(1,21923:6797234,29699006:25785795,410518,76021 -(1,21922:6797234,29699006:0,0,0 -g1,21922:6797234,29699006 -g1,21922:6797234,29699006 -g1,21922:6469554,29699006 -(1,21922:6469554,29699006:0,0,0 -) -g1,21922:6797234,29699006 -) -k1,21923:6797234,29699006:0 -h1,21923:16597750,29699006:0,0,0 -k1,21923:32583029,29699006:15985279 -g1,21923:32583029,29699006 -) -(1,21927:6797234,30365184:25785795,404226,76021 -(1,21925:6797234,30365184:0,0,0 -g1,21925:6797234,30365184 -g1,21925:6797234,30365184 -g1,21925:6469554,30365184 -(1,21925:6469554,30365184:0,0,0 -) -g1,21925:6797234,30365184 -) -g1,21927:7745671,30365184 -g1,21927:9010254,30365184 -g1,21927:10907128,30365184 -g1,21927:11855565,30365184 -h1,21927:12487856,30365184:0,0,0 -k1,21927:32583028,30365184:20095172 -g1,21927:32583028,30365184 -) -] -) -g1,21928:32583029,30441205 -g1,21928:6797234,30441205 -g1,21928:6797234,30441205 -g1,21928:32583029,30441205 -g1,21928:32583029,30441205 -) -h1,21928:6797234,30637813:0,0,0 -] -g1,21930:32583029,31162101 -) -h1,21930:6630773,31162101:0,0,0 -v1,21933:6630773,32354269:0,393216,0 -(1,21934:6630773,36279242:25952256,4318189,0 -g1,21934:6630773,36279242 -g1,21934:6303093,36279242 -r1,21951:6401397,36279242:98304,4318189,0 -g1,21934:6600626,36279242 -g1,21934:6797234,36279242 -[1,21934:6797234,36279242:25785795,4318189,0 -(1,21934:6797234,32786807:25785795,825754,196608 -(1,21933:6797234,32786807:0,825754,196608 -r1,21951:7890375,32786807:1093141,1022362,196608 -k1,21933:6797234,32786807:-1093141 -) -(1,21933:6797234,32786807:1093141,825754,196608 -) -k1,21933:8159610,32786807:269235 -k1,21933:9885828,32786807:327680 -k1,21933:11723995,32786807:269235 -k1,21933:13012315,32786807:269235 -k1,21933:14264591,32786807:269236 -(1,21933:14264591,32786807:0,452978,122846 -r1,21951:22712228,32786807:8447637,575824,122846 -k1,21933:14264591,32786807:-8447637 -) -(1,21933:14264591,32786807:8447637,452978,122846 -k1,21933:14264591,32786807:3277 -h1,21933:22708951,32786807:0,411205,112570 -) -k1,21933:22981463,32786807:269235 -k1,21933:24644649,32786807:269235 -k1,21933:27609380,32786807:269235 -(1,21933:27609380,32786807:0,452978,115847 -r1,21951:31484764,32786807:3875384,568825,115847 -k1,21933:27609380,32786807:-3875384 -) -(1,21933:27609380,32786807:3875384,452978,115847 -k1,21933:27609380,32786807:3277 -h1,21933:31481487,32786807:0,411205,112570 -) -k1,21933:31753999,32786807:269235 -k1,21934:32583029,32786807:0 -) -(1,21934:6797234,33628295:25785795,513147,134348 -k1,21933:8699233,33628295:190854 -k1,21933:9557243,33628295:190854 -(1,21933:9557243,33628295:0,452978,115847 -r1,21951:13080915,33628295:3523672,568825,115847 -k1,21933:9557243,33628295:-3523672 -) -(1,21933:9557243,33628295:3523672,452978,115847 -k1,21933:9557243,33628295:3277 -h1,21933:13077638,33628295:0,411205,112570 -) -k1,21933:13445440,33628295:190855 -k1,21933:16599177,33628295:190854 -k1,21933:17993272,33628295:190854 -k1,21933:19521060,33628295:190854 -k1,21933:21098656,33628295:190854 -k1,21933:22435736,33628295:190855 -k1,21933:22982450,33628295:190854 -k1,21933:24984719,33628295:190854 -k1,21933:25834865,33628295:190854 -k1,21933:27624797,33628295:190854 -k1,21933:28834737,33628295:190855 -k1,21933:30713798,33628295:190854 -k1,21933:31563944,33628295:190854 -k1,21933:32583029,33628295:0 -) -(1,21934:6797234,34469783:25785795,513147,134348 -k1,21933:9566131,34469783:208405 -k1,21933:10306033,34469783:208405 -k1,21933:11462089,34469783:208405 -k1,21933:12840967,34469783:208405 -k1,21933:13700800,34469783:208405 -k1,21933:14887658,34469783:208405 -k1,21933:17588397,34469783:208405 -k1,21933:19190753,34469783:208405 -k1,21933:19813991,34469783:208395 -k1,21933:22782117,34469783:208405 -k1,21933:23606560,34469783:208405 -k1,21933:25182046,34469783:208405 -k1,21933:26049743,34469783:208405 -k1,21933:27751714,34469783:208405 -k1,21933:28315979,34469783:208405 -k1,21933:31202185,34469783:208405 -k1,21933:32583029,34469783:0 -) -(1,21934:6797234,35311271:25785795,505283,134348 -k1,21933:8205126,35311271:275430 -k1,21933:9868609,35311271:275430 -k1,21933:11314512,35311271:275430 -k1,21933:14681275,35311271:275430 -k1,21933:17158715,35311271:275430 -k1,21933:19371388,35311271:275429 -k1,21933:21344856,35311271:275430 -k1,21933:23000474,35311271:275430 -k1,21933:25650273,35311271:275430 -k1,21933:29890631,35311271:275430 -k1,21933:32051532,35311271:275430 -k1,21933:32583029,35311271:0 -) -(1,21934:6797234,36152759:25785795,513147,126483 -g1,21933:8621101,36152759 -g1,21933:11597746,36152759 -g1,21933:13495013,36152759 -g1,21933:15007584,36152759 -g1,21933:16198373,36152759 -k1,21934:32583029,36152759:14053540 -g1,21934:32583029,36152759 -) -] -g1,21934:32583029,36279242 -) -h1,21934:6630773,36279242:0,0,0 -(1,21937:6630773,37471410:25952256,513147,126483 -h1,21936:6630773,37471410:983040,0,0 -k1,21936:10754902,37471410:456079 -k1,21936:12194021,37471410:456079 -(1,21936:12194021,37471410:0,452978,122846 -r1,21951:19234812,37471410:7040791,575824,122846 -k1,21936:12194021,37471410:-7040791 -) -(1,21936:12194021,37471410:7040791,452978,122846 -k1,21936:12194021,37471410:3277 -h1,21936:19231535,37471410:0,411205,112570 -) -k1,21936:19690890,37471410:456078 -k1,21936:22849018,37471410:456079 -k1,21936:31189078,37471410:456079 -k1,21936:32583029,37471410:0 -) -(1,21937:6630773,38312898:25952256,505283,134348 -k1,21936:8889331,38312898:293133 -k1,21936:10923756,38312898:293133 -k1,21936:13004711,38312898:293133 -k1,21936:13949272,38312898:293133 -k1,21936:15793642,38312898:293133 -k1,21936:17105860,38312898:293133 -k1,21936:20285854,38312898:293133 -k1,21936:21230414,38312898:293132 -k1,21936:23239280,38312898:293133 -k1,21936:23990510,38312898:293133 -k1,21936:26154041,38312898:293133 -k1,21936:27098602,38312898:293133 -k1,21936:28804036,38312898:293133 -k1,21936:29858697,38312898:293133 -k1,21936:32583029,38312898:0 -) -(1,21937:6630773,39154386:25952256,513147,134348 -k1,21936:8699635,39154386:194532 -k1,21936:11213487,39154386:194533 -k1,21936:13142102,39154386:194532 -k1,21936:15708383,39154386:194533 -k1,21936:18222234,39154386:194532 -k1,21936:19608212,39154386:194533 -k1,21936:22100436,39154386:194532 -k1,21936:24036261,39154386:194533 -k1,21936:26348917,39154386:194532 -k1,21936:27827956,39154386:194533 -k1,21936:29014048,39154386:194532 -k1,21936:31966991,39154386:194533 -k1,21936:32583029,39154386:0 -) -(1,21937:6630773,39995874:25952256,513147,134348 -g1,21936:8695812,39995874 -g1,21936:10905686,39995874 -g1,21936:12802953,39995874 -g1,21936:14021267,39995874 -g1,21936:15203536,39995874 -g1,21936:15934262,39995874 -k1,21937:32583029,39995874:15062796 -g1,21937:32583029,39995874 -) -v1,21939:6630773,41012731:0,393216,0 -(1,21945:6630773,42635017:25952256,2015502,196608 -g1,21945:6630773,42635017 -g1,21945:6630773,42635017 -g1,21945:6434165,42635017 -(1,21945:6434165,42635017:0,2015502,196608 -r1,21951:32779637,42635017:26345472,2212110,196608 -k1,21945:6434165,42635017:-26345472 -) -(1,21945:6434165,42635017:26345472,2015502,196608 -[1,21945:6630773,42635017:25952256,1818894,0 -(1,21944:6630773,41220349:25952256,404226,82312 -(1,21940:6630773,41220349:0,0,0 -g1,21940:6630773,41220349 -g1,21940:6630773,41220349 -g1,21940:6303093,41220349 -(1,21940:6303093,41220349:0,0,0 -) -g1,21940:6630773,41220349 -) -k1,21944:6630773,41220349:0 -g1,21944:8527648,41220349 -g1,21944:10424523,41220349 -g1,21944:12321398,41220349 -h1,21944:13585981,41220349:0,0,0 -k1,21944:32583029,41220349:18997048 -g1,21944:32583029,41220349 -) -(1,21944:6630773,41886527:25952256,388497,82312 -h1,21944:6630773,41886527:0,0,0 -g1,21944:6946919,41886527 -g1,21944:8527648,41886527 -g1,21944:10424523,41886527 -g1,21944:10740669,41886527 -g1,21944:12321398,41886527 -g1,21944:12637544,41886527 -h1,21944:13585981,41886527:0,0,0 -k1,21944:32583029,41886527:18997048 -g1,21944:32583029,41886527 -) -(1,21944:6630773,42552705:25952256,388497,82312 -h1,21944:6630773,42552705:0,0,0 -g1,21944:8527648,42552705 -g1,21944:10424523,42552705 -g1,21944:10740669,42552705 -g1,21944:11056815,42552705 -g1,21944:12321398,42552705 -g1,21944:12637544,42552705 -g1,21944:13269836,42552705 -h1,21944:13585982,42552705:0,0,0 -k1,21944:32583030,42552705:18997048 -g1,21944:32583030,42552705 -) -] -) -g1,21945:32583029,42635017 -g1,21945:6630773,42635017 -g1,21945:6630773,42635017 -g1,21945:32583029,42635017 -g1,21945:32583029,42635017 -) -h1,21945:6630773,42831625:0,0,0 -(1,21949:6630773,44023793:25952256,513147,134348 -h1,21948:6630773,44023793:983040,0,0 -k1,21948:10761659,44023793:184963 -k1,21948:12734443,44023793:184962 -k1,21948:16224387,44023793:184963 -k1,21948:17400909,44023793:184962 -k1,21948:18998173,44023793:184963 -k1,21948:19869298,44023793:184963 -k1,21948:21376121,44023793:184962 -k1,21948:22220376,44023793:184963 -k1,21948:23424424,44023793:184963 -k1,21948:25517139,44023793:184962 -k1,21948:27082290,44023793:184963 -k1,21948:28258812,44023793:184962 -k1,21948:30884991,44023793:184963 -k1,21948:32583029,44023793:0 -) -(1,21949:6630773,44865281:25952256,505283,134348 -k1,21948:10355422,44865281:247964 -k1,21948:11254815,44865281:247965 -k1,21948:14122908,44865281:247964 -k1,21948:16053837,44865281:247964 -k1,21948:18138120,44865281:247964 -k1,21948:19582772,44865281:247965 -k1,21948:23048554,44865281:247964 -k1,21948:25615837,44865281:247964 -k1,21948:27055246,44865281:247964 -k1,21948:29600903,44865281:247965 -k1,21948:31966991,44865281:247964 -k1,21948:32583029,44865281:0 -) -(1,21949:6630773,45706769:25952256,513147,134348 -g1,21948:9804681,45706769 -g1,21948:12200021,45706769 -g1,21948:13390810,45706769 -g1,21948:16073854,45706769 -g1,21948:16924511,45706769 -g1,21948:18148723,45706769 -g1,21948:20045990,45706769 -g1,21948:21634582,45706769 -g1,21948:24040408,45706769 -g1,21948:25231197,45706769 -k1,21949:32583029,45706769:4828041 -g1,21949:32583029,45706769 -) -] -(1,21951:32583029,45706769:0,0,0 -g1,21951:32583029,45706769 -) -) -] -(1,21951:6630773,47279633:25952256,0,0 -h1,21951:6630773,47279633:25952256,0,0 -) -] -(1,21951:4262630,4025873:0,0,0 -[1,21951:-473656,4025873:0,0,0 -(1,21951:-473656,-710413:0,0,0 -(1,21951:-473656,-710413:0,0,0 -g1,21951:-473656,-710413 -) -g1,21951:-473656,-710413 -) -] -) -] -!26106 -}398 -Input:3566:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3567:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3568:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3569:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3570:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3571:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3572:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3573:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3574:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!858 -{399 -[1,22055:4262630,47279633:28320399,43253760,0 -(1,22055:4262630,4025873:0,0,0 -[1,22055:-473656,4025873:0,0,0 -(1,22055:-473656,-710413:0,0,0 -(1,22055:-473656,-644877:0,0,0 -k1,22055:-473656,-644877:-65536 -) -(1,22055:-473656,4736287:0,0,0 -k1,22055:-473656,4736287:5209943 -) -g1,22055:-473656,-710413 +k1,21670:62087500,1915420:25935872 +g1,21670:62087500,1915420 ) ] ) -[1,22055:6630773,47279633:25952256,43253760,0 -[1,22055:6630773,4812305:25952256,786432,0 -(1,22055:6630773,4812305:25952256,505283,134348 -(1,22055:6630773,4812305:25952256,505283,134348 -g1,22055:3078558,4812305 -[1,22055:3078558,4812305:0,0,0 -(1,22055:3078558,2439708:0,1703936,0 -k1,22055:1358238,2439708:-1720320 -(1,21457:1358238,2439708:1720320,1703936,0 -(1,21457:1358238,2439708:1179648,16384,0 -r1,22055:2537886,2439708:1179648,16384,0 +g1,21670:36675916,2439708 +(1,21670:36675916,2439708:1179648,16384,0 +r1,22143:37855564,2439708:1179648,16384,0 ) -g1,21457:3062174,2439708 -(1,21457:3062174,2439708:16384,1703936,0 -[1,21457:3062174,2439708:25952256,1703936,0 -(1,21457:3062174,1915420:25952256,1179648,0 -(1,21457:3062174,1915420:16384,1179648,0 -r1,22055:3078558,1915420:16384,1179648,0 ) -k1,21457:29014430,1915420:25935872 -g1,21457:29014430,1915420 +k1,22143:3078556,2439708:-34777008 ) ] +[1,22143:3078558,4812305:0,0,0 +(1,22143:3078558,49800853:0,16384,2228224 +k1,22143:1358238,49800853:-1720320 +(1,21670:1358238,49800853:1720320,16384,2228224 +(1,21670:1358238,49800853:1179648,16384,0 +r1,22143:2537886,49800853:1179648,16384,0 ) +g1,21670:3062174,49800853 +(1,21670:3062174,52029077:16384,1703936,0 +[1,21670:3062174,52029077:25952256,1703936,0 +(1,21670:3062174,51504789:25952256,1179648,0 +(1,21670:3062174,51504789:16384,1179648,0 +r1,22143:3078558,51504789:16384,1179648,0 ) +k1,21670:29014430,51504789:25935872 +g1,21670:29014430,51504789 +) +] +) +) +) +] +[1,22143:3078558,4812305:0,0,0 +(1,22143:3078558,49800853:0,16384,2228224 +g1,22143:29030814,49800853 +g1,22143:36135244,49800853 +(1,21670:36135244,49800853:1720320,16384,2228224 +(1,21670:36135244,52029077:16384,1703936,0 +[1,21670:36135244,52029077:25952256,1703936,0 +(1,21670:36135244,51504789:25952256,1179648,0 +(1,21670:36135244,51504789:16384,1179648,0 +r1,22143:36151628,51504789:16384,1179648,0 +) +k1,21670:62087500,51504789:25935872 +g1,21670:62087500,51504789 +) +] +) +g1,21670:36675916,49800853 +(1,21670:36675916,49800853:1179648,16384,0 +r1,22143:37855564,49800853:1179648,16384,0 +) +) +k1,22143:3078556,49800853:-34777008 +) +] +g1,22143:6630773,4812305 +k1,22143:21078841,4812305:13252691 +g1,22143:22701512,4812305 +g1,22143:23350318,4812305 +g1,22143:24759997,4812305 +g1,22143:28372341,4812305 +g1,22143:30105768,4812305 +) +) +] +[1,22143:6630773,45706769:25952256,40108032,0 +(1,22143:6630773,45706769:25952256,40108032,0 +(1,22143:6630773,45706769:0,0,0 +g1,22143:6630773,45706769 +) +[1,22143:6630773,45706769:25952256,40108032,0 +v1,22062:6630773,6254097:0,393216,0 +(1,22062:6630773,14294096:25952256,8433215,0 +g1,22062:6630773,14294096 +g1,22062:6237557,14294096 +r1,22143:6368629,14294096:131072,8433215,0 +g1,22062:6567858,14294096 +g1,22062:6764466,14294096 +[1,22062:6764466,14294096:25818563,8433215,0 +(1,22060:6764466,6374028:25818563,513147,134348 +k1,22059:9800702,6374028:194595 +k1,22059:12524988,6374028:194596 +k1,22059:13378875,6374028:194595 +k1,22059:13929331,6374028:194596 +k1,22059:17256547,6374028:194595 +k1,22059:18067181,6374028:194596 +k1,22059:21336725,6374028:194595 +k1,22059:22773884,6374028:194596 +k1,22059:24666517,6374028:194595 +k1,22059:25216973,6374028:194596 +k1,22059:26680341,6374028:194591 +k1,22059:27857976,6374028:194595 +k1,22059:29863987,6374028:194596 +k1,22059:31452533,6374028:194595 +k1,22060:32583029,6374028:0 +) +(1,22060:6764466,7239108:25818563,513147,134348 +k1,22059:8581830,7239108:170444 +k1,22059:9283771,7239108:170444 +k1,22059:11776156,7239108:170444 +k1,22059:14625712,7239108:170444 +k1,22059:16531549,7239108:170444 +k1,22059:18570424,7239108:170444 +k1,22059:21267936,7239108:170444 +k1,22059:23792433,7239108:170444 +k1,22059:25035046,7239108:170444 +k1,22059:26617791,7239108:170444 +k1,22059:27474397,7239108:170444 +k1,22059:28415544,7239108:170444 +k1,22059:30055961,7239108:170444 +k1,22059:32583029,7239108:0 +) +(1,22060:6764466,8104188:25818563,513147,7863 +g1,22059:9642807,8104188 +k1,22060:32583029,8104188:21783512 +g1,22060:32583029,8104188 +) +(1,22062:6764466,8969268:25818563,513147,134348 +h1,22061:6764466,8969268:983040,0,0 +k1,22061:9160613,8969268:216420 +k1,22061:11791379,8969268:216420 +k1,22061:13329660,8969268:216420 +k1,22061:14205372,8969268:216420 +k1,22061:15187908,8969268:216420 +k1,22061:17101055,8969268:216420 +k1,22061:20324267,8969268:216420 +k1,22061:21072184,8969268:216420 +k1,22061:21940032,8969268:216420 +k1,22061:24995472,8969268:216420 +k1,22061:26720531,8969268:216420 +k1,22061:28984951,8969268:216420 +k1,22061:29887533,8969268:216420 +k1,22061:32583029,8969268:0 +) +(1,22062:6764466,9834348:25818563,513147,134348 +k1,22061:10384347,9834348:217252 +k1,22061:11793044,9834348:217252 +k1,22061:14597001,9834348:217251 +k1,22061:18871587,9834348:217252 +k1,22061:21501875,9834348:217252 +k1,22061:22823409,9834348:217252 +k1,22061:23656698,9834348:217251 +k1,22061:25475650,9834348:217252 +k1,22061:27390284,9834348:217252 +k1,22061:28355302,9834348:217252 +k1,22061:30085779,9834348:217251 +k1,22061:30954459,9834348:217252 +k1,22061:32583029,9834348:0 +) +(1,22062:6764466,10699428:25818563,513147,134348 +k1,22061:7958889,10699428:175338 +k1,22061:10376870,10699428:175339 +k1,22061:13459385,10699428:175338 +k1,22061:14294016,10699428:175339 +k1,22061:15695533,10699428:175338 +k1,22061:17184214,10699428:175339 +k1,22061:18753503,10699428:175338 +k1,22061:21221291,10699428:175339 +k1,22061:26198452,10699428:175338 +k1,22061:28578422,10699428:175339 +k1,22061:29945205,10699428:175338 +k1,22061:32583029,10699428:0 +) +(1,22062:6764466,11564508:25818563,513147,134348 +k1,22061:8529810,11564508:275055 +k1,22061:9961576,11564508:275056 +k1,22061:12289874,11564508:275055 +k1,22061:14113546,11564508:275056 +k1,22061:14920098,11564508:275055 +k1,22061:18081359,11564508:275055 +k1,22061:19627813,11564508:275056 +k1,22061:22598364,11564508:275055 +k1,22061:23489458,11564508:275056 +k1,22061:24783598,11564508:275055 +k1,22061:25473420,11564508:274979 +k1,22061:27668680,11564508:275056 +k1,22061:30697558,11564508:275055 +k1,22061:32583029,11564508:0 +) +(1,22062:6764466,12429588:25818563,513147,134348 +k1,22061:7540576,12429588:244613 +k1,22061:8851460,12429588:244613 +k1,22061:12110729,12429588:244613 +k1,22061:13459624,12429588:244613 +k1,22061:14316999,12429588:244613 +k1,22061:15580697,12429588:244613 +k1,22061:17250718,12429588:244613 +k1,22061:18154623,12429588:244613 +k1,22061:20656950,12429588:244612 +k1,22061:21649329,12429588:244613 +k1,22061:23407168,12429588:244613 +k1,22061:24303209,12429588:244613 +k1,22061:25739267,12429588:244613 +k1,22061:27297222,12429588:244613 +k1,22061:28489486,12429588:244613 +k1,22061:29753184,12429588:244613 +k1,22061:32583029,12429588:0 +) +(1,22062:6764466,13294668:25818563,513147,115847 +k1,22061:7802363,13294668:228527 +k1,22061:11192317,13294668:228497 +k1,22061:14899495,13294668:228527 +(1,22061:14899495,13294668:0,459977,115847 +r1,22143:24050556,13294668:9151061,575824,115847 +k1,22061:14899495,13294668:-9151061 +) +(1,22061:14899495,13294668:9151061,459977,115847 +k1,22061:14899495,13294668:3277 +h1,22061:24047279,13294668:0,411205,112570 +) +k1,22061:24452752,13294668:228526 +k1,22061:26062123,13294668:228527 +k1,22061:28986146,13294668:228527 +k1,22061:30897637,13294668:228526 +k1,22061:31812326,13294668:228527 +k1,22061:32583029,13294668:0 +) +(1,22062:6764466,14159748:25818563,513147,134348 +g1,22061:10036023,14159748 +g1,22061:11254337,14159748 +g1,22061:12901912,14159748 +g1,22061:13752569,14159748 +g1,22061:14307658,14159748 +k1,22062:32583028,14159748:17118660 +g1,22062:32583028,14159748 +) +] +g1,22062:32583029,14294096 +) +h1,22062:6630773,14294096:0,0,0 +(1,22064:6630773,16410914:25952256,555811,12975 +(1,22064:6630773,16410914:2899444,534184,12975 +g1,22064:6630773,16410914 +g1,22064:9530217,16410914 +) +g1,22064:11399501,16410914 +g1,22064:12121839,16410914 +g1,22064:13689067,16410914 +k1,22064:32583030,16410914:16869688 +g1,22064:32583030,16410914 +) +(1,22067:6630773,17669210:25952256,513147,134348 +k1,22066:8212660,17669210:178106 +k1,22066:9704109,17669210:178107 +k1,22066:13244212,17669210:178106 +k1,22066:14811682,17669210:178107 +k1,22066:15605826,17669210:178106 +k1,22066:18497124,17669210:178107 +k1,22066:19779512,17669210:178106 +k1,22066:20705385,17669210:178107 +k1,22066:23252618,17669210:178106 +k1,22066:24698191,17669210:178107 +k1,22066:26048736,17669210:178106 +k1,22066:28086755,17669210:178107 +k1,22066:30661513,17669210:178106 +k1,22066:32583029,17669210:0 +) +(1,22067:6630773,18534290:25952256,513147,7863 +k1,22066:8217936,18534290:193212 +k1,22066:12002521,18534290:193212 +k1,22066:13929816,18534290:193212 +k1,22066:15314473,18534290:193212 +k1,22066:17251598,18534290:193212 +k1,22066:18838760,18534290:193211 +k1,22066:22052526,18534290:193212 +k1,22066:24153491,18534290:193212 +k1,22066:28067837,18534290:193212 +k1,22066:29995132,18534290:193212 +k1,22066:31692395,18534290:193212 +k1,22067:32583029,18534290:0 +) +(1,22067:6630773,19399370:25952256,513147,134348 +k1,22066:9356814,19399370:295966 +k1,22066:12430195,19399370:295965 +k1,22066:13342199,19399370:295966 +k1,22066:14657250,19399370:295966 +k1,22066:16511006,19399370:295965 +k1,22066:18274978,19399370:295966 +k1,22066:19238100,19399370:295966 +k1,22066:22574839,19399370:295868 +k1,22066:24062250,19399370:295966 +k1,22066:26556197,19399370:295869 +k1,22066:28550200,19399370:295965 +k1,22066:30235529,19399370:295966 +k1,22066:32583029,19399370:0 +) +(1,22067:6630773,20264450:25952256,513147,134348 +k1,22066:9509234,20264450:259642 +k1,22066:10976048,20264450:259641 +k1,22066:12589664,20264450:259642 +k1,22066:15275448,20264450:259641 +k1,22066:17409420,20264450:259642 +k1,22066:20179745,20264450:259641 +k1,22066:21430947,20264450:259642 +k1,22066:24995569,20264450:259641 +k1,22066:27674145,20264450:259642 +k1,22066:28593078,20264450:259641 +k1,22066:31753999,20264450:259642 +k1,22067:32583029,20264450:0 +) +(1,22067:6630773,21129530:25952256,513147,134348 +k1,22066:10080529,21129530:258808 +k1,22066:12074729,21129530:258807 +k1,22066:14102354,21129530:258808 +k1,22066:17666142,21129530:258807 +k1,22066:19367397,21129530:258808 +k1,22066:21324242,21129530:258807 +k1,22066:24603604,21129530:258808 +k1,22066:26596494,21129530:258807 +k1,22066:27846862,21129530:258808 +k1,22066:29792566,21129530:258807 +k1,22066:31248061,21129530:258808 +k1,22066:32583029,21129530:0 +) +(1,22067:6630773,21994610:25952256,513147,134348 +k1,22066:8115342,21994610:246594 +k1,22066:9021228,21994610:246594 +k1,22066:13922844,21994610:246594 +k1,22066:15188523,21994610:246594 +k1,22066:18951779,21994610:246594 +k1,22066:19729870,21994610:246594 +k1,22066:21370415,21994610:246594 +k1,22066:24782398,21994610:246594 +k1,22066:27991875,21994610:246594 +k1,22066:28854507,21994610:246594 +k1,22066:30304342,21994610:246594 +k1,22066:32583029,21994610:0 +) +(1,22067:6630773,22859690:25952256,513147,134348 +k1,22066:7742030,22859690:242905 +k1,22066:11117555,22859690:242904 +k1,22066:12379545,22859690:242905 +k1,22066:13714934,22859690:242904 +k1,22066:14617131,22859690:242905 +k1,22066:17885832,22859690:242904 +k1,22066:18890265,22859690:242905 +k1,22066:21560623,22859690:242904 +k1,22066:22159388,22859690:242905 +k1,22066:23385332,22859690:242904 +k1,22066:25366252,22859690:242905 +k1,22066:26295318,22859690:242904 +k1,22066:27308926,22859690:242905 +k1,22066:30797828,22859690:242904 +k1,22066:32583029,22859690:0 +) +(1,22067:6630773,23724770:25952256,513147,134348 +g1,22066:8021447,23724770 +g1,22066:9798128,23724770 +g1,22066:10980397,23724770 +g1,22066:14791970,23724770 +g1,22066:15982759,23724770 +g1,22066:17467804,23724770 +g1,22066:20483115,23724770 +g1,22066:21914421,23724770 +g1,22066:24392337,23724770 +h1,22066:25761384,23724770:0,0,0 +g1,22066:25960613,23724770 +g1,22066:26969212,23724770 +g1,22066:28666594,23724770 +h1,22066:29861971,23724770:0,0,0 +k1,22067:32583029,23724770:2340294 +g1,22067:32583029,23724770 +) +(1,22069:6630773,24589850:25952256,513147,126483 +h1,22068:6630773,24589850:983040,0,0 +k1,22068:8439321,24589850:197673 +k1,22068:9656079,24589850:197673 +k1,22068:11159885,24589850:197673 +k1,22068:14018974,24589850:197672 +k1,22068:15084999,24589850:197673 +k1,22068:16415134,24589850:197673 +k1,22068:18025108,24589850:197673 +k1,22068:18578641,24589850:197673 +k1,22068:19759354,24589850:197673 +k1,22068:21350978,24589850:197673 +k1,22068:23282734,24589850:197673 +k1,22068:25323934,24589850:197672 +k1,22068:28542161,24589850:197673 +k1,22068:29501362,24589850:197673 +k1,22068:30473015,24589850:197673 +k1,22068:32051532,24589850:197673 +k1,22068:32583029,24589850:0 +) +(1,22069:6630773,25454930:25952256,513147,126483 +k1,22068:8327505,25454930:148116 +k1,22068:9007117,25454930:148115 +k1,22068:11023009,25454930:148116 +k1,22068:19055106,25454930:148116 +k1,22068:20886136,25454930:148065 +k1,22068:23214634,25454930:148115 +k1,22068:25248221,25454930:148116 +k1,22068:26500619,25454930:148116 +k1,22068:27396501,25454930:148116 +k1,22068:28956917,25454930:148115 +k1,22068:30296478,25454930:148116 +k1,22068:32583029,25454930:0 +) +(1,22069:6630773,26320010:25952256,505283,126483 +g1,22068:8223953,26320010 +(1,22068:8223953,26320010:0,452978,115847 +r1,22143:11747625,26320010:3523672,568825,115847 +k1,22068:8223953,26320010:-3523672 +) +(1,22068:8223953,26320010:3523672,452978,115847 +k1,22068:8223953,26320010:3277 +h1,22068:11744348,26320010:0,411205,112570 +) +g1,22068:11946854,26320010 +g1,22068:13337528,26320010 +(1,22068:13337528,26320010:0,452978,115847 +r1,22143:17212912,26320010:3875384,568825,115847 +k1,22068:13337528,26320010:-3875384 +) +(1,22068:13337528,26320010:3875384,452978,115847 +k1,22068:13337528,26320010:3277 +h1,22068:17209635,26320010:0,411205,112570 +) +g1,22068:17585811,26320010 +k1,22069:32583029,26320010:11027047 +g1,22069:32583029,26320010 +) +(1,22071:6630773,27185090:25952256,513147,126483 +h1,22070:6630773,27185090:983040,0,0 +g1,22070:10498052,27185090 +g1,22070:11680321,27185090 +(1,22070:11680321,27185090:0,452978,122846 +r1,22143:20127958,27185090:8447637,575824,122846 +k1,22070:11680321,27185090:-8447637 +) +(1,22070:11680321,27185090:8447637,452978,122846 +k1,22070:11680321,27185090:3277 +h1,22070:20124681,27185090:0,411205,112570 +) +g1,22070:20327187,27185090 +k1,22071:32583029,27185090:9380122 +g1,22071:32583029,27185090 +) +v1,22073:6630773,27869945:0,393216,0 +(1,22079:6630773,29553914:25952256,2077185,196608 +g1,22079:6630773,29553914 +g1,22079:6630773,29553914 +g1,22079:6434165,29553914 +(1,22079:6434165,29553914:0,2077185,196608 +r1,22143:32779637,29553914:26345472,2273793,196608 +k1,22079:6434165,29553914:-26345472 +) +(1,22079:6434165,29553914:26345472,2077185,196608 +[1,22079:6630773,29553914:25952256,1880577,0 +(1,22078:6630773,28097776:25952256,424439,86428 +(1,22074:6630773,28097776:0,0,0 +g1,22074:6630773,28097776 +g1,22074:6630773,28097776 +g1,22074:6303093,28097776 +(1,22074:6303093,28097776:0,0,0 +) +g1,22074:6630773,28097776 +) +k1,22078:6630773,28097776:0 +k1,22078:6630773,28097776:0 +h1,22078:12937899,28097776:0,0,0 +k1,22078:32583029,28097776:19645130 +g1,22078:32583029,28097776 +) +(1,22078:6630773,28782631:25952256,407923,86428 +h1,22078:6630773,28782631:0,0,0 +k1,22078:6630773,28782631:0 +h1,22078:11942037,28782631:0,0,0 +k1,22078:32583029,28782631:20640992 +g1,22078:32583029,28782631 +) +(1,22078:6630773,29467486:25952256,407923,86428 +h1,22078:6630773,29467486:0,0,0 +g1,22078:11610083,29467486 +h1,22078:11942037,29467486:0,0,0 +k1,22078:32583029,29467486:20640992 +g1,22078:32583029,29467486 +) +] +) +g1,22079:32583029,29553914 +g1,22079:6630773,29553914 +g1,22079:6630773,29553914 +g1,22079:32583029,29553914 +g1,22079:32583029,29553914 +) +h1,22079:6630773,29750522:0,0,0 +v1,22083:6630773,30435377:0,393216,0 +(1,22087:6630773,31434491:25952256,1392330,196608 +g1,22087:6630773,31434491 +g1,22087:6630773,31434491 +g1,22087:6434165,31434491 +(1,22087:6434165,31434491:0,1392330,196608 +r1,22143:32779637,31434491:26345472,1588938,196608 +k1,22087:6434165,31434491:-26345472 +) +(1,22087:6434165,31434491:26345472,1392330,196608 +[1,22087:6630773,31434491:25952256,1195722,0 +(1,22085:6630773,30669814:25952256,431045,112852 +(1,22084:6630773,30669814:0,0,0 +g1,22084:6630773,30669814 +g1,22084:6630773,30669814 +g1,22084:6303093,30669814 +(1,22084:6303093,30669814:0,0,0 +) +g1,22084:6630773,30669814 +) +k1,22085:11630032,30669814:683858 +k1,22085:12977798,30669814:683858 +k1,22085:28267628,30669814:683858 +k1,22085:32583029,30669814:0 +) +(1,22085:6630773,31354669:25952256,424439,79822 +g1,22085:8290543,31354669 +g1,22085:8954451,31354669 +h1,22085:10946175,31354669:0,0,0 +k1,22085:32583029,31354669:21636854 +g1,22085:32583029,31354669 +) +] +) +g1,22087:32583029,31434491 +g1,22087:6630773,31434491 +g1,22087:6630773,31434491 +g1,22087:32583029,31434491 +g1,22087:32583029,31434491 +) +h1,22087:6630773,31631099:0,0,0 +v1,22091:6630773,32315954:0,393216,0 +(1,22105:6630773,35762849:25952256,3840111,196608 +g1,22105:6630773,35762849 +g1,22105:6630773,35762849 +g1,22105:6434165,35762849 +(1,22105:6434165,35762849:0,3840111,196608 +r1,22143:32779637,35762849:26345472,4036719,196608 +k1,22105:6434165,35762849:-26345472 +) +(1,22105:6434165,35762849:26345472,3840111,196608 +[1,22105:6630773,35762849:25952256,3643503,0 +(1,22093:6630773,32550391:25952256,431045,106246 +(1,22092:6630773,32550391:0,0,0 +g1,22092:6630773,32550391 +g1,22092:6630773,32550391 +g1,22092:6303093,32550391 +(1,22092:6303093,32550391:0,0,0 +) +g1,22092:6630773,32550391 +) +k1,22093:6630773,32550391:0 +g1,22093:13933760,32550391 +h1,22093:15925484,32550391:0,0,0 +k1,22093:32583029,32550391:16657545 +g1,22093:32583029,32550391 +) +(1,22098:6630773,33366318:25952256,424439,9908 +(1,22095:6630773,33366318:0,0,0 +g1,22095:6630773,33366318 +g1,22095:6630773,33366318 +g1,22095:6303093,33366318 +(1,22095:6303093,33366318:0,0,0 +) +g1,22095:6630773,33366318 +) +g1,22098:7626635,33366318 +g1,22098:7958589,33366318 +g1,22098:8290543,33366318 +g1,22098:8622497,33366318 +g1,22098:8954451,33366318 +g1,22098:9286405,33366318 +g1,22098:9618359,33366318 +g1,22098:9950313,33366318 +g1,22098:11610083,33366318 +g1,22098:11942037,33366318 +g1,22098:12273991,33366318 +g1,22098:12605945,33366318 +g1,22098:12937899,33366318 +g1,22098:13269853,33366318 +g1,22098:13601807,33366318 +g1,22098:13933761,33366318 +g1,22098:15593531,33366318 +g1,22098:15925485,33366318 +g1,22098:16257439,33366318 +g1,22098:16589393,33366318 +g1,22098:16921347,33366318 +g1,22098:17253301,33366318 +g1,22098:17585255,33366318 +g1,22098:17917209,33366318 +g1,22098:19576979,33366318 +g1,22098:19908933,33366318 +g1,22098:20240887,33366318 +g1,22098:20572841,33366318 +g1,22098:20904795,33366318 +g1,22098:21236749,33366318 +g1,22098:21568703,33366318 +g1,22098:21900657,33366318 +h1,22098:23228473,33366318:0,0,0 +k1,22098:32583029,33366318:9354556 +g1,22098:32583029,33366318 +) +(1,22098:6630773,34051173:25952256,424439,112852 +h1,22098:6630773,34051173:0,0,0 +g1,22098:7626635,34051173 +g1,22098:7958589,34051173 +g1,22098:8290543,34051173 +g1,22098:11610082,34051173 +g1,22098:11942036,34051173 +g1,22098:12273990,34051173 +g1,22098:15593529,34051173 +g1,22098:15925483,34051173 +g1,22098:16257437,34051173 +g1,22098:19576976,34051173 +h1,22098:23228469,34051173:0,0,0 +k1,22098:32583029,34051173:9354560 +g1,22098:32583029,34051173 +) +(1,22100:6630773,34867100:25952256,431045,79822 +(1,22099:6630773,34867100:0,0,0 +g1,22099:6630773,34867100 +g1,22099:6630773,34867100 +g1,22099:6303093,34867100 +(1,22099:6303093,34867100:0,0,0 +) +g1,22099:6630773,34867100 +) +h1,22100:14265714,34867100:0,0,0 +k1,22100:32583030,34867100:18317316 +g1,22100:32583030,34867100 +) +(1,22104:6630773,35683027:25952256,424439,79822 +(1,22102:6630773,35683027:0,0,0 +g1,22102:6630773,35683027 +g1,22102:6630773,35683027 +g1,22102:6303093,35683027 +(1,22102:6303093,35683027:0,0,0 +) +g1,22102:6630773,35683027 +) +g1,22104:7626635,35683027 +g1,22104:8954451,35683027 +g1,22104:10946175,35683027 +g1,22104:11942037,35683027 +h1,22104:12605945,35683027:0,0,0 +k1,22104:32583029,35683027:19977084 +g1,22104:32583029,35683027 +) +] +) +g1,22105:32583029,35762849 +g1,22105:6630773,35762849 +g1,22105:6630773,35762849 +g1,22105:32583029,35762849 +g1,22105:32583029,35762849 +) +h1,22105:6630773,35959457:0,0,0 +v1,22109:6630773,36824537:0,393216,0 +(1,22143:6630773,43391691:25952256,6960370,0 +g1,22143:6630773,43391691 +g1,22143:6237557,43391691 +r1,22143:6368629,43391691:131072,6960370,0 +g1,22143:6567858,43391691 +g1,22143:6764466,43391691 +[1,22143:6764466,43391691:25818563,6960370,0 +(1,22110:6764466,37185714:25818563,754393,260573 +(1,22109:6764466,37185714:0,754393,260573 +r1,22143:8010564,37185714:1246098,1014966,260573 +k1,22109:6764466,37185714:-1246098 +) +(1,22109:6764466,37185714:1246098,754393,260573 +) +k1,22109:8221236,37185714:210672 +k1,22109:8548916,37185714:327680 +k1,22109:11020581,37185714:210673 +k1,22109:13944444,37185714:210672 +k1,22109:17517114,37185714:210673 +k1,22109:20702465,37185714:210672 +k1,22109:23109248,37185714:210672 +k1,22109:24604427,37185714:210673 +k1,22109:26985651,37185714:210672 +k1,22109:27944090,37185714:210673 +k1,22109:31315563,37185714:210672 +k1,22109:32583029,37185714:0 +) +(1,22110:6764466,38050794:25818563,513147,134348 +k1,22109:9761973,38050794:181425 +k1,22109:10934959,38050794:181426 +k1,22109:14277185,38050794:181425 +k1,22109:15726077,38050794:181426 +k1,22109:18131794,38050794:181425 +k1,22109:18996105,38050794:181426 +k1,22109:21405099,38050794:181425 +k1,22109:22272687,38050794:181426 +k1,22109:25428791,38050794:181425 +k1,22109:27806328,38050794:181426 +k1,22109:28603791,38050794:181425 +k1,22109:29804302,38050794:181426 +k1,22109:32583029,38050794:0 +) +(1,22110:6764466,38915874:25818563,513147,126483 +k1,22109:8355578,38915874:201749 +k1,22109:10433622,38915874:201748 +k1,22109:13337420,38915874:201749 +k1,22109:14348539,38915874:201749 +k1,22109:15569373,38915874:201749 +k1,22109:17451464,38915874:201748 +k1,22109:19858500,38915874:201749 +k1,22109:20711677,38915874:201749 +k1,22109:24194158,38915874:201749 +(1,22109:24194158,38915874:0,452978,122846 +r1,22143:29828101,38915874:5633943,575824,122846 +k1,22109:24194158,38915874:-5633943 +) +(1,22109:24194158,38915874:5633943,452978,122846 +k1,22109:24194158,38915874:3277 +h1,22109:29824824,38915874:0,411205,112570 +) +k1,22109:30203519,38915874:201748 +k1,22109:31601955,38915874:201749 +k1,22110:32583029,38915874:0 +) +(1,22110:6764466,39780954:25818563,513147,134348 +k1,22109:8488938,39780954:226974 +k1,22109:11377328,39780954:226973 +k1,22109:12220340,39780954:226974 +k1,22109:12862129,39780954:226946 +k1,22109:15422839,39780954:226973 +k1,22109:17192531,39780954:226974 +k1,22109:18987126,39780954:226974 +(1,22109:18987126,39780954:0,414482,115847 +r1,22143:20400527,39780954:1413401,530329,115847 +k1,22109:18987126,39780954:-1413401 +) +(1,22109:18987126,39780954:1413401,414482,115847 +k1,22109:18987126,39780954:3277 +h1,22109:20397250,39780954:0,411205,112570 +) +k1,22109:20627500,39780954:226973 +k1,22109:22121940,39780954:226974 +(1,22109:22121940,39780954:0,414482,115847 +r1,22143:23887053,39780954:1765113,530329,115847 +k1,22109:22121940,39780954:-1765113 +) +(1,22109:22121940,39780954:1765113,414482,115847 +k1,22109:22121940,39780954:3277 +h1,22109:23883776,39780954:0,411205,112570 +) +k1,22109:24287697,39780954:226974 +k1,22109:25239498,39780954:226973 +k1,22109:25924569,39780954:226974 +k1,22109:26683040,39780954:226974 +k1,22109:28807280,39780954:226973 +k1,22109:29685682,39780954:226974 +k1,22109:32583029,39780954:0 +) +(1,22110:6764466,40646034:25818563,505283,134348 +k1,22109:8451538,40646034:249867 +k1,22109:9472107,40646034:249866 +k1,22109:12794302,40646034:249867 +k1,22109:14742207,40646034:249867 +k1,22109:15450171,40646034:249867 +k1,22109:16231534,40646034:249866 +k1,22109:19111361,40646034:249867 +k1,22109:20645734,40646034:249867 +k1,22109:22391788,40646034:249867 +k1,22109:23173151,40646034:249866 +k1,22109:24541062,40646034:249867 +k1,22109:25600299,40646034:249867 +k1,22109:27316862,40646034:249867 +k1,22109:29485622,40646034:249866 +k1,22109:30926934,40646034:249867 +k1,22109:32583029,40646034:0 +) +(1,22110:6764466,41511114:25818563,513147,7863 +g1,22109:9627734,41511114 +g1,22109:10494119,41511114 +k1,22110:32583028,41511114:21500396 +g1,22110:32583028,41511114 +) +v1,22112:6764466,42195969:0,393216,0 +(1,22116:6764466,43195083:25818563,1392330,196608 +g1,22116:6764466,43195083 +g1,22116:6764466,43195083 +g1,22116:6567858,43195083 +(1,22116:6567858,43195083:0,1392330,196608 +r1,22143:32779637,43195083:26211779,1588938,196608 +k1,22116:6567857,43195083:-26211780 +) +(1,22116:6567858,43195083:26211779,1392330,196608 +[1,22116:6764466,43195083:25818563,1195722,0 +(1,22114:6764466,42430406:25818563,431045,112852 +(1,22113:6764466,42430406:0,0,0 +g1,22113:6764466,42430406 +g1,22113:6764466,42430406 +g1,22113:6436786,42430406 +(1,22113:6436786,42430406:0,0,0 +) +g1,22113:6764466,42430406 +) +k1,22114:11719161,42430406:639294 +k1,22114:13022362,42430406:639293 +k1,22114:28267628,42430406:639294 +k1,22114:32583029,42430406:0 +) +(1,22114:6764466,43115261:25818563,424439,79822 +g1,22114:8424236,43115261 +g1,22114:9088144,43115261 +h1,22114:10747914,43115261:0,0,0 +k1,22114:32583030,43115261:21835116 +g1,22114:32583030,43115261 +) +] +) +g1,22116:32583029,43195083 +g1,22116:6764466,43195083 +g1,22116:6764466,43195083 +g1,22116:32583029,43195083 +g1,22116:32583029,43195083 +) +h1,22116:6764466,43391691:0,0,0 +] +g1,22143:32583029,43391691 +) +] +(1,22143:32583029,45706769:0,0,0 +g1,22143:32583029,45706769 +) +) +] +(1,22143:6630773,47279633:25952256,0,0 +h1,22143:6630773,47279633:25952256,0,0 ) ] -[1,22055:3078558,4812305:0,0,0 -(1,22055:3078558,2439708:0,1703936,0 -g1,22055:29030814,2439708 -g1,22055:36135244,2439708 -(1,21457:36135244,2439708:1720320,1703936,0 -(1,21457:36135244,2439708:16384,1703936,0 -[1,21457:36135244,2439708:25952256,1703936,0 -(1,21457:36135244,1915420:25952256,1179648,0 -(1,21457:36135244,1915420:16384,1179648,0 -r1,22055:36151628,1915420:16384,1179648,0 +(1,22143:4262630,4025873:0,0,0 +[1,22143:-473656,4025873:0,0,0 +(1,22143:-473656,-710413:0,0,0 +(1,22143:-473656,-710413:0,0,0 +g1,22143:-473656,-710413 ) -k1,21457:62087500,1915420:25935872 -g1,21457:62087500,1915420 +g1,22143:-473656,-710413 ) ] ) -g1,21457:36675916,2439708 -(1,21457:36675916,2439708:1179648,16384,0 -r1,22055:37855564,2439708:1179648,16384,0 +] +!25912 +}381 +Input:3603:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3604:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3605:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3606:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3607:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3608:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3609:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3610:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3611:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3612:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3613:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3614:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3615:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1234 +{382 +[1,22228:4262630,47279633:28320399,43253760,0 +(1,22228:4262630,4025873:0,0,0 +[1,22228:-473656,4025873:0,0,0 +(1,22228:-473656,-710413:0,0,0 +(1,22228:-473656,-644877:0,0,0 +k1,22228:-473656,-644877:-65536 ) +(1,22228:-473656,4736287:0,0,0 +k1,22228:-473656,4736287:5209943 ) -k1,22055:3078556,2439708:-34777008 +g1,22228:-473656,-710413 ) ] -[1,22055:3078558,4812305:0,0,0 -(1,22055:3078558,49800853:0,16384,2228224 -k1,22055:1358238,49800853:-1720320 -(1,21457:1358238,49800853:1720320,16384,2228224 -(1,21457:1358238,49800853:1179648,16384,0 -r1,22055:2537886,49800853:1179648,16384,0 ) -g1,21457:3062174,49800853 -(1,21457:3062174,52029077:16384,1703936,0 -[1,21457:3062174,52029077:25952256,1703936,0 -(1,21457:3062174,51504789:25952256,1179648,0 -(1,21457:3062174,51504789:16384,1179648,0 -r1,22055:3078558,51504789:16384,1179648,0 +[1,22228:6630773,47279633:25952256,43253760,0 +[1,22228:6630773,4812305:25952256,786432,0 +(1,22228:6630773,4812305:25952256,513147,126483 +(1,22228:6630773,4812305:25952256,513147,126483 +g1,22228:3078558,4812305 +[1,22228:3078558,4812305:0,0,0 +(1,22228:3078558,2439708:0,1703936,0 +k1,22228:1358238,2439708:-1720320 +(1,21670:1358238,2439708:1720320,1703936,0 +(1,21670:1358238,2439708:1179648,16384,0 +r1,22228:2537886,2439708:1179648,16384,0 +) +g1,21670:3062174,2439708 +(1,21670:3062174,2439708:16384,1703936,0 +[1,21670:3062174,2439708:25952256,1703936,0 +(1,21670:3062174,1915420:25952256,1179648,0 +(1,21670:3062174,1915420:16384,1179648,0 +r1,22228:3078558,1915420:16384,1179648,0 ) -k1,21457:29014430,51504789:25935872 -g1,21457:29014430,51504789 +k1,21670:29014430,1915420:25935872 +g1,21670:29014430,1915420 ) ] ) ) ) ] -[1,22055:3078558,4812305:0,0,0 -(1,22055:3078558,49800853:0,16384,2228224 -g1,22055:29030814,49800853 -g1,22055:36135244,49800853 -(1,21457:36135244,49800853:1720320,16384,2228224 -(1,21457:36135244,52029077:16384,1703936,0 -[1,21457:36135244,52029077:25952256,1703936,0 -(1,21457:36135244,51504789:25952256,1179648,0 -(1,21457:36135244,51504789:16384,1179648,0 -r1,22055:36151628,51504789:16384,1179648,0 +[1,22228:3078558,4812305:0,0,0 +(1,22228:3078558,2439708:0,1703936,0 +g1,22228:29030814,2439708 +g1,22228:36135244,2439708 +(1,21670:36135244,2439708:1720320,1703936,0 +(1,21670:36135244,2439708:16384,1703936,0 +[1,21670:36135244,2439708:25952256,1703936,0 +(1,21670:36135244,1915420:25952256,1179648,0 +(1,21670:36135244,1915420:16384,1179648,0 +r1,22228:36151628,1915420:16384,1179648,0 ) -k1,21457:62087500,51504789:25935872 -g1,21457:62087500,51504789 +k1,21670:62087500,1915420:25935872 +g1,21670:62087500,1915420 ) ] ) -g1,21457:36675916,49800853 -(1,21457:36675916,49800853:1179648,16384,0 -r1,22055:37855564,49800853:1179648,16384,0 +g1,21670:36675916,2439708 +(1,21670:36675916,2439708:1179648,16384,0 +r1,22228:37855564,2439708:1179648,16384,0 ) ) -k1,22055:3078556,49800853:-34777008 +k1,22228:3078556,2439708:-34777008 ) ] -g1,22055:6630773,4812305 -k1,22055:21078841,4812305:13252691 -g1,22055:22701512,4812305 -g1,22055:23350318,4812305 -g1,22055:24759997,4812305 -g1,22055:28372341,4812305 -g1,22055:30105768,4812305 +[1,22228:3078558,4812305:0,0,0 +(1,22228:3078558,49800853:0,16384,2228224 +k1,22228:1358238,49800853:-1720320 +(1,21670:1358238,49800853:1720320,16384,2228224 +(1,21670:1358238,49800853:1179648,16384,0 +r1,22228:2537886,49800853:1179648,16384,0 ) +g1,21670:3062174,49800853 +(1,21670:3062174,52029077:16384,1703936,0 +[1,21670:3062174,52029077:25952256,1703936,0 +(1,21670:3062174,51504789:25952256,1179648,0 +(1,21670:3062174,51504789:16384,1179648,0 +r1,22228:3078558,51504789:16384,1179648,0 ) -] -[1,22055:6630773,45706769:25952256,40108032,0 -(1,22055:6630773,45706769:25952256,40108032,0 -(1,22055:6630773,45706769:0,0,0 -g1,22055:6630773,45706769 +k1,21670:29014430,51504789:25935872 +g1,21670:29014430,51504789 ) -[1,22055:6630773,45706769:25952256,40108032,0 -v1,21951:6630773,6254097:0,393216,0 -(1,21955:6630773,6575485:25952256,714604,196608 -g1,21955:6630773,6575485 -g1,21955:6630773,6575485 -g1,21955:6434165,6575485 -(1,21955:6434165,6575485:0,714604,196608 -r1,22055:32779637,6575485:26345472,911212,196608 -k1,21955:6434165,6575485:-26345472 +] ) -(1,21955:6434165,6575485:26345472,714604,196608 -[1,21955:6630773,6575485:25952256,517996,0 -(1,21953:6630773,6468007:25952256,410518,107478 -(1,21952:6630773,6468007:0,0,0 -g1,21952:6630773,6468007 -g1,21952:6630773,6468007 -g1,21952:6303093,6468007 -(1,21952:6303093,6468007:0,0,0 -) -g1,21952:6630773,6468007 -) -g1,21953:11056813,6468007 -g1,21953:12005251,6468007 -g1,21953:24967224,6468007 -g1,21953:30341701,6468007 -g1,21953:30973993,6468007 -h1,21953:32554722,6468007:0,0,0 -k1,21953:32583029,6468007:28307 -g1,21953:32583029,6468007 -) -] -) -g1,21955:32583029,6575485 -g1,21955:6630773,6575485 -g1,21955:6630773,6575485 -g1,21955:32583029,6575485 -g1,21955:32583029,6575485 -) -h1,21955:6630773,6772093:0,0,0 -(1,21959:6630773,8137869:25952256,513147,134348 -h1,21958:6630773,8137869:983040,0,0 -k1,21958:9694725,8137869:289158 -(1,21958:9694725,8137869:0,452978,115847 -r1,22055:12514974,8137869:2820249,568825,115847 -k1,21958:9694725,8137869:-2820249 -) -(1,21958:9694725,8137869:2820249,452978,115847 -k1,21958:9694725,8137869:3277 -h1,21958:12511697,8137869:0,411205,112570 -) -k1,21958:12804132,8137869:289158 -k1,21958:13961642,8137869:289158 -k1,21958:15355081,8137869:289157 -k1,21958:17294436,8137869:289158 -k1,21958:19680091,8137869:289158 -k1,21958:20994232,8137869:289158 -k1,21958:22567896,8137869:289158 -k1,21958:23876139,8137869:289158 -k1,21958:26009479,8137869:289157 -k1,21958:26957929,8137869:289158 -k1,21958:28266172,8137869:289158 -k1,21958:32583029,8137869:0 -) -(1,21959:6630773,8979357:25952256,513147,134348 -g1,21958:9180123,8979357 -g1,21958:11273342,8979357 -g1,21958:13264981,8979357 -g1,21958:15835958,8979357 -g1,21958:18354506,8979357 -k1,21959:32583029,8979357:11936729 -g1,21959:32583029,8979357 -) -v1,21961:6630773,10169823:0,393216,0 -(1,21982:6630773,16433720:25952256,6657113,196608 -g1,21982:6630773,16433720 -g1,21982:6630773,16433720 -g1,21982:6434165,16433720 -(1,21982:6434165,16433720:0,6657113,196608 -r1,22055:32779637,16433720:26345472,6853721,196608 -k1,21982:6434165,16433720:-26345472 -) -(1,21982:6434165,16433720:26345472,6657113,196608 -[1,21982:6630773,16433720:25952256,6460505,0 -(1,21963:6630773,10383733:25952256,410518,101187 -(1,21962:6630773,10383733:0,0,0 -g1,21962:6630773,10383733 -g1,21962:6630773,10383733 -g1,21962:6303093,10383733 -(1,21962:6303093,10383733:0,0,0 -) -g1,21962:6630773,10383733 -) -k1,21963:6630773,10383733:0 -g1,21963:13585979,10383733 -h1,21963:15482853,10383733:0,0,0 -k1,21963:32583029,10383733:17100176 -g1,21963:32583029,10383733 -) -(1,21968:6630773,11049911:25952256,404226,9436 -(1,21965:6630773,11049911:0,0,0 -g1,21965:6630773,11049911 -g1,21965:6630773,11049911 -g1,21965:6303093,11049911 -(1,21965:6303093,11049911:0,0,0 -) -g1,21965:6630773,11049911 -) -g1,21968:7579210,11049911 -g1,21968:7895356,11049911 -g1,21968:8211502,11049911 -g1,21968:8527648,11049911 -g1,21968:8843794,11049911 -g1,21968:9159940,11049911 -g1,21968:10740669,11049911 -g1,21968:11056815,11049911 -g1,21968:11372961,11049911 -g1,21968:11689107,11049911 -g1,21968:12005253,11049911 -g1,21968:12321399,11049911 -g1,21968:13902128,11049911 -g1,21968:14218274,11049911 -g1,21968:14534420,11049911 -g1,21968:14850566,11049911 -g1,21968:15166712,11049911 -g1,21968:15482858,11049911 -g1,21968:17063587,11049911 -g1,21968:17379733,11049911 -g1,21968:17695879,11049911 -g1,21968:18012025,11049911 -g1,21968:18328171,11049911 -g1,21968:18644317,11049911 -h1,21968:19908900,11049911:0,0,0 -k1,21968:32583029,11049911:12674129 -g1,21968:32583029,11049911 -) -(1,21968:6630773,11716089:25952256,410518,107478 -h1,21968:6630773,11716089:0,0,0 -g1,21968:7579210,11716089 -g1,21968:10740667,11716089 -g1,21968:13902124,11716089 -g1,21968:17063581,11716089 -g1,21968:17379727,11716089 -h1,21968:19908892,11716089:0,0,0 -k1,21968:32583029,11716089:12674137 -g1,21968:32583029,11716089 -) -(1,21970:6630773,13037627:25952256,410518,76021 -(1,21969:6630773,13037627:0,0,0 -g1,21969:6630773,13037627 -g1,21969:6630773,13037627 -g1,21969:6303093,13037627 -(1,21969:6303093,13037627:0,0,0 -) -g1,21969:6630773,13037627 -) -h1,21970:13902123,13037627:0,0,0 -k1,21970:32583029,13037627:18680906 -g1,21970:32583029,13037627 -) -(1,21975:6630773,13703805:25952256,404226,76021 -(1,21972:6630773,13703805:0,0,0 -g1,21972:6630773,13703805 -g1,21972:6630773,13703805 -g1,21972:6303093,13703805 -(1,21972:6303093,13703805:0,0,0 -) -g1,21972:6630773,13703805 -) -g1,21975:7579210,13703805 -g1,21975:8843793,13703805 -g1,21975:9159939,13703805 -g1,21975:9476085,13703805 -g1,21975:10740668,13703805 -g1,21975:11056814,13703805 -g1,21975:11372960,13703805 -g1,21975:12005252,13703805 -h1,21975:12321398,13703805:0,0,0 -k1,21975:32583030,13703805:20261632 -g1,21975:32583030,13703805 -) -(1,21975:6630773,14369983:25952256,404226,7863 -h1,21975:6630773,14369983:0,0,0 -g1,21975:7579210,14369983 -g1,21975:10108376,14369983 -g1,21975:10424522,14369983 -g1,21975:10740668,14369983 -g1,21975:12005251,14369983 -g1,21975:12321397,14369983 -g1,21975:12637543,14369983 -g1,21975:13269835,14369983 -h1,21975:13585981,14369983:0,0,0 -k1,21975:32583029,14369983:18997048 -g1,21975:32583029,14369983 -) -(1,21977:6630773,15691521:25952256,410518,76021 -(1,21976:6630773,15691521:0,0,0 -g1,21976:6630773,15691521 -g1,21976:6630773,15691521 -g1,21976:6303093,15691521 -(1,21976:6303093,15691521:0,0,0 -) -g1,21976:6630773,15691521 -) -k1,21977:6630773,15691521:0 -h1,21977:16431289,15691521:0,0,0 -k1,21977:32583029,15691521:16151740 -g1,21977:32583029,15691521 -) -(1,21981:6630773,16357699:25952256,404226,76021 -(1,21979:6630773,16357699:0,0,0 -g1,21979:6630773,16357699 -g1,21979:6630773,16357699 -g1,21979:6303093,16357699 -(1,21979:6303093,16357699:0,0,0 -) -g1,21979:6630773,16357699 -) -g1,21981:7579210,16357699 -g1,21981:8843793,16357699 -g1,21981:9476085,16357699 -g1,21981:9792231,16357699 -g1,21981:11372960,16357699 -g1,21981:12005252,16357699 -g1,21981:12321398,16357699 -g1,21981:12953690,16357699 -h1,21981:13585981,16357699:0,0,0 -k1,21981:32583029,16357699:18997048 -g1,21981:32583029,16357699 -) -] -) -g1,21982:32583029,16433720 -g1,21982:6630773,16433720 -g1,21982:6630773,16433720 -g1,21982:32583029,16433720 -g1,21982:32583029,16433720 -) -h1,21982:6630773,16630328:0,0,0 -(1,21986:6630773,17996104:25952256,513147,134348 -h1,21985:6630773,17996104:983040,0,0 -k1,21985:8567198,17996104:193167 -k1,21985:11199615,17996104:193167 -k1,21985:13775672,17996104:193168 -k1,21985:16037155,17996104:193167 -k1,21985:17221882,17996104:193167 -k1,21985:20333367,17996104:193167 -k1,21985:21598704,17996104:193168 -k1,21985:23685861,17996104:193167 -k1,21985:25671438,17996104:193167 -k1,21985:26856165,17996104:193167 -k1,21985:28289274,17996104:193168 -k1,21985:29242659,17996104:193167 -k1,21985:32583029,17996104:0 -) -(1,21986:6630773,18837592:25952256,505283,134348 -k1,21985:7826846,18837592:176988 -k1,21985:12829905,18837592:176988 -k1,21985:14400844,18837592:176988 -(1,21985:14400844,18837592:0,452978,115847 -r1,22055:19331364,18837592:4930520,568825,115847 -k1,21985:14400844,18837592:-4930520 -) -(1,21985:14400844,18837592:4930520,452978,115847 -k1,21985:14400844,18837592:3277 -h1,21985:19328087,18837592:0,411205,112570 -) -k1,21985:19508352,18837592:176988 -k1,21985:20553691,18837592:176987 -k1,21985:23403893,18837592:176988 -k1,21985:24865387,18837592:176988 -k1,21985:25803903,18837592:176988 -k1,21985:28408345,18837592:176988 -k1,21985:29356036,18837592:176988 -k1,21985:32583029,18837592:0 -) -(1,21986:6630773,19679080:25952256,513147,134348 -k1,21985:9964690,19679080:261589 -k1,21985:11094631,19679080:261589 -k1,21985:12460503,19679080:261590 -k1,21985:14962768,19679080:261589 -k1,21985:16427598,19679080:261589 -k1,21985:18954767,19679080:261589 -k1,21985:20407802,19679080:261590 -k1,21985:22693143,19679080:261589 -k1,21985:23973817,19679080:261589 -k1,21985:25624769,19679080:261589 -k1,21985:27298660,19679080:261590 -k1,21985:28246411,19679080:261589 -k1,21985:31037690,19679080:261589 -k1,21985:32583029,19679080:0 -) -(1,21986:6630773,20520568:25952256,513147,134348 -g1,21985:8542458,20520568 -g1,21985:9760772,20520568 -g1,21985:12225581,20520568 -g1,21985:13525815,20520568 -g1,21985:15234994,20520568 -g1,21985:17669656,20520568 -g1,21985:18593713,20520568 -g1,21985:20077448,20520568 -g1,21985:21038205,20520568 -g1,21985:23503014,20520568 -g1,21985:25091606,20520568 -g1,21985:27992884,20520568 -g1,21985:28723610,20520568 -k1,21986:32583029,20520568:96997 -g1,21986:32583029,20520568 -) -v1,21988:6630773,21711034:0,393216,0 -(1,22011:6630773,29307287:25952256,7989469,196608 -g1,22011:6630773,29307287 -g1,22011:6630773,29307287 -g1,22011:6434165,29307287 -(1,22011:6434165,29307287:0,7989469,196608 -r1,22055:32779637,29307287:26345472,8186077,196608 -k1,22011:6434165,29307287:-26345472 -) -(1,22011:6434165,29307287:26345472,7989469,196608 -[1,22011:6630773,29307287:25952256,7792861,0 -(1,21990:6630773,21924944:25952256,410518,107478 -(1,21989:6630773,21924944:0,0,0 -g1,21989:6630773,21924944 -g1,21989:6630773,21924944 -g1,21989:6303093,21924944 -(1,21989:6303093,21924944:0,0,0 -) -g1,21989:6630773,21924944 -) -g1,21990:11056813,21924944 -g1,21990:12005251,21924944 -k1,21990:12005251,21924944:0 -h1,21990:24651078,21924944:0,0,0 -k1,21990:32583029,21924944:7931951 -g1,21990:32583029,21924944 -) -(1,21991:6630773,22591122:25952256,404226,107478 -h1,21991:6630773,22591122:0,0,0 -g1,21991:6946919,22591122 -g1,21991:7263065,22591122 -g1,21991:7579211,22591122 -g1,21991:7895357,22591122 -g1,21991:8211503,22591122 -g1,21991:8527649,22591122 -g1,21991:8843795,22591122 -g1,21991:9159941,22591122 -g1,21991:9476087,22591122 -g1,21991:9792233,22591122 -g1,21991:10108379,22591122 -g1,21991:10424525,22591122 -g1,21991:10740671,22591122 -g1,21991:11056817,22591122 -g1,21991:11372963,22591122 -g1,21991:11689109,22591122 -g1,21991:12005255,22591122 -g1,21991:12321401,22591122 -g1,21991:12637547,22591122 -g1,21991:12953693,22591122 -g1,21991:13269839,22591122 -g1,21991:13585985,22591122 -g1,21991:13902131,22591122 -g1,21991:14218277,22591122 -g1,21991:14534423,22591122 -g1,21991:14850569,22591122 -g1,21991:20225046,22591122 -g1,21991:20857338,22591122 -g1,21991:22754213,22591122 -g1,21991:26547961,22591122 -g1,21991:27180253,22591122 -h1,21991:28760982,22591122:0,0,0 -k1,21991:32583029,22591122:3822047 -g1,21991:32583029,22591122 -) -(1,21992:6630773,23257300:25952256,410518,101187 -h1,21992:6630773,23257300:0,0,0 -g1,21992:13585979,23257300 -h1,21992:15482853,23257300:0,0,0 -k1,21992:32583029,23257300:17100176 -g1,21992:32583029,23257300 -) -(1,21997:6630773,23923478:25952256,404226,9436 -(1,21994:6630773,23923478:0,0,0 -g1,21994:6630773,23923478 -g1,21994:6630773,23923478 -g1,21994:6303093,23923478 -(1,21994:6303093,23923478:0,0,0 -) -g1,21994:6630773,23923478 -) -g1,21997:7579210,23923478 -g1,21997:7895356,23923478 -g1,21997:8211502,23923478 -g1,21997:8527648,23923478 -g1,21997:8843794,23923478 -g1,21997:9159940,23923478 -g1,21997:10740669,23923478 -g1,21997:11056815,23923478 -g1,21997:11372961,23923478 -g1,21997:11689107,23923478 -g1,21997:12005253,23923478 -g1,21997:12321399,23923478 -g1,21997:13902128,23923478 -g1,21997:14218274,23923478 -g1,21997:14534420,23923478 -g1,21997:14850566,23923478 -g1,21997:15166712,23923478 -g1,21997:15482858,23923478 -g1,21997:17063587,23923478 -g1,21997:17379733,23923478 -g1,21997:17695879,23923478 -g1,21997:18012025,23923478 -g1,21997:18328171,23923478 -g1,21997:18644317,23923478 -h1,21997:19908900,23923478:0,0,0 -k1,21997:32583029,23923478:12674129 -g1,21997:32583029,23923478 -) -(1,21997:6630773,24589656:25952256,410518,107478 -h1,21997:6630773,24589656:0,0,0 -g1,21997:7579210,24589656 -g1,21997:10740667,24589656 -g1,21997:13902124,24589656 -g1,21997:17063581,24589656 -g1,21997:17379727,24589656 -h1,21997:19908892,24589656:0,0,0 -k1,21997:32583029,24589656:12674137 -g1,21997:32583029,24589656 -) -(1,21999:6630773,25911194:25952256,410518,76021 -(1,21998:6630773,25911194:0,0,0 -g1,21998:6630773,25911194 -g1,21998:6630773,25911194 -g1,21998:6303093,25911194 -(1,21998:6303093,25911194:0,0,0 -) -g1,21998:6630773,25911194 -) -h1,21999:13902123,25911194:0,0,0 -k1,21999:32583029,25911194:18680906 -g1,21999:32583029,25911194 -) -(1,22004:6630773,26577372:25952256,404226,76021 -(1,22001:6630773,26577372:0,0,0 -g1,22001:6630773,26577372 -g1,22001:6630773,26577372 -g1,22001:6303093,26577372 -(1,22001:6303093,26577372:0,0,0 -) -g1,22001:6630773,26577372 -) -g1,22004:7579210,26577372 -g1,22004:8843793,26577372 -g1,22004:10108376,26577372 -g1,22004:10740668,26577372 -h1,22004:11056814,26577372:0,0,0 -k1,22004:32583030,26577372:21526216 -g1,22004:32583030,26577372 -) -(1,22004:6630773,27243550:25952256,404226,7863 -h1,22004:6630773,27243550:0,0,0 -g1,22004:7579210,27243550 -g1,22004:10108376,27243550 -g1,22004:11372959,27243550 -g1,22004:12005251,27243550 -h1,22004:12321397,27243550:0,0,0 -k1,22004:32583029,27243550:20261632 -g1,22004:32583029,27243550 -) -(1,22006:6630773,28565088:25952256,410518,76021 -(1,22005:6630773,28565088:0,0,0 -g1,22005:6630773,28565088 -g1,22005:6630773,28565088 -g1,22005:6303093,28565088 -(1,22005:6303093,28565088:0,0,0 -) -g1,22005:6630773,28565088 -) -k1,22006:6630773,28565088:0 -h1,22006:16431289,28565088:0,0,0 -k1,22006:32583029,28565088:16151740 -g1,22006:32583029,28565088 -) -(1,22010:6630773,29231266:25952256,404226,76021 -(1,22008:6630773,29231266:0,0,0 -g1,22008:6630773,29231266 -g1,22008:6630773,29231266 -g1,22008:6303093,29231266 -(1,22008:6303093,29231266:0,0,0 -) -g1,22008:6630773,29231266 -) -g1,22010:7579210,29231266 -g1,22010:8843793,29231266 -g1,22010:10740667,29231266 -g1,22010:11689104,29231266 -h1,22010:12321395,29231266:0,0,0 -k1,22010:32583029,29231266:20261634 -g1,22010:32583029,29231266 -) -] -) -g1,22011:32583029,29307287 -g1,22011:6630773,29307287 -g1,22011:6630773,29307287 -g1,22011:32583029,29307287 -g1,22011:32583029,29307287 -) -h1,22011:6630773,29503895:0,0,0 -(1,22015:6630773,30869671:25952256,513147,134348 -h1,22014:6630773,30869671:983040,0,0 -k1,22014:10388804,30869671:208601 -k1,22014:12615914,30869671:208601 -k1,22014:14015959,30869671:208600 -k1,22014:17948316,30869671:208601 -k1,22014:20846515,30869671:208601 -k1,22014:22046676,30869671:208601 -k1,22014:24705013,30869671:208601 -k1,22014:25861264,30869671:208600 -k1,22014:28501906,30869671:208601 -k1,22014:30398714,30869671:208601 -k1,22014:32583029,30869671:0 -) -(1,22015:6630773,31711159:25952256,505283,134348 -k1,22014:7395326,31711159:136718 -k1,22014:12893544,31711159:136718 -k1,22014:15375796,31711159:136718 -k1,22014:16531600,31711159:136719 -k1,22014:19152133,31711159:136718 -k1,22014:20945601,31711159:136718 -k1,22014:21613816,31711159:136718 -k1,22014:22106394,31711159:136718 -k1,22014:24104990,31711159:136718 -k1,22014:25931227,31711159:136719 -k1,22014:26683983,31711159:136718 -k1,22014:28572478,31711159:136718 -k1,22014:30411166,31711159:136718 -k1,22014:32583029,31711159:0 -) -(1,22015:6630773,32552647:25952256,513147,134348 -k1,22014:7323744,32552647:234874 -k1,22014:8090114,32552647:234873 -k1,22014:8680848,32552647:234874 -k1,22014:11413299,32552647:234874 -k1,22014:12125929,32552647:234873 -k1,22014:12716663,32552647:234874 -k1,22014:15275444,32552647:234874 -k1,22014:16041814,32552647:234873 -k1,22014:17789914,32552647:234874 -k1,22014:18710950,32552647:234874 -k1,22014:21429638,32552647:234873 -k1,22014:24130632,32552647:234874 -k1,22014:25233858,32552647:234874 -k1,22014:26573013,32552647:234873 -k1,22014:27617257,32552647:234874 -k1,22014:29876538,32552647:234874 -k1,22014:31203896,32552647:234873 -k1,22014:31896867,32552647:234874 -k1,22014:32583029,32552647:0 -) -(1,22015:6630773,33394135:25952256,513147,126483 -k1,22014:8215258,33394135:180704 -k1,22014:11434212,33394135:180705 -k1,22014:12806361,33394135:180704 -k1,22014:13518563,33394135:180705 -k1,22014:15986474,33394135:180704 -k1,22014:19797874,33394135:180705 -k1,22014:20740106,33394135:180704 -k1,22014:21276671,33394135:180705 -k1,22014:24698786,33394135:180704 -h1,22014:24905880,33394135:0,0,0 -k1,22014:25862531,33394135:180705 -k1,22014:26671070,33394135:180704 -k1,22014:28345341,33394135:180705 -k1,22014:28881905,33394135:180704 -k1,22014:30429691,33394135:180705 -k1,22014:31478747,33394135:180704 -k1,22014:32583029,33394135:0 -) -(1,22015:6630773,34235623:25952256,505283,126483 -k1,22014:8011149,34235623:287891 -(1,22014:8011149,34235623:0,452978,115847 -r1,22055:11886533,34235623:3875384,568825,115847 -k1,22014:8011149,34235623:-3875384 -) -(1,22014:8011149,34235623:3875384,452978,115847 -k1,22014:8011149,34235623:3277 -h1,22014:11883256,34235623:0,411205,112570 -) -k1,22014:12174423,34235623:287890 -k1,22014:13653759,34235623:287891 -(1,22014:13653759,34235623:0,452978,115847 -r1,22055:17880855,34235623:4227096,568825,115847 -k1,22014:13653759,34235623:-4227096 -) -(1,22014:13653759,34235623:4227096,452978,115847 -k1,22014:13653759,34235623:3277 -h1,22014:17877578,34235623:0,411205,112570 -) -k1,22014:18342416,34235623:287891 -k1,22014:22823955,34235623:287890 -k1,22014:26722880,34235623:287891 -(1,22014:26722880,34235623:0,452978,115847 -r1,22055:27784569,34235623:1061689,568825,115847 -k1,22014:26722880,34235623:-1061689 -) -(1,22014:26722880,34235623:1061689,452978,115847 -k1,22014:26722880,34235623:3277 -h1,22014:27781292,34235623:0,411205,112570 -) -k1,22014:28072460,34235623:287891 -k1,22014:29551795,34235623:287890 -(1,22014:29551795,34235623:0,414482,115847 -r1,22055:30613484,34235623:1061689,530329,115847 -k1,22014:29551795,34235623:-1061689 -) -(1,22014:29551795,34235623:1061689,414482,115847 -k1,22014:29551795,34235623:3277 -h1,22014:30610207,34235623:0,411205,112570 -) -k1,22014:30901375,34235623:287891 -k1,22014:32583029,34235623:0 -) -(1,22015:6630773,35077111:25952256,505283,134348 -k1,22014:9028209,35077111:215742 -k1,22014:10883006,35077111:215742 -k1,22014:11750176,35077111:215742 -k1,22014:14762339,35077111:215742 -k1,22014:18456732,35077111:215742 -k1,22014:21462342,35077111:215742 -(1,22014:21462342,35077111:0,452978,115847 -r1,22055:25689438,35077111:4227096,568825,115847 -k1,22014:21462342,35077111:-4227096 -) -(1,22014:21462342,35077111:4227096,452978,115847 -k1,22014:21462342,35077111:3277 -h1,22014:25686161,35077111:0,411205,112570 -) -k1,22014:25905180,35077111:215742 -k1,22014:27613832,35077111:215742 -k1,22014:28848659,35077111:215742 -k1,22014:30986572,35077111:215742 -k1,22014:32583029,35077111:0 -) -(1,22015:6630773,35918599:25952256,513147,134348 -k1,22014:7981705,35918599:159487 -k1,22014:11166989,35918599:159487 -k1,22014:12472702,35918599:159488 -(1,22014:12472702,35918599:0,452978,115847 -r1,22055:15996374,35918599:3523672,568825,115847 -k1,22014:12472702,35918599:-3523672 -) -(1,22014:12472702,35918599:3523672,452978,115847 -k1,22014:12472702,35918599:3277 -h1,22014:15993097,35918599:0,411205,112570 -) -k1,22014:16155861,35918599:159487 -k1,22014:17690949,35918599:159487 -k1,22014:19593694,35918599:159487 -k1,22014:20369220,35918599:159488 -k1,22014:21547792,35918599:159487 -k1,22014:23972859,35918599:159487 -k1,22014:27534975,35918599:159487 -k1,22014:28642114,35918599:159488 -k1,22014:29820686,35918599:159487 -k1,22014:32583029,35918599:0 -) -(1,22015:6630773,36760087:25952256,513147,126483 -k1,22014:10578421,36760087:162944 -k1,22014:11501583,36760087:162944 -k1,22014:14103777,36760087:162944 -(1,22014:14103777,36760087:0,452978,115847 -r1,22055:18330873,36760087:4227096,568825,115847 -k1,22014:14103777,36760087:-4227096 -) -(1,22014:14103777,36760087:4227096,452978,115847 -k1,22014:14103777,36760087:3277 -h1,22014:18327596,36760087:0,411205,112570 -) -k1,22014:18493817,36760087:162944 -k1,22014:21058000,36760087:162944 -k1,22014:22955027,36760087:162944 -k1,22014:23769399,36760087:162944 -k1,22014:24680109,36760087:162944 -k1,22014:27966499,36760087:162944 -k1,22014:28890971,36760087:162944 -k1,22014:30795207,36760087:162944 -k1,22014:32583029,36760087:0 -) -(1,22015:6630773,37601575:25952256,505283,134348 -k1,22014:8238917,37601575:244340 -k1,22014:9166142,37601575:244340 -k1,22014:11060679,37601575:244340 -k1,22014:13596813,37601575:244340 -k1,22014:15358311,37601575:244340 -k1,22014:16885846,37601575:244340 -k1,22014:18802665,37601575:244340 -k1,22014:19729890,37601575:244340 -k1,22014:22518993,37601575:244340 -k1,22014:25154742,37601575:244340 -k1,22014:27620097,37601575:244340 -k1,22014:29258388,37601575:244340 -k1,22014:32583029,37601575:0 -) -(1,22015:6630773,38443063:25952256,513147,126483 -g1,22014:8948126,38443063 -g1,22014:10677621,38443063 -g1,22014:11528278,38443063 -g1,22014:12475273,38443063 -g1,22014:14913212,38443063 -g1,22014:15728479,38443063 -g1,22014:16946793,38443063 -g1,22014:18129062,38443063 -g1,22014:19014453,38443063 -g1,22014:21289207,38443063 -k1,22015:32583029,38443063:9251720 -g1,22015:32583029,38443063 -) -v1,22017:6630773,39633529:0,393216,0 -(1,22023:6630773,41182939:25952256,1942626,196608 -g1,22023:6630773,41182939 -g1,22023:6630773,41182939 -g1,22023:6434165,41182939 -(1,22023:6434165,41182939:0,1942626,196608 -r1,22055:32779637,41182939:26345472,2139234,196608 -k1,22023:6434165,41182939:-26345472 -) -(1,22023:6434165,41182939:26345472,1942626,196608 -[1,22023:6630773,41182939:25952256,1746018,0 -(1,22022:6630773,39841147:25952256,404226,9436 -(1,22018:6630773,39841147:0,0,0 -g1,22018:6630773,39841147 -g1,22018:6630773,39841147 -g1,22018:6303093,39841147 -(1,22018:6303093,39841147:0,0,0 -) -g1,22018:6630773,39841147 -) -g1,22022:8211502,39841147 -g1,22022:9792231,39841147 -g1,22022:11372960,39841147 -h1,22022:12637543,39841147:0,0,0 -k1,22022:32583029,39841147:19945486 -g1,22022:32583029,39841147 -) -(1,22022:6630773,40507325:25952256,388497,9436 -h1,22022:6630773,40507325:0,0,0 -g1,22022:6946919,40507325 -g1,22022:8211502,40507325 -g1,22022:9792231,40507325 -g1,22022:10108377,40507325 -g1,22022:11372960,40507325 -h1,22022:12321397,40507325:0,0,0 -k1,22022:32583029,40507325:20261632 -g1,22022:32583029,40507325 -) -(1,22022:6630773,41173503:25952256,404226,9436 -h1,22022:6630773,41173503:0,0,0 -g1,22022:8211502,41173503 -g1,22022:9792231,41173503 -g1,22022:10108377,41173503 -g1,22022:10424523,41173503 -g1,22022:11372960,41173503 -g1,22022:12321397,41173503 -h1,22022:12953688,41173503:0,0,0 -k1,22022:32583028,41173503:19629340 -g1,22022:32583028,41173503 -) -] -) -g1,22023:32583029,41182939 -g1,22023:6630773,41182939 -g1,22023:6630773,41182939 -g1,22023:32583029,41182939 -g1,22023:32583029,41182939 -) -h1,22023:6630773,41379547:0,0,0 -v1,22027:6630773,43094301:0,393216,0 -(1,22031:6630773,43415689:25952256,714604,196608 -g1,22031:6630773,43415689 -g1,22031:6630773,43415689 -g1,22031:6434165,43415689 -(1,22031:6434165,43415689:0,714604,196608 -r1,22055:32779637,43415689:26345472,911212,196608 -k1,22031:6434165,43415689:-26345472 -) -(1,22031:6434165,43415689:26345472,714604,196608 -[1,22031:6630773,43415689:25952256,517996,0 -(1,22029:6630773,43308211:25952256,410518,107478 -(1,22028:6630773,43308211:0,0,0 -g1,22028:6630773,43308211 -g1,22028:6630773,43308211 -g1,22028:6303093,43308211 -(1,22028:6303093,43308211:0,0,0 -) -g1,22028:6630773,43308211 -) -g1,22029:11056813,43308211 -g1,22029:12005251,43308211 -g1,22029:24651079,43308211 -g1,22029:26864099,43308211 -g1,22029:27496391,43308211 -h1,22029:29077120,43308211:0,0,0 -k1,22029:32583029,43308211:3505909 -g1,22029:32583029,43308211 -) -] -) -g1,22031:32583029,43415689 -g1,22031:6630773,43415689 -g1,22031:6630773,43415689 -g1,22031:32583029,43415689 -g1,22031:32583029,43415689 -) -h1,22031:6630773,43612297:0,0,0 -v1,22035:6630773,45327051:0,393216,0 -] -(1,22055:32583029,45706769:0,0,0 -g1,22055:32583029,45706769 -) -) -] -(1,22055:6630773,47279633:25952256,0,0 -h1,22055:6630773,47279633:25952256,0,0 -) -] -(1,22055:4262630,4025873:0,0,0 -[1,22055:-473656,4025873:0,0,0 -(1,22055:-473656,-710413:0,0,0 -(1,22055:-473656,-710413:0,0,0 -g1,22055:-473656,-710413 ) -g1,22055:-473656,-710413 ) ] +[1,22228:3078558,4812305:0,0,0 +(1,22228:3078558,49800853:0,16384,2228224 +g1,22228:29030814,49800853 +g1,22228:36135244,49800853 +(1,21670:36135244,49800853:1720320,16384,2228224 +(1,21670:36135244,52029077:16384,1703936,0 +[1,21670:36135244,52029077:25952256,1703936,0 +(1,21670:36135244,51504789:25952256,1179648,0 +(1,21670:36135244,51504789:16384,1179648,0 +r1,22228:36151628,51504789:16384,1179648,0 +) +k1,21670:62087500,51504789:25935872 +g1,21670:62087500,51504789 +) +] +) +g1,21670:36675916,49800853 +(1,21670:36675916,49800853:1179648,16384,0 +r1,22228:37855564,49800853:1179648,16384,0 +) +) +k1,22228:3078556,49800853:-34777008 +) +] +g1,22228:6630773,4812305 +g1,22228:6630773,4812305 +g1,22228:9744388,4812305 +g1,22228:11175694,4812305 +k1,22228:31387652,4812305:20211958 +) +) +] +[1,22228:6630773,45706769:25952256,40108032,0 +(1,22228:6630773,45706769:25952256,40108032,0 +(1,22228:6630773,45706769:0,0,0 +g1,22228:6630773,45706769 +) +[1,22228:6630773,45706769:25952256,40108032,0 +v1,22143:6630773,6254097:0,393216,0 +(1,22143:6630773,12214309:25952256,6353428,0 +g1,22143:6630773,12214309 +g1,22143:6237557,12214309 +r1,22228:6368629,12214309:131072,6353428,0 +g1,22143:6567858,12214309 +g1,22143:6764466,12214309 +[1,22143:6764466,12214309:25818563,6353428,0 +v1,22120:6764466,6254097:0,393216,0 +(1,22141:6764466,12017701:25818563,6156820,196608 +g1,22141:6764466,12017701 +g1,22141:6764466,12017701 +g1,22141:6567858,12017701 +(1,22141:6567858,12017701:0,6156820,196608 +r1,22228:32779637,12017701:26211779,6353428,196608 +k1,22141:6567857,12017701:-26211780 +) +(1,22141:6567858,12017701:26211779,6156820,196608 +[1,22141:6764466,12017701:25818563,5960212,0 +(1,22122:6764466,6488534:25818563,431045,106246 +(1,22121:6764466,6488534:0,0,0 +g1,22121:6764466,6488534 +g1,22121:6764466,6488534 +g1,22121:6436786,6488534 +(1,22121:6436786,6488534:0,0,0 +) +g1,22121:6764466,6488534 +) +k1,22122:6764466,6488534:0 +g1,22122:14067453,6488534 +h1,22122:16059177,6488534:0,0,0 +k1,22122:32583029,6488534:16523852 +g1,22122:32583029,6488534 +) +(1,22127:6764466,7304461:25818563,424439,9908 +(1,22124:6764466,7304461:0,0,0 +g1,22124:6764466,7304461 +g1,22124:6764466,7304461 +g1,22124:6436786,7304461 +(1,22124:6436786,7304461:0,0,0 +) +g1,22124:6764466,7304461 +) +g1,22127:7760328,7304461 +g1,22127:8092282,7304461 +g1,22127:8424236,7304461 +g1,22127:8756190,7304461 +g1,22127:9088144,7304461 +g1,22127:9420098,7304461 +g1,22127:11079868,7304461 +g1,22127:11411822,7304461 +g1,22127:11743776,7304461 +g1,22127:12075730,7304461 +g1,22127:12407684,7304461 +g1,22127:12739638,7304461 +g1,22127:14399408,7304461 +g1,22127:14731362,7304461 +g1,22127:15063316,7304461 +g1,22127:15395270,7304461 +g1,22127:15727224,7304461 +g1,22127:16059178,7304461 +g1,22127:17718948,7304461 +g1,22127:18050902,7304461 +g1,22127:18382856,7304461 +g1,22127:18714810,7304461 +g1,22127:19046764,7304461 +g1,22127:19378718,7304461 +h1,22127:20706534,7304461:0,0,0 +k1,22127:32583029,7304461:11876495 +g1,22127:32583029,7304461 +) +(1,22127:6764466,7989316:25818563,431045,112852 +h1,22127:6764466,7989316:0,0,0 +g1,22127:7760328,7989316 +g1,22127:11079867,7989316 +g1,22127:14399406,7989316 +g1,22127:17718945,7989316 +g1,22127:18050899,7989316 +h1,22127:20706530,7989316:0,0,0 +k1,22127:32583029,7989316:11876499 +g1,22127:32583029,7989316 +) +(1,22129:6764466,8805243:25818563,431045,79822 +(1,22128:6764466,8805243:0,0,0 +g1,22128:6764466,8805243 +g1,22128:6764466,8805243 +g1,22128:6436786,8805243 +(1,22128:6436786,8805243:0,0,0 +) +g1,22128:6764466,8805243 +) +h1,22129:14399407,8805243:0,0,0 +k1,22129:32583029,8805243:18183622 +g1,22129:32583029,8805243 +) +(1,22134:6764466,9621170:25818563,424439,79822 +(1,22131:6764466,9621170:0,0,0 +g1,22131:6764466,9621170 +g1,22131:6764466,9621170 +g1,22131:6436786,9621170 +(1,22131:6436786,9621170:0,0,0 +) +g1,22131:6764466,9621170 +) +g1,22134:7760328,9621170 +g1,22134:9088144,9621170 +g1,22134:10415960,9621170 +g1,22134:11079868,9621170 +h1,22134:11411822,9621170:0,0,0 +k1,22134:32583030,9621170:21171208 +g1,22134:32583030,9621170 +) +(1,22134:6764466,10306025:25818563,424439,8257 +h1,22134:6764466,10306025:0,0,0 +g1,22134:7760328,10306025 +g1,22134:10415960,10306025 +g1,22134:11743776,10306025 +g1,22134:12407684,10306025 +h1,22134:12739638,10306025:0,0,0 +k1,22134:32583030,10306025:19843392 +g1,22134:32583030,10306025 +) +(1,22136:6764466,11121952:25818563,431045,79822 +(1,22135:6764466,11121952:0,0,0 +g1,22135:6764466,11121952 +g1,22135:6764466,11121952 +g1,22135:6436786,11121952 +(1,22135:6436786,11121952:0,0,0 +) +g1,22135:6764466,11121952 +) +k1,22136:6764466,11121952:0 +h1,22136:17055039,11121952:0,0,0 +k1,22136:32583029,11121952:15527990 +g1,22136:32583029,11121952 +) +(1,22140:6764466,11937879:25818563,424439,79822 +(1,22138:6764466,11937879:0,0,0 +g1,22138:6764466,11937879 +g1,22138:6764466,11937879 +g1,22138:6436786,11937879 +(1,22138:6436786,11937879:0,0,0 +) +g1,22138:6764466,11937879 +) +g1,22140:7760328,11937879 +g1,22140:9088144,11937879 +g1,22140:11079868,11937879 +g1,22140:12075730,11937879 +h1,22140:12739638,11937879:0,0,0 +k1,22140:32583030,11937879:19843392 +g1,22140:32583030,11937879 +) +] +) +g1,22141:32583029,12017701 +g1,22141:6764466,12017701 +g1,22141:6764466,12017701 +g1,22141:32583029,12017701 +g1,22141:32583029,12017701 +) +h1,22141:6764466,12214309:0,0,0 +] +g1,22143:32583029,12214309 +) +h1,22143:6630773,12214309:0,0,0 +v1,22146:6630773,13079389:0,393216,0 +(1,22147:6630773,16938669:25952256,4252496,0 +g1,22147:6630773,16938669 +g1,22147:6237557,16938669 +r1,22228:6368629,16938669:131072,4252496,0 +g1,22147:6567858,16938669 +g1,22147:6764466,16938669 +[1,22147:6764466,16938669:25818563,4252496,0 +(1,22147:6764466,13351866:25818563,665693,196608 +(1,22146:6764466,13351866:0,665693,196608 +r1,22228:8010564,13351866:1246098,862301,196608 +k1,22146:6764466,13351866:-1246098 +) +(1,22146:6764466,13351866:1246098,665693,196608 +) +k1,22146:8264775,13351866:254211 +k1,22146:9990993,13351866:327680 +k1,22146:11814137,13351866:254212 +k1,22146:13087433,13351866:254211 +k1,22146:14324685,13351866:254212 +(1,22146:14324685,13351866:0,452978,122846 +r1,22228:22772322,13351866:8447637,575824,122846 +k1,22146:14324685,13351866:-8447637 +) +(1,22146:14324685,13351866:8447637,452978,122846 +k1,22146:14324685,13351866:3277 +h1,22146:22769045,13351866:0,411205,112570 +) +k1,22146:23026534,13351866:254212 +k1,22146:24674696,13351866:254211 +k1,22146:27624403,13351866:254211 +(1,22146:27624403,13351866:0,452978,115847 +r1,22228:31499787,13351866:3875384,568825,115847 +k1,22146:27624403,13351866:-3875384 +) +(1,22146:27624403,13351866:3875384,452978,115847 +k1,22146:27624403,13351866:3277 +h1,22146:31496510,13351866:0,411205,112570 +) +k1,22146:31753999,13351866:254212 +k1,22147:32583029,13351866:0 +) +(1,22147:6764466,14216946:25818563,513147,134348 +k1,22146:8668650,14216946:193039 +k1,22146:9528844,14216946:193038 +(1,22146:9528844,14216946:0,452978,115847 +r1,22228:13052516,14216946:3523672,568825,115847 +k1,22146:9528844,14216946:-3523672 +) +(1,22146:9528844,14216946:3523672,452978,115847 +k1,22146:9528844,14216946:3277 +h1,22146:13049239,14216946:0,411205,112570 +) +k1,22146:13419225,14216946:193039 +k1,22146:16575147,14216946:193039 +k1,22146:17971427,14216946:193039 +k1,22146:19501399,14216946:193038 +k1,22146:21081180,14216946:193039 +k1,22146:22420444,14216946:193039 +k1,22146:22969343,14216946:193039 +k1,22146:24973796,14216946:193038 +k1,22146:25826127,14216946:193039 +k1,22146:27618244,14216946:193039 +k1,22146:28830368,14216946:193039 +k1,22146:30711613,14216946:193038 +k1,22146:31563944,14216946:193039 +k1,22146:32583029,14216946:0 +) +(1,22147:6764466,15082026:25818563,513147,134348 +k1,22146:9535411,15082026:210453 +k1,22146:10277361,15082026:210453 +k1,22146:11435465,15082026:210453 +k1,22146:12816391,15082026:210453 +k1,22146:13678272,15082026:210453 +k1,22146:14867178,15082026:210453 +k1,22146:17569966,15082026:210454 +k1,22146:19174370,15082026:210453 +k1,22146:19799654,15082026:210441 +k1,22146:22769829,15082026:210454 +k1,22146:23596320,15082026:210453 +k1,22146:25173854,15082026:210453 +k1,22146:26043599,15082026:210453 +k1,22146:27747618,15082026:210453 +k1,22146:28313931,15082026:210453 +k1,22146:31202185,15082026:210453 +k1,22146:32583029,15082026:0 +) +(1,22147:6764466,15947106:25818563,505283,134348 +k1,22146:8175337,15947106:278409 +k1,22146:9841799,15947106:278409 +k1,22146:11290680,15947106:278408 +k1,22146:14660422,15947106:278409 +k1,22146:17140841,15947106:278409 +k1,22146:19356494,15947106:278409 +k1,22146:21332941,15947106:278409 +k1,22146:22991538,15947106:278409 +k1,22146:25644315,15947106:278408 +k1,22146:29887652,15947106:278409 +k1,22146:32051532,15947106:278409 +k1,22146:32583029,15947106:0 +) +(1,22147:6764466,16812186:25818563,513147,126483 +g1,22146:8588333,16812186 +g1,22146:11564978,16812186 +g1,22146:13462245,16812186 +g1,22146:14974816,16812186 +g1,22146:16165605,16812186 +k1,22147:32583029,16812186:14086308 +g1,22147:32583029,16812186 +) +] +g1,22147:32583029,16938669 +) +h1,22147:6630773,16938669:0,0,0 +(1,22150:6630773,17803749:25952256,513147,126483 +h1,22149:6630773,17803749:983040,0,0 +k1,22149:10754902,17803749:456079 +k1,22149:12194021,17803749:456079 +(1,22149:12194021,17803749:0,452978,122846 +r1,22228:19234812,17803749:7040791,575824,122846 +k1,22149:12194021,17803749:-7040791 +) +(1,22149:12194021,17803749:7040791,452978,122846 +k1,22149:12194021,17803749:3277 +h1,22149:19231535,17803749:0,411205,112570 +) +k1,22149:19690890,17803749:456078 +k1,22149:22849018,17803749:456079 +k1,22149:31189078,17803749:456079 +k1,22149:32583029,17803749:0 +) +(1,22150:6630773,18668829:25952256,505283,134348 +k1,22149:8889331,18668829:293133 +k1,22149:10923756,18668829:293133 +k1,22149:13004711,18668829:293133 +k1,22149:13949272,18668829:293133 +k1,22149:15793642,18668829:293133 +k1,22149:17105860,18668829:293133 +k1,22149:20285854,18668829:293133 +k1,22149:21230414,18668829:293132 +k1,22149:23239280,18668829:293133 +k1,22149:23990510,18668829:293133 +k1,22149:26154041,18668829:293133 +k1,22149:27098602,18668829:293133 +k1,22149:28804036,18668829:293133 +k1,22149:29858697,18668829:293133 +k1,22149:32583029,18668829:0 +) +(1,22150:6630773,19533909:25952256,513147,134348 +k1,22149:8699635,19533909:194532 +k1,22149:11213487,19533909:194533 +k1,22149:13142102,19533909:194532 +k1,22149:15708383,19533909:194533 +k1,22149:18222234,19533909:194532 +k1,22149:19608212,19533909:194533 +k1,22149:22100436,19533909:194532 +k1,22149:24036261,19533909:194533 +k1,22149:26348917,19533909:194532 +k1,22149:27827956,19533909:194533 +k1,22149:29014048,19533909:194532 +k1,22149:31966991,19533909:194533 +k1,22149:32583029,19533909:0 +) +(1,22150:6630773,20398989:25952256,513147,134348 +g1,22149:8695812,20398989 +g1,22149:10905686,20398989 +g1,22149:12802953,20398989 +g1,22149:14021267,20398989 +g1,22149:15203536,20398989 +g1,22149:15934262,20398989 +k1,22150:32583029,20398989:15062796 +g1,22150:32583029,20398989 +) +v1,22152:6630773,21083844:0,393216,0 +(1,22158:6630773,22767813:25952256,2077185,196608 +g1,22158:6630773,22767813 +g1,22158:6630773,22767813 +g1,22158:6434165,22767813 +(1,22158:6434165,22767813:0,2077185,196608 +r1,22228:32779637,22767813:26345472,2273793,196608 +k1,22158:6434165,22767813:-26345472 +) +(1,22158:6434165,22767813:26345472,2077185,196608 +[1,22158:6630773,22767813:25952256,1880577,0 +(1,22157:6630773,21311675:25952256,424439,86428 +(1,22153:6630773,21311675:0,0,0 +g1,22153:6630773,21311675 +g1,22153:6630773,21311675 +g1,22153:6303093,21311675 +(1,22153:6303093,21311675:0,0,0 +) +g1,22153:6630773,21311675 +) +k1,22157:6630773,21311675:0 +g1,22157:8622497,21311675 +g1,22157:10614221,21311675 +g1,22157:12605945,21311675 +h1,22157:13933761,21311675:0,0,0 +k1,22157:32583029,21311675:18649268 +g1,22157:32583029,21311675 +) +(1,22157:6630773,21996530:25952256,407923,86428 +h1,22157:6630773,21996530:0,0,0 +g1,22157:6962727,21996530 +g1,22157:8622497,21996530 +g1,22157:10614221,21996530 +g1,22157:10946175,21996530 +g1,22157:12605945,21996530 +g1,22157:12937899,21996530 +h1,22157:13933761,21996530:0,0,0 +k1,22157:32583029,21996530:18649268 +g1,22157:32583029,21996530 +) +(1,22157:6630773,22681385:25952256,407923,86428 +h1,22157:6630773,22681385:0,0,0 +g1,22157:8622497,22681385 +g1,22157:10614221,22681385 +g1,22157:10946175,22681385 +g1,22157:11278129,22681385 +g1,22157:12605945,22681385 +g1,22157:12937899,22681385 +g1,22157:13601807,22681385 +h1,22157:13933761,22681385:0,0,0 +k1,22157:32583029,22681385:18649268 +g1,22157:32583029,22681385 +) +] +) +g1,22158:32583029,22767813 +g1,22158:6630773,22767813 +g1,22158:6630773,22767813 +g1,22158:32583029,22767813 +g1,22158:32583029,22767813 +) +h1,22158:6630773,22964421:0,0,0 +(1,22162:6630773,23829501:25952256,513147,134348 +h1,22161:6630773,23829501:983040,0,0 +k1,22161:10761659,23829501:184963 +k1,22161:12734443,23829501:184962 +k1,22161:16224387,23829501:184963 +k1,22161:17400909,23829501:184962 +k1,22161:18998173,23829501:184963 +k1,22161:19869298,23829501:184963 +k1,22161:21376121,23829501:184962 +k1,22161:22220376,23829501:184963 +k1,22161:23424424,23829501:184963 +k1,22161:25517139,23829501:184962 +k1,22161:27082290,23829501:184963 +k1,22161:28258812,23829501:184962 +k1,22161:30884991,23829501:184963 +k1,22161:32583029,23829501:0 +) +(1,22162:6630773,24694581:25952256,505283,134348 +k1,22161:10355422,24694581:247964 +k1,22161:11254815,24694581:247965 +k1,22161:14122908,24694581:247964 +k1,22161:16053837,24694581:247964 +k1,22161:18138120,24694581:247964 +k1,22161:19582772,24694581:247965 +k1,22161:23048554,24694581:247964 +k1,22161:25615837,24694581:247964 +k1,22161:27055246,24694581:247964 +k1,22161:29600903,24694581:247965 +k1,22161:31966991,24694581:247964 +k1,22161:32583029,24694581:0 +) +(1,22162:6630773,25559661:25952256,513147,134348 +g1,22161:9804681,25559661 +g1,22161:12200021,25559661 +g1,22161:13390810,25559661 +g1,22161:16073854,25559661 +g1,22161:16924511,25559661 +g1,22161:18148723,25559661 +g1,22161:20045990,25559661 +g1,22161:21634582,25559661 +g1,22161:24040408,25559661 +g1,22161:25231197,25559661 +k1,22162:32583029,25559661:4828041 +g1,22162:32583029,25559661 +) +v1,22164:6630773,26244516:0,393216,0 +(1,22168:6630773,27243630:25952256,1392330,196608 +g1,22168:6630773,27243630 +g1,22168:6630773,27243630 +g1,22168:6434165,27243630 +(1,22168:6434165,27243630:0,1392330,196608 +r1,22228:32779637,27243630:26345472,1588938,196608 +k1,22168:6434165,27243630:-26345472 +) +(1,22168:6434165,27243630:26345472,1392330,196608 +[1,22168:6630773,27243630:25952256,1195722,0 +(1,22166:6630773,26478953:25952256,431045,112852 +(1,22165:6630773,26478953:0,0,0 +g1,22165:6630773,26478953 +g1,22165:6630773,26478953 +g1,22165:6303093,26478953 +(1,22165:6303093,26478953:0,0,0 +) +g1,22165:6630773,26478953 +) +k1,22166:12072637,26478953:1126463 +k1,22166:13863008,26478953:1126463 +k1,22166:28267628,26478953:1126463 +k1,22166:32583029,26478953:0 +) +(1,22166:6630773,27163808:25952256,424439,79822 +g1,22166:8290543,27163808 +g1,22166:8954451,27163808 +h1,22166:10614221,27163808:0,0,0 +k1,22166:32583029,27163808:21968808 +g1,22166:32583029,27163808 +) +] +) +g1,22168:32583029,27243630 +g1,22168:6630773,27243630 +g1,22168:6630773,27243630 +g1,22168:32583029,27243630 +g1,22168:32583029,27243630 +) +h1,22168:6630773,27440238:0,0,0 +(1,22172:6630773,28305318:25952256,513147,134348 +h1,22171:6630773,28305318:983040,0,0 +k1,22171:9694725,28305318:289158 +(1,22171:9694725,28305318:0,452978,115847 +r1,22228:12514974,28305318:2820249,568825,115847 +k1,22171:9694725,28305318:-2820249 +) +(1,22171:9694725,28305318:2820249,452978,115847 +k1,22171:9694725,28305318:3277 +h1,22171:12511697,28305318:0,411205,112570 +) +k1,22171:12804132,28305318:289158 +k1,22171:13961642,28305318:289158 +k1,22171:15355081,28305318:289157 +k1,22171:17294436,28305318:289158 +k1,22171:19680091,28305318:289158 +k1,22171:20994232,28305318:289158 +k1,22171:22567896,28305318:289158 +k1,22171:23876139,28305318:289158 +k1,22171:26009479,28305318:289157 +k1,22171:26957929,28305318:289158 +k1,22171:28266172,28305318:289158 +k1,22171:32583029,28305318:0 +) +(1,22172:6630773,29170398:25952256,513147,134348 +g1,22171:9180123,29170398 +g1,22171:11273342,29170398 +g1,22171:13264981,29170398 +g1,22171:15835958,29170398 +g1,22171:18354506,29170398 +k1,22172:32583029,29170398:11936729 +g1,22172:32583029,29170398 +) +v1,22174:6630773,29855253:0,393216,0 +(1,22195:6630773,35618857:25952256,6156820,196608 +g1,22195:6630773,35618857 +g1,22195:6630773,35618857 +g1,22195:6434165,35618857 +(1,22195:6434165,35618857:0,6156820,196608 +r1,22228:32779637,35618857:26345472,6353428,196608 +k1,22195:6434165,35618857:-26345472 +) +(1,22195:6434165,35618857:26345472,6156820,196608 +[1,22195:6630773,35618857:25952256,5960212,0 +(1,22176:6630773,30089690:25952256,431045,106246 +(1,22175:6630773,30089690:0,0,0 +g1,22175:6630773,30089690 +g1,22175:6630773,30089690 +g1,22175:6303093,30089690 +(1,22175:6303093,30089690:0,0,0 +) +g1,22175:6630773,30089690 +) +k1,22176:6630773,30089690:0 +g1,22176:13933760,30089690 +h1,22176:15925484,30089690:0,0,0 +k1,22176:32583029,30089690:16657545 +g1,22176:32583029,30089690 +) +(1,22181:6630773,30905617:25952256,424439,9908 +(1,22178:6630773,30905617:0,0,0 +g1,22178:6630773,30905617 +g1,22178:6630773,30905617 +g1,22178:6303093,30905617 +(1,22178:6303093,30905617:0,0,0 +) +g1,22178:6630773,30905617 +) +g1,22181:7626635,30905617 +g1,22181:7958589,30905617 +g1,22181:8290543,30905617 +g1,22181:8622497,30905617 +g1,22181:8954451,30905617 +g1,22181:9286405,30905617 +g1,22181:10946175,30905617 +g1,22181:11278129,30905617 +g1,22181:11610083,30905617 +g1,22181:11942037,30905617 +g1,22181:12273991,30905617 +g1,22181:12605945,30905617 +g1,22181:14265715,30905617 +g1,22181:14597669,30905617 +g1,22181:14929623,30905617 +g1,22181:15261577,30905617 +g1,22181:15593531,30905617 +g1,22181:15925485,30905617 +g1,22181:17585255,30905617 +g1,22181:17917209,30905617 +g1,22181:18249163,30905617 +g1,22181:18581117,30905617 +g1,22181:18913071,30905617 +g1,22181:19245025,30905617 +h1,22181:20572841,30905617:0,0,0 +k1,22181:32583029,30905617:12010188 +g1,22181:32583029,30905617 +) +(1,22181:6630773,31590472:25952256,431045,112852 +h1,22181:6630773,31590472:0,0,0 +g1,22181:7626635,31590472 +g1,22181:10946174,31590472 +g1,22181:14265713,31590472 +g1,22181:17585252,31590472 +g1,22181:17917206,31590472 +h1,22181:20572837,31590472:0,0,0 +k1,22181:32583029,31590472:12010192 +g1,22181:32583029,31590472 +) +(1,22183:6630773,32406399:25952256,431045,79822 +(1,22182:6630773,32406399:0,0,0 +g1,22182:6630773,32406399 +g1,22182:6630773,32406399 +g1,22182:6303093,32406399 +(1,22182:6303093,32406399:0,0,0 +) +g1,22182:6630773,32406399 +) +h1,22183:14265714,32406399:0,0,0 +k1,22183:32583030,32406399:18317316 +g1,22183:32583030,32406399 +) +(1,22188:6630773,33222326:25952256,424439,79822 +(1,22185:6630773,33222326:0,0,0 +g1,22185:6630773,33222326 +g1,22185:6630773,33222326 +g1,22185:6303093,33222326 +(1,22185:6303093,33222326:0,0,0 +) +g1,22185:6630773,33222326 +) +g1,22188:7626635,33222326 +g1,22188:8954451,33222326 +g1,22188:9286405,33222326 +g1,22188:9618359,33222326 +g1,22188:10946175,33222326 +g1,22188:11278129,33222326 +g1,22188:11610083,33222326 +g1,22188:12273991,33222326 +h1,22188:12605945,33222326:0,0,0 +k1,22188:32583029,33222326:19977084 +g1,22188:32583029,33222326 +) +(1,22188:6630773,33907181:25952256,424439,8257 +h1,22188:6630773,33907181:0,0,0 +g1,22188:7626635,33907181 +g1,22188:10282267,33907181 +g1,22188:10614221,33907181 +g1,22188:10946175,33907181 +g1,22188:12273991,33907181 +g1,22188:12605945,33907181 +g1,22188:12937899,33907181 +g1,22188:13601807,33907181 +h1,22188:13933761,33907181:0,0,0 +k1,22188:32583029,33907181:18649268 +g1,22188:32583029,33907181 +) +(1,22190:6630773,34723108:25952256,431045,79822 +(1,22189:6630773,34723108:0,0,0 +g1,22189:6630773,34723108 +g1,22189:6630773,34723108 +g1,22189:6303093,34723108 +(1,22189:6303093,34723108:0,0,0 +) +g1,22189:6630773,34723108 +) +k1,22190:6630773,34723108:0 +h1,22190:16921346,34723108:0,0,0 +k1,22190:32583029,34723108:15661683 +g1,22190:32583029,34723108 +) +(1,22194:6630773,35539035:25952256,424439,79822 +(1,22192:6630773,35539035:0,0,0 +g1,22192:6630773,35539035 +g1,22192:6630773,35539035 +g1,22192:6303093,35539035 +(1,22192:6303093,35539035:0,0,0 +) +g1,22192:6630773,35539035 +) +g1,22194:7626635,35539035 +g1,22194:8954451,35539035 +g1,22194:9618359,35539035 +g1,22194:9950313,35539035 +g1,22194:11610083,35539035 +g1,22194:12273991,35539035 +g1,22194:12605945,35539035 +g1,22194:13269853,35539035 +h1,22194:13933761,35539035:0,0,0 +k1,22194:32583029,35539035:18649268 +g1,22194:32583029,35539035 +) +] +) +g1,22195:32583029,35618857 +g1,22195:6630773,35618857 +g1,22195:6630773,35618857 +g1,22195:32583029,35618857 +g1,22195:32583029,35618857 +) +h1,22195:6630773,35815465:0,0,0 +(1,22199:6630773,36680545:25952256,513147,134348 +h1,22198:6630773,36680545:983040,0,0 +k1,22198:8567198,36680545:193167 +k1,22198:11199615,36680545:193167 +k1,22198:13775672,36680545:193168 +k1,22198:16037155,36680545:193167 +k1,22198:17221882,36680545:193167 +k1,22198:20333367,36680545:193167 +k1,22198:21598704,36680545:193168 +k1,22198:23685861,36680545:193167 +k1,22198:25671438,36680545:193167 +k1,22198:26856165,36680545:193167 +k1,22198:28289274,36680545:193168 +k1,22198:29242659,36680545:193167 +k1,22198:32583029,36680545:0 +) +(1,22199:6630773,37545625:25952256,505283,134348 +k1,22198:7826846,37545625:176988 +k1,22198:12829905,37545625:176988 +k1,22198:14400844,37545625:176988 +(1,22198:14400844,37545625:0,452978,115847 +r1,22228:19331364,37545625:4930520,568825,115847 +k1,22198:14400844,37545625:-4930520 +) +(1,22198:14400844,37545625:4930520,452978,115847 +k1,22198:14400844,37545625:3277 +h1,22198:19328087,37545625:0,411205,112570 +) +k1,22198:19508352,37545625:176988 +k1,22198:20553691,37545625:176987 +k1,22198:23403893,37545625:176988 +k1,22198:24865387,37545625:176988 +k1,22198:25803903,37545625:176988 +k1,22198:28408345,37545625:176988 +k1,22198:29356036,37545625:176988 +k1,22198:32583029,37545625:0 +) +(1,22199:6630773,38410705:25952256,513147,134348 +k1,22198:9964690,38410705:261589 +k1,22198:11094631,38410705:261589 +k1,22198:12460503,38410705:261590 +k1,22198:14962768,38410705:261589 +k1,22198:16427598,38410705:261589 +k1,22198:18954767,38410705:261589 +k1,22198:20407802,38410705:261590 +k1,22198:22693143,38410705:261589 +k1,22198:23973817,38410705:261589 +k1,22198:25624769,38410705:261589 +k1,22198:27298660,38410705:261590 +k1,22198:28246411,38410705:261589 +k1,22198:31037690,38410705:261589 +k1,22198:32583029,38410705:0 +) +(1,22199:6630773,39275785:25952256,513147,134348 +g1,22198:8542458,39275785 +g1,22198:9760772,39275785 +g1,22198:12225581,39275785 +g1,22198:13525815,39275785 +g1,22198:15234994,39275785 +g1,22198:17669656,39275785 +g1,22198:18593713,39275785 +g1,22198:20077448,39275785 +g1,22198:21038205,39275785 +g1,22198:23503014,39275785 +g1,22198:25091606,39275785 +g1,22198:27992884,39275785 +g1,22198:28723610,39275785 +k1,22199:32583029,39275785:96997 +g1,22199:32583029,39275785 +) +v1,22201:6630773,39960640:0,393216,0 +(1,22224:6630773,45510161:25952256,5942737,196608 +g1,22224:6630773,45510161 +g1,22224:6630773,45510161 +g1,22224:6434165,45510161 +(1,22224:6434165,45510161:0,5942737,196608 +r1,22228:32779637,45510161:26345472,6139345,196608 +k1,22224:6434165,45510161:-26345472 +) +(1,22224:6434165,45510161:26345472,5942737,196608 +[1,22224:6630773,45510161:25952256,5746129,0 +(1,22203:6630773,40195077:25952256,431045,112852 +(1,22202:6630773,40195077:0,0,0 +g1,22202:6630773,40195077 +g1,22202:6630773,40195077 +g1,22202:6303093,40195077 +(1,22202:6303093,40195077:0,0,0 +) +g1,22202:6630773,40195077 +) +g1,22203:11278128,40195077 +g1,22203:12273990,40195077 +k1,22203:12273990,40195077:0 +h1,22203:25552147,40195077:0,0,0 +k1,22203:32583029,40195077:7030882 +g1,22203:32583029,40195077 +) +(1,22204:6630773,40879932:25952256,424439,112852 +h1,22204:6630773,40879932:0,0,0 +g1,22204:6962727,40879932 +g1,22204:7294681,40879932 +g1,22204:7626635,40879932 +g1,22204:7958589,40879932 +g1,22204:8290543,40879932 +g1,22204:8622497,40879932 +g1,22204:8954451,40879932 +g1,22204:9286405,40879932 +g1,22204:9618359,40879932 +g1,22204:9950313,40879932 +g1,22204:10282267,40879932 +g1,22204:10614221,40879932 +g1,22204:10946175,40879932 +g1,22204:11278129,40879932 +g1,22204:11610083,40879932 +g1,22204:11942037,40879932 +g1,22204:12273991,40879932 +g1,22204:12605945,40879932 +g1,22204:12937899,40879932 +g1,22204:13269853,40879932 +g1,22204:13601807,40879932 +g1,22204:13933761,40879932 +g1,22204:14265715,40879932 +g1,22204:14597669,40879932 +g1,22204:14929623,40879932 +g1,22204:15261577,40879932 +g1,22204:20904794,40879932 +g1,22204:21568702,40879932 +g1,22204:23560426,40879932 +g1,22204:27543873,40879932 +g1,22204:28207781,40879932 +h1,22204:29867551,40879932:0,0,0 +k1,22204:32583029,40879932:2715478 +g1,22204:32583029,40879932 +) +(1,22205:6630773,41564787:25952256,431045,106246 +h1,22205:6630773,41564787:0,0,0 +g1,22205:13933760,41564787 +h1,22205:15925484,41564787:0,0,0 +k1,22205:32583029,41564787:16657545 +g1,22205:32583029,41564787 +) +(1,22210:6630773,42063955:25952256,424439,9908 +(1,22207:6630773,42063955:0,0,0 +g1,22207:6630773,42063955 +g1,22207:6630773,42063955 +g1,22207:6303093,42063955 +(1,22207:6303093,42063955:0,0,0 +) +g1,22207:6630773,42063955 +) +g1,22210:7626635,42063955 +g1,22210:7958589,42063955 +g1,22210:8290543,42063955 +g1,22210:8622497,42063955 +g1,22210:8954451,42063955 +g1,22210:9286405,42063955 +g1,22210:10946175,42063955 +g1,22210:11278129,42063955 +g1,22210:11610083,42063955 +g1,22210:11942037,42063955 +g1,22210:12273991,42063955 +g1,22210:12605945,42063955 +g1,22210:14265715,42063955 +g1,22210:14597669,42063955 +g1,22210:14929623,42063955 +g1,22210:15261577,42063955 +g1,22210:15593531,42063955 +g1,22210:15925485,42063955 +g1,22210:17585255,42063955 +g1,22210:17917209,42063955 +g1,22210:18249163,42063955 +g1,22210:18581117,42063955 +g1,22210:18913071,42063955 +g1,22210:19245025,42063955 +h1,22210:20572841,42063955:0,0,0 +k1,22210:32583029,42063955:12010188 +g1,22210:32583029,42063955 +) +(1,22210:6630773,42748810:25952256,431045,112852 +h1,22210:6630773,42748810:0,0,0 +g1,22210:7626635,42748810 +g1,22210:10946174,42748810 +g1,22210:14265713,42748810 +g1,22210:17585252,42748810 +g1,22210:17917206,42748810 +h1,22210:20572837,42748810:0,0,0 +k1,22210:32583029,42748810:12010192 +g1,22210:32583029,42748810 +) +(1,22212:6630773,43247979:25952256,431045,79822 +(1,22211:6630773,43247979:0,0,0 +g1,22211:6630773,43247979 +g1,22211:6630773,43247979 +g1,22211:6303093,43247979 +(1,22211:6303093,43247979:0,0,0 +) +g1,22211:6630773,43247979 +) +h1,22212:14265714,43247979:0,0,0 +k1,22212:32583030,43247979:18317316 +g1,22212:32583030,43247979 +) +(1,22217:6630773,43747147:25952256,424439,79822 +(1,22214:6630773,43747147:0,0,0 +g1,22214:6630773,43747147 +g1,22214:6630773,43747147 +g1,22214:6303093,43747147 +(1,22214:6303093,43747147:0,0,0 +) +g1,22214:6630773,43747147 +) +g1,22217:7626635,43747147 +g1,22217:8954451,43747147 +g1,22217:10282267,43747147 +g1,22217:10946175,43747147 +h1,22217:11278129,43747147:0,0,0 +k1,22217:32583029,43747147:21304900 +g1,22217:32583029,43747147 +) +(1,22217:6630773,44432002:25952256,424439,8257 +h1,22217:6630773,44432002:0,0,0 +g1,22217:7626635,44432002 +g1,22217:10282267,44432002 +g1,22217:11610083,44432002 +g1,22217:12273991,44432002 +h1,22217:12605945,44432002:0,0,0 +k1,22217:32583029,44432002:19977084 +g1,22217:32583029,44432002 +) +(1,22219:6630773,44931171:25952256,431045,79822 +(1,22218:6630773,44931171:0,0,0 +g1,22218:6630773,44931171 +g1,22218:6630773,44931171 +g1,22218:6303093,44931171 +(1,22218:6303093,44931171:0,0,0 +) +g1,22218:6630773,44931171 +) +k1,22219:6630773,44931171:0 +h1,22219:16921346,44931171:0,0,0 +k1,22219:32583029,44931171:15661683 +g1,22219:32583029,44931171 +) +(1,22223:6630773,45430339:25952256,424439,79822 +(1,22221:6630773,45430339:0,0,0 +g1,22221:6630773,45430339 +g1,22221:6630773,45430339 +g1,22221:6303093,45430339 +(1,22221:6303093,45430339:0,0,0 +) +g1,22221:6630773,45430339 +) +g1,22223:7626635,45430339 +g1,22223:8954451,45430339 +g1,22223:10946175,45430339 +g1,22223:11942037,45430339 +h1,22223:12605945,45430339:0,0,0 +k1,22223:32583029,45430339:19977084 +g1,22223:32583029,45430339 +) +] +) +g1,22224:32583029,45510161 +g1,22224:6630773,45510161 +g1,22224:6630773,45510161 +g1,22224:32583029,45510161 +g1,22224:32583029,45510161 +) +h1,22224:6630773,45706769:0,0,0 +] +(1,22228:32583029,45706769:0,0,0 +g1,22228:32583029,45706769 +) ) ] -!26641 -}399 -Input:3575:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3576:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3577:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3578:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3579:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3580:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3581:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3582:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3583:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3584:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3585:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3586:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3587:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3588:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3589:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3590:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3591:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1610 -{400 -[1,22106:4262630,47279633:28320399,43253760,0 -(1,22106:4262630,4025873:0,0,0 -[1,22106:-473656,4025873:0,0,0 -(1,22106:-473656,-710413:0,0,0 -(1,22106:-473656,-644877:0,0,0 -k1,22106:-473656,-644877:-65536 +(1,22228:6630773,47279633:25952256,0,0 +h1,22228:6630773,47279633:25952256,0,0 ) -(1,22106:-473656,4736287:0,0,0 -k1,22106:-473656,4736287:5209943 +] +(1,22228:4262630,4025873:0,0,0 +[1,22228:-473656,4025873:0,0,0 +(1,22228:-473656,-710413:0,0,0 +(1,22228:-473656,-710413:0,0,0 +g1,22228:-473656,-710413 ) -g1,22106:-473656,-710413 +g1,22228:-473656,-710413 ) ] ) -[1,22106:6630773,47279633:25952256,43253760,0 -[1,22106:6630773,4812305:25952256,786432,0 -(1,22106:6630773,4812305:25952256,513147,126483 -(1,22106:6630773,4812305:25952256,513147,126483 -g1,22106:3078558,4812305 -[1,22106:3078558,4812305:0,0,0 -(1,22106:3078558,2439708:0,1703936,0 -k1,22106:1358238,2439708:-1720320 -(1,21457:1358238,2439708:1720320,1703936,0 -(1,21457:1358238,2439708:1179648,16384,0 -r1,22106:2537886,2439708:1179648,16384,0 +] +!30195 +}382 +Input:3616:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3617:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3618:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3619:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3620:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3621:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3622:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3623:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3624:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3625:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!952 +{383 +[1,22315:4262630,47279633:28320399,43253760,0 +(1,22315:4262630,4025873:0,0,0 +[1,22315:-473656,4025873:0,0,0 +(1,22315:-473656,-710413:0,0,0 +(1,22315:-473656,-644877:0,0,0 +k1,22315:-473656,-644877:-65536 ) -g1,21457:3062174,2439708 -(1,21457:3062174,2439708:16384,1703936,0 -[1,21457:3062174,2439708:25952256,1703936,0 -(1,21457:3062174,1915420:25952256,1179648,0 -(1,21457:3062174,1915420:16384,1179648,0 -r1,22106:3078558,1915420:16384,1179648,0 +(1,22315:-473656,4736287:0,0,0 +k1,22315:-473656,4736287:5209943 ) -k1,21457:29014430,1915420:25935872 -g1,21457:29014430,1915420 +g1,22315:-473656,-710413 ) ] ) +[1,22315:6630773,47279633:25952256,43253760,0 +[1,22315:6630773,4812305:25952256,786432,0 +(1,22315:6630773,4812305:25952256,505283,134348 +(1,22315:6630773,4812305:25952256,505283,134348 +g1,22315:3078558,4812305 +[1,22315:3078558,4812305:0,0,0 +(1,22315:3078558,2439708:0,1703936,0 +k1,22315:1358238,2439708:-1720320 +(1,21670:1358238,2439708:1720320,1703936,0 +(1,21670:1358238,2439708:1179648,16384,0 +r1,22315:2537886,2439708:1179648,16384,0 ) +g1,21670:3062174,2439708 +(1,21670:3062174,2439708:16384,1703936,0 +[1,21670:3062174,2439708:25952256,1703936,0 +(1,21670:3062174,1915420:25952256,1179648,0 +(1,21670:3062174,1915420:16384,1179648,0 +r1,22315:3078558,1915420:16384,1179648,0 ) -] -[1,22106:3078558,4812305:0,0,0 -(1,22106:3078558,2439708:0,1703936,0 -g1,22106:29030814,2439708 -g1,22106:36135244,2439708 -(1,21457:36135244,2439708:1720320,1703936,0 -(1,21457:36135244,2439708:16384,1703936,0 -[1,21457:36135244,2439708:25952256,1703936,0 -(1,21457:36135244,1915420:25952256,1179648,0 -(1,21457:36135244,1915420:16384,1179648,0 -r1,22106:36151628,1915420:16384,1179648,0 -) -k1,21457:62087500,1915420:25935872 -g1,21457:62087500,1915420 +k1,21670:29014430,1915420:25935872 +g1,21670:29014430,1915420 ) ] ) -g1,21457:36675916,2439708 -(1,21457:36675916,2439708:1179648,16384,0 -r1,22106:37855564,2439708:1179648,16384,0 ) ) -k1,22106:3078556,2439708:-34777008 -) ] -[1,22106:3078558,4812305:0,0,0 -(1,22106:3078558,49800853:0,16384,2228224 -k1,22106:1358238,49800853:-1720320 -(1,21457:1358238,49800853:1720320,16384,2228224 -(1,21457:1358238,49800853:1179648,16384,0 -r1,22106:2537886,49800853:1179648,16384,0 -) -g1,21457:3062174,49800853 -(1,21457:3062174,52029077:16384,1703936,0 -[1,21457:3062174,52029077:25952256,1703936,0 -(1,21457:3062174,51504789:25952256,1179648,0 -(1,21457:3062174,51504789:16384,1179648,0 -r1,22106:3078558,51504789:16384,1179648,0 +[1,22315:3078558,4812305:0,0,0 +(1,22315:3078558,2439708:0,1703936,0 +g1,22315:29030814,2439708 +g1,22315:36135244,2439708 +(1,21670:36135244,2439708:1720320,1703936,0 +(1,21670:36135244,2439708:16384,1703936,0 +[1,21670:36135244,2439708:25952256,1703936,0 +(1,21670:36135244,1915420:25952256,1179648,0 +(1,21670:36135244,1915420:16384,1179648,0 +r1,22315:36151628,1915420:16384,1179648,0 ) -k1,21457:29014430,51504789:25935872 -g1,21457:29014430,51504789 +k1,21670:62087500,1915420:25935872 +g1,21670:62087500,1915420 ) ] ) +g1,21670:36675916,2439708 +(1,21670:36675916,2439708:1179648,16384,0 +r1,22315:37855564,2439708:1179648,16384,0 ) ) +k1,22315:3078556,2439708:-34777008 +) ] -[1,22106:3078558,4812305:0,0,0 -(1,22106:3078558,49800853:0,16384,2228224 -g1,22106:29030814,49800853 -g1,22106:36135244,49800853 -(1,21457:36135244,49800853:1720320,16384,2228224 -(1,21457:36135244,52029077:16384,1703936,0 -[1,21457:36135244,52029077:25952256,1703936,0 -(1,21457:36135244,51504789:25952256,1179648,0 -(1,21457:36135244,51504789:16384,1179648,0 -r1,22106:36151628,51504789:16384,1179648,0 -) -k1,21457:62087500,51504789:25935872 -g1,21457:62087500,51504789 -) -] -) -g1,21457:36675916,49800853 -(1,21457:36675916,49800853:1179648,16384,0 -r1,22106:37855564,49800853:1179648,16384,0 -) -) -k1,22106:3078556,49800853:-34777008 -) -] -g1,22106:6630773,4812305 -g1,22106:6630773,4812305 -g1,22106:9744388,4812305 -g1,22106:11175694,4812305 -k1,22106:31387652,4812305:20211958 -) -) -] -[1,22106:6630773,45706769:25952256,40108032,0 -(1,22106:6630773,45706769:25952256,40108032,0 -(1,22106:6630773,45706769:0,0,0 -g1,22106:6630773,45706769 -) -[1,22106:6630773,45706769:25952256,40108032,0 -v1,22055:6630773,6254097:0,393216,0 -(1,22055:6630773,11783658:25952256,5922777,196608 -g1,22055:6630773,11783658 -g1,22055:6630773,11783658 -g1,22055:6434165,11783658 -(1,22055:6434165,11783658:0,5922777,196608 -r1,22106:32779637,11783658:26345472,6119385,196608 -k1,22055:6434165,11783658:-26345472 -) -(1,22055:6434165,11783658:26345472,5922777,196608 -[1,22055:6630773,11783658:25952256,5726169,0 -(1,22037:6630773,6468007:25952256,410518,101187 -(1,22036:6630773,6468007:0,0,0 -g1,22036:6630773,6468007 -g1,22036:6630773,6468007 -g1,22036:6303093,6468007 -(1,22036:6303093,6468007:0,0,0 -) -g1,22036:6630773,6468007 -) -k1,22037:6630773,6468007:0 -g1,22037:13585979,6468007 -h1,22037:15482853,6468007:0,0,0 -k1,22037:32583029,6468007:17100176 -g1,22037:32583029,6468007 -) -(1,22042:6630773,7134185:25952256,404226,9436 -(1,22039:6630773,7134185:0,0,0 -g1,22039:6630773,7134185 -g1,22039:6630773,7134185 -g1,22039:6303093,7134185 -(1,22039:6303093,7134185:0,0,0 -) -g1,22039:6630773,7134185 -) -g1,22042:7579210,7134185 -g1,22042:7895356,7134185 -g1,22042:8211502,7134185 -g1,22042:8527648,7134185 -g1,22042:8843794,7134185 -g1,22042:9159940,7134185 -g1,22042:9476086,7134185 -g1,22042:9792232,7134185 -g1,22042:11372961,7134185 -g1,22042:11689107,7134185 -g1,22042:12005253,7134185 -g1,22042:12321399,7134185 -g1,22042:12637545,7134185 -g1,22042:12953691,7134185 -g1,22042:13269837,7134185 -g1,22042:13585983,7134185 -g1,22042:15166712,7134185 -g1,22042:15482858,7134185 -g1,22042:15799004,7134185 -g1,22042:16115150,7134185 -g1,22042:16431296,7134185 -g1,22042:16747442,7134185 -g1,22042:17063588,7134185 -g1,22042:17379734,7134185 -g1,22042:18960463,7134185 -g1,22042:19276609,7134185 -g1,22042:19592755,7134185 -g1,22042:19908901,7134185 -g1,22042:20225047,7134185 -g1,22042:20541193,7134185 -g1,22042:20857339,7134185 -g1,22042:21173485,7134185 -h1,22042:22438068,7134185:0,0,0 -k1,22042:32583029,7134185:10144961 -g1,22042:32583029,7134185 -) -(1,22042:6630773,7800363:25952256,404226,107478 -h1,22042:6630773,7800363:0,0,0 -g1,22042:7579210,7800363 -g1,22042:7895356,7800363 -g1,22042:8211502,7800363 -g1,22042:11372959,7800363 -g1,22042:11689105,7800363 -g1,22042:12005251,7800363 -g1,22042:15166708,7800363 -g1,22042:15482854,7800363 -g1,22042:15799000,7800363 -g1,22042:18960457,7800363 -h1,22042:22438059,7800363:0,0,0 -k1,22042:32583029,7800363:10144970 -g1,22042:32583029,7800363 -) -(1,22044:6630773,9121901:25952256,410518,76021 -(1,22043:6630773,9121901:0,0,0 -g1,22043:6630773,9121901 -g1,22043:6630773,9121901 -g1,22043:6303093,9121901 -(1,22043:6303093,9121901:0,0,0 -) -g1,22043:6630773,9121901 -) -h1,22044:13902123,9121901:0,0,0 -k1,22044:32583029,9121901:18680906 -g1,22044:32583029,9121901 -) -(1,22048:6630773,9788079:25952256,404226,76021 -(1,22046:6630773,9788079:0,0,0 -g1,22046:6630773,9788079 -g1,22046:6630773,9788079 -g1,22046:6303093,9788079 -(1,22046:6303093,9788079:0,0,0 -) -g1,22046:6630773,9788079 -) -g1,22048:7579210,9788079 -g1,22048:8843793,9788079 -g1,22048:10740667,9788079 -g1,22048:11689104,9788079 -h1,22048:12321395,9788079:0,0,0 -k1,22048:32583029,9788079:20261634 -g1,22048:32583029,9788079 -) -(1,22050:6630773,11109617:25952256,410518,76021 -(1,22049:6630773,11109617:0,0,0 -g1,22049:6630773,11109617 -g1,22049:6630773,11109617 -g1,22049:6303093,11109617 -(1,22049:6303093,11109617:0,0,0 -) -g1,22049:6630773,11109617 -) -k1,22050:6630773,11109617:0 -h1,22050:16431289,11109617:0,0,0 -k1,22050:32583029,11109617:16151740 -g1,22050:32583029,11109617 -) -(1,22054:6630773,11775795:25952256,379060,7863 -(1,22052:6630773,11775795:0,0,0 -g1,22052:6630773,11775795 -g1,22052:6630773,11775795 -g1,22052:6303093,11775795 -(1,22052:6303093,11775795:0,0,0 -) -g1,22052:6630773,11775795 -) -g1,22054:7579210,11775795 -h1,22054:8843793,11775795:0,0,0 -k1,22054:32583029,11775795:23739236 -g1,22054:32583029,11775795 -) -] -) -g1,22055:32583029,11783658 -g1,22055:6630773,11783658 -g1,22055:6630773,11783658 -g1,22055:32583029,11783658 -g1,22055:32583029,11783658 -) -h1,22055:6630773,11980266:0,0,0 -(1,22060:6630773,13346042:25952256,513147,134348 -h1,22059:6630773,13346042:983040,0,0 -k1,22059:9318226,13346042:225265 -k1,22059:9899351,13346042:225265 -k1,22059:13715989,13346042:225265 -k1,22059:16295307,13346042:225265 -k1,22059:17329942,13346042:225265 -k1,22059:20773680,13346042:225265 -k1,22059:21990505,13346042:225265 -k1,22059:24687788,13346042:225265 -k1,22059:27902805,13346042:225265 -k1,22059:28659567,13346042:225265 -k1,22059:30739501,13346042:225265 -k1,22059:32583029,13346042:0 -) -(1,22060:6630773,14187530:25952256,513147,126483 -k1,22059:7693566,14187530:253423 -k1,22059:8966074,14187530:253423 -k1,22059:11833728,14187530:253423 -k1,22059:12746442,14187530:253422 -k1,22059:14018950,14187530:253423 -k1,22059:17577354,14187530:253423 -k1,22059:18446815,14187530:253423 -k1,22059:19719323,14187530:253423 -k1,22059:21141253,14187530:253423 -k1,22059:22077560,14187530:253422 -k1,22059:24577557,14187530:253423 -k1,22059:25318514,14187530:253369 -k1,22059:26554977,14187530:253423 -k1,22059:27954624,14187530:253422 -k1,22059:29411288,14187530:253423 -k1,22059:31835263,14187530:253423 -k1,22059:32583029,14187530:0 -) -(1,22060:6630773,15029018:25952256,513147,134348 -k1,22059:10517331,15029018:296496 -k1,22059:13274048,15029018:296495 -k1,22059:13926404,15029018:296496 -k1,22059:17832623,15029018:296496 -k1,22059:18788410,15029018:296495 -k1,22059:20103991,15029018:296496 -k1,22059:22580870,15029018:296496 -k1,22059:24390591,15029018:296495 -k1,22059:25634738,15029018:296496 -k1,22059:27964816,15029018:296496 -k1,22059:29280396,15029018:296495 -k1,22059:31139926,15029018:296496 -k1,22059:32583029,15029018:0 -) -(1,22060:6630773,15870506:25952256,513147,134348 -k1,22059:10161378,15870506:168608 -k1,22059:11719349,15870506:168608 -k1,22059:13926126,15870506:168607 -k1,22059:14710772,15870506:168608 -k1,22059:16366392,15870506:168608 -k1,22059:18296608,15870506:168608 -k1,22059:20688852,15870506:168608 -k1,22059:21961742,15870506:168608 -k1,22059:22878115,15870506:168607 -k1,22059:24459024,15870506:168608 -k1,22059:26021583,15870506:168608 -k1,22059:28885687,15870506:168608 -(1,22059:28885687,15870506:0,459977,115847 -r1,22106:32409359,15870506:3523672,575824,115847 -k1,22059:28885687,15870506:-3523672 -) -(1,22059:28885687,15870506:3523672,459977,115847 -k1,22059:28885687,15870506:3277 -h1,22059:32406082,15870506:0,411205,112570 -) -k1,22059:32583029,15870506:0 -) -(1,22060:6630773,16711994:25952256,513147,134348 -k1,22059:9339201,16711994:148592 -k1,22059:10435444,16711994:148592 -k1,22059:10939896,16711994:148592 -k1,22059:12961507,16711994:148592 -k1,22059:16851549,16711994:148592 -k1,22059:18104423,16711994:148592 -k1,22059:19000781,16711994:148592 -k1,22059:21187542,16711994:148591 -k1,22059:21952172,16711994:148592 -k1,22059:22456624,16711994:148592 -k1,22059:24478235,16711994:148592 -k1,22059:25309712,16711994:148592 -k1,22059:28129551,16711994:148592 -k1,22059:29950622,16711994:148592 -k1,22059:30727049,16711994:148592 -k1,22059:32583029,16711994:0 -) -(1,22060:6630773,17553482:25952256,513147,102891 -g1,22059:8370753,17553482 -g1,22059:10021604,17553482 -g1,22059:11389340,17553482 -g1,22059:12689574,17553482 -g1,22059:14622886,17553482 -g1,22059:15481407,17553482 -g1,22059:18442979,17553482 -g1,22059:19714377,17553482 -g1,22059:21477295,17553482 -g1,22059:23814308,17553482 -k1,22060:32583029,17553482:6450057 -g1,22060:32583029,17553482 -) -(1,22062:6630773,18394970:25952256,513147,126483 -h1,22061:6630773,18394970:983040,0,0 -k1,22061:10616799,18394970:213118 -(1,22061:10616799,18394970:0,459977,115847 -r1,22106:15547319,18394970:4930520,575824,115847 -k1,22061:10616799,18394970:-4930520 -) -(1,22061:10616799,18394970:4930520,459977,115847 -k1,22061:10616799,18394970:3277 -h1,22061:15544042,18394970:0,411205,112570 -) -k1,22061:15760437,18394970:213118 -k1,22061:16505052,18394970:213118 -k1,22061:17074030,18394970:213118 -k1,22061:19929560,18394970:213118 -k1,22061:20952048,18394970:213118 -(1,22061:20952048,18394970:0,459977,115847 -r1,22106:24475720,18394970:3523672,575824,115847 -k1,22061:20952048,18394970:-3523672 -) -(1,22061:20952048,18394970:3523672,459977,115847 -k1,22061:20952048,18394970:3277 -h1,22061:24472443,18394970:0,411205,112570 -) -k1,22061:24688838,18394970:213118 -k1,22061:26186462,18394970:213118 -k1,22061:28777882,18394970:213118 -k1,22061:31171383,18394970:213118 -k1,22062:32583029,18394970:0 -) -(1,22062:6630773,19236458:25952256,513147,126483 -k1,22061:9002167,19236458:157588 -k1,22061:11361765,19236458:157588 -k1,22061:12170781,19236458:157588 -k1,22061:14072282,19236458:157588 -k1,22061:15743097,19236458:157589 -k1,22061:16516723,19236458:157588 -k1,22061:19888852,19236458:157588 -k1,22061:21317838,19236458:157588 -k1,22061:25415450,19236458:157588 -k1,22061:26240194,19236458:157588 -k1,22061:29438612,19236458:157547 -k1,22061:32583029,19236458:0 -) -(1,22062:6630773,20077946:25952256,513147,126483 -k1,22061:8296131,20077946:237328 -k1,22061:11127373,20077946:237327 -k1,22061:11896198,20077946:237328 -k1,22061:13418031,20077946:237327 -k1,22061:14674444,20077946:237328 -k1,22061:17395586,20077946:237327 -k1,22061:19925363,20077946:237328 -k1,22061:21266972,20077946:237327 -k1,22061:22252066,20077946:237328 -k1,22061:24986970,20077946:237327 -k1,22061:25840336,20077946:237328 -k1,22061:27096748,20077946:237327 -k1,22061:29145491,20077946:237328 -k1,22061:30365859,20077946:237328 -k1,22061:31794631,20077946:237327 -k1,22061:32583029,20077946:0 -) -(1,22062:6630773,20919434:25952256,513147,126483 -k1,22061:9468950,20919434:223946 -k1,22061:12524706,20919434:223945 -k1,22061:13434814,20919434:223946 -k1,22061:14980621,20919434:223946 -k1,22061:15863859,20919434:223946 -k1,22061:17106889,20919434:223945 -k1,22061:19511218,20919434:223946 -k1,22061:22990993,20919434:223946 -k1,22061:23570798,20919434:223945 -k1,22061:25267338,20919434:223946 -k1,22061:27004510,20919434:223946 -k1,22061:27879884,20919434:223946 -k1,22061:29819562,20919434:223945 -k1,22061:31269687,20919434:223946 -k1,22061:32583029,20919434:0 -) -(1,22062:6630773,21760922:25952256,513147,126483 -k1,22061:7776764,21760922:256012 -k1,22061:10032280,21760922:256013 -k1,22061:10947584,21760922:256012 -k1,22061:13202445,21760922:256013 -k1,22061:15568061,21760922:256012 -k1,22061:18349832,21760922:256013 -k1,22061:21035264,21760922:256012 -k1,22061:23955316,21760922:256013 -k1,22061:24878484,21760922:256012 -k1,22061:28175311,21760922:255956 -k1,22061:30957736,21760922:256012 -k1,22062:32583029,21760922:0 -) -(1,22062:6630773,22602410:25952256,513147,134348 -k1,22061:7849633,22602410:228611 -k1,22061:9645866,22602410:228612 -k1,22061:11065922,22602410:228611 -k1,22061:13552248,22602410:228611 -k1,22061:14432288,22602410:228612 -k1,22061:16362869,22602410:228611 -k1,22061:19102164,22602410:228611 -k1,22061:20477001,22602410:228612 -k1,22061:22449525,22602410:228611 -k1,22061:24413529,22602410:228611 -k1,22061:26045922,22602410:228612 -k1,22061:29493006,22602410:228611 -k1,22061:32583029,22602410:0 -) -(1,22062:6630773,23443898:25952256,505283,7863 -k1,22062:32583028,23443898:23923260 -g1,22062:32583028,23443898 -) -v1,22064:6630773,24634364:0,393216,0 -(1,22069:6630773,25501867:25952256,1260719,196608 -g1,22069:6630773,25501867 -g1,22069:6630773,25501867 -g1,22069:6434165,25501867 -(1,22069:6434165,25501867:0,1260719,196608 -r1,22106:32779637,25501867:26345472,1457327,196608 -k1,22069:6434165,25501867:-26345472 -) -(1,22069:6434165,25501867:26345472,1260719,196608 -[1,22069:6630773,25501867:25952256,1064111,0 -(1,22068:6630773,24826253:25952256,388497,9436 -(1,22065:6630773,24826253:0,0,0 -g1,22065:6630773,24826253 -g1,22065:6630773,24826253 -g1,22065:6303093,24826253 -(1,22065:6303093,24826253:0,0,0 -) -g1,22065:6630773,24826253 -) -g1,22068:6946919,24826253 -h1,22068:10424521,24826253:0,0,0 -k1,22068:32583029,24826253:22158508 -g1,22068:32583029,24826253 -) -(1,22068:6630773,25492431:25952256,388497,9436 -h1,22068:6630773,25492431:0,0,0 -g1,22068:8843793,25492431 -g1,22068:10108376,25492431 -h1,22068:10424522,25492431:0,0,0 -k1,22068:32583030,25492431:22158508 -g1,22068:32583030,25492431 -) -] -) -g1,22069:32583029,25501867 -g1,22069:6630773,25501867 -g1,22069:6630773,25501867 -g1,22069:32583029,25501867 -g1,22069:32583029,25501867 -) -h1,22069:6630773,25698475:0,0,0 -v1,22073:6630773,27413229:0,393216,0 -(1,22079:6630773,29041807:25952256,2021794,196608 -g1,22079:6630773,29041807 -g1,22079:6630773,29041807 -g1,22079:6434165,29041807 -(1,22079:6434165,29041807:0,2021794,196608 -r1,22106:32779637,29041807:26345472,2218402,196608 -k1,22079:6434165,29041807:-26345472 -) -(1,22079:6434165,29041807:26345472,2021794,196608 -[1,22079:6630773,29041807:25952256,1825186,0 -(1,22075:6630773,27627139:25952256,410518,107478 -(1,22074:6630773,27627139:0,0,0 -g1,22074:6630773,27627139 -g1,22074:6630773,27627139 -g1,22074:6303093,27627139 -(1,22074:6303093,27627139:0,0,0 -) -g1,22074:6630773,27627139 -) -g1,22075:11056813,27627139 -g1,22075:12005251,27627139 -k1,22075:12005251,27627139:0 -h1,22075:24967224,27627139:0,0,0 -k1,22075:32583029,27627139:7615805 -g1,22075:32583029,27627139 -) -(1,22076:6630773,28293317:25952256,410518,82312 -h1,22076:6630773,28293317:0,0,0 -g1,22076:6946919,28293317 -g1,22076:7263065,28293317 -g1,22076:7579211,28293317 -g1,22076:7895357,28293317 -g1,22076:8211503,28293317 -g1,22076:8527649,28293317 -g1,22076:8843795,28293317 -g1,22076:9159941,28293317 -g1,22076:9476087,28293317 -g1,22076:9792233,28293317 -g1,22076:10108379,28293317 -g1,22076:10424525,28293317 -g1,22076:10740671,28293317 -g1,22076:11056817,28293317 -g1,22076:11372963,28293317 -g1,22076:11689109,28293317 -g1,22076:12005255,28293317 -g1,22076:12321401,28293317 -g1,22076:12637547,28293317 -g1,22076:12953693,28293317 -g1,22076:13269839,28293317 -g1,22076:13585985,28293317 -g1,22076:13902131,28293317 -g1,22076:14218277,28293317 -g1,22076:14534423,28293317 -g1,22076:14850569,28293317 -g1,22076:15166715,28293317 -g1,22076:15482861,28293317 -g1,22076:15799007,28293317 -g1,22076:16115153,28293317 -g1,22076:18328173,28293317 -g1,22076:18960465,28293317 -g1,22076:22438069,28293317 -g1,22076:24967235,28293317 -k1,22076:24967235,28293317:0 -h1,22076:26864110,28293317:0,0,0 -k1,22076:32583029,28293317:5718919 -g1,22076:32583029,28293317 -) -(1,22077:6630773,28959495:25952256,404226,82312 -h1,22077:6630773,28959495:0,0,0 -g1,22077:6946919,28959495 -g1,22077:7263065,28959495 -g1,22077:7579211,28959495 -g1,22077:7895357,28959495 -g1,22077:8211503,28959495 -g1,22077:8527649,28959495 -g1,22077:8843795,28959495 -g1,22077:9159941,28959495 -g1,22077:9476087,28959495 -g1,22077:9792233,28959495 -g1,22077:10108379,28959495 -g1,22077:10424525,28959495 -g1,22077:10740671,28959495 -g1,22077:11056817,28959495 -g1,22077:11372963,28959495 -g1,22077:11689109,28959495 -g1,22077:12005255,28959495 -g1,22077:12321401,28959495 -g1,22077:12637547,28959495 -g1,22077:12953693,28959495 -g1,22077:13269839,28959495 -g1,22077:13585985,28959495 -g1,22077:13902131,28959495 -g1,22077:14218277,28959495 -g1,22077:14534423,28959495 -g1,22077:14850569,28959495 -g1,22077:15166715,28959495 -g1,22077:15482861,28959495 -g1,22077:15799007,28959495 -g1,22077:16115153,28959495 -g1,22077:19276610,28959495 -g1,22077:19908902,28959495 -g1,22077:23070360,28959495 -g1,22077:25599526,28959495 -g1,22077:28128692,28959495 -h1,22077:30657857,28959495:0,0,0 -k1,22077:32583029,28959495:1925172 -g1,22077:32583029,28959495 -) -] -) -g1,22079:32583029,29041807 -g1,22079:6630773,29041807 -g1,22079:6630773,29041807 -g1,22079:32583029,29041807 -g1,22079:32583029,29041807 -) -h1,22079:6630773,29238415:0,0,0 -v1,22083:6630773,30953169:0,393216,0 -(1,22097:6630773,34563172:25952256,4003219,196608 -g1,22097:6630773,34563172 -g1,22097:6630773,34563172 -g1,22097:6434165,34563172 -(1,22097:6434165,34563172:0,4003219,196608 -r1,22106:32779637,34563172:26345472,4199827,196608 -k1,22097:6434165,34563172:-26345472 -) -(1,22097:6434165,34563172:26345472,4003219,196608 -[1,22097:6630773,34563172:25952256,3806611,0 -(1,22085:6630773,31167079:25952256,410518,101187 -(1,22084:6630773,31167079:0,0,0 -g1,22084:6630773,31167079 -g1,22084:6630773,31167079 -g1,22084:6303093,31167079 -(1,22084:6303093,31167079:0,0,0 -) -g1,22084:6630773,31167079 -) -k1,22085:6630773,31167079:0 -g1,22085:13585979,31167079 -h1,22085:15482853,31167079:0,0,0 -k1,22085:32583029,31167079:17100176 -g1,22085:32583029,31167079 -) -(1,22090:6630773,31833257:25952256,404226,9436 -(1,22087:6630773,31833257:0,0,0 -g1,22087:6630773,31833257 -g1,22087:6630773,31833257 -g1,22087:6303093,31833257 -(1,22087:6303093,31833257:0,0,0 -) -g1,22087:6630773,31833257 -) -g1,22090:7579210,31833257 -g1,22090:7895356,31833257 -g1,22090:8211502,31833257 -g1,22090:8527648,31833257 -g1,22090:8843794,31833257 -g1,22090:9159940,31833257 -g1,22090:9476086,31833257 -g1,22090:9792232,31833257 -g1,22090:11372961,31833257 -g1,22090:11689107,31833257 -g1,22090:12005253,31833257 -g1,22090:12321399,31833257 -g1,22090:12637545,31833257 -g1,22090:12953691,31833257 -g1,22090:13269837,31833257 -g1,22090:13585983,31833257 -g1,22090:15166712,31833257 -g1,22090:15482858,31833257 -g1,22090:15799004,31833257 -g1,22090:16115150,31833257 -g1,22090:16431296,31833257 -g1,22090:16747442,31833257 -g1,22090:17063588,31833257 -g1,22090:17379734,31833257 -g1,22090:18960463,31833257 -g1,22090:19276609,31833257 -g1,22090:19592755,31833257 -g1,22090:19908901,31833257 -g1,22090:20225047,31833257 -g1,22090:20541193,31833257 -g1,22090:20857339,31833257 -g1,22090:21173485,31833257 -h1,22090:22438068,31833257:0,0,0 -k1,22090:32583029,31833257:10144961 -g1,22090:32583029,31833257 -) -(1,22090:6630773,32499435:25952256,404226,6290 -h1,22090:6630773,32499435:0,0,0 -g1,22090:7579210,32499435 -g1,22090:7895356,32499435 -g1,22090:8211502,32499435 -g1,22090:11372959,32499435 -g1,22090:11689105,32499435 -g1,22090:12005251,32499435 -g1,22090:15166708,32499435 -g1,22090:15482854,32499435 -g1,22090:15799000,32499435 -g1,22090:18960457,32499435 -h1,22090:22438059,32499435:0,0,0 -k1,22090:32583029,32499435:10144970 -g1,22090:32583029,32499435 -) -(1,22092:6630773,33820973:25952256,410518,76021 -(1,22091:6630773,33820973:0,0,0 -g1,22091:6630773,33820973 -g1,22091:6630773,33820973 -g1,22091:6303093,33820973 -(1,22091:6303093,33820973:0,0,0 -) -g1,22091:6630773,33820973 -) -h1,22092:13902123,33820973:0,0,0 -k1,22092:32583029,33820973:18680906 -g1,22092:32583029,33820973 -) -(1,22096:6630773,34487151:25952256,404226,76021 -(1,22094:6630773,34487151:0,0,0 -g1,22094:6630773,34487151 -g1,22094:6630773,34487151 -g1,22094:6303093,34487151 -(1,22094:6303093,34487151:0,0,0 -) -g1,22094:6630773,34487151 -) -g1,22096:7579210,34487151 -g1,22096:8843793,34487151 -g1,22096:10740667,34487151 -g1,22096:11689104,34487151 -h1,22096:12321395,34487151:0,0,0 -k1,22096:32583029,34487151:20261634 -g1,22096:32583029,34487151 -) -] -) -g1,22097:32583029,34563172 -g1,22097:6630773,34563172 -g1,22097:6630773,34563172 -g1,22097:32583029,34563172 -g1,22097:32583029,34563172 -) -h1,22097:6630773,34759780:0,0,0 -v1,22101:6630773,36649844:0,393216,0 -(1,22102:6630773,43878169:25952256,7621541,0 -g1,22102:6630773,43878169 -g1,22102:6303093,43878169 -r1,22106:6401397,43878169:98304,7621541,0 -g1,22102:6600626,43878169 -g1,22102:6797234,43878169 -[1,22102:6797234,43878169:25785795,7621541,0 -(1,22102:6797234,37011917:25785795,755289,196608 -(1,22101:6797234,37011917:0,755289,196608 -r1,22106:8134168,37011917:1336934,951897,196608 -k1,22101:6797234,37011917:-1336934 -) -(1,22101:6797234,37011917:1336934,755289,196608 -) -k1,22101:8273936,37011917:139768 -k1,22101:8601616,37011917:327680 -k1,22101:9938072,37011917:139769 -k1,22101:11060880,37011917:139768 -k1,22101:13603198,37011917:139768 -k1,22101:16768763,37011917:139768 -k1,22101:19998555,37011917:139769 -k1,22101:21993647,37011917:139768 -k1,22101:23870119,37011917:139768 -k1,22101:25403838,37011917:139768 -(1,22101:25403838,37011917:0,452978,115847 -r1,22106:29630934,37011917:4227096,568825,115847 -k1,22101:25403838,37011917:-4227096 -) -(1,22101:25403838,37011917:4227096,452978,115847 -k1,22101:25403838,37011917:3277 -h1,22101:29627657,37011917:0,411205,112570 -) -k1,22101:29770703,37011917:139769 -k1,22101:30929556,37011917:139768 -k1,22101:32583029,37011917:0 -) -(1,22102:6797234,37853405:25785795,513147,126483 -k1,22101:10777432,37853405:195494 -k1,22101:11600760,37853405:195493 -k1,22101:14462259,37853405:195494 -k1,22101:15309181,37853405:195494 -k1,22101:17248587,37853405:195493 -k1,22101:20534104,37853405:195494 -k1,22101:22758593,37853405:195494 -k1,22101:24656057,37853405:195494 -k1,22101:28156531,37853405:195493 -k1,22101:30329246,37853405:195494 -k1,22102:32583029,37853405:0 -) -(1,22102:6797234,38694893:25785795,513147,126483 -k1,22101:8576076,38694893:208599 -k1,22101:9776236,38694893:208600 -(1,22101:9776236,38694893:0,452978,115847 -r1,22106:11189637,38694893:1413401,568825,115847 -k1,22101:9776236,38694893:-1413401 -) -(1,22101:9776236,38694893:1413401,452978,115847 -k1,22101:9776236,38694893:3277 -h1,22101:11186360,38694893:0,411205,112570 -) -k1,22101:11398236,38694893:208599 -k1,22101:12798280,38694893:208599 -(1,22101:12798280,38694893:0,414482,115847 -r1,22106:13156546,38694893:358266,530329,115847 -k1,22101:12798280,38694893:-358266 -) -(1,22101:12798280,38694893:358266,414482,115847 -k1,22101:12798280,38694893:3277 -h1,22101:13153269,38694893:0,411205,112570 -) -k1,22101:13538816,38694893:208600 -k1,22101:15632886,38694893:208599 -k1,22101:16945767,38694893:208599 -k1,22101:17902133,38694893:208600 -k1,22101:19623958,38694893:208599 -k1,22101:20483985,38694893:208599 -k1,22101:22037383,38694893:208599 -k1,22101:23744791,38694893:208600 -k1,22101:24566152,38694893:208599 -k1,22101:25793836,38694893:208599 -k1,22101:27074605,38694893:208600 -k1,22101:27942496,38694893:208599 -k1,22101:28506955,38694893:208599 -k1,22101:29698595,38694893:208600 -k1,22101:31098639,38694893:208599 -k1,22101:32583029,38694893:0 -) -(1,22102:6797234,39536381:25785795,513147,134348 -k1,22101:7995786,39536381:179467 -k1,22101:10661034,39536381:179467 -k1,22101:11499793,39536381:179467 -k1,22101:13178067,39536381:179466 -k1,22101:14247513,39536381:179467 -k1,22101:17037279,39536381:179467 -k1,22101:17868174,39536381:179467 -k1,22101:19633612,39536381:179467 -(1,22101:19633612,39536381:0,452978,115847 -r1,22106:21750437,39536381:2116825,568825,115847 -k1,22101:19633612,39536381:-2116825 -) -(1,22101:19633612,39536381:2116825,452978,115847 -k1,22101:19633612,39536381:3277 -h1,22101:21747160,39536381:0,411205,112570 -) -k1,22101:22103574,39536381:179467 -k1,22101:24168511,39536381:179466 -k1,22101:26726280,39536381:179467 -k1,22101:27261607,39536381:179467 -k1,22101:29510701,39536381:179467 -k1,22101:32583029,39536381:0 -) -(1,22102:6797234,40377869:25785795,513147,134348 -k1,22101:10254773,40377869:282975 -k1,22101:11003709,40377869:282975 -k1,22101:12305769,40377869:282975 -k1,22101:14322827,40377869:282975 -k1,22101:15221840,40377869:282975 -k1,22101:16523900,40377869:282975 -k1,22101:18113008,40377869:282975 -k1,22101:19622161,40377869:282974 -k1,22101:21073643,40377869:282975 -k1,22101:22768919,40377869:282975 -k1,22101:25232277,40377869:282975 -k1,22101:26263018,40377869:282975 -k1,22101:29231003,40377869:282975 -k1,22101:30200140,40377869:282975 -k1,22101:32583029,40377869:0 -) -(1,22102:6797234,41219357:25785795,505283,126483 -k1,22101:9128912,41219357:263362 -k1,22101:11343936,41219357:263362 -k1,22101:13049745,41219357:263362 -k1,22101:14876141,41219357:263362 -(1,22101:14876141,41219357:0,452978,122846 -r1,22106:18399813,41219357:3523672,575824,122846 -k1,22101:14876141,41219357:-3523672 -) -(1,22101:14876141,41219357:3523672,452978,122846 -k1,22101:14876141,41219357:3277 -h1,22101:18396536,41219357:0,411205,112570 -) -k1,22101:18836845,41219357:263362 -k1,22101:19751635,41219357:263362 -k1,22101:21900468,41219357:263362 -k1,22101:23268112,41219357:263362 -k1,22101:24279240,41219357:263362 -k1,22101:26747889,41219357:263362 -k1,22101:27367111,41219357:263362 -k1,22101:30605152,41219357:263362 -k1,22101:32583029,41219357:0 -) -(1,22102:6797234,42060845:25785795,513147,134348 -k1,22101:8454092,42060845:262907 -k1,22101:10913109,42060845:262906 -k1,22101:11827444,42060845:262907 -k1,22101:12838116,42060845:262906 -k1,22101:16691085,42060845:262907 -k1,22101:17640154,42060845:262907 -(1,22101:17640154,42060845:0,414482,115847 -r1,22106:18350132,42060845:709978,530329,115847 -k1,22101:17640154,42060845:-709978 -) -(1,22101:17640154,42060845:709978,414482,115847 -k1,22101:17640154,42060845:3277 -h1,22101:18346855,42060845:0,411205,112570 -) -k1,22101:18786708,42060845:262906 -k1,22101:20241060,42060845:262907 -(1,22101:20241060,42060845:0,452978,115847 -r1,22106:23764732,42060845:3523672,568825,115847 -k1,22101:20241060,42060845:-3523672 -) -(1,22101:20241060,42060845:3523672,452978,115847 -k1,22101:20241060,42060845:3277 -h1,22101:23761455,42060845:0,411205,112570 -) -k1,22101:24201308,42060845:262906 -k1,22101:26349686,42060845:262907 -k1,22101:29372968,42060845:262906 -k1,22101:31923737,42060845:262907 -k1,22101:32583029,42060845:0 -) -(1,22102:6797234,42902333:25785795,513147,134348 -k1,22101:8032337,42902333:216018 -k1,22101:11725040,42902333:216018 -k1,22101:12600350,42902333:216018 -k1,22101:13835452,42902333:216017 -k1,22101:15785553,42902333:216018 -k1,22101:16652999,42902333:216018 -k1,22101:17283843,42902333:216001 -k1,22101:19732673,42902333:216018 -k1,22101:21140136,42902333:216018 -k1,22101:23999876,42902333:216018 -k1,22101:26971682,42902333:216017 -k1,22101:28879840,42902333:216018 -k1,22101:31809049,42902333:216018 -k1,22102:32583029,42902333:0 -) -(1,22102:6797234,43743821:25785795,505283,134348 -g1,22101:9850556,43743821 -g1,22101:10947628,43743821 -g1,22101:12843584,43743821 -g1,22101:16653847,43743821 -g1,22101:17844636,43743821 -g1,22101:21133888,43743821 -g1,22101:21949155,43743821 -g1,22101:23167469,43743821 -g1,22101:27990263,43743821 -g1,22101:29577545,43743821 -k1,22102:32583029,43743821:1003359 -g1,22102:32583029,43743821 -) -] -g1,22102:32583029,43878169 -) -h1,22102:6630773,43878169:0,0,0 -v1,22105:6630773,45243945:0,393216,0 -] -(1,22106:32583029,45706769:0,0,0 -g1,22106:32583029,45706769 -) -) -] -(1,22106:6630773,47279633:25952256,0,0 -h1,22106:6630773,47279633:25952256,0,0 -) -] -(1,22106:4262630,4025873:0,0,0 -[1,22106:-473656,4025873:0,0,0 -(1,22106:-473656,-710413:0,0,0 -(1,22106:-473656,-710413:0,0,0 -g1,22106:-473656,-710413 -) -g1,22106:-473656,-710413 -) -] -) -] -!28884 -}400 -Input:3592:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3593:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3594:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3595:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3596:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3597:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3598:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3599:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3600:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3601:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3602:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3603:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3604:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1234 -{401 -[1,22165:4262630,47279633:28320399,43253760,0 -(1,22165:4262630,4025873:0,0,0 -[1,22165:-473656,4025873:0,0,0 -(1,22165:-473656,-710413:0,0,0 -(1,22165:-473656,-644877:0,0,0 -k1,22165:-473656,-644877:-65536 +[1,22315:3078558,4812305:0,0,0 +(1,22315:3078558,49800853:0,16384,2228224 +k1,22315:1358238,49800853:-1720320 +(1,21670:1358238,49800853:1720320,16384,2228224 +(1,21670:1358238,49800853:1179648,16384,0 +r1,22315:2537886,49800853:1179648,16384,0 +) +g1,21670:3062174,49800853 +(1,21670:3062174,52029077:16384,1703936,0 +[1,21670:3062174,52029077:25952256,1703936,0 +(1,21670:3062174,51504789:25952256,1179648,0 +(1,21670:3062174,51504789:16384,1179648,0 +r1,22315:3078558,51504789:16384,1179648,0 +) +k1,21670:29014430,51504789:25935872 +g1,21670:29014430,51504789 +) +] +) +) +) +] +[1,22315:3078558,4812305:0,0,0 +(1,22315:3078558,49800853:0,16384,2228224 +g1,22315:29030814,49800853 +g1,22315:36135244,49800853 +(1,21670:36135244,49800853:1720320,16384,2228224 +(1,21670:36135244,52029077:16384,1703936,0 +[1,21670:36135244,52029077:25952256,1703936,0 +(1,21670:36135244,51504789:25952256,1179648,0 +(1,21670:36135244,51504789:16384,1179648,0 +r1,22315:36151628,51504789:16384,1179648,0 +) +k1,21670:62087500,51504789:25935872 +g1,21670:62087500,51504789 +) +] +) +g1,21670:36675916,49800853 +(1,21670:36675916,49800853:1179648,16384,0 +r1,22315:37855564,49800853:1179648,16384,0 +) +) +k1,22315:3078556,49800853:-34777008 +) +] +g1,22315:6630773,4812305 +k1,22315:21078841,4812305:13252691 +g1,22315:22701512,4812305 +g1,22315:23350318,4812305 +g1,22315:24759997,4812305 +g1,22315:28372341,4812305 +g1,22315:30105768,4812305 +) +) +] +[1,22315:6630773,45706769:25952256,40108032,0 +(1,22315:6630773,45706769:25952256,40108032,0 +(1,22315:6630773,45706769:0,0,0 +g1,22315:6630773,45706769 +) +[1,22315:6630773,45706769:25952256,40108032,0 +(1,22228:6630773,6254097:25952256,513147,134348 +h1,22227:6630773,6254097:983040,0,0 +k1,22227:10388804,6254097:208601 +k1,22227:12615914,6254097:208601 +k1,22227:14015959,6254097:208600 +k1,22227:17948316,6254097:208601 +k1,22227:20846515,6254097:208601 +k1,22227:22046676,6254097:208601 +k1,22227:24705013,6254097:208601 +k1,22227:25861264,6254097:208600 +k1,22227:28501906,6254097:208601 +k1,22227:30398714,6254097:208601 +k1,22227:32583029,6254097:0 +) +(1,22228:6630773,7119177:25952256,505283,134348 +k1,22227:7395326,7119177:136718 +k1,22227:12893544,7119177:136718 +k1,22227:15375796,7119177:136718 +k1,22227:16531600,7119177:136719 +k1,22227:19152133,7119177:136718 +k1,22227:20945601,7119177:136718 +k1,22227:21613816,7119177:136718 +k1,22227:22106394,7119177:136718 +k1,22227:24104990,7119177:136718 +k1,22227:25931227,7119177:136719 +k1,22227:26683983,7119177:136718 +k1,22227:28572478,7119177:136718 +k1,22227:30411166,7119177:136718 +k1,22227:32583029,7119177:0 +) +(1,22228:6630773,7984257:25952256,513147,134348 +k1,22227:7323744,7984257:234874 +k1,22227:8090114,7984257:234873 +k1,22227:8680848,7984257:234874 +k1,22227:11413299,7984257:234874 +k1,22227:12125929,7984257:234873 +k1,22227:12716663,7984257:234874 +k1,22227:15275444,7984257:234874 +k1,22227:16041814,7984257:234873 +k1,22227:17789914,7984257:234874 +k1,22227:18710950,7984257:234874 +k1,22227:21429638,7984257:234873 +k1,22227:24130632,7984257:234874 +k1,22227:25233858,7984257:234874 +k1,22227:26573013,7984257:234873 +k1,22227:27617257,7984257:234874 +k1,22227:29876538,7984257:234874 +k1,22227:31203896,7984257:234873 +k1,22227:31896867,7984257:234874 +k1,22227:32583029,7984257:0 +) +(1,22228:6630773,8849337:25952256,513147,126483 +k1,22227:8213941,8849337:179387 +k1,22227:11431577,8849337:179387 +k1,22227:12802409,8849337:179387 +k1,22227:13513294,8849337:179388 +k1,22227:15979888,8849337:179387 +k1,22227:19789970,8849337:179387 +k1,22227:20730885,8849337:179387 +k1,22227:21266132,8849337:179387 +k1,22227:24686930,8849337:179387 +h1,22227:24894024,8849337:0,0,0 +k1,22227:25869117,8849337:179387 +k1,22227:26676339,8849337:179387 +k1,22227:28349293,8849337:179388 +k1,22227:28884540,8849337:179387 +k1,22227:30431008,8849337:179387 +k1,22227:31478747,8849337:179387 +k1,22227:32583029,8849337:0 +) +(1,22228:6630773,9714417:25952256,505283,126483 +k1,22227:8011149,9714417:287891 +(1,22227:8011149,9714417:0,452978,115847 +r1,22315:11886533,9714417:3875384,568825,115847 +k1,22227:8011149,9714417:-3875384 +) +(1,22227:8011149,9714417:3875384,452978,115847 +k1,22227:8011149,9714417:3277 +h1,22227:11883256,9714417:0,411205,112570 +) +k1,22227:12174423,9714417:287890 +k1,22227:13653759,9714417:287891 +(1,22227:13653759,9714417:0,452978,115847 +r1,22315:17880855,9714417:4227096,568825,115847 +k1,22227:13653759,9714417:-4227096 +) +(1,22227:13653759,9714417:4227096,452978,115847 +k1,22227:13653759,9714417:3277 +h1,22227:17877578,9714417:0,411205,112570 +) +k1,22227:18342416,9714417:287891 +k1,22227:22823955,9714417:287890 +k1,22227:26722880,9714417:287891 +(1,22227:26722880,9714417:0,452978,115847 +r1,22315:27784569,9714417:1061689,568825,115847 +k1,22227:26722880,9714417:-1061689 +) +(1,22227:26722880,9714417:1061689,452978,115847 +k1,22227:26722880,9714417:3277 +h1,22227:27781292,9714417:0,411205,112570 +) +k1,22227:28072460,9714417:287891 +k1,22227:29551795,9714417:287890 +(1,22227:29551795,9714417:0,414482,115847 +r1,22315:30613484,9714417:1061689,530329,115847 +k1,22227:29551795,9714417:-1061689 +) +(1,22227:29551795,9714417:1061689,414482,115847 +k1,22227:29551795,9714417:3277 +h1,22227:30610207,9714417:0,411205,112570 +) +k1,22227:30901375,9714417:287891 +k1,22227:32583029,9714417:0 +) +(1,22228:6630773,10579497:25952256,505283,134348 +k1,22227:9028209,10579497:215742 +k1,22227:10883006,10579497:215742 +k1,22227:11750176,10579497:215742 +k1,22227:14762339,10579497:215742 +k1,22227:18456732,10579497:215742 +k1,22227:21462342,10579497:215742 +(1,22227:21462342,10579497:0,452978,115847 +r1,22315:25689438,10579497:4227096,568825,115847 +k1,22227:21462342,10579497:-4227096 +) +(1,22227:21462342,10579497:4227096,452978,115847 +k1,22227:21462342,10579497:3277 +h1,22227:25686161,10579497:0,411205,112570 +) +k1,22227:25905180,10579497:215742 +k1,22227:27613832,10579497:215742 +k1,22227:28848659,10579497:215742 +k1,22227:30986572,10579497:215742 +k1,22227:32583029,10579497:0 +) +(1,22228:6630773,11444577:25952256,513147,134348 +k1,22227:7981705,11444577:159487 +k1,22227:11166989,11444577:159487 +k1,22227:12472702,11444577:159488 +(1,22227:12472702,11444577:0,452978,115847 +r1,22315:15996374,11444577:3523672,568825,115847 +k1,22227:12472702,11444577:-3523672 +) +(1,22227:12472702,11444577:3523672,452978,115847 +k1,22227:12472702,11444577:3277 +h1,22227:15993097,11444577:0,411205,112570 +) +k1,22227:16155861,11444577:159487 +k1,22227:17690949,11444577:159487 +k1,22227:19593694,11444577:159487 +k1,22227:20369220,11444577:159488 +k1,22227:21547792,11444577:159487 +k1,22227:23972859,11444577:159487 +k1,22227:27534975,11444577:159487 +k1,22227:28642114,11444577:159488 +k1,22227:29820686,11444577:159487 +k1,22227:32583029,11444577:0 +) +(1,22228:6630773,12309657:25952256,513147,126483 +k1,22227:10578421,12309657:162944 +k1,22227:11501583,12309657:162944 +k1,22227:14103777,12309657:162944 +(1,22227:14103777,12309657:0,452978,115847 +r1,22315:18330873,12309657:4227096,568825,115847 +k1,22227:14103777,12309657:-4227096 +) +(1,22227:14103777,12309657:4227096,452978,115847 +k1,22227:14103777,12309657:3277 +h1,22227:18327596,12309657:0,411205,112570 +) +k1,22227:18493817,12309657:162944 +k1,22227:21058000,12309657:162944 +k1,22227:22955027,12309657:162944 +k1,22227:23769399,12309657:162944 +k1,22227:24680109,12309657:162944 +k1,22227:27966499,12309657:162944 +k1,22227:28890971,12309657:162944 +k1,22227:30795207,12309657:162944 +k1,22227:32583029,12309657:0 +) +(1,22228:6630773,13174737:25952256,505283,134348 +k1,22227:8238917,13174737:244340 +k1,22227:9166142,13174737:244340 +k1,22227:11060679,13174737:244340 +k1,22227:13596813,13174737:244340 +k1,22227:15358311,13174737:244340 +k1,22227:16885846,13174737:244340 +k1,22227:18802665,13174737:244340 +k1,22227:19729890,13174737:244340 +k1,22227:22518993,13174737:244340 +k1,22227:25154742,13174737:244340 +k1,22227:27620097,13174737:244340 +k1,22227:29258388,13174737:244340 +k1,22227:32583029,13174737:0 +) +(1,22228:6630773,14039817:25952256,513147,126483 +g1,22227:8948126,14039817 +g1,22227:10677621,14039817 +g1,22227:11528278,14039817 +g1,22227:12475273,14039817 +g1,22227:14913212,14039817 +g1,22227:15728479,14039817 +g1,22227:16946793,14039817 +g1,22227:18129062,14039817 +g1,22227:19014453,14039817 +g1,22227:21289207,14039817 +k1,22228:32583029,14039817:9251720 +g1,22228:32583029,14039817 +) +v1,22230:6630773,14724672:0,393216,0 +(1,22236:6630773,16332121:25952256,2000665,196608 +g1,22236:6630773,16332121 +g1,22236:6630773,16332121 +g1,22236:6434165,16332121 +(1,22236:6434165,16332121:0,2000665,196608 +r1,22315:32779637,16332121:26345472,2197273,196608 +k1,22236:6434165,16332121:-26345472 +) +(1,22236:6434165,16332121:26345472,2000665,196608 +[1,22236:6630773,16332121:25952256,1804057,0 +(1,22235:6630773,14952503:25952256,424439,9908 +(1,22231:6630773,14952503:0,0,0 +g1,22231:6630773,14952503 +g1,22231:6630773,14952503 +g1,22231:6303093,14952503 +(1,22231:6303093,14952503:0,0,0 +) +g1,22231:6630773,14952503 +) +g1,22235:8290543,14952503 +g1,22235:9950313,14952503 +g1,22235:11610083,14952503 +h1,22235:12937899,14952503:0,0,0 +k1,22235:32583029,14952503:19645130 +g1,22235:32583029,14952503 +) +(1,22235:6630773,15637358:25952256,407923,9908 +h1,22235:6630773,15637358:0,0,0 +g1,22235:6962727,15637358 +g1,22235:8290543,15637358 +g1,22235:9950313,15637358 +g1,22235:10282267,15637358 +g1,22235:11610083,15637358 +h1,22235:12605945,15637358:0,0,0 +k1,22235:32583029,15637358:19977084 +g1,22235:32583029,15637358 +) +(1,22235:6630773,16322213:25952256,424439,9908 +h1,22235:6630773,16322213:0,0,0 +g1,22235:8290543,16322213 +g1,22235:9950313,16322213 +g1,22235:10282267,16322213 +g1,22235:10614221,16322213 +g1,22235:11610083,16322213 +g1,22235:12605945,16322213 +h1,22235:13269853,16322213:0,0,0 +k1,22235:32583029,16322213:19313176 +g1,22235:32583029,16322213 +) +] +) +g1,22236:32583029,16332121 +g1,22236:6630773,16332121 +g1,22236:6630773,16332121 +g1,22236:32583029,16332121 +g1,22236:32583029,16332121 +) +h1,22236:6630773,16528729:0,0,0 +v1,22240:6630773,17213584:0,393216,0 +(1,22244:6630773,17560873:25952256,740505,196608 +g1,22244:6630773,17560873 +g1,22244:6630773,17560873 +g1,22244:6434165,17560873 +(1,22244:6434165,17560873:0,740505,196608 +r1,22315:32779637,17560873:26345472,937113,196608 +k1,22244:6434165,17560873:-26345472 +) +(1,22244:6434165,17560873:26345472,740505,196608 +[1,22244:6630773,17560873:25952256,543897,0 +(1,22242:6630773,17448021:25952256,431045,112852 +(1,22241:6630773,17448021:0,0,0 +g1,22241:6630773,17448021 +g1,22241:6630773,17448021 +g1,22241:6303093,17448021 +(1,22241:6303093,17448021:0,0,0 +) +g1,22241:6630773,17448021 +) +g1,22242:11278128,17448021 +g1,22242:12273990,17448021 +g1,22242:25552147,17448021 +g1,22242:27875825,17448021 +g1,22242:28539733,17448021 +h1,22242:30199503,17448021:0,0,0 +k1,22242:32583029,17448021:2383526 +g1,22242:32583029,17448021 +) +] +) +g1,22244:32583029,17560873 +g1,22244:6630773,17560873 +g1,22244:6630773,17560873 +g1,22244:32583029,17560873 +g1,22244:32583029,17560873 +) +h1,22244:6630773,17757481:0,0,0 +v1,22248:6630773,18442336:0,393216,0 +(1,22268:6630773,23449520:25952256,5400400,196608 +g1,22268:6630773,23449520 +g1,22268:6630773,23449520 +g1,22268:6434165,23449520 +(1,22268:6434165,23449520:0,5400400,196608 +r1,22315:32779637,23449520:26345472,5597008,196608 +k1,22268:6434165,23449520:-26345472 +) +(1,22268:6434165,23449520:26345472,5400400,196608 +[1,22268:6630773,23449520:25952256,5203792,0 +(1,22250:6630773,18676773:25952256,431045,106246 +(1,22249:6630773,18676773:0,0,0 +g1,22249:6630773,18676773 +g1,22249:6630773,18676773 +g1,22249:6303093,18676773 +(1,22249:6303093,18676773:0,0,0 +) +g1,22249:6630773,18676773 +) +k1,22250:6630773,18676773:0 +g1,22250:13933760,18676773 +h1,22250:15925484,18676773:0,0,0 +k1,22250:32583029,18676773:16657545 +g1,22250:32583029,18676773 +) +(1,22255:6630773,19492700:25952256,424439,9908 +(1,22252:6630773,19492700:0,0,0 +g1,22252:6630773,19492700 +g1,22252:6630773,19492700 +g1,22252:6303093,19492700 +(1,22252:6303093,19492700:0,0,0 +) +g1,22252:6630773,19492700 +) +g1,22255:7626635,19492700 +g1,22255:7958589,19492700 +g1,22255:8290543,19492700 +g1,22255:8622497,19492700 +g1,22255:8954451,19492700 +g1,22255:9286405,19492700 +g1,22255:9618359,19492700 +g1,22255:9950313,19492700 +g1,22255:11610083,19492700 +g1,22255:11942037,19492700 +g1,22255:12273991,19492700 +g1,22255:12605945,19492700 +g1,22255:12937899,19492700 +g1,22255:13269853,19492700 +g1,22255:13601807,19492700 +g1,22255:13933761,19492700 +g1,22255:15593531,19492700 +g1,22255:15925485,19492700 +g1,22255:16257439,19492700 +g1,22255:16589393,19492700 +g1,22255:16921347,19492700 +g1,22255:17253301,19492700 +g1,22255:17585255,19492700 +g1,22255:17917209,19492700 +g1,22255:19576979,19492700 +g1,22255:19908933,19492700 +g1,22255:20240887,19492700 +g1,22255:20572841,19492700 +g1,22255:20904795,19492700 +g1,22255:21236749,19492700 +g1,22255:21568703,19492700 +g1,22255:21900657,19492700 +h1,22255:23228473,19492700:0,0,0 +k1,22255:32583029,19492700:9354556 +g1,22255:32583029,19492700 +) +(1,22255:6630773,20177555:25952256,424439,112852 +h1,22255:6630773,20177555:0,0,0 +g1,22255:7626635,20177555 +g1,22255:7958589,20177555 +g1,22255:8290543,20177555 +g1,22255:11610082,20177555 +g1,22255:11942036,20177555 +g1,22255:12273990,20177555 +g1,22255:15593529,20177555 +g1,22255:15925483,20177555 +g1,22255:16257437,20177555 +g1,22255:19576976,20177555 +h1,22255:23228469,20177555:0,0,0 +k1,22255:32583029,20177555:9354560 +g1,22255:32583029,20177555 +) +(1,22257:6630773,20993482:25952256,431045,79822 +(1,22256:6630773,20993482:0,0,0 +g1,22256:6630773,20993482 +g1,22256:6630773,20993482 +g1,22256:6303093,20993482 +(1,22256:6303093,20993482:0,0,0 +) +g1,22256:6630773,20993482 +) +h1,22257:14265714,20993482:0,0,0 +k1,22257:32583030,20993482:18317316 +g1,22257:32583030,20993482 +) +(1,22261:6630773,21809409:25952256,424439,79822 +(1,22259:6630773,21809409:0,0,0 +g1,22259:6630773,21809409 +g1,22259:6630773,21809409 +g1,22259:6303093,21809409 +(1,22259:6303093,21809409:0,0,0 +) +g1,22259:6630773,21809409 +) +g1,22261:7626635,21809409 +g1,22261:8954451,21809409 +g1,22261:10946175,21809409 +g1,22261:11942037,21809409 +h1,22261:12605945,21809409:0,0,0 +k1,22261:32583029,21809409:19977084 +g1,22261:32583029,21809409 +) +(1,22263:6630773,22625336:25952256,431045,79822 +(1,22262:6630773,22625336:0,0,0 +g1,22262:6630773,22625336 +g1,22262:6630773,22625336 +g1,22262:6303093,22625336 +(1,22262:6303093,22625336:0,0,0 +) +g1,22262:6630773,22625336 +) +k1,22263:6630773,22625336:0 +h1,22263:16921346,22625336:0,0,0 +k1,22263:32583029,22625336:15661683 +g1,22263:32583029,22625336 +) +(1,22267:6630773,23441263:25952256,398014,8257 +(1,22265:6630773,23441263:0,0,0 +g1,22265:6630773,23441263 +g1,22265:6630773,23441263 +g1,22265:6303093,23441263 +(1,22265:6303093,23441263:0,0,0 +) +g1,22265:6630773,23441263 +) +g1,22267:7626635,23441263 +h1,22267:8954451,23441263:0,0,0 +k1,22267:32583029,23441263:23628578 +g1,22267:32583029,23441263 +) +] +) +g1,22268:32583029,23449520 +g1,22268:6630773,23449520 +g1,22268:6630773,23449520 +g1,22268:32583029,23449520 +g1,22268:32583029,23449520 +) +h1,22268:6630773,23646128:0,0,0 +(1,22273:6630773,24511208:25952256,513147,134348 +h1,22272:6630773,24511208:983040,0,0 +k1,22272:9318226,24511208:225265 +k1,22272:9899351,24511208:225265 +k1,22272:13715989,24511208:225265 +k1,22272:16295307,24511208:225265 +k1,22272:17329942,24511208:225265 +k1,22272:20773680,24511208:225265 +k1,22272:21990505,24511208:225265 +k1,22272:24687788,24511208:225265 +k1,22272:27902805,24511208:225265 +k1,22272:28659567,24511208:225265 +k1,22272:30739501,24511208:225265 +k1,22272:32583029,24511208:0 +) +(1,22273:6630773,25376288:25952256,513147,126483 +k1,22272:7693566,25376288:253423 +k1,22272:8966074,25376288:253423 +k1,22272:11833728,25376288:253423 +k1,22272:12746442,25376288:253422 +k1,22272:14018950,25376288:253423 +k1,22272:17577354,25376288:253423 +k1,22272:18446815,25376288:253423 +k1,22272:19719323,25376288:253423 +k1,22272:21141253,25376288:253423 +k1,22272:22077560,25376288:253422 +k1,22272:24577557,25376288:253423 +k1,22272:25318514,25376288:253369 +k1,22272:26554977,25376288:253423 +k1,22272:27954624,25376288:253422 +k1,22272:29411288,25376288:253423 +k1,22272:31835263,25376288:253423 +k1,22272:32583029,25376288:0 +) +(1,22273:6630773,26241368:25952256,513147,134348 +k1,22272:10517331,26241368:296496 +k1,22272:13274048,26241368:296495 +k1,22272:13926404,26241368:296496 +k1,22272:17832623,26241368:296496 +k1,22272:18788410,26241368:296495 +k1,22272:20103991,26241368:296496 +k1,22272:22580870,26241368:296496 +k1,22272:24390591,26241368:296495 +k1,22272:25634738,26241368:296496 +k1,22272:27964816,26241368:296496 +k1,22272:29280396,26241368:296495 +k1,22272:31139926,26241368:296496 +k1,22272:32583029,26241368:0 +) +(1,22273:6630773,27106448:25952256,513147,134348 +k1,22272:10161378,27106448:168608 +k1,22272:11719349,27106448:168608 +k1,22272:13926126,27106448:168607 +k1,22272:14710772,27106448:168608 +k1,22272:16366392,27106448:168608 +k1,22272:18296608,27106448:168608 +k1,22272:20688852,27106448:168608 +k1,22272:21961742,27106448:168608 +k1,22272:22878115,27106448:168607 +k1,22272:24459024,27106448:168608 +k1,22272:26021583,27106448:168608 +k1,22272:28885687,27106448:168608 +(1,22272:28885687,27106448:0,459977,115847 +r1,22315:32409359,27106448:3523672,575824,115847 +k1,22272:28885687,27106448:-3523672 +) +(1,22272:28885687,27106448:3523672,459977,115847 +k1,22272:28885687,27106448:3277 +h1,22272:32406082,27106448:0,411205,112570 +) +k1,22272:32583029,27106448:0 +) +(1,22273:6630773,27971528:25952256,513147,134348 +k1,22272:9339201,27971528:148592 +k1,22272:10435444,27971528:148592 +k1,22272:10939896,27971528:148592 +k1,22272:12961507,27971528:148592 +k1,22272:16851549,27971528:148592 +k1,22272:18104423,27971528:148592 +k1,22272:19000781,27971528:148592 +k1,22272:21187542,27971528:148591 +k1,22272:21952172,27971528:148592 +k1,22272:22456624,27971528:148592 +k1,22272:24478235,27971528:148592 +k1,22272:25309712,27971528:148592 +k1,22272:28129551,27971528:148592 +k1,22272:29950622,27971528:148592 +k1,22272:30727049,27971528:148592 +k1,22272:32583029,27971528:0 +) +(1,22273:6630773,28836608:25952256,513147,102891 +g1,22272:8370753,28836608 +g1,22272:10021604,28836608 +g1,22272:11389340,28836608 +g1,22272:12689574,28836608 +g1,22272:14622886,28836608 +g1,22272:15481407,28836608 +g1,22272:18442979,28836608 +g1,22272:19714377,28836608 +g1,22272:21477295,28836608 +g1,22272:23814308,28836608 +k1,22273:32583029,28836608:6450057 +g1,22273:32583029,28836608 +) +(1,22275:6630773,29701688:25952256,513147,126483 +h1,22274:6630773,29701688:983040,0,0 +k1,22274:10616799,29701688:213118 +(1,22274:10616799,29701688:0,459977,115847 +r1,22315:15547319,29701688:4930520,575824,115847 +k1,22274:10616799,29701688:-4930520 +) +(1,22274:10616799,29701688:4930520,459977,115847 +k1,22274:10616799,29701688:3277 +h1,22274:15544042,29701688:0,411205,112570 +) +k1,22274:15760437,29701688:213118 +k1,22274:16505052,29701688:213118 +k1,22274:17074030,29701688:213118 +k1,22274:19929560,29701688:213118 +k1,22274:20952048,29701688:213118 +(1,22274:20952048,29701688:0,459977,115847 +r1,22315:24475720,29701688:3523672,575824,115847 +k1,22274:20952048,29701688:-3523672 +) +(1,22274:20952048,29701688:3523672,459977,115847 +k1,22274:20952048,29701688:3277 +h1,22274:24472443,29701688:0,411205,112570 +) +k1,22274:24688838,29701688:213118 +k1,22274:26186462,29701688:213118 +k1,22274:28777882,29701688:213118 +k1,22274:31171383,29701688:213118 +k1,22275:32583029,29701688:0 +) +(1,22275:6630773,30566768:25952256,513147,126483 +k1,22274:9002167,30566768:157588 +k1,22274:11361765,30566768:157588 +k1,22274:12170781,30566768:157588 +k1,22274:14072282,30566768:157588 +k1,22274:15743097,30566768:157589 +k1,22274:16516723,30566768:157588 +k1,22274:19888852,30566768:157588 +k1,22274:21317838,30566768:157588 +k1,22274:25415450,30566768:157588 +k1,22274:26240194,30566768:157588 +k1,22274:29438612,30566768:157547 +k1,22274:32583029,30566768:0 +) +(1,22275:6630773,31431848:25952256,513147,126483 +k1,22274:8296131,31431848:237328 +k1,22274:11127373,31431848:237327 +k1,22274:11896198,31431848:237328 +k1,22274:13418031,31431848:237327 +k1,22274:14674444,31431848:237328 +k1,22274:17395586,31431848:237327 +k1,22274:19925363,31431848:237328 +k1,22274:21266972,31431848:237327 +k1,22274:22252066,31431848:237328 +k1,22274:24986970,31431848:237327 +k1,22274:25840336,31431848:237328 +k1,22274:27096748,31431848:237327 +k1,22274:29145491,31431848:237328 +k1,22274:30365859,31431848:237328 +k1,22274:31794631,31431848:237327 +k1,22274:32583029,31431848:0 +) +(1,22275:6630773,32296928:25952256,513147,126483 +k1,22274:9468950,32296928:223946 +k1,22274:12524706,32296928:223945 +k1,22274:13434814,32296928:223946 +k1,22274:14980621,32296928:223946 +k1,22274:15863859,32296928:223946 +k1,22274:17106889,32296928:223945 +k1,22274:19511218,32296928:223946 +k1,22274:22990993,32296928:223946 +k1,22274:23570798,32296928:223945 +k1,22274:25267338,32296928:223946 +k1,22274:27004510,32296928:223946 +k1,22274:27879884,32296928:223946 +k1,22274:29819562,32296928:223945 +k1,22274:31269687,32296928:223946 +k1,22274:32583029,32296928:0 +) +(1,22275:6630773,33162008:25952256,513147,126483 +k1,22274:7776764,33162008:256012 +k1,22274:10032280,33162008:256013 +k1,22274:10947584,33162008:256012 +k1,22274:13202445,33162008:256013 +k1,22274:15568061,33162008:256012 +k1,22274:18349832,33162008:256013 +k1,22274:21035264,33162008:256012 +k1,22274:23955316,33162008:256013 +k1,22274:24878484,33162008:256012 +k1,22274:28175311,33162008:255956 +k1,22274:30957736,33162008:256012 +k1,22275:32583029,33162008:0 +) +(1,22275:6630773,34027088:25952256,513147,134348 +k1,22274:7849633,34027088:228611 +k1,22274:9645866,34027088:228612 +k1,22274:11065922,34027088:228611 +k1,22274:13552248,34027088:228611 +k1,22274:14432288,34027088:228612 +k1,22274:16362869,34027088:228611 +k1,22274:19102164,34027088:228611 +k1,22274:20477001,34027088:228612 +k1,22274:22449525,34027088:228611 +k1,22274:24413529,34027088:228611 +k1,22274:26045922,34027088:228612 +k1,22274:29493006,34027088:228611 +k1,22274:32583029,34027088:0 +) +(1,22275:6630773,34892168:25952256,505283,7863 +k1,22275:32583028,34892168:23923260 +g1,22275:32583028,34892168 +) +v1,22277:6630773,35577023:0,393216,0 +(1,22282:6630773,36483101:25952256,1299294,196608 +g1,22282:6630773,36483101 +g1,22282:6630773,36483101 +g1,22282:6434165,36483101 +(1,22282:6434165,36483101:0,1299294,196608 +r1,22315:32779637,36483101:26345472,1495902,196608 +k1,22282:6434165,36483101:-26345472 +) +(1,22282:6434165,36483101:26345472,1299294,196608 +[1,22282:6630773,36483101:25952256,1102686,0 +(1,22281:6630773,35788338:25952256,407923,9908 +(1,22278:6630773,35788338:0,0,0 +g1,22278:6630773,35788338 +g1,22278:6630773,35788338 +g1,22278:6303093,35788338 +(1,22278:6303093,35788338:0,0,0 +) +g1,22278:6630773,35788338 +) +g1,22281:6962727,35788338 +h1,22281:10614220,35788338:0,0,0 +k1,22281:32583028,35788338:21968808 +g1,22281:32583028,35788338 +) +(1,22281:6630773,36473193:25952256,407923,9908 +h1,22281:6630773,36473193:0,0,0 +g1,22281:8954451,36473193 +g1,22281:10282267,36473193 +h1,22281:10614221,36473193:0,0,0 +k1,22281:32583029,36473193:21968808 +g1,22281:32583029,36473193 +) +] +) +g1,22282:32583029,36483101 +g1,22282:6630773,36483101 +g1,22282:6630773,36483101 +g1,22282:32583029,36483101 +g1,22282:32583029,36483101 +) +h1,22282:6630773,36679709:0,0,0 +v1,22286:6630773,37364564:0,393216,0 +(1,22292:6630773,39055139:25952256,2083791,196608 +g1,22292:6630773,39055139 +g1,22292:6630773,39055139 +g1,22292:6434165,39055139 +(1,22292:6434165,39055139:0,2083791,196608 +r1,22315:32779637,39055139:26345472,2280399,196608 +k1,22292:6434165,39055139:-26345472 +) +(1,22292:6434165,39055139:26345472,2083791,196608 +[1,22292:6630773,39055139:25952256,1887183,0 +(1,22288:6630773,37599001:25952256,431045,112852 +(1,22287:6630773,37599001:0,0,0 +g1,22287:6630773,37599001 +g1,22287:6630773,37599001 +g1,22287:6303093,37599001 +(1,22287:6303093,37599001:0,0,0 +) +g1,22287:6630773,37599001 +) +g1,22288:11278128,37599001 +g1,22288:12273990,37599001 +k1,22288:12273990,37599001:0 +h1,22288:25884101,37599001:0,0,0 +k1,22288:32583029,37599001:6698928 +g1,22288:32583029,37599001 +) +(1,22289:6630773,38283856:25952256,431045,86428 +h1,22289:6630773,38283856:0,0,0 +g1,22289:6962727,38283856 +g1,22289:7294681,38283856 +g1,22289:7626635,38283856 +g1,22289:7958589,38283856 +g1,22289:8290543,38283856 +g1,22289:8622497,38283856 +g1,22289:8954451,38283856 +g1,22289:9286405,38283856 +g1,22289:9618359,38283856 +g1,22289:9950313,38283856 +g1,22289:10282267,38283856 +g1,22289:10614221,38283856 +g1,22289:10946175,38283856 +g1,22289:11278129,38283856 +g1,22289:11610083,38283856 +g1,22289:11942037,38283856 +g1,22289:12273991,38283856 +g1,22289:12605945,38283856 +g1,22289:12937899,38283856 +g1,22289:13269853,38283856 +g1,22289:13601807,38283856 +g1,22289:13933761,38283856 +g1,22289:14265715,38283856 +g1,22289:14597669,38283856 +g1,22289:14929623,38283856 +g1,22289:15261577,38283856 +g1,22289:15593531,38283856 +g1,22289:15925485,38283856 +g1,22289:16257439,38283856 +g1,22289:16589393,38283856 +g1,22289:18913071,38283856 +g1,22289:19576979,38283856 +g1,22289:23228473,38283856 +g1,22289:25884105,38283856 +k1,22289:25884105,38283856:0 +h1,22289:27875829,38283856:0,0,0 +k1,22289:32583029,38283856:4707200 +g1,22289:32583029,38283856 +) +(1,22290:6630773,38968711:25952256,424439,86428 +h1,22290:6630773,38968711:0,0,0 +g1,22290:6962727,38968711 +g1,22290:7294681,38968711 +g1,22290:7626635,38968711 +g1,22290:7958589,38968711 +g1,22290:8290543,38968711 +g1,22290:8622497,38968711 +g1,22290:8954451,38968711 +g1,22290:9286405,38968711 +g1,22290:9618359,38968711 +g1,22290:9950313,38968711 +g1,22290:10282267,38968711 +g1,22290:10614221,38968711 +g1,22290:10946175,38968711 +g1,22290:11278129,38968711 +g1,22290:11610083,38968711 +g1,22290:11942037,38968711 +g1,22290:12273991,38968711 +g1,22290:12605945,38968711 +g1,22290:12937899,38968711 +g1,22290:13269853,38968711 +g1,22290:13601807,38968711 +g1,22290:13933761,38968711 +g1,22290:14265715,38968711 +g1,22290:14597669,38968711 +g1,22290:14929623,38968711 +g1,22290:15261577,38968711 +g1,22290:15593531,38968711 +g1,22290:15925485,38968711 +g1,22290:16257439,38968711 +g1,22290:16589393,38968711 +g1,22290:19908932,38968711 +g1,22290:20572840,38968711 +g1,22290:23892380,38968711 +g1,22290:26548012,38968711 +g1,22290:29203644,38968711 +h1,22290:31859276,38968711:0,0,0 +k1,22290:32583029,38968711:723753 +g1,22290:32583029,38968711 +) +] +) +g1,22292:32583029,39055139 +g1,22292:6630773,39055139 +g1,22292:6630773,39055139 +g1,22292:32583029,39055139 +g1,22292:32583029,39055139 +) +h1,22292:6630773,39251747:0,0,0 +v1,22296:6630773,39936602:0,393216,0 +(1,22310:6630773,43383497:25952256,3840111,196608 +g1,22310:6630773,43383497 +g1,22310:6630773,43383497 +g1,22310:6434165,43383497 +(1,22310:6434165,43383497:0,3840111,196608 +r1,22315:32779637,43383497:26345472,4036719,196608 +k1,22310:6434165,43383497:-26345472 +) +(1,22310:6434165,43383497:26345472,3840111,196608 +[1,22310:6630773,43383497:25952256,3643503,0 +(1,22298:6630773,40171039:25952256,431045,106246 +(1,22297:6630773,40171039:0,0,0 +g1,22297:6630773,40171039 +g1,22297:6630773,40171039 +g1,22297:6303093,40171039 +(1,22297:6303093,40171039:0,0,0 +) +g1,22297:6630773,40171039 +) +k1,22298:6630773,40171039:0 +g1,22298:13933760,40171039 +h1,22298:15925484,40171039:0,0,0 +k1,22298:32583029,40171039:16657545 +g1,22298:32583029,40171039 +) +(1,22303:6630773,40986966:25952256,424439,9908 +(1,22300:6630773,40986966:0,0,0 +g1,22300:6630773,40986966 +g1,22300:6630773,40986966 +g1,22300:6303093,40986966 +(1,22300:6303093,40986966:0,0,0 +) +g1,22300:6630773,40986966 +) +g1,22303:7626635,40986966 +g1,22303:7958589,40986966 +g1,22303:8290543,40986966 +g1,22303:8622497,40986966 +g1,22303:8954451,40986966 +g1,22303:9286405,40986966 +g1,22303:9618359,40986966 +g1,22303:9950313,40986966 +g1,22303:11610083,40986966 +g1,22303:11942037,40986966 +g1,22303:12273991,40986966 +g1,22303:12605945,40986966 +g1,22303:12937899,40986966 +g1,22303:13269853,40986966 +g1,22303:13601807,40986966 +g1,22303:13933761,40986966 +g1,22303:15593531,40986966 +g1,22303:15925485,40986966 +g1,22303:16257439,40986966 +g1,22303:16589393,40986966 +g1,22303:16921347,40986966 +g1,22303:17253301,40986966 +g1,22303:17585255,40986966 +g1,22303:17917209,40986966 +g1,22303:19576979,40986966 +g1,22303:19908933,40986966 +g1,22303:20240887,40986966 +g1,22303:20572841,40986966 +g1,22303:20904795,40986966 +g1,22303:21236749,40986966 +g1,22303:21568703,40986966 +g1,22303:21900657,40986966 +h1,22303:23228473,40986966:0,0,0 +k1,22303:32583029,40986966:9354556 +g1,22303:32583029,40986966 +) +(1,22303:6630773,41671821:25952256,424439,6605 +h1,22303:6630773,41671821:0,0,0 +g1,22303:7626635,41671821 +g1,22303:7958589,41671821 +g1,22303:8290543,41671821 +g1,22303:11610082,41671821 +g1,22303:11942036,41671821 +g1,22303:12273990,41671821 +g1,22303:15593529,41671821 +g1,22303:15925483,41671821 +g1,22303:16257437,41671821 +g1,22303:19576976,41671821 +h1,22303:23228469,41671821:0,0,0 +k1,22303:32583029,41671821:9354560 +g1,22303:32583029,41671821 +) +(1,22305:6630773,42487748:25952256,431045,79822 +(1,22304:6630773,42487748:0,0,0 +g1,22304:6630773,42487748 +g1,22304:6630773,42487748 +g1,22304:6303093,42487748 +(1,22304:6303093,42487748:0,0,0 +) +g1,22304:6630773,42487748 +) +h1,22305:14265714,42487748:0,0,0 +k1,22305:32583030,42487748:18317316 +g1,22305:32583030,42487748 +) +(1,22309:6630773,43303675:25952256,424439,79822 +(1,22307:6630773,43303675:0,0,0 +g1,22307:6630773,43303675 +g1,22307:6630773,43303675 +g1,22307:6303093,43303675 +(1,22307:6303093,43303675:0,0,0 +) +g1,22307:6630773,43303675 +) +g1,22309:7626635,43303675 +g1,22309:8954451,43303675 +g1,22309:10946175,43303675 +g1,22309:11942037,43303675 +h1,22309:12605945,43303675:0,0,0 +k1,22309:32583029,43303675:19977084 +g1,22309:32583029,43303675 +) +] +) +g1,22310:32583029,43383497 +g1,22310:6630773,43383497 +g1,22310:6630773,43383497 +g1,22310:32583029,43383497 +g1,22310:32583029,43383497 +) +h1,22310:6630773,43580105:0,0,0 +v1,22314:6630773,44445185:0,393216,0 +] +(1,22315:32583029,45706769:0,0,0 +g1,22315:32583029,45706769 +) +) +] +(1,22315:6630773,47279633:25952256,0,0 +h1,22315:6630773,47279633:25952256,0,0 +) +] +(1,22315:4262630,4025873:0,0,0 +[1,22315:-473656,4025873:0,0,0 +(1,22315:-473656,-710413:0,0,0 +(1,22315:-473656,-710413:0,0,0 +g1,22315:-473656,-710413 +) +g1,22315:-473656,-710413 +) +] +) +] +!31353 +}383 +Input:3626:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3627:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3628:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3629:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3630:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3631:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3632:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3633:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3634:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3635:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3636:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3637:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3638:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3639:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3640:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3641:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3642:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3643:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3644:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3645:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1892 +{384 +[1,22370:4262630,47279633:28320399,43253760,0 +(1,22370:4262630,4025873:0,0,0 +[1,22370:-473656,4025873:0,0,0 +(1,22370:-473656,-710413:0,0,0 +(1,22370:-473656,-644877:0,0,0 +k1,22370:-473656,-644877:-65536 ) -(1,22165:-473656,4736287:0,0,0 -k1,22165:-473656,4736287:5209943 +(1,22370:-473656,4736287:0,0,0 +k1,22370:-473656,4736287:5209943 ) -g1,22165:-473656,-710413 +g1,22370:-473656,-710413 ) ] ) -[1,22165:6630773,47279633:25952256,43253760,0 -[1,22165:6630773,4812305:25952256,786432,0 -(1,22165:6630773,4812305:25952256,505283,134348 -(1,22165:6630773,4812305:25952256,505283,134348 -g1,22165:3078558,4812305 -[1,22165:3078558,4812305:0,0,0 -(1,22165:3078558,2439708:0,1703936,0 -k1,22165:1358238,2439708:-1720320 -(1,21457:1358238,2439708:1720320,1703936,0 -(1,21457:1358238,2439708:1179648,16384,0 -r1,22165:2537886,2439708:1179648,16384,0 +[1,22370:6630773,47279633:25952256,43253760,0 +[1,22370:6630773,4812305:25952256,786432,0 +(1,22370:6630773,4812305:25952256,513147,126483 +(1,22370:6630773,4812305:25952256,513147,126483 +g1,22370:3078558,4812305 +[1,22370:3078558,4812305:0,0,0 +(1,22370:3078558,2439708:0,1703936,0 +k1,22370:1358238,2439708:-1720320 +(1,21670:1358238,2439708:1720320,1703936,0 +(1,21670:1358238,2439708:1179648,16384,0 +r1,22370:2537886,2439708:1179648,16384,0 ) -g1,21457:3062174,2439708 -(1,21457:3062174,2439708:16384,1703936,0 -[1,21457:3062174,2439708:25952256,1703936,0 -(1,21457:3062174,1915420:25952256,1179648,0 -(1,21457:3062174,1915420:16384,1179648,0 -r1,22165:3078558,1915420:16384,1179648,0 +g1,21670:3062174,2439708 +(1,21670:3062174,2439708:16384,1703936,0 +[1,21670:3062174,2439708:25952256,1703936,0 +(1,21670:3062174,1915420:25952256,1179648,0 +(1,21670:3062174,1915420:16384,1179648,0 +r1,22370:3078558,1915420:16384,1179648,0 ) -k1,21457:29014430,1915420:25935872 -g1,21457:29014430,1915420 +k1,21670:29014430,1915420:25935872 +g1,21670:29014430,1915420 ) ] ) ) ) ] -[1,22165:3078558,4812305:0,0,0 -(1,22165:3078558,2439708:0,1703936,0 -g1,22165:29030814,2439708 -g1,22165:36135244,2439708 -(1,21457:36135244,2439708:1720320,1703936,0 -(1,21457:36135244,2439708:16384,1703936,0 -[1,21457:36135244,2439708:25952256,1703936,0 -(1,21457:36135244,1915420:25952256,1179648,0 -(1,21457:36135244,1915420:16384,1179648,0 -r1,22165:36151628,1915420:16384,1179648,0 +[1,22370:3078558,4812305:0,0,0 +(1,22370:3078558,2439708:0,1703936,0 +g1,22370:29030814,2439708 +g1,22370:36135244,2439708 +(1,21670:36135244,2439708:1720320,1703936,0 +(1,21670:36135244,2439708:16384,1703936,0 +[1,21670:36135244,2439708:25952256,1703936,0 +(1,21670:36135244,1915420:25952256,1179648,0 +(1,21670:36135244,1915420:16384,1179648,0 +r1,22370:36151628,1915420:16384,1179648,0 ) -k1,21457:62087500,1915420:25935872 -g1,21457:62087500,1915420 +k1,21670:62087500,1915420:25935872 +g1,21670:62087500,1915420 ) ] ) -g1,21457:36675916,2439708 -(1,21457:36675916,2439708:1179648,16384,0 -r1,22165:37855564,2439708:1179648,16384,0 +g1,21670:36675916,2439708 +(1,21670:36675916,2439708:1179648,16384,0 +r1,22370:37855564,2439708:1179648,16384,0 ) ) -k1,22165:3078556,2439708:-34777008 +k1,22370:3078556,2439708:-34777008 ) ] -[1,22165:3078558,4812305:0,0,0 -(1,22165:3078558,49800853:0,16384,2228224 -k1,22165:1358238,49800853:-1720320 -(1,21457:1358238,49800853:1720320,16384,2228224 -(1,21457:1358238,49800853:1179648,16384,0 -r1,22165:2537886,49800853:1179648,16384,0 +[1,22370:3078558,4812305:0,0,0 +(1,22370:3078558,49800853:0,16384,2228224 +k1,22370:1358238,49800853:-1720320 +(1,21670:1358238,49800853:1720320,16384,2228224 +(1,21670:1358238,49800853:1179648,16384,0 +r1,22370:2537886,49800853:1179648,16384,0 ) -g1,21457:3062174,49800853 -(1,21457:3062174,52029077:16384,1703936,0 -[1,21457:3062174,52029077:25952256,1703936,0 -(1,21457:3062174,51504789:25952256,1179648,0 -(1,21457:3062174,51504789:16384,1179648,0 -r1,22165:3078558,51504789:16384,1179648,0 +g1,21670:3062174,49800853 +(1,21670:3062174,52029077:16384,1703936,0 +[1,21670:3062174,52029077:25952256,1703936,0 +(1,21670:3062174,51504789:25952256,1179648,0 +(1,21670:3062174,51504789:16384,1179648,0 +r1,22370:3078558,51504789:16384,1179648,0 ) -k1,21457:29014430,51504789:25935872 -g1,21457:29014430,51504789 +k1,21670:29014430,51504789:25935872 +g1,21670:29014430,51504789 ) ] ) ) ) ] -[1,22165:3078558,4812305:0,0,0 -(1,22165:3078558,49800853:0,16384,2228224 -g1,22165:29030814,49800853 -g1,22165:36135244,49800853 -(1,21457:36135244,49800853:1720320,16384,2228224 -(1,21457:36135244,52029077:16384,1703936,0 -[1,21457:36135244,52029077:25952256,1703936,0 -(1,21457:36135244,51504789:25952256,1179648,0 -(1,21457:36135244,51504789:16384,1179648,0 -r1,22165:36151628,51504789:16384,1179648,0 +[1,22370:3078558,4812305:0,0,0 +(1,22370:3078558,49800853:0,16384,2228224 +g1,22370:29030814,49800853 +g1,22370:36135244,49800853 +(1,21670:36135244,49800853:1720320,16384,2228224 +(1,21670:36135244,52029077:16384,1703936,0 +[1,21670:36135244,52029077:25952256,1703936,0 +(1,21670:36135244,51504789:25952256,1179648,0 +(1,21670:36135244,51504789:16384,1179648,0 +r1,22370:36151628,51504789:16384,1179648,0 ) -k1,21457:62087500,51504789:25935872 -g1,21457:62087500,51504789 +k1,21670:62087500,51504789:25935872 +g1,21670:62087500,51504789 ) ] ) -g1,21457:36675916,49800853 -(1,21457:36675916,49800853:1179648,16384,0 -r1,22165:37855564,49800853:1179648,16384,0 +g1,21670:36675916,49800853 +(1,21670:36675916,49800853:1179648,16384,0 +r1,22370:37855564,49800853:1179648,16384,0 ) ) -k1,22165:3078556,49800853:-34777008 +k1,22370:3078556,49800853:-34777008 +) +] +g1,22370:6630773,4812305 +g1,22370:6630773,4812305 +g1,22370:9744388,4812305 +g1,22370:11175694,4812305 +k1,22370:31387652,4812305:20211958 +) +) +] +[1,22370:6630773,45706769:25952256,40108032,0 +(1,22370:6630773,45706769:25952256,40108032,0 +(1,22370:6630773,45706769:0,0,0 +g1,22370:6630773,45706769 +) +[1,22370:6630773,45706769:25952256,40108032,0 +v1,22315:6630773,6254097:0,393216,0 +(1,22315:6630773,13617383:25952256,7756502,0 +g1,22315:6630773,13617383 +g1,22315:6237557,13617383 +r1,22370:6368629,13617383:131072,7756502,0 +g1,22315:6567858,13617383 +g1,22315:6764466,13617383 +[1,22315:6764466,13617383:25818563,7756502,0 +(1,22315:6764466,6562395:25818563,701514,196608 +(1,22314:6764466,6562395:0,701514,196608 +r1,22370:8010564,6562395:1246098,898122,196608 +k1,22314:6764466,6562395:-1246098 +) +(1,22314:6764466,6562395:1246098,701514,196608 +) +k1,22314:8161569,6562395:151005 +k1,22314:8489249,6562395:327680 +k1,22314:9836941,6562395:151005 +k1,22314:10970986,6562395:151005 +k1,22314:13524541,6562395:151005 +k1,22314:16701343,6562395:151005 +k1,22314:19942371,6562395:151005 +k1,22314:21948700,6562395:151005 +k1,22314:23836409,6562395:151005 +k1,22314:25381365,6562395:151005 +(1,22314:25381365,6562395:0,452978,115847 +r1,22370:29608461,6562395:4227096,568825,115847 +k1,22314:25381365,6562395:-4227096 +) +(1,22314:25381365,6562395:4227096,452978,115847 +k1,22314:25381365,6562395:3277 +h1,22314:29605184,6562395:0,411205,112570 +) +k1,22314:29759466,6562395:151005 +k1,22314:30929556,6562395:151005 +k1,22314:32583029,6562395:0 +) +(1,22315:6764466,7427475:25818563,513147,126483 +k1,22314:10747940,7427475:198770 +k1,22314:11574546,7427475:198771 +k1,22314:14439321,7427475:198770 +k1,22314:15289520,7427475:198771 +k1,22314:17232203,7427475:198770 +k1,22314:20520997,7427475:198771 +k1,22314:22748762,7427475:198770 +k1,22314:24649503,7427475:198771 +k1,22314:28153254,7427475:198770 +k1,22314:30329246,7427475:198771 +k1,22315:32583029,7427475:0 +) +(1,22315:6764466,8292555:25818563,513147,126483 +k1,22314:8545033,8292555:210324 +k1,22314:9746917,8292555:210324 +(1,22314:9746917,8292555:0,452978,115847 +r1,22370:11160318,8292555:1413401,568825,115847 +k1,22314:9746917,8292555:-1413401 +) +(1,22314:9746917,8292555:1413401,452978,115847 +k1,22314:9746917,8292555:3277 +h1,22314:11157041,8292555:0,411205,112570 +) +k1,22314:11370642,8292555:210324 +k1,22314:12772411,8292555:210324 +(1,22314:12772411,8292555:0,414482,115847 +r1,22370:13130677,8292555:358266,530329,115847 +k1,22314:12772411,8292555:-358266 +) +(1,22314:12772411,8292555:358266,414482,115847 +k1,22314:12772411,8292555:3277 +h1,22314:13127400,8292555:0,411205,112570 +) +k1,22314:13514671,8292555:210324 +k1,22314:15610466,8292555:210324 +k1,22314:16925072,8292555:210324 +k1,22314:17883162,8292555:210324 +k1,22314:19606712,8292555:210324 +k1,22314:20468463,8292555:210323 +k1,22314:22023586,8292555:210324 +k1,22314:23732718,8292555:210324 +k1,22314:24555804,8292555:210324 +k1,22314:25785213,8292555:210324 +k1,22314:27067706,8292555:210324 +k1,22314:27937322,8292555:210324 +k1,22314:28503506,8292555:210324 +k1,22314:29696870,8292555:210324 +k1,22314:31098639,8292555:210324 +k1,22314:32583029,8292555:0 +) +(1,22315:6764466,9157635:25818563,513147,134348 +k1,22314:7965538,9157635:181987 +k1,22314:10633307,9157635:181988 +k1,22314:11474586,9157635:181987 +k1,22314:13155382,9157635:181988 +k1,22314:14227348,9157635:181987 +k1,22314:17019635,9157635:181988 +k1,22314:17853050,9157635:181987 +k1,22314:19621009,9157635:181988 +(1,22314:19621009,9157635:0,452978,115847 +r1,22370:21737834,9157635:2116825,568825,115847 +k1,22314:19621009,9157635:-2116825 +) +(1,22314:19621009,9157635:2116825,452978,115847 +k1,22314:19621009,9157635:3277 +h1,22314:21734557,9157635:0,411205,112570 +) +k1,22314:22093491,9157635:181987 +k1,22314:24160950,9157635:181988 +k1,22314:26721239,9157635:181987 +k1,22314:27259087,9157635:181988 +k1,22314:29510701,9157635:181987 +k1,22314:32583029,9157635:0 +) +(1,22315:6764466,10022715:25818563,513147,134348 +k1,22314:10224346,10022715:285316 +k1,22314:10975622,10022715:285315 +k1,22314:12280023,10022715:285316 +k1,22314:14299421,10022715:285315 +k1,22314:15200775,10022715:285316 +k1,22314:16505175,10022715:285315 +k1,22314:18096624,10022715:285316 +k1,22314:19608118,10022715:285315 +k1,22314:21061941,10022715:285316 +k1,22314:22759557,10022715:285315 +k1,22314:25225256,10022715:285316 +k1,22314:26258337,10022715:285315 +k1,22314:29228663,10022715:285316 +k1,22314:30200140,10022715:285315 +k1,22314:32583029,10022715:0 +) +(1,22315:6764466,10887795:25818563,505283,126483 +k1,22314:9098875,10887795:266093 +k1,22314:11316629,10887795:266092 +k1,22314:13025169,10887795:266093 +k1,22314:14854296,10887795:266093 +(1,22314:14854296,10887795:0,452978,122846 +r1,22370:18377968,10887795:3523672,575824,122846 +k1,22314:14854296,10887795:-3523672 +) +(1,22314:14854296,10887795:3523672,452978,122846 +k1,22314:14854296,10887795:3277 +h1,22314:18374691,10887795:0,411205,112570 +) +k1,22314:18817730,10887795:266092 +k1,22314:19735251,10887795:266093 +k1,22314:21886815,10887795:266093 +k1,22314:23257189,10887795:266092 +k1,22314:24271048,10887795:266093 +k1,22314:26742428,10887795:266093 +k1,22314:27364380,10887795:266092 +k1,22314:30605152,10887795:266093 +k1,22314:32583029,10887795:0 +) +(1,22315:6764466,11752875:25818563,513147,134348 +k1,22314:8424054,11752875:265637 +k1,22314:10885803,11752875:265638 +k1,22314:11802868,11752875:265637 +k1,22314:12816271,11752875:265637 +k1,22314:16671970,11752875:265637 +k1,22314:17623770,11752875:265638 +(1,22314:17623770,11752875:0,414482,115847 +r1,22370:18333748,11752875:709978,530329,115847 +k1,22314:17623770,11752875:-709978 +) +(1,22314:17623770,11752875:709978,414482,115847 +k1,22314:17623770,11752875:3277 +h1,22314:18330471,11752875:0,411205,112570 +) +k1,22314:18773055,11752875:265637 +k1,22314:20230137,11752875:265637 +(1,22314:20230137,11752875:0,452978,115847 +r1,22370:23753809,11752875:3523672,568825,115847 +k1,22314:20230137,11752875:-3523672 +) +(1,22314:20230137,11752875:3523672,452978,115847 +k1,22314:20230137,11752875:3277 +h1,22314:23750532,11752875:0,411205,112570 +) +k1,22314:24193116,11752875:265637 +k1,22314:26344225,11752875:265638 +k1,22314:29370238,11752875:265637 +k1,22314:31923737,11752875:265637 +k1,22314:32583029,11752875:0 +) +(1,22315:6764466,12617955:25818563,513147,134348 +k1,22314:8002090,12617955:218539 +k1,22314:11697313,12617955:218538 +k1,22314:12575144,12617955:218539 +k1,22314:13812768,12617955:218539 +k1,22314:15765389,12617955:218538 +k1,22314:16635356,12617955:218539 +k1,22314:17268718,12617955:218519 +k1,22314:19720069,12617955:218539 +k1,22314:21130052,12617955:218538 +k1,22314:23992313,12617955:218539 +k1,22314:26966641,12617955:218539 +k1,22314:28877319,12617955:218538 +k1,22314:31809049,12617955:218539 +k1,22315:32583029,12617955:0 +) +(1,22315:6764466,13483035:25818563,505283,134348 +g1,22314:9817788,13483035 +g1,22314:10914860,13483035 +g1,22314:12810816,13483035 +g1,22314:16621079,13483035 +g1,22314:17811868,13483035 +g1,22314:21101120,13483035 +g1,22314:21916387,13483035 +g1,22314:23134701,13483035 +g1,22314:27957495,13483035 +g1,22314:29544777,13483035 +k1,22315:32583029,13483035:1036127 +g1,22315:32583029,13483035 +) +] +g1,22315:32583029,13617383 +) +h1,22315:6630773,13617383:0,0,0 +v1,22318:6630773,14482463:0,393216,0 +(1,22319:6630773,17466027:25952256,3376780,0 +g1,22319:6630773,17466027 +g1,22319:6237557,17466027 +r1,22370:6368629,17466027:131072,3376780,0 +g1,22319:6567858,17466027 +g1,22319:6764466,17466027 +[1,22319:6764466,17466027:25818563,3376780,0 +(1,22319:6764466,14754940:25818563,665693,196608 +(1,22318:6764466,14754940:0,665693,196608 +r1,22370:8010564,14754940:1246098,862301,196608 +k1,22318:6764466,14754940:-1246098 +) +(1,22318:6764466,14754940:1246098,665693,196608 +) +k1,22318:8201176,14754940:190612 +k1,22318:9927394,14754940:327680 +k1,22318:10745841,14754940:190612 +k1,22318:12952339,14754940:190611 +(1,22318:12952339,14754940:0,452978,115847 +r1,22370:16476011,14754940:3523672,568825,115847 +k1,22318:12952339,14754940:-3523672 +) +(1,22318:12952339,14754940:3523672,452978,115847 +k1,22318:12952339,14754940:3277 +h1,22318:16472734,14754940:0,411205,112570 +) +k1,22318:16840293,14754940:190612 +(1,22318:16840293,14754940:0,452978,115847 +r1,22370:20715677,14754940:3875384,568825,115847 +k1,22318:16840293,14754940:-3875384 +) +(1,22318:16840293,14754940:3875384,452978,115847 +k1,22318:16840293,14754940:3277 +h1,22318:20712400,14754940:0,411205,112570 +) +k1,22318:20906289,14754940:190612 +k1,22318:22288346,14754940:190612 +(1,22318:22288346,14754940:0,452978,115847 +r1,22370:26515442,14754940:4227096,568825,115847 +k1,22318:22288346,14754940:-4227096 +) +(1,22318:22288346,14754940:4227096,452978,115847 +k1,22318:22288346,14754940:3277 +h1,22318:26512165,14754940:0,411205,112570 +) +k1,22318:26706054,14754940:190612 +k1,22318:27888225,14754940:190611 +k1,22318:29097922,14754940:190612 +k1,22318:30942007,14754940:190612 +k1,22319:32583029,14754940:0 +) +(1,22319:6764466,15620020:25818563,513147,134348 +k1,22318:8310400,15620020:278468 +k1,22318:9982820,15620020:278469 +k1,22318:13023631,15620020:278468 +k1,22318:15567679,15620020:278468 +k1,22318:19248776,15620020:278468 +k1,22318:20178673,15620020:278469 +k1,22318:22688642,15620020:278468 +k1,22318:23626402,15620020:278468 +k1,22318:25413509,15620020:278468 +k1,22318:29476682,15620020:278469 +k1,22318:31563944,15620020:278468 +k1,22318:32583029,15620020:0 +) +(1,22319:6764466,16485100:25818563,505283,134348 +k1,22318:8520654,16485100:368135 +k1,22318:10560613,16485100:368136 +k1,22318:12120193,16485100:368135 +k1,22318:13249857,16485100:368136 +k1,22318:16045446,16485100:368135 +k1,22318:18925576,16485100:368135 +k1,22318:22870012,16485100:368136 +k1,22318:24953880,16485100:368135 +(1,22318:24953880,16485100:0,452978,115847 +r1,22370:28477552,16485100:3523672,568825,115847 +k1,22318:24953880,16485100:-3523672 +) +(1,22318:24953880,16485100:3523672,452978,115847 +k1,22318:24953880,16485100:3277 +h1,22318:28474275,16485100:0,411205,112570 +) +k1,22318:28845688,16485100:368136 +k1,22318:31436804,16485100:368135 +k1,22319:32583029,16485100:0 +) +(1,22319:6764466,17350180:25818563,505283,115847 +(1,22318:6764466,17350180:0,452978,115847 +r1,22370:10991562,17350180:4227096,568825,115847 +k1,22318:6764466,17350180:-4227096 +) +(1,22318:6764466,17350180:4227096,452978,115847 +k1,22318:6764466,17350180:3277 +h1,22318:10988285,17350180:0,411205,112570 +) +g1,22318:11364461,17350180 +g1,22318:12997618,17350180 +g1,22318:14912580,17350180 +(1,22318:14912580,17350180:0,452978,115847 +r1,22370:19139676,17350180:4227096,568825,115847 +k1,22318:14912580,17350180:-4227096 +) +(1,22318:14912580,17350180:4227096,452978,115847 +k1,22318:14912580,17350180:3277 +h1,22318:19136399,17350180:0,411205,112570 +) +g1,22318:19338905,17350180 +g1,22318:21761115,17350180 +g1,22318:23106569,17350180 +(1,22318:23106569,17350180:0,452978,115847 +r1,22370:26981953,17350180:3875384,568825,115847 +k1,22318:23106569,17350180:-3875384 +) +(1,22318:23106569,17350180:3875384,452978,115847 +k1,22318:23106569,17350180:3277 +h1,22318:26978676,17350180:0,411205,112570 +) +k1,22319:32583029,17350180:5427406 +g1,22319:32583029,17350180 +) +] +g1,22319:32583029,17466027 +) +h1,22319:6630773,17466027:0,0,0 +v1,22322:6630773,18331107:0,393216,0 +(1,22323:6630773,23099153:25952256,5161262,0 +g1,22323:6630773,23099153 +g1,22323:6237557,23099153 +r1,22370:6368629,23099153:131072,5161262,0 +g1,22323:6567858,23099153 +g1,22323:6764466,23099153 +[1,22323:6764466,23099153:25818563,5161262,0 +(1,22323:6764466,18639405:25818563,701514,196608 +(1,22322:6764466,18639405:0,701514,196608 +r1,22370:8010564,18639405:1246098,898122,196608 +k1,22322:6764466,18639405:-1246098 +) +(1,22322:6764466,18639405:1246098,701514,196608 +) +k1,22322:8264269,18639405:253705 +k1,22322:8591949,18639405:327680 +k1,22322:9799203,18639405:253705 +k1,22322:11157190,18639405:253705 +k1,22322:12823197,18639405:253706 +k1,22322:13432762,18639405:253705 +k1,22322:14912646,18639405:253705 +k1,22322:16149391,18639405:253705 +k1,22322:17089258,18639405:253705 +k1,22322:20317642,18639405:253705 +k1,22322:22941130,18639405:253706 +k1,22322:25655057,18639405:253705 +k1,22322:29413627,18639405:253705 +k1,22322:30318760,18639405:253705 +k1,22322:32583029,18639405:0 +) +(1,22323:6764466,19504485:25818563,513147,134348 +k1,22322:8764144,19504485:186952 +k1,22322:10331940,19504485:186952 +k1,22322:11050390,19504485:186953 +k1,22322:15122972,19504485:186952 +k1,22322:17460816,19504485:186952 +k1,22322:19141334,19504485:186952 +k1,22322:20014448,19504485:186952 +k1,22322:21899439,19504485:186953 +k1,22322:22954743,19504485:186952 +k1,22322:23956963,19504485:186952 +k1,22322:25163000,19504485:186952 +k1,22322:28257129,19504485:186952 +k1,22322:29130244,19504485:186953 +k1,22322:30639057,19504485:186952 +k1,22322:31485301,19504485:186952 +k1,22322:32583029,19504485:0 +) +(1,22323:6764466,20369565:25818563,513147,126483 +k1,22322:8300941,20369565:206094 +k1,22322:10511780,20369565:206093 +k1,22322:11345709,20369565:206094 +k1,22322:12755043,20369565:206093 +k1,22322:14501888,20369565:206094 +k1,22322:15727066,20369565:206093 +k1,22322:18628656,20369565:206094 +k1,22322:19486178,20369565:206094 +k1,22322:20784756,20369565:206093 +k1,22322:21522347,20369565:206094 +(1,22322:21522347,20369565:0,452978,115847 +r1,22370:25397731,20369565:3875384,568825,115847 +k1,22322:21522347,20369565:-3875384 +) +(1,22322:21522347,20369565:3875384,452978,115847 +k1,22322:21522347,20369565:3277 +h1,22322:25394454,20369565:0,411205,112570 +) +k1,22322:25777494,20369565:206093 +k1,22322:27180275,20369565:206094 +k1,22322:30165095,20369565:206093 +k1,22322:32051532,20369565:206094 +k1,22322:32583029,20369565:0 +) +(1,22323:6764466,21234645:25818563,505283,134348 +k1,22322:7302768,21234645:182442 +k1,22322:10459889,21234645:182442 +k1,22322:12620209,21234645:182443 +k1,22322:13418689,21234645:182442 +k1,22322:15486602,21234645:182442 +k1,22322:17120666,21234645:182442 +k1,22322:19926515,21234645:182443 +k1,22322:21974767,21234645:182442 +k1,22322:26120826,21234645:182442 +k1,22322:26954696,21234645:182442 +k1,22322:28293849,21234645:182443 +k1,22322:29644798,21234645:182442 +k1,22322:30510125,21234645:182442 +k1,22322:32583029,21234645:0 +) +(1,22323:6764466,22099725:25818563,513147,126483 +k1,22322:7603679,22099725:223175 +k1,22322:8845939,22099725:223175 +k1,22322:10225825,22099725:223176 +k1,22322:11842951,22099725:223175 +k1,22322:13085211,22099725:223175 +k1,22322:16745094,22099725:223175 +k1,22322:19591021,22099725:223176 +k1,22322:22500517,22099725:223175 +k1,22322:23955769,22099725:223175 +k1,22322:26840361,22099725:223175 +k1,22322:27679575,22099725:223176 +k1,22322:30181437,22099725:223175 +h1,22322:31550484,22099725:0,0,0 +k1,22322:31773659,22099725:223175 +k1,22322:32583029,22099725:0 +) +(1,22323:6764466,22964805:25818563,505283,134348 +g1,22322:8461848,22964805 +h1,22322:9657225,22964805:0,0,0 +k1,22323:32583029,22964805:22545040 +g1,22323:32583029,22964805 +) +] +g1,22323:32583029,23099153 +) +h1,22323:6630773,23099153:0,0,0 +(1,22328:6630773,23964233:25952256,513147,134348 +h1,22327:6630773,23964233:983040,0,0 +k1,22327:9319016,23964233:243750 +k1,22327:10431119,23964233:243751 +k1,22327:11954787,23964233:243750 +k1,22327:13355247,23964233:243750 +k1,22327:16260415,23964233:243751 +k1,22327:17163457,23964233:243750 +k1,22327:18426292,23964233:243750 +k1,22327:19762528,23964233:243751 +k1,22327:20665570,23964233:243750 +k1,22327:21265180,23964233:243750 +k1,22327:23106043,23964233:243751 +k1,22327:26045289,23964233:243750 +k1,22327:29260441,23964233:243750 +k1,22327:30660902,23964233:243751 +k1,22327:31563944,23964233:243750 +k1,22327:32583029,23964233:0 +) +(1,22328:6630773,24829313:25952256,513147,134348 +k1,22327:8345367,24829313:234791 +k1,22327:11605956,24829313:234792 +k1,22327:14930770,24829313:234791 +k1,22327:17194556,24829313:234791 +k1,22327:18626035,24829313:234792 +(1,22327:18626035,24829313:0,452978,115847 +r1,22370:22501419,24829313:3875384,568825,115847 +k1,22327:18626035,24829313:-3875384 +) +(1,22327:18626035,24829313:3875384,452978,115847 +k1,22327:18626035,24829313:3277 +h1,22327:22498142,24829313:0,411205,112570 +) +k1,22327:22736210,24829313:234791 +k1,22327:25666497,24829313:234791 +k1,22327:27584253,24829313:234791 +k1,22327:28505207,24829313:234792 +k1,22327:29510701,24829313:234791 +k1,22327:32583029,24829313:0 +) +(1,22328:6630773,25694393:25952256,513147,134348 +k1,22327:7252054,25694393:265421 +k1,22327:8906838,25694393:265421 +k1,22327:11222225,25694393:265421 +k1,22327:12170531,25694393:265421 +k1,22327:13206654,25694393:265420 +k1,22327:15431601,25694393:265421 +k1,22327:16981528,25694393:265421 +k1,22327:18351231,25694393:265421 +k1,22327:19364418,25694393:265421 +k1,22327:22095303,25694393:265421 +k1,22327:23628190,25694393:265421 +k1,22327:24249471,25694393:265421 +k1,22327:25904254,25694393:265420 +k1,22327:28219641,25694393:265421 +k1,22327:31208083,25694393:265421 +k1,22327:31931601,25694393:265421 +k1,22327:32583029,25694393:0 +) +(1,22328:6630773,26559473:25952256,513147,134348 +k1,22327:9799307,26559473:193855 +k1,22327:12362945,26559473:193856 +k1,22327:13748245,26559473:193855 +k1,22327:15663076,26559473:193856 +k1,22327:17495986,26559473:193855 +k1,22327:18341269,26559473:193855 +k1,22327:18890985,26559473:193856 +k1,22327:20311019,26559473:193855 +k1,22327:21661585,26559473:193856 +k1,22327:22808989,26559473:193855 +k1,22327:24308977,26559473:193855 +k1,22327:26432213,26559473:193856 +k1,22327:27645153,26559473:193855 +k1,22327:29228372,26559473:193856 +k1,22327:31298523,26559473:193855 +k1,22327:32583029,26559473:0 +) +(1,22328:6630773,27424553:25952256,505283,7863 +g1,22327:7698354,27424553 +g1,22327:9030045,27424553 +g1,22327:10844081,27424553 +g1,22327:11694738,27424553 +k1,22328:32583029,27424553:19369822 +g1,22328:32583029,27424553 +) +v1,22330:6630773,28109408:0,393216,0 +(1,22334:6630773,28450091:25952256,733899,196608 +g1,22334:6630773,28450091 +g1,22334:6630773,28450091 +g1,22334:6434165,28450091 +(1,22334:6434165,28450091:0,733899,196608 +r1,22370:32779637,28450091:26345472,930507,196608 +k1,22334:6434165,28450091:-26345472 +) +(1,22334:6434165,28450091:26345472,733899,196608 +[1,22334:6630773,28450091:25952256,537291,0 +(1,22332:6630773,28343845:25952256,431045,106246 +(1,22331:6630773,28343845:0,0,0 +g1,22331:6630773,28343845 +g1,22331:6630773,28343845 +g1,22331:6303093,28343845 +(1,22331:6303093,28343845:0,0,0 +) +g1,22331:6630773,28343845 +) +g1,22332:8622497,28343845 +g1,22332:9618359,28343845 +g1,22332:13933760,28343845 +g1,22332:14597668,28343845 +g1,22332:16257438,28343845 +g1,22332:16921346,28343845 +g1,22332:17585254,28343845 +g1,22332:18913070,28343845 +g1,22332:19576978,28343845 +g1,22332:20904794,28343845 +g1,22332:21568702,28343845 +g1,22332:22232610,28343845 +h1,22332:26548011,28343845:0,0,0 +k1,22332:32583029,28343845:6035018 +g1,22332:32583029,28343845 +) +] +) +g1,22334:32583029,28450091 +g1,22334:6630773,28450091 +g1,22334:6630773,28450091 +g1,22334:32583029,28450091 +g1,22334:32583029,28450091 +) +h1,22334:6630773,28646699:0,0,0 +(1,22338:6630773,29511779:25952256,513147,134348 +h1,22337:6630773,29511779:983040,0,0 +k1,22337:8806789,29511779:239427 +k1,22337:10661023,29511779:239427 +(1,22337:10661023,29511779:0,459977,115847 +r1,22370:12426136,29511779:1765113,575824,115847 +k1,22337:10661023,29511779:-1765113 +) +(1,22337:10661023,29511779:1765113,459977,115847 +k1,22337:10661023,29511779:3277 +h1,22337:12422859,29511779:0,411205,112570 +) +k1,22337:12665563,29511779:239427 +k1,22337:13556418,29511779:239427 +k1,22337:14151705,29511779:239427 +k1,22337:15659868,29511779:239386 +k1,22337:16882335,29511779:239427 +k1,22337:19633757,29511779:239427 +k1,22337:20820835,29511779:239427 +k1,22337:21830965,29511779:239427 +k1,22337:24381847,29511779:239427 +k1,22337:27463570,29511779:239427 +k1,22337:29718229,29511779:239427 +k1,22337:31149101,29511779:239427 +k1,22337:32583029,29511779:0 +) +(1,22338:6630773,30376859:25952256,505283,126483 +g1,22337:9125073,30376859 +g1,22337:10112700,30376859 +k1,22338:32583030,30376859:19547424 +g1,22338:32583030,30376859 +) +v1,22340:6630773,31061714:0,393216,0 +(1,22345:6630773,32093858:25952256,1425360,196608 +g1,22345:6630773,32093858 +g1,22345:6630773,32093858 +g1,22345:6434165,32093858 +(1,22345:6434165,32093858:0,1425360,196608 +r1,22370:32779637,32093858:26345472,1621968,196608 +k1,22345:6434165,32093858:-26345472 +) +(1,22345:6434165,32093858:26345472,1425360,196608 +[1,22345:6630773,32093858:25952256,1228752,0 +(1,22342:6630773,31296151:25952256,431045,106246 +(1,22341:6630773,31296151:0,0,0 +g1,22341:6630773,31296151 +g1,22341:6630773,31296151 +g1,22341:6303093,31296151 +(1,22341:6303093,31296151:0,0,0 +) +g1,22341:6630773,31296151 +) +k1,22342:6630773,31296151:0 +g1,22342:12273990,31296151 +g1,22342:13933760,31296151 +g1,22342:14597668,31296151 +g1,22342:19908931,31296151 +g1,22342:23228470,31296151 +g1,22342:23892378,31296151 +h1,22342:25884102,31296151:0,0,0 +k1,22342:32583029,31296151:6698927 +g1,22342:32583029,31296151 +) +(1,22343:6630773,31981006:25952256,431045,112852 +h1,22343:6630773,31981006:0,0,0 +g1,22343:15261575,31981006 +g1,22343:17253299,31981006 +g1,22343:17917207,31981006 +h1,22343:21236746,31981006:0,0,0 +k1,22343:32583029,31981006:11346283 +g1,22343:32583029,31981006 +) +] +) +g1,22345:32583029,32093858 +g1,22345:6630773,32093858 +g1,22345:6630773,32093858 +g1,22345:32583029,32093858 +g1,22345:32583029,32093858 +) +h1,22345:6630773,32290466:0,0,0 +v1,22349:6630773,32975321:0,393216,0 +(1,22358:6630773,36713855:25952256,4131750,196608 +g1,22358:6630773,36713855 +g1,22358:6630773,36713855 +g1,22358:6434165,36713855 +(1,22358:6434165,36713855:0,4131750,196608 +r1,22370:32779637,36713855:26345472,4328358,196608 +k1,22358:6434165,36713855:-26345472 +) +(1,22358:6434165,36713855:26345472,4131750,196608 +[1,22358:6630773,36713855:25952256,3935142,0 +(1,22357:6630773,33203152:25952256,424439,106246 +(1,22350:6630773,33203152:0,0,0 +g1,22350:6630773,33203152 +g1,22350:6630773,33203152 +g1,22350:6303093,33203152 +(1,22350:6303093,33203152:0,0,0 +) +g1,22350:6630773,33203152 +) +k1,22357:6630773,33203152:0 +k1,22357:6630773,33203152:0 +h1,22357:10282267,33203152:0,0,0 +k1,22357:32583029,33203152:22300762 +g1,22357:32583029,33203152 +) +(1,22357:6630773,33888007:25952256,424439,86428 +h1,22357:6630773,33888007:0,0,0 +k1,22357:6630773,33888007:0 +h1,22357:9618359,33888007:0,0,0 +k1,22357:32583029,33888007:22964670 +g1,22357:32583029,33888007 +) +(1,22357:6630773,34572862:25952256,424439,86428 +h1,22357:6630773,34572862:0,0,0 +k1,22357:6630773,34572862:0 +h1,22357:9618359,34572862:0,0,0 +k1,22357:32583029,34572862:22964670 +g1,22357:32583029,34572862 +) +(1,22357:6630773,35257717:25952256,424439,86428 +h1,22357:6630773,35257717:0,0,0 +k1,22357:6630773,35257717:0 +h1,22357:9618359,35257717:0,0,0 +k1,22357:32583029,35257717:22964670 +g1,22357:32583029,35257717 +) +(1,22357:6630773,35942572:25952256,424439,86428 +h1,22357:6630773,35942572:0,0,0 +k1,22357:6630773,35942572:0 +h1,22357:9618359,35942572:0,0,0 +k1,22357:32583029,35942572:22964670 +g1,22357:32583029,35942572 +) +(1,22357:6630773,36627427:25952256,424439,86428 +h1,22357:6630773,36627427:0,0,0 +k1,22357:6630773,36627427:0 +h1,22357:9618359,36627427:0,0,0 +k1,22357:32583029,36627427:22964670 +g1,22357:32583029,36627427 +) +] +) +g1,22358:32583029,36713855 +g1,22358:6630773,36713855 +g1,22358:6630773,36713855 +g1,22358:32583029,36713855 +g1,22358:32583029,36713855 +) +h1,22358:6630773,36910463:0,0,0 +v1,22362:6630773,37775543:0,393216,0 +(1,22363:6630773,42504267:25952256,5121940,0 +g1,22363:6630773,42504267 +g1,22363:6237557,42504267 +r1,22370:6368629,42504267:131072,5121940,0 +g1,22363:6567858,42504267 +g1,22363:6764466,42504267 +[1,22363:6764466,42504267:25818563,5121940,0 +(1,22363:6764466,38083841:25818563,701514,196608 +(1,22362:6764466,38083841:0,701514,196608 +r1,22370:8010564,38083841:1246098,898122,196608 +k1,22362:6764466,38083841:-1246098 +) +(1,22362:6764466,38083841:1246098,701514,196608 +) +k1,22362:8235421,38083841:224857 +k1,22362:8563101,38083841:327680 +k1,22362:9415794,38083841:224858 +k1,22362:11242351,38083841:224857 +k1,22362:13164590,38083841:224857 +k1,22362:15744812,38083841:224858 +k1,22362:16655831,38083841:224857 +k1,22362:18909683,38083841:224857 +(1,22362:18909683,38083841:0,414482,115847 +r1,22370:24895338,38083841:5985655,530329,115847 +k1,22362:18909683,38083841:-5985655 +) +(1,22362:18909683,38083841:5985655,414482,115847 +g1,22362:22430078,38083841 +g1,22362:23133502,38083841 +h1,22362:24892061,38083841:0,411205,112570 +) +k1,22362:25120196,38083841:224858 +k1,22362:27043091,38083841:224857 +k1,22362:29525663,38083841:224857 +k1,22362:30106380,38083841:224857 +k1,22362:31599989,38083841:224832 +k1,22362:32583029,38083841:0 +) +(1,22363:6764466,38948921:25818563,513147,126483 +k1,22362:8116989,38948921:220061 +k1,22362:9725102,38948921:220060 +k1,22362:11643201,38948921:220061 +k1,22362:12321358,38948921:220060 +k1,22362:13072916,38948921:220061 +k1,22362:14878947,38948921:220060 +k1,22362:15872988,38948921:220061 +k1,22362:18375667,38948921:220060 +k1,22362:19061689,38948921:220061 +k1,22362:20485645,38948921:220060 +k1,22362:22774022,38948921:220061 +k1,22362:23809350,38948921:220060 +k1,22362:26401159,38948921:220061 +k1,22362:29830517,38948921:220060 +k1,22363:32583029,38948921:0 +) +(1,22363:6764466,39814001:25818563,513147,134348 +k1,22362:8425061,39814001:219458 +k1,22362:10138085,39814001:219458 +k1,22362:11043706,39814001:219459 +k1,22362:12746899,39814001:219458 +k1,22362:14457301,39814001:219458 +k1,22362:15847232,39814001:219458 +k1,22362:18237242,39814001:219458 +k1,22362:19801500,39814001:219459 +k1,22362:22278673,39814001:219458 +k1,22362:23517216,39814001:219458 +k1,22362:24940570,39814001:219458 +k1,22362:27228344,39814001:219458 +k1,22362:28099231,39814001:219459 +k1,22362:29337774,39814001:219458 +k1,22362:30540272,39814001:219458 +k1,22362:32583029,39814001:0 +) +(1,22363:6764466,40679081:25818563,513147,126483 +k1,22362:8134911,40679081:199972 +k1,22362:9641016,40679081:199972 +k1,22362:11350939,40679081:199973 +k1,22362:13247638,40679081:199972 +k1,22362:14836973,40679081:199972 +k1,22362:16304411,40679081:199972 +k1,22362:16860243,40679081:199972 +k1,22362:19443105,40679081:199973 +k1,22362:20259115,40679081:199972 +k1,22362:21478172,40679081:199972 +k1,22362:23067507,40679081:199972 +k1,22362:25317445,40679081:199972 +k1,22362:27085039,40679081:199973 +k1,22362:29353327,40679081:199972 +k1,22362:30544859,40679081:199972 +k1,22362:32583029,40679081:0 +) +(1,22363:6764466,41544161:25818563,513147,134348 +k1,22362:10263096,41544161:229694 +k1,22362:11178951,41544161:229693 +k1,22362:12179348,41544161:229694 +k1,22362:15187769,41544161:229694 +k1,22362:16033500,41544161:229693 +(1,22362:16033500,41544161:0,459977,115847 +r1,22370:19557172,41544161:3523672,575824,115847 +k1,22362:16033500,41544161:-3523672 +) +(1,22362:16033500,41544161:3523672,459977,115847 +k1,22362:16033500,41544161:3277 +h1,22362:19553895,41544161:0,411205,112570 +) +k1,22362:19786866,41544161:229694 +k1,22362:22480058,41544161:229694 +k1,22362:23734735,41544161:229694 +k1,22362:26243115,41544161:229693 +h1,22362:27213703,41544161:0,0,0 +k1,22362:27443397,41544161:229694 +k1,22362:28482461,41544161:229694 +k1,22362:30210307,41544161:229693 +h1,22362:31405684,41544161:0,0,0 +k1,22362:31635378,41544161:229694 +k1,22362:32583029,41544161:0 +) +(1,22363:6764466,42409241:25818563,505283,95026 +k1,22363:32583030,42409241:23320332 +g1,22363:32583030,42409241 +) +] +g1,22363:32583029,42504267 +) +h1,22363:6630773,42504267:0,0,0 +v1,22366:6630773,43369347:0,393216,0 +(1,22367:6630773,44633387:25952256,1657256,0 +g1,22367:6630773,44633387 +g1,22367:6237557,44633387 +r1,22370:6368629,44633387:131072,1657256,0 +g1,22367:6567858,44633387 +g1,22367:6764466,44633387 +[1,22367:6764466,44633387:25818563,1657256,0 +(1,22367:6764466,43641824:25818563,665693,196608 +(1,22366:6764466,43641824:0,665693,196608 +r1,22370:8010564,43641824:1246098,862301,196608 +k1,22366:6764466,43641824:-1246098 +) +(1,22366:6764466,43641824:1246098,665693,196608 +) +k1,22366:8250796,43641824:240232 +k1,22366:9977014,43641824:327680 +k1,22366:11917251,43641824:240233 +k1,22366:13176568,43641824:240232 +k1,22366:14806163,43641824:240232 +k1,22366:16922691,43641824:240232 +(1,22366:16922691,43641824:0,459977,115847 +r1,22370:18687804,43641824:1765113,575824,115847 +k1,22366:16922691,43641824:-1765113 +) +(1,22366:16922691,43641824:1765113,459977,115847 +k1,22366:16922691,43641824:3277 +h1,22366:18684527,43641824:0,411205,112570 +) +k1,22366:18928037,43641824:240233 +k1,22366:20435735,43641824:240232 +k1,22366:21902146,43641824:240232 +k1,22366:23455720,43641824:240232 +k1,22366:25089904,43641824:240233 +k1,22366:28355933,43641824:240232 +(1,22366:28355933,43641824:0,452978,115847 +r1,22370:32583029,43641824:4227096,568825,115847 +k1,22366:28355933,43641824:-4227096 +) +(1,22366:28355933,43641824:4227096,452978,115847 +k1,22366:28355933,43641824:3277 +h1,22366:32579752,43641824:0,411205,112570 +) +k1,22366:32583029,43641824:0 +) +(1,22367:6764466,44506904:25818563,513147,126483 +g1,22366:8155140,44506904 +(1,22366:8155140,44506904:0,452978,115847 +r1,22370:12733948,44506904:4578808,568825,115847 +k1,22366:8155140,44506904:-4578808 +) +(1,22366:8155140,44506904:4578808,452978,115847 +k1,22366:8155140,44506904:3277 +h1,22366:12730671,44506904:0,411205,112570 +) +g1,22366:12933177,44506904 +g1,22366:15459589,44506904 +g1,22366:16325974,44506904 +(1,22366:16325974,44506904:0,452978,115847 +r1,22370:19849646,44506904:3523672,568825,115847 +k1,22366:16325974,44506904:-3523672 +) +(1,22366:16325974,44506904:3523672,452978,115847 +k1,22366:16325974,44506904:3277 +h1,22366:19846369,44506904:0,411205,112570 +) +g1,22366:20048875,44506904 +g1,22366:21439549,44506904 +g1,22366:23933849,44506904 +g1,22366:25152163,44506904 +k1,22367:32583029,44506904:5943854 +g1,22367:32583029,44506904 +) +] +g1,22367:32583029,44633387 +) +h1,22367:6630773,44633387:0,0,0 +(1,22370:6630773,45498467:25952256,513147,134348 +h1,22369:6630773,45498467:983040,0,0 +k1,22369:10643228,45498467:239547 +(1,22369:10643228,45498467:0,452978,115847 +r1,22370:12408341,45498467:1765113,568825,115847 +k1,22369:10643228,45498467:-1765113 +) +(1,22369:10643228,45498467:1765113,452978,115847 +k1,22369:10643228,45498467:3277 +h1,22369:12405064,45498467:0,411205,112570 +) +k1,22369:12647887,45498467:239546 +k1,22369:14570399,45498467:239547 +k1,22369:15224748,45498467:239506 +k1,22369:17754122,45498467:239546 +k1,22369:19185114,45498467:239547 +k1,22369:21369770,45498467:239547 +k1,22369:23248371,45498467:239546 +k1,22369:25001144,45498467:239547 +k1,22369:28717375,45498467:239546 +k1,22369:29608350,45498467:239547 +k1,22369:32583029,45498467:0 +) +] +(1,22370:32583029,45706769:0,0,0 +g1,22370:32583029,45706769 +) +) +] +(1,22370:6630773,47279633:25952256,0,0 +h1,22370:6630773,47279633:25952256,0,0 ) ] -g1,22165:6630773,4812305 -k1,22165:21078841,4812305:13252691 -g1,22165:22701512,4812305 -g1,22165:23350318,4812305 -g1,22165:24759997,4812305 -g1,22165:28372341,4812305 -g1,22165:30105768,4812305 +(1,22370:4262630,4025873:0,0,0 +[1,22370:-473656,4025873:0,0,0 +(1,22370:-473656,-710413:0,0,0 +(1,22370:-473656,-710413:0,0,0 +g1,22370:-473656,-710413 ) +g1,22370:-473656,-710413 ) ] -[1,22165:6630773,45706769:25952256,40108032,0 -(1,22165:6630773,45706769:25952256,40108032,0 -(1,22165:6630773,45706769:0,0,0 -g1,22165:6630773,45706769 ) -[1,22165:6630773,45706769:25952256,40108032,0 -v1,22106:6630773,6254097:0,393216,0 -(1,22106:6630773,9326946:25952256,3466065,0 -g1,22106:6630773,9326946 -g1,22106:6303093,9326946 -r1,22165:6401397,9326946:98304,3466065,0 -g1,22106:6600626,9326946 -g1,22106:6797234,9326946 -[1,22106:6797234,9326946:25785795,3466065,0 -(1,22106:6797234,6686635:25785795,825754,196608 -(1,22105:6797234,6686635:0,825754,196608 -r1,22165:7890375,6686635:1093141,1022362,196608 -k1,22105:6797234,6686635:-1093141 -) -(1,22105:6797234,6686635:1093141,825754,196608 -) -k1,22105:8093006,6686635:202631 -k1,22105:9819224,6686635:327680 -k1,22105:10649689,6686635:202630 -k1,22105:12868207,6686635:202631 -(1,22105:12868207,6686635:0,452978,115847 -r1,22165:16391879,6686635:3523672,568825,115847 -k1,22105:12868207,6686635:-3523672 -) -(1,22105:12868207,6686635:3523672,452978,115847 -k1,22105:12868207,6686635:3277 -h1,22105:16388602,6686635:0,411205,112570 -) -k1,22105:16768180,6686635:202631 -(1,22105:16768180,6686635:0,452978,115847 -r1,22165:20643564,6686635:3875384,568825,115847 -k1,22105:16768180,6686635:-3875384 -) -(1,22105:16768180,6686635:3875384,452978,115847 -k1,22105:16768180,6686635:3277 -h1,22105:20640287,6686635:0,411205,112570 -) -k1,22105:20846195,6686635:202631 -k1,22105:22240270,6686635:202630 -(1,22105:22240270,6686635:0,452978,115847 -r1,22165:26467366,6686635:4227096,568825,115847 -k1,22105:22240270,6686635:-4227096 -) -(1,22105:22240270,6686635:4227096,452978,115847 -k1,22105:22240270,6686635:3277 -h1,22105:26464089,6686635:0,411205,112570 -) -k1,22105:26669997,6686635:202631 -k1,22105:27864188,6686635:202631 -k1,22105:29085903,6686635:202630 -k1,22105:30942007,6686635:202631 -k1,22106:32583029,6686635:0 -) -(1,22106:6797234,7528123:25785795,513147,134348 -k1,22105:8340189,7528123:275489 -k1,22105:10009630,7528123:275490 -k1,22105:13047462,7528123:275489 -k1,22105:15588531,7528123:275489 -k1,22105:19266650,7528123:275490 -k1,22105:20193567,7528123:275489 -k1,22105:22700558,7528123:275490 -k1,22105:23635339,7528123:275489 -k1,22105:25419467,7528123:275489 -k1,22105:29479661,7528123:275490 -k1,22105:31563944,7528123:275489 -k1,22105:32583029,7528123:0 -) -(1,22106:6797234,8369611:25785795,505283,134348 -k1,22105:8550146,8369611:364859 -k1,22105:10586827,8369611:364858 -k1,22105:12143131,8369611:364859 -k1,22105:13269517,8369611:364858 -k1,22105:16061830,8369611:364859 -k1,22105:18938684,8369611:364859 -k1,22105:22879842,8369611:364858 -k1,22105:24960434,8369611:364859 -(1,22105:24960434,8369611:0,452978,115847 -r1,22165:28484106,8369611:3523672,568825,115847 -k1,22105:24960434,8369611:-3523672 -) -(1,22105:24960434,8369611:3523672,452978,115847 -k1,22105:24960434,8369611:3277 -h1,22105:28480829,8369611:0,411205,112570 -) -k1,22105:28848965,8369611:364859 -k1,22105:31436804,8369611:364858 -k1,22106:32583029,8369611:0 -) -(1,22106:6797234,9211099:25785795,505283,115847 -(1,22105:6797234,9211099:0,452978,115847 -r1,22165:11024330,9211099:4227096,568825,115847 -k1,22105:6797234,9211099:-4227096 -) -(1,22105:6797234,9211099:4227096,452978,115847 -k1,22105:6797234,9211099:3277 -h1,22105:11021053,9211099:0,411205,112570 -) -g1,22105:11397229,9211099 -g1,22105:13030386,9211099 -g1,22105:14945348,9211099 -(1,22105:14945348,9211099:0,452978,115847 -r1,22165:19172444,9211099:4227096,568825,115847 -k1,22105:14945348,9211099:-4227096 -) -(1,22105:14945348,9211099:4227096,452978,115847 -k1,22105:14945348,9211099:3277 -h1,22105:19169167,9211099:0,411205,112570 -) -g1,22105:19371673,9211099 -g1,22105:21793883,9211099 -g1,22105:23139337,9211099 -(1,22105:23139337,9211099:0,452978,115847 -r1,22165:27014721,9211099:3875384,568825,115847 -k1,22105:23139337,9211099:-3875384 -) -(1,22105:23139337,9211099:3875384,452978,115847 -k1,22105:23139337,9211099:3277 -h1,22105:27011444,9211099:0,411205,112570 -) -k1,22106:32583029,9211099:5394638 -g1,22106:32583029,9211099 -) -] -g1,22106:32583029,9326946 -) -h1,22106:6630773,9326946:0,0,0 -v1,22109:6630773,10672207:0,393216,0 -(1,22110:6630773,15376068:25952256,5097077,0 -g1,22110:6630773,15376068 -g1,22110:6303093,15376068 -r1,22165:6401397,15376068:98304,5097077,0 -g1,22110:6600626,15376068 -g1,22110:6797234,15376068 -[1,22110:6797234,15376068:25785795,5097077,0 -(1,22110:6797234,11034280:25785795,755289,196608 -(1,22109:6797234,11034280:0,755289,196608 -r1,22165:8134168,11034280:1336934,951897,196608 -k1,22109:6797234,11034280:-1336934 -) -(1,22109:6797234,11034280:1336934,755289,196608 -) -k1,22109:8378365,11034280:244197 -k1,22109:8706045,11034280:327680 -k1,22109:9903791,11034280:244197 -k1,22109:11252270,11034280:244197 -k1,22109:12908769,11034280:244198 -k1,22109:13508826,11034280:244197 -k1,22109:14979202,11034280:244197 -k1,22109:16206439,11034280:244197 -k1,22109:17136798,11034280:244197 -k1,22109:20355674,11034280:244197 -k1,22109:22969654,11034280:244198 -k1,22109:25674073,11034280:244197 -k1,22109:29423135,11034280:244197 -k1,22109:30318760,11034280:244197 -k1,22109:32583029,11034280:0 -) -(1,22110:6797234,11875768:25785795,513147,134348 -k1,22109:8794728,11875768:184768 -k1,22109:10360339,11875768:184767 -k1,22109:11076604,11875768:184768 -k1,22109:15147002,11875768:184768 -k1,22109:17482661,11875768:184767 -k1,22109:19160995,11875768:184768 -k1,22109:20031925,11875768:184768 -k1,22109:21914730,11875768:184767 -k1,22109:22967850,11875768:184768 -k1,22109:23967886,11875768:184768 -k1,22109:25171738,11875768:184767 -k1,22109:28263683,11875768:184768 -k1,22109:29134613,11875768:184768 -k1,22109:30641241,11875768:184767 -k1,22109:31485301,11875768:184768 -k1,22109:32583029,11875768:0 -) -(1,22110:6797234,12717256:25785795,513147,126483 -k1,22109:8331368,12717256:203753 -k1,22109:10539867,12717256:203753 -k1,22109:11371455,12717256:203753 -k1,22109:12778449,12717256:203753 -k1,22109:14522953,12717256:203753 -k1,22109:15745791,12717256:203753 -k1,22109:18645040,12717256:203753 -k1,22109:19500221,12717256:203753 -k1,22109:20796459,12717256:203753 -k1,22109:21531709,12717256:203753 -(1,22109:21531709,12717256:0,452978,115847 -r1,22165:25407093,12717256:3875384,568825,115847 -k1,22109:21531709,12717256:-3875384 -) -(1,22109:21531709,12717256:3875384,452978,115847 -k1,22109:21531709,12717256:3277 -h1,22109:25403816,12717256:0,411205,112570 -) -k1,22109:25784516,12717256:203753 -k1,22109:27184956,12717256:203753 -k1,22109:30167436,12717256:203753 -k1,22109:32051532,12717256:203753 -k1,22109:32583029,12717256:0 -) -(1,22110:6797234,13558744:25785795,505283,134348 -k1,22109:7333016,13558744:179922 -k1,22109:10487616,13558744:179921 -k1,22109:12645415,13558744:179922 -k1,22109:13441374,13558744:179921 -k1,22109:15506767,13558744:179922 -k1,22109:17138311,13558744:179922 -k1,22109:19941638,13558744:179921 -k1,22109:21987370,13558744:179922 -k1,22109:26130909,13558744:179922 -k1,22109:26962258,13558744:179921 -k1,22109:28298890,13558744:179922 -k1,22109:29647318,13558744:179921 -k1,22109:30510125,13558744:179922 -k1,22109:32583029,13558744:0 -) -(1,22110:6797234,14400232:25785795,513147,126483 -k1,22109:7633927,14400232:220655 -k1,22109:8873666,14400232:220654 -k1,22109:10251031,14400232:220655 -k1,22109:11865636,14400232:220654 -k1,22109:13105376,14400232:220655 -k1,22109:16762739,14400232:220655 -k1,22109:19606144,14400232:220654 -k1,22109:22513120,14400232:220655 -k1,22109:23965852,14400232:220655 -k1,22109:26847923,14400232:220654 -k1,22109:27684616,14400232:220655 -k1,22109:30183957,14400232:220654 -h1,22109:31553004,14400232:0,0,0 -k1,22109:31773659,14400232:220655 -k1,22109:32583029,14400232:0 -) -(1,22110:6797234,15241720:25785795,505283,134348 -g1,22109:8494616,15241720 -h1,22109:9689993,15241720:0,0,0 -k1,22110:32583029,15241720:22512272 -g1,22110:32583029,15241720 -) -] -g1,22110:32583029,15376068 -) -h1,22110:6630773,15376068:0,0,0 -(1,22115:6630773,16721329:25952256,513147,134348 -h1,22114:6630773,16721329:983040,0,0 -k1,22114:9319016,16721329:243750 -k1,22114:10431119,16721329:243751 -k1,22114:11954787,16721329:243750 -k1,22114:13355247,16721329:243750 -k1,22114:16260415,16721329:243751 -k1,22114:17163457,16721329:243750 -k1,22114:18426292,16721329:243750 -k1,22114:19762528,16721329:243751 -k1,22114:20665570,16721329:243750 -k1,22114:21265180,16721329:243750 -k1,22114:23106043,16721329:243751 -k1,22114:26045289,16721329:243750 -k1,22114:29260441,16721329:243750 -k1,22114:30660902,16721329:243751 -k1,22114:31563944,16721329:243750 -k1,22114:32583029,16721329:0 -) -(1,22115:6630773,17562817:25952256,513147,134348 -k1,22114:8345367,17562817:234791 -k1,22114:11605956,17562817:234792 -k1,22114:14930770,17562817:234791 -k1,22114:17194556,17562817:234791 -k1,22114:18626035,17562817:234792 -(1,22114:18626035,17562817:0,452978,115847 -r1,22165:22501419,17562817:3875384,568825,115847 -k1,22114:18626035,17562817:-3875384 -) -(1,22114:18626035,17562817:3875384,452978,115847 -k1,22114:18626035,17562817:3277 -h1,22114:22498142,17562817:0,411205,112570 -) -k1,22114:22736210,17562817:234791 -k1,22114:25666497,17562817:234791 -k1,22114:27584253,17562817:234791 -k1,22114:28505207,17562817:234792 -k1,22114:29510701,17562817:234791 -k1,22114:32583029,17562817:0 -) -(1,22115:6630773,18404305:25952256,513147,134348 -k1,22114:7252054,18404305:265421 -k1,22114:8906838,18404305:265421 -k1,22114:11222225,18404305:265421 -k1,22114:12170531,18404305:265421 -k1,22114:13206654,18404305:265420 -k1,22114:15431601,18404305:265421 -k1,22114:16981528,18404305:265421 -k1,22114:18351231,18404305:265421 -k1,22114:19364418,18404305:265421 -k1,22114:22095303,18404305:265421 -k1,22114:23628190,18404305:265421 -k1,22114:24249471,18404305:265421 -k1,22114:25904254,18404305:265420 -k1,22114:28219641,18404305:265421 -k1,22114:31208083,18404305:265421 -k1,22114:31931601,18404305:265421 -k1,22114:32583029,18404305:0 -) -(1,22115:6630773,19245793:25952256,513147,134348 -k1,22114:9799307,19245793:193855 -k1,22114:12362945,19245793:193856 -k1,22114:13748245,19245793:193855 -k1,22114:15663076,19245793:193856 -k1,22114:17495986,19245793:193855 -k1,22114:18341269,19245793:193855 -k1,22114:18890985,19245793:193856 -k1,22114:20311019,19245793:193855 -k1,22114:21661585,19245793:193856 -k1,22114:22808989,19245793:193855 -k1,22114:24308977,19245793:193855 -k1,22114:26432213,19245793:193856 -k1,22114:27645153,19245793:193855 -k1,22114:29228372,19245793:193856 -k1,22114:31298523,19245793:193855 -k1,22114:32583029,19245793:0 -) -(1,22115:6630773,20087281:25952256,505283,7863 -g1,22114:7698354,20087281 -g1,22114:9030045,20087281 -g1,22114:10844081,20087281 -g1,22114:11694738,20087281 -k1,22115:32583029,20087281:19369822 -g1,22115:32583029,20087281 -) -v1,22117:6630773,21257233:0,393216,0 -(1,22121:6630773,21572330:25952256,708313,196608 -g1,22121:6630773,21572330 -g1,22121:6630773,21572330 -g1,22121:6434165,21572330 -(1,22121:6434165,21572330:0,708313,196608 -r1,22165:32779637,21572330:26345472,904921,196608 -k1,22121:6434165,21572330:-26345472 -) -(1,22121:6434165,21572330:26345472,708313,196608 -[1,22121:6630773,21572330:25952256,511705,0 -(1,22119:6630773,21471143:25952256,410518,101187 -(1,22118:6630773,21471143:0,0,0 -g1,22118:6630773,21471143 -g1,22118:6630773,21471143 -g1,22118:6303093,21471143 -(1,22118:6303093,21471143:0,0,0 -) -g1,22118:6630773,21471143 -) -g1,22119:8527647,21471143 -g1,22119:9476085,21471143 -g1,22119:13585980,21471143 -g1,22119:14218272,21471143 -g1,22119:15799002,21471143 -g1,22119:16431294,21471143 -g1,22119:17063586,21471143 -g1,22119:18328170,21471143 -g1,22119:18960462,21471143 -g1,22119:20225045,21471143 -g1,22119:20857337,21471143 -g1,22119:21489629,21471143 -h1,22119:25599523,21471143:0,0,0 -k1,22119:32583029,21471143:6983506 -g1,22119:32583029,21471143 -) -] -) -g1,22121:32583029,21572330 -g1,22121:6630773,21572330 -g1,22121:6630773,21572330 -g1,22121:32583029,21572330 -g1,22121:32583029,21572330 -) -h1,22121:6630773,21768938:0,0,0 -(1,22125:6630773,23114199:25952256,513147,134348 -h1,22124:6630773,23114199:983040,0,0 -k1,22124:8806789,23114199:239427 -k1,22124:10661023,23114199:239427 -(1,22124:10661023,23114199:0,459977,115847 -r1,22165:12426136,23114199:1765113,575824,115847 -k1,22124:10661023,23114199:-1765113 -) -(1,22124:10661023,23114199:1765113,459977,115847 -k1,22124:10661023,23114199:3277 -h1,22124:12422859,23114199:0,411205,112570 -) -k1,22124:12665563,23114199:239427 -k1,22124:13556418,23114199:239427 -k1,22124:14151705,23114199:239427 -k1,22124:15659868,23114199:239386 -k1,22124:16882335,23114199:239427 -k1,22124:19633757,23114199:239427 -k1,22124:20820835,23114199:239427 -k1,22124:21830965,23114199:239427 -k1,22124:24381847,23114199:239427 -k1,22124:27463570,23114199:239427 -k1,22124:29718229,23114199:239427 -k1,22124:31149101,23114199:239427 -k1,22124:32583029,23114199:0 -) -(1,22125:6630773,23955687:25952256,505283,126483 -g1,22124:9125073,23955687 -g1,22124:10112700,23955687 -k1,22125:32583030,23955687:19547424 -g1,22125:32583030,23955687 -) -v1,22127:6630773,25125638:0,393216,0 -(1,22132:6630773,26113204:25952256,1380782,196608 -g1,22132:6630773,26113204 -g1,22132:6630773,26113204 -g1,22132:6434165,26113204 -(1,22132:6434165,26113204:0,1380782,196608 -r1,22165:32779637,26113204:26345472,1577390,196608 -k1,22132:6434165,26113204:-26345472 -) -(1,22132:6434165,26113204:26345472,1380782,196608 -[1,22132:6630773,26113204:25952256,1184174,0 -(1,22129:6630773,25339548:25952256,410518,101187 -(1,22128:6630773,25339548:0,0,0 -g1,22128:6630773,25339548 -g1,22128:6630773,25339548 -g1,22128:6303093,25339548 -(1,22128:6303093,25339548:0,0,0 -) -g1,22128:6630773,25339548 -) -k1,22129:6630773,25339548:0 -g1,22129:12005250,25339548 -g1,22129:13585979,25339548 -g1,22129:14218271,25339548 -g1,22129:19276602,25339548 -g1,22129:22438059,25339548 -g1,22129:23070351,25339548 -h1,22129:24967225,25339548:0,0,0 -k1,22129:32583029,25339548:7615804 -g1,22129:32583029,25339548 -) -(1,22130:6630773,26005726:25952256,410518,107478 -h1,22130:6630773,26005726:0,0,0 -g1,22130:14850561,26005726 -g1,22130:16747435,26005726 -g1,22130:17379727,26005726 -h1,22130:20541184,26005726:0,0,0 -k1,22130:32583029,26005726:12041845 -g1,22130:32583029,26005726 -) -] -) -g1,22132:32583029,26113204 -g1,22132:6630773,26113204 -g1,22132:6630773,26113204 -g1,22132:32583029,26113204 -g1,22132:32583029,26113204 -) -h1,22132:6630773,26309812:0,0,0 -v1,22136:6630773,27983537:0,393216,0 -(1,22145:6630773,31604357:25952256,4014036,196608 -g1,22145:6630773,31604357 -g1,22145:6630773,31604357 -g1,22145:6434165,31604357 -(1,22145:6434165,31604357:0,4014036,196608 -r1,22165:32779637,31604357:26345472,4210644,196608 -k1,22145:6434165,31604357:-26345472 -) -(1,22145:6434165,31604357:26345472,4014036,196608 -[1,22145:6630773,31604357:25952256,3817428,0 -(1,22144:6630773,28191155:25952256,404226,101187 -(1,22137:6630773,28191155:0,0,0 -g1,22137:6630773,28191155 -g1,22137:6630773,28191155 -g1,22137:6303093,28191155 -(1,22137:6303093,28191155:0,0,0 -) -g1,22137:6630773,28191155 -) -k1,22144:6630773,28191155:0 -k1,22144:6630773,28191155:0 -h1,22144:10108376,28191155:0,0,0 -k1,22144:32583028,28191155:22474652 -g1,22144:32583028,28191155 -) -(1,22144:6630773,28857333:25952256,404226,82312 -h1,22144:6630773,28857333:0,0,0 -k1,22144:6630773,28857333:0 -h1,22144:9476085,28857333:0,0,0 -k1,22144:32583029,28857333:23106944 -g1,22144:32583029,28857333 -) -(1,22144:6630773,29523511:25952256,404226,82312 -h1,22144:6630773,29523511:0,0,0 -k1,22144:6630773,29523511:0 -h1,22144:9476085,29523511:0,0,0 -k1,22144:32583029,29523511:23106944 -g1,22144:32583029,29523511 -) -(1,22144:6630773,30189689:25952256,404226,82312 -h1,22144:6630773,30189689:0,0,0 -k1,22144:6630773,30189689:0 -h1,22144:9476085,30189689:0,0,0 -k1,22144:32583029,30189689:23106944 -g1,22144:32583029,30189689 -) -(1,22144:6630773,30855867:25952256,404226,82312 -h1,22144:6630773,30855867:0,0,0 -k1,22144:6630773,30855867:0 -h1,22144:9476085,30855867:0,0,0 -k1,22144:32583029,30855867:23106944 -g1,22144:32583029,30855867 -) -(1,22144:6630773,31522045:25952256,404226,82312 -h1,22144:6630773,31522045:0,0,0 -k1,22144:6630773,31522045:0 -h1,22144:9476085,31522045:0,0,0 -k1,22144:32583029,31522045:23106944 -g1,22144:32583029,31522045 -) -] -) -g1,22145:32583029,31604357 -g1,22145:6630773,31604357 -g1,22145:6630773,31604357 -g1,22145:32583029,31604357 -g1,22145:32583029,31604357 -) -h1,22145:6630773,31800965:0,0,0 -v1,22149:6630773,33649999:0,393216,0 -(1,22150:6630773,38314538:25952256,5057755,0 -g1,22150:6630773,38314538 -g1,22150:6303093,38314538 -r1,22165:6401397,38314538:98304,5057755,0 -g1,22150:6600626,38314538 -g1,22150:6797234,38314538 -[1,22150:6797234,38314538:25785795,5057755,0 -(1,22150:6797234,34012072:25785795,755289,196608 -(1,22149:6797234,34012072:0,755289,196608 -r1,22165:8134168,34012072:1336934,951897,196608 -k1,22149:6797234,34012072:-1336934 -) -(1,22149:6797234,34012072:1336934,755289,196608 -) -k1,22149:8348724,34012072:214556 -k1,22149:8676404,34012072:327680 -k1,22149:9518795,34012072:214556 -k1,22149:11335051,34012072:214556 -k1,22149:13246989,34012072:214556 -k1,22149:15816910,34012072:214557 -k1,22149:16717628,34012072:214556 -k1,22149:18961179,34012072:214556 -(1,22149:18961179,34012072:0,414482,115847 -r1,22165:24946834,34012072:5985655,530329,115847 -k1,22149:18961179,34012072:-5985655 -) -(1,22149:18961179,34012072:5985655,414482,115847 -g1,22149:22481574,34012072 -g1,22149:23184998,34012072 -h1,22149:24943557,34012072:0,411205,112570 -) -k1,22149:25161390,34012072:214556 -k1,22149:27073984,34012072:214556 -k1,22149:29546255,34012072:214556 -k1,22149:30116671,34012072:214556 -k1,22149:31599989,34012072:214541 -k1,22149:32583029,34012072:0 -) -(1,22150:6797234,34853560:25785795,513147,126483 -k1,22149:8147416,34853560:217720 -k1,22149:9753189,34853560:217720 -k1,22149:11668947,34853560:217720 -k1,22149:12344764,34853560:217720 -k1,22149:13093981,34853560:217720 -k1,22149:14897672,34853560:217720 -k1,22149:15889372,34853560:217720 -k1,22149:18389710,34853560:217719 -k1,22149:19073391,34853560:217720 -k1,22149:20495007,34853560:217720 -k1,22149:22781043,34853560:217720 -k1,22149:23814031,34853560:217720 -k1,22149:26403499,34853560:217720 -k1,22149:29830517,34853560:217720 -k1,22150:32583029,34853560:0 -) -(1,22150:6797234,35695048:25785795,513147,134348 -k1,22149:8455645,35695048:217274 -k1,22149:10166484,35695048:217273 -k1,22149:11069920,35695048:217274 -k1,22149:12770929,35695048:217274 -k1,22149:14479146,35695048:217273 -k1,22149:15866893,35695048:217274 -k1,22149:18254719,35695048:217274 -k1,22149:19816791,35695048:217273 -k1,22149:22291780,35695048:217274 -k1,22149:23528139,35695048:217274 -k1,22149:24949308,35695048:217273 -k1,22149:27234898,35695048:217274 -k1,22149:28103600,35695048:217274 -k1,22149:29339958,35695048:217273 -k1,22149:30540272,35695048:217274 -k1,22149:32583029,35695048:0 -) -(1,22150:6797234,36536536:25785795,513147,126483 -k1,22149:8165495,36536536:197788 -k1,22149:9669415,36536536:197787 -k1,22149:11377153,36536536:197788 -k1,22149:13271668,36536536:197788 -k1,22149:14858818,36536536:197787 -k1,22149:16324072,36536536:197788 -k1,22149:16877720,36536536:197788 -k1,22149:19458396,36536536:197787 -k1,22149:20272222,36536536:197788 -k1,22149:21489095,36536536:197788 -k1,22149:23076245,36536536:197787 -k1,22149:25323999,36536536:197788 -k1,22149:27089408,36536536:197788 -k1,22149:29355511,36536536:197787 -k1,22149:30544859,36536536:197788 -k1,22149:32583029,36536536:0 -) -(1,22150:6797234,37378024:25785795,513147,134348 -k1,22149:10293343,37378024:227173 -k1,22149:11206678,37378024:227173 -k1,22149:12204554,37378024:227173 -k1,22149:15210454,37378024:227173 -k1,22149:16053665,37378024:227173 -(1,22149:16053665,37378024:0,459977,115847 -r1,22165:19577337,37378024:3523672,575824,115847 -k1,22149:16053665,37378024:-3523672 -) -(1,22149:16053665,37378024:3523672,459977,115847 -k1,22149:16053665,37378024:3277 -h1,22149:19574060,37378024:0,411205,112570 -) -k1,22149:19804510,37378024:227173 -k1,22149:22495182,37378024:227174 -k1,22149:23747338,37378024:227173 -k1,22149:26253198,37378024:227173 -h1,22149:27223786,37378024:0,0,0 -k1,22149:27450959,37378024:227173 -k1,22149:28487502,37378024:227173 -k1,22149:30212828,37378024:227173 -h1,22149:31408205,37378024:0,0,0 -k1,22149:31635378,37378024:227173 -k1,22149:32583029,37378024:0 -) -(1,22150:6797234,38219512:25785795,505283,95026 -k1,22150:32583030,38219512:23287564 -g1,22150:32583030,38219512 -) -] -g1,22150:32583029,38314538 -) -h1,22150:6630773,38314538:0,0,0 -v1,22153:6630773,39659799:0,393216,0 -(1,22154:6630773,41060308:25952256,1793725,0 -g1,22154:6630773,41060308 -g1,22154:6303093,41060308 -r1,22165:6401397,41060308:98304,1793725,0 -g1,22154:6600626,41060308 -g1,22154:6797234,41060308 -[1,22154:6797234,41060308:25785795,1793725,0 -(1,22154:6797234,40092337:25785795,825754,196608 -(1,22153:6797234,40092337:0,825754,196608 -r1,22165:7890375,40092337:1093141,1022362,196608 -k1,22153:6797234,40092337:-1093141 -) -(1,22153:6797234,40092337:1093141,825754,196608 -) -k1,22153:8141534,40092337:251159 -k1,22153:9867752,40092337:327680 -k1,22153:11818914,40092337:251158 -k1,22153:13089158,40092337:251159 -k1,22153:14729679,40092337:251158 -k1,22153:16857134,40092337:251159 -(1,22153:16857134,40092337:0,459977,115847 -r1,22165:18622247,40092337:1765113,575824,115847 -k1,22153:16857134,40092337:-1765113 -) -(1,22153:16857134,40092337:1765113,459977,115847 -k1,22153:16857134,40092337:3277 -h1,22153:18618970,40092337:0,411205,112570 -) -k1,22153:18873405,40092337:251158 -k1,22153:20392030,40092337:251159 -k1,22153:21869367,40092337:251158 -k1,22153:23433868,40092337:251159 -k1,22153:25078977,40092337:251158 -k1,22153:28355933,40092337:251159 -(1,22153:28355933,40092337:0,452978,115847 -r1,22165:32583029,40092337:4227096,568825,115847 -k1,22153:28355933,40092337:-4227096 -) -(1,22153:28355933,40092337:4227096,452978,115847 -k1,22153:28355933,40092337:3277 -h1,22153:32579752,40092337:0,411205,112570 -) -k1,22153:32583029,40092337:0 -) -(1,22154:6797234,40933825:25785795,513147,126483 -g1,22153:8187908,40933825 -(1,22153:8187908,40933825:0,452978,115847 -r1,22165:12766716,40933825:4578808,568825,115847 -k1,22153:8187908,40933825:-4578808 -) -(1,22153:8187908,40933825:4578808,452978,115847 -k1,22153:8187908,40933825:3277 -h1,22153:12763439,40933825:0,411205,112570 -) -g1,22153:12965945,40933825 -g1,22153:15492357,40933825 -g1,22153:16358742,40933825 -(1,22153:16358742,40933825:0,452978,115847 -r1,22165:19882414,40933825:3523672,568825,115847 -k1,22153:16358742,40933825:-3523672 -) -(1,22153:16358742,40933825:3523672,452978,115847 -k1,22153:16358742,40933825:3277 -h1,22153:19879137,40933825:0,411205,112570 -) -g1,22153:20081643,40933825 -g1,22153:21472317,40933825 -g1,22153:23966617,40933825 -g1,22153:25184931,40933825 -k1,22154:32583029,40933825:5911086 -g1,22154:32583029,40933825 -) -] -g1,22154:32583029,41060308 -) -h1,22154:6630773,41060308:0,0,0 -(1,22157:6630773,42405570:25952256,513147,134348 -h1,22156:6630773,42405570:983040,0,0 -k1,22156:10643228,42405570:239547 -(1,22156:10643228,42405570:0,452978,115847 -r1,22165:12408341,42405570:1765113,568825,115847 -k1,22156:10643228,42405570:-1765113 -) -(1,22156:10643228,42405570:1765113,452978,115847 -k1,22156:10643228,42405570:3277 -h1,22156:12405064,42405570:0,411205,112570 -) -k1,22156:12647887,42405570:239546 -k1,22156:14570399,42405570:239547 -k1,22156:15224748,42405570:239506 -k1,22156:17754122,42405570:239546 -k1,22156:19185114,42405570:239547 -k1,22156:21369770,42405570:239547 -k1,22156:23248371,42405570:239546 -k1,22156:25001144,42405570:239547 -k1,22156:28717375,42405570:239546 -k1,22156:29608350,42405570:239547 -k1,22156:32583029,42405570:0 -) -(1,22157:6630773,43247058:25952256,513147,134348 -k1,22156:9030888,43247058:204004 -k1,22156:9886320,43247058:204004 -k1,22156:11109410,43247058:204005 -k1,22156:13733659,43247058:204004 -k1,22156:14620548,43247058:204004 -k1,22156:15180412,43247058:204004 -k1,22156:16541127,43247058:204005 -k1,22156:19574320,43247058:204004 -k1,22156:20935034,43247058:204004 -k1,22156:21821923,43247058:204004 -k1,22156:23676124,43247058:204004 -k1,22156:27185110,43247058:204005 -k1,22156:28075276,43247058:204004 -k1,22156:31821501,43247058:204004 -k1,22156:32583029,43247058:0 -) -(1,22157:6630773,44088546:25952256,513147,134348 -k1,22156:9264513,44088546:194490 -k1,22156:9814863,44088546:194490 -k1,22156:11970846,44088546:194490 -k1,22156:13546181,44088546:194491 -k1,22156:16778920,44088546:194490 -k1,22156:18077692,44088546:194490 -k1,22156:19019948,44088546:194490 -k1,22156:20148981,44088546:194490 -k1,22156:22901997,44088546:194490 -k1,22156:26377220,44088546:194491 -(1,22156:26377220,44088546:0,414482,115847 -r1,22165:27438909,44088546:1061689,530329,115847 -k1,22156:26377220,44088546:-1061689 -) -(1,22156:26377220,44088546:1061689,414482,115847 -k1,22156:26377220,44088546:3277 -h1,22156:27435632,44088546:0,411205,112570 -) -k1,22156:27807069,44088546:194490 -k1,22156:28629394,44088546:194490 -k1,22156:29921612,44088546:194490 -k1,22156:32583029,44088546:0 -) -(1,22157:6630773,44930034:25952256,505283,126483 -g1,22156:7698354,44930034 -g1,22156:8832126,44930034 -(1,22156:8832126,44930034:0,414482,115847 -r1,22165:9893815,44930034:1061689,530329,115847 -k1,22156:8832126,44930034:-1061689 -) -(1,22156:8832126,44930034:1061689,414482,115847 -k1,22156:8832126,44930034:3277 -h1,22156:9890538,44930034:0,411205,112570 -) -g1,22156:10093044,44930034 -g1,22156:10943701,44930034 -g1,22156:11498790,44930034 -g1,22156:12981214,44930034 -g1,22156:14348950,44930034 -g1,22156:17178139,44930034 -g1,22156:18063530,44930034 -g1,22156:19281844,44930034 -g1,22156:21616236,44930034 -g1,22156:24755410,44930034 -(1,22156:24755410,44930034:0,452978,115847 -r1,22165:26168811,44930034:1413401,568825,115847 -k1,22156:24755410,44930034:-1413401 -) -(1,22156:24755410,44930034:1413401,452978,115847 -k1,22156:24755410,44930034:3277 -h1,22156:26165534,44930034:0,411205,112570 -) -k1,22157:32583029,44930034:6033454 -g1,22157:32583029,44930034 -) -v1,22159:6630773,46099985:0,393216,0 -] -(1,22165:32583029,45706769:0,0,0 -g1,22165:32583029,45706769 -) -) -] -(1,22165:6630773,47279633:25952256,0,0 -h1,22165:6630773,47279633:25952256,0,0 -) -] -(1,22165:4262630,4025873:0,0,0 -[1,22165:-473656,4025873:0,0,0 -(1,22165:-473656,-710413:0,0,0 -(1,22165:-473656,-710413:0,0,0 -g1,22165:-473656,-710413 -) -g1,22165:-473656,-710413 -) -] -) -] -!28726 -}401 -Input:3605:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3606:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3607:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3608:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3609:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3610:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3611:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3612:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3613:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3614:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3615:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +] +!33256 +}384 +Input:3646:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3647:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3648:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3649:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3650:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3651:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3652:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3653:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3654:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3655:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3656:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1046 -{402 -[1,22199:4262630,47279633:28320399,43253760,0 -(1,22199:4262630,4025873:0,0,0 -[1,22199:-473656,4025873:0,0,0 -(1,22199:-473656,-710413:0,0,0 -(1,22199:-473656,-644877:0,0,0 -k1,22199:-473656,-644877:-65536 +{385 +[1,22410:4262630,47279633:28320399,43253760,0 +(1,22410:4262630,4025873:0,0,0 +[1,22410:-473656,4025873:0,0,0 +(1,22410:-473656,-710413:0,0,0 +(1,22410:-473656,-644877:0,0,0 +k1,22410:-473656,-644877:-65536 ) -(1,22199:-473656,4736287:0,0,0 -k1,22199:-473656,4736287:5209943 +(1,22410:-473656,4736287:0,0,0 +k1,22410:-473656,4736287:5209943 ) -g1,22199:-473656,-710413 +g1,22410:-473656,-710413 ) ] ) -[1,22199:6630773,47279633:25952256,43253760,0 -[1,22199:6630773,4812305:25952256,786432,0 -(1,22199:6630773,4812305:25952256,513147,126483 -(1,22199:6630773,4812305:25952256,513147,126483 -g1,22199:3078558,4812305 -[1,22199:3078558,4812305:0,0,0 -(1,22199:3078558,2439708:0,1703936,0 -k1,22199:1358238,2439708:-1720320 -(1,21457:1358238,2439708:1720320,1703936,0 -(1,21457:1358238,2439708:1179648,16384,0 -r1,22199:2537886,2439708:1179648,16384,0 +[1,22410:6630773,47279633:25952256,43253760,0 +[1,22410:6630773,4812305:25952256,786432,0 +(1,22410:6630773,4812305:25952256,505283,134348 +(1,22410:6630773,4812305:25952256,505283,134348 +g1,22410:3078558,4812305 +[1,22410:3078558,4812305:0,0,0 +(1,22410:3078558,2439708:0,1703936,0 +k1,22410:1358238,2439708:-1720320 +(1,21670:1358238,2439708:1720320,1703936,0 +(1,21670:1358238,2439708:1179648,16384,0 +r1,22410:2537886,2439708:1179648,16384,0 ) -g1,21457:3062174,2439708 -(1,21457:3062174,2439708:16384,1703936,0 -[1,21457:3062174,2439708:25952256,1703936,0 -(1,21457:3062174,1915420:25952256,1179648,0 -(1,21457:3062174,1915420:16384,1179648,0 -r1,22199:3078558,1915420:16384,1179648,0 +g1,21670:3062174,2439708 +(1,21670:3062174,2439708:16384,1703936,0 +[1,21670:3062174,2439708:25952256,1703936,0 +(1,21670:3062174,1915420:25952256,1179648,0 +(1,21670:3062174,1915420:16384,1179648,0 +r1,22410:3078558,1915420:16384,1179648,0 ) -k1,21457:29014430,1915420:25935872 -g1,21457:29014430,1915420 +k1,21670:29014430,1915420:25935872 +g1,21670:29014430,1915420 ) ] ) ) ) ] -[1,22199:3078558,4812305:0,0,0 -(1,22199:3078558,2439708:0,1703936,0 -g1,22199:29030814,2439708 -g1,22199:36135244,2439708 -(1,21457:36135244,2439708:1720320,1703936,0 -(1,21457:36135244,2439708:16384,1703936,0 -[1,21457:36135244,2439708:25952256,1703936,0 -(1,21457:36135244,1915420:25952256,1179648,0 -(1,21457:36135244,1915420:16384,1179648,0 -r1,22199:36151628,1915420:16384,1179648,0 +[1,22410:3078558,4812305:0,0,0 +(1,22410:3078558,2439708:0,1703936,0 +g1,22410:29030814,2439708 +g1,22410:36135244,2439708 +(1,21670:36135244,2439708:1720320,1703936,0 +(1,21670:36135244,2439708:16384,1703936,0 +[1,21670:36135244,2439708:25952256,1703936,0 +(1,21670:36135244,1915420:25952256,1179648,0 +(1,21670:36135244,1915420:16384,1179648,0 +r1,22410:36151628,1915420:16384,1179648,0 ) -k1,21457:62087500,1915420:25935872 -g1,21457:62087500,1915420 +k1,21670:62087500,1915420:25935872 +g1,21670:62087500,1915420 ) ] ) -g1,21457:36675916,2439708 -(1,21457:36675916,2439708:1179648,16384,0 -r1,22199:37855564,2439708:1179648,16384,0 +g1,21670:36675916,2439708 +(1,21670:36675916,2439708:1179648,16384,0 +r1,22410:37855564,2439708:1179648,16384,0 ) ) -k1,22199:3078556,2439708:-34777008 +k1,22410:3078556,2439708:-34777008 ) ] -[1,22199:3078558,4812305:0,0,0 -(1,22199:3078558,49800853:0,16384,2228224 -k1,22199:1358238,49800853:-1720320 -(1,21457:1358238,49800853:1720320,16384,2228224 -(1,21457:1358238,49800853:1179648,16384,0 -r1,22199:2537886,49800853:1179648,16384,0 +[1,22410:3078558,4812305:0,0,0 +(1,22410:3078558,49800853:0,16384,2228224 +k1,22410:1358238,49800853:-1720320 +(1,21670:1358238,49800853:1720320,16384,2228224 +(1,21670:1358238,49800853:1179648,16384,0 +r1,22410:2537886,49800853:1179648,16384,0 ) -g1,21457:3062174,49800853 -(1,21457:3062174,52029077:16384,1703936,0 -[1,21457:3062174,52029077:25952256,1703936,0 -(1,21457:3062174,51504789:25952256,1179648,0 -(1,21457:3062174,51504789:16384,1179648,0 -r1,22199:3078558,51504789:16384,1179648,0 +g1,21670:3062174,49800853 +(1,21670:3062174,52029077:16384,1703936,0 +[1,21670:3062174,52029077:25952256,1703936,0 +(1,21670:3062174,51504789:25952256,1179648,0 +(1,21670:3062174,51504789:16384,1179648,0 +r1,22410:3078558,51504789:16384,1179648,0 ) -k1,21457:29014430,51504789:25935872 -g1,21457:29014430,51504789 +k1,21670:29014430,51504789:25935872 +g1,21670:29014430,51504789 ) ] ) ) ) ] -[1,22199:3078558,4812305:0,0,0 -(1,22199:3078558,49800853:0,16384,2228224 -g1,22199:29030814,49800853 -g1,22199:36135244,49800853 -(1,21457:36135244,49800853:1720320,16384,2228224 -(1,21457:36135244,52029077:16384,1703936,0 -[1,21457:36135244,52029077:25952256,1703936,0 -(1,21457:36135244,51504789:25952256,1179648,0 -(1,21457:36135244,51504789:16384,1179648,0 -r1,22199:36151628,51504789:16384,1179648,0 +[1,22410:3078558,4812305:0,0,0 +(1,22410:3078558,49800853:0,16384,2228224 +g1,22410:29030814,49800853 +g1,22410:36135244,49800853 +(1,21670:36135244,49800853:1720320,16384,2228224 +(1,21670:36135244,52029077:16384,1703936,0 +[1,21670:36135244,52029077:25952256,1703936,0 +(1,21670:36135244,51504789:25952256,1179648,0 +(1,21670:36135244,51504789:16384,1179648,0 +r1,22410:36151628,51504789:16384,1179648,0 ) -k1,21457:62087500,51504789:25935872 -g1,21457:62087500,51504789 +k1,21670:62087500,51504789:25935872 +g1,21670:62087500,51504789 ) ] ) -g1,21457:36675916,49800853 -(1,21457:36675916,49800853:1179648,16384,0 -r1,22199:37855564,49800853:1179648,16384,0 +g1,21670:36675916,49800853 +(1,21670:36675916,49800853:1179648,16384,0 +r1,22410:37855564,49800853:1179648,16384,0 ) ) -k1,22199:3078556,49800853:-34777008 -) -] -g1,22199:6630773,4812305 -g1,22199:6630773,4812305 -g1,22199:9744388,4812305 -g1,22199:11175694,4812305 -k1,22199:31387652,4812305:20211958 -) -) -] -[1,22199:6630773,45706769:25952256,40108032,0 -(1,22199:6630773,45706769:25952256,40108032,0 -(1,22199:6630773,45706769:0,0,0 -g1,22199:6630773,45706769 -) -[1,22199:6630773,45706769:25952256,40108032,0 -v1,22165:6630773,6254097:0,393216,0 -(1,22165:6630773,7901549:25952256,2040668,196608 -g1,22165:6630773,7901549 -g1,22165:6630773,7901549 -g1,22165:6434165,7901549 -(1,22165:6434165,7901549:0,2040668,196608 -r1,22199:32779637,7901549:26345472,2237276,196608 -k1,22165:6434165,7901549:-26345472 -) -(1,22165:6434165,7901549:26345472,2040668,196608 -[1,22165:6630773,7901549:25952256,1844060,0 -(1,22161:6630773,6461715:25952256,404226,101187 -(1,22160:6630773,6461715:0,0,0 -g1,22160:6630773,6461715 -g1,22160:6630773,6461715 -g1,22160:6303093,6461715 -(1,22160:6303093,6461715:0,0,0 -) -g1,22160:6630773,6461715 -) -g1,22161:9476084,6461715 -g1,22161:10424522,6461715 -g1,22161:13585980,6461715 -g1,22161:15799000,6461715 -g1,22161:18328166,6461715 -h1,22161:21173477,6461715:0,0,0 -k1,22161:32583029,6461715:11409552 -g1,22161:32583029,6461715 -) -(1,22162:6630773,7127893:25952256,410518,101187 -h1,22162:6630773,7127893:0,0,0 -g1,22162:11056813,7127893 -g1,22162:12637542,7127893 -g1,22162:13269834,7127893 -g1,22162:18328165,7127893 -g1,22162:19592748,7127893 -g1,22162:20225040,7127893 -h1,22162:21805769,7127893:0,0,0 -k1,22162:32583029,7127893:10777260 -g1,22162:32583029,7127893 -) -(1,22163:6630773,7794071:25952256,410518,107478 -h1,22163:6630773,7794071:0,0,0 -g1,22163:14850561,7794071 -g1,22163:16747435,7794071 -g1,22163:17379727,7794071 -h1,22163:20541184,7794071:0,0,0 -k1,22163:32583029,7794071:12041845 -g1,22163:32583029,7794071 -) -] -) -g1,22165:32583029,7901549 -g1,22165:6630773,7901549 -g1,22165:6630773,7901549 -g1,22165:32583029,7901549 -g1,22165:32583029,7901549 -) -h1,22165:6630773,8098157:0,0,0 -v1,22169:6630773,9776157:0,393216,0 -(1,22175:6630773,11325567:25952256,1942626,196608 -g1,22175:6630773,11325567 -g1,22175:6630773,11325567 -g1,22175:6434165,11325567 -(1,22175:6434165,11325567:0,1942626,196608 -r1,22199:32779637,11325567:26345472,2139234,196608 -k1,22175:6434165,11325567:-26345472 -) -(1,22175:6434165,11325567:26345472,1942626,196608 -[1,22175:6630773,11325567:25952256,1746018,0 -(1,22174:6630773,9983775:25952256,404226,6290 -(1,22170:6630773,9983775:0,0,0 -g1,22170:6630773,9983775 -g1,22170:6630773,9983775 -g1,22170:6303093,9983775 -(1,22170:6303093,9983775:0,0,0 -) -g1,22170:6630773,9983775 -) -h1,22174:7895356,9983775:0,0,0 -k1,22174:32583028,9983775:24687672 -g1,22174:32583028,9983775 -) -(1,22174:6630773,10649953:25952256,404226,6290 -h1,22174:6630773,10649953:0,0,0 -g1,22174:8527647,10649953 -h1,22174:10108375,10649953:0,0,0 -k1,22174:32583029,10649953:22474654 -g1,22174:32583029,10649953 -) -(1,22174:6630773,11316131:25952256,388497,9436 -h1,22174:6630773,11316131:0,0,0 -h1,22174:8527647,11316131:0,0,0 -k1,22174:32583029,11316131:24055382 -g1,22174:32583029,11316131 -) -] -) -g1,22175:32583029,11325567 -g1,22175:6630773,11325567 -g1,22175:6630773,11325567 -g1,22175:32583029,11325567 -g1,22175:32583029,11325567 -) -h1,22175:6630773,11522175:0,0,0 -(1,22179:6630773,14119346:25952256,555811,12975 -(1,22179:6630773,14119346:2899444,534184,12975 -g1,22179:6630773,14119346 -g1,22179:9530217,14119346 -) -k1,22179:32583029,14119346:20691878 -g1,22179:32583029,14119346 -) -(1,22185:6630773,15354050:25952256,513147,134348 -k1,22184:9352433,15354050:186727 -k1,22184:11562256,15354050:186727 -k1,22184:12280480,15354050:186727 -k1,22184:13789069,15354050:186728 -k1,22184:14635088,15354050:186727 -k1,22184:15840900,15354050:186727 -k1,22184:19235614,15354050:186727 -k1,22184:21146593,15354050:186727 -k1,22184:21803213,15354050:186727 -k1,22184:24281080,15354050:186728 -k1,22184:27493604,15354050:186727 -k1,22184:28964837,15354050:186727 -k1,22184:30626779,15354050:186727 -k1,22185:32583029,15354050:0 -) -(1,22185:6630773,16195538:25952256,513147,134348 -k1,22184:7861157,16195538:211299 -k1,22184:10338036,16195538:211299 -k1,22184:13309055,16195538:211298 -k1,22184:14711799,16195538:211299 -k1,22184:16207604,16195538:211299 -k1,22184:17410463,16195538:211299 -k1,22184:20478475,16195538:211298 -k1,22184:21341202,16195538:211299 -k1,22184:22300267,16195538:211299 -k1,22184:24355094,16195538:211299 -k1,22184:26452518,16195538:211298 -k1,22184:29426160,16195538:211299 -k1,22184:32583029,16195538:0 -) -(1,22185:6630773,17037026:25952256,513147,134348 -k1,22184:8247218,17037026:173998 -k1,22184:10165129,17037026:173998 -k1,22184:12272439,17037026:173998 -k1,22184:13097866,17037026:173999 -k1,22184:13860377,17037026:173998 -k1,22184:15231062,17037026:173998 -k1,22184:18430857,17037026:173998 -k1,22184:20172476,17037026:173998 -k1,22184:22926626,17037026:173998 -k1,22184:25123721,17037026:173999 -k1,22184:26402001,17037026:173998 -k1,22184:30023848,17037026:173998 -k1,22184:32583029,17037026:0 -) -(1,22185:6630773,17878514:25952256,513147,134348 -k1,22184:9082335,17878514:187293 -k1,22184:10778267,17878514:187293 -k1,22184:12674085,17878514:187294 -k1,22184:14052823,17878514:187293 -k1,22184:16086265,17878514:187293 -k1,22184:17740254,17878514:187293 -k1,22184:20249488,17878514:187293 -k1,22184:21252050,17878514:187294 -k1,22184:22816254,17878514:187293 -k1,22184:24436164,17878514:187293 -k1,22184:25038288,17878514:187281 -k1,22184:28251379,17878514:187294 -k1,22184:29253940,17878514:187293 -k1,22184:30654304,17878514:187293 -k1,22185:32583029,17878514:0 -) -(1,22185:6630773,18720002:25952256,513147,134348 -k1,22184:7957330,18720002:155429 -k1,22184:9355323,18720002:155430 -k1,22184:10529837,18720002:155429 -k1,22184:13903740,18720002:155430 -k1,22184:15681185,18720002:155429 -k1,22184:16584381,18720002:155430 -k1,22184:19500842,18720002:155429 -k1,22184:20342434,18720002:155430 -k1,22184:24074163,18720002:155429 -k1,22184:25426280,18720002:155430 -k1,22184:27604806,18720002:155430 -k1,22184:30786032,18720002:155429 -k1,22184:32583029,18720002:0 -) -(1,22185:6630773,19561490:25952256,513147,126483 -k1,22184:8495039,19561490:214069 -k1,22184:12004913,19561490:214068 -k1,22184:12878274,19561490:214069 -k1,22184:14111427,19561490:214068 -k1,22184:15551675,19561490:214069 -k1,22184:16748783,19561490:214068 -k1,22184:19316905,19561490:214069 -k1,22184:20147012,19561490:214069 -k1,22184:21962780,19561490:214068 -k1,22184:23874231,19561490:214069 -k1,22184:25468487,19561490:214068 -k1,22184:28383950,19561490:214069 -k1,22184:30483489,19561490:214068 -k1,22184:31229055,19561490:214069 -k1,22184:32583029,19561490:0 -) -(1,22185:6630773,20402978:25952256,513147,134348 -k1,22184:8991796,20402978:219962 -k1,22184:10283928,20402978:219963 -k1,22184:14389520,20402978:219962 -k1,22184:15989671,20402978:219963 -k1,22184:17410253,20402978:219962 -k1,22184:20951581,20402978:219963 -k1,22184:23958789,20402978:219962 -k1,22184:25283034,20402978:219963 -k1,22184:26250762,20402978:219962 -k1,22184:29951342,20402978:219963 -k1,22184:30932832,20402978:219962 -k1,22185:32583029,20402978:0 -) -(1,22185:6630773,21244466:25952256,513147,134348 -k1,22184:7881603,21244466:260581 -k1,22184:11544813,21244466:260581 -k1,22184:12996839,21244466:260581 -k1,22184:14460661,21244466:260581 -k1,22184:15252739,21244466:260581 -k1,22184:20068072,21244466:260581 -k1,22184:21276305,21244466:260582 -k1,22184:23698263,21244466:260581 -k1,22184:25243350,21244466:260581 -k1,22184:26840865,21244466:260581 -k1,22184:27849212,21244466:260581 -k1,22184:30258719,21244466:260581 -k1,22184:31170728,21244466:260581 -k1,22184:32583029,21244466:0 -) -(1,22185:6630773,22085954:25952256,513147,134348 -k1,22184:9619453,22085954:226337 -k1,22184:11159133,22085954:226338 -k1,22184:12001508,22085954:226337 -k1,22184:13246930,22085954:226337 -k1,22184:15633990,22085954:226338 -k1,22184:18464728,22085954:226337 -k1,22184:21900364,22085954:226338 -k1,22184:25365490,22085954:226337 -k1,22184:26123324,22085954:226337 -k1,22184:27634168,22085954:226338 -k1,22184:29557232,22085954:226337 -k1,22184:32583029,22085954:0 -) -(1,22185:6630773,22927442:25952256,513147,134348 -k1,22184:8269610,22927442:226536 -k1,22184:11470825,22927442:226536 -k1,22184:13893472,22927442:226536 -k1,22184:17325374,22927442:226536 -k1,22184:18238072,22927442:226536 -k1,22184:20175754,22927442:226537 -k1,22184:21085175,22927442:226536 -k1,22184:23067421,22927442:226536 -k1,22184:25708303,22927442:226536 -k1,22184:27202305,22927442:226536 -k1,22184:30142032,22927442:226536 -k1,22184:31027860,22927442:226536 -k1,22185:32583029,22927442:0 -) -(1,22185:6630773,23768930:25952256,513147,126483 -(1,22184:6630773,23768930:0,414482,115847 -r1,22199:9099310,23768930:2468537,530329,115847 -k1,22184:6630773,23768930:-2468537 -) -(1,22184:6630773,23768930:2468537,414482,115847 -k1,22184:6630773,23768930:3277 -h1,22184:9096033,23768930:0,411205,112570 -) -k1,22184:9536432,23768930:263452 -k1,22184:10697726,23768930:263451 -(1,22184:10697726,23768930:0,452978,115847 -r1,22199:12462839,23768930:1765113,568825,115847 -k1,22184:10697726,23768930:-1765113 -) -(1,22184:10697726,23768930:1765113,452978,115847 -k1,22184:10697726,23768930:3277 -h1,22184:12459562,23768930:0,411205,112570 -) -k1,22184:12726291,23768930:263452 -k1,22184:16015539,23768930:263451 -k1,22184:18660569,23768930:263452 -k1,22184:19540058,23768930:263451 -k1,22184:21826606,23768930:263452 -k1,22184:23565272,23768930:263451 -k1,22184:24599427,23768930:263452 -(1,22184:24599427,23768930:0,452978,115847 -r1,22199:26716252,23768930:2116825,568825,115847 -k1,22184:24599427,23768930:-2116825 -) -(1,22184:24599427,23768930:2116825,452978,115847 -k1,22184:24599427,23768930:3277 -h1,22184:26712975,23768930:0,411205,112570 -) -k1,22184:26979703,23768930:263451 -k1,22184:30697558,23768930:263452 -k1,22184:32583029,23768930:0 -) -(1,22185:6630773,24610418:25952256,513147,134348 -k1,22184:7927075,24610418:192020 -k1,22184:8866862,24610418:192021 -k1,22184:10572108,24610418:192020 -k1,22184:11415557,24610418:192021 -k1,22184:13848253,24610418:192020 -k1,22184:15059359,24610418:192021 -k1,22184:17516959,24610418:192020 -k1,22184:20468700,24610418:192020 -k1,22184:21320013,24610418:192021 -k1,22184:25157145,24610418:192020 -k1,22184:26119869,24610418:192021 -k1,22184:28802912,24610418:192020 -k1,22184:29977973,24610418:192021 -k1,22184:31563944,24610418:192020 -k1,22184:32583029,24610418:0 -) -(1,22185:6630773,25451906:25952256,505283,134348 -g1,22184:8483475,25451906 -g1,22184:10594389,25451906 -g1,22184:11445046,25451906 -g1,22184:15014792,25451906 -g1,22184:16233106,25451906 -g1,22184:18591091,25451906 -g1,22184:19403082,25451906 -g1,22184:20390709,25451906 -k1,22185:32583029,25451906:10835725 -g1,22185:32583029,25451906 -) -(1,22187:6630773,26293394:25952256,513147,134348 -h1,22186:6630773,26293394:983040,0,0 -k1,22186:10797401,26293394:220705 -k1,22186:11634144,26293394:220705 -k1,22186:13058090,26293394:220705 -k1,22186:15557482,26293394:220705 -k1,22186:16646539,26293394:220705 -k1,22186:19999865,26293394:220705 -k1,22186:21239656,26293394:220706 -k1,22186:22552846,26293394:220705 -k1,22186:23432843,26293394:220705 -k1,22186:25350275,26293394:220705 -k1,22186:28596777,26293394:220705 -k1,22186:29579010,26293394:220705 -k1,22186:32227169,26293394:220705 -k1,22186:32583029,26293394:0 -) -(1,22187:6630773,27134882:25952256,513147,134348 -k1,22186:7842404,27134882:228591 -k1,22186:9809011,27134882:228592 -k1,22186:10723764,27134882:228591 -k1,22186:11723058,27134882:228591 -k1,22186:15197648,27134882:228592 -k1,22186:16112401,27134882:228591 -k1,22186:16872490,27134882:228592 -k1,22186:18120166,27134882:228591 -k1,22186:19715838,27134882:228591 -k1,22186:21338381,27134882:228592 -k1,22186:21981786,27134882:228562 -k1,22186:24143689,27134882:228591 -k1,22186:27571748,27134882:228591 -k1,22186:29585541,27134882:228592 -k1,22186:31005577,27134882:228591 -k1,22186:32583029,27134882:0 -) -(1,22187:6630773,27976370:25952256,513147,134348 -k1,22186:7850507,27976370:236694 -k1,22186:11699545,27976370:236694 -k1,22186:12927799,27976370:236694 -k1,22186:14450309,27976370:236694 -k1,22186:17503085,27976370:236694 -k1,22186:18971857,27976370:236695 -k1,22186:21487238,27976370:236694 -h1,22186:22856285,27976370:0,0,0 -k1,22186:23092979,27976370:236694 -k1,22186:24139043,27976370:236694 -k1,22186:25873890,27976370:236694 -h1,22186:27069267,27976370:0,0,0 -k1,22186:27686725,27976370:236694 -k1,22186:32117068,27976370:236694 -k1,22186:32583029,27976370:0 -) -(1,22187:6630773,28817858:25952256,513147,134348 -k1,22186:7812809,28817858:162951 -k1,22186:8958799,28817858:162950 -k1,22186:10859765,28817858:162951 -k1,22186:12535942,28817858:162951 -k1,22186:13314930,28817858:162950 -k1,22186:13833741,28817858:162951 -k1,22186:14983663,28817858:162950 -k1,22186:19199360,28817858:162951 -k1,22186:20048473,28817858:162951 -k1,22186:23385987,28817858:162950 -k1,22186:23904798,28817858:162951 -k1,22186:27900950,28817858:162951 -k1,22186:29046940,28817858:162950 -k1,22186:31563944,28817858:162951 -k1,22186:32583029,28817858:0 -) -(1,22187:6630773,29659346:25952256,513147,126483 -g1,22186:7813042,29659346 -g1,22186:9144733,29659346 -g1,22186:10091728,29659346 -g1,22186:14953844,29659346 -g1,22186:15962443,29659346 -g1,22186:17180757,29659346 -k1,22187:32583029,29659346:14432995 -g1,22187:32583029,29659346 -) -v1,22189:6630773,31006745:0,393216,0 -(1,22190:6630773,39135069:25952256,8521540,0 -g1,22190:6630773,39135069 -g1,22190:6303093,39135069 -r1,22199:6401397,39135069:98304,8521540,0 -g1,22190:6600626,39135069 -g1,22190:6797234,39135069 -[1,22190:6797234,39135069:25785795,8521540,0 -(1,22190:6797234,31427329:25785795,813800,267386 -(1,22189:6797234,31427329:0,813800,267386 -r1,22199:8134168,31427329:1336934,1081186,267386 -k1,22189:6797234,31427329:-1336934 -) -(1,22189:6797234,31427329:1336934,813800,267386 -) -k1,22189:8349306,31427329:215138 -k1,22189:8676986,31427329:327680 -k1,22189:12012294,31427329:215139 -k1,22189:16132722,31427329:215138 -k1,22189:16999288,31427329:215138 -k1,22189:19147738,31427329:215138 -k1,22189:19777704,31427329:215123 -k1,22189:23018639,31427329:215138 -k1,22189:26323800,31427329:215138 -k1,22189:27154976,31427329:215138 -k1,22189:28389200,31427329:215139 -k1,22189:31358816,31427329:215138 -k1,22190:32583029,31427329:0 -) -(1,22190:6797234,32268817:25785795,513147,134348 -k1,22189:8244722,32268817:180022 -k1,22189:9899959,32268817:180022 -k1,22189:12148297,32268817:180022 -k1,22189:14664023,32268817:180023 -k1,22189:15605573,32268817:180022 -k1,22189:18726851,32268817:180022 -k1,22189:19925958,32268817:180022 -k1,22189:21178149,32268817:180022 -k1,22189:22752122,32268817:180022 -k1,22189:23702848,32268817:180023 -k1,22189:27636772,32268817:180022 -k1,22189:29059357,32268817:180022 -(1,22189:29059357,32268817:0,452978,115847 -r1,22199:32583029,32268817:3523672,568825,115847 -k1,22189:29059357,32268817:-3523672 -) -(1,22189:29059357,32268817:3523672,452978,115847 -k1,22189:29059357,32268817:3277 -h1,22189:32579752,32268817:0,411205,112570 -) -k1,22189:32583029,32268817:0 -) -(1,22190:6797234,33110305:25785795,513147,126483 -$1,22189:7365431,33110305 -k1,22189:7739959,33110305:374528 -(1,22189:7739959,33110305:0,452978,115847 -r1,22199:11263631,33110305:3523672,568825,115847 -k1,22189:7739959,33110305:-3523672 -) -(1,22189:7739959,33110305:3523672,452978,115847 -k1,22189:7739959,33110305:3277 -h1,22189:11260354,33110305:0,411205,112570 -) -k1,22189:11811830,33110305:374529 -k1,22189:13383045,33110305:374528 -k1,22189:16778783,33110305:374528 -k1,22189:19019777,33110305:374529 -k1,22189:20045733,33110305:374528 -k1,22189:21439346,33110305:374528 -k1,22189:23994258,33110305:374529 -k1,22189:25028078,33110305:374528 -k1,22189:26421691,33110305:374528 -k1,22189:28109561,33110305:374528 -k1,22189:30070061,33110305:374529 -k1,22189:31516758,33110305:374528 -k1,22189:32583029,33110305:0 -) -(1,22190:6797234,33951793:25785795,513147,126483 -k1,22189:8153532,33951793:337213 -k1,22189:10403740,33951793:337212 -k1,22189:12982940,33951793:337213 -k1,22189:14003037,33951793:337212 -k1,22189:15905905,33951793:337213 -k1,22189:16902409,33951793:337212 -k1,22189:18748261,33951793:337213 -k1,22189:21214082,33951793:337212 -k1,22189:25335999,33951793:337213 -k1,22189:26715234,33951793:337213 -k1,22189:29887533,33951793:337212 -k1,22190:32583029,33951793:0 -) -(1,22190:6797234,34793281:25785795,513147,134348 -(1,22189:6797234,34793281:0,452978,115847 -r1,22199:11024330,34793281:4227096,568825,115847 -k1,22189:6797234,34793281:-4227096 -) -(1,22189:6797234,34793281:4227096,452978,115847 -k1,22189:6797234,34793281:3277 -h1,22189:11021053,34793281:0,411205,112570 -) -k1,22189:11266153,34793281:241823 -k1,22189:12608980,34793281:241822 -k1,22189:13206663,34793281:241823 -k1,22189:15797296,34793281:241823 -k1,22189:18801461,34793281:241822 -k1,22189:21803005,34793281:241823 -k1,22189:23487275,34793281:241823 -(1,22189:23487275,34793281:0,452978,115847 -r1,22199:27714371,34793281:4227096,568825,115847 -k1,22189:23487275,34793281:-4227096 -) -(1,22189:23487275,34793281:4227096,452978,115847 -k1,22189:23487275,34793281:3277 -h1,22189:27711094,34793281:0,411205,112570 -) -k1,22189:28129863,34793281:241822 -k1,22189:31202841,34793281:241823 -k1,22189:32583029,34793281:0 -) -(1,22190:6797234,35634769:25785795,513147,126483 -k1,22189:8488063,35634769:224133 -k1,22189:10124497,35634769:224133 -k1,22189:12082713,35634769:224133 -k1,22189:15430292,35634769:224133 -k1,22189:16415953,35634769:224133 -k1,22189:18381378,35634769:224133 -k1,22189:20567003,35634769:224132 -k1,22189:22607794,35634769:224133 -k1,22189:25206952,35634769:224133 -k1,22189:26090377,35634769:224133 -k1,22189:27333595,35634769:224133 -k1,22189:29823308,35634769:224133 -k1,22189:32583029,35634769:0 -) -(1,22190:6797234,36476257:25785795,513147,126483 -k1,22189:7953180,36476257:164386 -k1,22189:9403382,36476257:164386 -k1,22189:12503781,36476257:164386 -k1,22189:13615818,36476257:164386 -k1,22189:16441621,36476257:164386 -k1,22189:18629103,36476257:164386 -k1,22189:21819287,36476257:164387 -k1,22189:22798941,36476257:164386 -k1,22189:24029598,36476257:164386 -k1,22189:26586703,36476257:164386 -k1,22189:29464280,36476257:164386 -k1,22189:30287958,36476257:164386 -k1,22190:32583029,36476257:0 -) -(1,22190:6797234,37317745:25785795,513147,134348 -k1,22189:7870996,37317745:181162 -k1,22189:10248268,37317745:181161 -k1,22189:11696896,37317745:181162 -k1,22189:14102349,37317745:181161 -k1,22189:14969673,37317745:181162 -k1,22189:15565659,37317745:181143 -k1,22189:18772618,37317745:181162 -k1,22189:19996458,37317745:181162 -k1,22189:20939147,37317745:181161 -k1,22189:23385889,37317745:181162 -k1,22189:24183088,37317745:181161 -k1,22189:27028289,37317745:181162 -k1,22189:29243032,37317745:181161 -k1,22189:30866641,37317745:181162 -k1,22189:32583029,37317745:0 -) -(1,22190:6797234,38159233:25785795,513147,115847 -k1,22189:8412329,38159233:254568 -k1,22189:10735214,38159233:254569 -k1,22189:11981342,38159233:254568 -k1,22189:13302181,38159233:254568 -k1,22189:14491293,38159233:254569 -k1,22189:15361899,38159233:254568 -k1,22189:16635552,38159233:254568 -k1,22189:19668848,38159233:254569 -(1,22189:19668848,38159233:0,452978,115847 -r1,22199:21785673,38159233:2116825,568825,115847 -k1,22189:19668848,38159233:-2116825 -) -(1,22189:19668848,38159233:2116825,452978,115847 -k1,22189:19668848,38159233:3277 -h1,22189:21782396,38159233:0,411205,112570 -) -k1,22189:22213911,38159233:254568 -k1,22189:24353950,38159233:254568 -k1,22189:27063498,38159233:254569 -k1,22189:28885687,38159233:254568 -(1,22189:28885687,38159233:0,459977,115847 -r1,22199:32409359,38159233:3523672,575824,115847 -k1,22189:28885687,38159233:-3523672 -) -(1,22189:28885687,38159233:3523672,459977,115847 -k1,22189:28885687,38159233:3277 -h1,22189:32406082,38159233:0,411205,112570 -) -k1,22189:32583029,38159233:0 -) -(1,22190:6797234,39000721:25785795,513147,134348 -g1,22189:8068632,39000721 -g1,22189:8799358,39000721 -g1,22189:10064858,39000721 -g1,22189:11715054,39000721 -g1,22189:15449950,39000721 -g1,22189:16881256,39000721 -g1,22189:19359172,39000721 -h1,22189:20901890,39000721:0,0,0 -g1,22189:21101119,39000721 -g1,22189:22109718,39000721 -g1,22189:23807100,39000721 -h1,22189:25002477,39000721:0,0,0 -k1,22190:32583029,39000721:7199788 -g1,22190:32583029,39000721 -) -] -g1,22190:32583029,39135069 -) -h1,22190:6630773,39135069:0,0,0 -v1,22193:6630773,40482468:0,393216,0 -(1,22194:6630773,44359370:25952256,4270118,0 -g1,22194:6630773,44359370 -g1,22194:6303093,44359370 -r1,22199:6401397,44359370:98304,4270118,0 -g1,22194:6600626,44359370 -g1,22194:6797234,44359370 -[1,22194:6797234,44359370:25785795,4270118,0 -(1,22194:6797234,40877571:25785795,788319,218313 -(1,22193:6797234,40877571:0,788319,218313 -r1,22199:7917113,40877571:1119879,1006632,218313 -k1,22193:6797234,40877571:-1119879 -) -(1,22193:6797234,40877571:1119879,788319,218313 -) -k1,22193:8212692,40877571:295579 -k1,22193:8540372,40877571:327680 -k1,22193:11370885,40877571:295580 -k1,22193:13689560,40877571:295579 -k1,22193:14516636,40877571:295579 -k1,22193:16698341,40877571:295579 -k1,22193:18845968,40877571:295580 -k1,22193:23447262,40877571:295579 -k1,22193:24934286,40877571:295579 -k1,22193:27925362,40877571:295580 -k1,22193:29614892,40877571:295579 -k1,22193:30929556,40877571:295579 -k1,22193:32583029,40877571:0 -) -(1,22194:6797234,41719059:25785795,513147,134348 -k1,22193:8815564,41719059:280315 -k1,22193:10663500,41719059:280315 -k1,22193:13706158,41719059:280315 -k1,22193:15871944,41719059:280315 -k1,22193:18816298,41719059:280315 -k1,22193:20088174,41719059:280316 -k1,22193:21434760,41719059:280315 -k1,22193:23166042,41719059:280315 -k1,22193:27155695,41719059:280315 -k1,22193:29054094,41719059:280315 -k1,22193:31635378,41719059:280315 -k1,22193:32583029,41719059:0 -) -(1,22194:6797234,42560547:25785795,513147,134348 -k1,22193:9996147,42560547:207194 -k1,22193:11770963,42560547:207195 -k1,22193:12997242,42560547:207194 -k1,22193:15958915,42560547:207195 -k1,22193:18402853,42560547:207194 -k1,22193:19269340,42560547:207195 -k1,22193:20495619,42560547:207194 -k1,22193:22284853,42560547:207195 -k1,22193:23301417,42560547:207194 -k1,22193:25533019,42560547:207195 -k1,22193:27336670,42560547:207194 -k1,22193:30073555,42560547:207195 -k1,22193:31299834,42560547:207194 -k1,22193:32583029,42560547:0 -) -(1,22194:6797234,43402035:25785795,513147,134348 -k1,22193:12010769,43402035:156777 -k1,22193:13524796,43402035:156776 -k1,22193:14333001,43402035:156777 -k1,22193:17581110,43402035:156776 -k1,22193:20293791,43402035:156777 -k1,22193:22644712,43402035:156776 -k1,22193:26280140,43402035:156777 -k1,22193:27064751,43402035:156776 -k1,22193:29887533,43402035:156777 -k1,22194:32583029,43402035:0 -) -(1,22194:6797234,44243523:25785795,505283,115847 -(1,22193:6797234,44243523:0,452978,115847 -r1,22199:11376042,44243523:4578808,568825,115847 -k1,22193:6797234,44243523:-4578808 -) -(1,22193:6797234,44243523:4578808,452978,115847 -k1,22193:6797234,44243523:3277 -h1,22193:11372765,44243523:0,411205,112570 -) -g1,22193:11575271,44243523 -g1,22193:12875505,44243523 -g1,22193:14584684,44243523 -g1,22193:17578368,44243523 -(1,22193:17578368,44243523:0,452978,115847 -r1,22199:22157176,44243523:4578808,568825,115847 -k1,22193:17578368,44243523:-4578808 -) -(1,22193:17578368,44243523:4578808,452978,115847 -k1,22193:17578368,44243523:3277 -h1,22193:22153899,44243523:0,411205,112570 -) -k1,22194:32583029,44243523:10252183 -g1,22194:32583029,44243523 -) -] -g1,22194:32583029,44359370 -) -h1,22194:6630773,44359370:0,0,0 -(1,22197:6630773,45706769:25952256,513147,126483 -h1,22196:6630773,45706769:983040,0,0 -k1,22196:8652980,45706769:221278 -k1,22196:9742609,45706769:221277 -k1,22196:11068169,45706769:221278 -k1,22196:12314429,45706769:221277 -k1,22196:13151745,45706769:221278 -k1,22196:14576263,45706769:221277 -k1,22196:16103674,45706769:221278 -k1,22196:19160039,45706769:221278 -k1,22196:21078043,45706769:221277 -k1,22196:24325118,45706769:221278 -k1,22196:25832211,45706769:221277 -k1,22196:28049716,45706769:221278 -k1,22196:28922421,45706769:221277 -k1,22196:30162784,45706769:221278 -k1,22196:32583029,45706769:0 -) -] -(1,22199:32583029,45706769:0,0,0 -g1,22199:32583029,45706769 -) -) -] -(1,22199:6630773,47279633:25952256,0,0 -h1,22199:6630773,47279633:25952256,0,0 -) -] -(1,22199:4262630,4025873:0,0,0 -[1,22199:-473656,4025873:0,0,0 -(1,22199:-473656,-710413:0,0,0 -(1,22199:-473656,-710413:0,0,0 -g1,22199:-473656,-710413 -) -g1,22199:-473656,-710413 -) -] -) -] -!26726 -}402 -Input:3616:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3617:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3618:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3619:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3620:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3621:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +k1,22410:3078556,49800853:-34777008 +) +] +g1,22410:6630773,4812305 +k1,22410:21078841,4812305:13252691 +g1,22410:22701512,4812305 +g1,22410:23350318,4812305 +g1,22410:24759997,4812305 +g1,22410:28372341,4812305 +g1,22410:30105768,4812305 +) +) +] +[1,22410:6630773,45706769:25952256,40108032,0 +(1,22410:6630773,45706769:25952256,40108032,0 +(1,22410:6630773,45706769:0,0,0 +g1,22410:6630773,45706769 +) +[1,22410:6630773,45706769:25952256,40108032,0 +(1,22370:6630773,6254097:25952256,513147,134348 +k1,22369:9030888,6254097:204004 +k1,22369:9886320,6254097:204004 +k1,22369:11109410,6254097:204005 +k1,22369:13733659,6254097:204004 +k1,22369:14620548,6254097:204004 +k1,22369:15180412,6254097:204004 +k1,22369:16541127,6254097:204005 +k1,22369:19574320,6254097:204004 +k1,22369:20935034,6254097:204004 +k1,22369:21821923,6254097:204004 +k1,22369:23676124,6254097:204004 +k1,22369:27185110,6254097:204005 +k1,22369:28075276,6254097:204004 +k1,22369:31821501,6254097:204004 +k1,22369:32583029,6254097:0 +) +(1,22370:6630773,7119177:25952256,513147,134348 +k1,22369:9264513,7119177:194490 +k1,22369:9814863,7119177:194490 +k1,22369:11970846,7119177:194490 +k1,22369:13546181,7119177:194491 +k1,22369:16778920,7119177:194490 +k1,22369:18077692,7119177:194490 +k1,22369:19019948,7119177:194490 +k1,22369:20148981,7119177:194490 +k1,22369:22901997,7119177:194490 +k1,22369:26377220,7119177:194491 +(1,22369:26377220,7119177:0,414482,115847 +r1,22410:27438909,7119177:1061689,530329,115847 +k1,22369:26377220,7119177:-1061689 +) +(1,22369:26377220,7119177:1061689,414482,115847 +k1,22369:26377220,7119177:3277 +h1,22369:27435632,7119177:0,411205,112570 +) +k1,22369:27807069,7119177:194490 +k1,22369:28629394,7119177:194490 +k1,22369:29921612,7119177:194490 +k1,22369:32583029,7119177:0 +) +(1,22370:6630773,7984257:25952256,505283,126483 +g1,22369:7698354,7984257 +g1,22369:8832126,7984257 +(1,22369:8832126,7984257:0,414482,115847 +r1,22410:9893815,7984257:1061689,530329,115847 +k1,22369:8832126,7984257:-1061689 +) +(1,22369:8832126,7984257:1061689,414482,115847 +k1,22369:8832126,7984257:3277 +h1,22369:9890538,7984257:0,411205,112570 +) +g1,22369:10093044,7984257 +g1,22369:10943701,7984257 +g1,22369:11498790,7984257 +g1,22369:12981214,7984257 +g1,22369:14348950,7984257 +g1,22369:17178139,7984257 +g1,22369:18063530,7984257 +g1,22369:19281844,7984257 +g1,22369:21616236,7984257 +g1,22369:24755410,7984257 +(1,22369:24755410,7984257:0,452978,115847 +r1,22410:26168811,7984257:1413401,568825,115847 +k1,22369:24755410,7984257:-1413401 +) +(1,22369:24755410,7984257:1413401,452978,115847 +k1,22369:24755410,7984257:3277 +h1,22369:26165534,7984257:0,411205,112570 +) +k1,22370:32583029,7984257:6033454 +g1,22370:32583029,7984257 +) +v1,22372:6630773,8669112:0,393216,0 +(1,22378:6630773,10379505:25952256,2103609,196608 +g1,22378:6630773,10379505 +g1,22378:6630773,10379505 +g1,22378:6434165,10379505 +(1,22378:6434165,10379505:0,2103609,196608 +r1,22410:32779637,10379505:26345472,2300217,196608 +k1,22378:6434165,10379505:-26345472 +) +(1,22378:6434165,10379505:26345472,2103609,196608 +[1,22378:6630773,10379505:25952256,1907001,0 +(1,22374:6630773,8896943:25952256,424439,106246 +(1,22373:6630773,8896943:0,0,0 +g1,22373:6630773,8896943 +g1,22373:6630773,8896943 +g1,22373:6303093,8896943 +(1,22373:6303093,8896943:0,0,0 +) +g1,22373:6630773,8896943 +) +g1,22374:9618358,8896943 +g1,22374:10614220,8896943 +g1,22374:13933760,8896943 +g1,22374:16257438,8896943 +g1,22374:18913070,8896943 +h1,22374:21900655,8896943:0,0,0 +k1,22374:32583029,8896943:10682374 +g1,22374:32583029,8896943 +) +(1,22375:6630773,9581798:25952256,431045,106246 +h1,22375:6630773,9581798:0,0,0 +g1,22375:11278128,9581798 +g1,22375:12937898,9581798 +g1,22375:13601806,9581798 +g1,22375:18913069,9581798 +g1,22375:20240885,9581798 +g1,22375:20904793,9581798 +h1,22375:22564563,9581798:0,0,0 +k1,22375:32583029,9581798:10018466 +g1,22375:32583029,9581798 +) +(1,22376:6630773,10266653:25952256,431045,112852 +h1,22376:6630773,10266653:0,0,0 +g1,22376:15261575,10266653 +g1,22376:17253299,10266653 +g1,22376:17917207,10266653 +h1,22376:21236746,10266653:0,0,0 +k1,22376:32583029,10266653:11346283 +g1,22376:32583029,10266653 +) +] +) +g1,22378:32583029,10379505 +g1,22378:6630773,10379505 +g1,22378:6630773,10379505 +g1,22378:32583029,10379505 +g1,22378:32583029,10379505 +) +h1,22378:6630773,10576113:0,0,0 +v1,22382:6630773,11260968:0,393216,0 +(1,22388:6630773,12868417:25952256,2000665,196608 +g1,22388:6630773,12868417 +g1,22388:6630773,12868417 +g1,22388:6434165,12868417 +(1,22388:6434165,12868417:0,2000665,196608 +r1,22410:32779637,12868417:26345472,2197273,196608 +k1,22388:6434165,12868417:-26345472 +) +(1,22388:6434165,12868417:26345472,2000665,196608 +[1,22388:6630773,12868417:25952256,1804057,0 +(1,22387:6630773,11488799:25952256,424439,6605 +(1,22383:6630773,11488799:0,0,0 +g1,22383:6630773,11488799 +g1,22383:6630773,11488799 +g1,22383:6303093,11488799 +(1,22383:6303093,11488799:0,0,0 +) +g1,22383:6630773,11488799 +) +h1,22387:7958589,11488799:0,0,0 +k1,22387:32583029,11488799:24624440 +g1,22387:32583029,11488799 +) +(1,22387:6630773,12173654:25952256,424439,6605 +h1,22387:6630773,12173654:0,0,0 +g1,22387:8622497,12173654 +h1,22387:10282267,12173654:0,0,0 +k1,22387:32583029,12173654:22300762 +g1,22387:32583029,12173654 +) +(1,22387:6630773,12858509:25952256,407923,9908 +h1,22387:6630773,12858509:0,0,0 +h1,22387:8622497,12858509:0,0,0 +k1,22387:32583029,12858509:23960532 +g1,22387:32583029,12858509 +) +] +) +g1,22388:32583029,12868417 +g1,22388:6630773,12868417 +g1,22388:6630773,12868417 +g1,22388:32583029,12868417 +g1,22388:32583029,12868417 +) +h1,22388:6630773,13065025:0,0,0 +(1,22392:6630773,15181843:25952256,555811,12975 +(1,22392:6630773,15181843:2899444,534184,12975 +g1,22392:6630773,15181843 +g1,22392:9530217,15181843 +) +k1,22392:32583029,15181843:20691878 +g1,22392:32583029,15181843 +) +(1,22398:6630773,16440139:25952256,513147,134348 +k1,22397:9352433,16440139:186727 +k1,22397:11562256,16440139:186727 +k1,22397:12280480,16440139:186727 +k1,22397:13789069,16440139:186728 +k1,22397:14635088,16440139:186727 +k1,22397:15840900,16440139:186727 +k1,22397:19235614,16440139:186727 +k1,22397:21146593,16440139:186727 +k1,22397:21803213,16440139:186727 +k1,22397:24281080,16440139:186728 +k1,22397:27493604,16440139:186727 +k1,22397:28964837,16440139:186727 +k1,22397:30626779,16440139:186727 +k1,22398:32583029,16440139:0 +) +(1,22398:6630773,17305219:25952256,513147,134348 +k1,22397:7861157,17305219:211299 +k1,22397:10338036,17305219:211299 +k1,22397:13309055,17305219:211298 +k1,22397:14711799,17305219:211299 +k1,22397:16207604,17305219:211299 +k1,22397:17410463,17305219:211299 +k1,22397:20478475,17305219:211298 +k1,22397:21341202,17305219:211299 +k1,22397:22300267,17305219:211299 +k1,22397:24355094,17305219:211299 +k1,22397:26452518,17305219:211298 +k1,22397:29426160,17305219:211299 +k1,22397:32583029,17305219:0 +) +(1,22398:6630773,18170299:25952256,513147,134348 +k1,22397:8247218,18170299:173998 +k1,22397:10165129,18170299:173998 +k1,22397:12272439,18170299:173998 +k1,22397:13097866,18170299:173999 +k1,22397:13860377,18170299:173998 +k1,22397:15231062,18170299:173998 +k1,22397:18430857,18170299:173998 +k1,22397:20172476,18170299:173998 +k1,22397:22926626,18170299:173998 +k1,22397:25123721,18170299:173999 +k1,22397:26402001,18170299:173998 +k1,22397:30023848,18170299:173998 +k1,22397:32583029,18170299:0 +) +(1,22398:6630773,19035379:25952256,513147,134348 +k1,22397:9082335,19035379:187293 +k1,22397:10778267,19035379:187293 +k1,22397:12674085,19035379:187294 +k1,22397:14052823,19035379:187293 +k1,22397:16086265,19035379:187293 +k1,22397:17740254,19035379:187293 +k1,22397:20249488,19035379:187293 +k1,22397:21252050,19035379:187294 +k1,22397:22816254,19035379:187293 +k1,22397:24436164,19035379:187293 +k1,22397:25038288,19035379:187281 +k1,22397:28251379,19035379:187294 +k1,22397:29253940,19035379:187293 +k1,22397:30654304,19035379:187293 +k1,22398:32583029,19035379:0 +) +(1,22398:6630773,19900459:25952256,513147,134348 +k1,22397:7957330,19900459:155429 +k1,22397:9355323,19900459:155430 +k1,22397:10529837,19900459:155429 +k1,22397:13903740,19900459:155430 +k1,22397:15681185,19900459:155429 +k1,22397:16584381,19900459:155430 +k1,22397:19500842,19900459:155429 +k1,22397:20342434,19900459:155430 +k1,22397:24074163,19900459:155429 +k1,22397:25426280,19900459:155430 +k1,22397:27604806,19900459:155430 +k1,22397:30786032,19900459:155429 +k1,22397:32583029,19900459:0 +) +(1,22398:6630773,20765539:25952256,513147,126483 +k1,22397:8495039,20765539:214069 +k1,22397:12004913,20765539:214068 +k1,22397:12878274,20765539:214069 +k1,22397:14111427,20765539:214068 +k1,22397:15551675,20765539:214069 +k1,22397:16748783,20765539:214068 +k1,22397:19316905,20765539:214069 +k1,22397:20147012,20765539:214069 +k1,22397:21962780,20765539:214068 +k1,22397:23874231,20765539:214069 +k1,22397:25468487,20765539:214068 +k1,22397:28383950,20765539:214069 +k1,22397:30483489,20765539:214068 +k1,22397:31229055,20765539:214069 +k1,22397:32583029,20765539:0 +) +(1,22398:6630773,21630619:25952256,513147,134348 +k1,22397:8991796,21630619:219962 +k1,22397:10283928,21630619:219963 +k1,22397:14389520,21630619:219962 +k1,22397:15989671,21630619:219963 +k1,22397:17410253,21630619:219962 +k1,22397:20951581,21630619:219963 +k1,22397:23958789,21630619:219962 +k1,22397:25283034,21630619:219963 +k1,22397:26250762,21630619:219962 +k1,22397:29951342,21630619:219963 +k1,22397:30932832,21630619:219962 +k1,22398:32583029,21630619:0 +) +(1,22398:6630773,22495699:25952256,513147,134348 +k1,22397:7881603,22495699:260581 +k1,22397:11544813,22495699:260581 +k1,22397:12996839,22495699:260581 +k1,22397:14460661,22495699:260581 +k1,22397:15252739,22495699:260581 +k1,22397:20068072,22495699:260581 +k1,22397:21276305,22495699:260582 +k1,22397:23698263,22495699:260581 +k1,22397:25243350,22495699:260581 +k1,22397:26840865,22495699:260581 +k1,22397:27849212,22495699:260581 +k1,22397:30258719,22495699:260581 +k1,22397:31170728,22495699:260581 +k1,22397:32583029,22495699:0 +) +(1,22398:6630773,23360779:25952256,513147,134348 +k1,22397:9619453,23360779:226337 +k1,22397:11159133,23360779:226338 +k1,22397:12001508,23360779:226337 +k1,22397:13246930,23360779:226337 +k1,22397:15633990,23360779:226338 +k1,22397:18464728,23360779:226337 +k1,22397:21900364,23360779:226338 +k1,22397:25365490,23360779:226337 +k1,22397:26123324,23360779:226337 +k1,22397:27634168,23360779:226338 +k1,22397:29557232,23360779:226337 +k1,22397:32583029,23360779:0 +) +(1,22398:6630773,24225859:25952256,513147,134348 +k1,22397:8269610,24225859:226536 +k1,22397:11470825,24225859:226536 +k1,22397:13893472,24225859:226536 +k1,22397:17325374,24225859:226536 +k1,22397:18238072,24225859:226536 +k1,22397:20175754,24225859:226537 +k1,22397:21085175,24225859:226536 +k1,22397:23067421,24225859:226536 +k1,22397:25708303,24225859:226536 +k1,22397:27202305,24225859:226536 +k1,22397:30142032,24225859:226536 +k1,22397:31027860,24225859:226536 +k1,22398:32583029,24225859:0 +) +(1,22398:6630773,25090939:25952256,513147,126483 +(1,22397:6630773,25090939:0,414482,115847 +r1,22410:9099310,25090939:2468537,530329,115847 +k1,22397:6630773,25090939:-2468537 +) +(1,22397:6630773,25090939:2468537,414482,115847 +k1,22397:6630773,25090939:3277 +h1,22397:9096033,25090939:0,411205,112570 +) +k1,22397:9536432,25090939:263452 +k1,22397:10697726,25090939:263451 +(1,22397:10697726,25090939:0,452978,115847 +r1,22410:12462839,25090939:1765113,568825,115847 +k1,22397:10697726,25090939:-1765113 +) +(1,22397:10697726,25090939:1765113,452978,115847 +k1,22397:10697726,25090939:3277 +h1,22397:12459562,25090939:0,411205,112570 +) +k1,22397:12726291,25090939:263452 +k1,22397:16015539,25090939:263451 +k1,22397:18660569,25090939:263452 +k1,22397:19540058,25090939:263451 +k1,22397:21826606,25090939:263452 +k1,22397:23565272,25090939:263451 +k1,22397:24599427,25090939:263452 +(1,22397:24599427,25090939:0,452978,115847 +r1,22410:26716252,25090939:2116825,568825,115847 +k1,22397:24599427,25090939:-2116825 +) +(1,22397:24599427,25090939:2116825,452978,115847 +k1,22397:24599427,25090939:3277 +h1,22397:26712975,25090939:0,411205,112570 +) +k1,22397:26979703,25090939:263451 +k1,22397:30697558,25090939:263452 +k1,22397:32583029,25090939:0 +) +(1,22398:6630773,25956019:25952256,513147,134348 +k1,22397:7927075,25956019:192020 +k1,22397:8866862,25956019:192021 +k1,22397:10572108,25956019:192020 +k1,22397:11415557,25956019:192021 +k1,22397:13848253,25956019:192020 +k1,22397:15059359,25956019:192021 +k1,22397:17516959,25956019:192020 +k1,22397:20468700,25956019:192020 +k1,22397:21320013,25956019:192021 +k1,22397:25157145,25956019:192020 +k1,22397:26119869,25956019:192021 +k1,22397:28802912,25956019:192020 +k1,22397:29977973,25956019:192021 +k1,22397:31563944,25956019:192020 +k1,22397:32583029,25956019:0 +) +(1,22398:6630773,26821099:25952256,505283,134348 +g1,22397:8483475,26821099 +g1,22397:10594389,26821099 +g1,22397:11445046,26821099 +g1,22397:15014792,26821099 +g1,22397:16233106,26821099 +g1,22397:18591091,26821099 +g1,22397:19403082,26821099 +g1,22397:20390709,26821099 +k1,22398:32583029,26821099:10835725 +g1,22398:32583029,26821099 +) +(1,22400:6630773,27686179:25952256,513147,134348 +h1,22399:6630773,27686179:983040,0,0 +k1,22399:10797401,27686179:220705 +k1,22399:11634144,27686179:220705 +k1,22399:13058090,27686179:220705 +k1,22399:15557482,27686179:220705 +k1,22399:16646539,27686179:220705 +k1,22399:19999865,27686179:220705 +k1,22399:21239656,27686179:220706 +k1,22399:22552846,27686179:220705 +k1,22399:23432843,27686179:220705 +k1,22399:25350275,27686179:220705 +k1,22399:28596777,27686179:220705 +k1,22399:29579010,27686179:220705 +k1,22399:32227169,27686179:220705 +k1,22399:32583029,27686179:0 +) +(1,22400:6630773,28551259:25952256,513147,134348 +k1,22399:7842404,28551259:228591 +k1,22399:9809011,28551259:228592 +k1,22399:10723764,28551259:228591 +k1,22399:11723058,28551259:228591 +k1,22399:15197648,28551259:228592 +k1,22399:16112401,28551259:228591 +k1,22399:16872490,28551259:228592 +k1,22399:18120166,28551259:228591 +k1,22399:19715838,28551259:228591 +k1,22399:21338381,28551259:228592 +k1,22399:21981786,28551259:228562 +k1,22399:24143689,28551259:228591 +k1,22399:27571748,28551259:228591 +k1,22399:29585541,28551259:228592 +k1,22399:31005577,28551259:228591 +k1,22399:32583029,28551259:0 +) +(1,22400:6630773,29416339:25952256,513147,134348 +k1,22399:7850507,29416339:236694 +k1,22399:11699545,29416339:236694 +k1,22399:12927799,29416339:236694 +k1,22399:14450309,29416339:236694 +k1,22399:17503085,29416339:236694 +k1,22399:18971857,29416339:236695 +k1,22399:21487238,29416339:236694 +h1,22399:22856285,29416339:0,0,0 +k1,22399:23092979,29416339:236694 +k1,22399:24139043,29416339:236694 +k1,22399:25873890,29416339:236694 +h1,22399:27069267,29416339:0,0,0 +k1,22399:27686725,29416339:236694 +k1,22399:32117068,29416339:236694 +k1,22399:32583029,29416339:0 +) +(1,22400:6630773,30281419:25952256,513147,134348 +k1,22399:7812809,30281419:162951 +k1,22399:8958799,30281419:162950 +k1,22399:10859765,30281419:162951 +k1,22399:12535942,30281419:162951 +k1,22399:13314930,30281419:162950 +k1,22399:13833741,30281419:162951 +k1,22399:14983663,30281419:162950 +k1,22399:19199360,30281419:162951 +k1,22399:20048473,30281419:162951 +k1,22399:23385987,30281419:162950 +k1,22399:23904798,30281419:162951 +k1,22399:27900950,30281419:162951 +k1,22399:29046940,30281419:162950 +k1,22399:31563944,30281419:162951 +k1,22399:32583029,30281419:0 +) +(1,22400:6630773,31146499:25952256,513147,126483 +g1,22399:7813042,31146499 +g1,22399:9144733,31146499 +g1,22399:10091728,31146499 +g1,22399:14953844,31146499 +g1,22399:15962443,31146499 +g1,22399:17180757,31146499 +k1,22400:32583029,31146499:14432995 +g1,22400:32583029,31146499 +) +v1,22402:6630773,32011579:0,393216,0 +(1,22403:6630773,40292824:25952256,8674461,0 +g1,22403:6630773,40292824 +g1,22403:6237557,40292824 +r1,22410:6368629,40292824:131072,8674461,0 +g1,22403:6567858,40292824 +g1,22403:6764466,40292824 +[1,22403:6764466,40292824:25818563,8674461,0 +(1,22403:6764466,32372756:25818563,754393,260573 +(1,22402:6764466,32372756:0,754393,260573 +r1,22410:8010564,32372756:1246098,1014966,260573 +k1,22402:6764466,32372756:-1246098 +) +(1,22402:6764466,32372756:1246098,754393,260573 +) +k1,22402:8236940,32372756:226376 +k1,22402:8564620,32372756:327680 +k1,22402:11911165,32372756:226376 +k1,22402:16042831,32372756:226376 +k1,22402:16920635,32372756:226376 +k1,22402:19080323,32372756:226376 +k1,22402:19721515,32372756:226349 +k1,22402:22973688,32372756:226376 +k1,22402:26290087,32372756:226376 +k1,22402:27132501,32372756:226376 +k1,22402:28377962,32372756:226376 +k1,22402:31358816,32372756:226376 +k1,22403:32583029,32372756:0 +) +(1,22403:6764466,33237836:25818563,513147,134348 +k1,22402:8214685,33237836:182753 +k1,22402:9872653,33237836:182753 +k1,22402:12123721,33237836:182752 +k1,22402:14642177,33237836:182753 +k1,22402:15586458,33237836:182753 +k1,22402:18710467,33237836:182753 +k1,22402:19912305,33237836:182753 +k1,22402:21167227,33237836:182753 +k1,22402:22743930,33237836:182752 +k1,22402:23697386,33237836:182753 +k1,22402:27634041,33237836:182753 +k1,22402:29059357,33237836:182753 +(1,22402:29059357,33237836:0,452978,115847 +r1,22410:32583029,33237836:3523672,568825,115847 +k1,22402:29059357,33237836:-3523672 +) +(1,22402:29059357,33237836:3523672,452978,115847 +k1,22402:29059357,33237836:3277 +h1,22402:32579752,33237836:0,411205,112570 +) +k1,22402:32583029,33237836:0 +) +(1,22403:6764466,34102916:25818563,513147,126483 +$1,22402:7332663,34102916 +k1,22402:7709712,34102916:377049 +(1,22402:7709712,34102916:0,452978,115847 +r1,22410:11233384,34102916:3523672,568825,115847 +k1,22402:7709712,34102916:-3523672 +) +(1,22402:7709712,34102916:3523672,452978,115847 +k1,22402:7709712,34102916:3277 +h1,22402:11230107,34102916:0,411205,112570 +) +k1,22402:11784103,34102916:377049 +k1,22402:13357839,34102916:377049 +k1,22402:16756098,34102916:377049 +k1,22402:18999612,34102916:377049 +k1,22402:20028089,34102916:377049 +k1,22402:21424223,34102916:377049 +k1,22402:23981654,34102916:377048 +k1,22402:25017995,34102916:377049 +k1,22402:26414129,34102916:377049 +k1,22402:28104520,34102916:377049 +k1,22402:30067540,34102916:377049 +k1,22402:31516758,34102916:377049 +k1,22402:32583029,34102916:0 +) +(1,22403:6764466,34967996:25818563,513147,126483 +k1,22402:8123742,34967996:340191 +k1,22402:10376930,34967996:340192 +k1,22402:12959108,34967996:340191 +k1,22402:13982185,34967996:340192 +k1,22402:15888031,34967996:340191 +k1,22402:16887515,34967996:340192 +k1,22402:18736345,34967996:340191 +k1,22402:21205146,34967996:340192 +k1,22402:25330041,34967996:340191 +k1,22402:26712255,34967996:340192 +k1,22402:29887533,34967996:340191 +k1,22403:32583029,34967996:0 +) +(1,22403:6764466,35833076:25818563,513147,134348 +(1,22402:6764466,35833076:0,452978,115847 +r1,22410:10991562,35833076:4227096,568825,115847 +k1,22402:6764466,35833076:-4227096 +) +(1,22402:6764466,35833076:4227096,452978,115847 +k1,22402:6764466,35833076:3277 +h1,22402:10988285,35833076:0,411205,112570 +) +k1,22402:11237026,35833076:245464 +k1,22402:12583494,35833076:245463 +k1,22402:13184818,35833076:245464 +k1,22402:15779091,35833076:245463 +k1,22402:18786898,35833076:245464 +k1,22402:21792082,35833076:245463 +k1,22402:23479993,35833076:245464 +(1,22402:23479993,35833076:0,452978,115847 +r1,22410:27707089,35833076:4227096,568825,115847 +k1,22402:23479993,35833076:-4227096 +) +(1,22402:23479993,35833076:4227096,452978,115847 +k1,22402:23479993,35833076:3277 +h1,22402:27703812,35833076:0,411205,112570 +) +k1,22402:28126222,35833076:245463 +k1,22402:31202841,35833076:245464 +k1,22402:32583029,35833076:0 +) +(1,22403:6764466,36698156:25818563,513147,126483 +k1,22402:8458026,36698156:226864 +k1,22402:10097190,36698156:226863 +k1,22402:12058137,36698156:226864 +k1,22402:15408446,36698156:226863 +k1,22402:16396838,36698156:226864 +k1,22402:18364994,36698156:226864 +k1,22402:20553350,36698156:226863 +k1,22402:22596872,36698156:226864 +k1,22402:25198760,36698156:226863 +k1,22402:26084916,36698156:226864 +k1,22402:27330864,36698156:226863 +k1,22402:29823308,36698156:226864 +k1,22402:32583029,36698156:0 +) +(1,22403:6764466,37563236:25818563,513147,126483 +k1,22402:7923143,37563236:167117 +k1,22402:9376075,37563236:167116 +k1,22402:12479205,37563236:167117 +k1,22402:13593973,37563236:167117 +k1,22402:16422507,37563236:167117 +k1,22402:18612719,37563236:167116 +k1,22402:21805633,37563236:167117 +k1,22402:22788018,37563236:167117 +k1,22402:24021406,37563236:167117 +k1,22402:26581241,37563236:167116 +k1,22402:29461549,37563236:167117 +k1,22402:30287958,37563236:167117 +k1,22403:32583029,37563236:0 +) +(1,22403:6764466,38428316:25818563,513147,134348 +k1,22402:7840568,38428316:183502 +k1,22402:10220181,38428316:183502 +k1,22402:11671149,38428316:183502 +k1,22402:14078943,38428316:183502 +k1,22402:14948607,38428316:183502 +k1,22402:15546936,38428316:183486 +k1,22402:18756235,38428316:183502 +k1,22402:19982415,38428316:183502 +k1,22402:20927445,38428316:183502 +k1,22402:23376527,38428316:183502 +k1,22402:24176067,38428316:183502 +k1,22402:27023608,38428316:183502 +k1,22402:29240692,38428316:183502 +k1,22402:30866641,38428316:183502 +k1,22402:32583029,38428316:0 +) +(1,22403:6764466,39293396:25818563,513147,115847 +k1,22402:8382292,39293396:257299 +k1,22402:10707907,39293396:257299 +k1,22402:11956766,39293396:257299 +k1,22402:13280336,39293396:257299 +k1,22402:14472178,39293396:257299 +k1,22402:15345515,39293396:257299 +k1,22402:16621899,39293396:257299 +k1,22402:19657925,39293396:257299 +(1,22402:19657925,39293396:0,452978,115847 +r1,22410:21774750,39293396:2116825,568825,115847 +k1,22402:19657925,39293396:-2116825 +) +(1,22402:19657925,39293396:2116825,452978,115847 +k1,22402:19657925,39293396:3277 +h1,22402:21771473,39293396:0,411205,112570 +) +k1,22402:22205719,39293396:257299 +k1,22402:24348489,39293396:257299 +k1,22402:27060767,39293396:257299 +k1,22402:28885687,39293396:257299 +(1,22402:28885687,39293396:0,459977,115847 +r1,22410:32409359,39293396:3523672,575824,115847 +k1,22402:28885687,39293396:-3523672 +) +(1,22402:28885687,39293396:3523672,459977,115847 +k1,22402:28885687,39293396:3277 +h1,22402:32406082,39293396:0,411205,112570 +) +k1,22402:32583029,39293396:0 +) +(1,22403:6764466,40158476:25818563,513147,134348 +g1,22402:8035864,40158476 +g1,22402:8766590,40158476 +g1,22402:10032090,40158476 +g1,22402:11682286,40158476 +g1,22402:15417182,40158476 +g1,22402:16848488,40158476 +g1,22402:19326404,40158476 +h1,22402:20869122,40158476:0,0,0 +g1,22402:21068351,40158476 +g1,22402:22076950,40158476 +g1,22402:23774332,40158476 +h1,22402:24969709,40158476:0,0,0 +k1,22403:32583029,40158476:7232556 +g1,22403:32583029,40158476 +) +] +g1,22403:32583029,40292824 +) +h1,22403:6630773,40292824:0,0,0 +v1,22406:6630773,41157904:0,393216,0 +(1,22407:6630773,45148613:25952256,4383925,0 +g1,22407:6630773,45148613 +g1,22407:6237557,45148613 +r1,22410:6368629,45148613:131072,4383925,0 +g1,22407:6567858,45148613 +g1,22407:6764466,45148613 +[1,22407:6764466,45148613:25818563,4383925,0 +(1,22407:6764466,41572446:25818563,807758,219026 +(1,22406:6764466,41572446:0,807758,219026 +r1,22410:7908217,41572446:1143751,1026784,219026 +k1,22406:6764466,41572446:-1143751 +) +(1,22406:6764466,41572446:1143751,807758,219026 +) +k1,22406:8204605,41572446:296388 +k1,22406:8532285,41572446:327680 +k1,22406:11363606,41572446:296388 +k1,22406:13683090,41572446:296388 +k1,22406:14510975,41572446:296388 +k1,22406:16693489,41572446:296388 +k1,22406:18841924,41572446:296388 +k1,22406:23444027,41572446:296388 +k1,22406:24931860,41572446:296388 +k1,22406:27923744,41572446:296388 +k1,22406:29614083,41572446:296388 +k1,22406:30929556,41572446:296388 +k1,22406:32583029,41572446:0 +) +(1,22407:6764466,42437526:25818563,513147,134348 +k1,22406:8785775,42437526:283294 +k1,22406:10636690,42437526:283294 +k1,22406:13682327,42437526:283294 +k1,22406:15851092,42437526:283294 +k1,22406:18798425,42437526:283294 +k1,22406:20073279,42437526:283294 +k1,22406:21422844,42437526:283294 +k1,22406:23157105,42437526:283294 +k1,22406:27149737,42437526:283294 +k1,22406:29051115,42437526:283294 +k1,22406:31635378,42437526:283294 +k1,22406:32583029,42437526:0 +) +(1,22407:6764466,43302606:25818563,513147,134348 +k1,22406:9965900,43302606:209715 +k1,22406:11743236,43302606:209715 +k1,22406:12972036,43302606:209715 +k1,22406:15936229,43302606:209715 +k1,22406:18382688,43302606:209715 +k1,22406:19251695,43302606:209715 +k1,22406:20480496,43302606:209716 +k1,22406:22272250,43302606:209715 +k1,22406:23291335,43302606:209715 +k1,22406:25525457,43302606:209715 +k1,22406:27331629,43302606:209715 +k1,22406:30071034,43302606:209715 +k1,22406:31299834,43302606:209715 +k1,22406:32583029,43302606:0 +) +(1,22407:6764466,44167686:25818563,513147,134348 +k1,22406:11981641,44167686:160417 +k1,22406:13499310,44167686:160418 +k1,22406:14311155,44167686:160417 +k1,22406:17562906,44167686:160418 +k1,22406:20279227,44167686:160417 +k1,22406:22633790,44167686:160418 +k1,22406:26272858,44167686:160417 +k1,22406:27061111,44167686:160418 +k1,22406:29887533,44167686:160417 +k1,22407:32583029,44167686:0 +) +(1,22407:6764466,45032766:25818563,505283,115847 +(1,22406:6764466,45032766:0,452978,115847 +r1,22410:11343274,45032766:4578808,568825,115847 +k1,22406:6764466,45032766:-4578808 +) +(1,22406:6764466,45032766:4578808,452978,115847 +k1,22406:6764466,45032766:3277 +h1,22406:11339997,45032766:0,411205,112570 +) +g1,22406:11542503,45032766 +g1,22406:12842737,45032766 +g1,22406:14551916,45032766 +g1,22406:17545600,45032766 +(1,22406:17545600,45032766:0,452978,115847 +r1,22410:22124408,45032766:4578808,568825,115847 +k1,22406:17545600,45032766:-4578808 +) +(1,22406:17545600,45032766:4578808,452978,115847 +k1,22406:17545600,45032766:3277 +h1,22406:22121131,45032766:0,411205,112570 +) +k1,22407:32583029,45032766:10284951 +g1,22407:32583029,45032766 +) +] +g1,22407:32583029,45148613 +) +h1,22407:6630773,45148613:0,0,0 +] +(1,22410:32583029,45706769:0,0,0 +g1,22410:32583029,45706769 +) +) +] +(1,22410:6630773,47279633:25952256,0,0 +h1,22410:6630773,47279633:25952256,0,0 +) +] +(1,22410:4262630,4025873:0,0,0 +[1,22410:-473656,4025873:0,0,0 +(1,22410:-473656,-710413:0,0,0 +(1,22410:-473656,-710413:0,0,0 +g1,22410:-473656,-710413 +) +g1,22410:-473656,-710413 +) +] +) +] +!28432 +}385 +Input:3657:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3658:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3659:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3660:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3661:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3662:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !576 -{403 -[1,22250:4262630,47279633:28320399,43253760,0 -(1,22250:4262630,4025873:0,0,0 -[1,22250:-473656,4025873:0,0,0 -(1,22250:-473656,-710413:0,0,0 -(1,22250:-473656,-644877:0,0,0 -k1,22250:-473656,-644877:-65536 +{386 +[1,22463:4262630,47279633:28320399,43253760,0 +(1,22463:4262630,4025873:0,0,0 +[1,22463:-473656,4025873:0,0,0 +(1,22463:-473656,-710413:0,0,0 +(1,22463:-473656,-644877:0,0,0 +k1,22463:-473656,-644877:-65536 ) -(1,22250:-473656,4736287:0,0,0 -k1,22250:-473656,4736287:5209943 +(1,22463:-473656,4736287:0,0,0 +k1,22463:-473656,4736287:5209943 ) -g1,22250:-473656,-710413 +g1,22463:-473656,-710413 ) ] ) -[1,22250:6630773,47279633:25952256,43253760,0 -[1,22250:6630773,4812305:25952256,786432,0 -(1,22250:6630773,4812305:25952256,505283,134348 -(1,22250:6630773,4812305:25952256,505283,134348 -g1,22250:3078558,4812305 -[1,22250:3078558,4812305:0,0,0 -(1,22250:3078558,2439708:0,1703936,0 -k1,22250:1358238,2439708:-1720320 -(1,21457:1358238,2439708:1720320,1703936,0 -(1,21457:1358238,2439708:1179648,16384,0 -r1,22250:2537886,2439708:1179648,16384,0 +[1,22463:6630773,47279633:25952256,43253760,0 +[1,22463:6630773,4812305:25952256,786432,0 +(1,22463:6630773,4812305:25952256,513147,126483 +(1,22463:6630773,4812305:25952256,513147,126483 +g1,22463:3078558,4812305 +[1,22463:3078558,4812305:0,0,0 +(1,22463:3078558,2439708:0,1703936,0 +k1,22463:1358238,2439708:-1720320 +(1,21670:1358238,2439708:1720320,1703936,0 +(1,21670:1358238,2439708:1179648,16384,0 +r1,22463:2537886,2439708:1179648,16384,0 ) -g1,21457:3062174,2439708 -(1,21457:3062174,2439708:16384,1703936,0 -[1,21457:3062174,2439708:25952256,1703936,0 -(1,21457:3062174,1915420:25952256,1179648,0 -(1,21457:3062174,1915420:16384,1179648,0 -r1,22250:3078558,1915420:16384,1179648,0 +g1,21670:3062174,2439708 +(1,21670:3062174,2439708:16384,1703936,0 +[1,21670:3062174,2439708:25952256,1703936,0 +(1,21670:3062174,1915420:25952256,1179648,0 +(1,21670:3062174,1915420:16384,1179648,0 +r1,22463:3078558,1915420:16384,1179648,0 ) -k1,21457:29014430,1915420:25935872 -g1,21457:29014430,1915420 +k1,21670:29014430,1915420:25935872 +g1,21670:29014430,1915420 ) ] ) ) ) ] -[1,22250:3078558,4812305:0,0,0 -(1,22250:3078558,2439708:0,1703936,0 -g1,22250:29030814,2439708 -g1,22250:36135244,2439708 -(1,21457:36135244,2439708:1720320,1703936,0 -(1,21457:36135244,2439708:16384,1703936,0 -[1,21457:36135244,2439708:25952256,1703936,0 -(1,21457:36135244,1915420:25952256,1179648,0 -(1,21457:36135244,1915420:16384,1179648,0 -r1,22250:36151628,1915420:16384,1179648,0 +[1,22463:3078558,4812305:0,0,0 +(1,22463:3078558,2439708:0,1703936,0 +g1,22463:29030814,2439708 +g1,22463:36135244,2439708 +(1,21670:36135244,2439708:1720320,1703936,0 +(1,21670:36135244,2439708:16384,1703936,0 +[1,21670:36135244,2439708:25952256,1703936,0 +(1,21670:36135244,1915420:25952256,1179648,0 +(1,21670:36135244,1915420:16384,1179648,0 +r1,22463:36151628,1915420:16384,1179648,0 ) -k1,21457:62087500,1915420:25935872 -g1,21457:62087500,1915420 +k1,21670:62087500,1915420:25935872 +g1,21670:62087500,1915420 ) ] ) -g1,21457:36675916,2439708 -(1,21457:36675916,2439708:1179648,16384,0 -r1,22250:37855564,2439708:1179648,16384,0 -) +g1,21670:36675916,2439708 +(1,21670:36675916,2439708:1179648,16384,0 +r1,22463:37855564,2439708:1179648,16384,0 ) -k1,22250:3078556,2439708:-34777008 ) -] -[1,22250:3078558,4812305:0,0,0 -(1,22250:3078558,49800853:0,16384,2228224 -k1,22250:1358238,49800853:-1720320 -(1,21457:1358238,49800853:1720320,16384,2228224 -(1,21457:1358238,49800853:1179648,16384,0 -r1,22250:2537886,49800853:1179648,16384,0 -) -g1,21457:3062174,49800853 -(1,21457:3062174,52029077:16384,1703936,0 -[1,21457:3062174,52029077:25952256,1703936,0 -(1,21457:3062174,51504789:25952256,1179648,0 -(1,21457:3062174,51504789:16384,1179648,0 -r1,22250:3078558,51504789:16384,1179648,0 -) -k1,21457:29014430,51504789:25935872 -g1,21457:29014430,51504789 +k1,22463:3078556,2439708:-34777008 ) ] +[1,22463:3078558,4812305:0,0,0 +(1,22463:3078558,49800853:0,16384,2228224 +k1,22463:1358238,49800853:-1720320 +(1,21670:1358238,49800853:1720320,16384,2228224 +(1,21670:1358238,49800853:1179648,16384,0 +r1,22463:2537886,49800853:1179648,16384,0 ) +g1,21670:3062174,49800853 +(1,21670:3062174,52029077:16384,1703936,0 +[1,21670:3062174,52029077:25952256,1703936,0 +(1,21670:3062174,51504789:25952256,1179648,0 +(1,21670:3062174,51504789:16384,1179648,0 +r1,22463:3078558,51504789:16384,1179648,0 ) +k1,21670:29014430,51504789:25935872 +g1,21670:29014430,51504789 +) +] +) +) +) +] +[1,22463:3078558,4812305:0,0,0 +(1,22463:3078558,49800853:0,16384,2228224 +g1,22463:29030814,49800853 +g1,22463:36135244,49800853 +(1,21670:36135244,49800853:1720320,16384,2228224 +(1,21670:36135244,52029077:16384,1703936,0 +[1,21670:36135244,52029077:25952256,1703936,0 +(1,21670:36135244,51504789:25952256,1179648,0 +(1,21670:36135244,51504789:16384,1179648,0 +r1,22463:36151628,51504789:16384,1179648,0 +) +k1,21670:62087500,51504789:25935872 +g1,21670:62087500,51504789 +) +] +) +g1,21670:36675916,49800853 +(1,21670:36675916,49800853:1179648,16384,0 +r1,22463:37855564,49800853:1179648,16384,0 +) +) +k1,22463:3078556,49800853:-34777008 +) +] +g1,22463:6630773,4812305 +g1,22463:6630773,4812305 +g1,22463:9744388,4812305 +g1,22463:11175694,4812305 +k1,22463:31387652,4812305:20211958 +) +) +] +[1,22463:6630773,45706769:25952256,40108032,0 +(1,22463:6630773,45706769:25952256,40108032,0 +(1,22463:6630773,45706769:0,0,0 +g1,22463:6630773,45706769 +) +[1,22463:6630773,45706769:25952256,40108032,0 +(1,22410:6630773,6254097:25952256,513147,126483 +h1,22409:6630773,6254097:983040,0,0 +k1,22409:8652980,6254097:221278 +k1,22409:9742609,6254097:221277 +k1,22409:11068169,6254097:221278 +k1,22409:12314429,6254097:221277 +k1,22409:13151745,6254097:221278 +k1,22409:14576263,6254097:221277 +k1,22409:16103674,6254097:221278 +k1,22409:19160039,6254097:221278 +k1,22409:21078043,6254097:221277 +k1,22409:24325118,6254097:221278 +k1,22409:25832211,6254097:221277 +k1,22409:28049716,6254097:221278 +k1,22409:28922421,6254097:221277 +k1,22409:30162784,6254097:221278 +k1,22409:32583029,6254097:0 +) +(1,22410:6630773,7119177:25952256,513147,134348 +k1,22409:7805834,7119177:155976 +k1,22409:12312744,7119177:155975 +k1,22409:13128012,7119177:155976 +k1,22409:14303072,7119177:155975 +k1,22409:17345909,7119177:155976 +k1,22409:19387355,7119177:155975 +k1,22409:20074828,7119177:155976 +k1,22409:23440102,7119177:155976 +k1,22409:25294115,7119177:155975 +k1,22409:27146818,7119177:155976 +k1,22409:28294353,7119177:155975 +k1,22409:31015408,7119177:155976 +k1,22409:32583029,7119177:0 +) +(1,22410:6630773,7984257:25952256,513147,126483 +g1,22409:7849087,7984257 +g1,22409:9031356,7984257 +g1,22409:12153491,7984257 +g1,22409:13035605,7984257 +g1,22409:14701530,7984257 +g1,22409:16276360,7984257 +g1,22409:18043210,7984257 +g1,22409:19776637,7984257 +g1,22409:21382269,7984257 +g1,22409:22600583,7984257 +g1,22409:23871981,7984257 +g1,22409:24730502,7984257 +g1,22409:25948816,7984257 +k1,22410:32583029,7984257:5477503 +g1,22410:32583029,7984257 +) +v1,22412:6630773,8669112:0,393216,0 +(1,22425:6630773,19841642:25952256,11565746,196608 +g1,22425:6630773,19841642 +g1,22425:6630773,19841642 +g1,22425:6434165,19841642 +(1,22425:6434165,19841642:0,11565746,196608 +r1,22463:32779637,19841642:26345472,11762354,196608 +k1,22425:6434165,19841642:-26345472 +) +(1,22425:6434165,19841642:26345472,11565746,196608 +[1,22425:6630773,19841642:25952256,11369138,0 +(1,22414:6630773,8903549:25952256,431045,112852 +(1,22413:6630773,8903549:0,0,0 +g1,22413:6630773,8903549 +g1,22413:6630773,8903549 +g1,22413:6303093,8903549 +(1,22413:6303093,8903549:0,0,0 +) +g1,22413:6630773,8903549 +) +k1,22414:6630773,8903549:0 +g1,22414:11278128,8903549 +g1,22414:11942036,8903549 +k1,22414:11942036,8903549:0 +h1,22414:22232608,8903549:0,0,0 +k1,22414:32583029,8903549:10350421 +g1,22414:32583029,8903549 +) +(1,22418:6630773,10243764:25952256,424439,8257 +g1,22418:7626635,10243764 +g1,22418:9618359,10243764 +g1,22418:10282267,10243764 +g1,22418:13269852,10243764 +k1,22418:32583030,10243764:18981224 +g1,22418:32583030,10243764 +) +(1,22418:6630773,10928619:25952256,431045,106246 +k1,22418:7641597,10928619:346916 +k1,22418:8652422,10928619:346917 +k1,22418:10991062,10928619:346916 +k1,22418:15653379,10928619:346916 +k1,22418:32583029,10928619:0 +) +(1,22418:6630773,11613474:25952256,185520,0 +k1,22418:32583029,11613474:24292486 +g1,22418:32583029,11613474 +) +(1,22418:6630773,12298329:25952256,424439,86428 +g1,22418:7626635,12298329 +g1,22418:11278128,12298329 +k1,22418:32583030,12298329:20309040 +g1,22418:32583030,12298329 +) +(1,22418:6630773,12983184:25952256,424439,79822 +g1,22418:7626635,12983184 +g1,22418:8954451,12983184 +g1,22418:10614221,12983184 +k1,22418:32583029,12983184:20640992 +g1,22418:32583029,12983184 +) +(1,22418:6630773,13668039:25952256,424439,86428 +g1,22418:7626635,13668039 +g1,22418:8954451,13668039 +g1,22418:10614221,13668039 +g1,22418:12605945,13668039 +g1,22418:14597669,13668039 +k1,22418:32583029,13668039:16657544 +g1,22418:32583029,13668039 +) +(1,22418:6630773,14352894:25952256,398014,0 +k1,22418:32583029,14352894:25288348 +g1,22418:32583029,14352894 +) +(1,22418:6630773,15037749:25952256,431045,106246 +g1,22418:7626635,15037749 +g1,22418:8290543,15037749 +g1,22418:9618359,15037749 +g1,22418:12605944,15037749 +g1,22418:13601806,15037749 +g1,22418:16589391,15037749 +g1,22418:17917207,15037749 +g1,22418:19576977,15037749 +g1,22418:21900655,15037749 +g1,22418:26548010,15037749 +g1,22418:27875826,15037749 +g1,22418:29535596,15037749 +k1,22418:32583029,15037749:1387663 +g1,22418:32583029,15037749 +) +(1,22418:6630773,15722604:25952256,431045,106246 +k1,22418:7707843,15722604:413162 +k1,22418:8452959,15722604:413162 +k1,22418:11189800,15722604:413163 +k1,22418:12598824,15722604:413162 +k1,22418:15003710,15722604:413162 +k1,22418:17076642,15722604:413162 +k1,22418:18153713,15722604:413163 +k1,22418:19562737,15722604:413162 +k1,22418:24955208,15722604:413162 +k1,22418:25700324,15722604:413162 +k1,22418:28105211,15722604:413163 +k1,22418:29182281,15722604:413162 +k1,22418:31255213,15722604:413162 +k1,22418:32583029,15722604:0 +) +(1,22418:6630773,16407459:25952256,298373,112852 +k1,22418:32583028,16407459:23296624 +g1,22418:32583028,16407459 +) +(1,22424:6630773,17092314:25952256,424439,6605 +(1,22418:6630773,17092314:0,0,0 +g1,22418:6630773,17092314 +g1,22418:6630773,17092314 +g1,22418:6303093,17092314 +(1,22418:6303093,17092314:0,0,0 +) +g1,22418:6630773,17092314 +) +g1,22424:7626635,17092314 +g1,22424:8290543,17092314 +g1,22424:8954451,17092314 +g1,22424:11610083,17092314 +g1,22424:12273991,17092314 +g1,22424:12937899,17092314 +h1,22424:13269853,17092314:0,0,0 +k1,22424:32583029,17092314:19313176 +g1,22424:32583029,17092314 +) +(1,22424:6630773,17777169:25952256,424439,9908 +h1,22424:6630773,17777169:0,0,0 +g1,22424:7626635,17777169 +g1,22424:7958589,17777169 +g1,22424:8290543,17777169 +g1,22424:8622497,17777169 +g1,22424:10282267,17777169 +g1,22424:10614221,17777169 +g1,22424:12273991,17777169 +g1,22424:12605945,17777169 +g1,22424:14265715,17777169 +h1,22424:15593531,17777169:0,0,0 +k1,22424:32583029,17777169:16989498 +g1,22424:32583029,17777169 +) +(1,22424:6630773,18462024:25952256,424439,6605 +h1,22424:6630773,18462024:0,0,0 +g1,22424:7626635,18462024 +g1,22424:7958589,18462024 +g1,22424:8290543,18462024 +g1,22424:10282267,18462024 +g1,22424:12273991,18462024 +g1,22424:14265715,18462024 +k1,22424:14265715,18462024:0 +h1,22424:15925485,18462024:0,0,0 +k1,22424:32583029,18462024:16657544 +g1,22424:32583029,18462024 +) +(1,22424:6630773,19146879:25952256,407923,9908 +h1,22424:6630773,19146879:0,0,0 +g1,22424:7626635,19146879 +g1,22424:8290543,19146879 +g1,22424:8622497,19146879 +g1,22424:8954451,19146879 +g1,22424:9618359,19146879 +g1,22424:9950313,19146879 +g1,22424:10282267,19146879 +g1,22424:10614221,19146879 +g1,22424:12273991,19146879 +g1,22424:12605945,19146879 +g1,22424:12937899,19146879 +g1,22424:14265715,19146879 +h1,22424:15261577,19146879:0,0,0 +k1,22424:32583029,19146879:17321452 +g1,22424:32583029,19146879 +) +(1,22424:6630773,19831734:25952256,407923,9908 +h1,22424:6630773,19831734:0,0,0 +g1,22424:7626635,19831734 +g1,22424:8290543,19831734 +g1,22424:8622497,19831734 +g1,22424:10282267,19831734 +g1,22424:10614221,19831734 +g1,22424:12273991,19831734 +g1,22424:12605945,19831734 +g1,22424:12937899,19831734 +g1,22424:13269853,19831734 +g1,22424:14265715,19831734 +g1,22424:14929623,19831734 +h1,22424:15261577,19831734:0,0,0 +k1,22424:32583029,19831734:17321452 +g1,22424:32583029,19831734 +) +] +) +g1,22425:32583029,19841642 +g1,22425:6630773,19841642 +g1,22425:6630773,19841642 +g1,22425:32583029,19841642 +g1,22425:32583029,19841642 +) +h1,22425:6630773,20038250:0,0,0 +v1,22429:6630773,20723105:0,393216,0 +(1,22442:6630773,31895635:25952256,11565746,196608 +g1,22442:6630773,31895635 +g1,22442:6630773,31895635 +g1,22442:6434165,31895635 +(1,22442:6434165,31895635:0,11565746,196608 +r1,22463:32779637,31895635:26345472,11762354,196608 +k1,22442:6434165,31895635:-26345472 +) +(1,22442:6434165,31895635:26345472,11565746,196608 +[1,22442:6630773,31895635:25952256,11369138,0 +(1,22431:6630773,20957542:25952256,431045,112852 +(1,22430:6630773,20957542:0,0,0 +g1,22430:6630773,20957542 +g1,22430:6630773,20957542 +g1,22430:6303093,20957542 +(1,22430:6303093,20957542:0,0,0 +) +g1,22430:6630773,20957542 +) +k1,22431:6630773,20957542:0 +g1,22431:11278128,20957542 +g1,22431:11942036,20957542 +k1,22431:11942036,20957542:0 +h1,22431:23560423,20957542:0,0,0 +k1,22431:32583029,20957542:9022606 +g1,22431:32583029,20957542 +) +(1,22435:6630773,22297757:25952256,424439,8257 +g1,22435:7626635,22297757 +g1,22435:9618359,22297757 +g1,22435:10282267,22297757 +g1,22435:13269852,22297757 +k1,22435:32583030,22297757:18981224 +g1,22435:32583030,22297757 +) +(1,22435:6630773,22982612:25952256,431045,106246 +k1,22435:7641597,22982612:346916 +k1,22435:8652422,22982612:346917 +k1,22435:10991062,22982612:346916 +k1,22435:15653379,22982612:346916 +k1,22435:32583029,22982612:0 +) +(1,22435:6630773,23667467:25952256,185520,0 +k1,22435:32583029,23667467:24292486 +g1,22435:32583029,23667467 +) +(1,22435:6630773,24352322:25952256,424439,86428 +g1,22435:7626635,24352322 +g1,22435:11278128,24352322 +k1,22435:32583030,24352322:20309040 +g1,22435:32583030,24352322 +) +(1,22435:6630773,25037177:25952256,424439,79822 +g1,22435:7626635,25037177 +g1,22435:8954451,25037177 +g1,22435:10614221,25037177 +k1,22435:32583029,25037177:20640992 +g1,22435:32583029,25037177 +) +(1,22435:6630773,25722032:25952256,424439,86428 +g1,22435:7626635,25722032 +g1,22435:8954451,25722032 +g1,22435:10614221,25722032 +g1,22435:12605945,25722032 +g1,22435:14597669,25722032 +k1,22435:32583029,25722032:16657544 +g1,22435:32583029,25722032 +) +(1,22435:6630773,26406887:25952256,398014,0 +k1,22435:32583029,26406887:25288348 +g1,22435:32583029,26406887 +) +(1,22435:6630773,27091742:25952256,431045,106246 +g1,22435:7626635,27091742 +g1,22435:8290543,27091742 +g1,22435:9618359,27091742 +g1,22435:12605944,27091742 +g1,22435:13601806,27091742 +g1,22435:16589391,27091742 +g1,22435:17917207,27091742 +g1,22435:19576977,27091742 +g1,22435:21900655,27091742 +g1,22435:26548010,27091742 +g1,22435:27875826,27091742 +g1,22435:29535596,27091742 +k1,22435:32583029,27091742:1387663 +g1,22435:32583029,27091742 +) +(1,22435:6630773,27776597:25952256,431045,106246 +k1,22435:7707843,27776597:413162 +k1,22435:8452959,27776597:413162 +k1,22435:11189800,27776597:413163 +k1,22435:12598824,27776597:413162 +k1,22435:15003710,27776597:413162 +k1,22435:17076642,27776597:413162 +k1,22435:18153713,27776597:413163 +k1,22435:19562737,27776597:413162 +k1,22435:24955208,27776597:413162 +k1,22435:25700324,27776597:413162 +k1,22435:28105211,27776597:413163 +k1,22435:29182281,27776597:413162 +k1,22435:31255213,27776597:413162 +k1,22435:32583029,27776597:0 +) +(1,22435:6630773,28461452:25952256,298373,112852 +k1,22435:32583028,28461452:23296624 +g1,22435:32583028,28461452 +) +(1,22441:6630773,29146307:25952256,424439,6605 +(1,22435:6630773,29146307:0,0,0 +g1,22435:6630773,29146307 +g1,22435:6630773,29146307 +g1,22435:6303093,29146307 +(1,22435:6303093,29146307:0,0,0 +) +g1,22435:6630773,29146307 +) +g1,22441:7626635,29146307 +g1,22441:8290543,29146307 +g1,22441:8954451,29146307 +g1,22441:11610083,29146307 +g1,22441:12273991,29146307 +g1,22441:12937899,29146307 +h1,22441:13269853,29146307:0,0,0 +k1,22441:32583029,29146307:19313176 +g1,22441:32583029,29146307 +) +(1,22441:6630773,29831162:25952256,424439,9908 +h1,22441:6630773,29831162:0,0,0 +g1,22441:7626635,29831162 +g1,22441:7958589,29831162 +g1,22441:8290543,29831162 +g1,22441:8622497,29831162 +g1,22441:10282267,29831162 +g1,22441:10614221,29831162 +g1,22441:12273991,29831162 +g1,22441:12605945,29831162 +g1,22441:14265715,29831162 +h1,22441:15593531,29831162:0,0,0 +k1,22441:32583029,29831162:16989498 +g1,22441:32583029,29831162 +) +(1,22441:6630773,30516017:25952256,424439,6605 +h1,22441:6630773,30516017:0,0,0 +g1,22441:7626635,30516017 +g1,22441:7958589,30516017 +g1,22441:8290543,30516017 +g1,22441:10282267,30516017 +g1,22441:12273991,30516017 +g1,22441:14265715,30516017 +k1,22441:14265715,30516017:0 +h1,22441:15925485,30516017:0,0,0 +k1,22441:32583029,30516017:16657544 +g1,22441:32583029,30516017 +) +(1,22441:6630773,31200872:25952256,407923,9908 +h1,22441:6630773,31200872:0,0,0 +g1,22441:7626635,31200872 +g1,22441:8290543,31200872 +g1,22441:8622497,31200872 +g1,22441:8954451,31200872 +g1,22441:9618359,31200872 +g1,22441:9950313,31200872 +g1,22441:10282267,31200872 +g1,22441:10614221,31200872 +g1,22441:12273991,31200872 +g1,22441:12605945,31200872 +g1,22441:12937899,31200872 +g1,22441:14265715,31200872 +h1,22441:15261577,31200872:0,0,0 +k1,22441:32583029,31200872:17321452 +g1,22441:32583029,31200872 +) +(1,22441:6630773,31885727:25952256,407923,9908 +h1,22441:6630773,31885727:0,0,0 +g1,22441:7626635,31885727 +g1,22441:8290543,31885727 +g1,22441:8622497,31885727 +g1,22441:10282267,31885727 +g1,22441:10614221,31885727 +g1,22441:12273991,31885727 +g1,22441:12605945,31885727 +g1,22441:12937899,31885727 +g1,22441:13269853,31885727 +g1,22441:14265715,31885727 +g1,22441:14929623,31885727 +h1,22441:15261577,31885727:0,0,0 +k1,22441:32583029,31885727:17321452 +g1,22441:32583029,31885727 +) +] +) +g1,22442:32583029,31895635 +g1,22442:6630773,31895635 +g1,22442:6630773,31895635 +g1,22442:32583029,31895635 +g1,22442:32583029,31895635 +) +h1,22442:6630773,32092243:0,0,0 +(1,22446:6630773,32957323:25952256,513147,134348 +h1,22445:6630773,32957323:983040,0,0 +k1,22445:10382840,32957323:234094 +k1,22445:12640031,32957323:234095 +k1,22445:13405622,32957323:234094 +k1,22445:15525843,32957323:234095 +k1,22445:17611984,32957323:234094 +k1,22445:22151793,32957323:234094 +k1,22445:23577333,32957323:234095 +k1,22445:26573770,32957323:234094 +k1,22445:28693336,32957323:234095 +k1,22445:31591469,32957323:234094 +k1,22445:32583029,32957323:0 +) +(1,22446:6630773,33822403:25952256,513147,134348 +k1,22445:8044330,33822403:347286 +k1,22445:9842583,33822403:347286 +k1,22445:13725537,33822403:347287 +k1,22445:15466774,33822403:347286 +k1,22445:17265682,33822403:347286 +k1,22445:19488608,33822403:347286 +k1,22445:22364273,33822403:347286 +k1,22445:23370851,33822403:347286 +k1,22445:24737223,33822403:347287 +k1,22445:28555296,33822403:347286 +k1,22445:30636665,33822403:347286 +k1,22445:31599989,33822403:347286 +k1,22446:32583029,33822403:0 +) +(1,22446:6630773,34687483:25952256,505283,126483 +(1,22445:6630773,34687483:0,452978,122846 +r1,22463:14726699,34687483:8095926,575824,122846 +k1,22445:6630773,34687483:-8095926 +) +(1,22445:6630773,34687483:8095926,452978,122846 +k1,22445:6630773,34687483:3277 +h1,22445:14723422,34687483:0,411205,112570 +) +k1,22445:14980185,34687483:253486 +k1,22445:15849709,34687483:253486 +k1,22445:17122280,34687483:253486 +k1,22445:18739570,34687483:253486 +k1,22445:19861409,34687483:253487 +k1,22445:22413243,34687483:253486 +k1,22445:23318157,34687483:253486 +k1,22445:24664128,34687483:253486 +(1,22445:24664128,34687483:0,452978,115847 +r1,22463:29242936,34687483:4578808,568825,115847 +k1,22445:24664128,34687483:-4578808 +) +(1,22445:24664128,34687483:4578808,452978,115847 +k1,22445:24664128,34687483:3277 +h1,22445:29239659,34687483:0,411205,112570 +) +k1,22445:29670092,34687483:253486 +k1,22445:31809049,34687483:253486 +k1,22446:32583029,34687483:0 +) +(1,22446:6630773,35552563:25952256,513147,134348 +k1,22445:8784218,35552563:264697 +k1,22445:13390676,35552563:264698 +k1,22445:14314665,35552563:264697 +k1,22445:16487115,35552563:264697 +k1,22445:19520054,35552563:264698 +k1,22445:20436179,35552563:264697 +(1,22445:20436179,35552563:0,452978,115847 +r1,22463:24663275,35552563:4227096,568825,115847 +k1,22445:20436179,35552563:-4227096 +) +(1,22445:20436179,35552563:4227096,452978,115847 +k1,22445:20436179,35552563:3277 +h1,22445:24659998,35552563:0,411205,112570 +) +k1,22445:25101642,35552563:264697 +k1,22445:26747183,35552563:264697 +k1,22445:29707377,35552563:264698 +k1,22445:31073079,35552563:264697 +k1,22445:32583029,35552563:0 +) +(1,22446:6630773,36417643:25952256,513147,134348 +k1,22445:9571392,36417643:146164 +k1,22445:10403718,36417643:146164 +(1,22445:10403718,36417643:0,452978,115847 +r1,22463:14630814,36417643:4227096,568825,115847 +k1,22445:10403718,36417643:-4227096 +) +(1,22445:10403718,36417643:4227096,452978,115847 +k1,22445:10403718,36417643:3277 +h1,22445:14627537,36417643:0,411205,112570 +) +k1,22445:14776977,36417643:146163 +k1,22445:16114586,36417643:146164 +(1,22445:16114586,36417643:0,452978,115847 +r1,22463:20693394,36417643:4578808,568825,115847 +k1,22445:16114586,36417643:-4578808 +) +(1,22445:16114586,36417643:4578808,452978,115847 +k1,22445:16114586,36417643:3277 +h1,22445:20690117,36417643:0,411205,112570 +) +k1,22445:20839558,36417643:146164 +k1,22445:24698337,36417643:146164 +k1,22445:27779202,36417643:146163 +k1,22445:30310877,36417643:146164 +k1,22445:31116333,36417643:146164 +k1,22445:32583029,36417643:0 +) +(1,22446:6630773,37282723:25952256,513147,126483 +g1,22445:8143344,37282723 +g1,22445:9699824,37282723 +g1,22445:10365014,37282723 +g1,22445:11944431,37282723 +g1,22445:13135220,37282723 +g1,22445:14746750,37282723 +g1,22445:16339930,37282723 +(1,22445:16339930,37282723:0,452978,115847 +r1,22463:20567026,37282723:4227096,568825,115847 +k1,22445:16339930,37282723:-4227096 +) +(1,22445:16339930,37282723:4227096,452978,115847 +k1,22445:16339930,37282723:3277 +h1,22445:20563749,37282723:0,411205,112570 +) +k1,22446:32583029,37282723:11842333 +g1,22446:32583029,37282723 +) +v1,22448:6630773,37967578:0,393216,0 +(1,22463:6630773,45510161:25952256,7935799,196608 +g1,22463:6630773,45510161 +g1,22463:6630773,45510161 +g1,22463:6434165,45510161 +(1,22463:6434165,45510161:0,7935799,196608 +r1,22463:32779637,45510161:26345472,8132407,196608 +k1,22463:6434165,45510161:-26345472 +) +(1,22463:6434165,45510161:26345472,7935799,196608 +[1,22463:6630773,45510161:25952256,7739191,0 +(1,22450:6630773,38202015:25952256,431045,112852 +(1,22449:6630773,38202015:0,0,0 +g1,22449:6630773,38202015 +g1,22449:6630773,38202015 +g1,22449:6303093,38202015 +(1,22449:6303093,38202015:0,0,0 +) +g1,22449:6630773,38202015 +) +k1,22450:6630773,38202015:0 +g1,22450:11942036,38202015 +g1,22450:12605944,38202015 +k1,22450:12605944,38202015:0 +h1,22450:21900654,38202015:0,0,0 +k1,22450:32583029,38202015:10682375 +g1,22450:32583029,38202015 +) +(1,22455:6630773,39233614:25952256,398014,0 +k1,22454:32583029,39233614:25288348 +g1,22455:32583029,39233614 +) +(1,22455:6630773,39918469:25952256,431045,106246 +k1,22454:7641597,39918469:346916 +k1,22454:8652422,39918469:346917 +k1,22454:10991062,39918469:346916 +k1,22454:15653379,39918469:346916 +k1,22455:32583029,39918469:0 +) +(1,22455:6630773,40603324:25952256,185520,0 +k1,22454:32583029,40603324:24292486 +g1,22455:32583029,40603324 +) +(1,22455:6630773,41288179:25952256,424439,79822 +g1,22454:7626635,41288179 +k1,22454:32583029,41288179:23296624 +g1,22455:32583029,41288179 +) +(1,22455:6630773,41973034:25952256,424439,86428 +g1,22454:7626635,41973034 +g1,22454:7958589,41973034 +g1,22454:8290543,41973034 +g1,22454:9950313,41973034 +g1,22454:10614221,41973034 +k1,22454:32583030,41973034:17653408 +g1,22455:32583030,41973034 +) +(1,22455:6630773,42657889:25952256,424439,86428 +g1,22454:7626635,42657889 +g1,22454:7958589,42657889 +g1,22454:8290543,42657889 +g1,22454:9950313,42657889 +g1,22454:10614221,42657889 +k1,22454:32583030,42657889:17653408 +g1,22455:32583030,42657889 +) +(1,22455:6630773,43342744:25952256,424439,86428 +g1,22454:7626635,43342744 +g1,22454:7958589,43342744 +g1,22454:8290543,43342744 +g1,22454:9950313,43342744 +g1,22454:10614221,43342744 +k1,22454:32583030,43342744:17653408 +g1,22455:32583030,43342744 +) +(1,22455:6630773,44027599:25952256,424439,79822 +g1,22454:7626635,44027599 +g1,22454:7958589,44027599 +g1,22454:8290543,44027599 +g1,22454:9950313,44027599 +g1,22454:10614221,44027599 +k1,22454:32583030,44027599:16989500 +g1,22455:32583030,44027599 +) +(1,22455:6630773,44712454:25952256,424439,79822 +g1,22454:7626635,44712454 +k1,22455:32583029,44712454:24624440 +g1,22455:32583029,44712454 +) +(1,22456:6630773,45397309:25952256,431045,112852 +g1,22456:7626635,45397309 +g1,22456:10614220,45397309 +g1,22456:11278128,45397309 +g1,22456:13933760,45397309 +k1,22456:32583029,45397309:15993638 +g1,22456:32583029,45397309 +) +] +) +g1,22463:32583029,45510161 +g1,22463:6630773,45510161 +g1,22463:6630773,45510161 +g1,22463:32583029,45510161 +g1,22463:32583029,45510161 +) +] +(1,22463:32583029,45706769:0,0,0 +g1,22463:32583029,45706769 +) +) +] +(1,22463:6630773,47279633:25952256,0,0 +h1,22463:6630773,47279633:25952256,0,0 +) +] +(1,22463:4262630,4025873:0,0,0 +[1,22463:-473656,4025873:0,0,0 +(1,22463:-473656,-710413:0,0,0 +(1,22463:-473656,-710413:0,0,0 +g1,22463:-473656,-710413 +) +g1,22463:-473656,-710413 +) +] ) ] -[1,22250:3078558,4812305:0,0,0 -(1,22250:3078558,49800853:0,16384,2228224 -g1,22250:29030814,49800853 -g1,22250:36135244,49800853 -(1,21457:36135244,49800853:1720320,16384,2228224 -(1,21457:36135244,52029077:16384,1703936,0 -[1,21457:36135244,52029077:25952256,1703936,0 -(1,21457:36135244,51504789:25952256,1179648,0 -(1,21457:36135244,51504789:16384,1179648,0 -r1,22250:36151628,51504789:16384,1179648,0 -) -k1,21457:62087500,51504789:25935872 -g1,21457:62087500,51504789 -) -] -) -g1,21457:36675916,49800853 -(1,21457:36675916,49800853:1179648,16384,0 -r1,22250:37855564,49800853:1179648,16384,0 -) -) -k1,22250:3078556,49800853:-34777008 -) -] -g1,22250:6630773,4812305 -k1,22250:21078841,4812305:13252691 -g1,22250:22701512,4812305 -g1,22250:23350318,4812305 -g1,22250:24759997,4812305 -g1,22250:28372341,4812305 -g1,22250:30105768,4812305 -) -) -] -[1,22250:6630773,45706769:25952256,40108032,0 -(1,22250:6630773,45706769:25952256,40108032,0 -(1,22250:6630773,45706769:0,0,0 -g1,22250:6630773,45706769 -) -[1,22250:6630773,45706769:25952256,40108032,0 -(1,22197:6630773,6254097:25952256,513147,134348 -k1,22196:7805834,6254097:155976 -k1,22196:12312744,6254097:155975 -k1,22196:13128012,6254097:155976 -k1,22196:14303072,6254097:155975 -k1,22196:17345909,6254097:155976 -k1,22196:19387355,6254097:155975 -k1,22196:20074828,6254097:155976 -k1,22196:23440102,6254097:155976 -k1,22196:25294115,6254097:155975 -k1,22196:27146818,6254097:155976 -k1,22196:28294353,6254097:155975 -k1,22196:31015408,6254097:155976 -k1,22196:32583029,6254097:0 -) -(1,22197:6630773,7095585:25952256,513147,126483 -g1,22196:7849087,7095585 -g1,22196:9031356,7095585 -g1,22196:12153491,7095585 -g1,22196:13035605,7095585 -g1,22196:14701530,7095585 -g1,22196:16276360,7095585 -g1,22196:18043210,7095585 -g1,22196:19776637,7095585 -g1,22196:21382269,7095585 -g1,22196:22600583,7095585 -g1,22196:23871981,7095585 -g1,22196:24730502,7095585 -g1,22196:25948816,7095585 -k1,22197:32583029,7095585:5477503 -g1,22197:32583029,7095585 -) -v1,22199:6630773,8233131:0,393216,0 -(1,22212:6630773,17772151:25952256,9932236,196608 -g1,22212:6630773,17772151 -g1,22212:6630773,17772151 -g1,22212:6434165,17772151 -(1,22212:6434165,17772151:0,9932236,196608 -r1,22250:32779637,17772151:26345472,10128844,196608 -k1,22212:6434165,17772151:-26345472 -) -(1,22212:6434165,17772151:26345472,9932236,196608 -[1,22212:6630773,17772151:25952256,9735628,0 -(1,22201:6630773,8447041:25952256,410518,107478 -(1,22200:6630773,8447041:0,0,0 -g1,22200:6630773,8447041 -g1,22200:6630773,8447041 -g1,22200:6303093,8447041 -(1,22200:6303093,8447041:0,0,0 -) -g1,22200:6630773,8447041 -) -k1,22201:6630773,8447041:0 -g1,22201:11056813,8447041 -g1,22201:11689105,8447041 -k1,22201:11689105,8447041:0 -h1,22201:21489621,8447041:0,0,0 -k1,22201:32583029,8447041:11093408 -g1,22201:32583029,8447041 -) -(1,22205:6630773,9768579:25952256,404226,7863 -g1,22205:7579210,9768579 -g1,22205:9476084,9768579 -g1,22205:10108376,9768579 -g1,22205:12953687,9768579 -k1,22205:32583029,9768579:19313196 -g1,22205:32583029,9768579 -) -(1,22205:6630773,10434757:25952256,410518,101187 -k1,22205:7507251,10434757:244187 -k1,22205:8383729,10434757:244187 -k1,22205:10524790,10434757:244187 -k1,22205:14878871,10434757:244187 -k1,22205:32583029,10434757:0 -k1,22205:32583029,10434757:0 -) -(1,22205:6630773,11100935:25952256,404226,82312 -g1,22205:7579210,11100935 -g1,22205:11056813,11100935 -k1,22205:32583030,11100935:20577780 -g1,22205:32583030,11100935 -) -(1,22205:6630773,11767113:25952256,404226,76021 -g1,22205:7579210,11767113 -g1,22205:8843793,11767113 -g1,22205:10424522,11767113 -k1,22205:32583029,11767113:20893924 -g1,22205:32583029,11767113 -) -(1,22205:6630773,12433291:25952256,404226,82312 -g1,22205:7579210,12433291 -g1,22205:8843793,12433291 -g1,22205:10424522,12433291 -g1,22205:12321396,12433291 -g1,22205:14218270,12433291 -k1,22205:32583029,12433291:17100176 -g1,22205:32583029,12433291 -) -(1,22205:6630773,13099469:25952256,379060,0 -k1,22205:32583028,13099469:25319964 -g1,22205:32583028,13099469 -) -(1,22205:6630773,13765647:25952256,410518,101187 -g1,22205:7579210,13765647 -g1,22205:8211502,13765647 -g1,22205:9476085,13765647 -g1,22205:12321396,13765647 -g1,22205:13269833,13765647 -g1,22205:16115144,13765647 -g1,22205:17379727,13765647 -g1,22205:18960456,13765647 -g1,22205:21173476,13765647 -g1,22205:25599516,13765647 -g1,22205:26864099,13765647 -g1,22205:28444828,13765647 -k1,22205:32583029,13765647:2557473 -g1,22205:32583029,13765647 -) -(1,22205:6630773,14431825:25952256,410518,107478 -k1,22205:7536068,14431825:273004 -k1,22205:8125219,14431825:273005 -k1,22205:10611243,14431825:273004 -k1,22205:11832684,14431825:273004 -k1,22205:14002562,14431825:273004 -k1,22205:15856295,14431825:273005 -k1,22205:16761590,14431825:273004 -k1,22205:17983031,14431825:273004 -k1,22205:22998221,14431825:273005 -k1,22205:23587371,14431825:273004 -k1,22205:25757249,14431825:273004 -k1,22205:26662544,14431825:273004 -k1,22205:28516277,14431825:273005 -k1,22205:30053864,14431825:273004 -k1,22205:32583029,14431825:0 -k1,22205:32583029,14431825:0 -) -(1,22211:6630773,15098003:25952256,404226,6290 -(1,22205:6630773,15098003:0,0,0 -g1,22205:6630773,15098003 -g1,22205:6630773,15098003 -g1,22205:6303093,15098003 -(1,22205:6303093,15098003:0,0,0 -) -g1,22205:6630773,15098003 -) -g1,22211:7579210,15098003 -g1,22211:8211502,15098003 -g1,22211:8843794,15098003 -g1,22211:11372960,15098003 -g1,22211:12005252,15098003 -g1,22211:12637544,15098003 -h1,22211:12953690,15098003:0,0,0 -k1,22211:32583030,15098003:19629340 -g1,22211:32583030,15098003 -) -(1,22211:6630773,15764181:25952256,404226,9436 -h1,22211:6630773,15764181:0,0,0 -g1,22211:7579210,15764181 -g1,22211:7895356,15764181 -g1,22211:8211502,15764181 -g1,22211:8527648,15764181 -g1,22211:10108377,15764181 -g1,22211:10424523,15764181 -g1,22211:12005252,15764181 -g1,22211:12321398,15764181 -g1,22211:13902127,15764181 -h1,22211:15166710,15764181:0,0,0 -k1,22211:32583030,15764181:17416320 -g1,22211:32583030,15764181 -) -(1,22211:6630773,16430359:25952256,404226,6290 -h1,22211:6630773,16430359:0,0,0 -g1,22211:7579210,16430359 -g1,22211:7895356,16430359 -g1,22211:8211502,16430359 -g1,22211:10108377,16430359 -g1,22211:12005252,16430359 -g1,22211:13902127,16430359 -k1,22211:13902127,16430359:0 -h1,22211:15482856,16430359:0,0,0 -k1,22211:32583028,16430359:17100172 -g1,22211:32583028,16430359 -) -(1,22211:6630773,17096537:25952256,388497,9436 -h1,22211:6630773,17096537:0,0,0 -g1,22211:7579210,17096537 -g1,22211:8211502,17096537 -g1,22211:8527648,17096537 -g1,22211:8843794,17096537 -g1,22211:9476086,17096537 -g1,22211:9792232,17096537 -g1,22211:10108378,17096537 -g1,22211:10424524,17096537 -g1,22211:12005253,17096537 -g1,22211:12321399,17096537 -g1,22211:12637545,17096537 -g1,22211:13902128,17096537 -h1,22211:14850565,17096537:0,0,0 -k1,22211:32583029,17096537:17732464 -g1,22211:32583029,17096537 -) -(1,22211:6630773,17762715:25952256,388497,9436 -h1,22211:6630773,17762715:0,0,0 -g1,22211:7579210,17762715 -g1,22211:8211502,17762715 -g1,22211:8527648,17762715 -g1,22211:10108377,17762715 -g1,22211:10424523,17762715 -g1,22211:12005252,17762715 -g1,22211:12321398,17762715 -g1,22211:12637544,17762715 -g1,22211:12953690,17762715 -g1,22211:13902127,17762715 -g1,22211:14534419,17762715 -h1,22211:14850565,17762715:0,0,0 -k1,22211:32583029,17762715:17732464 -g1,22211:32583029,17762715 -) -] -) -g1,22212:32583029,17772151 -g1,22212:6630773,17772151 -g1,22212:6630773,17772151 -g1,22212:32583029,17772151 -g1,22212:32583029,17772151 -) -h1,22212:6630773,17968759:0,0,0 -v1,22216:6630773,19577672:0,393216,0 -(1,22229:6630773,29116692:25952256,9932236,196608 -g1,22229:6630773,29116692 -g1,22229:6630773,29116692 -g1,22229:6434165,29116692 -(1,22229:6434165,29116692:0,9932236,196608 -r1,22250:32779637,29116692:26345472,10128844,196608 -k1,22229:6434165,29116692:-26345472 -) -(1,22229:6434165,29116692:26345472,9932236,196608 -[1,22229:6630773,29116692:25952256,9735628,0 -(1,22218:6630773,19791582:25952256,410518,107478 -(1,22217:6630773,19791582:0,0,0 -g1,22217:6630773,19791582 -g1,22217:6630773,19791582 -g1,22217:6303093,19791582 -(1,22217:6303093,19791582:0,0,0 -) -g1,22217:6630773,19791582 -) -k1,22218:6630773,19791582:0 -g1,22218:11056813,19791582 -g1,22218:11689105,19791582 -k1,22218:11689105,19791582:0 -h1,22218:22754203,19791582:0,0,0 -k1,22218:32583029,19791582:9828826 -g1,22218:32583029,19791582 -) -(1,22222:6630773,21113120:25952256,404226,7863 -g1,22222:7579210,21113120 -g1,22222:9476084,21113120 -g1,22222:10108376,21113120 -g1,22222:12953687,21113120 -k1,22222:32583029,21113120:19313196 -g1,22222:32583029,21113120 -) -(1,22222:6630773,21779298:25952256,410518,101187 -k1,22222:7507251,21779298:244187 -k1,22222:8383729,21779298:244187 -k1,22222:10524790,21779298:244187 -k1,22222:14878871,21779298:244187 -k1,22222:32583029,21779298:0 -k1,22222:32583029,21779298:0 -) -(1,22222:6630773,22445476:25952256,404226,82312 -g1,22222:7579210,22445476 -g1,22222:11056813,22445476 -k1,22222:32583030,22445476:20577780 -g1,22222:32583030,22445476 -) -(1,22222:6630773,23111654:25952256,404226,76021 -g1,22222:7579210,23111654 -g1,22222:8843793,23111654 -g1,22222:10424522,23111654 -k1,22222:32583029,23111654:20893924 -g1,22222:32583029,23111654 -) -(1,22222:6630773,23777832:25952256,404226,82312 -g1,22222:7579210,23777832 -g1,22222:8843793,23777832 -g1,22222:10424522,23777832 -g1,22222:12321396,23777832 -g1,22222:14218270,23777832 -k1,22222:32583029,23777832:17100176 -g1,22222:32583029,23777832 -) -(1,22222:6630773,24444010:25952256,379060,0 -k1,22222:32583028,24444010:25319964 -g1,22222:32583028,24444010 -) -(1,22222:6630773,25110188:25952256,410518,101187 -g1,22222:7579210,25110188 -g1,22222:8211502,25110188 -g1,22222:9476085,25110188 -g1,22222:12321396,25110188 -g1,22222:13269833,25110188 -g1,22222:16115144,25110188 -g1,22222:17379727,25110188 -g1,22222:18960456,25110188 -g1,22222:21173476,25110188 -g1,22222:25599516,25110188 -g1,22222:26864099,25110188 -g1,22222:28444828,25110188 -k1,22222:32583029,25110188:2557473 -g1,22222:32583029,25110188 -) -(1,22222:6630773,25776366:25952256,410518,107478 -k1,22222:7536068,25776366:273004 -k1,22222:8125219,25776366:273005 -k1,22222:10611243,25776366:273004 -k1,22222:11832684,25776366:273004 -k1,22222:14002562,25776366:273004 -k1,22222:15856295,25776366:273005 -k1,22222:16761590,25776366:273004 -k1,22222:17983031,25776366:273004 -k1,22222:22998221,25776366:273005 -k1,22222:23587371,25776366:273004 -k1,22222:25757249,25776366:273004 -k1,22222:26662544,25776366:273004 -k1,22222:28516277,25776366:273005 -k1,22222:30053864,25776366:273004 -k1,22222:32583029,25776366:0 -k1,22222:32583029,25776366:0 -) -(1,22228:6630773,26442544:25952256,404226,6290 -(1,22222:6630773,26442544:0,0,0 -g1,22222:6630773,26442544 -g1,22222:6630773,26442544 -g1,22222:6303093,26442544 -(1,22222:6303093,26442544:0,0,0 -) -g1,22222:6630773,26442544 -) -g1,22228:7579210,26442544 -g1,22228:8211502,26442544 -g1,22228:8843794,26442544 -g1,22228:11372960,26442544 -g1,22228:12005252,26442544 -g1,22228:12637544,26442544 -h1,22228:12953690,26442544:0,0,0 -k1,22228:32583030,26442544:19629340 -g1,22228:32583030,26442544 -) -(1,22228:6630773,27108722:25952256,404226,9436 -h1,22228:6630773,27108722:0,0,0 -g1,22228:7579210,27108722 -g1,22228:7895356,27108722 -g1,22228:8211502,27108722 -g1,22228:8527648,27108722 -g1,22228:10108377,27108722 -g1,22228:10424523,27108722 -g1,22228:12005252,27108722 -g1,22228:12321398,27108722 -g1,22228:13902127,27108722 -h1,22228:15166710,27108722:0,0,0 -k1,22228:32583030,27108722:17416320 -g1,22228:32583030,27108722 -) -(1,22228:6630773,27774900:25952256,404226,6290 -h1,22228:6630773,27774900:0,0,0 -g1,22228:7579210,27774900 -g1,22228:7895356,27774900 -g1,22228:8211502,27774900 -g1,22228:10108377,27774900 -g1,22228:12005252,27774900 -g1,22228:13902127,27774900 -k1,22228:13902127,27774900:0 -h1,22228:15482856,27774900:0,0,0 -k1,22228:32583028,27774900:17100172 -g1,22228:32583028,27774900 -) -(1,22228:6630773,28441078:25952256,388497,9436 -h1,22228:6630773,28441078:0,0,0 -g1,22228:7579210,28441078 -g1,22228:8211502,28441078 -g1,22228:8527648,28441078 -g1,22228:8843794,28441078 -g1,22228:9476086,28441078 -g1,22228:9792232,28441078 -g1,22228:10108378,28441078 -g1,22228:10424524,28441078 -g1,22228:12005253,28441078 -g1,22228:12321399,28441078 -g1,22228:12637545,28441078 -g1,22228:13902128,28441078 -h1,22228:14850565,28441078:0,0,0 -k1,22228:32583029,28441078:17732464 -g1,22228:32583029,28441078 -) -(1,22228:6630773,29107256:25952256,388497,9436 -h1,22228:6630773,29107256:0,0,0 -g1,22228:7579210,29107256 -g1,22228:8211502,29107256 -g1,22228:8527648,29107256 -g1,22228:10108377,29107256 -g1,22228:10424523,29107256 -g1,22228:12005252,29107256 -g1,22228:12321398,29107256 -g1,22228:12637544,29107256 -g1,22228:12953690,29107256 -g1,22228:13902127,29107256 -g1,22228:14534419,29107256 -h1,22228:14850565,29107256:0,0,0 -k1,22228:32583029,29107256:17732464 -g1,22228:32583029,29107256 -) -] -) -g1,22229:32583029,29116692 -g1,22229:6630773,29116692 -g1,22229:6630773,29116692 -g1,22229:32583029,29116692 -g1,22229:32583029,29116692 -) -h1,22229:6630773,29313300:0,0,0 -(1,22233:6630773,30626155:25952256,513147,134348 -h1,22232:6630773,30626155:983040,0,0 -k1,22232:10382840,30626155:234094 -k1,22232:12640031,30626155:234095 -k1,22232:13405622,30626155:234094 -k1,22232:15525843,30626155:234095 -k1,22232:17611984,30626155:234094 -k1,22232:22151793,30626155:234094 -k1,22232:23577333,30626155:234095 -k1,22232:26573770,30626155:234094 -k1,22232:28693336,30626155:234095 -k1,22232:31591469,30626155:234094 -k1,22232:32583029,30626155:0 -) -(1,22233:6630773,31467643:25952256,513147,134348 -k1,22232:8044330,31467643:347286 -k1,22232:9842583,31467643:347286 -k1,22232:13725537,31467643:347287 -k1,22232:15466774,31467643:347286 -k1,22232:17265682,31467643:347286 -k1,22232:19488608,31467643:347286 -k1,22232:22364273,31467643:347286 -k1,22232:23370851,31467643:347286 -k1,22232:24737223,31467643:347287 -k1,22232:28555296,31467643:347286 -k1,22232:30636665,31467643:347286 -k1,22232:31599989,31467643:347286 -k1,22233:32583029,31467643:0 -) -(1,22233:6630773,32309131:25952256,505283,126483 -(1,22232:6630773,32309131:0,452978,122846 -r1,22250:14726699,32309131:8095926,575824,122846 -k1,22232:6630773,32309131:-8095926 -) -(1,22232:6630773,32309131:8095926,452978,122846 -k1,22232:6630773,32309131:3277 -h1,22232:14723422,32309131:0,411205,112570 -) -k1,22232:14980185,32309131:253486 -k1,22232:15849709,32309131:253486 -k1,22232:17122280,32309131:253486 -k1,22232:18739570,32309131:253486 -k1,22232:19861409,32309131:253487 -k1,22232:22413243,32309131:253486 -k1,22232:23318157,32309131:253486 -k1,22232:24664128,32309131:253486 -(1,22232:24664128,32309131:0,452978,115847 -r1,22250:29242936,32309131:4578808,568825,115847 -k1,22232:24664128,32309131:-4578808 -) -(1,22232:24664128,32309131:4578808,452978,115847 -k1,22232:24664128,32309131:3277 -h1,22232:29239659,32309131:0,411205,112570 -) -k1,22232:29670092,32309131:253486 -k1,22232:31809049,32309131:253486 -k1,22233:32583029,32309131:0 -) -(1,22233:6630773,33150619:25952256,513147,134348 -k1,22232:8784218,33150619:264697 -k1,22232:13390676,33150619:264698 -k1,22232:14314665,33150619:264697 -k1,22232:16487115,33150619:264697 -k1,22232:19520054,33150619:264698 -k1,22232:20436179,33150619:264697 -(1,22232:20436179,33150619:0,452978,115847 -r1,22250:24663275,33150619:4227096,568825,115847 -k1,22232:20436179,33150619:-4227096 -) -(1,22232:20436179,33150619:4227096,452978,115847 -k1,22232:20436179,33150619:3277 -h1,22232:24659998,33150619:0,411205,112570 -) -k1,22232:25101642,33150619:264697 -k1,22232:26747183,33150619:264697 -k1,22232:29707377,33150619:264698 -k1,22232:31073079,33150619:264697 -k1,22232:32583029,33150619:0 -) -(1,22233:6630773,33992107:25952256,513147,134348 -k1,22232:9571392,33992107:146164 -k1,22232:10403718,33992107:146164 -(1,22232:10403718,33992107:0,452978,115847 -r1,22250:14630814,33992107:4227096,568825,115847 -k1,22232:10403718,33992107:-4227096 -) -(1,22232:10403718,33992107:4227096,452978,115847 -k1,22232:10403718,33992107:3277 -h1,22232:14627537,33992107:0,411205,112570 -) -k1,22232:14776977,33992107:146163 -k1,22232:16114586,33992107:146164 -(1,22232:16114586,33992107:0,452978,115847 -r1,22250:20693394,33992107:4578808,568825,115847 -k1,22232:16114586,33992107:-4578808 -) -(1,22232:16114586,33992107:4578808,452978,115847 -k1,22232:16114586,33992107:3277 -h1,22232:20690117,33992107:0,411205,112570 -) -k1,22232:20839558,33992107:146164 -k1,22232:24698337,33992107:146164 -k1,22232:27779202,33992107:146163 -k1,22232:30310877,33992107:146164 -k1,22232:31116333,33992107:146164 -k1,22232:32583029,33992107:0 -) -(1,22233:6630773,34833595:25952256,513147,126483 -g1,22232:8143344,34833595 -g1,22232:9699824,34833595 -g1,22232:10365014,34833595 -g1,22232:11944431,34833595 -g1,22232:13135220,34833595 -g1,22232:14746750,34833595 -g1,22232:16339930,34833595 -(1,22232:16339930,34833595:0,452978,115847 -r1,22250:20567026,34833595:4227096,568825,115847 -k1,22232:16339930,34833595:-4227096 -) -(1,22232:16339930,34833595:4227096,452978,115847 -k1,22232:16339930,34833595:3277 -h1,22232:20563749,34833595:0,411205,112570 -) -k1,22233:32583029,34833595:11842333 -g1,22233:32583029,34833595 -) -v1,22235:6630773,35971141:0,393216,0 -(1,22250:6630773,45510161:25952256,9932236,196608 -g1,22250:6630773,45510161 -g1,22250:6630773,45510161 -g1,22250:6434165,45510161 -(1,22250:6434165,45510161:0,9932236,196608 -r1,22250:32779637,45510161:26345472,10128844,196608 -k1,22250:6434165,45510161:-26345472 -) -(1,22250:6434165,45510161:26345472,9932236,196608 -[1,22250:6630773,45510161:25952256,9735628,0 -(1,22237:6630773,36185051:25952256,410518,107478 -(1,22236:6630773,36185051:0,0,0 -g1,22236:6630773,36185051 -g1,22236:6630773,36185051 -g1,22236:6303093,36185051 -(1,22236:6303093,36185051:0,0,0 -) -g1,22236:6630773,36185051 -) -k1,22237:6630773,36185051:0 -g1,22237:11689105,36185051 -g1,22237:12321397,36185051 -k1,22237:12321397,36185051:0 -h1,22237:21173476,36185051:0,0,0 -k1,22237:32583029,36185051:11409553 -g1,22237:32583029,36185051 -) -(1,22242:6630773,37506589:25952256,379060,0 -k1,22241:32583028,37506589:25319964 -g1,22242:32583028,37506589 -) -(1,22242:6630773,38172767:25952256,410518,101187 -k1,22241:7507251,38172767:244187 -k1,22241:8383729,38172767:244187 -k1,22241:10524790,38172767:244187 -k1,22241:14878871,38172767:244187 -k1,22241:32583029,38172767:0 -k1,22242:32583029,38172767:0 -) -(1,22242:6630773,38838945:25952256,404226,76021 -g1,22241:7579210,38838945 -k1,22241:32583030,38838945:23423092 -g1,22242:32583030,38838945 -) -(1,22242:6630773,39505123:25952256,404226,82312 -g1,22241:7579210,39505123 -g1,22241:7895356,39505123 -g1,22241:8211502,39505123 -g1,22241:9792231,39505123 -g1,22241:10424523,39505123 -k1,22241:32583029,39505123:18048612 -g1,22242:32583029,39505123 -) -(1,22242:6630773,40171301:25952256,404226,82312 -g1,22241:7579210,40171301 -g1,22241:7895356,40171301 -g1,22241:8211502,40171301 -g1,22241:9792231,40171301 -g1,22241:10424523,40171301 -k1,22241:32583029,40171301:18048612 -g1,22242:32583029,40171301 -) -(1,22242:6630773,40837479:25952256,404226,82312 -g1,22241:7579210,40837479 -g1,22241:7895356,40837479 -g1,22241:8211502,40837479 -g1,22241:9792231,40837479 -g1,22241:10424523,40837479 -k1,22241:32583029,40837479:18048612 -g1,22242:32583029,40837479 -) -(1,22242:6630773,41503657:25952256,404226,76021 -g1,22241:7579210,41503657 -g1,22241:7895356,41503657 -g1,22241:8211502,41503657 -g1,22241:9792231,41503657 -g1,22241:10424523,41503657 -k1,22241:32583028,41503657:17416320 -g1,22242:32583028,41503657 -) -(1,22242:6630773,42169835:25952256,404226,76021 -g1,22241:7579210,42169835 -k1,22242:32583028,42169835:24687672 -g1,22242:32583028,42169835 -) -(1,22243:6630773,42836013:25952256,410518,107478 -g1,22243:7579210,42836013 -g1,22243:10424521,42836013 -g1,22243:11056813,42836013 -g1,22243:13585979,42836013 -k1,22243:32583029,42836013:16467885 -g1,22243:32583029,42836013 -) -(1,22243:6630773,43502191:25952256,410518,101187 -g1,22243:7579210,43502191 -g1,22243:8843793,43502191 -g1,22243:10108376,43502191 -g1,22243:10424522,43502191 -g1,22243:13269833,43502191 -g1,22243:13585979,43502191 -g1,22243:13902125,43502191 -g1,22243:14218271,43502191 -g1,22243:16431291,43502191 -g1,22243:16747437,43502191 -g1,22243:17063583,43502191 -g1,22243:17379729,43502191 -g1,22243:17695875,43502191 -g1,22243:18012021,43502191 -g1,22243:18328167,43502191 -g1,22243:18644313,43502191 -g1,22243:18960459,43502191 -g1,22243:19276605,43502191 -g1,22243:19592751,43502191 -g1,22243:19908897,43502191 -g1,22243:20225043,43502191 -g1,22243:20541189,43502191 -g1,22243:20857335,43502191 -g1,22243:21173481,43502191 -g1,22243:21489627,43502191 -g1,22243:21805773,43502191 -g1,22243:22121919,43502191 -g1,22243:22438065,43502191 -g1,22243:22754211,43502191 -g1,22243:23070357,43502191 -g1,22243:23386503,43502191 -g1,22243:23702649,43502191 -k1,22243:32583029,43502191:7615797 -g1,22243:32583029,43502191 -) -(1,22243:6630773,44168369:25952256,404226,107478 -g1,22243:7579210,44168369 -g1,22243:7895356,44168369 -g1,22243:8211502,44168369 -g1,22243:8843794,44168369 -g1,22243:9159940,44168369 -g1,22243:10108377,44168369 -g1,22243:10740669,44168369 -g1,22243:13269835,44168369 -g1,22243:13902127,44168369 -g1,22243:16431293,44168369 -k1,22243:32583029,44168369:7615803 -g1,22243:32583029,44168369 -) -(1,22249:6630773,44834547:25952256,404226,6290 -(1,22243:6630773,44834547:0,0,0 -g1,22243:6630773,44834547 -g1,22243:6630773,44834547 -g1,22243:6303093,44834547 -(1,22243:6303093,44834547:0,0,0 -) -g1,22243:6630773,44834547 -) -g1,22249:7579210,44834547 -g1,22249:8211502,44834547 -g1,22249:8843794,44834547 -g1,22249:11372960,44834547 -g1,22249:12005252,44834547 -g1,22249:12637544,44834547 -h1,22249:12953690,44834547:0,0,0 -k1,22249:32583030,44834547:19629340 -g1,22249:32583030,44834547 -) -(1,22249:6630773,45500725:25952256,404226,9436 -h1,22249:6630773,45500725:0,0,0 -g1,22249:7579210,45500725 -g1,22249:7895356,45500725 -g1,22249:8211502,45500725 -g1,22249:8527648,45500725 -g1,22249:10108377,45500725 -g1,22249:10424523,45500725 -g1,22249:12005252,45500725 -g1,22249:12321398,45500725 -g1,22249:13902127,45500725 -h1,22249:15166710,45500725:0,0,0 -k1,22249:32583030,45500725:17416320 -g1,22249:32583030,45500725 -) -] -) -g1,22250:32583029,45510161 -g1,22250:6630773,45510161 -g1,22250:6630773,45510161 -g1,22250:32583029,45510161 -g1,22250:32583029,45510161 -) -] -(1,22250:32583029,45706769:0,0,0 -g1,22250:32583029,45706769 -) -) -] -(1,22250:6630773,47279633:25952256,0,0 -h1,22250:6630773,47279633:25952256,0,0 -) -] -(1,22250:4262630,4025873:0,0,0 -[1,22250:-473656,4025873:0,0,0 -(1,22250:-473656,-710413:0,0,0 -(1,22250:-473656,-710413:0,0,0 -g1,22250:-473656,-710413 -) -g1,22250:-473656,-710413 -) -] -) -] -!24323 -}403 -Input:3622:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3623:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3624:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3625:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3626:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3627:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3628:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3629:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3630:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!858 -{404 -[1,22343:4262630,47279633:28320399,43253760,0 -(1,22343:4262630,4025873:0,0,0 -[1,22343:-473656,4025873:0,0,0 -(1,22343:-473656,-710413:0,0,0 -(1,22343:-473656,-644877:0,0,0 -k1,22343:-473656,-644877:-65536 +!22954 +}386 +Input:3663:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3664:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3665:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3666:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3667:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3668:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!576 +{387 +[1,22511:4262630,47279633:28320399,43253760,0 +(1,22511:4262630,4025873:0,0,0 +[1,22511:-473656,4025873:0,0,0 +(1,22511:-473656,-710413:0,0,0 +(1,22511:-473656,-644877:0,0,0 +k1,22511:-473656,-644877:-65536 ) -(1,22343:-473656,4736287:0,0,0 -k1,22343:-473656,4736287:5209943 +(1,22511:-473656,4736287:0,0,0 +k1,22511:-473656,4736287:5209943 ) -g1,22343:-473656,-710413 +g1,22511:-473656,-710413 ) ] ) -[1,22343:6630773,47279633:25952256,43253760,0 -[1,22343:6630773,4812305:25952256,786432,0 -(1,22343:6630773,4812305:25952256,513147,126483 -(1,22343:6630773,4812305:25952256,513147,126483 -g1,22343:3078558,4812305 -[1,22343:3078558,4812305:0,0,0 -(1,22343:3078558,2439708:0,1703936,0 -k1,22343:1358238,2439708:-1720320 -(1,21457:1358238,2439708:1720320,1703936,0 -(1,21457:1358238,2439708:1179648,16384,0 -r1,22343:2537886,2439708:1179648,16384,0 +[1,22511:6630773,47279633:25952256,43253760,0 +[1,22511:6630773,4812305:25952256,786432,0 +(1,22511:6630773,4812305:25952256,505283,134348 +(1,22511:6630773,4812305:25952256,505283,134348 +g1,22511:3078558,4812305 +[1,22511:3078558,4812305:0,0,0 +(1,22511:3078558,2439708:0,1703936,0 +k1,22511:1358238,2439708:-1720320 +(1,21670:1358238,2439708:1720320,1703936,0 +(1,21670:1358238,2439708:1179648,16384,0 +r1,22511:2537886,2439708:1179648,16384,0 ) -g1,21457:3062174,2439708 -(1,21457:3062174,2439708:16384,1703936,0 -[1,21457:3062174,2439708:25952256,1703936,0 -(1,21457:3062174,1915420:25952256,1179648,0 -(1,21457:3062174,1915420:16384,1179648,0 -r1,22343:3078558,1915420:16384,1179648,0 +g1,21670:3062174,2439708 +(1,21670:3062174,2439708:16384,1703936,0 +[1,21670:3062174,2439708:25952256,1703936,0 +(1,21670:3062174,1915420:25952256,1179648,0 +(1,21670:3062174,1915420:16384,1179648,0 +r1,22511:3078558,1915420:16384,1179648,0 ) -k1,21457:29014430,1915420:25935872 -g1,21457:29014430,1915420 +k1,21670:29014430,1915420:25935872 +g1,21670:29014430,1915420 ) ] ) ) ) ] -[1,22343:3078558,4812305:0,0,0 -(1,22343:3078558,2439708:0,1703936,0 -g1,22343:29030814,2439708 -g1,22343:36135244,2439708 -(1,21457:36135244,2439708:1720320,1703936,0 -(1,21457:36135244,2439708:16384,1703936,0 -[1,21457:36135244,2439708:25952256,1703936,0 -(1,21457:36135244,1915420:25952256,1179648,0 -(1,21457:36135244,1915420:16384,1179648,0 -r1,22343:36151628,1915420:16384,1179648,0 +[1,22511:3078558,4812305:0,0,0 +(1,22511:3078558,2439708:0,1703936,0 +g1,22511:29030814,2439708 +g1,22511:36135244,2439708 +(1,21670:36135244,2439708:1720320,1703936,0 +(1,21670:36135244,2439708:16384,1703936,0 +[1,21670:36135244,2439708:25952256,1703936,0 +(1,21670:36135244,1915420:25952256,1179648,0 +(1,21670:36135244,1915420:16384,1179648,0 +r1,22511:36151628,1915420:16384,1179648,0 ) -k1,21457:62087500,1915420:25935872 -g1,21457:62087500,1915420 +k1,21670:62087500,1915420:25935872 +g1,21670:62087500,1915420 ) ] ) -g1,21457:36675916,2439708 -(1,21457:36675916,2439708:1179648,16384,0 -r1,22343:37855564,2439708:1179648,16384,0 +g1,21670:36675916,2439708 +(1,21670:36675916,2439708:1179648,16384,0 +r1,22511:37855564,2439708:1179648,16384,0 ) ) -k1,22343:3078556,2439708:-34777008 +k1,22511:3078556,2439708:-34777008 ) ] -[1,22343:3078558,4812305:0,0,0 -(1,22343:3078558,49800853:0,16384,2228224 -k1,22343:1358238,49800853:-1720320 -(1,21457:1358238,49800853:1720320,16384,2228224 -(1,21457:1358238,49800853:1179648,16384,0 -r1,22343:2537886,49800853:1179648,16384,0 +[1,22511:3078558,4812305:0,0,0 +(1,22511:3078558,49800853:0,16384,2228224 +k1,22511:1358238,49800853:-1720320 +(1,21670:1358238,49800853:1720320,16384,2228224 +(1,21670:1358238,49800853:1179648,16384,0 +r1,22511:2537886,49800853:1179648,16384,0 +) +g1,21670:3062174,49800853 +(1,21670:3062174,52029077:16384,1703936,0 +[1,21670:3062174,52029077:25952256,1703936,0 +(1,21670:3062174,51504789:25952256,1179648,0 +(1,21670:3062174,51504789:16384,1179648,0 +r1,22511:3078558,51504789:16384,1179648,0 +) +k1,21670:29014430,51504789:25935872 +g1,21670:29014430,51504789 +) +] +) +) +) +] +[1,22511:3078558,4812305:0,0,0 +(1,22511:3078558,49800853:0,16384,2228224 +g1,22511:29030814,49800853 +g1,22511:36135244,49800853 +(1,21670:36135244,49800853:1720320,16384,2228224 +(1,21670:36135244,52029077:16384,1703936,0 +[1,21670:36135244,52029077:25952256,1703936,0 +(1,21670:36135244,51504789:25952256,1179648,0 +(1,21670:36135244,51504789:16384,1179648,0 +r1,22511:36151628,51504789:16384,1179648,0 +) +k1,21670:62087500,51504789:25935872 +g1,21670:62087500,51504789 +) +] +) +g1,21670:36675916,49800853 +(1,21670:36675916,49800853:1179648,16384,0 +r1,22511:37855564,49800853:1179648,16384,0 +) +) +k1,22511:3078556,49800853:-34777008 +) +] +g1,22511:6630773,4812305 +k1,22511:21078841,4812305:13252691 +g1,22511:22701512,4812305 +g1,22511:23350318,4812305 +g1,22511:24759997,4812305 +g1,22511:28372341,4812305 +g1,22511:30105768,4812305 +) +) +] +[1,22511:6630773,45706769:25952256,40108032,0 +(1,22511:6630773,45706769:25952256,40108032,0 +(1,22511:6630773,45706769:0,0,0 +g1,22511:6630773,45706769 +) +[1,22511:6630773,45706769:25952256,40108032,0 +v1,22463:6630773,6254097:0,393216,0 +(1,22463:6630773,10677486:25952256,4816605,196608 +g1,22463:6630773,10677486 +g1,22463:6630773,10677486 +g1,22463:6434165,10677486 +(1,22463:6434165,10677486:0,4816605,196608 +r1,22511:32779637,10677486:26345472,5013213,196608 +k1,22463:6434165,10677486:-26345472 +) +(1,22463:6434165,10677486:26345472,4816605,196608 +[1,22463:6630773,10677486:25952256,4619997,0 +(1,22456:6630773,6488534:25952256,431045,106246 +g1,22456:7626635,6488534 +g1,22456:8954451,6488534 +g1,22456:10282267,6488534 +g1,22456:10614221,6488534 +g1,22456:13601806,6488534 +g1,22456:13933760,6488534 +g1,22456:14265714,6488534 +g1,22456:14597668,6488534 +g1,22456:16921346,6488534 +g1,22456:17253300,6488534 +g1,22456:17585254,6488534 +g1,22456:17917208,6488534 +g1,22456:18249162,6488534 +g1,22456:18581116,6488534 +g1,22456:18913070,6488534 +g1,22456:19245024,6488534 +g1,22456:19576978,6488534 +g1,22456:19908932,6488534 +g1,22456:20240886,6488534 +g1,22456:20572840,6488534 +g1,22456:20904794,6488534 +g1,22456:21236748,6488534 +g1,22456:21568702,6488534 +g1,22456:21900656,6488534 +g1,22456:22232610,6488534 +g1,22456:22564564,6488534 +g1,22456:22896518,6488534 +g1,22456:23228472,6488534 +g1,22456:23560426,6488534 +g1,22456:23892380,6488534 +g1,22456:24224334,6488534 +g1,22456:24556288,6488534 +k1,22456:32583029,6488534:6698925 +g1,22456:32583029,6488534 +) +(1,22456:6630773,7173389:25952256,424439,112852 +g1,22456:7626635,7173389 +g1,22456:7958589,7173389 +g1,22456:8290543,7173389 +g1,22456:8954451,7173389 +g1,22456:9286405,7173389 +g1,22456:10282267,7173389 +g1,22456:10946175,7173389 +g1,22456:13601807,7173389 +g1,22456:14265715,7173389 +g1,22456:16921347,7173389 +k1,22456:32583029,7173389:6698926 +g1,22456:32583029,7173389 +) +(1,22462:6630773,7858244:25952256,424439,6605 +(1,22456:6630773,7858244:0,0,0 +g1,22456:6630773,7858244 +g1,22456:6630773,7858244 +g1,22456:6303093,7858244 +(1,22456:6303093,7858244:0,0,0 +) +g1,22456:6630773,7858244 +) +g1,22462:7626635,7858244 +g1,22462:8290543,7858244 +g1,22462:8954451,7858244 +g1,22462:11610083,7858244 +g1,22462:12273991,7858244 +g1,22462:12937899,7858244 +h1,22462:13269853,7858244:0,0,0 +k1,22462:32583029,7858244:19313176 +g1,22462:32583029,7858244 +) +(1,22462:6630773,8543099:25952256,424439,9908 +h1,22462:6630773,8543099:0,0,0 +g1,22462:7626635,8543099 +g1,22462:7958589,8543099 +g1,22462:8290543,8543099 +g1,22462:8622497,8543099 +g1,22462:10282267,8543099 +g1,22462:10614221,8543099 +g1,22462:12273991,8543099 +g1,22462:12605945,8543099 +g1,22462:14265715,8543099 +h1,22462:15593531,8543099:0,0,0 +k1,22462:32583029,8543099:16989498 +g1,22462:32583029,8543099 +) +(1,22462:6630773,9227954:25952256,424439,6605 +h1,22462:6630773,9227954:0,0,0 +g1,22462:7626635,9227954 +g1,22462:7958589,9227954 +g1,22462:8290543,9227954 +g1,22462:10282267,9227954 +g1,22462:12273991,9227954 +g1,22462:14265715,9227954 +k1,22462:14265715,9227954:0 +h1,22462:15925485,9227954:0,0,0 +k1,22462:32583029,9227954:16657544 +g1,22462:32583029,9227954 +) +(1,22462:6630773,9912809:25952256,424439,9908 +h1,22462:6630773,9912809:0,0,0 +g1,22462:7626635,9912809 +g1,22462:8290543,9912809 +g1,22462:8622497,9912809 +g1,22462:8954451,9912809 +g1,22462:9618359,9912809 +g1,22462:9950313,9912809 +g1,22462:10282267,9912809 +g1,22462:10614221,9912809 +g1,22462:12273991,9912809 +g1,22462:12605945,9912809 +g1,22462:12937899,9912809 +g1,22462:14265715,9912809 +h1,22462:15925485,9912809:0,0,0 +k1,22462:32583029,9912809:16657544 +g1,22462:32583029,9912809 +) +(1,22462:6630773,10597664:25952256,424439,79822 +h1,22462:6630773,10597664:0,0,0 +g1,22462:7626635,10597664 +g1,22462:8290543,10597664 +g1,22462:8622497,10597664 +g1,22462:10282267,10597664 +g1,22462:10614221,10597664 +g1,22462:12273991,10597664 +g1,22462:12605945,10597664 +g1,22462:12937899,10597664 +g1,22462:13269853,10597664 +g1,22462:14265715,10597664 +h1,22462:15925485,10597664:0,0,0 +k1,22462:32583029,10597664:16657544 +g1,22462:32583029,10597664 +) +] +) +g1,22463:32583029,10677486 +g1,22463:6630773,10677486 +g1,22463:6630773,10677486 +g1,22463:32583029,10677486 +g1,22463:32583029,10677486 +) +h1,22463:6630773,10874094:0,0,0 +v1,22467:6630773,11558949:0,393216,0 +(1,22482:6630773,24171103:25952256,13005370,196608 +g1,22482:6630773,24171103 +g1,22482:6630773,24171103 +g1,22482:6434165,24171103 +(1,22482:6434165,24171103:0,13005370,196608 +r1,22511:32779637,24171103:26345472,13201978,196608 +k1,22482:6434165,24171103:-26345472 +) +(1,22482:6434165,24171103:26345472,13005370,196608 +[1,22482:6630773,24171103:25952256,12808762,0 +(1,22469:6630773,11793386:25952256,431045,112852 +(1,22468:6630773,11793386:0,0,0 +g1,22468:6630773,11793386 +g1,22468:6630773,11793386 +g1,22468:6303093,11793386 +(1,22468:6303093,11793386:0,0,0 +) +g1,22468:6630773,11793386 +) +k1,22469:6630773,11793386:0 +g1,22469:11942036,11793386 +g1,22469:12605944,11793386 +k1,22469:12605944,11793386:0 +h1,22469:23228469,11793386:0,0,0 +k1,22469:32583029,11793386:9354560 +g1,22469:32583029,11793386 +) +(1,22474:6630773,13133601:25952256,398014,0 +k1,22473:32583029,13133601:25288348 +g1,22474:32583029,13133601 +) +(1,22474:6630773,13818456:25952256,431045,106246 +k1,22473:7641597,13818456:346916 +k1,22473:8652422,13818456:346917 +k1,22473:10991062,13818456:346916 +k1,22473:15653379,13818456:346916 +k1,22474:32583029,13818456:0 +) +(1,22474:6630773,14503311:25952256,185520,0 +k1,22473:32583029,14503311:24292486 +g1,22474:32583029,14503311 +) +(1,22474:6630773,15188166:25952256,424439,79822 +g1,22473:7626635,15188166 +k1,22473:32583029,15188166:23296624 +g1,22474:32583029,15188166 +) +(1,22474:6630773,15873021:25952256,424439,86428 +g1,22473:7626635,15873021 +g1,22473:7958589,15873021 +g1,22473:8290543,15873021 +g1,22473:9950313,15873021 +g1,22473:10614221,15873021 +k1,22473:32583030,15873021:17653408 +g1,22474:32583030,15873021 +) +(1,22474:6630773,16557876:25952256,424439,86428 +g1,22473:7626635,16557876 +g1,22473:7958589,16557876 +g1,22473:8290543,16557876 +g1,22473:9950313,16557876 +g1,22473:10614221,16557876 +k1,22473:32583030,16557876:17653408 +g1,22474:32583030,16557876 +) +(1,22474:6630773,17242731:25952256,424439,86428 +g1,22473:7626635,17242731 +g1,22473:7958589,17242731 +g1,22473:8290543,17242731 +g1,22473:9950313,17242731 +g1,22473:10614221,17242731 +k1,22473:32583030,17242731:17653408 +g1,22474:32583030,17242731 +) +(1,22474:6630773,17927586:25952256,424439,79822 +g1,22473:7626635,17927586 +g1,22473:7958589,17927586 +g1,22473:8290543,17927586 +g1,22473:9950313,17927586 +g1,22473:10614221,17927586 +k1,22473:32583030,17927586:16989500 +g1,22474:32583030,17927586 +) +(1,22474:6630773,18612441:25952256,424439,79822 +g1,22473:7626635,18612441 +k1,22474:32583029,18612441:24624440 +g1,22474:32583029,18612441 +) +(1,22475:6630773,19297296:25952256,431045,112852 +g1,22475:7626635,19297296 +g1,22475:10614220,19297296 +g1,22475:11278128,19297296 +g1,22475:13933760,19297296 +k1,22475:32583029,19297296:15993638 +g1,22475:32583029,19297296 +) +(1,22475:6630773,19982151:25952256,431045,106246 +g1,22475:7626635,19982151 +g1,22475:8954451,19982151 +g1,22475:10282267,19982151 +g1,22475:10614221,19982151 +g1,22475:13601806,19982151 +g1,22475:13933760,19982151 +g1,22475:14265714,19982151 +g1,22475:14597668,19982151 +g1,22475:16921346,19982151 +g1,22475:17253300,19982151 +g1,22475:17585254,19982151 +g1,22475:17917208,19982151 +g1,22475:18249162,19982151 +g1,22475:18581116,19982151 +g1,22475:18913070,19982151 +g1,22475:19245024,19982151 +g1,22475:19576978,19982151 +g1,22475:19908932,19982151 +g1,22475:20240886,19982151 +g1,22475:20572840,19982151 +g1,22475:20904794,19982151 +g1,22475:21236748,19982151 +g1,22475:21568702,19982151 +g1,22475:21900656,19982151 +g1,22475:22232610,19982151 +g1,22475:22564564,19982151 +g1,22475:22896518,19982151 +g1,22475:23228472,19982151 +g1,22475:23560426,19982151 +g1,22475:23892380,19982151 +g1,22475:24224334,19982151 +g1,22475:24556288,19982151 +g1,22475:24888242,19982151 +g1,22475:25220196,19982151 +g1,22475:25552150,19982151 +g1,22475:25884104,19982151 +k1,22475:32583029,19982151:5371109 +g1,22475:32583029,19982151 +) +(1,22475:6630773,20667006:25952256,424439,112852 +g1,22475:7626635,20667006 +g1,22475:7958589,20667006 +g1,22475:8290543,20667006 +g1,22475:8954451,20667006 +g1,22475:9286405,20667006 +g1,22475:10282267,20667006 +g1,22475:10946175,20667006 +g1,22475:13601807,20667006 +g1,22475:14265715,20667006 +g1,22475:16921347,20667006 +k1,22475:32583029,20667006:5371111 +g1,22475:32583029,20667006 +) +(1,22481:6630773,21351861:25952256,424439,6605 +(1,22475:6630773,21351861:0,0,0 +g1,22475:6630773,21351861 +g1,22475:6630773,21351861 +g1,22475:6303093,21351861 +(1,22475:6303093,21351861:0,0,0 +) +g1,22475:6630773,21351861 +) +g1,22481:7626635,21351861 +g1,22481:8290543,21351861 +g1,22481:8954451,21351861 +g1,22481:11610083,21351861 +g1,22481:12273991,21351861 +g1,22481:12937899,21351861 +h1,22481:13269853,21351861:0,0,0 +k1,22481:32583029,21351861:19313176 +g1,22481:32583029,21351861 +) +(1,22481:6630773,22036716:25952256,424439,9908 +h1,22481:6630773,22036716:0,0,0 +g1,22481:7626635,22036716 +g1,22481:7958589,22036716 +g1,22481:8290543,22036716 +g1,22481:8622497,22036716 +g1,22481:10282267,22036716 +g1,22481:10614221,22036716 +g1,22481:12273991,22036716 +g1,22481:12605945,22036716 +g1,22481:14265715,22036716 +h1,22481:15593531,22036716:0,0,0 +k1,22481:32583029,22036716:16989498 +g1,22481:32583029,22036716 +) +(1,22481:6630773,22721571:25952256,424439,6605 +h1,22481:6630773,22721571:0,0,0 +g1,22481:7626635,22721571 +g1,22481:7958589,22721571 +g1,22481:8290543,22721571 +g1,22481:10282267,22721571 +g1,22481:12273991,22721571 +g1,22481:14265715,22721571 +k1,22481:14265715,22721571:0 +h1,22481:15925485,22721571:0,0,0 +k1,22481:32583029,22721571:16657544 +g1,22481:32583029,22721571 +) +(1,22481:6630773,23406426:25952256,424439,9908 +h1,22481:6630773,23406426:0,0,0 +g1,22481:7626635,23406426 +g1,22481:8290543,23406426 +g1,22481:8622497,23406426 +g1,22481:8954451,23406426 +g1,22481:9618359,23406426 +g1,22481:9950313,23406426 +g1,22481:10282267,23406426 +g1,22481:10614221,23406426 +g1,22481:12273991,23406426 +g1,22481:12605945,23406426 +g1,22481:12937899,23406426 +g1,22481:14265715,23406426 +h1,22481:15925485,23406426:0,0,0 +k1,22481:32583029,23406426:16657544 +g1,22481:32583029,23406426 +) +(1,22481:6630773,24091281:25952256,424439,79822 +h1,22481:6630773,24091281:0,0,0 +g1,22481:7626635,24091281 +g1,22481:8290543,24091281 +g1,22481:8622497,24091281 +g1,22481:10282267,24091281 +g1,22481:10614221,24091281 +g1,22481:12273991,24091281 +g1,22481:12605945,24091281 +g1,22481:12937899,24091281 +g1,22481:13269853,24091281 +g1,22481:14265715,24091281 +h1,22481:15925485,24091281:0,0,0 +k1,22481:32583029,24091281:16657544 +g1,22481:32583029,24091281 +) +] +) +g1,22482:32583029,24171103 +g1,22482:6630773,24171103 +g1,22482:6630773,24171103 +g1,22482:32583029,24171103 +g1,22482:32583029,24171103 +) +h1,22482:6630773,24367711:0,0,0 +(1,22486:6630773,25232791:25952256,513147,126483 +h1,22485:6630773,25232791:983040,0,0 +k1,22485:10605148,25232791:201467 +(1,22485:10605148,25232791:0,452978,115847 +r1,22511:14832244,25232791:4227096,568825,115847 +k1,22485:10605148,25232791:-4227096 +) +(1,22485:10605148,25232791:4227096,452978,115847 +k1,22485:10605148,25232791:3277 +h1,22485:14828967,25232791:0,411205,112570 +) +k1,22485:15033710,25232791:201466 +k1,22485:16629128,25232791:201467 +k1,22485:18618416,25232791:201466 +k1,22485:19506045,25232791:201467 +k1,22485:20726596,25232791:201466 +k1,22485:23816235,25232791:201467 +k1,22485:25878268,25232791:201466 +k1,22485:26731163,25232791:201467 +k1,22485:27680395,25232791:201466 +k1,22485:29395088,25232791:201467 +k1,22485:31923737,25232791:201466 +k1,22486:32583029,25232791:0 +) +(1,22486:6630773,26097871:25952256,452978,115847 +(1,22485:6630773,26097871:0,452978,115847 +r1,22511:10857869,26097871:4227096,568825,115847 +k1,22485:6630773,26097871:-4227096 +) +(1,22485:6630773,26097871:4227096,452978,115847 +k1,22485:6630773,26097871:3277 +h1,22485:10854592,26097871:0,411205,112570 +) +k1,22486:32583029,26097871:21551490 +g1,22486:32583029,26097871 +) +v1,22488:6630773,26782726:0,393216,0 +(1,22501:6630773,37955256:25952256,11565746,196608 +g1,22501:6630773,37955256 +g1,22501:6630773,37955256 +g1,22501:6434165,37955256 +(1,22501:6434165,37955256:0,11565746,196608 +r1,22511:32779637,37955256:26345472,11762354,196608 +k1,22501:6434165,37955256:-26345472 +) +(1,22501:6434165,37955256:26345472,11565746,196608 +[1,22501:6630773,37955256:25952256,11369138,0 +(1,22490:6630773,27017163:25952256,431045,112852 +(1,22489:6630773,27017163:0,0,0 +g1,22489:6630773,27017163 +g1,22489:6630773,27017163 +g1,22489:6303093,27017163 +(1,22489:6303093,27017163:0,0,0 +) +g1,22489:6630773,27017163 +) +k1,22490:6630773,27017163:0 +g1,22490:11942036,27017163 +g1,22490:12605944,27017163 +g1,22490:23560423,27017163 +g1,22490:25552147,27017163 +g1,22490:26216055,27017163 +g1,22490:26879963,27017163 +h1,22490:27543871,27017163:0,0,0 +k1,22490:32583029,27017163:5039158 +g1,22490:32583029,27017163 +) +(1,22494:6630773,28357378:25952256,424439,8257 +g1,22494:7626635,28357378 +g1,22494:9618359,28357378 +g1,22494:10282267,28357378 +g1,22494:13269852,28357378 +k1,22494:32583030,28357378:18981224 +g1,22494:32583030,28357378 +) +(1,22494:6630773,29042233:25952256,431045,106246 +k1,22494:7641597,29042233:346916 +k1,22494:8652422,29042233:346917 +k1,22494:10991062,29042233:346916 +k1,22494:15653379,29042233:346916 +k1,22494:32583029,29042233:0 +) +(1,22494:6630773,29727088:25952256,185520,0 +k1,22494:32583029,29727088:24292486 +g1,22494:32583029,29727088 +) +(1,22494:6630773,30411943:25952256,424439,6605 +g1,22494:7626635,30411943 +g1,22494:11278128,30411943 +g1,22494:11942036,30411943 +k1,22494:32583030,30411943:20309040 +g1,22494:32583030,30411943 +) +(1,22494:6630773,31096798:25952256,424439,79822 +g1,22494:7626635,31096798 +g1,22494:8954451,31096798 +g1,22494:10614221,31096798 +k1,22494:32583029,31096798:20640992 +g1,22494:32583029,31096798 +) +(1,22494:6630773,31781653:25952256,424439,86428 +g1,22494:7626635,31781653 +g1,22494:8954451,31781653 +g1,22494:10614221,31781653 +g1,22494:12605945,31781653 +g1,22494:14597669,31781653 +k1,22494:32583029,31781653:16657544 +g1,22494:32583029,31781653 +) +(1,22494:6630773,32466508:25952256,398014,0 +k1,22494:32583029,32466508:25288348 +g1,22494:32583029,32466508 +) +(1,22494:6630773,33151363:25952256,431045,106246 +g1,22494:7626635,33151363 +g1,22494:8290543,33151363 +g1,22494:9618359,33151363 +g1,22494:12605944,33151363 +g1,22494:13601806,33151363 +g1,22494:16589391,33151363 +g1,22494:17917207,33151363 +g1,22494:19576977,33151363 +g1,22494:21900655,33151363 +g1,22494:26548010,33151363 +g1,22494:27875826,33151363 +g1,22494:29535596,33151363 +k1,22494:32583029,33151363:1387663 +g1,22494:32583029,33151363 +) +(1,22494:6630773,33836218:25952256,431045,106246 +k1,22494:7707843,33836218:413162 +k1,22494:8452959,33836218:413162 +k1,22494:11189800,33836218:413163 +k1,22494:12598824,33836218:413162 +k1,22494:15003710,33836218:413162 +k1,22494:17076642,33836218:413162 +k1,22494:18153713,33836218:413163 +k1,22494:19562737,33836218:413162 +k1,22494:24955208,33836218:413162 +k1,22494:25700324,33836218:413162 +k1,22494:28105211,33836218:413163 +k1,22494:29182281,33836218:413162 +k1,22494:31255213,33836218:413162 +k1,22494:32583029,33836218:0 +) +(1,22494:6630773,34521073:25952256,298373,112852 +k1,22494:32583028,34521073:23296624 +g1,22494:32583028,34521073 +) +(1,22500:6630773,35205928:25952256,424439,6605 +(1,22494:6630773,35205928:0,0,0 +g1,22494:6630773,35205928 +g1,22494:6630773,35205928 +g1,22494:6303093,35205928 +(1,22494:6303093,35205928:0,0,0 +) +g1,22494:6630773,35205928 +) +g1,22500:7626635,35205928 +g1,22500:8290543,35205928 +g1,22500:8954451,35205928 +g1,22500:11610083,35205928 +g1,22500:12273991,35205928 +g1,22500:12937899,35205928 +h1,22500:13269853,35205928:0,0,0 +k1,22500:32583029,35205928:19313176 +g1,22500:32583029,35205928 +) +(1,22500:6630773,35890783:25952256,424439,9908 +h1,22500:6630773,35890783:0,0,0 +g1,22500:7626635,35890783 +g1,22500:7958589,35890783 +g1,22500:8290543,35890783 +g1,22500:8622497,35890783 +g1,22500:10282267,35890783 +g1,22500:10614221,35890783 +g1,22500:12273991,35890783 +g1,22500:12605945,35890783 +g1,22500:14265715,35890783 +h1,22500:15593531,35890783:0,0,0 +k1,22500:32583029,35890783:16989498 +g1,22500:32583029,35890783 +) +(1,22500:6630773,36575638:25952256,424439,6605 +h1,22500:6630773,36575638:0,0,0 +g1,22500:7626635,36575638 +g1,22500:7958589,36575638 +g1,22500:8290543,36575638 +g1,22500:10282267,36575638 +g1,22500:12273991,36575638 +g1,22500:14265715,36575638 +k1,22500:14265715,36575638:0 +h1,22500:15925485,36575638:0,0,0 +k1,22500:32583029,36575638:16657544 +g1,22500:32583029,36575638 +) +(1,22500:6630773,37260493:25952256,407923,9908 +h1,22500:6630773,37260493:0,0,0 +g1,22500:7626635,37260493 +g1,22500:8290543,37260493 +g1,22500:8622497,37260493 +g1,22500:8954451,37260493 +g1,22500:9618359,37260493 +g1,22500:9950313,37260493 +g1,22500:10282267,37260493 +g1,22500:10614221,37260493 +g1,22500:12273991,37260493 +g1,22500:12605945,37260493 +g1,22500:12937899,37260493 +g1,22500:14265715,37260493 +h1,22500:15261577,37260493:0,0,0 +k1,22500:32583029,37260493:17321452 +g1,22500:32583029,37260493 +) +(1,22500:6630773,37945348:25952256,407923,9908 +h1,22500:6630773,37945348:0,0,0 +g1,22500:7626635,37945348 +g1,22500:8290543,37945348 +g1,22500:8622497,37945348 +g1,22500:10282267,37945348 +g1,22500:10614221,37945348 +g1,22500:12273991,37945348 +g1,22500:12605945,37945348 +g1,22500:12937899,37945348 +g1,22500:13269853,37945348 +g1,22500:14265715,37945348 +g1,22500:14929623,37945348 +h1,22500:15261577,37945348:0,0,0 +k1,22500:32583029,37945348:17321452 +g1,22500:32583029,37945348 +) +] +) +g1,22501:32583029,37955256 +g1,22501:6630773,37955256 +g1,22501:6630773,37955256 +g1,22501:32583029,37955256 +g1,22501:32583029,37955256 +) +h1,22501:6630773,38151864:0,0,0 +(1,22505:6630773,39016944:25952256,513147,115847 +h1,22504:6630773,39016944:983040,0,0 +k1,22504:10563011,39016944:159330 +(1,22504:10563011,39016944:0,452978,115847 +r1,22511:14086683,39016944:3523672,568825,115847 +k1,22504:10563011,39016944:-3523672 +) +(1,22504:10563011,39016944:3523672,452978,115847 +k1,22504:10563011,39016944:3277 +h1,22504:14083406,39016944:0,411205,112570 +) +k1,22504:14246013,39016944:159330 +k1,22504:16147945,39016944:159330 +k1,22504:17620617,39016944:159330 +k1,22504:20459059,39016944:159330 +k1,22504:22012339,39016944:159329 +k1,22504:23190754,39016944:159330 +k1,22504:24363271,39016944:159330 +k1,22504:27497280,39016944:159330 +k1,22504:28342772,39016944:159330 +k1,22504:29521187,39016944:159330 +k1,22504:32583029,39016944:0 +) +(1,22505:6630773,39882024:25952256,513147,126483 +k1,22504:7989296,39882024:167078 +(1,22504:7989296,39882024:0,459977,115847 +r1,22511:11512968,39882024:3523672,575824,115847 +k1,22504:7989296,39882024:-3523672 +) +(1,22504:7989296,39882024:3523672,459977,115847 +k1,22504:7989296,39882024:3277 +h1,22504:11509691,39882024:0,411205,112570 +) +k1,22504:11680047,39882024:167079 +k1,22504:13589727,39882024:167078 +k1,22504:15070148,39882024:167079 +k1,22504:16631177,39882024:167078 +k1,22504:18361945,39882024:167079 +k1,22504:20343715,39882024:167078 +k1,22504:22418547,39882024:167079 +k1,22504:24418012,39882024:167078 +k1,22504:25290258,39882024:167079 +k1,22504:28301599,39882024:167078 +k1,22504:29278048,39882024:167079 +k1,22504:32583029,39882024:0 +) +(1,22505:6630773,40747104:25952256,505283,134348 +g1,22504:7481430,40747104 +(1,22504:7481430,40747104:0,459977,115847 +r1,22511:12411950,40747104:4930520,575824,115847 +k1,22504:7481430,40747104:-4930520 +) +(1,22504:7481430,40747104:4930520,459977,115847 +k1,22504:7481430,40747104:3277 +h1,22504:12408673,40747104:0,411205,112570 +) +g1,22504:12784849,40747104 +g1,22504:16500740,40747104 +g1,22504:19139874,40747104 +g1,22504:21822918,40747104 +k1,22505:32583029,40747104:8567932 +g1,22505:32583029,40747104 +) +v1,22507:6630773,41612184:0,393216,0 +(1,22508:6630773,45479329:25952256,4260361,0 +g1,22508:6630773,45479329 +g1,22508:6237557,45479329 +r1,22511:6368629,45479329:131072,4260361,0 +g1,22508:6567858,45479329 +g1,22508:6764466,45479329 +[1,22508:6764466,45479329:25818563,4260361,0 +(1,22508:6764466,41884661:25818563,665693,196608 +(1,22507:6764466,41884661:0,665693,196608 +r1,22511:8010564,41884661:1246098,862301,196608 +k1,22507:6764466,41884661:-1246098 +) +(1,22507:6764466,41884661:1246098,665693,196608 +) +k1,22507:8249566,41884661:239002 +k1,22507:9975784,41884661:327680 +k1,22507:11363632,41884661:239002 +k1,22507:12621719,41884661:239002 +k1,22507:15453981,41884661:239002 +(1,22507:15453981,41884661:0,452978,115847 +r1,22511:17219094,41884661:1765113,568825,115847 +k1,22507:15453981,41884661:-1765113 +) +(1,22507:15453981,41884661:1765113,452978,115847 +k1,22507:15453981,41884661:3277 +h1,22507:17215817,41884661:0,411205,112570 +) +k1,22507:17458096,41884661:239002 +k1,22507:20722895,41884661:239002 +k1,22507:21613324,41884661:239001 +k1,22507:23264627,41884661:239002 +k1,22507:24522714,41884661:239002 +k1,22507:27423133,41884661:239002 +k1,22507:28975477,41884661:239002 +k1,22507:30727705,41884661:239002 +k1,22507:32583029,41884661:0 +) +(1,22508:6764466,42749741:25818563,513147,134348 +k1,22507:9255872,42749741:281532 +k1,22507:10996234,42749741:281531 +k1,22507:12608147,42749741:281532 +k1,22507:14376691,42749741:281532 +k1,22507:15476111,42749741:281531 +k1,22507:19175346,42749741:281532 +k1,22507:21664131,42749741:281532 +k1,22507:24217140,42749741:281531 +k1,22507:26435916,42749741:281532 +k1,22507:27849910,42749741:281532 +k1,22507:29519494,42749741:281531 +k1,22507:30971499,42749741:281532 +k1,22507:32583029,42749741:0 +) +(1,22508:6764466,43614821:25818563,505283,134348 +k1,22507:8266083,43614821:171236 +k1,22507:9088747,43614821:171236 +k1,22507:12099003,43614821:171236 +k1,22507:13968277,43614821:171236 +k1,22507:15633079,43614821:171236 +k1,22507:17741559,43614821:171236 +k1,22507:18904355,43614821:171236 +k1,22507:21278257,43614821:171237 +k1,22507:22211021,43614821:171236 +k1,22507:24521352,43614821:171236 +k1,22507:25375473,43614821:171236 +k1,22507:26936072,43614821:171236 +k1,22507:28775855,43614821:171236 +k1,22507:31955194,43614821:171236 +k1,22507:32583029,43614821:0 +) +(1,22508:6764466,44479901:25818563,505283,134348 +k1,22507:8200057,44479901:232350 +k1,22507:9973159,44479901:232351 +k1,22507:10891671,44479901:232350 +k1,22507:13683202,44479901:232350 +k1,22507:15327854,44479901:232351 +k1,22507:16949567,44479901:232350 +k1,22507:18173477,44479901:232350 +k1,22507:19472098,44479901:232350 +k1,22507:21833714,44479901:232351 +k1,22507:26264300,44479901:232350 +k1,22507:27258178,44479901:232350 +k1,22507:29097472,44479901:232351 +k1,22507:30012707,44479901:232350 +k1,22507:32583029,44479901:0 +) +(1,22508:6764466,45344981:25818563,513147,134348 +g1,22507:10172993,45344981 +g1,22507:13148327,45344981 +g1,22507:15169457,45344981 +g1,22507:16387771,45344981 +g1,22507:19365727,45344981 +g1,22507:21706673,45344981 +g1,22507:22853553,45344981 +g1,22507:25616550,45344981 +g1,22507:27205142,45344981 +k1,22508:32583029,45344981:3193572 +g1,22508:32583029,45344981 +) +] +g1,22508:32583029,45479329 +) +h1,22508:6630773,45479329:0,0,0 +] +(1,22511:32583029,45706769:0,0,0 +g1,22511:32583029,45706769 +) +) +] +(1,22511:6630773,47279633:25952256,0,0 +h1,22511:6630773,47279633:25952256,0,0 +) +] +(1,22511:4262630,4025873:0,0,0 +[1,22511:-473656,4025873:0,0,0 +(1,22511:-473656,-710413:0,0,0 +(1,22511:-473656,-710413:0,0,0 +g1,22511:-473656,-710413 +) +g1,22511:-473656,-710413 +) +] +) +] +!26130 +}387 +Input:3669:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3670:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3671:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!294 +{388 +[1,22556:4262630,47279633:28320399,43253760,0 +(1,22556:4262630,4025873:0,0,0 +[1,22556:-473656,4025873:0,0,0 +(1,22556:-473656,-710413:0,0,0 +(1,22556:-473656,-644877:0,0,0 +k1,22556:-473656,-644877:-65536 ) -g1,21457:3062174,49800853 -(1,21457:3062174,52029077:16384,1703936,0 -[1,21457:3062174,52029077:25952256,1703936,0 -(1,21457:3062174,51504789:25952256,1179648,0 -(1,21457:3062174,51504789:16384,1179648,0 -r1,22343:3078558,51504789:16384,1179648,0 -) -k1,21457:29014430,51504789:25935872 -g1,21457:29014430,51504789 +(1,22556:-473656,4736287:0,0,0 +k1,22556:-473656,4736287:5209943 +) +g1,22556:-473656,-710413 ) ] ) +[1,22556:6630773,47279633:25952256,43253760,0 +[1,22556:6630773,4812305:25952256,786432,0 +(1,22556:6630773,4812305:25952256,513147,126483 +(1,22556:6630773,4812305:25952256,513147,126483 +g1,22556:3078558,4812305 +[1,22556:3078558,4812305:0,0,0 +(1,22556:3078558,2439708:0,1703936,0 +k1,22556:1358238,2439708:-1720320 +(1,21670:1358238,2439708:1720320,1703936,0 +(1,21670:1358238,2439708:1179648,16384,0 +r1,22556:2537886,2439708:1179648,16384,0 +) +g1,21670:3062174,2439708 +(1,21670:3062174,2439708:16384,1703936,0 +[1,21670:3062174,2439708:25952256,1703936,0 +(1,21670:3062174,1915420:25952256,1179648,0 +(1,21670:3062174,1915420:16384,1179648,0 +r1,22556:3078558,1915420:16384,1179648,0 ) +k1,21670:29014430,1915420:25935872 +g1,21670:29014430,1915420 ) ] -[1,22343:3078558,4812305:0,0,0 -(1,22343:3078558,49800853:0,16384,2228224 -g1,22343:29030814,49800853 -g1,22343:36135244,49800853 -(1,21457:36135244,49800853:1720320,16384,2228224 -(1,21457:36135244,52029077:16384,1703936,0 -[1,21457:36135244,52029077:25952256,1703936,0 -(1,21457:36135244,51504789:25952256,1179648,0 -(1,21457:36135244,51504789:16384,1179648,0 -r1,22343:36151628,51504789:16384,1179648,0 -) -k1,21457:62087500,51504789:25935872 -g1,21457:62087500,51504789 -) -] -) -g1,21457:36675916,49800853 -(1,21457:36675916,49800853:1179648,16384,0 -r1,22343:37855564,49800853:1179648,16384,0 -) -) -k1,22343:3078556,49800853:-34777008 -) -] -g1,22343:6630773,4812305 -g1,22343:6630773,4812305 -g1,22343:9744388,4812305 -g1,22343:11175694,4812305 -k1,22343:31387652,4812305:20211958 -) -) -] -[1,22343:6630773,45706769:25952256,40108032,0 -(1,22343:6630773,45706769:25952256,40108032,0 -(1,22343:6630773,45706769:0,0,0 -g1,22343:6630773,45706769 -) -[1,22343:6630773,45706769:25952256,40108032,0 -v1,22250:6630773,6254097:0,393216,0 -(1,22250:6630773,7870092:25952256,2009211,196608 -g1,22250:6630773,7870092 -g1,22250:6630773,7870092 -g1,22250:6434165,7870092 -(1,22250:6434165,7870092:0,2009211,196608 -r1,22343:32779637,7870092:26345472,2205819,196608 -k1,22250:6434165,7870092:-26345472 -) -(1,22250:6434165,7870092:26345472,2009211,196608 -[1,22250:6630773,7870092:25952256,1812603,0 -(1,22249:6630773,6461715:25952256,404226,6290 -h1,22249:6630773,6461715:0,0,0 -g1,22249:7579210,6461715 -g1,22249:7895356,6461715 -g1,22249:8211502,6461715 -g1,22249:10108377,6461715 -g1,22249:12005252,6461715 -g1,22249:13902127,6461715 -k1,22249:13902127,6461715:0 -h1,22249:15482856,6461715:0,0,0 -k1,22249:32583028,6461715:17100172 -g1,22249:32583028,6461715 -) -(1,22249:6630773,7127893:25952256,404226,9436 -h1,22249:6630773,7127893:0,0,0 -g1,22249:7579210,7127893 -g1,22249:8211502,7127893 -g1,22249:8527648,7127893 -g1,22249:8843794,7127893 -g1,22249:9476086,7127893 -g1,22249:9792232,7127893 -g1,22249:10108378,7127893 -g1,22249:10424524,7127893 -g1,22249:12005253,7127893 -g1,22249:12321399,7127893 -g1,22249:12637545,7127893 -g1,22249:13902128,7127893 -h1,22249:15482856,7127893:0,0,0 -k1,22249:32583028,7127893:17100172 -g1,22249:32583028,7127893 -) -(1,22249:6630773,7794071:25952256,404226,76021 -h1,22249:6630773,7794071:0,0,0 -g1,22249:7579210,7794071 -g1,22249:8211502,7794071 -g1,22249:8527648,7794071 -g1,22249:10108377,7794071 -g1,22249:10424523,7794071 -g1,22249:12005252,7794071 -g1,22249:12321398,7794071 -g1,22249:12637544,7794071 -g1,22249:12953690,7794071 -g1,22249:13902127,7794071 -h1,22249:15482855,7794071:0,0,0 -k1,22249:32583029,7794071:17100174 -g1,22249:32583029,7794071 -) -] -) -g1,22250:32583029,7870092 -g1,22250:6630773,7870092 -g1,22250:6630773,7870092 -g1,22250:32583029,7870092 -g1,22250:32583029,7870092 -) -h1,22250:6630773,8066700:0,0,0 -v1,22254:6630773,9781454:0,393216,0 -(1,22269:6630773,21385593:25952256,11997355,196608 -g1,22269:6630773,21385593 -g1,22269:6630773,21385593 -g1,22269:6434165,21385593 -(1,22269:6434165,21385593:0,11997355,196608 -r1,22343:32779637,21385593:26345472,12193963,196608 -k1,22269:6434165,21385593:-26345472 -) -(1,22269:6434165,21385593:26345472,11997355,196608 -[1,22269:6630773,21385593:25952256,11800747,0 -(1,22256:6630773,9995364:25952256,410518,107478 -(1,22255:6630773,9995364:0,0,0 -g1,22255:6630773,9995364 -g1,22255:6630773,9995364 -g1,22255:6303093,9995364 -(1,22255:6303093,9995364:0,0,0 -) -g1,22255:6630773,9995364 -) -k1,22256:6630773,9995364:0 -g1,22256:11689105,9995364 -g1,22256:12321397,9995364 -k1,22256:12321397,9995364:0 -h1,22256:22438058,9995364:0,0,0 -k1,22256:32583029,9995364:10144971 -g1,22256:32583029,9995364 -) -(1,22261:6630773,11316902:25952256,379060,0 -k1,22260:32583028,11316902:25319964 -g1,22261:32583028,11316902 -) -(1,22261:6630773,11983080:25952256,410518,101187 -k1,22260:7507251,11983080:244187 -k1,22260:8383729,11983080:244187 -k1,22260:10524790,11983080:244187 -k1,22260:14878871,11983080:244187 -k1,22260:32583029,11983080:0 -k1,22261:32583029,11983080:0 -) -(1,22261:6630773,12649258:25952256,404226,76021 -g1,22260:7579210,12649258 -k1,22260:32583030,12649258:23423092 -g1,22261:32583030,12649258 -) -(1,22261:6630773,13315436:25952256,404226,82312 -g1,22260:7579210,13315436 -g1,22260:7895356,13315436 -g1,22260:8211502,13315436 -g1,22260:9792231,13315436 -g1,22260:10424523,13315436 -k1,22260:32583029,13315436:18048612 -g1,22261:32583029,13315436 -) -(1,22261:6630773,13981614:25952256,404226,82312 -g1,22260:7579210,13981614 -g1,22260:7895356,13981614 -g1,22260:8211502,13981614 -g1,22260:9792231,13981614 -g1,22260:10424523,13981614 -k1,22260:32583029,13981614:18048612 -g1,22261:32583029,13981614 -) -(1,22261:6630773,14647792:25952256,404226,82312 -g1,22260:7579210,14647792 -g1,22260:7895356,14647792 -g1,22260:8211502,14647792 -g1,22260:9792231,14647792 -g1,22260:10424523,14647792 -k1,22260:32583029,14647792:18048612 -g1,22261:32583029,14647792 -) -(1,22261:6630773,15313970:25952256,404226,76021 -g1,22260:7579210,15313970 -g1,22260:7895356,15313970 -g1,22260:8211502,15313970 -g1,22260:9792231,15313970 -g1,22260:10424523,15313970 -k1,22260:32583028,15313970:17416320 -g1,22261:32583028,15313970 -) -(1,22261:6630773,15980148:25952256,404226,76021 -g1,22260:7579210,15980148 -k1,22261:32583028,15980148:24687672 -g1,22261:32583028,15980148 -) -(1,22262:6630773,16646326:25952256,410518,107478 -g1,22262:7579210,16646326 -g1,22262:10424521,16646326 -g1,22262:11056813,16646326 -g1,22262:13585979,16646326 -k1,22262:32583029,16646326:16467885 -g1,22262:32583029,16646326 -) -(1,22262:6630773,17312504:25952256,410518,101187 -g1,22262:7579210,17312504 -g1,22262:8843793,17312504 -g1,22262:10108376,17312504 -g1,22262:10424522,17312504 -g1,22262:13269833,17312504 -g1,22262:13585979,17312504 -g1,22262:13902125,17312504 -g1,22262:14218271,17312504 -g1,22262:16431291,17312504 -g1,22262:16747437,17312504 -g1,22262:17063583,17312504 -g1,22262:17379729,17312504 -g1,22262:17695875,17312504 -g1,22262:18012021,17312504 -g1,22262:18328167,17312504 -g1,22262:18644313,17312504 -g1,22262:18960459,17312504 -g1,22262:19276605,17312504 -g1,22262:19592751,17312504 -g1,22262:19908897,17312504 -g1,22262:20225043,17312504 -g1,22262:20541189,17312504 -g1,22262:20857335,17312504 -g1,22262:21173481,17312504 -g1,22262:21489627,17312504 -g1,22262:21805773,17312504 -g1,22262:22121919,17312504 -g1,22262:22438065,17312504 -g1,22262:22754211,17312504 -g1,22262:23070357,17312504 -g1,22262:23386503,17312504 -g1,22262:23702649,17312504 -g1,22262:24018795,17312504 -g1,22262:24334941,17312504 -g1,22262:24651087,17312504 -g1,22262:24967233,17312504 -k1,22262:32583029,17312504:6351213 -g1,22262:32583029,17312504 -) -(1,22262:6630773,17978682:25952256,404226,107478 -g1,22262:7579210,17978682 -g1,22262:7895356,17978682 -g1,22262:8211502,17978682 -g1,22262:8843794,17978682 -g1,22262:9159940,17978682 -g1,22262:10108377,17978682 -g1,22262:10740669,17978682 -g1,22262:13269835,17978682 -g1,22262:13902127,17978682 -g1,22262:16431293,17978682 -k1,22262:32583029,17978682:6351220 -g1,22262:32583029,17978682 -) -(1,22268:6630773,18644860:25952256,404226,6290 -(1,22262:6630773,18644860:0,0,0 -g1,22262:6630773,18644860 -g1,22262:6630773,18644860 -g1,22262:6303093,18644860 -(1,22262:6303093,18644860:0,0,0 -) -g1,22262:6630773,18644860 -) -g1,22268:7579210,18644860 -g1,22268:8211502,18644860 -g1,22268:8843794,18644860 -g1,22268:11372960,18644860 -g1,22268:12005252,18644860 -g1,22268:12637544,18644860 -h1,22268:12953690,18644860:0,0,0 -k1,22268:32583030,18644860:19629340 -g1,22268:32583030,18644860 -) -(1,22268:6630773,19311038:25952256,404226,9436 -h1,22268:6630773,19311038:0,0,0 -g1,22268:7579210,19311038 -g1,22268:7895356,19311038 -g1,22268:8211502,19311038 -g1,22268:8527648,19311038 -g1,22268:10108377,19311038 -g1,22268:10424523,19311038 -g1,22268:12005252,19311038 -g1,22268:12321398,19311038 -g1,22268:13902127,19311038 -h1,22268:15166710,19311038:0,0,0 -k1,22268:32583030,19311038:17416320 -g1,22268:32583030,19311038 -) -(1,22268:6630773,19977216:25952256,404226,6290 -h1,22268:6630773,19977216:0,0,0 -g1,22268:7579210,19977216 -g1,22268:7895356,19977216 -g1,22268:8211502,19977216 -g1,22268:10108377,19977216 -g1,22268:12005252,19977216 -g1,22268:13902127,19977216 -k1,22268:13902127,19977216:0 -h1,22268:15482856,19977216:0,0,0 -k1,22268:32583028,19977216:17100172 -g1,22268:32583028,19977216 -) -(1,22268:6630773,20643394:25952256,404226,9436 -h1,22268:6630773,20643394:0,0,0 -g1,22268:7579210,20643394 -g1,22268:8211502,20643394 -g1,22268:8527648,20643394 -g1,22268:8843794,20643394 -g1,22268:9476086,20643394 -g1,22268:9792232,20643394 -g1,22268:10108378,20643394 -g1,22268:10424524,20643394 -g1,22268:12005253,20643394 -g1,22268:12321399,20643394 -g1,22268:12637545,20643394 -g1,22268:13902128,20643394 -h1,22268:15482856,20643394:0,0,0 -k1,22268:32583028,20643394:17100172 -g1,22268:32583028,20643394 -) -(1,22268:6630773,21309572:25952256,404226,76021 -h1,22268:6630773,21309572:0,0,0 -g1,22268:7579210,21309572 -g1,22268:8211502,21309572 -g1,22268:8527648,21309572 -g1,22268:10108377,21309572 -g1,22268:10424523,21309572 -g1,22268:12005252,21309572 -g1,22268:12321398,21309572 -g1,22268:12637544,21309572 -g1,22268:12953690,21309572 -g1,22268:13902127,21309572 -h1,22268:15482855,21309572:0,0,0 -k1,22268:32583029,21309572:17100174 -g1,22268:32583029,21309572 -) -] -) -g1,22269:32583029,21385593 -g1,22269:6630773,21385593 -g1,22269:6630773,21385593 -g1,22269:32583029,21385593 -g1,22269:32583029,21385593 -) -h1,22269:6630773,21582201:0,0,0 -(1,22273:6630773,22947977:25952256,513147,126483 -h1,22272:6630773,22947977:983040,0,0 -k1,22272:10605148,22947977:201467 -(1,22272:10605148,22947977:0,452978,115847 -r1,22343:14832244,22947977:4227096,568825,115847 -k1,22272:10605148,22947977:-4227096 -) -(1,22272:10605148,22947977:4227096,452978,115847 -k1,22272:10605148,22947977:3277 -h1,22272:14828967,22947977:0,411205,112570 -) -k1,22272:15033710,22947977:201466 -k1,22272:16629128,22947977:201467 -k1,22272:18618416,22947977:201466 -k1,22272:19506045,22947977:201467 -k1,22272:20726596,22947977:201466 -k1,22272:23816235,22947977:201467 -k1,22272:25878268,22947977:201466 -k1,22272:26731163,22947977:201467 -k1,22272:27680395,22947977:201466 -k1,22272:29395088,22947977:201467 -k1,22272:31923737,22947977:201466 -k1,22273:32583029,22947977:0 -) -(1,22273:6630773,23789465:25952256,452978,115847 -(1,22272:6630773,23789465:0,452978,115847 -r1,22343:10857869,23789465:4227096,568825,115847 -k1,22272:6630773,23789465:-4227096 -) -(1,22272:6630773,23789465:4227096,452978,115847 -k1,22272:6630773,23789465:3277 -h1,22272:10854592,23789465:0,411205,112570 -) -k1,22273:32583029,23789465:21551490 -g1,22273:32583029,23789465 -) -v1,22275:6630773,24979931:0,393216,0 -(1,22288:6630773,34518951:25952256,9932236,196608 -g1,22288:6630773,34518951 -g1,22288:6630773,34518951 -g1,22288:6434165,34518951 -(1,22288:6434165,34518951:0,9932236,196608 -r1,22343:32779637,34518951:26345472,10128844,196608 -k1,22288:6434165,34518951:-26345472 -) -(1,22288:6434165,34518951:26345472,9932236,196608 -[1,22288:6630773,34518951:25952256,9735628,0 -(1,22277:6630773,25193841:25952256,410518,107478 -(1,22276:6630773,25193841:0,0,0 -g1,22276:6630773,25193841 -g1,22276:6630773,25193841 -g1,22276:6303093,25193841 -(1,22276:6303093,25193841:0,0,0 -) -g1,22276:6630773,25193841 -) -k1,22277:6630773,25193841:0 -g1,22277:11689105,25193841 -g1,22277:12321397,25193841 -g1,22277:22754204,25193841 -g1,22277:24651078,25193841 -g1,22277:25283370,25193841 -g1,22277:25915662,25193841 -h1,22277:26547954,25193841:0,0,0 -k1,22277:32583029,25193841:6035075 -g1,22277:32583029,25193841 -) -(1,22281:6630773,26515379:25952256,404226,7863 -g1,22281:7579210,26515379 -g1,22281:9476084,26515379 -g1,22281:10108376,26515379 -g1,22281:12953687,26515379 -k1,22281:32583029,26515379:19313196 -g1,22281:32583029,26515379 -) -(1,22281:6630773,27181557:25952256,410518,101187 -k1,22281:7507251,27181557:244187 -k1,22281:8383729,27181557:244187 -k1,22281:10524790,27181557:244187 -k1,22281:14878871,27181557:244187 -k1,22281:32583029,27181557:0 -k1,22281:32583029,27181557:0 -) -(1,22281:6630773,27847735:25952256,404226,6290 -g1,22281:7579210,27847735 -g1,22281:11056813,27847735 -g1,22281:11689105,27847735 -k1,22281:32583029,27847735:20577778 -g1,22281:32583029,27847735 -) -(1,22281:6630773,28513913:25952256,404226,76021 -g1,22281:7579210,28513913 -g1,22281:8843793,28513913 -g1,22281:10424522,28513913 -k1,22281:32583029,28513913:20893924 -g1,22281:32583029,28513913 -) -(1,22281:6630773,29180091:25952256,404226,82312 -g1,22281:7579210,29180091 -g1,22281:8843793,29180091 -g1,22281:10424522,29180091 -g1,22281:12321396,29180091 -g1,22281:14218270,29180091 -k1,22281:32583029,29180091:17100176 -g1,22281:32583029,29180091 -) -(1,22281:6630773,29846269:25952256,379060,0 -k1,22281:32583028,29846269:25319964 -g1,22281:32583028,29846269 -) -(1,22281:6630773,30512447:25952256,410518,101187 -g1,22281:7579210,30512447 -g1,22281:8211502,30512447 -g1,22281:9476085,30512447 -g1,22281:12321396,30512447 -g1,22281:13269833,30512447 -g1,22281:16115144,30512447 -g1,22281:17379727,30512447 -g1,22281:18960456,30512447 -g1,22281:21173476,30512447 -g1,22281:25599516,30512447 -g1,22281:26864099,30512447 -g1,22281:28444828,30512447 -k1,22281:32583029,30512447:2557473 -g1,22281:32583029,30512447 -) -(1,22281:6630773,31178625:25952256,410518,107478 -k1,22281:7536068,31178625:273004 -k1,22281:8125219,31178625:273005 -k1,22281:10611243,31178625:273004 -k1,22281:11832684,31178625:273004 -k1,22281:14002562,31178625:273004 -k1,22281:15856295,31178625:273005 -k1,22281:16761590,31178625:273004 -k1,22281:17983031,31178625:273004 -k1,22281:22998221,31178625:273005 -k1,22281:23587371,31178625:273004 -k1,22281:25757249,31178625:273004 -k1,22281:26662544,31178625:273004 -k1,22281:28516277,31178625:273005 -k1,22281:30053864,31178625:273004 -k1,22281:32583029,31178625:0 -k1,22281:32583029,31178625:0 -) -(1,22287:6630773,31844803:25952256,404226,6290 -(1,22281:6630773,31844803:0,0,0 -g1,22281:6630773,31844803 -g1,22281:6630773,31844803 -g1,22281:6303093,31844803 -(1,22281:6303093,31844803:0,0,0 -) -g1,22281:6630773,31844803 -) -g1,22287:7579210,31844803 -g1,22287:8211502,31844803 -g1,22287:8843794,31844803 -g1,22287:11372960,31844803 -g1,22287:12005252,31844803 -g1,22287:12637544,31844803 -h1,22287:12953690,31844803:0,0,0 -k1,22287:32583030,31844803:19629340 -g1,22287:32583030,31844803 -) -(1,22287:6630773,32510981:25952256,404226,9436 -h1,22287:6630773,32510981:0,0,0 -g1,22287:7579210,32510981 -g1,22287:7895356,32510981 -g1,22287:8211502,32510981 -g1,22287:8527648,32510981 -g1,22287:10108377,32510981 -g1,22287:10424523,32510981 -g1,22287:12005252,32510981 -g1,22287:12321398,32510981 -g1,22287:13902127,32510981 -h1,22287:15166710,32510981:0,0,0 -k1,22287:32583030,32510981:17416320 -g1,22287:32583030,32510981 -) -(1,22287:6630773,33177159:25952256,404226,6290 -h1,22287:6630773,33177159:0,0,0 -g1,22287:7579210,33177159 -g1,22287:7895356,33177159 -g1,22287:8211502,33177159 -g1,22287:10108377,33177159 -g1,22287:12005252,33177159 -g1,22287:13902127,33177159 -k1,22287:13902127,33177159:0 -h1,22287:15482856,33177159:0,0,0 -k1,22287:32583028,33177159:17100172 -g1,22287:32583028,33177159 -) -(1,22287:6630773,33843337:25952256,388497,9436 -h1,22287:6630773,33843337:0,0,0 -g1,22287:7579210,33843337 -g1,22287:8211502,33843337 -g1,22287:8527648,33843337 -g1,22287:8843794,33843337 -g1,22287:9476086,33843337 -g1,22287:9792232,33843337 -g1,22287:10108378,33843337 -g1,22287:10424524,33843337 -g1,22287:12005253,33843337 -g1,22287:12321399,33843337 -g1,22287:12637545,33843337 -g1,22287:13902128,33843337 -h1,22287:14850565,33843337:0,0,0 -k1,22287:32583029,33843337:17732464 -g1,22287:32583029,33843337 -) -(1,22287:6630773,34509515:25952256,388497,9436 -h1,22287:6630773,34509515:0,0,0 -g1,22287:7579210,34509515 -g1,22287:8211502,34509515 -g1,22287:8527648,34509515 -g1,22287:10108377,34509515 -g1,22287:10424523,34509515 -g1,22287:12005252,34509515 -g1,22287:12321398,34509515 -g1,22287:12637544,34509515 -g1,22287:12953690,34509515 -g1,22287:13902127,34509515 -g1,22287:14534419,34509515 -h1,22287:14850565,34509515:0,0,0 -k1,22287:32583029,34509515:17732464 -g1,22287:32583029,34509515 -) -] -) -g1,22288:32583029,34518951 -g1,22288:6630773,34518951 -g1,22288:6630773,34518951 -g1,22288:32583029,34518951 -g1,22288:32583029,34518951 -) -h1,22288:6630773,34715559:0,0,0 -(1,22292:6630773,36081335:25952256,513147,115847 -h1,22291:6630773,36081335:983040,0,0 -k1,22291:10563011,36081335:159330 -(1,22291:10563011,36081335:0,452978,115847 -r1,22343:14086683,36081335:3523672,568825,115847 -k1,22291:10563011,36081335:-3523672 -) -(1,22291:10563011,36081335:3523672,452978,115847 -k1,22291:10563011,36081335:3277 -h1,22291:14083406,36081335:0,411205,112570 -) -k1,22291:14246013,36081335:159330 -k1,22291:16147945,36081335:159330 -k1,22291:17620617,36081335:159330 -k1,22291:20459059,36081335:159330 -k1,22291:22012339,36081335:159329 -k1,22291:23190754,36081335:159330 -k1,22291:24363271,36081335:159330 -k1,22291:27497280,36081335:159330 -k1,22291:28342772,36081335:159330 -k1,22291:29521187,36081335:159330 -k1,22291:32583029,36081335:0 -) -(1,22292:6630773,36922823:25952256,513147,126483 -k1,22291:7989296,36922823:167078 -(1,22291:7989296,36922823:0,459977,115847 -r1,22343:11512968,36922823:3523672,575824,115847 -k1,22291:7989296,36922823:-3523672 -) -(1,22291:7989296,36922823:3523672,459977,115847 -k1,22291:7989296,36922823:3277 -h1,22291:11509691,36922823:0,411205,112570 -) -k1,22291:11680047,36922823:167079 -k1,22291:13589727,36922823:167078 -k1,22291:15070148,36922823:167079 -k1,22291:16631177,36922823:167078 -k1,22291:18361945,36922823:167079 -k1,22291:20343715,36922823:167078 -k1,22291:22418547,36922823:167079 -k1,22291:24418012,36922823:167078 -k1,22291:25290258,36922823:167079 -k1,22291:28301599,36922823:167078 -k1,22291:29278048,36922823:167079 -k1,22291:32583029,36922823:0 -) -(1,22292:6630773,37764311:25952256,505283,134348 -g1,22291:7481430,37764311 -(1,22291:7481430,37764311:0,459977,115847 -r1,22343:12411950,37764311:4930520,575824,115847 -k1,22291:7481430,37764311:-4930520 -) -(1,22291:7481430,37764311:4930520,459977,115847 -k1,22291:7481430,37764311:3277 -h1,22291:12408673,37764311:0,411205,112570 -) -g1,22291:12784849,37764311 -g1,22291:16500740,37764311 -g1,22291:19139874,37764311 -g1,22291:21822918,37764311 -k1,22292:32583029,37764311:8567932 -g1,22292:32583029,37764311 -) -v1,22294:6630773,39130087:0,393216,0 -(1,22295:6630773,43062925:25952256,4326054,0 -g1,22295:6630773,43062925 -g1,22295:6303093,43062925 -r1,22343:6401397,43062925:98304,4326054,0 -g1,22295:6600626,43062925 -g1,22295:6797234,43062925 -[1,22295:6797234,43062925:25785795,4326054,0 -(1,22295:6797234,39562625:25785795,825754,196608 -(1,22294:6797234,39562625:0,825754,196608 -r1,22343:7890375,39562625:1093141,1022362,196608 -k1,22294:6797234,39562625:-1093141 -) -(1,22294:6797234,39562625:1093141,825754,196608 -) -k1,22294:8139393,39562625:249018 -k1,22294:9865611,39562625:327680 -k1,22294:11263474,39562625:249017 -k1,22294:12531577,39562625:249018 -k1,22294:15373855,39562625:249018 -(1,22294:15373855,39562625:0,452978,115847 -r1,22343:17138968,39562625:1765113,568825,115847 -k1,22294:15373855,39562625:-1765113 -) -(1,22294:15373855,39562625:1765113,452978,115847 -k1,22294:15373855,39562625:3277 -h1,22294:17135691,39562625:0,411205,112570 -) -k1,22294:17387985,39562625:249017 -k1,22294:20662800,39562625:249018 -k1,22294:21563246,39562625:249018 -k1,22294:23224564,39562625:249017 -k1,22294:24492667,39562625:249018 -k1,22294:27403102,39562625:249018 -k1,22294:28965461,39562625:249017 -k1,22294:30727705,39562625:249018 -k1,22294:32583029,39562625:0 -) -(1,22295:6797234,40404113:25785795,513147,134348 -k1,22294:9285909,40404113:278801 -k1,22294:11023541,40404113:278801 -k1,22294:12632723,40404113:278801 -k1,22294:14398536,40404113:278801 -k1,22294:15495226,40404113:278801 -k1,22294:19191730,40404113:278801 -k1,22294:21677784,40404113:278801 -k1,22294:24228063,40404113:278801 -k1,22294:26444108,40404113:278801 -k1,22294:27855371,40404113:278801 -k1,22294:29522225,40404113:278801 -k1,22294:30971499,40404113:278801 -k1,22294:32583029,40404113:0 -) -(1,22295:6797234,41245601:25785795,505283,134348 -k1,22294:8296510,41245601:168895 -k1,22294:9116834,41245601:168896 -k1,22294:12124749,41245601:168895 -k1,22294:13991683,41245601:168896 -k1,22294:15654144,41245601:168895 -k1,22294:17760284,41245601:168896 -k1,22294:18920739,41245601:168895 -k1,22294:21292300,41245601:168896 -k1,22294:22222723,41245601:168895 -k1,22294:24530714,41245601:168896 -k1,22294:25382494,41245601:168895 -k1,22294:26940753,41245601:168896 -k1,22294:28778195,41245601:168895 -k1,22294:31955194,41245601:168896 -k1,22294:32583029,41245601:0 -) -(1,22295:6797234,42087089:25785795,505283,134348 -k1,22294:8230305,42087089:229830 -k1,22294:10000885,42087089:229829 -k1,22294:10916877,42087089:229830 -k1,22294:13705888,42087089:229830 -k1,22294:15348018,42087089:229829 -k1,22294:16967211,42087089:229830 -k1,22294:18188601,42087089:229830 -k1,22294:19484702,42087089:229830 -k1,22294:21843796,42087089:229829 -k1,22294:26271862,42087089:229830 -k1,22294:27263220,42087089:229830 -k1,22294:29099992,42087089:229829 -k1,22294:30012707,42087089:229830 -k1,22294:32583029,42087089:0 -) -(1,22295:6797234,42928577:25785795,513147,134348 -g1,22294:10205761,42928577 -g1,22294:13181095,42928577 -g1,22294:15202225,42928577 -g1,22294:16420539,42928577 -g1,22294:19398495,42928577 -g1,22294:21739441,42928577 -g1,22294:22886321,42928577 -g1,22294:25649318,42928577 -g1,22294:27237910,42928577 -k1,22295:32583029,42928577:3160804 -g1,22295:32583029,42928577 -) -] -g1,22295:32583029,43062925 -) -h1,22295:6630773,43062925:0,0,0 -v1,22298:6630773,44428701:0,393216,0 -] -(1,22343:32583029,45706769:0,0,0 -g1,22343:32583029,45706769 -) -) -] -(1,22343:6630773,47279633:25952256,0,0 -h1,22343:6630773,47279633:25952256,0,0 -) -] -(1,22343:4262630,4025873:0,0,0 -[1,22343:-473656,4025873:0,0,0 -(1,22343:-473656,-710413:0,0,0 -(1,22343:-473656,-710413:0,0,0 -g1,22343:-473656,-710413 -) -g1,22343:-473656,-710413 -) -] -) -] -!23688 -}404 -!12 -{405 -[1,22343:4262630,47279633:28320399,43253760,0 -(1,22343:4262630,4025873:0,0,0 -[1,22343:-473656,4025873:0,0,0 -(1,22343:-473656,-710413:0,0,0 -(1,22343:-473656,-644877:0,0,0 -k1,22343:-473656,-644877:-65536 ) -(1,22343:-473656,4736287:0,0,0 -k1,22343:-473656,4736287:5209943 ) -g1,22343:-473656,-710413 ) ] +[1,22556:3078558,4812305:0,0,0 +(1,22556:3078558,2439708:0,1703936,0 +g1,22556:29030814,2439708 +g1,22556:36135244,2439708 +(1,21670:36135244,2439708:1720320,1703936,0 +(1,21670:36135244,2439708:16384,1703936,0 +[1,21670:36135244,2439708:25952256,1703936,0 +(1,21670:36135244,1915420:25952256,1179648,0 +(1,21670:36135244,1915420:16384,1179648,0 +r1,22556:36151628,1915420:16384,1179648,0 ) -[1,22343:6630773,47279633:25952256,43253760,0 -[1,22343:6630773,4812305:25952256,786432,0 -(1,22343:6630773,4812305:25952256,505283,134348 -(1,22343:6630773,4812305:25952256,505283,134348 -g1,22343:3078558,4812305 -[1,22343:3078558,4812305:0,0,0 -(1,22343:3078558,2439708:0,1703936,0 -k1,22343:1358238,2439708:-1720320 -(1,21457:1358238,2439708:1720320,1703936,0 -(1,21457:1358238,2439708:1179648,16384,0 -r1,22343:2537886,2439708:1179648,16384,0 -) -g1,21457:3062174,2439708 -(1,21457:3062174,2439708:16384,1703936,0 -[1,21457:3062174,2439708:25952256,1703936,0 -(1,21457:3062174,1915420:25952256,1179648,0 -(1,21457:3062174,1915420:16384,1179648,0 -r1,22343:3078558,1915420:16384,1179648,0 -) -k1,21457:29014430,1915420:25935872 -g1,21457:29014430,1915420 +k1,21670:62087500,1915420:25935872 +g1,21670:62087500,1915420 ) ] ) +g1,21670:36675916,2439708 +(1,21670:36675916,2439708:1179648,16384,0 +r1,22556:37855564,2439708:1179648,16384,0 ) ) -] -[1,22343:3078558,4812305:0,0,0 -(1,22343:3078558,2439708:0,1703936,0 -g1,22343:29030814,2439708 -g1,22343:36135244,2439708 -(1,21457:36135244,2439708:1720320,1703936,0 -(1,21457:36135244,2439708:16384,1703936,0 -[1,21457:36135244,2439708:25952256,1703936,0 -(1,21457:36135244,1915420:25952256,1179648,0 -(1,21457:36135244,1915420:16384,1179648,0 -r1,22343:36151628,1915420:16384,1179648,0 -) -k1,21457:62087500,1915420:25935872 -g1,21457:62087500,1915420 +k1,22556:3078556,2439708:-34777008 ) ] +[1,22556:3078558,4812305:0,0,0 +(1,22556:3078558,49800853:0,16384,2228224 +k1,22556:1358238,49800853:-1720320 +(1,21670:1358238,49800853:1720320,16384,2228224 +(1,21670:1358238,49800853:1179648,16384,0 +r1,22556:2537886,49800853:1179648,16384,0 ) -g1,21457:36675916,2439708 -(1,21457:36675916,2439708:1179648,16384,0 -r1,22343:37855564,2439708:1179648,16384,0 -) +g1,21670:3062174,49800853 +(1,21670:3062174,52029077:16384,1703936,0 +[1,21670:3062174,52029077:25952256,1703936,0 +(1,21670:3062174,51504789:25952256,1179648,0 +(1,21670:3062174,51504789:16384,1179648,0 +r1,22556:3078558,51504789:16384,1179648,0 ) -k1,22343:3078556,2439708:-34777008 +k1,21670:29014430,51504789:25935872 +g1,21670:29014430,51504789 ) ] -[1,22343:3078558,4812305:0,0,0 -(1,22343:3078558,49800853:0,16384,2228224 -k1,22343:1358238,49800853:-1720320 -(1,21457:1358238,49800853:1720320,16384,2228224 -(1,21457:1358238,49800853:1179648,16384,0 -r1,22343:2537886,49800853:1179648,16384,0 ) -g1,21457:3062174,49800853 -(1,21457:3062174,52029077:16384,1703936,0 -[1,21457:3062174,52029077:25952256,1703936,0 -(1,21457:3062174,51504789:25952256,1179648,0 -(1,21457:3062174,51504789:16384,1179648,0 -r1,22343:3078558,51504789:16384,1179648,0 -) -k1,21457:29014430,51504789:25935872 -g1,21457:29014430,51504789 +) +) +] +[1,22556:3078558,4812305:0,0,0 +(1,22556:3078558,49800853:0,16384,2228224 +g1,22556:29030814,49800853 +g1,22556:36135244,49800853 +(1,21670:36135244,49800853:1720320,16384,2228224 +(1,21670:36135244,52029077:16384,1703936,0 +[1,21670:36135244,52029077:25952256,1703936,0 +(1,21670:36135244,51504789:25952256,1179648,0 +(1,21670:36135244,51504789:16384,1179648,0 +r1,22556:36151628,51504789:16384,1179648,0 +) +k1,21670:62087500,51504789:25935872 +g1,21670:62087500,51504789 +) +] +) +g1,21670:36675916,49800853 +(1,21670:36675916,49800853:1179648,16384,0 +r1,22556:37855564,49800853:1179648,16384,0 +) +) +k1,22556:3078556,49800853:-34777008 +) +] +g1,22556:6630773,4812305 +g1,22556:6630773,4812305 +g1,22556:9744388,4812305 +g1,22556:11175694,4812305 +k1,22556:31387652,4812305:20211958 +) +) +] +[1,22556:6630773,45706769:25952256,40108032,0 +(1,22556:6630773,45706769:25952256,40108032,0 +(1,22556:6630773,45706769:0,0,0 +g1,22556:6630773,45706769 +) +[1,22556:6630773,45706769:25952256,40108032,0 +v1,22511:6630773,6254097:0,393216,0 +(1,22556:6630773,45706769:25952256,39845888,0 +g1,22556:6630773,45706769 +g1,22556:6237557,45706769 +r1,22556:6368629,45706769:131072,39845888,0 +g1,22556:6567858,45706769 +g1,22556:6764466,45706769 +[1,22556:6764466,45706769:25818563,39845888,0 +(1,22512:6764466,6562395:25818563,701514,196608 +(1,22511:6764466,6562395:0,701514,196608 +r1,22556:8010564,6562395:1246098,898122,196608 +k1,22511:6764466,6562395:-1246098 +) +(1,22511:6764466,6562395:1246098,701514,196608 +) +k1,22511:8234585,6562395:224021 +k1,22511:8562265,6562395:327680 +k1,22511:9982973,6562395:224021 +k1,22511:13232791,6562395:224021 +k1,22511:15024434,6562395:224022 +k1,22511:16197416,6562395:224021 +k1,22511:19001589,6562395:224021 +k1,22511:20936754,6562395:224021 +k1,22511:22573076,6562395:224021 +k1,22511:23816182,6562395:224021 +k1,22511:25923052,6562395:224021 +k1,22511:27130114,6562395:224022 +k1,22511:28040297,6562395:224021 +k1,22511:29490497,6562395:224021 +k1,22511:31757275,6562395:224021 +k1,22512:32583029,6562395:0 +) +(1,22512:6764466,7427475:25818563,513147,134348 +k1,22511:9940694,7427475:284124 +k1,22511:10876245,7427475:284123 +k1,22511:12957366,7427475:284124 +k1,22511:14260575,7427475:284124 +k1,22511:16099867,7427475:284123 +k1,22511:17043283,7427475:284124 +k1,22511:18346492,7427475:284124 +k1,22511:21343807,7427475:284124 +k1,22511:22310815,7427475:284123 +k1,22511:24103578,7427475:284124 +k1,22511:27751665,7427475:284124 +k1,22511:29416632,7427475:284123 +k1,22511:30232253,7427475:284124 +k1,22511:32583029,7427475:0 +) +(1,22512:6764466,8292555:25818563,513147,126483 +k1,22511:8123917,8292555:287282 +k1,22511:9862165,8292555:287281 +k1,22511:11097098,8292555:287282 +k1,22511:12610559,8292555:287282 +k1,22511:14211183,8292555:287282 +k1,22511:15892415,8292555:287281 +k1,22511:17931474,8292555:287282 +k1,22511:19891235,8292555:287282 +k1,22511:21375203,8292555:287281 +k1,22511:24688282,8292555:287282 +k1,22511:26543185,8292555:287282 +k1,22511:28853563,8292555:287282 +k1,22511:30553145,8292555:287281 +k1,22511:31601955,8292555:287282 +k1,22512:32583029,8292555:0 +) +(1,22512:6764466,9157635:25818563,513147,134348 +k1,22511:8446214,9157635:184250 +k1,22511:10006064,9157635:184249 +k1,22511:11209399,9157635:184250 +k1,22511:12465817,9157635:184249 +k1,22511:14243903,9157635:184250 +k1,22511:15926960,9157635:184249 +k1,22511:17809248,9157635:184250 +k1,22511:20780744,9157635:184250 +k1,22511:21984078,9157635:184249 +k1,22511:24348711,9157635:184250 +k1,22511:25724405,9157635:184249 +k1,22511:27637495,9157635:184250 +k1,22511:29013189,9157635:184249 +k1,22511:30631367,9157635:184250 +k1,22511:32583029,9157635:0 +) +(1,22512:6764466,10022715:25818563,513147,134348 +k1,22511:9229329,10022715:256300 +k1,22511:10897930,10022715:256300 +k1,22511:12173316,10022715:256301 +k1,22511:14312465,10022715:256300 +k1,22511:15882107,10022715:256300 +k1,22511:19179933,10022715:256300 +k1,22511:20720740,10022715:256301 +k1,22511:21996125,10022715:256300 +k1,22511:24817504,10022715:256300 +k1,22511:28369611,10022715:256301 +k1,22511:29911727,10022715:256300 +k1,22511:31931601,10022715:256300 +k1,22511:32583029,10022715:0 +) +(1,22512:6764466,10887795:25818563,513147,134348 +k1,22511:7997198,10887795:213647 +k1,22511:11428664,10887795:213648 +k1,22511:13141119,10887795:213647 +k1,22511:14014058,10887795:213647 +k1,22511:15246791,10887795:213648 +k1,22511:16617148,10887795:213647 +k1,22511:18211639,10887795:213647 +k1,22511:18956784,10887795:213648 +k1,22511:20820628,10887795:213647 +k1,22511:23586902,10887795:213647 +k1,22511:24416587,10887795:213647 +k1,22511:25649320,10887795:213648 +k1,22511:27230048,10887795:213647 +k1,22511:28102987,10887795:213647 +k1,22511:29810201,10887795:213648 +k1,22511:31510860,10887795:213647 +k1,22511:32583029,10887795:0 +) +(1,22512:6764466,11752875:25818563,513147,134348 +k1,22511:9965735,11752875:178749 +k1,22511:11891675,11752875:178750 +k1,22511:12698259,11752875:178749 +k1,22511:15681950,11752875:178750 +k1,22511:16879784,11752875:178749 +k1,22511:20084331,11752875:178750 +k1,22511:21830701,11752875:178749 +k1,22511:22958412,11752875:178750 +k1,22511:25717313,11752875:178749 +k1,22511:27607207,11752875:178750 +k1,22511:28777516,11752875:178749 +k1,22511:30739501,11752875:178750 +k1,22511:32583029,11752875:0 +) +(1,22512:6764466,12617955:25818563,513147,134348 +k1,22511:8390464,12617955:183551 +k1,22511:10317928,12617955:183551 +k1,22511:12069101,12617955:183552 +k1,22511:14832804,12617955:183551 +k1,22511:17039451,12617955:183551 +k1,22511:17835764,12617955:183551 +k1,22511:20421866,12617955:183552 +k1,22511:21918759,12617955:183551 +k1,22511:23496261,12617955:183551 +k1,22511:25431589,12617955:183551 +k1,22511:27349224,12617955:183552 +k1,22511:28422754,12617955:183551 +k1,22511:31526589,12617955:183551 +k1,22511:32583029,12617955:0 +) +(1,22512:6764466,13483035:25818563,505283,7863 +k1,22512:32583029,13483035:24476386 +g1,22512:32583029,13483035 +) +(1,22514:6764466,17272907:25818563,513147,126483 +h1,22513:6764466,17272907:983040,0,0 +k1,22513:8660368,17272907:285027 +k1,22513:10978977,17272907:285027 +k1,22513:13928043,17272907:285027 +k1,22513:14872362,17272907:285027 +k1,22513:17354155,17272907:285027 +k1,22513:17995042,17272907:285027 +k1,22513:20414577,17272907:285027 +k1,22513:22777095,17272907:285027 +k1,22513:23713550,17272907:285027 +k1,22513:26807450,17272907:285027 +k1,22513:29356746,17272907:285027 +k1,22513:31375856,17272907:285027 +k1,22513:32583029,17272907:0 +) +(1,22514:6764466,18137987:25818563,513147,134348 +k1,22513:8652558,18137987:190054 +k1,22513:11658695,18137987:190055 +k1,22513:12840309,18137987:190054 +k1,22513:13646401,18137987:190054 +k1,22513:17098183,18137987:190055 +k1,22513:19027563,18137987:190054 +k1,22513:20409062,18137987:190054 +k1,22513:21618202,18137987:190055 +k1,22513:23212037,18137987:190054 +k1,22513:25547084,18137987:190054 +k1,22513:28515210,18137987:190055 +k1,22513:31966991,18137987:190054 +k1,22513:32583029,18137987:0 +) +(1,22514:6764466,19003067:25818563,513147,134348 +k1,22513:7993512,19003067:209961 +k1,22513:9702281,19003067:209961 +k1,22513:11780673,19003067:209961 +k1,22513:13734547,19003067:209961 +k1,22513:15457734,19003067:209961 +k1,22513:16615346,19003067:209961 +k1,22513:19786224,19003067:209961 +k1,22513:21068354,19003067:209961 +k1,22513:22481555,19003067:209960 +k1,22513:24058597,19003067:209961 +k1,22513:26243813,19003067:209961 +k1,22513:27105202,19003067:209961 +k1,22513:28236599,19003067:209961 +k1,22513:29059322,19003067:209961 +k1,22513:30288368,19003067:209961 +k1,22513:31923737,19003067:209961 +k1,22513:32583029,19003067:0 +) +(1,22514:6764466,19868147:25818563,513147,134348 +k1,22513:9234344,19868147:212163 +k1,22513:12429050,19868147:212163 +k1,22513:15394379,19868147:212162 +k1,22513:16094117,19868147:212150 +k1,22513:18103277,19868147:212163 +k1,22513:20170109,19868147:212163 +k1,22513:21191642,19868147:212163 +k1,22513:22422889,19868147:212162 +k1,22513:23707221,19868147:212163 +k1,22513:25513220,19868147:212163 +k1,22513:27224191,19868147:212163 +k1,22513:28095646,19868147:212163 +k1,22513:28663668,19868147:212162 +k1,22513:30102010,19868147:212163 +k1,22513:31297213,19868147:212163 +k1,22513:32583029,19868147:0 +) +(1,22514:6764466,20733227:25818563,505283,122846 +k1,22513:9044865,20733227:212083 +k1,22513:10541455,20733227:212084 +k1,22513:11369576,20733227:212083 +k1,22513:13279042,20733227:212084 +k1,22513:15501770,20733227:212083 +k1,22513:16329891,20733227:212083 +k1,22513:18040783,20733227:212084 +k1,22513:20121297,20733227:212083 +(1,22513:20121297,20733227:0,414482,122846 +r1,22556:23293257,20733227:3171960,537328,122846 +k1,22513:20121297,20733227:-3171960 +) +(1,22513:20121297,20733227:3171960,414482,122846 +k1,22513:20121297,20733227:3277 +h1,22513:23289980,20733227:0,411205,112570 +) +k1,22513:23505340,20733227:212083 +k1,22513:25216232,20733227:212084 +k1,22513:27598867,20733227:212083 +k1,22513:28558717,20733227:212084 +k1,22513:31931601,20733227:212083 +k1,22513:32583029,20733227:0 +) +(1,22514:6764466,21598307:25818563,513147,134348 +k1,22513:9744934,21598307:186668 +k1,22513:12258786,21598307:186669 +k1,22513:13104746,21598307:186668 +k1,22513:16292309,21598307:186669 +k1,22513:16834837,21598307:186668 +k1,22513:19404395,21598307:186669 +k1,22513:20250355,21598307:186668 +k1,22513:23411703,21598307:186669 +k1,22513:25794482,21598307:186668 +k1,22513:26667313,21598307:186669 +k1,22513:29879778,21598307:186668 +k1,22513:31634068,21598307:186669 +k1,22513:32583029,21598307:0 +) +(1,22514:6764466,22463387:25818563,505283,134348 +k1,22513:9552199,22463387:207581 +k1,22513:11644594,22463387:207581 +k1,22513:13360814,22463387:207581 +k1,22513:15579039,22463387:207580 +k1,22513:16778180,22463387:207581 +k1,22513:19704850,22463387:207581 +k1,22513:20673959,22463387:207581 +k1,22513:23501669,22463387:207581 +(1,22513:23501669,22463387:0,414482,115847 +r1,22556:24211647,22463387:709978,530329,115847 +k1,22513:23501669,22463387:-709978 +) +(1,22513:23501669,22463387:709978,414482,115847 +k1,22513:23501669,22463387:3277 +h1,22513:24208370,22463387:0,411205,112570 +) +k1,22513:24419228,22463387:207581 +k1,22513:26637453,22463387:207580 +k1,22513:28238985,22463387:207581 +k1,22513:28802426,22463387:207581 +k1,22513:31753999,22463387:207581 +k1,22513:32583029,22463387:0 +) +(1,22514:6764466,23328467:25818563,513147,126483 +k1,22513:11001204,23328467:203652 +k1,22513:12408096,23328467:203651 +k1,22513:13480100,23328467:203652 +k1,22513:14816213,23328467:203651 +k1,22513:18334021,23328467:203652 +k1,22513:20689875,23328467:203652 +(1,22513:20689875,23328467:0,414482,122846 +r1,22556:23861835,23328467:3171960,537328,122846 +k1,22513:20689875,23328467:-3171960 +) +(1,22513:20689875,23328467:3171960,414482,122846 +k1,22513:20689875,23328467:3277 +h1,22513:23858558,23328467:0,411205,112570 +) +k1,22513:24065486,23328467:203651 +k1,22513:25836759,23328467:203652 +k1,22513:26828808,23328467:203651 +k1,22513:29298040,23328467:203652 +k1,22513:30226519,23328467:203651 +k1,22513:31714677,23328467:203652 +k1,22513:32583029,23328467:0 +) +(1,22514:6764466,24193547:25818563,513147,134348 +g1,22513:8067977,24193547 +g1,22513:9359691,24193547 +g1,22513:10329623,24193547 +g1,22513:11476503,24193547 +g1,22513:12694817,24193547 +g1,22513:15555463,24193547 +g1,22513:16110552,24193547 +g1,22513:17292821,24193547 +g1,22513:18867651,24193547 +g1,22513:19422740,24193547 +g1,22513:20755087,24193547 +g1,22513:22453124,24193547 +g1,22513:23268391,24193547 +k1,22514:32583029,24193547:7127702 +g1,22514:32583029,24193547 +) +v1,22518:6764466,27803193:0,393216,0 +(1,22533:6764466,39660578:25818563,12250601,196608 +g1,22533:6764466,39660578 +g1,22533:6764466,39660578 +g1,22533:6567858,39660578 +(1,22533:6567858,39660578:0,12250601,196608 +r1,22556:32779637,39660578:26211779,12447209,196608 +k1,22533:6567857,39660578:-26211780 +) +(1,22533:6567858,39660578:26211779,12250601,196608 +[1,22533:6764466,39660578:25818563,12053993,0 +(1,22520:6764466,28037630:25818563,431045,112852 +(1,22519:6764466,28037630:0,0,0 +g1,22519:6764466,28037630 +g1,22519:6764466,28037630 +g1,22519:6436786,28037630 +(1,22519:6436786,28037630:0,0,0 +) +g1,22519:6764466,28037630 +) +k1,22520:6764466,28037630:0 +g1,22520:12075729,28037630 +g1,22520:12739637,28037630 +k1,22520:12739637,28037630:0 +h1,22520:23694116,28037630:0,0,0 +k1,22520:32583029,28037630:8888913 +g1,22520:32583029,28037630 +) +(1,22524:6764466,29377845:25818563,398014,0 +k1,22524:32583030,29377845:25154656 +g1,22524:32583030,29377845 +) +(1,22524:6764466,30062700:25818563,431045,106246 +k1,22524:7741867,30062700:313493 +k1,22524:8719268,30062700:313493 +k1,22524:11024485,30062700:313493 +k1,22524:15653379,30062700:313493 +k1,22524:32583029,30062700:0 +) +(1,22524:6764466,30747555:25818563,185520,0 +k1,22524:32583028,30747555:24158792 +g1,22524:32583028,30747555 +) +(1,22524:6764466,31432410:25818563,424439,79822 +g1,22524:7760328,31432410 +k1,22524:32583030,31432410:23162932 +g1,22524:32583030,31432410 +) +(1,22524:6764466,32117265:25818563,424439,86428 +g1,22524:7760328,32117265 +g1,22524:8092282,32117265 +g1,22524:8424236,32117265 +g1,22524:10084006,32117265 +g1,22524:10747914,32117265 +k1,22524:32583029,32117265:16523852 +g1,22524:32583029,32117265 +) +(1,22524:6764466,32802120:25818563,424439,86428 +g1,22524:7760328,32802120 +g1,22524:8092282,32802120 +g1,22524:8424236,32802120 +g1,22524:10084006,32802120 +g1,22524:10747914,32802120 +k1,22524:32583029,32802120:17519714 +g1,22524:32583029,32802120 +) +(1,22524:6764466,33486975:25818563,424439,86428 +g1,22524:7760328,33486975 +g1,22524:8092282,33486975 +g1,22524:8424236,33486975 +g1,22524:10084006,33486975 +g1,22524:10747914,33486975 +k1,22524:32583029,33486975:17519714 +g1,22524:32583029,33486975 +) +(1,22524:6764466,34171830:25818563,424439,79822 +g1,22524:7760328,34171830 +g1,22524:8092282,34171830 +g1,22524:8424236,34171830 +g1,22524:10084006,34171830 +g1,22524:10747914,34171830 +k1,22524:32583029,34171830:16855806 +g1,22524:32583029,34171830 +) +(1,22524:6764466,34856685:25818563,424439,79822 +g1,22524:7760328,34856685 +k1,22524:32583030,34856685:24490748 +g1,22524:32583030,34856685 +) +(1,22532:6764466,35541540:25818563,424439,6605 +(1,22524:6764466,35541540:0,0,0 +g1,22524:6764466,35541540 +g1,22524:6764466,35541540 +g1,22524:6436786,35541540 +(1,22524:6436786,35541540:0,0,0 +) +g1,22524:6764466,35541540 +) +g1,22532:7760328,35541540 +g1,22532:8424236,35541540 +g1,22532:9088144,35541540 +g1,22532:11743776,35541540 +g1,22532:12407684,35541540 +g1,22532:13071592,35541540 +h1,22532:13403546,35541540:0,0,0 +k1,22532:32583030,35541540:19179484 +g1,22532:32583030,35541540 +) +(1,22532:6764466,36226395:25818563,424439,9908 +h1,22532:6764466,36226395:0,0,0 +g1,22532:7760328,36226395 +g1,22532:8092282,36226395 +g1,22532:8424236,36226395 +g1,22532:10084006,36226395 +g1,22532:10415960,36226395 +g1,22532:10747914,36226395 +g1,22532:12407684,36226395 +g1,22532:12739638,36226395 +g1,22532:14399408,36226395 +h1,22532:15727224,36226395:0,0,0 +k1,22532:32583028,36226395:16855804 +g1,22532:32583028,36226395 +) +(1,22532:6764466,36911250:25818563,424439,6605 +h1,22532:6764466,36911250:0,0,0 +g1,22532:7760328,36911250 +g1,22532:8092282,36911250 +g1,22532:8424236,36911250 +g1,22532:10415960,36911250 +g1,22532:12407684,36911250 +g1,22532:14399408,36911250 +k1,22532:14399408,36911250:0 +h1,22532:16059178,36911250:0,0,0 +k1,22532:32583029,36911250:16523851 +g1,22532:32583029,36911250 +) +(1,22532:6764466,37596105:25818563,407923,9908 +h1,22532:6764466,37596105:0,0,0 +g1,22532:7760328,37596105 +g1,22532:8424236,37596105 +g1,22532:9752052,37596105 +g1,22532:10084006,37596105 +g1,22532:10415960,37596105 +g1,22532:10747914,37596105 +g1,22532:12407684,37596105 +g1,22532:12739638,37596105 +g1,22532:13071592,37596105 +g1,22532:14399408,37596105 +h1,22532:15395270,37596105:0,0,0 +k1,22532:32583030,37596105:17187760 +g1,22532:32583030,37596105 +) +(1,22532:6764466,38280960:25818563,407923,9908 +h1,22532:6764466,38280960:0,0,0 +g1,22532:7760328,38280960 +g1,22532:8424236,38280960 +g1,22532:9752052,38280960 +g1,22532:10084006,38280960 +g1,22532:10415960,38280960 +g1,22532:10747914,38280960 +g1,22532:12407684,38280960 +g1,22532:12739638,38280960 +g1,22532:13071592,38280960 +g1,22532:13403546,38280960 +g1,22532:14399408,38280960 +h1,22532:15395270,38280960:0,0,0 +k1,22532:32583030,38280960:17187760 +g1,22532:32583030,38280960 +) +(1,22532:6764466,38965815:25818563,407923,9908 +h1,22532:6764466,38965815:0,0,0 +g1,22532:7760328,38965815 +g1,22532:8424236,38965815 +g1,22532:10084006,38965815 +g1,22532:10415960,38965815 +g1,22532:10747914,38965815 +g1,22532:12407684,38965815 +g1,22532:12739638,38965815 +g1,22532:13071592,38965815 +g1,22532:13403546,38965815 +g1,22532:14399408,38965815 +h1,22532:15395270,38965815:0,0,0 +k1,22532:32583030,38965815:17187760 +g1,22532:32583030,38965815 +) +(1,22532:6764466,39650670:25818563,424439,9908 +h1,22532:6764466,39650670:0,0,0 +g1,22532:7760328,39650670 +g1,22532:8424236,39650670 +g1,22532:9088144,39650670 +g1,22532:9420098,39650670 +g1,22532:9752052,39650670 +g1,22532:10084006,39650670 +g1,22532:10415960,39650670 +g1,22532:10747914,39650670 +g1,22532:11743776,39650670 +g1,22532:12075730,39650670 +g1,22532:12407684,39650670 +g1,22532:12739638,39650670 +g1,22532:14399408,39650670 +h1,22532:15395270,39650670:0,0,0 +k1,22532:32583030,39650670:17187760 +g1,22532:32583030,39650670 +) +] +) +g1,22533:32583029,39660578 +g1,22533:6764466,39660578 +g1,22533:6764466,39660578 +g1,22533:32583029,39660578 +g1,22533:32583029,39660578 +) +h1,22533:6764466,39857186:0,0,0 +] +g1,22556:32583029,45706769 +) +] +(1,22556:32583029,45706769:0,0,0 +g1,22556:32583029,45706769 +) +) +] +(1,22556:6630773,47279633:25952256,0,0 +h1,22556:6630773,47279633:25952256,0,0 +) +] +(1,22556:4262630,4025873:0,0,0 +[1,22556:-473656,4025873:0,0,0 +(1,22556:-473656,-710413:0,0,0 +(1,22556:-473656,-710413:0,0,0 +g1,22556:-473656,-710413 +) +g1,22556:-473656,-710413 +) +] ) ] -) -) -) -] -[1,22343:3078558,4812305:0,0,0 -(1,22343:3078558,49800853:0,16384,2228224 -g1,22343:29030814,49800853 -g1,22343:36135244,49800853 -(1,21457:36135244,49800853:1720320,16384,2228224 -(1,21457:36135244,52029077:16384,1703936,0 -[1,21457:36135244,52029077:25952256,1703936,0 -(1,21457:36135244,51504789:25952256,1179648,0 -(1,21457:36135244,51504789:16384,1179648,0 -r1,22343:36151628,51504789:16384,1179648,0 -) -k1,21457:62087500,51504789:25935872 -g1,21457:62087500,51504789 -) -] -) -g1,21457:36675916,49800853 -(1,21457:36675916,49800853:1179648,16384,0 -r1,22343:37855564,49800853:1179648,16384,0 -) -) -k1,22343:3078556,49800853:-34777008 -) -] -g1,22343:6630773,4812305 -k1,22343:21078841,4812305:13252691 -g1,22343:22701512,4812305 -g1,22343:23350318,4812305 -g1,22343:24759997,4812305 -g1,22343:28372341,4812305 -g1,22343:30105768,4812305 -) -) -] -[1,22343:6630773,45706769:25952256,40108032,0 -(1,22343:6630773,45706769:25952256,40108032,0 -(1,22343:6630773,45706769:0,0,0 -g1,22343:6630773,45706769 -) -[1,22343:6630773,45706769:25952256,40108032,0 -v1,22343:6630773,6254097:0,393216,0 -(1,22343:6630773,45706769:25952256,39845888,0 -g1,22343:6630773,45706769 -g1,22343:6303093,45706769 -r1,22343:6401397,45706769:98304,39845888,0 -g1,22343:6600626,45706769 -g1,22343:6797234,45706769 -[1,22343:6797234,45706769:25785795,39845888,0 -(1,22299:6797234,6616170:25785795,755289,196608 -(1,22298:6797234,6616170:0,755289,196608 -r1,22343:8134168,6616170:1336934,951897,196608 -k1,22298:6797234,6616170:-1336934 -) -(1,22298:6797234,6616170:1336934,755289,196608 -) -k1,22298:8349360,6616170:215192 -k1,22298:8677040,6616170:327680 -k1,22298:10088920,6616170:215193 -k1,22298:13329909,6616170:215192 -k1,22298:15112722,6616170:215192 -k1,22298:16276875,6616170:215192 -k1,22298:19072220,6616170:215193 -k1,22298:20998556,6616170:215192 -k1,22298:22626049,6616170:215192 -k1,22298:23860327,6616170:215193 -k1,22298:25958368,6616170:215192 -k1,22298:27156600,6616170:215192 -k1,22298:28057954,6616170:215192 -k1,22298:29499326,6616170:215193 -k1,22298:31757275,6616170:215192 -k1,22299:32583029,6616170:0 -) -(1,22299:6797234,7457658:25785795,513147,134348 -k1,22298:9970941,7457658:281603 -k1,22298:10903972,7457658:281603 -k1,22298:12982572,7457658:281603 -k1,22298:14283260,7457658:281603 -k1,22298:16120032,7457658:281603 -k1,22298:17060927,7457658:281603 -k1,22298:18361616,7457658:281604 -k1,22298:21356410,7457658:281603 -k1,22298:22320898,7457658:281603 -k1,22298:24111140,7457658:281603 -k1,22298:27756706,7457658:281603 -k1,22298:29419153,7457658:281603 -k1,22298:30232253,7457658:281603 -k1,22298:32583029,7457658:0 -) -(1,22299:6797234,8299146:25785795,513147,126483 -k1,22298:8154344,8299146:284941 -k1,22298:9890252,8299146:284941 -k1,22298:11122844,8299146:284941 -k1,22298:12633965,8299146:284942 -k1,22298:14232248,8299146:284941 -k1,22298:15911140,8299146:284941 -k1,22298:17947858,8299146:284941 -k1,22298:19905278,8299146:284941 -k1,22298:21386906,8299146:284941 -k1,22298:24697644,8299146:284941 -k1,22298:26550207,8299146:284942 -k1,22298:28858244,8299146:284941 -k1,22298:30555486,8299146:284941 -k1,22298:31601955,8299146:284941 -k1,22299:32583029,8299146:0 -) -(1,22299:6797234,9140634:25785795,513147,134348 -k1,22298:8476641,9140634:181909 -k1,22298:10034151,9140634:181909 -k1,22298:11235145,9140634:181909 -k1,22298:12489223,9140634:181909 -k1,22298:14264968,9140634:181909 -k1,22298:15945685,9140634:181909 -k1,22298:17825632,9140634:181909 -k1,22298:20794787,9140634:181909 -k1,22298:21995781,9140634:181909 -k1,22298:24358073,9140634:181909 -k1,22298:25731427,9140634:181909 -k1,22298:27642176,9140634:181909 -k1,22298:29015530,9140634:181909 -k1,22298:30631367,9140634:181909 -k1,22298:32583029,9140634:0 -) -(1,22299:6797234,9982122:25785795,513147,134348 -k1,22298:9259367,9982122:253570 -k1,22298:10925237,9982122:253569 -k1,22298:12197892,9982122:253570 -k1,22298:14334310,9982122:253569 -k1,22298:15901222,9982122:253570 -k1,22298:19196318,9982122:253570 -k1,22298:20734393,9982122:253569 -k1,22298:22007048,9982122:253570 -k1,22298:24825696,9982122:253569 -k1,22298:28375072,9982122:253570 -k1,22298:29914457,9982122:253569 -k1,22298:31931601,9982122:253570 -k1,22298:32583029,9982122:0 -) -(1,22299:6797234,10823610:25785795,513147,134348 -k1,22298:8027918,10823610:211599 -k1,22298:11457336,10823610:211600 -k1,22298:13167743,10823610:211599 -k1,22298:14038634,10823610:211599 -k1,22298:15269319,10823610:211600 -k1,22298:16637628,10823610:211599 -k1,22298:18230071,10823610:211599 -k1,22298:18973168,10823610:211600 -k1,22298:20834964,10823610:211599 -k1,22298:23599190,10823610:211599 -k1,22298:24426827,10823610:211599 -k1,22298:25657512,10823610:211600 -k1,22298:27236192,10823610:211599 -k1,22298:28107083,10823610:211599 -k1,22298:29812249,10823610:211600 -k1,22298:31510860,10823610:211599 -k1,22298:32583029,10823610:0 -) -(1,22299:6797234,11665098:25785795,513147,134348 -k1,22298:9995773,11665098:176019 -k1,22298:11918982,11665098:176019 -k1,22298:12722835,11665098:176018 -k1,22298:15703795,11665098:176019 -k1,22298:16898899,11665098:176019 -k1,22298:20100715,11665098:176019 -k1,22298:21844355,11665098:176019 -k1,22298:22969335,11665098:176019 -k1,22298:25725505,11665098:176018 -k1,22298:27612668,11665098:176019 -k1,22298:28780247,11665098:176019 -k1,22298:30739501,11665098:176019 -k1,22298:32583029,11665098:0 -) -(1,22299:6797234,12506586:25785795,513147,134348 -k1,22298:8420712,12506586:181031 -k1,22298:10345655,12506586:181030 -k1,22298:12094307,12506586:181031 -k1,22298:14855489,12506586:181030 -k1,22298:17059616,12506586:181031 -k1,22298:17853409,12506586:181031 -k1,22298:20436989,12506586:181030 -k1,22298:21931362,12506586:181031 -k1,22298:23506344,12506586:181031 -k1,22298:25439151,12506586:181030 -k1,22298:27354265,12506586:181031 -k1,22298:28425274,12506586:181030 -k1,22298:31526589,12506586:181031 -k1,22298:32583029,12506586:0 -) -(1,22299:6797234,13348074:25785795,505283,7863 -k1,22299:32583029,13348074:24443618 -g1,22299:32583029,13348074 -) -(1,22301:6797234,15734148:25785795,513147,126483 -h1,22300:6797234,15734148:983040,0,0 -k1,22300:8690405,15734148:282296 -k1,22300:11006284,15734148:282297 -k1,22300:13952619,15734148:282296 -k1,22300:14894207,15734148:282296 -k1,22300:17373270,15734148:282297 -k1,22300:18011426,15734148:282296 -k1,22300:20428230,15734148:282296 -k1,22300:22788018,15734148:282297 -k1,22300:23721742,15734148:282296 -k1,22300:26812911,15734148:282296 -k1,22300:29359477,15734148:282297 -k1,22300:31375856,15734148:282296 -k1,22300:32583029,15734148:0 -) -(1,22301:6797234,16575636:25785795,513147,134348 -k1,22300:8682596,16575636:187324 -k1,22300:11686001,16575636:187323 -k1,22300:12864885,16575636:187324 -k1,22300:13668247,16575636:187324 -k1,22300:17117297,16575636:187323 -k1,22300:19043947,16575636:187324 -k1,22300:20422716,16575636:187324 -k1,22300:21629124,16575636:187323 -k1,22300:23220229,16575636:187324 -k1,22300:25552546,16575636:187324 -k1,22300:28517940,16575636:187323 -k1,22300:31966991,16575636:187324 -k1,22300:32583029,16575636:0 -) -(1,22301:6797234,17417124:25785795,513147,134348 -k1,22300:8024232,17417124:207913 -k1,22300:9730953,17417124:207913 -k1,22300:11807297,17417124:207913 -k1,22300:13759123,17417124:207913 -k1,22300:15480262,17417124:207913 -k1,22300:16635826,17417124:207913 -k1,22300:19804656,17417124:207913 -k1,22300:21084738,17417124:207913 -k1,22300:22495891,17417124:207912 -k1,22300:24070885,17417124:207913 -k1,22300:26254053,17417124:207913 -k1,22300:27113394,17417124:207913 -k1,22300:28242743,17417124:207913 -k1,22300:29063418,17417124:207913 -k1,22300:30290416,17417124:207913 -k1,22300:31923737,17417124:207913 -k1,22300:32583029,17417124:0 -) -(1,22301:6797234,18258612:25785795,513147,134348 -k1,22300:9264927,18258612:209978 -k1,22300:12457448,18258612:209978 -k1,22300:15420593,18258612:209978 -k1,22300:16118149,18258612:209968 -k1,22300:18125124,18258612:209978 -k1,22300:20189771,18258612:209978 -k1,22300:21209119,18258612:209978 -k1,22300:22438182,18258612:209978 -k1,22300:23720329,18258612:209978 -k1,22300:25524143,18258612:209978 -k1,22300:27232930,18258612:209979 -k1,22300:28102200,18258612:209978 -k1,22300:28668038,18258612:209978 -k1,22300:30104195,18258612:209978 -k1,22300:31297213,18258612:209978 -k1,22300:32583029,18258612:0 -) -(1,22301:6797234,19100100:25785795,505283,122846 -k1,22300:9075113,19100100:209563 -k1,22300:10569182,19100100:209563 -k1,22300:11394782,19100100:209562 -k1,22300:13301727,19100100:209563 -k1,22300:15521935,19100100:209563 -k1,22300:16347536,19100100:209563 -k1,22300:18055906,19100100:209562 -k1,22300:20133900,19100100:209563 -(1,22300:20133900,19100100:0,414482,122846 -r1,22343:23305860,19100100:3171960,537328,122846 -k1,22300:20133900,19100100:-3171960 -) -(1,22300:20133900,19100100:3171960,414482,122846 -k1,22300:20133900,19100100:3277 -h1,22300:23302583,19100100:0,411205,112570 -) -k1,22300:23515423,19100100:209563 -k1,22300:25223794,19100100:209563 -k1,22300:27603908,19100100:209562 -k1,22300:28561237,19100100:209563 -k1,22300:31931601,19100100:209563 -k1,22300:32583029,19100100:0 -) -(1,22301:6797234,19941588:25785795,513147,134348 -k1,22300:9774972,19941588:183938 -k1,22300:12286093,19941588:183938 -k1,22300:13129322,19941588:183937 -k1,22300:16314154,19941588:183938 -k1,22300:16853952,19941588:183938 -k1,22300:19420779,19941588:183938 -k1,22300:20264009,19941588:183938 -k1,22300:23422626,19941588:183938 -k1,22300:25802674,19941588:183937 -k1,22300:26672774,19941588:183938 -k1,22300:29882509,19941588:183938 -k1,22300:31634068,19941588:183938 -k1,22300:32583029,19941588:0 -) -(1,22301:6797234,20783076:25785795,505283,134348 -k1,22300:9582446,20783076:205060 -k1,22300:11672320,20783076:205060 -k1,22300:13386020,20783076:205061 -k1,22300:15601725,20783076:205060 -k1,22300:16798345,20783076:205060 -k1,22300:19722494,20783076:205060 -k1,22300:20689083,20783076:205061 -k1,22300:23514272,20783076:205060 -(1,22300:23514272,20783076:0,414482,115847 -r1,22343:24224250,20783076:709978,530329,115847 -k1,22300:23514272,20783076:-709978 -) -(1,22300:23514272,20783076:709978,414482,115847 -k1,22300:23514272,20783076:3277 -h1,22300:24220973,20783076:0,411205,112570 -) -k1,22300:24429310,20783076:205060 -k1,22300:26645015,20783076:205060 -k1,22300:28244027,20783076:205061 -k1,22300:28804947,20783076:205060 -k1,22300:31753999,20783076:205060 -k1,22300:32583029,20783076:0 -) -(1,22301:6797234,21624564:25785795,513147,126483 -k1,22300:11031241,21624564:200921 -k1,22300:12435403,21624564:200921 -k1,22300:13504676,21624564:200921 -k1,22300:14838059,21624564:200921 -k1,22300:18353136,21624564:200921 -k1,22300:20706259,21624564:200921 -(1,22300:20706259,21624564:0,414482,122846 -r1,22343:23878219,21624564:3171960,537328,122846 -k1,22300:20706259,21624564:-3171960 -) -(1,22300:20706259,21624564:3171960,414482,122846 -k1,22300:20706259,21624564:3277 -h1,22300:23874942,21624564:0,411205,112570 -) -k1,22300:24079139,21624564:200920 -k1,22300:25847681,21624564:200921 -k1,22300:26837000,21624564:200921 -k1,22300:29303501,21624564:200921 -k1,22300:30229250,21624564:200921 -k1,22300:31714677,21624564:200921 -k1,22300:32583029,21624564:0 -) -(1,22301:6797234,22466052:25785795,513147,134348 -g1,22300:8100745,22466052 -g1,22300:9392459,22466052 -g1,22300:10362391,22466052 -g1,22300:11509271,22466052 -g1,22300:12727585,22466052 -g1,22300:15588231,22466052 -g1,22300:16143320,22466052 -g1,22300:17325589,22466052 -g1,22300:18900419,22466052 -g1,22300:19455508,22466052 -g1,22300:20787855,22466052 -g1,22300:22485892,22466052 -g1,22300:23301159,22466052 -k1,22301:32583029,22466052:7094934 -g1,22301:32583029,22466052 -) -v1,22305:6797234,26745689:0,393216,0 -(1,22320:6797234,38283243:25785795,11930770,196608 -g1,22320:6797234,38283243 -g1,22320:6797234,38283243 -g1,22320:6600626,38283243 -(1,22320:6600626,38283243:0,11930770,196608 -r1,22343:32779637,38283243:26179011,12127378,196608 -k1,22320:6600625,38283243:-26179012 -) -(1,22320:6600626,38283243:26179011,11930770,196608 -[1,22320:6797234,38283243:25785795,11734162,0 -(1,22307:6797234,26959599:25785795,410518,107478 -(1,22306:6797234,26959599:0,0,0 -g1,22306:6797234,26959599 -g1,22306:6797234,26959599 -g1,22306:6469554,26959599 -(1,22306:6469554,26959599:0,0,0 -) -g1,22306:6797234,26959599 -) -k1,22307:6797234,26959599:0 -g1,22307:11855566,26959599 -g1,22307:12487858,26959599 -k1,22307:12487858,26959599:0 -h1,22307:22920665,26959599:0,0,0 -k1,22307:32583029,26959599:9662364 -g1,22307:32583029,26959599 -) -(1,22311:6797234,28281137:25785795,379060,0 -k1,22311:32583029,28281137:25153504 -g1,22311:32583029,28281137 -) -(1,22311:6797234,28947315:25785795,410518,101187 -k1,22311:7790170,28947315:360645 -k1,22311:8783105,28947315:360644 -k1,22311:11040624,28947315:360645 -k1,22311:15511163,28947315:360645 -k1,22311:32583029,28947315:0 -) -(1,22311:6797234,29613493:25785795,176685,0 -k1,22311:32583029,29613493:25153504 -g1,22311:32583029,29613493 -) -(1,22311:6797234,30279671:25785795,404226,76021 -g1,22311:7745671,30279671 -k1,22311:32583029,30279671:23256630 -g1,22311:32583029,30279671 -) -(1,22311:6797234,30945849:25785795,404226,82312 -g1,22311:7745671,30945849 -g1,22311:8061817,30945849 -g1,22311:8377963,30945849 -g1,22311:9958692,30945849 -g1,22311:10590984,30945849 -k1,22311:32583029,30945849:16933714 -g1,22311:32583029,30945849 -) -(1,22311:6797234,31612027:25785795,404226,82312 -g1,22311:7745671,31612027 -g1,22311:8061817,31612027 -g1,22311:8377963,31612027 -g1,22311:9958692,31612027 -g1,22311:10590984,31612027 -k1,22311:32583030,31612027:17882152 -g1,22311:32583030,31612027 -) -(1,22311:6797234,32278205:25785795,404226,82312 -g1,22311:7745671,32278205 -g1,22311:8061817,32278205 -g1,22311:8377963,32278205 -g1,22311:9958692,32278205 -g1,22311:10590984,32278205 -k1,22311:32583030,32278205:17882152 -g1,22311:32583030,32278205 -) -(1,22311:6797234,32944383:25785795,404226,76021 -g1,22311:7745671,32944383 -g1,22311:8061817,32944383 -g1,22311:8377963,32944383 -g1,22311:9958692,32944383 -g1,22311:10590984,32944383 -k1,22311:32583029,32944383:17249860 -g1,22311:32583029,32944383 -) -(1,22311:6797234,33610561:25785795,404226,76021 -g1,22311:7745671,33610561 -k1,22311:32583029,33610561:24521212 -g1,22311:32583029,33610561 -) -(1,22319:6797234,34276739:25785795,404226,6290 -(1,22311:6797234,34276739:0,0,0 -g1,22311:6797234,34276739 -g1,22311:6797234,34276739 -g1,22311:6469554,34276739 -(1,22311:6469554,34276739:0,0,0 -) -g1,22311:6797234,34276739 -) -g1,22319:7745671,34276739 -g1,22319:8377963,34276739 -g1,22319:9010255,34276739 -g1,22319:11539421,34276739 -g1,22319:12171713,34276739 -g1,22319:12804005,34276739 -h1,22319:13120151,34276739:0,0,0 -k1,22319:32583029,34276739:19462878 -g1,22319:32583029,34276739 -) -(1,22319:6797234,34942917:25785795,404226,9436 -h1,22319:6797234,34942917:0,0,0 -g1,22319:7745671,34942917 -g1,22319:8061817,34942917 -g1,22319:8377963,34942917 -g1,22319:9958692,34942917 -g1,22319:10274838,34942917 -g1,22319:10590984,34942917 -g1,22319:12171713,34942917 -g1,22319:12487859,34942917 -g1,22319:14068588,34942917 -h1,22319:15333171,34942917:0,0,0 -k1,22319:32583029,34942917:17249858 -g1,22319:32583029,34942917 -) -(1,22319:6797234,35609095:25785795,404226,6290 -h1,22319:6797234,35609095:0,0,0 -g1,22319:7745671,35609095 -g1,22319:8061817,35609095 -g1,22319:8377963,35609095 -g1,22319:10274838,35609095 -g1,22319:12171713,35609095 -g1,22319:14068588,35609095 -k1,22319:14068588,35609095:0 -h1,22319:15649317,35609095:0,0,0 -k1,22319:32583029,35609095:16933712 -g1,22319:32583029,35609095 -) -(1,22319:6797234,36275273:25785795,388497,9436 -h1,22319:6797234,36275273:0,0,0 -g1,22319:7745671,36275273 -g1,22319:8377963,36275273 -g1,22319:9642546,36275273 -g1,22319:9958692,36275273 -g1,22319:10274838,36275273 -g1,22319:10590984,36275273 -g1,22319:12171713,36275273 -g1,22319:12487859,36275273 -g1,22319:12804005,36275273 -g1,22319:14068588,36275273 -h1,22319:15017025,36275273:0,0,0 -k1,22319:32583029,36275273:17566004 -g1,22319:32583029,36275273 -) -(1,22319:6797234,36941451:25785795,388497,9436 -h1,22319:6797234,36941451:0,0,0 -g1,22319:7745671,36941451 -g1,22319:8377963,36941451 -g1,22319:9642546,36941451 -g1,22319:9958692,36941451 -g1,22319:10274838,36941451 -g1,22319:10590984,36941451 -g1,22319:12171713,36941451 -g1,22319:12487859,36941451 -g1,22319:12804005,36941451 -g1,22319:13120151,36941451 -g1,22319:14068588,36941451 -h1,22319:15017025,36941451:0,0,0 -k1,22319:32583029,36941451:17566004 -g1,22319:32583029,36941451 -) -(1,22319:6797234,37607629:25785795,388497,9436 -h1,22319:6797234,37607629:0,0,0 -g1,22319:7745671,37607629 -g1,22319:8377963,37607629 -g1,22319:9958692,37607629 -g1,22319:10274838,37607629 -g1,22319:10590984,37607629 -g1,22319:12171713,37607629 -g1,22319:12487859,37607629 -g1,22319:12804005,37607629 -g1,22319:13120151,37607629 -g1,22319:14068588,37607629 -h1,22319:15017025,37607629:0,0,0 -k1,22319:32583029,37607629:17566004 -g1,22319:32583029,37607629 -) -(1,22319:6797234,38273807:25785795,404226,9436 -h1,22319:6797234,38273807:0,0,0 -g1,22319:7745671,38273807 -g1,22319:8377963,38273807 -g1,22319:9010255,38273807 -g1,22319:9326401,38273807 -g1,22319:9642547,38273807 -g1,22319:9958693,38273807 -g1,22319:10274839,38273807 -g1,22319:10590985,38273807 -g1,22319:11539422,38273807 -g1,22319:11855568,38273807 -g1,22319:12171714,38273807 -g1,22319:12487860,38273807 -g1,22319:14068589,38273807 -h1,22319:15017026,38273807:0,0,0 -k1,22319:32583030,38273807:17566004 -g1,22319:32583030,38273807 -) -] -) -g1,22320:32583029,38283243 -g1,22320:6797234,38283243 -g1,22320:6797234,38283243 -g1,22320:32583029,38283243 -g1,22320:32583029,38283243 -) -h1,22320:6797234,38479851:0,0,0 -] -g1,22343:32583029,45706769 -) -] -(1,22343:32583029,45706769:0,0,0 -g1,22343:32583029,45706769 -) -) -] -(1,22343:6630773,47279633:25952256,0,0 -h1,22343:6630773,47279633:25952256,0,0 -) -] -(1,22343:4262630,4025873:0,0,0 -[1,22343:-473656,4025873:0,0,0 -(1,22343:-473656,-710413:0,0,0 -(1,22343:-473656,-710413:0,0,0 -g1,22343:-473656,-710413 -) -g1,22343:-473656,-710413 -) -] -) -] -!19710 -}405 -Input:3631:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3632:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3633:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3634:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3635:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3636:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3637:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3638:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3639:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3640:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3641:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3642:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3643:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3644:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3645:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3646:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3647:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3648:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!19680 +}388 +Input:3672:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3673:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3674:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3675:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3676:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3677:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3678:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3679:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3680:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3681:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3682:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3683:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3684:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3685:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3686:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3687:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3688:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3689:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1704 -{406 -[1,22383:4262630,47279633:28320399,43253760,0 -(1,22383:4262630,4025873:0,0,0 -[1,22383:-473656,4025873:0,0,0 -(1,22383:-473656,-710413:0,0,0 -(1,22383:-473656,-644877:0,0,0 -k1,22383:-473656,-644877:-65536 +{389 +[1,22619:4262630,47279633:28320399,43253760,0 +(1,22619:4262630,4025873:0,0,0 +[1,22619:-473656,4025873:0,0,0 +(1,22619:-473656,-710413:0,0,0 +(1,22619:-473656,-644877:0,0,0 +k1,22619:-473656,-644877:-65536 ) -(1,22383:-473656,4736287:0,0,0 -k1,22383:-473656,4736287:5209943 +(1,22619:-473656,4736287:0,0,0 +k1,22619:-473656,4736287:5209943 ) -g1,22383:-473656,-710413 +g1,22619:-473656,-710413 ) ] ) -[1,22383:6630773,47279633:25952256,43253760,0 -[1,22383:6630773,4812305:25952256,786432,0 -(1,22383:6630773,4812305:25952256,513147,126483 -(1,22383:6630773,4812305:25952256,513147,126483 -g1,22383:3078558,4812305 -[1,22383:3078558,4812305:0,0,0 -(1,22383:3078558,2439708:0,1703936,0 -k1,22383:1358238,2439708:-1720320 -(1,21457:1358238,2439708:1720320,1703936,0 -(1,21457:1358238,2439708:1179648,16384,0 -r1,22383:2537886,2439708:1179648,16384,0 +[1,22619:6630773,47279633:25952256,43253760,0 +[1,22619:6630773,4812305:25952256,786432,0 +(1,22619:6630773,4812305:25952256,505283,134348 +(1,22619:6630773,4812305:25952256,505283,134348 +g1,22619:3078558,4812305 +[1,22619:3078558,4812305:0,0,0 +(1,22619:3078558,2439708:0,1703936,0 +k1,22619:1358238,2439708:-1720320 +(1,21670:1358238,2439708:1720320,1703936,0 +(1,21670:1358238,2439708:1179648,16384,0 +r1,22619:2537886,2439708:1179648,16384,0 ) -g1,21457:3062174,2439708 -(1,21457:3062174,2439708:16384,1703936,0 -[1,21457:3062174,2439708:25952256,1703936,0 -(1,21457:3062174,1915420:25952256,1179648,0 -(1,21457:3062174,1915420:16384,1179648,0 -r1,22383:3078558,1915420:16384,1179648,0 +g1,21670:3062174,2439708 +(1,21670:3062174,2439708:16384,1703936,0 +[1,21670:3062174,2439708:25952256,1703936,0 +(1,21670:3062174,1915420:25952256,1179648,0 +(1,21670:3062174,1915420:16384,1179648,0 +r1,22619:3078558,1915420:16384,1179648,0 ) -k1,21457:29014430,1915420:25935872 -g1,21457:29014430,1915420 +k1,21670:29014430,1915420:25935872 +g1,21670:29014430,1915420 ) ] ) ) ) ] -[1,22383:3078558,4812305:0,0,0 -(1,22383:3078558,2439708:0,1703936,0 -g1,22383:29030814,2439708 -g1,22383:36135244,2439708 -(1,21457:36135244,2439708:1720320,1703936,0 -(1,21457:36135244,2439708:16384,1703936,0 -[1,21457:36135244,2439708:25952256,1703936,0 -(1,21457:36135244,1915420:25952256,1179648,0 -(1,21457:36135244,1915420:16384,1179648,0 -r1,22383:36151628,1915420:16384,1179648,0 +[1,22619:3078558,4812305:0,0,0 +(1,22619:3078558,2439708:0,1703936,0 +g1,22619:29030814,2439708 +g1,22619:36135244,2439708 +(1,21670:36135244,2439708:1720320,1703936,0 +(1,21670:36135244,2439708:16384,1703936,0 +[1,21670:36135244,2439708:25952256,1703936,0 +(1,21670:36135244,1915420:25952256,1179648,0 +(1,21670:36135244,1915420:16384,1179648,0 +r1,22619:36151628,1915420:16384,1179648,0 ) -k1,21457:62087500,1915420:25935872 -g1,21457:62087500,1915420 +k1,21670:62087500,1915420:25935872 +g1,21670:62087500,1915420 ) ] ) -g1,21457:36675916,2439708 -(1,21457:36675916,2439708:1179648,16384,0 -r1,22383:37855564,2439708:1179648,16384,0 +g1,21670:36675916,2439708 +(1,21670:36675916,2439708:1179648,16384,0 +r1,22619:37855564,2439708:1179648,16384,0 ) ) -k1,22383:3078556,2439708:-34777008 +k1,22619:3078556,2439708:-34777008 ) ] -[1,22383:3078558,4812305:0,0,0 -(1,22383:3078558,49800853:0,16384,2228224 -k1,22383:1358238,49800853:-1720320 -(1,21457:1358238,49800853:1720320,16384,2228224 -(1,21457:1358238,49800853:1179648,16384,0 -r1,22383:2537886,49800853:1179648,16384,0 +[1,22619:3078558,4812305:0,0,0 +(1,22619:3078558,49800853:0,16384,2228224 +k1,22619:1358238,49800853:-1720320 +(1,21670:1358238,49800853:1720320,16384,2228224 +(1,21670:1358238,49800853:1179648,16384,0 +r1,22619:2537886,49800853:1179648,16384,0 ) -g1,21457:3062174,49800853 -(1,21457:3062174,52029077:16384,1703936,0 -[1,21457:3062174,52029077:25952256,1703936,0 -(1,21457:3062174,51504789:25952256,1179648,0 -(1,21457:3062174,51504789:16384,1179648,0 -r1,22383:3078558,51504789:16384,1179648,0 +g1,21670:3062174,49800853 +(1,21670:3062174,52029077:16384,1703936,0 +[1,21670:3062174,52029077:25952256,1703936,0 +(1,21670:3062174,51504789:25952256,1179648,0 +(1,21670:3062174,51504789:16384,1179648,0 +r1,22619:3078558,51504789:16384,1179648,0 ) -k1,21457:29014430,51504789:25935872 -g1,21457:29014430,51504789 +k1,21670:29014430,51504789:25935872 +g1,21670:29014430,51504789 ) ] ) ) ) ] -[1,22383:3078558,4812305:0,0,0 -(1,22383:3078558,49800853:0,16384,2228224 -g1,22383:29030814,49800853 -g1,22383:36135244,49800853 -(1,21457:36135244,49800853:1720320,16384,2228224 -(1,21457:36135244,52029077:16384,1703936,0 -[1,21457:36135244,52029077:25952256,1703936,0 -(1,21457:36135244,51504789:25952256,1179648,0 -(1,21457:36135244,51504789:16384,1179648,0 -r1,22383:36151628,51504789:16384,1179648,0 +[1,22619:3078558,4812305:0,0,0 +(1,22619:3078558,49800853:0,16384,2228224 +g1,22619:29030814,49800853 +g1,22619:36135244,49800853 +(1,21670:36135244,49800853:1720320,16384,2228224 +(1,21670:36135244,52029077:16384,1703936,0 +[1,21670:36135244,52029077:25952256,1703936,0 +(1,21670:36135244,51504789:25952256,1179648,0 +(1,21670:36135244,51504789:16384,1179648,0 +r1,22619:36151628,51504789:16384,1179648,0 ) -k1,21457:62087500,51504789:25935872 -g1,21457:62087500,51504789 +k1,21670:62087500,51504789:25935872 +g1,21670:62087500,51504789 ) ] ) -g1,21457:36675916,49800853 -(1,21457:36675916,49800853:1179648,16384,0 -r1,22383:37855564,49800853:1179648,16384,0 +g1,21670:36675916,49800853 +(1,21670:36675916,49800853:1179648,16384,0 +r1,22619:37855564,49800853:1179648,16384,0 ) ) -k1,22383:3078556,49800853:-34777008 +k1,22619:3078556,49800853:-34777008 ) -] -g1,22383:6630773,4812305 -g1,22383:6630773,4812305 -g1,22383:9744388,4812305 -g1,22383:11175694,4812305 -k1,22383:31387652,4812305:20211958 -) -) -] -[1,22383:6630773,45706769:25952256,40108032,0 -(1,22383:6630773,45706769:25952256,40108032,0 -(1,22383:6630773,45706769:0,0,0 -g1,22383:6630773,45706769 -) -[1,22383:6630773,45706769:25952256,40108032,0 -v1,22343:6630773,6254097:0,393216,0 -(1,22343:6630773,20511081:25952256,14650200,0 -g1,22343:6630773,20511081 -g1,22343:6303093,20511081 -r1,22383:6401397,20511081:98304,14650200,0 -g1,22343:6600626,20511081 -g1,22343:6797234,20511081 -[1,22343:6797234,20511081:25785795,14650200,0 -v1,22324:6797234,6254097:0,393216,0 -(1,22341:6797234,19790185:25785795,13929304,196608 -g1,22341:6797234,19790185 -g1,22341:6797234,19790185 -g1,22341:6600626,19790185 -(1,22341:6600626,19790185:0,13929304,196608 -r1,22383:32779637,19790185:26179011,14125912,196608 -k1,22341:6600625,19790185:-26179012 -) -(1,22341:6600626,19790185:26179011,13929304,196608 -[1,22341:6797234,19790185:25785795,13732696,0 -(1,22326:6797234,6468007:25785795,410518,107478 -(1,22325:6797234,6468007:0,0,0 -g1,22325:6797234,6468007 -g1,22325:6797234,6468007 -g1,22325:6469554,6468007 -(1,22325:6469554,6468007:0,0,0 -) -g1,22325:6797234,6468007 -) -k1,22326:6797234,6468007:0 -g1,22326:11855566,6468007 -g1,22326:12487858,6468007 -g1,22326:23236811,6468007 -g1,22326:26398268,6468007 -g1,22326:27030560,6468007 -h1,22326:27978997,6468007:0,0,0 -k1,22326:32583029,6468007:4604032 -g1,22326:32583029,6468007 -) -(1,22331:6797234,7789545:25785795,379060,0 -k1,22330:32583029,7789545:25153504 -g1,22331:32583029,7789545 -) -(1,22331:6797234,8455723:25785795,410518,101187 -k1,22330:7790170,8455723:360645 -k1,22330:8783105,8455723:360644 -k1,22330:11040624,8455723:360645 -k1,22330:15511163,8455723:360645 -k1,22331:32583029,8455723:0 -) -(1,22331:6797234,9121901:25785795,176685,0 -k1,22330:32583029,9121901:25153504 -g1,22331:32583029,9121901 -) -(1,22331:6797234,9788079:25785795,404226,76021 -g1,22330:7745671,9788079 -k1,22330:32583029,9788079:23256630 -g1,22331:32583029,9788079 -) -(1,22331:6797234,10454257:25785795,404226,82312 -g1,22330:7745671,10454257 -g1,22330:8061817,10454257 -g1,22330:8377963,10454257 -g1,22330:9958692,10454257 -g1,22330:10590984,10454257 -k1,22330:32583030,10454257:17882152 -g1,22331:32583030,10454257 -) -(1,22331:6797234,11120435:25785795,404226,82312 -g1,22330:7745671,11120435 -g1,22330:8061817,11120435 -g1,22330:8377963,11120435 -g1,22330:9958692,11120435 -g1,22330:10590984,11120435 -k1,22330:32583030,11120435:17882152 -g1,22331:32583030,11120435 -) -(1,22331:6797234,11786613:25785795,404226,82312 -g1,22330:7745671,11786613 -g1,22330:8061817,11786613 -g1,22330:8377963,11786613 -g1,22330:9958692,11786613 -g1,22330:10590984,11786613 -k1,22330:32583030,11786613:17882152 -g1,22331:32583030,11786613 -) -(1,22331:6797234,12452791:25785795,404226,76021 -g1,22330:7745671,12452791 -g1,22330:8061817,12452791 -g1,22330:8377963,12452791 -g1,22330:9958692,12452791 -g1,22330:10590984,12452791 -k1,22330:32583029,12452791:17249860 -g1,22331:32583029,12452791 -) -(1,22331:6797234,13118969:25785795,404226,76021 -g1,22330:7745671,13118969 -k1,22331:32583029,13118969:24521212 -g1,22331:32583029,13118969 -) -(1,22332:6797234,13785147:25785795,410518,107478 -g1,22332:7745671,13785147 -g1,22332:10590982,13785147 -g1,22332:11223274,13785147 -g1,22332:13752440,13785147 -k1,22332:32583029,13785147:16301424 -g1,22332:32583029,13785147 -) -(1,22332:6797234,14451325:25785795,410518,101187 -g1,22332:7745671,14451325 -g1,22332:9010254,14451325 -g1,22332:9326400,14451325 -g1,22332:10590983,14451325 -g1,22332:13436294,14451325 -g1,22332:15649314,14451325 -g1,22332:15965460,14451325 -g1,22332:16281606,14451325 -g1,22332:16597752,14451325 -g1,22332:16913898,14451325 -g1,22332:17230044,14451325 -g1,22332:17546190,14451325 -g1,22332:17862336,14451325 -g1,22332:18178482,14451325 -g1,22332:18494628,14451325 -g1,22332:18810774,14451325 -g1,22332:19126920,14451325 -g1,22332:19443066,14451325 -g1,22332:19759212,14451325 -g1,22332:20075358,14451325 -g1,22332:20391504,14451325 -g1,22332:20707650,14451325 -g1,22332:21023796,14451325 -g1,22332:21339942,14451325 -g1,22332:21656088,14451325 -g1,22332:21972234,14451325 -g1,22332:22288380,14451325 -g1,22332:22604526,14451325 -g1,22332:22920672,14451325 -g1,22332:23236818,14451325 -g1,22332:23552964,14451325 -g1,22332:23869110,14451325 -g1,22332:24185256,14451325 -g1,22332:24501402,14451325 -k1,22332:32583029,14451325:6817044 -g1,22332:32583029,14451325 -) -(1,22332:6797234,15117503:25785795,404226,107478 -g1,22332:7745671,15117503 -g1,22332:8061817,15117503 -g1,22332:8377963,15117503 -g1,22332:9010255,15117503 -g1,22332:10590984,15117503 -g1,22332:11223276,15117503 -g1,22332:13436296,15117503 -g1,22332:13752442,15117503 -g1,22332:14068588,15117503 -g1,22332:14384734,15117503 -g1,22332:14700880,15117503 -g1,22332:15017026,15117503 -g1,22332:15649318,15117503 -k1,22332:32583029,15117503:6817050 -g1,22332:32583029,15117503 -) -(1,22340:6797234,15783681:25785795,404226,6290 -(1,22332:6797234,15783681:0,0,0 -g1,22332:6797234,15783681 -g1,22332:6797234,15783681 -g1,22332:6469554,15783681 -(1,22332:6469554,15783681:0,0,0 -) -g1,22332:6797234,15783681 -) -g1,22340:7745671,15783681 -g1,22340:8377963,15783681 -g1,22340:9010255,15783681 -g1,22340:11539421,15783681 -g1,22340:12171713,15783681 -g1,22340:12804005,15783681 -h1,22340:13120151,15783681:0,0,0 -k1,22340:32583029,15783681:19462878 -g1,22340:32583029,15783681 -) -(1,22340:6797234,16449859:25785795,404226,9436 -h1,22340:6797234,16449859:0,0,0 -g1,22340:7745671,16449859 -g1,22340:8061817,16449859 -g1,22340:8377963,16449859 -g1,22340:8694109,16449859 -g1,22340:10274838,16449859 -g1,22340:10590984,16449859 -g1,22340:12171713,16449859 -g1,22340:12487859,16449859 -g1,22340:14068588,16449859 -h1,22340:15333171,16449859:0,0,0 -k1,22340:32583029,16449859:17249858 -g1,22340:32583029,16449859 -) -(1,22340:6797234,17116037:25785795,404226,6290 -h1,22340:6797234,17116037:0,0,0 -g1,22340:7745671,17116037 -g1,22340:8061817,17116037 -g1,22340:8377963,17116037 -g1,22340:10274838,17116037 -g1,22340:12171713,17116037 -g1,22340:14068588,17116037 -k1,22340:14068588,17116037:0 -h1,22340:15649317,17116037:0,0,0 -k1,22340:32583029,17116037:16933712 -g1,22340:32583029,17116037 -) -(1,22340:6797234,17782215:25785795,388497,9436 -h1,22340:6797234,17782215:0,0,0 -g1,22340:7745671,17782215 -g1,22340:8377963,17782215 -g1,22340:8694109,17782215 -g1,22340:9010255,17782215 -g1,22340:9642547,17782215 -g1,22340:9958693,17782215 -g1,22340:10274839,17782215 -g1,22340:10590985,17782215 -g1,22340:12171714,17782215 -g1,22340:12487860,17782215 -g1,22340:12804006,17782215 -g1,22340:14068589,17782215 -h1,22340:15017026,17782215:0,0,0 -k1,22340:32583030,17782215:17566004 -g1,22340:32583030,17782215 -) -(1,22340:6797234,18448393:25785795,388497,9436 -h1,22340:6797234,18448393:0,0,0 -g1,22340:7745671,18448393 -g1,22340:8377963,18448393 -g1,22340:8694109,18448393 -g1,22340:9010255,18448393 -g1,22340:10274838,18448393 -g1,22340:10590984,18448393 -g1,22340:12171713,18448393 -g1,22340:12487859,18448393 -g1,22340:12804005,18448393 -g1,22340:13120151,18448393 -g1,22340:14068588,18448393 -h1,22340:15017025,18448393:0,0,0 -k1,22340:32583029,18448393:17566004 -g1,22340:32583029,18448393 -) -(1,22340:6797234,19114571:25785795,388497,9436 -h1,22340:6797234,19114571:0,0,0 -g1,22340:7745671,19114571 -g1,22340:8377963,19114571 -g1,22340:8694109,19114571 -g1,22340:10274838,19114571 -g1,22340:10590984,19114571 -g1,22340:12171713,19114571 -g1,22340:12487859,19114571 -g1,22340:12804005,19114571 -g1,22340:13120151,19114571 -g1,22340:14068588,19114571 -h1,22340:15017025,19114571:0,0,0 -k1,22340:32583029,19114571:17566004 -g1,22340:32583029,19114571 -) -(1,22340:6797234,19780749:25785795,404226,9436 -h1,22340:6797234,19780749:0,0,0 -g1,22340:7745671,19780749 -g1,22340:8377963,19780749 -g1,22340:8694109,19780749 -g1,22340:9642546,19780749 -g1,22340:9958692,19780749 -g1,22340:10274838,19780749 -g1,22340:10590984,19780749 -g1,22340:11539421,19780749 -g1,22340:11855567,19780749 -g1,22340:12171713,19780749 -g1,22340:12487859,19780749 -g1,22340:14068588,19780749 -h1,22340:15017025,19780749:0,0,0 -k1,22340:32583029,19780749:17566004 -g1,22340:32583029,19780749 -) -] -) -g1,22341:32583029,19790185 -g1,22341:6797234,19790185 -g1,22341:6797234,19790185 -g1,22341:32583029,19790185 -g1,22341:32583029,19790185 -) -h1,22341:6797234,19986793:0,0,0 -] -g1,22343:32583029,20511081 -) -h1,22343:6630773,20511081:0,0,0 -(1,22350:6630773,21827336:25952256,513147,126483 -h1,22349:6630773,21827336:983040,0,0 -k1,22349:8982738,21827336:172238 -(1,22349:8982738,21827336:0,452978,115847 -r1,22383:11099563,21827336:2116825,568825,115847 -k1,22349:8982738,21827336:-2116825 -) -(1,22349:8982738,21827336:2116825,452978,115847 -k1,22349:8982738,21827336:3277 -h1,22349:11096286,21827336:0,411205,112570 -) -k1,22349:11271802,21827336:172239 -k1,22349:14469837,21827336:172238 -k1,22349:16209696,21827336:172238 -k1,22349:18405031,21827336:172239 -k1,22349:19568829,21827336:172238 -k1,22349:20760153,21827336:172239 -k1,22349:24704643,21827336:172238 -k1,22349:25528309,21827336:172238 -(1,22349:25528309,21827336:0,452978,115847 -r1,22383:27645134,21827336:2116825,568825,115847 -k1,22349:25528309,21827336:-2116825 -) -(1,22349:25528309,21827336:2116825,452978,115847 -k1,22349:25528309,21827336:3277 -h1,22349:27641857,21827336:0,411205,112570 -) -k1,22349:27817373,21827336:172239 -k1,22349:31015408,21827336:172238 -k1,22349:32583029,21827336:0 -) -(1,22350:6630773,22668824:25952256,505283,126483 -k1,22349:8820856,22668824:305269 -k1,22349:9753960,22668824:305269 -k1,22349:12725234,22668824:305269 -k1,22349:13681931,22668824:305269 -k1,22349:15006284,22668824:305268 -k1,22349:18150573,22668824:305269 -(1,22349:18150573,22668824:0,452978,115847 -r1,22383:22025957,22668824:3875384,568825,115847 -k1,22349:18150573,22668824:-3875384 -) -(1,22349:18150573,22668824:3875384,452978,115847 -k1,22349:18150573,22668824:3277 -h1,22349:22022680,22668824:0,411205,112570 -) -k1,22349:22504896,22668824:305269 -(1,22349:22504896,22668824:0,452978,115847 -r1,22383:26731992,22668824:4227096,568825,115847 -k1,22349:22504896,22668824:-4227096 -) -(1,22349:22504896,22668824:4227096,452978,115847 -k1,22349:22504896,22668824:3277 -h1,22349:26728715,22668824:0,411205,112570 -) -k1,22349:27210931,22668824:305269 -(1,22349:27210931,22668824:0,452978,115847 -r1,22383:31086315,22668824:3875384,568825,115847 -k1,22349:27210931,22668824:-3875384 -) -(1,22349:27210931,22668824:3875384,452978,115847 -k1,22349:27210931,22668824:3277 -h1,22349:31083038,22668824:0,411205,112570 -) -k1,22349:31391584,22668824:305269 -k1,22350:32583029,22668824:0 -) -(1,22350:6630773,23510312:25952256,513147,126483 -(1,22349:6630773,23510312:0,452978,115847 -r1,22383:11209581,23510312:4578808,568825,115847 -k1,22349:6630773,23510312:-4578808 -) -(1,22349:6630773,23510312:4578808,452978,115847 -k1,22349:6630773,23510312:3277 -h1,22349:11206304,23510312:0,411205,112570 -) -k1,22349:11663452,23510312:280201 -k1,22349:13966748,23510312:280200 -k1,22349:17007325,23510312:280201 -k1,22349:20313323,23510312:280201 -k1,22349:21878029,23510312:280200 -k1,22349:23773037,23510312:280201 -k1,22349:29547121,23510312:280201 -k1,22349:31096017,23510312:280119 -k1,22349:32583029,23510312:0 -) -(1,22350:6630773,24351800:25952256,513147,126483 -k1,22349:7882053,24351800:297731 -k1,22349:12212870,24351800:297731 -k1,22349:13908484,24351800:297731 -k1,22349:15225299,24351800:297730 -k1,22349:16615515,24351800:297731 -k1,22349:17580402,24351800:297731 -(1,22349:17580402,24351800:0,452978,115847 -r1,22383:23566057,24351800:5985655,568825,115847 -k1,22349:17580402,24351800:-5985655 -) -(1,22349:17580402,24351800:5985655,452978,115847 -k1,22349:17580402,24351800:3277 -h1,22349:23562780,24351800:0,411205,112570 -) -k1,22349:23863788,24351800:297731 -k1,22349:24812947,24351800:297731 -k1,22349:27730807,24351800:297731 -k1,22349:28384397,24351800:297730 -k1,22349:29908307,24351800:297731 -k1,22349:31189078,24351800:297731 -k1,22349:32583029,24351800:0 -) -(1,22350:6630773,25193288:25952256,513147,126483 -g1,22349:12490347,25193288 -g1,22349:14423659,25193288 -g1,22349:17134883,25193288 -g1,22349:18281763,25193288 -g1,22349:20662686,25193288 -g1,22349:22129381,25193288 -k1,22350:32583029,25193288:7502562 -g1,22350:32583029,25193288 -) -v1,22352:6630773,26334233:0,393216,0 -(1,22357:6630773,27321799:25952256,1380782,196608 -g1,22357:6630773,27321799 -g1,22357:6630773,27321799 -g1,22357:6434165,27321799 -(1,22357:6434165,27321799:0,1380782,196608 -r1,22383:32779637,27321799:26345472,1577390,196608 -k1,22357:6434165,27321799:-26345472 -) -(1,22357:6434165,27321799:26345472,1380782,196608 -[1,22357:6630773,27321799:25952256,1184174,0 -(1,22354:6630773,26548143:25952256,410518,101187 -(1,22353:6630773,26548143:0,0,0 -g1,22353:6630773,26548143 -g1,22353:6630773,26548143 -g1,22353:6303093,26548143 -(1,22353:6303093,26548143:0,0,0 -) -g1,22353:6630773,26548143 -) -k1,22354:6630773,26548143:0 -g1,22354:13902124,26548143 -g1,22354:15482853,26548143 -g1,22354:16115145,26548143 -k1,22354:16115145,26548143:0 -h1,22354:20857330,26548143:0,0,0 -k1,22354:32583029,26548143:11725699 -g1,22354:32583029,26548143 -) -(1,22355:6630773,27214321:25952256,410518,107478 -h1,22355:6630773,27214321:0,0,0 -g1,22355:14850561,27214321 -g1,22355:16747435,27214321 -g1,22355:17379727,27214321 -h1,22355:20541184,27214321:0,0,0 -k1,22355:32583029,27214321:12041845 -g1,22355:32583029,27214321 -) -] -) -g1,22357:32583029,27321799 -g1,22357:6630773,27321799 -g1,22357:6630773,27321799 -g1,22357:32583029,27321799 -g1,22357:32583029,27321799 -) -h1,22357:6630773,27518407:0,0,0 -(1,22362:6630773,28659352:25952256,513147,134348 -h1,22360:6630773,28659352:983040,0,0 -g1,22360:9275150,28659352 -g1,22360:11195354,28659352 -g1,22360:11750443,28659352 -g1,22360:12932712,28659352 -g1,22360:16493938,28659352 -g1,22360:17712252,28659352 -g1,22360:20886816,28659352 -g1,22360:22485894,28659352 -k1,22362:32583029,28659352:10097135 -g1,22362:32583029,28659352 -) -v1,22362:6630773,29800298:0,393216,0 -(1,22371:6630773,33421118:25952256,4014036,196608 -g1,22371:6630773,33421118 -g1,22371:6630773,33421118 -g1,22371:6434165,33421118 -(1,22371:6434165,33421118:0,4014036,196608 -r1,22383:32779637,33421118:26345472,4210644,196608 -k1,22371:6434165,33421118:-26345472 -) -(1,22371:6434165,33421118:26345472,4014036,196608 -[1,22371:6630773,33421118:25952256,3817428,0 -(1,22370:6630773,30007916:25952256,404226,101187 -(1,22363:6630773,30007916:0,0,0 -g1,22363:6630773,30007916 -g1,22363:6630773,30007916 -g1,22363:6303093,30007916 -(1,22363:6303093,30007916:0,0,0 -) -g1,22363:6630773,30007916 -) -k1,22370:6630773,30007916:0 -k1,22370:6630773,30007916:0 -h1,22370:10108376,30007916:0,0,0 -k1,22370:32583028,30007916:22474652 -g1,22370:32583028,30007916 -) -(1,22370:6630773,30674094:25952256,404226,82312 -h1,22370:6630773,30674094:0,0,0 -k1,22370:6630773,30674094:0 -h1,22370:9476085,30674094:0,0,0 -k1,22370:32583029,30674094:23106944 -g1,22370:32583029,30674094 -) -(1,22370:6630773,31340272:25952256,404226,82312 -h1,22370:6630773,31340272:0,0,0 -k1,22370:6630773,31340272:0 -h1,22370:9476085,31340272:0,0,0 -k1,22370:32583029,31340272:23106944 -g1,22370:32583029,31340272 -) -(1,22370:6630773,32006450:25952256,404226,82312 -h1,22370:6630773,32006450:0,0,0 -k1,22370:6630773,32006450:0 -h1,22370:9476085,32006450:0,0,0 -k1,22370:32583029,32006450:23106944 -g1,22370:32583029,32006450 -) -(1,22370:6630773,32672628:25952256,404226,82312 -h1,22370:6630773,32672628:0,0,0 -k1,22370:6630773,32672628:0 -h1,22370:9476085,32672628:0,0,0 -k1,22370:32583029,32672628:23106944 -g1,22370:32583029,32672628 -) -(1,22370:6630773,33338806:25952256,404226,82312 -h1,22370:6630773,33338806:0,0,0 -k1,22370:6630773,33338806:0 -h1,22370:9476085,33338806:0,0,0 -k1,22370:32583029,33338806:23106944 -g1,22370:32583029,33338806 -) -] -) -g1,22371:32583029,33421118 -g1,22371:6630773,33421118 -g1,22371:6630773,33421118 -g1,22371:32583029,33421118 -g1,22371:32583029,33421118 -) -h1,22371:6630773,33617726:0,0,0 -v1,22375:6630773,35408748:0,393216,0 -(1,22376:6630773,37658610:25952256,2643078,0 -g1,22376:6630773,37658610 -g1,22376:6303093,37658610 -r1,22383:6401397,37658610:98304,2643078,0 -g1,22376:6600626,37658610 -g1,22376:6797234,37658610 -[1,22376:6797234,37658610:25785795,2643078,0 -(1,22376:6797234,35841286:25785795,825754,196608 -(1,22375:6797234,35841286:0,825754,196608 -r1,22383:7890375,35841286:1093141,1022362,196608 -k1,22375:6797234,35841286:-1093141 -) -(1,22375:6797234,35841286:1093141,825754,196608 -) -k1,22375:8106735,35841286:216360 -k1,22375:9832953,35841286:327680 -k1,22375:12931585,35841286:216359 -k1,22375:14167030,35841286:216360 -k1,22375:16542146,35841286:216360 -k1,22375:18326126,35841286:216359 -(1,22375:18326126,35841286:0,452978,115847 -r1,22383:24311781,35841286:5985655,568825,115847 -k1,22375:18326126,35841286:-5985655 -) -(1,22375:18326126,35841286:5985655,452978,115847 -k1,22375:18326126,35841286:3277 -h1,22375:24308504,35841286:0,411205,112570 -) -k1,22375:24528141,35841286:216360 -k1,22375:25935946,35841286:216360 -(1,22375:25935946,35841286:0,452978,115847 -r1,22383:29811330,35841286:3875384,568825,115847 -k1,22375:25935946,35841286:-3875384 -) -(1,22375:25935946,35841286:3875384,452978,115847 -k1,22375:25935946,35841286:3277 -h1,22375:29808053,35841286:0,411205,112570 -) -k1,22375:30201359,35841286:216359 -k1,22375:32051532,35841286:216360 -k1,22375:32583029,35841286:0 -) -(1,22376:6797234,36682774:25785795,513147,126483 -k1,22375:8014472,36682774:198153 -k1,22375:11726009,36682774:198152 -k1,22375:13499648,36682774:198153 -k1,22375:14155898,36682774:198153 -k1,22375:16479384,36682774:198153 -k1,22375:18375574,36682774:198152 -k1,22375:19744200,36682774:198153 -k1,22375:22124047,36682774:198153 -k1,22375:23341284,36682774:198152 -k1,22375:25825988,36682774:198153 -k1,22375:27292917,36682774:198152 -k1,22375:28474110,36682774:198153 -k1,22375:29939728,36682774:198152 -k1,22375:31759897,36682774:198153 -k1,22375:32583029,36682774:0 -) -(1,22376:6797234,37524262:25785795,513147,134348 -g1,22375:8015548,37524262 -g1,22375:10548514,37524262 -g1,22375:11918216,37524262 -g1,22375:13109005,37524262 -g1,22375:15217298,37524262 -g1,22375:16607972,37524262 -g1,22375:18201152,37524262 -g1,22375:19419466,37524262 -g1,22375:21460257,37524262 -g1,22375:24171481,37524262 -g1,22375:25030002,37524262 -g1,22375:26688062,37524262 -k1,22376:32583029,37524262:2284589 -g1,22376:32583029,37524262 -) -] -g1,22376:32583029,37658610 -) -h1,22376:6630773,37658610:0,0,0 -(1,22379:6630773,38974865:25952256,513147,126483 -h1,22378:6630773,38974865:983040,0,0 -k1,22378:9041531,38974865:231031 -k1,22378:10538718,38974865:231031 -k1,22378:11429041,38974865:231031 -k1,22378:14685869,38974865:231031 -(1,22378:14685869,38974865:0,452978,115847 -r1,22383:18912965,38974865:4227096,568825,115847 -k1,22378:14685869,38974865:-4227096 -) -(1,22378:14685869,38974865:4227096,452978,115847 -k1,22378:14685869,38974865:3277 -h1,22378:18909688,38974865:0,411205,112570 -) -k1,22378:19143997,38974865:231032 -k1,22378:20566473,38974865:231031 -(1,22378:20566473,38974865:0,452978,115847 -r1,22383:25145281,38974865:4578808,568825,115847 -k1,22378:20566473,38974865:-4578808 -) -(1,22378:20566473,38974865:4578808,452978,115847 -k1,22378:20566473,38974865:3277 -h1,22378:25142004,38974865:0,411205,112570 -) -k1,22378:25376312,38974865:231031 -k1,22378:27019644,38974865:231031 -k1,22378:28442120,38974865:231031 -k1,22378:30287958,38974865:231031 -k1,22379:32583029,38974865:0 -) -(1,22379:6630773,39816353:25952256,505283,126483 -k1,22378:7713860,39816353:190487 -k1,22378:10212526,39816353:190488 -k1,22378:12863235,39816353:190487 -k1,22378:16704078,39816353:190488 -k1,22378:19662806,39816353:190487 -k1,22378:20504722,39816353:190488 -k1,22378:22129137,39816353:190487 -k1,22378:22734459,39816353:190479 -(1,22378:22734459,39816353:0,452978,115847 -r1,22383:26609843,39816353:3875384,568825,115847 -k1,22378:22734459,39816353:-3875384 -) -(1,22378:22734459,39816353:3875384,452978,115847 -k1,22378:22734459,39816353:3277 -h1,22378:26606566,39816353:0,411205,112570 -) -k1,22378:26800331,39816353:190488 -k1,22378:28182263,39816353:190487 -(1,22378:28182263,39816353:0,452978,115847 -r1,22383:32409359,39816353:4227096,568825,115847 -k1,22378:28182263,39816353:-4227096 -) -(1,22378:28182263,39816353:4227096,452978,115847 -k1,22378:28182263,39816353:3277 -h1,22378:32406082,39816353:0,411205,112570 -) -k1,22378:32583029,39816353:0 -) -(1,22379:6630773,40657841:25952256,513147,115847 -k1,22378:9992150,40657841:241208 -(1,22378:9992150,40657841:0,459977,115847 -r1,22383:13867534,40657841:3875384,575824,115847 -k1,22378:9992150,40657841:-3875384 -) -(1,22378:9992150,40657841:3875384,459977,115847 -k1,22378:9992150,40657841:3277 -h1,22378:13864257,40657841:0,411205,112570 -) -k1,22378:14108742,40657841:241208 -k1,22378:15541395,40657841:241208 -(1,22378:15541395,40657841:0,459977,115847 -r1,22383:19768491,40657841:4227096,575824,115847 -k1,22378:15541395,40657841:-4227096 -) -(1,22378:15541395,40657841:4227096,459977,115847 -k1,22378:15541395,40657841:3277 -h1,22378:19765214,40657841:0,411205,112570 -) -k1,22378:20009699,40657841:241208 -k1,22378:21663208,40657841:241208 -k1,22378:23095861,40657841:241208 -k1,22378:24951876,40657841:241208 -k1,22378:26212169,40657841:241208 -k1,22378:29202612,40657841:241208 -k1,22378:30103112,40657841:241208 -k1,22378:30700180,40657841:241208 -k1,22378:32583029,40657841:0 -) -(1,22379:6630773,41499329:25952256,513147,134348 -k1,22378:8215054,41499329:358102 -k1,22378:9556197,41499329:358103 -k1,22378:11355436,41499329:358102 -k1,22378:12904984,41499329:358103 -k1,22378:15004378,41499329:358102 -k1,22378:15718341,41499329:358103 -k1,22378:17949462,41499329:358102 -k1,22378:21282244,41499329:358103 -k1,22378:23679826,41499329:358102 -k1,22378:27158098,41499329:358103 -(1,22378:27158098,41499329:0,459977,115847 -r1,22383:31033482,41499329:3875384,575824,115847 -k1,22378:27158098,41499329:-3875384 -) -(1,22378:27158098,41499329:3875384,459977,115847 -k1,22378:27158098,41499329:3277 -h1,22378:31030205,41499329:0,411205,112570 -) -k1,22378:31391584,41499329:358102 -k1,22379:32583029,41499329:0 -) -(1,22379:6630773,42340817:25952256,513147,126483 -(1,22378:6630773,42340817:0,459977,115847 -r1,22383:10857869,42340817:4227096,575824,115847 -k1,22378:6630773,42340817:-4227096 -) -(1,22378:6630773,42340817:4227096,459977,115847 -k1,22378:6630773,42340817:3277 -h1,22378:10854592,42340817:0,411205,112570 -) -k1,22378:11094920,42340817:237051 -k1,22378:12436253,42340817:237051 -k1,22378:13959121,42340817:237052 -k1,22378:14943938,42340817:237051 -k1,22378:16694215,42340817:237051 -k1,22378:18325217,42340817:237051 -k1,22378:19727499,42340817:237052 -k1,22378:22272728,42340817:237051 -k1,22378:23161207,42340817:237051 -k1,22378:24810559,42340817:237051 -k1,22378:26239055,42340817:237051 -k1,22378:28090914,42340817:237052 -k1,22378:30349751,42340817:237051 -k1,22378:31900144,42340817:237051 -k1,22378:32583029,42340817:0 -) -(1,22379:6630773,43182305:25952256,513147,134348 -g1,22378:8056181,43182305 -g1,22378:9568752,43182305 -g1,22378:10427273,43182305 -g1,22378:13593972,43182305 -k1,22379:32583029,43182305:15914108 -g1,22379:32583029,43182305 -) -(1,22381:6630773,44023793:25952256,513147,134348 -h1,22380:6630773,44023793:983040,0,0 -k1,22380:9004159,44023793:193659 -k1,22380:11947053,44023793:193659 -k1,22380:12800004,44023793:193659 -k1,22380:14012747,44023793:193658 -k1,22380:16089255,44023793:193659 -k1,22380:17265954,44023793:193659 -k1,22380:18451173,44023793:193659 -k1,22380:21423559,44023793:193659 -k1,22380:22303380,44023793:193659 -k1,22380:22852899,44023793:193659 -k1,22380:26021236,44023793:193658 -k1,22380:28192772,44023793:193659 -k1,22380:29045723,44023793:193659 -k1,22380:31252648,44023793:193659 -k1,22380:32583029,44023793:0 -) -(1,22381:6630773,44865281:25952256,505283,126483 -k1,22380:8264090,44865281:239366 -k1,22380:9522541,44865281:239366 -k1,22380:13086548,44865281:239366 -k1,22380:14609108,44865281:239365 -k1,22380:16016981,44865281:239366 -k1,22380:19052768,44865281:239366 -k1,22380:20245683,44865281:239366 -k1,22380:21577534,44865281:239366 -(1,22380:21577534,44865281:0,452978,115847 -r1,22383:23342647,44865281:1765113,568825,115847 -k1,22380:21577534,44865281:-1765113 -) -(1,22380:21577534,44865281:1765113,452978,115847 -k1,22380:21577534,44865281:3277 -h1,22380:23339370,44865281:0,411205,112570 -) -k1,22380:23582013,44865281:239366 -k1,22380:24472807,44865281:239366 -k1,22380:26294212,44865281:239366 -k1,22380:26991674,44865281:239365 -k1,22380:27955868,44865281:239366 -k1,22380:29891961,44865281:239366 -k1,22380:31414522,44865281:239366 -k1,22380:32583029,44865281:0 -) -(1,22381:6630773,45706769:25952256,513147,126483 -g1,22380:10134983,45706769 -g1,22380:11962782,45706769 -g1,22380:13181096,45706769 -g1,22380:14868648,45706769 -g1,22380:15727169,45706769 -g1,22380:16282258,45706769 -g1,22380:17764682,45706769 -g1,22380:20825213,45706769 -k1,22381:32583029,45706769:10415639 -g1,22381:32583029,45706769 -) -] -(1,22383:32583029,45706769:0,0,0 -g1,22383:32583029,45706769 -) -) -] -(1,22383:6630773,47279633:25952256,0,0 -h1,22383:6630773,47279633:25952256,0,0 -) -] -(1,22383:4262630,4025873:0,0,0 -[1,22383:-473656,4025873:0,0,0 -(1,22383:-473656,-710413:0,0,0 -(1,22383:-473656,-710413:0,0,0 -g1,22383:-473656,-710413 -) -g1,22383:-473656,-710413 -) -] -) -] -!27613 -}406 -Input:3649:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3650:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3651:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +] +g1,22619:6630773,4812305 +k1,22619:21078841,4812305:13252691 +g1,22619:22701512,4812305 +g1,22619:23350318,4812305 +g1,22619:24759997,4812305 +g1,22619:28372341,4812305 +g1,22619:30105768,4812305 +) +) +] +[1,22619:6630773,45706769:25952256,40108032,0 +(1,22619:6630773,45706769:25952256,40108032,0 +(1,22619:6630773,45706769:0,0,0 +g1,22619:6630773,45706769 +) +[1,22619:6630773,45706769:25952256,40108032,0 +v1,22556:6630773,6254097:0,393216,0 +(1,22556:6630773,20362655:25952256,14501774,0 +g1,22556:6630773,20362655 +g1,22556:6237557,20362655 +r1,22619:6368629,20362655:131072,14501774,0 +g1,22556:6567858,20362655 +g1,22556:6764466,20362655 +[1,22556:6764466,20362655:25818563,14501774,0 +v1,22537:6764466,6254097:0,393216,0 +(1,22554:6764466,20166047:25818563,14305166,196608 +g1,22554:6764466,20166047 +g1,22554:6764466,20166047 +g1,22554:6567858,20166047 +(1,22554:6567858,20166047:0,14305166,196608 +r1,22619:32779637,20166047:26211779,14501774,196608 +k1,22554:6567857,20166047:-26211780 +) +(1,22554:6567858,20166047:26211779,14305166,196608 +[1,22554:6764466,20166047:25818563,14108558,0 +(1,22539:6764466,6488534:25818563,431045,112852 +(1,22538:6764466,6488534:0,0,0 +g1,22538:6764466,6488534 +g1,22538:6764466,6488534 +g1,22538:6436786,6488534 +(1,22538:6436786,6488534:0,0,0 +) +g1,22538:6764466,6488534 +) +k1,22539:6764466,6488534:0 +g1,22539:12075729,6488534 +g1,22539:12739637,6488534 +g1,22539:24026070,6488534 +g1,22539:27345609,6488534 +g1,22539:28009517,6488534 +h1,22539:29005379,6488534:0,0,0 +k1,22539:32583029,6488534:3577650 +g1,22539:32583029,6488534 +) +(1,22544:6764466,7828749:25818563,398014,0 +k1,22543:32583030,7828749:25154656 +g1,22544:32583030,7828749 +) +(1,22544:6764466,8513604:25818563,431045,106246 +k1,22543:7741867,8513604:313493 +k1,22543:8719268,8513604:313493 +k1,22543:11024485,8513604:313493 +k1,22543:15653379,8513604:313493 +k1,22544:32583029,8513604:0 +) +(1,22544:6764466,9198459:25818563,185520,0 +k1,22543:32583028,9198459:24158792 +g1,22544:32583028,9198459 +) +(1,22544:6764466,9883314:25818563,424439,79822 +g1,22543:7760328,9883314 +k1,22543:32583030,9883314:23162932 +g1,22544:32583030,9883314 +) +(1,22544:6764466,10568169:25818563,424439,86428 +g1,22543:7760328,10568169 +g1,22543:8092282,10568169 +g1,22543:8424236,10568169 +g1,22543:10084006,10568169 +g1,22543:10747914,10568169 +k1,22543:32583029,10568169:17519714 +g1,22544:32583029,10568169 +) +(1,22544:6764466,11253024:25818563,424439,86428 +g1,22543:7760328,11253024 +g1,22543:8092282,11253024 +g1,22543:8424236,11253024 +g1,22543:10084006,11253024 +g1,22543:10747914,11253024 +k1,22543:32583029,11253024:17519714 +g1,22544:32583029,11253024 +) +(1,22544:6764466,11937879:25818563,424439,86428 +g1,22543:7760328,11937879 +g1,22543:8092282,11937879 +g1,22543:8424236,11937879 +g1,22543:10084006,11937879 +g1,22543:10747914,11937879 +k1,22543:32583029,11937879:17519714 +g1,22544:32583029,11937879 +) +(1,22544:6764466,12622734:25818563,424439,79822 +g1,22543:7760328,12622734 +g1,22543:8092282,12622734 +g1,22543:8424236,12622734 +g1,22543:10084006,12622734 +g1,22543:10747914,12622734 +k1,22543:32583029,12622734:16855806 +g1,22544:32583029,12622734 +) +(1,22544:6764466,13307589:25818563,424439,79822 +g1,22543:7760328,13307589 +k1,22544:32583030,13307589:24490748 +g1,22544:32583030,13307589 +) +(1,22545:6764466,13992444:25818563,431045,112852 +g1,22545:7760328,13992444 +g1,22545:10747913,13992444 +g1,22545:11411821,13992444 +g1,22545:14067453,13992444 +k1,22545:32583029,13992444:15859945 +g1,22545:32583029,13992444 +) +(1,22545:6764466,14677299:25818563,431045,106246 +g1,22545:7760328,14677299 +g1,22545:9088144,14677299 +g1,22545:9420098,14677299 +g1,22545:10747914,14677299 +g1,22545:13735499,14677299 +g1,22545:16059177,14677299 +g1,22545:16391131,14677299 +g1,22545:16723085,14677299 +g1,22545:17055039,14677299 +g1,22545:17386993,14677299 +g1,22545:17718947,14677299 +g1,22545:18050901,14677299 +g1,22545:18382855,14677299 +g1,22545:18714809,14677299 +g1,22545:19046763,14677299 +g1,22545:19378717,14677299 +g1,22545:19710671,14677299 +g1,22545:20042625,14677299 +g1,22545:20374579,14677299 +g1,22545:20706533,14677299 +g1,22545:21038487,14677299 +g1,22545:21370441,14677299 +g1,22545:21702395,14677299 +g1,22545:22034349,14677299 +g1,22545:22366303,14677299 +g1,22545:22698257,14677299 +g1,22545:23030211,14677299 +g1,22545:23362165,14677299 +g1,22545:23694119,14677299 +g1,22545:24026073,14677299 +g1,22545:24358027,14677299 +g1,22545:24689981,14677299 +g1,22545:25021935,14677299 +g1,22545:25353889,14677299 +k1,22545:32583029,14677299:5901324 +g1,22545:32583029,14677299 +) +(1,22545:6764466,15362154:25818563,424439,112852 +g1,22545:7760328,15362154 +g1,22545:8092282,15362154 +g1,22545:8424236,15362154 +g1,22545:9088144,15362154 +g1,22545:10747914,15362154 +g1,22545:11411822,15362154 +g1,22545:13735500,15362154 +g1,22545:14067454,15362154 +g1,22545:14399408,15362154 +g1,22545:14731362,15362154 +g1,22545:15063316,15362154 +g1,22545:15395270,15362154 +g1,22545:16059178,15362154 +k1,22545:32583029,15362154:5901326 +g1,22545:32583029,15362154 +) +(1,22553:6764466,16047009:25818563,424439,6605 +(1,22545:6764466,16047009:0,0,0 +g1,22545:6764466,16047009 +g1,22545:6764466,16047009 +g1,22545:6436786,16047009 +(1,22545:6436786,16047009:0,0,0 +) +g1,22545:6764466,16047009 +) +g1,22553:7760328,16047009 +g1,22553:8424236,16047009 +g1,22553:9088144,16047009 +g1,22553:11743776,16047009 +g1,22553:12407684,16047009 +g1,22553:13071592,16047009 +h1,22553:13403546,16047009:0,0,0 +k1,22553:32583030,16047009:19179484 +g1,22553:32583030,16047009 +) +(1,22553:6764466,16731864:25818563,424439,9908 +h1,22553:6764466,16731864:0,0,0 +g1,22553:7760328,16731864 +g1,22553:8092282,16731864 +g1,22553:8424236,16731864 +g1,22553:8756190,16731864 +g1,22553:10415960,16731864 +g1,22553:10747914,16731864 +g1,22553:12407684,16731864 +g1,22553:12739638,16731864 +g1,22553:14399408,16731864 +h1,22553:15727224,16731864:0,0,0 +k1,22553:32583028,16731864:16855804 +g1,22553:32583028,16731864 +) +(1,22553:6764466,17416719:25818563,424439,6605 +h1,22553:6764466,17416719:0,0,0 +g1,22553:7760328,17416719 +g1,22553:8092282,17416719 +g1,22553:8424236,17416719 +g1,22553:10415960,17416719 +g1,22553:12407684,17416719 +g1,22553:14399408,17416719 +k1,22553:14399408,17416719:0 +h1,22553:16059178,17416719:0,0,0 +k1,22553:32583029,17416719:16523851 +g1,22553:32583029,17416719 +) +(1,22553:6764466,18101574:25818563,407923,9908 +h1,22553:6764466,18101574:0,0,0 +g1,22553:7760328,18101574 +g1,22553:8424236,18101574 +g1,22553:8756190,18101574 +g1,22553:9088144,18101574 +g1,22553:9752052,18101574 +g1,22553:10084006,18101574 +g1,22553:10415960,18101574 +g1,22553:10747914,18101574 +g1,22553:12407684,18101574 +g1,22553:12739638,18101574 +g1,22553:13071592,18101574 +g1,22553:14399408,18101574 +h1,22553:15395270,18101574:0,0,0 +k1,22553:32583030,18101574:17187760 +g1,22553:32583030,18101574 +) +(1,22553:6764466,18786429:25818563,407923,9908 +h1,22553:6764466,18786429:0,0,0 +g1,22553:7760328,18786429 +g1,22553:8424236,18786429 +g1,22553:8756190,18786429 +g1,22553:9088144,18786429 +g1,22553:10415960,18786429 +g1,22553:10747914,18786429 +g1,22553:12407684,18786429 +g1,22553:12739638,18786429 +g1,22553:13071592,18786429 +g1,22553:13403546,18786429 +g1,22553:14399408,18786429 +h1,22553:15395270,18786429:0,0,0 +k1,22553:32583030,18786429:17187760 +g1,22553:32583030,18786429 +) +(1,22553:6764466,19471284:25818563,407923,9908 +h1,22553:6764466,19471284:0,0,0 +g1,22553:7760328,19471284 +g1,22553:8424236,19471284 +g1,22553:8756190,19471284 +g1,22553:10415960,19471284 +g1,22553:10747914,19471284 +g1,22553:12407684,19471284 +g1,22553:12739638,19471284 +g1,22553:13071592,19471284 +g1,22553:13403546,19471284 +g1,22553:14399408,19471284 +h1,22553:15395270,19471284:0,0,0 +k1,22553:32583030,19471284:17187760 +g1,22553:32583030,19471284 +) +(1,22553:6764466,20156139:25818563,424439,9908 +h1,22553:6764466,20156139:0,0,0 +g1,22553:7760328,20156139 +g1,22553:8424236,20156139 +g1,22553:8756190,20156139 +g1,22553:9752052,20156139 +g1,22553:10084006,20156139 +g1,22553:10415960,20156139 +g1,22553:10747914,20156139 +g1,22553:11743776,20156139 +g1,22553:12075730,20156139 +g1,22553:12407684,20156139 +g1,22553:12739638,20156139 +g1,22553:14399408,20156139 +h1,22553:15395270,20156139:0,0,0 +k1,22553:32583030,20156139:17187760 +g1,22553:32583030,20156139 +) +] +) +g1,22554:32583029,20166047 +g1,22554:6764466,20166047 +g1,22554:6764466,20166047 +g1,22554:32583029,20166047 +g1,22554:32583029,20166047 +) +h1,22554:6764466,20362655:0,0,0 +] +g1,22556:32583029,20362655 +) +h1,22556:6630773,20362655:0,0,0 +(1,22563:6630773,21227735:25952256,513147,126483 +h1,22562:6630773,21227735:983040,0,0 +k1,22562:8982738,21227735:172238 +(1,22562:8982738,21227735:0,452978,115847 +r1,22619:11099563,21227735:2116825,568825,115847 +k1,22562:8982738,21227735:-2116825 +) +(1,22562:8982738,21227735:2116825,452978,115847 +k1,22562:8982738,21227735:3277 +h1,22562:11096286,21227735:0,411205,112570 +) +k1,22562:11271802,21227735:172239 +k1,22562:14469837,21227735:172238 +k1,22562:16209696,21227735:172238 +k1,22562:18405031,21227735:172239 +k1,22562:19568829,21227735:172238 +k1,22562:20760153,21227735:172239 +k1,22562:24704643,21227735:172238 +k1,22562:25528309,21227735:172238 +(1,22562:25528309,21227735:0,452978,115847 +r1,22619:27645134,21227735:2116825,568825,115847 +k1,22562:25528309,21227735:-2116825 +) +(1,22562:25528309,21227735:2116825,452978,115847 +k1,22562:25528309,21227735:3277 +h1,22562:27641857,21227735:0,411205,112570 +) +k1,22562:27817373,21227735:172239 +k1,22562:31015408,21227735:172238 +k1,22562:32583029,21227735:0 +) +(1,22563:6630773,22092815:25952256,505283,126483 +k1,22562:8820856,22092815:305269 +k1,22562:9753960,22092815:305269 +k1,22562:12725234,22092815:305269 +k1,22562:13681931,22092815:305269 +k1,22562:15006284,22092815:305268 +k1,22562:18150573,22092815:305269 +(1,22562:18150573,22092815:0,452978,115847 +r1,22619:22025957,22092815:3875384,568825,115847 +k1,22562:18150573,22092815:-3875384 +) +(1,22562:18150573,22092815:3875384,452978,115847 +k1,22562:18150573,22092815:3277 +h1,22562:22022680,22092815:0,411205,112570 +) +k1,22562:22504896,22092815:305269 +(1,22562:22504896,22092815:0,452978,115847 +r1,22619:26731992,22092815:4227096,568825,115847 +k1,22562:22504896,22092815:-4227096 +) +(1,22562:22504896,22092815:4227096,452978,115847 +k1,22562:22504896,22092815:3277 +h1,22562:26728715,22092815:0,411205,112570 +) +k1,22562:27210931,22092815:305269 +(1,22562:27210931,22092815:0,452978,115847 +r1,22619:31086315,22092815:3875384,568825,115847 +k1,22562:27210931,22092815:-3875384 +) +(1,22562:27210931,22092815:3875384,452978,115847 +k1,22562:27210931,22092815:3277 +h1,22562:31083038,22092815:0,411205,112570 +) +k1,22562:31391584,22092815:305269 +k1,22563:32583029,22092815:0 +) +(1,22563:6630773,22957895:25952256,513147,126483 +(1,22562:6630773,22957895:0,452978,115847 +r1,22619:11209581,22957895:4578808,568825,115847 +k1,22562:6630773,22957895:-4578808 +) +(1,22562:6630773,22957895:4578808,452978,115847 +k1,22562:6630773,22957895:3277 +h1,22562:11206304,22957895:0,411205,112570 +) +k1,22562:11663452,22957895:280201 +k1,22562:13966748,22957895:280200 +k1,22562:17007325,22957895:280201 +k1,22562:20313323,22957895:280201 +k1,22562:21878029,22957895:280200 +k1,22562:23773037,22957895:280201 +k1,22562:29547121,22957895:280201 +k1,22562:31096017,22957895:280119 +k1,22562:32583029,22957895:0 +) +(1,22563:6630773,23822975:25952256,513147,126483 +k1,22562:7882053,23822975:297731 +k1,22562:12212870,23822975:297731 +k1,22562:13908484,23822975:297731 +k1,22562:15225299,23822975:297730 +k1,22562:16615515,23822975:297731 +k1,22562:17580402,23822975:297731 +(1,22562:17580402,23822975:0,452978,115847 +r1,22619:23566057,23822975:5985655,568825,115847 +k1,22562:17580402,23822975:-5985655 +) +(1,22562:17580402,23822975:5985655,452978,115847 +k1,22562:17580402,23822975:3277 +h1,22562:23562780,23822975:0,411205,112570 +) +k1,22562:23863788,23822975:297731 +k1,22562:24812947,23822975:297731 +k1,22562:27730807,23822975:297731 +k1,22562:28384397,23822975:297730 +k1,22562:29908307,23822975:297731 +k1,22562:31189078,23822975:297731 +k1,22562:32583029,23822975:0 +) +(1,22563:6630773,24688055:25952256,513147,126483 +g1,22562:12490347,24688055 +g1,22562:14423659,24688055 +g1,22562:17134883,24688055 +g1,22562:18281763,24688055 +g1,22562:20662686,24688055 +g1,22562:22129381,24688055 +k1,22563:32583029,24688055:7502562 +g1,22563:32583029,24688055 +) +v1,22565:6630773,25372910:0,393216,0 +(1,22570:6630773,26405054:25952256,1425360,196608 +g1,22570:6630773,26405054 +g1,22570:6630773,26405054 +g1,22570:6434165,26405054 +(1,22570:6434165,26405054:0,1425360,196608 +r1,22619:32779637,26405054:26345472,1621968,196608 +k1,22570:6434165,26405054:-26345472 +) +(1,22570:6434165,26405054:26345472,1425360,196608 +[1,22570:6630773,26405054:25952256,1228752,0 +(1,22567:6630773,25607347:25952256,431045,106246 +(1,22566:6630773,25607347:0,0,0 +g1,22566:6630773,25607347 +g1,22566:6630773,25607347 +g1,22566:6303093,25607347 +(1,22566:6303093,25607347:0,0,0 +) +g1,22566:6630773,25607347 +) +k1,22567:6630773,25607347:0 +g1,22567:14265714,25607347 +g1,22567:15925484,25607347 +g1,22567:16589392,25607347 +k1,22567:16589392,25607347:0 +h1,22567:21568701,25607347:0,0,0 +k1,22567:32583029,25607347:11014328 +g1,22567:32583029,25607347 +) +(1,22568:6630773,26292202:25952256,431045,112852 +h1,22568:6630773,26292202:0,0,0 +g1,22568:15261575,26292202 +g1,22568:17253299,26292202 +g1,22568:17917207,26292202 +h1,22568:21236746,26292202:0,0,0 +k1,22568:32583029,26292202:11346283 +g1,22568:32583029,26292202 +) +] +) +g1,22570:32583029,26405054 +g1,22570:6630773,26405054 +g1,22570:6630773,26405054 +g1,22570:32583029,26405054 +g1,22570:32583029,26405054 +) +h1,22570:6630773,26601662:0,0,0 +(1,22575:6630773,27286517:25952256,513147,134348 +h1,22573:6630773,27286517:983040,0,0 +g1,22573:9275150,27286517 +g1,22573:11195354,27286517 +g1,22573:11750443,27286517 +g1,22573:12932712,27286517 +g1,22573:16493938,27286517 +g1,22573:17712252,27286517 +g1,22573:20886816,27286517 +g1,22573:22485894,27286517 +k1,22575:32583029,27286517:10097135 +g1,22575:32583029,27286517 +) +v1,22575:6630773,27971372:0,393216,0 +(1,22584:6630773,31709906:25952256,4131750,196608 +g1,22584:6630773,31709906 +g1,22584:6630773,31709906 +g1,22584:6434165,31709906 +(1,22584:6434165,31709906:0,4131750,196608 +r1,22619:32779637,31709906:26345472,4328358,196608 +k1,22584:6434165,31709906:-26345472 +) +(1,22584:6434165,31709906:26345472,4131750,196608 +[1,22584:6630773,31709906:25952256,3935142,0 +(1,22583:6630773,28199203:25952256,424439,106246 +(1,22576:6630773,28199203:0,0,0 +g1,22576:6630773,28199203 +g1,22576:6630773,28199203 +g1,22576:6303093,28199203 +(1,22576:6303093,28199203:0,0,0 +) +g1,22576:6630773,28199203 +) +k1,22583:6630773,28199203:0 +k1,22583:6630773,28199203:0 +h1,22583:10282267,28199203:0,0,0 +k1,22583:32583029,28199203:22300762 +g1,22583:32583029,28199203 +) +(1,22583:6630773,28884058:25952256,424439,86428 +h1,22583:6630773,28884058:0,0,0 +k1,22583:6630773,28884058:0 +h1,22583:9618359,28884058:0,0,0 +k1,22583:32583029,28884058:22964670 +g1,22583:32583029,28884058 +) +(1,22583:6630773,29568913:25952256,424439,86428 +h1,22583:6630773,29568913:0,0,0 +k1,22583:6630773,29568913:0 +h1,22583:9618359,29568913:0,0,0 +k1,22583:32583029,29568913:22964670 +g1,22583:32583029,29568913 +) +(1,22583:6630773,30253768:25952256,424439,86428 +h1,22583:6630773,30253768:0,0,0 +k1,22583:6630773,30253768:0 +h1,22583:9618359,30253768:0,0,0 +k1,22583:32583029,30253768:22964670 +g1,22583:32583029,30253768 +) +(1,22583:6630773,30938623:25952256,424439,86428 +h1,22583:6630773,30938623:0,0,0 +k1,22583:6630773,30938623:0 +h1,22583:9618359,30938623:0,0,0 +k1,22583:32583029,30938623:22964670 +g1,22583:32583029,30938623 +) +(1,22583:6630773,31623478:25952256,424439,86428 +h1,22583:6630773,31623478:0,0,0 +k1,22583:6630773,31623478:0 +h1,22583:9618359,31623478:0,0,0 +k1,22583:32583029,31623478:22964670 +g1,22583:32583029,31623478 +) +] +) +g1,22584:32583029,31709906 +g1,22584:6630773,31709906 +g1,22584:6630773,31709906 +g1,22584:32583029,31709906 +g1,22584:32583029,31709906 +) +h1,22584:6630773,31906514:0,0,0 +v1,22588:6630773,32771594:0,393216,0 +(1,22589:6630773,34908579:25952256,2530201,0 +g1,22589:6630773,34908579 +g1,22589:6237557,34908579 +r1,22619:6368629,34908579:131072,2530201,0 +g1,22589:6567858,34908579 +g1,22589:6764466,34908579 +[1,22589:6764466,34908579:25818563,2530201,0 +(1,22589:6764466,33044071:25818563,665693,196608 +(1,22588:6764466,33044071:0,665693,196608 +r1,22619:8010564,33044071:1246098,862301,196608 +k1,22588:6764466,33044071:-1246098 +) +(1,22588:6764466,33044071:1246098,665693,196608 +) +k1,22588:8213569,33044071:203005 +k1,22588:9939787,33044071:327680 +k1,22588:13025066,33044071:203006 +k1,22588:14247156,33044071:203005 +k1,22588:16608917,33044071:203005 +k1,22588:18379544,33044071:203006 +(1,22588:18379544,33044071:0,452978,115847 +r1,22619:24365199,33044071:5985655,568825,115847 +k1,22588:18379544,33044071:-5985655 +) +(1,22588:18379544,33044071:5985655,452978,115847 +k1,22588:18379544,33044071:3277 +h1,22588:24361922,33044071:0,411205,112570 +) +k1,22588:24568204,33044071:203005 +k1,22588:25962654,33044071:203005 +(1,22588:25962654,33044071:0,452978,115847 +r1,22619:29838038,33044071:3875384,568825,115847 +k1,22588:25962654,33044071:-3875384 +) +(1,22588:25962654,33044071:3875384,452978,115847 +k1,22588:25962654,33044071:3277 +h1,22588:29834761,33044071:0,411205,112570 +) +k1,22588:30214714,33044071:203006 +k1,22588:32051532,33044071:203005 +k1,22588:32583029,33044071:0 +) +(1,22589:6764466,33909151:25818563,513147,126483 +k1,22588:7984044,33909151:200493 +k1,22588:11697923,33909151:200494 +k1,22588:13473902,33909151:200493 +k1,22588:14132492,33909151:200493 +k1,22588:16458319,33909151:200494 +k1,22588:18356850,33909151:200493 +k1,22588:19727816,33909151:200493 +k1,22588:22110003,33909151:200493 +k1,22588:23329582,33909151:200494 +k1,22588:25816626,33909151:200493 +k1,22588:27285895,33909151:200492 +k1,22588:28469428,33909151:200493 +k1,22588:29937388,33909151:200494 +k1,22588:31759897,33909151:200493 +k1,22588:32583029,33909151:0 +) +(1,22589:6764466,34774231:25818563,513147,134348 +g1,22588:7982780,34774231 +g1,22588:10515746,34774231 +g1,22588:11885448,34774231 +g1,22588:13076237,34774231 +g1,22588:15184530,34774231 +g1,22588:16575204,34774231 +g1,22588:18168384,34774231 +g1,22588:19386698,34774231 +g1,22588:21427489,34774231 +g1,22588:24138713,34774231 +g1,22588:24997234,34774231 +g1,22588:26655294,34774231 +k1,22589:32583029,34774231:2317357 +g1,22589:32583029,34774231 +) +] +g1,22589:32583029,34908579 +) +h1,22589:6630773,34908579:0,0,0 +(1,22592:6630773,35773659:25952256,513147,126483 +h1,22591:6630773,35773659:983040,0,0 +k1,22591:9041531,35773659:231031 +k1,22591:10538718,35773659:231031 +k1,22591:11429041,35773659:231031 +k1,22591:14685869,35773659:231031 +(1,22591:14685869,35773659:0,452978,115847 +r1,22619:18912965,35773659:4227096,568825,115847 +k1,22591:14685869,35773659:-4227096 +) +(1,22591:14685869,35773659:4227096,452978,115847 +k1,22591:14685869,35773659:3277 +h1,22591:18909688,35773659:0,411205,112570 +) +k1,22591:19143997,35773659:231032 +k1,22591:20566473,35773659:231031 +(1,22591:20566473,35773659:0,452978,115847 +r1,22619:25145281,35773659:4578808,568825,115847 +k1,22591:20566473,35773659:-4578808 +) +(1,22591:20566473,35773659:4578808,452978,115847 +k1,22591:20566473,35773659:3277 +h1,22591:25142004,35773659:0,411205,112570 +) +k1,22591:25376312,35773659:231031 +k1,22591:27019644,35773659:231031 +k1,22591:28442120,35773659:231031 +k1,22591:30287958,35773659:231031 +k1,22592:32583029,35773659:0 +) +(1,22592:6630773,36638739:25952256,505283,126483 +k1,22591:7713860,36638739:190487 +k1,22591:10212526,36638739:190488 +k1,22591:12863235,36638739:190487 +k1,22591:16704078,36638739:190488 +k1,22591:19662806,36638739:190487 +k1,22591:20504722,36638739:190488 +k1,22591:22129137,36638739:190487 +k1,22591:22734459,36638739:190479 +(1,22591:22734459,36638739:0,452978,115847 +r1,22619:26609843,36638739:3875384,568825,115847 +k1,22591:22734459,36638739:-3875384 +) +(1,22591:22734459,36638739:3875384,452978,115847 +k1,22591:22734459,36638739:3277 +h1,22591:26606566,36638739:0,411205,112570 +) +k1,22591:26800331,36638739:190488 +k1,22591:28182263,36638739:190487 +(1,22591:28182263,36638739:0,452978,115847 +r1,22619:32409359,36638739:4227096,568825,115847 +k1,22591:28182263,36638739:-4227096 +) +(1,22591:28182263,36638739:4227096,452978,115847 +k1,22591:28182263,36638739:3277 +h1,22591:32406082,36638739:0,411205,112570 +) +k1,22591:32583029,36638739:0 +) +(1,22592:6630773,37503819:25952256,513147,115847 +k1,22591:9992150,37503819:241208 +(1,22591:9992150,37503819:0,459977,115847 +r1,22619:13867534,37503819:3875384,575824,115847 +k1,22591:9992150,37503819:-3875384 +) +(1,22591:9992150,37503819:3875384,459977,115847 +k1,22591:9992150,37503819:3277 +h1,22591:13864257,37503819:0,411205,112570 +) +k1,22591:14108742,37503819:241208 +k1,22591:15541395,37503819:241208 +(1,22591:15541395,37503819:0,459977,115847 +r1,22619:19768491,37503819:4227096,575824,115847 +k1,22591:15541395,37503819:-4227096 +) +(1,22591:15541395,37503819:4227096,459977,115847 +k1,22591:15541395,37503819:3277 +h1,22591:19765214,37503819:0,411205,112570 +) +k1,22591:20009699,37503819:241208 +k1,22591:21663208,37503819:241208 +k1,22591:23095861,37503819:241208 +k1,22591:24951876,37503819:241208 +k1,22591:26212169,37503819:241208 +k1,22591:29202612,37503819:241208 +k1,22591:30103112,37503819:241208 +k1,22591:30700180,37503819:241208 +k1,22591:32583029,37503819:0 +) +(1,22592:6630773,38368899:25952256,513147,134348 +k1,22591:8215054,38368899:358102 +k1,22591:9556197,38368899:358103 +k1,22591:11355436,38368899:358102 +k1,22591:12904984,38368899:358103 +k1,22591:15004378,38368899:358102 +k1,22591:15718341,38368899:358103 +k1,22591:17949462,38368899:358102 +k1,22591:21282244,38368899:358103 +k1,22591:23679826,38368899:358102 +k1,22591:27158098,38368899:358103 +(1,22591:27158098,38368899:0,459977,115847 +r1,22619:31033482,38368899:3875384,575824,115847 +k1,22591:27158098,38368899:-3875384 +) +(1,22591:27158098,38368899:3875384,459977,115847 +k1,22591:27158098,38368899:3277 +h1,22591:31030205,38368899:0,411205,112570 +) +k1,22591:31391584,38368899:358102 +k1,22592:32583029,38368899:0 +) +(1,22592:6630773,39233979:25952256,513147,126483 +(1,22591:6630773,39233979:0,459977,115847 +r1,22619:10857869,39233979:4227096,575824,115847 +k1,22591:6630773,39233979:-4227096 +) +(1,22591:6630773,39233979:4227096,459977,115847 +k1,22591:6630773,39233979:3277 +h1,22591:10854592,39233979:0,411205,112570 +) +k1,22591:11094920,39233979:237051 +k1,22591:12436253,39233979:237051 +k1,22591:13959121,39233979:237052 +k1,22591:14943938,39233979:237051 +k1,22591:16694215,39233979:237051 +k1,22591:18325217,39233979:237051 +k1,22591:19727499,39233979:237052 +k1,22591:22272728,39233979:237051 +k1,22591:23161207,39233979:237051 +k1,22591:24810559,39233979:237051 +k1,22591:26239055,39233979:237051 +k1,22591:28090914,39233979:237052 +k1,22591:30349751,39233979:237051 +k1,22591:31900144,39233979:237051 +k1,22591:32583029,39233979:0 +) +(1,22592:6630773,40099059:25952256,513147,134348 +g1,22591:8056181,40099059 +g1,22591:9568752,40099059 +g1,22591:10427273,40099059 +g1,22591:13593972,40099059 +k1,22592:32583029,40099059:15914108 +g1,22592:32583029,40099059 +) +(1,22594:6630773,40964139:25952256,513147,134348 +h1,22593:6630773,40964139:983040,0,0 +k1,22593:9004159,40964139:193659 +k1,22593:11947053,40964139:193659 +k1,22593:12800004,40964139:193659 +k1,22593:14012747,40964139:193658 +k1,22593:16089255,40964139:193659 +k1,22593:17265954,40964139:193659 +k1,22593:18451173,40964139:193659 +k1,22593:21423559,40964139:193659 +k1,22593:22303380,40964139:193659 +k1,22593:22852899,40964139:193659 +k1,22593:26021236,40964139:193658 +k1,22593:28192772,40964139:193659 +k1,22593:29045723,40964139:193659 +k1,22593:31252648,40964139:193659 +k1,22593:32583029,40964139:0 +) +(1,22594:6630773,41829219:25952256,505283,126483 +k1,22593:8264090,41829219:239366 +k1,22593:9522541,41829219:239366 +k1,22593:13086548,41829219:239366 +k1,22593:14609108,41829219:239365 +k1,22593:16016981,41829219:239366 +k1,22593:19052768,41829219:239366 +k1,22593:20245683,41829219:239366 +k1,22593:21577534,41829219:239366 +(1,22593:21577534,41829219:0,452978,115847 +r1,22619:23342647,41829219:1765113,568825,115847 +k1,22593:21577534,41829219:-1765113 +) +(1,22593:21577534,41829219:1765113,452978,115847 +k1,22593:21577534,41829219:3277 +h1,22593:23339370,41829219:0,411205,112570 +) +k1,22593:23582013,41829219:239366 +k1,22593:24472807,41829219:239366 +k1,22593:26294212,41829219:239366 +k1,22593:26991674,41829219:239365 +k1,22593:27955868,41829219:239366 +k1,22593:29891961,41829219:239366 +k1,22593:31414522,41829219:239366 +k1,22593:32583029,41829219:0 +) +(1,22594:6630773,42694299:25952256,513147,126483 +g1,22593:10134983,42694299 +g1,22593:11962782,42694299 +g1,22593:13181096,42694299 +g1,22593:14868648,42694299 +g1,22593:15727169,42694299 +g1,22593:16282258,42694299 +g1,22593:17764682,42694299 +g1,22593:20825213,42694299 +k1,22594:32583029,42694299:10415639 +g1,22594:32583029,42694299 +) +v1,22596:6630773,43379154:0,393216,0 +(1,22619:6630773,45194195:25952256,2208257,196608 +g1,22619:6630773,45194195 +g1,22619:6630773,45194195 +g1,22619:6434165,45194195 +(1,22619:6434165,45194195:0,2208257,196608 +r1,22619:32779637,45194195:26345472,2404865,196608 +k1,22619:6434165,45194195:-26345472 +) +(1,22619:6434165,45194195:26345472,2208257,196608 +[1,22619:6630773,45194195:25952256,2011649,0 +(1,22598:6630773,43613591:25952256,431045,112852 +(1,22597:6630773,43613591:0,0,0 +g1,22597:6630773,43613591 +g1,22597:6630773,43613591 +g1,22597:6303093,43613591 +(1,22597:6303093,43613591:0,0,0 +) +g1,22597:6630773,43613591 +) +g1,22598:9286405,43613591 +g1,22598:10282267,43613591 +g1,22598:15261576,43613591 +g1,22598:15925484,43613591 +k1,22598:15925484,43613591:0 +h1,22598:26879963,43613591:0,0,0 +k1,22598:32583029,43613591:5703066 +g1,22598:32583029,43613591 +) +(1,22599:6630773,44298446:25952256,424439,112852 +h1,22599:6630773,44298446:0,0,0 +k1,22599:6630773,44298446:0 +h1,22599:11610082,44298446:0,0,0 +k1,22599:32583030,44298446:20972948 +g1,22599:32583030,44298446 +) +(1,22603:6630773,45114373:25952256,424439,79822 +(1,22601:6630773,45114373:0,0,0 +g1,22601:6630773,45114373 +g1,22601:6630773,45114373 +g1,22601:6303093,45114373 +(1,22601:6303093,45114373:0,0,0 +) +g1,22601:6630773,45114373 +) +g1,22603:7626635,45114373 +g1,22603:8954451,45114373 +h1,22603:9286405,45114373:0,0,0 +k1,22603:32583029,45114373:23296624 +g1,22603:32583029,45114373 +) +] +) +g1,22619:32583029,45194195 +g1,22619:6630773,45194195 +g1,22619:6630773,45194195 +g1,22619:32583029,45194195 +g1,22619:32583029,45194195 +) +] +(1,22619:32583029,45706769:0,0,0 +g1,22619:32583029,45706769 +) +) +] +(1,22619:6630773,47279633:25952256,0,0 +h1,22619:6630773,47279633:25952256,0,0 +) +] +(1,22619:4262630,4025873:0,0,0 +[1,22619:-473656,4025873:0,0,0 +(1,22619:-473656,-710413:0,0,0 +(1,22619:-473656,-710413:0,0,0 +g1,22619:-473656,-710413 +) +g1,22619:-473656,-710413 +) +] +) +] +!29235 +}389 +Input:3690:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3691:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3692:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !294 -{407 -[1,22617:4262630,47279633:28320399,43253760,0 -(1,22617:4262630,4025873:0,0,0 -[1,22617:-473656,4025873:0,0,0 -(1,22617:-473656,-710413:0,0,0 -(1,22617:-473656,-644877:0,0,0 -k1,22617:-473656,-644877:-65536 +{390 +[1,22830:4262630,47279633:28320399,43253760,0 +(1,22830:4262630,4025873:0,0,0 +[1,22830:-473656,4025873:0,0,0 +(1,22830:-473656,-710413:0,0,0 +(1,22830:-473656,-644877:0,0,0 +k1,22830:-473656,-644877:-65536 ) -(1,22617:-473656,4736287:0,0,0 -k1,22617:-473656,4736287:5209943 +(1,22830:-473656,4736287:0,0,0 +k1,22830:-473656,4736287:5209943 ) -g1,22617:-473656,-710413 +g1,22830:-473656,-710413 ) ] ) -[1,22617:6630773,47279633:25952256,43253760,0 -[1,22617:6630773,4812305:25952256,786432,0 -(1,22617:6630773,4812305:25952256,505283,134348 -(1,22617:6630773,4812305:25952256,505283,134348 -g1,22617:3078558,4812305 -[1,22617:3078558,4812305:0,0,0 -(1,22617:3078558,2439708:0,1703936,0 -k1,22617:1358238,2439708:-1720320 -(1,21457:1358238,2439708:1720320,1703936,0 -(1,21457:1358238,2439708:1179648,16384,0 -r1,22617:2537886,2439708:1179648,16384,0 +[1,22830:6630773,47279633:25952256,43253760,0 +[1,22830:6630773,4812305:25952256,786432,0 +(1,22830:6630773,4812305:25952256,513147,126483 +(1,22830:6630773,4812305:25952256,513147,126483 +g1,22830:3078558,4812305 +[1,22830:3078558,4812305:0,0,0 +(1,22830:3078558,2439708:0,1703936,0 +k1,22830:1358238,2439708:-1720320 +(1,21670:1358238,2439708:1720320,1703936,0 +(1,21670:1358238,2439708:1179648,16384,0 +r1,22830:2537886,2439708:1179648,16384,0 ) -g1,21457:3062174,2439708 -(1,21457:3062174,2439708:16384,1703936,0 -[1,21457:3062174,2439708:25952256,1703936,0 -(1,21457:3062174,1915420:25952256,1179648,0 -(1,21457:3062174,1915420:16384,1179648,0 -r1,22617:3078558,1915420:16384,1179648,0 +g1,21670:3062174,2439708 +(1,21670:3062174,2439708:16384,1703936,0 +[1,21670:3062174,2439708:25952256,1703936,0 +(1,21670:3062174,1915420:25952256,1179648,0 +(1,21670:3062174,1915420:16384,1179648,0 +r1,22830:3078558,1915420:16384,1179648,0 ) -k1,21457:29014430,1915420:25935872 -g1,21457:29014430,1915420 +k1,21670:29014430,1915420:25935872 +g1,21670:29014430,1915420 ) ] ) ) ) ] -[1,22617:3078558,4812305:0,0,0 -(1,22617:3078558,2439708:0,1703936,0 -g1,22617:29030814,2439708 -g1,22617:36135244,2439708 -(1,21457:36135244,2439708:1720320,1703936,0 -(1,21457:36135244,2439708:16384,1703936,0 -[1,21457:36135244,2439708:25952256,1703936,0 -(1,21457:36135244,1915420:25952256,1179648,0 -(1,21457:36135244,1915420:16384,1179648,0 -r1,22617:36151628,1915420:16384,1179648,0 +[1,22830:3078558,4812305:0,0,0 +(1,22830:3078558,2439708:0,1703936,0 +g1,22830:29030814,2439708 +g1,22830:36135244,2439708 +(1,21670:36135244,2439708:1720320,1703936,0 +(1,21670:36135244,2439708:16384,1703936,0 +[1,21670:36135244,2439708:25952256,1703936,0 +(1,21670:36135244,1915420:25952256,1179648,0 +(1,21670:36135244,1915420:16384,1179648,0 +r1,22830:36151628,1915420:16384,1179648,0 ) -k1,21457:62087500,1915420:25935872 -g1,21457:62087500,1915420 +k1,21670:62087500,1915420:25935872 +g1,21670:62087500,1915420 ) ] ) -g1,21457:36675916,2439708 -(1,21457:36675916,2439708:1179648,16384,0 -r1,22617:37855564,2439708:1179648,16384,0 +g1,21670:36675916,2439708 +(1,21670:36675916,2439708:1179648,16384,0 +r1,22830:37855564,2439708:1179648,16384,0 ) ) -k1,22617:3078556,2439708:-34777008 +k1,22830:3078556,2439708:-34777008 ) ] -[1,22617:3078558,4812305:0,0,0 -(1,22617:3078558,49800853:0,16384,2228224 -k1,22617:1358238,49800853:-1720320 -(1,21457:1358238,49800853:1720320,16384,2228224 -(1,21457:1358238,49800853:1179648,16384,0 -r1,22617:2537886,49800853:1179648,16384,0 +[1,22830:3078558,4812305:0,0,0 +(1,22830:3078558,49800853:0,16384,2228224 +k1,22830:1358238,49800853:-1720320 +(1,21670:1358238,49800853:1720320,16384,2228224 +(1,21670:1358238,49800853:1179648,16384,0 +r1,22830:2537886,49800853:1179648,16384,0 ) -g1,21457:3062174,49800853 -(1,21457:3062174,52029077:16384,1703936,0 -[1,21457:3062174,52029077:25952256,1703936,0 -(1,21457:3062174,51504789:25952256,1179648,0 -(1,21457:3062174,51504789:16384,1179648,0 -r1,22617:3078558,51504789:16384,1179648,0 +g1,21670:3062174,49800853 +(1,21670:3062174,52029077:16384,1703936,0 +[1,21670:3062174,52029077:25952256,1703936,0 +(1,21670:3062174,51504789:25952256,1179648,0 +(1,21670:3062174,51504789:16384,1179648,0 +r1,22830:3078558,51504789:16384,1179648,0 ) -k1,21457:29014430,51504789:25935872 -g1,21457:29014430,51504789 +k1,21670:29014430,51504789:25935872 +g1,21670:29014430,51504789 ) ] ) ) ) ] -[1,22617:3078558,4812305:0,0,0 -(1,22617:3078558,49800853:0,16384,2228224 -g1,22617:29030814,49800853 -g1,22617:36135244,49800853 -(1,21457:36135244,49800853:1720320,16384,2228224 -(1,21457:36135244,52029077:16384,1703936,0 -[1,21457:36135244,52029077:25952256,1703936,0 -(1,21457:36135244,51504789:25952256,1179648,0 -(1,21457:36135244,51504789:16384,1179648,0 -r1,22617:36151628,51504789:16384,1179648,0 +[1,22830:3078558,4812305:0,0,0 +(1,22830:3078558,49800853:0,16384,2228224 +g1,22830:29030814,49800853 +g1,22830:36135244,49800853 +(1,21670:36135244,49800853:1720320,16384,2228224 +(1,21670:36135244,52029077:16384,1703936,0 +[1,21670:36135244,52029077:25952256,1703936,0 +(1,21670:36135244,51504789:25952256,1179648,0 +(1,21670:36135244,51504789:16384,1179648,0 +r1,22830:36151628,51504789:16384,1179648,0 ) -k1,21457:62087500,51504789:25935872 -g1,21457:62087500,51504789 +k1,21670:62087500,51504789:25935872 +g1,21670:62087500,51504789 ) ] ) -g1,21457:36675916,49800853 -(1,21457:36675916,49800853:1179648,16384,0 -r1,22617:37855564,49800853:1179648,16384,0 +g1,21670:36675916,49800853 +(1,21670:36675916,49800853:1179648,16384,0 +r1,22830:37855564,49800853:1179648,16384,0 ) ) -k1,22617:3078556,49800853:-34777008 +k1,22830:3078556,49800853:-34777008 ) ] -g1,22617:6630773,4812305 -k1,22617:21078841,4812305:13252691 -g1,22617:22701512,4812305 -g1,22617:23350318,4812305 -g1,22617:24759997,4812305 -g1,22617:28372341,4812305 -g1,22617:30105768,4812305 -) -) -] -[1,22617:6630773,45706769:25952256,40108032,0 -(1,22617:6630773,45706769:25952256,40108032,0 -(1,22617:6630773,45706769:0,0,0 -g1,22617:6630773,45706769 -) -[1,22617:6630773,45706769:25952256,40108032,0 -v1,22383:6630773,6254097:0,393216,0 -(1,22406:6630773,15783681:25952256,9922800,196608 -g1,22406:6630773,15783681 -g1,22406:6630773,15783681 -g1,22406:6434165,15783681 -(1,22406:6434165,15783681:0,9922800,196608 -r1,22617:32779637,15783681:26345472,10119408,196608 -k1,22406:6434165,15783681:-26345472 -) -(1,22406:6434165,15783681:26345472,9922800,196608 -[1,22406:6630773,15783681:25952256,9726192,0 -(1,22385:6630773,6468007:25952256,410518,107478 -(1,22384:6630773,6468007:0,0,0 -g1,22384:6630773,6468007 -g1,22384:6630773,6468007 -g1,22384:6303093,6468007 -(1,22384:6303093,6468007:0,0,0 -) -g1,22384:6630773,6468007 -) -g1,22385:9159939,6468007 -g1,22385:10108377,6468007 -g1,22385:14850563,6468007 -g1,22385:15482855,6468007 -k1,22385:15482855,6468007:0 -h1,22385:25915662,6468007:0,0,0 -k1,22385:32583029,6468007:6667367 -g1,22385:32583029,6468007 -) -(1,22386:6630773,7134185:25952256,404226,107478 -h1,22386:6630773,7134185:0,0,0 -k1,22386:6630773,7134185:0 -h1,22386:11372958,7134185:0,0,0 -k1,22386:32583030,7134185:21210072 -g1,22386:32583030,7134185 -) -(1,22390:6630773,7800363:25952256,404226,76021 -(1,22388:6630773,7800363:0,0,0 -g1,22388:6630773,7800363 -g1,22388:6630773,7800363 -g1,22388:6303093,7800363 -(1,22388:6303093,7800363:0,0,0 -) -g1,22388:6630773,7800363 -) -g1,22390:7579210,7800363 -g1,22390:8843793,7800363 -h1,22390:9159939,7800363:0,0,0 -k1,22390:32583029,7800363:23423090 -g1,22390:32583029,7800363 -) -(1,22392:6630773,9121901:25952256,404226,76021 -(1,22391:6630773,9121901:0,0,0 -g1,22391:6630773,9121901 -g1,22391:6630773,9121901 -g1,22391:6303093,9121901 -(1,22391:6303093,9121901:0,0,0 -) -g1,22391:6630773,9121901 -) -k1,22392:6630773,9121901:0 -h1,22392:10424521,9121901:0,0,0 -k1,22392:32583029,9121901:22158508 -g1,22392:32583029,9121901 -) -(1,22405:6630773,9788079:25952256,404226,9436 -(1,22394:6630773,9788079:0,0,0 -g1,22394:6630773,9788079 -g1,22394:6630773,9788079 -g1,22394:6303093,9788079 -(1,22394:6303093,9788079:0,0,0 -) -g1,22394:6630773,9788079 -) -g1,22405:7579210,9788079 -g1,22405:9159939,9788079 -g1,22405:9476085,9788079 -g1,22405:11056814,9788079 -g1,22405:12637543,9788079 -h1,22405:13902126,9788079:0,0,0 -k1,22405:32583030,9788079:18680904 -g1,22405:32583030,9788079 -) -(1,22405:6630773,10454257:25952256,0,0 -h1,22405:6630773,10454257:0,0,0 -h1,22405:6630773,10454257:0,0,0 -k1,22405:32583029,10454257:25952256 -g1,22405:32583029,10454257 -) -(1,22405:6630773,11120435:25952256,388497,9436 -h1,22405:6630773,11120435:0,0,0 -g1,22405:7579210,11120435 -g1,22405:8843793,11120435 -g1,22405:9159939,11120435 -g1,22405:9476085,11120435 -g1,22405:11056814,11120435 -g1,22405:11372960,11120435 -g1,22405:12637543,11120435 -h1,22405:13585980,11120435:0,0,0 -k1,22405:32583028,11120435:18997048 -g1,22405:32583028,11120435 -) -(1,22405:6630773,11786613:25952256,0,0 -h1,22405:6630773,11786613:0,0,0 -h1,22405:6630773,11786613:0,0,0 -k1,22405:32583029,11786613:25952256 -g1,22405:32583029,11786613 -) -(1,22405:6630773,12452791:25952256,388497,9436 -h1,22405:6630773,12452791:0,0,0 -g1,22405:7579210,12452791 -g1,22405:8843793,12452791 -g1,22405:9159939,12452791 -g1,22405:9476085,12452791 -g1,22405:11056814,12452791 -g1,22405:11372960,12452791 -g1,22405:11689106,12452791 -g1,22405:12637543,12452791 -h1,22405:13585980,12452791:0,0,0 -k1,22405:32583028,12452791:18997048 -g1,22405:32583028,12452791 -) -(1,22405:6630773,13118969:25952256,0,0 -h1,22405:6630773,13118969:0,0,0 -h1,22405:6630773,13118969:0,0,0 -k1,22405:32583029,13118969:25952256 -g1,22405:32583029,13118969 -) -(1,22405:6630773,13785147:25952256,388497,9436 -h1,22405:6630773,13785147:0,0,0 -g1,22405:7579210,13785147 -g1,22405:9159939,13785147 -g1,22405:9476085,13785147 -g1,22405:9792231,13785147 -g1,22405:11372960,13785147 -g1,22405:11689106,13785147 -g1,22405:12005252,13785147 -g1,22405:12953689,13785147 -h1,22405:13902126,13785147:0,0,0 -k1,22405:32583030,13785147:18680904 -g1,22405:32583030,13785147 -) -(1,22405:6630773,14451325:25952256,0,0 -h1,22405:6630773,14451325:0,0,0 -h1,22405:6630773,14451325:0,0,0 -k1,22405:32583029,14451325:25952256 -g1,22405:32583029,14451325 -) -(1,22405:6630773,15117503:25952256,404226,9436 -h1,22405:6630773,15117503:0,0,0 -g1,22405:7579210,15117503 -g1,22405:7895356,15117503 -g1,22405:8527648,15117503 -g1,22405:8843794,15117503 -g1,22405:9159940,15117503 -g1,22405:9476086,15117503 -g1,22405:10424523,15117503 -g1,22405:10740669,15117503 -g1,22405:11056815,15117503 -g1,22405:11372961,15117503 -g1,22405:11689107,15117503 -g1,22405:13269836,15117503 -h1,22405:14218273,15117503:0,0,0 -k1,22405:32583029,15117503:18364756 -g1,22405:32583029,15117503 -) -(1,22405:6630773,15783681:25952256,0,0 -h1,22405:6630773,15783681:0,0,0 -h1,22405:6630773,15783681:0,0,0 -k1,22405:32583029,15783681:25952256 -g1,22405:32583029,15783681 -) -] -) -g1,22406:32583029,15783681 -g1,22406:6630773,15783681 -g1,22406:6630773,15783681 -g1,22406:32583029,15783681 -g1,22406:32583029,15783681 -) -h1,22406:6630773,15980289:0,0,0 -v1,22410:6630773,17870353:0,393216,0 -(1,22411:6630773,18499499:25952256,1022362,0 -g1,22411:6630773,18499499 -g1,22411:6303093,18499499 -r1,22617:6401397,18499499:98304,1022362,0 -g1,22411:6600626,18499499 -g1,22411:6797234,18499499 -[1,22411:6797234,18499499:25785795,1022362,0 -(1,22411:6797234,18302891:25785795,825754,196608 -(1,22410:6797234,18302891:0,825754,196608 -r1,22617:8834093,18302891:2036859,1022362,196608 -k1,22410:6797234,18302891:-2036859 -) -(1,22410:6797234,18302891:2036859,825754,196608 -) -g1,22410:9033322,18302891 -g1,22410:11167830,18302891 -g1,22410:12515905,18302891 -(1,22410:12515905,18302891:0,459977,115847 -r1,22617:16743001,18302891:4227096,575824,115847 -k1,22410:12515905,18302891:-4227096 -) -(1,22410:12515905,18302891:4227096,459977,115847 -k1,22410:12515905,18302891:3277 -h1,22410:16739724,18302891:0,411205,112570 -) -g1,22410:16942230,18302891 -g1,22410:17792887,18302891 -g1,22410:19606923,18302891 -g1,22410:20162012,18302891 -g1,22410:21344281,18302891 -g1,22410:22828016,18302891 -g1,22410:24131527,18302891 -g1,22410:25078522,18302891 -g1,22410:26690052,18302891 -g1,22410:28283232,18302891 -(1,22410:28283232,18302891:0,452978,115847 -r1,22617:31806904,18302891:3523672,568825,115847 -k1,22410:28283232,18302891:-3523672 -) -(1,22410:28283232,18302891:3523672,452978,115847 -k1,22410:28283232,18302891:3277 -h1,22410:31803627,18302891:0,411205,112570 -) -k1,22411:32583029,18302891:602455 -g1,22411:32583029,18302891 -) -] -g1,22411:32583029,18499499 -) -h1,22411:6630773,18499499:0,0,0 -(1,22414:6630773,21831355:25952256,32768,229376 -(1,22414:6630773,21831355:0,32768,229376 -(1,22414:6630773,21831355:5505024,32768,229376 -r1,22617:12135797,21831355:5505024,262144,229376 -) -k1,22414:6630773,21831355:-5505024 -) -(1,22414:6630773,21831355:25952256,32768,0 -r1,22617:32583029,21831355:25952256,32768,0 -) -) -(1,22414:6630773,23435683:25952256,615776,14155 -(1,22414:6630773,23435683:2464678,582746,14155 -g1,22414:6630773,23435683 -g1,22414:9095451,23435683 -) -g1,22414:11063104,23435683 -g1,22414:12772807,23435683 -g1,22414:15377470,23435683 -k1,22414:32583029,23435683:15567421 -g1,22414:32583029,23435683 -) -(1,22418:6630773,24670387:25952256,513147,134348 -k1,22417:8279219,24670387:289229 -k1,22417:9881881,24670387:289320 -k1,22417:12542948,24670387:289319 -k1,22417:14058447,24670387:289320 -k1,22417:15741718,24670387:289320 -k1,22417:18225182,24670387:289319 -k1,22417:21180507,24670387:289320 -k1,22417:23726231,24670387:289319 -k1,22417:26501332,24670387:289320 -k1,22417:28180014,24670387:289319 -k1,22417:31422386,24670387:289320 -k1,22418:32583029,24670387:0 -) -(1,22418:6630773,25511875:25952256,505283,134349 -k1,22417:8410223,25511875:216416 -k1,22417:9618200,25511875:216417 -k1,22417:11689285,25511875:216416 -k1,22417:12715071,25511875:216416 -k1,22417:13950573,25511875:216417 -k1,22417:15490799,25511875:216399 -k1,22417:18550822,25511875:216416 -k1,22417:19999316,25511875:216417 -$1,22417:19999316,25511875 -k1,22417:21975226,25511875:0 -k1,22417:22370408,25511875:0 -k1,22417:22765590,25511875:0 -k1,22417:23160772,25511875:0 -k1,22417:24346318,25511875:0 -k1,22417:24741500,25511875:0 -k1,22417:25531864,25511875:0 -k1,22417:25927046,25511875:0 -k1,22417:27112592,25511875:0 -k1,22417:27507774,25511875:0 -k1,22417:28298138,25511875:0 -k1,22417:28693320,25511875:0 -$1,22417:30274048,25511875 -k1,22417:30697558,25511875:216416 -k1,22417:32583029,25511875:0 -) -(1,22418:6630773,26353363:25952256,513147,134348 -k1,22417:8270418,26353363:216858 -k1,22417:11219473,26353363:216859 -k1,22417:12383982,26353363:216858 -k1,22417:15748535,26353363:216859 -k1,22417:18722493,26353363:216858 -k1,22417:20900188,26353363:216858 -k1,22417:23514354,26353363:216859 -k1,22417:26415567,26353363:216858 -k1,22417:29304329,26353363:216859 -k1,22417:31923737,26353363:216858 -k1,22417:32583029,26353363:0 -) -(1,22418:6630773,27194851:25952256,513147,134348 -k1,22417:9359102,27194851:217645 -k1,22417:10643018,27194851:217645 -k1,22417:14385189,27194851:217645 -k1,22417:17250489,27194851:217645 -k1,22417:19582325,27194851:217645 -k1,22417:23932014,27194851:217644 -k1,22417:24808951,27194851:217645 -k1,22417:26045681,27194851:217645 -k1,22417:27675627,27194851:217645 -k1,22417:31092740,27194851:217645 -k1,22417:32583029,27194851:0 -) -(1,22418:6630773,28036339:25952256,513147,134348 -k1,22417:7845357,28036339:195499 -k1,22417:10526637,28036339:195499 -k1,22417:12941837,28036339:195496 -k1,22417:15980943,28036339:195499 -k1,22417:17689668,28036339:195499 -k1,22417:18832818,28036339:195499 -k1,22417:20297094,28036339:195499 -k1,22417:22321047,28036339:195499 -k1,22417:23048043,28036339:195499 -k1,22417:25098212,28036339:195500 -k1,22417:26103081,28036339:195499 -k1,22417:27792146,28036339:195499 -k1,22417:30893511,28036339:195499 -k1,22418:32583029,28036339:0 -) -(1,22418:6630773,28877827:25952256,513147,134348 -g1,22417:8639451,28877827 -g1,22417:10214281,28877827 -g1,22417:12487069,28877827 -g1,22417:15035108,28877827 -g1,22417:15850375,28877827 -g1,22417:16838002,28877827 -k1,22418:32583029,28877827:13487312 -g1,22418:32583029,28877827 -) -(1,22419:6630773,30969087:25952256,555811,12975 -(1,22419:6630773,30969087:2899444,534184,12975 -g1,22419:6630773,30969087 -g1,22419:9530217,30969087 -) -k1,22419:32583029,30969087:20850476 -g1,22419:32583029,30969087 -) -(1,22424:6630773,32203791:25952256,513147,134348 -k1,22423:9394134,32203791:228428 -k1,22423:11587986,32203791:228428 -k1,22423:14576790,32203791:228428 -k1,22423:17831015,32203791:228428 -k1,22423:19007093,32203791:228427 -k1,22423:21638071,32203791:228428 -k1,22423:23057944,32203791:228428 -k1,22423:25671883,32203791:228428 -k1,22423:27638297,32203791:228399 -k1,22423:29058169,32203791:228427 -k1,22423:31096017,32203791:228399 -k1,22423:32583029,32203791:0 -) -(1,22424:6630773,33045279:25952256,513147,134348 -g1,22423:8210846,33045279 -g1,22423:8941572,33045279 -g1,22423:9496661,33045279 -g1,22423:10996124,33045279 -g1,22423:13679168,33045279 -g1,22423:14537689,33045279 -g1,22423:16622389,33045279 -g1,22423:17034610,33045279 -g1,22423:18366301,33045279 -g1,22423:19941131,33045279 -g1,22423:21420278,33045279 -g1,22423:21975367,33045279 -g1,22423:23676681,33045279 -k1,22424:32583029,33045279:6071261 -g1,22424:32583029,33045279 -) -(1,22426:6630773,33886767:25952256,513147,134348 -h1,22425:6630773,33886767:983040,0,0 -g1,22425:8766591,33886767 -g1,22425:10271953,33886767 -g1,22425:11883483,33886767 -g1,22425:12438572,33886767 -g1,22425:13906578,33886767 -g1,22425:15603960,33886767 -g1,22425:17197140,33886767 -g1,22425:20091865,33886767 -(1,22425:20091865,33886767:0,452978,115847 -r1,22617:23967249,33886767:3875384,568825,115847 -k1,22425:20091865,33886767:-3875384 -) -(1,22425:20091865,33886767:3875384,452978,115847 -k1,22425:20091865,33886767:3277 -h1,22425:23963972,33886767:0,411205,112570 -) -g1,22425:24340148,33886767 -g1,22425:25730822,33886767 -g1,22425:28298522,33886767 -g1,22425:29286149,33886767 -k1,22426:32583029,33886767:191784 -g1,22426:32583029,33886767 -) -v1,22428:6630773,35077233:0,393216,0 -(1,22617:6630773,45385000:25952256,10700983,196608 -g1,22617:6630773,45385000 -g1,22617:6630773,45385000 -g1,22617:6434165,45385000 -(1,22617:6434165,45385000:0,10700983,196608 -r1,22617:32779637,45385000:26345472,10897591,196608 -k1,22617:6434165,45385000:-26345472 -) -(1,22617:6434165,45385000:26345472,10700983,196608 -[1,22617:6630773,45385000:25952256,10504375,0 -(1,22430:6630773,35291143:25952256,410518,107478 -(1,22429:6630773,35291143:0,0,0 -g1,22429:6630773,35291143 -g1,22429:6630773,35291143 -g1,22429:6303093,35291143 -(1,22429:6303093,35291143:0,0,0 -) -g1,22429:6630773,35291143 -) -g1,22430:9476084,35291143 -g1,22430:10424522,35291143 -k1,22430:10424522,35291143:0 -h1,22430:27180243,35291143:0,0,0 -k1,22430:32583029,35291143:5402786 -g1,22430:32583029,35291143 -) -(1,22431:6630773,35957321:25952256,404226,107478 -h1,22431:6630773,35957321:0,0,0 -k1,22431:6630773,35957321:0 -h1,22431:14218270,35957321:0,0,0 -k1,22431:32583030,35957321:18364760 -g1,22431:32583030,35957321 -) -(1,22616:6630773,36623499:25952256,404226,107478 -(1,22433:6630773,36623499:0,0,0 -g1,22433:6630773,36623499 -g1,22433:6630773,36623499 -g1,22433:6303093,36623499 -(1,22433:6303093,36623499:0,0,0 -) -g1,22433:6630773,36623499 -) -g1,22616:7579210,36623499 -g1,22616:9476084,36623499 -g1,22616:12005250,36623499 -g1,22616:13902125,36623499 -k1,22616:13902125,36623499:0 -h1,22616:17063582,36623499:0,0,0 -k1,22616:32583029,36623499:15519447 -g1,22616:32583029,36623499 -) -(1,22616:6630773,37289677:25952256,404226,6290 -h1,22616:6630773,37289677:0,0,0 -g1,22616:7579210,37289677 -g1,22616:7895356,37289677 -g1,22616:8211502,37289677 -k1,22616:8211502,37289677:0 -h1,22616:10108376,37289677:0,0,0 -k1,22616:32583028,37289677:22474652 -g1,22616:32583028,37289677 -) -(1,22616:6630773,37955855:25952256,404226,76021 -h1,22616:6630773,37955855:0,0,0 -g1,22616:7579210,37955855 -g1,22616:7895356,37955855 -g1,22616:8211502,37955855 -g1,22616:8527648,37955855 -g1,22616:8843794,37955855 -g1,22616:10740668,37955855 -k1,22616:10740668,37955855:0 -h1,22616:13902125,37955855:0,0,0 -k1,22616:32583029,37955855:18680904 -g1,22616:32583029,37955855 -) -(1,22616:6630773,38622033:25952256,404226,82312 -h1,22616:6630773,38622033:0,0,0 -g1,22616:7579210,38622033 -g1,22616:7895356,38622033 -g1,22616:8211502,38622033 -g1,22616:8527648,38622033 -g1,22616:8843794,38622033 -g1,22616:10740668,38622033 -g1,22616:12953688,38622033 -k1,22616:12953688,38622033:0 -h1,22616:15798999,38622033:0,0,0 -k1,22616:32583029,38622033:16784030 -g1,22616:32583029,38622033 -) -(1,22616:6630773,39288211:25952256,404226,82312 -h1,22616:6630773,39288211:0,0,0 -g1,22616:7579210,39288211 -g1,22616:7895356,39288211 -g1,22616:8211502,39288211 -g1,22616:8527648,39288211 -g1,22616:8843794,39288211 -g1,22616:10740668,39288211 -g1,22616:12953688,39288211 -k1,22616:12953688,39288211:0 -h1,22616:15798999,39288211:0,0,0 -k1,22616:32583029,39288211:16784030 -g1,22616:32583029,39288211 -) -(1,22616:6630773,39954389:25952256,404226,82312 -h1,22616:6630773,39954389:0,0,0 -g1,22616:7579210,39954389 -g1,22616:7895356,39954389 -g1,22616:8211502,39954389 -g1,22616:8527648,39954389 -g1,22616:8843794,39954389 -g1,22616:10740668,39954389 -g1,22616:12953688,39954389 -k1,22616:12953688,39954389:0 -h1,22616:15798999,39954389:0,0,0 -k1,22616:32583029,39954389:16784030 -g1,22616:32583029,39954389 -) -(1,22616:6630773,40620567:25952256,404226,82312 -h1,22616:6630773,40620567:0,0,0 -g1,22616:7579210,40620567 -g1,22616:7895356,40620567 -g1,22616:8211502,40620567 -g1,22616:8527648,40620567 -g1,22616:8843794,40620567 -g1,22616:10740668,40620567 -g1,22616:12953688,40620567 -k1,22616:12953688,40620567:0 -h1,22616:15798999,40620567:0,0,0 -k1,22616:32583029,40620567:16784030 -g1,22616:32583029,40620567 -) -(1,22616:6630773,41286745:25952256,404226,6290 -h1,22616:6630773,41286745:0,0,0 -g1,22616:7579210,41286745 -g1,22616:7895356,41286745 -g1,22616:8211502,41286745 -g1,22616:8527648,41286745 -g1,22616:8843794,41286745 -k1,22616:8843794,41286745:0 -h1,22616:11056814,41286745:0,0,0 -k1,22616:32583030,41286745:21526216 -g1,22616:32583030,41286745 -) -(1,22616:6630773,41952923:25952256,404226,76021 -h1,22616:6630773,41952923:0,0,0 -g1,22616:7579210,41952923 -g1,22616:7895356,41952923 -g1,22616:8211502,41952923 -g1,22616:8527648,41952923 -g1,22616:8843794,41952923 -g1,22616:9159940,41952923 -g1,22616:9476086,41952923 -h1,22616:11372960,41952923:0,0,0 -k1,22616:32583028,41952923:21210068 -g1,22616:32583028,41952923 -) -(1,22616:6630773,42619101:25952256,404226,101187 -h1,22616:6630773,42619101:0,0,0 -g1,22616:7579210,42619101 -g1,22616:7895356,42619101 -g1,22616:8211502,42619101 -g1,22616:8527648,42619101 -g1,22616:8843794,42619101 -k1,22616:8843794,42619101:0 -h1,22616:11056814,42619101:0,0,0 -k1,22616:32583030,42619101:21526216 -g1,22616:32583030,42619101 -) -(1,22616:6630773,43285279:25952256,404226,76021 -h1,22616:6630773,43285279:0,0,0 -g1,22616:7579210,43285279 -g1,22616:7895356,43285279 -g1,22616:8211502,43285279 -g1,22616:8527648,43285279 -g1,22616:8843794,43285279 -g1,22616:9159940,43285279 -g1,22616:9476086,43285279 -h1,22616:11689106,43285279:0,0,0 -k1,22616:32583030,43285279:20893924 -g1,22616:32583030,43285279 -) -(1,22616:6630773,43951457:25952256,404226,101187 -h1,22616:6630773,43951457:0,0,0 -g1,22616:7579210,43951457 -g1,22616:7895356,43951457 -g1,22616:8211502,43951457 -g1,22616:8527648,43951457 -g1,22616:8843794,43951457 -k1,22616:8843794,43951457:0 -h1,22616:11372960,43951457:0,0,0 -k1,22616:32583028,43951457:21210068 -g1,22616:32583028,43951457 -) -(1,22616:6630773,44617635:25952256,404226,76021 -h1,22616:6630773,44617635:0,0,0 -g1,22616:7579210,44617635 -g1,22616:7895356,44617635 -g1,22616:8211502,44617635 -g1,22616:8527648,44617635 -g1,22616:8843794,44617635 -g1,22616:9159940,44617635 -g1,22616:9476086,44617635 -h1,22616:11689106,44617635:0,0,0 -k1,22616:32583030,44617635:20893924 -g1,22616:32583030,44617635 -) -(1,22616:6630773,45283813:25952256,404226,101187 -h1,22616:6630773,45283813:0,0,0 -g1,22616:7579210,45283813 -g1,22616:7895356,45283813 -g1,22616:8211502,45283813 -g1,22616:8527648,45283813 -g1,22616:8843794,45283813 -k1,22616:8843794,45283813:0 -h1,22616:11372960,45283813:0,0,0 -k1,22616:32583028,45283813:21210068 -g1,22616:32583028,45283813 -) -] -) -g1,22617:32583029,45385000 -g1,22617:6630773,45385000 -g1,22617:6630773,45385000 -g1,22617:32583029,45385000 -g1,22617:32583029,45385000 -) -] -(1,22617:32583029,45706769:0,0,0 -g1,22617:32583029,45706769 -) -) -] -(1,22617:6630773,47279633:25952256,0,0 -h1,22617:6630773,47279633:25952256,0,0 -) -] -(1,22617:4262630,4025873:0,0,0 -[1,22617:-473656,4025873:0,0,0 -(1,22617:-473656,-710413:0,0,0 -(1,22617:-473656,-710413:0,0,0 -g1,22617:-473656,-710413 -) -g1,22617:-473656,-710413 -) -] -) -] -!21441 -}407 +g1,22830:6630773,4812305 +g1,22830:6630773,4812305 +g1,22830:8180699,4812305 +g1,22830:9590378,4812305 +g1,22830:11674422,4812305 +g1,22830:13105728,4812305 +k1,22830:31387652,4812305:18281924 +) +) +] +[1,22830:6630773,45706769:25952256,40108032,0 +(1,22830:6630773,45706769:25952256,40108032,0 +(1,22830:6630773,45706769:0,0,0 +g1,22830:6630773,45706769 +) +[1,22830:6630773,45706769:25952256,40108032,0 +v1,22619:6630773,6254097:0,393216,0 +(1,22619:6630773,13461550:25952256,7600669,196608 +g1,22619:6630773,13461550 +g1,22619:6630773,13461550 +g1,22619:6434165,13461550 +(1,22619:6434165,13461550:0,7600669,196608 +r1,22830:32779637,13461550:26345472,7797277,196608 +k1,22619:6434165,13461550:-26345472 +) +(1,22619:6434165,13461550:26345472,7600669,196608 +[1,22619:6630773,13461550:25952256,7404061,0 +(1,22605:6630773,6481928:25952256,424439,79822 +(1,22604:6630773,6481928:0,0,0 +g1,22604:6630773,6481928 +g1,22604:6630773,6481928 +g1,22604:6303093,6481928 +(1,22604:6303093,6481928:0,0,0 +) +g1,22604:6630773,6481928 +) +k1,22605:6630773,6481928:0 +h1,22605:10614220,6481928:0,0,0 +k1,22605:32583028,6481928:21968808 +g1,22605:32583028,6481928 +) +(1,22618:6630773,7297855:25952256,424439,9908 +(1,22607:6630773,7297855:0,0,0 +g1,22607:6630773,7297855 +g1,22607:6630773,7297855 +g1,22607:6303093,7297855 +(1,22607:6303093,7297855:0,0,0 +) +g1,22607:6630773,7297855 +) +g1,22618:7626635,7297855 +g1,22618:9286405,7297855 +g1,22618:9618359,7297855 +g1,22618:11278129,7297855 +g1,22618:12937899,7297855 +h1,22618:14265715,7297855:0,0,0 +k1,22618:32583029,7297855:18317314 +g1,22618:32583029,7297855 +) +(1,22618:6630773,7982710:25952256,0,0 +h1,22618:6630773,7982710:0,0,0 +h1,22618:6630773,7982710:0,0,0 +k1,22618:32583029,7982710:25952256 +g1,22618:32583029,7982710 +) +(1,22618:6630773,8667565:25952256,407923,9908 +h1,22618:6630773,8667565:0,0,0 +g1,22618:7626635,8667565 +g1,22618:8954451,8667565 +g1,22618:9286405,8667565 +g1,22618:9618359,8667565 +g1,22618:11278129,8667565 +g1,22618:11610083,8667565 +g1,22618:12937899,8667565 +h1,22618:13933761,8667565:0,0,0 +k1,22618:32583029,8667565:18649268 +g1,22618:32583029,8667565 +) +(1,22618:6630773,9352420:25952256,0,0 +h1,22618:6630773,9352420:0,0,0 +h1,22618:6630773,9352420:0,0,0 +k1,22618:32583029,9352420:25952256 +g1,22618:32583029,9352420 +) +(1,22618:6630773,10037275:25952256,407923,9908 +h1,22618:6630773,10037275:0,0,0 +g1,22618:7626635,10037275 +g1,22618:8954451,10037275 +g1,22618:9286405,10037275 +g1,22618:9618359,10037275 +g1,22618:11278129,10037275 +g1,22618:11610083,10037275 +g1,22618:11942037,10037275 +g1,22618:12937899,10037275 +h1,22618:13933761,10037275:0,0,0 +k1,22618:32583029,10037275:18649268 +g1,22618:32583029,10037275 +) +(1,22618:6630773,10722130:25952256,0,0 +h1,22618:6630773,10722130:0,0,0 +h1,22618:6630773,10722130:0,0,0 +k1,22618:32583029,10722130:25952256 +g1,22618:32583029,10722130 +) +(1,22618:6630773,11406985:25952256,407923,9908 +h1,22618:6630773,11406985:0,0,0 +g1,22618:7626635,11406985 +g1,22618:9286405,11406985 +g1,22618:9618359,11406985 +g1,22618:9950313,11406985 +g1,22618:11610083,11406985 +g1,22618:11942037,11406985 +g1,22618:12273991,11406985 +g1,22618:13269853,11406985 +h1,22618:14265715,11406985:0,0,0 +k1,22618:32583029,11406985:18317314 +g1,22618:32583029,11406985 +) +(1,22618:6630773,12091840:25952256,0,0 +h1,22618:6630773,12091840:0,0,0 +h1,22618:6630773,12091840:0,0,0 +k1,22618:32583029,12091840:25952256 +g1,22618:32583029,12091840 +) +(1,22618:6630773,12776695:25952256,424439,9908 +h1,22618:6630773,12776695:0,0,0 +g1,22618:7626635,12776695 +g1,22618:7958589,12776695 +g1,22618:8622497,12776695 +g1,22618:8954451,12776695 +g1,22618:9286405,12776695 +g1,22618:9618359,12776695 +g1,22618:10614221,12776695 +g1,22618:10946175,12776695 +g1,22618:11278129,12776695 +g1,22618:11610083,12776695 +g1,22618:11942037,12776695 +g1,22618:13601807,12776695 +h1,22618:14597669,12776695:0,0,0 +k1,22618:32583029,12776695:17985360 +g1,22618:32583029,12776695 +) +(1,22618:6630773,13461550:25952256,0,0 +h1,22618:6630773,13461550:0,0,0 +h1,22618:6630773,13461550:0,0,0 +k1,22618:32583029,13461550:25952256 +g1,22618:32583029,13461550 +) +] +) +g1,22619:32583029,13461550 +g1,22619:6630773,13461550 +g1,22619:6630773,13461550 +g1,22619:32583029,13461550 +g1,22619:32583029,13461550 +) +h1,22619:6630773,13658158:0,0,0 +v1,22623:6630773,14523238:0,393216,0 +(1,22624:6630773,15028144:25952256,898122,0 +g1,22624:6630773,15028144 +g1,22624:6237557,15028144 +r1,22830:6368629,15028144:131072,898122,0 +g1,22624:6567858,15028144 +g1,22624:6764466,15028144 +[1,22624:6764466,15028144:25818563,898122,0 +(1,22624:6764466,14831536:25818563,701514,196608 +(1,22623:6764466,14831536:0,701514,196608 +r1,22830:8863446,14831536:2098980,898122,196608 +k1,22623:6764466,14831536:-2098980 +) +(1,22623:6764466,14831536:2098980,701514,196608 +) +g1,22623:9062675,14831536 +g1,22623:11197183,14831536 +g1,22623:12545258,14831536 +(1,22623:12545258,14831536:0,459977,115847 +r1,22830:16772354,14831536:4227096,575824,115847 +k1,22623:12545258,14831536:-4227096 +) +(1,22623:12545258,14831536:4227096,459977,115847 +k1,22623:12545258,14831536:3277 +h1,22623:16769077,14831536:0,411205,112570 +) +g1,22623:16971583,14831536 +g1,22623:17822240,14831536 +g1,22623:19636276,14831536 +g1,22623:20191365,14831536 +g1,22623:21373634,14831536 +g1,22623:22857369,14831536 +g1,22623:24160880,14831536 +g1,22623:25107875,14831536 +g1,22623:26719405,14831536 +g1,22623:28312585,14831536 +(1,22623:28312585,14831536:0,452978,115847 +r1,22830:31836257,14831536:3523672,568825,115847 +k1,22623:28312585,14831536:-3523672 +) +(1,22623:28312585,14831536:3523672,452978,115847 +k1,22623:28312585,14831536:3277 +h1,22623:31832980,14831536:0,411205,112570 +) +k1,22624:32583029,14831536:573102 +g1,22624:32583029,14831536 +) +] +g1,22624:32583029,15028144 +) +h1,22624:6630773,15028144:0,0,0 +(1,22627:6630773,17859304:25952256,32768,229376 +(1,22627:6630773,17859304:0,32768,229376 +(1,22627:6630773,17859304:5505024,32768,229376 +r1,22830:12135797,17859304:5505024,262144,229376 +) +k1,22627:6630773,17859304:-5505024 +) +(1,22627:6630773,17859304:25952256,32768,0 +r1,22830:32583029,17859304:25952256,32768,0 +) +) +(1,22627:6630773,19491156:25952256,615776,14155 +(1,22627:6630773,19491156:2464678,582746,14155 +g1,22627:6630773,19491156 +g1,22627:9095451,19491156 +) +g1,22627:11063104,19491156 +g1,22627:12772807,19491156 +g1,22627:15377470,19491156 +k1,22627:32583029,19491156:15567421 +g1,22627:32583029,19491156 +) +(1,22631:6630773,20749452:25952256,513147,134348 +k1,22630:8156541,20749452:166551 +k1,22630:9636466,20749452:166583 +k1,22630:12174797,20749452:166583 +k1,22630:13567560,20749452:166584 +k1,22630:15128094,20749452:166583 +k1,22630:17488822,20749452:166583 +k1,22630:20321411,20749452:166584 +k1,22630:22744399,20749452:166583 +k1,22630:25396763,20749452:166583 +k1,22630:26952710,20749452:166584 +k1,22630:30072345,20749452:166583 +k1,22630:32583029,20749452:0 +) +(1,22631:6630773,21614532:25952256,530548,141067 +k1,22630:7797249,21614532:174916 +k1,22630:9826833,21614532:174915 +k1,22630:10811119,21614532:174916 +k1,22630:12005120,21614532:174916 +k1,22630:13503838,21614532:174891 +k1,22630:16522361,21614532:174916 +k1,22630:17929354,21614532:174916 +$1,22630:17929354,21614532 +k1,22630:20004064,21614532:0 +k1,22630:20419006,21614532:0 +k1,22630:20833948,21614532:0 +k1,22630:21248890,21614532:0 +k1,22630:22493716,21614532:0 +k1,22630:22908658,21614532:0 +k1,22630:23738542,21614532:0 +k1,22630:24153484,21614532:0 +k1,22630:25398310,21614532:0 +k1,22630:25813252,21614532:0 +k1,22630:26643136,21614532:0 +k1,22630:27058078,21614532:0 +$1,22630:28717846,21614532 +k1,22630:29099855,21614532:174915 +k1,22630:31160242,21614532:174916 +k1,22630:32583029,21614532:0 +) +(1,22631:6630773,22479612:25952256,513147,134348 +k1,22630:9606042,22479612:243073 +k1,22630:10796766,22479612:243073 +k1,22630:14187532,22479612:243072 +k1,22630:17187705,22479612:243073 +k1,22630:19391615,22479612:243073 +k1,22630:22031995,22479612:243073 +k1,22630:24959423,22479612:243073 +k1,22630:27874398,22479612:243072 +k1,22630:30520021,22479612:243073 +k1,22630:31422386,22479612:243073 +k1,22631:32583029,22479612:0 +) +(1,22631:6630773,23344692:25952256,513147,134348 +k1,22630:8385172,23344692:191365 +k1,22630:9642808,23344692:191365 +k1,22630:13358699,23344692:191365 +k1,22630:16197719,23344692:191365 +k1,22630:18503275,23344692:191365 +k1,22630:22826684,23344692:191364 +k1,22630:23677341,23344692:191365 +k1,22630:24887791,23344692:191365 +k1,22630:26491457,23344692:191365 +k1,22630:29882290,23344692:191365 +k1,22630:31563944,23344692:191365 +k1,22630:32583029,23344692:0 +) +(1,22631:6630773,24209772:25952256,513147,134348 +k1,22630:9251261,24209772:134707 +k1,22630:11605607,24209772:134642 +k1,22630:14583921,24209772:134707 +k1,22630:16231853,24209772:134706 +k1,22630:17314211,24209772:134707 +k1,22630:18717694,24209772:134706 +k1,22630:20680855,24209772:134707 +k1,22630:21347058,24209772:134706 +k1,22630:23336434,24209772:134707 +k1,22630:24280510,24209772:134706 +k1,22630:25908783,24209772:134707 +k1,22630:28949355,24209772:134706 +k1,22630:30773580,24209772:134707 +k1,22630:32583029,24209772:0 +) +(1,22631:6630773,25074852:25952256,513147,134348 +g1,22630:8205603,25074852 +g1,22630:10478391,25074852 +g1,22630:13026430,25074852 +g1,22630:13841697,25074852 +g1,22630:14829324,25074852 +k1,22631:32583029,25074852:15495990 +g1,22631:32583029,25074852 +) +(1,22632:6630773,27191670:25952256,555811,12975 +(1,22632:6630773,27191670:2899444,534184,12975 +g1,22632:6630773,27191670 +g1,22632:9530217,27191670 +) +k1,22632:32583029,27191670:20850476 +g1,22632:32583029,27191670 +) +(1,22637:6630773,28449966:25952256,513147,134348 +k1,22636:9394134,28449966:228428 +k1,22636:11587986,28449966:228428 +k1,22636:14576790,28449966:228428 +k1,22636:17831015,28449966:228428 +k1,22636:19007093,28449966:228427 +k1,22636:21638071,28449966:228428 +k1,22636:23057944,28449966:228428 +k1,22636:25671883,28449966:228428 +k1,22636:27638297,28449966:228399 +k1,22636:29058169,28449966:228427 +k1,22636:31096017,28449966:228399 +k1,22636:32583029,28449966:0 +) +(1,22637:6630773,29315046:25952256,513147,134348 +g1,22636:8210846,29315046 +g1,22636:8941572,29315046 +g1,22636:9496661,29315046 +g1,22636:10996124,29315046 +g1,22636:13679168,29315046 +g1,22636:14537689,29315046 +g1,22636:16622389,29315046 +g1,22636:17034610,29315046 +g1,22636:18366301,29315046 +g1,22636:19941131,29315046 +g1,22636:21420278,29315046 +g1,22636:21975367,29315046 +g1,22636:23676681,29315046 +k1,22637:32583029,29315046:6071261 +g1,22637:32583029,29315046 +) +(1,22639:6630773,30180126:25952256,513147,134348 +h1,22638:6630773,30180126:983040,0,0 +g1,22638:8766591,30180126 +g1,22638:10271953,30180126 +g1,22638:11883483,30180126 +g1,22638:12438572,30180126 +g1,22638:13906578,30180126 +g1,22638:15603960,30180126 +g1,22638:17197140,30180126 +g1,22638:20091865,30180126 +(1,22638:20091865,30180126:0,452978,115847 +r1,22830:23967249,30180126:3875384,568825,115847 +k1,22638:20091865,30180126:-3875384 +) +(1,22638:20091865,30180126:3875384,452978,115847 +k1,22638:20091865,30180126:3277 +h1,22638:23963972,30180126:0,411205,112570 +) +g1,22638:24340148,30180126 +g1,22638:25730822,30180126 +g1,22638:28298522,30180126 +g1,22638:29286149,30180126 +k1,22639:32583029,30180126:191784 +g1,22639:32583029,30180126 +) +v1,22641:6630773,30864981:0,393216,0 +(1,22830:6630773,45510161:25952256,15038396,196608 +g1,22830:6630773,45510161 +g1,22830:6630773,45510161 +g1,22830:6434165,45510161 +(1,22830:6434165,45510161:0,15038396,196608 +r1,22830:32779637,45510161:26345472,15235004,196608 +k1,22830:6434165,45510161:-26345472 +) +(1,22830:6434165,45510161:26345472,15038396,196608 +[1,22830:6630773,45510161:25952256,14841788,0 +(1,22643:6630773,31099418:25952256,431045,112852 +(1,22642:6630773,31099418:0,0,0 +g1,22642:6630773,31099418 +g1,22642:6630773,31099418 +g1,22642:6303093,31099418 +(1,22642:6303093,31099418:0,0,0 +) +g1,22642:6630773,31099418 +) +g1,22643:9618358,31099418 +g1,22643:10614220,31099418 +k1,22643:10614220,31099418:0 +h1,22643:28207777,31099418:0,0,0 +k1,22643:32583029,31099418:4375252 +g1,22643:32583029,31099418 +) +(1,22644:6630773,31784273:25952256,424439,112852 +h1,22644:6630773,31784273:0,0,0 +k1,22644:6630773,31784273:0 +h1,22644:14597667,31784273:0,0,0 +k1,22644:32583029,31784273:17985362 +g1,22644:32583029,31784273 +) +(1,22829:6630773,32391670:25952256,424439,112852 +(1,22646:6630773,32391670:0,0,0 +g1,22646:6630773,32391670 +g1,22646:6630773,32391670 +g1,22646:6303093,32391670 +(1,22646:6303093,32391670:0,0,0 +) +g1,22646:6630773,32391670 +) +g1,22829:7626635,32391670 +g1,22829:9618359,32391670 +g1,22829:12273991,32391670 +g1,22829:14265715,32391670 +k1,22829:14265715,32391670:0 +h1,22829:17585254,32391670:0,0,0 +k1,22829:32583029,32391670:14997775 +g1,22829:32583029,32391670 +) +(1,22829:6630773,33076525:25952256,424439,6605 +h1,22829:6630773,33076525:0,0,0 +g1,22829:7626635,33076525 +g1,22829:7958589,33076525 +g1,22829:8290543,33076525 +k1,22829:8290543,33076525:0 +h1,22829:10282267,33076525:0,0,0 +k1,22829:32583029,33076525:22300762 +g1,22829:32583029,33076525 +) +(1,22829:6630773,33761380:25952256,424439,79822 +h1,22829:6630773,33761380:0,0,0 +g1,22829:7626635,33761380 +g1,22829:7958589,33761380 +g1,22829:8290543,33761380 +g1,22829:8622497,33761380 +g1,22829:8954451,33761380 +g1,22829:10946175,33761380 +k1,22829:10946175,33761380:0 +h1,22829:14265714,33761380:0,0,0 +k1,22829:32583030,33761380:18317316 +g1,22829:32583030,33761380 +) +(1,22829:6630773,34446235:25952256,424439,86428 +h1,22829:6630773,34446235:0,0,0 +g1,22829:7626635,34446235 +g1,22829:7958589,34446235 +g1,22829:8290543,34446235 +g1,22829:8622497,34446235 +g1,22829:8954451,34446235 +g1,22829:10946175,34446235 +g1,22829:13269853,34446235 +k1,22829:13269853,34446235:0 +h1,22829:16257438,34446235:0,0,0 +k1,22829:32583029,34446235:16325591 +g1,22829:32583029,34446235 +) +(1,22829:6630773,35131090:25952256,424439,86428 +h1,22829:6630773,35131090:0,0,0 +g1,22829:7626635,35131090 +g1,22829:7958589,35131090 +g1,22829:8290543,35131090 +g1,22829:8622497,35131090 +g1,22829:8954451,35131090 +g1,22829:10946175,35131090 +g1,22829:13269853,35131090 +k1,22829:13269853,35131090:0 +h1,22829:16257438,35131090:0,0,0 +k1,22829:32583029,35131090:16325591 +g1,22829:32583029,35131090 +) +(1,22829:6630773,35815945:25952256,424439,86428 +h1,22829:6630773,35815945:0,0,0 +g1,22829:7626635,35815945 +g1,22829:7958589,35815945 +g1,22829:8290543,35815945 +g1,22829:8622497,35815945 +g1,22829:8954451,35815945 +g1,22829:10946175,35815945 +g1,22829:13269853,35815945 +k1,22829:13269853,35815945:0 +h1,22829:16257438,35815945:0,0,0 +k1,22829:32583029,35815945:16325591 +g1,22829:32583029,35815945 +) +(1,22829:6630773,36500800:25952256,424439,86428 +h1,22829:6630773,36500800:0,0,0 +g1,22829:7626635,36500800 +g1,22829:7958589,36500800 +g1,22829:8290543,36500800 +g1,22829:8622497,36500800 +g1,22829:8954451,36500800 +g1,22829:10946175,36500800 +g1,22829:13269853,36500800 +k1,22829:13269853,36500800:0 +h1,22829:16257438,36500800:0,0,0 +k1,22829:32583029,36500800:16325591 +g1,22829:32583029,36500800 +) +(1,22829:6630773,37185655:25952256,424439,6605 +h1,22829:6630773,37185655:0,0,0 +g1,22829:7626635,37185655 +g1,22829:7958589,37185655 +g1,22829:8290543,37185655 +g1,22829:8622497,37185655 +g1,22829:8954451,37185655 +k1,22829:8954451,37185655:0 +h1,22829:11278129,37185655:0,0,0 +k1,22829:32583029,37185655:21304900 +g1,22829:32583029,37185655 +) +(1,22829:6630773,37870510:25952256,424439,79822 +h1,22829:6630773,37870510:0,0,0 +g1,22829:7626635,37870510 +g1,22829:7958589,37870510 +g1,22829:8290543,37870510 +g1,22829:8622497,37870510 +g1,22829:8954451,37870510 +g1,22829:9286405,37870510 +g1,22829:9618359,37870510 +h1,22829:11610083,37870510:0,0,0 +k1,22829:32583029,37870510:20972946 +g1,22829:32583029,37870510 +) +(1,22829:6630773,38555365:25952256,424439,106246 +h1,22829:6630773,38555365:0,0,0 +g1,22829:7626635,38555365 +g1,22829:7958589,38555365 +g1,22829:8290543,38555365 +g1,22829:8622497,38555365 +g1,22829:8954451,38555365 +k1,22829:8954451,38555365:0 +h1,22829:11278129,38555365:0,0,0 +k1,22829:32583029,38555365:21304900 +g1,22829:32583029,38555365 +) +(1,22829:6630773,39240220:25952256,424439,79822 +h1,22829:6630773,39240220:0,0,0 +g1,22829:7626635,39240220 +g1,22829:7958589,39240220 +g1,22829:8290543,39240220 +g1,22829:8622497,39240220 +g1,22829:8954451,39240220 +g1,22829:9286405,39240220 +g1,22829:9618359,39240220 +h1,22829:11942037,39240220:0,0,0 +k1,22829:32583029,39240220:20640992 +g1,22829:32583029,39240220 +) +(1,22829:6630773,39925075:25952256,424439,106246 +h1,22829:6630773,39925075:0,0,0 +g1,22829:7626635,39925075 +g1,22829:7958589,39925075 +g1,22829:8290543,39925075 +g1,22829:8622497,39925075 +g1,22829:8954451,39925075 +k1,22829:8954451,39925075:0 +h1,22829:11610083,39925075:0,0,0 +k1,22829:32583029,39925075:20972946 +g1,22829:32583029,39925075 +) +(1,22829:6630773,40609930:25952256,424439,79822 +h1,22829:6630773,40609930:0,0,0 +g1,22829:7626635,40609930 +g1,22829:7958589,40609930 +g1,22829:8290543,40609930 +g1,22829:8622497,40609930 +g1,22829:8954451,40609930 +g1,22829:9286405,40609930 +g1,22829:9618359,40609930 +h1,22829:11942037,40609930:0,0,0 +k1,22829:32583029,40609930:20640992 +g1,22829:32583029,40609930 +) +(1,22829:6630773,41294785:25952256,424439,106246 +h1,22829:6630773,41294785:0,0,0 +g1,22829:7626635,41294785 +g1,22829:7958589,41294785 +g1,22829:8290543,41294785 +g1,22829:8622497,41294785 +g1,22829:8954451,41294785 +k1,22829:8954451,41294785:0 +h1,22829:11610083,41294785:0,0,0 +k1,22829:32583029,41294785:20972946 +g1,22829:32583029,41294785 +) +(1,22829:6630773,41979640:25952256,424439,79822 +h1,22829:6630773,41979640:0,0,0 +g1,22829:7626635,41979640 +g1,22829:7958589,41979640 +g1,22829:8290543,41979640 +g1,22829:8622497,41979640 +g1,22829:8954451,41979640 +g1,22829:9286405,41979640 +g1,22829:9618359,41979640 +h1,22829:11942037,41979640:0,0,0 +k1,22829:32583029,41979640:20640992 +g1,22829:32583029,41979640 +) +(1,22829:6630773,42664495:25952256,424439,106246 +h1,22829:6630773,42664495:0,0,0 +g1,22829:7626635,42664495 +g1,22829:7958589,42664495 +g1,22829:8290543,42664495 +g1,22829:8622497,42664495 +g1,22829:8954451,42664495 +k1,22829:8954451,42664495:0 +h1,22829:11610083,42664495:0,0,0 +k1,22829:32583029,42664495:20972946 +g1,22829:32583029,42664495 +) +(1,22829:6630773,43349350:25952256,424439,79822 +h1,22829:6630773,43349350:0,0,0 +g1,22829:7626635,43349350 +g1,22829:7958589,43349350 +g1,22829:8290543,43349350 +g1,22829:8622497,43349350 +g1,22829:8954451,43349350 +g1,22829:9286405,43349350 +g1,22829:9618359,43349350 +h1,22829:11942037,43349350:0,0,0 +k1,22829:32583029,43349350:20640992 +g1,22829:32583029,43349350 +) +(1,22829:6630773,44034205:25952256,424439,106246 +h1,22829:6630773,44034205:0,0,0 +g1,22829:7626635,44034205 +g1,22829:7958589,44034205 +g1,22829:8290543,44034205 +g1,22829:8622497,44034205 +g1,22829:8954451,44034205 +k1,22829:8954451,44034205:0 +h1,22829:11610083,44034205:0,0,0 +k1,22829:32583029,44034205:20972946 +g1,22829:32583029,44034205 +) +(1,22829:6630773,44719060:25952256,424439,79822 +h1,22829:6630773,44719060:0,0,0 +g1,22829:7626635,44719060 +g1,22829:7958589,44719060 +g1,22829:8290543,44719060 +g1,22829:8622497,44719060 +g1,22829:8954451,44719060 +g1,22829:9286405,44719060 +g1,22829:9618359,44719060 +h1,22829:11942037,44719060:0,0,0 +k1,22829:32583029,44719060:20640992 +g1,22829:32583029,44719060 +) +(1,22829:6630773,45403915:25952256,424439,106246 +h1,22829:6630773,45403915:0,0,0 +g1,22829:7626635,45403915 +g1,22829:7958589,45403915 +g1,22829:8290543,45403915 +g1,22829:8622497,45403915 +g1,22829:8954451,45403915 +k1,22829:8954451,45403915:0 +h1,22829:11610083,45403915:0,0,0 +k1,22829:32583029,45403915:20972946 +g1,22829:32583029,45403915 +) +] +) +g1,22830:32583029,45510161 +g1,22830:6630773,45510161 +g1,22830:6630773,45510161 +g1,22830:32583029,45510161 +g1,22830:32583029,45510161 +) +] +(1,22830:32583029,45706769:0,0,0 +g1,22830:32583029,45706769 +) +) +] +(1,22830:6630773,47279633:25952256,0,0 +h1,22830:6630773,47279633:25952256,0,0 +) +] +(1,22830:4262630,4025873:0,0,0 +[1,22830:-473656,4025873:0,0,0 +(1,22830:-473656,-710413:0,0,0 +(1,22830:-473656,-710413:0,0,0 +g1,22830:-473656,-710413 +) +g1,22830:-473656,-710413 +) +] +) +] +!22512 +}390 !12 -{408 -[1,22617:4262630,47279633:28320399,43253760,0 -(1,22617:4262630,4025873:0,0,0 -[1,22617:-473656,4025873:0,0,0 -(1,22617:-473656,-710413:0,0,0 -(1,22617:-473656,-644877:0,0,0 -k1,22617:-473656,-644877:-65536 +{391 +[1,22830:4262630,47279633:28320399,43253760,0 +(1,22830:4262630,4025873:0,0,0 +[1,22830:-473656,4025873:0,0,0 +(1,22830:-473656,-710413:0,0,0 +(1,22830:-473656,-644877:0,0,0 +k1,22830:-473656,-644877:-65536 ) -(1,22617:-473656,4736287:0,0,0 -k1,22617:-473656,4736287:5209943 +(1,22830:-473656,4736287:0,0,0 +k1,22830:-473656,4736287:5209943 ) -g1,22617:-473656,-710413 +g1,22830:-473656,-710413 ) ] ) -[1,22617:6630773,47279633:25952256,43253760,0 -[1,22617:6630773,4812305:25952256,786432,0 -(1,22617:6630773,4812305:25952256,513147,126483 -(1,22617:6630773,4812305:25952256,513147,126483 -g1,22617:3078558,4812305 -[1,22617:3078558,4812305:0,0,0 -(1,22617:3078558,2439708:0,1703936,0 -k1,22617:1358238,2439708:-1720320 -(1,21457:1358238,2439708:1720320,1703936,0 -(1,21457:1358238,2439708:1179648,16384,0 -r1,22617:2537886,2439708:1179648,16384,0 +[1,22830:6630773,47279633:25952256,43253760,0 +[1,22830:6630773,4812305:25952256,786432,0 +(1,22830:6630773,4812305:25952256,505283,134348 +(1,22830:6630773,4812305:25952256,505283,134348 +g1,22830:3078558,4812305 +[1,22830:3078558,4812305:0,0,0 +(1,22830:3078558,2439708:0,1703936,0 +k1,22830:1358238,2439708:-1720320 +(1,21670:1358238,2439708:1720320,1703936,0 +(1,21670:1358238,2439708:1179648,16384,0 +r1,22830:2537886,2439708:1179648,16384,0 ) -g1,21457:3062174,2439708 -(1,21457:3062174,2439708:16384,1703936,0 -[1,21457:3062174,2439708:25952256,1703936,0 -(1,21457:3062174,1915420:25952256,1179648,0 -(1,21457:3062174,1915420:16384,1179648,0 -r1,22617:3078558,1915420:16384,1179648,0 +g1,21670:3062174,2439708 +(1,21670:3062174,2439708:16384,1703936,0 +[1,21670:3062174,2439708:25952256,1703936,0 +(1,21670:3062174,1915420:25952256,1179648,0 +(1,21670:3062174,1915420:16384,1179648,0 +r1,22830:3078558,1915420:16384,1179648,0 ) -k1,21457:29014430,1915420:25935872 -g1,21457:29014430,1915420 +k1,21670:29014430,1915420:25935872 +g1,21670:29014430,1915420 ) ] ) ) ) ] -[1,22617:3078558,4812305:0,0,0 -(1,22617:3078558,2439708:0,1703936,0 -g1,22617:29030814,2439708 -g1,22617:36135244,2439708 -(1,21457:36135244,2439708:1720320,1703936,0 -(1,21457:36135244,2439708:16384,1703936,0 -[1,21457:36135244,2439708:25952256,1703936,0 -(1,21457:36135244,1915420:25952256,1179648,0 -(1,21457:36135244,1915420:16384,1179648,0 -r1,22617:36151628,1915420:16384,1179648,0 +[1,22830:3078558,4812305:0,0,0 +(1,22830:3078558,2439708:0,1703936,0 +g1,22830:29030814,2439708 +g1,22830:36135244,2439708 +(1,21670:36135244,2439708:1720320,1703936,0 +(1,21670:36135244,2439708:16384,1703936,0 +[1,21670:36135244,2439708:25952256,1703936,0 +(1,21670:36135244,1915420:25952256,1179648,0 +(1,21670:36135244,1915420:16384,1179648,0 +r1,22830:36151628,1915420:16384,1179648,0 ) -k1,21457:62087500,1915420:25935872 -g1,21457:62087500,1915420 +k1,21670:62087500,1915420:25935872 +g1,21670:62087500,1915420 ) ] ) -g1,21457:36675916,2439708 -(1,21457:36675916,2439708:1179648,16384,0 -r1,22617:37855564,2439708:1179648,16384,0 +g1,21670:36675916,2439708 +(1,21670:36675916,2439708:1179648,16384,0 +r1,22830:37855564,2439708:1179648,16384,0 ) ) -k1,22617:3078556,2439708:-34777008 +k1,22830:3078556,2439708:-34777008 ) ] -[1,22617:3078558,4812305:0,0,0 -(1,22617:3078558,49800853:0,16384,2228224 -k1,22617:1358238,49800853:-1720320 -(1,21457:1358238,49800853:1720320,16384,2228224 -(1,21457:1358238,49800853:1179648,16384,0 -r1,22617:2537886,49800853:1179648,16384,0 +[1,22830:3078558,4812305:0,0,0 +(1,22830:3078558,49800853:0,16384,2228224 +k1,22830:1358238,49800853:-1720320 +(1,21670:1358238,49800853:1720320,16384,2228224 +(1,21670:1358238,49800853:1179648,16384,0 +r1,22830:2537886,49800853:1179648,16384,0 ) -g1,21457:3062174,49800853 -(1,21457:3062174,52029077:16384,1703936,0 -[1,21457:3062174,52029077:25952256,1703936,0 -(1,21457:3062174,51504789:25952256,1179648,0 -(1,21457:3062174,51504789:16384,1179648,0 -r1,22617:3078558,51504789:16384,1179648,0 +g1,21670:3062174,49800853 +(1,21670:3062174,52029077:16384,1703936,0 +[1,21670:3062174,52029077:25952256,1703936,0 +(1,21670:3062174,51504789:25952256,1179648,0 +(1,21670:3062174,51504789:16384,1179648,0 +r1,22830:3078558,51504789:16384,1179648,0 ) -k1,21457:29014430,51504789:25935872 -g1,21457:29014430,51504789 +k1,21670:29014430,51504789:25935872 +g1,21670:29014430,51504789 ) ] -) -) -) -] -[1,22617:3078558,4812305:0,0,0 -(1,22617:3078558,49800853:0,16384,2228224 -g1,22617:29030814,49800853 -g1,22617:36135244,49800853 -(1,21457:36135244,49800853:1720320,16384,2228224 -(1,21457:36135244,52029077:16384,1703936,0 -[1,21457:36135244,52029077:25952256,1703936,0 -(1,21457:36135244,51504789:25952256,1179648,0 -(1,21457:36135244,51504789:16384,1179648,0 -r1,22617:36151628,51504789:16384,1179648,0 -) -k1,21457:62087500,51504789:25935872 -g1,21457:62087500,51504789 -) -] -) -g1,21457:36675916,49800853 -(1,21457:36675916,49800853:1179648,16384,0 -r1,22617:37855564,49800853:1179648,16384,0 -) -) -k1,22617:3078556,49800853:-34777008 -) -] -g1,22617:6630773,4812305 -g1,22617:6630773,4812305 -g1,22617:8180699,4812305 -g1,22617:9590378,4812305 -g1,22617:11674422,4812305 -g1,22617:13105728,4812305 -k1,22617:31387652,4812305:18281924 -) -) -] -[1,22617:6630773,45706769:25952256,40108032,0 -(1,22617:6630773,45706769:25952256,40108032,0 -(1,22617:6630773,45706769:0,0,0 -g1,22617:6630773,45706769 -) -[1,22617:6630773,45706769:25952256,40108032,0 -v1,22617:6630773,6254097:0,393216,0 -(1,22617:6630773,45510161:25952256,39649280,196608 -g1,22617:6630773,45510161 -g1,22617:6630773,45510161 -g1,22617:6434165,45510161 -(1,22617:6434165,45510161:0,39649280,196608 -r1,22617:32779637,45510161:26345472,39845888,196608 -k1,22617:6434165,45510161:-26345472 -) -(1,22617:6434165,45510161:26345472,39649280,196608 -[1,22617:6630773,45510161:25952256,39452672,0 -(1,22616:6630773,6461715:25952256,404226,76021 -h1,22616:6630773,6461715:0,0,0 -g1,22616:7579210,6461715 -g1,22616:7895356,6461715 -g1,22616:8211502,6461715 -g1,22616:8527648,6461715 -g1,22616:8843794,6461715 -g1,22616:9159940,6461715 -g1,22616:9476086,6461715 -h1,22616:11689106,6461715:0,0,0 -k1,22616:32583030,6461715:20893924 -g1,22616:32583030,6461715 -) -(1,22616:6630773,7127893:25952256,404226,101187 -h1,22616:6630773,7127893:0,0,0 -g1,22616:7579210,7127893 -g1,22616:7895356,7127893 -g1,22616:8211502,7127893 -g1,22616:8527648,7127893 -g1,22616:8843794,7127893 -k1,22616:8843794,7127893:0 -h1,22616:11372960,7127893:0,0,0 -k1,22616:32583028,7127893:21210068 -g1,22616:32583028,7127893 -) -(1,22616:6630773,7794071:25952256,404226,76021 -h1,22616:6630773,7794071:0,0,0 -g1,22616:7579210,7794071 -g1,22616:7895356,7794071 -g1,22616:8211502,7794071 -g1,22616:8527648,7794071 -g1,22616:8843794,7794071 -g1,22616:9159940,7794071 -g1,22616:9476086,7794071 -h1,22616:11689106,7794071:0,0,0 -k1,22616:32583030,7794071:20893924 -g1,22616:32583030,7794071 -) -(1,22616:6630773,8460249:25952256,404226,101187 -h1,22616:6630773,8460249:0,0,0 -g1,22616:7579210,8460249 -g1,22616:7895356,8460249 -g1,22616:8211502,8460249 -g1,22616:8527648,8460249 -g1,22616:8843794,8460249 -k1,22616:8843794,8460249:0 -h1,22616:11372960,8460249:0,0,0 -k1,22616:32583028,8460249:21210068 -g1,22616:32583028,8460249 -) -(1,22616:6630773,9126427:25952256,404226,76021 -h1,22616:6630773,9126427:0,0,0 -g1,22616:7579210,9126427 -g1,22616:7895356,9126427 -g1,22616:8211502,9126427 -g1,22616:8527648,9126427 -g1,22616:8843794,9126427 -g1,22616:9159940,9126427 -g1,22616:9476086,9126427 -h1,22616:11689106,9126427:0,0,0 -k1,22616:32583030,9126427:20893924 -g1,22616:32583030,9126427 -) -(1,22616:6630773,9792605:25952256,404226,101187 -h1,22616:6630773,9792605:0,0,0 -g1,22616:7579210,9792605 -g1,22616:7895356,9792605 -g1,22616:8211502,9792605 -g1,22616:8527648,9792605 -g1,22616:8843794,9792605 -k1,22616:8843794,9792605:0 -h1,22616:11372960,9792605:0,0,0 -k1,22616:32583028,9792605:21210068 -g1,22616:32583028,9792605 -) -(1,22616:6630773,10458783:25952256,404226,76021 -h1,22616:6630773,10458783:0,0,0 -g1,22616:7579210,10458783 -g1,22616:7895356,10458783 -g1,22616:8211502,10458783 -g1,22616:8527648,10458783 -g1,22616:8843794,10458783 -g1,22616:9159940,10458783 -g1,22616:9476086,10458783 -h1,22616:11689106,10458783:0,0,0 -k1,22616:32583030,10458783:20893924 -g1,22616:32583030,10458783 -) -(1,22616:6630773,11124961:25952256,404226,101187 -h1,22616:6630773,11124961:0,0,0 -g1,22616:7579210,11124961 -g1,22616:7895356,11124961 -g1,22616:8211502,11124961 -g1,22616:8527648,11124961 -g1,22616:8843794,11124961 -g1,22616:11056814,11124961 -k1,22616:11056814,11124961:0 -h1,22616:13269834,11124961:0,0,0 -k1,22616:32583030,11124961:19313196 -g1,22616:32583030,11124961 -) -(1,22616:6630773,11791139:25952256,404226,76021 -h1,22616:6630773,11791139:0,0,0 -g1,22616:7579210,11791139 -g1,22616:7895356,11791139 -g1,22616:8211502,11791139 -g1,22616:8527648,11791139 -g1,22616:8843794,11791139 -g1,22616:9159940,11791139 -g1,22616:9476086,11791139 -h1,22616:11689106,11791139:0,0,0 -k1,22616:32583030,11791139:20893924 -g1,22616:32583030,11791139 -) -(1,22616:6630773,12457317:25952256,410518,107478 -h1,22616:6630773,12457317:0,0,0 -g1,22616:7579210,12457317 -g1,22616:7895356,12457317 -g1,22616:8211502,12457317 -g1,22616:8527648,12457317 -g1,22616:8843794,12457317 -g1,22616:20857330,12457317 -g1,22616:23070350,12457317 -k1,22616:23070350,12457317:0 -h1,22616:24651079,12457317:0,0,0 -k1,22616:32583029,12457317:7931950 -g1,22616:32583029,12457317 -) -(1,22616:6630773,13123495:25952256,404226,101187 -h1,22616:6630773,13123495:0,0,0 -g1,22616:7579210,13123495 -g1,22616:7895356,13123495 -g1,22616:8211502,13123495 -g1,22616:8527648,13123495 -g1,22616:8843794,13123495 -k1,22616:8843794,13123495:0 -h1,22616:11372960,13123495:0,0,0 -k1,22616:32583028,13123495:21210068 -g1,22616:32583028,13123495 -) -(1,22616:6630773,13789673:25952256,404226,76021 -h1,22616:6630773,13789673:0,0,0 -g1,22616:7579210,13789673 -g1,22616:7895356,13789673 -g1,22616:8211502,13789673 -g1,22616:8527648,13789673 -g1,22616:8843794,13789673 -g1,22616:9159940,13789673 -g1,22616:9476086,13789673 -h1,22616:11689106,13789673:0,0,0 -k1,22616:32583030,13789673:20893924 -g1,22616:32583030,13789673 -) -(1,22616:6630773,14455851:25952256,404226,101187 -h1,22616:6630773,14455851:0,0,0 -g1,22616:7579210,14455851 -g1,22616:7895356,14455851 -g1,22616:8211502,14455851 -g1,22616:8527648,14455851 -g1,22616:8843794,14455851 -g1,22616:11056814,14455851 -k1,22616:11056814,14455851:0 -h1,22616:13269834,14455851:0,0,0 -k1,22616:32583030,14455851:19313196 -g1,22616:32583030,14455851 -) -(1,22616:6630773,15122029:25952256,404226,76021 -h1,22616:6630773,15122029:0,0,0 -g1,22616:7579210,15122029 -g1,22616:7895356,15122029 -g1,22616:8211502,15122029 -g1,22616:8527648,15122029 -g1,22616:8843794,15122029 -g1,22616:9159940,15122029 -g1,22616:9476086,15122029 -h1,22616:11689106,15122029:0,0,0 -k1,22616:32583030,15122029:20893924 -g1,22616:32583030,15122029 -) -(1,22616:6630773,15788207:25952256,410518,101187 -h1,22616:6630773,15788207:0,0,0 -g1,22616:7579210,15788207 -g1,22616:7895356,15788207 -g1,22616:8211502,15788207 -g1,22616:8527648,15788207 -g1,22616:8843794,15788207 -g1,22616:16115145,15788207 -g1,22616:18328165,15788207 -g1,22616:19908894,15788207 -k1,22616:19908894,15788207:0 -h1,22616:23386497,15788207:0,0,0 -k1,22616:32583029,15788207:9196532 -g1,22616:32583029,15788207 -) -(1,22616:6630773,16454385:25952256,410518,82312 -h1,22616:6630773,16454385:0,0,0 -g1,22616:7579210,16454385 -g1,22616:7895356,16454385 -g1,22616:8211502,16454385 -g1,22616:8527648,16454385 -g1,22616:8843794,16454385 -g1,22616:10740668,16454385 -g1,22616:12637543,16454385 -k1,22616:12637543,16454385:0 -h1,22616:14534417,16454385:0,0,0 -k1,22616:32583029,16454385:18048612 -g1,22616:32583029,16454385 -) -(1,22616:6630773,17120563:25952256,410518,101187 -h1,22616:6630773,17120563:0,0,0 -g1,22616:7579210,17120563 -g1,22616:7895356,17120563 -g1,22616:8211502,17120563 -k1,22616:8211502,17120563:0 -h1,22616:13902125,17120563:0,0,0 -k1,22616:32583029,17120563:18680904 -g1,22616:32583029,17120563 -) -(1,22616:6630773,17786741:25952256,404226,76021 -h1,22616:6630773,17786741:0,0,0 -g1,22616:7579210,17786741 -g1,22616:7895356,17786741 -g1,22616:8211502,17786741 -g1,22616:8527648,17786741 -g1,22616:8843794,17786741 -h1,22616:10740668,17786741:0,0,0 -k1,22616:32583028,17786741:21842360 -g1,22616:32583028,17786741 -) -(1,22616:6630773,18452919:25952256,404226,107478 -h1,22616:6630773,18452919:0,0,0 -g1,22616:7579210,18452919 -g1,22616:7895356,18452919 -g1,22616:8211502,18452919 -g1,22616:8527648,18452919 -g1,22616:8843794,18452919 -g1,22616:15166707,18452919 -k1,22616:15166707,18452919:0 -h1,22616:31922428,18452919:0,0,0 -k1,22616:32583029,18452919:660601 -g1,22616:32583029,18452919 -) -(1,22616:6630773,19119097:25952256,404226,76021 -h1,22616:6630773,19119097:0,0,0 -g1,22616:7579210,19119097 -g1,22616:7895356,19119097 -g1,22616:8211502,19119097 -g1,22616:8527648,19119097 -g1,22616:8843794,19119097 -g1,22616:9159940,19119097 -g1,22616:9476086,19119097 -h1,22616:11372960,19119097:0,0,0 -k1,22616:32583028,19119097:21210068 -g1,22616:32583028,19119097 -) -(1,22616:6630773,19785275:25952256,404226,101187 -h1,22616:6630773,19785275:0,0,0 -g1,22616:7579210,19785275 -g1,22616:7895356,19785275 -g1,22616:8211502,19785275 -g1,22616:8527648,19785275 -g1,22616:8843794,19785275 -g1,22616:9159940,19785275 -g1,22616:9476086,19785275 -g1,22616:18960456,19785275 -k1,22616:18960456,19785275:0 -h1,22616:21805767,19785275:0,0,0 -k1,22616:32583029,19785275:10777262 -g1,22616:32583029,19785275 -) -(1,22616:6630773,20451453:25952256,410518,101187 -h1,22616:6630773,20451453:0,0,0 -g1,22616:7579210,20451453 -g1,22616:7895356,20451453 -g1,22616:8211502,20451453 -g1,22616:8527648,20451453 -g1,22616:8843794,20451453 -g1,22616:9159940,20451453 -g1,22616:9476086,20451453 -g1,22616:9792232,20451453 -g1,22616:10108378,20451453 -g1,22616:18644312,20451453 -k1,22616:18644312,20451453:0 -h1,22616:27496392,20451453:0,0,0 -k1,22616:32583029,20451453:5086637 -g1,22616:32583029,20451453 -) -(1,22616:6630773,21117631:25952256,404226,101187 -h1,22616:6630773,21117631:0,0,0 -g1,22616:7579210,21117631 -g1,22616:7895356,21117631 -g1,22616:8211502,21117631 -g1,22616:8527648,21117631 -g1,22616:8843794,21117631 -g1,22616:9159940,21117631 -g1,22616:9476086,21117631 -g1,22616:9792232,21117631 -g1,22616:10108378,21117631 -g1,22616:10424524,21117631 -g1,22616:10740670,21117631 -k1,22616:10740670,21117631:0 -h1,22616:16431292,21117631:0,0,0 -k1,22616:32583029,21117631:16151737 -g1,22616:32583029,21117631 -) -(1,22616:6630773,21783809:25952256,404226,76021 -h1,22616:6630773,21783809:0,0,0 -g1,22616:7579210,21783809 -g1,22616:7895356,21783809 -g1,22616:8211502,21783809 -g1,22616:8527648,21783809 -g1,22616:8843794,21783809 -g1,22616:9159940,21783809 -g1,22616:9476086,21783809 -g1,22616:9792232,21783809 -g1,22616:10108378,21783809 -g1,22616:10424524,21783809 -g1,22616:10740670,21783809 -g1,22616:11056816,21783809 -g1,22616:11372962,21783809 -h1,22616:13269836,21783809:0,0,0 -k1,22616:32583028,21783809:19313192 -g1,22616:32583028,21783809 -) -(1,22616:6630773,22449987:25952256,404226,6290 -h1,22616:6630773,22449987:0,0,0 -g1,22616:7579210,22449987 -g1,22616:7895356,22449987 -g1,22616:8211502,22449987 -g1,22616:8527648,22449987 -g1,22616:8843794,22449987 -g1,22616:9159940,22449987 -g1,22616:9476086,22449987 -g1,22616:9792232,22449987 -g1,22616:10108378,22449987 -g1,22616:10424524,22449987 -g1,22616:10740670,22449987 -g1,22616:11056816,22449987 -g1,22616:11372962,22449987 -k1,22616:11372962,22449987:0 -h1,22616:14534419,22449987:0,0,0 -k1,22616:32583029,22449987:18048610 -g1,22616:32583029,22449987 -) -(1,22616:6630773,23116165:25952256,404226,76021 -h1,22616:6630773,23116165:0,0,0 -g1,22616:7579210,23116165 -g1,22616:7895356,23116165 -g1,22616:8211502,23116165 -g1,22616:8527648,23116165 -g1,22616:8843794,23116165 -g1,22616:9159940,23116165 -g1,22616:9476086,23116165 -g1,22616:9792232,23116165 -g1,22616:10108378,23116165 -g1,22616:10424524,23116165 -g1,22616:10740670,23116165 -g1,22616:11056816,23116165 -g1,22616:11372962,23116165 -g1,22616:11689108,23116165 -g1,22616:12005254,23116165 -h1,22616:13902128,23116165:0,0,0 -k1,22616:32583028,23116165:18680900 -g1,22616:32583028,23116165 -) -(1,22616:6630773,23782343:25952256,404226,76021 -h1,22616:6630773,23782343:0,0,0 -g1,22616:7579210,23782343 -g1,22616:7895356,23782343 -g1,22616:8211502,23782343 -g1,22616:8527648,23782343 -g1,22616:8843794,23782343 -g1,22616:9159940,23782343 -g1,22616:9476086,23782343 -g1,22616:9792232,23782343 -g1,22616:10108378,23782343 -g1,22616:10424524,23782343 -g1,22616:10740670,23782343 -g1,22616:11056816,23782343 -g1,22616:11372962,23782343 -h1,22616:13269836,23782343:0,0,0 -k1,22616:32583028,23782343:19313192 -g1,22616:32583028,23782343 -) -(1,22616:6630773,24448521:25952256,404226,101187 -h1,22616:6630773,24448521:0,0,0 -g1,22616:7579210,24448521 -g1,22616:7895356,24448521 -g1,22616:8211502,24448521 -g1,22616:8527648,24448521 -g1,22616:8843794,24448521 -g1,22616:9159940,24448521 -g1,22616:9476086,24448521 -g1,22616:9792232,24448521 -g1,22616:10108378,24448521 -g1,22616:10424524,24448521 -g1,22616:10740670,24448521 -g1,22616:11056816,24448521 -g1,22616:11372962,24448521 -k1,22616:11372962,24448521:0 -h1,22616:16747439,24448521:0,0,0 -k1,22616:32583029,24448521:15835590 -g1,22616:32583029,24448521 -) -(1,22616:6630773,25114699:25952256,404226,76021 -h1,22616:6630773,25114699:0,0,0 -g1,22616:7579210,25114699 -g1,22616:7895356,25114699 -g1,22616:8211502,25114699 -g1,22616:8527648,25114699 -g1,22616:8843794,25114699 -g1,22616:9159940,25114699 -g1,22616:9476086,25114699 -g1,22616:9792232,25114699 -g1,22616:10108378,25114699 -g1,22616:10424524,25114699 -g1,22616:10740670,25114699 -g1,22616:11056816,25114699 -g1,22616:11372962,25114699 -g1,22616:11689108,25114699 -g1,22616:12005254,25114699 -h1,22616:13902128,25114699:0,0,0 -k1,22616:32583028,25114699:18680900 -g1,22616:32583028,25114699 -) -(1,22616:6630773,25780877:25952256,404226,76021 -h1,22616:6630773,25780877:0,0,0 -g1,22616:7579210,25780877 -g1,22616:7895356,25780877 -g1,22616:8211502,25780877 -g1,22616:8527648,25780877 -g1,22616:8843794,25780877 -g1,22616:9159940,25780877 -g1,22616:9476086,25780877 -g1,22616:9792232,25780877 -g1,22616:10108378,25780877 -g1,22616:10424524,25780877 -g1,22616:10740670,25780877 -g1,22616:11056816,25780877 -g1,22616:11372962,25780877 -h1,22616:13269836,25780877:0,0,0 -k1,22616:32583028,25780877:19313192 -g1,22616:32583028,25780877 -) -(1,22616:6630773,26447055:25952256,404226,76021 -h1,22616:6630773,26447055:0,0,0 -g1,22616:7579210,26447055 -g1,22616:7895356,26447055 -g1,22616:8211502,26447055 -g1,22616:8527648,26447055 -g1,22616:8843794,26447055 -g1,22616:9159940,26447055 -g1,22616:9476086,26447055 -g1,22616:9792232,26447055 -g1,22616:10108378,26447055 -g1,22616:10424524,26447055 -g1,22616:10740670,26447055 -h1,22616:12637544,26447055:0,0,0 -k1,22616:32583028,26447055:19945484 -g1,22616:32583028,26447055 -) -(1,22616:6630773,27113233:25952256,404226,101187 -h1,22616:6630773,27113233:0,0,0 -g1,22616:7579210,27113233 -g1,22616:7895356,27113233 -g1,22616:8211502,27113233 -g1,22616:8527648,27113233 -g1,22616:8843794,27113233 -g1,22616:9159940,27113233 -g1,22616:9476086,27113233 -g1,22616:9792232,27113233 -g1,22616:10108378,27113233 -g1,22616:10424524,27113233 -g1,22616:10740670,27113233 -k1,22616:10740670,27113233:0 -h1,22616:18012020,27113233:0,0,0 -k1,22616:32583029,27113233:14571009 -g1,22616:32583029,27113233 -) -(1,22616:6630773,27779411:25952256,404226,76021 -h1,22616:6630773,27779411:0,0,0 -g1,22616:7579210,27779411 -g1,22616:7895356,27779411 -g1,22616:8211502,27779411 -g1,22616:8527648,27779411 -g1,22616:8843794,27779411 -g1,22616:9159940,27779411 -g1,22616:9476086,27779411 -g1,22616:9792232,27779411 -g1,22616:10108378,27779411 -g1,22616:10424524,27779411 -g1,22616:10740670,27779411 -g1,22616:11056816,27779411 -g1,22616:11372962,27779411 -h1,22616:13269836,27779411:0,0,0 -k1,22616:32583028,27779411:19313192 -g1,22616:32583028,27779411 -) -(1,22616:6630773,28445589:25952256,404226,6290 -h1,22616:6630773,28445589:0,0,0 -g1,22616:7579210,28445589 -g1,22616:7895356,28445589 -g1,22616:8211502,28445589 -g1,22616:8527648,28445589 -g1,22616:8843794,28445589 -g1,22616:9159940,28445589 -g1,22616:9476086,28445589 -g1,22616:9792232,28445589 -g1,22616:10108378,28445589 -g1,22616:10424524,28445589 -g1,22616:10740670,28445589 -g1,22616:11056816,28445589 -g1,22616:11372962,28445589 -k1,22616:11372962,28445589:0 -h1,22616:12953691,28445589:0,0,0 -k1,22616:32583029,28445589:19629338 -g1,22616:32583029,28445589 -) -(1,22616:6630773,29111767:25952256,404226,76021 -h1,22616:6630773,29111767:0,0,0 -g1,22616:7579210,29111767 -g1,22616:7895356,29111767 -g1,22616:8211502,29111767 -g1,22616:8527648,29111767 -g1,22616:8843794,29111767 -g1,22616:9159940,29111767 -g1,22616:9476086,29111767 -g1,22616:9792232,29111767 -g1,22616:10108378,29111767 -g1,22616:10424524,29111767 -g1,22616:10740670,29111767 -g1,22616:11056816,29111767 -g1,22616:11372962,29111767 -g1,22616:11689108,29111767 -g1,22616:12005254,29111767 -h1,22616:13902128,29111767:0,0,0 -k1,22616:32583028,29111767:18680900 -g1,22616:32583028,29111767 -) -(1,22616:6630773,29777945:25952256,404226,107478 -h1,22616:6630773,29777945:0,0,0 -g1,22616:7579210,29777945 -g1,22616:7895356,29777945 -g1,22616:8211502,29777945 -g1,22616:8527648,29777945 -g1,22616:8843794,29777945 -g1,22616:9159940,29777945 -g1,22616:9476086,29777945 -g1,22616:9792232,29777945 -g1,22616:10108378,29777945 -g1,22616:10424524,29777945 -g1,22616:10740670,29777945 -g1,22616:11056816,29777945 -g1,22616:11372962,29777945 -g1,22616:11689108,29777945 -g1,22616:12005254,29777945 -k1,22616:12005254,29777945:0 -h1,22616:21805769,29777945:0,0,0 -k1,22616:32583029,29777945:10777260 -g1,22616:32583029,29777945 -) -(1,22616:6630773,30444123:25952256,404226,76021 -h1,22616:6630773,30444123:0,0,0 -g1,22616:7579210,30444123 -g1,22616:7895356,30444123 -g1,22616:8211502,30444123 -g1,22616:8527648,30444123 -g1,22616:8843794,30444123 -g1,22616:9159940,30444123 -g1,22616:9476086,30444123 -g1,22616:9792232,30444123 -g1,22616:10108378,30444123 -g1,22616:10424524,30444123 -g1,22616:10740670,30444123 -g1,22616:11056816,30444123 -g1,22616:11372962,30444123 -g1,22616:11689108,30444123 -g1,22616:12005254,30444123 -g1,22616:12321400,30444123 -g1,22616:12637546,30444123 -h1,22616:14534420,30444123:0,0,0 -k1,22616:32583028,30444123:18048608 -g1,22616:32583028,30444123 -) -(1,22616:6630773,31110301:25952256,404226,76021 -h1,22616:6630773,31110301:0,0,0 -g1,22616:7579210,31110301 -g1,22616:7895356,31110301 -g1,22616:8211502,31110301 -g1,22616:8527648,31110301 -g1,22616:8843794,31110301 -g1,22616:9159940,31110301 -g1,22616:9476086,31110301 -g1,22616:9792232,31110301 -g1,22616:10108378,31110301 -g1,22616:10424524,31110301 -g1,22616:10740670,31110301 -g1,22616:11056816,31110301 -g1,22616:11372962,31110301 -g1,22616:11689108,31110301 -g1,22616:12005254,31110301 -h1,22616:13902128,31110301:0,0,0 -k1,22616:32583028,31110301:18680900 -g1,22616:32583028,31110301 -) -(1,22616:6630773,31776479:25952256,404226,101187 -h1,22616:6630773,31776479:0,0,0 -g1,22616:7579210,31776479 -g1,22616:7895356,31776479 -g1,22616:8211502,31776479 -g1,22616:8527648,31776479 -g1,22616:8843794,31776479 -g1,22616:9159940,31776479 -g1,22616:9476086,31776479 -g1,22616:9792232,31776479 -g1,22616:10108378,31776479 -g1,22616:10424524,31776479 -g1,22616:10740670,31776479 -g1,22616:11056816,31776479 -g1,22616:11372962,31776479 -g1,22616:11689108,31776479 -g1,22616:12005254,31776479 -k1,22616:12005254,31776479:0 -h1,22616:22121915,31776479:0,0,0 -k1,22616:32583029,31776479:10461114 -g1,22616:32583029,31776479 -) -(1,22616:6630773,32442657:25952256,404226,76021 -h1,22616:6630773,32442657:0,0,0 -g1,22616:7579210,32442657 -g1,22616:7895356,32442657 -g1,22616:8211502,32442657 -g1,22616:8527648,32442657 -g1,22616:8843794,32442657 -g1,22616:9159940,32442657 -g1,22616:9476086,32442657 -g1,22616:9792232,32442657 -g1,22616:10108378,32442657 -g1,22616:10424524,32442657 -g1,22616:10740670,32442657 -g1,22616:11056816,32442657 -g1,22616:11372962,32442657 -g1,22616:11689108,32442657 -g1,22616:12005254,32442657 -g1,22616:12321400,32442657 -g1,22616:12637546,32442657 -h1,22616:14534420,32442657:0,0,0 -k1,22616:32583028,32442657:18048608 -g1,22616:32583028,32442657 -) -(1,22616:6630773,33108835:25952256,379060,101187 -h1,22616:6630773,33108835:0,0,0 -g1,22616:7579210,33108835 -g1,22616:7895356,33108835 -g1,22616:8211502,33108835 -g1,22616:8527648,33108835 -g1,22616:8843794,33108835 -g1,22616:9159940,33108835 -g1,22616:9476086,33108835 -g1,22616:9792232,33108835 -g1,22616:10108378,33108835 -g1,22616:10424524,33108835 -g1,22616:10740670,33108835 -g1,22616:11056816,33108835 -g1,22616:11372962,33108835 -g1,22616:11689108,33108835 -g1,22616:12005254,33108835 -g1,22616:12321400,33108835 -g1,22616:12637546,33108835 -k1,22616:12637546,33108835:0 -h1,22616:13585983,33108835:0,0,0 -k1,22616:32583029,33108835:18997046 -g1,22616:32583029,33108835 -) -(1,22616:6630773,33775013:25952256,404226,76021 -h1,22616:6630773,33775013:0,0,0 -g1,22616:7579210,33775013 -g1,22616:7895356,33775013 -g1,22616:8211502,33775013 -g1,22616:8527648,33775013 -g1,22616:8843794,33775013 -g1,22616:9159940,33775013 -g1,22616:9476086,33775013 -g1,22616:9792232,33775013 -g1,22616:10108378,33775013 -g1,22616:10424524,33775013 -g1,22616:10740670,33775013 -g1,22616:11056816,33775013 -g1,22616:11372962,33775013 -g1,22616:11689108,33775013 -g1,22616:12005254,33775013 -g1,22616:12321400,33775013 -g1,22616:12637546,33775013 -g1,22616:12953692,33775013 -g1,22616:13269838,33775013 -h1,22616:15166712,33775013:0,0,0 -k1,22616:32583028,33775013:17416316 -g1,22616:32583028,33775013 -) -(1,22616:6630773,34441191:25952256,404226,76021 -h1,22616:6630773,34441191:0,0,0 -g1,22616:7579210,34441191 -g1,22616:7895356,34441191 -g1,22616:8211502,34441191 -g1,22616:8527648,34441191 -g1,22616:8843794,34441191 -g1,22616:9159940,34441191 -g1,22616:9476086,34441191 -g1,22616:9792232,34441191 -g1,22616:10108378,34441191 -g1,22616:10424524,34441191 -g1,22616:10740670,34441191 -g1,22616:11056816,34441191 -g1,22616:11372962,34441191 -g1,22616:11689108,34441191 -g1,22616:12005254,34441191 -g1,22616:12321400,34441191 -g1,22616:12637546,34441191 -h1,22616:14534420,34441191:0,0,0 -k1,22616:32583028,34441191:18048608 -g1,22616:32583028,34441191 -) -(1,22616:6630773,35107369:25952256,404226,76021 -h1,22616:6630773,35107369:0,0,0 -g1,22616:7579210,35107369 -g1,22616:7895356,35107369 -g1,22616:8211502,35107369 -g1,22616:8527648,35107369 -g1,22616:8843794,35107369 -g1,22616:9159940,35107369 -g1,22616:9476086,35107369 -g1,22616:9792232,35107369 -g1,22616:10108378,35107369 -g1,22616:10424524,35107369 -g1,22616:10740670,35107369 -g1,22616:11056816,35107369 -g1,22616:11372962,35107369 -g1,22616:11689108,35107369 -g1,22616:12005254,35107369 -h1,22616:13902128,35107369:0,0,0 -k1,22616:32583028,35107369:18680900 -g1,22616:32583028,35107369 -) -(1,22616:6630773,35773547:25952256,404226,76021 -h1,22616:6630773,35773547:0,0,0 -g1,22616:7579210,35773547 -g1,22616:7895356,35773547 -g1,22616:8211502,35773547 -g1,22616:8527648,35773547 -g1,22616:8843794,35773547 -g1,22616:9159940,35773547 -g1,22616:9476086,35773547 -g1,22616:9792232,35773547 -g1,22616:10108378,35773547 -g1,22616:10424524,35773547 -g1,22616:10740670,35773547 -g1,22616:11056816,35773547 -g1,22616:11372962,35773547 -h1,22616:13269836,35773547:0,0,0 -k1,22616:32583028,35773547:19313192 -g1,22616:32583028,35773547 -) -(1,22616:6630773,36439725:25952256,404226,6290 -h1,22616:6630773,36439725:0,0,0 -g1,22616:7579210,36439725 -g1,22616:7895356,36439725 -g1,22616:8211502,36439725 -g1,22616:8527648,36439725 -g1,22616:8843794,36439725 -g1,22616:9159940,36439725 -g1,22616:9476086,36439725 -g1,22616:9792232,36439725 -g1,22616:10108378,36439725 -g1,22616:10424524,36439725 -g1,22616:10740670,36439725 -g1,22616:11056816,36439725 -g1,22616:11372962,36439725 -k1,22616:11372962,36439725:0 -h1,22616:12953691,36439725:0,0,0 -k1,22616:32583029,36439725:19629338 -g1,22616:32583029,36439725 -) -(1,22616:6630773,37105903:25952256,404226,76021 -h1,22616:6630773,37105903:0,0,0 -g1,22616:7579210,37105903 -g1,22616:7895356,37105903 -g1,22616:8211502,37105903 -g1,22616:8527648,37105903 -g1,22616:8843794,37105903 -g1,22616:9159940,37105903 -g1,22616:9476086,37105903 -g1,22616:9792232,37105903 -g1,22616:10108378,37105903 -g1,22616:10424524,37105903 -g1,22616:10740670,37105903 -g1,22616:11056816,37105903 -g1,22616:11372962,37105903 -g1,22616:11689108,37105903 -g1,22616:12005254,37105903 -h1,22616:13902128,37105903:0,0,0 -k1,22616:32583028,37105903:18680900 -g1,22616:32583028,37105903 -) -(1,22616:6630773,37772081:25952256,404226,107478 -h1,22616:6630773,37772081:0,0,0 -g1,22616:7579210,37772081 -g1,22616:7895356,37772081 -g1,22616:8211502,37772081 -g1,22616:8527648,37772081 -g1,22616:8843794,37772081 -g1,22616:9159940,37772081 -g1,22616:9476086,37772081 -g1,22616:9792232,37772081 -g1,22616:10108378,37772081 -g1,22616:10424524,37772081 -g1,22616:10740670,37772081 -g1,22616:11056816,37772081 -g1,22616:11372962,37772081 -g1,22616:11689108,37772081 -g1,22616:12005254,37772081 -k1,22616:12005254,37772081:0 -h1,22616:21805769,37772081:0,0,0 -k1,22616:32583029,37772081:10777260 -g1,22616:32583029,37772081 -) -(1,22616:6630773,38438259:25952256,404226,76021 -h1,22616:6630773,38438259:0,0,0 -g1,22616:7579210,38438259 -g1,22616:7895356,38438259 -g1,22616:8211502,38438259 -g1,22616:8527648,38438259 -g1,22616:8843794,38438259 -g1,22616:9159940,38438259 -g1,22616:9476086,38438259 -g1,22616:9792232,38438259 -g1,22616:10108378,38438259 -g1,22616:10424524,38438259 -g1,22616:10740670,38438259 -g1,22616:11056816,38438259 -g1,22616:11372962,38438259 -g1,22616:11689108,38438259 -g1,22616:12005254,38438259 -g1,22616:12321400,38438259 -g1,22616:12637546,38438259 -h1,22616:14534420,38438259:0,0,0 -k1,22616:32583028,38438259:18048608 -g1,22616:32583028,38438259 -) -(1,22616:6630773,39104437:25952256,404226,76021 -h1,22616:6630773,39104437:0,0,0 -g1,22616:7579210,39104437 -g1,22616:7895356,39104437 -g1,22616:8211502,39104437 -g1,22616:8527648,39104437 -g1,22616:8843794,39104437 -g1,22616:9159940,39104437 -g1,22616:9476086,39104437 -g1,22616:9792232,39104437 -g1,22616:10108378,39104437 -g1,22616:10424524,39104437 -g1,22616:10740670,39104437 -g1,22616:11056816,39104437 -g1,22616:11372962,39104437 -g1,22616:11689108,39104437 -g1,22616:12005254,39104437 -h1,22616:13902128,39104437:0,0,0 -k1,22616:32583028,39104437:18680900 -g1,22616:32583028,39104437 -) -(1,22616:6630773,39770615:25952256,404226,101187 -h1,22616:6630773,39770615:0,0,0 -g1,22616:7579210,39770615 -g1,22616:7895356,39770615 -g1,22616:8211502,39770615 -g1,22616:8527648,39770615 -g1,22616:8843794,39770615 -g1,22616:9159940,39770615 -g1,22616:9476086,39770615 -g1,22616:9792232,39770615 -g1,22616:10108378,39770615 -g1,22616:10424524,39770615 -g1,22616:10740670,39770615 -g1,22616:11056816,39770615 -g1,22616:11372962,39770615 -g1,22616:11689108,39770615 -g1,22616:12005254,39770615 -k1,22616:12005254,39770615:0 -h1,22616:22121915,39770615:0,0,0 -k1,22616:32583029,39770615:10461114 -g1,22616:32583029,39770615 -) -(1,22616:6630773,40436793:25952256,404226,76021 -h1,22616:6630773,40436793:0,0,0 -g1,22616:7579210,40436793 -g1,22616:7895356,40436793 -g1,22616:8211502,40436793 -g1,22616:8527648,40436793 -g1,22616:8843794,40436793 -g1,22616:9159940,40436793 -g1,22616:9476086,40436793 -g1,22616:9792232,40436793 -g1,22616:10108378,40436793 -g1,22616:10424524,40436793 -g1,22616:10740670,40436793 -g1,22616:11056816,40436793 -g1,22616:11372962,40436793 -g1,22616:11689108,40436793 -g1,22616:12005254,40436793 -g1,22616:12321400,40436793 -g1,22616:12637546,40436793 -h1,22616:14534420,40436793:0,0,0 -k1,22616:32583028,40436793:18048608 -g1,22616:32583028,40436793 -) -(1,22616:6630773,41102971:25952256,404226,101187 -h1,22616:6630773,41102971:0,0,0 -g1,22616:7579210,41102971 -g1,22616:7895356,41102971 -g1,22616:8211502,41102971 -g1,22616:8527648,41102971 -g1,22616:8843794,41102971 -g1,22616:9159940,41102971 -g1,22616:9476086,41102971 -g1,22616:9792232,41102971 -g1,22616:10108378,41102971 -g1,22616:10424524,41102971 -g1,22616:10740670,41102971 -g1,22616:11056816,41102971 -g1,22616:11372962,41102971 -g1,22616:11689108,41102971 -g1,22616:12005254,41102971 -g1,22616:12321400,41102971 -g1,22616:12637546,41102971 -k1,22616:12637546,41102971:0 -h1,22616:15166712,41102971:0,0,0 -k1,22616:32583028,41102971:17416316 -g1,22616:32583028,41102971 -) -(1,22616:6630773,41769149:25952256,404226,76021 -h1,22616:6630773,41769149:0,0,0 -g1,22616:7579210,41769149 -g1,22616:7895356,41769149 -g1,22616:8211502,41769149 -g1,22616:8527648,41769149 -g1,22616:8843794,41769149 -g1,22616:9159940,41769149 -g1,22616:9476086,41769149 -g1,22616:9792232,41769149 -g1,22616:10108378,41769149 -g1,22616:10424524,41769149 -g1,22616:10740670,41769149 -g1,22616:11056816,41769149 -g1,22616:11372962,41769149 -g1,22616:11689108,41769149 -g1,22616:12005254,41769149 -g1,22616:12321400,41769149 -g1,22616:12637546,41769149 -g1,22616:12953692,41769149 -g1,22616:13269838,41769149 -h1,22616:15166712,41769149:0,0,0 -k1,22616:32583028,41769149:17416316 -g1,22616:32583028,41769149 -) -(1,22616:6630773,42435327:25952256,404226,76021 -h1,22616:6630773,42435327:0,0,0 -g1,22616:7579210,42435327 -g1,22616:7895356,42435327 -g1,22616:8211502,42435327 -g1,22616:8527648,42435327 -g1,22616:8843794,42435327 -g1,22616:9159940,42435327 -g1,22616:9476086,42435327 -g1,22616:9792232,42435327 -g1,22616:10108378,42435327 -g1,22616:10424524,42435327 -g1,22616:10740670,42435327 -g1,22616:11056816,42435327 -g1,22616:11372962,42435327 -g1,22616:11689108,42435327 -g1,22616:12005254,42435327 -g1,22616:12321400,42435327 -g1,22616:12637546,42435327 -h1,22616:14534420,42435327:0,0,0 -k1,22616:32583028,42435327:18048608 -g1,22616:32583028,42435327 -) -(1,22616:6630773,43101505:25952256,404226,76021 -h1,22616:6630773,43101505:0,0,0 -g1,22616:7579210,43101505 -g1,22616:7895356,43101505 -g1,22616:8211502,43101505 -g1,22616:8527648,43101505 -g1,22616:8843794,43101505 -g1,22616:9159940,43101505 -g1,22616:9476086,43101505 -g1,22616:9792232,43101505 -g1,22616:10108378,43101505 -g1,22616:10424524,43101505 -g1,22616:10740670,43101505 -g1,22616:11056816,43101505 -g1,22616:11372962,43101505 -g1,22616:11689108,43101505 -g1,22616:12005254,43101505 -h1,22616:13902128,43101505:0,0,0 -k1,22616:32583028,43101505:18680900 -g1,22616:32583028,43101505 -) -(1,22616:6630773,43767683:25952256,404226,76021 -h1,22616:6630773,43767683:0,0,0 -g1,22616:7579210,43767683 -g1,22616:7895356,43767683 -g1,22616:8211502,43767683 -g1,22616:8527648,43767683 -g1,22616:8843794,43767683 -g1,22616:9159940,43767683 -g1,22616:9476086,43767683 -g1,22616:9792232,43767683 -g1,22616:10108378,43767683 -g1,22616:10424524,43767683 -g1,22616:10740670,43767683 -g1,22616:11056816,43767683 -g1,22616:11372962,43767683 -h1,22616:13269836,43767683:0,0,0 -k1,22616:32583028,43767683:19313192 -g1,22616:32583028,43767683 -) -(1,22616:6630773,44433861:25952256,404226,76021 -h1,22616:6630773,44433861:0,0,0 -g1,22616:7579210,44433861 -g1,22616:7895356,44433861 -g1,22616:8211502,44433861 -g1,22616:8527648,44433861 -g1,22616:8843794,44433861 -g1,22616:9159940,44433861 -g1,22616:9476086,44433861 -g1,22616:9792232,44433861 -g1,22616:10108378,44433861 -g1,22616:10424524,44433861 -g1,22616:10740670,44433861 -h1,22616:12637544,44433861:0,0,0 -k1,22616:32583028,44433861:19945484 -g1,22616:32583028,44433861 -) -(1,22616:6630773,45100039:25952256,404226,101187 -h1,22616:6630773,45100039:0,0,0 -g1,22616:7579210,45100039 -g1,22616:7895356,45100039 -g1,22616:8211502,45100039 -g1,22616:8527648,45100039 -g1,22616:8843794,45100039 -g1,22616:9159940,45100039 -g1,22616:9476086,45100039 -g1,22616:9792232,45100039 -g1,22616:10108378,45100039 -g1,22616:23702642,45100039 -k1,22616:23702642,45100039:0 -h1,22616:26231808,45100039:0,0,0 -k1,22616:32583029,45100039:6351221 -g1,22616:32583029,45100039 -) -] -) -g1,22617:32583029,45510161 -g1,22617:6630773,45510161 -g1,22617:6630773,45510161 -g1,22617:32583029,45510161 -g1,22617:32583029,45510161 -) -] -(1,22617:32583029,45706769:0,0,0 -g1,22617:32583029,45706769 -) -) -] -(1,22617:6630773,47279633:25952256,0,0 -h1,22617:6630773,47279633:25952256,0,0 -) -] -(1,22617:4262630,4025873:0,0,0 -[1,22617:-473656,4025873:0,0,0 -(1,22617:-473656,-710413:0,0,0 -(1,22617:-473656,-710413:0,0,0 -g1,22617:-473656,-710413 -) -g1,22617:-473656,-710413 -) -] -) -] -!33238 -}408 +) +) +) +] +[1,22830:3078558,4812305:0,0,0 +(1,22830:3078558,49800853:0,16384,2228224 +g1,22830:29030814,49800853 +g1,22830:36135244,49800853 +(1,21670:36135244,49800853:1720320,16384,2228224 +(1,21670:36135244,52029077:16384,1703936,0 +[1,21670:36135244,52029077:25952256,1703936,0 +(1,21670:36135244,51504789:25952256,1179648,0 +(1,21670:36135244,51504789:16384,1179648,0 +r1,22830:36151628,51504789:16384,1179648,0 +) +k1,21670:62087500,51504789:25935872 +g1,21670:62087500,51504789 +) +] +) +g1,21670:36675916,49800853 +(1,21670:36675916,49800853:1179648,16384,0 +r1,22830:37855564,49800853:1179648,16384,0 +) +) +k1,22830:3078556,49800853:-34777008 +) +] +g1,22830:6630773,4812305 +k1,22830:21078841,4812305:13252691 +g1,22830:22701512,4812305 +g1,22830:23350318,4812305 +g1,22830:24759997,4812305 +g1,22830:28372341,4812305 +g1,22830:30105768,4812305 +) +) +] +[1,22830:6630773,45706769:25952256,40108032,0 +(1,22830:6630773,45706769:25952256,40108032,0 +(1,22830:6630773,45706769:0,0,0 +g1,22830:6630773,45706769 +) +[1,22830:6630773,45706769:25952256,40108032,0 +v1,22830:6630773,6254097:0,393216,0 +(1,22830:6630773,45510161:25952256,39649280,196608 +g1,22830:6630773,45510161 +g1,22830:6630773,45510161 +g1,22830:6434165,45510161 +(1,22830:6434165,45510161:0,39649280,196608 +r1,22830:32779637,45510161:26345472,39845888,196608 +k1,22830:6434165,45510161:-26345472 +) +(1,22830:6434165,45510161:26345472,39649280,196608 +[1,22830:6630773,45510161:25952256,39452672,0 +(1,22829:6630773,6481928:25952256,424439,79822 +h1,22829:6630773,6481928:0,0,0 +g1,22829:7626635,6481928 +g1,22829:7958589,6481928 +g1,22829:8290543,6481928 +g1,22829:8622497,6481928 +g1,22829:8954451,6481928 +g1,22829:9286405,6481928 +g1,22829:9618359,6481928 +h1,22829:11942037,6481928:0,0,0 +k1,22829:32583029,6481928:20640992 +g1,22829:32583029,6481928 +) +(1,22829:6630773,7166783:25952256,424439,106246 +h1,22829:6630773,7166783:0,0,0 +g1,22829:7626635,7166783 +g1,22829:7958589,7166783 +g1,22829:8290543,7166783 +g1,22829:8622497,7166783 +g1,22829:8954451,7166783 +g1,22829:11278129,7166783 +k1,22829:11278129,7166783:0 +h1,22829:13601807,7166783:0,0,0 +k1,22829:32583029,7166783:18981222 +g1,22829:32583029,7166783 +) +(1,22829:6630773,7851638:25952256,424439,79822 +h1,22829:6630773,7851638:0,0,0 +g1,22829:7626635,7851638 +g1,22829:7958589,7851638 +g1,22829:8290543,7851638 +g1,22829:8622497,7851638 +g1,22829:8954451,7851638 +g1,22829:9286405,7851638 +g1,22829:9618359,7851638 +h1,22829:11942037,7851638:0,0,0 +k1,22829:32583029,7851638:20640992 +g1,22829:32583029,7851638 +) +(1,22829:6630773,8536493:25952256,431045,112852 +h1,22829:6630773,8536493:0,0,0 +g1,22829:7626635,8536493 +g1,22829:7958589,8536493 +g1,22829:8290543,8536493 +g1,22829:8622497,8536493 +g1,22829:8954451,8536493 +g1,22829:21568701,8536493 +g1,22829:23892379,8536493 +k1,22829:23892379,8536493:0 +h1,22829:25552149,8536493:0,0,0 +k1,22829:32583029,8536493:7030880 +g1,22829:32583029,8536493 +) +(1,22829:6630773,9221348:25952256,424439,106246 +h1,22829:6630773,9221348:0,0,0 +g1,22829:7626635,9221348 +g1,22829:7958589,9221348 +g1,22829:8290543,9221348 +g1,22829:8622497,9221348 +g1,22829:8954451,9221348 +k1,22829:8954451,9221348:0 +h1,22829:11610083,9221348:0,0,0 +k1,22829:32583029,9221348:20972946 +g1,22829:32583029,9221348 +) +(1,22829:6630773,9906203:25952256,424439,79822 +h1,22829:6630773,9906203:0,0,0 +g1,22829:7626635,9906203 +g1,22829:7958589,9906203 +g1,22829:8290543,9906203 +g1,22829:8622497,9906203 +g1,22829:8954451,9906203 +g1,22829:9286405,9906203 +g1,22829:9618359,9906203 +h1,22829:11942037,9906203:0,0,0 +k1,22829:32583029,9906203:20640992 +g1,22829:32583029,9906203 +) +(1,22829:6630773,10591058:25952256,424439,106246 +h1,22829:6630773,10591058:0,0,0 +g1,22829:7626635,10591058 +g1,22829:7958589,10591058 +g1,22829:8290543,10591058 +g1,22829:8622497,10591058 +g1,22829:8954451,10591058 +g1,22829:11278129,10591058 +k1,22829:11278129,10591058:0 +h1,22829:13601807,10591058:0,0,0 +k1,22829:32583029,10591058:18981222 +g1,22829:32583029,10591058 +) +(1,22829:6630773,11275913:25952256,424439,79822 +h1,22829:6630773,11275913:0,0,0 +g1,22829:7626635,11275913 +g1,22829:7958589,11275913 +g1,22829:8290543,11275913 +g1,22829:8622497,11275913 +g1,22829:8954451,11275913 +g1,22829:9286405,11275913 +g1,22829:9618359,11275913 +h1,22829:11942037,11275913:0,0,0 +k1,22829:32583029,11275913:20640992 +g1,22829:32583029,11275913 +) +(1,22829:6630773,11960768:25952256,431045,106246 +h1,22829:6630773,11960768:0,0,0 +g1,22829:7626635,11960768 +g1,22829:7958589,11960768 +g1,22829:8290543,11960768 +g1,22829:8622497,11960768 +g1,22829:8954451,11960768 +g1,22829:16589391,11960768 +g1,22829:18913069,11960768 +g1,22829:20572839,11960768 +k1,22829:20572839,11960768:0 +h1,22829:24224333,11960768:0,0,0 +k1,22829:32583029,11960768:8358696 +g1,22829:32583029,11960768 +) +(1,22829:6630773,12645623:25952256,431045,86428 +h1,22829:6630773,12645623:0,0,0 +g1,22829:7626635,12645623 +g1,22829:7958589,12645623 +g1,22829:8290543,12645623 +g1,22829:8622497,12645623 +g1,22829:8954451,12645623 +g1,22829:10946175,12645623 +g1,22829:12937899,12645623 +k1,22829:12937899,12645623:0 +h1,22829:14929623,12645623:0,0,0 +k1,22829:32583029,12645623:17653406 +g1,22829:32583029,12645623 +) +(1,22829:6630773,13330478:25952256,431045,106246 +h1,22829:6630773,13330478:0,0,0 +g1,22829:7626635,13330478 +g1,22829:7958589,13330478 +g1,22829:8290543,13330478 +k1,22829:8290543,13330478:0 +h1,22829:14265714,13330478:0,0,0 +k1,22829:32583030,13330478:18317316 +g1,22829:32583030,13330478 +) +(1,22829:6630773,14015333:25952256,424439,79822 +h1,22829:6630773,14015333:0,0,0 +g1,22829:7626635,14015333 +g1,22829:7958589,14015333 +g1,22829:8290543,14015333 +g1,22829:8622497,14015333 +g1,22829:8954451,14015333 +h1,22829:10946175,14015333:0,0,0 +k1,22829:32583029,14015333:21636854 +g1,22829:32583029,14015333 +) +(1,22829:6630773,14700188:25952256,424439,112852 +h1,22829:6630773,14700188:0,0,0 +k1,22829:7525958,14700188:231277 +k1,22829:7757236,14700188:231278 +k1,22829:7988513,14700188:231277 +k1,22829:8219791,14700188:231278 +k1,22829:8451068,14700188:231277 +k1,22829:14989470,14700188:231278 +k1,22829:14989470,14700188:0 +h1,22829:32583029,14700188:0,0,0 +k1,22829:32583029,14700188:0 +k1,22829:32583029,14700188:0 +) +(1,22829:6630773,15385043:25952256,424439,79822 +h1,22829:6630773,15385043:0,0,0 +g1,22829:7626635,15385043 +g1,22829:7958589,15385043 +g1,22829:8290543,15385043 +g1,22829:8622497,15385043 +g1,22829:8954451,15385043 +g1,22829:9286405,15385043 +g1,22829:9618359,15385043 +h1,22829:11610083,15385043:0,0,0 +k1,22829:32583029,15385043:20972946 +g1,22829:32583029,15385043 +) +(1,22829:6630773,16069898:25952256,424439,106246 +h1,22829:6630773,16069898:0,0,0 +g1,22829:7626635,16069898 +g1,22829:7958589,16069898 +g1,22829:8290543,16069898 +g1,22829:8622497,16069898 +g1,22829:8954451,16069898 +g1,22829:9286405,16069898 +g1,22829:9618359,16069898 +g1,22829:19576976,16069898 +k1,22829:19576976,16069898:0 +h1,22829:22564561,16069898:0,0,0 +k1,22829:32583029,16069898:10018468 +g1,22829:32583029,16069898 +) +(1,22829:6630773,16754753:25952256,431045,106246 +h1,22829:6630773,16754753:0,0,0 +g1,22829:7626635,16754753 +g1,22829:7958589,16754753 +g1,22829:8290543,16754753 +g1,22829:8622497,16754753 +g1,22829:8954451,16754753 +g1,22829:9286405,16754753 +g1,22829:9618359,16754753 +g1,22829:9950313,16754753 +g1,22829:10282267,16754753 +g1,22829:19245024,16754753 +k1,22829:19245024,16754753:0 +h1,22829:28539735,16754753:0,0,0 +k1,22829:32583029,16754753:4043294 +g1,22829:32583029,16754753 +) +(1,22829:6630773,17439608:25952256,424439,106246 +h1,22829:6630773,17439608:0,0,0 +g1,22829:7626635,17439608 +g1,22829:7958589,17439608 +g1,22829:8290543,17439608 +g1,22829:8622497,17439608 +g1,22829:8954451,17439608 +g1,22829:9286405,17439608 +g1,22829:9618359,17439608 +g1,22829:9950313,17439608 +g1,22829:10282267,17439608 +g1,22829:10614221,17439608 +g1,22829:10946175,17439608 +k1,22829:10946175,17439608:0 +h1,22829:16921346,17439608:0,0,0 +k1,22829:32583029,17439608:15661683 +g1,22829:32583029,17439608 +) +(1,22829:6630773,18124463:25952256,424439,79822 +h1,22829:6630773,18124463:0,0,0 +g1,22829:7626635,18124463 +g1,22829:7958589,18124463 +g1,22829:8290543,18124463 +g1,22829:8622497,18124463 +g1,22829:8954451,18124463 +g1,22829:9286405,18124463 +g1,22829:9618359,18124463 +g1,22829:9950313,18124463 +g1,22829:10282267,18124463 +g1,22829:10614221,18124463 +g1,22829:10946175,18124463 +g1,22829:11278129,18124463 +g1,22829:11610083,18124463 +h1,22829:13601807,18124463:0,0,0 +k1,22829:32583029,18124463:18981222 +g1,22829:32583029,18124463 +) +(1,22829:6630773,18809318:25952256,424439,6605 +h1,22829:6630773,18809318:0,0,0 +g1,22829:7626635,18809318 +g1,22829:7958589,18809318 +g1,22829:8290543,18809318 +g1,22829:8622497,18809318 +g1,22829:8954451,18809318 +g1,22829:9286405,18809318 +g1,22829:9618359,18809318 +g1,22829:9950313,18809318 +g1,22829:10282267,18809318 +g1,22829:10614221,18809318 +g1,22829:10946175,18809318 +g1,22829:11278129,18809318 +g1,22829:11610083,18809318 +k1,22829:11610083,18809318:0 +h1,22829:14929622,18809318:0,0,0 +k1,22829:32583030,18809318:17653408 +g1,22829:32583030,18809318 +) +(1,22829:6630773,19494173:25952256,424439,79822 +h1,22829:6630773,19494173:0,0,0 +g1,22829:7626635,19494173 +g1,22829:7958589,19494173 +g1,22829:8290543,19494173 +g1,22829:8622497,19494173 +g1,22829:8954451,19494173 +g1,22829:9286405,19494173 +g1,22829:9618359,19494173 +g1,22829:9950313,19494173 +g1,22829:10282267,19494173 +g1,22829:10614221,19494173 +g1,22829:10946175,19494173 +g1,22829:11278129,19494173 +g1,22829:11610083,19494173 +g1,22829:11942037,19494173 +g1,22829:12273991,19494173 +h1,22829:14265715,19494173:0,0,0 +k1,22829:32583029,19494173:18317314 +g1,22829:32583029,19494173 +) +(1,22829:6630773,20179028:25952256,424439,79822 +h1,22829:6630773,20179028:0,0,0 +g1,22829:7626635,20179028 +g1,22829:7958589,20179028 +g1,22829:8290543,20179028 +g1,22829:8622497,20179028 +g1,22829:8954451,20179028 +g1,22829:9286405,20179028 +g1,22829:9618359,20179028 +g1,22829:9950313,20179028 +g1,22829:10282267,20179028 +g1,22829:10614221,20179028 +g1,22829:10946175,20179028 +g1,22829:11278129,20179028 +g1,22829:11610083,20179028 +h1,22829:13601807,20179028:0,0,0 +k1,22829:32583029,20179028:18981222 +g1,22829:32583029,20179028 +) +(1,22829:6630773,20863883:25952256,424439,106246 +h1,22829:6630773,20863883:0,0,0 +g1,22829:7626635,20863883 +g1,22829:7958589,20863883 +g1,22829:8290543,20863883 +g1,22829:8622497,20863883 +g1,22829:8954451,20863883 +g1,22829:9286405,20863883 +g1,22829:9618359,20863883 +g1,22829:9950313,20863883 +g1,22829:10282267,20863883 +g1,22829:10614221,20863883 +g1,22829:10946175,20863883 +g1,22829:11278129,20863883 +g1,22829:11610083,20863883 +k1,22829:11610083,20863883:0 +h1,22829:17253300,20863883:0,0,0 +k1,22829:32583029,20863883:15329729 +g1,22829:32583029,20863883 +) +(1,22829:6630773,21548738:25952256,424439,79822 +h1,22829:6630773,21548738:0,0,0 +g1,22829:7626635,21548738 +g1,22829:7958589,21548738 +g1,22829:8290543,21548738 +g1,22829:8622497,21548738 +g1,22829:8954451,21548738 +g1,22829:9286405,21548738 +g1,22829:9618359,21548738 +g1,22829:9950313,21548738 +g1,22829:10282267,21548738 +g1,22829:10614221,21548738 +g1,22829:10946175,21548738 +g1,22829:11278129,21548738 +g1,22829:11610083,21548738 +g1,22829:11942037,21548738 +g1,22829:12273991,21548738 +h1,22829:14265715,21548738:0,0,0 +k1,22829:32583029,21548738:18317314 +g1,22829:32583029,21548738 +) +(1,22829:6630773,22233593:25952256,424439,79822 +h1,22829:6630773,22233593:0,0,0 +g1,22829:7626635,22233593 +g1,22829:7958589,22233593 +g1,22829:8290543,22233593 +g1,22829:8622497,22233593 +g1,22829:8954451,22233593 +g1,22829:9286405,22233593 +g1,22829:9618359,22233593 +g1,22829:9950313,22233593 +g1,22829:10282267,22233593 +g1,22829:10614221,22233593 +g1,22829:10946175,22233593 +g1,22829:11278129,22233593 +g1,22829:11610083,22233593 +h1,22829:13601807,22233593:0,0,0 +k1,22829:32583029,22233593:18981222 +g1,22829:32583029,22233593 +) +(1,22829:6630773,22918448:25952256,424439,79822 +h1,22829:6630773,22918448:0,0,0 +g1,22829:7626635,22918448 +g1,22829:7958589,22918448 +g1,22829:8290543,22918448 +g1,22829:8622497,22918448 +g1,22829:8954451,22918448 +g1,22829:9286405,22918448 +g1,22829:9618359,22918448 +g1,22829:9950313,22918448 +g1,22829:10282267,22918448 +g1,22829:10614221,22918448 +g1,22829:10946175,22918448 +h1,22829:12937899,22918448:0,0,0 +k1,22829:32583029,22918448:19645130 +g1,22829:32583029,22918448 +) +(1,22829:6630773,23603303:25952256,424439,106246 +h1,22829:6630773,23603303:0,0,0 +g1,22829:7626635,23603303 +g1,22829:7958589,23603303 +g1,22829:8290543,23603303 +g1,22829:8622497,23603303 +g1,22829:8954451,23603303 +g1,22829:9286405,23603303 +g1,22829:9618359,23603303 +g1,22829:9950313,23603303 +g1,22829:10282267,23603303 +g1,22829:10614221,23603303 +g1,22829:10946175,23603303 +k1,22829:10946175,23603303:0 +h1,22829:18581116,23603303:0,0,0 +k1,22829:32583029,23603303:14001913 +g1,22829:32583029,23603303 +) +(1,22829:6630773,24288158:25952256,424439,79822 +h1,22829:6630773,24288158:0,0,0 +g1,22829:7626635,24288158 +g1,22829:7958589,24288158 +g1,22829:8290543,24288158 +g1,22829:8622497,24288158 +g1,22829:8954451,24288158 +g1,22829:9286405,24288158 +g1,22829:9618359,24288158 +g1,22829:9950313,24288158 +g1,22829:10282267,24288158 +g1,22829:10614221,24288158 +g1,22829:10946175,24288158 +g1,22829:11278129,24288158 +g1,22829:11610083,24288158 +h1,22829:13601807,24288158:0,0,0 +k1,22829:32583029,24288158:18981222 +g1,22829:32583029,24288158 +) +(1,22829:6630773,24973013:25952256,424439,6605 +h1,22829:6630773,24973013:0,0,0 +g1,22829:7626635,24973013 +g1,22829:7958589,24973013 +g1,22829:8290543,24973013 +g1,22829:8622497,24973013 +g1,22829:8954451,24973013 +g1,22829:9286405,24973013 +g1,22829:9618359,24973013 +g1,22829:9950313,24973013 +g1,22829:10282267,24973013 +g1,22829:10614221,24973013 +g1,22829:10946175,24973013 +g1,22829:11278129,24973013 +g1,22829:11610083,24973013 +k1,22829:11610083,24973013:0 +h1,22829:13269853,24973013:0,0,0 +k1,22829:32583029,24973013:19313176 +g1,22829:32583029,24973013 +) +(1,22829:6630773,25657868:25952256,424439,79822 +h1,22829:6630773,25657868:0,0,0 +g1,22829:7626635,25657868 +g1,22829:7958589,25657868 +g1,22829:8290543,25657868 +g1,22829:8622497,25657868 +g1,22829:8954451,25657868 +g1,22829:9286405,25657868 +g1,22829:9618359,25657868 +g1,22829:9950313,25657868 +g1,22829:10282267,25657868 +g1,22829:10614221,25657868 +g1,22829:10946175,25657868 +g1,22829:11278129,25657868 +g1,22829:11610083,25657868 +g1,22829:11942037,25657868 +g1,22829:12273991,25657868 +h1,22829:14265715,25657868:0,0,0 +k1,22829:32583029,25657868:18317314 +g1,22829:32583029,25657868 +) +(1,22829:6630773,26342723:25952256,424439,112852 +h1,22829:6630773,26342723:0,0,0 +g1,22829:7626635,26342723 +g1,22829:7958589,26342723 +g1,22829:8290543,26342723 +g1,22829:8622497,26342723 +g1,22829:8954451,26342723 +g1,22829:9286405,26342723 +g1,22829:9618359,26342723 +g1,22829:9950313,26342723 +g1,22829:10282267,26342723 +g1,22829:10614221,26342723 +g1,22829:10946175,26342723 +g1,22829:11278129,26342723 +g1,22829:11610083,26342723 +g1,22829:11942037,26342723 +g1,22829:12273991,26342723 +k1,22829:12273991,26342723:0 +h1,22829:22564563,26342723:0,0,0 +k1,22829:32583029,26342723:10018466 +g1,22829:32583029,26342723 +) +(1,22829:6630773,27027578:25952256,424439,79822 +h1,22829:6630773,27027578:0,0,0 +g1,22829:7626635,27027578 +g1,22829:7958589,27027578 +g1,22829:8290543,27027578 +g1,22829:8622497,27027578 +g1,22829:8954451,27027578 +g1,22829:9286405,27027578 +g1,22829:9618359,27027578 +g1,22829:9950313,27027578 +g1,22829:10282267,27027578 +g1,22829:10614221,27027578 +g1,22829:10946175,27027578 +g1,22829:11278129,27027578 +g1,22829:11610083,27027578 +g1,22829:11942037,27027578 +g1,22829:12273991,27027578 +g1,22829:12605945,27027578 +g1,22829:12937899,27027578 +h1,22829:14929623,27027578:0,0,0 +k1,22829:32583029,27027578:17653406 +g1,22829:32583029,27027578 +) +(1,22829:6630773,27712433:25952256,424439,79822 +h1,22829:6630773,27712433:0,0,0 +g1,22829:7626635,27712433 +g1,22829:7958589,27712433 +g1,22829:8290543,27712433 +g1,22829:8622497,27712433 +g1,22829:8954451,27712433 +g1,22829:9286405,27712433 +g1,22829:9618359,27712433 +g1,22829:9950313,27712433 +g1,22829:10282267,27712433 +g1,22829:10614221,27712433 +g1,22829:10946175,27712433 +g1,22829:11278129,27712433 +g1,22829:11610083,27712433 +g1,22829:11942037,27712433 +g1,22829:12273991,27712433 +h1,22829:14265715,27712433:0,0,0 +k1,22829:32583029,27712433:18317314 +g1,22829:32583029,27712433 +) +(1,22829:6630773,28397288:25952256,424439,106246 +h1,22829:6630773,28397288:0,0,0 +g1,22829:7626635,28397288 +g1,22829:7958589,28397288 +g1,22829:8290543,28397288 +g1,22829:8622497,28397288 +g1,22829:8954451,28397288 +g1,22829:9286405,28397288 +g1,22829:9618359,28397288 +g1,22829:9950313,28397288 +g1,22829:10282267,28397288 +g1,22829:10614221,28397288 +g1,22829:10946175,28397288 +g1,22829:11278129,28397288 +g1,22829:11610083,28397288 +g1,22829:11942037,28397288 +g1,22829:12273991,28397288 +k1,22829:12273991,28397288:0 +h1,22829:22896517,28397288:0,0,0 +k1,22829:32583029,28397288:9686512 +g1,22829:32583029,28397288 +) +(1,22829:6630773,29082143:25952256,424439,79822 +h1,22829:6630773,29082143:0,0,0 +g1,22829:7626635,29082143 +g1,22829:7958589,29082143 +g1,22829:8290543,29082143 +g1,22829:8622497,29082143 +g1,22829:8954451,29082143 +g1,22829:9286405,29082143 +g1,22829:9618359,29082143 +g1,22829:9950313,29082143 +g1,22829:10282267,29082143 +g1,22829:10614221,29082143 +g1,22829:10946175,29082143 +g1,22829:11278129,29082143 +g1,22829:11610083,29082143 +g1,22829:11942037,29082143 +g1,22829:12273991,29082143 +g1,22829:12605945,29082143 +g1,22829:12937899,29082143 +h1,22829:14929623,29082143:0,0,0 +k1,22829:32583029,29082143:17653406 +g1,22829:32583029,29082143 +) +(1,22829:6630773,29766998:25952256,398014,106246 +h1,22829:6630773,29766998:0,0,0 +g1,22829:7626635,29766998 +g1,22829:7958589,29766998 +g1,22829:8290543,29766998 +g1,22829:8622497,29766998 +g1,22829:8954451,29766998 +g1,22829:9286405,29766998 +g1,22829:9618359,29766998 +g1,22829:9950313,29766998 +g1,22829:10282267,29766998 +g1,22829:10614221,29766998 +g1,22829:10946175,29766998 +g1,22829:11278129,29766998 +g1,22829:11610083,29766998 +g1,22829:11942037,29766998 +g1,22829:12273991,29766998 +g1,22829:12605945,29766998 +g1,22829:12937899,29766998 +k1,22829:12937899,29766998:0 +h1,22829:13933761,29766998:0,0,0 +k1,22829:32583029,29766998:18649268 +g1,22829:32583029,29766998 +) +(1,22829:6630773,30451853:25952256,424439,79822 +h1,22829:6630773,30451853:0,0,0 +g1,22829:7626635,30451853 +g1,22829:7958589,30451853 +g1,22829:8290543,30451853 +g1,22829:8622497,30451853 +g1,22829:8954451,30451853 +g1,22829:9286405,30451853 +g1,22829:9618359,30451853 +g1,22829:9950313,30451853 +g1,22829:10282267,30451853 +g1,22829:10614221,30451853 +g1,22829:10946175,30451853 +g1,22829:11278129,30451853 +g1,22829:11610083,30451853 +g1,22829:11942037,30451853 +g1,22829:12273991,30451853 +g1,22829:12605945,30451853 +g1,22829:12937899,30451853 +g1,22829:13269853,30451853 +g1,22829:13601807,30451853 +h1,22829:15593531,30451853:0,0,0 +k1,22829:32583029,30451853:16989498 +g1,22829:32583029,30451853 +) +(1,22829:6630773,31136708:25952256,424439,79822 +h1,22829:6630773,31136708:0,0,0 +g1,22829:7626635,31136708 +g1,22829:7958589,31136708 +g1,22829:8290543,31136708 +g1,22829:8622497,31136708 +g1,22829:8954451,31136708 +g1,22829:9286405,31136708 +g1,22829:9618359,31136708 +g1,22829:9950313,31136708 +g1,22829:10282267,31136708 +g1,22829:10614221,31136708 +g1,22829:10946175,31136708 +g1,22829:11278129,31136708 +g1,22829:11610083,31136708 +g1,22829:11942037,31136708 +g1,22829:12273991,31136708 +g1,22829:12605945,31136708 +g1,22829:12937899,31136708 +h1,22829:14929623,31136708:0,0,0 +k1,22829:32583029,31136708:17653406 +g1,22829:32583029,31136708 +) +(1,22829:6630773,31821563:25952256,424439,79822 +h1,22829:6630773,31821563:0,0,0 +g1,22829:7626635,31821563 +g1,22829:7958589,31821563 +g1,22829:8290543,31821563 +g1,22829:8622497,31821563 +g1,22829:8954451,31821563 +g1,22829:9286405,31821563 +g1,22829:9618359,31821563 +g1,22829:9950313,31821563 +g1,22829:10282267,31821563 +g1,22829:10614221,31821563 +g1,22829:10946175,31821563 +g1,22829:11278129,31821563 +g1,22829:11610083,31821563 +g1,22829:11942037,31821563 +g1,22829:12273991,31821563 +h1,22829:14265715,31821563:0,0,0 +k1,22829:32583029,31821563:18317314 +g1,22829:32583029,31821563 +) +(1,22829:6630773,32506418:25952256,424439,79822 +h1,22829:6630773,32506418:0,0,0 +g1,22829:7626635,32506418 +g1,22829:7958589,32506418 +g1,22829:8290543,32506418 +g1,22829:8622497,32506418 +g1,22829:8954451,32506418 +g1,22829:9286405,32506418 +g1,22829:9618359,32506418 +g1,22829:9950313,32506418 +g1,22829:10282267,32506418 +g1,22829:10614221,32506418 +g1,22829:10946175,32506418 +g1,22829:11278129,32506418 +g1,22829:11610083,32506418 +h1,22829:13601807,32506418:0,0,0 +k1,22829:32583029,32506418:18981222 +g1,22829:32583029,32506418 +) +(1,22829:6630773,33191273:25952256,424439,6605 +h1,22829:6630773,33191273:0,0,0 +g1,22829:7626635,33191273 +g1,22829:7958589,33191273 +g1,22829:8290543,33191273 +g1,22829:8622497,33191273 +g1,22829:8954451,33191273 +g1,22829:9286405,33191273 +g1,22829:9618359,33191273 +g1,22829:9950313,33191273 +g1,22829:10282267,33191273 +g1,22829:10614221,33191273 +g1,22829:10946175,33191273 +g1,22829:11278129,33191273 +g1,22829:11610083,33191273 +k1,22829:11610083,33191273:0 +h1,22829:13269853,33191273:0,0,0 +k1,22829:32583029,33191273:19313176 +g1,22829:32583029,33191273 +) +(1,22829:6630773,33876128:25952256,424439,79822 +h1,22829:6630773,33876128:0,0,0 +g1,22829:7626635,33876128 +g1,22829:7958589,33876128 +g1,22829:8290543,33876128 +g1,22829:8622497,33876128 +g1,22829:8954451,33876128 +g1,22829:9286405,33876128 +g1,22829:9618359,33876128 +g1,22829:9950313,33876128 +g1,22829:10282267,33876128 +g1,22829:10614221,33876128 +g1,22829:10946175,33876128 +g1,22829:11278129,33876128 +g1,22829:11610083,33876128 +g1,22829:11942037,33876128 +g1,22829:12273991,33876128 +h1,22829:14265715,33876128:0,0,0 +k1,22829:32583029,33876128:18317314 +g1,22829:32583029,33876128 +) +(1,22829:6630773,34560983:25952256,424439,112852 +h1,22829:6630773,34560983:0,0,0 +g1,22829:7626635,34560983 +g1,22829:7958589,34560983 +g1,22829:8290543,34560983 +g1,22829:8622497,34560983 +g1,22829:8954451,34560983 +g1,22829:9286405,34560983 +g1,22829:9618359,34560983 +g1,22829:9950313,34560983 +g1,22829:10282267,34560983 +g1,22829:10614221,34560983 +g1,22829:10946175,34560983 +g1,22829:11278129,34560983 +g1,22829:11610083,34560983 +g1,22829:11942037,34560983 +g1,22829:12273991,34560983 +k1,22829:12273991,34560983:0 +h1,22829:22564563,34560983:0,0,0 +k1,22829:32583029,34560983:10018466 +g1,22829:32583029,34560983 +) +(1,22829:6630773,35245838:25952256,424439,79822 +h1,22829:6630773,35245838:0,0,0 +g1,22829:7626635,35245838 +g1,22829:7958589,35245838 +g1,22829:8290543,35245838 +g1,22829:8622497,35245838 +g1,22829:8954451,35245838 +g1,22829:9286405,35245838 +g1,22829:9618359,35245838 +g1,22829:9950313,35245838 +g1,22829:10282267,35245838 +g1,22829:10614221,35245838 +g1,22829:10946175,35245838 +g1,22829:11278129,35245838 +g1,22829:11610083,35245838 +g1,22829:11942037,35245838 +g1,22829:12273991,35245838 +g1,22829:12605945,35245838 +g1,22829:12937899,35245838 +h1,22829:14929623,35245838:0,0,0 +k1,22829:32583029,35245838:17653406 +g1,22829:32583029,35245838 +) +(1,22829:6630773,35930693:25952256,424439,79822 +h1,22829:6630773,35930693:0,0,0 +g1,22829:7626635,35930693 +g1,22829:7958589,35930693 +g1,22829:8290543,35930693 +g1,22829:8622497,35930693 +g1,22829:8954451,35930693 +g1,22829:9286405,35930693 +g1,22829:9618359,35930693 +g1,22829:9950313,35930693 +g1,22829:10282267,35930693 +g1,22829:10614221,35930693 +g1,22829:10946175,35930693 +g1,22829:11278129,35930693 +g1,22829:11610083,35930693 +g1,22829:11942037,35930693 +g1,22829:12273991,35930693 +h1,22829:14265715,35930693:0,0,0 +k1,22829:32583029,35930693:18317314 +g1,22829:32583029,35930693 +) +(1,22829:6630773,36615548:25952256,424439,106246 +h1,22829:6630773,36615548:0,0,0 +g1,22829:7626635,36615548 +g1,22829:7958589,36615548 +g1,22829:8290543,36615548 +g1,22829:8622497,36615548 +g1,22829:8954451,36615548 +g1,22829:9286405,36615548 +g1,22829:9618359,36615548 +g1,22829:9950313,36615548 +g1,22829:10282267,36615548 +g1,22829:10614221,36615548 +g1,22829:10946175,36615548 +g1,22829:11278129,36615548 +g1,22829:11610083,36615548 +g1,22829:11942037,36615548 +g1,22829:12273991,36615548 +k1,22829:12273991,36615548:0 +h1,22829:22896517,36615548:0,0,0 +k1,22829:32583029,36615548:9686512 +g1,22829:32583029,36615548 +) +(1,22829:6630773,37300403:25952256,424439,79822 +h1,22829:6630773,37300403:0,0,0 +g1,22829:7626635,37300403 +g1,22829:7958589,37300403 +g1,22829:8290543,37300403 +g1,22829:8622497,37300403 +g1,22829:8954451,37300403 +g1,22829:9286405,37300403 +g1,22829:9618359,37300403 +g1,22829:9950313,37300403 +g1,22829:10282267,37300403 +g1,22829:10614221,37300403 +g1,22829:10946175,37300403 +g1,22829:11278129,37300403 +g1,22829:11610083,37300403 +g1,22829:11942037,37300403 +g1,22829:12273991,37300403 +g1,22829:12605945,37300403 +g1,22829:12937899,37300403 +h1,22829:14929623,37300403:0,0,0 +k1,22829:32583029,37300403:17653406 +g1,22829:32583029,37300403 +) +(1,22829:6630773,37985258:25952256,424439,106246 +h1,22829:6630773,37985258:0,0,0 +g1,22829:7626635,37985258 +g1,22829:7958589,37985258 +g1,22829:8290543,37985258 +g1,22829:8622497,37985258 +g1,22829:8954451,37985258 +g1,22829:9286405,37985258 +g1,22829:9618359,37985258 +g1,22829:9950313,37985258 +g1,22829:10282267,37985258 +g1,22829:10614221,37985258 +g1,22829:10946175,37985258 +g1,22829:11278129,37985258 +g1,22829:11610083,37985258 +g1,22829:11942037,37985258 +g1,22829:12273991,37985258 +g1,22829:12605945,37985258 +g1,22829:12937899,37985258 +k1,22829:12937899,37985258:0 +h1,22829:15593531,37985258:0,0,0 +k1,22829:32583029,37985258:16989498 +g1,22829:32583029,37985258 +) +(1,22829:6630773,38670113:25952256,424439,79822 +h1,22829:6630773,38670113:0,0,0 +g1,22829:7626635,38670113 +g1,22829:7958589,38670113 +g1,22829:8290543,38670113 +g1,22829:8622497,38670113 +g1,22829:8954451,38670113 +g1,22829:9286405,38670113 +g1,22829:9618359,38670113 +g1,22829:9950313,38670113 +g1,22829:10282267,38670113 +g1,22829:10614221,38670113 +g1,22829:10946175,38670113 +g1,22829:11278129,38670113 +g1,22829:11610083,38670113 +g1,22829:11942037,38670113 +g1,22829:12273991,38670113 +g1,22829:12605945,38670113 +g1,22829:12937899,38670113 +g1,22829:13269853,38670113 +g1,22829:13601807,38670113 +h1,22829:15593531,38670113:0,0,0 +k1,22829:32583029,38670113:16989498 +g1,22829:32583029,38670113 +) +(1,22829:6630773,39354968:25952256,424439,79822 +h1,22829:6630773,39354968:0,0,0 +g1,22829:7626635,39354968 +g1,22829:7958589,39354968 +g1,22829:8290543,39354968 +g1,22829:8622497,39354968 +g1,22829:8954451,39354968 +g1,22829:9286405,39354968 +g1,22829:9618359,39354968 +g1,22829:9950313,39354968 +g1,22829:10282267,39354968 +g1,22829:10614221,39354968 +g1,22829:10946175,39354968 +g1,22829:11278129,39354968 +g1,22829:11610083,39354968 +g1,22829:11942037,39354968 +g1,22829:12273991,39354968 +g1,22829:12605945,39354968 +g1,22829:12937899,39354968 +h1,22829:14929623,39354968:0,0,0 +k1,22829:32583029,39354968:17653406 +g1,22829:32583029,39354968 +) +(1,22829:6630773,40039823:25952256,424439,79822 +h1,22829:6630773,40039823:0,0,0 +g1,22829:7626635,40039823 +g1,22829:7958589,40039823 +g1,22829:8290543,40039823 +g1,22829:8622497,40039823 +g1,22829:8954451,40039823 +g1,22829:9286405,40039823 +g1,22829:9618359,40039823 +g1,22829:9950313,40039823 +g1,22829:10282267,40039823 +g1,22829:10614221,40039823 +g1,22829:10946175,40039823 +g1,22829:11278129,40039823 +g1,22829:11610083,40039823 +g1,22829:11942037,40039823 +g1,22829:12273991,40039823 +h1,22829:14265715,40039823:0,0,0 +k1,22829:32583029,40039823:18317314 +g1,22829:32583029,40039823 +) +(1,22829:6630773,40724678:25952256,424439,79822 +h1,22829:6630773,40724678:0,0,0 +g1,22829:7626635,40724678 +g1,22829:7958589,40724678 +g1,22829:8290543,40724678 +g1,22829:8622497,40724678 +g1,22829:8954451,40724678 +g1,22829:9286405,40724678 +g1,22829:9618359,40724678 +g1,22829:9950313,40724678 +g1,22829:10282267,40724678 +g1,22829:10614221,40724678 +g1,22829:10946175,40724678 +g1,22829:11278129,40724678 +g1,22829:11610083,40724678 +h1,22829:13601807,40724678:0,0,0 +k1,22829:32583029,40724678:18981222 +g1,22829:32583029,40724678 +) +(1,22829:6630773,41409533:25952256,424439,79822 +h1,22829:6630773,41409533:0,0,0 +g1,22829:7626635,41409533 +g1,22829:7958589,41409533 +g1,22829:8290543,41409533 +g1,22829:8622497,41409533 +g1,22829:8954451,41409533 +g1,22829:9286405,41409533 +g1,22829:9618359,41409533 +g1,22829:9950313,41409533 +g1,22829:10282267,41409533 +g1,22829:10614221,41409533 +g1,22829:10946175,41409533 +h1,22829:12937899,41409533:0,0,0 +k1,22829:32583029,41409533:19645130 +g1,22829:32583029,41409533 +) +(1,22829:6630773,42094388:25952256,424439,106246 +h1,22829:6630773,42094388:0,0,0 +g1,22829:7626635,42094388 +g1,22829:7958589,42094388 +g1,22829:8290543,42094388 +g1,22829:8622497,42094388 +g1,22829:8954451,42094388 +g1,22829:9286405,42094388 +g1,22829:9618359,42094388 +g1,22829:9950313,42094388 +g1,22829:10282267,42094388 +g1,22829:24556287,42094388 +k1,22829:24556287,42094388:0 +h1,22829:27211919,42094388:0,0,0 +k1,22829:32583029,42094388:5371110 +g1,22829:32583029,42094388 +) +(1,22829:6630773,42779243:25952256,424439,79822 +h1,22829:6630773,42779243:0,0,0 +g1,22829:7626635,42779243 +g1,22829:7958589,42779243 +g1,22829:8290543,42779243 +g1,22829:8622497,42779243 +g1,22829:8954451,42779243 +g1,22829:9286405,42779243 +g1,22829:9618359,42779243 +g1,22829:9950313,42779243 +g1,22829:10282267,42779243 +g1,22829:10614221,42779243 +g1,22829:10946175,42779243 +g1,22829:15261576,42779243 +k1,22829:15261576,42779243:0 +h1,22829:20904794,42779243:0,0,0 +k1,22829:32583029,42779243:11678235 +g1,22829:32583029,42779243 +) +(1,22829:6630773,43464098:25952256,424439,79822 +h1,22829:6630773,43464098:0,0,0 +g1,22829:7626635,43464098 +g1,22829:7958589,43464098 +g1,22829:8290543,43464098 +g1,22829:8622497,43464098 +g1,22829:8954451,43464098 +g1,22829:9286405,43464098 +g1,22829:9618359,43464098 +g1,22829:9950313,43464098 +g1,22829:10282267,43464098 +g1,22829:10614221,43464098 +g1,22829:10946175,43464098 +g1,22829:11278129,43464098 +g1,22829:11610083,43464098 +h1,22829:13601807,43464098:0,0,0 +k1,22829:32583029,43464098:18981222 +g1,22829:32583029,43464098 +) +(1,22829:6630773,44148953:25952256,424439,79822 +h1,22829:6630773,44148953:0,0,0 +g1,22829:7626635,44148953 +g1,22829:7958589,44148953 +g1,22829:8290543,44148953 +g1,22829:8622497,44148953 +g1,22829:8954451,44148953 +g1,22829:9286405,44148953 +g1,22829:9618359,44148953 +g1,22829:9950313,44148953 +g1,22829:10282267,44148953 +g1,22829:10614221,44148953 +g1,22829:10946175,44148953 +h1,22829:12937899,44148953:0,0,0 +k1,22829:32583029,44148953:19645130 +g1,22829:32583029,44148953 +) +(1,22829:6630773,44833808:25952256,398014,106246 +h1,22829:6630773,44833808:0,0,0 +g1,22829:7626635,44833808 +g1,22829:7958589,44833808 +g1,22829:8290543,44833808 +g1,22829:8622497,44833808 +g1,22829:8954451,44833808 +g1,22829:9286405,44833808 +g1,22829:9618359,44833808 +g1,22829:9950313,44833808 +g1,22829:10282267,44833808 +g1,22829:10614221,44833808 +g1,22829:10946175,44833808 +k1,22829:10946175,44833808:0 +h1,22829:11942037,44833808:0,0,0 +k1,22829:32583029,44833808:20640992 +g1,22829:32583029,44833808 +) +] +) +g1,22830:32583029,45510161 +g1,22830:6630773,45510161 +g1,22830:6630773,45510161 +g1,22830:32583029,45510161 +g1,22830:32583029,45510161 +) +] +(1,22830:32583029,45706769:0,0,0 +g1,22830:32583029,45706769 +) +) +] +(1,22830:6630773,47279633:25952256,0,0 +h1,22830:6630773,47279633:25952256,0,0 +) +] +(1,22830:4262630,4025873:0,0,0 +[1,22830:-473656,4025873:0,0,0 +(1,22830:-473656,-710413:0,0,0 +(1,22830:-473656,-710413:0,0,0 +g1,22830:-473656,-710413 +) +g1,22830:-473656,-710413 +) +] +) +] +!33192 +}391 !12 -{409 -[1,22617:4262630,47279633:28320399,43253760,0 -(1,22617:4262630,4025873:0,0,0 -[1,22617:-473656,4025873:0,0,0 -(1,22617:-473656,-710413:0,0,0 -(1,22617:-473656,-644877:0,0,0 -k1,22617:-473656,-644877:-65536 +{392 +[1,22830:4262630,47279633:28320399,43253760,0 +(1,22830:4262630,4025873:0,0,0 +[1,22830:-473656,4025873:0,0,0 +(1,22830:-473656,-710413:0,0,0 +(1,22830:-473656,-644877:0,0,0 +k1,22830:-473656,-644877:-65536 ) -(1,22617:-473656,4736287:0,0,0 -k1,22617:-473656,4736287:5209943 +(1,22830:-473656,4736287:0,0,0 +k1,22830:-473656,4736287:5209943 ) -g1,22617:-473656,-710413 +g1,22830:-473656,-710413 ) ] ) -[1,22617:6630773,47279633:25952256,43253760,0 -[1,22617:6630773,4812305:25952256,786432,0 -(1,22617:6630773,4812305:25952256,505283,134348 -(1,22617:6630773,4812305:25952256,505283,134348 -g1,22617:3078558,4812305 -[1,22617:3078558,4812305:0,0,0 -(1,22617:3078558,2439708:0,1703936,0 -k1,22617:1358238,2439708:-1720320 -(1,21457:1358238,2439708:1720320,1703936,0 -(1,21457:1358238,2439708:1179648,16384,0 -r1,22617:2537886,2439708:1179648,16384,0 +[1,22830:6630773,47279633:25952256,43253760,0 +[1,22830:6630773,4812305:25952256,786432,0 +(1,22830:6630773,4812305:25952256,513147,126483 +(1,22830:6630773,4812305:25952256,513147,126483 +g1,22830:3078558,4812305 +[1,22830:3078558,4812305:0,0,0 +(1,22830:3078558,2439708:0,1703936,0 +k1,22830:1358238,2439708:-1720320 +(1,21670:1358238,2439708:1720320,1703936,0 +(1,21670:1358238,2439708:1179648,16384,0 +r1,22830:2537886,2439708:1179648,16384,0 ) -g1,21457:3062174,2439708 -(1,21457:3062174,2439708:16384,1703936,0 -[1,21457:3062174,2439708:25952256,1703936,0 -(1,21457:3062174,1915420:25952256,1179648,0 -(1,21457:3062174,1915420:16384,1179648,0 -r1,22617:3078558,1915420:16384,1179648,0 +g1,21670:3062174,2439708 +(1,21670:3062174,2439708:16384,1703936,0 +[1,21670:3062174,2439708:25952256,1703936,0 +(1,21670:3062174,1915420:25952256,1179648,0 +(1,21670:3062174,1915420:16384,1179648,0 +r1,22830:3078558,1915420:16384,1179648,0 ) -k1,21457:29014430,1915420:25935872 -g1,21457:29014430,1915420 +k1,21670:29014430,1915420:25935872 +g1,21670:29014430,1915420 ) ] ) ) ) ] -[1,22617:3078558,4812305:0,0,0 -(1,22617:3078558,2439708:0,1703936,0 -g1,22617:29030814,2439708 -g1,22617:36135244,2439708 -(1,21457:36135244,2439708:1720320,1703936,0 -(1,21457:36135244,2439708:16384,1703936,0 -[1,21457:36135244,2439708:25952256,1703936,0 -(1,21457:36135244,1915420:25952256,1179648,0 -(1,21457:36135244,1915420:16384,1179648,0 -r1,22617:36151628,1915420:16384,1179648,0 +[1,22830:3078558,4812305:0,0,0 +(1,22830:3078558,2439708:0,1703936,0 +g1,22830:29030814,2439708 +g1,22830:36135244,2439708 +(1,21670:36135244,2439708:1720320,1703936,0 +(1,21670:36135244,2439708:16384,1703936,0 +[1,21670:36135244,2439708:25952256,1703936,0 +(1,21670:36135244,1915420:25952256,1179648,0 +(1,21670:36135244,1915420:16384,1179648,0 +r1,22830:36151628,1915420:16384,1179648,0 ) -k1,21457:62087500,1915420:25935872 -g1,21457:62087500,1915420 +k1,21670:62087500,1915420:25935872 +g1,21670:62087500,1915420 ) ] ) -g1,21457:36675916,2439708 -(1,21457:36675916,2439708:1179648,16384,0 -r1,22617:37855564,2439708:1179648,16384,0 +g1,21670:36675916,2439708 +(1,21670:36675916,2439708:1179648,16384,0 +r1,22830:37855564,2439708:1179648,16384,0 ) ) -k1,22617:3078556,2439708:-34777008 +k1,22830:3078556,2439708:-34777008 ) ] -[1,22617:3078558,4812305:0,0,0 -(1,22617:3078558,49800853:0,16384,2228224 -k1,22617:1358238,49800853:-1720320 -(1,21457:1358238,49800853:1720320,16384,2228224 -(1,21457:1358238,49800853:1179648,16384,0 -r1,22617:2537886,49800853:1179648,16384,0 +[1,22830:3078558,4812305:0,0,0 +(1,22830:3078558,49800853:0,16384,2228224 +k1,22830:1358238,49800853:-1720320 +(1,21670:1358238,49800853:1720320,16384,2228224 +(1,21670:1358238,49800853:1179648,16384,0 +r1,22830:2537886,49800853:1179648,16384,0 ) -g1,21457:3062174,49800853 -(1,21457:3062174,52029077:16384,1703936,0 -[1,21457:3062174,52029077:25952256,1703936,0 -(1,21457:3062174,51504789:25952256,1179648,0 -(1,21457:3062174,51504789:16384,1179648,0 -r1,22617:3078558,51504789:16384,1179648,0 +g1,21670:3062174,49800853 +(1,21670:3062174,52029077:16384,1703936,0 +[1,21670:3062174,52029077:25952256,1703936,0 +(1,21670:3062174,51504789:25952256,1179648,0 +(1,21670:3062174,51504789:16384,1179648,0 +r1,22830:3078558,51504789:16384,1179648,0 ) -k1,21457:29014430,51504789:25935872 -g1,21457:29014430,51504789 -) -] -) -) -) -] -[1,22617:3078558,4812305:0,0,0 -(1,22617:3078558,49800853:0,16384,2228224 -g1,22617:29030814,49800853 -g1,22617:36135244,49800853 -(1,21457:36135244,49800853:1720320,16384,2228224 -(1,21457:36135244,52029077:16384,1703936,0 -[1,21457:36135244,52029077:25952256,1703936,0 -(1,21457:36135244,51504789:25952256,1179648,0 -(1,21457:36135244,51504789:16384,1179648,0 -r1,22617:36151628,51504789:16384,1179648,0 -) -k1,21457:62087500,51504789:25935872 -g1,21457:62087500,51504789 -) -] -) -g1,21457:36675916,49800853 -(1,21457:36675916,49800853:1179648,16384,0 -r1,22617:37855564,49800853:1179648,16384,0 -) -) -k1,22617:3078556,49800853:-34777008 -) -] -g1,22617:6630773,4812305 -k1,22617:21078841,4812305:13252691 -g1,22617:22701512,4812305 -g1,22617:23350318,4812305 -g1,22617:24759997,4812305 -g1,22617:28372341,4812305 -g1,22617:30105768,4812305 -) -) -] -[1,22617:6630773,45706769:25952256,40108032,0 -(1,22617:6630773,45706769:25952256,40108032,0 -(1,22617:6630773,45706769:0,0,0 -g1,22617:6630773,45706769 -) -[1,22617:6630773,45706769:25952256,40108032,0 -v1,22617:6630773,6254097:0,393216,0 -(1,22617:6630773,45510161:25952256,39649280,196608 -g1,22617:6630773,45510161 -g1,22617:6630773,45510161 -g1,22617:6434165,45510161 -(1,22617:6434165,45510161:0,39649280,196608 -r1,22617:32779637,45510161:26345472,39845888,196608 -k1,22617:6434165,45510161:-26345472 -) -(1,22617:6434165,45510161:26345472,39649280,196608 -[1,22617:6630773,45510161:25952256,39452672,0 -(1,22616:6630773,6461715:25952256,404226,76021 -h1,22616:6630773,6461715:0,0,0 -g1,22616:7579210,6461715 -g1,22616:7895356,6461715 -g1,22616:8211502,6461715 -g1,22616:8527648,6461715 -g1,22616:8843794,6461715 -g1,22616:9159940,6461715 -g1,22616:9476086,6461715 -g1,22616:9792232,6461715 -g1,22616:10108378,6461715 -g1,22616:10424524,6461715 -g1,22616:10740670,6461715 -g1,22616:14850564,6461715 -k1,22616:14850564,6461715:0 -h1,22616:20225041,6461715:0,0,0 -k1,22616:32583029,6461715:12357988 -g1,22616:32583029,6461715 -) -(1,22616:6630773,7127893:25952256,404226,76021 -h1,22616:6630773,7127893:0,0,0 -g1,22616:7579210,7127893 -g1,22616:7895356,7127893 -g1,22616:8211502,7127893 -g1,22616:8527648,7127893 -g1,22616:8843794,7127893 -g1,22616:9159940,7127893 -g1,22616:9476086,7127893 -g1,22616:9792232,7127893 -g1,22616:10108378,7127893 -g1,22616:10424524,7127893 -g1,22616:10740670,7127893 -g1,22616:11056816,7127893 -g1,22616:11372962,7127893 -h1,22616:13269836,7127893:0,0,0 -k1,22616:32583028,7127893:19313192 -g1,22616:32583028,7127893 -) -(1,22616:6630773,7794071:25952256,404226,76021 -h1,22616:6630773,7794071:0,0,0 -g1,22616:7579210,7794071 -g1,22616:7895356,7794071 -g1,22616:8211502,7794071 -g1,22616:8527648,7794071 -g1,22616:8843794,7794071 -g1,22616:9159940,7794071 -g1,22616:9476086,7794071 -g1,22616:9792232,7794071 -g1,22616:10108378,7794071 -g1,22616:10424524,7794071 -g1,22616:10740670,7794071 -h1,22616:12637544,7794071:0,0,0 -k1,22616:32583028,7794071:19945484 -g1,22616:32583028,7794071 -) -(1,22616:6630773,8460249:25952256,379060,101187 -h1,22616:6630773,8460249:0,0,0 -g1,22616:7579210,8460249 -g1,22616:7895356,8460249 -g1,22616:8211502,8460249 -g1,22616:8527648,8460249 -g1,22616:8843794,8460249 -g1,22616:9159940,8460249 -g1,22616:9476086,8460249 -g1,22616:9792232,8460249 -g1,22616:10108378,8460249 -g1,22616:10424524,8460249 -g1,22616:10740670,8460249 -k1,22616:10740670,8460249:0 -h1,22616:11689107,8460249:0,0,0 -k1,22616:32583029,8460249:20893922 -g1,22616:32583029,8460249 -) -(1,22616:6630773,9126427:25952256,404226,76021 -h1,22616:6630773,9126427:0,0,0 -g1,22616:7579210,9126427 -g1,22616:7895356,9126427 -g1,22616:8211502,9126427 -g1,22616:8527648,9126427 -g1,22616:8843794,9126427 -g1,22616:9159940,9126427 -g1,22616:9476086,9126427 -g1,22616:9792232,9126427 -g1,22616:10108378,9126427 -g1,22616:10424524,9126427 -g1,22616:10740670,9126427 -g1,22616:11056816,9126427 -g1,22616:11372962,9126427 -h1,22616:13269836,9126427:0,0,0 -k1,22616:32583028,9126427:19313192 -g1,22616:32583028,9126427 -) -(1,22616:6630773,9792605:25952256,404226,6290 -h1,22616:6630773,9792605:0,0,0 -g1,22616:7579210,9792605 -g1,22616:7895356,9792605 -g1,22616:8211502,9792605 -g1,22616:8527648,9792605 -g1,22616:8843794,9792605 -g1,22616:9159940,9792605 -g1,22616:9476086,9792605 -g1,22616:9792232,9792605 -g1,22616:10108378,9792605 -g1,22616:10424524,9792605 -g1,22616:10740670,9792605 -g1,22616:11056816,9792605 -g1,22616:11372962,9792605 -k1,22616:11372962,9792605:0 -h1,22616:12637545,9792605:0,0,0 -k1,22616:32583029,9792605:19945484 -g1,22616:32583029,9792605 -) -(1,22616:6630773,10458783:25952256,404226,76021 -h1,22616:6630773,10458783:0,0,0 -g1,22616:7579210,10458783 -g1,22616:7895356,10458783 -g1,22616:8211502,10458783 -g1,22616:8527648,10458783 -g1,22616:8843794,10458783 -g1,22616:9159940,10458783 -g1,22616:9476086,10458783 -g1,22616:9792232,10458783 -g1,22616:10108378,10458783 -g1,22616:10424524,10458783 -g1,22616:10740670,10458783 -g1,22616:11056816,10458783 -g1,22616:11372962,10458783 -h1,22616:13269836,10458783:0,0,0 -k1,22616:32583028,10458783:19313192 -g1,22616:32583028,10458783 -) -(1,22616:6630773,11124961:25952256,410518,76021 -h1,22616:6630773,11124961:0,0,0 -g1,22616:7579210,11124961 -g1,22616:7895356,11124961 -g1,22616:8211502,11124961 -g1,22616:8527648,11124961 -g1,22616:8843794,11124961 -g1,22616:9159940,11124961 -g1,22616:9476086,11124961 -g1,22616:9792232,11124961 -g1,22616:10108378,11124961 -g1,22616:10424524,11124961 -g1,22616:10740670,11124961 -g1,22616:11056816,11124961 -g1,22616:11372962,11124961 -g1,22616:12321399,11124961 -k1,22616:12321399,11124961:0 -h1,22616:14534419,11124961:0,0,0 -k1,22616:32583029,11124961:18048610 -g1,22616:32583029,11124961 -) -(1,22616:6630773,11791139:25952256,404226,76021 -h1,22616:6630773,11791139:0,0,0 -g1,22616:7579210,11791139 -g1,22616:7895356,11791139 -g1,22616:8211502,11791139 -g1,22616:8527648,11791139 -g1,22616:8843794,11791139 -g1,22616:9159940,11791139 -g1,22616:9476086,11791139 -g1,22616:9792232,11791139 -g1,22616:10108378,11791139 -g1,22616:10424524,11791139 -g1,22616:10740670,11791139 -g1,22616:11056816,11791139 -g1,22616:11372962,11791139 -g1,22616:11689108,11791139 -g1,22616:12005254,11791139 -h1,22616:13902128,11791139:0,0,0 -k1,22616:32583028,11791139:18680900 -g1,22616:32583028,11791139 -) -(1,22616:6630773,12457317:25952256,404226,76021 -h1,22616:6630773,12457317:0,0,0 -g1,22616:7579210,12457317 -g1,22616:7895356,12457317 -g1,22616:8211502,12457317 -g1,22616:8527648,12457317 -g1,22616:8843794,12457317 -g1,22616:9159940,12457317 -g1,22616:9476086,12457317 -g1,22616:9792232,12457317 -g1,22616:10108378,12457317 -g1,22616:10424524,12457317 -g1,22616:10740670,12457317 -g1,22616:11056816,12457317 -g1,22616:11372962,12457317 -h1,22616:13269836,12457317:0,0,0 -k1,22616:32583028,12457317:19313192 -g1,22616:32583028,12457317 -) -(1,22616:6630773,13123495:25952256,404226,76021 -h1,22616:6630773,13123495:0,0,0 -g1,22616:7579210,13123495 -g1,22616:7895356,13123495 -g1,22616:8211502,13123495 -g1,22616:8527648,13123495 -g1,22616:8843794,13123495 -g1,22616:9159940,13123495 -g1,22616:9476086,13123495 -g1,22616:9792232,13123495 -g1,22616:10108378,13123495 -g1,22616:10424524,13123495 -g1,22616:10740670,13123495 -h1,22616:12637544,13123495:0,0,0 -k1,22616:32583028,13123495:19945484 -g1,22616:32583028,13123495 -) -(1,22616:6630773,13789673:25952256,404226,6290 -h1,22616:6630773,13789673:0,0,0 -g1,22616:7579210,13789673 -g1,22616:7895356,13789673 -g1,22616:8211502,13789673 -g1,22616:8527648,13789673 -g1,22616:8843794,13789673 -g1,22616:9159940,13789673 -g1,22616:9476086,13789673 -g1,22616:9792232,13789673 -g1,22616:10108378,13789673 -g1,22616:17063583,13789673 -k1,22616:17063583,13789673:0 -h1,22616:19592749,13789673:0,0,0 -k1,22616:32583029,13789673:12990280 -g1,22616:32583029,13789673 -) -(1,22616:6630773,14455851:25952256,404226,76021 -h1,22616:6630773,14455851:0,0,0 -g1,22616:7579210,14455851 -g1,22616:7895356,14455851 -g1,22616:8211502,14455851 -g1,22616:8527648,14455851 -g1,22616:8843794,14455851 -g1,22616:9159940,14455851 -g1,22616:9476086,14455851 -g1,22616:9792232,14455851 -g1,22616:10108378,14455851 -g1,22616:10424524,14455851 -g1,22616:10740670,14455851 -g1,22616:14850564,14455851 -k1,22616:14850564,14455851:0 -h1,22616:20225041,14455851:0,0,0 -k1,22616:32583029,14455851:12357988 -g1,22616:32583029,14455851 -) -(1,22616:6630773,15122029:25952256,404226,76021 -h1,22616:6630773,15122029:0,0,0 -g1,22616:7579210,15122029 -g1,22616:7895356,15122029 -g1,22616:8211502,15122029 -g1,22616:8527648,15122029 -g1,22616:8843794,15122029 -g1,22616:9159940,15122029 -g1,22616:9476086,15122029 -g1,22616:9792232,15122029 -g1,22616:10108378,15122029 -g1,22616:10424524,15122029 -g1,22616:10740670,15122029 -g1,22616:11056816,15122029 -g1,22616:11372962,15122029 -h1,22616:13269836,15122029:0,0,0 -k1,22616:32583028,15122029:19313192 -g1,22616:32583028,15122029 -) -(1,22616:6630773,15788207:25952256,404226,76021 -h1,22616:6630773,15788207:0,0,0 -g1,22616:7579210,15788207 -g1,22616:7895356,15788207 -g1,22616:8211502,15788207 -g1,22616:8527648,15788207 -g1,22616:8843794,15788207 -g1,22616:9159940,15788207 -g1,22616:9476086,15788207 -g1,22616:9792232,15788207 -g1,22616:10108378,15788207 -g1,22616:10424524,15788207 -g1,22616:10740670,15788207 -h1,22616:12637544,15788207:0,0,0 -k1,22616:32583028,15788207:19945484 -g1,22616:32583028,15788207 -) -(1,22616:6630773,16454385:25952256,379060,101187 -h1,22616:6630773,16454385:0,0,0 -g1,22616:7579210,16454385 -g1,22616:7895356,16454385 -g1,22616:8211502,16454385 -g1,22616:8527648,16454385 -g1,22616:8843794,16454385 -g1,22616:9159940,16454385 -g1,22616:9476086,16454385 -g1,22616:9792232,16454385 -g1,22616:10108378,16454385 -g1,22616:10424524,16454385 -g1,22616:10740670,16454385 -k1,22616:10740670,16454385:0 -h1,22616:11689107,16454385:0,0,0 -k1,22616:32583029,16454385:20893922 -g1,22616:32583029,16454385 -) -(1,22616:6630773,17120563:25952256,404226,76021 -h1,22616:6630773,17120563:0,0,0 -g1,22616:7579210,17120563 -g1,22616:7895356,17120563 -g1,22616:8211502,17120563 -g1,22616:8527648,17120563 -g1,22616:8843794,17120563 -g1,22616:9159940,17120563 -g1,22616:9476086,17120563 -g1,22616:9792232,17120563 -g1,22616:10108378,17120563 -g1,22616:10424524,17120563 -g1,22616:10740670,17120563 -g1,22616:11056816,17120563 -g1,22616:11372962,17120563 -h1,22616:13269836,17120563:0,0,0 -k1,22616:32583028,17120563:19313192 -g1,22616:32583028,17120563 -) -(1,22616:6630773,17786741:25952256,404226,76021 -h1,22616:6630773,17786741:0,0,0 -g1,22616:7579210,17786741 -g1,22616:7895356,17786741 -g1,22616:8211502,17786741 -g1,22616:8527648,17786741 -g1,22616:8843794,17786741 -g1,22616:9159940,17786741 -g1,22616:9476086,17786741 -g1,22616:9792232,17786741 -g1,22616:10108378,17786741 -g1,22616:10424524,17786741 -g1,22616:10740670,17786741 -h1,22616:12637544,17786741:0,0,0 -k1,22616:32583028,17786741:19945484 -g1,22616:32583028,17786741 -) -(1,22616:6630773,18452919:25952256,379060,101187 -h1,22616:6630773,18452919:0,0,0 -g1,22616:7579210,18452919 -g1,22616:7895356,18452919 -g1,22616:8211502,18452919 -g1,22616:8527648,18452919 -g1,22616:8843794,18452919 -g1,22616:9159940,18452919 -g1,22616:9476086,18452919 -g1,22616:9792232,18452919 -g1,22616:10108378,18452919 -g1,22616:10424524,18452919 -g1,22616:10740670,18452919 -k1,22616:10740670,18452919:0 -h1,22616:11689107,18452919:0,0,0 -k1,22616:32583029,18452919:20893922 -g1,22616:32583029,18452919 -) -(1,22616:6630773,19119097:25952256,404226,76021 -h1,22616:6630773,19119097:0,0,0 -g1,22616:7579210,19119097 -g1,22616:7895356,19119097 -g1,22616:8211502,19119097 -g1,22616:8527648,19119097 -g1,22616:8843794,19119097 -g1,22616:9159940,19119097 -g1,22616:9476086,19119097 -g1,22616:9792232,19119097 -g1,22616:10108378,19119097 -g1,22616:10424524,19119097 -g1,22616:10740670,19119097 -g1,22616:11056816,19119097 -g1,22616:11372962,19119097 -h1,22616:13269836,19119097:0,0,0 -k1,22616:32583028,19119097:19313192 -g1,22616:32583028,19119097 -) -(1,22616:6630773,19785275:25952256,410518,76021 -h1,22616:6630773,19785275:0,0,0 -g1,22616:7579210,19785275 -g1,22616:7895356,19785275 -g1,22616:8211502,19785275 -g1,22616:8527648,19785275 -g1,22616:8843794,19785275 -g1,22616:9159940,19785275 -g1,22616:9476086,19785275 -g1,22616:9792232,19785275 -g1,22616:10108378,19785275 -g1,22616:10424524,19785275 -g1,22616:10740670,19785275 -g1,22616:11056816,19785275 -g1,22616:11372962,19785275 -g1,22616:12321399,19785275 -k1,22616:12321399,19785275:0 -h1,22616:14534419,19785275:0,0,0 -k1,22616:32583029,19785275:18048610 -g1,22616:32583029,19785275 -) -(1,22616:6630773,20451453:25952256,404226,76021 -h1,22616:6630773,20451453:0,0,0 -g1,22616:7579210,20451453 -g1,22616:7895356,20451453 -g1,22616:8211502,20451453 -g1,22616:8527648,20451453 -g1,22616:8843794,20451453 -g1,22616:9159940,20451453 -g1,22616:9476086,20451453 -g1,22616:9792232,20451453 -g1,22616:10108378,20451453 -g1,22616:10424524,20451453 -g1,22616:10740670,20451453 -g1,22616:11056816,20451453 -g1,22616:11372962,20451453 -g1,22616:11689108,20451453 -g1,22616:12005254,20451453 -h1,22616:13902128,20451453:0,0,0 -k1,22616:32583028,20451453:18680900 -g1,22616:32583028,20451453 -) -(1,22616:6630773,21117631:25952256,404226,76021 -h1,22616:6630773,21117631:0,0,0 -g1,22616:7579210,21117631 -g1,22616:7895356,21117631 -g1,22616:8211502,21117631 -g1,22616:8527648,21117631 -g1,22616:8843794,21117631 -g1,22616:9159940,21117631 -g1,22616:9476086,21117631 -g1,22616:9792232,21117631 -g1,22616:10108378,21117631 -g1,22616:10424524,21117631 -g1,22616:10740670,21117631 -g1,22616:11056816,21117631 -g1,22616:11372962,21117631 -h1,22616:13269836,21117631:0,0,0 -k1,22616:32583028,21117631:19313192 -g1,22616:32583028,21117631 -) -(1,22616:6630773,21783809:25952256,410518,76021 -h1,22616:6630773,21783809:0,0,0 -g1,22616:7579210,21783809 -g1,22616:7895356,21783809 -g1,22616:8211502,21783809 -g1,22616:8527648,21783809 -g1,22616:8843794,21783809 -g1,22616:9159940,21783809 -g1,22616:9476086,21783809 -g1,22616:9792232,21783809 -g1,22616:10108378,21783809 -g1,22616:10424524,21783809 -g1,22616:10740670,21783809 -g1,22616:11056816,21783809 -g1,22616:11372962,21783809 -g1,22616:12321399,21783809 -k1,22616:12321399,21783809:0 -h1,22616:14534419,21783809:0,0,0 -k1,22616:32583029,21783809:18048610 -g1,22616:32583029,21783809 -) -(1,22616:6630773,22449987:25952256,404226,76021 -h1,22616:6630773,22449987:0,0,0 -g1,22616:7579210,22449987 -g1,22616:7895356,22449987 -g1,22616:8211502,22449987 -g1,22616:8527648,22449987 -g1,22616:8843794,22449987 -g1,22616:9159940,22449987 -g1,22616:9476086,22449987 -g1,22616:9792232,22449987 -g1,22616:10108378,22449987 -g1,22616:10424524,22449987 -g1,22616:10740670,22449987 -g1,22616:11056816,22449987 -g1,22616:11372962,22449987 -g1,22616:11689108,22449987 -g1,22616:12005254,22449987 -h1,22616:13902128,22449987:0,0,0 -k1,22616:32583028,22449987:18680900 -g1,22616:32583028,22449987 -) -(1,22616:6630773,23116165:25952256,404226,76021 -h1,22616:6630773,23116165:0,0,0 -g1,22616:7579210,23116165 -g1,22616:7895356,23116165 -g1,22616:8211502,23116165 -g1,22616:8527648,23116165 -g1,22616:8843794,23116165 -g1,22616:9159940,23116165 -g1,22616:9476086,23116165 -g1,22616:9792232,23116165 -g1,22616:10108378,23116165 -g1,22616:10424524,23116165 -g1,22616:10740670,23116165 -g1,22616:11056816,23116165 -g1,22616:11372962,23116165 -h1,22616:13269836,23116165:0,0,0 -k1,22616:32583028,23116165:19313192 -g1,22616:32583028,23116165 -) -(1,22616:6630773,23782343:25952256,404226,76021 -h1,22616:6630773,23782343:0,0,0 -g1,22616:7579210,23782343 -g1,22616:7895356,23782343 -g1,22616:8211502,23782343 -g1,22616:8527648,23782343 -g1,22616:8843794,23782343 -g1,22616:9159940,23782343 -g1,22616:9476086,23782343 -g1,22616:9792232,23782343 -g1,22616:10108378,23782343 -g1,22616:10424524,23782343 -g1,22616:10740670,23782343 -h1,22616:12637544,23782343:0,0,0 -k1,22616:32583028,23782343:19945484 -g1,22616:32583028,23782343 -) -(1,22616:6630773,24448521:25952256,379060,101187 -h1,22616:6630773,24448521:0,0,0 -g1,22616:7579210,24448521 -g1,22616:7895356,24448521 -g1,22616:8211502,24448521 -g1,22616:8527648,24448521 -g1,22616:8843794,24448521 -g1,22616:9159940,24448521 -g1,22616:9476086,24448521 -g1,22616:9792232,24448521 -g1,22616:10108378,24448521 -g1,22616:10424524,24448521 -g1,22616:10740670,24448521 -k1,22616:10740670,24448521:0 -h1,22616:11689107,24448521:0,0,0 -k1,22616:32583029,24448521:20893922 -g1,22616:32583029,24448521 -) -(1,22616:6630773,25114699:25952256,404226,76021 -h1,22616:6630773,25114699:0,0,0 -g1,22616:7579210,25114699 -g1,22616:7895356,25114699 -g1,22616:8211502,25114699 -g1,22616:8527648,25114699 -g1,22616:8843794,25114699 -g1,22616:9159940,25114699 -g1,22616:9476086,25114699 -g1,22616:9792232,25114699 -g1,22616:10108378,25114699 -g1,22616:10424524,25114699 -g1,22616:10740670,25114699 -g1,22616:11056816,25114699 -g1,22616:11372962,25114699 -h1,22616:13269836,25114699:0,0,0 -k1,22616:32583028,25114699:19313192 -g1,22616:32583028,25114699 -) -(1,22616:6630773,25780877:25952256,404226,6290 -h1,22616:6630773,25780877:0,0,0 -g1,22616:7579210,25780877 -g1,22616:7895356,25780877 -g1,22616:8211502,25780877 -g1,22616:8527648,25780877 -g1,22616:8843794,25780877 -g1,22616:9159940,25780877 -g1,22616:9476086,25780877 -g1,22616:9792232,25780877 -g1,22616:10108378,25780877 -g1,22616:10424524,25780877 -g1,22616:10740670,25780877 -g1,22616:11056816,25780877 -g1,22616:11372962,25780877 -k1,22616:11372962,25780877:0 -h1,22616:13269836,25780877:0,0,0 -k1,22616:32583028,25780877:19313192 -g1,22616:32583028,25780877 -) -(1,22616:6630773,26447055:25952256,404226,76021 -h1,22616:6630773,26447055:0,0,0 -g1,22616:7579210,26447055 -g1,22616:7895356,26447055 -g1,22616:8211502,26447055 -g1,22616:8527648,26447055 -g1,22616:8843794,26447055 -g1,22616:9159940,26447055 -g1,22616:9476086,26447055 -g1,22616:9792232,26447055 -g1,22616:10108378,26447055 -g1,22616:10424524,26447055 -g1,22616:10740670,26447055 -g1,22616:11056816,26447055 -g1,22616:11372962,26447055 -g1,22616:11689108,26447055 -g1,22616:12005254,26447055 -h1,22616:13902128,26447055:0,0,0 -k1,22616:32583028,26447055:18680900 -g1,22616:32583028,26447055 -) -(1,22616:6630773,27113233:25952256,404226,76021 -h1,22616:6630773,27113233:0,0,0 -g1,22616:7579210,27113233 -g1,22616:7895356,27113233 -g1,22616:8211502,27113233 -g1,22616:8527648,27113233 -g1,22616:8843794,27113233 -g1,22616:9159940,27113233 -g1,22616:9476086,27113233 -g1,22616:9792232,27113233 -g1,22616:10108378,27113233 -g1,22616:10424524,27113233 -g1,22616:10740670,27113233 -g1,22616:11056816,27113233 -g1,22616:11372962,27113233 -h1,22616:13269836,27113233:0,0,0 -k1,22616:32583028,27113233:19313192 -g1,22616:32583028,27113233 -) -(1,22616:6630773,27779411:25952256,404226,6290 -h1,22616:6630773,27779411:0,0,0 -g1,22616:7579210,27779411 -g1,22616:7895356,27779411 -g1,22616:8211502,27779411 -g1,22616:8527648,27779411 -g1,22616:8843794,27779411 -g1,22616:9159940,27779411 -g1,22616:9476086,27779411 -g1,22616:9792232,27779411 -g1,22616:10108378,27779411 -g1,22616:10424524,27779411 -g1,22616:10740670,27779411 -g1,22616:11056816,27779411 -g1,22616:11372962,27779411 -k1,22616:11372962,27779411:0 -h1,22616:13269836,27779411:0,0,0 -k1,22616:32583028,27779411:19313192 -g1,22616:32583028,27779411 -) -(1,22616:6630773,28445589:25952256,404226,76021 -h1,22616:6630773,28445589:0,0,0 -g1,22616:7579210,28445589 -g1,22616:7895356,28445589 -g1,22616:8211502,28445589 -g1,22616:8527648,28445589 -g1,22616:8843794,28445589 -g1,22616:9159940,28445589 -g1,22616:9476086,28445589 -g1,22616:9792232,28445589 -g1,22616:10108378,28445589 -g1,22616:10424524,28445589 -g1,22616:10740670,28445589 -g1,22616:11056816,28445589 -g1,22616:11372962,28445589 -g1,22616:11689108,28445589 -g1,22616:12005254,28445589 -h1,22616:13902128,28445589:0,0,0 -k1,22616:32583028,28445589:18680900 -g1,22616:32583028,28445589 -) -(1,22616:6630773,29111767:25952256,404226,76021 -h1,22616:6630773,29111767:0,0,0 -g1,22616:7579210,29111767 -g1,22616:7895356,29111767 -g1,22616:8211502,29111767 -g1,22616:8527648,29111767 -g1,22616:8843794,29111767 -g1,22616:9159940,29111767 -g1,22616:9476086,29111767 -g1,22616:9792232,29111767 -g1,22616:10108378,29111767 -g1,22616:10424524,29111767 -g1,22616:10740670,29111767 -g1,22616:11056816,29111767 -g1,22616:11372962,29111767 -h1,22616:13269836,29111767:0,0,0 -k1,22616:32583028,29111767:19313192 -g1,22616:32583028,29111767 -) -(1,22616:6630773,29777945:25952256,404226,76021 -h1,22616:6630773,29777945:0,0,0 -g1,22616:7579210,29777945 -g1,22616:7895356,29777945 -g1,22616:8211502,29777945 -g1,22616:8527648,29777945 -g1,22616:8843794,29777945 -g1,22616:9159940,29777945 -g1,22616:9476086,29777945 -g1,22616:9792232,29777945 -g1,22616:10108378,29777945 -g1,22616:10424524,29777945 -g1,22616:10740670,29777945 -h1,22616:12637544,29777945:0,0,0 -k1,22616:32583028,29777945:19945484 -g1,22616:32583028,29777945 -) -(1,22616:6630773,30444123:25952256,404226,6290 -h1,22616:6630773,30444123:0,0,0 -g1,22616:7579210,30444123 -g1,22616:7895356,30444123 -g1,22616:8211502,30444123 -g1,22616:8527648,30444123 -g1,22616:8843794,30444123 -g1,22616:9159940,30444123 -g1,22616:9476086,30444123 -g1,22616:9792232,30444123 -g1,22616:10108378,30444123 -g1,22616:10424524,30444123 -g1,22616:10740670,30444123 -k1,22616:10740670,30444123:0 -h1,22616:13902127,30444123:0,0,0 -k1,22616:32583029,30444123:18680902 -g1,22616:32583029,30444123 -) -(1,22616:6630773,31110301:25952256,404226,76021 -h1,22616:6630773,31110301:0,0,0 -g1,22616:7579210,31110301 -g1,22616:7895356,31110301 -g1,22616:8211502,31110301 -g1,22616:8527648,31110301 -g1,22616:8843794,31110301 -g1,22616:9159940,31110301 -g1,22616:9476086,31110301 -g1,22616:9792232,31110301 -g1,22616:10108378,31110301 -g1,22616:10424524,31110301 -g1,22616:10740670,31110301 -g1,22616:11056816,31110301 -g1,22616:11372962,31110301 -h1,22616:13269836,31110301:0,0,0 -k1,22616:32583028,31110301:19313192 -g1,22616:32583028,31110301 -) -(1,22616:6630773,31776479:25952256,404226,7863 -h1,22616:6630773,31776479:0,0,0 -g1,22616:7579210,31776479 -g1,22616:7895356,31776479 -g1,22616:8211502,31776479 -g1,22616:8527648,31776479 -g1,22616:8843794,31776479 -g1,22616:9159940,31776479 -g1,22616:9476086,31776479 -g1,22616:9792232,31776479 -g1,22616:10108378,31776479 -g1,22616:10424524,31776479 -g1,22616:10740670,31776479 -g1,22616:11056816,31776479 -g1,22616:11372962,31776479 -g1,22616:14218273,31776479 -k1,22616:14218273,31776479:0 -h1,22616:21173478,31776479:0,0,0 -k1,22616:32583029,31776479:11409551 -g1,22616:32583029,31776479 -) -(1,22616:6630773,32442657:25952256,404226,101187 -h1,22616:6630773,32442657:0,0,0 -g1,22616:7579210,32442657 -g1,22616:7895356,32442657 -g1,22616:8211502,32442657 -g1,22616:8527648,32442657 -g1,22616:8843794,32442657 -g1,22616:9159940,32442657 -g1,22616:9476086,32442657 -g1,22616:9792232,32442657 -g1,22616:10108378,32442657 -g1,22616:10424524,32442657 -g1,22616:10740670,32442657 -g1,22616:11056816,32442657 -g1,22616:11372962,32442657 -g1,22616:11689108,32442657 -g1,22616:12005254,32442657 -k1,22616:12005254,32442657:0 -h1,22616:22438061,32442657:0,0,0 -k1,22616:32583029,32442657:10144968 -g1,22616:32583029,32442657 -) -(1,22616:6630773,33108835:25952256,404226,7863 -h1,22616:6630773,33108835:0,0,0 -g1,22616:7579210,33108835 -g1,22616:7895356,33108835 -g1,22616:8211502,33108835 -g1,22616:8527648,33108835 -g1,22616:8843794,33108835 -g1,22616:9159940,33108835 -g1,22616:9476086,33108835 -g1,22616:9792232,33108835 -g1,22616:10108378,33108835 -g1,22616:10424524,33108835 -g1,22616:10740670,33108835 -g1,22616:11056816,33108835 -g1,22616:11372962,33108835 -g1,22616:11689108,33108835 -g1,22616:12005254,33108835 -g1,22616:12321400,33108835 -g1,22616:12637546,33108835 -k1,22616:12637546,33108835:0 -h1,22616:18644314,33108835:0,0,0 -k1,22616:32583029,33108835:13938715 -g1,22616:32583029,33108835 -) -(1,22616:6630773,33775013:25952256,404226,101187 -h1,22616:6630773,33775013:0,0,0 -g1,22616:7579210,33775013 -g1,22616:7895356,33775013 -g1,22616:8211502,33775013 -g1,22616:8527648,33775013 -g1,22616:8843794,33775013 -g1,22616:9159940,33775013 -g1,22616:9476086,33775013 -g1,22616:9792232,33775013 -g1,22616:10108378,33775013 -g1,22616:10424524,33775013 -g1,22616:10740670,33775013 -g1,22616:11056816,33775013 -g1,22616:11372962,33775013 -g1,22616:11689108,33775013 -g1,22616:12005254,33775013 -g1,22616:12321400,33775013 -g1,22616:12637546,33775013 -g1,22616:12953692,33775013 -g1,22616:13269838,33775013 -k1,22616:13269838,33775013:0 -h1,22616:17063586,33775013:0,0,0 -k1,22616:32583029,33775013:15519443 -g1,22616:32583029,33775013 -) -(1,22616:6630773,34441191:25952256,410518,82312 -h1,22616:6630773,34441191:0,0,0 -g1,22616:7579210,34441191 -g1,22616:7895356,34441191 -g1,22616:8211502,34441191 -g1,22616:8527648,34441191 -g1,22616:8843794,34441191 -g1,22616:9159940,34441191 -g1,22616:9476086,34441191 -g1,22616:9792232,34441191 -g1,22616:10108378,34441191 -g1,22616:10424524,34441191 -g1,22616:10740670,34441191 -g1,22616:11056816,34441191 -g1,22616:11372962,34441191 -g1,22616:11689108,34441191 -g1,22616:12005254,34441191 -g1,22616:12321400,34441191 -g1,22616:12637546,34441191 -g1,22616:12953692,34441191 -g1,22616:13269838,34441191 -g1,22616:13585984,34441191 -g1,22616:13902130,34441191 -g1,22616:14850567,34441191 -g1,22616:17063587,34441191 -g1,22616:21173482,34441191 -k1,22616:21173482,34441191:0 -h1,22616:24334939,34441191:0,0,0 -k1,22616:32583029,34441191:8248090 -g1,22616:32583029,34441191 -) -(1,22616:6630773,35107369:25952256,404226,76021 -h1,22616:6630773,35107369:0,0,0 -g1,22616:7579210,35107369 -g1,22616:7895356,35107369 -g1,22616:8211502,35107369 -g1,22616:8527648,35107369 -g1,22616:8843794,35107369 -g1,22616:9159940,35107369 -g1,22616:9476086,35107369 -g1,22616:9792232,35107369 -g1,22616:10108378,35107369 -g1,22616:10424524,35107369 -g1,22616:10740670,35107369 -g1,22616:11056816,35107369 -g1,22616:11372962,35107369 -g1,22616:11689108,35107369 -g1,22616:12005254,35107369 -g1,22616:12321400,35107369 -g1,22616:12637546,35107369 -g1,22616:12953692,35107369 -g1,22616:13269838,35107369 -g1,22616:13585984,35107369 -g1,22616:13902130,35107369 -h1,22616:15799004,35107369:0,0,0 -k1,22616:32583028,35107369:16784024 -g1,22616:32583028,35107369 -) -(1,22616:6630773,35773547:25952256,379060,101187 -h1,22616:6630773,35773547:0,0,0 -g1,22616:7579210,35773547 -g1,22616:7895356,35773547 -g1,22616:8211502,35773547 -g1,22616:8527648,35773547 -g1,22616:8843794,35773547 -g1,22616:9159940,35773547 -g1,22616:9476086,35773547 -g1,22616:9792232,35773547 -g1,22616:10108378,35773547 -g1,22616:10424524,35773547 -g1,22616:10740670,35773547 -g1,22616:11056816,35773547 -g1,22616:11372962,35773547 -g1,22616:11689108,35773547 -g1,22616:12005254,35773547 -g1,22616:12321400,35773547 -g1,22616:12637546,35773547 -g1,22616:12953692,35773547 -g1,22616:13269838,35773547 -g1,22616:13585984,35773547 -g1,22616:13902130,35773547 -k1,22616:13902130,35773547:0 -h1,22616:16747441,35773547:0,0,0 -k1,22616:32583029,35773547:15835588 -g1,22616:32583029,35773547 -) -(1,22616:6630773,36439725:25952256,404226,76021 -h1,22616:6630773,36439725:0,0,0 -g1,22616:7579210,36439725 -g1,22616:7895356,36439725 -g1,22616:8211502,36439725 -g1,22616:8527648,36439725 -g1,22616:8843794,36439725 -g1,22616:9159940,36439725 -g1,22616:9476086,36439725 -g1,22616:9792232,36439725 -g1,22616:10108378,36439725 -g1,22616:10424524,36439725 -g1,22616:10740670,36439725 -g1,22616:11056816,36439725 -g1,22616:11372962,36439725 -g1,22616:11689108,36439725 -g1,22616:12005254,36439725 -g1,22616:12321400,36439725 -g1,22616:12637546,36439725 -g1,22616:12953692,36439725 -g1,22616:13269838,36439725 -g1,22616:13585984,36439725 -g1,22616:13902130,36439725 -g1,22616:14218276,36439725 -g1,22616:14534422,36439725 -h1,22616:16431296,36439725:0,0,0 -k1,22616:32583029,36439725:16151733 -g1,22616:32583029,36439725 -) -(1,22616:6630773,37105903:25952256,404226,76021 -h1,22616:6630773,37105903:0,0,0 -g1,22616:7579210,37105903 -g1,22616:7895356,37105903 -g1,22616:8211502,37105903 -g1,22616:8527648,37105903 -g1,22616:8843794,37105903 -g1,22616:9159940,37105903 -g1,22616:9476086,37105903 -g1,22616:9792232,37105903 -g1,22616:10108378,37105903 -g1,22616:10424524,37105903 -g1,22616:10740670,37105903 -g1,22616:11056816,37105903 -g1,22616:11372962,37105903 -g1,22616:11689108,37105903 -g1,22616:12005254,37105903 -g1,22616:12321400,37105903 -g1,22616:12637546,37105903 -g1,22616:12953692,37105903 -g1,22616:13269838,37105903 -g1,22616:13585984,37105903 -g1,22616:13902130,37105903 -h1,22616:15799004,37105903:0,0,0 -k1,22616:32583028,37105903:16784024 -g1,22616:32583028,37105903 -) -(1,22616:6630773,37772081:25952256,410518,101187 -h1,22616:6630773,37772081:0,0,0 -g1,22616:7579210,37772081 -g1,22616:7895356,37772081 -g1,22616:8211502,37772081 -g1,22616:8527648,37772081 -g1,22616:8843794,37772081 -g1,22616:9159940,37772081 -g1,22616:9476086,37772081 -g1,22616:9792232,37772081 -g1,22616:10108378,37772081 -g1,22616:10424524,37772081 -g1,22616:10740670,37772081 -g1,22616:11056816,37772081 -g1,22616:11372962,37772081 -g1,22616:11689108,37772081 -g1,22616:12005254,37772081 -g1,22616:12321400,37772081 -g1,22616:12637546,37772081 -g1,22616:12953692,37772081 -g1,22616:13269838,37772081 -g1,22616:13585984,37772081 -g1,22616:13902130,37772081 -k1,22616:13902130,37772081:0 -h1,22616:16747441,37772081:0,0,0 -k1,22616:32583029,37772081:15835588 -g1,22616:32583029,37772081 -) -(1,22616:6630773,38438259:25952256,404226,76021 -h1,22616:6630773,38438259:0,0,0 -g1,22616:7579210,38438259 -g1,22616:7895356,38438259 -g1,22616:8211502,38438259 -g1,22616:8527648,38438259 -g1,22616:8843794,38438259 -g1,22616:9159940,38438259 -g1,22616:9476086,38438259 -g1,22616:9792232,38438259 -g1,22616:10108378,38438259 -g1,22616:10424524,38438259 -g1,22616:10740670,38438259 -g1,22616:11056816,38438259 -g1,22616:11372962,38438259 -g1,22616:11689108,38438259 -g1,22616:12005254,38438259 -g1,22616:12321400,38438259 -g1,22616:12637546,38438259 -g1,22616:12953692,38438259 -g1,22616:13269838,38438259 -g1,22616:13585984,38438259 -g1,22616:13902130,38438259 -g1,22616:14218276,38438259 -g1,22616:14534422,38438259 -h1,22616:16431296,38438259:0,0,0 -k1,22616:32583029,38438259:16151733 -g1,22616:32583029,38438259 -) -(1,22616:6630773,39104437:25952256,404226,76021 -h1,22616:6630773,39104437:0,0,0 -g1,22616:7579210,39104437 -g1,22616:7895356,39104437 -g1,22616:8211502,39104437 -g1,22616:8527648,39104437 -g1,22616:8843794,39104437 -g1,22616:9159940,39104437 -g1,22616:9476086,39104437 -g1,22616:9792232,39104437 -g1,22616:10108378,39104437 -g1,22616:10424524,39104437 -g1,22616:10740670,39104437 -g1,22616:11056816,39104437 -g1,22616:11372962,39104437 -g1,22616:11689108,39104437 -g1,22616:12005254,39104437 -g1,22616:12321400,39104437 -g1,22616:12637546,39104437 -g1,22616:12953692,39104437 -g1,22616:13269838,39104437 -g1,22616:13585984,39104437 -g1,22616:13902130,39104437 -h1,22616:15799004,39104437:0,0,0 -k1,22616:32583028,39104437:16784024 -g1,22616:32583028,39104437 -) -(1,22616:6630773,39770615:25952256,379060,101187 -h1,22616:6630773,39770615:0,0,0 -g1,22616:7579210,39770615 -g1,22616:7895356,39770615 -g1,22616:8211502,39770615 -g1,22616:8527648,39770615 -g1,22616:8843794,39770615 -g1,22616:9159940,39770615 -g1,22616:9476086,39770615 -g1,22616:9792232,39770615 -g1,22616:10108378,39770615 -g1,22616:10424524,39770615 -g1,22616:10740670,39770615 -g1,22616:11056816,39770615 -g1,22616:11372962,39770615 -g1,22616:11689108,39770615 -g1,22616:12005254,39770615 -g1,22616:12321400,39770615 -g1,22616:12637546,39770615 -g1,22616:12953692,39770615 -g1,22616:13269838,39770615 -g1,22616:13585984,39770615 -g1,22616:13902130,39770615 -k1,22616:13902130,39770615:0 -h1,22616:16747441,39770615:0,0,0 -k1,22616:32583029,39770615:15835588 -g1,22616:32583029,39770615 -) -(1,22616:6630773,40436793:25952256,404226,76021 -h1,22616:6630773,40436793:0,0,0 -g1,22616:7579210,40436793 -g1,22616:7895356,40436793 -g1,22616:8211502,40436793 -g1,22616:8527648,40436793 -g1,22616:8843794,40436793 -g1,22616:9159940,40436793 -g1,22616:9476086,40436793 -g1,22616:9792232,40436793 -g1,22616:10108378,40436793 -g1,22616:10424524,40436793 -g1,22616:10740670,40436793 -g1,22616:11056816,40436793 -g1,22616:11372962,40436793 -g1,22616:11689108,40436793 -g1,22616:12005254,40436793 -g1,22616:12321400,40436793 -g1,22616:12637546,40436793 -g1,22616:12953692,40436793 -g1,22616:13269838,40436793 -g1,22616:13585984,40436793 -g1,22616:13902130,40436793 -g1,22616:14218276,40436793 -g1,22616:14534422,40436793 -h1,22616:16431296,40436793:0,0,0 -k1,22616:32583029,40436793:16151733 -g1,22616:32583029,40436793 -) -(1,22616:6630773,41102971:25952256,404226,76021 -h1,22616:6630773,41102971:0,0,0 -g1,22616:7579210,41102971 -g1,22616:7895356,41102971 -g1,22616:8211502,41102971 -g1,22616:8527648,41102971 -g1,22616:8843794,41102971 -g1,22616:9159940,41102971 -g1,22616:9476086,41102971 -g1,22616:9792232,41102971 -g1,22616:10108378,41102971 -g1,22616:10424524,41102971 -g1,22616:10740670,41102971 -g1,22616:11056816,41102971 -g1,22616:11372962,41102971 -g1,22616:11689108,41102971 -g1,22616:12005254,41102971 -g1,22616:12321400,41102971 -g1,22616:12637546,41102971 -g1,22616:12953692,41102971 -g1,22616:13269838,41102971 -g1,22616:13585984,41102971 -g1,22616:13902130,41102971 -h1,22616:15799004,41102971:0,0,0 -k1,22616:32583028,41102971:16784024 -g1,22616:32583028,41102971 -) -(1,22616:6630773,41769149:25952256,404226,76021 -h1,22616:6630773,41769149:0,0,0 -g1,22616:7579210,41769149 -g1,22616:7895356,41769149 -g1,22616:8211502,41769149 -g1,22616:8527648,41769149 -g1,22616:8843794,41769149 -g1,22616:9159940,41769149 -g1,22616:9476086,41769149 -g1,22616:9792232,41769149 -g1,22616:10108378,41769149 -g1,22616:10424524,41769149 -g1,22616:10740670,41769149 -g1,22616:11056816,41769149 -g1,22616:11372962,41769149 -g1,22616:11689108,41769149 -g1,22616:12005254,41769149 -g1,22616:12321400,41769149 -g1,22616:12637546,41769149 -g1,22616:12953692,41769149 -g1,22616:13269838,41769149 -h1,22616:15166712,41769149:0,0,0 -k1,22616:32583028,41769149:17416316 -g1,22616:32583028,41769149 -) -(1,22616:6630773,42435327:25952256,404226,101187 -h1,22616:6630773,42435327:0,0,0 -g1,22616:7579210,42435327 -g1,22616:7895356,42435327 -g1,22616:8211502,42435327 -g1,22616:8527648,42435327 -g1,22616:8843794,42435327 -g1,22616:9159940,42435327 -g1,22616:9476086,42435327 -g1,22616:9792232,42435327 -g1,22616:10108378,42435327 -g1,22616:10424524,42435327 -g1,22616:10740670,42435327 -g1,22616:11056816,42435327 -g1,22616:11372962,42435327 -g1,22616:11689108,42435327 -g1,22616:12005254,42435327 -g1,22616:12321400,42435327 -g1,22616:12637546,42435327 -g1,22616:12953692,42435327 -g1,22616:13269838,42435327 -k1,22616:13269838,42435327:0 -h1,22616:17063586,42435327:0,0,0 -k1,22616:32583029,42435327:15519443 -g1,22616:32583029,42435327 -) -(1,22616:6630773,43101505:25952256,410518,82312 -h1,22616:6630773,43101505:0,0,0 -g1,22616:7579210,43101505 -g1,22616:7895356,43101505 -g1,22616:8211502,43101505 -g1,22616:8527648,43101505 -g1,22616:8843794,43101505 -g1,22616:9159940,43101505 -g1,22616:9476086,43101505 -g1,22616:9792232,43101505 -g1,22616:10108378,43101505 -g1,22616:10424524,43101505 -g1,22616:10740670,43101505 -g1,22616:11056816,43101505 -g1,22616:11372962,43101505 -g1,22616:11689108,43101505 -g1,22616:12005254,43101505 -g1,22616:12321400,43101505 -g1,22616:12637546,43101505 -g1,22616:12953692,43101505 -g1,22616:13269838,43101505 -g1,22616:13585984,43101505 -g1,22616:13902130,43101505 -g1,22616:14850567,43101505 -g1,22616:17063587,43101505 -g1,22616:21173482,43101505 -k1,22616:21173482,43101505:0 -h1,22616:24334939,43101505:0,0,0 -k1,22616:32583029,43101505:8248090 -g1,22616:32583029,43101505 -) -(1,22616:6630773,43767683:25952256,410518,101187 -h1,22616:6630773,43767683:0,0,0 -g1,22616:7579210,43767683 -g1,22616:7895356,43767683 -g1,22616:8211502,43767683 -g1,22616:8527648,43767683 -g1,22616:8843794,43767683 -g1,22616:9159940,43767683 -g1,22616:9476086,43767683 -g1,22616:9792232,43767683 -g1,22616:10108378,43767683 -g1,22616:10424524,43767683 -g1,22616:10740670,43767683 -g1,22616:11056816,43767683 -g1,22616:11372962,43767683 -g1,22616:11689108,43767683 -g1,22616:12005254,43767683 -g1,22616:12321400,43767683 -g1,22616:12637546,43767683 -g1,22616:12953692,43767683 -g1,22616:13269838,43767683 -g1,22616:13585984,43767683 -g1,22616:13902130,43767683 -k1,22616:13902130,43767683:0 -h1,22616:16747441,43767683:0,0,0 -k1,22616:32583029,43767683:15835588 -g1,22616:32583029,43767683 -) -(1,22616:6630773,44433861:25952256,404226,76021 -h1,22616:6630773,44433861:0,0,0 -g1,22616:7579210,44433861 -g1,22616:7895356,44433861 -g1,22616:8211502,44433861 -g1,22616:8527648,44433861 -g1,22616:8843794,44433861 -g1,22616:9159940,44433861 -g1,22616:9476086,44433861 -g1,22616:9792232,44433861 -g1,22616:10108378,44433861 -g1,22616:10424524,44433861 -g1,22616:10740670,44433861 -g1,22616:11056816,44433861 -g1,22616:11372962,44433861 -g1,22616:11689108,44433861 -g1,22616:12005254,44433861 -g1,22616:12321400,44433861 -g1,22616:12637546,44433861 -g1,22616:12953692,44433861 -g1,22616:13269838,44433861 -g1,22616:13585984,44433861 -g1,22616:13902130,44433861 -g1,22616:14218276,44433861 -g1,22616:14534422,44433861 -h1,22616:16431296,44433861:0,0,0 -k1,22616:32583029,44433861:16151733 -g1,22616:32583029,44433861 -) -(1,22616:6630773,45100039:25952256,404226,76021 -h1,22616:6630773,45100039:0,0,0 -g1,22616:7579210,45100039 -g1,22616:7895356,45100039 -g1,22616:8211502,45100039 -g1,22616:8527648,45100039 -g1,22616:8843794,45100039 -g1,22616:9159940,45100039 -g1,22616:9476086,45100039 -g1,22616:9792232,45100039 -g1,22616:10108378,45100039 -g1,22616:10424524,45100039 -g1,22616:10740670,45100039 -g1,22616:11056816,45100039 -g1,22616:11372962,45100039 -g1,22616:11689108,45100039 -g1,22616:12005254,45100039 -g1,22616:12321400,45100039 -g1,22616:12637546,45100039 -g1,22616:12953692,45100039 -g1,22616:13269838,45100039 -g1,22616:13585984,45100039 -g1,22616:13902130,45100039 -h1,22616:15799004,45100039:0,0,0 -k1,22616:32583028,45100039:16784024 -g1,22616:32583028,45100039 -) -] -) -g1,22617:32583029,45510161 -g1,22617:6630773,45510161 -g1,22617:6630773,45510161 -g1,22617:32583029,45510161 -g1,22617:32583029,45510161 -) -] -(1,22617:32583029,45706769:0,0,0 -g1,22617:32583029,45706769 -) -) -] -(1,22617:6630773,47279633:25952256,0,0 -h1,22617:6630773,47279633:25952256,0,0 -) -] -(1,22617:4262630,4025873:0,0,0 -[1,22617:-473656,4025873:0,0,0 -(1,22617:-473656,-710413:0,0,0 -(1,22617:-473656,-710413:0,0,0 -g1,22617:-473656,-710413 -) -g1,22617:-473656,-710413 -) -] -) -] -!39386 -}409 -Input:3652:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3653:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3654:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!294 -{410 -[1,22636:4262630,47279633:28320399,43253760,0 -(1,22636:4262630,4025873:0,0,0 -[1,22636:-473656,4025873:0,0,0 -(1,22636:-473656,-710413:0,0,0 -(1,22636:-473656,-644877:0,0,0 -k1,22636:-473656,-644877:-65536 +k1,21670:29014430,51504789:25935872 +g1,21670:29014430,51504789 +) +] +) +) +) +] +[1,22830:3078558,4812305:0,0,0 +(1,22830:3078558,49800853:0,16384,2228224 +g1,22830:29030814,49800853 +g1,22830:36135244,49800853 +(1,21670:36135244,49800853:1720320,16384,2228224 +(1,21670:36135244,52029077:16384,1703936,0 +[1,21670:36135244,52029077:25952256,1703936,0 +(1,21670:36135244,51504789:25952256,1179648,0 +(1,21670:36135244,51504789:16384,1179648,0 +r1,22830:36151628,51504789:16384,1179648,0 +) +k1,21670:62087500,51504789:25935872 +g1,21670:62087500,51504789 +) +] +) +g1,21670:36675916,49800853 +(1,21670:36675916,49800853:1179648,16384,0 +r1,22830:37855564,49800853:1179648,16384,0 +) +) +k1,22830:3078556,49800853:-34777008 +) +] +g1,22830:6630773,4812305 +g1,22830:6630773,4812305 +g1,22830:8180699,4812305 +g1,22830:9590378,4812305 +g1,22830:11674422,4812305 +g1,22830:13105728,4812305 +k1,22830:31387652,4812305:18281924 +) +) +] +[1,22830:6630773,45706769:25952256,40108032,0 +(1,22830:6630773,45706769:25952256,40108032,0 +(1,22830:6630773,45706769:0,0,0 +g1,22830:6630773,45706769 +) +[1,22830:6630773,45706769:25952256,40108032,0 +v1,22830:6630773,6254097:0,393216,0 +(1,22830:6630773,45510161:25952256,39649280,196608 +g1,22830:6630773,45510161 +g1,22830:6630773,45510161 +g1,22830:6434165,45510161 +(1,22830:6434165,45510161:0,39649280,196608 +r1,22830:32779637,45510161:26345472,39845888,196608 +k1,22830:6434165,45510161:-26345472 +) +(1,22830:6434165,45510161:26345472,39649280,196608 +[1,22830:6630773,45510161:25952256,39452672,0 +(1,22829:6630773,6481928:25952256,424439,79822 +h1,22829:6630773,6481928:0,0,0 +g1,22829:7626635,6481928 +g1,22829:7958589,6481928 +g1,22829:8290543,6481928 +g1,22829:8622497,6481928 +g1,22829:8954451,6481928 +g1,22829:9286405,6481928 +g1,22829:9618359,6481928 +g1,22829:9950313,6481928 +g1,22829:10282267,6481928 +g1,22829:10614221,6481928 +g1,22829:10946175,6481928 +g1,22829:11278129,6481928 +g1,22829:11610083,6481928 +h1,22829:13601807,6481928:0,0,0 +k1,22829:32583029,6481928:18981222 +g1,22829:32583029,6481928 +) +(1,22829:6630773,7166783:25952256,424439,6605 +h1,22829:6630773,7166783:0,0,0 +g1,22829:7626635,7166783 +g1,22829:7958589,7166783 +g1,22829:8290543,7166783 +g1,22829:8622497,7166783 +g1,22829:8954451,7166783 +g1,22829:9286405,7166783 +g1,22829:9618359,7166783 +g1,22829:9950313,7166783 +g1,22829:10282267,7166783 +g1,22829:10614221,7166783 +g1,22829:10946175,7166783 +g1,22829:11278129,7166783 +g1,22829:11610083,7166783 +k1,22829:11610083,7166783:0 +h1,22829:12937899,7166783:0,0,0 +k1,22829:32583029,7166783:19645130 +g1,22829:32583029,7166783 +) +(1,22829:6630773,7851638:25952256,424439,79822 +h1,22829:6630773,7851638:0,0,0 +g1,22829:7626635,7851638 +g1,22829:7958589,7851638 +g1,22829:8290543,7851638 +g1,22829:8622497,7851638 +g1,22829:8954451,7851638 +g1,22829:9286405,7851638 +g1,22829:9618359,7851638 +g1,22829:9950313,7851638 +g1,22829:10282267,7851638 +g1,22829:10614221,7851638 +g1,22829:10946175,7851638 +g1,22829:11278129,7851638 +g1,22829:11610083,7851638 +h1,22829:13601807,7851638:0,0,0 +k1,22829:32583029,7851638:18981222 +g1,22829:32583029,7851638 +) +(1,22829:6630773,8536493:25952256,431045,79822 +h1,22829:6630773,8536493:0,0,0 +g1,22829:7626635,8536493 +g1,22829:7958589,8536493 +g1,22829:8290543,8536493 +g1,22829:8622497,8536493 +g1,22829:8954451,8536493 +g1,22829:9286405,8536493 +g1,22829:9618359,8536493 +g1,22829:9950313,8536493 +g1,22829:10282267,8536493 +g1,22829:10614221,8536493 +g1,22829:10946175,8536493 +g1,22829:11278129,8536493 +g1,22829:11610083,8536493 +g1,22829:12605945,8536493 +k1,22829:12605945,8536493:0 +h1,22829:14929623,8536493:0,0,0 +k1,22829:32583029,8536493:17653406 +g1,22829:32583029,8536493 +) +(1,22829:6630773,9221348:25952256,424439,79822 +h1,22829:6630773,9221348:0,0,0 +g1,22829:7626635,9221348 +g1,22829:7958589,9221348 +g1,22829:8290543,9221348 +g1,22829:8622497,9221348 +g1,22829:8954451,9221348 +g1,22829:9286405,9221348 +g1,22829:9618359,9221348 +g1,22829:9950313,9221348 +g1,22829:10282267,9221348 +g1,22829:10614221,9221348 +g1,22829:10946175,9221348 +g1,22829:11278129,9221348 +g1,22829:11610083,9221348 +g1,22829:11942037,9221348 +g1,22829:12273991,9221348 +h1,22829:14265715,9221348:0,0,0 +k1,22829:32583029,9221348:18317314 +g1,22829:32583029,9221348 +) +(1,22829:6630773,9906203:25952256,424439,79822 +h1,22829:6630773,9906203:0,0,0 +g1,22829:7626635,9906203 +g1,22829:7958589,9906203 +g1,22829:8290543,9906203 +g1,22829:8622497,9906203 +g1,22829:8954451,9906203 +g1,22829:9286405,9906203 +g1,22829:9618359,9906203 +g1,22829:9950313,9906203 +g1,22829:10282267,9906203 +g1,22829:10614221,9906203 +g1,22829:10946175,9906203 +g1,22829:11278129,9906203 +g1,22829:11610083,9906203 +h1,22829:13601807,9906203:0,0,0 +k1,22829:32583029,9906203:18981222 +g1,22829:32583029,9906203 +) +(1,22829:6630773,10591058:25952256,424439,79822 +h1,22829:6630773,10591058:0,0,0 +g1,22829:7626635,10591058 +g1,22829:7958589,10591058 +g1,22829:8290543,10591058 +g1,22829:8622497,10591058 +g1,22829:8954451,10591058 +g1,22829:9286405,10591058 +g1,22829:9618359,10591058 +g1,22829:9950313,10591058 +g1,22829:10282267,10591058 +g1,22829:10614221,10591058 +g1,22829:10946175,10591058 +h1,22829:12937899,10591058:0,0,0 +k1,22829:32583029,10591058:19645130 +g1,22829:32583029,10591058 +) +(1,22829:6630773,11275913:25952256,424439,6605 +h1,22829:6630773,11275913:0,0,0 +g1,22829:7626635,11275913 +g1,22829:7958589,11275913 +g1,22829:8290543,11275913 +g1,22829:8622497,11275913 +g1,22829:8954451,11275913 +g1,22829:9286405,11275913 +g1,22829:9618359,11275913 +g1,22829:9950313,11275913 +g1,22829:10282267,11275913 +g1,22829:17585253,11275913 +k1,22829:17585253,11275913:0 +h1,22829:20240885,11275913:0,0,0 +k1,22829:32583029,11275913:12342144 +g1,22829:32583029,11275913 +) +(1,22829:6630773,11960768:25952256,424439,79822 +h1,22829:6630773,11960768:0,0,0 +g1,22829:7626635,11960768 +g1,22829:7958589,11960768 +g1,22829:8290543,11960768 +g1,22829:8622497,11960768 +g1,22829:8954451,11960768 +g1,22829:9286405,11960768 +g1,22829:9618359,11960768 +g1,22829:9950313,11960768 +g1,22829:10282267,11960768 +g1,22829:10614221,11960768 +g1,22829:10946175,11960768 +g1,22829:15261576,11960768 +k1,22829:15261576,11960768:0 +h1,22829:20904794,11960768:0,0,0 +k1,22829:32583029,11960768:11678235 +g1,22829:32583029,11960768 +) +(1,22829:6630773,12645623:25952256,424439,79822 +h1,22829:6630773,12645623:0,0,0 +g1,22829:7626635,12645623 +g1,22829:7958589,12645623 +g1,22829:8290543,12645623 +g1,22829:8622497,12645623 +g1,22829:8954451,12645623 +g1,22829:9286405,12645623 +g1,22829:9618359,12645623 +g1,22829:9950313,12645623 +g1,22829:10282267,12645623 +g1,22829:10614221,12645623 +g1,22829:10946175,12645623 +g1,22829:11278129,12645623 +g1,22829:11610083,12645623 +h1,22829:13601807,12645623:0,0,0 +k1,22829:32583029,12645623:18981222 +g1,22829:32583029,12645623 +) +(1,22829:6630773,13330478:25952256,424439,79822 +h1,22829:6630773,13330478:0,0,0 +g1,22829:7626635,13330478 +g1,22829:7958589,13330478 +g1,22829:8290543,13330478 +g1,22829:8622497,13330478 +g1,22829:8954451,13330478 +g1,22829:9286405,13330478 +g1,22829:9618359,13330478 +g1,22829:9950313,13330478 +g1,22829:10282267,13330478 +g1,22829:10614221,13330478 +g1,22829:10946175,13330478 +h1,22829:12937899,13330478:0,0,0 +k1,22829:32583029,13330478:19645130 +g1,22829:32583029,13330478 +) +(1,22829:6630773,14015333:25952256,398014,106246 +h1,22829:6630773,14015333:0,0,0 +g1,22829:7626635,14015333 +g1,22829:7958589,14015333 +g1,22829:8290543,14015333 +g1,22829:8622497,14015333 +g1,22829:8954451,14015333 +g1,22829:9286405,14015333 +g1,22829:9618359,14015333 +g1,22829:9950313,14015333 +g1,22829:10282267,14015333 +g1,22829:10614221,14015333 +g1,22829:10946175,14015333 +k1,22829:10946175,14015333:0 +h1,22829:11942037,14015333:0,0,0 +k1,22829:32583029,14015333:20640992 +g1,22829:32583029,14015333 +) +(1,22829:6630773,14700188:25952256,424439,79822 +h1,22829:6630773,14700188:0,0,0 +g1,22829:7626635,14700188 +g1,22829:7958589,14700188 +g1,22829:8290543,14700188 +g1,22829:8622497,14700188 +g1,22829:8954451,14700188 +g1,22829:9286405,14700188 +g1,22829:9618359,14700188 +g1,22829:9950313,14700188 +g1,22829:10282267,14700188 +g1,22829:10614221,14700188 +g1,22829:10946175,14700188 +g1,22829:11278129,14700188 +g1,22829:11610083,14700188 +h1,22829:13601807,14700188:0,0,0 +k1,22829:32583029,14700188:18981222 +g1,22829:32583029,14700188 +) +(1,22829:6630773,15385043:25952256,424439,79822 +h1,22829:6630773,15385043:0,0,0 +g1,22829:7626635,15385043 +g1,22829:7958589,15385043 +g1,22829:8290543,15385043 +g1,22829:8622497,15385043 +g1,22829:8954451,15385043 +g1,22829:9286405,15385043 +g1,22829:9618359,15385043 +g1,22829:9950313,15385043 +g1,22829:10282267,15385043 +g1,22829:10614221,15385043 +g1,22829:10946175,15385043 +h1,22829:12937899,15385043:0,0,0 +k1,22829:32583029,15385043:19645130 +g1,22829:32583029,15385043 +) +(1,22829:6630773,16069898:25952256,398014,106246 +h1,22829:6630773,16069898:0,0,0 +g1,22829:7626635,16069898 +g1,22829:7958589,16069898 +g1,22829:8290543,16069898 +g1,22829:8622497,16069898 +g1,22829:8954451,16069898 +g1,22829:9286405,16069898 +g1,22829:9618359,16069898 +g1,22829:9950313,16069898 +g1,22829:10282267,16069898 +g1,22829:10614221,16069898 +g1,22829:10946175,16069898 +k1,22829:10946175,16069898:0 +h1,22829:11942037,16069898:0,0,0 +k1,22829:32583029,16069898:20640992 +g1,22829:32583029,16069898 +) +(1,22829:6630773,16754753:25952256,424439,79822 +h1,22829:6630773,16754753:0,0,0 +g1,22829:7626635,16754753 +g1,22829:7958589,16754753 +g1,22829:8290543,16754753 +g1,22829:8622497,16754753 +g1,22829:8954451,16754753 +g1,22829:9286405,16754753 +g1,22829:9618359,16754753 +g1,22829:9950313,16754753 +g1,22829:10282267,16754753 +g1,22829:10614221,16754753 +g1,22829:10946175,16754753 +g1,22829:11278129,16754753 +g1,22829:11610083,16754753 +h1,22829:13601807,16754753:0,0,0 +k1,22829:32583029,16754753:18981222 +g1,22829:32583029,16754753 +) +(1,22829:6630773,17439608:25952256,431045,79822 +h1,22829:6630773,17439608:0,0,0 +g1,22829:7626635,17439608 +g1,22829:7958589,17439608 +g1,22829:8290543,17439608 +g1,22829:8622497,17439608 +g1,22829:8954451,17439608 +g1,22829:9286405,17439608 +g1,22829:9618359,17439608 +g1,22829:9950313,17439608 +g1,22829:10282267,17439608 +g1,22829:10614221,17439608 +g1,22829:10946175,17439608 +g1,22829:11278129,17439608 +g1,22829:11610083,17439608 +g1,22829:12605945,17439608 +k1,22829:12605945,17439608:0 +h1,22829:14929623,17439608:0,0,0 +k1,22829:32583029,17439608:17653406 +g1,22829:32583029,17439608 +) +(1,22829:6630773,18124463:25952256,424439,79822 +h1,22829:6630773,18124463:0,0,0 +g1,22829:7626635,18124463 +g1,22829:7958589,18124463 +g1,22829:8290543,18124463 +g1,22829:8622497,18124463 +g1,22829:8954451,18124463 +g1,22829:9286405,18124463 +g1,22829:9618359,18124463 +g1,22829:9950313,18124463 +g1,22829:10282267,18124463 +g1,22829:10614221,18124463 +g1,22829:10946175,18124463 +g1,22829:11278129,18124463 +g1,22829:11610083,18124463 +g1,22829:11942037,18124463 +g1,22829:12273991,18124463 +h1,22829:14265715,18124463:0,0,0 +k1,22829:32583029,18124463:18317314 +g1,22829:32583029,18124463 +) +(1,22829:6630773,18809318:25952256,424439,79822 +h1,22829:6630773,18809318:0,0,0 +g1,22829:7626635,18809318 +g1,22829:7958589,18809318 +g1,22829:8290543,18809318 +g1,22829:8622497,18809318 +g1,22829:8954451,18809318 +g1,22829:9286405,18809318 +g1,22829:9618359,18809318 +g1,22829:9950313,18809318 +g1,22829:10282267,18809318 +g1,22829:10614221,18809318 +g1,22829:10946175,18809318 +g1,22829:11278129,18809318 +g1,22829:11610083,18809318 +h1,22829:13601807,18809318:0,0,0 +k1,22829:32583029,18809318:18981222 +g1,22829:32583029,18809318 +) +(1,22829:6630773,19494173:25952256,431045,79822 +h1,22829:6630773,19494173:0,0,0 +g1,22829:7626635,19494173 +g1,22829:7958589,19494173 +g1,22829:8290543,19494173 +g1,22829:8622497,19494173 +g1,22829:8954451,19494173 +g1,22829:9286405,19494173 +g1,22829:9618359,19494173 +g1,22829:9950313,19494173 +g1,22829:10282267,19494173 +g1,22829:10614221,19494173 +g1,22829:10946175,19494173 +g1,22829:11278129,19494173 +g1,22829:11610083,19494173 +g1,22829:12605945,19494173 +k1,22829:12605945,19494173:0 +h1,22829:14929623,19494173:0,0,0 +k1,22829:32583029,19494173:17653406 +g1,22829:32583029,19494173 +) +(1,22829:6630773,20179028:25952256,424439,79822 +h1,22829:6630773,20179028:0,0,0 +g1,22829:7626635,20179028 +g1,22829:7958589,20179028 +g1,22829:8290543,20179028 +g1,22829:8622497,20179028 +g1,22829:8954451,20179028 +g1,22829:9286405,20179028 +g1,22829:9618359,20179028 +g1,22829:9950313,20179028 +g1,22829:10282267,20179028 +g1,22829:10614221,20179028 +g1,22829:10946175,20179028 +g1,22829:11278129,20179028 +g1,22829:11610083,20179028 +g1,22829:11942037,20179028 +g1,22829:12273991,20179028 +h1,22829:14265715,20179028:0,0,0 +k1,22829:32583029,20179028:18317314 +g1,22829:32583029,20179028 +) +(1,22829:6630773,20863883:25952256,424439,79822 +h1,22829:6630773,20863883:0,0,0 +g1,22829:7626635,20863883 +g1,22829:7958589,20863883 +g1,22829:8290543,20863883 +g1,22829:8622497,20863883 +g1,22829:8954451,20863883 +g1,22829:9286405,20863883 +g1,22829:9618359,20863883 +g1,22829:9950313,20863883 +g1,22829:10282267,20863883 +g1,22829:10614221,20863883 +g1,22829:10946175,20863883 +g1,22829:11278129,20863883 +g1,22829:11610083,20863883 +h1,22829:13601807,20863883:0,0,0 +k1,22829:32583029,20863883:18981222 +g1,22829:32583029,20863883 +) +(1,22829:6630773,21548738:25952256,424439,79822 +h1,22829:6630773,21548738:0,0,0 +g1,22829:7626635,21548738 +g1,22829:7958589,21548738 +g1,22829:8290543,21548738 +g1,22829:8622497,21548738 +g1,22829:8954451,21548738 +g1,22829:9286405,21548738 +g1,22829:9618359,21548738 +g1,22829:9950313,21548738 +g1,22829:10282267,21548738 +g1,22829:10614221,21548738 +g1,22829:10946175,21548738 +h1,22829:12937899,21548738:0,0,0 +k1,22829:32583029,21548738:19645130 +g1,22829:32583029,21548738 +) +(1,22829:6630773,22233593:25952256,398014,106246 +h1,22829:6630773,22233593:0,0,0 +g1,22829:7626635,22233593 +g1,22829:7958589,22233593 +g1,22829:8290543,22233593 +g1,22829:8622497,22233593 +g1,22829:8954451,22233593 +g1,22829:9286405,22233593 +g1,22829:9618359,22233593 +g1,22829:9950313,22233593 +g1,22829:10282267,22233593 +g1,22829:10614221,22233593 +g1,22829:10946175,22233593 +k1,22829:10946175,22233593:0 +h1,22829:11942037,22233593:0,0,0 +k1,22829:32583029,22233593:20640992 +g1,22829:32583029,22233593 +) +(1,22829:6630773,22918448:25952256,424439,79822 +h1,22829:6630773,22918448:0,0,0 +g1,22829:7626635,22918448 +g1,22829:7958589,22918448 +g1,22829:8290543,22918448 +g1,22829:8622497,22918448 +g1,22829:8954451,22918448 +g1,22829:9286405,22918448 +g1,22829:9618359,22918448 +g1,22829:9950313,22918448 +g1,22829:10282267,22918448 +g1,22829:10614221,22918448 +g1,22829:10946175,22918448 +g1,22829:11278129,22918448 +g1,22829:11610083,22918448 +h1,22829:13601807,22918448:0,0,0 +k1,22829:32583029,22918448:18981222 +g1,22829:32583029,22918448 +) +(1,22829:6630773,23603303:25952256,424439,6605 +h1,22829:6630773,23603303:0,0,0 +g1,22829:7626635,23603303 +g1,22829:7958589,23603303 +g1,22829:8290543,23603303 +g1,22829:8622497,23603303 +g1,22829:8954451,23603303 +g1,22829:9286405,23603303 +g1,22829:9618359,23603303 +g1,22829:9950313,23603303 +g1,22829:10282267,23603303 +g1,22829:10614221,23603303 +g1,22829:10946175,23603303 +g1,22829:11278129,23603303 +g1,22829:11610083,23603303 +k1,22829:11610083,23603303:0 +h1,22829:13601807,23603303:0,0,0 +k1,22829:32583029,23603303:18981222 +g1,22829:32583029,23603303 +) +(1,22829:6630773,24288158:25952256,424439,79822 +h1,22829:6630773,24288158:0,0,0 +g1,22829:7626635,24288158 +g1,22829:7958589,24288158 +g1,22829:8290543,24288158 +g1,22829:8622497,24288158 +g1,22829:8954451,24288158 +g1,22829:9286405,24288158 +g1,22829:9618359,24288158 +g1,22829:9950313,24288158 +g1,22829:10282267,24288158 +g1,22829:10614221,24288158 +g1,22829:10946175,24288158 +g1,22829:11278129,24288158 +g1,22829:11610083,24288158 +g1,22829:11942037,24288158 +g1,22829:12273991,24288158 +h1,22829:14265715,24288158:0,0,0 +k1,22829:32583029,24288158:18317314 +g1,22829:32583029,24288158 +) +(1,22829:6630773,24973013:25952256,424439,79822 +h1,22829:6630773,24973013:0,0,0 +g1,22829:7626635,24973013 +g1,22829:7958589,24973013 +g1,22829:8290543,24973013 +g1,22829:8622497,24973013 +g1,22829:8954451,24973013 +g1,22829:9286405,24973013 +g1,22829:9618359,24973013 +g1,22829:9950313,24973013 +g1,22829:10282267,24973013 +g1,22829:10614221,24973013 +g1,22829:10946175,24973013 +g1,22829:11278129,24973013 +g1,22829:11610083,24973013 +h1,22829:13601807,24973013:0,0,0 +k1,22829:32583029,24973013:18981222 +g1,22829:32583029,24973013 +) +(1,22829:6630773,25657868:25952256,424439,6605 +h1,22829:6630773,25657868:0,0,0 +g1,22829:7626635,25657868 +g1,22829:7958589,25657868 +g1,22829:8290543,25657868 +g1,22829:8622497,25657868 +g1,22829:8954451,25657868 +g1,22829:9286405,25657868 +g1,22829:9618359,25657868 +g1,22829:9950313,25657868 +g1,22829:10282267,25657868 +g1,22829:10614221,25657868 +g1,22829:10946175,25657868 +g1,22829:11278129,25657868 +g1,22829:11610083,25657868 +k1,22829:11610083,25657868:0 +h1,22829:13601807,25657868:0,0,0 +k1,22829:32583029,25657868:18981222 +g1,22829:32583029,25657868 +) +(1,22829:6630773,26342723:25952256,424439,79822 +h1,22829:6630773,26342723:0,0,0 +g1,22829:7626635,26342723 +g1,22829:7958589,26342723 +g1,22829:8290543,26342723 +g1,22829:8622497,26342723 +g1,22829:8954451,26342723 +g1,22829:9286405,26342723 +g1,22829:9618359,26342723 +g1,22829:9950313,26342723 +g1,22829:10282267,26342723 +g1,22829:10614221,26342723 +g1,22829:10946175,26342723 +g1,22829:11278129,26342723 +g1,22829:11610083,26342723 +g1,22829:11942037,26342723 +g1,22829:12273991,26342723 +h1,22829:14265715,26342723:0,0,0 +k1,22829:32583029,26342723:18317314 +g1,22829:32583029,26342723 +) +(1,22829:6630773,27027578:25952256,424439,79822 +h1,22829:6630773,27027578:0,0,0 +g1,22829:7626635,27027578 +g1,22829:7958589,27027578 +g1,22829:8290543,27027578 +g1,22829:8622497,27027578 +g1,22829:8954451,27027578 +g1,22829:9286405,27027578 +g1,22829:9618359,27027578 +g1,22829:9950313,27027578 +g1,22829:10282267,27027578 +g1,22829:10614221,27027578 +g1,22829:10946175,27027578 +g1,22829:11278129,27027578 +g1,22829:11610083,27027578 +h1,22829:13601807,27027578:0,0,0 +k1,22829:32583029,27027578:18981222 +g1,22829:32583029,27027578 +) +(1,22829:6630773,27712433:25952256,424439,79822 +h1,22829:6630773,27712433:0,0,0 +g1,22829:7626635,27712433 +g1,22829:7958589,27712433 +g1,22829:8290543,27712433 +g1,22829:8622497,27712433 +g1,22829:8954451,27712433 +g1,22829:9286405,27712433 +g1,22829:9618359,27712433 +g1,22829:9950313,27712433 +g1,22829:10282267,27712433 +g1,22829:10614221,27712433 +g1,22829:10946175,27712433 +h1,22829:12937899,27712433:0,0,0 +k1,22829:32583029,27712433:19645130 +g1,22829:32583029,27712433 +) +(1,22829:6630773,28397288:25952256,424439,6605 +h1,22829:6630773,28397288:0,0,0 +g1,22829:7626635,28397288 +g1,22829:7958589,28397288 +g1,22829:8290543,28397288 +g1,22829:8622497,28397288 +g1,22829:8954451,28397288 +g1,22829:9286405,28397288 +g1,22829:9618359,28397288 +g1,22829:9950313,28397288 +g1,22829:10282267,28397288 +g1,22829:10614221,28397288 +g1,22829:10946175,28397288 +k1,22829:10946175,28397288:0 +h1,22829:14265714,28397288:0,0,0 +k1,22829:32583030,28397288:18317316 +g1,22829:32583030,28397288 +) +(1,22829:6630773,29082143:25952256,424439,79822 +h1,22829:6630773,29082143:0,0,0 +g1,22829:7626635,29082143 +g1,22829:7958589,29082143 +g1,22829:8290543,29082143 +g1,22829:8622497,29082143 +g1,22829:8954451,29082143 +g1,22829:9286405,29082143 +g1,22829:9618359,29082143 +g1,22829:9950313,29082143 +g1,22829:10282267,29082143 +g1,22829:10614221,29082143 +g1,22829:10946175,29082143 +g1,22829:11278129,29082143 +g1,22829:11610083,29082143 +h1,22829:13601807,29082143:0,0,0 +k1,22829:32583029,29082143:18981222 +g1,22829:32583029,29082143 +) +(1,22829:6630773,29766998:25952256,424439,8257 +h1,22829:6630773,29766998:0,0,0 +g1,22829:7626635,29766998 +g1,22829:7958589,29766998 +g1,22829:8290543,29766998 +g1,22829:8622497,29766998 +g1,22829:8954451,29766998 +g1,22829:9286405,29766998 +g1,22829:9618359,29766998 +g1,22829:9950313,29766998 +g1,22829:10282267,29766998 +g1,22829:10614221,29766998 +g1,22829:10946175,29766998 +g1,22829:11278129,29766998 +g1,22829:11610083,29766998 +g1,22829:14597668,29766998 +k1,22829:14597668,29766998:0 +h1,22829:21900655,29766998:0,0,0 +k1,22829:32583029,29766998:10682374 +g1,22829:32583029,29766998 +) +(1,22829:6630773,30451853:25952256,424439,106246 +h1,22829:6630773,30451853:0,0,0 +g1,22829:7626635,30451853 +g1,22829:7958589,30451853 +g1,22829:8290543,30451853 +g1,22829:8622497,30451853 +g1,22829:8954451,30451853 +g1,22829:9286405,30451853 +g1,22829:9618359,30451853 +g1,22829:9950313,30451853 +g1,22829:10282267,30451853 +g1,22829:10614221,30451853 +g1,22829:10946175,30451853 +g1,22829:11278129,30451853 +g1,22829:11610083,30451853 +g1,22829:11942037,30451853 +g1,22829:12273991,30451853 +k1,22829:12273991,30451853:0 +h1,22829:23228471,30451853:0,0,0 +k1,22829:32583029,30451853:9354558 +g1,22829:32583029,30451853 +) +(1,22829:6630773,31136708:25952256,424439,8257 +h1,22829:6630773,31136708:0,0,0 +g1,22829:7626635,31136708 +g1,22829:7958589,31136708 +g1,22829:8290543,31136708 +g1,22829:8622497,31136708 +g1,22829:8954451,31136708 +g1,22829:9286405,31136708 +g1,22829:9618359,31136708 +g1,22829:9950313,31136708 +g1,22829:10282267,31136708 +g1,22829:10614221,31136708 +g1,22829:10946175,31136708 +g1,22829:11278129,31136708 +g1,22829:11610083,31136708 +g1,22829:11942037,31136708 +g1,22829:12273991,31136708 +g1,22829:12605945,31136708 +g1,22829:12937899,31136708 +k1,22829:12937899,31136708:0 +h1,22829:19245024,31136708:0,0,0 +k1,22829:32583029,31136708:13338005 +g1,22829:32583029,31136708 +) +(1,22829:6630773,31821563:25952256,424439,106246 +h1,22829:6630773,31821563:0,0,0 +g1,22829:7626635,31821563 +g1,22829:7958589,31821563 +g1,22829:8290543,31821563 +g1,22829:8622497,31821563 +g1,22829:8954451,31821563 +g1,22829:9286405,31821563 +g1,22829:9618359,31821563 +g1,22829:9950313,31821563 +g1,22829:10282267,31821563 +g1,22829:10614221,31821563 +g1,22829:10946175,31821563 +g1,22829:11278129,31821563 +g1,22829:11610083,31821563 +g1,22829:11942037,31821563 +g1,22829:12273991,31821563 +g1,22829:12605945,31821563 +g1,22829:12937899,31821563 +g1,22829:13269853,31821563 +g1,22829:13601807,31821563 +k1,22829:13601807,31821563:0 +h1,22829:17585254,31821563:0,0,0 +k1,22829:32583029,31821563:14997775 +g1,22829:32583029,31821563 +) +(1,22829:6630773,32506418:25952256,431045,86428 +h1,22829:6630773,32506418:0,0,0 +g1,22829:7626635,32506418 +g1,22829:7958589,32506418 +g1,22829:8290543,32506418 +g1,22829:8622497,32506418 +g1,22829:8954451,32506418 +g1,22829:9286405,32506418 +g1,22829:9618359,32506418 +g1,22829:9950313,32506418 +g1,22829:10282267,32506418 +g1,22829:10614221,32506418 +g1,22829:10946175,32506418 +g1,22829:11278129,32506418 +g1,22829:11610083,32506418 +g1,22829:11942037,32506418 +g1,22829:12273991,32506418 +g1,22829:12605945,32506418 +g1,22829:12937899,32506418 +g1,22829:13269853,32506418 +g1,22829:13601807,32506418 +g1,22829:13933761,32506418 +g1,22829:14265715,32506418 +g1,22829:15261577,32506418 +g1,22829:17585255,32506418 +g1,22829:21900657,32506418 +k1,22829:21900657,32506418:0 +h1,22829:25220196,32506418:0,0,0 +k1,22829:32583029,32506418:7362833 +g1,22829:32583029,32506418 +) +(1,22829:6630773,33191273:25952256,424439,79822 +h1,22829:6630773,33191273:0,0,0 +g1,22829:7626635,33191273 +g1,22829:7958589,33191273 +g1,22829:8290543,33191273 +g1,22829:8622497,33191273 +g1,22829:8954451,33191273 +g1,22829:9286405,33191273 +g1,22829:9618359,33191273 +g1,22829:9950313,33191273 +g1,22829:10282267,33191273 +g1,22829:10614221,33191273 +g1,22829:10946175,33191273 +g1,22829:11278129,33191273 +g1,22829:11610083,33191273 +g1,22829:11942037,33191273 +g1,22829:12273991,33191273 +g1,22829:12605945,33191273 +g1,22829:12937899,33191273 +g1,22829:13269853,33191273 +g1,22829:13601807,33191273 +g1,22829:13933761,33191273 +g1,22829:14265715,33191273 +h1,22829:16257439,33191273:0,0,0 +k1,22829:32583029,33191273:16325590 +g1,22829:32583029,33191273 +) +(1,22829:6630773,33876128:25952256,398014,106246 +h1,22829:6630773,33876128:0,0,0 +g1,22829:7626635,33876128 +g1,22829:7958589,33876128 +g1,22829:8290543,33876128 +g1,22829:8622497,33876128 +g1,22829:8954451,33876128 +g1,22829:9286405,33876128 +g1,22829:9618359,33876128 +g1,22829:9950313,33876128 +g1,22829:10282267,33876128 +g1,22829:10614221,33876128 +g1,22829:10946175,33876128 +g1,22829:11278129,33876128 +g1,22829:11610083,33876128 +g1,22829:11942037,33876128 +g1,22829:12273991,33876128 +g1,22829:12605945,33876128 +g1,22829:12937899,33876128 +g1,22829:13269853,33876128 +g1,22829:13601807,33876128 +g1,22829:13933761,33876128 +g1,22829:14265715,33876128 +k1,22829:14265715,33876128:0 +h1,22829:17253300,33876128:0,0,0 +k1,22829:32583029,33876128:15329729 +g1,22829:32583029,33876128 +) +(1,22829:6630773,34560983:25952256,424439,79822 +h1,22829:6630773,34560983:0,0,0 +g1,22829:7626635,34560983 +g1,22829:7958589,34560983 +g1,22829:8290543,34560983 +g1,22829:8622497,34560983 +g1,22829:8954451,34560983 +g1,22829:9286405,34560983 +g1,22829:9618359,34560983 +g1,22829:9950313,34560983 +g1,22829:10282267,34560983 +g1,22829:10614221,34560983 +g1,22829:10946175,34560983 +g1,22829:11278129,34560983 +g1,22829:11610083,34560983 +g1,22829:11942037,34560983 +g1,22829:12273991,34560983 +g1,22829:12605945,34560983 +g1,22829:12937899,34560983 +g1,22829:13269853,34560983 +g1,22829:13601807,34560983 +g1,22829:13933761,34560983 +g1,22829:14265715,34560983 +g1,22829:14597669,34560983 +g1,22829:14929623,34560983 +h1,22829:16921347,34560983:0,0,0 +k1,22829:32583029,34560983:15661682 +g1,22829:32583029,34560983 +) +(1,22829:6630773,35245838:25952256,424439,79822 +h1,22829:6630773,35245838:0,0,0 +g1,22829:7626635,35245838 +g1,22829:7958589,35245838 +g1,22829:8290543,35245838 +g1,22829:8622497,35245838 +g1,22829:8954451,35245838 +g1,22829:9286405,35245838 +g1,22829:9618359,35245838 +g1,22829:9950313,35245838 +g1,22829:10282267,35245838 +g1,22829:10614221,35245838 +g1,22829:10946175,35245838 +g1,22829:11278129,35245838 +g1,22829:11610083,35245838 +g1,22829:11942037,35245838 +g1,22829:12273991,35245838 +g1,22829:12605945,35245838 +g1,22829:12937899,35245838 +g1,22829:13269853,35245838 +g1,22829:13601807,35245838 +g1,22829:13933761,35245838 +g1,22829:14265715,35245838 +h1,22829:16257439,35245838:0,0,0 +k1,22829:32583029,35245838:16325590 +g1,22829:32583029,35245838 +) +(1,22829:6630773,35930693:25952256,431045,106246 +h1,22829:6630773,35930693:0,0,0 +g1,22829:7626635,35930693 +g1,22829:7958589,35930693 +g1,22829:8290543,35930693 +g1,22829:8622497,35930693 +g1,22829:8954451,35930693 +g1,22829:9286405,35930693 +g1,22829:9618359,35930693 +g1,22829:9950313,35930693 +g1,22829:10282267,35930693 +g1,22829:10614221,35930693 +g1,22829:10946175,35930693 +g1,22829:11278129,35930693 +g1,22829:11610083,35930693 +g1,22829:11942037,35930693 +g1,22829:12273991,35930693 +g1,22829:12605945,35930693 +g1,22829:12937899,35930693 +g1,22829:13269853,35930693 +g1,22829:13601807,35930693 +g1,22829:13933761,35930693 +g1,22829:14265715,35930693 +k1,22829:14265715,35930693:0 +h1,22829:17253300,35930693:0,0,0 +k1,22829:32583029,35930693:15329729 +g1,22829:32583029,35930693 +) +(1,22829:6630773,36615548:25952256,424439,79822 +h1,22829:6630773,36615548:0,0,0 +g1,22829:7626635,36615548 +g1,22829:7958589,36615548 +g1,22829:8290543,36615548 +g1,22829:8622497,36615548 +g1,22829:8954451,36615548 +g1,22829:9286405,36615548 +g1,22829:9618359,36615548 +g1,22829:9950313,36615548 +g1,22829:10282267,36615548 +g1,22829:10614221,36615548 +g1,22829:10946175,36615548 +g1,22829:11278129,36615548 +g1,22829:11610083,36615548 +g1,22829:11942037,36615548 +g1,22829:12273991,36615548 +g1,22829:12605945,36615548 +g1,22829:12937899,36615548 +g1,22829:13269853,36615548 +g1,22829:13601807,36615548 +g1,22829:13933761,36615548 +g1,22829:14265715,36615548 +g1,22829:14597669,36615548 +g1,22829:14929623,36615548 +h1,22829:16921347,36615548:0,0,0 +k1,22829:32583029,36615548:15661682 +g1,22829:32583029,36615548 +) +(1,22829:6630773,37300403:25952256,424439,79822 +h1,22829:6630773,37300403:0,0,0 +g1,22829:7626635,37300403 +g1,22829:7958589,37300403 +g1,22829:8290543,37300403 +g1,22829:8622497,37300403 +g1,22829:8954451,37300403 +g1,22829:9286405,37300403 +g1,22829:9618359,37300403 +g1,22829:9950313,37300403 +g1,22829:10282267,37300403 +g1,22829:10614221,37300403 +g1,22829:10946175,37300403 +g1,22829:11278129,37300403 +g1,22829:11610083,37300403 +g1,22829:11942037,37300403 +g1,22829:12273991,37300403 +g1,22829:12605945,37300403 +g1,22829:12937899,37300403 +g1,22829:13269853,37300403 +g1,22829:13601807,37300403 +g1,22829:13933761,37300403 +g1,22829:14265715,37300403 +h1,22829:16257439,37300403:0,0,0 +k1,22829:32583029,37300403:16325590 +g1,22829:32583029,37300403 +) +(1,22829:6630773,37985258:25952256,398014,106246 +h1,22829:6630773,37985258:0,0,0 +g1,22829:7626635,37985258 +g1,22829:7958589,37985258 +g1,22829:8290543,37985258 +g1,22829:8622497,37985258 +g1,22829:8954451,37985258 +g1,22829:9286405,37985258 +g1,22829:9618359,37985258 +g1,22829:9950313,37985258 +g1,22829:10282267,37985258 +g1,22829:10614221,37985258 +g1,22829:10946175,37985258 +g1,22829:11278129,37985258 +g1,22829:11610083,37985258 +g1,22829:11942037,37985258 +g1,22829:12273991,37985258 +g1,22829:12605945,37985258 +g1,22829:12937899,37985258 +g1,22829:13269853,37985258 +g1,22829:13601807,37985258 +g1,22829:13933761,37985258 +g1,22829:14265715,37985258 +k1,22829:14265715,37985258:0 +h1,22829:17253300,37985258:0,0,0 +k1,22829:32583029,37985258:15329729 +g1,22829:32583029,37985258 +) +(1,22829:6630773,38670113:25952256,424439,79822 +h1,22829:6630773,38670113:0,0,0 +g1,22829:7626635,38670113 +g1,22829:7958589,38670113 +g1,22829:8290543,38670113 +g1,22829:8622497,38670113 +g1,22829:8954451,38670113 +g1,22829:9286405,38670113 +g1,22829:9618359,38670113 +g1,22829:9950313,38670113 +g1,22829:10282267,38670113 +g1,22829:10614221,38670113 +g1,22829:10946175,38670113 +g1,22829:11278129,38670113 +g1,22829:11610083,38670113 +g1,22829:11942037,38670113 +g1,22829:12273991,38670113 +g1,22829:12605945,38670113 +g1,22829:12937899,38670113 +g1,22829:13269853,38670113 +g1,22829:13601807,38670113 +g1,22829:13933761,38670113 +g1,22829:14265715,38670113 +g1,22829:14597669,38670113 +g1,22829:14929623,38670113 +h1,22829:16921347,38670113:0,0,0 +k1,22829:32583029,38670113:15661682 +g1,22829:32583029,38670113 +) +(1,22829:6630773,39354968:25952256,424439,79822 +h1,22829:6630773,39354968:0,0,0 +g1,22829:7626635,39354968 +g1,22829:7958589,39354968 +g1,22829:8290543,39354968 +g1,22829:8622497,39354968 +g1,22829:8954451,39354968 +g1,22829:9286405,39354968 +g1,22829:9618359,39354968 +g1,22829:9950313,39354968 +g1,22829:10282267,39354968 +g1,22829:10614221,39354968 +g1,22829:10946175,39354968 +g1,22829:11278129,39354968 +g1,22829:11610083,39354968 +g1,22829:11942037,39354968 +g1,22829:12273991,39354968 +g1,22829:12605945,39354968 +g1,22829:12937899,39354968 +g1,22829:13269853,39354968 +g1,22829:13601807,39354968 +g1,22829:13933761,39354968 +g1,22829:14265715,39354968 +h1,22829:16257439,39354968:0,0,0 +k1,22829:32583029,39354968:16325590 +g1,22829:32583029,39354968 +) +(1,22829:6630773,40039823:25952256,424439,79822 +h1,22829:6630773,40039823:0,0,0 +g1,22829:7626635,40039823 +g1,22829:7958589,40039823 +g1,22829:8290543,40039823 +g1,22829:8622497,40039823 +g1,22829:8954451,40039823 +g1,22829:9286405,40039823 +g1,22829:9618359,40039823 +g1,22829:9950313,40039823 +g1,22829:10282267,40039823 +g1,22829:10614221,40039823 +g1,22829:10946175,40039823 +g1,22829:11278129,40039823 +g1,22829:11610083,40039823 +g1,22829:11942037,40039823 +g1,22829:12273991,40039823 +g1,22829:12605945,40039823 +g1,22829:12937899,40039823 +g1,22829:13269853,40039823 +g1,22829:13601807,40039823 +h1,22829:15593531,40039823:0,0,0 +k1,22829:32583029,40039823:16989498 +g1,22829:32583029,40039823 +) +(1,22829:6630773,40724678:25952256,424439,106246 +h1,22829:6630773,40724678:0,0,0 +g1,22829:7626635,40724678 +g1,22829:7958589,40724678 +g1,22829:8290543,40724678 +g1,22829:8622497,40724678 +g1,22829:8954451,40724678 +g1,22829:9286405,40724678 +g1,22829:9618359,40724678 +g1,22829:9950313,40724678 +g1,22829:10282267,40724678 +g1,22829:10614221,40724678 +g1,22829:10946175,40724678 +g1,22829:11278129,40724678 +g1,22829:11610083,40724678 +g1,22829:11942037,40724678 +g1,22829:12273991,40724678 +g1,22829:12605945,40724678 +g1,22829:12937899,40724678 +g1,22829:13269853,40724678 +g1,22829:13601807,40724678 +k1,22829:13601807,40724678:0 +h1,22829:17585254,40724678:0,0,0 +k1,22829:32583029,40724678:14997775 +g1,22829:32583029,40724678 +) +(1,22829:6630773,41409533:25952256,431045,86428 +h1,22829:6630773,41409533:0,0,0 +g1,22829:7626635,41409533 +g1,22829:7958589,41409533 +g1,22829:8290543,41409533 +g1,22829:8622497,41409533 +g1,22829:8954451,41409533 +g1,22829:9286405,41409533 +g1,22829:9618359,41409533 +g1,22829:9950313,41409533 +g1,22829:10282267,41409533 +g1,22829:10614221,41409533 +g1,22829:10946175,41409533 +g1,22829:11278129,41409533 +g1,22829:11610083,41409533 +g1,22829:11942037,41409533 +g1,22829:12273991,41409533 +g1,22829:12605945,41409533 +g1,22829:12937899,41409533 +g1,22829:13269853,41409533 +g1,22829:13601807,41409533 +g1,22829:13933761,41409533 +g1,22829:14265715,41409533 +g1,22829:15261577,41409533 +g1,22829:17585255,41409533 +g1,22829:21900657,41409533 +k1,22829:21900657,41409533:0 +h1,22829:25220196,41409533:0,0,0 +k1,22829:32583029,41409533:7362833 +g1,22829:32583029,41409533 +) +(1,22829:6630773,42094388:25952256,431045,106246 +h1,22829:6630773,42094388:0,0,0 +g1,22829:7626635,42094388 +g1,22829:7958589,42094388 +g1,22829:8290543,42094388 +g1,22829:8622497,42094388 +g1,22829:8954451,42094388 +g1,22829:9286405,42094388 +g1,22829:9618359,42094388 +g1,22829:9950313,42094388 +g1,22829:10282267,42094388 +g1,22829:10614221,42094388 +g1,22829:10946175,42094388 +g1,22829:11278129,42094388 +g1,22829:11610083,42094388 +g1,22829:11942037,42094388 +g1,22829:12273991,42094388 +g1,22829:12605945,42094388 +g1,22829:12937899,42094388 +g1,22829:13269853,42094388 +g1,22829:13601807,42094388 +g1,22829:13933761,42094388 +g1,22829:14265715,42094388 +k1,22829:14265715,42094388:0 +h1,22829:17253300,42094388:0,0,0 +k1,22829:32583029,42094388:15329729 +g1,22829:32583029,42094388 +) +(1,22829:6630773,42779243:25952256,424439,79822 +h1,22829:6630773,42779243:0,0,0 +g1,22829:7626635,42779243 +g1,22829:7958589,42779243 +g1,22829:8290543,42779243 +g1,22829:8622497,42779243 +g1,22829:8954451,42779243 +g1,22829:9286405,42779243 +g1,22829:9618359,42779243 +g1,22829:9950313,42779243 +g1,22829:10282267,42779243 +g1,22829:10614221,42779243 +g1,22829:10946175,42779243 +g1,22829:11278129,42779243 +g1,22829:11610083,42779243 +g1,22829:11942037,42779243 +g1,22829:12273991,42779243 +g1,22829:12605945,42779243 +g1,22829:12937899,42779243 +g1,22829:13269853,42779243 +g1,22829:13601807,42779243 +g1,22829:13933761,42779243 +g1,22829:14265715,42779243 +g1,22829:14597669,42779243 +g1,22829:14929623,42779243 +h1,22829:16921347,42779243:0,0,0 +k1,22829:32583029,42779243:15661682 +g1,22829:32583029,42779243 +) +(1,22829:6630773,43464098:25952256,424439,79822 +h1,22829:6630773,43464098:0,0,0 +g1,22829:7626635,43464098 +g1,22829:7958589,43464098 +g1,22829:8290543,43464098 +g1,22829:8622497,43464098 +g1,22829:8954451,43464098 +g1,22829:9286405,43464098 +g1,22829:9618359,43464098 +g1,22829:9950313,43464098 +g1,22829:10282267,43464098 +g1,22829:10614221,43464098 +g1,22829:10946175,43464098 +g1,22829:11278129,43464098 +g1,22829:11610083,43464098 +g1,22829:11942037,43464098 +g1,22829:12273991,43464098 +g1,22829:12605945,43464098 +g1,22829:12937899,43464098 +g1,22829:13269853,43464098 +g1,22829:13601807,43464098 +g1,22829:13933761,43464098 +g1,22829:14265715,43464098 +h1,22829:16257439,43464098:0,0,0 +k1,22829:32583029,43464098:16325590 +g1,22829:32583029,43464098 +) +(1,22829:6630773,44148953:25952256,431045,106246 +h1,22829:6630773,44148953:0,0,0 +g1,22829:7626635,44148953 +g1,22829:7958589,44148953 +g1,22829:8290543,44148953 +g1,22829:8622497,44148953 +g1,22829:8954451,44148953 +g1,22829:9286405,44148953 +g1,22829:9618359,44148953 +g1,22829:9950313,44148953 +g1,22829:10282267,44148953 +g1,22829:10614221,44148953 +g1,22829:10946175,44148953 +g1,22829:11278129,44148953 +g1,22829:11610083,44148953 +g1,22829:11942037,44148953 +g1,22829:12273991,44148953 +g1,22829:12605945,44148953 +g1,22829:12937899,44148953 +g1,22829:13269853,44148953 +g1,22829:13601807,44148953 +g1,22829:13933761,44148953 +g1,22829:14265715,44148953 +k1,22829:14265715,44148953:0 +h1,22829:17253300,44148953:0,0,0 +k1,22829:32583029,44148953:15329729 +g1,22829:32583029,44148953 +) +(1,22829:6630773,44833808:25952256,424439,79822 +h1,22829:6630773,44833808:0,0,0 +g1,22829:7626635,44833808 +g1,22829:7958589,44833808 +g1,22829:8290543,44833808 +g1,22829:8622497,44833808 +g1,22829:8954451,44833808 +g1,22829:9286405,44833808 +g1,22829:9618359,44833808 +g1,22829:9950313,44833808 +g1,22829:10282267,44833808 +g1,22829:10614221,44833808 +g1,22829:10946175,44833808 +g1,22829:11278129,44833808 +g1,22829:11610083,44833808 +g1,22829:11942037,44833808 +g1,22829:12273991,44833808 +g1,22829:12605945,44833808 +g1,22829:12937899,44833808 +g1,22829:13269853,44833808 +g1,22829:13601807,44833808 +g1,22829:13933761,44833808 +g1,22829:14265715,44833808 +g1,22829:14597669,44833808 +g1,22829:14929623,44833808 +h1,22829:16921347,44833808:0,0,0 +k1,22829:32583029,44833808:15661682 +g1,22829:32583029,44833808 +) +] +) +g1,22830:32583029,45510161 +g1,22830:6630773,45510161 +g1,22830:6630773,45510161 +g1,22830:32583029,45510161 +g1,22830:32583029,45510161 +) +] +(1,22830:32583029,45706769:0,0,0 +g1,22830:32583029,45706769 +) +) +] +(1,22830:6630773,47279633:25952256,0,0 +h1,22830:6630773,47279633:25952256,0,0 +) +] +(1,22830:4262630,4025873:0,0,0 +[1,22830:-473656,4025873:0,0,0 +(1,22830:-473656,-710413:0,0,0 +(1,22830:-473656,-710413:0,0,0 +g1,22830:-473656,-710413 +) +g1,22830:-473656,-710413 +) +] +) +] +!38925 +}392 +Input:3693:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3694:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3695:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3696:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3697:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3698:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!576 +{393 +[1,22852:4262630,47279633:28320399,43253760,0 +(1,22852:4262630,4025873:0,0,0 +[1,22852:-473656,4025873:0,0,0 +(1,22852:-473656,-710413:0,0,0 +(1,22852:-473656,-644877:0,0,0 +k1,22852:-473656,-644877:-65536 ) -(1,22636:-473656,4736287:0,0,0 -k1,22636:-473656,4736287:5209943 +(1,22852:-473656,4736287:0,0,0 +k1,22852:-473656,4736287:5209943 ) -g1,22636:-473656,-710413 +g1,22852:-473656,-710413 ) ] ) -[1,22636:6630773,47279633:25952256,43253760,0 -[1,22636:6630773,4812305:25952256,786432,0 -(1,22636:6630773,4812305:25952256,513147,126483 -(1,22636:6630773,4812305:25952256,513147,126483 -g1,22636:3078558,4812305 -[1,22636:3078558,4812305:0,0,0 -(1,22636:3078558,2439708:0,1703936,0 -k1,22636:1358238,2439708:-1720320 -(1,21457:1358238,2439708:1720320,1703936,0 -(1,21457:1358238,2439708:1179648,16384,0 -r1,22636:2537886,2439708:1179648,16384,0 +[1,22852:6630773,47279633:25952256,43253760,0 +[1,22852:6630773,4812305:25952256,786432,0 +(1,22852:6630773,4812305:25952256,505283,134348 +(1,22852:6630773,4812305:25952256,505283,134348 +g1,22852:3078558,4812305 +[1,22852:3078558,4812305:0,0,0 +(1,22852:3078558,2439708:0,1703936,0 +k1,22852:1358238,2439708:-1720320 +(1,21670:1358238,2439708:1720320,1703936,0 +(1,21670:1358238,2439708:1179648,16384,0 +r1,22852:2537886,2439708:1179648,16384,0 ) -g1,21457:3062174,2439708 -(1,21457:3062174,2439708:16384,1703936,0 -[1,21457:3062174,2439708:25952256,1703936,0 -(1,21457:3062174,1915420:25952256,1179648,0 -(1,21457:3062174,1915420:16384,1179648,0 -r1,22636:3078558,1915420:16384,1179648,0 +g1,21670:3062174,2439708 +(1,21670:3062174,2439708:16384,1703936,0 +[1,21670:3062174,2439708:25952256,1703936,0 +(1,21670:3062174,1915420:25952256,1179648,0 +(1,21670:3062174,1915420:16384,1179648,0 +r1,22852:3078558,1915420:16384,1179648,0 ) -k1,21457:29014430,1915420:25935872 -g1,21457:29014430,1915420 +k1,21670:29014430,1915420:25935872 +g1,21670:29014430,1915420 ) ] ) ) ) ] -[1,22636:3078558,4812305:0,0,0 -(1,22636:3078558,2439708:0,1703936,0 -g1,22636:29030814,2439708 -g1,22636:36135244,2439708 -(1,21457:36135244,2439708:1720320,1703936,0 -(1,21457:36135244,2439708:16384,1703936,0 -[1,21457:36135244,2439708:25952256,1703936,0 -(1,21457:36135244,1915420:25952256,1179648,0 -(1,21457:36135244,1915420:16384,1179648,0 -r1,22636:36151628,1915420:16384,1179648,0 +[1,22852:3078558,4812305:0,0,0 +(1,22852:3078558,2439708:0,1703936,0 +g1,22852:29030814,2439708 +g1,22852:36135244,2439708 +(1,21670:36135244,2439708:1720320,1703936,0 +(1,21670:36135244,2439708:16384,1703936,0 +[1,21670:36135244,2439708:25952256,1703936,0 +(1,21670:36135244,1915420:25952256,1179648,0 +(1,21670:36135244,1915420:16384,1179648,0 +r1,22852:36151628,1915420:16384,1179648,0 ) -k1,21457:62087500,1915420:25935872 -g1,21457:62087500,1915420 +k1,21670:62087500,1915420:25935872 +g1,21670:62087500,1915420 ) ] ) -g1,21457:36675916,2439708 -(1,21457:36675916,2439708:1179648,16384,0 -r1,22636:37855564,2439708:1179648,16384,0 +g1,21670:36675916,2439708 +(1,21670:36675916,2439708:1179648,16384,0 +r1,22852:37855564,2439708:1179648,16384,0 ) ) -k1,22636:3078556,2439708:-34777008 +k1,22852:3078556,2439708:-34777008 ) ] -[1,22636:3078558,4812305:0,0,0 -(1,22636:3078558,49800853:0,16384,2228224 -k1,22636:1358238,49800853:-1720320 -(1,21457:1358238,49800853:1720320,16384,2228224 -(1,21457:1358238,49800853:1179648,16384,0 -r1,22636:2537886,49800853:1179648,16384,0 -) -g1,21457:3062174,49800853 -(1,21457:3062174,52029077:16384,1703936,0 -[1,21457:3062174,52029077:25952256,1703936,0 -(1,21457:3062174,51504789:25952256,1179648,0 -(1,21457:3062174,51504789:16384,1179648,0 -r1,22636:3078558,51504789:16384,1179648,0 -) -k1,21457:29014430,51504789:25935872 -g1,21457:29014430,51504789 -) -] -) -) -) -] -[1,22636:3078558,4812305:0,0,0 -(1,22636:3078558,49800853:0,16384,2228224 -g1,22636:29030814,49800853 -g1,22636:36135244,49800853 -(1,21457:36135244,49800853:1720320,16384,2228224 -(1,21457:36135244,52029077:16384,1703936,0 -[1,21457:36135244,52029077:25952256,1703936,0 -(1,21457:36135244,51504789:25952256,1179648,0 -(1,21457:36135244,51504789:16384,1179648,0 -r1,22636:36151628,51504789:16384,1179648,0 -) -k1,21457:62087500,51504789:25935872 -g1,21457:62087500,51504789 -) -] -) -g1,21457:36675916,49800853 -(1,21457:36675916,49800853:1179648,16384,0 -r1,22636:37855564,49800853:1179648,16384,0 -) -) -k1,22636:3078556,49800853:-34777008 -) -] -g1,22636:6630773,4812305 -g1,22636:6630773,4812305 -g1,22636:8180699,4812305 -g1,22636:9590378,4812305 -g1,22636:11674422,4812305 -g1,22636:13105728,4812305 -k1,22636:31387652,4812305:18281924 -) -) -] -[1,22636:6630773,45706769:25952256,40108032,0 -(1,22636:6630773,45706769:25952256,40108032,0 -(1,22636:6630773,45706769:0,0,0 -g1,22636:6630773,45706769 -) -[1,22636:6630773,45706769:25952256,40108032,0 -v1,22617:6630773,6254097:0,393216,0 -(1,22617:6630773,39186750:25952256,33325869,196608 -g1,22617:6630773,39186750 -g1,22617:6630773,39186750 -g1,22617:6434165,39186750 -(1,22617:6434165,39186750:0,33325869,196608 -r1,22636:32779637,39186750:26345472,33522477,196608 -k1,22617:6434165,39186750:-26345472 -) -(1,22617:6434165,39186750:26345472,33325869,196608 -[1,22617:6630773,39186750:25952256,33129261,0 -(1,22616:6630773,6468007:25952256,410518,101187 -h1,22616:6630773,6468007:0,0,0 -g1,22616:7579210,6468007 -g1,22616:7895356,6468007 -g1,22616:8211502,6468007 -g1,22616:8527648,6468007 -g1,22616:8843794,6468007 -g1,22616:9159940,6468007 -g1,22616:9476086,6468007 -g1,22616:9792232,6468007 -g1,22616:10108378,6468007 -g1,22616:10424524,6468007 -g1,22616:10740670,6468007 -g1,22616:11056816,6468007 -g1,22616:11372962,6468007 -g1,22616:11689108,6468007 -g1,22616:12005254,6468007 -g1,22616:12321400,6468007 -g1,22616:12637546,6468007 -g1,22616:12953692,6468007 -g1,22616:13269838,6468007 -g1,22616:13585984,6468007 -g1,22616:13902130,6468007 -k1,22616:13902130,6468007:0 -h1,22616:16747441,6468007:0,0,0 -k1,22616:32583029,6468007:15835588 -g1,22616:32583029,6468007 -) -(1,22616:6630773,7134185:25952256,404226,76021 -h1,22616:6630773,7134185:0,0,0 -g1,22616:7579210,7134185 -g1,22616:7895356,7134185 -g1,22616:8211502,7134185 -g1,22616:8527648,7134185 -g1,22616:8843794,7134185 -g1,22616:9159940,7134185 -g1,22616:9476086,7134185 -g1,22616:9792232,7134185 -g1,22616:10108378,7134185 -g1,22616:10424524,7134185 -g1,22616:10740670,7134185 -g1,22616:11056816,7134185 -g1,22616:11372962,7134185 -g1,22616:11689108,7134185 -g1,22616:12005254,7134185 -g1,22616:12321400,7134185 -g1,22616:12637546,7134185 -g1,22616:12953692,7134185 -g1,22616:13269838,7134185 -g1,22616:13585984,7134185 -g1,22616:13902130,7134185 -g1,22616:14218276,7134185 -g1,22616:14534422,7134185 -h1,22616:16431296,7134185:0,0,0 -k1,22616:32583029,7134185:16151733 -g1,22616:32583029,7134185 -) -(1,22616:6630773,7800363:25952256,404226,76021 -h1,22616:6630773,7800363:0,0,0 -g1,22616:7579210,7800363 -g1,22616:7895356,7800363 -g1,22616:8211502,7800363 -g1,22616:8527648,7800363 -g1,22616:8843794,7800363 -g1,22616:9159940,7800363 -g1,22616:9476086,7800363 -g1,22616:9792232,7800363 -g1,22616:10108378,7800363 -g1,22616:10424524,7800363 -g1,22616:10740670,7800363 -g1,22616:11056816,7800363 -g1,22616:11372962,7800363 -g1,22616:11689108,7800363 -g1,22616:12005254,7800363 -g1,22616:12321400,7800363 -g1,22616:12637546,7800363 -g1,22616:12953692,7800363 -g1,22616:13269838,7800363 -g1,22616:13585984,7800363 -g1,22616:13902130,7800363 -h1,22616:15799004,7800363:0,0,0 -k1,22616:32583028,7800363:16784024 -g1,22616:32583028,7800363 -) -(1,22616:6630773,8466541:25952256,404226,76021 -h1,22616:6630773,8466541:0,0,0 -g1,22616:7579210,8466541 -g1,22616:7895356,8466541 -g1,22616:8211502,8466541 -g1,22616:8527648,8466541 -g1,22616:8843794,8466541 -g1,22616:9159940,8466541 -g1,22616:9476086,8466541 -g1,22616:9792232,8466541 -g1,22616:10108378,8466541 -g1,22616:10424524,8466541 -g1,22616:10740670,8466541 -g1,22616:11056816,8466541 -g1,22616:11372962,8466541 -g1,22616:11689108,8466541 -g1,22616:12005254,8466541 -g1,22616:12321400,8466541 -g1,22616:12637546,8466541 -g1,22616:12953692,8466541 -g1,22616:13269838,8466541 -h1,22616:15166712,8466541:0,0,0 -k1,22616:32583028,8466541:17416316 -g1,22616:32583028,8466541 -) -(1,22616:6630773,9132719:25952256,404226,101187 -h1,22616:6630773,9132719:0,0,0 -g1,22616:7579210,9132719 -g1,22616:7895356,9132719 -g1,22616:8211502,9132719 -g1,22616:8527648,9132719 -g1,22616:8843794,9132719 -g1,22616:9159940,9132719 -g1,22616:9476086,9132719 -g1,22616:9792232,9132719 -g1,22616:10108378,9132719 -g1,22616:10424524,9132719 -g1,22616:10740670,9132719 -g1,22616:11056816,9132719 -g1,22616:11372962,9132719 -g1,22616:11689108,9132719 -g1,22616:12005254,9132719 -g1,22616:12321400,9132719 -g1,22616:12637546,9132719 -g1,22616:12953692,9132719 -g1,22616:13269838,9132719 -k1,22616:13269838,9132719:0 -h1,22616:17063586,9132719:0,0,0 -k1,22616:32583029,9132719:15519443 -g1,22616:32583029,9132719 -) -(1,22616:6630773,9798897:25952256,410518,82312 -h1,22616:6630773,9798897:0,0,0 -g1,22616:7579210,9798897 -g1,22616:7895356,9798897 -g1,22616:8211502,9798897 -g1,22616:8527648,9798897 -g1,22616:8843794,9798897 -g1,22616:9159940,9798897 -g1,22616:9476086,9798897 -g1,22616:9792232,9798897 -g1,22616:10108378,9798897 -g1,22616:10424524,9798897 -g1,22616:10740670,9798897 -g1,22616:11056816,9798897 -g1,22616:11372962,9798897 -g1,22616:11689108,9798897 -g1,22616:12005254,9798897 -g1,22616:12321400,9798897 -g1,22616:12637546,9798897 -g1,22616:12953692,9798897 -g1,22616:13269838,9798897 -g1,22616:13585984,9798897 -g1,22616:13902130,9798897 -g1,22616:14850567,9798897 -g1,22616:17063587,9798897 -g1,22616:21173482,9798897 -k1,22616:21173482,9798897:0 -h1,22616:24334939,9798897:0,0,0 -k1,22616:32583029,9798897:8248090 -g1,22616:32583029,9798897 -) -(1,22616:6630773,10465075:25952256,404226,76021 -h1,22616:6630773,10465075:0,0,0 -g1,22616:7579210,10465075 -g1,22616:7895356,10465075 -g1,22616:8211502,10465075 -g1,22616:8527648,10465075 -g1,22616:8843794,10465075 -g1,22616:9159940,10465075 -g1,22616:9476086,10465075 -g1,22616:9792232,10465075 -g1,22616:10108378,10465075 -g1,22616:10424524,10465075 -g1,22616:10740670,10465075 -g1,22616:11056816,10465075 -g1,22616:11372962,10465075 -g1,22616:11689108,10465075 -g1,22616:12005254,10465075 -g1,22616:12321400,10465075 -g1,22616:12637546,10465075 -g1,22616:12953692,10465075 -g1,22616:13269838,10465075 -g1,22616:13585984,10465075 -g1,22616:13902130,10465075 -h1,22616:15799004,10465075:0,0,0 -k1,22616:32583028,10465075:16784024 -g1,22616:32583028,10465075 -) -(1,22616:6630773,11131253:25952256,379060,101187 -h1,22616:6630773,11131253:0,0,0 -g1,22616:7579210,11131253 -g1,22616:7895356,11131253 -g1,22616:8211502,11131253 -g1,22616:8527648,11131253 -g1,22616:8843794,11131253 -g1,22616:9159940,11131253 -g1,22616:9476086,11131253 -g1,22616:9792232,11131253 -g1,22616:10108378,11131253 -g1,22616:10424524,11131253 -g1,22616:10740670,11131253 -g1,22616:11056816,11131253 -g1,22616:11372962,11131253 -g1,22616:11689108,11131253 -g1,22616:12005254,11131253 -g1,22616:12321400,11131253 -g1,22616:12637546,11131253 -g1,22616:12953692,11131253 -g1,22616:13269838,11131253 -g1,22616:13585984,11131253 -g1,22616:13902130,11131253 -k1,22616:13902130,11131253:0 -h1,22616:16747441,11131253:0,0,0 -k1,22616:32583029,11131253:15835588 -g1,22616:32583029,11131253 -) -(1,22616:6630773,11797431:25952256,404226,76021 -h1,22616:6630773,11797431:0,0,0 -g1,22616:7579210,11797431 -g1,22616:7895356,11797431 -g1,22616:8211502,11797431 -g1,22616:8527648,11797431 -g1,22616:8843794,11797431 -g1,22616:9159940,11797431 -g1,22616:9476086,11797431 -g1,22616:9792232,11797431 -g1,22616:10108378,11797431 -g1,22616:10424524,11797431 -g1,22616:10740670,11797431 -g1,22616:11056816,11797431 -g1,22616:11372962,11797431 -g1,22616:11689108,11797431 -g1,22616:12005254,11797431 -g1,22616:12321400,11797431 -g1,22616:12637546,11797431 -g1,22616:12953692,11797431 -g1,22616:13269838,11797431 -g1,22616:13585984,11797431 -g1,22616:13902130,11797431 -g1,22616:14218276,11797431 -g1,22616:14534422,11797431 -h1,22616:16431296,11797431:0,0,0 -k1,22616:32583029,11797431:16151733 -g1,22616:32583029,11797431 -) -(1,22616:6630773,12463609:25952256,404226,76021 -h1,22616:6630773,12463609:0,0,0 -g1,22616:7579210,12463609 -g1,22616:7895356,12463609 -g1,22616:8211502,12463609 -g1,22616:8527648,12463609 -g1,22616:8843794,12463609 -g1,22616:9159940,12463609 -g1,22616:9476086,12463609 -g1,22616:9792232,12463609 -g1,22616:10108378,12463609 -g1,22616:10424524,12463609 -g1,22616:10740670,12463609 -g1,22616:11056816,12463609 -g1,22616:11372962,12463609 -g1,22616:11689108,12463609 -g1,22616:12005254,12463609 -g1,22616:12321400,12463609 -g1,22616:12637546,12463609 -g1,22616:12953692,12463609 -g1,22616:13269838,12463609 -g1,22616:13585984,12463609 -g1,22616:13902130,12463609 -h1,22616:15799004,12463609:0,0,0 -k1,22616:32583028,12463609:16784024 -g1,22616:32583028,12463609 -) -(1,22616:6630773,13129787:25952256,379060,101187 -h1,22616:6630773,13129787:0,0,0 -g1,22616:7579210,13129787 -g1,22616:7895356,13129787 -g1,22616:8211502,13129787 -g1,22616:8527648,13129787 -g1,22616:8843794,13129787 -g1,22616:9159940,13129787 -g1,22616:9476086,13129787 -g1,22616:9792232,13129787 -g1,22616:10108378,13129787 -g1,22616:10424524,13129787 -g1,22616:10740670,13129787 -g1,22616:11056816,13129787 -g1,22616:11372962,13129787 -g1,22616:11689108,13129787 -g1,22616:12005254,13129787 -g1,22616:12321400,13129787 -g1,22616:12637546,13129787 -g1,22616:12953692,13129787 -g1,22616:13269838,13129787 -g1,22616:13585984,13129787 -g1,22616:13902130,13129787 -k1,22616:13902130,13129787:0 -h1,22616:16747441,13129787:0,0,0 -k1,22616:32583029,13129787:15835588 -g1,22616:32583029,13129787 -) -(1,22616:6630773,13795965:25952256,404226,76021 -h1,22616:6630773,13795965:0,0,0 -g1,22616:7579210,13795965 -g1,22616:7895356,13795965 -g1,22616:8211502,13795965 -g1,22616:8527648,13795965 -g1,22616:8843794,13795965 -g1,22616:9159940,13795965 -g1,22616:9476086,13795965 -g1,22616:9792232,13795965 -g1,22616:10108378,13795965 -g1,22616:10424524,13795965 -g1,22616:10740670,13795965 -g1,22616:11056816,13795965 -g1,22616:11372962,13795965 -g1,22616:11689108,13795965 -g1,22616:12005254,13795965 -g1,22616:12321400,13795965 -g1,22616:12637546,13795965 -g1,22616:12953692,13795965 -g1,22616:13269838,13795965 -g1,22616:13585984,13795965 -g1,22616:13902130,13795965 -g1,22616:14218276,13795965 -g1,22616:14534422,13795965 -h1,22616:16431296,13795965:0,0,0 -k1,22616:32583029,13795965:16151733 -g1,22616:32583029,13795965 -) -(1,22616:6630773,14462143:25952256,404226,76021 -h1,22616:6630773,14462143:0,0,0 -g1,22616:7579210,14462143 -g1,22616:7895356,14462143 -g1,22616:8211502,14462143 -g1,22616:8527648,14462143 -g1,22616:8843794,14462143 -g1,22616:9159940,14462143 -g1,22616:9476086,14462143 -g1,22616:9792232,14462143 -g1,22616:10108378,14462143 -g1,22616:10424524,14462143 -g1,22616:10740670,14462143 -g1,22616:11056816,14462143 -g1,22616:11372962,14462143 -g1,22616:11689108,14462143 -g1,22616:12005254,14462143 -g1,22616:12321400,14462143 -g1,22616:12637546,14462143 -g1,22616:12953692,14462143 -g1,22616:13269838,14462143 -g1,22616:13585984,14462143 -g1,22616:13902130,14462143 -h1,22616:15799004,14462143:0,0,0 -k1,22616:32583028,14462143:16784024 -g1,22616:32583028,14462143 -) -(1,22616:6630773,15128321:25952256,379060,101187 -h1,22616:6630773,15128321:0,0,0 -g1,22616:7579210,15128321 -g1,22616:7895356,15128321 -g1,22616:8211502,15128321 -g1,22616:8527648,15128321 -g1,22616:8843794,15128321 -g1,22616:9159940,15128321 -g1,22616:9476086,15128321 -g1,22616:9792232,15128321 -g1,22616:10108378,15128321 -g1,22616:10424524,15128321 -g1,22616:10740670,15128321 -g1,22616:11056816,15128321 -g1,22616:11372962,15128321 -g1,22616:11689108,15128321 -g1,22616:12005254,15128321 -g1,22616:12321400,15128321 -g1,22616:12637546,15128321 -g1,22616:12953692,15128321 -g1,22616:13269838,15128321 -g1,22616:13585984,15128321 -g1,22616:13902130,15128321 -k1,22616:13902130,15128321:0 -h1,22616:16747441,15128321:0,0,0 -k1,22616:32583029,15128321:15835588 -g1,22616:32583029,15128321 -) -(1,22616:6630773,15794499:25952256,404226,76021 -h1,22616:6630773,15794499:0,0,0 -g1,22616:7579210,15794499 -g1,22616:7895356,15794499 -g1,22616:8211502,15794499 -g1,22616:8527648,15794499 -g1,22616:8843794,15794499 -g1,22616:9159940,15794499 -g1,22616:9476086,15794499 -g1,22616:9792232,15794499 -g1,22616:10108378,15794499 -g1,22616:10424524,15794499 -g1,22616:10740670,15794499 -g1,22616:11056816,15794499 -g1,22616:11372962,15794499 -g1,22616:11689108,15794499 -g1,22616:12005254,15794499 -g1,22616:12321400,15794499 -g1,22616:12637546,15794499 -g1,22616:12953692,15794499 -g1,22616:13269838,15794499 -g1,22616:13585984,15794499 -g1,22616:13902130,15794499 -g1,22616:14218276,15794499 -g1,22616:14534422,15794499 -h1,22616:16431296,15794499:0,0,0 -k1,22616:32583029,15794499:16151733 -g1,22616:32583029,15794499 -) -(1,22616:6630773,16460677:25952256,404226,76021 -h1,22616:6630773,16460677:0,0,0 -g1,22616:7579210,16460677 -g1,22616:7895356,16460677 -g1,22616:8211502,16460677 -g1,22616:8527648,16460677 -g1,22616:8843794,16460677 -g1,22616:9159940,16460677 -g1,22616:9476086,16460677 -g1,22616:9792232,16460677 -g1,22616:10108378,16460677 -g1,22616:10424524,16460677 -g1,22616:10740670,16460677 -g1,22616:11056816,16460677 -g1,22616:11372962,16460677 -g1,22616:11689108,16460677 -g1,22616:12005254,16460677 -g1,22616:12321400,16460677 -g1,22616:12637546,16460677 -g1,22616:12953692,16460677 -g1,22616:13269838,16460677 -h1,22616:15166712,16460677:0,0,0 -k1,22616:32583028,16460677:17416316 -g1,22616:32583028,16460677 -) -(1,22616:6630773,17126855:25952256,404226,101187 -h1,22616:6630773,17126855:0,0,0 -g1,22616:7579210,17126855 -g1,22616:7895356,17126855 -g1,22616:8211502,17126855 -g1,22616:8527648,17126855 -g1,22616:8843794,17126855 -g1,22616:9159940,17126855 -g1,22616:9476086,17126855 -g1,22616:9792232,17126855 -g1,22616:10108378,17126855 -g1,22616:10424524,17126855 -g1,22616:10740670,17126855 -g1,22616:11056816,17126855 -g1,22616:11372962,17126855 -g1,22616:11689108,17126855 -g1,22616:12005254,17126855 -g1,22616:12321400,17126855 -g1,22616:12637546,17126855 -g1,22616:12953692,17126855 -g1,22616:13269838,17126855 -k1,22616:13269838,17126855:0 -h1,22616:17063586,17126855:0,0,0 -k1,22616:32583029,17126855:15519443 -g1,22616:32583029,17126855 -) -(1,22616:6630773,17793033:25952256,410518,82312 -h1,22616:6630773,17793033:0,0,0 -g1,22616:7579210,17793033 -g1,22616:7895356,17793033 -g1,22616:8211502,17793033 -g1,22616:8527648,17793033 -g1,22616:8843794,17793033 -g1,22616:9159940,17793033 -g1,22616:9476086,17793033 -g1,22616:9792232,17793033 -g1,22616:10108378,17793033 -g1,22616:10424524,17793033 -g1,22616:10740670,17793033 -g1,22616:11056816,17793033 -g1,22616:11372962,17793033 -g1,22616:11689108,17793033 -g1,22616:12005254,17793033 -g1,22616:12321400,17793033 -g1,22616:12637546,17793033 -g1,22616:12953692,17793033 -g1,22616:13269838,17793033 -g1,22616:13585984,17793033 -g1,22616:13902130,17793033 -g1,22616:14850567,17793033 -g1,22616:17063587,17793033 -g1,22616:21173482,17793033 -k1,22616:21173482,17793033:0 -h1,22616:24334939,17793033:0,0,0 -k1,22616:32583029,17793033:8248090 -g1,22616:32583029,17793033 -) -(1,22616:6630773,18459211:25952256,404226,76021 -h1,22616:6630773,18459211:0,0,0 -g1,22616:7579210,18459211 -g1,22616:7895356,18459211 -g1,22616:8211502,18459211 -g1,22616:8527648,18459211 -g1,22616:8843794,18459211 -g1,22616:9159940,18459211 -g1,22616:9476086,18459211 -g1,22616:9792232,18459211 -g1,22616:10108378,18459211 -g1,22616:10424524,18459211 -g1,22616:10740670,18459211 -g1,22616:11056816,18459211 -g1,22616:11372962,18459211 -g1,22616:11689108,18459211 -g1,22616:12005254,18459211 -g1,22616:12321400,18459211 -g1,22616:12637546,18459211 -g1,22616:12953692,18459211 -g1,22616:13269838,18459211 -g1,22616:13585984,18459211 -g1,22616:13902130,18459211 -h1,22616:15799004,18459211:0,0,0 -k1,22616:32583028,18459211:16784024 -g1,22616:32583028,18459211 -) -(1,22616:6630773,19125389:25952256,404226,76021 -h1,22616:6630773,19125389:0,0,0 -g1,22616:7579210,19125389 -g1,22616:7895356,19125389 -g1,22616:8211502,19125389 -g1,22616:8527648,19125389 -g1,22616:8843794,19125389 -g1,22616:9159940,19125389 -g1,22616:9476086,19125389 -g1,22616:9792232,19125389 -g1,22616:10108378,19125389 -g1,22616:10424524,19125389 -g1,22616:10740670,19125389 -g1,22616:11056816,19125389 -g1,22616:11372962,19125389 -g1,22616:11689108,19125389 -g1,22616:12005254,19125389 -g1,22616:12321400,19125389 -g1,22616:12637546,19125389 -g1,22616:12953692,19125389 -g1,22616:13269838,19125389 -h1,22616:15166712,19125389:0,0,0 -k1,22616:32583028,19125389:17416316 -g1,22616:32583028,19125389 -) -(1,22616:6630773,19791567:25952256,404226,101187 -h1,22616:6630773,19791567:0,0,0 -g1,22616:7579210,19791567 -g1,22616:7895356,19791567 -g1,22616:8211502,19791567 -g1,22616:8527648,19791567 -g1,22616:8843794,19791567 -g1,22616:9159940,19791567 -g1,22616:9476086,19791567 -g1,22616:9792232,19791567 -g1,22616:10108378,19791567 -g1,22616:10424524,19791567 -g1,22616:10740670,19791567 -g1,22616:11056816,19791567 -g1,22616:11372962,19791567 -g1,22616:11689108,19791567 -g1,22616:12005254,19791567 -g1,22616:12321400,19791567 -g1,22616:12637546,19791567 -g1,22616:12953692,19791567 -g1,22616:13269838,19791567 -k1,22616:13269838,19791567:0 -h1,22616:17063586,19791567:0,0,0 -k1,22616:32583029,19791567:15519443 -g1,22616:32583029,19791567 -) -(1,22616:6630773,20457745:25952256,410518,82312 -h1,22616:6630773,20457745:0,0,0 -g1,22616:7579210,20457745 -g1,22616:7895356,20457745 -g1,22616:8211502,20457745 -g1,22616:8527648,20457745 -g1,22616:8843794,20457745 -g1,22616:9159940,20457745 -g1,22616:9476086,20457745 -g1,22616:9792232,20457745 -g1,22616:10108378,20457745 -g1,22616:10424524,20457745 -g1,22616:10740670,20457745 -g1,22616:11056816,20457745 -g1,22616:11372962,20457745 -g1,22616:11689108,20457745 -g1,22616:12005254,20457745 -g1,22616:12321400,20457745 -g1,22616:12637546,20457745 -g1,22616:12953692,20457745 -g1,22616:13269838,20457745 -g1,22616:13585984,20457745 -g1,22616:13902130,20457745 -g1,22616:14850567,20457745 -g1,22616:17063587,20457745 -g1,22616:21173482,20457745 -k1,22616:21173482,20457745:0 -h1,22616:24334939,20457745:0,0,0 -k1,22616:32583029,20457745:8248090 -g1,22616:32583029,20457745 -) -(1,22616:6630773,21123923:25952256,404226,76021 -h1,22616:6630773,21123923:0,0,0 -g1,22616:7579210,21123923 -g1,22616:7895356,21123923 -g1,22616:8211502,21123923 -g1,22616:8527648,21123923 -g1,22616:8843794,21123923 -g1,22616:9159940,21123923 -g1,22616:9476086,21123923 -g1,22616:9792232,21123923 -g1,22616:10108378,21123923 -g1,22616:10424524,21123923 -g1,22616:10740670,21123923 -g1,22616:11056816,21123923 -g1,22616:11372962,21123923 -g1,22616:11689108,21123923 -g1,22616:12005254,21123923 -g1,22616:12321400,21123923 -g1,22616:12637546,21123923 -g1,22616:12953692,21123923 -g1,22616:13269838,21123923 -g1,22616:13585984,21123923 -g1,22616:13902130,21123923 -h1,22616:15799004,21123923:0,0,0 -k1,22616:32583028,21123923:16784024 -g1,22616:32583028,21123923 -) -(1,22616:6630773,21790101:25952256,379060,101187 -h1,22616:6630773,21790101:0,0,0 -g1,22616:7579210,21790101 -g1,22616:7895356,21790101 -g1,22616:8211502,21790101 -g1,22616:8527648,21790101 -g1,22616:8843794,21790101 -g1,22616:9159940,21790101 -g1,22616:9476086,21790101 -g1,22616:9792232,21790101 -g1,22616:10108378,21790101 -g1,22616:10424524,21790101 -g1,22616:10740670,21790101 -g1,22616:11056816,21790101 -g1,22616:11372962,21790101 -g1,22616:11689108,21790101 -g1,22616:12005254,21790101 -g1,22616:12321400,21790101 -g1,22616:12637546,21790101 -g1,22616:12953692,21790101 -g1,22616:13269838,21790101 -g1,22616:13585984,21790101 -g1,22616:13902130,21790101 -k1,22616:13902130,21790101:0 -h1,22616:16747441,21790101:0,0,0 -k1,22616:32583029,21790101:15835588 -g1,22616:32583029,21790101 -) -(1,22616:6630773,22456279:25952256,404226,76021 -h1,22616:6630773,22456279:0,0,0 -g1,22616:7579210,22456279 -g1,22616:7895356,22456279 -g1,22616:8211502,22456279 -g1,22616:8527648,22456279 -g1,22616:8843794,22456279 -g1,22616:9159940,22456279 -g1,22616:9476086,22456279 -g1,22616:9792232,22456279 -g1,22616:10108378,22456279 -g1,22616:10424524,22456279 -g1,22616:10740670,22456279 -g1,22616:11056816,22456279 -g1,22616:11372962,22456279 -g1,22616:11689108,22456279 -g1,22616:12005254,22456279 -g1,22616:12321400,22456279 -g1,22616:12637546,22456279 -g1,22616:12953692,22456279 -g1,22616:13269838,22456279 -g1,22616:13585984,22456279 -g1,22616:13902130,22456279 -g1,22616:14218276,22456279 -g1,22616:14534422,22456279 -h1,22616:16431296,22456279:0,0,0 -k1,22616:32583029,22456279:16151733 -g1,22616:32583029,22456279 -) -(1,22616:6630773,23122457:25952256,404226,76021 -h1,22616:6630773,23122457:0,0,0 -g1,22616:7579210,23122457 -g1,22616:7895356,23122457 -g1,22616:8211502,23122457 -g1,22616:8527648,23122457 -g1,22616:8843794,23122457 -g1,22616:9159940,23122457 -g1,22616:9476086,23122457 -g1,22616:9792232,23122457 -g1,22616:10108378,23122457 -g1,22616:10424524,23122457 -g1,22616:10740670,23122457 -g1,22616:11056816,23122457 -g1,22616:11372962,23122457 -g1,22616:11689108,23122457 -g1,22616:12005254,23122457 -g1,22616:12321400,23122457 -g1,22616:12637546,23122457 -g1,22616:12953692,23122457 -g1,22616:13269838,23122457 -g1,22616:13585984,23122457 -g1,22616:13902130,23122457 -h1,22616:15799004,23122457:0,0,0 -k1,22616:32583028,23122457:16784024 -g1,22616:32583028,23122457 -) -(1,22616:6630773,23788635:25952256,379060,101187 -h1,22616:6630773,23788635:0,0,0 -g1,22616:7579210,23788635 -g1,22616:7895356,23788635 -g1,22616:8211502,23788635 -g1,22616:8527648,23788635 -g1,22616:8843794,23788635 -g1,22616:9159940,23788635 -g1,22616:9476086,23788635 -g1,22616:9792232,23788635 -g1,22616:10108378,23788635 -g1,22616:10424524,23788635 -g1,22616:10740670,23788635 -g1,22616:11056816,23788635 -g1,22616:11372962,23788635 -g1,22616:11689108,23788635 -g1,22616:12005254,23788635 -g1,22616:12321400,23788635 -g1,22616:12637546,23788635 -g1,22616:12953692,23788635 -g1,22616:13269838,23788635 -g1,22616:13585984,23788635 -g1,22616:13902130,23788635 -k1,22616:13902130,23788635:0 -h1,22616:16747441,23788635:0,0,0 -k1,22616:32583029,23788635:15835588 -g1,22616:32583029,23788635 -) -(1,22616:6630773,24454813:25952256,404226,76021 -h1,22616:6630773,24454813:0,0,0 -g1,22616:7579210,24454813 -g1,22616:7895356,24454813 -g1,22616:8211502,24454813 -g1,22616:8527648,24454813 -g1,22616:8843794,24454813 -g1,22616:9159940,24454813 -g1,22616:9476086,24454813 -g1,22616:9792232,24454813 -g1,22616:10108378,24454813 -g1,22616:10424524,24454813 -g1,22616:10740670,24454813 -g1,22616:11056816,24454813 -g1,22616:11372962,24454813 -g1,22616:11689108,24454813 -g1,22616:12005254,24454813 -g1,22616:12321400,24454813 -g1,22616:12637546,24454813 -g1,22616:12953692,24454813 -g1,22616:13269838,24454813 -g1,22616:13585984,24454813 -g1,22616:13902130,24454813 -g1,22616:14218276,24454813 -g1,22616:14534422,24454813 -h1,22616:16431296,24454813:0,0,0 -k1,22616:32583029,24454813:16151733 -g1,22616:32583029,24454813 -) -(1,22616:6630773,25120991:25952256,404226,76021 -h1,22616:6630773,25120991:0,0,0 -g1,22616:7579210,25120991 -g1,22616:7895356,25120991 -g1,22616:8211502,25120991 -g1,22616:8527648,25120991 -g1,22616:8843794,25120991 -g1,22616:9159940,25120991 -g1,22616:9476086,25120991 -g1,22616:9792232,25120991 -g1,22616:10108378,25120991 -g1,22616:10424524,25120991 -g1,22616:10740670,25120991 -g1,22616:11056816,25120991 -g1,22616:11372962,25120991 -g1,22616:11689108,25120991 -g1,22616:12005254,25120991 -g1,22616:12321400,25120991 -g1,22616:12637546,25120991 -g1,22616:12953692,25120991 -g1,22616:13269838,25120991 -g1,22616:13585984,25120991 -g1,22616:13902130,25120991 -h1,22616:15799004,25120991:0,0,0 -k1,22616:32583028,25120991:16784024 -g1,22616:32583028,25120991 -) -(1,22616:6630773,25787169:25952256,379060,101187 -h1,22616:6630773,25787169:0,0,0 -g1,22616:7579210,25787169 -g1,22616:7895356,25787169 -g1,22616:8211502,25787169 -g1,22616:8527648,25787169 -g1,22616:8843794,25787169 -g1,22616:9159940,25787169 -g1,22616:9476086,25787169 -g1,22616:9792232,25787169 -g1,22616:10108378,25787169 -g1,22616:10424524,25787169 -g1,22616:10740670,25787169 -g1,22616:11056816,25787169 -g1,22616:11372962,25787169 -g1,22616:11689108,25787169 -g1,22616:12005254,25787169 -g1,22616:12321400,25787169 -g1,22616:12637546,25787169 -g1,22616:12953692,25787169 -g1,22616:13269838,25787169 -g1,22616:13585984,25787169 -g1,22616:13902130,25787169 -k1,22616:13902130,25787169:0 -h1,22616:16747441,25787169:0,0,0 -k1,22616:32583029,25787169:15835588 -g1,22616:32583029,25787169 -) -(1,22616:6630773,26453347:25952256,404226,76021 -h1,22616:6630773,26453347:0,0,0 -g1,22616:7579210,26453347 -g1,22616:7895356,26453347 -g1,22616:8211502,26453347 -g1,22616:8527648,26453347 -g1,22616:8843794,26453347 -g1,22616:9159940,26453347 -g1,22616:9476086,26453347 -g1,22616:9792232,26453347 -g1,22616:10108378,26453347 -g1,22616:10424524,26453347 -g1,22616:10740670,26453347 -g1,22616:11056816,26453347 -g1,22616:11372962,26453347 -g1,22616:11689108,26453347 -g1,22616:12005254,26453347 -g1,22616:12321400,26453347 -g1,22616:12637546,26453347 -g1,22616:12953692,26453347 -g1,22616:13269838,26453347 -g1,22616:13585984,26453347 -g1,22616:13902130,26453347 -g1,22616:14218276,26453347 -g1,22616:14534422,26453347 -h1,22616:16431296,26453347:0,0,0 -k1,22616:32583029,26453347:16151733 -g1,22616:32583029,26453347 -) -(1,22616:6630773,27119525:25952256,404226,76021 -h1,22616:6630773,27119525:0,0,0 -g1,22616:7579210,27119525 -g1,22616:7895356,27119525 -g1,22616:8211502,27119525 -g1,22616:8527648,27119525 -g1,22616:8843794,27119525 -g1,22616:9159940,27119525 -g1,22616:9476086,27119525 -g1,22616:9792232,27119525 -g1,22616:10108378,27119525 -g1,22616:10424524,27119525 -g1,22616:10740670,27119525 -g1,22616:11056816,27119525 -g1,22616:11372962,27119525 -g1,22616:11689108,27119525 -g1,22616:12005254,27119525 -g1,22616:12321400,27119525 -g1,22616:12637546,27119525 -g1,22616:12953692,27119525 -g1,22616:13269838,27119525 -h1,22616:15166712,27119525:0,0,0 -k1,22616:32583028,27119525:17416316 -g1,22616:32583028,27119525 -) -(1,22616:6630773,27785703:25952256,404226,101187 -h1,22616:6630773,27785703:0,0,0 -g1,22616:7579210,27785703 -g1,22616:7895356,27785703 -g1,22616:8211502,27785703 -g1,22616:8527648,27785703 -g1,22616:8843794,27785703 -g1,22616:9159940,27785703 -g1,22616:9476086,27785703 -g1,22616:9792232,27785703 -g1,22616:10108378,27785703 -g1,22616:10424524,27785703 -g1,22616:10740670,27785703 -g1,22616:11056816,27785703 -g1,22616:11372962,27785703 -g1,22616:11689108,27785703 -g1,22616:12005254,27785703 -g1,22616:12321400,27785703 -g1,22616:12637546,27785703 -g1,22616:12953692,27785703 -g1,22616:13269838,27785703 -k1,22616:13269838,27785703:0 -h1,22616:17063586,27785703:0,0,0 -k1,22616:32583029,27785703:15519443 -g1,22616:32583029,27785703 -) -(1,22616:6630773,28451881:25952256,410518,82312 -h1,22616:6630773,28451881:0,0,0 -g1,22616:7579210,28451881 -g1,22616:7895356,28451881 -g1,22616:8211502,28451881 -g1,22616:8527648,28451881 -g1,22616:8843794,28451881 -g1,22616:9159940,28451881 -g1,22616:9476086,28451881 -g1,22616:9792232,28451881 -g1,22616:10108378,28451881 -g1,22616:10424524,28451881 -g1,22616:10740670,28451881 -g1,22616:11056816,28451881 -g1,22616:11372962,28451881 -g1,22616:11689108,28451881 -g1,22616:12005254,28451881 -g1,22616:12321400,28451881 -g1,22616:12637546,28451881 -g1,22616:12953692,28451881 -g1,22616:13269838,28451881 -g1,22616:13585984,28451881 -g1,22616:13902130,28451881 -g1,22616:14850567,28451881 -g1,22616:17063587,28451881 -g1,22616:21173482,28451881 -k1,22616:21173482,28451881:0 -h1,22616:24334939,28451881:0,0,0 -k1,22616:32583029,28451881:8248090 -g1,22616:32583029,28451881 -) -(1,22616:6630773,29118059:25952256,410518,101187 -h1,22616:6630773,29118059:0,0,0 -g1,22616:7579210,29118059 -g1,22616:7895356,29118059 -g1,22616:8211502,29118059 -g1,22616:8527648,29118059 -g1,22616:8843794,29118059 -g1,22616:9159940,29118059 -g1,22616:9476086,29118059 -g1,22616:9792232,29118059 -g1,22616:10108378,29118059 -g1,22616:10424524,29118059 -g1,22616:10740670,29118059 -g1,22616:11056816,29118059 -g1,22616:11372962,29118059 -g1,22616:11689108,29118059 -g1,22616:12005254,29118059 -g1,22616:12321400,29118059 -g1,22616:12637546,29118059 -g1,22616:12953692,29118059 -g1,22616:13269838,29118059 -g1,22616:13585984,29118059 -g1,22616:13902130,29118059 -k1,22616:13902130,29118059:0 -h1,22616:16747441,29118059:0,0,0 -k1,22616:32583029,29118059:15835588 -g1,22616:32583029,29118059 -) -(1,22616:6630773,29784237:25952256,404226,76021 -h1,22616:6630773,29784237:0,0,0 -g1,22616:7579210,29784237 -g1,22616:7895356,29784237 -g1,22616:8211502,29784237 -g1,22616:8527648,29784237 -g1,22616:8843794,29784237 -g1,22616:9159940,29784237 -g1,22616:9476086,29784237 -g1,22616:9792232,29784237 -g1,22616:10108378,29784237 -g1,22616:10424524,29784237 -g1,22616:10740670,29784237 -g1,22616:11056816,29784237 -g1,22616:11372962,29784237 -g1,22616:11689108,29784237 -g1,22616:12005254,29784237 -g1,22616:12321400,29784237 -g1,22616:12637546,29784237 -g1,22616:12953692,29784237 -g1,22616:13269838,29784237 -g1,22616:13585984,29784237 -g1,22616:13902130,29784237 -g1,22616:14218276,29784237 -g1,22616:14534422,29784237 -h1,22616:16431296,29784237:0,0,0 -k1,22616:32583029,29784237:16151733 -g1,22616:32583029,29784237 -) -(1,22616:6630773,30450415:25952256,404226,76021 -h1,22616:6630773,30450415:0,0,0 -g1,22616:7579210,30450415 -g1,22616:7895356,30450415 -g1,22616:8211502,30450415 -g1,22616:8527648,30450415 -g1,22616:8843794,30450415 -g1,22616:9159940,30450415 -g1,22616:9476086,30450415 -g1,22616:9792232,30450415 -g1,22616:10108378,30450415 -g1,22616:10424524,30450415 -g1,22616:10740670,30450415 -g1,22616:11056816,30450415 -g1,22616:11372962,30450415 -g1,22616:11689108,30450415 -g1,22616:12005254,30450415 -g1,22616:12321400,30450415 -g1,22616:12637546,30450415 -g1,22616:12953692,30450415 -g1,22616:13269838,30450415 -g1,22616:13585984,30450415 -g1,22616:13902130,30450415 -h1,22616:15799004,30450415:0,0,0 -k1,22616:32583028,30450415:16784024 -g1,22616:32583028,30450415 -) -(1,22616:6630773,31116593:25952256,379060,101187 -h1,22616:6630773,31116593:0,0,0 -g1,22616:7579210,31116593 -g1,22616:7895356,31116593 -g1,22616:8211502,31116593 -g1,22616:8527648,31116593 -g1,22616:8843794,31116593 -g1,22616:9159940,31116593 -g1,22616:9476086,31116593 -g1,22616:9792232,31116593 -g1,22616:10108378,31116593 -g1,22616:10424524,31116593 -g1,22616:10740670,31116593 -g1,22616:11056816,31116593 -g1,22616:11372962,31116593 -g1,22616:11689108,31116593 -g1,22616:12005254,31116593 -g1,22616:12321400,31116593 -g1,22616:12637546,31116593 -g1,22616:12953692,31116593 -g1,22616:13269838,31116593 -g1,22616:13585984,31116593 -g1,22616:13902130,31116593 -k1,22616:13902130,31116593:0 -h1,22616:16747441,31116593:0,0,0 -k1,22616:32583029,31116593:15835588 -g1,22616:32583029,31116593 -) -(1,22616:6630773,31782771:25952256,404226,76021 -h1,22616:6630773,31782771:0,0,0 -g1,22616:7579210,31782771 -g1,22616:7895356,31782771 -g1,22616:8211502,31782771 -g1,22616:8527648,31782771 -g1,22616:8843794,31782771 -g1,22616:9159940,31782771 -g1,22616:9476086,31782771 -g1,22616:9792232,31782771 -g1,22616:10108378,31782771 -g1,22616:10424524,31782771 -g1,22616:10740670,31782771 -g1,22616:11056816,31782771 -g1,22616:11372962,31782771 -g1,22616:11689108,31782771 -g1,22616:12005254,31782771 -g1,22616:12321400,31782771 -g1,22616:12637546,31782771 -g1,22616:12953692,31782771 -g1,22616:13269838,31782771 -g1,22616:13585984,31782771 -g1,22616:13902130,31782771 -g1,22616:14218276,31782771 -g1,22616:14534422,31782771 -h1,22616:16431296,31782771:0,0,0 -k1,22616:32583029,31782771:16151733 -g1,22616:32583029,31782771 -) -(1,22616:6630773,32448949:25952256,404226,76021 -h1,22616:6630773,32448949:0,0,0 -g1,22616:7579210,32448949 -g1,22616:7895356,32448949 -g1,22616:8211502,32448949 -g1,22616:8527648,32448949 -g1,22616:8843794,32448949 -g1,22616:9159940,32448949 -g1,22616:9476086,32448949 -g1,22616:9792232,32448949 -g1,22616:10108378,32448949 -g1,22616:10424524,32448949 -g1,22616:10740670,32448949 -g1,22616:11056816,32448949 -g1,22616:11372962,32448949 -g1,22616:11689108,32448949 -g1,22616:12005254,32448949 -g1,22616:12321400,32448949 -g1,22616:12637546,32448949 -g1,22616:12953692,32448949 -g1,22616:13269838,32448949 -g1,22616:13585984,32448949 -g1,22616:13902130,32448949 -h1,22616:15799004,32448949:0,0,0 -k1,22616:32583028,32448949:16784024 -g1,22616:32583028,32448949 -) -(1,22616:6630773,33115127:25952256,404226,101187 -h1,22616:6630773,33115127:0,0,0 -g1,22616:7579210,33115127 -g1,22616:7895356,33115127 -g1,22616:8211502,33115127 -g1,22616:8527648,33115127 -g1,22616:8843794,33115127 -g1,22616:9159940,33115127 -g1,22616:9476086,33115127 -g1,22616:9792232,33115127 -g1,22616:10108378,33115127 -g1,22616:10424524,33115127 -g1,22616:10740670,33115127 -g1,22616:11056816,33115127 -g1,22616:11372962,33115127 -g1,22616:11689108,33115127 -g1,22616:12005254,33115127 -g1,22616:12321400,33115127 -g1,22616:12637546,33115127 -g1,22616:20541188,33115127 -k1,22616:20541188,33115127:0 -h1,22616:23070354,33115127:0,0,0 -k1,22616:32583029,33115127:9512675 -g1,22616:32583029,33115127 -) -(1,22616:6630773,33781305:25952256,404226,6290 -h1,22616:6630773,33781305:0,0,0 -g1,22616:7579210,33781305 -g1,22616:7895356,33781305 -g1,22616:8211502,33781305 -g1,22616:8527648,33781305 -g1,22616:8843794,33781305 -g1,22616:9159940,33781305 -g1,22616:9476086,33781305 -g1,22616:9792232,33781305 -g1,22616:10108378,33781305 -g1,22616:10424524,33781305 -g1,22616:10740670,33781305 -g1,22616:11056816,33781305 -g1,22616:11372962,33781305 -g1,22616:11689108,33781305 -g1,22616:12005254,33781305 -g1,22616:12321400,33781305 -g1,22616:12637546,33781305 -g1,22616:12953692,33781305 -g1,22616:13269838,33781305 -k1,22616:13269838,33781305:0 -h1,22616:15166712,33781305:0,0,0 -k1,22616:32583028,33781305:17416316 -g1,22616:32583028,33781305 -) -(1,22616:6630773,34447483:25952256,404226,76021 -h1,22616:6630773,34447483:0,0,0 -g1,22616:7579210,34447483 -g1,22616:7895356,34447483 -g1,22616:8211502,34447483 -g1,22616:8527648,34447483 -g1,22616:8843794,34447483 -g1,22616:9159940,34447483 -g1,22616:9476086,34447483 -g1,22616:9792232,34447483 -g1,22616:10108378,34447483 -g1,22616:10424524,34447483 -g1,22616:10740670,34447483 -g1,22616:11056816,34447483 -g1,22616:11372962,34447483 -h1,22616:13269836,34447483:0,0,0 -k1,22616:32583028,34447483:19313192 -g1,22616:32583028,34447483 -) -(1,22616:6630773,35113661:25952256,404226,76021 -h1,22616:6630773,35113661:0,0,0 -g1,22616:7579210,35113661 -g1,22616:7895356,35113661 -g1,22616:8211502,35113661 -g1,22616:8527648,35113661 -g1,22616:8843794,35113661 -g1,22616:9159940,35113661 -g1,22616:9476086,35113661 -g1,22616:9792232,35113661 -g1,22616:10108378,35113661 -g1,22616:10424524,35113661 -g1,22616:10740670,35113661 -h1,22616:12637544,35113661:0,0,0 -k1,22616:32583028,35113661:19945484 -g1,22616:32583028,35113661 -) -(1,22616:6630773,35779839:25952256,404226,76021 -h1,22616:6630773,35779839:0,0,0 -g1,22616:7579210,35779839 -g1,22616:7895356,35779839 -g1,22616:8211502,35779839 -g1,22616:8527648,35779839 -g1,22616:8843794,35779839 -g1,22616:9159940,35779839 -g1,22616:9476086,35779839 -h1,22616:12321397,35779839:0,0,0 -k1,22616:32583029,35779839:20261632 -g1,22616:32583029,35779839 -) -(1,22616:6630773,36446017:25952256,410518,101187 -h1,22616:6630773,36446017:0,0,0 -g1,22616:7579210,36446017 -g1,22616:7895356,36446017 -g1,22616:8211502,36446017 -g1,22616:8527648,36446017 -g1,22616:8843794,36446017 -g1,22616:9159940,36446017 -g1,22616:9476086,36446017 -g1,22616:19276602,36446017 -k1,22616:19276602,36446017:0 -h1,22616:21489622,36446017:0,0,0 -k1,22616:32583029,36446017:11093407 -g1,22616:32583029,36446017 -) -(1,22616:6630773,37112195:25952256,404226,76021 -h1,22616:6630773,37112195:0,0,0 -g1,22616:7579210,37112195 -g1,22616:7895356,37112195 -g1,22616:8211502,37112195 -g1,22616:8527648,37112195 -g1,22616:8843794,37112195 -g1,22616:9159940,37112195 -g1,22616:9476086,37112195 -g1,22616:9792232,37112195 -g1,22616:10108378,37112195 -h1,22616:12321398,37112195:0,0,0 -k1,22616:32583030,37112195:20261632 -g1,22616:32583030,37112195 -) -(1,22616:6630773,37778373:25952256,404226,76021 -h1,22616:6630773,37778373:0,0,0 -g1,22616:7579210,37778373 -g1,22616:7895356,37778373 -g1,22616:8211502,37778373 -g1,22616:8527648,37778373 -g1,22616:8843794,37778373 -h1,22616:10740668,37778373:0,0,0 -k1,22616:32583028,37778373:21842360 -g1,22616:32583028,37778373 -) -(1,22616:6630773,38444551:25952256,404226,76021 -h1,22616:6630773,38444551:0,0,0 -g1,22616:7579210,38444551 -g1,22616:7895356,38444551 -g1,22616:8211502,38444551 -g1,22616:8527648,38444551 -g1,22616:8843794,38444551 -h1,22616:11689105,38444551:0,0,0 -k1,22616:32583029,38444551:20893924 -g1,22616:32583029,38444551 -) -(1,22616:6630773,39110729:25952256,404226,76021 -h1,22616:6630773,39110729:0,0,0 -g1,22616:7579210,39110729 -g1,22616:7895356,39110729 -g1,22616:8211502,39110729 -g1,22616:8527648,39110729 -g1,22616:8843794,39110729 -h1,22616:10740668,39110729:0,0,0 -k1,22616:32583028,39110729:21842360 -g1,22616:32583028,39110729 -) -] -) -g1,22617:32583029,39186750 -g1,22617:6630773,39186750 -g1,22617:6630773,39186750 -g1,22617:32583029,39186750 -g1,22617:32583029,39186750 -) -h1,22617:6630773,39383358:0,0,0 -(1,22621:6630773,40749134:25952256,513147,134348 -h1,22620:6630773,40749134:983040,0,0 -k1,22620:9710811,40749134:635545 -k1,22620:11214708,40749134:635545 -k1,22620:14054230,40749134:635546 -k1,22620:15708860,40749134:635545 -k1,22620:17570584,40749134:635545 -k1,22620:19773750,40749134:635545 -k1,22620:21197694,40749134:635546 -(1,22620:21197694,40749134:0,452978,115847 -r1,22636:22962807,40749134:1765113,568825,115847 -k1,22620:21197694,40749134:-1765113 -) -(1,22620:21197694,40749134:1765113,452978,115847 -k1,22620:21197694,40749134:3277 -h1,22620:22959530,40749134:0,411205,112570 -) -k1,22620:23598352,40749134:635545 -k1,22620:27186294,40749134:635545 -k1,22620:29557232,40749134:635545 -k1,22621:32583029,40749134:0 -) -(1,22621:6630773,41590622:25952256,505283,115847 -(1,22620:6630773,41590622:0,459977,115847 -r1,22636:11561293,41590622:4930520,575824,115847 -k1,22620:6630773,41590622:-4930520 -) -(1,22620:6630773,41590622:4930520,459977,115847 -k1,22620:6630773,41590622:3277 -h1,22620:11558016,41590622:0,411205,112570 -) -g1,22620:11760522,41590622 -g1,22620:13151196,41590622 -(1,22620:13151196,41590622:0,452978,115847 -r1,22636:16674868,41590622:3523672,568825,115847 -k1,22620:13151196,41590622:-3523672 -) -(1,22620:13151196,41590622:3523672,452978,115847 -k1,22620:13151196,41590622:3277 -h1,22620:16671591,41590622:0,411205,112570 -) -k1,22621:32583029,41590622:15734491 -g1,22621:32583029,41590622 -) -v1,22623:6630773,42781088:0,393216,0 -(1,22630:6630773,43768654:25952256,1380782,196608 -g1,22630:6630773,43768654 -g1,22630:6630773,43768654 -g1,22630:6434165,43768654 -(1,22630:6434165,43768654:0,1380782,196608 -r1,22636:32779637,43768654:26345472,1577390,196608 -k1,22630:6434165,43768654:-26345472 -) -(1,22630:6434165,43768654:26345472,1380782,196608 -[1,22630:6630773,43768654:25952256,1184174,0 -(1,22625:6630773,42994998:25952256,410518,107478 -(1,22624:6630773,42994998:0,0,0 -g1,22624:6630773,42994998 -g1,22624:6630773,42994998 -g1,22624:6303093,42994998 -(1,22624:6303093,42994998:0,0,0 -) -g1,22624:6630773,42994998 -) -k1,22625:6630773,42994998:0 -g1,22625:16747435,42994998 -h1,22625:20541183,42994998:0,0,0 -k1,22625:32583029,42994998:12041846 -g1,22625:32583029,42994998 -) -(1,22629:6630773,43661176:25952256,410518,107478 -(1,22627:6630773,43661176:0,0,0 -g1,22627:6630773,43661176 -g1,22627:6630773,43661176 -g1,22627:6303093,43661176 -(1,22627:6303093,43661176:0,0,0 -) -g1,22627:6630773,43661176 -) -g1,22629:7579210,43661176 -g1,22629:8843793,43661176 -g1,22629:9792230,43661176 -g1,22629:11056813,43661176 -g1,22629:15166707,43661176 -h1,22629:18644309,43661176:0,0,0 -k1,22629:32583029,43661176:13938720 -g1,22629:32583029,43661176 -) -] -) -g1,22630:32583029,43768654 -g1,22630:6630773,43768654 -g1,22630:6630773,43768654 -g1,22630:32583029,43768654 -g1,22630:32583029,43768654 -) -h1,22630:6630773,43965262:0,0,0 -(1,22635:6630773,45331038:25952256,513147,134348 -h1,22633:6630773,45331038:983040,0,0 -k1,22633:9023744,45331038:213244 -k1,22633:12262785,45331038:213244 -k1,22633:14857607,45331038:213244 -k1,22633:15686890,45331038:213245 -k1,22633:17103375,45331038:213244 -k1,22633:19896771,45331038:213244 -k1,22633:21214297,45331038:213244 -k1,22633:22175307,45331038:213244 -k1,22633:23901777,45331038:213244 -k1,22633:24766450,45331038:213245 -k1,22633:27930780,45331038:213244 -k1,22633:29533387,45331038:213244 -k1,22633:31314252,45331038:213244 -k1,22633:32583029,45331038:0 -) -] -(1,22636:32583029,45706769:0,0,0 -g1,22636:32583029,45706769 -) -) -] -(1,22636:6630773,47279633:25952256,0,0 -h1,22636:6630773,47279633:25952256,0,0 -) -] -(1,22636:4262630,4025873:0,0,0 -[1,22636:-473656,4025873:0,0,0 -(1,22636:-473656,-710413:0,0,0 -(1,22636:-473656,-710413:0,0,0 -g1,22636:-473656,-710413 +[1,22852:3078558,4812305:0,0,0 +(1,22852:3078558,49800853:0,16384,2228224 +k1,22852:1358238,49800853:-1720320 +(1,21670:1358238,49800853:1720320,16384,2228224 +(1,21670:1358238,49800853:1179648,16384,0 +r1,22852:2537886,49800853:1179648,16384,0 ) -g1,22636:-473656,-710413 -) -] -) -] -!42173 -}410 -Input:3655:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3656:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3657:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!294 -{411 -[1,22673:4262630,47279633:28320399,43253760,0 -(1,22673:4262630,4025873:0,0,0 -[1,22673:-473656,4025873:0,0,0 -(1,22673:-473656,-710413:0,0,0 -(1,22673:-473656,-644877:0,0,0 -k1,22673:-473656,-644877:-65536 +g1,21670:3062174,49800853 +(1,21670:3062174,52029077:16384,1703936,0 +[1,21670:3062174,52029077:25952256,1703936,0 +(1,21670:3062174,51504789:25952256,1179648,0 +(1,21670:3062174,51504789:16384,1179648,0 +r1,22852:3078558,51504789:16384,1179648,0 +) +k1,21670:29014430,51504789:25935872 +g1,21670:29014430,51504789 +) +] +) +) +) +] +[1,22852:3078558,4812305:0,0,0 +(1,22852:3078558,49800853:0,16384,2228224 +g1,22852:29030814,49800853 +g1,22852:36135244,49800853 +(1,21670:36135244,49800853:1720320,16384,2228224 +(1,21670:36135244,52029077:16384,1703936,0 +[1,21670:36135244,52029077:25952256,1703936,0 +(1,21670:36135244,51504789:25952256,1179648,0 +(1,21670:36135244,51504789:16384,1179648,0 +r1,22852:36151628,51504789:16384,1179648,0 +) +k1,21670:62087500,51504789:25935872 +g1,21670:62087500,51504789 +) +] +) +g1,21670:36675916,49800853 +(1,21670:36675916,49800853:1179648,16384,0 +r1,22852:37855564,49800853:1179648,16384,0 +) +) +k1,22852:3078556,49800853:-34777008 +) +] +g1,22852:6630773,4812305 +k1,22852:21078841,4812305:13252691 +g1,22852:22701512,4812305 +g1,22852:23350318,4812305 +g1,22852:24759997,4812305 +g1,22852:28372341,4812305 +g1,22852:30105768,4812305 +) +) +] +[1,22852:6630773,45706769:25952256,40108032,0 +(1,22852:6630773,45706769:25952256,40108032,0 +(1,22852:6630773,45706769:0,0,0 +g1,22852:6630773,45706769 +) +[1,22852:6630773,45706769:25952256,40108032,0 +v1,22830:6630773,6254097:0,393216,0 +(1,22830:6630773,38749935:25952256,32889054,196608 +g1,22830:6630773,38749935 +g1,22830:6630773,38749935 +g1,22830:6434165,38749935 +(1,22830:6434165,38749935:0,32889054,196608 +r1,22852:32779637,38749935:26345472,33085662,196608 +k1,22830:6434165,38749935:-26345472 +) +(1,22830:6434165,38749935:26345472,32889054,196608 +[1,22830:6630773,38749935:25952256,32692446,0 +(1,22829:6630773,6481928:25952256,424439,79822 +h1,22829:6630773,6481928:0,0,0 +g1,22829:7626635,6481928 +g1,22829:7958589,6481928 +g1,22829:8290543,6481928 +g1,22829:8622497,6481928 +g1,22829:8954451,6481928 +g1,22829:9286405,6481928 +g1,22829:9618359,6481928 +g1,22829:9950313,6481928 +g1,22829:10282267,6481928 +g1,22829:10614221,6481928 +g1,22829:10946175,6481928 +g1,22829:11278129,6481928 +g1,22829:11610083,6481928 +g1,22829:11942037,6481928 +g1,22829:12273991,6481928 +g1,22829:12605945,6481928 +g1,22829:12937899,6481928 +g1,22829:13269853,6481928 +g1,22829:13601807,6481928 +g1,22829:13933761,6481928 +g1,22829:14265715,6481928 +h1,22829:16257439,6481928:0,0,0 +k1,22829:32583029,6481928:16325590 +g1,22829:32583029,6481928 +) +(1,22829:6630773,7166783:25952256,424439,79822 +h1,22829:6630773,7166783:0,0,0 +g1,22829:7626635,7166783 +g1,22829:7958589,7166783 +g1,22829:8290543,7166783 +g1,22829:8622497,7166783 +g1,22829:8954451,7166783 +g1,22829:9286405,7166783 +g1,22829:9618359,7166783 +g1,22829:9950313,7166783 +g1,22829:10282267,7166783 +g1,22829:10614221,7166783 +g1,22829:10946175,7166783 +g1,22829:11278129,7166783 +g1,22829:11610083,7166783 +g1,22829:11942037,7166783 +g1,22829:12273991,7166783 +g1,22829:12605945,7166783 +g1,22829:12937899,7166783 +g1,22829:13269853,7166783 +g1,22829:13601807,7166783 +h1,22829:15593531,7166783:0,0,0 +k1,22829:32583029,7166783:16989498 +g1,22829:32583029,7166783 +) +(1,22829:6630773,7851638:25952256,424439,106246 +h1,22829:6630773,7851638:0,0,0 +g1,22829:7626635,7851638 +g1,22829:7958589,7851638 +g1,22829:8290543,7851638 +g1,22829:8622497,7851638 +g1,22829:8954451,7851638 +g1,22829:9286405,7851638 +g1,22829:9618359,7851638 +g1,22829:9950313,7851638 +g1,22829:10282267,7851638 +g1,22829:10614221,7851638 +g1,22829:10946175,7851638 +g1,22829:11278129,7851638 +g1,22829:11610083,7851638 +g1,22829:11942037,7851638 +g1,22829:12273991,7851638 +g1,22829:12605945,7851638 +g1,22829:12937899,7851638 +g1,22829:13269853,7851638 +g1,22829:13601807,7851638 +k1,22829:13601807,7851638:0 +h1,22829:17585254,7851638:0,0,0 +k1,22829:32583029,7851638:14997775 +g1,22829:32583029,7851638 +) +(1,22829:6630773,8536493:25952256,431045,86428 +h1,22829:6630773,8536493:0,0,0 +g1,22829:7626635,8536493 +g1,22829:7958589,8536493 +g1,22829:8290543,8536493 +g1,22829:8622497,8536493 +g1,22829:8954451,8536493 +g1,22829:9286405,8536493 +g1,22829:9618359,8536493 +g1,22829:9950313,8536493 +g1,22829:10282267,8536493 +g1,22829:10614221,8536493 +g1,22829:10946175,8536493 +g1,22829:11278129,8536493 +g1,22829:11610083,8536493 +g1,22829:11942037,8536493 +g1,22829:12273991,8536493 +g1,22829:12605945,8536493 +g1,22829:12937899,8536493 +g1,22829:13269853,8536493 +g1,22829:13601807,8536493 +g1,22829:13933761,8536493 +g1,22829:14265715,8536493 +g1,22829:15261577,8536493 +g1,22829:17585255,8536493 +g1,22829:21900657,8536493 +k1,22829:21900657,8536493:0 +h1,22829:25220196,8536493:0,0,0 +k1,22829:32583029,8536493:7362833 +g1,22829:32583029,8536493 +) +(1,22829:6630773,9221348:25952256,424439,79822 +h1,22829:6630773,9221348:0,0,0 +g1,22829:7626635,9221348 +g1,22829:7958589,9221348 +g1,22829:8290543,9221348 +g1,22829:8622497,9221348 +g1,22829:8954451,9221348 +g1,22829:9286405,9221348 +g1,22829:9618359,9221348 +g1,22829:9950313,9221348 +g1,22829:10282267,9221348 +g1,22829:10614221,9221348 +g1,22829:10946175,9221348 +g1,22829:11278129,9221348 +g1,22829:11610083,9221348 +g1,22829:11942037,9221348 +g1,22829:12273991,9221348 +g1,22829:12605945,9221348 +g1,22829:12937899,9221348 +g1,22829:13269853,9221348 +g1,22829:13601807,9221348 +g1,22829:13933761,9221348 +g1,22829:14265715,9221348 +h1,22829:16257439,9221348:0,0,0 +k1,22829:32583029,9221348:16325590 +g1,22829:32583029,9221348 +) +(1,22829:6630773,9906203:25952256,398014,106246 +h1,22829:6630773,9906203:0,0,0 +g1,22829:7626635,9906203 +g1,22829:7958589,9906203 +g1,22829:8290543,9906203 +g1,22829:8622497,9906203 +g1,22829:8954451,9906203 +g1,22829:9286405,9906203 +g1,22829:9618359,9906203 +g1,22829:9950313,9906203 +g1,22829:10282267,9906203 +g1,22829:10614221,9906203 +g1,22829:10946175,9906203 +g1,22829:11278129,9906203 +g1,22829:11610083,9906203 +g1,22829:11942037,9906203 +g1,22829:12273991,9906203 +g1,22829:12605945,9906203 +g1,22829:12937899,9906203 +g1,22829:13269853,9906203 +g1,22829:13601807,9906203 +g1,22829:13933761,9906203 +g1,22829:14265715,9906203 +k1,22829:14265715,9906203:0 +h1,22829:17253300,9906203:0,0,0 +k1,22829:32583029,9906203:15329729 +g1,22829:32583029,9906203 +) +(1,22829:6630773,10591058:25952256,424439,79822 +h1,22829:6630773,10591058:0,0,0 +g1,22829:7626635,10591058 +g1,22829:7958589,10591058 +g1,22829:8290543,10591058 +g1,22829:8622497,10591058 +g1,22829:8954451,10591058 +g1,22829:9286405,10591058 +g1,22829:9618359,10591058 +g1,22829:9950313,10591058 +g1,22829:10282267,10591058 +g1,22829:10614221,10591058 +g1,22829:10946175,10591058 +g1,22829:11278129,10591058 +g1,22829:11610083,10591058 +g1,22829:11942037,10591058 +g1,22829:12273991,10591058 +g1,22829:12605945,10591058 +g1,22829:12937899,10591058 +g1,22829:13269853,10591058 +g1,22829:13601807,10591058 +g1,22829:13933761,10591058 +g1,22829:14265715,10591058 +g1,22829:14597669,10591058 +g1,22829:14929623,10591058 +h1,22829:16921347,10591058:0,0,0 +k1,22829:32583029,10591058:15661682 +g1,22829:32583029,10591058 +) +(1,22829:6630773,11275913:25952256,424439,79822 +h1,22829:6630773,11275913:0,0,0 +g1,22829:7626635,11275913 +g1,22829:7958589,11275913 +g1,22829:8290543,11275913 +g1,22829:8622497,11275913 +g1,22829:8954451,11275913 +g1,22829:9286405,11275913 +g1,22829:9618359,11275913 +g1,22829:9950313,11275913 +g1,22829:10282267,11275913 +g1,22829:10614221,11275913 +g1,22829:10946175,11275913 +g1,22829:11278129,11275913 +g1,22829:11610083,11275913 +g1,22829:11942037,11275913 +g1,22829:12273991,11275913 +g1,22829:12605945,11275913 +g1,22829:12937899,11275913 +g1,22829:13269853,11275913 +g1,22829:13601807,11275913 +g1,22829:13933761,11275913 +g1,22829:14265715,11275913 +h1,22829:16257439,11275913:0,0,0 +k1,22829:32583029,11275913:16325590 +g1,22829:32583029,11275913 +) +(1,22829:6630773,11960768:25952256,398014,106246 +h1,22829:6630773,11960768:0,0,0 +g1,22829:7626635,11960768 +g1,22829:7958589,11960768 +g1,22829:8290543,11960768 +g1,22829:8622497,11960768 +g1,22829:8954451,11960768 +g1,22829:9286405,11960768 +g1,22829:9618359,11960768 +g1,22829:9950313,11960768 +g1,22829:10282267,11960768 +g1,22829:10614221,11960768 +g1,22829:10946175,11960768 +g1,22829:11278129,11960768 +g1,22829:11610083,11960768 +g1,22829:11942037,11960768 +g1,22829:12273991,11960768 +g1,22829:12605945,11960768 +g1,22829:12937899,11960768 +g1,22829:13269853,11960768 +g1,22829:13601807,11960768 +g1,22829:13933761,11960768 +g1,22829:14265715,11960768 +k1,22829:14265715,11960768:0 +h1,22829:17253300,11960768:0,0,0 +k1,22829:32583029,11960768:15329729 +g1,22829:32583029,11960768 +) +(1,22829:6630773,12645623:25952256,424439,79822 +h1,22829:6630773,12645623:0,0,0 +g1,22829:7626635,12645623 +g1,22829:7958589,12645623 +g1,22829:8290543,12645623 +g1,22829:8622497,12645623 +g1,22829:8954451,12645623 +g1,22829:9286405,12645623 +g1,22829:9618359,12645623 +g1,22829:9950313,12645623 +g1,22829:10282267,12645623 +g1,22829:10614221,12645623 +g1,22829:10946175,12645623 +g1,22829:11278129,12645623 +g1,22829:11610083,12645623 +g1,22829:11942037,12645623 +g1,22829:12273991,12645623 +g1,22829:12605945,12645623 +g1,22829:12937899,12645623 +g1,22829:13269853,12645623 +g1,22829:13601807,12645623 +g1,22829:13933761,12645623 +g1,22829:14265715,12645623 +g1,22829:14597669,12645623 +g1,22829:14929623,12645623 +h1,22829:16921347,12645623:0,0,0 +k1,22829:32583029,12645623:15661682 +g1,22829:32583029,12645623 +) +(1,22829:6630773,13330478:25952256,424439,79822 +h1,22829:6630773,13330478:0,0,0 +g1,22829:7626635,13330478 +g1,22829:7958589,13330478 +g1,22829:8290543,13330478 +g1,22829:8622497,13330478 +g1,22829:8954451,13330478 +g1,22829:9286405,13330478 +g1,22829:9618359,13330478 +g1,22829:9950313,13330478 +g1,22829:10282267,13330478 +g1,22829:10614221,13330478 +g1,22829:10946175,13330478 +g1,22829:11278129,13330478 +g1,22829:11610083,13330478 +g1,22829:11942037,13330478 +g1,22829:12273991,13330478 +g1,22829:12605945,13330478 +g1,22829:12937899,13330478 +g1,22829:13269853,13330478 +g1,22829:13601807,13330478 +g1,22829:13933761,13330478 +g1,22829:14265715,13330478 +h1,22829:16257439,13330478:0,0,0 +k1,22829:32583029,13330478:16325590 +g1,22829:32583029,13330478 +) +(1,22829:6630773,14015333:25952256,398014,106246 +h1,22829:6630773,14015333:0,0,0 +g1,22829:7626635,14015333 +g1,22829:7958589,14015333 +g1,22829:8290543,14015333 +g1,22829:8622497,14015333 +g1,22829:8954451,14015333 +g1,22829:9286405,14015333 +g1,22829:9618359,14015333 +g1,22829:9950313,14015333 +g1,22829:10282267,14015333 +g1,22829:10614221,14015333 +g1,22829:10946175,14015333 +g1,22829:11278129,14015333 +g1,22829:11610083,14015333 +g1,22829:11942037,14015333 +g1,22829:12273991,14015333 +g1,22829:12605945,14015333 +g1,22829:12937899,14015333 +g1,22829:13269853,14015333 +g1,22829:13601807,14015333 +g1,22829:13933761,14015333 +g1,22829:14265715,14015333 +k1,22829:14265715,14015333:0 +h1,22829:17253300,14015333:0,0,0 +k1,22829:32583029,14015333:15329729 +g1,22829:32583029,14015333 +) +(1,22829:6630773,14700188:25952256,424439,79822 +h1,22829:6630773,14700188:0,0,0 +g1,22829:7626635,14700188 +g1,22829:7958589,14700188 +g1,22829:8290543,14700188 +g1,22829:8622497,14700188 +g1,22829:8954451,14700188 +g1,22829:9286405,14700188 +g1,22829:9618359,14700188 +g1,22829:9950313,14700188 +g1,22829:10282267,14700188 +g1,22829:10614221,14700188 +g1,22829:10946175,14700188 +g1,22829:11278129,14700188 +g1,22829:11610083,14700188 +g1,22829:11942037,14700188 +g1,22829:12273991,14700188 +g1,22829:12605945,14700188 +g1,22829:12937899,14700188 +g1,22829:13269853,14700188 +g1,22829:13601807,14700188 +g1,22829:13933761,14700188 +g1,22829:14265715,14700188 +g1,22829:14597669,14700188 +g1,22829:14929623,14700188 +h1,22829:16921347,14700188:0,0,0 +k1,22829:32583029,14700188:15661682 +g1,22829:32583029,14700188 +) +(1,22829:6630773,15385043:25952256,424439,79822 +h1,22829:6630773,15385043:0,0,0 +g1,22829:7626635,15385043 +g1,22829:7958589,15385043 +g1,22829:8290543,15385043 +g1,22829:8622497,15385043 +g1,22829:8954451,15385043 +g1,22829:9286405,15385043 +g1,22829:9618359,15385043 +g1,22829:9950313,15385043 +g1,22829:10282267,15385043 +g1,22829:10614221,15385043 +g1,22829:10946175,15385043 +g1,22829:11278129,15385043 +g1,22829:11610083,15385043 +g1,22829:11942037,15385043 +g1,22829:12273991,15385043 +g1,22829:12605945,15385043 +g1,22829:12937899,15385043 +g1,22829:13269853,15385043 +g1,22829:13601807,15385043 +h1,22829:15593531,15385043:0,0,0 +k1,22829:32583029,15385043:16989498 +g1,22829:32583029,15385043 +) +(1,22829:6630773,16069898:25952256,424439,106246 +h1,22829:6630773,16069898:0,0,0 +g1,22829:7626635,16069898 +g1,22829:7958589,16069898 +g1,22829:8290543,16069898 +g1,22829:8622497,16069898 +g1,22829:8954451,16069898 +g1,22829:9286405,16069898 +g1,22829:9618359,16069898 +g1,22829:9950313,16069898 +g1,22829:10282267,16069898 +g1,22829:10614221,16069898 +g1,22829:10946175,16069898 +g1,22829:11278129,16069898 +g1,22829:11610083,16069898 +g1,22829:11942037,16069898 +g1,22829:12273991,16069898 +g1,22829:12605945,16069898 +g1,22829:12937899,16069898 +g1,22829:13269853,16069898 +g1,22829:13601807,16069898 +k1,22829:13601807,16069898:0 +h1,22829:17585254,16069898:0,0,0 +k1,22829:32583029,16069898:14997775 +g1,22829:32583029,16069898 +) +(1,22829:6630773,16754753:25952256,431045,86428 +h1,22829:6630773,16754753:0,0,0 +g1,22829:7626635,16754753 +g1,22829:7958589,16754753 +g1,22829:8290543,16754753 +g1,22829:8622497,16754753 +g1,22829:8954451,16754753 +g1,22829:9286405,16754753 +g1,22829:9618359,16754753 +g1,22829:9950313,16754753 +g1,22829:10282267,16754753 +g1,22829:10614221,16754753 +g1,22829:10946175,16754753 +g1,22829:11278129,16754753 +g1,22829:11610083,16754753 +g1,22829:11942037,16754753 +g1,22829:12273991,16754753 +g1,22829:12605945,16754753 +g1,22829:12937899,16754753 +g1,22829:13269853,16754753 +g1,22829:13601807,16754753 +g1,22829:13933761,16754753 +g1,22829:14265715,16754753 +g1,22829:15261577,16754753 +g1,22829:17585255,16754753 +g1,22829:21900657,16754753 +k1,22829:21900657,16754753:0 +h1,22829:25220196,16754753:0,0,0 +k1,22829:32583029,16754753:7362833 +g1,22829:32583029,16754753 +) +(1,22829:6630773,17439608:25952256,424439,79822 +h1,22829:6630773,17439608:0,0,0 +g1,22829:7626635,17439608 +g1,22829:7958589,17439608 +g1,22829:8290543,17439608 +g1,22829:8622497,17439608 +g1,22829:8954451,17439608 +g1,22829:9286405,17439608 +g1,22829:9618359,17439608 +g1,22829:9950313,17439608 +g1,22829:10282267,17439608 +g1,22829:10614221,17439608 +g1,22829:10946175,17439608 +g1,22829:11278129,17439608 +g1,22829:11610083,17439608 +g1,22829:11942037,17439608 +g1,22829:12273991,17439608 +g1,22829:12605945,17439608 +g1,22829:12937899,17439608 +g1,22829:13269853,17439608 +g1,22829:13601807,17439608 +g1,22829:13933761,17439608 +g1,22829:14265715,17439608 +h1,22829:16257439,17439608:0,0,0 +k1,22829:32583029,17439608:16325590 +g1,22829:32583029,17439608 +) +(1,22829:6630773,18124463:25952256,424439,79822 +h1,22829:6630773,18124463:0,0,0 +g1,22829:7626635,18124463 +g1,22829:7958589,18124463 +g1,22829:8290543,18124463 +g1,22829:8622497,18124463 +g1,22829:8954451,18124463 +g1,22829:9286405,18124463 +g1,22829:9618359,18124463 +g1,22829:9950313,18124463 +g1,22829:10282267,18124463 +g1,22829:10614221,18124463 +g1,22829:10946175,18124463 +g1,22829:11278129,18124463 +g1,22829:11610083,18124463 +g1,22829:11942037,18124463 +g1,22829:12273991,18124463 +g1,22829:12605945,18124463 +g1,22829:12937899,18124463 +g1,22829:13269853,18124463 +g1,22829:13601807,18124463 +h1,22829:15593531,18124463:0,0,0 +k1,22829:32583029,18124463:16989498 +g1,22829:32583029,18124463 +) +(1,22829:6630773,18809318:25952256,424439,106246 +h1,22829:6630773,18809318:0,0,0 +g1,22829:7626635,18809318 +g1,22829:7958589,18809318 +g1,22829:8290543,18809318 +g1,22829:8622497,18809318 +g1,22829:8954451,18809318 +g1,22829:9286405,18809318 +g1,22829:9618359,18809318 +g1,22829:9950313,18809318 +g1,22829:10282267,18809318 +g1,22829:10614221,18809318 +g1,22829:10946175,18809318 +g1,22829:11278129,18809318 +g1,22829:11610083,18809318 +g1,22829:11942037,18809318 +g1,22829:12273991,18809318 +g1,22829:12605945,18809318 +g1,22829:12937899,18809318 +g1,22829:13269853,18809318 +g1,22829:13601807,18809318 +k1,22829:13601807,18809318:0 +h1,22829:17585254,18809318:0,0,0 +k1,22829:32583029,18809318:14997775 +g1,22829:32583029,18809318 +) +(1,22829:6630773,19494173:25952256,431045,86428 +h1,22829:6630773,19494173:0,0,0 +g1,22829:7626635,19494173 +g1,22829:7958589,19494173 +g1,22829:8290543,19494173 +g1,22829:8622497,19494173 +g1,22829:8954451,19494173 +g1,22829:9286405,19494173 +g1,22829:9618359,19494173 +g1,22829:9950313,19494173 +g1,22829:10282267,19494173 +g1,22829:10614221,19494173 +g1,22829:10946175,19494173 +g1,22829:11278129,19494173 +g1,22829:11610083,19494173 +g1,22829:11942037,19494173 +g1,22829:12273991,19494173 +g1,22829:12605945,19494173 +g1,22829:12937899,19494173 +g1,22829:13269853,19494173 +g1,22829:13601807,19494173 +g1,22829:13933761,19494173 +g1,22829:14265715,19494173 +g1,22829:15261577,19494173 +g1,22829:17585255,19494173 +g1,22829:21900657,19494173 +k1,22829:21900657,19494173:0 +h1,22829:25220196,19494173:0,0,0 +k1,22829:32583029,19494173:7362833 +g1,22829:32583029,19494173 +) +(1,22829:6630773,20179028:25952256,424439,79822 +h1,22829:6630773,20179028:0,0,0 +g1,22829:7626635,20179028 +g1,22829:7958589,20179028 +g1,22829:8290543,20179028 +g1,22829:8622497,20179028 +g1,22829:8954451,20179028 +g1,22829:9286405,20179028 +g1,22829:9618359,20179028 +g1,22829:9950313,20179028 +g1,22829:10282267,20179028 +g1,22829:10614221,20179028 +g1,22829:10946175,20179028 +g1,22829:11278129,20179028 +g1,22829:11610083,20179028 +g1,22829:11942037,20179028 +g1,22829:12273991,20179028 +g1,22829:12605945,20179028 +g1,22829:12937899,20179028 +g1,22829:13269853,20179028 +g1,22829:13601807,20179028 +g1,22829:13933761,20179028 +g1,22829:14265715,20179028 +h1,22829:16257439,20179028:0,0,0 +k1,22829:32583029,20179028:16325590 +g1,22829:32583029,20179028 +) +(1,22829:6630773,20863883:25952256,398014,106246 +h1,22829:6630773,20863883:0,0,0 +g1,22829:7626635,20863883 +g1,22829:7958589,20863883 +g1,22829:8290543,20863883 +g1,22829:8622497,20863883 +g1,22829:8954451,20863883 +g1,22829:9286405,20863883 +g1,22829:9618359,20863883 +g1,22829:9950313,20863883 +g1,22829:10282267,20863883 +g1,22829:10614221,20863883 +g1,22829:10946175,20863883 +g1,22829:11278129,20863883 +g1,22829:11610083,20863883 +g1,22829:11942037,20863883 +g1,22829:12273991,20863883 +g1,22829:12605945,20863883 +g1,22829:12937899,20863883 +g1,22829:13269853,20863883 +g1,22829:13601807,20863883 +g1,22829:13933761,20863883 +g1,22829:14265715,20863883 +k1,22829:14265715,20863883:0 +h1,22829:17253300,20863883:0,0,0 +k1,22829:32583029,20863883:15329729 +g1,22829:32583029,20863883 +) +(1,22829:6630773,21548738:25952256,424439,79822 +h1,22829:6630773,21548738:0,0,0 +g1,22829:7626635,21548738 +g1,22829:7958589,21548738 +g1,22829:8290543,21548738 +g1,22829:8622497,21548738 +g1,22829:8954451,21548738 +g1,22829:9286405,21548738 +g1,22829:9618359,21548738 +g1,22829:9950313,21548738 +g1,22829:10282267,21548738 +g1,22829:10614221,21548738 +g1,22829:10946175,21548738 +g1,22829:11278129,21548738 +g1,22829:11610083,21548738 +g1,22829:11942037,21548738 +g1,22829:12273991,21548738 +g1,22829:12605945,21548738 +g1,22829:12937899,21548738 +g1,22829:13269853,21548738 +g1,22829:13601807,21548738 +g1,22829:13933761,21548738 +g1,22829:14265715,21548738 +g1,22829:14597669,21548738 +g1,22829:14929623,21548738 +h1,22829:16921347,21548738:0,0,0 +k1,22829:32583029,21548738:15661682 +g1,22829:32583029,21548738 +) +(1,22829:6630773,22233593:25952256,424439,79822 +h1,22829:6630773,22233593:0,0,0 +g1,22829:7626635,22233593 +g1,22829:7958589,22233593 +g1,22829:8290543,22233593 +g1,22829:8622497,22233593 +g1,22829:8954451,22233593 +g1,22829:9286405,22233593 +g1,22829:9618359,22233593 +g1,22829:9950313,22233593 +g1,22829:10282267,22233593 +g1,22829:10614221,22233593 +g1,22829:10946175,22233593 +g1,22829:11278129,22233593 +g1,22829:11610083,22233593 +g1,22829:11942037,22233593 +g1,22829:12273991,22233593 +g1,22829:12605945,22233593 +g1,22829:12937899,22233593 +g1,22829:13269853,22233593 +g1,22829:13601807,22233593 +g1,22829:13933761,22233593 +g1,22829:14265715,22233593 +h1,22829:16257439,22233593:0,0,0 +k1,22829:32583029,22233593:16325590 +g1,22829:32583029,22233593 +) +(1,22829:6630773,22918448:25952256,398014,106246 +h1,22829:6630773,22918448:0,0,0 +g1,22829:7626635,22918448 +g1,22829:7958589,22918448 +g1,22829:8290543,22918448 +g1,22829:8622497,22918448 +g1,22829:8954451,22918448 +g1,22829:9286405,22918448 +g1,22829:9618359,22918448 +g1,22829:9950313,22918448 +g1,22829:10282267,22918448 +g1,22829:10614221,22918448 +g1,22829:10946175,22918448 +g1,22829:11278129,22918448 +g1,22829:11610083,22918448 +g1,22829:11942037,22918448 +g1,22829:12273991,22918448 +g1,22829:12605945,22918448 +g1,22829:12937899,22918448 +g1,22829:13269853,22918448 +g1,22829:13601807,22918448 +g1,22829:13933761,22918448 +g1,22829:14265715,22918448 +k1,22829:14265715,22918448:0 +h1,22829:17253300,22918448:0,0,0 +k1,22829:32583029,22918448:15329729 +g1,22829:32583029,22918448 +) +(1,22829:6630773,23603303:25952256,424439,79822 +h1,22829:6630773,23603303:0,0,0 +g1,22829:7626635,23603303 +g1,22829:7958589,23603303 +g1,22829:8290543,23603303 +g1,22829:8622497,23603303 +g1,22829:8954451,23603303 +g1,22829:9286405,23603303 +g1,22829:9618359,23603303 +g1,22829:9950313,23603303 +g1,22829:10282267,23603303 +g1,22829:10614221,23603303 +g1,22829:10946175,23603303 +g1,22829:11278129,23603303 +g1,22829:11610083,23603303 +g1,22829:11942037,23603303 +g1,22829:12273991,23603303 +g1,22829:12605945,23603303 +g1,22829:12937899,23603303 +g1,22829:13269853,23603303 +g1,22829:13601807,23603303 +g1,22829:13933761,23603303 +g1,22829:14265715,23603303 +g1,22829:14597669,23603303 +g1,22829:14929623,23603303 +h1,22829:16921347,23603303:0,0,0 +k1,22829:32583029,23603303:15661682 +g1,22829:32583029,23603303 +) +(1,22829:6630773,24288158:25952256,424439,79822 +h1,22829:6630773,24288158:0,0,0 +g1,22829:7626635,24288158 +g1,22829:7958589,24288158 +g1,22829:8290543,24288158 +g1,22829:8622497,24288158 +g1,22829:8954451,24288158 +g1,22829:9286405,24288158 +g1,22829:9618359,24288158 +g1,22829:9950313,24288158 +g1,22829:10282267,24288158 +g1,22829:10614221,24288158 +g1,22829:10946175,24288158 +g1,22829:11278129,24288158 +g1,22829:11610083,24288158 +g1,22829:11942037,24288158 +g1,22829:12273991,24288158 +g1,22829:12605945,24288158 +g1,22829:12937899,24288158 +g1,22829:13269853,24288158 +g1,22829:13601807,24288158 +g1,22829:13933761,24288158 +g1,22829:14265715,24288158 +h1,22829:16257439,24288158:0,0,0 +k1,22829:32583029,24288158:16325590 +g1,22829:32583029,24288158 +) +(1,22829:6630773,24973013:25952256,398014,106246 +h1,22829:6630773,24973013:0,0,0 +g1,22829:7626635,24973013 +g1,22829:7958589,24973013 +g1,22829:8290543,24973013 +g1,22829:8622497,24973013 +g1,22829:8954451,24973013 +g1,22829:9286405,24973013 +g1,22829:9618359,24973013 +g1,22829:9950313,24973013 +g1,22829:10282267,24973013 +g1,22829:10614221,24973013 +g1,22829:10946175,24973013 +g1,22829:11278129,24973013 +g1,22829:11610083,24973013 +g1,22829:11942037,24973013 +g1,22829:12273991,24973013 +g1,22829:12605945,24973013 +g1,22829:12937899,24973013 +g1,22829:13269853,24973013 +g1,22829:13601807,24973013 +g1,22829:13933761,24973013 +g1,22829:14265715,24973013 +k1,22829:14265715,24973013:0 +h1,22829:17253300,24973013:0,0,0 +k1,22829:32583029,24973013:15329729 +g1,22829:32583029,24973013 +) +(1,22829:6630773,25657868:25952256,424439,79822 +h1,22829:6630773,25657868:0,0,0 +g1,22829:7626635,25657868 +g1,22829:7958589,25657868 +g1,22829:8290543,25657868 +g1,22829:8622497,25657868 +g1,22829:8954451,25657868 +g1,22829:9286405,25657868 +g1,22829:9618359,25657868 +g1,22829:9950313,25657868 +g1,22829:10282267,25657868 +g1,22829:10614221,25657868 +g1,22829:10946175,25657868 +g1,22829:11278129,25657868 +g1,22829:11610083,25657868 +g1,22829:11942037,25657868 +g1,22829:12273991,25657868 +g1,22829:12605945,25657868 +g1,22829:12937899,25657868 +g1,22829:13269853,25657868 +g1,22829:13601807,25657868 +g1,22829:13933761,25657868 +g1,22829:14265715,25657868 +g1,22829:14597669,25657868 +g1,22829:14929623,25657868 +h1,22829:16921347,25657868:0,0,0 +k1,22829:32583029,25657868:15661682 +g1,22829:32583029,25657868 +) +(1,22829:6630773,26342723:25952256,424439,79822 +h1,22829:6630773,26342723:0,0,0 +g1,22829:7626635,26342723 +g1,22829:7958589,26342723 +g1,22829:8290543,26342723 +g1,22829:8622497,26342723 +g1,22829:8954451,26342723 +g1,22829:9286405,26342723 +g1,22829:9618359,26342723 +g1,22829:9950313,26342723 +g1,22829:10282267,26342723 +g1,22829:10614221,26342723 +g1,22829:10946175,26342723 +g1,22829:11278129,26342723 +g1,22829:11610083,26342723 +g1,22829:11942037,26342723 +g1,22829:12273991,26342723 +g1,22829:12605945,26342723 +g1,22829:12937899,26342723 +g1,22829:13269853,26342723 +g1,22829:13601807,26342723 +h1,22829:15593531,26342723:0,0,0 +k1,22829:32583029,26342723:16989498 +g1,22829:32583029,26342723 +) +(1,22829:6630773,27027578:25952256,424439,106246 +h1,22829:6630773,27027578:0,0,0 +g1,22829:7626635,27027578 +g1,22829:7958589,27027578 +g1,22829:8290543,27027578 +g1,22829:8622497,27027578 +g1,22829:8954451,27027578 +g1,22829:9286405,27027578 +g1,22829:9618359,27027578 +g1,22829:9950313,27027578 +g1,22829:10282267,27027578 +g1,22829:10614221,27027578 +g1,22829:10946175,27027578 +g1,22829:11278129,27027578 +g1,22829:11610083,27027578 +g1,22829:11942037,27027578 +g1,22829:12273991,27027578 +g1,22829:12605945,27027578 +g1,22829:12937899,27027578 +g1,22829:13269853,27027578 +g1,22829:13601807,27027578 +k1,22829:13601807,27027578:0 +h1,22829:17585254,27027578:0,0,0 +k1,22829:32583029,27027578:14997775 +g1,22829:32583029,27027578 +) +(1,22829:6630773,27712433:25952256,431045,86428 +h1,22829:6630773,27712433:0,0,0 +g1,22829:7626635,27712433 +g1,22829:7958589,27712433 +g1,22829:8290543,27712433 +g1,22829:8622497,27712433 +g1,22829:8954451,27712433 +g1,22829:9286405,27712433 +g1,22829:9618359,27712433 +g1,22829:9950313,27712433 +g1,22829:10282267,27712433 +g1,22829:10614221,27712433 +g1,22829:10946175,27712433 +g1,22829:11278129,27712433 +g1,22829:11610083,27712433 +g1,22829:11942037,27712433 +g1,22829:12273991,27712433 +g1,22829:12605945,27712433 +g1,22829:12937899,27712433 +g1,22829:13269853,27712433 +g1,22829:13601807,27712433 +g1,22829:13933761,27712433 +g1,22829:14265715,27712433 +g1,22829:15261577,27712433 +g1,22829:17585255,27712433 +g1,22829:21900657,27712433 +k1,22829:21900657,27712433:0 +h1,22829:25220196,27712433:0,0,0 +k1,22829:32583029,27712433:7362833 +g1,22829:32583029,27712433 +) +(1,22829:6630773,28397288:25952256,431045,106246 +h1,22829:6630773,28397288:0,0,0 +g1,22829:7626635,28397288 +g1,22829:7958589,28397288 +g1,22829:8290543,28397288 +g1,22829:8622497,28397288 +g1,22829:8954451,28397288 +g1,22829:9286405,28397288 +g1,22829:9618359,28397288 +g1,22829:9950313,28397288 +g1,22829:10282267,28397288 +g1,22829:10614221,28397288 +g1,22829:10946175,28397288 +g1,22829:11278129,28397288 +g1,22829:11610083,28397288 +g1,22829:11942037,28397288 +g1,22829:12273991,28397288 +g1,22829:12605945,28397288 +g1,22829:12937899,28397288 +g1,22829:13269853,28397288 +g1,22829:13601807,28397288 +g1,22829:13933761,28397288 +g1,22829:14265715,28397288 +k1,22829:14265715,28397288:0 +h1,22829:17253300,28397288:0,0,0 +k1,22829:32583029,28397288:15329729 +g1,22829:32583029,28397288 +) +(1,22829:6630773,29082143:25952256,424439,79822 +h1,22829:6630773,29082143:0,0,0 +g1,22829:7626635,29082143 +g1,22829:7958589,29082143 +g1,22829:8290543,29082143 +g1,22829:8622497,29082143 +g1,22829:8954451,29082143 +g1,22829:9286405,29082143 +g1,22829:9618359,29082143 +g1,22829:9950313,29082143 +g1,22829:10282267,29082143 +g1,22829:10614221,29082143 +g1,22829:10946175,29082143 +g1,22829:11278129,29082143 +g1,22829:11610083,29082143 +g1,22829:11942037,29082143 +g1,22829:12273991,29082143 +g1,22829:12605945,29082143 +g1,22829:12937899,29082143 +g1,22829:13269853,29082143 +g1,22829:13601807,29082143 +g1,22829:13933761,29082143 +g1,22829:14265715,29082143 +g1,22829:14597669,29082143 +g1,22829:14929623,29082143 +h1,22829:16921347,29082143:0,0,0 +k1,22829:32583029,29082143:15661682 +g1,22829:32583029,29082143 +) +(1,22829:6630773,29766998:25952256,424439,79822 +h1,22829:6630773,29766998:0,0,0 +g1,22829:7626635,29766998 +g1,22829:7958589,29766998 +g1,22829:8290543,29766998 +g1,22829:8622497,29766998 +g1,22829:8954451,29766998 +g1,22829:9286405,29766998 +g1,22829:9618359,29766998 +g1,22829:9950313,29766998 +g1,22829:10282267,29766998 +g1,22829:10614221,29766998 +g1,22829:10946175,29766998 +g1,22829:11278129,29766998 +g1,22829:11610083,29766998 +g1,22829:11942037,29766998 +g1,22829:12273991,29766998 +g1,22829:12605945,29766998 +g1,22829:12937899,29766998 +g1,22829:13269853,29766998 +g1,22829:13601807,29766998 +g1,22829:13933761,29766998 +g1,22829:14265715,29766998 +h1,22829:16257439,29766998:0,0,0 +k1,22829:32583029,29766998:16325590 +g1,22829:32583029,29766998 +) +(1,22829:6630773,30451853:25952256,398014,106246 +h1,22829:6630773,30451853:0,0,0 +g1,22829:7626635,30451853 +g1,22829:7958589,30451853 +g1,22829:8290543,30451853 +g1,22829:8622497,30451853 +g1,22829:8954451,30451853 +g1,22829:9286405,30451853 +g1,22829:9618359,30451853 +g1,22829:9950313,30451853 +g1,22829:10282267,30451853 +g1,22829:10614221,30451853 +g1,22829:10946175,30451853 +g1,22829:11278129,30451853 +g1,22829:11610083,30451853 +g1,22829:11942037,30451853 +g1,22829:12273991,30451853 +g1,22829:12605945,30451853 +g1,22829:12937899,30451853 +g1,22829:13269853,30451853 +g1,22829:13601807,30451853 +g1,22829:13933761,30451853 +g1,22829:14265715,30451853 +k1,22829:14265715,30451853:0 +h1,22829:17253300,30451853:0,0,0 +k1,22829:32583029,30451853:15329729 +g1,22829:32583029,30451853 +) +(1,22829:6630773,31136708:25952256,424439,79822 +h1,22829:6630773,31136708:0,0,0 +g1,22829:7626635,31136708 +g1,22829:7958589,31136708 +g1,22829:8290543,31136708 +g1,22829:8622497,31136708 +g1,22829:8954451,31136708 +g1,22829:9286405,31136708 +g1,22829:9618359,31136708 +g1,22829:9950313,31136708 +g1,22829:10282267,31136708 +g1,22829:10614221,31136708 +g1,22829:10946175,31136708 +g1,22829:11278129,31136708 +g1,22829:11610083,31136708 +g1,22829:11942037,31136708 +g1,22829:12273991,31136708 +g1,22829:12605945,31136708 +g1,22829:12937899,31136708 +g1,22829:13269853,31136708 +g1,22829:13601807,31136708 +g1,22829:13933761,31136708 +g1,22829:14265715,31136708 +g1,22829:14597669,31136708 +g1,22829:14929623,31136708 +h1,22829:16921347,31136708:0,0,0 +k1,22829:32583029,31136708:15661682 +g1,22829:32583029,31136708 +) +(1,22829:6630773,31821563:25952256,424439,79822 +h1,22829:6630773,31821563:0,0,0 +g1,22829:7626635,31821563 +g1,22829:7958589,31821563 +g1,22829:8290543,31821563 +g1,22829:8622497,31821563 +g1,22829:8954451,31821563 +g1,22829:9286405,31821563 +g1,22829:9618359,31821563 +g1,22829:9950313,31821563 +g1,22829:10282267,31821563 +g1,22829:10614221,31821563 +g1,22829:10946175,31821563 +g1,22829:11278129,31821563 +g1,22829:11610083,31821563 +g1,22829:11942037,31821563 +g1,22829:12273991,31821563 +g1,22829:12605945,31821563 +g1,22829:12937899,31821563 +g1,22829:13269853,31821563 +g1,22829:13601807,31821563 +g1,22829:13933761,31821563 +g1,22829:14265715,31821563 +h1,22829:16257439,31821563:0,0,0 +k1,22829:32583029,31821563:16325590 +g1,22829:32583029,31821563 +) +(1,22829:6630773,32506418:25952256,424439,106246 +h1,22829:6630773,32506418:0,0,0 +g1,22829:7626635,32506418 +g1,22829:7958589,32506418 +g1,22829:8290543,32506418 +g1,22829:8622497,32506418 +g1,22829:8954451,32506418 +g1,22829:9286405,32506418 +g1,22829:9618359,32506418 +g1,22829:9950313,32506418 +g1,22829:10282267,32506418 +g1,22829:10614221,32506418 +g1,22829:10946175,32506418 +g1,22829:11278129,32506418 +g1,22829:11610083,32506418 +g1,22829:11942037,32506418 +g1,22829:12273991,32506418 +g1,22829:12605945,32506418 +g1,22829:12937899,32506418 +g1,22829:21236748,32506418 +k1,22829:21236748,32506418:0 +h1,22829:23892380,32506418:0,0,0 +k1,22829:32583029,32506418:8690649 +g1,22829:32583029,32506418 +) +(1,22829:6630773,33191273:25952256,424439,6605 +h1,22829:6630773,33191273:0,0,0 +g1,22829:7626635,33191273 +g1,22829:7958589,33191273 +g1,22829:8290543,33191273 +g1,22829:8622497,33191273 +g1,22829:8954451,33191273 +g1,22829:9286405,33191273 +g1,22829:9618359,33191273 +g1,22829:9950313,33191273 +g1,22829:10282267,33191273 +g1,22829:10614221,33191273 +g1,22829:10946175,33191273 +g1,22829:11278129,33191273 +g1,22829:11610083,33191273 +g1,22829:11942037,33191273 +g1,22829:12273991,33191273 +g1,22829:12605945,33191273 +g1,22829:12937899,33191273 +g1,22829:13269853,33191273 +g1,22829:13601807,33191273 +k1,22829:13601807,33191273:0 +h1,22829:15593531,33191273:0,0,0 +k1,22829:32583029,33191273:16989498 +g1,22829:32583029,33191273 +) +(1,22829:6630773,33876128:25952256,424439,79822 +h1,22829:6630773,33876128:0,0,0 +g1,22829:7626635,33876128 +g1,22829:7958589,33876128 +g1,22829:8290543,33876128 +g1,22829:8622497,33876128 +g1,22829:8954451,33876128 +g1,22829:9286405,33876128 +g1,22829:9618359,33876128 +g1,22829:9950313,33876128 +g1,22829:10282267,33876128 +g1,22829:10614221,33876128 +g1,22829:10946175,33876128 +g1,22829:11278129,33876128 +g1,22829:11610083,33876128 +h1,22829:13601807,33876128:0,0,0 +k1,22829:32583029,33876128:18981222 +g1,22829:32583029,33876128 +) +(1,22829:6630773,34560983:25952256,424439,79822 +h1,22829:6630773,34560983:0,0,0 +g1,22829:7626635,34560983 +g1,22829:7958589,34560983 +g1,22829:8290543,34560983 +g1,22829:8622497,34560983 +g1,22829:8954451,34560983 +g1,22829:9286405,34560983 +g1,22829:9618359,34560983 +g1,22829:9950313,34560983 +g1,22829:10282267,34560983 +g1,22829:10614221,34560983 +g1,22829:10946175,34560983 +h1,22829:12937899,34560983:0,0,0 +k1,22829:32583029,34560983:19645130 +g1,22829:32583029,34560983 +) +(1,22829:6630773,35245838:25952256,424439,79822 +h1,22829:6630773,35245838:0,0,0 +g1,22829:7626635,35245838 +g1,22829:7958589,35245838 +g1,22829:8290543,35245838 +g1,22829:8622497,35245838 +g1,22829:8954451,35245838 +g1,22829:9286405,35245838 +g1,22829:9618359,35245838 +h1,22829:12605944,35245838:0,0,0 +k1,22829:32583028,35245838:19977084 +g1,22829:32583028,35245838 +) +(1,22829:6630773,35930693:25952256,431045,106246 +h1,22829:6630773,35930693:0,0,0 +g1,22829:7626635,35930693 +g1,22829:7958589,35930693 +g1,22829:8290543,35930693 +g1,22829:8622497,35930693 +g1,22829:8954451,35930693 +g1,22829:9286405,35930693 +g1,22829:9618359,35930693 +g1,22829:19908932,35930693 +k1,22829:19908932,35930693:0 +h1,22829:22232610,35930693:0,0,0 +k1,22829:32583029,35930693:10350419 +g1,22829:32583029,35930693 +) +(1,22829:6630773,36615548:25952256,424439,79822 +h1,22829:6630773,36615548:0,0,0 +g1,22829:7626635,36615548 +g1,22829:7958589,36615548 +g1,22829:8290543,36615548 +g1,22829:8622497,36615548 +g1,22829:8954451,36615548 +g1,22829:9286405,36615548 +g1,22829:9618359,36615548 +g1,22829:9950313,36615548 +g1,22829:10282267,36615548 +h1,22829:12605945,36615548:0,0,0 +k1,22829:32583029,36615548:19977084 +g1,22829:32583029,36615548 +) +(1,22829:6630773,37300403:25952256,424439,79822 +h1,22829:6630773,37300403:0,0,0 +g1,22829:7626635,37300403 +g1,22829:7958589,37300403 +g1,22829:8290543,37300403 +g1,22829:8622497,37300403 +g1,22829:8954451,37300403 +h1,22829:10946175,37300403:0,0,0 +k1,22829:32583029,37300403:21636854 +g1,22829:32583029,37300403 +) +(1,22829:6630773,37985258:25952256,424439,79822 +h1,22829:6630773,37985258:0,0,0 +g1,22829:7626635,37985258 +g1,22829:7958589,37985258 +g1,22829:8290543,37985258 +g1,22829:8622497,37985258 +g1,22829:8954451,37985258 +h1,22829:11942036,37985258:0,0,0 +k1,22829:32583028,37985258:20640992 +g1,22829:32583028,37985258 +) +(1,22829:6630773,38670113:25952256,424439,79822 +h1,22829:6630773,38670113:0,0,0 +g1,22829:7626635,38670113 +g1,22829:7958589,38670113 +g1,22829:8290543,38670113 +g1,22829:8622497,38670113 +g1,22829:8954451,38670113 +h1,22829:10946175,38670113:0,0,0 +k1,22829:32583029,38670113:21636854 +g1,22829:32583029,38670113 +) +] +) +g1,22830:32583029,38749935 +g1,22830:6630773,38749935 +g1,22830:6630773,38749935 +g1,22830:32583029,38749935 +g1,22830:32583029,38749935 +) +h1,22830:6630773,38946543:0,0,0 +(1,22834:6630773,39811623:25952256,513147,134348 +h1,22833:6630773,39811623:983040,0,0 +k1,22833:9710811,39811623:635545 +k1,22833:11214708,39811623:635545 +k1,22833:14054230,39811623:635546 +k1,22833:15708860,39811623:635545 +k1,22833:17570584,39811623:635545 +k1,22833:19773750,39811623:635545 +k1,22833:21197694,39811623:635546 +(1,22833:21197694,39811623:0,452978,115847 +r1,22852:22962807,39811623:1765113,568825,115847 +k1,22833:21197694,39811623:-1765113 +) +(1,22833:21197694,39811623:1765113,452978,115847 +k1,22833:21197694,39811623:3277 +h1,22833:22959530,39811623:0,411205,112570 +) +k1,22833:23598352,39811623:635545 +k1,22833:27186294,39811623:635545 +k1,22833:29557232,39811623:635545 +k1,22834:32583029,39811623:0 +) +(1,22834:6630773,40676703:25952256,505283,115847 +(1,22833:6630773,40676703:0,459977,115847 +r1,22852:11561293,40676703:4930520,575824,115847 +k1,22833:6630773,40676703:-4930520 +) +(1,22833:6630773,40676703:4930520,459977,115847 +k1,22833:6630773,40676703:3277 +h1,22833:11558016,40676703:0,411205,112570 +) +g1,22833:11760522,40676703 +g1,22833:13151196,40676703 +(1,22833:13151196,40676703:0,452978,115847 +r1,22852:16674868,40676703:3523672,568825,115847 +k1,22833:13151196,40676703:-3523672 +) +(1,22833:13151196,40676703:3523672,452978,115847 +k1,22833:13151196,40676703:3277 +h1,22833:16671591,40676703:0,411205,112570 +) +k1,22834:32583029,40676703:15734491 +g1,22834:32583029,40676703 +) +v1,22836:6630773,41361558:0,393216,0 +(1,22843:6630773,42524774:25952256,1556432,196608 +g1,22843:6630773,42524774 +g1,22843:6630773,42524774 +g1,22843:6434165,42524774 +(1,22843:6434165,42524774:0,1556432,196608 +r1,22852:32779637,42524774:26345472,1753040,196608 +k1,22843:6434165,42524774:-26345472 +) +(1,22843:6434165,42524774:26345472,1556432,196608 +[1,22843:6630773,42524774:25952256,1359824,0 +(1,22838:6630773,41595995:25952256,431045,112852 +(1,22837:6630773,41595995:0,0,0 +g1,22837:6630773,41595995 +g1,22837:6630773,41595995 +g1,22837:6303093,41595995 +(1,22837:6303093,41595995:0,0,0 +) +g1,22837:6630773,41595995 +) +k1,22838:6630773,41595995:0 +g1,22838:17253298,41595995 +h1,22838:21236745,41595995:0,0,0 +k1,22838:32583029,41595995:11346284 +g1,22838:32583029,41595995 +) +(1,22842:6630773,42411922:25952256,431045,112852 +(1,22840:6630773,42411922:0,0,0 +g1,22840:6630773,42411922 +g1,22840:6630773,42411922 +g1,22840:6303093,42411922 +(1,22840:6303093,42411922:0,0,0 +) +g1,22840:6630773,42411922 +) +g1,22842:7626635,42411922 +g1,22842:8954451,42411922 +g1,22842:9950313,42411922 +g1,22842:11278129,42411922 +g1,22842:15593530,42411922 +h1,22842:19245023,42411922:0,0,0 +k1,22842:32583029,42411922:13338006 +g1,22842:32583029,42411922 +) +] +) +g1,22843:32583029,42524774 +g1,22843:6630773,42524774 +g1,22843:6630773,42524774 +g1,22843:32583029,42524774 +g1,22843:32583029,42524774 +) +h1,22843:6630773,42721382:0,0,0 +(1,22848:6630773,43586462:25952256,513147,134348 +h1,22846:6630773,43586462:983040,0,0 +k1,22846:9023744,43586462:213244 +k1,22846:12262785,43586462:213244 +k1,22846:14857607,43586462:213244 +k1,22846:15686890,43586462:213245 +k1,22846:17103375,43586462:213244 +k1,22846:19896771,43586462:213244 +k1,22846:21214297,43586462:213244 +k1,22846:22175307,43586462:213244 +k1,22846:23901777,43586462:213244 +k1,22846:24766450,43586462:213245 +k1,22846:27930780,43586462:213244 +k1,22846:29533387,43586462:213244 +k1,22846:31314252,43586462:213244 +k1,22846:32583029,43586462:0 +) +(1,22848:6630773,44451542:25952256,513147,134348 +k1,22846:8809471,44451542:176573 +k1,22846:10058212,44451542:176572 +k1,22846:11520601,44451542:176573 +k1,22846:12348602,44451542:176573 +k1,22846:13937475,44451542:176572 +k1,22846:15503411,44451542:176573 +k1,22846:17247604,44451542:176572 +k1,22846:18737519,44451542:176573 +k1,22846:20649485,44451542:176573 +k1,22846:23336741,44451542:176572 +k1,22846:24797820,44451542:176573 +k1,22846:25965953,44451542:176573 +k1,22846:28524103,44451542:176572 +k1,22846:31259202,44451542:176573 +k1,22846:32583029,44451542:0 +) +(1,22848:6630773,45316622:25952256,505283,7863 +g1,22846:9735868,45316622 +k1,22848:32583028,45316622:22847160 +g1,22848:32583028,45316622 +) +] +(1,22852:32583029,45706769:0,0,0 +g1,22852:32583029,45706769 +) +) +] +(1,22852:6630773,47279633:25952256,0,0 +h1,22852:6630773,47279633:25952256,0,0 +) +] +(1,22852:4262630,4025873:0,0,0 +[1,22852:-473656,4025873:0,0,0 +(1,22852:-473656,-710413:0,0,0 +(1,22852:-473656,-710413:0,0,0 +g1,22852:-473656,-710413 +) +g1,22852:-473656,-710413 +) +] +) +] +!41313 +}393 +!12 +{394 +[1,22888:4262630,47279633:28320399,43253760,0 +(1,22888:4262630,4025873:0,0,0 +[1,22888:-473656,4025873:0,0,0 +(1,22888:-473656,-710413:0,0,0 +(1,22888:-473656,-644877:0,0,0 +k1,22888:-473656,-644877:-65536 ) -(1,22673:-473656,4736287:0,0,0 -k1,22673:-473656,4736287:5209943 +(1,22888:-473656,4736287:0,0,0 +k1,22888:-473656,4736287:5209943 ) -g1,22673:-473656,-710413 +g1,22888:-473656,-710413 ) ] ) -[1,22673:6630773,47279633:25952256,43253760,0 -[1,22673:6630773,4812305:25952256,786432,0 -(1,22673:6630773,4812305:25952256,505283,134348 -(1,22673:6630773,4812305:25952256,505283,134348 -g1,22673:3078558,4812305 -[1,22673:3078558,4812305:0,0,0 -(1,22673:3078558,2439708:0,1703936,0 -k1,22673:1358238,2439708:-1720320 -(1,21457:1358238,2439708:1720320,1703936,0 -(1,21457:1358238,2439708:1179648,16384,0 -r1,22673:2537886,2439708:1179648,16384,0 +[1,22888:6630773,47279633:25952256,43253760,0 +[1,22888:6630773,4812305:25952256,786432,0 +(1,22888:6630773,4812305:25952256,513147,126483 +(1,22888:6630773,4812305:25952256,513147,126483 +g1,22888:3078558,4812305 +[1,22888:3078558,4812305:0,0,0 +(1,22888:3078558,2439708:0,1703936,0 +k1,22888:1358238,2439708:-1720320 +(1,21670:1358238,2439708:1720320,1703936,0 +(1,21670:1358238,2439708:1179648,16384,0 +r1,22888:2537886,2439708:1179648,16384,0 ) -g1,21457:3062174,2439708 -(1,21457:3062174,2439708:16384,1703936,0 -[1,21457:3062174,2439708:25952256,1703936,0 -(1,21457:3062174,1915420:25952256,1179648,0 -(1,21457:3062174,1915420:16384,1179648,0 -r1,22673:3078558,1915420:16384,1179648,0 +g1,21670:3062174,2439708 +(1,21670:3062174,2439708:16384,1703936,0 +[1,21670:3062174,2439708:25952256,1703936,0 +(1,21670:3062174,1915420:25952256,1179648,0 +(1,21670:3062174,1915420:16384,1179648,0 +r1,22888:3078558,1915420:16384,1179648,0 ) -k1,21457:29014430,1915420:25935872 -g1,21457:29014430,1915420 +k1,21670:29014430,1915420:25935872 +g1,21670:29014430,1915420 ) ] ) ) ) ] -[1,22673:3078558,4812305:0,0,0 -(1,22673:3078558,2439708:0,1703936,0 -g1,22673:29030814,2439708 -g1,22673:36135244,2439708 -(1,21457:36135244,2439708:1720320,1703936,0 -(1,21457:36135244,2439708:16384,1703936,0 -[1,21457:36135244,2439708:25952256,1703936,0 -(1,21457:36135244,1915420:25952256,1179648,0 -(1,21457:36135244,1915420:16384,1179648,0 -r1,22673:36151628,1915420:16384,1179648,0 +[1,22888:3078558,4812305:0,0,0 +(1,22888:3078558,2439708:0,1703936,0 +g1,22888:29030814,2439708 +g1,22888:36135244,2439708 +(1,21670:36135244,2439708:1720320,1703936,0 +(1,21670:36135244,2439708:16384,1703936,0 +[1,21670:36135244,2439708:25952256,1703936,0 +(1,21670:36135244,1915420:25952256,1179648,0 +(1,21670:36135244,1915420:16384,1179648,0 +r1,22888:36151628,1915420:16384,1179648,0 ) -k1,21457:62087500,1915420:25935872 -g1,21457:62087500,1915420 +k1,21670:62087500,1915420:25935872 +g1,21670:62087500,1915420 ) ] ) -g1,21457:36675916,2439708 -(1,21457:36675916,2439708:1179648,16384,0 -r1,22673:37855564,2439708:1179648,16384,0 +g1,21670:36675916,2439708 +(1,21670:36675916,2439708:1179648,16384,0 +r1,22888:37855564,2439708:1179648,16384,0 ) ) -k1,22673:3078556,2439708:-34777008 +k1,22888:3078556,2439708:-34777008 ) ] -[1,22673:3078558,4812305:0,0,0 -(1,22673:3078558,49800853:0,16384,2228224 -k1,22673:1358238,49800853:-1720320 -(1,21457:1358238,49800853:1720320,16384,2228224 -(1,21457:1358238,49800853:1179648,16384,0 -r1,22673:2537886,49800853:1179648,16384,0 +[1,22888:3078558,4812305:0,0,0 +(1,22888:3078558,49800853:0,16384,2228224 +k1,22888:1358238,49800853:-1720320 +(1,21670:1358238,49800853:1720320,16384,2228224 +(1,21670:1358238,49800853:1179648,16384,0 +r1,22888:2537886,49800853:1179648,16384,0 ) -g1,21457:3062174,49800853 -(1,21457:3062174,52029077:16384,1703936,0 -[1,21457:3062174,52029077:25952256,1703936,0 -(1,21457:3062174,51504789:25952256,1179648,0 -(1,21457:3062174,51504789:16384,1179648,0 -r1,22673:3078558,51504789:16384,1179648,0 +g1,21670:3062174,49800853 +(1,21670:3062174,52029077:16384,1703936,0 +[1,21670:3062174,52029077:25952256,1703936,0 +(1,21670:3062174,51504789:25952256,1179648,0 +(1,21670:3062174,51504789:16384,1179648,0 +r1,22888:3078558,51504789:16384,1179648,0 ) -k1,21457:29014430,51504789:25935872 -g1,21457:29014430,51504789 +k1,21670:29014430,51504789:25935872 +g1,21670:29014430,51504789 ) ] ) ) ) ] -[1,22673:3078558,4812305:0,0,0 -(1,22673:3078558,49800853:0,16384,2228224 -g1,22673:29030814,49800853 -g1,22673:36135244,49800853 -(1,21457:36135244,49800853:1720320,16384,2228224 -(1,21457:36135244,52029077:16384,1703936,0 -[1,21457:36135244,52029077:25952256,1703936,0 -(1,21457:36135244,51504789:25952256,1179648,0 -(1,21457:36135244,51504789:16384,1179648,0 -r1,22673:36151628,51504789:16384,1179648,0 +[1,22888:3078558,4812305:0,0,0 +(1,22888:3078558,49800853:0,16384,2228224 +g1,22888:29030814,49800853 +g1,22888:36135244,49800853 +(1,21670:36135244,49800853:1720320,16384,2228224 +(1,21670:36135244,52029077:16384,1703936,0 +[1,21670:36135244,52029077:25952256,1703936,0 +(1,21670:36135244,51504789:25952256,1179648,0 +(1,21670:36135244,51504789:16384,1179648,0 +r1,22888:36151628,51504789:16384,1179648,0 ) -k1,21457:62087500,51504789:25935872 -g1,21457:62087500,51504789 +k1,21670:62087500,51504789:25935872 +g1,21670:62087500,51504789 ) ] ) -g1,21457:36675916,49800853 -(1,21457:36675916,49800853:1179648,16384,0 -r1,22673:37855564,49800853:1179648,16384,0 +g1,21670:36675916,49800853 +(1,21670:36675916,49800853:1179648,16384,0 +r1,22888:37855564,49800853:1179648,16384,0 ) ) -k1,22673:3078556,49800853:-34777008 +k1,22888:3078556,49800853:-34777008 ) -] -g1,22673:6630773,4812305 -k1,22673:21078841,4812305:13252691 -g1,22673:22701512,4812305 -g1,22673:23350318,4812305 -g1,22673:24759997,4812305 -g1,22673:28372341,4812305 -g1,22673:30105768,4812305 -) -) -] -[1,22673:6630773,45706769:25952256,40108032,0 -(1,22673:6630773,45706769:25952256,40108032,0 -(1,22673:6630773,45706769:0,0,0 -g1,22673:6630773,45706769 -) -[1,22673:6630773,45706769:25952256,40108032,0 -(1,22635:6630773,6254097:25952256,513147,134348 -k1,22633:8809471,6254097:176573 -k1,22633:10058212,6254097:176572 -k1,22633:11520601,6254097:176573 -k1,22633:12348602,6254097:176573 -k1,22633:13937475,6254097:176572 -k1,22633:15503411,6254097:176573 -k1,22633:17247604,6254097:176572 -k1,22633:18737519,6254097:176573 -k1,22633:20649485,6254097:176573 -k1,22633:23336741,6254097:176572 -k1,22633:24797820,6254097:176573 -k1,22633:25965953,6254097:176573 -k1,22633:28524103,6254097:176572 -k1,22633:31259202,6254097:176573 -k1,22633:32583029,6254097:0 -) -(1,22635:6630773,7095585:25952256,505283,7863 -g1,22633:9735868,7095585 -k1,22635:32583028,7095585:22847160 -g1,22635:32583028,7095585 -) -(1,22636:6630773,9903153:25952256,32768,229376 -(1,22636:6630773,9903153:0,32768,229376 -(1,22636:6630773,9903153:5505024,32768,229376 -r1,22673:12135797,9903153:5505024,262144,229376 -) -k1,22636:6630773,9903153:-5505024 -) -(1,22636:6630773,9903153:25952256,32768,0 -r1,22673:32583029,9903153:25952256,32768,0 -) -) -(1,22636:6630773,11507481:25952256,615776,14155 -(1,22636:6630773,11507481:2464678,582746,14155 -g1,22636:6630773,11507481 -g1,22636:9095451,11507481 -) -g1,22636:10967946,11507481 -k1,22636:32583028,11507481:19976944 -g1,22636:32583028,11507481 -) -(1,22639:6630773,12742185:25952256,513147,134348 -k1,22638:8140149,12742185:223560 -k1,22638:9781252,12742185:223559 -k1,22638:12981482,12742185:223585 -k1,22638:15686914,12742185:223584 -k1,22638:17223840,12742185:223584 -k1,22638:18539909,12742185:223584 -k1,22638:19534196,12742185:223584 -k1,22638:21116973,12742185:223560 -k1,22638:23733932,12742185:223584 -k1,22638:26814230,12742185:223584 -k1,22638:27985466,12742185:223585 -k1,22638:30242632,12742185:223584 -k1,22638:31657661,12742185:223584 -k1,22639:32583029,12742185:0 -) -(1,22639:6630773,13583673:25952256,513147,134348 -k1,22638:9688945,13583673:174588 -k1,22638:11252896,13583673:174588 -k1,22638:12995105,13583673:174588 -k1,22638:16674558,13583673:174588 -k1,22638:20453626,13583673:174588 -k1,22638:23204433,13583673:174587 -k1,22638:25177329,13583673:174588 -k1,22638:27184304,13583673:174588 -k1,22638:27890389,13583673:174588 -k1,22638:29757117,13583673:174588 -k1,22638:32583029,13583673:0 -) -(1,22639:6630773,14425161:25952256,513147,134348 -k1,22638:7619915,14425161:179772 -k1,22638:8818771,14425161:179771 -k1,22638:11840184,14425161:179772 -k1,22638:13831371,14425161:179772 -k1,22638:17373139,14425161:179771 -k1,22638:18362281,14425161:179772 -k1,22638:19561137,14425161:179771 -k1,22638:22252904,14425161:179772 -k1,22638:23091968,14425161:179772 -k1,22638:24290824,14425161:179771 -k1,22638:25681027,14425161:179753 -k1,22638:28545153,14425161:179771 -k1,22638:29921612,14425161:179772 -k1,22638:32583029,14425161:0 -) -(1,22639:6630773,15266649:25952256,513147,134348 -k1,22638:8245279,15266649:225143 -k1,22638:9983649,15266649:225144 -k1,22638:11606675,15266649:225143 -k1,22638:12363316,15266649:225144 -k1,22638:14156080,15266649:225143 -k1,22638:14737084,15266649:225144 -k1,22638:18366167,15266649:225143 -k1,22638:20620306,15266649:225144 -k1,22638:22055873,15266649:225117 -k1,22638:24438462,15266649:225144 -k1,22638:25860292,15266649:225143 -k1,22638:28746853,15266649:225144 -k1,22638:30840427,15266649:225143 -k1,22638:32583029,15266649:0 -) -(1,22639:6630773,16108137:25952256,505283,134348 -k1,22638:7813193,16108137:163335 -k1,22638:9365891,16108137:163335 -k1,22638:10796692,16108137:163335 -k1,22638:11315887,16108137:163335 -(1,22638:11315887,16108137:0,452978,115847 -r1,22673:13432712,16108137:2116825,568825,115847 -k1,22638:11315887,16108137:-2116825 -) -(1,22638:11315887,16108137:2116825,452978,115847 -k1,22638:11315887,16108137:3277 -h1,22638:13429435,16108137:0,411205,112570 -) -k1,22638:13596047,16108137:163335 -k1,22638:14445544,16108137:163335 -k1,22638:17583557,16108137:163334 -k1,22638:20116674,16108137:163335 -k1,22638:21322031,16108137:163335 -k1,22638:24183483,16108137:163335 -k1,22638:25365903,16108137:163335 -k1,22638:28503917,16108137:163335 -k1,22638:30677897,16108137:163335 -k1,22639:32583029,16108137:0 -) -(1,22639:6630773,16949625:25952256,505283,134348 -k1,22638:9185257,16949625:214849 -k1,22638:12216187,16949625:214848 -k1,22638:13622481,16949625:214849 -k1,22638:15548475,16949625:214849 -k1,22638:17719573,16949625:214848 -k1,22638:19464688,16949625:214849 -k1,22638:20330965,16949625:214849 -k1,22638:21293579,16949625:214848 -k1,22638:24669229,16949625:214849 -k1,22638:25535506,16949625:214849 -k1,22638:28370483,16949625:214848 -k1,22638:29776777,16949625:214849 -k1,22638:32583029,16949625:0 -) -(1,22639:6630773,17791113:25952256,513147,134348 -(1,22638:6837867,17791113:0,414482,115847 -r1,22673:9306404,17791113:2468537,530329,115847 -k1,22638:6837867,17791113:-2468537 -) -(1,22638:6837867,17791113:2468537,414482,115847 -k1,22638:6837867,17791113:3277 -h1,22638:9303127,17791113:0,411205,112570 -) -k1,22638:9718125,17791113:204627 -k1,22638:12107067,17791113:204627 -k1,22638:16281866,17791113:204628 -k1,22638:17114328,17791113:204627 -k1,22638:18338040,17791113:204627 -k1,22638:19909748,17791113:204627 -k1,22638:20773668,17791113:204628 -k1,22638:23502742,17791113:204627 -k1,22638:25664929,17791113:204627 -k1,22638:26678926,17791113:204627 -k1,22638:27239413,17791113:204627 -k1,22638:29014284,17791113:204628 -k1,22638:29677008,17791113:204627 -k1,22638:30413132,17791113:204627 -k1,22639:32583029,17791113:0 -) -(1,22639:6630773,18632601:25952256,513147,134348 -k1,22638:8126400,18632601:186873 -k1,22638:8964700,18632601:186872 -k1,22638:10244058,18632601:186873 -k1,22638:13011083,18632601:186873 -k1,22638:14139052,18632601:186873 -k1,22638:14977352,18632601:186872 -k1,22638:17345919,18632601:186873 -k1,22638:18551877,18632601:186873 -k1,22638:20696310,18632601:186873 -k1,22638:23297528,18632601:186872 -k1,22638:25052022,18632601:186873 -k1,22638:26257980,18632601:186873 -(1,22638:26257980,18632601:0,414482,122846 -r1,22673:27671381,18632601:1413401,537328,122846 -k1,22638:26257980,18632601:-1413401 -) -(1,22638:26257980,18632601:1413401,414482,122846 -k1,22638:26257980,18632601:3277 -h1,22638:27668104,18632601:0,411205,112570 -) -k1,22638:27858254,18632601:186873 -k1,22638:29028166,18632601:186872 -k1,22638:30482505,18632601:186873 -k1,22638:31025238,18632601:186873 -k1,22638:32583029,18632601:0 -) -(1,22639:6630773,19474089:25952256,513147,134348 -g1,22638:8129581,19474089 -g1,22638:8988102,19474089 -g1,22638:10206416,19474089 -g1,22638:11477814,19474089 -g1,22638:13067062,19474089 -g1,22638:16012905,19474089 -g1,22638:16743631,19474089 -g1,22638:20032883,19474089 -g1,22638:20848150,19474089 -g1,22638:23326066,19474089 -h1,22638:24296654,19474089:0,0,0 -g1,22638:24495883,19474089 -g1,22638:25504482,19474089 -g1,22638:27201864,19474089 -h1,22638:28397241,19474089:0,0,0 -k1,22639:32583029,19474089:3805024 -g1,22639:32583029,19474089 -) -v1,22641:6630773,20664555:0,393216,0 -(1,22658:6630773,28215859:25952256,7944520,196608 -g1,22658:6630773,28215859 -g1,22658:6630773,28215859 -g1,22658:6434165,28215859 -(1,22658:6434165,28215859:0,7944520,196608 -r1,22673:32779637,28215859:26345472,8141128,196608 -k1,22658:6434165,28215859:-26345472 -) -(1,22658:6434165,28215859:26345472,7944520,196608 -[1,22658:6630773,28215859:25952256,7747912,0 -(1,22643:6630773,20878465:25952256,410518,107478 -(1,22642:6630773,20878465:0,0,0 -g1,22642:6630773,20878465 -g1,22642:6630773,20878465 -g1,22642:6303093,20878465 -(1,22642:6303093,20878465:0,0,0 -) -g1,22642:6630773,20878465 -) -k1,22643:6630773,20878465:0 -g1,22643:12321396,20878465 -g1,22643:12953688,20878465 -g1,22643:20225039,20878465 -g1,22643:25599516,20878465 -g1,22643:26231808,20878465 -g1,22643:28128683,20878465 -k1,22643:28128683,20878465:0 -h1,22643:29393265,20878465:0,0,0 -k1,22643:32583029,20878465:3189764 -g1,22643:32583029,20878465 -) -(1,22644:6630773,21544643:25952256,404226,76021 -h1,22644:6630773,21544643:0,0,0 -g1,22644:9792231,21544643 -g1,22644:10424523,21544643 -g1,22644:11372960,21544643 -k1,22644:11372960,21544643:0 -h1,22644:12637542,21544643:0,0,0 -k1,22644:32583030,21544643:19945488 -g1,22644:32583030,21544643 -) -(1,22645:6630773,22210821:25952256,404226,76021 -h1,22645:6630773,22210821:0,0,0 -g1,22645:11372959,22210821 -g1,22645:12005251,22210821 -g1,22645:15798999,22210821 -k1,22645:15798999,22210821:0 -h1,22645:17063581,22210821:0,0,0 -k1,22645:32583029,22210821:15519448 -g1,22645:32583029,22210821 -) -(1,22646:6630773,22876999:25952256,404226,107478 -h1,22646:6630773,22876999:0,0,0 -g1,22646:9476085,22876999 -g1,22646:10108377,22876999 -g1,22646:13585979,22876999 -g1,22646:14534416,22876999 -g1,22646:18012019,22876999 -g1,22646:21173476,22876999 -g1,22646:21805768,22876999 -g1,22646:24018788,22876999 -k1,22646:24018788,22876999:0 -h1,22646:25283370,22876999:0,0,0 -k1,22646:32583029,22876999:7299659 -g1,22646:32583029,22876999 -) -(1,22647:6630773,23543177:25952256,410518,101187 -h1,22647:6630773,23543177:0,0,0 -g1,22647:9792230,23543177 -g1,22647:10424522,23543177 -g1,22647:11372960,23543177 -g1,22647:12321397,23543177 -g1,22647:12953689,23543177 -g1,22647:16747438,23543177 -g1,22647:20541187,23543177 -g1,22647:21173479,23543177 -g1,22647:22438063,23543177 -g1,22647:23070355,23543177 -g1,22647:25915667,23543177 -g1,22647:26547959,23543177 -h1,22647:28128687,23543177:0,0,0 -k1,22647:32583029,23543177:4454342 -g1,22647:32583029,23543177 -) -(1,22657:6630773,24209355:25952256,404226,9436 -(1,22649:6630773,24209355:0,0,0 -g1,22649:6630773,24209355 -g1,22649:6630773,24209355 -g1,22649:6303093,24209355 -(1,22649:6303093,24209355:0,0,0 -) -g1,22649:6630773,24209355 -) -g1,22657:7579210,24209355 -g1,22657:8211502,24209355 -g1,22657:8843794,24209355 -g1,22657:11372960,24209355 -g1,22657:12637543,24209355 -g1,22657:13269835,24209355 -h1,22657:13585981,24209355:0,0,0 -k1,22657:32583029,24209355:18997048 -g1,22657:32583029,24209355 -) -(1,22657:6630773,24875533:25952256,410518,101187 -h1,22657:6630773,24875533:0,0,0 -k1,22657:7572189,24875533:309125 -k1,22657:7881315,24875533:309126 -k1,22657:8190440,24875533:309125 -k1,22657:9764148,24875533:309125 -k1,22657:10073273,24875533:309125 -k1,22657:10382399,24875533:309126 -k1,22657:10691524,24875533:309125 -k1,22657:11000649,24875533:309125 -k1,22657:11309775,24875533:309126 -k1,22657:11618900,24875533:309125 -k1,22657:11928025,24875533:309125 -k1,22657:12237151,24875533:309126 -k1,22657:12546276,24875533:309125 -k1,22657:12855401,24875533:309125 -k1,22657:13164526,24875533:309125 -k1,22657:13473652,24875533:309126 -k1,22657:13782777,24875533:309125 -k1,22657:14091902,24875533:309125 -k1,22657:14401028,24875533:309126 -k1,22657:14710153,24875533:309125 -k1,22657:15019278,24875533:309125 -k1,22657:15328403,24875533:309125 -k1,22657:15637529,24875533:309126 -k1,22657:15946654,24875533:309125 -k1,22657:17836507,24875533:309125 -k1,22657:18145633,24875533:309126 -k1,22657:19719341,24875533:309125 -k1,22657:20028466,24875533:309125 -k1,22657:20337591,24875533:309125 -k1,22657:20646717,24875533:309126 -k1,22657:20955842,24875533:309125 -k1,22657:21264967,24875533:309125 -k1,22657:21574093,24875533:309126 -k1,22657:21883218,24875533:309125 -k1,22657:22192343,24875533:309125 -k1,22657:23766052,24875533:309126 -k1,22657:24075177,24875533:309125 -k1,22657:25332739,24875533:309125 -k1,22657:25641864,24875533:309125 -k1,22657:25950990,24875533:309126 -k1,22657:29421572,24875533:309125 -h1,22657:32583029,24875533:0,0,0 -k1,22657:32583029,24875533:0 -k1,22657:32583029,24875533:0 -) -(1,22657:6630773,25541711:25952256,404226,6290 -h1,22657:6630773,25541711:0,0,0 -g1,22657:7579210,25541711 -g1,22657:7895356,25541711 -g1,22657:8211502,25541711 -g1,22657:10108377,25541711 -g1,22657:10424523,25541711 -g1,22657:10740669,25541711 -g1,22657:11056815,25541711 -g1,22657:11372961,25541711 -g1,22657:11689107,25541711 -g1,22657:12005253,25541711 -g1,22657:12321399,25541711 -g1,22657:12637545,25541711 -g1,22657:12953691,25541711 -g1,22657:13269837,25541711 -g1,22657:13585983,25541711 -g1,22657:13902129,25541711 -g1,22657:14218275,25541711 -g1,22657:14534421,25541711 -g1,22657:14850567,25541711 -g1,22657:15166713,25541711 -g1,22657:15482859,25541711 -g1,22657:15799005,25541711 -g1,22657:16115151,25541711 -g1,22657:18012026,25541711 -g1,22657:18328172,25541711 -g1,22657:20225047,25541711 -g1,22657:20541193,25541711 -g1,22657:20857339,25541711 -g1,22657:21173485,25541711 -g1,22657:21489631,25541711 -g1,22657:21805777,25541711 -g1,22657:22121923,25541711 -g1,22657:22438069,25541711 -g1,22657:24334944,25541711 -g1,22657:26231819,25541711 -g1,22657:28128694,25541711 -g1,22657:28444840,25541711 -g1,22657:28760986,25541711 -g1,22657:29077132,25541711 -g1,22657:29393278,25541711 -g1,22657:29709424,25541711 -k1,22657:29709424,25541711:0 -h1,22657:31290153,25541711:0,0,0 -k1,22657:32583029,25541711:1292876 -g1,22657:32583029,25541711 -) -(1,22657:6630773,26207889:25952256,404226,101187 -h1,22657:6630773,26207889:0,0,0 -k1,22657:7560021,26207889:296957 -k1,22657:8173123,26207889:296956 -k1,22657:16057577,26207889:296957 -k1,22657:18251408,26207889:296957 -k1,22657:22342111,26207889:296956 -k1,22657:22955214,26207889:296957 -k1,22657:23252171,26207889:296957 -k1,22657:23549127,26207889:296956 -k1,22657:23846084,26207889:296957 -k1,22657:24143041,26207889:296957 -k1,22657:25072288,26207889:296956 -k1,22657:25369245,26207889:296957 -k1,22657:25666202,26207889:296957 -k1,22657:25963158,26207889:296956 -k1,22657:29421572,26207889:296957 -h1,22657:32583029,26207889:0,0,0 -k1,22657:32583029,26207889:0 -k1,22657:32583029,26207889:0 -) -(1,22657:6630773,26874067:25952256,404226,101187 -h1,22657:6630773,26874067:0,0,0 -k1,22657:7560021,26874067:296957 -k1,22657:8173123,26874067:296956 -k1,22657:16057577,26874067:296957 -k1,22657:18251408,26874067:296957 -k1,22657:22342111,26874067:296956 -k1,22657:22955214,26874067:296957 -k1,22657:23252171,26874067:296957 -k1,22657:23549127,26874067:296956 -k1,22657:23846084,26874067:296957 -k1,22657:24143041,26874067:296957 -k1,22657:25072288,26874067:296956 -k1,22657:25369245,26874067:296957 -k1,22657:25666202,26874067:296957 -k1,22657:25963158,26874067:296956 -k1,22657:29421572,26874067:296957 -h1,22657:32583029,26874067:0,0,0 -k1,22657:32583029,26874067:0 -k1,22657:32583029,26874067:0 -) -(1,22657:6630773,27540245:25952256,404226,101187 -h1,22657:6630773,27540245:0,0,0 -k1,22657:7560021,27540245:296957 -k1,22657:8173123,27540245:296956 -k1,22657:16057577,27540245:296957 -k1,22657:18251408,27540245:296957 -k1,22657:22342111,27540245:296956 -k1,22657:22955214,27540245:296957 -k1,22657:23252171,27540245:296957 -k1,22657:23549127,27540245:296956 -k1,22657:23846084,27540245:296957 -k1,22657:24143041,27540245:296957 -k1,22657:25072288,27540245:296956 -k1,22657:25369245,27540245:296957 -k1,22657:25666202,27540245:296957 -k1,22657:25963158,27540245:296956 -k1,22657:29421572,27540245:296957 -h1,22657:32583029,27540245:0,0,0 -k1,22657:32583029,27540245:0 -k1,22657:32583029,27540245:0 -) -(1,22657:6630773,28206423:25952256,404226,9436 -h1,22657:6630773,28206423:0,0,0 -g1,22657:7579210,28206423 -g1,22657:8211502,28206423 -g1,22657:8843794,28206423 -g1,22657:10108377,28206423 -g1,22657:11689106,28206423 -h1,22657:12953689,28206423:0,0,0 -k1,22657:32583029,28206423:19629340 -g1,22657:32583029,28206423 -) -] -) -g1,22658:32583029,28215859 -g1,22658:6630773,28215859 -g1,22658:6630773,28215859 -g1,22658:32583029,28215859 -g1,22658:32583029,28215859 -) -h1,22658:6630773,28412467:0,0,0 -(1,22662:6630773,29778243:25952256,505283,134348 -h1,22661:6630773,29778243:983040,0,0 -k1,22661:8015023,29778243:188218 -k1,22661:9678468,29778243:188230 -k1,22661:12071984,29778243:188229 -k1,22661:13026329,29778243:188229 -k1,22661:16617188,29778243:188230 -k1,22661:17566945,29778243:188229 -k1,22661:19493190,29778243:188230 -k1,22661:20332847,29778243:188229 -k1,22661:22236809,29778243:188229 -k1,22661:24756155,29778243:188230 -k1,22661:26274765,29778243:188229 -k1,22661:27666235,29778243:188229 -k1,22661:29244484,29778243:188230 -k1,22661:31533142,29778243:188229 -k1,22661:32583029,29778243:0 -) -(1,22662:6630773,30619731:25952256,513147,134348 -g1,22661:9108689,30619731 -h1,22661:10079277,30619731:0,0,0 -g1,22661:10278506,30619731 -g1,22661:11287105,30619731 -g1,22661:12984487,30619731 -h1,22661:14179864,30619731:0,0,0 -g1,22661:14379093,30619731 -g1,22661:15525973,30619731 -g1,22661:17842670,30619731 -g1,22661:18851269,30619731 -g1,22661:20069583,30619731 -g1,22661:21361297,30619731 -g1,22661:22219818,30619731 -g1,22661:23438132,30619731 -g1,22661:25027380,30619731 -g1,22661:26418054,30619731 -g1,22661:29292463,30619731 -k1,22662:32583029,30619731:39980 -g1,22662:32583029,30619731 -) -v1,22664:6630773,31985507:0,393216,0 -(1,22665:6630773,35076857:25952256,3484566,0 -g1,22665:6630773,35076857 -g1,22665:6303093,35076857 -r1,22673:6401397,35076857:98304,3484566,0 -g1,22665:6600626,35076857 -g1,22665:6797234,35076857 -[1,22665:6797234,35076857:25785795,3484566,0 -(1,22665:6797234,32418045:25785795,825754,196608 -(1,22664:6797234,32418045:0,825754,196608 -r1,22673:7890375,32418045:1093141,1022362,196608 -k1,22664:6797234,32418045:-1093141 -) -(1,22664:6797234,32418045:1093141,825754,196608 -) -k1,22664:8059327,32418045:168952 -k1,22664:10193835,32418045:327680 -k1,22664:11191817,32418045:168952 -k1,22664:15025542,32418045:168952 -k1,22664:16743110,32418045:168952 -k1,22664:18301424,32418045:168951 -k1,22664:23307588,32418045:168952 -k1,22664:25159505,32418045:168952 -k1,22664:26991105,32418045:168952 -k1,22664:27776095,32418045:168952 -k1,22664:29396669,32418045:168952 -k1,22664:32583029,32418045:0 -) -(1,22665:6797234,33259533:25785795,513147,134348 -k1,22664:7628130,33259533:171604 -k1,22664:9002974,33259533:171603 -k1,22664:10738267,33259533:171604 -k1,22664:12398193,33259533:171603 -k1,22664:13331325,33259533:171604 -k1,22664:16558216,33259533:171603 -k1,22664:17748905,33259533:171604 -k1,22664:19226641,33259533:171603 -k1,22664:22584605,33259533:171604 -k1,22664:23517736,33259533:171603 -k1,22664:25468642,33259533:171604 -k1,22664:28717160,33259533:171603 -k1,22664:29907849,33259533:171604 -k1,22664:32583029,33259533:0 -) -(1,22665:6797234,34101021:25785795,505283,134348 -k1,22664:9885056,34101021:167538 -k1,22664:11244039,34101021:167538 -k1,22664:14189648,34101021:167538 -k1,22664:16544778,34101021:167538 -k1,22664:17869026,34101021:167538 -k1,22664:21222924,34101021:167538 -k1,22664:22003224,34101021:167538 -k1,22664:22526623,34101021:167539 -k1,22664:24293239,34101021:167538 -k1,22664:25652222,34101021:167538 -k1,22664:26432522,34101021:167538 -k1,22664:28051682,34101021:167538 -k1,22664:29574505,34101021:167538 -k1,22664:31563944,34101021:167538 -k1,22664:32583029,34101021:0 -) -(1,22665:6797234,34942509:25785795,513147,134348 -g1,22664:9775190,34942509 -g1,22664:11654762,34942509 -g1,22664:13045436,34942509 -g1,22664:14631407,34942509 -g1,22664:15896907,34942509 -g1,22664:17043787,34942509 -g1,22664:18791632,34942509 -g1,22664:20091866,34942509 -g1,22664:22952512,34942509 -g1,22664:24719362,34942509 -g1,22664:25937676,34942509 -g1,22664:28891383,34942509 -k1,22665:32583029,34942509:2162691 -g1,22665:32583029,34942509 -) -] -g1,22665:32583029,35076857 -) -h1,22665:6630773,35076857:0,0,0 -(1,22669:6630773,38408713:25952256,32768,229376 -(1,22669:6630773,38408713:0,32768,229376 -(1,22669:6630773,38408713:5505024,32768,229376 -r1,22673:12135797,38408713:5505024,262144,229376 -) -k1,22669:6630773,38408713:-5505024 -) -(1,22669:6630773,38408713:25952256,32768,0 -r1,22673:32583029,38408713:25952256,32768,0 -) -) -(1,22669:6630773,40013041:25952256,606339,14155 -(1,22669:6630773,40013041:2464678,582746,14155 -g1,22669:6630773,40013041 -g1,22669:9095451,40013041 -) -k1,22669:32583029,40013041:18845270 -g1,22669:32583029,40013041 -) -(1,22673:6630773,41247745:25952256,513147,126483 -k1,22672:9860933,41247745:202397 -k1,22672:12078562,41247745:202397 -k1,22672:13973099,41247745:202397 -k1,22672:16017057,41247745:202396 -k1,22672:17410899,41247745:202397 -k1,22672:19215651,41247745:202397 -k1,22672:21259610,41247745:202397 -k1,22672:22453567,41247745:202397 -k1,22672:23675049,41247745:202397 -k1,22672:25479145,41247745:202396 -k1,22672:28986523,41247745:202397 -k1,22672:30702146,41247745:202397 -k1,22672:32583029,41247745:0 -) -(1,22673:6630773,42089233:25952256,505283,134348 -k1,22672:10197898,42089233:205128 -k1,22672:13475353,42089233:205127 -k1,22672:15535150,42089233:205128 -k1,22672:16549647,42089233:205127 -k1,22672:17773860,42089233:205128 -k1,22672:21272171,42089233:205127 -k1,22672:24687908,42089233:205128 -k1,22672:26725422,42089233:205127 -k1,22672:27462047,42089233:205128 -k1,22672:30451143,42089233:205127 -k1,22672:31012131,42089233:205128 -k1,22673:32583029,42089233:0 -) -(1,22673:6630773,42930721:25952256,513147,134348 -k1,22672:9717670,42930721:241979 -k1,22672:10942689,42930721:241979 -k1,22672:13365051,42930721:241979 -k1,22672:14554681,42930721:241979 -k1,22672:17749712,42930721:241979 -k1,22672:18650983,42930721:241979 -k1,22672:22186145,42930721:241978 -k1,22672:23991158,42930721:241979 -k1,22672:25305306,42930721:241979 -k1,22672:26005382,42930721:241979 -k1,22672:27740271,42930721:241979 -k1,22672:29048521,42930721:241979 -k1,22672:31816913,42930721:241979 -k1,22672:32583029,42930721:0 -) -(1,22673:6630773,43772209:25952256,513147,134348 -k1,22672:7874592,43772209:224734 -k1,22672:10705037,43772209:224734 -k1,22672:13335598,43772209:224734 -k1,22672:14176369,43772209:224733 -k1,22672:16334415,43772209:224734 -k1,22672:17542189,43772209:224734 -k1,22672:20451278,43772209:224734 -k1,22672:21629561,43772209:224734 -k1,22672:22986757,43772209:224734 -k1,22672:24699813,43772209:224733 -k1,22672:25686075,43772209:224734 -k1,22672:29631943,43772209:224734 -k1,22672:32583029,43772209:0 -) -(1,22673:6630773,44613697:25952256,513147,134348 -k1,22672:8013834,44613697:186374 -k1,22672:9183248,44613697:186374 -k1,22672:11550006,44613697:186375 -k1,22672:13249606,44613697:186374 -k1,22672:14197508,44613697:186374 -k1,22672:17161298,44613697:186374 -k1,22672:18448678,44613697:186375 -k1,22672:21296469,44613697:186374 -k1,22672:25362574,44613697:186374 -k1,22672:26936345,44613697:186374 -k1,22672:28141805,44613697:186375 -k1,22672:30184814,44613697:186374 -k1,22672:31562633,44613697:186374 -k1,22672:32583029,44613697:0 -) -(1,22673:6630773,45455185:25952256,513147,134348 -k1,22672:9291912,45455185:150455 -k1,22672:10882194,45455185:150456 -k1,22672:11684077,45455185:150455 -k1,22672:12582299,45455185:150456 -k1,22672:13945825,45455185:150455 -k1,22672:15374887,45455185:150455 -k1,22672:18819838,45455185:150456 -k1,22672:19731821,45455185:150455 -k1,22672:22666245,45455185:150455 -k1,22672:23231495,45455185:150407 -k1,22672:26292405,45455185:150456 -k1,22672:27634305,45455185:150455 -k1,22672:29121695,45455185:150456 -k1,22672:31563944,45455185:150455 -k1,22672:32583029,45455185:0 -) -] -(1,22673:32583029,45706769:0,0,0 -g1,22673:32583029,45706769 -) -) -] -(1,22673:6630773,47279633:25952256,0,0 -h1,22673:6630773,47279633:25952256,0,0 -) -] -(1,22673:4262630,4025873:0,0,0 -[1,22673:-473656,4025873:0,0,0 -(1,22673:-473656,-710413:0,0,0 -(1,22673:-473656,-710413:0,0,0 -g1,22673:-473656,-710413 -) -g1,22673:-473656,-710413 -) -] -) -] -!25757 -}411 -Input:3658:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3659:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3660:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3661:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3662:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3663:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3664:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3665:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3666:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3667:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3668:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3669:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3670:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3671:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3672:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3673:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3674:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +] +g1,22888:6630773,4812305 +g1,22888:6630773,4812305 +g1,22888:8113852,4812305 +g1,22888:9545158,4812305 +k1,22888:31387652,4812305:21842494 +) +) +] +[1,22888:6630773,45706769:25952256,40108032,0 +(1,22888:6630773,45706769:25952256,40108032,0 +(1,22888:6630773,45706769:0,0,0 +g1,22888:6630773,45706769 +) +[1,22888:6630773,45706769:25952256,40108032,0 +(1,22849:6630773,6254097:25952256,32768,229376 +(1,22849:6630773,6254097:0,32768,229376 +(1,22849:6630773,6254097:5505024,32768,229376 +r1,22888:12135797,6254097:5505024,262144,229376 +) +k1,22849:6630773,6254097:-5505024 +) +(1,22849:6630773,6254097:25952256,32768,0 +r1,22888:32583029,6254097:25952256,32768,0 +) +) +(1,22849:6630773,7885949:25952256,615776,14155 +(1,22849:6630773,7885949:2464678,582746,14155 +g1,22849:6630773,7885949 +g1,22849:9095451,7885949 +) +g1,22849:10967946,7885949 +k1,22849:32583028,7885949:19976944 +g1,22849:32583028,7885949 +) +(1,22852:6630773,9144245:25952256,513147,134348 +k1,22851:8140149,9144245:223560 +k1,22851:9781252,9144245:223559 +k1,22851:12981482,9144245:223585 +k1,22851:15686914,9144245:223584 +k1,22851:17223840,9144245:223584 +k1,22851:18539909,9144245:223584 +k1,22851:19534196,9144245:223584 +k1,22851:21116973,9144245:223560 +k1,22851:23733932,9144245:223584 +k1,22851:26814230,9144245:223584 +k1,22851:27985466,9144245:223585 +k1,22851:30242632,9144245:223584 +k1,22851:31657661,9144245:223584 +k1,22852:32583029,9144245:0 +) +(1,22852:6630773,10009325:25952256,513147,134348 +k1,22851:9688945,10009325:174588 +k1,22851:11252896,10009325:174588 +k1,22851:12995105,10009325:174588 +k1,22851:16674558,10009325:174588 +k1,22851:20453626,10009325:174588 +k1,22851:23204433,10009325:174587 +k1,22851:25177329,10009325:174588 +k1,22851:27184304,10009325:174588 +k1,22851:27890389,10009325:174588 +k1,22851:29757117,10009325:174588 +k1,22851:32583029,10009325:0 +) +(1,22852:6630773,10874405:25952256,513147,134348 +k1,22851:7619915,10874405:179772 +k1,22851:8818771,10874405:179771 +k1,22851:11840184,10874405:179772 +k1,22851:13831371,10874405:179772 +k1,22851:17373139,10874405:179771 +k1,22851:18362281,10874405:179772 +k1,22851:19561137,10874405:179771 +k1,22851:22252904,10874405:179772 +k1,22851:23091968,10874405:179772 +k1,22851:24290824,10874405:179771 +k1,22851:25681027,10874405:179753 +k1,22851:28545153,10874405:179771 +k1,22851:29921612,10874405:179772 +k1,22851:32583029,10874405:0 +) +(1,22852:6630773,11739485:25952256,513147,134348 +k1,22851:8245279,11739485:225143 +k1,22851:9983649,11739485:225144 +k1,22851:11606675,11739485:225143 +k1,22851:12363316,11739485:225144 +k1,22851:14156080,11739485:225143 +k1,22851:14737084,11739485:225144 +k1,22851:18366167,11739485:225143 +k1,22851:20620306,11739485:225144 +k1,22851:22055873,11739485:225117 +k1,22851:24438462,11739485:225144 +k1,22851:25860292,11739485:225143 +k1,22851:28746853,11739485:225144 +k1,22851:30840427,11739485:225143 +k1,22851:32583029,11739485:0 +) +(1,22852:6630773,12604565:25952256,505283,134348 +k1,22851:7813193,12604565:163335 +k1,22851:9365891,12604565:163335 +k1,22851:10796692,12604565:163335 +k1,22851:11315887,12604565:163335 +(1,22851:11315887,12604565:0,452978,115847 +r1,22888:13432712,12604565:2116825,568825,115847 +k1,22851:11315887,12604565:-2116825 +) +(1,22851:11315887,12604565:2116825,452978,115847 +k1,22851:11315887,12604565:3277 +h1,22851:13429435,12604565:0,411205,112570 +) +k1,22851:13596047,12604565:163335 +k1,22851:14445544,12604565:163335 +k1,22851:17583557,12604565:163334 +k1,22851:20116674,12604565:163335 +k1,22851:21322031,12604565:163335 +k1,22851:24183483,12604565:163335 +k1,22851:25365903,12604565:163335 +k1,22851:28503917,12604565:163335 +k1,22851:30677897,12604565:163335 +k1,22852:32583029,12604565:0 +) +(1,22852:6630773,13469645:25952256,505283,134348 +k1,22851:9185257,13469645:214849 +k1,22851:12216187,13469645:214848 +k1,22851:13622481,13469645:214849 +k1,22851:15548475,13469645:214849 +k1,22851:17719573,13469645:214848 +k1,22851:19464688,13469645:214849 +k1,22851:20330965,13469645:214849 +k1,22851:21293579,13469645:214848 +k1,22851:24669229,13469645:214849 +k1,22851:25535506,13469645:214849 +k1,22851:28370483,13469645:214848 +k1,22851:29776777,13469645:214849 +k1,22851:32583029,13469645:0 +) +(1,22852:6630773,14334725:25952256,513147,134348 +(1,22851:6837867,14334725:0,414482,115847 +r1,22888:9306404,14334725:2468537,530329,115847 +k1,22851:6837867,14334725:-2468537 +) +(1,22851:6837867,14334725:2468537,414482,115847 +k1,22851:6837867,14334725:3277 +h1,22851:9303127,14334725:0,411205,112570 +) +k1,22851:9718125,14334725:204627 +k1,22851:12107067,14334725:204627 +k1,22851:16281866,14334725:204628 +k1,22851:17114328,14334725:204627 +k1,22851:18338040,14334725:204627 +k1,22851:19909748,14334725:204627 +k1,22851:20773668,14334725:204628 +k1,22851:23502742,14334725:204627 +k1,22851:25664929,14334725:204627 +k1,22851:26678926,14334725:204627 +k1,22851:27239413,14334725:204627 +k1,22851:29014284,14334725:204628 +k1,22851:29677008,14334725:204627 +k1,22851:30413132,14334725:204627 +k1,22852:32583029,14334725:0 +) +(1,22852:6630773,15199805:25952256,513147,134348 +k1,22851:8126400,15199805:186873 +k1,22851:8964700,15199805:186872 +k1,22851:10244058,15199805:186873 +k1,22851:13011083,15199805:186873 +k1,22851:14139052,15199805:186873 +k1,22851:14977352,15199805:186872 +k1,22851:17345919,15199805:186873 +k1,22851:18551877,15199805:186873 +k1,22851:20696310,15199805:186873 +k1,22851:23297528,15199805:186872 +k1,22851:25052022,15199805:186873 +k1,22851:26257980,15199805:186873 +(1,22851:26257980,15199805:0,414482,122846 +r1,22888:27671381,15199805:1413401,537328,122846 +k1,22851:26257980,15199805:-1413401 +) +(1,22851:26257980,15199805:1413401,414482,122846 +k1,22851:26257980,15199805:3277 +h1,22851:27668104,15199805:0,411205,112570 +) +k1,22851:27858254,15199805:186873 +k1,22851:29028166,15199805:186872 +k1,22851:30482505,15199805:186873 +k1,22851:31025238,15199805:186873 +k1,22851:32583029,15199805:0 +) +(1,22852:6630773,16064885:25952256,513147,134348 +g1,22851:8129581,16064885 +g1,22851:8988102,16064885 +g1,22851:10206416,16064885 +g1,22851:11477814,16064885 +g1,22851:13067062,16064885 +g1,22851:16012905,16064885 +g1,22851:16743631,16064885 +g1,22851:20032883,16064885 +g1,22851:20848150,16064885 +g1,22851:23326066,16064885 +h1,22851:24296654,16064885:0,0,0 +g1,22851:24495883,16064885 +g1,22851:25504482,16064885 +g1,22851:27201864,16064885 +h1,22851:28397241,16064885:0,0,0 +k1,22852:32583029,16064885:3805024 +g1,22852:32583029,16064885 +) +v1,22854:6630773,16749740:0,393216,0 +(1,22871:6630773,24658562:25952256,8302038,196608 +g1,22871:6630773,24658562 +g1,22871:6630773,24658562 +g1,22871:6434165,24658562 +(1,22871:6434165,24658562:0,8302038,196608 +r1,22888:32779637,24658562:26345472,8498646,196608 +k1,22871:6434165,24658562:-26345472 +) +(1,22871:6434165,24658562:26345472,8302038,196608 +[1,22871:6630773,24658562:25952256,8105430,0 +(1,22856:6630773,16984177:25952256,431045,112852 +(1,22855:6630773,16984177:0,0,0 +g1,22855:6630773,16984177 +g1,22855:6630773,16984177 +g1,22855:6303093,16984177 +(1,22855:6303093,16984177:0,0,0 +) +g1,22855:6630773,16984177 +) +k1,22856:6630773,16984177:0 +g1,22856:12605944,16984177 +g1,22856:13269852,16984177 +g1,22856:20904792,16984177 +g1,22856:26548009,16984177 +g1,22856:27211917,16984177 +g1,22856:29203641,16984177 +k1,22856:29203641,16984177:0 +h1,22856:30531457,16984177:0,0,0 +k1,22856:32583029,16984177:2051572 +g1,22856:32583029,16984177 +) +(1,22857:6630773,17669032:25952256,424439,79822 +h1,22857:6630773,17669032:0,0,0 +g1,22857:9950313,17669032 +g1,22857:10614221,17669032 +g1,22857:11610083,17669032 +k1,22857:11610083,17669032:0 +h1,22857:12937899,17669032:0,0,0 +k1,22857:32583029,17669032:19645130 +g1,22857:32583029,17669032 +) +(1,22858:6630773,18353887:25952256,424439,79822 +h1,22858:6630773,18353887:0,0,0 +g1,22858:11610082,18353887 +g1,22858:12273990,18353887 +g1,22858:16257438,18353887 +k1,22858:16257438,18353887:0 +h1,22858:17585254,18353887:0,0,0 +k1,22858:32583029,18353887:14997775 +g1,22858:32583029,18353887 +) +(1,22859:6630773,19038742:25952256,424439,112852 +h1,22859:6630773,19038742:0,0,0 +g1,22859:9618359,19038742 +g1,22859:10282267,19038742 +g1,22859:13933761,19038742 +g1,22859:14929623,19038742 +g1,22859:18581116,19038742 +g1,22859:21900655,19038742 +g1,22859:22564563,19038742 +g1,22859:24888241,19038742 +k1,22859:24888241,19038742:0 +h1,22859:26216057,19038742:0,0,0 +k1,22859:32583029,19038742:6366972 +g1,22859:32583029,19038742 +) +(1,22860:6630773,19723597:25952256,431045,106246 +h1,22860:6630773,19723597:0,0,0 +g1,22860:9950313,19723597 +g1,22860:10614221,19723597 +g1,22860:11610083,19723597 +g1,22860:12605945,19723597 +g1,22860:13269853,19723597 +g1,22860:17253300,19723597 +g1,22860:21236747,19723597 +g1,22860:21900655,19723597 +g1,22860:23228471,19723597 +g1,22860:23892379,19723597 +g1,22860:26879965,19723597 +g1,22860:27543873,19723597 +h1,22860:29203643,19723597:0,0,0 +k1,22860:32583029,19723597:3379386 +g1,22860:32583029,19723597 +) +(1,22870:6630773,20539524:25952256,424439,9908 +(1,22862:6630773,20539524:0,0,0 +g1,22862:6630773,20539524 +g1,22862:6630773,20539524 +g1,22862:6303093,20539524 +(1,22862:6303093,20539524:0,0,0 +) +g1,22862:6630773,20539524 +) +g1,22870:7626635,20539524 +g1,22870:8290543,20539524 +g1,22870:8954451,20539524 +g1,22870:11610083,20539524 +g1,22870:12937899,20539524 +g1,22870:13601807,20539524 +h1,22870:13933761,20539524:0,0,0 +k1,22870:32583029,20539524:18649268 +g1,22870:32583029,20539524 +) +(1,22870:6630773,21224379:25952256,431045,106246 +h1,22870:6630773,21224379:0,0,0 +k1,22870:7587612,21224379:292931 +k1,22870:7880544,21224379:292932 +k1,22870:8173475,21224379:292931 +k1,22870:9794223,21224379:292932 +k1,22870:10087154,21224379:292931 +k1,22870:10380086,21224379:292932 +k1,22870:10673017,21224379:292931 +k1,22870:10965949,21224379:292932 +k1,22870:11258880,21224379:292931 +k1,22870:11551812,21224379:292932 +k1,22870:11844743,21224379:292931 +k1,22870:12137675,21224379:292932 +k1,22870:12430606,21224379:292931 +k1,22870:12723537,21224379:292931 +k1,22870:13016469,21224379:292932 +k1,22870:13309400,21224379:292931 +k1,22870:13602332,21224379:292932 +k1,22870:13895263,21224379:292931 +k1,22870:14188195,21224379:292932 +k1,22870:14481126,21224379:292931 +k1,22870:14774058,21224379:292932 +k1,22870:15066989,21224379:292931 +k1,22870:15359921,21224379:292932 +k1,22870:15652852,21224379:292931 +k1,22870:17605554,21224379:292932 +k1,22870:17898485,21224379:292931 +k1,22870:19519232,21224379:292931 +k1,22870:19812164,21224379:292932 +k1,22870:20105095,21224379:292931 +k1,22870:20398027,21224379:292932 +k1,22870:20690958,21224379:292931 +k1,22870:20983890,21224379:292932 +k1,22870:21276821,21224379:292931 +k1,22870:21569753,21224379:292932 +k1,22870:21862684,21224379:292931 +k1,22870:23483432,21224379:292932 +k1,22870:23776363,21224379:292931 +k1,22870:25065156,21224379:292931 +k1,22870:25358088,21224379:292932 +k1,22870:25651019,21224379:292931 +k1,22870:29263490,21224379:292932 +h1,22870:32583029,21224379:0,0,0 +k1,22870:32583029,21224379:0 +k1,22870:32583029,21224379:0 +) +(1,22870:6630773,21909234:25952256,424439,6605 +h1,22870:6630773,21909234:0,0,0 +g1,22870:7626635,21909234 +g1,22870:7958589,21909234 +g1,22870:8290543,21909234 +g1,22870:10282267,21909234 +g1,22870:10614221,21909234 +g1,22870:10946175,21909234 +g1,22870:11278129,21909234 +g1,22870:11610083,21909234 +g1,22870:11942037,21909234 +g1,22870:12273991,21909234 +g1,22870:12605945,21909234 +g1,22870:12937899,21909234 +g1,22870:13269853,21909234 +g1,22870:13601807,21909234 +g1,22870:13933761,21909234 +g1,22870:14265715,21909234 +g1,22870:14597669,21909234 +g1,22870:14929623,21909234 +g1,22870:15261577,21909234 +g1,22870:15593531,21909234 +g1,22870:15925485,21909234 +g1,22870:16257439,21909234 +g1,22870:16589393,21909234 +g1,22870:18581117,21909234 +g1,22870:18913071,21909234 +g1,22870:20904795,21909234 +g1,22870:21236749,21909234 +g1,22870:21568703,21909234 +g1,22870:21900657,21909234 +g1,22870:22232611,21909234 +g1,22870:22564565,21909234 +g1,22870:22896519,21909234 +g1,22870:23228473,21909234 +g1,22870:25220197,21909234 +g1,22870:27211921,21909234 +g1,22870:29203645,21909234 +g1,22870:29535599,21909234 +g1,22870:29867553,21909234 +g1,22870:30199507,21909234 +g1,22870:30531461,21909234 +g1,22870:30863415,21909234 +k1,22870:30863415,21909234:0 +h1,22870:32523185,21909234:0,0,0 +k1,22870:32583029,21909234:59844 +g1,22870:32583029,21909234 +) +(1,22870:6630773,22594089:25952256,424439,106246 +h1,22870:6630773,22594089:0,0,0 +k1,22870:7519973,22594089:225292 +k1,22870:8077220,22594089:225293 +k1,22870:16269407,22594089:225292 +k1,22870:18486424,22594089:225293 +k1,22870:22695164,22594089:225292 +k1,22870:23252411,22594089:225293 +k1,22870:23477703,22594089:225292 +k1,22870:23702996,22594089:225293 +k1,22870:23928288,22594089:225292 +k1,22870:24153581,22594089:225293 +k1,22870:25042781,22594089:225292 +k1,22870:25268074,22594089:225293 +k1,22870:25493366,22594089:225292 +k1,22870:25718658,22594089:225292 +k1,22870:29263490,22594089:225293 +h1,22870:32583029,22594089:0,0,0 +k1,22870:32583029,22594089:0 +k1,22870:32583029,22594089:0 +) +(1,22870:6630773,23278944:25952256,424439,106246 +h1,22870:6630773,23278944:0,0,0 +k1,22870:7519973,23278944:225292 +k1,22870:8077220,23278944:225293 +k1,22870:16269407,23278944:225292 +k1,22870:18486424,23278944:225293 +k1,22870:22695164,23278944:225292 +k1,22870:23252411,23278944:225293 +k1,22870:23477703,23278944:225292 +k1,22870:23702996,23278944:225293 +k1,22870:23928288,23278944:225292 +k1,22870:24153581,23278944:225293 +k1,22870:25042781,23278944:225292 +k1,22870:25268074,23278944:225293 +k1,22870:25493366,23278944:225292 +k1,22870:25718658,23278944:225292 +k1,22870:29263490,23278944:225293 +h1,22870:32583029,23278944:0,0,0 +k1,22870:32583029,23278944:0 +k1,22870:32583029,23278944:0 +) +(1,22870:6630773,23963799:25952256,424439,106246 +h1,22870:6630773,23963799:0,0,0 +k1,22870:7519973,23963799:225292 +k1,22870:8077220,23963799:225293 +k1,22870:16269407,23963799:225292 +k1,22870:18486424,23963799:225293 +k1,22870:22695164,23963799:225292 +k1,22870:23252411,23963799:225293 +k1,22870:23477703,23963799:225292 +k1,22870:23702996,23963799:225293 +k1,22870:23928288,23963799:225292 +k1,22870:24153581,23963799:225293 +k1,22870:25042781,23963799:225292 +k1,22870:25268074,23963799:225293 +k1,22870:25493366,23963799:225292 +k1,22870:25718658,23963799:225292 +k1,22870:29263490,23963799:225293 +h1,22870:32583029,23963799:0,0,0 +k1,22870:32583029,23963799:0 +k1,22870:32583029,23963799:0 +) +(1,22870:6630773,24648654:25952256,424439,9908 +h1,22870:6630773,24648654:0,0,0 +g1,22870:7626635,24648654 +g1,22870:8290543,24648654 +g1,22870:8954451,24648654 +g1,22870:10282267,24648654 +g1,22870:11942037,24648654 +h1,22870:13269853,24648654:0,0,0 +k1,22870:32583029,24648654:19313176 +g1,22870:32583029,24648654 +) +] +) +g1,22871:32583029,24658562 +g1,22871:6630773,24658562 +g1,22871:6630773,24658562 +g1,22871:32583029,24658562 +g1,22871:32583029,24658562 +) +h1,22871:6630773,24855170:0,0,0 +(1,22875:6630773,25720250:25952256,505283,134348 +h1,22874:6630773,25720250:983040,0,0 +k1,22874:8015023,25720250:188218 +k1,22874:9678468,25720250:188230 +k1,22874:12071984,25720250:188229 +k1,22874:13026329,25720250:188229 +k1,22874:16617188,25720250:188230 +k1,22874:17566945,25720250:188229 +k1,22874:19493190,25720250:188230 +k1,22874:20332847,25720250:188229 +k1,22874:22236809,25720250:188229 +k1,22874:24756155,25720250:188230 +k1,22874:26274765,25720250:188229 +k1,22874:27666235,25720250:188229 +k1,22874:29244484,25720250:188230 +k1,22874:31533142,25720250:188229 +k1,22874:32583029,25720250:0 +) +(1,22875:6630773,26585330:25952256,513147,134348 +g1,22874:9108689,26585330 +h1,22874:10079277,26585330:0,0,0 +g1,22874:10278506,26585330 +g1,22874:11287105,26585330 +g1,22874:12984487,26585330 +h1,22874:14179864,26585330:0,0,0 +g1,22874:14379093,26585330 +g1,22874:15525973,26585330 +g1,22874:17842670,26585330 +g1,22874:18851269,26585330 +g1,22874:20069583,26585330 +g1,22874:21361297,26585330 +g1,22874:22219818,26585330 +g1,22874:23438132,26585330 +g1,22874:25027380,26585330 +g1,22874:26418054,26585330 +g1,22874:29292463,26585330 +k1,22875:32583029,26585330:39980 +g1,22875:32583029,26585330 +) +v1,22877:6630773,27450410:0,393216,0 +(1,22878:6630773,30452475:25952256,3395281,0 +g1,22878:6630773,30452475 +g1,22878:6237557,30452475 +r1,22888:6368629,30452475:131072,3395281,0 +g1,22878:6567858,30452475 +g1,22878:6764466,30452475 +[1,22878:6764466,30452475:25818563,3395281,0 +(1,22878:6764466,27722887:25818563,665693,196608 +(1,22877:6764466,27722887:0,665693,196608 +r1,22888:8010564,27722887:1246098,862301,196608 +k1,22877:6764466,27722887:-1246098 +) +(1,22877:6764466,27722887:1246098,665693,196608 +) +k1,22877:8167497,27722887:156933 +k1,22877:10302005,27722887:327680 +k1,22877:11287968,27722887:156933 +k1,22877:15109674,27722887:156933 +k1,22877:16815223,27722887:156933 +k1,22877:18361519,27722887:156933 +k1,22877:23355664,27722887:156933 +k1,22877:25195562,27722887:156933 +k1,22877:27015143,27722887:156933 +k1,22877:27788114,27722887:156933 +k1,22877:29396669,27722887:156933 +k1,22877:32583029,27722887:0 +) +(1,22878:6764466,28587967:25818563,513147,134348 +k1,22877:7597882,28587967:174124 +k1,22877:8975247,28587967:174124 +k1,22877:10713060,28587967:174124 +k1,22877:12375508,28587967:174125 +k1,22877:13311160,28587967:174124 +k1,22877:16540572,28587967:174124 +k1,22877:17733781,28587967:174124 +k1,22877:19214038,28587967:174124 +k1,22877:22574522,28587967:174124 +k1,22877:23510175,28587967:174125 +k1,22877:25463601,28587967:174124 +k1,22877:28714640,28587967:174124 +k1,22877:29907849,28587967:174124 +k1,22877:32583029,28587967:0 +) +(1,22878:6764466,29453047:25818563,505283,134348 +k1,22877:9854629,29453047:169879 +k1,22877:11215952,29453047:169878 +k1,22877:14163902,29453047:169879 +k1,22877:16521373,29453047:169879 +k1,22877:17847961,29453047:169878 +k1,22877:21204200,29453047:169879 +k1,22877:21986840,29453047:169878 +k1,22877:22512579,29453047:169879 +k1,22877:24281536,29453047:169879 +k1,22877:25642859,29453047:169878 +k1,22877:26425500,29453047:169879 +k1,22877:28047001,29453047:169879 +k1,22877:29572164,29453047:169878 +k1,22877:31563944,29453047:169879 +k1,22877:32583029,29453047:0 +) +(1,22878:6764466,30318127:25818563,513147,134348 +g1,22877:9742422,30318127 +g1,22877:11621994,30318127 +g1,22877:13012668,30318127 +g1,22877:14598639,30318127 +g1,22877:15864139,30318127 +g1,22877:17011019,30318127 +g1,22877:18758864,30318127 +g1,22877:20059098,30318127 +g1,22877:22919744,30318127 +g1,22877:24686594,30318127 +g1,22877:25904908,30318127 +g1,22877:28858615,30318127 +k1,22878:32583029,30318127:2195459 +g1,22878:32583029,30318127 +) +] +g1,22878:32583029,30452475 +) +h1,22878:6630773,30452475:0,0,0 +(1,22882:6630773,33283635:25952256,32768,229376 +(1,22882:6630773,33283635:0,32768,229376 +(1,22882:6630773,33283635:5505024,32768,229376 +r1,22888:12135797,33283635:5505024,262144,229376 +) +k1,22882:6630773,33283635:-5505024 +) +(1,22882:6630773,33283635:25952256,32768,0 +r1,22888:32583029,33283635:25952256,32768,0 +) +) +(1,22882:6630773,34915487:25952256,606339,14155 +(1,22882:6630773,34915487:2464678,582746,14155 +g1,22882:6630773,34915487 +g1,22882:9095451,34915487 +) +k1,22882:32583029,34915487:18845270 +g1,22882:32583029,34915487 +) +(1,22886:6630773,36173783:25952256,513147,126483 +k1,22885:9860933,36173783:202397 +k1,22885:12078562,36173783:202397 +k1,22885:13973099,36173783:202397 +k1,22885:16017057,36173783:202396 +k1,22885:17410899,36173783:202397 +k1,22885:19215651,36173783:202397 +k1,22885:21259610,36173783:202397 +k1,22885:22453567,36173783:202397 +k1,22885:23675049,36173783:202397 +k1,22885:25479145,36173783:202396 +k1,22885:28986523,36173783:202397 +k1,22885:30702146,36173783:202397 +k1,22885:32583029,36173783:0 +) +(1,22886:6630773,37038863:25952256,505283,134348 +k1,22885:10197898,37038863:205128 +k1,22885:13475353,37038863:205127 +k1,22885:15535150,37038863:205128 +k1,22885:16549647,37038863:205127 +k1,22885:17773860,37038863:205128 +k1,22885:21272171,37038863:205127 +k1,22885:24687908,37038863:205128 +k1,22885:26725422,37038863:205127 +k1,22885:27462047,37038863:205128 +k1,22885:30451143,37038863:205127 +k1,22885:31012131,37038863:205128 +k1,22886:32583029,37038863:0 +) +(1,22886:6630773,37903943:25952256,513147,134348 +k1,22885:9717670,37903943:241979 +k1,22885:10942689,37903943:241979 +k1,22885:13365051,37903943:241979 +k1,22885:14554681,37903943:241979 +k1,22885:17749712,37903943:241979 +k1,22885:18650983,37903943:241979 +k1,22885:22186145,37903943:241978 +k1,22885:23991158,37903943:241979 +k1,22885:25305306,37903943:241979 +k1,22885:26005382,37903943:241979 +k1,22885:27740271,37903943:241979 +k1,22885:29048521,37903943:241979 +k1,22885:31816913,37903943:241979 +k1,22885:32583029,37903943:0 +) +(1,22886:6630773,38769023:25952256,513147,134348 +k1,22885:7874592,38769023:224734 +k1,22885:10705037,38769023:224734 +k1,22885:13335598,38769023:224734 +k1,22885:14176369,38769023:224733 +k1,22885:16334415,38769023:224734 +k1,22885:17542189,38769023:224734 +k1,22885:20451278,38769023:224734 +k1,22885:21629561,38769023:224734 +k1,22885:22986757,38769023:224734 +k1,22885:24699813,38769023:224733 +k1,22885:25686075,38769023:224734 +k1,22885:29631943,38769023:224734 +k1,22885:32583029,38769023:0 +) +(1,22886:6630773,39634103:25952256,513147,134348 +k1,22885:8013834,39634103:186374 +k1,22885:9183248,39634103:186374 +k1,22885:11550006,39634103:186375 +k1,22885:13249606,39634103:186374 +k1,22885:14197508,39634103:186374 +k1,22885:17161298,39634103:186374 +k1,22885:18448678,39634103:186375 +k1,22885:21296469,39634103:186374 +k1,22885:25362574,39634103:186374 +k1,22885:26936345,39634103:186374 +k1,22885:28141805,39634103:186375 +k1,22885:30184814,39634103:186374 +k1,22885:31562633,39634103:186374 +k1,22885:32583029,39634103:0 +) +(1,22886:6630773,40499183:25952256,513147,134348 +k1,22885:9291912,40499183:150455 +k1,22885:10882194,40499183:150456 +k1,22885:11684077,40499183:150455 +k1,22885:12582299,40499183:150456 +k1,22885:13945825,40499183:150455 +k1,22885:15374887,40499183:150455 +k1,22885:18819838,40499183:150456 +k1,22885:19731821,40499183:150455 +k1,22885:22666245,40499183:150455 +k1,22885:23231495,40499183:150407 +k1,22885:26292405,40499183:150456 +k1,22885:27634305,40499183:150455 +k1,22885:29121695,40499183:150456 +k1,22885:31563944,40499183:150455 +k1,22885:32583029,40499183:0 +) +(1,22886:6630773,41364263:25952256,513147,126483 +k1,22885:7780976,41364263:167163 +k1,22885:8599568,41364263:167164 +k1,22885:9514497,41364263:167163 +k1,22885:12318830,41364263:167164 +k1,22885:13137421,41364263:167163 +k1,22885:13660445,41364263:167164 +k1,22885:15477805,41364263:167163 +k1,22885:18130749,41364263:167163 +k1,22885:20478296,41364263:167164 +k1,22885:22039410,41364263:167163 +k1,22885:24983990,41364263:167164 +k1,22885:26756785,41364263:167163 +k1,22885:28966706,41364263:167164 +k1,22885:31315563,41364263:167163 +k1,22886:32583029,41364263:0 +) +(1,22886:6630773,42229343:25952256,513147,126483 +k1,22885:7461722,42229343:242436 +k1,22885:8900845,42229343:242436 +k1,22885:11487504,42229343:242436 +k1,22885:13910323,42229343:242436 +k1,22885:14684256,42229343:242436 +k1,22885:16781361,42229343:242436 +k1,22885:17833167,42229343:242436 +k1,22885:19434777,42229343:242393 +k1,22885:20868658,42229343:242436 +k1,22885:24036621,42229343:242436 +k1,22885:26403734,42229343:242436 +k1,22885:27297598,42229343:242436 +k1,22885:29977973,42229343:242436 +k1,22885:32583029,42229343:0 +) +(1,22886:6630773,43094423:25952256,513147,126483 +k1,22885:8511001,43094423:224133 +k1,22885:10756920,43094423:224133 +k1,22885:13491737,43094423:224133 +k1,22885:14707430,43094423:224133 +k1,22885:16581760,43094423:224133 +k1,22885:19463378,43094423:224133 +k1,22885:23396193,43094423:224133 +k1,22885:25992074,43094423:224133 +k1,22885:27712394,43094423:224133 +k1,22885:28622689,43094423:224133 +k1,22885:31966991,43094423:224133 +k1,22885:32583029,43094423:0 +) +(1,22886:6630773,43959503:25952256,505283,126483 +k1,22885:9489366,43959503:192588 +k1,22885:10333382,43959503:192588 +k1,22885:11545056,43959503:192589 +k1,22885:13659815,43959503:192588 +k1,22885:15415437,43959503:192588 +k1,22885:16235860,43959503:192588 +k1,22885:17194564,43959503:192588 +k1,22885:19258206,43959503:192589 +k1,22885:20826395,43959503:192588 +k1,22885:23029628,43959503:192588 +k1,22885:25645082,43959503:192588 +k1,22885:26523832,43959503:192588 +k1,22885:28209987,43959503:192589 +k1,22885:29085460,43959503:192588 +k1,22885:31021961,43959503:192588 +k1,22886:32583029,43959503:0 +) +(1,22886:6630773,44824583:25952256,513147,126483 +k1,22885:8742145,44824583:250805 +k1,22885:9754479,44824583:250806 +k1,22885:12073600,44824583:250805 +k1,22885:12983697,44824583:250805 +k1,22885:14253587,44824583:250805 +k1,22885:17829034,44824583:250806 +k1,22885:21200008,44824583:250805 +k1,22885:22555095,44824583:250805 +k1,22885:23553667,44824583:250806 +k1,22885:26754247,44824583:250805 +k1,22885:28272518,44824583:250805 +k1,22885:28938115,44824583:250754 +k1,22885:31140582,44824583:250805 +k1,22885:32583029,44824583:0 +) +(1,22886:6630773,45689663:25952256,505283,126483 +g1,22885:7849087,45689663 +g1,22885:11168485,45689663 +k1,22886:32583030,45689663:17684236 +g1,22886:32583030,45689663 +) +] +(1,22888:32583029,45706769:0,0,0 +g1,22888:32583029,45706769 +) +) +] +(1,22888:6630773,47279633:25952256,0,0 +h1,22888:6630773,47279633:25952256,0,0 +) +] +(1,22888:4262630,4025873:0,0,0 +[1,22888:-473656,4025873:0,0,0 +(1,22888:-473656,-710413:0,0,0 +(1,22888:-473656,-710413:0,0,0 +g1,22888:-473656,-710413 +) +g1,22888:-473656,-710413 +) +] +) +] +!27806 +}394 +Input:3699:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3700:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3701:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3702:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3703:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3704:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3705:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3706:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3707:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3708:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3709:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3710:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3711:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3712:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3713:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3714:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3715:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1610 -{412 -[1,22687:4262630,47279633:28320399,43253760,0 -(1,22687:4262630,4025873:0,0,0 -[1,22687:-473656,4025873:0,0,0 -(1,22687:-473656,-710413:0,0,0 -(1,22687:-473656,-644877:0,0,0 -k1,22687:-473656,-644877:-65536 +{395 +[1,22907:4262630,47279633:28320399,43253760,0 +(1,22907:4262630,4025873:0,0,0 +[1,22907:-473656,4025873:0,0,0 +(1,22907:-473656,-710413:0,0,0 +(1,22907:-473656,-644877:0,0,0 +k1,22907:-473656,-644877:-65536 ) -(1,22687:-473656,4736287:0,0,0 -k1,22687:-473656,4736287:5209943 +(1,22907:-473656,4736287:0,0,0 +k1,22907:-473656,4736287:5209943 ) -g1,22687:-473656,-710413 +g1,22907:-473656,-710413 ) ] ) -[1,22687:6630773,47279633:25952256,43253760,0 -[1,22687:6630773,4812305:25952256,786432,0 -(1,22687:6630773,4812305:25952256,505283,11795 -(1,22687:6630773,4812305:25952256,505283,11795 -g1,22687:3078558,4812305 -[1,22687:3078558,4812305:0,0,0 -(1,22687:3078558,2439708:0,1703936,0 -k1,22687:1358238,2439708:-1720320 -(1,21457:1358238,2439708:1720320,1703936,0 -(1,21457:1358238,2439708:1179648,16384,0 -r1,22687:2537886,2439708:1179648,16384,0 +[1,22907:6630773,47279633:25952256,43253760,0 +[1,22907:6630773,4812305:25952256,786432,0 +(1,22907:6630773,4812305:25952256,505283,134348 +(1,22907:6630773,4812305:25952256,505283,134348 +g1,22907:3078558,4812305 +[1,22907:3078558,4812305:0,0,0 +(1,22907:3078558,2439708:0,1703936,0 +k1,22907:1358238,2439708:-1720320 +(1,21670:1358238,2439708:1720320,1703936,0 +(1,21670:1358238,2439708:1179648,16384,0 +r1,22907:2537886,2439708:1179648,16384,0 ) -g1,21457:3062174,2439708 -(1,21457:3062174,2439708:16384,1703936,0 -[1,21457:3062174,2439708:25952256,1703936,0 -(1,21457:3062174,1915420:25952256,1179648,0 -(1,21457:3062174,1915420:16384,1179648,0 -r1,22687:3078558,1915420:16384,1179648,0 +g1,21670:3062174,2439708 +(1,21670:3062174,2439708:16384,1703936,0 +[1,21670:3062174,2439708:25952256,1703936,0 +(1,21670:3062174,1915420:25952256,1179648,0 +(1,21670:3062174,1915420:16384,1179648,0 +r1,22907:3078558,1915420:16384,1179648,0 ) -k1,21457:29014430,1915420:25935872 -g1,21457:29014430,1915420 +k1,21670:29014430,1915420:25935872 +g1,21670:29014430,1915420 ) ] ) ) ) ] -[1,22687:3078558,4812305:0,0,0 -(1,22687:3078558,2439708:0,1703936,0 -g1,22687:29030814,2439708 -g1,22687:36135244,2439708 -(1,21457:36135244,2439708:1720320,1703936,0 -(1,21457:36135244,2439708:16384,1703936,0 -[1,21457:36135244,2439708:25952256,1703936,0 -(1,21457:36135244,1915420:25952256,1179648,0 -(1,21457:36135244,1915420:16384,1179648,0 -r1,22687:36151628,1915420:16384,1179648,0 +[1,22907:3078558,4812305:0,0,0 +(1,22907:3078558,2439708:0,1703936,0 +g1,22907:29030814,2439708 +g1,22907:36135244,2439708 +(1,21670:36135244,2439708:1720320,1703936,0 +(1,21670:36135244,2439708:16384,1703936,0 +[1,21670:36135244,2439708:25952256,1703936,0 +(1,21670:36135244,1915420:25952256,1179648,0 +(1,21670:36135244,1915420:16384,1179648,0 +r1,22907:36151628,1915420:16384,1179648,0 ) -k1,21457:62087500,1915420:25935872 -g1,21457:62087500,1915420 +k1,21670:62087500,1915420:25935872 +g1,21670:62087500,1915420 ) ] ) -g1,21457:36675916,2439708 -(1,21457:36675916,2439708:1179648,16384,0 -r1,22687:37855564,2439708:1179648,16384,0 +g1,21670:36675916,2439708 +(1,21670:36675916,2439708:1179648,16384,0 +r1,22907:37855564,2439708:1179648,16384,0 ) ) -k1,22687:3078556,2439708:-34777008 +k1,22907:3078556,2439708:-34777008 ) ] -[1,22687:3078558,4812305:0,0,0 -(1,22687:3078558,49800853:0,16384,2228224 -k1,22687:1358238,49800853:-1720320 -(1,21457:1358238,49800853:1720320,16384,2228224 -(1,21457:1358238,49800853:1179648,16384,0 -r1,22687:2537886,49800853:1179648,16384,0 +[1,22907:3078558,4812305:0,0,0 +(1,22907:3078558,49800853:0,16384,2228224 +k1,22907:1358238,49800853:-1720320 +(1,21670:1358238,49800853:1720320,16384,2228224 +(1,21670:1358238,49800853:1179648,16384,0 +r1,22907:2537886,49800853:1179648,16384,0 ) -g1,21457:3062174,49800853 -(1,21457:3062174,52029077:16384,1703936,0 -[1,21457:3062174,52029077:25952256,1703936,0 -(1,21457:3062174,51504789:25952256,1179648,0 -(1,21457:3062174,51504789:16384,1179648,0 -r1,22687:3078558,51504789:16384,1179648,0 +g1,21670:3062174,49800853 +(1,21670:3062174,52029077:16384,1703936,0 +[1,21670:3062174,52029077:25952256,1703936,0 +(1,21670:3062174,51504789:25952256,1179648,0 +(1,21670:3062174,51504789:16384,1179648,0 +r1,22907:3078558,51504789:16384,1179648,0 ) -k1,21457:29014430,51504789:25935872 -g1,21457:29014430,51504789 -) -] -) -) -) -] -[1,22687:3078558,4812305:0,0,0 -(1,22687:3078558,49800853:0,16384,2228224 -g1,22687:29030814,49800853 -g1,22687:36135244,49800853 -(1,21457:36135244,49800853:1720320,16384,2228224 -(1,21457:36135244,52029077:16384,1703936,0 -[1,21457:36135244,52029077:25952256,1703936,0 -(1,21457:36135244,51504789:25952256,1179648,0 -(1,21457:36135244,51504789:16384,1179648,0 -r1,22687:36151628,51504789:16384,1179648,0 -) -k1,21457:62087500,51504789:25935872 -g1,21457:62087500,51504789 -) -] -) -g1,21457:36675916,49800853 -(1,21457:36675916,49800853:1179648,16384,0 -r1,22687:37855564,49800853:1179648,16384,0 -) -) -k1,22687:3078556,49800853:-34777008 -) -] -g1,22687:6630773,4812305 -g1,22687:6630773,4812305 -g1,22687:10349285,4812305 -k1,22687:31387653,4812305:21038368 -) -) -] -[1,22687:6630773,45706769:25952256,40108032,0 -(1,22687:6630773,45706769:25952256,40108032,0 -(1,22687:6630773,45706769:0,0,0 -g1,22687:6630773,45706769 -) -[1,22687:6630773,45706769:25952256,40108032,0 -(1,22673:6630773,6254097:25952256,513147,126483 -k1,22672:7780976,6254097:167163 -k1,22672:8599568,6254097:167164 -k1,22672:9514497,6254097:167163 -k1,22672:12318830,6254097:167164 -k1,22672:13137421,6254097:167163 -k1,22672:13660445,6254097:167164 -k1,22672:15477805,6254097:167163 -k1,22672:18130749,6254097:167163 -k1,22672:20478296,6254097:167164 -k1,22672:22039410,6254097:167163 -k1,22672:24983990,6254097:167164 -k1,22672:26756785,6254097:167163 -k1,22672:28966706,6254097:167164 -k1,22672:31315563,6254097:167163 -k1,22673:32583029,6254097:0 -) -(1,22673:6630773,7095585:25952256,513147,126483 -k1,22672:7461722,7095585:242436 -k1,22672:8900845,7095585:242436 -k1,22672:11487504,7095585:242436 -k1,22672:13910323,7095585:242436 -k1,22672:14684256,7095585:242436 -k1,22672:16781361,7095585:242436 -k1,22672:17833167,7095585:242436 -k1,22672:19434777,7095585:242393 -k1,22672:20868658,7095585:242436 -k1,22672:24036621,7095585:242436 -k1,22672:26403734,7095585:242436 -k1,22672:27297598,7095585:242436 -k1,22672:29977973,7095585:242436 -k1,22672:32583029,7095585:0 -) -(1,22673:6630773,7937073:25952256,513147,126483 -k1,22672:8511001,7937073:224133 -k1,22672:10756920,7937073:224133 -k1,22672:13491737,7937073:224133 -k1,22672:14707430,7937073:224133 -k1,22672:16581760,7937073:224133 -k1,22672:19463378,7937073:224133 -k1,22672:23396193,7937073:224133 -k1,22672:25992074,7937073:224133 -k1,22672:27712394,7937073:224133 -k1,22672:28622689,7937073:224133 -k1,22672:31966991,7937073:224133 -k1,22672:32583029,7937073:0 -) -(1,22673:6630773,8778561:25952256,505283,126483 -k1,22672:9489366,8778561:192588 -k1,22672:10333382,8778561:192588 -k1,22672:11545056,8778561:192589 -k1,22672:13659815,8778561:192588 -k1,22672:15415437,8778561:192588 -k1,22672:16235860,8778561:192588 -k1,22672:17194564,8778561:192588 -k1,22672:19258206,8778561:192589 -k1,22672:20826395,8778561:192588 -k1,22672:23029628,8778561:192588 -k1,22672:25645082,8778561:192588 -k1,22672:26523832,8778561:192588 -k1,22672:28209987,8778561:192589 -k1,22672:29085460,8778561:192588 -k1,22672:31021961,8778561:192588 -k1,22673:32583029,8778561:0 -) -(1,22673:6630773,9620049:25952256,513147,126483 -k1,22672:8742145,9620049:250805 -k1,22672:9754479,9620049:250806 -k1,22672:12073600,9620049:250805 -k1,22672:12983697,9620049:250805 -k1,22672:14253587,9620049:250805 -k1,22672:17829034,9620049:250806 -k1,22672:21200008,9620049:250805 -k1,22672:22555095,9620049:250805 -k1,22672:23553667,9620049:250806 -k1,22672:26754247,9620049:250805 -k1,22672:28272518,9620049:250805 -k1,22672:28938115,9620049:250754 -k1,22672:31140582,9620049:250805 -k1,22672:32583029,9620049:0 -) -(1,22673:6630773,10461537:25952256,505283,126483 -g1,22672:7849087,10461537 -g1,22672:11168485,10461537 -k1,22673:32583030,10461537:17684236 -g1,22673:32583030,10461537 -) -v1,22675:6630773,11827313:0,393216,0 -(1,22682:6630773,40984972:25952256,29550875,0 -g1,22682:6630773,40984972 -g1,22682:6303093,40984972 -r1,22687:6401397,40984972:98304,29550875,0 -g1,22682:6600626,40984972 -g1,22682:6797234,40984972 -[1,22682:6797234,40984972:25785795,29550875,0 -(1,22676:6797234,12247897:25785795,813800,267386 -(1,22675:6797234,12247897:0,813800,267386 -r1,22687:8134168,12247897:1336934,1081186,267386 -k1,22675:6797234,12247897:-1336934 -) -(1,22675:6797234,12247897:1336934,813800,267386 -) -k1,22675:8319030,12247897:184862 -k1,22675:8646710,12247897:327680 -k1,22675:10614807,12247897:184862 -k1,22675:13214015,12247897:184862 -k1,22675:15801427,12247897:184862 -k1,22675:17553910,12247897:184862 -k1,22675:18094632,12247897:184862 -k1,22675:21746348,12247897:184861 -k1,22675:22287070,12247897:184862 -k1,22675:24854821,12247897:184862 -k1,22675:25698975,12247897:184862 -k1,22675:27305313,12247897:184862 -k1,22675:28884126,12247897:184862 -k1,22675:31023272,12247897:184862 -k1,22675:32583029,12247897:0 -) -(1,22676:6797234,13089385:25785795,513147,134348 -k1,22675:8170146,13089385:268630 -k1,22675:11511104,13089385:268630 -(1,22675:11511104,13089385:0,414482,115847 -r1,22687:12221082,13089385:709978,530329,115847 -k1,22675:11511104,13089385:-709978 -) -(1,22675:11511104,13089385:709978,414482,115847 -k1,22675:11511104,13089385:3277 -h1,22675:12217805,13089385:0,411205,112570 -) -k1,22675:12489712,13089385:268630 -k1,22675:14942658,13089385:268631 -k1,22675:15698806,13089385:268560 -k1,22675:18526617,13089385:268630 -k1,22675:21383919,13089385:268630 -k1,22675:22743723,13089385:268630 -k1,22675:24792967,13089385:268631 -k1,22675:26629218,13089385:268630 -k1,22675:27916933,13089385:268630 -k1,22675:31478747,13089385:268630 -k1,22675:32583029,13089385:0 -) -(1,22676:6797234,13930873:25785795,513147,134348 -k1,22675:8841465,13930873:201359 -k1,22675:9658863,13930873:201360 -k1,22675:12332240,13930873:201359 -k1,22675:15246791,13930873:201360 -k1,22675:16131035,13930873:201359 -k1,22675:18040262,13930873:201359 -k1,22675:18707583,13930873:201360 -k1,22675:19928027,13930873:201359 -k1,22675:21476806,13930873:201359 -k1,22675:22209663,13930873:201360 -k1,22675:23456977,13930873:201359 -k1,22675:25548395,13930873:201360 -k1,22675:26432639,13930873:201359 -k1,22675:27250036,13930873:201359 -k1,22675:28985594,13930873:201360 -k1,22675:29869838,13930873:201359 -k1,22675:32583029,13930873:0 -) -(1,22676:6797234,14772361:25785795,513147,134348 -k1,22675:8558522,14772361:152379 -k1,22675:10104852,14772361:152379 -(1,22675:10104852,14772361:0,414482,115847 -r1,22687:10814830,14772361:709978,530329,115847 -k1,22675:10104852,14772361:-709978 -) -(1,22675:10104852,14772361:709978,414482,115847 -k1,22675:10104852,14772361:3277 -h1,22675:10811553,14772361:0,411205,112570 -) -k1,22675:10967209,14772361:152379 -k1,22675:13303904,14772361:152380 -k1,22675:13922244,14772361:152379 -k1,22675:15093708,14772361:152379 -k1,22675:17026700,14772361:152379 -k1,22675:19847050,14772361:152379 -k1,22675:22005486,14772361:152379 -k1,22675:23579342,14772361:152380 -k1,22675:24347759,14772361:152379 -k1,22675:25519223,14772361:152379 -k1,22675:29138457,14772361:152379 -k1,22675:32583029,14772361:0 -) -(1,22676:6797234,15613849:25785795,513147,134348 -k1,22675:7904418,15613849:297814 -k1,22675:9221317,15613849:297814 -k1,22675:12214628,15613849:297815 -k1,22675:14199339,15613849:297814 -k1,22675:14955250,15613849:297814 -k1,22675:16589998,15613849:297814 -k1,22675:17635579,15613849:297815 -k1,22675:20563353,15613849:297814 -k1,22675:21512595,15613849:297814 -k1,22675:23830884,15613849:297814 -k1,22675:26134755,15613849:297814 -k1,22675:28027716,15613849:297815 -k1,22675:29087058,15613849:297814 -k1,22675:31812326,15613849:297814 -k1,22675:32583029,15613849:0 -) -(1,22676:6797234,16455337:25785795,426639,134348 -k1,22676:32583028,16455337:22539796 -g1,22676:32583028,16455337 -) -(1,22678:6797234,17296825:25785795,513147,126483 -h1,22677:6797234,17296825:983040,0,0 -k1,22677:9636203,17296825:160513 -k1,22677:12803507,17296825:160512 -k1,22677:15185691,17296825:160513 -k1,22677:15997631,17296825:160512 -k1,22677:17177229,17296825:160513 -k1,22677:19519436,17296825:160513 -k1,22677:20339240,17296825:160512 -k1,22677:21889116,17296825:160513 -k1,22677:23617250,17296825:160513 -k1,22677:25374219,17296825:160512 -k1,22677:27561761,17296825:160513 -k1,22677:28913718,17296825:160512 -k1,22677:30670688,17296825:160513 -k1,22677:32583029,17296825:0 -) -(1,22678:6797234,18138313:25785795,513147,126483 -k1,22677:7951025,18138313:162231 -k1,22677:9296181,18138313:162231 -k1,22677:10109841,18138313:162232 -k1,22677:13746791,18138313:162231 -k1,22677:16544225,18138313:162231 -k1,22677:17878895,18138313:162231 -k1,22677:20803469,18138313:162231 -k1,22677:23476384,18138313:162231 -k1,22677:24923122,18138313:162232 -k1,22677:27399429,18138313:162231 -k1,22677:30324003,18138313:162231 -k1,22678:32583029,18138313:0 -) -(1,22678:6797234,18979801:25785795,513147,7863 -k1,22677:8593884,18979801:198882 -k1,22677:9602137,18979801:198883 -k1,22677:11349635,18979801:198882 -k1,22677:12080015,18979801:198883 -k1,22677:14728633,18979801:198882 -k1,22677:15610400,18979801:198882 -k1,22677:17049224,18979801:198883 -k1,22677:19022821,18979801:198882 -k1,22677:19837742,18979801:198883 -k1,22677:20392484,18979801:198882 -k1,22677:23884551,18979801:198883 -k1,22677:24541530,18979801:198882 -k1,22677:25271909,18979801:198882 -k1,22677:27920528,18979801:198883 -k1,22677:28770838,18979801:198882 -k1,22677:29904264,18979801:198883 -k1,22677:31122231,18979801:198882 -k1,22678:32583029,18979801:0 -) -(1,22678:6797234,19821289:25785795,513147,134348 -k1,22677:8569813,19821289:239692 -k1,22677:9702762,19821289:239693 -k1,22677:11810230,19821289:239692 -k1,22677:12665961,19821289:239693 -k1,22677:14726243,19821289:239692 -k1,22677:16157380,19821289:239692 -k1,22677:18850086,19821289:239693 -k1,22677:22394759,19821289:239692 -k1,22677:23285880,19821289:239693 -(1,22677:23285880,19821289:0,452978,115847 -r1,22687:24699281,19821289:1413401,568825,115847 -k1,22677:23285880,19821289:-1413401 -) -(1,22677:23285880,19821289:1413401,452978,115847 -k1,22677:23285880,19821289:3277 -h1,22677:24696004,19821289:0,411205,112570 -) -k1,22677:24938973,19821289:239692 -k1,22677:25794703,19821289:239692 -k1,22677:26656292,19821289:239652 -k1,22677:27555277,19821289:239693 -k1,22677:30987883,19821289:239692 -k1,22677:32583029,19821289:0 -) -(1,22678:6797234,20662777:25785795,513147,126483 -k1,22677:7363290,20662777:210196 -k1,22677:10084827,20662777:210197 -k1,22677:13092100,20662777:210196 -k1,22677:13918335,20662777:210197 -k1,22677:14899234,20662777:210196 -k1,22677:15524263,20662777:210186 -k1,22677:17123822,20662777:210196 -k1,22677:19210315,20662777:210197 -k1,22677:19952008,20662777:210196 -k1,22677:23001225,20662777:210197 -k1,22677:23862849,20662777:210196 -k1,22677:24820812,20662777:210197 -k1,22677:27182555,20662777:210196 -k1,22677:28584197,20662777:210197 -k1,22677:30211281,20662777:210196 -k1,22677:32583029,20662777:0 -) -(1,22678:6797234,21504265:25785795,505283,134348 -k1,22677:9905809,21504265:154867 -k1,22677:13187399,21504265:154867 -k1,22677:14361351,21504265:154867 -k1,22677:16169692,21504265:154868 -(1,22677:16169692,21504265:0,452978,115847 -r1,22687:17583093,21504265:1413401,568825,115847 -k1,22677:16169692,21504265:-1413401 -) -(1,22677:16169692,21504265:1413401,452978,115847 -k1,22677:16169692,21504265:3277 -h1,22677:17579816,21504265:0,411205,112570 -) -k1,22677:17737960,21504265:154867 -k1,22677:18575712,21504265:154867 -k1,22677:20290336,21504265:154867 -k1,22677:21487225,21504265:154867 -k1,22677:22661177,21504265:154867 -k1,22677:24997738,21504265:154867 -k1,22677:25804034,21504265:154868 -k1,22677:27555358,21504265:154867 -k1,22677:28396387,21504265:154867 -k1,22677:31563944,21504265:154867 -k1,22677:32583029,21504265:0 -) -(1,22678:6797234,22345753:25785795,513147,126483 -k1,22677:9778186,22345753:200259 -k1,22677:11600461,22345753:200259 -k1,22677:12548487,22345753:200260 -k1,22677:16203149,22345753:200259 -k1,22677:17472956,22345753:200259 -k1,22677:18439331,22345753:200259 -k1,22677:20061067,22345753:200260 -k1,22677:20877364,22345753:200259 -k1,22677:21433483,22345753:200259 -k1,22677:24016631,22345753:200259 -k1,22677:24868318,22345753:200259 -k1,22677:25816344,22345753:200260 -k1,22677:28966378,22345753:200259 -k1,22677:30158197,22345753:200259 -k1,22677:32583029,22345753:0 -) -(1,22678:6797234,23187241:25785795,513147,126483 -k1,22677:7686948,23187241:203552 -k1,22677:9047211,23187241:203553 -k1,22677:9910055,23187241:203552 -k1,22677:11132693,23187241:203553 -(1,22677:11132693,23187241:0,452978,115847 -r1,22687:13249518,23187241:2116825,568825,115847 -k1,22677:11132693,23187241:-2116825 -) -(1,22677:11132693,23187241:2116825,452978,115847 -k1,22677:11132693,23187241:3277 -h1,22677:13246241,23187241:0,411205,112570 -) -k1,22677:13626740,23187241:203552 -(1,22677:13626740,23187241:0,414482,115847 -r1,22687:15040141,23187241:1413401,530329,115847 -k1,22677:13626740,23187241:-1413401 -) -(1,22677:13626740,23187241:1413401,414482,115847 -k1,22677:13626740,23187241:3277 -h1,22677:15036864,23187241:0,411205,112570 -) -k1,22677:15417364,23187241:203553 -(1,22677:15417364,23187241:0,452978,115847 -r1,22687:16830765,23187241:1413401,568825,115847 -k1,22677:15417364,23187241:-1413401 -) -(1,22677:15417364,23187241:1413401,452978,115847 -k1,22677:15417364,23187241:3277 -h1,22677:16827488,23187241:0,411205,112570 -) -k1,22677:17034317,23187241:203552 -k1,22677:17920755,23187241:203553 -(1,22677:17920755,23187241:0,414482,115847 -r1,22687:19334156,23187241:1413401,530329,115847 -k1,22677:17920755,23187241:-1413401 -) -(1,22677:17920755,23187241:1413401,414482,115847 -k1,22677:17920755,23187241:3277 -h1,22677:19330879,23187241:0,411205,112570 -) -k1,22677:19537708,23187241:203552 -k1,22677:22425616,23187241:203553 -k1,22677:24023119,23187241:203552 -k1,22677:25245757,23187241:203553 -k1,22677:28079269,23187241:203552 -k1,22677:31364325,23187241:203553 -k1,22677:32227169,23187241:203552 -k1,22677:32583029,23187241:0 -) -(1,22678:6797234,24028729:25785795,513147,134348 -k1,22677:8786828,24028729:174902 -k1,22677:10200362,24028729:174903 -k1,22677:11034556,24028729:174902 -k1,22677:13592348,24028729:174903 -k1,22677:16272036,24028729:174902 -k1,22677:17840890,24028729:174903 -k1,22677:19034877,24028729:174902 -k1,22677:21278096,24028729:174903 -k1,22677:22112290,24028729:174902 -k1,22677:23306278,24028729:174903 -k1,22677:26322821,24028729:174902 -k1,22677:27183886,24028729:174903 -(1,22677:27183886,24028729:0,414482,115847 -r1,22687:28597287,24028729:1413401,530329,115847 -k1,22677:27183886,24028729:-1413401 -) -(1,22677:27183886,24028729:1413401,414482,115847 -k1,22677:27183886,24028729:3277 -h1,22677:28594010,24028729:0,411205,112570 -) -k1,22677:28945859,24028729:174902 -k1,22677:30317449,24028729:174903 -k1,22677:32583029,24028729:0 -) -(1,22678:6797234,24870217:25785795,513147,126483 -k1,22677:9205244,24870217:227627 -(1,22677:9205244,24870217:0,452978,115847 -r1,22687:11673781,24870217:2468537,568825,115847 -k1,22677:9205244,24870217:-2468537 -) -(1,22677:9205244,24870217:2468537,452978,115847 -k1,22677:9205244,24870217:3277 -h1,22677:11670504,24870217:0,411205,112570 -) -k1,22677:11901408,24870217:227627 -k1,22677:13414852,24870217:227628 -k1,22677:15569237,24870217:227627 -k1,22677:16869033,24870217:227627 -k1,22677:17782822,24870217:227627 -k1,22677:18468547,24870217:227628 -k1,22677:20189084,24870217:227627 -k1,22677:21482982,24870217:227627 -k1,22677:23853636,24870217:227627 -k1,22677:27973447,24870217:227628 -k1,22677:28659171,24870217:227627 -k1,22677:30932832,24870217:227627 -k1,22677:32583029,24870217:0 -) -(1,22678:6797234,25711705:25785795,513147,134348 -g1,22677:9480278,25711705 -g1,22677:10330935,25711705 -g1,22677:11555147,25711705 -g1,22677:13934759,25711705 -g1,22677:18986274,25711705 -g1,22677:19798265,25711705 -g1,22677:20353354,25711705 -g1,22677:22583544,25711705 -g1,22677:23398811,25711705 -k1,22678:32583029,25711705:7388532 -g1,22678:32583029,25711705 -) -(1,22680:6797234,26553193:25785795,513147,134348 -h1,22679:6797234,26553193:983040,0,0 -k1,22679:9732591,26553193:169082 -k1,22679:12304224,26553193:169083 -k1,22679:12829166,26553193:169082 -(1,22679:12829166,26553193:0,414482,115847 -r1,22687:13890855,26553193:1061689,530329,115847 -k1,22679:12829166,26553193:-1061689 -) -(1,22679:12829166,26553193:1061689,414482,115847 -k1,22679:12829166,26553193:3277 -h1,22679:13887578,26553193:0,411205,112570 -) -k1,22679:14059937,26553193:169082 -k1,22679:15385730,26553193:169083 -k1,22679:16780991,26553193:169082 -k1,22679:20981848,26553193:169082 -k1,22679:23967013,26553193:169083 -k1,22679:25268557,26553193:169082 -k1,22679:26185405,26553193:169082 -k1,22679:29866562,26553193:169083 -k1,22679:31227089,26553193:169082 -k1,22680:32583029,26553193:0 -) -(1,22680:6797234,27394681:25785795,513147,134348 -k1,22679:9201397,27394681:212639 -k1,22679:10486205,27394681:212639 -k1,22679:12074445,27394681:212639 -k1,22679:12753045,27394681:212639 -k1,22679:13984769,27394681:212639 -k1,22679:16681223,27394681:212639 -k1,22679:18582069,27394681:212639 -k1,22679:19326205,27394681:212639 -k1,22679:22217956,27394681:212639 -k1,22679:23116757,27394681:212639 -k1,22679:26168416,27394681:212639 -k1,22679:27948676,27394681:212639 -k1,22679:29180400,27394681:212639 -k1,22679:32583029,27394681:0 -) -(1,22680:6797234,28236169:25785795,513147,134348 -k1,22679:9208918,28236169:206397 -k1,22679:10066744,28236169:206398 -k1,22679:11292226,28236169:206397 -k1,22679:14194120,28236169:206398 -k1,22679:15673882,28236169:206397 -k1,22679:16630011,28236169:206397 -k1,22679:17192269,28236169:206398 -k1,22679:19271685,28236169:206397 -k1,22679:21963863,28236169:206397 -k1,22679:23564212,28236169:206398 -k1,22679:24126469,28236169:206397 -k1,22679:26656774,28236169:206398 -k1,22679:29190354,28236169:206397 -k1,22679:30056043,28236169:206397 -k1,22679:30618301,28236169:206398 -k1,22679:31896867,28236169:206397 -k1,22679:32583029,28236169:0 -) -(1,22680:6797234,29077657:25785795,505283,134348 -k1,22679:9515434,29077657:234385 -k1,22679:12042268,29077657:234385 -k1,22679:13166632,29077657:234385 -k1,22679:14640302,29077657:234384 -k1,22679:16760813,29077657:234385 -k1,22679:18127660,29077657:234385 -k1,22679:20204917,29077657:234385 -k1,22679:21055340,29077657:234385 -k1,22679:22891425,29077657:234385 -k1,22679:24823192,29077657:234385 -k1,22679:25673614,29077657:234384 -k1,22679:26927084,29077657:234385 -k1,22679:29544358,29077657:234385 -k1,22679:30845014,29077657:234385 -k1,22679:32583029,29077657:0 -) -(1,22680:6797234,29919145:25785795,505283,115847 -k1,22679:9707787,29919145:225543 -k1,22679:10619492,29919145:225543 -k1,22679:13661118,29919145:225544 -k1,22679:15078106,29919145:225543 -k1,22679:18082376,29919145:225543 -k1,22679:18994081,29919145:225543 -k1,22679:19575485,29919145:225544 -(1,22679:19575485,29919145:0,452978,115847 -r1,22687:22747445,29919145:3171960,568825,115847 -k1,22679:19575485,29919145:-3171960 -) -(1,22679:19575485,29919145:3171960,452978,115847 -k1,22679:19575485,29919145:3277 -h1,22679:22744168,29919145:0,411205,112570 -) -k1,22679:22972988,29919145:225543 -k1,22679:25176408,29919145:225543 -k1,22679:26291930,29919145:225543 -k1,22679:29107457,29919145:225544 -k1,22679:29949038,29919145:225543 -k1,22679:31193666,29919145:225543 -k1,22679:32583029,29919145:0 -) -(1,22680:6797234,30760633:25785795,513147,134348 -k1,22679:9033461,30760633:186261 -k1,22679:9847558,30760633:186262 -k1,22679:11052904,30760633:186261 -k1,22679:12606246,30760633:186261 -k1,22679:13451799,30760633:186261 -k1,22679:16218213,30760633:186262 -k1,22679:18427570,30760633:186261 -k1,22679:18969691,30760633:186261 -(1,22679:18969691,30760633:0,452978,115847 -r1,22687:21438228,30760633:2468537,568825,115847 -k1,22679:18969691,30760633:-2468537 -) -(1,22679:18969691,30760633:2468537,452978,115847 -k1,22679:18969691,30760633:3277 -h1,22679:21434951,30760633:0,411205,112570 -) -k1,22679:21624490,30760633:186262 -k1,22679:23788628,30760633:186261 -k1,22679:27336886,30760633:186261 -(1,22679:27336886,30760633:0,414482,115847 -r1,22687:28046864,30760633:709978,530329,115847 -k1,22679:27336886,30760633:-709978 -) -(1,22679:27336886,30760633:709978,414482,115847 -k1,22679:27336886,30760633:3277 -h1,22679:28043587,30760633:0,411205,112570 -) -k1,22679:28233125,30760633:186261 -k1,22679:30430032,30760633:186262 -k1,22679:31563944,30760633:186261 -k1,22679:32583029,30760633:0 -) -(1,22680:6797234,31602121:25785795,513147,134348 -k1,22679:11184034,31602121:264585 -k1,22679:12674798,31602121:264585 -k1,22679:14276317,31602121:264585 -k1,22679:15288668,31602121:264585 -k1,22679:18331980,31602121:264585 -k1,22679:20923748,31602121:264585 -k1,22679:21847625,31602121:264585 -k1,22679:22468070,31602121:264585 -(1,22679:22468070,31602121:0,452978,115847 -r1,22687:25640030,31602121:3171960,568825,115847 -k1,22679:22468070,31602121:-3171960 -) -(1,22679:22468070,31602121:3171960,452978,115847 -k1,22679:22468070,31602121:3277 -h1,22679:25636753,31602121:0,411205,112570 -) -k1,22679:25904615,31602121:264585 -k1,22679:28147077,31602121:264585 -k1,22679:31773659,31602121:264585 -k1,22679:32583029,31602121:0 -) -(1,22680:6797234,32443609:25785795,513147,134348 -k1,22679:9632181,32443609:244309 -k1,22679:10895574,32443609:244308 -k1,22679:13132833,32443609:244309 -k1,22679:15860957,32443609:244309 -k1,22679:18397715,32443609:244309 -k1,22679:21161227,32443609:244308 -k1,22679:22811939,32443609:244309 -k1,22679:24075333,32443609:244309 -k1,22679:25391810,32443609:244308 -k1,22679:26319004,32443609:244309 -k1,22679:27969716,32443609:244309 -k1,22679:29233110,32443609:244309 -k1,22679:30660343,32443609:244308 -k1,22679:31563944,32443609:244309 -k1,22679:32583029,32443609:0 -) -(1,22680:6797234,33285097:25785795,513147,7863 -k1,22680:32583028,33285097:24629084 -g1,22680:32583028,33285097 -) -(1,22682:6797234,34126585:25785795,513147,134348 -h1,22681:6797234,34126585:983040,0,0 -k1,22681:9791902,34126585:228393 -k1,22681:13192238,34126585:228393 -k1,22681:14809994,34126585:228393 -k1,22681:16606008,34126585:228393 -k1,22681:17190261,34126585:228393 -k1,22681:20711837,34126585:228392 -k1,22681:21623115,34126585:228393 -k1,22681:25203675,34126585:228393 -k1,22681:26413142,34126585:228393 -k1,22681:32051532,34126585:228393 -k1,22681:32583029,34126585:0 -) -(1,22682:6797234,34968073:25785795,513147,134348 -k1,22681:8360050,34968073:256683 -k1,22681:9268160,34968073:256682 -k1,22681:11346744,34968073:256683 -k1,22681:12061523,34968073:256682 -k1,22681:12934244,34968073:256683 -k1,22681:14210011,34968073:256682 -k1,22681:16902012,34968073:256683 -k1,22681:19917760,34968073:256682 -k1,22681:20825871,34968073:256683 -k1,22681:23225580,34968073:256682 -k1,22681:24766769,34968073:256683 -k1,22681:26042536,34968073:256682 -k1,22681:27720695,34968073:256683 -k1,22681:28628806,34968073:256683 -k1,22681:29633254,34968073:256682 -k1,22681:32583029,34968073:0 -) -(1,22682:6797234,35809561:25785795,505283,134348 -k1,22681:8025519,35809561:236725 -k1,22681:10941356,35809561:236725 -k1,22681:11864243,35809561:236725 -k1,22681:15113658,35809561:236725 -k1,22681:17133618,35809561:236725 -k1,22681:19105736,35809561:236725 -k1,22681:19698321,35809561:236725 -(1,22681:19698321,35809561:0,414482,115847 -r1,22687:20760010,35809561:1061689,530329,115847 -k1,22681:19698321,35809561:-1061689 -) -(1,22681:19698321,35809561:1061689,414482,115847 -k1,22681:19698321,35809561:3277 -h1,22681:20756733,35809561:0,411205,112570 -) -k1,22681:20996734,35809561:236724 -k1,22681:21919621,35809561:236725 -k1,22681:22927049,35809561:236725 -k1,22681:27221763,35809561:236725 -k1,22681:28987443,35809561:236725 -k1,22681:29682265,35809561:236725 -k1,22681:30450487,35809561:236725 -k1,22681:32583029,35809561:0 -) -(1,22682:6797234,36651049:25785795,513147,126483 -k1,22681:7673041,36651049:224379 -k1,22681:9183236,36651049:224379 -k1,22681:10985067,36651049:224379 -k1,22681:12412687,36651049:224379 -k1,22681:13620105,36651049:224378 -k1,22681:14460522,36651049:224379 -k1,22681:15040761,36651049:224379 -k1,22681:18302078,36651049:224379 -k1,22681:20435521,36651049:224379 -k1,22681:22153466,36651049:224379 -k1,22681:23064007,36651049:224379 -k1,22681:24307471,36651049:224379 -k1,22681:26440913,36651049:224378 -k1,22681:28204077,36651049:224379 -k1,22681:29044494,36651049:224379 -k1,22681:31693050,36651049:224379 -k1,22682:32583029,36651049:0 -) -(1,22682:6797234,37492537:25785795,513147,126483 -k1,22681:9674405,37492537:192816 -k1,22681:10483260,37492537:192817 -k1,22681:13485604,37492537:192816 -k1,22681:14361305,37492537:192816 -k1,22681:16382576,37492537:192817 -k1,22681:18747255,37492537:192816 -k1,22681:20225232,37492537:192816 -k1,22681:21034087,37492537:192817 -k1,22681:22678525,37492537:192816 -k1,22681:24062787,37492537:192817 -k1,22681:26389455,37492537:192816 -k1,22681:28435629,37492537:192816 -k1,22681:29437816,37492537:192817 -k1,22681:31179248,37492537:192816 -k1,22681:32583029,37492537:0 -) -(1,22682:6797234,38334025:25785795,505283,134348 -k1,22681:10245672,38334025:236519 -k1,22681:12966006,38334025:236519 -k1,22681:15032947,38334025:236520 -k1,22681:16460911,38334025:236519 -k1,22681:19341152,38334025:236519 -k1,22681:22552350,38334025:236519 -k1,22681:25690148,38334025:236519 -k1,22681:27027673,38334025:236520 -k1,22681:28774142,38334025:236519 -k1,22681:30697558,38334025:236519 -k1,22681:32583029,38334025:0 -) -(1,22682:6797234,39175513:25785795,513147,134348 -k1,22681:9669676,39175513:170393 -k1,22681:10649440,39175513:170394 -k1,22681:11838918,39175513:170393 -k1,22681:13850874,39175513:170394 -k1,22681:16533262,39175513:170393 -k1,22681:17319694,39175513:170394 -k1,22681:18509172,39175513:170393 -k1,22681:21733544,39175513:170394 -k1,22681:24149856,39175513:170393 -k1,22681:24979542,39175513:170394 -k1,22681:26169020,39175513:170393 -k1,22681:29415674,39175513:170394 -k1,22681:30777512,39175513:170393 -k1,22681:31563944,39175513:170394 -k1,22681:32583029,39175513:0 -) -(1,22682:6797234,40017001:25785795,513147,134348 -k1,22681:10246751,40017001:156333 -k1,22681:13318781,40017001:156333 -k1,22681:15295704,40017001:156333 -k1,22681:15807897,40017001:156333 -k1,22681:18476225,40017001:156333 -k1,22681:21328055,40017001:156334 -k1,22681:22135816,40017001:156333 -k1,22681:23391843,40017001:156333 -k1,22681:24739621,40017001:156333 -k1,22681:25915039,40017001:156333 -k1,22681:29180400,40017001:156333 -k1,22681:32583029,40017001:0 -) -(1,22682:6797234,40858489:25785795,473825,126483 -g1,22681:7647891,40858489 -g1,22681:9284325,40858489 -g1,22681:10134982,40858489 -k1,22682:32583029,40858489:21816280 -g1,22682:32583029,40858489 -) -] -g1,22682:32583029,40984972 -) -h1,22682:6630773,40984972:0,0,0 -(1,22684:6630773,43076232:25952256,564462,12975 -(1,22684:6630773,43076232:2899444,534184,12975 -g1,22684:6630773,43076232 -g1,22684:9530217,43076232 -) -g1,22684:11211347,43076232 -g1,22684:12937893,43076232 -g1,22684:13941381,43076232 -k1,22684:32583029,43076232:14557051 -g1,22684:32583029,43076232 -) -(1,22687:6630773,44310936:25952256,513147,134348 -k1,22686:7327139,44310936:218609 -k1,22686:8414101,44310936:218610 -k1,22686:10107925,44310936:218609 -k1,22686:12357495,44310936:218609 -k1,22686:13227533,44310936:218610 -k1,22686:14465227,44310936:218609 -k1,22686:17119155,44310936:218610 -k1,22686:20096830,44310936:218609 -k1,22686:21828665,44310936:218609 -k1,22686:22994926,44310936:218610 -k1,22686:25785823,44310936:218609 -k1,22686:26360292,44310936:218609 -k1,22686:29872086,44310936:218610 -k1,22686:30773580,44310936:218609 -k1,22687:32583029,44310936:0 -) -(1,22687:6630773,45152424:25952256,513147,134348 -k1,22686:8621268,45152424:234785 -k1,22686:10289982,45152424:234786 -k1,22686:13587920,45152424:234785 -k1,22686:17446192,45152424:234786 -k1,22686:18332405,45152424:234785 -k1,22686:19793369,45152424:234785 -k1,22686:21341497,45152424:234786 -k1,22686:22192320,45152424:234785 -k1,22686:23695847,45152424:234750 -k1,22686:26111015,45152424:234785 -k1,22686:27537246,45152424:234786 -k1,22686:30943974,45152424:234785 -k1,22686:32583029,45152424:0 -) -] -(1,22687:32583029,45706769:0,0,0 -g1,22687:32583029,45706769 -) -) -] -(1,22687:6630773,47279633:25952256,0,0 -h1,22687:6630773,47279633:25952256,0,0 -) -] -(1,22687:4262630,4025873:0,0,0 -[1,22687:-473656,4025873:0,0,0 -(1,22687:-473656,-710413:0,0,0 -(1,22687:-473656,-710413:0,0,0 -g1,22687:-473656,-710413 -) -g1,22687:-473656,-710413 -) -] -) -] -!29763 -}412 -Input:3675:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3676:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3677:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3678:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3679:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +k1,21670:29014430,51504789:25935872 +g1,21670:29014430,51504789 +) +] +) +) +) +] +[1,22907:3078558,4812305:0,0,0 +(1,22907:3078558,49800853:0,16384,2228224 +g1,22907:29030814,49800853 +g1,22907:36135244,49800853 +(1,21670:36135244,49800853:1720320,16384,2228224 +(1,21670:36135244,52029077:16384,1703936,0 +[1,21670:36135244,52029077:25952256,1703936,0 +(1,21670:36135244,51504789:25952256,1179648,0 +(1,21670:36135244,51504789:16384,1179648,0 +r1,22907:36151628,51504789:16384,1179648,0 +) +k1,21670:62087500,51504789:25935872 +g1,21670:62087500,51504789 +) +] +) +g1,21670:36675916,49800853 +(1,21670:36675916,49800853:1179648,16384,0 +r1,22907:37855564,49800853:1179648,16384,0 +) +) +k1,22907:3078556,49800853:-34777008 +) +] +g1,22907:6630773,4812305 +k1,22907:21078841,4812305:13252691 +g1,22907:22701512,4812305 +g1,22907:23350318,4812305 +g1,22907:24759997,4812305 +g1,22907:28372341,4812305 +g1,22907:30105768,4812305 +) +) +] +[1,22907:6630773,45706769:25952256,40108032,0 +(1,22907:6630773,45706769:25952256,40108032,0 +(1,22907:6630773,45706769:0,0,0 +g1,22907:6630773,45706769 +) +[1,22907:6630773,45706769:25952256,40108032,0 +v1,22888:6630773,6254097:0,393216,0 +(1,22895:6630773,36035857:25952256,30174976,0 +g1,22895:6630773,36035857 +g1,22895:6237557,36035857 +r1,22907:6368629,36035857:131072,30174976,0 +g1,22895:6567858,36035857 +g1,22895:6764466,36035857 +[1,22895:6764466,36035857:25818563,30174976,0 +(1,22889:6764466,6615274:25818563,754393,260573 +(1,22888:6764466,6615274:0,754393,260573 +r1,22907:8010564,6615274:1246098,1014966,260573 +k1,22888:6764466,6615274:-1246098 +) +(1,22888:6764466,6615274:1246098,754393,260573 +) +k1,22888:8204934,6615274:194370 +k1,22888:8532614,6615274:327680 +k1,22888:10510219,6615274:194370 +k1,22888:13118935,6615274:194370 +k1,22888:15715855,6615274:194370 +k1,22888:17477846,6615274:194370 +k1,22888:18028076,6615274:194370 +k1,22888:21689300,6615274:194369 +k1,22888:22239530,6615274:194370 +k1,22888:24816789,6615274:194370 +k1,22888:25670451,6615274:194370 +k1,22888:27286297,6615274:194370 +k1,22888:28874618,6615274:194370 +k1,22888:31023272,6615274:194370 +k1,22888:32583029,6615274:0 +) +(1,22889:6764466,7480354:25818563,513147,134348 +k1,22888:8140109,7480354:271361 +k1,22888:11483798,7480354:271361 +(1,22888:11483798,7480354:0,414482,115847 +r1,22907:12193776,7480354:709978,530329,115847 +k1,22888:11483798,7480354:-709978 +) +(1,22888:11483798,7480354:709978,414482,115847 +k1,22888:11483798,7480354:3277 +h1,22888:12190499,7480354:0,411205,112570 +) +k1,22888:12465137,7480354:271361 +k1,22888:14920813,7480354:271361 +k1,22888:15679690,7480354:271289 +k1,22888:18510232,7480354:271361 +k1,22888:21370265,7480354:271361 +k1,22888:22732800,7480354:271361 +k1,22888:24784774,7480354:271361 +k1,22888:26623756,7480354:271361 +k1,22888:27914202,7480354:271361 +k1,22888:31478747,7480354:271361 +k1,22888:32583029,7480354:0 +) +(1,22889:6764466,8345434:25818563,513147,134348 +k1,22888:8810745,8345434:203407 +k1,22888:9630191,8345434:203408 +k1,22888:12305616,8345434:203407 +k1,22888:15222215,8345434:203408 +k1,22888:16108507,8345434:203407 +k1,22888:18019782,8345434:203407 +k1,22888:18689151,8345434:203408 +k1,22888:19911643,8345434:203407 +k1,22888:21462470,8345434:203407 +k1,22888:22197375,8345434:203408 +k1,22888:23446737,8345434:203407 +k1,22888:25540203,8345434:203408 +k1,22888:26426495,8345434:203407 +k1,22888:27245940,8345434:203407 +k1,22888:28983546,8345434:203408 +k1,22888:29869838,8345434:203407 +k1,22888:32583029,8345434:0 +) +(1,22889:6764466,9210514:25818563,513147,134348 +k1,22888:8588064,9210514:214689 +k1,22888:10196704,9210514:214689 +(1,22888:10196704,9210514:0,414482,115847 +r1,22907:10906682,9210514:709978,530329,115847 +k1,22888:10196704,9210514:-709978 +) +(1,22888:10196704,9210514:709978,414482,115847 +k1,22888:10196704,9210514:3277 +h1,22888:10903405,9210514:0,411205,112570 +) +k1,22888:11121370,9210514:214688 +k1,22888:13520374,9210514:214689 +k1,22888:14201024,9210514:214689 +k1,22888:15434798,9210514:214689 +k1,22888:17430099,9210514:214688 +k1,22888:20312759,9210514:214689 +k1,22888:22533505,9210514:214689 +k1,22888:24169670,9210514:214689 +k1,22888:25000396,9210514:214688 +k1,22888:26234170,9210514:214689 +k1,22888:29915714,9210514:214689 +k1,22889:32583029,9210514:0 +) +(1,22889:6764466,10075594:25818563,513147,134348 +k1,22888:7968843,10075594:214128 +k1,22888:8992341,10075594:214128 +k1,22888:10225554,10075594:214128 +k1,22888:13135177,10075594:214127 +k1,22888:15036202,10075594:214128 +k1,22888:15708427,10075594:214128 +k1,22888:17259489,10075594:214128 +k1,22888:18221383,10075594:214128 +k1,22888:21065471,10075594:214128 +k1,22888:21931027,10075594:214128 +k1,22888:24165630,10075594:214128 +k1,22888:26385814,10075594:214127 +k1,22888:28195088,10075594:214128 +k1,22888:29170744,10075594:214128 +k1,22888:31812326,10075594:214128 +k1,22888:32583029,10075594:0 +) +(1,22889:6764466,10940674:25818563,426639,134348 +k1,22889:32583028,10940674:22572564 +g1,22889:32583028,10940674 +) +(1,22891:6764466,11805754:25818563,513147,126483 +h1,22890:6764466,11805754:983040,0,0 +k1,22890:9605955,11805754:163033 +k1,22890:12775780,11805754:163033 +k1,22890:15160485,11805754:163034 +k1,22890:15974946,11805754:163033 +k1,22890:17157064,11805754:163033 +k1,22890:19501791,11805754:163033 +k1,22890:20324117,11805754:163034 +k1,22890:21876513,11805754:163033 +k1,22890:23607167,11805754:163033 +k1,22890:25366657,11805754:163033 +k1,22890:27556720,11805754:163034 +k1,22890:28911198,11805754:163033 +k1,22890:30670688,11805754:163033 +k1,22890:32583029,11805754:0 +) +(1,22891:6764466,12670834:25818563,513147,126483 +k1,22890:7921236,12670834:165210 +k1,22890:9269371,12670834:165210 +k1,22890:10086009,12670834:165210 +k1,22890:13725938,12670834:165210 +k1,22890:16526351,12670834:165210 +k1,22890:17864001,12670834:165211 +k1,22890:20791554,12670834:165210 +k1,22890:23467448,12670834:165210 +k1,22890:24917164,12670834:165210 +k1,22890:27396450,12670834:165210 +k1,22890:30324003,12670834:165210 +k1,22891:32583029,12670834:0 +) +(1,22891:6764466,13535914:25818563,513147,7863 +k1,22890:8563044,13535914:200810 +k1,22890:9573224,13535914:200810 +k1,22890:11322650,13535914:200810 +k1,22890:12054957,13535914:200810 +k1,22890:14705503,13535914:200810 +k1,22890:15589198,13535914:200810 +k1,22890:17029949,13535914:200810 +k1,22890:19005474,13535914:200810 +k1,22890:19822321,13535914:200809 +k1,22890:20378991,13535914:200810 +k1,22890:23872985,13535914:200810 +k1,22890:24531892,13535914:200810 +k1,22890:25264199,13535914:200810 +k1,22890:27914745,13535914:200810 +k1,22890:28766983,13535914:200810 +k1,22890:29902336,13535914:200810 +k1,22890:31122231,13535914:200810 +k1,22891:32583029,13535914:0 +) +(1,22891:6764466,14400994:25818563,513147,134348 +k1,22890:8539386,14400994:242033 +k1,22890:9674675,14400994:242033 +k1,22890:11784484,14400994:242033 +k1,22890:12642556,14400994:242034 +k1,22890:14705179,14400994:242033 +k1,22890:16138657,14400994:242033 +k1,22890:18833703,14400994:242033 +k1,22890:22380717,14400994:242033 +k1,22890:23274178,14400994:242033 +(1,22890:23274178,14400994:0,452978,115847 +r1,22907:24687579,14400994:1413401,568825,115847 +k1,22890:23274178,14400994:-1413401 +) +(1,22890:23274178,14400994:1413401,452978,115847 +k1,22890:23274178,14400994:3277 +h1,22890:24684302,14400994:0,411205,112570 +) +k1,22890:24929612,14400994:242033 +k1,22890:25787684,14400994:242034 +k1,22890:26651611,14400994:241990 +k1,22890:27552936,14400994:242033 +k1,22890:30987883,14400994:242033 +k1,22890:32583029,14400994:0 +) +(1,22891:6764466,15266074:25818563,513147,126483 +k1,22890:7332707,15266074:212381 +k1,22890:10056428,15266074:212381 +k1,22890:13065886,15266074:212381 +k1,22890:13894306,15266074:212382 +k1,22890:14877390,15266074:212381 +k1,22890:15504601,15266074:212368 +k1,22890:17106345,15266074:212381 +k1,22890:19195022,15266074:212381 +k1,22890:19938900,15266074:212381 +k1,22890:22990301,15266074:212381 +k1,22890:23854110,15266074:212381 +k1,22890:24814258,15266074:212382 +k1,22890:27178186,15266074:212381 +k1,22890:28582012,15266074:212381 +k1,22890:30211281,15266074:212381 +k1,22890:32583029,15266074:0 +) +(1,22891:6764466,16131154:25818563,505283,134348 +k1,22890:9875382,16131154:157208 +k1,22890:13159312,16131154:157207 +k1,22890:14335605,16131154:157208 +k1,22890:16146286,16131154:157208 +(1,22890:16146286,16131154:0,452978,115847 +r1,22907:17559687,16131154:1413401,568825,115847 +k1,22890:16146286,16131154:-1413401 +) +(1,22890:16146286,16131154:1413401,452978,115847 +k1,22890:16146286,16131154:3277 +h1,22890:17556410,16131154:0,411205,112570 +) +k1,22890:17716895,16131154:157208 +k1,22890:18556987,16131154:157207 +k1,22890:20273952,16131154:157208 +k1,22890:21473182,16131154:157208 +k1,22890:22649474,16131154:157207 +k1,22890:24988376,16131154:157208 +k1,22890:25797012,16131154:157208 +k1,22890:27550677,16131154:157208 +k1,22890:28394046,16131154:157207 +k1,22890:31563944,16131154:157208 +k1,22890:32583029,16131154:0 +) +(1,22891:6764466,16996234:25818563,513147,126483 +k1,22890:9747759,16996234:202600 +k1,22890:11572375,16996234:202600 +k1,22890:12522740,16996234:202599 +k1,22890:16179743,16996234:202600 +k1,22890:17451891,16996234:202600 +k1,22890:18420607,16996234:202600 +k1,22890:20044683,16996234:202600 +k1,22890:20863320,16996234:202599 +k1,22890:21421780,16996234:202600 +k1,22890:24007269,16996234:202600 +k1,22890:24861297,16996234:202600 +k1,22890:25811662,16996234:202599 +k1,22890:28964037,16996234:202600 +k1,22890:30158197,16996234:202600 +k1,22890:32583029,16996234:0 +) +(1,22891:6764466,17861314:25818563,513147,126483 +k1,22890:7656365,17861314:205737 +k1,22890:9018812,17861314:205737 +k1,22890:9883841,17861314:205737 +k1,22890:11108663,17861314:205737 +(1,22890:11108663,17861314:0,452978,115847 +r1,22907:13225488,17861314:2116825,568825,115847 +k1,22890:11108663,17861314:-2116825 +) +(1,22890:11108663,17861314:2116825,452978,115847 +k1,22890:11108663,17861314:3277 +h1,22890:13222211,17861314:0,411205,112570 +) +k1,22890:13604895,17861314:205737 +(1,22890:13604895,17861314:0,414482,115847 +r1,22907:15018296,17861314:1413401,530329,115847 +k1,22890:13604895,17861314:-1413401 +) +(1,22890:13604895,17861314:1413401,414482,115847 +k1,22890:13604895,17861314:3277 +h1,22890:15015019,17861314:0,411205,112570 +) +k1,22890:15397703,17861314:205737 +(1,22890:15397703,17861314:0,452978,115847 +r1,22907:16811104,17861314:1413401,568825,115847 +k1,22890:15397703,17861314:-1413401 +) +(1,22890:15397703,17861314:1413401,452978,115847 +k1,22890:15397703,17861314:3277 +h1,22890:16807827,17861314:0,411205,112570 +) +k1,22890:17016841,17861314:205737 +k1,22890:17905463,17861314:205737 +(1,22890:17905463,17861314:0,414482,115847 +r1,22907:19318864,17861314:1413401,530329,115847 +k1,22890:17905463,17861314:-1413401 +) +(1,22890:17905463,17861314:1413401,414482,115847 +k1,22890:17905463,17861314:3277 +h1,22890:19315587,17861314:0,411205,112570 +) +k1,22890:19524601,17861314:205737 +k1,22890:22414693,17861314:205737 +k1,22890:24014381,17861314:205737 +k1,22890:25239203,17861314:205737 +k1,22890:28074900,17861314:205737 +k1,22890:31362140,17861314:205737 +k1,22890:32227169,17861314:205737 +k1,22890:32583029,17861314:0 +) +(1,22891:6764466,18726394:25818563,513147,134348 +k1,22890:8756401,18726394:177243 +k1,22890:10172275,18726394:177243 +k1,22890:11008810,18726394:177243 +k1,22890:13568942,18726394:177243 +k1,22890:16250971,18726394:177243 +k1,22890:17822165,18726394:177243 +k1,22890:19018493,18726394:177243 +k1,22890:21264053,18726394:177244 +k1,22890:22100588,18726394:177243 +k1,22890:23296916,18726394:177243 +k1,22890:26315800,18726394:177243 +k1,22890:27179205,18726394:177243 +(1,22890:27179205,18726394:0,414482,115847 +r1,22907:28592606,18726394:1413401,530329,115847 +k1,22890:27179205,18726394:-1413401 +) +(1,22890:27179205,18726394:1413401,414482,115847 +k1,22890:27179205,18726394:3277 +h1,22890:28589329,18726394:0,411205,112570 +) +k1,22890:28943519,18726394:177243 +k1,22890:30317449,18726394:177243 +k1,22890:32583029,18726394:0 +) +(1,22891:6764466,19591474:25818563,513147,126483 +k1,22890:9174997,19591474:230148 +(1,22890:9174997,19591474:0,452978,115847 +r1,22907:11643534,19591474:2468537,568825,115847 +k1,22890:9174997,19591474:-2468537 +) +(1,22890:9174997,19591474:2468537,452978,115847 +k1,22890:9174997,19591474:3277 +h1,22890:11640257,19591474:0,411205,112570 +) +k1,22890:11873682,19591474:230148 +k1,22890:13389646,19591474:230148 +k1,22890:15546551,19591474:230147 +k1,22890:16848868,19591474:230148 +k1,22890:17765178,19591474:230148 +k1,22890:18453423,19591474:230148 +k1,22890:20176481,19591474:230148 +k1,22890:21472900,19591474:230148 +k1,22890:23846074,19591474:230147 +k1,22890:27968405,19591474:230148 +k1,22890:28656650,19591474:230148 +k1,22890:30932832,19591474:230148 +k1,22890:32583029,19591474:0 +) +(1,22891:6764466,20456554:25818563,513147,134348 +g1,22890:9447510,20456554 +g1,22890:10298167,20456554 +g1,22890:11522379,20456554 +g1,22890:13901991,20456554 +g1,22890:18953506,20456554 +g1,22890:19765497,20456554 +g1,22890:20320586,20456554 +g1,22890:22550776,20456554 +g1,22890:23366043,20456554 +k1,22891:32583029,20456554:7421300 +g1,22891:32583029,20456554 +) +(1,22893:6764466,21321634:25818563,513147,134348 +h1,22892:6764466,21321634:983040,0,0 +k1,22892:9702554,21321634:171813 +k1,22892:12276917,21321634:171813 +k1,22892:12804590,21321634:171813 +(1,22892:12804590,21321634:0,414482,115847 +r1,22907:13866279,21321634:1061689,530329,115847 +k1,22892:12804590,21321634:-1061689 +) +(1,22892:12804590,21321634:1061689,414482,115847 +k1,22892:12804590,21321634:3277 +h1,22892:13863002,21321634:0,411205,112570 +) +k1,22892:14038092,21321634:171813 +k1,22892:15366615,21321634:171813 +k1,22892:16764607,21321634:171813 +k1,22892:20968195,21321634:171813 +k1,22892:23956090,21321634:171813 +k1,22892:25260365,21321634:171813 +k1,22892:26179944,21321634:171813 +k1,22892:29863831,21321634:171813 +k1,22892:31227089,21321634:171813 +k1,22893:32583029,21321634:0 +) +(1,22893:6764466,22186714:25818563,513147,134348 +k1,22892:9171150,22186714:215160 +k1,22892:10458478,22186714:215159 +k1,22892:12049239,22186714:215160 +k1,22892:12730359,22186714:215159 +k1,22892:13964604,22186714:215160 +k1,22892:16663579,22186714:215160 +k1,22892:18566945,22186714:215159 +k1,22892:19313602,22186714:215160 +k1,22892:22207874,22186714:215160 +k1,22892:23109195,22186714:215159 +k1,22892:26163375,22186714:215160 +k1,22892:27946155,22186714:215159 +k1,22892:29180400,22186714:215160 +k1,22892:32583029,22186714:0 +) +(1,22893:6764466,23051794:25818563,513147,134348 +k1,22892:9178198,23051794:208445 +k1,22892:10038072,23051794:208446 +k1,22892:11265602,23051794:208445 +k1,22892:14169544,23051794:208446 +k1,22892:15651354,23051794:208445 +k1,22892:16609531,23051794:208445 +k1,22892:17173837,23051794:208446 +k1,22892:19255301,23051794:208445 +k1,22892:21949527,23051794:208445 +k1,22892:23551924,23051794:208446 +k1,22892:24116229,23051794:208445 +k1,22892:26648582,23051794:208446 +k1,22892:29184210,23051794:208445 +k1,22892:30051947,23051794:208445 +k1,22892:30616253,23051794:208446 +k1,22892:31896867,23051794:208445 +k1,22892:32583029,23051794:0 +) +(1,22893:6764466,23916874:25818563,505283,134348 +k1,22892:9485006,23916874:236725 +k1,22892:12014181,23916874:236726 +k1,22892:13140885,23916874:236725 +k1,22892:14616897,23916874:236726 +k1,22892:16739748,23916874:236725 +k1,22892:18108936,23916874:236726 +k1,22892:20188533,23916874:236725 +k1,22892:21041296,23916874:236725 +k1,22892:22879722,23916874:236726 +k1,22892:24813829,23916874:236725 +k1,22892:25666593,23916874:236726 +k1,22892:26922403,23916874:236725 +k1,22892:29542018,23916874:236726 +k1,22892:30845014,23916874:236725 +k1,22892:32583029,23916874:0 +) +(1,22893:6764466,24781954:25818563,505283,115847 +k1,22892:9677540,24781954:228064 +k1,22892:10591766,24781954:228064 +k1,22892:13635912,24781954:228064 +k1,22892:15055420,24781954:228063 +k1,22892:18062211,24781954:228064 +k1,22892:18976437,24781954:228064 +k1,22892:19560361,24781954:228064 +(1,22892:19560361,24781954:0,452978,115847 +r1,22907:22732321,24781954:3171960,568825,115847 +k1,22892:19560361,24781954:-3171960 +) +(1,22892:19560361,24781954:3171960,452978,115847 +k1,22892:19560361,24781954:3277 +h1,22892:22729044,24781954:0,411205,112570 +) +k1,22892:22960385,24781954:228064 +k1,22892:25166326,24781954:228064 +k1,22892:26284368,24781954:228063 +k1,22892:29102415,24781954:228064 +k1,22892:29946517,24781954:228064 +k1,22892:31193666,24781954:228064 +k1,22892:32583029,24781954:0 +) +(1,22893:6764466,25647034:25818563,513147,134348 +k1,22892:9003034,25647034:188602 +k1,22892:9819471,25647034:188602 +k1,22892:11027158,25647034:188602 +k1,22892:12582840,25647034:188601 +k1,22892:13430734,25647034:188602 +k1,22892:16199488,25647034:188602 +k1,22892:18411186,25647034:188602 +k1,22892:18955648,25647034:188602 +(1,22892:18955648,25647034:0,452978,115847 +r1,22907:21424185,25647034:2468537,568825,115847 +k1,22892:18955648,25647034:-2468537 +) +(1,22892:18955648,25647034:2468537,452978,115847 +k1,22892:18955648,25647034:3277 +h1,22892:21420908,25647034:0,411205,112570 +) +k1,22892:21612787,25647034:188602 +k1,22892:23779266,25647034:188602 +k1,22892:27329864,25647034:188601 +(1,22892:27329864,25647034:0,414482,115847 +r1,22907:28039842,25647034:709978,530329,115847 +k1,22892:27329864,25647034:-709978 +) +(1,22892:27329864,25647034:709978,414482,115847 +k1,22892:27329864,25647034:3277 +h1,22892:28036565,25647034:0,411205,112570 +) +k1,22892:28228444,25647034:188602 +k1,22892:30427691,25647034:188602 +k1,22892:31563944,25647034:188602 +k1,22892:32583029,25647034:0 +) +(1,22893:6764466,26512114:25818563,513147,134348 +k1,22892:11154245,26512114:267564 +k1,22892:12647988,26512114:267564 +k1,22892:14252486,26512114:267564 +k1,22892:15267816,26512114:267564 +k1,22892:18314107,26512114:267564 +k1,22892:20908853,26512114:267563 +k1,22892:21835709,26512114:267564 +k1,22892:22459133,26512114:267564 +(1,22892:22459133,26512114:0,452978,115847 +r1,22907:25631093,26512114:3171960,568825,115847 +k1,22892:22459133,26512114:-3171960 +) +(1,22892:22459133,26512114:3171960,452978,115847 +k1,22892:22459133,26512114:3277 +h1,22892:25627816,26512114:0,411205,112570 +) +k1,22892:25898657,26512114:267564 +k1,22892:28144098,26512114:267564 +k1,22892:31773659,26512114:267564 +k1,22892:32583029,26512114:0 +) +(1,22893:6764466,27377194:25818563,513147,134348 +k1,22892:9601753,27377194:246649 +k1,22892:10867488,27377194:246650 +k1,22892:13107087,27377194:246649 +k1,22892:15837551,27377194:246649 +k1,22892:18376649,27377194:246649 +k1,22892:21142503,27377194:246650 +k1,22892:22795555,27377194:246649 +k1,22892:24061289,27377194:246649 +k1,22892:25380108,27377194:246650 +k1,22892:26309642,27377194:246649 +k1,22892:27962694,27377194:246649 +k1,22892:29228428,27377194:246649 +k1,22892:30658003,27377194:246650 +k1,22892:31563944,27377194:246649 +k1,22892:32583029,27377194:0 +) +(1,22893:6764466,28242274:25818563,513147,7863 +k1,22893:32583028,28242274:24661852 +g1,22893:32583028,28242274 +) +(1,22895:6764466,29107354:25818563,513147,134348 +h1,22894:6764466,29107354:983040,0,0 +k1,22894:9762411,29107354:231670 +k1,22894:13166023,29107354:231669 +k1,22894:14787056,29107354:231670 +k1,22894:16586347,29107354:231670 +k1,22894:17173877,29107354:231670 +k1,22894:20698730,29107354:231669 +k1,22894:21613285,29107354:231670 +k1,22894:25197122,29107354:231670 +k1,22894:26409865,29107354:231669 +k1,22894:32051532,29107354:231670 +k1,22894:32583029,29107354:0 +) +(1,22895:6764466,29972434:25818563,513147,134348 +k1,22894:8251314,29972434:180715 +k1,22894:9083458,29972434:180716 +k1,22894:11086074,29972434:180715 +k1,22894:11724886,29972434:180715 +k1,22894:12521640,29972434:180716 +k1,22894:13721440,29972434:180715 +k1,22894:16337474,29972434:180716 +k1,22894:19277255,29972434:180715 +k1,22894:20109398,29972434:180715 +k1,22894:22433141,29972434:180716 +k1,22894:23898362,29972434:180715 +k1,22894:25098162,29972434:180715 +k1,22894:26700354,29972434:180716 +k1,22894:27532497,29972434:180715 +k1,22894:28460979,29972434:180716 +k1,22894:31591469,29972434:180715 +k1,22894:32583029,29972434:0 +) +(1,22895:6764466,30837514:25818563,505283,134348 +k1,22894:9603660,30837514:160082 +k1,22894:10449904,30837514:160082 +k1,22894:13622677,30837514:160083 +k1,22894:15565994,30837514:160082 +k1,22894:17461469,30837514:160082 +k1,22894:17977411,30837514:160082 +(1,22894:17977411,30837514:0,414482,115847 +r1,22907:19039100,30837514:1061689,530329,115847 +k1,22894:17977411,30837514:-1061689 +) +(1,22894:17977411,30837514:1061689,414482,115847 +k1,22894:17977411,30837514:3277 +h1,22894:19035823,30837514:0,411205,112570 +) +k1,22894:19199182,30837514:160082 +k1,22894:20045427,30837514:160083 +k1,22894:20976212,30837514:160082 +k1,22894:25194283,30837514:160082 +k1,22894:26883320,30837514:160082 +k1,22894:27501499,30837514:160082 +k1,22894:28193079,30837514:160083 +k1,22894:30485703,30837514:160082 +k1,22894:31297213,30837514:160082 +k1,22894:32583029,30837514:0 +) +(1,22895:6764466,31702594:25818563,513147,126483 +k1,22894:8533633,31702594:191715 +k1,22894:9928588,31702594:191714 +k1,22894:11103343,31702594:191715 +k1,22894:11911095,31702594:191714 +k1,22894:12458670,31702594:191715 +k1,22894:15687323,31702594:191715 +k1,22894:17788101,31702594:191714 +k1,22894:19473382,31702594:191715 +k1,22894:20351258,31702594:191714 +k1,22894:21562058,31702594:191715 +k1,22894:23662837,31702594:191715 +k1,22894:25393336,31702594:191714 +k1,22894:26201089,31702594:191715 +k1,22894:28816980,31702594:191714 +k1,22894:29898674,31702594:191715 +k1,22894:32583029,31702594:0 +) +(1,22895:6764466,32567674:25818563,513147,126483 +k1,22894:7537978,32567674:157474 +k1,22894:10504980,32567674:157474 +k1,22894:11345338,32567674:157473 +k1,22894:13331266,32567674:157474 +k1,22894:15660603,32567674:157474 +k1,22894:17103238,32567674:157474 +k1,22894:17876749,32567674:157473 +k1,22894:19485845,32567674:157474 +k1,22894:20834764,32567674:157474 +k1,22894:23126090,32567674:157474 +k1,22894:25136922,32567674:157474 +k1,22894:26103765,32567674:157473 +k1,22894:27809855,32567674:157474 +k1,22894:29371110,32567674:157474 +k1,22894:32583029,32567674:0 +) +(1,22895:6764466,33432754:25818563,505283,134348 +k1,22894:9439050,33432754:190769 +k1,22894:11460240,33432754:190769 +k1,22894:12842454,33432754:190769 +k1,22894:15676945,33432754:190769 +k1,22894:18842393,33432754:190769 +k1,22894:21934442,33432754:190770 +k1,22894:23226216,33432754:190769 +k1,22894:24926935,33432754:190769 +k1,22894:26804601,33432754:190769 +k1,22894:28880841,33432754:190769 +k1,22894:31773659,33432754:190769 +k1,22894:32583029,33432754:0 +) +(1,22895:6764466,34297834:25818563,513147,134348 +k1,22894:7986360,34297834:202809 +k1,22894:10030730,34297834:202808 +k1,22894:12745534,34297834:202809 +k1,22894:13564380,34297834:202808 +k1,22894:14786274,34297834:202809 +k1,22894:18043061,34297834:202809 +k1,22894:20491788,34297834:202808 +k1,22894:21353889,34297834:202809 +k1,22894:22575783,34297834:202809 +k1,22894:25854851,34297834:202808 +k1,22894:27249105,34297834:202809 +k1,22894:28067951,34297834:202808 +k1,22894:29289845,34297834:202809 +k1,22894:32583029,34297834:0 +) +(1,22895:6764466,35162914:25818563,513147,134348 +k1,22894:9857513,35162914:177350 +k1,22894:11855454,35162914:177351 +k1,22894:12388664,35162914:177350 +k1,22894:15078010,35162914:177351 +k1,22894:17950856,35162914:177350 +k1,22894:18779634,35162914:177350 +k1,22894:20056679,35162914:177351 +k1,22894:21425474,35162914:177350 +k1,22894:22621909,35162914:177350 +k1,22894:25908288,35162914:177351 +k1,22894:29488267,35162914:177350 +k1,22894:30317046,35162914:177351 +k1,22894:31931601,35162914:177350 +k1,22894:32583029,35162914:0 +) +(1,22895:6764466,36027994:25818563,473825,7863 +k1,22895:32583029,36027994:25186796 +g1,22895:32583029,36027994 +) +] +g1,22895:32583029,36035857 +) +h1,22895:6630773,36035857:0,0,0 +(1,22897:6630773,38152675:25952256,564462,12975 +(1,22897:6630773,38152675:2899444,534184,12975 +g1,22897:6630773,38152675 +g1,22897:9530217,38152675 +) +g1,22897:11211347,38152675 +g1,22897:12937893,38152675 +g1,22897:13941381,38152675 +k1,22897:32583029,38152675:14557051 +g1,22897:32583029,38152675 +) +(1,22900:6630773,39410971:25952256,513147,134348 +k1,22899:7327139,39410971:218609 +k1,22899:8414101,39410971:218610 +k1,22899:10107925,39410971:218609 +k1,22899:12357495,39410971:218609 +k1,22899:13227533,39410971:218610 +k1,22899:14465227,39410971:218609 +k1,22899:17119155,39410971:218610 +k1,22899:20096830,39410971:218609 +k1,22899:21828665,39410971:218609 +k1,22899:22994926,39410971:218610 +k1,22899:25785823,39410971:218609 +k1,22899:26360292,39410971:218609 +k1,22899:29872086,39410971:218610 +k1,22899:30773580,39410971:218609 +k1,22900:32583029,39410971:0 +) +(1,22900:6630773,40276051:25952256,513147,134348 +k1,22899:8621268,40276051:234785 +k1,22899:10289982,40276051:234786 +k1,22899:13587920,40276051:234785 +k1,22899:17446192,40276051:234786 +k1,22899:18332405,40276051:234785 +k1,22899:19793369,40276051:234785 +k1,22899:21341497,40276051:234786 +k1,22899:22192320,40276051:234785 +k1,22899:23695847,40276051:234750 +k1,22899:26111015,40276051:234785 +k1,22899:27537246,40276051:234786 +k1,22899:30943974,40276051:234785 +k1,22899:32583029,40276051:0 +) +(1,22900:6630773,41141131:25952256,513147,134348 +k1,22899:8094898,41141131:196659 +k1,22899:8706397,41141131:196656 +k1,22899:10638448,41141131:196658 +k1,22899:11854192,41141131:196659 +k1,22899:15076647,41141131:196658 +k1,22899:18363329,41141131:196659 +k1,22899:19176026,41141131:196659 +k1,22899:21981672,41141131:196658 +h1,22899:23350719,41141131:0,0,0 +k1,22899:23547378,41141131:196659 +k1,22899:24935481,41141131:196658 +h1,22899:26876657,41141131:0,0,0 +k1,22899:27073316,41141131:196659 +k1,22899:29748546,41141131:196658 +k1,22899:30754575,41141131:196659 +k1,22899:32583029,41141131:0 +) +(1,22900:6630773,42006211:25952256,513147,134348 +h1,22899:7826150,42006211:0,0,0 +k1,22899:8100031,42006211:273881 +k1,22899:9565356,42006211:273880 +h1,22899:10760733,42006211:0,0,0 +k1,22899:11034614,42006211:273881 +k1,22899:14068871,42006211:273881 +k1,22899:14698612,42006211:273881 +k1,22899:17398635,42006211:273880 +k1,22899:21208183,42006211:273881 +k1,22899:23184034,42006211:273881 +k1,22899:24405566,42006211:273881 +k1,22899:27851389,42006211:273880 +k1,22899:31563944,42006211:273881 +k1,22899:32583029,42006211:0 +) +(1,22900:6630773,42871291:25952256,505283,7863 +k1,22899:8856224,42871291:218739 +k1,22899:10359469,42871291:218739 +k1,22899:11446560,42871291:218739 +k1,22899:13845681,42871291:218738 +k1,22899:15417083,42871291:218739 +k1,22899:16960960,42871291:218739 +k1,22899:18464205,42871291:218739 +k1,22899:21901417,42871291:218739 +k1,22899:23311601,42871291:218739 +k1,22899:26014154,42871291:218738 +k1,22899:28219945,42871291:218739 +k1,22899:30419837,42871291:218739 +k1,22899:31657661,42871291:218739 +k1,22900:32583029,42871291:0 +) +(1,22900:6630773,43736371:25952256,513147,126483 +k1,22899:10085932,43736371:142969 +k1,22899:10888193,43736371:142969 +k1,22899:12050247,43736371:142969 +k1,22899:15219013,43736371:142969 +k1,22899:17048879,43736371:142969 +k1,22899:18572692,43736371:142969 +k1,22899:21700172,43736371:142970 +k1,22899:22374638,43736371:142969 +k1,22899:23583878,43736371:142969 +k1,22899:25257113,43736371:142969 +k1,22899:26967703,43736371:142969 +k1,22899:28129757,43736371:142969 +k1,22899:31923737,43736371:142969 +k1,22899:32583029,43736371:0 +) +(1,22900:6630773,44601451:25952256,513147,134348 +k1,22899:8952441,44601451:203544 +k1,22899:9807412,44601451:203543 +k1,22899:11940336,44601451:203544 +k1,22899:16201868,44601451:203543 +(1,22899:16201868,44601451:0,414482,115847 +r1,22907:17263557,44601451:1061689,530329,115847 +k1,22899:16201868,44601451:-1061689 +) +(1,22899:16201868,44601451:1061689,414482,115847 +k1,22899:16201868,44601451:3277 +h1,22899:17260280,44601451:0,411205,112570 +) +k1,22899:17467101,44601451:203544 +k1,22899:20876011,44601451:203544 +k1,22899:22305733,44601451:203543 +k1,22899:23996289,44601451:203544 +k1,22899:24687416,44601451:203539 +k1,22899:26788227,44601451:203544 +k1,22899:29976280,44601451:203543 +k1,22899:30884991,44601451:203544 +k1,22899:32583029,44601451:0 +) +(1,22900:6630773,45466531:25952256,513147,126483 +g1,22899:9456030,45466531 +g1,22899:10306687,45466531 +g1,22899:12687610,45466531 +g1,22899:13905924,45466531 +g1,22899:15494516,45466531 +g1,22899:18108091,45466531 +g1,22899:19874941,45466531 +g1,22899:21093255,45466531 +g1,22899:24470980,45466531 +g1,22899:25353094,45466531 +g1,22899:29175809,45466531 +g1,22899:30642504,45466531 +k1,22900:32583029,45466531:1352012 +g1,22900:32583029,45466531 +) +] +(1,22907:32583029,45706769:0,0,0 +g1,22907:32583029,45706769 +) +) +] +(1,22907:6630773,47279633:25952256,0,0 +h1,22907:6630773,47279633:25952256,0,0 +) +] +(1,22907:4262630,4025873:0,0,0 +[1,22907:-473656,4025873:0,0,0 +(1,22907:-473656,-710413:0,0,0 +(1,22907:-473656,-710413:0,0,0 +g1,22907:-473656,-710413 +) +g1,22907:-473656,-710413 +) +] +) +] +!30414 +}395 +Input:3716:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3717:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3718:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3719:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3720:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !482 -{413 -[1,22731:4262630,47279633:28320399,43253760,0 -(1,22731:4262630,4025873:0,0,0 -[1,22731:-473656,4025873:0,0,0 -(1,22731:-473656,-710413:0,0,0 -(1,22731:-473656,-644877:0,0,0 -k1,22731:-473656,-644877:-65536 +{396 +[1,22966:4262630,47279633:28320399,43253760,0 +(1,22966:4262630,4025873:0,0,0 +[1,22966:-473656,4025873:0,0,0 +(1,22966:-473656,-710413:0,0,0 +(1,22966:-473656,-644877:0,0,0 +k1,22966:-473656,-644877:-65536 ) -(1,22731:-473656,4736287:0,0,0 -k1,22731:-473656,4736287:5209943 +(1,22966:-473656,4736287:0,0,0 +k1,22966:-473656,4736287:5209943 ) -g1,22731:-473656,-710413 +g1,22966:-473656,-710413 ) ] ) -[1,22731:6630773,47279633:25952256,43253760,0 -[1,22731:6630773,4812305:25952256,786432,0 -(1,22731:6630773,4812305:25952256,505283,134348 -(1,22731:6630773,4812305:25952256,505283,134348 -g1,22731:3078558,4812305 -[1,22731:3078558,4812305:0,0,0 -(1,22731:3078558,2439708:0,1703936,0 -k1,22731:1358238,2439708:-1720320 -(1,21457:1358238,2439708:1720320,1703936,0 -(1,21457:1358238,2439708:1179648,16384,0 -r1,22731:2537886,2439708:1179648,16384,0 +[1,22966:6630773,47279633:25952256,43253760,0 +[1,22966:6630773,4812305:25952256,786432,0 +(1,22966:6630773,4812305:25952256,505283,11795 +(1,22966:6630773,4812305:25952256,505283,11795 +g1,22966:3078558,4812305 +[1,22966:3078558,4812305:0,0,0 +(1,22966:3078558,2439708:0,1703936,0 +k1,22966:1358238,2439708:-1720320 +(1,21670:1358238,2439708:1720320,1703936,0 +(1,21670:1358238,2439708:1179648,16384,0 +r1,22966:2537886,2439708:1179648,16384,0 ) -g1,21457:3062174,2439708 -(1,21457:3062174,2439708:16384,1703936,0 -[1,21457:3062174,2439708:25952256,1703936,0 -(1,21457:3062174,1915420:25952256,1179648,0 -(1,21457:3062174,1915420:16384,1179648,0 -r1,22731:3078558,1915420:16384,1179648,0 +g1,21670:3062174,2439708 +(1,21670:3062174,2439708:16384,1703936,0 +[1,21670:3062174,2439708:25952256,1703936,0 +(1,21670:3062174,1915420:25952256,1179648,0 +(1,21670:3062174,1915420:16384,1179648,0 +r1,22966:3078558,1915420:16384,1179648,0 ) -k1,21457:29014430,1915420:25935872 -g1,21457:29014430,1915420 +k1,21670:29014430,1915420:25935872 +g1,21670:29014430,1915420 ) ] ) ) ) ] -[1,22731:3078558,4812305:0,0,0 -(1,22731:3078558,2439708:0,1703936,0 -g1,22731:29030814,2439708 -g1,22731:36135244,2439708 -(1,21457:36135244,2439708:1720320,1703936,0 -(1,21457:36135244,2439708:16384,1703936,0 -[1,21457:36135244,2439708:25952256,1703936,0 -(1,21457:36135244,1915420:25952256,1179648,0 -(1,21457:36135244,1915420:16384,1179648,0 -r1,22731:36151628,1915420:16384,1179648,0 +[1,22966:3078558,4812305:0,0,0 +(1,22966:3078558,2439708:0,1703936,0 +g1,22966:29030814,2439708 +g1,22966:36135244,2439708 +(1,21670:36135244,2439708:1720320,1703936,0 +(1,21670:36135244,2439708:16384,1703936,0 +[1,21670:36135244,2439708:25952256,1703936,0 +(1,21670:36135244,1915420:25952256,1179648,0 +(1,21670:36135244,1915420:16384,1179648,0 +r1,22966:36151628,1915420:16384,1179648,0 ) -k1,21457:62087500,1915420:25935872 -g1,21457:62087500,1915420 +k1,21670:62087500,1915420:25935872 +g1,21670:62087500,1915420 ) ] ) -g1,21457:36675916,2439708 -(1,21457:36675916,2439708:1179648,16384,0 -r1,22731:37855564,2439708:1179648,16384,0 +g1,21670:36675916,2439708 +(1,21670:36675916,2439708:1179648,16384,0 +r1,22966:37855564,2439708:1179648,16384,0 ) ) -k1,22731:3078556,2439708:-34777008 +k1,22966:3078556,2439708:-34777008 ) ] -[1,22731:3078558,4812305:0,0,0 -(1,22731:3078558,49800853:0,16384,2228224 -k1,22731:1358238,49800853:-1720320 -(1,21457:1358238,49800853:1720320,16384,2228224 -(1,21457:1358238,49800853:1179648,16384,0 -r1,22731:2537886,49800853:1179648,16384,0 +[1,22966:3078558,4812305:0,0,0 +(1,22966:3078558,49800853:0,16384,2228224 +k1,22966:1358238,49800853:-1720320 +(1,21670:1358238,49800853:1720320,16384,2228224 +(1,21670:1358238,49800853:1179648,16384,0 +r1,22966:2537886,49800853:1179648,16384,0 ) -g1,21457:3062174,49800853 -(1,21457:3062174,52029077:16384,1703936,0 -[1,21457:3062174,52029077:25952256,1703936,0 -(1,21457:3062174,51504789:25952256,1179648,0 -(1,21457:3062174,51504789:16384,1179648,0 -r1,22731:3078558,51504789:16384,1179648,0 +g1,21670:3062174,49800853 +(1,21670:3062174,52029077:16384,1703936,0 +[1,21670:3062174,52029077:25952256,1703936,0 +(1,21670:3062174,51504789:25952256,1179648,0 +(1,21670:3062174,51504789:16384,1179648,0 +r1,22966:3078558,51504789:16384,1179648,0 ) -k1,21457:29014430,51504789:25935872 -g1,21457:29014430,51504789 -) -] -) -) -) -] -[1,22731:3078558,4812305:0,0,0 -(1,22731:3078558,49800853:0,16384,2228224 -g1,22731:29030814,49800853 -g1,22731:36135244,49800853 -(1,21457:36135244,49800853:1720320,16384,2228224 -(1,21457:36135244,52029077:16384,1703936,0 -[1,21457:36135244,52029077:25952256,1703936,0 -(1,21457:36135244,51504789:25952256,1179648,0 -(1,21457:36135244,51504789:16384,1179648,0 -r1,22731:36151628,51504789:16384,1179648,0 -) -k1,21457:62087500,51504789:25935872 -g1,21457:62087500,51504789 -) -] -) -g1,21457:36675916,49800853 -(1,21457:36675916,49800853:1179648,16384,0 -r1,22731:37855564,49800853:1179648,16384,0 -) -) -k1,22731:3078556,49800853:-34777008 -) -] -g1,22731:6630773,4812305 -k1,22731:21078841,4812305:13252691 -g1,22731:22701512,4812305 -g1,22731:23350318,4812305 -g1,22731:24759997,4812305 -g1,22731:28372341,4812305 -g1,22731:30105768,4812305 -) -) -] -[1,22731:6630773,45706769:25952256,40108032,0 -(1,22731:6630773,45706769:25952256,40108032,0 -(1,22731:6630773,45706769:0,0,0 -g1,22731:6630773,45706769 -) -[1,22731:6630773,45706769:25952256,40108032,0 -(1,22687:6630773,6254097:25952256,513147,134348 -k1,22686:8094898,6254097:196659 -k1,22686:8706397,6254097:196656 -k1,22686:10638448,6254097:196658 -k1,22686:11854192,6254097:196659 -k1,22686:15076647,6254097:196658 -k1,22686:18363329,6254097:196659 -k1,22686:19176026,6254097:196659 -k1,22686:21981672,6254097:196658 -h1,22686:23350719,6254097:0,0,0 -k1,22686:23547378,6254097:196659 -k1,22686:24935481,6254097:196658 -h1,22686:26876657,6254097:0,0,0 -k1,22686:27073316,6254097:196659 -k1,22686:29748546,6254097:196658 -k1,22686:30754575,6254097:196659 -k1,22686:32583029,6254097:0 -) -(1,22687:6630773,7095585:25952256,513147,134348 -h1,22686:7826150,7095585:0,0,0 -k1,22686:8100031,7095585:273881 -k1,22686:9565356,7095585:273880 -h1,22686:10760733,7095585:0,0,0 -k1,22686:11034614,7095585:273881 -k1,22686:14068871,7095585:273881 -k1,22686:14698612,7095585:273881 -k1,22686:17398635,7095585:273880 -k1,22686:21208183,7095585:273881 -k1,22686:23184034,7095585:273881 -k1,22686:24405566,7095585:273881 -k1,22686:27851389,7095585:273880 -k1,22686:31563944,7095585:273881 -k1,22686:32583029,7095585:0 -) -(1,22687:6630773,7937073:25952256,505283,7863 -k1,22686:8856224,7937073:218739 -k1,22686:10359469,7937073:218739 -k1,22686:11446560,7937073:218739 -k1,22686:13845681,7937073:218738 -k1,22686:15417083,7937073:218739 -k1,22686:16960960,7937073:218739 -k1,22686:18464205,7937073:218739 -k1,22686:21901417,7937073:218739 -k1,22686:23311601,7937073:218739 -k1,22686:26014154,7937073:218738 -k1,22686:28219945,7937073:218739 -k1,22686:30419837,7937073:218739 -k1,22686:31657661,7937073:218739 -k1,22687:32583029,7937073:0 -) -(1,22687:6630773,8778561:25952256,513147,126483 -k1,22686:10085932,8778561:142969 -k1,22686:10888193,8778561:142969 -k1,22686:12050247,8778561:142969 -k1,22686:15219013,8778561:142969 -k1,22686:17048879,8778561:142969 -k1,22686:18572692,8778561:142969 -k1,22686:21700172,8778561:142970 -k1,22686:22374638,8778561:142969 -k1,22686:23583878,8778561:142969 -k1,22686:25257113,8778561:142969 -k1,22686:26967703,8778561:142969 -k1,22686:28129757,8778561:142969 -k1,22686:31923737,8778561:142969 -k1,22686:32583029,8778561:0 -) -(1,22687:6630773,9620049:25952256,513147,134348 -k1,22686:8952441,9620049:203544 -k1,22686:9807412,9620049:203543 -k1,22686:11940336,9620049:203544 -k1,22686:16201868,9620049:203543 -(1,22686:16201868,9620049:0,414482,115847 -r1,22731:17263557,9620049:1061689,530329,115847 -k1,22686:16201868,9620049:-1061689 -) -(1,22686:16201868,9620049:1061689,414482,115847 -k1,22686:16201868,9620049:3277 -h1,22686:17260280,9620049:0,411205,112570 -) -k1,22686:17467101,9620049:203544 -k1,22686:20876011,9620049:203544 -k1,22686:22305733,9620049:203543 -k1,22686:23996289,9620049:203544 -k1,22686:24687416,9620049:203539 -k1,22686:26788227,9620049:203544 -k1,22686:29976280,9620049:203543 -k1,22686:30884991,9620049:203544 -k1,22686:32583029,9620049:0 -) -(1,22687:6630773,10461537:25952256,513147,126483 -g1,22686:9456030,10461537 -g1,22686:10306687,10461537 -g1,22686:12687610,10461537 -g1,22686:13905924,10461537 -g1,22686:15494516,10461537 -g1,22686:18108091,10461537 -g1,22686:19874941,10461537 -g1,22686:21093255,10461537 -g1,22686:24470980,10461537 -g1,22686:25353094,10461537 -g1,22686:29175809,10461537 -g1,22686:30642504,10461537 -k1,22687:32583029,10461537:1352012 -g1,22687:32583029,10461537 -) -(1,22688:6630773,12552797:25952256,555811,12975 -(1,22688:6630773,12552797:2899444,534184,12975 -g1,22688:6630773,12552797 -g1,22688:9530217,12552797 -) -k1,22688:32583029,12552797:20358824 -g1,22688:32583029,12552797 -) -(1,22694:6630773,13787501:25952256,513147,134348 -k1,22693:9484939,13787501:319233 -k1,22693:12150360,13787501:319233 -k1,22693:15326307,13787501:319233 -k1,22693:18048090,13787501:319233 -k1,22693:19034480,13787501:319234 -k1,22693:22131129,13787501:319233 -k1,22693:26132830,13787501:319233 -k1,22693:27643508,13787501:319233 -k1,22693:30773580,13787501:319233 -k1,22694:32583029,13787501:0 -) -(1,22694:6630773,14628989:25952256,513147,134348 -k1,22693:8896244,14628989:238442 -k1,22693:10326130,14628989:238441 -k1,22693:12915348,14628989:238442 -k1,22693:15163779,14628989:238442 -k1,22693:19025706,14628989:238441 -k1,22693:22095959,14628989:238442 -k1,22693:22950439,14628989:238442 -k1,22693:24757157,14628989:238441 -k1,22693:27197609,14628989:238442 -k1,22693:28087479,14628989:238442 -k1,22693:30069833,14628989:238441 -k1,22693:31821501,14628989:238442 -k1,22694:32583029,14628989:0 -) -(1,22694:6630773,15470477:25952256,513147,134348 -k1,22693:9676887,15470477:268698 -k1,22693:11724886,15470477:268697 -k1,22693:13190271,15470477:268698 -k1,22693:16269152,15470477:268697 -k1,22693:17069347,15470477:268698 -k1,22693:19636392,15470477:268697 -k1,22693:21096535,15470477:268698 -k1,22693:22384317,15470477:268697 -k1,22693:25233167,15470477:268698 -k1,22693:26896470,15470477:268697 -k1,22693:27816596,15470477:268698 -k1,22693:30228320,15470477:268697 -k1,22693:31450567,15470477:268698 -k1,22693:32583029,15470477:0 -) -(1,22694:6630773,16311965:25952256,513147,126483 -g1,22693:9011696,16311965 -g1,22693:9566785,16311965 -g1,22693:10749054,16311965 -g1,22693:12232789,16311965 -g1,22693:13048056,16311965 -g1,22693:16024701,16311965 -g1,22693:17940973,16311965 -g1,22693:19286427,16311965 -g1,22693:20504741,16311965 -g1,22693:22765733,16311965 -g1,22693:25382585,16311965 -k1,22694:32583029,16311965:5158342 -g1,22694:32583029,16311965 -) -(1,22697:6630773,32569795:25952256,15410451,0 -k1,22697:9874805,32569795:3244032 -(1,22695:9874805,32569795:0,0,0 -g1,22695:9874805,32569795 -g1,22695:9874805,32569795 -g1,22695:9547125,32569795 -(1,22695:9547125,32569795:0,0,0 -) -g1,22695:9874805,32569795 -) -(1,22696:9874805,32569795:19464192,15410451,0 -) -g1,22697:29338997,32569795 -k1,22697:32583029,32569795:3244032 -) -(1,22700:6630773,34066643:25952256,513147,115847 -h1,22699:6630773,34066643:983040,0,0 -g1,22699:8766591,34066643 -g1,22699:10271953,34066643 -g1,22699:11464708,34066643 -g1,22699:12683022,34066643 -g1,22699:14909280,34066643 -g1,22699:18248339,34066643 -g1,22699:19063606,34066643 -g1,22699:20281920,34066643 -g1,22699:23659645,34066643 -g1,22699:24841914,34066643 -g1,22699:26435094,34066643 -(1,22699:26435094,34066643:0,452978,115847 -r1,22731:31365614,34066643:4930520,568825,115847 -k1,22699:26435094,34066643:-4930520 -) -(1,22699:26435094,34066643:4930520,452978,115847 -k1,22699:26435094,34066643:3277 -h1,22699:31362337,34066643:0,411205,112570 -) -k1,22700:32583029,34066643:1043745 -g1,22700:32583029,34066643 -) -v1,22702:6630773,35257109:0,393216,0 -(1,22710:6630773,36898270:25952256,2034377,196608 -g1,22710:6630773,36898270 -g1,22710:6630773,36898270 -g1,22710:6434165,36898270 -(1,22710:6434165,36898270:0,2034377,196608 -r1,22731:32779637,36898270:26345472,2230985,196608 -k1,22710:6434165,36898270:-26345472 -) -(1,22710:6434165,36898270:26345472,2034377,196608 -[1,22710:6630773,36898270:25952256,1837769,0 -(1,22704:6630773,35464727:25952256,404226,76021 -(1,22703:6630773,35464727:0,0,0 -g1,22703:6630773,35464727 -g1,22703:6630773,35464727 -g1,22703:6303093,35464727 -(1,22703:6303093,35464727:0,0,0 -) -g1,22703:6630773,35464727 -) -g1,22704:8843793,35464727 -g1,22704:9792231,35464727 -k1,22704:9792231,35464727:0 -h1,22704:20541185,35464727:0,0,0 -k1,22704:32583029,35464727:12041844 -g1,22704:32583029,35464727 -) -(1,22705:6630773,36130905:25952256,404226,6290 -h1,22705:6630773,36130905:0,0,0 -h1,22705:8527647,36130905:0,0,0 -k1,22705:32583029,36130905:24055382 -g1,22705:32583029,36130905 -) -(1,22709:6630773,36797083:25952256,404226,101187 -(1,22707:6630773,36797083:0,0,0 -g1,22707:6630773,36797083 -g1,22707:6630773,36797083 -g1,22707:6303093,36797083 -(1,22707:6303093,36797083:0,0,0 -) -g1,22707:6630773,36797083 -) -g1,22709:7579210,36797083 -g1,22709:8843793,36797083 -g1,22709:10108376,36797083 -h1,22709:11689104,36797083:0,0,0 -k1,22709:32583028,36797083:20893924 -g1,22709:32583028,36797083 -) -] -) -g1,22710:32583029,36898270 -g1,22710:6630773,36898270 -g1,22710:6630773,36898270 -g1,22710:32583029,36898270 -g1,22710:32583029,36898270 -) -h1,22710:6630773,37094878:0,0,0 -(1,22714:6630773,38460654:25952256,505283,134348 -h1,22713:6630773,38460654:983040,0,0 -k1,22713:8447066,38460654:205418 -k1,22713:9855725,38460654:205418 -k1,22713:11601895,38460654:205419 -k1,22713:12826398,38460654:205418 -k1,22713:16104144,38460654:205418 -k1,22713:18514849,38460654:205418 -k1,22713:19371695,38460654:205418 -(1,22713:19371695,38460654:0,452978,115847 -r1,22731:21136808,38460654:1765113,568825,115847 -k1,22713:19371695,38460654:-1765113 -) -(1,22713:19371695,38460654:1765113,452978,115847 -k1,22713:19371695,38460654:3277 -h1,22713:21133531,38460654:0,411205,112570 -) -k1,22713:21342227,38460654:205419 -k1,22713:22079142,38460654:205418 -k1,22713:25792702,38460654:205418 -k1,22713:26684282,38460654:205418 -k1,22713:28544484,38460654:205418 -k1,22713:29281400,38460654:205419 -k1,22713:30862419,38460654:205418 -k1,22713:31423697,38460654:205418 -k1,22714:32583029,38460654:0 -) -(1,22714:6630773,39302142:25952256,513147,134348 -k1,22713:7824415,39302142:266963 -k1,22713:11384562,39302142:266963 -k1,22713:12267562,39302142:266962 -k1,22713:13553610,39302142:266963 -k1,22713:14977283,39302142:266963 -k1,22713:15714139,39302142:266963 -k1,22713:16512599,39302142:266963 -k1,22713:19409522,39302142:266963 -k1,22713:20327912,39302142:266962 -k1,22713:21687360,39302142:266963 -k1,22713:23810303,39302142:266963 -k1,22713:25096351,39302142:266963 -k1,22713:27101329,39302142:266963 -k1,22713:28027584,39302142:266963 -k1,22713:29313631,39302142:266962 -k1,22713:31277321,39302142:266963 -k1,22713:32227169,39302142:266963 -k1,22713:32583029,39302142:0 -) -(1,22714:6630773,40143630:25952256,513147,126483 -k1,22713:9984568,40143630:178576 -k1,22713:11912299,40143630:178575 -k1,22713:12914007,40143630:178576 -k1,22713:14295823,40143630:178575 -k1,22713:15841480,40143630:178576 -(1,22713:15841480,40143630:0,435480,115847 -r1,22731:16199746,40143630:358266,551327,115847 -k1,22713:15841480,40143630:-358266 -) -(1,22713:15841480,40143630:358266,435480,115847 -k1,22713:15841480,40143630:3277 -h1,22713:16196469,40143630:0,411205,112570 -) -k1,22713:16378321,40143630:178575 -k1,22713:18513147,40143630:178576 -k1,22713:19439488,40143630:178575 -k1,22713:22923045,40143630:178576 -k1,22713:23753048,40143630:178575 -(1,22713:23753048,40143630:0,452978,115847 -r1,22731:26925008,40143630:3171960,568825,115847 -k1,22713:23753048,40143630:-3171960 -) -(1,22713:23753048,40143630:3171960,452978,115847 -g1,22713:25163172,40143630 -h1,22713:26921731,40143630:0,411205,112570 -) -k1,22713:27484348,40143630:178576 -k1,22713:28616472,40143630:178575 -k1,22713:29887533,40143630:178576 -k1,22714:32583029,40143630:0 -) -(1,22714:6630773,40985118:25952256,513147,134348 -(1,22713:6630773,40985118:0,452978,115847 -r1,22731:10857869,40985118:4227096,568825,115847 -k1,22713:6630773,40985118:-4227096 -) -(1,22713:6630773,40985118:4227096,452978,115847 -k1,22713:6630773,40985118:3277 -h1,22713:10854592,40985118:0,411205,112570 -) -k1,22713:11099992,40985118:242123 -k1,22713:11993544,40985118:242124 -k1,22713:14417361,40985118:242123 -k1,22713:15678569,40985118:242123 -k1,22713:19387548,40985118:242124 -k1,22713:21366375,40985118:242123 -k1,22713:22930360,40985118:242124 -k1,22713:23831775,40985118:242123 -k1,22713:25092983,40985118:242123 -k1,22713:28543094,40985118:242124 -k1,22713:29804302,40985118:242123 -k1,22713:32583029,40985118:0 -) -(1,22714:6630773,41826606:25952256,505283,7863 -g1,22713:8510345,41826606 -g1,22713:9241071,41826606 -g1,22713:9796160,41826606 -g1,22713:11806804,41826606 -g1,22713:13197478,41826606 -g1,22713:16371386,41826606 -g1,22713:19283806,41826606 -g1,22713:20474595,41826606 -g1,22713:23452551,41826606 -g1,22713:24337942,41826606 -k1,22714:32583029,41826606:7539920 -g1,22714:32583029,41826606 -) -v1,22716:6630773,43017072:0,393216,0 -(1,22731:6630773,44563338:25952256,1939482,196608 -g1,22731:6630773,44563338 -g1,22731:6630773,44563338 -g1,22731:6434165,44563338 -(1,22731:6434165,44563338:0,1939482,196608 -r1,22731:32779637,44563338:26345472,2136090,196608 -k1,22731:6434165,44563338:-26345472 -) -(1,22731:6434165,44563338:26345472,1939482,196608 -[1,22731:6630773,44563338:25952256,1742874,0 -(1,22718:6630773,43230982:25952256,410518,82312 -(1,22717:6630773,43230982:0,0,0 -g1,22717:6630773,43230982 -g1,22717:6630773,43230982 -g1,22717:6303093,43230982 -(1,22717:6303093,43230982:0,0,0 -) -g1,22717:6630773,43230982 -) -g1,22718:9476084,43230982 -g1,22718:10424522,43230982 -k1,22718:10424522,43230982:0 -h1,22718:20541185,43230982:0,0,0 -k1,22718:32583029,43230982:12041844 -g1,22718:32583029,43230982 -) -(1,22719:6630773,43897160:25952256,404226,101187 -h1,22719:6630773,43897160:0,0,0 -g1,22719:6946919,43897160 -g1,22719:7263065,43897160 -g1,22719:7579211,43897160 -g1,22719:7895357,43897160 -g1,22719:8211503,43897160 -g1,22719:8527649,43897160 -g1,22719:8843795,43897160 -g1,22719:9159941,43897160 -g1,22719:9476087,43897160 -g1,22719:9792233,43897160 -g1,22719:10108379,43897160 -g1,22719:10424525,43897160 -g1,22719:10740671,43897160 -g1,22719:11056817,43897160 -g1,22719:11372963,43897160 -g1,22719:11689109,43897160 -g1,22719:12005255,43897160 -g1,22719:12321401,43897160 -g1,22719:12637547,43897160 -g1,22719:12953693,43897160 -g1,22719:13269839,43897160 -g1,22719:13585985,43897160 -g1,22719:13902131,43897160 -g1,22719:15799005,43897160 -g1,22719:16431297,43897160 -g1,22719:17695880,43897160 -h1,22719:19592754,43897160:0,0,0 -k1,22719:32583029,43897160:12990275 -g1,22719:32583029,43897160 -) -(1,22720:6630773,44563338:25952256,410518,6290 -h1,22720:6630773,44563338:0,0,0 -h1,22720:9159938,44563338:0,0,0 -k1,22720:32583030,44563338:23423092 -g1,22720:32583030,44563338 -) -] -) -g1,22731:32583029,44563338 -g1,22731:6630773,44563338 -g1,22731:6630773,44563338 -g1,22731:32583029,44563338 -g1,22731:32583029,44563338 -) -] -(1,22731:32583029,45706769:0,0,0 -g1,22731:32583029,45706769 -) -) -] -(1,22731:6630773,47279633:25952256,0,0 -h1,22731:6630773,47279633:25952256,0,0 -) -] -(1,22731:4262630,4025873:0,0,0 -[1,22731:-473656,4025873:0,0,0 -(1,22731:-473656,-710413:0,0,0 -(1,22731:-473656,-710413:0,0,0 -g1,22731:-473656,-710413 -) -g1,22731:-473656,-710413 -) -] -) -] -!17058 -}413 -Input:3680:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!106 -{414 -[1,22807:4262630,47279633:28320399,43253760,0 -(1,22807:4262630,4025873:0,0,0 -[1,22807:-473656,4025873:0,0,0 -(1,22807:-473656,-710413:0,0,0 -(1,22807:-473656,-644877:0,0,0 -k1,22807:-473656,-644877:-65536 +k1,21670:29014430,51504789:25935872 +g1,21670:29014430,51504789 +) +] ) -(1,22807:-473656,4736287:0,0,0 -k1,22807:-473656,4736287:5209943 ) -g1,22807:-473656,-710413 +) +] +[1,22966:3078558,4812305:0,0,0 +(1,22966:3078558,49800853:0,16384,2228224 +g1,22966:29030814,49800853 +g1,22966:36135244,49800853 +(1,21670:36135244,49800853:1720320,16384,2228224 +(1,21670:36135244,52029077:16384,1703936,0 +[1,21670:36135244,52029077:25952256,1703936,0 +(1,21670:36135244,51504789:25952256,1179648,0 +(1,21670:36135244,51504789:16384,1179648,0 +r1,22966:36151628,51504789:16384,1179648,0 +) +k1,21670:62087500,51504789:25935872 +g1,21670:62087500,51504789 ) ] ) -[1,22807:6630773,47279633:25952256,43253760,0 -[1,22807:6630773,4812305:25952256,786432,0 -(1,22807:6630773,4812305:25952256,505283,11795 -(1,22807:6630773,4812305:25952256,505283,11795 -g1,22807:3078558,4812305 -[1,22807:3078558,4812305:0,0,0 -(1,22807:3078558,2439708:0,1703936,0 -k1,22807:1358238,2439708:-1720320 -(1,21457:1358238,2439708:1720320,1703936,0 -(1,21457:1358238,2439708:1179648,16384,0 -r1,22807:2537886,2439708:1179648,16384,0 +g1,21670:36675916,49800853 +(1,21670:36675916,49800853:1179648,16384,0 +r1,22966:37855564,49800853:1179648,16384,0 ) -g1,21457:3062174,2439708 -(1,21457:3062174,2439708:16384,1703936,0 -[1,21457:3062174,2439708:25952256,1703936,0 -(1,21457:3062174,1915420:25952256,1179648,0 -(1,21457:3062174,1915420:16384,1179648,0 -r1,22807:3078558,1915420:16384,1179648,0 ) -k1,21457:29014430,1915420:25935872 -g1,21457:29014430,1915420 +k1,22966:3078556,49800853:-34777008 ) -] +] +g1,22966:6630773,4812305 +g1,22966:6630773,4812305 +g1,22966:10349285,4812305 +k1,22966:31387653,4812305:21038368 +) +) +] +[1,22966:6630773,45706769:25952256,40108032,0 +(1,22966:6630773,45706769:25952256,40108032,0 +(1,22966:6630773,45706769:0,0,0 +g1,22966:6630773,45706769 +) +[1,22966:6630773,45706769:25952256,40108032,0 +(1,22901:6630773,6254097:25952256,555811,12975 +(1,22901:6630773,6254097:2899444,534184,12975 +g1,22901:6630773,6254097 +g1,22901:9530217,6254097 +) +k1,22901:32583029,6254097:20358824 +g1,22901:32583029,6254097 +) +(1,22907:6630773,7512393:25952256,513147,134348 +k1,22906:9484939,7512393:319233 +k1,22906:12150360,7512393:319233 +k1,22906:15326307,7512393:319233 +k1,22906:18048090,7512393:319233 +k1,22906:19034480,7512393:319234 +k1,22906:22131129,7512393:319233 +k1,22906:26132830,7512393:319233 +k1,22906:27643508,7512393:319233 +k1,22906:30773580,7512393:319233 +k1,22907:32583029,7512393:0 +) +(1,22907:6630773,8377473:25952256,513147,134348 +k1,22906:8896244,8377473:238442 +k1,22906:10326130,8377473:238441 +k1,22906:12915348,8377473:238442 +k1,22906:15163779,8377473:238442 +k1,22906:19025706,8377473:238441 +k1,22906:22095959,8377473:238442 +k1,22906:22950439,8377473:238442 +k1,22906:24757157,8377473:238441 +k1,22906:27197609,8377473:238442 +k1,22906:28087479,8377473:238442 +k1,22906:30069833,8377473:238441 +k1,22906:31821501,8377473:238442 +k1,22907:32583029,8377473:0 +) +(1,22907:6630773,9242553:25952256,513147,134348 +k1,22906:9676887,9242553:268698 +k1,22906:11724886,9242553:268697 +k1,22906:13190271,9242553:268698 +k1,22906:16269152,9242553:268697 +k1,22906:17069347,9242553:268698 +k1,22906:19636392,9242553:268697 +k1,22906:21096535,9242553:268698 +k1,22906:22384317,9242553:268697 +k1,22906:25233167,9242553:268698 +k1,22906:26896470,9242553:268697 +k1,22906:27816596,9242553:268698 +k1,22906:30228320,9242553:268697 +k1,22906:31450567,9242553:268698 +k1,22906:32583029,9242553:0 +) +(1,22907:6630773,10107633:25952256,513147,126483 +g1,22906:9011696,10107633 +g1,22906:9566785,10107633 +g1,22906:10749054,10107633 +g1,22906:12232789,10107633 +g1,22906:13048056,10107633 +g1,22906:16024701,10107633 +g1,22906:17940973,10107633 +g1,22906:19286427,10107633 +g1,22906:20504741,10107633 +g1,22906:22765733,10107633 +g1,22906:25382585,10107633 +k1,22907:32583029,10107633:5158342 +g1,22907:32583029,10107633 +) +(1,22910:6630773,26314628:25952256,15410451,0 +k1,22910:9874805,26314628:3244032 +(1,22908:9874805,26314628:0,0,0 +g1,22908:9874805,26314628 +g1,22908:9874805,26314628 +g1,22908:9547125,26314628 +(1,22908:9547125,26314628:0,0,0 +) +g1,22908:9874805,26314628 +) +(1,22909:9874805,26314628:19464192,15410451,0 +) +g1,22910:29338997,26314628 +k1,22910:32583029,26314628:3244032 +) +(1,22913:6630773,27784233:25952256,513147,115847 +h1,22912:6630773,27784233:983040,0,0 +g1,22912:8766591,27784233 +g1,22912:10271953,27784233 +g1,22912:11464708,27784233 +g1,22912:12683022,27784233 +g1,22912:14909280,27784233 +g1,22912:18248339,27784233 +g1,22912:19063606,27784233 +g1,22912:20281920,27784233 +g1,22912:23659645,27784233 +g1,22912:24841914,27784233 +g1,22912:26435094,27784233 +(1,22912:26435094,27784233:0,452978,115847 +r1,22966:31365614,27784233:4930520,568825,115847 +k1,22912:26435094,27784233:-4930520 +) +(1,22912:26435094,27784233:4930520,452978,115847 +k1,22912:26435094,27784233:3277 +h1,22912:31362337,27784233:0,411205,112570 +) +k1,22913:32583029,27784233:1043745 +g1,22913:32583029,27784233 +) +v1,22915:6630773,28469088:0,393216,0 +(1,22923:6630773,30303947:25952256,2228075,196608 +g1,22923:6630773,30303947 +g1,22923:6630773,30303947 +g1,22923:6434165,30303947 +(1,22923:6434165,30303947:0,2228075,196608 +r1,22966:32779637,30303947:26345472,2424683,196608 +k1,22923:6434165,30303947:-26345472 +) +(1,22923:6434165,30303947:26345472,2228075,196608 +[1,22923:6630773,30303947:25952256,2031467,0 +(1,22917:6630773,28696919:25952256,424439,79822 +(1,22916:6630773,28696919:0,0,0 +g1,22916:6630773,28696919 +g1,22916:6630773,28696919 +g1,22916:6303093,28696919 +(1,22916:6303093,28696919:0,0,0 +) +g1,22916:6630773,28696919 +) +g1,22917:8954451,28696919 +g1,22917:9950313,28696919 +k1,22917:9950313,28696919:0 +h1,22917:21236747,28696919:0,0,0 +k1,22917:32583029,28696919:11346282 +g1,22917:32583029,28696919 +) +(1,22918:6630773,29381774:25952256,424439,6605 +h1,22918:6630773,29381774:0,0,0 +h1,22918:8622497,29381774:0,0,0 +k1,22918:32583029,29381774:23960532 +g1,22918:32583029,29381774 +) +(1,22922:6630773,30197701:25952256,424439,106246 +(1,22920:6630773,30197701:0,0,0 +g1,22920:6630773,30197701 +g1,22920:6630773,30197701 +g1,22920:6303093,30197701 +(1,22920:6303093,30197701:0,0,0 +) +g1,22920:6630773,30197701 +) +g1,22922:7626635,30197701 +g1,22922:8954451,30197701 +g1,22922:10282267,30197701 +h1,22922:11942037,30197701:0,0,0 +k1,22922:32583029,30197701:20640992 +g1,22922:32583029,30197701 +) +] +) +g1,22923:32583029,30303947 +g1,22923:6630773,30303947 +g1,22923:6630773,30303947 +g1,22923:32583029,30303947 +g1,22923:32583029,30303947 +) +h1,22923:6630773,30500555:0,0,0 +(1,22927:6630773,31365635:25952256,505283,134348 +h1,22926:6630773,31365635:983040,0,0 +k1,22926:8447066,31365635:205418 +k1,22926:9855725,31365635:205418 +k1,22926:11601895,31365635:205419 +k1,22926:12826398,31365635:205418 +k1,22926:16104144,31365635:205418 +k1,22926:18514849,31365635:205418 +k1,22926:19371695,31365635:205418 +(1,22926:19371695,31365635:0,452978,115847 +r1,22966:21136808,31365635:1765113,568825,115847 +k1,22926:19371695,31365635:-1765113 +) +(1,22926:19371695,31365635:1765113,452978,115847 +k1,22926:19371695,31365635:3277 +h1,22926:21133531,31365635:0,411205,112570 +) +k1,22926:21342227,31365635:205419 +k1,22926:22079142,31365635:205418 +k1,22926:25792702,31365635:205418 +k1,22926:26684282,31365635:205418 +k1,22926:28544484,31365635:205418 +k1,22926:29281400,31365635:205419 +k1,22926:30862419,31365635:205418 +k1,22926:31423697,31365635:205418 +k1,22927:32583029,31365635:0 +) +(1,22927:6630773,32230715:25952256,513147,134348 +k1,22926:7824415,32230715:266963 +k1,22926:11384562,32230715:266963 +k1,22926:12267562,32230715:266962 +k1,22926:13553610,32230715:266963 +k1,22926:14977283,32230715:266963 +k1,22926:15714139,32230715:266963 +k1,22926:16512599,32230715:266963 +k1,22926:19409522,32230715:266963 +k1,22926:20327912,32230715:266962 +k1,22926:21687360,32230715:266963 +k1,22926:23810303,32230715:266963 +k1,22926:25096351,32230715:266963 +k1,22926:27101329,32230715:266963 +k1,22926:28027584,32230715:266963 +k1,22926:29313631,32230715:266962 +k1,22926:31277321,32230715:266963 +k1,22926:32227169,32230715:266963 +k1,22926:32583029,32230715:0 +) +(1,22927:6630773,33095795:25952256,513147,126483 +k1,22926:9984568,33095795:178576 +k1,22926:11912299,33095795:178575 +k1,22926:12914007,33095795:178576 +k1,22926:14295823,33095795:178575 +k1,22926:15841480,33095795:178576 +(1,22926:15841480,33095795:0,435480,115847 +r1,22966:16199746,33095795:358266,551327,115847 +k1,22926:15841480,33095795:-358266 +) +(1,22926:15841480,33095795:358266,435480,115847 +k1,22926:15841480,33095795:3277 +h1,22926:16196469,33095795:0,411205,112570 +) +k1,22926:16378321,33095795:178575 +k1,22926:18513147,33095795:178576 +k1,22926:19439488,33095795:178575 +k1,22926:22923045,33095795:178576 +k1,22926:23753048,33095795:178575 +(1,22926:23753048,33095795:0,452978,115847 +r1,22966:26925008,33095795:3171960,568825,115847 +k1,22926:23753048,33095795:-3171960 +) +(1,22926:23753048,33095795:3171960,452978,115847 +g1,22926:25163172,33095795 +h1,22926:26921731,33095795:0,411205,112570 +) +k1,22926:27484348,33095795:178576 +k1,22926:28616472,33095795:178575 +k1,22926:29887533,33095795:178576 +k1,22927:32583029,33095795:0 +) +(1,22927:6630773,33960875:25952256,513147,134348 +(1,22926:6630773,33960875:0,452978,115847 +r1,22966:10857869,33960875:4227096,568825,115847 +k1,22926:6630773,33960875:-4227096 +) +(1,22926:6630773,33960875:4227096,452978,115847 +k1,22926:6630773,33960875:3277 +h1,22926:10854592,33960875:0,411205,112570 +) +k1,22926:11099992,33960875:242123 +k1,22926:11993544,33960875:242124 +k1,22926:14417361,33960875:242123 +k1,22926:15678569,33960875:242123 +k1,22926:19387548,33960875:242124 +k1,22926:21366375,33960875:242123 +k1,22926:22930360,33960875:242124 +k1,22926:23831775,33960875:242123 +k1,22926:25092983,33960875:242123 +k1,22926:28543094,33960875:242124 +k1,22926:29804302,33960875:242123 +k1,22926:32583029,33960875:0 +) +(1,22927:6630773,34825955:25952256,505283,7863 +g1,22926:8510345,34825955 +g1,22926:9241071,34825955 +g1,22926:9796160,34825955 +g1,22926:11806804,34825955 +g1,22926:13197478,34825955 +g1,22926:16371386,34825955 +g1,22926:19283806,34825955 +g1,22926:20474595,34825955 +g1,22926:23452551,34825955 +g1,22926:24337942,34825955 +k1,22927:32583029,34825955:7539920 +g1,22927:32583029,34825955 +) +v1,22929:6630773,35510810:0,393216,0 +(1,22944:6630773,42046619:25952256,6929025,196608 +g1,22944:6630773,42046619 +g1,22944:6630773,42046619 +g1,22944:6434165,42046619 +(1,22944:6434165,42046619:0,6929025,196608 +r1,22966:32779637,42046619:26345472,7125633,196608 +k1,22944:6434165,42046619:-26345472 +) +(1,22944:6434165,42046619:26345472,6929025,196608 +[1,22944:6630773,42046619:25952256,6732417,0 +(1,22931:6630773,35745247:25952256,431045,86428 +(1,22930:6630773,35745247:0,0,0 +g1,22930:6630773,35745247 +g1,22930:6630773,35745247 +g1,22930:6303093,35745247 +(1,22930:6303093,35745247:0,0,0 +) +g1,22930:6630773,35745247 +) +g1,22931:9618358,35745247 +g1,22931:10614220,35745247 +k1,22931:10614220,35745247:0 +h1,22931:21236746,35745247:0,0,0 +k1,22931:32583029,35745247:11346283 +g1,22931:32583029,35745247 +) +(1,22932:6630773,36430102:25952256,424439,106246 +h1,22932:6630773,36430102:0,0,0 +g1,22932:6962727,36430102 +g1,22932:7294681,36430102 +g1,22932:7626635,36430102 +g1,22932:7958589,36430102 +g1,22932:8290543,36430102 +g1,22932:8622497,36430102 +g1,22932:8954451,36430102 +g1,22932:9286405,36430102 +g1,22932:9618359,36430102 +g1,22932:9950313,36430102 +g1,22932:10282267,36430102 +g1,22932:10614221,36430102 +g1,22932:10946175,36430102 +g1,22932:11278129,36430102 +g1,22932:11610083,36430102 +g1,22932:11942037,36430102 +g1,22932:12273991,36430102 +g1,22932:12605945,36430102 +g1,22932:12937899,36430102 +g1,22932:13269853,36430102 +g1,22932:13601807,36430102 +g1,22932:13933761,36430102 +g1,22932:14265715,36430102 +g1,22932:16257439,36430102 +g1,22932:16921347,36430102 +g1,22932:18249163,36430102 +h1,22932:20240887,36430102:0,0,0 +k1,22932:32583029,36430102:12342142 +g1,22932:32583029,36430102 +) +(1,22933:6630773,37114957:25952256,431045,6605 +h1,22933:6630773,37114957:0,0,0 +h1,22933:9286404,37114957:0,0,0 +k1,22933:32583028,37114957:23296624 +g1,22933:32583028,37114957 +) +(1,22943:6630773,37930884:25952256,424439,9908 +(1,22935:6630773,37930884:0,0,0 +g1,22935:6630773,37930884 +g1,22935:6630773,37930884 +g1,22935:6303093,37930884 +(1,22935:6303093,37930884:0,0,0 +) +g1,22935:6630773,37930884 +) +g1,22943:7626635,37930884 +g1,22943:8290543,37930884 +g1,22943:8954451,37930884 +g1,22943:11610083,37930884 +g1,22943:12605945,37930884 +g1,22943:13269853,37930884 +h1,22943:13601807,37930884:0,0,0 +k1,22943:32583029,37930884:18981222 +g1,22943:32583029,37930884 +) +(1,22943:6630773,38615739:25952256,424439,112852 +h1,22943:6630773,38615739:0,0,0 +g1,22943:7626635,38615739 +g1,22943:7958589,38615739 +g1,22943:8290543,38615739 +g1,22943:10614221,38615739 +g1,22943:12605945,38615739 +h1,22943:16257438,38615739:0,0,0 +k1,22943:32583029,38615739:16325591 +g1,22943:32583029,38615739 +) +(1,22943:6630773,39300594:25952256,424439,6605 +h1,22943:6630773,39300594:0,0,0 +g1,22943:7626635,39300594 +g1,22943:7958589,39300594 +g1,22943:8290543,39300594 +g1,22943:8622497,39300594 +g1,22943:10614221,39300594 +g1,22943:12605945,39300594 +g1,22943:12937899,39300594 +g1,22943:13269853,39300594 +g1,22943:13601807,39300594 +g1,22943:13933761,39300594 +g1,22943:14265715,39300594 +g1,22943:14597669,39300594 +k1,22943:14597669,39300594:0 +h1,22943:16257439,39300594:0,0,0 +k1,22943:32583029,39300594:16325590 +g1,22943:32583029,39300594 +) +(1,22943:6630773,39985449:25952256,407923,4954 +h1,22943:6630773,39985449:0,0,0 +g1,22943:7626635,39985449 +g1,22943:8290543,39985449 +g1,22943:8622497,39985449 +g1,22943:8954451,39985449 +g1,22943:9286405,39985449 +g1,22943:9618359,39985449 +g1,22943:9950313,39985449 +g1,22943:10614221,39985449 +g1,22943:11278129,39985449 +g1,22943:11610083,39985449 +g1,22943:11942037,39985449 +g1,22943:12273991,39985449 +g1,22943:12605945,39985449 +g1,22943:12937899,39985449 +g1,22943:13269853,39985449 +g1,22943:13601807,39985449 +g1,22943:13933761,39985449 +g1,22943:14265715,39985449 +g1,22943:14597669,39985449 +g1,22943:14929623,39985449 +g1,22943:15261577,39985449 +g1,22943:15593531,39985449 +g1,22943:15925485,39985449 +h1,22943:16257439,39985449:0,0,0 +k1,22943:32583029,39985449:16325590 +g1,22943:32583029,39985449 +) +(1,22943:6630773,40670304:25952256,407923,9908 +h1,22943:6630773,40670304:0,0,0 +g1,22943:7626635,40670304 +g1,22943:8290543,40670304 +g1,22943:8622497,40670304 +g1,22943:8954451,40670304 +g1,22943:9286405,40670304 +g1,22943:9618359,40670304 +g1,22943:9950313,40670304 +g1,22943:10614221,40670304 +g1,22943:11278129,40670304 +g1,22943:11610083,40670304 +g1,22943:11942037,40670304 +g1,22943:12273991,40670304 +g1,22943:12605945,40670304 +g1,22943:12937899,40670304 +g1,22943:13269853,40670304 +g1,22943:13601807,40670304 +g1,22943:13933761,40670304 +g1,22943:14265715,40670304 +g1,22943:14597669,40670304 +g1,22943:14929623,40670304 +g1,22943:15261577,40670304 +g1,22943:15593531,40670304 +g1,22943:15925485,40670304 +h1,22943:16257439,40670304:0,0,0 +k1,22943:32583029,40670304:16325590 +g1,22943:32583029,40670304 +) +(1,22943:6630773,41355159:25952256,407923,9908 +h1,22943:6630773,41355159:0,0,0 +g1,22943:7626635,41355159 +g1,22943:8290543,41355159 +g1,22943:8622497,41355159 +g1,22943:8954451,41355159 +g1,22943:9286405,41355159 +g1,22943:9618359,41355159 +g1,22943:9950313,41355159 +g1,22943:10614221,41355159 +g1,22943:11278129,41355159 +g1,22943:11610083,41355159 +g1,22943:11942037,41355159 +g1,22943:12273991,41355159 +g1,22943:12605945,41355159 +g1,22943:12937899,41355159 +g1,22943:13269853,41355159 +g1,22943:13601807,41355159 +g1,22943:13933761,41355159 +g1,22943:14265715,41355159 +g1,22943:14597669,41355159 +g1,22943:14929623,41355159 +g1,22943:15261577,41355159 +g1,22943:15593531,41355159 +g1,22943:15925485,41355159 +h1,22943:16257439,41355159:0,0,0 +k1,22943:32583029,41355159:16325590 +g1,22943:32583029,41355159 +) +(1,22943:6630773,42040014:25952256,424439,6605 +h1,22943:6630773,42040014:0,0,0 +g1,22943:7626635,42040014 +g1,22943:8290543,42040014 +g1,22943:8954451,42040014 +g1,22943:9618359,42040014 +g1,22943:11278129,42040014 +h1,22943:12605945,42040014:0,0,0 +k1,22943:32583029,42040014:19977084 +g1,22943:32583029,42040014 +) +] +) +g1,22944:32583029,42046619 +g1,22944:6630773,42046619 +g1,22944:6630773,42046619 +g1,22944:32583029,42046619 +g1,22944:32583029,42046619 +) +h1,22944:6630773,42243227:0,0,0 +(1,22948:6630773,43108307:25952256,513147,134348 +h1,22947:6630773,43108307:983040,0,0 +g1,22947:8766591,43108307 +g1,22947:10070102,43108307 +g1,22947:11555147,43108307 +g1,22947:13166677,43108307 +g1,22947:13721766,43108307 +g1,22947:15941470,43108307 +g1,22947:18467882,43108307 +g1,22947:19326403,43108307 +g1,22947:20544717,43108307 +g1,22947:22626795,43108307 +k1,22948:32583029,43108307:6489379 +g1,22948:32583029,43108307 +) +v1,22950:6630773,43793162:0,393216,0 +(1,22966:6630773,45510161:25952256,2110215,196608 +g1,22966:6630773,45510161 +g1,22966:6630773,45510161 +g1,22966:6434165,45510161 +(1,22966:6434165,45510161:0,2110215,196608 +r1,22966:32779637,45510161:26345472,2306823,196608 +k1,22966:6434165,45510161:-26345472 +) +(1,22966:6434165,45510161:26345472,2110215,196608 +[1,22966:6630773,45510161:25952256,1913607,0 +(1,22952:6630773,44027599:25952256,431045,112852 +(1,22951:6630773,44027599:0,0,0 +g1,22951:6630773,44027599 +g1,22951:6630773,44027599 +g1,22951:6303093,44027599 +(1,22951:6303093,44027599:0,0,0 +) +g1,22951:6630773,44027599 +) +g1,22952:11942036,44027599 +g1,22952:12937898,44027599 +k1,22952:12937898,44027599:0 +h1,22952:23560424,44027599:0,0,0 +k1,22952:32583029,44027599:9022605 +g1,22952:32583029,44027599 +) +(1,22953:6630773,44712454:25952256,424439,106246 +h1,22953:6630773,44712454:0,0,0 +g1,22953:6962727,44712454 +g1,22953:7294681,44712454 +g1,22953:7626635,44712454 +g1,22953:7958589,44712454 +g1,22953:8290543,44712454 +g1,22953:8622497,44712454 +g1,22953:8954451,44712454 +g1,22953:9286405,44712454 +g1,22953:9618359,44712454 +g1,22953:9950313,44712454 +g1,22953:10282267,44712454 +g1,22953:10614221,44712454 +g1,22953:10946175,44712454 +g1,22953:11278129,44712454 +g1,22953:11610083,44712454 +g1,22953:11942037,44712454 +g1,22953:12273991,44712454 +g1,22953:12605945,44712454 +g1,22953:12937899,44712454 +g1,22953:13269853,44712454 +g1,22953:13601807,44712454 +g1,22953:13933761,44712454 +g1,22953:14265715,44712454 +g1,22953:14597669,44712454 +g1,22953:14929623,44712454 +g1,22953:15261577,44712454 +g1,22953:15593531,44712454 +g1,22953:15925485,44712454 +g1,22953:16257439,44712454 +g1,22953:16589393,44712454 +g1,22953:18581117,44712454 +g1,22953:19245025,44712454 +g1,22953:20572841,44712454 +k1,22953:20572841,44712454:0 +h1,22953:22564565,44712454:0,0,0 +k1,22953:32583029,44712454:10018464 +g1,22953:32583029,44712454 +) +(1,22954:6630773,45397309:25952256,424439,112852 +h1,22954:6630773,45397309:0,0,0 +g1,22954:6962727,45397309 +g1,22954:7294681,45397309 +g1,22954:7626635,45397309 +g1,22954:7958589,45397309 +g1,22954:8290543,45397309 +g1,22954:8622497,45397309 +g1,22954:8954451,45397309 +g1,22954:9286405,45397309 +g1,22954:9618359,45397309 +g1,22954:9950313,45397309 +g1,22954:10282267,45397309 +g1,22954:10614221,45397309 +g1,22954:10946175,45397309 +g1,22954:11278129,45397309 +g1,22954:11610083,45397309 +g1,22954:11942037,45397309 +g1,22954:12273991,45397309 +g1,22954:12605945,45397309 +g1,22954:12937899,45397309 +g1,22954:13269853,45397309 +g1,22954:13601807,45397309 +g1,22954:13933761,45397309 +g1,22954:14265715,45397309 +g1,22954:14597669,45397309 +g1,22954:14929623,45397309 +g1,22954:15261577,45397309 +g1,22954:15593531,45397309 +g1,22954:15925485,45397309 +g1,22954:16257439,45397309 +g1,22954:16589393,45397309 +g1,22954:18581117,45397309 +g1,22954:19245025,45397309 +h1,22954:21900657,45397309:0,0,0 +k1,22954:32583029,45397309:10682372 +g1,22954:32583029,45397309 +) +] +) +g1,22966:32583029,45510161 +g1,22966:6630773,45510161 +g1,22966:6630773,45510161 +g1,22966:32583029,45510161 +g1,22966:32583029,45510161 +) +] +(1,22966:32583029,45706769:0,0,0 +g1,22966:32583029,45706769 +) +) +] +(1,22966:6630773,47279633:25952256,0,0 +h1,22966:6630773,47279633:25952256,0,0 +) +] +(1,22966:4262630,4025873:0,0,0 +[1,22966:-473656,4025873:0,0,0 +(1,22966:-473656,-710413:0,0,0 +(1,22966:-473656,-710413:0,0,0 +g1,22966:-473656,-710413 +) +g1,22966:-473656,-710413 +) +] +) +] +!21190 +}396 +Input:3721:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3722:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!200 +{397 +[1,23026:4262630,47279633:28320399,43253760,0 +(1,23026:4262630,4025873:0,0,0 +[1,23026:-473656,4025873:0,0,0 +(1,23026:-473656,-710413:0,0,0 +(1,23026:-473656,-644877:0,0,0 +k1,23026:-473656,-644877:-65536 ) +(1,23026:-473656,4736287:0,0,0 +k1,23026:-473656,4736287:5209943 ) +g1,23026:-473656,-710413 ) ] -[1,22807:3078558,4812305:0,0,0 -(1,22807:3078558,2439708:0,1703936,0 -g1,22807:29030814,2439708 -g1,22807:36135244,2439708 -(1,21457:36135244,2439708:1720320,1703936,0 -(1,21457:36135244,2439708:16384,1703936,0 -[1,21457:36135244,2439708:25952256,1703936,0 -(1,21457:36135244,1915420:25952256,1179648,0 -(1,21457:36135244,1915420:16384,1179648,0 -r1,22807:36151628,1915420:16384,1179648,0 ) -k1,21457:62087500,1915420:25935872 -g1,21457:62087500,1915420 +[1,23026:6630773,47279633:25952256,43253760,0 +[1,23026:6630773,4812305:25952256,786432,0 +(1,23026:6630773,4812305:25952256,505283,134348 +(1,23026:6630773,4812305:25952256,505283,134348 +g1,23026:3078558,4812305 +[1,23026:3078558,4812305:0,0,0 +(1,23026:3078558,2439708:0,1703936,0 +k1,23026:1358238,2439708:-1720320 +(1,21670:1358238,2439708:1720320,1703936,0 +(1,21670:1358238,2439708:1179648,16384,0 +r1,23026:2537886,2439708:1179648,16384,0 ) -] +g1,21670:3062174,2439708 +(1,21670:3062174,2439708:16384,1703936,0 +[1,21670:3062174,2439708:25952256,1703936,0 +(1,21670:3062174,1915420:25952256,1179648,0 +(1,21670:3062174,1915420:16384,1179648,0 +r1,23026:3078558,1915420:16384,1179648,0 ) -g1,21457:36675916,2439708 -(1,21457:36675916,2439708:1179648,16384,0 -r1,22807:37855564,2439708:1179648,16384,0 +k1,21670:29014430,1915420:25935872 +g1,21670:29014430,1915420 ) +] ) -k1,22807:3078556,2439708:-34777008 ) -] -[1,22807:3078558,4812305:0,0,0 -(1,22807:3078558,49800853:0,16384,2228224 -k1,22807:1358238,49800853:-1720320 -(1,21457:1358238,49800853:1720320,16384,2228224 -(1,21457:1358238,49800853:1179648,16384,0 -r1,22807:2537886,49800853:1179648,16384,0 ) -g1,21457:3062174,49800853 -(1,21457:3062174,52029077:16384,1703936,0 -[1,21457:3062174,52029077:25952256,1703936,0 -(1,21457:3062174,51504789:25952256,1179648,0 -(1,21457:3062174,51504789:16384,1179648,0 -r1,22807:3078558,51504789:16384,1179648,0 +] +[1,23026:3078558,4812305:0,0,0 +(1,23026:3078558,2439708:0,1703936,0 +g1,23026:29030814,2439708 +g1,23026:36135244,2439708 +(1,21670:36135244,2439708:1720320,1703936,0 +(1,21670:36135244,2439708:16384,1703936,0 +[1,21670:36135244,2439708:25952256,1703936,0 +(1,21670:36135244,1915420:25952256,1179648,0 +(1,21670:36135244,1915420:16384,1179648,0 +r1,23026:36151628,1915420:16384,1179648,0 ) -k1,21457:29014430,51504789:25935872 -g1,21457:29014430,51504789 +k1,21670:62087500,1915420:25935872 +g1,21670:62087500,1915420 ) ] ) +g1,21670:36675916,2439708 +(1,21670:36675916,2439708:1179648,16384,0 +r1,23026:37855564,2439708:1179648,16384,0 ) ) +k1,23026:3078556,2439708:-34777008 +) ] -[1,22807:3078558,4812305:0,0,0 -(1,22807:3078558,49800853:0,16384,2228224 -g1,22807:29030814,49800853 -g1,22807:36135244,49800853 -(1,21457:36135244,49800853:1720320,16384,2228224 -(1,21457:36135244,52029077:16384,1703936,0 -[1,21457:36135244,52029077:25952256,1703936,0 -(1,21457:36135244,51504789:25952256,1179648,0 -(1,21457:36135244,51504789:16384,1179648,0 -r1,22807:36151628,51504789:16384,1179648,0 -) -k1,21457:62087500,51504789:25935872 -g1,21457:62087500,51504789 -) -] -) -g1,21457:36675916,49800853 -(1,21457:36675916,49800853:1179648,16384,0 -r1,22807:37855564,49800853:1179648,16384,0 -) -) -k1,22807:3078556,49800853:-34777008 -) -] -g1,22807:6630773,4812305 -g1,22807:6630773,4812305 -g1,22807:10349285,4812305 -k1,22807:31387653,4812305:21038368 -) -) -] -[1,22807:6630773,45706769:25952256,40108032,0 -(1,22807:6630773,45706769:25952256,40108032,0 -(1,22807:6630773,45706769:0,0,0 -g1,22807:6630773,45706769 -) -[1,22807:6630773,45706769:25952256,40108032,0 -v1,22731:6630773,6254097:0,393216,0 -(1,22731:6630773,10465073:25952256,4604192,196608 -g1,22731:6630773,10465073 -g1,22731:6630773,10465073 -g1,22731:6434165,10465073 -(1,22731:6434165,10465073:0,4604192,196608 -r1,22807:32779637,10465073:26345472,4800800,196608 -k1,22731:6434165,10465073:-26345472 -) -(1,22731:6434165,10465073:26345472,4604192,196608 -[1,22731:6630773,10465073:25952256,4407584,0 -(1,22730:6630773,6461715:25952256,404226,9436 -(1,22722:6630773,6461715:0,0,0 -g1,22722:6630773,6461715 -g1,22722:6630773,6461715 -g1,22722:6303093,6461715 -(1,22722:6303093,6461715:0,0,0 -) -g1,22722:6630773,6461715 -) -g1,22730:7579210,6461715 -g1,22730:8211502,6461715 -g1,22730:8843794,6461715 -g1,22730:11372960,6461715 -g1,22730:12321397,6461715 -g1,22730:12953689,6461715 -h1,22730:13269835,6461715:0,0,0 -k1,22730:32583029,6461715:19313194 -g1,22730:32583029,6461715 -) -(1,22730:6630773,7127893:25952256,404226,107478 -h1,22730:6630773,7127893:0,0,0 -g1,22730:7579210,7127893 -g1,22730:7895356,7127893 -g1,22730:8211502,7127893 -g1,22730:10424522,7127893 -g1,22730:12321396,7127893 -h1,22730:15798998,7127893:0,0,0 -k1,22730:32583030,7127893:16784032 -g1,22730:32583030,7127893 -) -(1,22730:6630773,7794071:25952256,404226,6290 -h1,22730:6630773,7794071:0,0,0 -g1,22730:7579210,7794071 -g1,22730:7895356,7794071 -g1,22730:8211502,7794071 -g1,22730:8527648,7794071 -g1,22730:10424523,7794071 -g1,22730:12321398,7794071 -g1,22730:12637544,7794071 -g1,22730:12953690,7794071 -g1,22730:13269836,7794071 -g1,22730:13585982,7794071 -g1,22730:13902128,7794071 -g1,22730:14218274,7794071 -k1,22730:14218274,7794071:0 -h1,22730:15799003,7794071:0,0,0 -k1,22730:32583029,7794071:16784026 -g1,22730:32583029,7794071 -) -(1,22730:6630773,8460249:25952256,388497,4718 -h1,22730:6630773,8460249:0,0,0 -g1,22730:7579210,8460249 -g1,22730:8211502,8460249 -g1,22730:8527648,8460249 -g1,22730:8843794,8460249 -g1,22730:9159940,8460249 -g1,22730:9476086,8460249 -g1,22730:9792232,8460249 -g1,22730:10424524,8460249 -g1,22730:11056816,8460249 -g1,22730:11372962,8460249 -g1,22730:11689108,8460249 -g1,22730:12005254,8460249 -g1,22730:12321400,8460249 -g1,22730:12637546,8460249 -g1,22730:12953692,8460249 -g1,22730:13269838,8460249 -g1,22730:13585984,8460249 -g1,22730:13902130,8460249 -g1,22730:14218276,8460249 -g1,22730:14534422,8460249 -g1,22730:14850568,8460249 -g1,22730:15166714,8460249 -g1,22730:15482860,8460249 -h1,22730:15799006,8460249:0,0,0 -k1,22730:32583030,8460249:16784024 -g1,22730:32583030,8460249 -) -(1,22730:6630773,9126427:25952256,388497,9436 -h1,22730:6630773,9126427:0,0,0 -g1,22730:7579210,9126427 -g1,22730:8211502,9126427 -g1,22730:8527648,9126427 -g1,22730:8843794,9126427 -g1,22730:9159940,9126427 -g1,22730:9476086,9126427 -g1,22730:9792232,9126427 -g1,22730:10424524,9126427 -g1,22730:11056816,9126427 -g1,22730:11372962,9126427 -g1,22730:11689108,9126427 -g1,22730:12005254,9126427 -g1,22730:12321400,9126427 -g1,22730:12637546,9126427 -g1,22730:12953692,9126427 -g1,22730:13269838,9126427 -g1,22730:13585984,9126427 -g1,22730:13902130,9126427 -g1,22730:14218276,9126427 -g1,22730:14534422,9126427 -g1,22730:14850568,9126427 -g1,22730:15166714,9126427 -g1,22730:15482860,9126427 -h1,22730:15799006,9126427:0,0,0 -k1,22730:32583030,9126427:16784024 -g1,22730:32583030,9126427 -) -(1,22730:6630773,9792605:25952256,388497,9436 -h1,22730:6630773,9792605:0,0,0 -g1,22730:7579210,9792605 -g1,22730:8211502,9792605 -g1,22730:8527648,9792605 -g1,22730:8843794,9792605 -g1,22730:9159940,9792605 -g1,22730:9476086,9792605 -g1,22730:9792232,9792605 -g1,22730:10424524,9792605 -g1,22730:11056816,9792605 -g1,22730:11372962,9792605 -g1,22730:11689108,9792605 -g1,22730:12005254,9792605 -g1,22730:12321400,9792605 -g1,22730:12637546,9792605 -g1,22730:12953692,9792605 -g1,22730:13269838,9792605 -g1,22730:13585984,9792605 -g1,22730:13902130,9792605 -g1,22730:14218276,9792605 -g1,22730:14534422,9792605 -g1,22730:14850568,9792605 -g1,22730:15166714,9792605 -g1,22730:15482860,9792605 -h1,22730:15799006,9792605:0,0,0 -k1,22730:32583030,9792605:16784024 -g1,22730:32583030,9792605 -) -(1,22730:6630773,10458783:25952256,404226,6290 -h1,22730:6630773,10458783:0,0,0 -g1,22730:7579210,10458783 -g1,22730:8211502,10458783 -g1,22730:8843794,10458783 -g1,22730:9476086,10458783 -g1,22730:11056815,10458783 -h1,22730:12321398,10458783:0,0,0 -k1,22730:32583030,10458783:20261632 -g1,22730:32583030,10458783 -) -] -) -g1,22731:32583029,10465073 -g1,22731:6630773,10465073 -g1,22731:6630773,10465073 -g1,22731:32583029,10465073 -g1,22731:32583029,10465073 -) -h1,22731:6630773,10661681:0,0,0 -(1,22735:6630773,12027457:25952256,513147,134348 -h1,22734:6630773,12027457:983040,0,0 -g1,22734:8766591,12027457 -g1,22734:10070102,12027457 -g1,22734:11555147,12027457 -g1,22734:13166677,12027457 -g1,22734:13721766,12027457 -g1,22734:15941470,12027457 -g1,22734:18467882,12027457 -g1,22734:19326403,12027457 -g1,22734:20544717,12027457 -g1,22734:22626795,12027457 -k1,22735:32583029,12027457:6489379 -g1,22735:32583029,12027457 -) -v1,22737:6630773,13217923:0,393216,0 -(1,22753:6630773,20099903:25952256,7275196,196608 -g1,22753:6630773,20099903 -g1,22753:6630773,20099903 -g1,22753:6434165,20099903 -(1,22753:6434165,20099903:0,7275196,196608 -r1,22807:32779637,20099903:26345472,7471804,196608 -k1,22753:6434165,20099903:-26345472 -) -(1,22753:6434165,20099903:26345472,7275196,196608 -[1,22753:6630773,20099903:25952256,7078588,0 -(1,22739:6630773,13431833:25952256,410518,107478 -(1,22738:6630773,13431833:0,0,0 -g1,22738:6630773,13431833 -g1,22738:6630773,13431833 -g1,22738:6303093,13431833 -(1,22738:6303093,13431833:0,0,0 -) -g1,22738:6630773,13431833 -) -g1,22739:11689104,13431833 -g1,22739:12637542,13431833 -k1,22739:12637542,13431833:0 -h1,22739:22754205,13431833:0,0,0 -k1,22739:32583029,13431833:9828824 -g1,22739:32583029,13431833 -) -(1,22740:6630773,14098011:25952256,404226,101187 -h1,22740:6630773,14098011:0,0,0 -g1,22740:6946919,14098011 -g1,22740:7263065,14098011 -g1,22740:7579211,14098011 -g1,22740:7895357,14098011 -g1,22740:8211503,14098011 -g1,22740:8527649,14098011 -g1,22740:8843795,14098011 -g1,22740:9159941,14098011 -g1,22740:9476087,14098011 -g1,22740:9792233,14098011 -g1,22740:10108379,14098011 -g1,22740:10424525,14098011 -g1,22740:10740671,14098011 -g1,22740:11056817,14098011 -g1,22740:11372963,14098011 -g1,22740:11689109,14098011 -g1,22740:12005255,14098011 -g1,22740:12321401,14098011 -g1,22740:12637547,14098011 -g1,22740:12953693,14098011 -g1,22740:13269839,14098011 -g1,22740:13585985,14098011 -g1,22740:13902131,14098011 -g1,22740:14218277,14098011 -g1,22740:14534423,14098011 -g1,22740:14850569,14098011 -g1,22740:15166715,14098011 -g1,22740:15482861,14098011 -g1,22740:15799007,14098011 -g1,22740:16115153,14098011 -g1,22740:18012027,14098011 -g1,22740:18644319,14098011 -g1,22740:19908902,14098011 -k1,22740:19908902,14098011:0 -h1,22740:21805776,14098011:0,0,0 -k1,22740:32583029,14098011:10777253 -g1,22740:32583029,14098011 -) -(1,22741:6630773,14764189:25952256,404226,107478 -h1,22741:6630773,14764189:0,0,0 -g1,22741:6946919,14764189 -g1,22741:7263065,14764189 -g1,22741:7579211,14764189 -g1,22741:7895357,14764189 -g1,22741:8211503,14764189 -g1,22741:8527649,14764189 -g1,22741:8843795,14764189 -g1,22741:9159941,14764189 -g1,22741:9476087,14764189 -g1,22741:9792233,14764189 -g1,22741:10108379,14764189 -g1,22741:10424525,14764189 -g1,22741:10740671,14764189 -g1,22741:11056817,14764189 -g1,22741:11372963,14764189 -g1,22741:11689109,14764189 -g1,22741:12005255,14764189 -g1,22741:12321401,14764189 -g1,22741:12637547,14764189 -g1,22741:12953693,14764189 -g1,22741:13269839,14764189 -g1,22741:13585985,14764189 -g1,22741:13902131,14764189 -g1,22741:14218277,14764189 -g1,22741:14534423,14764189 -g1,22741:14850569,14764189 -g1,22741:15166715,14764189 -g1,22741:15482861,14764189 -g1,22741:15799007,14764189 -g1,22741:16115153,14764189 -g1,22741:18012027,14764189 -g1,22741:18644319,14764189 -h1,22741:21173485,14764189:0,0,0 -k1,22741:32583029,14764189:11409544 -g1,22741:32583029,14764189 -) -(1,22742:6630773,15430367:25952256,410518,107478 -h1,22742:6630773,15430367:0,0,0 -h1,22742:11372958,15430367:0,0,0 -k1,22742:32583030,15430367:21210072 -g1,22742:32583030,15430367 -) -(1,22752:6630773,16096545:25952256,404226,6290 -(1,22744:6630773,16096545:0,0,0 -g1,22744:6630773,16096545 -g1,22744:6630773,16096545 -g1,22744:6303093,16096545 -(1,22744:6303093,16096545:0,0,0 -) -g1,22744:6630773,16096545 -) -g1,22752:7579210,16096545 -g1,22752:8211502,16096545 -g1,22752:8843794,16096545 -g1,22752:11372960,16096545 -g1,22752:12005252,16096545 -g1,22752:12637544,16096545 -h1,22752:12953690,16096545:0,0,0 -k1,22752:32583030,16096545:19629340 -g1,22752:32583030,16096545 -) -(1,22752:6630773,16762723:25952256,404226,107478 -h1,22752:6630773,16762723:0,0,0 -g1,22752:7579210,16762723 -g1,22752:7895356,16762723 -g1,22752:8211502,16762723 -g1,22752:10424522,16762723 -h1,22752:12005250,16762723:0,0,0 -k1,22752:32583030,16762723:20577780 -g1,22752:32583030,16762723 -) -(1,22752:6630773,17428901:25952256,404226,6290 -h1,22752:6630773,17428901:0,0,0 -g1,22752:7579210,17428901 -g1,22752:7895356,17428901 -g1,22752:8211502,17428901 -g1,22752:8527648,17428901 -g1,22752:10424523,17428901 -k1,22752:10424523,17428901:0 -h1,22752:12005252,17428901:0,0,0 -k1,22752:32583028,17428901:20577776 -g1,22752:32583028,17428901 -) -(1,22752:6630773,18095079:25952256,388497,4718 -h1,22752:6630773,18095079:0,0,0 -g1,22752:7579210,18095079 -g1,22752:8211502,18095079 -g1,22752:8527648,18095079 -g1,22752:8843794,18095079 -g1,22752:9159940,18095079 -g1,22752:9476086,18095079 -g1,22752:9792232,18095079 -g1,22752:10424524,18095079 -h1,22752:10740670,18095079:0,0,0 -k1,22752:32583030,18095079:21842360 -g1,22752:32583030,18095079 -) -(1,22752:6630773,18761257:25952256,388497,4718 -h1,22752:6630773,18761257:0,0,0 -g1,22752:7579210,18761257 -g1,22752:8211502,18761257 -g1,22752:8527648,18761257 -g1,22752:8843794,18761257 -g1,22752:9159940,18761257 -g1,22752:9476086,18761257 -g1,22752:9792232,18761257 -g1,22752:10424524,18761257 -h1,22752:10740670,18761257:0,0,0 -k1,22752:32583030,18761257:21842360 -g1,22752:32583030,18761257 -) -(1,22752:6630773,19427435:25952256,388497,9436 -h1,22752:6630773,19427435:0,0,0 -g1,22752:7579210,19427435 -g1,22752:8211502,19427435 -g1,22752:8527648,19427435 -g1,22752:8843794,19427435 -g1,22752:9159940,19427435 -g1,22752:9476086,19427435 -g1,22752:9792232,19427435 -g1,22752:10424524,19427435 -h1,22752:10740670,19427435:0,0,0 -k1,22752:32583030,19427435:21842360 -g1,22752:32583030,19427435 -) -(1,22752:6630773,20093613:25952256,404226,6290 -h1,22752:6630773,20093613:0,0,0 -g1,22752:7579210,20093613 -g1,22752:8211502,20093613 -g1,22752:8843794,20093613 -g1,22752:9476086,20093613 -g1,22752:11056815,20093613 -h1,22752:12321398,20093613:0,0,0 -k1,22752:32583030,20093613:20261632 -g1,22752:32583030,20093613 -) -] -) -g1,22753:32583029,20099903 -g1,22753:6630773,20099903 -g1,22753:6630773,20099903 -g1,22753:32583029,20099903 -g1,22753:32583029,20099903 -) -h1,22753:6630773,20296511:0,0,0 -(1,22757:6630773,21662287:25952256,513147,134348 -h1,22756:6630773,21662287:983040,0,0 -k1,22756:8628583,21662287:240790 -k1,22756:9888458,21662287:240790 -k1,22756:13347066,21662287:240790 -k1,22756:17164156,21662287:240790 -k1,22756:18424031,21662287:240790 -k1,22756:20266522,21662287:240791 -k1,22756:22484533,21662287:240790 -k1,22756:24212335,21662287:240790 -k1,22756:25928340,21662287:240790 -k1,22756:27188215,21662287:240790 -k1,22756:29082478,21662287:240790 -k1,22756:31391584,21662287:240790 -k1,22756:32583029,21662287:0 -) -(1,22757:6630773,22503775:25952256,505283,134348 -k1,22756:8129014,22503775:155408 -k1,22756:10486431,22503775:155407 -k1,22756:12207494,22503775:155408 -k1,22756:13049064,22503775:155408 -k1,22756:13820509,22503775:155407 -k1,22756:15999013,22503775:155408 -k1,22756:17386498,22503775:155408 -k1,22756:19820592,22503775:155407 -h1,22756:21761768,22503775:0,0,0 -k1,22756:21917176,22503775:155408 -k1,22756:22881954,22503775:155408 -k1,22756:24535514,22503775:155407 -h1,22756:25730891,22503775:0,0,0 -k1,22756:26267063,22503775:155408 -k1,22756:27464493,22503775:155408 -k1,22756:30454987,22503775:155407 -k1,22756:31478747,22503775:155408 -k1,22756:32583029,22503775:0 -) -(1,22757:6630773,23345263:25952256,513147,134348 -k1,22756:7739390,23345263:174074 -k1,22756:9196658,23345263:174073 -k1,22756:11439048,23345263:174074 -k1,22756:12264549,23345263:174073 -k1,22756:13457708,23345263:174074 -k1,22756:16344973,23345263:174074 -k1,22756:18846229,23345263:174073 -k1,22756:19679595,23345263:174074 -k1,22756:22256219,23345263:174074 -k1,22756:23938931,23345263:174073 -k1,22756:26181321,23345263:174074 -k1,22756:27923015,23345263:174073 -k1,22756:29116174,23345263:174074 -k1,22757:32583029,23345263:0 -k1,22757:32583029,23345263:0 -) -v1,22759:6630773,24535729:0,393216,0 -(1,22776:6630773,32083887:25952256,7941374,196608 -g1,22776:6630773,32083887 -g1,22776:6630773,32083887 -g1,22776:6434165,32083887 -(1,22776:6434165,32083887:0,7941374,196608 -r1,22807:32779637,32083887:26345472,8137982,196608 -k1,22776:6434165,32083887:-26345472 -) -(1,22776:6434165,32083887:26345472,7941374,196608 -[1,22776:6630773,32083887:25952256,7744766,0 -(1,22761:6630773,24749639:25952256,410518,107478 -(1,22760:6630773,24749639:0,0,0 -g1,22760:6630773,24749639 -g1,22760:6630773,24749639 -g1,22760:6303093,24749639 -(1,22760:6303093,24749639:0,0,0 -) -g1,22760:6630773,24749639 -) -g1,22761:11689104,24749639 -g1,22761:12637542,24749639 -k1,22761:12637542,24749639:0 -h1,22761:22754205,24749639:0,0,0 -k1,22761:32583029,24749639:9828824 -g1,22761:32583029,24749639 -) -(1,22762:6630773,25415817:25952256,404226,101187 -h1,22762:6630773,25415817:0,0,0 -g1,22762:6946919,25415817 -g1,22762:7263065,25415817 -g1,22762:7579211,25415817 -g1,22762:7895357,25415817 -g1,22762:8211503,25415817 -g1,22762:8527649,25415817 -g1,22762:8843795,25415817 -g1,22762:9159941,25415817 -g1,22762:9476087,25415817 -g1,22762:9792233,25415817 -g1,22762:10108379,25415817 -g1,22762:10424525,25415817 -g1,22762:10740671,25415817 -g1,22762:11056817,25415817 -g1,22762:11372963,25415817 -g1,22762:11689109,25415817 -g1,22762:12005255,25415817 -g1,22762:12321401,25415817 -g1,22762:12637547,25415817 -g1,22762:12953693,25415817 -g1,22762:13269839,25415817 -g1,22762:13585985,25415817 -g1,22762:13902131,25415817 -g1,22762:14218277,25415817 -g1,22762:14534423,25415817 -g1,22762:14850569,25415817 -g1,22762:15166715,25415817 -g1,22762:15482861,25415817 -g1,22762:15799007,25415817 -g1,22762:16115153,25415817 -g1,22762:18012027,25415817 -g1,22762:18644319,25415817 -g1,22762:19908902,25415817 -k1,22762:19908902,25415817:0 -h1,22762:21805776,25415817:0,0,0 -k1,22762:32583029,25415817:10777253 -g1,22762:32583029,25415817 -) -(1,22763:6630773,26081995:25952256,404226,107478 -h1,22763:6630773,26081995:0,0,0 -g1,22763:6946919,26081995 -g1,22763:7263065,26081995 -g1,22763:7579211,26081995 -g1,22763:7895357,26081995 -g1,22763:8211503,26081995 -g1,22763:8527649,26081995 -g1,22763:8843795,26081995 -g1,22763:9159941,26081995 -g1,22763:9476087,26081995 -g1,22763:9792233,26081995 -g1,22763:10108379,26081995 -g1,22763:10424525,26081995 -g1,22763:10740671,26081995 -g1,22763:11056817,26081995 -g1,22763:11372963,26081995 -g1,22763:11689109,26081995 -g1,22763:12005255,26081995 -g1,22763:12321401,26081995 -g1,22763:12637547,26081995 -g1,22763:12953693,26081995 -g1,22763:13269839,26081995 -g1,22763:13585985,26081995 -g1,22763:13902131,26081995 -g1,22763:14218277,26081995 -g1,22763:14534423,26081995 -g1,22763:14850569,26081995 -g1,22763:15166715,26081995 -g1,22763:15482861,26081995 -g1,22763:15799007,26081995 -g1,22763:16115153,26081995 -g1,22763:18012027,26081995 -g1,22763:18644319,26081995 -k1,22763:18644319,26081995:0 -h1,22763:21173485,26081995:0,0,0 -k1,22763:32583029,26081995:11409544 -g1,22763:32583029,26081995 -) -(1,22764:6630773,26748173:25952256,404226,82312 -h1,22764:6630773,26748173:0,0,0 -g1,22764:6946919,26748173 -g1,22764:7263065,26748173 -g1,22764:7579211,26748173 -g1,22764:7895357,26748173 -g1,22764:8211503,26748173 -g1,22764:8527649,26748173 -g1,22764:8843795,26748173 -g1,22764:9159941,26748173 -g1,22764:9476087,26748173 -g1,22764:9792233,26748173 -g1,22764:10108379,26748173 -g1,22764:10424525,26748173 -g1,22764:10740671,26748173 -g1,22764:11056817,26748173 -g1,22764:11372963,26748173 -g1,22764:11689109,26748173 -g1,22764:12005255,26748173 -g1,22764:12321401,26748173 -g1,22764:12637547,26748173 -g1,22764:12953693,26748173 -g1,22764:13269839,26748173 -g1,22764:13585985,26748173 -g1,22764:13902131,26748173 -g1,22764:14218277,26748173 -g1,22764:14534423,26748173 -g1,22764:14850569,26748173 -g1,22764:15166715,26748173 -g1,22764:15482861,26748173 -g1,22764:15799007,26748173 -g1,22764:16115153,26748173 -g1,22764:19276610,26748173 -g1,22764:19908902,26748173 -g1,22764:22121923,26748173 -h1,22764:23702651,26748173:0,0,0 -k1,22764:32583029,26748173:8880378 -g1,22764:32583029,26748173 -) -(1,22765:6630773,27414351:25952256,410518,107478 -h1,22765:6630773,27414351:0,0,0 -h1,22765:11372958,27414351:0,0,0 -k1,22765:32583030,27414351:21210072 -g1,22765:32583030,27414351 -) -(1,22775:6630773,28080529:25952256,404226,6290 -(1,22767:6630773,28080529:0,0,0 -g1,22767:6630773,28080529 -g1,22767:6630773,28080529 -g1,22767:6303093,28080529 -(1,22767:6303093,28080529:0,0,0 -) -g1,22767:6630773,28080529 -) -g1,22775:7579210,28080529 -g1,22775:8211502,28080529 -g1,22775:8843794,28080529 -g1,22775:11372960,28080529 -g1,22775:12005252,28080529 -g1,22775:12637544,28080529 -h1,22775:12953690,28080529:0,0,0 -k1,22775:32583030,28080529:19629340 -g1,22775:32583030,28080529 -) -(1,22775:6630773,28746707:25952256,379060,0 -h1,22775:6630773,28746707:0,0,0 -g1,22775:7579210,28746707 -g1,22775:7895356,28746707 -g1,22775:8211502,28746707 -g1,22775:8527648,28746707 -g1,22775:8843794,28746707 -g1,22775:9159940,28746707 -g1,22775:9476086,28746707 -g1,22775:10108378,28746707 -h1,22775:10424524,28746707:0,0,0 -k1,22775:32583028,28746707:22158504 -g1,22775:32583028,28746707 -) -(1,22775:6630773,29412885:25952256,404226,6290 -h1,22775:6630773,29412885:0,0,0 -g1,22775:7579210,29412885 -g1,22775:7895356,29412885 -g1,22775:8211502,29412885 -g1,22775:10108377,29412885 -k1,22775:10108377,29412885:0 -h1,22775:11689106,29412885:0,0,0 -k1,22775:32583030,29412885:20893924 -g1,22775:32583030,29412885 -) -(1,22775:6630773,30079063:25952256,388497,4718 -h1,22775:6630773,30079063:0,0,0 -g1,22775:7579210,30079063 -g1,22775:8211502,30079063 -g1,22775:8527648,30079063 -g1,22775:8843794,30079063 -g1,22775:9159940,30079063 -g1,22775:9476086,30079063 -g1,22775:10108378,30079063 -h1,22775:10424524,30079063:0,0,0 -k1,22775:32583028,30079063:22158504 -g1,22775:32583028,30079063 -) -(1,22775:6630773,30745241:25952256,388497,4718 -h1,22775:6630773,30745241:0,0,0 -g1,22775:7579210,30745241 -g1,22775:8211502,30745241 -g1,22775:8527648,30745241 -g1,22775:8843794,30745241 -g1,22775:9159940,30745241 -g1,22775:9476086,30745241 -g1,22775:10108378,30745241 -h1,22775:10424524,30745241:0,0,0 -k1,22775:32583028,30745241:22158504 -g1,22775:32583028,30745241 -) -(1,22775:6630773,31411419:25952256,388497,9436 -h1,22775:6630773,31411419:0,0,0 -g1,22775:7579210,31411419 -g1,22775:8211502,31411419 -g1,22775:8527648,31411419 -g1,22775:8843794,31411419 -g1,22775:9159940,31411419 -g1,22775:9476086,31411419 -g1,22775:10108378,31411419 -h1,22775:10424524,31411419:0,0,0 -k1,22775:32583028,31411419:22158504 -g1,22775:32583028,31411419 -) -(1,22775:6630773,32077597:25952256,404226,6290 -h1,22775:6630773,32077597:0,0,0 -g1,22775:7579210,32077597 -g1,22775:8211502,32077597 -g1,22775:8843794,32077597 -g1,22775:9476086,32077597 -g1,22775:11056815,32077597 -h1,22775:12321398,32077597:0,0,0 -k1,22775:32583030,32077597:20261632 -g1,22775:32583030,32077597 -) -] -) -g1,22776:32583029,32083887 -g1,22776:6630773,32083887 -g1,22776:6630773,32083887 -g1,22776:32583029,32083887 -g1,22776:32583029,32083887 -) -h1,22776:6630773,32280495:0,0,0 -(1,22779:6630773,34896043:25952256,555811,12975 -(1,22779:6630773,34896043:2899444,534184,12975 -g1,22779:6630773,34896043 -g1,22779:9530217,34896043 -) -k1,22779:32583028,34896043:21176320 -g1,22779:32583028,34896043 -) -(1,22784:6630773,36130747:25952256,513147,134348 -k1,22783:9413213,36130747:247507 -k1,22783:11334510,36130747:247508 -k1,22783:12686299,36130747:247507 -k1,22783:13681573,36130747:247508 -k1,22783:15579277,36130747:247507 -k1,22783:18310599,36130747:247507 -k1,22783:19209535,36130747:247508 -k1,22783:21426399,36130747:247507 -k1,22783:22360069,36130747:247508 -k1,22783:23065673,36130747:247507 -k1,22783:24735967,36130747:247507 -k1,22783:26328929,36130747:247508 -k1,22783:29602233,36130747:247507 -k1,22783:30501169,36130747:247508 -k1,22783:31563944,36130747:247507 -k1,22783:32583029,36130747:0 -) -(1,22784:6630773,36972235:25952256,513147,134348 -k1,22783:8776362,36972235:223418 -k1,22783:10769907,36972235:223418 -k1,22783:13928027,36972235:223418 -k1,22783:14609542,36972235:223418 -k1,22783:15364457,36972235:223418 -k1,22783:17238072,36972235:223418 -k1,22783:22452712,36972235:223418 -k1,22783:24070081,36972235:223418 -k1,22783:27319296,36972235:223418 -k1,22783:29009410,36972235:223418 -k1,22783:30180479,36972235:223418 -k1,22783:32583029,36972235:0 -) -(1,22784:6630773,37813723:25952256,513147,134348 -k1,22783:8084289,37813723:262071 -k1,22783:10604075,37813723:262071 -k1,22783:13643562,37813723:262071 -k1,22783:17529119,37813723:262071 -k1,22783:18982635,37813723:262071 -k1,22783:22927174,37813723:262071 -k1,22783:23805283,37813723:262071 -k1,22783:26829697,37813723:262071 -k1,22783:29602452,37813723:262071 -k1,22783:32583029,37813723:0 -) -(1,22784:6630773,38655211:25952256,513147,134348 -k1,22783:7878730,38655211:228872 -k1,22783:9763697,38655211:228872 -k1,22783:12014355,38655211:228872 -k1,22783:13903909,38655211:228872 -k1,22783:16359694,38655211:228872 -k1,22783:17239994,38655211:228872 -k1,22783:19491961,38655211:228871 -k1,22783:20178930,38655211:228872 -k1,22783:22419757,38655211:228872 -k1,22783:25237301,38655211:228872 -k1,22783:27816949,38655211:228872 -k1,22783:28705113,38655211:228872 -k1,22783:29289845,38655211:228872 -k1,22783:32583029,38655211:0 -) -(1,22784:6630773,39496699:25952256,505283,126483 -g1,22783:7481430,39496699 -g1,22783:8428425,39496699 -k1,22784:32583029,39496699:21031158 -g1,22784:32583029,39496699 -) -(1,22786:6630773,40338187:25952256,513147,134348 -h1,22785:6630773,40338187:983040,0,0 -k1,22785:9375340,40338187:273204 -k1,22785:10516895,40338187:273203 -k1,22785:11882584,40338187:273204 -k1,22785:14851284,40338187:273204 -(1,22785:14851284,40338187:0,452978,115847 -r1,22807:18726668,40338187:3875384,568825,115847 -k1,22785:14851284,40338187:-3875384 -) -(1,22785:14851284,40338187:3875384,452978,115847 -k1,22785:14851284,40338187:3277 -h1,22785:18723391,40338187:0,411205,112570 -) -k1,22785:19173542,40338187:273204 -k1,22785:22186150,40338187:273203 -k1,22785:23478439,40338187:273204 -k1,22785:27044827,40338187:273204 -k1,22785:28079559,40338187:273204 -k1,22785:30264447,40338187:273203 -k1,22785:31734338,40338187:273204 -k1,22786:32583029,40338187:0 -) -(1,22786:6630773,41179675:25952256,513147,134348 -k1,22785:9008018,41179675:234218 -k1,22785:10922580,41179675:234219 -k1,22785:11688295,41179675:234218 -k1,22785:12278373,41179675:234218 -k1,22785:13901955,41179675:234219 -k1,22785:16186139,41179675:234218 -k1,22785:17611802,41179675:234218 -k1,22785:20821356,41179675:234219 -k1,22785:22074659,41179675:234218 -k1,22785:26333443,41179675:234218 -k1,22785:27234817,41179675:234218 -k1,22785:27883844,41179675:234184 -k1,22785:30698214,41179675:234218 -k1,22785:32583029,41179675:0 -) -(1,22786:6630773,42021163:25952256,513147,126483 -g1,22785:9804681,42021163 -g1,22785:12717101,42021163 -g1,22785:13907890,42021163 -g1,22785:17267920,42021163 -g1,22785:18734615,42021163 -g1,22785:21158136,42021163 -g1,22785:22118893,42021163 -k1,22786:32583029,42021163:8024886 -g1,22786:32583029,42021163 -) -v1,22788:6630773,43211629:0,393216,0 -(1,22807:6630773,44757895:25952256,1939482,196608 -g1,22807:6630773,44757895 -g1,22807:6630773,44757895 -g1,22807:6434165,44757895 -(1,22807:6434165,44757895:0,1939482,196608 -r1,22807:32779637,44757895:26345472,2136090,196608 -k1,22807:6434165,44757895:-26345472 -) -(1,22807:6434165,44757895:26345472,1939482,196608 -[1,22807:6630773,44757895:25952256,1742874,0 -(1,22790:6630773,43425539:25952256,410518,82312 -(1,22789:6630773,43425539:0,0,0 -g1,22789:6630773,43425539 -g1,22789:6630773,43425539 -g1,22789:6303093,43425539 -(1,22789:6303093,43425539:0,0,0 -) -g1,22789:6630773,43425539 -) -g1,22790:11056813,43425539 -g1,22790:12005251,43425539 -k1,22790:12005251,43425539:0 -h1,22790:21805768,43425539:0,0,0 -k1,22790:32583029,43425539:10777261 -g1,22790:32583029,43425539 -) -(1,22791:6630773,44091717:25952256,404226,101187 -h1,22791:6630773,44091717:0,0,0 -g1,22791:6946919,44091717 -g1,22791:7263065,44091717 -g1,22791:7579211,44091717 -g1,22791:7895357,44091717 -g1,22791:8211503,44091717 -g1,22791:8527649,44091717 -g1,22791:8843795,44091717 -g1,22791:9159941,44091717 -g1,22791:9476087,44091717 -g1,22791:9792233,44091717 -g1,22791:10108379,44091717 -g1,22791:10424525,44091717 -g1,22791:10740671,44091717 -g1,22791:11056817,44091717 -g1,22791:11372963,44091717 -g1,22791:11689109,44091717 -g1,22791:12005255,44091717 -g1,22791:12321401,44091717 -g1,22791:12637547,44091717 -g1,22791:12953693,44091717 -g1,22791:13269839,44091717 -g1,22791:13585985,44091717 -g1,22791:13902131,44091717 -g1,22791:14218277,44091717 -g1,22791:14534423,44091717 -g1,22791:14850569,44091717 -g1,22791:15166715,44091717 -g1,22791:18328172,44091717 -g1,22791:18960464,44091717 -g1,22791:20225047,44091717 -h1,22791:22121921,44091717:0,0,0 -k1,22791:32583029,44091717:10461108 -g1,22791:32583029,44091717 -) -(1,22792:6630773,44757895:25952256,410518,50331 -h1,22792:6630773,44757895:0,0,0 -h1,22792:10740667,44757895:0,0,0 -k1,22792:32583029,44757895:21842362 -g1,22792:32583029,44757895 -) -] -) -g1,22807:32583029,44757895 -g1,22807:6630773,44757895 -g1,22807:6630773,44757895 -g1,22807:32583029,44757895 -g1,22807:32583029,44757895 -) -] -(1,22807:32583029,45706769:0,0,0 -g1,22807:32583029,45706769 -) -) -] -(1,22807:6630773,47279633:25952256,0,0 -h1,22807:6630773,47279633:25952256,0,0 -) -] -(1,22807:4262630,4025873:0,0,0 -[1,22807:-473656,4025873:0,0,0 -(1,22807:-473656,-710413:0,0,0 -(1,22807:-473656,-710413:0,0,0 -g1,22807:-473656,-710413 -) -g1,22807:-473656,-710413 -) -] -) -] -!28792 -}414 -Input:3681:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3682:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3683:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3684:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!388 -{415 -[1,22843:4262630,47279633:28320399,43253760,0 -(1,22843:4262630,4025873:0,0,0 -[1,22843:-473656,4025873:0,0,0 -(1,22843:-473656,-710413:0,0,0 -(1,22843:-473656,-644877:0,0,0 -k1,22843:-473656,-644877:-65536 +[1,23026:3078558,4812305:0,0,0 +(1,23026:3078558,49800853:0,16384,2228224 +k1,23026:1358238,49800853:-1720320 +(1,21670:1358238,49800853:1720320,16384,2228224 +(1,21670:1358238,49800853:1179648,16384,0 +r1,23026:2537886,49800853:1179648,16384,0 ) -(1,22843:-473656,4736287:0,0,0 -k1,22843:-473656,4736287:5209943 +g1,21670:3062174,49800853 +(1,21670:3062174,52029077:16384,1703936,0 +[1,21670:3062174,52029077:25952256,1703936,0 +(1,21670:3062174,51504789:25952256,1179648,0 +(1,21670:3062174,51504789:16384,1179648,0 +r1,23026:3078558,51504789:16384,1179648,0 ) -g1,22843:-473656,-710413 +k1,21670:29014430,51504789:25935872 +g1,21670:29014430,51504789 ) ] ) -[1,22843:6630773,47279633:25952256,43253760,0 -[1,22843:6630773,4812305:25952256,786432,0 -(1,22843:6630773,4812305:25952256,505283,134348 -(1,22843:6630773,4812305:25952256,505283,134348 -g1,22843:3078558,4812305 -[1,22843:3078558,4812305:0,0,0 -(1,22843:3078558,2439708:0,1703936,0 -k1,22843:1358238,2439708:-1720320 -(1,21457:1358238,2439708:1720320,1703936,0 -(1,21457:1358238,2439708:1179648,16384,0 -r1,22843:2537886,2439708:1179648,16384,0 ) -g1,21457:3062174,2439708 -(1,21457:3062174,2439708:16384,1703936,0 -[1,21457:3062174,2439708:25952256,1703936,0 -(1,21457:3062174,1915420:25952256,1179648,0 -(1,21457:3062174,1915420:16384,1179648,0 -r1,22843:3078558,1915420:16384,1179648,0 ) -k1,21457:29014430,1915420:25935872 -g1,21457:29014430,1915420 +] +[1,23026:3078558,4812305:0,0,0 +(1,23026:3078558,49800853:0,16384,2228224 +g1,23026:29030814,49800853 +g1,23026:36135244,49800853 +(1,21670:36135244,49800853:1720320,16384,2228224 +(1,21670:36135244,52029077:16384,1703936,0 +[1,21670:36135244,52029077:25952256,1703936,0 +(1,21670:36135244,51504789:25952256,1179648,0 +(1,21670:36135244,51504789:16384,1179648,0 +r1,23026:36151628,51504789:16384,1179648,0 +) +k1,21670:62087500,51504789:25935872 +g1,21670:62087500,51504789 ) ] ) +g1,21670:36675916,49800853 +(1,21670:36675916,49800853:1179648,16384,0 +r1,23026:37855564,49800853:1179648,16384,0 +) ) +k1,23026:3078556,49800853:-34777008 ) ] -[1,22843:3078558,4812305:0,0,0 -(1,22843:3078558,2439708:0,1703936,0 -g1,22843:29030814,2439708 -g1,22843:36135244,2439708 -(1,21457:36135244,2439708:1720320,1703936,0 -(1,21457:36135244,2439708:16384,1703936,0 -[1,21457:36135244,2439708:25952256,1703936,0 -(1,21457:36135244,1915420:25952256,1179648,0 -(1,21457:36135244,1915420:16384,1179648,0 -r1,22843:36151628,1915420:16384,1179648,0 +g1,23026:6630773,4812305 +k1,23026:21078841,4812305:13252691 +g1,23026:22701512,4812305 +g1,23026:23350318,4812305 +g1,23026:24759997,4812305 +g1,23026:28372341,4812305 +g1,23026:30105768,4812305 ) -k1,21457:62087500,1915420:25935872 -g1,21457:62087500,1915420 ) ] +[1,23026:6630773,45706769:25952256,40108032,0 +(1,23026:6630773,45706769:25952256,40108032,0 +(1,23026:6630773,45706769:0,0,0 +g1,23026:6630773,45706769 ) -g1,21457:36675916,2439708 -(1,21457:36675916,2439708:1179648,16384,0 -r1,22843:37855564,2439708:1179648,16384,0 +[1,23026:6630773,45706769:25952256,40108032,0 +v1,22966:6630773,6254097:0,393216,0 +(1,22966:6630773,11420196:25952256,5559315,196608 +g1,22966:6630773,11420196 +g1,22966:6630773,11420196 +g1,22966:6434165,11420196 +(1,22966:6434165,11420196:0,5559315,196608 +r1,23026:32779637,11420196:26345472,5755923,196608 +k1,22966:6434165,11420196:-26345472 +) +(1,22966:6434165,11420196:26345472,5559315,196608 +[1,22966:6630773,11420196:25952256,5362707,0 +(1,22955:6630773,6488534:25952256,431045,112852 +h1,22955:6630773,6488534:0,0,0 +h1,22955:11610082,6488534:0,0,0 +k1,22955:32583030,6488534:20972948 +g1,22955:32583030,6488534 +) +(1,22965:6630773,7304461:25952256,424439,6605 +(1,22957:6630773,7304461:0,0,0 +g1,22957:6630773,7304461 +g1,22957:6630773,7304461 +g1,22957:6303093,7304461 +(1,22957:6303093,7304461:0,0,0 +) +g1,22957:6630773,7304461 +) +g1,22965:7626635,7304461 +g1,22965:8290543,7304461 +g1,22965:8954451,7304461 +g1,22965:11610083,7304461 +g1,22965:12273991,7304461 +g1,22965:12937899,7304461 +h1,22965:13269853,7304461:0,0,0 +k1,22965:32583029,7304461:19313176 +g1,22965:32583029,7304461 +) +(1,22965:6630773,7989316:25952256,424439,112852 +h1,22965:6630773,7989316:0,0,0 +g1,22965:7626635,7989316 +g1,22965:7958589,7989316 +g1,22965:8290543,7989316 +g1,22965:10614221,7989316 +h1,22965:12273991,7989316:0,0,0 +k1,22965:32583029,7989316:20309038 +g1,22965:32583029,7989316 +) +(1,22965:6630773,8674171:25952256,424439,6605 +h1,22965:6630773,8674171:0,0,0 +g1,22965:7626635,8674171 +g1,22965:7958589,8674171 +g1,22965:8290543,8674171 +g1,22965:8622497,8674171 +g1,22965:10614221,8674171 +k1,22965:10614221,8674171:0 +h1,22965:12273991,8674171:0,0,0 +k1,22965:32583029,8674171:20309038 +g1,22965:32583029,8674171 +) +(1,22965:6630773,9359026:25952256,407923,4954 +h1,22965:6630773,9359026:0,0,0 +g1,22965:7626635,9359026 +g1,22965:8290543,9359026 +g1,22965:8622497,9359026 +g1,22965:8954451,9359026 +g1,22965:9286405,9359026 +g1,22965:9618359,9359026 +g1,22965:9950313,9359026 +g1,22965:10614221,9359026 +h1,22965:10946175,9359026:0,0,0 +k1,22965:32583029,9359026:21636854 +g1,22965:32583029,9359026 +) +(1,22965:6630773,10043881:25952256,407923,4954 +h1,22965:6630773,10043881:0,0,0 +g1,22965:7626635,10043881 +g1,22965:8290543,10043881 +g1,22965:8622497,10043881 +g1,22965:8954451,10043881 +g1,22965:9286405,10043881 +g1,22965:9618359,10043881 +g1,22965:9950313,10043881 +g1,22965:10614221,10043881 +h1,22965:10946175,10043881:0,0,0 +k1,22965:32583029,10043881:21636854 +g1,22965:32583029,10043881 +) +(1,22965:6630773,10728736:25952256,407923,9908 +h1,22965:6630773,10728736:0,0,0 +g1,22965:7626635,10728736 +g1,22965:8290543,10728736 +g1,22965:8622497,10728736 +g1,22965:8954451,10728736 +g1,22965:9286405,10728736 +g1,22965:9618359,10728736 +g1,22965:9950313,10728736 +g1,22965:10614221,10728736 +h1,22965:10946175,10728736:0,0,0 +k1,22965:32583029,10728736:21636854 +g1,22965:32583029,10728736 +) +(1,22965:6630773,11413591:25952256,424439,6605 +h1,22965:6630773,11413591:0,0,0 +g1,22965:7626635,11413591 +g1,22965:8290543,11413591 +g1,22965:8954451,11413591 +g1,22965:9618359,11413591 +g1,22965:11278129,11413591 +h1,22965:12605945,11413591:0,0,0 +k1,22965:32583029,11413591:19977084 +g1,22965:32583029,11413591 +) +] +) +g1,22966:32583029,11420196 +g1,22966:6630773,11420196 +g1,22966:6630773,11420196 +g1,22966:32583029,11420196 +g1,22966:32583029,11420196 +) +h1,22966:6630773,11616804:0,0,0 +(1,22970:6630773,12481884:25952256,513147,134348 +h1,22969:6630773,12481884:983040,0,0 +k1,22969:8628583,12481884:240790 +k1,22969:9888458,12481884:240790 +k1,22969:13347066,12481884:240790 +k1,22969:17164156,12481884:240790 +k1,22969:18424031,12481884:240790 +k1,22969:20266522,12481884:240791 +k1,22969:22484533,12481884:240790 +k1,22969:24212335,12481884:240790 +k1,22969:25928340,12481884:240790 +k1,22969:27188215,12481884:240790 +k1,22969:29082478,12481884:240790 +k1,22969:31391584,12481884:240790 +k1,22969:32583029,12481884:0 +) +(1,22970:6630773,13346964:25952256,505283,134348 +k1,22969:8129014,13346964:155408 +k1,22969:10486431,13346964:155407 +k1,22969:12207494,13346964:155408 +k1,22969:13049064,13346964:155408 +k1,22969:13820509,13346964:155407 +k1,22969:15999013,13346964:155408 +k1,22969:17386498,13346964:155408 +k1,22969:19820592,13346964:155407 +h1,22969:21761768,13346964:0,0,0 +k1,22969:21917176,13346964:155408 +k1,22969:22881954,13346964:155408 +k1,22969:24535514,13346964:155407 +h1,22969:25730891,13346964:0,0,0 +k1,22969:26267063,13346964:155408 +k1,22969:27464493,13346964:155408 +k1,22969:30454987,13346964:155407 +k1,22969:31478747,13346964:155408 +k1,22969:32583029,13346964:0 +) +(1,22970:6630773,14212044:25952256,513147,134348 +k1,22969:7739390,14212044:174074 +k1,22969:9196658,14212044:174073 +k1,22969:11439048,14212044:174074 +k1,22969:12264549,14212044:174073 +k1,22969:13457708,14212044:174074 +k1,22969:16344973,14212044:174074 +k1,22969:18846229,14212044:174073 +k1,22969:19679595,14212044:174074 +k1,22969:22256219,14212044:174074 +k1,22969:23938931,14212044:174073 +k1,22969:26181321,14212044:174074 +k1,22969:27923015,14212044:174073 +k1,22969:29116174,14212044:174074 +k1,22970:32583029,14212044:0 +k1,22970:32583029,14212044:0 +) +v1,22972:6630773,14896899:0,393216,0 +(1,22989:6630773,22802418:25952256,8298735,196608 +g1,22989:6630773,22802418 +g1,22989:6630773,22802418 +g1,22989:6434165,22802418 +(1,22989:6434165,22802418:0,8298735,196608 +r1,23026:32779637,22802418:26345472,8495343,196608 +k1,22989:6434165,22802418:-26345472 +) +(1,22989:6434165,22802418:26345472,8298735,196608 +[1,22989:6630773,22802418:25952256,8102127,0 +(1,22974:6630773,15131336:25952256,431045,112852 +(1,22973:6630773,15131336:0,0,0 +g1,22973:6630773,15131336 +g1,22973:6630773,15131336 +g1,22973:6303093,15131336 +(1,22973:6303093,15131336:0,0,0 +) +g1,22973:6630773,15131336 +) +g1,22974:11942036,15131336 +g1,22974:12937898,15131336 +k1,22974:12937898,15131336:0 +h1,22974:23560424,15131336:0,0,0 +k1,22974:32583029,15131336:9022605 +g1,22974:32583029,15131336 +) +(1,22975:6630773,15816191:25952256,424439,106246 +h1,22975:6630773,15816191:0,0,0 +g1,22975:6962727,15816191 +g1,22975:7294681,15816191 +g1,22975:7626635,15816191 +g1,22975:7958589,15816191 +g1,22975:8290543,15816191 +g1,22975:8622497,15816191 +g1,22975:8954451,15816191 +g1,22975:9286405,15816191 +g1,22975:9618359,15816191 +g1,22975:9950313,15816191 +g1,22975:10282267,15816191 +g1,22975:10614221,15816191 +g1,22975:10946175,15816191 +g1,22975:11278129,15816191 +g1,22975:11610083,15816191 +g1,22975:11942037,15816191 +g1,22975:12273991,15816191 +g1,22975:12605945,15816191 +g1,22975:12937899,15816191 +g1,22975:13269853,15816191 +g1,22975:13601807,15816191 +g1,22975:13933761,15816191 +g1,22975:14265715,15816191 +g1,22975:14597669,15816191 +g1,22975:14929623,15816191 +g1,22975:15261577,15816191 +g1,22975:15593531,15816191 +g1,22975:15925485,15816191 +g1,22975:16257439,15816191 +g1,22975:16589393,15816191 +g1,22975:18581117,15816191 +g1,22975:19245025,15816191 +g1,22975:20572841,15816191 +k1,22975:20572841,15816191:0 +h1,22975:22564565,15816191:0,0,0 +k1,22975:32583029,15816191:10018464 +g1,22975:32583029,15816191 +) +(1,22976:6630773,16501046:25952256,424439,112852 +h1,22976:6630773,16501046:0,0,0 +g1,22976:6962727,16501046 +g1,22976:7294681,16501046 +g1,22976:7626635,16501046 +g1,22976:7958589,16501046 +g1,22976:8290543,16501046 +g1,22976:8622497,16501046 +g1,22976:8954451,16501046 +g1,22976:9286405,16501046 +g1,22976:9618359,16501046 +g1,22976:9950313,16501046 +g1,22976:10282267,16501046 +g1,22976:10614221,16501046 +g1,22976:10946175,16501046 +g1,22976:11278129,16501046 +g1,22976:11610083,16501046 +g1,22976:11942037,16501046 +g1,22976:12273991,16501046 +g1,22976:12605945,16501046 +g1,22976:12937899,16501046 +g1,22976:13269853,16501046 +g1,22976:13601807,16501046 +g1,22976:13933761,16501046 +g1,22976:14265715,16501046 +g1,22976:14597669,16501046 +g1,22976:14929623,16501046 +g1,22976:15261577,16501046 +g1,22976:15593531,16501046 +g1,22976:15925485,16501046 +g1,22976:16257439,16501046 +g1,22976:16589393,16501046 +g1,22976:18581117,16501046 +g1,22976:19245025,16501046 +k1,22976:19245025,16501046:0 +h1,22976:21900657,16501046:0,0,0 +k1,22976:32583029,16501046:10682372 +g1,22976:32583029,16501046 +) +(1,22977:6630773,17185901:25952256,424439,86428 +h1,22977:6630773,17185901:0,0,0 +g1,22977:6962727,17185901 +g1,22977:7294681,17185901 +g1,22977:7626635,17185901 +g1,22977:7958589,17185901 +g1,22977:8290543,17185901 +g1,22977:8622497,17185901 +g1,22977:8954451,17185901 +g1,22977:9286405,17185901 +g1,22977:9618359,17185901 +g1,22977:9950313,17185901 +g1,22977:10282267,17185901 +g1,22977:10614221,17185901 +g1,22977:10946175,17185901 +g1,22977:11278129,17185901 +g1,22977:11610083,17185901 +g1,22977:11942037,17185901 +g1,22977:12273991,17185901 +g1,22977:12605945,17185901 +g1,22977:12937899,17185901 +g1,22977:13269853,17185901 +g1,22977:13601807,17185901 +g1,22977:13933761,17185901 +g1,22977:14265715,17185901 +g1,22977:14597669,17185901 +g1,22977:14929623,17185901 +g1,22977:15261577,17185901 +g1,22977:15593531,17185901 +g1,22977:15925485,17185901 +g1,22977:16257439,17185901 +g1,22977:16589393,17185901 +g1,22977:19908932,17185901 +g1,22977:20572840,17185901 +g1,22977:22896518,17185901 +h1,22977:24556288,17185901:0,0,0 +k1,22977:32583029,17185901:8026741 +g1,22977:32583029,17185901 +) +(1,22978:6630773,17870756:25952256,431045,112852 +h1,22978:6630773,17870756:0,0,0 +h1,22978:11610082,17870756:0,0,0 +k1,22978:32583030,17870756:20972948 +g1,22978:32583030,17870756 +) +(1,22988:6630773,18686683:25952256,424439,6605 +(1,22980:6630773,18686683:0,0,0 +g1,22980:6630773,18686683 +g1,22980:6630773,18686683 +g1,22980:6303093,18686683 +(1,22980:6303093,18686683:0,0,0 +) +g1,22980:6630773,18686683 +) +g1,22988:7626635,18686683 +g1,22988:8290543,18686683 +g1,22988:8954451,18686683 +g1,22988:11610083,18686683 +g1,22988:12273991,18686683 +g1,22988:12937899,18686683 +h1,22988:13269853,18686683:0,0,0 +k1,22988:32583029,18686683:19313176 +g1,22988:32583029,18686683 +) +(1,22988:6630773,19371538:25952256,398014,0 +h1,22988:6630773,19371538:0,0,0 +g1,22988:7626635,19371538 +g1,22988:7958589,19371538 +g1,22988:8290543,19371538 +g1,22988:8622497,19371538 +g1,22988:8954451,19371538 +g1,22988:9286405,19371538 +g1,22988:9618359,19371538 +g1,22988:10282267,19371538 +h1,22988:10614221,19371538:0,0,0 +k1,22988:32583029,19371538:21968808 +g1,22988:32583029,19371538 +) +(1,22988:6630773,20056393:25952256,424439,6605 +h1,22988:6630773,20056393:0,0,0 +g1,22988:7626635,20056393 +g1,22988:7958589,20056393 +g1,22988:8290543,20056393 +g1,22988:10282267,20056393 +k1,22988:10282267,20056393:0 +h1,22988:11942037,20056393:0,0,0 +k1,22988:32583029,20056393:20640992 +g1,22988:32583029,20056393 +) +(1,22988:6630773,20741248:25952256,407923,4954 +h1,22988:6630773,20741248:0,0,0 +g1,22988:7626635,20741248 +g1,22988:8290543,20741248 +g1,22988:8622497,20741248 +g1,22988:8954451,20741248 +g1,22988:9286405,20741248 +g1,22988:9618359,20741248 +g1,22988:10282267,20741248 +h1,22988:10614221,20741248:0,0,0 +k1,22988:32583029,20741248:21968808 +g1,22988:32583029,20741248 +) +(1,22988:6630773,21426103:25952256,407923,4954 +h1,22988:6630773,21426103:0,0,0 +g1,22988:7626635,21426103 +g1,22988:8290543,21426103 +g1,22988:8622497,21426103 +g1,22988:8954451,21426103 +g1,22988:9286405,21426103 +g1,22988:9618359,21426103 +g1,22988:10282267,21426103 +h1,22988:10614221,21426103:0,0,0 +k1,22988:32583029,21426103:21968808 +g1,22988:32583029,21426103 +) +(1,22988:6630773,22110958:25952256,407923,9908 +h1,22988:6630773,22110958:0,0,0 +g1,22988:7626635,22110958 +g1,22988:8290543,22110958 +g1,22988:8622497,22110958 +g1,22988:8954451,22110958 +g1,22988:9286405,22110958 +g1,22988:9618359,22110958 +g1,22988:10282267,22110958 +h1,22988:10614221,22110958:0,0,0 +k1,22988:32583029,22110958:21968808 +g1,22988:32583029,22110958 +) +(1,22988:6630773,22795813:25952256,424439,6605 +h1,22988:6630773,22795813:0,0,0 +g1,22988:7626635,22795813 +g1,22988:8290543,22795813 +g1,22988:8954451,22795813 +g1,22988:9618359,22795813 +g1,22988:11278129,22795813 +h1,22988:12605945,22795813:0,0,0 +k1,22988:32583029,22795813:19977084 +g1,22988:32583029,22795813 +) +] +) +g1,22989:32583029,22802418 +g1,22989:6630773,22802418 +g1,22989:6630773,22802418 +g1,22989:32583029,22802418 +g1,22989:32583029,22802418 +) +h1,22989:6630773,22999026:0,0,0 +(1,22992:6630773,25115844:25952256,555811,12975 +(1,22992:6630773,25115844:2899444,534184,12975 +g1,22992:6630773,25115844 +g1,22992:9530217,25115844 +) +k1,22992:32583028,25115844:21176320 +g1,22992:32583028,25115844 +) +(1,22997:6630773,26374140:25952256,513147,134348 +k1,22996:9413213,26374140:247507 +k1,22996:11334510,26374140:247508 +k1,22996:12686299,26374140:247507 +k1,22996:13681573,26374140:247508 +k1,22996:15579277,26374140:247507 +k1,22996:18310599,26374140:247507 +k1,22996:19209535,26374140:247508 +k1,22996:21426399,26374140:247507 +k1,22996:22360069,26374140:247508 +k1,22996:23065673,26374140:247507 +k1,22996:24735967,26374140:247507 +k1,22996:26328929,26374140:247508 +k1,22996:29602233,26374140:247507 +k1,22996:30501169,26374140:247508 +k1,22996:31563944,26374140:247507 +k1,22996:32583029,26374140:0 +) +(1,22997:6630773,27239220:25952256,513147,134348 +k1,22996:8776362,27239220:223418 +k1,22996:10769907,27239220:223418 +k1,22996:13928027,27239220:223418 +k1,22996:14609542,27239220:223418 +k1,22996:15364457,27239220:223418 +k1,22996:17238072,27239220:223418 +k1,22996:22452712,27239220:223418 +k1,22996:24070081,27239220:223418 +k1,22996:27319296,27239220:223418 +k1,22996:29009410,27239220:223418 +k1,22996:30180479,27239220:223418 +k1,22996:32583029,27239220:0 +) +(1,22997:6630773,28104300:25952256,513147,134348 +k1,22996:8084289,28104300:262071 +k1,22996:10604075,28104300:262071 +k1,22996:13643562,28104300:262071 +k1,22996:17529119,28104300:262071 +k1,22996:18982635,28104300:262071 +k1,22996:22927174,28104300:262071 +k1,22996:23805283,28104300:262071 +k1,22996:26829697,28104300:262071 +k1,22996:29602452,28104300:262071 +k1,22996:32583029,28104300:0 +) +(1,22997:6630773,28969380:25952256,513147,134348 +k1,22996:7878730,28969380:228872 +k1,22996:9763697,28969380:228872 +k1,22996:12014355,28969380:228872 +k1,22996:13903909,28969380:228872 +k1,22996:16359694,28969380:228872 +k1,22996:17239994,28969380:228872 +k1,22996:19491961,28969380:228871 +k1,22996:20178930,28969380:228872 +k1,22996:22419757,28969380:228872 +k1,22996:25237301,28969380:228872 +k1,22996:27816949,28969380:228872 +k1,22996:28705113,28969380:228872 +k1,22996:29289845,28969380:228872 +k1,22996:32583029,28969380:0 +) +(1,22997:6630773,29834460:25952256,505283,126483 +g1,22996:7481430,29834460 +g1,22996:8428425,29834460 +k1,22997:32583029,29834460:21031158 +g1,22997:32583029,29834460 +) +(1,22999:6630773,30699540:25952256,513147,134348 +h1,22998:6630773,30699540:983040,0,0 +k1,22998:9375340,30699540:273204 +k1,22998:10516895,30699540:273203 +k1,22998:11882584,30699540:273204 +k1,22998:14851284,30699540:273204 +(1,22998:14851284,30699540:0,452978,115847 +r1,23026:18726668,30699540:3875384,568825,115847 +k1,22998:14851284,30699540:-3875384 +) +(1,22998:14851284,30699540:3875384,452978,115847 +k1,22998:14851284,30699540:3277 +h1,22998:18723391,30699540:0,411205,112570 +) +k1,22998:19173542,30699540:273204 +k1,22998:22186150,30699540:273203 +k1,22998:23478439,30699540:273204 +k1,22998:27044827,30699540:273204 +k1,22998:28079559,30699540:273204 +k1,22998:30264447,30699540:273203 +k1,22998:31734338,30699540:273204 +k1,22999:32583029,30699540:0 +) +(1,22999:6630773,31564620:25952256,513147,134348 +k1,22998:9008018,31564620:234218 +k1,22998:10922580,31564620:234219 +k1,22998:11688295,31564620:234218 +k1,22998:12278373,31564620:234218 +k1,22998:13901955,31564620:234219 +k1,22998:16186139,31564620:234218 +k1,22998:17611802,31564620:234218 +k1,22998:20821356,31564620:234219 +k1,22998:22074659,31564620:234218 +k1,22998:26333443,31564620:234218 +k1,22998:27234817,31564620:234218 +k1,22998:27883844,31564620:234184 +k1,22998:30698214,31564620:234218 +k1,22998:32583029,31564620:0 +) +(1,22999:6630773,32429700:25952256,513147,126483 +g1,22998:9804681,32429700 +g1,22998:12717101,32429700 +g1,22998:13907890,32429700 +g1,22998:17267920,32429700 +g1,22998:18734615,32429700 +g1,22998:21158136,32429700 +g1,22998:22118893,32429700 +k1,22999:32583029,32429700:8024886 +g1,22999:32583029,32429700 +) +v1,23001:6630773,33114555:0,393216,0 +(1,23020:6630773,42393087:25952256,9671748,196608 +g1,23020:6630773,42393087 +g1,23020:6630773,42393087 +g1,23020:6434165,42393087 +(1,23020:6434165,42393087:0,9671748,196608 +r1,23026:32779637,42393087:26345472,9868356,196608 +k1,23020:6434165,42393087:-26345472 +) +(1,23020:6434165,42393087:26345472,9671748,196608 +[1,23020:6630773,42393087:25952256,9475140,0 +(1,23003:6630773,33348992:25952256,431045,86428 +(1,23002:6630773,33348992:0,0,0 +g1,23002:6630773,33348992 +g1,23002:6630773,33348992 +g1,23002:6303093,33348992 +(1,23002:6303093,33348992:0,0,0 +) +g1,23002:6630773,33348992 +) +g1,23003:11278128,33348992 +g1,23003:12273990,33348992 +k1,23003:12273990,33348992:0 +h1,23003:22564562,33348992:0,0,0 +k1,23003:32583029,33348992:10018467 +g1,23003:32583029,33348992 +) +(1,23004:6630773,34033847:25952256,424439,106246 +h1,23004:6630773,34033847:0,0,0 +g1,23004:6962727,34033847 +g1,23004:7294681,34033847 +g1,23004:7626635,34033847 +g1,23004:7958589,34033847 +g1,23004:8290543,34033847 +g1,23004:8622497,34033847 +g1,23004:8954451,34033847 +g1,23004:9286405,34033847 +g1,23004:9618359,34033847 +g1,23004:9950313,34033847 +g1,23004:10282267,34033847 +g1,23004:10614221,34033847 +g1,23004:10946175,34033847 +g1,23004:11278129,34033847 +g1,23004:11610083,34033847 +g1,23004:11942037,34033847 +g1,23004:12273991,34033847 +g1,23004:12605945,34033847 +g1,23004:12937899,34033847 +g1,23004:13269853,34033847 +g1,23004:13601807,34033847 +g1,23004:13933761,34033847 +g1,23004:14265715,34033847 +g1,23004:14597669,34033847 +g1,23004:14929623,34033847 +g1,23004:15261577,34033847 +g1,23004:15593531,34033847 +g1,23004:18913070,34033847 +g1,23004:19576978,34033847 +g1,23004:20904794,34033847 +h1,23004:22896518,34033847:0,0,0 +k1,23004:32583029,34033847:9686511 +g1,23004:32583029,34033847 +) +(1,23005:6630773,34718702:25952256,431045,52847 +h1,23005:6630773,34718702:0,0,0 +h1,23005:10946174,34718702:0,0,0 +k1,23005:32583030,34718702:21636856 +g1,23005:32583030,34718702 +) +(1,23019:6630773,35534629:25952256,424439,112852 +(1,23007:6630773,35534629:0,0,0 +g1,23007:6630773,35534629 +g1,23007:6630773,35534629 +g1,23007:6303093,35534629 +(1,23007:6303093,35534629:0,0,0 +) +g1,23007:6630773,35534629 +) +g1,23019:7626635,35534629 +g1,23019:7958589,35534629 +g1,23019:8290543,35534629 +g1,23019:8622497,35534629 +g1,23019:10946175,35534629 +g1,23019:12937899,35534629 +h1,23019:16589392,35534629:0,0,0 +k1,23019:32583029,35534629:15993637 +g1,23019:32583029,35534629 +) +(1,23019:6630773,36219484:25952256,407923,9908 +h1,23019:6630773,36219484:0,0,0 +g1,23019:7626635,36219484 +g1,23019:8290543,36219484 +g1,23019:8622497,36219484 +g1,23019:8954451,36219484 +g1,23019:9286405,36219484 +g1,23019:9618359,36219484 +g1,23019:9950313,36219484 +g1,23019:10282267,36219484 +g1,23019:10946175,36219484 +g1,23019:11278129,36219484 +g1,23019:11610083,36219484 +g1,23019:11942037,36219484 +g1,23019:12273991,36219484 +g1,23019:12937899,36219484 +g1,23019:13269853,36219484 +g1,23019:13601807,36219484 +g1,23019:13933761,36219484 +g1,23019:14265715,36219484 +g1,23019:14597669,36219484 +g1,23019:14929623,36219484 +g1,23019:15261577,36219484 +g1,23019:15593531,36219484 +h1,23019:16589393,36219484:0,0,0 +k1,23019:32583029,36219484:15993636 +g1,23019:32583029,36219484 +) +(1,23019:6630773,36904339:25952256,407923,9908 +h1,23019:6630773,36904339:0,0,0 +g1,23019:7626635,36904339 +g1,23019:8290543,36904339 +g1,23019:8622497,36904339 +g1,23019:8954451,36904339 +g1,23019:9286405,36904339 +g1,23019:9618359,36904339 +g1,23019:9950313,36904339 +g1,23019:10282267,36904339 +g1,23019:10946175,36904339 +g1,23019:11278129,36904339 +g1,23019:11610083,36904339 +g1,23019:11942037,36904339 +g1,23019:12273991,36904339 +g1,23019:12937899,36904339 +g1,23019:13269853,36904339 +g1,23019:13601807,36904339 +g1,23019:13933761,36904339 +g1,23019:14265715,36904339 +g1,23019:14597669,36904339 +g1,23019:14929623,36904339 +g1,23019:15261577,36904339 +g1,23019:15593531,36904339 +h1,23019:16589393,36904339:0,0,0 +k1,23019:32583029,36904339:15993636 +g1,23019:32583029,36904339 +) +(1,23019:6630773,37589194:25952256,407923,9908 +h1,23019:6630773,37589194:0,0,0 +g1,23019:7626635,37589194 +g1,23019:8290543,37589194 +g1,23019:8622497,37589194 +g1,23019:8954451,37589194 +g1,23019:9286405,37589194 +g1,23019:9618359,37589194 +g1,23019:9950313,37589194 +g1,23019:10282267,37589194 +g1,23019:10946175,37589194 +g1,23019:11278129,37589194 +g1,23019:11610083,37589194 +g1,23019:11942037,37589194 +g1,23019:12273991,37589194 +g1,23019:12937899,37589194 +g1,23019:13269853,37589194 +g1,23019:13601807,37589194 +g1,23019:13933761,37589194 +g1,23019:14265715,37589194 +g1,23019:14597669,37589194 +g1,23019:14929623,37589194 +g1,23019:15261577,37589194 +g1,23019:15593531,37589194 +h1,23019:16589393,37589194:0,0,0 +k1,23019:32583029,37589194:15993636 +g1,23019:32583029,37589194 +) +(1,23019:6630773,38274049:25952256,407923,9908 +h1,23019:6630773,38274049:0,0,0 +g1,23019:7626635,38274049 +g1,23019:8290543,38274049 +g1,23019:8622497,38274049 +g1,23019:8954451,38274049 +g1,23019:9286405,38274049 +g1,23019:9618359,38274049 +g1,23019:9950313,38274049 +g1,23019:10282267,38274049 +g1,23019:10946175,38274049 +g1,23019:11278129,38274049 +g1,23019:11610083,38274049 +g1,23019:11942037,38274049 +g1,23019:12273991,38274049 +g1,23019:12937899,38274049 +g1,23019:13269853,38274049 +g1,23019:13601807,38274049 +g1,23019:13933761,38274049 +g1,23019:14265715,38274049 +g1,23019:14597669,38274049 +g1,23019:14929623,38274049 +g1,23019:15261577,38274049 +g1,23019:15593531,38274049 +h1,23019:16589393,38274049:0,0,0 +k1,23019:32583029,38274049:15993636 +g1,23019:32583029,38274049 +) +(1,23019:6630773,38958904:25952256,407923,9908 +h1,23019:6630773,38958904:0,0,0 +g1,23019:7626635,38958904 +g1,23019:8290543,38958904 +g1,23019:8622497,38958904 +g1,23019:8954451,38958904 +g1,23019:9286405,38958904 +g1,23019:9618359,38958904 +g1,23019:9950313,38958904 +g1,23019:10282267,38958904 +g1,23019:10946175,38958904 +g1,23019:11278129,38958904 +g1,23019:11610083,38958904 +g1,23019:11942037,38958904 +g1,23019:12273991,38958904 +g1,23019:12937899,38958904 +g1,23019:13269853,38958904 +g1,23019:13601807,38958904 +g1,23019:13933761,38958904 +g1,23019:14265715,38958904 +g1,23019:14597669,38958904 +g1,23019:14929623,38958904 +g1,23019:15261577,38958904 +g1,23019:15593531,38958904 +h1,23019:16589393,38958904:0,0,0 +k1,23019:32583029,38958904:15993636 +g1,23019:32583029,38958904 +) +(1,23019:6630773,39643759:25952256,424439,9908 +h1,23019:6630773,39643759:0,0,0 +g1,23019:7626635,39643759 +g1,23019:8290543,39643759 +g1,23019:8622497,39643759 +g1,23019:8954451,39643759 +g1,23019:9286405,39643759 +g1,23019:9618359,39643759 +g1,23019:9950313,39643759 +g1,23019:10282267,39643759 +g1,23019:10946175,39643759 +g1,23019:11278129,39643759 +g1,23019:11610083,39643759 +g1,23019:11942037,39643759 +g1,23019:12273991,39643759 +g1,23019:12937899,39643759 +g1,23019:13269853,39643759 +g1,23019:13601807,39643759 +g1,23019:13933761,39643759 +g1,23019:14265715,39643759 +g1,23019:14597669,39643759 +g1,23019:14929623,39643759 +g1,23019:15261577,39643759 +g1,23019:15593531,39643759 +h1,23019:16589393,39643759:0,0,0 +k1,23019:32583029,39643759:15993636 +g1,23019:32583029,39643759 +) +(1,23019:6630773,40328614:25952256,424439,9908 +h1,23019:6630773,40328614:0,0,0 +g1,23019:7626635,40328614 +g1,23019:8290543,40328614 +g1,23019:8622497,40328614 +g1,23019:8954451,40328614 +g1,23019:9286405,40328614 +g1,23019:9618359,40328614 +g1,23019:9950313,40328614 +g1,23019:10282267,40328614 +g1,23019:10946175,40328614 +g1,23019:11278129,40328614 +g1,23019:11610083,40328614 +g1,23019:11942037,40328614 +g1,23019:12273991,40328614 +g1,23019:12937899,40328614 +g1,23019:13269853,40328614 +g1,23019:13601807,40328614 +g1,23019:13933761,40328614 +g1,23019:14265715,40328614 +g1,23019:14597669,40328614 +g1,23019:14929623,40328614 +g1,23019:15261577,40328614 +g1,23019:15593531,40328614 +h1,23019:16589393,40328614:0,0,0 +k1,23019:32583029,40328614:15993636 +g1,23019:32583029,40328614 +) +(1,23019:6630773,41013469:25952256,424439,9908 +h1,23019:6630773,41013469:0,0,0 +g1,23019:7626635,41013469 +g1,23019:8290543,41013469 +g1,23019:8622497,41013469 +g1,23019:8954451,41013469 +g1,23019:9286405,41013469 +g1,23019:9618359,41013469 +g1,23019:9950313,41013469 +g1,23019:10282267,41013469 +g1,23019:10946175,41013469 +g1,23019:11278129,41013469 +g1,23019:11610083,41013469 +g1,23019:11942037,41013469 +g1,23019:12273991,41013469 +g1,23019:12937899,41013469 +g1,23019:13269853,41013469 +g1,23019:13601807,41013469 +g1,23019:13933761,41013469 +g1,23019:14265715,41013469 +g1,23019:14597669,41013469 +g1,23019:14929623,41013469 +g1,23019:15261577,41013469 +g1,23019:15593531,41013469 +h1,23019:16589393,41013469:0,0,0 +k1,23019:32583029,41013469:15993636 +g1,23019:32583029,41013469 +) +(1,23019:6630773,41698324:25952256,424439,9908 +h1,23019:6630773,41698324:0,0,0 +g1,23019:7626635,41698324 +g1,23019:8290543,41698324 +g1,23019:8622497,41698324 +g1,23019:8954451,41698324 +g1,23019:9286405,41698324 +g1,23019:9618359,41698324 +g1,23019:9950313,41698324 +g1,23019:10282267,41698324 +g1,23019:10946175,41698324 +g1,23019:11278129,41698324 +g1,23019:11610083,41698324 +g1,23019:11942037,41698324 +g1,23019:12273991,41698324 +g1,23019:12937899,41698324 +g1,23019:13269853,41698324 +g1,23019:13601807,41698324 +g1,23019:13933761,41698324 +g1,23019:14265715,41698324 +g1,23019:14597669,41698324 +g1,23019:14929623,41698324 +g1,23019:15261577,41698324 +g1,23019:15593531,41698324 +h1,23019:16589393,41698324:0,0,0 +k1,23019:32583029,41698324:15993636 +g1,23019:32583029,41698324 +) +(1,23019:6630773,42383179:25952256,424439,9908 +h1,23019:6630773,42383179:0,0,0 +g1,23019:7626635,42383179 +g1,23019:8622497,42383179 +g1,23019:8954451,42383179 +g1,23019:9286405,42383179 +g1,23019:9618359,42383179 +g1,23019:9950313,42383179 +g1,23019:10946175,42383179 +g1,23019:11278129,42383179 +g1,23019:11610083,42383179 +g1,23019:11942037,42383179 +g1,23019:12273991,42383179 +g1,23019:12937899,42383179 +g1,23019:13269853,42383179 +g1,23019:13601807,42383179 +g1,23019:13933761,42383179 +g1,23019:14265715,42383179 +g1,23019:14597669,42383179 +g1,23019:14929623,42383179 +g1,23019:15261577,42383179 +g1,23019:15593531,42383179 +h1,23019:16589393,42383179:0,0,0 +k1,23019:32583029,42383179:15993636 +g1,23019:32583029,42383179 +) +] +) +g1,23020:32583029,42393087 +g1,23020:6630773,42393087 +g1,23020:6630773,42393087 +g1,23020:32583029,42393087 +g1,23020:32583029,42393087 +) +h1,23020:6630773,42589695:0,0,0 +(1,23024:6630773,43454775:25952256,513147,115847 +h1,23023:6630773,43454775:983040,0,0 +k1,23023:9313040,43454775:220079 +k1,23023:12228616,43454775:220080 +(1,23023:12228616,43454775:0,452978,115847 +r1,23026:16455712,43454775:4227096,568825,115847 +k1,23023:12228616,43454775:-4227096 +) +(1,23023:12228616,43454775:4227096,452978,115847 +k1,23023:12228616,43454775:3277 +h1,23023:16452435,43454775:0,411205,112570 +) +k1,23023:16675791,43454775:220079 +k1,23023:17764223,43454775:220080 +k1,23023:19088584,43454775:220079 +k1,23023:20923471,43454775:220080 +k1,23023:22532913,43454775:220079 +k1,23023:24959590,43454775:220080 +k1,23023:26245940,43454775:220079 +k1,23023:27117448,43454775:220080 +k1,23023:28959543,43454775:220079 +k1,23023:32583029,43454775:0 +) +(1,23024:6630773,44319855:25952256,505283,134348 +g1,23023:8021447,44319855 +g1,23023:9687372,44319855 +g1,23023:12266869,44319855 +g1,23023:13749293,44319855 +g1,23023:17572008,44319855 +g1,23023:18422665,44319855 +g1,23023:19392597,44319855 +g1,23023:22082849,44319855 +k1,23024:32583029,44319855:7148013 +g1,23024:32583029,44319855 ) +] +(1,23026:32583029,45706769:0,0,0 +g1,23026:32583029,45706769 ) -k1,22843:3078556,2439708:-34777008 ) ] -[1,22843:3078558,4812305:0,0,0 -(1,22843:3078558,49800853:0,16384,2228224 -k1,22843:1358238,49800853:-1720320 -(1,21457:1358238,49800853:1720320,16384,2228224 -(1,21457:1358238,49800853:1179648,16384,0 -r1,22843:2537886,49800853:1179648,16384,0 +(1,23026:6630773,47279633:25952256,0,0 +h1,23026:6630773,47279633:25952256,0,0 ) -g1,21457:3062174,49800853 -(1,21457:3062174,52029077:16384,1703936,0 -[1,21457:3062174,52029077:25952256,1703936,0 -(1,21457:3062174,51504789:25952256,1179648,0 -(1,21457:3062174,51504789:16384,1179648,0 -r1,22843:3078558,51504789:16384,1179648,0 +] +(1,23026:4262630,4025873:0,0,0 +[1,23026:-473656,4025873:0,0,0 +(1,23026:-473656,-710413:0,0,0 +(1,23026:-473656,-710413:0,0,0 +g1,23026:-473656,-710413 ) -k1,21457:29014430,51504789:25935872 -g1,21457:29014430,51504789 +g1,23026:-473656,-710413 ) ] ) -) -) ] -[1,22843:3078558,4812305:0,0,0 -(1,22843:3078558,49800853:0,16384,2228224 -g1,22843:29030814,49800853 -g1,22843:36135244,49800853 -(1,21457:36135244,49800853:1720320,16384,2228224 -(1,21457:36135244,52029077:16384,1703936,0 -[1,21457:36135244,52029077:25952256,1703936,0 -(1,21457:36135244,51504789:25952256,1179648,0 -(1,21457:36135244,51504789:16384,1179648,0 -r1,22843:36151628,51504789:16384,1179648,0 -) -k1,21457:62087500,51504789:25935872 -g1,21457:62087500,51504789 -) -] -) -g1,21457:36675916,49800853 -(1,21457:36675916,49800853:1179648,16384,0 -r1,22843:37855564,49800853:1179648,16384,0 -) -) -k1,22843:3078556,49800853:-34777008 -) -] -g1,22843:6630773,4812305 -k1,22843:21078841,4812305:13252691 -g1,22843:22701512,4812305 -g1,22843:23350318,4812305 -g1,22843:24759997,4812305 -g1,22843:28372341,4812305 -g1,22843:30105768,4812305 -) -) -] -[1,22843:6630773,45706769:25952256,40108032,0 -(1,22843:6630773,45706769:25952256,40108032,0 -(1,22843:6630773,45706769:0,0,0 -g1,22843:6630773,45706769 -) -[1,22843:6630773,45706769:25952256,40108032,0 -v1,22807:6630773,6254097:0,393216,0 -(1,22807:6630773,13132931:25952256,7272050,196608 -g1,22807:6630773,13132931 -g1,22807:6630773,13132931 -g1,22807:6434165,13132931 -(1,22807:6434165,13132931:0,7272050,196608 -r1,22843:32779637,13132931:26345472,7468658,196608 -k1,22807:6434165,13132931:-26345472 -) -(1,22807:6434165,13132931:26345472,7272050,196608 -[1,22807:6630773,13132931:25952256,7075442,0 -(1,22806:6630773,6461715:25952256,404226,107478 -(1,22794:6630773,6461715:0,0,0 -g1,22794:6630773,6461715 -g1,22794:6630773,6461715 -g1,22794:6303093,6461715 -(1,22794:6303093,6461715:0,0,0 -) -g1,22794:6630773,6461715 -) -g1,22806:7579210,6461715 -g1,22806:7895356,6461715 -g1,22806:8211502,6461715 -g1,22806:8527648,6461715 -g1,22806:10740668,6461715 -g1,22806:12637542,6461715 -h1,22806:16115144,6461715:0,0,0 -k1,22806:32583029,6461715:16467885 -g1,22806:32583029,6461715 -) -(1,22806:6630773,7127893:25952256,388497,9436 -h1,22806:6630773,7127893:0,0,0 -g1,22806:7579210,7127893 -g1,22806:8211502,7127893 -g1,22806:8527648,7127893 -g1,22806:8843794,7127893 -g1,22806:9159940,7127893 -g1,22806:9476086,7127893 -g1,22806:9792232,7127893 -g1,22806:10108378,7127893 -g1,22806:10740670,7127893 -g1,22806:11056816,7127893 -g1,22806:11372962,7127893 -g1,22806:11689108,7127893 -g1,22806:12005254,7127893 -g1,22806:12637546,7127893 -g1,22806:12953692,7127893 -g1,22806:13269838,7127893 -g1,22806:13585984,7127893 -g1,22806:13902130,7127893 -g1,22806:14218276,7127893 -g1,22806:14534422,7127893 -g1,22806:14850568,7127893 -g1,22806:15166714,7127893 -h1,22806:16115151,7127893:0,0,0 -k1,22806:32583029,7127893:16467878 -g1,22806:32583029,7127893 -) -(1,22806:6630773,7794071:25952256,388497,9436 -h1,22806:6630773,7794071:0,0,0 -g1,22806:7579210,7794071 -g1,22806:8211502,7794071 -g1,22806:8527648,7794071 -g1,22806:8843794,7794071 -g1,22806:9159940,7794071 -g1,22806:9476086,7794071 -g1,22806:9792232,7794071 -g1,22806:10108378,7794071 -g1,22806:10740670,7794071 -g1,22806:11056816,7794071 -g1,22806:11372962,7794071 -g1,22806:11689108,7794071 -g1,22806:12005254,7794071 -g1,22806:12637546,7794071 -g1,22806:12953692,7794071 -g1,22806:13269838,7794071 -g1,22806:13585984,7794071 -g1,22806:13902130,7794071 -g1,22806:14218276,7794071 -g1,22806:14534422,7794071 -g1,22806:14850568,7794071 -g1,22806:15166714,7794071 -h1,22806:16115151,7794071:0,0,0 -k1,22806:32583029,7794071:16467878 -g1,22806:32583029,7794071 -) -(1,22806:6630773,8460249:25952256,388497,9436 -h1,22806:6630773,8460249:0,0,0 -g1,22806:7579210,8460249 -g1,22806:8211502,8460249 -g1,22806:8527648,8460249 -g1,22806:8843794,8460249 -g1,22806:9159940,8460249 -g1,22806:9476086,8460249 -g1,22806:9792232,8460249 -g1,22806:10108378,8460249 -g1,22806:10740670,8460249 -g1,22806:11056816,8460249 -g1,22806:11372962,8460249 -g1,22806:11689108,8460249 -g1,22806:12005254,8460249 -g1,22806:12637546,8460249 -g1,22806:12953692,8460249 -g1,22806:13269838,8460249 -g1,22806:13585984,8460249 -g1,22806:13902130,8460249 -g1,22806:14218276,8460249 -g1,22806:14534422,8460249 -g1,22806:14850568,8460249 -g1,22806:15166714,8460249 -h1,22806:16115151,8460249:0,0,0 -k1,22806:32583029,8460249:16467878 -g1,22806:32583029,8460249 -) -(1,22806:6630773,9126427:25952256,388497,9436 -h1,22806:6630773,9126427:0,0,0 -g1,22806:7579210,9126427 -g1,22806:8211502,9126427 -g1,22806:8527648,9126427 -g1,22806:8843794,9126427 -g1,22806:9159940,9126427 -g1,22806:9476086,9126427 -g1,22806:9792232,9126427 -g1,22806:10108378,9126427 -g1,22806:10740670,9126427 -g1,22806:11056816,9126427 -g1,22806:11372962,9126427 -g1,22806:11689108,9126427 -g1,22806:12005254,9126427 -g1,22806:12637546,9126427 -g1,22806:12953692,9126427 -g1,22806:13269838,9126427 -g1,22806:13585984,9126427 -g1,22806:13902130,9126427 -g1,22806:14218276,9126427 -g1,22806:14534422,9126427 -g1,22806:14850568,9126427 -g1,22806:15166714,9126427 -h1,22806:16115151,9126427:0,0,0 -k1,22806:32583029,9126427:16467878 -g1,22806:32583029,9126427 -) -(1,22806:6630773,9792605:25952256,388497,9436 -h1,22806:6630773,9792605:0,0,0 -g1,22806:7579210,9792605 -g1,22806:8211502,9792605 -g1,22806:8527648,9792605 -g1,22806:8843794,9792605 -g1,22806:9159940,9792605 -g1,22806:9476086,9792605 -g1,22806:9792232,9792605 -g1,22806:10108378,9792605 -g1,22806:10740670,9792605 -g1,22806:11056816,9792605 -g1,22806:11372962,9792605 -g1,22806:11689108,9792605 -g1,22806:12005254,9792605 -g1,22806:12637546,9792605 -g1,22806:12953692,9792605 -g1,22806:13269838,9792605 -g1,22806:13585984,9792605 -g1,22806:13902130,9792605 -g1,22806:14218276,9792605 -g1,22806:14534422,9792605 -g1,22806:14850568,9792605 -g1,22806:15166714,9792605 -h1,22806:16115151,9792605:0,0,0 -k1,22806:32583029,9792605:16467878 -g1,22806:32583029,9792605 -) -(1,22806:6630773,10458783:25952256,404226,9436 -h1,22806:6630773,10458783:0,0,0 -g1,22806:7579210,10458783 -g1,22806:8211502,10458783 -g1,22806:8527648,10458783 -g1,22806:8843794,10458783 -g1,22806:9159940,10458783 -g1,22806:9476086,10458783 -g1,22806:9792232,10458783 -g1,22806:10108378,10458783 -g1,22806:10740670,10458783 -g1,22806:11056816,10458783 -g1,22806:11372962,10458783 -g1,22806:11689108,10458783 -g1,22806:12005254,10458783 -g1,22806:12637546,10458783 -g1,22806:12953692,10458783 -g1,22806:13269838,10458783 -g1,22806:13585984,10458783 -g1,22806:13902130,10458783 -g1,22806:14218276,10458783 -g1,22806:14534422,10458783 -g1,22806:14850568,10458783 -g1,22806:15166714,10458783 -h1,22806:16115151,10458783:0,0,0 -k1,22806:32583029,10458783:16467878 -g1,22806:32583029,10458783 -) -(1,22806:6630773,11124961:25952256,404226,9436 -h1,22806:6630773,11124961:0,0,0 -g1,22806:7579210,11124961 -g1,22806:8211502,11124961 -g1,22806:8527648,11124961 -g1,22806:8843794,11124961 -g1,22806:9159940,11124961 -g1,22806:9476086,11124961 -g1,22806:9792232,11124961 -g1,22806:10108378,11124961 -g1,22806:10740670,11124961 -g1,22806:11056816,11124961 -g1,22806:11372962,11124961 -g1,22806:11689108,11124961 -g1,22806:12005254,11124961 -g1,22806:12637546,11124961 -g1,22806:12953692,11124961 -g1,22806:13269838,11124961 -g1,22806:13585984,11124961 -g1,22806:13902130,11124961 -g1,22806:14218276,11124961 -g1,22806:14534422,11124961 -g1,22806:14850568,11124961 -g1,22806:15166714,11124961 -h1,22806:16115151,11124961:0,0,0 -k1,22806:32583029,11124961:16467878 -g1,22806:32583029,11124961 -) -(1,22806:6630773,11791139:25952256,404226,9436 -h1,22806:6630773,11791139:0,0,0 -g1,22806:7579210,11791139 -g1,22806:8211502,11791139 -g1,22806:8527648,11791139 -g1,22806:8843794,11791139 -g1,22806:9159940,11791139 -g1,22806:9476086,11791139 -g1,22806:9792232,11791139 -g1,22806:10108378,11791139 -g1,22806:10740670,11791139 -g1,22806:11056816,11791139 -g1,22806:11372962,11791139 -g1,22806:11689108,11791139 -g1,22806:12005254,11791139 -g1,22806:12637546,11791139 -g1,22806:12953692,11791139 -g1,22806:13269838,11791139 -g1,22806:13585984,11791139 -g1,22806:13902130,11791139 -g1,22806:14218276,11791139 -g1,22806:14534422,11791139 -g1,22806:14850568,11791139 -g1,22806:15166714,11791139 -h1,22806:16115151,11791139:0,0,0 -k1,22806:32583029,11791139:16467878 -g1,22806:32583029,11791139 -) -(1,22806:6630773,12457317:25952256,404226,9436 -h1,22806:6630773,12457317:0,0,0 -g1,22806:7579210,12457317 -g1,22806:8211502,12457317 -g1,22806:8527648,12457317 -g1,22806:8843794,12457317 -g1,22806:9159940,12457317 -g1,22806:9476086,12457317 -g1,22806:9792232,12457317 -g1,22806:10108378,12457317 -g1,22806:10740670,12457317 -g1,22806:11056816,12457317 -g1,22806:11372962,12457317 -g1,22806:11689108,12457317 -g1,22806:12005254,12457317 -g1,22806:12637546,12457317 -g1,22806:12953692,12457317 -g1,22806:13269838,12457317 -g1,22806:13585984,12457317 -g1,22806:13902130,12457317 -g1,22806:14218276,12457317 -g1,22806:14534422,12457317 -g1,22806:14850568,12457317 -g1,22806:15166714,12457317 -h1,22806:16115151,12457317:0,0,0 -k1,22806:32583029,12457317:16467878 -g1,22806:32583029,12457317 -) -(1,22806:6630773,13123495:25952256,404226,9436 -h1,22806:6630773,13123495:0,0,0 -g1,22806:7579210,13123495 -g1,22806:8527647,13123495 -g1,22806:8843793,13123495 -g1,22806:9159939,13123495 -g1,22806:9476085,13123495 -g1,22806:9792231,13123495 -g1,22806:10740668,13123495 -g1,22806:11056814,13123495 -g1,22806:11372960,13123495 -g1,22806:11689106,13123495 -g1,22806:12005252,13123495 -g1,22806:12637544,13123495 -g1,22806:12953690,13123495 -g1,22806:13269836,13123495 -g1,22806:13585982,13123495 -g1,22806:13902128,13123495 -g1,22806:14218274,13123495 -g1,22806:14534420,13123495 -g1,22806:14850566,13123495 -g1,22806:15166712,13123495 -h1,22806:16115149,13123495:0,0,0 -k1,22806:32583029,13123495:16467880 -g1,22806:32583029,13123495 -) -] -) -g1,22807:32583029,13132931 -g1,22807:6630773,13132931 -g1,22807:6630773,13132931 -g1,22807:32583029,13132931 -g1,22807:32583029,13132931 -) -h1,22807:6630773,13329539:0,0,0 -(1,22811:6630773,14695315:25952256,513147,115847 -h1,22810:6630773,14695315:983040,0,0 -k1,22810:9313040,14695315:220079 -k1,22810:12228616,14695315:220080 -(1,22810:12228616,14695315:0,452978,115847 -r1,22843:16455712,14695315:4227096,568825,115847 -k1,22810:12228616,14695315:-4227096 -) -(1,22810:12228616,14695315:4227096,452978,115847 -k1,22810:12228616,14695315:3277 -h1,22810:16452435,14695315:0,411205,112570 -) -k1,22810:16675791,14695315:220079 -k1,22810:17764223,14695315:220080 -k1,22810:19088584,14695315:220079 -k1,22810:20923471,14695315:220080 -k1,22810:22532913,14695315:220079 -k1,22810:24959590,14695315:220080 -k1,22810:26245940,14695315:220079 -k1,22810:27117448,14695315:220080 -k1,22810:28959543,14695315:220079 -k1,22810:32583029,14695315:0 -) -(1,22811:6630773,15536803:25952256,505283,134348 -g1,22810:8021447,15536803 -g1,22810:9687372,15536803 -g1,22810:12266869,15536803 -g1,22810:13749293,15536803 -g1,22810:17572008,15536803 -g1,22810:18422665,15536803 -g1,22810:19392597,15536803 -g1,22810:22082849,15536803 -k1,22811:32583029,15536803:7148013 -g1,22811:32583029,15536803 -) -v1,22813:6630773,16727269:0,393216,0 -(1,22825:6630773,22365498:25952256,6031445,196608 -g1,22825:6630773,22365498 -g1,22825:6630773,22365498 -g1,22825:6434165,22365498 -(1,22825:6434165,22365498:0,6031445,196608 -r1,22843:32779637,22365498:26345472,6228053,196608 -k1,22825:6434165,22365498:-26345472 -) -(1,22825:6434165,22365498:26345472,6031445,196608 -[1,22825:6630773,22365498:25952256,5834837,0 -(1,22815:6630773,16934887:25952256,404226,76021 -(1,22814:6630773,16934887:0,0,0 -g1,22814:6630773,16934887 -g1,22814:6630773,16934887 -g1,22814:6303093,16934887 -(1,22814:6303093,16934887:0,0,0 -) -g1,22814:6630773,16934887 -) -k1,22815:6630773,16934887:0 -h1,22815:11689104,16934887:0,0,0 -k1,22815:32583028,16934887:20893924 -g1,22815:32583028,16934887 -) -(1,22816:6630773,17601065:25952256,410518,101187 -h1,22816:6630773,17601065:0,0,0 -g1,22816:9159939,17601065 -g1,22816:10108377,17601065 -g1,22816:14218272,17601065 -g1,22816:14850564,17601065 -g1,22816:16747439,17601065 -g1,22816:17379731,17601065 -g1,22816:18012023,17601065 -h1,22816:22438062,17601065:0,0,0 -k1,22816:32583029,17601065:10144967 -g1,22816:32583029,17601065 -) -(1,22817:6630773,18267243:25952256,404226,101187 -h1,22817:6630773,18267243:0,0,0 -k1,22817:6630773,18267243:0 -h1,22817:12637541,18267243:0,0,0 -k1,22817:32583029,18267243:19945488 -g1,22817:32583029,18267243 -) -(1,22818:6630773,18933421:25952256,410518,101187 -h1,22818:6630773,18933421:0,0,0 -g1,22818:6946919,18933421 -g1,22818:7263065,18933421 -g1,22818:7579211,18933421 -g1,22818:7895357,18933421 -g1,22818:8211503,18933421 -g1,22818:8527649,18933421 -g1,22818:8843795,18933421 -g1,22818:9159941,18933421 -g1,22818:9476087,18933421 -g1,22818:9792233,18933421 -g1,22818:10108379,18933421 -g1,22818:11689108,18933421 -g1,22818:12321400,18933421 -k1,22818:12321400,18933421:0 -h1,22818:19592750,18933421:0,0,0 -k1,22818:32583029,18933421:12990279 -g1,22818:32583029,18933421 -) -(1,22819:6630773,19599599:25952256,410518,101187 -h1,22819:6630773,19599599:0,0,0 -g1,22819:6946919,19599599 -g1,22819:7263065,19599599 -g1,22819:7579211,19599599 -g1,22819:7895357,19599599 -g1,22819:8211503,19599599 -g1,22819:8527649,19599599 -g1,22819:8843795,19599599 -g1,22819:9159941,19599599 -g1,22819:9476087,19599599 -g1,22819:9792233,19599599 -g1,22819:10108379,19599599 -g1,22819:13269836,19599599 -g1,22819:13902128,19599599 -g1,22819:16115148,19599599 -h1,22819:18012022,19599599:0,0,0 -k1,22819:32583029,19599599:14571007 -g1,22819:32583029,19599599 -) -(1,22820:6630773,20265777:25952256,404226,101187 -h1,22820:6630773,20265777:0,0,0 -k1,22820:6630773,20265777:0 -h1,22820:12637541,20265777:0,0,0 -k1,22820:32583029,20265777:19945488 -g1,22820:32583029,20265777 -) -(1,22821:6630773,20931955:25952256,410518,101187 -h1,22821:6630773,20931955:0,0,0 -g1,22821:6946919,20931955 -g1,22821:7263065,20931955 -g1,22821:7579211,20931955 -g1,22821:7895357,20931955 -g1,22821:8211503,20931955 -g1,22821:8527649,20931955 -g1,22821:8843795,20931955 -g1,22821:9159941,20931955 -g1,22821:9476087,20931955 -g1,22821:9792233,20931955 -g1,22821:10108379,20931955 -g1,22821:11689108,20931955 -g1,22821:12321400,20931955 -k1,22821:12321400,20931955:0 -h1,22821:19592750,20931955:0,0,0 -k1,22821:32583029,20931955:12990279 -g1,22821:32583029,20931955 -) -(1,22822:6630773,21598133:25952256,404226,101187 -h1,22822:6630773,21598133:0,0,0 -g1,22822:6946919,21598133 -g1,22822:7263065,21598133 -g1,22822:7579211,21598133 -g1,22822:7895357,21598133 -g1,22822:8211503,21598133 -g1,22822:8527649,21598133 -g1,22822:8843795,21598133 -g1,22822:9159941,21598133 -g1,22822:9476087,21598133 -g1,22822:9792233,21598133 -g1,22822:10108379,21598133 -g1,22822:13269836,21598133 -g1,22822:13902128,21598133 -g1,22822:16431294,21598133 -k1,22822:16431294,21598133:0 -h1,22822:18328168,21598133:0,0,0 -k1,22822:32583029,21598133:14254861 -g1,22822:32583029,21598133 -) -(1,22823:6630773,22264311:25952256,404226,101187 -h1,22823:6630773,22264311:0,0,0 -g1,22823:6946919,22264311 -g1,22823:7263065,22264311 -g1,22823:7579211,22264311 -g1,22823:7895357,22264311 -g1,22823:8211503,22264311 -g1,22823:8527649,22264311 -g1,22823:8843795,22264311 -g1,22823:9159941,22264311 -g1,22823:9476087,22264311 -g1,22823:9792233,22264311 -g1,22823:10108379,22264311 -g1,22823:12321399,22264311 -g1,22823:12953691,22264311 -h1,22823:14534420,22264311:0,0,0 -k1,22823:32583028,22264311:18048608 -g1,22823:32583028,22264311 -) -] -) -g1,22825:32583029,22365498 -g1,22825:6630773,22365498 -g1,22825:6630773,22365498 -g1,22825:32583029,22365498 -g1,22825:32583029,22365498 -) -h1,22825:6630773,22562106:0,0,0 -(1,22830:6630773,23927882:25952256,505283,134348 -h1,22828:6630773,23927882:983040,0,0 -k1,22828:9629522,23927882:232474 -k1,22828:12207530,23927882:232474 -k1,22828:13056042,23927882:232474 -k1,22828:15084202,23927882:232474 -k1,22828:16185028,23927882:232474 -k1,22828:17395955,23927882:232474 -k1,22828:17984289,23927882:232474 -k1,22828:21395259,23927882:232474 -k1,22828:24989730,23927882:232474 -k1,22828:26394643,23927882:232474 -k1,22828:30424273,23927882:232474 -k1,22828:32583029,23927882:0 -) -(1,22830:6630773,24769370:25952256,505283,134348 -g1,22828:8565395,24769370 -g1,22828:9783709,24769370 -g1,22828:13385567,24769370 -g1,22828:14453148,24769370 -g1,22828:16857664,24769370 -g1,22828:19615419,24769370 -(1,22828:19615419,24769370:0,452978,115847 -r1,22843:22787379,24769370:3171960,568825,115847 -k1,22828:19615419,24769370:-3171960 -) -(1,22828:19615419,24769370:3171960,452978,115847 -k1,22828:19615419,24769370:3277 -h1,22828:22784102,24769370:0,411205,112570 -) -g1,22828:22986608,24769370 -g1,22828:23801875,24769370 -g1,22828:25020189,24769370 -g1,22828:26715605,24769370 -g1,22828:28885502,24769370 -k1,22830:32583029,24769370:1668532 -g1,22830:32583029,24769370 -) -(1,22832:6630773,40926592:25952256,15433050,0 -k1,22832:9874805,40926592:3244032 -(1,22830:9874805,40926592:0,0,0 -g1,22830:9874805,40926592 -g1,22830:9874805,40926592 -g1,22830:9547125,40926592 -(1,22830:9547125,40926592:0,0,0 -) -g1,22830:9874805,40926592 -) -(1,22831:9874805,40926592:19464192,15433050,0 -) -g1,22832:29338997,40926592 -k1,22832:32583029,40926592:3244032 -) -v1,22835:6630773,42292368:0,393216,0 -(1,22836:6630773,44534365:25952256,2635213,0 -g1,22836:6630773,44534365 -g1,22836:6303093,44534365 -r1,22843:6401397,44534365:98304,2635213,0 -g1,22836:6600626,44534365 -g1,22836:6797234,44534365 -[1,22836:6797234,44534365:25785795,2635213,0 -(1,22836:6797234,42724906:25785795,825754,196608 -(1,22835:6797234,42724906:0,825754,196608 -r1,22843:7890375,42724906:1093141,1022362,196608 -k1,22835:6797234,42724906:-1093141 -) -(1,22835:6797234,42724906:1093141,825754,196608 -) -k1,22835:8124644,42724906:234269 -k1,22835:10259152,42724906:327680 -k1,22835:10971177,42724906:234268 -k1,22835:12375919,42724906:234269 -k1,22835:14085402,42724906:234268 -k1,22835:16011811,42724906:234269 -k1,22835:19539263,42724906:234268 -k1,22835:21086874,42724906:234269 -k1,22835:24278782,42724906:234268 -k1,22835:26694745,42724906:234269 -k1,22835:28568069,42724906:234269 -k1,22835:30069803,42724906:234268 -k1,22835:30718879,42724906:234233 -k1,22835:31604576,42724906:234269 -k1,22835:32583029,42724906:0 -) -(1,22836:6797234,43566394:25785795,513147,134348 -k1,22835:7381247,43566394:228153 -k1,22835:8773974,43566394:228152 -k1,22835:9949778,43566394:228153 -k1,22835:11508311,43566394:228152 -k1,22835:12755549,43566394:228153 -k1,22835:14221677,43566394:228153 -k1,22835:15065867,43566394:228152 -k1,22835:17179491,43566394:228153 -k1,22835:18797006,43566394:228152 -k1,22835:19556656,43566394:228153 -k1,22835:22971825,43566394:228153 -k1,22835:23816015,43566394:228152 -k1,22835:25063253,43566394:228153 -k1,22835:28914891,43566394:228152 -k1,22835:31252648,43566394:228153 -k1,22835:32583029,43566394:0 -) -(1,22836:6797234,44407882:25785795,513147,126483 -g1,22835:8391069,44407882 -g1,22835:9273183,44407882 -g1,22835:11956227,44407882 -g1,22835:12613553,44407882 -g1,22835:13344279,44407882 -g1,22835:14194936,44407882 -g1,22835:16575859,44407882 -g1,22835:18414143,44407882 -g1,22835:19880838,44407882 -k1,22836:32583029,44407882:12113678 -g1,22836:32583029,44407882 -) -] -g1,22836:32583029,44534365 -) -h1,22836:6630773,44534365:0,0,0 -] -(1,22843:32583029,45706769:0,0,0 -g1,22843:32583029,45706769 -) -) -] -(1,22843:6630773,47279633:25952256,0,0 -h1,22843:6630773,47279633:25952256,0,0 -) -] -(1,22843:4262630,4025873:0,0,0 -[1,22843:-473656,4025873:0,0,0 -(1,22843:-473656,-710413:0,0,0 -(1,22843:-473656,-710413:0,0,0 -g1,22843:-473656,-710413 -) -g1,22843:-473656,-710413 -) -] -) -] -!21085 -}415 -Input:3685:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3686:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3687:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!30616 +}397 +Input:3723:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3724:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3725:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !294 -{416 -[1,22905:4262630,47279633:28320399,43253760,0 -(1,22905:4262630,4025873:0,0,0 -[1,22905:-473656,4025873:0,0,0 -(1,22905:-473656,-710413:0,0,0 -(1,22905:-473656,-644877:0,0,0 -k1,22905:-473656,-644877:-65536 +{398 +[1,23079:4262630,47279633:28320399,43253760,0 +(1,23079:4262630,4025873:0,0,0 +[1,23079:-473656,4025873:0,0,0 +(1,23079:-473656,-710413:0,0,0 +(1,23079:-473656,-644877:0,0,0 +k1,23079:-473656,-644877:-65536 ) -(1,22905:-473656,4736287:0,0,0 -k1,22905:-473656,4736287:5209943 +(1,23079:-473656,4736287:0,0,0 +k1,23079:-473656,4736287:5209943 ) -g1,22905:-473656,-710413 +g1,23079:-473656,-710413 ) ] ) -[1,22905:6630773,47279633:25952256,43253760,0 -[1,22905:6630773,4812305:25952256,786432,0 -(1,22905:6630773,4812305:25952256,513147,126483 -(1,22905:6630773,4812305:25952256,513147,126483 -g1,22905:3078558,4812305 -[1,22905:3078558,4812305:0,0,0 -(1,22905:3078558,2439708:0,1703936,0 -k1,22905:1358238,2439708:-1720320 -(1,21457:1358238,2439708:1720320,1703936,0 -(1,21457:1358238,2439708:1179648,16384,0 -r1,22905:2537886,2439708:1179648,16384,0 +[1,23079:6630773,47279633:25952256,43253760,0 +[1,23079:6630773,4812305:25952256,786432,0 +(1,23079:6630773,4812305:25952256,505283,11795 +(1,23079:6630773,4812305:25952256,505283,11795 +g1,23079:3078558,4812305 +[1,23079:3078558,4812305:0,0,0 +(1,23079:3078558,2439708:0,1703936,0 +k1,23079:1358238,2439708:-1720320 +(1,21670:1358238,2439708:1720320,1703936,0 +(1,21670:1358238,2439708:1179648,16384,0 +r1,23079:2537886,2439708:1179648,16384,0 ) -g1,21457:3062174,2439708 -(1,21457:3062174,2439708:16384,1703936,0 -[1,21457:3062174,2439708:25952256,1703936,0 -(1,21457:3062174,1915420:25952256,1179648,0 -(1,21457:3062174,1915420:16384,1179648,0 -r1,22905:3078558,1915420:16384,1179648,0 +g1,21670:3062174,2439708 +(1,21670:3062174,2439708:16384,1703936,0 +[1,21670:3062174,2439708:25952256,1703936,0 +(1,21670:3062174,1915420:25952256,1179648,0 +(1,21670:3062174,1915420:16384,1179648,0 +r1,23079:3078558,1915420:16384,1179648,0 ) -k1,21457:29014430,1915420:25935872 -g1,21457:29014430,1915420 +k1,21670:29014430,1915420:25935872 +g1,21670:29014430,1915420 ) ] ) ) ) ] -[1,22905:3078558,4812305:0,0,0 -(1,22905:3078558,2439708:0,1703936,0 -g1,22905:29030814,2439708 -g1,22905:36135244,2439708 -(1,21457:36135244,2439708:1720320,1703936,0 -(1,21457:36135244,2439708:16384,1703936,0 -[1,21457:36135244,2439708:25952256,1703936,0 -(1,21457:36135244,1915420:25952256,1179648,0 -(1,21457:36135244,1915420:16384,1179648,0 -r1,22905:36151628,1915420:16384,1179648,0 +[1,23079:3078558,4812305:0,0,0 +(1,23079:3078558,2439708:0,1703936,0 +g1,23079:29030814,2439708 +g1,23079:36135244,2439708 +(1,21670:36135244,2439708:1720320,1703936,0 +(1,21670:36135244,2439708:16384,1703936,0 +[1,21670:36135244,2439708:25952256,1703936,0 +(1,21670:36135244,1915420:25952256,1179648,0 +(1,21670:36135244,1915420:16384,1179648,0 +r1,23079:36151628,1915420:16384,1179648,0 ) -k1,21457:62087500,1915420:25935872 -g1,21457:62087500,1915420 +k1,21670:62087500,1915420:25935872 +g1,21670:62087500,1915420 ) ] ) -g1,21457:36675916,2439708 -(1,21457:36675916,2439708:1179648,16384,0 -r1,22905:37855564,2439708:1179648,16384,0 +g1,21670:36675916,2439708 +(1,21670:36675916,2439708:1179648,16384,0 +r1,23079:37855564,2439708:1179648,16384,0 ) ) -k1,22905:3078556,2439708:-34777008 +k1,23079:3078556,2439708:-34777008 ) ] -[1,22905:3078558,4812305:0,0,0 -(1,22905:3078558,49800853:0,16384,2228224 -k1,22905:1358238,49800853:-1720320 -(1,21457:1358238,49800853:1720320,16384,2228224 -(1,21457:1358238,49800853:1179648,16384,0 -r1,22905:2537886,49800853:1179648,16384,0 +[1,23079:3078558,4812305:0,0,0 +(1,23079:3078558,49800853:0,16384,2228224 +k1,23079:1358238,49800853:-1720320 +(1,21670:1358238,49800853:1720320,16384,2228224 +(1,21670:1358238,49800853:1179648,16384,0 +r1,23079:2537886,49800853:1179648,16384,0 ) -g1,21457:3062174,49800853 -(1,21457:3062174,52029077:16384,1703936,0 -[1,21457:3062174,52029077:25952256,1703936,0 -(1,21457:3062174,51504789:25952256,1179648,0 -(1,21457:3062174,51504789:16384,1179648,0 -r1,22905:3078558,51504789:16384,1179648,0 +g1,21670:3062174,49800853 +(1,21670:3062174,52029077:16384,1703936,0 +[1,21670:3062174,52029077:25952256,1703936,0 +(1,21670:3062174,51504789:25952256,1179648,0 +(1,21670:3062174,51504789:16384,1179648,0 +r1,23079:3078558,51504789:16384,1179648,0 ) -k1,21457:29014430,51504789:25935872 -g1,21457:29014430,51504789 +k1,21670:29014430,51504789:25935872 +g1,21670:29014430,51504789 ) ] ) ) ) ] -[1,22905:3078558,4812305:0,0,0 -(1,22905:3078558,49800853:0,16384,2228224 -g1,22905:29030814,49800853 -g1,22905:36135244,49800853 -(1,21457:36135244,49800853:1720320,16384,2228224 -(1,21457:36135244,52029077:16384,1703936,0 -[1,21457:36135244,52029077:25952256,1703936,0 -(1,21457:36135244,51504789:25952256,1179648,0 -(1,21457:36135244,51504789:16384,1179648,0 -r1,22905:36151628,51504789:16384,1179648,0 +[1,23079:3078558,4812305:0,0,0 +(1,23079:3078558,49800853:0,16384,2228224 +g1,23079:29030814,49800853 +g1,23079:36135244,49800853 +(1,21670:36135244,49800853:1720320,16384,2228224 +(1,21670:36135244,52029077:16384,1703936,0 +[1,21670:36135244,52029077:25952256,1703936,0 +(1,21670:36135244,51504789:25952256,1179648,0 +(1,21670:36135244,51504789:16384,1179648,0 +r1,23079:36151628,51504789:16384,1179648,0 +) +k1,21670:62087500,51504789:25935872 +g1,21670:62087500,51504789 +) +] +) +g1,21670:36675916,49800853 +(1,21670:36675916,49800853:1179648,16384,0 +r1,23079:37855564,49800853:1179648,16384,0 +) +) +k1,23079:3078556,49800853:-34777008 +) +] +g1,23079:6630773,4812305 +g1,23079:6630773,4812305 +g1,23079:10349285,4812305 +k1,23079:31387653,4812305:21038368 +) +) +] +[1,23079:6630773,45706769:25952256,40108032,0 +(1,23079:6630773,45706769:25952256,40108032,0 +(1,23079:6630773,45706769:0,0,0 +g1,23079:6630773,45706769 +) +[1,23079:6630773,45706769:25952256,40108032,0 +v1,23026:6630773,6254097:0,393216,0 +(1,23038:6630773,12067014:25952256,6206133,196608 +g1,23038:6630773,12067014 +g1,23038:6630773,12067014 +g1,23038:6434165,12067014 +(1,23038:6434165,12067014:0,6206133,196608 +r1,23079:32779637,12067014:26345472,6402741,196608 +k1,23038:6434165,12067014:-26345472 +) +(1,23038:6434165,12067014:26345472,6206133,196608 +[1,23038:6630773,12067014:25952256,6009525,0 +(1,23028:6630773,6481928:25952256,424439,79822 +(1,23027:6630773,6481928:0,0,0 +g1,23027:6630773,6481928 +g1,23027:6630773,6481928 +g1,23027:6303093,6481928 +(1,23027:6303093,6481928:0,0,0 +) +g1,23027:6630773,6481928 +) +k1,23028:6630773,6481928:0 +h1,23028:11942036,6481928:0,0,0 +k1,23028:32583028,6481928:20640992 +g1,23028:32583028,6481928 +) +(1,23029:6630773,7166783:25952256,431045,106246 +h1,23029:6630773,7166783:0,0,0 +g1,23029:9286405,7166783 +g1,23029:10282267,7166783 +g1,23029:14597668,7166783 +g1,23029:15261576,7166783 +g1,23029:17253300,7166783 +g1,23029:17917208,7166783 +g1,23029:18581116,7166783 +h1,23029:23228471,7166783:0,0,0 +k1,23029:32583029,7166783:9354558 +g1,23029:32583029,7166783 +) +(1,23030:6630773,7851638:25952256,424439,106246 +h1,23030:6630773,7851638:0,0,0 +k1,23030:6630773,7851638:0 +h1,23030:12937897,7851638:0,0,0 +k1,23030:32583029,7851638:19645132 +g1,23030:32583029,7851638 +) +(1,23031:6630773,8536493:25952256,431045,106246 +h1,23031:6630773,8536493:0,0,0 +g1,23031:6962727,8536493 +g1,23031:7294681,8536493 +g1,23031:7626635,8536493 +g1,23031:7958589,8536493 +g1,23031:8290543,8536493 +g1,23031:8622497,8536493 +g1,23031:8954451,8536493 +g1,23031:9286405,8536493 +g1,23031:9618359,8536493 +g1,23031:9950313,8536493 +g1,23031:10282267,8536493 +g1,23031:11942037,8536493 +g1,23031:12605945,8536493 +k1,23031:12605945,8536493:0 +h1,23031:20240885,8536493:0,0,0 +k1,23031:32583029,8536493:12342144 +g1,23031:32583029,8536493 +) +(1,23032:6630773,9221348:25952256,431045,106246 +h1,23032:6630773,9221348:0,0,0 +g1,23032:6962727,9221348 +g1,23032:7294681,9221348 +g1,23032:7626635,9221348 +g1,23032:7958589,9221348 +g1,23032:8290543,9221348 +g1,23032:8622497,9221348 +g1,23032:8954451,9221348 +g1,23032:9286405,9221348 +g1,23032:9618359,9221348 +g1,23032:9950313,9221348 +g1,23032:10282267,9221348 +g1,23032:13601806,9221348 +g1,23032:14265714,9221348 +g1,23032:16589392,9221348 +h1,23032:18581116,9221348:0,0,0 +k1,23032:32583029,9221348:14001913 +g1,23032:32583029,9221348 +) +(1,23033:6630773,9906203:25952256,424439,106246 +h1,23033:6630773,9906203:0,0,0 +k1,23033:6630773,9906203:0 +h1,23033:12937897,9906203:0,0,0 +k1,23033:32583029,9906203:19645132 +g1,23033:32583029,9906203 +) +(1,23034:6630773,10591058:25952256,431045,106246 +h1,23034:6630773,10591058:0,0,0 +g1,23034:6962727,10591058 +g1,23034:7294681,10591058 +g1,23034:7626635,10591058 +g1,23034:7958589,10591058 +g1,23034:8290543,10591058 +g1,23034:8622497,10591058 +g1,23034:8954451,10591058 +g1,23034:9286405,10591058 +g1,23034:9618359,10591058 +g1,23034:9950313,10591058 +g1,23034:10282267,10591058 +g1,23034:11942037,10591058 +g1,23034:12605945,10591058 +k1,23034:12605945,10591058:0 +h1,23034:20240885,10591058:0,0,0 +k1,23034:32583029,10591058:12342144 +g1,23034:32583029,10591058 +) +(1,23035:6630773,11275913:25952256,424439,106246 +h1,23035:6630773,11275913:0,0,0 +g1,23035:6962727,11275913 +g1,23035:7294681,11275913 +g1,23035:7626635,11275913 +g1,23035:7958589,11275913 +g1,23035:8290543,11275913 +g1,23035:8622497,11275913 +g1,23035:8954451,11275913 +g1,23035:9286405,11275913 +g1,23035:9618359,11275913 +g1,23035:9950313,11275913 +g1,23035:10282267,11275913 +g1,23035:13601806,11275913 +g1,23035:14265714,11275913 +g1,23035:16921346,11275913 +k1,23035:16921346,11275913:0 +h1,23035:18913070,11275913:0,0,0 +k1,23035:32583029,11275913:13669959 +g1,23035:32583029,11275913 +) +(1,23036:6630773,11960768:25952256,424439,106246 +h1,23036:6630773,11960768:0,0,0 +g1,23036:6962727,11960768 +g1,23036:7294681,11960768 +g1,23036:7626635,11960768 +g1,23036:7958589,11960768 +g1,23036:8290543,11960768 +g1,23036:8622497,11960768 +g1,23036:8954451,11960768 +g1,23036:9286405,11960768 +g1,23036:9618359,11960768 +g1,23036:9950313,11960768 +g1,23036:10282267,11960768 +g1,23036:12605945,11960768 +g1,23036:13269853,11960768 +h1,23036:14929623,11960768:0,0,0 +k1,23036:32583029,11960768:17653406 +g1,23036:32583029,11960768 +) +] +) +g1,23038:32583029,12067014 +g1,23038:6630773,12067014 +g1,23038:6630773,12067014 +g1,23038:32583029,12067014 +g1,23038:32583029,12067014 +) +h1,23038:6630773,12263622:0,0,0 +(1,23043:6630773,13128702:25952256,505283,134348 +h1,23041:6630773,13128702:983040,0,0 +k1,23041:9629522,13128702:232474 +k1,23041:12207530,13128702:232474 +k1,23041:13056042,13128702:232474 +k1,23041:15084202,13128702:232474 +k1,23041:16185028,13128702:232474 +k1,23041:17395955,13128702:232474 +k1,23041:17984289,13128702:232474 +k1,23041:21395259,13128702:232474 +k1,23041:24989730,13128702:232474 +k1,23041:26394643,13128702:232474 +k1,23041:30424273,13128702:232474 +k1,23041:32583029,13128702:0 +) +(1,23043:6630773,13993782:25952256,505283,134348 +g1,23041:8565395,13993782 +g1,23041:9783709,13993782 +g1,23041:13385567,13993782 +g1,23041:14453148,13993782 +g1,23041:16857664,13993782 +g1,23041:19615419,13993782 +(1,23041:19615419,13993782:0,452978,115847 +r1,23079:22787379,13993782:3171960,568825,115847 +k1,23041:19615419,13993782:-3171960 +) +(1,23041:19615419,13993782:3171960,452978,115847 +k1,23041:19615419,13993782:3277 +h1,23041:22784102,13993782:0,411205,112570 +) +g1,23041:22986608,13993782 +g1,23041:23801875,13993782 +g1,23041:25020189,13993782 +g1,23041:26715605,13993782 +g1,23041:28885502,13993782 +k1,23043:32583029,13993782:1668532 +g1,23043:32583029,13993782 +) +(1,23045:6630773,30151004:25952256,15433050,0 +k1,23045:9874805,30151004:3244032 +(1,23043:9874805,30151004:0,0,0 +g1,23043:9874805,30151004 +g1,23043:9874805,30151004 +g1,23043:9547125,30151004 +(1,23043:9547125,30151004:0,0,0 +) +g1,23043:9874805,30151004 +) +(1,23044:9874805,30151004:19464192,15433050,0 +) +g1,23045:29338997,30151004 +k1,23045:32583029,30151004:3244032 +) +v1,23048:6630773,31540372:0,393216,0 +(1,23049:6630773,33669492:25952256,2522336,0 +g1,23049:6630773,33669492 +g1,23049:6237557,33669492 +r1,23079:6368629,33669492:131072,2522336,0 +g1,23049:6567858,33669492 +g1,23049:6764466,33669492 +[1,23049:6764466,33669492:25818563,2522336,0 +(1,23049:6764466,31812849:25818563,665693,196608 +(1,23048:6764466,31812849:0,665693,196608 +r1,23079:8010564,31812849:1246098,862301,196608 +k1,23048:6764466,31812849:-1246098 +) +(1,23048:6764466,31812849:1246098,665693,196608 +) +k1,23048:8235587,31812849:225023 +k1,23048:10370095,31812849:327680 +k1,23048:11072874,31812849:225022 +k1,23048:12468370,31812849:225023 +k1,23048:14168607,31812849:225022 +k1,23048:16085770,31812849:225023 +k1,23048:19603976,31812849:225022 +k1,23048:21142341,31812849:225023 +k1,23048:24325003,31812849:225022 +k1,23048:26731720,31812849:225023 +k1,23048:28595797,31812849:225022 +k1,23048:30088286,31812849:225023 +k1,23048:30728125,31812849:224996 +k1,23048:31604576,31812849:225023 +k1,23048:32583029,31812849:0 +) +(1,23049:6764466,32677929:25818563,513147,134348 +k1,23048:7350663,32677929:230337 +k1,23048:8745575,32677929:230337 +k1,23048:9923563,32677929:230337 +k1,23048:11484282,32677929:230338 +k1,23048:12733704,32677929:230337 +k1,23048:14202016,32677929:230337 +k1,23048:15048391,32677929:230337 +k1,23048:17164199,32677929:230337 +k1,23048:18783899,32677929:230337 +k1,23048:19545733,32677929:230337 +k1,23048:22963086,32677929:230337 +k1,23048:23809462,32677929:230338 +k1,23048:25058884,32677929:230337 +k1,23048:28912707,32677929:230337 +k1,23048:31252648,32677929:230337 +k1,23048:32583029,32677929:0 +) +(1,23049:6764466,33543009:25818563,513147,126483 +g1,23048:8358301,33543009 +g1,23048:9240415,33543009 +g1,23048:11923459,33543009 +g1,23048:12580785,33543009 +g1,23048:13311511,33543009 +g1,23048:14162168,33543009 +g1,23048:16543091,33543009 +g1,23048:18381375,33543009 +g1,23048:19848070,33543009 +k1,23049:32583029,33543009:12146446 +g1,23049:32583029,33543009 +) +] +g1,23049:32583029,33669492 +) +h1,23049:6630773,33669492:0,0,0 +(1,23052:6630773,35786310:25952256,555811,12975 +(1,23052:6630773,35786310:2899444,534184,12975 +g1,23052:6630773,35786310 +g1,23052:9530217,35786310 +) +k1,23052:32583029,35786310:19442566 +g1,23052:32583029,35786310 +) +(1,23056:6630773,37044606:25952256,513147,134348 +k1,23055:9417786,37044606:252080 +k1,23055:12778185,37044606:252027 +k1,23055:15790641,37044606:252080 +k1,23055:19068518,37044606:252080 +k1,23055:20268249,37044606:252080 +k1,23055:22922879,37044606:252080 +k1,23055:24564322,37044606:252080 +k1,23055:26627817,37044606:252080 +k1,23055:27495935,37044606:252080 +k1,23055:29061357,37044606:252080 +k1,23055:30597943,37044606:252080 +k1,23055:32583029,37044606:0 +) +(1,23056:6630773,37909686:25952256,505283,126483 +k1,23055:7818244,37909686:168386 +k1,23055:9651244,37909686:168386 +k1,23055:13315976,37909686:168386 +k1,23055:16565864,37909686:168386 +k1,23055:19524118,37909686:168386 +(1,23055:19524118,37909686:0,452978,115847 +r1,23079:23047790,37909686:3523672,568825,115847 +k1,23055:19524118,37909686:-3523672 +) +(1,23055:19524118,37909686:3523672,452978,115847 +k1,23055:19524118,37909686:3277 +h1,23055:23044513,37909686:0,411205,112570 +) +k1,23055:23216175,37909686:168385 +k1,23055:24485566,37909686:168386 +k1,23055:25009812,37909686:168386 +k1,23055:27380208,37909686:168386 +k1,23055:28620763,37909686:168386 +k1,23055:31202185,37909686:168386 +k1,23055:32583029,37909686:0 +) +(1,23056:6630773,38774766:25952256,513147,126483 +k1,23055:9628640,38774766:187683 +k1,23055:10467751,38774766:187683 +k1,23055:11939940,38774766:187683 +k1,23055:12794780,38774766:187684 +(1,23055:12794780,38774766:0,452978,115847 +r1,23079:17021876,38774766:4227096,568825,115847 +k1,23055:12794780,38774766:-4227096 +) +(1,23055:12794780,38774766:4227096,452978,115847 +k1,23055:12794780,38774766:3277 +h1,23055:17018599,38774766:0,411205,112570 +) +k1,23055:17209559,38774766:187683 +k1,23055:18588687,38774766:187683 +k1,23055:20518972,38774766:187683 +k1,23055:21863365,38774766:187683 +k1,23055:25344232,38774766:187683 +k1,23055:26144678,38774766:187684 +k1,23055:26688221,38774766:187683 +k1,23055:28474982,38774766:187683 +k1,23055:30056616,38774766:187683 +k1,23055:32583029,38774766:0 +) +(1,23056:6630773,39639846:25952256,513147,134348 +g1,23055:8205603,39639846 +g1,23055:9352483,39639846 +g1,23055:12307501,39639846 +g1,23055:13578899,39639846 +g1,23055:15485996,39639846 +g1,23055:16881912,39639846 +g1,23055:18761484,39639846 +g1,23055:21739440,39639846 +g1,23055:22470166,39639846 +g1,23055:23025255,39639846 +g1,23055:24613847,39639846 +k1,23056:32583029,39639846:5919216 +g1,23056:32583029,39639846 +) +v1,23058:6630773,40324701:0,393216,0 +(1,23062:6630773,40645566:25952256,714081,196608 +g1,23062:6630773,40645566 +g1,23062:6630773,40645566 +g1,23062:6434165,40645566 +(1,23062:6434165,40645566:0,714081,196608 +r1,23079:32779637,40645566:26345472,910689,196608 +k1,23062:6434165,40645566:-26345472 +) +(1,23062:6434165,40645566:26345472,714081,196608 +[1,23062:6630773,40645566:25952256,517473,0 +(1,23060:6630773,40559138:25952256,431045,86428 +(1,23059:6630773,40559138:0,0,0 +g1,23059:6630773,40559138 +g1,23059:6630773,40559138 +g1,23059:6303093,40559138 +(1,23059:6303093,40559138:0,0,0 +) +g1,23059:6630773,40559138 +) +g1,23060:8954451,40559138 +g1,23060:9950313,40559138 +g1,23060:19908930,40559138 +g1,23060:21900654,40559138 +g1,23060:22564562,40559138 +h1,23060:23228470,40559138:0,0,0 +k1,23060:32583029,40559138:9354559 +g1,23060:32583029,40559138 +) +] +) +g1,23062:32583029,40645566 +g1,23062:6630773,40645566 +g1,23062:6630773,40645566 +g1,23062:32583029,40645566 +g1,23062:32583029,40645566 +) +h1,23062:6630773,40842174:0,0,0 +v1,23066:6630773,41527029:0,393216,0 +(1,23079:6630773,45326721:25952256,4192908,196608 +g1,23079:6630773,45326721 +g1,23079:6630773,45326721 +g1,23079:6434165,45326721 +(1,23079:6434165,45326721:0,4192908,196608 +r1,23079:32779637,45326721:26345472,4389516,196608 +k1,23079:6434165,45326721:-26345472 +) +(1,23079:6434165,45326721:26345472,4192908,196608 +[1,23079:6630773,45326721:25952256,3996300,0 +(1,23068:6630773,41761466:25952256,431045,6605 +(1,23067:6630773,41761466:0,0,0 +g1,23067:6630773,41761466 +g1,23067:6630773,41761466 +g1,23067:6303093,41761466 +(1,23067:6303093,41761466:0,0,0 +) +g1,23067:6630773,41761466 +) +h1,23068:8622497,41761466:0,0,0 +k1,23068:32583029,41761466:23960532 +g1,23068:32583029,41761466 +) +(1,23078:6630773,42577393:25952256,424439,9908 +(1,23070:6630773,42577393:0,0,0 +g1,23070:6630773,42577393 +g1,23070:6630773,42577393 +g1,23070:6303093,42577393 +(1,23070:6303093,42577393:0,0,0 +) +g1,23070:6630773,42577393 +) +g1,23078:7626635,42577393 +g1,23078:8290543,42577393 +g1,23078:8954451,42577393 +g1,23078:11610083,42577393 +g1,23078:12605945,42577393 +g1,23078:13269853,42577393 +h1,23078:13601807,42577393:0,0,0 +k1,23078:32583029,42577393:18981222 +g1,23078:32583029,42577393 +) +(1,23078:6630773,43262248:25952256,424439,112852 +h1,23078:6630773,43262248:0,0,0 +g1,23078:7626635,43262248 +g1,23078:7958589,43262248 +g1,23078:8290543,43262248 +g1,23078:10614221,43262248 +g1,23078:12605945,43262248 +h1,23078:16257438,43262248:0,0,0 +k1,23078:32583029,43262248:16325591 +g1,23078:32583029,43262248 +) +(1,23078:6630773,43947103:25952256,424439,6605 +h1,23078:6630773,43947103:0,0,0 +g1,23078:7626635,43947103 +g1,23078:7958589,43947103 +g1,23078:8290543,43947103 +g1,23078:8622497,43947103 +g1,23078:10614221,43947103 +g1,23078:12605945,43947103 +g1,23078:12937899,43947103 +g1,23078:13269853,43947103 +g1,23078:13601807,43947103 +g1,23078:13933761,43947103 +g1,23078:14265715,43947103 +g1,23078:14597669,43947103 +k1,23078:14597669,43947103:0 +h1,23078:16257439,43947103:0,0,0 +k1,23078:32583029,43947103:16325590 +g1,23078:32583029,43947103 +) +(1,23078:6630773,44631958:25952256,407923,4954 +h1,23078:6630773,44631958:0,0,0 +g1,23078:7626635,44631958 +g1,23078:8290543,44631958 +g1,23078:8622497,44631958 +g1,23078:8954451,44631958 +g1,23078:9286405,44631958 +g1,23078:9618359,44631958 +g1,23078:9950313,44631958 +g1,23078:10614221,44631958 +g1,23078:11278129,44631958 +g1,23078:11610083,44631958 +g1,23078:11942037,44631958 +g1,23078:12273991,44631958 +g1,23078:12605945,44631958 +g1,23078:12937899,44631958 +g1,23078:13269853,44631958 +g1,23078:13601807,44631958 +g1,23078:13933761,44631958 +g1,23078:14265715,44631958 +g1,23078:14597669,44631958 +g1,23078:14929623,44631958 +g1,23078:15261577,44631958 +g1,23078:15593531,44631958 +g1,23078:15925485,44631958 +h1,23078:16257439,44631958:0,0,0 +k1,23078:32583029,44631958:16325590 +g1,23078:32583029,44631958 +) +(1,23078:6630773,45316813:25952256,407923,9908 +h1,23078:6630773,45316813:0,0,0 +g1,23078:7626635,45316813 +g1,23078:8290543,45316813 +g1,23078:8622497,45316813 +g1,23078:8954451,45316813 +g1,23078:9286405,45316813 +g1,23078:9618359,45316813 +g1,23078:9950313,45316813 +g1,23078:10614221,45316813 +g1,23078:11278129,45316813 +g1,23078:11610083,45316813 +g1,23078:11942037,45316813 +g1,23078:12273991,45316813 +g1,23078:12605945,45316813 +g1,23078:12937899,45316813 +g1,23078:13269853,45316813 +g1,23078:13601807,45316813 +g1,23078:13933761,45316813 +g1,23078:14265715,45316813 +g1,23078:14597669,45316813 +g1,23078:14929623,45316813 +g1,23078:15261577,45316813 +g1,23078:15593531,45316813 +g1,23078:15925485,45316813 +h1,23078:16257439,45316813:0,0,0 +k1,23078:32583029,45316813:16325590 +g1,23078:32583029,45316813 +) +] +) +g1,23079:32583029,45326721 +g1,23079:6630773,45326721 +g1,23079:6630773,45326721 +g1,23079:32583029,45326721 +g1,23079:32583029,45326721 +) +] +(1,23079:32583029,45706769:0,0,0 +g1,23079:32583029,45706769 +) +) +] +(1,23079:6630773,47279633:25952256,0,0 +h1,23079:6630773,47279633:25952256,0,0 +) +] +(1,23079:4262630,4025873:0,0,0 +[1,23079:-473656,4025873:0,0,0 +(1,23079:-473656,-710413:0,0,0 +(1,23079:-473656,-710413:0,0,0 +g1,23079:-473656,-710413 +) +g1,23079:-473656,-710413 +) +] +) +] +!18691 +}398 +Input:3726:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3727:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3728:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3729:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!388 +{399 +[1,23152:4262630,47279633:28320399,43253760,0 +(1,23152:4262630,4025873:0,0,0 +[1,23152:-473656,4025873:0,0,0 +(1,23152:-473656,-710413:0,0,0 +(1,23152:-473656,-644877:0,0,0 +k1,23152:-473656,-644877:-65536 +) +(1,23152:-473656,4736287:0,0,0 +k1,23152:-473656,4736287:5209943 ) -k1,21457:62087500,51504789:25935872 -g1,21457:62087500,51504789 +g1,23152:-473656,-710413 ) ] ) -g1,21457:36675916,49800853 -(1,21457:36675916,49800853:1179648,16384,0 -r1,22905:37855564,49800853:1179648,16384,0 +[1,23152:6630773,47279633:25952256,43253760,0 +[1,23152:6630773,4812305:25952256,786432,0 +(1,23152:6630773,4812305:25952256,505283,134348 +(1,23152:6630773,4812305:25952256,505283,134348 +g1,23152:3078558,4812305 +[1,23152:3078558,4812305:0,0,0 +(1,23152:3078558,2439708:0,1703936,0 +k1,23152:1358238,2439708:-1720320 +(1,21670:1358238,2439708:1720320,1703936,0 +(1,21670:1358238,2439708:1179648,16384,0 +r1,23152:2537886,2439708:1179648,16384,0 ) +g1,21670:3062174,2439708 +(1,21670:3062174,2439708:16384,1703936,0 +[1,21670:3062174,2439708:25952256,1703936,0 +(1,21670:3062174,1915420:25952256,1179648,0 +(1,21670:3062174,1915420:16384,1179648,0 +r1,23152:3078558,1915420:16384,1179648,0 ) -k1,22905:3078556,49800853:-34777008 +k1,21670:29014430,1915420:25935872 +g1,21670:29014430,1915420 ) -] -g1,22905:6630773,4812305 -g1,22905:6630773,4812305 -g1,22905:9860387,4812305 -g1,22905:12770185,4812305 -k1,22905:31387653,4812305:18617468 -) -) -] -[1,22905:6630773,45706769:25952256,40108032,0 -(1,22905:6630773,45706769:25952256,40108032,0 -(1,22905:6630773,45706769:0,0,0 -g1,22905:6630773,45706769 -) -[1,22905:6630773,45706769:25952256,40108032,0 -(1,22839:6630773,6254097:25952256,555811,12975 -(1,22839:6630773,6254097:2899444,534184,12975 -g1,22839:6630773,6254097 -g1,22839:9530217,6254097 -) -k1,22839:32583029,6254097:19442566 -g1,22839:32583029,6254097 -) -(1,22843:6630773,7488801:25952256,513147,134348 -k1,22842:9417786,7488801:252080 -k1,22842:12778185,7488801:252027 -k1,22842:15790641,7488801:252080 -k1,22842:19068518,7488801:252080 -k1,22842:20268249,7488801:252080 -k1,22842:22922879,7488801:252080 -k1,22842:24564322,7488801:252080 -k1,22842:26627817,7488801:252080 -k1,22842:27495935,7488801:252080 -k1,22842:29061357,7488801:252080 -k1,22842:30597943,7488801:252080 -k1,22842:32583029,7488801:0 -) -(1,22843:6630773,8330289:25952256,505283,126483 -k1,22842:7818244,8330289:168386 -k1,22842:9651244,8330289:168386 -k1,22842:13315976,8330289:168386 -k1,22842:16565864,8330289:168386 -k1,22842:19524118,8330289:168386 -(1,22842:19524118,8330289:0,452978,115847 -r1,22905:23047790,8330289:3523672,568825,115847 -k1,22842:19524118,8330289:-3523672 -) -(1,22842:19524118,8330289:3523672,452978,115847 -k1,22842:19524118,8330289:3277 -h1,22842:23044513,8330289:0,411205,112570 -) -k1,22842:23216175,8330289:168385 -k1,22842:24485566,8330289:168386 -k1,22842:25009812,8330289:168386 -k1,22842:27380208,8330289:168386 -k1,22842:28620763,8330289:168386 -k1,22842:31202185,8330289:168386 -k1,22842:32583029,8330289:0 -) -(1,22843:6630773,9171777:25952256,513147,126483 -k1,22842:9628640,9171777:187683 -k1,22842:10467751,9171777:187683 -k1,22842:11939940,9171777:187683 -k1,22842:12794780,9171777:187684 -(1,22842:12794780,9171777:0,452978,115847 -r1,22905:17021876,9171777:4227096,568825,115847 -k1,22842:12794780,9171777:-4227096 -) -(1,22842:12794780,9171777:4227096,452978,115847 -k1,22842:12794780,9171777:3277 -h1,22842:17018599,9171777:0,411205,112570 -) -k1,22842:17209559,9171777:187683 -k1,22842:18588687,9171777:187683 -k1,22842:20518972,9171777:187683 -k1,22842:21863365,9171777:187683 -k1,22842:25344232,9171777:187683 -k1,22842:26144678,9171777:187684 -k1,22842:26688221,9171777:187683 -k1,22842:28474982,9171777:187683 -k1,22842:30056616,9171777:187683 -k1,22842:32583029,9171777:0 -) -(1,22843:6630773,10013265:25952256,513147,134348 -g1,22842:8205603,10013265 -g1,22842:9352483,10013265 -g1,22842:12307501,10013265 -g1,22842:13578899,10013265 -g1,22842:15485996,10013265 -g1,22842:16881912,10013265 -g1,22842:18761484,10013265 -g1,22842:21739440,10013265 -g1,22842:22470166,10013265 -g1,22842:23025255,10013265 -g1,22842:24613847,10013265 -k1,22843:32583029,10013265:5919216 -g1,22843:32583029,10013265 -) -v1,22845:6630773,11077430:0,393216,0 -(1,22849:6630773,11373652:25952256,689438,196608 -g1,22849:6630773,11373652 -g1,22849:6630773,11373652 -g1,22849:6434165,11373652 -(1,22849:6434165,11373652:0,689438,196608 -r1,22905:32779637,11373652:26345472,886046,196608 -k1,22849:6434165,11373652:-26345472 -) -(1,22849:6434165,11373652:26345472,689438,196608 -[1,22849:6630773,11373652:25952256,492830,0 -(1,22847:6630773,11291340:25952256,410518,82312 -(1,22846:6630773,11291340:0,0,0 -g1,22846:6630773,11291340 -g1,22846:6630773,11291340 -g1,22846:6303093,11291340 -(1,22846:6303093,11291340:0,0,0 -) -g1,22846:6630773,11291340 -) -g1,22847:8843793,11291340 -g1,22847:9792231,11291340 -g1,22847:19276602,11291340 -g1,22847:21173476,11291340 -g1,22847:21805768,11291340 -h1,22847:22438060,11291340:0,0,0 -k1,22847:32583029,11291340:10144969 -g1,22847:32583029,11291340 -) -] -) -g1,22849:32583029,11373652 -g1,22849:6630773,11373652 -g1,22849:6630773,11373652 -g1,22849:32583029,11373652 -g1,22849:32583029,11373652 -) -h1,22849:6630773,11570260:0,0,0 -v1,22853:6630773,13032413:0,393216,0 -(1,22866:6630773,17915859:25952256,5276662,196608 -g1,22866:6630773,17915859 -g1,22866:6630773,17915859 -g1,22866:6434165,17915859 -(1,22866:6434165,17915859:0,5276662,196608 -r1,22905:32779637,17915859:26345472,5473270,196608 -k1,22866:6434165,17915859:-26345472 -) -(1,22866:6434165,17915859:26345472,5276662,196608 -[1,22866:6630773,17915859:25952256,5080054,0 -(1,22855:6630773,13246323:25952256,410518,6290 -(1,22854:6630773,13246323:0,0,0 -g1,22854:6630773,13246323 -g1,22854:6630773,13246323 -g1,22854:6303093,13246323 -(1,22854:6303093,13246323:0,0,0 -) -g1,22854:6630773,13246323 -) -h1,22855:8527647,13246323:0,0,0 -k1,22855:32583029,13246323:24055382 -g1,22855:32583029,13246323 -) -(1,22865:6630773,13912501:25952256,404226,9436 -(1,22857:6630773,13912501:0,0,0 -g1,22857:6630773,13912501 -g1,22857:6630773,13912501 -g1,22857:6303093,13912501 -(1,22857:6303093,13912501:0,0,0 -) -g1,22857:6630773,13912501 -) -g1,22865:7579210,13912501 -g1,22865:8211502,13912501 -g1,22865:8843794,13912501 -g1,22865:11372960,13912501 -g1,22865:12321397,13912501 -g1,22865:12953689,13912501 -h1,22865:13269835,13912501:0,0,0 -k1,22865:32583029,13912501:19313194 -g1,22865:32583029,13912501 -) -(1,22865:6630773,14578679:25952256,404226,107478 -h1,22865:6630773,14578679:0,0,0 -g1,22865:7579210,14578679 -g1,22865:7895356,14578679 -g1,22865:8211502,14578679 -g1,22865:10424522,14578679 -g1,22865:12321396,14578679 -h1,22865:15798998,14578679:0,0,0 -k1,22865:32583030,14578679:16784032 -g1,22865:32583030,14578679 -) -(1,22865:6630773,15244857:25952256,404226,6290 -h1,22865:6630773,15244857:0,0,0 -g1,22865:7579210,15244857 -g1,22865:7895356,15244857 -g1,22865:8211502,15244857 -g1,22865:8527648,15244857 -g1,22865:10424523,15244857 -g1,22865:12321398,15244857 -g1,22865:12637544,15244857 -g1,22865:12953690,15244857 -g1,22865:13269836,15244857 -g1,22865:13585982,15244857 -g1,22865:13902128,15244857 -g1,22865:14218274,15244857 -k1,22865:14218274,15244857:0 -h1,22865:15799003,15244857:0,0,0 -k1,22865:32583029,15244857:16784026 -g1,22865:32583029,15244857 -) -(1,22865:6630773,15911035:25952256,388497,4718 -h1,22865:6630773,15911035:0,0,0 -g1,22865:7579210,15911035 -g1,22865:8211502,15911035 -g1,22865:8527648,15911035 -g1,22865:8843794,15911035 -g1,22865:9159940,15911035 -g1,22865:9476086,15911035 -g1,22865:9792232,15911035 -g1,22865:10424524,15911035 -g1,22865:11056816,15911035 -g1,22865:11372962,15911035 -g1,22865:11689108,15911035 -g1,22865:12005254,15911035 -g1,22865:12321400,15911035 -g1,22865:12637546,15911035 -g1,22865:12953692,15911035 -g1,22865:13269838,15911035 -g1,22865:13585984,15911035 -g1,22865:13902130,15911035 -g1,22865:14218276,15911035 -g1,22865:14534422,15911035 -g1,22865:14850568,15911035 -g1,22865:15166714,15911035 -g1,22865:15482860,15911035 -h1,22865:15799006,15911035:0,0,0 -k1,22865:32583030,15911035:16784024 -g1,22865:32583030,15911035 -) -(1,22865:6630773,16577213:25952256,388497,9436 -h1,22865:6630773,16577213:0,0,0 -g1,22865:7579210,16577213 -g1,22865:8211502,16577213 -g1,22865:8527648,16577213 -g1,22865:8843794,16577213 -g1,22865:9159940,16577213 -g1,22865:9476086,16577213 -g1,22865:9792232,16577213 -g1,22865:10424524,16577213 -g1,22865:11056816,16577213 -g1,22865:11372962,16577213 -g1,22865:11689108,16577213 -g1,22865:12005254,16577213 -g1,22865:12321400,16577213 -g1,22865:12637546,16577213 -g1,22865:12953692,16577213 -g1,22865:13269838,16577213 -g1,22865:13585984,16577213 -g1,22865:13902130,16577213 -g1,22865:14218276,16577213 -g1,22865:14534422,16577213 -g1,22865:14850568,16577213 -g1,22865:15166714,16577213 -g1,22865:15482860,16577213 -h1,22865:15799006,16577213:0,0,0 -k1,22865:32583030,16577213:16784024 -g1,22865:32583030,16577213 -) -(1,22865:6630773,17243391:25952256,388497,9436 -h1,22865:6630773,17243391:0,0,0 -g1,22865:7579210,17243391 -g1,22865:8211502,17243391 -g1,22865:8527648,17243391 -g1,22865:8843794,17243391 -g1,22865:9159940,17243391 -g1,22865:9476086,17243391 -g1,22865:9792232,17243391 -g1,22865:10424524,17243391 -g1,22865:11056816,17243391 -g1,22865:11372962,17243391 -g1,22865:11689108,17243391 -g1,22865:12005254,17243391 -g1,22865:12321400,17243391 -g1,22865:12637546,17243391 -g1,22865:12953692,17243391 -g1,22865:13269838,17243391 -g1,22865:13585984,17243391 -g1,22865:13902130,17243391 -g1,22865:14218276,17243391 -g1,22865:14534422,17243391 -g1,22865:14850568,17243391 -g1,22865:15166714,17243391 -g1,22865:15482860,17243391 -h1,22865:15799006,17243391:0,0,0 -k1,22865:32583030,17243391:16784024 -g1,22865:32583030,17243391 -) -(1,22865:6630773,17909569:25952256,404226,6290 -h1,22865:6630773,17909569:0,0,0 -g1,22865:7579210,17909569 -g1,22865:8211502,17909569 -g1,22865:8843794,17909569 -g1,22865:9476086,17909569 -g1,22865:11056815,17909569 -h1,22865:12321398,17909569:0,0,0 -k1,22865:32583030,17909569:20261632 -g1,22865:32583030,17909569 -) -] -) -g1,22866:32583029,17915859 -g1,22866:6630773,17915859 -g1,22866:6630773,17915859 -g1,22866:32583029,17915859 -g1,22866:32583029,17915859 -) -h1,22866:6630773,18112467:0,0,0 -(1,22872:6630773,19351942:25952256,513147,115847 -h1,22869:6630773,19351942:983040,0,0 -g1,22869:10602910,19351942 -(1,22869:10602910,19351942:0,452978,115847 -r1,22905:14478294,19351942:3875384,568825,115847 -k1,22869:10602910,19351942:-3875384 -) -(1,22869:10602910,19351942:3875384,452978,115847 -k1,22869:10602910,19351942:3277 -h1,22869:14475017,19351942:0,411205,112570 -) -g1,22869:14677523,19351942 -g1,22869:16821861,19351942 -g1,22869:17376950,19351942 -g1,22869:18965542,19351942 -g1,22869:21041067,19351942 -g1,22869:22507762,19351942 -g1,22869:23477694,19351942 -g1,22869:25044659,19351942 -g1,22869:26400598,19351942 -g1,22870:26400598,19351942 -k1,22872:32583029,19351942:6182431 -g1,22872:32583029,19351942 -) -(1,22873:6630773,22159510:25952256,32768,229376 -(1,22873:6630773,22159510:0,32768,229376 -(1,22873:6630773,22159510:5505024,32768,229376 -r1,22905:12135797,22159510:5505024,262144,229376 -) -k1,22873:6630773,22159510:-5505024 -) -(1,22873:6630773,22159510:25952256,32768,0 -r1,22905:32583029,22159510:25952256,32768,0 -) -) -(1,22873:6630773,23763838:25952256,615776,14155 -(1,22873:6630773,23763838:2954625,582746,14155 -g1,22873:6630773,23763838 -g1,22873:9585398,23763838 -) -g1,22873:13664621,23763838 -k1,22873:32583029,23763838:15453388 -g1,22873:32583029,23763838 -) -(1,22877:6630773,24998542:25952256,513147,134348 -k1,22876:8720913,24998542:257753 -k1,22876:9970226,24998542:257753 -k1,22876:11400417,24998542:257752 -k1,22876:14420513,24998542:257753 -k1,22876:19495818,24998542:257753 -k1,22876:22664025,24998542:257753 -k1,22876:23869429,24998542:257753 -k1,22876:27299124,24998542:257752 -k1,22876:28946240,24998542:257753 -k1,22876:31015408,24998542:257753 -k1,22876:32583029,24998542:0 -) -(1,22877:6630773,25840030:25952256,505283,134348 -k1,22876:8592444,25840030:259701 -k1,22876:11936269,25840030:259701 -k1,22876:15268298,25840030:259701 -k1,22876:17021565,25840030:259701 -k1,22876:17967428,25840030:259701 -k1,22876:19598799,25840030:259702 -k1,22876:22936071,25840030:259701 -k1,22876:24810579,25840030:259701 -k1,22876:26181771,25840030:259701 -k1,22876:27638159,25840030:259701 -k1,22876:30711976,25840030:259701 -k1,22877:32583029,25840030:0 -) -(1,22877:6630773,26681518:25952256,513147,134348 -k1,22876:8621663,26681518:205034 -k1,22876:9358194,26681518:205034 -k1,22876:12143381,26681518:205035 -k1,22876:14975753,26681518:205034 -k1,22876:17939197,26681518:205034 -k1,22876:18760269,26681518:205034 -k1,22876:20399232,26681518:205035 -k1,22876:21192779,26681518:205034 -k1,22876:22589258,26681518:205034 -k1,22876:25374444,26681518:205034 -k1,22876:27805735,26681518:205034 -k1,22876:28542267,26681518:205035 -k1,22876:29103161,26681518:205034 -k1,22876:31227089,26681518:205034 -k1,22877:32583029,26681518:0 -) -(1,22877:6630773,27523006:25952256,513147,126483 -k1,22876:9462331,27523006:244852 -k1,22876:12953182,27523006:244853 -k1,22876:13825869,27523006:244852 -k1,22876:15089807,27523006:244853 -k1,22876:16701740,27523006:244852 -k1,22876:17605885,27523006:244853 -k1,22876:19164079,27523006:244852 -k1,22876:21220347,27523006:244853 -k1,22876:22859150,27523006:244852 -k1,22876:24124399,27523006:244853 -k1,22876:27033290,27523006:244852 -k1,22876:27937435,27523006:244853 -k1,22876:31266411,27523006:244852 -k1,22877:32583029,27523006:0 -) -(1,22877:6630773,28364494:25952256,513147,134348 -g1,22876:8972374,28364494 -g1,22876:12197400,28364494 -g1,22876:13964250,28364494 -g1,22876:16790817,28364494 -g1,22876:18429872,28364494 -g1,22876:19280529,28364494 -g1,22876:20227524,28364494 -g1,22876:22076950,28364494 -g1,22876:24361535,28364494 -g1,22876:26003211,28364494 -g1,22876:27946353,28364494 -g1,22876:29713203,28364494 -k1,22877:32583029,28364494:469899 -g1,22877:32583029,28364494 -) -(1,22878:6630773,30455754:25952256,564462,147783 -(1,22878:6630773,30455754:3348562,534184,12975 -g1,22878:6630773,30455754 -g1,22878:9979335,30455754 -) -k1,22878:32583028,30455754:19529072 -g1,22878:32583028,30455754 -) -(1,22883:6630773,31690458:25952256,513147,134348 -k1,22882:9956624,31690458:205682 -k1,22882:10778344,31690458:205682 -k1,22882:13564179,31690458:205683 -k1,22882:16397199,31690458:205682 -k1,22882:18284535,31690458:205682 -k1,22882:19235361,31690458:205682 -k1,22882:20092472,31690458:205683 -k1,22882:22479848,31690458:205682 -k1,22882:24074893,31690458:205682 -k1,22882:25848196,31690458:205682 -k1,22882:27367221,31690458:205683 -k1,22882:29384318,31690458:205682 -k1,22882:30351528,31690458:205682 -k1,22882:32583029,31690458:0 -) -(1,22883:6630773,32531946:25952256,505283,134348 -k1,22882:9891779,32531946:176882 -k1,22882:12623254,32531946:176882 -k1,22882:16046133,32531946:176881 -k1,22882:19203592,32531946:176882 -k1,22882:20712821,32531946:176882 -k1,22882:22630339,32531946:176882 -k1,22882:24403022,32531946:176882 -k1,22882:26634456,32531946:176881 -k1,22882:28967473,32531946:176882 -k1,22882:31303766,32531946:176882 -k1,22883:32583029,32531946:0 -) -(1,22883:6630773,33373434:25952256,513147,134348 -k1,22882:7946474,33373434:176030 -k1,22882:9313948,33373434:176029 -k1,22882:9845838,33373434:176030 -k1,22882:12717363,33373434:176029 -k1,22882:13841044,33373434:176030 -k1,22882:16274789,33373434:176030 -k1,22882:17840181,33373434:176029 -k1,22882:19283677,33373434:176030 -k1,22882:20773048,33373434:176029 -k1,22882:22343029,33373434:176030 -k1,22882:25029743,33373434:176030 -k1,22882:27139084,33373434:176029 -k1,22882:27966542,33373434:176030 -k1,22882:29474918,33373434:176029 -k1,22882:31391584,33373434:176030 -k1,22883:32583029,33373434:0 -) -(1,22883:6630773,34214922:25952256,513147,126483 -k1,22882:8400997,34214922:174423 -k1,22882:8990238,34214922:174398 -k1,22882:12697707,34214922:174423 -k1,22882:13891215,34214922:174423 -k1,22882:15158123,34214922:174423 -k1,22882:15991838,34214922:174423 -k1,22882:17862988,34214922:174423 -k1,22882:21063208,34214922:174423 -k1,22882:21853669,34214922:174423 -k1,22882:23815259,34214922:174423 -k1,22882:24605720,34214922:174423 -k1,22882:25799228,34214922:174423 -k1,22882:26423203,34214922:174398 -k1,22882:28131824,34214922:174423 -k1,22883:32583029,34214922:0 -) -(1,22883:6630773,35056410:25952256,513147,126483 -k1,22882:9447088,35056410:276140 -k1,22882:10541118,35056410:276141 -k1,22882:11173118,35056410:276140 -k1,22882:13573935,35056410:276140 -k1,22882:16685163,35056410:276141 -k1,22882:17829655,35056410:276140 -k1,22882:19198280,35056410:276140 -k1,22882:22169916,35056410:276140 -(1,22882:22169916,35056410:0,452978,115847 -r1,22905:26045300,35056410:3875384,568825,115847 -k1,22882:22169916,35056410:-3875384 -) -(1,22882:22169916,35056410:3875384,452978,115847 -k1,22882:22169916,35056410:3277 -h1,22882:26042023,35056410:0,411205,112570 -) -k1,22882:26321441,35056410:276141 -k1,22882:27249009,35056410:276140 -k1,22882:28937450,35056410:276140 -k1,22882:29569451,35056410:276141 -k1,22882:31426319,35056410:276140 -k1,22882:32583029,35056410:0 -) -(1,22883:6630773,35897898:25952256,513147,134348 -k1,22882:8669729,35897898:227541 -k1,22882:9253130,35897898:227541 -k1,22882:10613789,35897898:227541 -k1,22882:12524294,35897898:227540 -k1,22882:13876433,35897898:227541 -k1,22882:15497925,35897898:227541 -k1,22882:16744551,35897898:227541 -k1,22882:18406020,35897898:227541 -k1,22882:20977784,35897898:227541 -k1,22882:23539062,35897898:227541 -k1,22882:24433759,35897898:227541 -k1,22882:26257100,35897898:227540 -k1,22882:27438190,35897898:227541 -k1,22882:29960802,35897898:227541 -k1,22882:31563944,35897898:227541 -k1,22882:32583029,35897898:0 -) -(1,22883:6630773,36739386:25952256,513147,134348 -k1,22882:8108189,36739386:171283 -k1,22882:9176005,36739386:171283 -k1,22882:10881486,36739386:171283 -k1,22882:12244214,36739386:171283 -k1,22882:14212494,36739386:171283 -k1,22882:17096968,36739386:171283 -k1,22882:17927542,36739386:171282 -k1,22882:19117910,36739386:171283 -k1,22882:20678556,36739386:171283 -k1,22882:22899805,36739386:171283 -k1,22882:26051665,36739386:171283 -k1,22882:26578808,36739386:171283 -k1,22882:29132980,36739386:171283 -k1,22882:30698214,36739386:171283 -k1,22882:32583029,36739386:0 -) -(1,22883:6630773,37580874:25952256,505283,126483 -g1,22882:8715473,37580874 -g1,22882:11433906,37580874 -g1,22882:12319297,37580874 -k1,22883:32583029,37580874:17469932 -g1,22883:32583029,37580874 -) -v1,22885:6630773,38645040:0,393216,0 -(1,22899:6630773,44270686:25952256,6018862,196608 -g1,22899:6630773,44270686 -g1,22899:6630773,44270686 -g1,22899:6434165,44270686 -(1,22899:6434165,44270686:0,6018862,196608 -r1,22905:32779637,44270686:26345472,6215470,196608 -k1,22899:6434165,44270686:-26345472 -) -(1,22899:6434165,44270686:26345472,6018862,196608 -[1,22899:6630773,44270686:25952256,5822254,0 -(1,22887:6630773,38858950:25952256,410518,101187 -(1,22886:6630773,38858950:0,0,0 -g1,22886:6630773,38858950 -g1,22886:6630773,38858950 -g1,22886:6303093,38858950 -(1,22886:6303093,38858950:0,0,0 -) -g1,22886:6630773,38858950 -) -g1,22887:10108376,38858950 -g1,22887:11056814,38858950 -g1,22887:15799000,38858950 -g1,22887:16431292,38858950 -g1,22887:23702643,38858950 -g1,22887:28128683,38858950 -g1,22887:28760975,38858950 -h1,22887:30341704,38858950:0,0,0 -k1,22887:32583029,38858950:2241325 -g1,22887:32583029,38858950 -) -(1,22888:6630773,39525128:25952256,410518,101187 -h1,22888:6630773,39525128:0,0,0 -g1,22888:11689105,39525128 -g1,22888:13902127,39525128 -h1,22888:15166709,39525128:0,0,0 -k1,22888:32583029,39525128:17416320 -g1,22888:32583029,39525128 -) -(1,22898:6630773,40191306:25952256,404226,101187 -(1,22890:6630773,40191306:0,0,0 -g1,22890:6630773,40191306 -g1,22890:6630773,40191306 -g1,22890:6303093,40191306 -(1,22890:6303093,40191306:0,0,0 -) -g1,22890:6630773,40191306 -) -g1,22898:7579210,40191306 -g1,22898:7895356,40191306 -g1,22898:8211502,40191306 -g1,22898:10108376,40191306 -g1,22898:10424522,40191306 -g1,22898:10740668,40191306 -g1,22898:11056814,40191306 -g1,22898:11372960,40191306 -g1,22898:11689106,40191306 -g1,22898:12005252,40191306 -g1,22898:13902126,40191306 -g1,22898:17063583,40191306 -g1,22898:19276603,40191306 -g1,22898:20541186,40191306 -g1,22898:23070352,40191306 -h1,22898:26864100,40191306:0,0,0 -k1,22898:32583029,40191306:5718929 -g1,22898:32583029,40191306 -) -(1,22898:6630773,40857484:25952256,404226,82312 -h1,22898:6630773,40857484:0,0,0 -g1,22898:7579210,40857484 -g1,22898:8211502,40857484 -g1,22898:8527648,40857484 -g1,22898:8843794,40857484 -g1,22898:9159940,40857484 -g1,22898:9476086,40857484 -g1,22898:10108378,40857484 -g1,22898:12953690,40857484 -g1,22898:13902127,40857484 -g1,22898:14218273,40857484 -g1,22898:14534419,40857484 -g1,22898:14850565,40857484 -g1,22898:15166711,40857484 -g1,22898:15482857,40857484 -g1,22898:15799003,40857484 -g1,22898:16115149,40857484 -g1,22898:16431295,40857484 -g1,22898:17063587,40857484 -g1,22898:17379733,40857484 -g1,22898:17695879,40857484 -g1,22898:18012025,40857484 -g1,22898:18328171,40857484 -g1,22898:18644317,40857484 -g1,22898:19276609,40857484 -g1,22898:19592755,40857484 -g1,22898:20541192,40857484 -g1,22898:20857338,40857484 -g1,22898:21173484,40857484 -g1,22898:21489630,40857484 -g1,22898:21805776,40857484 -g1,22898:22121922,40857484 -g1,22898:22438068,40857484 -g1,22898:23070360,40857484 -g1,22898:23386506,40857484 -h1,22898:26864108,40857484:0,0,0 -k1,22898:32583029,40857484:5718921 -g1,22898:32583029,40857484 -) -(1,22898:6630773,41523662:25952256,404226,82312 -h1,22898:6630773,41523662:0,0,0 -g1,22898:7579210,41523662 -g1,22898:8211502,41523662 -g1,22898:8527648,41523662 -g1,22898:8843794,41523662 -g1,22898:9159940,41523662 -g1,22898:9476086,41523662 -g1,22898:10108378,41523662 -g1,22898:12953690,41523662 -g1,22898:13902127,41523662 -g1,22898:14218273,41523662 -g1,22898:14534419,41523662 -g1,22898:14850565,41523662 -g1,22898:15166711,41523662 -g1,22898:15482857,41523662 -g1,22898:15799003,41523662 -g1,22898:16115149,41523662 -g1,22898:16431295,41523662 -g1,22898:17063587,41523662 -g1,22898:17379733,41523662 -g1,22898:17695879,41523662 -g1,22898:18012025,41523662 -g1,22898:18328171,41523662 -g1,22898:18644317,41523662 -g1,22898:19276609,41523662 -g1,22898:19592755,41523662 -g1,22898:20541192,41523662 -g1,22898:20857338,41523662 -g1,22898:21173484,41523662 -g1,22898:21489630,41523662 -g1,22898:21805776,41523662 -g1,22898:22121922,41523662 -g1,22898:22438068,41523662 -g1,22898:23070360,41523662 -g1,22898:23386506,41523662 -h1,22898:26864108,41523662:0,0,0 -k1,22898:32583029,41523662:5718921 -g1,22898:32583029,41523662 -) -(1,22898:6630773,42189840:25952256,404226,82312 -h1,22898:6630773,42189840:0,0,0 -g1,22898:7579210,42189840 -g1,22898:8211502,42189840 -g1,22898:8527648,42189840 -g1,22898:8843794,42189840 -g1,22898:9159940,42189840 -g1,22898:9476086,42189840 -g1,22898:10108378,42189840 -g1,22898:12953690,42189840 -g1,22898:13902127,42189840 -g1,22898:14218273,42189840 -g1,22898:14534419,42189840 -g1,22898:14850565,42189840 -g1,22898:15166711,42189840 -g1,22898:15482857,42189840 -g1,22898:15799003,42189840 -g1,22898:16115149,42189840 -g1,22898:16431295,42189840 -g1,22898:17063587,42189840 -g1,22898:17379733,42189840 -g1,22898:17695879,42189840 -g1,22898:18012025,42189840 -g1,22898:18328171,42189840 -g1,22898:18644317,42189840 -g1,22898:19276609,42189840 -g1,22898:20541192,42189840 -g1,22898:20857338,42189840 -g1,22898:21173484,42189840 -g1,22898:21489630,42189840 -g1,22898:21805776,42189840 -g1,22898:22121922,42189840 -g1,22898:22438068,42189840 -g1,22898:23070360,42189840 -g1,22898:23386506,42189840 -h1,22898:26864108,42189840:0,0,0 -k1,22898:32583029,42189840:5718921 -g1,22898:32583029,42189840 -) -(1,22898:6630773,42856018:25952256,404226,82312 -h1,22898:6630773,42856018:0,0,0 -g1,22898:7579210,42856018 -g1,22898:8211502,42856018 -g1,22898:8527648,42856018 -g1,22898:8843794,42856018 -g1,22898:9159940,42856018 -g1,22898:9476086,42856018 -g1,22898:10108378,42856018 -g1,22898:12953690,42856018 -g1,22898:13902127,42856018 -g1,22898:14218273,42856018 -g1,22898:14534419,42856018 -g1,22898:14850565,42856018 -g1,22898:15166711,42856018 -g1,22898:15482857,42856018 -g1,22898:15799003,42856018 -g1,22898:16115149,42856018 -g1,22898:16431295,42856018 -g1,22898:17063587,42856018 -g1,22898:17379733,42856018 -g1,22898:17695879,42856018 -g1,22898:18012025,42856018 -g1,22898:18328171,42856018 -g1,22898:18644317,42856018 -g1,22898:19276609,42856018 -g1,22898:20541192,42856018 -g1,22898:20857338,42856018 -g1,22898:21173484,42856018 -g1,22898:21489630,42856018 -g1,22898:21805776,42856018 -g1,22898:22121922,42856018 -g1,22898:22438068,42856018 -g1,22898:23070360,42856018 -g1,22898:23386506,42856018 -h1,22898:26864108,42856018:0,0,0 -k1,22898:32583029,42856018:5718921 -g1,22898:32583029,42856018 -) -(1,22898:6630773,43522196:25952256,404226,82312 -h1,22898:6630773,43522196:0,0,0 -g1,22898:7579210,43522196 -g1,22898:8211502,43522196 -g1,22898:8527648,43522196 -g1,22898:8843794,43522196 -g1,22898:9159940,43522196 -g1,22898:9476086,43522196 -g1,22898:10108378,43522196 -g1,22898:12953690,43522196 -g1,22898:13902127,43522196 -g1,22898:14218273,43522196 -g1,22898:14534419,43522196 -g1,22898:14850565,43522196 -g1,22898:15166711,43522196 -g1,22898:15482857,43522196 -g1,22898:15799003,43522196 -g1,22898:16115149,43522196 -g1,22898:16431295,43522196 -g1,22898:17063587,43522196 -g1,22898:17379733,43522196 -g1,22898:17695879,43522196 -g1,22898:18012025,43522196 -g1,22898:18328171,43522196 -g1,22898:18644317,43522196 -g1,22898:19276609,43522196 -g1,22898:20541192,43522196 -g1,22898:20857338,43522196 -g1,22898:21173484,43522196 -g1,22898:21489630,43522196 -g1,22898:21805776,43522196 -g1,22898:22121922,43522196 -g1,22898:22438068,43522196 -g1,22898:23070360,43522196 -g1,22898:23386506,43522196 -h1,22898:26864108,43522196:0,0,0 -k1,22898:32583029,43522196:5718921 -g1,22898:32583029,43522196 -) -(1,22898:6630773,44188374:25952256,404226,82312 -h1,22898:6630773,44188374:0,0,0 -g1,22898:7579210,44188374 -g1,22898:8211502,44188374 -g1,22898:8527648,44188374 -g1,22898:8843794,44188374 -g1,22898:9159940,44188374 -g1,22898:9476086,44188374 -g1,22898:10108378,44188374 -g1,22898:12953690,44188374 -g1,22898:13902127,44188374 -g1,22898:14218273,44188374 -g1,22898:14534419,44188374 -g1,22898:14850565,44188374 -g1,22898:15166711,44188374 -g1,22898:15482857,44188374 -g1,22898:15799003,44188374 -g1,22898:16115149,44188374 -g1,22898:16431295,44188374 -g1,22898:17063587,44188374 -g1,22898:17379733,44188374 -g1,22898:17695879,44188374 -g1,22898:18012025,44188374 -g1,22898:18328171,44188374 -g1,22898:18644317,44188374 -g1,22898:19276609,44188374 -g1,22898:20541192,44188374 -g1,22898:20857338,44188374 -g1,22898:21173484,44188374 -g1,22898:21489630,44188374 -g1,22898:21805776,44188374 -g1,22898:22121922,44188374 -g1,22898:22438068,44188374 -g1,22898:23070360,44188374 -g1,22898:23386506,44188374 -h1,22898:26864108,44188374:0,0,0 -k1,22898:32583029,44188374:5718921 -g1,22898:32583029,44188374 -) -] -) -g1,22899:32583029,44270686 -g1,22899:6630773,44270686 -g1,22899:6630773,44270686 -g1,22899:32583029,44270686 -g1,22899:32583029,44270686 -) -h1,22899:6630773,44467294:0,0,0 -(1,22903:6630773,45706769:25952256,513147,134348 -h1,22902:6630773,45706769:983040,0,0 -g1,22902:8300630,45706769 -g1,22902:10741190,45706769 -g1,22902:13775506,45706769 -g1,22902:15177976,45706769 -g1,22902:16802613,45706769 -g1,22902:18395793,45706769 -g1,22902:18950882,45706769 -g1,22902:21274788,45706769 -(1,22902:21274788,45706769:0,414482,115847 -r1,22905:22688189,45706769:1413401,530329,115847 -k1,22902:21274788,45706769:-1413401 -) -(1,22902:21274788,45706769:1413401,414482,115847 -k1,22902:21274788,45706769:3277 -h1,22902:22684912,45706769:0,411205,112570 -) -g1,22902:22887418,45706769 -g1,22902:24069687,45706769 -g1,22902:26080331,45706769 -g1,22902:27076478,45706769 -g1,22902:28958672,45706769 -k1,22903:32583029,45706769:2326089 -g1,22903:32583029,45706769 -) -] -(1,22905:32583029,45706769:0,0,0 -g1,22905:32583029,45706769 -) -) -] -(1,22905:6630773,47279633:25952256,0,0 -h1,22905:6630773,47279633:25952256,0,0 -) -] -(1,22905:4262630,4025873:0,0,0 -[1,22905:-473656,4025873:0,0,0 -(1,22905:-473656,-710413:0,0,0 -(1,22905:-473656,-710413:0,0,0 -g1,22905:-473656,-710413 -) -g1,22905:-473656,-710413 -) -] -) -] -!29160 -}416 -Input:3688:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3689:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3690:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3691:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3692:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3693:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3694:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!670 -{417 -[1,22975:4262630,47279633:28320399,43253760,0 -(1,22975:4262630,4025873:0,0,0 -[1,22975:-473656,4025873:0,0,0 -(1,22975:-473656,-710413:0,0,0 -(1,22975:-473656,-644877:0,0,0 -k1,22975:-473656,-644877:-65536 +] ) -(1,22975:-473656,4736287:0,0,0 -k1,22975:-473656,4736287:5209943 ) -g1,22975:-473656,-710413 ) ] +[1,23152:3078558,4812305:0,0,0 +(1,23152:3078558,2439708:0,1703936,0 +g1,23152:29030814,2439708 +g1,23152:36135244,2439708 +(1,21670:36135244,2439708:1720320,1703936,0 +(1,21670:36135244,2439708:16384,1703936,0 +[1,21670:36135244,2439708:25952256,1703936,0 +(1,21670:36135244,1915420:25952256,1179648,0 +(1,21670:36135244,1915420:16384,1179648,0 +r1,23152:36151628,1915420:16384,1179648,0 +) +k1,21670:62087500,1915420:25935872 +g1,21670:62087500,1915420 +) +] +) +g1,21670:36675916,2439708 +(1,21670:36675916,2439708:1179648,16384,0 +r1,23152:37855564,2439708:1179648,16384,0 +) +) +k1,23152:3078556,2439708:-34777008 ) -[1,22975:6630773,47279633:25952256,43253760,0 -[1,22975:6630773,4812305:25952256,786432,0 -(1,22975:6630773,4812305:25952256,505283,134348 -(1,22975:6630773,4812305:25952256,505283,134348 -g1,22975:3078558,4812305 -[1,22975:3078558,4812305:0,0,0 -(1,22975:3078558,2439708:0,1703936,0 -k1,22975:1358238,2439708:-1720320 -(1,21457:1358238,2439708:1720320,1703936,0 -(1,21457:1358238,2439708:1179648,16384,0 -r1,22975:2537886,2439708:1179648,16384,0 +] +[1,23152:3078558,4812305:0,0,0 +(1,23152:3078558,49800853:0,16384,2228224 +k1,23152:1358238,49800853:-1720320 +(1,21670:1358238,49800853:1720320,16384,2228224 +(1,21670:1358238,49800853:1179648,16384,0 +r1,23152:2537886,49800853:1179648,16384,0 ) -g1,21457:3062174,2439708 -(1,21457:3062174,2439708:16384,1703936,0 -[1,21457:3062174,2439708:25952256,1703936,0 -(1,21457:3062174,1915420:25952256,1179648,0 -(1,21457:3062174,1915420:16384,1179648,0 -r1,22975:3078558,1915420:16384,1179648,0 +g1,21670:3062174,49800853 +(1,21670:3062174,52029077:16384,1703936,0 +[1,21670:3062174,52029077:25952256,1703936,0 +(1,21670:3062174,51504789:25952256,1179648,0 +(1,21670:3062174,51504789:16384,1179648,0 +r1,23152:3078558,51504789:16384,1179648,0 ) -k1,21457:29014430,1915420:25935872 -g1,21457:29014430,1915420 +k1,21670:29014430,51504789:25935872 +g1,21670:29014430,51504789 ) ] ) ) ) ] -[1,22975:3078558,4812305:0,0,0 -(1,22975:3078558,2439708:0,1703936,0 -g1,22975:29030814,2439708 -g1,22975:36135244,2439708 -(1,21457:36135244,2439708:1720320,1703936,0 -(1,21457:36135244,2439708:16384,1703936,0 -[1,21457:36135244,2439708:25952256,1703936,0 -(1,21457:36135244,1915420:25952256,1179648,0 -(1,21457:36135244,1915420:16384,1179648,0 -r1,22975:36151628,1915420:16384,1179648,0 +[1,23152:3078558,4812305:0,0,0 +(1,23152:3078558,49800853:0,16384,2228224 +g1,23152:29030814,49800853 +g1,23152:36135244,49800853 +(1,21670:36135244,49800853:1720320,16384,2228224 +(1,21670:36135244,52029077:16384,1703936,0 +[1,21670:36135244,52029077:25952256,1703936,0 +(1,21670:36135244,51504789:25952256,1179648,0 +(1,21670:36135244,51504789:16384,1179648,0 +r1,23152:36151628,51504789:16384,1179648,0 +) +k1,21670:62087500,51504789:25935872 +g1,21670:62087500,51504789 +) +] +) +g1,21670:36675916,49800853 +(1,21670:36675916,49800853:1179648,16384,0 +r1,23152:37855564,49800853:1179648,16384,0 +) +) +k1,23152:3078556,49800853:-34777008 +) +] +g1,23152:6630773,4812305 +k1,23152:21078841,4812305:13252691 +g1,23152:22701512,4812305 +g1,23152:23350318,4812305 +g1,23152:24759997,4812305 +g1,23152:28372341,4812305 +g1,23152:30105768,4812305 +) +) +] +[1,23152:6630773,45706769:25952256,40108032,0 +(1,23152:6630773,45706769:25952256,40108032,0 +(1,23152:6630773,45706769:0,0,0 +g1,23152:6630773,45706769 +) +[1,23152:6630773,45706769:25952256,40108032,0 +v1,23079:6630773,6254097:0,393216,0 +(1,23079:6630773,7156872:25952256,1295991,196608 +g1,23079:6630773,7156872 +g1,23079:6630773,7156872 +g1,23079:6434165,7156872 +(1,23079:6434165,7156872:0,1295991,196608 +r1,23152:32779637,7156872:26345472,1492599,196608 +k1,23079:6434165,7156872:-26345472 +) +(1,23079:6434165,7156872:26345472,1295991,196608 +[1,23079:6630773,7156872:25952256,1099383,0 +(1,23078:6630773,6465412:25952256,407923,9908 +h1,23078:6630773,6465412:0,0,0 +g1,23078:7626635,6465412 +g1,23078:8290543,6465412 +g1,23078:8622497,6465412 +g1,23078:8954451,6465412 +g1,23078:9286405,6465412 +g1,23078:9618359,6465412 +g1,23078:9950313,6465412 +g1,23078:10614221,6465412 +g1,23078:11278129,6465412 +g1,23078:11610083,6465412 +g1,23078:11942037,6465412 +g1,23078:12273991,6465412 +g1,23078:12605945,6465412 +g1,23078:12937899,6465412 +g1,23078:13269853,6465412 +g1,23078:13601807,6465412 +g1,23078:13933761,6465412 +g1,23078:14265715,6465412 +g1,23078:14597669,6465412 +g1,23078:14929623,6465412 +g1,23078:15261577,6465412 +g1,23078:15593531,6465412 +g1,23078:15925485,6465412 +h1,23078:16257439,6465412:0,0,0 +k1,23078:32583029,6465412:16325590 +g1,23078:32583029,6465412 +) +(1,23078:6630773,7150267:25952256,424439,6605 +h1,23078:6630773,7150267:0,0,0 +g1,23078:7626635,7150267 +g1,23078:8290543,7150267 +g1,23078:8954451,7150267 +g1,23078:9618359,7150267 +g1,23078:11278129,7150267 +h1,23078:12605945,7150267:0,0,0 +k1,23078:32583029,7150267:19977084 +g1,23078:32583029,7150267 +) +] +) +g1,23079:32583029,7156872 +g1,23079:6630773,7156872 +g1,23079:6630773,7156872 +g1,23079:32583029,7156872 +g1,23079:32583029,7156872 +) +h1,23079:6630773,7353480:0,0,0 +(1,23085:6630773,8218560:25952256,513147,115847 +h1,23082:6630773,8218560:983040,0,0 +g1,23082:10602910,8218560 +(1,23082:10602910,8218560:0,452978,115847 +r1,23152:14478294,8218560:3875384,568825,115847 +k1,23082:10602910,8218560:-3875384 +) +(1,23082:10602910,8218560:3875384,452978,115847 +k1,23082:10602910,8218560:3277 +h1,23082:14475017,8218560:0,411205,112570 +) +g1,23082:14677523,8218560 +g1,23082:16821861,8218560 +g1,23082:17376950,8218560 +g1,23082:18965542,8218560 +g1,23082:21041067,8218560 +g1,23082:22507762,8218560 +g1,23082:23477694,8218560 +g1,23082:25044659,8218560 +g1,23082:26400598,8218560 +g1,23083:26400598,8218560 +k1,23085:32583029,8218560:6182431 +g1,23085:32583029,8218560 +) +(1,23086:6630773,11049720:25952256,32768,229376 +(1,23086:6630773,11049720:0,32768,229376 +(1,23086:6630773,11049720:5505024,32768,229376 +r1,23152:12135797,11049720:5505024,262144,229376 +) +k1,23086:6630773,11049720:-5505024 +) +(1,23086:6630773,11049720:25952256,32768,0 +r1,23152:32583029,11049720:25952256,32768,0 +) +) +(1,23086:6630773,12681572:25952256,615776,14155 +(1,23086:6630773,12681572:2954625,582746,14155 +g1,23086:6630773,12681572 +g1,23086:9585398,12681572 +) +g1,23086:13664621,12681572 +k1,23086:32583029,12681572:15453388 +g1,23086:32583029,12681572 +) +(1,23090:6630773,13939868:25952256,513147,134348 +k1,23089:8720913,13939868:257753 +k1,23089:9970226,13939868:257753 +k1,23089:11400417,13939868:257752 +k1,23089:14420513,13939868:257753 +k1,23089:19495818,13939868:257753 +k1,23089:22664025,13939868:257753 +k1,23089:23869429,13939868:257753 +k1,23089:27299124,13939868:257752 +k1,23089:28946240,13939868:257753 +k1,23089:31015408,13939868:257753 +k1,23089:32583029,13939868:0 +) +(1,23090:6630773,14804948:25952256,505283,134348 +k1,23089:8592444,14804948:259701 +k1,23089:11936269,14804948:259701 +k1,23089:15268298,14804948:259701 +k1,23089:17021565,14804948:259701 +k1,23089:17967428,14804948:259701 +k1,23089:19598799,14804948:259702 +k1,23089:22936071,14804948:259701 +k1,23089:24810579,14804948:259701 +k1,23089:26181771,14804948:259701 +k1,23089:27638159,14804948:259701 +k1,23089:30711976,14804948:259701 +k1,23090:32583029,14804948:0 +) +(1,23090:6630773,15670028:25952256,513147,134348 +k1,23089:8621663,15670028:205034 +k1,23089:9358194,15670028:205034 +k1,23089:12143381,15670028:205035 +k1,23089:14975753,15670028:205034 +k1,23089:17939197,15670028:205034 +k1,23089:18760269,15670028:205034 +k1,23089:20399232,15670028:205035 +k1,23089:21192779,15670028:205034 +k1,23089:22589258,15670028:205034 +k1,23089:25374444,15670028:205034 +k1,23089:27805735,15670028:205034 +k1,23089:28542267,15670028:205035 +k1,23089:29103161,15670028:205034 +k1,23089:31227089,15670028:205034 +k1,23090:32583029,15670028:0 +) +(1,23090:6630773,16535108:25952256,513147,126483 +k1,23089:9462331,16535108:244852 +k1,23089:12953182,16535108:244853 +k1,23089:13825869,16535108:244852 +k1,23089:15089807,16535108:244853 +k1,23089:16701740,16535108:244852 +k1,23089:17605885,16535108:244853 +k1,23089:19164079,16535108:244852 +k1,23089:21220347,16535108:244853 +k1,23089:22859150,16535108:244852 +k1,23089:24124399,16535108:244853 +k1,23089:27033290,16535108:244852 +k1,23089:27937435,16535108:244853 +k1,23089:31266411,16535108:244852 +k1,23090:32583029,16535108:0 +) +(1,23090:6630773,17400188:25952256,513147,134348 +g1,23089:8972374,17400188 +g1,23089:12197400,17400188 +g1,23089:13964250,17400188 +g1,23089:16790817,17400188 +g1,23089:18429872,17400188 +g1,23089:19280529,17400188 +g1,23089:20227524,17400188 +g1,23089:22076950,17400188 +g1,23089:24361535,17400188 +g1,23089:26003211,17400188 +g1,23089:27946353,17400188 +g1,23089:29713203,17400188 +k1,23090:32583029,17400188:469899 +g1,23090:32583029,17400188 +) +(1,23091:6630773,19517006:25952256,564462,147783 +(1,23091:6630773,19517006:3348562,534184,12975 +g1,23091:6630773,19517006 +g1,23091:9979335,19517006 +) +k1,23091:32583028,19517006:19529072 +g1,23091:32583028,19517006 +) +(1,23096:6630773,20775302:25952256,513147,134348 +k1,23095:9956624,20775302:205682 +k1,23095:10778344,20775302:205682 +k1,23095:13564179,20775302:205683 +k1,23095:16397199,20775302:205682 +k1,23095:18284535,20775302:205682 +k1,23095:19235361,20775302:205682 +k1,23095:20092472,20775302:205683 +k1,23095:22479848,20775302:205682 +k1,23095:24074893,20775302:205682 +k1,23095:25848196,20775302:205682 +k1,23095:27367221,20775302:205683 +k1,23095:29384318,20775302:205682 +k1,23095:30351528,20775302:205682 +k1,23095:32583029,20775302:0 +) +(1,23096:6630773,21640382:25952256,505283,134348 +k1,23095:9891779,21640382:176882 +k1,23095:12623254,21640382:176882 +k1,23095:16046133,21640382:176881 +k1,23095:19203592,21640382:176882 +k1,23095:20712821,21640382:176882 +k1,23095:22630339,21640382:176882 +k1,23095:24403022,21640382:176882 +k1,23095:26634456,21640382:176881 +k1,23095:28967473,21640382:176882 +k1,23095:31303766,21640382:176882 +k1,23096:32583029,21640382:0 +) +(1,23096:6630773,22505462:25952256,513147,134348 +k1,23095:7946474,22505462:176030 +k1,23095:9313948,22505462:176029 +k1,23095:9845838,22505462:176030 +k1,23095:12717363,22505462:176029 +k1,23095:13841044,22505462:176030 +k1,23095:16274789,22505462:176030 +k1,23095:17840181,22505462:176029 +k1,23095:19283677,22505462:176030 +k1,23095:20773048,22505462:176029 +k1,23095:22343029,22505462:176030 +k1,23095:25029743,22505462:176030 +k1,23095:27139084,22505462:176029 +k1,23095:27966542,22505462:176030 +k1,23095:29474918,22505462:176029 +k1,23095:31391584,22505462:176030 +k1,23096:32583029,22505462:0 +) +(1,23096:6630773,23370542:25952256,513147,126483 +k1,23095:8400997,23370542:174423 +k1,23095:8990238,23370542:174398 +k1,23095:12697707,23370542:174423 +k1,23095:13891215,23370542:174423 +k1,23095:15158123,23370542:174423 +k1,23095:15991838,23370542:174423 +k1,23095:17862988,23370542:174423 +k1,23095:21063208,23370542:174423 +k1,23095:21853669,23370542:174423 +k1,23095:23815259,23370542:174423 +k1,23095:24605720,23370542:174423 +k1,23095:25799228,23370542:174423 +k1,23095:26423203,23370542:174398 +k1,23095:28131824,23370542:174423 +k1,23096:32583029,23370542:0 +) +(1,23096:6630773,24235622:25952256,513147,126483 +k1,23095:9441008,24235622:270060 +k1,23095:10528957,24235622:270060 +k1,23095:11154877,24235622:270060 +k1,23095:13549615,24235622:270061 +k1,23095:16654762,24235622:270060 +k1,23095:17793174,24235622:270060 +k1,23095:19155719,24235622:270060 +k1,23095:22121275,24235622:270060 +(1,23095:22121275,24235622:0,452978,115847 +r1,23152:25996659,24235622:3875384,568825,115847 +k1,23095:22121275,24235622:-3875384 +) +(1,23095:22121275,24235622:3875384,452978,115847 +k1,23095:22121275,24235622:3277 +h1,23095:25993382,24235622:0,411205,112570 +) +k1,23095:26266719,24235622:270060 +k1,23095:27188208,24235622:270061 +k1,23095:28870569,24235622:270060 +k1,23095:29496489,24235622:270060 +k1,23095:31426319,24235622:270060 +k1,23095:32583029,24235622:0 +) +(1,23096:6630773,25100702:25952256,513147,134348 +k1,23095:8669729,25100702:227541 +k1,23095:9253130,25100702:227541 +k1,23095:10613789,25100702:227541 +k1,23095:12524294,25100702:227540 +k1,23095:13876433,25100702:227541 +k1,23095:15497925,25100702:227541 +k1,23095:16744551,25100702:227541 +k1,23095:18406020,25100702:227541 +k1,23095:20977784,25100702:227541 +k1,23095:23539062,25100702:227541 +k1,23095:24433759,25100702:227541 +k1,23095:26257100,25100702:227540 +k1,23095:27438190,25100702:227541 +k1,23095:29960802,25100702:227541 +k1,23095:31563944,25100702:227541 +k1,23095:32583029,25100702:0 +) +(1,23096:6630773,25965782:25952256,513147,134348 +k1,23095:8108189,25965782:171283 +k1,23095:9176005,25965782:171283 +k1,23095:10881486,25965782:171283 +k1,23095:12244214,25965782:171283 +k1,23095:14212494,25965782:171283 +k1,23095:17096968,25965782:171283 +k1,23095:17927542,25965782:171282 +k1,23095:19117910,25965782:171283 +k1,23095:20678556,25965782:171283 +k1,23095:22899805,25965782:171283 +k1,23095:26051665,25965782:171283 +k1,23095:26578808,25965782:171283 +k1,23095:29132980,25965782:171283 +k1,23095:30698214,25965782:171283 +k1,23095:32583029,25965782:0 +) +(1,23096:6630773,26830862:25952256,505283,126483 +g1,23095:8715473,26830862 +g1,23095:11433906,26830862 +g1,23095:12319297,26830862 +k1,23096:32583029,26830862:17469932 +g1,23096:32583029,26830862 +) +v1,23098:6630773,27515717:0,393216,0 +(1,23112:6630773,33446494:25952256,6323993,196608 +g1,23112:6630773,33446494 +g1,23112:6630773,33446494 +g1,23112:6434165,33446494 +(1,23112:6434165,33446494:0,6323993,196608 +r1,23152:32779637,33446494:26345472,6520601,196608 +k1,23112:6434165,33446494:-26345472 +) +(1,23112:6434165,33446494:26345472,6323993,196608 +[1,23112:6630773,33446494:25952256,6127385,0 +(1,23100:6630773,27750154:25952256,431045,106246 +(1,23099:6630773,27750154:0,0,0 +g1,23099:6630773,27750154 +g1,23099:6630773,27750154 +g1,23099:6303093,27750154 +(1,23099:6303093,27750154:0,0,0 +) +g1,23099:6630773,27750154 +) +g1,23100:10282266,27750154 +g1,23100:11278128,27750154 +g1,23100:16257437,27750154 +g1,23100:16921345,27750154 +g1,23100:24556285,27750154 +g1,23100:29203640,27750154 +g1,23100:29867548,27750154 +h1,23100:31527318,27750154:0,0,0 +k1,23100:32583029,27750154:1055711 +g1,23100:32583029,27750154 +) +(1,23101:6630773,28435009:25952256,431045,106246 +h1,23101:6630773,28435009:0,0,0 +g1,23101:11942036,28435009 +g1,23101:14265714,28435009 +h1,23101:15593530,28435009:0,0,0 +k1,23101:32583030,28435009:16989500 +g1,23101:32583030,28435009 +) +(1,23111:6630773,29250936:25952256,424439,106246 +(1,23103:6630773,29250936:0,0,0 +g1,23103:6630773,29250936 +g1,23103:6630773,29250936 +g1,23103:6303093,29250936 +(1,23103:6303093,29250936:0,0,0 +) +g1,23103:6630773,29250936 +) +g1,23111:7626635,29250936 +g1,23111:7958589,29250936 +g1,23111:8290543,29250936 +g1,23111:10282267,29250936 +g1,23111:10614221,29250936 +g1,23111:10946175,29250936 +g1,23111:11278129,29250936 +g1,23111:11610083,29250936 +g1,23111:11942037,29250936 +g1,23111:12273991,29250936 +g1,23111:14265715,29250936 +g1,23111:17585254,29250936 +g1,23111:19908932,29250936 +g1,23111:21236748,29250936 +g1,23111:23892380,29250936 +h1,23111:27875827,29250936:0,0,0 +k1,23111:32583029,29250936:4707202 +g1,23111:32583029,29250936 +) +(1,23111:6630773,29935791:25952256,424439,86428 +h1,23111:6630773,29935791:0,0,0 +g1,23111:7626635,29935791 +g1,23111:8290543,29935791 +g1,23111:8622497,29935791 +g1,23111:8954451,29935791 +g1,23111:9286405,29935791 +g1,23111:9618359,29935791 +g1,23111:10282267,29935791 +g1,23111:13269853,29935791 +g1,23111:14265715,29935791 +g1,23111:14597669,29935791 +g1,23111:14929623,29935791 +g1,23111:15261577,29935791 +g1,23111:15593531,29935791 +g1,23111:15925485,29935791 +g1,23111:16257439,29935791 +g1,23111:16589393,29935791 +g1,23111:16921347,29935791 +g1,23111:17585255,29935791 +g1,23111:17917209,29935791 +g1,23111:18249163,29935791 +g1,23111:18581117,29935791 +g1,23111:18913071,29935791 +g1,23111:19245025,29935791 +g1,23111:19908933,29935791 +g1,23111:20240887,29935791 +g1,23111:21236749,29935791 +g1,23111:21568703,29935791 +g1,23111:21900657,29935791 +g1,23111:22232611,29935791 +g1,23111:22564565,29935791 +g1,23111:22896519,29935791 +g1,23111:23228473,29935791 +g1,23111:23892381,29935791 +g1,23111:24224335,29935791 +h1,23111:27875828,29935791:0,0,0 +k1,23111:32583029,29935791:4707201 +g1,23111:32583029,29935791 +) +(1,23111:6630773,30620646:25952256,424439,86428 +h1,23111:6630773,30620646:0,0,0 +g1,23111:7626635,30620646 +g1,23111:8290543,30620646 +g1,23111:8622497,30620646 +g1,23111:8954451,30620646 +g1,23111:9286405,30620646 +g1,23111:9618359,30620646 +g1,23111:10282267,30620646 +g1,23111:13269853,30620646 +g1,23111:14265715,30620646 +g1,23111:14597669,30620646 +g1,23111:14929623,30620646 +g1,23111:15261577,30620646 +g1,23111:15593531,30620646 +g1,23111:15925485,30620646 +g1,23111:16257439,30620646 +g1,23111:16589393,30620646 +g1,23111:16921347,30620646 +g1,23111:17585255,30620646 +g1,23111:17917209,30620646 +g1,23111:18249163,30620646 +g1,23111:18581117,30620646 +g1,23111:18913071,30620646 +g1,23111:19245025,30620646 +g1,23111:19908933,30620646 +g1,23111:20240887,30620646 +g1,23111:21236749,30620646 +g1,23111:21568703,30620646 +g1,23111:21900657,30620646 +g1,23111:22232611,30620646 +g1,23111:22564565,30620646 +g1,23111:22896519,30620646 +g1,23111:23228473,30620646 +g1,23111:23892381,30620646 +g1,23111:24224335,30620646 +h1,23111:27875828,30620646:0,0,0 +k1,23111:32583029,30620646:4707201 +g1,23111:32583029,30620646 +) +(1,23111:6630773,31305501:25952256,424439,86428 +h1,23111:6630773,31305501:0,0,0 +g1,23111:7626635,31305501 +g1,23111:8290543,31305501 +g1,23111:8622497,31305501 +g1,23111:8954451,31305501 +g1,23111:9286405,31305501 +g1,23111:9618359,31305501 +g1,23111:10282267,31305501 +g1,23111:13269853,31305501 +g1,23111:14265715,31305501 +g1,23111:14597669,31305501 +g1,23111:14929623,31305501 +g1,23111:15261577,31305501 +g1,23111:15593531,31305501 +g1,23111:15925485,31305501 +g1,23111:16257439,31305501 +g1,23111:16589393,31305501 +g1,23111:16921347,31305501 +g1,23111:17585255,31305501 +g1,23111:17917209,31305501 +g1,23111:18249163,31305501 +g1,23111:18581117,31305501 +g1,23111:18913071,31305501 +g1,23111:19245025,31305501 +g1,23111:19908933,31305501 +g1,23111:21236749,31305501 +g1,23111:21568703,31305501 +g1,23111:21900657,31305501 +g1,23111:22232611,31305501 +g1,23111:22564565,31305501 +g1,23111:22896519,31305501 +g1,23111:23228473,31305501 +g1,23111:23892381,31305501 +g1,23111:24224335,31305501 +h1,23111:27875828,31305501:0,0,0 +k1,23111:32583029,31305501:4707201 +g1,23111:32583029,31305501 +) +(1,23111:6630773,31990356:25952256,424439,86428 +h1,23111:6630773,31990356:0,0,0 +g1,23111:7626635,31990356 +g1,23111:8290543,31990356 +g1,23111:8622497,31990356 +g1,23111:8954451,31990356 +g1,23111:9286405,31990356 +g1,23111:9618359,31990356 +g1,23111:10282267,31990356 +g1,23111:13269853,31990356 +g1,23111:14265715,31990356 +g1,23111:14597669,31990356 +g1,23111:14929623,31990356 +g1,23111:15261577,31990356 +g1,23111:15593531,31990356 +g1,23111:15925485,31990356 +g1,23111:16257439,31990356 +g1,23111:16589393,31990356 +g1,23111:16921347,31990356 +g1,23111:17585255,31990356 +g1,23111:17917209,31990356 +g1,23111:18249163,31990356 +g1,23111:18581117,31990356 +g1,23111:18913071,31990356 +g1,23111:19245025,31990356 +g1,23111:19908933,31990356 +g1,23111:21236749,31990356 +g1,23111:21568703,31990356 +g1,23111:21900657,31990356 +g1,23111:22232611,31990356 +g1,23111:22564565,31990356 +g1,23111:22896519,31990356 +g1,23111:23228473,31990356 +g1,23111:23892381,31990356 +g1,23111:24224335,31990356 +h1,23111:27875828,31990356:0,0,0 +k1,23111:32583029,31990356:4707201 +g1,23111:32583029,31990356 +) +(1,23111:6630773,32675211:25952256,424439,86428 +h1,23111:6630773,32675211:0,0,0 +g1,23111:7626635,32675211 +g1,23111:8290543,32675211 +g1,23111:8622497,32675211 +g1,23111:8954451,32675211 +g1,23111:9286405,32675211 +g1,23111:9618359,32675211 +g1,23111:10282267,32675211 +g1,23111:13269853,32675211 +g1,23111:14265715,32675211 +g1,23111:14597669,32675211 +g1,23111:14929623,32675211 +g1,23111:15261577,32675211 +g1,23111:15593531,32675211 +g1,23111:15925485,32675211 +g1,23111:16257439,32675211 +g1,23111:16589393,32675211 +g1,23111:16921347,32675211 +g1,23111:17585255,32675211 +g1,23111:17917209,32675211 +g1,23111:18249163,32675211 +g1,23111:18581117,32675211 +g1,23111:18913071,32675211 +g1,23111:19245025,32675211 +g1,23111:19908933,32675211 +g1,23111:21236749,32675211 +g1,23111:21568703,32675211 +g1,23111:21900657,32675211 +g1,23111:22232611,32675211 +g1,23111:22564565,32675211 +g1,23111:22896519,32675211 +g1,23111:23228473,32675211 +g1,23111:23892381,32675211 +g1,23111:24224335,32675211 +h1,23111:27875828,32675211:0,0,0 +k1,23111:32583029,32675211:4707201 +g1,23111:32583029,32675211 +) +(1,23111:6630773,33360066:25952256,424439,86428 +h1,23111:6630773,33360066:0,0,0 +g1,23111:7626635,33360066 +g1,23111:8290543,33360066 +g1,23111:8622497,33360066 +g1,23111:8954451,33360066 +g1,23111:9286405,33360066 +g1,23111:9618359,33360066 +g1,23111:10282267,33360066 +g1,23111:13269853,33360066 +g1,23111:14265715,33360066 +g1,23111:14597669,33360066 +g1,23111:14929623,33360066 +g1,23111:15261577,33360066 +g1,23111:15593531,33360066 +g1,23111:15925485,33360066 +g1,23111:16257439,33360066 +g1,23111:16589393,33360066 +g1,23111:16921347,33360066 +g1,23111:17585255,33360066 +g1,23111:17917209,33360066 +g1,23111:18249163,33360066 +g1,23111:18581117,33360066 +g1,23111:18913071,33360066 +g1,23111:19245025,33360066 +g1,23111:19908933,33360066 +g1,23111:21236749,33360066 +g1,23111:21568703,33360066 +g1,23111:21900657,33360066 +g1,23111:22232611,33360066 +g1,23111:22564565,33360066 +g1,23111:22896519,33360066 +g1,23111:23228473,33360066 +g1,23111:23892381,33360066 +g1,23111:24224335,33360066 +h1,23111:27875828,33360066:0,0,0 +k1,23111:32583029,33360066:4707201 +g1,23111:32583029,33360066 +) +] +) +g1,23112:32583029,33446494 +g1,23112:6630773,33446494 +g1,23112:6630773,33446494 +g1,23112:32583029,33446494 +g1,23112:32583029,33446494 +) +h1,23112:6630773,33643102:0,0,0 +(1,23116:6630773,34508182:25952256,513147,134348 +h1,23115:6630773,34508182:983040,0,0 +g1,23115:8300630,34508182 +g1,23115:10741190,34508182 +g1,23115:13775506,34508182 +g1,23115:15177976,34508182 +g1,23115:16802613,34508182 +g1,23115:18395793,34508182 +g1,23115:18950882,34508182 +g1,23115:21274788,34508182 +(1,23115:21274788,34508182:0,414482,115847 +r1,23152:22688189,34508182:1413401,530329,115847 +k1,23115:21274788,34508182:-1413401 +) +(1,23115:21274788,34508182:1413401,414482,115847 +k1,23115:21274788,34508182:3277 +h1,23115:22684912,34508182:0,411205,112570 +) +g1,23115:22887418,34508182 +g1,23115:24069687,34508182 +g1,23115:26080331,34508182 +g1,23115:27076478,34508182 +g1,23115:28958672,34508182 +k1,23116:32583029,34508182:2326089 +g1,23116:32583029,34508182 +) +v1,23118:6630773,35193037:0,393216,0 +(1,23132:6630773,41047294:25952256,6247473,196608 +g1,23132:6630773,41047294 +g1,23132:6630773,41047294 +g1,23132:6434165,41047294 +(1,23132:6434165,41047294:0,6247473,196608 +r1,23152:32779637,41047294:26345472,6444081,196608 +k1,23132:6434165,41047294:-26345472 +) +(1,23132:6434165,41047294:26345472,6247473,196608 +[1,23132:6630773,41047294:25952256,6050865,0 +(1,23120:6630773,35427474:25952256,431045,106246 +(1,23119:6630773,35427474:0,0,0 +g1,23119:6630773,35427474 +g1,23119:6630773,35427474 +g1,23119:6303093,35427474 +(1,23119:6303093,35427474:0,0,0 +) +g1,23119:6630773,35427474 +) +g1,23120:10282266,35427474 +g1,23120:11278128,35427474 +g1,23120:16257437,35427474 +g1,23120:16921345,35427474 +g1,23120:24556285,35427474 +g1,23120:29203640,35427474 +g1,23120:29867548,35427474 +h1,23120:31527318,35427474:0,0,0 +k1,23120:32583029,35427474:1055711 +g1,23120:32583029,35427474 +) +(1,23121:6630773,36112329:25952256,431045,79822 +h1,23121:6630773,36112329:0,0,0 +k1,23121:6630773,36112329:0 +h1,23121:11942036,36112329:0,0,0 +k1,23121:32583028,36112329:20640992 +g1,23121:32583028,36112329 +) +(1,23131:6630773,36928256:25952256,398014,8257 +(1,23123:6630773,36928256:0,0,0 +g1,23123:6630773,36928256 +g1,23123:6630773,36928256 +g1,23123:6303093,36928256 +(1,23123:6303093,36928256:0,0,0 +) +g1,23123:6630773,36928256 +) +g1,23131:7626635,36928256 +g1,23131:7958589,36928256 +g1,23131:8290543,36928256 +g1,23131:10946175,36928256 +h1,23131:12937899,36928256:0,0,0 +k1,23131:32583029,36928256:19645130 +g1,23131:32583029,36928256 +) +(1,23131:6630773,37613111:25952256,424439,9908 +h1,23131:6630773,37613111:0,0,0 +g1,23131:7626635,37613111 +g1,23131:8290543,37613111 +g1,23131:8622497,37613111 +g1,23131:8954451,37613111 +g1,23131:9286405,37613111 +g1,23131:9618359,37613111 +g1,23131:10946175,37613111 +g1,23131:11278129,37613111 +h1,23131:12937899,37613111:0,0,0 +k1,23131:32583029,37613111:19645130 +g1,23131:32583029,37613111 +) +(1,23131:6630773,38297966:25952256,424439,9908 +h1,23131:6630773,38297966:0,0,0 +g1,23131:7626635,38297966 +g1,23131:8290543,38297966 +g1,23131:8622497,38297966 +g1,23131:8954451,38297966 +g1,23131:9286405,38297966 +g1,23131:9618359,38297966 +g1,23131:10946175,38297966 +g1,23131:11278129,38297966 +h1,23131:12937899,38297966:0,0,0 +k1,23131:32583029,38297966:19645130 +g1,23131:32583029,38297966 +) +(1,23131:6630773,38982821:25952256,424439,9908 +h1,23131:6630773,38982821:0,0,0 +g1,23131:7626635,38982821 +g1,23131:8290543,38982821 +g1,23131:8622497,38982821 +g1,23131:8954451,38982821 +g1,23131:9286405,38982821 +g1,23131:9618359,38982821 +g1,23131:10946175,38982821 +g1,23131:11278129,38982821 +h1,23131:12937899,38982821:0,0,0 +k1,23131:32583029,38982821:19645130 +g1,23131:32583029,38982821 +) +(1,23131:6630773,39667676:25952256,424439,9908 +h1,23131:6630773,39667676:0,0,0 +g1,23131:7626635,39667676 +g1,23131:8290543,39667676 +g1,23131:8622497,39667676 +g1,23131:8954451,39667676 +g1,23131:9286405,39667676 +g1,23131:9618359,39667676 +g1,23131:10946175,39667676 +g1,23131:11278129,39667676 +h1,23131:12937899,39667676:0,0,0 +k1,23131:32583029,39667676:19645130 +g1,23131:32583029,39667676 +) +(1,23131:6630773,40352531:25952256,424439,9908 +h1,23131:6630773,40352531:0,0,0 +g1,23131:7626635,40352531 +g1,23131:8290543,40352531 +g1,23131:8622497,40352531 +g1,23131:8954451,40352531 +g1,23131:9286405,40352531 +g1,23131:9618359,40352531 +g1,23131:10946175,40352531 +g1,23131:11278129,40352531 +h1,23131:12937899,40352531:0,0,0 +k1,23131:32583029,40352531:19645130 +g1,23131:32583029,40352531 +) +(1,23131:6630773,41037386:25952256,424439,9908 +h1,23131:6630773,41037386:0,0,0 +g1,23131:7626635,41037386 +g1,23131:8290543,41037386 +g1,23131:8622497,41037386 +g1,23131:8954451,41037386 +g1,23131:9286405,41037386 +g1,23131:9618359,41037386 +g1,23131:10946175,41037386 +g1,23131:11278129,41037386 +h1,23131:12937899,41037386:0,0,0 +k1,23131:32583029,41037386:19645130 +g1,23131:32583029,41037386 +) +] +) +g1,23132:32583029,41047294 +g1,23132:6630773,41047294 +g1,23132:6630773,41047294 +g1,23132:32583029,41047294 +g1,23132:32583029,41047294 +) +h1,23132:6630773,41243902:0,0,0 +(1,23136:6630773,42108982:25952256,513147,134348 +h1,23135:6630773,42108982:983040,0,0 +k1,23135:10423386,42108982:205172 +k1,23135:13463644,42108982:205171 +k1,23135:14616467,42108982:205172 +k1,23135:15177499,42108982:205172 +k1,23135:17263553,42108982:205171 +k1,23135:18451765,42108982:205172 +k1,23135:20468352,42108982:205172 +k1,23135:21482893,42108982:205171 +k1,23135:22458768,42108982:205172 +k1,23135:23494931,42108982:205166 +k1,23135:25350299,42108982:205171 +k1,23135:26997918,42108982:205172 +k1,23135:28000008,42108982:205172 +k1,23135:29888144,42108982:205171 +k1,23135:31391584,42108982:205172 +k1,23135:32583029,42108982:0 +) +(1,23136:6630773,42974062:25952256,505283,115847 +g1,23135:8242303,42974062 +g1,23135:9835483,42974062 +(1,23135:9835483,42974062:0,452978,115847 +r1,23152:14414291,42974062:4578808,568825,115847 +k1,23135:9835483,42974062:-4578808 +) +(1,23135:9835483,42974062:4578808,452978,115847 +k1,23135:9835483,42974062:3277 +h1,23135:14411014,42974062:0,411205,112570 +) +k1,23136:32583029,42974062:17995068 +g1,23136:32583029,42974062 +) +v1,23138:6630773,43658917:0,393216,0 +(1,23152:6630773,45402393:25952256,2136692,196608 +g1,23152:6630773,45402393 +g1,23152:6630773,45402393 +g1,23152:6434165,45402393 +(1,23152:6434165,45402393:0,2136692,196608 +r1,23152:32779637,45402393:26345472,2333300,196608 +k1,23152:6434165,45402393:-26345472 +) +(1,23152:6434165,45402393:26345472,2136692,196608 +[1,23152:6630773,45402393:25952256,1940084,0 +(1,23140:6630773,43893354:25952256,431045,106246 +(1,23139:6630773,43893354:0,0,0 +g1,23139:6630773,43893354 +g1,23139:6630773,43893354 +g1,23139:6303093,43893354 +(1,23139:6303093,43893354:0,0,0 +) +g1,23139:6630773,43893354 +) +g1,23140:10946174,43893354 +g1,23140:11942036,43893354 +g1,23140:17585253,43893354 +g1,23140:18249161,43893354 +h1,23140:25220194,43893354:0,0,0 +k1,23140:32583029,43893354:7362835 +g1,23140:32583029,43893354 +) +(1,23141:6630773,44578209:25952256,431045,106246 +h1,23141:6630773,44578209:0,0,0 +k1,23141:6630773,44578209:0 +h1,23141:12605944,44578209:0,0,0 +k1,23141:32583028,44578209:19977084 +g1,23141:32583028,44578209 +) +(1,23151:6630773,45394136:25952256,398014,8257 +(1,23143:6630773,45394136:0,0,0 +g1,23143:6630773,45394136 +g1,23143:6630773,45394136 +g1,23143:6303093,45394136 +(1,23143:6303093,45394136:0,0,0 +) +g1,23143:6630773,45394136 +) +g1,23151:7626635,45394136 +g1,23151:7958589,45394136 +g1,23151:8290543,45394136 +g1,23151:9950313,45394136 +g1,23151:11610083,45394136 +g1,23151:13601807,45394136 +g1,23151:15593531,45394136 +g1,23151:17585255,45394136 +g1,23151:19245025,45394136 +g1,23151:21236749,45394136 +g1,23151:23560427,45394136 +h1,23151:24888243,45394136:0,0,0 +k1,23151:32583029,45394136:7694786 +g1,23151:32583029,45394136 +) +] +) +g1,23152:32583029,45402393 +g1,23152:6630773,45402393 +g1,23152:6630773,45402393 +g1,23152:32583029,45402393 +g1,23152:32583029,45402393 +) +] +(1,23152:32583029,45706769:0,0,0 +g1,23152:32583029,45706769 +) +) +] +(1,23152:6630773,47279633:25952256,0,0 +h1,23152:6630773,47279633:25952256,0,0 +) +] +(1,23152:4262630,4025873:0,0,0 +[1,23152:-473656,4025873:0,0,0 +(1,23152:-473656,-710413:0,0,0 +(1,23152:-473656,-710413:0,0,0 +g1,23152:-473656,-710413 ) -k1,21457:62087500,1915420:25935872 -g1,21457:62087500,1915420 +g1,23152:-473656,-710413 ) ] ) -g1,21457:36675916,2439708 -(1,21457:36675916,2439708:1179648,16384,0 -r1,22975:37855564,2439708:1179648,16384,0 +] +!29256 +}399 +Input:3730:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3731:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3732:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3733:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3734:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3735:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!576 +{400 +[1,23215:4262630,47279633:28320399,43253760,0 +(1,23215:4262630,4025873:0,0,0 +[1,23215:-473656,4025873:0,0,0 +(1,23215:-473656,-710413:0,0,0 +(1,23215:-473656,-644877:0,0,0 +k1,23215:-473656,-644877:-65536 ) +(1,23215:-473656,4736287:0,0,0 +k1,23215:-473656,4736287:5209943 ) -k1,22975:3078556,2439708:-34777008 +g1,23215:-473656,-710413 ) ] -[1,22975:3078558,4812305:0,0,0 -(1,22975:3078558,49800853:0,16384,2228224 -k1,22975:1358238,49800853:-1720320 -(1,21457:1358238,49800853:1720320,16384,2228224 -(1,21457:1358238,49800853:1179648,16384,0 -r1,22975:2537886,49800853:1179648,16384,0 ) -g1,21457:3062174,49800853 -(1,21457:3062174,52029077:16384,1703936,0 -[1,21457:3062174,52029077:25952256,1703936,0 -(1,21457:3062174,51504789:25952256,1179648,0 -(1,21457:3062174,51504789:16384,1179648,0 -r1,22975:3078558,51504789:16384,1179648,0 +[1,23215:6630773,47279633:25952256,43253760,0 +[1,23215:6630773,4812305:25952256,786432,0 +(1,23215:6630773,4812305:25952256,513147,126483 +(1,23215:6630773,4812305:25952256,513147,126483 +g1,23215:3078558,4812305 +[1,23215:3078558,4812305:0,0,0 +(1,23215:3078558,2439708:0,1703936,0 +k1,23215:1358238,2439708:-1720320 +(1,21670:1358238,2439708:1720320,1703936,0 +(1,21670:1358238,2439708:1179648,16384,0 +r1,23215:2537886,2439708:1179648,16384,0 +) +g1,21670:3062174,2439708 +(1,21670:3062174,2439708:16384,1703936,0 +[1,21670:3062174,2439708:25952256,1703936,0 +(1,21670:3062174,1915420:25952256,1179648,0 +(1,21670:3062174,1915420:16384,1179648,0 +r1,23215:3078558,1915420:16384,1179648,0 ) -k1,21457:29014430,51504789:25935872 -g1,21457:29014430,51504789 +k1,21670:29014430,1915420:25935872 +g1,21670:29014430,1915420 ) ] ) ) ) ] -[1,22975:3078558,4812305:0,0,0 -(1,22975:3078558,49800853:0,16384,2228224 -g1,22975:29030814,49800853 -g1,22975:36135244,49800853 -(1,21457:36135244,49800853:1720320,16384,2228224 -(1,21457:36135244,52029077:16384,1703936,0 -[1,21457:36135244,52029077:25952256,1703936,0 -(1,21457:36135244,51504789:25952256,1179648,0 -(1,21457:36135244,51504789:16384,1179648,0 -r1,22975:36151628,51504789:16384,1179648,0 +[1,23215:3078558,4812305:0,0,0 +(1,23215:3078558,2439708:0,1703936,0 +g1,23215:29030814,2439708 +g1,23215:36135244,2439708 +(1,21670:36135244,2439708:1720320,1703936,0 +(1,21670:36135244,2439708:16384,1703936,0 +[1,21670:36135244,2439708:25952256,1703936,0 +(1,21670:36135244,1915420:25952256,1179648,0 +(1,21670:36135244,1915420:16384,1179648,0 +r1,23215:36151628,1915420:16384,1179648,0 ) -k1,21457:62087500,51504789:25935872 -g1,21457:62087500,51504789 +k1,21670:62087500,1915420:25935872 +g1,21670:62087500,1915420 ) ] ) -g1,21457:36675916,49800853 -(1,21457:36675916,49800853:1179648,16384,0 -r1,22975:37855564,49800853:1179648,16384,0 +g1,21670:36675916,2439708 +(1,21670:36675916,2439708:1179648,16384,0 +r1,23215:37855564,2439708:1179648,16384,0 ) ) -k1,22975:3078556,49800853:-34777008 -) -] -g1,22975:6630773,4812305 -k1,22975:21078841,4812305:13252691 -g1,22975:22701512,4812305 -g1,22975:23350318,4812305 -g1,22975:24759997,4812305 -g1,22975:28372341,4812305 -g1,22975:30105768,4812305 -) -) -] -[1,22975:6630773,45706769:25952256,40108032,0 -(1,22975:6630773,45706769:25952256,40108032,0 -(1,22975:6630773,45706769:0,0,0 -g1,22975:6630773,45706769 -) -[1,22975:6630773,45706769:25952256,40108032,0 -v1,22905:6630773,6254097:0,393216,0 -(1,22919:6630773,11806867:25952256,5945986,196608 -g1,22919:6630773,11806867 -g1,22919:6630773,11806867 -g1,22919:6434165,11806867 -(1,22919:6434165,11806867:0,5945986,196608 -r1,22975:32779637,11806867:26345472,6142594,196608 -k1,22919:6434165,11806867:-26345472 -) -(1,22919:6434165,11806867:26345472,5945986,196608 -[1,22919:6630773,11806867:25952256,5749378,0 -(1,22907:6630773,6468007:25952256,410518,101187 -(1,22906:6630773,6468007:0,0,0 -g1,22906:6630773,6468007 -g1,22906:6630773,6468007 -g1,22906:6303093,6468007 -(1,22906:6303093,6468007:0,0,0 -) -g1,22906:6630773,6468007 -) -g1,22907:10108376,6468007 -g1,22907:11056814,6468007 -g1,22907:15799000,6468007 -g1,22907:16431292,6468007 -g1,22907:23702643,6468007 -g1,22907:28128683,6468007 -g1,22907:28760975,6468007 -h1,22907:30341704,6468007:0,0,0 -k1,22907:32583029,6468007:2241325 -g1,22907:32583029,6468007 -) -(1,22908:6630773,7134185:25952256,410518,76021 -h1,22908:6630773,7134185:0,0,0 -k1,22908:6630773,7134185:0 -h1,22908:11689104,7134185:0,0,0 -k1,22908:32583028,7134185:20893924 -g1,22908:32583028,7134185 -) -(1,22918:6630773,7800363:25952256,379060,7863 -(1,22910:6630773,7800363:0,0,0 -g1,22910:6630773,7800363 -g1,22910:6630773,7800363 -g1,22910:6303093,7800363 -(1,22910:6303093,7800363:0,0,0 -) -g1,22910:6630773,7800363 -) -g1,22918:7579210,7800363 -g1,22918:7895356,7800363 -g1,22918:8211502,7800363 -g1,22918:10740668,7800363 -h1,22918:12637542,7800363:0,0,0 -k1,22918:32583030,7800363:19945488 -g1,22918:32583030,7800363 -) -(1,22918:6630773,8466541:25952256,404226,9436 -h1,22918:6630773,8466541:0,0,0 -g1,22918:7579210,8466541 -g1,22918:8211502,8466541 -g1,22918:8527648,8466541 -g1,22918:8843794,8466541 -g1,22918:9159940,8466541 -g1,22918:9476086,8466541 -g1,22918:10740669,8466541 -g1,22918:11056815,8466541 -h1,22918:12637543,8466541:0,0,0 -k1,22918:32583029,8466541:19945486 -g1,22918:32583029,8466541 -) -(1,22918:6630773,9132719:25952256,404226,9436 -h1,22918:6630773,9132719:0,0,0 -g1,22918:7579210,9132719 -g1,22918:8211502,9132719 -g1,22918:8527648,9132719 -g1,22918:8843794,9132719 -g1,22918:9159940,9132719 -g1,22918:9476086,9132719 -g1,22918:10740669,9132719 -g1,22918:11056815,9132719 -h1,22918:12637543,9132719:0,0,0 -k1,22918:32583029,9132719:19945486 -g1,22918:32583029,9132719 -) -(1,22918:6630773,9798897:25952256,404226,9436 -h1,22918:6630773,9798897:0,0,0 -g1,22918:7579210,9798897 -g1,22918:8211502,9798897 -g1,22918:8527648,9798897 -g1,22918:8843794,9798897 -g1,22918:9159940,9798897 -g1,22918:9476086,9798897 -g1,22918:10740669,9798897 -g1,22918:11056815,9798897 -h1,22918:12637543,9798897:0,0,0 -k1,22918:32583029,9798897:19945486 -g1,22918:32583029,9798897 -) -(1,22918:6630773,10465075:25952256,404226,9436 -h1,22918:6630773,10465075:0,0,0 -g1,22918:7579210,10465075 -g1,22918:8211502,10465075 -g1,22918:8527648,10465075 -g1,22918:8843794,10465075 -g1,22918:9159940,10465075 -g1,22918:9476086,10465075 -g1,22918:10740669,10465075 -g1,22918:11056815,10465075 -h1,22918:12637543,10465075:0,0,0 -k1,22918:32583029,10465075:19945486 -g1,22918:32583029,10465075 -) -(1,22918:6630773,11131253:25952256,404226,9436 -h1,22918:6630773,11131253:0,0,0 -g1,22918:7579210,11131253 -g1,22918:8211502,11131253 -g1,22918:8527648,11131253 -g1,22918:8843794,11131253 -g1,22918:9159940,11131253 -g1,22918:9476086,11131253 -g1,22918:10740669,11131253 -g1,22918:11056815,11131253 -h1,22918:12637543,11131253:0,0,0 -k1,22918:32583029,11131253:19945486 -g1,22918:32583029,11131253 -) -(1,22918:6630773,11797431:25952256,404226,9436 -h1,22918:6630773,11797431:0,0,0 -g1,22918:7579210,11797431 -g1,22918:8211502,11797431 -g1,22918:8527648,11797431 -g1,22918:8843794,11797431 -g1,22918:9159940,11797431 -g1,22918:9476086,11797431 -g1,22918:10740669,11797431 -g1,22918:11056815,11797431 -h1,22918:12637543,11797431:0,0,0 -k1,22918:32583029,11797431:19945486 -g1,22918:32583029,11797431 -) -] -) -g1,22919:32583029,11806867 -g1,22919:6630773,11806867 -g1,22919:6630773,11806867 -g1,22919:32583029,11806867 -g1,22919:32583029,11806867 -) -h1,22919:6630773,12003475:0,0,0 -(1,22923:6630773,13324850:25952256,513147,134348 -h1,22922:6630773,13324850:983040,0,0 -k1,22922:10423386,13324850:205172 -k1,22922:13463644,13324850:205171 -k1,22922:14616467,13324850:205172 -k1,22922:15177499,13324850:205172 -k1,22922:17263553,13324850:205171 -k1,22922:18451765,13324850:205172 -k1,22922:20468352,13324850:205172 -k1,22922:21482893,13324850:205171 -k1,22922:22458768,13324850:205172 -k1,22922:23494931,13324850:205166 -k1,22922:25350299,13324850:205171 -k1,22922:26997918,13324850:205172 -k1,22922:28000008,13324850:205172 -k1,22922:29888144,13324850:205171 -k1,22922:31391584,13324850:205172 -k1,22922:32583029,13324850:0 -) -(1,22923:6630773,14166338:25952256,505283,115847 -g1,22922:8242303,14166338 -g1,22922:9835483,14166338 -(1,22922:9835483,14166338:0,452978,115847 -r1,22975:14414291,14166338:4578808,568825,115847 -k1,22922:9835483,14166338:-4578808 -) -(1,22922:9835483,14166338:4578808,452978,115847 -k1,22922:9835483,14166338:3277 -h1,22922:14411014,14166338:0,411205,112570 -) -k1,22923:32583029,14166338:17995068 -g1,22923:32583029,14166338 -) -v1,22925:6630773,15312403:0,393216,0 -(1,22939:6630773,20865173:25952256,5945986,196608 -g1,22939:6630773,20865173 -g1,22939:6630773,20865173 -g1,22939:6434165,20865173 -(1,22939:6434165,20865173:0,5945986,196608 -r1,22975:32779637,20865173:26345472,6142594,196608 -k1,22939:6434165,20865173:-26345472 -) -(1,22939:6434165,20865173:26345472,5945986,196608 -[1,22939:6630773,20865173:25952256,5749378,0 -(1,22927:6630773,15526313:25952256,410518,101187 -(1,22926:6630773,15526313:0,0,0 -g1,22926:6630773,15526313 -g1,22926:6630773,15526313 -g1,22926:6303093,15526313 -(1,22926:6303093,15526313:0,0,0 -) -g1,22926:6630773,15526313 -) -g1,22927:10740667,15526313 -g1,22927:11689105,15526313 -g1,22927:17063582,15526313 -g1,22927:17695874,15526313 -h1,22927:24334934,15526313:0,0,0 -k1,22927:32583029,15526313:8248095 -g1,22927:32583029,15526313 -) -(1,22928:6630773,16192491:25952256,410518,101187 -h1,22928:6630773,16192491:0,0,0 -k1,22928:6630773,16192491:0 -h1,22928:12321396,16192491:0,0,0 -k1,22928:32583028,16192491:20261632 -g1,22928:32583028,16192491 -) -(1,22938:6630773,16858669:25952256,379060,7863 -(1,22930:6630773,16858669:0,0,0 -g1,22930:6630773,16858669 -g1,22930:6630773,16858669 -g1,22930:6303093,16858669 -(1,22930:6303093,16858669:0,0,0 -) -g1,22930:6630773,16858669 -) -g1,22938:7579210,16858669 -g1,22938:7895356,16858669 -g1,22938:8211502,16858669 -g1,22938:9792231,16858669 -g1,22938:11372960,16858669 -g1,22938:13269834,16858669 -g1,22938:15166708,16858669 -g1,22938:17063582,16858669 -g1,22938:18644311,16858669 -g1,22938:20541185,16858669 -g1,22938:22754205,16858669 -h1,22938:24018788,16858669:0,0,0 -k1,22938:32583029,16858669:8564241 -g1,22938:32583029,16858669 -) -(1,22938:6630773,17524847:25952256,388497,9436 -h1,22938:6630773,17524847:0,0,0 -g1,22938:7579210,17524847 -g1,22938:8211502,17524847 -g1,22938:8527648,17524847 -g1,22938:8843794,17524847 -g1,22938:9159940,17524847 -g1,22938:9792232,17524847 -g1,22938:10108378,17524847 -g1,22938:10424524,17524847 -g1,22938:10740670,17524847 -g1,22938:11372962,17524847 -g1,22938:11689108,17524847 -g1,22938:12005254,17524847 -g1,22938:12321400,17524847 -g1,22938:12637546,17524847 -g1,22938:13269838,17524847 -g1,22938:13585984,17524847 -g1,22938:13902130,17524847 -g1,22938:14218276,17524847 -g1,22938:14534422,17524847 -g1,22938:15166714,17524847 -g1,22938:15482860,17524847 -g1,22938:15799006,17524847 -g1,22938:16115152,17524847 -g1,22938:17063589,17524847 -g1,22938:17379735,17524847 -g1,22938:17695881,17524847 -g1,22938:18012027,17524847 -g1,22938:18644319,17524847 -g1,22938:18960465,17524847 -g1,22938:19276611,17524847 -g1,22938:19592757,17524847 -g1,22938:19908903,17524847 -g1,22938:20541195,17524847 -g1,22938:20857341,17524847 -g1,22938:21173487,17524847 -g1,22938:21489633,17524847 -g1,22938:21805779,17524847 -g1,22938:22121925,17524847 -g1,22938:22754217,17524847 -g1,22938:23070363,17524847 -g1,22938:23386509,17524847 -h1,22938:24018800,17524847:0,0,0 -k1,22938:32583029,17524847:8564229 -g1,22938:32583029,17524847 -) -(1,22938:6630773,18191025:25952256,388497,9436 -h1,22938:6630773,18191025:0,0,0 -g1,22938:7579210,18191025 -g1,22938:8211502,18191025 -g1,22938:8527648,18191025 -g1,22938:8843794,18191025 -g1,22938:9159940,18191025 -g1,22938:9792232,18191025 -g1,22938:10108378,18191025 -g1,22938:10424524,18191025 -g1,22938:10740670,18191025 -g1,22938:11372962,18191025 -g1,22938:11689108,18191025 -g1,22938:12005254,18191025 -g1,22938:12321400,18191025 -g1,22938:12637546,18191025 -g1,22938:13269838,18191025 -g1,22938:13585984,18191025 -g1,22938:13902130,18191025 -g1,22938:14218276,18191025 -g1,22938:14534422,18191025 -g1,22938:15166714,18191025 -g1,22938:15482860,18191025 -g1,22938:15799006,18191025 -g1,22938:16115152,18191025 -g1,22938:17063589,18191025 -g1,22938:17379735,18191025 -g1,22938:17695881,18191025 -g1,22938:18012027,18191025 -g1,22938:18644319,18191025 -g1,22938:18960465,18191025 -g1,22938:19276611,18191025 -g1,22938:19592757,18191025 -g1,22938:19908903,18191025 -g1,22938:20541195,18191025 -g1,22938:20857341,18191025 -g1,22938:21173487,18191025 -g1,22938:21489633,18191025 -g1,22938:21805779,18191025 -g1,22938:22121925,18191025 -g1,22938:22754217,18191025 -g1,22938:23070363,18191025 -g1,22938:23386509,18191025 -h1,22938:24018800,18191025:0,0,0 -k1,22938:32583029,18191025:8564229 -g1,22938:32583029,18191025 -) -(1,22938:6630773,18857203:25952256,388497,9436 -h1,22938:6630773,18857203:0,0,0 -g1,22938:7579210,18857203 -g1,22938:8211502,18857203 -g1,22938:8527648,18857203 -g1,22938:8843794,18857203 -g1,22938:9159940,18857203 -g1,22938:9792232,18857203 -g1,22938:10108378,18857203 -g1,22938:10424524,18857203 -g1,22938:10740670,18857203 -g1,22938:11372962,18857203 -g1,22938:11689108,18857203 -g1,22938:12005254,18857203 -g1,22938:12321400,18857203 -g1,22938:12637546,18857203 -g1,22938:13269838,18857203 -g1,22938:13585984,18857203 -g1,22938:13902130,18857203 -g1,22938:14218276,18857203 -g1,22938:14534422,18857203 -g1,22938:15166714,18857203 -g1,22938:15482860,18857203 -g1,22938:15799006,18857203 -g1,22938:16115152,18857203 -g1,22938:17063589,18857203 -g1,22938:17379735,18857203 -g1,22938:17695881,18857203 -g1,22938:18012027,18857203 -g1,22938:18644319,18857203 -g1,22938:18960465,18857203 -g1,22938:19276611,18857203 -g1,22938:19592757,18857203 -g1,22938:19908903,18857203 -g1,22938:20541195,18857203 -g1,22938:20857341,18857203 -g1,22938:21173487,18857203 -g1,22938:21489633,18857203 -g1,22938:21805779,18857203 -g1,22938:22121925,18857203 -g1,22938:22754217,18857203 -g1,22938:23070363,18857203 -g1,22938:23386509,18857203 -h1,22938:24018800,18857203:0,0,0 -k1,22938:32583029,18857203:8564229 -g1,22938:32583029,18857203 -) -(1,22938:6630773,19523381:25952256,388497,9436 -h1,22938:6630773,19523381:0,0,0 -g1,22938:7579210,19523381 -g1,22938:8211502,19523381 -g1,22938:8527648,19523381 -g1,22938:8843794,19523381 -g1,22938:9159940,19523381 -g1,22938:9792232,19523381 -g1,22938:10108378,19523381 -g1,22938:10424524,19523381 -g1,22938:10740670,19523381 -g1,22938:11372962,19523381 -g1,22938:11689108,19523381 -g1,22938:12005254,19523381 -g1,22938:12321400,19523381 -g1,22938:12637546,19523381 -g1,22938:13269838,19523381 -g1,22938:13585984,19523381 -g1,22938:13902130,19523381 -g1,22938:14218276,19523381 -g1,22938:14534422,19523381 -g1,22938:15166714,19523381 -g1,22938:15482860,19523381 -g1,22938:15799006,19523381 -g1,22938:16115152,19523381 -g1,22938:17063589,19523381 -g1,22938:17379735,19523381 -g1,22938:17695881,19523381 -g1,22938:18012027,19523381 -g1,22938:18644319,19523381 -g1,22938:18960465,19523381 -g1,22938:19276611,19523381 -g1,22938:19592757,19523381 -g1,22938:19908903,19523381 -g1,22938:20541195,19523381 -g1,22938:20857341,19523381 -g1,22938:21173487,19523381 -g1,22938:21489633,19523381 -g1,22938:21805779,19523381 -g1,22938:22121925,19523381 -g1,22938:22754217,19523381 -g1,22938:23070363,19523381 -g1,22938:23386509,19523381 -h1,22938:24018800,19523381:0,0,0 -k1,22938:32583029,19523381:8564229 -g1,22938:32583029,19523381 -) -(1,22938:6630773,20189559:25952256,388497,9436 -h1,22938:6630773,20189559:0,0,0 -g1,22938:7579210,20189559 -g1,22938:8211502,20189559 -g1,22938:8527648,20189559 -g1,22938:8843794,20189559 -g1,22938:9159940,20189559 -g1,22938:9792232,20189559 -g1,22938:10108378,20189559 -g1,22938:10424524,20189559 -g1,22938:10740670,20189559 -g1,22938:11372962,20189559 -g1,22938:11689108,20189559 -g1,22938:12005254,20189559 -g1,22938:12321400,20189559 -g1,22938:12637546,20189559 -g1,22938:13269838,20189559 -g1,22938:13585984,20189559 -g1,22938:13902130,20189559 -g1,22938:14218276,20189559 -g1,22938:14534422,20189559 -g1,22938:15166714,20189559 -g1,22938:15482860,20189559 -g1,22938:15799006,20189559 -g1,22938:16115152,20189559 -g1,22938:17063589,20189559 -g1,22938:17379735,20189559 -g1,22938:17695881,20189559 -g1,22938:18012027,20189559 -g1,22938:18644319,20189559 -g1,22938:18960465,20189559 -g1,22938:19276611,20189559 -g1,22938:19592757,20189559 -g1,22938:19908903,20189559 -g1,22938:20541195,20189559 -g1,22938:20857341,20189559 -g1,22938:21173487,20189559 -g1,22938:21489633,20189559 -g1,22938:21805779,20189559 -g1,22938:22121925,20189559 -g1,22938:22754217,20189559 -g1,22938:23070363,20189559 -g1,22938:23386509,20189559 -h1,22938:24018800,20189559:0,0,0 -k1,22938:32583029,20189559:8564229 -g1,22938:32583029,20189559 -) -(1,22938:6630773,20855737:25952256,388497,9436 -h1,22938:6630773,20855737:0,0,0 -g1,22938:7579210,20855737 -g1,22938:8211502,20855737 -g1,22938:8527648,20855737 -g1,22938:8843794,20855737 -g1,22938:9159940,20855737 -g1,22938:9792232,20855737 -g1,22938:10108378,20855737 -g1,22938:10424524,20855737 -g1,22938:10740670,20855737 -g1,22938:11372962,20855737 -g1,22938:11689108,20855737 -g1,22938:12005254,20855737 -g1,22938:12321400,20855737 -g1,22938:12637546,20855737 -g1,22938:13269838,20855737 -g1,22938:13585984,20855737 -g1,22938:13902130,20855737 -g1,22938:14218276,20855737 -g1,22938:14534422,20855737 -g1,22938:15166714,20855737 -g1,22938:15482860,20855737 -g1,22938:15799006,20855737 -g1,22938:16115152,20855737 -g1,22938:17063589,20855737 -g1,22938:17379735,20855737 -g1,22938:17695881,20855737 -g1,22938:18012027,20855737 -g1,22938:18644319,20855737 -g1,22938:18960465,20855737 -g1,22938:19276611,20855737 -g1,22938:19592757,20855737 -g1,22938:19908903,20855737 -g1,22938:20541195,20855737 -g1,22938:20857341,20855737 -g1,22938:21173487,20855737 -g1,22938:21489633,20855737 -g1,22938:21805779,20855737 -g1,22938:22121925,20855737 -g1,22938:22754217,20855737 -g1,22938:23070363,20855737 -g1,22938:23386509,20855737 -h1,22938:24018800,20855737:0,0,0 -k1,22938:32583029,20855737:8564229 -g1,22938:32583029,20855737 -) -] -) -g1,22939:32583029,20865173 -g1,22939:6630773,20865173 -g1,22939:6630773,20865173 -g1,22939:32583029,20865173 -g1,22939:32583029,20865173 -) -h1,22939:6630773,21061781:0,0,0 -(1,22943:6630773,22383155:25952256,513147,134348 -h1,22942:6630773,22383155:983040,0,0 -k1,22942:8953275,22383155:195859 -k1,22942:9915250,22383155:195859 -k1,22942:13136906,22383155:195859 -k1,22942:13948803,22383155:195859 -k1,22942:16772000,22383155:195859 -k1,22942:18978504,22383155:195859 -k1,22942:20563726,22383155:195859 -k1,22942:22966183,22383155:195860 -k1,22942:23923570,22383155:195859 -k1,22942:26558679,22383155:195859 -k1,22942:27826707,22383155:195859 -k1,22942:28788682,22383155:195859 -k1,22942:29643833,22383155:195859 -k1,22942:31478747,22383155:195859 -k1,22942:32583029,22383155:0 -) -(1,22943:6630773,23224643:25952256,505283,7863 -g1,22942:7577768,23224643 -g1,22942:10242461,23224643 -g1,22942:11093118,23224643 -g1,22942:12107615,23224643 -k1,22943:32583030,23224643:19576916 -g1,22943:32583030,23224643 -) -(1,22944:6630773,25315903:25952256,555811,12975 -(1,22944:6630773,25315903:3348562,534184,12975 -g1,22944:6630773,25315903 -g1,22944:9979335,25315903 -) -k1,22944:32583030,25315903:20000540 -g1,22944:32583030,25315903 -) -(1,22949:6630773,26550607:25952256,513147,134348 -k1,22948:9312234,26550607:146528 -k1,22948:11685018,26550607:146527 -k1,22948:12363043,26550607:146528 -k1,22948:13722641,26550607:146527 -k1,22948:17044388,26550607:146528 -k1,22948:18584866,26550607:146527 -k1,22948:21055956,26550607:146528 -k1,22948:21853912,26550607:146528 -k1,22948:23019524,26550607:146527 -k1,22948:25651833,26550607:146528 -k1,22948:26457652,26550607:146527 -k1,22948:29114864,26550607:146528 -k1,22948:32583029,26550607:0 -) -(1,22949:6630773,27392095:25952256,513147,134348 -k1,22948:7562531,27392095:248873 -k1,22948:9320043,27392095:248873 -k1,22948:12380410,27392095:248872 -k1,22948:15702266,27392095:248873 -k1,22948:17363440,27392095:248873 -k1,22948:18803758,27392095:248873 -k1,22948:20667437,27392095:248872 -k1,22948:23942107,27392095:248873 -k1,22948:25138631,27392095:248873 -k1,22948:26763105,27392095:248873 -k1,22948:28666761,27392095:248872 -k1,22948:29898674,27392095:248873 -k1,22949:32583029,27392095:0 -) -(1,22949:6630773,28233583:25952256,513147,126483 -k1,22948:8189320,28233583:226200 -k1,22948:9982486,28233583:226200 -k1,22948:11400131,28233583:226200 -k1,22948:13222132,28233583:226200 -k1,22948:14372390,28233583:226200 -k1,22948:15617675,28233583:226200 -k1,22948:17545845,28233583:226200 -k1,22948:19552003,28233583:226200 -k1,22948:22004460,28233583:226200 -k1,22948:24991036,28233583:226200 -k1,22948:27518205,28233583:226200 -k1,22948:29312682,28233583:226200 -k1,22948:30190310,28233583:226200 -k1,22948:32583029,28233583:0 -) -(1,22949:6630773,29075071:25952256,513147,126483 -k1,22948:7840568,29075071:190710 -k1,22948:10793622,29075071:190711 -k1,22948:13266296,29075071:190710 -k1,22948:15467651,29075071:190710 -k1,22948:16942867,29075071:190710 -k1,22948:19304130,29075071:190711 -k1,22948:20242606,29075071:190710 -k1,22948:22847662,29075071:190710 -k1,22948:25623767,29075071:190710 -k1,22948:26465906,29075071:190711 -k1,22948:27071450,29075071:190701 -k1,22948:29548712,29075071:190711 -k1,22948:31297213,29075071:190710 -k1,22948:32583029,29075071:0 -) -(1,22949:6630773,29916559:25952256,513147,134348 -k1,22948:9135105,29916559:240063 -k1,22948:11086314,29916559:240064 -k1,22948:12517822,29916559:240063 -k1,22948:14513595,29916559:240063 -k1,22948:17870551,29916559:240064 -k1,22948:18762042,29916559:240063 -k1,22948:20021190,29916559:240063 -k1,22948:24772096,29916559:240063 -k1,22948:25671452,29916559:240064 -k1,22948:27363137,29916559:240063 -k1,22948:28262492,29916559:240063 -k1,22948:30199283,29916559:240064 -k1,22948:31422386,29916559:240063 -k1,22949:32583029,29916559:0 -) -(1,22949:6630773,30758047:25952256,513147,126483 -k1,22948:8561735,30758047:194258 -k1,22948:9383829,30758047:194259 -k1,22948:11275469,30758047:194258 -k1,22948:13167766,30758047:194259 -k1,22948:14381109,30758047:194258 -k1,22948:17525143,30758047:194259 -k1,22948:18702441,30758047:194258 -k1,22948:21598749,30758047:194259 -k1,22948:24074971,30758047:194258 -k1,22948:26279875,30758047:194259 -k1,22948:27493218,30758047:194258 -k1,22948:30466204,30758047:194259 -(1,22948:30466204,30758047:0,452978,115847 -r1,22975:32583029,30758047:2116825,568825,115847 -k1,22948:30466204,30758047:-2116825 -) -(1,22948:30466204,30758047:2116825,452978,115847 -k1,22948:30466204,30758047:3277 -h1,22948:32579752,30758047:0,411205,112570 -) -k1,22948:32583029,30758047:0 -) -(1,22949:6630773,31599535:25952256,513147,134348 -k1,22948:8752232,31599535:161933 -k1,22948:10774733,31599535:161934 -k1,22948:12628806,31599535:161933 -k1,22948:16017733,31599535:161934 -k1,22948:19078979,31599535:161933 -k1,22948:20808534,31599535:161934 -k1,22948:21989552,31599535:161933 -k1,22948:23706000,31599535:161934 -k1,22948:26309804,31599535:161933 -k1,22948:29091867,31599535:161934 -k1,22948:31966991,31599535:161933 -k1,22949:32583029,31599535:0 -) -(1,22949:6630773,32441023:25952256,513147,134348 -k1,22948:8262014,32441023:209110 -k1,22948:9462695,32441023:209121 -k1,22948:10738086,32441023:209120 -k1,22948:14462557,32441023:209120 -k1,22948:17976658,32441023:209120 -k1,22948:18837207,32441023:209121 -k1,22948:21444289,32441023:209120 -k1,22948:24484564,32441023:209120 -k1,22948:26073872,32441023:209120 -k1,22948:29730842,32441023:209121 -k1,22948:31105192,32441023:209120 -k1,22949:32583029,32441023:0 -) -(1,22949:6630773,33282511:25952256,513147,126483 -k1,22948:10062179,33282511:175577 -k1,22948:13714440,33282511:175576 -k1,22948:14541445,33282511:175577 -k1,22948:16941314,33282511:175577 -k1,22948:19287443,33282511:175577 -k1,22948:20210785,33282511:175576 -k1,22948:23809307,33282511:175577 -k1,22948:25176329,33282511:175577 -k1,22948:26973922,33282511:175577 -k1,22948:27897264,33282511:175576 -k1,22948:29650293,33282511:175577 -k1,22948:32583029,33282511:0 -) -(1,22949:6630773,34123999:25952256,473825,126483 -g1,22948:7446040,34123999 -g1,22948:8001129,34123999 -g1,22948:10903063,34123999 -k1,22949:32583030,34123999:20151012 -g1,22949:32583030,34123999 -) -(1,22951:6630773,34965487:25952256,513147,126483 -h1,22950:6630773,34965487:983040,0,0 -k1,22950:8764748,34965487:197386 -k1,22950:10066416,34965487:197386 -k1,22950:11356288,34965487:197387 -k1,22950:14249170,34965487:197386 -(1,22950:14249170,34965487:0,452978,115847 -r1,22975:17772842,34965487:3523672,568825,115847 -k1,22950:14249170,34965487:-3523672 -) -(1,22950:14249170,34965487:3523672,452978,115847 -k1,22950:14249170,34965487:3277 -h1,22950:17769565,34965487:0,411205,112570 -) -k1,22950:17970228,34965487:197386 -k1,22950:18819042,34965487:197386 -k1,22950:21198122,34965487:197386 -k1,22950:21751369,34965487:197387 -(1,22950:21751369,34965487:0,414482,115847 -r1,22975:23164770,34965487:1413401,530329,115847 -k1,22950:21751369,34965487:-1413401 -) -(1,22950:21751369,34965487:1413401,414482,115847 -k1,22950:21751369,34965487:3277 -h1,22950:23161493,34965487:0,411205,112570 -) -k1,22950:23362156,34965487:197386 -k1,22950:24542582,34965487:197386 -k1,22950:26551383,34965487:197386 -k1,22950:27510298,34965487:197387 -k1,22950:28063544,34965487:197386 -k1,22950:30249292,34965487:197386 -k1,22950:32583029,34965487:0 -) -(1,22951:6630773,35806975:25952256,513147,126483 -k1,22950:7547665,35806975:249736 -k1,22950:9393202,35806975:249736 -k1,22950:10460826,35806975:249735 -k1,22950:11326600,35806975:249736 -k1,22950:12595421,35806975:249736 -k1,22950:15599635,35806975:249736 -k1,22950:18301728,35806975:249736 -k1,22950:19419815,35806975:249735 -k1,22950:21964622,35806975:249736 -k1,22950:23589959,35806975:249736 -k1,22950:24858780,35806975:249736 -k1,22950:26414649,35806975:249736 -k1,22950:27560917,35806975:249735 -k1,22950:29344851,35806975:249736 -k1,22950:30786032,35806975:249736 -k1,22950:32583029,35806975:0 -) -(1,22951:6630773,36648463:25952256,513147,134348 -k1,22950:9512045,36648463:168081 -k1,22950:10339418,36648463:168081 -k1,22950:11526583,36648463:168080 -k1,22950:13084027,36648463:168081 -k1,22950:15302074,36648463:168081 -k1,22950:18450732,36648463:168081 -k1,22950:18974673,36648463:168081 -k1,22950:21525643,36648463:168081 -(1,22950:21525643,36648463:0,414482,115847 -r1,22975:23290756,36648463:1765113,530329,115847 -k1,22950:21525643,36648463:-1765113 -) -(1,22950:21525643,36648463:1765113,414482,115847 -k1,22950:21525643,36648463:3277 -h1,22950:23287479,36648463:0,411205,112570 -) -k1,22950:23458836,36648463:168080 -k1,22950:26988914,36648463:168081 -k1,22950:27512855,36648463:168081 -k1,22950:29962900,36648463:168081 -k1,22950:32583029,36648463:0 -) -(1,22951:6630773,37489951:25952256,505283,115847 -g1,22950:8807879,37489951 -g1,22950:10198553,37489951 -(1,22950:10198553,37489951:0,452978,115847 -r1,22975:14425649,37489951:4227096,568825,115847 -k1,22950:10198553,37489951:-4227096 -) -(1,22950:10198553,37489951:4227096,452978,115847 -k1,22950:10198553,37489951:3277 -h1,22950:14422372,37489951:0,411205,112570 -) -g1,22950:14624878,37489951 -g1,22950:16218058,37489951 -g1,22950:18128432,37489951 -g1,22950:21006773,37489951 -g1,22950:21892164,37489951 -g1,22950:22506236,37489951 -g1,22950:24086309,37489951 -k1,22951:32583029,37489951:6312405 -g1,22951:32583029,37489951 -) -v1,22953:6630773,38636016:0,393216,0 -(1,22967:6630773,44188786:25952256,5945986,196608 -g1,22967:6630773,44188786 -g1,22967:6630773,44188786 -g1,22967:6434165,44188786 -(1,22967:6434165,44188786:0,5945986,196608 -r1,22975:32779637,44188786:26345472,6142594,196608 -k1,22967:6434165,44188786:-26345472 -) -(1,22967:6434165,44188786:26345472,5945986,196608 -[1,22967:6630773,44188786:25952256,5749378,0 -(1,22955:6630773,38849926:25952256,410518,101187 -(1,22954:6630773,38849926:0,0,0 -g1,22954:6630773,38849926 -g1,22954:6630773,38849926 -g1,22954:6303093,38849926 -(1,22954:6303093,38849926:0,0,0 -) -g1,22954:6630773,38849926 -) -g1,22955:10108376,38849926 -g1,22955:11056814,38849926 -g1,22955:15482854,38849926 -g1,22955:16115146,38849926 -k1,22955:16115146,38849926:0 -h1,22955:23070351,38849926:0,0,0 -k1,22955:32583029,38849926:9512678 -g1,22955:32583029,38849926 -) -(1,22956:6630773,39516104:25952256,404226,101187 -h1,22956:6630773,39516104:0,0,0 -g1,22956:11689105,39516104 -g1,22956:13902127,39516104 -h1,22956:15166709,39516104:0,0,0 -k1,22956:32583029,39516104:17416320 -g1,22956:32583029,39516104 -) -(1,22966:6630773,40182282:25952256,404226,9436 -(1,22958:6630773,40182282:0,0,0 -g1,22958:6630773,40182282 -g1,22958:6630773,40182282 -g1,22958:6303093,40182282 -(1,22958:6303093,40182282:0,0,0 -) -g1,22958:6630773,40182282 -) -g1,22966:7579210,40182282 -g1,22966:8211502,40182282 -g1,22966:8843794,40182282 -g1,22966:11372960,40182282 -g1,22966:12005252,40182282 -g1,22966:12637544,40182282 -h1,22966:12953690,40182282:0,0,0 -k1,22966:32583030,40182282:19629340 -g1,22966:32583030,40182282 -) -(1,22966:6630773,40848460:25952256,404226,101187 -h1,22966:6630773,40848460:0,0,0 -g1,22966:7579210,40848460 -g1,22966:7895356,40848460 -g1,22966:8211502,40848460 -g1,22966:10108376,40848460 -g1,22966:12005250,40848460 -g1,22966:12321396,40848460 -g1,22966:12637542,40848460 -g1,22966:12953688,40848460 -g1,22966:13269834,40848460 -g1,22966:13585980,40848460 -g1,22966:13902126,40848460 -g1,22966:14218272,40848460 -g1,22966:14534418,40848460 -g1,22966:14850564,40848460 -g1,22966:15166710,40848460 -g1,22966:18328167,40848460 -g1,22966:20541187,40848460 -g1,22966:20857333,40848460 -g1,22966:21173479,40848460 -g1,22966:22438062,40848460 -g1,22966:24967228,40848460 -h1,22966:28760976,40848460:0,0,0 -k1,22966:32583029,40848460:3822053 -g1,22966:32583029,40848460 -) -(1,22966:6630773,41514638:25952256,404226,6290 -h1,22966:6630773,41514638:0,0,0 -g1,22966:7579210,41514638 -g1,22966:7895356,41514638 -g1,22966:8211502,41514638 -g1,22966:10108377,41514638 -g1,22966:13269834,41514638 -g1,22966:13585980,41514638 -g1,22966:13902126,41514638 -g1,22966:14218272,41514638 -g1,22966:14534418,41514638 -g1,22966:14850564,41514638 -g1,22966:15166710,41514638 -g1,22966:15482856,41514638 -g1,22966:15799002,41514638 -g1,22966:16115148,41514638 -g1,22966:16431294,41514638 -g1,22966:18328169,41514638 -g1,22966:18644315,41514638 -g1,22966:20541190,41514638 -g1,22966:22438065,41514638 -g1,22966:22754211,41514638 -g1,22966:23070357,41514638 -g1,22966:24967232,41514638 -k1,22966:24967232,41514638:0 -h1,22966:26864106,41514638:0,0,0 -k1,22966:32583029,41514638:5718923 -g1,22966:32583029,41514638 -) -(1,22966:6630773,42180816:25952256,404226,82312 -h1,22966:6630773,42180816:0,0,0 -g1,22966:7579210,42180816 -g1,22966:8211502,42180816 -g1,22966:8527648,42180816 -g1,22966:8843794,42180816 -g1,22966:9159940,42180816 -g1,22966:9476086,42180816 -g1,22966:10108378,42180816 -g1,22966:10740670,42180816 -g1,22966:13902127,42180816 -g1,22966:15166710,42180816 -g1,22966:15482856,42180816 -g1,22966:15799002,42180816 -g1,22966:16115148,42180816 -g1,22966:16431294,42180816 -g1,22966:16747440,42180816 -g1,22966:17063586,42180816 -g1,22966:17379732,42180816 -g1,22966:17695878,42180816 -g1,22966:18328170,42180816 -g1,22966:18644316,42180816 -g1,22966:18960462,42180816 -g1,22966:19276608,42180816 -g1,22966:19592754,42180816 -g1,22966:19908900,42180816 -g1,22966:20541192,42180816 -g1,22966:20857338,42180816 -g1,22966:21173484,42180816 -g1,22966:21489630,42180816 -g1,22966:22438067,42180816 -g1,22966:22754213,42180816 -g1,22966:23070359,42180816 -g1,22966:23386505,42180816 -g1,22966:23702651,42180816 -g1,22966:24018797,42180816 -g1,22966:24334943,42180816 -g1,22966:24967235,42180816 -k1,22966:24967235,42180816:0 -h1,22966:28128692,42180816:0,0,0 -k1,22966:32583029,42180816:4454337 -g1,22966:32583029,42180816 -) -(1,22966:6630773,42846994:25952256,404226,82312 -h1,22966:6630773,42846994:0,0,0 -g1,22966:7579210,42846994 -g1,22966:8211502,42846994 -g1,22966:8527648,42846994 -g1,22966:8843794,42846994 -g1,22966:9159940,42846994 -g1,22966:9476086,42846994 -g1,22966:10108378,42846994 -g1,22966:10740670,42846994 -g1,22966:13902127,42846994 -g1,22966:15166710,42846994 -g1,22966:15482856,42846994 -g1,22966:15799002,42846994 -g1,22966:16115148,42846994 -g1,22966:16431294,42846994 -g1,22966:16747440,42846994 -g1,22966:17063586,42846994 -g1,22966:17379732,42846994 -g1,22966:17695878,42846994 -g1,22966:18328170,42846994 -g1,22966:18644316,42846994 -g1,22966:18960462,42846994 -g1,22966:19276608,42846994 -g1,22966:19592754,42846994 -g1,22966:19908900,42846994 -g1,22966:20541192,42846994 -g1,22966:20857338,42846994 -g1,22966:21173484,42846994 -g1,22966:21489630,42846994 -g1,22966:22438067,42846994 -g1,22966:22754213,42846994 -g1,22966:23070359,42846994 -g1,22966:23386505,42846994 -g1,22966:23702651,42846994 -g1,22966:24018797,42846994 -g1,22966:24334943,42846994 -g1,22966:24967235,42846994 -k1,22966:24967235,42846994:0 -h1,22966:28128692,42846994:0,0,0 -k1,22966:32583029,42846994:4454337 -g1,22966:32583029,42846994 -) -(1,22966:6630773,43513172:25952256,404226,82312 -h1,22966:6630773,43513172:0,0,0 -g1,22966:7579210,43513172 -g1,22966:8211502,43513172 -g1,22966:8527648,43513172 -g1,22966:8843794,43513172 -g1,22966:9159940,43513172 -g1,22966:9476086,43513172 -g1,22966:10108378,43513172 -g1,22966:10740670,43513172 -g1,22966:13902127,43513172 -g1,22966:15166710,43513172 -g1,22966:15482856,43513172 -g1,22966:15799002,43513172 -g1,22966:16115148,43513172 -g1,22966:16431294,43513172 -g1,22966:16747440,43513172 -g1,22966:17063586,43513172 -g1,22966:17379732,43513172 -g1,22966:17695878,43513172 -g1,22966:18328170,43513172 -g1,22966:18644316,43513172 -g1,22966:18960462,43513172 -g1,22966:19276608,43513172 -g1,22966:19592754,43513172 -g1,22966:19908900,43513172 -g1,22966:20541192,43513172 -g1,22966:20857338,43513172 -g1,22966:21173484,43513172 -g1,22966:22438067,43513172 -g1,22966:22754213,43513172 -g1,22966:23070359,43513172 -g1,22966:23386505,43513172 -g1,22966:23702651,43513172 -g1,22966:24018797,43513172 -g1,22966:24334943,43513172 -g1,22966:24967235,43513172 -k1,22966:24967235,43513172:0 -h1,22966:28128692,43513172:0,0,0 -k1,22966:32583029,43513172:4454337 -g1,22966:32583029,43513172 -) -(1,22966:6630773,44179350:25952256,404226,9436 -h1,22966:6630773,44179350:0,0,0 -g1,22966:7579210,44179350 -g1,22966:8211502,44179350 -g1,22966:8843794,44179350 -g1,22966:9476086,44179350 -g1,22966:11056815,44179350 -h1,22966:12321398,44179350:0,0,0 -k1,22966:32583030,44179350:20261632 -g1,22966:32583030,44179350 -) -] -) -g1,22967:32583029,44188786 -g1,22967:6630773,44188786 -g1,22967:6630773,44188786 -g1,22967:32583029,44188786 -g1,22967:32583029,44188786 -) -h1,22967:6630773,44385394:0,0,0 -(1,22971:6630773,45706769:25952256,505283,126483 -h1,22970:6630773,45706769:983040,0,0 -g1,22970:8440877,45706769 -g1,22970:9843347,45706769 -g1,22970:11583327,45706769 -g1,22970:12801641,45706769 -g1,22970:14712015,45706769 -g1,22970:15902804,45706769 -g1,22970:18910906,45706769 -k1,22971:32583029,45706769:10813443 -g1,22971:32583029,45706769 -) -] -(1,22975:32583029,45706769:0,0,0 -g1,22975:32583029,45706769 -) -) -] -(1,22975:6630773,47279633:25952256,0,0 -h1,22975:6630773,47279633:25952256,0,0 -) -] -(1,22975:4262630,4025873:0,0,0 -[1,22975:-473656,4025873:0,0,0 -(1,22975:-473656,-710413:0,0,0 -(1,22975:-473656,-710413:0,0,0 -g1,22975:-473656,-710413 -) -g1,22975:-473656,-710413 -) -] -) -] -!34331 -}417 -Input:3695:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3696:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3697:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3698:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3699:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3700:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3701:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3702:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3703:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3704:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!952 -{418 -[1,23026:4262630,47279633:28320399,43253760,0 -(1,23026:4262630,4025873:0,0,0 -[1,23026:-473656,4025873:0,0,0 -(1,23026:-473656,-710413:0,0,0 -(1,23026:-473656,-644877:0,0,0 -k1,23026:-473656,-644877:-65536 +k1,23215:3078556,2439708:-34777008 ) -(1,23026:-473656,4736287:0,0,0 -k1,23026:-473656,4736287:5209943 +] +[1,23215:3078558,4812305:0,0,0 +(1,23215:3078558,49800853:0,16384,2228224 +k1,23215:1358238,49800853:-1720320 +(1,21670:1358238,49800853:1720320,16384,2228224 +(1,21670:1358238,49800853:1179648,16384,0 +r1,23215:2537886,49800853:1179648,16384,0 +) +g1,21670:3062174,49800853 +(1,21670:3062174,52029077:16384,1703936,0 +[1,21670:3062174,52029077:25952256,1703936,0 +(1,21670:3062174,51504789:25952256,1179648,0 +(1,21670:3062174,51504789:16384,1179648,0 +r1,23215:3078558,51504789:16384,1179648,0 +) +k1,21670:29014430,51504789:25935872 +g1,21670:29014430,51504789 +) +] +) +) +) +] +[1,23215:3078558,4812305:0,0,0 +(1,23215:3078558,49800853:0,16384,2228224 +g1,23215:29030814,49800853 +g1,23215:36135244,49800853 +(1,21670:36135244,49800853:1720320,16384,2228224 +(1,21670:36135244,52029077:16384,1703936,0 +[1,21670:36135244,52029077:25952256,1703936,0 +(1,21670:36135244,51504789:25952256,1179648,0 +(1,21670:36135244,51504789:16384,1179648,0 +r1,23215:36151628,51504789:16384,1179648,0 +) +k1,21670:62087500,51504789:25935872 +g1,21670:62087500,51504789 +) +] +) +g1,21670:36675916,49800853 +(1,21670:36675916,49800853:1179648,16384,0 +r1,23215:37855564,49800853:1179648,16384,0 +) +) +k1,23215:3078556,49800853:-34777008 +) +] +g1,23215:6630773,4812305 +g1,23215:6630773,4812305 +g1,23215:9860387,4812305 +g1,23215:12770185,4812305 +k1,23215:31387653,4812305:18617468 +) +) +] +[1,23215:6630773,45706769:25952256,40108032,0 +(1,23215:6630773,45706769:25952256,40108032,0 +(1,23215:6630773,45706769:0,0,0 +g1,23215:6630773,45706769 +) +[1,23215:6630773,45706769:25952256,40108032,0 +v1,23152:6630773,6254097:0,393216,0 +(1,23152:6630773,9899595:25952256,4038714,196608 +g1,23152:6630773,9899595 +g1,23152:6630773,9899595 +g1,23152:6434165,9899595 +(1,23152:6434165,9899595:0,4038714,196608 +r1,23215:32779637,9899595:26345472,4235322,196608 +k1,23152:6434165,9899595:-26345472 +) +(1,23152:6434165,9899595:26345472,4038714,196608 +[1,23152:6630773,9899595:25952256,3842106,0 +(1,23151:6630773,6465412:25952256,407923,9908 +h1,23151:6630773,6465412:0,0,0 +g1,23151:7626635,6465412 +g1,23151:8290543,6465412 +g1,23151:8622497,6465412 +g1,23151:8954451,6465412 +g1,23151:9286405,6465412 +g1,23151:9950313,6465412 +g1,23151:10282267,6465412 +g1,23151:10614221,6465412 +g1,23151:10946175,6465412 +g1,23151:11610083,6465412 +g1,23151:11942037,6465412 +g1,23151:12273991,6465412 +g1,23151:12605945,6465412 +g1,23151:12937899,6465412 +g1,23151:13601807,6465412 +g1,23151:13933761,6465412 +g1,23151:14265715,6465412 +g1,23151:14597669,6465412 +g1,23151:14929623,6465412 +g1,23151:15593531,6465412 +g1,23151:15925485,6465412 +g1,23151:16257439,6465412 +g1,23151:16589393,6465412 +g1,23151:17585255,6465412 +g1,23151:17917209,6465412 +g1,23151:18249163,6465412 +g1,23151:18581117,6465412 +g1,23151:19245025,6465412 +g1,23151:19576979,6465412 +g1,23151:19908933,6465412 +g1,23151:20240887,6465412 +g1,23151:20572841,6465412 +g1,23151:21236749,6465412 +g1,23151:21568703,6465412 +g1,23151:21900657,6465412 +g1,23151:22232611,6465412 +g1,23151:22564565,6465412 +g1,23151:22896519,6465412 +g1,23151:23560427,6465412 +g1,23151:23892381,6465412 +g1,23151:24224335,6465412 +h1,23151:24888243,6465412:0,0,0 +k1,23151:32583029,6465412:7694786 +g1,23151:32583029,6465412 +) +(1,23151:6630773,7150267:25952256,407923,9908 +h1,23151:6630773,7150267:0,0,0 +g1,23151:7626635,7150267 +g1,23151:8290543,7150267 +g1,23151:8622497,7150267 +g1,23151:8954451,7150267 +g1,23151:9286405,7150267 +g1,23151:9950313,7150267 +g1,23151:10282267,7150267 +g1,23151:10614221,7150267 +g1,23151:10946175,7150267 +g1,23151:11610083,7150267 +g1,23151:11942037,7150267 +g1,23151:12273991,7150267 +g1,23151:12605945,7150267 +g1,23151:12937899,7150267 +g1,23151:13601807,7150267 +g1,23151:13933761,7150267 +g1,23151:14265715,7150267 +g1,23151:14597669,7150267 +g1,23151:14929623,7150267 +g1,23151:15593531,7150267 +g1,23151:15925485,7150267 +g1,23151:16257439,7150267 +g1,23151:16589393,7150267 +g1,23151:17585255,7150267 +g1,23151:17917209,7150267 +g1,23151:18249163,7150267 +g1,23151:18581117,7150267 +g1,23151:19245025,7150267 +g1,23151:19576979,7150267 +g1,23151:19908933,7150267 +g1,23151:20240887,7150267 +g1,23151:20572841,7150267 +g1,23151:21236749,7150267 +g1,23151:21568703,7150267 +g1,23151:21900657,7150267 +g1,23151:22232611,7150267 +g1,23151:22564565,7150267 +g1,23151:22896519,7150267 +g1,23151:23560427,7150267 +g1,23151:23892381,7150267 +g1,23151:24224335,7150267 +h1,23151:24888243,7150267:0,0,0 +k1,23151:32583029,7150267:7694786 +g1,23151:32583029,7150267 +) +(1,23151:6630773,7835122:25952256,407923,9908 +h1,23151:6630773,7835122:0,0,0 +g1,23151:7626635,7835122 +g1,23151:8290543,7835122 +g1,23151:8622497,7835122 +g1,23151:8954451,7835122 +g1,23151:9286405,7835122 +g1,23151:9950313,7835122 +g1,23151:10282267,7835122 +g1,23151:10614221,7835122 +g1,23151:10946175,7835122 +g1,23151:11610083,7835122 +g1,23151:11942037,7835122 +g1,23151:12273991,7835122 +g1,23151:12605945,7835122 +g1,23151:12937899,7835122 +g1,23151:13601807,7835122 +g1,23151:13933761,7835122 +g1,23151:14265715,7835122 +g1,23151:14597669,7835122 +g1,23151:14929623,7835122 +g1,23151:15593531,7835122 +g1,23151:15925485,7835122 +g1,23151:16257439,7835122 +g1,23151:16589393,7835122 +g1,23151:17585255,7835122 +g1,23151:17917209,7835122 +g1,23151:18249163,7835122 +g1,23151:18581117,7835122 +g1,23151:19245025,7835122 +g1,23151:19576979,7835122 +g1,23151:19908933,7835122 +g1,23151:20240887,7835122 +g1,23151:20572841,7835122 +g1,23151:21236749,7835122 +g1,23151:21568703,7835122 +g1,23151:21900657,7835122 +g1,23151:22232611,7835122 +g1,23151:22564565,7835122 +g1,23151:22896519,7835122 +g1,23151:23560427,7835122 +g1,23151:23892381,7835122 +g1,23151:24224335,7835122 +h1,23151:24888243,7835122:0,0,0 +k1,23151:32583029,7835122:7694786 +g1,23151:32583029,7835122 +) +(1,23151:6630773,8519977:25952256,407923,9908 +h1,23151:6630773,8519977:0,0,0 +g1,23151:7626635,8519977 +g1,23151:8290543,8519977 +g1,23151:8622497,8519977 +g1,23151:8954451,8519977 +g1,23151:9286405,8519977 +g1,23151:9950313,8519977 +g1,23151:10282267,8519977 +g1,23151:10614221,8519977 +g1,23151:10946175,8519977 +g1,23151:11610083,8519977 +g1,23151:11942037,8519977 +g1,23151:12273991,8519977 +g1,23151:12605945,8519977 +g1,23151:12937899,8519977 +g1,23151:13601807,8519977 +g1,23151:13933761,8519977 +g1,23151:14265715,8519977 +g1,23151:14597669,8519977 +g1,23151:14929623,8519977 +g1,23151:15593531,8519977 +g1,23151:15925485,8519977 +g1,23151:16257439,8519977 +g1,23151:16589393,8519977 +g1,23151:17585255,8519977 +g1,23151:17917209,8519977 +g1,23151:18249163,8519977 +g1,23151:18581117,8519977 +g1,23151:19245025,8519977 +g1,23151:19576979,8519977 +g1,23151:19908933,8519977 +g1,23151:20240887,8519977 +g1,23151:20572841,8519977 +g1,23151:21236749,8519977 +g1,23151:21568703,8519977 +g1,23151:21900657,8519977 +g1,23151:22232611,8519977 +g1,23151:22564565,8519977 +g1,23151:22896519,8519977 +g1,23151:23560427,8519977 +g1,23151:23892381,8519977 +g1,23151:24224335,8519977 +h1,23151:24888243,8519977:0,0,0 +k1,23151:32583029,8519977:7694786 +g1,23151:32583029,8519977 +) +(1,23151:6630773,9204832:25952256,407923,9908 +h1,23151:6630773,9204832:0,0,0 +g1,23151:7626635,9204832 +g1,23151:8290543,9204832 +g1,23151:8622497,9204832 +g1,23151:8954451,9204832 +g1,23151:9286405,9204832 +g1,23151:9950313,9204832 +g1,23151:10282267,9204832 +g1,23151:10614221,9204832 +g1,23151:10946175,9204832 +g1,23151:11610083,9204832 +g1,23151:11942037,9204832 +g1,23151:12273991,9204832 +g1,23151:12605945,9204832 +g1,23151:12937899,9204832 +g1,23151:13601807,9204832 +g1,23151:13933761,9204832 +g1,23151:14265715,9204832 +g1,23151:14597669,9204832 +g1,23151:14929623,9204832 +g1,23151:15593531,9204832 +g1,23151:15925485,9204832 +g1,23151:16257439,9204832 +g1,23151:16589393,9204832 +g1,23151:17585255,9204832 +g1,23151:17917209,9204832 +g1,23151:18249163,9204832 +g1,23151:18581117,9204832 +g1,23151:19245025,9204832 +g1,23151:19576979,9204832 +g1,23151:19908933,9204832 +g1,23151:20240887,9204832 +g1,23151:20572841,9204832 +g1,23151:21236749,9204832 +g1,23151:21568703,9204832 +g1,23151:21900657,9204832 +g1,23151:22232611,9204832 +g1,23151:22564565,9204832 +g1,23151:22896519,9204832 +g1,23151:23560427,9204832 +g1,23151:23892381,9204832 +g1,23151:24224335,9204832 +h1,23151:24888243,9204832:0,0,0 +k1,23151:32583029,9204832:7694786 +g1,23151:32583029,9204832 +) +(1,23151:6630773,9889687:25952256,407923,9908 +h1,23151:6630773,9889687:0,0,0 +g1,23151:7626635,9889687 +g1,23151:8290543,9889687 +g1,23151:8622497,9889687 +g1,23151:8954451,9889687 +g1,23151:9286405,9889687 +g1,23151:9950313,9889687 +g1,23151:10282267,9889687 +g1,23151:10614221,9889687 +g1,23151:10946175,9889687 +g1,23151:11610083,9889687 +g1,23151:11942037,9889687 +g1,23151:12273991,9889687 +g1,23151:12605945,9889687 +g1,23151:12937899,9889687 +g1,23151:13601807,9889687 +g1,23151:13933761,9889687 +g1,23151:14265715,9889687 +g1,23151:14597669,9889687 +g1,23151:14929623,9889687 +g1,23151:15593531,9889687 +g1,23151:15925485,9889687 +g1,23151:16257439,9889687 +g1,23151:16589393,9889687 +g1,23151:17585255,9889687 +g1,23151:17917209,9889687 +g1,23151:18249163,9889687 +g1,23151:18581117,9889687 +g1,23151:19245025,9889687 +g1,23151:19576979,9889687 +g1,23151:19908933,9889687 +g1,23151:20240887,9889687 +g1,23151:20572841,9889687 +g1,23151:21236749,9889687 +g1,23151:21568703,9889687 +g1,23151:21900657,9889687 +g1,23151:22232611,9889687 +g1,23151:22564565,9889687 +g1,23151:22896519,9889687 +g1,23151:23560427,9889687 +g1,23151:23892381,9889687 +g1,23151:24224335,9889687 +h1,23151:24888243,9889687:0,0,0 +k1,23151:32583029,9889687:7694786 +g1,23151:32583029,9889687 +) +] +) +g1,23152:32583029,9899595 +g1,23152:6630773,9899595 +g1,23152:6630773,9899595 +g1,23152:32583029,9899595 +g1,23152:32583029,9899595 +) +h1,23152:6630773,10096203:0,0,0 +(1,23156:6630773,10961283:25952256,513147,134348 +h1,23155:6630773,10961283:983040,0,0 +k1,23155:8953275,10961283:195859 +k1,23155:9915250,10961283:195859 +k1,23155:13136906,10961283:195859 +k1,23155:13948803,10961283:195859 +k1,23155:16772000,10961283:195859 +k1,23155:18978504,10961283:195859 +k1,23155:20563726,10961283:195859 +k1,23155:22966183,10961283:195860 +k1,23155:23923570,10961283:195859 +k1,23155:26558679,10961283:195859 +k1,23155:27826707,10961283:195859 +k1,23155:28788682,10961283:195859 +k1,23155:29643833,10961283:195859 +k1,23155:31478747,10961283:195859 +k1,23155:32583029,10961283:0 +) +(1,23156:6630773,11826363:25952256,505283,7863 +g1,23155:7577768,11826363 +g1,23155:10242461,11826363 +g1,23155:11093118,11826363 +g1,23155:12107615,11826363 +k1,23156:32583030,11826363:19576916 +g1,23156:32583030,11826363 +) +(1,23157:6630773,13943181:25952256,555811,12975 +(1,23157:6630773,13943181:3348562,534184,12975 +g1,23157:6630773,13943181 +g1,23157:9979335,13943181 +) +k1,23157:32583030,13943181:20000540 +g1,23157:32583030,13943181 +) +(1,23162:6630773,15201477:25952256,513147,134348 +k1,23161:9312234,15201477:146528 +k1,23161:11685018,15201477:146527 +k1,23161:12363043,15201477:146528 +k1,23161:13722641,15201477:146527 +k1,23161:17044388,15201477:146528 +k1,23161:18584866,15201477:146527 +k1,23161:21055956,15201477:146528 +k1,23161:21853912,15201477:146528 +k1,23161:23019524,15201477:146527 +k1,23161:25651833,15201477:146528 +k1,23161:26457652,15201477:146527 +k1,23161:29114864,15201477:146528 +k1,23161:32583029,15201477:0 +) +(1,23162:6630773,16066557:25952256,513147,134348 +k1,23161:7562531,16066557:248873 +k1,23161:9320043,16066557:248873 +k1,23161:12380410,16066557:248872 +k1,23161:15702266,16066557:248873 +k1,23161:17363440,16066557:248873 +k1,23161:18803758,16066557:248873 +k1,23161:20667437,16066557:248872 +k1,23161:23942107,16066557:248873 +k1,23161:25138631,16066557:248873 +k1,23161:26763105,16066557:248873 +k1,23161:28666761,16066557:248872 +k1,23161:29898674,16066557:248873 +k1,23162:32583029,16066557:0 +) +(1,23162:6630773,16931637:25952256,513147,126483 +k1,23161:8189320,16931637:226200 +k1,23161:9982486,16931637:226200 +k1,23161:11400131,16931637:226200 +k1,23161:13222132,16931637:226200 +k1,23161:14372390,16931637:226200 +k1,23161:15617675,16931637:226200 +k1,23161:17545845,16931637:226200 +k1,23161:19552003,16931637:226200 +k1,23161:22004460,16931637:226200 +k1,23161:24991036,16931637:226200 +k1,23161:27518205,16931637:226200 +k1,23161:29312682,16931637:226200 +k1,23161:30190310,16931637:226200 +k1,23161:32583029,16931637:0 +) +(1,23162:6630773,17796717:25952256,513147,126483 +k1,23161:7840568,17796717:190710 +k1,23161:10793622,17796717:190711 +k1,23161:13266296,17796717:190710 +k1,23161:15467651,17796717:190710 +k1,23161:16942867,17796717:190710 +k1,23161:19304130,17796717:190711 +k1,23161:20242606,17796717:190710 +k1,23161:22847662,17796717:190710 +k1,23161:25623767,17796717:190710 +k1,23161:26465906,17796717:190711 +k1,23161:27071450,17796717:190701 +k1,23161:29548712,17796717:190711 +k1,23161:31297213,17796717:190710 +k1,23161:32583029,17796717:0 +) +(1,23162:6630773,18661797:25952256,513147,134348 +k1,23161:9135105,18661797:240063 +k1,23161:11086314,18661797:240064 +k1,23161:12517822,18661797:240063 +k1,23161:14513595,18661797:240063 +k1,23161:17870551,18661797:240064 +k1,23161:18762042,18661797:240063 +k1,23161:20021190,18661797:240063 +k1,23161:24772096,18661797:240063 +k1,23161:25671452,18661797:240064 +k1,23161:27363137,18661797:240063 +k1,23161:28262492,18661797:240063 +k1,23161:30199283,18661797:240064 +k1,23161:31422386,18661797:240063 +k1,23162:32583029,18661797:0 +) +(1,23162:6630773,19526877:25952256,513147,126483 +k1,23161:8561735,19526877:194258 +k1,23161:9383829,19526877:194259 +k1,23161:11275469,19526877:194258 +k1,23161:13167766,19526877:194259 +k1,23161:14381109,19526877:194258 +k1,23161:17525143,19526877:194259 +k1,23161:18702441,19526877:194258 +k1,23161:21598749,19526877:194259 +k1,23161:24074971,19526877:194258 +k1,23161:26279875,19526877:194259 +k1,23161:27493218,19526877:194258 +k1,23161:30466204,19526877:194259 +(1,23161:30466204,19526877:0,452978,115847 +r1,23215:32583029,19526877:2116825,568825,115847 +k1,23161:30466204,19526877:-2116825 +) +(1,23161:30466204,19526877:2116825,452978,115847 +k1,23161:30466204,19526877:3277 +h1,23161:32579752,19526877:0,411205,112570 +) +k1,23161:32583029,19526877:0 +) +(1,23162:6630773,20391957:25952256,513147,134348 +k1,23161:8752232,20391957:161933 +k1,23161:10774733,20391957:161934 +k1,23161:12628806,20391957:161933 +k1,23161:16017733,20391957:161934 +k1,23161:19078979,20391957:161933 +k1,23161:20808534,20391957:161934 +k1,23161:21989552,20391957:161933 +k1,23161:23706000,20391957:161934 +k1,23161:26309804,20391957:161933 +k1,23161:29091867,20391957:161934 +k1,23161:31966991,20391957:161933 +k1,23162:32583029,20391957:0 +) +(1,23162:6630773,21257037:25952256,513147,134348 +k1,23161:8262014,21257037:209110 +k1,23161:9462695,21257037:209121 +k1,23161:10738086,21257037:209120 +k1,23161:14462557,21257037:209120 +k1,23161:17976658,21257037:209120 +k1,23161:18837207,21257037:209121 +k1,23161:21444289,21257037:209120 +k1,23161:24484564,21257037:209120 +k1,23161:26073872,21257037:209120 +k1,23161:29730842,21257037:209121 +k1,23161:31105192,21257037:209120 +k1,23162:32583029,21257037:0 +) +(1,23162:6630773,22122117:25952256,513147,126483 +k1,23161:10062179,22122117:175577 +k1,23161:13714440,22122117:175576 +k1,23161:14541445,22122117:175577 +k1,23161:16941314,22122117:175577 +k1,23161:19287443,22122117:175577 +k1,23161:20210785,22122117:175576 +k1,23161:23809307,22122117:175577 +k1,23161:25176329,22122117:175577 +k1,23161:26973922,22122117:175577 +k1,23161:27897264,22122117:175576 +k1,23161:29650293,22122117:175577 +k1,23161:32583029,22122117:0 +) +(1,23162:6630773,22987197:25952256,473825,126483 +g1,23161:7446040,22987197 +g1,23161:8001129,22987197 +g1,23161:10903063,22987197 +k1,23162:32583030,22987197:20151012 +g1,23162:32583030,22987197 +) +(1,23164:6630773,23852277:25952256,513147,126483 +h1,23163:6630773,23852277:983040,0,0 +k1,23163:8764748,23852277:197386 +k1,23163:10066416,23852277:197386 +k1,23163:11356288,23852277:197387 +k1,23163:14249170,23852277:197386 +(1,23163:14249170,23852277:0,452978,115847 +r1,23215:17772842,23852277:3523672,568825,115847 +k1,23163:14249170,23852277:-3523672 +) +(1,23163:14249170,23852277:3523672,452978,115847 +k1,23163:14249170,23852277:3277 +h1,23163:17769565,23852277:0,411205,112570 +) +k1,23163:17970228,23852277:197386 +k1,23163:18819042,23852277:197386 +k1,23163:21198122,23852277:197386 +k1,23163:21751369,23852277:197387 +(1,23163:21751369,23852277:0,414482,115847 +r1,23215:23164770,23852277:1413401,530329,115847 +k1,23163:21751369,23852277:-1413401 +) +(1,23163:21751369,23852277:1413401,414482,115847 +k1,23163:21751369,23852277:3277 +h1,23163:23161493,23852277:0,411205,112570 +) +k1,23163:23362156,23852277:197386 +k1,23163:24542582,23852277:197386 +k1,23163:26551383,23852277:197386 +k1,23163:27510298,23852277:197387 +k1,23163:28063544,23852277:197386 +k1,23163:30249292,23852277:197386 +k1,23163:32583029,23852277:0 +) +(1,23164:6630773,24717357:25952256,513147,126483 +k1,23163:7547665,24717357:249736 +k1,23163:9393202,24717357:249736 +k1,23163:10460826,24717357:249735 +k1,23163:11326600,24717357:249736 +k1,23163:12595421,24717357:249736 +k1,23163:15599635,24717357:249736 +k1,23163:18301728,24717357:249736 +k1,23163:19419815,24717357:249735 +k1,23163:21964622,24717357:249736 +k1,23163:23589959,24717357:249736 +k1,23163:24858780,24717357:249736 +k1,23163:26414649,24717357:249736 +k1,23163:27560917,24717357:249735 +k1,23163:29344851,24717357:249736 +k1,23163:30786032,24717357:249736 +k1,23163:32583029,24717357:0 +) +(1,23164:6630773,25582437:25952256,513147,134348 +k1,23163:9512045,25582437:168081 +k1,23163:10339418,25582437:168081 +k1,23163:11526583,25582437:168080 +k1,23163:13084027,25582437:168081 +k1,23163:15302074,25582437:168081 +k1,23163:18450732,25582437:168081 +k1,23163:18974673,25582437:168081 +k1,23163:21525643,25582437:168081 +(1,23163:21525643,25582437:0,414482,115847 +r1,23215:23290756,25582437:1765113,530329,115847 +k1,23163:21525643,25582437:-1765113 +) +(1,23163:21525643,25582437:1765113,414482,115847 +k1,23163:21525643,25582437:3277 +h1,23163:23287479,25582437:0,411205,112570 +) +k1,23163:23458836,25582437:168080 +k1,23163:26988914,25582437:168081 +k1,23163:27512855,25582437:168081 +k1,23163:29962900,25582437:168081 +k1,23163:32583029,25582437:0 +) +(1,23164:6630773,26447517:25952256,505283,115847 +g1,23163:8807879,26447517 +g1,23163:10198553,26447517 +(1,23163:10198553,26447517:0,452978,115847 +r1,23215:14425649,26447517:4227096,568825,115847 +k1,23163:10198553,26447517:-4227096 +) +(1,23163:10198553,26447517:4227096,452978,115847 +k1,23163:10198553,26447517:3277 +h1,23163:14422372,26447517:0,411205,112570 +) +g1,23163:14624878,26447517 +g1,23163:16218058,26447517 +g1,23163:18128432,26447517 +g1,23163:21006773,26447517 +g1,23163:21892164,26447517 +g1,23163:22506236,26447517 +g1,23163:24086309,26447517 +k1,23164:32583029,26447517:6312405 +g1,23164:32583029,26447517 +) +v1,23166:6630773,27132372:0,393216,0 +(1,23180:6630773,32986629:25952256,6247473,196608 +g1,23180:6630773,32986629 +g1,23180:6630773,32986629 +g1,23180:6434165,32986629 +(1,23180:6434165,32986629:0,6247473,196608 +r1,23215:32779637,32986629:26345472,6444081,196608 +k1,23180:6434165,32986629:-26345472 +) +(1,23180:6434165,32986629:26345472,6247473,196608 +[1,23180:6630773,32986629:25952256,6050865,0 +(1,23168:6630773,27366809:25952256,431045,106246 +(1,23167:6630773,27366809:0,0,0 +g1,23167:6630773,27366809 +g1,23167:6630773,27366809 +g1,23167:6303093,27366809 +(1,23167:6303093,27366809:0,0,0 +) +g1,23167:6630773,27366809 +) +g1,23168:10282266,27366809 +g1,23168:11278128,27366809 +g1,23168:15925483,27366809 +g1,23168:16589391,27366809 +k1,23168:16589391,27366809:0 +h1,23168:23892377,27366809:0,0,0 +k1,23168:32583029,27366809:8690652 +g1,23168:32583029,27366809 +) +(1,23169:6630773,28051664:25952256,424439,106246 +h1,23169:6630773,28051664:0,0,0 +g1,23169:11942036,28051664 +g1,23169:14265714,28051664 +h1,23169:15593530,28051664:0,0,0 +k1,23169:32583030,28051664:16989500 +g1,23169:32583030,28051664 +) +(1,23179:6630773,28867591:25952256,424439,9908 +(1,23171:6630773,28867591:0,0,0 +g1,23171:6630773,28867591 +g1,23171:6630773,28867591 +g1,23171:6303093,28867591 +(1,23171:6303093,28867591:0,0,0 +) +g1,23171:6630773,28867591 +) +g1,23179:7626635,28867591 +g1,23179:8290543,28867591 +g1,23179:8954451,28867591 +g1,23179:11610083,28867591 +g1,23179:12273991,28867591 +g1,23179:12937899,28867591 +h1,23179:13269853,28867591:0,0,0 +k1,23179:32583029,28867591:19313176 +g1,23179:32583029,28867591 +) +(1,23179:6630773,29552446:25952256,424439,106246 +h1,23179:6630773,29552446:0,0,0 +g1,23179:7626635,29552446 +g1,23179:7958589,29552446 +g1,23179:8290543,29552446 +g1,23179:10282267,29552446 +g1,23179:12273991,29552446 +g1,23179:12605945,29552446 +g1,23179:12937899,29552446 +g1,23179:13269853,29552446 +g1,23179:13601807,29552446 +g1,23179:13933761,29552446 +g1,23179:14265715,29552446 +g1,23179:14597669,29552446 +g1,23179:14929623,29552446 +g1,23179:15261577,29552446 +g1,23179:15593531,29552446 +g1,23179:18913070,29552446 +g1,23179:21236748,29552446 +g1,23179:21568702,29552446 +g1,23179:21900656,29552446 +g1,23179:23228472,29552446 +g1,23179:25884104,29552446 +h1,23179:29867551,29552446:0,0,0 +k1,23179:32583029,29552446:2715478 +g1,23179:32583029,29552446 +) +(1,23179:6630773,30237301:25952256,424439,6605 +h1,23179:6630773,30237301:0,0,0 +g1,23179:7626635,30237301 +g1,23179:7958589,30237301 +g1,23179:8290543,30237301 +g1,23179:10282267,30237301 +g1,23179:13601806,30237301 +g1,23179:13933760,30237301 +g1,23179:14265714,30237301 +g1,23179:14597668,30237301 +g1,23179:14929622,30237301 +g1,23179:15261576,30237301 +g1,23179:15593530,30237301 +g1,23179:15925484,30237301 +g1,23179:16257438,30237301 +g1,23179:16589392,30237301 +g1,23179:16921346,30237301 +g1,23179:18913070,30237301 +g1,23179:19245024,30237301 +g1,23179:21236748,30237301 +g1,23179:23228472,30237301 +g1,23179:23560426,30237301 +g1,23179:23892380,30237301 +g1,23179:25884104,30237301 +k1,23179:25884104,30237301:0 +h1,23179:27875828,30237301:0,0,0 +k1,23179:32583029,30237301:4707201 +g1,23179:32583029,30237301 +) +(1,23179:6630773,30922156:25952256,424439,86428 +h1,23179:6630773,30922156:0,0,0 +g1,23179:7626635,30922156 +g1,23179:8290543,30922156 +g1,23179:8622497,30922156 +g1,23179:8954451,30922156 +g1,23179:9286405,30922156 +g1,23179:9618359,30922156 +g1,23179:10282267,30922156 +g1,23179:10946175,30922156 +g1,23179:14265714,30922156 +g1,23179:15593530,30922156 +g1,23179:15925484,30922156 +g1,23179:16257438,30922156 +g1,23179:16589392,30922156 +g1,23179:16921346,30922156 +g1,23179:17253300,30922156 +g1,23179:17585254,30922156 +g1,23179:17917208,30922156 +g1,23179:18249162,30922156 +g1,23179:18913070,30922156 +g1,23179:19245024,30922156 +g1,23179:19576978,30922156 +g1,23179:19908932,30922156 +g1,23179:20240886,30922156 +g1,23179:20572840,30922156 +g1,23179:21236748,30922156 +g1,23179:21568702,30922156 +g1,23179:21900656,30922156 +g1,23179:22232610,30922156 +g1,23179:23228472,30922156 +g1,23179:23560426,30922156 +g1,23179:23892380,30922156 +g1,23179:24224334,30922156 +g1,23179:24556288,30922156 +g1,23179:24888242,30922156 +g1,23179:25220196,30922156 +g1,23179:25884104,30922156 +k1,23179:25884104,30922156:0 +h1,23179:29203644,30922156:0,0,0 +k1,23179:32583029,30922156:3379385 +g1,23179:32583029,30922156 +) +(1,23179:6630773,31607011:25952256,424439,86428 +h1,23179:6630773,31607011:0,0,0 +g1,23179:7626635,31607011 +g1,23179:8290543,31607011 +g1,23179:8622497,31607011 +g1,23179:8954451,31607011 +g1,23179:9286405,31607011 +g1,23179:9618359,31607011 +g1,23179:10282267,31607011 +g1,23179:10946175,31607011 +g1,23179:14265714,31607011 +g1,23179:15593530,31607011 +g1,23179:15925484,31607011 +g1,23179:16257438,31607011 +g1,23179:16589392,31607011 +g1,23179:16921346,31607011 +g1,23179:17253300,31607011 +g1,23179:17585254,31607011 +g1,23179:17917208,31607011 +g1,23179:18249162,31607011 +g1,23179:18913070,31607011 +g1,23179:19245024,31607011 +g1,23179:19576978,31607011 +g1,23179:19908932,31607011 +g1,23179:20240886,31607011 +g1,23179:20572840,31607011 +g1,23179:21236748,31607011 +g1,23179:21568702,31607011 +g1,23179:21900656,31607011 +g1,23179:22232610,31607011 +g1,23179:23228472,31607011 +g1,23179:23560426,31607011 +g1,23179:23892380,31607011 +g1,23179:24224334,31607011 +g1,23179:24556288,31607011 +g1,23179:24888242,31607011 +g1,23179:25220196,31607011 +g1,23179:25884104,31607011 +k1,23179:25884104,31607011:0 +h1,23179:29203644,31607011:0,0,0 +k1,23179:32583029,31607011:3379385 +g1,23179:32583029,31607011 +) +(1,23179:6630773,32291866:25952256,424439,86428 +h1,23179:6630773,32291866:0,0,0 +g1,23179:7626635,32291866 +g1,23179:8290543,32291866 +g1,23179:8622497,32291866 +g1,23179:8954451,32291866 +g1,23179:9286405,32291866 +g1,23179:9618359,32291866 +g1,23179:10282267,32291866 +g1,23179:10946175,32291866 +g1,23179:14265714,32291866 +g1,23179:15593530,32291866 +g1,23179:15925484,32291866 +g1,23179:16257438,32291866 +g1,23179:16589392,32291866 +g1,23179:16921346,32291866 +g1,23179:17253300,32291866 +g1,23179:17585254,32291866 +g1,23179:17917208,32291866 +g1,23179:18249162,32291866 +g1,23179:18913070,32291866 +g1,23179:19245024,32291866 +g1,23179:19576978,32291866 +g1,23179:19908932,32291866 +g1,23179:20240886,32291866 +g1,23179:20572840,32291866 +g1,23179:21236748,32291866 +g1,23179:21568702,32291866 +g1,23179:21900656,32291866 +g1,23179:23228472,32291866 +g1,23179:23560426,32291866 +g1,23179:23892380,32291866 +g1,23179:24224334,32291866 +g1,23179:24556288,32291866 +g1,23179:24888242,32291866 +g1,23179:25220196,32291866 +g1,23179:25884104,32291866 +k1,23179:25884104,32291866:0 +h1,23179:29203644,32291866:0,0,0 +k1,23179:32583029,32291866:3379385 +g1,23179:32583029,32291866 +) +(1,23179:6630773,32976721:25952256,424439,9908 +h1,23179:6630773,32976721:0,0,0 +g1,23179:7626635,32976721 +g1,23179:8290543,32976721 +g1,23179:8954451,32976721 +g1,23179:9618359,32976721 +g1,23179:11278129,32976721 +h1,23179:12605945,32976721:0,0,0 +k1,23179:32583029,32976721:19977084 +g1,23179:32583029,32976721 +) +] +) +g1,23180:32583029,32986629 +g1,23180:6630773,32986629 +g1,23180:6630773,32986629 +g1,23180:32583029,32986629 +g1,23180:32583029,32986629 +) +h1,23180:6630773,33183237:0,0,0 +(1,23184:6630773,34048317:25952256,505283,126483 +h1,23183:6630773,34048317:983040,0,0 +g1,23183:8440877,34048317 +g1,23183:9843347,34048317 +g1,23183:11583327,34048317 +g1,23183:12801641,34048317 +g1,23183:14712015,34048317 +g1,23183:15902804,34048317 +g1,23183:18910906,34048317 +k1,23184:32583029,34048317:10813443 +g1,23184:32583029,34048317 +) +(1,23186:6630773,34913397:25952256,513147,134348 +h1,23185:6630773,34913397:983040,0,0 +g1,23185:9448165,34913397 +g1,23185:10515746,34913397 +g1,23185:12896669,34913397 +g1,23185:13866601,34913397 +g1,23185:15991933,34913397 +(1,23185:15991933,34913397:0,414482,115847 +r1,23215:17405334,34913397:1413401,530329,115847 +k1,23185:15991933,34913397:-1413401 +) +(1,23185:15991933,34913397:1413401,414482,115847 +k1,23185:15991933,34913397:3277 +h1,23185:17402057,34913397:0,411205,112570 +) +g1,23185:17604563,34913397 +g1,23185:18786832,34913397 +g1,23185:20797476,34913397 +g1,23185:21793623,34913397 +g1,23185:23675817,34913397 +k1,23186:32583029,34913397:7608944 +g1,23186:32583029,34913397 +) +v1,23188:6630773,35598252:0,393216,0 +(1,23215:6630773,45135625:25952256,9930589,196608 +g1,23215:6630773,45135625 +g1,23215:6630773,45135625 +g1,23215:6434165,45135625 +(1,23215:6434165,45135625:0,9930589,196608 +r1,23215:32779637,45135625:26345472,10127197,196608 +k1,23215:6434165,45135625:-26345472 +) +(1,23215:6434165,45135625:26345472,9930589,196608 +[1,23215:6630773,45135625:25952256,9733981,0 +(1,23190:6630773,35832689:25952256,431045,79822 +(1,23189:6630773,35832689:0,0,0 +g1,23189:6630773,35832689 +g1,23189:6630773,35832689 +g1,23189:6303093,35832689 +(1,23189:6303093,35832689:0,0,0 +) +g1,23189:6630773,35832689 +) +g1,23190:10282266,35832689 +g1,23190:11278128,35832689 +g1,23190:15925483,35832689 +g1,23190:16589391,35832689 +h1,23190:23892377,35832689:0,0,0 +k1,23190:32583029,35832689:8690652 +g1,23190:32583029,35832689 +) +(1,23191:6630773,36517544:25952256,424439,6605 +h1,23191:6630773,36517544:0,0,0 +h1,23191:9950312,36517544:0,0,0 +k1,23191:32583028,36517544:22632716 +g1,23191:32583028,36517544 +) +(1,23201:6630773,37333471:25952256,424439,6605 +(1,23193:6630773,37333471:0,0,0 +g1,23193:6630773,37333471 +g1,23193:6630773,37333471 +g1,23193:6303093,37333471 +(1,23193:6303093,37333471:0,0,0 +) +g1,23193:6630773,37333471 +) +g1,23201:7626635,37333471 +g1,23201:8290543,37333471 +g1,23201:8954451,37333471 +g1,23201:11610083,37333471 +g1,23201:12605945,37333471 +g1,23201:13269853,37333471 +h1,23201:13601807,37333471:0,0,0 +k1,23201:32583029,37333471:18981222 +g1,23201:32583029,37333471 +) +(1,23201:6630773,38018326:25952256,398014,8257 +h1,23201:6630773,38018326:0,0,0 +g1,23201:7626635,38018326 +g1,23201:7958589,38018326 +g1,23201:8290543,38018326 +g1,23201:10946175,38018326 +h1,23201:12937899,38018326:0,0,0 +k1,23201:32583029,38018326:19645130 +g1,23201:32583029,38018326 +) +(1,23201:6630773,38703181:25952256,424439,6605 +h1,23201:6630773,38703181:0,0,0 +g1,23201:7626635,38703181 +g1,23201:7958589,38703181 +g1,23201:8290543,38703181 +g1,23201:8622497,38703181 +g1,23201:8954451,38703181 +g1,23201:10946175,38703181 +k1,23201:10946175,38703181:0 +h1,23201:13933760,38703181:0,0,0 +k1,23201:32583028,38703181:18649268 +g1,23201:32583028,38703181 +) +(1,23201:6630773,39388036:25952256,424439,79822 +h1,23201:6630773,39388036:0,0,0 +g1,23201:7626635,39388036 +g1,23201:8290543,39388036 +g1,23201:8622497,39388036 +g1,23201:8954451,39388036 +g1,23201:9286405,39388036 +g1,23201:9618359,39388036 +g1,23201:10946175,39388036 +g1,23201:11610083,39388036 +h1,23201:13933761,39388036:0,0,0 +k1,23201:32583029,39388036:18649268 +g1,23201:32583029,39388036 +) +(1,23201:6630773,40072891:25952256,424439,79822 +h1,23201:6630773,40072891:0,0,0 +g1,23201:7626635,40072891 +g1,23201:8290543,40072891 +g1,23201:8622497,40072891 +g1,23201:8954451,40072891 +g1,23201:9286405,40072891 +g1,23201:9618359,40072891 +g1,23201:10946175,40072891 +g1,23201:11610083,40072891 +h1,23201:13933761,40072891:0,0,0 +k1,23201:32583029,40072891:18649268 +g1,23201:32583029,40072891 +) +(1,23201:6630773,40757746:25952256,424439,79822 +h1,23201:6630773,40757746:0,0,0 +g1,23201:7626635,40757746 +g1,23201:8290543,40757746 +g1,23201:8622497,40757746 +g1,23201:8954451,40757746 +g1,23201:9286405,40757746 +g1,23201:9618359,40757746 +g1,23201:10282267,40757746 +g1,23201:10614221,40757746 +g1,23201:10946175,40757746 +g1,23201:11610083,40757746 +h1,23201:13933761,40757746:0,0,0 +k1,23201:32583029,40757746:18649268 +g1,23201:32583029,40757746 +) +(1,23201:6630773,41442601:25952256,424439,6605 +h1,23201:6630773,41442601:0,0,0 +g1,23201:7626635,41442601 +g1,23201:8290543,41442601 +g1,23201:8954451,41442601 +g1,23201:9950313,41442601 +g1,23201:11610083,41442601 +h1,23201:12937899,41442601:0,0,0 +k1,23201:32583029,41442601:19645130 +g1,23201:32583029,41442601 +) +(1,23203:6630773,42258528:25952256,431045,79822 +(1,23202:6630773,42258528:0,0,0 +g1,23202:6630773,42258528 +g1,23202:6630773,42258528 +g1,23202:6303093,42258528 +(1,23202:6303093,42258528:0,0,0 +) +g1,23202:6630773,42258528 +) +g1,23203:10282266,42258528 +g1,23203:11278128,42258528 +k1,23203:11278128,42258528:0 +h1,23203:18249160,42258528:0,0,0 +k1,23203:32583029,42258528:14333869 +g1,23203:32583029,42258528 +) +(1,23204:6630773,42943383:25952256,424439,6605 +h1,23204:6630773,42943383:0,0,0 +h1,23204:9950312,42943383:0,0,0 +k1,23204:32583028,42943383:22632716 +g1,23204:32583028,42943383 +) +(1,23214:6630773,43759310:25952256,424439,6605 +(1,23206:6630773,43759310:0,0,0 +g1,23206:6630773,43759310 +g1,23206:6630773,43759310 +g1,23206:6303093,43759310 +(1,23206:6303093,43759310:0,0,0 +) +g1,23206:6630773,43759310 +) +g1,23214:7626635,43759310 +g1,23214:8290543,43759310 +g1,23214:8954451,43759310 +g1,23214:11610083,43759310 +g1,23214:12605945,43759310 +g1,23214:13269853,43759310 +h1,23214:13601807,43759310:0,0,0 +k1,23214:32583029,43759310:18981222 +g1,23214:32583029,43759310 +) +(1,23214:6630773,44444165:25952256,398014,8257 +h1,23214:6630773,44444165:0,0,0 +g1,23214:7626635,44444165 +g1,23214:7958589,44444165 +g1,23214:8290543,44444165 +g1,23214:10946175,44444165 +h1,23214:12937899,44444165:0,0,0 +k1,23214:32583029,44444165:19645130 +g1,23214:32583029,44444165 +) +(1,23214:6630773,45129020:25952256,431045,6605 +h1,23214:6630773,45129020:0,0,0 +g1,23214:7626635,45129020 +g1,23214:7958589,45129020 +g1,23214:8290543,45129020 +g1,23214:8622497,45129020 +g1,23214:8954451,45129020 +g1,23214:10946175,45129020 +k1,23214:10946175,45129020:0 +h1,23214:12605945,45129020:0,0,0 +k1,23214:32583029,45129020:19977084 +g1,23214:32583029,45129020 +) +] +) +g1,23215:32583029,45135625 +g1,23215:6630773,45135625 +g1,23215:6630773,45135625 +g1,23215:32583029,45135625 +g1,23215:32583029,45135625 +) +] +(1,23215:32583029,45706769:0,0,0 +g1,23215:32583029,45706769 +) +) +] +(1,23215:6630773,47279633:25952256,0,0 +h1,23215:6630773,47279633:25952256,0,0 +) +] +(1,23215:4262630,4025873:0,0,0 +[1,23215:-473656,4025873:0,0,0 +(1,23215:-473656,-710413:0,0,0 +(1,23215:-473656,-710413:0,0,0 +g1,23215:-473656,-710413 +) +g1,23215:-473656,-710413 +) +] +) +] +!33909 +}400 +Input:3736:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3737:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3738:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3739:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3740:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3741:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3742:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3743:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3744:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3745:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3746:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3747:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1140 +{401 +[1,23250:4262630,47279633:28320399,43253760,0 +(1,23250:4262630,4025873:0,0,0 +[1,23250:-473656,4025873:0,0,0 +(1,23250:-473656,-710413:0,0,0 +(1,23250:-473656,-644877:0,0,0 +k1,23250:-473656,-644877:-65536 ) -g1,23026:-473656,-710413 +(1,23250:-473656,4736287:0,0,0 +k1,23250:-473656,4736287:5209943 +) +g1,23250:-473656,-710413 ) ] ) -[1,23026:6630773,47279633:25952256,43253760,0 -[1,23026:6630773,4812305:25952256,786432,0 -(1,23026:6630773,4812305:25952256,513147,126483 -(1,23026:6630773,4812305:25952256,513147,126483 -g1,23026:3078558,4812305 -[1,23026:3078558,4812305:0,0,0 -(1,23026:3078558,2439708:0,1703936,0 -k1,23026:1358238,2439708:-1720320 -(1,21457:1358238,2439708:1720320,1703936,0 -(1,21457:1358238,2439708:1179648,16384,0 -r1,23026:2537886,2439708:1179648,16384,0 +[1,23250:6630773,47279633:25952256,43253760,0 +[1,23250:6630773,4812305:25952256,786432,0 +(1,23250:6630773,4812305:25952256,505283,134348 +(1,23250:6630773,4812305:25952256,505283,134348 +g1,23250:3078558,4812305 +[1,23250:3078558,4812305:0,0,0 +(1,23250:3078558,2439708:0,1703936,0 +k1,23250:1358238,2439708:-1720320 +(1,21670:1358238,2439708:1720320,1703936,0 +(1,21670:1358238,2439708:1179648,16384,0 +r1,23250:2537886,2439708:1179648,16384,0 ) -g1,21457:3062174,2439708 -(1,21457:3062174,2439708:16384,1703936,0 -[1,21457:3062174,2439708:25952256,1703936,0 -(1,21457:3062174,1915420:25952256,1179648,0 -(1,21457:3062174,1915420:16384,1179648,0 -r1,23026:3078558,1915420:16384,1179648,0 +g1,21670:3062174,2439708 +(1,21670:3062174,2439708:16384,1703936,0 +[1,21670:3062174,2439708:25952256,1703936,0 +(1,21670:3062174,1915420:25952256,1179648,0 +(1,21670:3062174,1915420:16384,1179648,0 +r1,23250:3078558,1915420:16384,1179648,0 ) -k1,21457:29014430,1915420:25935872 -g1,21457:29014430,1915420 +k1,21670:29014430,1915420:25935872 +g1,21670:29014430,1915420 ) ] ) ) ) ] -[1,23026:3078558,4812305:0,0,0 -(1,23026:3078558,2439708:0,1703936,0 -g1,23026:29030814,2439708 -g1,23026:36135244,2439708 -(1,21457:36135244,2439708:1720320,1703936,0 -(1,21457:36135244,2439708:16384,1703936,0 -[1,21457:36135244,2439708:25952256,1703936,0 -(1,21457:36135244,1915420:25952256,1179648,0 -(1,21457:36135244,1915420:16384,1179648,0 -r1,23026:36151628,1915420:16384,1179648,0 +[1,23250:3078558,4812305:0,0,0 +(1,23250:3078558,2439708:0,1703936,0 +g1,23250:29030814,2439708 +g1,23250:36135244,2439708 +(1,21670:36135244,2439708:1720320,1703936,0 +(1,21670:36135244,2439708:16384,1703936,0 +[1,21670:36135244,2439708:25952256,1703936,0 +(1,21670:36135244,1915420:25952256,1179648,0 +(1,21670:36135244,1915420:16384,1179648,0 +r1,23250:36151628,1915420:16384,1179648,0 ) -k1,21457:62087500,1915420:25935872 -g1,21457:62087500,1915420 +k1,21670:62087500,1915420:25935872 +g1,21670:62087500,1915420 ) ] ) -g1,21457:36675916,2439708 -(1,21457:36675916,2439708:1179648,16384,0 -r1,23026:37855564,2439708:1179648,16384,0 +g1,21670:36675916,2439708 +(1,21670:36675916,2439708:1179648,16384,0 +r1,23250:37855564,2439708:1179648,16384,0 ) ) -k1,23026:3078556,2439708:-34777008 +k1,23250:3078556,2439708:-34777008 ) ] -[1,23026:3078558,4812305:0,0,0 -(1,23026:3078558,49800853:0,16384,2228224 -k1,23026:1358238,49800853:-1720320 -(1,21457:1358238,49800853:1720320,16384,2228224 -(1,21457:1358238,49800853:1179648,16384,0 -r1,23026:2537886,49800853:1179648,16384,0 +[1,23250:3078558,4812305:0,0,0 +(1,23250:3078558,49800853:0,16384,2228224 +k1,23250:1358238,49800853:-1720320 +(1,21670:1358238,49800853:1720320,16384,2228224 +(1,21670:1358238,49800853:1179648,16384,0 +r1,23250:2537886,49800853:1179648,16384,0 ) -g1,21457:3062174,49800853 -(1,21457:3062174,52029077:16384,1703936,0 -[1,21457:3062174,52029077:25952256,1703936,0 -(1,21457:3062174,51504789:25952256,1179648,0 -(1,21457:3062174,51504789:16384,1179648,0 -r1,23026:3078558,51504789:16384,1179648,0 +g1,21670:3062174,49800853 +(1,21670:3062174,52029077:16384,1703936,0 +[1,21670:3062174,52029077:25952256,1703936,0 +(1,21670:3062174,51504789:25952256,1179648,0 +(1,21670:3062174,51504789:16384,1179648,0 +r1,23250:3078558,51504789:16384,1179648,0 ) -k1,21457:29014430,51504789:25935872 -g1,21457:29014430,51504789 +k1,21670:29014430,51504789:25935872 +g1,21670:29014430,51504789 ) ] ) ) ) -] -[1,23026:3078558,4812305:0,0,0 -(1,23026:3078558,49800853:0,16384,2228224 -g1,23026:29030814,49800853 -g1,23026:36135244,49800853 -(1,21457:36135244,49800853:1720320,16384,2228224 -(1,21457:36135244,52029077:16384,1703936,0 -[1,21457:36135244,52029077:25952256,1703936,0 -(1,21457:36135244,51504789:25952256,1179648,0 -(1,21457:36135244,51504789:16384,1179648,0 -r1,23026:36151628,51504789:16384,1179648,0 -) -k1,21457:62087500,51504789:25935872 -g1,21457:62087500,51504789 +] +[1,23250:3078558,4812305:0,0,0 +(1,23250:3078558,49800853:0,16384,2228224 +g1,23250:29030814,49800853 +g1,23250:36135244,49800853 +(1,21670:36135244,49800853:1720320,16384,2228224 +(1,21670:36135244,52029077:16384,1703936,0 +[1,21670:36135244,52029077:25952256,1703936,0 +(1,21670:36135244,51504789:25952256,1179648,0 +(1,21670:36135244,51504789:16384,1179648,0 +r1,23250:36151628,51504789:16384,1179648,0 +) +k1,21670:62087500,51504789:25935872 +g1,21670:62087500,51504789 +) +] +) +g1,21670:36675916,49800853 +(1,21670:36675916,49800853:1179648,16384,0 +r1,23250:37855564,49800853:1179648,16384,0 +) +) +k1,23250:3078556,49800853:-34777008 +) +] +g1,23250:6630773,4812305 +k1,23250:21078841,4812305:13252691 +g1,23250:22701512,4812305 +g1,23250:23350318,4812305 +g1,23250:24759997,4812305 +g1,23250:28372341,4812305 +g1,23250:30105768,4812305 +) +) +] +[1,23250:6630773,45706769:25952256,40108032,0 +(1,23250:6630773,45706769:25952256,40108032,0 +(1,23250:6630773,45706769:0,0,0 +g1,23250:6630773,45706769 +) +[1,23250:6630773,45706769:25952256,40108032,0 +v1,23215:6630773,6254097:0,393216,0 +(1,23215:6630773,8543098:25952256,2682217,196608 +g1,23215:6630773,8543098 +g1,23215:6630773,8543098 +g1,23215:6434165,8543098 +(1,23215:6434165,8543098:0,2682217,196608 +r1,23250:32779637,8543098:26345472,2878825,196608 +k1,23215:6434165,8543098:-26345472 +) +(1,23215:6434165,8543098:26345472,2682217,196608 +[1,23215:6630773,8543098:25952256,2485609,0 +(1,23214:6630773,6481928:25952256,424439,9908 +h1,23214:6630773,6481928:0,0,0 +g1,23214:7626635,6481928 +g1,23214:8290543,6481928 +g1,23214:8622497,6481928 +g1,23214:8954451,6481928 +g1,23214:9286405,6481928 +g1,23214:9618359,6481928 +g1,23214:10946175,6481928 +h1,23214:12605945,6481928:0,0,0 +k1,23214:32583029,6481928:19977084 +g1,23214:32583029,6481928 +) +(1,23214:6630773,7166783:25952256,424439,9908 +h1,23214:6630773,7166783:0,0,0 +g1,23214:7626635,7166783 +g1,23214:8290543,7166783 +g1,23214:8622497,7166783 +g1,23214:8954451,7166783 +g1,23214:9286405,7166783 +g1,23214:9618359,7166783 +g1,23214:10946175,7166783 +h1,23214:12605945,7166783:0,0,0 +k1,23214:32583029,7166783:19977084 +g1,23214:32583029,7166783 +) +(1,23214:6630773,7851638:25952256,424439,9908 +h1,23214:6630773,7851638:0,0,0 +g1,23214:7626635,7851638 +g1,23214:8290543,7851638 +g1,23214:8622497,7851638 +g1,23214:8954451,7851638 +g1,23214:9286405,7851638 +g1,23214:9618359,7851638 +g1,23214:10282267,7851638 +g1,23214:10614221,7851638 +g1,23214:10946175,7851638 +h1,23214:12605945,7851638:0,0,0 +k1,23214:32583029,7851638:19977084 +g1,23214:32583029,7851638 +) +(1,23214:6630773,8536493:25952256,424439,6605 +h1,23214:6630773,8536493:0,0,0 +g1,23214:7626635,8536493 +g1,23214:8290543,8536493 +g1,23214:8954451,8536493 +g1,23214:9950313,8536493 +g1,23214:11610083,8536493 +h1,23214:12937899,8536493:0,0,0 +k1,23214:32583029,8536493:19645130 +g1,23214:32583029,8536493 +) +] +) +g1,23215:32583029,8543098 +g1,23215:6630773,8543098 +g1,23215:6630773,8543098 +g1,23215:32583029,8543098 +g1,23215:32583029,8543098 +) +h1,23215:6630773,8739706:0,0,0 +v1,23219:6630773,9604786:0,393216,0 +(1,23220:6630773,12588350:25952256,3376780,0 +g1,23220:6630773,12588350 +g1,23220:6237557,12588350 +r1,23250:6368629,12588350:131072,3376780,0 +g1,23220:6567858,12588350 +g1,23220:6764466,12588350 +[1,23220:6764466,12588350:25818563,3376780,0 +(1,23220:6764466,9877263:25818563,665693,196608 +(1,23219:6764466,9877263:0,665693,196608 +r1,23250:8010564,9877263:1246098,862301,196608 +k1,23219:6764466,9877263:-1246098 +) +(1,23219:6764466,9877263:1246098,665693,196608 +) +k1,23219:8182001,9877263:171437 +k1,23219:10316509,9877263:327680 +k1,23219:13370219,9877263:171437 +k1,23219:14560742,9877263:171438 +k1,23219:16742824,9877263:171437 +k1,23219:19692988,9877263:171437 +k1,23219:20625953,9877263:171437 +k1,23219:23559733,9877263:171437 +(1,23219:23559733,9877263:0,452978,115847 +r1,23250:24973134,9877263:1413401,568825,115847 +k1,23219:23559733,9877263:-1413401 +) +(1,23219:23559733,9877263:1413401,452978,115847 +k1,23219:23559733,9877263:3277 +h1,23219:24969857,9877263:0,411205,112570 +) +k1,23219:25144572,9877263:171438 +k1,23219:28341806,9877263:171437 +k1,23219:30211281,9877263:171437 +k1,23219:32583029,9877263:0 +) +(1,23220:6764466,10742343:25818563,513147,126483 +k1,23219:7661185,10742343:245291 +k1,23219:8925562,10742343:245292 +k1,23219:10824326,10742343:245291 +k1,23219:12052658,10742343:245292 +k1,23219:13107319,10742343:245291 +k1,23219:14871079,10742343:245291 +k1,23219:16265217,10742343:245292 +(1,23219:16265217,10742343:0,452978,115847 +r1,23250:18733754,10742343:2468537,568825,115847 +k1,23219:16265217,10742343:-2468537 +) +(1,23219:16265217,10742343:2468537,452978,115847 +k1,23219:16265217,10742343:3277 +h1,23219:18730477,10742343:0,411205,112570 +) +k1,23219:19152715,10742343:245291 +(1,23219:19152715,10742343:0,452978,115847 +r1,23250:20917828,10742343:1765113,568825,115847 +k1,23219:19152715,10742343:-1765113 +) +(1,23219:19152715,10742343:1765113,452978,115847 +k1,23219:19152715,10742343:3277 +h1,23219:20914551,10742343:0,411205,112570 +) +k1,23219:21163120,10742343:245292 +k1,23219:22599856,10742343:245291 +(1,23219:22599856,10742343:0,452978,115847 +r1,23250:25068393,10742343:2468537,568825,115847 +k1,23219:22599856,10742343:-2468537 +) +(1,23219:22599856,10742343:2468537,452978,115847 +k1,23219:22599856,10742343:3277 +h1,23219:25065116,10742343:0,411205,112570 +) +k1,23219:25313684,10742343:245291 +k1,23219:26245138,10742343:245292 +k1,23219:28071813,10742343:245291 +k1,23219:28933143,10742343:245292 +k1,23219:30637265,10742343:245291 +k1,23220:32583029,10742343:0 +) +(1,23220:6764466,11607423:25818563,513147,126483 +k1,23219:9063284,11607423:213462 +k1,23219:9754502,11607423:213461 +k1,23219:11138437,11607423:213462 +k1,23219:12343459,11607423:213462 +k1,23219:14479747,11607423:213462 +k1,23219:15979024,11607423:213461 +k1,23219:17284971,11607423:213462 +(1,23219:17284971,11607423:0,452978,115847 +r1,23250:21512067,11607423:4227096,568825,115847 +k1,23219:17284971,11607423:-4227096 +) +(1,23219:17284971,11607423:4227096,452978,115847 +k1,23219:17284971,11607423:3277 +h1,23219:21508790,11607423:0,411205,112570 +) +k1,23219:21899199,11607423:213462 +(1,23219:21899199,11607423:0,452978,115847 +r1,23250:24016024,11607423:2116825,568825,115847 +k1,23219:21899199,11607423:-2116825 +) +(1,23219:21899199,11607423:2116825,452978,115847 +k1,23219:21899199,11607423:3277 +h1,23219:24012747,11607423:0,411205,112570 +) +k1,23219:24403156,11607423:213462 +(1,23219:24403156,11607423:0,452978,115847 +r1,23250:26168269,11607423:1765113,568825,115847 +k1,23219:24403156,11607423:-1765113 +) +(1,23219:24403156,11607423:1765113,452978,115847 +k1,23219:24403156,11607423:3277 +h1,23219:26164992,11607423:0,411205,112570 +) +k1,23219:26555400,11607423:213461 +(1,23219:26555400,11607423:0,452978,115847 +r1,23250:30079072,11607423:3523672,568825,115847 +k1,23219:26555400,11607423:-3523672 +) +(1,23219:26555400,11607423:3523672,452978,115847 +k1,23219:26555400,11607423:3277 +h1,23219:30075795,11607423:0,411205,112570 +) +k1,23219:30466204,11607423:213462 +(1,23219:30466204,11607423:0,452978,115847 +r1,23250:32583029,11607423:2116825,568825,115847 +k1,23219:30466204,11607423:-2116825 +) +(1,23219:30466204,11607423:2116825,452978,115847 +k1,23219:30466204,11607423:3277 +h1,23219:32579752,11607423:0,411205,112570 +) +k1,23219:32583029,11607423:0 +) +(1,23220:6764466,12472503:25818563,505283,115847 +g1,23219:8155140,12472503 +(1,23219:8155140,12472503:0,452978,115847 +r1,23250:10271965,12472503:2116825,568825,115847 +k1,23219:8155140,12472503:-2116825 +) +(1,23219:8155140,12472503:2116825,452978,115847 +k1,23219:8155140,12472503:3277 +h1,23219:10268688,12472503:0,411205,112570 +) +k1,23220:32583029,12472503:22137394 +g1,23220:32583029,12472503 +) +] +g1,23220:32583029,12588350 +) +h1,23220:6630773,12588350:0,0,0 +v1,23223:6630773,13453430:0,393216,0 +(1,23224:6630773,15463930:25952256,2403716,0 +g1,23224:6630773,15463930 +g1,23224:6237557,15463930 +r1,23250:6368629,15463930:131072,2403716,0 +g1,23224:6567858,15463930 +g1,23224:6764466,15463930 +[1,23224:6764466,15463930:25818563,2403716,0 +(1,23224:6764466,13725907:25818563,665693,196608 +(1,23223:6764466,13725907:0,665693,196608 +r1,23250:8010564,13725907:1246098,862301,196608 +k1,23223:6764466,13725907:-1246098 +) +(1,23223:6764466,13725907:1246098,665693,196608 +) +k1,23223:8327927,13725907:317363 +k1,23223:10462435,13725907:327680 +k1,23223:11257555,13725907:317363 +k1,23223:12745391,13725907:317363 +k1,23223:14155240,13725907:317364 +k1,23223:15155488,13725907:317363 +k1,23223:16948066,13725907:317363 +k1,23223:17881467,13725907:317363 +k1,23223:19217915,13725907:317363 +k1,23223:20899082,13725907:317363 +k1,23223:22729671,13725907:317363 +k1,23223:24749005,13725907:317364 +k1,23223:28150492,13725907:317363 +k1,23223:31226921,13725907:317363 +k1,23223:32227169,13725907:317363 +k1,23223:32583029,13725907:0 +) +(1,23224:6764466,14590987:25818563,513147,134348 +k1,23223:12196149,14590987:268757 +k1,23223:15307202,14590987:268757 +k1,23223:16722184,14590987:268757 +k1,23223:19329265,14590987:268757 +k1,23223:20984764,14590987:268757 +k1,23223:22201172,14590987:268757 +k1,23223:24162069,14590987:268757 +k1,23223:25451222,14590987:268757 +k1,23223:27033321,14590987:268757 +k1,23223:28493523,14590987:268757 +k1,23223:30943974,14590987:268757 +k1,23223:32583029,14590987:0 +) +(1,23224:6764466,15456067:25818563,473825,7863 +g1,23223:8231161,15456067 +k1,23224:32583030,15456067:23763356 +g1,23224:32583030,15456067 +) +] +g1,23224:32583029,15463930 +) +h1,23224:6630773,15463930:0,0,0 +(1,23227:6630773,18295090:25952256,32768,229376 +(1,23227:6630773,18295090:0,32768,229376 +(1,23227:6630773,18295090:5505024,32768,229376 +r1,23250:12135797,18295090:5505024,262144,229376 +) +k1,23227:6630773,18295090:-5505024 +) +(1,23227:6630773,18295090:25952256,32768,0 +r1,23250:32583029,18295090:25952256,32768,0 +) +) +(1,23227:6630773,19926942:25952256,615776,14155 +(1,23227:6630773,19926942:2954625,582746,14155 +g1,23227:6630773,19926942 +g1,23227:9585398,19926942 +) +g1,23227:12841227,19926942 +k1,23227:32583029,19926942:18103664 +g1,23227:32583029,19926942 +) +(1,23231:6630773,21185238:25952256,513147,134348 +k1,23230:7483875,21185238:225267 +k1,23230:9401283,21185238:225268 +k1,23230:11534303,21185238:225267 +k1,23230:14740148,21185238:225268 +k1,23230:18473557,21185238:225267 +k1,23230:19890269,21185238:225267 +k1,23230:24273141,21185238:225268 +k1,23230:26888480,21185238:225241 +k1,23230:27645244,21185238:225267 +k1,23230:28226372,21185238:225268 +k1,23230:29805613,21185238:225267 +k1,23230:32583029,21185238:0 +) +(1,23231:6630773,22050318:25952256,513147,134348 +k1,23230:9023001,22050318:211845 +k1,23230:10182497,22050318:211845 +k1,23230:11413427,22050318:211845 +k1,23230:14578325,22050318:211846 +k1,23230:15449462,22050318:211845 +k1,23230:17224341,22050318:211845 +k1,23230:17906079,22050318:211845 +k1,23230:18649421,22050318:211845 +k1,23230:20147082,22050318:211845 +k1,23230:21872153,22050318:211845 +k1,23230:22700036,22050318:211845 +k1,23230:24613852,22050318:211846 +k1,23230:27525125,22050318:211845 +k1,23230:28353008,22050318:211845 +k1,23230:30450324,22050318:211845 +k1,23230:32051532,22050318:211845 +k1,23230:32583029,22050318:0 +) +(1,23231:6630773,22915398:25952256,513147,134348 +k1,23230:10230830,22915398:200049 +k1,23230:11082306,22915398:200048 +k1,23230:11638215,22915398:200049 +k1,23230:13122769,22915398:200048 +k1,23230:13982110,22915398:200049 +k1,23230:17242689,22915398:200048 +k1,23230:18588963,22915398:200049 +k1,23230:20182963,22915398:200049 +k1,23230:21772374,22915398:200048 +k1,23230:23384724,22915398:200049 +k1,23230:25152393,22915398:200048 +k1,23230:28765557,22915398:200049 +k1,23230:32583029,22915398:0 +) +(1,23231:6630773,23780478:25952256,513147,134348 +k1,23230:8300586,23780478:156587 +k1,23230:9108601,23780478:156587 +k1,23230:11049079,23780478:156588 +k1,23230:12689401,23780478:156587 +k1,23230:16459643,23780478:156587 +k1,23230:19006286,23780478:156545 +k1,23230:20476215,23780478:156587 +k1,23230:21624362,23780478:156587 +k1,23230:23802735,23780478:156587 +k1,23230:25031491,23780478:156587 +k1,23230:26280563,23780478:156587 +k1,23230:26793011,23780478:156588 +k1,23230:29129981,23780478:156587 +k1,23230:30571074,23780478:156587 +k1,23230:32583029,23780478:0 +) +(1,23231:6630773,24645558:25952256,513147,134348 +k1,23230:7851507,24645558:201649 +k1,23230:10400656,24645558:201649 +k1,23230:11261597,24645558:201649 +k1,23230:14432683,24645558:201650 +k1,23230:17946522,24645558:201649 +k1,23230:19599793,24645558:201649 +k1,23230:22312782,24645558:201649 +k1,23230:25194854,24645558:201649 +k1,23230:26790454,24645558:201649 +k1,23230:28011189,24645558:201650 +k1,23230:29602201,24645558:201649 +k1,23230:31409482,24645558:201649 +k1,23230:32227169,24645558:201649 +k1,23230:32583029,24645558:0 +) +(1,23231:6630773,25510638:25952256,513147,134348 +k1,23230:11451470,25510638:142082 +k1,23230:12784997,25510638:142082 +k1,23230:17129903,25510638:142082 +k1,23230:19626038,25510638:142082 +k1,23230:21653590,25510638:142081 +k1,23230:22327169,25510638:142082 +k1,23230:23999517,25510638:142082 +k1,23230:25089250,25510638:142082 +k1,23230:28184384,25510638:142082 +k1,23230:28985758,25510638:142082 +k1,23230:32583029,25510638:0 +) +(1,23231:6630773,26375718:25952256,505283,134348 +g1,23230:8400900,26375718 +g1,23230:9989492,26375718 +g1,23230:11453566,26375718 +g1,23230:14777552,26375718 +g1,23230:15786151,26375718 +g1,23230:16341240,26375718 +g1,23230:18666457,26375718 +g1,23230:19548571,26375718 +g1,23230:24809146,26375718 +k1,23231:32583029,26375718:6315707 +g1,23231:32583029,26375718 +) +(1,23233:6630773,27240798:25952256,513147,126483 +h1,23232:6630773,27240798:983040,0,0 +g1,23232:10635678,27240798 +g1,23232:13924930,27240798 +g1,23232:14810321,27240798 +k1,23233:32583029,27240798:15283651 +g1,23233:32583029,27240798 +) +(1,23235:7202902,28630166:24807998,513147,134348 +(1,23233:7202902,28630166:0,0,0 +g1,23233:7202902,28630166 +g1,23233:5892182,28630166 +g1,23233:5564502,28630166 +(1,23233:5564502,28630166:1310720,0,0 +k1,23233:6875222,28630166:1310720 +) +g1,23233:7202902,28630166 +) +k1,23234:7202902,28630166:0 +k1,23234:9999136,28630166:406136 +k1,23234:10936977,28630166:406344 +k1,23234:11699181,28630166:406344 +k1,23234:13040068,28630166:406344 +k1,23234:14105705,28630166:406345 +k1,23234:17271115,28630166:406344 +k1,23234:20295622,28630166:406344 +k1,23234:22476681,28630166:406344 +k1,23234:25566724,28630166:406344 +k1,23234:27164513,28630166:406344 +k1,23234:32010900,28630166:0 +) +(1,23235:7202902,29495246:24807998,513147,126483 +k1,23234:14266591,29495246:156194 +k1,23234:15812148,29495246:156194 +k1,23234:18479026,29495246:156194 +k1,23234:19919726,29495246:156194 +k1,23234:22602333,29495246:156194 +k1,23234:23777612,29495246:156194 +k1,23234:26700081,29495246:156194 +k1,23234:29060906,29495246:156194 +k1,23234:30408545,29495246:156194 +k1,23235:32010900,29495246:0 +) +(1,23235:7202902,30360326:24807998,513147,134348 +g1,23234:8392380,30360326 +g1,23234:9250901,30360326 +g1,23234:13983911,30360326 +g1,23234:17032645,30360326 +k1,23235:32010900,30360326:13415221 +g1,23235:32010900,30360326 +) +(1,23238:6630773,31749694:25952256,513147,134348 +h1,23237:6630773,31749694:983040,0,0 +k1,23237:8743006,31749694:311304 +k1,23237:12502159,31749694:311304 +k1,23237:15203448,31749694:311191 +k1,23237:16828094,31749694:311304 +k1,23237:18130958,31749694:311304 +k1,23237:20186830,31749694:311304 +k1,23237:20956231,31749694:311304 +k1,23237:21799032,31749694:311304 +k1,23237:23694341,31749694:311304 +k1,23237:25290150,31749694:311303 +k1,23237:26059551,31749694:311304 +k1,23237:26902352,31749694:311304 +k1,23237:29843616,31749694:311304 +k1,23237:30806348,31749694:311304 +k1,23238:32583029,31749694:0 +) +(1,23238:6630773,32614774:25952256,513147,134348 +k1,23237:8527440,32614774:167827 +k1,23237:10107568,32614774:167827 +k1,23237:11294479,32614774:167826 +k1,23237:12851669,32614774:167827 +k1,23237:14587117,32614774:167827 +k1,23237:17947858,32614774:167827 +k1,23237:20957326,32614774:167827 +k1,23237:22519104,32614774:167827 +k1,23237:25712727,32614774:167826 +k1,23237:26496592,32614774:167827 +k1,23237:29574873,32614774:167827 +k1,23237:31900144,32614774:167827 +k1,23237:32583029,32614774:0 +) +(1,23238:6630773,33479854:25952256,513147,134348 +k1,23237:10154088,33479854:197364 +k1,23237:11275510,33479854:197364 +k1,23237:12491959,33479854:197364 +k1,23237:14391293,33479854:197364 +k1,23237:16368615,33479854:197364 +k1,23237:17769220,33479854:197364 +k1,23237:20292458,33479854:197365 +k1,23237:21774328,33479854:197364 +k1,23237:24665222,33479854:197364 +k1,23237:25514014,33479854:197364 +k1,23237:27413348,33479854:197364 +k1,23237:29000075,33479854:197364 +k1,23237:30180479,33479854:197364 +k1,23237:32583029,33479854:0 +) +(1,23238:6630773,34344934:25952256,513147,134348 +k1,23237:10440938,34344934:231899 +k1,23237:13075387,34344934:231899 +k1,23237:13663146,34344934:231899 +k1,23237:16285110,34344934:231866 +k1,23237:17500049,34344934:231899 +k1,23237:18263445,34344934:231899 +k1,23237:20072796,34344934:231899 +k1,23237:20920733,34344934:231899 +k1,23237:22325071,34344934:231899 +k1,23237:23239855,34344934:231899 +k1,23237:25121951,34344934:231899 +k1,23237:28764344,34344934:231899 +k1,23237:31563944,34344934:231899 +k1,23237:32583029,34344934:0 +) +(1,23238:6630773,35210014:25952256,513147,134348 +k1,23237:7960974,35210014:173491 +k1,23237:10537016,35210014:173492 +k1,23237:13679943,35210014:173491 +k1,23237:17165625,35210014:173492 +k1,23237:18358201,35210014:173491 +k1,23237:21373334,35210014:173492 +k1,23237:22738270,35210014:173491 +k1,23237:25037750,35210014:173492 +k1,23237:26669417,35210014:173491 +k1,23237:28034354,35210014:173492 +k1,23237:30180479,35210014:173491 +k1,23237:32583029,35210014:0 +) +(1,23238:6630773,36075094:25952256,513147,7863 +g1,23237:7849087,36075094 +g1,23237:9437679,36075094 +g1,23237:10296200,36075094 +k1,23238:32583029,36075094:19669976 +g1,23238:32583029,36075094 +) +(1,23239:6630773,38191912:25952256,564462,12975 +(1,23239:6630773,38191912:3348562,534184,12975 +g1,23239:6630773,38191912 +g1,23239:9979335,38191912 +) +k1,23239:32583028,38191912:20127416 +g1,23239:32583028,38191912 +) +(1,23244:6630773,39450208:25952256,513147,134348 +k1,23243:9313166,39450208:147460 +k1,23243:11618071,39450208:147461 +k1,23243:14622245,39450208:147460 +k1,23243:17172255,39450208:147460 +k1,23243:17979007,39450208:147460 +k1,23243:19439810,39450208:147461 +k1,23243:21322663,39450208:147460 +k1,23243:23860170,39450208:147409 +k1,23243:26341367,39450208:147460 +k1,23243:26887286,39450208:147460 +k1,23243:27717632,39450208:147461 +k1,23243:29898674,39450208:147460 +k1,23243:32583029,39450208:0 +) +(1,23244:6630773,40315288:25952256,513147,134348 +k1,23243:9920493,40315288:169551 +k1,23243:10706082,40315288:169551 +k1,23243:13033077,40315288:169551 +k1,23243:14268899,40315288:169551 +k1,23243:15814051,40315288:169551 +k1,23243:17665256,40315288:169551 +k1,23243:20237357,40315288:169551 +k1,23243:21598353,40315288:169551 +k1,23243:24025619,40315288:169551 +k1,23243:24854462,40315288:169551 +k1,23243:26720740,40315288:169551 +k1,23243:28377303,40315288:169551 +k1,23243:29619023,40315288:169551 +k1,23243:31074390,40315288:169551 +k1,23243:32583029,40315288:0 +) +(1,23244:6630773,41180368:25952256,513147,7863 +k1,23244:32583030,41180368:21754676 +g1,23244:32583030,41180368 +) +(1,23246:6630773,42045448:25952256,513147,102891 +h1,23245:6630773,42045448:983040,0,0 +k1,23245:8746930,42045448:179568 +k1,23245:10232632,42045448:179569 +k1,23245:11824501,42045448:179568 +k1,23245:14973506,42045448:179569 +k1,23245:15804502,42045448:179568 +k1,23245:18007823,42045448:179569 +k1,23245:18958094,42045448:179568 +k1,23245:20886819,42045448:179569 +k1,23245:21725679,42045448:179568 +k1,23245:22924333,42045448:179569 +k1,23245:24086941,42045448:179568 +k1,23245:27189416,42045448:179569 +k1,23245:28560429,42045448:179568 +k1,23245:29356036,42045448:179569 +k1,23245:32583029,42045448:0 +) +(1,23246:6630773,42910528:25952256,513147,126483 +k1,23245:8788144,42910528:298115 +k1,23245:10498560,42910528:298115 +k1,23245:11152535,42910528:298115 +k1,23245:13530762,42910528:298114 +k1,23245:14488169,42910528:298115 +k1,23245:15805369,42910528:298115 +k1,23245:17666518,42910528:298115 +k1,23245:19443781,42910528:298115 +(1,23245:19443781,42910528:0,452978,115847 +r1,23250:21912318,42910528:2468537,568825,115847 +k1,23245:19443781,42910528:-2468537 +) +(1,23245:19443781,42910528:2468537,452978,115847 +k1,23245:19443781,42910528:3277 +h1,23245:21909041,42910528:0,411205,112570 +) +k1,23245:22210433,42910528:298115 +k1,23245:23376900,42910528:298115 +k1,23245:24779297,42910528:298115 +k1,23245:26343567,42910528:298114 +k1,23245:27707953,42910528:298115 +k1,23245:29025153,42910528:298115 +k1,23245:31391584,42910528:298115 +k1,23245:32583029,42910528:0 +) +(1,23246:6630773,43775608:25952256,513147,134348 +k1,23245:11465186,43775608:206260 +k1,23245:12330737,43775608:206259 +k1,23245:13556082,43775608:206260 +k1,23245:16603982,43775608:206259 +k1,23245:18001687,43775608:206260 +k1,23245:21490644,43775608:206259 +k1,23245:22324739,43775608:206260 +k1,23245:23734239,43775608:206259 +k1,23245:26775586,43775608:206260 +k1,23245:27850197,43775608:206259 +k1,23245:29468758,43775608:206260 +k1,23245:32583029,43775608:0 +) +(1,23246:6630773,44640688:25952256,513147,134348 +g1,23245:9586446,44640688 +g1,23245:10733326,44640688 +g1,23245:13785993,44640688 +g1,23245:20040749,44640688 +k1,23246:32583029,44640688:10773463 +g1,23246:32583029,44640688 +) +(1,23248:6630773,45505768:25952256,513147,126483 +h1,23247:6630773,45505768:983040,0,0 +g1,23247:8766591,45505768 +g1,23247:10271953,45505768 +g1,23247:12048634,45505768 +g1,23247:12603723,45505768 +g1,23247:16309128,45505768 +g1,23247:17159785,45505768 +g1,23247:18378099,45505768 +g1,23247:19560368,45505768 +g1,23247:21153548,45505768 +g1,23247:24048273,45505768 +(1,23247:24048273,45505768:0,452978,115847 +r1,23250:27220233,45505768:3171960,568825,115847 +k1,23247:24048273,45505768:-3171960 +) +(1,23247:24048273,45505768:3171960,452978,115847 +k1,23247:24048273,45505768:3277 +h1,23247:27216956,45505768:0,411205,112570 +) +k1,23248:32583029,45505768:5189126 +g1,23248:32583029,45505768 +) +] +(1,23250:32583029,45706769:0,0,0 +g1,23250:32583029,45706769 +) +) +] +(1,23250:6630773,47279633:25952256,0,0 +h1,23250:6630773,47279633:25952256,0,0 +) +] +(1,23250:4262630,4025873:0,0,0 +[1,23250:-473656,4025873:0,0,0 +(1,23250:-473656,-710413:0,0,0 +(1,23250:-473656,-710413:0,0,0 +g1,23250:-473656,-710413 +) +g1,23250:-473656,-710413 +) +] +) +] +!24280 +}401 +Input:3748:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3749:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3750:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3751:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3752:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3753:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!576 +{402 +[1,23334:4262630,47279633:28320399,43253760,0 +(1,23334:4262630,4025873:0,0,0 +[1,23334:-473656,4025873:0,0,0 +(1,23334:-473656,-710413:0,0,0 +(1,23334:-473656,-644877:0,0,0 +k1,23334:-473656,-644877:-65536 +) +(1,23334:-473656,4736287:0,0,0 +k1,23334:-473656,4736287:5209943 +) +g1,23334:-473656,-710413 ) ] ) -g1,21457:36675916,49800853 -(1,21457:36675916,49800853:1179648,16384,0 -r1,23026:37855564,49800853:1179648,16384,0 +[1,23334:6630773,47279633:25952256,43253760,0 +[1,23334:6630773,4812305:25952256,786432,0 +(1,23334:6630773,4812305:25952256,513147,126483 +(1,23334:6630773,4812305:25952256,513147,126483 +g1,23334:3078558,4812305 +[1,23334:3078558,4812305:0,0,0 +(1,23334:3078558,2439708:0,1703936,0 +k1,23334:1358238,2439708:-1720320 +(1,21670:1358238,2439708:1720320,1703936,0 +(1,21670:1358238,2439708:1179648,16384,0 +r1,23334:2537886,2439708:1179648,16384,0 ) +g1,21670:3062174,2439708 +(1,21670:3062174,2439708:16384,1703936,0 +[1,21670:3062174,2439708:25952256,1703936,0 +(1,21670:3062174,1915420:25952256,1179648,0 +(1,21670:3062174,1915420:16384,1179648,0 +r1,23334:3078558,1915420:16384,1179648,0 ) -k1,23026:3078556,49800853:-34777008 +k1,21670:29014430,1915420:25935872 +g1,21670:29014430,1915420 ) ] -g1,23026:6630773,4812305 -g1,23026:6630773,4812305 -g1,23026:9235173,4812305 -g1,23026:10666479,4812305 -k1,23026:31387651,4812305:20721172 +) ) ) ] -[1,23026:6630773,45706769:25952256,40108032,0 -(1,23026:6630773,45706769:25952256,40108032,0 -(1,23026:6630773,45706769:0,0,0 -g1,23026:6630773,45706769 +[1,23334:3078558,4812305:0,0,0 +(1,23334:3078558,2439708:0,1703936,0 +g1,23334:29030814,2439708 +g1,23334:36135244,2439708 +(1,21670:36135244,2439708:1720320,1703936,0 +(1,21670:36135244,2439708:16384,1703936,0 +[1,21670:36135244,2439708:25952256,1703936,0 +(1,21670:36135244,1915420:25952256,1179648,0 +(1,21670:36135244,1915420:16384,1179648,0 +r1,23334:36151628,1915420:16384,1179648,0 ) -[1,23026:6630773,45706769:25952256,40108032,0 -(1,22973:6630773,6254097:25952256,513147,134348 -h1,22972:6630773,6254097:983040,0,0 -g1,22972:9448165,6254097 -g1,22972:10515746,6254097 -g1,22972:12896669,6254097 -g1,22972:13866601,6254097 -g1,22972:15991933,6254097 -(1,22972:15991933,6254097:0,414482,115847 -r1,23026:17405334,6254097:1413401,530329,115847 -k1,22972:15991933,6254097:-1413401 -) -(1,22972:15991933,6254097:1413401,414482,115847 -k1,22972:15991933,6254097:3277 -h1,22972:17402057,6254097:0,411205,112570 -) -g1,22972:17604563,6254097 -g1,22972:18786832,6254097 -g1,22972:20797476,6254097 -g1,22972:21793623,6254097 -g1,22972:23675817,6254097 -k1,22973:32583029,6254097:7608944 -g1,22973:32583029,6254097 -) -v1,22975:6630773,7440155:0,393216,0 -(1,23002:6630773,19640741:25952256,12593802,196608 -g1,23002:6630773,19640741 -g1,23002:6630773,19640741 -g1,23002:6434165,19640741 -(1,23002:6434165,19640741:0,12593802,196608 -r1,23026:32779637,19640741:26345472,12790410,196608 -k1,23002:6434165,19640741:-26345472 -) -(1,23002:6434165,19640741:26345472,12593802,196608 -[1,23002:6630773,19640741:25952256,12397194,0 -(1,22977:6630773,7654065:25952256,410518,76021 -(1,22976:6630773,7654065:0,0,0 -g1,22976:6630773,7654065 -g1,22976:6630773,7654065 -g1,22976:6303093,7654065 -(1,22976:6303093,7654065:0,0,0 -) -g1,22976:6630773,7654065 -) -g1,22977:10108376,7654065 -g1,22977:11056814,7654065 -g1,22977:15482854,7654065 -g1,22977:16115146,7654065 -h1,22977:23070351,7654065:0,0,0 -k1,22977:32583029,7654065:9512678 -g1,22977:32583029,7654065 -) -(1,22978:6630773,8320243:25952256,404226,6290 -h1,22978:6630773,8320243:0,0,0 -h1,22978:9792230,8320243:0,0,0 -k1,22978:32583030,8320243:22790800 -g1,22978:32583030,8320243 -) -(1,22988:6630773,8986421:25952256,404226,6290 -(1,22980:6630773,8986421:0,0,0 -g1,22980:6630773,8986421 -g1,22980:6630773,8986421 -g1,22980:6303093,8986421 -(1,22980:6303093,8986421:0,0,0 -) -g1,22980:6630773,8986421 -) -g1,22988:7579210,8986421 -g1,22988:8211502,8986421 -g1,22988:8843794,8986421 -g1,22988:11372960,8986421 -g1,22988:12321397,8986421 -g1,22988:12953689,8986421 -h1,22988:13269835,8986421:0,0,0 -k1,22988:32583029,8986421:19313194 -g1,22988:32583029,8986421 -) -(1,22988:6630773,9652599:25952256,379060,7863 -h1,22988:6630773,9652599:0,0,0 -g1,22988:7579210,9652599 -g1,22988:7895356,9652599 -g1,22988:8211502,9652599 -g1,22988:10740668,9652599 -h1,22988:12637542,9652599:0,0,0 -k1,22988:32583030,9652599:19945488 -g1,22988:32583030,9652599 -) -(1,22988:6630773,10318777:25952256,404226,6290 -h1,22988:6630773,10318777:0,0,0 -g1,22988:7579210,10318777 -g1,22988:7895356,10318777 -g1,22988:8211502,10318777 -g1,22988:8527648,10318777 -g1,22988:8843794,10318777 -g1,22988:10740669,10318777 -k1,22988:10740669,10318777:0 -h1,22988:13585980,10318777:0,0,0 -k1,22988:32583028,10318777:18997048 -g1,22988:32583028,10318777 -) -(1,22988:6630773,10984955:25952256,404226,76021 -h1,22988:6630773,10984955:0,0,0 -g1,22988:7579210,10984955 -g1,22988:8211502,10984955 -g1,22988:8527648,10984955 -g1,22988:8843794,10984955 -g1,22988:9159940,10984955 -g1,22988:9476086,10984955 -g1,22988:10740669,10984955 -g1,22988:11372961,10984955 -h1,22988:13585981,10984955:0,0,0 -k1,22988:32583029,10984955:18997048 -g1,22988:32583029,10984955 -) -(1,22988:6630773,11651133:25952256,404226,76021 -h1,22988:6630773,11651133:0,0,0 -g1,22988:7579210,11651133 -g1,22988:8211502,11651133 -g1,22988:8527648,11651133 -g1,22988:8843794,11651133 -g1,22988:9159940,11651133 -g1,22988:9476086,11651133 -g1,22988:10740669,11651133 -g1,22988:11372961,11651133 -h1,22988:13585981,11651133:0,0,0 -k1,22988:32583029,11651133:18997048 -g1,22988:32583029,11651133 -) -(1,22988:6630773,12317311:25952256,404226,76021 -h1,22988:6630773,12317311:0,0,0 -g1,22988:7579210,12317311 -g1,22988:8211502,12317311 -g1,22988:8527648,12317311 -g1,22988:8843794,12317311 -g1,22988:9159940,12317311 -g1,22988:9476086,12317311 -g1,22988:10108378,12317311 -g1,22988:10424524,12317311 -g1,22988:10740670,12317311 -g1,22988:11372962,12317311 -h1,22988:13585982,12317311:0,0,0 -k1,22988:32583030,12317311:18997048 -g1,22988:32583030,12317311 -) -(1,22988:6630773,12983489:25952256,404226,6290 -h1,22988:6630773,12983489:0,0,0 -g1,22988:7579210,12983489 -g1,22988:8211502,12983489 -g1,22988:8843794,12983489 -g1,22988:9792231,12983489 -g1,22988:11372960,12983489 -h1,22988:12637543,12983489:0,0,0 -k1,22988:32583029,12983489:19945486 -g1,22988:32583029,12983489 -) -(1,22990:6630773,14305027:25952256,410518,76021 -(1,22989:6630773,14305027:0,0,0 -g1,22989:6630773,14305027 -g1,22989:6630773,14305027 -g1,22989:6303093,14305027 -(1,22989:6303093,14305027:0,0,0 -) -g1,22989:6630773,14305027 -) -g1,22990:10108376,14305027 -g1,22990:11056814,14305027 -k1,22990:11056814,14305027:0 -h1,22990:17695873,14305027:0,0,0 -k1,22990:32583029,14305027:14887156 -g1,22990:32583029,14305027 -) -(1,22991:6630773,14971205:25952256,404226,6290 -h1,22991:6630773,14971205:0,0,0 -h1,22991:9792230,14971205:0,0,0 -k1,22991:32583030,14971205:22790800 -g1,22991:32583030,14971205 -) -(1,23001:6630773,15637383:25952256,404226,6290 -(1,22993:6630773,15637383:0,0,0 -g1,22993:6630773,15637383 -g1,22993:6630773,15637383 -g1,22993:6303093,15637383 -(1,22993:6303093,15637383:0,0,0 -) -g1,22993:6630773,15637383 -) -g1,23001:7579210,15637383 -g1,23001:8211502,15637383 -g1,23001:8843794,15637383 -g1,23001:11372960,15637383 -g1,23001:12321397,15637383 -g1,23001:12953689,15637383 -h1,23001:13269835,15637383:0,0,0 -k1,23001:32583029,15637383:19313194 -g1,23001:32583029,15637383 -) -(1,23001:6630773,16303561:25952256,379060,7863 -h1,23001:6630773,16303561:0,0,0 -g1,23001:7579210,16303561 -g1,23001:7895356,16303561 -g1,23001:8211502,16303561 -g1,23001:10740668,16303561 -h1,23001:12637542,16303561:0,0,0 -k1,23001:32583030,16303561:19945488 -g1,23001:32583030,16303561 -) -(1,23001:6630773,16969739:25952256,410518,6290 -h1,23001:6630773,16969739:0,0,0 -g1,23001:7579210,16969739 -g1,23001:7895356,16969739 -g1,23001:8211502,16969739 -g1,23001:8527648,16969739 -g1,23001:8843794,16969739 -g1,23001:10740669,16969739 -k1,23001:10740669,16969739:0 -h1,23001:12321398,16969739:0,0,0 -k1,23001:32583030,16969739:20261632 -g1,23001:32583030,16969739 -) -(1,23001:6630773,17635917:25952256,404226,9436 -h1,23001:6630773,17635917:0,0,0 -g1,23001:7579210,17635917 -g1,23001:8211502,17635917 -g1,23001:8527648,17635917 -g1,23001:8843794,17635917 -g1,23001:9159940,17635917 -g1,23001:9476086,17635917 -g1,23001:10740669,17635917 -h1,23001:12321397,17635917:0,0,0 -k1,23001:32583029,17635917:20261632 -g1,23001:32583029,17635917 -) -(1,23001:6630773,18302095:25952256,404226,9436 -h1,23001:6630773,18302095:0,0,0 -g1,23001:7579210,18302095 -g1,23001:8211502,18302095 -g1,23001:8527648,18302095 -g1,23001:8843794,18302095 -g1,23001:9159940,18302095 -g1,23001:9476086,18302095 -g1,23001:10740669,18302095 -h1,23001:12321397,18302095:0,0,0 -k1,23001:32583029,18302095:20261632 -g1,23001:32583029,18302095 -) -(1,23001:6630773,18968273:25952256,404226,9436 -h1,23001:6630773,18968273:0,0,0 -g1,23001:7579210,18968273 -g1,23001:8211502,18968273 -g1,23001:8527648,18968273 -g1,23001:8843794,18968273 -g1,23001:9159940,18968273 -g1,23001:9476086,18968273 -g1,23001:10108378,18968273 -g1,23001:10424524,18968273 -g1,23001:10740670,18968273 -h1,23001:12321398,18968273:0,0,0 -k1,23001:32583030,18968273:20261632 -g1,23001:32583030,18968273 -) -(1,23001:6630773,19634451:25952256,404226,6290 -h1,23001:6630773,19634451:0,0,0 -g1,23001:7579210,19634451 -g1,23001:8211502,19634451 -g1,23001:8843794,19634451 -g1,23001:9792231,19634451 -g1,23001:11372960,19634451 -h1,23001:12637543,19634451:0,0,0 -k1,23001:32583029,19634451:19945486 -g1,23001:32583029,19634451 -) -] -) -g1,23002:32583029,19640741 -g1,23002:6630773,19640741 -g1,23002:6630773,19640741 -g1,23002:32583029,19640741 -g1,23002:32583029,19640741 -) -h1,23002:6630773,19837349:0,0,0 -v1,23006:6630773,21718596:0,393216,0 -(1,23007:6630773,24791445:25952256,3466065,0 -g1,23007:6630773,24791445 -g1,23007:6303093,24791445 -r1,23026:6401397,24791445:98304,3466065,0 -g1,23007:6600626,24791445 -g1,23007:6797234,24791445 -[1,23007:6797234,24791445:25785795,3466065,0 -(1,23007:6797234,22151134:25785795,825754,196608 -(1,23006:6797234,22151134:0,825754,196608 -r1,23026:7890375,22151134:1093141,1022362,196608 -k1,23006:6797234,22151134:-1093141 -) -(1,23006:6797234,22151134:1093141,825754,196608 -) -k1,23006:8073831,22151134:183456 -k1,23006:10208339,22151134:327680 -k1,23006:13274068,22151134:183456 -k1,23006:14476609,22151134:183456 -k1,23006:16670710,22151134:183456 -k1,23006:19632893,22151134:183456 -k1,23006:20577878,22151134:183457 -k1,23006:23523677,22151134:183456 -(1,23006:23523677,22151134:0,452978,115847 -r1,23026:24937078,22151134:1413401,568825,115847 -k1,23006:23523677,22151134:-1413401 -) -(1,23006:23523677,22151134:1413401,452978,115847 -k1,23006:23523677,22151134:3277 -h1,23006:24933801,22151134:0,411205,112570 -) -k1,23006:25120534,22151134:183456 -k1,23006:28329787,22151134:183456 -k1,23006:30211281,22151134:183456 -k1,23006:32583029,22151134:0 -) -(1,23007:6797234,22992622:25785795,513147,126483 -k1,23006:7691769,22992622:243107 -k1,23006:8953961,22992622:243107 -k1,23006:10850541,22992622:243107 -k1,23006:12076687,22992622:243106 -k1,23006:13129164,22992622:243107 -k1,23006:14890740,22992622:243107 -k1,23006:16282693,22992622:243107 -(1,23006:16282693,22992622:0,452978,115847 -r1,23026:18751230,22992622:2468537,568825,115847 -k1,23006:16282693,22992622:-2468537 -) -(1,23006:16282693,22992622:2468537,452978,115847 -k1,23006:16282693,22992622:3277 -h1,23006:18747953,22992622:0,411205,112570 -) -k1,23006:19168007,22992622:243107 -(1,23006:19168007,22992622:0,452978,115847 -r1,23026:20933120,22992622:1765113,568825,115847 -k1,23006:19168007,22992622:-1765113 -) -(1,23006:19168007,22992622:1765113,452978,115847 -k1,23006:19168007,22992622:3277 -h1,23006:20929843,22992622:0,411205,112570 -) -k1,23006:21176227,22992622:243107 -k1,23006:22610779,22992622:243107 -(1,23006:22610779,22992622:0,452978,115847 -r1,23026:25079316,22992622:2468537,568825,115847 -k1,23006:22610779,22992622:-2468537 -) -(1,23006:22610779,22992622:2468537,452978,115847 -k1,23006:22610779,22992622:3277 -h1,23006:25076039,22992622:0,411205,112570 -) -k1,23006:25322423,22992622:243107 -k1,23006:26251691,22992622:243106 -k1,23006:28076182,22992622:243107 -k1,23006:28935327,22992622:243107 -k1,23006:30637265,22992622:243107 -k1,23007:32583029,22992622:0 -) -(1,23007:6797234,23834110:25785795,513147,126483 -k1,23006:9093073,23834110:210483 -k1,23006:9781313,23834110:210483 -k1,23006:11162268,23834110:210482 -k1,23006:12364311,23834110:210483 -k1,23006:14497620,23834110:210483 -k1,23006:15993919,23834110:210483 -k1,23006:17296887,23834110:210483 -(1,23006:17296887,23834110:0,452978,115847 -r1,23026:21523983,23834110:4227096,568825,115847 -k1,23006:17296887,23834110:-4227096 -) -(1,23006:17296887,23834110:4227096,452978,115847 -k1,23006:17296887,23834110:3277 -h1,23006:21520706,23834110:0,411205,112570 -) -k1,23006:21908136,23834110:210483 -(1,23006:21908136,23834110:0,452978,115847 -r1,23026:24024961,23834110:2116825,568825,115847 -k1,23006:21908136,23834110:-2116825 -) -(1,23006:21908136,23834110:2116825,452978,115847 -k1,23006:21908136,23834110:3277 -h1,23006:24021684,23834110:0,411205,112570 -) -k1,23006:24409113,23834110:210482 -(1,23006:24409113,23834110:0,452978,115847 -r1,23026:26174226,23834110:1765113,568825,115847 -k1,23006:24409113,23834110:-1765113 -) -(1,23006:24409113,23834110:1765113,452978,115847 -k1,23006:24409113,23834110:3277 -h1,23006:26170949,23834110:0,411205,112570 -) -k1,23006:26558379,23834110:210483 -(1,23006:26558379,23834110:0,452978,115847 -r1,23026:30082051,23834110:3523672,568825,115847 -k1,23006:26558379,23834110:-3523672 -) -(1,23006:26558379,23834110:3523672,452978,115847 -k1,23006:26558379,23834110:3277 -h1,23006:30078774,23834110:0,411205,112570 -) -k1,23006:30466204,23834110:210483 -(1,23006:30466204,23834110:0,452978,115847 -r1,23026:32583029,23834110:2116825,568825,115847 -k1,23006:30466204,23834110:-2116825 -) -(1,23006:30466204,23834110:2116825,452978,115847 -k1,23006:30466204,23834110:3277 -h1,23006:32579752,23834110:0,411205,112570 -) -k1,23006:32583029,23834110:0 -) -(1,23007:6797234,24675598:25785795,505283,115847 -g1,23006:8187908,24675598 -(1,23006:8187908,24675598:0,452978,115847 -r1,23026:10304733,24675598:2116825,568825,115847 -k1,23006:8187908,24675598:-2116825 -) -(1,23006:8187908,24675598:2116825,452978,115847 -k1,23006:8187908,24675598:3277 -h1,23006:10301456,24675598:0,411205,112570 -) -k1,23007:32583029,24675598:22104626 -g1,23007:32583029,24675598 -) -] -g1,23007:32583029,24791445 -) -h1,23007:6630773,24791445:0,0,0 -v1,23010:6630773,26152812:0,393216,0 -(1,23011:6630773,27561186:25952256,1801590,0 -g1,23011:6630773,27561186 -g1,23011:6303093,27561186 -r1,23026:6401397,27561186:98304,1801590,0 -g1,23011:6600626,27561186 -g1,23011:6797234,27561186 -[1,23011:6797234,27561186:25785795,1801590,0 -(1,23011:6797234,26585350:25785795,825754,196608 -(1,23010:6797234,26585350:0,825754,196608 -r1,23026:7890375,26585350:1093141,1022362,196608 -k1,23010:6797234,26585350:-1093141 -) -(1,23010:6797234,26585350:1093141,825754,196608 -) -k1,23010:8024855,26585350:134480 -k1,23010:10159363,26585350:327680 -k1,23010:10771600,26585350:134480 -k1,23010:12076553,26585350:134480 -k1,23010:13303518,26585350:134480 -k1,23010:14120883,26585350:134480 -k1,23010:15730578,26585350:134480 -k1,23010:16481096,26585350:134480 -k1,23010:17634660,26585350:134479 -k1,23010:19132944,26585350:134480 -k1,23010:20780650,26585350:134480 -k1,23010:22617100,26585350:134480 -k1,23010:25835704,26585350:134480 -k1,23010:28729250,26585350:134480 -k1,23010:29546615,26585350:134480 -k1,23010:30036955,26585350:134480 -k1,23011:32583029,26585350:0 -) -(1,23011:6797234,27426838:25785795,513147,134348 -g1,23010:9613316,27426838 -g1,23010:12654841,27426838 -g1,23010:14000295,27426838 -g1,23010:16537848,27426838 -g1,23010:18123819,27426838 -g1,23010:19270699,27426838 -g1,23010:21162068,27426838 -g1,23010:22381693,27426838 -g1,23010:23894264,27426838 -g1,23010:25284938,27426838 -g1,23010:27665861,27426838 -g1,23010:29504145,27426838 -g1,23010:30970840,27426838 -k1,23011:32583029,27426838:1023676 -g1,23011:32583029,27426838 -) -] -g1,23011:32583029,27561186 -) -h1,23011:6630773,27561186:0,0,0 -(1,23014:6630773,30888634:25952256,32768,229376 -(1,23014:6630773,30888634:0,32768,229376 -(1,23014:6630773,30888634:5505024,32768,229376 -r1,23026:12135797,30888634:5505024,262144,229376 -) -k1,23014:6630773,30888634:-5505024 -) -(1,23014:6630773,30888634:25952256,32768,0 -r1,23026:32583029,30888634:25952256,32768,0 -) -) -(1,23014:6630773,32492962:25952256,615776,14155 -(1,23014:6630773,32492962:2954625,582746,14155 -g1,23014:6630773,32492962 -g1,23014:9585398,32492962 -) -g1,23014:12841227,32492962 -k1,23014:32583029,32492962:18103664 -g1,23014:32583029,32492962 -) -(1,23018:6630773,33727666:25952256,513147,134348 -k1,23017:7483875,33727666:225267 -k1,23017:9401283,33727666:225268 -k1,23017:11534303,33727666:225267 -k1,23017:14740148,33727666:225268 -k1,23017:18473557,33727666:225267 -k1,23017:19890269,33727666:225267 -k1,23017:24273141,33727666:225268 -k1,23017:26888480,33727666:225241 -k1,23017:27645244,33727666:225267 -k1,23017:28226372,33727666:225268 -k1,23017:29805613,33727666:225267 -k1,23017:32583029,33727666:0 -) -(1,23018:6630773,34569154:25952256,513147,134348 -k1,23017:9023001,34569154:211845 -k1,23017:10182497,34569154:211845 -k1,23017:11413427,34569154:211845 -k1,23017:14578325,34569154:211846 -k1,23017:15449462,34569154:211845 -k1,23017:17224341,34569154:211845 -k1,23017:17906079,34569154:211845 -k1,23017:18649421,34569154:211845 -k1,23017:20147082,34569154:211845 -k1,23017:21872153,34569154:211845 -k1,23017:22700036,34569154:211845 -k1,23017:24613852,34569154:211846 -k1,23017:27525125,34569154:211845 -k1,23017:28353008,34569154:211845 -k1,23017:30450324,34569154:211845 -k1,23017:32051532,34569154:211845 -k1,23017:32583029,34569154:0 -) -(1,23018:6630773,35410642:25952256,513147,134348 -k1,23017:10230830,35410642:200049 -k1,23017:11082306,35410642:200048 -k1,23017:11638215,35410642:200049 -k1,23017:13122769,35410642:200048 -k1,23017:13982110,35410642:200049 -k1,23017:17242689,35410642:200048 -k1,23017:18588963,35410642:200049 -k1,23017:20182963,35410642:200049 -k1,23017:21772374,35410642:200048 -k1,23017:23384724,35410642:200049 -k1,23017:25152393,35410642:200048 -k1,23017:28765557,35410642:200049 -k1,23017:32583029,35410642:0 -) -(1,23018:6630773,36252130:25952256,513147,134348 -k1,23017:8300586,36252130:156587 -k1,23017:9108601,36252130:156587 -k1,23017:11049079,36252130:156588 -k1,23017:12689401,36252130:156587 -k1,23017:16459643,36252130:156587 -k1,23017:19006286,36252130:156545 -k1,23017:20476215,36252130:156587 -k1,23017:21624362,36252130:156587 -k1,23017:23802735,36252130:156587 -k1,23017:25031491,36252130:156587 -k1,23017:26280563,36252130:156587 -k1,23017:26793011,36252130:156588 -k1,23017:29129981,36252130:156587 -k1,23017:30571074,36252130:156587 -k1,23017:32583029,36252130:0 -) -(1,23018:6630773,37093618:25952256,513147,134348 -k1,23017:7851507,37093618:201649 -k1,23017:10400656,37093618:201649 -k1,23017:11261597,37093618:201649 -k1,23017:14432683,37093618:201650 -k1,23017:17946522,37093618:201649 -k1,23017:19599793,37093618:201649 -k1,23017:22312782,37093618:201649 -k1,23017:25194854,37093618:201649 -k1,23017:26790454,37093618:201649 -k1,23017:28011189,37093618:201650 -k1,23017:29602201,37093618:201649 -k1,23017:31409482,37093618:201649 -k1,23017:32227169,37093618:201649 -k1,23017:32583029,37093618:0 -) -(1,23018:6630773,37935106:25952256,513147,134348 -k1,23017:11451470,37935106:142082 -k1,23017:12784997,37935106:142082 -k1,23017:17129903,37935106:142082 -k1,23017:19626038,37935106:142082 -k1,23017:21653590,37935106:142081 -k1,23017:22327169,37935106:142082 -k1,23017:23999517,37935106:142082 -k1,23017:25089250,37935106:142082 -k1,23017:28184384,37935106:142082 -k1,23017:28985758,37935106:142082 -k1,23017:32583029,37935106:0 -) -(1,23018:6630773,38776594:25952256,505283,134348 -g1,23017:8400900,38776594 -g1,23017:9989492,38776594 -g1,23017:11453566,38776594 -g1,23017:14777552,38776594 -g1,23017:15786151,38776594 -g1,23017:16341240,38776594 -g1,23017:18666457,38776594 -g1,23017:19548571,38776594 -g1,23017:24809146,38776594 -k1,23018:32583029,38776594:6315707 -g1,23018:32583029,38776594 -) -(1,23020:6630773,39618082:25952256,513147,126483 -h1,23019:6630773,39618082:983040,0,0 -g1,23019:10635678,39618082 -g1,23019:13924930,39618082 -g1,23019:14810321,39618082 -k1,23020:32583029,39618082:15283651 -g1,23020:32583029,39618082 -) -(1,23022:7202902,40979449:24807998,513147,134348 -(1,23020:7202902,40979449:0,0,0 -g1,23020:7202902,40979449 -g1,23020:5892182,40979449 -g1,23020:5564502,40979449 -(1,23020:5564502,40979449:1310720,0,0 -k1,23020:6875222,40979449:1310720 -) -g1,23020:7202902,40979449 -) -k1,23021:7202902,40979449:0 -k1,23021:9999136,40979449:406136 -k1,23021:10936977,40979449:406344 -k1,23021:11699181,40979449:406344 -k1,23021:13040068,40979449:406344 -k1,23021:14105705,40979449:406345 -k1,23021:17271115,40979449:406344 -k1,23021:20295622,40979449:406344 -k1,23021:22476681,40979449:406344 -k1,23021:25566724,40979449:406344 -k1,23021:27164513,40979449:406344 -k1,23021:32010900,40979449:0 -) -(1,23022:7202902,41820937:24807998,513147,126483 -k1,23021:14266591,41820937:156194 -k1,23021:15812148,41820937:156194 -k1,23021:18479026,41820937:156194 -k1,23021:19919726,41820937:156194 -k1,23021:22602333,41820937:156194 -k1,23021:23777612,41820937:156194 -k1,23021:26700081,41820937:156194 -k1,23021:29060906,41820937:156194 -k1,23021:30408545,41820937:156194 -k1,23022:32010900,41820937:0 -) -(1,23022:7202902,42662425:24807998,513147,134348 -g1,23021:8392380,42662425 -g1,23021:9250901,42662425 -g1,23021:13983911,42662425 -g1,23021:17032645,42662425 -k1,23022:32010900,42662425:13415221 -g1,23022:32010900,42662425 -) -(1,23025:6630773,44023793:25952256,513147,134348 -h1,23024:6630773,44023793:983040,0,0 -k1,23024:8743006,44023793:311304 -k1,23024:12502159,44023793:311304 -k1,23024:15203448,44023793:311191 -k1,23024:16828094,44023793:311304 -k1,23024:18130958,44023793:311304 -k1,23024:20186830,44023793:311304 -k1,23024:20956231,44023793:311304 -k1,23024:21799032,44023793:311304 -k1,23024:23694341,44023793:311304 -k1,23024:25290150,44023793:311303 -k1,23024:26059551,44023793:311304 -k1,23024:26902352,44023793:311304 -k1,23024:29843616,44023793:311304 -k1,23024:30806348,44023793:311304 -k1,23025:32583029,44023793:0 -) -(1,23025:6630773,44865281:25952256,513147,134348 -k1,23024:8527440,44865281:167827 -k1,23024:10107568,44865281:167827 -k1,23024:11294479,44865281:167826 -k1,23024:12851669,44865281:167827 -k1,23024:14587117,44865281:167827 -k1,23024:17947858,44865281:167827 -k1,23024:20957326,44865281:167827 -k1,23024:22519104,44865281:167827 -k1,23024:25712727,44865281:167826 -k1,23024:26496592,44865281:167827 -k1,23024:29574873,44865281:167827 -k1,23024:31900144,44865281:167827 -k1,23024:32583029,44865281:0 -) -(1,23025:6630773,45706769:25952256,513147,134348 -k1,23024:10154088,45706769:197364 -k1,23024:11275510,45706769:197364 -k1,23024:12491959,45706769:197364 -k1,23024:14391293,45706769:197364 -k1,23024:16368615,45706769:197364 -k1,23024:17769220,45706769:197364 -k1,23024:20292458,45706769:197365 -k1,23024:21774328,45706769:197364 -k1,23024:24665222,45706769:197364 -k1,23024:25514014,45706769:197364 -k1,23024:27413348,45706769:197364 -k1,23024:29000075,45706769:197364 -k1,23024:30180479,45706769:197364 -k1,23024:32583029,45706769:0 +k1,21670:62087500,1915420:25935872 +g1,21670:62087500,1915420 ) ] -(1,23026:32583029,45706769:0,0,0 -g1,23026:32583029,45706769 +) +g1,21670:36675916,2439708 +(1,21670:36675916,2439708:1179648,16384,0 +r1,23334:37855564,2439708:1179648,16384,0 ) ) +k1,23334:3078556,2439708:-34777008 +) ] -(1,23026:6630773,47279633:25952256,0,0 -h1,23026:6630773,47279633:25952256,0,0 +[1,23334:3078558,4812305:0,0,0 +(1,23334:3078558,49800853:0,16384,2228224 +k1,23334:1358238,49800853:-1720320 +(1,21670:1358238,49800853:1720320,16384,2228224 +(1,21670:1358238,49800853:1179648,16384,0 +r1,23334:2537886,49800853:1179648,16384,0 +) +g1,21670:3062174,49800853 +(1,21670:3062174,52029077:16384,1703936,0 +[1,21670:3062174,52029077:25952256,1703936,0 +(1,21670:3062174,51504789:25952256,1179648,0 +(1,21670:3062174,51504789:16384,1179648,0 +r1,23334:3078558,51504789:16384,1179648,0 +) +k1,21670:29014430,51504789:25935872 +g1,21670:29014430,51504789 ) ] -(1,23026:4262630,4025873:0,0,0 -[1,23026:-473656,4025873:0,0,0 -(1,23026:-473656,-710413:0,0,0 -(1,23026:-473656,-710413:0,0,0 -g1,23026:-473656,-710413 ) -g1,23026:-473656,-710413 +) ) ] +[1,23334:3078558,4812305:0,0,0 +(1,23334:3078558,49800853:0,16384,2228224 +g1,23334:29030814,49800853 +g1,23334:36135244,49800853 +(1,21670:36135244,49800853:1720320,16384,2228224 +(1,21670:36135244,52029077:16384,1703936,0 +[1,21670:36135244,52029077:25952256,1703936,0 +(1,21670:36135244,51504789:25952256,1179648,0 +(1,21670:36135244,51504789:16384,1179648,0 +r1,23334:36151628,51504789:16384,1179648,0 +) +k1,21670:62087500,51504789:25935872 +g1,21670:62087500,51504789 ) ] -!24458 -}418 -Input:3705:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3706:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3707:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3708:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3709:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3710:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!576 -{419 -[1,23096:4262630,47279633:28320399,43253760,0 -(1,23096:4262630,4025873:0,0,0 -[1,23096:-473656,4025873:0,0,0 -(1,23096:-473656,-710413:0,0,0 -(1,23096:-473656,-644877:0,0,0 -k1,23096:-473656,-644877:-65536 ) -(1,23096:-473656,4736287:0,0,0 -k1,23096:-473656,4736287:5209943 +g1,21670:36675916,49800853 +(1,21670:36675916,49800853:1179648,16384,0 +r1,23334:37855564,49800853:1179648,16384,0 +) +) +k1,23334:3078556,49800853:-34777008 +) +] +g1,23334:6630773,4812305 +g1,23334:6630773,4812305 +g1,23334:9235173,4812305 +g1,23334:10666479,4812305 +k1,23334:31387651,4812305:20721172 +) +) +] +[1,23334:6630773,45706769:25952256,40108032,0 +(1,23334:6630773,45706769:25952256,40108032,0 +(1,23334:6630773,45706769:0,0,0 +g1,23334:6630773,45706769 +) +[1,23334:6630773,45706769:25952256,40108032,0 +v1,23250:6630773,6254097:0,393216,0 +(1,23274:6630773,19033424:25952256,13172543,196608 +g1,23274:6630773,19033424 +g1,23274:6630773,19033424 +g1,23274:6434165,19033424 +(1,23274:6434165,19033424:0,13172543,196608 +r1,23334:32779637,19033424:26345472,13369151,196608 +k1,23274:6434165,19033424:-26345472 +) +(1,23274:6434165,19033424:26345472,13172543,196608 +[1,23274:6630773,19033424:25952256,12975935,0 +(1,23252:6630773,6488534:25952256,431045,106246 +(1,23251:6630773,6488534:0,0,0 +g1,23251:6630773,6488534 +g1,23251:6630773,6488534 +g1,23251:6303093,6488534 +(1,23251:6303093,6488534:0,0,0 +) +g1,23251:6630773,6488534 +) +g1,23252:11278128,6488534 +g1,23252:12273990,6488534 +k1,23252:12273990,6488534:0 +h1,23252:25220193,6488534:0,0,0 +k1,23252:32583029,6488534:7362836 +g1,23252:32583029,6488534 +) +(1,23253:6630773,7173389:25952256,424439,86428 +h1,23253:6630773,7173389:0,0,0 +g1,23253:12937898,7173389 +g1,23253:16257437,7173389 +g1,23253:16921345,7173389 +h1,23253:17585253,7173389:0,0,0 +k1,23253:32583029,7173389:14997776 +g1,23253:32583029,7173389 +) +(1,23273:6630773,7989316:25952256,431045,9908 +(1,23255:6630773,7989316:0,0,0 +g1,23255:6630773,7989316 +g1,23255:6630773,7989316 +g1,23255:6303093,7989316 +(1,23255:6303093,7989316:0,0,0 +) +g1,23255:6630773,7989316 +) +g1,23273:7626635,7989316 +g1,23273:9286405,7989316 +g1,23273:10282267,7989316 +h1,23273:10946175,7989316:0,0,0 +k1,23273:32583029,7989316:21636854 +g1,23273:32583029,7989316 +) +(1,23273:6630773,8674171:25952256,431045,106246 +h1,23273:6630773,8674171:0,0,0 +g1,23273:7626635,8674171 +g1,23273:7958589,8674171 +g1,23273:8622497,8674171 +g1,23273:11610082,8674171 +g1,23273:11942036,8674171 +g1,23273:12273990,8674171 +g1,23273:12937898,8674171 +g1,23273:14265714,8674171 +h1,23273:24224331,8674171:0,0,0 +k1,23273:32583029,8674171:8358698 +g1,23273:32583029,8674171 +) +(1,23273:6630773,9359026:25952256,431045,112852 +h1,23273:6630773,9359026:0,0,0 +g1,23273:7626635,9359026 +g1,23273:7958589,9359026 +g1,23273:8622497,9359026 +g1,23273:11610082,9359026 +g1,23273:11942036,9359026 +g1,23273:12273990,9359026 +g1,23273:12937898,9359026 +g1,23273:14597668,9359026 +h1,23273:16257438,9359026:0,0,0 +k1,23273:32583029,9359026:16325591 +g1,23273:32583029,9359026 +) +(1,23273:6630773,10043881:25952256,431045,33029 +h1,23273:6630773,10043881:0,0,0 +g1,23273:7626635,10043881 +g1,23273:7958589,10043881 +g1,23273:8622497,10043881 +g1,23273:9618359,10043881 +g1,23273:9950313,10043881 +g1,23273:10282267,10043881 +g1,23273:10614221,10043881 +g1,23273:10946175,10043881 +g1,23273:11278129,10043881 +g1,23273:11610083,10043881 +g1,23273:11942037,10043881 +g1,23273:12273991,10043881 +g1,23273:12937899,10043881 +g1,23273:14265715,10043881 +h1,23273:15925485,10043881:0,0,0 +k1,23273:32583029,10043881:16657544 +g1,23273:32583029,10043881 +) +(1,23273:6630773,10728736:25952256,431045,112852 +h1,23273:6630773,10728736:0,0,0 +g1,23273:7626635,10728736 +g1,23273:7958589,10728736 +g1,23273:8622497,10728736 +g1,23273:10614221,10728736 +g1,23273:10946175,10728736 +g1,23273:11278129,10728736 +g1,23273:11610083,10728736 +g1,23273:11942037,10728736 +g1,23273:12273991,10728736 +g1,23273:12937899,10728736 +g1,23273:14597669,10728736 +h1,23273:16257439,10728736:0,0,0 +k1,23273:32583029,10728736:16325590 +g1,23273:32583029,10728736 +) +(1,23273:6630773,11413591:25952256,431045,112852 +h1,23273:6630773,11413591:0,0,0 +g1,23273:7626635,11413591 +g1,23273:7958589,11413591 +g1,23273:8622497,11413591 +g1,23273:11610082,11413591 +g1,23273:11942036,11413591 +g1,23273:12273990,11413591 +g1,23273:12937898,11413591 +g1,23273:14597668,11413591 +h1,23273:16257438,11413591:0,0,0 +k1,23273:32583029,11413591:16325591 +g1,23273:32583029,11413591 +) +(1,23273:6630773,12098446:25952256,431045,52847 +h1,23273:6630773,12098446:0,0,0 +g1,23273:7626635,12098446 +g1,23273:7958589,12098446 +g1,23273:8622497,12098446 +g1,23273:10946175,12098446 +g1,23273:11278129,12098446 +g1,23273:11610083,12098446 +g1,23273:11942037,12098446 +g1,23273:12273991,12098446 +g1,23273:12937899,12098446 +g1,23273:14265715,12098446 +h1,23273:23228471,12098446:0,0,0 +k1,23273:32583029,12098446:9354558 +g1,23273:32583029,12098446 +) +(1,23273:6630773,12783301:25952256,431045,112852 +h1,23273:6630773,12783301:0,0,0 +g1,23273:7626635,12783301 +g1,23273:7958589,12783301 +g1,23273:8622497,12783301 +g1,23273:10946175,12783301 +g1,23273:11278129,12783301 +g1,23273:11610083,12783301 +g1,23273:11942037,12783301 +g1,23273:12273991,12783301 +g1,23273:12937899,12783301 +g1,23273:14597669,12783301 +h1,23273:16257439,12783301:0,0,0 +k1,23273:32583029,12783301:16325590 +g1,23273:32583029,12783301 +) +(1,23273:6630773,13468156:25952256,431045,112852 +h1,23273:6630773,13468156:0,0,0 +g1,23273:7626635,13468156 +g1,23273:7958589,13468156 +g1,23273:8622497,13468156 +g1,23273:10946175,13468156 +g1,23273:11278129,13468156 +g1,23273:11610083,13468156 +g1,23273:11942037,13468156 +g1,23273:12273991,13468156 +g1,23273:14265715,13468156 +g1,23273:15261577,13468156 +h1,23273:15593531,13468156:0,0,0 +k1,23273:32583029,13468156:16989498 +g1,23273:32583029,13468156 +) +(1,23273:6630773,14153011:25952256,431045,112852 +h1,23273:6630773,14153011:0,0,0 +g1,23273:7626635,14153011 +g1,23273:7958589,14153011 +g1,23273:8622497,14153011 +g1,23273:14265714,14153011 +g1,23273:15261576,14153011 +h1,23273:15593530,14153011:0,0,0 +k1,23273:32583030,14153011:16989500 +g1,23273:32583030,14153011 +) +(1,23273:6630773,14837866:25952256,431045,33029 +h1,23273:6630773,14837866:0,0,0 +g1,23273:7626635,14837866 +g1,23273:7958589,14837866 +g1,23273:8622497,14837866 +g1,23273:10614221,14837866 +g1,23273:10946175,14837866 +g1,23273:11278129,14837866 +g1,23273:11610083,14837866 +g1,23273:11942037,14837866 +g1,23273:12273991,14837866 +g1,23273:12937899,14837866 +g1,23273:14265715,14837866 +h1,23273:14597669,14837866:0,0,0 +k1,23273:32583029,14837866:17985360 +g1,23273:32583029,14837866 +) +(1,23273:6630773,15522721:25952256,431045,33029 +h1,23273:6630773,15522721:0,0,0 +g1,23273:7626635,15522721 +g1,23273:7958589,15522721 +g1,23273:8622497,15522721 +g1,23273:10614221,15522721 +g1,23273:10946175,15522721 +g1,23273:11278129,15522721 +g1,23273:11610083,15522721 +g1,23273:11942037,15522721 +g1,23273:12273991,15522721 +g1,23273:12937899,15522721 +g1,23273:14265715,15522721 +h1,23273:14597669,15522721:0,0,0 +k1,23273:32583029,15522721:17985360 +g1,23273:32583029,15522721 +) +(1,23273:6630773,16207576:25952256,431045,33029 +h1,23273:6630773,16207576:0,0,0 +g1,23273:7626635,16207576 +g1,23273:7958589,16207576 +g1,23273:8622497,16207576 +g1,23273:9950313,16207576 +g1,23273:10282267,16207576 +g1,23273:10614221,16207576 +g1,23273:10946175,16207576 +g1,23273:11278129,16207576 +g1,23273:11610083,16207576 +g1,23273:11942037,16207576 +g1,23273:12273991,16207576 +g1,23273:14265715,16207576 +g1,23273:15261577,16207576 +h1,23273:15593531,16207576:0,0,0 +k1,23273:32583029,16207576:16989498 +g1,23273:32583029,16207576 +) +(1,23273:6630773,16892431:25952256,431045,33029 +h1,23273:6630773,16892431:0,0,0 +g1,23273:7626635,16892431 +g1,23273:7958589,16892431 +g1,23273:8622497,16892431 +g1,23273:12273990,16892431 +g1,23273:12937898,16892431 +g1,23273:14265714,16892431 +k1,23273:14265714,16892431:0 +h1,23273:14929622,16892431:0,0,0 +k1,23273:32583030,16892431:17653408 +g1,23273:32583030,16892431 +) +(1,23273:6630773,17577286:25952256,431045,33029 +h1,23273:6630773,17577286:0,0,0 +g1,23273:7626635,17577286 +g1,23273:7958589,17577286 +g1,23273:8622497,17577286 +g1,23273:10614221,17577286 +g1,23273:10946175,17577286 +g1,23273:11278129,17577286 +g1,23273:11610083,17577286 +g1,23273:11942037,17577286 +g1,23273:12273991,17577286 +g1,23273:12937899,17577286 +g1,23273:14265715,17577286 +h1,23273:14597669,17577286:0,0,0 +k1,23273:32583029,17577286:17985360 +g1,23273:32583029,17577286 +) +(1,23273:6630773,18262141:25952256,431045,33029 +h1,23273:6630773,18262141:0,0,0 +g1,23273:7626635,18262141 +g1,23273:7958589,18262141 +g1,23273:8622497,18262141 +g1,23273:9950313,18262141 +g1,23273:10282267,18262141 +g1,23273:10614221,18262141 +g1,23273:10946175,18262141 +g1,23273:11278129,18262141 +g1,23273:11610083,18262141 +g1,23273:11942037,18262141 +g1,23273:12273991,18262141 +g1,23273:14265715,18262141 +g1,23273:15261577,18262141 +h1,23273:15593531,18262141:0,0,0 +k1,23273:32583029,18262141:16989498 +g1,23273:32583029,18262141 +) +(1,23273:6630773,18946996:25952256,431045,86428 +h1,23273:6630773,18946996:0,0,0 +g1,23273:7626635,18946996 +g1,23273:7958589,18946996 +g1,23273:8622497,18946996 +g1,23273:11278129,18946996 +g1,23273:14597668,18946996 +g1,23273:15925484,18946996 +h1,23273:18249162,18946996:0,0,0 +k1,23273:32583029,18946996:14333867 +g1,23273:32583029,18946996 +) +] +) +g1,23274:32583029,19033424 +g1,23274:6630773,19033424 +g1,23274:6630773,19033424 +g1,23274:32583029,19033424 +g1,23274:32583029,19033424 +) +h1,23274:6630773,19230032:0,0,0 +v1,23278:6630773,20095112:0,393216,0 +(1,23279:6630773,23132998:25952256,3431102,0 +g1,23279:6630773,23132998 +g1,23279:6237557,23132998 +r1,23334:6368629,23132998:131072,3431102,0 +g1,23279:6567858,23132998 +g1,23279:6764466,23132998 +[1,23279:6764466,23132998:25818563,3431102,0 +(1,23279:6764466,20403410:25818563,701514,196608 +(1,23278:6764466,20403410:0,701514,196608 +r1,23334:8863446,20403410:2098980,898122,196608 +k1,23278:6764466,20403410:-2098980 +) +(1,23278:6764466,20403410:2098980,701514,196608 +) +k1,23278:9148901,20403410:285455 +k1,23278:11283409,20403410:327680 +k1,23278:14199479,20403410:285455 +(1,23278:14199479,20403410:0,452978,115847 +r1,23334:17371439,20403410:3171960,568825,115847 +k1,23278:14199479,20403410:-3171960 +) +(1,23278:14199479,20403410:3171960,452978,115847 +k1,23278:14199479,20403410:3277 +h1,23278:17368162,20403410:0,411205,112570 +) +k1,23278:17656894,20403410:285455 +k1,23278:18558386,20403410:285454 +k1,23278:19862926,20403410:285455 +k1,23278:21248075,20403410:285455 +k1,23278:22184958,20403410:285455 +(1,23278:22184958,20403410:0,452978,115847 +r1,23334:23950071,20403410:1765113,568825,115847 +k1,23278:22184958,20403410:-1765113 +) +(1,23278:22184958,20403410:1765113,452978,115847 +k1,23278:22184958,20403410:3277 +h1,23278:23946794,20403410:0,411205,112570 +) +k1,23278:24235526,20403410:285455 +k1,23278:26376305,20403410:285455 +k1,23278:27853204,20403410:285454 +k1,23278:29922549,20403410:285455 +k1,23278:31227089,20403410:285455 +k1,23279:32583029,20403410:0 +) +(1,23279:6764466,21268490:25818563,513147,134348 +k1,23278:9361538,21268490:233844 +k1,23278:11554909,21268490:233845 +k1,23278:13736483,21268490:233844 +k1,23278:17777313,21268490:233844 +k1,23278:18820528,21268490:233845 +k1,23278:20073457,21268490:233844 +k1,23278:23982561,21268490:233845 +k1,23278:25407850,21268490:233844 +k1,23278:26589345,21268490:233844 +k1,23278:28274812,21268490:233845 +k1,23278:29898019,21268490:233844 +k1,23278:32583029,21268490:0 +) +(1,23279:6764466,22133570:25818563,513147,126483 +k1,23278:8242756,22133570:224586 +k1,23278:9571624,22133570:224586 +k1,23278:11082027,22133570:224587 +(1,23278:11082027,22133570:0,452978,115847 +r1,23334:18122818,22133570:7040791,568825,115847 +k1,23278:11082027,22133570:-7040791 +) +(1,23278:11082027,22133570:7040791,452978,115847 +k1,23278:11082027,22133570:3277 +h1,23278:18119541,22133570:0,411205,112570 +) +k1,23278:18347404,22133570:224586 +k1,23278:19519641,22133570:224586 +k1,23278:20100087,22133570:224586 +k1,23278:21974870,22133570:224586 +k1,23278:25124983,22133570:224586 +k1,23278:27997880,22133570:224587 +k1,23278:29712755,22133570:224586 +k1,23278:31107814,22133570:224586 +k1,23278:32583029,22133570:0 +) +(1,23279:6764466,22998650:25818563,513147,134348 +g1,23278:10646818,22998650 +g1,23278:11865132,22998650 +g1,23278:14995786,22998650 +g1,23278:15854307,22998650 +g1,23278:17072621,22998650 +k1,23279:32583029,22998650:13377211 +g1,23279:32583029,22998650 +) +] +g1,23279:32583029,23132998 +) +h1,23279:6630773,23132998:0,0,0 +(1,23282:6630773,23998078:25952256,513147,126483 +h1,23281:6630773,23998078:983040,0,0 +k1,23281:8981822,23998078:171322 +k1,23281:12828403,23998078:171322 +k1,23281:13659017,23998078:171322 +k1,23281:14849424,23998078:171322 +k1,23281:16670287,23998078:171322 +k1,23281:18230971,23998078:171321 +k1,23281:19393853,23998078:171322 +k1,23281:22655198,23998078:171322 +k1,23281:24220471,23998078:171322 +k1,23281:27534900,23998078:171322 +k1,23281:28322260,23998078:171322 +k1,23281:29591310,23998078:171322 +k1,23281:32583029,23998078:0 +) +(1,23282:6630773,24863158:25952256,513147,134348 +k1,23281:9689900,24863158:251565 +k1,23281:12368262,24863158:251564 +k1,23281:13271255,24863158:251565 +k1,23281:13878679,24863158:251564 +k1,23281:15414750,24863158:251565 +k1,23281:16325606,24863158:251564 +k1,23281:19366383,24863158:251565 +k1,23281:20809393,24863158:251565 +k1,23281:24420988,24863158:251564 +k1,23281:25863998,24863158:251565 +k1,23281:27383028,24863158:251564 +k1,23281:27990453,24863158:251565 +k1,23281:29667425,24863158:251564 +k1,23281:31896867,24863158:251565 +k1,23281:32583029,24863158:0 +) +(1,23282:6630773,25728238:25952256,505283,134348 +k1,23281:7251096,25728238:264463 +k1,23281:9097598,25728238:264463 +k1,23281:12880689,25728238:264463 +k1,23281:14341838,25728238:264462 +k1,23281:16317446,25728238:264463 +k1,23281:17573469,25728238:264463 +k1,23281:20616659,25728238:264463 +k1,23281:21567284,25728238:264463 +k1,23281:24806426,25728238:264463 +k1,23281:27440670,25728238:264462 +k1,23281:28658682,25728238:264463 +k1,23281:29901598,25728238:264463 +k1,23281:31563944,25728238:264463 +k1,23281:32583029,25728238:0 +) +(1,23282:6630773,26593318:25952256,513147,122846 +g1,23281:9671643,26593318 +g1,23281:11027582,26593318 +g1,23281:11839573,26593318 +g1,23281:12394662,26593318 +g1,23281:14019299,26593318 +g1,23281:15612479,26593318 +g1,23281:18507204,26593318 +(1,23281:18507204,26593318:0,452978,122846 +r1,23334:22382588,26593318:3875384,575824,122846 +k1,23281:18507204,26593318:-3875384 +) +(1,23281:18507204,26593318:3875384,452978,122846 +k1,23281:18507204,26593318:3277 +h1,23281:22379311,26593318:0,411205,112570 +) +k1,23282:32583029,26593318:10026771 +g1,23282:32583029,26593318 +) +v1,23284:6630773,27278173:0,393216,0 +(1,23306:6630773,33720026:25952256,6835069,196608 +g1,23306:6630773,33720026 +g1,23306:6630773,33720026 +g1,23306:6434165,33720026 +(1,23306:6434165,33720026:0,6835069,196608 +r1,23334:32779637,33720026:26345472,7031677,196608 +k1,23306:6434165,33720026:-26345472 +) +(1,23306:6434165,33720026:26345472,6835069,196608 +[1,23306:6630773,33720026:25952256,6638461,0 +(1,23286:6630773,27506004:25952256,424439,112852 +(1,23285:6630773,27506004:0,0,0 +g1,23285:6630773,27506004 +g1,23285:6630773,27506004 +g1,23285:6303093,27506004 +(1,23285:6303093,27506004:0,0,0 +) +g1,23285:6630773,27506004 +) +g1,23286:9618358,27506004 +g1,23286:10614220,27506004 +g1,23286:18913068,27506004 +h1,23286:21236746,27506004:0,0,0 +k1,23286:32583029,27506004:11346283 +g1,23286:32583029,27506004 +) +(1,23287:6630773,28190859:25952256,424439,79822 +h1,23287:6630773,28190859:0,0,0 +k1,23287:6630773,28190859:0 +h1,23287:11278128,28190859:0,0,0 +k1,23287:32583028,28190859:21304900 +g1,23287:32583028,28190859 +) +(1,23291:6630773,29006786:25952256,424439,79822 +(1,23289:6630773,29006786:0,0,0 +g1,23289:6630773,29006786 +g1,23289:6630773,29006786 +g1,23289:6303093,29006786 +(1,23289:6303093,29006786:0,0,0 +) +g1,23289:6630773,29006786 +) +g1,23291:7626635,29006786 +g1,23291:8954451,29006786 +g1,23291:11610083,29006786 +g1,23291:14265715,29006786 +g1,23291:16921347,29006786 +g1,23291:19576979,29006786 +g1,23291:22232611,29006786 +k1,23291:22232611,29006786:0 +h1,23291:24556289,29006786:0,0,0 +k1,23291:32583029,29006786:8026740 +g1,23291:32583029,29006786 +) +(1,23293:6630773,29822713:25952256,424439,112852 +(1,23292:6630773,29822713:0,0,0 +g1,23292:6630773,29822713 +g1,23292:6630773,29822713 +g1,23292:6303093,29822713 +(1,23292:6303093,29822713:0,0,0 +) +g1,23292:6630773,29822713 +) +g1,23293:9950312,29822713 +g1,23293:10946174,29822713 +g1,23293:11278128,29822713 +g1,23293:19576976,29822713 +h1,23293:21568700,29822713:0,0,0 +k1,23293:32583029,29822713:11014329 +g1,23293:32583029,29822713 +) +(1,23294:6630773,30507568:25952256,424439,112852 +h1,23294:6630773,30507568:0,0,0 +k1,23294:6630773,30507568:0 +h1,23294:11610082,30507568:0,0,0 +k1,23294:32583030,30507568:20972948 +g1,23294:32583030,30507568 +) +(1,23298:6630773,31323495:25952256,424439,79822 +(1,23296:6630773,31323495:0,0,0 +g1,23296:6630773,31323495 +g1,23296:6630773,31323495 +g1,23296:6303093,31323495 +(1,23296:6303093,31323495:0,0,0 +) +g1,23296:6630773,31323495 +) +g1,23298:7626635,31323495 +g1,23298:8954451,31323495 +g1,23298:10946175,31323495 +g1,23298:12937899,31323495 +g1,23298:14929623,31323495 +g1,23298:16921347,31323495 +g1,23298:18913071,31323495 +h1,23298:20572841,31323495:0,0,0 +k1,23298:32583029,31323495:12010188 +g1,23298:32583029,31323495 +) +(1,23300:6630773,32139422:25952256,424439,112852 +(1,23299:6630773,32139422:0,0,0 +g1,23299:6630773,32139422 +g1,23299:6630773,32139422 +g1,23299:6303093,32139422 +(1,23299:6303093,32139422:0,0,0 +) +g1,23299:6630773,32139422 +) +g1,23300:9618358,32139422 +g1,23300:10614220,32139422 +g1,23300:18913068,32139422 +h1,23300:20904792,32139422:0,0,0 +k1,23300:32583029,32139422:11678237 +g1,23300:32583029,32139422 +) +(1,23301:6630773,32824277:25952256,424439,79822 +h1,23301:6630773,32824277:0,0,0 +k1,23301:6630773,32824277:0 +h1,23301:11278128,32824277:0,0,0 +k1,23301:32583028,32824277:21304900 +g1,23301:32583028,32824277 +) +(1,23305:6630773,33640204:25952256,424439,79822 +(1,23303:6630773,33640204:0,0,0 +g1,23303:6630773,33640204 +g1,23303:6630773,33640204 +g1,23303:6303093,33640204 +(1,23303:6303093,33640204:0,0,0 +) +g1,23303:6630773,33640204 +) +g1,23305:7626635,33640204 +g1,23305:8954451,33640204 +g1,23305:11610083,33640204 +g1,23305:14265715,33640204 +g1,23305:16921347,33640204 +g1,23305:19576979,33640204 +g1,23305:22232611,33640204 +h1,23305:24556289,33640204:0,0,0 +k1,23305:32583029,33640204:8026740 +g1,23305:32583029,33640204 +) +] +) +g1,23306:32583029,33720026 +g1,23306:6630773,33720026 +g1,23306:6630773,33720026 +g1,23306:32583029,33720026 +g1,23306:32583029,33720026 +) +h1,23306:6630773,33916634:0,0,0 +(1,23310:6630773,34781714:25952256,505283,126483 +h1,23309:6630773,34781714:983040,0,0 +k1,23309:9084456,34781714:273956 +(1,23309:9084456,34781714:0,452978,115847 +r1,23334:10497857,34781714:1413401,568825,115847 +k1,23309:9084456,34781714:-1413401 +) +(1,23309:9084456,34781714:1413401,452978,115847 +k1,23309:9084456,34781714:3277 +h1,23309:10494580,34781714:0,411205,112570 +) +k1,23309:10771812,34781714:273955 +k1,23309:13023645,34781714:273956 +k1,23309:13829097,34781714:273955 +k1,23309:16054715,34781714:273956 +k1,23309:17738349,34781714:273955 +k1,23309:18698467,34781714:273956 +k1,23309:19430519,34781714:273955 +k1,23309:22406524,34781714:273956 +k1,23309:24056080,34781714:273955 +k1,23309:26997351,34781714:273956 +k1,23309:28660669,34781714:273955 +k1,23309:29620787,34781714:273956 +k1,23309:31591469,34781714:273955 +k1,23309:32583029,34781714:0 +) +(1,23310:6630773,35646794:25952256,513147,134348 +k1,23309:9945912,35646794:200868 +k1,23309:13076894,35646794:200867 +k1,23309:14349931,35646794:200868 +k1,23309:17748301,35646794:200868 +k1,23309:18635331,35646794:200868 +k1,23309:20304204,35646794:200867 +k1,23309:22072693,35646794:200868 +k1,23309:25887216,35646794:200868 +k1,23309:30711648,35646794:200867 +k1,23309:31563944,35646794:200868 +k1,23309:32583029,35646794:0 +) +(1,23310:6630773,36511874:25952256,513147,134348 +g1,23309:8136135,36511874 +g1,23309:9473069,36511874 +g1,23309:10331590,36511874 +g1,23309:11982441,36511874 +g1,23309:14282754,36511874 +g1,23309:15141275,36511874 +g1,23309:16693167,36511874 +g1,23309:17464525,36511874 +g1,23309:18617303,36511874 +g1,23309:19909017,36511874 +g1,23309:22688398,36511874 +g1,23309:26085783,36511874 +g1,23309:27232663,36511874 +g1,23309:28450977,36511874 +k1,23310:32583029,36511874:481697 +g1,23310:32583029,36511874 +) +(1,23312:6630773,37376954:25952256,513147,134348 +h1,23311:6630773,37376954:983040,0,0 +k1,23311:8768153,37376954:200791 +k1,23311:11992776,37376954:200792 +k1,23311:12549427,37376954:200791 +(1,23311:12549427,37376954:0,452978,115847 +r1,23334:14666252,37376954:2116825,568825,115847 +k1,23311:12549427,37376954:-2116825 +) +(1,23311:12549427,37376954:2116825,452978,115847 +k1,23311:12549427,37376954:3277 +h1,23311:14662975,37376954:0,411205,112570 +) +k1,23311:14867043,37376954:200791 +k1,23311:17027361,37376954:200792 +k1,23311:18622103,37376954:200791 +k1,23311:20003852,37376954:200790 +k1,23311:22215288,37376954:200791 +k1,23311:23363731,37376954:200792 +k1,23311:24721232,37376954:200791 +k1,23311:26206529,37376954:200791 +k1,23311:28269199,37376954:200792 +k1,23311:30465561,37376954:200791 +k1,23312:32583029,37376954:0 +) +(1,23312:6630773,38242034:25952256,513147,134348 +g1,23311:8164315,38242034 +g1,23311:9022836,38242034 +g1,23311:10241150,38242034 +g1,23311:13288573,38242034 +g1,23311:14147094,38242034 +g1,23311:16031254,38242034 +k1,23312:32583029,38242034:14069927 +g1,23312:32583029,38242034 +) +v1,23314:6630773,38926889:0,393216,0 +(1,23334:6630773,45510161:25952256,6976488,196608 +g1,23334:6630773,45510161 +g1,23334:6630773,45510161 +g1,23334:6434165,45510161 +(1,23334:6434165,45510161:0,6976488,196608 +r1,23334:32779637,45510161:26345472,7173096,196608 +k1,23334:6434165,45510161:-26345472 +) +(1,23334:6434165,45510161:26345472,6976488,196608 +[1,23334:6630773,45510161:25952256,6779880,0 +(1,23316:6630773,39154720:25952256,424439,106246 +(1,23315:6630773,39154720:0,0,0 +g1,23315:6630773,39154720 +g1,23315:6630773,39154720 +g1,23315:6303093,39154720 +(1,23315:6303093,39154720:0,0,0 +) +g1,23315:6630773,39154720 +) +g1,23316:8954451,39154720 +k1,23316:8954451,39154720:0 +h1,23316:9618359,39154720:0,0,0 +k1,23316:32583029,39154720:22964670 +g1,23316:32583029,39154720 +) +(1,23317:6630773,39839575:25952256,424439,112852 +h1,23317:6630773,39839575:0,0,0 +g1,23317:6962727,39839575 +g1,23317:7294681,39839575 +g1,23317:7626635,39839575 +g1,23317:7958589,39839575 +g1,23317:11942037,39839575 +g1,23317:12605945,39839575 +g1,23317:20904793,39839575 +k1,23317:20904793,39839575:0 +h1,23317:23560425,39839575:0,0,0 +k1,23317:32583029,39839575:9022604 +g1,23317:32583029,39839575 +) +(1,23318:6630773,40524430:25952256,424439,106246 +h1,23318:6630773,40524430:0,0,0 +g1,23318:6962727,40524430 +g1,23318:7294681,40524430 +g1,23318:7626635,40524430 +g1,23318:7958589,40524430 +g1,23318:8290543,40524430 +g1,23318:8622497,40524430 +g1,23318:8954451,40524430 +g1,23318:9286405,40524430 +g1,23318:9618359,40524430 +g1,23318:9950313,40524430 +g1,23318:10282267,40524430 +g1,23318:12273991,40524430 +g1,23318:12937899,40524430 +g1,23318:20904795,40524430 +g1,23318:21568703,40524430 +k1,23318:21568703,40524430:0 +h1,23318:25552151,40524430:0,0,0 +k1,23318:32583029,40524430:7030878 +g1,23318:32583029,40524430 +) +(1,23319:6630773,41209285:25952256,424439,112852 +h1,23319:6630773,41209285:0,0,0 +g1,23319:6962727,41209285 +g1,23319:7294681,41209285 +g1,23319:7626635,41209285 +g1,23319:7958589,41209285 +g1,23319:8290543,41209285 +g1,23319:8622497,41209285 +g1,23319:8954451,41209285 +g1,23319:9286405,41209285 +g1,23319:9618359,41209285 +g1,23319:9950313,41209285 +g1,23319:10282267,41209285 +g1,23319:11610083,41209285 +g1,23319:12273991,41209285 +k1,23319:12273991,41209285:0 +h1,23319:16589392,41209285:0,0,0 +k1,23319:32583029,41209285:15993637 +g1,23319:32583029,41209285 +) +(1,23320:6630773,41894140:25952256,424439,86428 +h1,23320:6630773,41894140:0,0,0 +g1,23320:6962727,41894140 +g1,23320:7294681,41894140 +g1,23320:7626635,41894140 +g1,23320:7958589,41894140 +g1,23320:8290543,41894140 +g1,23320:8622497,41894140 +g1,23320:8954451,41894140 +g1,23320:9286405,41894140 +g1,23320:9618359,41894140 +g1,23320:9950313,41894140 +g1,23320:10282267,41894140 +g1,23320:11610083,41894140 +g1,23320:12273991,41894140 +k1,23320:12273991,41894140:0 +h1,23320:16257438,41894140:0,0,0 +k1,23320:32583029,41894140:16325591 +g1,23320:32583029,41894140 +) +(1,23321:6630773,42578995:25952256,424439,112852 +h1,23321:6630773,42578995:0,0,0 +g1,23321:6962727,42578995 +g1,23321:7294681,42578995 +g1,23321:7626635,42578995 +g1,23321:7958589,42578995 +g1,23321:8290543,42578995 +g1,23321:8622497,42578995 +g1,23321:8954451,42578995 +g1,23321:9286405,42578995 +g1,23321:9618359,42578995 +g1,23321:9950313,42578995 +g1,23321:10282267,42578995 +g1,23321:11610083,42578995 +g1,23321:12273991,42578995 +g1,23321:20572839,42578995 +g1,23321:24556287,42578995 +g1,23321:25552149,42578995 +h1,23321:25884103,42578995:0,0,0 +k1,23321:32583029,42578995:6698926 +g1,23321:32583029,42578995 +) +(1,23322:6630773,43263850:25952256,424439,79822 +h1,23322:6630773,43263850:0,0,0 +g1,23322:6962727,43263850 +g1,23322:7294681,43263850 +g1,23322:7626635,43263850 +g1,23322:7958589,43263850 +g1,23322:8290543,43263850 +g1,23322:8622497,43263850 +g1,23322:8954451,43263850 +g1,23322:9286405,43263850 +g1,23322:9618359,43263850 +g1,23322:9950313,43263850 +g1,23322:10282267,43263850 +h1,23322:10614221,43263850:0,0,0 +k1,23322:32583029,43263850:21968808 +g1,23322:32583029,43263850 +) +(1,23323:6630773,43948705:25952256,424439,106246 +h1,23323:6630773,43948705:0,0,0 +h1,23323:8622497,43948705:0,0,0 +k1,23323:32583029,43948705:23960532 +g1,23323:32583029,43948705 +) +(1,23333:6630773,44719060:25952256,424439,9908 +(1,23325:6630773,44719060:0,0,0 +g1,23325:6630773,44719060 +g1,23325:6630773,44719060 +g1,23325:6303093,44719060 +(1,23325:6303093,44719060:0,0,0 +) +g1,23325:6630773,44719060 +) +g1,23333:7626635,44719060 +g1,23333:8290543,44719060 +g1,23333:8954451,44719060 +g1,23333:11610083,44719060 +g1,23333:12605945,44719060 +g1,23333:13269853,44719060 +h1,23333:13601807,44719060:0,0,0 +k1,23333:32583029,44719060:18981222 +g1,23333:32583029,44719060 +) +(1,23333:6630773,45403915:25952256,424439,106246 +h1,23333:6630773,45403915:0,0,0 +g1,23333:7626635,45403915 +g1,23333:7958589,45403915 +g1,23333:8290543,45403915 +g1,23333:8622497,45403915 +g1,23333:8954451,45403915 +g1,23333:9286405,45403915 +g1,23333:9618359,45403915 +g1,23333:9950313,45403915 +g1,23333:11610083,45403915 +g1,23333:13601807,45403915 +g1,23333:13933761,45403915 +g1,23333:14265715,45403915 +g1,23333:15593531,45403915 +g1,23333:15925485,45403915 +g1,23333:16257439,45403915 +g1,23333:17585255,45403915 +g1,23333:17917209,45403915 +g1,23333:18249163,45403915 +h1,23333:19245025,45403915:0,0,0 +k1,23333:32583029,45403915:13338004 +g1,23333:32583029,45403915 +) +] +) +g1,23334:32583029,45510161 +g1,23334:6630773,45510161 +g1,23334:6630773,45510161 +g1,23334:32583029,45510161 +g1,23334:32583029,45510161 +) +] +(1,23334:32583029,45706769:0,0,0 +g1,23334:32583029,45706769 +) +) +] +(1,23334:6630773,47279633:25952256,0,0 +h1,23334:6630773,47279633:25952256,0,0 +) +] +(1,23334:4262630,4025873:0,0,0 +[1,23334:-473656,4025873:0,0,0 +(1,23334:-473656,-710413:0,0,0 +(1,23334:-473656,-710413:0,0,0 +g1,23334:-473656,-710413 +) +g1,23334:-473656,-710413 +) +] +) +] +!29372 +}402 +!12 +{403 +[1,23410:4262630,47279633:28320399,43253760,0 +(1,23410:4262630,4025873:0,0,0 +[1,23410:-473656,4025873:0,0,0 +(1,23410:-473656,-710413:0,0,0 +(1,23410:-473656,-644877:0,0,0 +k1,23410:-473656,-644877:-65536 +) +(1,23410:-473656,4736287:0,0,0 +k1,23410:-473656,4736287:5209943 ) -g1,23096:-473656,-710413 +g1,23410:-473656,-710413 ) ] ) -[1,23096:6630773,47279633:25952256,43253760,0 -[1,23096:6630773,4812305:25952256,786432,0 -(1,23096:6630773,4812305:25952256,505283,134348 -(1,23096:6630773,4812305:25952256,505283,134348 -g1,23096:3078558,4812305 -[1,23096:3078558,4812305:0,0,0 -(1,23096:3078558,2439708:0,1703936,0 -k1,23096:1358238,2439708:-1720320 -(1,21457:1358238,2439708:1720320,1703936,0 -(1,21457:1358238,2439708:1179648,16384,0 -r1,23096:2537886,2439708:1179648,16384,0 +[1,23410:6630773,47279633:25952256,43253760,0 +[1,23410:6630773,4812305:25952256,786432,0 +(1,23410:6630773,4812305:25952256,505283,134348 +(1,23410:6630773,4812305:25952256,505283,134348 +g1,23410:3078558,4812305 +[1,23410:3078558,4812305:0,0,0 +(1,23410:3078558,2439708:0,1703936,0 +k1,23410:1358238,2439708:-1720320 +(1,21670:1358238,2439708:1720320,1703936,0 +(1,21670:1358238,2439708:1179648,16384,0 +r1,23410:2537886,2439708:1179648,16384,0 ) -g1,21457:3062174,2439708 -(1,21457:3062174,2439708:16384,1703936,0 -[1,21457:3062174,2439708:25952256,1703936,0 -(1,21457:3062174,1915420:25952256,1179648,0 -(1,21457:3062174,1915420:16384,1179648,0 -r1,23096:3078558,1915420:16384,1179648,0 +g1,21670:3062174,2439708 +(1,21670:3062174,2439708:16384,1703936,0 +[1,21670:3062174,2439708:25952256,1703936,0 +(1,21670:3062174,1915420:25952256,1179648,0 +(1,21670:3062174,1915420:16384,1179648,0 +r1,23410:3078558,1915420:16384,1179648,0 ) -k1,21457:29014430,1915420:25935872 -g1,21457:29014430,1915420 +k1,21670:29014430,1915420:25935872 +g1,21670:29014430,1915420 ) ] ) ) ) ] -[1,23096:3078558,4812305:0,0,0 -(1,23096:3078558,2439708:0,1703936,0 -g1,23096:29030814,2439708 -g1,23096:36135244,2439708 -(1,21457:36135244,2439708:1720320,1703936,0 -(1,21457:36135244,2439708:16384,1703936,0 -[1,21457:36135244,2439708:25952256,1703936,0 -(1,21457:36135244,1915420:25952256,1179648,0 -(1,21457:36135244,1915420:16384,1179648,0 -r1,23096:36151628,1915420:16384,1179648,0 +[1,23410:3078558,4812305:0,0,0 +(1,23410:3078558,2439708:0,1703936,0 +g1,23410:29030814,2439708 +g1,23410:36135244,2439708 +(1,21670:36135244,2439708:1720320,1703936,0 +(1,21670:36135244,2439708:16384,1703936,0 +[1,21670:36135244,2439708:25952256,1703936,0 +(1,21670:36135244,1915420:25952256,1179648,0 +(1,21670:36135244,1915420:16384,1179648,0 +r1,23410:36151628,1915420:16384,1179648,0 ) -k1,21457:62087500,1915420:25935872 -g1,21457:62087500,1915420 +k1,21670:62087500,1915420:25935872 +g1,21670:62087500,1915420 ) ] ) -g1,21457:36675916,2439708 -(1,21457:36675916,2439708:1179648,16384,0 -r1,23096:37855564,2439708:1179648,16384,0 +g1,21670:36675916,2439708 +(1,21670:36675916,2439708:1179648,16384,0 +r1,23410:37855564,2439708:1179648,16384,0 ) ) -k1,23096:3078556,2439708:-34777008 +k1,23410:3078556,2439708:-34777008 ) ] -[1,23096:3078558,4812305:0,0,0 -(1,23096:3078558,49800853:0,16384,2228224 -k1,23096:1358238,49800853:-1720320 -(1,21457:1358238,49800853:1720320,16384,2228224 -(1,21457:1358238,49800853:1179648,16384,0 -r1,23096:2537886,49800853:1179648,16384,0 +[1,23410:3078558,4812305:0,0,0 +(1,23410:3078558,49800853:0,16384,2228224 +k1,23410:1358238,49800853:-1720320 +(1,21670:1358238,49800853:1720320,16384,2228224 +(1,21670:1358238,49800853:1179648,16384,0 +r1,23410:2537886,49800853:1179648,16384,0 ) -g1,21457:3062174,49800853 -(1,21457:3062174,52029077:16384,1703936,0 -[1,21457:3062174,52029077:25952256,1703936,0 -(1,21457:3062174,51504789:25952256,1179648,0 -(1,21457:3062174,51504789:16384,1179648,0 -r1,23096:3078558,51504789:16384,1179648,0 +g1,21670:3062174,49800853 +(1,21670:3062174,52029077:16384,1703936,0 +[1,21670:3062174,52029077:25952256,1703936,0 +(1,21670:3062174,51504789:25952256,1179648,0 +(1,21670:3062174,51504789:16384,1179648,0 +r1,23410:3078558,51504789:16384,1179648,0 ) -k1,21457:29014430,51504789:25935872 -g1,21457:29014430,51504789 +k1,21670:29014430,51504789:25935872 +g1,21670:29014430,51504789 +) +] +) +) +) +] +[1,23410:3078558,4812305:0,0,0 +(1,23410:3078558,49800853:0,16384,2228224 +g1,23410:29030814,49800853 +g1,23410:36135244,49800853 +(1,21670:36135244,49800853:1720320,16384,2228224 +(1,21670:36135244,52029077:16384,1703936,0 +[1,21670:36135244,52029077:25952256,1703936,0 +(1,21670:36135244,51504789:25952256,1179648,0 +(1,21670:36135244,51504789:16384,1179648,0 +r1,23410:36151628,51504789:16384,1179648,0 +) +k1,21670:62087500,51504789:25935872 +g1,21670:62087500,51504789 +) +] +) +g1,21670:36675916,49800853 +(1,21670:36675916,49800853:1179648,16384,0 +r1,23410:37855564,49800853:1179648,16384,0 +) +) +k1,23410:3078556,49800853:-34777008 +) +] +g1,23410:6630773,4812305 +k1,23410:21078841,4812305:13252691 +g1,23410:22701512,4812305 +g1,23410:23350318,4812305 +g1,23410:24759997,4812305 +g1,23410:28372341,4812305 +g1,23410:30105768,4812305 +) +) +] +[1,23410:6630773,45706769:25952256,40108032,0 +(1,23410:6630773,45706769:25952256,40108032,0 +(1,23410:6630773,45706769:0,0,0 +g1,23410:6630773,45706769 +) +[1,23410:6630773,45706769:25952256,40108032,0 +v1,23334:6630773,6254097:0,393216,0 +(1,23334:6630773,9231256:25952256,3370375,196608 +g1,23334:6630773,9231256 +g1,23334:6630773,9231256 +g1,23334:6434165,9231256 +(1,23334:6434165,9231256:0,3370375,196608 +r1,23410:32779637,9231256:26345472,3566983,196608 +k1,23334:6434165,9231256:-26345472 +) +(1,23334:6434165,9231256:26345472,3370375,196608 +[1,23334:6630773,9231256:25952256,3173767,0 +(1,23333:6630773,6481928:25952256,424439,79822 +h1,23333:6630773,6481928:0,0,0 +g1,23333:7626635,6481928 +g1,23333:7958589,6481928 +g1,23333:8290543,6481928 +g1,23333:11610082,6481928 +g1,23333:13601806,6481928 +g1,23333:15593530,6481928 +g1,23333:17585254,6481928 +k1,23333:17585254,6481928:0 +h1,23333:19245024,6481928:0,0,0 +k1,23333:32583029,6481928:13338005 +g1,23333:32583029,6481928 +) +(1,23333:6630773,7166783:25952256,407923,9908 +h1,23333:6630773,7166783:0,0,0 +g1,23333:7626635,7166783 +g1,23333:8290543,7166783 +g1,23333:8622497,7166783 +g1,23333:8954451,7166783 +g1,23333:11610083,7166783 +g1,23333:11942037,7166783 +g1,23333:12273991,7166783 +g1,23333:12605945,7166783 +g1,23333:13601807,7166783 +g1,23333:13933761,7166783 +g1,23333:15593531,7166783 +g1,23333:15925485,7166783 +g1,23333:17585255,7166783 +g1,23333:17917209,7166783 +h1,23333:19245025,7166783:0,0,0 +k1,23333:32583029,7166783:13338004 +g1,23333:32583029,7166783 +) +(1,23333:6630773,7851638:25952256,407923,9908 +h1,23333:6630773,7851638:0,0,0 +g1,23333:7626635,7851638 +g1,23333:8290543,7851638 +g1,23333:8622497,7851638 +g1,23333:8954451,7851638 +g1,23333:11610083,7851638 +g1,23333:11942037,7851638 +g1,23333:12273991,7851638 +g1,23333:12605945,7851638 +g1,23333:12937899,7851638 +g1,23333:13601807,7851638 +g1,23333:13933761,7851638 +g1,23333:15593531,7851638 +g1,23333:15925485,7851638 +g1,23333:17585255,7851638 +g1,23333:17917209,7851638 +h1,23333:19245025,7851638:0,0,0 +k1,23333:32583029,7851638:13338004 +g1,23333:32583029,7851638 +) +(1,23333:6630773,8536493:25952256,407923,9908 +h1,23333:6630773,8536493:0,0,0 +g1,23333:7626635,8536493 +g1,23333:8290543,8536493 +g1,23333:8622497,8536493 +g1,23333:8954451,8536493 +g1,23333:11610083,8536493 +g1,23333:11942037,8536493 +g1,23333:12273991,8536493 +g1,23333:12605945,8536493 +g1,23333:12937899,8536493 +g1,23333:13601807,8536493 +g1,23333:13933761,8536493 +g1,23333:15593531,8536493 +g1,23333:15925485,8536493 +g1,23333:17585255,8536493 +g1,23333:17917209,8536493 +h1,23333:19245025,8536493:0,0,0 +k1,23333:32583029,8536493:13338004 +g1,23333:32583029,8536493 +) +(1,23333:6630773,9221348:25952256,424439,9908 +h1,23333:6630773,9221348:0,0,0 +g1,23333:7626635,9221348 +g1,23333:8290543,9221348 +g1,23333:8954451,9221348 +g1,23333:9618359,9221348 +g1,23333:11278129,9221348 +h1,23333:12605945,9221348:0,0,0 +k1,23333:32583029,9221348:19977084 +g1,23333:32583029,9221348 +) +] +) +g1,23334:32583029,9231256 +g1,23334:6630773,9231256 +g1,23334:6630773,9231256 +g1,23334:32583029,9231256 +g1,23334:32583029,9231256 +) +h1,23334:6630773,9427864:0,0,0 +(1,23338:6630773,10292944:25952256,513147,134348 +h1,23337:6630773,10292944:983040,0,0 +k1,23337:8422854,10292944:331284 +k1,23337:9622491,10292944:331285 +k1,23337:11502391,10292944:331284 +k1,23337:12485103,10292944:331284 +k1,23337:14228689,10292944:331285 +k1,23337:15176011,10292944:331284 +k1,23337:17738797,10292944:331285 +k1,23337:19354587,10292944:331284 +k1,23337:21878050,10292944:331284 +k1,23337:23077687,10292944:331285 +k1,23337:24513253,10292944:331284 +k1,23337:25937022,10292944:331284 +k1,23337:28499808,10292944:331285 +k1,23337:31593435,10292944:331284 +k1,23338:32583029,10292944:0 +) +(1,23338:6630773,11158024:25952256,513147,134348 +k1,23337:9940396,11158024:250402 +k1,23337:13125500,11158024:250402 +k1,23337:14394987,11158024:250402 +k1,23337:16384715,11158024:250402 +k1,23337:17294409,11158024:250402 +k1,23337:19884446,11158024:250402 +k1,23337:20794139,11158024:250401 +k1,23337:24719800,11158024:250402 +k1,23337:26074484,11158024:250402 +k1,23337:28040619,11158024:250402 +k1,23337:30478613,11158024:250402 +k1,23337:31748100,11158024:250402 +k1,23338:32583029,11158024:0 +) +(1,23338:6630773,12023104:25952256,505283,134348 +k1,23337:9920377,12023104:236282 +k1,23337:10842822,12023104:236283 +k1,23337:13792295,12023104:236282 +k1,23337:15635521,12023104:236283 +k1,23337:17911283,12023104:236282 +k1,23337:18617459,12023104:236283 +k1,23337:19385238,12023104:236282 +k1,23337:21404756,12023104:236283 +k1,23337:24054074,12023104:236282 +k1,23337:24941785,12023104:236283 +k1,23337:26270552,12023104:236282 +k1,23337:29086987,12023104:236283 +k1,23337:31601955,12023104:236282 +k1,23338:32583029,12023104:0 +) +(1,23338:6630773,12888184:25952256,505283,7863 +g1,23337:9151943,12888184 +k1,23338:32583030,12888184:21873296 +g1,23338:32583030,12888184 +) +(1,23339:6630773,15005002:25952256,555811,139132 +(1,23339:6630773,15005002:3348562,534184,12975 +g1,23339:6630773,15005002 +g1,23339:9979335,15005002 +) +k1,23339:32583029,15005002:19939984 +g1,23339:32583029,15005002 +) +(1,23344:6630773,16263298:25952256,513147,134348 +k1,23343:9422334,16263298:256628 +k1,23343:11957648,16263298:256628 +k1,23343:14974652,16263298:256628 +k1,23343:18257077,16263298:256628 +k1,23343:19798211,16263298:256628 +k1,23343:21770572,16263298:256628 +k1,23343:22485296,16263298:256627 +k1,23343:24612322,16263298:256628 +k1,23343:25520378,16263298:256628 +k1,23343:27980982,16263298:256628 +k1,23343:30648024,16263298:256628 +k1,23343:31563944,16263298:256628 +k1,23343:32583029,16263298:0 +) +(1,23344:6630773,17128378:25952256,513147,134348 +k1,23343:8172052,17128378:151916 +k1,23343:9891588,17128378:151915 +k1,23343:10814207,17128378:151916 +k1,23343:13356173,17128378:151868 +k1,23343:14664799,17128378:151916 +k1,23343:15770264,17128378:151916 +k1,23343:17410502,17128378:151915 +k1,23343:18323946,17128378:151916 +k1,23343:20281378,17128378:151915 +k1,23343:21452379,17128378:151916 +k1,23343:23257768,17128378:151916 +k1,23343:26814278,17128378:151915 +k1,23343:27652356,17128378:151916 +k1,23343:28420309,17128378:151915 +k1,23343:29591310,17128378:151916 +k1,23343:32583029,17128378:0 +) +(1,23344:6630773,17993458:25952256,513147,7863 +g1,23343:7777653,17993458 +k1,23344:32583028,17993458:22474260 +g1,23344:32583028,17993458 +) +(1,23346:6630773,18858538:25952256,513147,134348 +h1,23345:6630773,18858538:983040,0,0 +k1,23345:8750590,18858538:183228 +k1,23345:10511269,18858538:183227 +k1,23345:11713582,18858538:183228 +k1,23345:12879849,18858538:183227 +k1,23345:15635365,18858538:183228 +k1,23345:16589295,18858538:183227 +k1,23345:18732049,18858538:183228 +k1,23345:20106722,18858538:183228 +k1,23345:25142235,18858538:183227 +k1,23345:28433180,18858538:183228 +k1,23345:29635492,18858538:183227 +k1,23345:31124853,18858538:183228 +k1,23346:32583029,18858538:0 +k1,23346:32583029,18858538:0 +) +v1,23348:6630773,19543393:0,393216,0 +(1,23379:6630773,37040185:25952256,17890008,196608 +g1,23379:6630773,37040185 +g1,23379:6630773,37040185 +g1,23379:6434165,37040185 +(1,23379:6434165,37040185:0,17890008,196608 +r1,23410:32779637,37040185:26345472,18086616,196608 +k1,23379:6434165,37040185:-26345472 +) +(1,23379:6434165,37040185:26345472,17890008,196608 +[1,23379:6630773,37040185:25952256,17693400,0 +(1,23350:6630773,19777830:25952256,431045,106246 +(1,23349:6630773,19777830:0,0,0 +g1,23349:6630773,19777830 +g1,23349:6630773,19777830 +g1,23349:6303093,19777830 +(1,23349:6303093,19777830:0,0,0 +) +g1,23349:6630773,19777830 +) +g1,23350:11610082,19777830 +g1,23350:12605944,19777830 +k1,23350:12605944,19777830:0 +h1,23350:25220193,19777830:0,0,0 +k1,23350:32583029,19777830:7362836 +g1,23350:32583029,19777830 +) +(1,23351:6630773,20462685:25952256,424439,52847 +h1,23351:6630773,20462685:0,0,0 +h1,23351:11278128,20462685:0,0,0 +k1,23351:32583028,20462685:21304900 +g1,23351:32583028,20462685 +) +(1,23378:6630773,21278612:25952256,398014,0 +(1,23353:6630773,21278612:0,0,0 +g1,23353:6630773,21278612 +g1,23353:6630773,21278612 +g1,23353:6303093,21278612 +(1,23353:6303093,21278612:0,0,0 +) +g1,23353:6630773,21278612 +) +h1,23378:7294681,21278612:0,0,0 +k1,23378:32583029,21278612:25288348 +g1,23378:32583029,21278612 +) +(1,23378:6630773,21963467:25952256,431045,106246 +h1,23378:6630773,21963467:0,0,0 +g1,23378:7626635,21963467 +g1,23378:9286405,21963467 +g1,23378:11610083,21963467 +g1,23378:13269853,21963467 +g1,23378:20240886,21963467 +h1,23378:21236748,21963467:0,0,0 +k1,23378:32583029,21963467:11346281 +g1,23378:32583029,21963467 +) +(1,23378:6630773,22648322:25952256,398014,0 +h1,23378:6630773,22648322:0,0,0 +h1,23378:7294681,22648322:0,0,0 +k1,23378:32583029,22648322:25288348 +g1,23378:32583029,22648322 +) +(1,23378:6630773,23333177:25952256,431045,106246 +h1,23378:6630773,23333177:0,0,0 +g1,23378:7626635,23333177 +g1,23378:9618359,23333177 +g1,23378:10946175,23333177 +g1,23378:14597668,23333177 +g1,23378:17253300,23333177 +g1,23378:17917208,23333177 +g1,23378:21900655,23333177 +k1,23378:21900655,23333177:0 +h1,23378:25220194,23333177:0,0,0 +k1,23378:32583029,23333177:7362835 +g1,23378:32583029,23333177 +) +(1,23378:6630773,24018032:25952256,398014,0 +h1,23378:6630773,24018032:0,0,0 +h1,23378:7294681,24018032:0,0,0 +k1,23378:32583029,24018032:25288348 +g1,23378:32583029,24018032 +) +(1,23378:6630773,24702887:25952256,424439,106246 +h1,23378:6630773,24702887:0,0,0 +k1,23378:7515984,24702887:221303 +k1,23378:8733149,24702887:221303 +k1,23378:8954452,24702887:221303 +k1,23378:9175755,24702887:221303 +k1,23378:12052690,24702887:221303 +k1,23378:12605947,24702887:221303 +k1,23378:14818974,24702887:221303 +k1,23378:19687632,24702887:221303 +k1,23378:19908935,24702887:221303 +k1,23378:20130238,24702887:221303 +k1,23378:20351541,24702887:221303 +k1,23378:23228475,24702887:221303 +k1,23378:25441502,24702887:221303 +k1,23378:25994759,24702887:221303 +k1,23378:28207786,24702887:221303 +k1,23378:28429089,24702887:221303 +k1,23378:30642116,24702887:221303 +k1,23378:31859281,24702887:221303 +h1,23378:34846866,24702887:0,0,0 +k1,23378:34846866,24702887:0 +k1,23378:34846866,24702887:0 +) +(1,23378:6630773,25387742:25952256,424439,112852 +h1,23378:6630773,25387742:0,0,0 +g1,23378:7626635,25387742 +g1,23378:8954451,25387742 +g1,23378:9286405,25387742 +g1,23378:9618359,25387742 +g1,23378:11610083,25387742 +g1,23378:11942037,25387742 +g1,23378:12273991,25387742 +g1,23378:12605945,25387742 +g1,23378:13269853,25387742 +h1,23378:19245024,25387742:0,0,0 +k1,23378:32583029,25387742:13338005 +g1,23378:32583029,25387742 +) +(1,23378:6630773,26072597:25952256,424439,79822 +h1,23378:6630773,26072597:0,0,0 +g1,23378:7626635,26072597 +g1,23378:8954451,26072597 +g1,23378:9286405,26072597 +g1,23378:9618359,26072597 +g1,23378:10614221,26072597 +g1,23378:10946175,26072597 +g1,23378:11278129,26072597 +g1,23378:11610083,26072597 +g1,23378:11942037,26072597 +g1,23378:12273991,26072597 +g1,23378:12605945,26072597 +g1,23378:13269853,26072597 +h1,23378:14265715,26072597:0,0,0 +k1,23378:32583029,26072597:18317314 +g1,23378:32583029,26072597 +) +(1,23378:6630773,26757452:25952256,424439,79822 +h1,23378:6630773,26757452:0,0,0 +g1,23378:7626635,26757452 +g1,23378:8954451,26757452 +g1,23378:9286405,26757452 +g1,23378:9618359,26757452 +g1,23378:10614221,26757452 +g1,23378:10946175,26757452 +g1,23378:11278129,26757452 +g1,23378:11610083,26757452 +g1,23378:11942037,26757452 +g1,23378:12273991,26757452 +g1,23378:12605945,26757452 +g1,23378:13269853,26757452 +h1,23378:14265715,26757452:0,0,0 +k1,23378:32583029,26757452:18317314 +g1,23378:32583029,26757452 +) +(1,23378:6630773,27442307:25952256,424439,79822 +h1,23378:6630773,27442307:0,0,0 +g1,23378:7626635,27442307 +g1,23378:8954451,27442307 +g1,23378:9286405,27442307 +g1,23378:9618359,27442307 +g1,23378:10614221,27442307 +g1,23378:10946175,27442307 +g1,23378:11278129,27442307 +g1,23378:11610083,27442307 +g1,23378:11942037,27442307 +g1,23378:12273991,27442307 +g1,23378:12605945,27442307 +g1,23378:13269853,27442307 +h1,23378:14597669,27442307:0,0,0 +k1,23378:32583029,27442307:17985360 +g1,23378:32583029,27442307 +) +(1,23378:6630773,28127162:25952256,398014,0 +h1,23378:6630773,28127162:0,0,0 +h1,23378:7294681,28127162:0,0,0 +k1,23378:32583029,28127162:25288348 +g1,23378:32583029,28127162 +) +(1,23378:6630773,28812017:25952256,424439,79822 +h1,23378:6630773,28812017:0,0,0 +g1,23378:7626635,28812017 +g1,23378:11278128,28812017 +g1,23378:11942036,28812017 +g1,23378:12937898,28812017 +h1,23378:15593529,28812017:0,0,0 +k1,23378:32583029,28812017:16989500 +g1,23378:32583029,28812017 +) +(1,23378:6630773,29496872:25952256,398014,0 +h1,23378:6630773,29496872:0,0,0 +h1,23378:7294681,29496872:0,0,0 +k1,23378:32583029,29496872:25288348 +g1,23378:32583029,29496872 +) +(1,23378:6630773,30181727:25952256,424439,112852 +h1,23378:6630773,30181727:0,0,0 +k1,23378:7573304,30181727:278623 +k1,23378:7851927,30181727:278623 +k1,23378:8130550,30181727:278623 +k1,23378:9405036,30181727:278624 +k1,23378:9683659,30181727:278623 +k1,23378:9962282,30181727:278623 +k1,23378:11568721,30181727:278623 +k1,23378:11847344,30181727:278623 +k1,23378:14117691,30181727:278623 +k1,23378:14396315,30181727:278624 +k1,23378:14674938,30181727:278623 +k1,23378:14953561,30181727:278623 +k1,23378:15232184,30181727:278623 +k1,23378:16506669,30181727:278623 +k1,23378:16785292,30181727:278623 +k1,23378:17063916,30181727:278624 +k1,23378:17342539,30181727:278623 +k1,23378:17621162,30181727:278623 +k1,23378:18895647,30181727:278623 +k1,23378:20834040,30181727:278623 +k1,23378:22772433,30181727:278623 +k1,23378:23051057,30181727:278624 +k1,23378:23329680,30181727:278623 +k1,23378:23608303,30181727:278623 +k1,23378:25214742,30181727:278623 +k1,23378:25493365,30181727:278623 +k1,23378:25771988,30181727:278623 +k1,23378:26050612,30181727:278624 +k1,23378:27657051,30181727:278623 +k1,23378:29595444,30181727:278623 +h1,23378:32583029,30181727:0,0,0 +k1,23378:32583029,30181727:0 +k1,23378:32583029,30181727:0 +) +(1,23378:6630773,30866582:25952256,424439,112852 +h1,23378:6630773,30866582:0,0,0 +k1,23378:7614266,30866582:319585 +k1,23378:7933852,30866582:319586 +k1,23378:8253437,30866582:319585 +k1,23378:10232792,30866582:319585 +k1,23378:12212148,30866582:319586 +k1,23378:12531733,30866582:319585 +k1,23378:14511089,30866582:319586 +k1,23378:14830674,30866582:319585 +k1,23378:15150259,30866582:319585 +k1,23378:17129615,30866582:319586 +k1,23378:17449200,30866582:319585 +k1,23378:17768785,30866582:319585 +k1,23378:19748141,30866582:319586 +k1,23378:21727496,30866582:319585 +k1,23378:23706851,30866582:319585 +k1,23378:24026437,30866582:319586 +k1,23378:24346022,30866582:319585 +k1,23378:26325378,30866582:319586 +k1,23378:26644963,30866582:319585 +k1,23378:26964548,30866582:319585 +k1,23378:28943904,30866582:319586 +k1,23378:30923259,30866582:319585 +k1,23378:30923259,30866582:0 +h1,23378:32583029,30866582:0,0,0 +k1,23378:32583029,30866582:0 +k1,23378:32583029,30866582:0 +) +(1,23378:6630773,31551437:25952256,424439,9908 +h1,23378:6630773,31551437:0,0,0 +g1,23378:7626635,31551437 +g1,23378:8290543,31551437 +g1,23378:9286405,31551437 +g1,23378:9618359,31551437 +g1,23378:9950313,31551437 +g1,23378:10282267,31551437 +g1,23378:11610083,31551437 +g1,23378:11942037,31551437 +g1,23378:12273991,31551437 +g1,23378:12605945,31551437 +g1,23378:12937899,31551437 +g1,23378:13269853,31551437 +g1,23378:14597669,31551437 +g1,23378:14929623,31551437 +g1,23378:15593531,31551437 +g1,23378:15925485,31551437 +g1,23378:16257439,31551437 +g1,23378:16589393,31551437 +g1,23378:16921347,31551437 +g1,23378:17253301,31551437 +g1,23378:17585255,31551437 +g1,23378:19908933,31551437 +g1,23378:20240887,31551437 +g1,23378:20572841,31551437 +g1,23378:20904795,31551437 +g1,23378:21236749,31551437 +g1,23378:21900657,31551437 +g1,23378:22232611,31551437 +g1,23378:22564565,31551437 +g1,23378:23892381,31551437 +g1,23378:24224335,31551437 +g1,23378:24888243,31551437 +g1,23378:25220197,31551437 +g1,23378:25552151,31551437 +g1,23378:25884105,31551437 +g1,23378:26216059,31551437 +g1,23378:26548013,31551437 +g1,23378:26879967,31551437 +g1,23378:29203645,31551437 +g1,23378:31195369,31551437 +h1,23378:32523185,31551437:0,0,0 +k1,23378:32583029,31551437:59844 +g1,23378:32583029,31551437 +) +(1,23378:6630773,32236292:25952256,424439,9908 +h1,23378:6630773,32236292:0,0,0 +g1,23378:7626635,32236292 +g1,23378:8290543,32236292 +g1,23378:9286405,32236292 +g1,23378:9618359,32236292 +g1,23378:9950313,32236292 +g1,23378:10282267,32236292 +g1,23378:11610083,32236292 +g1,23378:11942037,32236292 +g1,23378:12273991,32236292 +g1,23378:12605945,32236292 +g1,23378:12937899,32236292 +g1,23378:13269853,32236292 +g1,23378:13601807,32236292 +g1,23378:14597669,32236292 +g1,23378:17253301,32236292 +g1,23378:17585255,32236292 +g1,23378:19908933,32236292 +g1,23378:20240887,32236292 +g1,23378:20572841,32236292 +g1,23378:20904795,32236292 +g1,23378:21236749,32236292 +g1,23378:21900657,32236292 +g1,23378:22232611,32236292 +g1,23378:22564565,32236292 +g1,23378:22896519,32236292 +g1,23378:23892381,32236292 +g1,23378:26548013,32236292 +g1,23378:26879967,32236292 +g1,23378:29203645,32236292 +g1,23378:31195369,32236292 +h1,23378:32523185,32236292:0,0,0 +k1,23378:32583029,32236292:59844 +g1,23378:32583029,32236292 +) +(1,23378:6630773,32921147:25952256,424439,9908 +h1,23378:6630773,32921147:0,0,0 +g1,23378:7626635,32921147 +g1,23378:8290543,32921147 +g1,23378:9286405,32921147 +g1,23378:9618359,32921147 +g1,23378:9950313,32921147 +g1,23378:10282267,32921147 +g1,23378:11942037,32921147 +g1,23378:12273991,32921147 +g1,23378:12605945,32921147 +g1,23378:12937899,32921147 +g1,23378:13269853,32921147 +g1,23378:13601807,32921147 +g1,23378:14597669,32921147 +g1,23378:17253301,32921147 +g1,23378:19908933,32921147 +g1,23378:20240887,32921147 +g1,23378:20572841,32921147 +g1,23378:20904795,32921147 +g1,23378:21236749,32921147 +g1,23378:21900657,32921147 +g1,23378:22232611,32921147 +g1,23378:22564565,32921147 +g1,23378:22896519,32921147 +g1,23378:23892381,32921147 +g1,23378:26548013,32921147 +g1,23378:29203645,32921147 +g1,23378:31195369,32921147 +h1,23378:32523185,32921147:0,0,0 +k1,23378:32583029,32921147:59844 +g1,23378:32583029,32921147 +) +(1,23378:6630773,33606002:25952256,398014,0 +h1,23378:6630773,33606002:0,0,0 +h1,23378:7294681,33606002:0,0,0 +k1,23378:32583029,33606002:25288348 +g1,23378:32583029,33606002 +) +(1,23378:6630773,34290857:25952256,424439,6605 +h1,23378:6630773,34290857:0,0,0 +g1,23378:7626635,34290857 +g1,23378:10614220,34290857 +h1,23378:14265713,34290857:0,0,0 +k1,23378:32583029,34290857:18317316 +g1,23378:32583029,34290857 +) +(1,23378:6630773,34975712:25952256,398014,0 +h1,23378:6630773,34975712:0,0,0 +h1,23378:7294681,34975712:0,0,0 +k1,23378:32583029,34975712:25288348 +g1,23378:32583029,34975712 +) +(1,23378:6630773,35660567:25952256,424439,112852 +h1,23378:6630773,35660567:0,0,0 +g1,23378:7626635,35660567 +g1,23378:7958589,35660567 +g1,23378:8290543,35660567 +g1,23378:9618359,35660567 +g1,23378:9950313,35660567 +g1,23378:10282267,35660567 +g1,23378:11942037,35660567 +g1,23378:12273991,35660567 +g1,23378:14597669,35660567 +g1,23378:14929623,35660567 +g1,23378:15261577,35660567 +g1,23378:16589393,35660567 +g1,23378:16921347,35660567 +g1,23378:17253301,35660567 +g1,23378:18581117,35660567 +g1,23378:20572841,35660567 +h1,23378:23560426,35660567:0,0,0 +k1,23378:32583029,35660567:9022603 +g1,23378:32583029,35660567 +) +(1,23378:6630773,36345422:25952256,424439,112852 +h1,23378:6630773,36345422:0,0,0 +g1,23378:7626635,36345422 +g1,23378:7958589,36345422 +g1,23378:8290543,36345422 +g1,23378:10282267,36345422 +g1,23378:12273991,36345422 +g1,23378:12605945,36345422 +g1,23378:14597669,36345422 +g1,23378:16589393,36345422 +g1,23378:18581117,36345422 +g1,23378:20572841,36345422 +k1,23378:20572841,36345422:0 +h1,23378:22232611,36345422:0,0,0 +k1,23378:32583029,36345422:10350418 +g1,23378:32583029,36345422 +) +(1,23378:6630773,37030277:25952256,424439,9908 +h1,23378:6630773,37030277:0,0,0 +g1,23378:7626635,37030277 +g1,23378:8290543,37030277 +g1,23378:9286405,37030277 +g1,23378:9618359,37030277 +g1,23378:9950313,37030277 +g1,23378:10282267,37030277 +g1,23378:12273991,37030277 +g1,23378:12605945,37030277 +g1,23378:12937899,37030277 +g1,23378:13269853,37030277 +g1,23378:13601807,37030277 +g1,23378:13933761,37030277 +g1,23378:14597669,37030277 +g1,23378:14929623,37030277 +g1,23378:15261577,37030277 +g1,23378:15593531,37030277 +g1,23378:15925485,37030277 +g1,23378:16589393,37030277 +g1,23378:16921347,37030277 +g1,23378:17253301,37030277 +g1,23378:17585255,37030277 +g1,23378:17917209,37030277 +g1,23378:18581117,37030277 +g1,23378:20572841,37030277 +h1,23378:22232611,37030277:0,0,0 +k1,23378:32583029,37030277:10350418 +g1,23378:32583029,37030277 +) +] +) +g1,23379:32583029,37040185 +g1,23379:6630773,37040185 +g1,23379:6630773,37040185 +g1,23379:32583029,37040185 +g1,23379:32583029,37040185 +) +h1,23379:6630773,37236793:0,0,0 +v1,23383:6630773,37921648:0,393216,0 +(1,23395:6630773,42399589:25952256,4871157,196608 +g1,23395:6630773,42399589 +g1,23395:6630773,42399589 +g1,23395:6434165,42399589 +(1,23395:6434165,42399589:0,4871157,196608 +r1,23410:32779637,42399589:26345472,5067765,196608 +k1,23395:6434165,42399589:-26345472 +) +(1,23395:6434165,42399589:26345472,4871157,196608 +[1,23395:6630773,42399589:25952256,4674549,0 +(1,23385:6630773,38149479:25952256,424439,106246 +(1,23384:6630773,38149479:0,0,0 +g1,23384:6630773,38149479 +g1,23384:6630773,38149479 +g1,23384:6303093,38149479 +(1,23384:6303093,38149479:0,0,0 +) +g1,23384:6630773,38149479 +) +k1,23385:6630773,38149479:0 +h1,23385:15261575,38149479:0,0,0 +k1,23385:32583029,38149479:17321454 +g1,23385:32583029,38149479 +) +(1,23394:6630773,38965406:25952256,424439,9908 +(1,23387:6630773,38965406:0,0,0 +g1,23387:6630773,38965406 +g1,23387:6630773,38965406 +g1,23387:6303093,38965406 +(1,23387:6303093,38965406:0,0,0 +) +g1,23387:6630773,38965406 +) +g1,23394:7626635,38965406 +g1,23394:8290543,38965406 +g1,23394:8954451,38965406 +g1,23394:11610083,38965406 +g1,23394:12273991,38965406 +g1,23394:12937899,38965406 +h1,23394:13269853,38965406:0,0,0 +k1,23394:32583029,38965406:19313176 +g1,23394:32583029,38965406 +) +(1,23394:6630773,39650261:25952256,424439,112852 +h1,23394:6630773,39650261:0,0,0 +g1,23394:7626635,39650261 +g1,23394:7958589,39650261 +g1,23394:8290543,39650261 +g1,23394:9950313,39650261 +g1,23394:10282267,39650261 +g1,23394:12605945,39650261 +g1,23394:14597669,39650261 +g1,23394:16589393,39650261 +g1,23394:16921347,39650261 +g1,23394:17253301,39650261 +g1,23394:17585255,39650261 +g1,23394:18581117,39650261 +g1,23394:20572841,39650261 +h1,23394:23560426,39650261:0,0,0 +k1,23394:32583029,39650261:9022603 +g1,23394:32583029,39650261 +) +(1,23394:6630773,40335116:25952256,424439,112852 +h1,23394:6630773,40335116:0,0,0 +g1,23394:7626635,40335116 +g1,23394:7958589,40335116 +g1,23394:8290543,40335116 +g1,23394:10282267,40335116 +g1,23394:10614221,40335116 +g1,23394:12605945,40335116 +g1,23394:14597669,40335116 +g1,23394:16589393,40335116 +g1,23394:18581117,40335116 +g1,23394:20572841,40335116 +k1,23394:20572841,40335116:0 +h1,23394:22232611,40335116:0,0,0 +k1,23394:32583029,40335116:10350418 +g1,23394:32583029,40335116 +) +(1,23394:6630773,41019971:25952256,424439,9908 +h1,23394:6630773,41019971:0,0,0 +g1,23394:7626635,41019971 +g1,23394:8290543,41019971 +g1,23394:9618359,41019971 +g1,23394:9950313,41019971 +g1,23394:10282267,41019971 +g1,23394:10614221,41019971 +g1,23394:10946175,41019971 +g1,23394:11278129,41019971 +g1,23394:12605945,41019971 +g1,23394:12937899,41019971 +g1,23394:13269853,41019971 +g1,23394:13601807,41019971 +g1,23394:13933761,41019971 +g1,23394:14597669,41019971 +g1,23394:14929623,41019971 +g1,23394:15261577,41019971 +g1,23394:16589393,41019971 +g1,23394:16921347,41019971 +g1,23394:17253301,41019971 +g1,23394:17585255,41019971 +g1,23394:17917209,41019971 +g1,23394:18581117,41019971 +g1,23394:20572841,41019971 +h1,23394:21900657,41019971:0,0,0 +k1,23394:32583029,41019971:10682372 +g1,23394:32583029,41019971 +) +(1,23394:6630773,41704826:25952256,424439,9908 +h1,23394:6630773,41704826:0,0,0 +g1,23394:7626635,41704826 +g1,23394:8290543,41704826 +g1,23394:9618359,41704826 +g1,23394:9950313,41704826 +g1,23394:10282267,41704826 +g1,23394:10614221,41704826 +g1,23394:10946175,41704826 +g1,23394:11278129,41704826 +g1,23394:11610083,41704826 +g1,23394:12605945,41704826 +g1,23394:12937899,41704826 +g1,23394:13269853,41704826 +g1,23394:13601807,41704826 +g1,23394:13933761,41704826 +g1,23394:14597669,41704826 +g1,23394:14929623,41704826 +g1,23394:15261577,41704826 +g1,23394:15593531,41704826 +g1,23394:16589393,41704826 +g1,23394:16921347,41704826 +g1,23394:17253301,41704826 +g1,23394:17585255,41704826 +g1,23394:17917209,41704826 +g1,23394:18581117,41704826 +g1,23394:20572841,41704826 +h1,23394:21900657,41704826:0,0,0 +k1,23394:32583029,41704826:10682372 +g1,23394:32583029,41704826 +) +(1,23394:6630773,42389681:25952256,424439,9908 +h1,23394:6630773,42389681:0,0,0 +g1,23394:7626635,42389681 +g1,23394:8290543,42389681 +g1,23394:9950313,42389681 +g1,23394:10282267,42389681 +g1,23394:10614221,42389681 +g1,23394:10946175,42389681 +g1,23394:11278129,42389681 +g1,23394:11610083,42389681 +g1,23394:12605945,42389681 +g1,23394:12937899,42389681 +g1,23394:13269853,42389681 +g1,23394:13601807,42389681 +g1,23394:13933761,42389681 +g1,23394:14597669,42389681 +g1,23394:14929623,42389681 +g1,23394:15261577,42389681 +g1,23394:15593531,42389681 +g1,23394:16589393,42389681 +g1,23394:16921347,42389681 +g1,23394:17253301,42389681 +g1,23394:17585255,42389681 +g1,23394:17917209,42389681 +g1,23394:18581117,42389681 +g1,23394:20572841,42389681 +h1,23394:21900657,42389681:0,0,0 +k1,23394:32583029,42389681:10682372 +g1,23394:32583029,42389681 +) +] +) +g1,23395:32583029,42399589 +g1,23395:6630773,42399589 +g1,23395:6630773,42399589 +g1,23395:32583029,42399589 +g1,23395:32583029,42399589 +) +h1,23395:6630773,42596197:0,0,0 +v1,23399:6630773,43281052:0,393216,0 +(1,23410:6630773,45115911:25952256,2228075,196608 +g1,23410:6630773,45115911 +g1,23410:6630773,45115911 +g1,23410:6434165,45115911 +(1,23410:6434165,45115911:0,2228075,196608 +r1,23410:32779637,45115911:26345472,2424683,196608 +k1,23410:6434165,45115911:-26345472 +) +(1,23410:6434165,45115911:26345472,2228075,196608 +[1,23410:6630773,45115911:25952256,2031467,0 +(1,23401:6630773,43508883:25952256,424439,106246 +(1,23400:6630773,43508883:0,0,0 +g1,23400:6630773,43508883 +g1,23400:6630773,43508883 +g1,23400:6303093,43508883 +(1,23400:6303093,43508883:0,0,0 +) +g1,23400:6630773,43508883 +) +k1,23401:6630773,43508883:0 +h1,23401:15261575,43508883:0,0,0 +k1,23401:32583029,43508883:17321454 +g1,23401:32583029,43508883 +) +(1,23409:6630773,44324810:25952256,424439,9908 +(1,23403:6630773,44324810:0,0,0 +g1,23403:6630773,44324810 +g1,23403:6630773,44324810 +g1,23403:6303093,44324810 +(1,23403:6303093,44324810:0,0,0 +) +g1,23403:6630773,44324810 +) +g1,23409:7626635,44324810 +g1,23409:8290543,44324810 +g1,23409:8954451,44324810 +g1,23409:11610083,44324810 +g1,23409:12273991,44324810 +g1,23409:12937899,44324810 +h1,23409:13269853,44324810:0,0,0 +k1,23409:32583029,44324810:19313176 +g1,23409:32583029,44324810 +) +(1,23409:6630773,45009665:25952256,424439,106246 +h1,23409:6630773,45009665:0,0,0 +g1,23409:7626635,45009665 +g1,23409:7958589,45009665 +g1,23409:8290543,45009665 +g1,23409:8622497,45009665 +g1,23409:8954451,45009665 +g1,23409:9286405,45009665 +g1,23409:10282267,45009665 +g1,23409:11942037,45009665 +g1,23409:12273991,45009665 +g1,23409:12605945,45009665 +g1,23409:12937899,45009665 +g1,23409:13269853,45009665 +g1,23409:13601807,45009665 +g1,23409:13933761,45009665 +g1,23409:14265715,45009665 +g1,23409:14597669,45009665 +g1,23409:14929623,45009665 +g1,23409:15261577,45009665 +g1,23409:16921347,45009665 +g1,23409:17253301,45009665 +g1,23409:17585255,45009665 +g1,23409:17917209,45009665 +g1,23409:18249163,45009665 +g1,23409:20240887,45009665 +g1,23409:22232611,45009665 +h1,23409:25220196,45009665:0,0,0 +k1,23409:32583029,45009665:7362833 +g1,23409:32583029,45009665 +) +] +) +g1,23410:32583029,45115911 +g1,23410:6630773,45115911 +g1,23410:6630773,45115911 +g1,23410:32583029,45115911 +g1,23410:32583029,45115911 +) +] +(1,23410:32583029,45706769:0,0,0 +g1,23410:32583029,45706769 +) +) +] +(1,23410:6630773,47279633:25952256,0,0 +h1,23410:6630773,47279633:25952256,0,0 +) +] +(1,23410:4262630,4025873:0,0,0 +[1,23410:-473656,4025873:0,0,0 +(1,23410:-473656,-710413:0,0,0 +(1,23410:-473656,-710413:0,0,0 +g1,23410:-473656,-710413 +) +g1,23410:-473656,-710413 +) +] +) +] +!30793 +}403 +Input:3754:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!106 +{404 +[1,23470:4262630,47279633:28320399,43253760,0 +(1,23470:4262630,4025873:0,0,0 +[1,23470:-473656,4025873:0,0,0 +(1,23470:-473656,-710413:0,0,0 +(1,23470:-473656,-644877:0,0,0 +k1,23470:-473656,-644877:-65536 +) +(1,23470:-473656,4736287:0,0,0 +k1,23470:-473656,4736287:5209943 +) +g1,23470:-473656,-710413 ) ] ) +[1,23470:6630773,47279633:25952256,43253760,0 +[1,23470:6630773,4812305:25952256,786432,0 +(1,23470:6630773,4812305:25952256,505283,126483 +(1,23470:6630773,4812305:25952256,505283,126483 +g1,23470:3078558,4812305 +[1,23470:3078558,4812305:0,0,0 +(1,23470:3078558,2439708:0,1703936,0 +k1,23470:1358238,2439708:-1720320 +(1,21670:1358238,2439708:1720320,1703936,0 +(1,21670:1358238,2439708:1179648,16384,0 +r1,23470:2537886,2439708:1179648,16384,0 +) +g1,21670:3062174,2439708 +(1,21670:3062174,2439708:16384,1703936,0 +[1,21670:3062174,2439708:25952256,1703936,0 +(1,21670:3062174,1915420:25952256,1179648,0 +(1,21670:3062174,1915420:16384,1179648,0 +r1,23470:3078558,1915420:16384,1179648,0 ) +k1,21670:29014430,1915420:25935872 +g1,21670:29014430,1915420 ) ] -[1,23096:3078558,4812305:0,0,0 -(1,23096:3078558,49800853:0,16384,2228224 -g1,23096:29030814,49800853 -g1,23096:36135244,49800853 -(1,21457:36135244,49800853:1720320,16384,2228224 -(1,21457:36135244,52029077:16384,1703936,0 -[1,21457:36135244,52029077:25952256,1703936,0 -(1,21457:36135244,51504789:25952256,1179648,0 -(1,21457:36135244,51504789:16384,1179648,0 -r1,23096:36151628,51504789:16384,1179648,0 -) -k1,21457:62087500,51504789:25935872 -g1,21457:62087500,51504789 -) -] -) -g1,21457:36675916,49800853 -(1,21457:36675916,49800853:1179648,16384,0 -r1,23096:37855564,49800853:1179648,16384,0 -) -) -k1,23096:3078556,49800853:-34777008 -) -] -g1,23096:6630773,4812305 -k1,23096:21078841,4812305:13252691 -g1,23096:22701512,4812305 -g1,23096:23350318,4812305 -g1,23096:24759997,4812305 -g1,23096:28372341,4812305 -g1,23096:30105768,4812305 -) -) -] -[1,23096:6630773,45706769:25952256,40108032,0 -(1,23096:6630773,45706769:25952256,40108032,0 -(1,23096:6630773,45706769:0,0,0 -g1,23096:6630773,45706769 -) -[1,23096:6630773,45706769:25952256,40108032,0 -(1,23025:6630773,6254097:25952256,513147,134348 -k1,23024:10440938,6254097:231899 -k1,23024:13075387,6254097:231899 -k1,23024:13663146,6254097:231899 -k1,23024:16285110,6254097:231866 -k1,23024:17500049,6254097:231899 -k1,23024:18263445,6254097:231899 -k1,23024:20072796,6254097:231899 -k1,23024:20920733,6254097:231899 -k1,23024:22325071,6254097:231899 -k1,23024:23239855,6254097:231899 -k1,23024:25121951,6254097:231899 -k1,23024:28764344,6254097:231899 -k1,23024:31563944,6254097:231899 -k1,23024:32583029,6254097:0 -) -(1,23025:6630773,7095585:25952256,513147,134348 -k1,23024:7960974,7095585:173491 -k1,23024:10537016,7095585:173492 -k1,23024:13679943,7095585:173491 -k1,23024:17165625,7095585:173492 -k1,23024:18358201,7095585:173491 -k1,23024:21373334,7095585:173492 -k1,23024:22738270,7095585:173491 -k1,23024:25037750,7095585:173492 -k1,23024:26669417,7095585:173491 -k1,23024:28034354,7095585:173492 -k1,23024:30180479,7095585:173491 -k1,23024:32583029,7095585:0 -) -(1,23025:6630773,7937073:25952256,513147,7863 -g1,23024:7849087,7937073 -g1,23024:9437679,7937073 -g1,23024:10296200,7937073 -k1,23025:32583029,7937073:19669976 -g1,23025:32583029,7937073 -) -(1,23026:6630773,10028333:25952256,564462,12975 -(1,23026:6630773,10028333:3348562,534184,12975 -g1,23026:6630773,10028333 -g1,23026:9979335,10028333 -) -k1,23026:32583028,10028333:20127416 -g1,23026:32583028,10028333 -) -(1,23031:6630773,11263037:25952256,513147,134348 -k1,23030:9313166,11263037:147460 -k1,23030:11618071,11263037:147461 -k1,23030:14622245,11263037:147460 -k1,23030:17172255,11263037:147460 -k1,23030:17979007,11263037:147460 -k1,23030:19439810,11263037:147461 -k1,23030:21322663,11263037:147460 -k1,23030:23860170,11263037:147409 -k1,23030:26341367,11263037:147460 -k1,23030:26887286,11263037:147460 -k1,23030:27717632,11263037:147461 -k1,23030:29898674,11263037:147460 -k1,23030:32583029,11263037:0 -) -(1,23031:6630773,12104525:25952256,513147,134348 -k1,23030:9920493,12104525:169551 -k1,23030:10706082,12104525:169551 -k1,23030:13033077,12104525:169551 -k1,23030:14268899,12104525:169551 -k1,23030:15814051,12104525:169551 -k1,23030:17665256,12104525:169551 -k1,23030:20237357,12104525:169551 -k1,23030:21598353,12104525:169551 -k1,23030:24025619,12104525:169551 -k1,23030:24854462,12104525:169551 -k1,23030:26720740,12104525:169551 -k1,23030:28377303,12104525:169551 -k1,23030:29619023,12104525:169551 -k1,23030:31074390,12104525:169551 -k1,23030:32583029,12104525:0 -) -(1,23031:6630773,12946013:25952256,513147,7863 -k1,23031:32583030,12946013:21754676 -g1,23031:32583030,12946013 -) -(1,23033:6630773,13787501:25952256,513147,102891 -h1,23032:6630773,13787501:983040,0,0 -k1,23032:8746930,13787501:179568 -k1,23032:10232632,13787501:179569 -k1,23032:11824501,13787501:179568 -k1,23032:14973506,13787501:179569 -k1,23032:15804502,13787501:179568 -k1,23032:18007823,13787501:179569 -k1,23032:18958094,13787501:179568 -k1,23032:20886819,13787501:179569 -k1,23032:21725679,13787501:179568 -k1,23032:22924333,13787501:179569 -k1,23032:24086941,13787501:179568 -k1,23032:27189416,13787501:179569 -k1,23032:28560429,13787501:179568 -k1,23032:29356036,13787501:179569 -k1,23032:32583029,13787501:0 -) -(1,23033:6630773,14628989:25952256,513147,126483 -k1,23032:8788144,14628989:298115 -k1,23032:10498560,14628989:298115 -k1,23032:11152535,14628989:298115 -k1,23032:13530762,14628989:298114 -k1,23032:14488169,14628989:298115 -k1,23032:15805369,14628989:298115 -k1,23032:17666518,14628989:298115 -k1,23032:19443781,14628989:298115 -(1,23032:19443781,14628989:0,452978,115847 -r1,23096:21912318,14628989:2468537,568825,115847 -k1,23032:19443781,14628989:-2468537 -) -(1,23032:19443781,14628989:2468537,452978,115847 -k1,23032:19443781,14628989:3277 -h1,23032:21909041,14628989:0,411205,112570 -) -k1,23032:22210433,14628989:298115 -k1,23032:23376900,14628989:298115 -k1,23032:24779297,14628989:298115 -k1,23032:26343567,14628989:298114 -k1,23032:27707953,14628989:298115 -k1,23032:29025153,14628989:298115 -k1,23032:31391584,14628989:298115 -k1,23032:32583029,14628989:0 -) -(1,23033:6630773,15470477:25952256,513147,134348 -k1,23032:11465186,15470477:206260 -k1,23032:12330737,15470477:206259 -k1,23032:13556082,15470477:206260 -k1,23032:16603982,15470477:206259 -k1,23032:18001687,15470477:206260 -k1,23032:21490644,15470477:206259 -k1,23032:22324739,15470477:206260 -k1,23032:23734239,15470477:206259 -k1,23032:26775586,15470477:206260 -k1,23032:27850197,15470477:206259 -k1,23032:29468758,15470477:206260 -k1,23032:32583029,15470477:0 -) -(1,23033:6630773,16311965:25952256,513147,134348 -g1,23032:9586446,16311965 -g1,23032:10733326,16311965 -g1,23032:13785993,16311965 -g1,23032:20040749,16311965 -k1,23033:32583029,16311965:10773463 -g1,23033:32583029,16311965 -) -(1,23035:6630773,17153453:25952256,513147,126483 -h1,23034:6630773,17153453:983040,0,0 -g1,23034:8766591,17153453 -g1,23034:10271953,17153453 -g1,23034:12048634,17153453 -g1,23034:12603723,17153453 -g1,23034:16309128,17153453 -g1,23034:17159785,17153453 -g1,23034:18378099,17153453 -g1,23034:19560368,17153453 -g1,23034:21153548,17153453 -g1,23034:24048273,17153453 -(1,23034:24048273,17153453:0,452978,115847 -r1,23096:27220233,17153453:3171960,568825,115847 -k1,23034:24048273,17153453:-3171960 -) -(1,23034:24048273,17153453:3171960,452978,115847 -k1,23034:24048273,17153453:3277 -h1,23034:27216956,17153453:0,411205,112570 -) -k1,23035:32583029,17153453:5189126 -g1,23035:32583029,17153453 -) -v1,23037:6630773,18134203:0,393216,0 -(1,23061:6630773,30421629:25952256,12680642,196608 -g1,23061:6630773,30421629 -g1,23061:6630773,30421629 -g1,23061:6434165,30421629 -(1,23061:6434165,30421629:0,12680642,196608 -r1,23096:32779637,30421629:26345472,12877250,196608 -k1,23061:6434165,30421629:-26345472 -) -(1,23061:6434165,30421629:26345472,12680642,196608 -[1,23061:6630773,30421629:25952256,12484034,0 -(1,23039:6630773,18348113:25952256,410518,101187 -(1,23038:6630773,18348113:0,0,0 -g1,23038:6630773,18348113 -g1,23038:6630773,18348113 -g1,23038:6303093,18348113 -(1,23038:6303093,18348113:0,0,0 -) -g1,23038:6630773,18348113 -) -g1,23039:11056813,18348113 -g1,23039:12005251,18348113 -k1,23039:12005251,18348113:0 -h1,23039:24334933,18348113:0,0,0 -k1,23039:32583029,18348113:8248096 -g1,23039:32583029,18348113 -) -(1,23040:6630773,19014291:25952256,404226,82312 -h1,23040:6630773,19014291:0,0,0 -g1,23040:12637542,19014291 -g1,23040:15798999,19014291 -g1,23040:16431291,19014291 -h1,23040:17063583,19014291:0,0,0 -k1,23040:32583029,19014291:15519446 -g1,23040:32583029,19014291 -) -(1,23060:6630773,19680469:25952256,410518,9436 -(1,23042:6630773,19680469:0,0,0 -g1,23042:6630773,19680469 -g1,23042:6630773,19680469 -g1,23042:6303093,19680469 -(1,23042:6303093,19680469:0,0,0 -) -g1,23042:6630773,19680469 -) -g1,23060:7579210,19680469 -g1,23060:9159939,19680469 -g1,23060:10108376,19680469 -h1,23060:10740667,19680469:0,0,0 -k1,23060:32583029,19680469:21842362 -g1,23060:32583029,19680469 -) -(1,23060:6630773,20346647:25952256,410518,101187 -h1,23060:6630773,20346647:0,0,0 -g1,23060:7579210,20346647 -g1,23060:7895356,20346647 -g1,23060:8527648,20346647 -g1,23060:11372959,20346647 -g1,23060:11689105,20346647 -g1,23060:12005251,20346647 -g1,23060:12637543,20346647 -g1,23060:13902126,20346647 -h1,23060:23386496,20346647:0,0,0 -k1,23060:32583029,20346647:9196533 -g1,23060:32583029,20346647 -) -(1,23060:6630773,21012825:25952256,410518,107478 -h1,23060:6630773,21012825:0,0,0 -g1,23060:7579210,21012825 -g1,23060:7895356,21012825 -g1,23060:8527648,21012825 -g1,23060:11372959,21012825 -g1,23060:11689105,21012825 -g1,23060:12005251,21012825 -g1,23060:12637543,21012825 -g1,23060:14218272,21012825 -h1,23060:15799000,21012825:0,0,0 -k1,23060:32583028,21012825:16784028 -g1,23060:32583028,21012825 -) -(1,23060:6630773,21679003:25952256,410518,31456 -h1,23060:6630773,21679003:0,0,0 -g1,23060:7579210,21679003 -g1,23060:7895356,21679003 -g1,23060:8527648,21679003 -g1,23060:9476085,21679003 -g1,23060:9792231,21679003 -g1,23060:10108377,21679003 -g1,23060:10424523,21679003 -g1,23060:10740669,21679003 -g1,23060:11056815,21679003 -g1,23060:11372961,21679003 -g1,23060:11689107,21679003 -g1,23060:12005253,21679003 -g1,23060:12637545,21679003 -g1,23060:13902128,21679003 -h1,23060:15482856,21679003:0,0,0 -k1,23060:32583028,21679003:17100172 -g1,23060:32583028,21679003 -) -(1,23060:6630773,22345181:25952256,410518,107478 -h1,23060:6630773,22345181:0,0,0 -g1,23060:7579210,22345181 -g1,23060:7895356,22345181 -g1,23060:8527648,22345181 -g1,23060:10424522,22345181 -g1,23060:10740668,22345181 -g1,23060:11056814,22345181 -g1,23060:11372960,22345181 -g1,23060:11689106,22345181 -g1,23060:12005252,22345181 -g1,23060:12637544,22345181 -g1,23060:14218273,22345181 -h1,23060:15799001,22345181:0,0,0 -k1,23060:32583029,22345181:16784028 -g1,23060:32583029,22345181 -) -(1,23060:6630773,23011359:25952256,410518,107478 -h1,23060:6630773,23011359:0,0,0 -g1,23060:7579210,23011359 -g1,23060:7895356,23011359 -g1,23060:8527648,23011359 -g1,23060:11372959,23011359 -g1,23060:11689105,23011359 -g1,23060:12005251,23011359 -g1,23060:12637543,23011359 -g1,23060:14218272,23011359 -h1,23060:15799000,23011359:0,0,0 -k1,23060:32583028,23011359:16784028 -g1,23060:32583028,23011359 -) -(1,23060:6630773,23677537:25952256,410518,50331 -h1,23060:6630773,23677537:0,0,0 -g1,23060:7579210,23677537 -g1,23060:7895356,23677537 -g1,23060:8527648,23677537 -g1,23060:10740668,23677537 -g1,23060:11056814,23677537 -g1,23060:11372960,23677537 -g1,23060:11689106,23677537 -g1,23060:12005252,23677537 -g1,23060:12637544,23677537 -g1,23060:13902127,23677537 -h1,23060:22438060,23677537:0,0,0 -k1,23060:32583029,23677537:10144969 -g1,23060:32583029,23677537 -) -(1,23060:6630773,24343715:25952256,410518,107478 -h1,23060:6630773,24343715:0,0,0 -g1,23060:7579210,24343715 -g1,23060:7895356,24343715 -g1,23060:8527648,24343715 -g1,23060:10740668,24343715 -g1,23060:11056814,24343715 -g1,23060:11372960,24343715 -g1,23060:11689106,24343715 -g1,23060:12005252,24343715 -g1,23060:12637544,24343715 -g1,23060:14218273,24343715 -h1,23060:15799001,24343715:0,0,0 -k1,23060:32583029,24343715:16784028 -g1,23060:32583029,24343715 -) -(1,23060:6630773,25009893:25952256,410518,107478 -h1,23060:6630773,25009893:0,0,0 -g1,23060:7579210,25009893 -g1,23060:7895356,25009893 -g1,23060:8527648,25009893 -g1,23060:10740668,25009893 -g1,23060:11056814,25009893 -g1,23060:11372960,25009893 -g1,23060:11689106,25009893 -g1,23060:12005252,25009893 -g1,23060:13902126,25009893 -g1,23060:14850563,25009893 -h1,23060:15166709,25009893:0,0,0 -k1,23060:32583029,25009893:17416320 -g1,23060:32583029,25009893 -) -(1,23060:6630773,25676071:25952256,410518,107478 -h1,23060:6630773,25676071:0,0,0 -g1,23060:7579210,25676071 -g1,23060:7895356,25676071 -g1,23060:8527648,25676071 -g1,23060:13902125,25676071 -g1,23060:14850562,25676071 -h1,23060:15166708,25676071:0,0,0 -k1,23060:32583028,25676071:17416320 -g1,23060:32583028,25676071 -) -(1,23060:6630773,26342249:25952256,410518,31456 -h1,23060:6630773,26342249:0,0,0 -g1,23060:7579210,26342249 -g1,23060:7895356,26342249 -g1,23060:8527648,26342249 -g1,23060:10424522,26342249 -g1,23060:10740668,26342249 -g1,23060:11056814,26342249 -g1,23060:11372960,26342249 -g1,23060:11689106,26342249 -g1,23060:12005252,26342249 -g1,23060:12637544,26342249 -g1,23060:13902127,26342249 -h1,23060:14218273,26342249:0,0,0 -k1,23060:32583029,26342249:18364756 -g1,23060:32583029,26342249 -) -(1,23060:6630773,27008427:25952256,410518,31456 -h1,23060:6630773,27008427:0,0,0 -g1,23060:7579210,27008427 -g1,23060:7895356,27008427 -g1,23060:8527648,27008427 -g1,23060:10424522,27008427 -g1,23060:10740668,27008427 -g1,23060:11056814,27008427 -g1,23060:11372960,27008427 -g1,23060:11689106,27008427 -g1,23060:12005252,27008427 -g1,23060:12637544,27008427 -g1,23060:13902127,27008427 -h1,23060:14218273,27008427:0,0,0 -k1,23060:32583029,27008427:18364756 -g1,23060:32583029,27008427 -) -(1,23060:6630773,27674605:25952256,410518,31456 -h1,23060:6630773,27674605:0,0,0 -g1,23060:7579210,27674605 -g1,23060:7895356,27674605 -g1,23060:8527648,27674605 -g1,23060:9792231,27674605 -g1,23060:10108377,27674605 -g1,23060:10424523,27674605 -g1,23060:10740669,27674605 -g1,23060:11056815,27674605 -g1,23060:11372961,27674605 -g1,23060:11689107,27674605 -g1,23060:12005253,27674605 -g1,23060:13902127,27674605 -g1,23060:14850564,27674605 -h1,23060:15166710,27674605:0,0,0 -k1,23060:32583030,27674605:17416320 -g1,23060:32583030,27674605 -) -(1,23060:6630773,28340783:25952256,410518,31456 -h1,23060:6630773,28340783:0,0,0 -g1,23060:7579210,28340783 -g1,23060:7895356,28340783 -g1,23060:8527648,28340783 -g1,23060:12005251,28340783 -g1,23060:12637543,28340783 -g1,23060:13902126,28340783 -k1,23060:13902126,28340783:0 -h1,23060:14534417,28340783:0,0,0 -k1,23060:32583029,28340783:18048612 -g1,23060:32583029,28340783 -) -(1,23060:6630773,29006961:25952256,410518,31456 -h1,23060:6630773,29006961:0,0,0 -g1,23060:7579210,29006961 -g1,23060:7895356,29006961 -g1,23060:8527648,29006961 -g1,23060:10424522,29006961 -g1,23060:10740668,29006961 -g1,23060:11056814,29006961 -g1,23060:11372960,29006961 -g1,23060:11689106,29006961 -g1,23060:12005252,29006961 -g1,23060:12637544,29006961 -g1,23060:13902127,29006961 -h1,23060:14218273,29006961:0,0,0 -k1,23060:32583029,29006961:18364756 -g1,23060:32583029,29006961 -) -(1,23060:6630773,29673139:25952256,410518,31456 -h1,23060:6630773,29673139:0,0,0 -g1,23060:7579210,29673139 -g1,23060:7895356,29673139 -g1,23060:8527648,29673139 -g1,23060:9792231,29673139 -g1,23060:10108377,29673139 -g1,23060:10424523,29673139 -g1,23060:10740669,29673139 -g1,23060:11056815,29673139 -g1,23060:11372961,29673139 -g1,23060:11689107,29673139 -g1,23060:12005253,29673139 -g1,23060:13902127,29673139 -g1,23060:14850564,29673139 -h1,23060:15166710,29673139:0,0,0 -k1,23060:32583030,29673139:17416320 -g1,23060:32583030,29673139 -) -(1,23060:6630773,30339317:25952256,410518,82312 -h1,23060:6630773,30339317:0,0,0 -g1,23060:7579210,30339317 -g1,23060:7895356,30339317 -g1,23060:8527648,30339317 -g1,23060:11056814,30339317 -g1,23060:14218271,30339317 -g1,23060:15482854,30339317 -h1,23060:17695874,30339317:0,0,0 -k1,23060:32583029,30339317:14887155 -g1,23060:32583029,30339317 -) -] -) -g1,23061:32583029,30421629 -g1,23061:6630773,30421629 -g1,23061:6630773,30421629 -g1,23061:32583029,30421629 -g1,23061:32583029,30421629 -) -h1,23061:6630773,30618237:0,0,0 -v1,23065:6630773,32088869:0,393216,0 -(1,23066:6630773,35180219:25952256,3484566,0 -g1,23066:6630773,35180219 -g1,23066:6303093,35180219 -r1,23096:6401397,35180219:98304,3484566,0 -g1,23066:6600626,35180219 -g1,23066:6797234,35180219 -[1,23066:6797234,35180219:25785795,3484566,0 -(1,23066:6797234,32521407:25785795,825754,196608 -(1,23065:6797234,32521407:0,825754,196608 -r1,23096:8834093,32521407:2036859,1022362,196608 -k1,23065:6797234,32521407:-2036859 -) -(1,23065:6797234,32521407:2036859,825754,196608 -) -k1,23065:9121994,32521407:287901 -k1,23065:11256502,32521407:327680 -k1,23065:14175018,32521407:287901 -(1,23065:14175018,32521407:0,452978,115847 -r1,23096:17346978,32521407:3171960,568825,115847 -k1,23065:14175018,32521407:-3171960 -) -(1,23065:14175018,32521407:3171960,452978,115847 -k1,23065:14175018,32521407:3277 -h1,23065:17343701,32521407:0,411205,112570 -) -k1,23065:17634879,32521407:287901 -k1,23065:18538818,32521407:287901 -k1,23065:19845804,32521407:287901 -k1,23065:21233399,32521407:287901 -k1,23065:22172727,32521407:287900 -(1,23065:22172727,32521407:0,452978,115847 -r1,23096:23937840,32521407:1765113,568825,115847 -k1,23065:22172727,32521407:-1765113 -) -(1,23065:22172727,32521407:1765113,452978,115847 -k1,23065:22172727,32521407:3277 -h1,23065:23934563,32521407:0,411205,112570 -) -k1,23065:24225741,32521407:287901 -k1,23065:26368966,32521407:287901 -k1,23065:27848312,32521407:287901 -k1,23065:29920103,32521407:287901 -k1,23065:31227089,32521407:287901 -k1,23066:32583029,32521407:0 -) -(1,23066:6797234,33362895:25785795,513147,134348 -k1,23065:9391327,33362895:230865 -k1,23065:11581719,33362895:230866 -k1,23065:13760314,33362895:230865 -k1,23065:17798166,33362895:230866 -k1,23065:18838401,33362895:230865 -k1,23065:20088352,33362895:230866 -k1,23065:23994476,33362895:230865 -k1,23065:25416787,33362895:230866 -k1,23065:26595303,33362895:230865 -k1,23065:28277791,33362895:230866 -k1,23065:29898019,33362895:230865 -k1,23065:32583029,33362895:0 -) -(1,23066:6797234,34204383:25785795,513147,126483 -k1,23065:8272545,34204383:221607 -k1,23065:9598435,34204383:221608 -k1,23065:11105858,34204383:221607 -(1,23065:11105858,34204383:0,452978,115847 -r1,23096:18146649,34204383:7040791,568825,115847 -k1,23065:11105858,34204383:-7040791 -) -(1,23065:11105858,34204383:7040791,452978,115847 -k1,23065:11105858,34204383:3277 -h1,23065:18143372,34204383:0,411205,112570 -) -k1,23065:18368256,34204383:221607 -k1,23065:19537514,34204383:221607 -k1,23065:20114982,34204383:221608 -k1,23065:21986786,34204383:221607 -k1,23065:25133920,34204383:221607 -k1,23065:28003837,34204383:221607 -k1,23065:29715734,34204383:221608 -k1,23065:31107814,34204383:221607 -k1,23065:32583029,34204383:0 -) -(1,23066:6797234,35045871:25785795,513147,134348 -g1,23065:10679586,35045871 -g1,23065:11897900,35045871 -g1,23065:15028554,35045871 -g1,23065:15887075,35045871 -g1,23065:17105389,35045871 -k1,23066:32583029,35045871:13344443 -g1,23066:32583029,35045871 -) -] -g1,23066:32583029,35180219 -) -h1,23066:6630773,35180219:0,0,0 -(1,23069:6630773,36336279:25952256,513147,126483 -h1,23068:6630773,36336279:983040,0,0 -k1,23068:8981822,36336279:171322 -k1,23068:12828403,36336279:171322 -k1,23068:13659017,36336279:171322 -k1,23068:14849424,36336279:171322 -k1,23068:16670287,36336279:171322 -k1,23068:18230971,36336279:171321 -k1,23068:19393853,36336279:171322 -k1,23068:22655198,36336279:171322 -k1,23068:24220471,36336279:171322 -k1,23068:27534900,36336279:171322 -k1,23068:28322260,36336279:171322 -k1,23068:29591310,36336279:171322 -k1,23068:32583029,36336279:0 -) -(1,23069:6630773,37177767:25952256,513147,134348 -k1,23068:9689900,37177767:251565 -k1,23068:12368262,37177767:251564 -k1,23068:13271255,37177767:251565 -k1,23068:13878679,37177767:251564 -k1,23068:15414750,37177767:251565 -k1,23068:16325606,37177767:251564 -k1,23068:19366383,37177767:251565 -k1,23068:20809393,37177767:251565 -k1,23068:24420988,37177767:251564 -k1,23068:25863998,37177767:251565 -k1,23068:27383028,37177767:251564 -k1,23068:27990453,37177767:251565 -k1,23068:29667425,37177767:251564 -k1,23068:31896867,37177767:251565 -k1,23068:32583029,37177767:0 -) -(1,23069:6630773,38019255:25952256,505283,134348 -k1,23068:7251096,38019255:264463 -k1,23068:9097598,38019255:264463 -k1,23068:12880689,38019255:264463 -k1,23068:14341838,38019255:264462 -k1,23068:16317446,38019255:264463 -k1,23068:17573469,38019255:264463 -k1,23068:20616659,38019255:264463 -k1,23068:21567284,38019255:264463 -k1,23068:24806426,38019255:264463 -k1,23068:27440670,38019255:264462 -k1,23068:28658682,38019255:264463 -k1,23068:29901598,38019255:264463 -k1,23068:31563944,38019255:264463 -k1,23068:32583029,38019255:0 -) -(1,23069:6630773,38860743:25952256,513147,122846 -g1,23068:9671643,38860743 -g1,23068:11027582,38860743 -g1,23068:11839573,38860743 -g1,23068:12394662,38860743 -g1,23068:14019299,38860743 -g1,23068:15612479,38860743 -g1,23068:18507204,38860743 -(1,23068:18507204,38860743:0,452978,122846 -r1,23096:22382588,38860743:3875384,575824,122846 -k1,23068:18507204,38860743:-3875384 -) -(1,23068:18507204,38860743:3875384,452978,122846 -k1,23068:18507204,38860743:3277 -h1,23068:22379311,38860743:0,411205,112570 -) -k1,23069:32583029,38860743:10026771 -g1,23069:32583029,38860743 -) -v1,23071:6630773,39841493:0,393216,0 -(1,23093:6630773,45510161:25952256,6061884,196608 -g1,23093:6630773,45510161 -g1,23093:6630773,45510161 -g1,23093:6434165,45510161 -(1,23093:6434165,45510161:0,6061884,196608 -r1,23096:32779637,45510161:26345472,6258492,196608 -k1,23093:6434165,45510161:-26345472 -) -(1,23093:6434165,45510161:26345472,6061884,196608 -[1,23093:6630773,45510161:25952256,5865276,0 -(1,23073:6630773,40049111:25952256,404226,107478 -(1,23072:6630773,40049111:0,0,0 -g1,23072:6630773,40049111 -g1,23072:6630773,40049111 -g1,23072:6303093,40049111 -(1,23072:6303093,40049111:0,0,0 -) -g1,23072:6630773,40049111 -) -g1,23073:9476084,40049111 -g1,23073:10424522,40049111 -g1,23073:18328165,40049111 -h1,23073:20541185,40049111:0,0,0 -k1,23073:32583029,40049111:12041844 -g1,23073:32583029,40049111 -) -(1,23074:6630773,40715289:25952256,404226,76021 -h1,23074:6630773,40715289:0,0,0 -k1,23074:6630773,40715289:0 -h1,23074:11056813,40715289:0,0,0 -k1,23074:32583029,40715289:21526216 -g1,23074:32583029,40715289 -) -(1,23078:6630773,41130444:25952256,404226,76021 -(1,23076:6630773,41130444:0,0,0 -g1,23076:6630773,41130444 -g1,23076:6630773,41130444 -g1,23076:6303093,41130444 -(1,23076:6303093,41130444:0,0,0 -) -g1,23076:6630773,41130444 -) -g1,23078:7579210,41130444 -g1,23078:8843793,41130444 -g1,23078:11372959,41130444 -g1,23078:13902125,41130444 -g1,23078:16431291,41130444 -g1,23078:18960457,41130444 -g1,23078:21489623,41130444 -k1,23078:21489623,41130444:0 -h1,23078:23702643,41130444:0,0,0 -k1,23078:32583029,41130444:8880386 -g1,23078:32583029,41130444 -) -(1,23080:6630773,42200959:25952256,404226,107478 -(1,23079:6630773,42200959:0,0,0 -g1,23079:6630773,42200959 -g1,23079:6630773,42200959 -g1,23079:6303093,42200959 -(1,23079:6303093,42200959:0,0,0 -) -g1,23079:6630773,42200959 -) -g1,23080:9792230,42200959 -g1,23080:10740668,42200959 -g1,23080:11056814,42200959 -g1,23080:18960457,42200959 -h1,23080:20857331,42200959:0,0,0 -k1,23080:32583029,42200959:11725698 -g1,23080:32583029,42200959 -) -(1,23081:6630773,42867137:25952256,404226,107478 -h1,23081:6630773,42867137:0,0,0 -k1,23081:6630773,42867137:0 -h1,23081:11372958,42867137:0,0,0 -k1,23081:32583030,42867137:21210072 -g1,23081:32583030,42867137 -) -(1,23085:6630773,43282292:25952256,404226,76021 -(1,23083:6630773,43282292:0,0,0 -g1,23083:6630773,43282292 -g1,23083:6630773,43282292 -g1,23083:6303093,43282292 -(1,23083:6303093,43282292:0,0,0 -) -g1,23083:6630773,43282292 -) -g1,23085:7579210,43282292 -g1,23085:8843793,43282292 -g1,23085:10740667,43282292 -g1,23085:12637541,43282292 -g1,23085:14534415,43282292 -g1,23085:16431289,43282292 -g1,23085:18328163,43282292 -h1,23085:19908891,43282292:0,0,0 -k1,23085:32583029,43282292:12674138 -g1,23085:32583029,43282292 -) -(1,23087:6630773,44352807:25952256,404226,107478 -(1,23086:6630773,44352807:0,0,0 -g1,23086:6630773,44352807 -g1,23086:6630773,44352807 -g1,23086:6303093,44352807 -(1,23086:6303093,44352807:0,0,0 -) -g1,23086:6630773,44352807 -) -g1,23087:9476084,44352807 -g1,23087:10424522,44352807 -g1,23087:18328165,44352807 -h1,23087:20225039,44352807:0,0,0 -k1,23087:32583029,44352807:12357990 -g1,23087:32583029,44352807 -) -(1,23088:6630773,45018985:25952256,404226,76021 -h1,23088:6630773,45018985:0,0,0 -k1,23088:6630773,45018985:0 -h1,23088:11056813,45018985:0,0,0 -k1,23088:32583029,45018985:21526216 -g1,23088:32583029,45018985 -) -(1,23092:6630773,45434140:25952256,404226,76021 -(1,23090:6630773,45434140:0,0,0 -g1,23090:6630773,45434140 -g1,23090:6630773,45434140 -g1,23090:6303093,45434140 -(1,23090:6303093,45434140:0,0,0 -) -g1,23090:6630773,45434140 -) -g1,23092:7579210,45434140 -g1,23092:8843793,45434140 -g1,23092:11372959,45434140 -g1,23092:13902125,45434140 -g1,23092:16431291,45434140 -g1,23092:18960457,45434140 -g1,23092:21489623,45434140 -h1,23092:23702643,45434140:0,0,0 -k1,23092:32583029,45434140:8880386 -g1,23092:32583029,45434140 -) -] -) -g1,23093:32583029,45510161 -g1,23093:6630773,45510161 -g1,23093:6630773,45510161 -g1,23093:32583029,45510161 -g1,23093:32583029,45510161 -) -h1,23093:6630773,45706769:0,0,0 -] -(1,23096:32583029,45706769:0,0,0 -g1,23096:32583029,45706769 +) ) ) ] -(1,23096:6630773,47279633:25952256,0,0 -h1,23096:6630773,47279633:25952256,0,0 -) -] -(1,23096:4262630,4025873:0,0,0 -[1,23096:-473656,4025873:0,0,0 -(1,23096:-473656,-710413:0,0,0 -(1,23096:-473656,-710413:0,0,0 -g1,23096:-473656,-710413 +[1,23470:3078558,4812305:0,0,0 +(1,23470:3078558,2439708:0,1703936,0 +g1,23470:29030814,2439708 +g1,23470:36135244,2439708 +(1,21670:36135244,2439708:1720320,1703936,0 +(1,21670:36135244,2439708:16384,1703936,0 +[1,21670:36135244,2439708:25952256,1703936,0 +(1,21670:36135244,1915420:25952256,1179648,0 +(1,21670:36135244,1915420:16384,1179648,0 +r1,23470:36151628,1915420:16384,1179648,0 ) -g1,23096:-473656,-710413 +k1,21670:62087500,1915420:25935872 +g1,21670:62087500,1915420 ) ] ) +g1,21670:36675916,2439708 +(1,21670:36675916,2439708:1179648,16384,0 +r1,23470:37855564,2439708:1179648,16384,0 +) +) +k1,23470:3078556,2439708:-34777008 +) ] -!26566 -}419 -Input:3711:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3712:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!200 -{420 -[1,23166:4262630,47279633:28320399,43253760,0 -(1,23166:4262630,4025873:0,0,0 -[1,23166:-473656,4025873:0,0,0 -(1,23166:-473656,-710413:0,0,0 -(1,23166:-473656,-644877:0,0,0 -k1,23166:-473656,-644877:-65536 +[1,23470:3078558,4812305:0,0,0 +(1,23470:3078558,49800853:0,16384,2228224 +k1,23470:1358238,49800853:-1720320 +(1,21670:1358238,49800853:1720320,16384,2228224 +(1,21670:1358238,49800853:1179648,16384,0 +r1,23470:2537886,49800853:1179648,16384,0 ) -(1,23166:-473656,4736287:0,0,0 -k1,23166:-473656,4736287:5209943 +g1,21670:3062174,49800853 +(1,21670:3062174,52029077:16384,1703936,0 +[1,21670:3062174,52029077:25952256,1703936,0 +(1,21670:3062174,51504789:25952256,1179648,0 +(1,21670:3062174,51504789:16384,1179648,0 +r1,23470:3078558,51504789:16384,1179648,0 +) +k1,21670:29014430,51504789:25935872 +g1,21670:29014430,51504789 +) +] +) +) +) +] +[1,23470:3078558,4812305:0,0,0 +(1,23470:3078558,49800853:0,16384,2228224 +g1,23470:29030814,49800853 +g1,23470:36135244,49800853 +(1,21670:36135244,49800853:1720320,16384,2228224 +(1,21670:36135244,52029077:16384,1703936,0 +[1,21670:36135244,52029077:25952256,1703936,0 +(1,21670:36135244,51504789:25952256,1179648,0 +(1,21670:36135244,51504789:16384,1179648,0 +r1,23470:36151628,51504789:16384,1179648,0 +) +k1,21670:62087500,51504789:25935872 +g1,21670:62087500,51504789 +) +] +) +g1,21670:36675916,49800853 +(1,21670:36675916,49800853:1179648,16384,0 +r1,23470:37855564,49800853:1179648,16384,0 +) +) +k1,23470:3078556,49800853:-34777008 +) +] +g1,23470:6630773,4812305 +g1,23470:6630773,4812305 +g1,23470:9731936,4812305 +g1,23470:12175773,4812305 +g1,23470:13803032,4812305 +k1,23470:31387652,4812305:17584620 +) +) +] +[1,23470:6630773,45706769:25952256,40108032,0 +(1,23470:6630773,45706769:25952256,40108032,0 +(1,23470:6630773,45706769:0,0,0 +g1,23470:6630773,45706769 +) +[1,23470:6630773,45706769:25952256,40108032,0 +v1,23410:6630773,6254097:0,393216,0 +(1,23410:6630773,7957884:25952256,2097003,196608 +g1,23410:6630773,7957884 +g1,23410:6630773,7957884 +g1,23410:6434165,7957884 +(1,23410:6434165,7957884:0,2097003,196608 +r1,23470:32779637,7957884:26345472,2293611,196608 +k1,23410:6434165,7957884:-26345472 +) +(1,23410:6434165,7957884:26345472,2097003,196608 +[1,23410:6630773,7957884:25952256,1900395,0 +(1,23409:6630773,6481928:25952256,424439,112852 +h1,23409:6630773,6481928:0,0,0 +g1,23409:7626635,6481928 +g1,23409:7958589,6481928 +g1,23409:8290543,6481928 +g1,23409:10282267,6481928 +g1,23409:12273991,6481928 +g1,23409:12605945,6481928 +g1,23409:12937899,6481928 +g1,23409:13269853,6481928 +g1,23409:13601807,6481928 +g1,23409:13933761,6481928 +g1,23409:14265715,6481928 +g1,23409:14597669,6481928 +g1,23409:14929623,6481928 +g1,23409:15261577,6481928 +g1,23409:17253301,6481928 +g1,23409:17585255,6481928 +g1,23409:17917209,6481928 +g1,23409:18249163,6481928 +g1,23409:20240887,6481928 +g1,23409:22232611,6481928 +k1,23409:22232611,6481928:0 +h1,23409:23892381,6481928:0,0,0 +k1,23409:32583029,6481928:8690648 +g1,23409:32583029,6481928 +) +(1,23409:6630773,7166783:25952256,407923,106246 +h1,23409:6630773,7166783:0,0,0 +g1,23409:7626635,7166783 +g1,23409:8290543,7166783 +g1,23409:8622497,7166783 +g1,23409:8954451,7166783 +g1,23409:9286405,7166783 +g1,23409:9618359,7166783 +g1,23409:10282267,7166783 +g1,23409:12273991,7166783 +g1,23409:12605945,7166783 +g1,23409:12937899,7166783 +g1,23409:13269853,7166783 +g1,23409:13601807,7166783 +g1,23409:13933761,7166783 +g1,23409:14265715,7166783 +g1,23409:14597669,7166783 +g1,23409:14929623,7166783 +g1,23409:15261577,7166783 +g1,23409:18249162,7166783 +g1,23409:18581116,7166783 +g1,23409:18913070,7166783 +g1,23409:19245024,7166783 +g1,23409:19576978,7166783 +g1,23409:20240886,7166783 +g1,23409:20572840,7166783 +g1,23409:20904794,7166783 +g1,23409:21236748,7166783 +g1,23409:22232610,7166783 +h1,23409:23892380,7166783:0,0,0 +k1,23409:32583029,7166783:8690649 +g1,23409:32583029,7166783 +) +(1,23409:6630773,7851638:25952256,424439,106246 +h1,23409:6630773,7851638:0,0,0 +g1,23409:7626635,7851638 +g1,23409:8290543,7851638 +g1,23409:8622497,7851638 +g1,23409:8954451,7851638 +g1,23409:9286405,7851638 +g1,23409:9618359,7851638 +g1,23409:10282267,7851638 +g1,23409:15261576,7851638 +g1,23409:18249161,7851638 +g1,23409:18581115,7851638 +g1,23409:18913069,7851638 +g1,23409:19245023,7851638 +g1,23409:19576977,7851638 +g1,23409:20240885,7851638 +g1,23409:20572839,7851638 +g1,23409:20904793,7851638 +g1,23409:21236747,7851638 +g1,23409:21568701,7851638 +g1,23409:22232609,7851638 +h1,23409:23892379,7851638:0,0,0 +k1,23409:32583029,7851638:8690650 +g1,23409:32583029,7851638 +) +] +) +g1,23410:32583029,7957884 +g1,23410:6630773,7957884 +g1,23410:6630773,7957884 +g1,23410:32583029,7957884 +g1,23410:32583029,7957884 +) +h1,23410:6630773,8154492:0,0,0 +(1,23415:6630773,9019572:25952256,513147,134348 +h1,23413:6630773,9019572:983040,0,0 +k1,23413:8804152,9019572:236790 +k1,23413:11244918,9019572:236790 +k1,23413:11837567,9019572:236789 +k1,23413:14154470,9019572:236790 +k1,23413:15050552,9019572:236790 +k1,23413:16306427,9019572:236790 +k1,23413:17932579,9019572:236789 +k1,23413:19436835,9019572:236790 +k1,23413:20029485,9019572:236790 +k1,23413:22077690,9019572:236790 +k1,23413:22930517,9019572:236789 +k1,23413:24556015,9019572:236790 +k1,23413:25682784,9019572:236790 +k1,23413:27366609,9019572:236790 +k1,23413:29957451,9019572:236789 +k1,23413:31385686,9019572:236790 +k1,23413:32583029,9019572:0 +) +(1,23415:6630773,9884652:25952256,513147,134348 +g1,23414:7849087,9884652 +g1,23414:10479702,9884652 +g1,23414:12414324,9884652 +g1,23414:12969413,9884652 +g1,23414:14558661,9884652 +g1,23414:17504504,9884652 +g1,23414:19271354,9884652 +g1,23414:21633270,9884652 +g1,23414:23023944,9884652 +g1,23414:26007798,9884652 +g1,23414:27774648,9884652 +k1,23415:32583029,9884652:2662078 +g1,23415:32583029,9884652 +) +v1,23417:6630773,10569507:0,393216,0 +(1,23434:6630773,18471723:25952256,8295432,196608 +g1,23434:6630773,18471723 +g1,23434:6630773,18471723 +g1,23434:6434165,18471723 +(1,23434:6434165,18471723:0,8295432,196608 +r1,23470:32779637,18471723:26345472,8492040,196608 +k1,23434:6434165,18471723:-26345472 +) +(1,23434:6434165,18471723:26345472,8295432,196608 +[1,23434:6630773,18471723:25952256,8098824,0 +(1,23419:6630773,10797338:25952256,424439,106246 +(1,23418:6630773,10797338:0,0,0 +g1,23418:6630773,10797338 +g1,23418:6630773,10797338 +g1,23418:6303093,10797338 +(1,23418:6303093,10797338:0,0,0 +) +g1,23418:6630773,10797338 +) +k1,23419:6630773,10797338:0 +k1,23419:6630773,10797338:0 +h1,23419:15925483,10797338:0,0,0 +k1,23419:32583029,10797338:16657546 +g1,23419:32583029,10797338 +) +(1,23420:6630773,11482193:25952256,431045,112852 +h1,23420:6630773,11482193:0,0,0 +g1,23420:6962727,11482193 +g1,23420:7294681,11482193 +g1,23420:7626635,11482193 +g1,23420:7958589,11482193 +g1,23420:8290543,11482193 +g1,23420:8622497,11482193 +g1,23420:8954451,11482193 +g1,23420:9286405,11482193 +g1,23420:9618359,11482193 +g1,23420:9950313,11482193 +g1,23420:10282267,11482193 +g1,23420:10614221,11482193 +g1,23420:10946175,11482193 +g1,23420:12273991,11482193 +g1,23420:12937899,11482193 +g1,23420:16921347,11482193 +g1,23420:17917209,11482193 +g1,23420:18913071,11482193 +k1,23420:18913071,11482193:0 +h1,23420:19576979,11482193:0,0,0 +k1,23420:32583029,11482193:13006050 +g1,23420:32583029,11482193 +) +(1,23421:6630773,12167048:25952256,431045,112852 +h1,23421:6630773,12167048:0,0,0 +g1,23421:6962727,12167048 +g1,23421:7294681,12167048 +g1,23421:7626635,12167048 +g1,23421:7958589,12167048 +g1,23421:8290543,12167048 +g1,23421:8622497,12167048 +g1,23421:8954451,12167048 +g1,23421:9286405,12167048 +g1,23421:9618359,12167048 +g1,23421:9950313,12167048 +g1,23421:10282267,12167048 +g1,23421:10614221,12167048 +g1,23421:10946175,12167048 +g1,23421:12273991,12167048 +g1,23421:12937899,12167048 +g1,23421:16921347,12167048 +g1,23421:17917209,12167048 +g1,23421:18913071,12167048 +g1,23421:20240887,12167048 +k1,23421:20240887,12167048:0 +h1,23421:21568703,12167048:0,0,0 +k1,23421:32583029,12167048:11014326 +g1,23421:32583029,12167048 +) +(1,23422:6630773,12851903:25952256,424439,106246 +h1,23422:6630773,12851903:0,0,0 +g1,23422:6962727,12851903 +g1,23422:7294681,12851903 +g1,23422:11610083,12851903 +g1,23422:12273991,12851903 +g1,23422:13269853,12851903 +g1,23422:15261577,12851903 +g1,23422:15925485,12851903 +g1,23422:23892381,12851903 +g1,23422:24556289,12851903 +g1,23422:28871690,12851903 +k1,23422:28871690,12851903:0 +h1,23422:30199506,12851903:0,0,0 +k1,23422:32583029,12851903:2383523 +g1,23422:32583029,12851903 +) +(1,23423:6630773,13536758:25952256,424439,86428 +h1,23423:6630773,13536758:0,0,0 +g1,23423:6962727,13536758 +g1,23423:7294681,13536758 +g1,23423:11610083,13536758 +g1,23423:12273991,13536758 +g1,23423:13269853,13536758 +k1,23423:13269853,13536758:0 +h1,23423:15261577,13536758:0,0,0 +k1,23423:32583029,13536758:17321452 +g1,23423:32583029,13536758 +) +(1,23433:6630773,14352685:25952256,424439,9908 +(1,23425:6630773,14352685:0,0,0 +g1,23425:6630773,14352685 +g1,23425:6630773,14352685 +g1,23425:6303093,14352685 +(1,23425:6303093,14352685:0,0,0 +) +g1,23425:6630773,14352685 +) +g1,23433:7626635,14352685 +g1,23433:8290543,14352685 +g1,23433:8954451,14352685 +g1,23433:11610083,14352685 +g1,23433:12605945,14352685 +g1,23433:13269853,14352685 +h1,23433:13601807,14352685:0,0,0 +k1,23433:32583029,14352685:18981222 +g1,23433:32583029,14352685 +) +(1,23433:6630773,15037540:25952256,424439,106246 +h1,23433:6630773,15037540:0,0,0 +g1,23433:7626635,15037540 +g1,23433:7958589,15037540 +g1,23433:8290543,15037540 +g1,23433:10282267,15037540 +g1,23433:15261576,15037540 +g1,23433:15593530,15037540 +g1,23433:15925484,15037540 +g1,23433:17253300,15037540 +g1,23433:17585254,15037540 +g1,23433:17917208,15037540 +g1,23433:19245024,15037540 +h1,23433:20904794,15037540:0,0,0 +k1,23433:32583029,15037540:11678235 +g1,23433:32583029,15037540 +) +(1,23433:6630773,15722395:25952256,424439,6605 +h1,23433:6630773,15722395:0,0,0 +g1,23433:7626635,15722395 +g1,23433:7958589,15722395 +g1,23433:8290543,15722395 +g1,23433:10282267,15722395 +g1,23433:10614221,15722395 +g1,23433:10946175,15722395 +g1,23433:11278129,15722395 +g1,23433:11610083,15722395 +g1,23433:11942037,15722395 +g1,23433:12273991,15722395 +g1,23433:12605945,15722395 +g1,23433:12937899,15722395 +g1,23433:13269853,15722395 +g1,23433:15261577,15722395 +g1,23433:17253301,15722395 +g1,23433:19245025,15722395 +k1,23433:19245025,15722395:0 +h1,23433:20904795,15722395:0,0,0 +k1,23433:32583029,15722395:11678234 +g1,23433:32583029,15722395 +) +(1,23433:6630773,16407250:25952256,407923,9908 +h1,23433:6630773,16407250:0,0,0 +g1,23433:7626635,16407250 +g1,23433:8290543,16407250 +g1,23433:8622497,16407250 +g1,23433:10282267,16407250 +g1,23433:10614221,16407250 +g1,23433:10946175,16407250 +g1,23433:11278129,16407250 +g1,23433:11610083,16407250 +g1,23433:11942037,16407250 +g1,23433:12273991,16407250 +g1,23433:15261577,16407250 +g1,23433:15593531,16407250 +g1,23433:17253301,16407250 +g1,23433:17585255,16407250 +g1,23433:19245025,16407250 +g1,23433:19576979,16407250 +g1,23433:19908933,16407250 +g1,23433:20240887,16407250 +h1,23433:20904795,16407250:0,0,0 +k1,23433:32583029,16407250:11678234 +g1,23433:32583029,16407250 +) +(1,23433:6630773,17092105:25952256,407923,9908 +h1,23433:6630773,17092105:0,0,0 +g1,23433:7626635,17092105 +g1,23433:8290543,17092105 +g1,23433:8622497,17092105 +g1,23433:10282267,17092105 +g1,23433:10614221,17092105 +g1,23433:10946175,17092105 +g1,23433:11278129,17092105 +g1,23433:11610083,17092105 +g1,23433:11942037,17092105 +g1,23433:12273991,17092105 +g1,23433:15261577,17092105 +g1,23433:15593531,17092105 +g1,23433:17253301,17092105 +g1,23433:17585255,17092105 +g1,23433:19245025,17092105 +g1,23433:19576979,17092105 +g1,23433:19908933,17092105 +g1,23433:20240887,17092105 +g1,23433:20572841,17092105 +h1,23433:20904795,17092105:0,0,0 +k1,23433:32583029,17092105:11678234 +g1,23433:32583029,17092105 +) +(1,23433:6630773,17776960:25952256,407923,9908 +h1,23433:6630773,17776960:0,0,0 +g1,23433:7626635,17776960 +g1,23433:8290543,17776960 +g1,23433:8622497,17776960 +g1,23433:10282267,17776960 +g1,23433:10614221,17776960 +g1,23433:10946175,17776960 +g1,23433:11278129,17776960 +g1,23433:11610083,17776960 +g1,23433:11942037,17776960 +g1,23433:12273991,17776960 +g1,23433:15261577,17776960 +g1,23433:15593531,17776960 +g1,23433:17253301,17776960 +g1,23433:17585255,17776960 +g1,23433:19245025,17776960 +g1,23433:19576979,17776960 +g1,23433:19908933,17776960 +g1,23433:20240887,17776960 +g1,23433:20572841,17776960 +h1,23433:20904795,17776960:0,0,0 +k1,23433:32583029,17776960:11678234 +g1,23433:32583029,17776960 +) +(1,23433:6630773,18461815:25952256,424439,9908 +h1,23433:6630773,18461815:0,0,0 +g1,23433:7626635,18461815 +g1,23433:8290543,18461815 +g1,23433:8954451,18461815 +g1,23433:9618359,18461815 +g1,23433:11278129,18461815 +h1,23433:12605945,18461815:0,0,0 +k1,23433:32583029,18461815:19977084 +g1,23433:32583029,18461815 +) +] +) +g1,23434:32583029,18471723 +g1,23434:6630773,18471723 +g1,23434:6630773,18471723 +g1,23434:32583029,18471723 +g1,23434:32583029,18471723 +) +h1,23434:6630773,18668331:0,0,0 +(1,23438:6630773,19533411:25952256,513147,134348 +h1,23437:6630773,19533411:983040,0,0 +k1,23437:8476015,19533411:234367 +k1,23437:9913623,19533411:234367 +k1,23437:12389320,19533411:234366 +k1,23437:15458774,19533411:234367 +k1,23437:16561493,19533411:234367 +k1,23437:18999836,19533411:234367 +k1,23437:20623565,19533411:234366 +k1,23437:21805583,19533411:234367 +k1,23437:22806066,19533411:234367 +k1,23437:24324939,19533411:234367 +k1,23437:26577814,19533411:234366 +k1,23437:28556749,19533411:234367 +k1,23437:31753999,19533411:234367 +k1,23437:32583029,19533411:0 +) +(1,23438:6630773,20398491:25952256,513147,126483 +k1,23437:9201791,20398491:213688 +k1,23437:10618720,20398491:213688 +k1,23437:11700759,20398491:213687 +k1,23437:13444713,20398491:213688 +k1,23437:15034002,20398491:213688 +k1,23437:15899118,20398491:213688 +k1,23437:17585399,20398491:213687 +k1,23437:18818172,20398491:213688 +k1,23437:20223305,20398491:213688 +k1,23437:21384644,20398491:213688 +(1,23437:21384644,20398491:0,452978,115847 +r1,23470:22446333,20398491:1061689,568825,115847 +k1,23437:21384644,20398491:-1061689 +) +(1,23437:21384644,20398491:1061689,452978,115847 +k1,23437:21384644,20398491:3277 +h1,23437:22443056,20398491:0,411205,112570 +) +k1,23437:22660020,20398491:213687 +k1,23437:24441329,20398491:213688 +k1,23437:25674102,20398491:213688 +k1,23437:27858458,20398491:213688 +k1,23437:30101140,20398491:213687 +k1,23437:31511515,20398491:213688 +k1,23438:32583029,20398491:0 +) +(1,23438:6630773,21263571:25952256,513147,126483 +k1,23437:7770861,21263571:187195 +k1,23437:8489552,21263571:187194 +k1,23437:12034156,21263571:187195 +k1,23437:16538207,21263571:187194 +k1,23437:17916847,21263571:187195 +k1,23437:20817232,21263571:187194 +k1,23437:21952078,21263571:187195 +k1,23437:23158357,21263571:187194 +k1,23437:25197599,21263571:187195 +k1,23437:29060052,21263571:187194 +k1,23437:31386342,21263571:187195 +k1,23437:32583029,21263571:0 +) +(1,23438:6630773,22128651:25952256,513147,134348 +g1,23437:9737179,22128651 +g1,23437:10595700,22128651 +g1,23437:11814014,22128651 +g1,23437:14444629,22128651 +g1,23437:17201728,22128651 +k1,23438:32583029,22128651:11716528 +g1,23438:32583029,22128651 +) +v1,23440:6630773,22813506:0,393216,0 +(1,23456:6630773,30107387:25952256,7687097,196608 +g1,23456:6630773,30107387 +g1,23456:6630773,30107387 +g1,23456:6434165,30107387 +(1,23456:6434165,30107387:0,7687097,196608 +r1,23470:32779637,30107387:26345472,7883705,196608 +k1,23456:6434165,30107387:-26345472 +) +(1,23456:6434165,30107387:26345472,7687097,196608 +[1,23456:6630773,30107387:25952256,7490489,0 +(1,23442:6630773,23041337:25952256,424439,106246 +(1,23441:6630773,23041337:0,0,0 +g1,23441:6630773,23041337 +g1,23441:6630773,23041337 +g1,23441:6303093,23041337 +(1,23441:6303093,23041337:0,0,0 +) +g1,23441:6630773,23041337 +) +k1,23442:6630773,23041337:0 +k1,23442:6630773,23041337:0 +h1,23442:15925483,23041337:0,0,0 +k1,23442:32583029,23041337:16657546 +g1,23442:32583029,23041337 +) +(1,23443:6630773,23726192:25952256,431045,112852 +h1,23443:6630773,23726192:0,0,0 +g1,23443:6962727,23726192 +g1,23443:7294681,23726192 +g1,23443:7626635,23726192 +g1,23443:7958589,23726192 +g1,23443:8290543,23726192 +g1,23443:8622497,23726192 +g1,23443:8954451,23726192 +g1,23443:9286405,23726192 +g1,23443:9618359,23726192 +g1,23443:9950313,23726192 +g1,23443:10282267,23726192 +g1,23443:10614221,23726192 +g1,23443:10946175,23726192 +g1,23443:12273991,23726192 +g1,23443:12937899,23726192 +g1,23443:16921347,23726192 +g1,23443:17917209,23726192 +g1,23443:18913071,23726192 +g1,23443:19908933,23726192 +k1,23443:19908933,23726192:0 +h1,23443:21236749,23726192:0,0,0 +k1,23443:32583029,23726192:11346280 +g1,23443:32583029,23726192 +) +(1,23444:6630773,24411047:25952256,424439,106246 +h1,23444:6630773,24411047:0,0,0 +g1,23444:6962727,24411047 +g1,23444:7294681,24411047 +g1,23444:11610083,24411047 +g1,23444:12273991,24411047 +g1,23444:13269853,24411047 +g1,23444:15261577,24411047 +g1,23444:15925485,24411047 +g1,23444:23892381,24411047 +g1,23444:24556289,24411047 +g1,23444:28871690,24411047 +k1,23444:28871690,24411047:0 +h1,23444:30199506,24411047:0,0,0 +k1,23444:32583029,24411047:2383523 +g1,23444:32583029,24411047 +) +(1,23445:6630773,25095902:25952256,424439,86428 +h1,23445:6630773,25095902:0,0,0 +g1,23445:6962727,25095902 +g1,23445:7294681,25095902 +g1,23445:11610083,25095902 +g1,23445:12273991,25095902 +g1,23445:13269853,25095902 +k1,23445:13269853,25095902:0 +h1,23445:15261577,25095902:0,0,0 +k1,23445:32583029,25095902:17321452 +g1,23445:32583029,25095902 +) +(1,23455:6630773,25911829:25952256,424439,86428 +(1,23447:6630773,25911829:0,0,0 +g1,23447:6630773,25911829 +g1,23447:6630773,25911829 +g1,23447:6303093,25911829 +(1,23447:6303093,25911829:0,0,0 +) +g1,23447:6630773,25911829 +) +g1,23455:7626635,25911829 +g1,23455:8290543,25911829 +g1,23455:8954451,25911829 +g1,23455:11610083,25911829 +g1,23455:13601807,25911829 +g1,23455:14265715,25911829 +h1,23455:14597669,25911829:0,0,0 +k1,23455:32583029,25911829:17985360 +g1,23455:32583029,25911829 +) +(1,23455:6630773,26596684:25952256,424439,106246 +h1,23455:6630773,26596684:0,0,0 +g1,23455:7626635,26596684 +g1,23455:7958589,26596684 +g1,23455:8290543,26596684 +g1,23455:10282267,26596684 +g1,23455:15261576,26596684 +g1,23455:15593530,26596684 +g1,23455:15925484,26596684 +g1,23455:17253300,26596684 +g1,23455:17585254,26596684 +g1,23455:17917208,26596684 +g1,23455:19245024,26596684 +h1,23455:20904794,26596684:0,0,0 +k1,23455:32583029,26596684:11678235 +g1,23455:32583029,26596684 +) +(1,23455:6630773,27281539:25952256,424439,6605 +h1,23455:6630773,27281539:0,0,0 +g1,23455:7626635,27281539 +g1,23455:7958589,27281539 +g1,23455:8290543,27281539 +g1,23455:10282267,27281539 +g1,23455:10614221,27281539 +g1,23455:10946175,27281539 +g1,23455:11278129,27281539 +g1,23455:11610083,27281539 +g1,23455:11942037,27281539 +g1,23455:12273991,27281539 +g1,23455:12605945,27281539 +g1,23455:12937899,27281539 +g1,23455:13269853,27281539 +g1,23455:15261577,27281539 +g1,23455:17253301,27281539 +g1,23455:19245025,27281539 +k1,23455:19245025,27281539:0 +h1,23455:20904795,27281539:0,0,0 +k1,23455:32583029,27281539:11678234 +g1,23455:32583029,27281539 +) +(1,23455:6630773,27966394:25952256,407923,9908 +h1,23455:6630773,27966394:0,0,0 +g1,23455:7626635,27966394 +g1,23455:8290543,27966394 +g1,23455:8622497,27966394 +g1,23455:10282267,27966394 +g1,23455:10614221,27966394 +g1,23455:10946175,27966394 +g1,23455:11278129,27966394 +g1,23455:11610083,27966394 +g1,23455:11942037,27966394 +g1,23455:12273991,27966394 +g1,23455:15261577,27966394 +g1,23455:15593531,27966394 +g1,23455:17253301,27966394 +g1,23455:17585255,27966394 +g1,23455:19245025,27966394 +g1,23455:19576979,27966394 +g1,23455:19908933,27966394 +g1,23455:20240887,27966394 +h1,23455:20904795,27966394:0,0,0 +k1,23455:32583029,27966394:11678234 +g1,23455:32583029,27966394 +) +(1,23455:6630773,28651249:25952256,407923,9908 +h1,23455:6630773,28651249:0,0,0 +g1,23455:7626635,28651249 +g1,23455:8290543,28651249 +g1,23455:8622497,28651249 +g1,23455:10282267,28651249 +g1,23455:10614221,28651249 +g1,23455:10946175,28651249 +g1,23455:11278129,28651249 +g1,23455:11610083,28651249 +g1,23455:11942037,28651249 +g1,23455:12273991,28651249 +g1,23455:15261577,28651249 +g1,23455:15593531,28651249 +g1,23455:17253301,28651249 +g1,23455:17585255,28651249 +g1,23455:19245025,28651249 +g1,23455:19576979,28651249 +g1,23455:19908933,28651249 +g1,23455:20240887,28651249 +h1,23455:20904795,28651249:0,0,0 +k1,23455:32583029,28651249:11678234 +g1,23455:32583029,28651249 +) +(1,23455:6630773,29336104:25952256,407923,9908 +h1,23455:6630773,29336104:0,0,0 +g1,23455:7626635,29336104 +g1,23455:8290543,29336104 +g1,23455:8622497,29336104 +g1,23455:10282267,29336104 +g1,23455:10614221,29336104 +g1,23455:10946175,29336104 +g1,23455:11278129,29336104 +g1,23455:11610083,29336104 +g1,23455:11942037,29336104 +g1,23455:12273991,29336104 +g1,23455:15261577,29336104 +g1,23455:15593531,29336104 +g1,23455:17253301,29336104 +g1,23455:17585255,29336104 +g1,23455:19245025,29336104 +g1,23455:19576979,29336104 +g1,23455:19908933,29336104 +g1,23455:20240887,29336104 +h1,23455:20904795,29336104:0,0,0 +k1,23455:32583029,29336104:11678234 +g1,23455:32583029,29336104 +) +(1,23455:6630773,30020959:25952256,424439,86428 +h1,23455:6630773,30020959:0,0,0 +g1,23455:7626635,30020959 +g1,23455:8290543,30020959 +g1,23455:8954451,30020959 +g1,23455:10946175,30020959 +g1,23455:12605945,30020959 +h1,23455:13933761,30020959:0,0,0 +k1,23455:32583029,30020959:18649268 +g1,23455:32583029,30020959 +) +] +) +g1,23456:32583029,30107387 +g1,23456:6630773,30107387 +g1,23456:6630773,30107387 +g1,23456:32583029,30107387 +g1,23456:32583029,30107387 +) +h1,23456:6630773,30303995:0,0,0 +v1,23460:6630773,31169075:0,393216,0 +(1,23461:6630773,32440980:25952256,1665121,0 +g1,23461:6630773,32440980 +g1,23461:6237557,32440980 +r1,23470:6368629,32440980:131072,1665121,0 +g1,23461:6567858,32440980 +g1,23461:6764466,32440980 +[1,23461:6764466,32440980:25818563,1665121,0 +(1,23461:6764466,31441552:25818563,665693,196608 +(1,23460:6764466,31441552:0,665693,196608 +r1,23470:8010564,31441552:1246098,862301,196608 +k1,23460:6764466,31441552:-1246098 +) +(1,23460:6764466,31441552:1246098,665693,196608 +) +k1,23460:8262786,31441552:252222 +k1,23460:10397294,31441552:327680 +k1,23460:12988496,31441552:252222 +k1,23460:13900010,31441552:252222 +k1,23460:17346457,31441552:252222 +k1,23460:18988043,31441552:252223 +k1,23460:20187916,31441552:252222 +k1,23460:21596848,31441552:252222 +k1,23460:24878799,31441552:252222 +k1,23460:27163948,31441552:252222 +k1,23460:30379053,31441552:252222 +k1,23460:32583029,31441552:0 +) +(1,23461:6764466,32306632:25818563,513147,134348 +g1,23460:8353058,32306632 +g1,23460:10585214,32306632 +g1,23460:14144474,32306632 +g1,23460:15291354,32306632 +g1,23460:16647293,32306632 +g1,23460:19305433,32306632 +g1,23460:20911065,32306632 +g1,23460:22129379,32306632 +k1,23461:32583029,32306632:7794199 +g1,23461:32583029,32306632 +) +] +g1,23461:32583029,32440980 +) +h1,23461:6630773,32440980:0,0,0 +(1,23464:6630773,35272140:25952256,32768,229376 +(1,23464:6630773,35272140:0,32768,229376 +(1,23464:6630773,35272140:5505024,32768,229376 +r1,23470:12135797,35272140:5505024,262144,229376 +) +k1,23464:6630773,35272140:-5505024 +) +(1,23464:6630773,35272140:25952256,32768,0 +r1,23470:32583029,35272140:25952256,32768,0 +) +) +(1,23464:6630773,36903992:25952256,606339,151780 +(1,23464:6630773,36903992:2954625,582746,14155 +g1,23464:6630773,36903992 +g1,23464:9585398,36903992 +) +g1,23464:13602493,36903992 +g1,23464:16712045,36903992 +k1,23464:32583029,36903992:14177796 +g1,23464:32583029,36903992 +) +(1,23468:6630773,38162288:25952256,513147,126483 +k1,23467:8593113,38162288:266924 +k1,23467:9519328,38162288:266923 +k1,23467:10805337,38162288:266924 +k1,23467:14098058,38162288:266924 +k1,23467:17455005,38162288:266924 +k1,23467:19577252,38162288:266923 +k1,23467:21892176,38162288:266924 +k1,23467:22929803,38162288:266924 +k1,23467:24477887,38162288:266855 +k1,23467:27238456,38162288:266924 +k1,23467:28121418,38162288:266924 +k1,23467:30050990,38162288:266924 +k1,23467:30977205,38162288:266923 +k1,23467:31599989,38162288:266924 +k1,23467:32583029,38162288:0 +) +(1,23468:6630773,39027368:25952256,513147,134348 +k1,23467:8781724,39027368:239266 +k1,23467:13367992,39027368:239265 +k1,23467:14920600,39027368:239266 +k1,23467:16264148,39027368:239266 +k1,23467:17251179,39027368:239265 +k1,23467:18902746,39027368:239266 +k1,23467:21962681,39027368:239265 +k1,23467:24662169,39027368:239266 +k1,23467:27019559,39027368:239266 +k1,23467:27910252,39027368:239265 +k1,23467:29455651,39027368:239266 +k1,23467:32583029,39027368:0 +) +(1,23468:6630773,39892448:25952256,513147,126483 +k1,23467:8075536,39892448:253318 +k1,23467:9719529,39892448:253319 +k1,23467:10328707,39892448:253318 +k1,23467:12091975,39892448:253318 +k1,23467:12961332,39892448:253319 +k1,23467:14233735,39892448:253318 +k1,23467:15981274,39892448:253318 +k1,23467:17217633,39892448:253319 +k1,23467:19890540,39892448:253318 +k1,23467:21524702,39892448:253318 +k1,23467:22882303,39892448:253319 +k1,23467:23883387,39892448:253318 +k1,23467:26287597,39892448:253318 +k1,23467:29648633,39892448:253319 +k1,23467:31599989,39892448:253318 +k1,23467:32583029,39892448:0 +) +(1,23468:6630773,40757528:25952256,505283,134348 +k1,23467:8903343,40757528:204254 +k1,23467:10099157,40757528:204254 +k1,23467:13456348,40757528:204254 +k1,23467:15670591,40757528:204254 +k1,23467:16230705,40757528:204254 +k1,23467:18439705,40757528:204254 +k1,23467:21578660,40757528:204253 +k1,23467:22939624,40757528:204254 +k1,23467:25324261,40757528:204254 +k1,23467:27431681,40757528:204254 +k1,23467:30743652,40757528:204254 +k1,23467:31563944,40757528:204254 +k1,23467:32583029,40757528:0 +) +(1,23468:6630773,41622608:25952256,513147,134348 +k1,23467:8282608,41622608:284754 +k1,23467:9226654,41622608:284754 +k1,23467:11800581,41622608:284754 +k1,23467:13662786,41622608:284753 +k1,23467:14598968,41622608:284754 +k1,23467:16859632,41622608:284754 +k1,23467:19349017,41622608:284754 +k1,23467:22984627,41622608:284754 +k1,23467:27387008,41622608:284754 +k1,23467:28690846,41622608:284753 +k1,23467:30629073,41622608:284754 +k1,23467:31896867,41622608:284754 +k1,23467:32583029,41622608:0 +) +(1,23468:6630773,42487688:25952256,513147,126483 +k1,23467:8091374,42487688:257360 +k1,23467:12693770,42487688:257359 +k1,23467:15900250,42487688:257360 +k1,23467:18773151,42487688:257359 +k1,23467:20916637,42487688:257360 +k1,23467:22365442,42487688:257360 +k1,23467:25595514,42487688:257359 +k1,23467:26662244,42487688:257360 +k1,23467:27938688,42487688:257359 +k1,23467:30450487,42487688:257360 +k1,23467:32583029,42487688:0 +) +(1,23468:6630773,43352768:25952256,513147,126483 +k1,23467:9426976,43352768:267824 +k1,23467:10354092,43352768:267824 +k1,23467:11998826,43352768:267823 +k1,23467:13364378,43352768:267824 +k1,23467:14938335,43352768:267824 +k1,23467:17867576,43352768:267824 +k1,23467:19878002,43352768:267824 +k1,23467:20501685,43352768:267823 +k1,23467:22485897,43352768:267824 +k1,23467:23736761,43352768:267824 +k1,23467:25572206,43352768:267824 +k1,23467:26821104,43352768:267824 +k1,23467:28419308,43352768:267823 +k1,23467:29955909,43352768:267824 +k1,23467:31533142,43352768:267824 +k1,23467:32583029,43352768:0 +) +(1,23468:6630773,44217848:25952256,513147,134348 +k1,23467:9148972,44217848:239512 +h1,23467:10518019,44217848:0,0,0 +k1,23467:10757531,44217848:239512 +k1,23467:11806413,44217848:239512 +k1,23467:13544078,44217848:239512 +h1,23467:14739455,44217848:0,0,0 +k1,23467:14978967,44217848:239512 +k1,23467:16166130,44217848:239512 +k1,23467:18523110,44217848:239512 +k1,23467:19571993,44217848:239513 +k1,23467:20830590,44217848:239512 +k1,23467:22162587,44217848:239512 +k1,23467:23061391,44217848:239512 +k1,23467:24997630,44217848:239512 +k1,23467:26428587,44217848:239512 +k1,23467:28370069,44217848:239512 +k1,23467:31635378,44217848:239512 +k1,23467:32583029,44217848:0 +) +(1,23468:6630773,45082928:25952256,513147,134348 +g1,23467:9232552,45082928 +g1,23467:10657960,45082928 +k1,23468:32583028,45082928:20438056 +g1,23468:32583028,45082928 +) +] +(1,23470:32583029,45706769:0,0,0 +g1,23470:32583029,45706769 +) +) +] +(1,23470:6630773,47279633:25952256,0,0 +h1,23470:6630773,47279633:25952256,0,0 +) +] +(1,23470:4262630,4025873:0,0,0 +[1,23470:-473656,4025873:0,0,0 +(1,23470:-473656,-710413:0,0,0 +(1,23470:-473656,-710413:0,0,0 +g1,23470:-473656,-710413 +) +g1,23470:-473656,-710413 +) +] +) +] +!29206 +}404 +Input:3755:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3756:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3757:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3758:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3759:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!482 +{405 +[1,23556:4262630,47279633:28320399,43253760,0 +(1,23556:4262630,4025873:0,0,0 +[1,23556:-473656,4025873:0,0,0 +(1,23556:-473656,-710413:0,0,0 +(1,23556:-473656,-644877:0,0,0 +k1,23556:-473656,-644877:-65536 +) +(1,23556:-473656,4736287:0,0,0 +k1,23556:-473656,4736287:5209943 ) -g1,23166:-473656,-710413 +g1,23556:-473656,-710413 ) ] ) -[1,23166:6630773,47279633:25952256,43253760,0 -[1,23166:6630773,4812305:25952256,786432,0 -(1,23166:6630773,4812305:25952256,513147,126483 -(1,23166:6630773,4812305:25952256,513147,126483 -g1,23166:3078558,4812305 -[1,23166:3078558,4812305:0,0,0 -(1,23166:3078558,2439708:0,1703936,0 -k1,23166:1358238,2439708:-1720320 -(1,21457:1358238,2439708:1720320,1703936,0 -(1,21457:1358238,2439708:1179648,16384,0 -r1,23166:2537886,2439708:1179648,16384,0 +[1,23556:6630773,47279633:25952256,43253760,0 +[1,23556:6630773,4812305:25952256,786432,0 +(1,23556:6630773,4812305:25952256,505283,134348 +(1,23556:6630773,4812305:25952256,505283,134348 +g1,23556:3078558,4812305 +[1,23556:3078558,4812305:0,0,0 +(1,23556:3078558,2439708:0,1703936,0 +k1,23556:1358238,2439708:-1720320 +(1,21670:1358238,2439708:1720320,1703936,0 +(1,21670:1358238,2439708:1179648,16384,0 +r1,23556:2537886,2439708:1179648,16384,0 ) -g1,21457:3062174,2439708 -(1,21457:3062174,2439708:16384,1703936,0 -[1,21457:3062174,2439708:25952256,1703936,0 -(1,21457:3062174,1915420:25952256,1179648,0 -(1,21457:3062174,1915420:16384,1179648,0 -r1,23166:3078558,1915420:16384,1179648,0 +g1,21670:3062174,2439708 +(1,21670:3062174,2439708:16384,1703936,0 +[1,21670:3062174,2439708:25952256,1703936,0 +(1,21670:3062174,1915420:25952256,1179648,0 +(1,21670:3062174,1915420:16384,1179648,0 +r1,23556:3078558,1915420:16384,1179648,0 ) -k1,21457:29014430,1915420:25935872 -g1,21457:29014430,1915420 +k1,21670:29014430,1915420:25935872 +g1,21670:29014430,1915420 ) ] ) ) ) ] -[1,23166:3078558,4812305:0,0,0 -(1,23166:3078558,2439708:0,1703936,0 -g1,23166:29030814,2439708 -g1,23166:36135244,2439708 -(1,21457:36135244,2439708:1720320,1703936,0 -(1,21457:36135244,2439708:16384,1703936,0 -[1,21457:36135244,2439708:25952256,1703936,0 -(1,21457:36135244,1915420:25952256,1179648,0 -(1,21457:36135244,1915420:16384,1179648,0 -r1,23166:36151628,1915420:16384,1179648,0 +[1,23556:3078558,4812305:0,0,0 +(1,23556:3078558,2439708:0,1703936,0 +g1,23556:29030814,2439708 +g1,23556:36135244,2439708 +(1,21670:36135244,2439708:1720320,1703936,0 +(1,21670:36135244,2439708:16384,1703936,0 +[1,21670:36135244,2439708:25952256,1703936,0 +(1,21670:36135244,1915420:25952256,1179648,0 +(1,21670:36135244,1915420:16384,1179648,0 +r1,23556:36151628,1915420:16384,1179648,0 ) -k1,21457:62087500,1915420:25935872 -g1,21457:62087500,1915420 +k1,21670:62087500,1915420:25935872 +g1,21670:62087500,1915420 ) ] ) -g1,21457:36675916,2439708 -(1,21457:36675916,2439708:1179648,16384,0 -r1,23166:37855564,2439708:1179648,16384,0 +g1,21670:36675916,2439708 +(1,21670:36675916,2439708:1179648,16384,0 +r1,23556:37855564,2439708:1179648,16384,0 ) ) -k1,23166:3078556,2439708:-34777008 +k1,23556:3078556,2439708:-34777008 ) ] -[1,23166:3078558,4812305:0,0,0 -(1,23166:3078558,49800853:0,16384,2228224 -k1,23166:1358238,49800853:-1720320 -(1,21457:1358238,49800853:1720320,16384,2228224 -(1,21457:1358238,49800853:1179648,16384,0 -r1,23166:2537886,49800853:1179648,16384,0 +[1,23556:3078558,4812305:0,0,0 +(1,23556:3078558,49800853:0,16384,2228224 +k1,23556:1358238,49800853:-1720320 +(1,21670:1358238,49800853:1720320,16384,2228224 +(1,21670:1358238,49800853:1179648,16384,0 +r1,23556:2537886,49800853:1179648,16384,0 ) -g1,21457:3062174,49800853 -(1,21457:3062174,52029077:16384,1703936,0 -[1,21457:3062174,52029077:25952256,1703936,0 -(1,21457:3062174,51504789:25952256,1179648,0 -(1,21457:3062174,51504789:16384,1179648,0 -r1,23166:3078558,51504789:16384,1179648,0 +g1,21670:3062174,49800853 +(1,21670:3062174,52029077:16384,1703936,0 +[1,21670:3062174,52029077:25952256,1703936,0 +(1,21670:3062174,51504789:25952256,1179648,0 +(1,21670:3062174,51504789:16384,1179648,0 +r1,23556:3078558,51504789:16384,1179648,0 ) -k1,21457:29014430,51504789:25935872 -g1,21457:29014430,51504789 +k1,21670:29014430,51504789:25935872 +g1,21670:29014430,51504789 ) ] ) ) ) ] -[1,23166:3078558,4812305:0,0,0 -(1,23166:3078558,49800853:0,16384,2228224 -g1,23166:29030814,49800853 -g1,23166:36135244,49800853 -(1,21457:36135244,49800853:1720320,16384,2228224 -(1,21457:36135244,52029077:16384,1703936,0 -[1,21457:36135244,52029077:25952256,1703936,0 -(1,21457:36135244,51504789:25952256,1179648,0 -(1,21457:36135244,51504789:16384,1179648,0 -r1,23166:36151628,51504789:16384,1179648,0 -) -k1,21457:62087500,51504789:25935872 -g1,21457:62087500,51504789 -) -] -) -g1,21457:36675916,49800853 -(1,21457:36675916,49800853:1179648,16384,0 -r1,23166:37855564,49800853:1179648,16384,0 -) -) -k1,23166:3078556,49800853:-34777008 -) -] -g1,23166:6630773,4812305 -g1,23166:6630773,4812305 -g1,23166:9235173,4812305 -g1,23166:10666479,4812305 -k1,23166:31387651,4812305:20721172 -) -) -] -[1,23166:6630773,45706769:25952256,40108032,0 -(1,23166:6630773,45706769:25952256,40108032,0 -(1,23166:6630773,45706769:0,0,0 -g1,23166:6630773,45706769 -) -[1,23166:6630773,45706769:25952256,40108032,0 -(1,23097:6630773,6254097:25952256,505283,126483 -h1,23096:6630773,6254097:983040,0,0 -k1,23096:9084456,6254097:273956 -(1,23096:9084456,6254097:0,452978,115847 -r1,23166:10497857,6254097:1413401,568825,115847 -k1,23096:9084456,6254097:-1413401 -) -(1,23096:9084456,6254097:1413401,452978,115847 -k1,23096:9084456,6254097:3277 -h1,23096:10494580,6254097:0,411205,112570 -) -k1,23096:10771812,6254097:273955 -k1,23096:13023645,6254097:273956 -k1,23096:13829097,6254097:273955 -k1,23096:16054715,6254097:273956 -k1,23096:17738349,6254097:273955 -k1,23096:18698467,6254097:273956 -k1,23096:19430519,6254097:273955 -k1,23096:22406524,6254097:273956 -k1,23096:24056080,6254097:273955 -k1,23096:26997351,6254097:273956 -k1,23096:28660669,6254097:273955 -k1,23096:29620787,6254097:273956 -k1,23096:31591469,6254097:273955 -k1,23096:32583029,6254097:0 -) -(1,23097:6630773,7095585:25952256,513147,134348 -k1,23096:9945912,7095585:200868 -k1,23096:13076894,7095585:200867 -k1,23096:14349931,7095585:200868 -k1,23096:17748301,7095585:200868 -k1,23096:18635331,7095585:200868 -k1,23096:20304204,7095585:200867 -k1,23096:22072693,7095585:200868 -k1,23096:25887216,7095585:200868 -k1,23096:30711648,7095585:200867 -k1,23096:31563944,7095585:200868 -k1,23096:32583029,7095585:0 -) -(1,23097:6630773,7937073:25952256,513147,134348 -g1,23096:8136135,7937073 -g1,23096:9473069,7937073 -g1,23096:10331590,7937073 -g1,23096:11982441,7937073 -g1,23096:14282754,7937073 -g1,23096:15141275,7937073 -g1,23096:16693167,7937073 -g1,23096:17464525,7937073 -g1,23096:18617303,7937073 -g1,23096:19909017,7937073 -g1,23096:22688398,7937073 -g1,23096:26085783,7937073 -g1,23096:27232663,7937073 -g1,23096:28450977,7937073 -k1,23097:32583029,7937073:481697 -g1,23097:32583029,7937073 -) -(1,23099:6630773,8778561:25952256,513147,134348 -h1,23098:6630773,8778561:983040,0,0 -k1,23098:8768153,8778561:200791 -k1,23098:11992776,8778561:200792 -k1,23098:12549427,8778561:200791 -(1,23098:12549427,8778561:0,452978,115847 -r1,23166:14666252,8778561:2116825,568825,115847 -k1,23098:12549427,8778561:-2116825 -) -(1,23098:12549427,8778561:2116825,452978,115847 -k1,23098:12549427,8778561:3277 -h1,23098:14662975,8778561:0,411205,112570 -) -k1,23098:14867043,8778561:200791 -k1,23098:17027361,8778561:200792 -k1,23098:18622103,8778561:200791 -k1,23098:20003852,8778561:200790 -k1,23098:22215288,8778561:200791 -k1,23098:23363731,8778561:200792 -k1,23098:24721232,8778561:200791 -k1,23098:26206529,8778561:200791 -k1,23098:28269199,8778561:200792 -k1,23098:30465561,8778561:200791 -k1,23099:32583029,8778561:0 -) -(1,23099:6630773,9620049:25952256,513147,134348 -g1,23098:8164315,9620049 -g1,23098:9022836,9620049 -g1,23098:10241150,9620049 -g1,23098:13288573,9620049 -g1,23098:14147094,9620049 -g1,23098:16031254,9620049 -k1,23099:32583029,9620049:14069927 -g1,23099:32583029,9620049 -) -v1,23101:6630773,10749988:0,393216,0 -(1,23121:6630773,20293534:25952256,9936762,196608 -g1,23121:6630773,20293534 -g1,23121:6630773,20293534 -g1,23121:6434165,20293534 -(1,23121:6434165,20293534:0,9936762,196608 -r1,23166:32779637,20293534:26345472,10133370,196608 -k1,23121:6434165,20293534:-26345472 -) -(1,23121:6434165,20293534:26345472,9936762,196608 -[1,23121:6630773,20293534:25952256,9740154,0 -(1,23103:6630773,10957606:25952256,404226,101187 -(1,23102:6630773,10957606:0,0,0 -g1,23102:6630773,10957606 -g1,23102:6630773,10957606 -g1,23102:6303093,10957606 -(1,23102:6303093,10957606:0,0,0 -) -g1,23102:6630773,10957606 -) -g1,23103:8843793,10957606 -k1,23103:8843793,10957606:0 -h1,23103:9476085,10957606:0,0,0 -k1,23103:32583029,10957606:23106944 -g1,23103:32583029,10957606 -) -(1,23104:6630773,11623784:25952256,404226,107478 -h1,23104:6630773,11623784:0,0,0 -g1,23104:6946919,11623784 -g1,23104:7263065,11623784 -g1,23104:7579211,11623784 -g1,23104:7895357,11623784 -g1,23104:11689106,11623784 -g1,23104:12321398,11623784 -g1,23104:20225041,11623784 -k1,23104:20225041,11623784:0 -h1,23104:22754207,11623784:0,0,0 -k1,23104:32583029,11623784:9828822 -g1,23104:32583029,11623784 -) -(1,23105:6630773,12289962:25952256,404226,101187 -h1,23105:6630773,12289962:0,0,0 -g1,23105:6946919,12289962 -g1,23105:7263065,12289962 -g1,23105:7579211,12289962 -g1,23105:7895357,12289962 -g1,23105:8211503,12289962 -g1,23105:8527649,12289962 -g1,23105:8843795,12289962 -g1,23105:9159941,12289962 -g1,23105:9476087,12289962 -g1,23105:9792233,12289962 -g1,23105:10108379,12289962 -g1,23105:12005253,12289962 -g1,23105:12637545,12289962 -g1,23105:20225042,12289962 -g1,23105:20857334,12289962 -k1,23105:20857334,12289962:0 -h1,23105:24651083,12289962:0,0,0 -k1,23105:32583029,12289962:7931946 -g1,23105:32583029,12289962 -) -(1,23106:6630773,12956140:25952256,404226,107478 -h1,23106:6630773,12956140:0,0,0 -g1,23106:6946919,12956140 -g1,23106:7263065,12956140 -g1,23106:7579211,12956140 -g1,23106:7895357,12956140 -g1,23106:8211503,12956140 -g1,23106:8527649,12956140 -g1,23106:8843795,12956140 -g1,23106:9159941,12956140 -g1,23106:9476087,12956140 -g1,23106:9792233,12956140 -g1,23106:10108379,12956140 -g1,23106:11372962,12956140 -g1,23106:12005254,12956140 -k1,23106:12005254,12956140:0 -h1,23106:16115149,12956140:0,0,0 -k1,23106:32583029,12956140:16467880 -g1,23106:32583029,12956140 -) -(1,23107:6630773,13622318:25952256,404226,82312 -h1,23107:6630773,13622318:0,0,0 -g1,23107:6946919,13622318 -g1,23107:7263065,13622318 -g1,23107:7579211,13622318 -g1,23107:7895357,13622318 -g1,23107:8211503,13622318 -g1,23107:8527649,13622318 -g1,23107:8843795,13622318 -g1,23107:9159941,13622318 -g1,23107:9476087,13622318 -g1,23107:9792233,13622318 -g1,23107:10108379,13622318 -g1,23107:11372962,13622318 -g1,23107:12005254,13622318 -k1,23107:12005254,13622318:0 -h1,23107:15799003,13622318:0,0,0 -k1,23107:32583029,13622318:16784026 -g1,23107:32583029,13622318 -) -(1,23108:6630773,14288496:25952256,404226,107478 -h1,23108:6630773,14288496:0,0,0 -g1,23108:6946919,14288496 -g1,23108:7263065,14288496 -g1,23108:7579211,14288496 -g1,23108:7895357,14288496 -g1,23108:8211503,14288496 -g1,23108:8527649,14288496 -g1,23108:8843795,14288496 -g1,23108:9159941,14288496 -g1,23108:9476087,14288496 -g1,23108:9792233,14288496 -g1,23108:10108379,14288496 -g1,23108:11372962,14288496 -g1,23108:12005254,14288496 -g1,23108:19908897,14288496 -g1,23108:23702646,14288496 -g1,23108:24651084,14288496 -h1,23108:24967230,14288496:0,0,0 -k1,23108:32583029,14288496:7615799 -g1,23108:32583029,14288496 -) -(1,23109:6630773,14954674:25952256,404226,76021 -h1,23109:6630773,14954674:0,0,0 -g1,23109:6946919,14954674 -g1,23109:7263065,14954674 -g1,23109:7579211,14954674 -g1,23109:7895357,14954674 -g1,23109:8211503,14954674 -g1,23109:8527649,14954674 -g1,23109:8843795,14954674 -g1,23109:9159941,14954674 -g1,23109:9476087,14954674 -g1,23109:9792233,14954674 -g1,23109:10108379,14954674 -h1,23109:10424525,14954674:0,0,0 -k1,23109:32583029,14954674:22158504 -g1,23109:32583029,14954674 -) -(1,23110:6630773,15620852:25952256,404226,101187 -h1,23110:6630773,15620852:0,0,0 -h1,23110:8527647,15620852:0,0,0 -k1,23110:32583029,15620852:24055382 -g1,23110:32583029,15620852 -) -(1,23120:6630773,16287030:25952256,404226,9436 -(1,23112:6630773,16287030:0,0,0 -g1,23112:6630773,16287030 -g1,23112:6630773,16287030 -g1,23112:6303093,16287030 -(1,23112:6303093,16287030:0,0,0 -) -g1,23112:6630773,16287030 -) -g1,23120:7579210,16287030 -g1,23120:8211502,16287030 -g1,23120:8843794,16287030 -g1,23120:11372960,16287030 -g1,23120:12321397,16287030 -g1,23120:12953689,16287030 -h1,23120:13269835,16287030:0,0,0 -k1,23120:32583029,16287030:19313194 -g1,23120:32583029,16287030 -) -(1,23120:6630773,16953208:25952256,404226,101187 -h1,23120:6630773,16953208:0,0,0 -g1,23120:7579210,16953208 -g1,23120:7895356,16953208 -g1,23120:8211502,16953208 -g1,23120:8527648,16953208 -g1,23120:8843794,16953208 -g1,23120:9159940,16953208 -g1,23120:9476086,16953208 -g1,23120:9792232,16953208 -g1,23120:11372961,16953208 -g1,23120:13269835,16953208 -g1,23120:13585981,16953208 -g1,23120:13902127,16953208 -g1,23120:15166710,16953208 -g1,23120:15482856,16953208 -g1,23120:15799002,16953208 -g1,23120:17063585,16953208 -g1,23120:17379731,16953208 -g1,23120:17695877,16953208 -h1,23120:18644314,16953208:0,0,0 -k1,23120:32583029,16953208:13938715 -g1,23120:32583029,16953208 -) -(1,23120:6630773,17619386:25952256,404226,76021 -h1,23120:6630773,17619386:0,0,0 -g1,23120:7579210,17619386 -g1,23120:7895356,17619386 -g1,23120:8211502,17619386 -g1,23120:11372959,17619386 -g1,23120:13269834,17619386 -g1,23120:15166709,17619386 -g1,23120:17063584,17619386 -k1,23120:17063584,17619386:0 -h1,23120:18644313,17619386:0,0,0 -k1,23120:32583029,17619386:13938716 -g1,23120:32583029,17619386 -) -(1,23120:6630773,18285564:25952256,388497,9436 -h1,23120:6630773,18285564:0,0,0 -g1,23120:7579210,18285564 -g1,23120:8211502,18285564 -g1,23120:8527648,18285564 -g1,23120:8843794,18285564 -g1,23120:11372960,18285564 -g1,23120:11689106,18285564 -g1,23120:12005252,18285564 -g1,23120:12321398,18285564 -g1,23120:13269835,18285564 -g1,23120:13585981,18285564 -g1,23120:15166710,18285564 -g1,23120:15482856,18285564 -g1,23120:17063585,18285564 -g1,23120:17379731,18285564 -h1,23120:18644314,18285564:0,0,0 -k1,23120:32583029,18285564:13938715 -g1,23120:32583029,18285564 -) -(1,23120:6630773,18951742:25952256,388497,9436 -h1,23120:6630773,18951742:0,0,0 -g1,23120:7579210,18951742 -g1,23120:8211502,18951742 -g1,23120:8527648,18951742 -g1,23120:8843794,18951742 -g1,23120:11372960,18951742 -g1,23120:11689106,18951742 -g1,23120:12005252,18951742 -g1,23120:12321398,18951742 -g1,23120:12637544,18951742 -g1,23120:13269836,18951742 -g1,23120:13585982,18951742 -g1,23120:15166711,18951742 -g1,23120:15482857,18951742 -g1,23120:17063586,18951742 -g1,23120:17379732,18951742 -h1,23120:18644315,18951742:0,0,0 -k1,23120:32583029,18951742:13938714 -g1,23120:32583029,18951742 -) -(1,23120:6630773,19617920:25952256,388497,9436 -h1,23120:6630773,19617920:0,0,0 -g1,23120:7579210,19617920 -g1,23120:8211502,19617920 -g1,23120:8527648,19617920 -g1,23120:8843794,19617920 -g1,23120:11372960,19617920 -g1,23120:11689106,19617920 -g1,23120:12005252,19617920 -g1,23120:12321398,19617920 -g1,23120:12637544,19617920 -g1,23120:13269836,19617920 -g1,23120:13585982,19617920 -g1,23120:15166711,19617920 -g1,23120:15482857,19617920 -g1,23120:17063586,19617920 -g1,23120:17379732,19617920 -h1,23120:18644315,19617920:0,0,0 -k1,23120:32583029,19617920:13938714 -g1,23120:32583029,19617920 -) -(1,23120:6630773,20284098:25952256,404226,9436 -h1,23120:6630773,20284098:0,0,0 -g1,23120:7579210,20284098 -g1,23120:8211502,20284098 -g1,23120:8843794,20284098 -g1,23120:9476086,20284098 -g1,23120:11056815,20284098 -h1,23120:12321398,20284098:0,0,0 -k1,23120:32583030,20284098:20261632 -g1,23120:32583030,20284098 -) -] -) -g1,23121:32583029,20293534 -g1,23121:6630773,20293534 -g1,23121:6630773,20293534 -g1,23121:32583029,20293534 -g1,23121:32583029,20293534 -) -h1,23121:6630773,20490142:0,0,0 -(1,23125:6630773,21795392:25952256,513147,134348 -h1,23124:6630773,21795392:983040,0,0 -k1,23124:8422854,21795392:331284 -k1,23124:9622491,21795392:331285 -k1,23124:11502391,21795392:331284 -k1,23124:12485103,21795392:331284 -k1,23124:14228689,21795392:331285 -k1,23124:15176011,21795392:331284 -k1,23124:17738797,21795392:331285 -k1,23124:19354587,21795392:331284 -k1,23124:21878050,21795392:331284 -k1,23124:23077687,21795392:331285 -k1,23124:24513253,21795392:331284 -k1,23124:25937022,21795392:331284 -k1,23124:28499808,21795392:331285 -k1,23124:31593435,21795392:331284 -k1,23125:32583029,21795392:0 -) -(1,23125:6630773,22636880:25952256,513147,134348 -k1,23124:9940396,22636880:250402 -k1,23124:13125500,22636880:250402 -k1,23124:14394987,22636880:250402 -k1,23124:16384715,22636880:250402 -k1,23124:17294409,22636880:250402 -k1,23124:19884446,22636880:250402 -k1,23124:20794139,22636880:250401 -k1,23124:24719800,22636880:250402 -k1,23124:26074484,22636880:250402 -k1,23124:28040619,22636880:250402 -k1,23124:30478613,22636880:250402 -k1,23124:31748100,22636880:250402 -k1,23125:32583029,22636880:0 -) -(1,23125:6630773,23478368:25952256,505283,134348 -k1,23124:9920377,23478368:236282 -k1,23124:10842822,23478368:236283 -k1,23124:13792295,23478368:236282 -k1,23124:15635521,23478368:236283 -k1,23124:17911283,23478368:236282 -k1,23124:18617459,23478368:236283 -k1,23124:19385238,23478368:236282 -k1,23124:21404756,23478368:236283 -k1,23124:24054074,23478368:236282 -k1,23124:24941785,23478368:236283 -k1,23124:26270552,23478368:236282 -k1,23124:29086987,23478368:236283 -k1,23124:31601955,23478368:236282 -k1,23125:32583029,23478368:0 -) -(1,23125:6630773,24319856:25952256,505283,7863 -g1,23124:9151943,24319856 -k1,23125:32583030,24319856:21873296 -g1,23125:32583030,24319856 -) -(1,23126:6630773,26411116:25952256,555811,139132 -(1,23126:6630773,26411116:3348562,534184,12975 -g1,23126:6630773,26411116 -g1,23126:9979335,26411116 -) -k1,23126:32583029,26411116:19939984 -g1,23126:32583029,26411116 -) -(1,23131:6630773,27645820:25952256,513147,134348 -k1,23130:9422334,27645820:256628 -k1,23130:11957648,27645820:256628 -k1,23130:14974652,27645820:256628 -k1,23130:18257077,27645820:256628 -k1,23130:19798211,27645820:256628 -k1,23130:21770572,27645820:256628 -k1,23130:22485296,27645820:256627 -k1,23130:24612322,27645820:256628 -k1,23130:25520378,27645820:256628 -k1,23130:27980982,27645820:256628 -k1,23130:30648024,27645820:256628 -k1,23130:31563944,27645820:256628 -k1,23130:32583029,27645820:0 -) -(1,23131:6630773,28487308:25952256,513147,134348 -k1,23130:8172052,28487308:151916 -k1,23130:9891588,28487308:151915 -k1,23130:10814207,28487308:151916 -k1,23130:13356173,28487308:151868 -k1,23130:14664799,28487308:151916 -k1,23130:15770264,28487308:151916 -k1,23130:17410502,28487308:151915 -k1,23130:18323946,28487308:151916 -k1,23130:20281378,28487308:151915 -k1,23130:21452379,28487308:151916 -k1,23130:23257768,28487308:151916 -k1,23130:26814278,28487308:151915 -k1,23130:27652356,28487308:151916 -k1,23130:28420309,28487308:151915 -k1,23130:29591310,28487308:151916 -k1,23130:32583029,28487308:0 -) -(1,23131:6630773,29328796:25952256,513147,7863 -g1,23130:7777653,29328796 -k1,23131:32583028,29328796:22474260 -g1,23131:32583028,29328796 -) -(1,23133:6630773,30170284:25952256,513147,134348 -h1,23132:6630773,30170284:983040,0,0 -k1,23132:8750590,30170284:183228 -k1,23132:10511269,30170284:183227 -k1,23132:11713582,30170284:183228 -k1,23132:12879849,30170284:183227 -k1,23132:15635365,30170284:183228 -k1,23132:16589295,30170284:183227 -k1,23132:18732049,30170284:183228 -k1,23132:20106722,30170284:183228 -k1,23132:25142235,30170284:183227 -k1,23132:28433180,30170284:183228 -k1,23132:29635492,30170284:183227 -k1,23132:31124853,30170284:183228 -k1,23133:32583029,30170284:0 -k1,23133:32583029,30170284:0 -) -v1,23135:6630773,31300223:0,393216,0 -(1,23166:6630773,45510161:25952256,14603154,196608 -g1,23166:6630773,45510161 -g1,23166:6630773,45510161 -g1,23166:6434165,45510161 -(1,23166:6434165,45510161:0,14603154,196608 -r1,23166:32779637,45510161:26345472,14799762,196608 -k1,23166:6434165,45510161:-26345472 -) -(1,23166:6434165,45510161:26345472,14603154,196608 -[1,23166:6630773,45510161:25952256,14406546,0 -(1,23137:6630773,31514133:25952256,410518,101187 -(1,23136:6630773,31514133:0,0,0 -g1,23136:6630773,31514133 -g1,23136:6630773,31514133 -g1,23136:6303093,31514133 -(1,23136:6303093,31514133:0,0,0 -) -g1,23136:6630773,31514133 -) -g1,23137:11372959,31514133 -g1,23137:12321397,31514133 -k1,23137:12321397,31514133:0 -h1,23137:24334933,31514133:0,0,0 -k1,23137:32583029,31514133:8248096 -g1,23137:32583029,31514133 -) -(1,23138:6630773,32180311:25952256,404226,50331 -h1,23138:6630773,32180311:0,0,0 -h1,23138:11056813,32180311:0,0,0 -k1,23138:32583029,32180311:21526216 -g1,23138:32583029,32180311 -) -(1,23165:6630773,32846489:25952256,379060,0 -(1,23140:6630773,32846489:0,0,0 -g1,23140:6630773,32846489 -g1,23140:6630773,32846489 -g1,23140:6303093,32846489 -(1,23140:6303093,32846489:0,0,0 -) -g1,23140:6630773,32846489 -) -h1,23165:7263064,32846489:0,0,0 -k1,23165:32583028,32846489:25319964 -g1,23165:32583028,32846489 -) -(1,23165:6630773,33512667:25952256,410518,101187 -h1,23165:6630773,33512667:0,0,0 -g1,23165:7579210,33512667 -g1,23165:9159939,33512667 -g1,23165:11372959,33512667 -g1,23165:12953688,33512667 -g1,23165:19592748,33512667 -h1,23165:20541185,33512667:0,0,0 -k1,23165:32583029,33512667:12041844 -g1,23165:32583029,33512667 -) -(1,23165:6630773,34178845:25952256,379060,0 -h1,23165:6630773,34178845:0,0,0 -h1,23165:7263064,34178845:0,0,0 -k1,23165:32583028,34178845:25319964 -g1,23165:32583028,34178845 -) -(1,23165:6630773,34845023:25952256,410518,101187 -h1,23165:6630773,34845023:0,0,0 -g1,23165:7579210,34845023 -g1,23165:9476084,34845023 -g1,23165:10740667,34845023 -g1,23165:14218270,34845023 -g1,23165:16747436,34845023 -g1,23165:17379728,34845023 -g1,23165:21173476,34845023 -k1,23165:21173476,34845023:0 -h1,23165:24334933,34845023:0,0,0 -k1,23165:32583029,34845023:8248096 -g1,23165:32583029,34845023 -) -(1,23165:6630773,35511201:25952256,379060,0 -h1,23165:6630773,35511201:0,0,0 -h1,23165:7263064,35511201:0,0,0 -k1,23165:32583028,35511201:25319964 -g1,23165:32583028,35511201 -) -(1,23165:6630773,36177379:25952256,404226,101187 -h1,23165:6630773,36177379:0,0,0 -k1,23165:7473828,36177379:210764 -k1,23165:8633029,36177379:210764 -k1,23165:8843793,36177379:210764 -k1,23165:9054557,36177379:210764 -k1,23165:11794486,36177379:210764 -k1,23165:12321396,36177379:210764 -k1,23165:14429034,36177379:210764 -k1,23165:19065838,36177379:210764 -k1,23165:19276602,36177379:210764 -k1,23165:19487366,36177379:210764 -k1,23165:19698130,36177379:210764 -k1,23165:22438059,36177379:210764 -k1,23165:24545697,36177379:210764 -k1,23165:25072607,36177379:210764 -k1,23165:27180245,36177379:210764 -k1,23165:27391009,36177379:210764 -k1,23165:29498647,36177379:210764 -k1,23165:30657848,36177379:210764 -h1,23165:33503159,36177379:0,0,0 -k1,23165:33503159,36177379:0 -k1,23165:33503159,36177379:0 -) -(1,23165:6630773,36843557:25952256,404226,107478 -h1,23165:6630773,36843557:0,0,0 -g1,23165:7579210,36843557 -g1,23165:8843793,36843557 -g1,23165:9159939,36843557 -g1,23165:9476085,36843557 -g1,23165:11372959,36843557 -g1,23165:11689105,36843557 -g1,23165:12005251,36843557 -g1,23165:12321397,36843557 -g1,23165:12953689,36843557 -h1,23165:18644311,36843557:0,0,0 -k1,23165:32583029,36843557:13938718 -g1,23165:32583029,36843557 -) -(1,23165:6630773,37509735:25952256,404226,76021 -h1,23165:6630773,37509735:0,0,0 -g1,23165:7579210,37509735 -g1,23165:8843793,37509735 -g1,23165:9159939,37509735 -g1,23165:9476085,37509735 -g1,23165:10424522,37509735 -g1,23165:10740668,37509735 -g1,23165:11056814,37509735 -g1,23165:11372960,37509735 -g1,23165:11689106,37509735 -g1,23165:12005252,37509735 -g1,23165:12321398,37509735 -g1,23165:12953690,37509735 -h1,23165:13902127,37509735:0,0,0 -k1,23165:32583029,37509735:18680902 -g1,23165:32583029,37509735 -) -(1,23165:6630773,38175913:25952256,404226,76021 -h1,23165:6630773,38175913:0,0,0 -g1,23165:7579210,38175913 -g1,23165:8843793,38175913 -g1,23165:9159939,38175913 -g1,23165:9476085,38175913 -g1,23165:10424522,38175913 -g1,23165:10740668,38175913 -g1,23165:11056814,38175913 -g1,23165:11372960,38175913 -g1,23165:11689106,38175913 -g1,23165:12005252,38175913 -g1,23165:12321398,38175913 -g1,23165:12953690,38175913 -h1,23165:13902127,38175913:0,0,0 -k1,23165:32583029,38175913:18680902 -g1,23165:32583029,38175913 -) -(1,23165:6630773,38842091:25952256,404226,76021 -h1,23165:6630773,38842091:0,0,0 -g1,23165:7579210,38842091 -g1,23165:8843793,38842091 -g1,23165:9159939,38842091 -g1,23165:9476085,38842091 -g1,23165:10424522,38842091 -g1,23165:10740668,38842091 -g1,23165:11056814,38842091 -g1,23165:11372960,38842091 -g1,23165:11689106,38842091 -g1,23165:12005252,38842091 -g1,23165:12321398,38842091 -g1,23165:12953690,38842091 -h1,23165:14218273,38842091:0,0,0 -k1,23165:32583029,38842091:18364756 -g1,23165:32583029,38842091 -) -(1,23165:6630773,39508269:25952256,379060,0 -h1,23165:6630773,39508269:0,0,0 -h1,23165:7263064,39508269:0,0,0 -k1,23165:32583028,39508269:25319964 -g1,23165:32583028,39508269 -) -(1,23165:6630773,40174447:25952256,404226,76021 -h1,23165:6630773,40174447:0,0,0 -g1,23165:7579210,40174447 -g1,23165:11056813,40174447 -g1,23165:11689105,40174447 -g1,23165:12637542,40174447 -h1,23165:15166707,40174447:0,0,0 -k1,23165:32583029,40174447:17416322 -g1,23165:32583029,40174447 -) -(1,23165:6630773,40840625:25952256,379060,0 -h1,23165:6630773,40840625:0,0,0 -h1,23165:7263064,40840625:0,0,0 -k1,23165:32583028,40840625:25319964 -g1,23165:32583028,40840625 -) -(1,23165:6630773,41506803:25952256,404226,107478 -h1,23165:6630773,41506803:0,0,0 -k1,23165:7569615,41506803:306551 -k1,23165:7876166,41506803:306551 -k1,23165:8182718,41506803:306552 -k1,23165:9437706,41506803:306551 -k1,23165:9744257,41506803:306551 -k1,23165:10050808,41506803:306551 -k1,23165:11621942,41506803:306551 -k1,23165:11928494,41506803:306552 -k1,23165:14131919,41506803:306551 -k1,23165:14438470,41506803:306551 -k1,23165:14745021,41506803:306551 -k1,23165:15051572,41506803:306551 -k1,23165:15358124,41506803:306552 -k1,23165:16613112,41506803:306551 -k1,23165:16919663,41506803:306551 -k1,23165:17226214,41506803:306551 -k1,23165:17532765,41506803:306551 -k1,23165:17839317,41506803:306552 -k1,23165:19094305,41506803:306551 -k1,23165:20981584,41506803:306551 -k1,23165:22868863,41506803:306551 -k1,23165:23175414,41506803:306551 -k1,23165:23481966,41506803:306552 -k1,23165:23788517,41506803:306551 -k1,23165:25359651,41506803:306551 -k1,23165:25666202,41506803:306551 -k1,23165:25972753,41506803:306551 -k1,23165:26279305,41506803:306552 -k1,23165:27850439,41506803:306551 -k1,23165:29737718,41506803:306551 -h1,23165:32583029,41506803:0,0,0 -k1,23165:32583029,41506803:0 -k1,23165:32583029,41506803:0 -) -(1,23165:6630773,42172981:25952256,404226,107478 -h1,23165:6630773,42172981:0,0,0 -g1,23165:7579210,42172981 -g1,23165:7895356,42172981 -g1,23165:8211502,42172981 -g1,23165:10108377,42172981 -g1,23165:12005252,42172981 -g1,23165:12321398,42172981 -g1,23165:14218273,42172981 -g1,23165:14534419,42172981 -g1,23165:14850565,42172981 -g1,23165:16747440,42172981 -g1,23165:17063586,42172981 -g1,23165:17379732,42172981 -g1,23165:19276607,42172981 -g1,23165:21173482,42172981 -g1,23165:23070357,42172981 -g1,23165:23386503,42172981 -g1,23165:23702649,42172981 -g1,23165:25599524,42172981 -g1,23165:25915670,42172981 -g1,23165:26231816,42172981 -g1,23165:28128691,42172981 -g1,23165:30025566,42172981 -k1,23165:30025566,42172981:0 -h1,23165:31606295,42172981:0,0,0 -k1,23165:32583029,42172981:976734 -g1,23165:32583029,42172981 -) -(1,23165:6630773,42839159:25952256,404226,9436 -h1,23165:6630773,42839159:0,0,0 -g1,23165:7579210,42839159 -g1,23165:8211502,42839159 -g1,23165:9159939,42839159 -g1,23165:9476085,42839159 -g1,23165:9792231,42839159 -g1,23165:10108377,42839159 -g1,23165:11372960,42839159 -g1,23165:11689106,42839159 -g1,23165:12005252,42839159 -g1,23165:12321398,42839159 -g1,23165:12637544,42839159 -g1,23165:12953690,42839159 -g1,23165:14218273,42839159 -g1,23165:14534419,42839159 -g1,23165:15166711,42839159 -g1,23165:15482857,42839159 -g1,23165:15799003,42839159 -g1,23165:16115149,42839159 -g1,23165:16431295,42839159 -g1,23165:16747441,42839159 -g1,23165:17063587,42839159 -g1,23165:19276607,42839159 -g1,23165:19592753,42839159 -g1,23165:19908899,42839159 -g1,23165:20225045,42839159 -g1,23165:20541191,42839159 -g1,23165:21173483,42839159 -g1,23165:21489629,42839159 -g1,23165:21805775,42839159 -g1,23165:23070358,42839159 -g1,23165:23386504,42839159 -g1,23165:24018796,42839159 -g1,23165:24334942,42839159 -g1,23165:24651088,42839159 -g1,23165:24967234,42839159 -g1,23165:25283380,42839159 -g1,23165:25599526,42839159 -g1,23165:25915672,42839159 -g1,23165:28128692,42839159 -g1,23165:30025566,42839159 -h1,23165:31290149,42839159:0,0,0 -k1,23165:32583029,42839159:1292880 -g1,23165:32583029,42839159 -) -(1,23165:6630773,43505337:25952256,404226,9436 -h1,23165:6630773,43505337:0,0,0 -g1,23165:7579210,43505337 -g1,23165:8211502,43505337 -g1,23165:9159939,43505337 -g1,23165:9476085,43505337 -g1,23165:9792231,43505337 -g1,23165:10108377,43505337 -g1,23165:11372960,43505337 -g1,23165:11689106,43505337 -g1,23165:12005252,43505337 -g1,23165:12321398,43505337 -g1,23165:12637544,43505337 -g1,23165:12953690,43505337 -g1,23165:13269836,43505337 -g1,23165:14218273,43505337 -g1,23165:16747439,43505337 -g1,23165:17063585,43505337 -g1,23165:19276605,43505337 -g1,23165:19592751,43505337 -g1,23165:19908897,43505337 -g1,23165:20225043,43505337 -g1,23165:20541189,43505337 -g1,23165:21173481,43505337 -g1,23165:21489627,43505337 -g1,23165:21805773,43505337 -g1,23165:22121919,43505337 -g1,23165:23070356,43505337 -g1,23165:25599522,43505337 -g1,23165:25915668,43505337 -g1,23165:28128688,43505337 -g1,23165:30025562,43505337 -h1,23165:31290145,43505337:0,0,0 -k1,23165:32583029,43505337:1292884 -g1,23165:32583029,43505337 -) -(1,23165:6630773,44171515:25952256,404226,9436 -h1,23165:6630773,44171515:0,0,0 -g1,23165:7579210,44171515 -g1,23165:8211502,44171515 -g1,23165:9159939,44171515 -g1,23165:9476085,44171515 -g1,23165:9792231,44171515 -g1,23165:10108377,44171515 -g1,23165:11689106,44171515 -g1,23165:12005252,44171515 -g1,23165:12321398,44171515 -g1,23165:12637544,44171515 -g1,23165:12953690,44171515 -g1,23165:13269836,44171515 -g1,23165:14218273,44171515 -g1,23165:16747439,44171515 -g1,23165:19276605,44171515 -g1,23165:19592751,44171515 -g1,23165:19908897,44171515 -g1,23165:20225043,44171515 -g1,23165:20541189,44171515 -g1,23165:21173481,44171515 -g1,23165:21489627,44171515 -g1,23165:21805773,44171515 -g1,23165:22121919,44171515 -g1,23165:23070356,44171515 -g1,23165:25599522,44171515 -g1,23165:28128688,44171515 -g1,23165:30025562,44171515 -h1,23165:31290145,44171515:0,0,0 -k1,23165:32583029,44171515:1292884 -g1,23165:32583029,44171515 -) -(1,23165:6630773,44837693:25952256,379060,0 -h1,23165:6630773,44837693:0,0,0 -h1,23165:7263064,44837693:0,0,0 -k1,23165:32583028,44837693:25319964 -g1,23165:32583028,44837693 -) -(1,23165:6630773,45503871:25952256,404226,6290 -h1,23165:6630773,45503871:0,0,0 -g1,23165:7579210,45503871 -g1,23165:10424521,45503871 -h1,23165:13902123,45503871:0,0,0 -k1,23165:32583029,45503871:18680906 -g1,23165:32583029,45503871 -) -] -) -g1,23166:32583029,45510161 -g1,23166:6630773,45510161 -g1,23166:6630773,45510161 -g1,23166:32583029,45510161 -g1,23166:32583029,45510161 -) -] -(1,23166:32583029,45706769:0,0,0 -g1,23166:32583029,45706769 -) -) -] -(1,23166:6630773,47279633:25952256,0,0 -h1,23166:6630773,47279633:25952256,0,0 -) -] -(1,23166:4262630,4025873:0,0,0 -[1,23166:-473656,4025873:0,0,0 -(1,23166:-473656,-710413:0,0,0 -(1,23166:-473656,-710413:0,0,0 -g1,23166:-473656,-710413 -) -g1,23166:-473656,-710413 -) -] -) -] -!29134 -}420 -Input:3713:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +[1,23556:3078558,4812305:0,0,0 +(1,23556:3078558,49800853:0,16384,2228224 +g1,23556:29030814,49800853 +g1,23556:36135244,49800853 +(1,21670:36135244,49800853:1720320,16384,2228224 +(1,21670:36135244,52029077:16384,1703936,0 +[1,21670:36135244,52029077:25952256,1703936,0 +(1,21670:36135244,51504789:25952256,1179648,0 +(1,21670:36135244,51504789:16384,1179648,0 +r1,23556:36151628,51504789:16384,1179648,0 +) +k1,21670:62087500,51504789:25935872 +g1,21670:62087500,51504789 +) +] +) +g1,21670:36675916,49800853 +(1,21670:36675916,49800853:1179648,16384,0 +r1,23556:37855564,49800853:1179648,16384,0 +) +) +k1,23556:3078556,49800853:-34777008 +) +] +g1,23556:6630773,4812305 +k1,23556:21078841,4812305:13252691 +g1,23556:22701512,4812305 +g1,23556:23350318,4812305 +g1,23556:24759997,4812305 +g1,23556:28372341,4812305 +g1,23556:30105768,4812305 +) +) +] +[1,23556:6630773,45706769:25952256,40108032,0 +(1,23556:6630773,45706769:25952256,40108032,0 +(1,23556:6630773,45706769:0,0,0 +g1,23556:6630773,45706769 +) +[1,23556:6630773,45706769:25952256,40108032,0 +v1,23470:6630773,6254097:0,393216,0 +(1,23489:6630773,13052050:25952256,7191169,196608 +g1,23489:6630773,13052050 +g1,23489:6630773,13052050 +g1,23489:6434165,13052050 +(1,23489:6434165,13052050:0,7191169,196608 +r1,23556:32779637,13052050:26345472,7387777,196608 +k1,23489:6434165,13052050:-26345472 +) +(1,23489:6434165,13052050:26345472,7191169,196608 +[1,23489:6630773,13052050:25952256,6994561,0 +(1,23472:6630773,6488534:25952256,431045,112852 +(1,23471:6630773,6488534:0,0,0 +g1,23471:6630773,6488534 +g1,23471:6630773,6488534 +g1,23471:6303093,6488534 +(1,23471:6303093,6488534:0,0,0 +) +g1,23471:6630773,6488534 +) +g1,23472:9950312,6488534 +k1,23472:9950312,6488534:0 +h1,23472:10614220,6488534:0,0,0 +k1,23472:32583028,6488534:21968808 +g1,23472:32583028,6488534 +) +(1,23473:6630773,7173389:25952256,431045,112852 +h1,23473:6630773,7173389:0,0,0 +g1,23473:6962727,7173389 +g1,23473:7294681,7173389 +g1,23473:7626635,7173389 +g1,23473:7958589,7173389 +g1,23473:8290543,7173389 +g1,23473:8622497,7173389 +g1,23473:13601806,7173389 +g1,23473:14265714,7173389 +k1,23473:14265714,7173389:0 +h1,23473:30531456,7173389:0,0,0 +k1,23473:32583029,7173389:2051573 +g1,23473:32583029,7173389 +) +(1,23474:6630773,7858244:25952256,424439,86428 +h1,23474:6630773,7858244:0,0,0 +g1,23474:6962727,7858244 +g1,23474:7294681,7858244 +g1,23474:7626635,7858244 +g1,23474:7958589,7858244 +g1,23474:8290543,7858244 +g1,23474:8622497,7858244 +g1,23474:8954451,7858244 +g1,23474:9286405,7858244 +g1,23474:9618359,7858244 +g1,23474:9950313,7858244 +g1,23474:10282267,7858244 +g1,23474:10614221,7858244 +g1,23474:10946175,7858244 +g1,23474:11278129,7858244 +g1,23474:11610083,7858244 +g1,23474:11942037,7858244 +g1,23474:14265715,7858244 +g1,23474:14929623,7858244 +k1,23474:14929623,7858244:0 +h1,23474:16921347,7858244:0,0,0 +k1,23474:32583029,7858244:15661682 +g1,23474:32583029,7858244 +) +(1,23475:6630773,8543099:25952256,424439,106246 +h1,23475:6630773,8543099:0,0,0 +g1,23475:6962727,8543099 +g1,23475:7294681,8543099 +g1,23475:7626635,8543099 +g1,23475:7958589,8543099 +g1,23475:8290543,8543099 +g1,23475:8622497,8543099 +g1,23475:8954451,8543099 +g1,23475:9286405,8543099 +g1,23475:9618359,8543099 +g1,23475:9950313,8543099 +g1,23475:10282267,8543099 +g1,23475:10614221,8543099 +g1,23475:10946175,8543099 +g1,23475:11278129,8543099 +g1,23475:11610083,8543099 +g1,23475:11942037,8543099 +g1,23475:15261576,8543099 +g1,23475:15925484,8543099 +g1,23475:19245024,8543099 +h1,23475:24224333,8543099:0,0,0 +k1,23475:32583029,8543099:8358696 +g1,23475:32583029,8543099 +) +(1,23476:6630773,9227954:25952256,431045,112852 +h1,23476:6630773,9227954:0,0,0 +g1,23476:12605944,9227954 +h1,23476:14597668,9227954:0,0,0 +k1,23476:32583028,9227954:17985360 +g1,23476:32583028,9227954 +) +(1,23481:6630773,10043881:25952256,424439,106246 +(1,23478:6630773,10043881:0,0,0 +g1,23478:6630773,10043881 +g1,23478:6630773,10043881 +g1,23478:6303093,10043881 +(1,23478:6303093,10043881:0,0,0 +) +g1,23478:6630773,10043881 +) +g1,23481:7626635,10043881 +g1,23481:7958589,10043881 +g1,23481:8290543,10043881 +g1,23481:8622497,10043881 +g1,23481:8954451,10043881 +g1,23481:9286405,10043881 +g1,23481:9618359,10043881 +g1,23481:9950313,10043881 +g1,23481:11610083,10043881 +h1,23481:15261576,10043881:0,0,0 +k1,23481:32583028,10043881:17321452 +g1,23481:32583028,10043881 +) +(1,23481:6630773,10728736:25952256,424439,6605 +h1,23481:6630773,10728736:0,0,0 +g1,23481:7626635,10728736 +g1,23481:11610082,10728736 +g1,23481:11942036,10728736 +g1,23481:12273990,10728736 +h1,23481:15261575,10728736:0,0,0 +k1,23481:32583029,10728736:17321454 +g1,23481:32583029,10728736 +) +(1,23483:6630773,11544663:25952256,431045,112852 +(1,23482:6630773,11544663:0,0,0 +g1,23482:6630773,11544663 +g1,23482:6630773,11544663 +g1,23482:6303093,11544663 +(1,23482:6303093,11544663:0,0,0 +) +g1,23482:6630773,11544663 +) +k1,23483:6630773,11544663:0 +g1,23483:12605944,11544663 +h1,23483:14265714,11544663:0,0,0 +k1,23483:32583030,11544663:18317316 +g1,23483:32583030,11544663 +) +(1,23488:6630773,12360590:25952256,424439,106246 +(1,23485:6630773,12360590:0,0,0 +g1,23485:6630773,12360590 +g1,23485:6630773,12360590 +g1,23485:6303093,12360590 +(1,23485:6303093,12360590:0,0,0 +) +g1,23485:6630773,12360590 +) +g1,23488:7626635,12360590 +g1,23488:7958589,12360590 +g1,23488:8290543,12360590 +g1,23488:8622497,12360590 +g1,23488:8954451,12360590 +g1,23488:9286405,12360590 +g1,23488:9618359,12360590 +g1,23488:9950313,12360590 +g1,23488:11610083,12360590 +h1,23488:15261576,12360590:0,0,0 +k1,23488:32583028,12360590:17321452 +g1,23488:32583028,12360590 +) +(1,23488:6630773,13045445:25952256,424439,6605 +h1,23488:6630773,13045445:0,0,0 +g1,23488:7626635,13045445 +g1,23488:11610082,13045445 +g1,23488:11942036,13045445 +g1,23488:12273990,13045445 +h1,23488:15261575,13045445:0,0,0 +k1,23488:32583029,13045445:17321454 +g1,23488:32583029,13045445 +) +] +) +g1,23489:32583029,13052050 +g1,23489:6630773,13052050 +g1,23489:6630773,13052050 +g1,23489:32583029,13052050 +g1,23489:32583029,13052050 +) +h1,23489:6630773,13248658:0,0,0 +v1,23493:6630773,13933513:0,393216,0 +(1,23517:6630773,29306841:25952256,15766544,196608 +g1,23517:6630773,29306841 +g1,23517:6630773,29306841 +g1,23517:6434165,29306841 +(1,23517:6434165,29306841:0,15766544,196608 +r1,23556:32779637,29306841:26345472,15963152,196608 +k1,23517:6434165,29306841:-26345472 +) +(1,23517:6434165,29306841:26345472,15766544,196608 +[1,23517:6630773,29306841:25952256,15569936,0 +(1,23495:6630773,14161344:25952256,424439,112852 +(1,23494:6630773,14161344:0,0,0 +g1,23494:6630773,14161344 +g1,23494:6630773,14161344 +g1,23494:6303093,14161344 +(1,23494:6303093,14161344:0,0,0 +) +g1,23494:6630773,14161344 +) +g1,23495:9950312,14161344 +k1,23495:9950312,14161344:0 +h1,23495:10614220,14161344:0,0,0 +k1,23495:32583028,14161344:21968808 +g1,23495:32583028,14161344 +) +(1,23496:6630773,14846199:25952256,431045,112852 +h1,23496:6630773,14846199:0,0,0 +g1,23496:6962727,14846199 +g1,23496:7294681,14846199 +g1,23496:7626635,14846199 +g1,23496:7958589,14846199 +g1,23496:12937898,14846199 +g1,23496:13601806,14846199 +k1,23496:13601806,14846199:0 +h1,23496:29867548,14846199:0,0,0 +k1,23496:32583029,14846199:2715481 +g1,23496:32583029,14846199 +) +(1,23497:6630773,15531054:25952256,424439,106246 +h1,23497:6630773,15531054:0,0,0 +g1,23497:6962727,15531054 +g1,23497:7294681,15531054 +g1,23497:7626635,15531054 +g1,23497:7958589,15531054 +g1,23497:8290543,15531054 +g1,23497:8622497,15531054 +g1,23497:8954451,15531054 +g1,23497:9286405,15531054 +g1,23497:9618359,15531054 +g1,23497:9950313,15531054 +g1,23497:10282267,15531054 +g1,23497:10614221,15531054 +g1,23497:10946175,15531054 +g1,23497:11278129,15531054 +g1,23497:14597668,15531054 +g1,23497:15261576,15531054 +g1,23497:18581116,15531054 +h1,23497:23560425,15531054:0,0,0 +k1,23497:32583029,15531054:9022604 +g1,23497:32583029,15531054 +) +(1,23502:6630773,16871269:25952256,431045,112852 +k1,23501:7631239,16871269:336558 +k1,23501:8299750,16871269:336557 +k1,23501:10296078,16871269:336558 +k1,23501:12292405,16871269:336557 +k1,23501:13292871,16871269:336558 +k1,23501:15953106,16871269:336557 +k1,23501:17285526,16871269:336558 +k1,23501:19281853,16871269:336557 +k1,23501:20282319,16871269:336558 +k1,23501:23274507,16871269:336557 +k1,23501:25270835,16871269:336558 +k1,23501:26603254,16871269:336557 +k1,23501:31587167,16871269:336558 +k1,23501:32583029,16871269:0 +) +(1,23502:6630773,17556124:25952256,424439,6605 +g1,23501:8290543,17556124 +k1,23502:32583030,17556124:21636856 +g1,23502:32583030,17556124 +) +(1,23503:6630773,18240979:25952256,424439,9908 +g1,23503:7626635,18240979 +g1,23503:9618359,18240979 +g1,23503:10946175,18240979 +g1,23503:13933760,18240979 +k1,23503:32583030,18240979:18317316 +g1,23503:32583030,18240979 +) +(1,23503:6630773,18925834:25952256,431045,106246 +k1,23503:7641597,18925834:346916 +k1,23503:8652422,18925834:346917 +k1,23503:10991062,18925834:346916 +k1,23503:15653379,18925834:346916 +k1,23503:32583029,18925834:0 +) +(1,23503:6630773,19610689:25952256,185520,0 +k1,23503:32583029,19610689:24292486 +g1,23503:32583029,19610689 +) +(1,23503:6630773,20295544:25952256,424439,86428 +g1,23503:7626635,20295544 +g1,23503:11278128,20295544 +k1,23503:32583030,20295544:20309040 +g1,23503:32583030,20295544 +) +(1,23503:6630773,20980399:25952256,424439,79822 +g1,23503:7626635,20980399 +g1,23503:8954451,20980399 +g1,23503:10614221,20980399 +k1,23503:32583029,20980399:20640992 +g1,23503:32583029,20980399 +) +(1,23503:6630773,21665254:25952256,424439,106246 +g1,23503:7626635,21665254 +g1,23503:8954451,21665254 +g1,23503:10614221,21665254 +k1,23503:32583030,21665254:18317316 +g1,23503:32583030,21665254 +) +(1,23503:6630773,22350109:25952256,398014,0 +k1,23503:32583029,22350109:25288348 +g1,23503:32583029,22350109 +) +(1,23503:6630773,23034964:25952256,431045,106246 +g1,23503:7626635,23034964 +g1,23503:8290543,23034964 +g1,23503:9618359,23034964 +g1,23503:12605944,23034964 +g1,23503:13601806,23034964 +g1,23503:16589391,23034964 +g1,23503:17917207,23034964 +g1,23503:19576977,23034964 +g1,23503:21900655,23034964 +g1,23503:26548010,23034964 +g1,23503:27875826,23034964 +g1,23503:29535596,23034964 +k1,23503:32583029,23034964:1387663 +g1,23503:32583029,23034964 +) +(1,23503:6630773,23719819:25952256,431045,106246 +k1,23503:7707843,23719819:413162 +k1,23503:8452959,23719819:413162 +k1,23503:11189800,23719819:413163 +k1,23503:12598824,23719819:413162 +k1,23503:15003710,23719819:413162 +k1,23503:17076642,23719819:413162 +k1,23503:18153713,23719819:413163 +k1,23503:19562737,23719819:413162 +k1,23503:24955208,23719819:413162 +k1,23503:25700324,23719819:413162 +k1,23503:28105211,23719819:413163 +k1,23503:29182281,23719819:413162 +k1,23503:31255213,23719819:413162 +k1,23503:32583029,23719819:0 +) +(1,23503:6630773,24404674:25952256,298373,112852 +k1,23503:32583028,24404674:23296624 +g1,23503:32583028,24404674 +) +(1,23504:6630773,25613817:25952256,424439,112852 +(1,23503:6630773,25613817:0,0,0 +g1,23503:6630773,25613817 +g1,23503:6630773,25613817 +g1,23503:6303093,25613817 +(1,23503:6303093,25613817:0,0,0 +) +g1,23503:6630773,25613817 +) +k1,23504:6630773,25613817:0 +g1,23504:12605944,25613817 +h1,23504:14597668,25613817:0,0,0 +k1,23504:32583028,25613817:17985360 +g1,23504:32583028,25613817 +) +(1,23509:6630773,26298672:25952256,424439,106246 +(1,23506:6630773,26298672:0,0,0 +g1,23506:6630773,26298672 +g1,23506:6630773,26298672 +g1,23506:6303093,26298672 +(1,23506:6303093,26298672:0,0,0 +) +g1,23506:6630773,26298672 +) +g1,23509:7626635,26298672 +g1,23509:7958589,26298672 +g1,23509:8290543,26298672 +g1,23509:8622497,26298672 +g1,23509:8954451,26298672 +g1,23509:9286405,26298672 +g1,23509:9618359,26298672 +g1,23509:9950313,26298672 +g1,23509:11610083,26298672 +h1,23509:15261576,26298672:0,0,0 +k1,23509:32583028,26298672:17321452 +g1,23509:32583028,26298672 +) +(1,23509:6630773,26983527:25952256,424439,6605 +h1,23509:6630773,26983527:0,0,0 +g1,23509:7626635,26983527 +g1,23509:11610082,26983527 +g1,23509:11942036,26983527 +g1,23509:12273990,26983527 +h1,23509:15261575,26983527:0,0,0 +k1,23509:32583029,26983527:17321454 +g1,23509:32583029,26983527 +) +(1,23511:6630773,27799454:25952256,424439,112852 +(1,23510:6630773,27799454:0,0,0 +g1,23510:6630773,27799454 +g1,23510:6630773,27799454 +g1,23510:6303093,27799454 +(1,23510:6303093,27799454:0,0,0 +) +g1,23510:6630773,27799454 +) +k1,23511:6630773,27799454:0 +g1,23511:12605944,27799454 +h1,23511:14265714,27799454:0,0,0 +k1,23511:32583030,27799454:18317316 +g1,23511:32583030,27799454 +) +(1,23516:6630773,28615381:25952256,424439,106246 +(1,23513:6630773,28615381:0,0,0 +g1,23513:6630773,28615381 +g1,23513:6630773,28615381 +g1,23513:6303093,28615381 +(1,23513:6303093,28615381:0,0,0 +) +g1,23513:6630773,28615381 +) +g1,23516:7626635,28615381 +g1,23516:7958589,28615381 +g1,23516:8290543,28615381 +g1,23516:8622497,28615381 +g1,23516:8954451,28615381 +g1,23516:9286405,28615381 +g1,23516:9618359,28615381 +g1,23516:9950313,28615381 +g1,23516:11610083,28615381 +h1,23516:15261576,28615381:0,0,0 +k1,23516:32583028,28615381:17321452 +g1,23516:32583028,28615381 +) +(1,23516:6630773,29300236:25952256,424439,6605 +h1,23516:6630773,29300236:0,0,0 +g1,23516:7626635,29300236 +g1,23516:11610082,29300236 +g1,23516:11942036,29300236 +g1,23516:12273990,29300236 +h1,23516:15261575,29300236:0,0,0 +k1,23516:32583029,29300236:17321454 +g1,23516:32583029,29300236 +) +] +) +g1,23517:32583029,29306841 +g1,23517:6630773,29306841 +g1,23517:6630773,29306841 +g1,23517:32583029,29306841 +g1,23517:32583029,29306841 +) +h1,23517:6630773,29503449:0,0,0 +(1,23521:6630773,30368529:25952256,513147,134348 +h1,23520:6630773,30368529:983040,0,0 +k1,23520:9604906,30368529:216378 +k1,23520:12847081,30368529:216378 +k1,23520:13679497,30368529:216378 +k1,23520:16476027,30368529:216378 +k1,23520:18715501,30368529:216378 +k1,23520:21458293,30368529:216379 +k1,23520:22693756,30368529:216378 +k1,23520:24002619,30368529:216378 +k1,23520:24878289,30368529:216378 +k1,23520:26879868,30368529:216378 +k1,23520:28840159,30368529:216378 +k1,23520:29672575,30368529:216378 +k1,23520:32583029,30368529:0 +) +(1,23521:6630773,31233609:25952256,513147,126483 +k1,23520:9245255,31233609:268294 +k1,23520:10704994,31233609:268294 +k1,23520:12647077,31233609:268294 +k1,23520:13730640,31233609:268295 +k1,23520:15238875,31233609:268294 +k1,23520:20027843,31233609:268294 +k1,23520:21164489,31233609:268294 +k1,23520:22963049,31233609:268294 +k1,23520:23882771,31233609:268294 +k1,23520:25457199,31233609:268295 +k1,23520:28852871,31233609:268294 +k1,23520:30140250,31233609:268294 +k1,23520:31391584,31233609:268294 +k1,23520:32583029,31233609:0 +) +(1,23521:6630773,32098689:25952256,505283,134348 +k1,23520:8255017,32098689:233570 +k1,23520:8844447,32098689:233570 +k1,23520:10587968,32098689:233571 +k1,23520:13055660,32098689:233570 +k1,23520:14573736,32098689:233570 +k1,23520:15675658,32098689:233570 +k1,23520:17013510,32098689:233570 +k1,23520:18659382,32098689:233571 +k1,23520:19579114,32098689:233570 +k1,23520:22902707,32098689:233570 +k1,23520:23752315,32098689:233570 +k1,23520:26264572,32098689:233570 +h1,23520:28205748,32098689:0,0,0 +k1,23520:28439319,32098689:233571 +k1,23520:29482259,32098689:233570 +k1,23520:31213982,32098689:233570 +h1,23520:32409359,32098689:0,0,0 +k1,23520:32583029,32098689:0 +) +(1,23521:6630773,32963769:25952256,513147,134348 +k1,23520:9677435,32963769:256794 +(1,23520:9677435,32963769:0,459977,115847 +r1,23556:14959666,32963769:5282231,575824,115847 +k1,23520:9677435,32963769:-5282231 +) +(1,23520:9677435,32963769:5282231,459977,115847 +k1,23520:9677435,32963769:3277 +h1,23520:14956389,32963769:0,411205,112570 +) +k1,23520:15216460,32963769:256794 +k1,23520:16089293,32963769:256795 +k1,23520:17365172,32963769:256794 +k1,23520:18036751,32963769:256736 +k1,23520:20004690,32963769:256795 +k1,23520:22841636,32963769:256794 +k1,23520:24202712,32963769:256794 +k1,23520:25207272,32963769:256794 +k1,23520:26977293,32963769:256795 +k1,23520:27885515,32963769:256794 +k1,23520:31269687,32963769:256794 +k1,23520:32583029,32963769:0 +) +(1,23521:6630773,33828849:25952256,513147,134348 +k1,23520:8502059,33828849:135893 +k1,23520:10423154,33828849:135894 +k1,23520:11028940,33828849:135893 +k1,23520:14021548,33828849:135894 +k1,23520:16919784,33828849:135893 +k1,23520:19168559,33828849:135894 +k1,23520:20798018,33828849:135893 +k1,23520:21620073,33828849:135893 +k1,23520:23777753,33828849:135894 +k1,23520:24596531,33828849:135893 +k1,23520:26132274,33828849:135894 +k1,23520:27459612,33828849:135893 +k1,23520:29210313,33828849:135894 +k1,23520:30029091,33828849:135893 +k1,23520:32583029,33828849:0 +) +(1,23521:6630773,34693929:25952256,513147,122846 +g1,23520:8021447,34693929 +g1,23520:10983019,34693929 +g1,23520:13966873,34693929 +g1,23520:15659668,34693929 +g1,23520:16545059,34693929 +(1,23520:16545059,34693929:0,452978,115847 +r1,23556:20068731,34693929:3523672,568825,115847 +k1,23520:16545059,34693929:-3523672 +) +(1,23520:16545059,34693929:3523672,452978,115847 +k1,23520:16545059,34693929:3277 +h1,23520:20065454,34693929:0,411205,112570 +) +g1,23520:20441630,34693929 +(1,23520:20441630,34693929:0,452978,122846 +r1,23556:22558455,34693929:2116825,575824,122846 +k1,23520:20441630,34693929:-2116825 +) +(1,23520:20441630,34693929:2116825,452978,122846 +k1,23520:20441630,34693929:3277 +h1,23520:22555178,34693929:0,411205,112570 +) +g1,23520:22757684,34693929 +g1,23520:24148358,34693929 +(1,23520:24148358,34693929:0,452978,115847 +r1,23556:27672030,34693929:3523672,568825,115847 +k1,23520:24148358,34693929:-3523672 +) +(1,23520:24148358,34693929:3523672,452978,115847 +g1,23520:27668753,34693929 +h1,23520:27668753,34693929:0,411205,112570 +) +k1,23521:32583029,34693929:4737329 +g1,23521:32583029,34693929 +) +v1,23523:6630773,35559009:0,393216,0 +(1,23524:6630773,36911749:25952256,1745956,0 +g1,23524:6630773,36911749 +g1,23524:6237557,36911749 +r1,23556:6368629,36911749:131072,1745956,0 +g1,23524:6567858,36911749 +g1,23524:6764466,36911749 +[1,23524:6764466,36911749:25818563,1745956,0 +(1,23524:6764466,35920186:25818563,754393,260573 +(1,23523:6764466,35920186:0,754393,260573 +r1,23556:8010564,35920186:1246098,1014966,260573 +k1,23523:6764466,35920186:-1246098 +) +(1,23523:6764466,35920186:1246098,754393,260573 +) +k1,23523:8192075,35920186:181511 +k1,23523:8519755,35920186:327680 +k1,23523:9743288,35920186:181511 +k1,23523:13440806,35920186:181511 +k1,23523:16399733,35920186:181511 +k1,23523:17894586,35920186:181511 +k1,23523:20256480,35920186:181511 +k1,23523:21185757,35920186:181511 +k1,23523:25262728,35920186:181511 +k1,23523:26060277,35920186:181511 +k1,23523:28263574,35920186:181511 +k1,23523:30401335,35920186:181511 +k1,23524:32583029,35920186:0 +) +(1,23524:6764466,36785266:25818563,505283,126483 +(1,23523:6764466,36785266:0,452978,115847 +r1,23556:10639850,36785266:3875384,568825,115847 +k1,23523:6764466,36785266:-3875384 +) +(1,23523:6764466,36785266:3875384,452978,115847 +g1,23523:8526302,36785266 +g1,23523:9229726,36785266 +h1,23523:10636573,36785266:0,411205,112570 +) +g1,23523:11012749,36785266 +g1,23523:13097449,36785266 +g1,23523:13828175,36785266 +g1,23523:16739939,36785266 +g1,23523:18825294,36785266 +k1,23524:32583029,36785266:9644041 +g1,23524:32583029,36785266 +) +] +g1,23524:32583029,36911749 +) +h1,23524:6630773,36911749:0,0,0 +v1,23528:6630773,37596604:0,393216,0 +(1,23534:6630773,39280573:25952256,2077185,196608 +g1,23534:6630773,39280573 +g1,23534:6630773,39280573 +g1,23534:6434165,39280573 +(1,23534:6434165,39280573:0,2077185,196608 +r1,23556:32779637,39280573:26345472,2273793,196608 +k1,23534:6434165,39280573:-26345472 +) +(1,23534:6434165,39280573:26345472,2077185,196608 +[1,23534:6630773,39280573:25952256,1880577,0 +(1,23530:6630773,37831041:25952256,431045,112852 +(1,23529:6630773,37831041:0,0,0 +g1,23529:6630773,37831041 +g1,23529:6630773,37831041 +g1,23529:6303093,37831041 +(1,23529:6303093,37831041:0,0,0 +) +g1,23529:6630773,37831041 +) +k1,23530:6630773,37831041:0 +k1,23530:6630773,37831041:0 +h1,23530:27543869,37831041:0,0,0 +k1,23530:32583029,37831041:5039160 +g1,23530:32583029,37831041 +) +(1,23531:6630773,38515896:25952256,424439,106246 +h1,23531:6630773,38515896:0,0,0 +g1,23531:6962727,38515896 +g1,23531:7294681,38515896 +g1,23531:7626635,38515896 +g1,23531:7958589,38515896 +g1,23531:8290543,38515896 +g1,23531:8622497,38515896 +g1,23531:8954451,38515896 +g1,23531:9286405,38515896 +g1,23531:9618359,38515896 +g1,23531:9950313,38515896 +g1,23531:10282267,38515896 +g1,23531:10614221,38515896 +g1,23531:10946175,38515896 +g1,23531:11278129,38515896 +k1,23531:11278129,38515896:0 +h1,23531:19245023,38515896:0,0,0 +k1,23531:32583029,38515896:13338006 +g1,23531:32583029,38515896 +) +(1,23532:6630773,39200751:25952256,424439,79822 +h1,23532:6630773,39200751:0,0,0 +g1,23532:6962727,39200751 +g1,23532:7294681,39200751 +g1,23532:7626635,39200751 +g1,23532:7958589,39200751 +g1,23532:8290543,39200751 +g1,23532:8622497,39200751 +g1,23532:8954451,39200751 +g1,23532:9286405,39200751 +g1,23532:9618359,39200751 +g1,23532:9950313,39200751 +g1,23532:10282267,39200751 +g1,23532:10614221,39200751 +g1,23532:10946175,39200751 +g1,23532:11278129,39200751 +g1,23532:12937899,39200751 +g1,23532:13601807,39200751 +h1,23532:15261577,39200751:0,0,0 +k1,23532:32583029,39200751:17321452 +g1,23532:32583029,39200751 +) +] +) +g1,23534:32583029,39280573 +g1,23534:6630773,39280573 +g1,23534:6630773,39280573 +g1,23534:32583029,39280573 +g1,23534:32583029,39280573 +) +h1,23534:6630773,39477181:0,0,0 +(1,23538:6630773,40342261:25952256,513147,134348 +h1,23537:6630773,40342261:983040,0,0 +k1,23537:11037116,40342261:303134 +k1,23537:11956288,40342261:303134 +k1,23537:14839574,40342261:303134 +k1,23537:17943716,40342261:303134 +k1,23537:18933012,40342261:303134 +k1,23537:20514754,40342261:303135 +k1,23537:21504050,40342261:303134 +k1,23537:23551097,40342261:303134 +k1,23537:24470269,40342261:303134 +k1,23537:27353555,40342261:303134 +k1,23537:30056616,40342261:303134 +k1,23537:32583029,40342261:0 +) +(1,23538:6630773,41207341:25952256,513147,134348 +k1,23537:8663099,41207341:247125 +k1,23537:9960111,41207341:247125 +k1,23537:12485923,41207341:247125 +h1,23537:14253429,41207341:0,0,0 +k1,23537:14500554,41207341:247125 +k1,23537:15557049,41207341:247125 +k1,23537:17302328,41207341:247126 +h1,23537:18497705,41207341:0,0,0 +k1,23537:18744830,41207341:247125 +k1,23537:19939606,41207341:247125 +k1,23537:21836928,41207341:247125 +k1,23537:25891039,41207341:247125 +k1,23537:27960720,41207341:247125 +k1,23537:31379788,41207341:247125 +k1,23537:32583029,41207341:0 +) +(1,23538:6630773,42072421:25952256,513147,7863 +g1,23537:8259342,42072421 +g1,23537:9117863,42072421 +g1,23537:10706455,42072421 +g1,23537:12173150,42072421 +k1,23538:32583029,42072421:19821366 +g1,23538:32583029,42072421 +) +v1,23540:6630773,42757276:0,393216,0 +(1,23556:6630773,45046278:25952256,2682218,196608 +g1,23556:6630773,45046278 +g1,23556:6630773,45046278 +g1,23556:6434165,45046278 +(1,23556:6434165,45046278:0,2682218,196608 +r1,23556:32779637,45046278:26345472,2878826,196608 +k1,23556:6434165,45046278:-26345472 +) +(1,23556:6434165,45046278:26345472,2682218,196608 +[1,23556:6630773,45046278:25952256,2485610,0 +(1,23542:6630773,42991713:25952256,431045,52847 +(1,23541:6630773,42991713:0,0,0 +g1,23541:6630773,42991713 +g1,23541:6630773,42991713 +g1,23541:6303093,42991713 +(1,23541:6303093,42991713:0,0,0 +) +g1,23541:6630773,42991713 +) +g1,23542:12605944,42991713 +k1,23542:12605944,42991713:0 +h1,23542:13269852,42991713:0,0,0 +k1,23542:32583028,42991713:19313176 +g1,23542:32583028,42991713 +) +(1,23543:6630773,43676568:25952256,431045,112852 +h1,23543:6630773,43676568:0,0,0 +g1,23543:6962727,43676568 +g1,23543:7294681,43676568 +g1,23543:12273990,43676568 +g1,23543:12937898,43676568 +k1,23543:12937898,43676568:0 +h1,23543:28871686,43676568:0,0,0 +k1,23543:32583029,43676568:3711343 +g1,23543:32583029,43676568 +) +(1,23544:6630773,44361423:25952256,431045,79822 +h1,23544:6630773,44361423:0,0,0 +g1,23544:6962727,44361423 +g1,23544:7294681,44361423 +g1,23544:7626635,44361423 +g1,23544:7958589,44361423 +g1,23544:8290543,44361423 +g1,23544:8622497,44361423 +g1,23544:8954451,44361423 +g1,23544:9286405,44361423 +g1,23544:9618359,44361423 +g1,23544:9950313,44361423 +g1,23544:10282267,44361423 +g1,23544:10614221,44361423 +g1,23544:15261576,44361423 +g1,23544:15925484,44361423 +h1,23544:17585254,44361423:0,0,0 +k1,23544:32583029,44361423:14997775 +g1,23544:32583029,44361423 +) +(1,23545:6630773,45046278:25952256,431045,79822 +h1,23545:6630773,45046278:0,0,0 +k1,23545:6630773,45046278:0 +h1,23545:14265713,45046278:0,0,0 +k1,23545:32583029,45046278:18317316 +g1,23545:32583029,45046278 +) +] +) +g1,23556:32583029,45046278 +g1,23556:6630773,45046278 +g1,23556:6630773,45046278 +g1,23556:32583029,45046278 +g1,23556:32583029,45046278 +) +] +(1,23556:32583029,45706769:0,0,0 +g1,23556:32583029,45706769 +) +) +] +(1,23556:6630773,47279633:25952256,0,0 +h1,23556:6630773,47279633:25952256,0,0 +) +] +(1,23556:4262630,4025873:0,0,0 +[1,23556:-473656,4025873:0,0,0 +(1,23556:-473656,-710413:0,0,0 +(1,23556:-473656,-710413:0,0,0 +g1,23556:-473656,-710413 +) +g1,23556:-473656,-710413 +) +] +) +] +!26702 +}405 +Input:3760:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !106 -{421 -[1,23248:4262630,47279633:28320399,43253760,0 -(1,23248:4262630,4025873:0,0,0 -[1,23248:-473656,4025873:0,0,0 -(1,23248:-473656,-710413:0,0,0 -(1,23248:-473656,-644877:0,0,0 -k1,23248:-473656,-644877:-65536 +{406 +[1,23613:4262630,47279633:28320399,43253760,0 +(1,23613:4262630,4025873:0,0,0 +[1,23613:-473656,4025873:0,0,0 +(1,23613:-473656,-710413:0,0,0 +(1,23613:-473656,-644877:0,0,0 +k1,23613:-473656,-644877:-65536 ) -(1,23248:-473656,4736287:0,0,0 -k1,23248:-473656,4736287:5209943 +(1,23613:-473656,4736287:0,0,0 +k1,23613:-473656,4736287:5209943 ) -g1,23248:-473656,-710413 +g1,23613:-473656,-710413 ) ] ) -[1,23248:6630773,47279633:25952256,43253760,0 -[1,23248:6630773,4812305:25952256,786432,0 -(1,23248:6630773,4812305:25952256,505283,134348 -(1,23248:6630773,4812305:25952256,505283,134348 -g1,23248:3078558,4812305 -[1,23248:3078558,4812305:0,0,0 -(1,23248:3078558,2439708:0,1703936,0 -k1,23248:1358238,2439708:-1720320 -(1,21457:1358238,2439708:1720320,1703936,0 -(1,21457:1358238,2439708:1179648,16384,0 -r1,23248:2537886,2439708:1179648,16384,0 +[1,23613:6630773,47279633:25952256,43253760,0 +[1,23613:6630773,4812305:25952256,786432,0 +(1,23613:6630773,4812305:25952256,513147,126483 +(1,23613:6630773,4812305:25952256,513147,126483 +g1,23613:3078558,4812305 +[1,23613:3078558,4812305:0,0,0 +(1,23613:3078558,2439708:0,1703936,0 +k1,23613:1358238,2439708:-1720320 +(1,21670:1358238,2439708:1720320,1703936,0 +(1,21670:1358238,2439708:1179648,16384,0 +r1,23613:2537886,2439708:1179648,16384,0 ) -g1,21457:3062174,2439708 -(1,21457:3062174,2439708:16384,1703936,0 -[1,21457:3062174,2439708:25952256,1703936,0 -(1,21457:3062174,1915420:25952256,1179648,0 -(1,21457:3062174,1915420:16384,1179648,0 -r1,23248:3078558,1915420:16384,1179648,0 +g1,21670:3062174,2439708 +(1,21670:3062174,2439708:16384,1703936,0 +[1,21670:3062174,2439708:25952256,1703936,0 +(1,21670:3062174,1915420:25952256,1179648,0 +(1,21670:3062174,1915420:16384,1179648,0 +r1,23613:3078558,1915420:16384,1179648,0 ) -k1,21457:29014430,1915420:25935872 -g1,21457:29014430,1915420 +k1,21670:29014430,1915420:25935872 +g1,21670:29014430,1915420 ) ] ) ) ) ] -[1,23248:3078558,4812305:0,0,0 -(1,23248:3078558,2439708:0,1703936,0 -g1,23248:29030814,2439708 -g1,23248:36135244,2439708 -(1,21457:36135244,2439708:1720320,1703936,0 -(1,21457:36135244,2439708:16384,1703936,0 -[1,21457:36135244,2439708:25952256,1703936,0 -(1,21457:36135244,1915420:25952256,1179648,0 -(1,21457:36135244,1915420:16384,1179648,0 -r1,23248:36151628,1915420:16384,1179648,0 +[1,23613:3078558,4812305:0,0,0 +(1,23613:3078558,2439708:0,1703936,0 +g1,23613:29030814,2439708 +g1,23613:36135244,2439708 +(1,21670:36135244,2439708:1720320,1703936,0 +(1,21670:36135244,2439708:16384,1703936,0 +[1,21670:36135244,2439708:25952256,1703936,0 +(1,21670:36135244,1915420:25952256,1179648,0 +(1,21670:36135244,1915420:16384,1179648,0 +r1,23613:36151628,1915420:16384,1179648,0 ) -k1,21457:62087500,1915420:25935872 -g1,21457:62087500,1915420 +k1,21670:62087500,1915420:25935872 +g1,21670:62087500,1915420 ) ] ) -g1,21457:36675916,2439708 -(1,21457:36675916,2439708:1179648,16384,0 -r1,23248:37855564,2439708:1179648,16384,0 +g1,21670:36675916,2439708 +(1,21670:36675916,2439708:1179648,16384,0 +r1,23613:37855564,2439708:1179648,16384,0 ) ) -k1,23248:3078556,2439708:-34777008 +k1,23613:3078556,2439708:-34777008 ) ] -[1,23248:3078558,4812305:0,0,0 -(1,23248:3078558,49800853:0,16384,2228224 -k1,23248:1358238,49800853:-1720320 -(1,21457:1358238,49800853:1720320,16384,2228224 -(1,21457:1358238,49800853:1179648,16384,0 -r1,23248:2537886,49800853:1179648,16384,0 +[1,23613:3078558,4812305:0,0,0 +(1,23613:3078558,49800853:0,16384,2228224 +k1,23613:1358238,49800853:-1720320 +(1,21670:1358238,49800853:1720320,16384,2228224 +(1,21670:1358238,49800853:1179648,16384,0 +r1,23613:2537886,49800853:1179648,16384,0 +) +g1,21670:3062174,49800853 +(1,21670:3062174,52029077:16384,1703936,0 +[1,21670:3062174,52029077:25952256,1703936,0 +(1,21670:3062174,51504789:25952256,1179648,0 +(1,21670:3062174,51504789:16384,1179648,0 +r1,23613:3078558,51504789:16384,1179648,0 ) -g1,21457:3062174,49800853 -(1,21457:3062174,52029077:16384,1703936,0 -[1,21457:3062174,52029077:25952256,1703936,0 -(1,21457:3062174,51504789:25952256,1179648,0 -(1,21457:3062174,51504789:16384,1179648,0 -r1,23248:3078558,51504789:16384,1179648,0 -) -k1,21457:29014430,51504789:25935872 -g1,21457:29014430,51504789 +k1,21670:29014430,51504789:25935872 +g1,21670:29014430,51504789 ) ] ) ) -) -] -[1,23248:3078558,4812305:0,0,0 -(1,23248:3078558,49800853:0,16384,2228224 -g1,23248:29030814,49800853 -g1,23248:36135244,49800853 -(1,21457:36135244,49800853:1720320,16384,2228224 -(1,21457:36135244,52029077:16384,1703936,0 -[1,21457:36135244,52029077:25952256,1703936,0 -(1,21457:36135244,51504789:25952256,1179648,0 -(1,21457:36135244,51504789:16384,1179648,0 -r1,23248:36151628,51504789:16384,1179648,0 -) -k1,21457:62087500,51504789:25935872 -g1,21457:62087500,51504789 -) -] -) -g1,21457:36675916,49800853 -(1,21457:36675916,49800853:1179648,16384,0 -r1,23248:37855564,49800853:1179648,16384,0 -) -) -k1,23248:3078556,49800853:-34777008 -) -] -g1,23248:6630773,4812305 -k1,23248:21078841,4812305:13252691 -g1,23248:22701512,4812305 -g1,23248:23350318,4812305 -g1,23248:24759997,4812305 -g1,23248:28372341,4812305 -g1,23248:30105768,4812305 -) -) -] -[1,23248:6630773,45706769:25952256,40108032,0 -(1,23248:6630773,45706769:25952256,40108032,0 -(1,23248:6630773,45706769:0,0,0 -g1,23248:6630773,45706769 -) -[1,23248:6630773,45706769:25952256,40108032,0 -v1,23166:6630773,6254097:0,393216,0 -(1,23166:6630773,8444519:25952256,2583638,196608 -g1,23166:6630773,8444519 -g1,23166:6630773,8444519 -g1,23166:6434165,8444519 -(1,23166:6434165,8444519:0,2583638,196608 -r1,23248:32779637,8444519:26345472,2780246,196608 -k1,23166:6434165,8444519:-26345472 -) -(1,23166:6434165,8444519:26345472,2583638,196608 -[1,23166:6630773,8444519:25952256,2387030,0 -(1,23165:6630773,6436549:25952256,379060,0 -h1,23165:6630773,6436549:0,0,0 -h1,23165:7263064,6436549:0,0,0 -k1,23165:32583028,6436549:25319964 -g1,23165:32583028,6436549 -) -(1,23165:6630773,7102727:25952256,404226,107478 -h1,23165:6630773,7102727:0,0,0 -g1,23165:7579210,7102727 -g1,23165:7895356,7102727 -g1,23165:8211502,7102727 -g1,23165:9476085,7102727 -g1,23165:9792231,7102727 -g1,23165:10108377,7102727 -g1,23165:11689106,7102727 -g1,23165:12005252,7102727 -g1,23165:14218272,7102727 -g1,23165:14534418,7102727 -g1,23165:14850564,7102727 -g1,23165:16115147,7102727 -g1,23165:16431293,7102727 -g1,23165:16747439,7102727 -g1,23165:18012022,7102727 -g1,23165:19908896,7102727 -h1,23165:22754207,7102727:0,0,0 -k1,23165:32583029,7102727:9828822 -g1,23165:32583029,7102727 -) -(1,23165:6630773,7768905:25952256,404226,107478 -h1,23165:6630773,7768905:0,0,0 -g1,23165:7579210,7768905 -g1,23165:7895356,7768905 -g1,23165:8211502,7768905 -g1,23165:10108377,7768905 -g1,23165:12005252,7768905 -g1,23165:12321398,7768905 -g1,23165:14218273,7768905 -g1,23165:16115148,7768905 -g1,23165:18012023,7768905 -g1,23165:19908898,7768905 -k1,23165:19908898,7768905:0 -h1,23165:21489627,7768905:0,0,0 -k1,23165:32583029,7768905:11093402 -g1,23165:32583029,7768905 -) -(1,23165:6630773,8435083:25952256,404226,9436 -h1,23165:6630773,8435083:0,0,0 -g1,23165:7579210,8435083 -g1,23165:8211502,8435083 -g1,23165:9159939,8435083 -g1,23165:9476085,8435083 -g1,23165:9792231,8435083 -g1,23165:10108377,8435083 -g1,23165:12005251,8435083 -g1,23165:12321397,8435083 -g1,23165:12637543,8435083 -g1,23165:12953689,8435083 -g1,23165:13269835,8435083 -g1,23165:13585981,8435083 -g1,23165:14218273,8435083 -g1,23165:14534419,8435083 -g1,23165:14850565,8435083 -g1,23165:15166711,8435083 -g1,23165:15482857,8435083 -g1,23165:16115149,8435083 -g1,23165:16431295,8435083 -g1,23165:16747441,8435083 -g1,23165:17063587,8435083 -g1,23165:17379733,8435083 -g1,23165:18012025,8435083 -g1,23165:19908899,8435083 -h1,23165:21489627,8435083:0,0,0 -k1,23165:32583029,8435083:11093402 -g1,23165:32583029,8435083 -) -] -) -g1,23166:32583029,8444519 -g1,23166:6630773,8444519 -g1,23166:6630773,8444519 -g1,23166:32583029,8444519 -g1,23166:32583029,8444519 -) -h1,23166:6630773,8641127:0,0,0 -v1,23170:6630773,10355881:0,393216,0 -(1,23182:6630773,14570003:25952256,4607338,196608 -g1,23182:6630773,14570003 -g1,23182:6630773,14570003 -g1,23182:6434165,14570003 -(1,23182:6434165,14570003:0,4607338,196608 -r1,23248:32779637,14570003:26345472,4803946,196608 -k1,23182:6434165,14570003:-26345472 -) -(1,23182:6434165,14570003:26345472,4607338,196608 -[1,23182:6630773,14570003:25952256,4410730,0 -(1,23172:6630773,10563499:25952256,404226,101187 -(1,23171:6630773,10563499:0,0,0 -g1,23171:6630773,10563499 -g1,23171:6630773,10563499 -g1,23171:6303093,10563499 -(1,23171:6303093,10563499:0,0,0 -) -g1,23171:6630773,10563499 -) -k1,23172:6630773,10563499:0 -h1,23172:14850561,10563499:0,0,0 -k1,23172:32583029,10563499:17732468 -g1,23172:32583029,10563499 -) -(1,23181:6630773,11229677:25952256,404226,9436 -(1,23174:6630773,11229677:0,0,0 -g1,23174:6630773,11229677 -g1,23174:6630773,11229677 -g1,23174:6303093,11229677 -(1,23174:6303093,11229677:0,0,0 -) -g1,23174:6630773,11229677 -) -g1,23181:7579210,11229677 -g1,23181:8211502,11229677 -g1,23181:8843794,11229677 -g1,23181:11372960,11229677 -g1,23181:12005252,11229677 -g1,23181:12637544,11229677 -h1,23181:12953690,11229677:0,0,0 -k1,23181:32583030,11229677:19629340 -g1,23181:32583030,11229677 -) -(1,23181:6630773,11895855:25952256,404226,107478 -h1,23181:6630773,11895855:0,0,0 -g1,23181:7579210,11895855 -g1,23181:7895356,11895855 -g1,23181:8211502,11895855 -g1,23181:9792231,11895855 -g1,23181:10108377,11895855 -g1,23181:12321397,11895855 -g1,23181:14218271,11895855 -g1,23181:16115145,11895855 -g1,23181:16431291,11895855 -g1,23181:16747437,11895855 -g1,23181:17063583,11895855 -g1,23181:18012020,11895855 -g1,23181:19908894,11895855 -h1,23181:22754205,11895855:0,0,0 -k1,23181:32583029,11895855:9828824 -g1,23181:32583029,11895855 -) -(1,23181:6630773,12562033:25952256,404226,107478 -h1,23181:6630773,12562033:0,0,0 -g1,23181:7579210,12562033 -g1,23181:7895356,12562033 -g1,23181:8211502,12562033 -g1,23181:10108377,12562033 -g1,23181:10424523,12562033 -g1,23181:12321398,12562033 -g1,23181:14218273,12562033 -g1,23181:16115148,12562033 -g1,23181:18012023,12562033 -g1,23181:19908898,12562033 -k1,23181:19908898,12562033:0 -h1,23181:21489627,12562033:0,0,0 -k1,23181:32583029,12562033:11093402 -g1,23181:32583029,12562033 -) -(1,23181:6630773,13228211:25952256,404226,9436 -h1,23181:6630773,13228211:0,0,0 -g1,23181:7579210,13228211 -g1,23181:8211502,13228211 -g1,23181:9476085,13228211 -g1,23181:9792231,13228211 -g1,23181:10108377,13228211 -g1,23181:10424523,13228211 -g1,23181:10740669,13228211 -g1,23181:11056815,13228211 -g1,23181:12321398,13228211 -g1,23181:12637544,13228211 -g1,23181:12953690,13228211 -g1,23181:13269836,13228211 -g1,23181:13585982,13228211 -g1,23181:14218274,13228211 -g1,23181:14534420,13228211 -g1,23181:14850566,13228211 -g1,23181:16115149,13228211 -g1,23181:16431295,13228211 -g1,23181:16747441,13228211 -g1,23181:17063587,13228211 -g1,23181:17379733,13228211 -g1,23181:18012025,13228211 -g1,23181:19908899,13228211 -h1,23181:21173482,13228211:0,0,0 -k1,23181:32583029,13228211:11409547 -g1,23181:32583029,13228211 -) -(1,23181:6630773,13894389:25952256,404226,9436 -h1,23181:6630773,13894389:0,0,0 -g1,23181:7579210,13894389 -g1,23181:8211502,13894389 -g1,23181:9476085,13894389 -g1,23181:9792231,13894389 -g1,23181:10108377,13894389 -g1,23181:10424523,13894389 -g1,23181:10740669,13894389 -g1,23181:11056815,13894389 -g1,23181:11372961,13894389 -g1,23181:12321398,13894389 -g1,23181:12637544,13894389 -g1,23181:12953690,13894389 -g1,23181:13269836,13894389 -g1,23181:13585982,13894389 -g1,23181:14218274,13894389 -g1,23181:14534420,13894389 -g1,23181:14850566,13894389 -g1,23181:15166712,13894389 -g1,23181:16115149,13894389 -g1,23181:16431295,13894389 -g1,23181:16747441,13894389 -g1,23181:17063587,13894389 -g1,23181:17379733,13894389 -g1,23181:18012025,13894389 -g1,23181:19908899,13894389 -h1,23181:21173482,13894389:0,0,0 -k1,23181:32583029,13894389:11409547 -g1,23181:32583029,13894389 -) -(1,23181:6630773,14560567:25952256,404226,9436 -h1,23181:6630773,14560567:0,0,0 -g1,23181:7579210,14560567 -g1,23181:8211502,14560567 -g1,23181:9792231,14560567 -g1,23181:10108377,14560567 -g1,23181:10424523,14560567 -g1,23181:10740669,14560567 -g1,23181:11056815,14560567 -g1,23181:11372961,14560567 -g1,23181:12321398,14560567 -g1,23181:12637544,14560567 -g1,23181:12953690,14560567 -g1,23181:13269836,14560567 -g1,23181:13585982,14560567 -g1,23181:14218274,14560567 -g1,23181:14534420,14560567 -g1,23181:14850566,14560567 -g1,23181:15166712,14560567 -g1,23181:16115149,14560567 -g1,23181:16431295,14560567 -g1,23181:16747441,14560567 -g1,23181:17063587,14560567 -g1,23181:17379733,14560567 -g1,23181:18012025,14560567 -g1,23181:19908899,14560567 -h1,23181:21173482,14560567:0,0,0 -k1,23181:32583029,14560567:11409547 -g1,23181:32583029,14560567 -) -] -) -g1,23182:32583029,14570003 -g1,23182:6630773,14570003 -g1,23182:6630773,14570003 -g1,23182:32583029,14570003 -g1,23182:32583029,14570003 -) -h1,23182:6630773,14766611:0,0,0 -v1,23186:6630773,16481365:0,393216,0 -(1,23197:6630773,20121060:25952256,4032911,196608 -g1,23197:6630773,20121060 -g1,23197:6630773,20121060 -g1,23197:6434165,20121060 -(1,23197:6434165,20121060:0,4032911,196608 -r1,23248:32779637,20121060:26345472,4229519,196608 -k1,23197:6434165,20121060:-26345472 -) -(1,23197:6434165,20121060:26345472,4032911,196608 -[1,23197:6630773,20121060:25952256,3836303,0 -(1,23188:6630773,16688983:25952256,404226,101187 -(1,23187:6630773,16688983:0,0,0 -g1,23187:6630773,16688983 -g1,23187:6630773,16688983 -g1,23187:6303093,16688983 -(1,23187:6303093,16688983:0,0,0 -) -g1,23187:6630773,16688983 -) -k1,23188:6630773,16688983:0 -h1,23188:14850561,16688983:0,0,0 -k1,23188:32583029,16688983:17732468 -g1,23188:32583029,16688983 -) -(1,23196:6630773,17355161:25952256,404226,9436 -(1,23190:6630773,17355161:0,0,0 -g1,23190:6630773,17355161 -g1,23190:6630773,17355161 -g1,23190:6303093,17355161 -(1,23190:6303093,17355161:0,0,0 -) -g1,23190:6630773,17355161 -) -g1,23196:7579210,17355161 -g1,23196:8211502,17355161 -g1,23196:8843794,17355161 -g1,23196:11372960,17355161 -g1,23196:12005252,17355161 -g1,23196:12637544,17355161 -h1,23196:12953690,17355161:0,0,0 -k1,23196:32583030,17355161:19629340 -g1,23196:32583030,17355161 -) -(1,23196:6630773,18021339:25952256,404226,101187 -h1,23196:6630773,18021339:0,0,0 -g1,23196:7579210,18021339 -g1,23196:7895356,18021339 -g1,23196:8211502,18021339 -g1,23196:8527648,18021339 -g1,23196:8843794,18021339 -g1,23196:9159940,18021339 -g1,23196:10108377,18021339 -g1,23196:11689106,18021339 -g1,23196:12005252,18021339 -g1,23196:12321398,18021339 -g1,23196:12637544,18021339 -g1,23196:12953690,18021339 -g1,23196:13269836,18021339 -g1,23196:13585982,18021339 -g1,23196:13902128,18021339 -g1,23196:14218274,18021339 -g1,23196:14534420,18021339 -g1,23196:14850566,18021339 -g1,23196:16431295,18021339 -g1,23196:16747441,18021339 -g1,23196:17063587,18021339 -g1,23196:17379733,18021339 -g1,23196:17695879,18021339 -g1,23196:19592753,18021339 -g1,23196:21489627,18021339 -h1,23196:24334938,18021339:0,0,0 -k1,23196:32583029,18021339:8248091 -g1,23196:32583029,18021339 -) -(1,23196:6630773,18687517:25952256,404226,107478 -h1,23196:6630773,18687517:0,0,0 -g1,23196:7579210,18687517 -g1,23196:7895356,18687517 -g1,23196:8211502,18687517 -g1,23196:10108377,18687517 -g1,23196:12005252,18687517 -g1,23196:12321398,18687517 -g1,23196:12637544,18687517 -g1,23196:12953690,18687517 -g1,23196:13269836,18687517 -g1,23196:13585982,18687517 -g1,23196:13902128,18687517 -g1,23196:14218274,18687517 -g1,23196:14534420,18687517 -g1,23196:14850566,18687517 -g1,23196:16747441,18687517 -g1,23196:17063587,18687517 -g1,23196:17379733,18687517 -g1,23196:17695879,18687517 -g1,23196:19592754,18687517 -g1,23196:21489629,18687517 -k1,23196:21489629,18687517:0 -h1,23196:23070358,18687517:0,0,0 -k1,23196:32583029,18687517:9512671 -g1,23196:32583029,18687517 -) -(1,23196:6630773,19353695:25952256,388497,101187 -h1,23196:6630773,19353695:0,0,0 -g1,23196:7579210,19353695 -g1,23196:8211502,19353695 -g1,23196:8527648,19353695 -g1,23196:8843794,19353695 -g1,23196:9159940,19353695 -g1,23196:9476086,19353695 -g1,23196:10108378,19353695 -g1,23196:12005252,19353695 -g1,23196:12321398,19353695 -g1,23196:12637544,19353695 -g1,23196:12953690,19353695 -g1,23196:13269836,19353695 -g1,23196:13585982,19353695 -g1,23196:13902128,19353695 -g1,23196:14218274,19353695 -g1,23196:14534420,19353695 -g1,23196:14850566,19353695 -g1,23196:17695877,19353695 -g1,23196:18012023,19353695 -g1,23196:18328169,19353695 -g1,23196:18644315,19353695 -g1,23196:18960461,19353695 -g1,23196:19592753,19353695 -g1,23196:19908899,19353695 -g1,23196:20225045,19353695 -g1,23196:20541191,19353695 -g1,23196:21489628,19353695 -h1,23196:23070356,19353695:0,0,0 -k1,23196:32583029,19353695:9512673 -g1,23196:32583029,19353695 -) -(1,23196:6630773,20019873:25952256,404226,101187 -h1,23196:6630773,20019873:0,0,0 -g1,23196:7579210,20019873 -g1,23196:8211502,20019873 -g1,23196:8527648,20019873 -g1,23196:8843794,20019873 -g1,23196:9159940,20019873 -g1,23196:9476086,20019873 -g1,23196:10108378,20019873 -g1,23196:14850564,20019873 -g1,23196:17695875,20019873 -g1,23196:18012021,20019873 -g1,23196:18328167,20019873 -g1,23196:18644313,20019873 -g1,23196:18960459,20019873 -g1,23196:19592751,20019873 -g1,23196:19908897,20019873 -g1,23196:20225043,20019873 -g1,23196:20541189,20019873 -g1,23196:20857335,20019873 -g1,23196:21489627,20019873 -h1,23196:23070355,20019873:0,0,0 -k1,23196:32583029,20019873:9512674 -g1,23196:32583029,20019873 -) -] -) -g1,23197:32583029,20121060 -g1,23197:6630773,20121060 -g1,23197:6630773,20121060 -g1,23197:32583029,20121060 -g1,23197:32583029,20121060 -) -h1,23197:6630773,20317668:0,0,0 -(1,23202:6630773,21683444:25952256,513147,134348 -h1,23200:6630773,21683444:983040,0,0 -k1,23200:8804152,21683444:236790 -k1,23200:11244918,21683444:236790 -k1,23200:11837567,21683444:236789 -k1,23200:14154470,21683444:236790 -k1,23200:15050552,21683444:236790 -k1,23200:16306427,21683444:236790 -k1,23200:17932579,21683444:236789 -k1,23200:19436835,21683444:236790 -k1,23200:20029485,21683444:236790 -k1,23200:22077690,21683444:236790 -k1,23200:22930517,21683444:236789 -k1,23200:24556015,21683444:236790 -k1,23200:25682784,21683444:236790 -k1,23200:27366609,21683444:236790 -k1,23200:29957451,21683444:236789 -k1,23200:31385686,21683444:236790 -k1,23200:32583029,21683444:0 -) -(1,23202:6630773,22524932:25952256,513147,134348 -g1,23201:7849087,22524932 -g1,23201:10479702,22524932 -g1,23201:12414324,22524932 -g1,23201:12969413,22524932 -g1,23201:14558661,22524932 -g1,23201:17504504,22524932 -g1,23201:19271354,22524932 -g1,23201:21633270,22524932 -g1,23201:23023944,22524932 -g1,23201:26007798,22524932 -g1,23201:27774648,22524932 -k1,23202:32583029,22524932:2662078 -g1,23202:32583029,22524932 -) -v1,23204:6630773,23715398:0,393216,0 -(1,23221:6630773,31260410:25952256,7938228,196608 -g1,23221:6630773,31260410 -g1,23221:6630773,31260410 -g1,23221:6434165,31260410 -(1,23221:6434165,31260410:0,7938228,196608 -r1,23248:32779637,31260410:26345472,8134836,196608 -k1,23221:6434165,31260410:-26345472 -) -(1,23221:6434165,31260410:26345472,7938228,196608 -[1,23221:6630773,31260410:25952256,7741620,0 -(1,23206:6630773,23923016:25952256,404226,101187 -(1,23205:6630773,23923016:0,0,0 -g1,23205:6630773,23923016 -g1,23205:6630773,23923016 -g1,23205:6303093,23923016 -(1,23205:6303093,23923016:0,0,0 -) -g1,23205:6630773,23923016 -) -k1,23206:6630773,23923016:0 -k1,23206:6630773,23923016:0 -h1,23206:15482852,23923016:0,0,0 -k1,23206:32583028,23923016:17100176 -g1,23206:32583028,23923016 -) -(1,23207:6630773,24589194:25952256,410518,107478 -h1,23207:6630773,24589194:0,0,0 -g1,23207:6946919,24589194 -g1,23207:7263065,24589194 -g1,23207:7579211,24589194 -g1,23207:7895357,24589194 -g1,23207:8211503,24589194 -g1,23207:8527649,24589194 -g1,23207:8843795,24589194 -g1,23207:9159941,24589194 -g1,23207:9476087,24589194 -g1,23207:9792233,24589194 -g1,23207:10108379,24589194 -g1,23207:10424525,24589194 -g1,23207:10740671,24589194 -g1,23207:12005254,24589194 -g1,23207:12637546,24589194 -g1,23207:16431295,24589194 -g1,23207:17379733,24589194 -g1,23207:18328170,24589194 -k1,23207:18328170,24589194:0 -h1,23207:18960462,24589194:0,0,0 -k1,23207:32583029,24589194:13622567 -g1,23207:32583029,24589194 -) -(1,23208:6630773,25255372:25952256,410518,107478 -h1,23208:6630773,25255372:0,0,0 -g1,23208:6946919,25255372 -g1,23208:7263065,25255372 -g1,23208:7579211,25255372 -g1,23208:7895357,25255372 -g1,23208:8211503,25255372 -g1,23208:8527649,25255372 -g1,23208:8843795,25255372 -g1,23208:9159941,25255372 -g1,23208:9476087,25255372 -g1,23208:9792233,25255372 -g1,23208:10108379,25255372 -g1,23208:10424525,25255372 -g1,23208:10740671,25255372 -g1,23208:12005254,25255372 -g1,23208:12637546,25255372 -g1,23208:16431295,25255372 -g1,23208:17379733,25255372 -g1,23208:18328170,25255372 -g1,23208:19592753,25255372 -k1,23208:19592753,25255372:0 -h1,23208:20857335,25255372:0,0,0 -k1,23208:32583029,25255372:11725694 -g1,23208:32583029,25255372 -) -(1,23209:6630773,25921550:25952256,404226,101187 -h1,23209:6630773,25921550:0,0,0 -g1,23209:6946919,25921550 -g1,23209:7263065,25921550 -g1,23209:11372959,25921550 -g1,23209:12005251,25921550 -g1,23209:12953689,25921550 -g1,23209:14850563,25921550 -g1,23209:15482855,25921550 -g1,23209:23070352,25921550 -g1,23209:23702644,25921550 -g1,23209:27812538,25921550 -k1,23209:27812538,25921550:0 -h1,23209:29077120,25921550:0,0,0 -k1,23209:32583029,25921550:3505909 -g1,23209:32583029,25921550 -) -(1,23210:6630773,26587728:25952256,404226,82312 -h1,23210:6630773,26587728:0,0,0 -g1,23210:6946919,26587728 -g1,23210:7263065,26587728 -g1,23210:11372959,26587728 -g1,23210:12005251,26587728 -g1,23210:12953689,26587728 -k1,23210:12953689,26587728:0 -h1,23210:14850563,26587728:0,0,0 -k1,23210:32583029,26587728:17732466 -g1,23210:32583029,26587728 -) -(1,23220:6630773,27253906:25952256,404226,9436 -(1,23212:6630773,27253906:0,0,0 -g1,23212:6630773,27253906 -g1,23212:6630773,27253906 -g1,23212:6303093,27253906 -(1,23212:6303093,27253906:0,0,0 -) -g1,23212:6630773,27253906 -) -g1,23220:7579210,27253906 -g1,23220:8211502,27253906 -g1,23220:8843794,27253906 -g1,23220:11372960,27253906 -g1,23220:12321397,27253906 -g1,23220:12953689,27253906 -h1,23220:13269835,27253906:0,0,0 -k1,23220:32583029,27253906:19313194 -g1,23220:32583029,27253906 -) -(1,23220:6630773,27920084:25952256,404226,101187 -h1,23220:6630773,27920084:0,0,0 -g1,23220:7579210,27920084 -g1,23220:7895356,27920084 -g1,23220:8211502,27920084 -g1,23220:10108376,27920084 -g1,23220:14850562,27920084 -g1,23220:15166708,27920084 -g1,23220:15482854,27920084 -g1,23220:16747437,27920084 -g1,23220:17063583,27920084 -g1,23220:17379729,27920084 -g1,23220:18644312,27920084 -h1,23220:20225040,27920084:0,0,0 -k1,23220:32583029,27920084:12357989 -g1,23220:32583029,27920084 -) -(1,23220:6630773,28586262:25952256,404226,6290 -h1,23220:6630773,28586262:0,0,0 -g1,23220:7579210,28586262 -g1,23220:7895356,28586262 -g1,23220:8211502,28586262 -g1,23220:10108377,28586262 -g1,23220:10424523,28586262 -g1,23220:10740669,28586262 -g1,23220:11056815,28586262 -g1,23220:11372961,28586262 -g1,23220:11689107,28586262 -g1,23220:12005253,28586262 -g1,23220:12321399,28586262 -g1,23220:12637545,28586262 -g1,23220:12953691,28586262 -g1,23220:14850566,28586262 -g1,23220:16747441,28586262 -g1,23220:18644316,28586262 -k1,23220:18644316,28586262:0 -h1,23220:20225045,28586262:0,0,0 -k1,23220:32583029,28586262:12357984 -g1,23220:32583029,28586262 -) -(1,23220:6630773,29252440:25952256,388497,9436 -h1,23220:6630773,29252440:0,0,0 -g1,23220:7579210,29252440 -g1,23220:8211502,29252440 -g1,23220:8527648,29252440 -g1,23220:10108377,29252440 -g1,23220:10424523,29252440 -g1,23220:10740669,29252440 -g1,23220:11056815,29252440 -g1,23220:11372961,29252440 -g1,23220:11689107,29252440 -g1,23220:12005253,29252440 -g1,23220:14850564,29252440 -g1,23220:15166710,29252440 -g1,23220:16747439,29252440 -g1,23220:17063585,29252440 -g1,23220:18644314,29252440 -g1,23220:18960460,29252440 -g1,23220:19276606,29252440 -g1,23220:19592752,29252440 -h1,23220:20225043,29252440:0,0,0 -k1,23220:32583029,29252440:12357986 -g1,23220:32583029,29252440 -) -(1,23220:6630773,29918618:25952256,388497,9436 -h1,23220:6630773,29918618:0,0,0 -g1,23220:7579210,29918618 -g1,23220:8211502,29918618 -g1,23220:8527648,29918618 -g1,23220:10108377,29918618 -g1,23220:10424523,29918618 -g1,23220:10740669,29918618 -g1,23220:11056815,29918618 -g1,23220:11372961,29918618 -g1,23220:11689107,29918618 -g1,23220:12005253,29918618 -g1,23220:14850564,29918618 -g1,23220:15166710,29918618 -g1,23220:16747439,29918618 -g1,23220:17063585,29918618 -g1,23220:18644314,29918618 -g1,23220:18960460,29918618 -g1,23220:19276606,29918618 -g1,23220:19592752,29918618 -g1,23220:19908898,29918618 -h1,23220:20225044,29918618:0,0,0 -k1,23220:32583029,29918618:12357985 -g1,23220:32583029,29918618 -) -(1,23220:6630773,30584796:25952256,388497,9436 -h1,23220:6630773,30584796:0,0,0 -g1,23220:7579210,30584796 -g1,23220:8211502,30584796 -g1,23220:8527648,30584796 -g1,23220:10108377,30584796 -g1,23220:10424523,30584796 -g1,23220:10740669,30584796 -g1,23220:11056815,30584796 -g1,23220:11372961,30584796 -g1,23220:11689107,30584796 -g1,23220:12005253,30584796 -g1,23220:14850564,30584796 -g1,23220:15166710,30584796 -g1,23220:16747439,30584796 -g1,23220:17063585,30584796 -g1,23220:18644314,30584796 -g1,23220:18960460,30584796 -g1,23220:19276606,30584796 -g1,23220:19592752,30584796 -g1,23220:19908898,30584796 -h1,23220:20225044,30584796:0,0,0 -k1,23220:32583029,30584796:12357985 -g1,23220:32583029,30584796 -) -(1,23220:6630773,31250974:25952256,404226,9436 -h1,23220:6630773,31250974:0,0,0 -g1,23220:7579210,31250974 -g1,23220:8211502,31250974 -g1,23220:8843794,31250974 -g1,23220:9476086,31250974 -g1,23220:11056815,31250974 -h1,23220:12321398,31250974:0,0,0 -k1,23220:32583030,31250974:20261632 -g1,23220:32583030,31250974 -) -] -) -g1,23221:32583029,31260410 -g1,23221:6630773,31260410 -g1,23221:6630773,31260410 -g1,23221:32583029,31260410 -g1,23221:32583029,31260410 -) -h1,23221:6630773,31457018:0,0,0 -(1,23225:6630773,32822794:25952256,513147,134348 -h1,23224:6630773,32822794:983040,0,0 -k1,23224:8476015,32822794:234367 -k1,23224:9913623,32822794:234367 -k1,23224:12389320,32822794:234366 -k1,23224:15458774,32822794:234367 -k1,23224:16561493,32822794:234367 -k1,23224:18999836,32822794:234367 -k1,23224:20623565,32822794:234366 -k1,23224:21805583,32822794:234367 -k1,23224:22806066,32822794:234367 -k1,23224:24324939,32822794:234367 -k1,23224:26577814,32822794:234366 -k1,23224:28556749,32822794:234367 -k1,23224:31753999,32822794:234367 -k1,23224:32583029,32822794:0 -) -(1,23225:6630773,33664282:25952256,513147,126483 -k1,23224:9201791,33664282:213688 -k1,23224:10618720,33664282:213688 -k1,23224:11700759,33664282:213687 -k1,23224:13444713,33664282:213688 -k1,23224:15034002,33664282:213688 -k1,23224:15899118,33664282:213688 -k1,23224:17585399,33664282:213687 -k1,23224:18818172,33664282:213688 -k1,23224:20223305,33664282:213688 -k1,23224:21384644,33664282:213688 -(1,23224:21384644,33664282:0,452978,115847 -r1,23248:22446333,33664282:1061689,568825,115847 -k1,23224:21384644,33664282:-1061689 -) -(1,23224:21384644,33664282:1061689,452978,115847 -k1,23224:21384644,33664282:3277 -h1,23224:22443056,33664282:0,411205,112570 -) -k1,23224:22660020,33664282:213687 -k1,23224:24441329,33664282:213688 -k1,23224:25674102,33664282:213688 -k1,23224:27858458,33664282:213688 -k1,23224:30101140,33664282:213687 -k1,23224:31511515,33664282:213688 -k1,23225:32583029,33664282:0 -) -(1,23225:6630773,34505770:25952256,513147,126483 -k1,23224:7770861,34505770:187195 -k1,23224:8489552,34505770:187194 -k1,23224:12034156,34505770:187195 -k1,23224:16538207,34505770:187194 -k1,23224:17916847,34505770:187195 -k1,23224:20817232,34505770:187194 -k1,23224:21952078,34505770:187195 -k1,23224:23158357,34505770:187194 -k1,23224:25197599,34505770:187195 -k1,23224:29060052,34505770:187194 -k1,23224:31386342,34505770:187195 -k1,23224:32583029,34505770:0 -) -(1,23225:6630773,35347258:25952256,513147,134348 -g1,23224:9737179,35347258 -g1,23224:10595700,35347258 -g1,23224:11814014,35347258 -g1,23224:14444629,35347258 -g1,23224:17201728,35347258 -k1,23225:32583029,35347258:11716528 -g1,23225:32583029,35347258 -) -v1,23227:6630773,36537724:0,393216,0 -(1,23243:6630773,43489434:25952256,7344926,196608 -g1,23243:6630773,43489434 -g1,23243:6630773,43489434 -g1,23243:6434165,43489434 -(1,23243:6434165,43489434:0,7344926,196608 -r1,23248:32779637,43489434:26345472,7541534,196608 -k1,23243:6434165,43489434:-26345472 -) -(1,23243:6434165,43489434:26345472,7344926,196608 -[1,23243:6630773,43489434:25952256,7148318,0 -(1,23229:6630773,36745342:25952256,404226,101187 -(1,23228:6630773,36745342:0,0,0 -g1,23228:6630773,36745342 -g1,23228:6630773,36745342 -g1,23228:6303093,36745342 -(1,23228:6303093,36745342:0,0,0 -) -g1,23228:6630773,36745342 -) -k1,23229:6630773,36745342:0 -k1,23229:6630773,36745342:0 -h1,23229:15482852,36745342:0,0,0 -k1,23229:32583028,36745342:17100176 -g1,23229:32583028,36745342 -) -(1,23230:6630773,37411520:25952256,410518,107478 -h1,23230:6630773,37411520:0,0,0 -g1,23230:6946919,37411520 -g1,23230:7263065,37411520 -g1,23230:7579211,37411520 -g1,23230:7895357,37411520 -g1,23230:8211503,37411520 -g1,23230:8527649,37411520 -g1,23230:8843795,37411520 -g1,23230:9159941,37411520 -g1,23230:9476087,37411520 -g1,23230:9792233,37411520 -g1,23230:10108379,37411520 -g1,23230:10424525,37411520 -g1,23230:10740671,37411520 -g1,23230:12005254,37411520 -g1,23230:12637546,37411520 -g1,23230:16431295,37411520 -g1,23230:17379733,37411520 -g1,23230:18328170,37411520 -g1,23230:19276608,37411520 -k1,23230:19276608,37411520:0 -h1,23230:20541190,37411520:0,0,0 -k1,23230:32583029,37411520:12041839 -g1,23230:32583029,37411520 -) -(1,23231:6630773,38077698:25952256,404226,101187 -h1,23231:6630773,38077698:0,0,0 -g1,23231:6946919,38077698 -g1,23231:7263065,38077698 -g1,23231:11372959,38077698 -g1,23231:12005251,38077698 -g1,23231:12953689,38077698 -g1,23231:14850563,38077698 -g1,23231:15482855,38077698 -g1,23231:23070352,38077698 -g1,23231:23702644,38077698 -g1,23231:27812538,38077698 -k1,23231:27812538,38077698:0 -h1,23231:29077120,38077698:0,0,0 -k1,23231:32583029,38077698:3505909 -g1,23231:32583029,38077698 -) -(1,23232:6630773,38743876:25952256,404226,82312 -h1,23232:6630773,38743876:0,0,0 -g1,23232:6946919,38743876 -g1,23232:7263065,38743876 -g1,23232:11372959,38743876 -g1,23232:12005251,38743876 -g1,23232:12953689,38743876 -k1,23232:12953689,38743876:0 -h1,23232:14850563,38743876:0,0,0 -k1,23232:32583029,38743876:17732466 -g1,23232:32583029,38743876 -) -(1,23242:6630773,39410054:25952256,404226,82312 -(1,23234:6630773,39410054:0,0,0 -g1,23234:6630773,39410054 -g1,23234:6630773,39410054 -g1,23234:6303093,39410054 -(1,23234:6303093,39410054:0,0,0 -) -g1,23234:6630773,39410054 -) -g1,23242:7579210,39410054 -g1,23242:8211502,39410054 -g1,23242:8843794,39410054 -g1,23242:11372960,39410054 -g1,23242:13269835,39410054 -g1,23242:13902127,39410054 -h1,23242:14218273,39410054:0,0,0 -k1,23242:32583029,39410054:18364756 -g1,23242:32583029,39410054 -) -(1,23242:6630773,40076232:25952256,404226,101187 -h1,23242:6630773,40076232:0,0,0 -g1,23242:7579210,40076232 -g1,23242:7895356,40076232 -g1,23242:8211502,40076232 -g1,23242:10108376,40076232 -g1,23242:14850562,40076232 -g1,23242:15166708,40076232 -g1,23242:15482854,40076232 -g1,23242:16747437,40076232 -g1,23242:17063583,40076232 -g1,23242:17379729,40076232 -g1,23242:18644312,40076232 -h1,23242:20225040,40076232:0,0,0 -k1,23242:32583029,40076232:12357989 -g1,23242:32583029,40076232 -) -(1,23242:6630773,40742410:25952256,404226,6290 -h1,23242:6630773,40742410:0,0,0 -g1,23242:7579210,40742410 -g1,23242:7895356,40742410 -g1,23242:8211502,40742410 -g1,23242:10108377,40742410 -g1,23242:10424523,40742410 -g1,23242:10740669,40742410 -g1,23242:11056815,40742410 -g1,23242:11372961,40742410 -g1,23242:11689107,40742410 -g1,23242:12005253,40742410 -g1,23242:12321399,40742410 -g1,23242:12637545,40742410 -g1,23242:12953691,40742410 -g1,23242:14850566,40742410 -g1,23242:16747441,40742410 -g1,23242:18644316,40742410 -k1,23242:18644316,40742410:0 -h1,23242:20225045,40742410:0,0,0 -k1,23242:32583029,40742410:12357984 -g1,23242:32583029,40742410 -) -(1,23242:6630773,41408588:25952256,388497,9436 -h1,23242:6630773,41408588:0,0,0 -g1,23242:7579210,41408588 -g1,23242:8211502,41408588 -g1,23242:8527648,41408588 -g1,23242:10108377,41408588 -g1,23242:10424523,41408588 -g1,23242:10740669,41408588 -g1,23242:11056815,41408588 -g1,23242:11372961,41408588 -g1,23242:11689107,41408588 -g1,23242:12005253,41408588 -g1,23242:14850564,41408588 -g1,23242:15166710,41408588 -g1,23242:16747439,41408588 -g1,23242:17063585,41408588 -g1,23242:18644314,41408588 -g1,23242:18960460,41408588 -g1,23242:19276606,41408588 -g1,23242:19592752,41408588 -h1,23242:20225043,41408588:0,0,0 -k1,23242:32583029,41408588:12357986 -g1,23242:32583029,41408588 -) -(1,23242:6630773,42074766:25952256,388497,9436 -h1,23242:6630773,42074766:0,0,0 -g1,23242:7579210,42074766 -g1,23242:8211502,42074766 -g1,23242:8527648,42074766 -g1,23242:10108377,42074766 -g1,23242:10424523,42074766 -g1,23242:10740669,42074766 -g1,23242:11056815,42074766 -g1,23242:11372961,42074766 -g1,23242:11689107,42074766 -g1,23242:12005253,42074766 -g1,23242:14850564,42074766 -g1,23242:15166710,42074766 -g1,23242:16747439,42074766 -g1,23242:17063585,42074766 -g1,23242:18644314,42074766 -g1,23242:18960460,42074766 -g1,23242:19276606,42074766 -g1,23242:19592752,42074766 -h1,23242:20225043,42074766:0,0,0 -k1,23242:32583029,42074766:12357986 -g1,23242:32583029,42074766 -) -(1,23242:6630773,42740944:25952256,388497,9436 -h1,23242:6630773,42740944:0,0,0 -g1,23242:7579210,42740944 -g1,23242:8211502,42740944 -g1,23242:8527648,42740944 -g1,23242:10108377,42740944 -g1,23242:10424523,42740944 -g1,23242:10740669,42740944 -g1,23242:11056815,42740944 -g1,23242:11372961,42740944 -g1,23242:11689107,42740944 -g1,23242:12005253,42740944 -g1,23242:14850564,42740944 -g1,23242:15166710,42740944 -g1,23242:16747439,42740944 -g1,23242:17063585,42740944 -g1,23242:18644314,42740944 -g1,23242:18960460,42740944 -g1,23242:19276606,42740944 -g1,23242:19592752,42740944 -h1,23242:20225043,42740944:0,0,0 -k1,23242:32583029,42740944:12357986 -g1,23242:32583029,42740944 -) -(1,23242:6630773,43407122:25952256,404226,82312 -h1,23242:6630773,43407122:0,0,0 -g1,23242:7579210,43407122 -g1,23242:8211502,43407122 -g1,23242:8843794,43407122 -g1,23242:10740669,43407122 -g1,23242:12321398,43407122 -h1,23242:13585981,43407122:0,0,0 -k1,23242:32583029,43407122:18997048 -g1,23242:32583029,43407122 -) -] -) -g1,23243:32583029,43489434 -g1,23243:6630773,43489434 -g1,23243:6630773,43489434 -g1,23243:32583029,43489434 -g1,23243:32583029,43489434 -) -h1,23243:6630773,43686042:0,0,0 -v1,23247:6630773,45576106:0,393216,0 -] -(1,23248:32583029,45706769:0,0,0 -g1,23248:32583029,45706769 -) -) -] -(1,23248:6630773,47279633:25952256,0,0 -h1,23248:6630773,47279633:25952256,0,0 -) -] -(1,23248:4262630,4025873:0,0,0 -[1,23248:-473656,4025873:0,0,0 -(1,23248:-473656,-710413:0,0,0 -(1,23248:-473656,-710413:0,0,0 -g1,23248:-473656,-710413 -) -g1,23248:-473656,-710413 -) -] -) -] -!32194 -}421 -Input:3714:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3715:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3716:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3717:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!388 -{422 -[1,23308:4262630,47279633:28320399,43253760,0 -(1,23308:4262630,4025873:0,0,0 -[1,23308:-473656,4025873:0,0,0 -(1,23308:-473656,-710413:0,0,0 -(1,23308:-473656,-644877:0,0,0 -k1,23308:-473656,-644877:-65536 -) -(1,23308:-473656,4736287:0,0,0 -k1,23308:-473656,4736287:5209943 -) -g1,23308:-473656,-710413 +) +] +[1,23613:3078558,4812305:0,0,0 +(1,23613:3078558,49800853:0,16384,2228224 +g1,23613:29030814,49800853 +g1,23613:36135244,49800853 +(1,21670:36135244,49800853:1720320,16384,2228224 +(1,21670:36135244,52029077:16384,1703936,0 +[1,21670:36135244,52029077:25952256,1703936,0 +(1,21670:36135244,51504789:25952256,1179648,0 +(1,21670:36135244,51504789:16384,1179648,0 +r1,23613:36151628,51504789:16384,1179648,0 +) +k1,21670:62087500,51504789:25935872 +g1,21670:62087500,51504789 +) +] +) +g1,21670:36675916,49800853 +(1,21670:36675916,49800853:1179648,16384,0 +r1,23613:37855564,49800853:1179648,16384,0 +) +) +k1,23613:3078556,49800853:-34777008 +) +] +g1,23613:6630773,4812305 +g1,23613:6630773,4812305 +g1,23613:8364200,4812305 +g1,23613:11956228,4812305 +g1,23613:13698175,4812305 +g1,23613:16459862,4812305 +g1,23613:18899112,4812305 +k1,23613:31387652,4812305:12488540 +) +) +] +[1,23613:6630773,45706769:25952256,40108032,0 +(1,23613:6630773,45706769:25952256,40108032,0 +(1,23613:6630773,45706769:0,0,0 +g1,23613:6630773,45706769 +) +[1,23613:6630773,45706769:25952256,40108032,0 +v1,23556:6630773,6254097:0,393216,0 +(1,23556:6630773,10574541:25952256,4713660,196608 +g1,23556:6630773,10574541 +g1,23556:6630773,10574541 +g1,23556:6434165,10574541 +(1,23556:6434165,10574541:0,4713660,196608 +r1,23613:32779637,10574541:26345472,4910268,196608 +k1,23556:6434165,10574541:-26345472 +) +(1,23556:6434165,10574541:26345472,4713660,196608 +[1,23556:6630773,10574541:25952256,4517052,0 +(1,23555:6630773,6455503:25952256,398014,8257 +(1,23547:6630773,6455503:0,0,0 +g1,23547:6630773,6455503 +g1,23547:6630773,6455503 +g1,23547:6303093,6455503 +(1,23547:6303093,6455503:0,0,0 +) +g1,23547:6630773,6455503 +) +g1,23555:7626635,6455503 +g1,23555:7958589,6455503 +g1,23555:8290543,6455503 +g1,23555:10946175,6455503 +h1,23555:12937899,6455503:0,0,0 +k1,23555:32583029,6455503:19645130 +g1,23555:32583029,6455503 +) +(1,23555:6630773,7140358:25952256,424439,9908 +h1,23555:6630773,7140358:0,0,0 +g1,23555:7626635,7140358 +g1,23555:8290543,7140358 +g1,23555:8622497,7140358 +g1,23555:8954451,7140358 +g1,23555:9286405,7140358 +g1,23555:9618359,7140358 +g1,23555:10946175,7140358 +g1,23555:11278129,7140358 +h1,23555:12937899,7140358:0,0,0 +k1,23555:32583029,7140358:19645130 +g1,23555:32583029,7140358 +) +(1,23555:6630773,7825213:25952256,424439,9908 +h1,23555:6630773,7825213:0,0,0 +g1,23555:7626635,7825213 +g1,23555:8290543,7825213 +g1,23555:8622497,7825213 +g1,23555:8954451,7825213 +g1,23555:9286405,7825213 +g1,23555:9618359,7825213 +g1,23555:10946175,7825213 +g1,23555:11278129,7825213 +h1,23555:12937899,7825213:0,0,0 +k1,23555:32583029,7825213:19645130 +g1,23555:32583029,7825213 +) +(1,23555:6630773,8510068:25952256,424439,9908 +h1,23555:6630773,8510068:0,0,0 +g1,23555:7626635,8510068 +g1,23555:8290543,8510068 +g1,23555:8622497,8510068 +g1,23555:8954451,8510068 +g1,23555:9286405,8510068 +g1,23555:9618359,8510068 +g1,23555:10946175,8510068 +g1,23555:11278129,8510068 +h1,23555:12937899,8510068:0,0,0 +k1,23555:32583029,8510068:19645130 +g1,23555:32583029,8510068 +) +(1,23555:6630773,9194923:25952256,424439,9908 +h1,23555:6630773,9194923:0,0,0 +g1,23555:7626635,9194923 +g1,23555:8290543,9194923 +g1,23555:8622497,9194923 +g1,23555:8954451,9194923 +g1,23555:9286405,9194923 +g1,23555:9618359,9194923 +g1,23555:10946175,9194923 +g1,23555:11278129,9194923 +h1,23555:12937899,9194923:0,0,0 +k1,23555:32583029,9194923:19645130 +g1,23555:32583029,9194923 +) +(1,23555:6630773,9879778:25952256,424439,9908 +h1,23555:6630773,9879778:0,0,0 +g1,23555:7626635,9879778 +g1,23555:8290543,9879778 +g1,23555:8622497,9879778 +g1,23555:8954451,9879778 +g1,23555:9286405,9879778 +g1,23555:9618359,9879778 +g1,23555:10946175,9879778 +g1,23555:11278129,9879778 +h1,23555:12937899,9879778:0,0,0 +k1,23555:32583029,9879778:19645130 +g1,23555:32583029,9879778 +) +(1,23555:6630773,10564633:25952256,424439,9908 +h1,23555:6630773,10564633:0,0,0 +g1,23555:7626635,10564633 +g1,23555:8290543,10564633 +g1,23555:8622497,10564633 +g1,23555:8954451,10564633 +g1,23555:9286405,10564633 +g1,23555:9618359,10564633 +g1,23555:10946175,10564633 +g1,23555:11278129,10564633 +h1,23555:12937899,10564633:0,0,0 +k1,23555:32583029,10564633:19645130 +g1,23555:32583029,10564633 +) +] +) +g1,23556:32583029,10574541 +g1,23556:6630773,10574541 +g1,23556:6630773,10574541 +g1,23556:32583029,10574541 +g1,23556:32583029,10574541 +) +h1,23556:6630773,10771149:0,0,0 +v1,23560:6630773,11456004:0,393216,0 +(1,23575:6630773,17985207:25952256,6922419,196608 +g1,23575:6630773,17985207 +g1,23575:6630773,17985207 +g1,23575:6434165,17985207 +(1,23575:6434165,17985207:0,6922419,196608 +r1,23613:32779637,17985207:26345472,7119027,196608 +k1,23575:6434165,17985207:-26345472 +) +(1,23575:6434165,17985207:26345472,6922419,196608 +[1,23575:6630773,17985207:25952256,6725811,0 +(1,23562:6630773,11683835:25952256,424439,106246 +(1,23561:6630773,11683835:0,0,0 +g1,23561:6630773,11683835 +g1,23561:6630773,11683835 +g1,23561:6303093,11683835 +(1,23561:6303093,11683835:0,0,0 +) +g1,23561:6630773,11683835 +) +g1,23562:12605944,11683835 +k1,23562:12605944,11683835:0 +h1,23562:13269852,11683835:0,0,0 +k1,23562:32583028,11683835:19313176 +g1,23562:32583028,11683835 +) +(1,23563:6630773,12368690:25952256,431045,112852 +h1,23563:6630773,12368690:0,0,0 +g1,23563:6962727,12368690 +g1,23563:7294681,12368690 +g1,23563:7626635,12368690 +g1,23563:7958589,12368690 +g1,23563:12605944,12368690 +g1,23563:13269852,12368690 +h1,23563:29203640,12368690:0,0,0 +k1,23563:32583029,12368690:3379389 +g1,23563:32583029,12368690 +) +(1,23564:6630773,13053545:25952256,424439,106246 +h1,23564:6630773,13053545:0,0,0 +h1,23564:12273990,13053545:0,0,0 +k1,23564:32583030,13053545:20309040 +g1,23564:32583030,13053545 +) +(1,23574:6630773,13869472:25952256,424439,6605 +(1,23566:6630773,13869472:0,0,0 +g1,23566:6630773,13869472 +g1,23566:6630773,13869472 +g1,23566:6303093,13869472 +(1,23566:6303093,13869472:0,0,0 +) +g1,23566:6630773,13869472 +) +g1,23574:7626635,13869472 +g1,23574:8290543,13869472 +g1,23574:8954451,13869472 +g1,23574:11610083,13869472 +g1,23574:12605945,13869472 +g1,23574:13269853,13869472 +h1,23574:13601807,13869472:0,0,0 +k1,23574:32583029,13869472:18981222 +g1,23574:32583029,13869472 +) +(1,23574:6630773,14554327:25952256,398014,8257 +h1,23574:6630773,14554327:0,0,0 +g1,23574:7626635,14554327 +g1,23574:7958589,14554327 +g1,23574:8290543,14554327 +g1,23574:10946175,14554327 +h1,23574:12937899,14554327:0,0,0 +k1,23574:32583029,14554327:19645130 +g1,23574:32583029,14554327 +) +(1,23574:6630773,15239182:25952256,424439,6605 +h1,23574:6630773,15239182:0,0,0 +g1,23574:7626635,15239182 +g1,23574:7958589,15239182 +g1,23574:8290543,15239182 +g1,23574:8622497,15239182 +g1,23574:8954451,15239182 +g1,23574:10946175,15239182 +k1,23574:10946175,15239182:0 +h1,23574:13933760,15239182:0,0,0 +k1,23574:32583028,15239182:18649268 +g1,23574:32583028,15239182 +) +(1,23574:6630773,15924037:25952256,424439,79822 +h1,23574:6630773,15924037:0,0,0 +g1,23574:7626635,15924037 +g1,23574:8290543,15924037 +g1,23574:8622497,15924037 +g1,23574:8954451,15924037 +g1,23574:9286405,15924037 +g1,23574:9618359,15924037 +g1,23574:10946175,15924037 +g1,23574:11610083,15924037 +h1,23574:13933761,15924037:0,0,0 +k1,23574:32583029,15924037:18649268 +g1,23574:32583029,15924037 +) +(1,23574:6630773,16608892:25952256,424439,79822 +h1,23574:6630773,16608892:0,0,0 +g1,23574:7626635,16608892 +g1,23574:8290543,16608892 +g1,23574:8622497,16608892 +g1,23574:8954451,16608892 +g1,23574:9286405,16608892 +g1,23574:9618359,16608892 +g1,23574:10946175,16608892 +g1,23574:11610083,16608892 +h1,23574:13933761,16608892:0,0,0 +k1,23574:32583029,16608892:18649268 +g1,23574:32583029,16608892 +) +(1,23574:6630773,17293747:25952256,424439,79822 +h1,23574:6630773,17293747:0,0,0 +g1,23574:7626635,17293747 +g1,23574:8290543,17293747 +g1,23574:8622497,17293747 +g1,23574:8954451,17293747 +g1,23574:9286405,17293747 +g1,23574:9618359,17293747 +g1,23574:10282267,17293747 +g1,23574:10614221,17293747 +g1,23574:10946175,17293747 +g1,23574:11610083,17293747 +h1,23574:13933761,17293747:0,0,0 +k1,23574:32583029,17293747:18649268 +g1,23574:32583029,17293747 +) +(1,23574:6630773,17978602:25952256,424439,6605 +h1,23574:6630773,17978602:0,0,0 +g1,23574:7626635,17978602 +g1,23574:8290543,17978602 +g1,23574:8954451,17978602 +g1,23574:9950313,17978602 +g1,23574:11610083,17978602 +h1,23574:12937899,17978602:0,0,0 +k1,23574:32583029,17978602:19645130 +g1,23574:32583029,17978602 +) +] +) +g1,23575:32583029,17985207 +g1,23575:6630773,17985207 +g1,23575:6630773,17985207 +g1,23575:32583029,17985207 +g1,23575:32583029,17985207 +) +h1,23575:6630773,18181815:0,0,0 +(1,23579:6630773,19046895:25952256,513147,134348 +h1,23578:6630773,19046895:983040,0,0 +k1,23578:8397829,19046895:156181 +k1,23578:9757250,19046895:156180 +k1,23578:12574848,19046895:156181 +k1,23578:13599380,19046895:156180 +k1,23578:14848046,19046895:156181 +k1,23578:15360087,19046895:156181 +k1,23578:19411727,19046895:156180 +k1,23578:21982211,19046895:156138 +k1,23578:23121432,19046895:156181 +k1,23578:23936904,19046895:156180 +k1,23578:27207356,19046895:156181 +k1,23578:29431852,19046895:156180 +k1,23578:30535684,19046895:156181 +k1,23579:32583029,19046895:0 +) +(1,23579:6630773,19911975:25952256,513147,126483 +k1,23578:7874349,19911975:224491 +k1,23578:14154366,19911975:224490 +k1,23578:15946478,19911975:224491 +k1,23578:18342832,19911975:224491 +k1,23578:19586408,19911975:224491 +k1,23578:21464371,19911975:224490 +k1,23578:23202088,19911975:224491 +k1,23578:25281903,19911975:224491 +k1,23578:26122432,19911975:224491 +k1,23578:27366007,19911975:224490 +k1,23578:29747942,19911975:224491 +k1,23578:32583029,19911975:0 +) +(1,23579:6630773,20777055:25952256,513147,134348 +k1,23578:8215762,20777055:204145 +k1,23578:8951403,20777055:204144 +k1,23578:9511408,20777055:204145 +k1,23578:13312823,20777055:204144 +k1,23578:15087866,20777055:204145 +k1,23578:16275050,20777055:204144 +k1,23578:17091957,20777055:204145 +k1,23578:18491479,20777055:204145 +k1,23578:19732403,20777055:204144 +k1,23578:20564383,20777055:204145 +k1,23578:21971768,20777055:204144 +k1,23578:23716664,20777055:204145 +k1,23578:24789160,20777055:204144 +k1,23578:27163857,20777055:204145 +k1,23578:29782347,20777055:204144 +k1,23578:31563944,20777055:204145 +k1,23578:32583029,20777055:0 +) +(1,23579:6630773,21642135:25952256,513147,102891 +k1,23578:10357605,21642135:220656 +k1,23578:11229689,21642135:220656 +k1,23578:12469431,21642135:220657 +k1,23578:15104411,21642135:220634 +k1,23578:16481777,21642135:220656 +k1,23578:17893879,21642135:220657 +k1,23578:18982887,21642135:220656 +k1,23578:20509676,21642135:220656 +k1,23578:23857710,21642135:220656 +k1,23578:24536463,21642135:220656 +k1,23578:28719427,21642135:220657 +k1,23578:30006354,21642135:220656 +k1,23578:31896867,21642135:220656 +k1,23578:32583029,21642135:0 +) +(1,23579:6630773,22507215:25952256,513147,126483 +g1,23578:7698354,22507215 +g1,23578:9372798,22507215 +g1,23578:9927887,22507215 +g1,23578:11621337,22507215 +g1,23578:13711280,22507215 +g1,23578:15101954,22507215 +g1,23578:16735111,22507215 +g1,23578:17802692,22507215 +g1,23578:19579373,22507215 +g1,23578:20797687,22507215 +g1,23578:22491137,22507215 +k1,23579:32583029,22507215:8935182 +g1,23579:32583029,22507215 +) +v1,23581:6630773,23192070:0,393216,0 +(1,23591:6630773,27641883:25952256,4843029,196608 +g1,23591:6630773,27641883 +g1,23591:6630773,27641883 +g1,23591:6434165,27641883 +(1,23591:6434165,27641883:0,4843029,196608 +r1,23613:32779637,27641883:26345472,5039637,196608 +k1,23591:6434165,27641883:-26345472 +) +(1,23591:6434165,27641883:26345472,4843029,196608 +[1,23591:6630773,27641883:25952256,4646421,0 +(1,23583:6630773,23426507:25952256,431045,112852 +(1,23582:6630773,23426507:0,0,0 +g1,23582:6630773,23426507 +g1,23582:6630773,23426507 +g1,23582:6303093,23426507 +(1,23582:6303093,23426507:0,0,0 +) +g1,23582:6630773,23426507 +) +g1,23583:8954451,23426507 +g1,23583:9950313,23426507 +k1,23583:9950313,23426507:0 +h1,23583:31527319,23426507:0,0,0 +k1,23583:32583029,23426507:1055710 +g1,23583:32583029,23426507 +) +(1,23584:6630773,24111362:25952256,431045,112852 +h1,23584:6630773,24111362:0,0,0 +g1,23584:6962727,24111362 +g1,23584:7294681,24111362 +g1,23584:7626635,24111362 +g1,23584:7958589,24111362 +g1,23584:8290543,24111362 +g1,23584:8622497,24111362 +g1,23584:8954451,24111362 +g1,23584:9286405,24111362 +g1,23584:9618359,24111362 +g1,23584:9950313,24111362 +g1,23584:10282267,24111362 +g1,23584:10614221,24111362 +g1,23584:10946175,24111362 +g1,23584:11278129,24111362 +g1,23584:11610083,24111362 +g1,23584:11942037,24111362 +k1,23584:11942037,24111362:0 +h1,23584:24224332,24111362:0,0,0 +k1,23584:32583029,24111362:8358697 +g1,23584:32583029,24111362 +) +(1,23585:6630773,24796217:25952256,424439,106246 +h1,23585:6630773,24796217:0,0,0 +g1,23585:6962727,24796217 +g1,23585:7294681,24796217 +g1,23585:7626635,24796217 +g1,23585:7958589,24796217 +g1,23585:8290543,24796217 +g1,23585:8622497,24796217 +g1,23585:8954451,24796217 +g1,23585:9286405,24796217 +g1,23585:9618359,24796217 +g1,23585:9950313,24796217 +g1,23585:10282267,24796217 +g1,23585:10614221,24796217 +g1,23585:10946175,24796217 +g1,23585:11278129,24796217 +g1,23585:11610083,24796217 +g1,23585:11942037,24796217 +g1,23585:13269853,24796217 +g1,23585:13933761,24796217 +h1,23585:14929623,24796217:0,0,0 +k1,23585:32583029,24796217:17653406 +g1,23585:32583029,24796217 +) +(1,23586:6630773,25481072:25952256,431045,106246 +h1,23586:6630773,25481072:0,0,0 +k1,23586:6630773,25481072:0 +h1,23586:13933759,25481072:0,0,0 +k1,23586:32583029,25481072:18649270 +g1,23586:32583029,25481072 +) +(1,23587:6630773,26165927:25952256,424439,86428 +h1,23587:6630773,26165927:0,0,0 +g1,23587:7294681,26165927 +g1,23587:7626635,26165927 +g1,23587:7958589,26165927 +g1,23587:8290543,26165927 +g1,23587:8622497,26165927 +g1,23587:8954451,26165927 +g1,23587:9286405,26165927 +g1,23587:9618359,26165927 +g1,23587:9950313,26165927 +g1,23587:10282267,26165927 +g1,23587:10614221,26165927 +g1,23587:10946175,26165927 +g1,23587:11278129,26165927 +g1,23587:11610083,26165927 +g1,23587:13269853,26165927 +g1,23587:13933761,26165927 +k1,23587:13933761,26165927:0 +h1,23587:15593531,26165927:0,0,0 +k1,23587:32583029,26165927:16989498 +g1,23587:32583029,26165927 +) +(1,23588:6630773,26850782:25952256,431045,106246 +h1,23588:6630773,26850782:0,0,0 +g1,23588:7294681,26850782 +g1,23588:7626635,26850782 +g1,23588:7958589,26850782 +g1,23588:8290543,26850782 +g1,23588:8622497,26850782 +g1,23588:8954451,26850782 +g1,23588:9286405,26850782 +g1,23588:9618359,26850782 +g1,23588:9950313,26850782 +g1,23588:10282267,26850782 +g1,23588:10614221,26850782 +g1,23588:10946175,26850782 +g1,23588:11278129,26850782 +g1,23588:11610083,26850782 +g1,23588:14597668,26850782 +g1,23588:15261576,26850782 +k1,23588:15261576,26850782:0 +h1,23588:25552147,26850782:0,0,0 +k1,23588:32583029,26850782:7030882 +g1,23588:32583029,26850782 +) +(1,23589:6630773,27535637:25952256,431045,106246 +h1,23589:6630773,27535637:0,0,0 +g1,23589:10282266,27535637 +g1,23589:11278128,27535637 +k1,23589:11278128,27535637:0 +h1,23589:24224331,27535637:0,0,0 +k1,23589:32583029,27535637:8358698 +g1,23589:32583029,27535637 +) +] +) +g1,23591:32583029,27641883 +g1,23591:6630773,27641883 +g1,23591:6630773,27641883 +g1,23591:32583029,27641883 +g1,23591:32583029,27641883 +) +h1,23591:6630773,27838491:0,0,0 +v1,23595:6630773,28703571:0,393216,0 +(1,23596:6630773,30056311:25952256,1745956,0 +g1,23596:6630773,30056311 +g1,23596:6237557,30056311 +r1,23613:6368629,30056311:131072,1745956,0 +g1,23596:6567858,30056311 +g1,23596:6764466,30056311 +[1,23596:6764466,30056311:25818563,1745956,0 +(1,23596:6764466,29064748:25818563,754393,260573 +(1,23595:6764466,29064748:0,754393,260573 +r1,23613:8010564,29064748:1246098,1014966,260573 +k1,23595:6764466,29064748:-1246098 +) +(1,23595:6764466,29064748:1246098,754393,260573 +) +k1,23595:8227287,29064748:216723 +k1,23595:8554967,29064748:327680 +k1,23595:9813713,29064748:216724 +k1,23595:13546443,29064748:216723 +k1,23595:16153247,29064748:216706 +k1,23595:17683312,29064748:216723 +k1,23595:20080418,29064748:216723 +k1,23595:21044908,29064748:216724 +k1,23595:25157091,29064748:216723 +k1,23595:25989852,29064748:216723 +k1,23595:28228362,29064748:216724 +k1,23595:30401335,29064748:216723 +k1,23596:32583029,29064748:0 +) +(1,23596:6764466,29929828:25818563,505283,126483 +(1,23595:6764466,29929828:0,452978,115847 +r1,23613:10639850,29929828:3875384,568825,115847 +k1,23595:6764466,29929828:-3875384 +) +(1,23595:6764466,29929828:3875384,452978,115847 +g1,23595:8526302,29929828 +g1,23595:9229726,29929828 +h1,23595:10636573,29929828:0,411205,112570 +) +g1,23595:11012749,29929828 +g1,23595:13097449,29929828 +g1,23595:13828175,29929828 +g1,23595:16739939,29929828 +g1,23595:18825294,29929828 +k1,23596:32583029,29929828:9644041 +g1,23596:32583029,29929828 +) +] +g1,23596:32583029,30056311 +) +h1,23596:6630773,30056311:0,0,0 +(1,23599:6630773,32887471:25952256,32768,229376 +(1,23599:6630773,32887471:0,32768,229376 +(1,23599:6630773,32887471:5505024,32768,229376 +r1,23613:12135797,32887471:5505024,262144,229376 +) +k1,23599:6630773,32887471:-5505024 +) +(1,23599:6630773,32887471:25952256,32768,0 +r1,23613:32583029,32887471:25952256,32768,0 +) +) +(1,23599:6630773,34519323:25952256,615776,151780 +(1,23599:6630773,34519323:2954625,582746,14155 +g1,23599:6630773,34519323 +g1,23599:9585398,34519323 +) +g1,23599:11635627,34519323 +g1,23599:16245692,34519323 +g1,23599:18427255,34519323 +g1,23599:22000016,34519323 +k1,23599:32583029,34519323:7576483 +g1,23599:32583029,34519323 +) +(1,23603:6630773,35777619:25952256,505283,134348 +k1,23602:10159805,35777619:226673 +k1,23602:12872258,35777619:226672 +k1,23602:14488294,35777619:226673 +k1,23602:18223764,35777619:226672 +k1,23602:20788106,35777619:226673 +k1,23602:22869447,35777619:226672 +k1,23602:23905490,35777619:226673 +k1,23602:29602452,35777619:226672 +k1,23602:32583029,35777619:0 +) +(1,23603:6630773,36642699:25952256,513147,134348 +k1,23602:12389366,36642699:153299 +k1,23602:13998829,36642699:153253 +k1,23602:16663467,36642699:153298 +k1,23602:18291981,36642699:153299 +k1,23602:20734452,36642699:153298 +k1,23602:21777730,36642699:153299 +k1,23602:25021707,36642699:153299 +k1,23602:26459511,36642699:153298 +k1,23602:27717092,36642699:153299 +k1,23602:28618156,36642699:153298 +k1,23602:31195632,36642699:153299 +k1,23602:32583029,36642699:0 +) +(1,23603:6630773,37507779:25952256,505283,134348 +k1,23602:7158883,37507779:172250 +k1,23602:9946676,37507779:172251 +k1,23602:13625102,37507779:172250 +k1,23602:14448780,37507779:172250 +k1,23602:17055038,37507779:172251 +k1,23602:19083268,37507779:172250 +k1,23602:22090605,37507779:172250 +k1,23602:22945741,37507779:172251 +k1,23602:25234149,37507779:172250 +k1,23602:26969433,37507779:172250 +k1,23602:29746740,37507779:172251 +k1,23602:31773659,37507779:172250 +k1,23602:32583029,37507779:0 +) +(1,23603:6630773,38372859:25952256,513147,126483 +g1,23602:8189219,38372859 +g1,23602:11120644,38372859 +g1,23602:12002758,38372859 +g1,23602:12818025,38372859 +g1,23602:14650411,38372859 +g1,23602:17030023,38372859 +g1,23602:18220812,38372859 +g1,23602:21763688,38372859 +k1,23603:32583029,38372859:9132444 +g1,23603:32583029,38372859 +) +(1,23604:6630773,40489677:25952256,555811,147783 +(1,23604:6630773,40489677:3348562,534184,12975 +g1,23604:6630773,40489677 +g1,23604:9979335,40489677 +) +k1,23604:32583030,40489677:19456264 +g1,23604:32583030,40489677 +) +(1,23610:6630773,41747973:25952256,530548,134348 +k1,23609:7763964,41747973:179642 +k1,23609:9223523,41747973:179641 +k1,23609:10801048,41747973:179642 +k1,23609:11336550,41747973:179642 +k1,23609:13640868,41747973:179641 +k1,23609:16481927,41747973:179642 +k1,23609:18396962,41747973:179642 +k1,23609:18932463,41747973:179641 +k1,23609:21514655,41747973:179642 +k1,23609:23261918,41747973:179642 +k1,23609:24460644,41747973:179641 +k1,23609:27811573,41747973:179642 +$1,23609:28018667,41747973 +k1,23609:29678435,41747973:0 +k1,23609:30093377,41747973:0 +k1,23609:30508319,41747973:0 +k1,23609:30923261,41747973:0 +k1,23609:32168087,41747973:0 +k1,23610:32583029,41747973:0 +) +(1,23610:6630773,42613053:25952256,530548,134348 +k1,23609:10365251,42613053:0 +k1,23609:10780193,42613053:0 +$1,23609:12439961,42613053 +k1,23609:12805710,42613053:158655 +k1,23609:14972388,42613053:158655 +k1,23609:16866436,42613053:158655 +k1,23609:17380951,42613053:158655 +k1,23609:20298672,42613053:158655 +k1,23609:21687437,42613053:158654 +k1,23609:24369228,42613053:158655 +k1,23609:26762005,42613053:158655 +k1,23609:27874209,42613053:158655 +k1,23609:30466871,42613053:158655 +k1,23609:32583029,42613053:0 +) +(1,23610:6630773,43478133:25952256,513147,7863 +g1,23609:8219365,43478133 +g1,23609:9986215,43478133 +g1,23609:10541304,43478133 +g1,23609:14474119,43478133 +k1,23610:32583029,43478133:15532690 +g1,23610:32583029,43478133 +) +v1,23612:6630773,44343213:0,393216,0 +(1,23613:6630773,44976781:25952256,1026784,0 +g1,23613:6630773,44976781 +g1,23613:6237557,44976781 +r1,23613:6368629,44976781:131072,1026784,0 +g1,23613:6567858,44976781 +g1,23613:6764466,44976781 +[1,23613:6764466,44976781:25818563,1026784,0 +(1,23613:6764466,44757755:25818563,807758,219026 +(1,23612:6764466,44757755:0,807758,219026 +r1,23613:7908217,44757755:1143751,1026784,219026 +k1,23612:6764466,44757755:-1143751 +) +(1,23612:6764466,44757755:1143751,807758,219026 +) +k1,23612:8147529,44757755:239312 +k1,23612:8475209,44757755:327680 +k1,23612:10095365,44757755:239312 +k1,23612:12996094,44757755:239312 +k1,23612:15095973,44757755:239312 +k1,23612:17516979,44757755:239312 +k1,23612:18775376,44757755:239312 +k1,23612:23288946,44757755:239312 +k1,23612:24187550,44757755:239312 +k1,23612:25445947,44757755:239312 +k1,23612:28980409,44757755:239312 +k1,23612:31622271,44757755:239312 +k1,23613:32583029,44757755:0 +) +] +g1,23613:32583029,44976781 +) +] +(1,23613:32583029,45706769:0,0,0 +g1,23613:32583029,45706769 +) +) +] +(1,23613:6630773,47279633:25952256,0,0 +h1,23613:6630773,47279633:25952256,0,0 +) +] +(1,23613:4262630,4025873:0,0,0 +[1,23613:-473656,4025873:0,0,0 +(1,23613:-473656,-710413:0,0,0 +(1,23613:-473656,-710413:0,0,0 +g1,23613:-473656,-710413 +) +g1,23613:-473656,-710413 +) +] +) +] +!23804 +}406 +Input:3761:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3762:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!200 +{407 +[1,23670:4262630,47279633:28320399,43253760,0 +(1,23670:4262630,4025873:0,0,0 +[1,23670:-473656,4025873:0,0,0 +(1,23670:-473656,-710413:0,0,0 +(1,23670:-473656,-644877:0,0,0 +k1,23670:-473656,-644877:-65536 +) +(1,23670:-473656,4736287:0,0,0 +k1,23670:-473656,4736287:5209943 +) +g1,23670:-473656,-710413 ) ] ) -[1,23308:6630773,47279633:25952256,43253760,0 -[1,23308:6630773,4812305:25952256,786432,0 -(1,23308:6630773,4812305:25952256,505283,126483 -(1,23308:6630773,4812305:25952256,505283,126483 -g1,23308:3078558,4812305 -[1,23308:3078558,4812305:0,0,0 -(1,23308:3078558,2439708:0,1703936,0 -k1,23308:1358238,2439708:-1720320 -(1,21457:1358238,2439708:1720320,1703936,0 -(1,21457:1358238,2439708:1179648,16384,0 -r1,23308:2537886,2439708:1179648,16384,0 +[1,23670:6630773,47279633:25952256,43253760,0 +[1,23670:6630773,4812305:25952256,786432,0 +(1,23670:6630773,4812305:25952256,505283,134348 +(1,23670:6630773,4812305:25952256,505283,134348 +g1,23670:3078558,4812305 +[1,23670:3078558,4812305:0,0,0 +(1,23670:3078558,2439708:0,1703936,0 +k1,23670:1358238,2439708:-1720320 +(1,21670:1358238,2439708:1720320,1703936,0 +(1,21670:1358238,2439708:1179648,16384,0 +r1,23670:2537886,2439708:1179648,16384,0 ) -g1,21457:3062174,2439708 -(1,21457:3062174,2439708:16384,1703936,0 -[1,21457:3062174,2439708:25952256,1703936,0 -(1,21457:3062174,1915420:25952256,1179648,0 -(1,21457:3062174,1915420:16384,1179648,0 -r1,23308:3078558,1915420:16384,1179648,0 +g1,21670:3062174,2439708 +(1,21670:3062174,2439708:16384,1703936,0 +[1,21670:3062174,2439708:25952256,1703936,0 +(1,21670:3062174,1915420:25952256,1179648,0 +(1,21670:3062174,1915420:16384,1179648,0 +r1,23670:3078558,1915420:16384,1179648,0 ) -k1,21457:29014430,1915420:25935872 -g1,21457:29014430,1915420 +k1,21670:29014430,1915420:25935872 +g1,21670:29014430,1915420 ) ] ) ) ) ] -[1,23308:3078558,4812305:0,0,0 -(1,23308:3078558,2439708:0,1703936,0 -g1,23308:29030814,2439708 -g1,23308:36135244,2439708 -(1,21457:36135244,2439708:1720320,1703936,0 -(1,21457:36135244,2439708:16384,1703936,0 -[1,21457:36135244,2439708:25952256,1703936,0 -(1,21457:36135244,1915420:25952256,1179648,0 -(1,21457:36135244,1915420:16384,1179648,0 -r1,23308:36151628,1915420:16384,1179648,0 +[1,23670:3078558,4812305:0,0,0 +(1,23670:3078558,2439708:0,1703936,0 +g1,23670:29030814,2439708 +g1,23670:36135244,2439708 +(1,21670:36135244,2439708:1720320,1703936,0 +(1,21670:36135244,2439708:16384,1703936,0 +[1,21670:36135244,2439708:25952256,1703936,0 +(1,21670:36135244,1915420:25952256,1179648,0 +(1,21670:36135244,1915420:16384,1179648,0 +r1,23670:36151628,1915420:16384,1179648,0 ) -k1,21457:62087500,1915420:25935872 -g1,21457:62087500,1915420 +k1,21670:62087500,1915420:25935872 +g1,21670:62087500,1915420 ) ] ) -g1,21457:36675916,2439708 -(1,21457:36675916,2439708:1179648,16384,0 -r1,23308:37855564,2439708:1179648,16384,0 +g1,21670:36675916,2439708 +(1,21670:36675916,2439708:1179648,16384,0 +r1,23670:37855564,2439708:1179648,16384,0 ) ) -k1,23308:3078556,2439708:-34777008 +k1,23670:3078556,2439708:-34777008 ) ] -[1,23308:3078558,4812305:0,0,0 -(1,23308:3078558,49800853:0,16384,2228224 -k1,23308:1358238,49800853:-1720320 -(1,21457:1358238,49800853:1720320,16384,2228224 -(1,21457:1358238,49800853:1179648,16384,0 -r1,23308:2537886,49800853:1179648,16384,0 +[1,23670:3078558,4812305:0,0,0 +(1,23670:3078558,49800853:0,16384,2228224 +k1,23670:1358238,49800853:-1720320 +(1,21670:1358238,49800853:1720320,16384,2228224 +(1,21670:1358238,49800853:1179648,16384,0 +r1,23670:2537886,49800853:1179648,16384,0 ) -g1,21457:3062174,49800853 -(1,21457:3062174,52029077:16384,1703936,0 -[1,21457:3062174,52029077:25952256,1703936,0 -(1,21457:3062174,51504789:25952256,1179648,0 -(1,21457:3062174,51504789:16384,1179648,0 -r1,23308:3078558,51504789:16384,1179648,0 +g1,21670:3062174,49800853 +(1,21670:3062174,52029077:16384,1703936,0 +[1,21670:3062174,52029077:25952256,1703936,0 +(1,21670:3062174,51504789:25952256,1179648,0 +(1,21670:3062174,51504789:16384,1179648,0 +r1,23670:3078558,51504789:16384,1179648,0 ) -k1,21457:29014430,51504789:25935872 -g1,21457:29014430,51504789 +k1,21670:29014430,51504789:25935872 +g1,21670:29014430,51504789 ) ] ) ) ) ] -[1,23308:3078558,4812305:0,0,0 -(1,23308:3078558,49800853:0,16384,2228224 -g1,23308:29030814,49800853 -g1,23308:36135244,49800853 -(1,21457:36135244,49800853:1720320,16384,2228224 -(1,21457:36135244,52029077:16384,1703936,0 -[1,21457:36135244,52029077:25952256,1703936,0 -(1,21457:36135244,51504789:25952256,1179648,0 -(1,21457:36135244,51504789:16384,1179648,0 -r1,23308:36151628,51504789:16384,1179648,0 +[1,23670:3078558,4812305:0,0,0 +(1,23670:3078558,49800853:0,16384,2228224 +g1,23670:29030814,49800853 +g1,23670:36135244,49800853 +(1,21670:36135244,49800853:1720320,16384,2228224 +(1,21670:36135244,52029077:16384,1703936,0 +[1,21670:36135244,52029077:25952256,1703936,0 +(1,21670:36135244,51504789:25952256,1179648,0 +(1,21670:36135244,51504789:16384,1179648,0 +r1,23670:36151628,51504789:16384,1179648,0 ) -k1,21457:62087500,51504789:25935872 -g1,21457:62087500,51504789 +k1,21670:62087500,51504789:25935872 +g1,21670:62087500,51504789 ) ] ) -g1,21457:36675916,49800853 -(1,21457:36675916,49800853:1179648,16384,0 -r1,23308:37855564,49800853:1179648,16384,0 +g1,21670:36675916,49800853 +(1,21670:36675916,49800853:1179648,16384,0 +r1,23670:37855564,49800853:1179648,16384,0 ) ) -k1,23308:3078556,49800853:-34777008 +k1,23670:3078556,49800853:-34777008 ) ] -g1,23308:6630773,4812305 -g1,23308:6630773,4812305 -g1,23308:9731936,4812305 -g1,23308:12175773,4812305 -g1,23308:13803032,4812305 -k1,23308:31387652,4812305:17584620 -) -) -] -[1,23308:6630773,45706769:25952256,40108032,0 -(1,23308:6630773,45706769:25952256,40108032,0 -(1,23308:6630773,45706769:0,0,0 -g1,23308:6630773,45706769 -) -[1,23308:6630773,45706769:25952256,40108032,0 -v1,23248:6630773,6254097:0,393216,0 -(1,23248:6630773,7662471:25952256,1801590,0 -g1,23248:6630773,7662471 -g1,23248:6303093,7662471 -r1,23308:6401397,7662471:98304,1801590,0 -g1,23248:6600626,7662471 -g1,23248:6797234,7662471 -[1,23248:6797234,7662471:25785795,1801590,0 -(1,23248:6797234,6686635:25785795,825754,196608 -(1,23247:6797234,6686635:0,825754,196608 -r1,23308:7890375,6686635:1093141,1022362,196608 -k1,23247:6797234,6686635:-1093141 -) -(1,23247:6797234,6686635:1093141,825754,196608 -) -k1,23247:8154616,6686635:264241 -k1,23247:10289124,6686635:327680 -k1,23247:12892345,6686635:264241 -k1,23247:13815878,6686635:264241 -k1,23247:17274344,6686635:264241 -k1,23247:18927948,6686635:264241 -k1,23247:20139840,6686635:264241 -k1,23247:21560791,6686635:264241 -k1,23247:24854761,6686635:264241 -k1,23247:27151929,6686635:264241 -k1,23247:30379053,6686635:264241 -k1,23247:32583029,6686635:0 -) -(1,23248:6797234,7528123:25785795,513147,134348 -g1,23247:8385826,7528123 -g1,23247:10617982,7528123 -g1,23247:14177242,7528123 -g1,23247:15324122,7528123 -g1,23247:16680061,7528123 -g1,23247:19338201,7528123 -g1,23247:20943833,7528123 -g1,23247:22162147,7528123 -k1,23248:32583029,7528123:7761431 -g1,23248:32583029,7528123 -) -] -g1,23248:32583029,7662471 -) -h1,23248:6630773,7662471:0,0,0 -(1,23251:6630773,10907529:25952256,32768,229376 -(1,23251:6630773,10907529:0,32768,229376 -(1,23251:6630773,10907529:5505024,32768,229376 -r1,23308:12135797,10907529:5505024,262144,229376 -) -k1,23251:6630773,10907529:-5505024 -) -(1,23251:6630773,10907529:25952256,32768,0 -r1,23308:32583029,10907529:25952256,32768,0 -) -) -(1,23251:6630773,12511857:25952256,606339,151780 -(1,23251:6630773,12511857:2954625,582746,14155 -g1,23251:6630773,12511857 -g1,23251:9585398,12511857 -) -g1,23251:13602493,12511857 -g1,23251:16712045,12511857 -k1,23251:32583029,12511857:14177796 -g1,23251:32583029,12511857 -) -(1,23255:6630773,13746561:25952256,513147,126483 -k1,23254:8593113,13746561:266924 -k1,23254:9519328,13746561:266923 -k1,23254:10805337,13746561:266924 -k1,23254:14098058,13746561:266924 -k1,23254:17455005,13746561:266924 -k1,23254:19577252,13746561:266923 -k1,23254:21892176,13746561:266924 -k1,23254:22929803,13746561:266924 -k1,23254:24477887,13746561:266855 -k1,23254:27238456,13746561:266924 -k1,23254:28121418,13746561:266924 -k1,23254:30050990,13746561:266924 -k1,23254:30977205,13746561:266923 -k1,23254:31599989,13746561:266924 -k1,23254:32583029,13746561:0 -) -(1,23255:6630773,14588049:25952256,513147,134348 -k1,23254:8781724,14588049:239266 -k1,23254:13367992,14588049:239265 -k1,23254:14920600,14588049:239266 -k1,23254:16264148,14588049:239266 -k1,23254:17251179,14588049:239265 -k1,23254:18902746,14588049:239266 -k1,23254:21962681,14588049:239265 -k1,23254:24662169,14588049:239266 -k1,23254:27019559,14588049:239266 -k1,23254:27910252,14588049:239265 -k1,23254:29455651,14588049:239266 -k1,23254:32583029,14588049:0 -) -(1,23255:6630773,15429537:25952256,513147,126483 -k1,23254:8075536,15429537:253318 -k1,23254:9719529,15429537:253319 -k1,23254:10328707,15429537:253318 -k1,23254:12091975,15429537:253318 -k1,23254:12961332,15429537:253319 -k1,23254:14233735,15429537:253318 -k1,23254:15981274,15429537:253318 -k1,23254:17217633,15429537:253319 -k1,23254:19890540,15429537:253318 -k1,23254:21524702,15429537:253318 -k1,23254:22882303,15429537:253319 -k1,23254:23883387,15429537:253318 -k1,23254:26287597,15429537:253318 -k1,23254:29648633,15429537:253319 -k1,23254:31599989,15429537:253318 -k1,23254:32583029,15429537:0 -) -(1,23255:6630773,16271025:25952256,505283,134348 -k1,23254:8903343,16271025:204254 -k1,23254:10099157,16271025:204254 -k1,23254:13456348,16271025:204254 -k1,23254:15670591,16271025:204254 -k1,23254:16230705,16271025:204254 -k1,23254:18439705,16271025:204254 -k1,23254:21578660,16271025:204253 -k1,23254:22939624,16271025:204254 -k1,23254:25324261,16271025:204254 -k1,23254:27431681,16271025:204254 -k1,23254:30743652,16271025:204254 -k1,23254:31563944,16271025:204254 -k1,23254:32583029,16271025:0 -) -(1,23255:6630773,17112513:25952256,513147,134348 -k1,23254:8282608,17112513:284754 -k1,23254:9226654,17112513:284754 -k1,23254:11800581,17112513:284754 -k1,23254:13662786,17112513:284753 -k1,23254:14598968,17112513:284754 -k1,23254:16859632,17112513:284754 -k1,23254:19349017,17112513:284754 -k1,23254:22984627,17112513:284754 -k1,23254:27387008,17112513:284754 -k1,23254:28690846,17112513:284753 -k1,23254:30629073,17112513:284754 -k1,23254:31896867,17112513:284754 -k1,23254:32583029,17112513:0 -) -(1,23255:6630773,17954001:25952256,513147,126483 -k1,23254:8091374,17954001:257360 -k1,23254:12693770,17954001:257359 -k1,23254:15900250,17954001:257360 -k1,23254:18773151,17954001:257359 -k1,23254:20916637,17954001:257360 -k1,23254:22365442,17954001:257360 -k1,23254:25595514,17954001:257359 -k1,23254:26662244,17954001:257360 -k1,23254:27938688,17954001:257359 -k1,23254:30450487,17954001:257360 -k1,23254:32583029,17954001:0 -) -(1,23255:6630773,18795489:25952256,513147,126483 -k1,23254:9426976,18795489:267824 -k1,23254:10354092,18795489:267824 -k1,23254:11998826,18795489:267823 -k1,23254:13364378,18795489:267824 -k1,23254:14938335,18795489:267824 -k1,23254:17867576,18795489:267824 -k1,23254:19878002,18795489:267824 -k1,23254:20501685,18795489:267823 -k1,23254:22485897,18795489:267824 -k1,23254:23736761,18795489:267824 -k1,23254:25572206,18795489:267824 -k1,23254:26821104,18795489:267824 -k1,23254:28419308,18795489:267823 -k1,23254:29955909,18795489:267824 -k1,23254:31533142,18795489:267824 -k1,23254:32583029,18795489:0 -) -(1,23255:6630773,19636977:25952256,513147,134348 -k1,23254:9148972,19636977:239512 -h1,23254:10518019,19636977:0,0,0 -k1,23254:10757531,19636977:239512 -k1,23254:11806413,19636977:239512 -k1,23254:13544078,19636977:239512 -h1,23254:14739455,19636977:0,0,0 -k1,23254:14978967,19636977:239512 -k1,23254:16166130,19636977:239512 -k1,23254:18523110,19636977:239512 -k1,23254:19571993,19636977:239513 -k1,23254:20830590,19636977:239512 -k1,23254:22162587,19636977:239512 -k1,23254:23061391,19636977:239512 -k1,23254:24997630,19636977:239512 -k1,23254:26428587,19636977:239512 -k1,23254:28370069,19636977:239512 -k1,23254:31635378,19636977:239512 -k1,23254:32583029,19636977:0 -) -(1,23255:6630773,20478465:25952256,513147,134348 -g1,23254:9232552,20478465 -g1,23254:10657960,20478465 -k1,23255:32583028,20478465:20438056 -g1,23255:32583028,20478465 -) -v1,23257:6630773,21582134:0,393216,0 -(1,23276:6630773,28453296:25952256,7264378,196608 -g1,23276:6630773,28453296 -g1,23276:6630773,28453296 -g1,23276:6434165,28453296 -(1,23276:6434165,28453296:0,7264378,196608 -r1,23308:32779637,28453296:26345472,7460986,196608 -k1,23276:6434165,28453296:-26345472 -) -(1,23276:6434165,28453296:26345472,7264378,196608 -[1,23276:6630773,28453296:25952256,7067770,0 -(1,23259:6630773,21796044:25952256,410518,107478 -(1,23258:6630773,21796044:0,0,0 -g1,23258:6630773,21796044 -g1,23258:6630773,21796044 -g1,23258:6303093,21796044 -(1,23258:6303093,21796044:0,0,0 -) -g1,23258:6630773,21796044 -) -g1,23259:9792230,21796044 -k1,23259:9792230,21796044:0 -h1,23259:10424522,21796044:0,0,0 -k1,23259:32583030,21796044:22158508 -g1,23259:32583030,21796044 -) -(1,23260:6630773,22462222:25952256,410518,107478 -h1,23260:6630773,22462222:0,0,0 -g1,23260:6946919,22462222 -g1,23260:7263065,22462222 -g1,23260:7579211,22462222 -g1,23260:7895357,22462222 -g1,23260:8211503,22462222 -g1,23260:8527649,22462222 -g1,23260:13269835,22462222 -g1,23260:13902127,22462222 -k1,23260:13902127,22462222:0 -h1,23260:29393265,22462222:0,0,0 -k1,23260:32583029,22462222:3189764 -g1,23260:32583029,22462222 -) -(1,23261:6630773,23128400:25952256,404226,82312 -h1,23261:6630773,23128400:0,0,0 -g1,23261:6946919,23128400 -g1,23261:7263065,23128400 -g1,23261:7579211,23128400 -g1,23261:7895357,23128400 -g1,23261:8211503,23128400 -g1,23261:8527649,23128400 -g1,23261:8843795,23128400 -g1,23261:9159941,23128400 -g1,23261:9476087,23128400 -g1,23261:9792233,23128400 -g1,23261:10108379,23128400 -g1,23261:10424525,23128400 -g1,23261:10740671,23128400 -g1,23261:11056817,23128400 -g1,23261:11372963,23128400 -g1,23261:11689109,23128400 -g1,23261:13902129,23128400 -g1,23261:14534421,23128400 -k1,23261:14534421,23128400:0 -h1,23261:16431295,23128400:0,0,0 -k1,23261:32583029,23128400:16151734 -g1,23261:32583029,23128400 -) -(1,23262:6630773,23794578:25952256,404226,101187 -h1,23262:6630773,23794578:0,0,0 -g1,23262:6946919,23794578 -g1,23262:7263065,23794578 -g1,23262:7579211,23794578 -g1,23262:7895357,23794578 -g1,23262:8211503,23794578 -g1,23262:8527649,23794578 -g1,23262:8843795,23794578 -g1,23262:9159941,23794578 -g1,23262:9476087,23794578 -g1,23262:9792233,23794578 -g1,23262:10108379,23794578 -g1,23262:10424525,23794578 -g1,23262:10740671,23794578 -g1,23262:11056817,23794578 -g1,23262:11372963,23794578 -g1,23262:11689109,23794578 -g1,23262:14850566,23794578 -g1,23262:15482858,23794578 -g1,23262:18644316,23794578 -h1,23262:23386501,23794578:0,0,0 -k1,23262:32583029,23794578:9196528 -g1,23262:32583029,23794578 -) -(1,23263:6630773,24460756:25952256,410518,107478 -h1,23263:6630773,24460756:0,0,0 -g1,23263:12321396,24460756 -h1,23263:14218270,24460756:0,0,0 -k1,23263:32583030,24460756:18364760 -g1,23263:32583030,24460756 -) -(1,23268:6630773,25126934:25952256,404226,101187 -(1,23265:6630773,25126934:0,0,0 -g1,23265:6630773,25126934 -g1,23265:6630773,25126934 -g1,23265:6303093,25126934 -(1,23265:6303093,25126934:0,0,0 -) -g1,23265:6630773,25126934 -) -g1,23268:7579210,25126934 -g1,23268:7895356,25126934 -g1,23268:8211502,25126934 -g1,23268:8527648,25126934 -g1,23268:8843794,25126934 -g1,23268:9159940,25126934 -g1,23268:9476086,25126934 -g1,23268:9792232,25126934 -g1,23268:11372961,25126934 -h1,23268:14850563,25126934:0,0,0 -k1,23268:32583029,25126934:17732466 -g1,23268:32583029,25126934 -) -(1,23268:6630773,25793112:25952256,404226,6290 -h1,23268:6630773,25793112:0,0,0 -g1,23268:7579210,25793112 -g1,23268:11372958,25793112 -g1,23268:11689104,25793112 -g1,23268:12005250,25793112 -h1,23268:14850561,25793112:0,0,0 -k1,23268:32583029,25793112:17732468 -g1,23268:32583029,25793112 -) -(1,23270:6630773,27114650:25952256,410518,107478 -(1,23269:6630773,27114650:0,0,0 -g1,23269:6630773,27114650 -g1,23269:6630773,27114650 -g1,23269:6303093,27114650 -(1,23269:6303093,27114650:0,0,0 -) -g1,23269:6630773,27114650 -) -k1,23270:6630773,27114650:0 -g1,23270:12321396,27114650 -h1,23270:13902124,27114650:0,0,0 -k1,23270:32583028,27114650:18680904 -g1,23270:32583028,27114650 -) -(1,23275:6630773,27780828:25952256,404226,101187 -(1,23272:6630773,27780828:0,0,0 -g1,23272:6630773,27780828 -g1,23272:6630773,27780828 -g1,23272:6303093,27780828 -(1,23272:6303093,27780828:0,0,0 -) -g1,23272:6630773,27780828 -) -g1,23275:7579210,27780828 -g1,23275:7895356,27780828 -g1,23275:8211502,27780828 -g1,23275:8527648,27780828 -g1,23275:8843794,27780828 -g1,23275:9159940,27780828 -g1,23275:9476086,27780828 -g1,23275:9792232,27780828 -g1,23275:11372961,27780828 -h1,23275:14850563,27780828:0,0,0 -k1,23275:32583029,27780828:17732466 -g1,23275:32583029,27780828 -) -(1,23275:6630773,28447006:25952256,404226,6290 -h1,23275:6630773,28447006:0,0,0 -g1,23275:7579210,28447006 -g1,23275:11372958,28447006 -g1,23275:11689104,28447006 -g1,23275:12005250,28447006 -h1,23275:14850561,28447006:0,0,0 -k1,23275:32583029,28447006:17732468 -g1,23275:32583029,28447006 -) -] -) -g1,23276:32583029,28453296 -g1,23276:6630773,28453296 -g1,23276:6630773,28453296 -g1,23276:32583029,28453296 -g1,23276:32583029,28453296 -) -h1,23276:6630773,28649904:0,0,0 -v1,23280:6630773,30191063:0,393216,0 -(1,23304:6630773,44231183:25952256,14433336,196608 -g1,23304:6630773,44231183 -g1,23304:6630773,44231183 -g1,23304:6434165,44231183 -(1,23304:6434165,44231183:0,14433336,196608 -r1,23308:32779637,44231183:26345472,14629944,196608 -k1,23304:6434165,44231183:-26345472 -) -(1,23304:6434165,44231183:26345472,14433336,196608 -[1,23304:6630773,44231183:25952256,14236728,0 -(1,23282:6630773,30398681:25952256,404226,107478 -(1,23281:6630773,30398681:0,0,0 -g1,23281:6630773,30398681 -g1,23281:6630773,30398681 -g1,23281:6303093,30398681 -(1,23281:6303093,30398681:0,0,0 -) -g1,23281:6630773,30398681 -) -g1,23282:9792230,30398681 -k1,23282:9792230,30398681:0 -h1,23282:10424522,30398681:0,0,0 -k1,23282:32583030,30398681:22158508 -g1,23282:32583030,30398681 -) -(1,23283:6630773,31064859:25952256,410518,107478 -h1,23283:6630773,31064859:0,0,0 -g1,23283:6946919,31064859 -g1,23283:7263065,31064859 -g1,23283:7579211,31064859 -g1,23283:7895357,31064859 -g1,23283:12637543,31064859 -g1,23283:13269835,31064859 -k1,23283:13269835,31064859:0 -h1,23283:28760973,31064859:0,0,0 -k1,23283:32583029,31064859:3822056 -g1,23283:32583029,31064859 -) -(1,23284:6630773,31731037:25952256,404226,101187 -h1,23284:6630773,31731037:0,0,0 -g1,23284:6946919,31731037 -g1,23284:7263065,31731037 -g1,23284:7579211,31731037 -g1,23284:7895357,31731037 -g1,23284:8211503,31731037 -g1,23284:8527649,31731037 -g1,23284:8843795,31731037 -g1,23284:9159941,31731037 -g1,23284:9476087,31731037 -g1,23284:9792233,31731037 -g1,23284:10108379,31731037 -g1,23284:10424525,31731037 -g1,23284:10740671,31731037 -g1,23284:11056817,31731037 -g1,23284:14218274,31731037 -g1,23284:14850566,31731037 -g1,23284:18012024,31731037 -h1,23284:22754209,31731037:0,0,0 -k1,23284:32583029,31731037:9828820 -g1,23284:32583029,31731037 -) -(1,23289:6630773,33052575:25952256,410518,107478 -k1,23288:7558650,33052575:295586 -k1,23288:8170382,33052575:295586 -k1,23288:10046696,33052575:295586 -k1,23288:11923011,33052575:295587 -k1,23288:12850888,33052575:295586 -k1,23288:15359494,33052575:295586 -k1,23288:16603517,33052575:295586 -k1,23288:18479831,33052575:295586 -k1,23288:19407708,33052575:295586 -k1,23288:22232459,33052575:295586 -k1,23288:24108774,33052575:295587 -k1,23288:25352797,33052575:295586 -k1,23288:30074423,33052575:295586 -k1,23288:31318446,33052575:295586 -k1,23288:32583029,33052575:0 -) -(1,23289:6630773,33718753:25952256,404226,6290 -k1,23289:32583030,33718753:23423092 -g1,23289:32583030,33718753 -) -(1,23290:6630773,34384931:25952256,404226,9436 -g1,23290:7579210,34384931 -g1,23290:9476084,34384931 -g1,23290:10740667,34384931 -g1,23290:13585978,34384931 -k1,23290:32583028,34384931:18680904 -g1,23290:32583028,34384931 -) -(1,23290:6630773,35051109:25952256,410518,101187 -k1,23290:7507251,35051109:244187 -k1,23290:8383729,35051109:244187 -k1,23290:10524790,35051109:244187 -k1,23290:14878871,35051109:244187 -k1,23290:32583029,35051109:0 -k1,23290:32583029,35051109:0 -) -(1,23290:6630773,35717287:25952256,404226,82312 -g1,23290:7579210,35717287 -g1,23290:11056813,35717287 -k1,23290:32583030,35717287:20577780 -g1,23290:32583030,35717287 -) -(1,23290:6630773,36383465:25952256,404226,76021 -g1,23290:7579210,36383465 -g1,23290:8843793,36383465 -g1,23290:10424522,36383465 -k1,23290:32583029,36383465:20893924 -g1,23290:32583029,36383465 -) -(1,23290:6630773,37049643:25952256,404226,101187 -g1,23290:7579210,37049643 -g1,23290:8843793,37049643 -g1,23290:10424522,37049643 -k1,23290:32583028,37049643:18680904 -g1,23290:32583028,37049643 -) -(1,23290:6630773,37715821:25952256,379060,0 -k1,23290:32583028,37715821:25319964 -g1,23290:32583028,37715821 -) -(1,23290:6630773,38381999:25952256,410518,101187 -g1,23290:7579210,38381999 -g1,23290:8211502,38381999 -g1,23290:9476085,38381999 -g1,23290:12321396,38381999 -g1,23290:13269833,38381999 -g1,23290:16115144,38381999 -g1,23290:17379727,38381999 -g1,23290:18960456,38381999 -g1,23290:21173476,38381999 -g1,23290:25599516,38381999 -g1,23290:26864099,38381999 -g1,23290:28444828,38381999 -k1,23290:32583029,38381999:2557473 -g1,23290:32583029,38381999 -) -(1,23290:6630773,39048177:25952256,410518,107478 -k1,23290:7536068,39048177:273004 -k1,23290:8125219,39048177:273005 -k1,23290:10611243,39048177:273004 -k1,23290:11832684,39048177:273004 -k1,23290:14002562,39048177:273004 -k1,23290:15856295,39048177:273005 -k1,23290:16761590,39048177:273004 -k1,23290:17983031,39048177:273004 -k1,23290:22998221,39048177:273005 -k1,23290:23587371,39048177:273004 -k1,23290:25757249,39048177:273004 -k1,23290:26662544,39048177:273004 -k1,23290:28516277,39048177:273005 -k1,23290:30053864,39048177:273004 -k1,23290:32583029,39048177:0 -k1,23290:32583029,39048177:0 -) -(1,23291:6630773,40238643:25952256,404226,107478 -(1,23290:6630773,40238643:0,0,0 -g1,23290:6630773,40238643 -g1,23290:6630773,40238643 -g1,23290:6303093,40238643 -(1,23290:6303093,40238643:0,0,0 -) -g1,23290:6630773,40238643 -) -k1,23291:6630773,40238643:0 -g1,23291:12321396,40238643 -h1,23291:14218270,40238643:0,0,0 -k1,23291:32583030,40238643:18364760 -g1,23291:32583030,40238643 -) -(1,23296:6630773,40904821:25952256,404226,101187 -(1,23293:6630773,40904821:0,0,0 -g1,23293:6630773,40904821 -g1,23293:6630773,40904821 -g1,23293:6303093,40904821 -(1,23293:6303093,40904821:0,0,0 -) -g1,23293:6630773,40904821 -) -g1,23296:7579210,40904821 -g1,23296:7895356,40904821 -g1,23296:8211502,40904821 -g1,23296:8527648,40904821 -g1,23296:8843794,40904821 -g1,23296:9159940,40904821 -g1,23296:9476086,40904821 -g1,23296:9792232,40904821 -g1,23296:11372961,40904821 -h1,23296:14850563,40904821:0,0,0 -k1,23296:32583029,40904821:17732466 -g1,23296:32583029,40904821 -) -(1,23296:6630773,41570999:25952256,404226,6290 -h1,23296:6630773,41570999:0,0,0 -g1,23296:7579210,41570999 -g1,23296:11372958,41570999 -g1,23296:11689104,41570999 -g1,23296:12005250,41570999 -h1,23296:14850561,41570999:0,0,0 -k1,23296:32583029,41570999:17732468 -g1,23296:32583029,41570999 -) -(1,23298:6630773,42892537:25952256,404226,107478 -(1,23297:6630773,42892537:0,0,0 -g1,23297:6630773,42892537 -g1,23297:6630773,42892537 -g1,23297:6303093,42892537 -(1,23297:6303093,42892537:0,0,0 -) -g1,23297:6630773,42892537 -) -k1,23298:6630773,42892537:0 -g1,23298:12321396,42892537 -h1,23298:13902124,42892537:0,0,0 -k1,23298:32583028,42892537:18680904 -g1,23298:32583028,42892537 -) -(1,23303:6630773,43558715:25952256,404226,101187 -(1,23300:6630773,43558715:0,0,0 -g1,23300:6630773,43558715 -g1,23300:6630773,43558715 -g1,23300:6303093,43558715 -(1,23300:6303093,43558715:0,0,0 -) -g1,23300:6630773,43558715 -) -g1,23303:7579210,43558715 -g1,23303:7895356,43558715 -g1,23303:8211502,43558715 -g1,23303:8527648,43558715 -g1,23303:8843794,43558715 -g1,23303:9159940,43558715 -g1,23303:9476086,43558715 -g1,23303:9792232,43558715 -g1,23303:11372961,43558715 -h1,23303:14850563,43558715:0,0,0 -k1,23303:32583029,43558715:17732466 -g1,23303:32583029,43558715 -) -(1,23303:6630773,44224893:25952256,404226,6290 -h1,23303:6630773,44224893:0,0,0 -g1,23303:7579210,44224893 -g1,23303:11372958,44224893 -g1,23303:11689104,44224893 -g1,23303:12005250,44224893 -h1,23303:14850561,44224893:0,0,0 -k1,23303:32583029,44224893:17732468 -g1,23303:32583029,44224893 -) -] -) -g1,23304:32583029,44231183 -g1,23304:6630773,44231183 -g1,23304:6630773,44231183 -g1,23304:32583029,44231183 -g1,23304:32583029,44231183 -) -h1,23304:6630773,44427791:0,0,0 -(1,23308:6630773,45706769:25952256,513147,134348 -h1,23307:6630773,45706769:983040,0,0 -k1,23307:9604906,45706769:216378 -k1,23307:12847081,45706769:216378 -k1,23307:13679497,45706769:216378 -k1,23307:16476027,45706769:216378 -k1,23307:18715501,45706769:216378 -k1,23307:21458293,45706769:216379 -k1,23307:22693756,45706769:216378 -k1,23307:24002619,45706769:216378 -k1,23307:24878289,45706769:216378 -k1,23307:26879868,45706769:216378 -k1,23307:28840159,45706769:216378 -k1,23307:29672575,45706769:216378 -k1,23307:32583029,45706769:0 -) -] -(1,23308:32583029,45706769:0,0,0 -g1,23308:32583029,45706769 -) -) -] -(1,23308:6630773,47279633:25952256,0,0 -h1,23308:6630773,47279633:25952256,0,0 -) -] -(1,23308:4262630,4025873:0,0,0 -[1,23308:-473656,4025873:0,0,0 -(1,23308:-473656,-710413:0,0,0 -(1,23308:-473656,-710413:0,0,0 -g1,23308:-473656,-710413 -) -g1,23308:-473656,-710413 -) -] -) -] -!22446 -}422 -Input:3718:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3719:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!200 -{423 -[1,23383:4262630,47279633:28320399,43253760,0 -(1,23383:4262630,4025873:0,0,0 -[1,23383:-473656,4025873:0,0,0 -(1,23383:-473656,-710413:0,0,0 -(1,23383:-473656,-644877:0,0,0 -k1,23383:-473656,-644877:-65536 +g1,23670:6630773,4812305 +k1,23670:21078841,4812305:13252691 +g1,23670:22701512,4812305 +g1,23670:23350318,4812305 +g1,23670:24759997,4812305 +g1,23670:28372341,4812305 +g1,23670:30105768,4812305 +) +) +] +[1,23670:6630773,45706769:25952256,40108032,0 +(1,23670:6630773,45706769:25952256,40108032,0 +(1,23670:6630773,45706769:0,0,0 +g1,23670:6630773,45706769 +) +[1,23670:6630773,45706769:25952256,40108032,0 +v1,23613:6630773,6254097:0,393216,0 +(1,23613:6630773,7365591:25952256,1504710,0 +g1,23613:6630773,7365591 +g1,23613:6237557,7365591 +r1,23670:6368629,7365591:131072,1504710,0 +g1,23613:6567858,7365591 +g1,23613:6764466,7365591 +[1,23613:6764466,7365591:25818563,1504710,0 +(1,23613:6764466,6374028:25818563,513147,134348 +k1,23612:10063923,6374028:224508 +k1,23612:11833769,6374028:224507 +k1,23612:16120854,6374028:224508 +k1,23612:19510750,6374028:224507 +k1,23612:22715835,6374028:224508 +k1,23612:27214600,6374028:224507 +k1,23612:31450567,6374028:224508 +k1,23612:32583029,6374028:0 +) +(1,23613:6764466,7239108:25818563,505283,126483 +g1,23612:7711461,7239108 +g1,23612:10761506,7239108 +k1,23613:32583029,7239108:19669976 +g1,23613:32583029,7239108 +) +] +g1,23613:32583029,7365591 +) +h1,23613:6630773,7365591:0,0,0 +(1,23616:6630773,8230671:25952256,513147,134348 +h1,23615:6630773,8230671:983040,0,0 +k1,23615:9273441,8230671:171305 +k1,23615:10313099,8230671:171306 +k1,23615:11576889,8230671:171305 +k1,23615:14443690,8230671:171305 +(1,23615:14443690,8230671:0,459977,115847 +r1,23670:17967362,8230671:3523672,575824,115847 +k1,23615:14443690,8230671:-3523672 +) +(1,23615:14443690,8230671:3523672,459977,115847 +k1,23615:14443690,8230671:3277 +h1,23615:17964085,8230671:0,411205,112570 +) +k1,23615:18138668,8230671:171306 +k1,23615:19877594,8230671:171305 +k1,23615:22629052,8230671:171306 +k1,23615:25478157,8230671:171305 +k1,23615:26300890,8230671:171305 +k1,23615:28906203,8230671:171306 +k1,23615:31193666,8230671:171305 +k1,23615:32583029,8230671:0 +) +(1,23616:6630773,9095751:25952256,513147,7863 +g1,23615:8397623,9095751 +g1,23615:9753562,9095751 +k1,23616:32583028,9095751:20550124 +g1,23616:32583028,9095751 +) +v1,23618:6630773,9780606:0,393216,0 +(1,23626:6630773,12834285:25952256,3446895,196608 +g1,23626:6630773,12834285 +g1,23626:6630773,12834285 +g1,23626:6434165,12834285 +(1,23626:6434165,12834285:0,3446895,196608 +r1,23670:32779637,12834285:26345472,3643503,196608 +k1,23626:6434165,12834285:-26345472 +) +(1,23626:6434165,12834285:26345472,3446895,196608 +[1,23626:6630773,12834285:25952256,3250287,0 +(1,23620:6630773,10008437:25952256,424439,106246 +(1,23619:6630773,10008437:0,0,0 +g1,23619:6630773,10008437 +g1,23619:6630773,10008437 +g1,23619:6303093,10008437 +(1,23619:6303093,10008437:0,0,0 +) +g1,23619:6630773,10008437 +) +g1,23620:9286405,10008437 +g1,23620:10282267,10008437 +h1,23620:18249161,10008437:0,0,0 +k1,23620:32583029,10008437:14333868 +g1,23620:32583029,10008437 +) +(1,23621:6630773,10693292:25952256,431045,9908 +h1,23621:6630773,10693292:0,0,0 +g1,23621:10282266,10693292 +k1,23621:10282266,10693292:0 +h1,23621:10946174,10693292:0,0,0 +k1,23621:32583030,10693292:21636856 +g1,23621:32583030,10693292 +) +(1,23622:6630773,11378147:25952256,431045,112852 +h1,23622:6630773,11378147:0,0,0 +g1,23622:6962727,11378147 +g1,23622:7294681,11378147 +g1,23622:7626635,11378147 +g1,23622:7958589,11378147 +g1,23622:15925483,11378147 +k1,23622:15925483,11378147:0 +h1,23622:26879962,11378147:0,0,0 +k1,23622:32583029,11378147:5703067 +g1,23622:32583029,11378147 +) +(1,23623:6630773,12063002:25952256,431045,106246 +h1,23623:6630773,12063002:0,0,0 +g1,23623:6962727,12063002 +g1,23623:7294681,12063002 +g1,23623:7626635,12063002 +g1,23623:7958589,12063002 +g1,23623:8290543,12063002 +g1,23623:8622497,12063002 +g1,23623:8954451,12063002 +g1,23623:9286405,12063002 +g1,23623:9618359,12063002 +g1,23623:9950313,12063002 +g1,23623:10282267,12063002 +g1,23623:10614221,12063002 +g1,23623:10946175,12063002 +g1,23623:11278129,12063002 +g1,23623:11610083,12063002 +g1,23623:11942037,12063002 +g1,23623:12273991,12063002 +g1,23623:12605945,12063002 +g1,23623:12937899,12063002 +g1,23623:14265715,12063002 +g1,23623:14929623,12063002 +g1,23623:16589393,12063002 +g1,23623:19245025,12063002 +g1,23623:19908933,12063002 +h1,23623:21568703,12063002:0,0,0 +k1,23623:32583029,12063002:11014326 +g1,23623:32583029,12063002 +) +(1,23624:6630773,12747857:25952256,431045,86428 +h1,23624:6630773,12747857:0,0,0 +g1,23624:11942036,12747857 +g1,23624:15261575,12747857 +g1,23624:15925483,12747857 +h1,23624:16589391,12747857:0,0,0 +k1,23624:32583029,12747857:15993638 +g1,23624:32583029,12747857 +) +] +) +g1,23626:32583029,12834285 +g1,23626:6630773,12834285 +g1,23626:6630773,12834285 +g1,23626:32583029,12834285 +g1,23626:32583029,12834285 +) +h1,23626:6630773,13030893:0,0,0 +(1,23630:6630773,13895973:25952256,513147,134348 +h1,23629:6630773,13895973:983040,0,0 +k1,23629:8985699,13895973:175199 +k1,23629:12426558,13895973:175200 +k1,23629:14513442,13895973:175199 +k1,23629:15880087,13895973:175200 +k1,23629:19252132,13895973:175199 +k1,23629:21437976,13895973:175199 +k1,23629:22560827,13895973:175200 +k1,23629:24187648,13895973:175199 +k1,23629:26701173,13895973:175200 +k1,23629:29303170,13895973:175199 +k1,23629:31008636,13895973:175200 +k1,23629:31835263,13895973:175199 +k1,23629:32583029,13895973:0 +) +(1,23630:6630773,14761053:25952256,513147,134348 +k1,23629:8266084,14761053:221044 +k1,23629:10054748,14761053:221043 +k1,23629:10631652,14761053:221044 +k1,23629:12725714,14761053:221043 +k1,23629:15098305,14761053:221044 +k1,23629:16272897,14761053:221043 +k1,23629:17309209,14761053:221044 +k1,23629:18733493,14761053:221043 +k1,23629:19716065,14761053:221044 +k1,23629:22676513,14761053:221043 +k1,23629:24291508,14761053:221044 +k1,23629:24868411,14761053:221043 +k1,23629:27159082,14761053:221044 +k1,23629:29358002,14761053:221043 +k1,23629:32583029,14761053:0 +) +(1,23630:6630773,15626133:25952256,513147,134348 +k1,23629:8009322,15626133:181862 +k1,23629:9580548,15626133:181863 +k1,23629:12541137,15626133:181862 +k1,23629:13254496,15626133:181862 +k1,23629:14052396,15626133:181862 +k1,23629:15622967,15626133:181863 +k1,23629:17546121,15626133:181862 +k1,23629:19121934,15626133:181862 +k1,23629:21969802,15626133:181863 +k1,23629:24219980,15626133:181862 +k1,23629:25593287,15626133:181862 +k1,23629:27393233,15626133:181862 +k1,23629:28860912,15626133:181863 +k1,23629:31821501,15626133:181862 +k1,23629:32583029,15626133:0 +) +(1,23630:6630773,16491213:25952256,505283,102891 +g1,23629:7849087,16491213 +g1,23629:10624536,16491213 +g1,23629:11509927,16491213 +g1,23629:12987763,16491213 +g1,23629:13873154,16491213 +g1,23629:15091468,16491213 +k1,23630:32583029,16491213:15892483 +g1,23630:32583029,16491213 +) +v1,23632:6630773,17176068:0,393216,0 +(1,23652:6630773,28481037:25952256,11698185,196608 +g1,23652:6630773,28481037 +g1,23652:6630773,28481037 +g1,23652:6434165,28481037 +(1,23652:6434165,28481037:0,11698185,196608 +r1,23670:32779637,28481037:26345472,11894793,196608 +k1,23652:6434165,28481037:-26345472 +) +(1,23652:6434165,28481037:26345472,11698185,196608 +[1,23652:6630773,28481037:25952256,11501577,0 +(1,23634:6630773,17410505:25952256,431045,106246 +(1,23633:6630773,17410505:0,0,0 +g1,23633:6630773,17410505 +g1,23633:6630773,17410505 +g1,23633:6303093,17410505 +(1,23633:6303093,17410505:0,0,0 +) +g1,23633:6630773,17410505 +) +k1,23634:6630773,17410505:0 +g1,23634:21568700,17410505 +g1,23634:22564562,17410505 +g1,23634:28207779,17410505 +k1,23634:28207779,17410505:0 +h1,23634:29535595,17410505:0,0,0 +k1,23634:32583029,17410505:3047434 +g1,23634:32583029,17410505 +) +(1,23635:6630773,18095360:25952256,424439,79822 +h1,23635:6630773,18095360:0,0,0 +g1,23635:6962727,18095360 +g1,23635:7294681,18095360 +g1,23635:11278128,18095360 +g1,23635:11942036,18095360 +g1,23635:12937898,18095360 +k1,23635:12937898,18095360:0 +h1,23635:14265714,18095360:0,0,0 +k1,23635:32583030,18095360:18317316 +g1,23635:32583030,18095360 +) +(1,23636:6630773,18780215:25952256,424439,106246 +h1,23636:6630773,18780215:0,0,0 +g1,23636:6962727,18780215 +g1,23636:7294681,18780215 +g1,23636:14929622,18780215 +g1,23636:15593530,18780215 +k1,23636:15593530,18780215:0 +h1,23636:16257438,18780215:0,0,0 +k1,23636:32583029,18780215:16325591 +g1,23636:32583029,18780215 +) +(1,23637:6630773,19465070:25952256,424439,112852 +h1,23637:6630773,19465070:0,0,0 +k1,23637:6928060,19465070:297287 +k1,23637:7225346,19465070:297286 +k1,23637:7522633,19465070:297287 +k1,23637:7819920,19465070:297287 +k1,23637:8117207,19465070:297287 +k1,23637:8414493,19465070:297286 +k1,23637:8711780,19465070:297287 +k1,23637:9009067,19465070:297287 +k1,23637:9306354,19465070:297287 +k1,23637:9603640,19465070:297286 +k1,23637:9900927,19465070:297287 +k1,23637:10198214,19465070:297287 +k1,23637:10495501,19465070:297287 +k1,23637:10792787,19465070:297286 +k1,23637:11090074,19465070:297287 +k1,23637:11387361,19465070:297287 +k1,23637:11684648,19465070:297287 +k1,23637:11981934,19465070:297286 +k1,23637:12279221,19465070:297287 +k1,23637:15232139,19465070:297287 +k1,23637:15861380,19465070:297287 +k1,23637:21137975,19465070:297286 +k1,23637:23426986,19465070:297287 +k1,23637:24056227,19465070:297287 +k1,23637:28668915,19465070:297286 +k1,23637:29630110,19465070:297287 +k1,23637:30259351,19465070:297287 +k1,23637:30259351,19465070:0 +h1,23637:32583029,19465070:0,0,0 +k1,23637:32583029,19465070:0 +k1,23637:32583029,19465070:0 +) +(1,23638:6630773,20149925:25952256,424439,86428 +h1,23638:6630773,20149925:0,0,0 +g1,23638:6962727,20149925 +g1,23638:7294681,20149925 +g1,23638:7626635,20149925 +g1,23638:7958589,20149925 +g1,23638:8290543,20149925 +g1,23638:8622497,20149925 +g1,23638:8954451,20149925 +g1,23638:9286405,20149925 +g1,23638:9618359,20149925 +g1,23638:9950313,20149925 +g1,23638:10282267,20149925 +g1,23638:10614221,20149925 +g1,23638:10946175,20149925 +g1,23638:11278129,20149925 +g1,23638:11610083,20149925 +g1,23638:11942037,20149925 +g1,23638:12273991,20149925 +g1,23638:12605945,20149925 +g1,23638:12937899,20149925 +g1,23638:14929623,20149925 +g1,23638:15593531,20149925 +g1,23638:22232611,20149925 +g1,23638:24556289,20149925 +k1,23638:24556289,20149925:0 +h1,23638:27211921,20149925:0,0,0 +k1,23638:32583029,20149925:5371108 +g1,23638:32583029,20149925 +) +(1,23639:6630773,20834780:25952256,424439,86428 +h1,23639:6630773,20834780:0,0,0 +g1,23639:6962727,20834780 +g1,23639:7294681,20834780 +g1,23639:7626635,20834780 +g1,23639:7958589,20834780 +g1,23639:8290543,20834780 +g1,23639:8622497,20834780 +g1,23639:8954451,20834780 +g1,23639:9286405,20834780 +g1,23639:9618359,20834780 +g1,23639:9950313,20834780 +g1,23639:10282267,20834780 +g1,23639:10614221,20834780 +g1,23639:10946175,20834780 +g1,23639:11278129,20834780 +g1,23639:11610083,20834780 +g1,23639:11942037,20834780 +g1,23639:12273991,20834780 +g1,23639:12605945,20834780 +g1,23639:12937899,20834780 +g1,23639:15261577,20834780 +g1,23639:15925485,20834780 +g1,23639:22896519,20834780 +g1,23639:24888243,20834780 +k1,23639:24888243,20834780:0 +h1,23639:27543875,20834780:0,0,0 +k1,23639:32583029,20834780:5039154 +g1,23639:32583029,20834780 +) +(1,23640:6630773,21519635:25952256,431045,106246 +h1,23640:6630773,21519635:0,0,0 +k1,23640:6938564,21519635:307791 +k1,23640:7246356,21519635:307792 +k1,23640:7554147,21519635:307791 +k1,23640:7861939,21519635:307792 +k1,23640:8169730,21519635:307791 +k1,23640:8477522,21519635:307792 +k1,23640:8785313,21519635:307791 +k1,23640:9093105,21519635:307792 +k1,23640:9400896,21519635:307791 +k1,23640:9708688,21519635:307792 +k1,23640:10016479,21519635:307791 +k1,23640:10324271,21519635:307792 +k1,23640:10632062,21519635:307791 +k1,23640:10939854,21519635:307792 +k1,23640:11247645,21519635:307791 +k1,23640:11555437,21519635:307792 +k1,23640:11863228,21519635:307791 +k1,23640:12171020,21519635:307792 +k1,23640:12478811,21519635:307791 +k1,23640:14446373,21519635:307792 +k1,23640:15086118,21519635:307791 +k1,23640:22032990,21519635:307792 +k1,23640:24332505,21519635:307791 +k1,23640:26963974,21519635:307791 +k1,23640:27935674,21519635:307792 +h1,23640:32583029,21519635:0,0,0 +k1,23640:32583029,21519635:0 +k1,23640:32583029,21519635:0 +) +(1,23641:6630773,22204490:25952256,0,0 +h1,23641:6630773,22204490:0,0,0 +h1,23641:6630773,22204490:0,0,0 +k1,23641:32583029,22204490:25952256 +g1,23641:32583029,22204490 +) +(1,23642:6630773,22889345:25952256,431045,106246 +h1,23642:6630773,22889345:0,0,0 +g1,23642:21568700,22889345 +g1,23642:22564562,22889345 +g1,23642:27211917,22889345 +k1,23642:27211917,22889345:0 +h1,23642:28539733,22889345:0,0,0 +k1,23642:32583029,22889345:4043296 +g1,23642:32583029,22889345 +) +(1,23643:6630773,23574200:25952256,424439,79822 +h1,23643:6630773,23574200:0,0,0 +g1,23643:6962727,23574200 +g1,23643:7294681,23574200 +g1,23643:11278128,23574200 +g1,23643:11942036,23574200 +g1,23643:12937898,23574200 +k1,23643:12937898,23574200:0 +h1,23643:14265714,23574200:0,0,0 +k1,23643:32583030,23574200:18317316 +g1,23643:32583030,23574200 +) +(1,23644:6630773,24259055:25952256,424439,106246 +h1,23644:6630773,24259055:0,0,0 +g1,23644:6962727,24259055 +g1,23644:7294681,24259055 +g1,23644:14929622,24259055 +g1,23644:15593530,24259055 +k1,23644:15593530,24259055:0 +h1,23644:16257438,24259055:0,0,0 +k1,23644:32583029,24259055:16325591 +g1,23644:32583029,24259055 +) +(1,23645:6630773,24943910:25952256,424439,112852 +h1,23645:6630773,24943910:0,0,0 +k1,23645:6928060,24943910:297287 +k1,23645:7225346,24943910:297286 +k1,23645:7522633,24943910:297287 +k1,23645:7819920,24943910:297287 +k1,23645:8117207,24943910:297287 +k1,23645:8414493,24943910:297286 +k1,23645:8711780,24943910:297287 +k1,23645:9009067,24943910:297287 +k1,23645:9306354,24943910:297287 +k1,23645:9603640,24943910:297286 +k1,23645:9900927,24943910:297287 +k1,23645:10198214,24943910:297287 +k1,23645:10495501,24943910:297287 +k1,23645:10792787,24943910:297286 +k1,23645:11090074,24943910:297287 +k1,23645:11387361,24943910:297287 +k1,23645:11684648,24943910:297287 +k1,23645:11981934,24943910:297286 +k1,23645:12279221,24943910:297287 +k1,23645:15232139,24943910:297287 +k1,23645:15861380,24943910:297287 +k1,23645:21137975,24943910:297286 +k1,23645:23426986,24943910:297287 +k1,23645:24056227,24943910:297287 +k1,23645:28668915,24943910:297286 +k1,23645:29630110,24943910:297287 +k1,23645:30259351,24943910:297287 +k1,23645:30259351,24943910:0 +h1,23645:32583029,24943910:0,0,0 +k1,23645:32583029,24943910:0 +k1,23645:32583029,24943910:0 +) +(1,23646:6630773,25628765:25952256,424439,86428 +h1,23646:6630773,25628765:0,0,0 +g1,23646:6962727,25628765 +g1,23646:7294681,25628765 +g1,23646:7626635,25628765 +g1,23646:7958589,25628765 +g1,23646:8290543,25628765 +g1,23646:8622497,25628765 +g1,23646:8954451,25628765 +g1,23646:9286405,25628765 +g1,23646:9618359,25628765 +g1,23646:9950313,25628765 +g1,23646:10282267,25628765 +g1,23646:10614221,25628765 +g1,23646:10946175,25628765 +g1,23646:11278129,25628765 +g1,23646:11610083,25628765 +g1,23646:11942037,25628765 +g1,23646:12273991,25628765 +g1,23646:12605945,25628765 +g1,23646:12937899,25628765 +g1,23646:15261577,25628765 +g1,23646:15925485,25628765 +g1,23646:22564565,25628765 +g1,23646:24888243,25628765 +k1,23646:24888243,25628765:0 +h1,23646:27543875,25628765:0,0,0 +k1,23646:32583029,25628765:5039154 +g1,23646:32583029,25628765 +) +(1,23647:6630773,26313620:25952256,424439,86428 +h1,23647:6630773,26313620:0,0,0 +g1,23647:6962727,26313620 +g1,23647:7294681,26313620 +g1,23647:7626635,26313620 +g1,23647:7958589,26313620 +g1,23647:8290543,26313620 +g1,23647:8622497,26313620 +g1,23647:8954451,26313620 +g1,23647:9286405,26313620 +g1,23647:9618359,26313620 +g1,23647:9950313,26313620 +g1,23647:10282267,26313620 +g1,23647:10614221,26313620 +g1,23647:10946175,26313620 +g1,23647:11278129,26313620 +g1,23647:11610083,26313620 +g1,23647:11942037,26313620 +g1,23647:12273991,26313620 +g1,23647:12605945,26313620 +g1,23647:12937899,26313620 +g1,23647:15593531,26313620 +g1,23647:16257439,26313620 +g1,23647:23228473,26313620 +g1,23647:25220197,26313620 +k1,23647:25220197,26313620:0 +h1,23647:27875829,26313620:0,0,0 +k1,23647:32583029,26313620:4707200 +g1,23647:32583029,26313620 +) +(1,23648:6630773,26998475:25952256,431045,106246 +h1,23648:6630773,26998475:0,0,0 +g1,23648:6962727,26998475 +g1,23648:7294681,26998475 +g1,23648:7626635,26998475 +g1,23648:7958589,26998475 +g1,23648:8290543,26998475 +g1,23648:8622497,26998475 +g1,23648:8954451,26998475 +g1,23648:9286405,26998475 +g1,23648:9618359,26998475 +g1,23648:9950313,26998475 +g1,23648:10282267,26998475 +g1,23648:10614221,26998475 +g1,23648:10946175,26998475 +g1,23648:11278129,26998475 +g1,23648:11610083,26998475 +g1,23648:11942037,26998475 +g1,23648:12273991,26998475 +g1,23648:12605945,26998475 +g1,23648:12937899,26998475 +g1,23648:15261577,26998475 +g1,23648:15925485,26998475 +g1,23648:22896519,26998475 +g1,23648:25220197,26998475 +g1,23648:27875829,26998475 +g1,23648:28871691,26998475 +h1,23648:32523184,26998475:0,0,0 +k1,23648:32583029,26998475:59845 +g1,23648:32583029,26998475 +) +(1,23649:6630773,27683330:25952256,0,0 +h1,23649:6630773,27683330:0,0,0 +h1,23649:6630773,27683330:0,0,0 +k1,23649:32583029,27683330:25952256 +g1,23649:32583029,27683330 +) +(1,23650:6630773,28368185:25952256,431045,112852 +h1,23650:6630773,28368185:0,0,0 +g1,23650:15261575,28368185 +h1,23650:19245022,28368185:0,0,0 +k1,23650:32583029,28368185:13338007 +g1,23650:32583029,28368185 +) +] +) +g1,23652:32583029,28481037 +g1,23652:6630773,28481037 +g1,23652:6630773,28481037 +g1,23652:32583029,28481037 +g1,23652:32583029,28481037 +) +h1,23652:6630773,28677645:0,0,0 +v1,23656:6630773,29542725:0,393216,0 +(1,23657:6630773,33445691:25952256,4296182,0 +g1,23657:6630773,33445691 +g1,23657:6237557,33445691 +r1,23670:6368629,33445691:131072,4296182,0 +g1,23657:6567858,33445691 +g1,23657:6764466,33445691 +[1,23657:6764466,33445691:25818563,4296182,0 +(1,23657:6764466,29851023:25818563,701514,196608 +(1,23656:6764466,29851023:0,701514,196608 +r1,23670:8010564,29851023:1246098,898122,196608 +k1,23656:6764466,29851023:-1246098 +) +(1,23656:6764466,29851023:1246098,701514,196608 +) +k1,23656:8285911,29851023:275347 +k1,23656:8613591,29851023:327680 +k1,23656:10434277,29851023:275347 +k1,23656:14004773,29851023:275346 +k1,23656:15988644,29851023:275347 +k1,23656:18996842,29851023:275347 +k1,23656:20747404,29851023:275347 +k1,23656:21378611,29851023:275347 +k1,23656:23961481,29851023:275347 +k1,23656:27783635,29851023:275346 +k1,23656:29250427,29851023:275347 +k1,23656:30544859,29851023:275347 +k1,23656:32583029,29851023:0 +) +(1,23657:6764466,30716103:25818563,513147,134348 +k1,23656:8406361,30716103:252532 +k1,23656:9763174,30716103:252531 +k1,23656:11301522,30716103:252532 +k1,23656:12301820,30716103:252532 +k1,23656:16449812,30716103:252532 +k1,23656:17388505,30716103:252531 +k1,23656:17996897,30716103:252532 +(1,23656:17996897,30716103:0,414482,115847 +r1,23670:19058586,30716103:1061689,530329,115847 +k1,23656:17996897,30716103:-1061689 +) +(1,23656:17996897,30716103:1061689,414482,115847 +k1,23656:17996897,30716103:3277 +h1,23656:19055309,30716103:0,411205,112570 +) +k1,23656:19311118,30716103:252532 +k1,23656:20546690,30716103:252532 +k1,23656:23357747,30716103:252531 +k1,23656:23966139,30716103:252532 +k1,23656:26841422,30716103:252532 +k1,23656:27776839,30716103:252532 +k1,23656:30108827,30716103:252531 +k1,23656:31765140,30716103:252532 +k1,23656:32583029,30716103:0 +) +(1,23657:6764466,31581183:25818563,505283,134348 +k1,23656:9035429,31581183:195438 +k1,23656:11259862,31581183:195438 +k1,23656:11913397,31581183:195438 +k1,23656:12640332,31581183:195438 +k1,23656:15465730,31581183:195438 +k1,23656:16312595,31581183:195437 +k1,23656:18795895,31581183:195438 +k1,23656:20630388,31581183:195438 +k1,23656:23384352,31581183:195438 +k1,23656:24598875,31581183:195438 +k1,23656:26662740,31581183:195434 +k1,23656:28817049,31581183:195438 +k1,23656:29628525,31581183:195438 +k1,23656:30843048,31581183:195438 +k1,23657:32583029,31581183:0 +) +(1,23657:6764466,32446263:25818563,505283,134348 +k1,23656:8052904,32446263:192676 +k1,23656:8928466,32446263:192677 +k1,23656:11200599,32446263:192676 +k1,23656:13127358,32446263:192676 +k1,23656:17404894,32446263:192677 +k1,23656:18616655,32446263:192676 +k1,23656:19224168,32446263:192670 +k1,23656:21996996,32446263:192676 +k1,23656:25507760,32446263:192677 +k1,23656:26804718,32446263:192676 +k1,23656:27745160,32446263:192676 +k1,23656:29451063,32446263:192677 +k1,23656:30295167,32446263:192676 +k1,23656:32583029,32446263:0 +) +(1,23657:6764466,33311343:25818563,513147,134348 +g1,23656:10258845,33311343 +g1,23656:13190925,33311343 +g1,23656:14151682,33311343 +g1,23656:16419227,33311343 +g1,23656:17277748,33311343 +g1,23656:18496062,33311343 +g1,23656:20859945,33311343 +g1,23656:23159603,33311343 +g1,23656:25281658,33311343 +g1,23656:27511848,33311343 +g1,23656:28362505,33311343 +g1,23656:30070373,33311343 +k1,23657:32583029,33311343:1262884 +g1,23657:32583029,33311343 +) +] +g1,23657:32583029,33445691 +) +h1,23657:6630773,33445691:0,0,0 +(1,23660:6630773,36276851:25952256,32768,229376 +(1,23660:6630773,36276851:0,32768,229376 +(1,23660:6630773,36276851:5505024,32768,229376 +r1,23670:12135797,36276851:5505024,262144,229376 +) +k1,23660:6630773,36276851:-5505024 +) +(1,23660:6630773,36276851:25952256,32768,0 +r1,23670:32583029,36276851:25952256,32768,0 +) +) +(1,23660:6630773,37908703:25952256,606339,14155 +(1,23660:6630773,37908703:2954625,582746,14155 +g1,23660:6630773,37908703 +g1,23660:9585398,37908703 +) +k1,23660:32583028,37908703:18986040 +g1,23660:32583028,37908703 +) +(1,23669:6630773,39166999:25952256,513147,134348 +k1,23668:8153628,39166999:251457 +k1,23668:9064376,39166999:251456 +k1,23668:10334918,39166999:251457 +k1,23668:14155465,39166999:251456 +k1,23668:15066214,39166999:251457 +k1,23668:17053064,39166999:251457 +k1,23668:20458112,39166999:251456 +k1,23668:21241066,39166999:251457 +k1,23668:22777029,39166999:251457 +k1,23668:25438899,39166999:251456 +k1,23668:26349648,39166999:251457 +k1,23668:28298486,39166999:251456 +k1,23668:29741388,39166999:251457 +k1,23668:32583029,39166999:0 +) +(1,23669:6630773,40032079:25952256,505283,134348 +k1,23668:7961250,40032079:226195 +k1,23668:8935210,40032079:226194 +k1,23668:12189824,40032079:226195 +k1,23668:13882714,40032079:226194 +k1,23668:17103249,40032079:226195 +k1,23668:19688084,40032079:226194 +k1,23668:20372376,40032079:226195 +k1,23668:23228530,40032079:226194 +k1,23668:24106153,40032079:226195 +k1,23668:25928804,40032079:226194 +k1,23668:26771037,40032079:226195 +k1,23668:27412047,40032079:226167 +k1,23668:29104938,40032079:226195 +k1,23668:31391584,40032079:226194 +k1,23668:32583029,40032079:0 +) +(1,23669:6630773,40897159:25952256,505283,134348 +k1,23668:9678746,40897159:227303 +k1,23668:11300000,40897159:227303 +k1,23668:13078540,40897159:227303 +k1,23668:14695206,40897159:227303 +k1,23668:16361024,40897159:227303 +k1,23668:17859725,40897159:227303 +k1,23668:20267411,40897159:227303 +k1,23668:23753819,40897159:227303 +k1,23668:25265628,40897159:227303 +k1,23668:25907746,40897159:227275 +k1,23668:28634592,40897159:227303 +k1,23668:30700180,40897159:227303 +k1,23668:32583029,40897159:0 +) +(1,23669:6630773,41762239:25952256,513147,134348 +k1,23668:9186200,41762239:265599 +k1,23668:10067838,41762239:265600 +k1,23668:12003294,41762239:265599 +k1,23668:13460339,41762239:265600 +k1,23668:18124715,41762239:265599 +k1,23668:21174284,41762239:265600 +k1,23668:24127514,41762239:265599 +k1,23668:27024385,41762239:265600 +k1,23668:29104676,41762239:265599 +k1,23668:30389361,41762239:265600 +k1,23668:31923737,41762239:265599 +k1,23668:32583029,41762239:0 +) +(1,23669:6630773,42627319:25952256,505283,134348 +k1,23668:8237622,42627319:217486 +k1,23668:9719953,42627319:217486 +k1,23668:11331389,42627319:217485 +k1,23668:13434346,42627319:217486 +k1,23668:14109929,42627319:217486 +k1,23668:14858912,42627319:217486 +k1,23668:17706358,42627319:217486 +k1,23668:18575271,42627319:217485 +k1,23668:20562884,42627319:217486 +k1,23668:23315303,42627319:217486 +k1,23668:25918299,42627319:217486 +k1,23668:28896160,42627319:217485 +k1,23668:30132731,42627319:217486 +k1,23668:31931601,42627319:217486 +k1,23668:32583029,42627319:0 +) +(1,23669:6630773,43492399:25952256,505283,134348 +k1,23668:8426928,43492399:199698 +k1,23668:10020576,43492399:199697 +k1,23668:11609637,43492399:199698 +k1,23668:12425373,43492399:199698 +k1,23668:15778662,43492399:199697 +k1,23668:17713753,43492399:199698 +k1,23668:18932535,43492399:199697 +k1,23668:20785706,43492399:199698 +k1,23668:22709001,43492399:199698 +k1,23668:23594860,43492399:199697 +k1,23668:25492596,43492399:199698 +k1,23668:27427687,43492399:199698 +k1,23668:29600017,43492399:199697 +k1,23668:31193666,43492399:199698 +k1,23668:32583029,43492399:0 +) +(1,23669:6630773,44357479:25952256,505283,134348 +k1,23668:8816000,44357479:147057 +k1,23668:9579094,44357479:147056 +k1,23668:12357422,44357479:147057 +k1,23668:14414801,44357479:147005 +k1,23668:15793934,44357479:147056 +k1,23668:18358614,44357479:147057 +h1,23668:18757073,44357479:0,0,0 +k1,23668:19284893,44357479:147056 +k1,23668:20812794,44357479:147057 +k1,23668:21491348,44357479:147057 +k1,23668:22409107,44357479:147056 +k1,23668:25765462,44357479:147057 +k1,23668:28396333,44357479:147056 +k1,23668:29615559,44357479:147057 +k1,23668:32583029,44357479:0 +) +(1,23669:6630773,45222559:25952256,513147,134348 +k1,23668:9232365,45222559:240985 +k1,23668:10124778,45222559:240985 +k1,23668:11113529,45222559:240985 +k1,23668:13720364,45222559:240985 +k1,23668:14980434,45222559:240985 +k1,23668:17047907,45222559:240985 +k1,23668:17948185,45222559:240986 +k1,23668:19392411,45222559:240985 +k1,23668:21389106,45222559:240985 +k1,23668:22583640,45222559:240985 +k1,23668:25254700,45222559:240985 +k1,23668:25851545,45222559:240985 +k1,23668:27225648,45222559:240985 +k1,23668:29591310,45222559:240985 +k1,23668:32583029,45222559:0 +) +] +(1,23670:32583029,45706769:0,0,0 +g1,23670:32583029,45706769 +) +) +] +(1,23670:6630773,47279633:25952256,0,0 +h1,23670:6630773,47279633:25952256,0,0 +) +] +(1,23670:4262630,4025873:0,0,0 +[1,23670:-473656,4025873:0,0,0 +(1,23670:-473656,-710413:0,0,0 +(1,23670:-473656,-710413:0,0,0 +g1,23670:-473656,-710413 +) +g1,23670:-473656,-710413 +) +] +) +] +!28370 +}407 +!12 +{408 +[1,23739:4262630,47279633:28320399,43253760,0 +(1,23739:4262630,4025873:0,0,0 +[1,23739:-473656,4025873:0,0,0 +(1,23739:-473656,-710413:0,0,0 +(1,23739:-473656,-644877:0,0,0 +k1,23739:-473656,-644877:-65536 ) -(1,23383:-473656,4736287:0,0,0 -k1,23383:-473656,4736287:5209943 +(1,23739:-473656,4736287:0,0,0 +k1,23739:-473656,4736287:5209943 ) -g1,23383:-473656,-710413 +g1,23739:-473656,-710413 ) ] ) -[1,23383:6630773,47279633:25952256,43253760,0 -[1,23383:6630773,4812305:25952256,786432,0 -(1,23383:6630773,4812305:25952256,505283,134348 -(1,23383:6630773,4812305:25952256,505283,134348 -g1,23383:3078558,4812305 -[1,23383:3078558,4812305:0,0,0 -(1,23383:3078558,2439708:0,1703936,0 -k1,23383:1358238,2439708:-1720320 -(1,21457:1358238,2439708:1720320,1703936,0 -(1,21457:1358238,2439708:1179648,16384,0 -r1,23383:2537886,2439708:1179648,16384,0 +[1,23739:6630773,47279633:25952256,43253760,0 +[1,23739:6630773,4812305:25952256,786432,0 +(1,23739:6630773,4812305:25952256,505283,11795 +(1,23739:6630773,4812305:25952256,505283,11795 +g1,23739:3078558,4812305 +[1,23739:3078558,4812305:0,0,0 +(1,23739:3078558,2439708:0,1703936,0 +k1,23739:1358238,2439708:-1720320 +(1,21670:1358238,2439708:1720320,1703936,0 +(1,21670:1358238,2439708:1179648,16384,0 +r1,23739:2537886,2439708:1179648,16384,0 ) -g1,21457:3062174,2439708 -(1,21457:3062174,2439708:16384,1703936,0 -[1,21457:3062174,2439708:25952256,1703936,0 -(1,21457:3062174,1915420:25952256,1179648,0 -(1,21457:3062174,1915420:16384,1179648,0 -r1,23383:3078558,1915420:16384,1179648,0 +g1,21670:3062174,2439708 +(1,21670:3062174,2439708:16384,1703936,0 +[1,21670:3062174,2439708:25952256,1703936,0 +(1,21670:3062174,1915420:25952256,1179648,0 +(1,21670:3062174,1915420:16384,1179648,0 +r1,23739:3078558,1915420:16384,1179648,0 ) -k1,21457:29014430,1915420:25935872 -g1,21457:29014430,1915420 +k1,21670:29014430,1915420:25935872 +g1,21670:29014430,1915420 ) ] ) ) ) ] -[1,23383:3078558,4812305:0,0,0 -(1,23383:3078558,2439708:0,1703936,0 -g1,23383:29030814,2439708 -g1,23383:36135244,2439708 -(1,21457:36135244,2439708:1720320,1703936,0 -(1,21457:36135244,2439708:16384,1703936,0 -[1,21457:36135244,2439708:25952256,1703936,0 -(1,21457:36135244,1915420:25952256,1179648,0 -(1,21457:36135244,1915420:16384,1179648,0 -r1,23383:36151628,1915420:16384,1179648,0 +[1,23739:3078558,4812305:0,0,0 +(1,23739:3078558,2439708:0,1703936,0 +g1,23739:29030814,2439708 +g1,23739:36135244,2439708 +(1,21670:36135244,2439708:1720320,1703936,0 +(1,21670:36135244,2439708:16384,1703936,0 +[1,21670:36135244,2439708:25952256,1703936,0 +(1,21670:36135244,1915420:25952256,1179648,0 +(1,21670:36135244,1915420:16384,1179648,0 +r1,23739:36151628,1915420:16384,1179648,0 ) -k1,21457:62087500,1915420:25935872 -g1,21457:62087500,1915420 +k1,21670:62087500,1915420:25935872 +g1,21670:62087500,1915420 ) ] ) -g1,21457:36675916,2439708 -(1,21457:36675916,2439708:1179648,16384,0 -r1,23383:37855564,2439708:1179648,16384,0 +g1,21670:36675916,2439708 +(1,21670:36675916,2439708:1179648,16384,0 +r1,23739:37855564,2439708:1179648,16384,0 ) ) -k1,23383:3078556,2439708:-34777008 -) -] -[1,23383:3078558,4812305:0,0,0 -(1,23383:3078558,49800853:0,16384,2228224 -k1,23383:1358238,49800853:-1720320 -(1,21457:1358238,49800853:1720320,16384,2228224 -(1,21457:1358238,49800853:1179648,16384,0 -r1,23383:2537886,49800853:1179648,16384,0 -) -g1,21457:3062174,49800853 -(1,21457:3062174,52029077:16384,1703936,0 -[1,21457:3062174,52029077:25952256,1703936,0 -(1,21457:3062174,51504789:25952256,1179648,0 -(1,21457:3062174,51504789:16384,1179648,0 -r1,23383:3078558,51504789:16384,1179648,0 -) -k1,21457:29014430,51504789:25935872 -g1,21457:29014430,51504789 +k1,23739:3078556,2439708:-34777008 ) ] +[1,23739:3078558,4812305:0,0,0 +(1,23739:3078558,49800853:0,16384,2228224 +k1,23739:1358238,49800853:-1720320 +(1,21670:1358238,49800853:1720320,16384,2228224 +(1,21670:1358238,49800853:1179648,16384,0 +r1,23739:2537886,49800853:1179648,16384,0 ) +g1,21670:3062174,49800853 +(1,21670:3062174,52029077:16384,1703936,0 +[1,21670:3062174,52029077:25952256,1703936,0 +(1,21670:3062174,51504789:25952256,1179648,0 +(1,21670:3062174,51504789:16384,1179648,0 +r1,23739:3078558,51504789:16384,1179648,0 ) +k1,21670:29014430,51504789:25935872 +g1,21670:29014430,51504789 ) ] -[1,23383:3078558,4812305:0,0,0 -(1,23383:3078558,49800853:0,16384,2228224 -g1,23383:29030814,49800853 -g1,23383:36135244,49800853 -(1,21457:36135244,49800853:1720320,16384,2228224 -(1,21457:36135244,52029077:16384,1703936,0 -[1,21457:36135244,52029077:25952256,1703936,0 -(1,21457:36135244,51504789:25952256,1179648,0 -(1,21457:36135244,51504789:16384,1179648,0 -r1,23383:36151628,51504789:16384,1179648,0 -) -k1,21457:62087500,51504789:25935872 -g1,21457:62087500,51504789 -) -] -) -g1,21457:36675916,49800853 -(1,21457:36675916,49800853:1179648,16384,0 -r1,23383:37855564,49800853:1179648,16384,0 -) -) -k1,23383:3078556,49800853:-34777008 -) -] -g1,23383:6630773,4812305 -k1,23383:21078841,4812305:13252691 -g1,23383:22701512,4812305 -g1,23383:23350318,4812305 -g1,23383:24759997,4812305 -g1,23383:28372341,4812305 -g1,23383:30105768,4812305 -) -) -] -[1,23383:6630773,45706769:25952256,40108032,0 -(1,23383:6630773,45706769:25952256,40108032,0 -(1,23383:6630773,45706769:0,0,0 -g1,23383:6630773,45706769 -) -[1,23383:6630773,45706769:25952256,40108032,0 -(1,23308:6630773,6254097:25952256,513147,126483 -k1,23307:9245255,6254097:268294 -k1,23307:10704994,6254097:268294 -k1,23307:12647077,6254097:268294 -k1,23307:13730640,6254097:268295 -k1,23307:15238875,6254097:268294 -k1,23307:20027843,6254097:268294 -k1,23307:21164489,6254097:268294 -k1,23307:22963049,6254097:268294 -k1,23307:23882771,6254097:268294 -k1,23307:25457199,6254097:268295 -k1,23307:28852871,6254097:268294 -k1,23307:30140250,6254097:268294 -k1,23307:31391584,6254097:268294 -k1,23307:32583029,6254097:0 -) -(1,23308:6630773,7095585:25952256,505283,134348 -k1,23307:8255017,7095585:233570 -k1,23307:8844447,7095585:233570 -k1,23307:10587968,7095585:233571 -k1,23307:13055660,7095585:233570 -k1,23307:14573736,7095585:233570 -k1,23307:15675658,7095585:233570 -k1,23307:17013510,7095585:233570 -k1,23307:18659382,7095585:233571 -k1,23307:19579114,7095585:233570 -k1,23307:22902707,7095585:233570 -k1,23307:23752315,7095585:233570 -k1,23307:26264572,7095585:233570 -h1,23307:28205748,7095585:0,0,0 -k1,23307:28439319,7095585:233571 -k1,23307:29482259,7095585:233570 -k1,23307:31213982,7095585:233570 -h1,23307:32409359,7095585:0,0,0 -k1,23307:32583029,7095585:0 -) -(1,23308:6630773,7937073:25952256,513147,134348 -k1,23307:9677435,7937073:256794 -(1,23307:9677435,7937073:0,459977,115847 -r1,23383:14959666,7937073:5282231,575824,115847 -k1,23307:9677435,7937073:-5282231 -) -(1,23307:9677435,7937073:5282231,459977,115847 -k1,23307:9677435,7937073:3277 -h1,23307:14956389,7937073:0,411205,112570 -) -k1,23307:15216460,7937073:256794 -k1,23307:16089293,7937073:256795 -k1,23307:17365172,7937073:256794 -k1,23307:18036751,7937073:256736 -k1,23307:20004690,7937073:256795 -k1,23307:22841636,7937073:256794 -k1,23307:24202712,7937073:256794 -k1,23307:25207272,7937073:256794 -k1,23307:26977293,7937073:256795 -k1,23307:27885515,7937073:256794 -k1,23307:31269687,7937073:256794 -k1,23307:32583029,7937073:0 -) -(1,23308:6630773,8778561:25952256,513147,134348 -k1,23307:8502059,8778561:135893 -k1,23307:10423154,8778561:135894 -k1,23307:11028940,8778561:135893 -k1,23307:14021548,8778561:135894 -k1,23307:16919784,8778561:135893 -k1,23307:19168559,8778561:135894 -k1,23307:20798018,8778561:135893 -k1,23307:21620073,8778561:135893 -k1,23307:23777753,8778561:135894 -k1,23307:24596531,8778561:135893 -k1,23307:26132274,8778561:135894 -k1,23307:27459612,8778561:135893 -k1,23307:29210313,8778561:135894 -k1,23307:30029091,8778561:135893 -k1,23307:32583029,8778561:0 -) -(1,23308:6630773,9620049:25952256,513147,122846 -g1,23307:8021447,9620049 -g1,23307:10983019,9620049 -g1,23307:13966873,9620049 -g1,23307:15659668,9620049 -g1,23307:16545059,9620049 -(1,23307:16545059,9620049:0,452978,115847 -r1,23383:20068731,9620049:3523672,568825,115847 -k1,23307:16545059,9620049:-3523672 -) -(1,23307:16545059,9620049:3523672,452978,115847 -k1,23307:16545059,9620049:3277 -h1,23307:20065454,9620049:0,411205,112570 -) -g1,23307:20441630,9620049 -(1,23307:20441630,9620049:0,452978,122846 -r1,23383:22558455,9620049:2116825,575824,122846 -k1,23307:20441630,9620049:-2116825 -) -(1,23307:20441630,9620049:2116825,452978,122846 -k1,23307:20441630,9620049:3277 -h1,23307:22555178,9620049:0,411205,112570 -) -g1,23307:22757684,9620049 -g1,23307:24148358,9620049 -(1,23307:24148358,9620049:0,452978,115847 -r1,23383:27672030,9620049:3523672,568825,115847 -k1,23307:24148358,9620049:-3523672 -) -(1,23307:24148358,9620049:3523672,452978,115847 -g1,23307:27668753,9620049 -h1,23307:27668753,9620049:0,411205,112570 -) -k1,23308:32583029,9620049:4737329 -g1,23308:32583029,9620049 -) -v1,23310:6630773,10843016:0,393216,0 -(1,23311:6630773,12231571:25952256,1781771,0 -g1,23311:6630773,12231571 -g1,23311:6303093,12231571 -r1,23383:6401397,12231571:98304,1781771,0 -g1,23311:6600626,12231571 -g1,23311:6797234,12231571 -[1,23311:6797234,12231571:25785795,1781771,0 -(1,23311:6797234,11263600:25785795,813800,267386 -(1,23310:6797234,11263600:0,813800,267386 -r1,23383:8134168,11263600:1336934,1081186,267386 -k1,23310:6797234,11263600:-1336934 -) -(1,23310:6797234,11263600:1336934,813800,267386 -) -k1,23310:8304442,11263600:170274 -k1,23310:8632122,11263600:327680 -k1,23310:9844419,11263600:170275 -k1,23310:13530700,11263600:170274 -k1,23310:16478390,11263600:170274 -k1,23310:17962006,11263600:170274 -k1,23310:20312664,11263600:170275 -k1,23310:21230704,11263600:170274 -k1,23310:25296438,11263600:170274 -k1,23310:26082750,11263600:170274 -k1,23310:28274811,11263600:170275 -k1,23310:30401335,11263600:170274 -k1,23311:32583029,11263600:0 -) -(1,23311:6797234,12105088:25785795,505283,126483 -(1,23310:6797234,12105088:0,452978,115847 -r1,23383:10672618,12105088:3875384,568825,115847 -k1,23310:6797234,12105088:-3875384 -) -(1,23310:6797234,12105088:3875384,452978,115847 -g1,23310:8559070,12105088 -g1,23310:9262494,12105088 -h1,23310:10669341,12105088:0,411205,112570 -) -g1,23310:11045517,12105088 -g1,23310:13130217,12105088 -g1,23310:13860943,12105088 -g1,23310:16772707,12105088 -g1,23310:18858062,12105088 -k1,23311:32583029,12105088:9611273 -g1,23311:32583029,12105088 -) -] -g1,23311:32583029,12231571 -) -h1,23311:6630773,12231571:0,0,0 -v1,23315:6630773,13660707:0,393216,0 -(1,23321:6630773,15282994:25952256,2015503,196608 -g1,23321:6630773,15282994 -g1,23321:6630773,15282994 -g1,23321:6434165,15282994 -(1,23321:6434165,15282994:0,2015503,196608 -r1,23383:32779637,15282994:26345472,2212111,196608 -k1,23321:6434165,15282994:-26345472 -) -(1,23321:6434165,15282994:26345472,2015503,196608 -[1,23321:6630773,15282994:25952256,1818895,0 -(1,23317:6630773,13874617:25952256,410518,107478 -(1,23316:6630773,13874617:0,0,0 -g1,23316:6630773,13874617 -g1,23316:6630773,13874617 -g1,23316:6303093,13874617 -(1,23316:6303093,13874617:0,0,0 -) -g1,23316:6630773,13874617 -) -k1,23317:6630773,13874617:0 -k1,23317:6630773,13874617:0 -h1,23317:26547951,13874617:0,0,0 -k1,23317:32583029,13874617:6035078 -g1,23317:32583029,13874617 -) -(1,23318:6630773,14540795:25952256,404226,101187 -h1,23318:6630773,14540795:0,0,0 -g1,23318:6946919,14540795 -g1,23318:7263065,14540795 -g1,23318:7579211,14540795 -g1,23318:7895357,14540795 -g1,23318:8211503,14540795 -g1,23318:8527649,14540795 -g1,23318:8843795,14540795 -g1,23318:9159941,14540795 -g1,23318:9476087,14540795 -g1,23318:9792233,14540795 -g1,23318:10108379,14540795 -g1,23318:10424525,14540795 -g1,23318:10740671,14540795 -g1,23318:11056817,14540795 -k1,23318:11056817,14540795:0 -h1,23318:18644313,14540795:0,0,0 -k1,23318:32583029,14540795:13938716 -g1,23318:32583029,14540795 -) -(1,23319:6630773,15206973:25952256,404226,76021 -h1,23319:6630773,15206973:0,0,0 -g1,23319:6946919,15206973 -g1,23319:7263065,15206973 -g1,23319:7579211,15206973 -g1,23319:7895357,15206973 -g1,23319:8211503,15206973 -g1,23319:8527649,15206973 -g1,23319:8843795,15206973 -g1,23319:9159941,15206973 -g1,23319:9476087,15206973 -g1,23319:9792233,15206973 -g1,23319:10108379,15206973 -g1,23319:10424525,15206973 -g1,23319:10740671,15206973 -g1,23319:11056817,15206973 -g1,23319:12637546,15206973 -g1,23319:13269838,15206973 -h1,23319:14850567,15206973:0,0,0 -k1,23319:32583029,15206973:17732462 -g1,23319:32583029,15206973 -) -] -) -g1,23321:32583029,15282994 -g1,23321:6630773,15282994 -g1,23321:6630773,15282994 -g1,23321:32583029,15282994 -g1,23321:32583029,15282994 -) -h1,23321:6630773,15479602:0,0,0 -(1,23325:6630773,16702569:25952256,513147,134348 -h1,23324:6630773,16702569:983040,0,0 -k1,23324:11037116,16702569:303134 -k1,23324:11956288,16702569:303134 -k1,23324:14839574,16702569:303134 -k1,23324:17943716,16702569:303134 -k1,23324:18933012,16702569:303134 -k1,23324:20514754,16702569:303135 -k1,23324:21504050,16702569:303134 -k1,23324:23551097,16702569:303134 -k1,23324:24470269,16702569:303134 -k1,23324:27353555,16702569:303134 -k1,23324:30056616,16702569:303134 -k1,23324:32583029,16702569:0 -) -(1,23325:6630773,17544057:25952256,513147,134348 -k1,23324:8663099,17544057:247125 -k1,23324:9960111,17544057:247125 -k1,23324:12485923,17544057:247125 -h1,23324:14253429,17544057:0,0,0 -k1,23324:14500554,17544057:247125 -k1,23324:15557049,17544057:247125 -k1,23324:17302328,17544057:247126 -h1,23324:18497705,17544057:0,0,0 -k1,23324:18744830,17544057:247125 -k1,23324:19939606,17544057:247125 -k1,23324:21836928,17544057:247125 -k1,23324:25891039,17544057:247125 -k1,23324:27960720,17544057:247125 -k1,23324:31379788,17544057:247125 -k1,23324:32583029,17544057:0 -) -(1,23325:6630773,18385545:25952256,513147,7863 -g1,23324:8259342,18385545 -g1,23324:9117863,18385545 -g1,23324:10706455,18385545 -g1,23324:12173150,18385545 -k1,23325:32583029,18385545:19821366 -g1,23325:32583029,18385545 -) -v1,23327:6630773,19433202:0,393216,0 -(1,23343:6630773,26318328:25952256,7278342,196608 -g1,23343:6630773,26318328 -g1,23343:6630773,26318328 -g1,23343:6434165,26318328 -(1,23343:6434165,26318328:0,7278342,196608 -r1,23383:32779637,26318328:26345472,7474950,196608 -k1,23343:6434165,26318328:-26345472 -) -(1,23343:6434165,26318328:26345472,7278342,196608 -[1,23343:6630773,26318328:25952256,7081734,0 -(1,23329:6630773,19647112:25952256,410518,50331 -(1,23328:6630773,19647112:0,0,0 -g1,23328:6630773,19647112 -g1,23328:6630773,19647112 -g1,23328:6303093,19647112 -(1,23328:6303093,19647112:0,0,0 -) -g1,23328:6630773,19647112 -) -g1,23329:12321396,19647112 -k1,23329:12321396,19647112:0 -h1,23329:12953688,19647112:0,0,0 -k1,23329:32583028,19647112:19629340 -g1,23329:32583028,19647112 -) -(1,23330:6630773,20313290:25952256,410518,107478 -h1,23330:6630773,20313290:0,0,0 -g1,23330:6946919,20313290 -g1,23330:7263065,20313290 -g1,23330:12005251,20313290 -g1,23330:12637543,20313290 -k1,23330:12637543,20313290:0 -h1,23330:27812535,20313290:0,0,0 -k1,23330:32583029,20313290:4770494 -g1,23330:32583029,20313290 -) -(1,23331:6630773,20979468:25952256,410518,76021 -h1,23331:6630773,20979468:0,0,0 -g1,23331:6946919,20979468 -g1,23331:7263065,20979468 -g1,23331:7579211,20979468 -g1,23331:7895357,20979468 -g1,23331:8211503,20979468 -g1,23331:8527649,20979468 -g1,23331:8843795,20979468 -g1,23331:9159941,20979468 -g1,23331:9476087,20979468 -g1,23331:9792233,20979468 -g1,23331:10108379,20979468 -g1,23331:10424525,20979468 -g1,23331:14850565,20979468 -g1,23331:15482857,20979468 -h1,23331:17063586,20979468:0,0,0 -k1,23331:32583029,20979468:15519443 -g1,23331:32583029,20979468 -) -(1,23332:6630773,21645646:25952256,410518,76021 -h1,23332:6630773,21645646:0,0,0 -k1,23332:6630773,21645646:0 -h1,23332:13902124,21645646:0,0,0 -k1,23332:32583028,21645646:18680904 -g1,23332:32583028,21645646 -) -(1,23342:6630773,22311824:25952256,379060,7863 -(1,23334:6630773,22311824:0,0,0 -g1,23334:6630773,22311824 -g1,23334:6630773,22311824 -g1,23334:6303093,22311824 -(1,23334:6303093,22311824:0,0,0 -) -g1,23334:6630773,22311824 -) -g1,23342:7579210,22311824 -g1,23342:7895356,22311824 -g1,23342:8211502,22311824 -g1,23342:10740668,22311824 -h1,23342:12637542,22311824:0,0,0 -k1,23342:32583030,22311824:19945488 -g1,23342:32583030,22311824 -) -(1,23342:6630773,22978002:25952256,404226,9436 -h1,23342:6630773,22978002:0,0,0 -g1,23342:7579210,22978002 -g1,23342:8211502,22978002 -g1,23342:8527648,22978002 -g1,23342:8843794,22978002 -g1,23342:9159940,22978002 -g1,23342:9476086,22978002 -g1,23342:10740669,22978002 -g1,23342:11056815,22978002 -h1,23342:12637543,22978002:0,0,0 -k1,23342:32583029,22978002:19945486 -g1,23342:32583029,22978002 -) -(1,23342:6630773,23644180:25952256,404226,9436 -h1,23342:6630773,23644180:0,0,0 -g1,23342:7579210,23644180 -g1,23342:8211502,23644180 -g1,23342:8527648,23644180 -g1,23342:8843794,23644180 -g1,23342:9159940,23644180 -g1,23342:9476086,23644180 -g1,23342:10740669,23644180 -g1,23342:11056815,23644180 -h1,23342:12637543,23644180:0,0,0 -k1,23342:32583029,23644180:19945486 -g1,23342:32583029,23644180 -) -(1,23342:6630773,24310358:25952256,404226,9436 -h1,23342:6630773,24310358:0,0,0 -g1,23342:7579210,24310358 -g1,23342:8211502,24310358 -g1,23342:8527648,24310358 -g1,23342:8843794,24310358 -g1,23342:9159940,24310358 -g1,23342:9476086,24310358 -g1,23342:10740669,24310358 -g1,23342:11056815,24310358 -h1,23342:12637543,24310358:0,0,0 -k1,23342:32583029,24310358:19945486 -g1,23342:32583029,24310358 -) -(1,23342:6630773,24976536:25952256,404226,9436 -h1,23342:6630773,24976536:0,0,0 -g1,23342:7579210,24976536 -g1,23342:8211502,24976536 -g1,23342:8527648,24976536 -g1,23342:8843794,24976536 -g1,23342:9159940,24976536 -g1,23342:9476086,24976536 -g1,23342:10740669,24976536 -g1,23342:11056815,24976536 -h1,23342:12637543,24976536:0,0,0 -k1,23342:32583029,24976536:19945486 -g1,23342:32583029,24976536 -) -(1,23342:6630773,25642714:25952256,404226,9436 -h1,23342:6630773,25642714:0,0,0 -g1,23342:7579210,25642714 -g1,23342:8211502,25642714 -g1,23342:8527648,25642714 -g1,23342:8843794,25642714 -g1,23342:9159940,25642714 -g1,23342:9476086,25642714 -g1,23342:10740669,25642714 -g1,23342:11056815,25642714 -h1,23342:12637543,25642714:0,0,0 -k1,23342:32583029,25642714:19945486 -g1,23342:32583029,25642714 -) -(1,23342:6630773,26308892:25952256,404226,9436 -h1,23342:6630773,26308892:0,0,0 -g1,23342:7579210,26308892 -g1,23342:8211502,26308892 -g1,23342:8527648,26308892 -g1,23342:8843794,26308892 -g1,23342:9159940,26308892 -g1,23342:9476086,26308892 -g1,23342:10740669,26308892 -g1,23342:11056815,26308892 -h1,23342:12637543,26308892:0,0,0 -k1,23342:32583029,26308892:19945486 -g1,23342:32583029,26308892 -) -] -) -g1,23343:32583029,26318328 -g1,23343:6630773,26318328 -g1,23343:6630773,26318328 -g1,23343:32583029,26318328 -g1,23343:32583029,26318328 -) -h1,23343:6630773,26514936:0,0,0 -v1,23347:6630773,27944072:0,393216,0 -(1,23362:6630773,34153582:25952256,6602726,196608 -g1,23362:6630773,34153582 -g1,23362:6630773,34153582 -g1,23362:6434165,34153582 -(1,23362:6434165,34153582:0,6602726,196608 -r1,23383:32779637,34153582:26345472,6799334,196608 -k1,23362:6434165,34153582:-26345472 -) -(1,23362:6434165,34153582:26345472,6602726,196608 -[1,23362:6630773,34153582:25952256,6406118,0 -(1,23349:6630773,28151690:25952256,404226,101187 -(1,23348:6630773,28151690:0,0,0 -g1,23348:6630773,28151690 -g1,23348:6630773,28151690 -g1,23348:6303093,28151690 -(1,23348:6303093,28151690:0,0,0 -) -g1,23348:6630773,28151690 -) -g1,23349:12321396,28151690 -k1,23349:12321396,28151690:0 -h1,23349:12953688,28151690:0,0,0 -k1,23349:32583028,28151690:19629340 -g1,23349:32583028,28151690 -) -(1,23350:6630773,28817868:25952256,410518,107478 -h1,23350:6630773,28817868:0,0,0 -g1,23350:6946919,28817868 -g1,23350:7263065,28817868 -g1,23350:7579211,28817868 -g1,23350:7895357,28817868 -g1,23350:12321397,28817868 -g1,23350:12953689,28817868 -h1,23350:28128681,28817868:0,0,0 -k1,23350:32583029,28817868:4454348 -g1,23350:32583029,28817868 -) -(1,23351:6630773,29484046:25952256,404226,101187 -h1,23351:6630773,29484046:0,0,0 -h1,23351:12005250,29484046:0,0,0 -k1,23351:32583030,29484046:20577780 -g1,23351:32583030,29484046 -) -(1,23361:6630773,30150224:25952256,404226,6290 -(1,23353:6630773,30150224:0,0,0 -g1,23353:6630773,30150224 -g1,23353:6630773,30150224 -g1,23353:6303093,30150224 -(1,23353:6303093,30150224:0,0,0 -) -g1,23353:6630773,30150224 -) -g1,23361:7579210,30150224 -g1,23361:8211502,30150224 -g1,23361:8843794,30150224 -g1,23361:11372960,30150224 -g1,23361:12321397,30150224 -g1,23361:12953689,30150224 -h1,23361:13269835,30150224:0,0,0 -k1,23361:32583029,30150224:19313194 -g1,23361:32583029,30150224 -) -(1,23361:6630773,30816402:25952256,379060,7863 -h1,23361:6630773,30816402:0,0,0 -g1,23361:7579210,30816402 -g1,23361:7895356,30816402 -g1,23361:8211502,30816402 -g1,23361:10740668,30816402 -h1,23361:12637542,30816402:0,0,0 -k1,23361:32583030,30816402:19945488 -g1,23361:32583030,30816402 -) -(1,23361:6630773,31482580:25952256,404226,6290 -h1,23361:6630773,31482580:0,0,0 -g1,23361:7579210,31482580 -g1,23361:7895356,31482580 -g1,23361:8211502,31482580 -g1,23361:8527648,31482580 -g1,23361:8843794,31482580 -g1,23361:10740669,31482580 -k1,23361:10740669,31482580:0 -h1,23361:13585980,31482580:0,0,0 -k1,23361:32583028,31482580:18997048 -g1,23361:32583028,31482580 -) -(1,23361:6630773,32148758:25952256,404226,76021 -h1,23361:6630773,32148758:0,0,0 -g1,23361:7579210,32148758 -g1,23361:8211502,32148758 -g1,23361:8527648,32148758 -g1,23361:8843794,32148758 -g1,23361:9159940,32148758 -g1,23361:9476086,32148758 -g1,23361:10740669,32148758 -g1,23361:11372961,32148758 -h1,23361:13585981,32148758:0,0,0 -k1,23361:32583029,32148758:18997048 -g1,23361:32583029,32148758 -) -(1,23361:6630773,32814936:25952256,404226,76021 -h1,23361:6630773,32814936:0,0,0 -g1,23361:7579210,32814936 -g1,23361:8211502,32814936 -g1,23361:8527648,32814936 -g1,23361:8843794,32814936 -g1,23361:9159940,32814936 -g1,23361:9476086,32814936 -g1,23361:10740669,32814936 -g1,23361:11372961,32814936 -h1,23361:13585981,32814936:0,0,0 -k1,23361:32583029,32814936:18997048 -g1,23361:32583029,32814936 -) -(1,23361:6630773,33481114:25952256,404226,76021 -h1,23361:6630773,33481114:0,0,0 -g1,23361:7579210,33481114 -g1,23361:8211502,33481114 -g1,23361:8527648,33481114 -g1,23361:8843794,33481114 -g1,23361:9159940,33481114 -g1,23361:9476086,33481114 -g1,23361:10108378,33481114 -g1,23361:10424524,33481114 -g1,23361:10740670,33481114 -g1,23361:11372962,33481114 -h1,23361:13585982,33481114:0,0,0 -k1,23361:32583030,33481114:18997048 -g1,23361:32583030,33481114 -) -(1,23361:6630773,34147292:25952256,404226,6290 -h1,23361:6630773,34147292:0,0,0 -g1,23361:7579210,34147292 -g1,23361:8211502,34147292 -g1,23361:8843794,34147292 -g1,23361:9792231,34147292 -g1,23361:11372960,34147292 -h1,23361:12637543,34147292:0,0,0 -k1,23361:32583029,34147292:19945486 -g1,23361:32583029,34147292 -) -] -) -g1,23362:32583029,34153582 -g1,23362:6630773,34153582 -g1,23362:6630773,34153582 -g1,23362:32583029,34153582 -g1,23362:32583029,34153582 -) -h1,23362:6630773,34350190:0,0,0 -(1,23366:6630773,35573157:25952256,513147,134348 -h1,23365:6630773,35573157:983040,0,0 -k1,23365:8397829,35573157:156181 -k1,23365:9757250,35573157:156180 -k1,23365:12574848,35573157:156181 -k1,23365:13599380,35573157:156180 -k1,23365:14848046,35573157:156181 -k1,23365:15360087,35573157:156181 -k1,23365:19411727,35573157:156180 -k1,23365:21982211,35573157:156138 -k1,23365:23121432,35573157:156181 -k1,23365:23936904,35573157:156180 -k1,23365:27207356,35573157:156181 -k1,23365:29431852,35573157:156180 -k1,23365:30535684,35573157:156181 -k1,23366:32583029,35573157:0 -) -(1,23366:6630773,36414645:25952256,513147,126483 -k1,23365:7874349,36414645:224491 -k1,23365:14154366,36414645:224490 -k1,23365:15946478,36414645:224491 -k1,23365:18342832,36414645:224491 -k1,23365:19586408,36414645:224491 -k1,23365:21464371,36414645:224490 -k1,23365:23202088,36414645:224491 -k1,23365:25281903,36414645:224491 -k1,23365:26122432,36414645:224491 -k1,23365:27366007,36414645:224490 -k1,23365:29747942,36414645:224491 -k1,23365:32583029,36414645:0 -) -(1,23366:6630773,37256133:25952256,513147,134348 -k1,23365:8215762,37256133:204145 -k1,23365:8951403,37256133:204144 -k1,23365:9511408,37256133:204145 -k1,23365:13312823,37256133:204144 -k1,23365:15087866,37256133:204145 -k1,23365:16275050,37256133:204144 -k1,23365:17091957,37256133:204145 -k1,23365:18491479,37256133:204145 -k1,23365:19732403,37256133:204144 -k1,23365:20564383,37256133:204145 -k1,23365:21971768,37256133:204144 -k1,23365:23716664,37256133:204145 -k1,23365:24789160,37256133:204144 -k1,23365:27163857,37256133:204145 -k1,23365:29782347,37256133:204144 -k1,23365:31563944,37256133:204145 -k1,23365:32583029,37256133:0 -) -(1,23366:6630773,38097621:25952256,513147,102891 -k1,23365:10357605,38097621:220656 -k1,23365:11229689,38097621:220656 -k1,23365:12469431,38097621:220657 -k1,23365:15104411,38097621:220634 -k1,23365:16481777,38097621:220656 -k1,23365:17893879,38097621:220657 -k1,23365:18982887,38097621:220656 -k1,23365:20509676,38097621:220656 -k1,23365:23857710,38097621:220656 -k1,23365:24536463,38097621:220656 -k1,23365:28719427,38097621:220657 -k1,23365:30006354,38097621:220656 -k1,23365:31896867,38097621:220656 -k1,23365:32583029,38097621:0 -) -(1,23366:6630773,38939109:25952256,513147,126483 -g1,23365:7698354,38939109 -g1,23365:9372798,38939109 -g1,23365:9927887,38939109 -g1,23365:11621337,38939109 -g1,23365:13711280,38939109 -g1,23365:15101954,38939109 -g1,23365:16735111,38939109 -g1,23365:17802692,38939109 -g1,23365:19579373,38939109 -g1,23365:20797687,38939109 -g1,23365:22491137,38939109 -k1,23366:32583029,38939109:8935182 -g1,23366:32583029,38939109 -) -v1,23368:6630773,39986766:0,393216,0 -(1,23378:6630773,44298931:25952256,4705381,196608 -g1,23378:6630773,44298931 -g1,23378:6630773,44298931 -g1,23378:6434165,44298931 -(1,23378:6434165,44298931:0,4705381,196608 -r1,23383:32779637,44298931:26345472,4901989,196608 -k1,23378:6434165,44298931:-26345472 -) -(1,23378:6434165,44298931:26345472,4705381,196608 -[1,23378:6630773,44298931:25952256,4508773,0 -(1,23370:6630773,40200676:25952256,410518,107478 -(1,23369:6630773,40200676:0,0,0 -g1,23369:6630773,40200676 -g1,23369:6630773,40200676 -g1,23369:6303093,40200676 -(1,23369:6303093,40200676:0,0,0 -) -g1,23369:6630773,40200676 -) -g1,23370:8843793,40200676 -g1,23370:9792231,40200676 -k1,23370:9792231,40200676:0 -h1,23370:30341699,40200676:0,0,0 -k1,23370:32583029,40200676:2241330 -g1,23370:32583029,40200676 -) -(1,23371:6630773,40866854:25952256,410518,107478 -h1,23371:6630773,40866854:0,0,0 -g1,23371:6946919,40866854 -g1,23371:7263065,40866854 -g1,23371:7579211,40866854 -g1,23371:7895357,40866854 -g1,23371:8211503,40866854 -g1,23371:8527649,40866854 -g1,23371:8843795,40866854 -g1,23371:9159941,40866854 -g1,23371:9476087,40866854 -g1,23371:9792233,40866854 -g1,23371:10108379,40866854 -g1,23371:10424525,40866854 -g1,23371:10740671,40866854 -g1,23371:11056817,40866854 -g1,23371:11372963,40866854 -g1,23371:11689109,40866854 -k1,23371:11689109,40866854:0 -h1,23371:23386499,40866854:0,0,0 -k1,23371:32583029,40866854:9196530 -g1,23371:32583029,40866854 -) -(1,23372:6630773,41533032:25952256,404226,101187 -h1,23372:6630773,41533032:0,0,0 -g1,23372:6946919,41533032 -g1,23372:7263065,41533032 -g1,23372:7579211,41533032 -g1,23372:7895357,41533032 -g1,23372:8211503,41533032 -g1,23372:8527649,41533032 -g1,23372:8843795,41533032 -g1,23372:9159941,41533032 -g1,23372:9476087,41533032 -g1,23372:9792233,41533032 -g1,23372:10108379,41533032 -g1,23372:10424525,41533032 -g1,23372:10740671,41533032 -g1,23372:11056817,41533032 -g1,23372:11372963,41533032 -g1,23372:11689109,41533032 -g1,23372:12953692,41533032 -g1,23372:13585984,41533032 -h1,23372:14534421,41533032:0,0,0 -k1,23372:32583029,41533032:18048608 -g1,23372:32583029,41533032 -) -(1,23373:6630773,42199210:25952256,410518,101187 -h1,23373:6630773,42199210:0,0,0 -k1,23373:6630773,42199210:0 -h1,23373:13585978,42199210:0,0,0 -k1,23373:32583030,42199210:18997052 -g1,23373:32583030,42199210 -) -(1,23374:6630773,42865388:25952256,404226,82312 -h1,23374:6630773,42865388:0,0,0 -g1,23374:7263065,42865388 -g1,23374:7579211,42865388 -g1,23374:7895357,42865388 -g1,23374:8211503,42865388 -g1,23374:8527649,42865388 -g1,23374:8843795,42865388 -g1,23374:9159941,42865388 -g1,23374:9476087,42865388 -g1,23374:9792233,42865388 -g1,23374:10108379,42865388 -g1,23374:10424525,42865388 -g1,23374:10740671,42865388 -g1,23374:11056817,42865388 -g1,23374:11372963,42865388 -g1,23374:12953692,42865388 -g1,23374:13585984,42865388 -k1,23374:13585984,42865388:0 -h1,23374:15166713,42865388:0,0,0 -k1,23374:32583029,42865388:17416316 -g1,23374:32583029,42865388 -) -(1,23375:6630773,43531566:25952256,410518,101187 -h1,23375:6630773,43531566:0,0,0 -g1,23375:7263065,43531566 -g1,23375:7579211,43531566 -g1,23375:7895357,43531566 -g1,23375:8211503,43531566 -g1,23375:8527649,43531566 -g1,23375:8843795,43531566 -g1,23375:9159941,43531566 -g1,23375:9476087,43531566 -g1,23375:9792233,43531566 -g1,23375:10108379,43531566 -g1,23375:10424525,43531566 -g1,23375:10740671,43531566 -g1,23375:11056817,43531566 -g1,23375:11372963,43531566 -g1,23375:14218274,43531566 -g1,23375:14850566,43531566 -k1,23375:14850566,43531566:0 -h1,23375:24651082,43531566:0,0,0 -k1,23375:32583029,43531566:7931947 -g1,23375:32583029,43531566 -) -(1,23376:6630773,44197744:25952256,410518,101187 -h1,23376:6630773,44197744:0,0,0 -g1,23376:10108376,44197744 -g1,23376:11056814,44197744 -k1,23376:11056814,44197744:0 -h1,23376:23386496,44197744:0,0,0 -k1,23376:32583029,44197744:9196533 -g1,23376:32583029,44197744 -) -] -) -g1,23378:32583029,44298931 -g1,23378:6630773,44298931 -g1,23378:6630773,44298931 -g1,23378:32583029,44298931 -g1,23378:32583029,44298931 -) -h1,23378:6630773,44495539:0,0,0 -v1,23382:6630773,46099985:0,393216,0 -] -(1,23383:32583029,45706769:0,0,0 -g1,23383:32583029,45706769 -) -) -] -(1,23383:6630773,47279633:25952256,0,0 -h1,23383:6630773,47279633:25952256,0,0 -) -] -(1,23383:4262630,4025873:0,0,0 -[1,23383:-473656,4025873:0,0,0 -(1,23383:-473656,-710413:0,0,0 -(1,23383:-473656,-710413:0,0,0 -g1,23383:-473656,-710413 -) -g1,23383:-473656,-710413 -) -] -) -] -!27348 -}423 -Input:3720:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!106 -{424 -[1,23439:4262630,47279633:28320399,43253760,0 -(1,23439:4262630,4025873:0,0,0 -[1,23439:-473656,4025873:0,0,0 -(1,23439:-473656,-710413:0,0,0 -(1,23439:-473656,-644877:0,0,0 -k1,23439:-473656,-644877:-65536 ) -(1,23439:-473656,4736287:0,0,0 -k1,23439:-473656,4736287:5209943 ) -g1,23439:-473656,-710413 +) +] +[1,23739:3078558,4812305:0,0,0 +(1,23739:3078558,49800853:0,16384,2228224 +g1,23739:29030814,49800853 +g1,23739:36135244,49800853 +(1,21670:36135244,49800853:1720320,16384,2228224 +(1,21670:36135244,52029077:16384,1703936,0 +[1,21670:36135244,52029077:25952256,1703936,0 +(1,21670:36135244,51504789:25952256,1179648,0 +(1,21670:36135244,51504789:16384,1179648,0 +r1,23739:36151628,51504789:16384,1179648,0 +) +k1,21670:62087500,51504789:25935872 +g1,21670:62087500,51504789 +) +] +) +g1,21670:36675916,49800853 +(1,21670:36675916,49800853:1179648,16384,0 +r1,23739:37855564,49800853:1179648,16384,0 +) +) +k1,23739:3078556,49800853:-34777008 +) +] +g1,23739:6630773,4812305 +g1,23739:6630773,4812305 +g1,23739:10069447,4812305 +k1,23739:31387651,4812305:21318204 +) +) +] +[1,23739:6630773,45706769:25952256,40108032,0 +(1,23739:6630773,45706769:25952256,40108032,0 +(1,23739:6630773,45706769:0,0,0 +g1,23739:6630773,45706769 +) +[1,23739:6630773,45706769:25952256,40108032,0 +(1,23669:6630773,6254097:25952256,513147,126483 +k1,23668:7507998,6254097:225797 +k1,23668:9394476,6254097:225796 +k1,23668:10639358,6254097:225797 +k1,23668:12219128,6254097:225796 +k1,23668:14396587,6254097:225797 +k1,23668:15694552,6254097:225796 +k1,23668:19131613,6254097:225797 +k1,23668:21735711,6254097:225796 +k1,23668:24141891,6254097:225797 +k1,23668:26717808,6254097:225796 +k1,23668:27393182,6254097:225797 +k1,23668:28543036,6254097:225796 +k1,23668:30303031,6254097:225797 +k1,23669:32583029,6254097:0 +) +(1,23669:6630773,7119177:25952256,505283,95026 +g1,23668:9961312,7119177 +g1,23668:11351986,7119177 +g1,23668:15136690,7119177 +k1,23669:32583029,7119177:15471739 +g1,23669:32583029,7119177 +) +(1,23671:6630773,7984257:25952256,505283,134348 +h1,23670:6630773,7984257:983040,0,0 +k1,23670:8967282,7984257:156782 +k1,23670:12351057,7984257:156782 +k1,23670:14193426,7984257:156783 +k1,23670:17531326,7984257:156782 +k1,23670:18339536,7984257:156782 +k1,23670:20231711,7984257:156782 +k1,23670:22361127,7984257:156783 +k1,23670:24006232,7984257:156782 +k1,23670:25556965,7984257:156782 +k1,23670:26732832,7984257:156782 +k1,23670:28419881,7984257:156783 +k1,23670:29228091,7984257:156782 +k1,23670:32227169,7984257:156782 +k1,23670:32583029,7984257:0 +) +(1,23671:6630773,8849337:25952256,505283,134348 +k1,23670:10314272,8849337:177323 +k1,23670:11143024,8849337:177324 +k1,23670:11676207,8849337:177323 +k1,23670:13347751,8849337:177323 +k1,23670:14207959,8849337:177323 +k1,23670:16639722,8849337:177324 +k1,23670:19814006,8849337:177323 +k1,23670:20944878,8849337:177323 +k1,23670:22254663,8849337:177323 +k1,23670:23524472,8849337:177324 +k1,23670:24116616,8849337:177301 +k1,23670:26874091,8849337:177323 +k1,23670:29824898,8849337:177324 +k1,23670:30653649,8849337:177323 +k1,23670:32583029,8849337:0 +) +(1,23671:6630773,9714417:25952256,505283,134348 +k1,23670:7246374,9714417:259741 +k1,23670:9000336,9714417:259741 +k1,23670:12593238,9714417:259741 +k1,23670:14864279,9714417:259741 +k1,23670:18120981,9714417:259741 +k1,23670:20766232,9714417:259741 +k1,23670:24021624,9714417:259741 +k1,23670:27798027,9714417:259741 +k1,23670:29759738,9714417:259741 +k1,23670:32583029,9714417:0 +) +(1,23671:6630773,10579497:25952256,513147,134348 +k1,23670:9437263,10579497:230270 +k1,23670:10659092,10579497:230269 +k1,23670:12175178,10579497:230270 +k1,23670:15363088,10579497:230270 +k1,23670:16546907,10579497:230270 +k1,23670:17909638,10579497:230269 +k1,23670:19232393,10579497:230270 +k1,23670:24181255,10579497:230270 +k1,23670:25800888,10579497:230270 +k1,23670:27598778,10579497:230269 +k1,23670:31635378,10579497:230270 +k1,23670:32583029,10579497:0 +) +(1,23671:6630773,11444577:25952256,505283,126483 +g1,23670:8033243,11444577 +k1,23671:32583030,11444577:21714700 +g1,23671:32583030,11444577 +) +v1,23673:6630773,12129432:0,393216,0 +(1,23715:6630773,34672444:25952256,22936228,196608 +g1,23715:6630773,34672444 +g1,23715:6630773,34672444 +g1,23715:6434165,34672444 +(1,23715:6434165,34672444:0,22936228,196608 +r1,23739:32779637,34672444:26345472,23132836,196608 +k1,23715:6434165,34672444:-26345472 +) +(1,23715:6434165,34672444:26345472,22936228,196608 +[1,23715:6630773,34672444:25952256,22739620,0 +(1,23675:6630773,12357263:25952256,424439,106246 +(1,23674:6630773,12357263:0,0,0 +g1,23674:6630773,12357263 +g1,23674:6630773,12357263 +g1,23674:6303093,12357263 +(1,23674:6303093,12357263:0,0,0 +) +g1,23674:6630773,12357263 +) +k1,23675:6630773,12357263:0 +h1,23675:11278129,12357263:0,0,0 +k1,23675:32583029,12357263:21304900 +g1,23675:32583029,12357263 +) +(1,23676:6630773,13042118:25952256,424439,106246 +h1,23676:6630773,13042118:0,0,0 +g1,23676:7958589,13042118 +g1,23676:8954451,13042118 +g1,23676:20240885,13042118 +g1,23676:22564563,13042118 +g1,23676:23228471,13042118 +h1,23676:26879964,13042118:0,0,0 +k1,23676:32583029,13042118:5703065 +g1,23676:32583029,13042118 +) +(1,23677:6630773,13726973:25952256,424439,106246 +h1,23677:6630773,13726973:0,0,0 +g1,23677:10946175,13726973 +g1,23677:18581115,13726973 +k1,23677:18581115,13726973:0 +h1,23677:21900654,13726973:0,0,0 +k1,23677:32583029,13726973:10682375 +g1,23677:32583029,13726973 +) +(1,23678:6630773,14411828:25952256,388105,106246 +h1,23678:6630773,14411828:0,0,0 +g1,23678:6962727,14411828 +g1,23678:7294681,14411828 +g1,23678:7626635,14411828 +g1,23678:7958589,14411828 +g1,23678:8290543,14411828 +g1,23678:8622497,14411828 +g1,23678:8954451,14411828 +g1,23678:9286405,14411828 +g1,23678:12605944,14411828 +g1,23678:13269852,14411828 +k1,23678:13269852,14411828:0 +h1,23678:15261576,14411828:0,0,0 +k1,23678:32583028,14411828:17321452 +g1,23678:32583028,14411828 +) +(1,23679:6630773,15096683:25952256,424439,79822 +h1,23679:6630773,15096683:0,0,0 +g1,23679:6962727,15096683 +g1,23679:7294681,15096683 +g1,23679:7626635,15096683 +g1,23679:7958589,15096683 +g1,23679:8290543,15096683 +g1,23679:8622497,15096683 +g1,23679:8954451,15096683 +g1,23679:9286405,15096683 +g1,23679:11942037,15096683 +g1,23679:12605945,15096683 +k1,23679:12605945,15096683:0 +h1,23679:14265715,15096683:0,0,0 +k1,23679:32583029,15096683:18317314 +g1,23679:32583029,15096683 +) +(1,23680:6630773,15781538:25952256,424439,106246 +h1,23680:6630773,15781538:0,0,0 +g1,23680:6962727,15781538 +g1,23680:7294681,15781538 +g1,23680:7626635,15781538 +g1,23680:7958589,15781538 +g1,23680:8290543,15781538 +g1,23680:8622497,15781538 +g1,23680:8954451,15781538 +g1,23680:9286405,15781538 +g1,23680:9618359,15781538 +g1,23680:9950313,15781538 +g1,23680:15261576,15781538 +g1,23680:20904793,15781538 +k1,23680:20904793,15781538:0 +h1,23680:25552148,15781538:0,0,0 +k1,23680:32583029,15781538:7030881 +g1,23680:32583029,15781538 +) +(1,23681:6630773,16466393:25952256,424439,86428 +h1,23681:6630773,16466393:0,0,0 +g1,23681:6962727,16466393 +g1,23681:7294681,16466393 +g1,23681:7626635,16466393 +g1,23681:7958589,16466393 +g1,23681:8290543,16466393 +g1,23681:8622497,16466393 +g1,23681:8954451,16466393 +g1,23681:9286405,16466393 +g1,23681:9618359,16466393 +g1,23681:9950313,16466393 +k1,23681:9950313,16466393:0 +h1,23681:12273991,16466393:0,0,0 +k1,23681:32583029,16466393:20309038 +g1,23681:32583029,16466393 +) +(1,23682:6630773,17151248:25952256,424439,86428 +h1,23682:6630773,17151248:0,0,0 +g1,23682:6962727,17151248 +g1,23682:7294681,17151248 +g1,23682:7626635,17151248 +g1,23682:7958589,17151248 +g1,23682:8290543,17151248 +g1,23682:8622497,17151248 +g1,23682:8954451,17151248 +g1,23682:9286405,17151248 +g1,23682:9618359,17151248 +g1,23682:9950313,17151248 +k1,23682:9950313,17151248:0 +h1,23682:15261576,17151248:0,0,0 +k1,23682:32583028,17151248:17321452 +g1,23682:32583028,17151248 +) +(1,23683:6630773,17836103:25952256,424439,106246 +h1,23683:6630773,17836103:0,0,0 +g1,23683:6962727,17836103 +g1,23683:7294681,17836103 +g1,23683:7626635,17836103 +g1,23683:7958589,17836103 +g1,23683:8290543,17836103 +g1,23683:8622497,17836103 +g1,23683:8954451,17836103 +g1,23683:9286405,17836103 +g1,23683:9618359,17836103 +g1,23683:9950313,17836103 +k1,23683:9950313,17836103:0 +h1,23683:13933760,17836103:0,0,0 +k1,23683:32583028,17836103:18649268 +g1,23683:32583028,17836103 +) +(1,23684:6630773,18520958:25952256,431045,106246 +h1,23684:6630773,18520958:0,0,0 +g1,23684:6962727,18520958 +g1,23684:7294681,18520958 +g1,23684:7626635,18520958 +g1,23684:7958589,18520958 +g1,23684:8290543,18520958 +g1,23684:8622497,18520958 +g1,23684:8954451,18520958 +g1,23684:9286405,18520958 +g1,23684:9618359,18520958 +g1,23684:9950313,18520958 +k1,23684:9950313,18520958:0 +h1,23684:14597668,18520958:0,0,0 +k1,23684:32583028,18520958:17985360 +g1,23684:32583028,18520958 +) +(1,23685:6630773,19205813:25952256,431045,106246 +h1,23685:6630773,19205813:0,0,0 +g1,23685:6962727,19205813 +g1,23685:7294681,19205813 +g1,23685:7626635,19205813 +g1,23685:7958589,19205813 +g1,23685:8290543,19205813 +g1,23685:8622497,19205813 +g1,23685:8954451,19205813 +g1,23685:9286405,19205813 +g1,23685:9618359,19205813 +g1,23685:9950313,19205813 +h1,23685:14929622,19205813:0,0,0 +k1,23685:32583030,19205813:17653408 +g1,23685:32583030,19205813 +) +(1,23686:6630773,19890668:25952256,424439,79822 +h1,23686:6630773,19890668:0,0,0 +g1,23686:6962727,19890668 +g1,23686:7294681,19890668 +g1,23686:7626635,19890668 +g1,23686:7958589,19890668 +g1,23686:8290543,19890668 +g1,23686:8622497,19890668 +g1,23686:8954451,19890668 +g1,23686:9286405,19890668 +h1,23686:9618359,19890668:0,0,0 +k1,23686:32583029,19890668:22964670 +g1,23686:32583029,19890668 +) +(1,23687:6630773,20575523:25952256,424439,79822 +h1,23687:6630773,20575523:0,0,0 +h1,23687:6962727,20575523:0,0,0 +k1,23687:32583029,20575523:25620302 +g1,23687:32583029,20575523 +) +(1,23688:6630773,21260378:25952256,424439,86428 +h1,23688:6630773,21260378:0,0,0 +g1,23688:10282266,21260378 +g1,23688:11278128,21260378 +g1,23688:14265714,21260378 +h1,23688:17585253,21260378:0,0,0 +k1,23688:32583029,21260378:14997776 +g1,23688:32583029,21260378 +) +(1,23689:6630773,21945233:25952256,424439,79822 +h1,23689:6630773,21945233:0,0,0 +k1,23689:6630773,21945233:0 +h1,23689:13269851,21945233:0,0,0 +k1,23689:32583029,21945233:19313178 +g1,23689:32583029,21945233 +) +(1,23698:6630773,22761160:25952256,431045,112852 +(1,23691:6630773,22761160:0,0,0 +g1,23691:6630773,22761160 +g1,23691:6630773,22761160 +g1,23691:6303093,22761160 +(1,23691:6303093,22761160:0,0,0 +) +g1,23691:6630773,22761160 +) +g1,23698:7626635,22761160 +g1,23698:7958589,22761160 +g1,23698:9286405,22761160 +g1,23698:11610083,22761160 +g1,23698:11942037,22761160 +g1,23698:12273991,22761160 +g1,23698:12605945,22761160 +g1,23698:12937899,22761160 +g1,23698:13269853,22761160 +g1,23698:13601807,22761160 +g1,23698:13933761,22761160 +g1,23698:14265715,22761160 +g1,23698:14597669,22761160 +g1,23698:14929623,22761160 +g1,23698:18581116,22761160 +g1,23698:18913070,22761160 +g1,23698:19245024,22761160 +g1,23698:19576978,22761160 +g1,23698:19908932,22761160 +g1,23698:20240886,22761160 +g1,23698:20572840,22761160 +g1,23698:25220195,22761160 +g1,23698:25552149,22761160 +g1,23698:25884103,22761160 +g1,23698:26216057,22761160 +h1,23698:30531458,22761160:0,0,0 +k1,23698:32583029,22761160:2051571 +g1,23698:32583029,22761160 +) +(1,23698:6630773,23446015:25952256,431045,106246 +h1,23698:6630773,23446015:0,0,0 +g1,23698:7626635,23446015 +g1,23698:7958589,23446015 +g1,23698:9286405,23446015 +g1,23698:13933760,23446015 +g1,23698:14265714,23446015 +g1,23698:14597668,23446015 +g1,23698:14929622,23446015 +g1,23698:20240885,23446015 +g1,23698:20572839,23446015 +g1,23698:24888240,23446015 +g1,23698:25220194,23446015 +g1,23698:25552148,23446015 +g1,23698:25884102,23446015 +g1,23698:26216056,23446015 +h1,23698:31195365,23446015:0,0,0 +k1,23698:32583029,23446015:1387664 +g1,23698:32583029,23446015 +) +(1,23698:6630773,24130870:25952256,424439,106246 +h1,23698:6630773,24130870:0,0,0 +g1,23698:7626635,24130870 +g1,23698:7958589,24130870 +g1,23698:9286405,24130870 +g1,23698:13601806,24130870 +g1,23698:13933760,24130870 +g1,23698:14265714,24130870 +g1,23698:14597668,24130870 +g1,23698:14929622,24130870 +g1,23698:20240885,24130870 +g1,23698:20572839,24130870 +g1,23698:25220194,24130870 +g1,23698:25552148,24130870 +g1,23698:25884102,24130870 +g1,23698:26216056,24130870 +h1,23698:29867549,24130870:0,0,0 +k1,23698:32583029,24130870:2715480 +g1,23698:32583029,24130870 +) +(1,23698:6630773,24815725:25952256,424439,106246 +h1,23698:6630773,24815725:0,0,0 +g1,23698:7626635,24815725 +g1,23698:9286405,24815725 +g1,23698:13601806,24815725 +g1,23698:13933760,24815725 +g1,23698:14265714,24815725 +g1,23698:14597668,24815725 +g1,23698:14929622,24815725 +g1,23698:20572839,24815725 +g1,23698:24888240,24815725 +g1,23698:25220194,24815725 +g1,23698:25552148,24815725 +g1,23698:25884102,24815725 +g1,23698:26216056,24815725 +h1,23698:28871687,24815725:0,0,0 +k1,23698:32583029,24815725:3711342 +g1,23698:32583029,24815725 +) +(1,23698:6630773,25500580:25952256,431045,106246 +h1,23698:6630773,25500580:0,0,0 +g1,23698:7626635,25500580 +g1,23698:9286405,25500580 +g1,23698:12273990,25500580 +g1,23698:12605944,25500580 +g1,23698:12937898,25500580 +g1,23698:13269852,25500580 +g1,23698:13601806,25500580 +g1,23698:13933760,25500580 +g1,23698:14265714,25500580 +g1,23698:14597668,25500580 +g1,23698:14929622,25500580 +g1,23698:19908931,25500580 +g1,23698:20240885,25500580 +g1,23698:20572839,25500580 +g1,23698:24224332,25500580 +g1,23698:24556286,25500580 +g1,23698:24888240,25500580 +g1,23698:25220194,25500580 +g1,23698:25552148,25500580 +g1,23698:25884102,25500580 +g1,23698:26216056,25500580 +h1,23698:30863411,25500580:0,0,0 +k1,23698:32583029,25500580:1719618 +g1,23698:32583029,25500580 +) +(1,23698:6630773,26185435:25952256,431045,79822 +h1,23698:6630773,26185435:0,0,0 +g1,23698:7626635,26185435 +g1,23698:9286405,26185435 +h1,23698:13601806,26185435:0,0,0 +k1,23698:32583030,26185435:18981224 +g1,23698:32583030,26185435 +) +(1,23700:6630773,27001362:25952256,424439,9908 +(1,23699:6630773,27001362:0,0,0 +g1,23699:6630773,27001362 +g1,23699:6630773,27001362 +g1,23699:6303093,27001362 +(1,23699:6303093,27001362:0,0,0 +) +g1,23699:6630773,27001362 +) +g1,23700:10282266,27001362 +k1,23700:10282266,27001362:0 +h1,23700:11610082,27001362:0,0,0 +k1,23700:32583030,27001362:20972948 +g1,23700:32583030,27001362 +) +(1,23701:6630773,27686217:25952256,431045,86428 +h1,23701:6630773,27686217:0,0,0 +g1,23701:6962727,27686217 +g1,23701:7294681,27686217 +g1,23701:10614221,27686217 +g1,23701:15261576,27686217 +g1,23701:15925484,27686217 +g1,23701:16921346,27686217 +k1,23701:16921346,27686217:0 +h1,23701:18249162,27686217:0,0,0 +k1,23701:32583029,27686217:14333867 +g1,23701:32583029,27686217 +) +(1,23702:6630773,28371072:25952256,431045,112852 +h1,23702:6630773,28371072:0,0,0 +g1,23702:6962727,28371072 +g1,23702:7294681,28371072 +g1,23702:11278128,28371072 +g1,23702:15593529,28371072 +k1,23702:15593529,28371072:0 +h1,23702:16921345,28371072:0,0,0 +k1,23702:32583029,28371072:15661684 +g1,23702:32583029,28371072 +) +(1,23703:6630773,29055927:25952256,424439,112852 +h1,23703:6630773,29055927:0,0,0 +g1,23703:6962727,29055927 +g1,23703:7294681,29055927 +g1,23703:11610082,29055927 +g1,23703:14929621,29055927 +g1,23703:15593529,29055927 +g1,23703:21236746,29055927 +g1,23703:23228470,29055927 +g1,23703:23892378,29055927 +g1,23703:25884102,29055927 +g1,23703:26548010,29055927 +g1,23703:27543872,29055927 +g1,23703:28207780,29055927 +h1,23703:29867550,29055927:0,0,0 +k1,23703:32583029,29055927:2715479 +g1,23703:32583029,29055927 +) +(1,23714:6630773,29871854:25952256,424439,86428 +(1,23705:6630773,29871854:0,0,0 +g1,23705:6630773,29871854 +g1,23705:6630773,29871854 +g1,23705:6303093,29871854 +(1,23705:6303093,29871854:0,0,0 +) +g1,23705:6630773,29871854 +) +g1,23714:7626635,29871854 +g1,23714:8290543,29871854 +g1,23714:10946175,29871854 +g1,23714:11278129,29871854 +g1,23714:11610083,29871854 +g1,23714:12937899,29871854 +g1,23714:14265715,29871854 +g1,23714:14929623,29871854 +h1,23714:15593531,29871854:0,0,0 +k1,23714:32583029,29871854:16989498 +g1,23714:32583029,29871854 +) +(1,23714:6630773,30556709:25952256,424439,106246 +h1,23714:6630773,30556709:0,0,0 +g1,23714:7626635,30556709 +g1,23714:8290543,30556709 +g1,23714:11610082,30556709 +g1,23714:13933760,30556709 +g1,23714:16257438,30556709 +h1,23714:19576977,30556709:0,0,0 +k1,23714:32583029,30556709:13006052 +g1,23714:32583029,30556709 +) +(1,23714:6630773,31241564:25952256,431045,112852 +h1,23714:6630773,31241564:0,0,0 +g1,23714:7626635,31241564 +g1,23714:7958589,31241564 +g1,23714:8290543,31241564 +g1,23714:12273990,31241564 +h1,23714:15261575,31241564:0,0,0 +k1,23714:32583029,31241564:17321454 +g1,23714:32583029,31241564 +) +(1,23714:6630773,31926419:25952256,424439,6605 +h1,23714:6630773,31926419:0,0,0 +g1,23714:7626635,31926419 +g1,23714:7958589,31926419 +g1,23714:8290543,31926419 +g1,23714:8622497,31926419 +g1,23714:8954451,31926419 +g1,23714:9286405,31926419 +g1,23714:9618359,31926419 +g1,23714:9950313,31926419 +g1,23714:10282267,31926419 +g1,23714:12273991,31926419 +g1,23714:12605945,31926419 +g1,23714:12937899,31926419 +g1,23714:13269853,31926419 +g1,23714:13601807,31926419 +k1,23714:13601807,31926419:0 +h1,23714:15261577,31926419:0,0,0 +k1,23714:32583029,31926419:17321452 +g1,23714:32583029,31926419 +) +(1,23714:6630773,32611274:25952256,407923,9908 +h1,23714:6630773,32611274:0,0,0 +g1,23714:7626635,32611274 +g1,23714:8290543,32611274 +g1,23714:8622497,32611274 +g1,23714:8954451,32611274 +g1,23714:9286405,32611274 +g1,23714:9618359,32611274 +g1,23714:9950313,32611274 +g1,23714:10282267,32611274 +g1,23714:10614221,32611274 +g1,23714:10946175,32611274 +g1,23714:12273991,32611274 +g1,23714:12605945,32611274 +g1,23714:12937899,32611274 +g1,23714:13269853,32611274 +g1,23714:13601807,32611274 +h1,23714:15261577,32611274:0,0,0 +k1,23714:32583029,32611274:17321452 +g1,23714:32583029,32611274 +) +(1,23714:6630773,33296129:25952256,407923,9908 +h1,23714:6630773,33296129:0,0,0 +g1,23714:7626635,33296129 +g1,23714:8290543,33296129 +g1,23714:8622497,33296129 +g1,23714:8954451,33296129 +g1,23714:9286405,33296129 +g1,23714:9618359,33296129 +g1,23714:9950313,33296129 +g1,23714:10282267,33296129 +g1,23714:10614221,33296129 +g1,23714:10946175,33296129 +g1,23714:12273991,33296129 +g1,23714:12605945,33296129 +g1,23714:12937899,33296129 +g1,23714:13269853,33296129 +g1,23714:13601807,33296129 +h1,23714:15261577,33296129:0,0,0 +k1,23714:32583029,33296129:17321452 +g1,23714:32583029,33296129 +) +(1,23714:6630773,33980984:25952256,407923,9908 +h1,23714:6630773,33980984:0,0,0 +g1,23714:7626635,33980984 +g1,23714:8290543,33980984 +g1,23714:8622497,33980984 +g1,23714:8954451,33980984 +g1,23714:9286405,33980984 +g1,23714:9618359,33980984 +g1,23714:9950313,33980984 +g1,23714:10282267,33980984 +g1,23714:10614221,33980984 +g1,23714:10946175,33980984 +g1,23714:12273991,33980984 +g1,23714:12605945,33980984 +g1,23714:12937899,33980984 +g1,23714:13269853,33980984 +g1,23714:13601807,33980984 +h1,23714:15261577,33980984:0,0,0 +k1,23714:32583029,33980984:17321452 +g1,23714:32583029,33980984 +) +(1,23714:6630773,34665839:25952256,424439,6605 +h1,23714:6630773,34665839:0,0,0 +g1,23714:7626635,34665839 +g1,23714:8290543,34665839 +g1,23714:8954451,34665839 +g1,23714:10614221,34665839 +h1,23714:11942037,34665839:0,0,0 +k1,23714:32583029,34665839:20640992 +g1,23714:32583029,34665839 +) +] +) +g1,23715:32583029,34672444 +g1,23715:6630773,34672444 +g1,23715:6630773,34672444 +g1,23715:32583029,34672444 +g1,23715:32583029,34672444 +) +h1,23715:6630773,34869052:0,0,0 +v1,23719:6630773,35734132:0,393216,0 +(1,23720:6630773,37899073:25952256,2558157,0 +g1,23720:6630773,37899073 +g1,23720:6237557,37899073 +r1,23739:6368629,37899073:131072,2558157,0 +g1,23720:6567858,37899073 +g1,23720:6764466,37899073 +[1,23720:6764466,37899073:25818563,2558157,0 +(1,23720:6764466,36042430:25818563,701514,196608 +(1,23719:6764466,36042430:0,701514,196608 +r1,23739:8010564,36042430:1246098,898122,196608 +k1,23719:6764466,36042430:-1246098 +) +(1,23719:6764466,36042430:1246098,701514,196608 +) +k1,23719:8161225,36042430:150661 +k1,23719:8488905,36042430:327680 +k1,23719:11174498,36042430:150660 +k1,23719:13710669,36042430:150661 +k1,23719:17003126,36042430:150661 +k1,23719:18543149,36042430:150660 +k1,23719:20414130,36042430:150661 +k1,23719:21849297,36042430:150661 +k1,23719:23092443,36042430:150661 +k1,23719:25215736,36042430:150660 +k1,23719:27450442,36042430:150661 +k1,23719:28868569,36042430:150661 +k1,23719:30249292,36042430:150612 +k1,23719:32583029,36042430:0 +) +(1,23720:6764466,36907510:25818563,505283,134348 +k1,23719:7673778,36907510:257884 +k1,23719:11258925,36907510:257884 +k1,23719:13372789,36907510:257884 +k1,23719:15124894,36907510:257884 +k1,23719:16065663,36907510:257884 +k1,23719:18751656,36907510:257884 +k1,23719:19827429,36907510:257884 +k1,23719:21474021,36907510:257884 +k1,23719:22418067,36907510:257884 +k1,23719:24330735,36907510:257884 +k1,23719:25580179,36907510:257884 +k1,23719:26647433,36907510:257884 +k1,23719:29912109,36907510:257884 +k1,23719:31563944,36907510:257884 +k1,23719:32583029,36907510:0 +) +(1,23720:6764466,37772590:25818563,513147,126483 +g1,23719:9802715,37772590 +g1,23719:11021029,37772590 +g1,23719:12312743,37772590 +g1,23719:13171264,37772590 +g1,23719:13726353,37772590 +g1,23719:16748873,37772590 +g1,23719:17479599,37772590 +g1,23719:19841516,37772590 +g1,23719:23771054,37772590 +g1,23719:24621711,37772590 +g1,23719:25840025,37772590 +g1,23719:26454097,37772590 +k1,23720:32583029,37772590:4574418 +g1,23720:32583029,37772590 +) +] +g1,23720:32583029,37899073 +) +h1,23720:6630773,37899073:0,0,0 +v1,23724:6630773,38764153:0,393216,0 +(1,23735:6630773,41924352:25952256,3553415,0 +g1,23735:6630773,41924352 +g1,23735:6237557,41924352 +r1,23739:6368629,41924352:131072,3553415,0 +g1,23735:6567858,41924352 +g1,23735:6764466,41924352 +[1,23735:6764466,41924352:25818563,3553415,0 +(1,23726:6764466,39178695:25818563,807758,219026 +(1,23724:6764466,39178695:0,807758,219026 +r1,23739:7908217,39178695:1143751,1026784,219026 +k1,23724:6764466,39178695:-1143751 +) +(1,23724:6764466,39178695:1143751,807758,219026 +) +k1,23724:8079396,39178695:171179 +k1,23724:8407076,39178695:327680 +k1,23724:9048148,39178695:171179 +k1,23724:9750824,39178695:171179 +k1,23724:12051268,39178695:171179 +k1,23724:13806453,39178695:171180 +k1,23724:14629060,39178695:171179 +k1,23724:16456989,39178695:171179 +k1,23724:17637422,39178695:171179 +k1,23724:19000046,39178695:171179 +k1,23724:19787263,39178695:171179 +k1,23724:20977527,39178695:171179 +k1,23724:22515787,39178695:171179 +k1,23724:23346258,39178695:171179 +k1,23724:24536522,39178695:171179 +k1,23724:26463412,39178695:171180 +k1,23724:27653676,39178695:171179 +k1,23724:29159823,39178695:171179 +k1,23724:30568977,39178695:171179 +k1,23724:31391584,39178695:171179 +k1,23724:32583029,39178695:0 +) +(1,23726:6764466,40043775:25818563,505283,126483 +g1,23724:8248201,40043775 +g1,23724:9466515,40043775 +g1,23724:12657463,40043775 +g1,23725:13960974,40043775 +g1,23725:14907969,40043775 +g1,23725:16225242,40043775 +g1,23725:17040509,40043775 +g1,23725:17595598,40043775 +g1,23725:20051887,40043775 +k1,23726:32583029,40043775:10111553 +g1,23726:32583029,40043775 +) +v1,23728:6764466,40728630:0,393216,0 +(1,23733:6764466,41727744:25818563,1392330,196608 +g1,23733:6764466,41727744 +g1,23733:6764466,41727744 +g1,23733:6567858,41727744 +(1,23733:6567858,41727744:0,1392330,196608 +r1,23739:32779637,41727744:26211779,1588938,196608 +k1,23733:6567857,41727744:-26211780 +) +(1,23733:6567858,41727744:26211779,1392330,196608 +[1,23733:6764466,41727744:25818563,1195722,0 +(1,23730:6764466,40956461:25818563,424439,86428 +(1,23729:6764466,40956461:0,0,0 +g1,23729:6764466,40956461 +g1,23729:6764466,40956461 +g1,23729:6436786,40956461 +(1,23729:6436786,40956461:0,0,0 +) +g1,23729:6764466,40956461 +) +k1,23730:6764466,40956461:0 +g1,23730:12407683,40956461 +g1,23730:15727222,40956461 +g1,23730:16391130,40956461 +h1,23730:18050900,40956461:0,0,0 +k1,23730:32583029,40956461:14532129 +g1,23730:32583029,40956461 +) +(1,23731:6764466,41641316:25818563,424439,86428 +h1,23731:6764466,41641316:0,0,0 +g1,23731:13403545,41641316 +g1,23731:16723084,41641316 +g1,23731:17386992,41641316 +h1,23731:19046762,41641316:0,0,0 +k1,23731:32583029,41641316:13536267 +g1,23731:32583029,41641316 +) +] +) +g1,23733:32583029,41727744 +g1,23733:6764466,41727744 +g1,23733:6764466,41727744 +g1,23733:32583029,41727744 +g1,23733:32583029,41727744 +) +h1,23733:6764466,41924352:0,0,0 +] +g1,23735:32583029,41924352 +) +h1,23735:6630773,41924352:0,0,0 +] +(1,23739:32583029,45706769:0,0,0 +g1,23739:32583029,45706769 +) +) +] +(1,23739:6630773,47279633:25952256,0,0 +h1,23739:6630773,47279633:25952256,0,0 +) +] +(1,23739:4262630,4025873:0,0,0 +[1,23739:-473656,4025873:0,0,0 +(1,23739:-473656,-710413:0,0,0 +(1,23739:-473656,-710413:0,0,0 +g1,23739:-473656,-710413 +) +g1,23739:-473656,-710413 +) +] +) +] +!26276 +}408 +!12 +{409 +[1,23744:4262630,47279633:28320399,43253760,0 +(1,23744:4262630,4025873:0,0,0 +[1,23744:-473656,4025873:0,0,0 +(1,23744:-473656,-710413:0,0,0 +(1,23744:-473656,-644877:0,0,0 +k1,23744:-473656,-644877:-65536 +) +(1,23744:-473656,4736287:0,0,0 +k1,23744:-473656,4736287:5209943 +) +g1,23744:-473656,-710413 ) ] ) -[1,23439:6630773,47279633:25952256,43253760,0 -[1,23439:6630773,4812305:25952256,786432,0 -(1,23439:6630773,4812305:25952256,513147,126483 -(1,23439:6630773,4812305:25952256,513147,126483 -g1,23439:3078558,4812305 -[1,23439:3078558,4812305:0,0,0 -(1,23439:3078558,2439708:0,1703936,0 -k1,23439:1358238,2439708:-1720320 -(1,21457:1358238,2439708:1720320,1703936,0 -(1,21457:1358238,2439708:1179648,16384,0 -r1,23439:2537886,2439708:1179648,16384,0 +[1,23744:6630773,47279633:25952256,43253760,0 +[1,23744:6630773,4812305:25952256,786432,0 +(1,23744:6630773,4812305:25952256,505283,134348 +(1,23744:6630773,4812305:25952256,505283,134348 +g1,23744:3078558,4812305 +[1,23744:3078558,4812305:0,0,0 +(1,23744:3078558,2439708:0,1703936,0 +k1,23744:1358238,2439708:-1720320 +(1,21670:1358238,2439708:1720320,1703936,0 +(1,21670:1358238,2439708:1179648,16384,0 +r1,23744:2537886,2439708:1179648,16384,0 ) -g1,21457:3062174,2439708 -(1,21457:3062174,2439708:16384,1703936,0 -[1,21457:3062174,2439708:25952256,1703936,0 -(1,21457:3062174,1915420:25952256,1179648,0 -(1,21457:3062174,1915420:16384,1179648,0 -r1,23439:3078558,1915420:16384,1179648,0 +g1,21670:3062174,2439708 +(1,21670:3062174,2439708:16384,1703936,0 +[1,21670:3062174,2439708:25952256,1703936,0 +(1,21670:3062174,1915420:25952256,1179648,0 +(1,21670:3062174,1915420:16384,1179648,0 +r1,23744:3078558,1915420:16384,1179648,0 ) -k1,21457:29014430,1915420:25935872 -g1,21457:29014430,1915420 +k1,21670:29014430,1915420:25935872 +g1,21670:29014430,1915420 ) ] ) ) ) ] -[1,23439:3078558,4812305:0,0,0 -(1,23439:3078558,2439708:0,1703936,0 -g1,23439:29030814,2439708 -g1,23439:36135244,2439708 -(1,21457:36135244,2439708:1720320,1703936,0 -(1,21457:36135244,2439708:16384,1703936,0 -[1,21457:36135244,2439708:25952256,1703936,0 -(1,21457:36135244,1915420:25952256,1179648,0 -(1,21457:36135244,1915420:16384,1179648,0 -r1,23439:36151628,1915420:16384,1179648,0 +[1,23744:3078558,4812305:0,0,0 +(1,23744:3078558,2439708:0,1703936,0 +g1,23744:29030814,2439708 +g1,23744:36135244,2439708 +(1,21670:36135244,2439708:1720320,1703936,0 +(1,21670:36135244,2439708:16384,1703936,0 +[1,21670:36135244,2439708:25952256,1703936,0 +(1,21670:36135244,1915420:25952256,1179648,0 +(1,21670:36135244,1915420:16384,1179648,0 +r1,23744:36151628,1915420:16384,1179648,0 ) -k1,21457:62087500,1915420:25935872 -g1,21457:62087500,1915420 +k1,21670:62087500,1915420:25935872 +g1,21670:62087500,1915420 ) ] ) -g1,21457:36675916,2439708 -(1,21457:36675916,2439708:1179648,16384,0 -r1,23439:37855564,2439708:1179648,16384,0 +g1,21670:36675916,2439708 +(1,21670:36675916,2439708:1179648,16384,0 +r1,23744:37855564,2439708:1179648,16384,0 ) ) -k1,23439:3078556,2439708:-34777008 +k1,23744:3078556,2439708:-34777008 ) ] -[1,23439:3078558,4812305:0,0,0 -(1,23439:3078558,49800853:0,16384,2228224 -k1,23439:1358238,49800853:-1720320 -(1,21457:1358238,49800853:1720320,16384,2228224 -(1,21457:1358238,49800853:1179648,16384,0 -r1,23439:2537886,49800853:1179648,16384,0 +[1,23744:3078558,4812305:0,0,0 +(1,23744:3078558,49800853:0,16384,2228224 +k1,23744:1358238,49800853:-1720320 +(1,21670:1358238,49800853:1720320,16384,2228224 +(1,21670:1358238,49800853:1179648,16384,0 +r1,23744:2537886,49800853:1179648,16384,0 ) -g1,21457:3062174,49800853 -(1,21457:3062174,52029077:16384,1703936,0 -[1,21457:3062174,52029077:25952256,1703936,0 -(1,21457:3062174,51504789:25952256,1179648,0 -(1,21457:3062174,51504789:16384,1179648,0 -r1,23439:3078558,51504789:16384,1179648,0 +g1,21670:3062174,49800853 +(1,21670:3062174,52029077:16384,1703936,0 +[1,21670:3062174,52029077:25952256,1703936,0 +(1,21670:3062174,51504789:25952256,1179648,0 +(1,21670:3062174,51504789:16384,1179648,0 +r1,23744:3078558,51504789:16384,1179648,0 ) -k1,21457:29014430,51504789:25935872 -g1,21457:29014430,51504789 +k1,21670:29014430,51504789:25935872 +g1,21670:29014430,51504789 ) ] ) ) ) ] -[1,23439:3078558,4812305:0,0,0 -(1,23439:3078558,49800853:0,16384,2228224 -g1,23439:29030814,49800853 -g1,23439:36135244,49800853 -(1,21457:36135244,49800853:1720320,16384,2228224 -(1,21457:36135244,52029077:16384,1703936,0 -[1,21457:36135244,52029077:25952256,1703936,0 -(1,21457:36135244,51504789:25952256,1179648,0 -(1,21457:36135244,51504789:16384,1179648,0 -r1,23439:36151628,51504789:16384,1179648,0 +[1,23744:3078558,4812305:0,0,0 +(1,23744:3078558,49800853:0,16384,2228224 +g1,23744:29030814,49800853 +g1,23744:36135244,49800853 +(1,21670:36135244,49800853:1720320,16384,2228224 +(1,21670:36135244,52029077:16384,1703936,0 +[1,21670:36135244,52029077:25952256,1703936,0 +(1,21670:36135244,51504789:25952256,1179648,0 +(1,21670:36135244,51504789:16384,1179648,0 +r1,23744:36151628,51504789:16384,1179648,0 ) -k1,21457:62087500,51504789:25935872 -g1,21457:62087500,51504789 +k1,21670:62087500,51504789:25935872 +g1,21670:62087500,51504789 ) ] ) -g1,21457:36675916,49800853 -(1,21457:36675916,49800853:1179648,16384,0 -r1,23439:37855564,49800853:1179648,16384,0 -) +g1,21670:36675916,49800853 +(1,21670:36675916,49800853:1179648,16384,0 +r1,23744:37855564,49800853:1179648,16384,0 ) -k1,23439:3078556,49800853:-34777008 ) -] -g1,23439:6630773,4812305 -g1,23439:6630773,4812305 -g1,23439:8364200,4812305 -g1,23439:11956228,4812305 -g1,23439:13698175,4812305 -g1,23439:16459862,4812305 -g1,23439:18899112,4812305 -k1,23439:31387652,4812305:12488540 +k1,23744:3078556,49800853:-34777008 +) +] +g1,23744:6630773,4812305 +k1,23744:21078841,4812305:13252691 +g1,23744:22701512,4812305 +g1,23744:23350318,4812305 +g1,23744:24759997,4812305 +g1,23744:28372341,4812305 +g1,23744:30105768,4812305 +) +) +] +[1,23744:6630773,45706769:25952256,40108032,0 +(1,23744:6630773,45706769:25952256,40108032,0 +(1,23744:6630773,45706769:0,0,0 +g1,23744:6630773,45706769 +) +[1,23744:6630773,45706769:25952256,40108032,0 +(1,23737:6630773,6254097:25952256,32768,229376 +(1,23737:6630773,6254097:0,32768,229376 +(1,23737:6630773,6254097:5505024,32768,229376 +r1,23744:12135797,6254097:5505024,262144,229376 +) +k1,23737:6630773,6254097:-5505024 ) +(1,23737:6630773,6254097:25952256,32768,0 +r1,23744:32583029,6254097:25952256,32768,0 ) -] -[1,23439:6630773,45706769:25952256,40108032,0 -(1,23439:6630773,45706769:25952256,40108032,0 -(1,23439:6630773,45706769:0,0,0 -g1,23439:6630773,45706769 ) -[1,23439:6630773,45706769:25952256,40108032,0 -v1,23383:6630773,6254097:0,393216,0 -(1,23383:6630773,7642652:25952256,1781771,0 -g1,23383:6630773,7642652 -g1,23383:6303093,7642652 -r1,23439:6401397,7642652:98304,1781771,0 -g1,23383:6600626,7642652 -g1,23383:6797234,7642652 -[1,23383:6797234,7642652:25785795,1781771,0 -(1,23383:6797234,6674681:25785795,813800,267386 -(1,23382:6797234,6674681:0,813800,267386 -r1,23439:8134168,6674681:1336934,1081186,267386 -k1,23382:6797234,6674681:-1336934 -) -(1,23382:6797234,6674681:1336934,813800,267386 -) -k1,23382:8339654,6674681:205486 -k1,23382:8667334,6674681:327680 -k1,23382:9914841,6674681:205485 -k1,23382:13636334,6674681:205486 -k1,23382:16231911,6674681:205479 -k1,23382:17750739,6674681:205486 -k1,23382:20136607,6674681:205485 -k1,23382:21089859,6674681:205486 -k1,23382:25190804,6674681:205485 -k1,23382:26012328,6674681:205486 -k1,23382:28239599,6674681:205485 -k1,23382:30401335,6674681:205486 -k1,23383:32583029,6674681:0 -) -(1,23383:6797234,7516169:25785795,505283,126483 -(1,23382:6797234,7516169:0,452978,115847 -r1,23439:10672618,7516169:3875384,568825,115847 -k1,23382:6797234,7516169:-3875384 -) -(1,23382:6797234,7516169:3875384,452978,115847 -g1,23382:8559070,7516169 -g1,23382:9262494,7516169 -h1,23382:10669341,7516169:0,411205,112570 -) -g1,23382:11045517,7516169 -g1,23382:13130217,7516169 -g1,23382:13860943,7516169 -g1,23382:16772707,7516169 -g1,23382:18858062,7516169 -k1,23383:32583029,7516169:9611273 -g1,23383:32583029,7516169 -) -] -g1,23383:32583029,7642652 -) -h1,23383:6630773,7642652:0,0,0 -(1,23386:6630773,10974508:25952256,32768,229376 -(1,23386:6630773,10974508:0,32768,229376 -(1,23386:6630773,10974508:5505024,32768,229376 -r1,23439:12135797,10974508:5505024,262144,229376 -) -k1,23386:6630773,10974508:-5505024 -) -(1,23386:6630773,10974508:25952256,32768,0 -r1,23439:32583029,10974508:25952256,32768,0 -) -) -(1,23386:6630773,12578836:25952256,615776,151780 -(1,23386:6630773,12578836:2954625,582746,14155 -g1,23386:6630773,12578836 -g1,23386:9585398,12578836 -) -g1,23386:11635627,12578836 -g1,23386:16245692,12578836 -g1,23386:18427255,12578836 -g1,23386:22000016,12578836 -k1,23386:32583029,12578836:7576483 -g1,23386:32583029,12578836 -) -(1,23390:6630773,13813540:25952256,505283,134348 -k1,23389:10159805,13813540:226673 -k1,23389:12872258,13813540:226672 -k1,23389:14488294,13813540:226673 -k1,23389:18223764,13813540:226672 -k1,23389:20788106,13813540:226673 -k1,23389:22869447,13813540:226672 -k1,23389:23905490,13813540:226673 -k1,23389:29602452,13813540:226672 -k1,23389:32583029,13813540:0 -) -(1,23390:6630773,14655028:25952256,513147,134348 -k1,23389:12389366,14655028:153299 -k1,23389:13998829,14655028:153253 -k1,23389:16663467,14655028:153298 -k1,23389:18291981,14655028:153299 -k1,23389:20734452,14655028:153298 -k1,23389:21777730,14655028:153299 -k1,23389:25021707,14655028:153299 -k1,23389:26459511,14655028:153298 -k1,23389:27717092,14655028:153299 -k1,23389:28618156,14655028:153298 -k1,23389:31195632,14655028:153299 -k1,23389:32583029,14655028:0 -) -(1,23390:6630773,15496516:25952256,505283,134348 -k1,23389:7158883,15496516:172250 -k1,23389:9946676,15496516:172251 -k1,23389:13625102,15496516:172250 -k1,23389:14448780,15496516:172250 -k1,23389:17055038,15496516:172251 -k1,23389:19083268,15496516:172250 -k1,23389:22090605,15496516:172250 -k1,23389:22945741,15496516:172251 -k1,23389:25234149,15496516:172250 -k1,23389:26969433,15496516:172250 -k1,23389:29746740,15496516:172251 -k1,23389:31773659,15496516:172250 -k1,23389:32583029,15496516:0 -) -(1,23390:6630773,16338004:25952256,513147,126483 -g1,23389:8189219,16338004 -g1,23389:11120644,16338004 -g1,23389:12002758,16338004 -g1,23389:12818025,16338004 -g1,23389:14650411,16338004 -g1,23389:17030023,16338004 -g1,23389:18220812,16338004 -g1,23389:21763688,16338004 -k1,23390:32583029,16338004:9132444 -g1,23390:32583029,16338004 -) -(1,23391:6630773,18429264:25952256,555811,147783 -(1,23391:6630773,18429264:3348562,534184,12975 -g1,23391:6630773,18429264 -g1,23391:9979335,18429264 -) -k1,23391:32583030,18429264:19456264 -g1,23391:32583030,18429264 -) -(1,23397:6630773,19663968:25952256,513147,134348 -k1,23396:7782077,19663968:197755 -k1,23396:9259750,19663968:197755 -k1,23396:10855388,19663968:197755 -k1,23396:11409003,19663968:197755 -k1,23396:13731435,19663968:197755 -k1,23396:16590607,19663968:197755 -k1,23396:18523755,19663968:197755 -k1,23396:19077370,19663968:197755 -k1,23396:21677675,19663968:197755 -k1,23396:23443051,19663968:197755 -k1,23396:24659891,19663968:197755 -k1,23396:28028933,19663968:197755 -$1,23396:28236027,19663968 -k1,23396:29816755,19663968:0 -k1,23396:30211937,19663968:0 -k1,23396:30607119,19663968:0 -k1,23396:31002301,19663968:0 -k1,23396:32187847,19663968:0 -k1,23397:32583029,19663968:0 -) -(1,23397:6630773,20505456:25952256,513147,134348 -k1,23396:10187411,20505456:0 -k1,23396:10582593,20505456:0 -$1,23396:12163321,20505456 -k1,23396:12556734,20505456:186319 -k1,23396:14751076,20505456:186319 -k1,23396:16672788,20505456:186319 -k1,23396:17214967,20505456:186319 -k1,23396:20160351,20505456:186318 -k1,23396:21576781,20505456:186319 -k1,23396:24286236,20505456:186319 -k1,23396:26706677,20505456:186319 -k1,23396:27846545,20505456:186319 -k1,23396:30466871,20505456:186319 -k1,23396:32583029,20505456:0 -) -(1,23397:6630773,21346944:25952256,513147,7863 -g1,23396:8219365,21346944 -g1,23396:9986215,21346944 -g1,23396:10541304,21346944 -g1,23396:14474119,21346944 -k1,23397:32583029,21346944:15532690 -g1,23397:32583029,21346944 -) -v1,23399:6630773,22712720:0,393216,0 -(1,23400:6630773,24917282:25952256,2597778,0 -g1,23400:6630773,24917282 -g1,23400:6303093,24917282 -r1,23439:6401397,24917282:98304,2597778,0 -g1,23400:6600626,24917282 -g1,23400:6797234,24917282 -[1,23400:6797234,24917282:25785795,2597778,0 -(1,23400:6797234,23107823:25785795,788319,218313 -(1,23399:6797234,23107823:0,788319,218313 -r1,23439:7917113,23107823:1119879,1006632,218313 -k1,23399:6797234,23107823:-1119879 -) -(1,23399:6797234,23107823:1119879,788319,218313 -) -k1,23399:8155616,23107823:238503 -k1,23399:8483296,23107823:327680 -k1,23399:10102644,23107823:238504 -k1,23399:13002564,23107823:238503 -k1,23399:15101634,23107823:238503 -k1,23399:17521831,23107823:238503 -k1,23399:18779420,23107823:238504 -k1,23399:23292181,23107823:238503 -k1,23399:24189976,23107823:238503 -k1,23399:25447564,23107823:238503 -k1,23399:28981218,23107823:238504 -k1,23399:31622271,23107823:238503 -k1,23400:32583029,23107823:0 -) -(1,23400:6797234,23949311:25785795,513147,134348 -k1,23399:10092009,23949311:219826 -k1,23399:11857175,23949311:219827 -k1,23399:16139578,23949311:219826 -k1,23399:19524794,23949311:219827 -k1,23399:22725197,23949311:219826 -k1,23399:27219282,23949311:219827 -k1,23399:31450567,23949311:219826 -k1,23399:32583029,23949311:0 -) -(1,23400:6797234,24790799:25785795,505283,126483 -g1,23399:7744229,24790799 -g1,23399:10794274,24790799 -k1,23400:32583029,24790799:19637208 -g1,23400:32583029,24790799 -) -] -g1,23400:32583029,24917282 -) -h1,23400:6630773,24917282:0,0,0 -(1,23403:6630773,26283058:25952256,513147,134348 -h1,23402:6630773,26283058:983040,0,0 -k1,23402:9273441,26283058:171305 -k1,23402:10313099,26283058:171306 -k1,23402:11576889,26283058:171305 -k1,23402:14443690,26283058:171305 -(1,23402:14443690,26283058:0,459977,115847 -r1,23439:17967362,26283058:3523672,575824,115847 -k1,23402:14443690,26283058:-3523672 -) -(1,23402:14443690,26283058:3523672,459977,115847 -k1,23402:14443690,26283058:3277 -h1,23402:17964085,26283058:0,411205,112570 -) -k1,23402:18138668,26283058:171306 -k1,23402:19877594,26283058:171305 -k1,23402:22629052,26283058:171306 -k1,23402:25478157,26283058:171305 -k1,23402:26300890,26283058:171305 -k1,23402:28906203,26283058:171306 -k1,23402:31193666,26283058:171305 -k1,23402:32583029,26283058:0 -) -(1,23403:6630773,27124546:25952256,513147,7863 -g1,23402:8397623,27124546 -g1,23402:9753562,27124546 -k1,23403:32583028,27124546:20550124 -g1,23403:32583028,27124546 -) -v1,23405:6630773,28315012:0,393216,0 -(1,23413:6630773,31269654:25952256,3347858,196608 -g1,23413:6630773,31269654 -g1,23413:6630773,31269654 -g1,23413:6434165,31269654 -(1,23413:6434165,31269654:0,3347858,196608 -r1,23439:32779637,31269654:26345472,3544466,196608 -k1,23413:6434165,31269654:-26345472 -) -(1,23413:6434165,31269654:26345472,3347858,196608 -[1,23413:6630773,31269654:25952256,3151250,0 -(1,23407:6630773,28522630:25952256,404226,101187 -(1,23406:6630773,28522630:0,0,0 -g1,23406:6630773,28522630 -g1,23406:6630773,28522630 -g1,23406:6303093,28522630 -(1,23406:6303093,28522630:0,0,0 -) -g1,23406:6630773,28522630 -) -g1,23407:9159939,28522630 -g1,23407:10108377,28522630 -h1,23407:17695873,28522630:0,0,0 -k1,23407:32583029,28522630:14887156 -g1,23407:32583029,28522630 -) -(1,23408:6630773,29188808:25952256,410518,9436 -h1,23408:6630773,29188808:0,0,0 -g1,23408:10108376,29188808 -k1,23408:10108376,29188808:0 -h1,23408:10740668,29188808:0,0,0 -k1,23408:32583028,29188808:21842360 -g1,23408:32583028,29188808 -) -(1,23409:6630773,29854986:25952256,410518,107478 -h1,23409:6630773,29854986:0,0,0 -g1,23409:6946919,29854986 -g1,23409:7263065,29854986 -g1,23409:7579211,29854986 -g1,23409:7895357,29854986 -g1,23409:15482853,29854986 -k1,23409:15482853,29854986:0 -h1,23409:25915660,29854986:0,0,0 -k1,23409:32583029,29854986:6667369 -g1,23409:32583029,29854986 -) -(1,23410:6630773,30521164:25952256,410518,101187 -h1,23410:6630773,30521164:0,0,0 -g1,23410:6946919,30521164 -g1,23410:7263065,30521164 -g1,23410:7579211,30521164 -g1,23410:7895357,30521164 -g1,23410:8211503,30521164 -g1,23410:8527649,30521164 -g1,23410:8843795,30521164 -g1,23410:9159941,30521164 -g1,23410:9476087,30521164 -g1,23410:9792233,30521164 -g1,23410:10108379,30521164 -g1,23410:10424525,30521164 -g1,23410:10740671,30521164 -g1,23410:11056817,30521164 -g1,23410:11372963,30521164 -g1,23410:11689109,30521164 -g1,23410:12005255,30521164 -g1,23410:12321401,30521164 -g1,23410:12637547,30521164 -g1,23410:13902130,30521164 -g1,23410:14534422,30521164 -g1,23410:16115151,30521164 -g1,23410:18644317,30521164 -g1,23410:19276609,30521164 -h1,23410:20857338,30521164:0,0,0 -k1,23410:32583029,30521164:11725691 -g1,23410:32583029,30521164 -) -(1,23411:6630773,31187342:25952256,410518,82312 -h1,23411:6630773,31187342:0,0,0 -g1,23411:11689104,31187342 -g1,23411:14850561,31187342 -g1,23411:15482853,31187342 -h1,23411:16115145,31187342:0,0,0 -k1,23411:32583029,31187342:16467884 -g1,23411:32583029,31187342 -) -] -) -g1,23413:32583029,31269654 -g1,23413:6630773,31269654 -g1,23413:6630773,31269654 -g1,23413:32583029,31269654 -g1,23413:32583029,31269654 -) -h1,23413:6630773,31466262:0,0,0 -(1,23417:6630773,32832038:25952256,513147,134348 -h1,23416:6630773,32832038:983040,0,0 -k1,23416:8985699,32832038:175199 -k1,23416:12426558,32832038:175200 -k1,23416:14513442,32832038:175199 -k1,23416:15880087,32832038:175200 -k1,23416:19252132,32832038:175199 -k1,23416:21437976,32832038:175199 -k1,23416:22560827,32832038:175200 -k1,23416:24187648,32832038:175199 -k1,23416:26701173,32832038:175200 -k1,23416:29303170,32832038:175199 -k1,23416:31008636,32832038:175200 -k1,23416:31835263,32832038:175199 -k1,23416:32583029,32832038:0 -) -(1,23417:6630773,33673526:25952256,513147,134348 -k1,23416:8266084,33673526:221044 -k1,23416:10054748,33673526:221043 -k1,23416:10631652,33673526:221044 -k1,23416:12725714,33673526:221043 -k1,23416:15098305,33673526:221044 -k1,23416:16272897,33673526:221043 -k1,23416:17309209,33673526:221044 -k1,23416:18733493,33673526:221043 -k1,23416:19716065,33673526:221044 -k1,23416:22676513,33673526:221043 -k1,23416:24291508,33673526:221044 -k1,23416:24868411,33673526:221043 -k1,23416:27159082,33673526:221044 -k1,23416:29358002,33673526:221043 -k1,23416:32583029,33673526:0 -) -(1,23417:6630773,34515014:25952256,513147,134348 -k1,23416:8009322,34515014:181862 -k1,23416:9580548,34515014:181863 -k1,23416:12541137,34515014:181862 -k1,23416:13254496,34515014:181862 -k1,23416:14052396,34515014:181862 -k1,23416:15622967,34515014:181863 -k1,23416:17546121,34515014:181862 -k1,23416:19121934,34515014:181862 -k1,23416:21969802,34515014:181863 -k1,23416:24219980,34515014:181862 -k1,23416:25593287,34515014:181862 -k1,23416:27393233,34515014:181862 -k1,23416:28860912,34515014:181863 -k1,23416:31821501,34515014:181862 -k1,23416:32583029,34515014:0 -) -(1,23417:6630773,35356502:25952256,505283,102891 -g1,23416:7849087,35356502 -g1,23416:10624536,35356502 -g1,23416:11509927,35356502 -g1,23416:12987763,35356502 -g1,23416:13873154,35356502 -g1,23416:15091468,35356502 -k1,23417:32583029,35356502:15892483 -g1,23417:32583029,35356502 -) -v1,23419:6630773,36546968:0,393216,0 -(1,23439:6630773,45503504:25952256,9349752,196608 -g1,23439:6630773,45503504 -g1,23439:6630773,45503504 -g1,23439:6434165,45503504 -(1,23439:6434165,45503504:0,9349752,196608 -r1,23439:32779637,45503504:26345472,9546360,196608 -k1,23439:6434165,45503504:-26345472 -) -(1,23439:6434165,45503504:26345472,9349752,196608 -[1,23439:6630773,45503504:25952256,9153144,0 -(1,23421:6630773,36760878:25952256,410518,101187 -(1,23420:6630773,36760878:0,0,0 -g1,23420:6630773,36760878 -g1,23420:6630773,36760878 -g1,23420:6303093,36760878 -(1,23420:6303093,36760878:0,0,0 -) -g1,23420:6630773,36760878 -) -k1,23421:6630773,36760878:0 -g1,23421:20857328,36760878 -g1,23421:21805765,36760878 -g1,23421:27180242,36760878 -k1,23421:27180242,36760878:0 -h1,23421:28444824,36760878:0,0,0 -k1,23421:32583029,36760878:4138205 -g1,23421:32583029,36760878 -) -(1,23422:6630773,37427056:25952256,404226,76021 -h1,23422:6630773,37427056:0,0,0 -g1,23422:6946919,37427056 -g1,23422:7263065,37427056 -g1,23422:11056814,37427056 -g1,23422:11689106,37427056 -g1,23422:12637543,37427056 -k1,23422:12637543,37427056:0 -h1,23422:13902125,37427056:0,0,0 -k1,23422:32583029,37427056:18680904 -g1,23422:32583029,37427056 -) -(1,23423:6630773,38093234:25952256,404226,101187 -h1,23423:6630773,38093234:0,0,0 -g1,23423:6946919,38093234 -g1,23423:7263065,38093234 -g1,23423:14534415,38093234 -g1,23423:15166707,38093234 -k1,23423:15166707,38093234:0 -h1,23423:15798999,38093234:0,0,0 -k1,23423:32583029,38093234:16784030 -g1,23423:32583029,38093234 -) -(1,23424:6630773,38759412:25952256,404226,107478 -h1,23424:6630773,38759412:0,0,0 -g1,23424:6946919,38759412 -g1,23424:7263065,38759412 -g1,23424:7579211,38759412 -g1,23424:7895357,38759412 -g1,23424:8211503,38759412 -g1,23424:8527649,38759412 -g1,23424:8843795,38759412 -g1,23424:9159941,38759412 -g1,23424:9476087,38759412 -g1,23424:9792233,38759412 -g1,23424:10108379,38759412 -g1,23424:10424525,38759412 -g1,23424:10740671,38759412 -g1,23424:11056817,38759412 -g1,23424:11372963,38759412 -g1,23424:11689109,38759412 -g1,23424:12005255,38759412 -g1,23424:12321401,38759412 -g1,23424:12637547,38759412 -g1,23424:15482858,38759412 -g1,23424:16115150,38759412 -g1,23424:21173482,38759412 -g1,23424:23386502,38759412 -g1,23424:24018794,38759412 -g1,23424:28444834,38759412 -g1,23424:29393271,38759412 -g1,23424:30025563,38759412 -k1,23424:30025563,38759412:0 -h1,23424:32238583,38759412:0,0,0 -k1,23424:32583029,38759412:344446 -g1,23424:32583029,38759412 -) -(1,23425:6630773,39425590:25952256,404226,82312 -h1,23425:6630773,39425590:0,0,0 -g1,23425:6946919,39425590 -g1,23425:7263065,39425590 -g1,23425:7579211,39425590 -g1,23425:7895357,39425590 -g1,23425:8211503,39425590 -g1,23425:8527649,39425590 -g1,23425:8843795,39425590 -g1,23425:9159941,39425590 -g1,23425:9476087,39425590 -g1,23425:9792233,39425590 -g1,23425:10108379,39425590 -g1,23425:10424525,39425590 -g1,23425:10740671,39425590 -g1,23425:11056817,39425590 -g1,23425:11372963,39425590 -g1,23425:11689109,39425590 -g1,23425:12005255,39425590 -g1,23425:12321401,39425590 -g1,23425:12637547,39425590 -g1,23425:14534421,39425590 -g1,23425:15166713,39425590 -g1,23425:21489628,39425590 -g1,23425:23702648,39425590 -k1,23425:23702648,39425590:0 -h1,23425:26231813,39425590:0,0,0 -k1,23425:32583029,39425590:6351216 -g1,23425:32583029,39425590 -) -(1,23426:6630773,40091768:25952256,404226,82312 -h1,23426:6630773,40091768:0,0,0 -g1,23426:6946919,40091768 -g1,23426:7263065,40091768 -g1,23426:7579211,40091768 -g1,23426:7895357,40091768 -g1,23426:8211503,40091768 -g1,23426:8527649,40091768 -g1,23426:8843795,40091768 -g1,23426:9159941,40091768 -g1,23426:9476087,40091768 -g1,23426:9792233,40091768 -g1,23426:10108379,40091768 -g1,23426:10424525,40091768 -g1,23426:10740671,40091768 -g1,23426:11056817,40091768 -g1,23426:11372963,40091768 -g1,23426:11689109,40091768 -g1,23426:12005255,40091768 -g1,23426:12321401,40091768 -g1,23426:12637547,40091768 -g1,23426:14850567,40091768 -g1,23426:15482859,40091768 -g1,23426:22121919,40091768 -g1,23426:24018794,40091768 -k1,23426:24018794,40091768:0 -h1,23426:26547959,40091768:0,0,0 -k1,23426:32583029,40091768:6035070 -g1,23426:32583029,40091768 -) -(1,23427:6630773,40757946:25952256,410518,101187 -h1,23427:6630773,40757946:0,0,0 -g1,23427:6946919,40757946 -g1,23427:7263065,40757946 -g1,23427:7579211,40757946 -g1,23427:7895357,40757946 -g1,23427:8211503,40757946 -g1,23427:8527649,40757946 -g1,23427:8843795,40757946 -g1,23427:9159941,40757946 -g1,23427:9476087,40757946 -g1,23427:9792233,40757946 -g1,23427:10108379,40757946 -g1,23427:10424525,40757946 -g1,23427:10740671,40757946 -g1,23427:11056817,40757946 -g1,23427:11372963,40757946 -g1,23427:11689109,40757946 -g1,23427:12005255,40757946 -g1,23427:12321401,40757946 -g1,23427:12637547,40757946 -g1,23427:14534421,40757946 -g1,23427:15166713,40757946 -g1,23427:21805773,40757946 -g1,23427:24018793,40757946 -g1,23427:26547959,40757946 -g1,23427:27496397,40757946 -h1,23427:31922437,40757946:0,0,0 -k1,23427:32583029,40757946:660592 -g1,23427:32583029,40757946 -) -(1,23428:6630773,41424124:25952256,0,0 -h1,23428:6630773,41424124:0,0,0 -h1,23428:6630773,41424124:0,0,0 -k1,23428:32583029,41424124:25952256 -g1,23428:32583029,41424124 -) -(1,23429:6630773,42090302:25952256,410518,101187 -h1,23429:6630773,42090302:0,0,0 -g1,23429:20857328,42090302 -g1,23429:21805765,42090302 -g1,23429:26231805,42090302 -k1,23429:26231805,42090302:0 -h1,23429:27496387,42090302:0,0,0 -k1,23429:32583029,42090302:5086642 -g1,23429:32583029,42090302 -) -(1,23430:6630773,42756480:25952256,404226,76021 -h1,23430:6630773,42756480:0,0,0 -g1,23430:6946919,42756480 -g1,23430:7263065,42756480 -g1,23430:11056814,42756480 -g1,23430:11689106,42756480 -g1,23430:12637543,42756480 -k1,23430:12637543,42756480:0 -h1,23430:13902125,42756480:0,0,0 -k1,23430:32583029,42756480:18680904 -g1,23430:32583029,42756480 -) -(1,23431:6630773,43422658:25952256,404226,101187 -h1,23431:6630773,43422658:0,0,0 -g1,23431:6946919,43422658 -g1,23431:7263065,43422658 -g1,23431:14534415,43422658 -g1,23431:15166707,43422658 -k1,23431:15166707,43422658:0 -h1,23431:15798999,43422658:0,0,0 -k1,23431:32583029,43422658:16784030 -g1,23431:32583029,43422658 -) -(1,23432:6630773,44088836:25952256,404226,107478 -h1,23432:6630773,44088836:0,0,0 -g1,23432:6946919,44088836 -g1,23432:7263065,44088836 -g1,23432:7579211,44088836 -g1,23432:7895357,44088836 -g1,23432:8211503,44088836 -g1,23432:8527649,44088836 -g1,23432:8843795,44088836 -g1,23432:9159941,44088836 -g1,23432:9476087,44088836 -g1,23432:9792233,44088836 -g1,23432:10108379,44088836 -g1,23432:10424525,44088836 -g1,23432:10740671,44088836 -g1,23432:11056817,44088836 -g1,23432:11372963,44088836 -g1,23432:11689109,44088836 -g1,23432:12005255,44088836 -g1,23432:12321401,44088836 -g1,23432:12637547,44088836 -g1,23432:15482858,44088836 -g1,23432:16115150,44088836 -g1,23432:21173482,44088836 -g1,23432:23386502,44088836 -g1,23432:24018794,44088836 -g1,23432:28444834,44088836 -g1,23432:29393271,44088836 -g1,23432:30025563,44088836 -k1,23432:30025563,44088836:0 -h1,23432:32238583,44088836:0,0,0 -k1,23432:32583029,44088836:344446 -g1,23432:32583029,44088836 -) -(1,23433:6630773,44755014:25952256,404226,82312 -h1,23433:6630773,44755014:0,0,0 -g1,23433:6946919,44755014 -g1,23433:7263065,44755014 -g1,23433:7579211,44755014 -g1,23433:7895357,44755014 -g1,23433:8211503,44755014 -g1,23433:8527649,44755014 -g1,23433:8843795,44755014 -g1,23433:9159941,44755014 -g1,23433:9476087,44755014 -g1,23433:9792233,44755014 -g1,23433:10108379,44755014 -g1,23433:10424525,44755014 -g1,23433:10740671,44755014 -g1,23433:11056817,44755014 -g1,23433:11372963,44755014 -g1,23433:11689109,44755014 -g1,23433:12005255,44755014 -g1,23433:12321401,44755014 -g1,23433:12637547,44755014 -g1,23433:14850567,44755014 -g1,23433:15482859,44755014 -g1,23433:21805774,44755014 -g1,23433:24018794,44755014 -k1,23433:24018794,44755014:0 -h1,23433:26547959,44755014:0,0,0 -k1,23433:32583029,44755014:6035070 -g1,23433:32583029,44755014 -) -(1,23434:6630773,45421192:25952256,404226,82312 -h1,23434:6630773,45421192:0,0,0 -g1,23434:6946919,45421192 -g1,23434:7263065,45421192 -g1,23434:7579211,45421192 -g1,23434:7895357,45421192 -g1,23434:8211503,45421192 -g1,23434:8527649,45421192 -g1,23434:8843795,45421192 -g1,23434:9159941,45421192 -g1,23434:9476087,45421192 -g1,23434:9792233,45421192 -g1,23434:10108379,45421192 -g1,23434:10424525,45421192 -g1,23434:10740671,45421192 -g1,23434:11056817,45421192 -g1,23434:11372963,45421192 -g1,23434:11689109,45421192 -g1,23434:12005255,45421192 -g1,23434:12321401,45421192 -g1,23434:12637547,45421192 -g1,23434:15166713,45421192 -g1,23434:15799005,45421192 -g1,23434:22438065,45421192 -g1,23434:24334940,45421192 -k1,23434:24334940,45421192:0 -h1,23434:26864105,45421192:0,0,0 -k1,23434:32583029,45421192:5718924 -g1,23434:32583029,45421192 -) -] -) -g1,23439:32583029,45503504 -g1,23439:6630773,45503504 -g1,23439:6630773,45503504 -g1,23439:32583029,45503504 -g1,23439:32583029,45503504 -) -] -(1,23439:32583029,45706769:0,0,0 -g1,23439:32583029,45706769 -) -) -] -(1,23439:6630773,47279633:25952256,0,0 -h1,23439:6630773,47279633:25952256,0,0 -) -] -(1,23439:4262630,4025873:0,0,0 -[1,23439:-473656,4025873:0,0,0 -(1,23439:-473656,-710413:0,0,0 -(1,23439:-473656,-710413:0,0,0 -g1,23439:-473656,-710413 -) -g1,23439:-473656,-710413 -) -] -) -] -!24527 -}424 -Input:3721:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!106 -{425 -[1,23502:4262630,47279633:28320399,43253760,0 -(1,23502:4262630,4025873:0,0,0 -[1,23502:-473656,4025873:0,0,0 -(1,23502:-473656,-710413:0,0,0 -(1,23502:-473656,-644877:0,0,0 -k1,23502:-473656,-644877:-65536 +(1,23737:6630773,7885949:25952256,606339,161218 +(1,23737:6630773,7885949:2954625,582746,14155 +g1,23737:6630773,7885949 +g1,23737:9585398,7885949 +) +g1,23737:12793254,7885949 +k1,23737:32583028,7885949:16793468 +g1,23737:32583028,7885949 +) +(1,23739:6630773,9144245:25952256,513147,134348 +k1,23738:8565683,9144245:282747 +k1,23738:10051671,9144245:282747 +k1,23738:10865915,9144245:282747 +k1,23738:12167746,9144245:282746 +k1,23738:13633418,9144245:282747 +k1,23738:14575457,9144245:282747 +k1,23738:15877289,9144245:282747 +k1,23738:17915746,9144245:282747 +k1,23738:18411401,9144245:282663 +k1,23738:22480818,9144245:282747 +k1,23738:23449726,9144245:282746 +k1,23738:26007883,9144245:282747 +k1,23738:28693180,9144245:282747 +k1,23738:29995012,9144245:282747 +k1,23738:32583029,9144245:0 +) +(1,23739:6630773,10009325:25952256,513147,134348 +k1,23738:7566280,10009325:276215 +k1,23738:9689955,10009325:276215 +k1,23738:10652332,10009325:276215 +k1,23738:12308735,10009325:276215 +k1,23738:13576510,10009325:276215 +k1,23738:14942589,10009325:276215 +k1,23738:15878096,10009325:276215 +k1,23738:18521471,10009325:276215 +k1,23738:21006249,10009325:276215 +k1,23738:23541489,10009325:276214 +k1,23738:24430466,10009325:276215 +k1,23738:25725766,10009325:276215 +k1,23738:27184906,10009325:276215 +k1,23738:28120413,10009325:276215 +k1,23738:30230981,10009325:276215 +k1,23738:31130443,10009325:276215 +k1,23738:32184570,10009325:276215 +k1,23738:32583029,10009325:0 +) +(1,23739:6630773,10874405:25952256,505283,134348 +k1,23738:9940232,10874405:182736 +k1,23738:11293441,10874405:182736 +k1,23738:13656560,10874405:182736 +k1,23738:15251597,10874405:182736 +k1,23738:15794126,10874405:182736 +k1,23738:18011099,10874405:182736 +k1,23738:20248390,10874405:182737 +k1,23738:22232055,10874405:182736 +k1,23738:23606236,10874405:182736 +k1,23738:24988936,10874405:182736 +k1,23738:25945652,10874405:182736 +k1,23738:30528475,10874405:182736 +k1,23738:32583029,10874405:0 +) +(1,23739:6630773,11739485:25952256,513147,134348 +k1,23738:8769642,11739485:164269 +k1,23738:9411458,11739485:164059 +k1,23738:10745990,11739485:164059 +k1,23738:12458665,11739485:164059 +k1,23738:13274152,11739485:164059 +k1,23738:15193265,11739485:164059 +k1,23738:16335777,11739485:164059 +k1,23738:18650072,11739485:164059 +k1,23738:21512248,11739485:164059 +k1,23738:22437835,11739485:164059 +k1,23738:23520709,11739485:164059 +k1,23738:28369282,11739485:164059 +k1,23738:29945642,11739485:164059 +k1,23738:31395517,11739485:164059 +k1,23738:32583029,11739485:0 +) +(1,23739:6630773,12604565:25952256,513147,126483 +g1,23738:7279579,12604565 +g1,23738:9796817,12604565 +g1,23738:12050600,12604565 +k1,23739:32583028,12604565:18557828 +g1,23739:32583028,12604565 +) +] +(1,23744:32583029,45706769:0,0,0 +g1,23744:32583029,45706769 +) +) +] +(1,23744:6630773,47279633:25952256,0,0 +h1,23744:6630773,47279633:25952256,0,0 +) +] +(1,23744:4262630,4025873:0,0,0 +[1,23744:-473656,4025873:0,0,0 +(1,23744:-473656,-710413:0,0,0 +(1,23744:-473656,-710413:0,0,0 +g1,23744:-473656,-710413 +) +g1,23744:-473656,-710413 +) +] +) +] +!6548 +}409 +!11 +{410 +[1,23747:4262630,47279633:28320399,43253760,11795 +(1,23747:4262630,4025873:0,0,0 +[1,23747:-473656,4025873:0,0,0 +(1,23747:-473656,-710413:0,0,0 +(1,23747:-473656,-644877:0,0,0 +k1,23747:-473656,-644877:-65536 ) -(1,23502:-473656,4736287:0,0,0 -k1,23502:-473656,4736287:5209943 +(1,23747:-473656,4736287:0,0,0 +k1,23747:-473656,4736287:5209943 ) -g1,23502:-473656,-710413 +g1,23747:-473656,-710413 ) ] ) -[1,23502:6630773,47279633:25952256,43253760,0 -[1,23502:6630773,4812305:25952256,786432,0 -(1,23502:6630773,4812305:25952256,505283,134348 -(1,23502:6630773,4812305:25952256,505283,134348 -g1,23502:3078558,4812305 -[1,23502:3078558,4812305:0,0,0 -(1,23502:3078558,2439708:0,1703936,0 -k1,23502:1358238,2439708:-1720320 -(1,21457:1358238,2439708:1720320,1703936,0 -(1,21457:1358238,2439708:1179648,16384,0 -r1,23502:2537886,2439708:1179648,16384,0 +[1,23747:6630773,47279633:25952256,43253760,11795 +[1,23747:6630773,4812305:25952256,786432,0 +(1,23747:6630773,4812305:25952256,0,0 +(1,23747:6630773,4812305:25952256,0,0 +g1,23747:3078558,4812305 +[1,23747:3078558,4812305:0,0,0 +(1,23747:3078558,2439708:0,1703936,0 +k1,23747:1358238,2439708:-1720320 +(1,23747:1358238,2439708:1720320,1703936,0 +(1,23747:1358238,2439708:1179648,16384,0 +r1,23747:2537886,2439708:1179648,16384,0 ) -g1,21457:3062174,2439708 -(1,21457:3062174,2439708:16384,1703936,0 -[1,21457:3062174,2439708:25952256,1703936,0 -(1,21457:3062174,1915420:25952256,1179648,0 -(1,21457:3062174,1915420:16384,1179648,0 -r1,23502:3078558,1915420:16384,1179648,0 +g1,23747:3062174,2439708 +(1,23747:3062174,2439708:16384,1703936,0 +[1,23747:3062174,2439708:25952256,1703936,0 +(1,23747:3062174,1915420:25952256,1179648,0 +(1,23747:3062174,1915420:16384,1179648,0 +r1,23747:3078558,1915420:16384,1179648,0 ) -k1,21457:29014430,1915420:25935872 -g1,21457:29014430,1915420 +k1,23747:29014430,1915420:25935872 +g1,23747:29014430,1915420 ) ] ) ) ) ] -[1,23502:3078558,4812305:0,0,0 -(1,23502:3078558,2439708:0,1703936,0 -g1,23502:29030814,2439708 -g1,23502:36135244,2439708 -(1,21457:36135244,2439708:1720320,1703936,0 -(1,21457:36135244,2439708:16384,1703936,0 -[1,21457:36135244,2439708:25952256,1703936,0 -(1,21457:36135244,1915420:25952256,1179648,0 -(1,21457:36135244,1915420:16384,1179648,0 -r1,23502:36151628,1915420:16384,1179648,0 +[1,23747:3078558,4812305:0,0,0 +(1,23747:3078558,2439708:0,1703936,0 +g1,23747:29030814,2439708 +g1,23747:36135244,2439708 +(1,23747:36135244,2439708:1720320,1703936,0 +(1,23747:36135244,2439708:16384,1703936,0 +[1,23747:36135244,2439708:25952256,1703936,0 +(1,23747:36135244,1915420:25952256,1179648,0 +(1,23747:36135244,1915420:16384,1179648,0 +r1,23747:36151628,1915420:16384,1179648,0 ) -k1,21457:62087500,1915420:25935872 -g1,21457:62087500,1915420 +k1,23747:62087500,1915420:25935872 +g1,23747:62087500,1915420 ) ] ) -g1,21457:36675916,2439708 -(1,21457:36675916,2439708:1179648,16384,0 -r1,23502:37855564,2439708:1179648,16384,0 +g1,23747:36675916,2439708 +(1,23747:36675916,2439708:1179648,16384,0 +r1,23747:37855564,2439708:1179648,16384,0 ) ) -k1,23502:3078556,2439708:-34777008 +k1,23747:3078556,2439708:-34777008 ) ] -[1,23502:3078558,4812305:0,0,0 -(1,23502:3078558,49800853:0,16384,2228224 -k1,23502:1358238,49800853:-1720320 -(1,21457:1358238,49800853:1720320,16384,2228224 -(1,21457:1358238,49800853:1179648,16384,0 -r1,23502:2537886,49800853:1179648,16384,0 +[1,23747:3078558,4812305:0,0,0 +(1,23747:3078558,49800853:0,16384,2228224 +k1,23747:1358238,49800853:-1720320 +(1,23747:1358238,49800853:1720320,16384,2228224 +(1,23747:1358238,49800853:1179648,16384,0 +r1,23747:2537886,49800853:1179648,16384,0 ) -g1,21457:3062174,49800853 -(1,21457:3062174,52029077:16384,1703936,0 -[1,21457:3062174,52029077:25952256,1703936,0 -(1,21457:3062174,51504789:25952256,1179648,0 -(1,21457:3062174,51504789:16384,1179648,0 -r1,23502:3078558,51504789:16384,1179648,0 +g1,23747:3062174,49800853 +(1,23747:3062174,52029077:16384,1703936,0 +[1,23747:3062174,52029077:25952256,1703936,0 +(1,23747:3062174,51504789:25952256,1179648,0 +(1,23747:3062174,51504789:16384,1179648,0 +r1,23747:3078558,51504789:16384,1179648,0 ) -k1,21457:29014430,51504789:25935872 -g1,21457:29014430,51504789 +k1,23747:29014430,51504789:25935872 +g1,23747:29014430,51504789 ) ] ) ) ) ] -[1,23502:3078558,4812305:0,0,0 -(1,23502:3078558,49800853:0,16384,2228224 -g1,23502:29030814,49800853 -g1,23502:36135244,49800853 -(1,21457:36135244,49800853:1720320,16384,2228224 -(1,21457:36135244,52029077:16384,1703936,0 -[1,21457:36135244,52029077:25952256,1703936,0 -(1,21457:36135244,51504789:25952256,1179648,0 -(1,21457:36135244,51504789:16384,1179648,0 -r1,23502:36151628,51504789:16384,1179648,0 -) -k1,21457:62087500,51504789:25935872 -g1,21457:62087500,51504789 -) -] -) -g1,21457:36675916,49800853 -(1,21457:36675916,49800853:1179648,16384,0 -r1,23502:37855564,49800853:1179648,16384,0 +[1,23747:3078558,4812305:0,0,0 +(1,23747:3078558,49800853:0,16384,2228224 +g1,23747:29030814,49800853 +g1,23747:36135244,49800853 +(1,23747:36135244,49800853:1720320,16384,2228224 +(1,23747:36135244,52029077:16384,1703936,0 +[1,23747:36135244,52029077:25952256,1703936,0 +(1,23747:36135244,51504789:25952256,1179648,0 +(1,23747:36135244,51504789:16384,1179648,0 +r1,23747:36151628,51504789:16384,1179648,0 ) -) -k1,23502:3078556,49800853:-34777008 -) -] -g1,23502:6630773,4812305 -k1,23502:21078841,4812305:13252691 -g1,23502:22701512,4812305 -g1,23502:23350318,4812305 -g1,23502:24759997,4812305 -g1,23502:28372341,4812305 -g1,23502:30105768,4812305 -) -) -] -[1,23502:6630773,45706769:25952256,40108032,0 -(1,23502:6630773,45706769:25952256,40108032,0 -(1,23502:6630773,45706769:0,0,0 -g1,23502:6630773,45706769 -) -[1,23502:6630773,45706769:25952256,40108032,0 -v1,23439:6630773,6254097:0,393216,0 -(1,23439:6630773,7907841:25952256,2046960,196608 -g1,23439:6630773,7907841 -g1,23439:6630773,7907841 -g1,23439:6434165,7907841 -(1,23439:6434165,7907841:0,2046960,196608 -r1,23502:32779637,7907841:26345472,2243568,196608 -k1,23439:6434165,7907841:-26345472 -) -(1,23439:6434165,7907841:26345472,2046960,196608 -[1,23439:6630773,7907841:25952256,1850352,0 -(1,23435:6630773,6468007:25952256,410518,101187 -h1,23435:6630773,6468007:0,0,0 -g1,23435:6946919,6468007 -g1,23435:7263065,6468007 -g1,23435:7579211,6468007 -g1,23435:7895357,6468007 -g1,23435:8211503,6468007 -g1,23435:8527649,6468007 -g1,23435:8843795,6468007 -g1,23435:9159941,6468007 -g1,23435:9476087,6468007 -g1,23435:9792233,6468007 -g1,23435:10108379,6468007 -g1,23435:10424525,6468007 -g1,23435:10740671,6468007 -g1,23435:11056817,6468007 -g1,23435:11372963,6468007 -g1,23435:11689109,6468007 -g1,23435:12005255,6468007 -g1,23435:12321401,6468007 -g1,23435:12637547,6468007 -g1,23435:14850567,6468007 -g1,23435:15482859,6468007 -g1,23435:22121919,6468007 -g1,23435:24334939,6468007 -g1,23435:26864105,6468007 -g1,23435:27812543,6468007 -h1,23435:31290145,6468007:0,0,0 -k1,23435:32583029,6468007:1292884 -g1,23435:32583029,6468007 -) -(1,23436:6630773,7134185:25952256,0,0 -h1,23436:6630773,7134185:0,0,0 -h1,23436:6630773,7134185:0,0,0 -k1,23436:32583029,7134185:25952256 -g1,23436:32583029,7134185 -) -(1,23437:6630773,7800363:25952256,410518,107478 -h1,23437:6630773,7800363:0,0,0 -g1,23437:14850561,7800363 -h1,23437:18644309,7800363:0,0,0 -k1,23437:32583029,7800363:13938720 -g1,23437:32583029,7800363 -) -] -) -g1,23439:32583029,7907841 -g1,23439:6630773,7907841 -g1,23439:6630773,7907841 -g1,23439:32583029,7907841 -g1,23439:32583029,7907841 -) -h1,23439:6630773,8104449:0,0,0 -v1,23443:6630773,9766964:0,393216,0 -(1,23444:6630773,13629337:25952256,4255589,0 -g1,23444:6630773,13629337 -g1,23444:6303093,13629337 -r1,23502:6401397,13629337:98304,4255589,0 -g1,23444:6600626,13629337 -g1,23444:6797234,13629337 -[1,23444:6797234,13629337:25785795,4255589,0 -(1,23444:6797234,10129037:25785795,755289,196608 -(1,23443:6797234,10129037:0,755289,196608 -r1,23502:8134168,10129037:1336934,951897,196608 -k1,23443:6797234,10129037:-1336934 -) -(1,23443:6797234,10129037:1336934,755289,196608 -) -k1,23443:8398278,10129037:264110 -k1,23443:8725958,10129037:327680 -k1,23443:10535407,10129037:264110 -k1,23443:14094667,10129037:264110 -k1,23443:16067301,10129037:264110 -k1,23443:19064262,10129037:264110 -k1,23443:20803588,10129037:264111 -k1,23443:21423558,10129037:264110 -k1,23443:23995191,10129037:264110 -k1,23443:27806109,10129037:264110 -k1,23443:29261664,10129037:264110 -k1,23443:30544859,10129037:264110 -k1,23443:32583029,10129037:0 -) -(1,23444:6797234,10970525:25785795,513147,134348 -k1,23443:8436944,10970525:250347 -k1,23443:9791573,10970525:250347 -k1,23443:11327737,10970525:250348 -k1,23443:12325850,10970525:250347 -k1,23443:16471657,10970525:250347 -k1,23443:17408166,10970525:250347 -k1,23443:18014373,10970525:250347 -(1,23443:18014373,10970525:0,414482,115847 -r1,23502:19076062,10970525:1061689,530329,115847 -k1,23443:18014373,10970525:-1061689 -) -(1,23443:18014373,10970525:1061689,414482,115847 -k1,23443:18014373,10970525:3277 -h1,23443:19072785,10970525:0,411205,112570 -) -k1,23443:19326410,10970525:250348 -k1,23443:20559797,10970525:250347 -k1,23443:23368670,10970525:250347 -k1,23443:23974877,10970525:250347 -k1,23443:26847975,10970525:250347 -k1,23443:27781208,10970525:250348 -k1,23443:30111012,10970525:250347 -k1,23443:31765140,10970525:250347 -k1,23443:32583029,10970525:0 -) -(1,23444:6797234,11812013:25785795,505283,134348 -k1,23443:9065857,11812013:193098 -k1,23443:11287949,11812013:193097 -k1,23443:11939144,11812013:193098 -k1,23443:12663738,11812013:193097 -k1,23443:15486796,11812013:193098 -k1,23443:16331321,11812013:193097 -k1,23443:18812281,11812013:193098 -k1,23443:20644433,11812013:193097 -k1,23443:23396057,11812013:193098 -k1,23443:24608239,11812013:193097 -k1,23443:26669761,11812013:193091 -k1,23443:28821730,11812013:193098 -k1,23443:29630865,11812013:193097 -k1,23443:30843048,11812013:193098 -k1,23444:32583029,11812013:0 -) -(1,23444:6797234,12653501:25785795,505283,134348 -k1,23443:8083152,12653501:190156 -k1,23443:8956193,12653501:190156 -k1,23443:11225806,12653501:190156 -k1,23443:13150045,12653501:190156 -k1,23443:17425060,12653501:190156 -k1,23443:18634301,12653501:190156 -k1,23443:19239290,12653501:190146 -k1,23443:22009598,12653501:190156 -k1,23443:25517841,12653501:190156 -k1,23443:26812279,12653501:190156 -k1,23443:27750201,12653501:190156 -k1,23443:29453583,12653501:190156 -k1,23443:30295167,12653501:190156 -k1,23443:32583029,12653501:0 -) -(1,23444:6797234,13494989:25785795,513147,134348 -g1,23443:10291613,13494989 -g1,23443:13223693,13494989 -g1,23443:14184450,13494989 -g1,23443:16451995,13494989 -g1,23443:17310516,13494989 -g1,23443:18528830,13494989 -g1,23443:20892713,13494989 -g1,23443:23192371,13494989 -g1,23443:25314426,13494989 -g1,23443:27544616,13494989 -g1,23443:28395273,13494989 -g1,23443:30103141,13494989 -k1,23444:32583029,13494989:1230116 -g1,23444:32583029,13494989 -) -] -g1,23444:32583029,13629337 -) -h1,23444:6630773,13629337:0,0,0 -(1,23447:6630773,16847418:25952256,32768,229376 -(1,23447:6630773,16847418:0,32768,229376 -(1,23447:6630773,16847418:5505024,32768,229376 -r1,23502:12135797,16847418:5505024,262144,229376 -) -k1,23447:6630773,16847418:-5505024 -) -(1,23447:6630773,16847418:25952256,32768,0 -r1,23502:32583029,16847418:25952256,32768,0 -) -) -(1,23447:6630773,18451746:25952256,606339,14155 -(1,23447:6630773,18451746:2954625,582746,14155 -g1,23447:6630773,18451746 -g1,23447:9585398,18451746 -) -k1,23447:32583028,18451746:18986040 -g1,23447:32583028,18451746 -) -(1,23456:6630773,19686450:25952256,513147,134348 -k1,23455:8153628,19686450:251457 -k1,23455:9064376,19686450:251456 -k1,23455:10334918,19686450:251457 -k1,23455:14155465,19686450:251456 -k1,23455:15066214,19686450:251457 -k1,23455:17053064,19686450:251457 -k1,23455:20458112,19686450:251456 -k1,23455:21241066,19686450:251457 -k1,23455:22777029,19686450:251457 -k1,23455:25438899,19686450:251456 -k1,23455:26349648,19686450:251457 -k1,23455:28298486,19686450:251456 -k1,23455:29741388,19686450:251457 -k1,23455:32583029,19686450:0 -) -(1,23456:6630773,20527938:25952256,505283,134348 -k1,23455:7961250,20527938:226195 -k1,23455:8935210,20527938:226194 -k1,23455:12189824,20527938:226195 -k1,23455:13882714,20527938:226194 -k1,23455:17103249,20527938:226195 -k1,23455:19688084,20527938:226194 -k1,23455:20372376,20527938:226195 -k1,23455:23228530,20527938:226194 -k1,23455:24106153,20527938:226195 -k1,23455:25928804,20527938:226194 -k1,23455:26771037,20527938:226195 -k1,23455:27412047,20527938:226167 -k1,23455:29104938,20527938:226195 -k1,23455:31391584,20527938:226194 -k1,23455:32583029,20527938:0 -) -(1,23456:6630773,21369426:25952256,505283,134348 -k1,23455:9678746,21369426:227303 -k1,23455:11300000,21369426:227303 -k1,23455:13078540,21369426:227303 -k1,23455:14695206,21369426:227303 -k1,23455:16361024,21369426:227303 -k1,23455:17859725,21369426:227303 -k1,23455:20267411,21369426:227303 -k1,23455:23753819,21369426:227303 -k1,23455:25265628,21369426:227303 -k1,23455:25907746,21369426:227275 -k1,23455:28634592,21369426:227303 -k1,23455:30700180,21369426:227303 -k1,23455:32583029,21369426:0 -) -(1,23456:6630773,22210914:25952256,513147,134348 -k1,23455:9186200,22210914:265599 -k1,23455:10067838,22210914:265600 -k1,23455:12003294,22210914:265599 -k1,23455:13460339,22210914:265600 -k1,23455:18124715,22210914:265599 -k1,23455:21174284,22210914:265600 -k1,23455:24127514,22210914:265599 -k1,23455:27024385,22210914:265600 -k1,23455:29104676,22210914:265599 -k1,23455:30389361,22210914:265600 -k1,23455:31923737,22210914:265599 -k1,23455:32583029,22210914:0 -) -(1,23456:6630773,23052402:25952256,505283,134348 -k1,23455:8237622,23052402:217486 -k1,23455:9719953,23052402:217486 -k1,23455:11331389,23052402:217485 -k1,23455:13434346,23052402:217486 -k1,23455:14109929,23052402:217486 -k1,23455:14858912,23052402:217486 -k1,23455:17706358,23052402:217486 -k1,23455:18575271,23052402:217485 -k1,23455:20562884,23052402:217486 -k1,23455:23315303,23052402:217486 -k1,23455:25918299,23052402:217486 -k1,23455:28896160,23052402:217485 -k1,23455:30132731,23052402:217486 -k1,23455:31931601,23052402:217486 -k1,23455:32583029,23052402:0 -) -(1,23456:6630773,23893890:25952256,505283,134348 -k1,23455:8426928,23893890:199698 -k1,23455:10020576,23893890:199697 -k1,23455:11609637,23893890:199698 -k1,23455:12425373,23893890:199698 -k1,23455:15778662,23893890:199697 -k1,23455:17713753,23893890:199698 -k1,23455:18932535,23893890:199697 -k1,23455:20785706,23893890:199698 -k1,23455:22709001,23893890:199698 -k1,23455:23594860,23893890:199697 -k1,23455:25492596,23893890:199698 -k1,23455:27427687,23893890:199698 -k1,23455:29600017,23893890:199697 -k1,23455:31193666,23893890:199698 -k1,23455:32583029,23893890:0 -) -(1,23456:6630773,24735378:25952256,505283,134348 -k1,23455:8816000,24735378:147057 -k1,23455:9579094,24735378:147056 -k1,23455:12357422,24735378:147057 -k1,23455:14414801,24735378:147005 -k1,23455:15793934,24735378:147056 -k1,23455:18358614,24735378:147057 -h1,23455:18757073,24735378:0,0,0 -k1,23455:19284893,24735378:147056 -k1,23455:20812794,24735378:147057 -k1,23455:21491348,24735378:147057 -k1,23455:22409107,24735378:147056 -k1,23455:25765462,24735378:147057 -k1,23455:28396333,24735378:147056 -k1,23455:29615559,24735378:147057 -k1,23455:32583029,24735378:0 -) -(1,23456:6630773,25576866:25952256,513147,134348 -k1,23455:9232365,25576866:240985 -k1,23455:10124778,25576866:240985 -k1,23455:11113529,25576866:240985 -k1,23455:13720364,25576866:240985 -k1,23455:14980434,25576866:240985 -k1,23455:17047907,25576866:240985 -k1,23455:17948185,25576866:240986 -k1,23455:19392411,25576866:240985 -k1,23455:21389106,25576866:240985 -k1,23455:22583640,25576866:240985 -k1,23455:25254700,25576866:240985 -k1,23455:25851545,25576866:240985 -k1,23455:27225648,25576866:240985 -k1,23455:29591310,25576866:240985 -k1,23455:32583029,25576866:0 -) -(1,23456:6630773,26418354:25952256,513147,126483 -k1,23455:7507998,26418354:225797 -k1,23455:9394476,26418354:225796 -k1,23455:10639358,26418354:225797 -k1,23455:12219128,26418354:225796 -k1,23455:14396587,26418354:225797 -k1,23455:15694552,26418354:225796 -k1,23455:19131613,26418354:225797 -k1,23455:21735711,26418354:225796 -k1,23455:24141891,26418354:225797 -k1,23455:26717808,26418354:225796 -k1,23455:27393182,26418354:225797 -k1,23455:28543036,26418354:225796 -k1,23455:30303031,26418354:225797 -k1,23456:32583029,26418354:0 -) -(1,23456:6630773,27259842:25952256,505283,95026 -g1,23455:9961312,27259842 -g1,23455:11351986,27259842 -g1,23455:15136690,27259842 -k1,23456:32583029,27259842:15471739 -g1,23456:32583029,27259842 -) -(1,23458:6630773,28101330:25952256,505283,134348 -h1,23457:6630773,28101330:983040,0,0 -k1,23457:8967282,28101330:156782 -k1,23457:12351057,28101330:156782 -k1,23457:14193426,28101330:156783 -k1,23457:17531326,28101330:156782 -k1,23457:18339536,28101330:156782 -k1,23457:20231711,28101330:156782 -k1,23457:22361127,28101330:156783 -k1,23457:24006232,28101330:156782 -k1,23457:25556965,28101330:156782 -k1,23457:26732832,28101330:156782 -k1,23457:28419881,28101330:156783 -k1,23457:29228091,28101330:156782 -k1,23457:32227169,28101330:156782 -k1,23457:32583029,28101330:0 -) -(1,23458:6630773,28942818:25952256,505283,134348 -k1,23457:10314272,28942818:177323 -k1,23457:11143024,28942818:177324 -k1,23457:11676207,28942818:177323 -k1,23457:13347751,28942818:177323 -k1,23457:14207959,28942818:177323 -k1,23457:16639722,28942818:177324 -k1,23457:19814006,28942818:177323 -k1,23457:20944878,28942818:177323 -k1,23457:22254663,28942818:177323 -k1,23457:23524472,28942818:177324 -k1,23457:24116616,28942818:177301 -k1,23457:26874091,28942818:177323 -k1,23457:29824898,28942818:177324 -k1,23457:30653649,28942818:177323 -k1,23457:32583029,28942818:0 -) -(1,23458:6630773,29784306:25952256,505283,134348 -k1,23457:7246374,29784306:259741 -k1,23457:9000336,29784306:259741 -k1,23457:12593238,29784306:259741 -k1,23457:14864279,29784306:259741 -k1,23457:18120981,29784306:259741 -k1,23457:20766232,29784306:259741 -k1,23457:24021624,29784306:259741 -k1,23457:27798027,29784306:259741 -k1,23457:29759738,29784306:259741 -k1,23457:32583029,29784306:0 -) -(1,23458:6630773,30625794:25952256,513147,134348 -k1,23457:9437263,30625794:230270 -k1,23457:10659092,30625794:230269 -k1,23457:12175178,30625794:230270 -k1,23457:15363088,30625794:230270 -k1,23457:16546907,30625794:230270 -k1,23457:17909638,30625794:230269 -k1,23457:19232393,30625794:230270 -k1,23457:24181255,30625794:230270 -k1,23457:25800888,30625794:230270 -k1,23457:27598778,30625794:230269 -k1,23457:31635378,30625794:230270 -k1,23457:32583029,30625794:0 -) -(1,23458:6630773,31467282:25952256,505283,126483 -g1,23457:8033243,31467282 -k1,23458:32583030,31467282:21714700 -g1,23458:32583030,31467282 -) -v1,23460:6630773,32543974:0,393216,0 -(1,23502:6630773,45510161:25952256,13359403,196608 -g1,23502:6630773,45510161 -g1,23502:6630773,45510161 -g1,23502:6434165,45510161 -(1,23502:6434165,45510161:0,13359403,196608 -r1,23502:32779637,45510161:26345472,13556011,196608 -k1,23502:6434165,45510161:-26345472 -) -(1,23502:6434165,45510161:26345472,13359403,196608 -[1,23502:6630773,45510161:25952256,13162795,0 -(1,23462:6630773,32751592:25952256,404226,101187 -(1,23461:6630773,32751592:0,0,0 -g1,23461:6630773,32751592 -g1,23461:6630773,32751592 -g1,23461:6303093,32751592 -(1,23461:6303093,32751592:0,0,0 -) -g1,23461:6630773,32751592 -) -k1,23462:6630773,32751592:0 -h1,23462:11056813,32751592:0,0,0 -k1,23462:32583029,32751592:21526216 -g1,23462:32583029,32751592 -) -(1,23463:6630773,33417770:25952256,404226,101187 -h1,23463:6630773,33417770:0,0,0 -g1,23463:7895356,33417770 -g1,23463:8843794,33417770 -g1,23463:19592746,33417770 -g1,23463:21805766,33417770 -g1,23463:22438058,33417770 -h1,23463:25915661,33417770:0,0,0 -k1,23463:32583029,33417770:6667368 -g1,23463:32583029,33417770 -) -(1,23464:6630773,34083948:25952256,404226,101187 -h1,23464:6630773,34083948:0,0,0 -g1,23464:10740668,34083948 -g1,23464:18012019,34083948 -k1,23464:18012019,34083948:0 -h1,23464:21173476,34083948:0,0,0 -k1,23464:32583029,34083948:11409553 -g1,23464:32583029,34083948 -) -(1,23465:6630773,34750126:25952256,369623,101187 -h1,23465:6630773,34750126:0,0,0 -g1,23465:6946919,34750126 -g1,23465:7263065,34750126 -g1,23465:7579211,34750126 -g1,23465:7895357,34750126 -g1,23465:8211503,34750126 -g1,23465:8527649,34750126 -g1,23465:8843795,34750126 -g1,23465:9159941,34750126 -g1,23465:12321398,34750126 -g1,23465:12953690,34750126 -k1,23465:12953690,34750126:0 -h1,23465:14850564,34750126:0,0,0 -k1,23465:32583028,34750126:17732464 -g1,23465:32583028,34750126 -) -(1,23466:6630773,35416304:25952256,404226,76021 -h1,23466:6630773,35416304:0,0,0 -g1,23466:6946919,35416304 -g1,23466:7263065,35416304 -g1,23466:7579211,35416304 -g1,23466:7895357,35416304 -g1,23466:8211503,35416304 -g1,23466:8527649,35416304 -g1,23466:8843795,35416304 -g1,23466:9159941,35416304 -g1,23466:11689107,35416304 -g1,23466:12321399,35416304 -k1,23466:12321399,35416304:0 -h1,23466:13902128,35416304:0,0,0 -k1,23466:32583028,35416304:18680900 -g1,23466:32583028,35416304 -) -(1,23467:6630773,36082482:25952256,404226,101187 -h1,23467:6630773,36082482:0,0,0 -g1,23467:6946919,36082482 -g1,23467:7263065,36082482 -g1,23467:7579211,36082482 -g1,23467:7895357,36082482 -g1,23467:8211503,36082482 -g1,23467:8527649,36082482 -g1,23467:8843795,36082482 -g1,23467:9159941,36082482 -g1,23467:9476087,36082482 -g1,23467:9792233,36082482 -g1,23467:14850565,36082482 -g1,23467:20225042,36082482 -k1,23467:20225042,36082482:0 -h1,23467:24651082,36082482:0,0,0 -k1,23467:32583029,36082482:7931947 -g1,23467:32583029,36082482 -) -(1,23468:6630773,36748660:25952256,404226,82312 -h1,23468:6630773,36748660:0,0,0 -g1,23468:6946919,36748660 -g1,23468:7263065,36748660 -g1,23468:7579211,36748660 -g1,23468:7895357,36748660 -g1,23468:8211503,36748660 -g1,23468:8527649,36748660 -g1,23468:8843795,36748660 -g1,23468:9159941,36748660 -g1,23468:9476087,36748660 -g1,23468:9792233,36748660 -k1,23468:9792233,36748660:0 -h1,23468:12005253,36748660:0,0,0 -k1,23468:32583029,36748660:20577776 -g1,23468:32583029,36748660 -) -(1,23469:6630773,37414838:25952256,404226,82312 -h1,23469:6630773,37414838:0,0,0 -g1,23469:6946919,37414838 -g1,23469:7263065,37414838 -g1,23469:7579211,37414838 -g1,23469:7895357,37414838 -g1,23469:8211503,37414838 -g1,23469:8527649,37414838 -g1,23469:8843795,37414838 -g1,23469:9159941,37414838 -g1,23469:9476087,37414838 -g1,23469:9792233,37414838 -k1,23469:9792233,37414838:0 -h1,23469:14850564,37414838:0,0,0 -k1,23469:32583028,37414838:17732464 -g1,23469:32583028,37414838 -) -(1,23470:6630773,38081016:25952256,404226,101187 -h1,23470:6630773,38081016:0,0,0 -g1,23470:6946919,38081016 -g1,23470:7263065,38081016 -g1,23470:7579211,38081016 -g1,23470:7895357,38081016 -g1,23470:8211503,38081016 -g1,23470:8527649,38081016 -g1,23470:8843795,38081016 -g1,23470:9159941,38081016 -g1,23470:9476087,38081016 -g1,23470:9792233,38081016 -k1,23470:9792233,38081016:0 -h1,23470:13585981,38081016:0,0,0 -k1,23470:32583029,38081016:18997048 -g1,23470:32583029,38081016 -) -(1,23471:6630773,38747194:25952256,410518,101187 -h1,23471:6630773,38747194:0,0,0 -g1,23471:6946919,38747194 -g1,23471:7263065,38747194 -g1,23471:7579211,38747194 -g1,23471:7895357,38747194 -g1,23471:8211503,38747194 -g1,23471:8527649,38747194 -g1,23471:8843795,38747194 -g1,23471:9159941,38747194 -g1,23471:9476087,38747194 -g1,23471:9792233,38747194 -k1,23471:9792233,38747194:0 -h1,23471:14218273,38747194:0,0,0 -k1,23471:32583029,38747194:18364756 -g1,23471:32583029,38747194 -) -(1,23472:6630773,39413372:25952256,410518,101187 -h1,23472:6630773,39413372:0,0,0 -g1,23472:6946919,39413372 -g1,23472:7263065,39413372 -g1,23472:7579211,39413372 -g1,23472:7895357,39413372 -g1,23472:8211503,39413372 -g1,23472:8527649,39413372 -g1,23472:8843795,39413372 -g1,23472:9159941,39413372 -g1,23472:9476087,39413372 -g1,23472:9792233,39413372 -h1,23472:14534418,39413372:0,0,0 -k1,23472:32583030,39413372:18048612 -g1,23472:32583030,39413372 -) -(1,23473:6630773,40079550:25952256,404226,76021 -h1,23473:6630773,40079550:0,0,0 -g1,23473:6946919,40079550 -g1,23473:7263065,40079550 -g1,23473:7579211,40079550 -g1,23473:7895357,40079550 -g1,23473:8211503,40079550 -g1,23473:8527649,40079550 -g1,23473:8843795,40079550 -g1,23473:9159941,40079550 -h1,23473:9476087,40079550:0,0,0 -k1,23473:32583029,40079550:23106942 -g1,23473:32583029,40079550 -) -(1,23474:6630773,40745728:25952256,404226,76021 -h1,23474:6630773,40745728:0,0,0 -h1,23474:6946919,40745728:0,0,0 -k1,23474:32583029,40745728:25636110 -g1,23474:32583029,40745728 -) -(1,23475:6630773,41411906:25952256,404226,82312 -h1,23475:6630773,41411906:0,0,0 -g1,23475:10108376,41411906 -g1,23475:11056814,41411906 -g1,23475:13902126,41411906 -h1,23475:17063583,41411906:0,0,0 -k1,23475:32583029,41411906:15519446 -g1,23475:32583029,41411906 -) -(1,23476:6630773,42078084:25952256,404226,76021 -h1,23476:6630773,42078084:0,0,0 -k1,23476:6630773,42078084:0 -h1,23476:12953686,42078084:0,0,0 -k1,23476:32583030,42078084:19629344 -g1,23476:32583030,42078084 -) -(1,23485:6630773,42744262:25952256,410518,107478 -(1,23478:6630773,42744262:0,0,0 -g1,23478:6630773,42744262 -g1,23478:6630773,42744262 -g1,23478:6303093,42744262 -(1,23478:6303093,42744262:0,0,0 -) -g1,23478:6630773,42744262 -) -g1,23485:7579210,42744262 -g1,23485:7895356,42744262 -g1,23485:9159939,42744262 -g1,23485:11372959,42744262 -g1,23485:11689105,42744262 -g1,23485:12005251,42744262 -g1,23485:12321397,42744262 -g1,23485:12637543,42744262 -g1,23485:12953689,42744262 -g1,23485:13269835,42744262 -g1,23485:13585981,42744262 -g1,23485:13902127,42744262 -g1,23485:14218273,42744262 -g1,23485:14534419,42744262 -g1,23485:18012022,42744262 -g1,23485:18328168,42744262 -g1,23485:18644314,42744262 -g1,23485:18960460,42744262 -g1,23485:19276606,42744262 -g1,23485:19592752,42744262 -g1,23485:19908898,42744262 -g1,23485:24334938,42744262 -g1,23485:24651084,42744262 -g1,23485:24967230,42744262 -g1,23485:25283376,42744262 -h1,23485:29393270,42744262:0,0,0 -k1,23485:32583029,42744262:3189759 -g1,23485:32583029,42744262 -) -(1,23485:6630773,43410440:25952256,410518,101187 -h1,23485:6630773,43410440:0,0,0 -g1,23485:7579210,43410440 -g1,23485:7895356,43410440 -g1,23485:9159939,43410440 -g1,23485:13585979,43410440 -g1,23485:13902125,43410440 -g1,23485:14218271,43410440 -g1,23485:14534417,43410440 -g1,23485:19592748,43410440 -g1,23485:19908894,43410440 -g1,23485:24018788,43410440 -g1,23485:24334934,43410440 -g1,23485:24651080,43410440 -g1,23485:24967226,43410440 -g1,23485:25283372,43410440 -h1,23485:30025557,43410440:0,0,0 -k1,23485:32583029,43410440:2557472 -g1,23485:32583029,43410440 -) -(1,23485:6630773,44076618:25952256,404226,101187 -h1,23485:6630773,44076618:0,0,0 -g1,23485:7579210,44076618 -g1,23485:7895356,44076618 -g1,23485:9159939,44076618 -g1,23485:13269833,44076618 -g1,23485:13585979,44076618 -g1,23485:13902125,44076618 -g1,23485:14218271,44076618 -g1,23485:14534417,44076618 -g1,23485:19592748,44076618 -g1,23485:19908894,44076618 -g1,23485:24334934,44076618 -g1,23485:24651080,44076618 -g1,23485:24967226,44076618 -g1,23485:25283372,44076618 -h1,23485:28760974,44076618:0,0,0 -k1,23485:32583029,44076618:3822055 -g1,23485:32583029,44076618 -) -(1,23485:6630773,44742796:25952256,404226,101187 -h1,23485:6630773,44742796:0,0,0 -g1,23485:7579210,44742796 -g1,23485:9159939,44742796 -g1,23485:13269833,44742796 -g1,23485:13585979,44742796 -g1,23485:13902125,44742796 -g1,23485:14218271,44742796 -g1,23485:14534417,44742796 -g1,23485:19908894,44742796 -g1,23485:24018788,44742796 -g1,23485:24334934,44742796 -g1,23485:24651080,44742796 -g1,23485:24967226,44742796 -g1,23485:25283372,44742796 -h1,23485:27812537,44742796:0,0,0 -k1,23485:32583029,44742796:4770492 -g1,23485:32583029,44742796 -) -(1,23485:6630773,45408974:25952256,410518,101187 -h1,23485:6630773,45408974:0,0,0 -g1,23485:7579210,45408974 -g1,23485:9159939,45408974 -g1,23485:12005250,45408974 -g1,23485:12321396,45408974 -g1,23485:12637542,45408974 -g1,23485:12953688,45408974 -g1,23485:13269834,45408974 -g1,23485:13585980,45408974 -g1,23485:13902126,45408974 -g1,23485:14218272,45408974 -g1,23485:14534418,45408974 -g1,23485:19276604,45408974 -g1,23485:19592750,45408974 -g1,23485:19908896,45408974 -g1,23485:23386499,45408974 -g1,23485:23702645,45408974 -g1,23485:24018791,45408974 -g1,23485:24334937,45408974 -g1,23485:24651083,45408974 -g1,23485:24967229,45408974 -g1,23485:25283375,45408974 -h1,23485:29709415,45408974:0,0,0 -k1,23485:32583029,45408974:2873614 -g1,23485:32583029,45408974 -) -] -) -g1,23502:32583029,45510161 -g1,23502:6630773,45510161 -g1,23502:6630773,45510161 -g1,23502:32583029,45510161 -g1,23502:32583029,45510161 -) -] -(1,23502:32583029,45706769:0,0,0 -g1,23502:32583029,45706769 -) -) -] -(1,23502:6630773,47279633:25952256,0,0 -h1,23502:6630773,47279633:25952256,0,0 -) -] -(1,23502:4262630,4025873:0,0,0 -[1,23502:-473656,4025873:0,0,0 -(1,23502:-473656,-710413:0,0,0 -(1,23502:-473656,-710413:0,0,0 -g1,23502:-473656,-710413 -) -g1,23502:-473656,-710413 -) -] -) -] -!25832 -}425 -!12 -{426 -[1,23531:4262630,47279633:28320399,43253760,0 -(1,23531:4262630,4025873:0,0,0 -[1,23531:-473656,4025873:0,0,0 -(1,23531:-473656,-710413:0,0,0 -(1,23531:-473656,-644877:0,0,0 -k1,23531:-473656,-644877:-65536 -) -(1,23531:-473656,4736287:0,0,0 -k1,23531:-473656,4736287:5209943 -) -g1,23531:-473656,-710413 +k1,23747:62087500,51504789:25935872 +g1,23747:62087500,51504789 ) ] ) -[1,23531:6630773,47279633:25952256,43253760,0 -[1,23531:6630773,4812305:25952256,786432,0 -(1,23531:6630773,4812305:25952256,505283,134348 -(1,23531:6630773,4812305:25952256,505283,134348 -g1,23531:3078558,4812305 -[1,23531:3078558,4812305:0,0,0 -(1,23531:3078558,2439708:0,1703936,0 -k1,23531:1358238,2439708:-1720320 -(1,21457:1358238,2439708:1720320,1703936,0 -(1,21457:1358238,2439708:1179648,16384,0 -r1,23531:2537886,2439708:1179648,16384,0 +g1,23747:36675916,49800853 +(1,23747:36675916,49800853:1179648,16384,0 +r1,23747:37855564,49800853:1179648,16384,0 ) -g1,21457:3062174,2439708 -(1,21457:3062174,2439708:16384,1703936,0 -[1,21457:3062174,2439708:25952256,1703936,0 -(1,21457:3062174,1915420:25952256,1179648,0 -(1,21457:3062174,1915420:16384,1179648,0 -r1,23531:3078558,1915420:16384,1179648,0 ) -k1,21457:29014430,1915420:25935872 -g1,21457:29014430,1915420 +k1,23747:3078556,49800853:-34777008 ) ] -) +g1,23747:6630773,4812305 ) ) ] -[1,23531:3078558,4812305:0,0,0 -(1,23531:3078558,2439708:0,1703936,0 -g1,23531:29030814,2439708 -g1,23531:36135244,2439708 -(1,21457:36135244,2439708:1720320,1703936,0 -(1,21457:36135244,2439708:16384,1703936,0 -[1,21457:36135244,2439708:25952256,1703936,0 -(1,21457:36135244,1915420:25952256,1179648,0 -(1,21457:36135244,1915420:16384,1179648,0 -r1,23531:36151628,1915420:16384,1179648,0 +[1,23747:6630773,45706769:25952256,40108032,0 +(1,23747:6630773,45706769:25952256,40108032,0 +(1,23747:6630773,45706769:0,0,0 +g1,23747:6630773,45706769 ) -k1,21457:62087500,1915420:25935872 -g1,21457:62087500,1915420 +[1,23747:6630773,45706769:25952256,40108032,0 +[1,23747:6630773,12185121:25952256,6586384,0 +(1,23747:6630773,7073297:25952256,32768,229376 +(1,23747:6630773,7073297:0,32768,229376 +(1,23747:6630773,7073297:5505024,32768,229376 +r1,23747:12135797,7073297:5505024,262144,229376 ) -] -) -g1,21457:36675916,2439708 -(1,21457:36675916,2439708:1179648,16384,0 -r1,23531:37855564,2439708:1179648,16384,0 +k1,23747:6630773,7073297:-5505024 ) ) -k1,23531:3078556,2439708:-34777008 +(1,23747:6630773,8842777:25952256,909509,241827 +h1,23747:6630773,8842777:0,0,0 +k1,23747:23428371,8842777:9154658 +k1,23747:32583029,8842777:9154658 ) -] -[1,23531:3078558,4812305:0,0,0 -(1,23531:3078558,49800853:0,16384,2228224 -k1,23531:1358238,49800853:-1720320 -(1,21457:1358238,49800853:1720320,16384,2228224 -(1,21457:1358238,49800853:1179648,16384,0 -r1,23531:2537886,49800853:1179648,16384,0 +(1,23747:6630773,9498145:25952256,32768,0 +(1,23747:6630773,9498145:5505024,32768,0 +r1,23747:12135797,9498145:5505024,32768,0 +) +k1,23747:22359413,9498145:10223616 +k1,23747:32583029,9498145:10223616 +) +] +(1,23747:7613813,13050201:24969216,513147,126483 +(1,23747:7613813,13050201:-983040,0,0 +g1,23747:6630773,13050201 +g1,23747:5320053,13050201 +g1,23747:4992373,13050201 +(1,23747:4992373,13050201:1310720,0,0 +k1,23747:6303093,13050201:1310720 +) +g1,23747:6630773,13050201 +) +k1,23747:8383240,13050201:281839 +k1,23747:9326255,13050201:281757 +k1,23747:10239779,13050201:281757 +k1,23747:11712817,13050201:281593 +k1,23747:12444806,13050201:281757 +k1,23747:13403550,13050201:281757 +k1,23747:15957275,13050201:281592 +k1,23747:18421055,13050201:282086 +k1,23747:22545024,13050201:281593 +k1,23747:23442654,13050201:281592 +k1,23747:26720553,13050201:281593 +k1,23747:29384872,13050201:282086 +k1,23747:32583029,13050201:0 +) +(1,23747:7613813,13915281:24969216,485622,11795 +g1,23747:10146124,13915281 +g1,23747:12190847,13915281 +g1,23747:13981945,13915281 +k1,23747:32583029,13915281:14442825 +g1,23747:32583029,13915281 +) +(1,23747:7613813,14780361:24969216,505283,134348 +(1,23747:7613813,14780361:-983040,0,0 +g1,23747:6630773,14780361 +g1,23747:5320053,14780361 +g1,23747:4992373,14780361 +(1,23747:4992373,14780361:1310720,0,0 +k1,23747:6303093,14780361:1310720 +) +g1,23747:6630773,14780361 +) +k1,23747:8876673,14780361:228702 +k1,23747:9957997,14780361:228701 +k1,23747:10847928,14780361:228673 +k1,23747:11729994,14780361:228672 +k1,23747:15128672,14780361:228702 +k1,23747:16548731,14780361:228614 +k1,23747:17385577,14780361:228672 +k1,23747:18243395,14780361:228672 +k1,23747:20466925,14780361:228614 +k1,23747:22353004,14780361:228673 +k1,23747:24556394,14780361:228790 +k1,23747:24856536,14780361:-13 +k1,23747:24856549,14780361:13 +k1,23747:28057220,14780361:228613 +k1,23747:31475471,14780361:228614 +k1,23747:32583029,14780361:0 +) +(1,23747:7613813,15645441:24969216,530548,134348 +k1,23747:10433958,15645441:263586 +k1,23747:13859386,15645441:263971 +k1,23747:14924799,15645441:263908 +k1,23747:16520077,15645441:263586 +k1,23747:19774071,15645441:263586 +k1,23747:21182108,15645441:263778 +k1,23747:22460976,15645441:263715 +k1,23747:24820133,15645441:263971 +k1,23747:26420975,15645441:263908 +$1,23747:26420975,15645441 +k1,23747:27321432,15645441:70573 +k1,23747:27806947,15645441:70573 +k1,23747:29537289,15645441:70574 +k1,23747:30022804,15645441:70573 +k1,23747:32168087,15645441:70573 +k1,23747:32583029,15645441:0 +) +(1,23747:7613813,16510521:24969216,509904,12386 +g1,23747:9273581,16510521 +g1,23747:9688523,16510521 +$1,23747:12593117,16510521 +k1,23747:32583029,16510521:19816242 +g1,23747:32583029,16510521 +) +(1,23747:7613813,17375601:24969216,513147,126483 +(1,23747:7613813,17375601:-983040,0,0 +g1,23747:6630773,17375601 +g1,23747:5320053,17375601 +g1,23747:4992373,17375601 +(1,23747:4992373,17375601:1310720,0,0 +k1,23747:6303093,17375601:1310720 +) +g1,23747:6630773,17375601 +) +k1,23747:9169461,17375601:256724 +k1,23747:10044787,17375601:256666 +k1,23747:10962712,17375601:256667 +k1,23747:12410709,17375601:256552 +k1,23747:13117607,17375601:256666 +k1,23747:14111554,17375601:256667 +k1,23747:17580681,17375601:256552 +k1,23747:20019270,17375601:256895 +k1,23747:20809572,17375601:256839 +k1,23747:21969210,17375601:256552 +k1,23747:25577273,17375601:256552 +k1,23747:29868221,17375601:256552 +k1,23747:31048831,17375601:256552 +k1,23747:32583029,17375601:0 +) +(1,23747:7613813,18240681:24969216,505283,126483 +k1,23747:10520447,18240681:283883 +k1,23747:12014781,18240681:283884 +k1,23747:15283681,18240681:284391 +k1,23747:18605158,18240681:283883 +k1,23747:20080487,18240681:283884 +k1,23747:23501430,18240681:284390 +k1,23747:25377606,18240681:284307 +k1,23747:30317167,18240681:283883 +k1,23747:31773659,18240681:284053 +k1,23747:32583029,18240681:0 +) +(1,23747:7613813,19105761:24969216,505283,126483 +g1,23747:8407454,19105761 +k1,23747:32583028,19105761:22997892 +g1,23747:32583028,19105761 +) +(1,23747:7613813,19970841:24969216,505283,134348 +(1,23747:7613813,19970841:-983040,0,0 +g1,23747:6630773,19970841 +g1,23747:5320053,19970841 +g1,23747:4992373,19970841 +(1,23747:4992373,19970841:1310720,0,0 +k1,23747:6303093,19970841:1310720 +) +g1,23747:6630773,19970841 +) +k1,23747:9118445,19970841:205708 +k1,23747:9942807,19970841:205702 +k1,23747:10983444,19970841:205708 +k1,23747:11639378,19970841:205702 +k1,23747:12582360,19970841:205702 +k1,23747:16174313,19970841:205708 +k1,23747:17571447,19970841:205689 +k1,23747:18438407,19970841:205702 +k1,23747:19262769,19970841:205702 +k1,23747:21203851,19970841:205689 +k1,23747:23591272,19970841:205727 +k1,23747:24984473,19970841:205689 +k1,23747:26556588,19970841:205689 +k1,23747:27122070,19970841:205689 +k1,23747:30628184,19970841:205721 +k1,23747:31323427,19970841:205689 +k1,23747:32583029,19970841:0 +) +(1,23747:7613813,20835921:24969216,513147,134348 +k1,23747:11129207,20835921:179611 +k1,23747:15343213,20835921:179610 +k1,23747:16446882,20835921:179611 +k1,23747:18160691,20835921:179611 +k1,23747:20963052,20835921:179610 +k1,23747:22353113,20835921:179611 +k1,23747:25517350,20835921:179728 +k1,23747:28734554,20835921:179610 +k1,23747:29366363,20835921:179611 +k1,23747:30991160,20835921:179728 +k1,23747:32583029,20835921:0 +) +(1,23747:7613813,21701001:24969216,505283,126483 +g1,23747:12468720,21701001 +g1,23747:13840388,21701001 +g1,23747:14848987,21701001 +g1,23747:15642628,21701001 +k1,23747:32583029,21701001:15762719 +g1,23747:32583029,21701001 +) +(1,23747:7613813,22566081:24969216,505283,134348 +(1,23747:7613813,22566081:-983040,0,0 +g1,23747:6630773,22566081 +g1,23747:5320053,22566081 +g1,23747:4992373,22566081 +(1,23747:4992373,22566081:1310720,0,0 +k1,23747:6303093,22566081:1310720 +) +g1,23747:6630773,22566081 +) +k1,23747:8440694,22566081:156448 +k1,23747:9215760,22566081:156406 +k1,23747:9921358,22566081:156406 +k1,23747:12259628,22566081:156576 +k1,23747:12559770,22566081:-13 +k1,23747:12559783,22566081:13 +k1,23747:13942282,22566081:156320 +k1,23747:14966954,22566081:156320 +k1,23747:16839007,22566081:156320 +k1,23747:21088050,22566081:156320 +k1,23747:25231921,22566081:156661 +k1,23747:26189959,22566081:156533 +k1,23747:27533791,22566081:156320 +k1,23747:30766371,22566081:156320 +k1,23747:32583029,22566081:0 +) +(1,23747:7613813,23431161:24969216,505283,126483 +g1,23747:10498707,23431161 +g1,23747:13288574,23431161 +g1,23747:15428979,23431161 +g1,23747:16643361,23431161 +k1,23747:32583029,23431161:13047564 +g1,23747:32583029,23431161 +) +(1,23747:7613813,24296241:24969216,505283,126483 +(1,23747:7613813,24296241:-983040,0,0 +g1,23747:6630773,24296241 +g1,23747:5320053,24296241 +g1,23747:4992373,24296241 +(1,23747:4992373,24296241:1310720,0,0 +k1,23747:6303093,24296241:1310720 +) +g1,23747:6630773,24296241 +) +g1,23747:8851132,24296241 +g1,23747:9599553,24296241 +g1,23747:11980476,24296241 +g1,23747:12539498,24296241 +g1,23747:14772964,24296241 +g1,23747:16144632,24296241 +g1,23747:17153231,24296241 +g1,23747:18367613,24296241 +g1,23747:19935889,24296241 +k1,23747:32583029,24296241:11070999 +g1,23747:32583029,24296241 +) +(1,23747:7613813,25161321:24969216,530548,141067 +(1,23747:7613813,25161321:-983040,0,0 +g1,23747:6630773,25161321 +g1,23747:5320053,25161321 +g1,23747:4992373,25161321 +(1,23747:4992373,25161321:1310720,0,0 +k1,23747:6303093,25161321:1310720 +) +g1,23747:6630773,25161321 +) +(1,23747:6630773,25161321:983040,211026,0 +k1,23747:7613813,25161321:327680 +) +k1,23747:10018455,25161321:222948 +k1,23747:11428773,25161321:222806 +k1,23747:12101156,25161321:222806 +k1,23747:14801365,25161321:222948 +k1,23747:16394646,25161321:222924 +$1,23747:16394646,25161321 +k1,23747:18080268,25161321:25854 +k1,23747:18521065,25161321:25855 +k1,23747:18961862,25161321:25855 +k1,23747:19402658,25161321:25854 +k1,23747:20673339,25161321:25855 +k1,23747:21114135,25161321:25854 +k1,23747:23214700,25161321:25855 +(1,23747:23629642,25259635:32768,0,0 +) +k1,23747:23688265,25161321:25855 +k1,23747:25373887,25161321:25854 +k1,23747:25814684,25161321:25855 +k1,23747:27085365,25161321:25855 +k1,23747:27526161,25161321:25854 +k1,23747:29626726,25161321:25855 +k1,23747:30067522,25161321:25854 +k1,23747:32168087,25161321:25855 +k1,23747:32583029,25161321:0 +) +(1,23747:7613813,26026401:24969216,538806,132809 +g1,23747:8028755,26026401 +g1,23747:8443697,26026401 +g1,23747:11348291,26026401 +g1,23747:11763233,26026401 +$1,23747:13008059,26026401 +g1,23747:13207288,26026401 +g1,23747:15728458,26026401 +g1,23747:16737057,26026401 +g1,23747:21002140,26026401 +g1,23747:22373808,26026401 +g1,23747:23382407,26026401 +g1,23747:24176048,26026401 +k1,23747:32583029,26026401:6830840 +g1,23747:32583029,26026401 +) +(1,23747:7613813,26891481:24969216,505283,134348 +(1,23747:7613813,26891481:-983040,0,0 +g1,23747:6630773,26891481 +g1,23747:5320053,26891481 +g1,23747:4992373,26891481 +(1,23747:4992373,26891481:1310720,0,0 +k1,23747:6303093,26891481:1310720 +) +g1,23747:6630773,26891481 +) +(1,23747:6630773,26891481:983040,211026,0 +k1,23747:7613813,26891481:327680 +) +g1,23747:9994736,26891481 +g1,23747:11393929,26891481 +g1,23747:12367138,26891481 +g1,23747:17130294,26891481 +g1,23747:18903042,26891481 +g1,23747:20694140,26891481 +g1,23747:26073335,26891481 +g1,23747:27445003,26891481 +g1,23747:28453602,26891481 +g1,23747:29667984,26891481 +g1,23747:30439342,26891481 +k1,23747:32583029,26891481:567546 +g1,23747:32583029,26891481 +) +(1,23747:7613813,27756561:24969216,505283,134348 +(1,23747:7613813,27756561:-983040,0,0 +g1,23747:6630773,27756561 +g1,23747:5320053,27756561 +g1,23747:4992373,27756561 +(1,23747:4992373,27756561:1310720,0,0 +k1,23747:6303093,27756561:1310720 +) +g1,23747:6630773,27756561 +) +k1,23747:10253891,27756561:236873 +k1,23747:10940960,27756561:236837 +k1,23747:11915076,27756561:236836 +k1,23747:14333756,27756561:236986 +k1,23747:17659229,27756561:236761 +k1,23747:18519462,27756561:236986 +k1,23747:19952910,27756561:236761 +k1,23747:20634660,27756561:236761 +k1,23747:22915060,27756561:236987 +k1,23747:26189415,27756561:236761 +k1,23747:27617621,27756561:236761 +k1,23747:30991160,27756561:236986 +k1,23747:32583029,27756561:0 +) +(1,23747:7613813,28621641:24969216,505283,126483 +g1,23747:11797631,28621641 +g1,23747:13169299,28621641 +g1,23747:14177898,28621641 +g1,23747:15392280,28621641 +g1,23747:16562097,28621641 +g1,23747:17731914,28621641 +k1,23747:32583029,28621641:13274974 +g1,23747:32583029,28621641 +) +(1,23747:7613813,29486721:24969216,505283,134348 +(1,23747:7613813,29486721:-983040,0,0 +g1,23747:6630773,29486721 +g1,23747:5320053,29486721 +g1,23747:4992373,29486721 +(1,23747:4992373,29486721:1310720,0,0 +k1,23747:6303093,29486721:1310720 +) +g1,23747:6630773,29486721 +) +k1,23747:8982648,29486721:162972 +k1,23747:9925463,29486721:162937 +k1,23747:12270238,29486721:163081 +k1,23747:12882678,29486721:162863 +k1,23747:15856380,29486721:162863 +k1,23747:19253662,29486721:163081 +k1,23747:20650569,29486721:162864 +k1,23747:21755402,29486721:163081 +k1,23747:24366035,29486721:162863 +k1,23747:25464097,29486721:162863 +k1,23747:26843526,29486721:163081 +k1,23747:28598440,29486721:163045 +k1,23747:32583029,29486721:0 +) +(1,23747:7613813,30351801:24969216,505283,126483 +g1,23747:8985481,30351801 +g1,23747:9994080,30351801 +g1,23747:11208462,30351801 +g1,23747:12776738,30351801 +k1,23747:32583029,30351801:18230150 +g1,23747:32583029,30351801 +) +(1,23747:7613813,31216881:24969216,513147,134348 +(1,23747:7613813,31216881:-983040,0,0 +g1,23747:6630773,31216881 +g1,23747:5320053,31216881 +g1,23747:4992373,31216881 +(1,23747:4992373,31216881:1310720,0,0 +k1,23747:6303093,31216881:1310720 +) +g1,23747:6630773,31216881 +) +k1,23747:10077156,31216881:163685 +k1,23747:11020684,31216881:163650 +k1,23747:11713210,31216881:163650 +k1,23747:14058695,31216881:163791 +k1,23747:15409786,31216881:163579 +k1,23747:18367819,31216881:163578 +k1,23747:19147435,31216881:163578 +k1,23747:22322393,31216881:163579 +k1,23747:24194052,31216881:163791 +k1,23747:28120159,31216881:163685 +k1,23747:29419035,31216881:163792 +k1,23747:31174660,31216881:163756 +k1,23747:32583029,31216881:0 +) +(1,23747:7613813,32081961:24969216,505283,126483 +g1,23747:11797631,32081961 +g1,23747:13169299,32081961 +g1,23747:14177898,32081961 +g1,23747:14971539,32081961 +k1,23747:32583029,32081961:16035349 +g1,23747:32583029,32081961 +) +(1,23747:7613813,32947041:24969216,505283,126483 +(1,23747:7613813,32947041:-983040,0,0 +g1,23747:6630773,32947041 +g1,23747:5320053,32947041 +g1,23747:4992373,32947041 +(1,23747:4992373,32947041:1310720,0,0 +k1,23747:6303093,32947041:1310720 +) +g1,23747:6630773,32947041 +) +k1,23747:9496548,32947041:157827 +k1,23747:10391614,32947041:157786 +k1,23747:10999632,32947041:157786 +k1,23747:13339277,32947041:157951 +k1,23747:14684492,32947041:157703 +k1,23747:15291772,32947041:157703 +k1,23747:17121546,32947041:157951 +k1,23747:19174019,32947041:157827 +k1,23747:19926217,32947041:157786 +k1,23747:21851674,32947041:157951 +k1,23747:23601453,32947041:157910 +k1,23747:27743745,32947041:157703 +k1,23747:29073970,32947041:157786 +k1,23747:30041043,32947041:157703 +k1,23747:31213982,32947041:157786 +k1,23747:32583029,32947041:0 +) +(1,23747:7613813,33812121:24969216,505283,95026 +k1,23747:32583030,33812121:23393076 +g1,23747:32583030,33812121 +) +(1,23747:7613813,34677201:24969216,505283,134348 +(1,23747:7613813,34677201:-983040,0,0 +g1,23747:6630773,34677201 +g1,23747:5320053,34677201 +g1,23747:4992373,34677201 +(1,23747:4992373,34677201:1310720,0,0 +k1,23747:6303093,34677201:1310720 +) +g1,23747:6630773,34677201 +) +k1,23747:10175217,34677201:511438 +k1,23747:11235538,34677201:511129 +k1,23747:13929605,34677201:512373 +k1,23747:18378170,34677201:510507 +k1,23747:21619562,34677201:510507 +k1,23747:23493218,34677201:510507 +k1,23747:24628838,34677201:512373 +k1,23747:28004199,34677201:511438 +k1,23747:29109740,34677201:511129 +k1,23747:30991160,34677201:512373 +k1,23747:32583029,34677201:0 +) +(1,23747:7613813,35542281:24969216,505283,126483 +g1,23747:11797631,35542281 +g1,23747:13169299,35542281 +g1,23747:14177898,35542281 +g1,23747:14971539,35542281 +k1,23747:32583029,35542281:16035349 +g1,23747:32583029,35542281 +) +(1,23747:7613813,36407361:24969216,505283,126483 +(1,23747:7613813,36407361:-983040,0,0 +g1,23747:6630773,36407361 +g1,23747:5320053,36407361 +g1,23747:4992373,36407361 +(1,23747:4992373,36407361:1310720,0,0 +k1,23747:6303093,36407361:1310720 +) +g1,23747:6630773,36407361 +) +k1,23747:8483504,36407361:237269 +k1,23747:9571429,36407361:237268 +k1,23747:10545940,36407361:237231 +k1,23747:16558896,36407361:237268 +k1,23747:17987496,36407361:237155 +k1,23747:18853873,36407361:237231 +k1,23747:19768091,36407361:237231 +k1,23747:21336938,36407361:237155 +k1,23747:23756015,36407361:237383 +k1,23747:27191982,36407361:237155 +k1,23747:30333919,36407361:237382 +k1,23747:31641277,36407361:237155 +k1,23747:32583029,36407361:0 +) +(1,23747:7613813,37272441:24969216,530548,141067 +k1,23747:9081741,37272441:272551 +k1,23747:10369884,37272441:272990 +k1,23747:12013159,37272441:272918 +$1,23747:12013159,37272441 +k1,23747:14168273,37272441:80404 +k1,23747:14663620,37272441:80405 +k1,23747:15158966,37272441:80404 +k1,23747:15654312,37272441:80404 +k1,23747:16979543,37272441:80405 +k1,23747:17474889,37272441:80404 +k1,23747:21289772,37272441:80405 +k1,23747:21785118,37272441:80404 +k1,23747:23110348,37272441:80404 +k1,23747:23605695,37272441:80405 +k1,23747:25345867,37272441:80404 +k1,23747:25841213,37272441:80404 +k1,23747:27166444,37272441:80405 +k1,23747:27661790,37272441:80404 +$1,23747:28906616,37272441 +k1,23747:29179167,37272441:272551 +k1,23747:31773659,37272441:272551 +k1,23747:32583029,37272441:0 +) +(1,23747:7613813,38137521:24969216,505283,126483 +g1,23747:11878896,38137521 +g1,23747:13250564,38137521 +g1,23747:14259163,38137521 +g1,23747:15052804,38137521 +k1,23747:32583029,38137521:15954084 +g1,23747:32583029,38137521 +) +(1,23747:7613813,39002601:24969216,505283,134348 +(1,23747:7613813,39002601:-983040,0,0 +g1,23747:6630773,39002601 +g1,23747:5320053,39002601 +g1,23747:4992373,39002601 +(1,23747:4992373,39002601:1310720,0,0 +k1,23747:6303093,39002601:1310720 +) +g1,23747:6630773,39002601 +) +k1,23747:11135502,39002601:337295 +k1,23747:12149648,39002601:337159 +k1,23747:14669050,39002601:337708 +k1,23747:17827914,39002601:336884 +k1,23747:18614374,39002601:336883 +k1,23747:20161708,39002601:336884 +k1,23747:22102913,39002601:336884 +k1,23747:25942040,39002601:336883 +k1,23747:27642073,39002601:336884 +k1,23747:29719106,39002601:337708 +k1,23747:32583029,39002601:0 +) +(1,23747:7613813,39867681:24969216,505283,126483 +g1,23747:8407454,39867681 +g1,23747:9975730,39867681 +g1,23747:11766828,39867681 +g1,23747:15950646,39867681 +g1,23747:17322314,39867681 +g1,23747:18330913,39867681 +g1,23747:19124554,39867681 +k1,23747:32583029,39867681:11882334 +g1,23747:32583029,39867681 +) +(1,23747:7613813,40732761:24969216,505283,126483 +(1,23747:7613813,40732761:-983040,0,0 +g1,23747:6630773,40732761 +g1,23747:5320053,40732761 +g1,23747:4992373,40732761 +(1,23747:4992373,40732761:1310720,0,0 +k1,23747:6303093,40732761:1310720 +) +g1,23747:6630773,40732761 +) +k1,23747:9088443,40732761:205198 +k1,23747:9866420,40732761:205192 +k1,23747:11263045,40732761:205180 +k1,23747:12076412,40732761:205193 +k1,23747:14950873,40732761:205180 +k1,23747:17337783,40732761:205216 +k1,23747:18446049,40732761:205180 +k1,23747:22518508,40732761:205180 +k1,23747:23323343,40732761:205181 +k1,23747:25931728,40732761:205180 +k1,23747:29960278,40732761:205180 +k1,23747:32583029,40732761:0 +) +(1,23747:7613813,41597841:24969216,505283,134348 +g1,23747:9176191,41597841 +g1,23747:9998667,41597841 +g1,23747:13061819,41597841 +g1,23747:13855460,41597841 +g1,23747:15423736,41597841 +g1,23747:17214834,41597841 +g1,23747:21398652,41597841 +g1,23747:22770320,41597841 +g1,23747:23778919,41597841 +g1,23747:24572560,41597841 +k1,23747:32583029,41597841:6434328 +g1,23747:32583029,41597841 +) +(1,23747:7613813,42462921:24969216,513147,134348 +(1,23747:7613813,42462921:-983040,0,0 +g1,23747:6630773,42462921 +g1,23747:5320053,42462921 +g1,23747:4992373,42462921 +(1,23747:4992373,42462921:1310720,0,0 +k1,23747:6303093,42462921:1310720 +) +g1,23747:6630773,42462921 +) +k1,23747:9148181,42462921:264936 +k1,23747:9985837,42462921:264871 +k1,23747:10779585,42462921:264872 +k1,23747:12235770,42462921:264740 +k1,23747:13108815,42462921:264871 +k1,23747:16042836,42462921:264740 +k1,23747:18489663,42462921:265133 +k1,23747:19243958,42462921:264741 +k1,23747:22719307,42462921:264740 +k1,23747:23600085,42462921:264740 +k1,23747:26895210,42462921:264740 +k1,23747:29932779,42462921:264741 +k1,23747:31959782,42462921:264740 +k1,23747:32583029,42462921:0 +) +(1,23747:7613813,43328001:24969216,505283,126483 +g1,23747:9047085,43328001 +g1,23747:10188066,43328001 +g1,23747:13424889,43328001 +g1,23747:14076316,43328001 +g1,23747:17412098,43328001 +g1,23747:18205739,43328001 +g1,23747:19774015,43328001 +g1,23747:21565113,43328001 +g1,23747:25748931,43328001 +g1,23747:27120599,43328001 +g1,23747:28129198,43328001 +g1,23747:28922839,43328001 +k1,23747:32583029,43328001:2084049 +g1,23747:32583029,43328001 +) +(1,23747:7613813,44193081:24969216,505283,126483 +(1,23747:7613813,44193081:-983040,0,0 +g1,23747:6630773,44193081 +g1,23747:5320053,44193081 +g1,23747:4992373,44193081 +(1,23747:4992373,44193081:1310720,0,0 +k1,23747:6303093,44193081:1310720 +) +g1,23747:6630773,44193081 +) +k1,23747:9624075,44193081:222440 +k1,23747:10296725,44193081:222418 +k1,23747:10969374,44193081:222417 +k1,23747:13373578,44193081:222510 +k1,23747:15619701,44193081:222371 +k1,23747:17991653,44193081:222371 +k1,23747:19577173,44193081:222371 +k1,23747:20422930,44193081:222510 +k1,23747:22128381,44193081:222371 +k1,23747:24391612,44193081:222440 +k1,23747:25511942,44193081:222487 +k1,23747:28771907,44193081:222371 +k1,23747:29446476,44193081:222371 +k1,23747:32583029,44193081:0 +) +(1,23747:7613813,45058161:24969216,505283,126483 +g1,23747:8407454,45058161 +g1,23747:9802060,45058161 +g1,23747:11173728,45058161 +g1,23747:12182327,45058161 +g1,23747:12975968,45058161 +k1,23747:32583029,45058161:18030920 +g1,23747:32583029,45058161 +) +] +(1,23747:32583029,45706769:0,0,0 +g1,23747:32583029,45706769 +) +) +] +(1,23747:6630773,47279633:25952256,485622,11795 +(1,23747:6630773,47279633:25952256,485622,11795 +(1,23747:6630773,47279633:0,0,0 +v1,23747:6630773,47279633:0,0,0 +) +g1,23747:6830002,47279633 +k1,23747:31387652,47279633:24557650 +) +) +] +(1,23747:4262630,4025873:0,0,0 +[1,23747:-473656,4025873:0,0,0 +(1,23747:-473656,-710413:0,0,0 +(1,23747:-473656,-710413:0,0,0 +g1,23747:-473656,-710413 +) +g1,23747:-473656,-710413 +) +] +) +] +!23635 +}410 +!12 +{411 +[1,23747:4262630,47279633:28320399,43253760,0 +(1,23747:4262630,4025873:0,0,0 +[1,23747:-473656,4025873:0,0,0 +(1,23747:-473656,-710413:0,0,0 +(1,23747:-473656,-644877:0,0,0 +k1,23747:-473656,-644877:-65536 ) -g1,21457:3062174,49800853 -(1,21457:3062174,52029077:16384,1703936,0 -[1,21457:3062174,52029077:25952256,1703936,0 -(1,21457:3062174,51504789:25952256,1179648,0 -(1,21457:3062174,51504789:16384,1179648,0 -r1,23531:3078558,51504789:16384,1179648,0 +(1,23747:-473656,4736287:0,0,0 +k1,23747:-473656,4736287:5209943 ) -k1,21457:29014430,51504789:25935872 -g1,21457:29014430,51504789 +g1,23747:-473656,-710413 ) ] ) +[1,23747:6630773,47279633:25952256,43253760,0 +[1,23747:6630773,4812305:25952256,786432,0 +(1,23747:6630773,4812305:25952256,505283,134348 +(1,23747:6630773,4812305:25952256,505283,134348 +g1,23747:3078558,4812305 +[1,23747:3078558,4812305:0,0,0 +(1,23747:3078558,2439708:0,1703936,0 +k1,23747:1358238,2439708:-1720320 +(1,23747:1358238,2439708:1720320,1703936,0 +(1,23747:1358238,2439708:1179648,16384,0 +r1,23747:2537886,2439708:1179648,16384,0 ) +g1,23747:3062174,2439708 +(1,23747:3062174,2439708:16384,1703936,0 +[1,23747:3062174,2439708:25952256,1703936,0 +(1,23747:3062174,1915420:25952256,1179648,0 +(1,23747:3062174,1915420:16384,1179648,0 +r1,23747:3078558,1915420:16384,1179648,0 +) +k1,23747:29014430,1915420:25935872 +g1,23747:29014430,1915420 ) ] -[1,23531:3078558,4812305:0,0,0 -(1,23531:3078558,49800853:0,16384,2228224 -g1,23531:29030814,49800853 -g1,23531:36135244,49800853 -(1,21457:36135244,49800853:1720320,16384,2228224 -(1,21457:36135244,52029077:16384,1703936,0 -[1,21457:36135244,52029077:25952256,1703936,0 -(1,21457:36135244,51504789:25952256,1179648,0 -(1,21457:36135244,51504789:16384,1179648,0 -r1,23531:36151628,51504789:16384,1179648,0 -) -k1,21457:62087500,51504789:25935872 -g1,21457:62087500,51504789 -) -] -) -g1,21457:36675916,49800853 -(1,21457:36675916,49800853:1179648,16384,0 -r1,23531:37855564,49800853:1179648,16384,0 -) -) -k1,23531:3078556,49800853:-34777008 ) -] -g1,23531:6630773,4812305 -g1,23531:6630773,4812305 -g1,23531:9205682,4812305 -g1,23531:11846782,4812305 -k1,23531:31387652,4812305:19540870 -) -) -] -[1,23531:6630773,45706769:25952256,40108032,0 -(1,23531:6630773,45706769:25952256,40108032,0 -(1,23531:6630773,45706769:0,0,0 -g1,23531:6630773,45706769 -) -[1,23531:6630773,45706769:25952256,40108032,0 -v1,23502:6630773,6254097:0,393216,0 -(1,23502:6630773,15123793:25952256,9262912,196608 -g1,23502:6630773,15123793 -g1,23502:6630773,15123793 -g1,23502:6434165,15123793 -(1,23502:6434165,15123793:0,9262912,196608 -r1,23531:32779637,15123793:26345472,9459520,196608 -k1,23502:6434165,15123793:-26345472 -) -(1,23502:6434165,15123793:26345472,9262912,196608 -[1,23502:6630773,15123793:25952256,9066304,0 -(1,23485:6630773,6468007:25952256,410518,76021 -h1,23485:6630773,6468007:0,0,0 -g1,23485:7579210,6468007 -g1,23485:9159939,6468007 -h1,23485:13269833,6468007:0,0,0 -k1,23485:32583029,6468007:19313196 -g1,23485:32583029,6468007 -) -(1,23487:6630773,7789545:25952256,404226,9436 -(1,23486:6630773,7789545:0,0,0 -g1,23486:6630773,7789545 -g1,23486:6630773,7789545 -g1,23486:6303093,7789545 -(1,23486:6303093,7789545:0,0,0 -) -g1,23486:6630773,7789545 -) -g1,23487:10108376,7789545 -k1,23487:10108376,7789545:0 -h1,23487:11372958,7789545:0,0,0 -k1,23487:32583030,7789545:21210072 -g1,23487:32583030,7789545 -) -(1,23488:6630773,8455723:25952256,410518,82312 -h1,23488:6630773,8455723:0,0,0 -g1,23488:6946919,8455723 -g1,23488:7263065,8455723 -g1,23488:10424522,8455723 -g1,23488:14850562,8455723 -g1,23488:15482854,8455723 -g1,23488:16431292,8455723 -k1,23488:16431292,8455723:0 -h1,23488:17695874,8455723:0,0,0 -k1,23488:32583029,8455723:14887155 -g1,23488:32583029,8455723 -) -(1,23489:6630773,9121901:25952256,410518,107478 -h1,23489:6630773,9121901:0,0,0 -g1,23489:6946919,9121901 -g1,23489:7263065,9121901 -g1,23489:11056813,9121901 -g1,23489:15166707,9121901 -k1,23489:15166707,9121901:0 -h1,23489:16431289,9121901:0,0,0 -k1,23489:32583029,9121901:16151740 -g1,23489:32583029,9121901 -) -(1,23490:6630773,9788079:25952256,404226,107478 -h1,23490:6630773,9788079:0,0,0 -g1,23490:6946919,9788079 -g1,23490:7263065,9788079 -g1,23490:11372959,9788079 -g1,23490:14534416,9788079 -g1,23490:15166708,9788079 -g1,23490:20541185,9788079 -g1,23490:22438059,9788079 -g1,23490:23070351,9788079 -g1,23490:24967226,9788079 -g1,23490:25599518,9788079 -g1,23490:26547955,9788079 -g1,23490:27180247,9788079 -h1,23490:28760976,9788079:0,0,0 -k1,23490:32583029,9788079:3822053 -g1,23490:32583029,9788079 -) -(1,23501:6630773,10454257:25952256,404226,82312 -(1,23492:6630773,10454257:0,0,0 -g1,23492:6630773,10454257 -g1,23492:6630773,10454257 -g1,23492:6303093,10454257 -(1,23492:6303093,10454257:0,0,0 -) -g1,23492:6630773,10454257 -) -g1,23501:7579210,10454257 -g1,23501:8211502,10454257 -g1,23501:10740668,10454257 -g1,23501:11056814,10454257 -g1,23501:11372960,10454257 -g1,23501:12637543,10454257 -g1,23501:13902126,10454257 -g1,23501:14534418,10454257 -h1,23501:15166709,10454257:0,0,0 -k1,23501:32583029,10454257:17416320 -g1,23501:32583029,10454257 -) -(1,23501:6630773,11120435:25952256,404226,101187 -h1,23501:6630773,11120435:0,0,0 -g1,23501:7579210,11120435 -g1,23501:8211502,11120435 -g1,23501:11372959,11120435 -g1,23501:13585979,11120435 -g1,23501:15798999,11120435 -h1,23501:18960456,11120435:0,0,0 -k1,23501:32583029,11120435:13622573 -g1,23501:32583029,11120435 -) -(1,23501:6630773,11786613:25952256,410518,107478 -h1,23501:6630773,11786613:0,0,0 -g1,23501:7579210,11786613 -g1,23501:7895356,11786613 -g1,23501:8211502,11786613 -g1,23501:12005250,11786613 -h1,23501:14850561,11786613:0,0,0 -k1,23501:32583029,11786613:17732468 -g1,23501:32583029,11786613 -) -(1,23501:6630773,12452791:25952256,404226,6290 -h1,23501:6630773,12452791:0,0,0 -g1,23501:7579210,12452791 -g1,23501:7895356,12452791 -g1,23501:8211502,12452791 -g1,23501:8527648,12452791 -g1,23501:8843794,12452791 -g1,23501:9159940,12452791 -g1,23501:9476086,12452791 -g1,23501:9792232,12452791 -g1,23501:10108378,12452791 -g1,23501:12005253,12452791 -g1,23501:12321399,12452791 -g1,23501:12637545,12452791 -g1,23501:12953691,12452791 -g1,23501:13269837,12452791 -k1,23501:13269837,12452791:0 -h1,23501:14850566,12452791:0,0,0 -k1,23501:32583030,12452791:17732464 -g1,23501:32583030,12452791 -) -(1,23501:6630773,13118969:25952256,388497,9436 -h1,23501:6630773,13118969:0,0,0 -g1,23501:7579210,13118969 -g1,23501:8211502,13118969 -g1,23501:8527648,13118969 -g1,23501:8843794,13118969 -g1,23501:9159940,13118969 -g1,23501:9476086,13118969 -g1,23501:9792232,13118969 -g1,23501:10108378,13118969 -g1,23501:10424524,13118969 -g1,23501:10740670,13118969 -g1,23501:12005253,13118969 -g1,23501:12321399,13118969 -g1,23501:12637545,13118969 -g1,23501:12953691,13118969 -g1,23501:13269837,13118969 -h1,23501:14850565,13118969:0,0,0 -k1,23501:32583029,13118969:17732464 -g1,23501:32583029,13118969 -) -(1,23501:6630773,13785147:25952256,388497,9436 -h1,23501:6630773,13785147:0,0,0 -g1,23501:7579210,13785147 -g1,23501:8211502,13785147 -g1,23501:8527648,13785147 -g1,23501:8843794,13785147 -g1,23501:9159940,13785147 -g1,23501:9476086,13785147 -g1,23501:9792232,13785147 -g1,23501:10108378,13785147 -g1,23501:10424524,13785147 -g1,23501:10740670,13785147 -g1,23501:12005253,13785147 -g1,23501:12321399,13785147 -g1,23501:12637545,13785147 -g1,23501:12953691,13785147 -g1,23501:13269837,13785147 -h1,23501:14850565,13785147:0,0,0 -k1,23501:32583029,13785147:17732464 -g1,23501:32583029,13785147 -) -(1,23501:6630773,14451325:25952256,388497,9436 -h1,23501:6630773,14451325:0,0,0 -g1,23501:7579210,14451325 -g1,23501:8211502,14451325 -g1,23501:8527648,14451325 -g1,23501:8843794,14451325 -g1,23501:9159940,14451325 -g1,23501:9476086,14451325 -g1,23501:9792232,14451325 -g1,23501:10108378,14451325 -g1,23501:10424524,14451325 -g1,23501:10740670,14451325 -g1,23501:12005253,14451325 -g1,23501:12321399,14451325 -g1,23501:12637545,14451325 -g1,23501:12953691,14451325 -g1,23501:13269837,14451325 -h1,23501:14850565,14451325:0,0,0 -k1,23501:32583029,14451325:17732464 -g1,23501:32583029,14451325 -) -(1,23501:6630773,15117503:25952256,404226,6290 -h1,23501:6630773,15117503:0,0,0 -g1,23501:7579210,15117503 -g1,23501:8211502,15117503 -g1,23501:8843794,15117503 -g1,23501:10424523,15117503 -h1,23501:11689106,15117503:0,0,0 -k1,23501:32583030,15117503:20893924 -g1,23501:32583030,15117503 -) -] -) -g1,23502:32583029,15123793 -g1,23502:6630773,15123793 -g1,23502:6630773,15123793 -g1,23502:32583029,15123793 -g1,23502:32583029,15123793 -) -h1,23502:6630773,15320401:0,0,0 -v1,23506:6630773,17210465:0,393216,0 -(1,23507:6630773,19381997:25952256,2564748,0 -g1,23507:6630773,19381997 -g1,23507:6303093,19381997 -r1,23531:6401397,19381997:98304,2564748,0 -g1,23507:6600626,19381997 -g1,23507:6797234,19381997 -[1,23507:6797234,19381997:25785795,2564748,0 -(1,23507:6797234,17572538:25785795,755289,196608 -(1,23506:6797234,17572538:0,755289,196608 -r1,23531:8134168,17572538:1336934,951897,196608 -k1,23506:6797234,17572538:-1336934 -) -(1,23506:6797234,17572538:1336934,755289,196608 -) -k1,23506:8274529,17572538:140361 -k1,23506:8602209,17572538:327680 -k1,23506:11277503,17572538:140361 -k1,23506:13803375,17572538:140362 -k1,23506:17085532,17572538:140361 -k1,23506:18615256,17572538:140361 -k1,23506:20475937,17572538:140361 -k1,23506:21900804,17572538:140361 -k1,23506:23133651,17572538:140362 -k1,23506:25246645,17572538:140361 -k1,23506:27471051,17572538:140361 -k1,23506:28878878,17572538:140361 -k1,23506:30249292,17572538:140303 -k1,23506:32583029,17572538:0 -) -(1,23507:6797234,18414026:25785795,505283,134348 -k1,23506:7704205,18414026:255543 -k1,23506:11287012,18414026:255544 -k1,23506:13398535,18414026:255543 -k1,23506:15148300,18414026:255544 -k1,23506:16086728,18414026:255543 -k1,23506:18770381,18414026:255544 -k1,23506:19843813,18414026:255543 -k1,23506:21488064,18414026:255543 -k1,23506:22429770,18414026:255544 -k1,23506:24340097,18414026:255543 -k1,23506:25587201,18414026:255544 -k1,23506:26652114,18414026:255543 -k1,23506:29914450,18414026:255544 -k1,23506:31563944,18414026:255543 -k1,23506:32583029,18414026:0 -) -(1,23507:6797234,19255514:25785795,513147,126483 -g1,23506:9835483,19255514 -g1,23506:11053797,19255514 -g1,23506:12345511,19255514 -g1,23506:13204032,19255514 -g1,23506:13759121,19255514 -g1,23506:16781641,19255514 -g1,23506:17512367,19255514 -g1,23506:19874284,19255514 -g1,23506:23803822,19255514 -g1,23506:24654479,19255514 -g1,23506:25872793,19255514 -g1,23506:26486865,19255514 -k1,23507:32583029,19255514:4541650 -g1,23507:32583029,19255514 -) -] -g1,23507:32583029,19381997 -) -h1,23507:6630773,19381997:0,0,0 -v1,23511:6630773,21272061:0,393216,0 -(1,23522:6630773,25376122:25952256,4497277,0 -g1,23522:6630773,25376122 -g1,23522:6303093,25376122 -r1,23531:6401397,25376122:98304,4497277,0 -g1,23522:6600626,25376122 -g1,23522:6797234,25376122 -[1,23522:6797234,25376122:25785795,4497277,0 -(1,23513:6797234,21667164:25785795,788319,218313 -(1,23511:6797234,21667164:0,788319,218313 -r1,23531:7917113,21667164:1119879,1006632,218313 -k1,23511:6797234,21667164:-1119879 -) -(1,23511:6797234,21667164:1119879,788319,218313 -) -k1,23511:8087824,21667164:170711 -k1,23511:8415504,21667164:327680 -k1,23511:9056108,21667164:170711 -k1,23511:9758316,21667164:170711 -k1,23511:12058292,21667164:170711 -k1,23511:13813007,21667164:170710 -k1,23511:14635146,21667164:170711 -k1,23511:16462607,21667164:170711 -k1,23511:17642572,21667164:170711 -k1,23511:19004728,21667164:170711 -k1,23511:19791477,21667164:170711 -k1,23511:20981273,21667164:170711 -k1,23511:22519065,21667164:170711 -k1,23511:23349068,21667164:170711 -k1,23511:24538864,21667164:170711 -k1,23511:26465284,21667164:170710 -k1,23511:27655080,21667164:170711 -k1,23511:29160759,21667164:170711 -k1,23511:30569445,21667164:170711 -k1,23511:31391584,21667164:170711 -k1,23511:32583029,21667164:0 -) -(1,23513:6797234,22508652:25785795,505283,126483 -g1,23511:8280969,22508652 -g1,23511:9499283,22508652 -g1,23511:12690231,22508652 -g1,23512:13993742,22508652 -g1,23512:14940737,22508652 -g1,23512:16258010,22508652 -g1,23512:17073277,22508652 -g1,23512:17628366,22508652 -g1,23512:20084655,22508652 -k1,23513:32583029,22508652:10078785 -g1,23513:32583029,22508652 -) -v1,23515:6797234,23699118:0,393216,0 -(1,23520:6797234,24655226:25785795,1349324,196608 -g1,23520:6797234,24655226 -g1,23520:6797234,24655226 -g1,23520:6600626,24655226 -(1,23520:6600626,24655226:0,1349324,196608 -r1,23531:32779637,24655226:26179011,1545932,196608 -k1,23520:6600625,24655226:-26179012 -) -(1,23520:6600626,24655226:26179011,1349324,196608 -[1,23520:6797234,24655226:25785795,1152716,0 -(1,23517:6797234,23906736:25785795,404226,82312 -(1,23516:6797234,23906736:0,0,0 -g1,23516:6797234,23906736 -g1,23516:6797234,23906736 -g1,23516:6469554,23906736 -(1,23516:6469554,23906736:0,0,0 -) -g1,23516:6797234,23906736 -) -k1,23517:6797234,23906736:0 -g1,23517:12171711,23906736 -g1,23517:15333168,23906736 -g1,23517:15965460,23906736 -h1,23517:17546189,23906736:0,0,0 -k1,23517:32583029,23906736:15036840 -g1,23517:32583029,23906736 -) -(1,23518:6797234,24572914:25785795,404226,82312 -h1,23518:6797234,24572914:0,0,0 -g1,23518:13120148,24572914 -g1,23518:16281605,24572914 -g1,23518:16913897,24572914 -h1,23518:18494626,24572914:0,0,0 -k1,23518:32583029,24572914:14088403 -g1,23518:32583029,24572914 -) -] -) -g1,23520:32583029,24655226 -g1,23520:6797234,24655226 -g1,23520:6797234,24655226 -g1,23520:32583029,24655226 -g1,23520:32583029,24655226 -) -h1,23520:6797234,24851834:0,0,0 -] -g1,23522:32583029,25376122 -) -h1,23522:6630773,25376122:0,0,0 -(1,23524:6630773,28183690:25952256,32768,229376 -(1,23524:6630773,28183690:0,32768,229376 -(1,23524:6630773,28183690:5505024,32768,229376 -r1,23531:12135797,28183690:5505024,262144,229376 -) -k1,23524:6630773,28183690:-5505024 -) -(1,23524:6630773,28183690:25952256,32768,0 -r1,23531:32583029,28183690:25952256,32768,0 -) -) -(1,23524:6630773,29788018:25952256,606339,161218 -(1,23524:6630773,29788018:2954625,582746,14155 -g1,23524:6630773,29788018 -g1,23524:9585398,29788018 -) -g1,23524:12793254,29788018 -k1,23524:32583028,29788018:16793468 -g1,23524:32583028,29788018 -) -(1,23526:6630773,31022722:25952256,513147,134348 -k1,23525:8565683,31022722:282747 -k1,23525:10051671,31022722:282747 -k1,23525:10865915,31022722:282747 -k1,23525:12167746,31022722:282746 -k1,23525:13633418,31022722:282747 -k1,23525:14575457,31022722:282747 -k1,23525:15877289,31022722:282747 -k1,23525:17915746,31022722:282747 -k1,23525:18411401,31022722:282663 -k1,23525:22480818,31022722:282747 -k1,23525:23449726,31022722:282746 -k1,23525:26007883,31022722:282747 -k1,23525:28693180,31022722:282747 -k1,23525:29995012,31022722:282747 -k1,23525:32583029,31022722:0 -) -(1,23526:6630773,31864210:25952256,513147,134348 -k1,23525:7566280,31864210:276215 -k1,23525:9689955,31864210:276215 -k1,23525:10652332,31864210:276215 -k1,23525:12308735,31864210:276215 -k1,23525:13576510,31864210:276215 -k1,23525:14942589,31864210:276215 -k1,23525:15878096,31864210:276215 -k1,23525:18521471,31864210:276215 -k1,23525:21006249,31864210:276215 -k1,23525:23541489,31864210:276214 -k1,23525:24430466,31864210:276215 -k1,23525:25725766,31864210:276215 -k1,23525:27184906,31864210:276215 -k1,23525:28120413,31864210:276215 -k1,23525:30230981,31864210:276215 -k1,23525:31130443,31864210:276215 -k1,23525:32184570,31864210:276215 -k1,23525:32583029,31864210:0 -) -(1,23526:6630773,32705698:25952256,505283,134348 -k1,23525:9940232,32705698:182736 -k1,23525:11293441,32705698:182736 -k1,23525:13656560,32705698:182736 -k1,23525:15251597,32705698:182736 -k1,23525:15794126,32705698:182736 -k1,23525:18011099,32705698:182736 -k1,23525:20248390,32705698:182737 -k1,23525:22232055,32705698:182736 -k1,23525:23606236,32705698:182736 -k1,23525:24988936,32705698:182736 -k1,23525:25945652,32705698:182736 -k1,23525:30528475,32705698:182736 -k1,23525:32583029,32705698:0 -) -(1,23526:6630773,33547186:25952256,513147,134348 -k1,23525:8769642,33547186:164269 -k1,23525:9411458,33547186:164059 -k1,23525:10745990,33547186:164059 -k1,23525:12458665,33547186:164059 -k1,23525:13274152,33547186:164059 -k1,23525:15193265,33547186:164059 -k1,23525:16335777,33547186:164059 -k1,23525:18650072,33547186:164059 -k1,23525:21512248,33547186:164059 -k1,23525:22437835,33547186:164059 -k1,23525:23520709,33547186:164059 -k1,23525:28369282,33547186:164059 -k1,23525:29945642,33547186:164059 -k1,23525:31395517,33547186:164059 -k1,23525:32583029,33547186:0 -) -(1,23526:6630773,34388674:25952256,513147,126483 -g1,23525:7279579,34388674 -g1,23525:9796817,34388674 -g1,23525:12050600,34388674 -k1,23526:32583028,34388674:18557828 -g1,23526:32583028,34388674 -) -] -(1,23531:32583029,45706769:0,0,0 -g1,23531:32583029,45706769 -) -) -] -(1,23531:6630773,47279633:25952256,0,0 -h1,23531:6630773,47279633:25952256,0,0 -) -] -(1,23531:4262630,4025873:0,0,0 -[1,23531:-473656,4025873:0,0,0 -(1,23531:-473656,-710413:0,0,0 -(1,23531:-473656,-710413:0,0,0 -g1,23531:-473656,-710413 -) -g1,23531:-473656,-710413 -) -] -) -] -!17421 -}426 -!12 -{427 -[1,23531:4262630,47279633:28320399,43253760,0 -(1,23531:4262630,4025873:0,0,0 -[1,23531:-473656,4025873:0,0,0 -(1,23531:-473656,-710413:0,0,0 -(1,23531:-473656,-644877:0,0,0 -k1,23531:-473656,-644877:-65536 ) -(1,23531:-473656,4736287:0,0,0 -k1,23531:-473656,4736287:5209943 ) -g1,23531:-473656,-710413 +] +[1,23747:3078558,4812305:0,0,0 +(1,23747:3078558,2439708:0,1703936,0 +g1,23747:29030814,2439708 +g1,23747:36135244,2439708 +(1,23747:36135244,2439708:1720320,1703936,0 +(1,23747:36135244,2439708:16384,1703936,0 +[1,23747:36135244,2439708:25952256,1703936,0 +(1,23747:36135244,1915420:25952256,1179648,0 +(1,23747:36135244,1915420:16384,1179648,0 +r1,23747:36151628,1915420:16384,1179648,0 +) +k1,23747:62087500,1915420:25935872 +g1,23747:62087500,1915420 ) ] ) -[1,23531:6630773,47279633:25952256,43253760,0 -[1,23531:6630773,4812305:25952256,786432,0 -(1,23531:6630773,4812305:25952256,0,0 -(1,23531:6630773,4812305:25952256,0,0 -g1,23531:3078558,4812305 -[1,23531:3078558,4812305:0,0,0 -(1,23531:3078558,2439708:0,1703936,0 -k1,23531:1358238,2439708:-1720320 -(1,23531:1358238,2439708:1720320,1703936,0 -(1,23531:1358238,2439708:1179648,16384,0 -r1,23531:2537886,2439708:1179648,16384,0 +g1,23747:36675916,2439708 +(1,23747:36675916,2439708:1179648,16384,0 +r1,23747:37855564,2439708:1179648,16384,0 ) -g1,23531:3062174,2439708 -(1,23531:3062174,2439708:16384,1703936,0 -[1,23531:3062174,2439708:25952256,1703936,0 -(1,23531:3062174,1915420:25952256,1179648,0 -(1,23531:3062174,1915420:16384,1179648,0 -r1,23531:3078558,1915420:16384,1179648,0 ) -k1,23531:29014430,1915420:25935872 -g1,23531:29014430,1915420 +k1,23747:3078556,2439708:-34777008 ) ] +[1,23747:3078558,4812305:0,0,0 +(1,23747:3078558,49800853:0,16384,2228224 +k1,23747:1358238,49800853:-1720320 +(1,23747:1358238,49800853:1720320,16384,2228224 +(1,23747:1358238,49800853:1179648,16384,0 +r1,23747:2537886,49800853:1179648,16384,0 ) +g1,23747:3062174,49800853 +(1,23747:3062174,52029077:16384,1703936,0 +[1,23747:3062174,52029077:25952256,1703936,0 +(1,23747:3062174,51504789:25952256,1179648,0 +(1,23747:3062174,51504789:16384,1179648,0 +r1,23747:3078558,51504789:16384,1179648,0 ) +k1,23747:29014430,51504789:25935872 +g1,23747:29014430,51504789 ) ] -[1,23531:3078558,4812305:0,0,0 -(1,23531:3078558,2439708:0,1703936,0 -g1,23531:29030814,2439708 -g1,23531:36135244,2439708 -(1,23531:36135244,2439708:1720320,1703936,0 -(1,23531:36135244,2439708:16384,1703936,0 -[1,23531:36135244,2439708:25952256,1703936,0 -(1,23531:36135244,1915420:25952256,1179648,0 -(1,23531:36135244,1915420:16384,1179648,0 -r1,23531:36151628,1915420:16384,1179648,0 ) -k1,23531:62087500,1915420:25935872 -g1,23531:62087500,1915420 +) ) ] +[1,23747:3078558,4812305:0,0,0 +(1,23747:3078558,49800853:0,16384,2228224 +g1,23747:29030814,49800853 +g1,23747:36135244,49800853 +(1,23747:36135244,49800853:1720320,16384,2228224 +(1,23747:36135244,52029077:16384,1703936,0 +[1,23747:36135244,52029077:25952256,1703936,0 +(1,23747:36135244,51504789:25952256,1179648,0 +(1,23747:36135244,51504789:16384,1179648,0 +r1,23747:36151628,51504789:16384,1179648,0 ) -g1,23531:36675916,2439708 -(1,23531:36675916,2439708:1179648,16384,0 -r1,23531:37855564,2439708:1179648,16384,0 +k1,23747:62087500,51504789:25935872 +g1,23747:62087500,51504789 +) +] +) +g1,23747:36675916,49800853 +(1,23747:36675916,49800853:1179648,16384,0 +r1,23747:37855564,49800853:1179648,16384,0 ) ) -k1,23531:3078556,2439708:-34777008 +k1,23747:3078556,49800853:-34777008 +) +] +g1,23747:6630773,4812305 +k1,23747:28581402,4812305:20755252 +) +) +] +[1,23747:6630773,45706769:25952256,40108032,0 +(1,23747:6630773,45706769:25952256,40108032,0 +(1,23747:6630773,45706769:0,0,0 +g1,23747:6630773,45706769 +) +[1,23747:6630773,45706769:25952256,40108032,0 +(1,23747:7613813,6254097:24969216,513147,134348 +(1,23747:7613813,6254097:-983040,0,0 +g1,23747:6630773,6254097 +g1,23747:5320053,6254097 +g1,23747:4992373,6254097 +(1,23747:4992373,6254097:1310720,0,0 +k1,23747:6303093,6254097:1310720 +) +g1,23747:6630773,6254097 +) +k1,23747:9550925,6254097:149290 +k1,23747:10150397,6254097:149240 +k1,23747:10749869,6254097:149240 +k1,23747:13081002,6254097:149439 +k1,23747:16318854,6254097:149140 +k1,23747:17453654,6254097:149139 +k1,23747:19441079,6254097:149140 +k1,23747:21503215,6254097:149140 +k1,23747:23015503,6254097:149139 +k1,23747:23788140,6254097:149390 +k1,23747:27598775,6254097:149139 +k1,23747:29760020,6254097:149290 +k1,23747:31789388,6254097:149140 +k1,23747:32583029,6254097:0 +) +(1,23747:7613813,7119177:24969216,513147,134348 +k1,23747:9225709,7119177:183211 +k1,23747:10619371,7119177:183212 +k1,23747:15507412,7119177:183211 +k1,23747:18926792,7119177:183212 +k1,23747:21485123,7119177:183307 +k1,23747:24705928,7119177:183211 +k1,23747:25341338,7119177:183212 +k1,23747:28661150,7119177:183259 +k1,23747:29438806,7119177:183244 +k1,23747:30991160,7119177:183307 +k1,23747:32583029,7119177:0 +) +(1,23747:7613813,7984257:24969216,505283,126483 +g1,23747:11829744,7984257 +g1,23747:13201412,7984257 +g1,23747:14210011,7984257 +g1,23747:15003652,7984257 +k1,23747:32583029,7984257:16003236 +g1,23747:32583029,7984257 +) +(1,23747:7613813,8849337:24969216,505283,126483 +(1,23747:7613813,8849337:-983040,0,0 +g1,23747:6630773,8849337 +g1,23747:5320053,8849337 +g1,23747:4992373,8849337 +(1,23747:4992373,8849337:1310720,0,0 +k1,23747:6303093,8849337:1310720 +) +g1,23747:6630773,8849337 +) +k1,23747:9799111,8849337:199557 +k1,23747:10627814,8849337:199557 +k1,23747:13009067,8849337:199559 +k1,23747:17310521,8849337:199556 +k1,23747:20366136,8849337:199556 +k1,23747:21928842,8849337:199557 +k1,23747:22577975,8849337:199556 +k1,23747:23987982,8849337:199557 +k1,23747:24637115,8849337:199556 +k1,23747:26970525,8849337:199558 +k1,23747:28404125,8849337:199557 +k1,23747:29545435,8849337:199558 +k1,23747:32583029,8849337:0 +) +(1,23747:7613813,9714417:24969216,505283,126483 +k1,23747:8294076,9714417:228065 +k1,23747:11485023,9714417:228064 +k1,23747:12909775,9714417:228065 +k1,23747:13582828,9714417:228064 +k1,23747:16061572,9714417:228238 +k1,23747:19327230,9714417:228064 +k1,23747:20746740,9714417:228065 +k1,23747:24111530,9714417:228237 +k1,23747:25534972,9714417:228065 +k1,23747:26778362,9714417:228237 +k1,23747:28598440,9714417:228209 +k1,23747:32583029,9714417:0 +) +(1,23747:7613813,10579497:24969216,505283,126483 +g1,23747:8985481,10579497 +g1,23747:9994080,10579497 +g1,23747:11208462,10579497 +g1,23747:12378279,10579497 +k1,23747:32583029,10579497:19027068 +g1,23747:32583029,10579497 +) +(1,23747:7613813,11444577:24969216,513147,134348 +(1,23747:7613813,11444577:-983040,0,0 +g1,23747:6630773,11444577 +g1,23747:5320053,11444577 +g1,23747:4992373,11444577 +(1,23747:4992373,11444577:1310720,0,0 +k1,23747:6303093,11444577:1310720 +) +g1,23747:6630773,11444577 +) +k1,23747:8357899,11444577:282057 +k1,23747:9090107,11444577:281976 +k1,23747:10037928,11444577:281975 +k1,23747:11511184,11444577:281811 +k1,23747:12411819,11444577:281975 +k1,23747:13232501,11444577:281976 +k1,23747:16430008,11444577:281810 +k1,23747:18894007,11444577:282305 +k1,23747:21804467,11444577:281811 +k1,23747:23302625,11444577:281810 +k1,23747:28148858,11444577:282306 +k1,23747:30733603,11444577:281810 +k1,23747:32583029,11444577:0 +) +(1,23747:7613813,12309657:24969216,505283,134348 +k1,23747:10818144,12309657:141834 +k1,23747:12323127,12309657:141834 +k1,23747:13855323,12309657:142178 +k1,23747:19251521,12309657:142177 +k1,23747:20588732,12309657:141834 +k1,23747:21746063,12309657:142178 +k1,23747:23480052,12309657:142120 +k1,23747:28801852,12309657:141834 +k1,23747:30116241,12309657:141950 +k1,23747:31067445,12309657:141834 +k1,23747:31803806,12309657:141949 +k1,23747:32583029,12309657:0 +k1,23747:32583029,12309657:0 +) +(1,23747:7613813,13174737:24969216,513147,134348 +(1,23747:7613813,13174737:-983040,0,0 +g1,23747:6630773,13174737 +g1,23747:5320053,13174737 +g1,23747:4992373,13174737 +(1,23747:4992373,13174737:1310720,0,0 +k1,23747:6303093,13174737:1310720 +) +g1,23747:6630773,13174737 +) +k1,23747:10051391,13174737:155614 +k1,23747:10825622,13174737:155571 +k1,23747:11761070,13174737:155570 +k1,23747:14098509,13174737:155745 +k1,23747:17528826,13174737:155483 +k1,23747:20290676,13174737:155483 +k1,23747:21370217,13174737:155483 +k1,23747:24378482,13174737:155483 +k1,23747:25744415,13174737:155483 +k1,23747:29133051,13174737:155745 +k1,23747:31179248,13174737:155483 +k1,23747:32583029,13174737:0 +) +(1,23747:7613813,14039817:24969216,505283,126483 +g1,23747:10506572,14039817 +g1,23747:11840885,14039817 +g1,23747:13235491,14039817 +g1,23747:14449873,14039817 +g1,23747:16240971,14039817 +k1,23747:32583029,14039817:12183799 +g1,23747:32583029,14039817 +) +(1,23747:7613813,14904897:24969216,513147,134348 +(1,23747:7613813,14904897:-983040,0,0 +g1,23747:6630773,14904897 +g1,23747:5320053,14904897 +g1,23747:4992373,14904897 +(1,23747:4992373,14904897:1310720,0,0 +k1,23747:6303093,14904897:1310720 +) +g1,23747:6630773,14904897 +) +k1,23747:9424178,14904897:217185 +k1,23747:10170221,14904897:217167 +k1,23747:11578798,14904897:217132 +k1,23747:12575843,14904897:217167 +k1,23747:14749224,14904897:217131 +k1,23747:17148157,14904897:217239 +k1,23747:19758663,14904897:217131 +k1,23747:22706680,14904897:217132 +k1,23747:23847869,14904897:217131 +k1,23747:26458375,14904897:217131 +k1,23747:29119451,14904897:217239 +k1,23747:32583029,14904897:0 +) +(1,23747:7613813,15769977:24969216,505283,126483 +g1,23747:11042656,15769977 +g1,23747:13087379,15769977 +g1,23747:14481985,15769977 +g1,23747:15696367,15769977 +g1,23747:17487465,15769977 +g1,23747:21671283,15769977 +g1,23747:23042951,15769977 +g1,23747:24051550,15769977 +g1,23747:25265932,15769977 +g1,23747:26834208,15769977 +k1,23747:32583029,15769977:4172680 +g1,23747:32583029,15769977 +) +(1,23747:7613813,16635057:24969216,513147,134348 +(1,23747:7613813,16635057:-983040,0,0 +g1,23747:6630773,16635057 +g1,23747:5320053,16635057 +g1,23747:4992373,16635057 +(1,23747:4992373,16635057:1310720,0,0 +k1,23747:6303093,16635057:1310720 +) +g1,23747:6630773,16635057 +) +k1,23747:9422745,16635057:231480 +k1,23747:10262368,16635057:231449 +k1,23747:11043008,16635057:231448 +k1,23747:13456279,16635057:231577 +k1,23747:16763924,16635057:231385 +k1,23747:19523224,16635057:231577 +k1,23747:20951295,16635057:231384 +k1,23747:24412293,16635057:231384 +k1,23747:25302970,16635057:231385 +k1,23747:28064044,16635057:231384 +k1,23747:30141115,16635057:231577 +k1,23747:31567876,16635057:231384 +k1,23747:32583029,16635057:0 +) +(1,23747:7613813,17500137:24969216,505283,126483 +g1,23747:9404911,17500137 +g1,23747:13588729,17500137 +g1,23747:14960397,17500137 +g1,23747:15968996,17500137 +g1,23747:16762637,17500137 +k1,23747:32583029,17500137:14244251 +g1,23747:32583029,17500137 +) +(1,23747:7613813,18365217:24969216,513147,134348 +(1,23747:7613813,18365217:-983040,0,0 +g1,23747:6630773,18365217 +g1,23747:5320053,18365217 +g1,23747:4992373,18365217 +(1,23747:4992373,18365217:1310720,0,0 +k1,23747:6303093,18365217:1310720 +) +g1,23747:6630773,18365217 +) +k1,23747:8689686,18365217:153126 +k1,23747:9461426,18365217:153080 +k1,23747:10805859,18365217:152988 +k1,23747:11577599,18365217:153080 +k1,23747:15172538,18365217:152988 +k1,23747:17507496,18365217:153264 +k1,23747:17807638,18365217:-13 +k1,23747:17807651,18365217:13 +k1,23747:18579529,18365217:153218 +k1,23747:19220104,18365217:152987 +k1,23747:22375296,18365217:152988 +k1,23747:23475934,18365217:152987 +k1,23747:25100861,18365217:152988 +k1,23747:27940169,18365217:152987 +k1,23747:29284602,18365217:152988 +k1,23747:32583029,18365217:0 +) +(1,23747:7613813,19230297:24969216,505283,126483 +g1,23747:8614547,19230297 +g1,23747:9264008,19230297 +g1,23747:12134484,19230297 +g1,23747:14521305,19230297 +g1,23747:16117762,19230297 +g1,23747:16889120,19230297 +g1,23747:18103502,19230297 +g1,23747:21021165,19230297 +g1,23747:22392833,19230297 +g1,23747:23401432,19230297 +g1,23747:24195073,19230297 +k1,23747:32583029,19230297:7210274 +g1,23747:32583029,19230297 +) +(1,23747:7613813,20095377:24969216,513147,126483 +(1,23747:7613813,20095377:-983040,0,0 +g1,23747:6630773,20095377 +g1,23747:5320053,20095377 +g1,23747:4992373,20095377 +(1,23747:4992373,20095377:1310720,0,0 +k1,23747:6303093,20095377:1310720 +) +g1,23747:6630773,20095377 +) +k1,23747:8715655,20095377:179095 +k1,23747:9513389,20095377:179074 +k1,23747:11874238,20095377:179155 +k1,23747:12502849,20095377:179034 +k1,23747:12855654,20095377:179135 +k1,23747:14333612,20095377:179034 +k1,23747:15723097,20095377:179035 +k1,23747:17969137,20095377:179034 +k1,23747:20581644,20095377:179155 +k1,23747:21250232,20095377:179034 +k1,23747:23122061,20095377:179034 +k1,23747:23917133,20095377:179034 +k1,23747:24494627,20095377:179035 +k1,23747:26497528,20095377:179034 +k1,23747:27600620,20095377:179034 +k1,23747:30592459,20095377:179034 +k1,23747:31742202,20095377:179155 +k1,23747:32583029,20095377:0 +) +(1,23747:7613813,20960457:24969216,513147,126483 +k1,23747:9962531,20960457:154573 +k1,23747:13834960,20960457:154572 +k1,23747:14798903,20960457:154573 +k1,23747:18151632,20960457:154572 +k1,23747:20639287,20960457:154573 +k1,23747:21985305,20960457:154573 +k1,23747:25192156,20960457:154839 +k1,23747:26543416,20960457:154573 +k1,23747:29927602,20960457:154572 +k1,23747:30741467,20960457:154573 +k1,23747:32583029,20960457:0 +) +(1,23747:7613813,21825537:24969216,530548,132809 +k1,23747:9446509,21825537:262453 +k1,23747:11079257,21825537:262391 +$1,23747:11079257,21825537 +k1,23747:13222886,21825537:68919 +k1,23747:13706746,21825537:68918 +k1,23747:14190607,21825537:68919 +k1,23747:14674467,21825537:68918 +k1,23747:15988212,21825537:68919 +k1,23747:16472072,21825537:68918 +k1,23747:18200759,21825537:68919 +k1,23747:18684619,21825537:68918 +k1,23747:22073074,21825537:68919 +k1,23747:22556934,21825537:68918 +k1,23747:23455736,21825537:68918 +k1,23747:23939597,21825537:68919 +k1,23747:24838399,21825537:68918 +k1,23747:25322260,21825537:68919 +k1,23747:27880830,21825537:68918 +k1,23747:28364691,21825537:68919 +k1,23747:32168087,21825537:68918 +k1,23747:32583029,21825537:0 +) +(1,23747:7613813,22690617:24969216,538806,132809 +g1,23747:12178175,22690617 +g1,23747:12593117,22690617 +$1,23747:13837943,22690617 +g1,23747:14210842,22690617 +g1,23747:16079273,22690617 +g1,23747:17450941,22690617 +g1,23747:18459540,22690617 +g1,23747:19253181,22690617 +k1,23747:32583029,22690617:12152166 +g1,23747:32583029,22690617 +) +(1,23747:7613813,23555697:24969216,505283,134348 +(1,23747:7613813,23555697:-983040,0,0 +g1,23747:6630773,23555697 +g1,23747:5320053,23555697 +g1,23747:4992373,23555697 +(1,23747:4992373,23555697:1310720,0,0 +k1,23747:6303093,23555697:1310720 +) +g1,23747:6630773,23555697 +) +k1,23747:9662982,23555697:218093 +k1,23747:10518721,23555697:218074 +k1,23747:11398053,23555697:218074 +k1,23747:12807534,23555697:218036 +k1,23747:13644268,23555697:218074 +k1,23747:14391218,23555697:218074 +k1,23747:16659877,23555697:218037 +k1,23747:19059720,23555697:218149 +k1,23747:19359862,23555697:-13 +k1,23747:19359875,23555697:13 +k1,23747:20774599,23555697:218037 +k1,23747:23542641,23555697:218036 +k1,23747:26713730,23555697:218037 +k1,23747:29985182,23555697:218130 +k1,23747:32583029,23555697:0 +) +(1,23747:7613813,24420777:24969216,513147,126483 +k1,23747:9080836,24420777:199557 +k1,23747:9939684,24420777:199556 +k1,23747:11158326,24420777:199557 +k1,23747:12951718,24420777:199556 +k1,23747:18776885,24420777:199557 +k1,23747:21238090,24420777:199558 +k1,23747:22239154,24420777:199559 +k1,23747:26509151,24420777:199556 +k1,23747:27679297,24420777:199558 +k1,23747:28894007,24420777:199557 +k1,23747:32583029,24420777:0 +) +(1,23747:7613813,25285857:24969216,530548,126483 +g1,23747:9149976,25285857 +$1,23747:9149976,25285857 +g1,23747:9979860,25285857 +g1,23747:10394802,25285857 +g1,23747:12054570,25285857 +g1,23747:12469512,25285857 +$1,23747:16203990,25285857 +g1,23747:16403219,25285857 +g1,23747:17774887,25285857 +g1,23747:18783486,25285857 +g1,23747:19577127,25285857 +k1,23747:32583029,25285857:11429761 +g1,23747:32583029,25285857 +) +(1,23747:7613813,26150937:24969216,513147,134348 +(1,23747:7613813,26150937:-983040,0,0 +g1,23747:6630773,26150937 +g1,23747:5320053,26150937 +g1,23747:4992373,26150937 +(1,23747:4992373,26150937:1310720,0,0 +k1,23747:6303093,26150937:1310720 +) +g1,23747:6630773,26150937 +) +k1,23747:10503364,26150937:218304 +k1,23747:11294435,26150937:218286 +k1,23747:12292598,26150937:218285 +k1,23747:13702290,26150937:218247 +k1,23747:14469768,26150937:218286 +k1,23747:15138285,26150937:218285 +k1,23747:17717794,26150937:218247 +k1,23747:20117849,26150937:218361 +k1,23747:23118100,26150937:218248 +k1,23747:24982611,26150937:218247 +k1,23747:25803789,26150937:218247 +k1,23747:28169110,26150937:218362 +k1,23747:31120265,26150937:218304 +k1,23747:32583029,26150937:0 +) +(1,23747:7613813,27016017:24969216,505283,134348 +k1,23747:11325018,27016017:166363 +k1,23747:16571568,27016017:166199 +k1,23747:20070273,27016017:166199 +k1,23747:23432860,27016017:166396 +k1,23747:24794435,27016017:166198 +k1,23747:25975853,27016017:166265 +k1,23747:27314557,27016017:166265 +k1,23747:28290126,27016017:166199 +k1,23747:29471543,27016017:166264 +k1,23747:31006888,27016017:166298 +k1,23747:32583029,27016017:0 +k1,23747:32583029,27016017:0 +) +(1,23747:7613813,27881097:24969216,513147,134348 +(1,23747:7613813,27881097:-983040,0,0 +g1,23747:6630773,27881097 +g1,23747:5320053,27881097 +g1,23747:4992373,27881097 +(1,23747:4992373,27881097:1310720,0,0 +k1,23747:6303093,27881097:1310720 +) +g1,23747:6630773,27881097 +) +k1,23747:10242290,27881097:162357 +k1,23747:10977395,27881097:162320 +k1,23747:11919593,27881097:162320 +k1,23747:13273284,27881097:162246 +k1,23747:14054264,27881097:162320 +k1,23747:15533128,27881097:162246 +k1,23747:17877290,27881097:162468 +k1,23747:19227048,27881097:162246 +k1,23747:21875075,27881097:162246 +k1,23747:22653359,27881097:162246 +k1,23747:27379753,27881097:162467 +k1,23747:30211936,27881097:162246 +k1,23747:32583029,27881097:0 +) +(1,23747:7613813,28746177:24969216,505283,126483 +g1,23747:9008419,28746177 +g1,23747:10222801,28746177 +g1,23747:12013899,28746177 +g1,23747:16229830,28746177 +g1,23747:17601498,28746177 +g1,23747:18610097,28746177 +g1,23747:19403738,28746177 +k1,23747:32583029,28746177:12001609 +g1,23747:32583029,28746177 +) +(1,23747:7613813,29611257:24969216,505283,134348 +(1,23747:7613813,29611257:-983040,0,0 +g1,23747:6630773,29611257 +g1,23747:5320053,29611257 +g1,23747:4992373,29611257 +(1,23747:4992373,29611257:1310720,0,0 +k1,23747:6303093,29611257:1310720 +) +g1,23747:6630773,29611257 +) +k1,23747:8907311,29611257:137443 +k1,23747:9721680,29611257:137382 +k1,23747:10403666,29611257:137382 +k1,23747:12722988,29611257:137628 +k1,23747:13023130,29611257:-13 +k1,23747:13023143,29611257:13 +k1,23747:15579334,29611257:137257 +k1,23747:20543033,29611257:137628 +k1,23747:21482104,29611257:137566 +k1,23747:22806874,29611257:137258 +k1,23747:26089205,29611257:137258 +k1,23747:28625735,29611257:137257 +k1,23747:30305896,29611257:137443 +k1,23747:31458431,29611257:137382 +k1,23747:32583029,29611257:0 +) +(1,23747:7613813,30476337:24969216,505283,126483 +g1,23747:9008419,30476337 +g1,23747:10380087,30476337 +g1,23747:11388686,30476337 +g1,23747:12603068,30476337 +g1,23747:13772885,30476337 +k1,23747:32583030,30476337:17234004 +g1,23747:32583030,30476337 +) +(1,23747:7613813,31341417:24969216,505283,126483 +(1,23747:7613813,31341417:-983040,0,0 +g1,23747:6630773,31341417 +g1,23747:5320053,31341417 +g1,23747:4992373,31341417 +(1,23747:4992373,31341417:1310720,0,0 +k1,23747:6303093,31341417:1310720 +) +g1,23747:6630773,31341417 +) +k1,23747:9967366,31341417:312106 +k1,23747:10729593,31341417:311995 +k1,23747:12232807,31341417:311769 +k1,23747:12995033,31341417:311994 +k1,23747:15401334,31341417:311770 +k1,23747:17895472,31341417:312444 +k1,23747:19741439,31341417:311769 +k1,23747:24039109,31341417:311770 +k1,23747:27640805,31341417:312444 +k1,23747:30037611,31341417:312106 +k1,23747:32583029,31341417:0 +) +(1,23747:7613813,32206497:24969216,505283,126483 +g1,23747:9513046,32206497 +g1,23747:13115560,32206497 +g1,23747:14906658,32206497 +g1,23747:20285853,32206497 +g1,23747:21657521,32206497 +g1,23747:22666120,32206497 +g1,23747:23459761,32206497 +k1,23747:32583029,32206497:7547127 +g1,23747:32583029,32206497 +) +(1,23747:7613813,33071577:24969216,505283,173670 +(1,23747:7613813,33071577:-983040,0,0 +g1,23747:6630773,33071577 +g1,23747:5320053,33071577 +g1,23747:4992373,33071577 +(1,23747:4992373,33071577:1310720,0,0 +k1,23747:6303093,33071577:1310720 +) +g1,23747:6630773,33071577 +) +k1,23747:9671449,33071577:165612 +k1,23747:10375734,33071577:165579 +k1,23747:12723141,33071577:165713 +[1,23747:12862077,33071577:342688,473825,0 +(1,23747:12862077,32934935:342688,337183,0 +) +] +(1,23747:13431719,33245247:372900,473825,0 +) +k1,23747:14470993,33071577:165679 +k1,23747:15034964,33071577:165512 +k1,23747:18302294,33071577:165511 +k1,23747:22219741,33071577:165511 +k1,23747:24692321,33071577:165713 +k1,23747:27343159,33071577:165713 +k1,23747:28742713,33071577:165511 +k1,23747:29850178,33071577:165713 +k1,23747:32583029,33071577:0 +) +(1,23747:7613813,33936657:24969216,505283,126483 +g1,23747:13067063,33936657 +g1,23747:13860704,33936657 +g1,23747:15428980,33936657 +g1,23747:17220078,33936657 +g1,23747:22042872,33936657 +g1,23747:23414540,33936657 +g1,23747:24423139,33936657 +g1,23747:25216780,33936657 +k1,23747:32583029,33936657:5790108 +g1,23747:32583029,33936657 +) +(1,23747:7613813,34801737:24969216,513147,134348 +(1,23747:7613813,34801737:-983040,0,0 +g1,23747:6630773,34801737 +g1,23747:5320053,34801737 +g1,23747:4992373,34801737 +(1,23747:4992373,34801737:1310720,0,0 +k1,23747:6303093,34801737:1310720 +) +g1,23747:6630773,34801737 +) +k1,23747:9110216,34801737:313478 +k1,23747:9956388,34801737:313364 +k1,23747:12451902,34801737:313820 +k1,23747:12752044,34801737:-13 +k1,23747:12752057,34801737:13 +k1,23747:15855062,34801737:313137 +k1,23747:19563619,34801737:313137 +k1,23747:20536047,34801737:313136 +k1,23747:23933308,34801737:313137 +k1,23747:26572973,34801737:313137 +k1,23747:28621503,34801737:313137 +k1,23747:31193666,34801737:313137 +k1,23747:32583029,34801737:0 +) +(1,23747:7613813,35666817:24969216,505283,134348 +k1,23747:10826637,35666817:184405 +k1,23747:11812532,35666817:184390 +k1,23747:15733710,35666817:184315 +k1,23747:16520957,35666817:184316 +k1,23747:21391753,35666817:184316 +k1,23747:24480712,35666817:184404 +k1,23747:27755706,35666817:184316 +k1,23747:29707617,35666817:184405 +k1,23747:30857307,35666817:184345 +k1,23747:31803151,35666817:184316 +k1,23747:32583029,35666817:0 +) +(1,23747:7613813,36531897:24969216,505283,134348 +k1,23747:9984315,36531897:247791 +k1,23747:11423552,36531897:247792 +k1,23747:12244225,36531897:247888 +k1,23747:14310277,36531897:248083 +k1,23747:18169248,36531897:247937 +k1,23747:21458153,36531897:248034 +k1,23747:24137330,36531897:247791 +k1,23747:26587932,36531897:247937 +k1,23747:27850974,36531897:247889 +k1,23747:30991160,36531897:248082 +k1,23747:32583029,36531897:0 +) +(1,23747:7613813,37396977:24969216,505283,126483 +g1,23747:12436607,37396977 +g1,23747:13808275,37396977 +g1,23747:14816874,37396977 +g1,23747:15610515,37396977 +k1,23747:32583029,37396977:15794832 +g1,23747:32583029,37396977 +) +(1,23747:7613813,38262057:24969216,530548,141067 +(1,23747:7613813,38262057:-983040,0,0 +g1,23747:6630773,38262057 +g1,23747:5320053,38262057 +g1,23747:4992373,38262057 +(1,23747:4992373,38262057:1310720,0,0 +k1,23747:6303093,38262057:1310720 +) +g1,23747:6630773,38262057 +) +k1,23747:9201252,38262057:255092 +k1,23747:9906521,38262057:255037 +k1,23747:12343474,38262057:255259 +k1,23747:16389001,38262057:254925 +k1,23747:17267507,38262057:255259 +k1,23747:18893068,38262057:255204 +$1,23747:18893068,38262057 +k1,23747:21028854,38262057:61076 +k1,23747:21504873,38262057:61077 +k1,23747:21980891,38262057:61076 +k1,23747:22456909,38262057:61076 +k1,23747:24177753,38262057:61076 +k1,23747:24653771,38262057:61076 +k1,23747:25129790,38262057:61077 +(1,23747:25544732,38360371:32768,0,0 +) +k1,23747:25638576,38262057:61076 +k1,23747:28604246,38262057:61076 +k1,23747:29080264,38262057:61076 +k1,23747:30386167,38262057:61077 +k1,23747:30862185,38262057:61076 +k1,23747:32168087,38262057:61076 +k1,23747:32583029,38262057:0 +) +(1,23747:7613813,39127137:24969216,530548,99779 +g1,23747:10518407,39127137 +g1,23747:10933349,39127137 +g1,23747:13008059,39127137 +(1,23747:13423001,39225451:32768,0,0 +) +g1,23747:13455769,39127137 +g1,23747:17190247,39127137 +g1,23747:17605189,39127137 +g1,23747:18435073,39127137 +g1,23747:18850015,39127137 +g1,23747:20924725,39127137 +g1,23747:21339667,39127137 +$1,23747:22999435,39127137 +g1,23747:23198664,39127137 +g1,23747:25719834,39127137 +g1,23747:26728433,39127137 +k1,23747:32583029,39127137:1615072 +g1,23747:32583029,39127137 +) +(1,23747:7613813,39992217:24969216,513147,134348 +(1,23747:7613813,39992217:-983040,0,0 +g1,23747:6630773,39992217 +g1,23747:5320053,39992217 +g1,23747:4992373,39992217 +(1,23747:4992373,39992217:1310720,0,0 +k1,23747:6303093,39992217:1310720 +) +g1,23747:6630773,39992217 +) +k1,23747:9226018,39992217:159927 +k1,23747:10051752,39992217:159888 +k1,23747:12393491,39992217:160045 +k1,23747:13740812,39992217:159809 +k1,23747:14930847,39992217:159809 +k1,23747:15706694,39992217:159809 +k1,23747:16316080,39992217:159809 +k1,23747:21040013,39992217:160006 +k1,23747:21689376,39992217:159809 +k1,23747:23371586,39992217:159809 +k1,23747:24147433,39992217:159809 +k1,23747:27337627,39992217:159809 +k1,23747:30279439,39992217:159809 +k1,23747:32583029,39992217:0 +) +(1,23747:7613813,40857297:24969216,505283,126483 +g1,23747:8699744,40857297 +g1,23747:10903719,40857297 +g1,23747:12948442,40857297 +g1,23747:13742083,40857297 +g1,23747:15310359,40857297 +g1,23747:17101457,40857297 +g1,23747:21285275,40857297 +g1,23747:22656943,40857297 +g1,23747:23665542,40857297 +g1,23747:24879924,40857297 +g1,23747:26049741,40857297 +g1,23747:27618017,40857297 +g1,23747:29186293,40857297 +k1,23747:32583029,40857297:1820595 +g1,23747:32583029,40857297 +) +(1,23747:7613813,41722377:24969216,505283,126483 +(1,23747:7613813,41722377:-983040,0,0 +g1,23747:6630773,41722377 +g1,23747:5320053,41722377 +g1,23747:4992373,41722377 +(1,23747:4992373,41722377:1310720,0,0 +k1,23747:6303093,41722377:1310720 +) +g1,23747:6630773,41722377 +) +k1,23747:9467578,41722377:350369 +k1,23747:10366989,41722377:350219 +k1,23747:12899504,41722377:350821 +k1,23747:13698999,41722377:349918 +k1,23747:17034329,41722377:350821 +k1,23747:18618291,41722377:349919 +k1,23747:19910864,41722377:350821 +k1,23747:23298376,41722377:349918 +k1,23747:24839739,41722377:349918 +k1,23747:28326661,41722377:350369 +k1,23747:29271292,41722377:350219 +k1,23747:30991160,41722377:350821 +k1,23747:32583029,41722377:0 +) +(1,23747:7613813,42587457:24969216,505283,126483 +g1,23747:11797631,42587457 +g1,23747:13169299,42587457 +g1,23747:14177898,42587457 +g1,23747:14971539,42587457 +k1,23747:32583029,42587457:16035349 +g1,23747:32583029,42587457 +) +(1,23747:7613813,43452537:24969216,505283,126483 +(1,23747:7613813,43452537:-983040,0,0 +g1,23747:6630773,43452537 +g1,23747:5320053,43452537 +g1,23747:4992373,43452537 +(1,23747:4992373,43452537:1310720,0,0 +k1,23747:6303093,43452537:1310720 +) +g1,23747:6630773,43452537 +) +(1,23747:6630773,43452537:983040,211026,0 +k1,23747:7613813,43452537:327680 +) +k1,23747:10091285,43452537:295778 +k1,23747:10836065,43452537:295203 +k1,23747:14116351,43452537:295777 +k1,23747:15519112,43452537:295203 +k1,23747:16756642,43452537:295778 +k1,23747:19937874,43452537:295682 +k1,23747:23270671,43452537:295203 +k1,23747:24757319,43452537:295203 +k1,23747:28189650,43452537:295778 +k1,23747:29680229,43452537:295202 +k1,23747:30991160,43452537:295778 +k1,23747:32583029,43452537:0 +) +(1,23747:7613813,44317617:24969216,505283,126483 +g1,23747:11797631,44317617 +g1,23747:13169299,44317617 +g1,23747:14177898,44317617 +g1,23747:15392280,44317617 +g1,23747:16960556,44317617 +k1,23747:32583029,44317617:14046332 +g1,23747:32583029,44317617 +) +] +(1,23747:32583029,45706769:0,0,0 +g1,23747:32583029,45706769 +) +) +] +(1,23747:6630773,47279633:25952256,0,0 +h1,23747:6630773,47279633:25952256,0,0 +) +] +(1,23747:4262630,4025873:0,0,0 +[1,23747:-473656,4025873:0,0,0 +(1,23747:-473656,-710413:0,0,0 +(1,23747:-473656,-710413:0,0,0 +g1,23747:-473656,-710413 +) +g1,23747:-473656,-710413 +) +] +) +] +!27093 +}411 +!12 +{412 +[1,23748:4262630,47279633:28320399,43253760,0 +(1,23748:4262630,4025873:0,0,0 +[1,23748:-473656,4025873:0,0,0 +(1,23748:-473656,-710413:0,0,0 +(1,23748:-473656,-644877:0,0,0 +k1,23748:-473656,-644877:-65536 +) +(1,23748:-473656,4736287:0,0,0 +k1,23748:-473656,4736287:5209943 +) +g1,23748:-473656,-710413 ) ] -[1,23531:3078558,4812305:0,0,0 -(1,23531:3078558,49800853:0,16384,2228224 -k1,23531:1358238,49800853:-1720320 -(1,23531:1358238,49800853:1720320,16384,2228224 -(1,23531:1358238,49800853:1179648,16384,0 -r1,23531:2537886,49800853:1179648,16384,0 ) -g1,23531:3062174,49800853 -(1,23531:3062174,52029077:16384,1703936,0 -[1,23531:3062174,52029077:25952256,1703936,0 -(1,23531:3062174,51504789:25952256,1179648,0 -(1,23531:3062174,51504789:16384,1179648,0 -r1,23531:3078558,51504789:16384,1179648,0 +[1,23748:6630773,47279633:25952256,43253760,0 +[1,23748:6630773,4812305:25952256,786432,0 +(1,23748:6630773,4812305:25952256,505283,134348 +(1,23748:6630773,4812305:25952256,505283,134348 +g1,23748:3078558,4812305 +[1,23748:3078558,4812305:0,0,0 +(1,23748:3078558,2439708:0,1703936,0 +k1,23748:1358238,2439708:-1720320 +(1,21670:1358238,2439708:1720320,1703936,0 +(1,21670:1358238,2439708:1179648,16384,0 +r1,23748:2537886,2439708:1179648,16384,0 +) +g1,21670:3062174,2439708 +(1,21670:3062174,2439708:16384,1703936,0 +[1,21670:3062174,2439708:25952256,1703936,0 +(1,21670:3062174,1915420:25952256,1179648,0 +(1,21670:3062174,1915420:16384,1179648,0 +r1,23748:3078558,1915420:16384,1179648,0 ) -k1,23531:29014430,51504789:25935872 -g1,23531:29014430,51504789 +k1,21670:29014430,1915420:25935872 +g1,21670:29014430,1915420 ) ] ) ) ) ] -[1,23531:3078558,4812305:0,0,0 -(1,23531:3078558,49800853:0,16384,2228224 -g1,23531:29030814,49800853 -g1,23531:36135244,49800853 -(1,23531:36135244,49800853:1720320,16384,2228224 -(1,23531:36135244,52029077:16384,1703936,0 -[1,23531:36135244,52029077:25952256,1703936,0 -(1,23531:36135244,51504789:25952256,1179648,0 -(1,23531:36135244,51504789:16384,1179648,0 -r1,23531:36151628,51504789:16384,1179648,0 +[1,23748:3078558,4812305:0,0,0 +(1,23748:3078558,2439708:0,1703936,0 +g1,23748:29030814,2439708 +g1,23748:36135244,2439708 +(1,21670:36135244,2439708:1720320,1703936,0 +(1,21670:36135244,2439708:16384,1703936,0 +[1,21670:36135244,2439708:25952256,1703936,0 +(1,21670:36135244,1915420:25952256,1179648,0 +(1,21670:36135244,1915420:16384,1179648,0 +r1,23748:36151628,1915420:16384,1179648,0 ) -k1,23531:62087500,51504789:25935872 -g1,23531:62087500,51504789 +k1,21670:62087500,1915420:25935872 +g1,21670:62087500,1915420 ) ] ) -g1,23531:36675916,49800853 -(1,23531:36675916,49800853:1179648,16384,0 -r1,23531:37855564,49800853:1179648,16384,0 -) +g1,21670:36675916,2439708 +(1,21670:36675916,2439708:1179648,16384,0 +r1,23748:37855564,2439708:1179648,16384,0 ) -k1,23531:3078556,49800853:-34777008 -) -] -g1,23531:6630773,4812305 ) +k1,23748:3078556,2439708:-34777008 ) ] -[1,23531:6630773,45706769:0,40108032,0 -(1,23531:6630773,45706769:0,40108032,0 -(1,23531:6630773,45706769:0,0,0 -g1,23531:6630773,45706769 +[1,23748:3078558,4812305:0,0,0 +(1,23748:3078558,49800853:0,16384,2228224 +k1,23748:1358238,49800853:-1720320 +(1,21670:1358238,49800853:1720320,16384,2228224 +(1,21670:1358238,49800853:1179648,16384,0 +r1,23748:2537886,49800853:1179648,16384,0 ) -[1,23531:6630773,45706769:0,40108032,0 -h1,23531:6630773,6254097:0,0,0 -] -(1,23531:6630773,45706769:0,0,0 -g1,23531:6630773,45706769 +g1,21670:3062174,49800853 +(1,21670:3062174,52029077:16384,1703936,0 +[1,21670:3062174,52029077:25952256,1703936,0 +(1,21670:3062174,51504789:25952256,1179648,0 +(1,21670:3062174,51504789:16384,1179648,0 +r1,23748:3078558,51504789:16384,1179648,0 ) +k1,21670:29014430,51504789:25935872 +g1,21670:29014430,51504789 ) ] -(1,23531:6630773,47279633:25952256,0,0 -h1,23531:6630773,47279633:25952256,0,0 ) -] -(1,23531:4262630,4025873:0,0,0 -[1,23531:-473656,4025873:0,0,0 -(1,23531:-473656,-710413:0,0,0 -(1,23531:-473656,-710413:0,0,0 -g1,23531:-473656,-710413 ) -g1,23531:-473656,-710413 ) ] +[1,23748:3078558,4812305:0,0,0 +(1,23748:3078558,49800853:0,16384,2228224 +g1,23748:29030814,49800853 +g1,23748:36135244,49800853 +(1,21670:36135244,49800853:1720320,16384,2228224 +(1,21670:36135244,52029077:16384,1703936,0 +[1,21670:36135244,52029077:25952256,1703936,0 +(1,21670:36135244,51504789:25952256,1179648,0 +(1,21670:36135244,51504789:16384,1179648,0 +r1,23748:36151628,51504789:16384,1179648,0 +) +k1,21670:62087500,51504789:25935872 +g1,21670:62087500,51504789 +) +] +) +g1,21670:36675916,49800853 +(1,21670:36675916,49800853:1179648,16384,0 +r1,23748:37855564,49800853:1179648,16384,0 +) +) +k1,23748:3078556,49800853:-34777008 +) +] +g1,23748:6630773,4812305 +g1,23748:6630773,4812305 +g1,23748:10831630,4812305 +k1,23748:31387652,4812305:20556022 +) +) +] +[1,23748:6630773,45706769:25952256,40108032,0 +(1,23748:6630773,45706769:25952256,40108032,0 +(1,23748:6630773,45706769:0,0,0 +g1,23748:6630773,45706769 +) +[1,23748:6630773,45706769:25952256,40108032,0 +(1,23747:7613813,6254097:24969216,505283,134348 +(1,23747:7613813,6254097:-983040,0,0 +g1,23747:6630773,6254097 +g1,23747:5320053,6254097 +g1,23747:4992373,6254097 +(1,23747:4992373,6254097:1310720,0,0 +k1,23747:6303093,6254097:1310720 +) +g1,23747:6630773,6254097 +) +k1,23747:9760477,6254097:204832 +k1,23747:10594450,6254097:204827 +k1,23747:11990711,6254097:204816 +k1,23747:12768323,6254097:204827 +k1,23747:16380355,6254097:204815 +k1,23747:18245853,6254097:204816 +k1,23747:19022814,6254097:204832 +k1,23747:21202263,6254097:204849 +k1,23747:24238890,6254097:204816 +k1,23747:25429367,6254097:204816 +k1,23747:27125126,6254097:204815 +k1,23747:28995244,6254097:204849 +k1,23747:31647830,6254097:204816 +k1,23747:32583029,6254097:0 +) +(1,23747:7613813,7119177:24969216,505283,126483 +g1,23747:9029390,7119177 +g1,23747:10423996,7119177 +g1,23747:11638378,7119177 +g1,23747:13429476,7119177 +g1,23747:17613294,7119177 +g1,23747:18984962,7119177 +g1,23747:19993561,7119177 +g1,23747:20787202,7119177 +k1,23747:32583029,7119177:10618145 +g1,23747:32583029,7119177 +) +(1,23747:7613813,7984257:24969216,530548,134348 +(1,23747:7613813,7984257:-983040,0,0 +g1,23747:6630773,7984257 +g1,23747:5320053,7984257 +g1,23747:4992373,7984257 +(1,23747:4992373,7984257:1310720,0,0 +k1,23747:6303093,7984257:1310720 +) +g1,23747:6630773,7984257 +) +k1,23747:8475928,7984257:159569 +k1,23747:9254117,7984257:159529 +k1,23747:10090633,7984257:159529 +k1,23747:12432015,7984257:159688 +k1,23747:13041041,7984257:159449 +k1,23747:17590748,7984257:159450 +k1,23747:18674256,7984257:159450 +k1,23747:20367903,7984257:159449 +k1,23747:22981259,7984257:159688 +k1,23747:26033705,7984257:159687 +k1,23747:27388532,7984257:159450 +k1,23747:28563372,7984257:159687 +k1,23747:30093377,7984257:159648 +$1,23747:30093377,7984257 +k1,23747:32168087,7984257:0 +k1,23747:32583029,7984257:0 +) +(1,23747:7613813,8849337:24969216,530548,141067 +k1,23747:8032749,8849337:3994 +k1,23747:8451685,8849337:3994 +k1,23747:11360274,8849337:3995 +k1,23747:11779210,8849337:3994 +k1,23747:13028030,8849337:3994 +k1,23747:13446966,8849337:3994 +$1,23747:18426270,8849337 +k1,23747:18629142,8849337:202872 +k1,23747:21153954,8849337:202871 +k1,23747:22166196,8849337:202872 +k1,23747:26434921,8849337:202871 +k1,23747:27810239,8849337:202879 +k1,23747:28822480,8849337:202871 +k1,23747:30040512,8849337:202879 +k1,23747:31213982,8849337:202882 +k1,23747:32583029,8849337:0 +) +(1,23747:7613813,9714417:24969216,505283,95026 +k1,23747:32583030,9714417:23393076 +g1,23747:32583030,9714417 +) +(1,23747:7613813,10579497:24969216,513147,126483 +(1,23747:7613813,10579497:-983040,0,0 +g1,23747:6630773,10579497 +g1,23747:5320053,10579497 +g1,23747:4992373,10579497 +(1,23747:4992373,10579497:1310720,0,0 +k1,23747:6303093,10579497:1310720 +) +g1,23747:6630773,10579497 +) +k1,23747:9716403,10579497:274135 +k1,23747:10440696,10579497:274061 +k1,23747:11343902,10579497:274060 +k1,23747:12809259,10579497:273912 +k1,23747:13760306,10579497:274060 +k1,23747:14771647,10579497:274061 +k1,23747:16735077,10579497:273912 +k1,23747:19191130,10579497:274359 +k1,23747:23521064,10579497:273911 +k1,23747:25944557,10579497:273912 +k1,23747:26821399,10579497:273911 +k1,23747:27455104,10579497:273912 +k1,23747:28939465,10579497:273911 +k1,23747:31222502,10579497:274359 +k1,23747:32583029,10579497:0 +) +(1,23747:7613813,11444577:24969216,505283,134348 +g1,23747:9506492,11444577 +g1,23747:12395974,11444577 +g1,23747:13767642,11444577 +g1,23747:14776241,11444577 +g1,23747:15990623,11444577 +g1,23747:17558899,11444577 +k1,23747:32583029,11444577:13447989 +g1,23747:32583029,11444577 +) +(1,23747:7613813,12309657:24969216,505283,134348 +(1,23747:7613813,12309657:-983040,0,0 +g1,23747:6630773,12309657 +g1,23747:5320053,12309657 +g1,23747:4992373,12309657 +(1,23747:4992373,12309657:1310720,0,0 +k1,23747:6303093,12309657:1310720 +) +g1,23747:6630773,12309657 +) +k1,23747:9506865,12309657:234336 +k1,23747:10191399,12309657:234302 +k1,23747:12607534,12309657:234441 +k1,23747:16138882,12309657:234232 +k1,23747:17907312,12309657:234232 +k1,23747:20764295,12309657:234232 +k1,23747:22361675,12309657:234231 +k1,23747:23045484,12309657:234232 +k1,23747:24490166,12309657:234232 +k1,23747:27650789,12309657:234441 +k1,23747:32583029,12309657:0 +) +(1,23747:7613813,13174737:24969216,505283,126483 +g1,23747:9173569,13174737 +g1,23747:11066248,13174737 +g1,23747:11859889,13174737 +g1,23747:13428165,13174737 +g1,23747:15219263,13174737 +g1,23747:20598458,13174737 +g1,23747:21970126,13174737 +g1,23747:22978725,13174737 +g1,23747:23772366,13174737 +k1,23747:32583029,13174737:7234522 +g1,23747:32583029,13174737 +) +(1,23747:7613813,14039817:24969216,505283,134348 +(1,23747:7613813,14039817:-983040,0,0 +g1,23747:6630773,14039817 +g1,23747:5320053,14039817 +g1,23747:4992373,14039817 +(1,23747:4992373,14039817:1310720,0,0 +k1,23747:6303093,14039817:1310720 +) +g1,23747:6630773,14039817 +) +k1,23747:9062288,14039817:221641 +k1,23747:9960893,14039817:221618 +k1,23747:12364295,14039817:221708 +k1,23747:14846318,14039817:221686 +k1,23747:18891262,14039817:221574 +k1,23747:20647034,14039817:221574 +k1,23747:24918733,14039817:221574 +k1,23747:26503456,14039817:221574 +k1,23747:27348411,14039817:221708 +k1,23747:28555646,14039817:221574 +k1,23747:29719106,14039817:221708 +k1,23747:32583029,14039817:0 +) +(1,23747:7613813,14904897:24969216,505283,126483 +g1,23747:8407454,14904897 +g1,23747:9975730,14904897 +g1,23747:11766828,14904897 +g1,23747:15950646,14904897 +g1,23747:17322314,14904897 +g1,23747:18330913,14904897 +g1,23747:19545295,14904897 +g1,23747:21113571,14904897 +g1,23747:22681847,14904897 +k1,23747:32583029,14904897:8325041 +g1,23747:32583029,14904897 +) +(1,23747:7613813,15769977:24969216,513147,134348 +(1,23747:7613813,15769977:-983040,0,0 +g1,23747:6630773,15769977 +g1,23747:5320053,15769977 +g1,23747:4992373,15769977 +(1,23747:4992373,15769977:1310720,0,0 +k1,23747:6303093,15769977:1310720 +) +g1,23747:6630773,15769977 +) +k1,23747:8882183,15769977:229624 +k1,23747:9790729,15769977:229593 +k1,23747:10553131,15769977:229594 +k1,23747:12964539,15769977:229714 +k1,23747:13264681,15769977:-13 +k1,23747:13264694,15769977:13 +k1,23747:17951331,15769977:229533 +k1,23747:18840156,15769977:229533 +k1,23747:21843173,15769977:229533 +k1,23747:25217123,15769977:229533 +k1,23747:27514972,15769977:229533 +k1,23747:28935950,15769977:229533 +k1,23747:32583029,15769977:0 +) +(1,23747:7613813,16635057:24969216,513147,126483 +g1,23747:8429080,16635057 +g1,23747:11182902,16635057 +g1,23747:12041423,16635057 +g1,23747:16096790,16635057 +g1,23747:17097524,16635057 +g1,23747:20568966,16635057 +g1,23747:21738783,16635057 +g1,23747:22953165,16635057 +g1,23747:25870828,16635057 +g1,23747:27242496,16635057 +g1,23747:28251095,16635057 +g1,23747:29044736,16635057 +k1,23747:32583029,16635057:1962152 +g1,23747:32583029,16635057 +) +(1,23747:7613813,17500137:24969216,513147,126483 +(1,23747:7613813,17500137:-983040,0,0 +g1,23747:6630773,17500137 +g1,23747:5320053,17500137 +g1,23747:4992373,17500137 +(1,23747:4992373,17500137:1310720,0,0 +k1,23747:6303093,17500137:1310720 +) +g1,23747:6630773,17500137 +) +k1,23747:8774329,17500137:251532 +k1,23747:9570412,17500137:251479 +k1,23747:10440552,17500137:251480 +k1,23747:12873934,17500137:251688 +k1,23747:14312822,17500137:251376 +k1,23747:16472605,17500137:251375 +k1,23747:19058373,17500137:251376 +k1,23747:19925787,17500137:251376 +k1,23747:24098836,17500137:251375 +k1,23747:28294480,17500137:251688 +k1,23747:31519380,17500137:251532 +k1,23747:32583029,17500137:0 +) +(1,23747:7613813,18365217:24969216,505283,126483 +g1,23747:10637644,18365217 +g1,23747:12682367,18365217 +g1,23747:14076973,18365217 +g1,23747:15291355,18365217 +g1,23747:17082453,18365217 +g1,23747:21937360,18365217 +g1,23747:23309028,18365217 +g1,23747:24317627,18365217 +g1,23747:25111268,18365217 +k1,23747:32583029,18365217:5895620 +g1,23747:32583029,18365217 +) +(1,23747:7613813,19230297:24969216,505283,126483 +(1,23747:7613813,19230297:-983040,0,0 +g1,23747:6630773,19230297 +g1,23747:5320053,19230297 +g1,23747:4992373,19230297 +(1,23747:4992373,19230297:1310720,0,0 +k1,23747:6303093,19230297:1310720 +) +g1,23747:6630773,19230297 +) +k1,23747:9866757,19230297:202978 +k1,23747:10849609,19230297:202974 +k1,23747:11718429,19230297:202974 +k1,23747:13112840,19230297:202966 +k1,23747:13888599,19230297:202974 +k1,23747:14768560,19230297:202974 +k1,23747:16952025,19230297:202967 +k1,23747:19336708,19230297:202989 +k1,23747:21933049,19230297:202966 +k1,23747:24539221,19230297:202967 +k1,23747:27473073,19230297:202967 +k1,23747:29039188,19230297:202966 +k1,23747:29775640,19230297:202989 +k1,23747:31222502,19230297:202989 +k1,23747:32583029,19230297:0 +) +(1,23747:7613813,20095377:24969216,505283,134348 +g1,23747:9506492,20095377 +g1,23747:12569644,20095377 +g1,23747:14360742,20095377 +g1,23747:19183536,20095377 +g1,23747:20555204,20095377 +g1,23747:21563803,20095377 +g1,23747:22778185,20095377 +g1,23747:24346461,20095377 +k1,23747:32583029,20095377:6660427 +g1,23747:32583029,20095377 +) +(1,23747:7613813,20960457:24969216,505283,134348 +(1,23747:7613813,20960457:-983040,0,0 +g1,23747:6630773,20960457 +g1,23747:5320053,20960457 +g1,23747:4992373,20960457 +(1,23747:4992373,20960457:1310720,0,0 +k1,23747:6303093,20960457:1310720 +) +g1,23747:6630773,20960457 +) +k1,23747:10050834,20960457:322174 +k1,23747:11051840,20960457:322053 +k1,23747:13556076,20960457:322542 +k1,23747:14327460,20960457:321807 +k1,23747:17708567,20960457:322542 +k1,23747:20478145,20960457:321808 +k1,23747:22863105,20960457:322542 +k1,23747:24777394,20960457:322420 +k1,23747:30279168,20960457:321808 +k1,23747:31773659,20960457:322052 +k1,23747:32583029,20960457:0 +) +(1,23747:7613813,21825537:24969216,505283,126483 +g1,23747:8828195,21825537 +g1,23747:10396471,21825537 +k1,23747:32583028,21825537:20610416 +g1,23747:32583028,21825537 +) +(1,23747:7613813,22690617:24969216,505283,126483 +(1,23747:7613813,22690617:-983040,0,0 +g1,23747:6630773,22690617 +g1,23747:5320053,22690617 +g1,23747:4992373,22690617 +(1,23747:4992373,22690617:1310720,0,0 +k1,23747:6303093,22690617:1310720 +) +g1,23747:6630773,22690617 +) +k1,23747:9970655,22690617:241995 +k1,23747:10891560,22690617:241952 +k1,23747:13315377,22690617:242123 +k1,23747:16680035,22690617:241867 +k1,23747:17545405,22690617:242123 +k1,23747:19021316,22690617:241868 +k1,23747:20205190,22690617:242122 +k1,23747:23484652,22690617:241868 +k1,23747:24917964,22690617:241867 +k1,23747:28296640,22690617:242123 +k1,23747:29733884,22690617:241867 +k1,23747:30991160,22690617:242123 +k1,23747:32583029,22690617:0 +) +(1,23747:7613813,23555697:24969216,505283,126483 +g1,23747:11797631,23555697 +g1,23747:13169299,23555697 +g1,23747:14177898,23555697 +g1,23747:15392280,23555697 +g1,23747:16960556,23555697 +k1,23747:32583029,23555697:14046332 +g1,23747:32583029,23555697 +) +(1,23747:7613813,24420777:24969216,513147,126483 +(1,23747:7613813,24420777:-983040,0,0 +g1,23747:6630773,24420777 +g1,23747:5320053,24420777 +g1,23747:4992373,24420777 +(1,23747:4992373,24420777:1310720,0,0 +k1,23747:6303093,24420777:1310720 +) +g1,23747:6630773,24420777 +) +k1,23747:10082988,24420777:354328 +k1,23747:11289940,24420777:354329 +k1,23747:12381395,24420777:354175 +k1,23747:18511411,24420777:354328 +k1,23747:20056722,24420777:353866 +k1,23747:21064291,24420777:354175 +k1,23747:25003632,24420777:353866 +k1,23747:27540118,24420777:354792 +k1,23747:28343561,24420777:353866 +k1,23747:29621485,24420777:353866 +k1,23747:31509549,24420777:353866 +k1,23747:32583029,24420777:0 +) +(1,23747:7613813,25285857:24969216,513147,126483 +k1,23747:9409927,25285857:210798 +k1,23747:11932146,25285857:210764 +k1,23747:13704633,25285857:210764 +k1,23747:17474657,25285857:210764 +k1,23747:20647647,25285857:210763 +k1,23747:22068827,25285857:210730 +k1,23747:24140778,25285857:210729 +k1,23747:26059444,25285857:210798 +k1,23747:28717944,25285857:210730 +k1,23747:30991160,25285857:210798 +k1,23747:32583029,25285857:0 +) +(1,23747:7613813,26150937:24969216,505283,126483 +g1,23747:12993008,26150937 +g1,23747:14364676,26150937 +g1,23747:15373275,26150937 +g1,23747:16166916,26150937 +k1,23747:32583029,26150937:14839972 +g1,23747:32583029,26150937 +) +(1,23747:7613813,27016017:24969216,513147,126483 +(1,23747:7613813,27016017:-983040,0,0 +g1,23747:6630773,27016017 +g1,23747:5320053,27016017 +g1,23747:4992373,27016017 +(1,23747:4992373,27016017:1310720,0,0 +k1,23747:6303093,27016017:1310720 +) +g1,23747:6630773,27016017 +) +k1,23747:9960289,27016017:231629 +k1,23747:10870838,27016017:231596 +k1,23747:12293815,27016017:231532 +k1,23747:13178805,27016017:231596 +k1,23747:16995812,27016017:231532 +k1,23747:19409232,27016017:231726 +k1,23747:20090341,27016017:231532 +k1,23747:21245930,27016017:231531 +k1,23747:23011660,27016017:231532 +k1,23747:25697054,27016017:231726 +k1,23747:28376356,27016017:231532 +k1,23747:29543087,27016017:231532 +k1,23747:30991160,27016017:231725 +k1,23747:32583029,27016017:0 +) +(1,23747:7613813,27881097:24969216,505283,126483 +g1,23747:11797631,27881097 +g1,23747:13169299,27881097 +g1,23747:14177898,27881097 +g1,23747:14971539,27881097 +k1,23747:32583029,27881097:16035349 +g1,23747:32583029,27881097 +) +(1,23747:7613813,28746177:24969216,513147,134348 +(1,23747:7613813,28746177:-983040,0,0 +g1,23747:6630773,28746177 +g1,23747:5320053,28746177 +g1,23747:4992373,28746177 +(1,23747:4992373,28746177:1310720,0,0 +k1,23747:6303093,28746177:1310720 +) +g1,23747:6630773,28746177 +) +k1,23747:10007355,28746177:278695 +k1,23747:10964924,28746177:278616 +k1,23747:12434827,28746177:278458 +k1,23747:13342589,28746177:278616 +k1,23747:15774560,28746177:278458 +k1,23747:18235187,28746177:278933 +k1,23747:21062736,28746177:278854 +k1,23747:23682139,28746177:278457 +k1,23747:26771436,28746177:278458 +k1,23747:27973952,28746177:278458 +k1,23747:29786608,28746177:278458 +k1,23747:32583029,28746177:0 +) +(1,23747:7613813,29611257:24969216,505283,134348 +k1,23747:9014133,29611257:166277 +k1,23747:10122359,29611257:166474 +k1,23747:13152757,29611257:166475 +k1,23747:14420694,29611257:166277 +k1,23747:15155168,29611257:166277 +k1,23747:16690689,29611257:166474 +k1,23747:18448999,29611257:166441 +k1,23747:24647211,29611257:166278 +k1,23747:25985993,29611257:166343 +k1,23747:26961640,29611257:166277 +k1,23747:28143136,29611257:166343 +k1,23747:29678559,29611257:166376 +k1,23747:31213982,29611257:166376 +k1,23747:32583029,29611257:0 +) +(1,23747:7613813,30476337:24969216,505283,95026 +k1,23747:32583030,30476337:23393076 +g1,23747:32583030,30476337 +) +(1,23747:7613813,31341417:24969216,513147,134348 +(1,23747:7613813,31341417:-983040,0,0 +g1,23747:6630773,31341417 +g1,23747:5320053,31341417 +g1,23747:4992373,31341417 +(1,23747:4992373,31341417:1310720,0,0 +k1,23747:6303093,31341417:1310720 +) +g1,23747:6630773,31341417 +) +k1,23747:8897826,31341417:325877 +k1,23747:9889424,31341417:325752 +k1,23747:12397374,31341417:326256 +k1,23747:16213977,31341417:325500 +k1,23747:17107673,31341417:325499 +k1,23747:18967370,31341417:325499 +k1,23747:22506756,31341417:325500 +k1,23747:23400452,31341417:325499 +k1,23747:26962876,31341417:326257 +k1,23747:30731637,31341417:325499 +k1,23747:32583029,31341417:0 +) +(1,23747:7613813,32206497:24969216,505283,126483 +g1,23747:12036182,32206497 +g1,23747:12829823,32206497 +k1,23747:32583030,32206497:18384160 +g1,23747:32583030,32206497 +) +(1,23747:7613813,33071577:24969216,505283,126483 +(1,23747:7613813,33071577:-983040,0,0 +g1,23747:6630773,33071577 +g1,23747:5320053,33071577 +g1,23747:4992373,33071577 +(1,23747:4992373,33071577:1310720,0,0 +k1,23747:6303093,33071577:1310720 +) +g1,23747:6630773,33071577 +) +k1,23747:8831480,33071577:211034 +k1,23747:9571379,33071577:211023 +k1,23747:10448247,33071577:211022 +k1,23747:12841010,33071577:211069 +k1,23747:16814431,33071577:210999 +k1,23747:19628520,33071577:210999 +k1,23747:22162841,33071577:211070 +k1,23747:25411434,33071577:210999 +k1,23747:26813878,33071577:210999 +k1,23747:30161500,33071577:211069 +k1,23747:31567876,33071577:210999 +k1,23747:32583029,33071577:0 +) +(1,23747:7613813,33936657:24969216,505283,126483 +g1,23747:9404911,33936657 +g1,23747:13588729,33936657 +g1,23747:14960397,33936657 +g1,23747:15968996,33936657 +g1,23747:17183378,33936657 +g1,23747:18751654,33936657 +k1,23747:32583029,33936657:12255234 +g1,23747:32583029,33936657 +) +(1,23747:7613813,34801737:24969216,505283,126483 +(1,23747:7613813,34801737:-983040,0,0 +g1,23747:6630773,34801737 +g1,23747:5320053,34801737 +g1,23747:4992373,34801737 +(1,23747:4992373,34801737:1310720,0,0 +k1,23747:6303093,34801737:1310720 +) +g1,23747:6630773,34801737 +) +k1,23747:8019929,34801737:236378 +k1,23747:8874275,34801737:236341 +k1,23747:11292459,34801737:236490 +k1,23747:14338254,34801737:236267 +k1,23747:18070867,34801737:236267 +k1,23747:19670284,34801737:236268 +k1,23747:20356128,34801737:236267 +k1,23747:21802845,34801737:236267 +k1,23747:23723610,34801737:236490 +k1,23747:25156564,34801737:236267 +k1,23747:25837820,34801737:236267 +k1,23747:28117723,34801737:236490 +k1,23747:31391584,34801737:236267 +k1,23747:32583029,34801737:0 +) +(1,23747:7613813,35666817:24969216,505283,126483 +g1,23747:10949595,35666817 +g1,23747:11743236,35666817 +g1,23747:13311512,35666817 +g1,23747:15102610,35666817 +g1,23747:19286428,35666817 +g1,23747:20658096,35666817 +g1,23747:21666695,35666817 +g1,23747:22881077,35666817 +g1,23747:24050894,35666817 +g1,23747:25220711,35666817 +k1,23747:32583029,35666817:5786177 +g1,23747:32583029,35666817 +) +(1,23747:7613813,36531897:24969216,505283,134348 +(1,23747:7613813,36531897:-983040,0,0 +g1,23747:6630773,36531897 +g1,23747:5320053,36531897 +g1,23747:4992373,36531897 +(1,23747:4992373,36531897:1310720,0,0 +k1,23747:6303093,36531897:1310720 +) +g1,23747:6630773,36531897 +) +(1,23747:6630773,36531897:983040,211026,0 +k1,23747:7613813,36531897:327680 +) +k1,23747:9945891,36531897:150384 +k1,23747:13468053,36531897:150335 +k1,23747:16839238,36531897:150090 +k1,23747:18775840,36531897:150091 +k1,23747:20136380,36531897:150090 +k1,23747:23303092,36531897:150090 +k1,23747:26949528,36531897:150090 +k1,23747:28462768,36531897:150091 +k1,23747:29062435,36531897:150090 +k1,23747:32583029,36531897:0 +) +(1,23747:7613813,37396977:24969216,505283,126483 +g1,23747:10850636,37396977 +g1,23747:12241310,37396977 +g1,23747:15577092,37396977 +g1,23747:17368190,37396977 +g1,23747:22747385,37396977 +g1,23747:24119053,37396977 +g1,23747:25127652,37396977 +g1,23747:25921293,37396977 +k1,23747:32583029,37396977:5085595 +g1,23747:32583029,37396977 +) +(1,23747:7613813,38262057:24969216,505283,126483 +(1,23747:7613813,38262057:-983040,0,0 +g1,23747:6630773,38262057 +g1,23747:5320053,38262057 +g1,23747:4992373,38262057 +(1,23747:4992373,38262057:1310720,0,0 +k1,23747:6303093,38262057:1310720 +) +g1,23747:6630773,38262057 +) +k1,23747:7929393,38262057:145842 +k1,23747:8866909,38262057:145841 +k1,23747:9462930,38262057:145789 +k1,23747:10058950,38262057:145788 +k1,23747:12469061,38262057:145842 +k1,23747:13806187,38262057:145681 +k1,23747:14605370,38262057:145789 +k1,23747:18336526,38262057:145681 +k1,23747:20664221,38262057:146001 +k1,23747:21259479,38262057:145681 +k1,23747:24926075,38262057:146002 +k1,23747:28109350,38262057:145681 +k1,23747:29446476,38262057:145681 +k1,23747:32583029,38262057:0 +) +(1,23747:7613813,39127137:24969216,505283,126483 +g1,23747:9008419,39127137 +g1,23747:10222801,39127137 +g1,23747:12013899,39127137 +g1,23747:16197717,39127137 +g1,23747:17569385,39127137 +g1,23747:18577984,39127137 +g1,23747:19371625,39127137 +k1,23747:32583029,39127137:11635263 +g1,23747:32583029,39127137 +) +(1,23747:7613813,39992217:24969216,513147,126483 +(1,23747:7613813,39992217:-983040,0,0 +g1,23747:6630773,39992217 +g1,23747:5320053,39992217 +g1,23747:4992373,39992217 +(1,23747:4992373,39992217:1310720,0,0 +k1,23747:6303093,39992217:1310720 +) +g1,23747:6630773,39992217 +) +k1,23747:9359159,39992217:386129 +k1,23747:10482384,39992217:385945 +k1,23747:12059401,39992217:385572 +k1,23747:13074491,39992217:385944 +k1,23747:15694185,39992217:385572 +k1,23747:17560587,39992217:385944 +k1,23747:19921876,39992217:386689 +k1,23747:20222018,39992217:-13 +k1,23747:20222031,39992217:13 +k1,23747:21510034,39992217:385572 +k1,23747:24842760,39992217:385572 +k1,23747:26622283,39992217:385572 +k1,23747:29385501,39992217:385572 +k1,23747:30390850,39992217:386689 +k1,23747:32583029,39992217:0 +) +(1,23747:7613813,40857297:24969216,530548,126483 +k1,23747:8732686,40857297:317368 +k1,23747:12066088,40857297:316780 +k1,23747:17391129,40857297:316780 +k1,23747:20820869,40857297:316780 +k1,23747:22680718,40857297:317131 +k1,23747:24012886,40857297:317015 +k1,23747:27222475,40857297:317485 +k1,23747:28876776,40857297:317367 +$1,23747:28876776,40857297 +k1,23747:29835566,40857297:128906 +k1,23747:30379413,40857297:128905 +k1,23747:32168087,40857297:128906 +k1,23747:32583029,40857297:0 +) +(1,23747:7613813,41722377:24969216,509904,132809 +g1,23747:14252885,41722377 +g1,23747:14667827,41722377 +$1,23747:15082769,41722377 +k1,23747:32583029,41722377:17326590 +g1,23747:32583029,41722377 +) +(1,23747:7613813,42587457:24969216,505283,134348 +(1,23747:7613813,42587457:-983040,0,0 +g1,23747:6630773,42587457 +g1,23747:5320053,42587457 +g1,23747:4992373,42587457 +(1,23747:4992373,42587457:1310720,0,0 +k1,23747:6303093,42587457:1310720 +) +g1,23747:6630773,42587457 +) +k1,23747:8628829,42587457:291498 +k1,23747:9581494,42587457:291407 +k1,23747:10579470,42587457:291498 +k1,23747:11415481,42587457:291407 +k1,23747:12372734,42587457:291407 +k1,23747:14207605,42587457:291498 +k1,23747:15690273,42587457:291223 +k1,23747:16526284,42587457:291407 +k1,23747:19629002,42587457:291223 +k1,23747:22102470,42587457:291774 +k1,23747:22883247,42587457:291223 +k1,23747:26431609,42587457:291223 +k1,23747:28558495,42587457:291223 +k1,23747:29449372,42587457:291223 +k1,23747:30364393,42587457:291774 +k1,23747:31641277,42587457:291223 +k1,23747:32583029,42587457:0 +) +(1,23747:7613813,43452537:24969216,505283,134348 +g1,23747:10676965,43452537 +g1,23747:11470606,43452537 +g1,23747:13038882,43452537 +g1,23747:14829980,43452537 +g1,23747:19013798,43452537 +g1,23747:20385466,43452537 +g1,23747:21394065,43452537 +g1,23747:22187706,43452537 +k1,23747:32583029,43452537:8819182 +g1,23747:32583029,43452537 +) +] +(1,23748:32583029,45706769:0,0,0 +g1,23748:32583029,45706769 +) +) +] +(1,23748:6630773,47279633:25952256,0,0 +h1,23748:6630773,47279633:25952256,0,0 +) +] +(1,23748:4262630,4025873:0,0,0 +[1,23748:-473656,4025873:0,0,0 +(1,23748:-473656,-710413:0,0,0 +(1,23748:-473656,-710413:0,0,0 +g1,23748:-473656,-710413 +) +g1,23748:-473656,-710413 +) +] +) +] +!25155 +}412 +!12 +{413 +[1,23748:4262630,47279633:28320399,43253760,0 +(1,23748:4262630,4025873:0,0,0 +[1,23748:-473656,4025873:0,0,0 +(1,23748:-473656,-710413:0,0,0 +(1,23748:-473656,-644877:0,0,0 +k1,23748:-473656,-644877:-65536 ) -] -!3399 -}427 -!11 -{428 -[1,23534:4262630,47279633:28320399,43253760,11795 -(1,23534:4262630,4025873:0,0,0 -[1,23534:-473656,4025873:0,0,0 -(1,23534:-473656,-710413:0,0,0 -(1,23534:-473656,-644877:0,0,0 -k1,23534:-473656,-644877:-65536 -) -(1,23534:-473656,4736287:0,0,0 -k1,23534:-473656,4736287:5209943 +(1,23748:-473656,4736287:0,0,0 +k1,23748:-473656,4736287:5209943 ) -g1,23534:-473656,-710413 +g1,23748:-473656,-710413 ) ] ) -[1,23534:6630773,47279633:25952256,43253760,11795 -[1,23534:6630773,4812305:25952256,786432,0 -(1,23534:6630773,4812305:25952256,0,0 -(1,23534:6630773,4812305:25952256,0,0 -g1,23534:3078558,4812305 -[1,23534:3078558,4812305:0,0,0 -(1,23534:3078558,2439708:0,1703936,0 -k1,23534:1358238,2439708:-1720320 -(1,23534:1358238,2439708:1720320,1703936,0 -(1,23534:1358238,2439708:1179648,16384,0 -r1,23534:2537886,2439708:1179648,16384,0 +[1,23748:6630773,47279633:25952256,43253760,0 +[1,23748:6630773,4812305:25952256,786432,0 +(1,23748:6630773,4812305:25952256,0,0 +(1,23748:6630773,4812305:25952256,0,0 +g1,23748:3078558,4812305 +[1,23748:3078558,4812305:0,0,0 +(1,23748:3078558,2439708:0,1703936,0 +k1,23748:1358238,2439708:-1720320 +(1,23748:1358238,2439708:1720320,1703936,0 +(1,23748:1358238,2439708:1179648,16384,0 +r1,23748:2537886,2439708:1179648,16384,0 ) -g1,23534:3062174,2439708 -(1,23534:3062174,2439708:16384,1703936,0 -[1,23534:3062174,2439708:25952256,1703936,0 -(1,23534:3062174,1915420:25952256,1179648,0 -(1,23534:3062174,1915420:16384,1179648,0 -r1,23534:3078558,1915420:16384,1179648,0 +g1,23748:3062174,2439708 +(1,23748:3062174,2439708:16384,1703936,0 +[1,23748:3062174,2439708:25952256,1703936,0 +(1,23748:3062174,1915420:25952256,1179648,0 +(1,23748:3062174,1915420:16384,1179648,0 +r1,23748:3078558,1915420:16384,1179648,0 ) -k1,23534:29014430,1915420:25935872 -g1,23534:29014430,1915420 +k1,23748:29014430,1915420:25935872 +g1,23748:29014430,1915420 ) ] ) ) ) ] -[1,23534:3078558,4812305:0,0,0 -(1,23534:3078558,2439708:0,1703936,0 -g1,23534:29030814,2439708 -g1,23534:36135244,2439708 -(1,23534:36135244,2439708:1720320,1703936,0 -(1,23534:36135244,2439708:16384,1703936,0 -[1,23534:36135244,2439708:25952256,1703936,0 -(1,23534:36135244,1915420:25952256,1179648,0 -(1,23534:36135244,1915420:16384,1179648,0 -r1,23534:36151628,1915420:16384,1179648,0 +[1,23748:3078558,4812305:0,0,0 +(1,23748:3078558,2439708:0,1703936,0 +g1,23748:29030814,2439708 +g1,23748:36135244,2439708 +(1,23748:36135244,2439708:1720320,1703936,0 +(1,23748:36135244,2439708:16384,1703936,0 +[1,23748:36135244,2439708:25952256,1703936,0 +(1,23748:36135244,1915420:25952256,1179648,0 +(1,23748:36135244,1915420:16384,1179648,0 +r1,23748:36151628,1915420:16384,1179648,0 ) -k1,23534:62087500,1915420:25935872 -g1,23534:62087500,1915420 +k1,23748:62087500,1915420:25935872 +g1,23748:62087500,1915420 ) ] ) -g1,23534:36675916,2439708 -(1,23534:36675916,2439708:1179648,16384,0 -r1,23534:37855564,2439708:1179648,16384,0 +g1,23748:36675916,2439708 +(1,23748:36675916,2439708:1179648,16384,0 +r1,23748:37855564,2439708:1179648,16384,0 ) ) -k1,23534:3078556,2439708:-34777008 +k1,23748:3078556,2439708:-34777008 ) ] -[1,23534:3078558,4812305:0,0,0 -(1,23534:3078558,49800853:0,16384,2228224 -k1,23534:1358238,49800853:-1720320 -(1,23534:1358238,49800853:1720320,16384,2228224 -(1,23534:1358238,49800853:1179648,16384,0 -r1,23534:2537886,49800853:1179648,16384,0 +[1,23748:3078558,4812305:0,0,0 +(1,23748:3078558,49800853:0,16384,2228224 +k1,23748:1358238,49800853:-1720320 +(1,23748:1358238,49800853:1720320,16384,2228224 +(1,23748:1358238,49800853:1179648,16384,0 +r1,23748:2537886,49800853:1179648,16384,0 ) -g1,23534:3062174,49800853 -(1,23534:3062174,52029077:16384,1703936,0 -[1,23534:3062174,52029077:25952256,1703936,0 -(1,23534:3062174,51504789:25952256,1179648,0 -(1,23534:3062174,51504789:16384,1179648,0 -r1,23534:3078558,51504789:16384,1179648,0 +g1,23748:3062174,49800853 +(1,23748:3062174,52029077:16384,1703936,0 +[1,23748:3062174,52029077:25952256,1703936,0 +(1,23748:3062174,51504789:25952256,1179648,0 +(1,23748:3062174,51504789:16384,1179648,0 +r1,23748:3078558,51504789:16384,1179648,0 ) -k1,23534:29014430,51504789:25935872 -g1,23534:29014430,51504789 +k1,23748:29014430,51504789:25935872 +g1,23748:29014430,51504789 ) ] ) ) ) ] -[1,23534:3078558,4812305:0,0,0 -(1,23534:3078558,49800853:0,16384,2228224 -g1,23534:29030814,49800853 -g1,23534:36135244,49800853 -(1,23534:36135244,49800853:1720320,16384,2228224 -(1,23534:36135244,52029077:16384,1703936,0 -[1,23534:36135244,52029077:25952256,1703936,0 -(1,23534:36135244,51504789:25952256,1179648,0 -(1,23534:36135244,51504789:16384,1179648,0 -r1,23534:36151628,51504789:16384,1179648,0 +[1,23748:3078558,4812305:0,0,0 +(1,23748:3078558,49800853:0,16384,2228224 +g1,23748:29030814,49800853 +g1,23748:36135244,49800853 +(1,23748:36135244,49800853:1720320,16384,2228224 +(1,23748:36135244,52029077:16384,1703936,0 +[1,23748:36135244,52029077:25952256,1703936,0 +(1,23748:36135244,51504789:25952256,1179648,0 +(1,23748:36135244,51504789:16384,1179648,0 +r1,23748:36151628,51504789:16384,1179648,0 ) -k1,23534:62087500,51504789:25935872 -g1,23534:62087500,51504789 +k1,23748:62087500,51504789:25935872 +g1,23748:62087500,51504789 ) ] ) -g1,23534:36675916,49800853 -(1,23534:36675916,49800853:1179648,16384,0 -r1,23534:37855564,49800853:1179648,16384,0 +g1,23748:36675916,49800853 +(1,23748:36675916,49800853:1179648,16384,0 +r1,23748:37855564,49800853:1179648,16384,0 ) ) -k1,23534:3078556,49800853:-34777008 +k1,23748:3078556,49800853:-34777008 ) ] -g1,23534:6630773,4812305 +g1,23748:6630773,4812305 ) ) ] -[1,23534:6630773,45706769:25952256,40108032,0 -(1,23534:6630773,45706769:25952256,40108032,0 -(1,23534:6630773,45706769:0,0,0 -g1,23534:6630773,45706769 -) -[1,23534:6630773,45706769:25952256,40108032,0 -[1,23534:6630773,12106481:25952256,6507744,0 -(1,23534:6630773,7073297:25952256,32768,229376 -(1,23534:6630773,7073297:0,32768,229376 -(1,23534:6630773,7073297:5505024,32768,229376 -r1,23534:12135797,7073297:5505024,262144,229376 -) -k1,23534:6630773,7073297:-5505024 -) -) -(1,23534:6630773,8803457:25952256,909509,241827 -h1,23534:6630773,8803457:0,0,0 -k1,23534:23428371,8803457:9154658 -k1,23534:32583029,8803457:9154658 -) -(1,23534:6630773,9419505:25952256,32768,0 -(1,23534:6630773,9419505:5505024,32768,0 -r1,23534:12135797,9419505:5505024,32768,0 -) -k1,23534:22359413,9419505:10223616 -k1,23534:32583029,9419505:10223616 -) -] -(1,23534:7613813,12947969:24969216,513147,126483 -(1,23534:7613813,12947969:-983040,0,0 -g1,23534:6630773,12947969 -g1,23534:5320053,12947969 -g1,23534:4992373,12947969 -(1,23534:4992373,12947969:1310720,0,0 -k1,23534:6303093,12947969:1310720 -) -g1,23534:6630773,12947969 -) -k1,23534:8383240,12947969:281839 -k1,23534:9326255,12947969:281757 -k1,23534:10239779,12947969:281757 -k1,23534:11712817,12947969:281593 -k1,23534:12444806,12947969:281757 -k1,23534:13403550,12947969:281757 -k1,23534:15957275,12947969:281592 -k1,23534:18421055,12947969:282086 -k1,23534:22545024,12947969:281593 -k1,23534:23442654,12947969:281592 -k1,23534:26720553,12947969:281593 -k1,23534:29384872,12947969:282086 -k1,23534:32583029,12947969:0 -) -(1,23534:7613813,13789457:24969216,485622,11795 -g1,23534:10146124,13789457 -g1,23534:12190847,13789457 -g1,23534:13981945,13789457 -k1,23534:32583029,13789457:14442825 -g1,23534:32583029,13789457 -) -(1,23534:7613813,14630945:24969216,505283,134348 -(1,23534:7613813,14630945:-983040,0,0 -g1,23534:6630773,14630945 -g1,23534:5320053,14630945 -g1,23534:4992373,14630945 -(1,23534:4992373,14630945:1310720,0,0 -k1,23534:6303093,14630945:1310720 -) -g1,23534:6630773,14630945 -) -k1,23534:8819101,14630945:171130 -k1,23534:9842853,14630945:171129 -k1,23534:10675213,14630945:171102 -k1,23534:11499708,14630945:171101 -k1,23534:14840814,14630945:171130 -k1,23534:16203304,14630945:171045 -k1,23534:16982579,14630945:171101 -k1,23534:17782827,14630945:171102 -k1,23534:19948788,14630945:171045 -k1,23534:21777295,14630945:171101 -k1,23534:23923109,14630945:171214 -k1,23534:24223251,14630945:-13 -k1,23534:24223264,14630945:13 -k1,23534:27366367,14630945:171045 -k1,23534:30727049,14630945:171045 -k1,23534:32583029,14630945:0 -) -(1,23534:7613813,15472433:24969216,505283,134348 -k1,23534:9619282,15472433:197331 -k1,23534:12978080,15472433:197341 -k1,23534:13976925,15472433:197340 -k1,23534:15505948,15472433:197331 -k1,23534:18693687,15472433:197331 -k1,23534:20035282,15472433:197336 -k1,23534:21247769,15472433:197334 -k1,23534:23540297,15472433:197342 -k1,23534:25074571,15472433:197340 -$1,23534:25074571,15472433 -k1,23534:25864935,15472433:0 -k1,23534:26260117,15472433:0 -k1,23534:27840845,15472433:0 -k1,23534:28236027,15472433:0 -k1,23534:30211937,15472433:0 -k1,23534:30607119,15472433:0 -k1,23534:32187847,15472433:0 -k1,23534:32583029,15472433:0 -) -(1,23534:7613813,16313921:24969216,485622,11796 -$1,23534:10380087,16313921 -k1,23534:32583029,16313921:22029272 -g1,23534:32583029,16313921 -) -(1,23534:7613813,17155409:24969216,513147,126483 -(1,23534:7613813,17155409:-983040,0,0 -g1,23534:6630773,17155409 -g1,23534:5320053,17155409 -g1,23534:4992373,17155409 -(1,23534:4992373,17155409:1310720,0,0 -k1,23534:6303093,17155409:1310720 -) -g1,23534:6630773,17155409 -) -k1,23534:9169461,17155409:256724 -k1,23534:10044787,17155409:256666 -k1,23534:10962712,17155409:256667 -k1,23534:12410709,17155409:256552 -k1,23534:13117607,17155409:256666 -k1,23534:14111554,17155409:256667 -k1,23534:17580681,17155409:256552 -k1,23534:20019270,17155409:256895 -k1,23534:20809572,17155409:256839 -k1,23534:21969210,17155409:256552 -k1,23534:25577273,17155409:256552 -k1,23534:29868221,17155409:256552 -k1,23534:31048831,17155409:256552 -k1,23534:32583029,17155409:0 -) -(1,23534:7613813,17996897:24969216,505283,126483 -k1,23534:10520447,17996897:283883 -k1,23534:12014781,17996897:283884 -k1,23534:15283681,17996897:284391 -k1,23534:18605158,17996897:283883 -k1,23534:20080487,17996897:283884 -k1,23534:23501430,17996897:284390 -k1,23534:25377606,17996897:284307 -k1,23534:30317167,17996897:283883 -k1,23534:31773659,17996897:284053 -k1,23534:32583029,17996897:0 -) -(1,23534:7613813,18838385:24969216,505283,126483 -g1,23534:8407454,18838385 -k1,23534:32583028,18838385:22997892 -g1,23534:32583028,18838385 -) -(1,23534:7613813,19679873:24969216,505283,134348 -(1,23534:7613813,19679873:-983040,0,0 -g1,23534:6630773,19679873 -g1,23534:5320053,19679873 -g1,23534:4992373,19679873 -(1,23534:4992373,19679873:1310720,0,0 -k1,23534:6303093,19679873:1310720 -) -g1,23534:6630773,19679873 -) -k1,23534:9118445,19679873:205708 -k1,23534:9942807,19679873:205702 -k1,23534:10983444,19679873:205708 -k1,23534:11639378,19679873:205702 -k1,23534:12582360,19679873:205702 -k1,23534:16174313,19679873:205708 -k1,23534:17571447,19679873:205689 -k1,23534:18438407,19679873:205702 -k1,23534:19262769,19679873:205702 -k1,23534:21203851,19679873:205689 -k1,23534:23591272,19679873:205727 -k1,23534:24984473,19679873:205689 -k1,23534:26556588,19679873:205689 -k1,23534:27122070,19679873:205689 -k1,23534:30628184,19679873:205721 -k1,23534:31323427,19679873:205689 -k1,23534:32583029,19679873:0 -) -(1,23534:7613813,20521361:24969216,513147,134348 -k1,23534:11129207,20521361:179611 -k1,23534:15343213,20521361:179610 -k1,23534:16446882,20521361:179611 -k1,23534:18160691,20521361:179611 -k1,23534:20963052,20521361:179610 -k1,23534:22353113,20521361:179611 -k1,23534:25517350,20521361:179728 -k1,23534:28734554,20521361:179610 -k1,23534:29366363,20521361:179611 -k1,23534:30991160,20521361:179728 -k1,23534:32583029,20521361:0 -) -(1,23534:7613813,21362849:24969216,505283,126483 -g1,23534:12468720,21362849 -g1,23534:13840388,21362849 -g1,23534:14848987,21362849 -g1,23534:15642628,21362849 -k1,23534:32583029,21362849:15762719 -g1,23534:32583029,21362849 -) -(1,23534:7613813,22204337:24969216,505283,134348 -(1,23534:7613813,22204337:-983040,0,0 -g1,23534:6630773,22204337 -g1,23534:5320053,22204337 -g1,23534:4992373,22204337 -(1,23534:4992373,22204337:1310720,0,0 -k1,23534:6303093,22204337:1310720 -) -g1,23534:6630773,22204337 -) -k1,23534:8440694,22204337:156448 -k1,23534:9215760,22204337:156406 -k1,23534:9921358,22204337:156406 -k1,23534:12259628,22204337:156576 -k1,23534:12559770,22204337:-13 -k1,23534:12559783,22204337:13 -k1,23534:13942282,22204337:156320 -k1,23534:14966954,22204337:156320 -k1,23534:16839007,22204337:156320 -k1,23534:21088050,22204337:156320 -k1,23534:25231921,22204337:156661 -k1,23534:26189959,22204337:156533 -k1,23534:27533791,22204337:156320 -k1,23534:30766371,22204337:156320 -k1,23534:32583029,22204337:0 -) -(1,23534:7613813,23045825:24969216,505283,126483 -g1,23534:10498707,23045825 -g1,23534:13288574,23045825 -g1,23534:15428979,23045825 -g1,23534:16643361,23045825 -k1,23534:32583029,23045825:13047564 -g1,23534:32583029,23045825 -) -(1,23534:7613813,23887313:24969216,505283,126483 -(1,23534:7613813,23887313:-983040,0,0 -g1,23534:6630773,23887313 -g1,23534:5320053,23887313 -g1,23534:4992373,23887313 -(1,23534:4992373,23887313:1310720,0,0 -k1,23534:6303093,23887313:1310720 -) -g1,23534:6630773,23887313 -) -g1,23534:8851132,23887313 -g1,23534:9599553,23887313 -g1,23534:11980476,23887313 -g1,23534:12539498,23887313 -g1,23534:14772964,23887313 -g1,23534:16144632,23887313 -g1,23534:17153231,23887313 -g1,23534:18367613,23887313 -g1,23534:19935889,23887313 -k1,23534:32583029,23887313:11070999 -g1,23534:32583029,23887313 -) -(1,23534:7613813,24728801:24969216,513147,134349 -(1,23534:7613813,24728801:-983040,0,0 -g1,23534:6630773,24728801 -g1,23534:5320053,24728801 -g1,23534:4992373,24728801 -(1,23534:4992373,24728801:1310720,0,0 -k1,23534:6303093,24728801:1310720 -) -g1,23534:6630773,24728801 -) -(1,23534:6630773,24728801:983040,211026,0 -k1,23534:7613813,24728801:327680 -) -k1,23534:10014577,24728801:219070 -k1,23534:11421041,24728801:218952 -k1,23534:12089569,24728801:218951 -k1,23534:14785900,24728801:219070 -k1,23534:16375308,24728801:219051 -$1,23534:16375308,24728801 -k1,23534:17977664,24728801:21628 -k1,23534:18394473,24728801:21627 -k1,23534:18811283,24728801:21628 -k1,23534:19228093,24728801:21628 -k1,23534:20435267,24728801:21628 -k1,23534:20852077,24728801:21628 -k1,23534:22849615,24728801:21628 -(1,23534:23244797,24827115:32768,0,0 -) -k1,23534:23299192,24728801:21627 -k1,23534:24901548,24728801:21628 -k1,23534:25318358,24728801:21628 -k1,23534:26525532,24728801:21628 -k1,23534:26942342,24728801:21628 -k1,23534:28939880,24728801:21628 -k1,23534:29356690,24728801:21628 -k1,23534:31354227,24728801:21627 -k1,23534:31771037,24728801:21628 -k1,23534:32187847,24728801:21628 -k1,23534:32583029,24728801:0 -) -(1,23534:7613813,25570289:24969216,513147,126484 -g1,23534:10380087,25570289 -g1,23534:10775269,25570289 -$1,23534:11960815,25570289 -g1,23534:12160044,25570289 -g1,23534:14681214,25570289 -g1,23534:15689813,25570289 -g1,23534:19954896,25570289 -g1,23534:21326564,25570289 -g1,23534:22335163,25570289 -g1,23534:23128804,25570289 -k1,23534:32583029,25570289:7878084 -g1,23534:32583029,25570289 -) -(1,23534:7613813,26411777:24969216,505283,134348 -(1,23534:7613813,26411777:-983040,0,0 -g1,23534:6630773,26411777 -g1,23534:5320053,26411777 -g1,23534:4992373,26411777 -(1,23534:4992373,26411777:1310720,0,0 -k1,23534:6303093,26411777:1310720 -) -g1,23534:6630773,26411777 -) -(1,23534:6630773,26411777:983040,211026,0 -k1,23534:7613813,26411777:327680 -) -g1,23534:9994736,26411777 -g1,23534:11393929,26411777 -g1,23534:12367138,26411777 -g1,23534:17130294,26411777 -g1,23534:18903042,26411777 -g1,23534:20694140,26411777 -g1,23534:26073335,26411777 -g1,23534:27445003,26411777 -g1,23534:28453602,26411777 -g1,23534:29667984,26411777 -g1,23534:30439342,26411777 -k1,23534:32583029,26411777:567546 -g1,23534:32583029,26411777 -) -(1,23534:7613813,27253265:24969216,505283,134348 -(1,23534:7613813,27253265:-983040,0,0 -g1,23534:6630773,27253265 -g1,23534:5320053,27253265 -g1,23534:4992373,27253265 -(1,23534:4992373,27253265:1310720,0,0 -k1,23534:6303093,27253265:1310720 -) -g1,23534:6630773,27253265 -) -k1,23534:10253891,27253265:236873 -k1,23534:10940960,27253265:236837 -k1,23534:11915076,27253265:236836 -k1,23534:14333756,27253265:236986 -k1,23534:17659229,27253265:236761 -k1,23534:18519462,27253265:236986 -k1,23534:19952910,27253265:236761 -k1,23534:20634660,27253265:236761 -k1,23534:22915060,27253265:236987 -k1,23534:26189415,27253265:236761 -k1,23534:27617621,27253265:236761 -k1,23534:30991160,27253265:236986 -k1,23534:32583029,27253265:0 -) -(1,23534:7613813,28094753:24969216,505283,126483 -g1,23534:11797631,28094753 -g1,23534:13169299,28094753 -g1,23534:14177898,28094753 -g1,23534:15392280,28094753 -g1,23534:16562097,28094753 -g1,23534:17731914,28094753 -k1,23534:32583029,28094753:13274974 -g1,23534:32583029,28094753 -) -(1,23534:7613813,28936241:24969216,505283,134348 -(1,23534:7613813,28936241:-983040,0,0 -g1,23534:6630773,28936241 -g1,23534:5320053,28936241 -g1,23534:4992373,28936241 -(1,23534:4992373,28936241:1310720,0,0 -k1,23534:6303093,28936241:1310720 -) -g1,23534:6630773,28936241 -) -k1,23534:8982648,28936241:162972 -k1,23534:9925463,28936241:162937 -k1,23534:12270238,28936241:163081 -k1,23534:12882678,28936241:162863 -k1,23534:15856380,28936241:162863 -k1,23534:19253662,28936241:163081 -k1,23534:20650569,28936241:162864 -k1,23534:21755402,28936241:163081 -k1,23534:24366035,28936241:162863 -k1,23534:25464097,28936241:162863 -k1,23534:26843526,28936241:163081 -k1,23534:28598440,28936241:163045 -k1,23534:32583029,28936241:0 -) -(1,23534:7613813,29777729:24969216,505283,126483 -g1,23534:8985481,29777729 -g1,23534:9994080,29777729 -g1,23534:11208462,29777729 -g1,23534:12776738,29777729 -k1,23534:32583029,29777729:18230150 -g1,23534:32583029,29777729 -) -(1,23534:7613813,30619217:24969216,513147,134348 -(1,23534:7613813,30619217:-983040,0,0 -g1,23534:6630773,30619217 -g1,23534:5320053,30619217 -g1,23534:4992373,30619217 -(1,23534:4992373,30619217:1310720,0,0 -k1,23534:6303093,30619217:1310720 -) -g1,23534:6630773,30619217 -) -k1,23534:10077156,30619217:163685 -k1,23534:11020684,30619217:163650 -k1,23534:11713210,30619217:163650 -k1,23534:14058695,30619217:163791 -k1,23534:15409786,30619217:163579 -k1,23534:18367819,30619217:163578 -k1,23534:19147435,30619217:163578 -k1,23534:22322393,30619217:163579 -k1,23534:24194052,30619217:163791 -k1,23534:28120159,30619217:163685 -k1,23534:29419035,30619217:163792 -k1,23534:31174660,30619217:163756 -k1,23534:32583029,30619217:0 -) -(1,23534:7613813,31460705:24969216,505283,126483 -g1,23534:11797631,31460705 -g1,23534:13169299,31460705 -g1,23534:14177898,31460705 -g1,23534:14971539,31460705 -k1,23534:32583029,31460705:16035349 -g1,23534:32583029,31460705 -) -(1,23534:7613813,32302193:24969216,505283,126483 -(1,23534:7613813,32302193:-983040,0,0 -g1,23534:6630773,32302193 -g1,23534:5320053,32302193 -g1,23534:4992373,32302193 -(1,23534:4992373,32302193:1310720,0,0 -k1,23534:6303093,32302193:1310720 -) -g1,23534:6630773,32302193 -) -k1,23534:9496548,32302193:157827 -k1,23534:10391614,32302193:157786 -k1,23534:10999632,32302193:157786 -k1,23534:13339277,32302193:157951 -k1,23534:14684492,32302193:157703 -k1,23534:15291772,32302193:157703 -k1,23534:17121546,32302193:157951 -k1,23534:19174019,32302193:157827 -k1,23534:19926217,32302193:157786 -k1,23534:21851674,32302193:157951 -k1,23534:23601453,32302193:157910 -k1,23534:27743745,32302193:157703 -k1,23534:29073970,32302193:157786 -k1,23534:30041043,32302193:157703 -k1,23534:31213982,32302193:157786 -k1,23534:32583029,32302193:0 -) -(1,23534:7613813,33143681:24969216,505283,95026 -k1,23534:32583030,33143681:23393076 -g1,23534:32583030,33143681 -) -(1,23534:7613813,33985169:24969216,505283,134348 -(1,23534:7613813,33985169:-983040,0,0 -g1,23534:6630773,33985169 -g1,23534:5320053,33985169 -g1,23534:4992373,33985169 -(1,23534:4992373,33985169:1310720,0,0 -k1,23534:6303093,33985169:1310720 -) -g1,23534:6630773,33985169 -) -k1,23534:10175217,33985169:511438 -k1,23534:11235538,33985169:511129 -k1,23534:13929605,33985169:512373 -k1,23534:18378170,33985169:510507 -k1,23534:21619562,33985169:510507 -k1,23534:23493218,33985169:510507 -k1,23534:24628838,33985169:512373 -k1,23534:28004199,33985169:511438 -k1,23534:29109740,33985169:511129 -k1,23534:30991160,33985169:512373 -k1,23534:32583029,33985169:0 -) -(1,23534:7613813,34826657:24969216,505283,126483 -g1,23534:11797631,34826657 -g1,23534:13169299,34826657 -g1,23534:14177898,34826657 -g1,23534:14971539,34826657 -k1,23534:32583029,34826657:16035349 -g1,23534:32583029,34826657 -) -(1,23534:7613813,35668145:24969216,505283,126483 -(1,23534:7613813,35668145:-983040,0,0 -g1,23534:6630773,35668145 -g1,23534:5320053,35668145 -g1,23534:4992373,35668145 -(1,23534:4992373,35668145:1310720,0,0 -k1,23534:6303093,35668145:1310720 -) -g1,23534:6630773,35668145 -) -k1,23534:8483504,35668145:237269 -k1,23534:9571429,35668145:237268 -k1,23534:10545940,35668145:237231 -k1,23534:16558896,35668145:237268 -k1,23534:17987496,35668145:237155 -k1,23534:18853873,35668145:237231 -k1,23534:19768091,35668145:237231 -k1,23534:21336938,35668145:237155 -k1,23534:23756015,35668145:237383 -k1,23534:27191982,35668145:237155 -k1,23534:30333919,35668145:237382 -k1,23534:31641277,35668145:237155 -k1,23534:32583029,35668145:0 -) -(1,23534:7613813,36509633:24969216,505283,134349 -k1,23534:9118615,36509633:309425 -k1,23534:10443854,36509633:310086 -k1,23534:12124187,36509633:309976 -$1,23534:12124187,36509633 -k1,23534:14220937,36509633:120840 -k1,23534:14736960,36509633:120841 -k1,23534:15252982,36509633:120840 -k1,23534:15769004,36509633:120840 -k1,23534:17075391,36509633:120841 -k1,23534:17591413,36509633:120840 -k1,23534:21268891,36509633:120840 -k1,23534:21784914,36509633:120841 -k1,23534:23091300,36509633:120840 -k1,23534:23607322,36509633:120840 -k1,23534:25308891,36509633:120841 -k1,23534:25824913,36509633:120840 -k1,23534:27131299,36509633:120840 -k1,23534:27647322,36509633:120841 -$1,23534:28832868,36509633 -k1,23534:29142293,36509633:309425 -k1,23534:31773659,36509633:309425 -k1,23534:32583029,36509633:0 -) -(1,23534:7613813,37351121:24969216,505283,126483 -g1,23534:11878896,37351121 -g1,23534:13250564,37351121 -g1,23534:14259163,37351121 -g1,23534:15052804,37351121 -k1,23534:32583029,37351121:15954084 -g1,23534:32583029,37351121 -) -(1,23534:7613813,38192609:24969216,505283,134348 -(1,23534:7613813,38192609:-983040,0,0 -g1,23534:6630773,38192609 -g1,23534:5320053,38192609 -g1,23534:4992373,38192609 -(1,23534:4992373,38192609:1310720,0,0 -k1,23534:6303093,38192609:1310720 -) -g1,23534:6630773,38192609 -) -k1,23534:11135502,38192609:337295 -k1,23534:12149648,38192609:337159 -k1,23534:14669050,38192609:337708 -k1,23534:17827914,38192609:336884 -k1,23534:18614374,38192609:336883 -k1,23534:20161708,38192609:336884 -k1,23534:22102913,38192609:336884 -k1,23534:25942040,38192609:336883 -k1,23534:27642073,38192609:336884 -k1,23534:29719106,38192609:337708 -k1,23534:32583029,38192609:0 -) -(1,23534:7613813,39034097:24969216,505283,126483 -g1,23534:8407454,39034097 -g1,23534:9975730,39034097 -g1,23534:11766828,39034097 -g1,23534:15950646,39034097 -g1,23534:17322314,39034097 -g1,23534:18330913,39034097 -g1,23534:19124554,39034097 -k1,23534:32583029,39034097:11882334 -g1,23534:32583029,39034097 -) -(1,23534:7613813,39875585:24969216,505283,126483 -(1,23534:7613813,39875585:-983040,0,0 -g1,23534:6630773,39875585 -g1,23534:5320053,39875585 -g1,23534:4992373,39875585 -(1,23534:4992373,39875585:1310720,0,0 -k1,23534:6303093,39875585:1310720 -) -g1,23534:6630773,39875585 -) -k1,23534:9088443,39875585:205198 -k1,23534:9866420,39875585:205192 -k1,23534:11263045,39875585:205180 -k1,23534:12076412,39875585:205193 -k1,23534:14950873,39875585:205180 -k1,23534:17337783,39875585:205216 -k1,23534:18446049,39875585:205180 -k1,23534:22518508,39875585:205180 -k1,23534:23323343,39875585:205181 -k1,23534:25931728,39875585:205180 -k1,23534:29960278,39875585:205180 -k1,23534:32583029,39875585:0 -) -(1,23534:7613813,40717073:24969216,505283,134348 -g1,23534:9176191,40717073 -g1,23534:9998667,40717073 -g1,23534:13061819,40717073 -g1,23534:13855460,40717073 -g1,23534:15423736,40717073 -g1,23534:17214834,40717073 -g1,23534:21398652,40717073 -g1,23534:22770320,40717073 -g1,23534:23778919,40717073 -g1,23534:24572560,40717073 -k1,23534:32583029,40717073:6434328 -g1,23534:32583029,40717073 -) -(1,23534:7613813,41558561:24969216,513147,134348 -(1,23534:7613813,41558561:-983040,0,0 -g1,23534:6630773,41558561 -g1,23534:5320053,41558561 -g1,23534:4992373,41558561 -(1,23534:4992373,41558561:1310720,0,0 -k1,23534:6303093,41558561:1310720 -) -g1,23534:6630773,41558561 -) -k1,23534:9148181,41558561:264936 -k1,23534:9985837,41558561:264871 -k1,23534:10779585,41558561:264872 -k1,23534:12235770,41558561:264740 -k1,23534:13108815,41558561:264871 -k1,23534:16042836,41558561:264740 -k1,23534:18489663,41558561:265133 -k1,23534:19243958,41558561:264741 -k1,23534:22719307,41558561:264740 -k1,23534:23600085,41558561:264740 -k1,23534:26895210,41558561:264740 -k1,23534:29932779,41558561:264741 -k1,23534:31959782,41558561:264740 -k1,23534:32583029,41558561:0 -) -(1,23534:7613813,42400049:24969216,505283,126483 -g1,23534:9047085,42400049 -g1,23534:10188066,42400049 -g1,23534:13424889,42400049 -g1,23534:14076316,42400049 -g1,23534:17412098,42400049 -g1,23534:18205739,42400049 -g1,23534:19774015,42400049 -g1,23534:21565113,42400049 -g1,23534:25748931,42400049 -g1,23534:27120599,42400049 -g1,23534:28129198,42400049 -g1,23534:28922839,42400049 -k1,23534:32583029,42400049:2084049 -g1,23534:32583029,42400049 -) -(1,23534:7613813,43241537:24969216,505283,126483 -(1,23534:7613813,43241537:-983040,0,0 -g1,23534:6630773,43241537 -g1,23534:5320053,43241537 -g1,23534:4992373,43241537 -(1,23534:4992373,43241537:1310720,0,0 -k1,23534:6303093,43241537:1310720 -) -g1,23534:6630773,43241537 -) -k1,23534:9624075,43241537:222440 -k1,23534:10296725,43241537:222418 -k1,23534:10969374,43241537:222417 -k1,23534:13373578,43241537:222510 -k1,23534:15619701,43241537:222371 -k1,23534:17991653,43241537:222371 -k1,23534:19577173,43241537:222371 -k1,23534:20422930,43241537:222510 -k1,23534:22128381,43241537:222371 -k1,23534:24391612,43241537:222440 -k1,23534:25511942,43241537:222487 -k1,23534:28771907,43241537:222371 -k1,23534:29446476,43241537:222371 -k1,23534:32583029,43241537:0 -) -(1,23534:7613813,44083025:24969216,505283,126483 -g1,23534:8407454,44083025 -g1,23534:9802060,44083025 -g1,23534:11173728,44083025 -g1,23534:12182327,44083025 -g1,23534:12975968,44083025 -k1,23534:32583029,44083025:18030920 -g1,23534:32583029,44083025 -) -] -(1,23534:32583029,45706769:0,0,0 -g1,23534:32583029,45706769 -) -) -] -(1,23534:6630773,47279633:25952256,485622,11795 -(1,23534:6630773,47279633:25952256,485622,11795 -(1,23534:6630773,47279633:0,0,0 -v1,23534:6630773,47279633:0,0,0 -) -g1,23534:6830002,47279633 -k1,23534:31387652,47279633:24557650 -) -) -] -(1,23534:4262630,4025873:0,0,0 -[1,23534:-473656,4025873:0,0,0 -(1,23534:-473656,-710413:0,0,0 -(1,23534:-473656,-710413:0,0,0 -g1,23534:-473656,-710413 -) -g1,23534:-473656,-710413 -) -] -) -] -!23648 -}428 -!12 -{429 -[1,23534:4262630,47279633:28320399,43253760,0 -(1,23534:4262630,4025873:0,0,0 -[1,23534:-473656,4025873:0,0,0 -(1,23534:-473656,-710413:0,0,0 -(1,23534:-473656,-644877:0,0,0 -k1,23534:-473656,-644877:-65536 -) -(1,23534:-473656,4736287:0,0,0 -k1,23534:-473656,4736287:5209943 -) -g1,23534:-473656,-710413 +[1,23748:6630773,45706769:0,40108032,0 +(1,23748:6630773,45706769:0,40108032,0 +(1,23748:6630773,45706769:0,0,0 +g1,23748:6630773,45706769 ) +[1,23748:6630773,45706769:0,40108032,0 +h1,23748:6630773,6254097:0,0,0 ] +(1,23748:6630773,45706769:0,0,0 +g1,23748:6630773,45706769 ) -[1,23534:6630773,47279633:25952256,43253760,0 -[1,23534:6630773,4812305:25952256,786432,0 -(1,23534:6630773,4812305:25952256,505283,134348 -(1,23534:6630773,4812305:25952256,505283,134348 -g1,23534:3078558,4812305 -[1,23534:3078558,4812305:0,0,0 -(1,23534:3078558,2439708:0,1703936,0 -k1,23534:1358238,2439708:-1720320 -(1,23534:1358238,2439708:1720320,1703936,0 -(1,23534:1358238,2439708:1179648,16384,0 -r1,23534:2537886,2439708:1179648,16384,0 -) -g1,23534:3062174,2439708 -(1,23534:3062174,2439708:16384,1703936,0 -[1,23534:3062174,2439708:25952256,1703936,0 -(1,23534:3062174,1915420:25952256,1179648,0 -(1,23534:3062174,1915420:16384,1179648,0 -r1,23534:3078558,1915420:16384,1179648,0 -) -k1,23534:29014430,1915420:25935872 -g1,23534:29014430,1915420 ) ] -) -) +(1,23748:6630773,47279633:25952256,0,0 +h1,23748:6630773,47279633:25952256,0,0 ) ] -[1,23534:3078558,4812305:0,0,0 -(1,23534:3078558,2439708:0,1703936,0 -g1,23534:29030814,2439708 -g1,23534:36135244,2439708 -(1,23534:36135244,2439708:1720320,1703936,0 -(1,23534:36135244,2439708:16384,1703936,0 -[1,23534:36135244,2439708:25952256,1703936,0 -(1,23534:36135244,1915420:25952256,1179648,0 -(1,23534:36135244,1915420:16384,1179648,0 -r1,23534:36151628,1915420:16384,1179648,0 +(1,23748:4262630,4025873:0,0,0 +[1,23748:-473656,4025873:0,0,0 +(1,23748:-473656,-710413:0,0,0 +(1,23748:-473656,-710413:0,0,0 +g1,23748:-473656,-710413 ) -k1,23534:62087500,1915420:25935872 -g1,23534:62087500,1915420 +g1,23748:-473656,-710413 ) ] ) -g1,23534:36675916,2439708 -(1,23534:36675916,2439708:1179648,16384,0 -r1,23534:37855564,2439708:1179648,16384,0 -) -) -k1,23534:3078556,2439708:-34777008 -) ] -[1,23534:3078558,4812305:0,0,0 -(1,23534:3078558,49800853:0,16384,2228224 -k1,23534:1358238,49800853:-1720320 -(1,23534:1358238,49800853:1720320,16384,2228224 -(1,23534:1358238,49800853:1179648,16384,0 -r1,23534:2537886,49800853:1179648,16384,0 -) -g1,23534:3062174,49800853 -(1,23534:3062174,52029077:16384,1703936,0 -[1,23534:3062174,52029077:25952256,1703936,0 -(1,23534:3062174,51504789:25952256,1179648,0 -(1,23534:3062174,51504789:16384,1179648,0 -r1,23534:3078558,51504789:16384,1179648,0 -) -k1,23534:29014430,51504789:25935872 -g1,23534:29014430,51504789 -) -] -) -) -) -] -[1,23534:3078558,4812305:0,0,0 -(1,23534:3078558,49800853:0,16384,2228224 -g1,23534:29030814,49800853 -g1,23534:36135244,49800853 -(1,23534:36135244,49800853:1720320,16384,2228224 -(1,23534:36135244,52029077:16384,1703936,0 -[1,23534:36135244,52029077:25952256,1703936,0 -(1,23534:36135244,51504789:25952256,1179648,0 -(1,23534:36135244,51504789:16384,1179648,0 -r1,23534:36151628,51504789:16384,1179648,0 -) -k1,23534:62087500,51504789:25935872 -g1,23534:62087500,51504789 -) -] -) -g1,23534:36675916,49800853 -(1,23534:36675916,49800853:1179648,16384,0 -r1,23534:37855564,49800853:1179648,16384,0 -) -) -k1,23534:3078556,49800853:-34777008 -) -] -g1,23534:6630773,4812305 -k1,23534:28581402,4812305:20755252 -) -) -] -[1,23534:6630773,45706769:25952256,40108032,0 -(1,23534:6630773,45706769:25952256,40108032,0 -(1,23534:6630773,45706769:0,0,0 -g1,23534:6630773,45706769 -) -[1,23534:6630773,45706769:25952256,40108032,0 -(1,23534:7613813,6254097:24969216,513147,134348 -(1,23534:7613813,6254097:-983040,0,0 -g1,23534:6630773,6254097 -g1,23534:5320053,6254097 -g1,23534:4992373,6254097 -(1,23534:4992373,6254097:1310720,0,0 -k1,23534:6303093,6254097:1310720 -) -g1,23534:6630773,6254097 -) -k1,23534:9550925,6254097:149290 -k1,23534:10150397,6254097:149240 -k1,23534:10749869,6254097:149240 -k1,23534:13081002,6254097:149439 -k1,23534:16318854,6254097:149140 -k1,23534:17453654,6254097:149139 -k1,23534:19441079,6254097:149140 -k1,23534:21503215,6254097:149140 -k1,23534:23015503,6254097:149139 -k1,23534:23788140,6254097:149390 -k1,23534:27598775,6254097:149139 -k1,23534:29760020,6254097:149290 -k1,23534:31789388,6254097:149140 -k1,23534:32583029,6254097:0 -) -(1,23534:7613813,7095585:24969216,513147,134348 -k1,23534:9225709,7095585:183211 -k1,23534:10619371,7095585:183212 -k1,23534:15507412,7095585:183211 -k1,23534:18926792,7095585:183212 -k1,23534:21485123,7095585:183307 -k1,23534:24705928,7095585:183211 -k1,23534:25341338,7095585:183212 -k1,23534:28661150,7095585:183259 -k1,23534:29438806,7095585:183244 -k1,23534:30991160,7095585:183307 -k1,23534:32583029,7095585:0 -) -(1,23534:7613813,7937073:24969216,505283,126483 -g1,23534:11829744,7937073 -g1,23534:13201412,7937073 -g1,23534:14210011,7937073 -g1,23534:15003652,7937073 -k1,23534:32583029,7937073:16003236 -g1,23534:32583029,7937073 -) -(1,23534:7613813,8778561:24969216,505283,126483 -(1,23534:7613813,8778561:-983040,0,0 -g1,23534:6630773,8778561 -g1,23534:5320053,8778561 -g1,23534:4992373,8778561 -(1,23534:4992373,8778561:1310720,0,0 -k1,23534:6303093,8778561:1310720 -) -g1,23534:6630773,8778561 -) -k1,23534:9799111,8778561:199557 -k1,23534:10627814,8778561:199557 -k1,23534:13009067,8778561:199559 -k1,23534:17310521,8778561:199556 -k1,23534:20366136,8778561:199556 -k1,23534:21928842,8778561:199557 -k1,23534:22577975,8778561:199556 -k1,23534:23987982,8778561:199557 -k1,23534:24637115,8778561:199556 -k1,23534:26970525,8778561:199558 -k1,23534:28404125,8778561:199557 -k1,23534:29545435,8778561:199558 -k1,23534:32583029,8778561:0 -) -(1,23534:7613813,9620049:24969216,505283,126483 -k1,23534:8294076,9620049:228065 -k1,23534:11485023,9620049:228064 -k1,23534:12909775,9620049:228065 -k1,23534:13582828,9620049:228064 -k1,23534:16061572,9620049:228238 -k1,23534:19327230,9620049:228064 -k1,23534:20746740,9620049:228065 -k1,23534:24111530,9620049:228237 -k1,23534:25534972,9620049:228065 -k1,23534:26778362,9620049:228237 -k1,23534:28598440,9620049:228209 -k1,23534:32583029,9620049:0 -) -(1,23534:7613813,10461537:24969216,505283,126483 -g1,23534:8985481,10461537 -g1,23534:9994080,10461537 -g1,23534:11208462,10461537 -g1,23534:12378279,10461537 -k1,23534:32583029,10461537:19027068 -g1,23534:32583029,10461537 -) -(1,23534:7613813,11303025:24969216,513147,134348 -(1,23534:7613813,11303025:-983040,0,0 -g1,23534:6630773,11303025 -g1,23534:5320053,11303025 -g1,23534:4992373,11303025 -(1,23534:4992373,11303025:1310720,0,0 -k1,23534:6303093,11303025:1310720 -) -g1,23534:6630773,11303025 -) -k1,23534:8357899,11303025:282057 -k1,23534:9090107,11303025:281976 -k1,23534:10037928,11303025:281975 -k1,23534:11511184,11303025:281811 -k1,23534:12411819,11303025:281975 -k1,23534:13232501,11303025:281976 -k1,23534:16430008,11303025:281810 -k1,23534:18894007,11303025:282305 -k1,23534:21804467,11303025:281811 -k1,23534:23302625,11303025:281810 -k1,23534:28148858,11303025:282306 -k1,23534:30733603,11303025:281810 -k1,23534:32583029,11303025:0 -) -(1,23534:7613813,12144513:24969216,505283,134348 -k1,23534:10818144,12144513:141834 -k1,23534:12323127,12144513:141834 -k1,23534:13855323,12144513:142178 -k1,23534:19251521,12144513:142177 -k1,23534:20588732,12144513:141834 -k1,23534:21746063,12144513:142178 -k1,23534:23480052,12144513:142120 -k1,23534:28801852,12144513:141834 -k1,23534:30116241,12144513:141950 -k1,23534:31067445,12144513:141834 -k1,23534:31803806,12144513:141949 -k1,23534:32583029,12144513:0 -k1,23534:32583029,12144513:0 -) -(1,23534:7613813,12986001:24969216,513147,134348 -(1,23534:7613813,12986001:-983040,0,0 -g1,23534:6630773,12986001 -g1,23534:5320053,12986001 -g1,23534:4992373,12986001 -(1,23534:4992373,12986001:1310720,0,0 -k1,23534:6303093,12986001:1310720 -) -g1,23534:6630773,12986001 -) -k1,23534:10051391,12986001:155614 -k1,23534:10825622,12986001:155571 -k1,23534:11761070,12986001:155570 -k1,23534:14098509,12986001:155745 -k1,23534:17528826,12986001:155483 -k1,23534:20290676,12986001:155483 -k1,23534:21370217,12986001:155483 -k1,23534:24378482,12986001:155483 -k1,23534:25744415,12986001:155483 -k1,23534:29133051,12986001:155745 -k1,23534:31179248,12986001:155483 -k1,23534:32583029,12986001:0 -) -(1,23534:7613813,13827489:24969216,505283,126483 -g1,23534:10506572,13827489 -g1,23534:11840885,13827489 -g1,23534:13235491,13827489 -g1,23534:14449873,13827489 -g1,23534:16240971,13827489 -k1,23534:32583029,13827489:12183799 -g1,23534:32583029,13827489 -) -(1,23534:7613813,14668977:24969216,513147,134348 -(1,23534:7613813,14668977:-983040,0,0 -g1,23534:6630773,14668977 -g1,23534:5320053,14668977 -g1,23534:4992373,14668977 -(1,23534:4992373,14668977:1310720,0,0 -k1,23534:6303093,14668977:1310720 -) -g1,23534:6630773,14668977 -) -k1,23534:9424178,14668977:217185 -k1,23534:10170221,14668977:217167 -k1,23534:11578798,14668977:217132 -k1,23534:12575843,14668977:217167 -k1,23534:14749224,14668977:217131 -k1,23534:17148157,14668977:217239 -k1,23534:19758663,14668977:217131 -k1,23534:22706680,14668977:217132 -k1,23534:23847869,14668977:217131 -k1,23534:26458375,14668977:217131 -k1,23534:29119451,14668977:217239 -k1,23534:32583029,14668977:0 -) -(1,23534:7613813,15510465:24969216,505283,126483 -g1,23534:11042656,15510465 -g1,23534:13087379,15510465 -g1,23534:14481985,15510465 -g1,23534:15696367,15510465 -g1,23534:17487465,15510465 -g1,23534:21671283,15510465 -g1,23534:23042951,15510465 -g1,23534:24051550,15510465 -g1,23534:25265932,15510465 -g1,23534:26834208,15510465 -k1,23534:32583029,15510465:4172680 -g1,23534:32583029,15510465 -) -(1,23534:7613813,16351953:24969216,513147,134348 -(1,23534:7613813,16351953:-983040,0,0 -g1,23534:6630773,16351953 -g1,23534:5320053,16351953 -g1,23534:4992373,16351953 -(1,23534:4992373,16351953:1310720,0,0 -k1,23534:6303093,16351953:1310720 -) -g1,23534:6630773,16351953 -) -k1,23534:9422745,16351953:231480 -k1,23534:10262368,16351953:231449 -k1,23534:11043008,16351953:231448 -k1,23534:13456279,16351953:231577 -k1,23534:16763924,16351953:231385 -k1,23534:19523224,16351953:231577 -k1,23534:20951295,16351953:231384 -k1,23534:24412293,16351953:231384 -k1,23534:25302970,16351953:231385 -k1,23534:28064044,16351953:231384 -k1,23534:30141115,16351953:231577 -k1,23534:31567876,16351953:231384 -k1,23534:32583029,16351953:0 -) -(1,23534:7613813,17193441:24969216,505283,126483 -g1,23534:9404911,17193441 -g1,23534:13588729,17193441 -g1,23534:14960397,17193441 -g1,23534:15968996,17193441 -g1,23534:16762637,17193441 -k1,23534:32583029,17193441:14244251 -g1,23534:32583029,17193441 -) -(1,23534:7613813,18034929:24969216,513147,134348 -(1,23534:7613813,18034929:-983040,0,0 -g1,23534:6630773,18034929 -g1,23534:5320053,18034929 -g1,23534:4992373,18034929 -(1,23534:4992373,18034929:1310720,0,0 -k1,23534:6303093,18034929:1310720 -) -g1,23534:6630773,18034929 -) -k1,23534:8689686,18034929:153126 -k1,23534:9461426,18034929:153080 -k1,23534:10805859,18034929:152988 -k1,23534:11577599,18034929:153080 -k1,23534:15172538,18034929:152988 -k1,23534:17507496,18034929:153264 -k1,23534:17807638,18034929:-13 -k1,23534:17807651,18034929:13 -k1,23534:18579529,18034929:153218 -k1,23534:19220104,18034929:152987 -k1,23534:22375296,18034929:152988 -k1,23534:23475934,18034929:152987 -k1,23534:25100861,18034929:152988 -k1,23534:27940169,18034929:152987 -k1,23534:29284602,18034929:152988 -k1,23534:32583029,18034929:0 -) -(1,23534:7613813,18876417:24969216,505283,126483 -g1,23534:8614547,18876417 -g1,23534:9264008,18876417 -g1,23534:12134484,18876417 -g1,23534:14521305,18876417 -g1,23534:16117762,18876417 -g1,23534:16889120,18876417 -g1,23534:18103502,18876417 -g1,23534:21021165,18876417 -g1,23534:22392833,18876417 -g1,23534:23401432,18876417 -g1,23534:24195073,18876417 -k1,23534:32583029,18876417:7210274 -g1,23534:32583029,18876417 -) -(1,23534:7613813,19717905:24969216,513147,126483 -(1,23534:7613813,19717905:-983040,0,0 -g1,23534:6630773,19717905 -g1,23534:5320053,19717905 -g1,23534:4992373,19717905 -(1,23534:4992373,19717905:1310720,0,0 -k1,23534:6303093,19717905:1310720 -) -g1,23534:6630773,19717905 -) -k1,23534:8779441,19717905:242881 -k1,23534:9640939,19717905:242838 -k1,23534:12065645,19717905:243012 -k1,23534:12757973,19717905:242751 -k1,23534:13174611,19717905:242968 -k1,23534:14716286,19717905:242751 -k1,23534:16169487,19717905:242751 -k1,23534:18479244,19717905:242751 -k1,23534:21155608,19717905:243012 -k1,23534:21887913,19717905:242751 -k1,23534:23823459,19717905:242751 -k1,23534:24682248,19717905:242751 -k1,23534:25323458,19717905:242751 -k1,23534:27390076,19717905:242751 -k1,23534:28556885,19717905:242751 -k1,23534:31612441,19717905:242751 -k1,23534:32583029,19717905:0 -) -(1,23534:7613813,20559393:24969216,513147,126483 -k1,23534:10742357,20559393:306564 -k1,23534:14766778,20559393:306564 -k1,23534:15882712,20559393:306564 -k1,23534:19387433,20559393:306564 -k1,23534:22027079,20559393:306564 -k1,23534:23525089,20559393:306565 -k1,23534:26884308,20559393:307207 -k1,23534:28387559,20559393:306564 -k1,23534:31923737,20559393:306564 -k1,23534:32583029,20559393:0 -) -(1,23534:7613813,21400881:24969216,505283,126484 -k1,23534:11042914,21400881:230289 -k1,23534:12643530,21400881:230259 -$1,23534:12643530,21400881 -k1,23534:14653298,21400881:33858 -k1,23534:15082338,21400881:33858 -k1,23534:15511377,21400881:33857 -k1,23534:15940417,21400881:33858 -k1,23534:17159821,21400881:33858 -k1,23534:17588860,21400881:33857 -k1,23534:19203446,21400881:33858 -k1,23534:19632486,21400881:33858 -k1,23534:22827799,21400881:33857 -k1,23534:23256839,21400881:33858 -k1,23534:24081061,21400881:33858 -k1,23534:24510100,21400881:33857 -k1,23534:25334322,21400881:33858 -k1,23534:25763362,21400881:33858 -k1,23534:28168312,21400881:33858 -k1,23534:28597351,21400881:33857 -k1,23534:32187847,21400881:33858 -k1,23534:32583029,21400881:0 -) -(1,23534:7613813,22242369:24969216,513147,126484 -g1,23534:11960815,22242369 -g1,23534:12355997,22242369 -$1,23534:13541543,22242369 -g1,23534:13914442,22242369 -g1,23534:15782873,22242369 -g1,23534:17154541,22242369 -g1,23534:18163140,22242369 -g1,23534:18956781,22242369 -k1,23534:32583029,22242369:12448566 -g1,23534:32583029,22242369 -) -(1,23534:7613813,23083857:24969216,505283,134348 -(1,23534:7613813,23083857:-983040,0,0 -g1,23534:6630773,23083857 -g1,23534:5320053,23083857 -g1,23534:4992373,23083857 -(1,23534:4992373,23083857:1310720,0,0 -k1,23534:6303093,23083857:1310720 -) -g1,23534:6630773,23083857 -) -k1,23534:9662982,23083857:218093 -k1,23534:10518721,23083857:218074 -k1,23534:11398053,23083857:218074 -k1,23534:12807534,23083857:218036 -k1,23534:13644268,23083857:218074 -k1,23534:14391218,23083857:218074 -k1,23534:16659877,23083857:218037 -k1,23534:19059720,23083857:218149 -k1,23534:19359862,23083857:-13 -k1,23534:19359875,23083857:13 -k1,23534:20774599,23083857:218037 -k1,23534:23542641,23083857:218036 -k1,23534:26713730,23083857:218037 -k1,23534:29985182,23083857:218130 -k1,23534:32583029,23083857:0 -) -(1,23534:7613813,23925345:24969216,513147,126483 -k1,23534:9080836,23925345:199557 -k1,23534:9939684,23925345:199556 -k1,23534:11158326,23925345:199557 -k1,23534:12951718,23925345:199556 -k1,23534:18776885,23925345:199557 -k1,23534:21238090,23925345:199558 -k1,23534:22239154,23925345:199559 -k1,23534:26509151,23925345:199556 -k1,23534:27679297,23925345:199558 -k1,23534:28894007,23925345:199557 -k1,23534:32583029,23925345:0 -) -(1,23534:7613813,24766833:24969216,505283,126483 -g1,23534:9149976,24766833 -$1,23534:9149976,24766833 -g1,23534:9940340,24766833 -g1,23534:10335522,24766833 -g1,23534:11916250,24766833 -g1,23534:12311432,24766833 -$1,23534:15868070,24766833 -g1,23534:16067299,24766833 -g1,23534:17438967,24766833 -g1,23534:18447566,24766833 -g1,23534:19241207,24766833 -k1,23534:32583029,24766833:11765681 -g1,23534:32583029,24766833 -) -(1,23534:7613813,25608321:24969216,513147,134348 -(1,23534:7613813,25608321:-983040,0,0 -g1,23534:6630773,25608321 -g1,23534:5320053,25608321 -g1,23534:4992373,25608321 -(1,23534:4992373,25608321:1310720,0,0 -k1,23534:6303093,25608321:1310720 -) -g1,23534:6630773,25608321 -) -k1,23534:10503364,25608321:218304 -k1,23534:11294435,25608321:218286 -k1,23534:12292598,25608321:218285 -k1,23534:13702290,25608321:218247 -k1,23534:14469768,25608321:218286 -k1,23534:15138285,25608321:218285 -k1,23534:17717794,25608321:218247 -k1,23534:20117849,25608321:218361 -k1,23534:23118100,25608321:218248 -k1,23534:24982611,25608321:218247 -k1,23534:25803789,25608321:218247 -k1,23534:28169110,25608321:218362 -k1,23534:31120265,25608321:218304 -k1,23534:32583029,25608321:0 -) -(1,23534:7613813,26449809:24969216,505283,134348 -k1,23534:11325018,26449809:166363 -k1,23534:16571568,26449809:166199 -k1,23534:20070273,26449809:166199 -k1,23534:23432860,26449809:166396 -k1,23534:24794435,26449809:166198 -k1,23534:25975853,26449809:166265 -k1,23534:27314557,26449809:166265 -k1,23534:28290126,26449809:166199 -k1,23534:29471543,26449809:166264 -k1,23534:31006888,26449809:166298 -k1,23534:32583029,26449809:0 -k1,23534:32583029,26449809:0 -) -(1,23534:7613813,27291297:24969216,513147,134348 -(1,23534:7613813,27291297:-983040,0,0 -g1,23534:6630773,27291297 -g1,23534:5320053,27291297 -g1,23534:4992373,27291297 -(1,23534:4992373,27291297:1310720,0,0 -k1,23534:6303093,27291297:1310720 -) -g1,23534:6630773,27291297 -) -k1,23534:10242290,27291297:162357 -k1,23534:10977395,27291297:162320 -k1,23534:11919593,27291297:162320 -k1,23534:13273284,27291297:162246 -k1,23534:14054264,27291297:162320 -k1,23534:15533128,27291297:162246 -k1,23534:17877290,27291297:162468 -k1,23534:19227048,27291297:162246 -k1,23534:21875075,27291297:162246 -k1,23534:22653359,27291297:162246 -k1,23534:27379753,27291297:162467 -k1,23534:30211936,27291297:162246 -k1,23534:32583029,27291297:0 -) -(1,23534:7613813,28132785:24969216,505283,126483 -g1,23534:9008419,28132785 -g1,23534:10222801,28132785 -g1,23534:12013899,28132785 -g1,23534:16229830,28132785 -g1,23534:17601498,28132785 -g1,23534:18610097,28132785 -g1,23534:19403738,28132785 -k1,23534:32583029,28132785:12001609 -g1,23534:32583029,28132785 -) -(1,23534:7613813,28974273:24969216,505283,134348 -(1,23534:7613813,28974273:-983040,0,0 -g1,23534:6630773,28974273 -g1,23534:5320053,28974273 -g1,23534:4992373,28974273 -(1,23534:4992373,28974273:1310720,0,0 -k1,23534:6303093,28974273:1310720 -) -g1,23534:6630773,28974273 -) -k1,23534:8907311,28974273:137443 -k1,23534:9721680,28974273:137382 -k1,23534:10403666,28974273:137382 -k1,23534:12722988,28974273:137628 -k1,23534:13023130,28974273:-13 -k1,23534:13023143,28974273:13 -k1,23534:15579334,28974273:137257 -k1,23534:20543033,28974273:137628 -k1,23534:21482104,28974273:137566 -k1,23534:22806874,28974273:137258 -k1,23534:26089205,28974273:137258 -k1,23534:28625735,28974273:137257 -k1,23534:30305896,28974273:137443 -k1,23534:31458431,28974273:137382 -k1,23534:32583029,28974273:0 -) -(1,23534:7613813,29815761:24969216,505283,126483 -g1,23534:9008419,29815761 -g1,23534:10380087,29815761 -g1,23534:11388686,29815761 -g1,23534:12603068,29815761 -g1,23534:13772885,29815761 -k1,23534:32583030,29815761:17234004 -g1,23534:32583030,29815761 -) -(1,23534:7613813,30657249:24969216,505283,126483 -(1,23534:7613813,30657249:-983040,0,0 -g1,23534:6630773,30657249 -g1,23534:5320053,30657249 -g1,23534:4992373,30657249 -(1,23534:4992373,30657249:1310720,0,0 -k1,23534:6303093,30657249:1310720 -) -g1,23534:6630773,30657249 -) -k1,23534:9967366,30657249:312106 -k1,23534:10729593,30657249:311995 -k1,23534:12232807,30657249:311769 -k1,23534:12995033,30657249:311994 -k1,23534:15401334,30657249:311770 -k1,23534:17895472,30657249:312444 -k1,23534:19741439,30657249:311769 -k1,23534:24039109,30657249:311770 -k1,23534:27640805,30657249:312444 -k1,23534:30037611,30657249:312106 -k1,23534:32583029,30657249:0 -) -(1,23534:7613813,31498737:24969216,505283,126483 -g1,23534:9513046,31498737 -g1,23534:13115560,31498737 -g1,23534:14906658,31498737 -g1,23534:20285853,31498737 -g1,23534:21657521,31498737 -g1,23534:22666120,31498737 -g1,23534:23459761,31498737 -k1,23534:32583029,31498737:7547127 -g1,23534:32583029,31498737 -) -(1,23534:7613813,32340225:24969216,505283,173670 -(1,23534:7613813,32340225:-983040,0,0 -g1,23534:6630773,32340225 -g1,23534:5320053,32340225 -g1,23534:4992373,32340225 -(1,23534:4992373,32340225:1310720,0,0 -k1,23534:6303093,32340225:1310720 -) -g1,23534:6630773,32340225 -) -k1,23534:9671449,32340225:165612 -k1,23534:10375734,32340225:165579 -k1,23534:12723141,32340225:165713 -[1,23534:12862077,32340225:342688,473825,0 -(1,23534:12862077,32203583:342688,337183,0 -) -] -(1,23534:13431719,32513895:372900,473825,0 -) -k1,23534:14470993,32340225:165679 -k1,23534:15034964,32340225:165512 -k1,23534:18302294,32340225:165511 -k1,23534:22219741,32340225:165511 -k1,23534:24692321,32340225:165713 -k1,23534:27343159,32340225:165713 -k1,23534:28742713,32340225:165511 -k1,23534:29850178,32340225:165713 -k1,23534:32583029,32340225:0 -) -(1,23534:7613813,33181713:24969216,505283,126483 -g1,23534:13067063,33181713 -g1,23534:13860704,33181713 -g1,23534:15428980,33181713 -g1,23534:17220078,33181713 -g1,23534:22042872,33181713 -g1,23534:23414540,33181713 -g1,23534:24423139,33181713 -g1,23534:25216780,33181713 -k1,23534:32583029,33181713:5790108 -g1,23534:32583029,33181713 -) -(1,23534:7613813,34023201:24969216,513147,134348 -(1,23534:7613813,34023201:-983040,0,0 -g1,23534:6630773,34023201 -g1,23534:5320053,34023201 -g1,23534:4992373,34023201 -(1,23534:4992373,34023201:1310720,0,0 -k1,23534:6303093,34023201:1310720 -) -g1,23534:6630773,34023201 -) -k1,23534:9110216,34023201:313478 -k1,23534:9956388,34023201:313364 -k1,23534:12451902,34023201:313820 -k1,23534:12752044,34023201:-13 -k1,23534:12752057,34023201:13 -k1,23534:15855062,34023201:313137 -k1,23534:19563619,34023201:313137 -k1,23534:20536047,34023201:313136 -k1,23534:23933308,34023201:313137 -k1,23534:26572973,34023201:313137 -k1,23534:28621503,34023201:313137 -k1,23534:31193666,34023201:313137 -k1,23534:32583029,34023201:0 -) -(1,23534:7613813,34864689:24969216,505283,134348 -k1,23534:10826637,34864689:184405 -k1,23534:11812532,34864689:184390 -k1,23534:15733710,34864689:184315 -k1,23534:16520957,34864689:184316 -k1,23534:21391753,34864689:184316 -k1,23534:24480712,34864689:184404 -k1,23534:27755706,34864689:184316 -k1,23534:29707617,34864689:184405 -k1,23534:30857307,34864689:184345 -k1,23534:31803151,34864689:184316 -k1,23534:32583029,34864689:0 -) -(1,23534:7613813,35706177:24969216,505283,134348 -k1,23534:9984315,35706177:247791 -k1,23534:11423552,35706177:247792 -k1,23534:12244225,35706177:247888 -k1,23534:14310277,35706177:248083 -k1,23534:18169248,35706177:247937 -k1,23534:21458153,35706177:248034 -k1,23534:24137330,35706177:247791 -k1,23534:26587932,35706177:247937 -k1,23534:27850974,35706177:247889 -k1,23534:30991160,35706177:248082 -k1,23534:32583029,35706177:0 -) -(1,23534:7613813,36547665:24969216,505283,126483 -g1,23534:12436607,36547665 -g1,23534:13808275,36547665 -g1,23534:14816874,36547665 -g1,23534:15610515,36547665 -k1,23534:32583029,36547665:15794832 -g1,23534:32583029,36547665 -) -(1,23534:7613813,37389153:24969216,505283,134349 -(1,23534:7613813,37389153:-983040,0,0 -g1,23534:6630773,37389153 -g1,23534:5320053,37389153 -g1,23534:4992373,37389153 -(1,23534:4992373,37389153:1310720,0,0 -k1,23534:6303093,37389153:1310720 -) -g1,23534:6630773,37389153 -) -k1,23534:9231551,37389153:285391 -k1,23534:9967088,37389153:285305 -k1,23534:12434431,37389153:285649 -k1,23534:16510167,37389153:285134 -k1,23534:17419063,37389153:285649 -k1,23534:19074983,37389153:285563 -$1,23534:19074983,37389153 -k1,23534:21145096,37389153:94203 -k1,23534:21634481,37389153:94203 -k1,23534:22123866,37389153:94203 -k1,23534:22613250,37389153:94202 -k1,23534:24288181,37389153:94203 -k1,23534:24777566,37389153:94203 -k1,23534:25266951,37389153:94203 -(1,23534:25662133,37487467:32768,0,0 -) -k1,23534:25789103,37389153:94202 -k1,23534:28649580,37389153:94203 -k1,23534:29138965,37389153:94203 -k1,23534:30418714,37389153:94203 -k1,23534:30908098,37389153:94202 -k1,23534:32187847,37389153:94203 -k1,23534:32583029,37389153:0 -) -(1,23534:7613813,38230641:24969216,505283,98314 -g1,23534:10380087,38230641 -g1,23534:10775269,38230641 -g1,23534:12751179,38230641 -(1,23534:13146361,38328955:32768,0,0 -) -g1,23534:13179129,38230641 -g1,23534:16735767,38230641 -g1,23534:17130949,38230641 -g1,23534:17921313,38230641 -g1,23534:18316495,38230641 -g1,23534:20292405,38230641 -g1,23534:20687587,38230641 -$1,23534:22268315,38230641 -g1,23534:22467544,38230641 -g1,23534:24988714,38230641 -g1,23534:25997313,38230641 -k1,23534:32583029,38230641:2346192 -g1,23534:32583029,38230641 -) -(1,23534:7613813,39072129:24969216,513147,134348 -(1,23534:7613813,39072129:-983040,0,0 -g1,23534:6630773,39072129 -g1,23534:5320053,39072129 -g1,23534:4992373,39072129 -(1,23534:4992373,39072129:1310720,0,0 -k1,23534:6303093,39072129:1310720 -) -g1,23534:6630773,39072129 -) -k1,23534:9226018,39072129:159927 -k1,23534:10051752,39072129:159888 -k1,23534:12393491,39072129:160045 -k1,23534:13740812,39072129:159809 -k1,23534:14930847,39072129:159809 -k1,23534:15706694,39072129:159809 -k1,23534:16316080,39072129:159809 -k1,23534:21040013,39072129:160006 -k1,23534:21689376,39072129:159809 -k1,23534:23371586,39072129:159809 -k1,23534:24147433,39072129:159809 -k1,23534:27337627,39072129:159809 -k1,23534:30279439,39072129:159809 -k1,23534:32583029,39072129:0 -) -(1,23534:7613813,39913617:24969216,505283,126483 -g1,23534:8699744,39913617 -g1,23534:10903719,39913617 -g1,23534:12948442,39913617 -g1,23534:13742083,39913617 -g1,23534:15310359,39913617 -g1,23534:17101457,39913617 -g1,23534:21285275,39913617 -g1,23534:22656943,39913617 -g1,23534:23665542,39913617 -g1,23534:24879924,39913617 -g1,23534:26049741,39913617 -g1,23534:27618017,39913617 -g1,23534:29186293,39913617 -k1,23534:32583029,39913617:1820595 -g1,23534:32583029,39913617 -) -(1,23534:7613813,40755105:24969216,505283,126483 -(1,23534:7613813,40755105:-983040,0,0 -g1,23534:6630773,40755105 -g1,23534:5320053,40755105 -g1,23534:4992373,40755105 -(1,23534:4992373,40755105:1310720,0,0 -k1,23534:6303093,40755105:1310720 -) -g1,23534:6630773,40755105 -) -k1,23534:9467578,40755105:350369 -k1,23534:10366989,40755105:350219 -k1,23534:12899504,40755105:350821 -k1,23534:13698999,40755105:349918 -k1,23534:17034329,40755105:350821 -k1,23534:18618291,40755105:349919 -k1,23534:19910864,40755105:350821 -k1,23534:23298376,40755105:349918 -k1,23534:24839739,40755105:349918 -k1,23534:28326661,40755105:350369 -k1,23534:29271292,40755105:350219 -k1,23534:30991160,40755105:350821 -k1,23534:32583029,40755105:0 -) -(1,23534:7613813,41596593:24969216,505283,126483 -g1,23534:11797631,41596593 -g1,23534:13169299,41596593 -g1,23534:14177898,41596593 -g1,23534:14971539,41596593 -k1,23534:32583029,41596593:16035349 -g1,23534:32583029,41596593 -) -(1,23534:7613813,42438081:24969216,505283,126483 -(1,23534:7613813,42438081:-983040,0,0 -g1,23534:6630773,42438081 -g1,23534:5320053,42438081 -g1,23534:4992373,42438081 -(1,23534:4992373,42438081:1310720,0,0 -k1,23534:6303093,42438081:1310720 -) -g1,23534:6630773,42438081 -) -(1,23534:6630773,42438081:983040,211026,0 -k1,23534:7613813,42438081:327680 -) -k1,23534:10091285,42438081:295778 -k1,23534:10836065,42438081:295203 -k1,23534:14116351,42438081:295777 -k1,23534:15519112,42438081:295203 -k1,23534:16756642,42438081:295778 -k1,23534:19937874,42438081:295682 -k1,23534:23270671,42438081:295203 -k1,23534:24757319,42438081:295203 -k1,23534:28189650,42438081:295778 -k1,23534:29680229,42438081:295202 -k1,23534:30991160,42438081:295778 -k1,23534:32583029,42438081:0 -) -(1,23534:7613813,43279569:24969216,505283,126483 -g1,23534:11797631,43279569 -g1,23534:13169299,43279569 -g1,23534:14177898,43279569 -g1,23534:15392280,43279569 -g1,23534:16960556,43279569 -k1,23534:32583029,43279569:14046332 -g1,23534:32583029,43279569 -) -(1,23534:7613813,44121057:24969216,505283,134348 -(1,23534:7613813,44121057:-983040,0,0 -g1,23534:6630773,44121057 -g1,23534:5320053,44121057 -g1,23534:4992373,44121057 -(1,23534:4992373,44121057:1310720,0,0 -k1,23534:6303093,44121057:1310720 -) -g1,23534:6630773,44121057 -) -k1,23534:9760477,44121057:204832 -k1,23534:10594450,44121057:204827 -k1,23534:11990711,44121057:204816 -k1,23534:12768323,44121057:204827 -k1,23534:16380355,44121057:204815 -k1,23534:18245853,44121057:204816 -k1,23534:19022814,44121057:204832 -k1,23534:21202263,44121057:204849 -k1,23534:24238890,44121057:204816 -k1,23534:25429367,44121057:204816 -k1,23534:27125126,44121057:204815 -k1,23534:28995244,44121057:204849 -k1,23534:31647830,44121057:204816 -k1,23534:32583029,44121057:0 -) -(1,23534:7613813,44962545:24969216,505283,126483 -g1,23534:9029390,44962545 -g1,23534:10423996,44962545 -g1,23534:11638378,44962545 -g1,23534:13429476,44962545 -g1,23534:17613294,44962545 -g1,23534:18984962,44962545 -g1,23534:19993561,44962545 -g1,23534:20787202,44962545 -k1,23534:32583029,44962545:10618145 -g1,23534:32583029,44962545 -) -] -(1,23534:32583029,45706769:0,0,0 -g1,23534:32583029,45706769 -) -) -] -(1,23534:6630773,47279633:25952256,0,0 -h1,23534:6630773,47279633:25952256,0,0 -) -] -(1,23534:4262630,4025873:0,0,0 -[1,23534:-473656,4025873:0,0,0 -(1,23534:-473656,-710413:0,0,0 -(1,23534:-473656,-710413:0,0,0 -g1,23534:-473656,-710413 -) -g1,23534:-473656,-710413 -) -] -) -] -!28095 -}429 -!12 -{430 -[1,23535:4262630,47279633:28320399,43253760,0 -(1,23535:4262630,4025873:0,0,0 -[1,23535:-473656,4025873:0,0,0 -(1,23535:-473656,-710413:0,0,0 -(1,23535:-473656,-644877:0,0,0 -k1,23535:-473656,-644877:-65536 +!3399 +}413 +Input:3763:C:\Users\aphalo_2\Documents\Own_manuscripts\Books\learnr-book-crc\using-r-main-crc.ind +!109 +{414 +[3763,79:4262630,47279633:28320399,43253760,11795 +(3763,79:4262630,4025873:0,0,0 +[3763,79:-473656,4025873:0,0,0 +(3763,79:-473656,-710413:0,0,0 +(3763,79:-473656,-644877:0,0,0 +k3763,79:-473656,-644877:-65536 ) -(1,23535:-473656,4736287:0,0,0 -k1,23535:-473656,4736287:5209943 +(3763,79:-473656,4736287:0,0,0 +k3763,79:-473656,4736287:5209943 ) -g1,23535:-473656,-710413 +g3763,79:-473656,-710413 ) ] ) -[1,23535:6630773,47279633:25952256,43253760,0 -[1,23535:6630773,4812305:25952256,786432,0 -(1,23535:6630773,4812305:25952256,505283,134348 -(1,23535:6630773,4812305:25952256,505283,134348 -g1,23535:3078558,4812305 -[1,23535:3078558,4812305:0,0,0 -(1,23535:3078558,2439708:0,1703936,0 -k1,23535:1358238,2439708:-1720320 -(1,21457:1358238,2439708:1720320,1703936,0 -(1,21457:1358238,2439708:1179648,16384,0 -r1,23535:2537886,2439708:1179648,16384,0 +[3763,79:6630773,47279633:25952256,43253760,11795 +[3763,79:6630773,4812305:25952256,786432,0 +(3763,79:6630773,4812305:25952256,0,0 +(3763,79:6630773,4812305:25952256,0,0 +g3763,79:3078558,4812305 +[3763,79:3078558,4812305:0,0,0 +(3763,79:3078558,2439708:0,1703936,0 +k3763,79:1358238,2439708:-1720320 +(3763,1:1358238,2439708:1720320,1703936,0 +(3763,1:1358238,2439708:1179648,16384,0 +r3763,79:2537886,2439708:1179648,16384,0 ) -g1,21457:3062174,2439708 -(1,21457:3062174,2439708:16384,1703936,0 -[1,21457:3062174,2439708:25952256,1703936,0 -(1,21457:3062174,1915420:25952256,1179648,0 -(1,21457:3062174,1915420:16384,1179648,0 -r1,23535:3078558,1915420:16384,1179648,0 +g3763,1:3062174,2439708 +(3763,1:3062174,2439708:16384,1703936,0 +[3763,1:3062174,2439708:25952256,1703936,0 +(3763,1:3062174,1915420:25952256,1179648,0 +(3763,1:3062174,1915420:16384,1179648,0 +r3763,79:3078558,1915420:16384,1179648,0 ) -k1,21457:29014430,1915420:25935872 -g1,21457:29014430,1915420 +k3763,1:29014430,1915420:25935872 +g3763,1:29014430,1915420 ) ] ) ) ) ] -[1,23535:3078558,4812305:0,0,0 -(1,23535:3078558,2439708:0,1703936,0 -g1,23535:29030814,2439708 -g1,23535:36135244,2439708 -(1,21457:36135244,2439708:1720320,1703936,0 -(1,21457:36135244,2439708:16384,1703936,0 -[1,21457:36135244,2439708:25952256,1703936,0 -(1,21457:36135244,1915420:25952256,1179648,0 -(1,21457:36135244,1915420:16384,1179648,0 -r1,23535:36151628,1915420:16384,1179648,0 +[3763,79:3078558,4812305:0,0,0 +(3763,79:3078558,2439708:0,1703936,0 +g3763,79:29030814,2439708 +g3763,79:36135244,2439708 +(3763,1:36135244,2439708:1720320,1703936,0 +(3763,1:36135244,2439708:16384,1703936,0 +[3763,1:36135244,2439708:25952256,1703936,0 +(3763,1:36135244,1915420:25952256,1179648,0 +(3763,1:36135244,1915420:16384,1179648,0 +r3763,79:36151628,1915420:16384,1179648,0 ) -k1,21457:62087500,1915420:25935872 -g1,21457:62087500,1915420 +k3763,1:62087500,1915420:25935872 +g3763,1:62087500,1915420 ) ] ) -g1,21457:36675916,2439708 -(1,21457:36675916,2439708:1179648,16384,0 -r1,23535:37855564,2439708:1179648,16384,0 +g3763,1:36675916,2439708 +(3763,1:36675916,2439708:1179648,16384,0 +r3763,79:37855564,2439708:1179648,16384,0 ) ) -k1,23535:3078556,2439708:-34777008 +k3763,79:3078556,2439708:-34777008 ) ] -[1,23535:3078558,4812305:0,0,0 -(1,23535:3078558,49800853:0,16384,2228224 -k1,23535:1358238,49800853:-1720320 -(1,21457:1358238,49800853:1720320,16384,2228224 -(1,21457:1358238,49800853:1179648,16384,0 -r1,23535:2537886,49800853:1179648,16384,0 +[3763,79:3078558,4812305:0,0,0 +(3763,79:3078558,49800853:0,16384,2228224 +k3763,79:1358238,49800853:-1720320 +(3763,1:1358238,49800853:1720320,16384,2228224 +(3763,1:1358238,49800853:1179648,16384,0 +r3763,79:2537886,49800853:1179648,16384,0 ) -g1,21457:3062174,49800853 -(1,21457:3062174,52029077:16384,1703936,0 -[1,21457:3062174,52029077:25952256,1703936,0 -(1,21457:3062174,51504789:25952256,1179648,0 -(1,21457:3062174,51504789:16384,1179648,0 -r1,23535:3078558,51504789:16384,1179648,0 +g3763,1:3062174,49800853 +(3763,1:3062174,52029077:16384,1703936,0 +[3763,1:3062174,52029077:25952256,1703936,0 +(3763,1:3062174,51504789:25952256,1179648,0 +(3763,1:3062174,51504789:16384,1179648,0 +r3763,79:3078558,51504789:16384,1179648,0 ) -k1,21457:29014430,51504789:25935872 -g1,21457:29014430,51504789 +k3763,1:29014430,51504789:25935872 +g3763,1:29014430,51504789 ) ] ) ) ) ] -[1,23535:3078558,4812305:0,0,0 -(1,23535:3078558,49800853:0,16384,2228224 -g1,23535:29030814,49800853 -g1,23535:36135244,49800853 -(1,21457:36135244,49800853:1720320,16384,2228224 -(1,21457:36135244,52029077:16384,1703936,0 -[1,21457:36135244,52029077:25952256,1703936,0 -(1,21457:36135244,51504789:25952256,1179648,0 -(1,21457:36135244,51504789:16384,1179648,0 -r1,23535:36151628,51504789:16384,1179648,0 -) -k1,21457:62087500,51504789:25935872 -g1,21457:62087500,51504789 -) -] -) -g1,21457:36675916,49800853 -(1,21457:36675916,49800853:1179648,16384,0 -r1,23535:37855564,49800853:1179648,16384,0 -) -) -k1,23535:3078556,49800853:-34777008 -) -] -g1,23535:6630773,4812305 -g1,23535:6630773,4812305 -g1,23535:10831630,4812305 -k1,23535:31387652,4812305:20556022 -) -) -] -[1,23535:6630773,45706769:25952256,40108032,0 -(1,23535:6630773,45706769:25952256,40108032,0 -(1,23535:6630773,45706769:0,0,0 -g1,23535:6630773,45706769 -) -[1,23535:6630773,45706769:25952256,40108032,0 -(1,23534:7613813,6254097:24969216,513147,134348 -(1,23534:7613813,6254097:-983040,0,0 -g1,23534:6630773,6254097 -g1,23534:5320053,6254097 -g1,23534:4992373,6254097 -(1,23534:4992373,6254097:1310720,0,0 -k1,23534:6303093,6254097:1310720 -) -g1,23534:6630773,6254097 -) -k1,23534:8485046,6254097:168687 -k1,23534:9272362,6254097:168656 -k1,23534:10118005,6254097:168656 -k1,23534:12468477,6254097:168778 -k1,23534:13086649,6254097:168595 -k1,23534:17645501,6254097:168595 -k1,23534:18738154,6254097:168595 -k1,23534:20440947,6254097:168595 -k1,23534:23063393,6254097:168778 -k1,23534:26124930,6254097:168778 -k1,23534:27488901,6254097:168594 -k1,23534:28672832,6254097:168778 -k1,23534:30211937,6254097:168748 -$1,23534:30211937,6254097 -k1,23534:32187847,6254097:0 -k1,23534:32583029,6254097:0 -) -(1,23534:7613813,7095585:24969216,505283,134349 -k1,23534:8051613,7095585:42618 -k1,23534:8489413,7095585:42618 -k1,23534:11298305,7095585:42618 -k1,23534:11736105,7095585:42618 -k1,23534:12964268,7095585:42617 -k1,23534:13402068,7095585:42618 -$1,23534:18144252,7095585 -k1,23534:18382345,7095585:238093 -k1,23534:20942379,7095585:238093 -k1,23534:21989842,7095585:238093 -k1,23534:26293789,7095585:238093 -k1,23534:27704398,7095585:238170 -k1,23534:28751861,7095585:238093 -k1,23534:30005185,7095585:238171 -k1,23534:31213982,7095585:238209 -k1,23534:32583029,7095585:0 -) -(1,23534:7613813,7937073:24969216,505283,95026 -k1,23534:32583030,7937073:23393076 -g1,23534:32583030,7937073 -) -(1,23534:7613813,8778561:24969216,513147,126483 -(1,23534:7613813,8778561:-983040,0,0 -g1,23534:6630773,8778561 -g1,23534:5320053,8778561 -g1,23534:4992373,8778561 -(1,23534:4992373,8778561:1310720,0,0 -k1,23534:6303093,8778561:1310720 -) -g1,23534:6630773,8778561 -) -k1,23534:9716403,8778561:274135 -k1,23534:10440696,8778561:274061 -k1,23534:11343902,8778561:274060 -k1,23534:12809259,8778561:273912 -k1,23534:13760306,8778561:274060 -k1,23534:14771647,8778561:274061 -k1,23534:16735077,8778561:273912 -k1,23534:19191130,8778561:274359 -k1,23534:23521064,8778561:273911 -k1,23534:25944557,8778561:273912 -k1,23534:26821399,8778561:273911 -k1,23534:27455104,8778561:273912 -k1,23534:28939465,8778561:273911 -k1,23534:31222502,8778561:274359 -k1,23534:32583029,8778561:0 -) -(1,23534:7613813,9620049:24969216,505283,134348 -g1,23534:9506492,9620049 -g1,23534:12395974,9620049 -g1,23534:13767642,9620049 -g1,23534:14776241,9620049 -g1,23534:15990623,9620049 -g1,23534:17558899,9620049 -k1,23534:32583029,9620049:13447989 -g1,23534:32583029,9620049 -) -(1,23534:7613813,10461537:24969216,505283,134348 -(1,23534:7613813,10461537:-983040,0,0 -g1,23534:6630773,10461537 -g1,23534:5320053,10461537 -g1,23534:4992373,10461537 -(1,23534:4992373,10461537:1310720,0,0 -k1,23534:6303093,10461537:1310720 -) -g1,23534:6630773,10461537 -) -k1,23534:9506865,10461537:234336 -k1,23534:10191399,10461537:234302 -k1,23534:12607534,10461537:234441 -k1,23534:16138882,10461537:234232 -k1,23534:17907312,10461537:234232 -k1,23534:20764295,10461537:234232 -k1,23534:22361675,10461537:234231 -k1,23534:23045484,10461537:234232 -k1,23534:24490166,10461537:234232 -k1,23534:27650789,10461537:234441 -k1,23534:32583029,10461537:0 -) -(1,23534:7613813,11303025:24969216,505283,126483 -g1,23534:9173569,11303025 -g1,23534:11066248,11303025 -g1,23534:11859889,11303025 -g1,23534:13428165,11303025 -g1,23534:15219263,11303025 -g1,23534:20598458,11303025 -g1,23534:21970126,11303025 -g1,23534:22978725,11303025 -g1,23534:23772366,11303025 -k1,23534:32583029,11303025:7234522 -g1,23534:32583029,11303025 -) -(1,23534:7613813,12144513:24969216,505283,134348 -(1,23534:7613813,12144513:-983040,0,0 -g1,23534:6630773,12144513 -g1,23534:5320053,12144513 -g1,23534:4992373,12144513 -(1,23534:4992373,12144513:1310720,0,0 -k1,23534:6303093,12144513:1310720 -) -g1,23534:6630773,12144513 -) -k1,23534:9062288,12144513:221641 -k1,23534:9960893,12144513:221618 -k1,23534:12364295,12144513:221708 -k1,23534:14846318,12144513:221686 -k1,23534:18891262,12144513:221574 -k1,23534:20647034,12144513:221574 -k1,23534:24918733,12144513:221574 -k1,23534:26503456,12144513:221574 -k1,23534:27348411,12144513:221708 -k1,23534:28555646,12144513:221574 -k1,23534:29719106,12144513:221708 -k1,23534:32583029,12144513:0 -) -(1,23534:7613813,12986001:24969216,505283,126483 -g1,23534:8407454,12986001 -g1,23534:9975730,12986001 -g1,23534:11766828,12986001 -g1,23534:15950646,12986001 -g1,23534:17322314,12986001 -g1,23534:18330913,12986001 -g1,23534:19545295,12986001 -g1,23534:21113571,12986001 -g1,23534:22681847,12986001 -k1,23534:32583029,12986001:8325041 -g1,23534:32583029,12986001 -) -(1,23534:7613813,13827489:24969216,513147,134348 -(1,23534:7613813,13827489:-983040,0,0 -g1,23534:6630773,13827489 -g1,23534:5320053,13827489 -g1,23534:4992373,13827489 -(1,23534:4992373,13827489:1310720,0,0 -k1,23534:6303093,13827489:1310720 -) -g1,23534:6630773,13827489 -) -k1,23534:8882183,13827489:229624 -k1,23534:9790729,13827489:229593 -k1,23534:10553131,13827489:229594 -k1,23534:12964539,13827489:229714 -k1,23534:13264681,13827489:-13 -k1,23534:13264694,13827489:13 -k1,23534:17951331,13827489:229533 -k1,23534:18840156,13827489:229533 -k1,23534:21843173,13827489:229533 -k1,23534:25217123,13827489:229533 -k1,23534:27514972,13827489:229533 -k1,23534:28935950,13827489:229533 -k1,23534:32583029,13827489:0 -) -(1,23534:7613813,14668977:24969216,513147,126483 -g1,23534:8429080,14668977 -g1,23534:11182902,14668977 -g1,23534:12041423,14668977 -g1,23534:16096790,14668977 -g1,23534:17097524,14668977 -g1,23534:20568966,14668977 -g1,23534:21738783,14668977 -g1,23534:22953165,14668977 -g1,23534:25870828,14668977 -g1,23534:27242496,14668977 -g1,23534:28251095,14668977 -g1,23534:29044736,14668977 -k1,23534:32583029,14668977:1962152 -g1,23534:32583029,14668977 -) -(1,23534:7613813,15510465:24969216,513147,126483 -(1,23534:7613813,15510465:-983040,0,0 -g1,23534:6630773,15510465 -g1,23534:5320053,15510465 -g1,23534:4992373,15510465 -(1,23534:4992373,15510465:1310720,0,0 -k1,23534:6303093,15510465:1310720 -) -g1,23534:6630773,15510465 -) -k1,23534:8774329,15510465:251532 -k1,23534:9570412,15510465:251479 -k1,23534:10440552,15510465:251480 -k1,23534:12873934,15510465:251688 -k1,23534:14312822,15510465:251376 -k1,23534:16472605,15510465:251375 -k1,23534:19058373,15510465:251376 -k1,23534:19925787,15510465:251376 -k1,23534:24098836,15510465:251375 -k1,23534:28294480,15510465:251688 -k1,23534:31519380,15510465:251532 -k1,23534:32583029,15510465:0 -) -(1,23534:7613813,16351953:24969216,505283,126483 -g1,23534:10637644,16351953 -g1,23534:12682367,16351953 -g1,23534:14076973,16351953 -g1,23534:15291355,16351953 -g1,23534:17082453,16351953 -g1,23534:21937360,16351953 -g1,23534:23309028,16351953 -g1,23534:24317627,16351953 -g1,23534:25111268,16351953 -k1,23534:32583029,16351953:5895620 -g1,23534:32583029,16351953 -) -(1,23534:7613813,17193441:24969216,505283,126483 -(1,23534:7613813,17193441:-983040,0,0 -g1,23534:6630773,17193441 -g1,23534:5320053,17193441 -g1,23534:4992373,17193441 -(1,23534:4992373,17193441:1310720,0,0 -k1,23534:6303093,17193441:1310720 -) -g1,23534:6630773,17193441 -) -k1,23534:9866757,17193441:202978 -k1,23534:10849609,17193441:202974 -k1,23534:11718429,17193441:202974 -k1,23534:13112840,17193441:202966 -k1,23534:13888599,17193441:202974 -k1,23534:14768560,17193441:202974 -k1,23534:16952025,17193441:202967 -k1,23534:19336708,17193441:202989 -k1,23534:21933049,17193441:202966 -k1,23534:24539221,17193441:202967 -k1,23534:27473073,17193441:202967 -k1,23534:29039188,17193441:202966 -k1,23534:29775640,17193441:202989 -k1,23534:31222502,17193441:202989 -k1,23534:32583029,17193441:0 -) -(1,23534:7613813,18034929:24969216,505283,134348 -g1,23534:9506492,18034929 -g1,23534:12569644,18034929 -g1,23534:14360742,18034929 -g1,23534:19183536,18034929 -g1,23534:20555204,18034929 -g1,23534:21563803,18034929 -g1,23534:22778185,18034929 -g1,23534:24346461,18034929 -k1,23534:32583029,18034929:6660427 -g1,23534:32583029,18034929 -) -(1,23534:7613813,18876417:24969216,505283,134348 -(1,23534:7613813,18876417:-983040,0,0 -g1,23534:6630773,18876417 -g1,23534:5320053,18876417 -g1,23534:4992373,18876417 -(1,23534:4992373,18876417:1310720,0,0 -k1,23534:6303093,18876417:1310720 -) -g1,23534:6630773,18876417 -) -k1,23534:10050834,18876417:322174 -k1,23534:11051840,18876417:322053 -k1,23534:13556076,18876417:322542 -k1,23534:14327460,18876417:321807 -k1,23534:17708567,18876417:322542 -k1,23534:20478145,18876417:321808 -k1,23534:22863105,18876417:322542 -k1,23534:24777394,18876417:322420 -k1,23534:30279168,18876417:321808 -k1,23534:31773659,18876417:322052 -k1,23534:32583029,18876417:0 -) -(1,23534:7613813,19717905:24969216,505283,126483 -g1,23534:8828195,19717905 -g1,23534:10396471,19717905 -k1,23534:32583028,19717905:20610416 -g1,23534:32583028,19717905 -) -(1,23534:7613813,20559393:24969216,505283,126483 -(1,23534:7613813,20559393:-983040,0,0 -g1,23534:6630773,20559393 -g1,23534:5320053,20559393 -g1,23534:4992373,20559393 -(1,23534:4992373,20559393:1310720,0,0 -k1,23534:6303093,20559393:1310720 -) -g1,23534:6630773,20559393 -) -k1,23534:9970655,20559393:241995 -k1,23534:10891560,20559393:241952 -k1,23534:13315377,20559393:242123 -k1,23534:16680035,20559393:241867 -k1,23534:17545405,20559393:242123 -k1,23534:19021316,20559393:241868 -k1,23534:20205190,20559393:242122 -k1,23534:23484652,20559393:241868 -k1,23534:24917964,20559393:241867 -k1,23534:28296640,20559393:242123 -k1,23534:29733884,20559393:241867 -k1,23534:30991160,20559393:242123 -k1,23534:32583029,20559393:0 -) -(1,23534:7613813,21400881:24969216,505283,126483 -g1,23534:11797631,21400881 -g1,23534:13169299,21400881 -g1,23534:14177898,21400881 -g1,23534:15392280,21400881 -g1,23534:16960556,21400881 -k1,23534:32583029,21400881:14046332 -g1,23534:32583029,21400881 -) -(1,23534:7613813,22242369:24969216,513147,126483 -(1,23534:7613813,22242369:-983040,0,0 -g1,23534:6630773,22242369 -g1,23534:5320053,22242369 -g1,23534:4992373,22242369 -(1,23534:4992373,22242369:1310720,0,0 -k1,23534:6303093,22242369:1310720 -) -g1,23534:6630773,22242369 -) -k1,23534:10082988,22242369:354328 -k1,23534:11289940,22242369:354329 -k1,23534:12381395,22242369:354175 -k1,23534:18511411,22242369:354328 -k1,23534:20056722,22242369:353866 -k1,23534:21064291,22242369:354175 -k1,23534:25003632,22242369:353866 -k1,23534:27540118,22242369:354792 -k1,23534:28343561,22242369:353866 -k1,23534:29621485,22242369:353866 -k1,23534:31509549,22242369:353866 -k1,23534:32583029,22242369:0 -) -(1,23534:7613813,23083857:24969216,513147,126483 -k1,23534:9409927,23083857:210798 -k1,23534:11932146,23083857:210764 -k1,23534:13704633,23083857:210764 -k1,23534:17474657,23083857:210764 -k1,23534:20647647,23083857:210763 -k1,23534:22068827,23083857:210730 -k1,23534:24140778,23083857:210729 -k1,23534:26059444,23083857:210798 -k1,23534:28717944,23083857:210730 -k1,23534:30991160,23083857:210798 -k1,23534:32583029,23083857:0 -) -(1,23534:7613813,23925345:24969216,505283,126483 -g1,23534:12993008,23925345 -g1,23534:14364676,23925345 -g1,23534:15373275,23925345 -g1,23534:16166916,23925345 -k1,23534:32583029,23925345:14839972 -g1,23534:32583029,23925345 -) -(1,23534:7613813,24766833:24969216,513147,126483 -(1,23534:7613813,24766833:-983040,0,0 -g1,23534:6630773,24766833 -g1,23534:5320053,24766833 -g1,23534:4992373,24766833 -(1,23534:4992373,24766833:1310720,0,0 -k1,23534:6303093,24766833:1310720 -) -g1,23534:6630773,24766833 -) -k1,23534:9960289,24766833:231629 -k1,23534:10870838,24766833:231596 -k1,23534:12293815,24766833:231532 -k1,23534:13178805,24766833:231596 -k1,23534:16995812,24766833:231532 -k1,23534:19409232,24766833:231726 -k1,23534:20090341,24766833:231532 -k1,23534:21245930,24766833:231531 -k1,23534:23011660,24766833:231532 -k1,23534:25697054,24766833:231726 -k1,23534:28376356,24766833:231532 -k1,23534:29543087,24766833:231532 -k1,23534:30991160,24766833:231725 -k1,23534:32583029,24766833:0 -) -(1,23534:7613813,25608321:24969216,505283,126483 -g1,23534:11797631,25608321 -g1,23534:13169299,25608321 -g1,23534:14177898,25608321 -g1,23534:14971539,25608321 -k1,23534:32583029,25608321:16035349 -g1,23534:32583029,25608321 -) -(1,23534:7613813,26449809:24969216,513147,134348 -(1,23534:7613813,26449809:-983040,0,0 -g1,23534:6630773,26449809 -g1,23534:5320053,26449809 -g1,23534:4992373,26449809 -(1,23534:4992373,26449809:1310720,0,0 -k1,23534:6303093,26449809:1310720 -) -g1,23534:6630773,26449809 -) -k1,23534:10007355,26449809:278695 -k1,23534:10964924,26449809:278616 -k1,23534:12434827,26449809:278458 -k1,23534:13342589,26449809:278616 -k1,23534:15774560,26449809:278458 -k1,23534:18235187,26449809:278933 -k1,23534:21062736,26449809:278854 -k1,23534:23682139,26449809:278457 -k1,23534:26771436,26449809:278458 -k1,23534:27973952,26449809:278458 -k1,23534:29786608,26449809:278458 -k1,23534:32583029,26449809:0 -) -(1,23534:7613813,27291297:24969216,505283,134348 -k1,23534:9014133,27291297:166277 -k1,23534:10122359,27291297:166474 -k1,23534:13152757,27291297:166475 -k1,23534:14420694,27291297:166277 -k1,23534:15155168,27291297:166277 -k1,23534:16690689,27291297:166474 -k1,23534:18448999,27291297:166441 -k1,23534:24647211,27291297:166278 -k1,23534:25985993,27291297:166343 -k1,23534:26961640,27291297:166277 -k1,23534:28143136,27291297:166343 -k1,23534:29678559,27291297:166376 -k1,23534:31213982,27291297:166376 -k1,23534:32583029,27291297:0 -) -(1,23534:7613813,28132785:24969216,505283,95026 -k1,23534:32583030,28132785:23393076 -g1,23534:32583030,28132785 -) -(1,23534:7613813,28974273:24969216,513147,134348 -(1,23534:7613813,28974273:-983040,0,0 -g1,23534:6630773,28974273 -g1,23534:5320053,28974273 -g1,23534:4992373,28974273 -(1,23534:4992373,28974273:1310720,0,0 -k1,23534:6303093,28974273:1310720 -) -g1,23534:6630773,28974273 -) -k1,23534:8897826,28974273:325877 -k1,23534:9889424,28974273:325752 -k1,23534:12397374,28974273:326256 -k1,23534:16213977,28974273:325500 -k1,23534:17107673,28974273:325499 -k1,23534:18967370,28974273:325499 -k1,23534:22506756,28974273:325500 -k1,23534:23400452,28974273:325499 -k1,23534:26962876,28974273:326257 -k1,23534:30731637,28974273:325499 -k1,23534:32583029,28974273:0 -) -(1,23534:7613813,29815761:24969216,505283,126483 -g1,23534:12036182,29815761 -g1,23534:12829823,29815761 -k1,23534:32583030,29815761:18384160 -g1,23534:32583030,29815761 -) -(1,23534:7613813,30657249:24969216,505283,126483 -(1,23534:7613813,30657249:-983040,0,0 -g1,23534:6630773,30657249 -g1,23534:5320053,30657249 -g1,23534:4992373,30657249 -(1,23534:4992373,30657249:1310720,0,0 -k1,23534:6303093,30657249:1310720 -) -g1,23534:6630773,30657249 -) -k1,23534:8831480,30657249:211034 -k1,23534:9571379,30657249:211023 -k1,23534:10448247,30657249:211022 -k1,23534:12841010,30657249:211069 -k1,23534:16814431,30657249:210999 -k1,23534:19628520,30657249:210999 -k1,23534:22162841,30657249:211070 -k1,23534:25411434,30657249:210999 -k1,23534:26813878,30657249:210999 -k1,23534:30161500,30657249:211069 -k1,23534:31567876,30657249:210999 -k1,23534:32583029,30657249:0 -) -(1,23534:7613813,31498737:24969216,505283,126483 -g1,23534:9404911,31498737 -g1,23534:13588729,31498737 -g1,23534:14960397,31498737 -g1,23534:15968996,31498737 -g1,23534:17183378,31498737 -g1,23534:18751654,31498737 -k1,23534:32583029,31498737:12255234 -g1,23534:32583029,31498737 -) -(1,23534:7613813,32340225:24969216,505283,126483 -(1,23534:7613813,32340225:-983040,0,0 -g1,23534:6630773,32340225 -g1,23534:5320053,32340225 -g1,23534:4992373,32340225 -(1,23534:4992373,32340225:1310720,0,0 -k1,23534:6303093,32340225:1310720 -) -g1,23534:6630773,32340225 -) -k1,23534:8019929,32340225:236378 -k1,23534:8874275,32340225:236341 -k1,23534:11292459,32340225:236490 -k1,23534:14338254,32340225:236267 -k1,23534:18070867,32340225:236267 -k1,23534:19670284,32340225:236268 -k1,23534:20356128,32340225:236267 -k1,23534:21802845,32340225:236267 -k1,23534:23723610,32340225:236490 -k1,23534:25156564,32340225:236267 -k1,23534:25837820,32340225:236267 -k1,23534:28117723,32340225:236490 -k1,23534:31391584,32340225:236267 -k1,23534:32583029,32340225:0 -) -(1,23534:7613813,33181713:24969216,505283,126483 -g1,23534:10949595,33181713 -g1,23534:11743236,33181713 -g1,23534:13311512,33181713 -g1,23534:15102610,33181713 -g1,23534:19286428,33181713 -g1,23534:20658096,33181713 -g1,23534:21666695,33181713 -g1,23534:22881077,33181713 -g1,23534:24050894,33181713 -g1,23534:25220711,33181713 -k1,23534:32583029,33181713:5786177 -g1,23534:32583029,33181713 -) -(1,23534:7613813,34023201:24969216,505283,134348 -(1,23534:7613813,34023201:-983040,0,0 -g1,23534:6630773,34023201 -g1,23534:5320053,34023201 -g1,23534:4992373,34023201 -(1,23534:4992373,34023201:1310720,0,0 -k1,23534:6303093,34023201:1310720 -) -g1,23534:6630773,34023201 -) -(1,23534:6630773,34023201:983040,211026,0 -k1,23534:7613813,34023201:327680 -) -k1,23534:9945891,34023201:150384 -k1,23534:13468053,34023201:150335 -k1,23534:16839238,34023201:150090 -k1,23534:18775840,34023201:150091 -k1,23534:20136380,34023201:150090 -k1,23534:23303092,34023201:150090 -k1,23534:26949528,34023201:150090 -k1,23534:28462768,34023201:150091 -k1,23534:29062435,34023201:150090 -k1,23534:32583029,34023201:0 -) -(1,23534:7613813,34864689:24969216,505283,126483 -g1,23534:10850636,34864689 -g1,23534:12241310,34864689 -g1,23534:15577092,34864689 -g1,23534:17368190,34864689 -g1,23534:22747385,34864689 -g1,23534:24119053,34864689 -g1,23534:25127652,34864689 -g1,23534:25921293,34864689 -k1,23534:32583029,34864689:5085595 -g1,23534:32583029,34864689 -) -(1,23534:7613813,35706177:24969216,505283,126483 -(1,23534:7613813,35706177:-983040,0,0 -g1,23534:6630773,35706177 -g1,23534:5320053,35706177 -g1,23534:4992373,35706177 -(1,23534:4992373,35706177:1310720,0,0 -k1,23534:6303093,35706177:1310720 -) -g1,23534:6630773,35706177 -) -k1,23534:7929393,35706177:145842 -k1,23534:8866909,35706177:145841 -k1,23534:9462930,35706177:145789 -k1,23534:10058950,35706177:145788 -k1,23534:12469061,35706177:145842 -k1,23534:13806187,35706177:145681 -k1,23534:14605370,35706177:145789 -k1,23534:18336526,35706177:145681 -k1,23534:20664221,35706177:146001 -k1,23534:21259479,35706177:145681 -k1,23534:24926075,35706177:146002 -k1,23534:28109350,35706177:145681 -k1,23534:29446476,35706177:145681 -k1,23534:32583029,35706177:0 -) -(1,23534:7613813,36547665:24969216,505283,126483 -g1,23534:9008419,36547665 -g1,23534:10222801,36547665 -g1,23534:12013899,36547665 -g1,23534:16197717,36547665 -g1,23534:17569385,36547665 -g1,23534:18577984,36547665 -g1,23534:19371625,36547665 -k1,23534:32583029,36547665:11635263 -g1,23534:32583029,36547665 -) -(1,23534:7613813,37389153:24969216,513147,126483 -(1,23534:7613813,37389153:-983040,0,0 -g1,23534:6630773,37389153 -g1,23534:5320053,37389153 -g1,23534:4992373,37389153 -(1,23534:4992373,37389153:1310720,0,0 -k1,23534:6303093,37389153:1310720 -) -g1,23534:6630773,37389153 -) -k1,23534:9359159,37389153:386129 -k1,23534:10482384,37389153:385945 -k1,23534:12059401,37389153:385572 -k1,23534:13074491,37389153:385944 -k1,23534:15694185,37389153:385572 -k1,23534:17560587,37389153:385944 -k1,23534:19921876,37389153:386689 -k1,23534:20222018,37389153:-13 -k1,23534:20222031,37389153:13 -k1,23534:21510034,37389153:385572 -k1,23534:24842760,37389153:385572 -k1,23534:26622283,37389153:385572 -k1,23534:29385501,37389153:385572 -k1,23534:30390850,37389153:386689 -k1,23534:32583029,37389153:0 -) -(1,23534:7613813,38230641:24969216,505283,126483 -k1,23534:8746732,38230641:331414 -k1,23534:12094110,38230641:330756 -k1,23534:17433127,38230641:330756 -k1,23534:20876843,38230641:330756 -k1,23534:22750710,38230641:331149 -k1,23534:24096882,38230641:331019 -k1,23534:27320530,38230641:331544 -k1,23534:28988878,38230641:331414 -$1,23534:28988878,38230641 -k1,23534:29923474,38230641:144232 -k1,23534:30462887,38230641:144231 -k1,23534:32187847,38230641:144232 -k1,23534:32583029,38230641:0 -) -(1,23534:7613813,39072129:24969216,485622,126484 -g1,23534:13936725,39072129 -g1,23534:14331907,39072129 -$1,23534:14727089,39072129 -k1,23534:32583029,39072129:17682270 -g1,23534:32583029,39072129 -) -(1,23534:7613813,39913617:24969216,505283,134348 -(1,23534:7613813,39913617:-983040,0,0 -g1,23534:6630773,39913617 -g1,23534:5320053,39913617 -g1,23534:4992373,39913617 -(1,23534:4992373,39913617:1310720,0,0 -k1,23534:6303093,39913617:1310720 -) -g1,23534:6630773,39913617 -) -k1,23534:8628829,39913617:291498 -k1,23534:9581494,39913617:291407 -k1,23534:10579470,39913617:291498 -k1,23534:11415481,39913617:291407 -k1,23534:12372734,39913617:291407 -k1,23534:14207605,39913617:291498 -k1,23534:15690273,39913617:291223 -k1,23534:16526284,39913617:291407 -k1,23534:19629002,39913617:291223 -k1,23534:22102470,39913617:291774 -k1,23534:22883247,39913617:291223 -k1,23534:26431609,39913617:291223 -k1,23534:28558495,39913617:291223 -k1,23534:29449372,39913617:291223 -k1,23534:30364393,39913617:291774 -k1,23534:31641277,39913617:291223 -k1,23534:32583029,39913617:0 -) -(1,23534:7613813,40755105:24969216,505283,134348 -g1,23534:10676965,40755105 -g1,23534:11470606,40755105 -g1,23534:13038882,40755105 -g1,23534:14829980,40755105 -g1,23534:19013798,40755105 -g1,23534:20385466,40755105 -g1,23534:21394065,40755105 -g1,23534:22187706,40755105 -k1,23534:32583029,40755105:8819182 -g1,23534:32583029,40755105 -) -] -(1,23535:32583029,45706769:0,0,0 -g1,23535:32583029,45706769 -) -) -] -(1,23535:6630773,47279633:25952256,0,0 -h1,23535:6630773,47279633:25952256,0,0 -) -] -(1,23535:4262630,4025873:0,0,0 -[1,23535:-473656,4025873:0,0,0 -(1,23535:-473656,-710413:0,0,0 -(1,23535:-473656,-710413:0,0,0 -g1,23535:-473656,-710413 -) -g1,23535:-473656,-710413 -) -] -) -] -!24094 -}430 -!12 -{431 -[1,23535:4262630,47279633:28320399,43253760,0 -(1,23535:4262630,4025873:0,0,0 -[1,23535:-473656,4025873:0,0,0 -(1,23535:-473656,-710413:0,0,0 -(1,23535:-473656,-644877:0,0,0 -k1,23535:-473656,-644877:-65536 +[3763,79:3078558,4812305:0,0,0 +(3763,79:3078558,49800853:0,16384,2228224 +g3763,79:29030814,49800853 +g3763,79:36135244,49800853 +(3763,1:36135244,49800853:1720320,16384,2228224 +(3763,1:36135244,52029077:16384,1703936,0 +[3763,1:36135244,52029077:25952256,1703936,0 +(3763,1:36135244,51504789:25952256,1179648,0 +(3763,1:36135244,51504789:16384,1179648,0 +r3763,79:36151628,51504789:16384,1179648,0 ) -(1,23535:-473656,4736287:0,0,0 -k1,23535:-473656,4736287:5209943 -) -g1,23535:-473656,-710413 +k3763,1:62087500,51504789:25935872 +g3763,1:62087500,51504789 ) ] ) -[1,23535:6630773,47279633:25952256,43253760,0 -[1,23535:6630773,4812305:25952256,786432,0 -(1,23535:6630773,4812305:25952256,0,0 -(1,23535:6630773,4812305:25952256,0,0 -g1,23535:3078558,4812305 -[1,23535:3078558,4812305:0,0,0 -(1,23535:3078558,2439708:0,1703936,0 -k1,23535:1358238,2439708:-1720320 -(1,23535:1358238,2439708:1720320,1703936,0 -(1,23535:1358238,2439708:1179648,16384,0 -r1,23535:2537886,2439708:1179648,16384,0 -) -g1,23535:3062174,2439708 -(1,23535:3062174,2439708:16384,1703936,0 -[1,23535:3062174,2439708:25952256,1703936,0 -(1,23535:3062174,1915420:25952256,1179648,0 -(1,23535:3062174,1915420:16384,1179648,0 -r1,23535:3078558,1915420:16384,1179648,0 -) -k1,23535:29014430,1915420:25935872 -g1,23535:29014430,1915420 -) -] +g3763,1:36675916,49800853 +(3763,1:36675916,49800853:1179648,16384,0 +r3763,79:37855564,49800853:1179648,16384,0 ) ) +k3763,79:3078556,49800853:-34777008 ) ] -[1,23535:3078558,4812305:0,0,0 -(1,23535:3078558,2439708:0,1703936,0 -g1,23535:29030814,2439708 -g1,23535:36135244,2439708 -(1,23535:36135244,2439708:1720320,1703936,0 -(1,23535:36135244,2439708:16384,1703936,0 -[1,23535:36135244,2439708:25952256,1703936,0 -(1,23535:36135244,1915420:25952256,1179648,0 -(1,23535:36135244,1915420:16384,1179648,0 -r1,23535:36151628,1915420:16384,1179648,0 +g3763,79:6630773,4812305 ) -k1,23535:62087500,1915420:25935872 -g1,23535:62087500,1915420 ) ] +[3763,79:6630773,45706769:25952256,40108032,0 +(3763,79:6630773,45706769:25952256,40108032,0 +(3763,79:6630773,45706769:0,0,0 +g3763,79:6630773,45706769 ) -g1,23535:36675916,2439708 -(1,23535:36675916,2439708:1179648,16384,0 -r1,23535:37855564,2439708:1179648,16384,0 -) +[3763,79:6630773,45706769:25952256,40108032,0 +[3763,1:6630773,12185121:25952256,6586384,0 +(3763,1:6630773,7073297:25952256,32768,229376 +(3763,1:6630773,7073297:0,32768,229376 +(3763,1:6630773,7073297:5505024,32768,229376 +r3763,79:12135797,7073297:5505024,262144,229376 ) -k1,23535:3078556,2439708:-34777008 -) -] -[1,23535:3078558,4812305:0,0,0 -(1,23535:3078558,49800853:0,16384,2228224 -k1,23535:1358238,49800853:-1720320 -(1,23535:1358238,49800853:1720320,16384,2228224 -(1,23535:1358238,49800853:1179648,16384,0 -r1,23535:2537886,49800853:1179648,16384,0 +k3763,1:6630773,7073297:-5505024 ) -g1,23535:3062174,49800853 -(1,23535:3062174,52029077:16384,1703936,0 -[1,23535:3062174,52029077:25952256,1703936,0 -(1,23535:3062174,51504789:25952256,1179648,0 -(1,23535:3062174,51504789:16384,1179648,0 -r1,23535:3078558,51504789:16384,1179648,0 ) -k1,23535:29014430,51504789:25935872 -g1,23535:29014430,51504789 +(3763,1:6630773,8842777:25952256,909509,22412 +h3763,1:6630773,8842777:0,0,0 +g3763,1:11695002,8842777 +k3763,1:23757492,8842777:8825536 +k3763,1:32583028,8842777:8825536 ) -] +(3763,1:6630773,9498145:25952256,32768,0 +(3763,1:6630773,9498145:5505024,32768,0 +r3763,79:12135797,9498145:5505024,32768,0 ) +k3763,1:22359413,9498145:10223616 +k3763,1:32583029,9498145:10223616 +) +] +(3763,79:6630773,45706769:25952256,32525496,126483 +[3763,79:6630773,45706769:11829248,32525496,102891 +(3763,5:6630773,13836633:11829248,513147,134348 +h3763,3:6630773,13836633:0,0,0 +k3763,3:9996866,13836633:191529 +k3763,3:13547770,13836633:191529 +k3763,4:13547770,13836633:0 +k3763,4:14706610,13836633:191529 +k3763,4:17800729,13836633:191529 +k3763,4:18460021,13836633:0 +) +(3763,5:9252213,14701713:9207808,505283,134348 +g3763,4:12344201,14701713 +k3763,5:16989393,14701713:1470628 +k3763,5:18460021,14701713:1470628 +) +(3763,6:6630773,15587311:11829248,485622,102891 +h3763,5:6630773,15587311:0,0,0 +g3763,5:8159728,15587311 +g3763,5:9326268,15587311 +k3763,6:14501647,15587311:3958375 +k3763,6:18460021,15587311:3958374 +) +(3763,7:6630773,16472909:11829248,513147,126483 +h3763,6:6630773,16472909:0,0,0 +g3763,6:9511080,16472909 +g3763,6:10613395,16472909 +g3763,6:14582910,16472909 +k3763,6:18460021,16472909:888014 +) +(3763,7:9252213,17337989:9207808,485622,102891 +g3763,6:10820489,17337989 +k3763,7:15237944,17337989:3222078 +k3763,7:18460021,17337989:3222077 +) +(3763,8:6630773,18223586:11829248,513147,134348 +h3763,7:6630773,18223586:0,0,0 +g3763,7:9157185,18223586 +g3763,7:10015706,18223586 +g3763,7:11653450,18223586 +k3763,8:15455195,18223586:3004827 +k3763,8:18460021,18223586:3004826 +) +(3763,10:6630773,19109184:11829248,513147,126483 +h3763,8:6630773,19109184:0,0,0 +g3763,8:9384595,19109184 +g3763,8:10243116,19109184 +g3763,8:13998328,19109184 +k3763,9:13998328,19109184:0 +g3763,9:15164868,19109184 +k3763,9:18460021,19109184:1482427 +) +(3763,10:9252213,19974264:9207808,513147,126483 +g3763,9:11943121,19974264 +g3763,9:14696943,19974264 +k3763,9:18460021,19974264:3103786 +) +(3763,10:9252213,20839344:9207808,473825,7863 +k3763,10:15547274,20839344:2912748 +k3763,10:18460021,20839344:2912747 +) +(3763,12:6630773,21724942:11829248,513147,126483 +h3763,10:6630773,21724942:0,0,0 +g3763,10:9384595,21724942 +g3763,10:10243116,21724942 +g3763,10:13270224,21724942 +k3763,11:13270224,21724942:0 +g3763,11:14436764,21724942 +k3763,11:18460021,21724942:2210531 +) +(3763,12:9252213,22590022:9207808,513147,126483 +g3763,11:11943121,22590022 +g3763,11:14696943,22590022 +g3763,11:15555464,22590022 +k3763,12:18334847,22590022:125175 +k3763,12:18460021,22590022:125174 +) +(3763,13:6630773,23475620:11829248,513147,102891 +h3763,12:6630773,23475620:0,0,0 +r3763,79:6630773,23475620:0,616038,102891 +g3763,12:7941493,23475620 +g3763,12:7941493,23475620 +g3763,12:10128429,23475620 +g3763,12:13044781,23475620 +k3763,13:16350090,23475620:2109932 +k3763,13:18460021,23475620:2109931 +) +(3763,14:6630773,24361218:11829248,513147,126483 +h3763,13:6630773,24361218:0,0,0 +g3763,13:9893810,24361218 +g3763,13:11060350,24361218 +g3763,13:13814172,24361218 +g3763,13:14672693,24361218 +k3763,14:18257514,24361218:202508 +k3763,14:18460021,24361218:202507 +) +(3763,16:6630773,25246815:11829248,505283,134348 +h3763,14:6630773,25246815:0,0,0 +g3763,14:10620604,25246815 +g3763,14:14179208,25246815 +k3763,15:14179208,25246815:0 +g3763,15:15345748,25246815 +k3763,15:18460021,25246815:211683 +) +(3763,16:9252213,26111895:9207808,513147,134348 +g3763,15:10110734,26111895 +g3763,15:13202722,26111895 +k3763,16:17726673,26111895:733349 +k3763,16:18460021,26111895:733348 +) +(3763,17:6630773,26997493:11829248,513147,126483 +h3763,16:6630773,26997493:0,0,0 +g3763,16:9438335,26997493 +g3763,16:10604875,26997493 +g3763,16:13358697,26997493 +g3763,16:14217218,26997493 +k3763,17:17665724,26997493:794298 +k3763,17:18460021,26997493:794297 +) +(3763,18:6630773,27883091:11829248,505283,126483 +h3763,17:6630773,27883091:0,0,0 +g3763,17:9939685,27883091 +g3763,17:11109502,27883091 +k3763,18:15382450,27883091:3077571 +k3763,18:18460021,27883091:3077571 +) +(3763,19:6630773,28768689:11829248,513147,126483 +h3763,18:6630773,28768689:0,0,0 +g3763,18:8593576,28768689 +g3763,18:11992273,28768689 +g3763,18:13560549,28768689 +k3763,19:16607974,28768689:1852048 +k3763,19:18460021,28768689:1852047 +) +(3763,20:6630773,29654287:11829248,513147,102891 +h3763,19:6630773,29654287:0,0,0 +g3763,19:10106147,29654287 +g3763,19:13216485,29654287 +k3763,20:16236712,29654287:2223309 +k3763,20:18460021,29654287:2223309 +) +(3763,21:6630773,30539884:11829248,485622,126483 +h3763,20:6630773,30539884:0,0,0 +r3763,79:6630773,30539884:0,612105,126483 +g3763,20:7941493,30539884 +g3763,20:7941493,30539884 +g3763,20:9526808,30539884 +g3763,20:13285297,30539884 +k3763,21:16271118,30539884:2188903 +k3763,21:18460021,30539884:2188903 +) +(3763,22:6630773,31425482:11829248,485622,126483 +h3763,21:6630773,31425482:0,0,0 +g3763,21:8983515,31425482 +k3763,22:14682526,31425482:3777495 +k3763,22:18460021,31425482:3777495 +) +(3763,23:6630773,32311080:11829248,505283,102891 +h3763,22:6630773,32311080:0,0,0 +r3763,79:6630773,32311080:0,608174,102891 +g3763,22:7941493,32311080 +g3763,22:7941493,32311080 +g3763,22:11989651,32311080 +k3763,23:15623295,32311080:2836726 +k3763,23:18460021,32311080:2836726 +) +(3763,24:6630773,33196678:11829248,485622,134348 +h3763,23:6630773,33196678:0,0,0 +g3763,23:10649440,33196678 +k3763,24:14953190,33196678:3506832 +k3763,24:18460021,33196678:3506831 +) +(3763,25:6630773,34082276:11829248,505283,134348 +h3763,24:6630773,34082276:0,0,0 +r3763,79:6630773,34082276:0,639631,134348 +g3763,24:7941493,34082276 +g3763,24:7941493,34082276 +g3763,24:11024961,34082276 +k3763,25:15140950,34082276:3319071 +k3763,25:18460021,34082276:3319071 +) +(3763,26:6630773,34967873:11829248,513147,102891 +h3763,25:6630773,34967873:0,0,0 +r3763,79:6630773,34967873:0,616038,102891 +g3763,25:7941493,34967873 +g3763,25:7941493,34967873 +g3763,25:10788377,34967873 +k3763,26:15022658,34967873:3437363 +k3763,26:18460021,34967873:3437363 +) +(3763,27:6630773,35853471:11829248,505283,102891 +h3763,26:6630773,35853471:0,0,0 +g3763,26:10112700,35853471 +k3763,27:15645577,35853471:2814444 +k3763,27:18460021,35853471:2814444 +) +(3763,31:6630773,37736389:11829248,505283,102891 +h3763,30:6630773,37736389:0,0,0 +g3763,30:8263930,37736389 +g3763,30:9051672,37736389 +k3763,31:14154306,37736389:4305716 +k3763,31:18460021,37736389:4305715 +) +(3763,32:6630773,38621987:11829248,505283,102891 +h3763,31:6630773,38621987:0,0,0 +g3763,31:8518209,38621987 +g3763,31:9688026,38621987 +k3763,32:14671712,38621987:3788309 +k3763,32:18460021,38621987:3788309 +) +(3763,33:6630773,39507584:11829248,505283,134348 +h3763,32:6630773,39507584:0,0,0 +g3763,32:8591610,39507584 +g3763,32:9986216,39507584 +k3763,33:14621578,39507584:3838444 +k3763,33:18460021,39507584:3838443 +) +(3763,34:6630773,40393182:11829248,513147,126483 +h3763,33:6630773,40393182:0,0,0 +g3763,33:9620525,40393182 +g3763,33:13590040,40393182 +g3763,33:16778366,40393182 +k3763,34:18216882,40393182:243139 +k3763,34:18460021,40393182:243139 +) +(3763,35:6630773,41278780:11829248,485622,102891 +h3763,34:6630773,41278780:0,0,0 +g3763,34:8071254,41278780 +g3763,34:9237794,41278780 +k3763,35:14457410,41278780:4002612 +k3763,35:18460021,41278780:4002611 +) +(3763,36:6630773,42164378:11829248,505283,102891 +h3763,35:6630773,42164378:0,0,0 +g3763,35:11250405,42164378 +k3763,36:15452902,42164378:3007120 +k3763,36:18460021,42164378:3007119 +) +(3763,37:6630773,43049976:11829248,505283,102891 +h3763,36:6630773,43049976:0,0,0 +g3763,36:9962623,43049976 +k3763,37:14809011,43049976:3651011 +k3763,37:18460021,43049976:3651010 +) +(3763,38:6630773,43935573:11829248,505283,134348 +h3763,37:6630773,43935573:0,0,0 +g3763,37:10557034,43935573 +k3763,38:15106216,43935573:3353805 +k3763,38:18460021,43935573:3353805 +) +(3763,39:6630773,44821171:11829248,505283,102891 +h3763,38:6630773,44821171:0,0,0 +g3763,38:10744467,44821171 +k3763,39:15199933,44821171:3260089 +k3763,39:18460021,44821171:3260088 +) +(3763,40:6630773,45706769:11829248,505283,102891 +h3763,39:6630773,45706769:0,0,0 +g3763,39:9341342,45706769 +g3763,39:12990386,45706769 +k3763,40:16123663,45706769:2336359 +k3763,40:18460021,45706769:2336358 +) +] +k3763,79:19606901,45706769:1146880 +r3763,79:19606901,45706769:0,32651979,126483 +k3763,79:20753781,45706769:1146880 +[3763,79:20753781,45706769:11829248,32525496,102891 +(3763,41:20753781,13836633:11829248,505283,126483 +h3763,40:20753781,13836633:0,0,0 +g3763,40:22112997,13836633 +g3763,40:24093495,13836633 +g3763,40:25260035,13836633 +g3763,40:27240533,13836633 +g3763,40:28599749,13836633 +k3763,40:32583029,13836633:2791835 +) +(3763,41:23375221,14701713:9207808,505283,126483 +g3763,40:26400362,14701713 +k3763,41:30130344,14701713:2452685 +k3763,41:32583029,14701713:2452685 +) +(3763,42:20753781,15568334:11829248,505283,102891 +h3763,41:20753781,15568334:0,0,0 +g3763,41:23638675,15568334 +k3763,42:28708541,15568334:3874489 +k3763,42:32583029,15568334:3874488 +) +(3763,47:20753781,17115991:11829248,485622,102891 +h3763,45:20753781,17115991:0,0,0 +g3763,45:21580189,17115991 +g3763,45:22750006,17115991 +g3763,45:23919823,17115991 +g3763,45:25089640,17115991 +g3763,45:26259457,17115991 +g3763,45:27429274,17115991 +g3763,45:28599091,17115991 +g3763,45:29768908,17115991 +g3763,45:30938725,17115991 +k3763,45:32583029,17115991:275257 +) +(3763,47:23375221,17981071:9207808,485622,102891 +g3763,45:24943497,17981071 +g3763,45:26511773,17981071 +k3763,47:30145090,17981071:2437940 +k3763,47:32583029,17981071:2437939 +) +(3763,48:20753781,18847692:11829248,485622,102891 +h3763,47:20753781,18847692:0,0,0 +g3763,47:22409875,18847692 +g3763,47:23579692,18847692 +g3763,47:24749509,18847692 +g3763,47:25919326,18847692 +g3763,47:27089143,18847692 +g3763,47:28258960,18847692 +g3763,47:29428777,18847692 +g3763,47:30598594,18847692 +k3763,47:32583029,18847692:615388 +) +(3763,48:23375221,19712772:9207808,485622,102891 +g3763,47:24943497,19712772 +k3763,48:29360952,19712772:3222078 +k3763,48:32583029,19712772:3222077 +) +(3763,49:20753781,20579393:11829248,513147,134348 +h3763,48:20753781,20579393:0,0,0 +g3763,48:24399548,20579393 +g3763,48:27614088,20579393 +g3763,48:28780628,20579393 +k3763,49:31793975,20579393:789055 +k3763,49:32583029,20579393:789054 +) +(3763,50:20753781,21446013:11829248,505283,134348 +h3763,49:20753781,21446013:0,0,0 +g3763,49:23663579,21446013 +g3763,49:27379470,21446013 +g3763,49:28972650,21446013 +g3763,49:30959701,21446013 +k3763,49:32583029,21446013:254281 +) +(3763,50:23375221,22311093:9207808,485622,11795 +k3763,50:29338342,22311093:3244688 +k3763,50:32583029,22311093:3244687 +) +(3763,51:20753781,23177714:11829248,505283,126483 +h3763,50:20753781,23177714:0,0,0 +g3763,50:23927689,23177714 +g3763,50:26262081,23177714 +g3763,50:28461469,23177714 +k3763,51:30920708,23177714:1662321 +k3763,51:32583029,23177714:1662321 +) +(3763,52:20753781,24044334:11829248,505283,134348 +h3763,51:20753781,24044334:0,0,0 +g3763,51:23927689,24044334 +g3763,51:25992728,24044334 +g3763,51:29584100,24044334 +k3763,52:31482024,24044334:1101006 +k3763,52:32583029,24044334:1101005 +) +(3763,53:20753781,24910955:11829248,505283,134348 +h3763,52:20753781,24910955:0,0,0 +g3763,52:23927689,24910955 +g3763,52:26496700,24910955 +k3763,53:29938324,24910955:2644706 +k3763,53:32583029,24910955:2644705 +) +(3763,54:20753781,25777576:11829248,513147,102891 +h3763,53:20753781,25777576:0,0,0 +r3763,79:20753781,25777576:0,616038,102891 +g3763,53:22064501,25777576 +g3763,53:22064501,25777576 +g3763,53:24749511,25777576 +g3763,53:25608032,25777576 +g3763,53:29285912,25777576 +k3763,54:31332930,25777576:1250100 +k3763,54:32583029,25777576:1250099 +) +(3763,55:20753781,26644196:11829248,505283,134348 +h3763,54:20753781,26644196:0,0,0 +r3763,79:20753781,26644196:0,639631,134348 +g3763,54:22064501,26644196 +g3763,54:22064501,26644196 +g3763,54:24347775,26644196 +g3763,54:27518406,26644196 +k3763,54:32583029,26644196:3873178 +) +(3763,55:23375221,27509276:9207808,505283,102891 +g3763,54:27621298,27509276 +k3763,55:30500623,27509276:2082407 +k3763,55:32583029,27509276:2082406 +) +(3763,56:20753781,28375897:11829248,505283,126483 +h3763,55:20753781,28375897:0,0,0 +r3763,79:20753781,28375897:0,631766,126483 +g3763,55:22064501,28375897 +g3763,55:22064501,28375897 +g3763,55:26945622,28375897 +g3763,55:30723117,28375897 +k3763,56:32051532,28375897:531497 +k3763,56:32583029,28375897:531497 +) +(3763,57:20753781,29242518:11829248,513147,134348 +h3763,56:20753781,29242518:0,0,0 +r3763,79:20753781,29242518:0,647495,134348 +g3763,56:22064501,29242518 +g3763,56:22064501,29242518 +g3763,56:24925147,29242518 +g3763,56:25957339,29242518 +k3763,57:29668643,29242518:2914386 +k3763,57:32583029,29242518:2914386 +) +(3763,58:20753781,30109138:11829248,505283,134348 +h3763,57:20753781,30109138:0,0,0 +r3763,79:20753781,30109138:0,639631,134348 +g3763,57:22064501,30109138 +g3763,57:22064501,30109138 +g3763,57:25792844,30109138 +g3763,57:29142389,30109138 +k3763,58:31261168,30109138:1321861 +k3763,58:32583029,30109138:1321861 +) +(3763,59:20753781,30975759:11829248,505283,102891 +h3763,58:20753781,30975759:0,0,0 +g3763,58:23764505,30975759 +g3763,58:26556338,30975759 +g3763,58:29407154,30975759 +k3763,59:31592780,30975759:990249 +k3763,59:32583029,30975759:990249 +) +(3763,60:20753781,31842379:11829248,505283,102891 +h3763,59:20753781,31842379:0,0,0 +g3763,59:23359492,31842379 +k3763,60:28568949,31842379:4014080 +k3763,60:32583029,31842379:4014080 +) +(3763,61:20753781,32709000:11829248,505283,126483 +h3763,60:20753781,32709000:0,0,0 +r3763,79:20753781,32709000:0,631766,126483 +g3763,60:22064501,32709000 +g3763,60:22064501,32709000 +g3763,60:23017394,32709000 +g3763,60:24771792,32709000 +g3763,60:27390610,32709000 +k3763,61:30584508,32709000:1998521 +k3763,61:32583029,32709000:1998521 +) +(3763,62:20753781,33575621:11829248,505283,7863 +h3763,61:20753781,33575621:0,0,0 +g3763,61:23185822,33575621 +g3763,61:24576496,33575621 +k3763,62:29636203,33575621:2946826 +k3763,62:32583029,33575621:2946826 +) +(3763,63:20753781,34442241:11829248,505283,102891 +h3763,62:20753781,34442241:0,0,0 +r3763,79:20753781,34442241:0,608174,102891 +g3763,62:22064501,34442241 +g3763,62:22064501,34442241 +g3763,62:25412080,34442241 +k3763,63:29958313,34442241:2624717 +k3763,63:32583029,34442241:2624716 +) +(3763,64:20753781,35308862:11829248,505283,134348 +h3763,63:20753781,35308862:0,0,0 +r3763,79:20753781,35308862:0,639631,134348 +g3763,63:22064501,35308862 +g3763,63:22064501,35308862 +g3763,63:24507027,35308862 +k3763,64:29505786,35308862:3077243 +k3763,64:32583029,35308862:3077243 +) +(3763,65:20753781,36175483:11829248,505283,134348 +h3763,64:20753781,36175483:0,0,0 +r3763,79:20753781,36175483:0,639631,134348 +g3763,64:22064501,36175483 +g3763,64:22064501,36175483 +g3763,64:25057530,36175483 +g3763,64:27660620,36175483 +g3763,64:30216524,36175483 +k3763,65:32360535,36175483:222495 +k3763,65:32583029,36175483:222494 +) +(3763,66:20753781,37042103:11829248,505283,126483 +h3763,65:20753781,37042103:0,0,0 +g3763,65:23129461,37042103 +g3763,65:26056954,37042103 +k3763,66:30679208,37042103:1903821 +k3763,66:32583029,37042103:1903821 +) +(3763,67:20753781,37908724:11829248,485622,102891 +h3763,66:20753781,37908724:0,0,0 +g3763,66:23324758,37908724 +k3763,67:28551582,37908724:4031447 +k3763,67:32583029,37908724:4031447 +) +(3763,68:20753781,38775345:11829248,505283,7863 +h3763,67:20753781,38775345:0,0,0 +k3763,68:27476464,38775345:5106565 +k3763,68:32583029,38775345:5106565 +) +(3763,69:20753781,39641965:11829248,513147,102891 +h3763,68:20753781,39641965:0,0,0 +r3763,79:20753781,39641965:0,616038,102891 +g3763,68:22064501,39641965 +g3763,68:22064501,39641965 +g3763,68:25849860,39641965 +k3763,69:30575661,39641965:2007368 +k3763,69:32583029,39641965:2007368 +) +(3763,70:20753781,40508586:11829248,485622,102891 +h3763,69:20753781,40508586:0,0,0 +r3763,79:20753781,40508586:0,588513,102891 +g3763,69:22064501,40508586 +g3763,69:22064501,40508586 +g3763,69:24505717,40508586 +k3763,70:29142062,40508586:3440968 +k3763,70:32583029,40508586:3440967 +) +(3763,71:20753781,41375206:11829248,513147,134348 +h3763,70:20753781,41375206:0,0,0 +g3763,70:24706912,41375206 +g3763,70:25565433,41375206 +g3763,70:28196703,41375206 +k3763,70:32583029,41375206:2698119 +) +(3763,71:23375221,42240286:9207808,505283,102891 +g3763,70:26564202,42240286 +k3763,71:30534374,42240286:2048656 +k3763,71:32583029,42240286:2048655 +) +(3763,72:20753781,43106907:11829248,485622,126483 +h3763,71:20753781,43106907:0,0,0 +g3763,71:24706912,43106907 +g3763,71:28156727,43106907 +k3763,72:31330636,43106907:1252393 +k3763,72:32583029,43106907:1252393 +) +(3763,73:20753781,43973528:11829248,505283,126483 +h3763,72:20753781,43973528:0,0,0 +g3763,72:24366780,43973528 +g3763,72:26062196,43973528 +g3763,72:29951757,43973528 +k3763,73:31865082,43973528:717948 +k3763,73:32583029,43973528:717947 +) +(3763,74:20753781,44840148:11829248,505283,102891 +h3763,73:20753781,44840148:0,0,0 +g3763,73:24546349,44840148 +g3763,73:28435910,44840148 +k3763,74:31107158,44840148:1475871 +k3763,74:32583029,44840148:1475871 +) +(3763,75:20753781,45706769:11829248,505283,102891 +h3763,74:20753781,45706769:0,0,0 +g3763,74:23546925,45706769 +k3763,75:28463436,45706769:4119593 +k3763,75:32583029,45706769:4119593 +) +] +(3763,79:32583029,45706769:0,355205,126483 +h3763,79:32583029,45706769:420741,355205,126483 +k3763,79:32583029,45706769:-420741 +) +) +] +(3763,79:32583029,45706769:0,0,0 +g3763,79:32583029,45706769 +) +) +] +(3763,79:6630773,47279633:25952256,485622,11795 +(3763,79:6630773,47279633:25952256,485622,11795 +k3763,79:19009213,47279633:12378440 +k3763,79:32583030,47279633:12378440 +) +) +] +(3763,79:4262630,4025873:0,0,0 +[3763,79:-473656,4025873:0,0,0 +(3763,79:-473656,-710413:0,0,0 +(3763,79:-473656,-710413:0,0,0 +g3763,79:-473656,-710413 ) +g3763,79:-473656,-710413 ) ] -[1,23535:3078558,4812305:0,0,0 -(1,23535:3078558,49800853:0,16384,2228224 -g1,23535:29030814,49800853 -g1,23535:36135244,49800853 -(1,23535:36135244,49800853:1720320,16384,2228224 -(1,23535:36135244,52029077:16384,1703936,0 -[1,23535:36135244,52029077:25952256,1703936,0 -(1,23535:36135244,51504789:25952256,1179648,0 -(1,23535:36135244,51504789:16384,1179648,0 -r1,23535:36151628,51504789:16384,1179648,0 -) -k1,23535:62087500,51504789:25935872 -g1,23535:62087500,51504789 ) ] +!20774 +}414 +!12 +{415 +[3763,172:4262630,47279633:28320399,43253760,0 +(3763,172:4262630,4025873:0,0,0 +[3763,172:-473656,4025873:0,0,0 +(3763,172:-473656,-710413:0,0,0 +(3763,172:-473656,-644877:0,0,0 +k3763,172:-473656,-644877:-65536 ) -g1,23535:36675916,49800853 -(1,23535:36675916,49800853:1179648,16384,0 -r1,23535:37855564,49800853:1179648,16384,0 -) +(3763,172:-473656,4736287:0,0,0 +k3763,172:-473656,4736287:5209943 ) -k1,23535:3078556,49800853:-34777008 +g3763,172:-473656,-710413 ) ] -g1,23535:6630773,4812305 ) +[3763,172:6630773,47279633:25952256,43253760,0 +[3763,172:6630773,4812305:25952256,786432,0 +(3763,172:6630773,4812305:25952256,505283,11795 +(3763,172:6630773,4812305:25952256,505283,11795 +g3763,172:3078558,4812305 +[3763,172:3078558,4812305:0,0,0 +(3763,172:3078558,2439708:0,1703936,0 +k3763,172:1358238,2439708:-1720320 +(3763,1:1358238,2439708:1720320,1703936,0 +(3763,1:1358238,2439708:1179648,16384,0 +r3763,172:2537886,2439708:1179648,16384,0 ) -] -[1,23535:6630773,45706769:0,40108032,0 -(1,23535:6630773,45706769:0,40108032,0 -(1,23535:6630773,45706769:0,0,0 -g1,23535:6630773,45706769 +g3763,1:3062174,2439708 +(3763,1:3062174,2439708:16384,1703936,0 +[3763,1:3062174,2439708:25952256,1703936,0 +(3763,1:3062174,1915420:25952256,1179648,0 +(3763,1:3062174,1915420:16384,1179648,0 +r3763,172:3078558,1915420:16384,1179648,0 +) +k3763,1:29014430,1915420:25935872 +g3763,1:29014430,1915420 ) -[1,23535:6630773,45706769:0,40108032,0 -h1,23535:6630773,6254097:0,0,0 ] -(1,23535:6630773,45706769:0,0,0 -g1,23535:6630773,45706769 ) ) -] -(1,23535:6630773,47279633:25952256,0,0 -h1,23535:6630773,47279633:25952256,0,0 ) ] -(1,23535:4262630,4025873:0,0,0 -[1,23535:-473656,4025873:0,0,0 -(1,23535:-473656,-710413:0,0,0 -(1,23535:-473656,-710413:0,0,0 -g1,23535:-473656,-710413 +[3763,172:3078558,4812305:0,0,0 +(3763,172:3078558,2439708:0,1703936,0 +g3763,172:29030814,2439708 +g3763,172:36135244,2439708 +(3763,1:36135244,2439708:1720320,1703936,0 +(3763,1:36135244,2439708:16384,1703936,0 +[3763,1:36135244,2439708:25952256,1703936,0 +(3763,1:36135244,1915420:25952256,1179648,0 +(3763,1:36135244,1915420:16384,1179648,0 +r3763,172:36151628,1915420:16384,1179648,0 ) -g1,23535:-473656,-710413 +k3763,1:62087500,1915420:25935872 +g3763,1:62087500,1915420 ) ] ) -] -!3399 -}431 -Input:3722:C:\Users\aphalo_2\Documents\Own_manuscripts\Books\learnr-book-crc\using-r-main-crc.ind -!109 -{432 -[3722,81:4262630,47279633:28320399,43253760,0 -(3722,81:4262630,4025873:0,0,0 -[3722,81:-473656,4025873:0,0,0 -(3722,81:-473656,-710413:0,0,0 -(3722,81:-473656,-644877:0,0,0 -k3722,81:-473656,-644877:-65536 +g3763,1:36675916,2439708 +(3763,1:36675916,2439708:1179648,16384,0 +r3763,172:37855564,2439708:1179648,16384,0 ) -(3722,81:-473656,4736287:0,0,0 -k3722,81:-473656,4736287:5209943 ) -g3722,81:-473656,-710413 +k3763,172:3078556,2439708:-34777008 ) ] +[3763,172:3078558,4812305:0,0,0 +(3763,172:3078558,49800853:0,16384,2228224 +k3763,172:1358238,49800853:-1720320 +(3763,1:1358238,49800853:1720320,16384,2228224 +(3763,1:1358238,49800853:1179648,16384,0 +r3763,172:2537886,49800853:1179648,16384,0 ) -[3722,81:6630773,47279633:25952256,43253760,0 -[3722,81:6630773,4812305:25952256,786432,0 -(3722,81:6630773,4812305:25952256,0,0 -(3722,81:6630773,4812305:25952256,0,0 -g3722,81:3078558,4812305 -[3722,81:3078558,4812305:0,0,0 -(3722,81:3078558,2439708:0,1703936,0 -k3722,81:1358238,2439708:-1720320 -(3722,1:1358238,2439708:1720320,1703936,0 -(3722,1:1358238,2439708:1179648,16384,0 -r3722,81:2537886,2439708:1179648,16384,0 +g3763,1:3062174,49800853 +(3763,1:3062174,52029077:16384,1703936,0 +[3763,1:3062174,52029077:25952256,1703936,0 +(3763,1:3062174,51504789:25952256,1179648,0 +(3763,1:3062174,51504789:16384,1179648,0 +r3763,172:3078558,51504789:16384,1179648,0 ) -g3722,1:3062174,2439708 -(3722,1:3062174,2439708:16384,1703936,0 -[3722,1:3062174,2439708:25952256,1703936,0 -(3722,1:3062174,1915420:25952256,1179648,0 -(3722,1:3062174,1915420:16384,1179648,0 -r3722,81:3078558,1915420:16384,1179648,0 -) -k3722,1:29014430,1915420:25935872 -g3722,1:29014430,1915420 +k3763,1:29014430,51504789:25935872 +g3763,1:29014430,51504789 ) ] ) ) ) ] -[3722,81:3078558,4812305:0,0,0 -(3722,81:3078558,2439708:0,1703936,0 -g3722,81:29030814,2439708 -g3722,81:36135244,2439708 -(3722,1:36135244,2439708:1720320,1703936,0 -(3722,1:36135244,2439708:16384,1703936,0 -[3722,1:36135244,2439708:25952256,1703936,0 -(3722,1:36135244,1915420:25952256,1179648,0 -(3722,1:36135244,1915420:16384,1179648,0 -r3722,81:36151628,1915420:16384,1179648,0 +[3763,172:3078558,4812305:0,0,0 +(3763,172:3078558,49800853:0,16384,2228224 +g3763,172:29030814,49800853 +g3763,172:36135244,49800853 +(3763,1:36135244,49800853:1720320,16384,2228224 +(3763,1:36135244,52029077:16384,1703936,0 +[3763,1:36135244,52029077:25952256,1703936,0 +(3763,1:36135244,51504789:25952256,1179648,0 +(3763,1:36135244,51504789:16384,1179648,0 +r3763,172:36151628,51504789:16384,1179648,0 ) -k3722,1:62087500,1915420:25935872 -g3722,1:62087500,1915420 +k3763,1:62087500,51504789:25935872 +g3763,1:62087500,51504789 ) ] ) -g3722,1:36675916,2439708 -(3722,1:36675916,2439708:1179648,16384,0 -r3722,81:37855564,2439708:1179648,16384,0 -) +g3763,1:36675916,49800853 +(3763,1:36675916,49800853:1179648,16384,0 +r3763,172:37855564,49800853:1179648,16384,0 ) -k3722,81:3078556,2439708:-34777008 ) -] -[3722,81:3078558,4812305:0,0,0 -(3722,81:3078558,49800853:0,16384,2228224 -k3722,81:1358238,49800853:-1720320 -(3722,1:1358238,49800853:1720320,16384,2228224 -(3722,1:1358238,49800853:1179648,16384,0 -r3722,81:2537886,49800853:1179648,16384,0 +k3763,172:3078556,49800853:-34777008 +) +] +g3763,172:6630773,4812305 +k3763,172:28201292,4812305:20375142 +g3763,172:30884336,4812305 +) +) +] +[3763,172:6630773,45706769:25952256,40108032,0 +(3763,172:6630773,45706769:25952256,40108032,0 +(3763,172:6630773,45706769:0,0,0 +g3763,172:6630773,45706769 +) +[3763,172:6630773,45706769:25952256,40108032,0 +(3763,172:6630773,45706769:25952256,40108032,126483 +[3763,172:6630773,45706769:11829248,40108032,126483 +(3763,76:6630773,6254097:11829248,513147,102891 +h3763,75:6630773,6254097:0,0,0 +g3763,75:9117864,6254097 +g3763,75:9976385,6254097 +g3763,75:13251219,6254097 +g3763,75:14974160,6254097 +k3763,76:17314779,6254097:1145242 +k3763,76:18460021,6254097:1145242 +) +(3763,78:6630773,7132126:11829248,505283,134348 +h3763,76:6630773,7132126:0,0,0 +g3763,76:10568176,7132126 +g3763,76:14126780,7132126 +k3763,77:14126780,7132126:0 +g3763,77:15293320,7132126 +k3763,77:18460021,7132126:264111 +) +(3763,78:9252213,7997206:9207808,513147,134348 +g3763,77:10110734,7997206 +g3763,77:13202722,7997206 +k3763,78:17700459,7997206:759563 +k3763,78:18460021,7997206:759562 +) +(3763,79:6630773,8875236:11829248,505283,102891 +h3763,78:6630773,8875236:0,0,0 +g3763,78:10484289,8875236 +k3763,79:15831372,8875236:2628650 +k3763,79:18460021,8875236:2628649 +) +(3763,80:6630773,9753265:11829248,505283,102891 +h3763,79:6630773,9753265:0,0,0 +r3763,172:6630773,9753265:0,608174,102891 +g3763,79:7941493,9753265 +g3763,79:7941493,9753265 +g3763,79:10727428,9753265 +k3763,80:15191413,9753265:3268608 +k3763,80:18460021,9753265:3268608 +) +(3763,81:6630773,10631294:11829248,485622,126483 +h3763,80:6630773,10631294:0,0,0 +r3763,172:6630773,10631294:0,612105,126483 +g3763,80:7941493,10631294 +g3763,80:7941493,10631294 +g3763,80:13219762,10631294 +k3763,81:16437580,10631294:2022441 +k3763,81:18460021,10631294:2022441 +) +(3763,82:6630773,11509324:11829248,485622,126483 +h3763,81:6630773,11509324:0,0,0 +r3763,172:6630773,11509324:0,612105,126483 +g3763,81:7941493,11509324 +g3763,81:7941493,11509324 +g3763,81:11782558,11509324 +k3763,82:15718978,11509324:2741043 +k3763,82:18460021,11509324:2741043 +) +(3763,83:6630773,12387353:11829248,485622,102891 +h3763,82:6630773,12387353:0,0,0 +r3763,172:6630773,12387353:0,588513,102891 +g3763,82:7941493,12387353 +g3763,82:7941493,12387353 +g3763,82:10821145,12387353 +k3763,83:15238272,12387353:3221750 +k3763,83:18460021,12387353:3221749 +) +(3763,84:6630773,13265382:11829248,485622,126483 +h3763,83:6630773,13265382:0,0,0 +r3763,172:6630773,13265382:0,612105,126483 +g3763,83:7941493,13265382 +g3763,83:7941493,13265382 +g3763,83:11472572,13265382 +k3763,84:15563985,13265382:2896036 +k3763,84:18460021,13265382:2896036 +) +(3763,85:6630773,14143411:11829248,485622,102891 +h3763,84:6630773,14143411:0,0,0 +g3763,84:8808534,14143411 +g3763,84:10376810,14143411 +g3763,84:11945086,14143411 +g3763,84:13513362,14143411 +g3763,84:15081638,14143411 +g3763,84:16649914,14143411 +k3763,85:18152656,14143411:307365 +k3763,85:18460021,14143411:307365 +) +(3763,89:6630773,15892620:11829248,505283,7863 +h3763,88:6630773,15892620:0,0,0 +k3763,89:13240079,15892620:5219943 +k3763,89:18460021,15892620:5219942 +) +(3763,90:6630773,16770650:11829248,505283,126483 +h3763,89:6630773,16770650:0,0,0 +r3763,172:6630773,16770650:0,631766,126483 +g3763,89:7941493,16770650 +g3763,89:7941493,16770650 +g3763,89:11785179,16770650 +g3763,89:12597170,16770650 +g3763,89:13815484,16770650 +g3763,89:14459702,16770650 +g3763,89:17252846,16770650 +k3763,90:18454122,16770650:5899 +k3763,90:18460021,16770650:5899 +) +(3763,91:6630773,17648679:11829248,505283,134348 +h3763,90:6630773,17648679:0,0,0 +r3763,172:6630773,17648679:0,639631,134348 +g3763,90:7941493,17648679 +g3763,90:7941493,17648679 +g3763,90:10507227,17648679 +g3763,90:12095819,17648679 +g3763,90:13733563,17648679 +k3763,91:16694481,17648679:1765541 +k3763,91:18460021,17648679:1765540 +) +(3763,92:6630773,18526708:11829248,513147,7863 +h3763,91:6630773,18526708:0,0,0 +g3763,91:8219365,18526708 +k3763,92:14277841,18526708:4182180 +k3763,92:18460021,18526708:4182180 +) +(3763,93:6630773,19404738:11829248,505283,126483 +h3763,92:6630773,19404738:0,0,0 +r3763,172:6630773,19404738:0,631766,126483 +g3763,92:7941493,19404738 +g3763,92:7941493,19404738 +g3763,92:12582097,19404738 +k3763,93:16880276,19404738:1579746 +k3763,93:18460021,19404738:1579745 +) +(3763,94:6630773,20282767:11829248,513147,102891 +h3763,93:6630773,20282767:0,0,0 +g3763,93:8219365,20282767 +g3763,93:10798862,20282767 +k3763,94:15789429,20282767:2670592 +k3763,94:18460021,20282767:2670592 +) +(3763,95:6630773,21160796:11829248,513147,134348 +h3763,94:6630773,21160796:0,0,0 +r3763,172:6630773,21160796:0,647495,134348 +g3763,94:7941493,21160796 +g3763,94:7941493,21160796 +g3763,94:10959425,21160796 +g3763,94:13166677,21160796 +k3763,95:16211808,21160796:2248213 +k3763,95:18460021,21160796:2248213 +) +(3763,96:6630773,22038826:11829248,505283,134348 +h3763,95:6630773,22038826:0,0,0 +r3763,172:6630773,22038826:0,639631,134348 +g3763,95:7941493,22038826 +g3763,95:7941493,22038826 +g3763,95:11278586,22038826 +k3763,96:15466992,22038826:2993029 +k3763,96:18460021,22038826:2993029 +) +(3763,97:6630773,22916855:11829248,505283,134348 +h3763,96:6630773,22916855:0,0,0 +r3763,172:6630773,22916855:0,639631,134348 +g3763,96:7941493,22916855 +g3763,96:7941493,22916855 +g3763,96:9529430,22916855 +g3763,96:10589802,22916855 +g3763,96:12279320,22916855 +g3763,96:14521306,22916855 +k3763,97:17088352,22916855:1371669 +k3763,97:18460021,22916855:1371669 +) +(3763,98:6630773,23794884:11829248,505283,134348 +h3763,97:6630773,23794884:0,0,0 +r3763,172:6630773,23794884:0,639631,134348 +g3763,97:7941493,23794884 +g3763,97:7941493,23794884 +g3763,97:10870297,23794884 +g3763,97:13956387,23794884 +k3763,98:16805893,23794884:1654129 +k3763,98:18460021,23794884:1654128 +) +(3763,99:6630773,24672914:11829248,505283,134348 +h3763,98:6630773,24672914:0,0,0 +r3763,172:6630773,24672914:0,639631,134348 +g3763,98:7941493,24672914 +g3763,98:7941493,24672914 +g3763,98:10870297,24672914 +g3763,98:12777394,24672914 +g3763,98:14345670,24672914 +k3763,99:17000534,24672914:1459487 +k3763,99:18460021,24672914:1459487 +) +(3763,100:6630773,25550943:11829248,505283,134348 +h3763,99:6630773,25550943:0,0,0 +r3763,172:6630773,25550943:0,639631,134348 +g3763,99:7941493,25550943 +g3763,99:7941493,25550943 +g3763,99:10975809,25550943 +k3763,100:15315604,25550943:3144418 +k3763,100:18460021,25550943:3144417 +) +(3763,101:6630773,26428972:11829248,505283,134348 +h3763,100:6630773,26428972:0,0,0 +r3763,172:6630773,26428972:0,639631,134348 +g3763,100:7941493,26428972 +g3763,100:7941493,26428972 +g3763,100:11641655,26428972 +k3763,101:15449297,26428972:3010724 +k3763,101:18460021,26428972:3010724 +) +(3763,102:6630773,27307001:11829248,485622,134348 +h3763,101:6630773,27307001:0,0,0 +r3763,172:6630773,27307001:0,619970,134348 +g3763,101:7941493,27307001 +g3763,101:7941493,27307001 +g3763,101:12525081,27307001 +g3763,101:14093357,27307001 +k3763,102:16874378,27307001:1585644 +k3763,102:18460021,27307001:1585643 +) +(3763,103:6630773,28185031:11829248,505283,126483 +h3763,102:6630773,28185031:0,0,0 +g3763,102:8219365,28185031 +g3763,102:12674502,28185031 +g3763,102:13489769,28185031 +g3763,102:14708083,28185031 +k3763,102:18460021,28185031:667814 +) +(3763,103:9252213,29050111:9207808,485622,11795 +k3763,103:15215334,29050111:3244688 +k3763,103:18460021,29050111:3244687 +) +(3763,104:6630773,29928140:11829248,505283,7863 +h3763,103:6630773,29928140:0,0,0 +g3763,103:8219365,29928140 +k3763,104:13972116,29928140:4487906 +k3763,104:18460021,29928140:4487905 +) +(3763,105:6630773,30806169:11829248,505283,102891 +h3763,104:6630773,30806169:0,0,0 +r3763,172:6630773,30806169:0,608174,102891 +g3763,104:7941493,30806169 +g3763,104:7941493,30806169 +g3763,104:12942545,30806169 +k3763,105:16099742,30806169:2360279 +k3763,105:18460021,30806169:2360279 +) +(3763,106:6630773,31684199:11829248,485622,134348 +h3763,105:6630773,31684199:0,0,0 +r3763,172:6630773,31684199:0,619970,134348 +g3763,105:7941493,31684199 +g3763,105:7941493,31684199 +g3763,105:10188722,31684199 +k3763,106:14722831,31684199:3737191 +k3763,106:18460021,31684199:3737190 +) +(3763,107:6630773,32562228:11829248,505283,134348 +h3763,106:6630773,32562228:0,0,0 +r3763,172:6630773,32562228:0,639631,134348 +g3763,106:7941493,32562228 +g3763,106:7941493,32562228 +g3763,106:9649361,32562228 +g3763,106:12369760,32562228 +k3763,107:16574878,32562228:1885143 +k3763,107:18460021,32562228:1885143 +) +(3763,108:6630773,33440257:11829248,505283,102891 +h3763,107:6630773,33440257:0,0,0 +g3763,107:10580627,33440257 +g3763,107:12148903,33440257 +g3763,107:13717179,33440257 +g3763,107:15285455,33440257 +g3763,107:16853731,33440257 +k3763,108:18254565,33440257:205457 +k3763,108:18460021,33440257:205456 +) +(3763,109:6630773,34318287:11829248,505283,102891 +h3763,108:6630773,34318287:0,0,0 +g3763,108:10076655,34318287 +g3763,108:11644931,34318287 +g3763,108:13213207,34318287 +k3763,109:16434303,34318287:2025719 +k3763,109:18460021,34318287:2025718 +) +(3763,110:6630773,35196316:11829248,505283,126483 +h3763,109:6630773,35196316:0,0,0 +g3763,109:9456029,35196316 +g3763,109:11024305,35196316 +g3763,109:12592581,35196316 +k3763,110:16123990,35196316:2336032 +k3763,110:18460021,35196316:2336031 +) +(3763,111:6630773,36074345:11829248,505283,134348 +h3763,110:6630773,36074345:0,0,0 +g3763,110:9397703,36074345 +g3763,110:12060430,36074345 +g3763,110:13226970,36074345 +k3763,110:18460021,36074345:2235434 +) +(3763,111:9252213,36939425:9207808,505283,134348 +k3763,111:15001031,36939425:3458990 +k3763,111:18460021,36939425:3458990 +) +(3763,112:6630773,37817455:11829248,505283,7863 +h3763,111:6630773,37817455:0,0,0 +k3763,112:13714232,37817455:4745790 +k3763,112:18460021,37817455:4745789 +) +(3763,113:6630773,38695484:11829248,505283,134348 +h3763,112:6630773,38695484:0,0,0 +r3763,172:6630773,38695484:0,639631,134348 +g3763,112:7941493,38695484 +g3763,112:7941493,38695484 +g3763,112:10473148,38695484 +g3763,112:11639688,38695484 +g3763,112:14227704,38695484 +k3763,112:18460021,38695484:2073561 +) +(3763,113:9252213,39560564:9207808,505283,7863 +k3763,113:15024952,39560564:3435070 +k3763,113:18460021,39560564:3435069 +) +(3763,114:6630773,40438593:11829248,505283,102891 +h3763,113:6630773,40438593:0,0,0 +g3763,113:10108112,40438593 +k3763,114:14881755,40438593:3578266 +k3763,114:18460021,40438593:3578266 +) +(3763,115:6630773,41316622:11829248,505283,102891 +h3763,114:6630773,41316622:0,0,0 +g3763,114:11115401,41316622 +k3763,115:16146928,41316622:2313094 +k3763,115:18460021,41316622:2313093 +) +(3763,116:6630773,42194652:11829248,513147,126483 +h3763,115:6630773,42194652:0,0,0 +r3763,172:6630773,42194652:0,639630,126483 +g3763,115:7941493,42194652 +g3763,115:7941493,42194652 +g3763,115:10473148,42194652 +g3763,115:12239998,42194652 +g3763,115:16223931,42194652 +k3763,116:17939665,42194652:520357 +k3763,116:18460021,42194652:520356 +) +(3763,117:6630773,43072681:11829248,513147,126483 +h3763,116:6630773,43072681:0,0,0 +r3763,172:6630773,43072681:0,639630,126483 +g3763,116:7941493,43072681 +g3763,116:7941493,43072681 +g3763,116:12144316,43072681 +g3763,116:13911166,43072681 +g3763,116:17214835,43072681 +k3763,117:18435117,43072681:24905 +k3763,117:18460021,43072681:24904 +) +(3763,118:6630773,43950710:11829248,505283,126483 +h3763,117:6630773,43950710:0,0,0 +r3763,172:6630773,43950710:0,631766,126483 +g3763,117:7941493,43950710 +g3763,117:7941493,43950710 +g3763,117:13176508,43950710 +g3763,117:15465680,43950710 +k3763,118:17560539,43950710:899482 +k3763,118:18460021,43950710:899482 +) +(3763,119:6630773,44828740:11829248,513147,126483 +h3763,118:6630773,44828740:0,0,0 +r3763,172:6630773,44828740:0,639630,126483 +g3763,118:7941493,44828740 +g3763,118:7941493,44828740 +g3763,118:11071492,44828740 +g3763,118:12838342,44828740 +g3763,118:17214836,44828740 +k3763,119:18435117,44828740:24904 +k3763,119:18460021,44828740:24904 +) +(3763,120:6630773,45706769:11829248,505283,126483 +h3763,119:6630773,45706769:0,0,0 +g3763,119:9505182,45706769 +g3763,119:12624695,45706769 +k3763,120:16140047,45706769:2319975 +k3763,120:18460021,45706769:2319974 +) +] +k3763,172:19606901,45706769:1146880 +r3763,172:19606901,45706769:0,40234515,126483 +k3763,172:20753781,45706769:1146880 +[3763,172:20753781,45706769:11829248,40108032,102891 +(3763,121:20753781,6254097:11829248,505283,126483 +h3763,120:20753781,6254097:0,0,0 +g3763,120:23136014,6254097 +g3763,120:26267324,6254097 +k3763,121:30833218,6254097:1749812 +k3763,121:32583029,6254097:1749811 +) +(3763,122:20753781,7120247:11829248,505283,102891 +h3763,121:20753781,7120247:0,0,0 +r3763,172:20753781,7120247:0,608174,102891 +g3763,121:22064501,7120247 +g3763,121:22064501,7120247 +g3763,121:25713545,7120247 +k3763,122:30109045,7120247:2473984 +k3763,122:32583029,7120247:2473984 +) +(3763,124:20753781,7986396:11829248,505283,126483 +h3763,122:20753781,7986396:0,0,0 +g3763,122:23166160,7986396 +g3763,122:24734436,7986396 +g3763,122:26302712,7986396 +g3763,122:27870988,7986396 +g3763,122:29439264,7986396 +k3763,122:32583029,7986396:251661 +) +(3763,124:23375221,8851476:9207808,485622,102891 +g3763,122:24943497,8851476 +g3763,122:26511773,8851476 +g3763,122:28080049,8851476 +g3763,123:29648325,8851476 +k3763,124:31713366,8851476:869664 +k3763,124:32583029,8851476:869663 +) +(3763,125:20753781,9717626:11829248,505283,126483 +h3763,124:20753781,9717626:0,0,0 +g3763,124:23411265,9717626 +k3763,125:28594836,9717626:3988194 +k3763,125:32583029,9717626:3988193 +) +(3763,129:20753781,11256960:11829248,505283,126483 +h3763,128:20753781,11256960:0,0,0 +g3763,128:23307718,11256960 +k3763,129:28343833,11256960:4239197 +k3763,129:32583029,11256960:4239196 +) +(3763,130:20753781,12123110:11829248,485622,102891 +h3763,129:20753781,12123110:0,0,0 +g3763,129:23124873,12123110 +k3763,130:28451640,12123110:4131390 +k3763,130:32583029,12123110:4131389 +) +(3763,131:20753781,12989260:11829248,505283,102891 +h3763,130:20753781,12989260:0,0,0 +g3763,130:22054670,12989260 +$3763,130:22261764,12989260 +$3763,130:22623523,12989260 +g3763,130:23203516,12989260 +g3763,130:24370056,12989260 +g3763,130:27256916,12989260 +k3763,130:32583029,12989260:2049968 +) +(3763,131:23375221,13854340:9207808,473825,126483 +k3763,131:29445166,13854340:3137864 +k3763,131:32583029,13854340:3137863 +) +(3763,132:20753781,14720489:11829248,505283,102891 +h3763,131:20753781,14720489:0,0,0 +g3763,131:22773600,14720489 +k3763,132:28276003,14720489:4307026 +k3763,132:32583029,14720489:4307026 +) +(3763,133:20753781,15586639:11829248,505283,134348 +h3763,132:20753781,15586639:0,0,0 +g3763,132:24016163,15586639 +k3763,133:28994278,15586639:3588752 +k3763,133:32583029,15586639:3588751 +) +(3763,134:20753781,16452788:11829248,513147,102891 +h3763,133:20753781,16452788:0,0,0 +r3763,172:20753781,16452788:0,616038,102891 +g3763,133:22064501,16452788 +g3763,133:22064501,16452788 +g3763,133:23489909,16452788 +g3763,133:25176150,16452788 +g3763,133:28267483,16452788 +k3763,134:31784473,16452788:798557 +k3763,134:32583029,16452788:798556 +) +(3763,135:20753781,17318938:11829248,485622,102891 +h3763,134:20753781,17318938:0,0,0 +g3763,134:24355639,17318938 +g3763,134:25206296,17318938 +g3763,134:26024185,17318938 +k3763,135:29901296,17318938:2681734 +k3763,135:32583029,17318938:2681733 +) +(3763,136:20753781,18185087:11829248,513147,102891 +h3763,135:20753781,18185087:0,0,0 +g3763,135:24476880,18185087 +k3763,136:29127643,18185087:3455386 +k3763,136:32583029,18185087:3455386 +) +(3763,140:20753781,19724422:11829248,513147,134348 +h3763,139:20753781,19724422:0,0,0 +g3763,139:22841758,19724422 +g3763,139:26400362,19724422 +g3763,139:27566902,19724422 +g3763,139:30668721,19724422 +k3763,139:32583029,19724422:1255016 +) +(3763,140:23375221,20589502:9207808,513147,134348 +g3763,139:26467209,20589502 +k3763,140:30469493,20589502:2113536 +k3763,140:32583029,20589502:2113536 +) +(3763,141:20753781,21455652:11829248,513147,102891 +h3763,140:20753781,21455652:0,0,0 +g3763,140:23350972,21455652 +k3763,141:28927759,21455652:3655271 +k3763,141:32583029,21455652:3655270 +) +(3763,142:20753781,22321801:11829248,505283,134348 +h3763,141:20753781,22321801:0,0,0 +r3763,172:20753781,22321801:0,639631,134348 +g3763,141:22064501,22321801 +g3763,141:22064501,22321801 +g3763,141:24688562,22321801 +g3763,141:27072106,22321801 +k3763,142:30226027,22321801:2357003 +k3763,142:32583029,22321801:2357002 +) +(3763,143:20753781,23187951:11829248,485622,102891 +h3763,142:20753781,23187951:0,0,0 +r3763,172:20753781,23187951:0,588513,102891 +g3763,142:22064501,23187951 +g3763,142:22064501,23187951 +g3763,142:24656449,23187951 +g3763,142:25507106,23187951 +g3763,142:28500135,23187951 +k3763,143:30940041,23187951:1642988 +k3763,143:32583029,23187951:1642988 +) +(3763,144:20753781,24054100:11829248,505283,126483 +h3763,143:20753781,24054100:0,0,0 +r3763,172:20753781,24054100:0,631766,126483 +g3763,143:22064501,24054100 +g3763,143:22064501,24054100 +g3763,143:23788097,24054100 +g3763,143:26330238,24054100 +g3763,143:28495547,24054100 +k3763,144:30937747,24054100:1645282 +k3763,144:32583029,24054100:1645282 +) +(3763,145:20753781,24920250:11829248,505283,102891 +h3763,144:20753781,24920250:0,0,0 +r3763,172:20753781,24920250:0,608174,102891 +g3763,144:22064501,24920250 +g3763,144:22064501,24920250 +g3763,144:24281584,24920250 +k3763,145:28830766,24920250:3752264 +k3763,145:32583029,24920250:3752263 +) +(3763,146:20753781,25786399:11829248,505283,102891 +h3763,145:20753781,25786399:0,0,0 +r3763,172:20753781,25786399:0,608174,102891 +g3763,145:22064501,25786399 +g3763,145:22064501,25786399 +g3763,145:24229810,25786399 +k3763,146:28804879,25786399:3778151 +k3763,146:32583029,25786399:3778150 +) +(3763,147:20753781,26652549:11829248,505283,134348 +h3763,146:20753781,26652549:0,0,0 +r3763,172:20753781,26652549:0,639631,134348 +g3763,146:22064501,26652549 +g3763,146:22064501,26652549 +g3763,146:24240951,26652549 +g3763,146:26406260,26652549 +k3763,147:29893104,26652549:2689926 +k3763,147:32583029,26652549:2689925 +) +(3763,148:20753781,27518698:11829248,505283,102891 +h3763,147:20753781,27518698:0,0,0 +r3763,172:20753781,27518698:0,608174,102891 +g3763,147:22064501,27518698 +g3763,147:22064501,27518698 +g3763,147:24944808,27518698 +k3763,148:29162378,27518698:3420652 +k3763,148:32583029,27518698:3420651 +) +(3763,149:20753781,28384848:11829248,505283,102891 +h3763,148:20753781,28384848:0,0,0 +r3763,172:20753781,28384848:0,608174,102891 +g3763,148:22064501,28384848 +g3763,148:22064501,28384848 +g3763,148:24638755,28384848 +g3763,148:26804064,28384848 +k3763,149:30092006,28384848:2491024 +k3763,149:32583029,28384848:2491023 +) +(3763,150:20753781,29250997:11829248,505283,102891 +h3763,149:20753781,29250997:0,0,0 +r3763,172:20753781,29250997:0,608174,102891 +g3763,149:22064501,29250997 +g3763,149:22064501,29250997 +g3763,149:24638755,29250997 +g3763,149:27022299,29250997 +k3763,150:30201123,29250997:2381906 +k3763,150:32583029,29250997:2381906 +) +(3763,151:20753781,30117147:11829248,513147,7863 +h3763,150:20753781,30117147:0,0,0 +g3763,150:21936050,30117147 +k3763,151:28293698,30117147:4289332 +k3763,151:32583029,30117147:4289331 +) +(3763,152:20753781,30983296:11829248,505283,126483 +h3763,151:20753781,30983296:0,0,0 +r3763,172:20753781,30983296:0,631766,126483 +g3763,151:22064501,30983296 +g3763,151:22064501,30983296 +g3763,151:25106682,30983296 +k3763,152:29442544,30983296:3140485 +k3763,152:32583029,30983296:3140485 +) +(3763,153:20753781,31849446:11829248,505283,126483 +h3763,152:20753781,31849446:0,0,0 +r3763,172:20753781,31849446:0,631766,126483 +g3763,152:22064501,31849446 +g3763,152:22064501,31849446 +g3763,152:24094806,31849446 +g3763,152:27810042,31849446 +k3763,153:30794224,31849446:1788805 +k3763,153:32583029,31849446:1788805 +) +(3763,154:20753781,32715596:11829248,513147,126483 +h3763,153:20753781,32715596:0,0,0 +g3763,153:21936050,32715596 +g3763,153:25713545,32715596 +k3763,154:30507504,32715596:2075526 +k3763,154:32583029,32715596:2075525 +) +(3763,155:20753781,33581745:11829248,513147,126483 +h3763,154:20753781,33581745:0,0,0 +g3763,154:21936050,33581745 +k3763,155:28148863,33581745:4434166 +k3763,155:32583029,33581745:4434166 +) +(3763,156:20753781,34447895:11829248,485622,134348 +h3763,155:20753781,34447895:0,0,0 +r3763,172:20753781,34447895:0,619970,134348 +g3763,155:22064501,34447895 +g3763,155:22064501,34447895 +g3763,155:24822911,34447895 +k3763,156:29300659,34447895:3282371 +k3763,156:32583029,34447895:3282370 +) +(3763,157:20753781,35314044:11829248,505283,126483 +h3763,156:20753781,35314044:0,0,0 +r3763,172:20753781,35314044:0,631766,126483 +g3763,156:22064501,35314044 +g3763,156:22064501,35314044 +g3763,156:24094806,35314044 +g3763,156:27810042,35314044 +k3763,157:30794224,35314044:1788805 +k3763,157:32583029,35314044:1788805 +) +(3763,158:20753781,36180194:11829248,513147,7863 +h3763,157:20753781,36180194:0,0,0 +g3763,157:22665466,36180194 +k3763,158:28783252,36180194:3799778 +k3763,158:32583029,36180194:3799777 +) +(3763,159:20753781,37046343:11829248,505283,126483 +h3763,158:20753781,37046343:0,0,0 +r3763,172:20753781,37046343:0,631766,126483 +g3763,158:22064501,37046343 +g3763,158:22064501,37046343 +g3763,158:25018864,37046343 +g3763,158:28222919,37046343 +k3763,159:31762191,37046343:820839 +k3763,159:32583029,37046343:820838 +) +(3763,160:20753781,37912493:11829248,505283,134348 +h3763,159:20753781,37912493:0,0,0 +r3763,172:20753781,37912493:0,639631,134348 +g3763,159:22064501,37912493 +g3763,159:22064501,37912493 +g3763,159:25296736,37912493 +k3763,160:30299099,37912493:2283930 +k3763,160:32583029,37912493:2283930 +) +(3763,161:20753781,38778642:11829248,513147,134348 +h3763,160:20753781,38778642:0,0,0 +g3763,160:23385051,38778642 +g3763,160:25272487,38778642 +k3763,161:30335799,38778642:2247230 +k3763,161:32583029,38778642:2247230 +) +(3763,162:20753781,39644792:11829248,505283,102891 +h3763,161:20753781,39644792:0,0,0 +r3763,172:20753781,39644792:0,608174,102891 +g3763,161:22064501,39644792 +g3763,161:22064501,39644792 +g3763,161:25713545,39644792 +k3763,162:30109045,39644792:2473984 +k3763,162:32583029,39644792:2473984 +) +(3763,163:20753781,40510941:11829248,513147,134348 +h3763,162:20753781,40510941:0,0,0 +g3763,162:22898774,40510941 +g3763,162:24065314,40510941 +g3763,162:26696584,40510941 +g3763,162:28584020,40510941 +k3763,163:31991566,40510941:591464 +k3763,163:32583029,40510941:591463 +) +(3763,164:20753781,41377091:11829248,513147,126483 +h3763,163:20753781,41377091:0,0,0 +g3763,163:23377842,41377091 +g3763,163:24544382,41377091 +g3763,163:25726651,41377091 +k3763,164:30044164,41377091:2538866 +k3763,164:32583029,41377091:2538865 +) +(3763,165:20753781,42243240:11829248,513147,126483 +h3763,164:20753781,42243240:0,0,0 +g3763,164:21900661,42243240 +g3763,164:23688483,42243240 +k3763,165:28733445,42243240:3849585 +k3763,165:32583029,42243240:3849584 +) +(3763,166:20753781,43109390:11829248,505283,102891 +h3763,165:20753781,43109390:0,0,0 +r3763,172:20753781,43109390:0,608174,102891 +g3763,165:22064501,43109390 +g3763,165:22064501,43109390 +g3763,165:25128309,43109390 +k3763,166:29453358,43109390:3129672 +k3763,166:32583029,43109390:3129671 +) +(3763,167:20753781,43975539:11829248,513147,134348 +h3763,166:20753781,43975539:0,0,0 +g3763,166:23820865,43975539 +g3763,166:25389141,43975539 +g3763,166:26957417,43975539 +g3763,166:28525693,43975539 +g3763,166:30093969,43975539 +k3763,167:31936188,43975539:646842 +k3763,167:32583029,43975539:646841 +) +(3763,168:20753781,44841689:11829248,513147,134348 +h3763,167:20753781,44841689:0,0,0 +g3763,167:24158376,44841689 +g3763,167:27332284,44841689 +g3763,167:29727624,44841689 +k3763,167:32583029,44841689:1287784 +) +(3763,168:23375221,45706769:9207808,505283,102891 +g3763,167:26564202,45706769 +k3763,168:29972075,45706769:2610955 +k3763,168:32583029,45706769:2610954 +) +] +(3763,172:32583029,45706769:0,355205,126483 +h3763,172:32583029,45706769:420741,355205,126483 +k3763,172:32583029,45706769:-420741 +) +) +] +(3763,172:32583029,45706769:0,0,0 +g3763,172:32583029,45706769 +) +) +] +(3763,172:6630773,47279633:25952256,0,0 +h3763,172:6630773,47279633:25952256,0,0 +) +] +(3763,172:4262630,4025873:0,0,0 +[3763,172:-473656,4025873:0,0,0 +(3763,172:-473656,-710413:0,0,0 +(3763,172:-473656,-710413:0,0,0 +g3763,172:-473656,-710413 +) +g3763,172:-473656,-710413 +) +] +) +] +!26539 +}415 +!12 +{416 +[3763,258:4262630,47279633:28320399,43253760,0 +(3763,258:4262630,4025873:0,0,0 +[3763,258:-473656,4025873:0,0,0 +(3763,258:-473656,-710413:0,0,0 +(3763,258:-473656,-644877:0,0,0 +k3763,258:-473656,-644877:-65536 ) -g3722,1:3062174,49800853 -(3722,1:3062174,52029077:16384,1703936,0 -[3722,1:3062174,52029077:25952256,1703936,0 -(3722,1:3062174,51504789:25952256,1179648,0 -(3722,1:3062174,51504789:16384,1179648,0 -r3722,81:3078558,51504789:16384,1179648,0 +(3763,258:-473656,4736287:0,0,0 +k3763,258:-473656,4736287:5209943 ) -k3722,1:29014430,51504789:25935872 -g3722,1:29014430,51504789 +g3763,258:-473656,-710413 ) ] ) +[3763,258:6630773,47279633:25952256,43253760,0 +[3763,258:6630773,4812305:25952256,786432,0 +(3763,258:6630773,4812305:25952256,505283,11795 +(3763,258:6630773,4812305:25952256,505283,11795 +g3763,258:3078558,4812305 +[3763,258:3078558,4812305:0,0,0 +(3763,258:3078558,2439708:0,1703936,0 +k3763,258:1358238,2439708:-1720320 +(3763,1:1358238,2439708:1720320,1703936,0 +(3763,1:1358238,2439708:1179648,16384,0 +r3763,258:2537886,2439708:1179648,16384,0 ) +g3763,1:3062174,2439708 +(3763,1:3062174,2439708:16384,1703936,0 +[3763,1:3062174,2439708:25952256,1703936,0 +(3763,1:3062174,1915420:25952256,1179648,0 +(3763,1:3062174,1915420:16384,1179648,0 +r3763,258:3078558,1915420:16384,1179648,0 ) -] -[3722,81:3078558,4812305:0,0,0 -(3722,81:3078558,49800853:0,16384,2228224 -g3722,81:29030814,49800853 -g3722,81:36135244,49800853 -(3722,1:36135244,49800853:1720320,16384,2228224 -(3722,1:36135244,52029077:16384,1703936,0 -[3722,1:36135244,52029077:25952256,1703936,0 -(3722,1:36135244,51504789:25952256,1179648,0 -(3722,1:36135244,51504789:16384,1179648,0 -r3722,81:36151628,51504789:16384,1179648,0 -) -k3722,1:62087500,51504789:25935872 -g3722,1:62087500,51504789 +k3763,1:29014430,1915420:25935872 +g3763,1:29014430,1915420 ) ] ) -g3722,1:36675916,49800853 -(3722,1:36675916,49800853:1179648,16384,0 -r3722,81:37855564,49800853:1179648,16384,0 -) ) -k3722,81:3078556,49800853:-34777008 ) ] -g3722,81:6630773,4812305 +[3763,258:3078558,4812305:0,0,0 +(3763,258:3078558,2439708:0,1703936,0 +g3763,258:29030814,2439708 +g3763,258:36135244,2439708 +(3763,1:36135244,2439708:1720320,1703936,0 +(3763,1:36135244,2439708:16384,1703936,0 +[3763,1:36135244,2439708:25952256,1703936,0 +(3763,1:36135244,1915420:25952256,1179648,0 +(3763,1:36135244,1915420:16384,1179648,0 +r3763,258:36151628,1915420:16384,1179648,0 ) +k3763,1:62087500,1915420:25935872 +g3763,1:62087500,1915420 ) ] -[3722,81:6630773,45706769:25952256,40108032,0 -(3722,81:6630773,45706769:25952256,40108032,0 -(3722,81:6630773,45706769:0,0,0 -g3722,81:6630773,45706769 -) -[3722,81:6630773,45706769:25952256,40108032,0 -[3722,1:6630773,12106481:25952256,6507744,0 -(3722,1:6630773,7073297:25952256,32768,229376 -(3722,1:6630773,7073297:0,32768,229376 -(3722,1:6630773,7073297:5505024,32768,229376 -r3722,81:12135797,7073297:5505024,262144,229376 -) -k3722,1:6630773,7073297:-5505024 ) +g3763,1:36675916,2439708 +(3763,1:36675916,2439708:1179648,16384,0 +r3763,258:37855564,2439708:1179648,16384,0 ) -(3722,1:6630773,8803457:25952256,909509,22412 -h3722,1:6630773,8803457:0,0,0 -g3722,1:11695002,8803457 -k3722,1:23757492,8803457:8825536 -k3722,1:32583028,8803457:8825536 ) -(3722,1:6630773,9419505:25952256,32768,0 -(3722,1:6630773,9419505:5505024,32768,0 -r3722,81:12135797,9419505:5505024,32768,0 -) -k3722,1:22359413,9419505:10223616 -k3722,1:32583029,9419505:10223616 -) -] -(3722,81:6630773,45706769:25952256,32627728,134348 -[3722,81:6630773,45706769:11829248,32627728,126483 -(3722,5:6630773,13734401:11829248,513147,134348 -h3722,3:6630773,13734401:0,0,0 -k3722,3:9996866,13734401:191529 -k3722,3:13547770,13734401:191529 -k3722,4:13547770,13734401:0 -k3722,4:14706610,13734401:191529 -k3722,4:17800729,13734401:191529 -k3722,4:18460021,13734401:0 -) -(3722,5:9252213,14575889:9207808,505283,134348 -g3722,4:12344201,14575889 -k3722,5:16989393,14575889:1470628 -k3722,5:18460021,14575889:1470628 -) -(3722,6:6630773,15421276:11829248,485622,102891 -h3722,5:6630773,15421276:0,0,0 -g3722,5:8159728,15421276 -g3722,5:9326268,15421276 -k3722,6:14502957,15421276:3957064 -k3722,6:18460021,15421276:3957064 -) -(3722,7:6630773,16266663:11829248,513147,126483 -h3722,6:6630773,16266663:0,0,0 -g3722,6:9511080,16266663 -g3722,6:10613395,16266663 -g3722,6:14582910,16266663 -k3722,6:18460021,16266663:888014 -) -(3722,7:9252213,17108151:9207808,485622,102891 -g3722,6:10820489,17108151 -k3722,7:15237944,17108151:3222078 -k3722,7:18460021,17108151:3222077 -) -(3722,8:6630773,17953538:11829248,513147,134348 -h3722,7:6630773,17953538:0,0,0 -g3722,7:9157185,17953538 -g3722,7:10015706,17953538 -g3722,7:11653450,17953538 -k3722,8:15455195,17953538:3004827 -k3722,8:18460021,17953538:3004826 -) -(3722,10:6630773,18798925:11829248,513147,126483 -h3722,8:6630773,18798925:0,0,0 -g3722,8:9384595,18798925 -g3722,8:10243116,18798925 -g3722,8:13998328,18798925 -k3722,9:13998328,18798925:0 -g3722,9:15164868,18798925 -k3722,9:18460021,18798925:1482427 -) -(3722,10:9252213,19640413:9207808,513147,126483 -g3722,9:11943121,19640413 -g3722,9:14696943,19640413 -k3722,9:18460021,19640413:3103786 -) -(3722,10:9252213,20481901:9207808,473825,7863 -k3722,10:15547274,20481901:2912748 -k3722,10:18460021,20481901:2912747 -) -(3722,12:6630773,21327288:11829248,513147,126483 -h3722,10:6630773,21327288:0,0,0 -g3722,10:9384595,21327288 -g3722,10:10243116,21327288 -g3722,10:13270224,21327288 -k3722,11:13270224,21327288:0 -g3722,11:14436764,21327288 -k3722,11:18460021,21327288:2210531 -) -(3722,12:9252213,22168776:9207808,513147,126483 -g3722,11:11943121,22168776 -g3722,11:14696943,22168776 -g3722,11:15555464,22168776 -k3722,12:18334847,22168776:125175 -k3722,12:18460021,22168776:125174 -) -(3722,13:6630773,23014163:11829248,513147,102891 -h3722,12:6630773,23014163:0,0,0 -r3722,81:6630773,23014163:0,616038,102891 -g3722,12:7941493,23014163 -g3722,12:7941493,23014163 -g3722,12:10128429,23014163 -g3722,12:13044781,23014163 -k3722,13:16350090,23014163:2109932 -k3722,13:18460021,23014163:2109931 -) -(3722,14:6630773,23859550:11829248,513147,126483 -h3722,13:6630773,23859550:0,0,0 -g3722,13:9893810,23859550 -g3722,13:11060350,23859550 -g3722,13:13814172,23859550 -g3722,13:14672693,23859550 -k3722,14:18257514,23859550:202508 -k3722,14:18460021,23859550:202507 -) -(3722,16:6630773,24704937:11829248,505283,134348 -h3722,14:6630773,24704937:0,0,0 -g3722,14:10620604,24704937 -g3722,14:14179208,24704937 -k3722,15:14179208,24704937:0 -g3722,15:15345748,24704937 -k3722,15:18460021,24704937:211683 -) -(3722,16:9252213,25546425:9207808,513147,134348 -g3722,15:10110734,25546425 -g3722,15:13202722,25546425 -k3722,16:17726673,25546425:733349 -k3722,16:18460021,25546425:733348 -) -(3722,17:6630773,26391812:11829248,513147,126483 -h3722,16:6630773,26391812:0,0,0 -g3722,16:9438335,26391812 -g3722,16:10604875,26391812 -g3722,16:13358697,26391812 -g3722,16:14217218,26391812 -k3722,17:17665724,26391812:794298 -k3722,17:18460021,26391812:794297 -) -(3722,18:6630773,27237199:11829248,505283,126483 -h3722,17:6630773,27237199:0,0,0 -g3722,17:9939685,27237199 -k3722,18:14797542,27237199:3662480 -k3722,18:18460021,27237199:3662479 -) -(3722,19:6630773,28082586:11829248,513147,126483 -h3722,18:6630773,28082586:0,0,0 -g3722,18:8593576,28082586 -g3722,18:11992273,28082586 -g3722,18:13560549,28082586 -k3722,19:16607974,28082586:1852048 -k3722,19:18460021,28082586:1852047 -) -(3722,20:6630773,28927973:11829248,513147,102891 -h3722,19:6630773,28927973:0,0,0 -g3722,19:10106147,28927973 -g3722,19:13216485,28927973 -k3722,20:16236712,28927973:2223309 -k3722,20:18460021,28927973:2223309 -) -(3722,21:6630773,29773360:11829248,485622,126483 -h3722,20:6630773,29773360:0,0,0 -r3722,81:6630773,29773360:0,612105,126483 -g3722,20:7941493,29773360 -g3722,20:7941493,29773360 -g3722,20:9526808,29773360 -g3722,20:13285297,29773360 -k3722,21:16271118,29773360:2188903 -k3722,21:18460021,29773360:2188903 -) -(3722,22:6630773,30618747:11829248,485622,126483 -h3722,21:6630773,30618747:0,0,0 -g3722,21:8983515,30618747 -k3722,22:14682526,30618747:3777495 -k3722,22:18460021,30618747:3777495 -) -(3722,23:6630773,31464134:11829248,505283,102891 -h3722,22:6630773,31464134:0,0,0 -r3722,81:6630773,31464134:0,608174,102891 -g3722,22:7941493,31464134 -g3722,22:7941493,31464134 -g3722,22:11989651,31464134 -k3722,23:15623295,31464134:2836726 -k3722,23:18460021,31464134:2836726 -) -(3722,24:6630773,32309521:11829248,485622,134348 -h3722,23:6630773,32309521:0,0,0 -g3722,23:10649440,32309521 -k3722,24:14953190,32309521:3506832 -k3722,24:18460021,32309521:3506831 -) -(3722,25:6630773,33154908:11829248,505283,134348 -h3722,24:6630773,33154908:0,0,0 -r3722,81:6630773,33154908:0,639631,134348 -g3722,24:7941493,33154908 -g3722,24:7941493,33154908 -g3722,24:11024961,33154908 -k3722,25:15140950,33154908:3319071 -k3722,25:18460021,33154908:3319071 -) -(3722,26:6630773,34000295:11829248,513147,102891 -h3722,25:6630773,34000295:0,0,0 -r3722,81:6630773,34000295:0,616038,102891 -g3722,25:7941493,34000295 -g3722,25:7941493,34000295 -g3722,25:10788377,34000295 -k3722,26:15022658,34000295:3437363 -k3722,26:18460021,34000295:3437363 -) -(3722,27:6630773,34845682:11829248,505283,102891 -h3722,26:6630773,34845682:0,0,0 -g3722,26:10112700,34845682 -k3722,27:15645577,34845682:2814444 -k3722,27:18460021,34845682:2814444 -) -(3722,31:6630773,36411411:11829248,505283,102891 -h3722,30:6630773,36411411:0,0,0 -g3722,30:8263930,36411411 -g3722,30:9051672,36411411 -k3722,31:14154306,36411411:4305716 -k3722,31:18460021,36411411:4305715 -) -(3722,32:6630773,37256798:11829248,505283,102891 -h3722,31:6630773,37256798:0,0,0 -g3722,31:8518209,37256798 -g3722,31:9688026,37256798 -k3722,32:14671712,37256798:3788309 -k3722,32:18460021,37256798:3788309 -) -(3722,33:6630773,38102185:11829248,505283,134348 -h3722,32:6630773,38102185:0,0,0 -g3722,32:8591610,38102185 -g3722,32:9986216,38102185 -k3722,33:14621578,38102185:3838444 -k3722,33:18460021,38102185:3838443 -) -(3722,34:6630773,38947572:11829248,513147,126483 -h3722,33:6630773,38947572:0,0,0 -g3722,33:9620525,38947572 -g3722,33:13590040,38947572 -g3722,33:16778366,38947572 -k3722,34:18216882,38947572:243139 -k3722,34:18460021,38947572:243139 -) -(3722,35:6630773,39792959:11829248,485622,102891 -h3722,34:6630773,39792959:0,0,0 -g3722,34:8071254,39792959 -g3722,34:9237794,39792959 -k3722,35:14458720,39792959:4001301 -k3722,35:18460021,39792959:4001301 -) -(3722,36:6630773,40638346:11829248,505283,102891 -h3722,35:6630773,40638346:0,0,0 -g3722,35:11250405,40638346 -k3722,36:15452902,40638346:3007120 -k3722,36:18460021,40638346:3007119 -) -(3722,37:6630773,41483733:11829248,505283,102891 -h3722,36:6630773,41483733:0,0,0 -g3722,36:9962623,41483733 -k3722,37:14809011,41483733:3651011 -k3722,37:18460021,41483733:3651010 -) -(3722,38:6630773,42329120:11829248,505283,134348 -h3722,37:6630773,42329120:0,0,0 -g3722,37:10557034,42329120 -k3722,38:15106216,42329120:3353805 -k3722,38:18460021,42329120:3353805 -) -(3722,39:6630773,43174507:11829248,505283,102891 -h3722,38:6630773,43174507:0,0,0 -g3722,38:10744467,43174507 -k3722,39:15199933,43174507:3260089 -k3722,39:18460021,43174507:3260088 -) -(3722,40:6630773,44019894:11829248,505283,102891 -h3722,39:6630773,44019894:0,0,0 -g3722,39:9341342,44019894 -g3722,39:12990386,44019894 -k3722,40:16123663,44019894:2336359 -k3722,40:18460021,44019894:2336358 -) -(3722,41:6630773,44865281:11829248,505283,126483 -h3722,40:6630773,44865281:0,0,0 -g3722,40:7989989,44865281 -g3722,40:9970487,44865281 -g3722,40:11137027,44865281 -g3722,40:13117525,44865281 -g3722,40:14476741,44865281 -k3722,40:18460021,44865281:2791835 -) -(3722,41:9252213,45706769:9207808,505283,126483 -g3722,40:12277354,45706769 -k3722,41:16007336,45706769:2452685 -k3722,41:18460021,45706769:2452685 -) -] -k3722,81:19606901,45706769:1146880 -r3722,81:19606901,45706769:0,32762076,134348 -k3722,81:20753781,45706769:1146880 -[3722,81:20753781,45706769:11829248,32627728,134348 -(3722,42:20753781,13734401:11829248,505283,102891 -h3722,41:20753781,13734401:0,0,0 -g3722,41:23638675,13734401 -k3722,42:28708541,13734401:3874489 -k3722,42:32583029,13734401:3874488 -) -(3722,47:20753781,15298685:11829248,485622,102891 -h3722,45:20753781,15298685:0,0,0 -g3722,45:21580189,15298685 -g3722,45:22750006,15298685 -g3722,45:23919823,15298685 -g3722,45:25089640,15298685 -g3722,45:26259457,15298685 -g3722,45:27429274,15298685 -g3722,45:28599091,15298685 -g3722,45:29768908,15298685 -g3722,45:30938725,15298685 -k3722,45:32583029,15298685:673716 -) -(3722,47:23375221,16140173:9207808,485622,102891 -g3722,45:24943497,16140173 -g3722,45:26511773,16140173 -g3722,45:28080049,16140173 -k3722,47:30929228,16140173:1653802 -k3722,47:32583029,16140173:1653801 -) -(3722,48:20753781,16985479:11829248,485622,102891 -h3722,47:20753781,16985479:0,0,0 -g3722,47:22409875,16985479 -g3722,47:23579692,16985479 -g3722,47:24749509,16985479 -g3722,47:25919326,16985479 -g3722,47:27089143,16985479 -g3722,47:28258960,16985479 -g3722,47:29428777,16985479 -g3722,47:30598594,16985479 -k3722,47:32583029,16985479:615388 -) -(3722,48:23375221,17826967:9207808,485622,102891 -g3722,47:24943497,17826967 -k3722,48:29360952,17826967:3222078 -k3722,48:32583029,17826967:3222077 -) -(3722,49:20753781,18672272:11829248,513147,134348 -h3722,48:20753781,18672272:0,0,0 -g3722,48:24399548,18672272 -g3722,48:27614088,18672272 -g3722,48:28780628,18672272 -k3722,49:31793975,18672272:789055 -k3722,49:32583029,18672272:789054 -) -(3722,50:20753781,19517577:11829248,505283,134348 -h3722,49:20753781,19517577:0,0,0 -g3722,49:23663579,19517577 -g3722,49:27379470,19517577 -g3722,49:28972650,19517577 -g3722,49:30959701,19517577 -k3722,49:32583029,19517577:254281 -) -(3722,50:23375221,20359065:9207808,485622,11795 -k3722,50:29338342,20359065:3244688 -k3722,50:32583029,20359065:3244687 -) -(3722,51:20753781,21204370:11829248,505283,126483 -h3722,50:20753781,21204370:0,0,0 -g3722,50:23927689,21204370 -g3722,50:26262081,21204370 -g3722,50:28461469,21204370 -k3722,51:30920708,21204370:1662321 -k3722,51:32583029,21204370:1662321 -) -(3722,52:20753781,22049675:11829248,505283,134348 -h3722,51:20753781,22049675:0,0,0 -g3722,51:23927689,22049675 -g3722,51:25992728,22049675 -g3722,51:29584100,22049675 -k3722,52:31482024,22049675:1101006 -k3722,52:32583029,22049675:1101005 -) -(3722,53:20753781,22894980:11829248,505283,134348 -h3722,52:20753781,22894980:0,0,0 -g3722,52:23927689,22894980 -g3722,52:26496700,22894980 -k3722,53:29938324,22894980:2644706 -k3722,53:32583029,22894980:2644705 -) -(3722,54:20753781,23740286:11829248,513147,102891 -h3722,53:20753781,23740286:0,0,0 -r3722,81:20753781,23740286:0,616038,102891 -g3722,53:22064501,23740286 -g3722,53:22064501,23740286 -g3722,53:24749511,23740286 -g3722,53:25608032,23740286 -g3722,53:29285912,23740286 -k3722,54:31332930,23740286:1250100 -k3722,54:32583029,23740286:1250099 -) -(3722,55:20753781,24585591:11829248,505283,134348 -h3722,54:20753781,24585591:0,0,0 -r3722,81:20753781,24585591:0,639631,134348 -g3722,54:22064501,24585591 -g3722,54:22064501,24585591 -g3722,54:24347775,24585591 -g3722,54:27518406,24585591 -k3722,54:32583029,24585591:3873178 -) -(3722,55:23375221,25427079:9207808,505283,102891 -g3722,54:27621298,25427079 -k3722,55:30500623,25427079:2082407 -k3722,55:32583029,25427079:2082406 -) -(3722,56:20753781,26272384:11829248,505283,126483 -h3722,55:20753781,26272384:0,0,0 -r3722,81:20753781,26272384:0,631766,126483 -g3722,55:22064501,26272384 -g3722,55:22064501,26272384 -g3722,55:26945622,26272384 -g3722,55:30723117,26272384 -k3722,56:32051532,26272384:531497 -k3722,56:32583029,26272384:531497 -) -(3722,57:20753781,27117689:11829248,513147,134348 -h3722,56:20753781,27117689:0,0,0 -r3722,81:20753781,27117689:0,647495,134348 -g3722,56:22064501,27117689 -g3722,56:22064501,27117689 -g3722,56:24925147,27117689 -g3722,56:25957339,27117689 -k3722,57:29668643,27117689:2914386 -k3722,57:32583029,27117689:2914386 -) -(3722,58:20753781,27962994:11829248,505283,134348 -h3722,57:20753781,27962994:0,0,0 -r3722,81:20753781,27962994:0,639631,134348 -g3722,57:22064501,27962994 -g3722,57:22064501,27962994 -g3722,57:25792844,27962994 -g3722,57:29142389,27962994 -k3722,58:31261168,27962994:1321861 -k3722,58:32583029,27962994:1321861 -) -(3722,59:20753781,28808300:11829248,505283,102891 -h3722,58:20753781,28808300:0,0,0 -g3722,58:23764505,28808300 -g3722,58:26556338,28808300 -g3722,58:29407154,28808300 -k3722,59:31592780,28808300:990249 -k3722,59:32583029,28808300:990249 -) -(3722,60:20753781,29653605:11829248,505283,102891 -h3722,59:20753781,29653605:0,0,0 -g3722,59:23359492,29653605 -k3722,60:28568949,29653605:4014080 -k3722,60:32583029,29653605:4014080 -) -(3722,61:20753781,30498910:11829248,505283,126483 -h3722,60:20753781,30498910:0,0,0 -r3722,81:20753781,30498910:0,631766,126483 -g3722,60:22064501,30498910 -g3722,60:22064501,30498910 -g3722,60:23017394,30498910 -g3722,60:24771792,30498910 -g3722,60:27390610,30498910 -k3722,61:30584508,30498910:1998521 -k3722,61:32583029,30498910:1998521 -) -(3722,62:20753781,31344215:11829248,505283,7863 -h3722,61:20753781,31344215:0,0,0 -g3722,61:23185822,31344215 -g3722,61:24576496,31344215 -k3722,62:29636203,31344215:2946826 -k3722,62:32583029,31344215:2946826 -) -(3722,63:20753781,32189520:11829248,505283,102891 -h3722,62:20753781,32189520:0,0,0 -r3722,81:20753781,32189520:0,608174,102891 -g3722,62:22064501,32189520 -g3722,62:22064501,32189520 -g3722,62:25412080,32189520 -k3722,63:29958313,32189520:2624717 -k3722,63:32583029,32189520:2624716 -) -(3722,64:20753781,33034826:11829248,505283,134348 -h3722,63:20753781,33034826:0,0,0 -r3722,81:20753781,33034826:0,639631,134348 -g3722,63:22064501,33034826 -g3722,63:22064501,33034826 -g3722,63:24507027,33034826 -k3722,64:29505786,33034826:3077243 -k3722,64:32583029,33034826:3077243 -) -(3722,65:20753781,33880131:11829248,505283,134348 -h3722,64:20753781,33880131:0,0,0 -r3722,81:20753781,33880131:0,639631,134348 -g3722,64:22064501,33880131 -g3722,64:22064501,33880131 -g3722,64:25057530,33880131 -g3722,64:27660620,33880131 -g3722,64:30216524,33880131 -k3722,65:32360535,33880131:222495 -k3722,65:32583029,33880131:222494 -) -(3722,66:20753781,34725436:11829248,505283,126483 -h3722,65:20753781,34725436:0,0,0 -g3722,65:23129461,34725436 -g3722,65:26056954,34725436 -k3722,66:30679208,34725436:1903821 -k3722,66:32583029,34725436:1903821 -) -(3722,67:20753781,35570741:11829248,485622,102891 -h3722,66:20753781,35570741:0,0,0 -g3722,66:23324758,35570741 -k3722,67:28551582,35570741:4031447 -k3722,67:32583029,35570741:4031447 -) -(3722,68:20753781,36416046:11829248,505283,7863 -h3722,67:20753781,36416046:0,0,0 -k3722,68:27476464,36416046:5106565 -k3722,68:32583029,36416046:5106565 -) -(3722,69:20753781,37261352:11829248,513147,102891 -h3722,68:20753781,37261352:0,0,0 -r3722,81:20753781,37261352:0,616038,102891 -g3722,68:22064501,37261352 -g3722,68:22064501,37261352 -g3722,68:25849860,37261352 -k3722,69:30575661,37261352:2007368 -k3722,69:32583029,37261352:2007368 -) -(3722,70:20753781,38106657:11829248,485622,102891 -h3722,69:20753781,38106657:0,0,0 -r3722,81:20753781,38106657:0,588513,102891 -g3722,69:22064501,38106657 -g3722,69:22064501,38106657 -g3722,69:24505717,38106657 -k3722,70:29142062,38106657:3440968 -k3722,70:32583029,38106657:3440967 -) -(3722,71:20753781,38951962:11829248,513147,134348 -h3722,70:20753781,38951962:0,0,0 -g3722,70:24706912,38951962 -g3722,70:25565433,38951962 -g3722,70:28196703,38951962 -k3722,70:32583029,38951962:2698119 -) -(3722,71:23375221,39793450:9207808,505283,102891 -g3722,70:26564202,39793450 -k3722,71:30534374,39793450:2048656 -k3722,71:32583029,39793450:2048655 -) -(3722,72:20753781,40638755:11829248,485622,126483 -h3722,71:20753781,40638755:0,0,0 -g3722,71:24706912,40638755 -g3722,71:28156727,40638755 -k3722,72:31330636,40638755:1252393 -k3722,72:32583029,40638755:1252393 -) -(3722,73:20753781,41484060:11829248,505283,126483 -h3722,72:20753781,41484060:0,0,0 -g3722,72:24366780,41484060 -g3722,72:26062196,41484060 -g3722,72:29951757,41484060 -k3722,73:31865082,41484060:717948 -k3722,73:32583029,41484060:717947 -) -(3722,74:20753781,42329365:11829248,505283,102891 -h3722,73:20753781,42329365:0,0,0 -g3722,73:24546349,42329365 -g3722,73:28435910,42329365 -k3722,74:31107158,42329365:1475871 -k3722,74:32583029,42329365:1475871 -) -(3722,75:20753781,43174671:11829248,505283,102891 -h3722,74:20753781,43174671:0,0,0 -g3722,74:23546925,43174671 -k3722,75:28463436,43174671:4119593 -k3722,75:32583029,43174671:4119593 -) -(3722,76:20753781,44019976:11829248,513147,102891 -h3722,75:20753781,44019976:0,0,0 -g3722,75:23240872,44019976 -g3722,75:24099393,44019976 -g3722,75:27374227,44019976 -g3722,75:29097168,44019976 -k3722,76:31437787,44019976:1145242 -k3722,76:32583029,44019976:1145242 -) -(3722,78:20753781,44865281:11829248,505283,134348 -h3722,76:20753781,44865281:0,0,0 -g3722,76:24691184,44865281 -g3722,76:28249788,44865281 -k3722,77:28249788,44865281:0 -g3722,77:29416328,44865281 -k3722,77:32583029,44865281:264111 -) -(3722,78:23375221,45706769:9207808,513147,134348 -g3722,77:24233742,45706769 -g3722,77:27325730,45706769 -k3722,78:31823467,45706769:759563 -k3722,78:32583029,45706769:759562 -) -] -(3722,81:32583029,45706769:0,355205,126483 -h3722,81:32583029,45706769:420741,355205,126483 -k3722,81:32583029,45706769:-420741 -) -) -] -(3722,81:32583029,45706769:0,0,0 -g3722,81:32583029,45706769 -) -) -] -(3722,81:6630773,47279633:25952256,481690,0 -(3722,81:6630773,47279633:25952256,481690,0 -k3722,81:19009213,47279633:12378440 -k3722,81:32583030,47279633:12378440 -) -) -] -(3722,81:4262630,4025873:0,0,0 -[3722,81:-473656,4025873:0,0,0 -(3722,81:-473656,-710413:0,0,0 -(3722,81:-473656,-710413:0,0,0 -g3722,81:-473656,-710413 -) -g3722,81:-473656,-710413 +k3763,258:3078556,2439708:-34777008 ) ] +[3763,258:3078558,4812305:0,0,0 +(3763,258:3078558,49800853:0,16384,2228224 +k3763,258:1358238,49800853:-1720320 +(3763,1:1358238,49800853:1720320,16384,2228224 +(3763,1:1358238,49800853:1179648,16384,0 +r3763,258:2537886,49800853:1179648,16384,0 ) -] -!21418 -}432 -!12 -{433 -[3722,178:4262630,47279633:28320399,43253760,0 -(3722,178:4262630,4025873:0,0,0 -[3722,178:-473656,4025873:0,0,0 -(3722,178:-473656,-710413:0,0,0 -(3722,178:-473656,-644877:0,0,0 -k3722,178:-473656,-644877:-65536 +g3763,1:3062174,49800853 +(3763,1:3062174,52029077:16384,1703936,0 +[3763,1:3062174,52029077:25952256,1703936,0 +(3763,1:3062174,51504789:25952256,1179648,0 +(3763,1:3062174,51504789:16384,1179648,0 +r3763,258:3078558,51504789:16384,1179648,0 ) -(3722,178:-473656,4736287:0,0,0 -k3722,178:-473656,4736287:5209943 -) -g3722,178:-473656,-710413 +k3763,1:29014430,51504789:25935872 +g3763,1:29014430,51504789 ) ] ) -[3722,178:6630773,47279633:25952256,43253760,0 -[3722,178:6630773,4812305:25952256,786432,0 -(3722,178:6630773,4812305:25952256,505283,11795 -(3722,178:6630773,4812305:25952256,505283,11795 -g3722,178:3078558,4812305 -[3722,178:3078558,4812305:0,0,0 -(3722,178:3078558,2439708:0,1703936,0 -k3722,178:1358238,2439708:-1720320 -(3722,1:1358238,2439708:1720320,1703936,0 -(3722,1:1358238,2439708:1179648,16384,0 -r3722,178:2537886,2439708:1179648,16384,0 -) -g3722,1:3062174,2439708 -(3722,1:3062174,2439708:16384,1703936,0 -[3722,1:3062174,2439708:25952256,1703936,0 -(3722,1:3062174,1915420:25952256,1179648,0 -(3722,1:3062174,1915420:16384,1179648,0 -r3722,178:3078558,1915420:16384,1179648,0 ) -k3722,1:29014430,1915420:25935872 -g3722,1:29014430,1915420 ) ] +[3763,258:3078558,4812305:0,0,0 +(3763,258:3078558,49800853:0,16384,2228224 +g3763,258:29030814,49800853 +g3763,258:36135244,49800853 +(3763,1:36135244,49800853:1720320,16384,2228224 +(3763,1:36135244,52029077:16384,1703936,0 +[3763,1:36135244,52029077:25952256,1703936,0 +(3763,1:36135244,51504789:25952256,1179648,0 +(3763,1:36135244,51504789:16384,1179648,0 +r3763,258:36151628,51504789:16384,1179648,0 ) +k3763,1:62087500,51504789:25935872 +g3763,1:62087500,51504789 +) +] +) +g3763,1:36675916,49800853 +(3763,1:36675916,49800853:1179648,16384,0 +r3763,258:37855564,49800853:1179648,16384,0 +) +) +k3763,258:3078556,49800853:-34777008 +) +] +g3763,258:6630773,4812305 +g3763,258:6630773,4812305 +g3763,258:9313817,4812305 +g3763,258:11211739,4812305 +k3763,258:31387651,4812305:20175912 +) +) +] +[3763,258:6630773,45706769:25952256,40108032,0 +(3763,258:6630773,45706769:25952256,40108032,0 +(3763,258:6630773,45706769:0,0,0 +g3763,258:6630773,45706769 +) +[3763,258:6630773,45706769:25952256,40108032,0 +(3763,258:6630773,45706769:25952256,40108032,126483 +[3763,258:6630773,45706769:11829248,40108032,102891 +(3763,169:6630773,6254097:11829248,485622,102891 +h3763,168:6630773,6254097:0,0,0 +g3763,168:10044543,6254097 +g3763,168:11214360,6254097 +g3763,168:12782636,6254097 +g3763,168:14350912,6254097 +k3763,169:17003155,6254097:1456866 +k3763,169:18460021,6254097:1456866 +) +(3763,170:6630773,7119177:11829248,513147,7863 +h3763,169:6630773,7119177:0,0,0 +k3763,170:14058296,7119177:4401726 +k3763,170:18460021,7119177:4401725 +) +(3763,171:6630773,7984257:11829248,485622,134348 +h3763,170:6630773,7984257:0,0,0 +r3763,258:6630773,7984257:0,619970,134348 +g3763,170:7941493,7984257 +g3763,170:7941493,7984257 +g3763,170:11717022,7984257 +k3763,171:15686210,7984257:2773811 +k3763,171:18460021,7984257:2773811 +) +(3763,172:6630773,8849337:11829248,505283,102891 +h3763,171:6630773,8849337:0,0,0 +r3763,258:6630773,8849337:0,608174,102891 +g3763,171:7941493,8849337 +g3763,171:7941493,8849337 +g3763,171:9574650,8849337 +g3763,171:10392539,8849337 +k3763,172:15023969,8849337:3436053 +k3763,172:18460021,8849337:3436052 +) +(3763,173:6630773,9714417:11829248,505283,102891 +h3763,172:6630773,9714417:0,0,0 +r3763,258:6630773,9714417:0,608174,102891 +g3763,172:7941493,9714417 +g3763,172:7941493,9714417 +g3763,172:9414087,9714417 +k3763,173:14534743,9714417:3925279 +k3763,173:18460021,9714417:3925278 +) +(3763,174:6630773,10579497:11829248,513147,134348 +h3763,173:6630773,10579497:0,0,0 +r3763,258:6630773,10579497:0,647495,134348 +g3763,173:7941493,10579497 +g3763,173:7941493,10579497 +g3763,173:10744467,10579497 +g3763,173:12400561,10579497 +g3763,173:13968837,10579497 +k3763,174:16812118,10579497:1647904 +k3763,174:18460021,10579497:1647903 +) +(3763,175:6630773,11444577:11829248,513147,134348 +h3763,174:6630773,11444577:0,0,0 +g3763,174:9105412,11444577 +k3763,175:14983992,11444577:3476030 +k3763,175:18460021,11444577:3476029 +) +(3763,176:6630773,12309657:11829248,505283,134348 +h3763,175:6630773,12309657:0,0,0 +r3763,258:6630773,12309657:0,639631,134348 +g3763,175:7941493,12309657 +g3763,175:7941493,12309657 +g3763,175:10442346,12309657 +g3763,175:11086564,12309657 +g3763,175:12955650,12309657 +k3763,176:16305524,12309657:2154497 +k3763,176:18460021,12309657:2154497 +) +(3763,177:6630773,13174737:11829248,513147,134348 +h3763,176:6630773,13174737:0,0,0 +r3763,258:6630773,13174737:0,647495,134348 +g3763,176:7941493,13174737 +g3763,176:7941493,13174737 +g3763,176:11043312,13174737 +g3763,176:11901833,13174737 +g3763,176:14993821,13174737 +k3763,177:17324610,13174737:1135412 +k3763,177:18460021,13174737:1135411 +) +(3763,178:6630773,14039817:11829248,505283,126483 +h3763,177:6630773,14039817:0,0,0 +r3763,258:6630773,14039817:0,631766,126483 +g3763,177:7941493,14039817 +g3763,177:7941493,14039817 +g3763,177:12654842,14039817 +g3763,177:13536956,14039817 +g3763,177:14354845,14039817 +k3763,178:17005122,14039817:1454900 +k3763,178:18460021,14039817:1454899 +) +(3763,179:6630773,14904897:11829248,513147,134348 +h3763,178:6630773,14904897:0,0,0 +r3763,258:6630773,14904897:0,647495,134348 +g3763,178:7941493,14904897 +g3763,178:7941493,14904897 +g3763,178:9423917,14904897 +g3763,178:12856037,14904897 +g3763,178:13714558,14904897 +g3763,178:15476821,14904897 +k3763,179:17566110,14904897:893912 +k3763,179:18460021,14904897:893911 +) +(3763,180:6630773,15769977:11829248,505283,134348 +h3763,179:6630773,15769977:0,0,0 +r3763,258:6630773,15769977:0,639631,134348 +g3763,179:7941493,15769977 +g3763,179:7941493,15769977 +g3763,179:10100248,15769977 +g3763,179:12970724,15769977 +g3763,179:17522199,15769977 +k3763,179:18460021,15769977:321784 +) +(3763,180:9252213,16635057:9207808,485622,102891 +g3763,179:10070102,16635057 +k3763,180:14862750,16635057:3597271 +k3763,180:18460021,16635057:3597271 +) +(3763,181:6630773,17500137:11829248,505283,134348 +h3763,180:6630773,17500137:0,0,0 +r3763,258:6630773,17500137:0,639631,134348 +g3763,180:7941493,17500137 +g3763,180:7941493,17500137 +g3763,180:10720874,17500137 +g3763,180:15225818,17500137 +k3763,181:17440608,17500137:1019413 +k3763,181:18460021,17500137:1019413 +) +(3763,182:6630773,18365217:11829248,505283,134348 +h3763,181:6630773,18365217:0,0,0 +r3763,258:6630773,18365217:0,639631,134348 +g3763,181:7941493,18365217 +g3763,181:7941493,18365217 +g3763,181:10838839,18365217 +k3763,182:15247119,18365217:3212903 +k3763,182:18460021,18365217:3212902 +) +(3763,183:6630773,19230297:11829248,505283,126483 +h3763,182:6630773,19230297:0,0,0 +r3763,258:6630773,19230297:0,631766,126483 +g3763,182:7941493,19230297 +g3763,182:7941493,19230297 +g3763,182:9643463,19230297 +g3763,182:12004069,19230297 +g3763,182:12819336,19230297 +g3763,182:14470843,19230297 +g3763,182:15861517,19230297 +k3763,182:18460021,19230297:663881 +) +(3763,183:9252213,20095377:9207808,485622,0 +k3763,183:14254576,20095377:4205445 +k3763,183:18460021,20095377:4205445 +) +(3763,184:6630773,20960457:11829248,485622,102891 +h3763,183:6630773,20960457:0,0,0 +r3763,258:6630773,20960457:0,588513,102891 +g3763,183:7941493,20960457 +g3763,183:7941493,20960457 +g3763,183:10994160,20960457 +g3763,183:11809427,20960457 +g3763,183:12627316,20960457 +k3763,184:16141357,20960457:2318664 +k3763,184:18460021,20960457:2318664 +) +(3763,185:6630773,21825537:11829248,505283,134348 +h3763,184:6630773,21825537:0,0,0 +r3763,258:6630773,21825537:0,639631,134348 +g3763,184:7941493,21825537 +g3763,184:7941493,21825537 +g3763,184:9159807,21825537 +g3763,184:9804025,21825537 +g3763,184:13019221,21825537 +k3763,185:16337310,21825537:2122712 +k3763,185:18460021,21825537:2122711 +) +(3763,186:6630773,22690617:11829248,505283,134348 +h3763,185:6630773,22690617:0,0,0 +r3763,258:6630773,22690617:0,639631,134348 +g3763,185:7941493,22690617 +g3763,185:7941493,22690617 +g3763,185:9876115,22690617 +g3763,185:11094429,22690617 +g3763,185:11738647,22690617 +g3763,185:14953843,22690617 +g3763,185:16123660,22690617 +k3763,186:17889529,22690617:570492 +k3763,186:18460021,22690617:570492 +) +(3763,190:6630773,24079769:11829248,505283,134348 +h3763,189:6630773,24079769:0,0,0 +g3763,189:10522300,24079769 +g3763,189:12534255,24079769 +g3763,189:15225163,24079769 +k3763,190:18201809,24079769:258213 +k3763,190:18460021,24079769:258212 +) +(3763,191:6630773,24944849:11829248,505283,134348 +h3763,190:6630773,24944849:0,0,0 +g3763,190:9136869,24944849 +k3763,191:15025607,24944849:3434415 +k3763,191:18460021,24944849:3434414 +) +(3763,192:6630773,25809929:11829248,505283,126483 +h3763,191:6630773,25809929:0,0,0 +r3763,258:6630773,25809929:0,631766,126483 +g3763,191:7941493,25809929 +g3763,191:7941493,25809929 +g3763,191:8894386,25809929 +g3763,191:10648784,25809929 +g3763,191:13267602,25809929 +k3763,192:16461500,25809929:1998521 +k3763,192:18460021,25809929:1998521 +) +(3763,194:6630773,26675009:11829248,505283,134348 +h3763,192:6630773,26675009:0,0,0 +g3763,192:10337489,26675009 +g3763,192:13896093,26675009 +k3763,193:13896093,26675009:0 +g3763,193:15062633,26675009 +k3763,193:18460021,26675009:494798 +) +(3763,194:9252213,27540089:9207808,513147,134348 +g3763,193:10110734,27540089 +g3763,193:13202722,27540089 +k3763,194:17585115,27540089:874906 +k3763,194:18460021,27540089:874906 +) +(3763,195:6630773,28405169:11829248,505283,134348 +h3763,194:6630773,28405169:0,0,0 +g3763,194:11457499,28405169 +k3763,195:15556449,28405169:2903573 +k3763,195:18460021,28405169:2903572 +) +(3763,196:6630773,29270249:11829248,513147,134348 +h3763,195:6630773,29270249:0,0,0 +g3763,195:9845968,29270249 +k3763,196:14750683,29270249:3709338 +k3763,196:18460021,29270249:3709338 +) +(3763,197:6630773,30135329:11829248,505283,134348 +h3763,196:6630773,30135329:0,0,0 +g3763,196:10612740,30135329 +k3763,197:15134069,30135329:3325952 +k3763,197:18460021,30135329:3325952 +) +(3763,201:6630773,31000409:11829248,505283,134348 +h3763,197:6630773,31000409:0,0,0 +g3763,197:9899053,31000409 +g3763,197:11467329,31000409 +g3763,197:13035605,31000409 +g3763,197:14603881,31000409 +k3763,197:18460021,31000409:2487093 +) +(3763,201:9252213,31865489:9207808,485622,102891 +g3763,197:12343546,31865489 +g3763,197:13911822,31865489 +g3763,197:15480098,31865489 +g3763,198:17048374,31865489 +k3763,198:18460021,31865489:42600 +) +(3763,201:9252213,32730569:9207808,485622,102891 +g3763,198:10820489,32730569 +g3763,198:12388765,32730569 +g3763,198:13957041,32730569 +g3763,198:15525317,32730569 +k3763,198:18460021,32730569:42600 +) +(3763,201:9252213,33595649:9207808,485622,102891 +g3763,198:10820489,33595649 +g3763,198:12388765,33595649 +g3763,199:15480098,33595649 +g3763,199:17048374,33595649 +k3763,199:18460021,33595649:42600 +) +(3763,201:9252213,34460729:9207808,485622,102891 +g3763,199:10820489,34460729 +g3763,199:12388765,34460729 +g3763,199:13957041,34460729 +g3763,199:15525317,34460729 +k3763,199:18460021,34460729:1565657 +) +(3763,201:9252213,35325809:9207808,485622,102891 +g3763,199:12343546,35325809 +g3763,200:13911822,35325809 +g3763,200:15480098,35325809 +k3763,201:17567748,35325809:892273 +k3763,201:18460021,35325809:892273 +) +(3763,202:6630773,36190889:11829248,505283,134348 +h3763,201:6630773,36190889:0,0,0 +g3763,201:10117943,36190889 +g3763,201:11686219,36190889 +g3763,201:13254495,36190889 +g3763,201:14822771,36190889 +g3763,201:16391047,36190889 +k3763,201:18460021,36190889:699927 +) +(3763,202:9252213,37055969:9207808,485622,11795 +k3763,202:14453806,37055969:4006216 +k3763,202:18460021,37055969:4006215 +) +(3763,203:6630773,37921049:11829248,505283,134348 +h3763,202:6630773,37921049:0,0,0 +g3763,202:9060192,37921049 +k3763,203:14357795,37921049:4102226 +k3763,203:18460021,37921049:4102226 +) +(3763,204:6630773,38786129:11829248,505283,134348 +h3763,203:6630773,38786129:0,0,0 +g3763,203:9834827,38786129 +k3763,204:14745113,38786129:3714909 +k3763,204:18460021,38786129:3714908 +) +(3763,205:6630773,39651209:11829248,505283,134348 +h3763,204:6630773,39651209:0,0,0 +g3763,204:10281783,39651209 +k3763,205:14968591,39651209:3491431 +k3763,205:18460021,39651209:3491430 +) +(3763,206:6630773,40516289:11829248,505283,134348 +h3763,205:6630773,40516289:0,0,0 +g3763,205:9518944,40516289 +k3763,206:14587171,40516289:3872850 +k3763,206:18460021,40516289:3872850 +) +(3763,207:6630773,41381369:11829248,505283,134348 +h3763,206:6630773,41381369:0,0,0 +g3763,206:9491419,41381369 +k3763,207:14573409,41381369:3886613 +k3763,207:18460021,41381369:3886612 +) +(3763,208:6630773,42246449:11829248,485622,102891 +h3763,207:6630773,42246449:0,0,0 +g3763,207:7912001,42246449 +k3763,208:13783700,42246449:4676322 +k3763,208:18460021,42246449:4676321 +) +(3763,209:6630773,43111529:11829248,505283,102891 +h3763,208:6630773,43111529:0,0,0 +g3763,208:9212891,43111529 +g3763,208:9984249,43111529 +k3763,209:14819824,43111529:3640198 +k3763,209:18460021,43111529:3640197 +) +(3763,210:6630773,43976609:11829248,505283,134348 +h3763,209:6630773,43976609:0,0,0 +g3763,209:8412041,43976609 +g3763,209:9578581,43976609 +g3763,209:13470108,43976609 +g3763,209:15482063,43976609 +k3763,210:18130046,43976609:329975 +k3763,210:18460021,43976609:329975 +) +(3763,211:6630773,44841689:11829248,513147,134348 +h3763,210:6630773,44841689:0,0,0 +g3763,210:9732592,44841689 +g3763,210:10591113,44841689 +g3763,210:13683101,44841689 +g3763,210:15251377,44841689 +k3763,211:17453388,44841689:1006634 +k3763,211:18460021,44841689:1006633 +) +(3763,212:6630773,45706769:11829248,505283,102891 +h3763,211:6630773,45706769:0,0,0 +r3763,258:6630773,45706769:0,608174,102891 +g3763,211:7941493,45706769 +g3763,211:7941493,45706769 +g3763,211:11696050,45706769 +k3763,212:15675724,45706769:2784297 +k3763,212:18460021,45706769:2784297 +) +] +k3763,258:19606901,45706769:1146880 +r3763,258:19606901,45706769:0,40234515,126483 +k3763,258:20753781,45706769:1146880 +[3763,258:20753781,45706769:11829248,40108032,126483 +(3763,213:20753781,6254097:11829248,505283,102891 +h3763,212:20753781,6254097:0,0,0 +r3763,258:20753781,6254097:0,608174,102891 +g3763,212:22064501,6254097 +g3763,212:22064501,6254097 +g3763,212:25819058,6254097 +k3763,213:29798732,6254097:2784297 +k3763,213:32583029,6254097:2784297 +) +(3763,214:20753781,7131655:11829248,485622,102891 +h3763,213:20753781,7131655:0,0,0 +r3763,258:20753781,7131655:0,588513,102891 +g3763,213:22064501,7131655 +g3763,213:22064501,7131655 +g3763,213:26228003,7131655 +k3763,214:30764733,7131655:1818297 +k3763,214:32583029,7131655:1818296 +) +(3763,215:20753781,8009213:11829248,505283,102891 +h3763,214:20753781,8009213:0,0,0 +r3763,258:20753781,8009213:0,608174,102891 +g3763,214:22064501,8009213 +g3763,214:22064501,8009213 +g3763,214:24463118,8009213 +g3763,214:26738528,8009213 +k3763,215:30258467,8009213:2324562 +k3763,215:32583029,8009213:2324562 +) +(3763,216:20753781,8886771:11829248,505283,102891 +h3763,215:20753781,8886771:0,0,0 +r3763,258:20753781,8886771:0,608174,102891 +g3763,215:22064501,8886771 +g3763,215:22064501,8886771 +g3763,215:25147969,8886771 +g3763,215:29259042,8886771 +g3763,215:30827318,8886771 +k3763,216:32302862,8886771:280167 +k3763,216:32583029,8886771:280167 +) +(3763,217:20753781,9764329:11829248,513147,102891 +h3763,216:20753781,9764329:0,0,0 +r3763,258:20753781,9764329:0,616038,102891 +g3763,216:22064501,9764329 +g3763,216:22064501,9764329 +g3763,216:23879848,9764329 +g3763,216:25270522,9764329 +g3763,216:26310578,9764329 +g3763,216:28585988,9764329 +k3763,217:31943725,9764329:639304 +k3763,217:32583029,9764329:639304 +) +(3763,218:20753781,10641887:11829248,505283,134348 +h3763,217:20753781,10641887:0,0,0 +r3763,258:20753781,10641887:0,639631,134348 +g3763,217:22064501,10641887 +g3763,217:22064501,10641887 +g3763,217:24646619,10641887 +g3763,217:28009271,10641887 +k3763,218:31655367,10641887:927663 +k3763,218:32583029,10641887:927662 +) +(3763,219:20753781,11519444:11829248,505283,126483 +h3763,218:20753781,11519444:0,0,0 +r3763,258:20753781,11519444:0,631766,126483 +g3763,218:22064501,11519444 +g3763,218:22064501,11519444 +g3763,218:25189257,11519444 +g3763,218:27878854,11519444 +k3763,219:31590158,11519444:992871 +k3763,219:32583029,11519444:992871 +) +(3763,220:20753781,12397002:11829248,505283,102891 +h3763,219:20753781,12397002:0,0,0 +r3763,258:20753781,12397002:0,608174,102891 +g3763,219:22064501,12397002 +g3763,219:22064501,12397002 +g3763,219:25834131,12397002 +g3763,219:28109541,12397002 +k3763,220:31705502,12397002:877528 +k3763,220:32583029,12397002:877527 +) +(3763,221:20753781,13274560:11829248,505283,102891 +h3763,220:20753781,13274560:0,0,0 +r3763,258:20753781,13274560:0,608174,102891 +g3763,220:22064501,13274560 +g3763,220:22064501,13274560 +g3763,220:26175574,13274560 +k3763,221:29976990,13274560:2606039 +k3763,221:32583029,13274560:2606039 +) +(3763,222:20753781,14152118:11829248,505283,134348 +h3763,221:20753781,14152118:0,0,0 +r3763,258:20753781,14152118:0,639631,134348 +g3763,221:22064501,14152118 +g3763,221:22064501,14152118 +g3763,221:24836018,14152118 +g3763,221:25391107,14152118 +g3763,221:27750403,14152118 +k3763,222:31525933,14152118:1057097 +k3763,222:32583029,14152118:1057096 +) +(3763,223:20753781,15029676:11829248,505283,102891 +h3763,222:20753781,15029676:0,0,0 +r3763,258:20753781,15029676:0,608174,102891 +g3763,222:22064501,15029676 +g3763,222:22064501,15029676 +g3763,222:23826764,15029676 +k3763,223:28802585,15029676:3780444 +k3763,223:32583029,15029676:3780444 +) +(3763,224:20753781,15907234:11829248,505283,102891 +h3763,223:20753781,15907234:0,0,0 +r3763,258:20753781,15907234:0,608174,102891 +g3763,223:22064501,15907234 +g3763,223:22064501,15907234 +g3763,223:24789488,15907234 +g3763,223:27064898,15907234 +k3763,224:31183180,15907234:1399849 +k3763,224:32583029,15907234:1399849 +) +(3763,225:20753781,16784792:11829248,505283,102891 +h3763,224:20753781,16784792:0,0,0 +r3763,258:20753781,16784792:0,608174,102891 +g3763,224:22064501,16784792 +g3763,224:22064501,16784792 +g3763,224:25306567,16784792 +k3763,225:30304015,16784792:2279015 +k3763,225:32583029,16784792:2279014 +) +(3763,226:20753781,17662350:11829248,513147,102891 +h3763,225:20753781,17662350:0,0,0 +r3763,258:20753781,17662350:0,616038,102891 +g3763,225:22064501,17662350 +g3763,225:22064501,17662350 +g3763,225:24326148,17662350 +k3763,226:29813805,17662350:2769224 +k3763,226:32583029,17662350:2769224 +) +(3763,227:20753781,18539908:11829248,513147,126483 +h3763,226:20753781,18539908:0,0,0 +r3763,258:20753781,18539908:0,639630,126483 +g3763,226:22064501,18539908 +g3763,226:22064501,18539908 +g3763,226:24508993,18539908 +g3763,226:26487524,18539908 +k3763,227:30132965,18539908:2450064 +k3763,227:32583029,18539908:2450064 +) +(3763,228:20753781,19417466:11829248,513147,126483 +h3763,227:20753781,19417466:0,0,0 +r3763,258:20753781,19417466:0,639630,126483 +g3763,227:22064501,19417466 +g3763,227:22064501,19417466 +g3763,227:24508993,19417466 +g3763,227:26487524,19417466 +k3763,228:30132965,19417466:2450064 +k3763,228:32583029,19417466:2450064 +) +(3763,229:20753781,20295023:11829248,513147,102891 +h3763,228:20753781,20295023:0,0,0 +r3763,258:20753781,20295023:0,616038,102891 +g3763,228:22064501,20295023 +g3763,228:22064501,20295023 +g3763,228:24959226,20295023 +g3763,228:27855262,20295023 +k3763,229:31578362,20295023:1004667 +k3763,229:32583029,20295023:1004667 +) +(3763,230:20753781,21172581:11829248,485622,134348 +h3763,229:20753781,21172581:0,0,0 +r3763,258:20753781,21172581:0,619970,134348 +g3763,229:22064501,21172581 +g3763,229:22064501,21172581 +g3763,229:25944887,21172581 +g3763,229:27513163,21172581 +k3763,230:31407313,21172581:1175717 +k3763,230:32583029,21172581:1175716 +) +(3763,231:20753781,22050139:11829248,505283,134348 +h3763,230:20753781,22050139:0,0,0 +r3763,258:20753781,22050139:0,639631,134348 +g3763,230:22064501,22050139 +g3763,230:22064501,22050139 +g3763,230:25579852,22050139 +g3763,230:29460238,22050139 +k3763,231:31619322,22050139:963707 +k3763,231:32583029,22050139:963707 +) +(3763,232:20753781,22927697:11829248,505283,102891 +h3763,231:20753781,22927697:0,0,0 +r3763,258:20753781,22927697:0,608174,102891 +g3763,231:22064501,22927697 +g3763,231:22064501,22927697 +g3763,231:25579852,22927697 +g3763,231:28806189,22927697 +k3763,232:31292298,22927697:1290732 +k3763,232:32583029,22927697:1290731 +) +(3763,233:20753781,23805255:11829248,505283,126483 +h3763,232:20753781,23805255:0,0,0 +r3763,258:20753781,23805255:0,631766,126483 +g3763,232:22064501,23805255 +g3763,232:22064501,23805255 +g3763,232:24723952,23805255 +g3763,232:26539299,23805255 +g3763,232:28814709,23805255 +k3763,233:31296558,23805255:1286472 +k3763,233:32583029,23805255:1286471 +) +(3763,234:20753781,24682813:11829248,505283,126483 +h3763,233:20753781,24682813:0,0,0 +r3763,258:20753781,24682813:0,631766,126483 +g3763,233:22064501,24682813 +g3763,233:22064501,24682813 +g3763,233:25805296,24682813 +g3763,233:28494893,24682813 +k3763,234:31898178,24682813:684852 +k3763,234:32583029,24682813:684851 +) +(3763,235:20753781,25560371:11829248,505283,134348 +h3763,234:20753781,25560371:0,0,0 +r3763,258:20753781,25560371:0,639631,134348 +g3763,234:22064501,25560371 +g3763,234:22064501,25560371 +g3763,234:26248974,25560371 +k3763,234:32583029,25560371:2652898 +) +(3763,235:23375221,26425451:9207808,485622,11795 +k3763,235:29338342,26425451:3244688 +k3763,235:32583029,26425451:3244687 +) +(3763,236:20753781,27303009:11829248,513147,134348 +h3763,235:20753781,27303009:0,0,0 +r3763,258:20753781,27303009:0,647495,134348 +g3763,235:22064501,27303009 +g3763,235:22064501,27303009 +g3763,235:25071292,27303009 +g3763,235:25929813,27303009 +g3763,235:27692076,27303009 +g3763,235:29260352,27303009 +k3763,236:32280907,27303009:302122 +k3763,236:32583029,27303009:302122 +) +(3763,237:20753781,28180567:11829248,505283,102891 +h3763,236:20753781,28180567:0,0,0 +r3763,258:20753781,28180567:0,608174,102891 +g3763,236:22719861,28180567 +g3763,236:22719861,28180567 +g3763,236:24257991,28180567 +k3763,237:29018199,28180567:3564831 +k3763,237:32583029,28180567:3564830 +) +(3763,238:20753781,29058125:11829248,485622,126483 +h3763,237:20753781,29058125:0,0,0 +r3763,258:20753781,29058125:0,612105,126483 +g3763,237:22064501,29058125 +g3763,237:22064501,29058125 +g3763,237:25514316,29058125 +k3763,238:29646361,29058125:2936668 +k3763,238:32583029,29058125:2936668 +) +(3763,239:20753781,29935683:11829248,485622,102891 +h3763,238:20753781,29935683:0,0,0 +r3763,258:20753781,29935683:0,588513,102891 +g3763,238:22064501,29935683 +g3763,238:22064501,29935683 +g3763,238:25963893,29935683 +k3763,239:29871150,29935683:2711880 +k3763,239:32583029,29935683:2711879 +) +(3763,240:20753781,30813240:11829248,505283,126483 +h3763,239:20753781,30813240:0,0,0 +r3763,258:20753781,30813240:0,631766,126483 +g3763,239:22064501,30813240 +g3763,239:22064501,30813240 +g3763,239:23541027,30813240 +g3763,239:27948323,30813240 +k3763,240:31624893,30813240:958137 +k3763,240:32583029,30813240:958136 +) +(3763,241:20753781,31690798:11829248,505283,126483 +h3763,240:20753781,31690798:0,0,0 +r3763,258:20753781,31690798:0,631766,126483 +g3763,240:22064501,31690798 +g3763,240:22064501,31690798 +g3763,240:23541027,31690798 +g3763,240:26845352,31690798 +k3763,241:31073407,31690798:1509622 +k3763,241:32583029,31690798:1509622 +) +(3763,242:20753781,32568356:11829248,505283,134348 +h3763,241:20753781,32568356:0,0,0 +r3763,258:20753781,32568356:0,639631,134348 +g3763,241:22064501,32568356 +g3763,241:22064501,32568356 +g3763,241:23541027,32568356 +g3763,241:26830934,32568356 +k3763,242:31066198,32568356:1516831 +k3763,242:32583029,32568356:1516831 +) +(3763,243:20753781,33445914:11829248,505283,134348 +h3763,242:20753781,33445914:0,0,0 +r3763,258:20753781,33445914:0,639631,134348 +g3763,242:22064501,33445914 +g3763,242:22064501,33445914 +g3763,242:23871328,33445914 +g3763,242:24756719,33445914 +g3763,242:25400937,33445914 +g3763,242:28063664,33445914 +k3763,243:31682563,33445914:900466 +k3763,243:32583029,33445914:900466 +) +(3763,244:20753781,34323472:11829248,485622,134348 +h3763,243:20753781,34323472:0,0,0 +r3763,258:20753781,34323472:0,619970,134348 +g3763,243:22064501,34323472 +g3763,243:22064501,34323472 +g3763,243:23951937,34323472 +g3763,243:27314589,34323472 +k3763,244:31308026,34323472:1275004 +k3763,244:32583029,34323472:1275003 +) +(3763,245:20753781,35201030:11829248,505283,126483 +h3763,244:20753781,35201030:0,0,0 +r3763,258:20753781,35201030:0,631766,126483 +g3763,244:22064501,35201030 +g3763,244:22064501,35201030 +g3763,244:23928344,35201030 +g3763,244:28039417,35201030 +k3763,245:31670440,35201030:912590 +k3763,245:32583029,35201030:912589 +) +(3763,246:20753781,36078588:11829248,485622,126483 +h3763,245:20753781,36078588:0,0,0 +r3763,258:20753781,36078588:0,612105,126483 +g3763,245:22064501,36078588 +g3763,245:22064501,36078588 +g3763,245:25381933,36078588 +k3763,246:29580170,36078588:3002860 +k3763,246:32583029,36078588:3002859 +) +(3763,247:20753781,36956146:11829248,505283,102891 +h3763,246:20753781,36956146:0,0,0 +r3763,258:20753781,36956146:0,608174,102891 +g3763,246:22064501,36956146 +g3763,246:22064501,36956146 +g3763,246:24339911,36956146 +g3763,246:25908187,36956146 +k3763,247:30604825,36956146:1978205 +k3763,247:32583029,36956146:1978204 +) +(3763,248:20753781,37833704:11829248,513147,134348 +h3763,247:20753781,37833704:0,0,0 +r3763,258:20753781,37833704:0,647495,134348 +g3763,247:22064501,37833704 +g3763,247:22064501,37833704 +g3763,247:22858797,37833704 +g3763,247:26739183,37833704 +k3763,248:30258795,37833704:2324235 +k3763,248:32583029,37833704:2324234 +) +(3763,249:20753781,38711262:11829248,505283,102891 +h3763,248:20753781,38711262:0,0,0 +r3763,258:20753781,38711262:0,608174,102891 +g3763,248:22064501,38711262 +g3763,248:22064501,38711262 +g3763,248:23532507,38711262 +g3763,248:25807917,38711262 +k3763,249:29793162,38711262:2789868 +k3763,249:32583029,38711262:2789867 +) +(3763,250:20753781,39588820:11829248,485622,102891 +h3763,249:20753781,39588820:0,0,0 +r3763,258:20753781,39588820:0,588513,102891 +g3763,249:22064501,39588820 +g3763,249:22064501,39588820 +g3763,249:25290838,39588820 +g3763,249:26859114,39588820 +k3763,250:31080288,39588820:1502741 +k3763,250:32583029,39588820:1502741 +) +(3763,251:20753781,40466377:11829248,513147,134348 +h3763,250:20753781,40466377:0,0,0 +r3763,258:20753781,40466377:0,647495,134348 +g3763,250:22064501,40466377 +g3763,250:22064501,40466377 +g3763,250:25195155,40466377 +g3763,250:26053676,40466377 +g3763,250:27530202,40466377 +k3763,250:32583029,40466377:2589329 +) +(3763,251:23375221,41331457:9207808,485622,11795 +k3763,251:29338342,41331457:3244688 +k3763,251:32583029,41331457:3244687 +) +(3763,252:20753781,42209015:11829248,485622,126483 +h3763,251:20753781,42209015:0,0,0 +r3763,258:20753781,42209015:0,612105,126483 +g3763,251:22064501,42209015 +g3763,251:22064501,42209015 +g3763,251:25254138,42209015 +g3763,251:28150174,42209015 +k3763,252:31725818,42209015:857211 +k3763,252:32583029,42209015:857211 +) +(3763,253:20753781,43086573:11829248,485622,126483 +h3763,252:20753781,43086573:0,0,0 +r3763,258:20753781,43086573:0,612105,126483 +g3763,252:22064501,43086573 +g3763,252:22064501,43086573 +g3763,252:23891644,43086573 +g3763,252:25663082,43086573 +k3763,253:29720744,43086573:2862285 +k3763,253:32583029,43086573:2862285 +) +(3763,254:20753781,43964131:11829248,505283,134348 +h3763,253:20753781,43964131:0,0,0 +r3763,258:20753781,43964131:0,639631,134348 +g3763,253:22064501,43964131 +g3763,253:22064501,43964131 +g3763,253:23489909,43964131 +g3763,253:24880583,43964131 +g3763,253:26593694,43964131 +k3763,253:32583029,43964131:2308178 +) +(3763,254:23375221,44829211:9207808,485622,11795 +k3763,254:29338342,44829211:3244688 +k3763,254:32583029,44829211:3244687 +) +(3763,255:20753781,45706769:11829248,505283,126483 +h3763,254:20753781,45706769:0,0,0 +r3763,258:20753781,45706769:0,631766,126483 +g3763,254:22719861,45706769 +g3763,254:22719861,45706769 +g3763,254:26005180,45706769 +k3763,255:29891793,45706769:2691236 +k3763,255:32583029,45706769:2691236 +) +] +(3763,258:32583029,45706769:0,355205,126483 +h3763,258:32583029,45706769:420741,355205,126483 +k3763,258:32583029,45706769:-420741 +) +) +] +(3763,258:32583029,45706769:0,0,0 +g3763,258:32583029,45706769 +) +) +] +(3763,258:6630773,47279633:25952256,0,0 +h3763,258:6630773,47279633:25952256,0,0 +) +] +(3763,258:4262630,4025873:0,0,0 +[3763,258:-473656,4025873:0,0,0 +(3763,258:-473656,-710413:0,0,0 +(3763,258:-473656,-710413:0,0,0 +g3763,258:-473656,-710413 +) +g3763,258:-473656,-710413 +) +] +) +] +!28868 +}416 +!12 +{417 +[3763,353:4262630,47279633:28320399,43253760,0 +(3763,353:4262630,4025873:0,0,0 +[3763,353:-473656,4025873:0,0,0 +(3763,353:-473656,-710413:0,0,0 +(3763,353:-473656,-644877:0,0,0 +k3763,353:-473656,-644877:-65536 ) +(3763,353:-473656,4736287:0,0,0 +k3763,353:-473656,4736287:5209943 ) -] -[3722,178:3078558,4812305:0,0,0 -(3722,178:3078558,2439708:0,1703936,0 -g3722,178:29030814,2439708 -g3722,178:36135244,2439708 -(3722,1:36135244,2439708:1720320,1703936,0 -(3722,1:36135244,2439708:16384,1703936,0 -[3722,1:36135244,2439708:25952256,1703936,0 -(3722,1:36135244,1915420:25952256,1179648,0 -(3722,1:36135244,1915420:16384,1179648,0 -r3722,178:36151628,1915420:16384,1179648,0 -) -k3722,1:62087500,1915420:25935872 -g3722,1:62087500,1915420 +g3763,353:-473656,-710413 ) ] ) -g3722,1:36675916,2439708 -(3722,1:36675916,2439708:1179648,16384,0 -r3722,178:37855564,2439708:1179648,16384,0 +[3763,353:6630773,47279633:25952256,43253760,0 +[3763,353:6630773,4812305:25952256,786432,0 +(3763,353:6630773,4812305:25952256,505283,11795 +(3763,353:6630773,4812305:25952256,505283,11795 +g3763,353:3078558,4812305 +[3763,353:3078558,4812305:0,0,0 +(3763,353:3078558,2439708:0,1703936,0 +k3763,353:1358238,2439708:-1720320 +(3763,1:1358238,2439708:1720320,1703936,0 +(3763,1:1358238,2439708:1179648,16384,0 +r3763,353:2537886,2439708:1179648,16384,0 ) +g3763,1:3062174,2439708 +(3763,1:3062174,2439708:16384,1703936,0 +[3763,1:3062174,2439708:25952256,1703936,0 +(3763,1:3062174,1915420:25952256,1179648,0 +(3763,1:3062174,1915420:16384,1179648,0 +r3763,353:3078558,1915420:16384,1179648,0 ) -k3722,178:3078556,2439708:-34777008 +k3763,1:29014430,1915420:25935872 +g3763,1:29014430,1915420 ) ] -[3722,178:3078558,4812305:0,0,0 -(3722,178:3078558,49800853:0,16384,2228224 -k3722,178:1358238,49800853:-1720320 -(3722,1:1358238,49800853:1720320,16384,2228224 -(3722,1:1358238,49800853:1179648,16384,0 -r3722,178:2537886,49800853:1179648,16384,0 ) -g3722,1:3062174,49800853 -(3722,1:3062174,52029077:16384,1703936,0 -[3722,1:3062174,52029077:25952256,1703936,0 -(3722,1:3062174,51504789:25952256,1179648,0 -(3722,1:3062174,51504789:16384,1179648,0 -r3722,178:3078558,51504789:16384,1179648,0 ) -k3722,1:29014430,51504789:25935872 -g3722,1:29014430,51504789 ) ] +[3763,353:3078558,4812305:0,0,0 +(3763,353:3078558,2439708:0,1703936,0 +g3763,353:29030814,2439708 +g3763,353:36135244,2439708 +(3763,1:36135244,2439708:1720320,1703936,0 +(3763,1:36135244,2439708:16384,1703936,0 +[3763,1:36135244,2439708:25952256,1703936,0 +(3763,1:36135244,1915420:25952256,1179648,0 +(3763,1:36135244,1915420:16384,1179648,0 +r3763,353:36151628,1915420:16384,1179648,0 ) -) +k3763,1:62087500,1915420:25935872 +g3763,1:62087500,1915420 ) ] -[3722,178:3078558,4812305:0,0,0 -(3722,178:3078558,49800853:0,16384,2228224 -g3722,178:29030814,49800853 -g3722,178:36135244,49800853 -(3722,1:36135244,49800853:1720320,16384,2228224 -(3722,1:36135244,52029077:16384,1703936,0 -[3722,1:36135244,52029077:25952256,1703936,0 -(3722,1:36135244,51504789:25952256,1179648,0 -(3722,1:36135244,51504789:16384,1179648,0 -r3722,178:36151628,51504789:16384,1179648,0 -) -k3722,1:62087500,51504789:25935872 -g3722,1:62087500,51504789 -) -] -) -g3722,1:36675916,49800853 -(3722,1:36675916,49800853:1179648,16384,0 -r3722,178:37855564,49800853:1179648,16384,0 ) +g3763,1:36675916,2439708 +(3763,1:36675916,2439708:1179648,16384,0 +r3763,353:37855564,2439708:1179648,16384,0 ) -k3722,178:3078556,49800853:-34777008 -) -] -g3722,178:6630773,4812305 -k3722,178:28201292,4812305:20375142 -g3722,178:30884336,4812305 -) -) -] -[3722,178:6630773,45706769:25952256,40108032,0 -(3722,178:6630773,45706769:25952256,40108032,0 -(3722,178:6630773,45706769:0,0,0 -g3722,178:6630773,45706769 -) -[3722,178:6630773,45706769:25952256,40108032,0 -(3722,178:6630773,45706769:25952256,40108032,134348 -[3722,178:6630773,45706769:11829248,40108032,126483 -(3722,79:6630773,6254097:11829248,505283,102891 -h3722,78:6630773,6254097:0,0,0 -g3722,78:10484289,6254097 -k3722,79:15831372,6254097:2628650 -k3722,79:18460021,6254097:2628649 -) -(3722,80:6630773,7097100:11829248,505283,102891 -h3722,79:6630773,7097100:0,0,0 -r3722,178:6630773,7097100:0,608174,102891 -g3722,79:7941493,7097100 -g3722,79:7941493,7097100 -g3722,79:10727428,7097100 -k3722,80:15191413,7097100:3268608 -k3722,80:18460021,7097100:3268608 -) -(3722,81:6630773,7940102:11829248,485622,126483 -h3722,80:6630773,7940102:0,0,0 -r3722,178:6630773,7940102:0,612105,126483 -g3722,80:7941493,7940102 -g3722,80:7941493,7940102 -g3722,80:13219762,7940102 -k3722,81:16437580,7940102:2022441 -k3722,81:18460021,7940102:2022441 -) -(3722,82:6630773,8783105:11829248,485622,126483 -h3722,81:6630773,8783105:0,0,0 -r3722,178:6630773,8783105:0,612105,126483 -g3722,81:7941493,8783105 -g3722,81:7941493,8783105 -g3722,81:11782558,8783105 -k3722,82:15718978,8783105:2741043 -k3722,82:18460021,8783105:2741043 -) -(3722,83:6630773,9626108:11829248,485622,102891 -h3722,82:6630773,9626108:0,0,0 -r3722,178:6630773,9626108:0,588513,102891 -g3722,82:7941493,9626108 -g3722,82:7941493,9626108 -g3722,82:10821145,9626108 -k3722,83:15238272,9626108:3221750 -k3722,83:18460021,9626108:3221749 -) -(3722,84:6630773,10469111:11829248,485622,126483 -h3722,83:6630773,10469111:0,0,0 -r3722,178:6630773,10469111:0,612105,126483 -g3722,83:7941493,10469111 -g3722,83:7941493,10469111 -g3722,83:11472572,10469111 -k3722,84:15563985,10469111:2896036 -k3722,84:18460021,10469111:2896036 -) -(3722,85:6630773,11312113:11829248,485622,102891 -h3722,84:6630773,11312113:0,0,0 -g3722,84:8808534,11312113 -g3722,84:10376810,11312113 -g3722,84:11945086,11312113 -g3722,84:13513362,11312113 -k3722,85:16584380,11312113:1875641 -k3722,85:18460021,11312113:1875641 -) -(3722,89:6630773,12835721:11829248,505283,7863 -h3722,88:6630773,12835721:0,0,0 -k3722,89:13240079,12835721:5219943 -k3722,89:18460021,12835721:5219942 -) -(3722,90:6630773,13678724:11829248,505283,126483 -h3722,89:6630773,13678724:0,0,0 -r3722,178:6630773,13678724:0,631766,126483 -g3722,89:7941493,13678724 -g3722,89:7941493,13678724 -g3722,89:11785179,13678724 -g3722,89:12597170,13678724 -g3722,89:13815484,13678724 -g3722,89:14459702,13678724 -g3722,89:17252846,13678724 -k3722,90:18454122,13678724:5899 -k3722,90:18460021,13678724:5899 -) -(3722,91:6630773,14521727:11829248,505283,134348 -h3722,90:6630773,14521727:0,0,0 -r3722,178:6630773,14521727:0,639631,134348 -g3722,90:7941493,14521727 -g3722,90:7941493,14521727 -g3722,90:10507227,14521727 -g3722,90:12095819,14521727 -g3722,90:13733563,14521727 -k3722,91:16694481,14521727:1765541 -k3722,91:18460021,14521727:1765540 -) -(3722,92:6630773,15364730:11829248,513147,7863 -h3722,91:6630773,15364730:0,0,0 -g3722,91:8219365,15364730 -k3722,92:14277841,15364730:4182180 -k3722,92:18460021,15364730:4182180 -) -(3722,93:6630773,16207732:11829248,505283,126483 -h3722,92:6630773,16207732:0,0,0 -r3722,178:6630773,16207732:0,631766,126483 -g3722,92:7941493,16207732 -g3722,92:7941493,16207732 -g3722,92:12582097,16207732 -k3722,93:16880276,16207732:1579746 -k3722,93:18460021,16207732:1579745 -) -(3722,94:6630773,17050735:11829248,513147,102891 -h3722,93:6630773,17050735:0,0,0 -g3722,93:8219365,17050735 -g3722,93:10798862,17050735 -k3722,94:15789429,17050735:2670592 -k3722,94:18460021,17050735:2670592 -) -(3722,95:6630773,17893738:11829248,513147,134348 -h3722,94:6630773,17893738:0,0,0 -r3722,178:6630773,17893738:0,647495,134348 -g3722,94:7941493,17893738 -g3722,94:7941493,17893738 -g3722,94:10959425,17893738 -g3722,94:13166677,17893738 -k3722,95:16411038,17893738:2048984 -k3722,95:18460021,17893738:2048983 -) -(3722,96:6630773,18736741:11829248,505283,134348 -h3722,95:6630773,18736741:0,0,0 -r3722,178:6630773,18736741:0,639631,134348 -g3722,95:7941493,18736741 -g3722,95:7941493,18736741 -g3722,95:11278586,18736741 -k3722,96:15466992,18736741:2993029 -k3722,96:18460021,18736741:2993029 -) -(3722,97:6630773,19579743:11829248,505283,134348 -h3722,96:6630773,19579743:0,0,0 -r3722,178:6630773,19579743:0,639631,134348 -g3722,96:7941493,19579743 -g3722,96:7941493,19579743 -g3722,96:9529430,19579743 -g3722,96:10589802,19579743 -g3722,96:12279320,19579743 -g3722,96:14521306,19579743 -k3722,97:17088352,19579743:1371669 -k3722,97:18460021,19579743:1371669 -) -(3722,98:6630773,20422746:11829248,505283,134348 -h3722,97:6630773,20422746:0,0,0 -r3722,178:6630773,20422746:0,639631,134348 -g3722,97:7941493,20422746 -g3722,97:7941493,20422746 -g3722,97:10870297,20422746 -g3722,97:13956387,20422746 -k3722,98:16805893,20422746:1654129 -k3722,98:18460021,20422746:1654128 -) -(3722,99:6630773,21265749:11829248,505283,134348 -h3722,98:6630773,21265749:0,0,0 -r3722,178:6630773,21265749:0,639631,134348 -g3722,98:7941493,21265749 -g3722,98:7941493,21265749 -g3722,98:10870297,21265749 -g3722,98:12777394,21265749 -g3722,98:14345670,21265749 -k3722,99:17000534,21265749:1459487 -k3722,99:18460021,21265749:1459487 -) -(3722,100:6630773,22108751:11829248,505283,134348 -h3722,99:6630773,22108751:0,0,0 -r3722,178:6630773,22108751:0,639631,134348 -g3722,99:7941493,22108751 -g3722,99:7941493,22108751 -g3722,99:10975809,22108751 -k3722,100:15315604,22108751:3144418 -k3722,100:18460021,22108751:3144417 -) -(3722,101:6630773,22951754:11829248,505283,134348 -h3722,100:6630773,22951754:0,0,0 -r3722,178:6630773,22951754:0,639631,134348 -g3722,100:7941493,22951754 -g3722,100:7941493,22951754 -g3722,100:11641655,22951754 -k3722,101:15648527,22951754:2811495 -k3722,101:18460021,22951754:2811494 -) -(3722,102:6630773,23794757:11829248,485622,134348 -h3722,101:6630773,23794757:0,0,0 -r3722,178:6630773,23794757:0,619970,134348 -g3722,101:7941493,23794757 -g3722,101:7941493,23794757 -g3722,101:12525081,23794757 -g3722,101:14093357,23794757 -k3722,102:16874378,23794757:1585644 -k3722,102:18460021,23794757:1585643 -) -(3722,103:6630773,24637760:11829248,505283,126483 -h3722,102:6630773,24637760:0,0,0 -g3722,102:8219365,24637760 -g3722,102:12674502,24637760 -g3722,102:13489769,24637760 -g3722,102:14708083,24637760 -k3722,102:18460021,24637760:667814 -) -(3722,103:9252213,25479248:9207808,485622,11795 -k3722,103:15215334,25479248:3244688 -k3722,103:18460021,25479248:3244687 -) -(3722,104:6630773,26322250:11829248,505283,7863 -h3722,103:6630773,26322250:0,0,0 -g3722,103:8219365,26322250 -k3722,104:13972116,26322250:4487906 -k3722,104:18460021,26322250:4487905 -) -(3722,105:6630773,27165253:11829248,505283,102891 -h3722,104:6630773,27165253:0,0,0 -r3722,178:6630773,27165253:0,608174,102891 -g3722,104:7941493,27165253 -g3722,104:7941493,27165253 -g3722,104:12942545,27165253 -k3722,105:16099742,27165253:2360279 -k3722,105:18460021,27165253:2360279 -) -(3722,106:6630773,28008256:11829248,485622,134348 -h3722,105:6630773,28008256:0,0,0 -r3722,178:6630773,28008256:0,619970,134348 -g3722,105:7941493,28008256 -g3722,105:7941493,28008256 -g3722,105:10188722,28008256 -k3722,106:14722831,28008256:3737191 -k3722,106:18460021,28008256:3737190 -) -(3722,107:6630773,28851259:11829248,505283,134348 -h3722,106:6630773,28851259:0,0,0 -r3722,178:6630773,28851259:0,639631,134348 -g3722,106:7941493,28851259 -g3722,106:7941493,28851259 -g3722,106:9649361,28851259 -g3722,106:12369760,28851259 -k3722,107:16574878,28851259:1885143 -k3722,107:18460021,28851259:1885143 -) -(3722,108:6630773,29694261:11829248,505283,102891 -h3722,107:6630773,29694261:0,0,0 -g3722,107:10580627,29694261 -g3722,107:12148903,29694261 -g3722,107:13717179,29694261 -g3722,107:15285455,29694261 -g3722,107:16853731,29694261 -k3722,108:18254565,29694261:205457 -k3722,108:18460021,29694261:205456 -) -(3722,109:6630773,30537264:11829248,505283,102891 -h3722,108:6630773,30537264:0,0,0 -g3722,108:10076655,30537264 -g3722,108:11644931,30537264 -g3722,108:13213207,30537264 -k3722,109:16434303,30537264:2025719 -k3722,109:18460021,30537264:2025718 -) -(3722,110:6630773,31380267:11829248,505283,126483 -h3722,109:6630773,31380267:0,0,0 -g3722,109:9456029,31380267 -g3722,109:11024305,31380267 -g3722,109:12592581,31380267 -k3722,110:16123990,31380267:2336032 -k3722,110:18460021,31380267:2336031 -) -(3722,111:6630773,32223269:11829248,505283,134348 -h3722,110:6630773,32223269:0,0,0 -g3722,110:9397703,32223269 -g3722,110:12060430,32223269 -g3722,110:13226970,32223269 -k3722,110:18460021,32223269:2235434 -) -(3722,111:9252213,33064757:9207808,505283,134348 -k3722,111:15001031,33064757:3458990 -k3722,111:18460021,33064757:3458990 -) -(3722,112:6630773,33907760:11829248,505283,7863 -h3722,111:6630773,33907760:0,0,0 -k3722,112:13714232,33907760:4745790 -k3722,112:18460021,33907760:4745789 -) -(3722,113:6630773,34750763:11829248,505283,134348 -h3722,112:6630773,34750763:0,0,0 -r3722,178:6630773,34750763:0,639631,134348 -g3722,112:7941493,34750763 -g3722,112:7941493,34750763 -g3722,112:10473148,34750763 -g3722,112:11639688,34750763 -g3722,112:14227704,34750763 -k3722,112:18460021,34750763:2073561 -) -(3722,113:9252213,35592251:9207808,505283,7863 -k3722,113:15024952,35592251:3435070 -k3722,113:18460021,35592251:3435069 -) -(3722,114:6630773,36435254:11829248,505283,102891 -h3722,113:6630773,36435254:0,0,0 -g3722,113:10108112,36435254 -k3722,114:14881755,36435254:3578266 -k3722,114:18460021,36435254:3578266 -) -(3722,115:6630773,37278256:11829248,505283,102891 -h3722,114:6630773,37278256:0,0,0 -g3722,114:11115401,37278256 -k3722,115:16146928,37278256:2313094 -k3722,115:18460021,37278256:2313093 -) -(3722,116:6630773,38121259:11829248,513147,126483 -h3722,115:6630773,38121259:0,0,0 -r3722,178:6630773,38121259:0,639630,126483 -g3722,115:7941493,38121259 -g3722,115:7941493,38121259 -g3722,115:10473148,38121259 -g3722,115:12239998,38121259 -g3722,115:16223931,38121259 -k3722,116:17939665,38121259:520357 -k3722,116:18460021,38121259:520356 -) -(3722,117:6630773,38964262:11829248,513147,126483 -h3722,116:6630773,38964262:0,0,0 -r3722,178:6630773,38964262:0,639630,126483 -g3722,116:7941493,38964262 -g3722,116:7941493,38964262 -g3722,116:12144316,38964262 -g3722,116:13911166,38964262 -g3722,116:17214835,38964262 -k3722,117:18435117,38964262:24905 -k3722,117:18460021,38964262:24904 -) -(3722,118:6630773,39807265:11829248,505283,126483 -h3722,117:6630773,39807265:0,0,0 -r3722,178:6630773,39807265:0,631766,126483 -g3722,117:7941493,39807265 -g3722,117:7941493,39807265 -g3722,117:13176508,39807265 -g3722,117:15465680,39807265 -k3722,118:17560539,39807265:899482 -k3722,118:18460021,39807265:899482 -) -(3722,119:6630773,40650267:11829248,513147,126483 -h3722,118:6630773,40650267:0,0,0 -r3722,178:6630773,40650267:0,639630,126483 -g3722,118:7941493,40650267 -g3722,118:7941493,40650267 -g3722,118:11071492,40650267 -g3722,118:12838342,40650267 -g3722,118:17214836,40650267 -k3722,119:18435117,40650267:24904 -k3722,119:18460021,40650267:24904 -) -(3722,120:6630773,41493270:11829248,505283,126483 -h3722,119:6630773,41493270:0,0,0 -g3722,119:9505182,41493270 -g3722,119:12624695,41493270 -k3722,120:16140047,41493270:2319975 -k3722,120:18460021,41493270:2319974 -) -(3722,121:6630773,42336273:11829248,505283,126483 -h3722,120:6630773,42336273:0,0,0 -g3722,120:9013006,42336273 -g3722,120:12144316,42336273 -k3722,121:16710210,42336273:1749812 -k3722,121:18460021,42336273:1749811 -) -(3722,122:6630773,43179276:11829248,505283,102891 -h3722,121:6630773,43179276:0,0,0 -r3722,178:6630773,43179276:0,608174,102891 -g3722,121:7941493,43179276 -g3722,121:7941493,43179276 -g3722,121:11590537,43179276 -k3722,122:15986037,43179276:2473984 -k3722,122:18460021,43179276:2473984 -) -(3722,124:6630773,44022278:11829248,505283,126483 -h3722,122:6630773,44022278:0,0,0 -g3722,122:9043152,44022278 -g3722,122:10611428,44022278 -g3722,122:12179704,44022278 -g3722,122:13747980,44022278 -g3722,122:16839313,44022278 -k3722,122:18460021,44022278:251661 -) -(3722,124:9252213,44863766:9207808,485622,102891 -g3722,122:10820489,44863766 -g3722,122:12388765,44863766 -g3722,123:13957041,44863766 -k3722,124:16806220,44863766:1653802 -k3722,124:18460021,44863766:1653801 -) -(3722,125:6630773,45706769:11829248,505283,126483 -h3722,124:6630773,45706769:0,0,0 -g3722,124:9288257,45706769 -k3722,125:14471828,45706769:3988194 -k3722,125:18460021,45706769:3988193 -) -] -k3722,178:19606901,45706769:1146880 -r3722,178:19606901,45706769:0,40242380,134348 -k3722,178:20753781,45706769:1146880 -[3722,178:20753781,45706769:11829248,40108032,134348 -(3722,129:20753781,6254097:11829248,505283,126483 -h3722,128:20753781,6254097:0,0,0 -g3722,128:23307718,6254097 -k3722,129:28343833,6254097:4239197 -k3722,129:32583029,6254097:4239196 -) -(3722,130:20753781,7097074:11829248,485622,102891 -h3722,129:20753781,7097074:0,0,0 -g3722,129:23124873,7097074 -k3722,130:28451640,7097074:4131390 -k3722,130:32583029,7097074:4131389 -) -(3722,131:20753781,7940052:11829248,505283,102891 -h3722,130:20753781,7940052:0,0,0 -g3722,130:22054670,7940052 -$3722,130:22261764,7940052 -$3722,130:22623523,7940052 -g3722,130:23203516,7940052 -g3722,130:24370056,7940052 -g3722,130:27256916,7940052 -k3722,130:32583029,7940052:2049968 -) -(3722,131:23375221,8781540:9207808,473825,126483 -k3722,131:29445166,8781540:3137864 -k3722,131:32583029,8781540:3137863 -) -(3722,132:20753781,9624517:11829248,505283,102891 -h3722,131:20753781,9624517:0,0,0 -g3722,131:22773600,9624517 -k3722,132:28276003,9624517:4307026 -k3722,132:32583029,9624517:4307026 -) -(3722,133:20753781,10467494:11829248,505283,134348 -h3722,132:20753781,10467494:0,0,0 -g3722,132:24016163,10467494 -k3722,133:28994278,10467494:3588752 -k3722,133:32583029,10467494:3588751 -) -(3722,134:20753781,11310472:11829248,513147,102891 -h3722,133:20753781,11310472:0,0,0 -r3722,178:20753781,11310472:0,616038,102891 -g3722,133:22064501,11310472 -g3722,133:22064501,11310472 -g3722,133:23489909,11310472 -g3722,133:25176150,11310472 -g3722,133:28267483,11310472 -k3722,134:31784473,11310472:798557 -k3722,134:32583029,11310472:798556 -) -(3722,135:20753781,12153449:11829248,485622,102891 -h3722,134:20753781,12153449:0,0,0 -g3722,134:24355639,12153449 -g3722,134:25206296,12153449 -g3722,134:26024185,12153449 -k3722,135:29901296,12153449:2681734 -k3722,135:32583029,12153449:2681733 -) -(3722,136:20753781,12996426:11829248,513147,102891 -h3722,135:20753781,12996426:0,0,0 -g3722,135:24476880,12996426 -k3722,136:29127643,12996426:3455386 -k3722,136:32583029,12996426:3455386 -) -(3722,140:20753781,14519586:11829248,513147,134348 -h3722,139:20753781,14519586:0,0,0 -g3722,139:22841758,14519586 -g3722,139:26400362,14519586 -g3722,139:27566902,14519586 -g3722,139:30668721,14519586 -k3722,139:32583029,14519586:1255016 -) -(3722,140:23375221,15361074:9207808,513147,134348 -g3722,139:26467209,15361074 -k3722,140:30469493,15361074:2113536 -k3722,140:32583029,15361074:2113536 -) -(3722,141:20753781,16204051:11829248,513147,102891 -h3722,140:20753781,16204051:0,0,0 -g3722,140:23350972,16204051 -k3722,141:28927759,16204051:3655271 -k3722,141:32583029,16204051:3655270 -) -(3722,142:20753781,17047029:11829248,505283,134348 -h3722,141:20753781,17047029:0,0,0 -r3722,178:20753781,17047029:0,639631,134348 -g3722,141:22064501,17047029 -g3722,141:22064501,17047029 -g3722,141:24688562,17047029 -g3722,141:27072106,17047029 -k3722,142:30226027,17047029:2357003 -k3722,142:32583029,17047029:2357002 -) -(3722,143:20753781,17890006:11829248,485622,102891 -h3722,142:20753781,17890006:0,0,0 -r3722,178:20753781,17890006:0,588513,102891 -g3722,142:22064501,17890006 -g3722,142:22064501,17890006 -g3722,142:24656449,17890006 -g3722,142:25507106,17890006 -g3722,142:28500135,17890006 -k3722,143:30940041,17890006:1642988 -k3722,143:32583029,17890006:1642988 -) -(3722,144:20753781,18732983:11829248,505283,126483 -h3722,143:20753781,18732983:0,0,0 -r3722,178:20753781,18732983:0,631766,126483 -g3722,143:22064501,18732983 -g3722,143:22064501,18732983 -g3722,143:23788097,18732983 -g3722,143:26330238,18732983 -g3722,143:28495547,18732983 -k3722,144:30937747,18732983:1645282 -k3722,144:32583029,18732983:1645282 -) -(3722,145:20753781,19575961:11829248,505283,102891 -h3722,144:20753781,19575961:0,0,0 -r3722,178:20753781,19575961:0,608174,102891 -g3722,144:22064501,19575961 -g3722,144:22064501,19575961 -g3722,144:24281584,19575961 -k3722,145:28830766,19575961:3752264 -k3722,145:32583029,19575961:3752263 -) -(3722,146:20753781,20418938:11829248,505283,102891 -h3722,145:20753781,20418938:0,0,0 -r3722,178:20753781,20418938:0,608174,102891 -g3722,145:22064501,20418938 -g3722,145:22064501,20418938 -g3722,145:24229810,20418938 -k3722,146:28804879,20418938:3778151 -k3722,146:32583029,20418938:3778150 -) -(3722,147:20753781,21261915:11829248,505283,134348 -h3722,146:20753781,21261915:0,0,0 -r3722,178:20753781,21261915:0,639631,134348 -g3722,146:22064501,21261915 -g3722,146:22064501,21261915 -g3722,146:24240951,21261915 -g3722,146:26406260,21261915 -k3722,147:29893104,21261915:2689926 -k3722,147:32583029,21261915:2689925 -) -(3722,148:20753781,22104893:11829248,505283,102891 -h3722,147:20753781,22104893:0,0,0 -r3722,178:20753781,22104893:0,608174,102891 -g3722,147:22064501,22104893 -g3722,147:22064501,22104893 -g3722,147:24944808,22104893 -k3722,148:29162378,22104893:3420652 -k3722,148:32583029,22104893:3420651 -) -(3722,149:20753781,22947870:11829248,505283,102891 -h3722,148:20753781,22947870:0,0,0 -r3722,178:20753781,22947870:0,608174,102891 -g3722,148:22064501,22947870 -g3722,148:22064501,22947870 -g3722,148:24638755,22947870 -g3722,148:26804064,22947870 -k3722,149:30092006,22947870:2491024 -k3722,149:32583029,22947870:2491023 -) -(3722,150:20753781,23790847:11829248,505283,102891 -h3722,149:20753781,23790847:0,0,0 -r3722,178:20753781,23790847:0,608174,102891 -g3722,149:22064501,23790847 -g3722,149:22064501,23790847 -g3722,149:24638755,23790847 -g3722,149:27022299,23790847 -k3722,150:30201123,23790847:2381906 -k3722,150:32583029,23790847:2381906 -) -(3722,151:20753781,24633825:11829248,513147,7863 -h3722,150:20753781,24633825:0,0,0 -g3722,150:21936050,24633825 -k3722,151:28293698,24633825:4289332 -k3722,151:32583029,24633825:4289331 -) -(3722,152:20753781,25476802:11829248,505283,126483 -h3722,151:20753781,25476802:0,0,0 -r3722,178:20753781,25476802:0,631766,126483 -g3722,151:22064501,25476802 -g3722,151:22064501,25476802 -g3722,151:25106682,25476802 -k3722,152:29442544,25476802:3140485 -k3722,152:32583029,25476802:3140485 -) -(3722,153:20753781,26319779:11829248,505283,126483 -h3722,152:20753781,26319779:0,0,0 -r3722,178:20753781,26319779:0,631766,126483 -g3722,152:22064501,26319779 -g3722,152:22064501,26319779 -g3722,152:24094806,26319779 -g3722,152:27810042,26319779 -k3722,153:30794224,26319779:1788805 -k3722,153:32583029,26319779:1788805 -) -(3722,154:20753781,27162757:11829248,513147,126483 -h3722,153:20753781,27162757:0,0,0 -g3722,153:21936050,27162757 -g3722,153:25713545,27162757 -k3722,154:30507504,27162757:2075526 -k3722,154:32583029,27162757:2075525 -) -(3722,155:20753781,28005734:11829248,513147,126483 -h3722,154:20753781,28005734:0,0,0 -g3722,154:21936050,28005734 -k3722,155:28148863,28005734:4434166 -k3722,155:32583029,28005734:4434166 -) -(3722,156:20753781,28848711:11829248,485622,134348 -h3722,155:20753781,28848711:0,0,0 -r3722,178:20753781,28848711:0,619970,134348 -g3722,155:22064501,28848711 -g3722,155:22064501,28848711 -g3722,155:24822911,28848711 -k3722,156:29300659,28848711:3282371 -k3722,156:32583029,28848711:3282370 -) -(3722,157:20753781,29691689:11829248,505283,126483 -h3722,156:20753781,29691689:0,0,0 -r3722,178:20753781,29691689:0,631766,126483 -g3722,156:22064501,29691689 -g3722,156:22064501,29691689 -g3722,156:24094806,29691689 -g3722,156:27810042,29691689 -k3722,157:30794224,29691689:1788805 -k3722,157:32583029,29691689:1788805 -) -(3722,158:20753781,30534666:11829248,513147,7863 -h3722,157:20753781,30534666:0,0,0 -g3722,157:22665466,30534666 -k3722,158:28783252,30534666:3799778 -k3722,158:32583029,30534666:3799777 -) -(3722,159:20753781,31377643:11829248,505283,126483 -h3722,158:20753781,31377643:0,0,0 -r3722,178:20753781,31377643:0,631766,126483 -g3722,158:22064501,31377643 -g3722,158:22064501,31377643 -g3722,158:25018864,31377643 -g3722,158:28222919,31377643 -k3722,159:31762191,31377643:820839 -k3722,159:32583029,31377643:820838 -) -(3722,160:20753781,32220621:11829248,505283,134348 -h3722,159:20753781,32220621:0,0,0 -r3722,178:20753781,32220621:0,639631,134348 -g3722,159:22064501,32220621 -g3722,159:22064501,32220621 -g3722,159:25296736,32220621 -k3722,160:30299099,32220621:2283930 -k3722,160:32583029,32220621:2283930 -) -(3722,161:20753781,33063598:11829248,513147,134348 -h3722,160:20753781,33063598:0,0,0 -g3722,160:23385051,33063598 -g3722,160:25272487,33063598 -k3722,161:30335799,33063598:2247230 -k3722,161:32583029,33063598:2247230 -) -(3722,162:20753781,33906576:11829248,505283,102891 -h3722,161:20753781,33906576:0,0,0 -r3722,178:20753781,33906576:0,608174,102891 -g3722,161:22064501,33906576 -g3722,161:22064501,33906576 -g3722,161:25713545,33906576 -k3722,162:30109045,33906576:2473984 -k3722,162:32583029,33906576:2473984 -) -(3722,163:20753781,34749553:11829248,513147,134348 -h3722,162:20753781,34749553:0,0,0 -g3722,162:22898774,34749553 -g3722,162:24065314,34749553 -g3722,162:26696584,34749553 -g3722,162:28584020,34749553 -k3722,163:31991566,34749553:591464 -k3722,163:32583029,34749553:591463 -) -(3722,164:20753781,35592530:11829248,513147,126483 -h3722,163:20753781,35592530:0,0,0 -g3722,163:23377842,35592530 -g3722,163:24544382,35592530 -g3722,163:25726651,35592530 -k3722,164:30044164,35592530:2538866 -k3722,164:32583029,35592530:2538865 -) -(3722,165:20753781,36435508:11829248,513147,126483 -h3722,164:20753781,36435508:0,0,0 -g3722,164:21900661,36435508 -g3722,164:23688483,36435508 -k3722,165:28733445,36435508:3849585 -k3722,165:32583029,36435508:3849584 -) -(3722,166:20753781,37278485:11829248,505283,102891 -h3722,165:20753781,37278485:0,0,0 -r3722,178:20753781,37278485:0,608174,102891 -g3722,165:22064501,37278485 -g3722,165:22064501,37278485 -g3722,165:25128309,37278485 -k3722,166:29453358,37278485:3129672 -k3722,166:32583029,37278485:3129671 -) -(3722,167:20753781,38121462:11829248,513147,134348 -h3722,166:20753781,38121462:0,0,0 -g3722,166:23820865,38121462 -g3722,166:25389141,38121462 -g3722,166:26957417,38121462 -g3722,166:28525693,38121462 -g3722,166:30093969,38121462 -k3722,167:31936188,38121462:646842 -k3722,167:32583029,38121462:646841 -) -(3722,168:20753781,38964440:11829248,513147,134348 -h3722,167:20753781,38964440:0,0,0 -g3722,167:24158376,38964440 -g3722,167:27332284,38964440 -g3722,167:29727624,38964440 -k3722,167:32583029,38964440:1287784 -) -(3722,168:23375221,39805928:9207808,505283,102891 -g3722,167:26564202,39805928 -k3722,168:29972075,39805928:2610955 -k3722,168:32583029,39805928:2610954 -) -(3722,169:20753781,40648905:11829248,485622,102891 -h3722,168:20753781,40648905:0,0,0 -g3722,168:24167551,40648905 -g3722,168:25337368,40648905 -g3722,168:26905644,40648905 -g3722,168:28473920,40648905 -k3722,169:31126163,40648905:1456866 -k3722,169:32583029,40648905:1456866 -) -(3722,170:20753781,41491882:11829248,513147,7863 -h3722,169:20753781,41491882:0,0,0 -k3722,170:28181304,41491882:4401726 -k3722,170:32583029,41491882:4401725 -) -(3722,171:20753781,42334860:11829248,485622,134348 -h3722,170:20753781,42334860:0,0,0 -r3722,178:20753781,42334860:0,619970,134348 -g3722,170:22064501,42334860 -g3722,170:22064501,42334860 -g3722,170:25840030,42334860 -k3722,171:29809218,42334860:2773811 -k3722,171:32583029,42334860:2773811 -) -(3722,172:20753781,43177837:11829248,505283,102891 -h3722,171:20753781,43177837:0,0,0 -r3722,178:20753781,43177837:0,608174,102891 -g3722,171:22064501,43177837 -g3722,171:22064501,43177837 -g3722,171:23697658,43177837 -g3722,171:24515547,43177837 -k3722,172:29146977,43177837:3436053 -k3722,172:32583029,43177837:3436052 -) -(3722,173:20753781,44020814:11829248,505283,102891 -h3722,172:20753781,44020814:0,0,0 -r3722,178:20753781,44020814:0,608174,102891 -g3722,172:22064501,44020814 -g3722,172:22064501,44020814 -g3722,172:23537095,44020814 -k3722,173:28657751,44020814:3925279 -k3722,173:32583029,44020814:3925278 -) -(3722,174:20753781,44863792:11829248,513147,134348 -h3722,173:20753781,44863792:0,0,0 -r3722,178:20753781,44863792:0,647495,134348 -g3722,173:22064501,44863792 -g3722,173:22064501,44863792 -g3722,173:24867475,44863792 -g3722,173:26523569,44863792 -g3722,173:28091845,44863792 -k3722,174:30935126,44863792:1647904 -k3722,174:32583029,44863792:1647903 -) -(3722,175:20753781,45706769:11829248,513147,134348 -h3722,174:20753781,45706769:0,0,0 -g3722,174:23228420,45706769 -k3722,175:29107000,45706769:3476030 -k3722,175:32583029,45706769:3476029 -) -] -(3722,178:32583029,45706769:0,355205,126483 -h3722,178:32583029,45706769:420741,355205,126483 -k3722,178:32583029,45706769:-420741 -) -) -] -(3722,178:32583029,45706769:0,0,0 -g3722,178:32583029,45706769 -) -) -] -(3722,178:6630773,47279633:25952256,0,0 -h3722,178:6630773,47279633:25952256,0,0 -) -] -(3722,178:4262630,4025873:0,0,0 -[3722,178:-473656,4025873:0,0,0 -(3722,178:-473656,-710413:0,0,0 -(3722,178:-473656,-710413:0,0,0 -g3722,178:-473656,-710413 -) -g3722,178:-473656,-710413 -) -] -) -] -!27638 -}433 -!12 -{434 -[3722,265:4262630,47279633:28320399,43253760,0 -(3722,265:4262630,4025873:0,0,0 -[3722,265:-473656,4025873:0,0,0 -(3722,265:-473656,-710413:0,0,0 -(3722,265:-473656,-644877:0,0,0 -k3722,265:-473656,-644877:-65536 -) -(3722,265:-473656,4736287:0,0,0 -k3722,265:-473656,4736287:5209943 ) -g3722,265:-473656,-710413 +k3763,353:3078556,2439708:-34777008 ) ] +[3763,353:3078558,4812305:0,0,0 +(3763,353:3078558,49800853:0,16384,2228224 +k3763,353:1358238,49800853:-1720320 +(3763,1:1358238,49800853:1720320,16384,2228224 +(3763,1:1358238,49800853:1179648,16384,0 +r3763,353:2537886,49800853:1179648,16384,0 ) -[3722,265:6630773,47279633:25952256,43253760,0 -[3722,265:6630773,4812305:25952256,786432,0 -(3722,265:6630773,4812305:25952256,505283,11795 -(3722,265:6630773,4812305:25952256,505283,11795 -g3722,265:3078558,4812305 -[3722,265:3078558,4812305:0,0,0 -(3722,265:3078558,2439708:0,1703936,0 -k3722,265:1358238,2439708:-1720320 -(3722,1:1358238,2439708:1720320,1703936,0 -(3722,1:1358238,2439708:1179648,16384,0 -r3722,265:2537886,2439708:1179648,16384,0 -) -g3722,1:3062174,2439708 -(3722,1:3062174,2439708:16384,1703936,0 -[3722,1:3062174,2439708:25952256,1703936,0 -(3722,1:3062174,1915420:25952256,1179648,0 -(3722,1:3062174,1915420:16384,1179648,0 -r3722,265:3078558,1915420:16384,1179648,0 +g3763,1:3062174,49800853 +(3763,1:3062174,52029077:16384,1703936,0 +[3763,1:3062174,52029077:25952256,1703936,0 +(3763,1:3062174,51504789:25952256,1179648,0 +(3763,1:3062174,51504789:16384,1179648,0 +r3763,353:3078558,51504789:16384,1179648,0 ) -k3722,1:29014430,1915420:25935872 -g3722,1:29014430,1915420 +k3763,1:29014430,51504789:25935872 +g3763,1:29014430,51504789 ) ] ) ) ) ] -[3722,265:3078558,4812305:0,0,0 -(3722,265:3078558,2439708:0,1703936,0 -g3722,265:29030814,2439708 -g3722,265:36135244,2439708 -(3722,1:36135244,2439708:1720320,1703936,0 -(3722,1:36135244,2439708:16384,1703936,0 -[3722,1:36135244,2439708:25952256,1703936,0 -(3722,1:36135244,1915420:25952256,1179648,0 -(3722,1:36135244,1915420:16384,1179648,0 -r3722,265:36151628,1915420:16384,1179648,0 +[3763,353:3078558,4812305:0,0,0 +(3763,353:3078558,49800853:0,16384,2228224 +g3763,353:29030814,49800853 +g3763,353:36135244,49800853 +(3763,1:36135244,49800853:1720320,16384,2228224 +(3763,1:36135244,52029077:16384,1703936,0 +[3763,1:36135244,52029077:25952256,1703936,0 +(3763,1:36135244,51504789:25952256,1179648,0 +(3763,1:36135244,51504789:16384,1179648,0 +r3763,353:36151628,51504789:16384,1179648,0 ) -k3722,1:62087500,1915420:25935872 -g3722,1:62087500,1915420 +k3763,1:62087500,51504789:25935872 +g3763,1:62087500,51504789 ) ] ) -g3722,1:36675916,2439708 -(3722,1:36675916,2439708:1179648,16384,0 -r3722,265:37855564,2439708:1179648,16384,0 -) -) -k3722,265:3078556,2439708:-34777008 -) -] -[3722,265:3078558,4812305:0,0,0 -(3722,265:3078558,49800853:0,16384,2228224 -k3722,265:1358238,49800853:-1720320 -(3722,1:1358238,49800853:1720320,16384,2228224 -(3722,1:1358238,49800853:1179648,16384,0 -r3722,265:2537886,49800853:1179648,16384,0 -) -g3722,1:3062174,49800853 -(3722,1:3062174,52029077:16384,1703936,0 -[3722,1:3062174,52029077:25952256,1703936,0 -(3722,1:3062174,51504789:25952256,1179648,0 -(3722,1:3062174,51504789:16384,1179648,0 -r3722,265:3078558,51504789:16384,1179648,0 -) -k3722,1:29014430,51504789:25935872 -g3722,1:29014430,51504789 -) -] +g3763,1:36675916,49800853 +(3763,1:36675916,49800853:1179648,16384,0 +r3763,353:37855564,49800853:1179648,16384,0 ) ) +k3763,353:3078556,49800853:-34777008 ) -] -[3722,265:3078558,4812305:0,0,0 -(3722,265:3078558,49800853:0,16384,2228224 -g3722,265:29030814,49800853 -g3722,265:36135244,49800853 -(3722,1:36135244,49800853:1720320,16384,2228224 -(3722,1:36135244,52029077:16384,1703936,0 -[3722,1:36135244,52029077:25952256,1703936,0 -(3722,1:36135244,51504789:25952256,1179648,0 -(3722,1:36135244,51504789:16384,1179648,0 -r3722,265:36151628,51504789:16384,1179648,0 -) -k3722,1:62087500,51504789:25935872 -g3722,1:62087500,51504789 -) -] -) -g3722,1:36675916,49800853 -(3722,1:36675916,49800853:1179648,16384,0 -r3722,265:37855564,49800853:1179648,16384,0 -) -) -k3722,265:3078556,49800853:-34777008 -) -] -g3722,265:6630773,4812305 -g3722,265:6630773,4812305 -g3722,265:9313817,4812305 -g3722,265:11211739,4812305 -k3722,265:31387651,4812305:20175912 -) -) -] -[3722,265:6630773,45706769:25952256,40108032,0 -(3722,265:6630773,45706769:25952256,40108032,0 -(3722,265:6630773,45706769:0,0,0 -g3722,265:6630773,45706769 -) -[3722,265:6630773,45706769:25952256,40108032,0 -(3722,265:6630773,45706769:25952256,40108032,126483 -[3722,265:6630773,45706769:11829248,40108032,102891 -(3722,176:6630773,6254097:11829248,505283,134348 -h3722,175:6630773,6254097:0,0,0 -r3722,265:6630773,6254097:0,639631,134348 -g3722,175:7941493,6254097 -g3722,175:7941493,6254097 -g3722,175:10442346,6254097 -g3722,175:11086564,6254097 -g3722,175:12955650,6254097 -k3722,176:16305524,6254097:2154497 -k3722,176:18460021,6254097:2154497 -) -(3722,177:6630773,7097241:11829248,513147,134348 -h3722,176:6630773,7097241:0,0,0 -r3722,265:6630773,7097241:0,647495,134348 -g3722,176:7941493,7097241 -g3722,176:7941493,7097241 -g3722,176:11043312,7097241 -g3722,176:11901833,7097241 -g3722,176:14993821,7097241 -k3722,177:17324610,7097241:1135412 -k3722,177:18460021,7097241:1135411 -) -(3722,178:6630773,7940385:11829248,505283,126483 -h3722,177:6630773,7940385:0,0,0 -r3722,265:6630773,7940385:0,631766,126483 -g3722,177:7941493,7940385 -g3722,177:7941493,7940385 -g3722,177:12654842,7940385 -g3722,177:13536956,7940385 -g3722,177:14354845,7940385 -k3722,178:17005122,7940385:1454900 -k3722,178:18460021,7940385:1454899 -) -(3722,179:6630773,8783529:11829248,513147,134348 -h3722,178:6630773,8783529:0,0,0 -r3722,265:6630773,8783529:0,647495,134348 -g3722,178:7941493,8783529 -g3722,178:7941493,8783529 -g3722,178:9423917,8783529 -g3722,178:12856037,8783529 -g3722,178:13714558,8783529 -g3722,178:15476821,8783529 -k3722,179:17566110,8783529:893912 -k3722,179:18460021,8783529:893911 -) -(3722,180:6630773,9626672:11829248,505283,134348 -h3722,179:6630773,9626672:0,0,0 -r3722,265:6630773,9626672:0,639631,134348 -g3722,179:7941493,9626672 -g3722,179:7941493,9626672 -g3722,179:10100248,9626672 -g3722,179:12970724,9626672 -g3722,179:17522199,9626672 -k3722,179:18460021,9626672:321784 -) -(3722,180:9252213,10468160:9207808,485622,102891 -g3722,179:10070102,10468160 -k3722,180:14862750,10468160:3597271 -k3722,180:18460021,10468160:3597271 -) -(3722,181:6630773,11311304:11829248,505283,134348 -h3722,180:6630773,11311304:0,0,0 -r3722,265:6630773,11311304:0,639631,134348 -g3722,180:7941493,11311304 -g3722,180:7941493,11311304 -g3722,180:10720874,11311304 -g3722,180:15225818,11311304 -k3722,181:17440608,11311304:1019413 -k3722,181:18460021,11311304:1019413 -) -(3722,182:6630773,12154448:11829248,505283,134348 -h3722,181:6630773,12154448:0,0,0 -r3722,265:6630773,12154448:0,639631,134348 -g3722,181:7941493,12154448 -g3722,181:7941493,12154448 -g3722,181:10838839,12154448 -k3722,182:15247119,12154448:3212903 -k3722,182:18460021,12154448:3212902 -) -(3722,183:6630773,12997592:11829248,505283,126483 -h3722,182:6630773,12997592:0,0,0 -r3722,265:6630773,12997592:0,631766,126483 -g3722,182:7941493,12997592 -g3722,182:7941493,12997592 -g3722,182:9643463,12997592 -g3722,182:12004069,12997592 -g3722,182:12819336,12997592 -g3722,182:14470843,12997592 -g3722,182:15861517,12997592 -k3722,182:18460021,12997592:663881 -) -(3722,183:9252213,13839080:9207808,485622,0 -k3722,183:14254576,13839080:4205445 -k3722,183:18460021,13839080:4205445 -) -(3722,184:6630773,14682224:11829248,485622,102891 -h3722,183:6630773,14682224:0,0,0 -r3722,265:6630773,14682224:0,588513,102891 -g3722,183:7941493,14682224 -g3722,183:7941493,14682224 -g3722,183:10994160,14682224 -g3722,183:11809427,14682224 -g3722,183:12627316,14682224 -k3722,184:16141357,14682224:2318664 -k3722,184:18460021,14682224:2318664 -) -(3722,185:6630773,15525368:11829248,505283,134348 -h3722,184:6630773,15525368:0,0,0 -r3722,265:6630773,15525368:0,639631,134348 -g3722,184:7941493,15525368 -g3722,184:7941493,15525368 -g3722,184:9159807,15525368 -g3722,184:9804025,15525368 -g3722,184:13019221,15525368 -k3722,185:16337310,15525368:2122712 -k3722,185:18460021,15525368:2122711 -) -(3722,186:6630773,16368512:11829248,505283,134348 -h3722,185:6630773,16368512:0,0,0 -r3722,265:6630773,16368512:0,639631,134348 -g3722,185:7941493,16368512 -g3722,185:7941493,16368512 -g3722,185:9876115,16368512 -g3722,185:11094429,16368512 -g3722,185:11738647,16368512 -g3722,185:14953843,16368512 -g3722,185:16123660,16368512 -k3722,186:17889529,16368512:570492 -k3722,186:18460021,16368512:570492 -) -(3722,190:6630773,17894613:11829248,505283,134348 -h3722,189:6630773,17894613:0,0,0 -g3722,189:10522300,17894613 -g3722,189:12534255,17894613 -g3722,189:15225163,17894613 -k3722,190:18201809,17894613:258213 -k3722,190:18460021,17894613:258212 -) -(3722,191:6630773,18737757:11829248,505283,134348 -h3722,190:6630773,18737757:0,0,0 -g3722,190:9136869,18737757 -k3722,191:15025607,18737757:3434415 -k3722,191:18460021,18737757:3434414 -) -(3722,192:6630773,19580900:11829248,505283,126483 -h3722,191:6630773,19580900:0,0,0 -r3722,265:6630773,19580900:0,631766,126483 -g3722,191:7941493,19580900 -g3722,191:7941493,19580900 -g3722,191:8894386,19580900 -g3722,191:10648784,19580900 -g3722,191:13267602,19580900 -k3722,192:16461500,19580900:1998521 -k3722,192:18460021,19580900:1998521 -) -(3722,194:6630773,20424044:11829248,505283,134348 -h3722,192:6630773,20424044:0,0,0 -g3722,192:10337489,20424044 -g3722,192:13896093,20424044 -k3722,193:13896093,20424044:0 -g3722,193:15062633,20424044 -k3722,193:18460021,20424044:494798 -) -(3722,194:9252213,21265532:9207808,513147,134348 -g3722,193:10110734,21265532 -g3722,193:13202722,21265532 -k3722,194:17585115,21265532:874906 -k3722,194:18460021,21265532:874906 -) -(3722,195:6630773,22108676:11829248,505283,134348 -h3722,194:6630773,22108676:0,0,0 -g3722,194:11457499,22108676 -k3722,195:15556449,22108676:2903573 -k3722,195:18460021,22108676:2903572 -) -(3722,196:6630773,22951820:11829248,513147,134348 -h3722,195:6630773,22951820:0,0,0 -g3722,195:9845968,22951820 -k3722,196:14750683,22951820:3709338 -k3722,196:18460021,22951820:3709338 -) -(3722,197:6630773,23794964:11829248,505283,134348 -h3722,196:6630773,23794964:0,0,0 -g3722,196:10612740,23794964 -k3722,197:15134069,23794964:3325952 -k3722,197:18460021,23794964:3325952 -) -(3722,201:6630773,24638108:11829248,505283,134348 -h3722,197:6630773,24638108:0,0,0 -g3722,197:9899053,24638108 -g3722,197:11467329,24638108 -g3722,197:13035605,24638108 -g3722,197:14603881,24638108 -k3722,197:18460021,24638108:2487093 -) -(3722,201:9252213,25479596:9207808,485622,102891 -g3722,197:12343546,25479596 -g3722,197:13911822,25479596 -g3722,197:15480098,25479596 -k3722,198:18460021,25479596:87819 -) -(3722,201:9252213,26321084:9207808,485622,102891 -g3722,198:10820489,26321084 -g3722,198:12388765,26321084 -g3722,198:13957041,26321084 -g3722,198:15525317,26321084 -k3722,198:18460021,26321084:42600 -) -(3722,201:9252213,27162572:9207808,485622,102891 -g3722,198:10820489,27162572 -g3722,198:12388765,27162572 -g3722,199:15480098,27162572 -g3722,199:17048374,27162572 -k3722,199:18460021,27162572:42600 -) -(3722,201:9252213,28004060:9207808,485622,102891 -k3722,199:10819965,28004060:198705 -k3722,199:12387717,28004060:198705 -k3722,199:13955470,28004060:198706 -k3722,199:15523222,28004060:198705 -k3722,199:17090974,28004060:198705 -k3722,199:18460021,28004060:0 -) -(3722,201:9252213,28845548:9207808,485622,102891 -g3722,199:10820489,28845548 -g3722,200:12388765,28845548 -g3722,200:13957041,28845548 -g3722,200:15525317,28845548 -k3722,201:17590358,28845548:869664 -k3722,201:18460021,28845548:869663 -) -(3722,202:6630773,29688692:11829248,505283,134348 -h3722,201:6630773,29688692:0,0,0 -g3722,201:10117943,29688692 -g3722,201:11686219,29688692 -g3722,201:13254495,29688692 -g3722,201:14822771,29688692 -g3722,201:16391047,29688692 -k3722,201:18460021,29688692:699927 -) -(3722,202:9252213,30530180:9207808,485622,11795 -k3722,202:14453806,30530180:4006216 -k3722,202:18460021,30530180:4006215 -) -(3722,203:6630773,31373323:11829248,505283,134348 -h3722,202:6630773,31373323:0,0,0 -g3722,202:9060192,31373323 -k3722,203:14357795,31373323:4102226 -k3722,203:18460021,31373323:4102226 -) -(3722,204:6630773,32216467:11829248,505283,134348 -h3722,203:6630773,32216467:0,0,0 -g3722,203:9834827,32216467 -k3722,204:14745113,32216467:3714909 -k3722,204:18460021,32216467:3714908 -) -(3722,205:6630773,33059611:11829248,505283,134348 -h3722,204:6630773,33059611:0,0,0 -g3722,204:10281783,33059611 -k3722,205:14968591,33059611:3491431 -k3722,205:18460021,33059611:3491430 -) -(3722,206:6630773,33902755:11829248,505283,134348 -h3722,205:6630773,33902755:0,0,0 -g3722,205:9518944,33902755 -k3722,206:14587171,33902755:3872850 -k3722,206:18460021,33902755:3872850 -) -(3722,207:6630773,34745899:11829248,505283,134348 -h3722,206:6630773,34745899:0,0,0 -g3722,206:9491419,34745899 -k3722,207:14573409,34745899:3886613 -k3722,207:18460021,34745899:3886612 -) -(3722,208:6630773,35589043:11829248,485622,102891 -h3722,207:6630773,35589043:0,0,0 -g3722,207:7912001,35589043 -k3722,208:13783700,35589043:4676322 -k3722,208:18460021,35589043:4676321 -) -(3722,209:6630773,36432187:11829248,505283,102891 -h3722,208:6630773,36432187:0,0,0 -g3722,208:9212891,36432187 -g3722,208:9984249,36432187 -k3722,209:14819824,36432187:3640198 -k3722,209:18460021,36432187:3640197 -) -(3722,210:6630773,37275330:11829248,505283,134348 -h3722,209:6630773,37275330:0,0,0 -g3722,209:8412041,37275330 -g3722,209:9578581,37275330 -g3722,209:13470108,37275330 -g3722,209:15482063,37275330 -k3722,210:18130046,37275330:329975 -k3722,210:18460021,37275330:329975 -) -(3722,211:6630773,38118474:11829248,513147,134348 -h3722,210:6630773,38118474:0,0,0 -g3722,210:9732592,38118474 -g3722,210:10591113,38118474 -g3722,210:13683101,38118474 -g3722,210:15251377,38118474 -k3722,211:17453388,38118474:1006634 -k3722,211:18460021,38118474:1006633 -) -(3722,212:6630773,38961618:11829248,505283,102891 -h3722,211:6630773,38961618:0,0,0 -r3722,265:6630773,38961618:0,608174,102891 -g3722,211:7941493,38961618 -g3722,211:7941493,38961618 -g3722,211:11696050,38961618 -k3722,212:15675724,38961618:2784297 -k3722,212:18460021,38961618:2784297 -) -(3722,213:6630773,39804762:11829248,505283,102891 -h3722,212:6630773,39804762:0,0,0 -r3722,265:6630773,39804762:0,608174,102891 -g3722,212:7941493,39804762 -g3722,212:7941493,39804762 -g3722,212:11696050,39804762 -k3722,213:15675724,39804762:2784297 -k3722,213:18460021,39804762:2784297 -) -(3722,214:6630773,40647906:11829248,485622,102891 -h3722,213:6630773,40647906:0,0,0 -r3722,265:6630773,40647906:0,588513,102891 -g3722,213:7941493,40647906 -g3722,213:7941493,40647906 -g3722,213:12104995,40647906 -k3722,214:16641725,40647906:1818297 -k3722,214:18460021,40647906:1818296 -) -(3722,215:6630773,41491050:11829248,505283,102891 -h3722,214:6630773,41491050:0,0,0 -r3722,265:6630773,41491050:0,608174,102891 -g3722,214:7941493,41491050 -g3722,214:7941493,41491050 -g3722,214:10340110,41491050 -g3722,214:12615520,41491050 -k3722,215:16896987,41491050:1563034 -k3722,215:18460021,41491050:1563034 -) -(3722,216:6630773,42334194:11829248,505283,102891 -h3722,215:6630773,42334194:0,0,0 -r3722,265:6630773,42334194:0,608174,102891 -g3722,215:7941493,42334194 -g3722,215:7941493,42334194 -g3722,215:11024961,42334194 -g3722,215:15136034,42334194 -g3722,215:16704310,42334194 -k3722,216:18179854,42334194:280167 -k3722,216:18460021,42334194:280167 -) -(3722,217:6630773,43177337:11829248,513147,102891 -h3722,216:6630773,43177337:0,0,0 -r3722,265:6630773,43177337:0,616038,102891 -g3722,216:7941493,43177337 -g3722,216:7941493,43177337 -g3722,216:9756840,43177337 -g3722,216:11147514,43177337 -g3722,216:12187570,43177337 -g3722,216:14462980,43177337 -k3722,217:17820717,43177337:639304 -k3722,217:18460021,43177337:639304 -) -(3722,218:6630773,44020481:11829248,505283,134348 -h3722,217:6630773,44020481:0,0,0 -r3722,265:6630773,44020481:0,639631,134348 -g3722,217:7941493,44020481 -g3722,217:7941493,44020481 -g3722,217:10523611,44020481 -g3722,217:13886263,44020481 -k3722,218:17532359,44020481:927663 -k3722,218:18460021,44020481:927662 -) -(3722,219:6630773,44863625:11829248,505283,126483 -h3722,218:6630773,44863625:0,0,0 -r3722,265:6630773,44863625:0,631766,126483 -g3722,218:7941493,44863625 -g3722,218:7941493,44863625 -g3722,218:11066249,44863625 -g3722,218:13755846,44863625 -k3722,219:17467150,44863625:992871 -k3722,219:18460021,44863625:992871 -) -(3722,220:6630773,45706769:11829248,505283,102891 -h3722,219:6630773,45706769:0,0,0 -r3722,265:6630773,45706769:0,608174,102891 -g3722,219:7941493,45706769 -g3722,219:7941493,45706769 -g3722,219:11711123,45706769 -g3722,219:13986533,45706769 -k3722,220:17582494,45706769:877528 -k3722,220:18460021,45706769:877527 -) -] -k3722,265:19606901,45706769:1146880 -r3722,265:19606901,45706769:0,40234515,126483 -k3722,265:20753781,45706769:1146880 -[3722,265:20753781,45706769:11829248,40108032,11795 -(3722,221:20753781,6254097:11829248,505283,102891 -h3722,220:20753781,6254097:0,0,0 -r3722,265:20753781,6254097:0,608174,102891 -g3722,220:22064501,6254097 -g3722,220:22064501,6254097 -g3722,220:26175574,6254097 -k3722,221:29976990,6254097:2606039 -k3722,221:32583029,6254097:2606039 -) -(3722,222:20753781,7113737:11829248,505283,134348 -h3722,221:20753781,7113737:0,0,0 -r3722,265:20753781,7113737:0,639631,134348 -g3722,221:22064501,7113737 -g3722,221:22064501,7113737 -g3722,221:24836018,7113737 -g3722,221:25391107,7113737 -g3722,221:27750403,7113737 -k3722,222:31525933,7113737:1057097 -k3722,222:32583029,7113737:1057096 -) -(3722,223:20753781,7973377:11829248,505283,102891 -h3722,222:20753781,7973377:0,0,0 -r3722,265:20753781,7973377:0,608174,102891 -g3722,222:22064501,7973377 -g3722,222:22064501,7973377 -g3722,222:23826764,7973377 -k3722,223:28802585,7973377:3780444 -k3722,223:32583029,7973377:3780444 -) -(3722,224:20753781,8833016:11829248,505283,102891 -h3722,223:20753781,8833016:0,0,0 -r3722,265:20753781,8833016:0,608174,102891 -g3722,223:22064501,8833016 -g3722,223:22064501,8833016 -g3722,223:24789488,8833016 -g3722,223:27064898,8833016 -k3722,224:31183180,8833016:1399849 -k3722,224:32583029,8833016:1399849 -) -(3722,225:20753781,9692656:11829248,505283,102891 -h3722,224:20753781,9692656:0,0,0 -r3722,265:20753781,9692656:0,608174,102891 -g3722,224:22064501,9692656 -g3722,224:22064501,9692656 -g3722,224:25306567,9692656 -k3722,225:30304015,9692656:2279015 -k3722,225:32583029,9692656:2279014 -) -(3722,226:20753781,10552296:11829248,513147,102891 -h3722,225:20753781,10552296:0,0,0 -r3722,265:20753781,10552296:0,616038,102891 -g3722,225:22064501,10552296 -g3722,225:22064501,10552296 -g3722,225:24326148,10552296 -k3722,226:29813805,10552296:2769224 -k3722,226:32583029,10552296:2769224 -) -(3722,227:20753781,11411936:11829248,513147,126483 -h3722,226:20753781,11411936:0,0,0 -r3722,265:20753781,11411936:0,639630,126483 -g3722,226:22064501,11411936 -g3722,226:22064501,11411936 -g3722,226:24508993,11411936 -g3722,226:26487524,11411936 -k3722,227:30132965,11411936:2450064 -k3722,227:32583029,11411936:2450064 -) -(3722,228:20753781,12271576:11829248,513147,126483 -h3722,227:20753781,12271576:0,0,0 -r3722,265:20753781,12271576:0,639630,126483 -g3722,227:22064501,12271576 -g3722,227:22064501,12271576 -g3722,227:24508993,12271576 -g3722,227:26487524,12271576 -k3722,228:30132965,12271576:2450064 -k3722,228:32583029,12271576:2450064 -) -(3722,229:20753781,13131215:11829248,513147,102891 -h3722,228:20753781,13131215:0,0,0 -r3722,265:20753781,13131215:0,616038,102891 -g3722,228:22064501,13131215 -g3722,228:22064501,13131215 -g3722,228:24959226,13131215 -g3722,228:27855262,13131215 -k3722,229:31578362,13131215:1004667 -k3722,229:32583029,13131215:1004667 -) -(3722,230:20753781,13990855:11829248,485622,134348 -h3722,229:20753781,13990855:0,0,0 -r3722,265:20753781,13990855:0,619970,134348 -g3722,229:22064501,13990855 -g3722,229:22064501,13990855 -g3722,229:25944887,13990855 -g3722,229:27513163,13990855 -k3722,230:31407313,13990855:1175717 -k3722,230:32583029,13990855:1175716 -) -(3722,231:20753781,14850495:11829248,505283,134348 -h3722,230:20753781,14850495:0,0,0 -r3722,265:20753781,14850495:0,639631,134348 -g3722,230:22064501,14850495 -g3722,230:22064501,14850495 -g3722,230:25579852,14850495 -g3722,230:29460238,14850495 -k3722,231:31619322,14850495:963707 -k3722,231:32583029,14850495:963707 -) -(3722,232:20753781,15710135:11829248,505283,102891 -h3722,231:20753781,15710135:0,0,0 -r3722,265:20753781,15710135:0,608174,102891 -g3722,231:22064501,15710135 -g3722,231:22064501,15710135 -g3722,231:25579852,15710135 -g3722,231:28806189,15710135 -k3722,232:31292298,15710135:1290732 -k3722,232:32583029,15710135:1290731 -) -(3722,233:20753781,16569775:11829248,505283,126483 -h3722,232:20753781,16569775:0,0,0 -r3722,265:20753781,16569775:0,631766,126483 -g3722,232:22064501,16569775 -g3722,232:22064501,16569775 -g3722,232:24723952,16569775 -g3722,232:26539299,16569775 -g3722,232:28814709,16569775 -k3722,233:31296558,16569775:1286472 -k3722,233:32583029,16569775:1286471 -) -(3722,234:20753781,17429414:11829248,505283,126483 -h3722,233:20753781,17429414:0,0,0 -r3722,265:20753781,17429414:0,631766,126483 -g3722,233:22064501,17429414 -g3722,233:22064501,17429414 -g3722,233:25805296,17429414 -g3722,233:28494893,17429414 -k3722,234:31898178,17429414:684852 -k3722,234:32583029,17429414:684851 -) -(3722,235:20753781,18289054:11829248,505283,134348 -h3722,234:20753781,18289054:0,0,0 -r3722,265:20753781,18289054:0,639631,134348 -g3722,234:22064501,18289054 -g3722,234:22064501,18289054 -g3722,234:26248974,18289054 -k3722,234:32583029,18289054:2652898 -) -(3722,235:23375221,19130542:9207808,485622,11795 -k3722,235:29338342,19130542:3244688 -k3722,235:32583029,19130542:3244687 -) -(3722,236:20753781,19990182:11829248,513147,134348 -h3722,235:20753781,19990182:0,0,0 -r3722,265:20753781,19990182:0,647495,134348 -g3722,235:22064501,19990182 -g3722,235:22064501,19990182 -g3722,235:25071292,19990182 -g3722,235:25929813,19990182 -g3722,235:27692076,19990182 -g3722,235:29260352,19990182 -k3722,236:32280907,19990182:302122 -k3722,236:32583029,19990182:302122 -) -(3722,237:20753781,20849822:11829248,505283,102891 -h3722,236:20753781,20849822:0,0,0 -r3722,265:20753781,20849822:0,608174,102891 -g3722,236:22719861,20849822 -g3722,236:22719861,20849822 -g3722,236:24257991,20849822 -k3722,237:29018199,20849822:3564831 -k3722,237:32583029,20849822:3564830 -) -(3722,238:20753781,21709462:11829248,485622,126483 -h3722,237:20753781,21709462:0,0,0 -r3722,265:20753781,21709462:0,612105,126483 -g3722,237:22064501,21709462 -g3722,237:22064501,21709462 -g3722,237:25514316,21709462 -k3722,238:29646361,21709462:2936668 -k3722,238:32583029,21709462:2936668 -) -(3722,239:20753781,22569102:11829248,485622,102891 -h3722,238:20753781,22569102:0,0,0 -r3722,265:20753781,22569102:0,588513,102891 -g3722,238:22064501,22569102 -g3722,238:22064501,22569102 -g3722,238:25963893,22569102 -k3722,239:29871150,22569102:2711880 -k3722,239:32583029,22569102:2711879 -) -(3722,240:20753781,23428741:11829248,505283,126483 -h3722,239:20753781,23428741:0,0,0 -r3722,265:20753781,23428741:0,631766,126483 -g3722,239:22064501,23428741 -g3722,239:22064501,23428741 -g3722,239:23541027,23428741 -g3722,239:27948323,23428741 -k3722,240:31624893,23428741:958137 -k3722,240:32583029,23428741:958136 -) -(3722,241:20753781,24288381:11829248,505283,126483 -h3722,240:20753781,24288381:0,0,0 -r3722,265:20753781,24288381:0,631766,126483 -g3722,240:22064501,24288381 -g3722,240:22064501,24288381 -g3722,240:23541027,24288381 -g3722,240:26845352,24288381 -k3722,241:31073407,24288381:1509622 -k3722,241:32583029,24288381:1509622 -) -(3722,242:20753781,25148021:11829248,505283,134348 -h3722,241:20753781,25148021:0,0,0 -r3722,265:20753781,25148021:0,639631,134348 -g3722,241:22064501,25148021 -g3722,241:22064501,25148021 -g3722,241:23541027,25148021 -g3722,241:26830934,25148021 -k3722,242:31066198,25148021:1516831 -k3722,242:32583029,25148021:1516831 -) -(3722,243:20753781,26007661:11829248,505283,134348 -h3722,242:20753781,26007661:0,0,0 -r3722,265:20753781,26007661:0,639631,134348 -g3722,242:22064501,26007661 -g3722,242:22064501,26007661 -g3722,242:23871328,26007661 -g3722,242:24756719,26007661 -g3722,242:25400937,26007661 -g3722,242:28063664,26007661 -k3722,243:31682563,26007661:900466 -k3722,243:32583029,26007661:900466 -) -(3722,244:20753781,26867301:11829248,485622,134348 -h3722,243:20753781,26867301:0,0,0 -r3722,265:20753781,26867301:0,619970,134348 -g3722,243:22064501,26867301 -g3722,243:22064501,26867301 -g3722,243:23951937,26867301 -g3722,243:27314589,26867301 -k3722,244:31308026,26867301:1275004 -k3722,244:32583029,26867301:1275003 -) -(3722,245:20753781,27726940:11829248,505283,126483 -h3722,244:20753781,27726940:0,0,0 -r3722,265:20753781,27726940:0,631766,126483 -g3722,244:22064501,27726940 -g3722,244:22064501,27726940 -g3722,244:23928344,27726940 -g3722,244:28039417,27726940 -k3722,245:31670440,27726940:912590 -k3722,245:32583029,27726940:912589 -) -(3722,246:20753781,28586580:11829248,485622,126483 -h3722,245:20753781,28586580:0,0,0 -r3722,265:20753781,28586580:0,612105,126483 -g3722,245:22064501,28586580 -g3722,245:22064501,28586580 -g3722,245:25381933,28586580 -k3722,246:29580170,28586580:3002860 -k3722,246:32583029,28586580:3002859 -) -(3722,247:20753781,29446220:11829248,505283,102891 -h3722,246:20753781,29446220:0,0,0 -r3722,265:20753781,29446220:0,608174,102891 -g3722,246:22064501,29446220 -g3722,246:22064501,29446220 -g3722,246:24339911,29446220 -g3722,246:25908187,29446220 -k3722,247:30604825,29446220:1978205 -k3722,247:32583029,29446220:1978204 -) -(3722,248:20753781,30305860:11829248,513147,134348 -h3722,247:20753781,30305860:0,0,0 -r3722,265:20753781,30305860:0,647495,134348 -g3722,247:22064501,30305860 -g3722,247:22064501,30305860 -g3722,247:22858797,30305860 -g3722,247:26739183,30305860 -k3722,248:31020323,30305860:1562707 -k3722,248:32583029,30305860:1562706 -) -(3722,249:20753781,31165500:11829248,505283,102891 -h3722,248:20753781,31165500:0,0,0 -r3722,265:20753781,31165500:0,608174,102891 -g3722,248:22064501,31165500 -g3722,248:22064501,31165500 -g3722,248:23532507,31165500 -g3722,248:25807917,31165500 -k3722,249:29793162,31165500:2789868 -k3722,249:32583029,31165500:2789867 -) -(3722,250:20753781,32025139:11829248,485622,102891 -h3722,249:20753781,32025139:0,0,0 -r3722,265:20753781,32025139:0,588513,102891 -g3722,249:22064501,32025139 -g3722,249:22064501,32025139 -g3722,249:25290838,32025139 -g3722,249:26859114,32025139 -k3722,250:31080288,32025139:1502741 -k3722,250:32583029,32025139:1502741 -) -(3722,251:20753781,32884779:11829248,513147,134348 -h3722,250:20753781,32884779:0,0,0 -r3722,265:20753781,32884779:0,647495,134348 -g3722,250:22064501,32884779 -g3722,250:22064501,32884779 -g3722,250:25195155,32884779 -g3722,250:26053676,32884779 -g3722,250:27530202,32884779 -k3722,250:32583029,32884779:2589329 -) -(3722,251:23375221,33726267:9207808,485622,11795 -k3722,251:29338342,33726267:3244688 -k3722,251:32583029,33726267:3244687 -) -(3722,252:20753781,34585907:11829248,485622,126483 -h3722,251:20753781,34585907:0,0,0 -r3722,265:20753781,34585907:0,612105,126483 -g3722,251:22064501,34585907 -g3722,251:22064501,34585907 -g3722,251:25254138,34585907 -g3722,251:28150174,34585907 -k3722,252:31725818,34585907:857211 -k3722,252:32583029,34585907:857211 -) -(3722,253:20753781,35445547:11829248,485622,126483 -h3722,252:20753781,35445547:0,0,0 -r3722,265:20753781,35445547:0,612105,126483 -g3722,252:22064501,35445547 -g3722,252:22064501,35445547 -g3722,252:23891644,35445547 -g3722,252:25663082,35445547 -k3722,253:29720744,35445547:2862285 -k3722,253:32583029,35445547:2862285 -) -(3722,254:20753781,36305187:11829248,505283,134348 -h3722,253:20753781,36305187:0,0,0 -r3722,265:20753781,36305187:0,639631,134348 -g3722,253:22064501,36305187 -g3722,253:22064501,36305187 -g3722,253:23489909,36305187 -g3722,253:24880583,36305187 -g3722,253:26593694,36305187 -k3722,253:32583029,36305187:2308178 -) -(3722,254:23375221,37146675:9207808,485622,11795 -k3722,254:29338342,37146675:3244688 -k3722,254:32583029,37146675:3244687 -) -(3722,255:20753781,38006314:11829248,505283,126483 -h3722,254:20753781,38006314:0,0,0 -r3722,265:20753781,38006314:0,631766,126483 -g3722,254:22719861,38006314 -g3722,254:22719861,38006314 -g3722,254:26005180,38006314 -k3722,255:29891793,38006314:2691236 -k3722,255:32583029,38006314:2691236 -) -(3722,256:20753781,38865954:11829248,505283,102891 -h3722,255:20753781,38865954:0,0,0 -r3722,265:20753781,38865954:0,608174,102891 -g3722,255:22064501,38865954 -g3722,255:22064501,38865954 -g3722,255:24754098,38865954 -g3722,255:26322374,38865954 -k3722,256:30811918,38865954:1771111 -k3722,256:32583029,38865954:1771111 -) -(3722,257:20753781,39725594:11829248,505283,134348 -h3722,256:20753781,39725594:0,0,0 -r3722,265:20753781,39725594:0,639631,134348 -g3722,256:22064501,39725594 -g3722,256:22064501,39725594 -g3722,256:23274295,39725594 -g3722,256:26636947,39725594 -k3722,257:30969205,39725594:1613825 -k3722,257:32583029,39725594:1613824 -) -(3722,258:20753781,40585234:11829248,505283,102891 -h3722,257:20753781,40585234:0,0,0 -r3722,265:20753781,40585234:0,608174,102891 -g3722,257:22064501,40585234 -g3722,257:22064501,40585234 -g3722,257:23689138,40585234 -g3722,257:25079812,40585234 -g3722,257:26659885,40585234 -g3722,257:28935295,40585234 -k3722,258:32118379,40585234:464651 -k3722,258:32583029,40585234:464650 -) -(3722,259:20753781,41444874:11829248,505283,126483 -h3722,258:20753781,41444874:0,0,0 -r3722,265:20753781,41444874:0,631766,126483 -g3722,258:22064501,41444874 -g3722,258:22064501,41444874 -g3722,258:24605987,41444874 -g3722,258:25973723,41444874 -g3722,258:27364397,41444874 -k3722,258:32583029,41444874:3770286 -) -(3722,259:23375221,42286362:9207808,485622,134348 -g3722,258:27255607,42286362 -k3722,259:31278535,42286362:1304495 -k3722,259:32583029,42286362:1304494 -) -(3722,260:20753781,43146001:11829248,505283,134348 -h3722,259:20753781,43146001:0,0,0 -g3722,259:23341797,43146001 -g3722,259:25699782,43146001 -g3722,259:28410351,43146001 -k3722,260:31094379,43146001:1488651 -k3722,260:32583029,43146001:1488650 -) -(3722,261:20753781,44005641:11829248,505283,134348 -h3722,260:20753781,44005641:0,0,0 -g3722,260:22819475,44005641 -g3722,260:24387751,44005641 -g3722,260:25956027,44005641 -k3722,261:29867217,44005641:2715813 -k3722,261:32583029,44005641:2715812 -) -(3722,262:20753781,44865281:11829248,505283,134348 -h3722,261:20753781,44865281:0,0,0 -g3722,261:22237516,44865281 -g3722,261:25155834,44865281 -g3722,261:28762935,44865281 -k3722,261:32583029,44865281:1070203 -) -(3722,262:23375221,45706769:9207808,485622,11795 -k3722,262:28576814,45706769:4006216 -k3722,262:32583029,45706769:4006215 -) -] -(3722,265:32583029,45706769:0,355205,126483 -h3722,265:32583029,45706769:420741,355205,126483 -k3722,265:32583029,45706769:-420741 -) -) -] -(3722,265:32583029,45706769:0,0,0 -g3722,265:32583029,45706769 -) -) -] -(3722,265:6630773,47279633:25952256,0,0 -h3722,265:6630773,47279633:25952256,0,0 -) -] -(3722,265:4262630,4025873:0,0,0 -[3722,265:-473656,4025873:0,0,0 -(3722,265:-473656,-710413:0,0,0 -(3722,265:-473656,-710413:0,0,0 -g3722,265:-473656,-710413 -) -g3722,265:-473656,-710413 -) -] -) -] -!29329 -}434 +] +g3763,353:6630773,4812305 +k3763,353:28201292,4812305:20375142 +g3763,353:30884336,4812305 +) +) +] +[3763,353:6630773,45706769:25952256,40108032,0 +(3763,353:6630773,45706769:25952256,40108032,0 +(3763,353:6630773,45706769:0,0,0 +g3763,353:6630773,45706769 +) +[3763,353:6630773,45706769:25952256,40108032,0 +(3763,353:6630773,45706769:25952256,40108032,126483 +[3763,353:6630773,45706769:11829248,40108032,126483 +(3763,256:6630773,6254097:11829248,505283,102891 +h3763,255:6630773,6254097:0,0,0 +r3763,353:6630773,6254097:0,608174,102891 +g3763,255:7941493,6254097 +g3763,255:7941493,6254097 +g3763,255:10631090,6254097 +g3763,255:12199366,6254097 +k3763,256:16688910,6254097:1771111 +k3763,256:18460021,6254097:1771111 +) +(3763,257:6630773,7120292:11829248,505283,134348 +h3763,256:6630773,7120292:0,0,0 +r3763,353:6630773,7120292:0,639631,134348 +g3763,256:7941493,7120292 +g3763,256:7941493,7120292 +g3763,256:9151287,7120292 +g3763,256:12513939,7120292 +k3763,257:16846197,7120292:1613825 +k3763,257:18460021,7120292:1613824 +) +(3763,258:6630773,7986487:11829248,505283,102891 +h3763,257:6630773,7986487:0,0,0 +r3763,353:6630773,7986487:0,608174,102891 +g3763,257:7941493,7986487 +g3763,257:7941493,7986487 +g3763,257:9566130,7986487 +g3763,257:10956804,7986487 +g3763,257:12536877,7986487 +g3763,257:14812287,7986487 +k3763,258:17995371,7986487:464651 +k3763,258:18460021,7986487:464650 +) +(3763,259:6630773,8852682:11829248,505283,126483 +h3763,258:6630773,8852682:0,0,0 +r3763,353:6630773,8852682:0,631766,126483 +g3763,258:7941493,8852682 +g3763,258:7941493,8852682 +g3763,258:10482979,8852682 +g3763,258:11850715,8852682 +g3763,258:13241389,8852682 +k3763,258:18460021,8852682:3770286 +) +(3763,259:9252213,9717762:9207808,485622,134348 +g3763,258:13132599,9717762 +k3763,259:17155527,9717762:1304495 +k3763,259:18460021,9717762:1304494 +) +(3763,260:6630773,10583958:11829248,505283,134348 +h3763,259:6630773,10583958:0,0,0 +g3763,259:9218789,10583958 +g3763,259:11576774,10583958 +g3763,259:14287343,10583958 +k3763,260:17732899,10583958:727123 +k3763,260:18460021,10583958:727122 +) +(3763,261:6630773,11450153:11829248,505283,134348 +h3763,260:6630773,11450153:0,0,0 +g3763,260:8696467,11450153 +g3763,260:10264743,11450153 +g3763,260:11833019,11450153 +k3763,261:15744209,11450153:2715813 +k3763,261:18460021,11450153:2715812 +) +(3763,262:6630773,12316348:11829248,505283,134348 +h3763,261:6630773,12316348:0,0,0 +g3763,261:8114508,12316348 +g3763,261:11032826,12316348 +g3763,261:14639927,12316348 +k3763,261:18460021,12316348:1070203 +) +(3763,262:9252213,13181428:9207808,485622,11795 +k3763,262:14453806,13181428:4006216 +k3763,262:18460021,13181428:4006215 +) +(3763,263:6630773,14047623:11829248,505283,134348 +h3763,262:6630773,14047623:0,0,0 +g3763,262:10328313,14047623 +k3763,263:14991856,14047623:3468166 +k3763,263:18460021,14047623:3468165 +) +(3763,264:6630773,14913818:11829248,505283,134348 +h3763,263:6630773,14913818:0,0,0 +g3763,263:10335523,14913818 +g3763,263:13939347,14913818 +g3763,263:14947946,14913818 +k3763,263:18460021,14913818:1949041 +) +(3763,264:9252213,15778898:9207808,485622,11795 +k3763,264:15215334,15778898:3244688 +k3763,264:18460021,15778898:3244687 +) +(3763,265:6630773,16645093:11829248,473825,134348 +h3763,264:6630773,16645093:0,0,0 +k3763,265:13986862,16645093:4473160 +k3763,265:18460021,16645093:4473159 +) +(3763,266:6630773,17511289:11829248,505283,126483 +h3763,265:6630773,17511289:0,0,0 +r3763,353:6630773,17511289:0,631766,126483 +k3763,265:7941493,17511289:1310720 +k3763,265:7941493,17511289:0 +k3763,265:13186995,17511289:188744 +k3763,265:13991776,17511289:188743 +k3763,265:17264644,17511289:188744 +k3763,266:18460021,17511289:0 +k3763,266:18460021,17511289:0 +) +(3763,270:6630773,19051429:11829248,505283,102891 +h3763,269:6630773,19051429:0,0,0 +g3763,269:9296777,19051429 +g3763,269:10865053,19051429 +g3763,269:12433329,19051429 +k3763,270:16044364,19051429:2415658 +k3763,270:18460021,19051429:2415657 +) +(3763,271:6630773,19917625:11829248,505283,102891 +h3763,270:6630773,19917625:0,0,0 +g3763,270:9370177,19917625 +k3763,271:14512788,19917625:3947234 +k3763,271:18460021,19917625:3947233 +) +(3763,272:6630773,20783820:11829248,485622,102891 +h3763,271:6630773,20783820:0,0,0 +g3763,271:8813121,20783820 +g3763,271:10381397,20783820 +k3763,272:15018398,20783820:3441624 +k3763,272:18460021,20783820:3441623 +) +(3763,276:6630773,22323960:11829248,505283,134348 +h3763,275:6630773,22323960:0,0,0 +g3763,275:8090915,22323960 +g3763,275:9257455,22323960 +g3763,275:12720377,22323960 +k3763,275:18460021,22323960:1607599 +) +(3763,276:9252213,23189040:9207808,473825,7863 +k3763,276:15884784,23189040:2575237 +k3763,276:18460021,23189040:2575237 +) +(3763,277:6630773,24055236:11829248,505283,134348 +h3763,276:6630773,24055236:0,0,0 +g3763,276:10001945,24055236 +k3763,277:14925665,24055236:3534357 +k3763,277:18460021,24055236:3534356 +) +(3763,278:6630773,24921431:11829248,513147,102891 +h3763,277:6630773,24921431:0,0,0 +r3763,353:6630773,24921431:0,616038,102891 +g3763,277:7941493,24921431 +g3763,277:7941493,24921431 +g3763,277:9459962,24921431 +g3763,277:11146203,24921431 +k3763,278:16162329,24921431:2297693 +k3763,278:18460021,24921431:2297692 +) +(3763,279:6630773,25787626:11829248,513147,102891 +h3763,278:6630773,25787626:0,0,0 +r3763,353:6630773,25787626:0,616038,102891 +g3763,278:7941493,25787626 +g3763,278:7941493,25787626 +g3763,278:9579893,25787626 +g3763,278:11266134,25787626 +k3763,279:16222294,25787626:2237727 +k3763,279:18460021,25787626:2237727 +) +(3763,280:6630773,26653821:11829248,505283,102891 +h3763,279:6630773,26653821:0,0,0 +r3763,353:6630773,26653821:0,608174,102891 +g3763,279:7941493,26653821 +g3763,279:7941493,26653821 +g3763,279:11467985,26653821 +k3763,280:16323220,26653821:2136802 +k3763,280:18460021,26653821:2136801 +) +(3763,281:6630773,27520016:11829248,513147,102891 +h3763,280:6630773,27520016:0,0,0 +r3763,353:6630773,27520016:0,616038,102891 +g3763,280:7941493,27520016 +g3763,280:7941493,27520016 +g3763,280:9426538,27520016 +g3763,280:11112779,27520016 +k3763,281:15384089,27520016:3075933 +k3763,281:18460021,27520016:3075932 +) +(3763,282:6630773,28386211:11829248,505283,134348 +h3763,281:6630773,28386211:0,0,0 +r3763,353:6630773,28386211:0,639631,134348 +g3763,281:7941493,28386211 +g3763,281:7941493,28386211 +g3763,281:10691383,28386211 +k3763,282:15173391,28386211:3286631 +k3763,282:18460021,28386211:3286630 +) +(3763,283:6630773,29252407:11829248,513147,102891 +h3763,282:6630773,29252407:0,0,0 +r3763,353:6630773,29252407:0,616038,102891 +g3763,282:7941493,29252407 +g3763,282:7941493,29252407 +g3763,282:10298167,29252407 +g3763,282:11984408,29252407 +k3763,283:16581431,29252407:1878590 +k3763,283:18460021,29252407:1878590 +) +(3763,284:6630773,30118602:11829248,513147,102891 +h3763,283:6630773,30118602:0,0,0 +r3763,353:6630773,30118602:0,616038,102891 +g3763,283:7941493,30118602 +g3763,283:7941493,30118602 +g3763,283:9842692,30118602 +g3763,283:13126045,30118602 +k3763,283:18460021,30118602:2401240 +) +(3763,284:9252213,30983682:9207808,485622,11795 +k3763,284:15215334,30983682:3244688 +k3763,284:18460021,30983682:3244687 +) +(3763,285:6630773,31849877:11829248,505283,126483 +h3763,284:6630773,31849877:0,0,0 +r3763,353:6630773,31849877:0,631766,126483 +g3763,284:7941493,31849877 +g3763,284:7941493,31849877 +g3763,284:10763473,31849877 +g3763,284:13474042,31849877 +k3763,285:17326248,31849877:1133773 +k3763,285:18460021,31849877:1133773 +) +(3763,286:6630773,32716072:11829248,485622,102891 +h3763,285:6630773,32716072:0,0,0 +r3763,353:6630773,32716072:0,588513,102891 +g3763,285:7941493,32716072 +g3763,285:7941493,32716072 +g3763,285:10395161,32716072 +g3763,285:14604538,32716072 +k3763,286:17891496,32716072:568525 +k3763,286:18460021,32716072:568525 +) +(3763,287:6630773,33582267:11829248,513147,102891 +h3763,286:6630773,33582267:0,0,0 +r3763,353:6630773,33582267:0,616038,102891 +g3763,286:7941493,33582267 +g3763,286:7941493,33582267 +g3763,286:9366901,33582267 +g3763,286:11053142,33582267 +k3763,287:16115798,33582267:2344223 +k3763,287:18460021,33582267:2344223 +) +(3763,288:6630773,34448462:11829248,505283,102891 +h3763,287:6630773,34448462:0,0,0 +r3763,353:6630773,34448462:0,608174,102891 +g3763,287:7941493,34448462 +g3763,287:7941493,34448462 +g3763,287:11764208,34448462 +g3763,287:13154882,34448462 +k3763,287:18460021,34448462:1622671 +) +(3763,288:9252213,35313542:9207808,485622,11795 +k3763,288:15215334,35313542:3244688 +k3763,288:18460021,35313542:3244687 +) +(3763,289:6630773,36179737:11829248,513147,102891 +h3763,288:6630773,36179737:0,0,0 +r3763,353:6630773,36179737:0,616038,102891 +g3763,288:7941493,36179737 +g3763,288:7941493,36179737 +g3763,288:9499939,36179737 +g3763,288:10890613,36179737 +g3763,288:12958273,36179737 +g3763,288:14644514,36179737 +k3763,289:17911484,36179737:548537 +k3763,289:18460021,36179737:548537 +) +(3763,290:6630773,37045933:11829248,505283,126483 +h3763,289:6630773,37045933:0,0,0 +g3763,289:9992769,37045933 +g3763,289:11383443,37045933 +g3763,289:14129401,37045933 +g3763,289:16024046,37045933 +k3763,290:18202792,37045933:257230 +k3763,290:18460021,37045933:257229 +) +(3763,291:6630773,37912128:11829248,505283,134348 +h3763,290:6630773,37912128:0,0,0 +g3763,290:9060192,37912128 +k3763,291:15168148,37912128:3291874 +k3763,291:18460021,37912128:3291873 +) +(3763,292:6630773,38778323:11829248,505283,102891 +h3763,291:6630773,38778323:0,0,0 +r3763,353:6630773,38778323:0,608174,102891 +g3763,291:7941493,38778323 +g3763,291:7941493,38778323 +g3763,291:11590537,38778323 +k3763,292:15986037,38778323:2473984 +k3763,292:18460021,38778323:2473984 +) +(3763,293:6630773,39644518:11829248,505283,134348 +h3763,292:6630773,39644518:0,0,0 +g3763,292:9071989,39644518 +g3763,292:12087300,39644518 +g3763,292:13477974,39644518 +g3763,292:17257435,39644518 +k3763,293:18257187,39644518:202834 +k3763,293:18460021,39644518:202834 +) +(3763,294:6630773,40510713:11829248,505283,134348 +h3763,293:6630773,40510713:0,0,0 +g3763,293:10093695,40510713 +k3763,293:18460021,40510713:4234281 +) +(3763,294:9252213,41375793:9207808,485622,102891 +g3763,293:13682446,41375793 +k3763,294:16469693,41375793:1990329 +k3763,294:18460021,41375793:1990328 +) +(3763,295:6630773,42241988:11829248,513147,134348 +h3763,294:6630773,42241988:0,0,0 +g3763,294:12608967,42241988 +k3763,295:16132183,42241988:2327839 +k3763,295:18460021,42241988:2327838 +) +(3763,296:6630773,43108184:11829248,481690,102891 +h3763,295:6630773,43108184:0,0,0 +g3763,295:9720795,43108184 +k3763,296:14688097,43108184:3771925 +k3763,296:18460021,43108184:3771924 +) +(3763,297:6630773,43974379:11829248,513147,126483 +h3763,296:6630773,43974379:0,0,0 +r3763,353:6630773,43974379:0,639630,126483 +g3763,296:7941493,43974379 +g3763,296:7941493,43974379 +g3763,296:9088373,43974379 +g3763,296:10876195,43974379 +k3763,297:15265797,43974379:3194225 +k3763,297:18460021,43974379:3194224 +) +(3763,298:6630773,44840574:11829248,513147,134348 +h3763,297:6630773,44840574:0,0,0 +r3763,353:6630773,44840574:0,647495,134348 +g3763,297:7941493,44840574 +g3763,297:7941493,44840574 +g3763,297:10480357,44840574 +g3763,297:11338878,44840574 +g3763,297:13457001,44840574 +k3763,298:16556200,44840574:1903822 +k3763,298:18460021,44840574:1903821 +) +(3763,299:6630773,45706769:11829248,505283,126483 +h3763,298:6630773,45706769:0,0,0 +r3763,353:6630773,45706769:0,631766,126483 +g3763,298:7941493,45706769 +g3763,298:7941493,45706769 +g3763,298:10157265,45706769 +g3763,298:11945087,45706769 +k3763,299:15800243,45706769:2659779 +k3763,299:18460021,45706769:2659778 +) +] +k3763,353:19606901,45706769:1146880 +r3763,353:19606901,45706769:0,40234515,126483 +k3763,353:20753781,45706769:1146880 +[3763,353:20753781,45706769:11829248,40108032,126483 +(3763,300:20753781,6254097:11829248,505283,126483 +h3763,299:20753781,6254097:0,0,0 +r3763,353:20753781,6254097:0,631766,126483 +g3763,299:22064501,6254097 +g3763,299:22064501,6254097 +g3763,299:23953248,6254097 +g3763,299:25741070,6254097 +k3763,300:29759738,6254097:2823291 +k3763,300:32583029,6254097:2823291 +) +(3763,304:20753781,7831100:11829248,485622,102891 +h3763,303:20753781,7831100:0,0,0 +g3763,303:22393491,7831100 +g3763,303:23563308,7831100 +g3763,303:24733125,7831100 +k3763,304:29255766,7831100:3327264 +k3763,304:32583029,7831100:3327263 +) +(3763,305:20753781,8699382:11829248,505283,134348 +h3763,304:20753781,8699382:0,0,0 +g3763,304:22520631,8699382 +g3763,304:25355063,8699382 +g3763,304:26943655,8699382 +g3763,304:29755804,8699382 +k3763,305:32528633,8699382:54396 +k3763,305:32583029,8699382:54396 +) +(3763,306:20753781,9567663:11829248,513147,134348 +h3763,305:20753781,9567663:0,0,0 +r3763,353:20753781,9567663:0,647495,134348 +g3763,305:22064501,9567663 +g3763,305:22064501,9567663 +g3763,305:24955949,9567663 +k3763,306:29367178,9567663:3215852 +k3763,306:32583029,9567663:3215851 +) +(3763,307:20753781,10435945:11829248,485622,134348 +h3763,306:20753781,10435945:0,0,0 +r3763,353:20753781,10435945:0,619970,134348 +g3763,306:22064501,10435945 +g3763,306:22064501,10435945 +g3763,306:25332126,10435945 +k3763,307:29555266,10435945:3027763 +k3763,307:32583029,10435945:3027763 +) +(3763,308:20753781,11304227:11829248,505283,134348 +h3763,307:20753781,11304227:0,0,0 +g3763,307:23871328,11304227 +g3763,307:25439604,11304227 +k3763,308:29609005,11304227:2974024 +k3763,308:32583029,11304227:2974024 +) +(3763,312:20753781,12881230:11829248,505283,102891 +h3763,311:20753781,12881230:0,0,0 +g3763,311:23032467,12881230 +g3763,311:24202284,12881230 +g3763,311:25372101,12881230 +k3763,312:29575254,12881230:3007776 +k3763,312:32583029,12881230:3007775 +) +(3763,316:20753781,14458233:11829248,505283,134348 +h3763,315:20753781,14458233:0,0,0 +k3763,316:28254704,14458233:4328325 +k3763,316:32583029,14458233:4328325 +) +(3763,318:20753781,15326514:11829248,485622,102891 +h3763,316:20753781,15326514:0,0,0 +r3763,353:20753781,15326514:0,588513,102891 +g3763,316:22064501,15326514 +g3763,316:22064501,15326514 +g3763,316:22890909,15326514 +g3763,316:24060726,15326514 +g3763,316:25230543,15326514 +g3763,316:26400360,15326514 +g3763,316:27570177,15326514 +g3763,316:28739994,15326514 +g3763,316:29909811,15326514 +g3763,316:31079628,15326514 +k3763,316:32583029,15326514:532813 +) +(3763,318:23375221,16191594:9207808,485622,102891 +g3763,316:24943497,16191594 +g3763,316:26511773,16191594 +g3763,317:28080049,16191594 +k3763,318:30929228,16191594:1653802 +k3763,318:32583029,16191594:1653801 +) +(3763,319:20753781,17059876:11829248,485622,102891 +h3763,318:20753781,17059876:0,0,0 +r3763,353:20753781,17059876:0,588513,102891 +g3763,318:22064501,17059876 +g3763,318:22064501,17059876 +g3763,318:23720595,17059876 +g3763,318:24890412,17059876 +g3763,318:26060229,17059876 +g3763,318:27230046,17059876 +g3763,318:28399863,17059876 +g3763,318:29569680,17059876 +g3763,318:30739497,17059876 +k3763,318:32583029,17059876:872944 +) +(3763,319:23375221,17924956:9207808,485622,102891 +g3763,318:24943497,17924956 +g3763,318:26511773,17924956 +k3763,319:30145090,17924956:2437940 +k3763,319:32583029,17924956:2437939 +) +(3763,320:20753781,18793238:11829248,485622,102891 +h3763,319:20753781,18793238:0,0,0 +r3763,353:20753781,18793238:0,588513,102891 +g3763,319:22064501,18793238 +g3763,319:22064501,18793238 +g3763,319:24635478,18793238 +k3763,320:29206942,18793238:3376087 +k3763,320:32583029,18793238:3376087 +) +(3763,321:20753781,19661520:11829248,485622,102891 +h3763,320:20753781,19661520:0,0,0 +r3763,353:20753781,19661520:0,588513,102891 +g3763,320:22064501,19661520 +g3763,320:22064501,19661520 +g3763,320:25478271,19661520 +g3763,320:26648088,19661520 +g3763,320:28216364,19661520 +g3763,320:29784640,19661520 +k3763,321:31781523,19661520:801506 +k3763,321:32583029,19661520:801506 +) +(3763,322:20753781,20529801:11829248,485622,102891 +h3763,321:20753781,20529801:0,0,0 +r3763,353:20753781,20529801:0,588513,102891 +g3763,321:22064501,20529801 +g3763,321:22064501,20529801 +g3763,321:24246849,20529801 +g3763,321:25815125,20529801 +k3763,322:29796766,20529801:2786264 +k3763,322:32583029,20529801:2786263 +) +(3763,323:20753781,21398083:11829248,485622,102891 +h3763,322:20753781,21398083:0,0,0 +r3763,353:20753781,21398083:0,588513,102891 +g3763,322:22064501,21398083 +g3763,322:22064501,21398083 +g3763,322:23704211,21398083 +g3763,322:24874028,21398083 +g3763,322:26043845,21398083 +k3763,323:29911126,21398083:2671904 +k3763,323:32583029,21398083:2671903 +) +(3763,324:20753781,22266365:11829248,485622,173670 +h3763,323:20753781,22266365:0,0,0 +r3763,353:20753781,22266365:0,659292,173670 +g3763,323:22064501,22266365 +g3763,323:22064501,22266365 +[3763,323:22193607,22266365:341312,473825,0 +(3763,323:22193607,22128346:341312,335806,0 +) +] +(3763,323:22761873,22440035:370934,473825,0 +) +g3763,323:23854358,22266365 +g3763,323:25024175,22266365 +k3763,324:29401291,22266365:3181739 +k3763,324:32583029,22266365:3181738 +) +(3763,325:20753781,23134646:11829248,505283,102891 +h3763,324:20753781,23134646:0,0,0 +r3763,353:20753781,23134646:0,608174,102891 +g3763,324:22064501,23134646 +g3763,324:22064501,23134646 +g3763,324:25740415,23134646 +g3763,324:26511773,23134646 +g3763,324:27681590,23134646 +g3763,324:28851407,23134646 +g3763,324:30419683,23134646 +k3763,325:32099045,23134646:483985 +k3763,325:32583029,23134646:483984 +) +(3763,326:20753781,24002928:11829248,505283,126483 +h3763,325:20753781,24002928:0,0,0 +r3763,353:20753781,24002928:0,631766,126483 +g3763,325:22064501,24002928 +g3763,325:22064501,24002928 +g3763,325:24555524,24002928 +g3763,325:25946198,24002928 +g3763,325:29395357,24002928 +k3763,326:31387652,24002928:1195377 +k3763,326:32583029,24002928:1195377 +) +(3763,327:20753781,24871210:11829248,505283,102891 +h3763,326:20753781,24871210:0,0,0 +r3763,353:20753781,24871210:0,608174,102891 +g3763,326:22064501,24871210 +g3763,326:22064501,24871210 +g3763,326:24381853,24871210 +g3763,326:25551670,24871210 +g3763,326:26721487,24871210 +k3763,327:30050717,24871210:2532312 +k3763,327:32583029,24871210:2532312 +) +(3763,328:20753781,25739491:11829248,505283,102891 +h3763,327:20753781,25739491:0,0,0 +r3763,353:20753781,25739491:0,608174,102891 +g3763,327:22064501,25739491 +g3763,327:22064501,25739491 +g3763,327:23622291,25739491 +k3763,328:28501119,25739491:4081910 +k3763,328:32583029,25739491:4081910 +) +(3763,329:20753781,26607773:11829248,505283,126483 +h3763,328:20753781,26607773:0,0,0 +r3763,353:20753781,26607773:0,631766,126483 +g3763,328:22064501,26607773 +g3763,328:22064501,26607773 +g3763,328:24602054,26607773 +g3763,328:25771871,26607773 +g3763,328:26941688,26607773 +g3763,328:28509964,26607773 +g3763,328:30078240,26607773 +k3763,329:31928323,26607773:654706 +k3763,329:32583029,26607773:654706 +) +(3763,330:20753781,27476055:11829248,505283,102891 +h3763,329:20753781,27476055:0,0,0 +r3763,353:20753781,27476055:0,608174,102891 +g3763,329:22064501,27476055 +g3763,329:22064501,27476055 +g3763,329:22686438,27476055 +g3763,329:26410193,27476055 +g3763,329:27580010,27476055 +k3763,330:30679208,27476055:1903821 +k3763,330:32583029,27476055:1903821 +) +(3763,331:20753781,28344337:11829248,505283,102891 +h3763,330:20753781,28344337:0,0,0 +r3763,353:20753781,28344337:0,608174,102891 +g3763,330:22064501,28344337 +g3763,330:22064501,28344337 +g3763,330:26203099,28344337 +k3763,331:29990753,28344337:2592277 +k3763,331:32583029,28344337:2592276 +) +(3763,332:20753781,29212618:11829248,485622,102891 +h3763,331:20753781,29212618:0,0,0 +r3763,353:20753781,29212618:0,588513,102891 +g3763,331:22064501,29212618 +g3763,331:22064501,29212618 +g3763,331:22790639,29212618 +g3763,331:23960456,29212618 +g3763,331:25130273,29212618 +g3763,331:26698549,29212618 +g3763,331:28266825,29212618 +k3763,332:31022616,29212618:1560414 +k3763,332:32583029,29212618:1560413 +) +(3763,333:20753781,30080900:11829248,505283,102891 +h3763,332:20753781,30080900:0,0,0 +r3763,353:20753781,30080900:0,608174,102891 +g3763,332:22064501,30080900 +g3763,332:22064501,30080900 +g3763,332:24295346,30080900 +k3763,333:28837647,30080900:3745383 +k3763,333:32583029,30080900:3745382 +) +(3763,334:20753781,30949182:11829248,485622,102891 +h3763,333:20753781,30949182:0,0,0 +r3763,353:20753781,30949182:0,588513,102891 +g3763,333:22064501,30949182 +g3763,333:22064501,30949182 +g3763,333:24657104,30949182 +k3763,334:29217755,30949182:3365274 +k3763,334:32583029,30949182:3365274 +) +(3763,335:20753781,31817463:11829248,485622,102891 +h3763,334:20753781,31817463:0,0,0 +r3763,353:20753781,31817463:0,588513,102891 +g3763,334:22064501,31817463 +g3763,334:22064501,31817463 +g3763,334:23761227,31817463 +g3763,334:25329503,31817463 +k3763,335:29553955,31817463:3029075 +k3763,335:32583029,31817463:3029074 +) +(3763,336:20753781,32685745:11829248,485622,102891 +h3763,335:20753781,32685745:0,0,0 +r3763,353:20753781,32685745:0,588513,102891 +g3763,335:22064501,32685745 +g3763,335:22064501,32685745 +g3763,335:24175415,32685745 +k3763,336:28976911,32685745:3606119 +k3763,336:32583029,32685745:3606118 +) +(3763,337:20753781,33554027:11829248,485622,173670 +h3763,336:20753781,33554027:0,0,0 +[3763,336:20882887,33554027:341312,473825,0 +(3763,336:20882887,33416008:341312,335806,0 +) +] +(3763,336:21451153,33727697:370934,473825,0 +) +g3763,336:22543638,33554027 +g3763,336:23713455,33554027 +k3763,337:28745931,33554027:3837099 +k3763,337:32583029,33554027:3837098 +) +(3763,338:20753781,34422309:11829248,505283,102891 +h3763,337:20753781,34422309:0,0,0 +g3763,337:23472214,34422309 +g3763,337:25040490,34422309 +g3763,337:26608766,34422309 +k3763,338:30193586,34422309:2389443 +k3763,338:32583029,34422309:2389443 +) +(3763,339:20753781,35290590:11829248,505283,102891 +h3763,338:20753781,35290590:0,0,0 +g3763,338:24999858,35290590 +g3763,338:26169675,35290590 +g3763,338:27737951,35290590 +g3763,338:29306227,35290590 +g3763,338:30874503,35290590 +k3763,339:32326455,35290590:256575 +k3763,339:32583029,35290590:256574 +) +(3763,340:20753781,36158872:11829248,505283,102891 +h3763,339:20753781,36158872:0,0,0 +g3763,339:22765736,36158872 +g3763,339:25456644,36158872 +k3763,340:30379053,36158872:2203976 +k3763,340:32583029,36158872:2203976 +) +(3763,341:20753781,37027154:11829248,513147,126483 +h3763,340:20753781,37027154:0,0,0 +r3763,353:20753781,37027154:0,639630,126483 +g3763,340:22064501,37027154 +g3763,340:22064501,37027154 +g3763,340:24818323,37027154 +g3763,340:25676844,37027154 +g3763,340:29432056,37027154 +k3763,341:31605231,37027154:977798 +k3763,341:32583029,37027154:977798 +) +(3763,342:20753781,37895435:11829248,513147,126483 +h3763,341:20753781,37895435:0,0,0 +r3763,353:20753781,37895435:0,639630,126483 +g3763,341:22064501,37895435 +g3763,341:22064501,37895435 +g3763,341:24818323,37895435 +g3763,341:25676844,37895435 +g3763,341:28703952,37895435 +k3763,342:31241179,37895435:1341850 +k3763,342:32583029,37895435:1341850 +) +(3763,343:20753781,38763717:11829248,485622,102891 +h3763,342:20753781,38763717:0,0,0 +r3763,353:20753781,38763717:0,588513,102891 +g3763,342:22064501,38763717 +g3763,342:22064501,38763717 +g3763,342:25398972,38763717 +k3763,343:30350217,38763717:2232812 +k3763,343:32583029,38763717:2232812 +) +(3763,344:20753781,39631999:11829248,505283,134348 +h3763,343:20753781,39631999:0,0,0 +r3763,353:20753781,39631999:0,639631,134348 +g3763,343:22064501,39631999 +g3763,343:22064501,39631999 +g3763,343:24076456,39631999 +g3763,343:27766132,39631999 +k3763,344:30772269,39631999:1810760 +k3763,344:32583029,39631999:1810760 +) +(3763,345:20753781,40500280:11829248,505283,134348 +h3763,344:20753781,40500280:0,0,0 +r3763,353:20753781,40500280:0,639631,134348 +g3763,344:22064501,40500280 +g3763,344:22064501,40500280 +g3763,344:25836753,40500280 +g3763,344:29526429,40500280 +k3763,345:31652418,40500280:930612 +k3763,345:32583029,40500280:930611 +) +(3763,346:20753781,41368562:11829248,485622,134348 +h3763,345:20753781,41368562:0,0,0 +r3763,353:20753781,41368562:0,619970,134348 +g3763,345:22064501,41368562 +g3763,345:22064501,41368562 +g3763,345:25018864,41368562 +g3763,345:28708540,41368562 +k3763,346:32005001,41368562:578028 +k3763,346:32583029,41368562:578028 +) +(3763,347:20753781,42236844:11829248,513147,134348 +h3763,346:20753781,42236844:0,0,0 +r3763,353:20753781,42236844:0,647495,134348 +k3763,346:22064501,42236844:1310720 +k3763,346:22064501,42236844:0 +k3763,346:25180737,42236844:184811 +k3763,346:26024841,42236844:184812 +k3763,346:28197359,42236844:184811 +k3763,346:29069644,42236844:184812 +k3763,346:31387652,42236844:184811 +k3763,347:32583029,42236844:0 +k3763,347:32583029,42236844:0 +) +(3763,348:20753781,43105126:11829248,513147,134348 +h3763,347:20753781,43105126:0,0,0 +r3763,353:20753781,43105126:0,647495,134348 +g3763,347:22064501,43105126 +g3763,347:22064501,43105126 +g3763,347:25195155,43105126 +g3763,347:26053676,43105126 +g3763,347:29243313,43105126 +k3763,347:32583029,43105126:1206519 +) +(3763,348:23375221,43970206:9207808,485622,11795 +k3763,348:28576814,43970206:4006216 +k3763,348:32583029,43970206:4006215 +) +(3763,349:20753781,44838487:11829248,505283,126483 +h3763,348:20753781,44838487:0,0,0 +r3763,353:20753781,44838487:0,631766,126483 +g3763,348:22064501,44838487 +g3763,348:22064501,44838487 +g3763,348:25254138,44838487 +g3763,348:27192693,44838487 +k3763,349:30485550,44838487:2097480 +k3763,349:32583029,44838487:2097479 +) +(3763,350:20753781,45706769:11829248,513147,126483 +h3763,349:20753781,45706769:0,0,0 +r3763,353:20753781,45706769:0,639630,126483 +g3763,349:22064501,45706769 +g3763,349:22064501,45706769 +g3763,349:23455175,45706769 +g3763,349:27265438,45706769 +g3763,349:28412318,45706769 +$3763,349:28412318,45706769 +(3763,349:28966098,45805083:311689,339935,8258 +) +g3763,349:29459847,45706769 +g3763,349:30210104,45706769 +$3763,349:30608563,45706769 +g3763,349:30981462,45706769 +k3763,350:32379934,45706769:203095 +k3763,350:32583029,45706769:203095 +) +] +(3763,353:32583029,45706769:0,355205,126483 +h3763,353:32583029,45706769:420741,355205,126483 +k3763,353:32583029,45706769:-420741 +) +) +] +(3763,353:32583029,45706769:0,0,0 +g3763,353:32583029,45706769 +) +) +] +(3763,353:6630773,47279633:25952256,0,0 +h3763,353:6630773,47279633:25952256,0,0 +) +] +(3763,353:4262630,4025873:0,0,0 +[3763,353:-473656,4025873:0,0,0 +(3763,353:-473656,-710413:0,0,0 +(3763,353:-473656,-710413:0,0,0 +g3763,353:-473656,-710413 +) +g3763,353:-473656,-710413 +) +] +) +] +!28478 +}417 !12 -{435 -[3722,362:4262630,47279633:28320399,43253760,0 -(3722,362:4262630,4025873:0,0,0 -[3722,362:-473656,4025873:0,0,0 -(3722,362:-473656,-710413:0,0,0 -(3722,362:-473656,-644877:0,0,0 -k3722,362:-473656,-644877:-65536 +{418 +[3763,441:4262630,47279633:28320399,43253760,0 +(3763,441:4262630,4025873:0,0,0 +[3763,441:-473656,4025873:0,0,0 +(3763,441:-473656,-710413:0,0,0 +(3763,441:-473656,-644877:0,0,0 +k3763,441:-473656,-644877:-65536 ) -(3722,362:-473656,4736287:0,0,0 -k3722,362:-473656,4736287:5209943 +(3763,441:-473656,4736287:0,0,0 +k3763,441:-473656,4736287:5209943 ) -g3722,362:-473656,-710413 +g3763,441:-473656,-710413 ) ] ) -[3722,362:6630773,47279633:25952256,43253760,0 -[3722,362:6630773,4812305:25952256,786432,0 -(3722,362:6630773,4812305:25952256,505283,11795 -(3722,362:6630773,4812305:25952256,505283,11795 -g3722,362:3078558,4812305 -[3722,362:3078558,4812305:0,0,0 -(3722,362:3078558,2439708:0,1703936,0 -k3722,362:1358238,2439708:-1720320 -(3722,1:1358238,2439708:1720320,1703936,0 -(3722,1:1358238,2439708:1179648,16384,0 -r3722,362:2537886,2439708:1179648,16384,0 +[3763,441:6630773,47279633:25952256,43253760,0 +[3763,441:6630773,4812305:25952256,786432,0 +(3763,441:6630773,4812305:25952256,505283,11795 +(3763,441:6630773,4812305:25952256,505283,11795 +g3763,441:3078558,4812305 +[3763,441:3078558,4812305:0,0,0 +(3763,441:3078558,2439708:0,1703936,0 +k3763,441:1358238,2439708:-1720320 +(3763,1:1358238,2439708:1720320,1703936,0 +(3763,1:1358238,2439708:1179648,16384,0 +r3763,441:2537886,2439708:1179648,16384,0 ) -g3722,1:3062174,2439708 -(3722,1:3062174,2439708:16384,1703936,0 -[3722,1:3062174,2439708:25952256,1703936,0 -(3722,1:3062174,1915420:25952256,1179648,0 -(3722,1:3062174,1915420:16384,1179648,0 -r3722,362:3078558,1915420:16384,1179648,0 +g3763,1:3062174,2439708 +(3763,1:3062174,2439708:16384,1703936,0 +[3763,1:3062174,2439708:25952256,1703936,0 +(3763,1:3062174,1915420:25952256,1179648,0 +(3763,1:3062174,1915420:16384,1179648,0 +r3763,441:3078558,1915420:16384,1179648,0 ) -k3722,1:29014430,1915420:25935872 -g3722,1:29014430,1915420 +k3763,1:29014430,1915420:25935872 +g3763,1:29014430,1915420 ) ] ) ) ) ] -[3722,362:3078558,4812305:0,0,0 -(3722,362:3078558,2439708:0,1703936,0 -g3722,362:29030814,2439708 -g3722,362:36135244,2439708 -(3722,1:36135244,2439708:1720320,1703936,0 -(3722,1:36135244,2439708:16384,1703936,0 -[3722,1:36135244,2439708:25952256,1703936,0 -(3722,1:36135244,1915420:25952256,1179648,0 -(3722,1:36135244,1915420:16384,1179648,0 -r3722,362:36151628,1915420:16384,1179648,0 +[3763,441:3078558,4812305:0,0,0 +(3763,441:3078558,2439708:0,1703936,0 +g3763,441:29030814,2439708 +g3763,441:36135244,2439708 +(3763,1:36135244,2439708:1720320,1703936,0 +(3763,1:36135244,2439708:16384,1703936,0 +[3763,1:36135244,2439708:25952256,1703936,0 +(3763,1:36135244,1915420:25952256,1179648,0 +(3763,1:36135244,1915420:16384,1179648,0 +r3763,441:36151628,1915420:16384,1179648,0 ) -k3722,1:62087500,1915420:25935872 -g3722,1:62087500,1915420 +k3763,1:62087500,1915420:25935872 +g3763,1:62087500,1915420 ) ] ) -g3722,1:36675916,2439708 -(3722,1:36675916,2439708:1179648,16384,0 -r3722,362:37855564,2439708:1179648,16384,0 +g3763,1:36675916,2439708 +(3763,1:36675916,2439708:1179648,16384,0 +r3763,441:37855564,2439708:1179648,16384,0 ) ) -k3722,362:3078556,2439708:-34777008 +k3763,441:3078556,2439708:-34777008 ) ] -[3722,362:3078558,4812305:0,0,0 -(3722,362:3078558,49800853:0,16384,2228224 -k3722,362:1358238,49800853:-1720320 -(3722,1:1358238,49800853:1720320,16384,2228224 -(3722,1:1358238,49800853:1179648,16384,0 -r3722,362:2537886,49800853:1179648,16384,0 +[3763,441:3078558,4812305:0,0,0 +(3763,441:3078558,49800853:0,16384,2228224 +k3763,441:1358238,49800853:-1720320 +(3763,1:1358238,49800853:1720320,16384,2228224 +(3763,1:1358238,49800853:1179648,16384,0 +r3763,441:2537886,49800853:1179648,16384,0 ) -g3722,1:3062174,49800853 -(3722,1:3062174,52029077:16384,1703936,0 -[3722,1:3062174,52029077:25952256,1703936,0 -(3722,1:3062174,51504789:25952256,1179648,0 -(3722,1:3062174,51504789:16384,1179648,0 -r3722,362:3078558,51504789:16384,1179648,0 +g3763,1:3062174,49800853 +(3763,1:3062174,52029077:16384,1703936,0 +[3763,1:3062174,52029077:25952256,1703936,0 +(3763,1:3062174,51504789:25952256,1179648,0 +(3763,1:3062174,51504789:16384,1179648,0 +r3763,441:3078558,51504789:16384,1179648,0 ) -k3722,1:29014430,51504789:25935872 -g3722,1:29014430,51504789 +k3763,1:29014430,51504789:25935872 +g3763,1:29014430,51504789 ) ] ) ) ) ] -[3722,362:3078558,4812305:0,0,0 -(3722,362:3078558,49800853:0,16384,2228224 -g3722,362:29030814,49800853 -g3722,362:36135244,49800853 -(3722,1:36135244,49800853:1720320,16384,2228224 -(3722,1:36135244,52029077:16384,1703936,0 -[3722,1:36135244,52029077:25952256,1703936,0 -(3722,1:36135244,51504789:25952256,1179648,0 -(3722,1:36135244,51504789:16384,1179648,0 -r3722,362:36151628,51504789:16384,1179648,0 -) -k3722,1:62087500,51504789:25935872 -g3722,1:62087500,51504789 -) -] +[3763,441:3078558,4812305:0,0,0 +(3763,441:3078558,49800853:0,16384,2228224 +g3763,441:29030814,49800853 +g3763,441:36135244,49800853 +(3763,1:36135244,49800853:1720320,16384,2228224 +(3763,1:36135244,52029077:16384,1703936,0 +[3763,1:36135244,52029077:25952256,1703936,0 +(3763,1:36135244,51504789:25952256,1179648,0 +(3763,1:36135244,51504789:16384,1179648,0 +r3763,441:36151628,51504789:16384,1179648,0 ) -g3722,1:36675916,49800853 -(3722,1:36675916,49800853:1179648,16384,0 -r3722,362:37855564,49800853:1179648,16384,0 +k3763,1:62087500,51504789:25935872 +g3763,1:62087500,51504789 +) +] ) +g3763,1:36675916,49800853 +(3763,1:36675916,49800853:1179648,16384,0 +r3763,441:37855564,49800853:1179648,16384,0 ) -k3722,362:3078556,49800853:-34777008 -) -] -g3722,362:6630773,4812305 -k3722,362:28201292,4812305:20375142 -g3722,362:30884336,4812305 -) -) -] -[3722,362:6630773,45706769:25952256,40108032,0 -(3722,362:6630773,45706769:25952256,40108032,0 -(3722,362:6630773,45706769:0,0,0 -g3722,362:6630773,45706769 -) -[3722,362:6630773,45706769:25952256,40108032,0 -(3722,362:6630773,45706769:25952256,40108032,134348 -[3722,362:6630773,45706769:11829248,40108032,134348 -(3722,263:6630773,6254097:11829248,505283,134348 -h3722,262:6630773,6254097:0,0,0 -g3722,262:10328313,6254097 -k3722,263:14991856,6254097:3468166 -k3722,263:18460021,6254097:3468165 -) -(3722,264:6630773,7095585:11829248,505283,134348 -h3722,263:6630773,7095585:0,0,0 -g3722,263:10335523,7095585 -g3722,263:13939347,7095585 -g3722,263:14947946,7095585 -k3722,263:18460021,7095585:1949041 -) -(3722,264:9252213,7937073:9207808,485622,11795 -k3722,264:15215334,7937073:3244688 -k3722,264:18460021,7937073:3244687 -) -(3722,265:6630773,8778561:11829248,473825,134348 -h3722,264:6630773,8778561:0,0,0 -k3722,265:13986862,8778561:4473160 -k3722,265:18460021,8778561:4473159 -) -(3722,266:6630773,9620049:11829248,505283,126483 -h3722,265:6630773,9620049:0,0,0 -r3722,362:6630773,9620049:0,631766,126483 -k3722,265:7941493,9620049:1310720 -k3722,265:7941493,9620049:0 -k3722,265:13186995,9620049:188744 -k3722,265:13991776,9620049:188743 -k3722,265:17264644,9620049:188744 -k3722,266:18460021,9620049:0 -k3722,266:18460021,9620049:0 -) -(3722,270:6630773,11115275:11829248,505283,102891 -h3722,269:6630773,11115275:0,0,0 -g3722,269:9296777,11115275 -g3722,269:10865053,11115275 -g3722,269:12433329,11115275 -k3722,270:16044364,11115275:2415658 -k3722,270:18460021,11115275:2415657 -) -(3722,271:6630773,11956763:11829248,505283,102891 -h3722,270:6630773,11956763:0,0,0 -g3722,270:9370177,11956763 -k3722,271:14512788,11956763:3947234 -k3722,271:18460021,11956763:3947233 -) -(3722,272:6630773,12798251:11829248,485622,102891 -h3722,271:6630773,12798251:0,0,0 -g3722,271:8813121,12798251 -g3722,271:10381397,12798251 -k3722,272:15018398,12798251:3441624 -k3722,272:18460021,12798251:3441623 -) -(3722,276:6630773,14293476:11829248,505283,134348 -h3722,275:6630773,14293476:0,0,0 -g3722,275:8090915,14293476 -g3722,275:9257455,14293476 -g3722,275:12720377,14293476 -k3722,275:18460021,14293476:1607599 -) -(3722,276:9252213,15134964:9207808,473825,7863 -k3722,276:15884784,15134964:2575237 -k3722,276:18460021,15134964:2575237 -) -(3722,277:6630773,15976452:11829248,505283,134348 -h3722,276:6630773,15976452:0,0,0 -g3722,276:10001945,15976452 -k3722,277:14925665,15976452:3534357 -k3722,277:18460021,15976452:3534356 -) -(3722,278:6630773,16817940:11829248,513147,102891 -h3722,277:6630773,16817940:0,0,0 -r3722,362:6630773,16817940:0,616038,102891 -g3722,277:7941493,16817940 -g3722,277:7941493,16817940 -g3722,277:9459962,16817940 -g3722,277:11146203,16817940 -k3722,278:15400801,16817940:3059221 -k3722,278:18460021,16817940:3059220 -) -(3722,279:6630773,17659428:11829248,513147,102891 -h3722,278:6630773,17659428:0,0,0 -r3722,362:6630773,17659428:0,616038,102891 -g3722,278:7941493,17659428 -g3722,278:7941493,17659428 -g3722,278:9579893,17659428 -g3722,278:11266134,17659428 -k3722,279:16222294,17659428:2237727 -k3722,279:18460021,17659428:2237727 -) -(3722,280:6630773,18500916:11829248,505283,102891 -h3722,279:6630773,18500916:0,0,0 -r3722,362:6630773,18500916:0,608174,102891 -g3722,279:7941493,18500916 -g3722,279:7941493,18500916 -g3722,279:11467985,18500916 -k3722,280:16323220,18500916:2136802 -k3722,280:18460021,18500916:2136801 -) -(3722,281:6630773,19342404:11829248,513147,102891 -h3722,280:6630773,19342404:0,0,0 -r3722,362:6630773,19342404:0,616038,102891 -g3722,280:7941493,19342404 -g3722,280:7941493,19342404 -g3722,280:9426538,19342404 -g3722,280:11112779,19342404 -k3722,281:15384089,19342404:3075933 -k3722,281:18460021,19342404:3075932 -) -(3722,282:6630773,20183892:11829248,505283,134348 -h3722,281:6630773,20183892:0,0,0 -r3722,362:6630773,20183892:0,639631,134348 -g3722,281:7941493,20183892 -g3722,281:7941493,20183892 -g3722,281:10691383,20183892 -k3722,282:15173391,20183892:3286631 -k3722,282:18460021,20183892:3286630 -) -(3722,283:6630773,21025380:11829248,513147,102891 -h3722,282:6630773,21025380:0,0,0 -r3722,362:6630773,21025380:0,616038,102891 -g3722,282:7941493,21025380 -g3722,282:7941493,21025380 -g3722,282:10298167,21025380 -g3722,282:11984408,21025380 -k3722,283:16581431,21025380:1878590 -k3722,283:18460021,21025380:1878590 -) -(3722,284:6630773,21866868:11829248,513147,102891 -h3722,283:6630773,21866868:0,0,0 -r3722,362:6630773,21866868:0,616038,102891 -g3722,283:7941493,21866868 -g3722,283:7941493,21866868 -g3722,283:9842692,21866868 -g3722,283:13126045,21866868 -k3722,283:18460021,21866868:2401240 -) -(3722,284:9252213,22708356:9207808,485622,11795 -k3722,284:15215334,22708356:3244688 -k3722,284:18460021,22708356:3244687 -) -(3722,285:6630773,23549844:11829248,505283,126483 -h3722,284:6630773,23549844:0,0,0 -r3722,362:6630773,23549844:0,631766,126483 -g3722,284:7941493,23549844 -g3722,284:7941493,23549844 -g3722,284:10763473,23549844 -g3722,284:13474042,23549844 -k3722,285:17326248,23549844:1133773 -k3722,285:18460021,23549844:1133773 -) -(3722,286:6630773,24391332:11829248,485622,102891 -h3722,285:6630773,24391332:0,0,0 -r3722,362:6630773,24391332:0,588513,102891 -g3722,285:7941493,24391332 -g3722,285:7941493,24391332 -g3722,285:10395161,24391332 -g3722,285:14604538,24391332 -k3722,286:17891496,24391332:568525 -k3722,286:18460021,24391332:568525 -) -(3722,287:6630773,25232820:11829248,513147,102891 -h3722,286:6630773,25232820:0,0,0 -r3722,362:6630773,25232820:0,616038,102891 -g3722,286:7941493,25232820 -g3722,286:7941493,25232820 -g3722,286:9366901,25232820 -g3722,286:11053142,25232820 -k3722,287:16115798,25232820:2344223 -k3722,287:18460021,25232820:2344223 -) -(3722,288:6630773,26074308:11829248,505283,102891 -h3722,287:6630773,26074308:0,0,0 -r3722,362:6630773,26074308:0,608174,102891 -g3722,287:7941493,26074308 -g3722,287:7941493,26074308 -g3722,287:11764208,26074308 -g3722,287:13154882,26074308 -k3722,287:18460021,26074308:1622671 -) -(3722,288:9252213,26915796:9207808,485622,11795 -k3722,288:15215334,26915796:3244688 -k3722,288:18460021,26915796:3244687 -) -(3722,289:6630773,27757284:11829248,513147,102891 -h3722,288:6630773,27757284:0,0,0 -r3722,362:6630773,27757284:0,616038,102891 -g3722,288:7941493,27757284 -g3722,288:7941493,27757284 -g3722,288:9499939,27757284 -g3722,288:10890613,27757284 -g3722,288:12958273,27757284 -g3722,288:14644514,27757284 -k3722,289:17911484,27757284:548537 -k3722,289:18460021,27757284:548537 -) -(3722,290:6630773,28598772:11829248,505283,126483 -h3722,289:6630773,28598772:0,0,0 -g3722,289:9992769,28598772 -g3722,289:11383443,28598772 -g3722,289:14129401,28598772 -g3722,289:16024046,28598772 -k3722,290:18202792,28598772:257230 -k3722,290:18460021,28598772:257229 -) -(3722,291:6630773,29440260:11829248,505283,134348 -h3722,290:6630773,29440260:0,0,0 -g3722,290:9060192,29440260 -k3722,291:15168148,29440260:3291874 -k3722,291:18460021,29440260:3291873 -) -(3722,292:6630773,30281748:11829248,505283,102891 -h3722,291:6630773,30281748:0,0,0 -r3722,362:6630773,30281748:0,608174,102891 -g3722,291:7941493,30281748 -g3722,291:7941493,30281748 -g3722,291:11590537,30281748 -k3722,292:15986037,30281748:2473984 -k3722,292:18460021,30281748:2473984 -) -(3722,293:6630773,31123236:11829248,505283,134348 -h3722,292:6630773,31123236:0,0,0 -g3722,292:9071989,31123236 -g3722,292:12087300,31123236 -g3722,292:13477974,31123236 -g3722,292:17257435,31123236 -k3722,293:18257187,31123236:202834 -k3722,293:18460021,31123236:202834 -) -(3722,294:6630773,31964724:11829248,505283,134348 -h3722,293:6630773,31964724:0,0,0 -g3722,293:10093695,31964724 -k3722,293:18460021,31964724:4234281 -) -(3722,294:9252213,32806212:9207808,485622,102891 -g3722,293:13682446,32806212 -k3722,294:16469693,32806212:1990329 -k3722,294:18460021,32806212:1990328 -) -(3722,295:6630773,33647700:11829248,513147,134348 -h3722,294:6630773,33647700:0,0,0 -g3722,294:12608967,33647700 -k3722,295:16132183,33647700:2327839 -k3722,295:18460021,33647700:2327838 -) -(3722,296:6630773,34489188:11829248,485622,102891 -h3722,295:6630773,34489188:0,0,0 -g3722,295:9720795,34489188 -k3722,296:14688097,34489188:3771925 -k3722,296:18460021,34489188:3771924 -) -(3722,297:6630773,35330676:11829248,513147,126483 -h3722,296:6630773,35330676:0,0,0 -r3722,362:6630773,35330676:0,639630,126483 -g3722,296:7941493,35330676 -g3722,296:7941493,35330676 -g3722,296:9088373,35330676 -g3722,296:10876195,35330676 -k3722,297:15265797,35330676:3194225 -k3722,297:18460021,35330676:3194224 -) -(3722,298:6630773,36172164:11829248,513147,134348 -h3722,297:6630773,36172164:0,0,0 -r3722,362:6630773,36172164:0,647495,134348 -g3722,297:7941493,36172164 -g3722,297:7941493,36172164 -g3722,297:10480357,36172164 -g3722,297:11338878,36172164 -g3722,297:13457001,36172164 -k3722,298:16556200,36172164:1903822 -k3722,298:18460021,36172164:1903821 -) -(3722,299:6630773,37013652:11829248,505283,126483 -h3722,298:6630773,37013652:0,0,0 -r3722,362:6630773,37013652:0,631766,126483 -g3722,298:7941493,37013652 -g3722,298:7941493,37013652 -g3722,298:10157265,37013652 -g3722,298:11945087,37013652 -k3722,299:15800243,37013652:2659779 -k3722,299:18460021,37013652:2659778 -) -(3722,300:6630773,37855140:11829248,505283,126483 -h3722,299:6630773,37855140:0,0,0 -r3722,362:6630773,37855140:0,631766,126483 -g3722,299:7941493,37855140 -g3722,299:7941493,37855140 -g3722,299:9830240,37855140 -g3722,299:11618062,37855140 -k3722,300:15636730,37855140:2823291 -k3722,300:18460021,37855140:2823291 -) -(3722,304:6630773,39350366:11829248,485622,102891 -h3722,303:6630773,39350366:0,0,0 -g3722,303:8270483,39350366 -g3722,303:9440300,39350366 -g3722,303:10610117,39350366 -k3722,304:15132758,39350366:3327264 -k3722,304:18460021,39350366:3327263 -) -(3722,305:6630773,40191854:11829248,505283,134348 -h3722,304:6630773,40191854:0,0,0 -g3722,304:8397623,40191854 -g3722,304:11232055,40191854 -g3722,304:12820647,40191854 -g3722,304:15632796,40191854 -k3722,305:18405625,40191854:54396 -k3722,305:18460021,40191854:54396 -) -(3722,306:6630773,41033342:11829248,513147,134348 -h3722,305:6630773,41033342:0,0,0 -r3722,362:6630773,41033342:0,647495,134348 -g3722,305:7941493,41033342 -g3722,305:7941493,41033342 -g3722,305:10832941,41033342 -k3722,306:15244170,41033342:3215852 -k3722,306:18460021,41033342:3215851 -) -(3722,307:6630773,41874830:11829248,485622,134348 -h3722,306:6630773,41874830:0,0,0 -r3722,362:6630773,41874830:0,619970,134348 -g3722,306:7941493,41874830 -g3722,306:7941493,41874830 -g3722,306:11209118,41874830 -k3722,307:15432258,41874830:3027763 -k3722,307:18460021,41874830:3027763 -) -(3722,308:6630773,42716318:11829248,505283,134348 -h3722,307:6630773,42716318:0,0,0 -g3722,307:9748320,42716318 -k3722,308:14701859,42716318:3758162 -k3722,308:18460021,42716318:3758162 -) -(3722,312:6630773,44211543:11829248,505283,102891 -h3722,311:6630773,44211543:0,0,0 -g3722,311:8909459,44211543 -g3722,311:10079276,44211543 -g3722,311:11249093,44211543 -k3722,312:15452246,44211543:3007776 -k3722,312:18460021,44211543:3007775 -) -(3722,316:6630773,45706769:11829248,505283,134348 -h3722,315:6630773,45706769:0,0,0 -k3722,316:14131696,45706769:4328325 -k3722,316:18460021,45706769:4328325 -) -] -k3722,362:19606901,45706769:1146880 -r3722,362:19606901,45706769:0,40242380,134348 -k3722,362:20753781,45706769:1146880 -[3722,362:20753781,45706769:11829248,40108032,134348 -(3722,318:20753781,6254097:11829248,485622,102891 -h3722,316:20753781,6254097:0,0,0 -r3722,362:20753781,6254097:0,588513,102891 -g3722,316:22064501,6254097 -g3722,316:22064501,6254097 -g3722,316:22890909,6254097 -g3722,316:24060726,6254097 -g3722,316:25230543,6254097 -g3722,316:26400360,6254097 -g3722,316:27570177,6254097 -g3722,316:28739994,6254097 -g3722,316:29909811,6254097 -g3722,316:31079628,6254097 -k3722,316:32583029,6254097:532813 -) -(3722,318:23375221,7095585:9207808,485622,102891 -g3722,316:24545038,7095585 -g3722,316:26113314,7095585 -g3722,316:27681590,7095585 -g3722,317:29249866,7095585 -k3722,318:31514136,7095585:1068893 -k3722,318:32583029,7095585:1068893 -) -(3722,319:20753781,7955679:11829248,485622,102891 -h3722,318:20753781,7955679:0,0,0 -r3722,362:20753781,7955679:0,588513,102891 -g3722,318:22064501,7955679 -g3722,318:22064501,7955679 -g3722,318:23720595,7955679 -g3722,318:24890412,7955679 -g3722,318:26060229,7955679 -g3722,318:27230046,7955679 -g3722,318:28399863,7955679 -g3722,318:29569680,7955679 -g3722,318:30739497,7955679 -k3722,318:32583029,7955679:872944 -) -(3722,319:23375221,8797167:9207808,485622,102891 -g3722,318:24943497,8797167 -g3722,318:26511773,8797167 -k3722,319:30145090,8797167:2437940 -k3722,319:32583029,8797167:2437939 -) -(3722,320:20753781,9657260:11829248,485622,102891 -h3722,319:20753781,9657260:0,0,0 -r3722,362:20753781,9657260:0,588513,102891 -g3722,319:22064501,9657260 -g3722,319:22064501,9657260 -g3722,319:24635478,9657260 -k3722,320:29206942,9657260:3376087 -k3722,320:32583029,9657260:3376087 -) -(3722,321:20753781,10517354:11829248,485622,102891 -h3722,320:20753781,10517354:0,0,0 -r3722,362:20753781,10517354:0,588513,102891 -g3722,320:22064501,10517354 -g3722,320:22064501,10517354 -g3722,320:25478271,10517354 -g3722,320:26648088,10517354 -g3722,320:28216364,10517354 -g3722,320:29784640,10517354 -k3722,321:31781523,10517354:801506 -k3722,321:32583029,10517354:801506 -) -(3722,322:20753781,11377447:11829248,485622,102891 -h3722,321:20753781,11377447:0,0,0 -r3722,362:20753781,11377447:0,588513,102891 -g3722,321:22064501,11377447 -g3722,321:22064501,11377447 -g3722,321:24246849,11377447 -g3722,321:25815125,11377447 -k3722,322:29796766,11377447:2786264 -k3722,322:32583029,11377447:2786263 -) -(3722,323:20753781,12237541:11829248,485622,102891 -h3722,322:20753781,12237541:0,0,0 -r3722,362:20753781,12237541:0,588513,102891 -g3722,322:22064501,12237541 -g3722,322:22064501,12237541 -g3722,322:23704211,12237541 -g3722,322:24874028,12237541 -g3722,322:26043845,12237541 -k3722,323:29911126,12237541:2671904 -k3722,323:32583029,12237541:2671903 -) -(3722,324:20753781,13097635:11829248,485622,173670 -h3722,323:20753781,13097635:0,0,0 -r3722,362:20753781,13097635:0,659292,173670 -g3722,323:22064501,13097635 -g3722,323:22064501,13097635 -[3722,323:22193607,13097635:341312,473825,0 -(3722,323:22193607,12959616:341312,335806,0 -) -] -(3722,323:22761873,13271305:370934,473825,0 -) -g3722,323:23854358,13097635 -g3722,323:25024175,13097635 -k3722,324:29401291,13097635:3181739 -k3722,324:32583029,13097635:3181738 -) -(3722,325:20753781,13957728:11829248,505283,102891 -h3722,324:20753781,13957728:0,0,0 -r3722,362:20753781,13957728:0,608174,102891 -g3722,324:22064501,13957728 -g3722,324:22064501,13957728 -g3722,324:25740415,13957728 -g3722,324:26511773,13957728 -g3722,324:27681590,13957728 -g3722,324:29249866,13957728 -k3722,325:31514136,13957728:1068893 -k3722,325:32583029,13957728:1068893 -) -(3722,326:20753781,14817822:11829248,505283,126483 -h3722,325:20753781,14817822:0,0,0 -r3722,362:20753781,14817822:0,631766,126483 -g3722,325:22064501,14817822 -g3722,325:22064501,14817822 -g3722,325:24555524,14817822 -g3722,325:25946198,14817822 -g3722,325:29395357,14817822 -k3722,326:31387652,14817822:1195377 -k3722,326:32583029,14817822:1195377 -) -(3722,327:20753781,15677915:11829248,505283,102891 -h3722,326:20753781,15677915:0,0,0 -r3722,362:20753781,15677915:0,608174,102891 -g3722,326:22064501,15677915 -g3722,326:22064501,15677915 -g3722,326:24381853,15677915 -g3722,326:25551670,15677915 -g3722,326:26721487,15677915 -k3722,327:30050717,15677915:2532312 -k3722,327:32583029,15677915:2532312 -) -(3722,328:20753781,16538009:11829248,505283,102891 -h3722,327:20753781,16538009:0,0,0 -r3722,362:20753781,16538009:0,608174,102891 -g3722,327:22064501,16538009 -g3722,327:22064501,16538009 -g3722,327:23622291,16538009 -k3722,328:28501119,16538009:4081910 -k3722,328:32583029,16538009:4081910 -) -(3722,329:20753781,17398103:11829248,505283,126483 -h3722,328:20753781,17398103:0,0,0 -r3722,362:20753781,17398103:0,631766,126483 -g3722,328:22064501,17398103 -g3722,328:22064501,17398103 -g3722,328:24602054,17398103 -g3722,328:25771871,17398103 -g3722,328:26941688,17398103 -g3722,328:28509964,17398103 -g3722,328:30078240,17398103 -k3722,329:31928323,17398103:654706 -k3722,329:32583029,17398103:654706 -) -(3722,330:20753781,18258196:11829248,505283,102891 -h3722,329:20753781,18258196:0,0,0 -r3722,362:20753781,18258196:0,608174,102891 -g3722,329:22064501,18258196 -g3722,329:22064501,18258196 -g3722,329:22686438,18258196 -g3722,329:26410193,18258196 -g3722,329:27580010,18258196 -k3722,330:30679208,18258196:1903821 -k3722,330:32583029,18258196:1903821 -) -(3722,331:20753781,19118290:11829248,505283,102891 -h3722,330:20753781,19118290:0,0,0 -r3722,362:20753781,19118290:0,608174,102891 -g3722,330:22064501,19118290 -g3722,330:22064501,19118290 -g3722,330:26203099,19118290 -k3722,331:29990753,19118290:2592277 -k3722,331:32583029,19118290:2592276 -) -(3722,332:20753781,19978383:11829248,485622,102891 -h3722,331:20753781,19978383:0,0,0 -r3722,362:20753781,19978383:0,588513,102891 -g3722,331:22064501,19978383 -g3722,331:22064501,19978383 -g3722,331:22790639,19978383 -g3722,331:23960456,19978383 -g3722,331:25130273,19978383 -g3722,331:26698549,19978383 -g3722,331:28266825,19978383 -k3722,332:31022616,19978383:1560414 -k3722,332:32583029,19978383:1560413 -) -(3722,333:20753781,20838477:11829248,505283,102891 -h3722,332:20753781,20838477:0,0,0 -r3722,362:20753781,20838477:0,608174,102891 -g3722,332:22064501,20838477 -g3722,332:22064501,20838477 -g3722,332:24295346,20838477 -k3722,333:28837647,20838477:3745383 -k3722,333:32583029,20838477:3745382 -) -(3722,334:20753781,21698571:11829248,485622,102891 -h3722,333:20753781,21698571:0,0,0 -r3722,362:20753781,21698571:0,588513,102891 -g3722,333:22064501,21698571 -g3722,333:22064501,21698571 -g3722,333:24657104,21698571 -k3722,334:29217755,21698571:3365274 -k3722,334:32583029,21698571:3365274 -) -(3722,335:20753781,22558664:11829248,485622,102891 -h3722,334:20753781,22558664:0,0,0 -r3722,362:20753781,22558664:0,588513,102891 -g3722,334:22064501,22558664 -g3722,334:22064501,22558664 -g3722,334:23761227,22558664 -g3722,334:25329503,22558664 -k3722,335:29553955,22558664:3029075 -k3722,335:32583029,22558664:3029074 -) -(3722,336:20753781,23418758:11829248,485622,102891 -h3722,335:20753781,23418758:0,0,0 -r3722,362:20753781,23418758:0,588513,102891 -g3722,335:22064501,23418758 -g3722,335:22064501,23418758 -g3722,335:24175415,23418758 -k3722,336:28976911,23418758:3606119 -k3722,336:32583029,23418758:3606118 -) -(3722,337:20753781,24278851:11829248,485622,173670 -h3722,336:20753781,24278851:0,0,0 -[3722,336:20882887,24278851:341312,473825,0 -(3722,336:20882887,24140832:341312,335806,0 -) -] -(3722,336:21451153,24452521:370934,473825,0 -) -g3722,336:22543638,24278851 -g3722,336:23713455,24278851 -k3722,337:28745931,24278851:3837099 -k3722,337:32583029,24278851:3837098 -) -(3722,338:20753781,25138945:11829248,505283,102891 -h3722,337:20753781,25138945:0,0,0 -g3722,337:23472214,25138945 -g3722,337:25040490,25138945 -g3722,337:26608766,25138945 -k3722,338:30193586,25138945:2389443 -k3722,338:32583029,25138945:2389443 -) -(3722,339:20753781,25999039:11829248,505283,102891 -h3722,338:20753781,25999039:0,0,0 -g3722,338:24999858,25999039 -g3722,338:26169675,25999039 -g3722,338:27339492,25999039 -g3722,338:28907768,25999039 -g3722,338:30476044,25999039 -k3722,338:32583029,25999039:737938 -) -(3722,339:23375221,26840527:9207808,485622,11795 -k3722,339:28576814,26840527:4006216 -k3722,339:32583029,26840527:4006215 -) -(3722,340:20753781,27700620:11829248,505283,102891 -h3722,339:20753781,27700620:0,0,0 -g3722,339:22765736,27700620 -g3722,339:25456644,27700620 -k3722,340:30379053,27700620:2203976 -k3722,340:32583029,27700620:2203976 -) -(3722,341:20753781,28560714:11829248,513147,126483 -h3722,340:20753781,28560714:0,0,0 -r3722,362:20753781,28560714:0,639630,126483 -g3722,340:22064501,28560714 -g3722,340:22064501,28560714 -g3722,340:24818323,28560714 -g3722,340:25676844,28560714 -g3722,340:29432056,28560714 -k3722,341:31605231,28560714:977798 -k3722,341:32583029,28560714:977798 -) -(3722,342:20753781,29420807:11829248,513147,126483 -h3722,341:20753781,29420807:0,0,0 -r3722,362:20753781,29420807:0,639630,126483 -g3722,341:22064501,29420807 -g3722,341:22064501,29420807 -g3722,341:24818323,29420807 -g3722,341:25676844,29420807 -g3722,341:28703952,29420807 -k3722,342:31241179,29420807:1341850 -k3722,342:32583029,29420807:1341850 -) -(3722,343:20753781,30280901:11829248,485622,102891 -h3722,342:20753781,30280901:0,0,0 -r3722,362:20753781,30280901:0,588513,102891 -g3722,342:22064501,30280901 -g3722,342:22064501,30280901 -g3722,342:25398972,30280901 -k3722,343:30350217,30280901:2232812 -k3722,343:32583029,30280901:2232812 -) -(3722,344:20753781,31140995:11829248,505283,134348 -h3722,343:20753781,31140995:0,0,0 -r3722,362:20753781,31140995:0,639631,134348 -g3722,343:22064501,31140995 -g3722,343:22064501,31140995 -g3722,343:24076456,31140995 -g3722,343:27766132,31140995 -k3722,344:30772269,31140995:1810760 -k3722,344:32583029,31140995:1810760 -) -(3722,345:20753781,32001088:11829248,505283,134348 -h3722,344:20753781,32001088:0,0,0 -r3722,362:20753781,32001088:0,639631,134348 -g3722,344:22064501,32001088 -g3722,344:22064501,32001088 -g3722,344:25836753,32001088 -g3722,344:29526429,32001088 -k3722,345:31652418,32001088:930612 -k3722,345:32583029,32001088:930611 -) -(3722,346:20753781,32861182:11829248,485622,134348 -h3722,345:20753781,32861182:0,0,0 -r3722,362:20753781,32861182:0,619970,134348 -g3722,345:22064501,32861182 -g3722,345:22064501,32861182 -g3722,345:25018864,32861182 -g3722,345:28708540,32861182 -k3722,346:32005001,32861182:578028 -k3722,346:32583029,32861182:578028 -) -(3722,347:20753781,33721275:11829248,513147,134348 -h3722,346:20753781,33721275:0,0,0 -r3722,362:20753781,33721275:0,647495,134348 -k3722,346:22064501,33721275:1310720 -k3722,346:22064501,33721275:0 -k3722,346:25180737,33721275:184811 -k3722,346:26024841,33721275:184812 -k3722,346:28197359,33721275:184811 -k3722,346:29069644,33721275:184812 -k3722,346:31387652,33721275:184811 -k3722,347:32583029,33721275:0 -k3722,347:32583029,33721275:0 -) -(3722,348:20753781,34581369:11829248,513147,134348 -h3722,347:20753781,34581369:0,0,0 -r3722,362:20753781,34581369:0,647495,134348 -g3722,347:22064501,34581369 -g3722,347:22064501,34581369 -g3722,347:25195155,34581369 -g3722,347:26053676,34581369 -g3722,347:29243313,34581369 -k3722,347:32583029,34581369:1206519 -) -(3722,348:23375221,35422857:9207808,485622,11795 -k3722,348:28576814,35422857:4006216 -k3722,348:32583029,35422857:4006215 -) -(3722,349:20753781,36282951:11829248,505283,126483 -h3722,348:20753781,36282951:0,0,0 -r3722,362:20753781,36282951:0,631766,126483 -g3722,348:22064501,36282951 -g3722,348:22064501,36282951 -g3722,348:25254138,36282951 -g3722,348:27192693,36282951 -k3722,349:30485550,36282951:2097480 -k3722,349:32583029,36282951:2097479 -) -(3722,350:20753781,37143044:11829248,513147,126483 -h3722,349:20753781,37143044:0,0,0 -r3722,362:20753781,37143044:0,639630,126483 -g3722,349:22064501,37143044 -g3722,349:22064501,37143044 -g3722,349:23455175,37143044 -g3722,349:27265438,37143044 -g3722,349:28412318,37143044 -$3722,349:28412318,37143044 -(3722,349:28966098,37241358:311689,339935,8258 -) -g3722,349:29459847,37143044 -g3722,349:30210104,37143044 -$3722,349:30608563,37143044 -g3722,349:30981462,37143044 -k3722,350:32379934,37143044:203095 -k3722,350:32583029,37143044:203095 -) -(3722,351:20753781,38003138:11829248,505283,134348 -h3722,350:20753781,38003138:0,0,0 -g3722,350:22765736,38003138 -g3722,350:26455412,38003138 -g3722,350:27621952,38003138 -g3722,350:29633907,38003138 -k3722,350:32583029,38003138:457443 -) -(3722,351:23375221,38844626:9207808,505283,134348 -g3722,350:25387176,38844626 -k3722,351:30643491,38844626:1939538 -k3722,351:32583029,38844626:1939538 -) -(3722,352:20753781,39704719:11829248,485622,102891 -h3722,351:20753781,39704719:0,0,0 -g3722,351:22879768,39704719 -g3722,351:24049585,39704719 -g3722,351:25219402,39704719 -g3722,351:26389219,39704719 -g3722,351:27559036,39704719 -g3722,351:29127312,39704719 -g3722,351:30695588,39704719 -k3722,352:32236997,39704719:346032 -k3722,352:32583029,39704719:346032 -) -(3722,353:20753781,40564813:11829248,513147,134348 -h3722,352:20753781,40564813:0,0,0 -g3722,352:22936785,40564813 -g3722,352:24449356,40564813 -g3722,352:25331470,40564813 -g3722,352:29114208,40564813 -k3722,353:31446307,40564813:1136722 -k3722,353:32583029,40564813:1136722 -) -(3722,354:20753781,41424907:11829248,505283,102891 -h3722,353:20753781,41424907:0,0,0 -g3722,353:22450508,41424907 -k3722,354:28477527,41424907:4105503 -k3722,354:32583029,41424907:4105502 -) -(3722,355:20753781,42285000:11829248,505283,126483 -h3722,354:20753781,42285000:0,0,0 -r3722,362:20753781,42285000:0,631766,126483 -g3722,354:22064501,42285000 -g3722,354:22064501,42285000 -g3722,354:24643998,42285000 -g3722,354:25668325,42285000 -k3722,355:29524136,42285000:3058893 -k3722,355:32583029,42285000:3058893 -) -(3722,356:20753781,43145094:11829248,485622,102891 -h3722,355:20753781,43145094:0,0,0 -r3722,362:20753781,43145094:0,588513,102891 -g3722,355:22064501,43145094 -g3722,355:22064501,43145094 -g3722,355:24656449,43145094 -g3722,355:26123144,43145094 -g3722,355:28473920,43145094 -k3722,356:30926934,43145094:1656096 -k3722,356:32583029,43145094:1656095 -) -(3722,357:20753781,44005187:11829248,513147,7863 -h3722,356:20753781,44005187:0,0,0 -r3722,362:20753781,44005187:0,521010,7863 -g3722,356:22064501,44005187 -g3722,356:22064501,44005187 -g3722,356:24851747,44005187 -g3722,356:26242421,44005187 -g3722,356:29107655,44005187 -k3722,356:32583029,44005187:2816082 -) -(3722,357:23375221,44846675:9207808,505283,102891 -g3722,356:26701828,44846675 -k3722,357:30603187,44846675:1979843 -k3722,357:32583029,44846675:1979842 -) -(3722,358:20753781,45706769:11829248,513147,134348 -h3722,357:20753781,45706769:0,0,0 -r3722,362:20753781,45706769:0,647495,134348 -g3722,357:22064501,45706769 -g3722,357:22064501,45706769 -g3722,357:25494000,45706769 -k3722,358:29436974,45706769:3146056 -k3722,358:32583029,45706769:3146055 -) -] -(3722,362:32583029,45706769:0,355205,126483 -h3722,362:32583029,45706769:420741,355205,126483 -k3722,362:32583029,45706769:-420741 -) -) -] -(3722,362:32583029,45706769:0,0,0 -g3722,362:32583029,45706769 -) -) -] -(3722,362:6630773,47279633:25952256,0,0 -h3722,362:6630773,47279633:25952256,0,0 -) -] -(3722,362:4262630,4025873:0,0,0 -[3722,362:-473656,4025873:0,0,0 -(3722,362:-473656,-710413:0,0,0 -(3722,362:-473656,-710413:0,0,0 -g3722,362:-473656,-710413 -) -g3722,362:-473656,-710413 -) -] -) -] -!28866 -}435 +) +k3763,441:3078556,49800853:-34777008 +) +] +g3763,441:6630773,4812305 +g3763,441:6630773,4812305 +g3763,441:9313817,4812305 +g3763,441:11211739,4812305 +k3763,441:31387651,4812305:20175912 +) +) +] +[3763,441:6630773,45706769:25952256,40108032,0 +(3763,441:6630773,45706769:25952256,40108032,0 +(3763,441:6630773,45706769:0,0,0 +g3763,441:6630773,45706769 +) +[3763,441:6630773,45706769:25952256,40108032,0 +(3763,441:6630773,45706769:25952256,40108032,126483 +[3763,441:6630773,45706769:11829248,40108032,126483 +(3763,351:6630773,6254097:11829248,505283,134348 +h3763,350:6630773,6254097:0,0,0 +g3763,350:8642728,6254097 +g3763,350:12332404,6254097 +g3763,350:13498944,6254097 +g3763,350:15510899,6254097 +k3763,350:18460021,6254097:457443 +) +(3763,351:9252213,7119177:9207808,505283,134348 +g3763,350:11264168,7119177 +k3763,351:16520483,7119177:1939538 +k3763,351:18460021,7119177:1939538 +) +(3763,352:6630773,7984257:11829248,485622,102891 +h3763,351:6630773,7984257:0,0,0 +g3763,351:8756760,7984257 +g3763,351:9926577,7984257 +g3763,351:11096394,7984257 +g3763,351:12266211,7984257 +g3763,351:13436028,7984257 +g3763,351:15004304,7984257 +g3763,351:16572580,7984257 +k3763,352:18113989,7984257:346032 +k3763,352:18460021,7984257:346032 +) +(3763,353:6630773,8849337:11829248,513147,134348 +h3763,352:6630773,8849337:0,0,0 +g3763,352:8813777,8849337 +g3763,352:10326348,8849337 +g3763,352:11208462,8849337 +g3763,352:14991200,8849337 +k3763,353:18084827,8849337:375194 +k3763,353:18460021,8849337:375194 +) +(3763,354:6630773,9714417:11829248,505283,102891 +h3763,353:6630773,9714417:0,0,0 +g3763,353:8327500,9714417 +k3763,354:14354519,9714417:4105503 +k3763,354:18460021,9714417:4105502 +) +(3763,355:6630773,10579497:11829248,505283,126483 +h3763,354:6630773,10579497:0,0,0 +r3763,441:6630773,10579497:0,631766,126483 +g3763,354:7941493,10579497 +g3763,354:7941493,10579497 +g3763,354:10520990,10579497 +g3763,354:11545317,10579497 +k3763,355:15401128,10579497:3058893 +k3763,355:18460021,10579497:3058893 +) +(3763,356:6630773,11444577:11829248,485622,102891 +h3763,355:6630773,11444577:0,0,0 +r3763,441:6630773,11444577:0,588513,102891 +g3763,355:7941493,11444577 +g3763,355:7941493,11444577 +g3763,355:10533441,11444577 +g3763,355:12000136,11444577 +g3763,355:14350912,11444577 +k3763,356:16803926,11444577:1656096 +k3763,356:18460021,11444577:1656095 +) +(3763,357:6630773,12309657:11829248,513147,7863 +h3763,356:6630773,12309657:0,0,0 +r3763,441:6630773,12309657:0,521010,7863 +g3763,356:7941493,12309657 +g3763,356:7941493,12309657 +g3763,356:10728739,12309657 +g3763,356:12119413,12309657 +g3763,356:14984647,12309657 +k3763,356:18460021,12309657:2816082 +) +(3763,357:9252213,13174737:9207808,505283,102891 +g3763,356:12578820,13174737 +k3763,357:16480179,13174737:1979843 +k3763,357:18460021,13174737:1979842 +) +(3763,358:6630773,14039817:11829248,513147,134348 +h3763,357:6630773,14039817:0,0,0 +r3763,441:6630773,14039817:0,647495,134348 +g3763,357:7941493,14039817 +g3763,357:7941493,14039817 +g3763,357:11370992,14039817 +k3763,358:15313966,14039817:3146056 +k3763,358:18460021,14039817:3146055 +) +(3763,359:6630773,14904897:11829248,485622,102891 +h3763,358:6630773,14904897:0,0,0 +r3763,441:6630773,14904897:0,588513,102891 +g3763,358:7941493,14904897 +g3763,358:7941493,14904897 +g3763,358:9979662,14904897 +g3763,358:11620028,14904897 +k3763,359:15438484,14904897:3021538 +k3763,359:18460021,14904897:3021537 +) +(3763,360:6630773,15769977:11829248,505283,102891 +h3763,359:6630773,15769977:0,0,0 +r3763,441:6630773,15769977:0,608174,102891 +g3763,359:7941493,15769977 +g3763,359:7941493,15769977 +g3763,359:10764128,15769977 +g3763,359:14351568,15769977 +k3763,360:17366553,15769977:1093469 +k3763,360:18460021,15769977:1093468 +) +(3763,361:6630773,16635057:11829248,505283,134348 +h3763,360:6630773,16635057:0,0,0 +r3763,441:6630773,16635057:0,639631,134348 +g3763,360:7941493,16635057 +g3763,360:7941493,16635057 +g3763,360:10764128,16635057 +g3763,360:13876432,16635057 +g3763,360:15042972,16635057 +k3763,360:18460021,16635057:1919551 +) +(3763,361:9252213,17500137:9207808,505283,7863 +g3763,360:12074848,17500137 +k3763,361:16874705,17500137:1585316 +k3763,361:18460021,17500137:1585316 +) +(3763,362:6630773,18365217:11829248,505283,102891 +h3763,361:6630773,18365217:0,0,0 +r3763,441:6630773,18365217:0,608174,102891 +g3763,361:7941493,18365217 +g3763,361:7941493,18365217 +g3763,361:10431861,18365217 +k3763,362:15406699,18365217:3053322 +k3763,362:18460021,18365217:3053322 +) +(3763,363:6630773,19230297:11829248,485622,102891 +h3763,362:6630773,19230297:0,0,0 +r3763,441:6630773,19230297:0,588513,102891 +g3763,362:7941493,19230297 +g3763,362:7941493,19230297 +g3763,362:11245818,19230297 +k3763,363:15251379,19230297:3208643 +k3763,363:18460021,19230297:3208642 +) +(3763,364:6630773,20095377:11829248,505283,134348 +h3763,363:6630773,20095377:0,0,0 +g3763,363:9089028,20095377 +g3763,363:13814173,20095377 +k3763,364:16734786,20095377:1725236 +k3763,364:18460021,20095377:1725235 +) +(3763,365:6630773,20960457:11829248,505283,102891 +h3763,364:6630773,20960457:0,0,0 +g3763,364:7932318,20960457 +g3763,364:9098858,20960457 +g3763,364:11110813,20960457 +k3763,365:15944421,20960457:2515600 +k3763,365:18460021,20960457:2515600 +) +(3763,366:6630773,21825537:11829248,505283,102891 +h3763,365:6630773,21825537:0,0,0 +g3763,365:8999243,21825537 +k3763,366:14327321,21825537:4132701 +k3763,366:18460021,21825537:4132700 +) +(3763,367:6630773,22690617:11829248,505283,134348 +h3763,366:6630773,22690617:0,0,0 +g3763,366:8899629,22690617 +g3763,366:12349444,22690617 +k3763,367:15803192,22690617:2656830 +k3763,367:18460021,22690617:2656829 +) +(3763,368:6630773,23555697:11829248,505283,134348 +h3763,367:6630773,23555697:0,0,0 +g3763,367:8899629,23555697 +g3763,367:11109503,23555697 +g3763,367:12500177,23555697 +g3763,367:14208045,23555697 +k3763,367:18460021,23555697:1751122 +) +(3763,368:9252213,24420777:9207808,485622,11795 +k3763,368:14816875,24420777:3643146 +k3763,368:18460021,24420777:3643146 +) +(3763,369:6630773,25285857:11829248,513147,134348 +h3763,368:6630773,25285857:0,0,0 +g3763,368:10212315,25285857 +g3763,368:11602989,25285857 +g3763,368:15073120,25285857 +k3763,368:18460021,25285857:1109525 +) +(3763,369:9252213,26150937:9207808,505283,102891 +g3763,368:11014476,26150937 +k3763,369:15334937,26150937:3125084 +k3763,369:18460021,26150937:3125084 +) +(3763,370:6630773,27016017:11829248,505283,126483 +h3763,369:6630773,27016017:0,0,0 +g3763,369:8748896,27016017 +g3763,369:9915436,27016017 +g3763,369:11372301,27016017 +k3763,370:16274723,27016017:2185299 +k3763,370:18460021,27016017:2185298 +) +(3763,371:6630773,27881097:11829248,513147,102891 +h3763,370:6630773,27881097:0,0,0 +r3763,441:6630773,27881097:0,616038,102891 +g3763,370:7941493,27881097 +g3763,370:7941493,27881097 +g3763,370:9984250,27881097 +g3763,370:14074351,27881097 +g3763,370:17165684,27881097 +k3763,371:18410541,27881097:49480 +k3763,371:18460021,27881097:49480 +) +(3763,372:6630773,28746177:11829248,505283,102891 +h3763,371:6630773,28746177:0,0,0 +r3763,441:6630773,28746177:0,608174,102891 +g3763,371:7941493,28746177 +g3763,371:7941493,28746177 +g3763,371:10431861,28746177 +k3763,372:15043630,28746177:3416392 +k3763,372:18460021,28746177:3416391 +) +(3763,373:6630773,29611257:11829248,513147,126483 +h3763,372:6630773,29611257:0,0,0 +g3763,372:8090259,29611257 +g3763,372:8948780,29611257 +g3763,372:11768138,29611257 +g3763,372:15073118,29611257 +k3763,373:17165029,29611257:1294993 +k3763,373:18460021,29611257:1294992 +) +(3763,374:6630773,30476337:11829248,505283,102891 +h3763,373:6630773,30476337:0,0,0 +g3763,373:10268676,30476337 +g3763,373:11438493,30476337 +g3763,373:13006769,30476337 +k3763,374:16331084,30476337:2128938 +k3763,374:18460021,30476337:2128937 +) +(3763,378:6630773,31865489:11829248,505283,7863 +h3763,377:6630773,31865489:0,0,0 +g3763,377:9517633,31865489 +k3763,378:15626900,31865489:2833122 +k3763,378:18460021,31865489:2833121 +) +(3763,379:6630773,32730569:11829248,485622,126483 +h3763,378:6630773,32730569:0,0,0 +r3763,441:6630773,32730569:0,612105,126483 +g3763,378:7941493,32730569 +g3763,378:7941493,32730569 +g3763,378:11246473,32730569 +k3763,379:15814005,32730569:2646016 +k3763,379:18460021,32730569:2646016 +) +(3763,380:6630773,33595649:11829248,505283,134348 +h3763,379:6630773,33595649:0,0,0 +r3763,441:6630773,33595649:0,639631,134348 +g3763,379:7941493,33595649 +g3763,379:7941493,33595649 +g3763,379:11064283,33595649 +g3763,379:13374427,33595649 +k3763,380:16315683,33595649:2144338 +k3763,380:18460021,33595649:2144338 +) +(3763,381:6630773,34460729:11829248,505283,134348 +h3763,380:6630773,34460729:0,0,0 +g3763,380:10015707,34460729 +g3763,380:11583983,34460729 +g3763,380:13152259,34460729 +g3763,380:14720535,34460729 +g3763,380:16288811,34460729 +k3763,380:18460021,34460729:802163 +) +(3763,381:9252213,35325809:9207808,485622,0 +k3763,381:14453806,35325809:4006216 +k3763,381:18460021,35325809:4006215 +) +(3763,382:6630773,36190889:11829248,505283,126483 +h3763,381:6630773,36190889:0,0,0 +g3763,381:10001945,36190889 +g3763,381:11168485,36190889 +g3763,381:15228440,36190889 +k3763,381:18460021,36190889:676988 +) +(3763,382:9252213,37055969:9207808,513147,7863 +g3763,381:10110734,37055969 +k3763,382:15612482,37055969:2847540 +k3763,382:18460021,37055969:2847539 +) +(3763,383:6630773,37921049:11829248,505283,102891 +h3763,382:6630773,37921049:0,0,0 +g3763,382:10306687,37921049 +g3763,382:11078045,37921049 +g3763,382:12247862,37921049 +g3763,382:13417679,37921049 +g3763,382:14985955,37921049 +k3763,383:17320677,37921049:1139345 +k3763,383:18460021,37921049:1139344 +) +(3763,384:6630773,38786129:11829248,513147,102891 +h3763,383:6630773,38786129:0,0,0 +g3763,383:8477577,38786129 +g3763,383:11876274,38786129 +k3763,384:15566607,38786129:2893415 +k3763,384:18460021,38786129:2893414 +) +(3763,385:6630773,39651209:11829248,505283,126483 +h3763,384:6630773,39651209:0,0,0 +g3763,384:8477577,39651209 +g3763,384:11927392,39651209 +k3763,385:15592166,39651209:2867856 +k3763,385:18460021,39651209:2867855 +) +(3763,386:6630773,40516289:11829248,485622,102891 +h3763,385:6630773,40516289:0,0,0 +g3763,385:9737179,40516289 +k3763,386:15059358,40516289:3400663 +k3763,386:18460021,40516289:3400663 +) +(3763,387:6630773,41381369:11829248,473825,7863 +h3763,386:6630773,41381369:0,0,0 +k3763,387:13589058,41381369:4870963 +k3763,387:18460021,41381369:4870963 +) +(3763,388:6630773,42246449:11829248,505283,102891 +h3763,387:6630773,42246449:0,0,0 +r3763,441:6630773,42246449:0,608174,102891 +g3763,387:7941493,42246449 +g3763,387:7941493,42246449 +g3763,387:11989651,42246449 +k3763,388:15623295,42246449:2836726 +k3763,388:18460021,42246449:2836726 +) +(3763,389:6630773,43111529:11829248,505283,126483 +h3763,388:6630773,43111529:0,0,0 +r3763,441:6630773,43111529:0,631766,126483 +g3763,388:7941493,43111529 +g3763,388:7941493,43111529 +g3763,388:12796400,43111529 +k3763,389:16026670,43111529:2433352 +k3763,389:18460021,43111529:2433351 +) +(3763,390:6630773,43976609:11829248,505283,126483 +h3763,389:6630773,43976609:0,0,0 +r3763,441:6630773,43976609:0,631766,126483 +g3763,389:7941493,43976609 +g3763,389:7941493,43976609 +g3763,389:11545317,43976609 +g3763,389:13138497,43976609 +g3763,389:15819574,43976609 +k3763,390:17538257,43976609:921765 +k3763,390:18460021,43976609:921764 +) +(3763,391:6630773,44841689:11829248,473825,126483 +h3763,390:6630773,44841689:0,0,0 +r3763,441:6630773,44841689:0,600308,126483 +g3763,390:7941493,44841689 +g3763,390:7941493,44841689 +g3763,390:11391308,44841689 +k3763,391:15886423,44841689:2573599 +k3763,391:18460021,44841689:2573598 +) +(3763,392:6630773,45706769:11829248,485622,126483 +h3763,391:6630773,45706769:0,0,0 +r3763,441:6630773,45706769:0,612105,126483 +g3763,391:7941493,45706769 +g3763,391:7941493,45706769 +g3763,391:11453567,45706769 +k3763,392:15355253,45706769:3104768 +k3763,392:18460021,45706769:3104768 +) +] +k3763,441:19606901,45706769:1146880 +r3763,441:19606901,45706769:0,40234515,126483 +k3763,441:20753781,45706769:1146880 +[3763,441:20753781,45706769:11829248,40108032,102891 +(3763,393:20753781,6254097:11829248,505283,102891 +h3763,392:20753781,6254097:0,0,0 +g3763,392:25157799,6254097 +k3763,393:29268873,6254097:3314156 +k3763,393:32583029,6254097:3314156 +) +(3763,394:20753781,7119177:11829248,505283,134348 +h3763,393:20753781,7119177:0,0,0 +g3763,393:22548812,7119177 +g3763,393:23715352,7119177 +g3763,393:29518565,7119177 +k3763,394:32158356,7119177:424674 +k3763,394:32583029,7119177:424673 +) +(3763,395:20753781,7984257:11829248,513147,134348 +h3763,394:20753781,7984257:0,0,0 +g3763,394:23573139,7984257 +g3763,394:25161731,7984257 +g3763,394:26928581,7984257 +g3763,394:28300249,7984257 +k3763,394:32583029,7984257:1967393 +) +(3763,395:23375221,8849337:9207808,485622,11795 +k3763,395:29338342,8849337:3244688 +k3763,395:32583029,8849337:3244687 +) +(3763,396:20753781,9714417:11829248,505283,102891 +h3763,395:20753781,9714417:0,0,0 +g3763,395:23911305,9714417 +k3763,396:28844856,9714417:3738174 +k3763,396:32583029,9714417:3738173 +) +(3763,397:20753781,10579497:11829248,505283,126483 +h3763,396:20753781,10579497:0,0,0 +r3763,441:20753781,10579497:0,631766,126483 +g3763,396:22064501,10579497 +g3763,396:22064501,10579497 +g3763,396:23017394,10579497 +g3763,396:24771792,10579497 +g3763,396:27390610,10579497 +k3763,397:30584508,10579497:1998521 +k3763,397:32583029,10579497:1998521 +) +(3763,398:20753781,11444577:11829248,505283,126483 +h3763,397:20753781,11444577:0,0,0 +g3763,397:26463932,11444577 +g3763,397:29626699,11444577 +k3763,398:31702553,11444577:880477 +k3763,398:32583029,11444577:880476 +) +(3763,399:20753781,12309657:11829248,505283,102891 +h3763,398:20753781,12309657:0,0,0 +g3763,398:26899091,12309657 +k3763,399:30338749,12309657:2244281 +k3763,399:32583029,12309657:2244280 +) +(3763,400:20753781,13174737:11829248,485622,173670 +h3763,399:20753781,13174737:0,0,0 +(3763,399:20753781,13174737:1181614,473825,0 +) +(3763,399:22240333,13348407:355205,473825,0 +) +g3763,399:23296772,13174737 +k3763,400:28537589,13174737:4045440 +k3763,400:32583029,13174737:4045440 +) +(3763,401:20753781,14039817:11829248,513147,102891 +h3763,400:20753781,14039817:0,0,0 +g3763,400:22940717,14039817 +g3763,400:26187370,14039817 +k3763,401:30744416,14039817:1838613 +k3763,401:32583029,14039817:1838613 +) +(3763,402:20753781,14904897:11829248,505283,126483 +h3763,401:20753781,14904897:0,0,0 +r3763,441:20753781,14904897:0,631766,126483 +g3763,401:22064501,14904897 +g3763,401:22064501,14904897 +g3763,401:26693308,14904897 +k3763,402:30235857,14904897:2347172 +k3763,402:32583029,14904897:2347172 +) +(3763,403:20753781,15769977:11829248,505283,7863 +h3763,402:20753781,15769977:0,0,0 +k3763,403:27827409,15769977:4755620 +k3763,403:32583029,15769977:4755620 +) +(3763,404:20753781,16635057:11829248,505283,134348 +h3763,403:20753781,16635057:0,0,0 +r3763,441:20753781,16635057:0,639631,134348 +g3763,403:22064501,16635057 +g3763,403:22064501,16635057 +g3763,403:25956028,16635057 +g3763,403:28141653,16635057 +k3763,404:32583029,16635057:3474065 +) +(3763,404:23375221,17500137:9207808,505283,134348 +g3763,403:27266748,17500137 +g3763,403:29278703,17500137 +k3763,404:32089870,17500137:493159 +k3763,404:32583029,17500137:493159 +) +(3763,405:20753781,18365217:11829248,505283,102891 +h3763,404:20753781,18365217:0,0,0 +r3763,441:20753781,18365217:0,608174,102891 +g3763,404:22064501,18365217 +g3763,404:22064501,18365217 +g3763,404:24250126,18365217 +g3763,404:25416666,18365217 +g3763,404:27428621,18365217 +k3763,405:31164829,18365217:1418200 +k3763,405:32583029,18365217:1418200 +) +(3763,406:20753781,19230297:11829248,505283,102891 +h3763,405:20753781,19230297:0,0,0 +r3763,441:20753781,19230297:0,608174,102891 +k3763,405:22064501,19230297:1310720 +k3763,405:22064501,19230297:0 +k3763,405:25674661,19230297:186559 +k3763,405:26828532,19230297:186560 +k3763,405:30265021,19230297:186559 +k3763,406:32583029,19230297:0 +k3763,406:32583029,19230297:0 +) +(3763,407:20753781,20095377:11829248,538806,102891 +h3763,406:20753781,20095377:0,0,0 +r3763,441:20753781,20095377:0,641697,102891 +g3763,406:22064501,20095377 +g3763,406:22064501,20095377 +g3763,406:26171882,20095377 +k3763,407:29975144,20095377:2607885 +k3763,407:32583029,20095377:2607885 +) +(3763,408:20753781,20960457:11829248,513147,134348 +h3763,407:20753781,20960457:0,0,0 +g3763,407:23271018,20960457 +g3763,407:25578540,20960457 +k3763,408:30440001,20960457:2143028 +k3763,408:32583029,20960457:2143028 +) +(3763,409:20753781,21825537:11829248,505283,102891 +h3763,408:20753781,21825537:0,0,0 +g3763,408:23904096,21825537 +g3763,408:25472372,21825537 +g3763,408:27040648,21825537 +g3763,408:28608924,21825537 +g3763,408:30177200,21825537 +k3763,408:32583029,21825537:1036782 +) +(3763,409:23375221,22690617:9207808,485622,11795 +k3763,409:28576814,22690617:4006216 +k3763,409:32583029,22690617:4006215 +) +(3763,410:20753781,23555697:11829248,505283,102891 +h3763,409:20753781,23555697:0,0,0 +g3763,409:25066704,23555697 +g3763,409:26236521,23555697 +g3763,409:27406338,23555697 +g3763,409:28576155,23555697 +g3763,409:30144431,23555697 +k3763,409:32583029,23555697:1069551 +) +(3763,410:23375221,24420777:9207808,485622,102891 +g3763,409:24943497,24420777 +g3763,409:26511773,24420777 +k3763,410:30145090,24420777:2437940 +k3763,410:32583029,24420777:2437939 +) +(3763,411:20753781,25285857:11829248,505283,134348 +h3763,410:20753781,25285857:0,0,0 +g3763,410:26556994,25285857 +g3763,410:29145010,25285857 +k3763,411:32223236,25285857:359793 +k3763,411:32583029,25285857:359793 +) +(3763,412:20753781,26150937:11829248,513147,126483 +h3763,411:20753781,26150937:0,0,0 +g3763,411:24813736,26150937 +g3763,411:27567558,26150937 +g3763,411:28426079,26150937 +k3763,411:32583029,26150937:1329071 +) +(3763,412:23375221,27016017:9207808,485622,11795 +k3763,412:29338342,27016017:3244688 +k3763,412:32583029,27016017:3244687 +) +(3763,413:20753781,27881097:11829248,505283,102891 +h3763,412:20753781,27881097:0,0,0 +g3763,412:24813736,27881097 +g3763,412:27971260,27881097 +k3763,413:31636361,27881097:946668 +k3763,413:32583029,27881097:946668 +) +(3763,417:20753781,29270249:11829248,505283,7863 +h3763,416:20753781,29270249:0,0,0 +g3763,416:23111766,29270249 +k3763,417:29001487,29270249:3581543 +k3763,417:32583029,29270249:3581542 +) +(3763,418:20753781,30135329:11829248,505283,134348 +h3763,417:20753781,30135329:0,0,0 +r3763,441:20753781,30135329:0,639631,134348 +g3763,417:22064501,30135329 +g3763,417:22064501,30135329 +g3763,417:25071292,30135329 +g3763,417:26838142,30135329 +k3763,418:30308274,30135329:2274755 +k3763,418:32583029,30135329:2274755 +) +(3763,419:20753781,31000409:11829248,505283,134348 +h3763,418:20753781,31000409:0,0,0 +g3763,418:23021326,31000409 +g3763,418:24412000,31000409 +g3763,418:27254296,31000409 +k3763,419:30516351,31000409:2066678 +k3763,419:32583029,31000409:2066678 +) +(3763,420:20753781,31865489:11829248,477757,126483 +h3763,419:20753781,31865489:0,0,0 +g3763,419:24982819,31865489 +k3763,420:29380613,31865489:3202417 +k3763,420:32583029,31865489:3202416 +) +(3763,421:20753781,32730569:11829248,485622,102891 +h3763,420:20753781,32730569:0,0,0 +g3763,420:22781464,32730569 +k3763,421:28279935,32730569:4303094 +k3763,421:32583029,32730569:4303094 +) +(3763,422:20753781,33595649:11829248,513147,102891 +h3763,421:20753781,33595649:0,0,0 +g3763,421:23350972,33595649 +g3763,421:24919248,33595649 +k3763,422:29348827,33595649:3234202 +k3763,422:32583029,33595649:3234202 +) +(3763,423:20753781,34460729:11829248,505283,126483 +h3763,422:20753781,34460729:0,0,0 +g3763,422:23070478,34460729 +g3763,422:25986830,34460729 +g3763,422:28104953,34460729 +k3763,423:30941680,34460729:1641350 +k3763,423:32583029,34460729:1641349 +) +(3763,424:20753781,35325809:11829248,485622,102891 +h3763,423:20753781,35325809:0,0,0 +g3763,423:23516778,35325809 +g3763,423:25085054,35325809 +g3763,423:26653330,35325809 +k3763,424:30215868,35325809:2367161 +k3763,424:32583029,35325809:2367161 +) +(3763,425:20753781,36190889:11829248,485622,126483 +h3763,424:20753781,36190889:0,0,0 +g3763,424:24374645,36190889 +k3763,425:28678067,36190889:3904963 +k3763,425:32583029,36190889:3904962 +) +(3763,426:20753781,37055969:11829248,505283,126483 +h3763,425:20753781,37055969:0,0,0 +g3763,425:23568552,37055969 +g3763,425:26774573,37055969 +k3763,426:29878031,37055969:2704999 +k3763,426:32583029,37055969:2704998 +) +(3763,427:20753781,37921049:11829248,505283,102891 +h3763,426:20753781,37921049:0,0,0 +g3763,426:23113732,37921049 +k3763,427:28446069,37921049:4136960 +k3763,427:32583029,37921049:4136960 +) +(3763,428:20753781,38786129:11829248,505283,102891 +h3763,427:20753781,38786129:0,0,0 +g3763,427:22339096,38786129 +g3763,427:23505636,38786129 +g3763,427:26954795,38786129 +k3763,428:30927916,38786129:1655113 +k3763,428:32583029,38786129:1655113 +) +(3763,429:20753781,39651209:11829248,505283,102891 +h3763,428:20753781,39651209:0,0,0 +g3763,428:24202940,39651209 +g3763,428:26893848,39651209 +k3763,429:31097655,39651209:1485374 +k3763,429:32583029,39651209:1485374 +) +(3763,430:20753781,40516289:11829248,505283,102891 +h3763,429:20753781,40516289:0,0,0 +g3763,429:23309029,40516289 +g3763,429:27463356,40516289 +k3763,430:30620881,40516289:1962148 +k3763,430:32583029,40516289:1962148 +) +(3763,431:20753781,41381369:11829248,505283,126483 +h3763,430:20753781,41381369:0,0,0 +g3763,430:23811035,41381369 +k3763,431:28794721,41381369:3788309 +k3763,431:32583029,41381369:3788308 +) +(3763,432:20753781,42246449:11829248,505283,7863 +h3763,431:20753781,42246449:0,0,0 +k3763,432:28076446,42246449:4506583 +k3763,432:32583029,42246449:4506583 +) +(3763,433:20753781,43111529:11829248,505283,102891 +h3763,432:20753781,43111529:0,0,0 +r3763,441:20753781,43111529:0,608174,102891 +g3763,432:22064501,43111529 +g3763,432:22064501,43111529 +g3763,432:24620405,43111529 +k3763,433:29000176,43111529:3582853 +k3763,433:32583029,43111529:3582853 +) +(3763,434:20753781,43976609:11829248,513147,134348 +h3763,433:20753781,43976609:0,0,0 +r3763,441:20753781,43976609:0,647495,134348 +g3763,433:22064501,43976609 +g3763,433:22064501,43976609 +g3763,433:24695771,43976609 +g3763,433:26756878,43976609 +k3763,434:30068413,43976609:2514617 +k3763,434:32583029,43976609:2514616 +) +(3763,435:20753781,44841689:11829248,485622,134348 +h3763,434:20753781,44841689:0,0,0 +r3763,441:20753781,44841689:0,619970,134348 +g3763,434:22064501,44841689 +g3763,434:22064501,44841689 +g3763,434:24667591,44841689 +k3763,435:29023769,44841689:3559260 +k3763,435:32583029,44841689:3559260 +) +(3763,436:20753781,45706769:11829248,505283,102891 +h3763,435:20753781,45706769:0,0,0 +r3763,441:20753781,45706769:0,608174,102891 +g3763,435:22064501,45706769 +g3763,435:22064501,45706769 +g3763,435:24320250,45706769 +k3763,436:28850099,45706769:3732931 +k3763,436:32583029,45706769:3732930 +) +] +(3763,441:32583029,45706769:0,355205,126483 +h3763,441:32583029,45706769:420741,355205,126483 +k3763,441:32583029,45706769:-420741 +) +) +] +(3763,441:32583029,45706769:0,0,0 +g3763,441:32583029,45706769 +) +) +] +(3763,441:6630773,47279633:25952256,0,0 +h3763,441:6630773,47279633:25952256,0,0 +) +] +(3763,441:4262630,4025873:0,0,0 +[3763,441:-473656,4025873:0,0,0 +(3763,441:-473656,-710413:0,0,0 +(3763,441:-473656,-710413:0,0,0 +g3763,441:-473656,-710413 +) +g3763,441:-473656,-710413 +) +] +) +] +!25538 +}418 !12 -{436 -[3722,454:4262630,47279633:28320399,43253760,0 -(3722,454:4262630,4025873:0,0,0 -[3722,454:-473656,4025873:0,0,0 -(3722,454:-473656,-710413:0,0,0 -(3722,454:-473656,-644877:0,0,0 -k3722,454:-473656,-644877:-65536 +{419 +[3763,527:4262630,47279633:28320399,43253760,0 +(3763,527:4262630,4025873:0,0,0 +[3763,527:-473656,4025873:0,0,0 +(3763,527:-473656,-710413:0,0,0 +(3763,527:-473656,-644877:0,0,0 +k3763,527:-473656,-644877:-65536 ) -(3722,454:-473656,4736287:0,0,0 -k3722,454:-473656,4736287:5209943 +(3763,527:-473656,4736287:0,0,0 +k3763,527:-473656,4736287:5209943 ) -g3722,454:-473656,-710413 +g3763,527:-473656,-710413 ) ] ) -[3722,454:6630773,47279633:25952256,43253760,0 -[3722,454:6630773,4812305:25952256,786432,0 -(3722,454:6630773,4812305:25952256,505283,11795 -(3722,454:6630773,4812305:25952256,505283,11795 -g3722,454:3078558,4812305 -[3722,454:3078558,4812305:0,0,0 -(3722,454:3078558,2439708:0,1703936,0 -k3722,454:1358238,2439708:-1720320 -(3722,1:1358238,2439708:1720320,1703936,0 -(3722,1:1358238,2439708:1179648,16384,0 -r3722,454:2537886,2439708:1179648,16384,0 +[3763,527:6630773,47279633:25952256,43253760,0 +[3763,527:6630773,4812305:25952256,786432,0 +(3763,527:6630773,4812305:25952256,505283,11795 +(3763,527:6630773,4812305:25952256,505283,11795 +g3763,527:3078558,4812305 +[3763,527:3078558,4812305:0,0,0 +(3763,527:3078558,2439708:0,1703936,0 +k3763,527:1358238,2439708:-1720320 +(3763,1:1358238,2439708:1720320,1703936,0 +(3763,1:1358238,2439708:1179648,16384,0 +r3763,527:2537886,2439708:1179648,16384,0 ) -g3722,1:3062174,2439708 -(3722,1:3062174,2439708:16384,1703936,0 -[3722,1:3062174,2439708:25952256,1703936,0 -(3722,1:3062174,1915420:25952256,1179648,0 -(3722,1:3062174,1915420:16384,1179648,0 -r3722,454:3078558,1915420:16384,1179648,0 +g3763,1:3062174,2439708 +(3763,1:3062174,2439708:16384,1703936,0 +[3763,1:3062174,2439708:25952256,1703936,0 +(3763,1:3062174,1915420:25952256,1179648,0 +(3763,1:3062174,1915420:16384,1179648,0 +r3763,527:3078558,1915420:16384,1179648,0 ) -k3722,1:29014430,1915420:25935872 -g3722,1:29014430,1915420 +k3763,1:29014430,1915420:25935872 +g3763,1:29014430,1915420 ) ] ) ) ) ] -[3722,454:3078558,4812305:0,0,0 -(3722,454:3078558,2439708:0,1703936,0 -g3722,454:29030814,2439708 -g3722,454:36135244,2439708 -(3722,1:36135244,2439708:1720320,1703936,0 -(3722,1:36135244,2439708:16384,1703936,0 -[3722,1:36135244,2439708:25952256,1703936,0 -(3722,1:36135244,1915420:25952256,1179648,0 -(3722,1:36135244,1915420:16384,1179648,0 -r3722,454:36151628,1915420:16384,1179648,0 +[3763,527:3078558,4812305:0,0,0 +(3763,527:3078558,2439708:0,1703936,0 +g3763,527:29030814,2439708 +g3763,527:36135244,2439708 +(3763,1:36135244,2439708:1720320,1703936,0 +(3763,1:36135244,2439708:16384,1703936,0 +[3763,1:36135244,2439708:25952256,1703936,0 +(3763,1:36135244,1915420:25952256,1179648,0 +(3763,1:36135244,1915420:16384,1179648,0 +r3763,527:36151628,1915420:16384,1179648,0 ) -k3722,1:62087500,1915420:25935872 -g3722,1:62087500,1915420 +k3763,1:62087500,1915420:25935872 +g3763,1:62087500,1915420 ) ] ) -g3722,1:36675916,2439708 -(3722,1:36675916,2439708:1179648,16384,0 -r3722,454:37855564,2439708:1179648,16384,0 +g3763,1:36675916,2439708 +(3763,1:36675916,2439708:1179648,16384,0 +r3763,527:37855564,2439708:1179648,16384,0 ) ) -k3722,454:3078556,2439708:-34777008 +k3763,527:3078556,2439708:-34777008 ) ] -[3722,454:3078558,4812305:0,0,0 -(3722,454:3078558,49800853:0,16384,2228224 -k3722,454:1358238,49800853:-1720320 -(3722,1:1358238,49800853:1720320,16384,2228224 -(3722,1:1358238,49800853:1179648,16384,0 -r3722,454:2537886,49800853:1179648,16384,0 +[3763,527:3078558,4812305:0,0,0 +(3763,527:3078558,49800853:0,16384,2228224 +k3763,527:1358238,49800853:-1720320 +(3763,1:1358238,49800853:1720320,16384,2228224 +(3763,1:1358238,49800853:1179648,16384,0 +r3763,527:2537886,49800853:1179648,16384,0 ) -g3722,1:3062174,49800853 -(3722,1:3062174,52029077:16384,1703936,0 -[3722,1:3062174,52029077:25952256,1703936,0 -(3722,1:3062174,51504789:25952256,1179648,0 -(3722,1:3062174,51504789:16384,1179648,0 -r3722,454:3078558,51504789:16384,1179648,0 +g3763,1:3062174,49800853 +(3763,1:3062174,52029077:16384,1703936,0 +[3763,1:3062174,52029077:25952256,1703936,0 +(3763,1:3062174,51504789:25952256,1179648,0 +(3763,1:3062174,51504789:16384,1179648,0 +r3763,527:3078558,51504789:16384,1179648,0 ) -k3722,1:29014430,51504789:25935872 -g3722,1:29014430,51504789 +k3763,1:29014430,51504789:25935872 +g3763,1:29014430,51504789 ) ] ) ) ) ] -[3722,454:3078558,4812305:0,0,0 -(3722,454:3078558,49800853:0,16384,2228224 -g3722,454:29030814,49800853 -g3722,454:36135244,49800853 -(3722,1:36135244,49800853:1720320,16384,2228224 -(3722,1:36135244,52029077:16384,1703936,0 -[3722,1:36135244,52029077:25952256,1703936,0 -(3722,1:36135244,51504789:25952256,1179648,0 -(3722,1:36135244,51504789:16384,1179648,0 -r3722,454:36151628,51504789:16384,1179648,0 +[3763,527:3078558,4812305:0,0,0 +(3763,527:3078558,49800853:0,16384,2228224 +g3763,527:29030814,49800853 +g3763,527:36135244,49800853 +(3763,1:36135244,49800853:1720320,16384,2228224 +(3763,1:36135244,52029077:16384,1703936,0 +[3763,1:36135244,52029077:25952256,1703936,0 +(3763,1:36135244,51504789:25952256,1179648,0 +(3763,1:36135244,51504789:16384,1179648,0 +r3763,527:36151628,51504789:16384,1179648,0 ) -k3722,1:62087500,51504789:25935872 -g3722,1:62087500,51504789 +k3763,1:62087500,51504789:25935872 +g3763,1:62087500,51504789 ) ] ) -g3722,1:36675916,49800853 -(3722,1:36675916,49800853:1179648,16384,0 -r3722,454:37855564,49800853:1179648,16384,0 +g3763,1:36675916,49800853 +(3763,1:36675916,49800853:1179648,16384,0 +r3763,527:37855564,49800853:1179648,16384,0 ) ) -k3722,454:3078556,49800853:-34777008 +k3763,527:3078556,49800853:-34777008 ) -] -g3722,454:6630773,4812305 -g3722,454:6630773,4812305 -g3722,454:9313817,4812305 -g3722,454:11211739,4812305 -k3722,454:31387651,4812305:20175912 -) -) -] -[3722,454:6630773,45706769:25952256,40108032,0 -(3722,454:6630773,45706769:25952256,40108032,0 -(3722,454:6630773,45706769:0,0,0 -g3722,454:6630773,45706769 -) -[3722,454:6630773,45706769:25952256,40108032,0 -(3722,454:6630773,45706769:25952256,40108032,126483 -[3722,454:6630773,45706769:11829248,40108032,7863 -(3722,359:6630773,6254097:11829248,485622,102891 -h3722,358:6630773,6254097:0,0,0 -r3722,454:6630773,6254097:0,588513,102891 -g3722,358:7941493,6254097 -g3722,358:7941493,6254097 -g3722,358:9979662,6254097 -g3722,358:11620028,6254097 -k3722,359:15438484,6254097:3021538 -k3722,359:18460021,6254097:3021537 -) -(3722,360:6630773,7097126:11829248,505283,102891 -h3722,359:6630773,7097126:0,0,0 -r3722,454:6630773,7097126:0,608174,102891 -g3722,359:7941493,7097126 -g3722,359:7941493,7097126 -g3722,359:10764128,7097126 -g3722,359:14351568,7097126 -k3722,360:17366553,7097126:1093469 -k3722,360:18460021,7097126:1093468 -) -(3722,361:6630773,7940155:11829248,505283,134348 -h3722,360:6630773,7940155:0,0,0 -r3722,454:6630773,7940155:0,639631,134348 -g3722,360:7941493,7940155 -g3722,360:7941493,7940155 -g3722,360:10764128,7940155 -g3722,360:13876432,7940155 -g3722,360:15042972,7940155 -k3722,360:18460021,7940155:1919551 -) -(3722,361:9252213,8781643:9207808,505283,7863 -g3722,360:12074848,8781643 -k3722,361:16874705,8781643:1585316 -k3722,361:18460021,8781643:1585316 -) -(3722,362:6630773,9624672:11829248,505283,102891 -h3722,361:6630773,9624672:0,0,0 -r3722,454:6630773,9624672:0,608174,102891 -g3722,361:7941493,9624672 -g3722,361:7941493,9624672 -g3722,361:10431861,9624672 -k3722,362:15406699,9624672:3053322 -k3722,362:18460021,9624672:3053322 -) -(3722,363:6630773,10467701:11829248,485622,102891 -h3722,362:6630773,10467701:0,0,0 -r3722,454:6630773,10467701:0,588513,102891 -g3722,362:7941493,10467701 -g3722,362:7941493,10467701 -g3722,362:11245818,10467701 -k3722,363:15251379,10467701:3208643 -k3722,363:18460021,10467701:3208642 -) -(3722,364:6630773,11310730:11829248,505283,134348 -h3722,363:6630773,11310730:0,0,0 -g3722,363:9089028,11310730 -g3722,363:13814173,11310730 -k3722,364:16734786,11310730:1725236 -k3722,364:18460021,11310730:1725235 -) -(3722,365:6630773,12153759:11829248,505283,102891 -h3722,364:6630773,12153759:0,0,0 -g3722,364:7932318,12153759 -g3722,364:9098858,12153759 -g3722,364:11110813,12153759 -k3722,365:15944421,12153759:2515600 -k3722,365:18460021,12153759:2515600 -) -(3722,366:6630773,12996788:11829248,505283,102891 -h3722,365:6630773,12996788:0,0,0 -g3722,365:8999243,12996788 -k3722,366:14327321,12996788:4132701 -k3722,366:18460021,12996788:4132700 -) -(3722,367:6630773,13839817:11829248,505283,134348 -h3722,366:6630773,13839817:0,0,0 -g3722,366:8899629,13839817 -g3722,366:12349444,13839817 -k3722,367:15803192,13839817:2656830 -k3722,367:18460021,13839817:2656829 -) -(3722,368:6630773,14682846:11829248,505283,134348 -h3722,367:6630773,14682846:0,0,0 -g3722,367:8899629,14682846 -g3722,367:11109503,14682846 -g3722,367:12500177,14682846 -g3722,367:14208045,14682846 -k3722,367:18460021,14682846:1751122 -) -(3722,368:9252213,15524334:9207808,485622,11795 -k3722,368:14816875,15524334:3643146 -k3722,368:18460021,15524334:3643146 -) -(3722,369:6630773,16367363:11829248,513147,134348 -h3722,368:6630773,16367363:0,0,0 -g3722,368:10212315,16367363 -g3722,368:11602989,16367363 -g3722,368:15073120,16367363 -k3722,368:18460021,16367363:1109525 -) -(3722,369:9252213,17208851:9207808,505283,102891 -g3722,368:11014476,17208851 -k3722,369:15334937,17208851:3125084 -k3722,369:18460021,17208851:3125084 -) -(3722,370:6630773,18051880:11829248,505283,126483 -h3722,369:6630773,18051880:0,0,0 -g3722,369:8748896,18051880 -g3722,369:9915436,18051880 -g3722,369:11372301,18051880 -k3722,370:16274723,18051880:2185299 -k3722,370:18460021,18051880:2185298 -) -(3722,371:6630773,18894909:11829248,513147,102891 -h3722,370:6630773,18894909:0,0,0 -r3722,454:6630773,18894909:0,616038,102891 -g3722,370:7941493,18894909 -g3722,370:7941493,18894909 -g3722,370:9984250,18894909 -g3722,370:14074351,18894909 -g3722,370:17165684,18894909 -k3722,371:18410541,18894909:49480 -k3722,371:18460021,18894909:49480 -) -(3722,372:6630773,19737938:11829248,505283,102891 -h3722,371:6630773,19737938:0,0,0 -r3722,454:6630773,19737938:0,608174,102891 -g3722,371:7941493,19737938 -g3722,371:7941493,19737938 -g3722,371:10431861,19737938 -k3722,372:15043630,19737938:3416392 -k3722,372:18460021,19737938:3416391 -) -(3722,373:6630773,20580967:11829248,513147,126483 -h3722,372:6630773,20580967:0,0,0 -g3722,372:8090259,20580967 -g3722,372:8948780,20580967 -g3722,372:11768138,20580967 -g3722,372:15073118,20580967 -k3722,373:17165029,20580967:1294993 -k3722,373:18460021,20580967:1294992 -) -(3722,374:6630773,21423996:11829248,505283,102891 -h3722,373:6630773,21423996:0,0,0 -g3722,373:10268676,21423996 -g3722,373:11836952,21423996 -k3722,374:15746175,21423996:2713846 -k3722,374:18460021,21423996:2713846 -) -(3722,378:6630773,22948068:11829248,505283,7863 -h3722,377:6630773,22948068:0,0,0 -g3722,377:9517633,22948068 -k3722,378:15626900,22948068:2833122 -k3722,378:18460021,22948068:2833121 -) -(3722,379:6630773,23791097:11829248,485622,126483 -h3722,378:6630773,23791097:0,0,0 -r3722,454:6630773,23791097:0,612105,126483 -g3722,378:7941493,23791097 -g3722,378:7941493,23791097 -g3722,378:11246473,23791097 -k3722,379:15814005,23791097:2646016 -k3722,379:18460021,23791097:2646016 -) -(3722,380:6630773,24634126:11829248,505283,134348 -h3722,379:6630773,24634126:0,0,0 -r3722,454:6630773,24634126:0,639631,134348 -g3722,379:7941493,24634126 -g3722,379:7941493,24634126 -g3722,379:11064283,24634126 -g3722,379:13374427,24634126 -k3722,380:16315683,24634126:2144338 -k3722,380:18460021,24634126:2144338 -) -(3722,381:6630773,25477155:11829248,505283,134348 -h3722,380:6630773,25477155:0,0,0 -g3722,380:10015707,25477155 -g3722,380:11583983,25477155 -g3722,380:14675316,25477155 -k3722,381:17165357,25477155:1294664 -k3722,381:18460021,25477155:1294664 -) -(3722,382:6630773,26320184:11829248,505283,126483 -h3722,381:6630773,26320184:0,0,0 -g3722,381:10001945,26320184 -g3722,381:11168485,26320184 -g3722,381:15228440,26320184 -k3722,381:18460021,26320184:676988 -) -(3722,382:9252213,27161672:9207808,513147,7863 -g3722,381:10110734,27161672 -k3722,382:15612482,27161672:2847540 -k3722,382:18460021,27161672:2847539 -) -(3722,383:6630773,28004701:11829248,505283,102891 -h3722,382:6630773,28004701:0,0,0 -g3722,382:10306687,28004701 -g3722,382:11078045,28004701 -g3722,382:12247862,28004701 -g3722,382:13816138,28004701 -k3722,383:16735768,28004701:1724253 -k3722,383:18460021,28004701:1724253 -) -(3722,384:6630773,28847730:11829248,513147,102891 -h3722,383:6630773,28847730:0,0,0 -g3722,383:8477577,28847730 -g3722,383:11876274,28847730 -k3722,384:15566607,28847730:2893415 -k3722,384:18460021,28847730:2893414 -) -(3722,385:6630773,29690759:11829248,505283,126483 -h3722,384:6630773,29690759:0,0,0 -g3722,384:8477577,29690759 -g3722,384:11927392,29690759 -k3722,385:15592166,29690759:2867856 -k3722,385:18460021,29690759:2867855 -) -(3722,386:6630773,30533788:11829248,485622,102891 -h3722,385:6630773,30533788:0,0,0 -g3722,385:9737179,30533788 -k3722,386:15059358,30533788:3400663 -k3722,386:18460021,30533788:3400663 -) -(3722,387:6630773,31376817:11829248,473825,7863 -h3722,386:6630773,31376817:0,0,0 -k3722,387:13589058,31376817:4870963 -k3722,387:18460021,31376817:4870963 -) -(3722,388:6630773,32219846:11829248,505283,102891 -h3722,387:6630773,32219846:0,0,0 -r3722,454:6630773,32219846:0,608174,102891 -g3722,387:7941493,32219846 -g3722,387:7941493,32219846 -g3722,387:11989651,32219846 -k3722,388:15623295,32219846:2836726 -k3722,388:18460021,32219846:2836726 -) -(3722,389:6630773,33062875:11829248,505283,126483 -h3722,388:6630773,33062875:0,0,0 -r3722,454:6630773,33062875:0,631766,126483 -g3722,388:7941493,33062875 -g3722,388:7941493,33062875 -g3722,388:12796400,33062875 -k3722,389:16026670,33062875:2433352 -k3722,389:18460021,33062875:2433351 -) -(3722,390:6630773,33905904:11829248,505283,126483 -h3722,389:6630773,33905904:0,0,0 -r3722,454:6630773,33905904:0,631766,126483 -g3722,389:7941493,33905904 -g3722,389:7941493,33905904 -g3722,389:11545317,33905904 -g3722,389:13138497,33905904 -g3722,389:15819574,33905904 -k3722,390:17538257,33905904:921765 -k3722,390:18460021,33905904:921764 -) -(3722,391:6630773,34748933:11829248,485622,126483 -h3722,390:6630773,34748933:0,0,0 -r3722,454:6630773,34748933:0,612105,126483 -g3722,390:7941493,34748933 -g3722,390:7941493,34748933 -g3722,390:11391308,34748933 -k3722,391:15886423,34748933:2573599 -k3722,391:18460021,34748933:2573598 -) -(3722,392:6630773,35591962:11829248,485622,126483 -h3722,391:6630773,35591962:0,0,0 -r3722,454:6630773,35591962:0,612105,126483 -g3722,391:7941493,35591962 -g3722,391:7941493,35591962 -g3722,391:11453567,35591962 -k3722,392:15355253,35591962:3104768 -k3722,392:18460021,35591962:3104768 -) -(3722,393:6630773,36434991:11829248,505283,102891 -h3722,392:6630773,36434991:0,0,0 -g3722,392:11034791,36434991 -k3722,393:15145865,36434991:3314156 -k3722,393:18460021,36434991:3314156 -) -(3722,394:6630773,37278020:11829248,505283,134348 -h3722,393:6630773,37278020:0,0,0 -g3722,393:8425804,37278020 -g3722,393:9592344,37278020 -g3722,393:15395557,37278020 -k3722,394:18035348,37278020:424674 -k3722,394:18460021,37278020:424673 -) -(3722,395:6630773,38121049:11829248,513147,134348 -h3722,394:6630773,38121049:0,0,0 -g3722,394:9450131,38121049 -g3722,394:11038723,38121049 -g3722,394:12805573,38121049 -g3722,394:14177241,38121049 -k3722,394:18460021,38121049:1967393 -) -(3722,395:9252213,38962537:9207808,485622,11795 -k3722,395:15215334,38962537:3244688 -k3722,395:18460021,38962537:3244687 -) -(3722,396:6630773,39805566:11829248,505283,102891 -h3722,395:6630773,39805566:0,0,0 -g3722,395:9788297,39805566 -k3722,396:14721848,39805566:3738174 -k3722,396:18460021,39805566:3738173 -) -(3722,397:6630773,40648595:11829248,505283,126483 -h3722,396:6630773,40648595:0,0,0 -r3722,454:6630773,40648595:0,631766,126483 -g3722,396:7941493,40648595 -g3722,396:7941493,40648595 -g3722,396:8894386,40648595 -g3722,396:10648784,40648595 -g3722,396:13267602,40648595 -k3722,397:16461500,40648595:1998521 -k3722,397:18460021,40648595:1998521 -) -(3722,398:6630773,41491624:11829248,505283,126483 -h3722,397:6630773,41491624:0,0,0 -g3722,397:12340924,41491624 -g3722,397:15503691,41491624 -k3722,398:17579545,41491624:880477 -k3722,398:18460021,41491624:880476 -) -(3722,399:6630773,42334653:11829248,505283,102891 -h3722,398:6630773,42334653:0,0,0 -g3722,398:12776083,42334653 -k3722,399:16215741,42334653:2244281 -k3722,399:18460021,42334653:2244280 -) -(3722,400:6630773,43177682:11829248,485622,173670 -h3722,399:6630773,43177682:0,0,0 -(3722,399:6630773,43177682:1181614,473825,0 -) -(3722,399:8117325,43351352:355205,473825,0 -) -g3722,399:9173764,43177682 -k3722,400:14414581,43177682:4045440 -k3722,400:18460021,43177682:4045440 -) -(3722,401:6630773,44020711:11829248,513147,102891 -h3722,400:6630773,44020711:0,0,0 -g3722,400:8817709,44020711 -g3722,400:12064362,44020711 -k3722,401:16621408,44020711:1838613 -k3722,401:18460021,44020711:1838613 -) -(3722,402:6630773,44863740:11829248,505283,126483 -h3722,401:6630773,44863740:0,0,0 -r3722,454:6630773,44863740:0,631766,126483 -g3722,401:7941493,44863740 -g3722,401:7941493,44863740 -g3722,401:12570300,44863740 -k3722,402:16112849,44863740:2347172 -k3722,402:18460021,44863740:2347172 -) -(3722,403:6630773,45706769:11829248,505283,7863 -h3722,402:6630773,45706769:0,0,0 -k3722,403:13704401,45706769:4755620 -k3722,403:18460021,45706769:4755620 -) -] -k3722,454:19606901,45706769:1146880 -r3722,454:19606901,45706769:0,40234515,126483 -k3722,454:20753781,45706769:1146880 -[3722,454:20753781,45706769:11829248,40108032,102891 -(3722,404:20753781,6254097:11829248,505283,134348 -h3722,403:20753781,6254097:0,0,0 -r3722,454:20753781,6254097:0,639631,134348 -g3722,403:22064501,6254097 -g3722,403:22064501,6254097 -g3722,403:25956028,6254097 -g3722,403:28141653,6254097 -k3722,404:32583029,6254097:3474065 -) -(3722,404:23375221,7095585:9207808,505283,134348 -g3722,403:27266748,7095585 -g3722,403:29278703,7095585 -k3722,404:32089870,7095585:493159 -k3722,404:32583029,7095585:493159 -) -(3722,405:20753781,7952298:11829248,505283,102891 -h3722,404:20753781,7952298:0,0,0 -r3722,454:20753781,7952298:0,608174,102891 -g3722,404:22064501,7952298 -g3722,404:22064501,7952298 -g3722,404:24250126,7952298 -g3722,404:25416666,7952298 -g3722,404:27428621,7952298 -k3722,405:31164829,7952298:1418200 -k3722,405:32583029,7952298:1418200 -) -(3722,406:20753781,8809011:11829248,505283,102891 -h3722,405:20753781,8809011:0,0,0 -r3722,454:20753781,8809011:0,608174,102891 -k3722,405:22064501,8809011:1310720 -k3722,405:22064501,8809011:0 -k3722,405:25674661,8809011:186559 -k3722,405:26828532,8809011:186560 -k3722,405:30265021,8809011:186559 -k3722,406:32583029,8809011:0 -k3722,406:32583029,8809011:0 -) -(3722,407:20753781,9665723:11829248,513147,102891 -h3722,406:20753781,9665723:0,0,0 -r3722,454:20753781,9665723:0,616038,102891 -g3722,406:22064501,9665723 -g3722,406:22064501,9665723 -g3722,406:25994039,9665723 -k3722,407:29886223,9665723:2696807 -k3722,407:32583029,9665723:2696806 -) -(3722,408:20753781,10522436:11829248,513147,134348 -h3722,407:20753781,10522436:0,0,0 -g3722,407:23271018,10522436 -g3722,407:25578540,10522436 -k3722,408:30440001,10522436:2143028 -k3722,408:32583029,10522436:2143028 -) -(3722,409:20753781,11379149:11829248,505283,102891 -h3722,408:20753781,11379149:0,0,0 -g3722,408:23904096,11379149 -g3722,408:25472372,11379149 -g3722,408:27040648,11379149 -g3722,408:30131981,11379149 -k3722,409:31955194,11379149:627836 -k3722,409:32583029,11379149:627835 -) -(3722,410:20753781,12235862:11829248,505283,102891 -h3722,409:20753781,12235862:0,0,0 -g3722,409:25066704,12235862 -g3722,409:26236521,12235862 -g3722,409:27406338,12235862 -g3722,409:28576155,12235862 -g3722,409:29745972,12235862 -k3722,409:32583029,12235862:1468010 -) -(3722,410:23375221,13077350:9207808,485622,102891 -g3722,409:24943497,13077350 -g3722,409:26511773,13077350 -g3722,409:28080049,13077350 -k3722,410:30929228,13077350:1653802 -k3722,410:32583029,13077350:1653801 -) -(3722,411:20753781,13934063:11829248,505283,134348 -h3722,410:20753781,13934063:0,0,0 -g3722,410:26556994,13934063 -g3722,410:29145010,13934063 -k3722,411:32223236,13934063:359793 -k3722,411:32583029,13934063:359793 -) -(3722,412:20753781,14790775:11829248,513147,126483 -h3722,411:20753781,14790775:0,0,0 -g3722,411:24813736,14790775 -g3722,411:27567558,14790775 -g3722,411:28426079,14790775 -k3722,411:32583029,14790775:1329071 -) -(3722,412:23375221,15632263:9207808,485622,11795 -k3722,412:29338342,15632263:3244688 -k3722,412:32583029,15632263:3244687 -) -(3722,413:20753781,16488976:11829248,505283,102891 -h3722,412:20753781,16488976:0,0,0 -g3722,412:24813736,16488976 -g3722,412:27971260,16488976 -k3722,413:31636361,16488976:946668 -k3722,413:32583029,16488976:946668 -) -(3722,417:20753781,18254793:11829248,505283,7863 -h3722,416:20753781,18254793:0,0,0 -g3722,416:23111766,18254793 -k3722,417:29001487,18254793:3581543 -k3722,417:32583029,18254793:3581542 -) -(3722,418:20753781,19111506:11829248,505283,134348 -h3722,417:20753781,19111506:0,0,0 -r3722,454:20753781,19111506:0,639631,134348 -g3722,417:22064501,19111506 -g3722,417:22064501,19111506 -g3722,417:25071292,19111506 -g3722,417:26838142,19111506 -k3722,418:30308274,19111506:2274755 -k3722,418:32583029,19111506:2274755 -) -(3722,419:20753781,19968219:11829248,505283,134348 -h3722,418:20753781,19968219:0,0,0 -g3722,418:23021326,19968219 -g3722,418:24412000,19968219 -g3722,418:27254296,19968219 -k3722,419:30516351,19968219:2066678 -k3722,419:32583029,19968219:2066678 -) -(3722,420:20753781,20824931:11829248,485622,126483 -h3722,419:20753781,20824931:0,0,0 -g3722,419:24982819,20824931 -k3722,420:29380613,20824931:3202417 -k3722,420:32583029,20824931:3202416 -) -(3722,421:20753781,21681644:11829248,485622,102891 -h3722,420:20753781,21681644:0,0,0 -g3722,420:22781464,21681644 -k3722,421:28279935,21681644:4303094 -k3722,421:32583029,21681644:4303094 -) -(3722,422:20753781,22538357:11829248,513147,102891 -h3722,421:20753781,22538357:0,0,0 -g3722,421:23350972,22538357 -g3722,421:24919248,22538357 -g3722,421:26487524,22538357 -k3722,422:30132965,22538357:2450064 -k3722,422:32583029,22538357:2450064 -) -(3722,423:20753781,23395070:11829248,505283,126483 -h3722,422:20753781,23395070:0,0,0 -g3722,422:23070478,23395070 -g3722,422:25986830,23395070 -g3722,422:28104953,23395070 -k3722,423:30941680,23395070:1641350 -k3722,423:32583029,23395070:1641349 -) -(3722,424:20753781,24251783:11829248,485622,102891 -h3722,423:20753781,24251783:0,0,0 -g3722,423:23516778,24251783 -g3722,423:26608111,24251783 -k3722,424:30193259,24251783:2389771 -k3722,424:32583029,24251783:2389770 -) -(3722,425:20753781,25108495:11829248,485622,126483 -h3722,424:20753781,25108495:0,0,0 -g3722,424:24374645,25108495 -k3722,425:28678067,25108495:3904963 -k3722,425:32583029,25108495:3904962 -) -(3722,426:20753781,25965208:11829248,505283,126483 -h3722,425:20753781,25965208:0,0,0 -g3722,425:23568552,25965208 -g3722,425:26774573,25965208 -k3722,426:29878031,25965208:2704999 -k3722,426:32583029,25965208:2704998 -) -(3722,427:20753781,26821921:11829248,505283,102891 -h3722,426:20753781,26821921:0,0,0 -g3722,426:23113732,26821921 -k3722,427:28446069,26821921:4136960 -k3722,427:32583029,26821921:4136960 -) -(3722,428:20753781,27678634:11829248,505283,102891 -h3722,427:20753781,27678634:0,0,0 -g3722,427:22339096,27678634 -g3722,427:23505636,27678634 -g3722,427:26954795,27678634 -k3722,428:30927916,27678634:1655113 -k3722,428:32583029,27678634:1655113 -) -(3722,429:20753781,28535347:11829248,505283,102891 -h3722,428:20753781,28535347:0,0,0 -g3722,428:24202940,28535347 -g3722,428:26893848,28535347 -k3722,429:31097655,28535347:1485374 -k3722,429:32583029,28535347:1485374 -) -(3722,430:20753781,29392059:11829248,505283,102891 -h3722,429:20753781,29392059:0,0,0 -g3722,429:23309029,29392059 -g3722,429:27463356,29392059 -k3722,430:30620881,29392059:1962148 -k3722,430:32583029,29392059:1962148 -) -(3722,431:20753781,30248772:11829248,505283,126483 -h3722,430:20753781,30248772:0,0,0 -g3722,430:23811035,30248772 -k3722,431:28794721,30248772:3788309 -k3722,431:32583029,30248772:3788308 -) -(3722,432:20753781,31105485:11829248,505283,7863 -h3722,431:20753781,31105485:0,0,0 -k3722,432:28076446,31105485:4506583 -k3722,432:32583029,31105485:4506583 -) -(3722,433:20753781,31962198:11829248,505283,102891 -h3722,432:20753781,31962198:0,0,0 -r3722,454:20753781,31962198:0,608174,102891 -g3722,432:22064501,31962198 -g3722,432:22064501,31962198 -g3722,432:24620405,31962198 -k3722,433:29000176,31962198:3582853 -k3722,433:32583029,31962198:3582853 -) -(3722,434:20753781,32818911:11829248,513147,134348 -h3722,433:20753781,32818911:0,0,0 -r3722,454:20753781,32818911:0,647495,134348 -g3722,433:22064501,32818911 -g3722,433:22064501,32818911 -g3722,433:24695771,32818911 -g3722,433:26756878,32818911 -k3722,434:30068413,32818911:2514617 -k3722,434:32583029,32818911:2514616 -) -(3722,435:20753781,33675623:11829248,485622,134348 -h3722,434:20753781,33675623:0,0,0 -r3722,454:20753781,33675623:0,619970,134348 -g3722,434:22064501,33675623 -g3722,434:22064501,33675623 -g3722,434:24667591,33675623 -g3722,434:25837408,33675623 -k3722,435:29608678,33675623:2974352 -k3722,435:32583029,33675623:2974351 -) -(3722,436:20753781,34532336:11829248,505283,102891 -h3722,435:20753781,34532336:0,0,0 -r3722,454:20753781,34532336:0,608174,102891 -g3722,435:22064501,34532336 -g3722,435:22064501,34532336 -g3722,435:24320250,34532336 -k3722,436:28850099,34532336:3732931 -k3722,436:32583029,34532336:3732930 -) -(3722,437:20753781,35389049:11829248,505283,102891 -h3722,436:20753781,35389049:0,0,0 -g3722,436:23769092,35389049 -g3722,436:25159766,35389049 -g3722,436:26867634,35389049 -g3722,436:30516678,35389049 -k3722,437:32510612,35389049:72418 -k3722,437:32583029,35389049:72417 -) -(3722,438:20753781,36245762:11829248,505283,102891 -h3722,437:20753781,36245762:0,0,0 -g3722,437:23573139,36245762 -g3722,437:25956683,36245762 -k3722,438:29668315,36245762:2914714 -k3722,438:32583029,36245762:2914714 -) -(3722,439:20753781,37102475:11829248,505283,134348 -h3722,438:20753781,37102475:0,0,0 -g3722,438:23746810,37102475 -g3722,438:26176229,37102475 -g3722,438:27566903,37102475 -g3722,438:29949136,37102475 -k3722,438:32583029,37102475:449578 -) -(3722,439:23375221,37943963:9207808,485622,0 -k3722,439:28377584,37943963:4205445 -k3722,439:32583029,37943963:4205445 -) -(3722,443:20753781,39709779:11829248,505283,134348 -h3722,442:20753781,39709779:0,0,0 -g3722,442:22912536,39709779 -g3722,442:25353752,39709779 -k3722,443:29566079,39709779:3016950 -k3722,443:32583029,39709779:3016950 -) -(3722,444:20753781,40566492:11829248,505283,134348 -h3722,443:20753781,40566492:0,0,0 -r3722,454:20753781,40566492:0,639631,134348 -g3722,443:22064501,40566492 -g3722,443:22064501,40566492 -g3722,443:22949892,40566492 -g3722,443:26123800,40566492 -g3722,443:28692811,40566492 -k3722,444:31235609,40566492:1347421 -k3722,444:32583029,40566492:1347420 -) -(3722,445:20753781,41423205:11829248,505283,134348 -h3722,444:20753781,41423205:0,0,0 -g3722,444:25796776,41423205 -g3722,444:30521921,41423205 -k3722,445:32150164,41423205:432866 -k3722,445:32583029,41423205:432865 -) -(3722,446:20753781,42279918:11829248,505283,134348 -h3722,445:20753781,42279918:0,0,0 -g3722,445:23416508,42279918 -k3722,446:28597457,42279918:3985572 -k3722,446:32583029,42279918:3985572 -) -(3722,447:20753781,43136631:11829248,505283,102891 -h3722,446:20753781,43136631:0,0,0 -r3722,454:20753781,43136631:0,608174,102891 -g3722,446:22064501,43136631 -g3722,446:22064501,43136631 -g3722,446:24219980,43136631 -k3722,447:28799964,43136631:3783066 -k3722,447:32583029,43136631:3783065 -) -(3722,448:20753781,43993343:11829248,485622,102891 -h3722,447:20753781,43993343:0,0,0 -g3722,447:23282815,43993343 -k3722,448:28530611,43993343:4052419 -k3722,448:32583029,43993343:4052418 -) -(3722,449:20753781,44850056:11829248,473825,134348 -h3722,448:20753781,44850056:0,0,0 -g3722,448:24006988,44850056 -k3722,449:29583119,44850056:2999911 -k3722,449:32583029,44850056:2999910 -) -(3722,450:20753781,45706769:11829248,485622,102891 -h3722,449:20753781,45706769:0,0,0 -r3722,454:20753781,45706769:0,588513,102891 -g3722,449:22064501,45706769 -g3722,449:22064501,45706769 -g3722,449:24190488,45706769 -g3722,449:25360305,45706769 -g3722,449:26530122,45706769 -g3722,449:27699939,45706769 -g3722,449:29268215,45706769 -k3722,450:31523311,45706769:1059719 -k3722,450:32583029,45706769:1059718 -) -] -(3722,454:32583029,45706769:0,355205,126483 -h3722,454:32583029,45706769:420741,355205,126483 -k3722,454:32583029,45706769:-420741 -) -) -] -(3722,454:32583029,45706769:0,0,0 -g3722,454:32583029,45706769 -) -) -] -(3722,454:6630773,47279633:25952256,0,0 -h3722,454:6630773,47279633:25952256,0,0 -) -] -(3722,454:4262630,4025873:0,0,0 -[3722,454:-473656,4025873:0,0,0 -(3722,454:-473656,-710413:0,0,0 -(3722,454:-473656,-710413:0,0,0 -g3722,454:-473656,-710413 -) -g3722,454:-473656,-710413 -) -] -) -] -!25519 -}436 +] +g3763,527:6630773,4812305 +k3763,527:28201292,4812305:20375142 +g3763,527:30884336,4812305 +) +) +] +[3763,527:6630773,45706769:25952256,40108032,0 +(3763,527:6630773,45706769:25952256,40108032,0 +(3763,527:6630773,45706769:0,0,0 +g3763,527:6630773,45706769 +) +[3763,527:6630773,45706769:25952256,40108032,0 +(3763,527:6630773,45706769:25952256,40108032,126483 +[3763,527:6630773,45706769:11829248,40108032,102891 +(3763,437:6630773,6254097:11829248,505283,102891 +h3763,436:6630773,6254097:0,0,0 +g3763,436:9646084,6254097 +g3763,436:11036758,6254097 +g3763,436:12744626,6254097 +g3763,436:16393670,6254097 +k3763,437:18387604,6254097:72418 +k3763,437:18460021,6254097:72417 +) +(3763,438:6630773,7120308:11829248,505283,102891 +h3763,437:6630773,7120308:0,0,0 +g3763,437:9450131,7120308 +g3763,437:11833675,7120308 +k3763,438:15545307,7120308:2914714 +k3763,438:18460021,7120308:2914714 +) +(3763,439:6630773,7986519:11829248,505283,134348 +h3763,438:6630773,7986519:0,0,0 +g3763,438:9623802,7986519 +g3763,438:12053221,7986519 +g3763,438:13443895,7986519 +g3763,438:15826128,7986519 +k3763,438:18460021,7986519:449578 +) +(3763,439:9252213,8851599:9207808,485622,0 +k3763,439:14254576,8851599:4205445 +k3763,439:18460021,8851599:4205445 +) +(3763,443:6630773,10392024:11829248,505283,134348 +h3763,442:6630773,10392024:0,0,0 +g3763,442:8789528,10392024 +g3763,442:11230744,10392024 +k3763,443:15443071,10392024:3016950 +k3763,443:18460021,10392024:3016950 +) +(3763,444:6630773,11258236:11829248,505283,134348 +h3763,443:6630773,11258236:0,0,0 +r3763,527:6630773,11258236:0,639631,134348 +g3763,443:7941493,11258236 +g3763,443:7941493,11258236 +g3763,443:8826884,11258236 +g3763,443:12000792,11258236 +g3763,443:14569803,11258236 +k3763,444:17112601,11258236:1347421 +k3763,444:18460021,11258236:1347420 +) +(3763,445:6630773,12124447:11829248,505283,134348 +h3763,444:6630773,12124447:0,0,0 +g3763,444:11673768,12124447 +g3763,444:16398913,12124447 +k3763,445:18027156,12124447:432866 +k3763,445:18460021,12124447:432865 +) +(3763,446:6630773,12990658:11829248,505283,134348 +h3763,445:6630773,12990658:0,0,0 +g3763,445:9293500,12990658 +k3763,446:14474449,12990658:3985572 +k3763,446:18460021,12990658:3985572 +) +(3763,447:6630773,13856869:11829248,505283,102891 +h3763,446:6630773,13856869:0,0,0 +r3763,527:6630773,13856869:0,608174,102891 +g3763,446:7941493,13856869 +g3763,446:7941493,13856869 +g3763,446:10096972,13856869 +k3763,447:14676956,13856869:3783066 +k3763,447:18460021,13856869:3783065 +) +(3763,448:6630773,14723081:11829248,485622,102891 +h3763,447:6630773,14723081:0,0,0 +g3763,447:9159807,14723081 +k3763,448:14407603,14723081:4052419 +k3763,448:18460021,14723081:4052418 +) +(3763,449:6630773,15589292:11829248,473825,134348 +h3763,448:6630773,15589292:0,0,0 +g3763,448:9883980,15589292 +k3763,449:15460111,15589292:2999911 +k3763,449:18460021,15589292:2999910 +) +(3763,450:6630773,16455503:11829248,485622,102891 +h3763,449:6630773,16455503:0,0,0 +r3763,527:6630773,16455503:0,588513,102891 +g3763,449:7941493,16455503 +g3763,449:7941493,16455503 +g3763,449:10067480,16455503 +g3763,449:11237297,16455503 +g3763,449:12407114,16455503 +g3763,449:13576931,16455503 +g3763,449:15145207,16455503 +k3763,450:17400303,16455503:1059719 +k3763,450:18460021,16455503:1059718 +) +(3763,451:6630773,17321714:11829248,505283,102891 +h3763,450:6630773,17321714:0,0,0 +r3763,527:6630773,17321714:0,608174,102891 +g3763,450:7941493,17321714 +g3763,450:7941493,17321714 +g3763,450:12254416,17321714 +g3763,450:13424233,17321714 +g3763,450:14594050,17321714 +g3763,450:15763867,17321714 +k3763,450:18460021,17321714:1327107 +) +(3763,451:9252213,18186794:9207808,485622,102891 +g3763,450:10820489,18186794 +k3763,451:15237944,18186794:3222078 +k3763,451:18460021,18186794:3222077 +) +(3763,452:6630773,19053006:11829248,485622,102891 +h3763,451:6630773,19053006:0,0,0 +r3763,527:6630773,19053006:0,588513,102891 +g3763,451:7941493,19053006 +g3763,451:7941493,19053006 +g3763,451:9011041,19053006 +g3763,451:9794195,19053006 +g3763,451:10964012,19053006 +g3763,451:12133829,19053006 +k3763,452:15695384,19053006:2764637 +k3763,452:18460021,19053006:2764637 +) +(3763,453:6630773,19919217:11829248,485622,102891 +h3763,452:6630773,19919217:0,0,0 +r3763,527:6630773,19919217:0,588513,102891 +g3763,452:7941493,19919217 +g3763,452:7941493,19919217 +g3763,452:9766014,19919217 +g3763,452:10935831,19919217 +g3763,452:12105648,19919217 +g3763,452:13275465,19919217 +k3763,453:16465432,19919217:1994590 +k3763,453:18460021,19919217:1994589 +) +(3763,454:6630773,20785428:11829248,426639,126483 +h3763,453:6630773,20785428:0,0,0 +k3763,454:14083855,20785428:4376167 +k3763,454:18460021,20785428:4376166 +) +(3763,455:6630773,21651639:11829248,485622,126483 +h3763,454:6630773,21651639:0,0,0 +r3763,527:6630773,21651639:0,612105,126483 +g3763,454:7941493,21651639 +g3763,454:7941493,21651639 +g3763,454:12068295,21651639 +k3763,455:16224916,21651639:2235105 +k3763,455:18460021,21651639:2235105 +) +(3763,456:6630773,22517851:11829248,513147,134348 +h3763,455:6630773,22517851:0,0,0 +r3763,527:6630773,22517851:0,647495,134348 +g3763,455:7941493,22517851 +g3763,455:7941493,22517851 +g3763,455:10744467,22517851 +g3763,455:12400561,22517851 +g3763,455:13968837,22517851 +k3763,456:16812118,22517851:1647904 +k3763,456:18460021,22517851:1647903 +) +(3763,457:6630773,23384062:11829248,485622,102891 +h3763,456:6630773,23384062:0,0,0 +r3763,527:6630773,23384062:0,588513,102891 +g3763,456:7941493,23384062 +g3763,456:7941493,23384062 +g3763,456:9248936,23384062 +k3763,457:14815237,23384062:3644785 +k3763,457:18460021,23384062:3644784 +) +(3763,458:6630773,24250273:11829248,485622,102891 +h3763,457:6630773,24250273:0,0,0 +g3763,457:7700321,24250273 +g3763,457:8483475,24250273 +g3763,457:9653292,24250273 +g3763,457:10823109,24250273 +g3763,457:11992926,24250273 +k3763,458:15824162,24250273:2635859 +k3763,458:18460021,24250273:2635859 +) +(3763,459:6630773,25116484:11829248,513147,102891 +h3763,458:6630773,25116484:0,0,0 +g3763,458:9741111,25116484 +g3763,458:10907651,25116484 +g3763,458:14383025,25116484 +k3763,459:17790243,25116484:669779 +k3763,459:18460021,25116484:669778 +) +(3763,463:6630773,26656909:11829248,505283,134348 +h3763,462:6630773,26656909:0,0,0 +k3763,463:14000624,26656909:4459397 +k3763,463:18460021,26656909:4459397 +) +(3763,464:6630773,27523120:11829248,505283,126483 +h3763,463:6630773,27523120:0,0,0 +r3763,527:6630773,27523120:0,631766,126483 +g3763,463:7941493,27523120 +g3763,463:7941493,27523120 +g3763,463:11250405,27523120 +g3763,463:12420222,27523120 +k3763,464:16037810,27523120:2422211 +k3763,464:18460021,27523120:2422211 +) +(3763,465:6630773,28389332:11829248,505283,134348 +h3763,464:6630773,28389332:0,0,0 +r3763,527:6630773,28389332:0,639631,134348 +g3763,464:7941493,28389332 +g3763,464:7941493,28389332 +g3763,464:11867754,28389332 +k3763,465:15761576,28389332:2698445 +k3763,465:18460021,28389332:2698445 +) +(3763,466:6630773,29255543:11829248,505283,102891 +h3763,465:6630773,29255543:0,0,0 +r3763,527:6630773,29255543:0,608174,102891 +g3763,465:7941493,29255543 +g3763,465:7941493,29255543 +g3763,465:12055187,29255543 +k3763,466:15855293,29255543:2604729 +k3763,466:18460021,29255543:2604728 +) +(3763,467:6630773,30121754:11829248,505283,102891 +h3763,466:6630773,30121754:0,0,0 +r3763,527:6630773,30121754:0,608174,102891 +g3763,466:7941493,30121754 +g3763,466:7941493,30121754 +g3763,466:10826387,30121754 +k3763,467:15240893,30121754:3219129 +k3763,467:18460021,30121754:3219128 +) +(3763,468:6630773,30987965:11829248,505283,102891 +h3763,467:6630773,30987965:0,0,0 +r3763,527:6630773,30987965:0,608174,102891 +g3763,467:7941493,30987965 +g3763,467:7941493,30987965 +g3763,467:11891347,30987965 +g3763,467:13459623,30987965 +g3763,467:15027899,30987965 +g3763,467:16596175,30987965 +k3763,467:18460021,30987965:494799 +) +(3763,468:9252213,31853045:9207808,485622,11795 +k3763,468:14453806,31853045:4006216 +k3763,468:18460021,31853045:4006215 +) +(3763,469:6630773,32719257:11829248,505283,102891 +h3763,468:6630773,32719257:0,0,0 +r3763,527:6630773,32719257:0,608174,102891 +g3763,468:7941493,32719257 +g3763,468:7941493,32719257 +g3763,468:11387375,32719257 +g3763,468:12955651,32719257 +g3763,468:14523927,32719257 +k3763,469:17089663,32719257:1370359 +k3763,469:18460021,32719257:1370358 +) +(3763,470:6630773,33585468:11829248,505283,126483 +h3763,469:6630773,33585468:0,0,0 +r3763,527:6630773,33585468:0,631766,126483 +g3763,469:7941493,33585468 +g3763,469:7941493,33585468 +g3763,469:10766749,33585468 +g3763,469:12335025,33585468 +g3763,469:13903301,33585468 +k3763,470:16779350,33585468:1680672 +k3763,470:18460021,33585468:1680671 +) +(3763,471:6630773,34451679:11829248,505283,102891 +h3763,470:6630773,34451679:0,0,0 +r3763,527:6630773,34451679:0,608174,102891 +g3763,470:7941493,34451679 +g3763,470:7941493,34451679 +g3763,470:11418832,34451679 +k3763,471:15537115,34451679:2922906 +k3763,471:18460021,34451679:2922906 +) +(3763,473:6630773,35317890:11829248,505283,126483 +h3763,471:6630773,35317890:0,0,0 +r3763,527:6630773,35317890:0,631766,126483 +g3763,471:7941493,35317890 +g3763,471:7941493,35317890 +g3763,471:10353872,35317890 +g3763,471:11922148,35317890 +g3763,471:13490424,35317890 +g3763,471:15058700,35317890 +k3763,471:18460021,35317890:2032274 +) +(3763,473:9252213,36182970:9207808,485622,102891 +g3763,471:12343546,36182970 +g3763,471:13911822,36182970 +g3763,471:15480098,36182970 +g3763,472:17048374,36182970 +k3763,472:18460021,36182970:42600 +) +(3763,473:9252213,37048050:9207808,485622,11795 +k3763,473:14453806,37048050:4006216 +k3763,473:18460021,37048050:4006215 +) +(3763,474:6630773,37914262:11829248,505283,126483 +h3763,473:6630773,37914262:0,0,0 +r3763,527:6630773,37914262:0,631766,126483 +g3763,473:7941493,37914262 +g3763,473:7941493,37914262 +g3763,473:10598977,37914262 +k3763,474:15127188,37914262:3332834 +k3763,474:18460021,37914262:3332833 +) +(3763,475:6630773,38780473:11829248,513147,102891 +h3763,474:6630773,38780473:0,0,0 +r3763,527:6630773,38780473:0,616038,102891 +g3763,474:7941493,38780473 +g3763,474:7941493,38780473 +g3763,474:11664592,38780473 +k3763,475:15659995,38780473:2800026 +k3763,475:18460021,38780473:2800026 +) +(3763,476:6630773,39646684:11829248,513147,134348 +h3763,475:6630773,39646684:0,0,0 +r3763,527:6630773,39646684:0,647495,134348 +k3763,475:7941493,39646684:1310720 +k3763,475:7941493,39646684:0 +k3763,475:11005170,39646684:195822 +k3763,475:12570038,39646684:195821 +k3763,475:14134907,39646684:195822 +k3763,475:15699775,39646684:195821 +k3763,475:17264644,39646684:195822 +k3763,476:18460021,39646684:0 +k3763,476:18460021,39646684:0 +) +(3763,477:6630773,40512895:11829248,505283,134348 +h3763,476:6630773,40512895:0,0,0 +r3763,527:6630773,40512895:0,639631,134348 +g3763,476:7941493,40512895 +g3763,476:7941493,40512895 +g3763,476:12768219,40512895 +k3763,477:16211809,40512895:2248213 +k3763,477:18460021,40512895:2248212 +) +(3763,478:6630773,41379107:11829248,513147,134348 +h3763,477:6630773,41379107:0,0,0 +r3763,527:6630773,41379107:0,647495,134348 +g3763,477:7941493,41379107 +g3763,477:7941493,41379107 +g3763,477:11156688,41379107 +k3763,478:15406043,41379107:3053978 +k3763,478:18460021,41379107:3053978 +) +(3763,479:6630773,42245318:11829248,505283,134348 +h3763,478:6630773,42245318:0,0,0 +r3763,527:6630773,42245318:0,639631,134348 +g3763,478:7941493,42245318 +g3763,478:7941493,42245318 +g3763,478:11923460,42245318 +k3763,479:15789429,42245318:2670592 +k3763,479:18460021,42245318:2670592 +) +(3763,483:6630773,43111529:11829248,505283,134348 +h3763,479:6630773,43111529:0,0,0 +r3763,527:6630773,43111529:0,639631,134348 +g3763,479:7941493,43111529 +g3763,479:7941493,43111529 +g3763,479:11209773,43111529 +g3763,479:12778049,43111529 +g3763,479:14346325,43111529 +g3763,479:15914601,43111529 +k3763,479:18460021,43111529:1176373 +) +(3763,483:9252213,43976609:9207808,485622,102891 +g3763,479:12343546,43976609 +g3763,479:13911822,43976609 +g3763,480:15480098,43976609 +g3763,480:17048374,43976609 +k3763,480:18460021,43976609:42600 +) +(3763,483:9252213,44841689:9207808,485622,102891 +g3763,480:10820489,44841689 +g3763,480:12388765,44841689 +g3763,480:13957041,44841689 +g3763,480:15525317,44841689 +k3763,480:18460021,44841689:42600 +) +(3763,483:9252213,45706769:9207808,485622,102891 +g3763,480:10820489,45706769 +g3763,480:12388765,45706769 +g3763,481:15480098,45706769 +g3763,481:17048374,45706769 +k3763,481:18460021,45706769:42600 +) +] +k3763,527:19606901,45706769:1146880 +r3763,527:19606901,45706769:0,40234515,126483 +k3763,527:20753781,45706769:1146880 +[3763,527:20753781,45706769:11829248,40108032,102891 +(3763,483:23375221,6254097:9207808,485622,102891 +g3763,481:24943497,6254097 +g3763,481:26511773,6254097 +g3763,481:28080049,6254097 +g3763,481:29648325,6254097 +k3763,481:32583029,6254097:1565657 +) +(3763,483:23375221,7119177:9207808,485622,102891 +g3763,481:26466554,7119177 +g3763,482:28034830,7119177 +g3763,482:29603106,7119177 +k3763,483:31690756,7119177:892273 +k3763,483:32583029,7119177:892273 +) +(3763,484:20753781,7997359:11829248,505283,134348 +h3763,483:20753781,7997359:0,0,0 +r3763,527:20753781,7997359:0,639631,134348 +g3763,483:22064501,7997359 +g3763,483:22064501,7997359 +g3763,483:25551671,7997359 +g3763,483:27119947,7997359 +g3763,483:28688223,7997359 +g3763,483:30256499,7997359 +k3763,483:32583029,7997359:957483 +) +(3763,484:23375221,8862439:9207808,485622,102891 +g3763,483:24943497,8862439 +k3763,484:29360952,8862439:3222078 +k3763,484:32583029,8862439:3222077 +) +(3763,485:20753781,9740621:11829248,505283,134348 +h3763,484:20753781,9740621:0,0,0 +r3763,527:20753781,9740621:0,639631,134348 +g3763,484:22064501,9740621 +g3763,484:22064501,9740621 +g3763,484:24493920,9740621 +k3763,485:29136163,9740621:3446866 +k3763,485:32583029,9740621:3446866 +) +(3763,486:20753781,10618802:11829248,505283,134348 +h3763,485:20753781,10618802:0,0,0 +r3763,527:20753781,10618802:0,639631,134348 +g3763,485:22064501,10618802 +g3763,485:22064501,10618802 +g3763,485:25268555,10618802 +k3763,486:29523481,10618802:3059549 +k3763,486:32583029,10618802:3059548 +) +(3763,487:20753781,11496984:11829248,505283,134348 +h3763,486:20753781,11496984:0,0,0 +r3763,527:20753781,11496984:0,639631,134348 +g3763,486:22064501,11496984 +g3763,486:22064501,11496984 +g3763,486:25715511,11496984 +k3763,487:29746959,11496984:2836071 +k3763,487:32583029,11496984:2836070 +) +(3763,488:20753781,12375166:11829248,505283,134348 +h3763,487:20753781,12375166:0,0,0 +r3763,527:20753781,12375166:0,639631,134348 +g3763,487:22064501,12375166 +g3763,487:22064501,12375166 +g3763,487:24952672,12375166 +k3763,488:29365539,12375166:3217490 +k3763,488:32583029,12375166:3217490 +) +(3763,489:20753781,13253348:11829248,505283,134348 +h3763,488:20753781,13253348:0,0,0 +r3763,527:20753781,13253348:0,639631,134348 +g3763,488:22064501,13253348 +g3763,488:22064501,13253348 +g3763,488:24925147,13253348 +k3763,489:29351777,13253348:3231253 +k3763,489:32583029,13253348:3231252 +) +(3763,490:20753781,14131530:11829248,505283,134348 +h3763,489:20753781,14131530:0,0,0 +r3763,527:20753781,14131530:0,639631,134348 +g3763,489:22064501,14131530 +g3763,489:22064501,14131530 +g3763,489:24130195,14131530 +g3763,489:25698471,14131530 +g3763,489:27266747,14131530 +k3763,490:30522577,14131530:2060453 +k3763,490:32583029,14131530:2060452 +) +(3763,491:20753781,15009711:11829248,505283,134348 +h3763,490:20753781,15009711:0,0,0 +r3763,527:20753781,15009711:0,639631,134348 +g3763,490:22064501,15009711 +g3763,490:22064501,15009711 +g3763,490:25762041,15009711 +k3763,491:29770224,15009711:2812806 +k3763,491:32583029,15009711:2812805 +) +(3763,492:20753781,15887893:11829248,505283,102891 +h3763,491:20753781,15887893:0,0,0 +r3763,527:20753781,15887893:0,608174,102891 +g3763,491:22064501,15887893 +g3763,491:22064501,15887893 +g3763,491:24730505,15887893 +g3763,491:26298781,15887893 +g3763,491:27867057,15887893 +k3763,492:30822732,15887893:1760298 +k3763,492:32583029,15887893:1760297 +) +(3763,493:20753781,16766075:11829248,505283,102891 +h3763,492:20753781,16766075:0,0,0 +r3763,527:20753781,16766075:0,608174,102891 +g3763,492:22064501,16766075 +g3763,492:22064501,16766075 +g3763,492:24803905,16766075 +k3763,493:29291156,16766075:3291874 +k3763,493:32583029,16766075:3291873 +) +(3763,494:20753781,17644257:11829248,505283,134348 +h3763,493:20753781,17644257:0,0,0 +r3763,527:20753781,17644257:0,639631,134348 +g3763,493:22064501,17644257 +g3763,493:22064501,17644257 +g3763,493:25182048,17644257 +g3763,493:26750324,17644257 +k3763,494:30264365,17644257:2318664 +k3763,494:32583029,17644257:2318664 +) +(3763,495:20753781,18522439:11829248,505283,102891 +h3763,494:20753781,18522439:0,0,0 +r3763,527:20753781,18522439:0,608174,102891 +g3763,494:22064501,18522439 +g3763,494:22064501,18522439 +g3763,494:24343187,18522439 +g3763,494:25513004,18522439 +g3763,494:26682821,18522439 +k3763,495:30230614,18522439:2352416 +k3763,495:32583029,18522439:2352415 +) +(3763,496:20753781,19400620:11829248,505283,102891 +h3763,495:20753781,19400620:0,0,0 +r3763,527:20753781,19400620:0,608174,102891 +g3763,495:22064501,19400620 +g3763,495:22064501,19400620 +g3763,495:24782934,19400620 +g3763,495:26351210,19400620 +g3763,495:27919486,19400620 +k3763,496:30848946,19400620:1734083 +k3763,496:32583029,19400620:1734083 +) +(3763,497:20753781,20278802:11829248,505283,102891 +h3763,496:20753781,20278802:0,0,0 +r3763,527:20753781,20278802:0,608174,102891 +g3763,496:22064501,20278802 +g3763,496:22064501,20278802 +g3763,496:26310578,20278802 +g3763,496:27480395,20278802 +g3763,496:29048671,20278802 +g3763,496:30616947,20278802 +k3763,496:32583029,20278802:597035 +) +(3763,497:23375221,21143882:9207808,485622,11795 +k3763,497:28576814,21143882:4006216 +k3763,497:32583029,21143882:4006215 +) +(3763,498:20753781,22022064:11829248,505283,102891 +h3763,497:20753781,22022064:0,0,0 +r3763,527:20753781,22022064:0,608174,102891 +g3763,497:22064501,22022064 +g3763,497:22064501,22022064 +g3763,497:24432971,22022064 +k3763,498:29105689,22022064:3477341 +k3763,498:32583029,22022064:3477340 +) +(3763,499:20753781,22900246:11829248,505283,102891 +h3763,498:20753781,22900246:0,0,0 +r3763,527:20753781,22900246:0,608174,102891 +g3763,498:22064501,22900246 +g3763,498:22064501,22900246 +g3763,498:25702404,22900246 +g3763,498:26872221,22900246 +g3763,498:28440497,22900246 +k3763,499:31109452,22900246:1473578 +k3763,499:32583029,22900246:1473577 +) +(3763,500:20753781,23778428:11829248,505283,134348 +h3763,499:20753781,23778428:0,0,0 +r3763,527:20753781,23778428:0,639631,134348 +g3763,499:22064501,23778428 +g3763,499:22064501,23778428 +g3763,499:25449435,23778428 +g3763,499:27017711,23778428 +g3763,499:28585987,23778428 +g3763,499:30154263,23778428 +k3763,499:32583029,23778428:1059719 +) +(3763,500:23375221,24643508:9207808,485622,102891 +g3763,499:24943497,24643508 +k3763,500:29360952,24643508:3222078 +k3763,500:32583029,24643508:3222077 +) +(3763,501:20753781,25521689:11829248,505283,102891 +h3763,500:20753781,25521689:0,0,0 +r3763,527:20753781,25521689:0,608174,102891 +g3763,500:22064501,25521689 +g3763,500:22064501,25521689 +g3763,500:26468519,25521689 +k3763,501:29924233,25521689:2658796 +k3763,501:32583029,25521689:2658796 +) +(3763,502:20753781,26399871:11829248,505283,102891 +h3763,501:20753781,26399871:0,0,0 +r3763,527:20753781,26399871:0,608174,102891 +g3763,501:22064501,26399871 +g3763,501:22064501,26399871 +g3763,501:28209811,26399871 +k3763,502:30994109,26399871:1588921 +k3763,502:32583029,26399871:1588920 +) +(3763,503:20753781,27278053:11829248,513147,102891 +h3763,502:20753781,27278053:0,0,0 +r3763,527:20753781,27278053:0,616038,102891 +g3763,502:22064501,27278053 +g3763,502:22064501,27278053 +g3763,502:24661692,27278053 +g3763,502:26229968,27278053 +k3763,503:30004187,27278053:2578842 +k3763,503:32583029,27278053:2578842 +) +(3763,504:20753781,28156235:11829248,505283,102891 +h3763,503:20753781,28156235:0,0,0 +r3763,527:20753781,28156235:0,608174,102891 +g3763,503:22064501,28156235 +g3763,503:22064501,28156235 +g3763,503:24424452,28156235 +k3763,504:29101429,28156235:3481600 +k3763,504:32583029,28156235:3481600 +) +(3763,505:20753781,29034417:11829248,505283,126483 +h3763,504:20753781,29034417:0,0,0 +r3763,527:20753781,29034417:0,631766,126483 +g3763,504:22064501,29034417 +g3763,504:22064501,29034417 +g3763,504:26170986,29034417 +g3763,504:27739262,29034417 +k3763,505:30758834,29034417:1824195 +k3763,505:32583029,29034417:1824195 +) +(3763,506:20753781,29912598:11829248,505283,134348 +h3763,505:20753781,29912598:0,0,0 +r3763,527:20753781,29912598:0,639631,134348 +g3763,505:22064501,29912598 +g3763,505:22064501,29912598 +g3763,505:25781702,29912598 +k3763,506:29780054,29912598:2802975 +k3763,506:32583029,29912598:2802975 +) +(3763,507:20753781,30790780:11829248,505283,126483 +h3763,506:20753781,30790780:0,0,0 +r3763,527:20753781,30790780:0,631766,126483 +g3763,506:22064501,30790780 +g3763,506:22064501,30790780 +g3763,506:25717477,30790780 +g3763,506:27285753,30790780 +k3763,507:30532080,30790780:2050950 +k3763,507:32583029,30790780:2050949 +) +(3763,508:20753781,31668962:11829248,505283,126483 +h3763,507:20753781,31668962:0,0,0 +r3763,527:20753781,31668962:0,631766,126483 +g3763,507:22064501,31668962 +g3763,507:22064501,31668962 +g3763,507:24948084,31668962 +k3763,508:29363245,31668962:3219784 +k3763,508:32583029,31668962:3219784 +) +(3763,509:20753781,32547144:11829248,505283,126483 +h3763,508:20753781,32547144:0,0,0 +r3763,527:20753781,32547144:0,631766,126483 +g3763,508:22064501,32547144 +g3763,508:22064501,32547144 +g3763,508:24427728,32547144 +k3763,509:29103067,32547144:3479962 +k3763,509:32583029,32547144:3479962 +) +(3763,510:20753781,33425326:11829248,505283,102891 +h3763,509:20753781,33425326:0,0,0 +r3763,527:20753781,33425326:0,608174,102891 +g3763,509:22064501,33425326 +g3763,509:22064501,33425326 +g3763,509:25612619,33425326 +k3763,510:29695513,33425326:2887517 +k3763,510:32583029,33425326:2887516 +) +(3763,511:20753781,34303507:11829248,505283,102891 +h3763,510:20753781,34303507:0,0,0 +r3763,527:20753781,34303507:0,608174,102891 +g3763,510:22064501,34303507 +g3763,510:22064501,34303507 +g3763,510:24527343,34303507 +g3763,510:26095619,34303507 +g3763,510:27663895,34303507 +g3763,510:29232171,34303507 +g3763,510:30800447,34303507 +k3763,510:32583029,34303507:413535 +) +(3763,511:23375221,35168587:9207808,485622,102891 +g3763,510:24943497,35168587 +g3763,510:26511773,35168587 +k3763,511:30145090,35168587:2437940 +k3763,511:32583029,35168587:2437939 +) +(3763,512:20753781,36046769:11829248,505283,102891 +h3763,511:20753781,36046769:0,0,0 +r3763,527:20753781,36046769:0,608174,102891 +g3763,511:22064501,36046769 +g3763,511:22064501,36046769 +g3763,511:24850436,36046769 +g3763,511:26418712,36046769 +k3763,512:30098559,36046769:2484470 +k3763,512:32583029,36046769:2484470 +) +(3763,513:20753781,36924951:11829248,505283,126483 +h3763,512:20753781,36924951:0,0,0 +r3763,527:20753781,36924951:0,631766,126483 +g3763,512:22064501,36924951 +g3763,512:22064501,36924951 +g3763,512:24932356,36924951 +k3763,513:28956922,36924951:3626107 +k3763,513:32583029,36924951:3626107 +) +(3763,514:20753781,37803133:11829248,505283,126483 +h3763,513:20753781,37803133:0,0,0 +r3763,527:20753781,37803133:0,631766,126483 +g3763,513:22064501,37803133 +g3763,513:22064501,37803133 +g3763,513:25364238,37803133 +k3763,514:29571322,37803133:3011707 +k3763,514:32583029,37803133:3011707 +) +(3763,515:20753781,38681315:11829248,505283,126483 +h3763,514:20753781,38681315:0,0,0 +r3763,527:20753781,38681315:0,631766,126483 +g3763,514:22064501,38681315 +g3763,514:22064501,38681315 +g3763,514:25779081,38681315 +k3763,515:29778744,38681315:2804286 +k3763,515:32583029,38681315:2804285 +) +(3763,516:20753781,39559496:11829248,505283,102891 +h3763,515:20753781,39559496:0,0,0 +r3763,527:20753781,39559496:0,608174,102891 +g3763,515:22064501,39559496 +g3763,515:22064501,39559496 +g3763,515:25822335,39559496 +g3763,515:27390611,39559496 +k3763,516:30584509,39559496:1998521 +k3763,516:32583029,39559496:1998520 +) +(3763,517:20753781,40437678:11829248,505283,102891 +h3763,516:20753781,40437678:0,0,0 +r3763,527:20753781,40437678:0,608174,102891 +g3763,516:22064501,40437678 +g3763,516:22064501,40437678 +g3763,516:24533241,40437678 +k3763,517:29155824,40437678:3427206 +k3763,517:32583029,40437678:3427205 +) +(3763,518:20753781,41315860:11829248,505283,102891 +h3763,517:20753781,41315860:0,0,0 +r3763,527:20753781,41315860:0,608174,102891 +g3763,517:22064501,41315860 +g3763,517:22064501,41315860 +g3763,517:25656528,41315860 +k3763,518:29717467,41315860:2865562 +k3763,518:32583029,41315860:2865562 +) +(3763,519:20753781,42194042:11829248,505283,102891 +h3763,518:20753781,42194042:0,0,0 +r3763,527:20753781,42194042:0,608174,102891 +g3763,518:22064501,42194042 +g3763,518:22064501,42194042 +g3763,518:25277730,42194042 +k3763,519:29528068,42194042:3054961 +k3763,519:32583029,42194042:3054961 +) +(3763,520:20753781,43072224:11829248,505283,102891 +h3763,519:20753781,43072224:0,0,0 +r3763,527:20753781,43072224:0,608174,102891 +g3763,519:22064501,43072224 +g3763,519:22064501,43072224 +g3763,519:24770482,43072224 +g3763,519:26338758,43072224 +g3763,519:27907034,43072224 +k3763,520:30842720,43072224:1740309 +k3763,520:32583029,43072224:1740309 +) +(3763,521:20753781,43950405:11829248,513147,102891 +h3763,520:20753781,43950405:0,0,0 +r3763,527:20753781,43950405:0,616038,102891 +g3763,520:22064501,43950405 +g3763,520:22064501,43950405 +g3763,520:23425683,43950405 +g3763,520:24993959,43950405 +k3763,521:29386183,43950405:3196847 +k3763,521:32583029,43950405:3196846 +) +(3763,522:20753781,44828587:11829248,505283,102891 +h3763,521:20753781,44828587:0,0,0 +r3763,527:20753781,44828587:0,608174,102891 +g3763,521:22064501,44828587 +g3763,521:22064501,44828587 +g3763,521:25755488,44828587 +k3763,522:29766947,44828587:2816082 +k3763,522:32583029,44828587:2816082 +) +(3763,523:20753781,45706769:11829248,505283,102891 +h3763,522:20753781,45706769:0,0,0 +r3763,527:20753781,45706769:0,608174,102891 +g3763,522:22064501,45706769 +g3763,522:22064501,45706769 +g3763,522:24370712,45706769 +g3763,522:25938988,45706769 +k3763,523:29858697,45706769:2724332 +k3763,523:32583029,45706769:2724332 +) +] +(3763,527:32583029,45706769:0,355205,126483 +h3763,527:32583029,45706769:420741,355205,126483 +k3763,527:32583029,45706769:-420741 +) +) +] +(3763,527:32583029,45706769:0,0,0 +g3763,527:32583029,45706769 +) +) +] +(3763,527:6630773,47279633:25952256,0,0 +h3763,527:6630773,47279633:25952256,0,0 +) +] +(3763,527:4262630,4025873:0,0,0 +[3763,527:-473656,4025873:0,0,0 +(3763,527:-473656,-710413:0,0,0 +(3763,527:-473656,-710413:0,0,0 +g3763,527:-473656,-710413 +) +g3763,527:-473656,-710413 +) +] +) +] +!28856 +}419 !12 -{437 -[3722,541:4262630,47279633:28320399,43253760,0 -(3722,541:4262630,4025873:0,0,0 -[3722,541:-473656,4025873:0,0,0 -(3722,541:-473656,-710413:0,0,0 -(3722,541:-473656,-644877:0,0,0 -k3722,541:-473656,-644877:-65536 +{420 +[3763,615:4262630,47279633:28320399,43253760,0 +(3763,615:4262630,4025873:0,0,0 +[3763,615:-473656,4025873:0,0,0 +(3763,615:-473656,-710413:0,0,0 +(3763,615:-473656,-644877:0,0,0 +k3763,615:-473656,-644877:-65536 ) -(3722,541:-473656,4736287:0,0,0 -k3722,541:-473656,4736287:5209943 +(3763,615:-473656,4736287:0,0,0 +k3763,615:-473656,4736287:5209943 ) -g3722,541:-473656,-710413 +g3763,615:-473656,-710413 ) ] ) -[3722,541:6630773,47279633:25952256,43253760,0 -[3722,541:6630773,4812305:25952256,786432,0 -(3722,541:6630773,4812305:25952256,505283,11795 -(3722,541:6630773,4812305:25952256,505283,11795 -g3722,541:3078558,4812305 -[3722,541:3078558,4812305:0,0,0 -(3722,541:3078558,2439708:0,1703936,0 -k3722,541:1358238,2439708:-1720320 -(3722,1:1358238,2439708:1720320,1703936,0 -(3722,1:1358238,2439708:1179648,16384,0 -r3722,541:2537886,2439708:1179648,16384,0 +[3763,615:6630773,47279633:25952256,43253760,0 +[3763,615:6630773,4812305:25952256,786432,0 +(3763,615:6630773,4812305:25952256,505283,11795 +(3763,615:6630773,4812305:25952256,505283,11795 +g3763,615:3078558,4812305 +[3763,615:3078558,4812305:0,0,0 +(3763,615:3078558,2439708:0,1703936,0 +k3763,615:1358238,2439708:-1720320 +(3763,1:1358238,2439708:1720320,1703936,0 +(3763,1:1358238,2439708:1179648,16384,0 +r3763,615:2537886,2439708:1179648,16384,0 ) -g3722,1:3062174,2439708 -(3722,1:3062174,2439708:16384,1703936,0 -[3722,1:3062174,2439708:25952256,1703936,0 -(3722,1:3062174,1915420:25952256,1179648,0 -(3722,1:3062174,1915420:16384,1179648,0 -r3722,541:3078558,1915420:16384,1179648,0 +g3763,1:3062174,2439708 +(3763,1:3062174,2439708:16384,1703936,0 +[3763,1:3062174,2439708:25952256,1703936,0 +(3763,1:3062174,1915420:25952256,1179648,0 +(3763,1:3062174,1915420:16384,1179648,0 +r3763,615:3078558,1915420:16384,1179648,0 ) -k3722,1:29014430,1915420:25935872 -g3722,1:29014430,1915420 +k3763,1:29014430,1915420:25935872 +g3763,1:29014430,1915420 ) ] ) ) ) ] -[3722,541:3078558,4812305:0,0,0 -(3722,541:3078558,2439708:0,1703936,0 -g3722,541:29030814,2439708 -g3722,541:36135244,2439708 -(3722,1:36135244,2439708:1720320,1703936,0 -(3722,1:36135244,2439708:16384,1703936,0 -[3722,1:36135244,2439708:25952256,1703936,0 -(3722,1:36135244,1915420:25952256,1179648,0 -(3722,1:36135244,1915420:16384,1179648,0 -r3722,541:36151628,1915420:16384,1179648,0 +[3763,615:3078558,4812305:0,0,0 +(3763,615:3078558,2439708:0,1703936,0 +g3763,615:29030814,2439708 +g3763,615:36135244,2439708 +(3763,1:36135244,2439708:1720320,1703936,0 +(3763,1:36135244,2439708:16384,1703936,0 +[3763,1:36135244,2439708:25952256,1703936,0 +(3763,1:36135244,1915420:25952256,1179648,0 +(3763,1:36135244,1915420:16384,1179648,0 +r3763,615:36151628,1915420:16384,1179648,0 ) -k3722,1:62087500,1915420:25935872 -g3722,1:62087500,1915420 +k3763,1:62087500,1915420:25935872 +g3763,1:62087500,1915420 ) ] ) -g3722,1:36675916,2439708 -(3722,1:36675916,2439708:1179648,16384,0 -r3722,541:37855564,2439708:1179648,16384,0 +g3763,1:36675916,2439708 +(3763,1:36675916,2439708:1179648,16384,0 +r3763,615:37855564,2439708:1179648,16384,0 ) ) -k3722,541:3078556,2439708:-34777008 +k3763,615:3078556,2439708:-34777008 ) ] -[3722,541:3078558,4812305:0,0,0 -(3722,541:3078558,49800853:0,16384,2228224 -k3722,541:1358238,49800853:-1720320 -(3722,1:1358238,49800853:1720320,16384,2228224 -(3722,1:1358238,49800853:1179648,16384,0 -r3722,541:2537886,49800853:1179648,16384,0 +[3763,615:3078558,4812305:0,0,0 +(3763,615:3078558,49800853:0,16384,2228224 +k3763,615:1358238,49800853:-1720320 +(3763,1:1358238,49800853:1720320,16384,2228224 +(3763,1:1358238,49800853:1179648,16384,0 +r3763,615:2537886,49800853:1179648,16384,0 ) -g3722,1:3062174,49800853 -(3722,1:3062174,52029077:16384,1703936,0 -[3722,1:3062174,52029077:25952256,1703936,0 -(3722,1:3062174,51504789:25952256,1179648,0 -(3722,1:3062174,51504789:16384,1179648,0 -r3722,541:3078558,51504789:16384,1179648,0 +g3763,1:3062174,49800853 +(3763,1:3062174,52029077:16384,1703936,0 +[3763,1:3062174,52029077:25952256,1703936,0 +(3763,1:3062174,51504789:25952256,1179648,0 +(3763,1:3062174,51504789:16384,1179648,0 +r3763,615:3078558,51504789:16384,1179648,0 ) -k3722,1:29014430,51504789:25935872 -g3722,1:29014430,51504789 +k3763,1:29014430,51504789:25935872 +g3763,1:29014430,51504789 ) ] ) ) ) ] -[3722,541:3078558,4812305:0,0,0 -(3722,541:3078558,49800853:0,16384,2228224 -g3722,541:29030814,49800853 -g3722,541:36135244,49800853 -(3722,1:36135244,49800853:1720320,16384,2228224 -(3722,1:36135244,52029077:16384,1703936,0 -[3722,1:36135244,52029077:25952256,1703936,0 -(3722,1:36135244,51504789:25952256,1179648,0 -(3722,1:36135244,51504789:16384,1179648,0 -r3722,541:36151628,51504789:16384,1179648,0 -) -k3722,1:62087500,51504789:25935872 -g3722,1:62087500,51504789 -) -] -) -g3722,1:36675916,49800853 -(3722,1:36675916,49800853:1179648,16384,0 -r3722,541:37855564,49800853:1179648,16384,0 -) -) -k3722,541:3078556,49800853:-34777008 -) -] -g3722,541:6630773,4812305 -k3722,541:28201292,4812305:20375142 -g3722,541:30884336,4812305 -) -) -] -[3722,541:6630773,45706769:25952256,40108032,0 -(3722,541:6630773,45706769:25952256,40108032,0 -(3722,541:6630773,45706769:0,0,0 -g3722,541:6630773,45706769 -) -[3722,541:6630773,45706769:25952256,40108032,0 -(3722,541:6630773,45706769:25952256,40108032,126483 -[3722,541:6630773,45706769:11829248,40108032,102891 -(3722,451:6630773,6254097:11829248,505283,102891 -h3722,450:6630773,6254097:0,0,0 -r3722,541:6630773,6254097:0,608174,102891 -g3722,450:7941493,6254097 -g3722,450:7941493,6254097 -g3722,450:12254416,6254097 -g3722,450:13424233,6254097 -g3722,450:14594050,6254097 -g3722,450:15763867,6254097 -g3722,450:16933684,6254097 -k3722,450:18460021,6254097:157290 -) -(3722,451:9252213,7095585:9207808,485622,102891 -g3722,450:10820489,7095585 -k3722,451:15237944,7095585:3222078 -k3722,451:18460021,7095585:3222077 -) -(3722,452:6630773,7938729:11829248,485622,102891 -h3722,451:6630773,7938729:0,0,0 -r3722,541:6630773,7938729:0,588513,102891 -g3722,451:7941493,7938729 -g3722,451:7941493,7938729 -g3722,451:9011041,7938729 -g3722,451:9794195,7938729 -g3722,451:10964012,7938729 -g3722,451:12133829,7938729 -k3722,452:15695384,7938729:2764637 -k3722,452:18460021,7938729:2764637 -) -(3722,453:6630773,8781873:11829248,485622,102891 -h3722,452:6630773,8781873:0,0,0 -r3722,541:6630773,8781873:0,588513,102891 -g3722,452:7941493,8781873 -g3722,452:7941493,8781873 -g3722,452:9766014,8781873 -g3722,452:10935831,8781873 -g3722,452:12105648,8781873 -g3722,452:13275465,8781873 -k3722,453:16465432,8781873:1994590 -k3722,453:18460021,8781873:1994589 -) -(3722,454:6630773,9625017:11829248,426639,126483 -h3722,453:6630773,9625017:0,0,0 -k3722,454:14083855,9625017:4376167 -k3722,454:18460021,9625017:4376166 -) -(3722,455:6630773,10468160:11829248,485622,126483 -h3722,454:6630773,10468160:0,0,0 -r3722,541:6630773,10468160:0,612105,126483 -g3722,454:7941493,10468160 -g3722,454:7941493,10468160 -g3722,454:12068295,10468160 -k3722,455:16224916,10468160:2235105 -k3722,455:18460021,10468160:2235105 -) -(3722,456:6630773,11311304:11829248,513147,134348 -h3722,455:6630773,11311304:0,0,0 -r3722,541:6630773,11311304:0,647495,134348 -g3722,455:7941493,11311304 -g3722,455:7941493,11311304 -g3722,455:10744467,11311304 -g3722,455:12400561,11311304 -g3722,455:13968837,11311304 -k3722,456:16812118,11311304:1647904 -k3722,456:18460021,11311304:1647903 -) -(3722,457:6630773,12154448:11829248,485622,102891 -h3722,456:6630773,12154448:0,0,0 -r3722,541:6630773,12154448:0,588513,102891 -g3722,456:7941493,12154448 -g3722,456:7941493,12154448 -g3722,456:9248936,12154448 -k3722,457:14815237,12154448:3644785 -k3722,457:18460021,12154448:3644784 -) -(3722,458:6630773,12997592:11829248,485622,102891 -h3722,457:6630773,12997592:0,0,0 -g3722,457:7700321,12997592 -g3722,457:8483475,12997592 -g3722,457:9653292,12997592 -g3722,457:10823109,12997592 -g3722,457:11992926,12997592 -k3722,458:15824162,12997592:2635859 -k3722,458:18460021,12997592:2635859 -) -(3722,459:6630773,13840736:11829248,513147,102891 -h3722,458:6630773,13840736:0,0,0 -g3722,458:9741111,13840736 -g3722,458:10907651,13840736 -g3722,458:14383025,13840736 -k3722,459:17790243,13840736:669779 -k3722,459:18460021,13840736:669778 -) -(3722,463:6630773,15366837:11829248,505283,134348 -h3722,462:6630773,15366837:0,0,0 -k3722,463:14000624,15366837:4459397 -k3722,463:18460021,15366837:4459397 -) -(3722,464:6630773,16209981:11829248,505283,126483 -h3722,463:6630773,16209981:0,0,0 -r3722,541:6630773,16209981:0,631766,126483 -g3722,463:7941493,16209981 -g3722,463:7941493,16209981 -g3722,463:11250405,16209981 -k3722,464:15452902,16209981:3007120 -k3722,464:18460021,16209981:3007119 -) -(3722,465:6630773,17053125:11829248,505283,134348 -h3722,464:6630773,17053125:0,0,0 -r3722,541:6630773,17053125:0,639631,134348 -g3722,464:7941493,17053125 -g3722,464:7941493,17053125 -g3722,464:11867754,17053125 -k3722,465:15761576,17053125:2698445 -k3722,465:18460021,17053125:2698445 -) -(3722,466:6630773,17896269:11829248,505283,102891 -h3722,465:6630773,17896269:0,0,0 -r3722,541:6630773,17896269:0,608174,102891 -g3722,465:7941493,17896269 -g3722,465:7941493,17896269 -g3722,465:12055187,17896269 -k3722,466:15855293,17896269:2604729 -k3722,466:18460021,17896269:2604728 -) -(3722,467:6630773,18739412:11829248,505283,102891 -h3722,466:6630773,18739412:0,0,0 -r3722,541:6630773,18739412:0,608174,102891 -g3722,466:7941493,18739412 -g3722,466:7941493,18739412 -g3722,466:10826387,18739412 -k3722,467:15240893,18739412:3219129 -k3722,467:18460021,18739412:3219128 -) -(3722,468:6630773,19582556:11829248,505283,102891 -h3722,467:6630773,19582556:0,0,0 -r3722,541:6630773,19582556:0,608174,102891 -g3722,467:7941493,19582556 -g3722,467:7941493,19582556 -g3722,467:11891347,19582556 -g3722,467:13459623,19582556 -g3722,467:15027899,19582556 -g3722,467:16596175,19582556 -k3722,467:18460021,19582556:494799 -) -(3722,468:9252213,20424044:9207808,485622,11795 -k3722,468:14453806,20424044:4006216 -k3722,468:18460021,20424044:4006215 -) -(3722,469:6630773,21267188:11829248,505283,102891 -h3722,468:6630773,21267188:0,0,0 -r3722,541:6630773,21267188:0,608174,102891 -g3722,468:7941493,21267188 -g3722,468:7941493,21267188 -g3722,468:11387375,21267188 -g3722,468:12955651,21267188 -g3722,468:14523927,21267188 -k3722,469:17089663,21267188:1370359 -k3722,469:18460021,21267188:1370358 -) -(3722,470:6630773,22110332:11829248,505283,126483 -h3722,469:6630773,22110332:0,0,0 -r3722,541:6630773,22110332:0,631766,126483 -g3722,469:7941493,22110332 -g3722,469:7941493,22110332 -g3722,469:10766749,22110332 -g3722,469:12335025,22110332 -g3722,469:13903301,22110332 -k3722,470:16779350,22110332:1680672 -k3722,470:18460021,22110332:1680671 -) -(3722,471:6630773,22953476:11829248,505283,102891 -h3722,470:6630773,22953476:0,0,0 -r3722,541:6630773,22953476:0,608174,102891 -g3722,470:7941493,22953476 -g3722,470:7941493,22953476 -g3722,470:11418832,22953476 -k3722,471:15537115,22953476:2922906 -k3722,471:18460021,22953476:2922906 -) -(3722,473:6630773,23796620:11829248,505283,126483 -h3722,471:6630773,23796620:0,0,0 -r3722,541:6630773,23796620:0,631766,126483 -g3722,471:7941493,23796620 -g3722,471:7941493,23796620 -g3722,471:10353872,23796620 -g3722,471:11922148,23796620 -g3722,471:13490424,23796620 -g3722,471:15058700,23796620 -k3722,471:18460021,23796620:509217 -) -(3722,473:9252213,24638108:9207808,485622,102891 -g3722,471:10820489,24638108 -g3722,471:12388765,24638108 -g3722,471:13957041,24638108 -g3722,472:15525317,24638108 -k3722,473:17590358,24638108:869664 -k3722,473:18460021,24638108:869663 -) -(3722,474:6630773,25481252:11829248,505283,126483 -h3722,473:6630773,25481252:0,0,0 -r3722,541:6630773,25481252:0,631766,126483 -g3722,473:7941493,25481252 -g3722,473:7941493,25481252 -g3722,473:10598977,25481252 -k3722,474:15127188,25481252:3332834 -k3722,474:18460021,25481252:3332833 -) -(3722,475:6630773,26324395:11829248,513147,102891 -h3722,474:6630773,26324395:0,0,0 -r3722,541:6630773,26324395:0,616038,102891 -g3722,474:7941493,26324395 -g3722,474:7941493,26324395 -g3722,474:11664592,26324395 -k3722,475:15659995,26324395:2800026 -k3722,475:18460021,26324395:2800026 -) -(3722,476:6630773,27167539:11829248,513147,134348 -h3722,475:6630773,27167539:0,0,0 -r3722,541:6630773,27167539:0,647495,134348 -k3722,475:7941493,27167539:1310720 -k3722,475:7941493,27167539:0 -k3722,475:11005170,27167539:195822 -k3722,475:12570038,27167539:195821 -k3722,475:14134907,27167539:195822 -k3722,475:15699775,27167539:195821 -k3722,475:17264644,27167539:195822 -k3722,476:18460021,27167539:0 -k3722,476:18460021,27167539:0 -) -(3722,477:6630773,28010683:11829248,505283,134348 -h3722,476:6630773,28010683:0,0,0 -r3722,541:6630773,28010683:0,639631,134348 -g3722,476:7941493,28010683 -g3722,476:7941493,28010683 -g3722,476:12768219,28010683 -k3722,477:16211809,28010683:2248213 -k3722,477:18460021,28010683:2248212 -) -(3722,478:6630773,28853827:11829248,513147,134348 -h3722,477:6630773,28853827:0,0,0 -r3722,541:6630773,28853827:0,647495,134348 -g3722,477:7941493,28853827 -g3722,477:7941493,28853827 -g3722,477:11156688,28853827 -k3722,478:15406043,28853827:3053978 -k3722,478:18460021,28853827:3053978 -) -(3722,479:6630773,29696971:11829248,505283,134348 -h3722,478:6630773,29696971:0,0,0 -r3722,541:6630773,29696971:0,639631,134348 -g3722,478:7941493,29696971 -g3722,478:7941493,29696971 -g3722,478:11923460,29696971 -k3722,479:15789429,29696971:2670592 -k3722,479:18460021,29696971:2670592 -) -(3722,483:6630773,30540115:11829248,505283,134348 -h3722,479:6630773,30540115:0,0,0 -r3722,541:6630773,30540115:0,639631,134348 -g3722,479:7941493,30540115 -g3722,479:7941493,30540115 -g3722,479:11209773,30540115 -g3722,479:12778049,30540115 -g3722,479:14346325,30540115 -g3722,479:15914601,30540115 -k3722,479:18460021,30540115:1176373 -) -(3722,483:9252213,31381603:9207808,485622,102891 -g3722,479:12343546,31381603 -g3722,479:13911822,31381603 -g3722,480:15480098,31381603 -k3722,480:18460021,31381603:87819 -) -(3722,483:9252213,32223091:9207808,485622,102891 -g3722,480:10820489,32223091 -g3722,480:12388765,32223091 -g3722,480:13957041,32223091 -g3722,480:15525317,32223091 -k3722,480:18460021,32223091:42600 -) -(3722,483:9252213,33064579:9207808,485622,102891 -g3722,480:10820489,33064579 -g3722,480:12388765,33064579 -g3722,481:15480098,33064579 -g3722,481:17048374,33064579 -k3722,481:18460021,33064579:42600 -) -(3722,483:9252213,33906067:9207808,485622,102891 -k3722,481:10819965,33906067:198705 -k3722,481:12387717,33906067:198705 -k3722,481:13955470,33906067:198706 -k3722,481:15523222,33906067:198705 -k3722,481:17090974,33906067:198705 -k3722,481:18460021,33906067:0 -) -(3722,483:9252213,34747555:9207808,485622,102891 -g3722,481:10820489,34747555 -g3722,482:12388765,34747555 -g3722,482:13957041,34747555 -g3722,482:15525317,34747555 -k3722,483:17590358,34747555:869664 -k3722,483:18460021,34747555:869663 -) -(3722,484:6630773,35590699:11829248,505283,134348 -h3722,483:6630773,35590699:0,0,0 -r3722,541:6630773,35590699:0,639631,134348 -g3722,483:7941493,35590699 -g3722,483:7941493,35590699 -g3722,483:11428663,35590699 -g3722,483:12996939,35590699 -g3722,483:14565215,35590699 -g3722,483:16133491,35590699 -k3722,483:18460021,35590699:957483 -) -(3722,484:9252213,36432187:9207808,485622,102891 -g3722,483:10820489,36432187 -k3722,484:15237944,36432187:3222078 -k3722,484:18460021,36432187:3222077 -) -(3722,485:6630773,37275330:11829248,505283,134348 -h3722,484:6630773,37275330:0,0,0 -r3722,541:6630773,37275330:0,639631,134348 -g3722,484:7941493,37275330 -g3722,484:7941493,37275330 -g3722,484:10370912,37275330 -k3722,485:15013155,37275330:3446866 -k3722,485:18460021,37275330:3446866 -) -(3722,486:6630773,38118474:11829248,505283,134348 -h3722,485:6630773,38118474:0,0,0 -r3722,541:6630773,38118474:0,639631,134348 -g3722,485:7941493,38118474 -g3722,485:7941493,38118474 -g3722,485:11145547,38118474 -k3722,486:15400473,38118474:3059549 -k3722,486:18460021,38118474:3059548 -) -(3722,487:6630773,38961618:11829248,505283,134348 -h3722,486:6630773,38961618:0,0,0 -r3722,541:6630773,38961618:0,639631,134348 -g3722,486:7941493,38961618 -g3722,486:7941493,38961618 -g3722,486:11592503,38961618 -k3722,487:15623951,38961618:2836071 -k3722,487:18460021,38961618:2836070 -) -(3722,488:6630773,39804762:11829248,505283,134348 -h3722,487:6630773,39804762:0,0,0 -r3722,541:6630773,39804762:0,639631,134348 -g3722,487:7941493,39804762 -g3722,487:7941493,39804762 -g3722,487:10829664,39804762 -k3722,488:15242531,39804762:3217490 -k3722,488:18460021,39804762:3217490 -) -(3722,489:6630773,40647906:11829248,505283,134348 -h3722,488:6630773,40647906:0,0,0 -r3722,541:6630773,40647906:0,639631,134348 -g3722,488:7941493,40647906 -g3722,488:7941493,40647906 -g3722,488:10802139,40647906 -k3722,489:15228769,40647906:3231253 -k3722,489:18460021,40647906:3231252 -) -(3722,490:6630773,41491050:11829248,505283,134348 -h3722,489:6630773,41491050:0,0,0 -r3722,541:6630773,41491050:0,639631,134348 -g3722,489:7941493,41491050 -g3722,489:7941493,41491050 -g3722,489:10007187,41491050 -g3722,489:11575463,41491050 -g3722,489:13143739,41491050 -k3722,490:16399569,41491050:2060453 -k3722,490:18460021,41491050:2060452 -) -(3722,491:6630773,42334194:11829248,505283,134348 -h3722,490:6630773,42334194:0,0,0 -r3722,541:6630773,42334194:0,639631,134348 -g3722,490:7941493,42334194 -g3722,490:7941493,42334194 -g3722,490:11639033,42334194 -k3722,491:15647216,42334194:2812806 -k3722,491:18460021,42334194:2812805 -) -(3722,492:6630773,43177337:11829248,505283,102891 -h3722,491:6630773,43177337:0,0,0 -r3722,541:6630773,43177337:0,608174,102891 -g3722,491:7941493,43177337 -g3722,491:7941493,43177337 -g3722,491:10607497,43177337 -g3722,491:12175773,43177337 -g3722,491:13744049,43177337 -k3722,492:16699724,43177337:1760298 -k3722,492:18460021,43177337:1760297 -) -(3722,493:6630773,44020481:11829248,505283,102891 -h3722,492:6630773,44020481:0,0,0 -r3722,541:6630773,44020481:0,608174,102891 -g3722,492:7941493,44020481 -g3722,492:7941493,44020481 -g3722,492:10680897,44020481 -k3722,493:15168148,44020481:3291874 -k3722,493:18460021,44020481:3291873 -) -(3722,494:6630773,44863625:11829248,505283,134348 -h3722,493:6630773,44863625:0,0,0 -r3722,541:6630773,44863625:0,639631,134348 -g3722,493:7941493,44863625 -g3722,493:7941493,44863625 -g3722,493:11059040,44863625 -k3722,494:15357219,44863625:3102802 -k3722,494:18460021,44863625:3102802 -) -(3722,495:6630773,45706769:11829248,505283,102891 -h3722,494:6630773,45706769:0,0,0 -r3722,541:6630773,45706769:0,608174,102891 -g3722,494:7941493,45706769 -g3722,494:7941493,45706769 -g3722,494:10220179,45706769 -g3722,494:11389996,45706769 -g3722,494:12559813,45706769 -k3722,495:16107606,45706769:2352416 -k3722,495:18460021,45706769:2352415 -) -] -k3722,541:19606901,45706769:1146880 -r3722,541:19606901,45706769:0,40234515,126483 -k3722,541:20753781,45706769:1146880 -[3722,541:20753781,45706769:11829248,40108032,126483 -(3722,496:20753781,6254097:11829248,505283,102891 -h3722,495:20753781,6254097:0,0,0 -r3722,541:20753781,6254097:0,608174,102891 -g3722,495:22064501,6254097 -g3722,495:22064501,6254097 -g3722,495:24782934,6254097 -g3722,495:26351210,6254097 -g3722,495:27919486,6254097 -k3722,496:30848946,6254097:1734083 -k3722,496:32583029,6254097:1734083 -) -(3722,497:20753781,7113737:11829248,505283,102891 -h3722,496:20753781,7113737:0,0,0 -r3722,541:20753781,7113737:0,608174,102891 -g3722,496:22064501,7113737 -g3722,496:22064501,7113737 -g3722,496:26310578,7113737 -g3722,496:27480395,7113737 -g3722,496:28650212,7113737 -g3722,496:30218488,7113737 -k3722,496:32583029,7113737:995494 -) -(3722,497:23375221,7955225:9207808,485622,102891 -g3722,496:24943497,7955225 -k3722,497:29360952,7955225:3222078 -k3722,497:32583029,7955225:3222077 -) -(3722,498:20753781,8814865:11829248,505283,102891 -h3722,497:20753781,8814865:0,0,0 -r3722,541:20753781,8814865:0,608174,102891 -g3722,497:22064501,8814865 -g3722,497:22064501,8814865 -g3722,497:24432971,8814865 -k3722,498:29105689,8814865:3477341 -k3722,498:32583029,8814865:3477340 -) -(3722,499:20753781,9674504:11829248,505283,102891 -h3722,498:20753781,9674504:0,0,0 -r3722,541:20753781,9674504:0,608174,102891 -g3722,498:22064501,9674504 -g3722,498:22064501,9674504 -g3722,498:25702404,9674504 -g3722,498:27270680,9674504 -k3722,499:30524543,9674504:2058486 -k3722,499:32583029,9674504:2058486 -) -(3722,500:20753781,10534144:11829248,505283,134348 -h3722,499:20753781,10534144:0,0,0 -r3722,541:20753781,10534144:0,639631,134348 -g3722,499:22064501,10534144 -g3722,499:22064501,10534144 -g3722,499:25449435,10534144 -g3722,499:27017711,10534144 -g3722,499:30109044,10534144 -k3722,500:31943725,10534144:639304 -k3722,500:32583029,10534144:639304 -) -(3722,501:20753781,11393784:11829248,505283,102891 -h3722,500:20753781,11393784:0,0,0 -r3722,541:20753781,11393784:0,608174,102891 -g3722,500:22064501,11393784 -g3722,500:22064501,11393784 -g3722,500:26468519,11393784 -k3722,501:29924233,11393784:2658796 -k3722,501:32583029,11393784:2658796 -) -(3722,502:20753781,12253424:11829248,505283,102891 -h3722,501:20753781,12253424:0,0,0 -r3722,541:20753781,12253424:0,608174,102891 -g3722,501:22064501,12253424 -g3722,501:22064501,12253424 -g3722,501:28209811,12253424 -k3722,502:30994109,12253424:1588921 -k3722,502:32583029,12253424:1588920 -) -(3722,503:20753781,13113064:11829248,513147,102891 -h3722,502:20753781,13113064:0,0,0 -r3722,541:20753781,13113064:0,616038,102891 -g3722,502:22064501,13113064 -g3722,502:22064501,13113064 -g3722,502:24661692,13113064 -g3722,502:26229968,13113064 -g3722,502:27798244,13113064 -k3722,503:30788325,13113064:1794704 -k3722,503:32583029,13113064:1794704 -) -(3722,504:20753781,13972703:11829248,505283,102891 -h3722,503:20753781,13972703:0,0,0 -r3722,541:20753781,13972703:0,608174,102891 -g3722,503:22064501,13972703 -g3722,503:22064501,13972703 -g3722,503:24424452,13972703 -k3722,504:29101429,13972703:3481600 -k3722,504:32583029,13972703:3481600 -) -(3722,505:20753781,14832343:11829248,505283,126483 -h3722,504:20753781,14832343:0,0,0 -r3722,541:20753781,14832343:0,631766,126483 -g3722,504:22064501,14832343 -g3722,504:22064501,14832343 -g3722,504:26170986,14832343 -g3722,504:27739262,14832343 -k3722,505:30758834,14832343:1824195 -k3722,505:32583029,14832343:1824195 -) -(3722,506:20753781,15691983:11829248,505283,134348 -h3722,505:20753781,15691983:0,0,0 -r3722,541:20753781,15691983:0,639631,134348 -g3722,505:22064501,15691983 -g3722,505:22064501,15691983 -g3722,505:25781702,15691983 -k3722,506:29780054,15691983:2802975 -k3722,506:32583029,15691983:2802975 -) -(3722,507:20753781,16551623:11829248,505283,126483 -h3722,506:20753781,16551623:0,0,0 -r3722,541:20753781,16551623:0,631766,126483 -g3722,506:22064501,16551623 -g3722,506:22064501,16551623 -g3722,506:25717477,16551623 -g3722,506:27285753,16551623 -k3722,507:30532080,16551623:2050950 -k3722,507:32583029,16551623:2050949 -) -(3722,508:20753781,17411263:11829248,505283,126483 -h3722,507:20753781,17411263:0,0,0 -r3722,541:20753781,17411263:0,631766,126483 -g3722,507:22064501,17411263 -g3722,507:22064501,17411263 -g3722,507:24948084,17411263 -k3722,508:29363245,17411263:3219784 -k3722,508:32583029,17411263:3219784 -) -(3722,509:20753781,18270902:11829248,505283,126483 -h3722,508:20753781,18270902:0,0,0 -r3722,541:20753781,18270902:0,631766,126483 -g3722,508:22064501,18270902 -g3722,508:22064501,18270902 -g3722,508:24427728,18270902 -k3722,509:29103067,18270902:3479962 -k3722,509:32583029,18270902:3479962 -) -(3722,510:20753781,19130542:11829248,505283,102891 -h3722,509:20753781,19130542:0,0,0 -r3722,541:20753781,19130542:0,608174,102891 -g3722,509:22064501,19130542 -g3722,509:22064501,19130542 -g3722,509:25612619,19130542 -k3722,510:29695513,19130542:2887517 -k3722,510:32583029,19130542:2887516 -) -(3722,511:20753781,19990182:11829248,505283,102891 -h3722,510:20753781,19990182:0,0,0 -r3722,541:20753781,19990182:0,608174,102891 -g3722,510:22064501,19990182 -g3722,510:22064501,19990182 -g3722,510:24527343,19990182 -g3722,510:26095619,19990182 -g3722,510:27663895,19990182 -g3722,510:29232171,19990182 -g3722,510:30800447,19990182 -k3722,510:32583029,19990182:413535 -) -(3722,511:23375221,20831670:9207808,485622,102891 -g3722,510:24943497,20831670 -g3722,510:26511773,20831670 -k3722,511:30145090,20831670:2437940 -k3722,511:32583029,20831670:2437939 -) -(3722,512:20753781,21691310:11829248,505283,102891 -h3722,511:20753781,21691310:0,0,0 -r3722,541:20753781,21691310:0,608174,102891 -g3722,511:22064501,21691310 -g3722,511:22064501,21691310 -g3722,511:24850436,21691310 -g3722,511:26418712,21691310 -k3722,512:30098559,21691310:2484470 -k3722,512:32583029,21691310:2484470 -) -(3722,513:20753781,22550950:11829248,505283,126483 -h3722,512:20753781,22550950:0,0,0 -r3722,541:20753781,22550950:0,631766,126483 -g3722,512:22064501,22550950 -g3722,512:22064501,22550950 -g3722,512:24932356,22550950 -k3722,513:28956922,22550950:3626107 -k3722,513:32583029,22550950:3626107 -) -(3722,514:20753781,23410590:11829248,505283,126483 -h3722,513:20753781,23410590:0,0,0 -r3722,541:20753781,23410590:0,631766,126483 -g3722,513:22064501,23410590 -g3722,513:22064501,23410590 -g3722,513:25364238,23410590 -k3722,514:29571322,23410590:3011707 -k3722,514:32583029,23410590:3011707 -) -(3722,515:20753781,24270229:11829248,505283,126483 -h3722,514:20753781,24270229:0,0,0 -r3722,541:20753781,24270229:0,631766,126483 -g3722,514:22064501,24270229 -g3722,514:22064501,24270229 -g3722,514:25779081,24270229 -k3722,515:29778744,24270229:2804286 -k3722,515:32583029,24270229:2804285 -) -(3722,516:20753781,25129869:11829248,505283,102891 -h3722,515:20753781,25129869:0,0,0 -r3722,541:20753781,25129869:0,608174,102891 -g3722,515:22064501,25129869 -g3722,515:22064501,25129869 -g3722,515:25822335,25129869 -g3722,515:27390611,25129869 -k3722,516:30584509,25129869:1998521 -k3722,516:32583029,25129869:1998520 -) -(3722,517:20753781,25989509:11829248,505283,102891 -h3722,516:20753781,25989509:0,0,0 -r3722,541:20753781,25989509:0,608174,102891 -g3722,516:22064501,25989509 -g3722,516:22064501,25989509 -g3722,516:24533241,25989509 -k3722,517:29155824,25989509:3427206 -k3722,517:32583029,25989509:3427205 -) -(3722,518:20753781,26849149:11829248,505283,102891 -h3722,517:20753781,26849149:0,0,0 -r3722,541:20753781,26849149:0,608174,102891 -g3722,517:22064501,26849149 -g3722,517:22064501,26849149 -g3722,517:25656528,26849149 -k3722,518:29717467,26849149:2865562 -k3722,518:32583029,26849149:2865562 -) -(3722,519:20753781,27708789:11829248,505283,102891 -h3722,518:20753781,27708789:0,0,0 -r3722,541:20753781,27708789:0,608174,102891 -g3722,518:22064501,27708789 -g3722,518:22064501,27708789 -g3722,518:25277730,27708789 -k3722,519:29528068,27708789:3054961 -k3722,519:32583029,27708789:3054961 -) -(3722,520:20753781,28568428:11829248,505283,102891 -h3722,519:20753781,28568428:0,0,0 -r3722,541:20753781,28568428:0,608174,102891 -g3722,519:22064501,28568428 -g3722,519:22064501,28568428 -g3722,519:24770482,28568428 -g3722,519:26338758,28568428 -g3722,519:27907034,28568428 -k3722,520:30842720,28568428:1740309 -k3722,520:32583029,28568428:1740309 -) -(3722,521:20753781,29428068:11829248,513147,102891 -h3722,520:20753781,29428068:0,0,0 -r3722,541:20753781,29428068:0,616038,102891 -g3722,520:22064501,29428068 -g3722,520:22064501,29428068 -g3722,520:23425683,29428068 -g3722,520:24993959,29428068 -k3722,521:29386183,29428068:3196847 -k3722,521:32583029,29428068:3196846 -) -(3722,522:20753781,30287708:11829248,505283,102891 -h3722,521:20753781,30287708:0,0,0 -r3722,541:20753781,30287708:0,608174,102891 -g3722,521:22064501,30287708 -g3722,521:22064501,30287708 -g3722,521:25755488,30287708 -k3722,522:29766947,30287708:2816082 -k3722,522:32583029,30287708:2816082 -) -(3722,523:20753781,31147348:11829248,505283,102891 -h3722,522:20753781,31147348:0,0,0 -r3722,541:20753781,31147348:0,608174,102891 -g3722,522:22064501,31147348 -g3722,522:22064501,31147348 -g3722,522:24370712,31147348 -g3722,522:25938988,31147348 -k3722,523:29858697,31147348:2724332 -k3722,523:32583029,31147348:2724332 -) -(3722,524:20753781,32006988:11829248,505283,134348 -h3722,523:20753781,32006988:0,0,0 -r3722,541:20753781,32006988:0,639631,134348 -g3722,523:22064501,32006988 -g3722,523:22064501,32006988 -g3722,523:24970367,32006988 -k3722,524:29374387,32006988:3208643 -k3722,524:32583029,32006988:3208642 -) -(3722,525:20753781,32866627:11829248,505283,102891 -h3722,524:20753781,32866627:0,0,0 -r3722,541:20753781,32866627:0,608174,102891 -g3722,524:22064501,32866627 -g3722,524:22064501,32866627 -g3722,524:25140760,32866627 -g3722,524:26310577,32866627 -k3722,525:30044492,32866627:2538538 -k3722,525:32583029,32866627:2538537 -) -(3722,526:20753781,33726267:11829248,505283,102891 -h3722,525:20753781,33726267:0,0,0 -r3722,541:20753781,33726267:0,608174,102891 -g3722,525:22064501,33726267 -g3722,525:22064501,33726267 -g3722,525:24666279,33726267 -g3722,525:25836096,33726267 -g3722,525:27404372,33726267 -g3722,525:28972648,33726267 -g3722,525:30540924,33726267 -k3722,525:32583029,33726267:673058 -) -(3722,526:23375221,34567755:9207808,485622,11795 -k3722,526:28576814,34567755:4006216 -k3722,526:32583029,34567755:4006215 -) -(3722,527:20753781,35427395:11829248,505283,126483 -h3722,526:20753781,35427395:0,0,0 -r3722,541:20753781,35427395:0,631766,126483 -g3722,526:22064501,35427395 -g3722,526:22064501,35427395 -g3722,526:24782934,35427395 -k3722,527:29280670,35427395:3302359 -k3722,527:32583029,35427395:3302359 -) -(3722,528:20753781,36287035:11829248,505283,126483 -h3722,527:20753781,36287035:0,0,0 -r3722,541:20753781,36287035:0,631766,126483 -g3722,527:22064501,36287035 -g3722,527:22064501,36287035 -g3722,527:24309108,36287035 -g3722,527:25877384,36287035 -g3722,527:27445660,36287035 -g3722,527:30536993,36287035 -k3722,528:32157700,36287035:425330 -k3722,528:32583029,36287035:425329 -) -(3722,530:20753781,37146675:11829248,505283,126483 -h3722,528:20753781,37146675:0,0,0 -r3722,541:20753781,37146675:0,631766,126483 -k3722,528:22064501,37146675:1310720 -k3722,528:22064501,37146675:0 -k3722,528:25698308,37146675:185303 -k3722,528:26980684,37146675:185303 -k3722,528:28136575,37146675:185303 -k3722,528:29690925,37146675:185303 -k3722,528:32583029,37146675:0 -) -(3722,530:23375221,37988163:9207808,485622,102891 -g3722,528:24943497,37988163 -g3722,529:26511773,37988163 -g3722,529:28080049,37988163 -g3722,529:29648325,37988163 -k3722,529:32583029,37988163:42600 -) -(3722,530:23375221,38829651:9207808,485622,102891 -g3722,529:24943497,38829651 -g3722,529:26511773,38829651 -g3722,529:28080049,38829651 -g3722,529:29648325,38829651 -k3722,530:31713366,38829651:869664 -k3722,530:32583029,38829651:869663 -) -(3722,531:20753781,39689290:11829248,505283,102891 -h3722,530:20753781,39689290:0,0,0 -r3722,541:20753781,39689290:0,608174,102891 -g3722,530:22064501,39689290 -g3722,530:22064501,39689290 -g3722,530:24424452,39689290 -k3722,531:29101429,39689290:3481600 -k3722,531:32583029,39689290:3481600 -) -(3722,532:20753781,40548930:11829248,485622,134348 -h3722,531:20753781,40548930:0,0,0 -r3722,541:20753781,40548930:0,619970,134348 -g3722,531:22064501,40548930 -g3722,531:22064501,40548930 -g3722,531:24172794,40548930 -k3722,532:28975600,40548930:3607429 -k3722,532:32583029,40548930:3607429 -) -(3722,533:20753781,41408570:11829248,505283,102891 -h3722,532:20753781,41408570:0,0,0 -r3722,541:20753781,41408570:0,608174,102891 -g3722,532:22064501,41408570 -g3722,532:22064501,41408570 -g3722,532:24215392,41408570 -g3722,532:25783668,41408570 -g3722,532:27351944,41408570 -g3722,532:28920220,41408570 -k3722,533:31349313,41408570:1233716 -k3722,533:32583029,41408570:1233716 -) -(3722,534:20753781,42268210:11829248,505283,126483 -h3722,533:20753781,42268210:0,0,0 -r3722,541:20753781,42268210:0,631766,126483 -g3722,533:22064501,42268210 -g3722,533:22064501,42268210 -g3722,533:24666935,42268210 -g3722,533:26235211,42268210 -g3722,533:29326544,42268210 -g3722,533:30894820,42268210 -k3722,534:32336613,42268210:246416 -k3722,534:32583029,42268210:246416 -) -(3722,535:20753781,43127850:11829248,505283,102891 -h3722,534:20753781,43127850:0,0,0 -r3722,541:20753781,43127850:0,608174,102891 -g3722,534:22064501,43127850 -g3722,534:22064501,43127850 -g3722,534:24178036,43127850 -g3722,534:25746312,43127850 -k3722,535:29762359,43127850:2820670 -k3722,535:32583029,43127850:2820670 -) -(3722,536:20753781,43987489:11829248,505283,102891 -h3722,535:20753781,43987489:0,0,0 -r3722,541:20753781,43987489:0,608174,102891 -g3722,535:22064501,43987489 -g3722,535:22064501,43987489 -g3722,535:24469671,43987489 -k3722,536:29124039,43987489:3458991 -k3722,536:32583029,43987489:3458990 -) -(3722,537:20753781,44847129:11829248,505283,102891 -h3722,536:20753781,44847129:0,0,0 -g3722,536:23071133,44847129 -g3722,536:24240950,44847129 -g3722,536:25410767,44847129 -k3722,537:29395357,44847129:3187672 -k3722,537:32583029,44847129:3187672 -) -(3722,538:20753781,45706769:11829248,505283,126483 -h3722,537:20753781,45706769:0,0,0 -g3722,537:24860266,45706769 -g3722,537:26428542,45706769 -k3722,538:30103474,45706769:2479555 -k3722,538:32583029,45706769:2479555 -) -] -(3722,541:32583029,45706769:0,355205,126483 -h3722,541:32583029,45706769:420741,355205,126483 -k3722,541:32583029,45706769:-420741 -) -) -] -(3722,541:32583029,45706769:0,0,0 -g3722,541:32583029,45706769 -) -) -] -(3722,541:6630773,47279633:25952256,0,0 -h3722,541:6630773,47279633:25952256,0,0 -) -] -(3722,541:4262630,4025873:0,0,0 -[3722,541:-473656,4025873:0,0,0 -(3722,541:-473656,-710413:0,0,0 -(3722,541:-473656,-710413:0,0,0 -g3722,541:-473656,-710413 -) -g3722,541:-473656,-710413 -) -] -) -] -!30696 -}437 +[3763,615:3078558,4812305:0,0,0 +(3763,615:3078558,49800853:0,16384,2228224 +g3763,615:29030814,49800853 +g3763,615:36135244,49800853 +(3763,1:36135244,49800853:1720320,16384,2228224 +(3763,1:36135244,52029077:16384,1703936,0 +[3763,1:36135244,52029077:25952256,1703936,0 +(3763,1:36135244,51504789:25952256,1179648,0 +(3763,1:36135244,51504789:16384,1179648,0 +r3763,615:36151628,51504789:16384,1179648,0 +) +k3763,1:62087500,51504789:25935872 +g3763,1:62087500,51504789 +) +] +) +g3763,1:36675916,49800853 +(3763,1:36675916,49800853:1179648,16384,0 +r3763,615:37855564,49800853:1179648,16384,0 +) +) +k3763,615:3078556,49800853:-34777008 +) +] +g3763,615:6630773,4812305 +g3763,615:6630773,4812305 +g3763,615:9313817,4812305 +g3763,615:11211739,4812305 +k3763,615:31387651,4812305:20175912 +) +) +] +[3763,615:6630773,45706769:25952256,40108032,0 +(3763,615:6630773,45706769:25952256,40108032,0 +(3763,615:6630773,45706769:0,0,0 +g3763,615:6630773,45706769 +) +[3763,615:6630773,45706769:25952256,40108032,0 +(3763,615:6630773,45706769:25952256,40108032,126483 +[3763,615:6630773,45706769:11829248,40108032,102891 +(3763,524:6630773,6254097:11829248,505283,134348 +h3763,523:6630773,6254097:0,0,0 +r3763,615:6630773,6254097:0,639631,134348 +g3763,523:7941493,6254097 +g3763,523:7941493,6254097 +g3763,523:10847359,6254097 +k3763,524:15251379,6254097:3208643 +k3763,524:18460021,6254097:3208642 +) +(3763,525:6630773,7131655:11829248,505283,102891 +h3763,524:6630773,7131655:0,0,0 +r3763,615:6630773,7131655:0,608174,102891 +g3763,524:7941493,7131655 +g3763,524:7941493,7131655 +g3763,524:11017752,7131655 +g3763,524:12187569,7131655 +k3763,525:15921484,7131655:2538538 +k3763,525:18460021,7131655:2538537 +) +(3763,526:6630773,8009213:11829248,505283,102891 +h3763,525:6630773,8009213:0,0,0 +r3763,615:6630773,8009213:0,608174,102891 +g3763,525:7941493,8009213 +g3763,525:7941493,8009213 +g3763,525:10543271,8009213 +g3763,525:11713088,8009213 +g3763,525:12882905,8009213 +g3763,525:14052722,8009213 +g3763,525:15620998,8009213 +g3763,525:17189274,8009213 +k3763,526:18422336,8009213:37685 +k3763,526:18460021,8009213:37685 +) +(3763,527:6630773,8886771:11829248,505283,126483 +h3763,526:6630773,8886771:0,0,0 +r3763,615:6630773,8886771:0,631766,126483 +g3763,526:7941493,8886771 +g3763,526:7941493,8886771 +g3763,526:10659926,8886771 +k3763,527:15157662,8886771:3302359 +k3763,527:18460021,8886771:3302359 +) +(3763,528:6630773,9764329:11829248,505283,126483 +h3763,527:6630773,9764329:0,0,0 +r3763,615:6630773,9764329:0,631766,126483 +g3763,527:7941493,9764329 +g3763,527:7941493,9764329 +g3763,527:10186100,9764329 +g3763,527:11754376,9764329 +g3763,527:13322652,9764329 +g3763,527:16413985,9764329 +k3763,528:18034692,9764329:425330 +k3763,528:18460021,9764329:425329 +) +(3763,530:6630773,10641887:11829248,505283,126483 +h3763,528:6630773,10641887:0,0,0 +r3763,615:6630773,10641887:0,631766,126483 +k3763,528:7941493,10641887:1310720 +k3763,528:7941493,10641887:0 +k3763,528:11575300,10641887:185303 +k3763,528:12857676,10641887:185303 +k3763,528:14013567,10641887:185303 +k3763,528:15567917,10641887:185303 +k3763,528:18460021,10641887:0 +) +(3763,530:9252213,11506967:9207808,485622,102891 +g3763,528:10820489,11506967 +g3763,528:12388765,11506967 +g3763,529:13957041,11506967 +g3763,529:15525317,11506967 +k3763,529:18460021,11506967:42600 +) +(3763,530:9252213,12372047:9207808,485622,102891 +g3763,529:10820489,12372047 +g3763,529:12388765,12372047 +g3763,529:13957041,12372047 +g3763,529:15525317,12372047 +k3763,530:17590358,12372047:869664 +k3763,530:18460021,12372047:869663 +) +(3763,531:6630773,13249604:11829248,505283,102891 +h3763,530:6630773,13249604:0,0,0 +r3763,615:6630773,13249604:0,608174,102891 +g3763,530:7941493,13249604 +g3763,530:7941493,13249604 +g3763,530:10301444,13249604 +k3763,531:14978421,13249604:3481600 +k3763,531:18460021,13249604:3481600 +) +(3763,532:6630773,14127162:11829248,485622,134348 +h3763,531:6630773,14127162:0,0,0 +r3763,615:6630773,14127162:0,619970,134348 +g3763,531:7941493,14127162 +g3763,531:7941493,14127162 +g3763,531:10049786,14127162 +k3763,532:14852592,14127162:3607429 +k3763,532:18460021,14127162:3607429 +) +(3763,533:6630773,15004720:11829248,505283,102891 +h3763,532:6630773,15004720:0,0,0 +r3763,615:6630773,15004720:0,608174,102891 +g3763,532:7941493,15004720 +g3763,532:7941493,15004720 +g3763,532:10092384,15004720 +g3763,532:11660660,15004720 +g3763,532:13228936,15004720 +g3763,532:14797212,15004720 +k3763,533:17226305,15004720:1233716 +k3763,533:18460021,15004720:1233716 +) +(3763,534:6630773,15882278:11829248,505283,126483 +h3763,533:6630773,15882278:0,0,0 +r3763,615:6630773,15882278:0,631766,126483 +g3763,533:7941493,15882278 +g3763,533:7941493,15882278 +g3763,533:10543927,15882278 +g3763,533:12112203,15882278 +g3763,533:15203536,15882278 +g3763,533:16771812,15882278 +k3763,534:18213605,15882278:246416 +k3763,534:18460021,15882278:246416 +) +(3763,535:6630773,16759836:11829248,505283,102891 +h3763,534:6630773,16759836:0,0,0 +r3763,615:6630773,16759836:0,608174,102891 +g3763,534:7941493,16759836 +g3763,534:7941493,16759836 +g3763,534:10055028,16759836 +g3763,534:11623304,16759836 +k3763,535:15639351,16759836:2820670 +k3763,535:18460021,16759836:2820670 +) +(3763,536:6630773,17637394:11829248,505283,102891 +h3763,535:6630773,17637394:0,0,0 +r3763,615:6630773,17637394:0,608174,102891 +g3763,535:7941493,17637394 +g3763,535:7941493,17637394 +g3763,535:10346663,17637394 +k3763,536:15001031,17637394:3458991 +k3763,536:18460021,17637394:3458990 +) +(3763,537:6630773,18514952:11829248,505283,102891 +h3763,536:6630773,18514952:0,0,0 +g3763,536:8948125,18514952 +g3763,536:10117942,18514952 +g3763,536:11287759,18514952 +k3763,537:15272349,18514952:3187672 +k3763,537:18460021,18514952:3187672 +) +(3763,538:6630773,19392510:11829248,505283,126483 +h3763,537:6630773,19392510:0,0,0 +g3763,537:10737258,19392510 +g3763,537:12305534,19392510 +k3763,538:15980466,19392510:2479555 +k3763,538:18460021,19392510:2479555 +) +(3763,539:6630773,20270068:11829248,505283,126483 +h3763,538:6630773,20270068:0,0,0 +g3763,538:8322257,20270068 +g3763,538:9488797,20270068 +g3763,538:12529667,20270068 +k3763,538:18460021,20270068:2002781 +) +(3763,539:9252213,21135148:9207808,505283,126483 +k3763,539:15133414,21135148:3326608 +k3763,539:18460021,21135148:3326607 +) +(3763,540:6630773,22012706:11829248,505283,102891 +h3763,539:6630773,22012706:0,0,0 +g3763,539:8188563,22012706 +k3763,540:13722751,22012706:4737270 +k3763,540:18460021,22012706:4737270 +) +(3763,541:6630773,22890263:11829248,485622,126483 +h3763,540:6630773,22890263:0,0,0 +g3763,540:8220021,22890263 +g3763,540:11339534,22890263 +g3763,540:12907810,22890263 +k3763,541:16281604,22890263:2178417 +k3763,541:18460021,22890263:2178417 +) +(3763,542:6630773,23767821:11829248,473825,126483 +h3763,541:6630773,23767821:0,0,0 +k3763,542:13405557,23767821:5054464 +k3763,542:18460021,23767821:5054464 +) +(3763,543:6630773,24645379:11829248,505283,102891 +h3763,542:6630773,24645379:0,0,0 +r3763,615:6630773,24645379:0,608174,102891 +g3763,542:7941493,24645379 +g3763,542:7941493,24645379 +g3763,542:9574650,24645379 +g3763,542:10392539,24645379 +k3763,543:15785497,24645379:2674525 +k3763,543:18460021,24645379:2674524 +) +(3763,544:6630773,25522937:11829248,505283,126483 +h3763,543:6630773,25522937:0,0,0 +r3763,615:6630773,25522937:0,631766,126483 +g3763,543:7941493,25522937 +g3763,543:7941493,25522937 +g3763,543:11911008,25522937 +g3763,543:12726275,25522937 +g3763,543:14132677,25522937 +k3763,544:16894038,25522937:1565984 +k3763,544:18460021,25522937:1565983 +) +(3763,545:6630773,26400495:11829248,505283,126483 +h3763,544:6630773,26400495:0,0,0 +r3763,615:6630773,26400495:0,631766,126483 +g3763,544:7941493,26400495 +g3763,544:7941493,26400495 +g3763,544:11224846,26400495 +k3763,545:16201650,26400495:2258371 +k3763,545:18460021,26400495:2258371 +) +(3763,546:6630773,27278053:11829248,485622,126483 +h3763,545:6630773,27278053:0,0,0 +r3763,615:6630773,27278053:0,612105,126483 +g3763,545:7941493,27278053 +g3763,545:7941493,27278053 +g3763,545:10188722,27278053 +k3763,546:15683588,27278053:2776433 +k3763,546:18460021,27278053:2776433 +) +(3763,547:6630773,28155611:11829248,505283,134348 +h3763,546:6630773,28155611:0,0,0 +g3763,546:10347974,28155611 +k3763,547:15001686,28155611:3458335 +k3763,547:18460021,28155611:3458335 +) +(3763,548:6630773,29033169:11829248,505283,126483 +h3763,547:6630773,29033169:0,0,0 +g3763,547:9928544,29033169 +k3763,548:14791971,29033169:3668050 +k3763,548:18460021,29033169:3668050 +) +(3763,549:6630773,29910727:11829248,505283,126483 +h3763,548:6630773,29910727:0,0,0 +k3763,549:13349196,29910727:5110825 +k3763,549:18460021,29910727:5110825 +) +(3763,550:6630773,30788285:11829248,505283,102891 +h3763,549:6630773,30788285:0,0,0 +r3763,615:6630773,30788285:0,608174,102891 +g3763,549:7941493,30788285 +g3763,549:7941493,30788285 +g3763,549:11488956,30788285 +k3763,550:15572177,30788285:2887844 +k3763,550:18460021,30788285:2887844 +) +(3763,551:6630773,31665843:11829248,485622,126483 +h3763,550:6630773,31665843:0,0,0 +r3763,615:6630773,31665843:0,612105,126483 +g3763,550:7941493,31665843 +g3763,550:7941493,31665843 +g3763,550:9393115,31665843 +g3763,550:12380246,31665843 +k3763,551:16017822,31665843:2442199 +k3763,551:18460021,31665843:2442199 +) +(3763,552:6630773,32543400:11829248,505283,134348 +h3763,551:6630773,32543400:0,0,0 +r3763,615:6630773,32543400:0,639631,134348 +g3763,551:7941493,32543400 +g3763,551:7941493,32543400 +g3763,551:9574650,32543400 +g3763,551:10218868,32543400 +g3763,551:13310856,32543400 +k3763,552:16483127,32543400:1976894 +k3763,552:18460021,32543400:1976894 +) +(3763,553:6630773,33420958:11829248,505283,126483 +h3763,552:6630773,33420958:0,0,0 +r3763,615:6630773,33420958:0,631766,126483 +g3763,552:7941493,33420958 +g3763,552:7941493,33420958 +g3763,552:10395816,33420958 +g3763,552:12927471,33420958 +k3763,553:16291435,33420958:2168587 +k3763,553:18460021,33420958:2168586 +) +(3763,554:6630773,34298516:11829248,505283,126483 +h3763,553:6630773,34298516:0,0,0 +r3763,615:6630773,34298516:0,631766,126483 +g3763,553:7941493,34298516 +g3763,553:7941493,34298516 +g3763,553:9300709,34298516 +g3763,553:10691383,34298516 +g3763,553:13716524,34298516 +g3763,553:15366720,34298516 +k3763,554:18272587,34298516:187434 +k3763,554:18460021,34298516:187434 +) +(3763,555:6630773,35176074:11829248,505283,126483 +h3763,554:6630773,35176074:0,0,0 +r3763,615:6630773,35176074:0,631766,126483 +g3763,554:7941493,35176074 +g3763,554:7941493,35176074 +g3763,554:10309308,35176074 +g3763,554:11959504,35176074 +k3763,555:15807451,35176074:2652570 +k3763,555:18460021,35176074:2652570 +) +(3763,556:6630773,36053632:11829248,485622,126483 +h3763,555:6630773,36053632:0,0,0 +r3763,615:6630773,36053632:0,612105,126483 +g3763,555:7941493,36053632 +g3763,555:7941493,36053632 +g3763,555:10692039,36053632 +k3763,556:15935247,36053632:2524775 +k3763,556:18460021,36053632:2524774 +) +(3763,557:6630773,36931190:11829248,505283,102891 +h3763,556:6630773,36931190:0,0,0 +r3763,615:6630773,36931190:0,608174,102891 +g3763,556:7941493,36931190 +g3763,556:7941493,36931190 +g3763,556:10735292,36931190 +k3763,557:15956873,36931190:2503148 +k3763,557:18460021,36931190:2503148 +) +(3763,558:6630773,37808748:11829248,505283,126483 +h3763,557:6630773,37808748:0,0,0 +r3763,615:6630773,37808748:0,631766,126483 +g3763,557:7941493,37808748 +g3763,557:7941493,37808748 +g3763,557:10523611,37808748 +g3763,557:12173807,37808748 +k3763,558:16676131,37808748:1783891 +k3763,558:18460021,37808748:1783890 +) +(3763,559:6630773,38686306:11829248,485622,134348 +h3763,558:6630773,38686306:0,0,0 +r3763,615:6630773,38686306:0,619970,134348 +g3763,558:7941493,38686306 +g3763,558:7941493,38686306 +g3763,558:11798286,38686306 +k3763,559:16488370,38686306:1971651 +k3763,559:18460021,38686306:1971651 +) +(3763,560:6630773,39563864:11829248,505283,134348 +h3763,559:6630773,39563864:0,0,0 +r3763,615:6630773,39563864:0,639631,134348 +g3763,559:7941493,39563864 +g3763,559:7941493,39563864 +g3763,559:11421454,39563864 +g3763,559:13938036,39563864 +k3763,560:16796717,39563864:1663304 +k3763,560:18460021,39563864:1663304 +) +(3763,561:6630773,40441422:11829248,505283,126483 +h3763,560:6630773,40441422:0,0,0 +r3763,615:6630773,40441422:0,631766,126483 +g3763,560:7941493,40441422 +g3763,560:7941493,40441422 +g3763,560:11969335,40441422 +g3763,560:14416449,40441422 +k3763,561:17035924,40441422:1424098 +k3763,561:18460021,40441422:1424097 +) +(3763,562:6630773,41318980:11829248,505283,102891 +h3763,561:6630773,41318980:0,0,0 +r3763,615:6630773,41318980:0,608174,102891 +g3763,561:7941493,41318980 +g3763,561:7941493,41318980 +g3763,561:9530085,41318980 +g3763,561:13411127,41318980 +k3763,562:17294791,41318980:1165231 +k3763,562:18460021,41318980:1165230 +) +(3763,563:6630773,42196537:11829248,505283,126483 +h3763,562:6630773,42196537:0,0,0 +r3763,615:6630773,42196537:0,631766,126483 +g3763,562:7941493,42196537 +g3763,562:7941493,42196537 +g3763,562:10473148,42196537 +k3763,563:15105233,42196537:3354788 +k3763,563:18460021,42196537:3354788 +) +(3763,564:6630773,43074095:11829248,505283,102891 +h3763,563:6630773,43074095:0,0,0 +r3763,615:6630773,43074095:0,608174,102891 +g3763,563:8596853,43074095 +g3763,563:8596853,43074095 +g3763,563:9194541,43074095 +g3763,563:12912398,43074095 +k3763,564:16283898,43074095:2176123 +k3763,564:18460021,43074095:2176123 +) +(3763,565:6630773,43951653:11829248,505283,102891 +h3763,564:6630773,43951653:0,0,0 +r3763,615:6630773,43951653:0,608174,102891 +g3763,564:8596853,43951653 +g3763,564:8596853,43951653 +g3763,564:9194541,43951653 +g3763,564:13242699,43951653 +k3763,565:17210577,43951653:1249445 +k3763,565:18460021,43951653:1249444 +) +(3763,566:6630773,44829211:11829248,505283,126483 +h3763,565:6630773,44829211:0,0,0 +r3763,615:6630773,44829211:0,631766,126483 +g3763,565:7941493,44829211 +g3763,565:7941493,44829211 +g3763,565:9212891,44829211 +g3763,565:10863087,44829211 +k3763,566:16020771,44829211:2439251 +k3763,566:18460021,44829211:2439250 +) +(3763,567:6630773,45706769:11829248,505283,102891 +h3763,566:6630773,45706769:0,0,0 +r3763,615:6630773,45706769:0,608174,102891 +g3763,566:7941493,45706769 +g3763,566:7941493,45706769 +g3763,566:9747665,45706769 +g3763,566:11495510,45706769 +k3763,567:15575454,45706769:2884567 +k3763,567:18460021,45706769:2884567 +) +] +k3763,615:19606901,45706769:1146880 +r3763,615:19606901,45706769:0,40234515,126483 +k3763,615:20753781,45706769:1146880 +[3763,615:20753781,45706769:11829248,40108032,126483 +(3763,568:20753781,6254097:11829248,513147,126483 +h3763,567:20753781,6254097:0,0,0 +r3763,615:20753781,6254097:0,639630,126483 +g3763,567:22064501,6254097 +g3763,567:22064501,6254097 +g3763,567:25433051,6254097 +g3763,567:27083247,6254097 +k3763,568:31192355,6254097:1390675 +k3763,568:32583029,6254097:1390674 +) +(3763,569:20753781,7131365:11829248,513147,102891 +h3763,568:20753781,7131365:0,0,0 +r3763,615:20753781,7131365:0,616038,102891 +g3763,568:22064501,7131365 +g3763,568:22064501,7131365 +g3763,568:23976186,7131365 +g3763,568:26420678,7131365 +k3763,569:30861070,7131365:1721959 +k3763,569:32583029,7131365:1721959 +) +(3763,570:20753781,8008632:11829248,513147,102891 +h3763,569:20753781,8008632:0,0,0 +r3763,615:20753781,8008632:0,616038,102891 +g3763,569:22064501,8008632 +g3763,569:22064501,8008632 +g3763,569:24098738,8008632 +k3763,570:28938572,8008632:3644457 +k3763,570:32583029,8008632:3644457 +) +(3763,571:20753781,8885900:11829248,505283,134348 +h3763,570:20753781,8885900:0,0,0 +r3763,615:20753781,8885900:0,639631,134348 +g3763,570:22064501,8885900 +g3763,570:22064501,8885900 +g3763,570:26003870,8885900 +k3763,571:30652666,8885900:1930363 +k3763,571:32583029,8885900:1930363 +) +(3763,572:20753781,9763168:11829248,505283,134348 +h3763,571:20753781,9763168:0,0,0 +r3763,615:20753781,9763168:0,639631,134348 +g3763,571:22064501,9763168 +g3763,571:22064501,9763168 +g3763,571:23814312,9763168 +g3763,571:26963316,9763168 +g3763,571:29626043,9763168 +k3763,572:32463753,9763168:119277 +k3763,572:32583029,9763168:119276 +) +(3763,573:20753781,10640436:11829248,505283,126483 +h3763,572:20753781,10640436:0,0,0 +r3763,615:20753781,10640436:0,631766,126483 +g3763,572:22064501,10640436 +g3763,572:22064501,10640436 +g3763,572:23814312,10640436 +g3763,572:25794810,10640436 +k3763,573:30548136,10640436:2034893 +k3763,573:32583029,10640436:2034893 +) +(3763,574:20753781,11517703:11829248,505283,102891 +h3763,573:20753781,11517703:0,0,0 +r3763,615:20753781,11517703:0,608174,102891 +g3763,573:22064501,11517703 +g3763,573:22064501,11517703 +g3763,573:23814312,11517703 +g3763,573:26083168,11517703 +k3763,574:30692315,11517703:1890714 +k3763,574:32583029,11517703:1890714 +) +(3763,575:20753781,12394971:11829248,485622,102891 +h3763,574:20753781,12394971:0,0,0 +r3763,615:20753781,12394971:0,588513,102891 +g3763,574:22064501,12394971 +g3763,574:22064501,12394971 +g3763,574:24318284,12394971 +k3763,575:29809873,12394971:2773156 +k3763,575:32583029,12394971:2773156 +) +(3763,576:20753781,13272239:11829248,485622,102891 +h3763,575:20753781,13272239:0,0,0 +r3763,615:20753781,13272239:0,588513,102891 +g3763,575:22064501,13272239 +g3763,575:22064501,13272239 +g3763,575:24144613,13272239 +g3763,575:25030004,13272239 +g3763,575:29193506,13272239 +k3763,576:32247484,13272239:335545 +k3763,576:32583029,13272239:335545 +) +(3763,577:20753781,14149506:11829248,505283,102891 +h3763,576:20753781,14149506:0,0,0 +r3763,615:20753781,14149506:0,608174,102891 +g3763,576:22064501,14149506 +g3763,576:22064501,14149506 +g3763,576:24281584,14149506 +k3763,577:29791523,14149506:2791506 +k3763,577:32583029,14149506:2791506 +) +(3763,578:20753781,15026774:11829248,505283,126483 +h3763,577:20753781,15026774:0,0,0 +r3763,615:20753781,15026774:0,631766,126483 +g3763,577:22064501,15026774 +g3763,577:22064501,15026774 +g3763,577:24325493,15026774 +g3763,577:25893769,15026774 +k3763,578:29836088,15026774:2746942 +k3763,578:32583029,15026774:2746941 +) +(3763,579:20753781,15904042:11829248,505283,126483 +h3763,578:20753781,15904042:0,0,0 +r3763,615:20753781,15904042:0,631766,126483 +g3763,578:22064501,15904042 +g3763,578:22064501,15904042 +g3763,578:23432237,15904042 +g3763,578:25082433,15904042 +k3763,579:29430420,15904042:3152610 +k3763,579:32583029,15904042:3152609 +) +(3763,580:20753781,16781310:11829248,485622,134348 +h3763,579:20753781,16781310:0,0,0 +r3763,615:20753781,16781310:0,619970,134348 +g3763,579:22064501,16781310 +g3763,579:22064501,16781310 +g3763,579:24149201,16781310 +g3763,579:25600823,16781310 +g3763,579:29290499,16781310 +k3763,580:31534453,16781310:1048577 +k3763,580:32583029,16781310:1048576 +) +(3763,581:20753781,17658577:11829248,505283,126483 +h3763,580:20753781,17658577:0,0,0 +r3763,615:20753781,17658577:0,631766,126483 +g3763,580:22064501,17658577 +g3763,580:22064501,17658577 +g3763,580:23990604,17658577 +g3763,580:25381278,17658577 +g3763,580:27706495,17658577 +g3763,580:29686993,17658577 +k3763,581:31732700,17658577:850330 +k3763,581:32583029,17658577:850329 +) +(3763,582:20753781,18535845:11829248,505283,126483 +h3763,581:20753781,18535845:0,0,0 +r3763,615:20753781,18535845:0,631766,126483 +g3763,581:22064501,18535845 +g3763,581:22064501,18535845 +g3763,581:23911305,18535845 +g3763,581:28054491,18535845 +k3763,582:31677977,18535845:905053 +k3763,582:32583029,18535845:905052 +) +(3763,583:20753781,19413113:11829248,505283,102891 +h3763,582:20753781,19413113:0,0,0 +r3763,615:20753781,19413113:0,608174,102891 +g3763,582:22064501,19413113 +g3763,582:22064501,19413113 +g3763,582:24241607,19413113 +g3763,582:25230545,19413113 +k3763,583:30266004,19413113:2317026 +k3763,583:32583029,19413113:2317025 +) +(3763,584:20753781,20290381:11829248,485622,102891 +h3763,583:20753781,20290381:0,0,0 +r3763,615:20753781,20290381:0,588513,102891 +g3763,583:22064501,20290381 +g3763,583:22064501,20290381 +g3763,583:24505717,20290381 +k3763,584:29142062,20290381:3440968 +k3763,584:32583029,20290381:3440967 +) +(3763,585:20753781,21167648:11829248,505283,102891 +h3763,584:20753781,21167648:0,0,0 +r3763,615:20753781,21167648:0,608174,102891 +g3763,584:22064501,21167648 +g3763,584:22064501,21167648 +g3763,584:25127653,21167648 +k3763,585:29453030,21167648:3130000 +k3763,585:32583029,21167648:3129999 +) +(3763,586:20753781,22044916:11829248,505283,102891 +h3763,585:20753781,22044916:0,0,0 +r3763,615:20753781,22044916:0,608174,102891 +g3763,585:22064501,22044916 +g3763,585:22064501,22044916 +g3763,585:24963158,22044916 +g3763,585:29370454,22044916 +k3763,586:32335958,22044916:247071 +k3763,586:32583029,22044916:247071 +) +(3763,587:20753781,22922184:11829248,513147,126483 +h3763,586:20753781,22922184:0,0,0 +r3763,615:20753781,22922184:0,639630,126483 +g3763,586:22064501,22922184 +g3763,586:22064501,22922184 +g3763,586:24422486,22922184 +g3763,586:25273143,22922184 +g3763,586:26959384,22922184 +k3763,587:30368895,22922184:2214134 +k3763,587:32583029,22922184:2214134 +) +(3763,588:20753781,23799451:11829248,485622,126483 +h3763,587:20753781,23799451:0,0,0 +r3763,615:20753781,23799451:0,612105,126483 +g3763,587:22064501,23799451 +g3763,587:22064501,23799451 +g3763,587:23501705,23799451 +g3763,587:26033360,23799451 +k3763,588:29905883,23799451:2677146 +k3763,588:32583029,23799451:2677146 +) +(3763,589:20753781,24676719:11829248,505283,126483 +h3763,588:20753781,24676719:0,0,0 +r3763,615:20753781,24676719:0,631766,126483 +g3763,588:22064501,24676719 +g3763,588:22064501,24676719 +g3763,588:23233007,24676719 +g3763,588:25585749,24676719 +k3763,589:29682078,24676719:2900952 +k3763,589:32583029,24676719:2900951 +) +(3763,590:20753781,25553987:11829248,513147,126483 +h3763,589:20753781,25553987:0,0,0 +r3763,615:20753781,25553987:0,639630,126483 +g3763,589:22064501,25553987 +g3763,589:22064501,25553987 +g3763,589:23871328,25553987 +g3763,589:24729849,25553987 +g3763,589:28128546,25553987 +k3763,590:31715004,25553987:868025 +k3763,590:32583029,25553987:868025 +) +(3763,591:20753781,26431255:11829248,485622,126483 +h3763,590:20753781,26431255:0,0,0 +r3763,615:20753781,26431255:0,612105,126483 +g3763,590:22064501,26431255 +g3763,590:22064501,26431255 +g3763,590:25452057,26431255 +g3763,590:27983712,26431255 +k3763,591:30881059,26431255:1701970 +k3763,591:32583029,26431255:1701970 +) +(3763,592:20753781,27308522:11829248,485622,134348 +h3763,591:20753781,27308522:0,0,0 +r3763,615:20753781,27308522:0,619970,134348 +g3763,591:22064501,27308522 +g3763,591:22064501,27308522 +g3763,591:25009689,27308522 +k3763,592:29394048,27308522:3188982 +k3763,592:32583029,27308522:3188981 +) +(3763,593:20753781,28185790:11829248,473825,134348 +h3763,592:20753781,28185790:0,0,0 +r3763,615:20753781,28185790:0,608173,134348 +g3763,592:22064501,28185790 +g3763,592:22064501,28185790 +g3763,592:26153292,28185790 +k3763,592:32583029,28185790:2221670 +) +(3763,593:23375221,29050870:9207808,485622,11795 +k3763,593:29338342,29050870:3244688 +k3763,593:32583029,29050870:3244687 +) +(3763,594:20753781,29928138:11829248,513147,102891 +h3763,593:20753781,29928138:0,0,0 +r3763,615:20753781,29928138:0,616038,102891 +g3763,593:22064501,29928138 +g3763,593:22064501,29928138 +g3763,593:25242997,29928138 +g3763,593:27114705,29928138 +k3763,594:30446556,29928138:2136474 +k3763,594:32583029,29928138:2136473 +) +(3763,595:20753781,30805405:11829248,505283,134348 +h3763,594:20753781,30805405:0,0,0 +r3763,615:20753781,30805405:0,639631,134348 +g3763,594:22064501,30805405 +g3763,594:22064501,30805405 +g3763,594:25534632,30805405 +k3763,595:30418047,30805405:2164982 +k3763,595:32583029,30805405:2164982 +) +(3763,596:20753781,31682673:11829248,513147,134348 +h3763,595:20753781,31682673:0,0,0 +r3763,615:20753781,31682673:0,647495,134348 +g3763,595:22064501,31682673 +g3763,595:22064501,31682673 +g3763,595:24634823,31682673 +g3763,595:26486215,31682673 +g3763,595:27518407,31682673 +k3763,596:30648407,31682673:1934623 +k3763,596:32583029,31682673:1934622 +) +(3763,597:20753781,32559941:11829248,485622,134348 +h3763,596:20753781,32559941:0,0,0 +r3763,615:20753781,32559941:0,619970,134348 +g3763,596:22064501,32559941 +g3763,596:22064501,32559941 +g3763,596:23341142,32559941 +g3763,596:26342690,32559941 +k3763,597:30822076,32559941:1760953 +k3763,597:32583029,32559941:1760953 +) +(3763,598:20753781,33437209:11829248,485622,134348 +h3763,597:20753781,33437209:0,0,0 +r3763,615:20753781,33437209:0,619970,134348 +g3763,597:22064501,33437209 +g3763,597:22064501,33437209 +g3763,597:24470983,33437209 +k3763,598:29124695,33437209:3458335 +k3763,598:32583029,33437209:3458334 +) +(3763,599:20753781,34314476:11829248,513147,134348 +h3763,598:20753781,34314476:0,0,0 +r3763,615:20753781,34314476:0,647495,134348 +g3763,598:22064501,34314476 +g3763,598:22064501,34314476 +g3763,598:24297312,34314476 +g3763,598:25147969,34314476 +g3763,598:26503908,34314476 +g3763,598:27670448,34314476 +k3763,598:32583029,34314476:3131312 +) +(3763,599:23375221,35179556:9207808,505283,134348 +k3763,599:29527741,35179556:3055289 +k3763,599:32583029,35179556:3055288 +) +(3763,600:20753781,36056824:11829248,505283,7863 +h3763,599:20753781,36056824:0,0,0 +r3763,615:20753781,36056824:0,513146,7863 +g3763,599:22064501,36056824 +g3763,599:22064501,36056824 +k3763,600:28275020,36056824:4308009 +k3763,600:32583029,36056824:4308009 +) +(3763,601:20753781,36934092:11829248,505283,102891 +h3763,600:20753781,36934092:0,0,0 +r3763,615:20753781,36934092:0,608174,102891 +g3763,600:22719861,36934092 +g3763,600:22719861,36934092 +g3763,600:24171483,36934092 +g3763,600:26388566,36934092 +k3763,601:30083486,36934092:2499543 +k3763,601:32583029,36934092:2499543 +) +(3763,602:20753781,37811360:11829248,505283,102891 +h3763,601:20753781,37811360:0,0,0 +r3763,615:20753781,37811360:0,608174,102891 +g3763,601:22719861,37811360 +g3763,601:22719861,37811360 +g3763,601:24907452,37811360 +k3763,602:29342929,37811360:3240100 +k3763,602:32583029,37811360:3240100 +) +(3763,603:20753781,38688627:11829248,505283,102891 +h3763,602:20753781,38688627:0,0,0 +r3763,615:20753781,38688627:0,608174,102891 +g3763,602:22719861,38688627 +g3763,602:22719861,38688627 +g3763,602:24103326,38688627 +g3763,602:26591072,38688627 +k3763,603:30184739,38688627:2398290 +k3763,603:32583029,38688627:2398290 +) +(3763,604:20753781,39565895:11829248,505283,102891 +h3763,603:20753781,39565895:0,0,0 +r3763,615:20753781,39565895:0,608174,102891 +g3763,603:22719861,39565895 +g3763,603:22719861,39565895 +g3763,603:24103326,39565895 +g3763,603:26320409,39565895 +k3763,604:30049408,39565895:2533622 +k3763,604:32583029,39565895:2533621 +) +(3763,605:20753781,40443163:11829248,513147,102891 +h3763,604:20753781,40443163:0,0,0 +r3763,615:20753781,40443163:0,616038,102891 +g3763,604:22719861,40443163 +g3763,604:22719861,40443163 +g3763,604:28260274,40443163 +k3763,605:31019340,40443163:1563689 +k3763,605:32583029,40443163:1563689 +) +(3763,606:20753781,41320430:11829248,505283,126483 +h3763,605:20753781,41320430:0,0,0 +r3763,615:20753781,41320430:0,631766,126483 +g3763,605:22064501,41320430 +g3763,605:22064501,41320430 +g3763,605:24432972,41320430 +g3763,605:26083168,41320430 +k3763,606:30692315,41320430:1890714 +k3763,606:32583029,41320430:1890714 +) +(3763,607:20753781,42197698:11829248,505283,126483 +h3763,606:20753781,42197698:0,0,0 +r3763,615:20753781,42197698:0,631766,126483 +g3763,606:22064501,42197698 +g3763,606:22064501,42197698 +g3763,606:25510384,42197698 +g3763,606:27281822,42197698 +k3763,607:30530114,42197698:2052915 +k3763,607:32583029,42197698:2052915 +) +(3763,608:20753781,43074966:11829248,505283,102891 +h3763,607:20753781,43074966:0,0,0 +r3763,615:20753781,43074966:0,608174,102891 +g3763,607:22064501,43074966 +g3763,607:22064501,43074966 +g3763,607:24674800,43074966 +g3763,607:27119292,43074966 +k3763,608:31210377,43074966:1372652 +k3763,608:32583029,43074966:1372652 +) +(3763,609:20753781,43952234:11829248,473825,7863 +h3763,608:20753781,43952234:0,0,0 +r3763,615:20753781,43952234:0,481688,7863 +g3763,608:22064501,43952234 +g3763,608:22064501,43952234 +k3763,609:28750484,43952234:3832545 +k3763,609:32583029,43952234:3832545 +) +(3763,610:20753781,44829501:11829248,505283,126483 +h3763,609:20753781,44829501:0,0,0 +r3763,615:20753781,44829501:0,631766,126483 +g3763,609:22719861,44829501 +g3763,609:22719861,44829501 +g3763,609:25425187,44829501 +k3763,610:29601797,44829501:2981233 +k3763,610:32583029,44829501:2981232 +) +(3763,611:20753781,45706769:11829248,505283,126483 +h3763,610:20753781,45706769:0,0,0 +r3763,615:20753781,45706769:0,631766,126483 +g3763,610:22719861,45706769 +g3763,610:22719861,45706769 +g3763,610:25251516,45706769 +g3763,610:26443615,45706769 +k3763,611:30111011,45706769:2472019 +k3763,611:32583029,45706769:2472018 +) +] +(3763,615:32583029,45706769:0,355205,126483 +h3763,615:32583029,45706769:420741,355205,126483 +k3763,615:32583029,45706769:-420741 +) +) +] +(3763,615:32583029,45706769:0,0,0 +g3763,615:32583029,45706769 +) +) +] +(3763,615:6630773,47279633:25952256,0,0 +h3763,615:6630773,47279633:25952256,0,0 +) +] +(3763,615:4262630,4025873:0,0,0 +[3763,615:-473656,4025873:0,0,0 +(3763,615:-473656,-710413:0,0,0 +(3763,615:-473656,-710413:0,0,0 +g3763,615:-473656,-710413 +) +g3763,615:-473656,-710413 +) +] +) +] +!30625 +}420 !12 -{438 -[3722,632:4262630,47279633:28320399,43253760,0 -(3722,632:4262630,4025873:0,0,0 -[3722,632:-473656,4025873:0,0,0 -(3722,632:-473656,-710413:0,0,0 -(3722,632:-473656,-644877:0,0,0 -k3722,632:-473656,-644877:-65536 +{421 +[3763,705:4262630,47279633:28320399,43253760,0 +(3763,705:4262630,4025873:0,0,0 +[3763,705:-473656,4025873:0,0,0 +(3763,705:-473656,-710413:0,0,0 +(3763,705:-473656,-644877:0,0,0 +k3763,705:-473656,-644877:-65536 ) -(3722,632:-473656,4736287:0,0,0 -k3722,632:-473656,4736287:5209943 +(3763,705:-473656,4736287:0,0,0 +k3763,705:-473656,4736287:5209943 ) -g3722,632:-473656,-710413 +g3763,705:-473656,-710413 ) ] ) -[3722,632:6630773,47279633:25952256,43253760,0 -[3722,632:6630773,4812305:25952256,786432,0 -(3722,632:6630773,4812305:25952256,505283,11795 -(3722,632:6630773,4812305:25952256,505283,11795 -g3722,632:3078558,4812305 -[3722,632:3078558,4812305:0,0,0 -(3722,632:3078558,2439708:0,1703936,0 -k3722,632:1358238,2439708:-1720320 -(3722,1:1358238,2439708:1720320,1703936,0 -(3722,1:1358238,2439708:1179648,16384,0 -r3722,632:2537886,2439708:1179648,16384,0 +[3763,705:6630773,47279633:25952256,43253760,0 +[3763,705:6630773,4812305:25952256,786432,0 +(3763,705:6630773,4812305:25952256,505283,11795 +(3763,705:6630773,4812305:25952256,505283,11795 +g3763,705:3078558,4812305 +[3763,705:3078558,4812305:0,0,0 +(3763,705:3078558,2439708:0,1703936,0 +k3763,705:1358238,2439708:-1720320 +(3763,1:1358238,2439708:1720320,1703936,0 +(3763,1:1358238,2439708:1179648,16384,0 +r3763,705:2537886,2439708:1179648,16384,0 ) -g3722,1:3062174,2439708 -(3722,1:3062174,2439708:16384,1703936,0 -[3722,1:3062174,2439708:25952256,1703936,0 -(3722,1:3062174,1915420:25952256,1179648,0 -(3722,1:3062174,1915420:16384,1179648,0 -r3722,632:3078558,1915420:16384,1179648,0 +g3763,1:3062174,2439708 +(3763,1:3062174,2439708:16384,1703936,0 +[3763,1:3062174,2439708:25952256,1703936,0 +(3763,1:3062174,1915420:25952256,1179648,0 +(3763,1:3062174,1915420:16384,1179648,0 +r3763,705:3078558,1915420:16384,1179648,0 ) -k3722,1:29014430,1915420:25935872 -g3722,1:29014430,1915420 +k3763,1:29014430,1915420:25935872 +g3763,1:29014430,1915420 ) ] ) ) ) ] -[3722,632:3078558,4812305:0,0,0 -(3722,632:3078558,2439708:0,1703936,0 -g3722,632:29030814,2439708 -g3722,632:36135244,2439708 -(3722,1:36135244,2439708:1720320,1703936,0 -(3722,1:36135244,2439708:16384,1703936,0 -[3722,1:36135244,2439708:25952256,1703936,0 -(3722,1:36135244,1915420:25952256,1179648,0 -(3722,1:36135244,1915420:16384,1179648,0 -r3722,632:36151628,1915420:16384,1179648,0 +[3763,705:3078558,4812305:0,0,0 +(3763,705:3078558,2439708:0,1703936,0 +g3763,705:29030814,2439708 +g3763,705:36135244,2439708 +(3763,1:36135244,2439708:1720320,1703936,0 +(3763,1:36135244,2439708:16384,1703936,0 +[3763,1:36135244,2439708:25952256,1703936,0 +(3763,1:36135244,1915420:25952256,1179648,0 +(3763,1:36135244,1915420:16384,1179648,0 +r3763,705:36151628,1915420:16384,1179648,0 ) -k3722,1:62087500,1915420:25935872 -g3722,1:62087500,1915420 +k3763,1:62087500,1915420:25935872 +g3763,1:62087500,1915420 ) ] ) -g3722,1:36675916,2439708 -(3722,1:36675916,2439708:1179648,16384,0 -r3722,632:37855564,2439708:1179648,16384,0 +g3763,1:36675916,2439708 +(3763,1:36675916,2439708:1179648,16384,0 +r3763,705:37855564,2439708:1179648,16384,0 ) ) -k3722,632:3078556,2439708:-34777008 +k3763,705:3078556,2439708:-34777008 ) ] -[3722,632:3078558,4812305:0,0,0 -(3722,632:3078558,49800853:0,16384,2228224 -k3722,632:1358238,49800853:-1720320 -(3722,1:1358238,49800853:1720320,16384,2228224 -(3722,1:1358238,49800853:1179648,16384,0 -r3722,632:2537886,49800853:1179648,16384,0 +[3763,705:3078558,4812305:0,0,0 +(3763,705:3078558,49800853:0,16384,2228224 +k3763,705:1358238,49800853:-1720320 +(3763,1:1358238,49800853:1720320,16384,2228224 +(3763,1:1358238,49800853:1179648,16384,0 +r3763,705:2537886,49800853:1179648,16384,0 ) -g3722,1:3062174,49800853 -(3722,1:3062174,52029077:16384,1703936,0 -[3722,1:3062174,52029077:25952256,1703936,0 -(3722,1:3062174,51504789:25952256,1179648,0 -(3722,1:3062174,51504789:16384,1179648,0 -r3722,632:3078558,51504789:16384,1179648,0 +g3763,1:3062174,49800853 +(3763,1:3062174,52029077:16384,1703936,0 +[3763,1:3062174,52029077:25952256,1703936,0 +(3763,1:3062174,51504789:25952256,1179648,0 +(3763,1:3062174,51504789:16384,1179648,0 +r3763,705:3078558,51504789:16384,1179648,0 ) -k3722,1:29014430,51504789:25935872 -g3722,1:29014430,51504789 +k3763,1:29014430,51504789:25935872 +g3763,1:29014430,51504789 ) ] ) ) ) ] -[3722,632:3078558,4812305:0,0,0 -(3722,632:3078558,49800853:0,16384,2228224 -g3722,632:29030814,49800853 -g3722,632:36135244,49800853 -(3722,1:36135244,49800853:1720320,16384,2228224 -(3722,1:36135244,52029077:16384,1703936,0 -[3722,1:36135244,52029077:25952256,1703936,0 -(3722,1:36135244,51504789:25952256,1179648,0 -(3722,1:36135244,51504789:16384,1179648,0 -r3722,632:36151628,51504789:16384,1179648,0 +[3763,705:3078558,4812305:0,0,0 +(3763,705:3078558,49800853:0,16384,2228224 +g3763,705:29030814,49800853 +g3763,705:36135244,49800853 +(3763,1:36135244,49800853:1720320,16384,2228224 +(3763,1:36135244,52029077:16384,1703936,0 +[3763,1:36135244,52029077:25952256,1703936,0 +(3763,1:36135244,51504789:25952256,1179648,0 +(3763,1:36135244,51504789:16384,1179648,0 +r3763,705:36151628,51504789:16384,1179648,0 +) +k3763,1:62087500,51504789:25935872 +g3763,1:62087500,51504789 +) +] +) +g3763,1:36675916,49800853 +(3763,1:36675916,49800853:1179648,16384,0 +r3763,705:37855564,49800853:1179648,16384,0 +) +) +k3763,705:3078556,49800853:-34777008 +) +] +g3763,705:6630773,4812305 +k3763,705:28201292,4812305:20375142 +g3763,705:30884336,4812305 +) +) +] +[3763,705:6630773,45706769:25952256,40108032,0 +(3763,705:6630773,45706769:25952256,40108032,0 +(3763,705:6630773,45706769:0,0,0 +g3763,705:6630773,45706769 +) +[3763,705:6630773,45706769:25952256,40108032,0 +(3763,705:6630773,45706769:25952256,40108032,126483 +[3763,705:6630773,45706769:11829248,40108032,102891 +(3763,612:6630773,6254097:11829248,505283,102891 +h3763,611:6630773,6254097:0,0,0 +r3763,705:6630773,6254097:0,608174,102891 +g3763,611:8596853,6254097 +g3763,611:8596853,6254097 +g3763,611:11380822,6254097 +k3763,612:15518110,6254097:2941911 +k3763,612:18460021,6254097:2941911 +) +(3763,613:6630773,7131959:11829248,505283,126483 +h3763,612:6630773,7131959:0,0,0 +r3763,705:6630773,7131959:0,631766,126483 +g3763,612:7941493,7131959 +g3763,612:7941493,7131959 +g3763,612:9496007,7131959 +g3763,612:11146203,7131959 +k3763,613:16162329,7131959:2297693 +k3763,613:18460021,7131959:2297692 +) +(3763,614:6630773,8009821:11829248,505283,134348 +h3763,613:6630773,8009821:0,0,0 +r3763,705:6630773,8009821:0,639631,134348 +g3763,613:7941493,8009821 +g3763,613:7941493,8009821 +g3763,613:10458075,8009821 +k3763,614:15818265,8009821:2641757 +k3763,614:18460021,8009821:2641756 +) +(3763,615:6630773,8887684:11829248,505283,102891 +h3763,614:6630773,8887684:0,0,0 +r3763,705:6630773,8887684:0,608174,102891 +g3763,614:7941493,8887684 +g3763,614:7941493,8887684 +g3763,614:10727428,8887684 +k3763,615:15952941,8887684:2507080 +k3763,615:18460021,8887684:2507080 +) +(3763,616:6630773,9765546:11829248,485622,126483 +h3763,615:6630773,9765546:0,0,0 +r3763,705:6630773,9765546:0,612105,126483 +g3763,615:7941493,9765546 +g3763,615:7941493,9765546 +g3763,615:9433747,9765546 +g3763,615:11965402,9765546 +k3763,616:15810400,9765546:2649621 +k3763,616:18460021,9765546:2649621 +) +(3763,617:6630773,10643408:11829248,485622,134348 +h3763,616:6630773,10643408:0,0,0 +r3763,705:6630773,10643408:0,619970,134348 +g3763,616:7941493,10643408 +g3763,616:7941493,10643408 +g3763,616:9301365,10643408 +k3763,617:15239910,10643408:3220112 +k3763,617:18460021,10643408:3220111 +) +(3763,618:6630773,11521270:11829248,485622,102891 +h3763,617:6630773,11521270:0,0,0 +r3763,705:6630773,11521270:0,588513,102891 +g3763,617:7941493,11521270 +g3763,617:7941493,11521270 +g3763,617:9366901,11521270 +g3763,617:10355839,11521270 +k3763,618:15767147,11521270:2692875 +k3763,618:18460021,11521270:2692874 +) +(3763,619:6630773,12399133:11829248,505283,126483 +h3763,618:6630773,12399133:0,0,0 +r3763,705:6630773,12399133:0,631766,126483 +g3763,618:7941493,12399133 +g3763,618:7941493,12399133 +g3763,618:9151287,12399133 +g3763,618:10801483,12399133 +k3763,619:15989969,12399133:2470053 +k3763,619:18460021,12399133:2470052 +) +(3763,620:6630773,13276995:11829248,505283,102891 +h3763,619:6630773,13276995:0,0,0 +r3763,705:6630773,13276995:0,608174,102891 +g3763,619:7941493,13276995 +g3763,619:7941493,13276995 +g3763,619:9581859,13276995 +k3763,620:15380157,13276995:3079865 +k3763,620:18460021,13276995:3079864 +) +(3763,621:6630773,14154857:11829248,505283,102891 +h3763,620:6630773,14154857:0,0,0 +r3763,705:6630773,14154857:0,608174,102891 +g3763,620:7941493,14154857 +g3763,620:7941493,14154857 +g3763,620:11507962,14154857 +k3763,621:15581680,14154857:2878341 +k3763,621:18460021,14154857:2878341 +) +(3763,622:6630773,15032719:11829248,505283,126483 +h3763,621:6630773,15032719:0,0,0 +r3763,705:6630773,15032719:0,631766,126483 +g3763,621:7941493,15032719 +g3763,621:7941493,15032719 +g3763,621:9914782,15032719 +g3763,621:11564978,15032719 +k3763,622:16371716,15032719:2088305 +k3763,622:18460021,15032719:2088305 +) +(3763,623:6630773,15910582:11829248,505283,102891 +h3763,622:6630773,15910582:0,0,0 +r3763,705:6630773,15910582:0,608174,102891 +g3763,622:7941493,15910582 +g3763,622:7941493,15910582 +g3763,622:9698513,15910582 +g3763,622:11431940,15910582 +k3763,623:16305197,15910582:2154824 +k3763,623:18460021,15910582:2154824 +) +(3763,624:6630773,16788444:11829248,505283,102891 +h3763,623:6630773,16788444:0,0,0 +r3763,705:6630773,16788444:0,608174,102891 +g3763,623:7941493,16788444 +g3763,623:7941493,16788444 +g3763,623:9534673,16788444 +g3763,623:11853992,16788444 +k3763,624:16516223,16788444:1943798 +k3763,624:18460021,16788444:1943798 +) +(3763,625:6630773,17666306:11829248,505283,134348 +h3763,624:6630773,17666306:0,0,0 +g3763,624:10403025,17666306 +g3763,624:14092701,17666306 +k3763,625:16874050,17666306:1585972 +k3763,625:18460021,17666306:1585971 +) +(3763,626:6630773,18544168:11829248,505283,126483 +h3763,625:6630773,18544168:0,0,0 +g3763,625:10283749,18544168 +g3763,625:11852025,18544168 +k3763,626:15753712,18544168:2706310 +k3763,626:18460021,18544168:2706309 +) +(3763,627:6630773,19422031:11829248,505283,126483 +h3763,626:6630773,19422031:0,0,0 +g3763,626:10346009,19422031 +k3763,627:15000704,19422031:3459318 +k3763,627:18460021,19422031:3459317 +) +(3763,628:6630773,20299893:11829248,473825,126483 +h3763,627:6630773,20299893:0,0,0 +k3763,628:14011438,20299893:4448584 +k3763,628:18460021,20299893:4448583 +) +(3763,629:6630773,21177755:11829248,505283,126483 +h3763,628:6630773,21177755:0,0,0 +r3763,705:6630773,21177755:0,631766,126483 +g3763,628:7941493,21177755 +g3763,628:7941493,21177755 +g3763,628:9788297,21177755 +g3763,628:13565792,21177755 +k3763,629:16411366,21177755:2048656 +k3763,629:18460021,21177755:2048655 +) +(3763,630:6630773,22055617:11829248,505283,126483 +h3763,629:6630773,22055617:0,0,0 +g3763,629:9671643,22055617 +g3763,629:13798445,22055617 +k3763,629:18460021,22055617:1933312 +) +(3763,630:9252213,22920697:9207808,485622,11795 +k3763,630:15215334,22920697:3244688 +k3763,630:18460021,22920697:3244687 +) +(3763,631:6630773,23798560:11829248,355205,134348 +h3763,630:6630773,23798560:0,0,0 +k3763,631:14565217,23798560:3894805 +k3763,631:18460021,23798560:3894804 +) +(3763,632:6630773,24676422:11829248,505283,102891 +h3763,631:6630773,24676422:0,0,0 +r3763,705:6630773,24676422:0,608174,102891 +g3763,631:7941493,24676422 +g3763,631:7941493,24676422 +g3763,631:9828929,24676422 +g3763,631:10998746,24676422 +k3763,632:15327072,24676422:3132949 +k3763,632:18460021,24676422:3132949 +) +(3763,633:6630773,25554284:11829248,505283,126483 +h3763,632:6630773,25554284:0,0,0 +r3763,705:6630773,25554284:0,631766,126483 +g3763,632:7941493,25554284 +g3763,632:7941493,25554284 +g3763,632:10495430,25554284 +k3763,633:14876185,25554284:3583837 +k3763,633:18460021,25554284:3583836 +) +(3763,634:6630773,26432146:11829248,485622,102891 +h3763,633:6630773,26432146:0,0,0 +r3763,705:6630773,26432146:0,588513,102891 +g3763,633:7941493,26432146 +g3763,633:7941493,26432146 +g3763,633:10312585,26432146 +k3763,634:14983992,26432146:3476030 +k3763,634:18460021,26432146:3476029 +) +(3763,635:6630773,27310009:11829248,505283,102891 +h3763,634:6630773,27310009:0,0,0 +r3763,705:6630773,27310009:0,608174,102891 +g3763,634:7941493,27310009 +g3763,634:7941493,27310009 +g3763,634:9961312,27310009 +k3763,635:14808355,27310009:3651666 +k3763,635:18460021,27310009:3651666 +) +(3763,636:6630773,28187871:11829248,485622,102891 +h3763,635:6630773,28187871:0,0,0 +r3763,705:6630773,28187871:0,588513,102891 +g3763,635:7941493,28187871 +g3763,635:7941493,28187871 +g3763,635:9222721,28187871 +k3763,636:14439060,28187871:4020962 +k3763,636:18460021,28187871:4020961 +) +(3763,637:6630773,29065733:11829248,485622,102891 +h3763,636:6630773,29065733:0,0,0 +r3763,705:6630773,29065733:0,588513,102891 +g3763,636:7941493,29065733 +g3763,636:7941493,29065733 +g3763,636:10067480,29065733 +g3763,636:11237297,29065733 +k3763,637:15446348,29065733:3013674 +k3763,637:18460021,29065733:3013673 +) +(3763,638:6630773,29943595:11829248,485622,173670 +h3763,637:6630773,29943595:0,0,0 +r3763,705:6630773,29943595:0,659292,173670 +g3763,637:7941493,29943595 +g3763,637:7941493,29943595 +(3763,637:7941493,29943595:1181614,473825,0 +) +(3763,637:9428045,30117265:355205,473825,0 +) +g3763,637:10484484,29943595 +k3763,638:15069941,29943595:3390080 +k3763,638:18460021,29943595:3390080 +) +(3763,639:6630773,30821458:11829248,505283,102891 +h3763,638:6630773,30821458:0,0,0 +r3763,705:6630773,30821458:0,608174,102891 +g3763,638:7941493,30821458 +g3763,638:7941493,30821458 +g3763,638:11091808,30821458 +g3763,638:12660084,30821458 +g3763,638:14228360,30821458 +g3763,638:15796636,30821458 +k3763,638:18460021,30821458:1294338 +) +(3763,639:9252213,31686538:9207808,485622,102891 +g3763,638:10820489,31686538 +k3763,639:15237944,31686538:3222078 +k3763,639:18460021,31686538:3222077 +) +(3763,640:6630773,32564400:11829248,505283,102891 +h3763,639:6630773,32564400:0,0,0 +r3763,705:6630773,32564400:0,608174,102891 +g3763,639:7941493,32564400 +g3763,639:7941493,32564400 +g3763,639:12254416,32564400 +g3763,639:13822692,32564400 +k3763,640:16739045,32564400:1720976 +k3763,640:18460021,32564400:1720976 +) +(3763,641:6630773,33442262:11829248,485622,102891 +h3763,640:6630773,33442262:0,0,0 +r3763,705:6630773,33442262:0,588513,102891 +g3763,640:7941493,33442262 +g3763,640:7941493,33442262 +g3763,640:9969176,33442262 +k3763,641:14812287,33442262:3647734 +k3763,641:18460021,33442262:3647734 +) +(3763,642:6630773,34320124:11829248,485622,102891 +h3763,641:6630773,34320124:0,0,0 +r3763,705:6630773,34320124:0,588513,102891 +g3763,641:7941493,34320124 +g3763,641:7941493,34320124 +g3763,641:10704490,34320124 +g3763,641:12272766,34320124 +g3763,641:13841042,34320124 +k3763,642:16748220,34320124:1711801 +k3763,642:18460021,34320124:1711801 +) +(3763,643:6630773,35197987:11829248,505283,126483 +h3763,642:6630773,35197987:0,0,0 +r3763,705:6630773,35197987:0,631766,126483 +g3763,642:7941493,35197987 +g3763,642:7941493,35197987 +g3763,642:10998747,35197987 +k3763,643:15327073,35197987:3132949 +k3763,643:18460021,35197987:3132948 +) +(3763,644:6630773,36075849:11829248,485622,102891 +h3763,643:6630773,36075849:0,0,0 +r3763,705:6630773,36075849:0,588513,102891 +g3763,643:7941493,36075849 +g3763,643:7941493,36075849 +g3763,643:10470527,36075849 +k3763,644:15062963,36075849:3397059 +k3763,644:18460021,36075849:3397058 +) +(3763,645:6630773,36953711:11829248,485622,102891 +h3763,644:6630773,36953711:0,0,0 +r3763,705:6630773,36953711:0,588513,102891 +g3763,644:7941493,36953711 +g3763,644:7941493,36953711 +g3763,644:9011041,36953711 +g3763,644:9794195,36953711 +k3763,645:14724797,36953711:3735225 +k3763,645:18460021,36953711:3735224 +) +(3763,646:6630773,37831573:11829248,485622,102891 +h3763,645:6630773,37831573:0,0,0 +r3763,705:6630773,37831573:0,588513,102891 +g3763,645:7941493,37831573 +g3763,645:7941493,37831573 +g3763,645:10507227,37831573 +g3763,645:11677044,37831573 +k3763,646:15666221,37831573:2793800 +k3763,646:18460021,37831573:2793800 +) +(3763,647:6630773,38709436:11829248,485622,102891 +h3763,646:6630773,38709436:0,0,0 +r3763,705:6630773,38709436:0,588513,102891 +g3763,646:7941493,38709436 +g3763,646:7941493,38709436 +g3763,646:9953447,38709436 +g3763,646:11123264,38709436 +k3763,647:15389331,38709436:3070690 +k3763,647:18460021,38709436:3070690 +) +(3763,649:6630773,39587298:11829248,505283,102891 +h3763,647:6630773,39587298:0,0,0 +r3763,705:6630773,39587298:0,608174,102891 +g3763,647:7941493,39587298 +g3763,647:7941493,39587298 +g3763,647:10738569,39587298 +g3763,647:11509927,39587298 +g3763,647:12281285,39587298 +g3763,647:14575700,39587298 +g3763,647:16870115,39587298 +k3763,647:18460021,39587298:619318 +) +(3763,649:9252213,40452378:9207808,485622,102891 +g3763,647:10422030,40452378 +g3763,647:11990306,40452378 +g3763,647:13558582,40452378 +g3763,648:15126858,40452378 +g3763,648:16695134,40452378 +k3763,648:18460021,40452378:395840 +) +(3763,649:9252213,41317458:9207808,485622,102891 +g3763,648:10820489,41317458 +g3763,648:12388765,41317458 +g3763,648:13957041,41317458 +g3763,648:15525317,41317458 +g3763,648:17093593,41317458 +k3763,649:18374496,41317458:85526 +k3763,649:18460021,41317458:85525 +) +(3763,650:6630773,42195320:11829248,505283,102891 +h3763,649:6630773,42195320:0,0,0 +r3763,705:6630773,42195320:0,608174,102891 +g3763,649:7941493,42195320 +g3763,649:7941493,42195320 +g3763,649:10471182,42195320 +k3763,650:15063290,42195320:3396731 +k3763,650:18460021,42195320:3396731 +) +(3763,651:6630773,43073182:11829248,485622,102891 +h3763,650:6630773,43073182:0,0,0 +r3763,705:6630773,43073182:0,588513,102891 +g3763,650:7941493,43073182 +g3763,650:7941493,43073182 +g3763,650:8667631,43073182 +k3763,651:14161515,43073182:4298507 +k3763,651:18460021,43073182:4298506 +) +(3763,652:6630773,43951045:11829248,485622,102891 +h3763,651:6630773,43951045:0,0,0 +r3763,705:6630773,43951045:0,588513,102891 +g3763,651:7941493,43951045 +g3763,651:7941493,43951045 +g3763,651:9473069,43951045 +g3763,651:10642886,43951045 +g3763,651:12211162,43951045 +g3763,651:13779438,43951045 +g3763,651:15347714,43951045 +k3763,652:17501556,43951045:958465 +k3763,652:18460021,43951045:958465 +) +(3763,653:6630773,44828907:11829248,505283,102891 +h3763,652:6630773,44828907:0,0,0 +r3763,705:6630773,44828907:0,608174,102891 +g3763,652:7941493,44828907 +g3763,652:7941493,44828907 +g3763,652:9054293,44828907 +k3763,653:14354846,44828907:4105176 +k3763,653:18460021,44828907:4105175 +) +(3763,654:6630773,45706769:11829248,485622,102891 +h3763,653:6630773,45706769:0,0,0 +r3763,705:6630773,45706769:0,588513,102891 +g3763,653:7941493,45706769 +g3763,653:7941493,45706769 +g3763,653:9745698,45706769 +k3763,654:14501319,45706769:3958703 +k3763,654:18460021,45706769:3958702 +) +] +k3763,705:19606901,45706769:1146880 +r3763,705:19606901,45706769:0,40234515,126483 +k3763,705:20753781,45706769:1146880 +[3763,705:20753781,45706769:11829248,40108032,126483 +(3763,655:20753781,6254097:11829248,485622,102891 +h3763,654:20753781,6254097:0,0,0 +r3763,705:20753781,6254097:0,588513,102891 +g3763,654:22064501,6254097 +g3763,654:22064501,6254097 +g3763,654:23859531,6254097 +g3763,654:25029348,6254097 +g3763,654:26597624,6254097 +g3763,654:28165900,6254097 +g3763,654:29734176,6254097 +k3763,655:31756291,6254097:826738 +k3763,655:32583029,6254097:826738 +) +(3763,656:20753781,7120247:11829248,485622,102891 +h3763,655:20753781,7120247:0,0,0 +r3763,705:20753781,7120247:0,588513,102891 +g3763,655:22064501,7120247 +g3763,655:22064501,7120247 +g3763,655:24448700,7120247 +k3763,656:29113553,7120247:3469476 +k3763,656:32583029,7120247:3469476 +) +(3763,657:20753781,7986396:11829248,485622,102891 +h3763,656:20753781,7986396:0,0,0 +r3763,705:20753781,7986396:0,588513,102891 +g3763,656:22064501,7986396 +g3763,656:22064501,7986396 +g3763,656:24004366,7986396 +g3763,656:25572642,7986396 +k3763,657:29675524,7986396:2907505 +k3763,657:32583029,7986396:2907505 +) +(3763,658:20753781,8852546:11829248,485622,126483 +h3763,657:20753781,8852546:0,0,0 +r3763,705:20753781,8852546:0,612105,126483 +g3763,657:22064501,8852546 +g3763,657:22064501,8852546 +g3763,657:24318283,8852546 +k3763,658:29048345,8852546:3534685 +k3763,658:32583029,8852546:3534684 +) +(3763,659:20753781,9718695:11829248,485622,102891 +h3763,658:20753781,9718695:0,0,0 +r3763,705:20753781,9718695:0,588513,102891 +g3763,658:22064501,9718695 +g3763,658:22064501,9718695 +g3763,658:23889022,9718695 +g3763,658:25058839,9718695 +k3763,659:29418623,9718695:3164407 +k3763,659:32583029,9718695:3164406 +) +(3763,660:20753781,10584845:11829248,505283,102891 +h3763,659:20753781,10584845:0,0,0 +r3763,705:20753781,10584845:0,608174,102891 +g3763,659:22064501,10584845 +g3763,659:22064501,10584845 +g3763,659:24180659,10584845 +g3763,659:26397087,10584845 +g3763,659:28403799,10584845 +k3763,660:30891873,10584845:1691156 +k3763,660:32583029,10584845:1691156 +) +(3763,661:20753781,11450994:11829248,485622,102891 +h3763,660:20753781,11450994:0,0,0 +r3763,705:20753781,11450994:0,588513,102891 +g3763,660:22064501,11450994 +g3763,660:22064501,11450994 +g3763,660:23729770,11450994 +k3763,661:28754088,11450994:3828941 +k3763,661:32583029,11450994:3828941 +) +(3763,662:20753781,12317144:11829248,505283,126483 +h3763,661:20753781,12317144:0,0,0 +g3763,661:25988796,12317144 +g3763,661:29177777,12317144 +k3763,662:31478092,12317144:1104938 +k3763,662:32583029,12317144:1104937 +) +(3763,663:20753781,13183293:11829248,505283,134348 +h3763,662:20753781,13183293:0,0,0 +g3763,662:25988796,13183293 +g3763,662:29283946,13183293 +k3763,663:31531176,13183293:1051853 +k3763,663:32583029,13183293:1051853 +) +(3763,664:20753781,14049443:11829248,505283,126483 +h3763,663:20753781,14049443:0,0,0 +g3763,663:23291334,14049443 +g3763,663:24461151,14049443 +g3763,663:25630968,14049443 +g3763,663:27199244,14049443 +g3763,663:28767520,14049443 +k3763,664:31272963,14049443:1310066 +k3763,664:32583029,14049443:1310066 +) +(3763,668:20753781,15588778:11829248,485622,102891 +h3763,667:20753781,15588778:0,0,0 +g3763,667:23319515,15588778 +g3763,667:24489332,15588778 +k3763,668:29133869,15588778:3449160 +k3763,668:32583029,15588778:3449160 +) +(3763,669:20753781,16454927:11829248,505283,126483 +h3763,668:20753781,16454927:0,0,0 +g3763,668:23637364,16454927 +k3763,669:28707885,16454927:3875144 +k3763,669:32583029,16454927:3875144 +) +(3763,673:20753781,17994262:11829248,505283,134348 +h3763,672:20753781,17994262:0,0,0 +g3763,672:21367853,17994262 +g3763,672:22253244,17994262 +g3763,672:22808333,17994262 +g3763,672:26023529,17994262 +k3763,673:29701738,17994262:2881291 +k3763,673:32583029,17994262:2881291 +) +(3763,674:20753781,18860412:11829248,485622,134348 +h3763,673:20753781,18860412:0,0,0 +g3763,673:21367853,18860412 +g3763,673:22253244,18860412 +g3763,673:22808333,18860412 +g3763,673:25923259,18860412 +k3763,674:29651603,18860412:2931426 +k3763,674:32583029,18860412:2931426 +) +(3763,675:20753781,19726561:11829248,477757,134348 +h3763,674:20753781,19726561:0,0,0 +g3763,674:21367853,19726561 +g3763,674:22253244,19726561 +g3763,674:22808333,19726561 +g3763,674:25923259,19726561 +k3763,675:29651603,19726561:2931426 +k3763,675:32583029,19726561:2931426 +) +(3763,676:20753781,20592711:11829248,505283,102891 +h3763,675:20753781,20592711:0,0,0 +g3763,675:21375718,20592711 +g3763,675:25099473,20592711 +g3763,675:26269290,20592711 +k3763,676:30023848,20592711:2559181 +k3763,676:32583029,20592711:2559181 +) +(3763,677:20753781,21458860:11829248,505283,102891 +h3763,676:20753781,21458860:0,0,0 +g3763,676:23447310,21458860 +g3763,676:25736482,21458860 +g3763,676:26903022,21458860 +k3763,676:32583029,21458860:1394608 +) +(3763,677:23375221,22323940:9207808,505283,126483 +g3763,676:28610236,22323940 +k3763,677:31554769,22323940:1028260 +k3763,677:32583029,22323940:1028260 +) +(3763,678:20753781,23190090:11829248,505283,102891 +h3763,677:20753781,23190090:0,0,0 +g3763,677:23447310,23190090 +g3763,677:26636291,23190090 +k3763,678:32583029,23190090:4979427 +) +(3763,678:23375221,24055170:9207808,505283,126483 +g3763,677:28610236,24055170 +k3763,678:32004674,24055170:578356 +k3763,678:32583029,24055170:578355 +) +(3763,679:20753781,24921319:11829248,505283,134348 +h3763,678:20753781,24921319:0,0,0 +g3763,678:23447310,24921319 +g3763,678:26742460,24921319 +k3763,679:32583029,24921319:4873258 +) +(3763,679:23375221,25786399:9207808,505283,134348 +g3763,678:28610236,25786399 +k3763,679:32057758,25786399:525272 +k3763,679:32583029,25786399:525271 +) +(3763,680:20753781,26652549:11829248,505283,126483 +h3763,679:20753781,26652549:0,0,0 +g3763,679:24190489,26652549 +g3763,679:25140105,26652549 +g3763,679:26309922,26652549 +k3763,680:29844935,26652549:2738095 +k3763,680:32583029,26652549:2738094 +) +(3763,681:20753781,27518698:11829248,505283,126483 +h3763,680:20753781,27518698:0,0,0 +g3763,680:23117008,27518698 +k3763,681:28447707,27518698:4135322 +k3763,681:32583029,27518698:4135322 +) +(3763,682:20753781,28384848:11829248,505283,102891 +h3763,681:20753781,28384848:0,0,0 +g3763,681:24301899,28384848 +k3763,682:29040153,28384848:3542877 +k3763,682:32583029,28384848:3542876 +) +(3763,683:20753781,29250997:11829248,505283,102891 +h3763,682:20753781,29250997:0,0,0 +g3763,682:23216623,29250997 +g3763,682:24784899,29250997 +g3763,682:26353175,29250997 +g3763,682:27921451,29250997 +g3763,682:29489727,29250997 +g3763,682:31058003,29250997 +k3763,682:32583029,29250997:155979 +) +(3763,683:23375221,30116077:9207808,485622,102891 +g3763,682:24943497,30116077 +k3763,683:29360952,30116077:3222078 +k3763,683:32583029,30116077:3222077 +) +(3763,684:20753781,30982227:11829248,505283,102891 +h3763,683:20753781,30982227:0,0,0 +g3763,683:23539716,30982227 +g3763,683:25107992,30982227 +k3763,684:29443199,30982227:3139830 +k3763,684:32583029,30982227:3139830 +) +(3763,685:20753781,31848376:11829248,505283,126483 +h3763,684:20753781,31848376:0,0,0 +g3763,684:22306328,31848376 +g3763,684:25321639,31848376 +g3763,684:26712313,31848376 +g3763,684:30491774,31848376 +k3763,685:31935861,31848376:647169 +k3763,685:32583029,31848376:647168 +) +(3763,686:20753781,32714526:11829248,513147,134348 +h3763,685:20753781,32714526:0,0,0 +g3763,685:23812346,32714526 +g3763,685:24670867,32714526 +g3763,685:28446396,32714526 +g3763,685:29616213,32714526 +k3763,686:31697310,32714526:885720 +k3763,686:32583029,32714526:885719 +) +(3763,687:20753781,33580676:11829248,505283,134348 +h3763,686:20753781,33580676:0,0,0 +g3763,686:23227109,33580676 +g3763,686:27370295,33580676 +k3763,687:30937420,33580676:1645609 +k3763,687:32583029,33580676:1645609 +) +(3763,688:20753781,34446825:11829248,505283,134348 +h3763,687:20753781,34446825:0,0,0 +g3763,687:23950627,34446825 +g3763,687:26613354,34446825 +k3763,688:29996651,34446825:2586379 +k3763,688:32583029,34446825:2586378 +) +(3763,689:20753781,35312975:11829248,505283,126483 +h3763,688:20753781,35312975:0,0,0 +g3763,688:23183856,35312975 +g3763,688:24350396,35312975 +g3763,688:28612202,35312975 +k3763,689:31928324,35312975:654705 +k3763,689:32583029,35312975:654705 +) +(3763,690:20753781,36179124:11829248,505283,126483 +h3763,689:20753781,36179124:0,0,0 +g3763,689:23621636,36179124 +k3763,690:28301562,36179124:4281467 +k3763,690:32583029,36179124:4281467 +) +(3763,691:20753781,37045274:11829248,505283,126483 +h3763,690:20753781,37045274:0,0,0 +g3763,690:25015587,37045274 +g3763,690:26604179,37045274 +g3763,690:29531672,37045274 +k3763,691:32018109,37045274:564921 +k3763,691:32583029,37045274:564920 +) +(3763,692:20753781,37911423:11829248,505283,126483 +h3763,691:20753781,37911423:0,0,0 +g3763,691:25015587,37911423 +g3763,691:28049903,37911423 +g3763,691:28821261,37911423 +k3763,692:30901375,37911423:1681655 +k3763,692:32583029,37911423:1681654 +) +(3763,693:20753781,38777573:11829248,505283,126483 +h3763,692:20753781,38777573:0,0,0 +g3763,692:24053518,38777573 +k3763,693:28915962,38777573:3667067 +k3763,693:32583029,38777573:3667067 +) +(3763,694:20753781,39643722:11829248,505283,126483 +h3763,693:20753781,39643722:0,0,0 +g3763,693:24468361,39643722 +k3763,694:29123384,39643722:3459646 +k3763,694:32583029,39643722:3459645 +) +(3763,695:20753781,40509872:11829248,505283,134348 +h3763,694:20753781,40509872:0,0,0 +g3763,694:24100704,40509872 +g3763,694:26615320,40509872 +k3763,695:30958391,40509872:1624638 +k3763,695:32583029,40509872:1624638 +) +(3763,696:20753781,41376021:11829248,505283,102891 +h3763,695:20753781,41376021:0,0,0 +g3763,695:24511615,41376021 +g3763,695:26079891,41376021 +k3763,696:29929149,41376021:2653881 +k3763,696:32583029,41376021:2653880 +) +(3763,697:20753781,42242171:11829248,485622,102891 +h3763,696:20753781,42242171:0,0,0 +g3763,696:22765735,42242171 +g3763,696:23935552,42242171 +k3763,697:28856979,42242171:3726050 +k3763,697:32583029,42242171:3726050 +) +(3763,698:20753781,43108320:11829248,505283,102891 +h3763,697:20753781,43108320:0,0,0 +g3763,697:23222521,43108320 +k3763,698:28500464,43108320:4082566 +k3763,698:32583029,43108320:4082565 +) +(3763,699:20753781,43974470:11829248,505283,102891 +h3763,698:20753781,43974470:0,0,0 +g3763,698:24892379,43974470 +k3763,699:29335393,43974470:3247637 +k3763,699:32583029,43974470:3247636 +) +(3763,700:20753781,44840619:11829248,505283,102891 +h3763,699:20753781,44840619:0,0,0 +g3763,699:24345808,44840619 +k3763,700:29062107,44840619:3520922 +k3763,700:32583029,44840619:3520922 +) +(3763,701:20753781,45706769:11829248,485622,126483 +h3763,700:20753781,45706769:0,0,0 +g3763,700:25596891,45706769 +k3763,701:29687649,45706769:2895381 +k3763,701:32583029,45706769:2895380 +) +] +(3763,705:32583029,45706769:0,355205,126483 +h3763,705:32583029,45706769:420741,355205,126483 +k3763,705:32583029,45706769:-420741 +) +) +] +(3763,705:32583029,45706769:0,0,0 +g3763,705:32583029,45706769 +) +) +] +(3763,705:6630773,47279633:25952256,0,0 +h3763,705:6630773,47279633:25952256,0,0 +) +] +(3763,705:4262630,4025873:0,0,0 +[3763,705:-473656,4025873:0,0,0 +(3763,705:-473656,-710413:0,0,0 +(3763,705:-473656,-710413:0,0,0 +g3763,705:-473656,-710413 ) -k3722,1:62087500,51504789:25935872 -g3722,1:62087500,51504789 +g3763,705:-473656,-710413 ) ] ) -g3722,1:36675916,49800853 -(3722,1:36675916,49800853:1179648,16384,0 -r3722,632:37855564,49800853:1179648,16384,0 -) -) -k3722,632:3078556,49800853:-34777008 -) ] -g3722,632:6630773,4812305 -g3722,632:6630773,4812305 -g3722,632:9313817,4812305 -g3722,632:11211739,4812305 -k3722,632:31387651,4812305:20175912 -) -) -] -[3722,632:6630773,45706769:25952256,40108032,0 -(3722,632:6630773,45706769:25952256,40108032,0 -(3722,632:6630773,45706769:0,0,0 -g3722,632:6630773,45706769 -) -[3722,632:6630773,45706769:25952256,40108032,0 -(3722,632:6630773,45706769:25952256,40108032,126483 -[3722,632:6630773,45706769:11829248,40108032,102891 -(3722,539:6630773,6254097:11829248,505283,126483 -h3722,538:6630773,6254097:0,0,0 -g3722,538:8322257,6254097 -g3722,538:9488797,6254097 -g3722,538:12529667,6254097 -k3722,538:18460021,6254097:2002781 -) -(3722,539:9252213,7095585:9207808,505283,126483 -k3722,539:15133414,7095585:3326608 -k3722,539:18460021,7095585:3326607 -) -(3722,540:6630773,7953611:11829248,505283,102891 -h3722,539:6630773,7953611:0,0,0 -g3722,539:8188563,7953611 -k3722,540:13722751,7953611:4737270 -k3722,540:18460021,7953611:4737270 -) -(3722,541:6630773,8811638:11829248,485622,126483 -h3722,540:6630773,8811638:0,0,0 -g3722,540:8220021,8811638 -g3722,540:11339534,8811638 -g3722,540:12907810,8811638 -k3722,541:16281604,8811638:2178417 -k3722,541:18460021,8811638:2178417 -) -(3722,542:6630773,9669664:11829248,473825,126483 -h3722,541:6630773,9669664:0,0,0 -k3722,542:13405557,9669664:5054464 -k3722,542:18460021,9669664:5054464 -) -(3722,543:6630773,10527690:11829248,505283,102891 -h3722,542:6630773,10527690:0,0,0 -r3722,632:6630773,10527690:0,608174,102891 -g3722,542:7941493,10527690 -g3722,542:7941493,10527690 -g3722,542:9574650,10527690 -g3722,542:10392539,10527690 -k3722,543:15785497,10527690:2674525 -k3722,543:18460021,10527690:2674524 -) -(3722,544:6630773,11385717:11829248,505283,126483 -h3722,543:6630773,11385717:0,0,0 -r3722,632:6630773,11385717:0,631766,126483 -g3722,543:7941493,11385717 -g3722,543:7941493,11385717 -g3722,543:11911008,11385717 -g3722,543:12726275,11385717 -g3722,543:14132677,11385717 -k3722,544:16894038,11385717:1565984 -k3722,544:18460021,11385717:1565983 -) -(3722,545:6630773,12243743:11829248,505283,126483 -h3722,544:6630773,12243743:0,0,0 -r3722,632:6630773,12243743:0,631766,126483 -g3722,544:7941493,12243743 -g3722,544:7941493,12243743 -g3722,544:11224846,12243743 -k3722,545:15440122,12243743:3019899 -k3722,545:18460021,12243743:3019899 -) -(3722,546:6630773,13101769:11829248,485622,126483 -h3722,545:6630773,13101769:0,0,0 -r3722,632:6630773,13101769:0,612105,126483 -g3722,545:7941493,13101769 -g3722,545:7941493,13101769 -g3722,545:10188722,13101769 -k3722,546:15683588,13101769:2776433 -k3722,546:18460021,13101769:2776433 -) -(3722,547:6630773,13959796:11829248,505283,134348 -h3722,546:6630773,13959796:0,0,0 -g3722,546:10347974,13959796 -k3722,547:15001686,13959796:3458335 -k3722,547:18460021,13959796:3458335 -) -(3722,548:6630773,14817822:11829248,505283,126483 -h3722,547:6630773,14817822:0,0,0 -g3722,547:9928544,14817822 -k3722,548:14791971,14817822:3668050 -k3722,548:18460021,14817822:3668050 -) -(3722,549:6630773,15675848:11829248,505283,126483 -h3722,548:6630773,15675848:0,0,0 -k3722,549:13349196,15675848:5110825 -k3722,549:18460021,15675848:5110825 -) -(3722,550:6630773,16533874:11829248,505283,102891 -h3722,549:6630773,16533874:0,0,0 -r3722,632:6630773,16533874:0,608174,102891 -g3722,549:7941493,16533874 -g3722,549:7941493,16533874 -g3722,549:11488956,16533874 -k3722,550:15572177,16533874:2887844 -k3722,550:18460021,16533874:2887844 -) -(3722,551:6630773,17391901:11829248,485622,126483 -h3722,550:6630773,17391901:0,0,0 -r3722,632:6630773,17391901:0,612105,126483 -g3722,550:7941493,17391901 -g3722,550:7941493,17391901 -g3722,550:9393115,17391901 -g3722,550:12380246,17391901 -k3722,551:16017822,17391901:2442199 -k3722,551:18460021,17391901:2442199 -) -(3722,552:6630773,18249927:11829248,505283,134348 -h3722,551:6630773,18249927:0,0,0 -r3722,632:6630773,18249927:0,639631,134348 -g3722,551:7941493,18249927 -g3722,551:7941493,18249927 -g3722,551:9574650,18249927 -g3722,551:10218868,18249927 -g3722,551:13310856,18249927 -k3722,552:16483127,18249927:1976894 -k3722,552:18460021,18249927:1976894 -) -(3722,553:6630773,19107953:11829248,505283,126483 -h3722,552:6630773,19107953:0,0,0 -r3722,632:6630773,19107953:0,631766,126483 -g3722,552:7941493,19107953 -g3722,552:7941493,19107953 -g3722,552:10395816,19107953 -g3722,552:12927471,19107953 -k3722,553:16291435,19107953:2168587 -k3722,553:18460021,19107953:2168586 -) -(3722,554:6630773,19965980:11829248,505283,126483 -h3722,553:6630773,19965980:0,0,0 -r3722,632:6630773,19965980:0,631766,126483 -g3722,553:7941493,19965980 -g3722,553:7941493,19965980 -g3722,553:9300709,19965980 -g3722,553:10691383,19965980 -g3722,553:13716524,19965980 -g3722,553:15366720,19965980 -k3722,554:18272587,19965980:187434 -k3722,554:18460021,19965980:187434 -) -(3722,555:6630773,20824006:11829248,505283,126483 -h3722,554:6630773,20824006:0,0,0 -r3722,632:6630773,20824006:0,631766,126483 -g3722,554:7941493,20824006 -g3722,554:7941493,20824006 -g3722,554:10309308,20824006 -g3722,554:11959504,20824006 -k3722,555:16568979,20824006:1891042 -k3722,555:18460021,20824006:1891042 -) -(3722,556:6630773,21682032:11829248,485622,126483 -h3722,555:6630773,21682032:0,0,0 -r3722,632:6630773,21682032:0,612105,126483 -g3722,555:7941493,21682032 -g3722,555:7941493,21682032 -g3722,555:10692039,21682032 -k3722,556:15935247,21682032:2524775 -k3722,556:18460021,21682032:2524774 -) -(3722,557:6630773,22540059:11829248,505283,102891 -h3722,556:6630773,22540059:0,0,0 -r3722,632:6630773,22540059:0,608174,102891 -g3722,556:7941493,22540059 -g3722,556:7941493,22540059 -g3722,556:10735292,22540059 -k3722,557:15956873,22540059:2503148 -k3722,557:18460021,22540059:2503148 -) -(3722,558:6630773,23398085:11829248,505283,126483 -h3722,557:6630773,23398085:0,0,0 -r3722,632:6630773,23398085:0,631766,126483 -g3722,557:7941493,23398085 -g3722,557:7941493,23398085 -g3722,557:10523611,23398085 -g3722,557:12173807,23398085 -k3722,558:16676131,23398085:1783891 -k3722,558:18460021,23398085:1783890 -) -(3722,559:6630773,24256111:11829248,485622,134348 -h3722,558:6630773,24256111:0,0,0 -r3722,632:6630773,24256111:0,619970,134348 -g3722,558:7941493,24256111 -g3722,558:7941493,24256111 -g3722,558:11798286,24256111 -k3722,559:16488370,24256111:1971651 -k3722,559:18460021,24256111:1971651 -) -(3722,560:6630773,25114138:11829248,505283,134348 -h3722,559:6630773,25114138:0,0,0 -r3722,632:6630773,25114138:0,639631,134348 -g3722,559:7941493,25114138 -g3722,559:7941493,25114138 -g3722,559:11421454,25114138 -g3722,559:13938036,25114138 -k3722,560:16796717,25114138:1663304 -k3722,560:18460021,25114138:1663304 -) -(3722,561:6630773,25972164:11829248,505283,126483 -h3722,560:6630773,25972164:0,0,0 -r3722,632:6630773,25972164:0,631766,126483 -g3722,560:7941493,25972164 -g3722,560:7941493,25972164 -g3722,560:11969335,25972164 -g3722,560:14416449,25972164 -k3722,561:17035924,25972164:1424098 -k3722,561:18460021,25972164:1424097 -) -(3722,562:6630773,26830190:11829248,505283,102891 -h3722,561:6630773,26830190:0,0,0 -r3722,632:6630773,26830190:0,608174,102891 -g3722,561:7941493,26830190 -g3722,561:7941493,26830190 -g3722,561:9530085,26830190 -g3722,561:13411127,26830190 -k3722,562:17294791,26830190:1165231 -k3722,562:18460021,26830190:1165230 -) -(3722,563:6630773,27688216:11829248,505283,126483 -h3722,562:6630773,27688216:0,0,0 -r3722,632:6630773,27688216:0,631766,126483 -g3722,562:7941493,27688216 -g3722,562:7941493,27688216 -g3722,562:10473148,27688216 -k3722,563:15105233,27688216:3354788 -k3722,563:18460021,27688216:3354788 -) -(3722,564:6630773,28546243:11829248,505283,102891 -h3722,563:6630773,28546243:0,0,0 -r3722,632:6630773,28546243:0,608174,102891 -g3722,563:8596853,28546243 -g3722,563:8596853,28546243 -g3722,563:9194541,28546243 -g3722,563:12912398,28546243 -k3722,564:16283898,28546243:2176123 -k3722,564:18460021,28546243:2176123 -) -(3722,565:6630773,29404269:11829248,505283,102891 -h3722,564:6630773,29404269:0,0,0 -r3722,632:6630773,29404269:0,608174,102891 -g3722,564:8596853,29404269 -g3722,564:8596853,29404269 -g3722,564:9194541,29404269 -g3722,564:13242699,29404269 -k3722,565:17210577,29404269:1249445 -k3722,565:18460021,29404269:1249444 -) -(3722,566:6630773,30262295:11829248,505283,126483 -h3722,565:6630773,30262295:0,0,0 -r3722,632:6630773,30262295:0,631766,126483 -g3722,565:7941493,30262295 -g3722,565:7941493,30262295 -g3722,565:9212891,30262295 -g3722,565:10863087,30262295 -k3722,566:16020771,30262295:2439251 -k3722,566:18460021,30262295:2439250 -) -(3722,567:6630773,31120322:11829248,505283,102891 -h3722,566:6630773,31120322:0,0,0 -r3722,632:6630773,31120322:0,608174,102891 -g3722,566:7941493,31120322 -g3722,566:7941493,31120322 -g3722,566:9747665,31120322 -g3722,566:11495510,31120322 -k3722,567:15575454,31120322:2884567 -k3722,567:18460021,31120322:2884567 -) -(3722,568:6630773,31978348:11829248,513147,126483 -h3722,567:6630773,31978348:0,0,0 -r3722,632:6630773,31978348:0,639630,126483 -g3722,567:7941493,31978348 -g3722,567:7941493,31978348 -g3722,567:11310043,31978348 -g3722,567:12960239,31978348 -k3722,568:16307819,31978348:2152203 -k3722,568:18460021,31978348:2152202 -) -(3722,569:6630773,32836374:11829248,513147,102891 -h3722,568:6630773,32836374:0,0,0 -r3722,632:6630773,32836374:0,616038,102891 -g3722,568:7941493,32836374 -g3722,568:7941493,32836374 -g3722,568:9853178,32836374 -g3722,568:12297670,32836374 -k3722,569:16738062,32836374:1721959 -k3722,569:18460021,32836374:1721959 -) -(3722,570:6630773,33694401:11829248,513147,102891 -h3722,569:6630773,33694401:0,0,0 -r3722,632:6630773,33694401:0,616038,102891 -g3722,569:7941493,33694401 -g3722,569:7941493,33694401 -g3722,569:9975730,33694401 -k3722,570:14815564,33694401:3644457 -k3722,570:18460021,33694401:3644457 -) -(3722,571:6630773,34552427:11829248,505283,134348 -h3722,570:6630773,34552427:0,0,0 -r3722,632:6630773,34552427:0,639631,134348 -g3722,570:7941493,34552427 -g3722,570:7941493,34552427 -g3722,570:11880862,34552427 -k3722,571:16529658,34552427:1930363 -k3722,571:18460021,34552427:1930363 -) -(3722,572:6630773,35410453:11829248,505283,134348 -h3722,571:6630773,35410453:0,0,0 -r3722,632:6630773,35410453:0,639631,134348 -g3722,571:7941493,35410453 -g3722,571:7941493,35410453 -g3722,571:9691304,35410453 -g3722,571:12840308,35410453 -g3722,571:15503035,35410453 -k3722,572:18340745,35410453:119277 -k3722,572:18460021,35410453:119276 -) -(3722,573:6630773,36268480:11829248,505283,126483 -h3722,572:6630773,36268480:0,0,0 -r3722,632:6630773,36268480:0,631766,126483 -g3722,572:7941493,36268480 -g3722,572:7941493,36268480 -g3722,572:9691304,36268480 -g3722,572:11671802,36268480 -k3722,573:16425128,36268480:2034893 -k3722,573:18460021,36268480:2034893 -) -(3722,574:6630773,37126506:11829248,505283,102891 -h3722,573:6630773,37126506:0,0,0 -r3722,632:6630773,37126506:0,608174,102891 -g3722,573:7941493,37126506 -g3722,573:7941493,37126506 -g3722,573:9691304,37126506 -g3722,573:11960160,37126506 -k3722,574:16569307,37126506:1890714 -k3722,574:18460021,37126506:1890714 -) -(3722,575:6630773,37984532:11829248,485622,102891 -h3722,574:6630773,37984532:0,0,0 -r3722,632:6630773,37984532:0,588513,102891 -g3722,574:7941493,37984532 -g3722,574:7941493,37984532 -g3722,574:10195276,37984532 -k3722,575:15686865,37984532:2773156 -k3722,575:18460021,37984532:2773156 -) -(3722,576:6630773,38842559:11829248,485622,102891 -h3722,575:6630773,38842559:0,0,0 -r3722,632:6630773,38842559:0,588513,102891 -g3722,575:7941493,38842559 -g3722,575:7941493,38842559 -g3722,575:10021605,38842559 -g3722,575:10906996,38842559 -g3722,575:15070498,38842559 -k3722,576:18124476,38842559:335545 -k3722,576:18460021,38842559:335545 -) -(3722,577:6630773,39700585:11829248,505283,102891 -h3722,576:6630773,39700585:0,0,0 -r3722,632:6630773,39700585:0,608174,102891 -g3722,576:7941493,39700585 -g3722,576:7941493,39700585 -g3722,576:10158576,39700585 -k3722,577:15668515,39700585:2791506 -k3722,577:18460021,39700585:2791506 -) -(3722,578:6630773,40558611:11829248,505283,126483 -h3722,577:6630773,40558611:0,0,0 -r3722,632:6630773,40558611:0,631766,126483 -g3722,577:7941493,40558611 -g3722,577:7941493,40558611 -g3722,577:10202485,40558611 -g3722,577:11770761,40558611 -k3722,578:15713080,40558611:2746942 -k3722,578:18460021,40558611:2746941 -) -(3722,579:6630773,41416637:11829248,505283,126483 -h3722,578:6630773,41416637:0,0,0 -r3722,632:6630773,41416637:0,631766,126483 -g3722,578:7941493,41416637 -g3722,578:7941493,41416637 -g3722,578:9309229,41416637 -g3722,578:10959425,41416637 -k3722,579:16068940,41416637:2391082 -k3722,579:18460021,41416637:2391081 -) -(3722,580:6630773,42274664:11829248,485622,134348 -h3722,579:6630773,42274664:0,0,0 -r3722,632:6630773,42274664:0,619970,134348 -g3722,579:7941493,42274664 -g3722,579:7941493,42274664 -g3722,579:10026193,42274664 -g3722,579:11477815,42274664 -g3722,579:15167491,42274664 -k3722,580:17411445,42274664:1048577 -k3722,580:18460021,42274664:1048576 -) -(3722,581:6630773,43132690:11829248,505283,126483 -h3722,580:6630773,43132690:0,0,0 -r3722,632:6630773,43132690:0,631766,126483 -g3722,580:7941493,43132690 -g3722,580:7941493,43132690 -g3722,580:9867596,43132690 -g3722,580:11258270,43132690 -g3722,580:13583487,43132690 -g3722,580:15563985,43132690 -k3722,581:18371220,43132690:88802 -k3722,581:18460021,43132690:88801 -) -(3722,582:6630773,43990716:11829248,505283,126483 -h3722,581:6630773,43990716:0,0,0 -r3722,632:6630773,43990716:0,631766,126483 -g3722,581:7941493,43990716 -g3722,581:7941493,43990716 -g3722,581:9788297,43990716 -g3722,581:13931483,43990716 -k3722,582:17554969,43990716:905053 -k3722,582:18460021,43990716:905052 -) -(3722,583:6630773,44848743:11829248,505283,102891 -h3722,582:6630773,44848743:0,0,0 -r3722,632:6630773,44848743:0,608174,102891 -g3722,582:7941493,44848743 -g3722,582:7941493,44848743 -g3722,582:10118599,44848743 -g3722,582:11107537,44848743 -k3722,583:16142996,44848743:2317026 -k3722,583:18460021,44848743:2317025 -) -(3722,584:6630773,45706769:11829248,485622,102891 -h3722,583:6630773,45706769:0,0,0 -r3722,632:6630773,45706769:0,588513,102891 -g3722,583:7941493,45706769 -g3722,583:7941493,45706769 -g3722,583:10382709,45706769 -k3722,584:15019054,45706769:3440968 -k3722,584:18460021,45706769:3440967 -) -] -k3722,632:19606901,45706769:1146880 -r3722,632:19606901,45706769:0,40234515,126483 -k3722,632:20753781,45706769:1146880 -[3722,632:20753781,45706769:11829248,40108032,126483 -(3722,585:20753781,6254097:11829248,505283,102891 -h3722,584:20753781,6254097:0,0,0 -r3722,632:20753781,6254097:0,608174,102891 -g3722,584:22064501,6254097 -g3722,584:22064501,6254097 -g3722,584:25127653,6254097 -k3722,585:29453030,6254097:3130000 -k3722,585:32583029,6254097:3129999 -) -(3722,586:20753781,7112499:11829248,505283,102891 -h3722,585:20753781,7112499:0,0,0 -r3722,632:20753781,7112499:0,608174,102891 -g3722,585:22064501,7112499 -g3722,585:22064501,7112499 -g3722,585:24963158,7112499 -g3722,585:29370454,7112499 -k3722,586:32335958,7112499:247071 -k3722,586:32583029,7112499:247071 -) -(3722,587:20753781,7970901:11829248,513147,126483 -h3722,586:20753781,7970901:0,0,0 -r3722,632:20753781,7970901:0,639630,126483 -g3722,586:22064501,7970901 -g3722,586:22064501,7970901 -g3722,586:24422486,7970901 -g3722,586:25273143,7970901 -g3722,586:26959384,7970901 -k3722,587:30368895,7970901:2214134 -k3722,587:32583029,7970901:2214134 -) -(3722,588:20753781,8829304:11829248,485622,126483 -h3722,587:20753781,8829304:0,0,0 -r3722,632:20753781,8829304:0,612105,126483 -g3722,587:22064501,8829304 -g3722,587:22064501,8829304 -g3722,587:23501705,8829304 -g3722,587:26033360,8829304 -k3722,588:29905883,8829304:2677146 -k3722,588:32583029,8829304:2677146 -) -(3722,589:20753781,9687706:11829248,505283,126483 -h3722,588:20753781,9687706:0,0,0 -r3722,632:20753781,9687706:0,631766,126483 -g3722,588:22064501,9687706 -g3722,588:22064501,9687706 -g3722,588:23233007,9687706 -g3722,588:25585749,9687706 -k3722,589:29682078,9687706:2900952 -k3722,589:32583029,9687706:2900951 -) -(3722,590:20753781,10546108:11829248,513147,126483 -h3722,589:20753781,10546108:0,0,0 -r3722,632:20753781,10546108:0,639630,126483 -g3722,589:22064501,10546108 -g3722,589:22064501,10546108 -g3722,589:23871328,10546108 -g3722,589:24729849,10546108 -g3722,589:28128546,10546108 -k3722,590:31715004,10546108:868025 -k3722,590:32583029,10546108:868025 -) -(3722,591:20753781,11404510:11829248,485622,126483 -h3722,590:20753781,11404510:0,0,0 -r3722,632:20753781,11404510:0,612105,126483 -g3722,590:22064501,11404510 -g3722,590:22064501,11404510 -g3722,590:25452057,11404510 -g3722,590:27983712,11404510 -k3722,591:30881059,11404510:1701970 -k3722,591:32583029,11404510:1701970 -) -(3722,592:20753781,12262912:11829248,485622,134348 -h3722,591:20753781,12262912:0,0,0 -r3722,632:20753781,12262912:0,619970,134348 -g3722,591:22064501,12262912 -g3722,591:22064501,12262912 -g3722,591:25009689,12262912 -k3722,592:29394048,12262912:3188982 -k3722,592:32583029,12262912:3188981 -) -(3722,593:20753781,13121314:11829248,473825,134348 -h3722,592:20753781,13121314:0,0,0 -r3722,632:20753781,13121314:0,608173,134348 -g3722,592:22064501,13121314 -g3722,592:22064501,13121314 -g3722,592:26153292,13121314 -k3722,592:32583029,13121314:2221670 -) -(3722,593:23375221,13962802:9207808,485622,11795 -k3722,593:29338342,13962802:3244688 -k3722,593:32583029,13962802:3244687 -) -(3722,594:20753781,14821205:11829248,513147,102891 -h3722,593:20753781,14821205:0,0,0 -r3722,632:20753781,14821205:0,616038,102891 -g3722,593:22064501,14821205 -g3722,593:22064501,14821205 -g3722,593:25242997,14821205 -g3722,593:27114705,14821205 -k3722,594:31208084,14821205:1374946 -k3722,594:32583029,14821205:1374945 -) -(3722,595:20753781,15679607:11829248,505283,134348 -h3722,594:20753781,15679607:0,0,0 -r3722,632:20753781,15679607:0,639631,134348 -g3722,594:22064501,15679607 -g3722,594:22064501,15679607 -g3722,594:25534632,15679607 -k3722,595:29656519,15679607:2926510 -k3722,595:32583029,15679607:2926510 -) -(3722,596:20753781,16538009:11829248,513147,134348 -h3722,595:20753781,16538009:0,0,0 -r3722,632:20753781,16538009:0,647495,134348 -g3722,595:22064501,16538009 -g3722,595:22064501,16538009 -g3722,595:24634823,16538009 -g3722,595:26486215,16538009 -g3722,595:27518407,16538009 -k3722,596:30648407,16538009:1934623 -k3722,596:32583029,16538009:1934622 -) -(3722,597:20753781,17396411:11829248,485622,134348 -h3722,596:20753781,17396411:0,0,0 -r3722,632:20753781,17396411:0,619970,134348 -g3722,596:22064501,17396411 -g3722,596:22064501,17396411 -g3722,596:23341142,17396411 -g3722,596:26342690,17396411 -k3722,597:30060548,17396411:2522481 -k3722,597:32583029,17396411:2522481 -) -(3722,598:20753781,18254813:11829248,485622,134348 -h3722,597:20753781,18254813:0,0,0 -r3722,632:20753781,18254813:0,619970,134348 -g3722,597:22064501,18254813 -g3722,597:22064501,18254813 -g3722,597:24470983,18254813 -k3722,598:29124695,18254813:3458335 -k3722,598:32583029,18254813:3458334 -) -(3722,599:20753781,19113216:11829248,513147,134348 -h3722,598:20753781,19113216:0,0,0 -r3722,632:20753781,19113216:0,647495,134348 -g3722,598:22064501,19113216 -g3722,598:22064501,19113216 -g3722,598:24297312,19113216 -g3722,598:25147969,19113216 -g3722,598:26503908,19113216 -g3722,598:27670448,19113216 -k3722,598:32583029,19113216:3131312 -) -(3722,599:23375221,19954704:9207808,505283,134348 -k3722,599:29527741,19954704:3055289 -k3722,599:32583029,19954704:3055288 -) -(3722,600:20753781,20813106:11829248,505283,7863 -h3722,599:20753781,20813106:0,0,0 -r3722,632:20753781,20813106:0,513146,7863 -g3722,599:22064501,20813106 -g3722,599:22064501,20813106 -k3722,600:28275020,20813106:4308009 -k3722,600:32583029,20813106:4308009 -) -(3722,601:20753781,21671508:11829248,505283,102891 -h3722,600:20753781,21671508:0,0,0 -r3722,632:20753781,21671508:0,608174,102891 -g3722,600:22719861,21671508 -g3722,600:22719861,21671508 -g3722,600:24171483,21671508 -g3722,600:26388566,21671508 -k3722,601:30083486,21671508:2499543 -k3722,601:32583029,21671508:2499543 -) -(3722,602:20753781,22529910:11829248,505283,102891 -h3722,601:20753781,22529910:0,0,0 -r3722,632:20753781,22529910:0,608174,102891 -g3722,601:22719861,22529910 -g3722,601:22719861,22529910 -g3722,601:24907452,22529910 -k3722,602:29342929,22529910:3240100 -k3722,602:32583029,22529910:3240100 -) -(3722,603:20753781,23388312:11829248,505283,102891 -h3722,602:20753781,23388312:0,0,0 -r3722,632:20753781,23388312:0,608174,102891 -g3722,602:22719861,23388312 -g3722,602:22719861,23388312 -g3722,602:24103326,23388312 -g3722,602:26591072,23388312 -k3722,603:30184739,23388312:2398290 -k3722,603:32583029,23388312:2398290 -) -(3722,604:20753781,24246714:11829248,505283,102891 -h3722,603:20753781,24246714:0,0,0 -r3722,632:20753781,24246714:0,608174,102891 -g3722,603:22719861,24246714 -g3722,603:22719861,24246714 -g3722,603:24103326,24246714 -g3722,603:26320409,24246714 -k3722,604:30049408,24246714:2533622 -k3722,604:32583029,24246714:2533621 -) -(3722,605:20753781,25105117:11829248,513147,102891 -h3722,604:20753781,25105117:0,0,0 -r3722,632:20753781,25105117:0,616038,102891 -g3722,604:22719861,25105117 -g3722,604:22719861,25105117 -g3722,604:28260274,25105117 -k3722,605:31019340,25105117:1563689 -k3722,605:32583029,25105117:1563689 -) -(3722,606:20753781,25963519:11829248,505283,126483 -h3722,605:20753781,25963519:0,0,0 -r3722,632:20753781,25963519:0,631766,126483 -g3722,605:22064501,25963519 -g3722,605:22064501,25963519 -g3722,605:24432972,25963519 -g3722,605:26083168,25963519 -k3722,606:30692315,25963519:1890714 -k3722,606:32583029,25963519:1890714 -) -(3722,607:20753781,26821921:11829248,505283,126483 -h3722,606:20753781,26821921:0,0,0 -r3722,632:20753781,26821921:0,631766,126483 -g3722,606:22064501,26821921 -g3722,606:22064501,26821921 -g3722,606:25510384,26821921 -g3722,606:27281822,26821921 -k3722,607:30530114,26821921:2052915 -k3722,607:32583029,26821921:2052915 -) -(3722,608:20753781,27680323:11829248,505283,102891 -h3722,607:20753781,27680323:0,0,0 -r3722,632:20753781,27680323:0,608174,102891 -g3722,607:22064501,27680323 -g3722,607:22064501,27680323 -g3722,607:24674800,27680323 -g3722,607:27119292,27680323 -k3722,608:31210377,27680323:1372652 -k3722,608:32583029,27680323:1372652 -) -(3722,609:20753781,28538725:11829248,473825,7863 -h3722,608:20753781,28538725:0,0,0 -r3722,632:20753781,28538725:0,481688,7863 -g3722,608:22064501,28538725 -g3722,608:22064501,28538725 -k3722,609:28750484,28538725:3832545 -k3722,609:32583029,28538725:3832545 -) -(3722,610:20753781,29397128:11829248,505283,126483 -h3722,609:20753781,29397128:0,0,0 -r3722,632:20753781,29397128:0,631766,126483 -g3722,609:22719861,29397128 -g3722,609:22719861,29397128 -g3722,609:25425187,29397128 -k3722,610:29601797,29397128:2981233 -k3722,610:32583029,29397128:2981232 -) -(3722,611:20753781,30255530:11829248,505283,126483 -h3722,610:20753781,30255530:0,0,0 -r3722,632:20753781,30255530:0,631766,126483 -g3722,610:22719861,30255530 -g3722,610:22719861,30255530 -g3722,610:25251516,30255530 -g3722,610:26443615,30255530 -k3722,611:30111011,30255530:2472019 -k3722,611:32583029,30255530:2472018 -) -(3722,612:20753781,31113932:11829248,505283,102891 -h3722,611:20753781,31113932:0,0,0 -r3722,632:20753781,31113932:0,608174,102891 -g3722,611:22719861,31113932 -g3722,611:22719861,31113932 -g3722,611:25503830,31113932 -k3722,612:29641118,31113932:2941911 -k3722,612:32583029,31113932:2941911 -) -(3722,613:20753781,31972334:11829248,505283,126483 -h3722,612:20753781,31972334:0,0,0 -r3722,632:20753781,31972334:0,631766,126483 -g3722,612:22064501,31972334 -g3722,612:22064501,31972334 -g3722,612:23619015,31972334 -g3722,612:25269211,31972334 -k3722,613:29523809,31972334:3059221 -k3722,613:32583029,31972334:3059220 -) -(3722,614:20753781,32830736:11829248,505283,134348 -h3722,613:20753781,32830736:0,0,0 -r3722,632:20753781,32830736:0,639631,134348 -g3722,613:22064501,32830736 -g3722,613:22064501,32830736 -g3722,613:24581083,32830736 -k3722,614:29941273,32830736:2641757 -k3722,614:32583029,32830736:2641756 -) -(3722,615:20753781,33689138:11829248,505283,102891 -h3722,614:20753781,33689138:0,0,0 -r3722,632:20753781,33689138:0,608174,102891 -g3722,614:22064501,33689138 -g3722,614:22064501,33689138 -g3722,614:24850436,33689138 -k3722,615:30075949,33689138:2507080 -k3722,615:32583029,33689138:2507080 -) -(3722,616:20753781,34547541:11829248,485622,126483 -h3722,615:20753781,34547541:0,0,0 -r3722,632:20753781,34547541:0,612105,126483 -g3722,615:22064501,34547541 -g3722,615:22064501,34547541 -g3722,615:23556755,34547541 -g3722,615:26088410,34547541 -k3722,616:29933408,34547541:2649621 -k3722,616:32583029,34547541:2649621 -) -(3722,617:20753781,35405943:11829248,485622,134348 -h3722,616:20753781,35405943:0,0,0 -r3722,632:20753781,35405943:0,619970,134348 -g3722,616:22064501,35405943 -g3722,616:22064501,35405943 -g3722,616:23424373,35405943 -k3722,617:29362918,35405943:3220112 -k3722,617:32583029,35405943:3220111 -) -(3722,618:20753781,36264345:11829248,485622,102891 -h3722,617:20753781,36264345:0,0,0 -r3722,632:20753781,36264345:0,588513,102891 -g3722,617:22064501,36264345 -g3722,617:22064501,36264345 -g3722,617:23489909,36264345 -g3722,617:24478847,36264345 -k3722,618:29890155,36264345:2692875 -k3722,618:32583029,36264345:2692874 -) -(3722,619:20753781,37122747:11829248,505283,126483 -h3722,618:20753781,37122747:0,0,0 -r3722,632:20753781,37122747:0,631766,126483 -g3722,618:22064501,37122747 -g3722,618:22064501,37122747 -g3722,618:23274295,37122747 -g3722,618:24924491,37122747 -k3722,619:30112977,37122747:2470053 -k3722,619:32583029,37122747:2470052 -) -(3722,620:20753781,37981149:11829248,505283,102891 -h3722,619:20753781,37981149:0,0,0 -r3722,632:20753781,37981149:0,608174,102891 -g3722,619:22064501,37981149 -g3722,619:22064501,37981149 -g3722,619:23704867,37981149 -k3722,620:29503165,37981149:3079865 -k3722,620:32583029,37981149:3079864 -) -(3722,621:20753781,38839552:11829248,505283,102891 -h3722,620:20753781,38839552:0,0,0 -r3722,632:20753781,38839552:0,608174,102891 -g3722,620:22064501,38839552 -g3722,620:22064501,38839552 -g3722,620:25630970,38839552 -k3722,621:29704688,38839552:2878341 -k3722,621:32583029,38839552:2878341 -) -(3722,622:20753781,39697954:11829248,505283,126483 -h3722,621:20753781,39697954:0,0,0 -r3722,632:20753781,39697954:0,631766,126483 -g3722,621:22064501,39697954 -g3722,621:22064501,39697954 -g3722,621:24037790,39697954 -g3722,621:25687986,39697954 -k3722,622:30494724,39697954:2088305 -k3722,622:32583029,39697954:2088305 -) -(3722,623:20753781,40556356:11829248,505283,102891 -h3722,622:20753781,40556356:0,0,0 -r3722,632:20753781,40556356:0,608174,102891 -g3722,622:22064501,40556356 -g3722,622:22064501,40556356 -g3722,622:23821521,40556356 -g3722,622:25554948,40556356 -k3722,623:30428205,40556356:2154824 -k3722,623:32583029,40556356:2154824 -) -(3722,624:20753781,41414758:11829248,505283,102891 -h3722,623:20753781,41414758:0,0,0 -r3722,632:20753781,41414758:0,608174,102891 -g3722,623:22064501,41414758 -g3722,623:22064501,41414758 -g3722,623:23657681,41414758 -g3722,623:25977000,41414758 -k3722,624:30639231,41414758:1943798 -k3722,624:32583029,41414758:1943798 -) -(3722,625:20753781,42273160:11829248,505283,134348 -h3722,624:20753781,42273160:0,0,0 -g3722,624:24526033,42273160 -g3722,624:28215709,42273160 -k3722,625:30997058,42273160:1585972 -k3722,625:32583029,42273160:1585971 -) -(3722,626:20753781,43131562:11829248,505283,126483 -h3722,625:20753781,43131562:0,0,0 -g3722,625:24406757,43131562 -g3722,625:25975033,43131562 -k3722,626:29876720,43131562:2706310 -k3722,626:32583029,43131562:2706309 -) -(3722,627:20753781,43989965:11829248,505283,126483 -h3722,626:20753781,43989965:0,0,0 -g3722,626:24469017,43989965 -k3722,627:29123712,43989965:3459318 -k3722,627:32583029,43989965:3459317 -) -(3722,628:20753781,44848367:11829248,473825,126483 -h3722,627:20753781,44848367:0,0,0 -k3722,628:28134446,44848367:4448584 -k3722,628:32583029,44848367:4448583 -) -(3722,629:20753781,45706769:11829248,505283,126483 -h3722,628:20753781,45706769:0,0,0 -r3722,632:20753781,45706769:0,631766,126483 -g3722,628:22064501,45706769 -g3722,628:22064501,45706769 -g3722,628:23911305,45706769 -g3722,628:27688800,45706769 -k3722,629:30534374,45706769:2048656 -k3722,629:32583029,45706769:2048655 -) -] -(3722,632:32583029,45706769:0,355205,126483 -h3722,632:32583029,45706769:420741,355205,126483 -k3722,632:32583029,45706769:-420741 -) -) -] -(3722,632:32583029,45706769:0,0,0 -g3722,632:32583029,45706769 -) -) -] -(3722,632:6630773,47279633:25952256,0,0 -h3722,632:6630773,47279633:25952256,0,0 -) -] -(3722,632:4262630,4025873:0,0,0 -[3722,632:-473656,4025873:0,0,0 -(3722,632:-473656,-710413:0,0,0 -(3722,632:-473656,-710413:0,0,0 -g3722,632:-473656,-710413 -) -g3722,632:-473656,-710413 -) -] -) -] -!30784 -}438 +!26932 +}421 !12 -{439 -[3722,726:4262630,47279633:28320399,43253760,0 -(3722,726:4262630,4025873:0,0,0 -[3722,726:-473656,4025873:0,0,0 -(3722,726:-473656,-710413:0,0,0 -(3722,726:-473656,-644877:0,0,0 -k3722,726:-473656,-644877:-65536 +{422 +[3763,812:4262630,47279633:28320399,43253760,0 +(3763,812:4262630,4025873:0,0,0 +[3763,812:-473656,4025873:0,0,0 +(3763,812:-473656,-710413:0,0,0 +(3763,812:-473656,-644877:0,0,0 +k3763,812:-473656,-644877:-65536 ) -(3722,726:-473656,4736287:0,0,0 -k3722,726:-473656,4736287:5209943 +(3763,812:-473656,4736287:0,0,0 +k3763,812:-473656,4736287:5209943 ) -g3722,726:-473656,-710413 +g3763,812:-473656,-710413 ) ] ) -[3722,726:6630773,47279633:25952256,43253760,0 -[3722,726:6630773,4812305:25952256,786432,0 -(3722,726:6630773,4812305:25952256,505283,11795 -(3722,726:6630773,4812305:25952256,505283,11795 -g3722,726:3078558,4812305 -[3722,726:3078558,4812305:0,0,0 -(3722,726:3078558,2439708:0,1703936,0 -k3722,726:1358238,2439708:-1720320 -(3722,1:1358238,2439708:1720320,1703936,0 -(3722,1:1358238,2439708:1179648,16384,0 -r3722,726:2537886,2439708:1179648,16384,0 +[3763,812:6630773,47279633:25952256,43253760,0 +[3763,812:6630773,4812305:25952256,786432,0 +(3763,812:6630773,4812305:25952256,505283,11795 +(3763,812:6630773,4812305:25952256,505283,11795 +g3763,812:3078558,4812305 +[3763,812:3078558,4812305:0,0,0 +(3763,812:3078558,2439708:0,1703936,0 +k3763,812:1358238,2439708:-1720320 +(3763,1:1358238,2439708:1720320,1703936,0 +(3763,1:1358238,2439708:1179648,16384,0 +r3763,812:2537886,2439708:1179648,16384,0 ) -g3722,1:3062174,2439708 -(3722,1:3062174,2439708:16384,1703936,0 -[3722,1:3062174,2439708:25952256,1703936,0 -(3722,1:3062174,1915420:25952256,1179648,0 -(3722,1:3062174,1915420:16384,1179648,0 -r3722,726:3078558,1915420:16384,1179648,0 +g3763,1:3062174,2439708 +(3763,1:3062174,2439708:16384,1703936,0 +[3763,1:3062174,2439708:25952256,1703936,0 +(3763,1:3062174,1915420:25952256,1179648,0 +(3763,1:3062174,1915420:16384,1179648,0 +r3763,812:3078558,1915420:16384,1179648,0 ) -k3722,1:29014430,1915420:25935872 -g3722,1:29014430,1915420 +k3763,1:29014430,1915420:25935872 +g3763,1:29014430,1915420 ) ] ) ) ) ] -[3722,726:3078558,4812305:0,0,0 -(3722,726:3078558,2439708:0,1703936,0 -g3722,726:29030814,2439708 -g3722,726:36135244,2439708 -(3722,1:36135244,2439708:1720320,1703936,0 -(3722,1:36135244,2439708:16384,1703936,0 -[3722,1:36135244,2439708:25952256,1703936,0 -(3722,1:36135244,1915420:25952256,1179648,0 -(3722,1:36135244,1915420:16384,1179648,0 -r3722,726:36151628,1915420:16384,1179648,0 +[3763,812:3078558,4812305:0,0,0 +(3763,812:3078558,2439708:0,1703936,0 +g3763,812:29030814,2439708 +g3763,812:36135244,2439708 +(3763,1:36135244,2439708:1720320,1703936,0 +(3763,1:36135244,2439708:16384,1703936,0 +[3763,1:36135244,2439708:25952256,1703936,0 +(3763,1:36135244,1915420:25952256,1179648,0 +(3763,1:36135244,1915420:16384,1179648,0 +r3763,812:36151628,1915420:16384,1179648,0 ) -k3722,1:62087500,1915420:25935872 -g3722,1:62087500,1915420 +k3763,1:62087500,1915420:25935872 +g3763,1:62087500,1915420 ) ] ) -g3722,1:36675916,2439708 -(3722,1:36675916,2439708:1179648,16384,0 -r3722,726:37855564,2439708:1179648,16384,0 +g3763,1:36675916,2439708 +(3763,1:36675916,2439708:1179648,16384,0 +r3763,812:37855564,2439708:1179648,16384,0 ) ) -k3722,726:3078556,2439708:-34777008 +k3763,812:3078556,2439708:-34777008 ) ] -[3722,726:3078558,4812305:0,0,0 -(3722,726:3078558,49800853:0,16384,2228224 -k3722,726:1358238,49800853:-1720320 -(3722,1:1358238,49800853:1720320,16384,2228224 -(3722,1:1358238,49800853:1179648,16384,0 -r3722,726:2537886,49800853:1179648,16384,0 +[3763,812:3078558,4812305:0,0,0 +(3763,812:3078558,49800853:0,16384,2228224 +k3763,812:1358238,49800853:-1720320 +(3763,1:1358238,49800853:1720320,16384,2228224 +(3763,1:1358238,49800853:1179648,16384,0 +r3763,812:2537886,49800853:1179648,16384,0 ) -g3722,1:3062174,49800853 -(3722,1:3062174,52029077:16384,1703936,0 -[3722,1:3062174,52029077:25952256,1703936,0 -(3722,1:3062174,51504789:25952256,1179648,0 -(3722,1:3062174,51504789:16384,1179648,0 -r3722,726:3078558,51504789:16384,1179648,0 +g3763,1:3062174,49800853 +(3763,1:3062174,52029077:16384,1703936,0 +[3763,1:3062174,52029077:25952256,1703936,0 +(3763,1:3062174,51504789:25952256,1179648,0 +(3763,1:3062174,51504789:16384,1179648,0 +r3763,812:3078558,51504789:16384,1179648,0 ) -k3722,1:29014430,51504789:25935872 -g3722,1:29014430,51504789 +k3763,1:29014430,51504789:25935872 +g3763,1:29014430,51504789 ) ] ) ) ) ] -[3722,726:3078558,4812305:0,0,0 -(3722,726:3078558,49800853:0,16384,2228224 -g3722,726:29030814,49800853 -g3722,726:36135244,49800853 -(3722,1:36135244,49800853:1720320,16384,2228224 -(3722,1:36135244,52029077:16384,1703936,0 -[3722,1:36135244,52029077:25952256,1703936,0 -(3722,1:36135244,51504789:25952256,1179648,0 -(3722,1:36135244,51504789:16384,1179648,0 -r3722,726:36151628,51504789:16384,1179648,0 +[3763,812:3078558,4812305:0,0,0 +(3763,812:3078558,49800853:0,16384,2228224 +g3763,812:29030814,49800853 +g3763,812:36135244,49800853 +(3763,1:36135244,49800853:1720320,16384,2228224 +(3763,1:36135244,52029077:16384,1703936,0 +[3763,1:36135244,52029077:25952256,1703936,0 +(3763,1:36135244,51504789:25952256,1179648,0 +(3763,1:36135244,51504789:16384,1179648,0 +r3763,812:36151628,51504789:16384,1179648,0 ) -k3722,1:62087500,51504789:25935872 -g3722,1:62087500,51504789 +k3763,1:62087500,51504789:25935872 +g3763,1:62087500,51504789 ) ] ) -g3722,1:36675916,49800853 -(3722,1:36675916,49800853:1179648,16384,0 -r3722,726:37855564,49800853:1179648,16384,0 +g3763,1:36675916,49800853 +(3763,1:36675916,49800853:1179648,16384,0 +r3763,812:37855564,49800853:1179648,16384,0 ) ) -k3722,726:3078556,49800853:-34777008 +k3763,812:3078556,49800853:-34777008 ) ] -g3722,726:6630773,4812305 -k3722,726:28201292,4812305:20375142 -g3722,726:30884336,4812305 -) -) -] -[3722,726:6630773,45706769:25952256,40108032,0 -(3722,726:6630773,45706769:25952256,40108032,0 -(3722,726:6630773,45706769:0,0,0 -g3722,726:6630773,45706769 -) -[3722,726:6630773,45706769:25952256,40108032,0 -(3722,726:6630773,45706769:25952256,40108032,126483 -[3722,726:6630773,45706769:11829248,40108032,126483 -(3722,630:6630773,6254097:11829248,505283,126483 -h3722,629:6630773,6254097:0,0,0 -g3722,629:9671643,6254097 -g3722,629:13798445,6254097 -k3722,629:18460021,6254097:1933312 -) -(3722,630:9252213,7095585:9207808,485622,11795 -k3722,630:15215334,7095585:3244688 -k3722,630:18460021,7095585:3244687 -) -(3722,631:6630773,7940823:11829248,355205,134348 -h3722,630:6630773,7940823:0,0,0 -k3722,631:14565217,7940823:3894805 -k3722,631:18460021,7940823:3894804 -) -(3722,632:6630773,8786061:11829248,505283,102891 -h3722,631:6630773,8786061:0,0,0 -r3722,726:6630773,8786061:0,608174,102891 -g3722,631:7941493,8786061 -g3722,631:7941493,8786061 -g3722,631:9828929,8786061 -g3722,631:10998746,8786061 -k3722,632:15327072,8786061:3132949 -k3722,632:18460021,8786061:3132949 -) -(3722,633:6630773,9631299:11829248,505283,126483 -h3722,632:6630773,9631299:0,0,0 -r3722,726:6630773,9631299:0,631766,126483 -g3722,632:7941493,9631299 -g3722,632:7941493,9631299 -g3722,632:10495430,9631299 -k3722,633:14876185,9631299:3583837 -k3722,633:18460021,9631299:3583836 -) -(3722,634:6630773,10476537:11829248,485622,102891 -h3722,633:6630773,10476537:0,0,0 -r3722,726:6630773,10476537:0,588513,102891 -g3722,633:7941493,10476537 -g3722,633:7941493,10476537 -g3722,633:10312585,10476537 -k3722,634:14983992,10476537:3476030 -k3722,634:18460021,10476537:3476029 -) -(3722,635:6630773,11321775:11829248,505283,102891 -h3722,634:6630773,11321775:0,0,0 -r3722,726:6630773,11321775:0,608174,102891 -g3722,634:7941493,11321775 -g3722,634:7941493,11321775 -g3722,634:9961312,11321775 -k3722,635:14808355,11321775:3651666 -k3722,635:18460021,11321775:3651666 -) -(3722,636:6630773,12167012:11829248,485622,102891 -h3722,635:6630773,12167012:0,0,0 -r3722,726:6630773,12167012:0,588513,102891 -g3722,635:7941493,12167012 -g3722,635:7941493,12167012 -g3722,635:9222721,12167012 -k3722,636:14439060,12167012:4020962 -k3722,636:18460021,12167012:4020961 -) -(3722,637:6630773,13012250:11829248,485622,102891 -h3722,636:6630773,13012250:0,0,0 -r3722,726:6630773,13012250:0,588513,102891 -g3722,636:7941493,13012250 -g3722,636:7941493,13012250 -g3722,636:10067480,13012250 -g3722,636:11237297,13012250 -k3722,637:15446348,13012250:3013674 -k3722,637:18460021,13012250:3013673 -) -(3722,638:6630773,13857488:11829248,485622,173670 -h3722,637:6630773,13857488:0,0,0 -r3722,726:6630773,13857488:0,659292,173670 -g3722,637:7941493,13857488 -g3722,637:7941493,13857488 -(3722,637:7941493,13857488:1181614,473825,0 -) -(3722,637:9428045,14031158:355205,473825,0 -) -g3722,637:10484484,13857488 -k3722,638:15069941,13857488:3390080 -k3722,638:18460021,13857488:3390080 -) -(3722,639:6630773,14702726:11829248,505283,102891 -h3722,638:6630773,14702726:0,0,0 -r3722,726:6630773,14702726:0,608174,102891 -k3722,638:7941493,14702726:1310720 -k3722,638:7941493,14702726:0 -k3722,638:11078046,14702726:185467 -k3722,638:12632559,14702726:185466 -k3722,638:14187073,14702726:185467 -k3722,638:17264644,14702726:185467 -k3722,639:18460021,14702726:0 -k3722,639:18460021,14702726:0 -) -(3722,640:6630773,15547964:11829248,505283,102891 -h3722,639:6630773,15547964:0,0,0 -r3722,726:6630773,15547964:0,608174,102891 -g3722,639:7941493,15547964 -g3722,639:7941493,15547964 -g3722,639:12254416,15547964 -g3722,639:13822692,15547964 -k3722,640:16739045,15547964:1720976 -k3722,640:18460021,15547964:1720976 -) -(3722,641:6630773,16393202:11829248,485622,102891 -h3722,640:6630773,16393202:0,0,0 -r3722,726:6630773,16393202:0,588513,102891 -g3722,640:7941493,16393202 -g3722,640:7941493,16393202 -g3722,640:9969176,16393202 -k3722,641:14812287,16393202:3647734 -k3722,641:18460021,16393202:3647734 -) -(3722,642:6630773,17238440:11829248,485622,102891 -h3722,641:6630773,17238440:0,0,0 -r3722,726:6630773,17238440:0,588513,102891 -g3722,641:7941493,17238440 -g3722,641:7941493,17238440 -g3722,641:10704490,17238440 -g3722,641:13795823,17238440 -k3722,642:16725611,17238440:1734411 -k3722,642:18460021,17238440:1734410 -) -(3722,643:6630773,18083678:11829248,505283,126483 -h3722,642:6630773,18083678:0,0,0 -r3722,726:6630773,18083678:0,631766,126483 -g3722,642:7941493,18083678 -g3722,642:7941493,18083678 -g3722,642:10998747,18083678 -k3722,643:15327073,18083678:3132949 -k3722,643:18460021,18083678:3132948 -) -(3722,644:6630773,18928916:11829248,485622,102891 -h3722,643:6630773,18928916:0,0,0 -r3722,726:6630773,18928916:0,588513,102891 -g3722,643:7941493,18928916 -g3722,643:7941493,18928916 -g3722,643:10470527,18928916 -k3722,644:15062963,18928916:3397059 -k3722,644:18460021,18928916:3397058 -) -(3722,645:6630773,19774154:11829248,485622,102891 -h3722,644:6630773,19774154:0,0,0 -r3722,726:6630773,19774154:0,588513,102891 -g3722,644:7941493,19774154 -g3722,644:7941493,19774154 -g3722,644:9011041,19774154 -g3722,644:9794195,19774154 -k3722,645:14724797,19774154:3735225 -k3722,645:18460021,19774154:3735224 -) -(3722,646:6630773,20619392:11829248,485622,102891 -h3722,645:6630773,20619392:0,0,0 -r3722,726:6630773,20619392:0,588513,102891 -g3722,645:7941493,20619392 -g3722,645:7941493,20619392 -g3722,645:10507227,20619392 -g3722,645:11677044,20619392 -k3722,646:15666221,20619392:2793800 -k3722,646:18460021,20619392:2793800 -) -(3722,647:6630773,21464629:11829248,485622,102891 -h3722,646:6630773,21464629:0,0,0 -r3722,726:6630773,21464629:0,588513,102891 -g3722,646:7941493,21464629 -g3722,646:7941493,21464629 -g3722,646:9953447,21464629 -g3722,646:11123264,21464629 -k3722,647:15389331,21464629:3070690 -k3722,647:18460021,21464629:3070690 -) -(3722,649:6630773,22309867:11829248,505283,102891 -h3722,647:6630773,22309867:0,0,0 -r3722,726:6630773,22309867:0,608174,102891 -g3722,647:7941493,22309867 -g3722,647:7941493,22309867 -g3722,647:10738569,22309867 -g3722,647:11509927,22309867 -g3722,647:12281285,22309867 -g3722,647:14575700,22309867 -g3722,647:15745517,22309867 -k3722,647:18460021,22309867:619318 -) -(3722,649:9252213,23151355:9207808,485622,102891 -g3722,647:10422030,23151355 -g3722,647:11591847,23151355 -g3722,647:12761664,23151355 -g3722,648:14329940,23151355 -g3722,648:15898216,23151355 -k3722,648:18460021,23151355:1192758 -) -(3722,649:9252213,23992843:9207808,485622,102891 -k3722,648:10819965,23992843:198705 -k3722,648:12387717,23992843:198705 -k3722,648:13955470,23992843:198706 -k3722,648:15523222,23992843:198705 -k3722,648:17090974,23992843:198705 -k3722,648:18460021,23992843:0 -) -(3722,649:9252213,24834331:9207808,485622,11795 -k3722,649:14453806,24834331:4006216 -k3722,649:18460021,24834331:4006215 -) -(3722,650:6630773,25679569:11829248,505283,102891 -h3722,649:6630773,25679569:0,0,0 -r3722,726:6630773,25679569:0,608174,102891 -g3722,649:7941493,25679569 -g3722,649:7941493,25679569 -g3722,649:10471182,25679569 -k3722,650:15063290,25679569:3396731 -k3722,650:18460021,25679569:3396731 -) -(3722,651:6630773,26524807:11829248,485622,102891 -h3722,650:6630773,26524807:0,0,0 -r3722,726:6630773,26524807:0,588513,102891 -g3722,650:7941493,26524807 -g3722,650:7941493,26524807 -g3722,650:8667631,26524807 -k3722,651:14161515,26524807:4298507 -k3722,651:18460021,26524807:4298506 -) -(3722,652:6630773,27370045:11829248,485622,102891 -h3722,651:6630773,27370045:0,0,0 -r3722,726:6630773,27370045:0,588513,102891 -g3722,651:7941493,27370045 -g3722,651:7941493,27370045 -g3722,651:9473069,27370045 -g3722,651:10642886,27370045 -g3722,651:12211162,27370045 -g3722,651:13779438,27370045 -g3722,651:15347714,27370045 -k3722,652:17501556,27370045:958465 -k3722,652:18460021,27370045:958465 -) -(3722,653:6630773,28215283:11829248,505283,102891 -h3722,652:6630773,28215283:0,0,0 -r3722,726:6630773,28215283:0,608174,102891 -g3722,652:7941493,28215283 -g3722,652:7941493,28215283 -g3722,652:9054293,28215283 -k3722,653:14354846,28215283:4105176 -k3722,653:18460021,28215283:4105175 -) -(3722,654:6630773,29060521:11829248,485622,102891 -h3722,653:6630773,29060521:0,0,0 -r3722,726:6630773,29060521:0,588513,102891 -g3722,653:7941493,29060521 -g3722,653:7941493,29060521 -g3722,653:9745698,29060521 -k3722,654:14501319,29060521:3958703 -k3722,654:18460021,29060521:3958702 -) -(3722,655:6630773,29905759:11829248,485622,102891 -h3722,654:6630773,29905759:0,0,0 -r3722,726:6630773,29905759:0,588513,102891 -g3722,654:7941493,29905759 -g3722,654:7941493,29905759 -g3722,654:9736523,29905759 -g3722,654:10906340,29905759 -g3722,654:12474616,29905759 -g3722,654:14042892,29905759 -k3722,655:17610673,29905759:849348 -k3722,655:18460021,29905759:849348 -) -(3722,656:6630773,30750997:11829248,485622,102891 -h3722,655:6630773,30750997:0,0,0 -r3722,726:6630773,30750997:0,588513,102891 -g3722,655:7941493,30750997 -g3722,655:7941493,30750997 -g3722,655:10325692,30750997 -k3722,656:14990545,30750997:3469476 -k3722,656:18460021,30750997:3469476 -) -(3722,657:6630773,31596235:11829248,485622,102891 -h3722,656:6630773,31596235:0,0,0 -r3722,726:6630773,31596235:0,588513,102891 -g3722,656:7941493,31596235 -g3722,656:7941493,31596235 -g3722,656:9881358,31596235 -g3722,656:11449634,31596235 -k3722,657:15552516,31596235:2907505 -k3722,657:18460021,31596235:2907505 -) -(3722,658:6630773,32441473:11829248,485622,126483 -h3722,657:6630773,32441473:0,0,0 -r3722,726:6630773,32441473:0,612105,126483 -g3722,657:7941493,32441473 -g3722,657:7941493,32441473 -g3722,657:10195275,32441473 -g3722,657:11763551,32441473 -k3722,658:15709475,32441473:2750547 -k3722,658:18460021,32441473:2750546 -) -(3722,659:6630773,33286710:11829248,485622,102891 -h3722,658:6630773,33286710:0,0,0 -r3722,726:6630773,33286710:0,588513,102891 -g3722,658:7941493,33286710 -g3722,658:7941493,33286710 -g3722,658:9766014,33286710 -g3722,658:10935831,33286710 -k3722,659:15295615,33286710:3164407 -k3722,659:18460021,33286710:3164406 -) -(3722,660:6630773,34131948:11829248,505283,102891 -h3722,659:6630773,34131948:0,0,0 -r3722,726:6630773,34131948:0,608174,102891 -g3722,659:7941493,34131948 -g3722,659:7941493,34131948 -g3722,659:10057651,34131948 -g3722,659:12274079,34131948 -g3722,659:14280791,34131948 -k3722,660:16768865,34131948:1691156 -k3722,660:18460021,34131948:1691156 -) -(3722,661:6630773,34977186:11829248,485622,102891 -h3722,660:6630773,34977186:0,0,0 -r3722,726:6630773,34977186:0,588513,102891 -g3722,660:7941493,34977186 -g3722,660:7941493,34977186 -g3722,660:9606762,34977186 -k3722,661:14631080,34977186:3828941 -k3722,661:18460021,34977186:3828941 -) -(3722,662:6630773,35822424:11829248,505283,126483 -h3722,661:6630773,35822424:0,0,0 -g3722,661:11865788,35822424 -g3722,661:15054769,35822424 -k3722,662:17355084,35822424:1104938 -k3722,662:18460021,35822424:1104937 -) -(3722,663:6630773,36667662:11829248,505283,134348 -h3722,662:6630773,36667662:0,0,0 -g3722,662:11865788,36667662 -g3722,662:15160938,36667662 -k3722,663:17408168,36667662:1051853 -k3722,663:18460021,36667662:1051853 -) -(3722,664:6630773,37512900:11829248,505283,126483 -h3722,663:6630773,37512900:0,0,0 -g3722,663:9168326,37512900 -g3722,663:10338143,37512900 -g3722,663:11507960,37512900 -g3722,663:13076236,37512900 -g3722,663:14644512,37512900 -k3722,664:17149955,37512900:1310066 -k3722,664:18460021,37512900:1310066 -) -(3722,668:6630773,39075996:11829248,485622,102891 -h3722,667:6630773,39075996:0,0,0 -g3722,667:9196507,39075996 -g3722,667:10366324,39075996 -k3722,668:15010861,39075996:3449160 -k3722,668:18460021,39075996:3449160 -) -(3722,669:6630773,39921234:11829248,505283,126483 -h3722,668:6630773,39921234:0,0,0 -g3722,668:9514356,39921234 -k3722,669:14584877,39921234:3875144 -k3722,669:18460021,39921234:3875144 -) -(3722,673:6630773,41484329:11829248,505283,134348 -h3722,672:6630773,41484329:0,0,0 -g3722,672:7244845,41484329 -g3722,672:8130236,41484329 -g3722,672:8685325,41484329 -g3722,672:11900521,41484329 -k3722,673:15578730,41484329:2881291 -k3722,673:18460021,41484329:2881291 -) -(3722,674:6630773,42329567:11829248,485622,134348 -h3722,673:6630773,42329567:0,0,0 -g3722,673:7244845,42329567 -g3722,673:8130236,42329567 -g3722,673:8685325,42329567 -g3722,673:11800251,42329567 -k3722,674:15528595,42329567:2931426 -k3722,674:18460021,42329567:2931426 -) -(3722,675:6630773,43174805:11829248,477757,134348 -h3722,674:6630773,43174805:0,0,0 -g3722,674:7244845,43174805 -g3722,674:8130236,43174805 -g3722,674:8685325,43174805 -g3722,674:11800251,43174805 -k3722,675:15528595,43174805:2931426 -k3722,675:18460021,43174805:2931426 -) -(3722,676:6630773,44020043:11829248,505283,102891 -h3722,675:6630773,44020043:0,0,0 -g3722,675:7252710,44020043 -g3722,675:10976465,44020043 -g3722,675:12146282,44020043 -k3722,676:15900840,44020043:2559181 -k3722,676:18460021,44020043:2559181 -) -(3722,677:6630773,44865281:11829248,505283,102891 -h3722,676:6630773,44865281:0,0,0 -g3722,676:9324302,44865281 -g3722,676:11613474,44865281 -g3722,676:12780014,44865281 -k3722,676:18460021,44865281:1394608 -) -(3722,677:9252213,45706769:9207808,505283,126483 -g3722,676:14487228,45706769 -k3722,677:17431761,45706769:1028260 -k3722,677:18460021,45706769:1028260 -) -] -k3722,726:19606901,45706769:1146880 -r3722,726:19606901,45706769:0,40234515,126483 -k3722,726:20753781,45706769:1146880 -[3722,726:20753781,45706769:11829248,40108032,126483 -(3722,678:20753781,6254097:11829248,505283,102891 -h3722,677:20753781,6254097:0,0,0 -g3722,677:23447310,6254097 -g3722,677:26636291,6254097 -k3722,678:32583029,6254097:4979427 -) -(3722,678:23375221,7095585:9207808,505283,126483 -g3722,677:28610236,7095585 -k3722,678:32004674,7095585:578356 -k3722,678:32583029,7095585:578355 -) -(3722,679:20753781,7938669:11829248,505283,134348 -h3722,678:20753781,7938669:0,0,0 -g3722,678:23447310,7938669 -g3722,678:26742460,7938669 -k3722,679:32583029,7938669:4873258 -) -(3722,679:23375221,8780157:9207808,505283,134348 -g3722,678:28610236,8780157 -k3722,679:32057758,8780157:525272 -k3722,679:32583029,8780157:525271 -) -(3722,680:20753781,9623242:11829248,505283,126483 -h3722,679:20753781,9623242:0,0,0 -g3722,679:24190489,9623242 -g3722,679:25140105,9623242 -g3722,679:26309922,9623242 -k3722,680:29844935,9623242:2738095 -k3722,680:32583029,9623242:2738094 -) -(3722,681:20753781,10466326:11829248,505283,126483 -h3722,680:20753781,10466326:0,0,0 -g3722,680:23117008,10466326 -k3722,681:28447707,10466326:4135322 -k3722,681:32583029,10466326:4135322 -) -(3722,682:20753781,11309410:11829248,505283,102891 -h3722,681:20753781,11309410:0,0,0 -g3722,681:24301899,11309410 -k3722,682:29040153,11309410:3542877 -k3722,682:32583029,11309410:3542876 -) -(3722,683:20753781,12152495:11829248,505283,102891 -h3722,682:20753781,12152495:0,0,0 -g3722,682:23216623,12152495 -g3722,682:24784899,12152495 -g3722,682:26353175,12152495 -g3722,682:27921451,12152495 -g3722,682:29489727,12152495 -g3722,682:31058003,12152495 -k3722,682:32583029,12152495:155979 -) -(3722,683:23375221,12993983:9207808,485622,102891 -g3722,682:24943497,12993983 -k3722,683:29360952,12993983:3222078 -k3722,683:32583029,12993983:3222077 -) -(3722,684:20753781,13837067:11829248,505283,102891 -h3722,683:20753781,13837067:0,0,0 -g3722,683:23539716,13837067 -g3722,683:25107992,13837067 -k3722,684:29443199,13837067:3139830 -k3722,684:32583029,13837067:3139830 -) -(3722,685:20753781,14680152:11829248,505283,126483 -h3722,684:20753781,14680152:0,0,0 -g3722,684:22306328,14680152 -g3722,684:25321639,14680152 -g3722,684:26712313,14680152 -g3722,684:30491774,14680152 -k3722,685:31935861,14680152:647169 -k3722,685:32583029,14680152:647168 -) -(3722,686:20753781,15523236:11829248,513147,134348 -h3722,685:20753781,15523236:0,0,0 -g3722,685:23812346,15523236 -g3722,685:24670867,15523236 -g3722,685:28446396,15523236 -g3722,685:29616213,15523236 -k3722,686:31697310,15523236:885720 -k3722,686:32583029,15523236:885719 -) -(3722,687:20753781,16366320:11829248,505283,134348 -h3722,686:20753781,16366320:0,0,0 -g3722,686:23227109,16366320 -g3722,686:27370295,16366320 -k3722,687:30937420,16366320:1645609 -k3722,687:32583029,16366320:1645609 -) -(3722,688:20753781,17209405:11829248,505283,134348 -h3722,687:20753781,17209405:0,0,0 -g3722,687:23950627,17209405 -g3722,687:26613354,17209405 -k3722,688:29996651,17209405:2586379 -k3722,688:32583029,17209405:2586378 -) -(3722,689:20753781,18052489:11829248,505283,126483 -h3722,688:20753781,18052489:0,0,0 -g3722,688:23183856,18052489 -g3722,688:24350396,18052489 -g3722,688:28612202,18052489 -k3722,689:31928324,18052489:654705 -k3722,689:32583029,18052489:654705 -) -(3722,690:20753781,18895573:11829248,505283,126483 -h3722,689:20753781,18895573:0,0,0 -g3722,689:23621636,18895573 -k3722,690:28301562,18895573:4281467 -k3722,690:32583029,18895573:4281467 -) -(3722,691:20753781,19738658:11829248,505283,126483 -h3722,690:20753781,19738658:0,0,0 -g3722,690:25015587,19738658 -g3722,690:26604179,19738658 -g3722,690:29531672,19738658 -k3722,691:32018109,19738658:564921 -k3722,691:32583029,19738658:564920 -) -(3722,692:20753781,20581742:11829248,505283,126483 -h3722,691:20753781,20581742:0,0,0 -g3722,691:25015587,20581742 -g3722,691:28049903,20581742 -g3722,691:28821261,20581742 -k3722,692:30901375,20581742:1681655 -k3722,692:32583029,20581742:1681654 -) -(3722,693:20753781,21424826:11829248,505283,126483 -h3722,692:20753781,21424826:0,0,0 -g3722,692:24053518,21424826 -k3722,693:28915962,21424826:3667067 -k3722,693:32583029,21424826:3667067 -) -(3722,694:20753781,22267911:11829248,505283,126483 -h3722,693:20753781,22267911:0,0,0 -g3722,693:24468361,22267911 -k3722,694:29123384,22267911:3459646 -k3722,694:32583029,22267911:3459645 -) -(3722,695:20753781,23110995:11829248,505283,134348 -h3722,694:20753781,23110995:0,0,0 -g3722,694:24100704,23110995 -g3722,694:26615320,23110995 -k3722,695:30958391,23110995:1624638 -k3722,695:32583029,23110995:1624638 -) -(3722,696:20753781,23954080:11829248,505283,102891 -h3722,695:20753781,23954080:0,0,0 -g3722,695:24511615,23954080 -g3722,695:26079891,23954080 -k3722,696:29929149,23954080:2653881 -k3722,696:32583029,23954080:2653880 -) -(3722,697:20753781,24797164:11829248,485622,102891 -h3722,696:20753781,24797164:0,0,0 -g3722,696:22765735,24797164 -g3722,696:23935552,24797164 -k3722,697:28856979,24797164:3726050 -k3722,697:32583029,24797164:3726050 -) -(3722,698:20753781,25640248:11829248,505283,102891 -h3722,697:20753781,25640248:0,0,0 -g3722,697:23222521,25640248 -k3722,698:28500464,25640248:4082566 -k3722,698:32583029,25640248:4082565 -) -(3722,699:20753781,26483333:11829248,505283,102891 -h3722,698:20753781,26483333:0,0,0 -g3722,698:24892379,26483333 -k3722,699:29335393,26483333:3247637 -k3722,699:32583029,26483333:3247636 -) -(3722,700:20753781,27326417:11829248,505283,102891 -h3722,699:20753781,27326417:0,0,0 -g3722,699:24345808,27326417 -k3722,700:29062107,27326417:3520922 -k3722,700:32583029,27326417:3520922 -) -(3722,701:20753781,28169501:11829248,485622,126483 -h3722,700:20753781,28169501:0,0,0 -g3722,700:25596891,28169501 -k3722,701:29687649,28169501:2895381 -k3722,701:32583029,28169501:2895380 -) -(3722,702:20753781,29012586:11829248,505283,126483 -h3722,701:20753781,29012586:0,0,0 -g3722,701:23769747,29012586 -g3722,701:27373571,29012586 -g3722,701:28382170,29012586 -k3722,701:32583029,29012586:2637825 -) -(3722,702:23375221,29854074:9207808,485622,11795 -k3722,702:29338342,29854074:3244688 -k3722,702:32583029,29854074:3244687 -) -(3722,703:20753781,30697158:11829248,505283,102891 -h3722,702:20753781,30697158:0,0,0 -g3722,702:23967010,30697158 -k3722,703:28872708,30697158:3710321 -k3722,703:32583029,30697158:3710321 -) -(3722,705:20753781,31540242:11829248,505283,102891 -h3722,703:20753781,31540242:0,0,0 -g3722,703:23550857,31540242 -g3722,703:24322215,31540242 -g3722,703:25093573,31540242 -g3722,703:27387988,31540242 -g3722,703:28557805,31540242 -g3722,703:30852220,31540242 -k3722,703:32583029,31540242:760221 -) -(3722,705:23375221,32381730:9207808,485622,102891 -g3722,703:24545038,32381730 -g3722,703:25714855,32381730 -g3722,703:27283131,32381730 -g3722,704:28851407,32381730 -g3722,704:30419683,32381730 -k3722,704:32583029,32381730:794299 -) -(3722,705:23375221,33223218:9207808,485622,102891 -g3722,704:24943497,33223218 -g3722,704:26511773,33223218 -g3722,704:28080049,33223218 -g3722,704:29648325,33223218 -g3722,704:31216601,33223218 -k3722,705:32497504,33223218:85526 -k3722,705:32583029,33223218:85525 -) -(3722,706:20753781,34066303:11829248,505283,102891 -h3722,705:20753781,34066303:0,0,0 -g3722,705:23283470,34066303 -k3722,706:28530938,34066303:4052091 -k3722,706:32583029,34066303:4052091 -) -(3722,710:20753781,35591353:11829248,485622,102891 -h3722,709:20753781,35591353:0,0,0 -g3722,709:21479919,35591353 -g3722,709:22649736,35591353 -g3722,709:23819553,35591353 -g3722,709:25387829,35591353 -g3722,709:26956105,35591353 -g3722,709:28524381,35591353 -k3722,710:31151394,35591353:1431636 -k3722,710:32583029,35591353:1431635 -) -(3722,711:20753781,36434437:11829248,505283,102891 -h3722,710:20753781,36434437:0,0,0 -g3722,710:22984626,36434437 -k3722,711:28182287,36434437:4400743 -k3722,711:32583029,36434437:4400742 -) -(3722,712:20753781,37277522:11829248,505283,126483 -h3722,711:20753781,37277522:0,0,0 -g3722,711:21706674,37277522 -g3722,711:23461072,37277522 -g3722,711:26079890,37277522 -k3722,712:29929148,37277522:2653881 -k3722,712:32583029,37277522:2653881 -) -(3722,713:20753781,38120606:11829248,485622,102891 -h3722,712:20753781,38120606:0,0,0 -g3722,712:22285357,38120606 -g3722,712:23455174,38120606 -g3722,712:25023450,38120606 -g3722,712:26591726,38120606 -g3722,712:28160002,38120606 -k3722,713:30969204,38120606:1613825 -k3722,713:32583029,38120606:1613825 -) -(3722,714:20753781,38963690:11829248,505283,102891 -h3722,713:20753781,38963690:0,0,0 -g3722,713:23459762,38963690 -g3722,713:25028038,38963690 -g3722,713:26596314,38963690 -k3722,714:30187360,38963690:2395669 -k3722,714:32583029,38963690:2395669 -) -(3722,715:20753781,39806775:11829248,513147,134348 -h3722,714:20753781,39806775:0,0,0 -g3722,714:22855520,39806775 -g3722,714:26414124,39806775 -g3722,714:27580664,39806775 -g3722,714:30682483,39806775 -k3722,714:32583029,39806775:1241254 -) -(3722,715:23375221,40648263:9207808,505283,134348 -g3722,714:26467209,40648263 -k3722,715:30476374,40648263:2106655 -k3722,715:32583029,40648263:2106655 -) -(3722,717:20753781,41491347:11829248,505283,126483 -h3722,715:20753781,41491347:0,0,0 -g3722,715:24092840,41491347 -g3722,715:27082592,41491347 -g3722,715:30122151,41491347 -k3722,716:30122151,41491347:0 -g3722,716:31288691,41491347 -k3722,717:32545673,41491347:37357 -k3722,717:32583029,41491347:37356 -) -(3722,718:20753781,42334432:11829248,505283,134348 -h3722,717:20753781,42334432:0,0,0 -g3722,717:23422407,42334432 -g3722,717:25381278,42334432 -k3722,718:29579842,42334432:3003187 -k3722,718:32583029,42334432:3003187 -) -(3722,719:20753781,43177516:11829248,485622,126483 -h3722,718:20753781,43177516:0,0,0 -g3722,718:23288058,43177516 -g3722,718:24457875,43177516 -k3722,719:29118141,43177516:3464889 -k3722,719:32583029,43177516:3464888 -) -(3722,720:20753781,44020600:11829248,505283,134348 -h3722,719:20753781,44020600:0,0,0 -r3722,726:20753781,44020600:0,639631,134348 -g3722,719:22064501,44020600 -g3722,719:22064501,44020600 -g3722,719:25759420,44020600 -k3722,720:29768913,44020600:2814116 -k3722,720:32583029,44020600:2814116 -) -(3722,721:20753781,44863685:11829248,513147,102891 -h3722,720:20753781,44863685:0,0,0 -r3722,726:20753781,44863685:0,616038,102891 -g3722,720:22064501,44863685 -g3722,720:22064501,44863685 -g3722,720:25519559,44863685 -k3722,721:29648983,44863685:2934047 -k3722,721:32583029,44863685:2934046 -) -(3722,722:20753781,45706769:11829248,505283,126483 -h3722,721:20753781,45706769:0,0,0 -r3722,726:20753781,45706769:0,631766,126483 -g3722,721:22064501,45706769 -g3722,721:22064501,45706769 -g3722,721:25831510,45706769 -k3722,722:29804958,45706769:2778071 -k3722,722:32583029,45706769:2778071 -) -] -(3722,726:32583029,45706769:0,355205,126483 -h3722,726:32583029,45706769:420741,355205,126483 -k3722,726:32583029,45706769:-420741 -) -) -] -(3722,726:32583029,45706769:0,0,0 -g3722,726:32583029,45706769 -) -) -] -(3722,726:6630773,47279633:25952256,0,0 -h3722,726:6630773,47279633:25952256,0,0 -) -] -(3722,726:4262630,4025873:0,0,0 -[3722,726:-473656,4025873:0,0,0 -(3722,726:-473656,-710413:0,0,0 -(3722,726:-473656,-710413:0,0,0 -g3722,726:-473656,-710413 -) -g3722,726:-473656,-710413 -) -] -) -] -!26720 -}439 +g3763,812:6630773,4812305 +g3763,812:6630773,4812305 +g3763,812:9313817,4812305 +g3763,812:11211739,4812305 +k3763,812:31387651,4812305:20175912 +) +) +] +[3763,812:6630773,45706769:25952256,40108032,0 +(3763,812:6630773,45706769:25952256,40108032,0 +(3763,812:6630773,45706769:0,0,0 +g3763,812:6630773,45706769 +) +[3763,812:6630773,45706769:25952256,40108032,0 +(3763,812:6630773,45706769:25952256,40108032,126483 +[3763,812:6630773,45706769:11829248,40108032,126483 +(3763,702:6630773,6254097:11829248,505283,126483 +h3763,701:6630773,6254097:0,0,0 +g3763,701:9646739,6254097 +g3763,701:13250563,6254097 +g3763,701:14259162,6254097 +k3763,701:18460021,6254097:2637825 +) +(3763,702:9252213,7119177:9207808,485622,11795 +k3763,702:15215334,7119177:3244688 +k3763,702:18460021,7119177:3244687 +) +(3763,703:6630773,7997439:11829248,505283,102891 +h3763,702:6630773,7997439:0,0,0 +g3763,702:9844002,7997439 +k3763,703:14749700,7997439:3710321 +k3763,703:18460021,7997439:3710321 +) +(3763,705:6630773,8875701:11829248,505283,102891 +h3763,703:6630773,8875701:0,0,0 +g3763,703:9427849,8875701 +g3763,703:10199207,8875701 +g3763,703:10970565,8875701 +g3763,703:13264980,8875701 +g3763,703:15559395,8875701 +g3763,703:16729212,8875701 +k3763,703:18460021,8875701:760221 +) +(3763,705:9252213,9740781:9207808,485622,102891 +k3763,703:10819965,9740781:198705 +k3763,703:12387717,9740781:198705 +k3763,704:13955470,9740781:198706 +k3763,704:15523222,9740781:198705 +k3763,704:17090974,9740781:198705 +k3763,704:18460021,9740781:0 +) +(3763,705:9252213,10605861:9207808,485622,102891 +g3763,704:10820489,10605861 +g3763,704:12388765,10605861 +g3763,704:13957041,10605861 +g3763,704:15525317,10605861 +k3763,705:17590358,10605861:869664 +k3763,705:18460021,10605861:869663 +) +(3763,706:6630773,11484123:11829248,505283,102891 +h3763,705:6630773,11484123:0,0,0 +g3763,705:9160462,11484123 +k3763,706:14407930,11484123:4052091 +k3763,706:18460021,11484123:4052091 +) +(3763,710:6630773,13237441:11829248,485622,102891 +h3763,709:6630773,13237441:0,0,0 +g3763,709:7356911,13237441 +g3763,709:8526728,13237441 +g3763,709:9696545,13237441 +g3763,709:11264821,13237441 +g3763,709:12833097,13237441 +g3763,709:14401373,13237441 +k3763,710:17028386,13237441:1431636 +k3763,710:18460021,13237441:1431635 +) +(3763,711:6630773,14115703:11829248,505283,102891 +h3763,710:6630773,14115703:0,0,0 +g3763,710:8861618,14115703 +k3763,711:14059279,14115703:4400743 +k3763,711:18460021,14115703:4400742 +) +(3763,712:6630773,14993965:11829248,505283,126483 +h3763,711:6630773,14993965:0,0,0 +g3763,711:7583666,14993965 +g3763,711:9338064,14993965 +g3763,711:11956882,14993965 +k3763,712:15806140,14993965:2653881 +k3763,712:18460021,14993965:2653881 +) +(3763,713:6630773,15872227:11829248,485622,102891 +h3763,712:6630773,15872227:0,0,0 +g3763,712:8162349,15872227 +g3763,712:9332166,15872227 +g3763,712:10900442,15872227 +g3763,712:12468718,15872227 +g3763,712:14036994,15872227 +k3763,713:16846196,15872227:1613825 +k3763,713:18460021,15872227:1613825 +) +(3763,714:6630773,16750489:11829248,505283,102891 +h3763,713:6630773,16750489:0,0,0 +g3763,713:9336754,16750489 +g3763,713:10905030,16750489 +g3763,713:12473306,16750489 +k3763,714:16064352,16750489:2395669 +k3763,714:18460021,16750489:2395669 +) +(3763,715:6630773,17628751:11829248,513147,134348 +h3763,714:6630773,17628751:0,0,0 +g3763,714:8732512,17628751 +g3763,714:12291116,17628751 +g3763,714:13457656,17628751 +g3763,714:16559475,17628751 +k3763,714:18460021,17628751:1241254 +) +(3763,715:9252213,18493831:9207808,505283,134348 +g3763,714:12344201,18493831 +k3763,715:16353366,18493831:2106655 +k3763,715:18460021,18493831:2106655 +) +(3763,717:6630773,19372093:11829248,505283,126483 +h3763,715:6630773,19372093:0,0,0 +g3763,715:9969832,19372093 +g3763,715:12959584,19372093 +g3763,715:15999143,19372093 +k3763,716:15999143,19372093:0 +g3763,716:17165683,19372093 +k3763,717:18421354,19372093:38667 +k3763,717:18460021,19372093:38667 +) +(3763,718:6630773,20250355:11829248,505283,134348 +h3763,717:6630773,20250355:0,0,0 +g3763,717:9299399,20250355 +g3763,717:11258270,20250355 +k3763,718:15456834,20250355:3003187 +k3763,718:18460021,20250355:3003187 +) +(3763,719:6630773,21128617:11829248,485622,126483 +h3763,718:6630773,21128617:0,0,0 +g3763,718:9165050,21128617 +g3763,718:10334867,21128617 +k3763,719:14995133,21128617:3464889 +k3763,719:18460021,21128617:3464888 +) +(3763,720:6630773,22006879:11829248,505283,134348 +h3763,719:6630773,22006879:0,0,0 +r3763,812:6630773,22006879:0,639631,134348 +g3763,719:7941493,22006879 +g3763,719:7941493,22006879 +g3763,719:11636412,22006879 +k3763,720:15645905,22006879:2814116 +k3763,720:18460021,22006879:2814116 +) +(3763,721:6630773,22885141:11829248,513147,102891 +h3763,720:6630773,22885141:0,0,0 +r3763,812:6630773,22885141:0,616038,102891 +g3763,720:7941493,22885141 +g3763,720:7941493,22885141 +g3763,720:11396551,22885141 +k3763,721:15525975,22885141:2934047 +k3763,721:18460021,22885141:2934046 +) +(3763,722:6630773,23763403:11829248,505283,126483 +h3763,721:6630773,23763403:0,0,0 +r3763,812:6630773,23763403:0,631766,126483 +g3763,721:7941493,23763403 +g3763,721:7941493,23763403 +g3763,721:11708502,23763403 +k3763,722:15681950,23763403:2778071 +k3763,722:18460021,23763403:2778071 +) +(3763,723:6630773,24641665:11829248,485622,134348 +h3763,722:6630773,24641665:0,0,0 +r3763,812:6630773,24641665:0,619970,134348 +g3763,722:7941493,24641665 +g3763,722:7941493,24641665 +g3763,722:11066249,24641665 +k3763,723:15360824,24641665:3099198 +k3763,723:18460021,24641665:3099197 +) +(3763,724:6630773,25519927:11829248,485622,134348 +h3763,723:6630773,25519927:0,0,0 +r3763,812:6630773,25519927:0,619970,134348 +g3763,723:7941493,25519927 +g3763,723:7941493,25519927 +g3763,723:10572108,25519927 +k3763,724:15113753,25519927:3346268 +k3763,724:18460021,25519927:3346268 +) +(3763,725:6630773,26398188:11829248,513147,134348 +h3763,724:6630773,26398188:0,0,0 +g3763,724:10669101,26398188 +g3763,724:14067798,26398188 +g3763,724:15636074,26398188 +k3763,725:17645736,26398188:814285 +k3763,725:18460021,26398188:814285 +) +(3763,726:6630773,27276450:11829248,485622,126483 +h3763,725:6630773,27276450:0,0,0 +g3763,725:9943617,27276450 +k3763,726:14600278,27276450:3859743 +k3763,726:18460021,27276450:3859743 +) +(3763,727:6630773,28154712:11829248,485622,102891 +h3763,726:6630773,28154712:0,0,0 +g3763,726:8268517,28154712 +k3763,727:14325027,28154712:4134994 +k3763,727:18460021,28154712:4134994 +) +(3763,728:6630773,29032974:11829248,513147,102891 +h3763,727:6630773,29032974:0,0,0 +g3763,727:7991955,29032974 +g3763,727:9560231,29032974 +k3763,728:14607815,29032974:3852207 +k3763,728:18460021,29032974:3852206 +) +(3763,729:6630773,29911236:11829248,505283,102891 +h3763,728:6630773,29911236:0,0,0 +g3763,728:7743573,29911236 +k3763,729:13699486,29911236:4760536 +k3763,729:18460021,29911236:4760535 +) +(3763,730:6630773,30789498:11829248,505283,102891 +h3763,729:6630773,30789498:0,0,0 +g3763,729:10321760,30789498 +k3763,730:14988579,30789498:3471442 +k3763,730:18460021,30789498:3471442 +) +(3763,731:6630773,31667760:11829248,505283,126483 +h3763,730:6630773,31667760:0,0,0 +g3763,730:8954679,31667760 +g3763,730:10650095,31667760 +g3763,730:14539656,31667760 +k3763,731:17097527,31667760:1362494 +k3763,731:18460021,31667760:1362494 +) +(3763,732:6630773,32546022:11829248,505283,126483 +h3763,731:6630773,32546022:0,0,0 +g3763,731:9024147,32546022 +k3763,732:14747407,32546022:3712615 +k3763,732:18460021,32546022:3712614 +) +(3763,733:6630773,33424284:11829248,485622,102891 +h3763,732:6630773,33424284:0,0,0 +r3763,812:6630773,33424284:0,588513,102891 +g3763,732:7941493,33424284 +g3763,732:7941493,33424284 +g3763,732:9294156,33424284 +k3763,733:14275548,33424284:4184474 +k3763,733:18460021,33424284:4184473 +) +(3763,734:6630773,34302546:11829248,485622,102891 +h3763,733:6630773,34302546:0,0,0 +r3763,812:6630773,34302546:0,588513,102891 +g3763,733:7941493,34302546 +g3763,733:7941493,34302546 +g3763,733:9654604,34302546 +k3763,734:14455772,34302546:4004250 +k3763,734:18460021,34302546:4004249 +) +(3763,735:6630773,35180808:11829248,485622,102891 +h3763,734:6630773,35180808:0,0,0 +g3763,734:8434978,35180808 +k3763,735:13845959,35180808:4614063 +k3763,735:18460021,35180808:4614062 +) +(3763,736:6630773,36059070:11829248,485622,102891 +h3763,735:6630773,36059070:0,0,0 +g3763,735:8425803,36059070 +g3763,735:9595620,36059070 +g3763,735:11163896,36059070 +g3763,735:12732172,36059070 +g3763,735:14300448,36059070 +k3763,736:16977923,36059070:1482098 +k3763,736:18460021,36059070:1482098 +) +(3763,737:6630773,36937332:11829248,485622,102891 +h3763,736:6630773,36937332:0,0,0 +g3763,736:9014972,36937332 +k3763,737:14335185,36937332:4124836 +k3763,737:18460021,36937332:4124836 +) +(3763,738:6630773,37815594:11829248,513147,102891 +h3763,737:6630773,37815594:0,0,0 +g3763,737:11495510,37815594 +g3763,737:12993007,37815594 +k3763,738:15925744,37815594:2534278 +k3763,738:18460021,37815594:2534277 +) +(3763,739:6630773,38693856:11829248,485622,102891 +h3763,738:6630773,38693856:0,0,0 +g3763,738:8570638,38693856 +g3763,738:10138914,38693856 +k3763,739:14897156,38693856:3562865 +k3763,739:18460021,38693856:3562865 +) +(3763,741:6630773,39572117:11829248,513147,134348 +h3763,739:6630773,39572117:0,0,0 +g3763,739:9683440,39572117 +g3763,739:13242044,39572117 +k3763,740:13242044,39572117:0 +g3763,740:14408584,39572117 +g3763,740:17510403,39572117 +k3763,740:18460021,39572117:290326 +) +(3763,741:9252213,40437197:9207808,505283,134348 +g3763,740:12344201,40437197 +k3763,741:16828830,40437197:1631191 +k3763,741:18460021,40437197:1631191 +) +(3763,742:6630773,41315459:11829248,505283,102891 +h3763,741:6630773,41315459:0,0,0 +g3763,741:8936984,41315459 +g3763,741:10505260,41315459 +k3763,742:15080329,41315459:3379692 +k3763,742:18460021,41315459:3379692 +) +(3763,743:6630773,42193721:11829248,505283,134348 +h3763,742:6630773,42193721:0,0,0 +g3763,742:9536639,42193721 +k3763,743:14596019,42193721:3864003 +k3763,743:18460021,42193721:3864002 +) +(3763,744:6630773,43071983:11829248,473825,7863 +h3763,743:6630773,43071983:0,0,0 +k3763,744:14299468,43071983:4160553 +k3763,744:18460021,43071983:4160553 +) +(3763,745:6630773,43950245:11829248,505283,102891 +h3763,744:6630773,43950245:0,0,0 +r3763,812:6630773,43950245:0,608174,102891 +g3763,744:7941493,43950245 +g3763,744:7941493,43950245 +g3763,744:11398517,43950245 +k3763,745:15526958,43950245:2933064 +k3763,745:18460021,43950245:2933063 +) +(3763,746:6630773,44828507:11829248,505283,102891 +h3763,745:6630773,44828507:0,0,0 +g3763,745:9707032,44828507 +g3763,745:10876849,44828507 +k3763,746:15266124,44828507:3193898 +k3763,746:18460021,44828507:3193897 +) +(3763,747:6630773,45706769:11829248,485622,126483 +h3763,746:6630773,45706769:0,0,0 +g3763,746:8884555,45706769 +k3763,747:14269977,45706769:4190045 +k3763,747:18460021,45706769:4190044 +) +] +k3763,812:19606901,45706769:1146880 +r3763,812:19606901,45706769:0,40234515,126483 +k3763,812:20753781,45706769:1146880 +[3763,812:20753781,45706769:11829248,40108032,102891 +(3763,751:20753781,6254097:11829248,513147,7863 +h3763,750:20753781,6254097:0,0,0 +g3763,750:22179189,6254097 +k3763,751:28037780,6254097:4545249 +k3763,751:32583029,6254097:4545249 +) +(3763,752:20753781,7123934:11829248,513147,102891 +h3763,751:20753781,7123934:0,0,0 +r3763,812:20753781,7123934:0,616038,102891 +g3763,751:22064501,7123934 +g3763,751:22064501,7123934 +g3763,751:23827419,7123934 +g3763,751:25841340,7123934 +g3763,751:27948322,7123934 +k3763,752:30863364,7123934:1719665 +k3763,752:32583029,7123934:1719665 +) +(3763,753:20753781,7993771:11829248,513147,102891 +h3763,752:20753781,7993771:0,0,0 +r3763,812:20753781,7993771:0,616038,102891 +g3763,752:22064501,7993771 +g3763,752:22064501,7993771 +g3763,752:23657681,7993771 +g3763,752:25260691,7993771 +g3763,752:28256341,7993771 +k3763,753:31017374,7993771:1565656 +k3763,753:32583029,7993771:1565655 +) +(3763,754:20753781,8863607:11829248,513147,134348 +h3763,753:20753781,8863607:0,0,0 +g3763,753:23269708,8863607 +g3763,753:26828312,8863607 +g3763,753:27994852,8863607 +g3763,753:31096671,8863607 +k3763,753:32583029,8863607:827066 +) +(3763,754:23375221,9728687:9207808,505283,134348 +g3763,753:26467209,9728687 +k3763,754:30683468,9728687:1899561 +k3763,754:32583029,9728687:1899561 +) +(3763,755:20753781,10598524:11829248,505283,7863 +h3763,754:20753781,10598524:0,0,0 +k3763,755:27574113,10598524:5008917 +k3763,755:32583029,10598524:5008916 +) +(3763,756:20753781,11468361:11829248,513147,102891 +h3763,755:20753781,11468361:0,0,0 +r3763,812:20753781,11468361:0,616038,102891 +g3763,755:22064501,11468361 +g3763,755:22064501,11468361 +g3763,755:25780392,11468361 +g3763,755:27373572,11468361 +g3763,755:28962164,11468361 +k3763,755:32583029,11468361:1240597 +) +(3763,756:23375221,12333441:9207808,485622,11795 +k3763,756:29338342,12333441:3244688 +k3763,756:32583029,12333441:3244687 +) +(3763,757:20753781,13203278:11829248,505283,102891 +h3763,756:20753781,13203278:0,0,0 +g3763,756:23355559,13203278 +g3763,756:24525376,13203278 +g3763,756:25695193,13203278 +g3763,756:26865010,13203278 +g3763,756:28433286,13203278 +g3763,756:30001562,13203278 +k3763,757:31889984,13203278:693045 +k3763,757:32583029,13203278:693045 +) +(3763,758:20753781,14073114:11829248,505283,126483 +h3763,757:20753781,14073114:0,0,0 +g3763,757:23472214,14073114 +k3763,758:28625310,14073114:3957719 +k3763,758:32583029,14073114:3957719 +) +(3763,759:20753781,14942951:11829248,505283,126483 +h3763,758:20753781,14942951:0,0,0 +g3763,758:22998388,14942951 +g3763,758:24566664,14942951 +g3763,758:26134940,14942951 +g3763,758:29226273,14942951 +k3763,759:31502340,14942951:1080690 +k3763,759:32583029,14942951:1080689 +) +(3763,761:20753781,15812788:11829248,505283,126483 +h3763,759:20753781,15812788:0,0,0 +g3763,759:24401514,15812788 +g3763,759:25697816,15812788 +g3763,759:26867633,15812788 +g3763,759:28435909,15812788 +k3763,759:32583029,15812788:1255016 +) +(3763,761:23375221,16677868:9207808,485622,102891 +g3763,759:24943497,16677868 +g3763,759:26511773,16677868 +g3763,759:28080049,16677868 +g3763,760:29648325,16677868 +k3763,760:32583029,16677868:42600 +) +(3763,761:23375221,17542948:9207808,485622,102891 +g3763,760:24943497,17542948 +g3763,760:26511773,17542948 +g3763,760:28080049,17542948 +g3763,760:29648325,17542948 +k3763,761:31713366,17542948:869664 +k3763,761:32583029,17542948:869663 +) +(3763,762:20753781,18412785:11829248,485622,102891 +h3763,761:20753781,18412785:0,0,0 +g3763,761:22378418,18412785 +g3763,761:24596156,18412785 +k3763,762:29948809,18412785:2634220 +k3763,762:32583029,18412785:2634220 +) +(3763,763:20753781,19282621:11829248,505283,126483 +h3763,762:20753781,19282621:0,0,0 +r3763,812:20753781,19282621:0,631766,126483 +g3763,762:22064501,19282621 +g3763,762:22064501,19282621 +g3763,762:27167789,19282621 +k3763,763:30473098,19282621:2109932 +k3763,763:32583029,19282621:2109931 +) +(3763,764:20753781,20152458:11829248,505283,102891 +h3763,763:20753781,20152458:0,0,0 +g3763,763:23113732,20152458 +k3763,764:28446069,20152458:4136960 +k3763,764:32583029,20152458:4136960 +) +(3763,765:20753781,21022295:11829248,485622,126483 +h3763,764:20753781,21022295:0,0,0 +g3763,764:22339096,21022295 +g3763,764:26188680,21022295 +k3763,765:30346613,21022295:2236417 +k3763,765:32583029,21022295:2236416 +) +(3763,766:20753781,21892132:11829248,485622,126483 +h3763,765:20753781,21892132:0,0,0 +g3763,765:22339096,21892132 +g3763,765:26097585,21892132 +k3763,766:29738766,21892132:2844263 +k3763,766:32583029,21892132:2844263 +) +(3763,770:20753781,23496607:11829248,485622,102891 +h3763,769:20753781,23496607:0,0,0 +g3763,769:24141992,23496607 +k3763,770:28960199,23496607:3622830 +k3763,770:32583029,23496607:3622830 +) +(3763,771:20753781,24366444:11829248,485622,102891 +h3763,770:20753781,24366444:0,0,0 +g3763,770:22578302,24366444 +g3763,770:23748119,24366444 +g3763,770:24917936,24366444 +g3763,770:26087753,24366444 +g3763,770:27257570,24366444 +g3763,770:28825846,24366444 +k3763,771:31302126,24366444:1280903 +k3763,771:32583029,24366444:1280903 +) +(3763,772:20753781,25236281:11829248,485622,102891 +h3763,771:20753781,25236281:0,0,0 +g3763,771:22789984,25236281 +k3763,772:28284195,25236281:4298834 +k3763,772:32583029,25236281:4298834 +) +(3763,773:20753781,26106118:11829248,505283,102891 +h3763,772:20753781,26106118:0,0,0 +g3763,772:22904672,26106118 +g3763,772:24472948,26106118 +g3763,772:26041224,26106118 +g3763,772:27609500,26106118 +k3763,773:30693953,26106118:1889076 +k3763,773:32583029,26106118:1889076 +) +(3763,777:20753781,27710593:11829248,505283,102891 +h3763,776:20753781,27710593:0,0,0 +g3763,776:23968321,27710593 +k3763,777:28674134,27710593:3908895 +k3763,777:32583029,27710593:3908895 +) +(3763,778:20753781,28580430:11829248,426639,7863 +h3763,777:20753781,28580430:0,0,0 +k3763,778:27657344,28580430:4925686 +k3763,778:32583029,28580430:4925685 +) +(3763,779:20753781,29450267:11829248,505283,134348 +h3763,778:20753781,29450267:0,0,0 +r3763,812:20753781,29450267:0,639631,134348 +g3763,778:22064501,29450267 +g3763,778:22064501,29450267 +g3763,778:23381774,29450267 +g3763,778:25594269,29450267 +g3763,778:28868447,29450267 +k3763,779:31124197,29450267:1458832 +k3763,779:32583029,29450267:1458832 +) +(3763,780:20753781,30320103:11829248,481690,102891 +h3763,779:20753781,30320103:0,0,0 +g3763,779:25319019,30320103 +k3763,780:29548713,30320103:3034317 +k3763,780:32583029,30320103:3034316 +) +(3763,781:20753781,31189940:11829248,505283,102891 +h3763,780:20753781,31189940:0,0,0 +g3763,780:24290103,31189940 +g3763,780:27939147,31189940 +k3763,781:30659547,31189940:1923482 +k3763,781:32583029,31189940:1923482 +) +(3763,782:20753781,32059777:11829248,513147,102891 +h3763,781:20753781,32059777:0,0,0 +g3763,781:24290103,32059777 +g3763,781:26359074,32059777 +k3763,782:30068740,32059777:2514289 +k3763,782:32583029,32059777:2514289 +) +(3763,783:20753781,32929614:11829248,426639,7863 +h3763,782:20753781,32929614:0,0,0 +k3763,783:27822494,32929614:4760535 +k3763,783:32583029,32929614:4760535 +) +(3763,784:20753781,33799450:11829248,505283,134348 +h3763,783:20753781,33799450:0,0,0 +r3763,812:20753781,33799450:0,639631,134348 +g3763,783:22064501,33799450 +g3763,783:22064501,33799450 +g3763,783:25176805,33799450 +k3763,784:29840675,33799450:2742354 +k3763,784:32583029,33799450:2742354 +) +(3763,785:20753781,34669287:11829248,505283,102891 +h3763,784:20753781,34669287:0,0,0 +r3763,812:20753781,34669287:0,608174,102891 +g3763,784:22064501,34669287 +g3763,784:22064501,34669287 +g3763,784:26429854,34669287 +k3763,785:30467200,34669287:2115830 +k3763,785:32583029,34669287:2115829 +) +(3763,786:20753781,35539124:11829248,505283,102891 +h3763,785:20753781,35539124:0,0,0 +r3763,812:20753781,35539124:0,608174,102891 +g3763,785:22064501,35539124 +g3763,785:22064501,35539124 +g3763,785:24887136,35539124 +g3763,785:28474576,35539124 +k3763,786:30927262,35539124:1655768 +k3763,786:32583029,35539124:1655767 +) +(3763,787:20753781,36408961:11829248,505283,102891 +h3763,786:20753781,36408961:0,0,0 +r3763,812:20753781,36408961:0,608174,102891 +g3763,786:22064501,36408961 +g3763,786:22064501,36408961 +g3763,786:24422486,36408961 +g3763,786:27664552,36408961 +k3763,787:30522250,36408961:2060780 +k3763,787:32583029,36408961:2060779 +) +(3763,788:20753781,37278797:11829248,485622,134348 +h3763,787:20753781,37278797:0,0,0 +r3763,812:20753781,37278797:0,619970,134348 +g3763,787:22064501,37278797 +g3763,787:22064501,37278797 +g3763,787:24697737,37278797 +k3763,788:29038842,37278797:3544187 +k3763,788:32583029,37278797:3544187 +) +(3763,789:20753781,38148634:11829248,505283,134348 +h3763,788:20753781,38148634:0,0,0 +r3763,812:20753781,38148634:0,639631,134348 +g3763,788:22064501,38148634 +g3763,788:22064501,38148634 +g3763,788:23683895,38148634 +g3763,788:26070060,38148634 +k3763,789:29725004,38148634:2858026 +k3763,789:32583029,38148634:2858025 +) +(3763,790:20753781,39018471:11829248,505283,102891 +h3763,789:20753781,39018471:0,0,0 +g3763,789:22869939,39018471 +g3763,789:25086367,39018471 +g3763,789:27093079,39018471 +k3763,790:30236513,39018471:2346516 +k3763,790:32583029,39018471:2346516 +) +(3763,794:20753781,40622946:11829248,485622,102891 +h3763,793:20753781,40622946:0,0,0 +g3763,793:22419050,40622946 +k3763,794:28098728,40622946:4484301 +k3763,794:32583029,40622946:4484301 +) +(3763,795:20753781,41492783:11829248,505283,102891 +h3763,794:20753781,41492783:0,0,0 +g3763,794:23936208,41492783 +g3763,794:25102748,41492783 +k3763,795:30812901,41492783:1770129 +k3763,795:32583029,41492783:1770128 +) +(3763,796:20753781,42362620:11829248,505283,134348 +h3763,795:20753781,42362620:0,0,0 +g3763,795:23539716,42362620 +g3763,795:26804719,42362620 +k3763,796:30291563,42362620:2291467 +k3763,796:32583029,42362620:2291466 +) +(3763,797:20753781,43232457:11829248,513147,102891 +h3763,796:20753781,43232457:0,0,0 +g3763,796:24767205,43232457 +g3763,796:25933745,43232457 +g3763,796:27522337,43232457 +k3763,797:30990831,43232457:1592198 +k3763,797:32583029,43232457:1592198 +) +(3763,798:20753781,44102294:11829248,505283,126483 +h3763,797:20753781,44102294:0,0,0 +g3763,797:23356215,44102294 +g3763,797:24924491,44102294 +g3763,797:28015824,44102294 +g3763,797:29584100,44102294 +k3763,798:31681253,44102294:901776 +k3763,798:32583029,44102294:901776 +) +(3763,802:20753781,45706769:11829248,485622,102891 +h3763,801:20753781,45706769:0,0,0 +g3763,801:23346384,45706769 +k3763,802:28562395,45706769:4020634 +k3763,802:32583029,45706769:4020634 +) +] +(3763,812:32583029,45706769:0,355205,126483 +h3763,812:32583029,45706769:420741,355205,126483 +k3763,812:32583029,45706769:-420741 +) +) +] +(3763,812:32583029,45706769:0,0,0 +g3763,812:32583029,45706769 +) +) +] +(3763,812:6630773,47279633:25952256,0,0 +h3763,812:6630773,47279633:25952256,0,0 +) +] +(3763,812:4262630,4025873:0,0,0 +[3763,812:-473656,4025873:0,0,0 +(3763,812:-473656,-710413:0,0,0 +(3763,812:-473656,-710413:0,0,0 +g3763,812:-473656,-710413 +) +g3763,812:-473656,-710413 +) +] +) +] +!24262 +}422 !12 -{440 -[1,23537:4262630,47279633:28320399,43253760,0 -(1,23537:4262630,4025873:0,0,0 -[1,23537:-473656,4025873:0,0,0 -(1,23537:-473656,-710413:0,0,0 -(1,23537:-473656,-644877:0,0,0 -k1,23537:-473656,-644877:-65536 +{423 +[1,23750:4262630,47279633:28320399,43253760,0 +(1,23750:4262630,4025873:0,0,0 +[1,23750:-473656,4025873:0,0,0 +(1,23750:-473656,-710413:0,0,0 +(1,23750:-473656,-644877:0,0,0 +k1,23750:-473656,-644877:-65536 ) -(1,23537:-473656,4736287:0,0,0 -k1,23537:-473656,4736287:5209943 +(1,23750:-473656,4736287:0,0,0 +k1,23750:-473656,4736287:5209943 ) -g1,23537:-473656,-710413 +g1,23750:-473656,-710413 ) ] ) -[1,23537:6630773,47279633:25952256,43253760,0 -[1,23537:6630773,4812305:25952256,786432,0 -(1,23537:6630773,4812305:25952256,505283,11795 -(1,23537:6630773,4812305:25952256,505283,11795 -g1,23537:3078558,4812305 -[1,23537:3078558,4812305:0,0,0 -(1,23537:3078558,2439708:0,1703936,0 -k1,23537:1358238,2439708:-1720320 -(1,21457:1358238,2439708:1720320,1703936,0 -(1,21457:1358238,2439708:1179648,16384,0 -r1,23537:2537886,2439708:1179648,16384,0 +[1,23750:6630773,47279633:25952256,43253760,0 +[1,23750:6630773,4812305:25952256,786432,0 +(1,23750:6630773,4812305:25952256,505283,11795 +(1,23750:6630773,4812305:25952256,505283,11795 +g1,23750:3078558,4812305 +[1,23750:3078558,4812305:0,0,0 +(1,23750:3078558,2439708:0,1703936,0 +k1,23750:1358238,2439708:-1720320 +(1,21670:1358238,2439708:1720320,1703936,0 +(1,21670:1358238,2439708:1179648,16384,0 +r1,23750:2537886,2439708:1179648,16384,0 ) -g1,21457:3062174,2439708 -(1,21457:3062174,2439708:16384,1703936,0 -[1,21457:3062174,2439708:25952256,1703936,0 -(1,21457:3062174,1915420:25952256,1179648,0 -(1,21457:3062174,1915420:16384,1179648,0 -r1,23537:3078558,1915420:16384,1179648,0 +g1,21670:3062174,2439708 +(1,21670:3062174,2439708:16384,1703936,0 +[1,21670:3062174,2439708:25952256,1703936,0 +(1,21670:3062174,1915420:25952256,1179648,0 +(1,21670:3062174,1915420:16384,1179648,0 +r1,23750:3078558,1915420:16384,1179648,0 ) -k1,21457:29014430,1915420:25935872 -g1,21457:29014430,1915420 +k1,21670:29014430,1915420:25935872 +g1,21670:29014430,1915420 ) ] ) ) ) ] -[1,23537:3078558,4812305:0,0,0 -(1,23537:3078558,2439708:0,1703936,0 -g1,23537:29030814,2439708 -g1,23537:36135244,2439708 -(1,21457:36135244,2439708:1720320,1703936,0 -(1,21457:36135244,2439708:16384,1703936,0 -[1,21457:36135244,2439708:25952256,1703936,0 -(1,21457:36135244,1915420:25952256,1179648,0 -(1,21457:36135244,1915420:16384,1179648,0 -r1,23537:36151628,1915420:16384,1179648,0 +[1,23750:3078558,4812305:0,0,0 +(1,23750:3078558,2439708:0,1703936,0 +g1,23750:29030814,2439708 +g1,23750:36135244,2439708 +(1,21670:36135244,2439708:1720320,1703936,0 +(1,21670:36135244,2439708:16384,1703936,0 +[1,21670:36135244,2439708:25952256,1703936,0 +(1,21670:36135244,1915420:25952256,1179648,0 +(1,21670:36135244,1915420:16384,1179648,0 +r1,23750:36151628,1915420:16384,1179648,0 ) -k1,21457:62087500,1915420:25935872 -g1,21457:62087500,1915420 +k1,21670:62087500,1915420:25935872 +g1,21670:62087500,1915420 ) ] ) -g1,21457:36675916,2439708 -(1,21457:36675916,2439708:1179648,16384,0 -r1,23537:37855564,2439708:1179648,16384,0 +g1,21670:36675916,2439708 +(1,21670:36675916,2439708:1179648,16384,0 +r1,23750:37855564,2439708:1179648,16384,0 ) ) -k1,23537:3078556,2439708:-34777008 +k1,23750:3078556,2439708:-34777008 ) ] -[1,23537:3078558,4812305:0,0,0 -(1,23537:3078558,49800853:0,16384,2228224 -k1,23537:1358238,49800853:-1720320 -(1,21457:1358238,49800853:1720320,16384,2228224 -(1,21457:1358238,49800853:1179648,16384,0 -r1,23537:2537886,49800853:1179648,16384,0 +[1,23750:3078558,4812305:0,0,0 +(1,23750:3078558,49800853:0,16384,2228224 +k1,23750:1358238,49800853:-1720320 +(1,21670:1358238,49800853:1720320,16384,2228224 +(1,21670:1358238,49800853:1179648,16384,0 +r1,23750:2537886,49800853:1179648,16384,0 ) -g1,21457:3062174,49800853 -(1,21457:3062174,52029077:16384,1703936,0 -[1,21457:3062174,52029077:25952256,1703936,0 -(1,21457:3062174,51504789:25952256,1179648,0 -(1,21457:3062174,51504789:16384,1179648,0 -r1,23537:3078558,51504789:16384,1179648,0 +g1,21670:3062174,49800853 +(1,21670:3062174,52029077:16384,1703936,0 +[1,21670:3062174,52029077:25952256,1703936,0 +(1,21670:3062174,51504789:25952256,1179648,0 +(1,21670:3062174,51504789:16384,1179648,0 +r1,23750:3078558,51504789:16384,1179648,0 ) -k1,21457:29014430,51504789:25935872 -g1,21457:29014430,51504789 +k1,21670:29014430,51504789:25935872 +g1,21670:29014430,51504789 ) ] ) ) ) ] -[1,23537:3078558,4812305:0,0,0 -(1,23537:3078558,49800853:0,16384,2228224 -g1,23537:29030814,49800853 -g1,23537:36135244,49800853 -(1,21457:36135244,49800853:1720320,16384,2228224 -(1,21457:36135244,52029077:16384,1703936,0 -[1,21457:36135244,52029077:25952256,1703936,0 -(1,21457:36135244,51504789:25952256,1179648,0 -(1,21457:36135244,51504789:16384,1179648,0 -r1,23537:36151628,51504789:16384,1179648,0 +[1,23750:3078558,4812305:0,0,0 +(1,23750:3078558,49800853:0,16384,2228224 +g1,23750:29030814,49800853 +g1,23750:36135244,49800853 +(1,21670:36135244,49800853:1720320,16384,2228224 +(1,21670:36135244,52029077:16384,1703936,0 +[1,21670:36135244,52029077:25952256,1703936,0 +(1,21670:36135244,51504789:25952256,1179648,0 +(1,21670:36135244,51504789:16384,1179648,0 +r1,23750:36151628,51504789:16384,1179648,0 ) -k1,21457:62087500,51504789:25935872 -g1,21457:62087500,51504789 +k1,21670:62087500,51504789:25935872 +g1,21670:62087500,51504789 ) ] ) -g1,21457:36675916,49800853 -(1,21457:36675916,49800853:1179648,16384,0 -r1,23537:37855564,49800853:1179648,16384,0 +g1,21670:36675916,49800853 +(1,21670:36675916,49800853:1179648,16384,0 +r1,23750:37855564,49800853:1179648,16384,0 ) ) -k1,23537:3078556,49800853:-34777008 +k1,23750:3078556,49800853:-34777008 ) ] -g1,23537:6630773,4812305 -g1,23537:6630773,4812305 -g1,23537:9313817,4812305 -g1,23537:11211739,4812305 -k1,23537:31387651,4812305:20175912 -) -) -] -[1,23537:6630773,45706769:25952256,40108032,0 -(1,23537:6630773,45706769:25952256,40108032,0 -(1,23537:6630773,45706769:0,0,0 -g1,23537:6630773,45706769 -) -[1,23537:6630773,45706769:25952256,40108032,0 -(3722,815:6630773,38841425:25952256,33242688,134348 -[3722,815:6630773,38841425:11829248,33242688,102891 -(3722,723:6630773,6254097:11829248,485622,134348 -h3722,722:6630773,6254097:0,0,0 -r1,23537:6630773,6254097:0,619970,134348 -g3722,722:7941493,6254097 -g3722,722:7941493,6254097 -g3722,722:11066249,6254097 -k3722,723:15360824,6254097:3099198 -k3722,723:18460021,6254097:3099197 -) -(3722,724:6630773,7095585:11829248,485622,134348 -h3722,723:6630773,7095585:0,0,0 -r1,23537:6630773,7095585:0,619970,134348 -g3722,723:7941493,7095585 -g3722,723:7941493,7095585 -g3722,723:10572108,7095585 -k3722,724:15113753,7095585:3346268 -k3722,724:18460021,7095585:3346268 -) -(3722,725:6630773,7937073:11829248,513147,134348 -h3722,724:6630773,7937073:0,0,0 -g3722,724:10669101,7937073 -g3722,724:14067798,7937073 -g3722,724:15636074,7937073 -k3722,725:17645736,7937073:814285 -k3722,725:18460021,7937073:814285 -) -(3722,726:6630773,8778561:11829248,485622,126483 -h3722,725:6630773,8778561:0,0,0 -g3722,725:9943617,8778561 -k3722,726:14600278,8778561:3859743 -k3722,726:18460021,8778561:3859743 -) -(3722,727:6630773,9620049:11829248,485622,102891 -h3722,726:6630773,9620049:0,0,0 -g3722,726:8268517,9620049 -k3722,727:14325027,9620049:4134994 -k3722,727:18460021,9620049:4134994 -) -(3722,728:6630773,10461537:11829248,513147,102891 -h3722,727:6630773,10461537:0,0,0 -g3722,727:7991955,10461537 -g3722,727:9560231,10461537 -k3722,728:14607815,10461537:3852207 -k3722,728:18460021,10461537:3852206 -) -(3722,729:6630773,11303025:11829248,505283,102891 -h3722,728:6630773,11303025:0,0,0 -g3722,728:7743573,11303025 -k3722,729:13699486,11303025:4760536 -k3722,729:18460021,11303025:4760535 -) -(3722,730:6630773,12144513:11829248,505283,102891 -h3722,729:6630773,12144513:0,0,0 -g3722,729:10321760,12144513 -k3722,730:14988579,12144513:3471442 -k3722,730:18460021,12144513:3471442 -) -(3722,731:6630773,12986001:11829248,505283,126483 -h3722,730:6630773,12986001:0,0,0 -g3722,730:8954679,12986001 -g3722,730:10650095,12986001 -g3722,730:14539656,12986001 -k3722,731:17097527,12986001:1362494 -k3722,731:18460021,12986001:1362494 -) -(3722,732:6630773,13827489:11829248,505283,126483 -h3722,731:6630773,13827489:0,0,0 -g3722,731:9024147,13827489 -k3722,732:14747407,13827489:3712615 -k3722,732:18460021,13827489:3712614 -) -(3722,733:6630773,14668977:11829248,485622,102891 -h3722,732:6630773,14668977:0,0,0 -r1,23537:6630773,14668977:0,588513,102891 -g3722,732:7941493,14668977 -g3722,732:7941493,14668977 -g3722,732:9294156,14668977 -k3722,733:14275548,14668977:4184474 -k3722,733:18460021,14668977:4184473 -) -(3722,734:6630773,15510465:11829248,485622,102891 -h3722,733:6630773,15510465:0,0,0 -r1,23537:6630773,15510465:0,588513,102891 -g3722,733:7941493,15510465 -g3722,733:7941493,15510465 -g3722,733:9654604,15510465 -k3722,734:14455772,15510465:4004250 -k3722,734:18460021,15510465:4004249 -) -(3722,735:6630773,16351953:11829248,485622,102891 -h3722,734:6630773,16351953:0,0,0 -g3722,734:8434978,16351953 -k3722,735:13845959,16351953:4614063 -k3722,735:18460021,16351953:4614062 -) -(3722,736:6630773,17193441:11829248,485622,102891 -h3722,735:6630773,17193441:0,0,0 -g3722,735:8425803,17193441 -g3722,735:9595620,17193441 -g3722,735:11163896,17193441 -g3722,735:12732172,17193441 -k3722,736:16955313,17193441:1504708 -k3722,736:18460021,17193441:1504708 -) -(3722,737:6630773,18034929:11829248,485622,102891 -h3722,736:6630773,18034929:0,0,0 -g3722,736:9014972,18034929 -k3722,737:14335185,18034929:4124836 -k3722,737:18460021,18034929:4124836 -) -(3722,738:6630773,18876417:11829248,513147,102891 -h3722,737:6630773,18876417:0,0,0 -g3722,737:11495510,18876417 -g3722,737:12993007,18876417 -k3722,738:15925744,18876417:2534278 -k3722,738:18460021,18876417:2534277 -) -(3722,739:6630773,19717905:11829248,485622,102891 -h3722,738:6630773,19717905:0,0,0 -g3722,738:8570638,19717905 -g3722,738:10138914,19717905 -k3722,739:14897156,19717905:3562865 -k3722,739:18460021,19717905:3562865 -) -(3722,741:6630773,20559393:11829248,513147,134348 -h3722,739:6630773,20559393:0,0,0 -g3722,739:9683440,20559393 -g3722,739:13242044,20559393 -k3722,740:13242044,20559393:0 -g3722,740:14408584,20559393 -g3722,740:17510403,20559393 -k3722,740:18460021,20559393:290326 -) -(3722,741:9252213,21400881:9207808,505283,134348 -g3722,740:12344201,21400881 -k3722,741:16828830,21400881:1631191 -k3722,741:18460021,21400881:1631191 -) -(3722,742:6630773,22242369:11829248,505283,102891 -h3722,741:6630773,22242369:0,0,0 -g3722,741:8936984,22242369 -g3722,741:10505260,22242369 -k3722,742:15080329,22242369:3379692 -k3722,742:18460021,22242369:3379692 -) -(3722,743:6630773,23083857:11829248,505283,134348 -h3722,742:6630773,23083857:0,0,0 -g3722,742:9536639,23083857 -k3722,743:14596019,23083857:3864003 -k3722,743:18460021,23083857:3864002 -) -(3722,744:6630773,23925345:11829248,473825,7863 -h3722,743:6630773,23925345:0,0,0 -k3722,744:14299468,23925345:4160553 -k3722,744:18460021,23925345:4160553 -) -(3722,745:6630773,24766833:11829248,505283,102891 -h3722,744:6630773,24766833:0,0,0 -r1,23537:6630773,24766833:0,608174,102891 -g3722,744:7941493,24766833 -g3722,744:7941493,24766833 -g3722,744:11398517,24766833 -k3722,745:15526958,24766833:2933064 -k3722,745:18460021,24766833:2933063 -) -(3722,746:6630773,25608321:11829248,505283,102891 -h3722,745:6630773,25608321:0,0,0 -g3722,745:9707032,25608321 -g3722,745:10876849,25608321 -k3722,746:15266124,25608321:3193898 -k3722,746:18460021,25608321:3193897 -) -(3722,747:6630773,26449809:11829248,485622,126483 -h3722,746:6630773,26449809:0,0,0 -g3722,746:8884555,26449809 -g3722,746:10452831,26449809 -k3722,747:15054115,26449809:3405907 -k3722,747:18460021,26449809:3405906 -) -(3722,751:6630773,27902081:11829248,513147,7863 -h3722,750:6630773,27902081:0,0,0 -g3722,750:8056181,27902081 -k3722,751:13914772,27902081:4545249 -k3722,751:18460021,27902081:4545249 -) -(3722,752:6630773,28743569:11829248,513147,102891 -h3722,751:6630773,28743569:0,0,0 -r1,23537:6630773,28743569:0,616038,102891 -g3722,751:7941493,28743569 -g3722,751:7941493,28743569 -g3722,751:9704411,28743569 -g3722,751:11718332,28743569 -g3722,751:13825314,28743569 -k3722,752:16740356,28743569:1719665 -k3722,752:18460021,28743569:1719665 -) -(3722,753:6630773,29585057:11829248,513147,102891 -h3722,752:6630773,29585057:0,0,0 -r1,23537:6630773,29585057:0,616038,102891 -g3722,752:7941493,29585057 -g3722,752:7941493,29585057 -g3722,752:9534673,29585057 -g3722,752:11137683,29585057 -g3722,752:14133333,29585057 -k3722,753:16894366,29585057:1565656 -k3722,753:18460021,29585057:1565655 -) -(3722,754:6630773,30426545:11829248,513147,134348 -h3722,753:6630773,30426545:0,0,0 -g3722,753:9146700,30426545 -g3722,753:12705304,30426545 -g3722,753:13871844,30426545 -g3722,753:16973663,30426545 -k3722,753:18460021,30426545:827066 -) -(3722,754:9252213,31268033:9207808,505283,134348 -g3722,753:12344201,31268033 -k3722,754:16560460,31268033:1899561 -k3722,754:18460021,31268033:1899561 -) -(3722,755:6630773,32109521:11829248,505283,7863 -h3722,754:6630773,32109521:0,0,0 -k3722,755:13451105,32109521:5008917 -k3722,755:18460021,32109521:5008916 -) -(3722,756:6630773,32951009:11829248,513147,102891 -h3722,755:6630773,32951009:0,0,0 -r1,23537:6630773,32951009:0,616038,102891 -g3722,755:7941493,32951009 -g3722,755:7941493,32951009 -g3722,755:11657384,32951009 -g3722,755:13250564,32951009 -g3722,755:14839156,32951009 -k3722,755:18460021,32951009:1240597 -) -(3722,756:9252213,33792497:9207808,485622,11795 -k3722,756:15215334,33792497:3244688 -k3722,756:18460021,33792497:3244687 -) -(3722,757:6630773,34633985:11829248,505283,102891 -h3722,756:6630773,34633985:0,0,0 -g3722,756:9232551,34633985 -g3722,756:10402368,34633985 -g3722,756:11970644,34633985 -g3722,756:13538920,34633985 -g3722,756:15107196,34633985 -g3722,756:16675472,34633985 -k3722,757:18165435,34633985:294586 -k3722,757:18460021,34633985:294586 -) -(3722,758:6630773,35475473:11829248,505283,126483 -h3722,757:6630773,35475473:0,0,0 -g3722,757:9349206,35475473 -k3722,758:14502302,35475473:3957719 -k3722,758:18460021,35475473:3957719 -) -(3722,759:6630773,36316961:11829248,505283,126483 -h3722,758:6630773,36316961:0,0,0 -g3722,758:8875380,36316961 -g3722,758:10443656,36316961 -g3722,758:12011932,36316961 -g3722,758:15103265,36316961 -k3722,759:17379332,36316961:1080690 -k3722,759:18460021,36316961:1080689 -) -(3722,761:6630773,37158449:11829248,505283,126483 -h3722,759:6630773,37158449:0,0,0 -g3722,759:10278506,37158449 -g3722,759:11574808,37158449 -g3722,759:12744625,37158449 -g3722,759:14312901,37158449 -k3722,759:18460021,37158449:1255016 -) -(3722,761:9252213,37999937:9207808,485622,102891 -g3722,759:10820489,37999937 -g3722,759:12388765,37999937 -g3722,759:13957041,37999937 -g3722,760:15525317,37999937 -k3722,760:18460021,37999937:42600 -) -(3722,761:9252213,38841425:9207808,485622,102891 -g3722,760:10820489,38841425 -g3722,760:12388765,38841425 -g3722,760:13957041,38841425 -g3722,760:15525317,38841425 -k3722,761:17590358,38841425:869664 -k3722,761:18460021,38841425:869663 -) -] -k3722,815:19606901,38841425:1146880 -r1,23537:19606901,38841425:0,33377036,134348 -k3722,815:20753781,38841425:1146880 -[3722,815:20753781,38841425:11829248,33242688,134348 -(3722,762:20753781,6254097:11829248,485622,102891 -h3722,761:20753781,6254097:0,0,0 -g3722,761:22378418,6254097 -g3722,761:24596156,6254097 -k3722,762:29948809,6254097:2634220 -k3722,762:32583029,6254097:2634220 -) -(3722,763:20753781,7095918:11829248,505283,126483 -h3722,762:20753781,7095918:0,0,0 -r1,23537:20753781,7095918:0,631766,126483 -g3722,762:22064501,7095918 -g3722,762:22064501,7095918 -g3722,762:27167789,7095918 -k3722,763:30473098,7095918:2109932 -k3722,763:32583029,7095918:2109931 -) -(3722,764:20753781,7937738:11829248,505283,102891 -h3722,763:20753781,7937738:0,0,0 -g3722,763:23113732,7937738 -k3722,764:28446069,7937738:4136960 -k3722,764:32583029,7937738:4136960 -) -(3722,765:20753781,8779559:11829248,485622,126483 -h3722,764:20753781,8779559:0,0,0 -g3722,764:22339096,8779559 -g3722,764:26188680,8779559 -k3722,765:30346613,8779559:2236417 -k3722,765:32583029,8779559:2236416 -) -(3722,766:20753781,9621380:11829248,485622,126483 -h3722,765:20753781,9621380:0,0,0 -g3722,765:22339096,9621380 -g3722,765:26097585,9621380 -k3722,766:29738766,9621380:2844263 -k3722,766:32583029,9621380:2844263 -) -(3722,770:20753781,11124105:11829248,485622,102891 -h3722,769:20753781,11124105:0,0,0 -g3722,769:24141992,11124105 -k3722,770:28960199,11124105:3622830 -k3722,770:32583029,11124105:3622830 -) -(3722,771:20753781,11965925:11829248,485622,102891 -h3722,770:20753781,11965925:0,0,0 -g3722,770:22578302,11965925 -g3722,770:23748119,11965925 -g3722,770:24917936,11965925 -g3722,770:26087753,11965925 -g3722,770:27257570,11965925 -g3722,770:28825846,11965925 -k3722,771:31302126,11965925:1280903 -k3722,771:32583029,11965925:1280903 -) -(3722,772:20753781,12807746:11829248,485622,102891 -h3722,771:20753781,12807746:0,0,0 -g3722,771:22789984,12807746 -k3722,772:28284195,12807746:4298834 -k3722,772:32583029,12807746:4298834 -) -(3722,773:20753781,13649567:11829248,505283,102891 -h3722,772:20753781,13649567:0,0,0 -g3722,772:22904672,13649567 -g3722,772:24472948,13649567 -g3722,772:26041224,13649567 -g3722,772:27609500,13649567 -k3722,773:30693953,13649567:1889076 -k3722,773:32583029,13649567:1889076 -) -(3722,777:20753781,15152291:11829248,505283,102891 -h3722,776:20753781,15152291:0,0,0 -g3722,776:23968321,15152291 -k3722,777:28674134,15152291:3908895 -k3722,777:32583029,15152291:3908895 -) -(3722,778:20753781,15994112:11829248,426639,7863 -h3722,777:20753781,15994112:0,0,0 -k3722,778:27657344,15994112:4925686 -k3722,778:32583029,15994112:4925685 -) -(3722,779:20753781,16835933:11829248,505283,134348 -h3722,778:20753781,16835933:0,0,0 -r1,23537:20753781,16835933:0,639631,134348 -g3722,778:22064501,16835933 -g3722,778:22064501,16835933 -g3722,778:23381774,16835933 -g3722,778:25594269,16835933 -g3722,778:28868447,16835933 -k3722,779:31124197,16835933:1458832 -k3722,779:32583029,16835933:1458832 -) -(3722,780:20753781,17677753:11829248,485622,102891 -h3722,779:20753781,17677753:0,0,0 -g3722,779:25319019,17677753 -k3722,780:29548713,17677753:3034317 -k3722,780:32583029,17677753:3034316 -) -(3722,781:20753781,18519574:11829248,505283,102891 -h3722,780:20753781,18519574:0,0,0 -g3722,780:24290103,18519574 -g3722,780:27939147,18519574 -k3722,781:30659547,18519574:1923482 -k3722,781:32583029,18519574:1923482 -) -(3722,782:20753781,19361395:11829248,513147,102891 -h3722,781:20753781,19361395:0,0,0 -g3722,781:24290103,19361395 -g3722,781:26359074,19361395 -k3722,782:30068740,19361395:2514289 -k3722,782:32583029,19361395:2514289 -) -(3722,783:20753781,20203215:11829248,426639,7863 -h3722,782:20753781,20203215:0,0,0 -k3722,783:27822494,20203215:4760535 -k3722,783:32583029,20203215:4760535 -) -(3722,784:20753781,21045036:11829248,505283,134348 -h3722,783:20753781,21045036:0,0,0 -r1,23537:20753781,21045036:0,639631,134348 -g3722,783:22064501,21045036 -g3722,783:22064501,21045036 -g3722,783:25176805,21045036 -k3722,784:29840675,21045036:2742354 -k3722,784:32583029,21045036:2742354 -) -(3722,785:20753781,21886857:11829248,505283,102891 -h3722,784:20753781,21886857:0,0,0 -r1,23537:20753781,21886857:0,608174,102891 -g3722,784:22064501,21886857 -g3722,784:22064501,21886857 -g3722,784:26429854,21886857 -k3722,785:30467200,21886857:2115830 -k3722,785:32583029,21886857:2115829 -) -(3722,786:20753781,22728677:11829248,505283,102891 -h3722,785:20753781,22728677:0,0,0 -r1,23537:20753781,22728677:0,608174,102891 -g3722,785:22064501,22728677 -g3722,785:22064501,22728677 -g3722,785:24887136,22728677 -g3722,785:28474576,22728677 -k3722,786:30927262,22728677:1655768 -k3722,786:32583029,22728677:1655767 -) -(3722,787:20753781,23570498:11829248,505283,102891 -h3722,786:20753781,23570498:0,0,0 -r1,23537:20753781,23570498:0,608174,102891 -g3722,786:22064501,23570498 -g3722,786:22064501,23570498 -g3722,786:24422486,23570498 -g3722,786:27664552,23570498 -k3722,787:30522250,23570498:2060780 -k3722,787:32583029,23570498:2060779 -) -(3722,788:20753781,24412319:11829248,477757,134348 -h3722,787:20753781,24412319:0,0,0 -r1,23537:20753781,24412319:0,612105,134348 -g3722,787:22064501,24412319 -g3722,787:22064501,24412319 -g3722,787:24697737,24412319 -k3722,788:29038842,24412319:3544187 -k3722,788:32583029,24412319:3544187 -) -(3722,789:20753781,25254139:11829248,505283,134348 -h3722,788:20753781,25254139:0,0,0 -r1,23537:20753781,25254139:0,639631,134348 -g3722,788:22064501,25254139 -g3722,788:22064501,25254139 -g3722,788:23683895,25254139 -g3722,788:26070060,25254139 -k3722,789:29725004,25254139:2858026 -k3722,789:32583029,25254139:2858025 -) -(3722,790:20753781,26095960:11829248,505283,102891 -h3722,789:20753781,26095960:0,0,0 -g3722,789:22869939,26095960 -g3722,789:25086367,26095960 -g3722,789:27093079,26095960 -k3722,790:30236513,26095960:2346516 -k3722,790:32583029,26095960:2346516 -) -(3722,794:20753781,27598685:11829248,485622,102891 -h3722,793:20753781,27598685:0,0,0 -g3722,793:22419050,27598685 -k3722,794:28098728,27598685:4484301 -k3722,794:32583029,27598685:4484301 -) -(3722,795:20753781,28440506:11829248,505283,102891 -h3722,794:20753781,28440506:0,0,0 -g3722,794:23936208,28440506 -g3722,794:25102748,28440506 -k3722,795:30812901,28440506:1770129 -k3722,795:32583029,28440506:1770128 -) -(3722,796:20753781,29282326:11829248,505283,134348 -h3722,795:20753781,29282326:0,0,0 -g3722,795:23539716,29282326 -g3722,795:26804719,29282326 -k3722,796:31053091,29282326:1529939 -k3722,796:32583029,29282326:1529938 -) -(3722,797:20753781,30124147:11829248,513147,102891 -h3722,796:20753781,30124147:0,0,0 -g3722,796:24767205,30124147 -g3722,796:25933745,30124147 -g3722,796:27522337,30124147 -k3722,797:30990831,30124147:1592198 -k3722,797:32583029,30124147:1592198 -) -(3722,798:20753781,30965968:11829248,505283,126483 -h3722,797:20753781,30965968:0,0,0 -g3722,797:23356215,30965968 -g3722,797:24924491,30965968 -g3722,797:28015824,30965968 -g3722,797:29584100,30965968 -k3722,798:31681253,30965968:901776 -k3722,798:32583029,30965968:901776 -) -(3722,802:20753781,32468693:11829248,485622,102891 -h3722,801:20753781,32468693:0,0,0 -g3722,801:23346384,32468693 -k3722,802:28562395,32468693:4020634 -k3722,802:32583029,32468693:4020634 -) -(3722,803:20753781,33310513:11829248,505283,102891 -h3722,802:20753781,33310513:0,0,0 -g3722,802:22867316,33310513 -g3722,802:24435592,33310513 -k3722,803:29106999,33310513:3476030 -k3722,803:32583029,33310513:3476030 -) -(3722,804:20753781,34152334:11829248,485622,102891 -h3722,803:20753781,34152334:0,0,0 -g3722,803:22450507,34152334 -g3722,803:24018783,34152334 -k3722,804:28898595,34152334:3684435 -k3722,804:32583029,34152334:3684434 -) -(3722,805:20753781,34994154:11829248,505283,102891 -h3722,804:20753781,34994154:0,0,0 -g3722,804:23158951,34994154 -k3722,805:28468679,34994154:4114351 -k3722,805:32583029,34994154:4114350 -) -(3722,806:20753781,35835975:11829248,485622,102891 -h3722,805:20753781,35835975:0,0,0 -g3722,805:22864695,35835975 -k3722,806:28321551,35835975:4261479 -k3722,806:32583029,35835975:4261478 -) -(3722,810:20753781,37338700:11829248,505283,102891 -h3722,809:20753781,37338700:0,0,0 -g3722,809:24248160,37338700 -g3722,809:27353911,37338700 -k3722,810:30566159,37338700:2016871 -k3722,810:32583029,37338700:2016870 -) -(3722,814:20753781,38841425:11829248,505283,134348 -h3722,813:20753781,38841425:0,0,0 -g3722,813:22373175,38841425 -g3722,813:24585670,38841425 -g3722,813:27248397,38841425 -k3722,814:30314172,38841425:2268857 -k3722,814:32583029,38841425:2268857 -) -] -(3722,815:32583029,38841425:0,355205,126483 -h3722,815:32583029,38841425:420741,355205,126483 -k3722,815:32583029,38841425:-420741 -) -) -] -(1,23537:32583029,45706769:0,0,0 -g1,23537:32583029,45706769 -) -) -] -(1,23537:6630773,47279633:25952256,0,0 -h1,23537:6630773,47279633:25952256,0,0 -) -] -(1,23537:4262630,4025873:0,0,0 -[1,23537:-473656,4025873:0,0,0 -(1,23537:-473656,-710413:0,0,0 -(1,23537:-473656,-710413:0,0,0 -g1,23537:-473656,-710413 +g1,23750:6630773,4812305 +k1,23750:28201292,4812305:20375142 +g1,23750:30884336,4812305 ) -g1,23537:-473656,-710413 -) -] ) ] -!20750 -}440 -!12 -{441 -[1,23537:4262630,47279633:28320399,43253760,0 -(1,23537:4262630,4025873:0,0,0 -[1,23537:-473656,4025873:0,0,0 -(1,23537:-473656,-710413:0,0,0 -(1,23537:-473656,-644877:0,0,0 -k1,23537:-473656,-644877:-65536 +[1,23750:6630773,45706769:25952256,40108032,0 +(1,23750:6630773,45706769:25952256,40108032,0 +(1,23750:6630773,45706769:0,0,0 +g1,23750:6630773,45706769 ) -(1,23537:-473656,4736287:0,0,0 -k1,23537:-473656,4736287:5209943 +[1,23750:6630773,45706769:25952256,40108032,0 +(3763,815:6630773,8849337:25952256,3250600,134348 +[3763,815:6630773,8849337:11829248,3250600,102891 +(3763,803:6630773,6254097:11829248,505283,102891 +h3763,802:6630773,6254097:0,0,0 +g3763,802:8744308,6254097 +g3763,802:10312584,6254097 +k3763,803:14983991,6254097:3476030 +k3763,803:18460021,6254097:3476030 ) -g1,23537:-473656,-710413 +(3763,804:6630773,7119177:11829248,485622,102891 +h3763,803:6630773,7119177:0,0,0 +g3763,803:8327499,7119177 +g3763,803:9895775,7119177 +k3763,804:14775587,7119177:3684435 +k3763,804:18460021,7119177:3684434 ) -] +(3763,805:6630773,7984257:11829248,505283,102891 +h3763,804:6630773,7984257:0,0,0 +g3763,804:9035943,7984257 +k3763,805:14345671,7984257:4114351 +k3763,805:18460021,7984257:4114350 ) -[1,23537:6630773,47279633:25952256,43253760,0 -[1,23537:6630773,4812305:25952256,786432,0 -(1,23537:6630773,4812305:25952256,0,0 -(1,23537:6630773,4812305:25952256,0,0 -g1,23537:3078558,4812305 -[1,23537:3078558,4812305:0,0,0 -(1,23537:3078558,2439708:0,1703936,0 -k1,23537:1358238,2439708:-1720320 -(1,23537:1358238,2439708:1720320,1703936,0 -(1,23537:1358238,2439708:1179648,16384,0 -r1,23537:2537886,2439708:1179648,16384,0 -) -g1,23537:3062174,2439708 -(1,23537:3062174,2439708:16384,1703936,0 -[1,23537:3062174,2439708:25952256,1703936,0 -(1,23537:3062174,1915420:25952256,1179648,0 -(1,23537:3062174,1915420:16384,1179648,0 -r1,23537:3078558,1915420:16384,1179648,0 -) -k1,23537:29014430,1915420:25935872 -g1,23537:29014430,1915420 +(3763,806:6630773,8849337:11829248,485622,102891 +h3763,805:6630773,8849337:0,0,0 +g3763,805:8741687,8849337 +k3763,806:14198543,8849337:4261479 +k3763,806:18460021,8849337:4261478 ) ] +k3763,815:19606901,8849337:1146880 +r1,23750:19606901,8849337:0,3384948,134348 +k3763,815:20753781,8849337:1146880 +[3763,815:20753781,8849337:11829248,3250600,134348 +(3763,810:20753781,6254097:11829248,505283,102891 +h3763,809:20753781,6254097:0,0,0 +g3763,809:24248160,6254097 +g3763,809:27353911,6254097 +k3763,810:30566159,6254097:2016871 +k3763,810:32583029,6254097:2016870 ) -) +(3763,814:20753781,8849337:11829248,505283,134348 +h3763,813:20753781,8849337:0,0,0 +g3763,813:22373175,8849337 +g3763,813:24585670,8849337 +g3763,813:27248397,8849337 +k3763,814:30314172,8849337:2268857 +k3763,814:32583029,8849337:2268857 ) ] -[1,23537:3078558,4812305:0,0,0 -(1,23537:3078558,2439708:0,1703936,0 -g1,23537:29030814,2439708 -g1,23537:36135244,2439708 -(1,23537:36135244,2439708:1720320,1703936,0 -(1,23537:36135244,2439708:16384,1703936,0 -[1,23537:36135244,2439708:25952256,1703936,0 -(1,23537:36135244,1915420:25952256,1179648,0 -(1,23537:36135244,1915420:16384,1179648,0 -r1,23537:36151628,1915420:16384,1179648,0 +(3763,815:32583029,8849337:0,355205,126483 +h3763,815:32583029,8849337:420741,355205,126483 +k3763,815:32583029,8849337:-420741 ) -k1,23537:62087500,1915420:25935872 -g1,23537:62087500,1915420 ) ] -) -g1,23537:36675916,2439708 -(1,23537:36675916,2439708:1179648,16384,0 -r1,23537:37855564,2439708:1179648,16384,0 +(1,23750:32583029,45706769:0,0,0 +g1,23750:32583029,45706769 ) ) -k1,23537:3078556,2439708:-34777008 -) ] -[1,23537:3078558,4812305:0,0,0 -(1,23537:3078558,49800853:0,16384,2228224 -k1,23537:1358238,49800853:-1720320 -(1,23537:1358238,49800853:1720320,16384,2228224 -(1,23537:1358238,49800853:1179648,16384,0 -r1,23537:2537886,49800853:1179648,16384,0 -) -g1,23537:3062174,49800853 -(1,23537:3062174,52029077:16384,1703936,0 -[1,23537:3062174,52029077:25952256,1703936,0 -(1,23537:3062174,51504789:25952256,1179648,0 -(1,23537:3062174,51504789:16384,1179648,0 -r1,23537:3078558,51504789:16384,1179648,0 -) -k1,23537:29014430,51504789:25935872 -g1,23537:29014430,51504789 +(1,23750:6630773,47279633:25952256,0,0 +h1,23750:6630773,47279633:25952256,0,0 ) ] +(1,23750:4262630,4025873:0,0,0 +[1,23750:-473656,4025873:0,0,0 +(1,23750:-473656,-710413:0,0,0 +(1,23750:-473656,-710413:0,0,0 +g1,23750:-473656,-710413 ) -) +g1,23750:-473656,-710413 ) ] -[1,23537:3078558,4812305:0,0,0 -(1,23537:3078558,49800853:0,16384,2228224 -g1,23537:29030814,49800853 -g1,23537:36135244,49800853 -(1,23537:36135244,49800853:1720320,16384,2228224 -(1,23537:36135244,52029077:16384,1703936,0 -[1,23537:36135244,52029077:25952256,1703936,0 -(1,23537:36135244,51504789:25952256,1179648,0 -(1,23537:36135244,51504789:16384,1179648,0 -r1,23537:36151628,51504789:16384,1179648,0 -) -k1,23537:62087500,51504789:25935872 -g1,23537:62087500,51504789 ) ] +!5082 +}423 +Input:3764:C:\Users\aphalo_2\Documents\Own_manuscripts\Books\learnr-book-crc\rindex.ind +!99 +{424 +[3764,84:4262630,47279633:28320399,43253760,11795 +(3764,84:4262630,4025873:0,0,0 +[3764,84:-473656,4025873:0,0,0 +(3764,84:-473656,-710413:0,0,0 +(3764,84:-473656,-644877:0,0,0 +k3764,84:-473656,-644877:-65536 ) -g1,23537:36675916,49800853 -(1,23537:36675916,49800853:1179648,16384,0 -r1,23537:37855564,49800853:1179648,16384,0 -) -) -k1,23537:3078556,49800853:-34777008 -) -] -g1,23537:6630773,4812305 +(3764,84:-473656,4736287:0,0,0 +k3764,84:-473656,4736287:5209943 ) +g3764,84:-473656,-710413 ) ] -[1,23537:6630773,45706769:0,40108032,0 -(1,23537:6630773,45706769:0,40108032,0 -(1,23537:6630773,45706769:0,0,0 -g1,23537:6630773,45706769 ) -[1,23537:6630773,45706769:0,40108032,0 -h1,23537:6630773,6254097:0,0,0 -] -(1,23537:6630773,45706769:0,0,0 -g1,23537:6630773,45706769 +[3764,84:6630773,47279633:25952256,43253760,11795 +[3764,84:6630773,4812305:25952256,786432,0 +(3764,84:6630773,4812305:25952256,0,0 +(3764,84:6630773,4812305:25952256,0,0 +g3764,84:3078558,4812305 +[3764,84:3078558,4812305:0,0,0 +(3764,84:3078558,2439708:0,1703936,0 +k3764,84:1358238,2439708:-1720320 +(3764,1:1358238,2439708:1720320,1703936,0 +(3764,1:1358238,2439708:1179648,16384,0 +r3764,84:2537886,2439708:1179648,16384,0 ) +g3764,1:3062174,2439708 +(3764,1:3062174,2439708:16384,1703936,0 +[3764,1:3062174,2439708:25952256,1703936,0 +(3764,1:3062174,1915420:25952256,1179648,0 +(3764,1:3062174,1915420:16384,1179648,0 +r3764,84:3078558,1915420:16384,1179648,0 ) -] -(1,23537:6630773,47279633:25952256,0,0 -h1,23537:6630773,47279633:25952256,0,0 +k3764,1:29014430,1915420:25935872 +g3764,1:29014430,1915420 ) ] -(1,23537:4262630,4025873:0,0,0 -[1,23537:-473656,4025873:0,0,0 -(1,23537:-473656,-710413:0,0,0 -(1,23537:-473656,-710413:0,0,0 -g1,23537:-473656,-710413 ) -g1,23537:-473656,-710413 ) -] ) ] -!3399 -}441 -Input:3723:C:\Users\aphalo_2\Documents\Own_manuscripts\Books\learnr-book-crc\rindex.ind -!99 -{442 -[3723,87:4262630,47279633:28320399,43253760,0 -(3723,87:4262630,4025873:0,0,0 -[3723,87:-473656,4025873:0,0,0 -(3723,87:-473656,-710413:0,0,0 -(3723,87:-473656,-644877:0,0,0 -k3723,87:-473656,-644877:-65536 -) -(3723,87:-473656,4736287:0,0,0 -k3723,87:-473656,4736287:5209943 +[3764,84:3078558,4812305:0,0,0 +(3764,84:3078558,2439708:0,1703936,0 +g3764,84:29030814,2439708 +g3764,84:36135244,2439708 +(3764,1:36135244,2439708:1720320,1703936,0 +(3764,1:36135244,2439708:16384,1703936,0 +[3764,1:36135244,2439708:25952256,1703936,0 +(3764,1:36135244,1915420:25952256,1179648,0 +(3764,1:36135244,1915420:16384,1179648,0 +r3764,84:36151628,1915420:16384,1179648,0 ) -g3723,87:-473656,-710413 +k3764,1:62087500,1915420:25935872 +g3764,1:62087500,1915420 ) ] ) -[3723,87:6630773,47279633:25952256,43253760,0 -[3723,87:6630773,4812305:25952256,786432,0 -(3723,87:6630773,4812305:25952256,0,0 -(3723,87:6630773,4812305:25952256,0,0 -g3723,87:3078558,4812305 -[3723,87:3078558,4812305:0,0,0 -(3723,87:3078558,2439708:0,1703936,0 -k3723,87:1358238,2439708:-1720320 -(3723,1:1358238,2439708:1720320,1703936,0 -(3723,1:1358238,2439708:1179648,16384,0 -r3723,87:2537886,2439708:1179648,16384,0 +g3764,1:36675916,2439708 +(3764,1:36675916,2439708:1179648,16384,0 +r3764,84:37855564,2439708:1179648,16384,0 ) -g3723,1:3062174,2439708 -(3723,1:3062174,2439708:16384,1703936,0 -[3723,1:3062174,2439708:25952256,1703936,0 -(3723,1:3062174,1915420:25952256,1179648,0 -(3723,1:3062174,1915420:16384,1179648,0 -r3723,87:3078558,1915420:16384,1179648,0 ) -k3723,1:29014430,1915420:25935872 -g3723,1:29014430,1915420 +k3764,84:3078556,2439708:-34777008 ) ] +[3764,84:3078558,4812305:0,0,0 +(3764,84:3078558,49800853:0,16384,2228224 +k3764,84:1358238,49800853:-1720320 +(3764,1:1358238,49800853:1720320,16384,2228224 +(3764,1:1358238,49800853:1179648,16384,0 +r3764,84:2537886,49800853:1179648,16384,0 ) +g3764,1:3062174,49800853 +(3764,1:3062174,52029077:16384,1703936,0 +[3764,1:3062174,52029077:25952256,1703936,0 +(3764,1:3062174,51504789:25952256,1179648,0 +(3764,1:3062174,51504789:16384,1179648,0 +r3764,84:3078558,51504789:16384,1179648,0 ) +k3764,1:29014430,51504789:25935872 +g3764,1:29014430,51504789 ) ] -[3723,87:3078558,4812305:0,0,0 -(3723,87:3078558,2439708:0,1703936,0 -g3723,87:29030814,2439708 -g3723,87:36135244,2439708 -(3723,1:36135244,2439708:1720320,1703936,0 -(3723,1:36135244,2439708:16384,1703936,0 -[3723,1:36135244,2439708:25952256,1703936,0 -(3723,1:36135244,1915420:25952256,1179648,0 -(3723,1:36135244,1915420:16384,1179648,0 -r3723,87:36151628,1915420:16384,1179648,0 -) -k3723,1:62087500,1915420:25935872 -g3723,1:62087500,1915420 -) -] -) -g3723,1:36675916,2439708 -(3723,1:36675916,2439708:1179648,16384,0 -r3723,87:37855564,2439708:1179648,16384,0 ) ) -k3723,87:3078556,2439708:-34777008 ) ] -[3723,87:3078558,4812305:0,0,0 -(3723,87:3078558,49800853:0,16384,2228224 -k3723,87:1358238,49800853:-1720320 -(3723,1:1358238,49800853:1720320,16384,2228224 -(3723,1:1358238,49800853:1179648,16384,0 -r3723,87:2537886,49800853:1179648,16384,0 +[3764,84:3078558,4812305:0,0,0 +(3764,84:3078558,49800853:0,16384,2228224 +g3764,84:29030814,49800853 +g3764,84:36135244,49800853 +(3764,1:36135244,49800853:1720320,16384,2228224 +(3764,1:36135244,52029077:16384,1703936,0 +[3764,1:36135244,52029077:25952256,1703936,0 +(3764,1:36135244,51504789:25952256,1179648,0 +(3764,1:36135244,51504789:16384,1179648,0 +r3764,84:36151628,51504789:16384,1179648,0 ) -g3723,1:3062174,49800853 -(3723,1:3062174,52029077:16384,1703936,0 -[3723,1:3062174,52029077:25952256,1703936,0 -(3723,1:3062174,51504789:25952256,1179648,0 -(3723,1:3062174,51504789:16384,1179648,0 -r3723,87:3078558,51504789:16384,1179648,0 -) -k3723,1:29014430,51504789:25935872 -g3723,1:29014430,51504789 +k3764,1:62087500,51504789:25935872 +g3764,1:62087500,51504789 ) ] ) +g3764,1:36675916,49800853 +(3764,1:36675916,49800853:1179648,16384,0 +r3764,84:37855564,49800853:1179648,16384,0 ) ) -] -[3723,87:3078558,4812305:0,0,0 -(3723,87:3078558,49800853:0,16384,2228224 -g3723,87:29030814,49800853 -g3723,87:36135244,49800853 -(3723,1:36135244,49800853:1720320,16384,2228224 -(3723,1:36135244,52029077:16384,1703936,0 -[3723,1:36135244,52029077:25952256,1703936,0 -(3723,1:36135244,51504789:25952256,1179648,0 -(3723,1:36135244,51504789:16384,1179648,0 -r3723,87:36151628,51504789:16384,1179648,0 -) -k3723,1:62087500,51504789:25935872 -g3723,1:62087500,51504789 +k3764,84:3078556,49800853:-34777008 ) ] -) -g3723,1:36675916,49800853 -(3723,1:36675916,49800853:1179648,16384,0 -r3723,87:37855564,49800853:1179648,16384,0 +g3764,84:6630773,4812305 ) ) -k3723,87:3078556,49800853:-34777008 -) ] -g3723,87:6630773,4812305 +[3764,84:6630773,45706769:25952256,40108032,0 +(3764,84:6630773,45706769:25952256,40108032,0 +(3764,84:6630773,45706769:0,0,0 +g3764,84:6630773,45706769 ) +[3764,84:6630773,45706769:25952256,40108032,0 +[3764,1:6630773,12185121:25952256,6586384,0 +(3764,1:6630773,7073297:25952256,32768,229376 +(3764,1:6630773,7073297:0,32768,229376 +(3764,1:6630773,7073297:5505024,32768,229376 +r3764,84:12135797,7073297:5505024,262144,229376 ) -] -[3723,87:6630773,45706769:25952256,40108032,0 -(3723,87:6630773,45706769:25952256,40108032,0 -(3723,87:6630773,45706769:0,0,0 -g3723,87:6630773,45706769 +k3764,1:6630773,7073297:-5505024 ) -[3723,87:6630773,45706769:25952256,40108032,0 -[3723,1:6630773,12106481:25952256,6507744,0 -(3723,1:6630773,7073297:25952256,32768,229376 -(3723,1:6630773,7073297:0,32768,229376 -(3723,1:6630773,7073297:5505024,32768,229376 -r3723,87:12135797,7073297:5505024,262144,229376 ) -k3723,1:6630773,7073297:-5505024 +(3764,1:6630773,8842777:25952256,923664,227671 +h3764,1:6630773,8842777:0,0,0 +g3764,1:13383078,8842777 +g3764,1:16988082,8842777 +g3764,1:18552295,8842777 +g3764,1:19716607,8842777 +k3764,1:28171145,8842777:4411884 +k3764,1:32583029,8842777:4411884 ) +(3764,1:6630773,9498145:25952256,32768,0 +(3764,1:6630773,9498145:5505024,32768,0 +r3764,84:12135797,9498145:5505024,32768,0 +) +k3764,1:22359413,9498145:10223616 +k3764,1:32583029,9498145:10223616 +) +] +(3764,84:6630773,45706769:25952256,32525496,126483 +[3764,84:6630773,45706769:11829248,32525496,102891 +(3764,4:6630773,13836633:11829248,485622,102891 +h3764,3:6630773,13836633:0,0,0 +g3764,3:7418614,13836633 +g3764,3:8588431,13836633 +k3764,4:13922685,13836633:4537336 +k3764,4:18460021,13836633:4537336 +) +(3764,5:6630773,14722492:11829248,485622,102891 +h3764,4:6630773,14722492:0,0,0 +g3764,4:7418614,14722492 +g3764,4:8588431,14722492 +g3764,4:9758248,14722492 +g3764,4:11326524,14722492 +k3764,5:15490961,14722492:2969060 +k3764,5:18460021,14722492:2969060 +) +(3764,6:6630773,15608350:11829248,485622,102891 +h3764,5:6630773,15608350:0,0,0 +g3764,5:7418614,15608350 +g3764,5:8588431,15608350 +k3764,6:13922685,15608350:4537336 +k3764,6:18460021,15608350:4537336 +) +(3764,7:6630773,16494209:11829248,485622,102891 +h3764,6:6630773,16494209:0,0,0 +g3764,6:7833557,16494209 +g3764,6:9003374,16494209 +k3764,7:14329386,16494209:4130635 +k3764,7:18460021,16494209:4130635 +) +(3764,8:6630773,17380068:11829248,538806,102891 +h3764,7:6630773,17380068:0,0,0 +g3764,7:8663442,17380068 +g3764,7:9833259,17380068 +k3764,8:14545099,17380068:3914922 +k3764,8:18460021,17380068:3914922 +) +(3764,9:6630773,18265927:11829248,538806,132808 +h3764,8:6630773,18265927:0,0,0 +g3764,8:14887578,18265927 +k3764,9:17072259,18265927:1387763 +k3764,9:18460021,18265927:1387762 +) +(3764,10:6630773,19151785:11829248,538806,102891 +h3764,9:6630773,19151785:0,0,0 +g3764,9:14887578,19151785 +k3764,10:17072259,19151785:1387763 +k3764,10:18460021,19151785:1387762 +) +(3764,11:6630773,20037644:11829248,538806,102891 +h3764,10:6630773,20037644:0,0,0 +g3764,10:14887578,20037644 +k3764,11:17072259,20037644:1387763 +k3764,11:18460021,20037644:1387762 +) +(3764,12:6630773,20923503:11829248,538806,141066 +h3764,11:6630773,20923503:0,0,0 +g3764,11:16547347,20923503 +k3764,12:17902143,20923503:557878 +k3764,12:18460021,20923503:557878 +) +(3764,13:6630773,21809362:11829248,538806,102891 +h3764,12:6630773,21809362:0,0,0 +g3764,12:15302520,21809362 +k3764,13:17279730,21809362:1180292 +k3764,13:18460021,21809362:1180291 +) +(3764,14:6630773,22695220:11829248,538806,141066 +h3764,13:6630773,22695220:0,0,0 +g3764,13:15302520,22695220 +k3764,14:17279730,22695220:1180292 +k3764,14:18460021,22695220:1180291 +) +(3764,15:6630773,23581079:11829248,530548,102891 +h3764,14:6630773,23581079:0,0,0 +g3764,14:7418614,23581079 +g3764,14:8588431,23581079 +k3764,15:14121915,23581079:4338107 +k3764,15:18460021,23581079:4338106 +) +(3764,16:6630773,24466938:11829248,485622,102891 +h3764,15:6630773,24466938:0,0,0 +g3764,15:7418614,24466938 +k3764,16:13337777,24466938:5122245 +k3764,16:18460021,24466938:5122244 +) +(3764,17:6630773,25352797:11829248,485622,102891 +h3764,16:6630773,25352797:0,0,0 +g3764,16:7418614,25352797 +k3764,17:13337777,25352797:5122245 +k3764,17:18460021,25352797:5122244 +) +(3764,18:6630773,26238655:11829248,485622,102891 +h3764,17:6630773,26238655:0,0,0 +g3764,17:7833557,26238655 +g3764,17:9003374,26238655 +g3764,17:10173191,26238655 +g3764,17:11343008,26238655 +g3764,17:12911284,26238655 +k3764,18:16283341,26238655:2176680 +k3764,18:18460021,26238655:2176680 +) +(3764,19:6630773,27124514:11829248,485622,102891 +h3764,18:6630773,27124514:0,0,0 +g3764,18:8248499,27124514 +k3764,19:13951949,27124514:4508073 +k3764,19:18460021,27124514:4508072 +) +(3764,20:6630773,28010373:11829248,485622,102891 +h3764,19:6630773,28010373:0,0,0 +g3764,19:7833557,28010373 +k3764,20:13545248,28010373:4914773 +k3764,20:18460021,28010373:4914773 +) +(3764,21:6630773,28896232:11829248,485622,102891 +h3764,20:6630773,28896232:0,0,0 +g3764,20:7418614,28896232 +k3764,21:13337777,28896232:5122245 +k3764,21:18460021,28896232:5122244 +) +(3764,22:6630773,29782090:11829248,485622,102891 +h3764,21:6630773,29782090:0,0,0 +g3764,21:7833557,29782090 +g3764,21:9003374,29782090 +k3764,22:14329386,29782090:4130635 +k3764,22:18460021,29782090:4130635 +) +(3764,23:6630773,30667949:11829248,485622,102891 +h3764,22:6630773,30667949:0,0,0 +g3764,22:7418614,30667949 +k3764,23:13337777,30667949:5122245 +k3764,23:18460021,30667949:5122244 +) +(3764,24:6630773,31553808:11829248,485622,102891 +h3764,23:6630773,31553808:0,0,0 +g3764,23:7833557,31553808 +k3764,24:13545248,31553808:4914773 +k3764,24:18460021,31553808:4914773 +) +(3764,25:6630773,32439667:11829248,530548,108035 +h3764,24:6630773,32439667:0,0,0 +g3764,24:7460657,32439667 +g3764,24:8290541,32439667 +g3764,24:9078382,32439667 +g3764,24:10646658,32439667 +k3764,25:15151028,32439667:3308993 +k3764,25:18460021,32439667:3308993 +) +(3764,26:6630773,33325525:11829248,530548,102891 +h3764,25:6630773,33325525:0,0,0 +g3764,25:7460657,33325525 +g3764,25:8248498,33325525 +g3764,25:9418315,33325525 +g3764,25:10588132,33325525 +g3764,25:11757949,33325525 +g3764,25:12927766,33325525 +g3764,25:14097583,33325525 +g3764,25:15267400,33325525 +g3764,25:16835676,33325525 +k3764,25:18460021,33325525:255298 +) +(3764,26:9252213,34190605:9207808,485622,102891 +g3764,25:10820489,34190605 +g3764,25:12388765,34190605 +k3764,26:16022082,34190605:2437940 +k3764,26:18460021,34190605:2437939 +) +(3764,27:6630773,35076464:11829248,530548,102891 +h3764,26:6630773,35076464:0,0,0 +g3764,26:7875600,35076464 +g3764,26:9078384,35076464 +g3764,26:10248201,35076464 +g3764,26:11418018,35076464 +g3764,26:12587835,35076464 +g3764,26:13757652,35076464 +g3764,26:14927469,35076464 +g3764,26:16097286,35076464 +k3764,27:17876342,35076464:583679 +k3764,27:18460021,35076464:583679 +) +(3764,28:6630773,35962323:11829248,538806,102891 +h3764,27:6630773,35962323:0,0,0 +g3764,27:7418614,35962323 +g3764,27:8588431,35962323 +g3764,27:9758248,35962323 +k3764,28:14507594,35962323:3952428 +k3764,28:18460021,35962323:3952427 +) +(3764,29:6630773,36848182:11829248,509904,102891 +h3764,28:6630773,36848182:0,0,0 +g3764,28:8248499,36848182 +k3764,29:13752719,36848182:4707302 +k3764,29:18460021,36848182:4707302 +) +(3764,30:6630773,37734040:11829248,509904,102891 +h3764,29:6630773,37734040:0,0,0 +g3764,29:8248499,37734040 +k3764,30:13951949,37734040:4508073 +k3764,30:18460021,37734040:4508072 +) +(3764,31:6630773,38619899:11829248,509904,102891 +h3764,30:6630773,38619899:0,0,0 +g3764,30:8663442,38619899 +g3764,30:11754775,38619899 +k3764,31:15705087,38619899:2754935 +k3764,31:18460021,38619899:2754934 +) +(3764,32:6630773,39505758:11829248,530548,102891 +h3764,31:6630773,39505758:0,0,0 +g3764,31:8248499,39505758 +k3764,32:13752719,39505758:4707302 +k3764,32:18460021,39505758:4707302 +) +(3764,33:6630773,40391617:11829248,509904,102891 +h3764,32:6630773,40391617:0,0,0 +g3764,32:8663442,40391617 +k3764,33:14159420,40391617:4300601 +k3764,33:18460021,40391617:4300601 +) +(3764,34:6630773,41277475:11829248,509904,102891 +h3764,33:6630773,41277475:0,0,0 +g3764,33:8248499,41277475 +k3764,34:14713477,41277475:3746545 +k3764,34:18460021,41277475:3746544 +) +(3764,35:6630773,42163334:11829248,509904,102891 +h3764,34:6630773,42163334:0,0,0 +g3764,34:8663442,42163334 +k3764,35:14159420,42163334:4300601 +k3764,35:18460021,42163334:4300601 +) +(3764,36:6630773,43049193:11829248,509904,102891 +h3764,35:6630773,43049193:0,0,0 +g3764,35:7833557,43049193 +k3764,36:13545248,43049193:4914773 +k3764,36:18460021,43049193:4914773 +) +(3764,37:6630773,43935052:11829248,530548,102891 +h3764,36:6630773,43935052:0,0,0 +g3764,36:8663442,43935052 +g3764,36:9833259,43935052 +k3764,37:14545099,43935052:3914922 +k3764,37:18460021,43935052:3914922 +) +(3764,38:6630773,44820910:11829248,509904,102891 +h3764,37:6630773,44820910:0,0,0 +g3764,37:7418614,44820910 +g3764,37:8588431,44820910 +k3764,38:13922685,44820910:4537336 +k3764,38:18460021,44820910:4537336 +) +(3764,39:6630773,45706769:11829248,509904,102891 +h3764,38:6630773,45706769:0,0,0 +g3764,38:7833557,45706769 +k3764,39:13545248,45706769:4914773 +k3764,39:18460021,45706769:4914773 +) +] +k3764,84:19606901,45706769:1146880 +r3764,84:19606901,45706769:0,32651979,126483 +k3764,84:20753781,45706769:1146880 +[3764,84:20753781,45706769:11829248,32525496,102891 +(3764,40:20753781,13836633:11829248,497518,102891 +h3764,39:20753781,13836633:0,0,0 +g3764,39:21541622,13836633 +k3764,40:27460785,13836633:5122245 +k3764,40:32583029,13836633:5122244 +) +(3764,41:20753781,14703105:11829248,530548,102891 +h3764,40:20753781,14703105:0,0,0 +g3764,40:21541622,14703105 +g3764,40:22711439,14703105 +k3764,41:28045693,14703105:4537336 +k3764,41:32583029,14703105:4537336 +) +(3764,42:20753781,15569576:11829248,530548,102891 +h3764,41:20753781,15569576:0,0,0 +g3764,41:21956565,15569576 +g3764,41:23524841,15569576 +g3764,41:26616174,15569576 +k3764,42:30197290,15569576:2385739 +k3764,42:32583029,15569576:2385739 +) +(3764,43:20753781,16436048:11829248,530548,102891 +h3764,42:20753781,16436048:0,0,0 +g3764,42:21956565,16436048 +k3764,43:27668256,16436048:4914773 +k3764,43:32583029,16436048:4914773 +) +(3764,47:20753781,17981071:11829248,530548,102891 +h3764,46:20753781,17981071:0,0,0 +g3764,46:23201392,17981071 +g3764,46:24371209,17981071 +k3764,47:28875578,17981071:3707451 +k3764,47:32583029,17981071:3707451 +) +(3764,48:20753781,18847543:11829248,530548,102891 +h3764,47:20753781,18847543:0,0,0 +g3764,47:23201392,18847543 +g3764,47:24769668,18847543 +g3764,47:26337944,18847543 +k3764,48:30058175,18847543:2524854 +k3764,48:32583029,18847543:2524854 +) +(3764,49:20753781,19714014:11829248,538806,102891 +h3764,48:20753781,19714014:0,0,0 +g3764,48:26520932,19714014 +k3764,49:30149669,19714014:2433360 +k3764,49:32583029,19714014:2433360 +) +(3764,50:20753781,20580486:11829248,538806,102891 +h3764,49:20753781,20580486:0,0,0 +g3764,49:26105989,20580486 +g3764,49:27674265,20580486 +k3764,50:30726336,20580486:1856694 +k3764,50:32583029,20580486:1856693 +) +(3764,51:20753781,21446957:11829248,530548,141066 +h3764,50:20753781,21446957:0,0,0 +g3764,50:25691047,21446957 +g3764,50:27259323,21446957 +g3764,50:28827599,21446957 +k3764,51:31303003,21446957:1280027 +k3764,51:32583029,21446957:1280026 +) +(3764,52:20753781,22313429:11829248,530548,102891 +h3764,51:20753781,22313429:0,0,0 +g3764,51:23201392,22313429 +g3764,51:24769668,22313429 +k3764,52:29274037,22313429:3308992 +k3764,52:32583029,22313429:3308992 +) +(3764,53:20753781,23179900:11829248,530548,102891 +h3764,52:20753781,23179900:0,0,0 +g3764,52:23201392,23179900 +k3764,53:28852969,23179900:3730061 +k3764,53:32583029,23179900:3730060 +) +(3764,54:20753781,24046372:11829248,530548,102891 +h3764,53:20753781,24046372:0,0,0 +g3764,53:25276104,24046372 +g3764,53:26844380,24046372 +g3764,53:28412656,24046372 +g3764,53:29980932,24046372 +k3764,54:31879669,24046372:703360 +k3764,54:32583029,24046372:703360 +) +(3764,55:20753781,24912844:11829248,530548,102891 +h3764,54:20753781,24912844:0,0,0 +g3764,54:29010586,24912844 +g3764,54:30578862,24912844 +k3764,55:32178634,24912844:404395 +k3764,55:32583029,24912844:404395 +) +(3764,56:20753781,25779315:11829248,530548,102891 +h3764,55:20753781,25779315:0,0,0 +g3764,55:24031277,25779315 +g3764,55:25599553,25779315 +g3764,55:27167829,25779315 +g3764,55:28736105,25779315 +g3764,55:30304381,25779315 +k3764,55:32583029,25779315:909601 +) +(3764,56:23375221,26644395:9207808,485622,102891 +g3764,55:24943497,26644395 +g3764,55:26511773,26644395 +g3764,55:28080049,26644395 +k3764,56:30929228,26644395:1653802 +k3764,56:32583029,26644395:1653801 +) +(3764,57:20753781,27510867:11829248,530548,141066 +h3764,56:20753781,27510867:0,0,0 +g3764,56:25691047,27510867 +k3764,57:29734727,27510867:2848303 +k3764,57:32583029,27510867:2848302 +) +(3764,58:20753781,28377338:11829248,530548,132808 +h3764,57:20753781,28377338:0,0,0 +g3764,57:23201392,28377338 +k3764,58:28852969,28377338:3730061 +k3764,58:32583029,28377338:3730060 +) +(3764,59:20753781,29243810:11829248,530548,102891 +h3764,58:20753781,29243810:0,0,0 +g3764,58:23201392,29243810 +g3764,58:24769668,29243810 +k3764,59:29274037,29243810:3308992 +k3764,59:32583029,29243810:3308992 +) +(3764,60:20753781,30110281:11829248,530548,132808 +h3764,59:20753781,30110281:0,0,0 +g3764,59:24446219,30110281 +g3764,59:25616036,30110281 +k3764,60:29497992,30110281:3085038 +k3764,60:32583029,30110281:3085037 +) +(3764,61:20753781,30976753:11829248,530548,132808 +h3764,60:20753781,30976753:0,0,0 +g3764,60:24031277,30976753 +g3764,60:25599553,30976753 +g3764,60:27167829,30976753 +g3764,60:28736105,30976753 +k3764,61:31257256,30976753:1325774 +k3764,61:32583029,30976753:1325773 +) +(3764,62:20753781,31843224:11829248,530548,141066 +h3764,61:20753781,31843224:0,0,0 +g3764,61:24861162,31843224 +k3764,62:29319784,31843224:3263245 +k3764,62:32583029,31843224:3263245 +) +(3764,63:20753781,32709696:11829248,485622,132808 +h3764,62:20753781,32709696:0,0,0 +g3764,62:23201392,32709696 +g3764,62:24371209,32709696 +k3764,63:29074808,32709696:3508222 +k3764,63:32583029,32709696:3508221 +) +(3764,64:20753781,33576167:11829248,530548,132808 +h3764,63:20753781,33576167:0,0,0 +g3764,63:24031277,33576167 +k3764,64:28705612,33576167:3877417 +k3764,64:32583029,33576167:3877417 +) +(3764,65:20753781,34442639:11829248,530548,102891 +h3764,64:20753781,34442639:0,0,0 +g3764,64:26935874,34442639 +g3764,64:28105691,34442639 +g3764,64:29275508,34442639 +k3764,65:31327728,34442639:1255302 +k3764,65:32583029,34442639:1255301 +) +(3764,66:20753781,35309111:11829248,538806,102891 +h3764,65:20753781,35309111:0,0,0 +g3764,65:27350816,35309111 +k3764,66:30564611,35309111:2018418 +k3764,66:32583029,35309111:2018418 +) +(3764,67:20753781,36175582:11829248,538806,102891 +h3764,66:20753781,36175582:0,0,0 +g3764,66:26105989,36175582 +g3764,66:27674265,36175582 +k3764,67:30726336,36175582:1856694 +k3764,67:32583029,36175582:1856693 +) +(3764,68:20753781,37042054:11829248,530548,141066 +h3764,67:20753781,37042054:0,0,0 +g3764,67:26105989,37042054 +k3764,68:29742968,37042054:2840061 +k3764,68:32583029,37042054:2840061 +) +(3764,69:20753781,37908525:11829248,530548,141066 +h3764,68:20753781,37908525:0,0,0 +g3764,68:26105989,37908525 +g3764,68:27275806,37908525 +k3764,69:30327877,37908525:2255153 +k3764,69:32583029,37908525:2255152 +) +(3764,70:20753781,38774997:11829248,530548,102891 +h3764,69:20753781,38774997:0,0,0 +g3764,69:25691047,38774997 +k3764,70:29535497,38774997:3047532 +k3764,70:32583029,38774997:3047532 +) +(3764,71:20753781,39641468:11829248,530548,102891 +h3764,70:20753781,39641468:0,0,0 +g3764,70:26105989,39641468 +g3764,70:27275806,39641468 +g3764,70:28445623,39641468 +k3764,71:30912785,39641468:1670244 +k3764,71:32583029,39641468:1670244 +) +(3764,72:20753781,40507940:11829248,530548,102891 +h3764,71:20753781,40507940:0,0,0 +g3764,71:24031277,40507940 +k3764,72:28904842,40507940:3678188 +k3764,72:32583029,40507940:3678187 +) +(3764,73:20753781,41374411:11829248,530548,102891 +h3764,72:20753781,41374411:0,0,0 +g3764,72:25691047,41374411 +k3764,73:29535497,41374411:3047532 +k3764,73:32583029,41374411:3047532 +) +(3764,74:20753781,42240883:11829248,530548,102891 +h3764,73:20753781,42240883:0,0,0 +g3764,73:25691047,42240883 +k3764,74:29734727,42240883:2848303 +k3764,74:32583029,42240883:2848302 +) +(3764,75:20753781,43107354:11829248,530548,141066 +h3764,74:20753781,43107354:0,0,0 +g3764,74:24446219,43107354 +g3764,74:26014495,43107354 +g3764,74:27582771,43107354 +g3764,74:29151047,43107354 +g3764,74:30719323,43107354 +k3764,75:32248865,43107354:334165 +k3764,75:32583029,43107354:334164 +) +(3764,76:20753781,43973826:11829248,530548,102891 +h3764,75:20753781,43973826:0,0,0 +g3764,75:24446219,43973826 +g3764,75:26014495,43973826 +g3764,75:27582771,43973826 +k3764,76:30680589,43973826:1902441 +k3764,76:32583029,43973826:1902440 +) +(3764,77:20753781,44840297:11829248,530548,102891 +h3764,76:20753781,44840297:0,0,0 +g3764,76:23616334,44840297 +g3764,76:25184610,44840297 +k3764,77:29481508,44840297:3101521 +k3764,77:32583029,44840297:3101521 +) +(3764,78:20753781,45706769:11829248,530548,102891 +h3764,77:20753781,45706769:0,0,0 +g3764,77:24446219,45706769 +k3764,78:29112313,45706769:3470717 +k3764,78:32583029,45706769:3470716 +) +] +(3764,84:32583029,45706769:0,355205,126483 +h3764,84:32583029,45706769:420741,355205,126483 +k3764,84:32583029,45706769:-420741 +) +) +] +(3764,84:32583029,45706769:0,0,0 +g3764,84:32583029,45706769 +) +) +] +(3764,84:6630773,47279633:25952256,485622,11795 +(3764,84:6630773,47279633:25952256,485622,11795 +k3764,84:19009213,47279633:12378440 +k3764,84:32583030,47279633:12378440 ) -(3723,1:6630773,8803457:25952256,923664,227671 -h3723,1:6630773,8803457:0,0,0 -g3723,1:13383078,8803457 -g3723,1:16988082,8803457 -g3723,1:18552295,8803457 -g3723,1:19716607,8803457 -k3723,1:28171145,8803457:4411884 -k3723,1:32583029,8803457:4411884 ) -(3723,1:6630773,9419505:25952256,32768,0 -(3723,1:6630773,9419505:5505024,32768,0 -r3723,87:12135797,9419505:5505024,32768,0 -) -k3723,1:22359413,9419505:10223616 -k3723,1:32583029,9419505:10223616 -) -] -(3723,87:6630773,45706769:25952256,32627728,126483 -[3723,87:6630773,45706769:11829248,32627728,102891 -(3723,4:6630773,13734401:11829248,485622,102891 -h3723,3:6630773,13734401:0,0,0 -g3723,3:7398854,13734401 -g3723,3:8568671,13734401 -k3723,4:13912805,13734401:4547216 -k3723,4:18460021,13734401:4547216 -) -(3723,5:6630773,14599148:11829248,485622,102891 -h3723,4:6630773,14599148:0,0,0 -g3723,4:7398854,14599148 -g3723,4:8568671,14599148 -g3723,4:9738488,14599148 -g3723,4:11306764,14599148 -k3723,5:15481081,14599148:2978940 -k3723,5:18460021,14599148:2978940 -) -(3723,6:6630773,15463894:11829248,485622,102891 -h3723,5:6630773,15463894:0,0,0 -g3723,5:7398854,15463894 -g3723,5:8568671,15463894 -k3723,6:13912805,15463894:4547216 -k3723,6:18460021,15463894:4547216 -) -(3723,7:6630773,16328641:11829248,485622,102891 -h3723,6:6630773,16328641:0,0,0 -g3723,6:7794036,16328641 -g3723,6:8963853,16328641 -k3723,7:14309626,16328641:4150396 -k3723,7:18460021,16328641:4150395 -) -(3723,8:6630773,17193388:11829248,513147,102891 -h3723,7:6630773,17193388:0,0,0 -g3723,7:8584400,17193388 -g3723,7:9754217,17193388 -k3723,8:14505578,17193388:3954443 -k3723,8:18460021,17193388:3954443 -) -(3723,9:6630773,18058134:11829248,513147,126483 -h3723,8:6630773,18058134:0,0,0 -g3723,8:14512132,18058134 -k3723,9:16884536,18058134:1575486 -k3723,9:18460021,18058134:1575485 -) -(3723,10:6630773,18922881:11829248,513147,102891 -h3723,9:6630773,18922881:0,0,0 -g3723,9:14512132,18922881 -k3723,10:16884536,18922881:1575486 -k3723,10:18460021,18922881:1575485 -) -(3723,11:6630773,19787628:11829248,513147,102891 -h3723,10:6630773,19787628:0,0,0 -g3723,10:14512132,19787628 -k3723,11:16884536,19787628:1575486 -k3723,11:18460021,19787628:1575485 -) -(3723,12:6630773,20652374:11829248,513147,134348 -h3723,11:6630773,20652374:0,0,0 -g3723,11:16092860,20652374 -k3723,12:17674900,20652374:785122 -k3723,12:18460021,20652374:785121 -) -(3723,13:6630773,21517121:11829248,513147,102891 -h3723,12:6630773,21517121:0,0,0 -g3723,12:14907314,21517121 -k3723,13:17082127,21517121:1377895 -k3723,13:18460021,21517121:1377894 -) -(3723,14:6630773,22381868:11829248,513147,134348 -h3723,13:6630773,22381868:0,0,0 -g3723,13:14907314,22381868 -k3723,14:17082127,22381868:1377895 -k3723,14:18460021,22381868:1377894 -) -(3723,15:6630773,23246614:11829248,505283,102891 -h3723,14:6630773,23246614:0,0,0 -g3723,14:7398854,23246614 -g3723,14:8568671,23246614 -k3723,15:14112035,23246614:4347987 -k3723,15:18460021,23246614:4347986 -) -(3723,16:6630773,24111361:11829248,485622,102891 -h3723,15:6630773,24111361:0,0,0 -g3723,15:7398854,24111361 -k3723,16:13327897,24111361:5132125 -k3723,16:18460021,24111361:5132124 -) -(3723,17:6630773,24976108:11829248,485622,102891 -h3723,16:6630773,24976108:0,0,0 -g3723,16:7398854,24976108 -k3723,17:13327897,24976108:5132125 -k3723,17:18460021,24976108:5132124 -) -(3723,18:6630773,25840854:11829248,485622,102891 -h3723,17:6630773,25840854:0,0,0 -g3723,17:7794036,25840854 -g3723,17:8963853,25840854 -g3723,17:10133670,25840854 -g3723,17:11303487,25840854 -g3723,17:12871763,25840854 -k3723,18:16263581,25840854:2196441 -k3723,18:18460021,25840854:2196440 -) -(3723,19:6630773,26705601:11829248,485622,102891 -h3723,18:6630773,26705601:0,0,0 -g3723,18:8189218,26705601 -k3723,19:13922308,26705601:4537713 -k3723,19:18460021,26705601:4537713 -) -(3723,20:6630773,27570348:11829248,485622,102891 -h3723,19:6630773,27570348:0,0,0 -g3723,19:7794036,27570348 -k3723,20:13525488,27570348:4934534 -k3723,20:18460021,27570348:4934533 -) -(3723,21:6630773,28435094:11829248,485622,102891 -h3723,20:6630773,28435094:0,0,0 -g3723,20:7398854,28435094 -k3723,21:13327897,28435094:5132125 -k3723,21:18460021,28435094:5132124 -) -(3723,22:6630773,29299841:11829248,485622,102891 -h3723,21:6630773,29299841:0,0,0 -g3723,21:7794036,29299841 -g3723,21:8963853,29299841 -k3723,22:14309626,29299841:4150396 -k3723,22:18460021,29299841:4150395 -) -(3723,23:6630773,30164588:11829248,485622,102891 -h3723,22:6630773,30164588:0,0,0 -g3723,22:7398854,30164588 -k3723,23:13327897,30164588:5132125 -k3723,23:18460021,30164588:5132124 -) -(3723,24:6630773,31029334:11829248,485622,102891 -h3723,23:6630773,31029334:0,0,0 -g3723,23:7794036,31029334 -k3723,24:13525488,31029334:4934534 -k3723,24:18460021,31029334:4934533 -) -(3723,25:6630773,31894081:11829248,505283,102891 -h3723,24:6630773,31894081:0,0,0 -g3723,24:7421137,31894081 -g3723,24:8211501,31894081 -g3723,24:8979582,31894081 -g3723,24:10547858,31894081 -k3723,25:15101628,31894081:3358393 -k3723,25:18460021,31894081:3358393 -) -(3723,27:6630773,32758828:11829248,505283,102891 -h3723,25:6630773,32758828:0,0,0 -g3723,25:7421137,32758828 -g3723,25:8189218,32758828 -g3723,25:9359035,32758828 -g3723,25:10528852,32758828 -g3723,25:11698669,32758828 -g3723,25:12868486,32758828 -g3723,25:14436762,32758828 -g3723,25:16005038,32758828 -k3723,25:18460021,32758828:1085936 -) -(3723,27:9252213,33600316:9207808,485622,102891 -g3723,25:12343546,33600316 -g3723,25:13911822,33600316 -k3723,27:16783610,33600316:1676411 -k3723,27:18460021,33600316:1676411 -) -(3723,28:6630773,34465062:11829248,505283,102891 -h3723,27:6630773,34465062:0,0,0 -g3723,27:7816319,34465062 -g3723,27:8979582,34465062 -g3723,27:10149399,34465062 -g3723,27:11319216,34465062 -g3723,27:12489033,34465062 -g3723,27:15181907,34465062 -g3723,27:16750183,34465062 -k3723,28:18202791,34465062:257231 -k3723,28:18460021,34465062:257230 -) -(3723,29:6630773,35329809:11829248,513147,102891 -h3723,28:6630773,35329809:0,0,0 -g3723,28:7398854,35329809 -g3723,28:8568671,35329809 -g3723,28:10136947,35329809 -g3723,28:11705223,35329809 -k3723,29:15680311,35329809:2779711 -k3723,29:18460021,35329809:2779710 -) -(3723,30:6630773,36194556:11829248,485622,102891 -h3723,29:6630773,36194556:0,0,0 -g3723,29:8189218,36194556 -k3723,30:13723079,36194556:4736943 -k3723,30:18460021,36194556:4736942 -) -(3723,31:6630773,37059302:11829248,485622,102891 -h3723,30:6630773,37059302:0,0,0 -g3723,30:8189218,37059302 -k3723,31:13922308,37059302:4537713 -k3723,31:18460021,37059302:4537713 -) -(3723,32:6630773,37924049:11829248,485622,102891 -h3723,31:6630773,37924049:0,0,0 -g3723,31:8584400,37924049 -g3723,31:11675733,37924049 -k3723,32:15665566,37924049:2794456 -k3723,32:18460021,37924049:2794455 -) -(3723,33:6630773,38788796:11829248,505283,102891 -h3723,32:6630773,38788796:0,0,0 -g3723,32:8189218,38788796 -k3723,33:13723079,38788796:4736943 -k3723,33:18460021,38788796:4736942 -) -(3723,34:6630773,39653542:11829248,485622,102891 -h3723,33:6630773,39653542:0,0,0 -g3723,33:8584400,39653542 -k3723,34:14119899,39653542:4340122 -k3723,34:18460021,39653542:4340122 -) -(3723,35:6630773,40518289:11829248,485622,102891 -h3723,34:6630773,40518289:0,0,0 -g3723,34:8189218,40518289 -k3723,35:14683836,40518289:3776185 -k3723,35:18460021,40518289:3776185 -) -(3723,36:6630773,41383036:11829248,485622,102891 -h3723,35:6630773,41383036:0,0,0 -g3723,35:8584400,41383036 -k3723,36:14119899,41383036:4340122 -k3723,36:18460021,41383036:4340122 -) -(3723,37:6630773,42247782:11829248,485622,102891 -h3723,36:6630773,42247782:0,0,0 -g3723,36:7794036,42247782 -k3723,37:13525488,42247782:4934534 -k3723,37:18460021,42247782:4934533 -) -(3723,38:6630773,43112529:11829248,505283,102891 -h3723,37:6630773,43112529:0,0,0 -g3723,37:8584400,43112529 -g3723,37:9754217,43112529 -k3723,38:14505578,43112529:3954443 -k3723,38:18460021,43112529:3954443 -) -(3723,39:6630773,43977276:11829248,485622,102891 -h3723,38:6630773,43977276:0,0,0 -g3723,38:7398854,43977276 -g3723,38:8568671,43977276 -k3723,39:13912805,43977276:4547216 -k3723,39:18460021,43977276:4547216 -) -(3723,40:6630773,44842022:11829248,485622,102891 -h3723,39:6630773,44842022:0,0,0 -g3723,39:7794036,44842022 -k3723,40:13525488,44842022:4934534 -k3723,40:18460021,44842022:4934533 -) -(3723,41:6630773,45706769:11829248,485622,102891 -h3723,40:6630773,45706769:0,0,0 -g3723,40:7398854,45706769 -k3723,41:13327897,45706769:5132125 -k3723,41:18460021,45706769:5132124 -) -] -k3723,87:19606901,45706769:1146880 -r3723,87:19606901,45706769:0,32754211,126483 -k3723,87:20753781,45706769:1146880 -[3723,87:20753781,45706769:11829248,32627728,102891 -(3723,42:20753781,13734401:11829248,505283,102891 -h3723,41:20753781,13734401:0,0,0 -g3723,41:21521862,13734401 -g3723,41:22691679,13734401 -k3723,42:28035813,13734401:4547216 -k3723,42:32583029,13734401:4547216 -) -(3723,43:20753781,14595698:11829248,505283,102891 -h3723,42:20753781,14595698:0,0,0 -g3723,42:21917044,14595698 -g3723,42:23485320,14595698 -g3723,42:26576653,14595698 -k3723,43:30177530,14595698:2405500 -k3723,43:32583029,14595698:2405499 -) -(3723,44:20753781,15456994:11829248,505283,102891 -h3723,43:20753781,15456994:0,0,0 -g3723,43:21917044,15456994 -k3723,44:27648496,15456994:4934534 -k3723,44:32583029,15456994:4934533 -) -(3723,48:20753781,17303790:11829248,505283,102891 -h3723,47:20753781,17303790:0,0,0 -g3723,47:23102590,17303790 -g3723,47:24272407,17303790 -k3723,48:28826177,17303790:3756852 -k3723,48:32583029,17303790:3756852 -) -(3723,49:20753781,18165087:11829248,505283,102891 -h3723,48:20753781,18165087:0,0,0 -g3723,48:23102590,18165087 -g3723,48:24670866,18165087 -g3723,48:26239142,18165087 -k3723,49:30008774,18165087:2574255 -k3723,49:32583029,18165087:2574255 -) -(3723,50:20753781,19026384:11829248,513147,102891 -h3723,49:20753781,19026384:0,0,0 -g3723,49:26264047,19026384 -k3723,50:30021227,19026384:2561803 -k3723,50:32583029,19026384:2561802 -) -(3723,51:20753781,19887680:11829248,513147,102891 -h3723,50:20753781,19887680:0,0,0 -g3723,50:25868865,19887680 -g3723,50:27437141,19887680 -k3723,51:30607774,19887680:1975256 -k3723,51:32583029,19887680:1975255 -) -(3723,52:20753781,20748977:11829248,505283,134348 -h3723,51:20753781,20748977:0,0,0 -g3723,51:25473683,20748977 -g3723,51:28565016,20748977 -k3723,52:31171711,20748977:1411318 -k3723,52:32583029,20748977:1411318 -) -(3723,53:20753781,21610273:11829248,505283,102891 -h3723,52:20753781,21610273:0,0,0 -g3723,52:23102590,21610273 -g3723,52:24670866,21610273 -k3723,53:29224636,21610273:3358393 -k3723,53:32583029,21610273:3358393 -) -(3723,54:20753781,22471570:11829248,505283,102891 -h3723,53:20753781,22471570:0,0,0 -g3723,53:23102590,22471570 -g3723,53:24272407,22471570 -k3723,54:28826177,22471570:3756852 -k3723,54:32583029,22471570:3756852 -) -(3723,55:20753781,23332866:11829248,505283,102891 -h3723,54:20753781,23332866:0,0,0 -g3723,54:25078501,23332866 -g3723,54:26646777,23332866 -g3723,54:28215053,23332866 -g3723,54:29783329,23332866 -k3723,55:31780868,23332866:802162 -k3723,55:32583029,23332866:802161 -) -(3723,56:20753781,24194163:11829248,505283,102891 -h3723,55:20753781,24194163:0,0,0 -g3723,55:28635140,24194163 -g3723,55:30203416,24194163 -k3723,56:31990911,24194163:592118 -k3723,56:32583029,24194163:592118 -) -(3723,57:20753781,25055460:11829248,505283,102891 -h3723,56:20753781,25055460:0,0,0 -g3723,56:23892955,25055460 -g3723,56:25461231,25055460 -g3723,56:27029507,25055460 -g3723,56:30120840,25055460 -k3723,56:32583029,25055460:1093142 -) -(3723,57:23375221,25896948:9207808,485622,102891 -g3723,56:24943497,25896948 -g3723,56:26511773,25896948 -g3723,56:28080049,25896948 -k3723,57:30929228,25896948:1653802 -k3723,57:32583029,25896948:1653801 -) -(3723,58:20753781,26758244:11829248,505283,134348 -h3723,57:20753781,26758244:0,0,0 -g3723,57:25473683,26758244 -k3723,58:29626045,26758244:2956985 -k3723,58:32583029,26758244:2956984 -) -(3723,59:20753781,27619541:11829248,505283,126483 -h3723,58:20753781,27619541:0,0,0 -g3723,58:23102590,27619541 -g3723,58:24272407,27619541 -k3723,59:28826177,27619541:3756852 -k3723,59:32583029,27619541:3756852 -) -(3723,60:20753781,28480837:11829248,505283,102891 -h3723,59:20753781,28480837:0,0,0 -g3723,59:23102590,28480837 -g3723,59:24670866,28480837 -k3723,60:29224636,28480837:3358393 -k3723,60:32583029,28480837:3358393 -) -(3723,61:20753781,29342134:11829248,505283,126483 -h3723,60:20753781,29342134:0,0,0 -g3723,60:24288137,29342134 -g3723,60:25457954,29342134 -k3723,61:29418951,29342134:3164079 -k3723,61:32583029,29342134:3164078 -) -(3723,62:20753781,30203431:11829248,505283,126483 -h3723,61:20753781,30203431:0,0,0 -g3723,61:23892955,30203431 -g3723,61:25461231,30203431 -g3723,61:27029507,30203431 -k3723,62:31165485,30203431:1417545 -k3723,62:32583029,30203431:1417544 -) -(3723,63:20753781,31064727:11829248,505283,134348 -h3723,62:20753781,31064727:0,0,0 -g3723,62:24683319,31064727 -k3723,63:29230863,31064727:3352167 -k3723,63:32583029,31064727:3352166 -) -(3723,64:20753781,31926024:11829248,485622,126483 -h3723,63:20753781,31926024:0,0,0 -g3723,63:23102590,31926024 -g3723,63:24272407,31926024 -k3723,64:29025407,31926024:3557623 -k3723,64:32583029,31926024:3557622 -) -(3723,65:20753781,32787320:11829248,505283,126483 -h3723,64:20753781,32787320:0,0,0 -g3723,64:23892955,32787320 -k3723,65:28636451,32787320:3946578 -k3723,65:32583029,32787320:3946578 -) -(3723,66:20753781,33648617:11829248,505283,102891 -h3723,65:20753781,33648617:0,0,0 -g3723,65:26659229,33648617 -g3723,65:27829046,33648617 -k3723,66:30604497,33648617:1978533 -k3723,66:32583029,33648617:1978532 -) -(3723,67:20753781,34509913:11829248,513147,102891 -h3723,66:20753781,34509913:0,0,0 -g3723,66:27054411,34509913 -k3723,67:30416409,34509913:2166621 -k3723,67:32583029,34509913:2166620 -) -(3723,68:20753781,35371210:11829248,513147,102891 -h3723,67:20753781,35371210:0,0,0 -g3723,67:25868865,35371210 -k3723,68:29823636,35371210:2759394 -k3723,68:32583029,35371210:2759393 -) -(3723,69:20753781,36232507:11829248,505283,134348 -h3723,68:20753781,36232507:0,0,0 -g3723,68:25868865,36232507 -k3723,69:29624406,36232507:2958623 -k3723,69:32583029,36232507:2958623 -) -(3723,70:20753781,37093803:11829248,505283,134348 -h3723,69:20753781,37093803:0,0,0 -g3723,69:25868865,37093803 -k3723,70:29624406,37093803:2958623 -k3723,70:32583029,37093803:2958623 -) -(3723,71:20753781,37955100:11829248,505283,102891 -h3723,70:20753781,37955100:0,0,0 -g3723,70:25473683,37955100 -k3723,71:29426815,37955100:3156214 -k3723,71:32583029,37955100:3156214 -) -(3723,72:20753781,38816396:11829248,505283,102891 -h3723,71:20753781,38816396:0,0,0 -g3723,71:25868865,38816396 -g3723,71:27038682,38816396 -g3723,71:28208499,38816396 -k3723,72:30794223,38816396:1788806 -k3723,72:32583029,38816396:1788806 -) -(3723,73:20753781,39677693:11829248,505283,102891 -h3723,72:20753781,39677693:0,0,0 -g3723,72:23892955,39677693 -k3723,73:28835681,39677693:3747349 -k3723,73:32583029,39677693:3747348 -) -(3723,74:20753781,40538990:11829248,505283,102891 -h3723,73:20753781,40538990:0,0,0 -g3723,73:25473683,40538990 -k3723,74:29426815,40538990:3156214 -k3723,74:32583029,40538990:3156214 -) -(3723,75:20753781,41400286:11829248,505283,102891 -h3723,74:20753781,41400286:0,0,0 -g3723,74:25473683,41400286 -k3723,75:29626045,41400286:2956985 -k3723,75:32583029,41400286:2956984 -) -(3723,76:20753781,42261583:11829248,505283,134348 -h3723,75:20753781,42261583:0,0,0 -g3723,75:24288137,42261583 -g3723,75:25856413,42261583 -g3723,75:27424689,42261583 -g3723,75:28992965,42261583 -g3723,75:30561241,42261583 -k3723,76:32169824,42261583:413206 -k3723,76:32583029,42261583:413205 -) -(3723,77:20753781,43122879:11829248,505283,102891 -h3723,76:20753781,43122879:0,0,0 -g3723,76:24288137,43122879 -g3723,76:25856413,43122879 -g3723,76:27424689,43122879 -k3723,77:30601548,43122879:1981482 -k3723,77:32583029,43122879:1981481 -) -(3723,78:20753781,43984176:11829248,505283,102891 -h3723,77:20753781,43984176:0,0,0 -g3723,77:23497773,43984176 -g3723,77:25066049,43984176 -k3723,78:29422228,43984176:3160802 -k3723,78:32583029,43984176:3160801 -) -(3723,79:20753781,44845472:11829248,505283,102891 -h3723,78:20753781,44845472:0,0,0 -g3723,78:24288137,44845472 -k3723,79:29033272,44845472:3549758 -k3723,79:32583029,44845472:3549757 -) -(3723,80:20753781,45706769:11829248,505283,102891 -h3723,79:20753781,45706769:0,0,0 -g3723,79:25868865,45706769 -g3723,79:27437141,45706769 -g3723,79:29005417,45706769 -k3723,80:31391912,45706769:1191118 -k3723,80:32583029,45706769:1191117 -) -] -(3723,87:32583029,45706769:0,355205,126483 -h3723,87:32583029,45706769:420741,355205,126483 -k3723,87:32583029,45706769:-420741 -) -) -] -(3723,87:32583029,45706769:0,0,0 -g3723,87:32583029,45706769 -) -) -] -(3723,87:6630773,47279633:25952256,485622,0 -(3723,87:6630773,47279633:25952256,485622,0 -k3723,87:19009213,47279633:12378440 -k3723,87:32583030,47279633:12378440 -) -) -] -(3723,87:4262630,4025873:0,0,0 -[3723,87:-473656,4025873:0,0,0 -(3723,87:-473656,-710413:0,0,0 -(3723,87:-473656,-710413:0,0,0 -g3723,87:-473656,-710413 -) -g3723,87:-473656,-710413 +] +(3764,84:4262630,4025873:0,0,0 +[3764,84:-473656,4025873:0,0,0 +(3764,84:-473656,-710413:0,0,0 +(3764,84:-473656,-710413:0,0,0 +g3764,84:-473656,-710413 +) +g3764,84:-473656,-710413 ) ] ) ] -!19856 -}442 +!19771 +}424 !12 -{443 -[3723,194:4262630,47279633:28320399,43253760,0 -(3723,194:4262630,4025873:0,0,0 -[3723,194:-473656,4025873:0,0,0 -(3723,194:-473656,-710413:0,0,0 -(3723,194:-473656,-644877:0,0,0 -k3723,194:-473656,-644877:-65536 +{425 +[3764,186:4262630,47279633:28320399,43253760,0 +(3764,186:4262630,4025873:0,0,0 +[3764,186:-473656,4025873:0,0,0 +(3764,186:-473656,-710413:0,0,0 +(3764,186:-473656,-644877:0,0,0 +k3764,186:-473656,-644877:-65536 ) -(3723,194:-473656,4736287:0,0,0 -k3723,194:-473656,4736287:5209943 +(3764,186:-473656,4736287:0,0,0 +k3764,186:-473656,4736287:5209943 ) -g3723,194:-473656,-710413 +g3764,186:-473656,-710413 ) ] ) -[3723,194:6630773,47279633:25952256,43253760,0 -[3723,194:6630773,4812305:25952256,786432,0 -(3723,194:6630773,4812305:25952256,513147,126483 -(3723,194:6630773,4812305:25952256,513147,126483 -g3723,194:3078558,4812305 -[3723,194:3078558,4812305:0,0,0 -(3723,194:3078558,2439708:0,1703936,0 -k3723,194:1358238,2439708:-1720320 -(3723,1:1358238,2439708:1720320,1703936,0 -(3723,1:1358238,2439708:1179648,16384,0 -r3723,194:2537886,2439708:1179648,16384,0 +[3764,186:6630773,47279633:25952256,43253760,0 +[3764,186:6630773,4812305:25952256,786432,0 +(3764,186:6630773,4812305:25952256,513147,126483 +(3764,186:6630773,4812305:25952256,513147,126483 +g3764,186:3078558,4812305 +[3764,186:3078558,4812305:0,0,0 +(3764,186:3078558,2439708:0,1703936,0 +k3764,186:1358238,2439708:-1720320 +(3764,1:1358238,2439708:1720320,1703936,0 +(3764,1:1358238,2439708:1179648,16384,0 +r3764,186:2537886,2439708:1179648,16384,0 ) -g3723,1:3062174,2439708 -(3723,1:3062174,2439708:16384,1703936,0 -[3723,1:3062174,2439708:25952256,1703936,0 -(3723,1:3062174,1915420:25952256,1179648,0 -(3723,1:3062174,1915420:16384,1179648,0 -r3723,194:3078558,1915420:16384,1179648,0 +g3764,1:3062174,2439708 +(3764,1:3062174,2439708:16384,1703936,0 +[3764,1:3062174,2439708:25952256,1703936,0 +(3764,1:3062174,1915420:25952256,1179648,0 +(3764,1:3062174,1915420:16384,1179648,0 +r3764,186:3078558,1915420:16384,1179648,0 ) -k3723,1:29014430,1915420:25935872 -g3723,1:29014430,1915420 +k3764,1:29014430,1915420:25935872 +g3764,1:29014430,1915420 ) ] ) ) ) ] -[3723,194:3078558,4812305:0,0,0 -(3723,194:3078558,2439708:0,1703936,0 -g3723,194:29030814,2439708 -g3723,194:36135244,2439708 -(3723,1:36135244,2439708:1720320,1703936,0 -(3723,1:36135244,2439708:16384,1703936,0 -[3723,1:36135244,2439708:25952256,1703936,0 -(3723,1:36135244,1915420:25952256,1179648,0 -(3723,1:36135244,1915420:16384,1179648,0 -r3723,194:36151628,1915420:16384,1179648,0 +[3764,186:3078558,4812305:0,0,0 +(3764,186:3078558,2439708:0,1703936,0 +g3764,186:29030814,2439708 +g3764,186:36135244,2439708 +(3764,1:36135244,2439708:1720320,1703936,0 +(3764,1:36135244,2439708:16384,1703936,0 +[3764,1:36135244,2439708:25952256,1703936,0 +(3764,1:36135244,1915420:25952256,1179648,0 +(3764,1:36135244,1915420:16384,1179648,0 +r3764,186:36151628,1915420:16384,1179648,0 ) -k3723,1:62087500,1915420:25935872 -g3723,1:62087500,1915420 +k3764,1:62087500,1915420:25935872 +g3764,1:62087500,1915420 ) ] ) -g3723,1:36675916,2439708 -(3723,1:36675916,2439708:1179648,16384,0 -r3723,194:37855564,2439708:1179648,16384,0 +g3764,1:36675916,2439708 +(3764,1:36675916,2439708:1179648,16384,0 +r3764,186:37855564,2439708:1179648,16384,0 ) ) -k3723,194:3078556,2439708:-34777008 +k3764,186:3078556,2439708:-34777008 ) ] -[3723,194:3078558,4812305:0,0,0 -(3723,194:3078558,49800853:0,16384,2228224 -k3723,194:1358238,49800853:-1720320 -(3723,1:1358238,49800853:1720320,16384,2228224 -(3723,1:1358238,49800853:1179648,16384,0 -r3723,194:2537886,49800853:1179648,16384,0 +[3764,186:3078558,4812305:0,0,0 +(3764,186:3078558,49800853:0,16384,2228224 +k3764,186:1358238,49800853:-1720320 +(3764,1:1358238,49800853:1720320,16384,2228224 +(3764,1:1358238,49800853:1179648,16384,0 +r3764,186:2537886,49800853:1179648,16384,0 ) -g3723,1:3062174,49800853 -(3723,1:3062174,52029077:16384,1703936,0 -[3723,1:3062174,52029077:25952256,1703936,0 -(3723,1:3062174,51504789:25952256,1179648,0 -(3723,1:3062174,51504789:16384,1179648,0 -r3723,194:3078558,51504789:16384,1179648,0 +g3764,1:3062174,49800853 +(3764,1:3062174,52029077:16384,1703936,0 +[3764,1:3062174,52029077:25952256,1703936,0 +(3764,1:3062174,51504789:25952256,1179648,0 +(3764,1:3062174,51504789:16384,1179648,0 +r3764,186:3078558,51504789:16384,1179648,0 ) -k3723,1:29014430,51504789:25935872 -g3723,1:29014430,51504789 +k3764,1:29014430,51504789:25935872 +g3764,1:29014430,51504789 ) ] ) ) ) ] -[3723,194:3078558,4812305:0,0,0 -(3723,194:3078558,49800853:0,16384,2228224 -g3723,194:29030814,49800853 -g3723,194:36135244,49800853 -(3723,1:36135244,49800853:1720320,16384,2228224 -(3723,1:36135244,52029077:16384,1703936,0 -[3723,1:36135244,52029077:25952256,1703936,0 -(3723,1:36135244,51504789:25952256,1179648,0 -(3723,1:36135244,51504789:16384,1179648,0 -r3723,194:36151628,51504789:16384,1179648,0 +[3764,186:3078558,4812305:0,0,0 +(3764,186:3078558,49800853:0,16384,2228224 +g3764,186:29030814,49800853 +g3764,186:36135244,49800853 +(3764,1:36135244,49800853:1720320,16384,2228224 +(3764,1:36135244,52029077:16384,1703936,0 +[3764,1:36135244,52029077:25952256,1703936,0 +(3764,1:36135244,51504789:25952256,1179648,0 +(3764,1:36135244,51504789:16384,1179648,0 +r3764,186:36151628,51504789:16384,1179648,0 +) +k3764,1:62087500,51504789:25935872 +g3764,1:62087500,51504789 +) +] +) +g3764,1:36675916,49800853 +(3764,1:36675916,49800853:1179648,16384,0 +r3764,186:37855564,49800853:1179648,16384,0 ) -k3723,1:62087500,51504789:25935872 -g3723,1:62087500,51504789 +) +k3764,186:3078556,49800853:-34777008 ) ] +g3764,186:6630773,4812305 +k3764,186:23552170,4812305:15726020 +g3764,186:27112085,4812305 +g3764,186:29010007,4812305 +g3764,186:29825274,4812305 +g3764,186:30438691,4812305 +) +) +] +[3764,186:6630773,45706769:25952256,40108032,0 +(3764,186:6630773,45706769:25952256,40108032,0 +(3764,186:6630773,45706769:0,0,0 +g3764,186:6630773,45706769 +) +[3764,186:6630773,45706769:25952256,40108032,0 +(3764,186:6630773,45706769:25952256,40108032,126483 +[3764,186:6630773,45706769:11829248,40108032,102891 +(3764,79:6630773,6254097:11829248,530548,102891 +h3764,78:6630773,6254097:0,0,0 +g3764,78:11982981,6254097 +g3764,78:13551257,6254097 +g3764,78:15119533,6254097 +k3764,79:17387466,6254097:1072556 +k3764,79:18460021,6254097:1072555 +) +(3764,83:6630773,7829275:11829248,530548,102891 +h3764,82:6630773,7829275:0,0,0 +g3764,82:11153096,7829275 +k3764,83:15404247,7829275:3055774 +k3764,83:18460021,7829275:3055774 +) +(3764,84:6630773,8697454:11829248,530548,102891 +h3764,83:6630773,8697454:0,0,0 +g3764,83:9078384,8697454 +g3764,83:10646660,8697454 +k3764,84:15151029,8697454:3308992 +k3764,84:18460021,8697454:3308992 +) +(3764,85:6630773,9565632:11829248,530548,132808 +h3764,84:6630773,9565632:0,0,0 +g3764,84:10323211,9565632 +k3764,85:14989305,9565632:3470717 +k3764,85:18460021,9565632:3470716 +) +(3764,86:6630773,10433811:11829248,530548,102891 +h3764,85:6630773,10433811:0,0,0 +g3764,85:9493326,10433811 +k3764,86:14574362,10433811:3885659 +k3764,86:18460021,10433811:3885659 +) +(3764,87:6630773,11301989:11829248,530548,102891 +h3764,86:6630773,11301989:0,0,0 +g3764,86:11982981,11301989 +k3764,87:15819190,11301989:2640832 +k3764,87:18460021,11301989:2640831 +) +(3764,88:6630773,12170167:11829248,530548,132808 +h3764,87:6630773,12170167:0,0,0 +g3764,87:13227808,12170167 +k3764,88:16441603,12170167:2018418 +k3764,88:18460021,12170167:2018418 +) +(3764,89:6630773,13038346:11829248,530548,132808 +h3764,88:6630773,13038346:0,0,0 +g3764,88:10323211,13038346 +k3764,89:14989305,13038346:3470717 +k3764,89:18460021,13038346:3470716 +) +(3764,90:6630773,13906524:11829248,530548,102891 +h3764,89:6630773,13906524:0,0,0 +g3764,89:9908269,13906524 +g3764,89:11476545,13906524 +g3764,89:13044821,13906524 +k3764,90:16350110,13906524:2109912 +k3764,90:18460021,13906524:2109911 +) +(3764,94:6630773,15481703:11829248,530548,102891 +h3764,93:6630773,15481703:0,0,0 +g3764,93:8248499,15481703 +g3764,93:9418316,15481703 +g3764,93:10588133,15481703 +k3764,94:14922536,15481703:3537485 +k3764,94:18460021,15481703:3537485 +) +(3764,95:6630773,16349881:11829248,530548,102891 +h3764,94:6630773,16349881:0,0,0 +g3764,94:8663442,16349881 +k3764,95:14159420,16349881:4300601 +k3764,95:18460021,16349881:4300601 +) +(3764,96:6630773,17218059:11829248,485622,102891 +h3764,95:6630773,17218059:0,0,0 +g3764,95:8663442,17218059 +k3764,96:14159420,17218059:4300601 +k3764,96:18460021,17218059:4300601 +) +(3764,97:6630773,18086238:11829248,530548,102891 +h3764,96:6630773,18086238:0,0,0 +g3764,96:9078384,18086238 +g3764,96:10248201,18086238 +g3764,96:11418018,18086238 +k3764,97:15536708,18086238:2923313 +k3764,97:18460021,18086238:2923313 +) +(3764,98:6630773,18954416:11829248,530548,141066 +h3764,97:6630773,18954416:0,0,0 +g3764,97:10738154,18954416 +g3764,97:11907971,18954416 +k3764,98:15582455,18954416:2877566 +k3764,98:18460021,18954416:2877566 +) +(3764,99:6630773,19822595:11829248,530548,102891 +h3764,98:6630773,19822595:0,0,0 +g3764,98:10738154,19822595 +g3764,98:11907971,19822595 +g3764,98:13077788,19822595 +g3764,98:14247605,19822595 +k3764,99:16752272,19822595:1707749 +k3764,99:18460021,19822595:1707749 +) +(3764,100:6630773,20690773:11829248,530548,102891 +h3764,99:6630773,20690773:0,0,0 +g3764,99:11568039,20690773 +k3764,100:15412489,20690773:3047532 +k3764,100:18460021,20690773:3047532 +) +(3764,101:6630773,21558952:11829248,530548,102891 +h3764,100:6630773,21558952:0,0,0 +g3764,100:11153096,21558952 +k3764,101:15404247,21558952:3055774 +k3764,101:18460021,21558952:3055774 +) +(3764,102:6630773,22427130:11829248,530548,102891 +h3764,101:6630773,22427130:0,0,0 +g3764,101:9908269,22427130 +g3764,101:11078086,22427130 +g3764,101:12247903,22427130 +g3764,101:13816179,22427130 +g3764,101:15384455,22427130 +k3764,102:17519927,22427130:940095 +k3764,102:18460021,22427130:940094 +) +(3764,103:6630773,23295308:11829248,538806,102891 +h3764,102:6630773,23295308:0,0,0 +g3764,102:9493326,23295308 +g3764,102:11061602,23295308 +g3764,102:12629878,23295308 +k3764,103:16142638,23295308:2317383 +k3764,103:18460021,23295308:2317383 +) +(3764,104:6630773,24163487:11829248,538806,102891 +h3764,103:6630773,24163487:0,0,0 +g3764,103:12812866,24163487 +k3764,104:16234132,24163487:2225889 +k3764,104:18460021,24163487:2225889 +) +(3764,105:6630773,25031665:11829248,530548,102891 +h3764,104:6630773,25031665:0,0,0 +g3764,104:10738154,25031665 +k3764,105:15196776,25031665:3263245 +k3764,105:18460021,25031665:3263245 +) +(3764,106:6630773,25899844:11829248,530548,102891 +h3764,105:6630773,25899844:0,0,0 +g3764,105:11568039,25899844 +k3764,106:15611719,25899844:2848303 +k3764,106:18460021,25899844:2848302 +) +(3764,107:6630773,26768022:11829248,530548,132808 +h3764,106:6630773,26768022:0,0,0 +g3764,106:9908269,26768022 +k3764,107:14582604,26768022:3877417 +k3764,107:18460021,26768022:3877417 +) +(3764,108:6630773,27636201:11829248,530548,102891 +h3764,107:6630773,27636201:0,0,0 +g3764,107:11153096,27636201 +k3764,108:15404247,27636201:3055774 +k3764,108:18460021,27636201:3055774 +) +(3764,109:6630773,28504379:11829248,530548,102891 +h3764,108:6630773,28504379:0,0,0 +g3764,108:13227808,28504379 +g3764,108:14796084,28504379 +k3764,109:17225741,28504379:1234280 +k3764,109:18460021,28504379:1234280 +) +(3764,110:6630773,29372557:11829248,530548,132808 +h3764,109:6630773,29372557:0,0,0 +g3764,109:11982981,29372557 +k3764,110:15819190,29372557:2640832 +k3764,110:18460021,29372557:2640831 +) +(3764,111:6630773,30240736:11829248,530548,102891 +h3764,110:6630773,30240736:0,0,0 +g3764,110:11568039,30240736 +g3764,110:13136315,30240736 +k3764,111:16395857,30240736:2064165 +k3764,111:18460021,30240736:2064164 +) +(3764,112:6630773,31108914:11829248,530548,102891 +h3764,111:6630773,31108914:0,0,0 +g3764,111:11568039,31108914 +k3764,112:15611719,31108914:2848303 +k3764,112:18460021,31108914:2848302 +) +(3764,113:6630773,31977093:11829248,530548,102891 +h3764,112:6630773,31977093:0,0,0 +g3764,112:14057693,31977093 +g3764,112:15625969,31977093 +k3764,113:17640684,31977093:819338 +k3764,113:18460021,31977093:819337 +) +(3764,114:6630773,32845271:11829248,530548,102891 +h3764,113:6630773,32845271:0,0,0 +g3764,113:14057693,32845271 +k3764,114:16856546,32845271:1603476 +k3764,114:18460021,32845271:1603475 +) +(3764,115:6630773,33713450:11829248,538806,102891 +h3764,114:6630773,33713450:0,0,0 +g3764,114:12397924,33713450 +k3764,115:16026661,33713450:2433360 +k3764,115:18460021,33713450:2433360 +) +(3764,116:6630773,34581628:11829248,538806,132808 +h3764,115:6630773,34581628:0,0,0 +g3764,115:11982981,34581628 +g3764,115:13551257,34581628 +k3764,116:16603328,34581628:1856694 +k3764,116:18460021,34581628:1856693 +) +(3764,117:6630773,35449806:11829248,530548,132808 +h3764,116:6630773,35449806:0,0,0 +g3764,116:12397924,35449806 +k3764,117:16026661,35449806:2433360 +k3764,117:18460021,35449806:2433360 +) +(3764,118:6630773,36317985:11829248,530548,102891 +h3764,117:6630773,36317985:0,0,0 +g3764,117:9078384,36317985 +g3764,117:10646660,36317985 +k3764,118:15151029,36317985:3308992 +k3764,118:18460021,36317985:3308992 +) +(3764,119:6630773,37186163:11829248,530548,102891 +h3764,118:6630773,37186163:0,0,0 +g3764,118:11153096,37186163 +g3764,118:12721372,37186163 +k3764,119:16188385,37186163:2271636 +k3764,119:18460021,37186163:2271636 +) +(3764,120:6630773,38054342:11829248,530548,102891 +h3764,119:6630773,38054342:0,0,0 +g3764,119:9078384,38054342 +k3764,120:14167662,38054342:4292360 +k3764,120:18460021,38054342:4292359 +) +(3764,121:6630773,38922520:11829248,530548,102891 +h3764,120:6630773,38922520:0,0,0 +g3764,120:10323211,38922520 +k3764,121:14989305,38922520:3470717 +k3764,121:18460021,38922520:3470716 +) +(3764,122:6630773,39790699:11829248,530548,102891 +h3764,121:6630773,39790699:0,0,0 +g3764,121:10323211,39790699 +k3764,122:14989305,39790699:3470717 +k3764,122:18460021,39790699:3470716 +) +(3764,123:6630773,40658877:11829248,530548,132808 +h3764,122:6630773,40658877:0,0,0 +g3764,122:10738154,40658877 +k3764,123:15196776,40658877:3263245 +k3764,123:18460021,40658877:3263245 +) +(3764,124:6630773,41527055:11829248,530548,102891 +h3764,123:6630773,41527055:0,0,0 +g3764,123:10323211,41527055 +k3764,124:14989305,41527055:3470717 +k3764,124:18460021,41527055:3470716 +) +(3764,125:6630773,42395234:11829248,530548,102891 +h3764,124:6630773,42395234:0,0,0 +g3764,124:10323211,42395234 +k3764,125:14989305,42395234:3470717 +k3764,125:18460021,42395234:3470716 +) +(3764,129:6630773,43970412:11829248,530548,102891 +h3764,128:6630773,43970412:0,0,0 +g3764,128:9493326,43970412 +k3764,129:14574362,43970412:3885659 +k3764,129:18460021,43970412:3885659 +) +(3764,130:6630773,44838591:11829248,538806,102891 +h3764,129:6630773,44838591:0,0,0 +g3764,129:11153096,44838591 +g3764,129:12322913,44838591 +g3764,129:13492730,44838591 +g3764,129:15061006,44838591 +k3764,130:17358202,44838591:1101819 +k3764,130:18460021,44838591:1101819 +) +(3764,131:6630773,45706769:11829248,538806,102891 +h3764,130:6630773,45706769:0,0,0 +g3764,130:11982981,45706769 +g3764,130:13152798,45706769 +g3764,130:14322615,45706769 +g3764,130:15890891,45706769 +k3764,131:17773145,45706769:686877 +k3764,131:18460021,45706769:686876 +) +] +k3764,186:19606901,45706769:1146880 +r3764,186:19606901,45706769:0,40234515,126483 +k3764,186:20753781,45706769:1146880 +[3764,186:20753781,45706769:11829248,40108032,102891 +(3764,132:20753781,6254097:11829248,530548,102891 +h3764,131:20753781,6254097:0,0,0 +g3764,131:24446219,6254097 +k3764,132:29112313,6254097:3470717 +k3764,132:32583029,6254097:3470716 +) +(3764,133:20753781,7120191:11829248,530548,132808 +h3764,132:20753781,7120191:0,0,0 +g3764,132:24446219,7120191 +k3764,133:29112313,7120191:3470717 +k3764,133:32583029,7120191:3470716 +) +(3764,134:20753781,7986285:11829248,530548,132808 +h3764,133:20753781,7986285:0,0,0 +g3764,133:25691047,7986285 +k3764,134:29734727,7986285:2848303 +k3764,134:32583029,7986285:2848302 +) +(3764,135:20753781,8852380:11829248,530548,102891 +h3764,134:20753781,8852380:0,0,0 +g3764,134:24446219,8852380 +g3764,134:26014495,8852380 +g3764,134:27582771,8852380 +k3764,135:30680589,8852380:1902441 +k3764,135:32583029,8852380:1902440 +) +(3764,136:20753781,9718474:11829248,538806,102891 +h3764,135:20753781,9718474:0,0,0 +g3764,135:22786450,9718474 +k3764,136:28282428,9718474:4300601 +k3764,136:32583029,9718474:4300601 +) +(3764,137:20753781,10584568:11829248,530548,141066 +h3764,136:20753781,10584568:0,0,0 +g3764,136:23616334,10584568 +k3764,137:28498141,10584568:4084889 +k3764,137:32583029,10584568:4084888 +) +(3764,138:20753781,11450662:11829248,538806,102891 +h3764,137:20753781,11450662:0,0,0 +g3764,137:23616334,11450662 +k3764,138:28697370,11450662:3885659 +k3764,138:32583029,11450662:3885659 +) +(3764,139:20753781,12316756:11829248,538806,102891 +h3764,138:20753781,12316756:0,0,0 +g3764,138:24861162,12316756 +k3764,139:29319784,12316756:3263245 +k3764,139:32583029,12316756:3263245 +) +(3764,140:20753781,13182851:11829248,530548,102891 +h3764,139:20753781,13182851:0,0,0 +g3764,139:23201392,13182851 +g3764,139:24371209,13182851 +g3764,139:25541026,13182851 +g3764,139:27109302,13182851 +g3764,139:28677578,13182851 +k3764,140:31227992,13182851:1355037 +k3764,140:32583029,13182851:1355037 +) +(3764,141:20753781,14048945:11829248,530548,102891 +h3764,140:20753781,14048945:0,0,0 +g3764,140:24031277,14048945 +k3764,141:28904842,14048945:3678188 +k3764,141:32583029,14048945:3678187 +) +(3764,142:20753781,14915039:11829248,530548,102891 +h3764,141:20753781,14915039:0,0,0 +g3764,141:25276104,14915039 +k3764,142:29527255,14915039:3055774 +k3764,142:32583029,14915039:3055774 +) +(3764,143:20753781,15781133:11829248,530548,102891 +h3764,142:20753781,15781133:0,0,0 +g3764,142:23201392,15781133 +k3764,143:28489899,15781133:4093130 +k3764,143:32583029,15781133:4093130 +) +(3764,144:20753781,16647228:11829248,530548,102891 +h3764,143:20753781,16647228:0,0,0 +g3764,143:24861162,16647228 +k3764,144:29319784,16647228:3263245 +k3764,144:32583029,16647228:3263245 +) +(3764,145:20753781,17513322:11829248,530548,102891 +h3764,144:20753781,17513322:0,0,0 +g3764,144:22786450,17513322 +k3764,145:28282428,17513322:4300601 +k3764,145:32583029,17513322:4300601 +) +(3764,146:20753781,18379416:11829248,530548,102891 +h3764,145:20753781,18379416:0,0,0 +g3764,145:24446219,18379416 +k3764,146:29112313,18379416:3470717 +k3764,146:32583029,18379416:3470716 +) +(3764,147:20753781,19245510:11829248,530548,102891 +h3764,146:20753781,19245510:0,0,0 +g3764,146:25691047,19245510 +k3764,147:29734727,19245510:2848303 +k3764,147:32583029,19245510:2848302 +) +(3764,148:20753781,20111604:11829248,530548,102891 +h3764,147:20753781,20111604:0,0,0 +g3764,147:24031277,20111604 +k3764,148:28904842,20111604:3678188 +k3764,148:32583029,20111604:3678187 +) +(3764,149:20753781,20977699:11829248,530548,102891 +h3764,148:20753781,20977699:0,0,0 +g3764,148:24861162,20977699 +g3764,148:26429438,20977699 +k3764,149:30103922,20977699:2479107 +k3764,149:32583029,20977699:2479107 +) +(3764,150:20753781,21843793:11829248,530548,102891 +h3764,149:20753781,21843793:0,0,0 +g3764,149:23616334,21843793 +g3764,149:24786151,21843793 +g3764,149:27080566,21843793 +k3764,150:30230257,21843793:2352773 +k3764,150:32583029,21843793:2352772 +) +(3764,151:20753781,22709887:11829248,530548,102891 +h3764,150:20753781,22709887:0,0,0 +g3764,150:24446219,22709887 +k3764,151:28913083,22709887:3669946 +k3764,151:32583029,22709887:3669946 +) +(3764,152:20753781,23575981:11829248,538806,102891 +h3764,151:20753781,23575981:0,0,0 +g3764,151:27350816,23575981 +k3764,152:30564611,23575981:2018418 +k3764,152:32583029,23575981:2018418 +) +(3764,153:20753781,24442075:11829248,530548,132808 +h3764,152:20753781,24442075:0,0,0 +g3764,152:24031277,24442075 +k3764,153:28904842,24442075:3678188 +k3764,153:32583029,24442075:3678187 +) +(3764,154:20753781,25308170:11829248,530548,102891 +h3764,153:20753781,25308170:0,0,0 +g3764,153:22786450,25308170 +k3764,154:28282428,25308170:4300601 +k3764,154:32583029,25308170:4300601 +) +(3764,155:20753781,26174264:11829248,538806,102891 +h3764,154:20753781,26174264:0,0,0 +g3764,154:24031277,26174264 +k3764,155:28904842,26174264:3678188 +k3764,155:32583029,26174264:3678187 +) +(3764,156:20753781,27040358:11829248,530548,132808 +h3764,155:20753781,27040358:0,0,0 +g3764,155:26105989,27040358 +k3764,156:29742968,27040358:2840061 +k3764,156:32583029,27040358:2840061 +) +(3764,160:20753781,28578716:11829248,530548,102891 +h3764,159:20753781,28578716:0,0,0 +g3764,159:23616334,28578716 +k3764,160:28697370,28578716:3885659 +k3764,160:32583029,28578716:3885659 +) +(3764,161:20753781,29444810:11829248,538806,102891 +h3764,160:20753781,29444810:0,0,0 +g3764,160:24861162,29444810 +k3764,161:29319784,29444810:3263245 +k3764,161:32583029,29444810:3263245 +) +(3764,162:20753781,30310904:11829248,530548,102891 +h3764,161:20753781,30310904:0,0,0 +g3764,161:25691047,30310904 +k3764,162:29734727,30310904:2848303 +k3764,162:32583029,30310904:2848302 +) +(3764,163:20753781,31176998:11829248,530548,102891 +h3764,162:20753781,31176998:0,0,0 +g3764,162:26520932,31176998 +k3764,163:30149669,31176998:2433360 +k3764,163:32583029,31176998:2433360 +) +(3764,164:20753781,32043092:11829248,530548,102891 +h3764,163:20753781,32043092:0,0,0 +g3764,163:24446219,32043092 +g3764,163:26014495,32043092 +k3764,164:29896451,32043092:2686579 +k3764,164:32583029,32043092:2686578 +) +(3764,165:20753781,32909187:11829248,530548,102891 +h3764,164:20753781,32909187:0,0,0 +g3764,164:26935874,32909187 +k3764,165:30357140,32909187:2225889 +k3764,165:32583029,32909187:2225889 +) +(3764,166:20753781,33775281:11829248,530548,102891 +h3764,165:20753781,33775281:0,0,0 +g3764,165:24446219,33775281 +k3764,166:29112313,33775281:3470717 +k3764,166:32583029,33775281:3470716 +) +(3764,167:20753781,34641375:11829248,530548,132808 +h3764,166:20753781,34641375:0,0,0 +g3764,166:23201392,34641375 +k3764,167:28290670,34641375:4292360 +k3764,167:32583029,34641375:4292359 +) +(3764,168:20753781,35507469:11829248,530548,132808 +h3764,167:20753781,35507469:0,0,0 +g3764,167:27350816,35507469 +k3764,168:30564611,35507469:2018418 +k3764,168:32583029,35507469:2018418 +) +(3764,169:20753781,36373564:11829248,530548,132808 +h3764,168:20753781,36373564:0,0,0 +g3764,168:26105989,36373564 +k3764,169:30703726,36373564:1879304 +k3764,169:32583029,36373564:1879303 +) +(3764,173:20753781,37911921:11829248,538806,141066 +h3764,172:20753781,37911921:0,0,0 +g3764,172:26105989,37911921 +k3764,173:29942198,37911921:2640832 +k3764,173:32583029,37911921:2640831 +) +(3764,174:20753781,38778015:11829248,538806,132808 +h3764,173:20753781,38778015:0,0,0 +g3764,173:26105989,38778015 +g3764,173:27674265,38778015 +g3764,173:29242541,38778015 +k3764,174:31510474,38778015:1072556 +k3764,174:32583029,38778015:1072555 +) +(3764,175:20753781,39644110:11829248,538806,102891 +h3764,174:20753781,39644110:0,0,0 +g3764,174:23616334,39644110 +k3764,175:28498141,39644110:4084889 +k3764,175:32583029,39644110:4084888 +) +(3764,176:20753781,40510204:11829248,538806,102891 +h3764,175:20753781,40510204:0,0,0 +g3764,175:24446219,40510204 +g3764,175:26740634,40510204 +k3764,176:30259520,40510204:2323509 +k3764,176:32583029,40510204:2323509 +) +(3764,177:20753781,41376298:11829248,538806,102891 +h3764,176:20753781,41376298:0,0,0 +g3764,176:25691047,41376298 +k3764,177:29734727,41376298:2848303 +k3764,177:32583029,41376298:2848302 +) +(3764,178:20753781,42242392:11829248,538806,132808 +h3764,177:20753781,42242392:0,0,0 +g3764,177:25691047,42242392 +k3764,178:29734727,42242392:2848303 +k3764,178:32583029,42242392:2848302 +) +(3764,179:20753781,43108486:11829248,538806,102891 +h3764,178:20753781,43108486:0,0,0 +g3764,178:24446219,43108486 +k3764,179:29112313,43108486:3470717 +k3764,179:32583029,43108486:3470716 +) +(3764,180:20753781,43974581:11829248,538806,102891 +h3764,179:20753781,43974581:0,0,0 +g3764,179:24446219,43974581 +g3764,179:26014495,43974581 +k3764,180:29896451,43974581:2686579 +k3764,180:32583029,43974581:2686578 +) +(3764,181:20753781,44840675:11829248,538806,102891 +h3764,180:20753781,44840675:0,0,0 +g3764,180:27350816,44840675 +k3764,181:30564611,44840675:2018418 +k3764,181:32583029,44840675:2018418 +) +(3764,182:20753781,45706769:11829248,538806,102891 +h3764,181:20753781,45706769:0,0,0 +g3764,181:23201392,45706769 +k3764,182:28489899,45706769:4093130 +k3764,182:32583029,45706769:4093130 +) +] +(3764,186:32583029,45706769:0,355205,126483 +h3764,186:32583029,45706769:420741,355205,126483 +k3764,186:32583029,45706769:-420741 +) ) -g3723,1:36675916,49800853 -(3723,1:36675916,49800853:1179648,16384,0 -r3723,194:37855564,49800853:1179648,16384,0 +] +(3764,186:32583029,45706769:0,0,0 +g3764,186:32583029,45706769 ) ) -k3723,194:3078556,49800853:-34777008 +] +(3764,186:6630773,47279633:25952256,0,0 +h3764,186:6630773,47279633:25952256,0,0 ) ] -g3723,194:6630773,4812305 -k3723,194:23552170,4812305:15726020 -g3723,194:27112085,4812305 -g3723,194:29010007,4812305 -g3723,194:29825274,4812305 -g3723,194:30438691,4812305 -) -) -] -[3723,194:6630773,45706769:25952256,40108032,0 -(3723,194:6630773,45706769:25952256,40108032,0 -(3723,194:6630773,45706769:0,0,0 -g3723,194:6630773,45706769 +(3764,186:4262630,4025873:0,0,0 +[3764,186:-473656,4025873:0,0,0 +(3764,186:-473656,-710413:0,0,0 +(3764,186:-473656,-710413:0,0,0 +g3764,186:-473656,-710413 ) -[3723,194:6630773,45706769:25952256,40108032,0 -(3723,194:6630773,45706769:25952256,40108032,126483 -[3723,194:6630773,45706769:11829248,40108032,126483 -(3723,84:6630773,6254097:11829248,505283,102891 -h3723,83:6630773,6254097:0,0,0 -g3723,83:10955493,6254097 -k3723,84:15305446,6254097:3154576 -k3723,84:18460021,6254097:3154575 -) -(3723,85:6630773,7099096:11829248,505283,102891 -h3723,84:6630773,7099096:0,0,0 -g3723,84:8979582,7099096 -g3723,84:10547858,7099096 -k3723,85:15101628,7099096:3358393 -k3723,85:18460021,7099096:3358393 -) -(3723,86:6630773,7944094:11829248,505283,126483 -h3723,85:6630773,7944094:0,0,0 -g3723,85:10165129,7944094 -k3723,86:14910264,7944094:3549758 -k3723,86:18460021,7944094:3549757 -) -(3723,87:6630773,8789093:11829248,505283,102891 -h3723,86:6630773,8789093:0,0,0 -g3723,86:9374765,8789093 -k3723,87:14515082,8789093:3944940 -k3723,87:18460021,8789093:3944939 -) -(3723,88:6630773,9634091:11829248,505283,102891 -h3723,87:6630773,9634091:0,0,0 -g3723,87:11745857,9634091 -k3723,88:15700628,9634091:2759394 -k3723,88:18460021,9634091:2759393 -) -(3723,89:6630773,10479090:11829248,505283,126483 -h3723,88:6630773,10479090:0,0,0 -g3723,88:12931403,10479090 -k3723,89:16293401,10479090:2166621 -k3723,89:18460021,10479090:2166620 -) -(3723,90:6630773,11324088:11829248,505283,126483 -h3723,89:6630773,11324088:0,0,0 -g3723,89:10165129,11324088 -k3723,90:14910264,11324088:3549758 -k3723,90:18460021,11324088:3549757 -) -(3723,91:6630773,12169087:11829248,505283,102891 -h3723,90:6630773,12169087:0,0,0 -g3723,90:9769947,12169087 -g3723,90:11338223,12169087 -g3723,90:12906499,12169087 -k3723,91:16280949,12169087:2179073 -k3723,91:18460021,12169087:2179072 -) -(3723,95:6630773,13727954:11829248,505283,102891 -h3723,94:6630773,13727954:0,0,0 -g3723,94:8189218,13727954 -g3723,94:9359035,13727954 -g3723,94:10528852,13727954 -k3723,95:14892896,13727954:3567126 -k3723,95:18460021,13727954:3567125 -) -(3723,96:6630773,14572953:11829248,505283,102891 -h3723,95:6630773,14572953:0,0,0 -g3723,95:8584400,14572953 -k3723,96:14119899,14572953:4340122 -k3723,96:18460021,14572953:4340122 -) -(3723,97:6630773,15417951:11829248,485622,102891 -h3723,96:6630773,15417951:0,0,0 -g3723,96:8584400,15417951 -k3723,97:14119899,15417951:4340122 -k3723,97:18460021,15417951:4340122 -) -(3723,98:6630773,16262950:11829248,505283,102891 -h3723,97:6630773,16262950:0,0,0 -g3723,97:8979582,16262950 -g3723,97:10149399,16262950 -g3723,97:11319216,16262950 -k3723,98:15487307,16262950:2972714 -k3723,98:18460021,16262950:2972714 -) -(3723,99:6630773,17107948:11829248,505283,134348 -h3723,98:6630773,17107948:0,0,0 -g3723,98:10560311,17107948 -g3723,98:11730128,17107948 -k3723,99:15493534,17107948:2966488 -k3723,99:18460021,17107948:2966487 -) -(3723,100:6630773,17952947:11829248,505283,102891 -h3723,99:6630773,17952947:0,0,0 -g3723,99:10560311,17952947 -g3723,99:11730128,17952947 -g3723,99:12899945,17952947 -g3723,99:14069762,17952947 -k3723,100:16663351,17952947:1796671 -k3723,100:18460021,17952947:1796670 -) -(3723,101:6630773,18797945:11829248,505283,102891 -h3723,100:6630773,18797945:0,0,0 -g3723,100:11350675,18797945 -k3723,101:15303807,18797945:3156214 -k3723,101:18460021,18797945:3156214 -) -(3723,102:6630773,19642944:11829248,505283,102891 -h3723,101:6630773,19642944:0,0,0 -g3723,101:10955493,19642944 -k3723,102:15305446,19642944:3154576 -k3723,102:18460021,19642944:3154575 -) -(3723,103:6630773,20487942:11829248,505283,102891 -h3723,102:6630773,20487942:0,0,0 -g3723,102:9769947,20487942 -g3723,102:10939764,20487942 -g3723,102:12109581,20487942 -g3723,102:13677857,20487942 -g3723,102:15246133,20487942 -k3723,103:17450766,20487942:1009256 -k3723,103:18460021,20487942:1009255 -) -(3723,104:6630773,21332941:11829248,513147,102891 -h3723,103:6630773,21332941:0,0,0 -g3723,103:9374765,21332941 -g3723,103:10943041,21332941 -g3723,103:12511317,21332941 -k3723,104:16083358,21332941:2376664 -k3723,104:18460021,21332941:2376663 -) -(3723,105:6630773,22177940:11829248,513147,102891 -h3723,104:6630773,22177940:0,0,0 -g3723,104:12536221,22177940 -k3723,105:16095810,22177940:2364212 -k3723,105:18460021,22177940:2364211 -) -(3723,106:6630773,23022938:11829248,505283,102891 -h3723,105:6630773,23022938:0,0,0 -g3723,105:10560311,23022938 -k3723,106:15107855,23022938:3352167 -k3723,106:18460021,23022938:3352166 -) -(3723,107:6630773,23867937:11829248,505283,102891 -h3723,106:6630773,23867937:0,0,0 -g3723,106:11350675,23867937 -k3723,107:15503037,23867937:2956985 -k3723,107:18460021,23867937:2956984 -) -(3723,108:6630773,24712935:11829248,505283,102891 -h3723,107:6630773,24712935:0,0,0 -g3723,107:10955493,24712935 -k3723,108:15305446,24712935:3154576 -k3723,108:18460021,24712935:3154575 -) -(3723,109:6630773,25557934:11829248,505283,102891 -h3723,108:6630773,25557934:0,0,0 -g3723,108:12931403,25557934 -g3723,108:14499679,25557934 -k3723,109:17077539,25557934:1382483 -k3723,109:18460021,25557934:1382482 -) -(3723,110:6630773,26402932:11829248,505283,126483 -h3723,109:6630773,26402932:0,0,0 -g3723,109:11745857,26402932 -k3723,110:15700628,26402932:2759394 -k3723,110:18460021,26402932:2759393 -) -(3723,111:6630773,27247931:11829248,505283,102891 -h3723,110:6630773,27247931:0,0,0 -g3723,110:11350675,27247931 -g3723,110:12918951,27247931 -k3723,111:16287175,27247931:2172847 -k3723,111:18460021,27247931:2172846 -) -(3723,112:6630773,28092929:11829248,505283,102891 -h3723,111:6630773,28092929:0,0,0 -g3723,111:11350675,28092929 -k3723,112:15503037,28092929:2956985 -k3723,112:18460021,28092929:2956984 -) -(3723,113:6630773,28937928:11829248,505283,102891 -h3723,112:6630773,28937928:0,0,0 -g3723,112:13721768,28937928 -g3723,112:15290044,28937928 -k3723,113:17472721,28937928:987300 -k3723,113:18460021,28937928:987300 -) -(3723,114:6630773,29782926:11829248,505283,102891 -h3723,113:6630773,29782926:0,0,0 -g3723,113:13721768,29782926 -k3723,114:16688583,29782926:1771438 -k3723,114:18460021,29782926:1771438 -) -(3723,115:6630773,30627925:11829248,513147,102891 -h3723,114:6630773,30627925:0,0,0 -g3723,114:12141039,30627925 -k3723,115:15898219,30627925:2561803 -k3723,115:18460021,30627925:2561802 -) -(3723,116:6630773,31472924:11829248,513147,126483 -h3723,115:6630773,31472924:0,0,0 -g3723,115:11745857,31472924 -g3723,115:13314133,31472924 -k3723,116:16484766,31472924:1975256 -k3723,116:18460021,31472924:1975255 -) -(3723,117:6630773,32317922:11829248,505283,126483 -h3723,116:6630773,32317922:0,0,0 -g3723,116:12141039,32317922 -k3723,117:15898219,32317922:2561803 -k3723,117:18460021,32317922:2561802 -) -(3723,118:6630773,33162921:11829248,505283,102891 -h3723,117:6630773,33162921:0,0,0 -g3723,117:8979582,33162921 -k3723,118:15079018,33162921:3381003 -k3723,118:18460021,33162921:3381003 -) -(3723,119:6630773,34007919:11829248,505283,102891 -h3723,118:6630773,34007919:0,0,0 -g3723,118:10955493,34007919 -g3723,118:12523769,34007919 -k3723,119:16089584,34007919:2370438 -k3723,119:18460021,34007919:2370437 -) -(3723,120:6630773,34852918:11829248,505283,102891 -h3723,119:6630773,34852918:0,0,0 -g3723,119:8979582,34852918 -k3723,120:14118261,34852918:4341761 -k3723,120:18460021,34852918:4341760 -) -(3723,121:6630773,35697916:11829248,505283,126483 -h3723,120:6630773,35697916:0,0,0 -g3723,120:11350675,35697916 -k3723,121:15303807,35697916:3156214 -k3723,121:18460021,35697916:3156214 -) -(3723,122:6630773,36542915:11829248,505283,102891 -h3723,121:6630773,36542915:0,0,0 -g3723,121:10165129,36542915 -k3723,122:14910264,36542915:3549758 -k3723,122:18460021,36542915:3549757 -) -(3723,123:6630773,37387913:11829248,505283,102891 -h3723,122:6630773,37387913:0,0,0 -g3723,122:10165129,37387913 -k3723,123:14910264,37387913:3549758 -k3723,123:18460021,37387913:3549757 -) -(3723,124:6630773,38232912:11829248,505283,126483 -h3723,123:6630773,38232912:0,0,0 -g3723,123:10560311,38232912 -k3723,124:15107855,38232912:3352167 -k3723,124:18460021,38232912:3352166 -) -(3723,125:6630773,39077911:11829248,505283,102891 -h3723,124:6630773,39077911:0,0,0 -g3723,124:10165129,39077911 -k3723,125:14910264,39077911:3549758 -k3723,125:18460021,39077911:3549757 -) -(3723,126:6630773,39922909:11829248,505283,102891 -h3723,125:6630773,39922909:0,0,0 -g3723,125:10165129,39922909 -k3723,126:14910264,39922909:3549758 -k3723,126:18460021,39922909:3549757 -) -(3723,130:6630773,41481776:11829248,505283,102891 -h3723,129:6630773,41481776:0,0,0 -g3723,129:9374765,41481776 -k3723,130:14515082,41481776:3944940 -k3723,130:18460021,41481776:3944939 -) -(3723,131:6630773,42326775:11829248,513147,102891 -h3723,130:6630773,42326775:0,0,0 -g3723,130:10955493,42326775 -g3723,130:12125310,42326775 -g3723,130:13295127,42326775 -g3723,130:14863403,42326775 -k3723,131:17259401,42326775:1200621 -k3723,131:18460021,42326775:1200620 -) -(3723,132:6630773,43171773:11829248,513147,102891 -h3723,131:6630773,43171773:0,0,0 -g3723,131:11745857,43171773 -g3723,131:12915674,43171773 -g3723,131:14483950,43171773 -g3723,131:16052226,43171773 -k3723,132:17853812,43171773:606209 -k3723,132:18460021,43171773:606209 -) -(3723,133:6630773,44016772:11829248,505283,102891 -h3723,132:6630773,44016772:0,0,0 -g3723,132:10165129,44016772 -k3723,133:14910264,44016772:3549758 -k3723,133:18460021,44016772:3549757 -) -(3723,134:6630773,44861770:11829248,505283,126483 -h3723,133:6630773,44861770:0,0,0 -g3723,133:10165129,44861770 -k3723,134:14910264,44861770:3549758 -k3723,134:18460021,44861770:3549757 -) -(3723,135:6630773,45706769:11829248,505283,126483 -h3723,134:6630773,45706769:0,0,0 -g3723,134:11350675,45706769 -k3723,135:15503037,45706769:2956985 -k3723,135:18460021,45706769:2956984 -) -] -k3723,194:19606901,45706769:1146880 -r3723,194:19606901,45706769:0,40234515,126483 -k3723,194:20753781,45706769:1146880 -[3723,194:20753781,45706769:11829248,40108032,102891 -(3723,136:20753781,6254097:11829248,505283,102891 -h3723,135:20753781,6254097:0,0,0 -g3723,135:24288137,6254097 -g3723,135:25856413,6254097 -g3723,135:27424689,6254097 -k3723,136:30601548,6254097:1981482 -k3723,136:32583029,6254097:1981481 -) -(3723,137:20753781,7099096:11829248,513147,102891 -h3723,136:20753781,7099096:0,0,0 -g3723,136:22707408,7099096 -k3723,137:28242907,7099096:4340122 -k3723,137:32583029,7099096:4340122 -) -(3723,138:20753781,7944094:11829248,505283,134348 -h3723,137:20753781,7944094:0,0,0 -g3723,137:23497773,7944094 -k3723,138:28438860,7944094:4144169 -k3723,138:32583029,7944094:4144169 -) -(3723,139:20753781,8789093:11829248,513147,102891 -h3723,138:20753781,8789093:0,0,0 -g3723,138:23497773,8789093 -k3723,139:28638090,8789093:3944940 -k3723,139:32583029,8789093:3944939 -) -(3723,140:20753781,9634091:11829248,513147,102891 -h3723,139:20753781,9634091:0,0,0 -g3723,139:24683319,9634091 -k3723,140:29230863,9634091:3352167 -k3723,140:32583029,9634091:3352166 -) -(3723,141:20753781,10479090:11829248,505283,102891 -h3723,140:20753781,10479090:0,0,0 -g3723,140:23102590,10479090 -g3723,140:24272407,10479090 -g3723,140:25442224,10479090 -g3723,140:27010500,10479090 -g3723,140:28578776,10479090 -k3723,141:31178591,10479090:1404438 -k3723,141:32583029,10479090:1404438 -) -(3723,142:20753781,11324088:11829248,505283,102891 -h3723,141:20753781,11324088:0,0,0 -g3723,141:23892955,11324088 -k3723,142:28835681,11324088:3747349 -k3723,142:32583029,11324088:3747348 -) -(3723,143:20753781,12169087:11829248,505283,102891 -h3723,142:20753781,12169087:0,0,0 -g3723,142:25078501,12169087 -k3723,143:29428454,12169087:3154576 -k3723,143:32583029,12169087:3154575 -) -(3723,144:20753781,13014085:11829248,505283,102891 -h3723,143:20753781,13014085:0,0,0 -g3723,143:23102590,13014085 -k3723,144:28440498,13014085:4142531 -k3723,144:32583029,13014085:4142531 -) -(3723,145:20753781,13859084:11829248,505283,102891 -h3723,144:20753781,13859084:0,0,0 -g3723,144:24683319,13859084 -k3723,145:29230863,13859084:3352167 -k3723,145:32583029,13859084:3352166 -) -(3723,146:20753781,14704083:11829248,505283,102891 -h3723,145:20753781,14704083:0,0,0 -g3723,145:22707408,14704083 -k3723,146:28242907,14704083:4340122 -k3723,146:32583029,14704083:4340122 -) -(3723,147:20753781,15549081:11829248,505283,102891 -h3723,146:20753781,15549081:0,0,0 -g3723,146:24288137,15549081 -k3723,147:29033272,15549081:3549758 -k3723,147:32583029,15549081:3549757 -) -(3723,148:20753781,16394080:11829248,505283,102891 -h3723,147:20753781,16394080:0,0,0 -g3723,147:25473683,16394080 -k3723,148:29626045,16394080:2956985 -k3723,148:32583029,16394080:2956984 -) -(3723,149:20753781,17239078:11829248,505283,102891 -h3723,148:20753781,17239078:0,0,0 -g3723,148:23892955,17239078 -k3723,149:28835681,17239078:3747349 -k3723,149:32583029,17239078:3747348 -) -(3723,150:20753781,18084077:11829248,505283,102891 -h3723,149:20753781,18084077:0,0,0 -g3723,149:24683319,18084077 -g3723,149:26251595,18084077 -k3723,150:30015001,18084077:2568029 -k3723,150:32583029,18084077:2568028 -) -(3723,151:20753781,18929075:11829248,505283,102891 -h3723,150:20753781,18929075:0,0,0 -g3723,150:23497773,18929075 -g3723,150:24667590,18929075 -g3723,150:26962005,18929075 -k3723,151:30170976,18929075:2412053 -k3723,151:32583029,18929075:2412053 -) -(3723,152:20753781,19774074:11829248,505283,102891 -h3723,151:20753781,19774074:0,0,0 -g3723,151:24288137,19774074 -k3723,152:28834042,19774074:3748987 -k3723,152:32583029,19774074:3748987 -) -(3723,153:20753781,20619072:11829248,513147,102891 -h3723,152:20753781,20619072:0,0,0 -g3723,152:27054411,20619072 -k3723,153:30416409,20619072:2166621 -k3723,153:32583029,20619072:2166620 -) -(3723,154:20753781,21464071:11829248,505283,126483 -h3723,153:20753781,21464071:0,0,0 -g3723,153:23892955,21464071 -k3723,154:28835681,21464071:3747349 -k3723,154:32583029,21464071:3747348 -) -(3723,155:20753781,22309069:11829248,505283,102891 -h3723,154:20753781,22309069:0,0,0 -g3723,154:22707408,22309069 -k3723,155:28242907,22309069:4340122 -k3723,155:32583029,22309069:4340122 -) -(3723,156:20753781,23154068:11829248,513147,102891 -h3723,155:20753781,23154068:0,0,0 -g3723,155:23892955,23154068 -k3723,156:28835681,23154068:3747349 -k3723,156:32583029,23154068:3747348 -) -(3723,157:20753781,23999067:11829248,505283,126483 -h3723,156:20753781,23999067:0,0,0 -g3723,156:25868865,23999067 -k3723,157:29624406,23999067:2958623 -k3723,157:32583029,23999067:2958623 -) -(3723,161:20753781,25557934:11829248,505283,102891 -h3723,160:20753781,25557934:0,0,0 -g3723,160:23497773,25557934 -k3723,161:28638090,25557934:3944940 -k3723,161:32583029,25557934:3944939 -) -(3723,162:20753781,26402932:11829248,513147,102891 -h3723,161:20753781,26402932:0,0,0 -g3723,161:24683319,26402932 -k3723,162:29230863,26402932:3352167 -k3723,162:32583029,26402932:3352166 -) -(3723,163:20753781,27247931:11829248,505283,102891 -h3723,162:20753781,27247931:0,0,0 -g3723,162:25473683,27247931 -k3723,163:29626045,27247931:2956985 -k3723,163:32583029,27247931:2956984 -) -(3723,164:20753781,28092929:11829248,505283,102891 -h3723,163:20753781,28092929:0,0,0 -g3723,163:26264047,28092929 -k3723,164:30021227,28092929:2561803 -k3723,164:32583029,28092929:2561802 -) -(3723,165:20753781,28937928:11829248,505283,102891 -h3723,164:20753781,28937928:0,0,0 -g3723,164:24288137,28937928 -g3723,164:25856413,28937928 -k3723,165:29817410,28937928:2765620 -k3723,165:32583029,28937928:2765619 -) -(3723,166:20753781,29782926:11829248,505283,102891 -h3723,165:20753781,29782926:0,0,0 -g3723,165:26659229,29782926 -k3723,166:30218818,29782926:2364212 -k3723,166:32583029,29782926:2364211 -) -(3723,167:20753781,30627925:11829248,505283,102891 -h3723,166:20753781,30627925:0,0,0 -g3723,166:24288137,30627925 -k3723,167:29033272,30627925:3549758 -k3723,167:32583029,30627925:3549757 -) -(3723,168:20753781,31472924:11829248,505283,126483 -h3723,167:20753781,31472924:0,0,0 -g3723,167:23102590,31472924 -k3723,168:28241269,31472924:4341761 -k3723,168:32583029,31472924:4341760 -) -(3723,169:20753781,32317922:11829248,505283,126483 -h3723,168:20753781,32317922:0,0,0 -g3723,168:27054411,32317922 -k3723,169:30416409,32317922:2166621 -k3723,169:32583029,32317922:2166620 -) -(3723,170:20753781,33162921:11829248,505283,126483 -h3723,169:20753781,33162921:0,0,0 -g3723,169:25868865,33162921 -k3723,170:30585164,33162921:1997866 -k3723,170:32583029,33162921:1997865 -) -(3723,174:20753781,34721788:11829248,513147,134348 -h3723,173:20753781,34721788:0,0,0 -g3723,173:25868865,34721788 -k3723,174:29823636,34721788:2759394 -k3723,174:32583029,34721788:2759393 -) -(3723,175:20753781,35566786:11829248,513147,126483 -h3723,174:20753781,35566786:0,0,0 -g3723,174:25868865,35566786 -g3723,174:27437141,35566786 -g3723,174:29005417,35566786 -k3723,175:31391912,35566786:1191118 -k3723,175:32583029,35566786:1191117 -) -(3723,176:20753781,36411785:11829248,513147,102891 -h3723,175:20753781,36411785:0,0,0 -g3723,175:23497773,36411785 -k3723,176:28438860,36411785:4144169 -k3723,176:32583029,36411785:4144169 -) -(3723,177:20753781,37256783:11829248,513147,102891 -h3723,176:20753781,37256783:0,0,0 -g3723,176:24288137,37256783 -g3723,176:26582552,37256783 -g3723,176:27752369,37256783 -k3723,177:30765388,37256783:1817642 -k3723,177:32583029,37256783:1817641 -) -(3723,178:20753781,38101782:11829248,513147,102891 -h3723,177:20753781,38101782:0,0,0 -g3723,177:25473683,38101782 -k3723,178:29626045,38101782:2956985 -k3723,178:32583029,38101782:2956984 -) -(3723,179:20753781,38946781:11829248,513147,126483 -h3723,178:20753781,38946781:0,0,0 -g3723,178:25473683,38946781 -k3723,179:29626045,38946781:2956985 -k3723,179:32583029,38946781:2956984 -) -(3723,180:20753781,39791779:11829248,513147,102891 -h3723,179:20753781,39791779:0,0,0 -g3723,179:24288137,39791779 -k3723,180:29033272,39791779:3549758 -k3723,180:32583029,39791779:3549757 -) -(3723,181:20753781,40636778:11829248,513147,102891 -h3723,180:20753781,40636778:0,0,0 -g3723,180:24288137,40636778 -g3723,180:25856413,40636778 -k3723,181:29817410,40636778:2765620 -k3723,181:32583029,40636778:2765619 -) -(3723,182:20753781,41481776:11829248,513147,102891 -h3723,181:20753781,41481776:0,0,0 -g3723,181:27054411,41481776 -k3723,182:30416409,41481776:2166621 -k3723,182:32583029,41481776:2166620 -) -(3723,183:20753781,42326775:11829248,513147,102891 -h3723,182:20753781,42326775:0,0,0 -g3723,182:23102590,42326775 -k3723,183:28440498,42326775:4142531 -k3723,183:32583029,42326775:4142531 -) -(3723,184:20753781,43171773:11829248,513147,102891 -h3723,183:20753781,43171773:0,0,0 -g3723,183:22312226,43171773 -g3723,183:23880502,43171773 -g3723,183:25448778,43171773 -g3723,183:27017054,43171773 -k3723,184:30397730,43171773:2185299 -k3723,184:32583029,43171773:2185299 -) -(3723,185:20753781,44016772:11829248,513147,102891 -h3723,184:20753781,44016772:0,0,0 -g3723,184:24288137,44016772 -g3723,184:25457954,44016772 -g3723,184:26627771,44016772 -k3723,185:30203089,44016772:2379941 -k3723,185:32583029,44016772:2379940 -) -(3723,186:20753781,44861770:11829248,513147,102891 -h3723,185:20753781,44861770:0,0,0 -g3723,185:23892955,44861770 -g3723,185:25461231,44861770 -k3723,186:29619819,44861770:2963211 -k3723,186:32583029,44861770:2963210 -) -(3723,187:20753781,45706769:11829248,513147,102891 -h3723,186:20753781,45706769:0,0,0 -g3723,186:25078501,45706769 -k3723,187:29428454,45706769:3154576 -k3723,187:32583029,45706769:3154575 -) -] -(3723,194:32583029,45706769:0,355205,126483 -h3723,194:32583029,45706769:420741,355205,126483 -k3723,194:32583029,45706769:-420741 -) -) -] -(3723,194:32583029,45706769:0,0,0 -g3723,194:32583029,45706769 -) -) -] -(3723,194:6630773,47279633:25952256,0,0 -h3723,194:6630773,47279633:25952256,0,0 -) -] -(3723,194:4262630,4025873:0,0,0 -[3723,194:-473656,4025873:0,0,0 -(3723,194:-473656,-710413:0,0,0 -(3723,194:-473656,-710413:0,0,0 -g3723,194:-473656,-710413 -) -g3723,194:-473656,-710413 +g3764,186:-473656,-710413 ) ] -) +) ] -!22321 -}443 +!21640 +}425 !12 -{444 -[3723,292:4262630,47279633:28320399,43253760,0 -(3723,292:4262630,4025873:0,0,0 -[3723,292:-473656,4025873:0,0,0 -(3723,292:-473656,-710413:0,0,0 -(3723,292:-473656,-644877:0,0,0 -k3723,292:-473656,-644877:-65536 +{426 +[3764,281:4262630,47279633:28320399,43253760,0 +(3764,281:4262630,4025873:0,0,0 +[3764,281:-473656,4025873:0,0,0 +(3764,281:-473656,-710413:0,0,0 +(3764,281:-473656,-644877:0,0,0 +k3764,281:-473656,-644877:-65536 ) -(3723,292:-473656,4736287:0,0,0 -k3723,292:-473656,4736287:5209943 +(3764,281:-473656,4736287:0,0,0 +k3764,281:-473656,4736287:5209943 ) -g3723,292:-473656,-710413 +g3764,281:-473656,-710413 ) ] ) -[3723,292:6630773,47279633:25952256,43253760,0 -[3723,292:6630773,4812305:25952256,786432,0 -(3723,292:6630773,4812305:25952256,513147,126483 -(3723,292:6630773,4812305:25952256,513147,126483 -g3723,292:3078558,4812305 -[3723,292:3078558,4812305:0,0,0 -(3723,292:3078558,2439708:0,1703936,0 -k3723,292:1358238,2439708:-1720320 -(3723,1:1358238,2439708:1720320,1703936,0 -(3723,1:1358238,2439708:1179648,16384,0 -r3723,292:2537886,2439708:1179648,16384,0 +[3764,281:6630773,47279633:25952256,43253760,0 +[3764,281:6630773,4812305:25952256,786432,0 +(3764,281:6630773,4812305:25952256,513147,126483 +(3764,281:6630773,4812305:25952256,513147,126483 +g3764,281:3078558,4812305 +[3764,281:3078558,4812305:0,0,0 +(3764,281:3078558,2439708:0,1703936,0 +k3764,281:1358238,2439708:-1720320 +(3764,1:1358238,2439708:1720320,1703936,0 +(3764,1:1358238,2439708:1179648,16384,0 +r3764,281:2537886,2439708:1179648,16384,0 ) -g3723,1:3062174,2439708 -(3723,1:3062174,2439708:16384,1703936,0 -[3723,1:3062174,2439708:25952256,1703936,0 -(3723,1:3062174,1915420:25952256,1179648,0 -(3723,1:3062174,1915420:16384,1179648,0 -r3723,292:3078558,1915420:16384,1179648,0 +g3764,1:3062174,2439708 +(3764,1:3062174,2439708:16384,1703936,0 +[3764,1:3062174,2439708:25952256,1703936,0 +(3764,1:3062174,1915420:25952256,1179648,0 +(3764,1:3062174,1915420:16384,1179648,0 +r3764,281:3078558,1915420:16384,1179648,0 ) -k3723,1:29014430,1915420:25935872 -g3723,1:29014430,1915420 +k3764,1:29014430,1915420:25935872 +g3764,1:29014430,1915420 ) ] ) ) ) ] -[3723,292:3078558,4812305:0,0,0 -(3723,292:3078558,2439708:0,1703936,0 -g3723,292:29030814,2439708 -g3723,292:36135244,2439708 -(3723,1:36135244,2439708:1720320,1703936,0 -(3723,1:36135244,2439708:16384,1703936,0 -[3723,1:36135244,2439708:25952256,1703936,0 -(3723,1:36135244,1915420:25952256,1179648,0 -(3723,1:36135244,1915420:16384,1179648,0 -r3723,292:36151628,1915420:16384,1179648,0 +[3764,281:3078558,4812305:0,0,0 +(3764,281:3078558,2439708:0,1703936,0 +g3764,281:29030814,2439708 +g3764,281:36135244,2439708 +(3764,1:36135244,2439708:1720320,1703936,0 +(3764,1:36135244,2439708:16384,1703936,0 +[3764,1:36135244,2439708:25952256,1703936,0 +(3764,1:36135244,1915420:25952256,1179648,0 +(3764,1:36135244,1915420:16384,1179648,0 +r3764,281:36151628,1915420:16384,1179648,0 ) -k3723,1:62087500,1915420:25935872 -g3723,1:62087500,1915420 +k3764,1:62087500,1915420:25935872 +g3764,1:62087500,1915420 ) ] ) -g3723,1:36675916,2439708 -(3723,1:36675916,2439708:1179648,16384,0 -r3723,292:37855564,2439708:1179648,16384,0 +g3764,1:36675916,2439708 +(3764,1:36675916,2439708:1179648,16384,0 +r3764,281:37855564,2439708:1179648,16384,0 ) ) -k3723,292:3078556,2439708:-34777008 +k3764,281:3078556,2439708:-34777008 ) ] -[3723,292:3078558,4812305:0,0,0 -(3723,292:3078558,49800853:0,16384,2228224 -k3723,292:1358238,49800853:-1720320 -(3723,1:1358238,49800853:1720320,16384,2228224 -(3723,1:1358238,49800853:1179648,16384,0 -r3723,292:2537886,49800853:1179648,16384,0 +[3764,281:3078558,4812305:0,0,0 +(3764,281:3078558,49800853:0,16384,2228224 +k3764,281:1358238,49800853:-1720320 +(3764,1:1358238,49800853:1720320,16384,2228224 +(3764,1:1358238,49800853:1179648,16384,0 +r3764,281:2537886,49800853:1179648,16384,0 ) -g3723,1:3062174,49800853 -(3723,1:3062174,52029077:16384,1703936,0 -[3723,1:3062174,52029077:25952256,1703936,0 -(3723,1:3062174,51504789:25952256,1179648,0 -(3723,1:3062174,51504789:16384,1179648,0 -r3723,292:3078558,51504789:16384,1179648,0 +g3764,1:3062174,49800853 +(3764,1:3062174,52029077:16384,1703936,0 +[3764,1:3062174,52029077:25952256,1703936,0 +(3764,1:3062174,51504789:25952256,1179648,0 +(3764,1:3062174,51504789:16384,1179648,0 +r3764,281:3078558,51504789:16384,1179648,0 ) -k3723,1:29014430,51504789:25935872 -g3723,1:29014430,51504789 +k3764,1:29014430,51504789:25935872 +g3764,1:29014430,51504789 ) ] ) ) ) ] -[3723,292:3078558,4812305:0,0,0 -(3723,292:3078558,49800853:0,16384,2228224 -g3723,292:29030814,49800853 -g3723,292:36135244,49800853 -(3723,1:36135244,49800853:1720320,16384,2228224 -(3723,1:36135244,52029077:16384,1703936,0 -[3723,1:36135244,52029077:25952256,1703936,0 -(3723,1:36135244,51504789:25952256,1179648,0 -(3723,1:36135244,51504789:16384,1179648,0 -r3723,292:36151628,51504789:16384,1179648,0 +[3764,281:3078558,4812305:0,0,0 +(3764,281:3078558,49800853:0,16384,2228224 +g3764,281:29030814,49800853 +g3764,281:36135244,49800853 +(3764,1:36135244,49800853:1720320,16384,2228224 +(3764,1:36135244,52029077:16384,1703936,0 +[3764,1:36135244,52029077:25952256,1703936,0 +(3764,1:36135244,51504789:25952256,1179648,0 +(3764,1:36135244,51504789:16384,1179648,0 +r3764,281:36151628,51504789:16384,1179648,0 ) -k3723,1:62087500,51504789:25935872 -g3723,1:62087500,51504789 +k3764,1:62087500,51504789:25935872 +g3764,1:62087500,51504789 ) ] ) -g3723,1:36675916,49800853 -(3723,1:36675916,49800853:1179648,16384,0 -r3723,292:37855564,49800853:1179648,16384,0 +g3764,1:36675916,49800853 +(3764,1:36675916,49800853:1179648,16384,0 +r3764,281:37855564,49800853:1179648,16384,0 ) ) -k3723,292:3078556,49800853:-34777008 +k3764,281:3078556,49800853:-34777008 ) ] -g3723,292:6630773,4812305 -g3723,292:6630773,4812305 -g3723,292:10190688,4812305 -g3723,292:12088610,4812305 -g3723,292:12903877,4812305 -g3723,292:13517294,4812305 -g3723,292:15860861,4812305 -k3723,292:31387652,4812305:15526791 -) -) -] -[3723,292:6630773,45706769:25952256,40108032,0 -(3723,292:6630773,45706769:25952256,40108032,0 -(3723,292:6630773,45706769:0,0,0 -g3723,292:6630773,45706769 -) -[3723,292:6630773,45706769:25952256,40108032,0 -(3723,292:6630773,45706769:25952256,40108032,134348 -[3723,292:6630773,45706769:11829248,40108032,134348 -(3723,188:6630773,6254097:11829248,513147,134348 -h3723,187:6630773,6254097:0,0,0 -g3723,187:11350675,6254097 -k3723,188:15503037,6254097:2956985 -k3723,188:18460021,6254097:2956984 -) -(3723,189:6630773,7097100:11829248,513147,102891 -h3723,188:6630773,7097100:0,0,0 -g3723,188:10955493,7097100 -k3723,189:15305446,7097100:3154576 -k3723,189:18460021,7097100:3154575 -) -(3723,193:6630773,8620708:11829248,505283,134348 -h3723,192:6630773,8620708:0,0,0 -g3723,192:10165129,8620708 -k3723,193:14910264,8620708:3549758 -k3723,193:18460021,8620708:3549757 -) -(3723,194:6630773,9463710:11829248,505283,134348 -h3723,193:6630773,9463710:0,0,0 -g3723,193:12141039,9463710 -k3723,194:15898219,9463710:2561803 -k3723,194:18460021,9463710:2561802 -) -(3723,195:6630773,10306713:11829248,505283,134348 -h3723,194:6630773,10306713:0,0,0 -g3723,194:11350675,10306713 -g3723,194:12918951,10306713 -k3723,195:16287175,10306713:2172847 -k3723,195:18460021,10306713:2172846 -) -(3723,196:6630773,11149716:11829248,505283,134348 -h3723,195:6630773,11149716:0,0,0 -g3723,195:10955493,11149716 -g3723,195:12523769,11149716 -g3723,195:14092045,11149716 -g3723,195:15660321,11149716 -g3723,195:17228597,11149716 -k3723,196:18441998,11149716:18024 -k3723,196:18460021,11149716:18023 -) -(3723,197:6630773,11992719:11829248,505283,134348 -h3723,196:6630773,11992719:0,0,0 -g3723,196:11745857,11992719 -k3723,197:15700628,11992719:2759394 -k3723,197:18460021,11992719:2759393 -) -(3723,198:6630773,12835721:11829248,505283,134348 -h3723,197:6630773,12835721:0,0,0 -g3723,197:12536221,12835721 -k3723,198:16095810,12835721:2364212 -k3723,198:18460021,12835721:2364211 -) -(3723,199:6630773,13678724:11829248,505283,134348 -h3723,198:6630773,13678724:0,0,0 -g3723,198:10955493,13678724 -g3723,198:12523769,13678724 -g3723,198:14092045,13678724 -k3723,199:16873722,13678724:1586300 -k3723,199:18460021,13678724:1586299 -) -(3723,200:6630773,14521727:11829248,505283,134348 -h3723,199:6630773,14521727:0,0,0 -g3723,199:11745857,14521727 -k3723,200:15700628,14521727:2759394 -k3723,200:18460021,14521727:2759393 -) -(3723,201:6630773,15364730:11829248,505283,134348 -h3723,200:6630773,15364730:0,0,0 -g3723,200:12536221,15364730 -k3723,201:16095810,15364730:2364212 -k3723,201:18460021,15364730:2364211 -) -(3723,202:6630773,16207732:11829248,505283,134348 -h3723,201:6630773,16207732:0,0,0 -g3723,201:13721768,16207732 -k3723,202:16688583,16207732:1771438 -k3723,202:18460021,16207732:1771438 -) -(3723,203:6630773,17050735:11829248,505283,134348 -h3723,202:6630773,17050735:0,0,0 -g3723,202:12931403,17050735 -g3723,202:14499679,17050735 -k3723,203:17077539,17050735:1382483 -k3723,203:18460021,17050735:1382482 -) -(3723,204:6630773,17893738:11829248,505283,134348 -h3723,203:6630773,17893738:0,0,0 -g3723,203:11350675,17893738 -g3723,203:12918951,17893738 -k3723,204:16287175,17893738:2172847 -k3723,204:18460021,17893738:2172846 -) -(3723,205:6630773,18736741:11829248,505283,134348 -h3723,204:6630773,18736741:0,0,0 -g3723,204:12931403,18736741 -k3723,205:16293401,18736741:2166621 -k3723,205:18460021,18736741:2166620 -) -(3723,206:6630773,19579743:11829248,505283,134348 -h3723,205:6630773,19579743:0,0,0 -g3723,205:10955493,19579743 -k3723,206:15305446,19579743:3154576 -k3723,206:18460021,19579743:3154575 -) -(3723,207:6630773,20422746:11829248,505283,134348 -h3723,206:6630773,20422746:0,0,0 -g3723,206:13326586,20422746 -g3723,206:14894862,20422746 -k3723,207:17275130,20422746:1184891 -k3723,207:18460021,20422746:1184891 -) -(3723,208:6630773,21265749:11829248,505283,134348 -h3723,207:6630773,21265749:0,0,0 -g3723,207:11745857,21265749 -g3723,207:13314133,21265749 -g3723,207:14882409,21265749 -k3723,208:17268904,21265749:1191118 -k3723,208:18460021,21265749:1191117 -) -(3723,209:6630773,22108751:11829248,505283,134348 -h3723,208:6630773,22108751:0,0,0 -g3723,208:11745857,22108751 -g3723,208:13314133,22108751 -g3723,208:14882409,22108751 -g3723,208:16450685,22108751 -k3723,208:18460021,22108751:640289 -) -(3723,209:9252213,22950239:9207808,485622,11795 -k3723,209:14453806,22950239:4006216 -k3723,209:18460021,22950239:4006215 -) -(3723,210:6630773,23793242:11829248,505283,134348 -h3723,209:6630773,23793242:0,0,0 -g3723,209:13326586,23793242 -k3723,210:16490992,23793242:1969029 -k3723,210:18460021,23793242:1969029 -) -(3723,211:6630773,24636245:11829248,505283,134348 -h3723,210:6630773,24636245:0,0,0 -g3723,210:14116950,24636245 -k3723,211:16886174,24636245:1573847 -k3723,211:18460021,24636245:1573847 -) -(3723,212:6630773,25479248:11829248,505283,134348 -h3723,211:6630773,25479248:0,0,0 -g3723,211:11350675,25479248 -g3723,211:12918951,25479248 -g3723,211:14487227,25479248 -k3723,211:18460021,25479248:2603747 -) -(3723,212:9252213,26320736:9207808,485622,102891 -g3723,211:12343546,26320736 -g3723,211:13911822,26320736 -k3723,212:16783610,26320736:1676411 -k3723,212:18460021,26320736:1676411 -) -(3723,213:6630773,27163738:11829248,505283,134348 -h3723,212:6630773,27163738:0,0,0 -g3723,212:13326586,27163738 -k3723,213:16490992,27163738:1969029 -k3723,213:18460021,27163738:1969029 -) -(3723,214:6630773,28006741:11829248,505283,134348 -h3723,213:6630773,28006741:0,0,0 -g3723,213:11350675,28006741 -g3723,213:12918951,28006741 -k3723,214:16287175,28006741:2172847 -k3723,214:18460021,28006741:2172846 -) -(3723,215:6630773,28849744:11829248,505283,134348 -h3723,214:6630773,28849744:0,0,0 -g3723,214:11350675,28849744 -g3723,214:12918951,28849744 -k3723,215:16287175,28849744:2172847 -k3723,215:18460021,28849744:2172846 -) -(3723,216:6630773,29692747:11829248,505283,134348 -h3723,215:6630773,29692747:0,0,0 -g3723,215:12931403,29692747 -k3723,216:16293401,29692747:2166621 -k3723,216:18460021,29692747:2166620 -) -(3723,218:6630773,30535749:11829248,505283,134348 -h3723,216:6630773,30535749:0,0,0 -g3723,216:11745857,30535749 -g3723,216:13314133,30535749 -g3723,216:14882409,30535749 -k3723,216:18460021,30535749:2208565 -) -(3723,218:9252213,31377237:9207808,485622,102891 -g3723,216:12343546,31377237 -g3723,216:13911822,31377237 -g3723,216:15480098,31377237 -g3723,217:17048374,31377237 -k3723,217:18460021,31377237:42600 -) -(3723,218:9252213,32218725:9207808,485622,102891 -g3723,217:10820489,32218725 -g3723,217:12388765,32218725 -g3723,217:13957041,32218725 -k3723,218:16806220,32218725:1653802 -k3723,218:18460021,32218725:1653801 -) -(3723,219:6630773,33061728:11829248,505283,134348 -h3723,218:6630773,33061728:0,0,0 -g3723,218:12536221,33061728 -k3723,219:16095810,33061728:2364212 -k3723,219:18460021,33061728:2364211 -) -(3723,220:6630773,33904731:11829248,505283,134348 -h3723,219:6630773,33904731:0,0,0 -g3723,219:13721768,33904731 -g3723,219:15290044,33904731 -g3723,219:16858320,33904731 -k3723,220:18256859,33904731:203162 -k3723,220:18460021,33904731:203162 -) -(3723,221:6630773,34747733:11829248,505283,134348 -h3723,220:6630773,34747733:0,0,0 -g3723,220:12536221,34747733 -g3723,220:14104497,34747733 -k3723,221:16879948,34747733:1580074 -k3723,221:18460021,34747733:1580073 -) -(3723,222:6630773,35590736:11829248,505283,134348 -h3723,221:6630773,35590736:0,0,0 -g3723,221:11745857,35590736 -k3723,222:15700628,35590736:2759394 -k3723,222:18460021,35590736:2759393 -) -(3723,223:6630773,36433739:11829248,505283,134348 -h3723,222:6630773,36433739:0,0,0 -g3723,222:11350675,36433739 -k3723,223:15503037,36433739:2956985 -k3723,223:18460021,36433739:2956984 -) -(3723,224:6630773,37276742:11829248,505283,134348 -h3723,223:6630773,37276742:0,0,0 -g3723,223:12141039,37276742 -k3723,224:15898219,37276742:2561803 -k3723,224:18460021,37276742:2561802 -) -(3723,225:6630773,38119744:11829248,505283,134348 -h3723,224:6630773,38119744:0,0,0 -g3723,224:10955493,38119744 -k3723,225:15305446,38119744:3154576 -k3723,225:18460021,38119744:3154575 -) -(3723,226:6630773,38962747:11829248,505283,134348 -h3723,225:6630773,38962747:0,0,0 -g3723,225:12536221,38962747 -k3723,226:16095810,38962747:2364212 -k3723,226:18460021,38962747:2364211 -) -(3723,227:6630773,39805750:11829248,513147,134348 -h3723,226:6630773,39805750:0,0,0 -g3723,226:10560311,39805750 -k3723,227:15107855,39805750:3352167 -k3723,227:18460021,39805750:3352166 -) -(3723,228:6630773,40648753:11829248,513147,134348 -h3723,227:6630773,40648753:0,0,0 -g3723,227:12931403,40648753 -k3723,228:16293401,40648753:2166621 -k3723,228:18460021,40648753:2166620 -) -(3723,229:6630773,41491755:11829248,513147,134348 -h3723,228:6630773,41491755:0,0,0 -g3723,228:12536221,41491755 -k3723,229:16095810,41491755:2364212 -k3723,229:18460021,41491755:2364211 -) -(3723,230:6630773,42334758:11829248,505283,134348 -h3723,229:6630773,42334758:0,0,0 -g3723,229:12141039,42334758 -g3723,229:13709315,42334758 -g3723,229:15277591,42334758 -k3723,230:17466495,42334758:993527 -k3723,230:18460021,42334758:993526 -) -(3723,231:6630773,43177761:11829248,505283,134348 -h3723,230:6630773,43177761:0,0,0 -g3723,230:11745857,43177761 -k3723,231:15700628,43177761:2759394 -k3723,231:18460021,43177761:2759393 -) -(3723,232:6630773,44020764:11829248,505283,134348 -h3723,231:6630773,44020764:0,0,0 -g3723,231:11350675,44020764 -k3723,232:15503037,44020764:2956985 -k3723,232:18460021,44020764:2956984 -) -(3723,233:6630773,44863766:11829248,505283,134348 -h3723,232:6630773,44863766:0,0,0 -g3723,232:11745857,44863766 -k3723,233:16462156,44863766:1997866 -k3723,233:18460021,44863766:1997865 -) -(3723,234:6630773,45706769:11829248,505283,134348 -h3723,233:6630773,45706769:0,0,0 -g3723,233:13326586,45706769 -k3723,234:16490992,45706769:1969029 -k3723,234:18460021,45706769:1969029 -) -] -k3723,292:19606901,45706769:1146880 -r3723,292:19606901,45706769:0,40242380,134348 -k3723,292:20753781,45706769:1146880 -[3723,292:20753781,45706769:11829248,40108032,102891 -(3723,235:20753781,6254097:11829248,505283,134348 -h3723,234:20753781,6254097:0,0,0 -g3723,234:25473683,6254097 -g3723,234:28565016,6254097 -g3723,234:30133292,6254097 -k3723,235:31955849,6254097:627180 -k3723,235:32583029,6254097:627180 -) -(3723,236:20753781,7099096:11829248,505283,134348 -h3723,235:20753781,7099096:0,0,0 -g3723,235:27054411,7099096 -k3723,236:30416409,7099096:2166621 -k3723,236:32583029,7099096:2166620 -) -(3723,237:20753781,7944094:11829248,505283,134348 -h3723,236:20753781,7944094:0,0,0 -g3723,236:27844776,7944094 -k3723,237:30811591,7944094:1771438 -k3723,237:32583029,7944094:1771438 -) -(3723,238:20753781,8789093:11829248,505283,134348 -h3723,237:20753781,8789093:0,0,0 -g3723,237:25473683,8789093 -g3723,237:27041959,8789093 -k3723,238:30410183,8789093:2172847 -k3723,238:32583029,8789093:2172846 -) -(3723,239:20753781,9634091:11829248,505283,134348 -h3723,238:20753781,9634091:0,0,0 -g3723,238:26264047,9634091 -k3723,239:30021227,9634091:2561803 -k3723,239:32583029,9634091:2561802 -) -(3723,240:20753781,10479090:11829248,505283,134348 -h3723,239:20753781,10479090:0,0,0 -g3723,239:25868865,10479090 -g3723,239:27437141,10479090 -g3723,239:29005417,10479090 -k3723,240:31391912,10479090:1191118 -k3723,240:32583029,10479090:1191117 -) -(3723,241:20753781,11324088:11829248,505283,134348 -h3723,240:20753781,11324088:0,0,0 -g3723,240:23102590,11324088 -k3723,241:28440498,11324088:4142531 -k3723,241:32583029,11324088:4142531 -) -(3723,242:20753781,12169087:11829248,505283,134348 -h3723,241:20753781,12169087:0,0,0 -g3723,241:26264047,12169087 -k3723,242:30021227,12169087:2561803 -k3723,242:32583029,12169087:2561802 -) -(3723,243:20753781,13014085:11829248,505283,134348 -h3723,242:20753781,13014085:0,0,0 -g3723,242:24683319,13014085 -g3723,242:26251595,13014085 -k3723,243:30015001,13014085:2568029 -k3723,243:32583029,13014085:2568028 -) -(3723,244:20753781,13859084:11829248,505283,134348 -h3723,243:20753781,13859084:0,0,0 -g3723,243:25868865,13859084 -k3723,244:29823636,13859084:2759394 -k3723,244:32583029,13859084:2759393 -) -(3723,245:20753781,14704083:11829248,505283,134348 -h3723,244:20753781,14704083:0,0,0 -g3723,244:23892955,14704083 -k3723,245:28835681,14704083:3747349 -k3723,245:32583029,14704083:3747348 -) -(3723,246:20753781,15549081:11829248,505283,134348 -h3723,245:20753781,15549081:0,0,0 -g3723,245:24288137,15549081 -g3723,245:25856413,15549081 -g3723,245:27424689,15549081 -g3723,245:28992965,15549081 -k3723,246:31385686,15549081:1197344 -k3723,246:32583029,15549081:1197343 -) -(3723,247:20753781,16394080:11829248,505283,134348 -h3723,246:20753781,16394080:0,0,0 -g3723,246:25868865,16394080 -k3723,247:29823636,16394080:2759394 -k3723,247:32583029,16394080:2759393 -) -(3723,248:20753781,17239078:11829248,505283,134348 -h3723,247:20753781,17239078:0,0,0 -g3723,247:24683319,17239078 -g3723,247:26251595,17239078 -k3723,248:30015001,17239078:2568029 -k3723,248:32583029,17239078:2568028 -) -(3723,249:20753781,18084077:11829248,505283,134348 -h3723,248:20753781,18084077:0,0,0 -g3723,248:22707408,18084077 -k3723,249:28043678,18084077:4539352 -k3723,249:32583029,18084077:4539351 -) -(3723,250:20753781,18929075:11829248,505283,134348 -h3723,249:20753781,18929075:0,0,0 -g3723,249:23102590,18929075 -k3723,250:28440498,18929075:4142531 -k3723,250:32583029,18929075:4142531 -) -(3723,251:20753781,19774074:11829248,505283,134348 -h3723,250:20753781,19774074:0,0,0 -g3723,250:23497773,19774074 -g3723,250:24667590,19774074 -k3723,251:29023769,19774074:3559261 -k3723,251:32583029,19774074:3559260 -) -(3723,252:20753781,20619072:11829248,505283,134348 -h3723,251:20753781,20619072:0,0,0 -g3723,251:23892955,20619072 -g3723,251:25062772,20619072 -k3723,252:29221360,20619072:3361670 -k3723,252:32583029,20619072:3361669 -) -(3723,253:20753781,21464071:11829248,505283,134348 -h3723,252:20753781,21464071:0,0,0 -g3723,252:25078501,21464071 -g3723,252:26646777,21464071 -k3723,253:30212592,21464071:2370438 -k3723,253:32583029,21464071:2370437 -) -(3723,254:20753781,22309069:11829248,505283,134348 -h3723,253:20753781,22309069:0,0,0 -g3723,253:23497773,22309069 -g3723,253:24667590,22309069 -k3723,254:29023769,22309069:3559261 -k3723,254:32583029,22309069:3559260 -) -(3723,258:20753781,23867937:11829248,505283,102891 -h3723,257:20753781,23867937:0,0,0 -g3723,257:23102590,23867937 -k3723,258:28440498,23867937:4142531 -k3723,258:32583029,23867937:4142531 -) -(3723,259:20753781,24712935:11829248,505283,102891 -h3723,258:20753781,24712935:0,0,0 -g3723,258:24288137,24712935 -g3723,258:25856413,24712935 -k3723,259:29817410,24712935:2765620 -k3723,259:32583029,24712935:2765619 -) -(3723,260:20753781,25557934:11829248,505283,126483 -h3723,259:20753781,25557934:0,0,0 -g3723,259:23497773,25557934 -k3723,260:28438860,25557934:4144169 -k3723,260:32583029,25557934:4144169 -) -(3723,264:20753781,27116801:11829248,505283,102891 -h3723,263:20753781,27116801:0,0,0 -g3723,263:22312226,27116801 -g3723,263:23880502,27116801 -g3723,263:25448778,27116801 -g3723,263:27017054,27116801 -g3723,263:28585330,27116801 -k3723,264:31181868,27116801:1401161 -k3723,264:32583029,27116801:1401161 -) -(3723,265:20753781,27961799:11829248,505283,102891 -h3723,264:20753781,27961799:0,0,0 -g3723,264:25473683,27961799 -k3723,265:29626045,27961799:2956985 -k3723,265:32583029,27961799:2956984 -) -(3723,266:20753781,28806798:11829248,513147,102891 -h3723,265:20753781,28806798:0,0,0 -g3723,265:21939327,28806798 -g3723,265:23102590,28806798 -g3723,265:24670866,28806798 -k3723,266:29224636,28806798:3358393 -k3723,266:32583029,28806798:3358393 -) -(3723,267:20753781,29651797:11829248,513147,102891 -h3723,266:20753781,29651797:0,0,0 -g3723,266:21939327,29651797 -g3723,266:23124873,29651797 -g3723,266:23915237,29651797 -g3723,266:25868864,29651797 -g3723,266:27437140,29651797 -k3723,267:30607773,29651797:1975256 -k3723,267:32583029,29651797:1975256 -) -(3723,268:20753781,30496795:11829248,513147,102891 -h3723,267:20753781,30496795:0,0,0 -g3723,267:22707408,30496795 -k3723,268:28242907,30496795:4340122 -k3723,268:32583029,30496795:4340122 -) -(3723,269:20753781,31341794:11829248,513147,102891 -h3723,268:20753781,31341794:0,0,0 -g3723,268:24288137,31341794 -k3723,269:29794800,31341794:2788230 -k3723,269:32583029,31341794:2788229 -) -(3723,270:20753781,32186792:11829248,513147,102891 -h3723,269:20753781,32186792:0,0,0 -g3723,269:22312226,32186792 -g3723,269:23482043,32186792 -k3723,270:28430995,32186792:4152034 -k3723,270:32583029,32186792:4152034 -) -(3723,271:20753781,33031791:11829248,505283,102891 -h3723,270:20753781,33031791:0,0,0 -g3723,270:25078501,33031791 -g3723,270:26248318,33031791 -k3723,271:30013362,33031791:2569667 -k3723,271:32583029,33031791:2569667 -) -(3723,272:20753781,33876789:11829248,505283,134348 -h3723,271:20753781,33876789:0,0,0 -g3723,271:25868865,33876789 -k3723,272:29823636,33876789:2759394 -k3723,272:32583029,33876789:2759393 -) -(3723,273:20753781,34721788:11829248,485622,126483 -h3723,272:20753781,34721788:0,0,0 -g3723,272:25868865,34721788 -g3723,272:27437141,34721788 -k3723,273:30607774,34721788:1975256 -k3723,273:32583029,34721788:1975255 -) -(3723,274:20753781,35566786:11829248,505283,134348 -h3723,273:20753781,35566786:0,0,0 -g3723,273:28239958,35566786 -k3723,274:31009182,35566786:1573847 -k3723,274:32583029,35566786:1573847 -) -(3723,275:20753781,36411785:11829248,505283,134348 -h3723,274:20753781,36411785:0,0,0 -g3723,274:23892955,36411785 -g3723,274:25062772,36411785 -g3723,274:26232589,36411785 -g3723,274:28527004,36411785 -k3723,275:30953476,36411785:1629554 -k3723,275:32583029,36411785:1629553 -) -(3723,276:20753781,37256783:11829248,505283,102891 -h3723,275:20753781,37256783:0,0,0 -g3723,275:26264047,37256783 -k3723,276:30021227,37256783:2561803 -k3723,276:32583029,37256783:2561802 -) -(3723,277:20753781,38101782:11829248,505283,102891 -h3723,276:20753781,38101782:0,0,0 -g3723,276:22707408,38101782 -g3723,276:24275684,38101782 -k3723,277:29027045,38101782:3555984 -k3723,277:32583029,38101782:3555984 -) -(3723,278:20753781,38946781:11829248,505283,126483 -h3723,277:20753781,38946781:0,0,0 -g3723,277:25078501,38946781 -k3723,278:29229224,38946781:3353805 -k3723,278:32583029,38946781:3353805 -) -(3723,279:20753781,39791779:11829248,505283,102891 -h3723,278:20753781,39791779:0,0,0 -g3723,278:26659229,39791779 -k3723,279:30019588,39791779:2563441 -k3723,279:32583029,39791779:2563441 -) -(3723,280:20753781,40636778:11829248,505283,102891 -h3723,279:20753781,40636778:0,0,0 -g3723,279:25868865,40636778 -k3723,280:29624406,40636778:2958623 -k3723,280:32583029,40636778:2958623 -) -(3723,281:20753781,41481776:11829248,505283,126483 -h3723,280:20753781,41481776:0,0,0 -g3723,280:27449594,41481776 -g3723,280:29017870,41481776 -k3723,281:31398138,41481776:1184891 -k3723,281:32583029,41481776:1184891 -) -(3723,282:20753781,42326775:11829248,505283,134348 -h3723,281:20753781,42326775:0,0,0 -g3723,281:25868865,42326775 -k3723,282:29624406,42326775:2958623 -k3723,282:32583029,42326775:2958623 -) -(3723,283:20753781,43171773:11829248,505283,102891 -h3723,282:20753781,43171773:0,0,0 -g3723,282:25473683,43171773 -k3723,283:29426815,43171773:3156214 -k3723,283:32583029,43171773:3156214 -) -(3723,284:20753781,44016772:11829248,505283,102891 -h3723,283:20753781,44016772:0,0,0 -g3723,283:23892955,44016772 -g3723,283:25062772,44016772 -k3723,284:29221360,44016772:3361670 -k3723,284:32583029,44016772:3361669 -) -(3723,285:20753781,44861770:11829248,505283,102891 -h3723,284:20753781,44861770:0,0,0 -g3723,284:25868865,44861770 -g3723,284:27038682,44861770 -k3723,285:30209315,44861770:2373715 -k3723,285:32583029,44861770:2373714 -) -(3723,286:20753781,45706769:11829248,505283,102891 -h3723,285:20753781,45706769:0,0,0 -g3723,285:25473683,45706769 -k3723,286:29626045,45706769:2956985 -k3723,286:32583029,45706769:2956984 -) -] -(3723,292:32583029,45706769:0,355205,126483 -h3723,292:32583029,45706769:420741,355205,126483 -k3723,292:32583029,45706769:-420741 -) -) -] -(3723,292:32583029,45706769:0,0,0 -g3723,292:32583029,45706769 -) -) -] -(3723,292:6630773,47279633:25952256,0,0 -h3723,292:6630773,47279633:25952256,0,0 +g3764,281:6630773,4812305 +g3764,281:6630773,4812305 +g3764,281:10190688,4812305 +g3764,281:12088610,4812305 +g3764,281:12903877,4812305 +g3764,281:13517294,4812305 +g3764,281:15860861,4812305 +k3764,281:31387652,4812305:15526791 +) +) +] +[3764,281:6630773,45706769:25952256,40108032,0 +(3764,281:6630773,45706769:25952256,40108032,0 +(3764,281:6630773,45706769:0,0,0 +g3764,281:6630773,45706769 +) +[3764,281:6630773,45706769:25952256,40108032,0 +(3764,281:6630773,45706769:25952256,40108032,141066 +[3764,281:6630773,45706769:11829248,40108032,141066 +(3764,183:6630773,6254097:11829248,538806,102891 +h3764,182:6630773,6254097:0,0,0 +g3764,182:8248499,6254097 +g3764,182:11339832,6254097 +g3764,182:12908108,6254097 +k3764,183:16281753,6254097:2178268 +k3764,183:18460021,6254097:2178268 +) +(3764,184:6630773,7132126:11829248,538806,102891 +h3764,183:6630773,7132126:0,0,0 +g3764,183:10323211,7132126 +g3764,183:11493028,7132126 +g3764,183:12662845,7132126 +g3764,183:14231121,7132126 +k3764,184:16943260,7132126:1516762 +k3764,184:18460021,7132126:1516761 +) +(3764,185:6630773,8010156:11829248,538806,102891 +h3764,184:6630773,8010156:0,0,0 +g3764,184:9908269,8010156 +g3764,184:11476545,8010156 +k3764,185:15565972,8010156:2894050 +k3764,185:18460021,8010156:2894049 +) +(3764,186:6630773,8888185:11829248,538806,102891 +h3764,185:6630773,8888185:0,0,0 +g3764,185:11153096,8888185 +k3764,186:15404247,8888185:3055774 +k3764,186:18460021,8888185:3055774 +) +(3764,187:6630773,9766214:11829248,538806,141066 +h3764,186:6630773,9766214:0,0,0 +g3764,186:11568039,9766214 +k3764,187:15611719,9766214:2848303 +k3764,187:18460021,9766214:2848302 +) +(3764,188:6630773,10644244:11829248,538806,102891 +h3764,187:6630773,10644244:0,0,0 +g3764,187:11153096,10644244 +k3764,188:15404247,10644244:3055774 +k3764,188:18460021,10644244:3055774 +) +(3764,192:6630773,12393453:11829248,530548,141066 +h3764,191:6630773,12393453:0,0,0 +g3764,191:10323211,12393453 +k3764,192:14989305,12393453:3470717 +k3764,192:18460021,12393453:3470716 +) +(3764,193:6630773,13271482:11829248,530548,141066 +h3764,192:6630773,13271482:0,0,0 +g3764,192:12397924,13271482 +k3764,193:16026661,13271482:2433360 +k3764,193:18460021,13271482:2433360 +) +(3764,194:6630773,14149511:11829248,530548,141066 +h3764,193:6630773,14149511:0,0,0 +g3764,193:11568039,14149511 +g3764,193:13136315,14149511 +k3764,194:16395857,14149511:2064165 +k3764,194:18460021,14149511:2064164 +) +(3764,195:6630773,15027540:11829248,530548,141066 +h3764,194:6630773,15027540:0,0,0 +g3764,194:11153096,15027540 +g3764,194:12721372,15027540 +g3764,194:14289648,15027540 +g3764,194:15857924,15027540 +k3764,194:18460021,15027540:1233050 +) +(3764,195:9252213,15892620:9207808,485622,11795 +k3764,195:14453806,15892620:4006216 +k3764,195:18460021,15892620:4006215 +) +(3764,196:6630773,16770650:11829248,530548,141066 +h3764,195:6630773,16770650:0,0,0 +g3764,195:11982981,16770650 +k3764,196:15819190,16770650:2640832 +k3764,196:18460021,16770650:2640831 +) +(3764,197:6630773,17648679:11829248,530548,141066 +h3764,196:6630773,17648679:0,0,0 +g3764,196:12812866,17648679 +k3764,197:16234132,17648679:2225889 +k3764,197:18460021,17648679:2225889 +) +(3764,198:6630773,18526708:11829248,530548,141066 +h3764,197:6630773,18526708:0,0,0 +g3764,197:11153096,18526708 +g3764,197:14244429,18526708 +k3764,198:16949914,18526708:1510108 +k3764,198:18460021,18526708:1510107 +) +(3764,199:6630773,19404738:11829248,530548,141066 +h3764,198:6630773,19404738:0,0,0 +g3764,198:11982981,19404738 +k3764,199:15819190,19404738:2640832 +k3764,199:18460021,19404738:2640831 +) +(3764,200:6630773,20282767:11829248,530548,141066 +h3764,199:6630773,20282767:0,0,0 +g3764,199:12812866,20282767 +k3764,200:16234132,20282767:2225889 +k3764,200:18460021,20282767:2225889 +) +(3764,201:6630773,21160796:11829248,530548,141066 +h3764,200:6630773,21160796:0,0,0 +g3764,200:14057693,21160796 +k3764,201:16856546,21160796:1603476 +k3764,201:18460021,21160796:1603475 +) +(3764,202:6630773,22038826:11829248,530548,141066 +h3764,201:6630773,22038826:0,0,0 +g3764,201:13227808,22038826 +g3764,201:14796084,22038826 +k3764,202:17225741,22038826:1234280 +k3764,202:18460021,22038826:1234280 +) +(3764,203:6630773,22916855:11829248,530548,141066 +h3764,202:6630773,22916855:0,0,0 +g3764,202:11568039,22916855 +g3764,202:13136315,22916855 +k3764,203:16395857,22916855:2064165 +k3764,203:18460021,22916855:2064164 +) +(3764,204:6630773,23794884:11829248,530548,141066 +h3764,203:6630773,23794884:0,0,0 +g3764,203:13227808,23794884 +k3764,204:16441603,23794884:2018418 +k3764,204:18460021,23794884:2018418 +) +(3764,205:6630773,24672914:11829248,530548,141066 +h3764,204:6630773,24672914:0,0,0 +g3764,204:11153096,24672914 +k3764,205:15404247,24672914:3055774 +k3764,205:18460021,24672914:3055774 +) +(3764,206:6630773,25550943:11829248,530548,141066 +h3764,205:6630773,25550943:0,0,0 +g3764,205:13642751,25550943 +g3764,205:15211027,25550943 +k3764,206:17433213,25550943:1026809 +k3764,206:18460021,25550943:1026808 +) +(3764,207:6630773,26428972:11829248,530548,141066 +h3764,206:6630773,26428972:0,0,0 +g3764,206:11982981,26428972 +g3764,206:13551257,26428972 +g3764,206:15119533,26428972 +k3764,207:17387466,26428972:1072556 +k3764,207:18460021,26428972:1072555 +) +(3764,208:6630773,27307001:11829248,530548,141066 +h3764,207:6630773,27307001:0,0,0 +g3764,207:11982981,27307001 +g3764,207:15074314,27307001 +g3764,207:16642590,27307001 +k3764,208:18148994,27307001:311027 +k3764,208:18460021,27307001:311027 +) +(3764,209:6630773,28185031:11829248,530548,141066 +h3764,208:6630773,28185031:0,0,0 +g3764,208:13642751,28185031 +k3764,209:16649075,28185031:1810947 +k3764,209:18460021,28185031:1810946 +) +(3764,210:6630773,29063060:11829248,530548,141066 +h3764,209:6630773,29063060:0,0,0 +g3764,209:14472635,29063060 +k3764,210:17064017,29063060:1396005 +k3764,210:18460021,29063060:1396004 +) +(3764,211:6630773,29941089:11829248,530548,141066 +h3764,210:6630773,29941089:0,0,0 +g3764,210:11568039,29941089 +g3764,210:13136315,29941089 +g3764,210:14704591,29941089 +g3764,210:16272867,29941089 +k3764,210:18460021,29941089:818107 +) +(3764,211:9252213,30806169:9207808,485622,102891 +g3764,210:10820489,30806169 +g3764,210:12388765,30806169 +k3764,211:16022082,30806169:2437940 +k3764,211:18460021,30806169:2437939 +) +(3764,212:6630773,31684199:11829248,530548,141066 +h3764,211:6630773,31684199:0,0,0 +g3764,211:13642751,31684199 +k3764,212:16649075,31684199:1810947 +k3764,212:18460021,31684199:1810946 +) +(3764,213:6630773,32562228:11829248,530548,141066 +h3764,212:6630773,32562228:0,0,0 +g3764,212:11568039,32562228 +g3764,212:13136315,32562228 +k3764,213:16395857,32562228:2064165 +k3764,213:18460021,32562228:2064164 +) +(3764,214:6630773,33440257:11829248,530548,141066 +h3764,213:6630773,33440257:0,0,0 +g3764,213:11568039,33440257 +g3764,213:13136315,33440257 +k3764,214:16395857,33440257:2064165 +k3764,214:18460021,33440257:2064164 +) +(3764,215:6630773,34318287:11829248,530548,141066 +h3764,214:6630773,34318287:0,0,0 +g3764,214:13227808,34318287 +k3764,215:16441603,34318287:2018418 +k3764,215:18460021,34318287:2018418 +) +(3764,217:6630773,35196316:11829248,530548,141066 +h3764,215:6630773,35196316:0,0,0 +g3764,215:11982981,35196316 +g3764,215:13551257,35196316 +g3764,215:15119533,35196316 +g3764,215:16687809,35196316 +k3764,215:18460021,35196316:403165 +) +(3764,217:9252213,36061396:9207808,485622,102891 +k3764,215:10819965,36061396:198705 +k3764,215:12387717,36061396:198705 +k3764,215:13955470,36061396:198706 +k3764,216:15523222,36061396:198705 +k3764,216:17090974,36061396:198705 +k3764,216:18460021,36061396:0 +) +(3764,217:9252213,36926476:9207808,485622,102891 +g3764,216:10820489,36926476 +g3764,216:12388765,36926476 +k3764,217:16022082,36926476:2437940 +k3764,217:18460021,36926476:2437939 +) +(3764,218:6630773,37804505:11829248,530548,141066 +h3764,217:6630773,37804505:0,0,0 +g3764,217:12812866,37804505 +k3764,218:16234132,37804505:2225889 +k3764,218:18460021,37804505:2225889 +) +(3764,219:6630773,38682535:11829248,530548,141066 +h3764,218:6630773,38682535:0,0,0 +g3764,218:14057693,38682535 +g3764,218:15625969,38682535 +g3764,218:17194245,38682535 +k3764,219:18424822,38682535:35200 +k3764,219:18460021,38682535:35199 +) +(3764,220:6630773,39560564:11829248,530548,141066 +h3764,219:6630773,39560564:0,0,0 +g3764,219:12812866,39560564 +g3764,219:14381142,39560564 +k3764,220:17018270,39560564:1441751 +k3764,220:18460021,39560564:1441751 +) +(3764,221:6630773,40438593:11829248,530548,141066 +h3764,220:6630773,40438593:0,0,0 +g3764,220:11982981,40438593 +k3764,221:15819190,40438593:2640832 +k3764,221:18460021,40438593:2640831 +) +(3764,222:6630773,41316622:11829248,530548,141066 +h3764,221:6630773,41316622:0,0,0 +g3764,221:11568039,41316622 +k3764,222:15611719,41316622:2848303 +k3764,222:18460021,41316622:2848302 +) +(3764,223:6630773,42194652:11829248,530548,141066 +h3764,222:6630773,42194652:0,0,0 +g3764,222:12397924,42194652 +k3764,223:16026661,42194652:2433360 +k3764,223:18460021,42194652:2433360 +) +(3764,224:6630773,43072681:11829248,530548,141066 +h3764,223:6630773,43072681:0,0,0 +g3764,223:11153096,43072681 +k3764,224:15404247,43072681:3055774 +k3764,224:18460021,43072681:3055774 +) +(3764,225:6630773,43950710:11829248,530548,141066 +h3764,224:6630773,43950710:0,0,0 +g3764,224:12812866,43950710 +g3764,224:14381142,43950710 +k3764,225:17018270,43950710:1441751 +k3764,225:18460021,43950710:1441751 +) +(3764,226:6630773,44828740:11829248,538806,141066 +h3764,225:6630773,44828740:0,0,0 +g3764,225:10738154,44828740 +k3764,226:15196776,44828740:3263245 +k3764,226:18460021,44828740:3263245 +) +(3764,227:6630773,45706769:11829248,538806,141066 +h3764,226:6630773,45706769:0,0,0 +g3764,226:13227808,45706769 +k3764,227:16441603,45706769:2018418 +k3764,227:18460021,45706769:2018418 +) +] +k3764,281:19606901,45706769:1146880 +r3764,281:19606901,45706769:0,40249098,141066 +k3764,281:20753781,45706769:1146880 +[3764,281:20753781,45706769:11829248,40108032,132808 +(3764,228:20753781,6254097:11829248,538806,141066 +h3764,227:20753781,6254097:0,0,0 +g3764,227:26935874,6254097 +k3764,228:30357140,6254097:2225889 +k3764,228:32583029,6254097:2225889 +) +(3764,229:20753781,7120204:11829248,530548,141066 +h3764,228:20753781,7120204:0,0,0 +g3764,228:26520932,7120204 +g3764,228:28089208,7120204 +g3764,228:29657484,7120204 +k3764,229:31717945,7120204:865084 +k3764,229:32583029,7120204:865084 +) +(3764,230:20753781,7986312:11829248,530548,141066 +h3764,229:20753781,7986312:0,0,0 +g3764,229:26105989,7986312 +k3764,230:29942198,7986312:2640832 +k3764,230:32583029,7986312:2640831 +) +(3764,231:20753781,8852419:11829248,530548,141066 +h3764,230:20753781,8852419:0,0,0 +g3764,230:25691047,8852419 +k3764,231:29734727,8852419:2848303 +k3764,231:32583029,8852419:2848302 +) +(3764,232:20753781,9718527:11829248,530548,141066 +h3764,231:20753781,9718527:0,0,0 +g3764,231:26105989,9718527 +k3764,232:30703726,9718527:1879304 +k3764,232:32583029,9718527:1879303 +) +(3764,233:20753781,10584634:11829248,530548,141066 +h3764,232:20753781,10584634:0,0,0 +g3764,232:27765759,10584634 +k3764,233:30772083,10584634:1810947 +k3764,233:32583029,10584634:1810946 +) +(3764,234:20753781,11450742:11829248,530548,141066 +h3764,233:20753781,11450742:0,0,0 +g3764,233:25691047,11450742 +g3764,233:28782380,11450742 +g3764,233:30350656,11450742 +k3764,233:32583029,11450742:863326 +) +(3764,234:23375221,12315822:9207808,485622,11795 +k3764,234:28576814,12315822:4006216 +k3764,234:32583029,12315822:4006215 +) +(3764,235:20753781,13181929:11829248,530548,141066 +h3764,234:20753781,13181929:0,0,0 +g3764,234:27350816,13181929 +k3764,235:30564611,13181929:2018418 +k3764,235:32583029,13181929:2018418 +) +(3764,236:20753781,14048037:11829248,530548,141066 +h3764,235:20753781,14048037:0,0,0 +g3764,235:28180701,14048037 +k3764,236:30979554,14048037:1603476 +k3764,236:32583029,14048037:1603475 +) +(3764,237:20753781,14914144:11829248,530548,141066 +h3764,236:20753781,14914144:0,0,0 +g3764,236:25691047,14914144 +g3764,236:27259323,14914144 +k3764,237:30518865,14914144:2064165 +k3764,237:32583029,14914144:2064164 +) +(3764,238:20753781,15780252:11829248,530548,141066 +h3764,237:20753781,15780252:0,0,0 +g3764,237:26520932,15780252 +k3764,238:30149669,15780252:2433360 +k3764,238:32583029,15780252:2433360 +) +(3764,239:20753781,16646359:11829248,530548,141066 +h3764,238:20753781,16646359:0,0,0 +g3764,238:26105989,16646359 +g3764,238:27674265,16646359 +g3764,238:29242541,16646359 +k3764,239:31510474,16646359:1072556 +k3764,239:32583029,16646359:1072555 +) +(3764,240:20753781,17512467:11829248,530548,141066 +h3764,239:20753781,17512467:0,0,0 +g3764,239:23201392,17512467 +g3764,239:24769668,17512467 +k3764,240:29274037,17512467:3308992 +k3764,240:32583029,17512467:3308992 +) +(3764,241:20753781,18378574:11829248,530548,141066 +h3764,240:20753781,18378574:0,0,0 +g3764,240:26520932,18378574 +k3764,241:30149669,18378574:2433360 +k3764,241:32583029,18378574:2433360 +) +(3764,242:20753781,19244682:11829248,530548,141066 +h3764,241:20753781,19244682:0,0,0 +g3764,241:24861162,19244682 +g3764,241:26429438,19244682 +k3764,242:30103922,19244682:2479107 +k3764,242:32583029,19244682:2479107 +) +(3764,243:20753781,20110789:11829248,530548,141066 +h3764,242:20753781,20110789:0,0,0 +g3764,242:26105989,20110789 +k3764,243:29942198,20110789:2640832 +k3764,243:32583029,20110789:2640831 +) +(3764,244:20753781,20976897:11829248,530548,141066 +h3764,243:20753781,20976897:0,0,0 +g3764,243:24031277,20976897 +k3764,244:28904842,20976897:3678188 +k3764,244:32583029,20976897:3678187 +) +(3764,245:20753781,21843004:11829248,530548,141066 +h3764,244:20753781,21843004:0,0,0 +g3764,244:24446219,21843004 +g3764,244:26014495,21843004 +g3764,244:27582771,21843004 +g3764,244:29151047,21843004 +g3764,244:30719323,21843004 +k3764,245:32248865,21843004:334165 +k3764,245:32583029,21843004:334164 +) +(3764,246:20753781,22709112:11829248,530548,141066 +h3764,245:20753781,22709112:0,0,0 +g3764,245:26105989,22709112 +k3764,246:29942198,22709112:2640832 +k3764,246:32583029,22709112:2640831 +) +(3764,247:20753781,23575219:11829248,530548,141066 +h3764,246:20753781,23575219:0,0,0 +g3764,246:24861162,23575219 +g3764,246:26429438,23575219 +k3764,247:30103922,23575219:2479107 +k3764,247:32583029,23575219:2479107 +) +(3764,248:20753781,24441327:11829248,530548,141066 +h3764,247:20753781,24441327:0,0,0 +g3764,247:22786450,24441327 +k3764,248:28083199,24441327:4499831 +k3764,248:32583029,24441327:4499830 +) +(3764,249:20753781,25307434:11829248,530548,141066 +h3764,248:20753781,25307434:0,0,0 +g3764,248:23201392,25307434 +k3764,249:28489899,25307434:4093130 +k3764,249:32583029,25307434:4093130 +) +(3764,250:20753781,26173542:11829248,530548,141066 +h3764,249:20753781,26173542:0,0,0 +g3764,249:23616334,26173542 +g3764,249:24786151,26173542 +k3764,250:29083049,26173542:3499980 +k3764,250:32583029,26173542:3499980 +) +(3764,251:20753781,27039649:11829248,530548,141066 +h3764,250:20753781,27039649:0,0,0 +g3764,250:24031277,27039649 +g3764,250:25201094,27039649 +k3764,251:29290521,27039649:3292509 +k3764,251:32583029,27039649:3292508 +) +(3764,252:20753781,27905757:11829248,530548,141066 +h3764,251:20753781,27905757:0,0,0 +g3764,251:25276104,27905757 +g3764,251:26844380,27905757 +k3764,252:30311393,27905757:2271636 +k3764,252:32583029,27905757:2271636 +) +(3764,253:20753781,28771864:11829248,530548,141066 +h3764,252:20753781,28771864:0,0,0 +g3764,252:23616334,28771864 +g3764,252:24786151,28771864 +k3764,253:29083049,28771864:3499980 +k3764,253:32583029,28771864:3499980 +) +(3764,257:20753781,30310457:11829248,530548,102891 +h3764,256:20753781,30310457:0,0,0 +g3764,256:23201392,30310457 +k3764,257:28489899,30310457:4093130 +k3764,257:32583029,30310457:4093130 +) +(3764,258:20753781,31176564:11829248,530548,102891 +h3764,257:20753781,31176564:0,0,0 +g3764,257:24446219,31176564 +g3764,257:26014495,31176564 +k3764,258:29896451,31176564:2686579 +k3764,258:32583029,31176564:2686578 +) +(3764,259:20753781,32042672:11829248,530548,132808 +h3764,258:20753781,32042672:0,0,0 +g3764,258:23616334,32042672 +g3764,258:24786151,32042672 +k3764,259:29083049,32042672:3499980 +k3764,259:32583029,32042672:3499980 +) +(3764,263:20753781,33581264:11829248,530548,102891 +h3764,262:20753781,33581264:0,0,0 +g3764,262:22371507,33581264 +g3764,262:23541324,33581264 +g3764,262:24711141,33581264 +g3764,262:26279417,33581264 +g3764,262:27847693,33581264 +k3764,263:30813050,33581264:1769980 +k3764,263:32583029,33581264:1769979 +) +(3764,264:20753781,34447372:11829248,530548,102891 +h3764,263:20753781,34447372:0,0,0 +g3764,263:25691047,34447372 +k3764,264:29734727,34447372:2848303 +k3764,264:32583029,34447372:2848302 +) +(3764,265:20753781,35313479:11829248,538806,102891 +h3764,264:20753781,35313479:0,0,0 +g3764,264:21998608,35313479 +g3764,264:23201392,35313479 +g3764,264:24769668,35313479 +k3764,265:29274037,35313479:3308992 +k3764,265:32583029,35313479:3308992 +) +(3764,266:20753781,36179587:11829248,538806,102891 +h3764,265:20753781,36179587:0,0,0 +g3764,265:21998608,36179587 +g3764,265:23243435,36179587 +g3764,265:24073319,36179587 +g3764,265:26105988,36179587 +g3764,265:27674264,36179587 +k3764,266:30726335,36179587:1856694 +k3764,266:32583029,36179587:1856694 +) +(3764,267:20753781,37045694:11829248,538806,102891 +h3764,266:20753781,37045694:0,0,0 +g3764,266:22786450,37045694 +k3764,267:28282428,37045694:4300601 +k3764,267:32583029,37045694:4300601 +) +(3764,268:20753781,37911802:11829248,538806,102891 +h3764,267:20753781,37911802:0,0,0 +g3764,267:24446219,37911802 +k3764,268:29873841,37911802:2709189 +k3764,268:32583029,37911802:2709188 +) +(3764,269:20753781,38777909:11829248,538806,102891 +h3764,268:20753781,38777909:0,0,0 +g3764,268:22371507,38777909 +g3764,268:23541324,38777909 +k3764,269:28460636,38777909:4122394 +k3764,269:32583029,38777909:4122393 +) +(3764,270:20753781,39644017:11829248,530548,102891 +h3764,269:20753781,39644017:0,0,0 +g3764,269:25276104,39644017 +g3764,269:26445921,39644017 +k3764,270:30112164,39644017:2470866 +k3764,270:32583029,39644017:2470865 +) +(3764,271:20753781,40510124:11829248,530548,141066 +h3764,270:20753781,40510124:0,0,0 +g3764,270:26105989,40510124 +k3764,271:29942198,40510124:2640832 +k3764,271:32583029,40510124:2640831 +) +(3764,272:20753781,41376232:11829248,485622,132808 +h3764,271:20753781,41376232:0,0,0 +g3764,271:26105989,41376232 +g3764,271:27674265,41376232 +k3764,272:30726336,41376232:1856694 +k3764,272:32583029,41376232:1856693 +) +(3764,273:20753781,42242339:11829248,530548,141066 +h3764,272:20753781,42242339:0,0,0 +g3764,272:28595643,42242339 +g3764,272:30163919,42242339 +k3764,273:31971163,42242339:611867 +k3764,273:32583029,42242339:611866 +) +(3764,274:20753781,43108447:11829248,530548,141066 +h3764,273:20753781,43108447:0,0,0 +g3764,273:24031277,43108447 +g3764,273:25201094,43108447 +g3764,273:26370911,43108447 +g3764,273:27540728,43108447 +g3764,273:28710545,43108447 +k3764,274:31045246,43108447:1537783 +k3764,274:32583029,43108447:1537783 +) +(3764,275:20753781,43974554:11829248,530548,102891 +h3764,274:20753781,43974554:0,0,0 +g3764,274:26520932,43974554 +k3764,275:30149669,43974554:2433360 +k3764,275:32583029,43974554:2433360 +) +(3764,276:20753781,44840662:11829248,530548,102891 +h3764,275:20753781,44840662:0,0,0 +g3764,275:22786450,44840662 +g3764,275:24354726,44840662 +k3764,276:29066566,44840662:3516463 +k3764,276:32583029,44840662:3516463 +) +(3764,277:20753781,45706769:11829248,530548,132808 +h3764,276:20753781,45706769:0,0,0 +g3764,276:25276104,45706769 +k3764,277:29328026,45706769:3255004 +k3764,277:32583029,45706769:3255003 +) +] +(3764,281:32583029,45706769:0,355205,126483 +h3764,281:32583029,45706769:420741,355205,126483 +k3764,281:32583029,45706769:-420741 +) +) +] +(3764,281:32583029,45706769:0,0,0 +g3764,281:32583029,45706769 +) +) +] +(3764,281:6630773,47279633:25952256,0,0 +h3764,281:6630773,47279633:25952256,0,0 +) +] +(3764,281:4262630,4025873:0,0,0 +[3764,281:-473656,4025873:0,0,0 +(3764,281:-473656,-710413:0,0,0 +(3764,281:-473656,-710413:0,0,0 +g3764,281:-473656,-710413 ) -] -(3723,292:4262630,4025873:0,0,0 -[3723,292:-473656,4025873:0,0,0 -(3723,292:-473656,-710413:0,0,0 -(3723,292:-473656,-710413:0,0,0 -g3723,292:-473656,-710413 -) -g3723,292:-473656,-710413 +g3764,281:-473656,-710413 ) ] ) ] -!22841 -}444 +!22423 +}426 !12 -{445 -[3723,395:4262630,47279633:28320399,43253760,0 -(3723,395:4262630,4025873:0,0,0 -[3723,395:-473656,4025873:0,0,0 -(3723,395:-473656,-710413:0,0,0 -(3723,395:-473656,-644877:0,0,0 -k3723,395:-473656,-644877:-65536 +{427 +[3764,384:4262630,47279633:28320399,43253760,0 +(3764,384:4262630,4025873:0,0,0 +[3764,384:-473656,4025873:0,0,0 +(3764,384:-473656,-710413:0,0,0 +(3764,384:-473656,-644877:0,0,0 +k3764,384:-473656,-644877:-65536 ) -(3723,395:-473656,4736287:0,0,0 -k3723,395:-473656,4736287:5209943 +(3764,384:-473656,4736287:0,0,0 +k3764,384:-473656,4736287:5209943 ) -g3723,395:-473656,-710413 +g3764,384:-473656,-710413 ) ] ) -[3723,395:6630773,47279633:25952256,43253760,0 -[3723,395:6630773,4812305:25952256,786432,0 -(3723,395:6630773,4812305:25952256,513147,126483 -(3723,395:6630773,4812305:25952256,513147,126483 -g3723,395:3078558,4812305 -[3723,395:3078558,4812305:0,0,0 -(3723,395:3078558,2439708:0,1703936,0 -k3723,395:1358238,2439708:-1720320 -(3723,1:1358238,2439708:1720320,1703936,0 -(3723,1:1358238,2439708:1179648,16384,0 -r3723,395:2537886,2439708:1179648,16384,0 +[3764,384:6630773,47279633:25952256,43253760,0 +[3764,384:6630773,4812305:25952256,786432,0 +(3764,384:6630773,4812305:25952256,513147,126483 +(3764,384:6630773,4812305:25952256,513147,126483 +g3764,384:3078558,4812305 +[3764,384:3078558,4812305:0,0,0 +(3764,384:3078558,2439708:0,1703936,0 +k3764,384:1358238,2439708:-1720320 +(3764,1:1358238,2439708:1720320,1703936,0 +(3764,1:1358238,2439708:1179648,16384,0 +r3764,384:2537886,2439708:1179648,16384,0 ) -g3723,1:3062174,2439708 -(3723,1:3062174,2439708:16384,1703936,0 -[3723,1:3062174,2439708:25952256,1703936,0 -(3723,1:3062174,1915420:25952256,1179648,0 -(3723,1:3062174,1915420:16384,1179648,0 -r3723,395:3078558,1915420:16384,1179648,0 +g3764,1:3062174,2439708 +(3764,1:3062174,2439708:16384,1703936,0 +[3764,1:3062174,2439708:25952256,1703936,0 +(3764,1:3062174,1915420:25952256,1179648,0 +(3764,1:3062174,1915420:16384,1179648,0 +r3764,384:3078558,1915420:16384,1179648,0 ) -k3723,1:29014430,1915420:25935872 -g3723,1:29014430,1915420 +k3764,1:29014430,1915420:25935872 +g3764,1:29014430,1915420 ) ] ) ) ) ] -[3723,395:3078558,4812305:0,0,0 -(3723,395:3078558,2439708:0,1703936,0 -g3723,395:29030814,2439708 -g3723,395:36135244,2439708 -(3723,1:36135244,2439708:1720320,1703936,0 -(3723,1:36135244,2439708:16384,1703936,0 -[3723,1:36135244,2439708:25952256,1703936,0 -(3723,1:36135244,1915420:25952256,1179648,0 -(3723,1:36135244,1915420:16384,1179648,0 -r3723,395:36151628,1915420:16384,1179648,0 +[3764,384:3078558,4812305:0,0,0 +(3764,384:3078558,2439708:0,1703936,0 +g3764,384:29030814,2439708 +g3764,384:36135244,2439708 +(3764,1:36135244,2439708:1720320,1703936,0 +(3764,1:36135244,2439708:16384,1703936,0 +[3764,1:36135244,2439708:25952256,1703936,0 +(3764,1:36135244,1915420:25952256,1179648,0 +(3764,1:36135244,1915420:16384,1179648,0 +r3764,384:36151628,1915420:16384,1179648,0 ) -k3723,1:62087500,1915420:25935872 -g3723,1:62087500,1915420 +k3764,1:62087500,1915420:25935872 +g3764,1:62087500,1915420 ) ] ) -g3723,1:36675916,2439708 -(3723,1:36675916,2439708:1179648,16384,0 -r3723,395:37855564,2439708:1179648,16384,0 +g3764,1:36675916,2439708 +(3764,1:36675916,2439708:1179648,16384,0 +r3764,384:37855564,2439708:1179648,16384,0 ) ) -k3723,395:3078556,2439708:-34777008 +k3764,384:3078556,2439708:-34777008 ) ] -[3723,395:3078558,4812305:0,0,0 -(3723,395:3078558,49800853:0,16384,2228224 -k3723,395:1358238,49800853:-1720320 -(3723,1:1358238,49800853:1720320,16384,2228224 -(3723,1:1358238,49800853:1179648,16384,0 -r3723,395:2537886,49800853:1179648,16384,0 +[3764,384:3078558,4812305:0,0,0 +(3764,384:3078558,49800853:0,16384,2228224 +k3764,384:1358238,49800853:-1720320 +(3764,1:1358238,49800853:1720320,16384,2228224 +(3764,1:1358238,49800853:1179648,16384,0 +r3764,384:2537886,49800853:1179648,16384,0 ) -g3723,1:3062174,49800853 -(3723,1:3062174,52029077:16384,1703936,0 -[3723,1:3062174,52029077:25952256,1703936,0 -(3723,1:3062174,51504789:25952256,1179648,0 -(3723,1:3062174,51504789:16384,1179648,0 -r3723,395:3078558,51504789:16384,1179648,0 +g3764,1:3062174,49800853 +(3764,1:3062174,52029077:16384,1703936,0 +[3764,1:3062174,52029077:25952256,1703936,0 +(3764,1:3062174,51504789:25952256,1179648,0 +(3764,1:3062174,51504789:16384,1179648,0 +r3764,384:3078558,51504789:16384,1179648,0 ) -k3723,1:29014430,51504789:25935872 -g3723,1:29014430,51504789 +k3764,1:29014430,51504789:25935872 +g3764,1:29014430,51504789 ) ] ) ) ) ] -[3723,395:3078558,4812305:0,0,0 -(3723,395:3078558,49800853:0,16384,2228224 -g3723,395:29030814,49800853 -g3723,395:36135244,49800853 -(3723,1:36135244,49800853:1720320,16384,2228224 -(3723,1:36135244,52029077:16384,1703936,0 -[3723,1:36135244,52029077:25952256,1703936,0 -(3723,1:36135244,51504789:25952256,1179648,0 -(3723,1:36135244,51504789:16384,1179648,0 -r3723,395:36151628,51504789:16384,1179648,0 +[3764,384:3078558,4812305:0,0,0 +(3764,384:3078558,49800853:0,16384,2228224 +g3764,384:29030814,49800853 +g3764,384:36135244,49800853 +(3764,1:36135244,49800853:1720320,16384,2228224 +(3764,1:36135244,52029077:16384,1703936,0 +[3764,1:36135244,52029077:25952256,1703936,0 +(3764,1:36135244,51504789:25952256,1179648,0 +(3764,1:36135244,51504789:16384,1179648,0 +r3764,384:36151628,51504789:16384,1179648,0 ) -k3723,1:62087500,51504789:25935872 -g3723,1:62087500,51504789 +k3764,1:62087500,51504789:25935872 +g3764,1:62087500,51504789 ) ] ) -g3723,1:36675916,49800853 -(3723,1:36675916,49800853:1179648,16384,0 -r3723,395:37855564,49800853:1179648,16384,0 +g3764,1:36675916,49800853 +(3764,1:36675916,49800853:1179648,16384,0 +r3764,384:37855564,49800853:1179648,16384,0 ) ) -k3723,395:3078556,49800853:-34777008 +k3764,384:3078556,49800853:-34777008 ) ] -g3723,395:6630773,4812305 -k3723,395:23552170,4812305:15726020 -g3723,395:27112085,4812305 -g3723,395:29010007,4812305 -g3723,395:29825274,4812305 -g3723,395:30438691,4812305 -) -) -] -[3723,395:6630773,45706769:25952256,40108032,0 -(3723,395:6630773,45706769:25952256,40108032,0 -(3723,395:6630773,45706769:0,0,0 -g3723,395:6630773,45706769 -) -[3723,395:6630773,45706769:25952256,40108032,0 -(3723,395:6630773,45706769:25952256,40108032,126483 -[3723,395:6630773,45706769:11829248,40108032,102891 -(3723,287:6630773,6254097:11829248,505283,102891 -h3723,286:6630773,6254097:0,0,0 -g3723,286:10165129,6254097 -k3723,287:14910264,6254097:3549758 -k3723,287:18460021,6254097:3549757 -) -(3723,291:6630773,7813766:11829248,505283,126483 -h3723,290:6630773,7813766:0,0,0 -g3723,290:12536221,7813766 -k3723,291:16095810,7813766:2364212 -k3723,291:18460021,7813766:2364211 -) -(3723,292:6630773,8658810:11829248,505283,102891 -h3723,291:6630773,8658810:0,0,0 -g3723,291:11745857,8658810 -k3723,292:15700628,8658810:2759394 -k3723,292:18460021,8658810:2759393 -) -(3723,293:6630773,9503854:11829248,505283,102891 -h3723,292:6630773,9503854:0,0,0 -g3723,292:14116950,9503854 -k3723,293:16886174,9503854:1573847 -k3723,293:18460021,9503854:1573847 -) -(3723,294:6630773,10348898:11829248,505283,102891 -h3723,293:6630773,10348898:0,0,0 -g3723,293:11745857,10348898 -k3723,294:15700628,10348898:2759394 -k3723,294:18460021,10348898:2759393 -) -(3723,295:6630773,11193942:11829248,505283,102891 -h3723,294:6630773,11193942:0,0,0 -g3723,294:9374765,11193942 -g3723,294:10943041,11193942 -k3723,295:15299220,11193942:3160802 -k3723,295:18460021,11193942:3160801 -) -(3723,296:6630773,12038986:11829248,505283,126483 -h3723,295:6630773,12038986:0,0,0 -g3723,295:10165129,12038986 -g3723,295:11733405,12038986 -k3723,296:16455930,12038986:2004092 -k3723,296:18460021,12038986:2004091 -) -(3723,297:6630773,12884030:11829248,513147,134348 -h3723,296:6630773,12884030:0,0,0 -g3723,296:11350675,12884030 -k3723,297:15503037,12884030:2956985 -k3723,297:18460021,12884030:2956984 -) -(3723,298:6630773,13729074:11829248,505283,134348 -h3723,297:6630773,13729074:0,0,0 -g3723,297:10165129,13729074 -g3723,297:11334946,13729074 -g3723,297:12504763,13729074 -g3723,297:13674580,13729074 -g3723,297:15242856,13729074 -k3723,298:17449127,13729074:1010894 -k3723,298:18460021,13729074:1010894 -) -(3723,299:6630773,14574118:11829248,485622,102891 -h3723,298:6630773,14574118:0,0,0 -g3723,298:9769947,14574118 -k3723,299:14513443,14574118:3946578 -k3723,299:18460021,14574118:3946578 -) -(3723,300:6630773,15419162:11829248,505283,102891 -h3723,299:6630773,15419162:0,0,0 -g3723,299:9769947,15419162 -k3723,300:14513443,15419162:3946578 -k3723,300:18460021,15419162:3946578 -) -(3723,301:6630773,16264206:11829248,505283,102891 -h3723,300:6630773,16264206:0,0,0 -g3723,300:10165129,16264206 -g3723,300:11334946,16264206 -g3723,300:12504763,16264206 -k3723,301:16080081,16264206:2379941 -k3723,301:18460021,16264206:2379940 -) -(3723,302:6630773,17109250:11829248,505283,102891 -h3723,301:6630773,17109250:0,0,0 -g3723,301:10955493,17109250 -k3723,302:15305446,17109250:3154576 -k3723,302:18460021,17109250:3154575 -) -(3723,303:6630773,17954293:11829248,505283,126483 -h3723,302:6630773,17954293:0,0,0 -g3723,302:9769947,17954293 -k3723,303:14712673,17954293:3747349 -k3723,303:18460021,17954293:3747348 -) -(3723,304:6630773,18799337:11829248,505283,126483 -h3723,303:6630773,18799337:0,0,0 -g3723,303:10560311,18799337 -g3723,303:12128587,18799337 -g3723,303:13696863,18799337 -k3723,304:16676131,18799337:1783891 -k3723,304:18460021,18799337:1783890 -) -(3723,305:6630773,19644381:11829248,505283,102891 -h3723,304:6630773,19644381:0,0,0 -g3723,304:8584400,19644381 -g3723,304:9754217,19644381 -g3723,304:10924034,19644381 -g3723,304:12492310,19644381 -g3723,304:14060586,19644381 -k3723,305:16857992,19644381:1602029 -k3723,305:18460021,19644381:1602029 -) -(3723,306:6630773,20489425:11829248,505283,102891 -h3723,305:6630773,20489425:0,0,0 -g3723,305:9374765,20489425 -g3723,305:10544582,20489425 -k3723,306:15099990,20489425:3360031 -k3723,306:18460021,20489425:3360031 -) -(3723,307:6630773,21334469:11829248,505283,102891 -h3723,306:6630773,21334469:0,0,0 -g3723,306:11350675,21334469 -k3723,307:15503037,21334469:2956985 -k3723,307:18460021,21334469:2956984 -) -(3723,308:6630773,22179513:11829248,513147,102891 -h3723,307:6630773,22179513:0,0,0 -g3723,307:11745857,22179513 -k3723,308:15700628,22179513:2759394 -k3723,308:18460021,22179513:2759393 -) -(3723,309:6630773,23024557:11829248,505283,102891 -h3723,308:6630773,23024557:0,0,0 -g3723,308:7794036,23024557 -k3723,309:13724717,23024557:4735304 -k3723,309:18460021,23024557:4735304 -) -(3723,310:6630773,23869601:11829248,505283,102891 -h3723,309:6630773,23869601:0,0,0 -g3723,309:8584400,23869601 -g3723,309:10152676,23869601 -g3723,309:11720952,23869601 -g3723,309:13289228,23869601 -g3723,309:14857504,23869601 -g3723,309:16425780,23869601 -k3723,309:18460021,23869601:665194 -) -(3723,310:9252213,24711089:9207808,485622,102891 -g3723,309:10820489,24711089 -k3723,310:15237944,24711089:3222078 -k3723,310:18460021,24711089:3222077 -) -(3723,311:6630773,25556133:11829248,505283,102891 -h3723,310:6630773,25556133:0,0,0 -g3723,310:9374765,25556133 -k3723,311:14515082,25556133:3944940 -k3723,311:18460021,25556133:3944939 -) -(3723,312:6630773,26401177:11829248,505283,102891 -h3723,311:6630773,26401177:0,0,0 -g3723,311:8979582,26401177 -k3723,312:14317490,26401177:4142531 -k3723,312:18460021,26401177:4142531 -) -(3723,313:6630773,27246221:11829248,505283,134348 -h3723,312:6630773,27246221:0,0,0 -g3723,312:8979582,27246221 -g3723,312:10149399,27246221 -k3723,313:14902399,27246221:3557623 -k3723,313:18460021,27246221:3557622 -) -(3723,314:6630773,28091265:11829248,505283,134348 -h3723,313:6630773,28091265:0,0,0 -g3723,313:9769947,28091265 -k3723,314:14513443,28091265:3946578 -k3723,314:18460021,28091265:3946578 -) -(3723,315:6630773,28936309:11829248,505283,134348 -h3723,314:6630773,28936309:0,0,0 -g3723,314:9374765,28936309 -k3723,315:14315852,28936309:4144169 -k3723,315:18460021,28936309:4144169 -) -(3723,316:6630773,29781353:11829248,505283,134348 -h3723,315:6630773,29781353:0,0,0 -g3723,315:9769947,29781353 -g3723,315:10939764,29781353 -g3723,315:12109581,29781353 -g3723,315:13279398,29781353 -g3723,315:14847674,29781353 -k3723,316:17251536,29781353:1208485 -k3723,316:18460021,29781353:1208485 -) -(3723,317:6630773,30626397:11829248,505283,102891 -h3723,316:6630773,30626397:0,0,0 -g3723,316:8584400,30626397 -g3723,316:9754217,30626397 -k3723,317:14704808,30626397:3755214 -k3723,317:18460021,30626397:3755213 -) -(3723,321:6630773,32186066:11829248,505283,102891 -h3723,320:6630773,32186066:0,0,0 -g3723,320:8979582,32186066 -k3723,321:14317490,32186066:4142531 -k3723,321:18460021,32186066:4142531 -) -(3723,322:6630773,33031110:11829248,505283,102891 -h3723,321:6630773,33031110:0,0,0 -g3723,321:10165129,33031110 -k3723,322:14910264,33031110:3549758 -k3723,322:18460021,33031110:3549757 -) -(3723,323:6630773,33876154:11829248,505283,102891 -h3723,322:6630773,33876154:0,0,0 -g3723,322:9769947,33876154 -k3723,323:14513443,33876154:3946578 -k3723,323:18460021,33876154:3946578 -) -(3723,324:6630773,34721198:11829248,505283,102891 -h3723,323:6630773,34721198:0,0,0 -g3723,323:10560311,34721198 -k3723,324:15107855,34721198:3352167 -k3723,324:18460021,34721198:3352166 -) -(3723,325:6630773,35566242:11829248,505283,102891 -h3723,324:6630773,35566242:0,0,0 -g3723,324:9374765,35566242 -g3723,324:10544582,35566242 -g3723,324:11714399,35566242 -g3723,324:13282675,35566242 -k3723,325:16469037,35566242:1990985 -k3723,325:18460021,35566242:1990984 -) -(3723,326:6630773,36411286:11829248,505283,102891 -h3723,325:6630773,36411286:0,0,0 -g3723,325:10165129,36411286 -g3723,325:11334946,36411286 -k3723,326:15495172,36411286:2964849 -k3723,326:18460021,36411286:2964849 -) -(3723,327:6630773,37256330:11829248,505283,102891 -h3723,326:6630773,37256330:0,0,0 -g3723,326:8979582,37256330 -g3723,326:10547858,37256330 -k3723,327:15101628,37256330:3358393 -k3723,327:18460021,37256330:3358393 -) -(3723,328:6630773,38101373:11829248,505283,102891 -h3723,327:6630773,38101373:0,0,0 -g3723,327:9374765,38101373 -g3723,327:10943041,38101373 -g3723,327:12511317,38101373 -k3723,328:16083358,38101373:2376664 -k3723,328:18460021,38101373:2376663 -) -(3723,329:6630773,38946417:11829248,505283,102891 -h3723,328:6630773,38946417:0,0,0 -g3723,328:10165129,38946417 -k3723,329:14910264,38946417:3549758 -k3723,329:18460021,38946417:3549757 -) -(3723,330:6630773,39791461:11829248,505283,102891 -h3723,329:6630773,39791461:0,0,0 -g3723,329:10560311,39791461 -k3723,330:15107855,39791461:3352167 -k3723,330:18460021,39791461:3352166 -) -(3723,331:6630773,40636505:11829248,505283,134348 -h3723,330:6630773,40636505:0,0,0 -g3723,330:9374765,40636505 -k3723,331:14515082,40636505:3944940 -k3723,331:18460021,40636505:3944939 -) -(3723,332:6630773,41481549:11829248,505283,102891 -h3723,331:6630773,41481549:0,0,0 -g3723,331:8979582,41481549 -g3723,331:10547858,41481549 -k3723,332:15101628,41481549:3358393 -k3723,332:18460021,41481549:3358393 -) -(3723,333:6630773,42326593:11829248,505283,102891 -h3723,332:6630773,42326593:0,0,0 -g3723,332:9374765,42326593 -g3723,332:10943041,42326593 -k3723,333:15299220,42326593:3160802 -k3723,333:18460021,42326593:3160801 -) -(3723,334:6630773,43171637:11829248,513147,102891 -h3723,333:6630773,43171637:0,0,0 -g3723,333:12141039,43171637 -k3723,334:15898219,43171637:2561803 -k3723,334:18460021,43171637:2561802 -) -(3723,335:6630773,44016681:11829248,505283,102891 -h3723,334:6630773,44016681:0,0,0 -g3723,334:12536221,44016681 -k3723,335:16095810,44016681:2364212 -k3723,335:18460021,44016681:2364211 -) -(3723,336:6630773,44861725:11829248,505283,102891 -h3723,335:6630773,44861725:0,0,0 -g3723,335:10560311,44861725 -k3723,336:14908625,44861725:3551396 -k3723,336:18460021,44861725:3551396 -) -(3723,337:6630773,45706769:11829248,505283,102891 -h3723,336:6630773,45706769:0,0,0 -g3723,336:10955493,45706769 -k3723,337:15106216,45706769:3353805 -k3723,337:18460021,45706769:3353805 -) -] -k3723,395:19606901,45706769:1146880 -r3723,395:19606901,45706769:0,40234515,126483 -k3723,395:20753781,45706769:1146880 -[3723,395:20753781,45706769:11829248,40108032,126483 -(3723,338:20753781,6254097:11829248,485622,102891 -h3723,337:20753781,6254097:0,0,0 -g3723,337:23497773,6254097 -k3723,338:28638090,6254097:3944940 -k3723,338:32583029,6254097:3944939 -) -(3723,339:20753781,7100543:11829248,505283,102891 -h3723,338:20753781,7100543:0,0,0 -g3723,338:24288137,7100543 -g3723,338:25856413,7100543 -k3723,339:29817410,7100543:2765620 -k3723,339:32583029,7100543:2765619 -) -(3723,340:20753781,7946990:11829248,505283,126483 -h3723,339:20753781,7946990:0,0,0 -g3723,339:25078501,7946990 -k3723,340:29428454,7946990:3154576 -k3723,340:32583029,7946990:3154575 -) -(3723,344:20753781,9531434:11829248,485622,102891 -h3723,343:20753781,9531434:0,0,0 -g3723,343:21917044,9531434 -g3723,343:23086861,9531434 -g3723,343:24256678,9531434 -k3723,344:28818313,9531434:3764717 -k3723,344:32583029,9531434:3764716 -) -(3723,345:20753781,10377880:11829248,505283,102891 -h3723,344:20753781,10377880:0,0,0 -g3723,344:26264047,10377880 -k3723,345:29821997,10377880:2761032 -k3723,345:32583029,10377880:2761032 -) -(3723,346:20753781,11224326:11829248,505283,102891 -h3723,345:20753781,11224326:0,0,0 -g3723,345:24288137,11224326 -k3723,346:28834042,11224326:3748987 -k3723,346:32583029,11224326:3748987 -) -(3723,347:20753781,12070772:11829248,505283,102891 -h3723,346:20753781,12070772:0,0,0 -g3723,346:23892955,12070772 -g3723,346:25461231,12070772 -g3723,346:27029507,12070772 -k3723,347:30403957,12070772:2179073 -k3723,347:32583029,12070772:2179072 -) -(3723,348:20753781,12917219:11829248,505283,102891 -h3723,347:20753781,12917219:0,0,0 -g3723,347:24683319,12917219 -g3723,347:26251595,12917219 -k3723,348:30015001,12917219:2568029 -k3723,348:32583029,12917219:2568028 -) -(3723,349:20753781,13763665:11829248,485622,102891 -h3723,348:20753781,13763665:0,0,0 -g3723,348:22312226,13763665 -k3723,349:27846087,13763665:4736943 -k3723,349:32583029,13763665:4736942 -) -(3723,350:20753781,14610111:11829248,505283,126483 -h3723,349:20753781,14610111:0,0,0 -g3723,349:24683319,14610111 -k3723,350:29230863,14610111:3352167 -k3723,350:32583029,14610111:3352166 -) -(3723,351:20753781,15456558:11829248,505283,102891 -h3723,350:20753781,15456558:0,0,0 -g3723,350:23892955,15456558 -k3723,351:28636451,15456558:3946578 -k3723,351:32583029,15456558:3946578 -) -(3723,352:20753781,16303004:11829248,505283,102891 -h3723,351:20753781,16303004:0,0,0 -g3723,351:23497773,16303004 -g3723,351:24667590,16303004 -k3723,352:29222998,16303004:3360031 -k3723,352:32583029,16303004:3360031 -) -(3723,353:20753781,17149450:11829248,505283,134348 -h3723,352:20753781,17149450:0,0,0 -g3723,352:25473683,17149450 -k3723,353:29626045,17149450:2956985 -k3723,353:32583029,17149450:2956984 -) -(3723,354:20753781,17995897:11829248,505283,102891 -h3723,353:20753781,17995897:0,0,0 -g3723,353:23497773,17995897 -k3723,354:28638090,17995897:3944940 -k3723,354:32583029,17995897:3944939 -) -(3723,355:20753781,18842343:11829248,505283,102891 -h3723,354:20753781,18842343:0,0,0 -g3723,354:22707408,18842343 -k3723,355:28242907,18842343:4340122 -k3723,355:32583029,18842343:4340122 -) -(3723,356:20753781,19688789:11829248,505283,102891 -h3723,355:20753781,19688789:0,0,0 -g3723,355:22312226,19688789 -k3723,356:28045316,19688789:4537713 -k3723,356:32583029,19688789:4537713 -) -(3723,357:20753781,20535236:11829248,505283,102891 -h3723,356:20753781,20535236:0,0,0 -g3723,356:23102590,20535236 -g3723,356:24670866,20535236 -k3723,357:29224636,20535236:3358393 -k3723,357:32583029,20535236:3358393 -) -(3723,358:20753781,21381682:11829248,485622,102891 -h3723,357:20753781,21381682:0,0,0 -g3723,357:23497773,21381682 -k3723,358:28638090,21381682:3944940 -k3723,358:32583029,21381682:3944939 -) -(3723,359:20753781,22228128:11829248,505283,126483 -h3723,358:20753781,22228128:0,0,0 -g3723,358:22312226,22228128 -k3723,359:28045316,22228128:4537713 -k3723,359:32583029,22228128:4537713 -) -(3723,360:20753781,23074574:11829248,505283,102891 -h3723,359:20753781,23074574:0,0,0 -g3723,359:23497773,23074574 -g3723,359:24667590,23074574 -k3723,360:29222998,23074574:3360031 -k3723,360:32583029,23074574:3360031 -) -(3723,361:20753781,23921021:11829248,505283,102891 -h3723,360:20753781,23921021:0,0,0 -g3723,360:23892955,23921021 -g3723,360:25062772,23921021 -g3723,360:26232589,23921021 -g3723,360:27402406,23921021 -g3723,360:28572223,23921021 -g3723,360:30140499,23921021 -k3723,361:31959453,23921021:623577 -k3723,361:32583029,23921021:623576 -) -(3723,362:20753781,24767467:11829248,505283,102891 -h3723,361:20753781,24767467:0,0,0 -g3723,361:24683319,24767467 -g3723,361:25853136,24767467 -g3723,361:27022953,24767467 -k3723,362:30201450,24767467:2381579 -k3723,362:32583029,24767467:2381579 -) -(3723,366:20753781,26351911:11829248,505283,134348 -h3723,365:20753781,26351911:0,0,0 -g3723,365:24683319,26351911 -k3723,366:29031633,26351911:3551396 -k3723,366:32583029,26351911:3551396 -) -(3723,367:20753781,27198357:11829248,505283,102891 -h3723,366:20753781,27198357:0,0,0 -g3723,366:24683319,27198357 -k3723,367:29230863,27198357:3352167 -k3723,367:32583029,27198357:3352166 -) -(3723,368:20753781,28044804:11829248,505283,126483 -h3723,367:20753781,28044804:0,0,0 -g3723,367:24683319,28044804 -k3723,368:29230863,28044804:3352167 -k3723,368:32583029,28044804:3352166 -) -(3723,369:20753781,28891250:11829248,485622,134348 -h3723,368:20753781,28891250:0,0,0 -g3723,368:23497773,28891250 -k3723,369:28638090,28891250:3944940 -k3723,369:32583029,28891250:3944939 -) -(3723,370:20753781,29737696:11829248,505283,102891 -h3723,369:20753781,29737696:0,0,0 -g3723,369:23892955,29737696 -g3723,369:25062772,29737696 -g3723,369:26232589,29737696 -g3723,369:27800865,29737696 -k3723,370:30789636,29737696:1793394 -k3723,370:32583029,29737696:1793393 -) -(3723,371:20753781,30584143:11829248,505283,102891 -h3723,370:20753781,30584143:0,0,0 -g3723,370:24683319,30584143 -g3723,370:25853136,30584143 -k3723,371:29815771,30584143:2767258 -k3723,371:32583029,30584143:2767258 -) -(3723,375:20753781,32168586:11829248,505283,126483 -h3723,374:20753781,32168586:0,0,0 -g3723,374:23892955,32168586 -g3723,374:25461231,32168586 -k3723,375:29619819,32168586:2963211 -k3723,375:32583029,32168586:2963210 -) -(3723,376:20753781,33015033:11829248,505283,126483 -h3723,375:20753781,33015033:0,0,0 -g3723,375:23892955,33015033 -g3723,375:25062772,33015033 -g3723,375:26232589,33015033 -g3723,375:27800865,33015033 -g3723,375:29369141,33015033 -k3723,376:31573774,33015033:1009256 -k3723,376:32583029,33015033:1009255 -) -(3723,377:20753781,33861479:11829248,505283,126483 -h3723,376:20753781,33861479:0,0,0 -g3723,376:24288137,33861479 -k3723,377:29033272,33861479:3549758 -k3723,377:32583029,33861479:3549757 -) -(3723,378:20753781,34707925:11829248,505283,126483 -h3723,377:20753781,34707925:0,0,0 -g3723,377:24288137,34707925 -k3723,378:29033272,34707925:3549758 -k3723,378:32583029,34707925:3549757 -) -(3723,379:20753781,35554372:11829248,513147,126483 -h3723,378:20753781,35554372:0,0,0 -g3723,378:22707408,35554372 -k3723,379:28242907,35554372:4340122 -k3723,379:32583029,35554372:4340122 -) -(3723,380:20753781,36400818:11829248,505283,126483 -h3723,379:20753781,36400818:0,0,0 -g3723,379:21917044,36400818 -k3723,380:27648496,36400818:4934534 -k3723,380:32583029,36400818:4934533 -) -(3723,381:20753781,37247264:11829248,505283,134348 -h3723,380:20753781,37247264:0,0,0 -g3723,380:26659229,37247264 -k3723,381:30980346,37247264:1602684 -k3723,381:32583029,37247264:1602683 -) -(3723,382:20753781,38093711:11829248,505283,126483 -h3723,381:20753781,38093711:0,0,0 -g3723,381:26264047,38093711 -g3723,381:27832323,38093711 -k3723,382:30805365,38093711:1777665 -k3723,382:32583029,38093711:1777664 -) -(3723,383:20753781,38940157:11829248,505283,126483 -h3723,382:20753781,38940157:0,0,0 -g3723,382:23892955,38940157 -k3723,383:28835681,38940157:3747349 -k3723,383:32583029,38940157:3747348 -) -(3723,384:20753781,39786603:11829248,505283,126483 -h3723,383:20753781,39786603:0,0,0 -g3723,383:24288137,39786603 -k3723,384:29033272,39786603:3549758 -k3723,384:32583029,39786603:3549757 -) -(3723,385:20753781,40633049:11829248,505283,126483 -h3723,384:20753781,40633049:0,0,0 -g3723,384:23497773,40633049 -g3723,384:26589106,40633049 -g3723,384:28157382,40633049 -g3723,384:29725658,40633049 -k3723,384:32583029,40633049:1488324 -) -(3723,385:23375221,41474537:9207808,485622,102891 -g3723,384:24943497,41474537 -k3723,385:29360952,41474537:3222078 -k3723,385:32583029,41474537:3222077 -) -(3723,386:20753781,42320984:11829248,505283,126483 -h3723,385:20753781,42320984:0,0,0 -g3723,385:24288137,42320984 -k3723,386:28834042,42320984:3748987 -k3723,386:32583029,42320984:3748987 -) -(3723,387:20753781,43167430:11829248,505283,126483 -h3723,386:20753781,43167430:0,0,0 -g3723,386:25473683,43167430 -k3723,387:29626045,43167430:2956985 -k3723,387:32583029,43167430:2956984 -) -(3723,388:20753781,44013876:11829248,505283,126483 -h3723,387:20753781,44013876:0,0,0 -g3723,387:23892955,44013876 -g3723,387:25461231,44013876 -k3723,388:29619819,44013876:2963211 -k3723,388:32583029,44013876:2963210 -) -(3723,389:20753781,44860323:11829248,505283,126483 -h3723,388:20753781,44860323:0,0,0 -g3723,388:23497773,44860323 -k3723,389:28638090,44860323:3944940 -k3723,389:32583029,44860323:3944939 -) -(3723,390:20753781,45706769:11829248,505283,126483 -h3723,389:20753781,45706769:0,0,0 -g3723,389:28635140,45706769 -g3723,389:30203416,45706769 -k3723,390:31990911,45706769:592118 -k3723,390:32583029,45706769:592118 -) -] -(3723,395:32583029,45706769:0,355205,126483 -h3723,395:32583029,45706769:420741,355205,126483 -k3723,395:32583029,45706769:-420741 -) -) -] -(3723,395:32583029,45706769:0,0,0 -g3723,395:32583029,45706769 +g3764,384:6630773,4812305 +k3764,384:23552170,4812305:15726020 +g3764,384:27112085,4812305 +g3764,384:29010007,4812305 +g3764,384:29825274,4812305 +g3764,384:30438691,4812305 ) ) ] -(3723,395:6630773,47279633:25952256,0,0 -h3723,395:6630773,47279633:25952256,0,0 +[3764,384:6630773,45706769:25952256,40108032,0 +(3764,384:6630773,45706769:25952256,40108032,0 +(3764,384:6630773,45706769:0,0,0 +g3764,384:6630773,45706769 ) -] -(3723,395:4262630,4025873:0,0,0 -[3723,395:-473656,4025873:0,0,0 -(3723,395:-473656,-710413:0,0,0 -(3723,395:-473656,-710413:0,0,0 -g3723,395:-473656,-710413 +[3764,384:6630773,45706769:25952256,40108032,0 +(3764,384:6630773,45706769:25952256,40108032,141066 +[3764,384:6630773,45706769:11829248,40108032,102891 +(3764,278:6630773,6254097:11829248,530548,102891 +h3764,277:6630773,6254097:0,0,0 +g3764,277:12812866,6254097 +k3764,278:16034903,6254097:2425119 +k3764,278:18460021,6254097:2425118 ) -g3723,395:-473656,-710413 +(3764,279:6630773,7120204:11829248,530548,102891 +h3764,278:6630773,7120204:0,0,0 +g3764,278:11982981,7120204 +g3764,278:13152798,7120204 +k3764,279:16204869,7120204:2255153 +k3764,279:18460021,7120204:2255152 +) +(3764,280:6630773,7986312:11829248,530548,132808 +h3764,279:6630773,7986312:0,0,0 +g3764,279:13642751,7986312 +g3764,279:15211027,7986312 +k3764,280:17433213,7986312:1026809 +k3764,280:18460021,7986312:1026808 +) +(3764,281:6630773,8852419:11829248,530548,141066 +h3764,280:6630773,8852419:0,0,0 +g3764,280:11982981,8852419 +k3764,281:15619960,8852419:2840061 +k3764,281:18460021,8852419:2840061 +) +(3764,282:6630773,9718527:11829248,530548,102891 +h3764,281:6630773,9718527:0,0,0 +g3764,281:11568039,9718527 +k3764,282:15412489,9718527:3047532 +k3764,282:18460021,9718527:3047532 +) +(3764,283:6630773,10584634:11829248,530548,102891 +h3764,282:6630773,10584634:0,0,0 +g3764,282:9908269,10584634 +g3764,282:11078086,10584634 +k3764,283:15167513,10584634:3292509 +k3764,283:18460021,10584634:3292508 +) +(3764,284:6630773,11450742:11829248,530548,102891 +h3764,283:6630773,11450742:0,0,0 +g3764,283:11982981,11450742 +g3764,283:13152798,11450742 +k3764,284:16204869,11450742:2255153 +k3764,284:18460021,11450742:2255152 +) +(3764,285:6630773,12316849:11829248,530548,102891 +h3764,284:6630773,12316849:0,0,0 +g3764,284:11568039,12316849 +k3764,285:15611719,12316849:2848303 +k3764,285:18460021,12316849:2848302 +) +(3764,286:6630773,13182957:11829248,530548,102891 +h3764,285:6630773,13182957:0,0,0 +g3764,285:10323211,13182957 +k3764,286:14989305,13182957:3470717 +k3764,286:18460021,13182957:3470716 +) +(3764,290:6630773,14721549:11829248,530548,132808 +h3764,289:6630773,14721549:0,0,0 +g3764,289:12812866,14721549 +k3764,290:16234132,14721549:2225889 +k3764,290:18460021,14721549:2225889 +) +(3764,291:6630773,15587657:11829248,530548,102891 +h3764,290:6630773,15587657:0,0,0 +g3764,290:11982981,15587657 +k3764,291:15819190,15587657:2640832 +k3764,291:18460021,15587657:2640831 +) +(3764,292:6630773,16453764:11829248,530548,102891 +h3764,291:6630773,16453764:0,0,0 +g3764,291:14472635,16453764 +k3764,292:17064017,16453764:1396005 +k3764,292:18460021,16453764:1396004 +) +(3764,293:6630773,17319872:11829248,530548,102891 +h3764,292:6630773,17319872:0,0,0 +g3764,292:11982981,17319872 +k3764,293:15819190,17319872:2640832 +k3764,293:18460021,17319872:2640831 +) +(3764,294:6630773,18185979:11829248,530548,102891 +h3764,293:6630773,18185979:0,0,0 +g3764,293:9493326,18185979 +g3764,293:11061602,18185979 +k3764,294:15358500,18185979:3101521 +k3764,294:18460021,18185979:3101521 +) +(3764,295:6630773,19052087:11829248,530548,132808 +h3764,294:6630773,19052087:0,0,0 +g3764,294:10323211,19052087 +g3764,294:11891487,19052087 +g3764,294:13459763,19052087 +g3764,294:15028039,19052087 +k3764,295:17341719,19052087:1118303 +k3764,295:18460021,19052087:1118302 +) +(3764,296:6630773,19918194:11829248,538806,141066 +h3764,295:6630773,19918194:0,0,0 +g3764,295:11568039,19918194 +k3764,296:15611719,19918194:2848303 +k3764,296:18460021,19918194:2848302 +) +(3764,297:6630773,20784302:11829248,530548,141066 +h3764,296:6630773,20784302:0,0,0 +g3764,296:10323211,20784302 +g3764,296:11493028,20784302 +g3764,296:12662845,20784302 +g3764,296:13832662,20784302 +g3764,296:15400938,20784302 +g3764,296:16969214,20784302 +k3764,297:18312306,20784302:147715 +k3764,297:18460021,20784302:147715 +) +(3764,298:6630773,21650409:11829248,485622,102891 +h3764,297:6630773,21650409:0,0,0 +g3764,297:9908269,21650409 +k3764,298:14582604,21650409:3877417 +k3764,298:18460021,21650409:3877417 +) +(3764,299:6630773,22516517:11829248,530548,102891 +h3764,298:6630773,22516517:0,0,0 +g3764,298:9908269,22516517 +k3764,299:14582604,22516517:3877417 +k3764,299:18460021,22516517:3877417 +) +(3764,300:6630773,23382624:11829248,530548,102891 +h3764,299:6630773,23382624:0,0,0 +g3764,299:10323211,23382624 +g3764,299:11493028,23382624 +g3764,299:12662845,23382624 +k3764,300:16159122,23382624:2300900 +k3764,300:18460021,23382624:2300899 +) +(3764,301:6630773,24248732:11829248,530548,102891 +h3764,300:6630773,24248732:0,0,0 +g3764,300:11153096,24248732 +k3764,301:15404247,24248732:3055774 +k3764,301:18460021,24248732:3055774 +) +(3764,302:6630773,25114839:11829248,530548,132808 +h3764,301:6630773,25114839:0,0,0 +g3764,301:9908269,25114839 +k3764,302:14781834,25114839:3678188 +k3764,302:18460021,25114839:3678187 +) +(3764,303:6630773,25980947:11829248,530548,132808 +h3764,302:6630773,25980947:0,0,0 +g3764,302:10738154,25980947 +g3764,302:12306430,25980947 +g3764,302:13874706,25980947 +k3764,303:16765052,25980947:1694969 +k3764,303:18460021,25980947:1694969 +) +(3764,304:6630773,26847054:11829248,530548,102891 +h3764,303:6630773,26847054:0,0,0 +g3764,303:8663442,26847054 +g3764,303:9833259,26847054 +g3764,303:11003076,26847054 +g3764,303:12571352,26847054 +g3764,303:14139628,26847054 +k3764,304:16897513,26847054:1562508 +k3764,304:18460021,26847054:1562508 +) +(3764,305:6630773,27713162:11829248,530548,102891 +h3764,304:6630773,27713162:0,0,0 +g3764,304:9493326,27713162 +g3764,304:10663143,27713162 +k3764,305:15159271,27713162:3300751 +k3764,305:18460021,27713162:3300750 +) +(3764,306:6630773,28579269:11829248,530548,102891 +h3764,305:6630773,28579269:0,0,0 +g3764,305:11568039,28579269 +k3764,306:15611719,28579269:2848303 +k3764,306:18460021,28579269:2848302 +) +(3764,307:6630773,29445377:11829248,538806,102891 +h3764,306:6630773,29445377:0,0,0 +g3764,306:11982981,29445377 +k3764,307:15819190,29445377:2640832 +k3764,307:18460021,29445377:2640831 +) +(3764,308:6630773,30311484:11829248,530548,102891 +h3764,307:6630773,30311484:0,0,0 +g3764,307:7833557,30311484 +k3764,308:13744478,30311484:4715544 +k3764,308:18460021,30311484:4715543 +) +(3764,309:6630773,31177592:11829248,530548,102891 +h3764,308:6630773,31177592:0,0,0 +g3764,308:8663442,31177592 +g3764,308:10231718,31177592 +g3764,308:11799994,31177592 +g3764,308:13368270,31177592 +g3764,308:14936546,31177592 +g3764,308:16504822,31177592 +k3764,308:18460021,31177592:586152 +) +(3764,309:9252213,32042672:9207808,485622,102891 +g3764,308:10820489,32042672 +g3764,308:12388765,32042672 +k3764,309:16022082,32042672:2437940 +k3764,309:18460021,32042672:2437939 +) +(3764,310:6630773,32908779:11829248,530548,102891 +h3764,309:6630773,32908779:0,0,0 +g3764,309:9493326,32908779 +k3764,310:14574362,32908779:3885659 +k3764,310:18460021,32908779:3885659 +) +(3764,311:6630773,33774887:11829248,530548,102891 +h3764,310:6630773,33774887:0,0,0 +g3764,310:9078384,33774887 +k3764,311:14366891,33774887:4093130 +k3764,311:18460021,33774887:4093130 +) +(3764,312:6630773,34640994:11829248,530548,141066 +h3764,311:6630773,34640994:0,0,0 +g3764,311:9078384,34640994 +g3764,311:10248201,34640994 +k3764,312:14951800,34640994:3508222 +k3764,312:18460021,34640994:3508221 +) +(3764,313:6630773,35507102:11829248,530548,141066 +h3764,312:6630773,35507102:0,0,0 +g3764,312:9908269,35507102 +k3764,313:14582604,35507102:3877417 +k3764,313:18460021,35507102:3877417 +) +(3764,314:6630773,36373209:11829248,530548,141066 +h3764,313:6630773,36373209:0,0,0 +g3764,313:9493326,36373209 +k3764,314:14375133,36373209:4084889 +k3764,314:18460021,36373209:4084888 +) +(3764,315:6630773,37239317:11829248,530548,141066 +h3764,314:6630773,37239317:0,0,0 +g3764,314:9908269,37239317 +g3764,314:11078086,37239317 +g3764,314:12247903,37239317 +g3764,314:13417720,37239317 +g3764,314:14587537,37239317 +g3764,314:16155813,37239317 +k3764,315:17905606,37239317:554416 +k3764,315:18460021,37239317:554415 +) +(3764,316:6630773,38105424:11829248,530548,102891 +h3764,315:6630773,38105424:0,0,0 +g3764,315:8663442,38105424 +g3764,315:9833259,38105424 +g3764,315:11401535,38105424 +k3764,316:15528467,38105424:2931555 +k3764,316:18460021,38105424:2931554 +) +(3764,320:6630773,39644017:11829248,530548,102891 +h3764,319:6630773,39644017:0,0,0 +g3764,319:9078384,39644017 +k3764,320:14366891,39644017:4093130 +k3764,320:18460021,39644017:4093130 +) +(3764,321:6630773,40510124:11829248,530548,102891 +h3764,320:6630773,40510124:0,0,0 +g3764,320:10323211,40510124 +k3764,321:14989305,40510124:3470717 +k3764,321:18460021,40510124:3470716 +) +(3764,322:6630773,41376232:11829248,530548,102891 +h3764,321:6630773,41376232:0,0,0 +g3764,321:9908269,41376232 +k3764,322:14582604,41376232:3877417 +k3764,322:18460021,41376232:3877417 +) +(3764,323:6630773,42242339:11829248,530548,102891 +h3764,322:6630773,42242339:0,0,0 +g3764,322:10738154,42242339 +k3764,323:15196776,42242339:3263245 +k3764,323:18460021,42242339:3263245 +) +(3764,324:6630773,43108447:11829248,530548,102891 +h3764,323:6630773,43108447:0,0,0 +g3764,323:9493326,43108447 +g3764,323:10663143,43108447 +g3764,323:11832960,43108447 +g3764,323:13002777,43108447 +g3764,323:14571053,43108447 +k3764,324:17113226,43108447:1346796 +k3764,324:18460021,43108447:1346795 +) +(3764,325:6630773,43974554:11829248,530548,102891 +h3764,324:6630773,43974554:0,0,0 +g3764,324:10323211,43974554 +g3764,324:11493028,43974554 +k3764,325:15574213,43974554:2885808 +k3764,325:18460021,43974554:2885808 +) +(3764,326:6630773,44840662:11829248,530548,102891 +h3764,325:6630773,44840662:0,0,0 +g3764,325:9078384,44840662 +g3764,325:10646660,44840662 +k3764,326:15151029,44840662:3308992 +k3764,326:18460021,44840662:3308992 +) +(3764,327:6630773,45706769:11829248,530548,102891 +h3764,326:6630773,45706769:0,0,0 +g3764,326:9493326,45706769 +g3764,326:11061602,45706769 +g3764,326:12629878,45706769 +k3764,327:16142638,45706769:2317383 +k3764,327:18460021,45706769:2317383 +) +] +k3764,384:19606901,45706769:1146880 +r3764,384:19606901,45706769:0,40249098,141066 +k3764,384:20753781,45706769:1146880 +[3764,384:20753781,45706769:11829248,40108032,141066 +(3764,328:20753781,6254097:11829248,530548,102891 +h3764,327:20753781,6254097:0,0,0 +g3764,327:24446219,6254097 +k3764,328:29112313,6254097:3470717 +k3764,328:32583029,6254097:3470716 +) +(3764,329:20753781,7122275:11829248,530548,102891 +h3764,328:20753781,7122275:0,0,0 +g3764,328:24861162,7122275 +k3764,329:29319784,7122275:3263245 +k3764,329:32583029,7122275:3263245 +) +(3764,330:20753781,7990454:11829248,530548,141066 +h3764,329:20753781,7990454:0,0,0 +g3764,329:23616334,7990454 +g3764,329:25184610,7990454 +k3764,330:29481508,7990454:3101521 +k3764,330:32583029,7990454:3101521 +) +(3764,331:20753781,8858632:11829248,530548,102891 +h3764,330:20753781,8858632:0,0,0 +g3764,330:23201392,8858632 +g3764,330:24769668,8858632 +k3764,331:29274037,8858632:3308992 +k3764,331:32583029,8858632:3308992 +) +(3764,332:20753781,9726811:11829248,530548,102891 +h3764,331:20753781,9726811:0,0,0 +g3764,331:23616334,9726811 +g3764,331:25184610,9726811 +k3764,332:29481508,9726811:3101521 +k3764,332:32583029,9726811:3101521 +) +(3764,333:20753781,10594989:11829248,538806,102891 +h3764,332:20753781,10594989:0,0,0 +g3764,332:26520932,10594989 +k3764,333:30149669,10594989:2433360 +k3764,333:32583029,10594989:2433360 +) +(3764,334:20753781,11463168:11829248,530548,102891 +h3764,333:20753781,11463168:0,0,0 +g3764,333:26935874,11463168 +k3764,334:30357140,11463168:2225889 +k3764,334:32583029,11463168:2225889 +) +(3764,335:20753781,12331346:11829248,530548,102891 +h3764,334:20753781,12331346:0,0,0 +g3764,334:24861162,12331346 +k3764,335:29120555,12331346:3462475 +k3764,335:32583029,12331346:3462474 +) +(3764,336:20753781,13199524:11829248,530548,102891 +h3764,335:20753781,13199524:0,0,0 +g3764,335:25276104,13199524 +k3764,336:29328026,13199524:3255004 +k3764,336:32583029,13199524:3255003 +) +(3764,337:20753781,14067703:11829248,485622,102891 +h3764,336:20753781,14067703:0,0,0 +g3764,336:23616334,14067703 +k3764,337:28697370,14067703:3885659 +k3764,337:32583029,14067703:3885659 +) +(3764,338:20753781,14935881:11829248,530548,102891 +h3764,337:20753781,14935881:0,0,0 +g3764,337:24446219,14935881 +k3764,338:29112313,14935881:3470717 +k3764,338:32583029,14935881:3470716 +) +(3764,339:20753781,15804060:11829248,530548,132808 +h3764,338:20753781,15804060:0,0,0 +g3764,338:25276104,15804060 +k3764,339:29527255,15804060:3055774 +k3764,339:32583029,15804060:3055774 +) +(3764,343:20753781,17379238:11829248,485622,102891 +h3764,342:20753781,17379238:0,0,0 +g3764,342:21956565,17379238 +g3764,342:23126382,17379238 +g3764,342:24296199,17379238 +k3764,343:28838073,17379238:3744956 +k3764,343:32583029,17379238:3744956 +) +(3764,344:20753781,18247416:11829248,530548,102891 +h3764,343:20753781,18247416:0,0,0 +g3764,343:26520932,18247416 +k3764,344:29950440,18247416:2632590 +k3764,344:32583029,18247416:2632589 +) +(3764,345:20753781,19115595:11829248,530548,102891 +h3764,344:20753781,19115595:0,0,0 +g3764,344:24446219,19115595 +k3764,345:28913083,19115595:3669946 +k3764,345:32583029,19115595:3669946 +) +(3764,346:20753781,19983773:11829248,530548,102891 +h3764,345:20753781,19983773:0,0,0 +g3764,345:24031277,19983773 +g3764,345:25599553,19983773 +g3764,345:27167829,19983773 +k3764,346:30473118,19983773:2109912 +k3764,346:32583029,19983773:2109911 +) +(3764,347:20753781,20851952:11829248,530548,102891 +h3764,346:20753781,20851952:0,0,0 +g3764,346:24861162,20851952 +g3764,346:26429438,20851952 +k3764,347:30103922,20851952:2479107 +k3764,347:32583029,20851952:2479107 +) +(3764,348:20753781,21720130:11829248,485622,102891 +h3764,347:20753781,21720130:0,0,0 +g3764,347:22371507,21720130 +k3764,348:27875727,21720130:4707302 +k3764,348:32583029,21720130:4707302 +) +(3764,349:20753781,22588309:11829248,530548,132808 +h3764,348:20753781,22588309:0,0,0 +g3764,348:24861162,22588309 +k3764,349:29319784,22588309:3263245 +k3764,349:32583029,22588309:3263245 +) +(3764,350:20753781,23456487:11829248,530548,102891 +h3764,349:20753781,23456487:0,0,0 +g3764,349:24031277,23456487 +k3764,350:28705612,23456487:3877417 +k3764,350:32583029,23456487:3877417 +) +(3764,351:20753781,24324665:11829248,530548,102891 +h3764,350:20753781,24324665:0,0,0 +g3764,350:23616334,24324665 +g3764,350:24786151,24324665 +k3764,351:29282279,24324665:3300751 +k3764,351:32583029,24324665:3300750 +) +(3764,352:20753781,25192844:11829248,530548,141066 +h3764,351:20753781,25192844:0,0,0 +g3764,351:25691047,25192844 +k3764,352:29734727,25192844:2848303 +k3764,352:32583029,25192844:2848302 +) +(3764,353:20753781,26061022:11829248,530548,102891 +h3764,352:20753781,26061022:0,0,0 +g3764,352:23616334,26061022 +k3764,353:28697370,26061022:3885659 +k3764,353:32583029,26061022:3885659 +) +(3764,354:20753781,26929201:11829248,530548,102891 +h3764,353:20753781,26929201:0,0,0 +g3764,353:22786450,26929201 +k3764,354:28282428,26929201:4300601 +k3764,354:32583029,26929201:4300601 +) +(3764,355:20753781,27797379:11829248,530548,102891 +h3764,354:20753781,27797379:0,0,0 +g3764,354:22371507,27797379 +k3764,355:28074957,27797379:4508073 +k3764,355:32583029,27797379:4508072 +) +(3764,356:20753781,28665558:11829248,530548,102891 +h3764,355:20753781,28665558:0,0,0 +g3764,355:23201392,28665558 +g3764,355:24769668,28665558 +k3764,356:29274037,28665558:3308992 +k3764,356:32583029,28665558:3308992 +) +(3764,357:20753781,29533736:11829248,485622,102891 +h3764,356:20753781,29533736:0,0,0 +g3764,356:23616334,29533736 +k3764,357:28697370,29533736:3885659 +k3764,357:32583029,29533736:3885659 +) +(3764,358:20753781,30401914:11829248,530548,132808 +h3764,357:20753781,30401914:0,0,0 +g3764,357:22371507,30401914 +k3764,358:28074957,30401914:4508073 +k3764,358:32583029,30401914:4508072 +) +(3764,359:20753781,31270093:11829248,530548,102891 +h3764,358:20753781,31270093:0,0,0 +g3764,358:23616334,31270093 +g3764,358:24786151,31270093 +k3764,359:29282279,31270093:3300751 +k3764,359:32583029,31270093:3300750 +) +(3764,360:20753781,32138271:11829248,530548,102891 +h3764,359:20753781,32138271:0,0,0 +k3764,359:24022565,32138271:190517 +k3764,359:25183669,32138271:190516 +k3764,359:26344774,32138271:190517 +k3764,359:27505879,32138271:190517 +k3764,359:28666984,32138271:190517 +k3764,359:29828088,32138271:190516 +k3764,359:31387652,32138271:190517 +k3764,360:32583029,32138271:0 +k3764,360:32583029,32138271:0 +) +(3764,361:20753781,33006450:11829248,530548,102891 +h3764,360:20753781,33006450:0,0,0 +g3764,360:24861162,33006450 +g3764,360:26030979,33006450 +k3764,361:29705463,33006450:2877566 +k3764,361:32583029,33006450:2877566 +) +(3764,365:20753781,34581628:11829248,530548,141066 +h3764,364:20753781,34581628:0,0,0 +g3764,364:24861162,34581628 +g3764,364:26030979,34581628 +k3764,365:29705463,34581628:2877566 +k3764,365:32583029,34581628:2877566 +) +(3764,366:20753781,35449806:11829248,530548,102891 +h3764,365:20753781,35449806:0,0,0 +g3764,365:24861162,35449806 +k3764,366:29319784,35449806:3263245 +k3764,366:32583029,35449806:3263245 +) +(3764,367:20753781,36317985:11829248,530548,132808 +h3764,366:20753781,36317985:0,0,0 +g3764,366:24861162,36317985 +k3764,367:29319784,36317985:3263245 +k3764,367:32583029,36317985:3263245 +) +(3764,368:20753781,37186163:11829248,485622,141066 +h3764,367:20753781,37186163:0,0,0 +g3764,367:23616334,37186163 +k3764,368:28697370,37186163:3885659 +k3764,368:32583029,37186163:3885659 +) +(3764,369:20753781,38054342:11829248,530548,102891 +h3764,368:20753781,38054342:0,0,0 +g3764,368:24031277,38054342 +g3764,368:25201094,38054342 +g3764,368:26370911,38054342 +g3764,368:27939187,38054342 +g3764,368:29507463,38054342 +k3764,369:31642935,38054342:940095 +k3764,369:32583029,38054342:940094 +) +(3764,370:20753781,38922520:11829248,530548,102891 +h3764,369:20753781,38922520:0,0,0 +g3764,369:24861162,38922520 +g3764,369:26030979,38922520 +k3764,370:29904693,38922520:2678337 +k3764,370:32583029,38922520:2678336 +) +(3764,374:20753781,40497698:11829248,530548,132808 +h3764,373:20753781,40497698:0,0,0 +g3764,373:24031277,40497698 +g3764,373:25599553,40497698 +k3764,374:29688980,40497698:2894050 +k3764,374:32583029,40497698:2894049 +) +(3764,375:20753781,41365877:11829248,530548,132808 +h3764,374:20753781,41365877:0,0,0 +g3764,374:24031277,41365877 +g3764,374:25201094,41365877 +g3764,374:26769370,41365877 +g3764,374:28337646,41365877 +k3764,375:31058026,41365877:1525003 +k3764,375:32583029,41365877:1525003 +) +(3764,376:20753781,42234055:11829248,530548,132808 +h3764,375:20753781,42234055:0,0,0 +g3764,375:24446219,42234055 +k3764,376:29112313,42234055:3470717 +k3764,376:32583029,42234055:3470716 +) +(3764,377:20753781,43102234:11829248,530548,132808 +h3764,376:20753781,43102234:0,0,0 +g3764,376:24446219,43102234 +k3764,377:29112313,43102234:3470717 +k3764,377:32583029,43102234:3470716 +) +(3764,378:20753781,43970412:11829248,538806,132808 +h3764,377:20753781,43970412:0,0,0 +g3764,377:22786450,43970412 +k3764,378:28282428,43970412:4300601 +k3764,378:32583029,43970412:4300601 +) +(3764,379:20753781,44838591:11829248,530548,132808 +h3764,378:20753781,44838591:0,0,0 +g3764,378:21956565,44838591 +k3764,379:27668256,44838591:4914773 +k3764,379:32583029,44838591:4914773 +) +(3764,380:20753781,45706769:11829248,530548,141066 +h3764,379:20753781,45706769:0,0,0 +g3764,379:26935874,45706769 +g3764,379:28504150,45706769 +k3764,380:31141278,45706769:1441751 +k3764,380:32583029,45706769:1441751 +) +] +(3764,384:32583029,45706769:0,355205,126483 +h3764,384:32583029,45706769:420741,355205,126483 +k3764,384:32583029,45706769:-420741 +) +) +] +(3764,384:32583029,45706769:0,0,0 +g3764,384:32583029,45706769 +) +) +] +(3764,384:6630773,47279633:25952256,0,0 +h3764,384:6630773,47279633:25952256,0,0 +) +] +(3764,384:4262630,4025873:0,0,0 +[3764,384:-473656,4025873:0,0,0 +(3764,384:-473656,-710413:0,0,0 +(3764,384:-473656,-710413:0,0,0 +g3764,384:-473656,-710413 ) -] +g3764,384:-473656,-710413 +) +] ) ] -!22544 -}445 +!22464 +}427 !12 -{446 -[3723,495:4262630,47279633:28320399,43253760,0 -(3723,495:4262630,4025873:0,0,0 -[3723,495:-473656,4025873:0,0,0 -(3723,495:-473656,-710413:0,0,0 -(3723,495:-473656,-644877:0,0,0 -k3723,495:-473656,-644877:-65536 +{428 +[3764,481:4262630,47279633:28320399,43253760,0 +(3764,481:4262630,4025873:0,0,0 +[3764,481:-473656,4025873:0,0,0 +(3764,481:-473656,-710413:0,0,0 +(3764,481:-473656,-644877:0,0,0 +k3764,481:-473656,-644877:-65536 ) -(3723,495:-473656,4736287:0,0,0 -k3723,495:-473656,4736287:5209943 +(3764,481:-473656,4736287:0,0,0 +k3764,481:-473656,4736287:5209943 ) -g3723,495:-473656,-710413 +g3764,481:-473656,-710413 ) ] ) -[3723,495:6630773,47279633:25952256,43253760,0 -[3723,495:6630773,4812305:25952256,786432,0 -(3723,495:6630773,4812305:25952256,513147,126483 -(3723,495:6630773,4812305:25952256,513147,126483 -g3723,495:3078558,4812305 -[3723,495:3078558,4812305:0,0,0 -(3723,495:3078558,2439708:0,1703936,0 -k3723,495:1358238,2439708:-1720320 -(3723,1:1358238,2439708:1720320,1703936,0 -(3723,1:1358238,2439708:1179648,16384,0 -r3723,495:2537886,2439708:1179648,16384,0 +[3764,481:6630773,47279633:25952256,43253760,0 +[3764,481:6630773,4812305:25952256,786432,0 +(3764,481:6630773,4812305:25952256,513147,126483 +(3764,481:6630773,4812305:25952256,513147,126483 +g3764,481:3078558,4812305 +[3764,481:3078558,4812305:0,0,0 +(3764,481:3078558,2439708:0,1703936,0 +k3764,481:1358238,2439708:-1720320 +(3764,1:1358238,2439708:1720320,1703936,0 +(3764,1:1358238,2439708:1179648,16384,0 +r3764,481:2537886,2439708:1179648,16384,0 ) -g3723,1:3062174,2439708 -(3723,1:3062174,2439708:16384,1703936,0 -[3723,1:3062174,2439708:25952256,1703936,0 -(3723,1:3062174,1915420:25952256,1179648,0 -(3723,1:3062174,1915420:16384,1179648,0 -r3723,495:3078558,1915420:16384,1179648,0 +g3764,1:3062174,2439708 +(3764,1:3062174,2439708:16384,1703936,0 +[3764,1:3062174,2439708:25952256,1703936,0 +(3764,1:3062174,1915420:25952256,1179648,0 +(3764,1:3062174,1915420:16384,1179648,0 +r3764,481:3078558,1915420:16384,1179648,0 ) -k3723,1:29014430,1915420:25935872 -g3723,1:29014430,1915420 +k3764,1:29014430,1915420:25935872 +g3764,1:29014430,1915420 ) ] ) ) ) ] -[3723,495:3078558,4812305:0,0,0 -(3723,495:3078558,2439708:0,1703936,0 -g3723,495:29030814,2439708 -g3723,495:36135244,2439708 -(3723,1:36135244,2439708:1720320,1703936,0 -(3723,1:36135244,2439708:16384,1703936,0 -[3723,1:36135244,2439708:25952256,1703936,0 -(3723,1:36135244,1915420:25952256,1179648,0 -(3723,1:36135244,1915420:16384,1179648,0 -r3723,495:36151628,1915420:16384,1179648,0 +[3764,481:3078558,4812305:0,0,0 +(3764,481:3078558,2439708:0,1703936,0 +g3764,481:29030814,2439708 +g3764,481:36135244,2439708 +(3764,1:36135244,2439708:1720320,1703936,0 +(3764,1:36135244,2439708:16384,1703936,0 +[3764,1:36135244,2439708:25952256,1703936,0 +(3764,1:36135244,1915420:25952256,1179648,0 +(3764,1:36135244,1915420:16384,1179648,0 +r3764,481:36151628,1915420:16384,1179648,0 ) -k3723,1:62087500,1915420:25935872 -g3723,1:62087500,1915420 +k3764,1:62087500,1915420:25935872 +g3764,1:62087500,1915420 ) ] ) -g3723,1:36675916,2439708 -(3723,1:36675916,2439708:1179648,16384,0 -r3723,495:37855564,2439708:1179648,16384,0 +g3764,1:36675916,2439708 +(3764,1:36675916,2439708:1179648,16384,0 +r3764,481:37855564,2439708:1179648,16384,0 ) ) -k3723,495:3078556,2439708:-34777008 +k3764,481:3078556,2439708:-34777008 ) ] -[3723,495:3078558,4812305:0,0,0 -(3723,495:3078558,49800853:0,16384,2228224 -k3723,495:1358238,49800853:-1720320 -(3723,1:1358238,49800853:1720320,16384,2228224 -(3723,1:1358238,49800853:1179648,16384,0 -r3723,495:2537886,49800853:1179648,16384,0 +[3764,481:3078558,4812305:0,0,0 +(3764,481:3078558,49800853:0,16384,2228224 +k3764,481:1358238,49800853:-1720320 +(3764,1:1358238,49800853:1720320,16384,2228224 +(3764,1:1358238,49800853:1179648,16384,0 +r3764,481:2537886,49800853:1179648,16384,0 ) -g3723,1:3062174,49800853 -(3723,1:3062174,52029077:16384,1703936,0 -[3723,1:3062174,52029077:25952256,1703936,0 -(3723,1:3062174,51504789:25952256,1179648,0 -(3723,1:3062174,51504789:16384,1179648,0 -r3723,495:3078558,51504789:16384,1179648,0 +g3764,1:3062174,49800853 +(3764,1:3062174,52029077:16384,1703936,0 +[3764,1:3062174,52029077:25952256,1703936,0 +(3764,1:3062174,51504789:25952256,1179648,0 +(3764,1:3062174,51504789:16384,1179648,0 +r3764,481:3078558,51504789:16384,1179648,0 ) -k3723,1:29014430,51504789:25935872 -g3723,1:29014430,51504789 +k3764,1:29014430,51504789:25935872 +g3764,1:29014430,51504789 ) ] ) ) ) ] -[3723,495:3078558,4812305:0,0,0 -(3723,495:3078558,49800853:0,16384,2228224 -g3723,495:29030814,49800853 -g3723,495:36135244,49800853 -(3723,1:36135244,49800853:1720320,16384,2228224 -(3723,1:36135244,52029077:16384,1703936,0 -[3723,1:36135244,52029077:25952256,1703936,0 -(3723,1:36135244,51504789:25952256,1179648,0 -(3723,1:36135244,51504789:16384,1179648,0 -r3723,495:36151628,51504789:16384,1179648,0 +[3764,481:3078558,4812305:0,0,0 +(3764,481:3078558,49800853:0,16384,2228224 +g3764,481:29030814,49800853 +g3764,481:36135244,49800853 +(3764,1:36135244,49800853:1720320,16384,2228224 +(3764,1:36135244,52029077:16384,1703936,0 +[3764,1:36135244,52029077:25952256,1703936,0 +(3764,1:36135244,51504789:25952256,1179648,0 +(3764,1:36135244,51504789:16384,1179648,0 +r3764,481:36151628,51504789:16384,1179648,0 ) -k3723,1:62087500,51504789:25935872 -g3723,1:62087500,51504789 +k3764,1:62087500,51504789:25935872 +g3764,1:62087500,51504789 ) ] ) -g3723,1:36675916,49800853 -(3723,1:36675916,49800853:1179648,16384,0 -r3723,495:37855564,49800853:1179648,16384,0 +g3764,1:36675916,49800853 +(3764,1:36675916,49800853:1179648,16384,0 +r3764,481:37855564,49800853:1179648,16384,0 ) ) -k3723,495:3078556,49800853:-34777008 +k3764,481:3078556,49800853:-34777008 ) ] -g3723,495:6630773,4812305 -g3723,495:6630773,4812305 -g3723,495:10190688,4812305 -g3723,495:12088610,4812305 -g3723,495:12903877,4812305 -g3723,495:13517294,4812305 -g3723,495:15860861,4812305 -k3723,495:31387652,4812305:15526791 -) -) -] -[3723,495:6630773,45706769:25952256,40108032,0 -(3723,495:6630773,45706769:25952256,40108032,0 -(3723,495:6630773,45706769:0,0,0 -g3723,495:6630773,45706769 -) -[3723,495:6630773,45706769:25952256,40108032,0 -(3723,495:6630773,45706769:25952256,40108032,126483 -[3723,495:6630773,45706769:11829248,40108032,102891 -(3723,391:6630773,6254097:11829248,505283,134348 -h3723,390:6630773,6254097:0,0,0 -g3723,390:13721768,6254097 -k3723,391:16688583,6254097:1771438 -k3723,391:18460021,6254097:1771438 -) -(3723,392:6630773,7099141:11829248,505283,126483 -h3723,391:6630773,7099141:0,0,0 -g3723,391:13326586,7099141 -k3723,392:16490992,7099141:1969029 -k3723,392:18460021,7099141:1969029 -) -(3723,393:6630773,7944185:11829248,505283,126483 -h3723,392:6630773,7944185:0,0,0 -g3723,392:9769947,7944185 -k3723,393:14712673,7944185:3747349 -k3723,393:18460021,7944185:3747348 -) -(3723,394:6630773,8789229:11829248,505283,126483 -h3723,393:6630773,8789229:0,0,0 -g3723,393:10165129,8789229 -g3723,393:11733405,8789229 -k3723,394:15694402,8789229:2765620 -k3723,394:18460021,8789229:2765619 -) -(3723,395:6630773,9634273:11829248,505283,126483 -h3723,394:6630773,9634273:0,0,0 -g3723,394:10560311,9634273 -g3723,394:12128587,9634273 -k3723,395:15891993,9634273:2568029 -k3723,395:18460021,9634273:2568028 -) -(3723,396:6630773,10479317:11829248,505283,126483 -h3723,395:6630773,10479317:0,0,0 -g3723,395:12931403,10479317 -k3723,396:16293401,10479317:2166621 -k3723,396:18460021,10479317:2166620 -) -(3723,398:6630773,11324361:11829248,505283,126483 -h3723,396:6630773,11324361:0,0,0 -g3723,396:9769947,11324361 -g3723,396:10939764,11324361 -g3723,396:12109581,11324361 -g3723,396:13279398,11324361 -g3723,396:14449215,11324361 -g3723,396:16017491,11324361 -k3723,396:18460021,11324361:1073483 -) -(3723,398:9252213,12165849:9207808,485622,102891 -g3723,396:10820489,12165849 -g3723,396:12388765,12165849 -g3723,396:13957041,12165849 -g3723,397:15525317,12165849 -k3723,398:17590358,12165849:869664 -k3723,398:18460021,12165849:869663 -) -(3723,399:6630773,13010893:11829248,505283,126483 -h3723,398:6630773,13010893:0,0,0 -g3723,398:9374765,13010893 -k3723,399:14515082,13010893:3944940 -k3723,399:18460021,13010893:3944939 -) -(3723,400:6630773,13855937:11829248,505283,126483 -h3723,399:6630773,13855937:0,0,0 -g3723,399:8584400,13855937 -g3723,399:10152676,13855937 -g3723,399:11720952,13855937 -k3723,400:15688175,13855937:2771846 -k3723,400:18460021,13855937:2771846 -) -(3723,401:6630773,14700981:11829248,513147,126483 -h3723,400:6630773,14700981:0,0,0 -g3723,400:9769947,14700981 -k3723,401:14712673,14700981:3747349 -k3723,401:18460021,14700981:3747348 -) -(3723,402:6630773,15546024:11829248,505283,126483 -h3723,401:6630773,15546024:0,0,0 -g3723,401:10560311,15546024 -g3723,401:12128587,15546024 -k3723,402:15891993,15546024:2568029 -k3723,402:18460021,15546024:2568028 -) -(3723,406:6630773,17105694:11829248,505283,126483 -h3723,405:6630773,17105694:0,0,0 -g3723,405:10165129,17105694 -k3723,406:14910264,17105694:3549758 -k3723,406:18460021,17105694:3549757 -) -(3723,407:6630773,17950738:11829248,505283,126483 -h3723,406:6630773,17950738:0,0,0 -g3723,406:10165129,17950738 -k3723,407:14910264,17950738:3549758 -k3723,407:18460021,17950738:3549757 -) -(3723,408:6630773,18795781:11829248,513147,126483 -h3723,407:6630773,18795781:0,0,0 -g3723,407:8584400,18795781 -k3723,408:14119899,18795781:4340122 -k3723,408:18460021,18795781:4340122 -) -(3723,409:6630773,19640825:11829248,505283,126483 -h3723,408:6630773,19640825:0,0,0 -g3723,408:10165129,19640825 -k3723,409:14910264,19640825:3549758 -k3723,409:18460021,19640825:3549757 -) -(3723,410:6630773,20485869:11829248,505283,126483 -h3723,409:6630773,20485869:0,0,0 -g3723,409:11350675,20485869 -k3723,410:15503037,20485869:2956985 -k3723,410:18460021,20485869:2956984 -) -(3723,411:6630773,21330913:11829248,505283,126483 -h3723,410:6630773,21330913:0,0,0 -g3723,410:9769947,21330913 -g3723,410:11338223,21330913 -k3723,411:15496811,21330913:2963211 -k3723,411:18460021,21330913:2963210 -) -(3723,412:6630773,22175957:11829248,505283,126483 -h3723,411:6630773,22175957:0,0,0 -g3723,411:9769947,22175957 -k3723,412:14712673,22175957:3747349 -k3723,412:18460021,22175957:3747348 -) -(3723,413:6630773,23021001:11829248,505283,126483 -h3723,412:6630773,23021001:0,0,0 -g3723,412:8584400,23021001 -k3723,413:14119899,23021001:4340122 -k3723,413:18460021,23021001:4340122 -) -(3723,414:6630773,23866045:11829248,505283,126483 -h3723,413:6630773,23866045:0,0,0 -g3723,413:10955493,23866045 -k3723,414:15305446,23866045:3154576 -k3723,414:18460021,23866045:3154575 -) -(3723,415:6630773,24711089:11829248,513147,126483 -h3723,414:6630773,24711089:0,0,0 -g3723,414:9769947,24711089 -k3723,415:14712673,24711089:3747349 -k3723,415:18460021,24711089:3747348 -) -(3723,419:6630773,26270758:11829248,505283,134348 -h3723,418:6630773,26270758:0,0,0 -g3723,418:9769947,26270758 -k3723,419:14712673,26270758:3747349 -k3723,419:18460021,26270758:3747348 -) -(3723,420:6630773,27115802:11829248,505283,102891 -h3723,419:6630773,27115802:0,0,0 -g3723,419:10165129,27115802 -k3723,420:14910264,27115802:3549758 -k3723,420:18460021,27115802:3549757 -) -(3723,421:6630773,27960846:11829248,505283,126483 -h3723,420:6630773,27960846:0,0,0 -g3723,420:10165129,27960846 -k3723,421:14910264,27960846:3549758 -k3723,421:18460021,27960846:3549757 -) -(3723,422:6630773,28805890:11829248,505283,102891 -h3723,421:6630773,28805890:0,0,0 -g3723,421:10955493,28805890 -g3723,421:14046826,28805890 -g3723,421:15615102,28805890 -k3723,422:17635250,28805890:824771 -k3723,422:18460021,28805890:824771 -) -(3723,423:6630773,29650934:11829248,505283,102891 -h3723,422:6630773,29650934:0,0,0 -g3723,422:11350675,29650934 -g3723,422:12918951,29650934 -g3723,422:14487227,29650934 -k3723,423:17071313,29650934:1388709 -k3723,423:18460021,29650934:1388708 -) -(3723,424:6630773,30495978:11829248,513147,102891 -h3723,423:6630773,30495978:0,0,0 -g3723,423:12536221,30495978 -g3723,423:14104497,30495978 -k3723,424:16879948,30495978:1580074 -k3723,424:18460021,30495978:1580073 -) -(3723,425:6630773,31341022:11829248,513147,102891 -h3723,424:6630773,31341022:0,0,0 -g3723,424:10955493,31341022 -k3723,425:15305446,31341022:3154576 -k3723,425:18460021,31341022:3154575 -) -(3723,426:6630773,32186066:11829248,505283,126483 -h3723,425:6630773,32186066:0,0,0 -g3723,425:11350675,32186066 -k3723,426:15503037,32186066:2956985 -k3723,426:18460021,32186066:2956984 -) -(3723,427:6630773,33031110:11829248,505283,126483 -h3723,426:6630773,33031110:0,0,0 -g3723,426:12141039,33031110 -k3723,427:15898219,33031110:2561803 -k3723,427:18460021,33031110:2561802 -) -(3723,428:6630773,33876154:11829248,505283,102891 -h3723,427:6630773,33876154:0,0,0 -g3723,427:11745857,33876154 -g3723,427:13314133,33876154 -k3723,428:17246294,33876154:1213728 -k3723,428:18460021,33876154:1213727 -) -(3723,429:6630773,34721198:11829248,505283,102891 -h3723,428:6630773,34721198:0,0,0 -g3723,428:11350675,34721198 -k3723,429:15503037,34721198:2956985 -k3723,429:18460021,34721198:2956984 -) -(3723,430:6630773,35566242:11829248,505283,102891 -h3723,429:6630773,35566242:0,0,0 -g3723,429:10955493,35566242 -g3723,429:12523769,35566242 -k3723,430:16089584,35566242:2370438 -k3723,430:18460021,35566242:2370437 -) -(3723,431:6630773,36411286:11829248,505283,102891 -h3723,430:6630773,36411286:0,0,0 -g3723,430:11745857,36411286 -k3723,431:15700628,36411286:2759394 -k3723,431:18460021,36411286:2759393 -) -(3723,432:6630773,37256330:11829248,505283,102891 -h3723,431:6630773,37256330:0,0,0 -g3723,431:11745857,37256330 -k3723,432:15700628,37256330:2759394 -k3723,432:18460021,37256330:2759393 -) -(3723,433:6630773,38101373:11829248,513147,102891 -h3723,432:6630773,38101373:0,0,0 -g3723,432:11350675,38101373 -k3723,433:15503037,38101373:2956985 -k3723,433:18460021,38101373:2956984 -) -(3723,434:6630773,38946417:11829248,513147,102891 -h3723,433:6630773,38946417:0,0,0 -g3723,433:10955493,38946417 -k3723,434:15305446,38946417:3154576 -k3723,434:18460021,38946417:3154575 -) -(3723,435:6630773,39791461:11829248,505283,102891 -h3723,434:6630773,39791461:0,0,0 -g3723,434:11350675,39791461 -k3723,435:15503037,39791461:2956985 -k3723,435:18460021,39791461:2956984 -) -(3723,436:6630773,40636505:11829248,505283,102891 -h3723,435:6630773,40636505:0,0,0 -g3723,435:11745857,40636505 -k3723,436:15700628,40636505:2759394 -k3723,436:18460021,40636505:2759393 -) -(3723,437:6630773,41481549:11829248,505283,102891 -h3723,436:6630773,41481549:0,0,0 -g3723,436:10955493,41481549 -k3723,437:15305446,41481549:3154576 -k3723,437:18460021,41481549:3154575 -) -(3723,438:6630773,42326593:11829248,505283,102891 -h3723,437:6630773,42326593:0,0,0 -g3723,437:10955493,42326593 -k3723,438:15305446,42326593:3154576 -k3723,438:18460021,42326593:3154575 -) -(3723,439:6630773,43171637:11829248,505283,102891 -h3723,438:6630773,43171637:0,0,0 -g3723,438:11745857,43171637 -g3723,438:13314133,43171637 -k3723,439:16484766,43171637:1975256 -k3723,439:18460021,43171637:1975255 -) -(3723,440:6630773,44016681:11829248,505283,102891 -h3723,439:6630773,44016681:0,0,0 -g3723,439:12141039,44016681 -g3723,439:13709315,44016681 -k3723,440:16682357,44016681:1777665 -k3723,440:18460021,44016681:1777664 -) -(3723,441:6630773,44861725:11829248,505283,102891 -h3723,440:6630773,44861725:0,0,0 -g3723,440:10955493,44861725 -k3723,441:15305446,44861725:3154576 -k3723,441:18460021,44861725:3154575 -) -(3723,442:6630773,45706769:11829248,505283,102891 -h3723,441:6630773,45706769:0,0,0 -g3723,441:11350675,45706769 -k3723,442:15503037,45706769:2956985 -k3723,442:18460021,45706769:2956984 -) -] -k3723,495:19606901,45706769:1146880 -r3723,495:19606901,45706769:0,40234515,126483 -k3723,495:20753781,45706769:1146880 -[3723,495:20753781,45706769:11829248,40108032,126483 -(3723,443:20753781,6254097:11829248,505283,102891 -h3723,442:20753781,6254097:0,0,0 -g3723,442:24683319,6254097 -k3723,443:29230863,6254097:3352167 -k3723,443:32583029,6254097:3352166 -) -(3723,444:20753781,7097026:11829248,505283,102891 -h3723,443:20753781,7097026:0,0,0 -g3723,443:23102590,7097026 -k3723,444:28440498,7097026:4142531 -k3723,444:32583029,7097026:4142531 -) -(3723,445:20753781,7939955:11829248,505283,102891 -h3723,444:20753781,7939955:0,0,0 -g3723,444:24288137,7939955 -k3723,445:28834042,7939955:3748987 -k3723,445:32583029,7939955:3748987 -) -(3723,446:20753781,8782884:11829248,505283,102891 -h3723,445:20753781,8782884:0,0,0 -g3723,445:24288137,8782884 -k3723,446:29033272,8782884:3549758 -k3723,446:32583029,8782884:3549757 -) -(3723,447:20753781,9625813:11829248,505283,102891 -h3723,446:20753781,9625813:0,0,0 -g3723,446:24683319,9625813 -k3723,447:29031633,9625813:3551396 -k3723,447:32583029,9625813:3551396 -) -(3723,448:20753781,10468742:11829248,505283,126483 -h3723,447:20753781,10468742:0,0,0 -g3723,447:23102590,10468742 -g3723,447:24272407,10468742 -k3723,448:28826177,10468742:3756852 -k3723,448:32583029,10468742:3756852 -) -(3723,449:20753781,11311671:11829248,485622,126483 -h3723,448:20753781,11311671:0,0,0 -g3723,448:23497773,11311671 -g3723,448:25066049,11311671 -g3723,448:26634325,11311671 -g3723,448:28202601,11311671 -k3723,449:30990504,11311671:1592526 -k3723,449:32583029,11311671:1592525 -) -(3723,450:20753781,12154600:11829248,505283,126483 -h3723,449:20753781,12154600:0,0,0 -g3723,449:24683319,12154600 -k3723,450:29230863,12154600:3352167 -k3723,450:32583029,12154600:3352166 -) -(3723,451:20753781,12997529:11829248,505283,102891 -h3723,450:20753781,12997529:0,0,0 -g3723,450:23892955,12997529 -k3723,451:28835681,12997529:3747349 -k3723,451:32583029,12997529:3747348 -) -(3723,452:20753781,13840458:11829248,505283,102891 -h3723,451:20753781,13840458:0,0,0 -g3723,451:25473683,13840458 -g3723,451:27041959,13840458 -k3723,452:30410183,13840458:2172847 -k3723,452:32583029,13840458:2172846 -) -(3723,453:20753781,14683387:11829248,505283,102891 -h3723,452:20753781,14683387:0,0,0 -g3723,452:24288137,14683387 -k3723,453:29033272,14683387:3549758 -k3723,453:32583029,14683387:3549757 -) -(3723,454:20753781,15526316:11829248,505283,102891 -h3723,453:20753781,15526316:0,0,0 -g3723,453:23102590,15526316 -k3723,454:28241269,15526316:4341761 -k3723,454:32583029,15526316:4341760 -) -(3723,455:20753781,16369246:11829248,513147,102891 -h3723,454:20753781,16369246:0,0,0 -g3723,454:22707408,16369246 -k3723,455:28242907,16369246:4340122 -k3723,455:32583029,16369246:4340122 -) -(3723,456:20753781,17212175:11829248,505283,134348 -h3723,455:20753781,17212175:0,0,0 -g3723,455:23102590,17212175 -k3723,456:28440498,17212175:4142531 -k3723,456:32583029,17212175:4142531 -) -(3723,457:20753781,18055104:11829248,505283,134348 -h3723,456:20753781,18055104:0,0,0 -g3723,456:25868865,18055104 -k3723,457:29823636,18055104:2759394 -k3723,457:32583029,18055104:2759393 -) -(3723,458:20753781,18898033:11829248,505283,102891 -h3723,457:20753781,18898033:0,0,0 -g3723,457:23102590,18898033 -g3723,457:24272407,18898033 -k3723,458:29025407,18898033:3557623 -k3723,458:32583029,18898033:3557622 -) -(3723,459:20753781,19740962:11829248,505283,102891 -h3723,458:20753781,19740962:0,0,0 -g3723,458:23102590,19740962 -k3723,459:28440498,19740962:4142531 -k3723,459:32583029,19740962:4142531 -) -(3723,460:20753781,20583891:11829248,505283,102891 -h3723,459:20753781,20583891:0,0,0 -g3723,459:24288137,20583891 -k3723,460:29033272,20583891:3549758 -k3723,460:32583029,20583891:3549757 -) -(3723,461:20753781,21426820:11829248,505283,102891 -h3723,460:20753781,21426820:0,0,0 -g3723,460:22707408,21426820 -k3723,461:28043678,21426820:4539352 -k3723,461:32583029,21426820:4539351 -) -(3723,462:20753781,22269749:11829248,505283,102891 -h3723,461:20753781,22269749:0,0,0 -g3723,461:25473683,22269749 -k3723,462:29626045,22269749:2956985 -k3723,462:32583029,22269749:2956984 -) -(3723,463:20753781,23112678:11829248,505283,102891 -h3723,462:20753781,23112678:0,0,0 -g3723,462:23892955,23112678 -g3723,462:25461231,23112678 -g3723,462:27029507,23112678 -k3723,463:30403957,23112678:2179073 -k3723,463:32583029,23112678:2179072 -) -(3723,464:20753781,23955607:11829248,505283,102891 -h3723,463:20753781,23955607:0,0,0 -g3723,463:23892955,23955607 -k3723,464:28636451,23955607:3946578 -k3723,464:32583029,23955607:3946578 -) -(3723,465:20753781,24798536:11829248,505283,126483 -h3723,464:20753781,24798536:0,0,0 -g3723,464:23892955,24798536 -k3723,465:28835681,24798536:3747349 -k3723,465:32583029,24798536:3747348 -) -(3723,466:20753781,25641465:11829248,505283,102891 -h3723,465:20753781,25641465:0,0,0 -g3723,465:22707408,25641465 -k3723,466:28242907,25641465:4340122 -k3723,466:32583029,25641465:4340122 -) -(3723,467:20753781,26484394:11829248,513147,102891 -h3723,466:20753781,26484394:0,0,0 -g3723,466:23892955,26484394 -g3723,466:25461231,26484394 -k3723,467:29619819,26484394:2963211 -k3723,467:32583029,26484394:2963210 -) -(3723,468:20753781,27327323:11829248,505283,102891 -h3723,467:20753781,27327323:0,0,0 -g3723,467:24288137,27327323 -k3723,468:29033272,27327323:3549758 -k3723,468:32583029,27327323:3549757 -) -(3723,472:20753781,28849629:11829248,505283,126483 -h3723,471:20753781,28849629:0,0,0 -g3723,471:24288137,28849629 -k3723,472:29033272,28849629:3549758 -k3723,472:32583029,28849629:3549757 -) -(3723,473:20753781,29692558:11829248,505283,126483 -h3723,472:20753781,29692558:0,0,0 -g3723,472:24288137,29692558 -g3723,472:25856413,29692558 -k3723,473:30578938,29692558:2004092 -k3723,473:32583029,29692558:2004091 -) -(3723,474:20753781,30535487:11829248,505283,102891 -h3723,473:20753781,30535487:0,0,0 -g3723,473:23497773,30535487 -k3723,474:28638090,30535487:3944940 -k3723,474:32583029,30535487:3944939 -) -(3723,475:20753781,31378416:11829248,505283,102891 -h3723,474:20753781,31378416:0,0,0 -g3723,474:24683319,31378416 -k3723,475:29230863,31378416:3352167 -k3723,475:32583029,31378416:3352166 -) -(3723,476:20753781,32221345:11829248,505283,102891 -h3723,475:20753781,32221345:0,0,0 -g3723,475:29030322,32221345 -k3723,476:31404364,32221345:1178665 -k3723,476:32583029,32221345:1178665 -) -(3723,477:20753781,33064274:11829248,505283,102891 -h3723,476:20753781,33064274:0,0,0 -g3723,476:29030322,33064274 -k3723,477:31404364,33064274:1178665 -k3723,477:32583029,33064274:1178665 -) -(3723,478:20753781,33907203:11829248,505283,102891 -h3723,477:20753781,33907203:0,0,0 -g3723,477:30611050,33907203 -k3723,477:32583029,33907203:602932 -) -(3723,478:23375221,34748691:9207808,485622,11795 -k3723,478:28576814,34748691:4006216 -k3723,478:32583029,34748691:4006215 -) -(3723,479:20753781,35591621:11829248,505283,102891 -h3723,478:20753781,35591621:0,0,0 -g3723,478:28239958,35591621 -k3723,479:31009182,35591621:1573847 -k3723,479:32583029,35591621:1573847 -) -(3723,480:20753781,36434550:11829248,505283,102891 -h3723,479:20753781,36434550:0,0,0 -g3723,479:29820686,36434550 -k3723,480:31799546,36434550:783483 -k3723,480:32583029,36434550:783483 -) -(3723,481:20753781,37277479:11829248,505283,102891 -h3723,480:20753781,37277479:0,0,0 -k3723,480:29820031,37277479:198574 -k3723,480:31387652,37277479:198574 -k3723,481:32583029,37277479:0 -k3723,481:32583029,37277479:0 -) -(3723,482:20753781,38120408:11829248,505283,102891 -h3723,481:20753781,38120408:0,0,0 -g3723,481:30215868,38120408 -k3723,482:31997137,38120408:585892 -k3723,482:32583029,38120408:585892 -) -(3723,483:20753781,38963337:11829248,505283,134348 -h3723,482:20753781,38963337:0,0,0 -k3723,482:29820031,38963337:198574 -k3723,482:31387652,38963337:198574 -k3723,483:32583029,38963337:0 -k3723,483:32583029,38963337:0 -) -(3723,484:20753781,39806266:11829248,505283,134348 -h3723,483:20753781,39806266:0,0,0 -g3723,483:30215868,39806266 -k3723,484:31997137,39806266:585892 -k3723,484:32583029,39806266:585892 -) -(3723,485:20753781,40649195:11829248,505283,134348 -h3723,484:20753781,40649195:0,0,0 -g3723,484:30215868,40649195 -k3723,485:31997137,40649195:585892 -k3723,485:32583029,40649195:585892 -) -(3723,486:20753781,41492124:11829248,505283,134348 -h3723,485:20753781,41492124:0,0,0 -g3723,485:28239958,41492124 -k3723,486:31009182,41492124:1573847 -k3723,486:32583029,41492124:1573847 -) -(3723,487:20753781,42335053:11829248,505283,102891 -h3723,486:20753781,42335053:0,0,0 -g3723,486:27844776,42335053 -k3723,487:30811591,42335053:1771438 -k3723,487:32583029,42335053:1771438 -) -(3723,488:20753781,43177982:11829248,505283,126483 -h3723,487:20753781,43177982:0,0,0 -k3723,487:29820031,43177982:198574 -k3723,487:31387652,43177982:198574 -k3723,488:32583029,43177982:0 -k3723,488:32583029,43177982:0 -) -(3723,489:20753781,44020911:11829248,505283,102891 -h3723,488:20753781,44020911:0,0,0 -g3723,488:30215868,44020911 -k3723,489:31997137,44020911:585892 -k3723,489:32583029,44020911:585892 -) -(3723,490:20753781,44863840:11829248,505283,102891 -h3723,489:20753781,44863840:0,0,0 -g3723,489:30215868,44863840 -k3723,490:31997137,44863840:585892 -k3723,490:32583029,44863840:585892 -) -(3723,491:20753781,45706769:11829248,513147,126483 -h3723,490:20753781,45706769:0,0,0 -g3723,490:29425504,45706769 -k3723,491:31601955,45706769:981074 -k3723,491:32583029,45706769:981074 -) -] -(3723,495:32583029,45706769:0,355205,126483 -h3723,495:32583029,45706769:420741,355205,126483 -k3723,495:32583029,45706769:-420741 -) -) -] -(3723,495:32583029,45706769:0,0,0 -g3723,495:32583029,45706769 +g3764,481:6630773,4812305 +g3764,481:6630773,4812305 +g3764,481:10190688,4812305 +g3764,481:12088610,4812305 +g3764,481:12903877,4812305 +g3764,481:13517294,4812305 +g3764,481:15860861,4812305 +k3764,481:31387652,4812305:15526791 ) ) ] -(3723,495:6630773,47279633:25952256,0,0 -h3723,495:6630773,47279633:25952256,0,0 +[3764,481:6630773,45706769:25952256,40108032,0 +(3764,481:6630773,45706769:25952256,40108032,0 +(3764,481:6630773,45706769:0,0,0 +g3764,481:6630773,45706769 +) +[3764,481:6630773,45706769:25952256,40108032,0 +(3764,481:6630773,45706769:25952256,40108032,126483 +[3764,481:6630773,45706769:11829248,40108032,102891 +(3764,381:6630773,6254097:11829248,530548,132808 +h3764,380:6630773,6254097:0,0,0 +g3764,380:12397924,6254097 +g3764,380:13966200,6254097 +k3764,381:16810799,6254097:1649222 +k3764,381:18460021,6254097:1649222 +) +(3764,382:6630773,7120218:11829248,530548,132808 +h3764,381:6630773,7120218:0,0,0 +g3764,381:9908269,7120218 +k3764,382:14781834,7120218:3678188 +k3764,382:18460021,7120218:3678187 +) +(3764,383:6630773,7986339:11829248,530548,132808 +h3764,382:6630773,7986339:0,0,0 +g3764,382:10323211,7986339 +k3764,383:14989305,7986339:3470717 +k3764,383:18460021,7986339:3470716 +) +(3764,384:6630773,8852460:11829248,530548,132808 +h3764,383:6630773,8852460:0,0,0 +g3764,383:9493326,8852460 +g3764,383:12584659,8852460 +g3764,383:14152935,8852460 +g3764,383:15721211,8852460 +k3764,383:18460021,8852460:1369763 +) +(3764,384:9252213,9717540:9207808,485622,102891 +g3764,383:10820489,9717540 +k3764,384:15237944,9717540:3222078 +k3764,384:18460021,9717540:3222077 +) +(3764,385:6630773,10583662:11829248,530548,132808 +h3764,384:6630773,10583662:0,0,0 +g3764,384:10323211,10583662 +k3764,385:14790075,10583662:3669946 +k3764,385:18460021,10583662:3669946 +) +(3764,386:6630773,11449783:11829248,530548,132808 +h3764,385:6630773,11449783:0,0,0 +g3764,385:11568039,11449783 +k3764,386:15611719,11449783:2848303 +k3764,386:18460021,11449783:2848302 +) +(3764,387:6630773,12315904:11829248,530548,132808 +h3764,386:6630773,12315904:0,0,0 +g3764,386:9908269,12315904 +g3764,386:11476545,12315904 +k3764,387:15565972,12315904:2894050 +k3764,387:18460021,12315904:2894049 +) +(3764,388:6630773,13182025:11829248,530548,132808 +h3764,387:6630773,13182025:0,0,0 +g3764,387:9493326,13182025 +k3764,388:14574362,13182025:3885659 +k3764,388:18460021,13182025:3885659 +) +(3764,389:6630773,14048146:11829248,530548,132808 +h3764,388:6630773,14048146:0,0,0 +g3764,388:14887578,14048146 +g3764,388:16455854,14048146 +k3764,389:18055626,14048146:404395 +k3764,389:18460021,14048146:404395 +) +(3764,390:6630773,14914267:11829248,530548,141066 +h3764,389:6630773,14914267:0,0,0 +g3764,389:14057693,14914267 +k3764,390:16856546,14914267:1603476 +k3764,390:18460021,14914267:1603475 +) +(3764,391:6630773,15780388:11829248,530548,132808 +h3764,390:6630773,15780388:0,0,0 +g3764,390:13642751,15780388 +k3764,391:16649075,15780388:1810947 +k3764,391:18460021,15780388:1810946 +) +(3764,392:6630773,16646510:11829248,485622,102891 +h3764,391:6630773,16646510:0,0,0 +g3764,391:9908269,16646510 +k3764,392:14582604,16646510:3877417 +k3764,392:18460021,16646510:3877417 +) +(3764,393:6630773,17512631:11829248,530548,102891 +h3764,392:6630773,17512631:0,0,0 +g3764,392:9908269,17512631 +k3764,393:14582604,17512631:3877417 +k3764,393:18460021,17512631:3877417 +) +(3764,394:6630773,18378752:11829248,530548,132808 +h3764,393:6630773,18378752:0,0,0 +g3764,393:9908269,18378752 +k3764,394:14781834,18378752:3678188 +k3764,394:18460021,18378752:3678187 +) +(3764,395:6630773,19244873:11829248,530548,132808 +h3764,394:6630773,19244873:0,0,0 +g3764,394:10323211,19244873 +g3764,394:11891487,19244873 +k3764,395:15773443,19244873:2686579 +k3764,395:18460021,19244873:2686578 +) +(3764,396:6630773,20110994:11829248,530548,132808 +h3764,395:6630773,20110994:0,0,0 +g3764,395:10738154,20110994 +g3764,395:12306430,20110994 +k3764,396:15980914,20110994:2479107 +k3764,396:18460021,20110994:2479107 +) +(3764,397:6630773,20977115:11829248,530548,132808 +h3764,396:6630773,20977115:0,0,0 +g3764,396:13227808,20977115 +k3764,397:16441603,20977115:2018418 +k3764,397:18460021,20977115:2018418 +) +(3764,399:6630773,21843236:11829248,530548,132808 +h3764,397:6630773,21843236:0,0,0 +g3764,397:9908269,21843236 +g3764,397:11078086,21843236 +g3764,397:12247903,21843236 +g3764,397:13417720,21843236 +g3764,397:14587537,21843236 +g3764,397:16155813,21843236 +k3764,397:18460021,21843236:935161 +) +(3764,399:9252213,22708316:9207808,485622,102891 +g3764,397:10820489,22708316 +g3764,397:12388765,22708316 +g3764,397:13957041,22708316 +g3764,398:15525317,22708316 +k3764,399:17590358,22708316:869664 +k3764,399:18460021,22708316:869663 +) +(3764,400:6630773,23574437:11829248,530548,132808 +h3764,399:6630773,23574437:0,0,0 +g3764,399:9493326,23574437 +k3764,400:14574362,23574437:3885659 +k3764,400:18460021,23574437:3885659 +) +(3764,401:6630773,24440559:11829248,530548,132808 +h3764,400:6630773,24440559:0,0,0 +g3764,400:8663442,24440559 +g3764,400:10231718,24440559 +g3764,400:11799994,24440559 +k3764,401:15727696,24440559:2732325 +k3764,401:18460021,24440559:2732325 +) +(3764,402:6630773,25306680:11829248,538806,132808 +h3764,401:6630773,25306680:0,0,0 +g3764,401:9908269,25306680 +k3764,402:14781834,25306680:3678188 +k3764,402:18460021,25306680:3678187 +) +(3764,403:6630773,26172801:11829248,530548,132808 +h3764,402:6630773,26172801:0,0,0 +g3764,402:10738154,26172801 +g3764,402:12306430,26172801 +k3764,403:15980914,26172801:2479107 +k3764,403:18460021,26172801:2479107 +) +(3764,407:6630773,27711634:11829248,530548,132808 +h3764,406:6630773,27711634:0,0,0 +g3764,406:10323211,27711634 +k3764,407:14989305,27711634:3470717 +k3764,407:18460021,27711634:3470716 +) +(3764,408:6630773,28577755:11829248,530548,132808 +h3764,407:6630773,28577755:0,0,0 +g3764,407:10323211,28577755 +k3764,408:14989305,28577755:3470717 +k3764,408:18460021,28577755:3470716 +) +(3764,409:6630773,29443876:11829248,538806,132808 +h3764,408:6630773,29443876:0,0,0 +g3764,408:8663442,29443876 +k3764,409:14159420,29443876:4300601 +k3764,409:18460021,29443876:4300601 +) +(3764,410:6630773,30309998:11829248,530548,132808 +h3764,409:6630773,30309998:0,0,0 +g3764,409:10323211,30309998 +k3764,410:14989305,30309998:3470717 +k3764,410:18460021,30309998:3470716 +) +(3764,411:6630773,31176119:11829248,530548,132808 +h3764,410:6630773,31176119:0,0,0 +g3764,410:11568039,31176119 +k3764,411:15611719,31176119:2848303 +k3764,411:18460021,31176119:2848302 +) +(3764,412:6630773,32042240:11829248,530548,132808 +h3764,411:6630773,32042240:0,0,0 +g3764,411:9908269,32042240 +g3764,411:11476545,32042240 +k3764,412:15565972,32042240:2894050 +k3764,412:18460021,32042240:2894049 +) +(3764,413:6630773,32908361:11829248,530548,132808 +h3764,412:6630773,32908361:0,0,0 +g3764,412:9908269,32908361 +k3764,413:14781834,32908361:3678188 +k3764,413:18460021,32908361:3678187 +) +(3764,414:6630773,33774482:11829248,530548,132808 +h3764,413:6630773,33774482:0,0,0 +g3764,413:8663442,33774482 +k3764,414:14159420,33774482:4300601 +k3764,414:18460021,33774482:4300601 +) +(3764,415:6630773,34640603:11829248,530548,132808 +h3764,414:6630773,34640603:0,0,0 +g3764,414:11153096,34640603 +k3764,415:15404247,34640603:3055774 +k3764,415:18460021,34640603:3055774 +) +(3764,416:6630773,35506724:11829248,538806,132808 +h3764,415:6630773,35506724:0,0,0 +g3764,415:9908269,35506724 +k3764,416:14781834,35506724:3678188 +k3764,416:18460021,35506724:3678187 +) +(3764,420:6630773,37045558:11829248,530548,141066 +h3764,419:6630773,37045558:0,0,0 +g3764,419:9908269,37045558 +k3764,420:14781834,37045558:3678188 +k3764,420:18460021,37045558:3678187 +) +(3764,421:6630773,37911679:11829248,530548,102891 +h3764,420:6630773,37911679:0,0,0 +g3764,420:10323211,37911679 +k3764,421:14989305,37911679:3470717 +k3764,421:18460021,37911679:3470716 +) +(3764,422:6630773,38777800:11829248,530548,132808 +h3764,421:6630773,38777800:0,0,0 +g3764,421:10323211,38777800 +k3764,422:14989305,38777800:3470717 +k3764,422:18460021,38777800:3470716 +) +(3764,423:6630773,39643921:11829248,530548,102891 +h3764,422:6630773,39643921:0,0,0 +g3764,422:11153096,39643921 +k3764,423:16165775,39643921:2294246 +k3764,423:18460021,39643921:2294246 +) +(3764,424:6630773,40510042:11829248,530548,102891 +h3764,423:6630773,40510042:0,0,0 +g3764,423:11568039,40510042 +k3764,424:16373247,40510042:2086775 +k3764,424:18460021,40510042:2086774 +) +(3764,425:6630773,41376163:11829248,538806,102891 +h3764,424:6630773,41376163:0,0,0 +g3764,424:12812866,41376163 +g3764,424:14381142,41376163 +k3764,425:17018270,41376163:1441751 +k3764,425:18460021,41376163:1441751 +) +(3764,426:6630773,42242284:11829248,538806,102891 +h3764,425:6630773,42242284:0,0,0 +g3764,425:11153096,42242284 +k3764,426:15404247,42242284:3055774 +k3764,426:18460021,42242284:3055774 +) +(3764,427:6630773,43108406:11829248,530548,132808 +h3764,426:6630773,43108406:0,0,0 +g3764,426:11568039,43108406 +k3764,427:15611719,43108406:2848303 +k3764,427:18460021,43108406:2848302 +) +(3764,428:6630773,43974527:11829248,530548,132808 +h3764,427:6630773,43974527:0,0,0 +g3764,427:12397924,43974527 +k3764,428:16026661,43974527:2433360 +k3764,428:18460021,43974527:2433360 +) +(3764,429:6630773,44840648:11829248,530548,102891 +h3764,428:6630773,44840648:0,0,0 +g3764,428:11982981,44840648 +g3764,428:13551257,44840648 +k3764,429:17364856,44840648:1095166 +k3764,429:18460021,44840648:1095165 +) +(3764,430:6630773,45706769:11829248,530548,102891 +h3764,429:6630773,45706769:0,0,0 +g3764,429:11568039,45706769 +k3764,430:15611719,45706769:2848303 +k3764,430:18460021,45706769:2848302 +) +] +k3764,481:19606901,45706769:1146880 +r3764,481:19606901,45706769:0,40234515,126483 +k3764,481:20753781,45706769:1146880 +[3764,481:20753781,45706769:11829248,40108032,102891 +(3764,431:20753781,6254097:11829248,530548,102891 +h3764,430:20753781,6254097:0,0,0 +g3764,430:25276104,6254097 +g3764,430:26844380,6254097 +k3764,431:30311393,6254097:2271636 +k3764,431:32583029,6254097:2271636 +) +(3764,432:20753781,7131273:11829248,530548,102891 +h3764,431:20753781,7131273:0,0,0 +g3764,431:26105989,7131273 +k3764,432:29942198,7131273:2640832 +k3764,432:32583029,7131273:2640831 +) +(3764,433:20753781,8008448:11829248,530548,102891 +h3764,432:20753781,8008448:0,0,0 +g3764,432:26105989,8008448 +k3764,433:29942198,8008448:2640832 +k3764,433:32583029,8008448:2640831 +) +(3764,434:20753781,8885624:11829248,538806,102891 +h3764,433:20753781,8885624:0,0,0 +g3764,433:25691047,8885624 +k3764,434:29734727,8885624:2848303 +k3764,434:32583029,8885624:2848302 +) +(3764,435:20753781,9762799:11829248,538806,102891 +h3764,434:20753781,9762799:0,0,0 +g3764,434:25276104,9762799 +k3764,435:29527255,9762799:3055774 +k3764,435:32583029,9762799:3055774 +) +(3764,436:20753781,10639975:11829248,530548,102891 +h3764,435:20753781,10639975:0,0,0 +g3764,435:25691047,10639975 +k3764,436:29734727,10639975:2848303 +k3764,436:32583029,10639975:2848302 +) +(3764,437:20753781,11517150:11829248,530548,102891 +h3764,436:20753781,11517150:0,0,0 +g3764,436:26105989,11517150 +k3764,437:29942198,11517150:2640832 +k3764,437:32583029,11517150:2640831 +) +(3764,438:20753781,12394326:11829248,530548,102891 +h3764,437:20753781,12394326:0,0,0 +g3764,437:25276104,12394326 +k3764,438:29527255,12394326:3055774 +k3764,438:32583029,12394326:3055774 +) +(3764,439:20753781,13271501:11829248,530548,102891 +h3764,438:20753781,13271501:0,0,0 +g3764,438:25276104,13271501 +k3764,439:29527255,13271501:3055774 +k3764,439:32583029,13271501:3055774 +) +(3764,440:20753781,14148677:11829248,530548,102891 +h3764,439:20753781,14148677:0,0,0 +g3764,439:26105989,14148677 +g3764,439:27674265,14148677 +k3764,440:30726336,14148677:1856694 +k3764,440:32583029,14148677:1856693 +) +(3764,441:20753781,15025852:11829248,530548,102891 +h3764,440:20753781,15025852:0,0,0 +g3764,440:26520932,15025852 +g3764,440:28089208,15025852 +k3764,441:30933807,15025852:1649222 +k3764,441:32583029,15025852:1649222 +) +(3764,442:20753781,15903028:11829248,530548,102891 +h3764,441:20753781,15903028:0,0,0 +g3764,441:25276104,15903028 +k3764,442:29527255,15903028:3055774 +k3764,442:32583029,15903028:3055774 +) +(3764,443:20753781,16780203:11829248,530548,102891 +h3764,442:20753781,16780203:0,0,0 +g3764,442:25691047,16780203 +k3764,443:29734727,16780203:2848303 +k3764,443:32583029,16780203:2848302 +) +(3764,444:20753781,17657379:11829248,530548,102891 +h3764,443:20753781,17657379:0,0,0 +g3764,443:24861162,17657379 +k3764,444:29319784,17657379:3263245 +k3764,444:32583029,17657379:3263245 +) +(3764,445:20753781,18534554:11829248,530548,102891 +h3764,444:20753781,18534554:0,0,0 +g3764,444:23201392,18534554 +k3764,445:28489899,18534554:4093130 +k3764,445:32583029,18534554:4093130 +) +(3764,446:20753781,19411730:11829248,530548,102891 +h3764,445:20753781,19411730:0,0,0 +g3764,445:24446219,19411730 +g3764,445:25616036,19411730 +k3764,446:29497992,19411730:3085038 +k3764,446:32583029,19411730:3085037 +) +(3764,447:20753781,20288905:11829248,530548,102891 +h3764,446:20753781,20288905:0,0,0 +g3764,446:24446219,20288905 +k3764,447:29112313,20288905:3470717 +k3764,447:32583029,20288905:3470716 +) +(3764,448:20753781,21166081:11829248,530548,102891 +h3764,447:20753781,21166081:0,0,0 +g3764,447:24861162,21166081 +k3764,448:29120555,21166081:3462475 +k3764,448:32583029,21166081:3462474 +) +(3764,449:20753781,22043256:11829248,530548,132808 +h3764,448:20753781,22043256:0,0,0 +g3764,448:23201392,22043256 +g3764,448:24371209,22043256 +k3764,449:28875578,22043256:3707451 +k3764,449:32583029,22043256:3707451 +) +(3764,450:20753781,22920432:11829248,485622,132808 +h3764,449:20753781,22920432:0,0,0 +g3764,449:23616334,22920432 +g3764,449:25184610,22920432 +g3764,449:26752886,22920432 +g3764,449:28321162,22920432 +k3764,450:31049784,22920432:1533245 +k3764,450:32583029,22920432:1533245 +) +(3764,451:20753781,23797607:11829248,530548,132808 +h3764,450:20753781,23797607:0,0,0 +g3764,450:24861162,23797607 +k3764,451:29319784,23797607:3263245 +k3764,451:32583029,23797607:3263245 +) +(3764,452:20753781,24674783:11829248,530548,102891 +h3764,451:20753781,24674783:0,0,0 +g3764,451:24031277,24674783 +k3764,452:28904842,24674783:3678188 +k3764,452:32583029,24674783:3678187 +) +(3764,453:20753781,25551958:11829248,530548,102891 +h3764,452:20753781,25551958:0,0,0 +g3764,452:25691047,25551958 +g3764,452:27259323,25551958 +k3764,453:30518865,25551958:2064165 +k3764,453:32583029,25551958:2064164 +) +(3764,454:20753781,26429134:11829248,530548,102891 +h3764,453:20753781,26429134:0,0,0 +g3764,453:24446219,26429134 +k3764,454:29112313,26429134:3470717 +k3764,454:32583029,26429134:3470716 +) +(3764,455:20753781,27306309:11829248,530548,102891 +h3764,454:20753781,27306309:0,0,0 +g3764,454:23201392,27306309 +k3764,455:28290670,27306309:4292360 +k3764,455:32583029,27306309:4292359 +) +(3764,456:20753781,28183485:11829248,538806,102891 +h3764,455:20753781,28183485:0,0,0 +g3764,455:22786450,28183485 +k3764,456:28282428,28183485:4300601 +k3764,456:32583029,28183485:4300601 +) +(3764,457:20753781,29060660:11829248,530548,141066 +h3764,456:20753781,29060660:0,0,0 +g3764,456:23201392,29060660 +k3764,457:28489899,29060660:4093130 +k3764,457:32583029,29060660:4093130 +) +(3764,458:20753781,29937836:11829248,530548,141066 +h3764,457:20753781,29937836:0,0,0 +g3764,457:26105989,29937836 +k3764,458:29942198,29937836:2640832 +k3764,458:32583029,29937836:2640831 +) +(3764,459:20753781,30815011:11829248,530548,102891 +h3764,458:20753781,30815011:0,0,0 +g3764,458:23201392,30815011 +g3764,458:24371209,30815011 +k3764,459:29074808,30815011:3508222 +k3764,459:32583029,30815011:3508221 +) +(3764,460:20753781,31692187:11829248,530548,102891 +h3764,459:20753781,31692187:0,0,0 +g3764,459:23201392,31692187 +k3764,460:28489899,31692187:4093130 +k3764,460:32583029,31692187:4093130 +) +(3764,461:20753781,32569362:11829248,530548,102891 +h3764,460:20753781,32569362:0,0,0 +g3764,460:24446219,32569362 +k3764,461:29112313,32569362:3470717 +k3764,461:32583029,32569362:3470716 +) +(3764,462:20753781,33446538:11829248,530548,102891 +h3764,461:20753781,33446538:0,0,0 +g3764,461:22786450,33446538 +k3764,462:28083199,33446538:4499831 +k3764,462:32583029,33446538:4499830 +) +(3764,463:20753781,34323713:11829248,530548,102891 +h3764,462:20753781,34323713:0,0,0 +g3764,462:25691047,34323713 +k3764,463:29734727,34323713:2848303 +k3764,463:32583029,34323713:2848302 +) +(3764,464:20753781,35200889:11829248,530548,102891 +h3764,463:20753781,35200889:0,0,0 +g3764,463:24031277,35200889 +g3764,463:25599553,35200889 +g3764,463:27167829,35200889 +k3764,464:30473118,35200889:2109912 +k3764,464:32583029,35200889:2109911 +) +(3764,465:20753781,36078064:11829248,530548,102891 +h3764,464:20753781,36078064:0,0,0 +g3764,464:24031277,36078064 +k3764,465:28705612,36078064:3877417 +k3764,465:32583029,36078064:3877417 +) +(3764,466:20753781,36955240:11829248,530548,132808 +h3764,465:20753781,36955240:0,0,0 +g3764,465:24031277,36955240 +k3764,466:28904842,36955240:3678188 +k3764,466:32583029,36955240:3678187 +) +(3764,467:20753781,37832415:11829248,530548,102891 +h3764,466:20753781,37832415:0,0,0 +g3764,466:22786450,37832415 +k3764,467:28282428,37832415:4300601 +k3764,467:32583029,37832415:4300601 +) +(3764,468:20753781,38709591:11829248,538806,102891 +h3764,467:20753781,38709591:0,0,0 +g3764,467:24031277,38709591 +g3764,467:25599553,38709591 +k3764,468:29688980,38709591:2894050 +k3764,468:32583029,38709591:2894049 +) +(3764,469:20753781,39586766:11829248,530548,102891 +h3764,468:20753781,39586766:0,0,0 +g3764,468:24446219,39586766 +k3764,469:29112313,39586766:3470717 +k3764,469:32583029,39586766:3470716 +) +(3764,473:20753781,41320892:11829248,530548,132808 +h3764,472:20753781,41320892:0,0,0 +g3764,472:24446219,41320892 +k3764,473:29112313,41320892:3470717 +k3764,473:32583029,41320892:3470716 +) +(3764,474:20753781,42198067:11829248,530548,132808 +h3764,473:20753781,42198067:0,0,0 +g3764,473:24446219,42198067 +g3764,473:26014495,42198067 +g3764,473:27582771,42198067 +g3764,473:29151047,42198067 +k3764,474:31464727,42198067:1118303 +k3764,474:32583029,42198067:1118302 +) +(3764,475:20753781,43075243:11829248,530548,102891 +h3764,474:20753781,43075243:0,0,0 +g3764,474:23616334,43075243 +k3764,475:28697370,43075243:3885659 +k3764,475:32583029,43075243:3885659 +) +(3764,476:20753781,43952418:11829248,530548,102891 +h3764,475:20753781,43952418:0,0,0 +g3764,475:24861162,43952418 +k3764,476:29319784,43952418:3263245 +k3764,476:32583029,43952418:3263245 +) +(3764,477:20753781,44829594:11829248,530548,102891 +h3764,476:20753781,44829594:0,0,0 +g3764,476:29425528,44829594 +k3764,477:31601967,44829594:981062 +k3764,477:32583029,44829594:981062 +) +(3764,478:20753781,45706769:11829248,530548,102891 +h3764,477:20753781,45706769:0,0,0 +g3764,477:29425528,45706769 +k3764,478:31601967,45706769:981062 +k3764,478:32583029,45706769:981062 +) +] +(3764,481:32583029,45706769:0,355205,126483 +h3764,481:32583029,45706769:420741,355205,126483 +k3764,481:32583029,45706769:-420741 +) +) +] +(3764,481:32583029,45706769:0,0,0 +g3764,481:32583029,45706769 +) +) +] +(3764,481:6630773,47279633:25952256,0,0 +h3764,481:6630773,47279633:25952256,0,0 ) ] -(3723,495:4262630,4025873:0,0,0 -[3723,495:-473656,4025873:0,0,0 -(3723,495:-473656,-710413:0,0,0 -(3723,495:-473656,-710413:0,0,0 -g3723,495:-473656,-710413 +(3764,481:4262630,4025873:0,0,0 +[3764,481:-473656,4025873:0,0,0 +(3764,481:-473656,-710413:0,0,0 +(3764,481:-473656,-710413:0,0,0 +g3764,481:-473656,-710413 ) -g3723,495:-473656,-710413 +g3764,481:-473656,-710413 ) ] ) ] -!22099 -}446 +!21623 +}428 !12 -{447 -[3723,589:4262630,47279633:28320399,43253760,0 -(3723,589:4262630,4025873:0,0,0 -[3723,589:-473656,4025873:0,0,0 -(3723,589:-473656,-710413:0,0,0 -(3723,589:-473656,-644877:0,0,0 -k3723,589:-473656,-644877:-65536 +{429 +[3764,570:4262630,47279633:28320399,43253760,0 +(3764,570:4262630,4025873:0,0,0 +[3764,570:-473656,4025873:0,0,0 +(3764,570:-473656,-710413:0,0,0 +(3764,570:-473656,-644877:0,0,0 +k3764,570:-473656,-644877:-65536 ) -(3723,589:-473656,4736287:0,0,0 -k3723,589:-473656,4736287:5209943 +(3764,570:-473656,4736287:0,0,0 +k3764,570:-473656,4736287:5209943 ) -g3723,589:-473656,-710413 +g3764,570:-473656,-710413 ) ] ) -[3723,589:6630773,47279633:25952256,43253760,0 -[3723,589:6630773,4812305:25952256,786432,0 -(3723,589:6630773,4812305:25952256,513147,126483 -(3723,589:6630773,4812305:25952256,513147,126483 -g3723,589:3078558,4812305 -[3723,589:3078558,4812305:0,0,0 -(3723,589:3078558,2439708:0,1703936,0 -k3723,589:1358238,2439708:-1720320 -(3723,1:1358238,2439708:1720320,1703936,0 -(3723,1:1358238,2439708:1179648,16384,0 -r3723,589:2537886,2439708:1179648,16384,0 +[3764,570:6630773,47279633:25952256,43253760,0 +[3764,570:6630773,4812305:25952256,786432,0 +(3764,570:6630773,4812305:25952256,513147,126483 +(3764,570:6630773,4812305:25952256,513147,126483 +g3764,570:3078558,4812305 +[3764,570:3078558,4812305:0,0,0 +(3764,570:3078558,2439708:0,1703936,0 +k3764,570:1358238,2439708:-1720320 +(3764,1:1358238,2439708:1720320,1703936,0 +(3764,1:1358238,2439708:1179648,16384,0 +r3764,570:2537886,2439708:1179648,16384,0 ) -g3723,1:3062174,2439708 -(3723,1:3062174,2439708:16384,1703936,0 -[3723,1:3062174,2439708:25952256,1703936,0 -(3723,1:3062174,1915420:25952256,1179648,0 -(3723,1:3062174,1915420:16384,1179648,0 -r3723,589:3078558,1915420:16384,1179648,0 +g3764,1:3062174,2439708 +(3764,1:3062174,2439708:16384,1703936,0 +[3764,1:3062174,2439708:25952256,1703936,0 +(3764,1:3062174,1915420:25952256,1179648,0 +(3764,1:3062174,1915420:16384,1179648,0 +r3764,570:3078558,1915420:16384,1179648,0 ) -k3723,1:29014430,1915420:25935872 -g3723,1:29014430,1915420 +k3764,1:29014430,1915420:25935872 +g3764,1:29014430,1915420 ) ] ) ) ) ] -[3723,589:3078558,4812305:0,0,0 -(3723,589:3078558,2439708:0,1703936,0 -g3723,589:29030814,2439708 -g3723,589:36135244,2439708 -(3723,1:36135244,2439708:1720320,1703936,0 -(3723,1:36135244,2439708:16384,1703936,0 -[3723,1:36135244,2439708:25952256,1703936,0 -(3723,1:36135244,1915420:25952256,1179648,0 -(3723,1:36135244,1915420:16384,1179648,0 -r3723,589:36151628,1915420:16384,1179648,0 +[3764,570:3078558,4812305:0,0,0 +(3764,570:3078558,2439708:0,1703936,0 +g3764,570:29030814,2439708 +g3764,570:36135244,2439708 +(3764,1:36135244,2439708:1720320,1703936,0 +(3764,1:36135244,2439708:16384,1703936,0 +[3764,1:36135244,2439708:25952256,1703936,0 +(3764,1:36135244,1915420:25952256,1179648,0 +(3764,1:36135244,1915420:16384,1179648,0 +r3764,570:36151628,1915420:16384,1179648,0 ) -k3723,1:62087500,1915420:25935872 -g3723,1:62087500,1915420 +k3764,1:62087500,1915420:25935872 +g3764,1:62087500,1915420 ) ] ) -g3723,1:36675916,2439708 -(3723,1:36675916,2439708:1179648,16384,0 -r3723,589:37855564,2439708:1179648,16384,0 +g3764,1:36675916,2439708 +(3764,1:36675916,2439708:1179648,16384,0 +r3764,570:37855564,2439708:1179648,16384,0 ) ) -k3723,589:3078556,2439708:-34777008 +k3764,570:3078556,2439708:-34777008 ) ] -[3723,589:3078558,4812305:0,0,0 -(3723,589:3078558,49800853:0,16384,2228224 -k3723,589:1358238,49800853:-1720320 -(3723,1:1358238,49800853:1720320,16384,2228224 -(3723,1:1358238,49800853:1179648,16384,0 -r3723,589:2537886,49800853:1179648,16384,0 +[3764,570:3078558,4812305:0,0,0 +(3764,570:3078558,49800853:0,16384,2228224 +k3764,570:1358238,49800853:-1720320 +(3764,1:1358238,49800853:1720320,16384,2228224 +(3764,1:1358238,49800853:1179648,16384,0 +r3764,570:2537886,49800853:1179648,16384,0 ) -g3723,1:3062174,49800853 -(3723,1:3062174,52029077:16384,1703936,0 -[3723,1:3062174,52029077:25952256,1703936,0 -(3723,1:3062174,51504789:25952256,1179648,0 -(3723,1:3062174,51504789:16384,1179648,0 -r3723,589:3078558,51504789:16384,1179648,0 +g3764,1:3062174,49800853 +(3764,1:3062174,52029077:16384,1703936,0 +[3764,1:3062174,52029077:25952256,1703936,0 +(3764,1:3062174,51504789:25952256,1179648,0 +(3764,1:3062174,51504789:16384,1179648,0 +r3764,570:3078558,51504789:16384,1179648,0 ) -k3723,1:29014430,51504789:25935872 -g3723,1:29014430,51504789 +k3764,1:29014430,51504789:25935872 +g3764,1:29014430,51504789 ) ] ) ) ) ] -[3723,589:3078558,4812305:0,0,0 -(3723,589:3078558,49800853:0,16384,2228224 -g3723,589:29030814,49800853 -g3723,589:36135244,49800853 -(3723,1:36135244,49800853:1720320,16384,2228224 -(3723,1:36135244,52029077:16384,1703936,0 -[3723,1:36135244,52029077:25952256,1703936,0 -(3723,1:36135244,51504789:25952256,1179648,0 -(3723,1:36135244,51504789:16384,1179648,0 -r3723,589:36151628,51504789:16384,1179648,0 +[3764,570:3078558,4812305:0,0,0 +(3764,570:3078558,49800853:0,16384,2228224 +g3764,570:29030814,49800853 +g3764,570:36135244,49800853 +(3764,1:36135244,49800853:1720320,16384,2228224 +(3764,1:36135244,52029077:16384,1703936,0 +[3764,1:36135244,52029077:25952256,1703936,0 +(3764,1:36135244,51504789:25952256,1179648,0 +(3764,1:36135244,51504789:16384,1179648,0 +r3764,570:36151628,51504789:16384,1179648,0 ) -k3723,1:62087500,51504789:25935872 -g3723,1:62087500,51504789 +k3764,1:62087500,51504789:25935872 +g3764,1:62087500,51504789 ) ] ) -g3723,1:36675916,49800853 -(3723,1:36675916,49800853:1179648,16384,0 -r3723,589:37855564,49800853:1179648,16384,0 +g3764,1:36675916,49800853 +(3764,1:36675916,49800853:1179648,16384,0 +r3764,570:37855564,49800853:1179648,16384,0 ) ) -k3723,589:3078556,49800853:-34777008 +k3764,570:3078556,49800853:-34777008 ) ] -g3723,589:6630773,4812305 -k3723,589:23552170,4812305:15726020 -g3723,589:27112085,4812305 -g3723,589:29010007,4812305 -g3723,589:29825274,4812305 -g3723,589:30438691,4812305 +g3764,570:6630773,4812305 +k3764,570:23552170,4812305:15726020 +g3764,570:27112085,4812305 +g3764,570:29010007,4812305 +g3764,570:29825274,4812305 +g3764,570:30438691,4812305 ) ) ] -[3723,589:6630773,45706769:25952256,40108032,0 -(3723,589:6630773,45706769:25952256,40108032,0 -(3723,589:6630773,45706769:0,0,0 -g3723,589:6630773,45706769 +[3764,570:6630773,45706769:25952256,40108032,0 +(3764,570:6630773,45706769:25952256,40108032,0 +(3764,570:6630773,45706769:0,0,0 +g3764,570:6630773,45706769 +) +[3764,570:6630773,45706769:25952256,40108032,0 +(3764,570:6630773,45706769:25952256,40108032,132808 +[3764,570:6630773,45706769:11829248,40108032,132808 +(3764,479:6630773,6254097:11829248,530548,102891 +h3764,478:6630773,6254097:0,0,0 +g3764,478:16962289,6254097 +k3764,478:18460021,6254097:128685 ) -[3723,589:6630773,45706769:25952256,40108032,0 -(3723,589:6630773,45706769:25952256,40108032,126483 -[3723,589:6630773,45706769:11829248,40108032,102891 -(3723,492:6630773,6254097:11829248,505283,102891 -h3723,491:6630773,6254097:0,0,0 -g3723,491:14907314,6254097 -k3723,492:17281356,6254097:1178665 -k3723,492:18460021,6254097:1178665 -) -(3723,493:6630773,7111764:11829248,505283,102891 -h3723,492:6630773,7111764:0,0,0 -g3723,492:14116950,7111764 -k3723,493:16886174,7111764:1573847 -k3723,493:18460021,7111764:1573847 -) -(3723,494:6630773,7969431:11829248,505283,134348 -h3723,493:6630773,7969431:0,0,0 -g3723,493:12931403,7969431 -k3723,494:16293401,7969431:2166621 -k3723,494:18460021,7969431:2166620 -) -(3723,495:6630773,8827097:11829248,505283,102891 -h3723,494:6630773,8827097:0,0,0 -g3723,494:13721768,8827097 -k3723,495:16688583,8827097:1771438 -k3723,495:18460021,8827097:1771438 -) -(3723,496:6630773,9684764:11829248,505283,126483 -h3723,495:6630773,9684764:0,0,0 -g3723,495:14907314,9684764 -k3723,496:17281356,9684764:1178665 -k3723,496:18460021,9684764:1178665 -) -(3723,497:6630773,10542431:11829248,505283,134348 -h3723,496:6630773,10542431:0,0,0 -g3723,496:12141039,10542431 -k3723,497:15898219,10542431:2561803 -k3723,497:18460021,10542431:2561802 -) -(3723,498:6630773,11400098:11829248,505283,134348 -h3723,497:6630773,11400098:0,0,0 -g3723,497:12931403,11400098 -g3723,497:14499679,11400098 -k3723,498:17077539,11400098:1382483 -k3723,498:18460021,11400098:1382482 -) -(3723,499:6630773,12257764:11829248,505283,102891 -h3723,498:6630773,12257764:0,0,0 -g3723,498:8584400,12257764 -g3723,498:10152676,12257764 -k3723,499:14904037,12257764:3555984 -k3723,499:18460021,12257764:3555984 -) -(3723,500:6630773,13115431:11829248,505283,102891 -h3723,499:6630773,13115431:0,0,0 -g3723,499:10165129,13115431 -k3723,500:14910264,13115431:3549758 -k3723,500:18460021,13115431:3549757 -) -(3723,501:6630773,13973098:11829248,505283,102891 -h3723,500:6630773,13973098:0,0,0 -g3723,500:10165129,13973098 -k3723,501:14910264,13973098:3549758 -k3723,501:18460021,13973098:3549757 -) -(3723,502:6630773,14830765:11829248,505283,102891 -h3723,501:6630773,14830765:0,0,0 -g3723,501:8979582,14830765 -g3723,501:10547858,14830765 -k3723,502:15101628,14830765:3358393 -k3723,502:18460021,14830765:3358393 -) -(3723,503:6630773,15688432:11829248,505283,134348 -h3723,502:6630773,15688432:0,0,0 -g3723,502:11350675,15688432 -k3723,503:15503037,15688432:2956985 -k3723,503:18460021,15688432:2956984 -) -(3723,504:6630773,16546098:11829248,505283,126483 -h3723,503:6630773,16546098:0,0,0 -g3723,503:8979582,16546098 -g3723,503:10149399,16546098 -k3723,504:14902399,16546098:3557623 -k3723,504:18460021,16546098:3557622 -) -(3723,505:6630773,17403765:11829248,505283,102891 -h3723,504:6630773,17403765:0,0,0 -g3723,504:10955493,17403765 -k3723,505:15305446,17403765:3154576 -k3723,505:18460021,17403765:3154575 -) -(3723,506:6630773,18261432:11829248,505283,126483 -h3723,505:6630773,18261432:0,0,0 -g3723,505:13721768,18261432 -k3723,506:16688583,18261432:1771438 -k3723,506:18460021,18261432:1771438 -) -(3723,507:6630773,19119099:11829248,505283,102891 -h3723,506:6630773,19119099:0,0,0 -g3723,506:9769947,19119099 -k3723,507:14712673,19119099:3747349 -k3723,507:18460021,19119099:3747348 -) -(3723,508:6630773,19976766:11829248,505283,102891 -h3723,507:6630773,19976766:0,0,0 -g3723,507:9769947,19976766 -k3723,508:14712673,19976766:3747349 -k3723,508:18460021,19976766:3747348 -) -(3723,509:6630773,20834432:11829248,513147,134348 -h3723,508:6630773,20834432:0,0,0 -g3723,508:10165129,20834432 -k3723,509:14711034,20834432:3748987 -k3723,509:18460021,20834432:3748987 -) -(3723,510:6630773,21692099:11829248,505283,102891 -h3723,509:6630773,21692099:0,0,0 -g3723,509:8979582,21692099 -k3723,510:14118261,21692099:4341761 -k3723,510:18460021,21692099:4341760 -) -(3723,511:6630773,22549766:11829248,505283,102891 -h3723,510:6630773,22549766:0,0,0 -g3723,510:9769947,22549766 -k3723,511:14712673,22549766:3747349 -k3723,511:18460021,22549766:3747348 -) -(3723,512:6630773,23407433:11829248,505283,126483 -h3723,511:6630773,23407433:0,0,0 -g3723,511:12931403,23407433 -k3723,512:16293401,23407433:2166621 -k3723,512:18460021,23407433:2166620 -) -(3723,513:6630773,24265099:11829248,505283,102891 -h3723,512:6630773,24265099:0,0,0 -g3723,512:9374765,24265099 -g3723,512:10544582,24265099 -g3723,512:11714399,24265099 -g3723,512:13282675,24265099 -k3723,513:16469037,24265099:1990985 -k3723,513:18460021,24265099:1990984 -) -(3723,514:6630773,25122766:11829248,505283,102891 -h3723,513:6630773,25122766:0,0,0 -g3723,513:10165129,25122766 -k3723,514:14910264,25122766:3549758 -k3723,514:18460021,25122766:3549757 -) -(3723,515:6630773,25980433:11829248,505283,126483 -h3723,514:6630773,25980433:0,0,0 -g3723,514:10165129,25980433 -k3723,515:14910264,25980433:3549758 -k3723,515:18460021,25980433:3549757 -) -(3723,516:6630773,26838100:11829248,505283,126483 -h3723,515:6630773,26838100:0,0,0 -g3723,515:9769947,26838100 -k3723,516:14712673,26838100:3747349 -k3723,516:18460021,26838100:3747348 -) -(3723,517:6630773,27695767:11829248,505283,126483 -h3723,516:6630773,27695767:0,0,0 -g3723,516:10165129,27695767 -k3723,517:14910264,27695767:3549758 -k3723,517:18460021,27695767:3549757 -) -(3723,518:6630773,28553433:11829248,513147,126483 -h3723,517:6630773,28553433:0,0,0 -g3723,517:10560311,28553433 -g3723,517:11730128,28553433 -g3723,517:12899945,28553433 -g3723,517:14468221,28553433 -k3723,518:17061810,28553433:1398212 -k3723,518:18460021,28553433:1398211 -) -(3723,519:6630773,29411100:11829248,505283,126483 -h3723,518:6630773,29411100:0,0,0 -g3723,518:9374765,29411100 -k3723,519:14315852,29411100:4144169 -k3723,519:18460021,29411100:4144169 -) -(3723,520:6630773,30268767:11829248,505283,102891 -h3723,519:6630773,30268767:0,0,0 -g3723,519:10955493,30268767 -g3723,519:12523769,30268767 -k3723,520:16089584,30268767:2370438 -k3723,520:18460021,30268767:2370437 -) -(3723,521:6630773,31126434:11829248,505283,134348 -h3723,520:6630773,31126434:0,0,0 -g3723,520:9769947,31126434 -g3723,520:11338223,31126434 -k3723,521:15496811,31126434:2963211 -k3723,521:18460021,31126434:2963210 -) -(3723,522:6630773,31984100:11829248,505283,102891 -h3723,521:6630773,31984100:0,0,0 -g3723,521:12141039,31984100 -k3723,522:15898219,31984100:2561803 -k3723,522:18460021,31984100:2561802 -) -(3723,523:6630773,32841767:11829248,505283,102891 -h3723,522:6630773,32841767:0,0,0 -g3723,522:9374765,32841767 -k3723,523:14515082,32841767:3944940 -k3723,523:18460021,32841767:3944939 -) -(3723,524:6630773,33699434:11829248,505283,102891 -h3723,523:6630773,33699434:0,0,0 -g3723,523:10955493,33699434 -g3723,523:14046826,33699434 -g3723,523:15615102,33699434 -k3723,524:17635250,33699434:824771 -k3723,524:18460021,33699434:824771 -) -(3723,525:6630773,34557101:11829248,505283,102891 -h3723,524:6630773,34557101:0,0,0 -g3723,524:11745857,34557101 -k3723,525:15700628,34557101:2759394 -k3723,525:18460021,34557101:2759393 -) -(3723,526:6630773,35414768:11829248,505283,102891 -h3723,525:6630773,35414768:0,0,0 -g3723,525:12536221,35414768 -k3723,526:16095810,35414768:2364212 -k3723,526:18460021,35414768:2364211 -) -(3723,527:6630773,36272434:11829248,505283,126483 -h3723,526:6630773,36272434:0,0,0 -g3723,526:12536221,36272434 -g3723,526:14104497,36272434 -k3723,527:16879948,36272434:1580074 -k3723,527:18460021,36272434:1580073 -) -(3723,528:6630773,37130101:11829248,505283,102891 -h3723,527:6630773,37130101:0,0,0 -g3723,527:12931403,37130101 -k3723,528:16293401,37130101:2166621 -k3723,528:18460021,37130101:2166620 -) -(3723,529:6630773,37987768:11829248,505283,102891 -h3723,528:6630773,37987768:0,0,0 -g3723,528:11745857,37987768 -g3723,528:13314133,37987768 -g3723,528:14882409,37987768 -k3723,529:17268904,37987768:1191118 -k3723,529:18460021,37987768:1191117 -) -(3723,530:6630773,38845435:11829248,505283,126483 -h3723,529:6630773,38845435:0,0,0 -g3723,529:12536221,38845435 -g3723,529:14104497,38845435 -k3723,530:16879948,38845435:1580074 -k3723,530:18460021,38845435:1580073 -) -(3723,531:6630773,39703102:11829248,505283,126483 -h3723,530:6630773,39703102:0,0,0 -g3723,530:13721768,39703102 -g3723,530:15290044,39703102 -k3723,531:17472721,39703102:987300 -k3723,531:18460021,39703102:987300 -) -(3723,532:6630773,40560768:11829248,513147,102891 -h3723,531:6630773,40560768:0,0,0 -g3723,531:14907314,40560768 -g3723,531:16475590,40560768 -k3723,532:18065494,40560768:394527 -k3723,532:18460021,40560768:394527 -) -(3723,533:6630773,41418435:11829248,513147,102891 -h3723,532:6630773,41418435:0,0,0 -g3723,532:12931403,41418435 -k3723,533:16293401,41418435:2166621 -k3723,533:18460021,41418435:2166620 -) -(3723,534:6630773,42276102:11829248,505283,134348 -h3723,533:6630773,42276102:0,0,0 -g3723,533:13326586,42276102 -k3723,534:16490992,42276102:1969029 -k3723,534:18460021,42276102:1969029 -) -(3723,535:6630773,43133769:11829248,505283,126483 -h3723,534:6630773,43133769:0,0,0 -g3723,534:12931403,43133769 -k3723,535:16293401,43133769:2166621 -k3723,535:18460021,43133769:2166620 -) -(3723,536:6630773,43991435:11829248,505283,126483 -h3723,535:6630773,43991435:0,0,0 -g3723,535:13326586,43991435 -k3723,536:16490992,43991435:1969029 -k3723,536:18460021,43991435:1969029 -) -(3723,537:6630773,44849102:11829248,505283,126483 -h3723,536:6630773,44849102:0,0,0 -g3723,536:13326586,44849102 -g3723,536:14894862,44849102 -k3723,537:17275130,44849102:1184891 -k3723,537:18460021,44849102:1184891 -) -(3723,538:6630773,45706769:11829248,513147,102891 -h3723,537:6630773,45706769:0,0,0 -g3723,537:10560311,45706769 -k3723,538:15107855,45706769:3352167 -k3723,538:18460021,45706769:3352166 -) -] -k3723,589:19606901,45706769:1146880 -r3723,589:19606901,45706769:0,40234515,126483 -k3723,589:20753781,45706769:1146880 -[3723,589:20753781,45706769:11829248,40108032,102891 -(3723,539:20753781,6254097:11829248,505283,102891 -h3723,538:20753781,6254097:0,0,0 -g3723,538:26264047,6254097 -g3723,538:27832323,6254097 -g3723,538:29400599,6254097 -k3723,538:32583029,6254097:290326 -) -(3723,539:23375221,7095585:9207808,485622,11795 -k3723,539:28576814,7095585:4006216 -k3723,539:32583029,7095585:4006215 -) -(3723,540:20753781,7938588:11829248,505283,126483 -h3723,539:20753781,7938588:0,0,0 -g3723,539:26659229,7938588 -g3723,539:28227505,7938588 -k3723,539:32583029,7938588:1463420 -) -(3723,540:23375221,8780076:9207808,485622,102891 -g3723,539:24943497,8780076 -g3723,539:26511773,8780076 -k3723,540:30145090,8780076:2437940 -k3723,540:32583029,8780076:2437939 -) -(3723,541:20753781,9623078:11829248,505283,126483 -h3723,540:20753781,9623078:0,0,0 -g3723,540:27844776,9623078 -k3723,541:30811591,9623078:1771438 -k3723,541:32583029,9623078:1771438 -) -(3723,542:20753781,10466081:11829248,505283,126483 -h3723,541:20753781,10466081:0,0,0 -g3723,541:27844776,10466081 -k3723,542:30811591,10466081:1771438 -k3723,542:32583029,10466081:1771438 -) -(3723,543:20753781,11309084:11829248,505283,126483 -h3723,542:20753781,11309084:0,0,0 -g3723,542:23497773,11309084 -g3723,542:25066049,11309084 -k3723,543:29422228,11309084:3160802 -k3723,543:32583029,11309084:3160801 -) -(3723,544:20753781,12152087:11829248,505283,102891 -h3723,543:20753781,12152087:0,0,0 -g3723,543:23102590,12152087 -k3723,544:28440498,12152087:4142531 -k3723,544:32583029,12152087:4142531 -) -(3723,545:20753781,12995089:11829248,505283,102891 -h3723,544:20753781,12995089:0,0,0 -g3723,544:23102590,12995089 -g3723,544:24272407,12995089 -g3723,544:25442224,12995089 -g3723,544:26612041,12995089 -g3723,544:28180317,12995089 -g3723,544:29748593,12995089 -k3723,544:32583029,12995089:1465389 -) -(3723,545:23375221,13836577:9207808,485622,102891 -g3723,544:24943497,13836577 -g3723,544:26511773,13836577 -k3723,545:30145090,13836577:2437940 -k3723,545:32583029,13836577:2437939 -) -(3723,546:20753781,14679580:11829248,505283,102891 -h3723,545:20753781,14679580:0,0,0 -g3723,545:26264047,14679580 -k3723,546:30021227,14679580:2561803 -k3723,546:32583029,14679580:2561802 -) -(3723,547:20753781,15522583:11829248,513147,102891 -h3723,546:20753781,15522583:0,0,0 -g3723,546:25078501,15522583 -k3723,547:29428454,15522583:3154576 -k3723,547:32583029,15522583:3154575 -) -(3723,548:20753781,16365586:11829248,505283,126483 -h3723,547:20753781,16365586:0,0,0 -g3723,547:25078501,16365586 -k3723,548:29428454,16365586:3154576 -k3723,548:32583029,16365586:3154575 -) -(3723,549:20753781,17208588:11829248,505283,126483 -h3723,548:20753781,17208588:0,0,0 -g3723,548:24288137,17208588 -k3723,549:28834042,17208588:3748987 -k3723,549:32583029,17208588:3748987 -) -(3723,550:20753781,18051591:11829248,505283,126483 -h3723,549:20753781,18051591:0,0,0 -g3723,549:25078501,18051591 -k3723,550:29229224,18051591:3353805 -k3723,550:32583029,18051591:3353805 -) -(3723,551:20753781,18894594:11829248,505283,102891 -h3723,550:20753781,18894594:0,0,0 -g3723,550:24683319,18894594 -k3723,551:29031633,18894594:3551396 -k3723,551:32583029,18894594:3551396 -) -(3723,552:20753781,19737597:11829248,505283,126483 -h3723,551:20753781,19737597:0,0,0 -g3723,551:24683319,19737597 -k3723,552:29031633,19737597:3551396 -k3723,552:32583029,19737597:3551396 -) -(3723,553:20753781,20580599:11829248,505283,102891 -h3723,552:20753781,20580599:0,0,0 -g3723,552:23102590,20580599 -k3723,553:28241269,20580599:4341761 -k3723,553:32583029,20580599:4341760 -) -(3723,554:20753781,21423602:11829248,505283,102891 -h3723,553:20753781,21423602:0,0,0 -g3723,553:24288137,21423602 -g3723,553:27379470,21423602 -g3723,553:28947746,21423602 -g3723,553:30516022,21423602 -k3723,554:32147214,21423602:435815 -k3723,554:32583029,21423602:435815 -) -(3723,555:20753781,22266605:11829248,505283,102891 -h3723,554:20753781,22266605:0,0,0 -g3723,554:25868865,22266605 -k3723,555:29823636,22266605:2759394 -k3723,555:32583029,22266605:2759393 -) -(3723,556:20753781,23109607:11829248,505283,102891 -h3723,555:20753781,23109607:0,0,0 -g3723,555:24288137,23109607 -k3723,556:28834042,23109607:3748987 -k3723,556:32583029,23109607:3748987 -) -(3723,557:20753781,23952610:11829248,505283,134348 -h3723,556:20753781,23952610:0,0,0 -g3723,556:25473683,23952610 -k3723,557:29426815,23952610:3156214 -k3723,557:32583029,23952610:3156214 -) -(3723,558:20753781,24795613:11829248,505283,102891 -h3723,557:20753781,24795613:0,0,0 -g3723,557:23102590,24795613 -g3723,557:24670866,24795613 -k3723,558:29224636,24795613:3358393 -k3723,558:32583029,24795613:3358393 -) -(3723,559:20753781,25638616:11829248,505283,102891 -h3723,558:20753781,25638616:0,0,0 -g3723,558:25473683,25638616 -k3723,559:29626045,25638616:2956985 -k3723,559:32583029,25638616:2956984 -) -(3723,561:20753781,26481618:11829248,505283,126483 -h3723,559:20753781,26481618:0,0,0 -g3723,559:24683319,26481618 -g3723,559:26251595,26481618 -g3723,559:27819871,26481618 -g3723,559:29388147,26481618 -g3723,559:30956423,26481618 -k3723,559:32583029,26481618:257559 -) -(3723,561:23375221,27323106:9207808,485622,102891 -g3723,559:24943497,27323106 -g3723,559:28034830,27323106 -g3723,560:29603106,27323106 -g3723,560:31171382,27323106 -k3723,561:32474894,27323106:108135 -k3723,561:32583029,27323106:108135 -) -(3723,562:20753781,28166109:11829248,505283,102891 -h3723,561:20753781,28166109:0,0,0 -g3723,561:24288137,28166109 -k3723,562:29794800,28166109:2788230 -k3723,562:32583029,28166109:2788229 -) -(3723,563:20753781,29009112:11829248,505283,126483 -h3723,562:20753781,29009112:0,0,0 -g3723,562:24288137,29009112 -k3723,563:29033272,29009112:3549758 -k3723,563:32583029,29009112:3549757 -) -(3723,564:20753781,29852115:11829248,505283,126483 -h3723,563:20753781,29852115:0,0,0 -g3723,563:26264047,29852115 -g3723,563:27832323,29852115 -k3723,564:30805365,29852115:1777665 -k3723,564:32583029,29852115:1777664 -) -(3723,568:20753781,31375723:11829248,505283,102891 -h3723,567:20753781,31375723:0,0,0 -g3723,567:22312226,31375723 -g3723,567:23482043,31375723 -k3723,568:28630225,31375723:3952805 -k3723,568:32583029,31375723:3952804 -) -(3723,569:20753781,32218725:11829248,505283,102891 -h3723,568:20753781,32218725:0,0,0 -g3723,568:22312226,32218725 -k3723,569:28045316,32218725:4537713 -k3723,569:32583029,32218725:4537713 -) -(3723,570:20753781,33061728:11829248,513147,102891 -h3723,569:20753781,33061728:0,0,0 -g3723,569:23497773,33061728 -k3723,570:28638090,33061728:3944940 -k3723,570:32583029,33061728:3944939 -) -(3723,571:20753781,33904731:11829248,505283,102891 -h3723,570:20753781,33904731:0,0,0 -g3723,570:23892955,33904731 -g3723,570:25461231,33904731 -k3723,571:29619819,33904731:2963211 -k3723,571:32583029,33904731:2963210 -) -(3723,572:20753781,34747733:11829248,505283,102891 -h3723,571:20753781,34747733:0,0,0 -g3723,571:23892955,34747733 -g3723,571:25461231,34747733 -k3723,572:29619819,34747733:2963211 -k3723,572:32583029,34747733:2963210 -) -(3723,573:20753781,35590736:11829248,505283,102891 -h3723,572:20753781,35590736:0,0,0 -g3723,572:25078501,35590736 -k3723,573:30189982,35590736:2393048 -k3723,573:32583029,35590736:2393047 -) -(3723,574:20753781,36433739:11829248,505283,102891 -h3723,573:20753781,36433739:0,0,0 -g3723,573:27054411,36433739 -g3723,573:28622687,36433739 -k3723,574:31200547,36433739:1382483 -k3723,574:32583029,36433739:1382482 -) -(3723,575:20753781,37276742:11829248,505283,102891 -h3723,574:20753781,37276742:0,0,0 -g3723,574:25868865,37276742 -k3723,575:29823636,37276742:2759394 -k3723,575:32583029,37276742:2759393 -) -(3723,576:20753781,38119744:11829248,505283,134348 -h3723,575:20753781,38119744:0,0,0 -g3723,575:25868865,38119744 -g3723,575:27437141,38119744 -g3723,575:29005417,38119744 -k3723,576:31391912,38119744:1191118 -k3723,576:32583029,38119744:1191117 -) -(3723,577:20753781,38962747:11829248,505283,134348 -h3723,576:20753781,38962747:0,0,0 -g3723,576:26264047,38962747 -k3723,577:30021227,38962747:2561803 -k3723,577:32583029,38962747:2561802 -) -(3723,578:20753781,39805750:11829248,505283,102891 -h3723,577:20753781,39805750:0,0,0 -g3723,577:27449594,39805750 -k3723,578:30614000,39805750:1969029 -k3723,578:32583029,39805750:1969029 -) -(3723,579:20753781,40648753:11829248,505283,102891 -h3723,578:20753781,40648753:0,0,0 -g3723,578:27054411,40648753 -k3723,579:30416409,40648753:2166621 -k3723,579:32583029,40648753:2166620 -) -(3723,580:20753781,41491755:11829248,505283,102891 -h3723,579:20753781,41491755:0,0,0 -g3723,579:25473683,41491755 -k3723,580:29626045,41491755:2956985 -k3723,580:32583029,41491755:2956984 -) -(3723,581:20753781,42334758:11829248,505283,102891 -h3723,580:20753781,42334758:0,0,0 -g3723,580:25868865,42334758 -k3723,581:29823636,42334758:2759394 -k3723,581:32583029,42334758:2759393 -) -(3723,582:20753781,43177761:11829248,505283,102891 -h3723,581:20753781,43177761:0,0,0 -g3723,581:23497773,43177761 -g3723,581:25066049,43177761 -g3723,581:26634325,43177761 -g3723,581:28202601,43177761 -g3723,581:29770877,43177761 -g3723,581:31339153,43177761 -k3723,582:32558780,43177761:24250 -k3723,582:32583029,43177761:24249 -) -(3723,583:20753781,44020764:11829248,505283,102891 -h3723,582:20753781,44020764:0,0,0 -g3723,582:24288137,44020764 -g3723,582:25856413,44020764 -g3723,582:27424689,44020764 -g3723,582:28992965,44020764 -k3723,583:31385686,44020764:1197344 -k3723,583:32583029,44020764:1197343 -) -(3723,584:20753781,44863766:11829248,505283,102891 -h3723,583:20753781,44863766:0,0,0 -g3723,583:24683319,44863766 -g3723,583:25853136,44863766 -k3723,584:29815771,44863766:2767258 -k3723,584:32583029,44863766:2767258 -) -(3723,585:20753781,45706769:11829248,513147,102891 -h3723,584:20753781,45706769:0,0,0 -k3723,584:31387652,45706769:185467 -k3723,585:32583029,45706769:0 -k3723,585:32583029,45706769:0 -) -] -(3723,589:32583029,45706769:0,355205,126483 -h3723,589:32583029,45706769:420741,355205,126483 -k3723,589:32583029,45706769:-420741 -) -) -] -(3723,589:32583029,45706769:0,0,0 -g3723,589:32583029,45706769 -) -) -] -(3723,589:6630773,47279633:25952256,0,0 -h3723,589:6630773,47279633:25952256,0,0 -) -] -(3723,589:4262630,4025873:0,0,0 -[3723,589:-473656,4025873:0,0,0 -(3723,589:-473656,-710413:0,0,0 -(3723,589:-473656,-710413:0,0,0 -g3723,589:-473656,-710413 -) -g3723,589:-473656,-710413 -) -] +(3764,479:9252213,7119177:9207808,485622,11795 +k3764,479:14453806,7119177:4006216 +k3764,479:18460021,7119177:4006215 +) +(3764,480:6630773,7997039:11829248,530548,102891 +h3764,479:6630773,7997039:0,0,0 +g3764,479:14472635,7997039 +k3764,480:17064017,7997039:1396005 +k3764,480:18460021,7997039:1396004 +) +(3764,481:6630773,8874901:11829248,530548,102891 +h3764,480:6630773,8874901:0,0,0 +g3764,480:16132405,8874901 +k3764,481:17893902,8874901:566120 +k3764,481:18460021,8874901:566119 +) +(3764,482:6630773,9752764:11829248,530548,102891 +h3764,481:6630773,9752764:0,0,0 +g3764,481:16132405,9752764 +k3764,481:18460021,9752764:958569 +) +(3764,482:9252213,10617844:9207808,485622,11795 +k3764,482:14453806,10617844:4006216 +k3764,482:18460021,10617844:4006215 +) +(3764,483:6630773,11495706:11829248,530548,102891 +h3764,482:6630773,11495706:0,0,0 +g3764,482:16547347,11495706 +k3764,483:18101373,11495706:358649 +k3764,483:18460021,11495706:358648 +) +(3764,484:6630773,12373568:11829248,530548,141066 +h3764,483:6630773,12373568:0,0,0 +g3764,483:16132405,12373568 +k3764,483:18460021,12373568:958569 +) +(3764,484:9252213,13238648:9207808,485622,11795 +k3764,484:14453806,13238648:4006216 +k3764,484:18460021,13238648:4006215 +) +(3764,485:6630773,14116510:11829248,530548,141066 +h3764,484:6630773,14116510:0,0,0 +g3764,484:16547347,14116510 +k3764,485:18101373,14116510:358649 +k3764,485:18460021,14116510:358648 +) +(3764,486:6630773,14994373:11829248,530548,141066 +h3764,485:6630773,14994373:0,0,0 +g3764,485:16547347,14994373 +k3764,486:18101373,14994373:358649 +k3764,486:18460021,14994373:358648 +) +(3764,487:6630773,15872235:11829248,530548,141066 +h3764,486:6630773,15872235:0,0,0 +g3764,486:14472635,15872235 +k3764,487:17064017,15872235:1396005 +k3764,487:18460021,15872235:1396004 +) +(3764,488:6630773,16750097:11829248,530548,102891 +h3764,487:6630773,16750097:0,0,0 +g3764,487:14057693,16750097 +k3764,488:16856546,16750097:1603476 +k3764,488:18460021,16750097:1603475 +) +(3764,489:6630773,17627959:11829248,530548,132808 +h3764,488:6630773,17627959:0,0,0 +g3764,488:16132405,17627959 +k3764,488:18460021,17627959:958569 +) +(3764,489:9252213,18493039:9207808,485622,11795 +k3764,489:14453806,18493039:4006216 +k3764,489:18460021,18493039:4006215 +) +(3764,490:6630773,19370902:11829248,530548,102891 +h3764,489:6630773,19370902:0,0,0 +g3764,489:16547347,19370902 +k3764,490:18101373,19370902:358649 +k3764,490:18460021,19370902:358648 +) +(3764,491:6630773,20248764:11829248,530548,102891 +h3764,490:6630773,20248764:0,0,0 +g3764,490:16547347,20248764 +k3764,491:18101373,20248764:358649 +k3764,491:18460021,20248764:358648 +) +(3764,492:6630773,21126626:11829248,538806,132808 +h3764,491:6630773,21126626:0,0,0 +g3764,491:15717462,21126626 +k3764,492:17686430,21126626:773591 +k3764,492:18460021,21126626:773591 +) +(3764,493:6630773,22004488:11829248,530548,102891 +h3764,492:6630773,22004488:0,0,0 +g3764,492:15302520,22004488 +k3764,493:17478959,22004488:981062 +k3764,493:18460021,22004488:981062 +) +(3764,494:6630773,22882351:11829248,530548,102891 +h3764,493:6630773,22882351:0,0,0 +g3764,493:14472635,22882351 +k3764,494:17064017,22882351:1396005 +k3764,494:18460021,22882351:1396004 +) +(3764,495:6630773,23760213:11829248,530548,141066 +h3764,494:6630773,23760213:0,0,0 +g3764,494:13227808,23760213 +k3764,495:16441603,23760213:2018418 +k3764,495:18460021,23760213:2018418 +) +(3764,496:6630773,24638075:11829248,530548,102891 +h3764,495:6630773,24638075:0,0,0 +g3764,495:14057693,24638075 +k3764,496:16856546,24638075:1603476 +k3764,496:18460021,24638075:1603475 +) +(3764,497:6630773,25515937:11829248,530548,132808 +h3764,496:6630773,25515937:0,0,0 +g3764,496:15302520,25515937 +k3764,497:17478959,25515937:981062 +k3764,497:18460021,25515937:981062 +) +(3764,498:6630773,26393800:11829248,530548,141066 +h3764,497:6630773,26393800:0,0,0 +g3764,497:12397924,26393800 +k3764,498:16026661,26393800:2433360 +k3764,498:18460021,26393800:2433360 +) +(3764,499:6630773,27271662:11829248,530548,141066 +h3764,498:6630773,27271662:0,0,0 +g3764,498:13227808,27271662 +k3764,499:16441603,27271662:2018418 +k3764,499:18460021,27271662:2018418 +) +(3764,500:6630773,28149524:11829248,530548,102891 +h3764,499:6630773,28149524:0,0,0 +g3764,499:8663442,28149524 +g3764,499:10231718,28149524 +k3764,500:14943558,28149524:3516463 +k3764,500:18460021,28149524:3516463 +) +(3764,501:6630773,29027386:11829248,530548,102891 +h3764,500:6630773,29027386:0,0,0 +g3764,500:10323211,29027386 +k3764,501:14989305,29027386:3470717 +k3764,501:18460021,29027386:3470716 +) +(3764,502:6630773,29905249:11829248,530548,102891 +h3764,501:6630773,29905249:0,0,0 +g3764,501:10323211,29905249 +k3764,502:14989305,29905249:3470717 +k3764,502:18460021,29905249:3470716 +) +(3764,503:6630773,30783111:11829248,530548,102891 +h3764,502:6630773,30783111:0,0,0 +g3764,502:9078384,30783111 +k3764,503:14366891,30783111:4093130 +k3764,503:18460021,30783111:4093130 +) +(3764,504:6630773,31660973:11829248,530548,141066 +h3764,503:6630773,31660973:0,0,0 +g3764,503:11568039,31660973 +k3764,504:15611719,31660973:2848303 +k3764,504:18460021,31660973:2848302 +) +(3764,505:6630773,32538835:11829248,530548,132808 +h3764,504:6630773,32538835:0,0,0 +g3764,504:9078384,32538835 +g3764,504:10248201,32538835 +k3764,505:14951800,32538835:3508222 +k3764,505:18460021,32538835:3508221 +) +(3764,506:6630773,33416698:11829248,530548,102891 +h3764,505:6630773,33416698:0,0,0 +g3764,505:11153096,33416698 +k3764,506:15404247,33416698:3055774 +k3764,506:18460021,33416698:3055774 +) +(3764,507:6630773,34294560:11829248,530548,132808 +h3764,506:6630773,34294560:0,0,0 +g3764,506:14057693,34294560 +k3764,507:16856546,34294560:1603476 +k3764,507:18460021,34294560:1603475 +) +(3764,508:6630773,35172422:11829248,530548,102891 +h3764,507:6630773,35172422:0,0,0 +g3764,507:9908269,35172422 +k3764,508:14781834,35172422:3678188 +k3764,508:18460021,35172422:3678187 +) +(3764,509:6630773,36050284:11829248,530548,102891 +h3764,508:6630773,36050284:0,0,0 +g3764,508:9908269,36050284 +k3764,509:14781834,36050284:3678188 +k3764,509:18460021,36050284:3678187 +) +(3764,510:6630773,36928147:11829248,538806,141066 +h3764,509:6630773,36928147:0,0,0 +g3764,509:10323211,36928147 +k3764,510:14790075,36928147:3669946 +k3764,510:18460021,36928147:3669946 +) +(3764,511:6630773,37806009:11829248,530548,102891 +h3764,510:6630773,37806009:0,0,0 +g3764,510:9078384,37806009 +k3764,511:14167662,37806009:4292360 +k3764,511:18460021,37806009:4292359 +) +(3764,512:6630773,38683871:11829248,530548,102891 +h3764,511:6630773,38683871:0,0,0 +g3764,511:9908269,38683871 +k3764,512:14781834,38683871:3678188 +k3764,512:18460021,38683871:3678187 +) +(3764,513:6630773,39561733:11829248,530548,132808 +h3764,512:6630773,39561733:0,0,0 +g3764,512:13227808,39561733 +k3764,513:16441603,39561733:2018418 +k3764,513:18460021,39561733:2018418 +) +(3764,514:6630773,40439596:11829248,530548,102891 +h3764,513:6630773,40439596:0,0,0 +g3764,513:9908269,40439596 +k3764,514:14582604,40439596:3877417 +k3764,514:18460021,40439596:3877417 +) +(3764,515:6630773,41317458:11829248,530548,102891 +h3764,514:6630773,41317458:0,0,0 +g3764,514:9493326,41317458 +g3764,514:10663143,41317458 +g3764,514:11832960,41317458 +g3764,514:13401236,41317458 +k3764,515:16528317,41317458:1931704 +k3764,515:18460021,41317458:1931704 +) +(3764,516:6630773,42195320:11829248,530548,102891 +h3764,515:6630773,42195320:0,0,0 +g3764,515:10323211,42195320 +k3764,516:14989305,42195320:3470717 +k3764,516:18460021,42195320:3470716 +) +(3764,517:6630773,43073182:11829248,530548,132808 +h3764,516:6630773,43073182:0,0,0 +g3764,516:10323211,43073182 +k3764,517:14989305,43073182:3470717 +k3764,517:18460021,43073182:3470716 +) +(3764,518:6630773,43951045:11829248,530548,132808 +h3764,517:6630773,43951045:0,0,0 +g3764,517:9908269,43951045 +k3764,518:14781834,43951045:3678188 +k3764,518:18460021,43951045:3678187 +) +(3764,519:6630773,44828907:11829248,530548,132808 +h3764,518:6630773,44828907:0,0,0 +g3764,518:10323211,44828907 +k3764,519:14989305,44828907:3470717 +k3764,519:18460021,44828907:3470716 +) +(3764,520:6630773,45706769:11829248,538806,132808 +h3764,519:6630773,45706769:0,0,0 +g3764,519:10738154,45706769 +g3764,519:11907971,45706769 +g3764,519:13077788,45706769 +g3764,519:14646064,45706769 +g3764,519:16214340,45706769 +k3764,520:17934869,45706769:525152 +k3764,520:18460021,45706769:525152 +) +] +k3764,570:19606901,45706769:1146880 +r3764,570:19606901,45706769:0,40240840,132808 +k3764,570:20753781,45706769:1146880 +[3764,570:20753781,45706769:11829248,40108032,102891 +(3764,521:20753781,6254097:11829248,530548,132808 +h3764,520:20753781,6254097:0,0,0 +g3764,520:23616334,6254097 +k3764,521:28498141,6254097:4084889 +k3764,521:32583029,6254097:4084888 +) +(3764,522:20753781,7131959:11829248,530548,102891 +h3764,521:20753781,7131959:0,0,0 +g3764,521:25276104,7131959 +g3764,521:26844380,7131959 +k3764,522:30311393,7131959:2271636 +k3764,522:32583029,7131959:2271636 +) +(3764,523:20753781,8009821:11829248,530548,141066 +h3764,522:20753781,8009821:0,0,0 +g3764,522:24031277,8009821 +g3764,522:25599553,8009821 +k3764,523:29688980,8009821:2894050 +k3764,523:32583029,8009821:2894049 +) +(3764,524:20753781,8887684:11829248,530548,102891 +h3764,523:20753781,8887684:0,0,0 +g3764,523:26520932,8887684 +k3764,524:30149669,8887684:2433360 +k3764,524:32583029,8887684:2433360 +) +(3764,525:20753781,9765546:11829248,530548,102891 +h3764,524:20753781,9765546:0,0,0 +g3764,524:23616334,9765546 +k3764,525:28697370,9765546:3885659 +k3764,525:32583029,9765546:3885659 +) +(3764,526:20753781,10643408:11829248,530548,102891 +h3764,525:20753781,10643408:0,0,0 +g3764,525:25276104,10643408 +g3764,525:28367437,10643408 +g3764,525:29935713,10643408 +k3764,526:31857060,10643408:725970 +k3764,526:32583029,10643408:725969 +) +(3764,527:20753781,11521270:11829248,530548,102891 +h3764,526:20753781,11521270:0,0,0 +g3764,526:26105989,11521270 +k3764,527:29942198,11521270:2640832 +k3764,527:32583029,11521270:2640831 +) +(3764,528:20753781,12399133:11829248,530548,102891 +h3764,527:20753781,12399133:0,0,0 +g3764,527:26935874,12399133 +k3764,528:30357140,12399133:2225889 +k3764,528:32583029,12399133:2225889 +) +(3764,529:20753781,13276995:11829248,530548,132808 +h3764,528:20753781,13276995:0,0,0 +g3764,528:26935874,13276995 +g3764,528:28504150,13276995 +k3764,529:31141278,13276995:1441751 +k3764,529:32583029,13276995:1441751 +) +(3764,530:20753781,14154857:11829248,530548,102891 +h3764,529:20753781,14154857:0,0,0 +g3764,529:27350816,14154857 +k3764,530:30564611,14154857:2018418 +k3764,530:32583029,14154857:2018418 +) +(3764,531:20753781,15032719:11829248,530548,102891 +h3764,530:20753781,15032719:0,0,0 +g3764,530:26105989,15032719 +g3764,530:27674265,15032719 +g3764,530:29242541,15032719 +k3764,531:31510474,15032719:1072556 +k3764,531:32583029,15032719:1072555 +) +(3764,532:20753781,15910582:11829248,530548,132808 +h3764,531:20753781,15910582:0,0,0 +g3764,531:26935874,15910582 +g3764,531:28504150,15910582 +k3764,532:31141278,15910582:1441751 +k3764,532:32583029,15910582:1441751 +) +(3764,533:20753781,16788444:11829248,530548,132808 +h3764,532:20753781,16788444:0,0,0 +g3764,532:28180701,16788444 +g3764,532:29748977,16788444 +k3764,533:31763692,16788444:819338 +k3764,533:32583029,16788444:819337 +) +(3764,534:20753781,17666306:11829248,538806,102891 +h3764,533:20753781,17666306:0,0,0 +g3764,533:29425528,17666306 +k3764,534:31601967,17666306:981062 +k3764,534:32583029,17666306:981062 +) +(3764,535:20753781,18544168:11829248,538806,102891 +h3764,534:20753781,18544168:0,0,0 +g3764,534:27350816,18544168 +k3764,535:30564611,18544168:2018418 +k3764,535:32583029,18544168:2018418 +) +(3764,536:20753781,19422031:11829248,530548,141066 +h3764,535:20753781,19422031:0,0,0 +g3764,535:27765759,19422031 +k3764,536:30772083,19422031:1810947 +k3764,536:32583029,19422031:1810946 +) +(3764,537:20753781,20299893:11829248,530548,132808 +h3764,536:20753781,20299893:0,0,0 +g3764,536:27350816,20299893 +k3764,537:30564611,20299893:2018418 +k3764,537:32583029,20299893:2018418 +) +(3764,538:20753781,21177755:11829248,530548,132808 +h3764,537:20753781,21177755:0,0,0 +g3764,537:27765759,21177755 +k3764,538:30772083,21177755:1810947 +k3764,538:32583029,21177755:1810946 +) +(3764,539:20753781,22055617:11829248,530548,132808 +h3764,538:20753781,22055617:0,0,0 +g3764,538:27765759,22055617 +g3764,538:29334035,22055617 +k3764,539:31556221,22055617:1026809 +k3764,539:32583029,22055617:1026808 +) +(3764,540:20753781,22933480:11829248,538806,102891 +h3764,539:20753781,22933480:0,0,0 +g3764,539:24861162,22933480 +k3764,540:29319784,22933480:3263245 +k3764,540:32583029,22933480:3263245 +) +(3764,541:20753781,23811342:11829248,530548,102891 +h3764,540:20753781,23811342:0,0,0 +g3764,540:26520932,23811342 +g3764,540:28089208,23811342 +g3764,540:29657484,23811342 +k3764,540:32583029,23811342:33441 +) +(3764,541:23375221,24676422:9207808,485622,11795 +k3764,541:28576814,24676422:4006216 +k3764,541:32583029,24676422:4006215 +) +(3764,542:20753781,25554284:11829248,530548,132808 +h3764,541:20753781,25554284:0,0,0 +g3764,541:26935874,25554284 +g3764,541:28504150,25554284 +k3764,541:32583029,25554284:1186775 +) +(3764,542:23375221,26419364:9207808,485622,102891 +g3764,541:24943497,26419364 +g3764,541:26511773,26419364 +k3764,542:30145090,26419364:2437940 +k3764,542:32583029,26419364:2437939 +) +(3764,543:20753781,27297226:11829248,530548,132808 +h3764,542:20753781,27297226:0,0,0 +g3764,542:28180701,27297226 +k3764,543:30979554,27297226:1603476 +k3764,543:32583029,27297226:1603475 +) +(3764,544:20753781,28175089:11829248,530548,132808 +h3764,543:20753781,28175089:0,0,0 +g3764,543:28180701,28175089 +k3764,544:30979554,28175089:1603476 +k3764,544:32583029,28175089:1603475 +) +(3764,545:20753781,29052951:11829248,530548,132808 +h3764,544:20753781,29052951:0,0,0 +g3764,544:23616334,29052951 +g3764,544:25184610,29052951 +k3764,545:29481508,29052951:3101521 +k3764,545:32583029,29052951:3101521 +) +(3764,546:20753781,29930813:11829248,530548,102891 +h3764,545:20753781,29930813:0,0,0 +g3764,545:23201392,29930813 +g3764,545:24769668,29930813 +k3764,546:29274037,29930813:3308992 +k3764,546:32583029,29930813:3308992 +) +(3764,547:20753781,30808675:11829248,530548,102891 +h3764,546:20753781,30808675:0,0,0 +g3764,546:23201392,30808675 +g3764,546:25495807,30808675 +g3764,546:27064083,30808675 +g3764,546:28632359,30808675 +g3764,546:30200635,30808675 +k3764,546:32583029,30808675:1013347 +) +(3764,547:23375221,31673755:9207808,485622,102891 +g3764,546:24943497,31673755 +k3764,547:29360952,31673755:3222078 +k3764,547:32583029,31673755:3222077 +) +(3764,548:20753781,32551618:11829248,530548,102891 +h3764,547:20753781,32551618:0,0,0 +g3764,547:26520932,32551618 +k3764,548:30149669,32551618:2433360 +k3764,548:32583029,32551618:2433360 +) +(3764,549:20753781,33429480:11829248,538806,102891 +h3764,548:20753781,33429480:0,0,0 +g3764,548:25276104,33429480 +g3764,548:26844380,33429480 +k3764,549:30311393,33429480:2271636 +k3764,549:32583029,33429480:2271636 +) +(3764,550:20753781,34307342:11829248,530548,132808 +h3764,549:20753781,34307342:0,0,0 +g3764,549:25276104,34307342 +k3764,550:29527255,34307342:3055774 +k3764,550:32583029,34307342:3055774 +) +(3764,551:20753781,35185204:11829248,530548,132808 +h3764,550:20753781,35185204:0,0,0 +g3764,550:24446219,35185204 +k3764,551:28913083,35185204:3669946 +k3764,551:32583029,35185204:3669946 +) +(3764,552:20753781,36063067:11829248,530548,132808 +h3764,551:20753781,36063067:0,0,0 +g3764,551:25276104,36063067 +k3764,552:29328026,36063067:3255004 +k3764,552:32583029,36063067:3255003 +) +(3764,553:20753781,36940929:11829248,530548,102891 +h3764,552:20753781,36940929:0,0,0 +g3764,552:24861162,36940929 +k3764,553:29120555,36940929:3462475 +k3764,553:32583029,36940929:3462474 +) +(3764,554:20753781,37818791:11829248,530548,132808 +h3764,553:20753781,37818791:0,0,0 +g3764,553:24861162,37818791 +k3764,554:29120555,37818791:3462475 +k3764,554:32583029,37818791:3462474 +) +(3764,555:20753781,38696653:11829248,530548,102891 +h3764,554:20753781,38696653:0,0,0 +g3764,554:23201392,38696653 +k3764,555:28290670,38696653:4292360 +k3764,555:32583029,38696653:4292359 +) +(3764,556:20753781,39574516:11829248,530548,102891 +h3764,555:20753781,39574516:0,0,0 +g3764,555:24446219,39574516 +g3764,555:25616036,39574516 +g3764,555:27184312,39574516 +g3764,555:28752588,39574516 +g3764,555:30320864,39574516 +k3764,556:32049635,39574516:533394 +k3764,556:32583029,39574516:533394 +) +(3764,557:20753781,40452378:11829248,530548,102891 +h3764,556:20753781,40452378:0,0,0 +g3764,556:26105989,40452378 +k3764,557:29942198,40452378:2640832 +k3764,557:32583029,40452378:2640831 +) +(3764,558:20753781,41330240:11829248,530548,102891 +h3764,557:20753781,41330240:0,0,0 +g3764,557:24446219,41330240 +k3764,558:28913083,41330240:3669946 +k3764,558:32583029,41330240:3669946 +) +(3764,559:20753781,42208102:11829248,530548,141066 +h3764,558:20753781,42208102:0,0,0 +g3764,558:25691047,42208102 +k3764,559:29535497,42208102:3047532 +k3764,559:32583029,42208102:3047532 +) +(3764,560:20753781,43085965:11829248,530548,102891 +h3764,559:20753781,43085965:0,0,0 +g3764,559:23201392,43085965 +g3764,559:24769668,43085965 +k3764,560:29274037,43085965:3308992 +k3764,560:32583029,43085965:3308992 +) +(3764,561:20753781,43963827:11829248,530548,102891 +h3764,560:20753781,43963827:0,0,0 +g3764,560:25691047,43963827 +k3764,561:29734727,43963827:2848303 +k3764,561:32583029,43963827:2848302 +) +(3764,563:20753781,44841689:11829248,530548,132808 +h3764,561:20753781,44841689:0,0,0 +g3764,561:24861162,44841689 +g3764,561:26429438,44841689 +g3764,561:27997714,44841689 +g3764,561:29565990,44841689 +g3764,561:31134266,44841689 +k3764,561:32583029,44841689:79716 +) +(3764,563:23375221,45706769:9207808,485622,102891 +g3764,561:26466554,45706769 +g3764,561:28034830,45706769 +g3764,562:29603106,45706769 +k3764,563:31690756,45706769:892273 +k3764,563:32583029,45706769:892273 +) +] +(3764,570:32583029,45706769:0,355205,126483 +h3764,570:32583029,45706769:420741,355205,126483 +k3764,570:32583029,45706769:-420741 +) +) +] +(3764,570:32583029,45706769:0,0,0 +g3764,570:32583029,45706769 +) +) +] +(3764,570:6630773,47279633:25952256,0,0 +h3764,570:6630773,47279633:25952256,0,0 +) +] +(3764,570:4262630,4025873:0,0,0 +[3764,570:-473656,4025873:0,0,0 +(3764,570:-473656,-710413:0,0,0 +(3764,570:-473656,-710413:0,0,0 +g3764,570:-473656,-710413 +) +g3764,570:-473656,-710413 ) ] -!22726 -}447 +) +] +!21440 +}429 !12 -{448 -[1,23541:4262630,47279633:28320399,43253760,0 -(1,23541:4262630,4025873:0,0,0 -[1,23541:-473656,4025873:0,0,0 -(1,23541:-473656,-710413:0,0,0 -(1,23541:-473656,-644877:0,0,0 -k1,23541:-473656,-644877:-65536 +{430 +[1,23754:4262630,47279633:28320399,43253760,0 +(1,23754:4262630,4025873:0,0,0 +[1,23754:-473656,4025873:0,0,0 +(1,23754:-473656,-710413:0,0,0 +(1,23754:-473656,-644877:0,0,0 +k1,23754:-473656,-644877:-65536 ) -(1,23541:-473656,4736287:0,0,0 -k1,23541:-473656,4736287:5209943 +(1,23754:-473656,4736287:0,0,0 +k1,23754:-473656,4736287:5209943 ) -g1,23541:-473656,-710413 +g1,23754:-473656,-710413 ) ] ) -[1,23541:6630773,47279633:25952256,43253760,0 -[1,23541:6630773,4812305:25952256,786432,0 -(1,23541:6630773,4812305:25952256,513147,126483 -(1,23541:6630773,4812305:25952256,513147,126483 -g1,23541:3078558,4812305 -[1,23541:3078558,4812305:0,0,0 -(1,23541:3078558,2439708:0,1703936,0 -k1,23541:1358238,2439708:-1720320 -(1,21457:1358238,2439708:1720320,1703936,0 -(1,21457:1358238,2439708:1179648,16384,0 -r1,23541:2537886,2439708:1179648,16384,0 +[1,23754:6630773,47279633:25952256,43253760,0 +[1,23754:6630773,4812305:25952256,786432,0 +(1,23754:6630773,4812305:25952256,513147,126483 +(1,23754:6630773,4812305:25952256,513147,126483 +g1,23754:3078558,4812305 +[1,23754:3078558,4812305:0,0,0 +(1,23754:3078558,2439708:0,1703936,0 +k1,23754:1358238,2439708:-1720320 +(1,21670:1358238,2439708:1720320,1703936,0 +(1,21670:1358238,2439708:1179648,16384,0 +r1,23754:2537886,2439708:1179648,16384,0 ) -g1,21457:3062174,2439708 -(1,21457:3062174,2439708:16384,1703936,0 -[1,21457:3062174,2439708:25952256,1703936,0 -(1,21457:3062174,1915420:25952256,1179648,0 -(1,21457:3062174,1915420:16384,1179648,0 -r1,23541:3078558,1915420:16384,1179648,0 +g1,21670:3062174,2439708 +(1,21670:3062174,2439708:16384,1703936,0 +[1,21670:3062174,2439708:25952256,1703936,0 +(1,21670:3062174,1915420:25952256,1179648,0 +(1,21670:3062174,1915420:16384,1179648,0 +r1,23754:3078558,1915420:16384,1179648,0 ) -k1,21457:29014430,1915420:25935872 -g1,21457:29014430,1915420 +k1,21670:29014430,1915420:25935872 +g1,21670:29014430,1915420 ) ] ) ) ) ] -[1,23541:3078558,4812305:0,0,0 -(1,23541:3078558,2439708:0,1703936,0 -g1,23541:29030814,2439708 -g1,23541:36135244,2439708 -(1,21457:36135244,2439708:1720320,1703936,0 -(1,21457:36135244,2439708:16384,1703936,0 -[1,21457:36135244,2439708:25952256,1703936,0 -(1,21457:36135244,1915420:25952256,1179648,0 -(1,21457:36135244,1915420:16384,1179648,0 -r1,23541:36151628,1915420:16384,1179648,0 +[1,23754:3078558,4812305:0,0,0 +(1,23754:3078558,2439708:0,1703936,0 +g1,23754:29030814,2439708 +g1,23754:36135244,2439708 +(1,21670:36135244,2439708:1720320,1703936,0 +(1,21670:36135244,2439708:16384,1703936,0 +[1,21670:36135244,2439708:25952256,1703936,0 +(1,21670:36135244,1915420:25952256,1179648,0 +(1,21670:36135244,1915420:16384,1179648,0 +r1,23754:36151628,1915420:16384,1179648,0 ) -k1,21457:62087500,1915420:25935872 -g1,21457:62087500,1915420 +k1,21670:62087500,1915420:25935872 +g1,21670:62087500,1915420 ) ] ) -g1,21457:36675916,2439708 -(1,21457:36675916,2439708:1179648,16384,0 -r1,23541:37855564,2439708:1179648,16384,0 +g1,21670:36675916,2439708 +(1,21670:36675916,2439708:1179648,16384,0 +r1,23754:37855564,2439708:1179648,16384,0 ) ) -k1,23541:3078556,2439708:-34777008 +k1,23754:3078556,2439708:-34777008 ) ] -[1,23541:3078558,4812305:0,0,0 -(1,23541:3078558,49800853:0,16384,2228224 -k1,23541:1358238,49800853:-1720320 -(1,21457:1358238,49800853:1720320,16384,2228224 -(1,21457:1358238,49800853:1179648,16384,0 -r1,23541:2537886,49800853:1179648,16384,0 +[1,23754:3078558,4812305:0,0,0 +(1,23754:3078558,49800853:0,16384,2228224 +k1,23754:1358238,49800853:-1720320 +(1,21670:1358238,49800853:1720320,16384,2228224 +(1,21670:1358238,49800853:1179648,16384,0 +r1,23754:2537886,49800853:1179648,16384,0 ) -g1,21457:3062174,49800853 -(1,21457:3062174,52029077:16384,1703936,0 -[1,21457:3062174,52029077:25952256,1703936,0 -(1,21457:3062174,51504789:25952256,1179648,0 -(1,21457:3062174,51504789:16384,1179648,0 -r1,23541:3078558,51504789:16384,1179648,0 +g1,21670:3062174,49800853 +(1,21670:3062174,52029077:16384,1703936,0 +[1,21670:3062174,52029077:25952256,1703936,0 +(1,21670:3062174,51504789:25952256,1179648,0 +(1,21670:3062174,51504789:16384,1179648,0 +r1,23754:3078558,51504789:16384,1179648,0 ) -k1,21457:29014430,51504789:25935872 -g1,21457:29014430,51504789 +k1,21670:29014430,51504789:25935872 +g1,21670:29014430,51504789 ) ] ) ) ) ] -[1,23541:3078558,4812305:0,0,0 -(1,23541:3078558,49800853:0,16384,2228224 -g1,23541:29030814,49800853 -g1,23541:36135244,49800853 -(1,21457:36135244,49800853:1720320,16384,2228224 -(1,21457:36135244,52029077:16384,1703936,0 -[1,21457:36135244,52029077:25952256,1703936,0 -(1,21457:36135244,51504789:25952256,1179648,0 -(1,21457:36135244,51504789:16384,1179648,0 -r1,23541:36151628,51504789:16384,1179648,0 +[1,23754:3078558,4812305:0,0,0 +(1,23754:3078558,49800853:0,16384,2228224 +g1,23754:29030814,49800853 +g1,23754:36135244,49800853 +(1,21670:36135244,49800853:1720320,16384,2228224 +(1,21670:36135244,52029077:16384,1703936,0 +[1,21670:36135244,52029077:25952256,1703936,0 +(1,21670:36135244,51504789:25952256,1179648,0 +(1,21670:36135244,51504789:16384,1179648,0 +r1,23754:36151628,51504789:16384,1179648,0 ) -k1,21457:62087500,51504789:25935872 -g1,21457:62087500,51504789 +k1,21670:62087500,51504789:25935872 +g1,21670:62087500,51504789 ) ] ) -g1,21457:36675916,49800853 -(1,21457:36675916,49800853:1179648,16384,0 -r1,23541:37855564,49800853:1179648,16384,0 +g1,21670:36675916,49800853 +(1,21670:36675916,49800853:1179648,16384,0 +r1,23754:37855564,49800853:1179648,16384,0 ) ) -k1,23541:3078556,49800853:-34777008 +k1,23754:3078556,49800853:-34777008 ) ] -g1,23541:6630773,4812305 -g1,23541:6630773,4812305 -g1,23541:10190688,4812305 -g1,23541:12088610,4812305 -g1,23541:12903877,4812305 -g1,23541:13517294,4812305 -g1,23541:15860861,4812305 -k1,23541:31387652,4812305:15526791 -) -) -] -[1,23541:6630773,45706769:25952256,40108032,0 -(1,23541:6630773,45706769:25952256,40108032,0 -(1,23541:6630773,45706769:0,0,0 -g1,23541:6630773,45706769 -) -[1,23541:6630773,45706769:25952256,40108032,0 -(3723,642:6630773,24405057:25952256,18806320,126483 -[3723,642:6630773,24405057:11829248,18806320,102891 -(3723,586:6630773,6254097:11829248,505283,126483 -h3723,585:6630773,6254097:0,0,0 -g3723,585:10560311,6254097 -g3723,585:11730128,6254097 -k3723,586:15692763,6254097:2767258 -k3723,586:18460021,6254097:2767258 -) -(3723,587:6630773,7111865:11829248,513147,102891 -h3723,586:6630773,7111865:0,0,0 -g3723,586:11350675,7111865 -k3723,587:15503037,7111865:2956985 -k3723,587:18460021,7111865:2956984 -) -(3723,588:6630773,7969632:11829248,505283,102891 -h3723,587:6630773,7969632:0,0,0 -g3723,587:11350675,7969632 -g3723,587:12918951,7969632 -k3723,588:16287175,7969632:2172847 -k3723,588:18460021,7969632:2172846 -) -(3723,589:6630773,8827400:11829248,505283,102891 -h3723,588:6630773,8827400:0,0,0 -g3723,588:10165129,8827400 -g3723,588:11334946,8827400 -k3723,589:15295943,8827400:3164079 -k3723,589:18460021,8827400:3164078 -) -(3723,590:6630773,9685168:11829248,505283,102891 -h3723,589:6630773,9685168:0,0,0 -g3723,589:9769947,9685168 -g3723,589:10939764,9685168 -g3723,589:12109581,9685168 -k3723,590:15683260,9685168:2776761 -k3723,590:18460021,9685168:2776761 -) -(3723,591:6630773,10542936:11829248,505283,102891 -h3723,590:6630773,10542936:0,0,0 -g3723,590:8584400,10542936 -k3723,591:14119899,10542936:4340122 -k3723,591:18460021,10542936:4340122 -) -(3723,595:6630773,12327390:11829248,505283,134348 -h3723,594:6630773,12327390:0,0,0 -g3723,594:10560311,12327390 -k3723,595:15107855,12327390:3352167 -k3723,595:18460021,12327390:3352166 -) -(3723,596:6630773,13185158:11829248,505283,126483 -h3723,595:6630773,13185158:0,0,0 -g3723,595:10165129,13185158 -k3723,596:14711034,13185158:3748987 -k3723,596:18460021,13185158:3748987 -) -(3723,597:6630773,14042925:11829248,505283,102891 -h3723,596:6630773,14042925:0,0,0 -g3723,596:10165129,14042925 -k3723,597:14910264,14042925:3549758 -k3723,597:18460021,14042925:3549757 -) -(3723,598:6630773,14900693:11829248,505283,102891 -h3723,597:6630773,14900693:0,0,0 -g3723,597:10165129,14900693 -g3723,597:11334946,14900693 -g3723,597:12504763,14900693 -k3723,598:15880851,14900693:2579170 -k3723,598:18460021,14900693:2579170 -) -(3723,599:6630773,15758461:11829248,505283,102891 -h3723,598:6630773,15758461:0,0,0 -g3723,598:10165129,15758461 -k3723,599:14711034,15758461:3748987 -k3723,599:18460021,15758461:3748987 -) -(3723,600:6630773,16616229:11829248,505283,102891 -h3723,599:6630773,16616229:0,0,0 -g3723,599:10165129,16616229 -k3723,600:14910264,16616229:3549758 -k3723,600:18460021,16616229:3549757 -) -(3723,601:6630773,17473996:11829248,505283,126483 -h3723,600:6630773,17473996:0,0,0 -g3723,600:10560311,17473996 -k3723,601:15107855,17473996:3352167 -k3723,601:18460021,17473996:3352166 -) -(3723,602:6630773,18331764:11829248,505283,126483 -h3723,601:6630773,18331764:0,0,0 -g3723,601:10165129,18331764 -g3723,601:11733405,18331764 -g3723,601:13301681,18331764 -g3723,601:14869957,18331764 -k3723,602:17262678,18331764:1197344 -k3723,602:18460021,18331764:1197343 -) -(3723,603:6630773,19189532:11829248,505283,134348 -h3723,602:6630773,19189532:0,0,0 -g3723,602:13721768,19189532 -k3723,603:16688583,19189532:1771438 -k3723,603:18460021,19189532:1771438 -) -(3723,607:6630773,20973986:11829248,505283,126483 -h3723,606:6630773,20973986:0,0,0 -g3723,606:10165129,20973986 -g3723,606:11733405,20973986 -k3723,607:16455930,20973986:2004092 -k3723,607:18460021,20973986:2004091 -) -(3723,608:6630773,21831754:11829248,505283,102891 -h3723,607:6630773,21831754:0,0,0 -g3723,607:8979582,21831754 -g3723,607:10547858,21831754 -g3723,607:12116134,21831754 -k3723,608:15885766,21831754:2574255 -k3723,608:18460021,21831754:2574255 -) -(3723,609:6630773,22689522:11829248,505283,102891 -h3723,608:6630773,22689522:0,0,0 -g3723,608:9374765,22689522 -k3723,609:14515082,22689522:3944940 -k3723,609:18460021,22689522:3944939 -) -(3723,610:6630773,23547289:11829248,485622,102891 -h3723,609:6630773,23547289:0,0,0 -g3723,609:9374765,23547289 -k3723,610:14315852,23547289:4144169 -k3723,610:18460021,23547289:4144169 -) -(3723,611:6630773,24405057:11829248,505283,102891 -h3723,610:6630773,24405057:0,0,0 -g3723,610:9374765,24405057 -k3723,611:14515082,24405057:3944940 -k3723,611:18460021,24405057:3944939 -) -] -k3723,642:19606901,24405057:1146880 -r1,23541:19606901,24405057:0,18932803,126483 -k3723,642:20753781,24405057:1146880 -[3723,642:20753781,24405057:11829248,18806320,126483 -(3723,615:20753781,6254097:11829248,505283,102891 -h3723,614:20753781,6254097:0,0,0 -g3723,614:23102590,6254097 -g3723,614:24670866,6254097 -k3723,615:29986164,6254097:2596865 -k3723,615:32583029,6254097:2596865 -) -(3723,616:20753781,7095782:11829248,505283,102891 -h3723,615:20753781,7095782:0,0,0 -g3723,615:23497773,7095782 -g3723,615:25066049,7095782 -k3723,616:30183756,7095782:2399274 -k3723,616:32583029,7095782:2399273 -) -(3723,617:20753781,7937466:11829248,505283,102891 -h3723,616:20753781,7937466:0,0,0 -g3723,616:24288137,7937466 -g3723,616:27379470,7937466 -k3723,617:30578938,7937466:2004091 -k3723,617:32583029,7937466:2004091 -) -(3723,618:20753781,8779151:11829248,505283,102891 -h3723,617:20753781,8779151:0,0,0 -g3723,617:25473683,8779151 -g3723,617:27041959,8779151 -k3723,618:30410183,8779151:2172847 -k3723,618:32583029,8779151:2172846 -) -(3723,619:20753781,9620835:11829248,505283,102891 -h3723,618:20753781,9620835:0,0,0 -g3723,618:25868865,9620835 -g3723,618:27437141,9620835 -k3723,619:30607774,9620835:1975256 -k3723,619:32583029,9620835:1975255 -) -(3723,620:20753781,10462520:11829248,505283,102891 -h3723,619:20753781,10462520:0,0,0 -g3723,619:26264047,10462520 -k3723,620:30021227,10462520:2561803 -k3723,620:32583029,10462520:2561802 -) -(3723,621:20753781,11304204:11829248,505283,102891 -h3723,620:20753781,11304204:0,0,0 -g3723,620:25868865,11304204 -k3723,621:29823636,11304204:2759394 -k3723,621:32583029,11304204:2759393 -) -(3723,622:20753781,12145889:11829248,505283,102891 -h3723,621:20753781,12145889:0,0,0 -g3723,621:25473683,12145889 -k3723,622:29626045,12145889:2956985 -k3723,622:32583029,12145889:2956984 -) -(3723,623:20753781,12987573:11829248,505283,102891 -h3723,622:20753781,12987573:0,0,0 -g3723,622:25868865,12987573 -k3723,623:29823636,12987573:2759394 -k3723,623:32583029,12987573:2759393 -) -(3723,624:20753781,13829258:11829248,505283,102891 -h3723,623:20753781,13829258:0,0,0 -g3723,623:26264047,13829258 -k3723,624:30021227,13829258:2561803 -k3723,624:32583029,13829258:2561802 -) -(3723,625:20753781,14670942:11829248,505283,102891 -h3723,624:20753781,14670942:0,0,0 -g3723,624:27844776,14670942 -k3723,625:30811591,14670942:1771438 -k3723,625:32583029,14670942:1771438 -) -(3723,626:20753781,15512627:11829248,513147,102891 -h3723,625:20753781,15512627:0,0,0 -g3723,625:25868865,15512627 -g3723,625:27437141,15512627 -k3723,626:30607774,15512627:1975256 -k3723,626:32583029,15512627:1975255 -) -(3723,627:20753781,16354311:11829248,505283,102891 -h3723,626:20753781,16354311:0,0,0 -g3723,626:26264047,16354311 -k3723,627:30021227,16354311:2561803 -k3723,627:32583029,16354311:2561802 -) -(3723,628:20753781,17195996:11829248,505283,102891 -h3723,627:20753781,17195996:0,0,0 -g3723,627:25473683,17195996 -k3723,628:29626045,17195996:2956985 -k3723,628:32583029,17195996:2956984 -) -(3723,629:20753781,18037680:11829248,505283,102891 -h3723,628:20753781,18037680:0,0,0 -g3723,628:25473683,18037680 -k3723,629:29626045,18037680:2956985 -k3723,629:32583029,18037680:2956984 -) -(3723,633:20753781,19538000:11829248,505283,102891 -h3723,632:20753781,19538000:0,0,0 -g3723,632:23497773,19538000 -k3723,633:28638090,19538000:3944940 -k3723,633:32583029,19538000:3944939 -) -(3723,634:20753781,20379684:11829248,505283,102891 -h3723,633:20753781,20379684:0,0,0 -g3723,633:23497773,20379684 -g3723,633:25066049,20379684 -g3723,633:26634325,20379684 -k3723,634:30206366,20379684:2376664 -k3723,634:32583029,20379684:2376663 -) -(3723,635:20753781,21221369:11829248,513147,102891 -h3723,634:20753781,21221369:0,0,0 -g3723,634:26659229,21221369 -k3723,635:30218818,21221369:2364212 -k3723,635:32583029,21221369:2364211 -) -(3723,636:20753781,22063053:11829248,505283,102891 -h3723,635:20753781,22063053:0,0,0 -g3723,635:25078501,22063053 -k3723,636:29428454,22063053:3154576 -k3723,636:32583029,22063053:3154575 -) -(3723,640:20753781,23563372:11829248,505283,126483 -h3723,639:20753781,23563372:0,0,0 -g3723,639:23497773,23563372 -k3723,640:28638090,23563372:3944940 -k3723,640:32583029,23563372:3944939 -) -(3723,641:20753781,24405057:11829248,505283,126483 -h3723,640:20753781,24405057:0,0,0 -g3723,640:23497773,24405057 -g3723,640:25066049,24405057 -g3723,640:26634325,24405057 -k3723,641:30206366,24405057:2376664 -k3723,641:32583029,24405057:2376663 -) -] -(3723,642:32583029,24405057:0,355205,126483 -h3723,642:32583029,24405057:420741,355205,126483 -k3723,642:32583029,24405057:-420741 -) -) -] -(1,23541:32583029,45706769:0,0,0 -g1,23541:32583029,45706769 -) +g1,23754:6630773,4812305 +g1,23754:6630773,4812305 +g1,23754:10190688,4812305 +g1,23754:12088610,4812305 +g1,23754:12903877,4812305 +g1,23754:13517294,4812305 +g1,23754:15860861,4812305 +k1,23754:31387652,4812305:15526791 +) ) -] -(1,23541:6630773,47279633:25952256,0,0 -h1,23541:6630773,47279633:25952256,0,0 +] +[1,23754:6630773,45706769:25952256,40108032,0 +(1,23754:6630773,45706769:25952256,40108032,0 +(1,23754:6630773,45706769:0,0,0 +g1,23754:6630773,45706769 +) +[1,23754:6630773,45706769:25952256,40108032,0 +(3764,644:6630773,34841049:25952256,29242312,132808 +[3764,644:6630773,34841049:11829248,29242312,102891 +(3764,564:6630773,6254097:11829248,530548,102891 +h3764,563:6630773,6254097:0,0,0 +g3764,563:10323211,6254097 +k3764,564:15750833,6254097:2709189 +k3764,564:18460021,6254097:2709188 +) +(3764,565:6630773,7126420:11829248,530548,132808 +h3764,564:6630773,7126420:0,0,0 +g3764,564:10323211,7126420 +k3764,565:14989305,7126420:3470717 +k3764,565:18460021,7126420:3470716 +) +(3764,566:6630773,7998744:11829248,530548,132808 +h3764,565:6630773,7998744:0,0,0 +g3764,565:12397924,7998744 +g3764,565:13966200,7998744 +k3764,566:16810799,7998744:1649222 +k3764,566:18460021,7998744:1649222 +) +(3764,570:6630773,9647151:11829248,530548,102891 +h3764,569:6630773,9647151:0,0,0 +g3764,569:8248499,9647151 +g3764,569:9418316,9647151 +k3764,570:14536857,9647151:3923164 +k3764,570:18460021,9647151:3923164 +) +(3764,571:6630773,10519475:11829248,530548,102891 +h3764,570:6630773,10519475:0,0,0 +g3764,570:8248499,10519475 +k3764,571:13951949,10519475:4508073 +k3764,571:18460021,10519475:4508072 +) +(3764,572:6630773,11391798:11829248,538806,102891 +h3764,571:6630773,11391798:0,0,0 +g3764,571:9493326,11391798 +k3764,572:14574362,11391798:3885659 +k3764,572:18460021,11391798:3885659 +) +(3764,573:6630773,12264122:11829248,530548,102891 +h3764,572:6630773,12264122:0,0,0 +g3764,572:9908269,12264122 +g3764,572:11476545,12264122 +k3764,573:15565972,12264122:2894050 +k3764,573:18460021,12264122:2894049 +) +(3764,574:6630773,13136445:11829248,530548,102891 +h3764,573:6630773,13136445:0,0,0 +g3764,573:9908269,13136445 +g3764,573:11476545,13136445 +k3764,574:15565972,13136445:2894050 +k3764,574:18460021,13136445:2894049 +) +(3764,575:6630773,14008769:11829248,530548,102891 +h3764,574:6630773,14008769:0,0,0 +g3764,574:11153096,14008769 +g3764,574:12721372,14008769 +k3764,575:16188385,14008769:2271636 +k3764,575:18460021,14008769:2271636 +) +(3764,576:6630773,14881092:11829248,530548,102891 +h3764,575:6630773,14881092:0,0,0 +g3764,575:13227808,14881092 +k3764,576:16441603,14881092:2018418 +k3764,576:18460021,14881092:2018418 +) +(3764,577:6630773,15753416:11829248,530548,102891 +h3764,576:6630773,15753416:0,0,0 +g3764,576:11982981,15753416 +k3764,577:15819190,15753416:2640832 +k3764,577:18460021,15753416:2640831 +) +(3764,578:6630773,16625739:11829248,530548,141066 +h3764,577:6630773,16625739:0,0,0 +g3764,577:11982981,16625739 +g3764,577:13551257,16625739 +g3764,577:15119533,16625739 +k3764,578:17387466,16625739:1072556 +k3764,578:18460021,16625739:1072555 +) +(3764,579:6630773,17498063:11829248,530548,141066 +h3764,578:6630773,17498063:0,0,0 +g3764,578:12397924,17498063 +k3764,579:16026661,17498063:2433360 +k3764,579:18460021,17498063:2433360 +) +(3764,580:6630773,18370386:11829248,530548,102891 +h3764,579:6630773,18370386:0,0,0 +g3764,579:13642751,18370386 +k3764,580:16649075,18370386:1810947 +k3764,580:18460021,18370386:1810946 +) +(3764,581:6630773,19242710:11829248,530548,102891 +h3764,580:6630773,19242710:0,0,0 +g3764,580:13227808,19242710 +k3764,581:16441603,19242710:2018418 +k3764,581:18460021,19242710:2018418 +) +(3764,582:6630773,20115033:11829248,530548,102891 +h3764,581:6630773,20115033:0,0,0 +g3764,581:11568039,20115033 +k3764,582:15611719,20115033:2848303 +k3764,582:18460021,20115033:2848302 +) +(3764,583:6630773,20987357:11829248,530548,102891 +h3764,582:6630773,20987357:0,0,0 +g3764,582:11982981,20987357 +k3764,583:15819190,20987357:2640832 +k3764,583:18460021,20987357:2640831 +) +(3764,584:6630773,21859680:11829248,530548,102891 +h3764,583:6630773,21859680:0,0,0 +g3764,583:9493326,21859680 +g3764,583:11061602,21859680 +g3764,583:12629878,21859680 +g3764,583:14198154,21859680 +g3764,583:15766430,21859680 +k3764,584:17710914,21859680:749107 +k3764,584:18460021,21859680:749107 +) +(3764,585:6630773,22732003:11829248,530548,102891 +h3764,584:6630773,22732003:0,0,0 +g3764,584:10323211,22732003 +g3764,584:11891487,22732003 +g3764,584:13459763,22732003 +k3764,585:16557581,22732003:1902441 +k3764,585:18460021,22732003:1902440 +) +(3764,586:6630773,23604327:11829248,530548,102891 +h3764,585:6630773,23604327:0,0,0 +g3764,585:10738154,23604327 +g3764,585:11907971,23604327 +k3764,586:15781685,23604327:2678337 +k3764,586:18460021,23604327:2678336 +) +(3764,587:6630773,24476650:11829248,538806,102891 +h3764,586:6630773,24476650:0,0,0 +k3764,586:18460021,24476650:867075 +) +(3764,587:9252213,25341730:9207808,485622,11795 +k3764,587:14453806,25341730:4006216 +k3764,587:18460021,25341730:4006215 +) +(3764,588:6630773,26214054:11829248,530548,132808 +h3764,587:6630773,26214054:0,0,0 +g3764,587:10738154,26214054 +g3764,587:11907971,26214054 +k3764,588:15781685,26214054:2678337 +k3764,588:18460021,26214054:2678336 +) +(3764,589:6630773,27086377:11829248,538806,102891 +h3764,588:6630773,27086377:0,0,0 +g3764,588:11568039,27086377 +k3764,589:15611719,27086377:2848303 +k3764,589:18460021,27086377:2848302 +) +(3764,590:6630773,27958701:11829248,530548,102891 +h3764,589:6630773,27958701:0,0,0 +g3764,589:11568039,27958701 +k3764,590:15611719,27958701:2848303 +k3764,590:18460021,27958701:2848302 +) +(3764,591:6630773,28831024:11829248,530548,102891 +h3764,590:6630773,28831024:0,0,0 +g3764,590:10323211,28831024 +k3764,591:14790075,28831024:3669946 +k3764,591:18460021,28831024:3669946 +) +(3764,592:6630773,29703348:11829248,530548,102891 +h3764,591:6630773,29703348:0,0,0 +g3764,591:9908269,29703348 +g3764,591:11078086,29703348 +g3764,591:12247903,29703348 +k3764,592:15752421,29703348:2707600 +k3764,592:18460021,29703348:2707600 +) +(3764,593:6630773,30575671:11829248,530548,102891 +h3764,592:6630773,30575671:0,0,0 +g3764,592:8663442,30575671 +k3764,593:14159420,30575671:4300601 +k3764,593:18460021,30575671:4300601 +) +(3764,597:6630773,32224079:11829248,530548,141066 +h3764,596:6630773,32224079:0,0,0 +g3764,596:10738154,32224079 +k3764,597:15196776,32224079:3263245 +k3764,597:18460021,32224079:3263245 +) +(3764,598:6630773,33096402:11829248,530548,132808 +h3764,597:6630773,33096402:0,0,0 +g3764,597:10323211,33096402 +g3764,597:11493028,33096402 +k3764,598:15374984,33096402:3085038 +k3764,598:18460021,33096402:3085037 +) +(3764,599:6630773,33968726:11829248,530548,102891 +h3764,598:6630773,33968726:0,0,0 +g3764,598:10323211,33968726 +k3764,599:14989305,33968726:3470717 +k3764,599:18460021,33968726:3470716 +) +(3764,600:6630773,34841049:11829248,530548,102891 +h3764,599:6630773,34841049:0,0,0 +g3764,599:10323211,34841049 +k3764,600:14790075,34841049:3669946 +k3764,600:18460021,34841049:3669946 +) +] +k3764,644:19606901,34841049:1146880 +r1,23754:19606901,34841049:0,29375120,132808 +k3764,644:20753781,34841049:1146880 +[3764,644:20753781,34841049:11829248,29242312,132808 +(3764,601:20753781,6254097:11829248,530548,102891 +h3764,600:20753781,6254097:0,0,0 +g3764,600:24446219,6254097 +k3764,601:28913083,6254097:3669946 +k3764,601:32583029,6254097:3669946 +) +(3764,602:20753781,7119313:11829248,530548,102891 +h3764,601:20753781,7119313:0,0,0 +g3764,601:24446219,7119313 +k3764,602:29112313,7119313:3470717 +k3764,602:32583029,7119313:3470716 +) +(3764,603:20753781,7984528:11829248,530548,132808 +h3764,602:20753781,7984528:0,0,0 +g3764,602:24861162,7984528 +k3764,603:29319784,7984528:3263245 +k3764,603:32583029,7984528:3263245 +) +(3764,604:20753781,8849744:11829248,530548,132808 +h3764,603:20753781,8849744:0,0,0 +g3764,603:24446219,8849744 +g3764,603:27537552,8849744 +g3764,603:29105828,8849744 +k3764,604:31442117,8849744:1140912 +k3764,604:32583029,8849744:1140912 +) +(3764,605:20753781,9714960:11829248,530548,141066 +h3764,604:20753781,9714960:0,0,0 +g3764,604:28180701,9714960 +k3764,605:30979554,9714960:1603476 +k3764,605:32583029,9714960:1603475 +) +(3764,609:20753781,11237796:11829248,530548,132808 +h3764,608:20753781,11237796:0,0,0 +g3764,608:24446219,11237796 +g3764,608:26014495,11237796 +g3764,608:27582771,11237796 +k3764,609:30680589,11237796:1902441 +k3764,609:32583029,11237796:1902440 +) +(3764,610:20753781,12103012:11829248,530548,102891 +h3764,609:20753781,12103012:0,0,0 +g3764,609:23201392,12103012 +g3764,609:24769668,12103012 +g3764,609:26337944,12103012 +k3764,610:30058175,12103012:2524854 +k3764,610:32583029,12103012:2524854 +) +(3764,611:20753781,12968227:11829248,530548,102891 +h3764,610:20753781,12968227:0,0,0 +g3764,610:23616334,12968227 +k3764,611:28697370,12968227:3885659 +k3764,611:32583029,12968227:3885659 +) +(3764,612:20753781,13833443:11829248,485622,102891 +h3764,611:20753781,13833443:0,0,0 +g3764,611:23616334,13833443 +k3764,612:28498141,13833443:4084889 +k3764,612:32583029,13833443:4084888 +) +(3764,613:20753781,14698658:11829248,530548,102891 +h3764,612:20753781,14698658:0,0,0 +g3764,612:23616334,14698658 +k3764,613:28697370,14698658:3885659 +k3764,613:32583029,14698658:3885659 +) +(3764,617:20753781,16221495:11829248,530548,102891 +h3764,616:20753781,16221495:0,0,0 +g3764,616:23201392,16221495 +g3764,616:24769668,16221495 +k3764,617:30035565,16221495:2547464 +k3764,617:32583029,16221495:2547464 +) +(3764,618:20753781,17086710:11829248,530548,102891 +h3764,617:20753781,17086710:0,0,0 +g3764,617:23616334,17086710 +g3764,617:25184610,17086710 +k3764,618:30243036,17086710:2339993 +k3764,618:32583029,17086710:2339993 +) +(3764,619:20753781,17951926:11829248,530548,102891 +h3764,618:20753781,17951926:0,0,0 +g3764,618:24446219,17951926 +g3764,618:27537552,17951926 +k3764,619:30657979,17951926:1925050 +k3764,619:32583029,17951926:1925050 +) +(3764,620:20753781,18817142:11829248,530548,102891 +h3764,619:20753781,18817142:0,0,0 +g3764,619:25691047,18817142 +g3764,619:27259323,18817142 +k3764,620:30518865,18817142:2064165 +k3764,620:32583029,18817142:2064164 +) +(3764,621:20753781,19682357:11829248,530548,102891 +h3764,620:20753781,19682357:0,0,0 +g3764,620:26105989,19682357 +g3764,620:27674265,19682357 +k3764,621:30726336,19682357:1856694 +k3764,621:32583029,19682357:1856693 +) +(3764,622:20753781,20547573:11829248,530548,102891 +h3764,621:20753781,20547573:0,0,0 +g3764,621:26520932,20547573 +k3764,622:30149669,20547573:2433360 +k3764,622:32583029,20547573:2433360 +) +(3764,623:20753781,21412789:11829248,530548,102891 +h3764,622:20753781,21412789:0,0,0 +g3764,622:26105989,21412789 +k3764,623:29942198,21412789:2640832 +k3764,623:32583029,21412789:2640831 +) +(3764,624:20753781,22278004:11829248,530548,102891 +h3764,623:20753781,22278004:0,0,0 +g3764,623:25691047,22278004 +k3764,624:29734727,22278004:2848303 +k3764,624:32583029,22278004:2848302 +) +(3764,625:20753781,23143220:11829248,530548,102891 +h3764,624:20753781,23143220:0,0,0 +g3764,624:26105989,23143220 +k3764,625:29942198,23143220:2640832 +k3764,625:32583029,23143220:2640831 +) +(3764,626:20753781,24008436:11829248,530548,102891 +h3764,625:20753781,24008436:0,0,0 +g3764,625:26520932,24008436 +k3764,626:30149669,24008436:2433360 +k3764,626:32583029,24008436:2433360 +) +(3764,627:20753781,24873651:11829248,530548,102891 +h3764,626:20753781,24873651:0,0,0 +g3764,626:28180701,24873651 +k3764,627:30979554,24873651:1603476 +k3764,627:32583029,24873651:1603475 +) +(3764,628:20753781,25738867:11829248,538806,102891 +h3764,627:20753781,25738867:0,0,0 +g3764,627:26105989,25738867 +g3764,627:27674265,25738867 +k3764,628:30726336,25738867:1856694 +k3764,628:32583029,25738867:1856693 +) +(3764,629:20753781,26604082:11829248,530548,102891 +h3764,628:20753781,26604082:0,0,0 +g3764,628:26520932,26604082 +k3764,629:30149669,26604082:2433360 +k3764,629:32583029,26604082:2433360 +) +(3764,630:20753781,27469298:11829248,530548,102891 +h3764,629:20753781,27469298:0,0,0 +g3764,629:25691047,27469298 +k3764,630:29734727,27469298:2848303 +k3764,630:32583029,27469298:2848302 +) +(3764,631:20753781,28334514:11829248,530548,102891 +h3764,630:20753781,28334514:0,0,0 +g3764,630:25691047,28334514 +k3764,631:29734727,28334514:2848303 +k3764,631:32583029,28334514:2848302 +) +(3764,635:20753781,29857350:11829248,530548,102891 +h3764,634:20753781,29857350:0,0,0 +g3764,634:23616334,29857350 +k3764,635:28697370,29857350:3885659 +k3764,635:32583029,29857350:3885659 +) +(3764,636:20753781,30722566:11829248,530548,102891 +h3764,635:20753781,30722566:0,0,0 +g3764,635:23616334,30722566 +g3764,635:25184610,30722566 +g3764,635:26752886,30722566 +k3764,636:30265646,30722566:2317383 +k3764,636:32583029,30722566:2317383 +) +(3764,637:20753781,31587781:11829248,538806,102891 +h3764,636:20753781,31587781:0,0,0 +g3764,636:26935874,31587781 +k3764,637:30357140,31587781:2225889 +k3764,637:32583029,31587781:2225889 +) +(3764,638:20753781,32452997:11829248,530548,102891 +h3764,637:20753781,32452997:0,0,0 +g3764,637:25276104,32452997 +k3764,638:29527255,32452997:3055774 +k3764,638:32583029,32452997:3055774 +) +(3764,642:20753781,33975833:11829248,530548,132808 +h3764,641:20753781,33975833:0,0,0 +g3764,641:23616334,33975833 +k3764,642:28697370,33975833:3885659 +k3764,642:32583029,33975833:3885659 +) +(3764,643:20753781,34841049:11829248,530548,132808 +h3764,642:20753781,34841049:0,0,0 +g3764,642:23616334,34841049 +g3764,642:25184610,34841049 +g3764,642:26752886,34841049 +k3764,643:30265646,34841049:2317383 +k3764,643:32583029,34841049:2317383 +) +] +(3764,644:32583029,34841049:0,355205,126483 +h3764,644:32583029,34841049:420741,355205,126483 +k3764,644:32583029,34841049:-420741 +) +) +] +(1,23754:32583029,45706769:0,0,0 +g1,23754:32583029,45706769 +) +) +] +(1,23754:6630773,47279633:25952256,0,0 +h1,23754:6630773,47279633:25952256,0,0 ) ] -(1,23541:4262630,4025873:0,0,0 -[1,23541:-473656,4025873:0,0,0 -(1,23541:-473656,-710413:0,0,0 -(1,23541:-473656,-710413:0,0,0 -g1,23541:-473656,-710413 +(1,23754:4262630,4025873:0,0,0 +[1,23754:-473656,4025873:0,0,0 +(1,23754:-473656,-710413:0,0,0 +(1,23754:-473656,-710413:0,0,0 +g1,23754:-473656,-710413 ) -g1,23541:-473656,-710413 +g1,23754:-473656,-710413 ) ] ) ] -!12217 -}448 +!16493 +}430 !12 -{449 -[1,23541:4262630,47279633:28320399,43253760,0 -(1,23541:4262630,4025873:0,0,0 -[1,23541:-473656,4025873:0,0,0 -(1,23541:-473656,-710413:0,0,0 -(1,23541:-473656,-644877:0,0,0 -k1,23541:-473656,-644877:-65536 +{431 +[1,23754:4262630,47279633:28320399,43253760,0 +(1,23754:4262630,4025873:0,0,0 +[1,23754:-473656,4025873:0,0,0 +(1,23754:-473656,-710413:0,0,0 +(1,23754:-473656,-644877:0,0,0 +k1,23754:-473656,-644877:-65536 ) -(1,23541:-473656,4736287:0,0,0 -k1,23541:-473656,4736287:5209943 +(1,23754:-473656,4736287:0,0,0 +k1,23754:-473656,4736287:5209943 ) -g1,23541:-473656,-710413 +g1,23754:-473656,-710413 ) ] ) -[1,23541:6630773,47279633:25952256,43253760,0 -[1,23541:6630773,4812305:25952256,786432,0 -(1,23541:6630773,4812305:25952256,0,0 -(1,23541:6630773,4812305:25952256,0,0 -g1,23541:3078558,4812305 -[1,23541:3078558,4812305:0,0,0 -(1,23541:3078558,2439708:0,1703936,0 -k1,23541:1358238,2439708:-1720320 -(1,23541:1358238,2439708:1720320,1703936,0 -(1,23541:1358238,2439708:1179648,16384,0 -r1,23541:2537886,2439708:1179648,16384,0 +[1,23754:6630773,47279633:25952256,43253760,0 +[1,23754:6630773,4812305:25952256,786432,0 +(1,23754:6630773,4812305:25952256,0,0 +(1,23754:6630773,4812305:25952256,0,0 +g1,23754:3078558,4812305 +[1,23754:3078558,4812305:0,0,0 +(1,23754:3078558,2439708:0,1703936,0 +k1,23754:1358238,2439708:-1720320 +(1,23754:1358238,2439708:1720320,1703936,0 +(1,23754:1358238,2439708:1179648,16384,0 +r1,23754:2537886,2439708:1179648,16384,0 ) -g1,23541:3062174,2439708 -(1,23541:3062174,2439708:16384,1703936,0 -[1,23541:3062174,2439708:25952256,1703936,0 -(1,23541:3062174,1915420:25952256,1179648,0 -(1,23541:3062174,1915420:16384,1179648,0 -r1,23541:3078558,1915420:16384,1179648,0 +g1,23754:3062174,2439708 +(1,23754:3062174,2439708:16384,1703936,0 +[1,23754:3062174,2439708:25952256,1703936,0 +(1,23754:3062174,1915420:25952256,1179648,0 +(1,23754:3062174,1915420:16384,1179648,0 +r1,23754:3078558,1915420:16384,1179648,0 ) -k1,23541:29014430,1915420:25935872 -g1,23541:29014430,1915420 +k1,23754:29014430,1915420:25935872 +g1,23754:29014430,1915420 ) ] ) ) ) ] -[1,23541:3078558,4812305:0,0,0 -(1,23541:3078558,2439708:0,1703936,0 -g1,23541:29030814,2439708 -g1,23541:36135244,2439708 -(1,23541:36135244,2439708:1720320,1703936,0 -(1,23541:36135244,2439708:16384,1703936,0 -[1,23541:36135244,2439708:25952256,1703936,0 -(1,23541:36135244,1915420:25952256,1179648,0 -(1,23541:36135244,1915420:16384,1179648,0 -r1,23541:36151628,1915420:16384,1179648,0 +[1,23754:3078558,4812305:0,0,0 +(1,23754:3078558,2439708:0,1703936,0 +g1,23754:29030814,2439708 +g1,23754:36135244,2439708 +(1,23754:36135244,2439708:1720320,1703936,0 +(1,23754:36135244,2439708:16384,1703936,0 +[1,23754:36135244,2439708:25952256,1703936,0 +(1,23754:36135244,1915420:25952256,1179648,0 +(1,23754:36135244,1915420:16384,1179648,0 +r1,23754:36151628,1915420:16384,1179648,0 ) -k1,23541:62087500,1915420:25935872 -g1,23541:62087500,1915420 +k1,23754:62087500,1915420:25935872 +g1,23754:62087500,1915420 ) ] ) -g1,23541:36675916,2439708 -(1,23541:36675916,2439708:1179648,16384,0 -r1,23541:37855564,2439708:1179648,16384,0 +g1,23754:36675916,2439708 +(1,23754:36675916,2439708:1179648,16384,0 +r1,23754:37855564,2439708:1179648,16384,0 ) ) -k1,23541:3078556,2439708:-34777008 +k1,23754:3078556,2439708:-34777008 ) ] -[1,23541:3078558,4812305:0,0,0 -(1,23541:3078558,49800853:0,16384,2228224 -k1,23541:1358238,49800853:-1720320 -(1,23541:1358238,49800853:1720320,16384,2228224 -(1,23541:1358238,49800853:1179648,16384,0 -r1,23541:2537886,49800853:1179648,16384,0 +[1,23754:3078558,4812305:0,0,0 +(1,23754:3078558,49800853:0,16384,2228224 +k1,23754:1358238,49800853:-1720320 +(1,23754:1358238,49800853:1720320,16384,2228224 +(1,23754:1358238,49800853:1179648,16384,0 +r1,23754:2537886,49800853:1179648,16384,0 ) -g1,23541:3062174,49800853 -(1,23541:3062174,52029077:16384,1703936,0 -[1,23541:3062174,52029077:25952256,1703936,0 -(1,23541:3062174,51504789:25952256,1179648,0 -(1,23541:3062174,51504789:16384,1179648,0 -r1,23541:3078558,51504789:16384,1179648,0 +g1,23754:3062174,49800853 +(1,23754:3062174,52029077:16384,1703936,0 +[1,23754:3062174,52029077:25952256,1703936,0 +(1,23754:3062174,51504789:25952256,1179648,0 +(1,23754:3062174,51504789:16384,1179648,0 +r1,23754:3078558,51504789:16384,1179648,0 ) -k1,23541:29014430,51504789:25935872 -g1,23541:29014430,51504789 +k1,23754:29014430,51504789:25935872 +g1,23754:29014430,51504789 ) ] ) ) ) ] -[1,23541:3078558,4812305:0,0,0 -(1,23541:3078558,49800853:0,16384,2228224 -g1,23541:29030814,49800853 -g1,23541:36135244,49800853 -(1,23541:36135244,49800853:1720320,16384,2228224 -(1,23541:36135244,52029077:16384,1703936,0 -[1,23541:36135244,52029077:25952256,1703936,0 -(1,23541:36135244,51504789:25952256,1179648,0 -(1,23541:36135244,51504789:16384,1179648,0 -r1,23541:36151628,51504789:16384,1179648,0 +[1,23754:3078558,4812305:0,0,0 +(1,23754:3078558,49800853:0,16384,2228224 +g1,23754:29030814,49800853 +g1,23754:36135244,49800853 +(1,23754:36135244,49800853:1720320,16384,2228224 +(1,23754:36135244,52029077:16384,1703936,0 +[1,23754:36135244,52029077:25952256,1703936,0 +(1,23754:36135244,51504789:25952256,1179648,0 +(1,23754:36135244,51504789:16384,1179648,0 +r1,23754:36151628,51504789:16384,1179648,0 ) -k1,23541:62087500,51504789:25935872 -g1,23541:62087500,51504789 +k1,23754:62087500,51504789:25935872 +g1,23754:62087500,51504789 ) ] ) -g1,23541:36675916,49800853 -(1,23541:36675916,49800853:1179648,16384,0 -r1,23541:37855564,49800853:1179648,16384,0 +g1,23754:36675916,49800853 +(1,23754:36675916,49800853:1179648,16384,0 +r1,23754:37855564,49800853:1179648,16384,0 ) ) -k1,23541:3078556,49800853:-34777008 +k1,23754:3078556,49800853:-34777008 ) ] -g1,23541:6630773,4812305 +g1,23754:6630773,4812305 ) ) ] -[1,23541:6630773,45706769:0,40108032,0 -(1,23541:6630773,45706769:0,40108032,0 -(1,23541:6630773,45706769:0,0,0 -g1,23541:6630773,45706769 +[1,23754:6630773,45706769:0,40108032,0 +(1,23754:6630773,45706769:0,40108032,0 +(1,23754:6630773,45706769:0,0,0 +g1,23754:6630773,45706769 ) -[1,23541:6630773,45706769:0,40108032,0 -h1,23541:6630773,6254097:0,0,0 +[1,23754:6630773,45706769:0,40108032,0 +h1,23754:6630773,6254097:0,0,0 ] -(1,23541:6630773,45706769:0,0,0 -g1,23541:6630773,45706769 +(1,23754:6630773,45706769:0,0,0 +g1,23754:6630773,45706769 ) ) ] -(1,23541:6630773,47279633:25952256,0,0 -h1,23541:6630773,47279633:25952256,0,0 +(1,23754:6630773,47279633:25952256,0,0 +h1,23754:6630773,47279633:25952256,0,0 ) ] -(1,23541:4262630,4025873:0,0,0 -[1,23541:-473656,4025873:0,0,0 -(1,23541:-473656,-710413:0,0,0 -(1,23541:-473656,-710413:0,0,0 -g1,23541:-473656,-710413 +(1,23754:4262630,4025873:0,0,0 +[1,23754:-473656,4025873:0,0,0 +(1,23754:-473656,-710413:0,0,0 +(1,23754:-473656,-710413:0,0,0 +g1,23754:-473656,-710413 ) -g1,23541:-473656,-710413 +g1,23754:-473656,-710413 ) ] ) ] !3399 -}449 -Input:3724:C:\Users\aphalo_2\Documents\Own_manuscripts\Books\learnr-book-crc\rcatsidx.ind +}431 +Input:3765:C:\Users\aphalo_2\Documents\Own_manuscripts\Books\learnr-book-crc\rcatsidx.ind !101 -{450 -[3724,80:4262630,47279633:28320399,43253760,11795 -(3724,80:4262630,4025873:0,0,0 -[3724,80:-473656,4025873:0,0,0 -(3724,80:-473656,-710413:0,0,0 -(3724,80:-473656,-644877:0,0,0 -k3724,80:-473656,-644877:-65536 +{432 +[3765,75:4262630,47279633:28320399,43253760,0 +(3765,75:4262630,4025873:0,0,0 +[3765,75:-473656,4025873:0,0,0 +(3765,75:-473656,-710413:0,0,0 +(3765,75:-473656,-644877:0,0,0 +k3765,75:-473656,-644877:-65536 ) -(3724,80:-473656,4736287:0,0,0 -k3724,80:-473656,4736287:5209943 +(3765,75:-473656,4736287:0,0,0 +k3765,75:-473656,4736287:5209943 ) -g3724,80:-473656,-710413 +g3765,75:-473656,-710413 ) ] ) -[3724,80:6630773,47279633:25952256,43253760,11795 -[3724,80:6630773,4812305:25952256,786432,0 -(3724,80:6630773,4812305:25952256,0,0 -(3724,80:6630773,4812305:25952256,0,0 -g3724,80:3078558,4812305 -[3724,80:3078558,4812305:0,0,0 -(3724,80:3078558,2439708:0,1703936,0 -k3724,80:1358238,2439708:-1720320 -(3724,1:1358238,2439708:1720320,1703936,0 -(3724,1:1358238,2439708:1179648,16384,0 -r3724,80:2537886,2439708:1179648,16384,0 +[3765,75:6630773,47279633:25952256,43253760,0 +[3765,75:6630773,4812305:25952256,786432,0 +(3765,75:6630773,4812305:25952256,0,0 +(3765,75:6630773,4812305:25952256,0,0 +g3765,75:3078558,4812305 +[3765,75:3078558,4812305:0,0,0 +(3765,75:3078558,2439708:0,1703936,0 +k3765,75:1358238,2439708:-1720320 +(3765,1:1358238,2439708:1720320,1703936,0 +(3765,1:1358238,2439708:1179648,16384,0 +r3765,75:2537886,2439708:1179648,16384,0 ) -g3724,1:3062174,2439708 -(3724,1:3062174,2439708:16384,1703936,0 -[3724,1:3062174,2439708:25952256,1703936,0 -(3724,1:3062174,1915420:25952256,1179648,0 -(3724,1:3062174,1915420:16384,1179648,0 -r3724,80:3078558,1915420:16384,1179648,0 +g3765,1:3062174,2439708 +(3765,1:3062174,2439708:16384,1703936,0 +[3765,1:3062174,2439708:25952256,1703936,0 +(3765,1:3062174,1915420:25952256,1179648,0 +(3765,1:3062174,1915420:16384,1179648,0 +r3765,75:3078558,1915420:16384,1179648,0 ) -k3724,1:29014430,1915420:25935872 -g3724,1:29014430,1915420 +k3765,1:29014430,1915420:25935872 +g3765,1:29014430,1915420 ) ] ) ) ) ] -[3724,80:3078558,4812305:0,0,0 -(3724,80:3078558,2439708:0,1703936,0 -g3724,80:29030814,2439708 -g3724,80:36135244,2439708 -(3724,1:36135244,2439708:1720320,1703936,0 -(3724,1:36135244,2439708:16384,1703936,0 -[3724,1:36135244,2439708:25952256,1703936,0 -(3724,1:36135244,1915420:25952256,1179648,0 -(3724,1:36135244,1915420:16384,1179648,0 -r3724,80:36151628,1915420:16384,1179648,0 +[3765,75:3078558,4812305:0,0,0 +(3765,75:3078558,2439708:0,1703936,0 +g3765,75:29030814,2439708 +g3765,75:36135244,2439708 +(3765,1:36135244,2439708:1720320,1703936,0 +(3765,1:36135244,2439708:16384,1703936,0 +[3765,1:36135244,2439708:25952256,1703936,0 +(3765,1:36135244,1915420:25952256,1179648,0 +(3765,1:36135244,1915420:16384,1179648,0 +r3765,75:36151628,1915420:16384,1179648,0 ) -k3724,1:62087500,1915420:25935872 -g3724,1:62087500,1915420 +k3765,1:62087500,1915420:25935872 +g3765,1:62087500,1915420 ) ] ) -g3724,1:36675916,2439708 -(3724,1:36675916,2439708:1179648,16384,0 -r3724,80:37855564,2439708:1179648,16384,0 +g3765,1:36675916,2439708 +(3765,1:36675916,2439708:1179648,16384,0 +r3765,75:37855564,2439708:1179648,16384,0 ) ) -k3724,80:3078556,2439708:-34777008 +k3765,75:3078556,2439708:-34777008 ) ] -[3724,80:3078558,4812305:0,0,0 -(3724,80:3078558,49800853:0,16384,2228224 -k3724,80:1358238,49800853:-1720320 -(3724,1:1358238,49800853:1720320,16384,2228224 -(3724,1:1358238,49800853:1179648,16384,0 -r3724,80:2537886,49800853:1179648,16384,0 +[3765,75:3078558,4812305:0,0,0 +(3765,75:3078558,49800853:0,16384,2228224 +k3765,75:1358238,49800853:-1720320 +(3765,1:1358238,49800853:1720320,16384,2228224 +(3765,1:1358238,49800853:1179648,16384,0 +r3765,75:2537886,49800853:1179648,16384,0 ) -g3724,1:3062174,49800853 -(3724,1:3062174,52029077:16384,1703936,0 -[3724,1:3062174,52029077:25952256,1703936,0 -(3724,1:3062174,51504789:25952256,1179648,0 -(3724,1:3062174,51504789:16384,1179648,0 -r3724,80:3078558,51504789:16384,1179648,0 +g3765,1:3062174,49800853 +(3765,1:3062174,52029077:16384,1703936,0 +[3765,1:3062174,52029077:25952256,1703936,0 +(3765,1:3062174,51504789:25952256,1179648,0 +(3765,1:3062174,51504789:16384,1179648,0 +r3765,75:3078558,51504789:16384,1179648,0 ) -k3724,1:29014430,51504789:25935872 -g3724,1:29014430,51504789 +k3765,1:29014430,51504789:25935872 +g3765,1:29014430,51504789 ) ] ) ) ) ] -[3724,80:3078558,4812305:0,0,0 -(3724,80:3078558,49800853:0,16384,2228224 -g3724,80:29030814,49800853 -g3724,80:36135244,49800853 -(3724,1:36135244,49800853:1720320,16384,2228224 -(3724,1:36135244,52029077:16384,1703936,0 -[3724,1:36135244,52029077:25952256,1703936,0 -(3724,1:36135244,51504789:25952256,1179648,0 -(3724,1:36135244,51504789:16384,1179648,0 -r3724,80:36151628,51504789:16384,1179648,0 +[3765,75:3078558,4812305:0,0,0 +(3765,75:3078558,49800853:0,16384,2228224 +g3765,75:29030814,49800853 +g3765,75:36135244,49800853 +(3765,1:36135244,49800853:1720320,16384,2228224 +(3765,1:36135244,52029077:16384,1703936,0 +[3765,1:36135244,52029077:25952256,1703936,0 +(3765,1:36135244,51504789:25952256,1179648,0 +(3765,1:36135244,51504789:16384,1179648,0 +r3765,75:36151628,51504789:16384,1179648,0 ) -k3724,1:62087500,51504789:25935872 -g3724,1:62087500,51504789 +k3765,1:62087500,51504789:25935872 +g3765,1:62087500,51504789 ) ] ) -g3724,1:36675916,49800853 -(3724,1:36675916,49800853:1179648,16384,0 -r3724,80:37855564,49800853:1179648,16384,0 +g3765,1:36675916,49800853 +(3765,1:36675916,49800853:1179648,16384,0 +r3765,75:37855564,49800853:1179648,16384,0 ) ) -k3724,80:3078556,49800853:-34777008 +k3765,75:3078556,49800853:-34777008 ) ] -g3724,80:6630773,4812305 +g3765,75:6630773,4812305 ) ) -] -[3724,80:6630773,45706769:25952256,40108032,0 -(3724,80:6630773,45706769:25952256,40108032,0 -(3724,80:6630773,45706769:0,0,0 -g3724,80:6630773,45706769 -) -[3724,80:6630773,45706769:25952256,40108032,0 -[3724,1:6630773,12106481:25952256,6507744,0 -(3724,1:6630773,7073297:25952256,32768,229376 -(3724,1:6630773,7073297:0,32768,229376 -(3724,1:6630773,7073297:5505024,32768,229376 -r3724,80:12135797,7073297:5505024,262144,229376 -) -k3724,1:6630773,7073297:-5505024 -) -) -(3724,1:6630773,8803457:25952256,923664,241827 -h3724,1:6630773,8803457:0,0,0 -g3724,1:10235777,8803457 -g3724,1:11799990,8803457 -g3724,1:12964302,8803457 -g3724,1:17375006,8803457 -g3724,1:19181047,8803457 -k3724,1:28598768,8803457:3984262 -k3724,1:32583029,8803457:3984261 -) -(3724,1:6630773,9419505:25952256,32768,0 -(3724,1:6630773,9419505:5505024,32768,0 -r3724,80:12135797,9419505:5505024,32768,0 -) -k3724,1:22359413,9419505:10223616 -k3724,1:32583029,9419505:10223616 -) -] -(3724,1:6630773,12947969:25952256,505283,134348 -k3724,1:7270083,12947969:224467 -k3724,1:9562892,12947969:224493 -k3724,1:10978830,12947969:224493 -k3724,1:13845079,12947969:224493 -k3724,1:16730333,12947969:224492 -k3724,1:18222292,12947969:224493 -k3724,1:19465870,12947969:224493 -k3724,1:22919977,12947969:224493 -k3724,1:25550951,12947969:224492 -k3724,1:26966889,12947969:224493 -k3724,1:29651604,12947969:224493 -k3724,1:32583029,12947969:0 -) -(3724,1:6630773,13789457:25952256,513147,134348 -k3724,1:8016401,13789457:194183 -k3724,1:10404729,13789457:194183 -k3724,1:12956897,13789457:194183 -k3724,1:15612612,13789457:194183 -k3724,1:16466087,13789457:194183 -k3724,1:20083215,13789457:194183 -k3724,1:21840432,13789457:194183 -k3724,1:24671784,13789457:194183 -k3724,1:28065435,13789457:194183 -k3724,1:29451063,13789457:194183 -k3724,1:32583029,13789457:0 -) -(3724,1:6630773,14630945:25952256,505283,126483 -g3724,1:9071989,14630945 -g3724,1:10462663,14630945 -g3724,1:12170531,14630945 -g3724,1:14543589,14630945 -g3724,1:15934263,14630945 -k3724,1:32583029,14630945:13050839 -g3724,1:32583029,14630945 -) -(3724,80:6630773,45706769:25952256,29316832,126483 -[3724,80:6630773,45706769:11829248,29316832,102891 -(3724,4:6630773,17045297:11829248,505283,7863 -h3724,3:6630773,17045297:0,0,0 -g3724,3:9062814,17045297 -g3724,3:10453488,17045297 -k3724,4:15513195,17045297:2946826 -k3724,4:18460021,17045297:2946826 -) -(3724,5:6630773,17888327:11829248,485622,126483 -h3724,4:6630773,17888327:0,0,0 -r3724,80:6630773,17888327:0,612105,126483 -g3724,4:7941493,17888327 -g3724,4:7941493,17888327 -g3724,4:10290302,17888327 -g3724,4:11460119,17888327 -k3724,5:15557759,17888327:2902263 -k3724,5:18460021,17888327:2902262 -) -(3724,6:6630773,18731357:11829248,505283,102891 -h3724,5:6630773,18731357:0,0,0 -r3724,80:6630773,18731357:0,608174,102891 -g3724,5:7941493,18731357 -g3724,5:7941493,18731357 -g3724,5:9895120,18731357 -k3724,6:14775259,18731357:3684762 -k3724,6:18460021,18731357:3684762 -) -(3724,7:6630773,19574386:11829248,505283,102891 -h3724,6:6630773,19574386:0,0,0 -r3724,80:6630773,19574386:0,608174,102891 -g3724,6:7941493,19574386 -g3724,6:7941493,19574386 -g3724,6:11871031,19574386 -g3724,6:13040848,19574386 -g3724,6:14210665,19574386 -g3724,6:15380482,19574386 -k3724,7:17318711,19574386:1141311 -k3724,7:18460021,19574386:1141310 -) -(3724,8:6630773,20417416:11829248,513147,102891 -h3724,7:6630773,20417416:0,0,0 -r3724,80:6630773,20417416:0,616038,102891 -g3724,7:7941493,20417416 -g3724,7:7941493,20417416 -g3724,7:12266213,20417416 -g3724,7:13436030,20417416 -g3724,7:14605847,20417416 -g3724,7:16174123,20417416 -k3724,8:17914761,20417416:545261 -k3724,8:18460021,20417416:545260 -) -(3724,9:6630773,21260446:11829248,505283,102891 -h3724,8:6630773,21260446:0,0,0 -r3724,80:6630773,21260446:0,608174,102891 -g3724,8:7941493,21260446 -g3724,8:7941493,21260446 -g3724,8:10685485,21260446 -g3724,8:11855302,21260446 -g3724,8:14149717,21260446 -k3724,9:16703328,21260446:1756693 -k3724,9:18460021,21260446:1756693 -) -(3724,10:6630773,22103476:11829248,513147,102891 -h3724,9:6630773,22103476:0,0,0 -r3724,80:6630773,22103476:0,616038,102891 -g3724,9:7941493,22103476 -g3724,9:7941493,22103476 -g3724,9:10685485,22103476 -k3724,10:14971212,22103476:3488809 -k3724,10:18460021,22103476:3488809 -) -(3724,11:6630773,22946506:11829248,513147,102891 -h3724,10:6630773,22946506:0,0,0 -r3724,80:6630773,22946506:0,616038,102891 -g3724,10:7941493,22946506 -g3724,10:7941493,22946506 -g3724,10:11080667,22946506 -g3724,10:12648943,22946506 -k3724,11:16152171,22946506:2307851 -k3724,11:18460021,22946506:2307850 -) -(3724,12:6630773,23789536:11829248,505283,134348 -h3724,11:6630773,23789536:0,0,0 -r3724,80:6630773,23789536:0,639631,134348 -g3724,11:7941493,23789536 -g3724,11:7941493,23789536 -g3724,11:11080667,23789536 -g3724,11:12250484,23789536 -g3724,11:13420301,23789536 -g3724,11:15714716,23789536 -k3724,12:17485828,23789536:974194 -k3724,12:18460021,23789536:974193 -) -(3724,13:6630773,24632565:11829248,505283,102891 -h3724,12:6630773,24632565:0,0,0 -r3724,80:6630773,24632565:0,608174,102891 -g3724,12:7941493,24632565 -g3724,12:7941493,24632565 -g3724,12:9895120,24632565 -g3724,12:11064937,24632565 -g3724,12:12234754,24632565 -g3724,12:13803030,24632565 -g3724,12:15371306,24632565 -k3724,13:17513352,24632565:946669 -k3724,13:18460021,24632565:946669 -) -(3724,14:6630773,25475595:11829248,505283,102891 -h3724,13:6630773,25475595:0,0,0 -r3724,80:6630773,25475595:0,608174,102891 -g3724,13:7941493,25475595 -g3724,13:7941493,25475595 -g3724,13:9104756,25475595 -k3724,14:14380077,25475595:4079944 -k3724,14:18460021,25475595:4079944 -) -(3724,15:6630773,26318625:11829248,505283,134348 -h3724,14:6630773,26318625:0,0,0 -r3724,80:6630773,26318625:0,639631,134348 -g3724,14:7941493,26318625 -g3724,14:7941493,26318625 -g3724,14:11080667,26318625 -g3724,14:12250484,26318625 -g3724,14:13420301,26318625 -g3724,14:14590118,26318625 -g3724,14:16158394,26318625 -k3724,15:17906896,26318625:553125 -k3724,15:18460021,26318625:553125 -) -(3724,16:6630773,27161655:11829248,505283,102891 -h3724,15:6630773,27161655:0,0,0 -r3724,80:6630773,27161655:0,608174,102891 -g3724,15:7941493,27161655 -g3724,15:7941493,27161655 -g3724,15:10685485,27161655 -g3724,15:11855302,27161655 -g3724,15:13025119,27161655 -g3724,15:14593395,27161655 -k3724,16:17124397,27161655:1335625 -k3724,16:18460021,27161655:1335624 -) -(3724,17:6630773,28004685:11829248,505283,102891 -h3724,16:6630773,28004685:0,0,0 -r3724,80:6630773,28004685:0,608174,102891 -k3724,16:7941493,28004685:1310720 -k3724,16:7941493,28004685:0 -k3724,16:11070072,28004685:188634 -k3724,16:12229295,28004685:188635 -k3724,16:13388517,28004685:188634 -k3724,16:14547740,28004685:188635 -k3724,16:15706962,28004685:188634 -k3724,16:17264644,28004685:188635 -k3724,17:18460021,28004685:0 -k3724,17:18460021,28004685:0 -) -(3724,18:6630773,28847714:11829248,505283,102891 -h3724,17:6630773,28847714:0,0,0 -r3724,80:6630773,28847714:0,608174,102891 -g3724,17:7941493,28847714 -g3724,17:7941493,28847714 -g3724,17:9499938,28847714 -k3724,18:14577668,28847714:3882353 -k3724,18:18460021,28847714:3882353 -) -(3724,19:6630773,29690744:11829248,513147,102891 -h3724,18:6630773,29690744:0,0,0 -r3724,80:6630773,29690744:0,616038,102891 -g3724,18:7941493,29690744 -g3724,18:7941493,29690744 -g3724,18:10685485,29690744 -k3724,19:15170442,29690744:3289580 -k3724,19:18460021,29690744:3289579 -) -(3724,20:6630773,30533774:11829248,505283,102891 -h3724,19:6630773,30533774:0,0,0 -r3724,80:6630773,30533774:0,608174,102891 -g3724,19:7941493,30533774 -g3724,19:7941493,30533774 -g3724,19:10685485,30533774 -g3724,19:12253761,30533774 -g3724,19:13822037,30533774 -g3724,19:15390313,30533774 -g3724,19:16958589,30533774 -k3724,19:18460021,30533774:132385 -) -(3724,20:9252213,31375262:9207808,485622,11795 -k3724,20:14453806,31375262:4006216 -k3724,20:18460021,31375262:4006215 -) -(3724,21:6630773,32218292:11829248,485622,102891 -h3724,20:6630773,32218292:0,0,0 -r3724,80:6630773,32218292:0,588513,102891 -g3724,20:7941493,32218292 -g3724,20:7941493,32218292 -g3724,20:10685485,32218292 -k3724,21:14971212,32218292:3488809 -k3724,21:18460021,32218292:3488809 -) -(3724,22:6630773,33061322:11829248,505283,126483 -h3724,21:6630773,33061322:0,0,0 -g3724,21:9587757,33061322 -g3724,21:10978431,33061322 -g3724,21:13371805,33061322 -k3724,22:16921236,33061322:1538786 -k3724,22:18460021,33061322:1538785 -) -(3724,23:6630773,33904352:11829248,513147,102891 -h3724,22:6630773,33904352:0,0,0 -r3724,80:6630773,33904352:0,616038,102891 -g3724,22:7941493,33904352 -g3724,22:7941493,33904352 -g3724,22:9895120,33904352 -g3724,22:11064937,33904352 -k3724,23:15160938,33904352:3299083 -k3724,23:18460021,33904352:3299083 -) -(3724,24:6630773,34747381:11829248,513147,126483 -h3724,23:6630773,34747381:0,0,0 -r3724,80:6630773,34747381:0,639630,126483 -g3724,23:7941493,34747381 -g3724,23:7941493,34747381 -g3724,23:15822852,34747381 -k3724,24:17539896,34747381:920126 -k3724,24:18460021,34747381:920125 -) -(3724,25:6630773,35590411:11829248,513147,102891 -h3724,24:6630773,35590411:0,0,0 -r3724,80:6630773,35590411:0,616038,102891 -g3724,24:7941493,35590411 -g3724,24:7941493,35590411 -g3724,24:15822852,35590411 -k3724,25:17539896,35590411:920126 -k3724,25:18460021,35590411:920125 -) -(3724,26:6630773,36433441:11829248,513147,102891 -h3724,25:6630773,36433441:0,0,0 -r3724,80:6630773,36433441:0,616038,102891 -g3724,25:7941493,36433441 -g3724,25:7941493,36433441 -g3724,25:15822852,36433441 -k3724,26:17539896,36433441:920126 -k3724,26:18460021,36433441:920125 -) -(3724,27:6630773,37276471:11829248,513147,134348 -h3724,26:6630773,37276471:0,0,0 -r3724,80:6630773,37276471:0,647495,134348 -g3724,26:7941493,37276471 -g3724,26:7941493,37276471 -g3724,26:17403580,37276471 -k3724,27:18330260,37276471:129762 -k3724,27:18460021,37276471:129761 -) -(3724,28:6630773,38119501:11829248,513147,102891 -h3724,27:6630773,38119501:0,0,0 -r3724,80:6630773,38119501:0,616038,102891 -g3724,27:7941493,38119501 -g3724,27:7941493,38119501 -g3724,27:16218034,38119501 -k3724,28:17737487,38119501:722535 -k3724,28:18460021,38119501:722534 -) -(3724,29:6630773,38962530:11829248,513147,134348 -h3724,28:6630773,38962530:0,0,0 -r3724,80:6630773,38962530:0,647495,134348 -g3724,28:7941493,38962530 -g3724,28:7941493,38962530 -g3724,28:16218034,38962530 -k3724,29:17737487,38962530:722535 -k3724,29:18460021,38962530:722534 -) -(3724,30:6630773,39805560:11829248,513147,102891 -h3724,29:6630773,39805560:0,0,0 -r3724,80:6630773,39805560:0,616038,102891 -g3724,29:7941493,39805560 -g3724,29:7941493,39805560 -g3724,29:9499938,39805560 -g3724,29:10669755,39805560 -k3724,30:14963347,39805560:3496674 -k3724,30:18460021,39805560:3496674 -) -(3724,31:6630773,40648590:11829248,485622,102891 -h3724,30:6630773,40648590:0,0,0 -r3724,80:6630773,40648590:0,588513,102891 -g3724,30:7941493,40648590 -g3724,30:7941493,40648590 -g3724,30:11080667,40648590 -k3724,31:15168803,40648590:3291218 -k3724,31:18460021,40648590:3291218 -) -(3724,32:6630773,41491620:11829248,505283,102891 -h3724,31:6630773,41491620:0,0,0 -r3724,80:6630773,41491620:0,608174,102891 -g3724,31:7941493,41491620 -g3724,31:7941493,41491620 -g3724,31:11080667,41491620 -k3724,32:15168803,41491620:3291218 -k3724,32:18460021,41491620:3291218 -) -(3724,33:6630773,42334650:11829248,505283,102891 -h3724,32:6630773,42334650:0,0,0 -r3724,80:6630773,42334650:0,608174,102891 -g3724,32:7941493,42334650 -g3724,32:7941493,42334650 -g3724,32:11871031,42334650 -k3724,33:15563985,42334650:2896036 -k3724,33:18460021,42334650:2896036 -) -(3724,34:6630773,43177680:11829248,505283,102891 -h3724,33:6630773,43177680:0,0,0 -r3724,80:6630773,43177680:0,608174,102891 -g3724,33:7941493,43177680 -g3724,33:7941493,43177680 -g3724,33:12266213,43177680 -k3724,34:15761576,43177680:2698445 -k3724,34:18460021,43177680:2698445 -) -(3724,35:6630773,44020709:11829248,485622,102891 -h3724,34:6630773,44020709:0,0,0 -r3724,80:6630773,44020709:0,588513,102891 -g3724,34:7941493,44020709 -g3724,34:7941493,44020709 -g3724,34:9104756,44020709 -g3724,34:10274573,44020709 -g3724,34:11444390,44020709 -k3724,35:15350665,44020709:3109357 -k3724,35:18460021,44020709:3109356 -) -(3724,36:6630773,44863739:11829248,505283,102891 -h3724,35:6630773,44863739:0,0,0 -r3724,80:6630773,44863739:0,608174,102891 -g3724,35:7941493,44863739 -g3724,35:7941493,44863739 -g3724,35:13451759,44863739 -k3724,36:16354349,44863739:2105672 -k3724,36:18460021,44863739:2105672 -) -(3724,37:6630773,45706769:11829248,505283,102891 -h3724,36:6630773,45706769:0,0,0 -r3724,80:6630773,45706769:0,608174,102891 -g3724,36:7941493,45706769 -g3724,36:7941493,45706769 -g3724,36:11475849,45706769 -k3724,37:15366394,45706769:3093627 -k3724,37:18460021,45706769:3093627 -) -] -k3724,80:19606901,45706769:1146880 -r3724,80:19606901,45706769:0,29443315,126483 -k3724,80:20753781,45706769:1146880 -[3724,80:20753781,45706769:11829248,29316832,102891 -(3724,38:20753781,17045297:11829248,485622,102891 -h3724,37:20753781,17045297:0,0,0 -r3724,80:20753781,17045297:0,588513,102891 -g3724,37:22064501,17045297 -g3724,37:22064501,17045297 -g3724,37:23622946,17045297 -k3724,38:28501447,17045297:4081583 -k3724,38:32583029,17045297:4081582 -) -(3724,39:20753781,17893262:11829248,505283,126483 -h3724,38:20753781,17893262:0,0,0 -r3724,80:20753781,17893262:0,631766,126483 -g3724,38:22064501,17893262 -g3724,38:22064501,17893262 -g3724,38:23227764,17893262 -k3724,39:28303856,17893262:4279174 -k3724,39:32583029,17893262:4279173 -) -(3724,40:20753781,18741226:11829248,513147,7863 -h3724,39:20753781,18741226:0,0,0 -g3724,39:23240872,18741226 -g3724,39:24099393,18741226 -k3724,40:29879014,18741226:2704016 -k3724,40:32583029,18741226:2704015 -) -(3724,41:20753781,19589191:11829248,505283,126483 -h3724,40:20753781,19589191:0,0,0 -r3724,80:20753781,19589191:0,631766,126483 -g3724,40:22064501,19589191 -g3724,40:22064501,19589191 -g3724,40:25203675,19589191 -g3724,40:26771951,19589191 -g3724,40:28340227,19589191 -k3724,41:31820845,19589191:762185 -k3724,41:32583029,19589191:762184 -) -(3724,42:20753781,20437155:11829248,505283,102891 -h3724,41:20753781,20437155:0,0,0 -r3724,80:20753781,20437155:0,608174,102891 -g3724,41:22064501,20437155 -g3724,41:22064501,20437155 -g3724,41:25203675,20437155 -g3724,41:26771951,20437155 -g3724,41:28340227,20437155 -k3724,42:31059317,20437155:1523713 -k3724,42:32583029,20437155:1523712 -) -(3724,43:20753781,21285120:11829248,513147,102891 -h3724,42:20753781,21285120:0,0,0 -r3724,80:20753781,21285120:0,616038,102891 -g3724,42:22064501,21285120 -g3724,42:22064501,21285120 -g3724,42:23622946,21285120 -g3724,42:25191222,21285120 -g3724,42:26759498,21285120 -g3724,42:28327774,21285120 -k3724,43:31053090,21285120:1529939 -k3724,43:32583029,21285120:1529939 -) -(3724,44:20753781,22133085:11829248,513147,102891 -h3724,43:20753781,22133085:0,0,0 -r3724,80:20753781,22133085:0,616038,102891 -g3724,43:22064501,22133085 -g3724,43:22064501,22133085 -g3724,43:23250047,22133085 -g3724,43:24413310,22133085 -g3724,43:25981586,22133085 -k3724,44:29879996,22133085:2703033 -k3724,44:32583029,22133085:2703033 -) -(3724,45:20753781,22981049:11829248,513147,102891 -h3724,44:20753781,22981049:0,0,0 -r3724,80:20753781,22981049:0,616038,102891 -g3724,44:22064501,22981049 -g3724,44:22064501,22981049 -g3724,44:23250047,22981049 -g3724,44:24435593,22981049 -g3724,44:25225957,22981049 -g3724,44:27179584,22981049 -g3724,44:28747860,22981049 -k3724,45:31263133,22981049:1319896 -k3724,45:32583029,22981049:1319896 -) -(3724,46:20753781,23829014:11829248,513147,102891 -h3724,45:20753781,23829014:0,0,0 -r3724,80:20753781,23829014:0,616038,102891 -g3724,45:22064501,23829014 -g3724,45:22064501,23829014 -g3724,45:24018128,23829014 -k3724,46:28898267,23829014:3684762 -k3724,46:32583029,23829014:3684762 -) -(3724,47:20753781,24676978:11829248,513147,102891 -h3724,46:20753781,24676978:0,0,0 -r3724,80:20753781,24676978:0,616038,102891 -g3724,46:22064501,24676978 -g3724,46:22064501,24676978 -g3724,46:25598857,24676978 -k3724,47:30450160,24676978:2132870 -k3724,47:32583029,24676978:2132869 -) -(3724,48:20753781,25524943:11829248,505283,126483 -h3724,47:20753781,25524943:0,0,0 -r3724,80:20753781,25524943:0,631766,126483 -g3724,47:22064501,25524943 -g3724,47:22064501,25524943 -g3724,47:25598857,25524943 -g3724,47:27167133,25524943 -k3724,48:31234298,25524943:1348732 -k3724,48:32583029,25524943:1348731 -) -(3724,49:20753781,26372908:11829248,505283,102891 -h3724,48:20753781,26372908:0,0,0 -r3724,80:20753781,26372908:0,608174,102891 -g3724,48:22064501,26372908 -g3724,48:22064501,26372908 -g3724,48:24808493,26372908 -k3724,49:29293450,26372908:3289580 -k3724,49:32583029,26372908:3289579 -) -(3724,50:20753781,27220872:11829248,485622,126483 -h3724,49:20753781,27220872:0,0,0 -r3724,80:20753781,27220872:0,612105,126483 -g3724,49:22064501,27220872 -g3724,49:22064501,27220872 -g3724,49:24808493,27220872 -g3724,49:26376769,27220872 -g3724,49:27945045,27220872 -g3724,49:29513321,27220872 -k3724,50:31645864,27220872:937166 -k3724,50:32583029,27220872:937165 -) -(3724,51:20753781,28068837:11829248,505283,102891 -h3724,50:20753781,28068837:0,0,0 -r3724,80:20753781,28068837:0,608174,102891 -g3724,50:22064501,28068837 -g3724,50:22064501,28068837 -g3724,50:25598857,28068837 -k3724,51:29688632,28068837:2894398 -k3724,51:32583029,28068837:2894397 -) -(3724,52:20753781,28916801:11829248,505283,126483 -h3724,51:20753781,28916801:0,0,0 -r3724,80:20753781,28916801:0,631766,126483 -g3724,51:22064501,28916801 -g3724,51:22064501,28916801 -g3724,51:25598857,28916801 -g3724,51:27167133,28916801 -k3724,52:31234298,28916801:1348732 -k3724,52:32583029,28916801:1348731 -) -(3724,53:20753781,29764766:11829248,505283,102891 -h3724,52:20753781,29764766:0,0,0 -r3724,80:20753781,29764766:0,608174,102891 -g3724,52:22064501,29764766 -g3724,52:22064501,29764766 -g3724,52:25598857,29764766 -k3724,53:30450160,29764766:2132870 -k3724,53:32583029,29764766:2132869 -) -(3724,54:20753781,30612731:11829248,505283,126483 -h3724,53:20753781,30612731:0,0,0 -r3724,80:20753781,30612731:0,631766,126483 -g3724,53:22064501,30612731 -g3724,53:22064501,30612731 -g3724,53:25598857,30612731 -g3724,53:27167133,30612731 -k3724,54:31234298,30612731:1348732 -k3724,54:32583029,30612731:1348731 -) -(3724,55:20753781,31460695:11829248,505283,102891 -h3724,54:20753781,31460695:0,0,0 -r3724,80:20753781,31460695:0,608174,102891 -g3724,54:22064501,31460695 -g3724,54:22064501,31460695 -g3724,54:24413310,31460695 -g3724,54:25981586,31460695 -k3724,55:30641524,31460695:1941505 -k3724,55:32583029,31460695:1941505 -) -(3724,59:20753781,33071962:11829248,505283,134348 -h3724,58:20753781,33071962:0,0,0 -g3724,58:22342373,33071962 -k3724,59:28607615,33071962:3975414 -k3724,59:32583029,33071962:3975414 -) -(3724,60:20753781,33919927:11829248,485622,102891 -h3724,59:20753781,33919927:0,0,0 -r3724,80:20753781,33919927:0,588513,102891 -g3724,59:22064501,33919927 -g3724,59:22064501,33919927 -g3724,59:24018128,33919927 -k3724,60:28898267,33919927:3684762 -k3724,60:32583029,33919927:3684762 -) -(3724,61:20753781,34767891:11829248,505283,102891 -h3724,60:20753781,34767891:0,0,0 -r3724,80:20753781,34767891:0,608174,102891 -g3724,60:22064501,34767891 -g3724,60:22064501,34767891 -g3724,60:25598857,34767891 -g3724,60:27167133,34767891 -k3724,61:30472770,34767891:2110260 -k3724,61:32583029,34767891:2110259 -) -(3724,62:20753781,35615856:11829248,485622,126483 -h3724,61:20753781,35615856:0,0,0 -r3724,80:20753781,35615856:0,612105,126483 -g3724,61:22064501,35615856 -g3724,61:22064501,35615856 -g3724,61:27179585,35615856 -g3724,61:28747861,35615856 -k3724,62:31263134,35615856:1319896 -k3724,62:32583029,35615856:1319895 -) -(3724,63:20753781,36463821:11829248,505283,102891 -h3724,62:20753781,36463821:0,0,0 -r3724,80:20753781,36463821:0,608174,102891 -g3724,62:22064501,36463821 -g3724,62:22064501,36463821 -g3724,62:24018128,36463821 -g3724,62:25586404,36463821 -k3724,63:29682405,36463821:2900624 -k3724,63:32583029,36463821:2900624 -) -(3724,64:20753781,37311785:11829248,485622,102891 -h3724,63:20753781,37311785:0,0,0 -r3724,80:20753781,37311785:0,588513,102891 -g3724,63:22064501,37311785 -g3724,63:22064501,37311785 -g3724,63:24808493,37311785 -k3724,64:29293450,37311785:3289580 -k3724,64:32583029,37311785:3289579 -) -(3724,65:20753781,38159750:11829248,485622,102891 -h3724,64:20753781,38159750:0,0,0 -r3724,80:20753781,38159750:0,588513,102891 -g3724,64:22064501,38159750 -g3724,64:22064501,38159750 -g3724,64:24808493,38159750 -k3724,65:29293450,38159750:3289580 -k3724,65:32583029,38159750:3289579 -) -(3724,66:20753781,39007714:11829248,505283,126483 -h3724,65:20753781,39007714:0,0,0 -r3724,80:20753781,39007714:0,631766,126483 -g3724,65:22064501,39007714 -g3724,65:22064501,39007714 -g3724,65:23622946,39007714 -k3724,66:28700676,39007714:3882353 -k3724,66:32583029,39007714:3882353 -) -(3724,67:20753781,39855679:11829248,485622,134348 -h3724,66:20753781,39855679:0,0,0 -r3724,80:20753781,39855679:0,619970,134348 -g3724,66:22064501,39855679 -g3724,66:22064501,39855679 -g3724,66:24808493,39855679 -k3724,67:29293450,39855679:3289580 -k3724,67:32583029,39855679:3289579 -) -(3724,68:20753781,40703644:11829248,505283,126483 -h3724,67:20753781,40703644:0,0,0 -r3724,80:20753781,40703644:0,631766,126483 -g3724,67:22064501,40703644 -g3724,67:22064501,40703644 -g3724,67:25994039,40703644 -g3724,67:27562315,40703644 -k3724,68:30670361,40703644:1912669 -k3724,68:32583029,40703644:1912668 -) -(3724,72:20753781,42314911:11829248,513147,7863 -h3724,71:20753781,42314911:0,0,0 -g3724,71:23978807,42314911 -g3724,71:25369481,42314911 -k3724,72:30368568,42314911:2214462 -k3724,72:32583029,42314911:2214461 -) -(3724,73:20753781,43162875:11829248,505283,102891 -h3724,72:20753781,43162875:0,0,0 -r3724,80:20753781,43162875:0,608174,102891 -g3724,72:22064501,43162875 -g3724,72:22064501,43162875 -g3724,72:24413310,43162875 -g3724,72:25583127,43162875 -k3724,73:29481537,43162875:3101492 -k3724,73:32583029,43162875:3101492 -) -(3724,74:20753781,44010840:11829248,505283,102891 -h3724,73:20753781,44010840:0,0,0 -r3724,80:20753781,44010840:0,608174,102891 -g3724,73:22064501,44010840 -g3724,73:22064501,44010840 -g3724,73:24413310,44010840 -g3724,73:25981586,44010840 -g3724,73:27549862,44010840 -k3724,74:30664134,44010840:1918895 -k3724,74:32583029,44010840:1918895 -) -(3724,75:20753781,44858804:11829248,513147,102891 -h3724,74:20753781,44858804:0,0,0 -r3724,80:20753781,44858804:0,616038,102891 -g3724,74:22064501,44858804 -g3724,74:22064501,44858804 -g3724,74:27574767,44858804 -k3724,75:30676587,44858804:1906443 -k3724,75:32583029,44858804:1906442 -) -(3724,76:20753781,45706769:11829248,513147,102891 -h3724,75:20753781,45706769:0,0,0 -r3724,80:20753781,45706769:0,616038,102891 -g3724,75:22064501,45706769 -g3724,75:22064501,45706769 -g3724,75:27179585,45706769 -g3724,75:28747861,45706769 -k3724,76:31263134,45706769:1319896 -k3724,76:32583029,45706769:1319895 -) -] -(3724,80:32583029,45706769:0,355205,126483 -h3724,80:32583029,45706769:420741,355205,126483 -k3724,80:32583029,45706769:-420741 -) -) -] -(3724,80:32583029,45706769:0,0,0 -g3724,80:32583029,45706769 -) -) -] -(3724,80:6630773,47279633:25952256,485622,11795 -(3724,80:6630773,47279633:25952256,485622,11795 -k3724,80:19009213,47279633:12378440 -k3724,80:32583030,47279633:12378440 -) -) -] -(3724,80:4262630,4025873:0,0,0 -[3724,80:-473656,4025873:0,0,0 -(3724,80:-473656,-710413:0,0,0 -(3724,80:-473656,-710413:0,0,0 -g3724,80:-473656,-710413 -) -g3724,80:-473656,-710413 -) -] -) -] -!25637 -}450 +] +[3765,75:6630773,45706769:25952256,40108032,0 +(3765,75:6630773,45706769:25952256,40108032,0 +(3765,75:6630773,45706769:0,0,0 +g3765,75:6630773,45706769 +) +[3765,75:6630773,45706769:25952256,40108032,0 +[3765,1:6630773,12185121:25952256,6586384,0 +(3765,1:6630773,7073297:25952256,32768,229376 +(3765,1:6630773,7073297:0,32768,229376 +(3765,1:6630773,7073297:5505024,32768,229376 +r3765,75:12135797,7073297:5505024,262144,229376 +) +k3765,1:6630773,7073297:-5505024 +) +) +(3765,1:6630773,8842777:25952256,923664,241827 +h3765,1:6630773,8842777:0,0,0 +g3765,1:10235777,8842777 +g3765,1:11799990,8842777 +g3765,1:12964302,8842777 +g3765,1:17375006,8842777 +g3765,1:19181047,8842777 +k3765,1:28598768,8842777:3984262 +k3765,1:32583029,8842777:3984261 +) +(3765,1:6630773,9498145:25952256,32768,0 +(3765,1:6630773,9498145:5505024,32768,0 +r3765,75:12135797,9498145:5505024,32768,0 +) +k3765,1:22359413,9498145:10223616 +k3765,1:32583029,9498145:10223616 +) +] +(3765,1:6630773,13050201:25952256,505283,134348 +k3765,1:7270083,13050201:224467 +k3765,1:9562892,13050201:224493 +k3765,1:10978830,13050201:224493 +k3765,1:13845079,13050201:224493 +k3765,1:16730333,13050201:224492 +k3765,1:18222292,13050201:224493 +k3765,1:19465870,13050201:224493 +k3765,1:22919977,13050201:224493 +k3765,1:25550951,13050201:224492 +k3765,1:26966889,13050201:224493 +k3765,1:29651604,13050201:224493 +k3765,1:32583029,13050201:0 +) +(3765,1:6630773,13915281:25952256,513147,134348 +k3765,1:8016401,13915281:194183 +k3765,1:10404729,13915281:194183 +k3765,1:12956897,13915281:194183 +k3765,1:15612612,13915281:194183 +k3765,1:16466087,13915281:194183 +k3765,1:20083215,13915281:194183 +k3765,1:21840432,13915281:194183 +k3765,1:24671784,13915281:194183 +k3765,1:28065435,13915281:194183 +k3765,1:29451063,13915281:194183 +k3765,1:32583029,13915281:0 +) +(3765,1:6630773,14780361:25952256,505283,126483 +g3765,1:9071989,14780361 +g3765,1:10462663,14780361 +g3765,1:12170531,14780361 +g3765,1:14543589,14780361 +g3765,1:15934263,14780361 +k3765,1:32583029,14780361:13050839 +g3765,1:32583029,14780361 +) +(3765,75:6630773,45706769:25952256,29143824,132808 +[3765,75:6630773,45706769:11829248,29143824,102891 +(3765,4:6630773,17218305:11829248,505283,7863 +h3765,3:6630773,17218305:0,0,0 +g3765,3:9062814,17218305 +g3765,3:10453488,17218305 +k3765,4:15513195,17218305:2946826 +k3765,4:18460021,17218305:2946826 +) +(3765,5:6630773,18111175:11829248,485622,132808 +h3765,4:6630773,18111175:0,0,0 +r3765,75:6630773,18111175:0,618430,132808 +g3765,4:7941493,18111175 +g3765,4:7941493,18111175 +g3765,4:10389104,18111175 +g3765,4:11558921,18111175 +k3765,5:15607160,18111175:2852862 +k3765,5:18460021,18111175:2852861 +) +(3765,6:6630773,19004045:11829248,530548,102891 +h3765,5:6630773,19004045:0,0,0 +r3765,75:6630773,19004045:0,633439,102891 +g3765,5:7941493,19004045 +g3765,5:7941493,19004045 +g3765,5:9974162,19004045 +k3765,6:14814780,19004045:3645241 +k3765,6:18460021,19004045:3645241 +) +(3765,7:6630773,19896914:11829248,530548,102891 +h3765,6:6630773,19896914:0,0,0 +r3765,75:6630773,19896914:0,633439,102891 +g3765,6:7941493,19896914 +g3765,6:7941493,19896914 +g3765,6:12048874,19896914 +g3765,6:13218691,19896914 +g3765,6:14388508,19896914 +g3765,6:15558325,19896914 +k3765,7:17407632,19896914:1052389 +k3765,7:18460021,19896914:1052389 +) +(3765,8:6630773,20789784:11829248,530548,132808 +h3765,7:6630773,20789784:0,0,0 +r3765,75:6630773,20789784:0,663356,132808 +g3765,7:7941493,20789784 +g3765,7:7941493,20789784 +g3765,7:11218989,20789784 +k3765,8:15237964,20789784:3222057 +k3765,8:18460021,20789784:3222057 +) +(3765,9:6630773,21682654:11829248,538806,102891 +h3765,8:6630773,21682654:0,0,0 +r3765,75:6630773,21682654:0,641697,102891 +g3765,8:7941493,21682654 +g3765,8:7941493,21682654 +g3765,8:12463816,21682654 +g3765,8:13633633,21682654 +g3765,8:14803450,21682654 +g3765,8:16371726,21682654 +k3765,9:18013562,21682654:446459 +k3765,9:18460021,21682654:446459 +) +(3765,10:6630773,22575524:11829248,530548,102891 +h3765,9:6630773,22575524:0,0,0 +r3765,75:6630773,22575524:0,633439,102891 +g3765,9:7941493,22575524 +g3765,9:7941493,22575524 +g3765,9:10804046,22575524 +g3765,9:11973863,22575524 +g3765,9:14268278,22575524 +k3765,10:16762609,22575524:1697413 +k3765,10:18460021,22575524:1697412 +) +(3765,11:6630773,23468394:11829248,538806,102891 +h3765,10:6630773,23468394:0,0,0 +r3765,75:6630773,23468394:0,641697,102891 +g3765,10:7941493,23468394 +g3765,10:7941493,23468394 +g3765,10:10804046,23468394 +k3765,11:15030493,23468394:3429529 +k3765,11:18460021,23468394:3429528 +) +(3765,12:6630773,24361263:11829248,538806,102891 +h3765,11:6630773,24361263:0,0,0 +r3765,75:6630773,24361263:0,641697,102891 +g3765,11:7941493,24361263 +g3765,11:7941493,24361263 +g3765,11:11218989,24361263 +g3765,11:12787265,24361263 +k3765,12:16221332,24361263:2238690 +k3765,12:18460021,24361263:2238689 +) +(3765,13:6630773,25254133:11829248,530548,141066 +h3765,12:6630773,25254133:0,0,0 +r3765,75:6630773,25254133:0,671614,141066 +g3765,12:7941493,25254133 +g3765,12:7941493,25254133 +g3765,12:11218989,25254133 +g3765,12:12388806,25254133 +g3765,12:13558623,25254133 +g3765,12:14728440,25254133 +g3765,12:15898257,25254133 +k3765,13:17577598,25254133:882423 +k3765,13:18460021,25254133:882423 +) +(3765,14:6630773,26147003:11829248,530548,102891 +h3765,13:6630773,26147003:0,0,0 +r3765,75:6630773,26147003:0,633439,102891 +g3765,13:7941493,26147003 +g3765,13:7941493,26147003 +g3765,13:9974162,26147003 +g3765,13:11143979,26147003 +g3765,13:12313796,26147003 +g3765,13:13882072,26147003 +g3765,13:15450348,26147003 +k3765,14:17552873,26147003:907148 +k3765,14:18460021,26147003:907148 +) +(3765,15:6630773,27039873:11829248,530548,102891 +h3765,14:6630773,27039873:0,0,0 +r3765,75:6630773,27039873:0,633439,102891 +g3765,14:7941493,27039873 +g3765,14:7941493,27039873 +g3765,14:9144277,27039873 +k3765,15:14399838,27039873:4060184 +k3765,15:18460021,27039873:4060183 +) +(3765,16:6630773,27932743:11829248,530548,141066 +h3765,15:6630773,27932743:0,0,0 +r3765,75:6630773,27932743:0,671614,141066 +g3765,15:7941493,27932743 +g3765,15:7941493,27932743 +g3765,15:11218989,27932743 +g3765,15:12388806,27932743 +g3765,15:13558623,27932743 +g3765,15:14728440,27932743 +g3765,15:15898257,27932743 +k3765,15:18460021,27932743:1192717 +) +(3765,16:9252213,28797823:9207808,485622,11795 +k3765,16:14453806,28797823:4006216 +k3765,16:18460021,28797823:4006215 +) +(3765,17:6630773,29690692:11829248,530548,102891 +h3765,16:6630773,29690692:0,0,0 +r3765,75:6630773,29690692:0,633439,102891 +g3765,16:7941493,29690692 +g3765,16:7941493,29690692 +g3765,16:10804046,29690692 +g3765,16:11973863,29690692 +g3765,16:13143680,29690692 +g3765,16:14313497,29690692 +g3765,16:15881773,29690692 +k3765,17:17768586,29690692:691436 +k3765,17:18460021,29690692:691435 +) +(3765,18:6630773,30583562:11829248,530548,102891 +h3765,17:6630773,30583562:0,0,0 +r3765,75:6630773,30583562:0,633439,102891 +g3765,17:7941493,30583562 +g3765,17:7941493,30583562 +g3765,17:11218989,30583562 +g3765,17:12388806,30583562 +g3765,17:13558623,30583562 +g3765,17:14728440,30583562 +g3765,17:15898257,30583562 +g3765,17:17068074,30583562 +k3765,17:18460021,30583562:22900 +) +(3765,18:9252213,31448642:9207808,485622,0 +k3765,18:14453806,31448642:4006216 +k3765,18:18460021,31448642:4006215 +) +(3765,19:6630773,32341512:11829248,485622,102891 +h3765,18:6630773,32341512:0,0,0 +r3765,75:6630773,32341512:0,588513,102891 +g3765,18:7941493,32341512 +g3765,18:7941493,32341512 +g3765,18:11218989,32341512 +k3765,19:15237964,32341512:3222057 +k3765,19:18460021,32341512:3222057 +) +(3765,20:6630773,33234382:11829248,530548,102891 +h3765,19:6630773,33234382:0,0,0 +r3765,75:6630773,33234382:0,633439,102891 +g3765,19:7941493,33234382 +g3765,19:7941493,33234382 +g3765,19:11218989,33234382 +k3765,20:15237964,33234382:3222057 +k3765,20:18460021,33234382:3222057 +) +(3765,21:6630773,34127252:11829248,530548,102891 +h3765,20:6630773,34127252:0,0,0 +r3765,75:6630773,34127252:0,633439,102891 +g3765,20:7941493,34127252 +g3765,20:7941493,34127252 +g3765,20:9559219,34127252 +k3765,21:14607309,34127252:3852713 +k3765,21:18460021,34127252:3852712 +) +(3765,22:6630773,35020121:11829248,538806,102891 +h3765,21:6630773,35020121:0,0,0 +r3765,75:6630773,35020121:0,641697,102891 +g3765,21:7941493,35020121 +g3765,21:7941493,35020121 +g3765,21:10804046,35020121 +k3765,22:15229722,35020121:3230299 +k3765,22:18460021,35020121:3230299 +) +(3765,23:6630773,35912991:11829248,530548,102891 +h3765,22:6630773,35912991:0,0,0 +r3765,75:6630773,35912991:0,633439,102891 +g3765,22:7941493,35912991 +g3765,22:7941493,35912991 +g3765,22:10804046,35912991 +g3765,22:12372322,35912991 +g3765,22:13940598,35912991 +g3765,22:15508874,35912991 +g3765,22:17077150,35912991 +k3765,23:18366274,35912991:93747 +k3765,23:18460021,35912991:93747 +) +(3765,24:6630773,36805861:11829248,485622,102891 +h3765,23:6630773,36805861:0,0,0 +r3765,75:6630773,36805861:0,588513,102891 +g3765,23:7941493,36805861 +g3765,23:7941493,36805861 +g3765,23:10804046,36805861 +k3765,24:15030493,36805861:3429529 +k3765,24:18460021,36805861:3429528 +) +(3765,25:6630773,37698731:11829248,505283,126483 +h3765,24:6630773,37698731:0,0,0 +g3765,24:9587757,37698731 +g3765,24:10978431,37698731 +g3765,24:13371805,37698731 +k3765,25:16921236,37698731:1538786 +k3765,25:18460021,37698731:1538785 +) +(3765,26:6630773,38591600:11829248,538806,102891 +h3765,25:6630773,38591600:0,0,0 +r3765,75:6630773,38591600:0,641697,102891 +g3765,25:7941493,38591600 +g3765,25:7941493,38591600 +g3765,25:9974162,38591600 +g3765,25:11143979,38591600 +k3765,26:15200459,38591600:3259562 +k3765,26:18460021,38591600:3259562 +) +(3765,27:6630773,39484470:11829248,538806,132808 +h3765,26:6630773,39484470:0,0,0 +r3765,75:6630773,39484470:0,671614,132808 +g3765,26:7941493,39484470 +g3765,26:7941493,39484470 +g3765,26:16198298,39484470 +k3765,27:17727619,39484470:732403 +k3765,27:18460021,39484470:732402 +) +(3765,28:6630773,40377340:11829248,538806,102891 +h3765,27:6630773,40377340:0,0,0 +r3765,75:6630773,40377340:0,641697,102891 +g3765,27:7941493,40377340 +g3765,27:7941493,40377340 +g3765,27:16198298,40377340 +k3765,28:17727619,40377340:732403 +k3765,28:18460021,40377340:732402 +) +(3765,29:6630773,41270210:11829248,538806,102891 +h3765,28:6630773,41270210:0,0,0 +r3765,75:6630773,41270210:0,641697,102891 +g3765,28:7941493,41270210 +g3765,28:7941493,41270210 +g3765,28:16198298,41270210 +k3765,29:17727619,41270210:732403 +k3765,29:18460021,41270210:732402 +) +(3765,30:6630773,42163080:11829248,538806,141066 +h3765,29:6630773,42163080:0,0,0 +r3765,75:6630773,42163080:0,679872,141066 +g3765,29:7941493,42163080 +g3765,29:7941493,42163080 +k3765,29:18460021,42163080:801183 +) +(3765,30:9252213,43028160:9207808,485622,11795 +k3765,30:14254576,43028160:4205445 +k3765,30:18460021,43028160:4205445 +) +(3765,31:6630773,43921029:11829248,538806,102891 +h3765,30:6630773,43921029:0,0,0 +r3765,75:6630773,43921029:0,641697,102891 +g3765,30:7941493,43921029 +g3765,30:7941493,43921029 +g3765,30:16613240,43921029 +k3765,31:17935090,43921029:524932 +k3765,31:18460021,43921029:524931 +) +(3765,32:6630773,44813899:11829248,538806,141066 +h3765,31:6630773,44813899:0,0,0 +r3765,75:6630773,44813899:0,679872,141066 +g3765,31:7941493,44813899 +g3765,31:7941493,44813899 +g3765,31:16613240,44813899 +k3765,32:17935090,44813899:524932 +k3765,32:18460021,44813899:524931 +) +(3765,33:6630773,45706769:11829248,538806,102891 +h3765,32:6630773,45706769:0,0,0 +r3765,75:6630773,45706769:0,641697,102891 +g3765,32:7941493,45706769 +g3765,32:7941493,45706769 +g3765,32:9559219,45706769 +g3765,32:10729036,45706769 +k3765,33:14992988,45706769:3467034 +k3765,33:18460021,45706769:3467033 +) +] +k3765,75:19606901,45706769:1146880 +r3765,75:19606901,45706769:0,29276632,132808 +k3765,75:20753781,45706769:1146880 +[3765,75:20753781,45706769:11829248,29143824,132808 +(3765,34:20753781,17218305:11829248,485622,102891 +h3765,33:20753781,17218305:0,0,0 +r3765,75:20753781,17218305:0,588513,102891 +g3765,33:22064501,17218305 +g3765,33:22064501,17218305 +g3765,33:25341997,17218305 +k3765,34:29360972,17218305:3222057 +k3765,34:32583029,17218305:3222057 +) +(3765,35:20753781,18086478:11829248,530548,102891 +h3765,34:20753781,18086478:0,0,0 +r3765,75:20753781,18086478:0,633439,102891 +g3765,34:22064501,18086478 +g3765,34:22064501,18086478 +g3765,34:25341997,18086478 +k3765,35:29360972,18086478:3222057 +k3765,35:32583029,18086478:3222057 +) +(3765,36:20753781,18954652:11829248,530548,102891 +h3765,35:20753781,18954652:0,0,0 +r3765,75:20753781,18954652:0,633439,102891 +g3765,35:22064501,18954652 +g3765,35:22064501,18954652 +g3765,35:26171882,18954652 +k3765,36:29775915,18954652:2807115 +k3765,36:32583029,18954652:2807114 +) +(3765,37:20753781,19822825:11829248,530548,102891 +h3765,36:20753781,19822825:0,0,0 +r3765,75:20753781,19822825:0,633439,102891 +g3765,36:22064501,19822825 +g3765,36:22064501,19822825 +g3765,36:26586824,19822825 +k3765,37:29983386,19822825:2599644 +k3765,37:32583029,19822825:2599643 +) +(3765,38:20753781,20690999:11829248,485622,102891 +h3765,37:20753781,20690999:0,0,0 +r3765,75:20753781,20690999:0,588513,102891 +g3765,37:22064501,20690999 +g3765,37:22064501,20690999 +g3765,37:23267285,20690999 +g3765,37:24437102,20690999 +g3765,37:25606919,20690999 +k3765,38:29493433,20690999:3089596 +k3765,38:32583029,20690999:3089596 +) +(3765,39:20753781,21559172:11829248,530548,102891 +h3765,38:20753781,21559172:0,0,0 +r3765,75:20753781,21559172:0,633439,102891 +g3765,38:22064501,21559172 +g3765,38:22064501,21559172 +g3765,38:27831652,21559172 +k3765,39:30605800,21559172:1977230 +k3765,39:32583029,21559172:1977229 +) +(3765,40:20753781,22427345:11829248,530548,102891 +h3765,39:20753781,22427345:0,0,0 +r3765,75:20753781,22427345:0,633439,102891 +g3765,39:22064501,22427345 +g3765,39:22064501,22427345 +g3765,39:25756939,22427345 +k3765,40:29568443,22427345:3014586 +k3765,40:32583029,22427345:3014586 +) +(3765,41:20753781,23295519:11829248,485622,102891 +h3765,40:20753781,23295519:0,0,0 +r3765,75:20753781,23295519:0,588513,102891 +g3765,40:22064501,23295519 +g3765,40:22064501,23295519 +g3765,40:23682227,23295519 +k3765,41:28531087,23295519:4051942 +k3765,41:32583029,23295519:4051942 +) +(3765,42:20753781,24163692:11829248,530548,132808 +h3765,41:20753781,24163692:0,0,0 +r3765,75:20753781,24163692:0,663356,132808 +g3765,41:22064501,24163692 +g3765,41:22064501,24163692 +g3765,41:23267285,24163692 +k3765,42:28323616,24163692:4259413 +k3765,42:32583029,24163692:4259413 +) +(3765,43:20753781,25031865:11829248,513147,7863 +h3765,42:20753781,25031865:0,0,0 +g3765,42:23240872,25031865 +g3765,42:24099393,25031865 +k3765,43:29879014,25031865:2704016 +k3765,43:32583029,25031865:2704015 +) +(3765,44:20753781,25900039:11829248,530548,132808 +h3765,43:20753781,25900039:0,0,0 +r3765,75:20753781,25900039:0,663356,132808 +g3765,43:22064501,25900039 +g3765,43:22064501,25900039 +g3765,43:25341997,25900039 +g3765,43:26910273,25900039 +g3765,43:28478549,25900039 +g3765,43:30046825,25900039 +k3765,44:31912616,25900039:670414 +k3765,44:32583029,25900039:670413 +) +(3765,45:20753781,26768212:11829248,530548,102891 +h3765,44:20753781,26768212:0,0,0 +r3765,75:20753781,26768212:0,633439,102891 +g3765,44:22064501,26768212 +g3765,44:22064501,26768212 +g3765,44:25341997,26768212 +g3765,44:26910273,26768212 +g3765,44:28478549,26768212 +k3765,45:31128478,26768212:1454552 +k3765,45:32583029,26768212:1454551 +) +(3765,46:20753781,27636386:11829248,538806,102891 +h3765,45:20753781,27636386:0,0,0 +r3765,75:20753781,27636386:0,641697,102891 +g3765,45:22064501,27636386 +g3765,45:22064501,27636386 +g3765,45:23682227,27636386 +g3765,45:26773560,27636386 +g3765,45:28341836,27636386 +k3765,46:31060121,27636386:1522908 +k3765,46:32583029,27636386:1522908 +) +(3765,47:20753781,28504559:11829248,538806,102891 +h3765,46:20753781,28504559:0,0,0 +r3765,75:20753781,28504559:0,641697,102891 +g3765,46:22064501,28504559 +g3765,46:22064501,28504559 +g3765,46:23309328,28504559 +g3765,46:24512112,28504559 +g3765,46:26080388,28504559 +k3765,47:29929397,28504559:2653632 +k3765,47:32583029,28504559:2653632 +) +(3765,48:20753781,29372732:11829248,538806,102891 +h3765,47:20753781,29372732:0,0,0 +r3765,75:20753781,29372732:0,641697,102891 +g3765,47:22064501,29372732 +g3765,47:22064501,29372732 +g3765,47:23309328,29372732 +g3765,47:24554155,29372732 +g3765,47:25384039,29372732 +g3765,47:27416708,29372732 +g3765,47:28984984,29372732 +k3765,48:31381695,29372732:1201334 +k3765,48:32583029,29372732:1201334 +) +(3765,49:20753781,30240906:11829248,538806,102891 +h3765,48:20753781,30240906:0,0,0 +r3765,75:20753781,30240906:0,641697,102891 +g3765,48:22064501,30240906 +g3765,48:22064501,30240906 +g3765,48:24097170,30240906 +k3765,49:28937788,30240906:3645241 +k3765,49:32583029,30240906:3645241 +) +(3765,50:20753781,31109079:11829248,538806,102891 +h3765,49:20753781,31109079:0,0,0 +r3765,75:20753781,31109079:0,641697,102891 +g3765,49:22064501,31109079 +g3765,49:22064501,31109079 +g3765,49:25756939,31109079 +k3765,50:30529201,31109079:2053829 +k3765,50:32583029,31109079:2053828 +) +(3765,51:20753781,31977252:11829248,530548,132808 +h3765,50:20753781,31977252:0,0,0 +r3765,75:20753781,31977252:0,663356,132808 +g3765,50:22064501,31977252 +g3765,50:22064501,31977252 +g3765,50:25756939,31977252 +g3765,50:27325215,31977252 +g3765,50:28893491,31977252 +g3765,50:30461767,31977252 +k3765,51:32120087,31977252:462943 +k3765,51:32583029,31977252:462942 +) +(3765,52:20753781,32845426:11829248,530548,102891 +h3765,51:20753781,32845426:0,0,0 +r3765,75:20753781,32845426:0,633439,102891 +g3765,51:22064501,32845426 +g3765,51:22064501,32845426 +g3765,51:24927054,32845426 +k3765,52:29352730,32845426:3230299 +k3765,52:32583029,32845426:3230299 +) +(3765,53:20753781,33713599:11829248,485622,132808 +h3765,52:20753781,33713599:0,0,0 +r3765,75:20753781,33713599:0,618430,132808 +g3765,52:22064501,33713599 +g3765,52:22064501,33713599 +g3765,52:24927054,33713599 +g3765,52:26495330,33713599 +g3765,52:28063606,33713599 +g3765,52:29631882,33713599 +k3765,53:31705144,33713599:877885 +k3765,53:32583029,33713599:877885 +) +(3765,54:20753781,34581773:11829248,530548,102891 +h3765,53:20753781,34581773:0,0,0 +r3765,75:20753781,34581773:0,633439,102891 +g3765,53:22064501,34581773 +g3765,53:22064501,34581773 +g3765,53:25756939,34581773 +k3765,54:29767673,34581773:2815357 +k3765,54:32583029,34581773:2815356 +) +(3765,55:20753781,35449946:11829248,530548,132808 +h3765,54:20753781,35449946:0,0,0 +r3765,75:20753781,35449946:0,663356,132808 +g3765,54:22064501,35449946 +g3765,54:22064501,35449946 +g3765,54:25756939,35449946 +g3765,54:27325215,35449946 +g3765,54:28893491,35449946 +g3765,54:30461767,35449946 +k3765,55:32120087,35449946:462943 +k3765,55:32583029,35449946:462942 +) +(3765,56:20753781,36318119:11829248,530548,102891 +h3765,55:20753781,36318119:0,0,0 +r3765,75:20753781,36318119:0,633439,102891 +g3765,55:22064501,36318119 +g3765,55:22064501,36318119 +g3765,55:25756939,36318119 +k3765,56:30529201,36318119:2053829 +k3765,56:32583029,36318119:2053828 +) +(3765,57:20753781,37186293:11829248,530548,132808 +h3765,56:20753781,37186293:0,0,0 +r3765,75:20753781,37186293:0,663356,132808 +g3765,56:22064501,37186293 +g3765,56:22064501,37186293 +g3765,56:25756939,37186293 +g3765,56:27325215,37186293 +g3765,56:28893491,37186293 +k3765,57:31335949,37186293:1247081 +k3765,57:32583029,37186293:1247080 +) +(3765,58:20753781,38054466:11829248,530548,102891 +h3765,57:20753781,38054466:0,0,0 +r3765,75:20753781,38054466:0,633439,102891 +g3765,57:22064501,38054466 +g3765,57:22064501,38054466 +g3765,57:24512112,38054466 +g3765,57:26080388,38054466 +g3765,57:27648664,38054466 +g3765,57:29216940,38054466 +k3765,58:31497673,38054466:1085356 +k3765,58:32583029,38054466:1085356 +) +(3765,62:20753781,39629555:11829248,505283,134348 +h3765,61:20753781,39629555:0,0,0 +g3765,61:22342373,39629555 +k3765,62:28607615,39629555:3975414 +k3765,62:32583029,39629555:3975414 +) +(3765,63:20753781,40497729:11829248,485622,102891 +h3765,62:20753781,40497729:0,0,0 +r3765,75:20753781,40497729:0,588513,102891 +g3765,62:22064501,40497729 +g3765,62:22064501,40497729 +g3765,62:24097170,40497729 +k3765,63:28937788,40497729:3645241 +k3765,63:32583029,40497729:3645241 +) +(3765,64:20753781,41365902:11829248,530548,102891 +h3765,63:20753781,41365902:0,0,0 +r3765,75:20753781,41365902:0,633439,102891 +g3765,63:22064501,41365902 +g3765,63:22064501,41365902 +g3765,63:25756939,41365902 +g3765,63:27325215,41365902 +k3765,64:30551811,41365902:2031219 +k3765,64:32583029,41365902:2031218 +) +(3765,65:20753781,42234075:11829248,485622,132808 +h3765,64:20753781,42234075:0,0,0 +r3765,75:20753781,42234075:0,618430,132808 +g3765,64:22064501,42234075 +g3765,64:22064501,42234075 +g3765,64:27416709,42234075 +g3765,64:28984985,42234075 +k3765,65:31381696,42234075:1201334 +k3765,65:32583029,42234075:1201333 +) +(3765,66:20753781,43102249:11829248,530548,102891 +h3765,65:20753781,43102249:0,0,0 +r3765,75:20753781,43102249:0,633439,102891 +g3765,65:22064501,43102249 +g3765,65:22064501,43102249 +g3765,65:24097170,43102249 +g3765,65:25665446,43102249 +k3765,66:29721926,43102249:2861103 +k3765,66:32583029,43102249:2861103 +) +(3765,67:20753781,43970422:11829248,485622,102891 +h3765,66:20753781,43970422:0,0,0 +r3765,75:20753781,43970422:0,588513,102891 +g3765,66:22064501,43970422 +g3765,66:22064501,43970422 +g3765,66:24927054,43970422 +k3765,67:29352730,43970422:3230299 +k3765,67:32583029,43970422:3230299 +) +(3765,68:20753781,44838596:11829248,485622,102891 +h3765,67:20753781,44838596:0,0,0 +r3765,75:20753781,44838596:0,588513,102891 +g3765,67:22064501,44838596 +g3765,67:22064501,44838596 +g3765,67:24927054,44838596 +k3765,68:29352730,44838596:3230299 +k3765,68:32583029,44838596:3230299 +) +(3765,69:20753781,45706769:11829248,530548,132808 +h3765,68:20753781,45706769:0,0,0 +r3765,75:20753781,45706769:0,663356,132808 +g3765,68:22064501,45706769 +g3765,68:22064501,45706769 +g3765,68:23682227,45706769 +k3765,69:28730317,45706769:3852713 +k3765,69:32583029,45706769:3852712 +) +] +(3765,75:32583029,45706769:0,355205,126483 +h3765,75:32583029,45706769:420741,355205,126483 +k3765,75:32583029,45706769:-420741 +) +) +] +(3765,75:32583029,45706769:0,0,0 +g3765,75:32583029,45706769 +) +) +] +(3765,75:6630773,47279633:25952256,481690,0 +(3765,75:6630773,47279633:25952256,481690,0 +k3765,75:19009213,47279633:12378440 +k3765,75:32583030,47279633:12378440 +) +) +] +(3765,75:4262630,4025873:0,0,0 +[3765,75:-473656,4025873:0,0,0 +(3765,75:-473656,-710413:0,0,0 +(3765,75:-473656,-710413:0,0,0 +g3765,75:-473656,-710413 +) +g3765,75:-473656,-710413 +) +] +) +] +!24795 +}432 !12 -{451 -[3724,171:4262630,47279633:28320399,43253760,0 -(3724,171:4262630,4025873:0,0,0 -[3724,171:-473656,4025873:0,0,0 -(3724,171:-473656,-710413:0,0,0 -(3724,171:-473656,-644877:0,0,0 -k3724,171:-473656,-644877:-65536 +{433 +[3765,165:4262630,47279633:28320399,43253760,0 +(3765,165:4262630,4025873:0,0,0 +[3765,165:-473656,4025873:0,0,0 +(3765,165:-473656,-710413:0,0,0 +(3765,165:-473656,-644877:0,0,0 +k3765,165:-473656,-644877:-65536 ) -(3724,171:-473656,4736287:0,0,0 -k3724,171:-473656,4736287:5209943 +(3765,165:-473656,4736287:0,0,0 +k3765,165:-473656,4736287:5209943 ) -g3724,171:-473656,-710413 +g3765,165:-473656,-710413 ) ] ) -[3724,171:6630773,47279633:25952256,43253760,0 -[3724,171:6630773,4812305:25952256,786432,0 -(3724,171:6630773,4812305:25952256,513147,134348 -(3724,171:6630773,4812305:25952256,513147,134348 -g3724,171:3078558,4812305 -[3724,171:3078558,4812305:0,0,0 -(3724,171:3078558,2439708:0,1703936,0 -k3724,171:1358238,2439708:-1720320 -(3724,1:1358238,2439708:1720320,1703936,0 -(3724,1:1358238,2439708:1179648,16384,0 -r3724,171:2537886,2439708:1179648,16384,0 +[3765,165:6630773,47279633:25952256,43253760,0 +[3765,165:6630773,4812305:25952256,786432,0 +(3765,165:6630773,4812305:25952256,513147,134348 +(3765,165:6630773,4812305:25952256,513147,134348 +g3765,165:3078558,4812305 +[3765,165:3078558,4812305:0,0,0 +(3765,165:3078558,2439708:0,1703936,0 +k3765,165:1358238,2439708:-1720320 +(3765,1:1358238,2439708:1720320,1703936,0 +(3765,1:1358238,2439708:1179648,16384,0 +r3765,165:2537886,2439708:1179648,16384,0 ) -g3724,1:3062174,2439708 -(3724,1:3062174,2439708:16384,1703936,0 -[3724,1:3062174,2439708:25952256,1703936,0 -(3724,1:3062174,1915420:25952256,1179648,0 -(3724,1:3062174,1915420:16384,1179648,0 -r3724,171:3078558,1915420:16384,1179648,0 +g3765,1:3062174,2439708 +(3765,1:3062174,2439708:16384,1703936,0 +[3765,1:3062174,2439708:25952256,1703936,0 +(3765,1:3062174,1915420:25952256,1179648,0 +(3765,1:3062174,1915420:16384,1179648,0 +r3765,165:3078558,1915420:16384,1179648,0 ) -k3724,1:29014430,1915420:25935872 -g3724,1:29014430,1915420 +k3765,1:29014430,1915420:25935872 +g3765,1:29014430,1915420 ) ] ) ) ) ] -[3724,171:3078558,4812305:0,0,0 -(3724,171:3078558,2439708:0,1703936,0 -g3724,171:29030814,2439708 -g3724,171:36135244,2439708 -(3724,1:36135244,2439708:1720320,1703936,0 -(3724,1:36135244,2439708:16384,1703936,0 -[3724,1:36135244,2439708:25952256,1703936,0 -(3724,1:36135244,1915420:25952256,1179648,0 -(3724,1:36135244,1915420:16384,1179648,0 -r3724,171:36151628,1915420:16384,1179648,0 +[3765,165:3078558,4812305:0,0,0 +(3765,165:3078558,2439708:0,1703936,0 +g3765,165:29030814,2439708 +g3765,165:36135244,2439708 +(3765,1:36135244,2439708:1720320,1703936,0 +(3765,1:36135244,2439708:16384,1703936,0 +[3765,1:36135244,2439708:25952256,1703936,0 +(3765,1:36135244,1915420:25952256,1179648,0 +(3765,1:36135244,1915420:16384,1179648,0 +r3765,165:36151628,1915420:16384,1179648,0 ) -k3724,1:62087500,1915420:25935872 -g3724,1:62087500,1915420 +k3765,1:62087500,1915420:25935872 +g3765,1:62087500,1915420 ) ] ) -g3724,1:36675916,2439708 -(3724,1:36675916,2439708:1179648,16384,0 -r3724,171:37855564,2439708:1179648,16384,0 +g3765,1:36675916,2439708 +(3765,1:36675916,2439708:1179648,16384,0 +r3765,165:37855564,2439708:1179648,16384,0 ) ) -k3724,171:3078556,2439708:-34777008 +k3765,165:3078556,2439708:-34777008 ) ] -[3724,171:3078558,4812305:0,0,0 -(3724,171:3078558,49800853:0,16384,2228224 -k3724,171:1358238,49800853:-1720320 -(3724,1:1358238,49800853:1720320,16384,2228224 -(3724,1:1358238,49800853:1179648,16384,0 -r3724,171:2537886,49800853:1179648,16384,0 +[3765,165:3078558,4812305:0,0,0 +(3765,165:3078558,49800853:0,16384,2228224 +k3765,165:1358238,49800853:-1720320 +(3765,1:1358238,49800853:1720320,16384,2228224 +(3765,1:1358238,49800853:1179648,16384,0 +r3765,165:2537886,49800853:1179648,16384,0 ) -g3724,1:3062174,49800853 -(3724,1:3062174,52029077:16384,1703936,0 -[3724,1:3062174,52029077:25952256,1703936,0 -(3724,1:3062174,51504789:25952256,1179648,0 -(3724,1:3062174,51504789:16384,1179648,0 -r3724,171:3078558,51504789:16384,1179648,0 +g3765,1:3062174,49800853 +(3765,1:3062174,52029077:16384,1703936,0 +[3765,1:3062174,52029077:25952256,1703936,0 +(3765,1:3062174,51504789:25952256,1179648,0 +(3765,1:3062174,51504789:16384,1179648,0 +r3765,165:3078558,51504789:16384,1179648,0 ) -k3724,1:29014430,51504789:25935872 -g3724,1:29014430,51504789 +k3765,1:29014430,51504789:25935872 +g3765,1:29014430,51504789 ) ] ) ) ) ] -[3724,171:3078558,4812305:0,0,0 -(3724,171:3078558,49800853:0,16384,2228224 -g3724,171:29030814,49800853 -g3724,171:36135244,49800853 -(3724,1:36135244,49800853:1720320,16384,2228224 -(3724,1:36135244,52029077:16384,1703936,0 -[3724,1:36135244,52029077:25952256,1703936,0 -(3724,1:36135244,51504789:25952256,1179648,0 -(3724,1:36135244,51504789:16384,1179648,0 -r3724,171:36151628,51504789:16384,1179648,0 -) -k3724,1:62087500,51504789:25935872 -g3724,1:62087500,51504789 -) -] -) -g3724,1:36675916,49800853 -(3724,1:36675916,49800853:1179648,16384,0 -r3724,171:37855564,49800853:1179648,16384,0 -) -) -k3724,171:3078556,49800853:-34777008 -) -] -g3724,171:6630773,4812305 -k3724,171:23083588,4812305:15257438 -g3724,171:24981510,4812305 -g3724,171:25796777,4812305 -g3724,171:26410194,4812305 -g3724,171:28753761,4812305 -g3724,171:29709275,4812305 -) -) -] -[3724,171:6630773,45706769:25952256,40108032,0 -(3724,171:6630773,45706769:25952256,40108032,0 -(3724,171:6630773,45706769:0,0,0 -g3724,171:6630773,45706769 -) -[3724,171:6630773,45706769:25952256,40108032,0 -(3724,171:6630773,45706769:25952256,40108032,126483 -[3724,171:6630773,45706769:11829248,40108032,102891 -(3724,77:6630773,6254097:11829248,505283,134348 -h3724,76:6630773,6254097:0,0,0 -r3724,171:6630773,6254097:0,639631,134348 -g3724,76:7941493,6254097 -g3724,76:7941493,6254097 -g3724,76:12661395,6254097 -g3724,76:15752728,6254097 -k3724,77:17704063,6254097:755958 -k3724,77:18460021,6254097:755958 -) -(3724,78:6630773,7112893:11829248,505283,102891 -h3724,77:6630773,7112893:0,0,0 -r3724,171:6630773,7112893:0,608174,102891 -g3724,77:7941493,7112893 -g3724,77:7941493,7112893 -g3724,77:10290302,7112893 -g3724,77:11858578,7112893 -k3724,78:15756988,7112893:2703033 -k3724,78:18460021,7112893:2703033 -) -(3724,79:6630773,7971688:11829248,505283,102891 -h3724,78:6630773,7971688:0,0,0 -r3724,171:6630773,7971688:0,608174,102891 -g3724,78:7941493,7971688 -g3724,78:7941493,7971688 -g3724,78:10290302,7971688 -g3724,78:11460119,7971688 -k3724,79:15358529,7971688:3101492 -k3724,79:18460021,7971688:3101492 -) -(3724,80:6630773,8830484:11829248,505283,102891 -h3724,79:6630773,8830484:0,0,0 -r3724,171:6630773,8830484:0,608174,102891 -g3724,79:7941493,8830484 -g3724,79:7941493,8830484 -g3724,79:12266213,8830484 -g3724,79:13834489,8830484 -g3724,79:15402765,8830484 -g3724,79:16971041,8830484 -k3724,80:18313220,8830484:146802 -k3724,80:18460021,8830484:146801 -) -(3724,81:6630773,9689279:11829248,505283,102891 -h3724,80:6630773,9689279:0,0,0 -r3724,171:6630773,9689279:0,608174,102891 -g3724,80:7941493,9689279 -g3724,80:7941493,9689279 -g3724,80:15822852,9689279 -k3724,80:18460021,9689279:1268122 -) -(3724,81:9252213,10530767:9207808,485622,11795 -k3724,81:14453806,10530767:4006216 -k3724,81:18460021,10530767:4006215 -) -(3724,83:6630773,11389563:11829248,505283,102891 -h3724,81:6630773,11389563:0,0,0 -r3724,171:6630773,11389563:0,608174,102891 -g3724,81:7941493,11389563 -g3724,81:7941493,11389563 -g3724,81:11080667,11389563 -g3724,81:12648943,11389563 -g3724,81:14217219,11389563 -k3724,81:18460021,11389563:1350698 -) -(3724,83:9252213,12231051:9207808,485622,102891 -g3724,81:10820489,12231051 -g3724,81:12388765,12231051 -g3724,81:13957041,12231051 -g3724,81:15525317,12231051 -k3724,83:17590358,12231051:869664 -k3724,83:18460021,12231051:869663 -) -(3724,84:6630773,13089846:11829248,505283,134348 -h3724,83:6630773,13089846:0,0,0 -r3724,171:6630773,13089846:0,639631,134348 -g3724,83:7941493,13089846 -g3724,83:7941493,13089846 -g3724,83:12661395,13089846 -k3724,84:16158397,13089846:2301625 -k3724,84:18460021,13089846:2301624 -) -(3724,85:6630773,13948642:11829248,505283,126483 -h3724,84:6630773,13948642:0,0,0 -r3724,171:6630773,13948642:0,631766,126483 -g3724,84:7941493,13948642 -g3724,84:7941493,13948642 -g3724,84:10290302,13948642 -g3724,84:11460119,13948642 -k3724,85:15358529,13948642:3101492 -k3724,85:18460021,13948642:3101492 -) -(3724,86:6630773,14807437:11829248,505283,102891 -h3724,85:6630773,14807437:0,0,0 -r3724,171:6630773,14807437:0,608174,102891 -g3724,85:7941493,14807437 -g3724,85:7941493,14807437 -g3724,85:10290302,14807437 -g3724,85:11858578,14807437 -k3724,86:15756988,14807437:2703033 -k3724,86:18460021,14807437:2703033 -) -(3724,87:6630773,15666233:11829248,505283,126483 -h3724,86:6630773,15666233:0,0,0 -r3724,171:6630773,15666233:0,631766,126483 -g3724,86:7941493,15666233 -g3724,86:7941493,15666233 -g3724,86:11475849,15666233 -g3724,86:12645666,15666233 -k3724,87:15951303,15666233:2508719 -k3724,87:18460021,15666233:2508718 -) -(3724,88:6630773,16525028:11829248,505283,134348 -h3724,87:6630773,16525028:0,0,0 -r3724,171:6630773,16525028:0,639631,134348 -g3724,87:7941493,16525028 -g3724,87:7941493,16525028 -g3724,87:11871031,16525028 -k3724,88:15763215,16525028:2696807 -k3724,88:18460021,16525028:2696806 -) -(3724,89:6630773,17383824:11829248,505283,126483 -h3724,88:6630773,17383824:0,0,0 -r3724,171:6630773,17383824:0,631766,126483 -g3724,88:7941493,17383824 -g3724,88:7941493,17383824 -g3724,88:11080667,17383824 -k3724,89:15168803,17383824:3291218 -k3724,89:18460021,17383824:3291218 -) -(3724,90:6630773,18242619:11829248,505283,102891 -h3724,89:6630773,18242619:0,0,0 -r3724,171:6630773,18242619:0,608174,102891 -g3724,89:7941493,18242619 -g3724,89:7941493,18242619 -g3724,89:13846941,18242619 -g3724,89:15016758,18242619 -k3724,90:17136849,18242619:1323173 -k3724,90:18460021,18242619:1323172 -) -(3724,91:6630773,19101415:11829248,513147,102891 -h3724,90:6630773,19101415:0,0,0 -r3724,171:6630773,19101415:0,616038,102891 -g3724,90:7941493,19101415 -g3724,90:7941493,19101415 -g3724,90:14242123,19101415 -k3724,91:16948761,19101415:1511261 -k3724,91:18460021,19101415:1511260 -) -(3724,92:6630773,19960210:11829248,513147,102891 -h3724,91:6630773,19960210:0,0,0 -r3724,171:6630773,19960210:0,616038,102891 -g3724,91:7941493,19960210 -g3724,91:7941493,19960210 -g3724,91:13056577,19960210 -k3724,92:16355988,19960210:2104034 -k3724,92:18460021,19960210:2104033 -) -(3724,93:6630773,20819006:11829248,505283,134348 -h3724,92:6630773,20819006:0,0,0 -r3724,171:6630773,20819006:0,639631,134348 -g3724,92:7941493,20819006 -g3724,92:7941493,20819006 -g3724,92:13056577,20819006 -k3724,93:16156758,20819006:2303263 -k3724,93:18460021,20819006:2303263 -) -(3724,94:6630773,21677802:11829248,505283,134348 -h3724,93:6630773,21677802:0,0,0 -r3724,171:6630773,21677802:0,639631,134348 -g3724,93:7941493,21677802 -g3724,93:7941493,21677802 -g3724,93:13056577,21677802 -k3724,94:16156758,21677802:2303263 -k3724,94:18460021,21677802:2303263 -) -(3724,95:6630773,22536597:11829248,505283,102891 -h3724,94:6630773,22536597:0,0,0 -r3724,171:6630773,22536597:0,608174,102891 -g3724,94:7941493,22536597 -g3724,94:7941493,22536597 -g3724,94:12661395,22536597 -k3724,95:15959167,22536597:2500854 -k3724,95:18460021,22536597:2500854 -) -(3724,96:6630773,23395393:11829248,505283,102891 -h3724,95:6630773,23395393:0,0,0 -r3724,171:6630773,23395393:0,608174,102891 -g3724,95:7941493,23395393 -g3724,95:7941493,23395393 -g3724,95:13056577,23395393 -g3724,95:14226394,23395393 -g3724,95:15396211,23395393 -k3724,96:17326575,23395393:1133446 -k3724,96:18460021,23395393:1133446 -) -(3724,97:6630773,24254188:11829248,505283,102891 -h3724,96:6630773,24254188:0,0,0 -r3724,171:6630773,24254188:0,608174,102891 -g3724,96:7941493,24254188 -g3724,96:7941493,24254188 -g3724,96:11080667,24254188 -k3724,97:15368033,24254188:3091989 -k3724,97:18460021,24254188:3091988 -) -(3724,98:6630773,25112984:11829248,505283,102891 -h3724,97:6630773,25112984:0,0,0 -r3724,171:6630773,25112984:0,608174,102891 -g3724,97:7941493,25112984 -g3724,97:7941493,25112984 -g3724,97:12661395,25112984 -k3724,98:15959167,25112984:2500854 -k3724,98:18460021,25112984:2500854 -) -(3724,99:6630773,25971779:11829248,505283,102891 -h3724,98:6630773,25971779:0,0,0 -r3724,171:6630773,25971779:0,608174,102891 -g3724,98:7941493,25971779 -g3724,98:7941493,25971779 -g3724,98:12661395,25971779 -k3724,99:16158397,25971779:2301625 -k3724,99:18460021,25971779:2301624 -) -(3724,100:6630773,26830575:11829248,505283,134348 -h3724,99:6630773,26830575:0,0,0 -r3724,171:6630773,26830575:0,639631,134348 -g3724,99:7941493,26830575 -g3724,99:7941493,26830575 -g3724,99:11475849,26830575 -g3724,99:13044125,26830575 -g3724,99:14612401,26830575 -g3724,99:16180677,26830575 -k3724,99:18460021,26830575:910297 -) -(3724,100:9252213,27672063:9207808,485622,11795 -k3724,100:14453806,27672063:4006216 -k3724,100:18460021,27672063:4006215 -) -(3724,101:6630773,28530858:11829248,505283,102891 -h3724,100:6630773,28530858:0,0,0 -r3724,171:6630773,28530858:0,608174,102891 -g3724,100:7941493,28530858 -g3724,100:7941493,28530858 -g3724,100:11475849,28530858 -k3724,101:15565624,28530858:2894398 -k3724,101:18460021,28530858:2894397 -) -(3724,102:6630773,29389654:11829248,505283,102891 -h3724,101:6630773,29389654:0,0,0 -r3724,171:6630773,29389654:0,608174,102891 -g3724,101:7941493,29389654 -g3724,101:7941493,29389654 -g3724,101:10685485,29389654 -g3724,101:12253761,29389654 -k3724,102:15954580,29389654:2505442 -k3724,102:18460021,29389654:2505441 -) -(3724,103:6630773,30248449:11829248,505283,102891 -h3724,102:6630773,30248449:0,0,0 -r3724,171:6630773,30248449:0,608174,102891 -g3724,102:7941493,30248449 -g3724,102:7941493,30248449 -g3724,102:11475849,30248449 -k3724,103:15565624,30248449:2894398 -k3724,103:18460021,30248449:2894397 -) -(3724,104:6630773,31107245:11829248,505283,102891 -h3724,103:6630773,31107245:0,0,0 -r3724,171:6630773,31107245:0,608174,102891 -g3724,103:7941493,31107245 -g3724,103:7941493,31107245 -g3724,103:13056577,31107245 -g3724,103:14624853,31107245 -g3724,103:16193129,31107245 -k3724,104:17924264,31107245:535758 -k3724,104:18460021,31107245:535757 -) -(3724,105:6630773,31966040:11829248,505283,102891 -h3724,104:6630773,31966040:0,0,0 -r3724,171:6630773,31966040:0,608174,102891 -g3724,104:7941493,31966040 -g3724,104:7941493,31966040 -g3724,104:12266213,31966040 -k3724,105:15960806,31966040:2499216 -k3724,105:18460021,31966040:2499215 -) -(3724,106:6630773,32824836:11829248,505283,102891 -h3724,105:6630773,32824836:0,0,0 -r3724,171:6630773,32824836:0,608174,102891 -g3724,105:7941493,32824836 -g3724,105:7941493,32824836 -g3724,105:10290302,32824836 -g3724,105:11858578,32824836 -k3724,106:15756988,32824836:2703033 -k3724,106:18460021,32824836:2703033 -) -(3724,107:6630773,33683632:11829248,505283,126483 -h3724,106:6630773,33683632:0,0,0 -r3724,171:6630773,33683632:0,631766,126483 -g3724,106:7941493,33683632 -g3724,106:7941493,33683632 -g3724,106:11475849,33683632 -k3724,107:15565624,33683632:2894398 -k3724,107:18460021,33683632:2894397 -) -(3724,108:6630773,34542427:11829248,505283,102891 -h3724,107:6630773,34542427:0,0,0 -r3724,171:6630773,34542427:0,608174,102891 -g3724,107:7941493,34542427 -g3724,107:7941493,34542427 -g3724,107:10685485,34542427 -k3724,108:15170442,34542427:3289580 -k3724,108:18460021,34542427:3289579 -) -(3724,109:6630773,35401223:11829248,505283,102891 -h3724,108:6630773,35401223:0,0,0 -r3724,171:6630773,35401223:0,608174,102891 -g3724,108:7941493,35401223 -g3724,108:7941493,35401223 -g3724,108:13056577,35401223 -k3724,109:16355988,35401223:2104034 -k3724,109:18460021,35401223:2104033 -) -(3724,110:6630773,36260018:11829248,505283,126483 -h3724,109:6630773,36260018:0,0,0 -r3724,171:6630773,36260018:0,631766,126483 -g3724,109:7941493,36260018 -g3724,109:7941493,36260018 -g3724,109:14242123,36260018 -k3724,110:16948761,36260018:1511261 -k3724,110:18460021,36260018:1511260 -) -(3724,111:6630773,37118814:11829248,505283,126483 -h3724,110:6630773,37118814:0,0,0 -r3724,171:6630773,37118814:0,631766,126483 -g3724,110:7941493,37118814 -g3724,110:7941493,37118814 -g3724,110:11475849,37118814 -k3724,111:15565624,37118814:2894398 -k3724,111:18460021,37118814:2894397 -) -(3724,112:6630773,37977609:11829248,505283,102891 -h3724,111:6630773,37977609:0,0,0 -r3724,171:6630773,37977609:0,608174,102891 -g3724,111:7941493,37977609 -g3724,111:7941493,37977609 -g3724,111:9499938,37977609 -g3724,111:10669755,37977609 -g3724,111:11839572,37977609 -k3724,112:15548256,37977609:2911766 -k3724,112:18460021,37977609:2911765 -) -(3724,113:6630773,38836405:11829248,505283,102891 -h3724,112:6630773,38836405:0,0,0 -r3724,171:6630773,38836405:0,608174,102891 -g3724,112:7941493,38836405 -g3724,112:7941493,38836405 -g3724,112:10290302,38836405 -g3724,112:11460119,38836405 -g3724,112:12629936,38836405 -k3724,113:16142667,38836405:2317354 -k3724,113:18460021,38836405:2317354 -) -(3724,114:6630773,39695200:11829248,505283,134348 -h3724,113:6630773,39695200:0,0,0 -r3724,171:6630773,39695200:0,639631,134348 -g3724,113:7941493,39695200 -g3724,113:7941493,39695200 -g3724,113:11871031,39695200 -g3724,113:13040848,39695200 -k3724,114:16148894,39695200:2311128 -k3724,114:18460021,39695200:2311127 -) -(3724,115:6630773,40553996:11829248,505283,102891 -h3724,114:6630773,40553996:0,0,0 -r3724,171:6630773,40553996:0,608174,102891 -g3724,114:7941493,40553996 -g3724,114:7941493,40553996 -g3724,114:12661395,40553996 -k3724,115:15959167,40553996:2500854 -k3724,115:18460021,40553996:2500854 -) -(3724,116:6630773,41412791:11829248,505283,102891 -h3724,115:6630773,41412791:0,0,0 -r3724,171:6630773,41412791:0,608174,102891 -g3724,115:7941493,41412791 -g3724,115:7941493,41412791 -g3724,115:12266213,41412791 -k3724,116:15960806,41412791:2499216 -k3724,116:18460021,41412791:2499215 -) -(3724,117:6630773,42271587:11829248,505283,102891 -h3724,116:6630773,42271587:0,0,0 -r3724,171:6630773,42271587:0,608174,102891 -g3724,116:7941493,42271587 -g3724,116:7941493,42271587 -g3724,116:11080667,42271587 -g3724,116:12250484,42271587 -g3724,116:13420301,42271587 -g3724,116:14988577,42271587 -g3724,116:16556853,42271587 -k3724,117:18106126,42271587:353896 -k3724,117:18460021,42271587:353895 -) -(3724,118:6630773,43130382:11829248,513147,102891 -h3724,117:6630773,43130382:0,0,0 -r3724,171:6630773,43130382:0,616038,102891 -g3724,117:7941493,43130382 -g3724,117:7941493,43130382 -g3724,117:10685485,43130382 -g3724,117:12253761,43130382 -g3724,117:13822037,43130382 -k3724,118:16738718,43130382:1721304 -k3724,118:18460021,43130382:1721303 -) -(3724,119:6630773,43989178:11829248,513147,102891 -h3724,118:6630773,43989178:0,0,0 -r3724,171:6630773,43989178:0,616038,102891 -g3724,118:7941493,43989178 -g3724,118:7941493,43989178 -g3724,118:13846941,43989178 -k3724,119:16751170,43989178:1708852 -k3724,119:18460021,43989178:1708851 -) -(3724,120:6630773,44847973:11829248,505283,102891 -h3724,119:6630773,44847973:0,0,0 -r3724,171:6630773,44847973:0,608174,102891 -g3724,119:7941493,44847973 -g3724,119:7941493,44847973 -g3724,119:11871031,44847973 -k3724,120:15763215,44847973:2696807 -k3724,120:18460021,44847973:2696806 -) -(3724,121:6630773,45706769:11829248,505283,102891 -h3724,120:6630773,45706769:0,0,0 -r3724,171:6630773,45706769:0,608174,102891 -g3724,120:7941493,45706769 -g3724,120:7941493,45706769 -g3724,120:12661395,45706769 -k3724,121:16158397,45706769:2301625 -k3724,121:18460021,45706769:2301624 -) -] -k3724,171:19606901,45706769:1146880 -r3724,171:19606901,45706769:0,40234515,126483 -k3724,171:20753781,45706769:1146880 -[3724,171:20753781,45706769:11829248,40108032,102891 -(3724,122:20753781,6254097:11829248,505283,102891 -h3724,121:20753781,6254097:0,0,0 -r3724,171:20753781,6254097:0,608174,102891 -g3724,121:22064501,6254097 -g3724,121:22064501,6254097 -g3724,121:26389221,6254097 -k3724,122:30083814,6254097:2499216 -k3724,122:32583029,6254097:2499215 -) -(3724,123:20753781,7112123:11829248,505283,102891 -h3724,122:20753781,7112123:0,0,0 -r3724,171:20753781,7112123:0,608174,102891 -g3724,122:22064501,7112123 -g3724,122:22064501,7112123 -g3724,122:28365131,7112123 -g3724,122:29933407,7112123 -k3724,123:31855907,7112123:727123 -k3724,123:32583029,7112123:727122 -) -(3724,124:20753781,7970150:11829248,505283,126483 -h3724,123:20753781,7970150:0,0,0 -r3724,171:20753781,7970150:0,631766,126483 -g3724,123:22064501,7970150 -g3724,123:22064501,7970150 -g3724,123:27179585,7970150 -k3724,124:30478996,7970150:2104034 -k3724,124:32583029,7970150:2104033 -) -(3724,125:20753781,8828176:11829248,505283,102891 -h3724,124:20753781,8828176:0,0,0 -r3724,171:20753781,8828176:0,608174,102891 -g3724,124:22064501,8828176 -g3724,124:22064501,8828176 -g3724,124:26784403,8828176 -g3724,124:28352679,8828176 -k3724,125:31065543,8828176:1517487 -k3724,125:32583029,8828176:1517486 -) -(3724,126:20753781,9686202:11829248,505283,102891 -h3724,125:20753781,9686202:0,0,0 -r3724,171:20753781,9686202:0,608174,102891 -g3724,125:22064501,9686202 -g3724,125:22064501,9686202 -g3724,125:26784403,9686202 -k3724,126:30281405,9686202:2301625 -k3724,126:32583029,9686202:2301624 -) -(3724,127:20753781,10544229:11829248,505283,102891 -h3724,126:20753781,10544229:0,0,0 -r3724,171:20753781,10544229:0,608174,102891 -g3724,126:22064501,10544229 -g3724,126:22064501,10544229 -g3724,126:29155496,10544229 -g3724,126:30723772,10544229 -k3724,127:32251089,10544229:331940 -k3724,127:32583029,10544229:331940 -) -(3724,128:20753781,11402255:11829248,505283,102891 -h3724,127:20753781,11402255:0,0,0 -r3724,171:20753781,11402255:0,608174,102891 -g3724,127:22064501,11402255 -g3724,127:22064501,11402255 -g3724,127:29155496,11402255 -k3724,128:31466951,11402255:1116078 -k3724,128:32583029,11402255:1116078 -) -(3724,129:20753781,12260281:11829248,513147,102891 -h3724,128:20753781,12260281:0,0,0 -r3724,171:20753781,12260281:0,616038,102891 -g3724,128:22064501,12260281 -g3724,128:22064501,12260281 -g3724,128:27574767,12260281 -k3724,129:30676587,12260281:1906443 -k3724,129:32583029,12260281:1906442 -) -(3724,130:20753781,13118308:11829248,513147,126483 -h3724,129:20753781,13118308:0,0,0 -r3724,171:20753781,13118308:0,639630,126483 -g3724,129:22064501,13118308 -g3724,129:22064501,13118308 -g3724,129:27179585,13118308 -g3724,129:28747861,13118308 -k3724,130:31263134,13118308:1319896 -k3724,130:32583029,13118308:1319895 -) -(3724,131:20753781,13976334:11829248,505283,126483 -h3724,130:20753781,13976334:0,0,0 -r3724,171:20753781,13976334:0,631766,126483 -g3724,130:22064501,13976334 -g3724,130:22064501,13976334 -g3724,130:27574767,13976334 -k3724,131:30676587,13976334:1906443 -k3724,131:32583029,13976334:1906442 -) -(3724,132:20753781,14834360:11829248,505283,102891 -h3724,131:20753781,14834360:0,0,0 -r3724,171:20753781,14834360:0,608174,102891 -g3724,131:22064501,14834360 -g3724,131:22064501,14834360 -g3724,131:24413310,14834360 -k3724,132:29857386,14834360:2725643 -k3724,132:32583029,14834360:2725643 -) -(3724,133:20753781,15692386:11829248,505283,102891 -h3724,132:20753781,15692386:0,0,0 -r3724,171:20753781,15692386:0,608174,102891 -g3724,132:22064501,15692386 -g3724,132:22064501,15692386 -g3724,132:26389221,15692386 -g3724,132:27957497,15692386 -k3724,133:30867952,15692386:1715078 -k3724,133:32583029,15692386:1715077 -) -(3724,134:20753781,16550413:11829248,505283,102891 -h3724,133:20753781,16550413:0,0,0 -r3724,171:20753781,16550413:0,608174,102891 -g3724,133:22064501,16550413 -g3724,133:22064501,16550413 -g3724,133:24413310,16550413 -k3724,134:28896629,16550413:3686401 -k3724,134:32583029,16550413:3686400 -) -(3724,135:20753781,17408439:11829248,505283,126483 -h3724,134:20753781,17408439:0,0,0 -r3724,171:20753781,17408439:0,631766,126483 -g3724,134:22064501,17408439 -g3724,134:22064501,17408439 -g3724,134:26784403,17408439 -k3724,135:30082175,17408439:2500854 -k3724,135:32583029,17408439:2500854 -) -(3724,136:20753781,18266465:11829248,505283,102891 -h3724,135:20753781,18266465:0,0,0 -r3724,171:20753781,18266465:0,608174,102891 -g3724,135:22064501,18266465 -g3724,135:22064501,18266465 -g3724,135:25598857,18266465 -k3724,136:29688632,18266465:2894398 -k3724,136:32583029,18266465:2894397 -) -(3724,137:20753781,19124492:11829248,505283,102891 -h3724,136:20753781,19124492:0,0,0 -r3724,171:20753781,19124492:0,608174,102891 -g3724,136:22064501,19124492 -g3724,136:22064501,19124492 -g3724,136:25598857,19124492 -k3724,137:29688632,19124492:2894398 -k3724,137:32583029,19124492:2894397 -) -(3724,138:20753781,19982518:11829248,505283,126483 -h3724,137:20753781,19982518:0,0,0 -r3724,171:20753781,19982518:0,631766,126483 -g3724,137:22064501,19982518 -g3724,137:22064501,19982518 -g3724,137:25994039,19982518 -k3724,138:29886223,19982518:2696807 -k3724,138:32583029,19982518:2696806 -) -(3724,139:20753781,20840544:11829248,505283,102891 -h3724,138:20753781,20840544:0,0,0 -r3724,171:20753781,20840544:0,608174,102891 -g3724,138:22064501,20840544 -g3724,138:22064501,20840544 -g3724,138:25598857,20840544 -k3724,139:29688632,20840544:2894398 -k3724,139:32583029,20840544:2894397 -) -(3724,140:20753781,21698571:11829248,505283,102891 -h3724,139:20753781,21698571:0,0,0 -r3724,171:20753781,21698571:0,608174,102891 -g3724,139:22064501,21698571 -g3724,139:22064501,21698571 -g3724,139:25598857,21698571 -k3724,140:29688632,21698571:2894398 -k3724,140:32583029,21698571:2894397 -) -(3724,141:20753781,22556597:11829248,505283,102891 -h3724,140:20753781,22556597:0,0,0 -r3724,171:20753781,22556597:0,608174,102891 -g3724,140:22064501,22556597 -g3724,140:22064501,22556597 -g3724,140:24808493,22556597 -k3724,141:29293450,22556597:3289580 -k3724,141:32583029,22556597:3289579 -) -(3724,142:20753781,23414623:11829248,513147,102891 -h3724,141:20753781,23414623:0,0,0 -r3724,171:20753781,23414623:0,616038,102891 -g3724,141:22064501,23414623 -g3724,141:22064501,23414623 -g3724,141:27179585,23414623 -g3724,141:28349402,23414623 -g3724,141:29917678,23414623 -k3724,141:32583029,23414623:1296304 -) -(3724,142:23375221,24256111:9207808,485622,11795 -k3724,142:28576814,24256111:4006216 -k3724,142:32583029,24256111:4006215 -) -(3724,143:20753781,25114138:11829248,505283,102891 -h3724,142:20753781,25114138:0,0,0 -r3724,171:20753781,25114138:0,608174,102891 -g3724,142:22064501,25114138 -g3724,142:22064501,25114138 -g3724,142:25598857,25114138 -k3724,143:29688632,25114138:2894398 -k3724,143:32583029,25114138:2894397 -) -(3724,144:20753781,25972164:11829248,505283,126483 -h3724,143:20753781,25972164:0,0,0 -r3724,171:20753781,25972164:0,631766,126483 -g3724,143:22064501,25972164 -g3724,143:22064501,25972164 -g3724,143:25598857,25972164 -k3724,144:29688632,25972164:2894398 -k3724,144:32583029,25972164:2894397 -) -(3724,145:20753781,26830190:11829248,505283,126483 -h3724,144:20753781,26830190:0,0,0 -r3724,171:20753781,26830190:0,631766,126483 -g3724,144:22064501,26830190 -g3724,144:22064501,26830190 -g3724,144:26784403,26830190 -k3724,145:30281405,26830190:2301625 -k3724,145:32583029,26830190:2301624 -) -(3724,146:20753781,27688216:11829248,513147,102891 -h3724,145:20753781,27688216:0,0,0 -r3724,171:20753781,27688216:0,616038,102891 -g3724,145:22064501,27688216 -g3724,145:22064501,27688216 -g3724,145:24018128,27688216 -k3724,146:28898267,27688216:3684762 -k3724,146:32583029,27688216:3684762 -) -(3724,147:20753781,28546243:11829248,505283,134348 -h3724,146:20753781,28546243:0,0,0 -r3724,171:20753781,28546243:0,639631,134348 -g3724,146:22064501,28546243 -g3724,146:22064501,28546243 -g3724,146:24808493,28546243 -k3724,147:29094220,28546243:3488809 -k3724,147:32583029,28546243:3488809 -) -(3724,148:20753781,29404269:11829248,513147,102891 -h3724,147:20753781,29404269:0,0,0 -r3724,171:20753781,29404269:0,616038,102891 -g3724,147:22064501,29404269 -g3724,147:22064501,29404269 -g3724,147:24808493,29404269 -k3724,148:29293450,29404269:3289580 -k3724,148:32583029,29404269:3289579 -) -(3724,149:20753781,30262295:11829248,513147,102891 -h3724,148:20753781,30262295:0,0,0 -r3724,171:20753781,30262295:0,616038,102891 -g3724,148:22064501,30262295 -g3724,148:22064501,30262295 -g3724,148:25994039,30262295 -k3724,149:29886223,30262295:2696807 -k3724,149:32583029,30262295:2696806 -) -(3724,150:20753781,31120322:11829248,505283,102891 -h3724,149:20753781,31120322:0,0,0 -r3724,171:20753781,31120322:0,608174,102891 -g3724,149:22064501,31120322 -g3724,149:22064501,31120322 -g3724,149:24413310,31120322 -g3724,149:25583127,31120322 -g3724,149:26752944,31120322 -g3724,149:28321220,31120322 -g3724,149:29889496,31120322 -k3724,150:31833951,31120322:749078 -k3724,150:32583029,31120322:749078 -) -(3724,151:20753781,31978348:11829248,505283,102891 -h3724,150:20753781,31978348:0,0,0 -r3724,171:20753781,31978348:0,608174,102891 -g3724,150:22064501,31978348 -g3724,150:22064501,31978348 -g3724,150:25203675,31978348 -k3724,151:29491041,31978348:3091989 -k3724,151:32583029,31978348:3091988 -) -(3724,152:20753781,32836374:11829248,505283,102891 -h3724,151:20753781,32836374:0,0,0 -r3724,171:20753781,32836374:0,608174,102891 -g3724,151:22064501,32836374 -g3724,151:22064501,32836374 -g3724,151:26389221,32836374 -k3724,152:30083814,32836374:2499216 -k3724,152:32583029,32836374:2499215 -) -(3724,153:20753781,33694401:11829248,505283,102891 -h3724,152:20753781,33694401:0,0,0 -r3724,171:20753781,33694401:0,608174,102891 -g3724,152:22064501,33694401 -g3724,152:22064501,33694401 -g3724,152:24413310,33694401 -k3724,153:29095858,33694401:3487171 -k3724,153:32583029,33694401:3487171 -) -(3724,154:20753781,34552427:11829248,505283,102891 -h3724,153:20753781,34552427:0,0,0 -r3724,171:20753781,34552427:0,608174,102891 -g3724,153:22064501,34552427 -g3724,153:22064501,34552427 -g3724,153:25994039,34552427 -k3724,154:29886223,34552427:2696807 -k3724,154:32583029,34552427:2696806 -) -(3724,155:20753781,35410453:11829248,505283,102891 -h3724,154:20753781,35410453:0,0,0 -r3724,171:20753781,35410453:0,608174,102891 -g3724,154:22064501,35410453 -g3724,154:22064501,35410453 -g3724,154:24018128,35410453 -k3724,155:28898267,35410453:3684762 -k3724,155:32583029,35410453:3684762 -) -(3724,156:20753781,36268480:11829248,505283,102891 -h3724,155:20753781,36268480:0,0,0 -r3724,171:20753781,36268480:0,608174,102891 -g3724,155:22064501,36268480 -g3724,155:22064501,36268480 -g3724,155:25598857,36268480 -k3724,156:29688632,36268480:2894398 -k3724,156:32583029,36268480:2894397 -) -(3724,157:20753781,37126506:11829248,505283,102891 -h3724,156:20753781,37126506:0,0,0 -r3724,171:20753781,37126506:0,608174,102891 -g3724,156:22064501,37126506 -g3724,156:22064501,37126506 -g3724,156:26784403,37126506 -k3724,157:30281405,37126506:2301625 -k3724,157:32583029,37126506:2301624 -) -(3724,158:20753781,37984532:11829248,505283,102891 -h3724,157:20753781,37984532:0,0,0 -r3724,171:20753781,37984532:0,608174,102891 -g3724,157:22064501,37984532 -g3724,157:22064501,37984532 -g3724,157:25203675,37984532 -k3724,158:29491041,37984532:3091989 -k3724,158:32583029,37984532:3091988 -) -(3724,159:20753781,38842559:11829248,505283,102891 -h3724,158:20753781,38842559:0,0,0 -r3724,171:20753781,38842559:0,608174,102891 -g3724,158:22064501,38842559 -g3724,158:22064501,38842559 -g3724,158:25994039,38842559 -g3724,158:27562315,38842559 -k3724,159:30670361,38842559:1912669 -k3724,159:32583029,38842559:1912668 -) -(3724,160:20753781,39700585:11829248,505283,102891 -h3724,159:20753781,39700585:0,0,0 -r3724,171:20753781,39700585:0,608174,102891 -g3724,159:22064501,39700585 -g3724,159:22064501,39700585 -g3724,159:25598857,39700585 -k3724,160:29489402,39700585:3093627 -k3724,160:32583029,39700585:3093627 -) -(3724,161:20753781,40558611:11829248,513147,102891 -h3724,160:20753781,40558611:0,0,0 -r3724,171:20753781,40558611:0,616038,102891 -g3724,160:22064501,40558611 -g3724,160:22064501,40558611 -g3724,160:28365131,40558611 -k3724,161:31071769,40558611:1511261 -k3724,161:32583029,40558611:1511260 -) -(3724,162:20753781,41416637:11829248,505283,126483 -h3724,161:20753781,41416637:0,0,0 -r3724,171:20753781,41416637:0,631766,126483 -g3724,161:22064501,41416637 -g3724,161:22064501,41416637 -g3724,161:25203675,41416637 -k3724,162:29491041,41416637:3091989 -k3724,162:32583029,41416637:3091988 -) -(3724,163:20753781,42274664:11829248,505283,102891 -h3724,162:20753781,42274664:0,0,0 -r3724,171:20753781,42274664:0,608174,102891 -g3724,162:22064501,42274664 -g3724,162:22064501,42274664 -g3724,162:24018128,42274664 -k3724,163:28898267,42274664:3684762 -k3724,163:32583029,42274664:3684762 -) -(3724,164:20753781,43132690:11829248,513147,102891 -h3724,163:20753781,43132690:0,0,0 -r3724,171:20753781,43132690:0,616038,102891 -g3724,163:22064501,43132690 -g3724,163:22064501,43132690 -g3724,163:25203675,43132690 -k3724,164:29491041,43132690:3091989 -k3724,164:32583029,43132690:3091988 -) -(3724,165:20753781,43990716:11829248,505283,126483 -h3724,164:20753781,43990716:0,0,0 -r3724,171:20753781,43990716:0,631766,126483 -g3724,164:22064501,43990716 -g3724,164:22064501,43990716 -g3724,164:27179585,43990716 -k3724,165:30279766,43990716:2303263 -k3724,165:32583029,43990716:2303263 -) -(3724,166:20753781,44848743:11829248,505283,102891 -h3724,165:20753781,44848743:0,0,0 -r3724,171:20753781,44848743:0,608174,102891 -g3724,165:22064501,44848743 -g3724,165:22064501,44848743 -g3724,165:24808493,44848743 -k3724,166:29293450,44848743:3289580 -k3724,166:32583029,44848743:3289579 -) -(3724,167:20753781,45706769:11829248,513147,102891 -h3724,166:20753781,45706769:0,0,0 -r3724,171:20753781,45706769:0,616038,102891 -g3724,166:22064501,45706769 -g3724,166:22064501,45706769 -g3724,166:25994039,45706769 -k3724,167:29886223,45706769:2696807 -k3724,167:32583029,45706769:2696806 -) -] -(3724,171:32583029,45706769:0,355205,126483 -h3724,171:32583029,45706769:420741,355205,126483 -k3724,171:32583029,45706769:-420741 -) -) -] -(3724,171:32583029,45706769:0,0,0 -g3724,171:32583029,45706769 -) -) -] -(3724,171:6630773,47279633:25952256,0,0 -h3724,171:6630773,47279633:25952256,0,0 -) -] -(3724,171:4262630,4025873:0,0,0 -[3724,171:-473656,4025873:0,0,0 -(3724,171:-473656,-710413:0,0,0 -(3724,171:-473656,-710413:0,0,0 -g3724,171:-473656,-710413 -) -g3724,171:-473656,-710413 -) -] -) -] -!31023 -}451 +[3765,165:3078558,4812305:0,0,0 +(3765,165:3078558,49800853:0,16384,2228224 +g3765,165:29030814,49800853 +g3765,165:36135244,49800853 +(3765,1:36135244,49800853:1720320,16384,2228224 +(3765,1:36135244,52029077:16384,1703936,0 +[3765,1:36135244,52029077:25952256,1703936,0 +(3765,1:36135244,51504789:25952256,1179648,0 +(3765,1:36135244,51504789:16384,1179648,0 +r3765,165:36151628,51504789:16384,1179648,0 +) +k3765,1:62087500,51504789:25935872 +g3765,1:62087500,51504789 +) +] +) +g3765,1:36675916,49800853 +(3765,1:36675916,49800853:1179648,16384,0 +r3765,165:37855564,49800853:1179648,16384,0 +) +) +k3765,165:3078556,49800853:-34777008 +) +] +g3765,165:6630773,4812305 +k3765,165:23083588,4812305:15257438 +g3765,165:24981510,4812305 +g3765,165:25796777,4812305 +g3765,165:26410194,4812305 +g3765,165:28753761,4812305 +g3765,165:29709275,4812305 +) +) +] +[3765,165:6630773,45706769:25952256,40108032,0 +(3765,165:6630773,45706769:25952256,40108032,0 +(3765,165:6630773,45706769:0,0,0 +g3765,165:6630773,45706769 +) +[3765,165:6630773,45706769:25952256,40108032,0 +(3765,165:6630773,45706769:25952256,40108032,126483 +[3765,165:6630773,45706769:11829248,40108032,102891 +(3765,70:6630773,6254097:11829248,485622,141066 +h3765,69:6630773,6254097:0,0,0 +r3765,165:6630773,6254097:0,626688,141066 +g3765,69:7941493,6254097 +g3765,69:7941493,6254097 +g3765,69:10804046,6254097 +k3765,70:15229722,6254097:3230299 +k3765,70:18460021,6254097:3230299 +) +(3765,71:6630773,7131902:11829248,530548,132808 +h3765,70:6630773,7131902:0,0,0 +r3765,165:6630773,7131902:0,663356,132808 +g3765,70:7941493,7131902 +g3765,70:7941493,7131902 +g3765,70:12048874,7131902 +g3765,70:13617150,7131902 +k3765,71:16636274,7131902:1823747 +k3765,71:18460021,7131902:1823747 +) +(3765,75:6630773,8877144:11829248,513147,7863 +h3765,74:6630773,8877144:0,0,0 +g3765,74:9855799,8877144 +g3765,74:11246473,8877144 +k3765,75:16245560,8877144:2214462 +k3765,75:18460021,8877144:2214461 +) +(3765,76:6630773,9754948:11829248,530548,102891 +h3765,75:6630773,9754948:0,0,0 +r3765,165:6630773,9754948:0,633439,102891 +g3765,75:7941493,9754948 +g3765,75:7941493,9754948 +g3765,75:10389104,9754948 +g3765,75:11558921,9754948 +k3765,76:15407930,9754948:3052091 +k3765,76:18460021,9754948:3052091 +) +(3765,77:6630773,10632753:11829248,530548,102891 +h3765,76:6630773,10632753:0,0,0 +r3765,165:6630773,10632753:0,633439,102891 +g3765,76:7941493,10632753 +g3765,76:7941493,10632753 +g3765,76:10389104,10632753 +g3765,76:11957380,10632753 +g3765,76:13525656,10632753 +k3765,77:16590527,10632753:1869494 +k3765,77:18460021,10632753:1869494 +) +(3765,78:6630773,11510558:11829248,538806,102891 +h3765,77:6630773,11510558:0,0,0 +r3765,165:6630773,11510558:0,641697,102891 +g3765,77:7941493,11510558 +g3765,77:7941493,11510558 +g3765,77:13708644,11510558 +k3765,78:16682021,11510558:1778000 +k3765,78:18460021,11510558:1778000 +) +(3765,79:6630773,12388363:11829248,538806,102891 +h3765,78:6630773,12388363:0,0,0 +r3765,165:6630773,12388363:0,641697,102891 +g3765,78:7941493,12388363 +g3765,78:7941493,12388363 +g3765,78:13293701,12388363 +g3765,78:14861977,12388363 +k3765,79:17258688,12388363:1201334 +k3765,79:18460021,12388363:1201333 +) +(3765,80:6630773,13266167:11829248,530548,141066 +h3765,79:6630773,13266167:0,0,0 +r3765,165:6630773,13266167:0,671614,141066 +g3765,79:7941493,13266167 +g3765,79:7941493,13266167 +g3765,79:12878759,13266167 +g3765,79:14447035,13266167 +g3765,79:16015311,13266167 +k3765,80:17835355,13266167:624667 +k3765,80:18460021,13266167:624666 +) +(3765,81:6630773,14143972:11829248,530548,102891 +h3765,80:6630773,14143972:0,0,0 +r3765,165:6630773,14143972:0,633439,102891 +g3765,80:7941493,14143972 +g3765,80:7941493,14143972 +g3765,80:10389104,14143972 +g3765,80:11957380,14143972 +k3765,81:15806389,14143972:2653632 +k3765,81:18460021,14143972:2653632 +) +(3765,82:6630773,15021777:11829248,530548,102891 +h3765,81:6630773,15021777:0,0,0 +r3765,165:6630773,15021777:0,633439,102891 +g3765,81:7941493,15021777 +g3765,81:7941493,15021777 +g3765,81:10389104,15021777 +k3765,82:15385321,15021777:3074701 +k3765,82:18460021,15021777:3074700 +) +(3765,83:6630773,15899582:11829248,530548,102891 +h3765,82:6630773,15899582:0,0,0 +r3765,165:6630773,15899582:0,633439,102891 +g3765,82:7941493,15899582 +g3765,82:7941493,15899582 +g3765,82:12463816,15899582 +g3765,82:14032092,15899582 +g3765,82:15600368,15899582 +g3765,82:17168644,15899582 +k3765,83:18412021,15899582:48000 +k3765,83:18460021,15899582:48000 +) +(3765,84:6630773,16777386:11829248,530548,102891 +h3765,83:6630773,16777386:0,0,0 +r3765,165:6630773,16777386:0,633439,102891 +g3765,83:7941493,16777386 +g3765,83:7941493,16777386 +g3765,83:16198298,16777386 +k3765,83:18460021,16777386:892676 +) +(3765,84:9252213,17642466:9207808,485622,11795 +k3765,84:14453806,17642466:4006216 +k3765,84:18460021,17642466:4006215 +) +(3765,86:6630773,18520271:11829248,530548,102891 +h3765,84:6630773,18520271:0,0,0 +r3765,165:6630773,18520271:0,633439,102891 +g3765,84:7941493,18520271 +g3765,84:7941493,18520271 +g3765,84:11218989,18520271 +g3765,84:12787265,18520271 +g3765,84:14355541,18520271 +g3765,84:15923817,18520271 +k3765,84:18460021,18520271:1167157 +) +(3765,86:9252213,19385351:9207808,485622,102891 +g3765,84:10820489,19385351 +g3765,84:12388765,19385351 +g3765,84:13957041,19385351 +g3765,84:15525317,19385351 +k3765,86:17590358,19385351:869664 +k3765,86:18460021,19385351:869663 +) +(3765,87:6630773,20263156:11829248,530548,141066 +h3765,86:6630773,20263156:0,0,0 +r3765,165:6630773,20263156:0,671614,141066 +g3765,86:7941493,20263156 +g3765,86:7941493,20263156 +g3765,86:12878759,20263156 +k3765,87:16267079,20263156:2192943 +k3765,87:18460021,20263156:2192942 +) +(3765,88:6630773,21140961:11829248,530548,132808 +h3765,87:6630773,21140961:0,0,0 +r3765,165:6630773,21140961:0,663356,132808 +g3765,87:7941493,21140961 +g3765,87:7941493,21140961 +g3765,87:10389104,21140961 +k3765,88:15385321,21140961:3074701 +k3765,88:18460021,21140961:3074700 +) +(3765,89:6630773,22018765:11829248,530548,102891 +h3765,88:6630773,22018765:0,0,0 +r3765,165:6630773,22018765:0,633439,102891 +g3765,88:7941493,22018765 +g3765,88:7941493,22018765 +g3765,88:10389104,22018765 +g3765,88:11957380,22018765 +k3765,89:15806389,22018765:2653632 +k3765,89:18460021,22018765:2653632 +) +(3765,90:6630773,22896570:11829248,530548,132808 +h3765,89:6630773,22896570:0,0,0 +r3765,165:6630773,22896570:0,663356,132808 +g3765,89:7941493,22896570 +g3765,89:7941493,22896570 +g3765,89:11633931,22896570 +g3765,89:12803748,22896570 +k3765,90:16030344,22896570:2429678 +k3765,90:18460021,22896570:2429677 +) +(3765,91:6630773,23774375:11829248,530548,141066 +h3765,90:6630773,23774375:0,0,0 +r3765,165:6630773,23774375:0,671614,141066 +g3765,90:7941493,23774375 +g3765,90:7941493,23774375 +g3765,90:12048874,23774375 +k3765,91:15852136,23774375:2607885 +k3765,91:18460021,23774375:2607885 +) +(3765,92:6630773,24652180:11829248,530548,132808 +h3765,91:6630773,24652180:0,0,0 +r3765,165:6630773,24652180:0,663356,132808 +g3765,91:7941493,24652180 +g3765,91:7941493,24652180 +g3765,91:11218989,24652180 +k3765,92:15237964,24652180:3222057 +k3765,92:18460021,24652180:3222057 +) +(3765,93:6630773,25529984:11829248,530548,102891 +h3765,92:6630773,25529984:0,0,0 +r3765,165:6630773,25529984:0,633439,102891 +g3765,92:7941493,25529984 +g3765,92:7941493,25529984 +g3765,92:14123586,25529984 +g3765,92:15293403,25529984 +g3765,92:16463220,25529984 +k3765,93:17860080,25529984:599942 +k3765,93:18460021,25529984:599941 +) +(3765,94:6630773,26407789:11829248,538806,102891 +h3765,93:6630773,26407789:0,0,0 +r3765,165:6630773,26407789:0,641697,102891 +g3765,93:7941493,26407789 +g3765,93:7941493,26407789 +g3765,93:14538528,26407789 +k3765,94:17096963,26407789:1363058 +k3765,94:18460021,26407789:1363058 +) +(3765,95:6630773,27285594:11829248,538806,102891 +h3765,94:6630773,27285594:0,0,0 +r3765,165:6630773,27285594:0,641697,102891 +g3765,94:7941493,27285594 +g3765,94:7941493,27285594 +g3765,94:13293701,27285594 +g3765,94:14861977,27285594 +k3765,95:17258688,27285594:1201334 +k3765,95:18460021,27285594:1201333 +) +(3765,96:6630773,28163399:11829248,530548,141066 +h3765,95:6630773,28163399:0,0,0 +r3765,165:6630773,28163399:0,671614,141066 +g3765,95:7941493,28163399 +g3765,95:7941493,28163399 +g3765,95:13293701,28163399 +k3765,96:16275320,28163399:2184701 +k3765,96:18460021,28163399:2184701 +) +(3765,97:6630773,29041203:11829248,530548,141066 +h3765,96:6630773,29041203:0,0,0 +r3765,165:6630773,29041203:0,671614,141066 +g3765,96:7941493,29041203 +g3765,96:7941493,29041203 +g3765,96:13293701,29041203 +g3765,96:14463518,29041203 +k3765,97:16860229,29041203:1599793 +k3765,97:18460021,29041203:1599792 +) +(3765,98:6630773,29919008:11829248,530548,102891 +h3765,97:6630773,29919008:0,0,0 +r3765,165:6630773,29919008:0,633439,102891 +g3765,97:7941493,29919008 +g3765,97:7941493,29919008 +g3765,97:12878759,29919008 +k3765,98:16067849,29919008:2392172 +k3765,98:18460021,29919008:2392172 +) +(3765,99:6630773,30796813:11829248,530548,102891 +h3765,98:6630773,30796813:0,0,0 +r3765,165:6630773,30796813:0,633439,102891 +g3765,98:7941493,30796813 +g3765,98:7941493,30796813 +g3765,98:13293701,30796813 +g3765,98:14463518,30796813 +g3765,98:15633335,30796813 +k3765,99:17445137,30796813:1014884 +k3765,99:18460021,30796813:1014884 +) +(3765,100:6630773,31674618:11829248,530548,102891 +h3765,99:6630773,31674618:0,0,0 +r3765,165:6630773,31674618:0,633439,102891 +g3765,99:7941493,31674618 +g3765,99:7941493,31674618 +g3765,99:11218989,31674618 +k3765,100:15437194,31674618:3022828 +k3765,100:18460021,31674618:3022827 +) +(3765,101:6630773,32552422:11829248,530548,102891 +h3765,100:6630773,32552422:0,0,0 +r3765,165:6630773,32552422:0,633439,102891 +g3765,100:7941493,32552422 +g3765,100:7941493,32552422 +g3765,100:12878759,32552422 +k3765,101:16067849,32552422:2392172 +k3765,101:18460021,32552422:2392172 +) +(3765,102:6630773,33430227:11829248,530548,102891 +h3765,101:6630773,33430227:0,0,0 +r3765,165:6630773,33430227:0,633439,102891 +g3765,101:7941493,33430227 +g3765,101:7941493,33430227 +g3765,101:12878759,33430227 +k3765,102:16267079,33430227:2192943 +k3765,102:18460021,33430227:2192942 +) +(3765,103:6630773,34308032:11829248,530548,141066 +h3765,102:6630773,34308032:0,0,0 +r3765,165:6630773,34308032:0,671614,141066 +g3765,102:7941493,34308032 +g3765,102:7941493,34308032 +g3765,102:11633931,34308032 +g3765,102:13202207,34308032 +g3765,102:14770483,34308032 +g3765,102:16338759,34308032 +k3765,102:18460021,34308032:752215 +) +(3765,103:9252213,35173112:9207808,485622,11795 +k3765,103:14453806,35173112:4006216 +k3765,103:18460021,35173112:4006215 +) +(3765,104:6630773,36050917:11829248,530548,102891 +h3765,103:6630773,36050917:0,0,0 +r3765,165:6630773,36050917:0,633439,102891 +g3765,103:7941493,36050917 +g3765,103:7941493,36050917 +g3765,103:11633931,36050917 +k3765,104:15644665,36050917:2815357 +k3765,104:18460021,36050917:2815356 +) +(3765,105:6630773,36928721:11829248,530548,102891 +h3765,104:6630773,36928721:0,0,0 +r3765,165:6630773,36928721:0,633439,102891 +g3765,104:7941493,36928721 +g3765,104:7941493,36928721 +g3765,104:10804046,36928721 +g3765,104:12372322,36928721 +k3765,105:16013860,36928721:2446161 +k3765,105:18460021,36928721:2446161 +) +(3765,106:6630773,37806526:11829248,530548,102891 +h3765,105:6630773,37806526:0,0,0 +r3765,165:6630773,37806526:0,633439,102891 +g3765,105:7941493,37806526 +g3765,105:7941493,37806526 +g3765,105:11633931,37806526 +k3765,106:15644665,37806526:2815357 +k3765,106:18460021,37806526:2815356 +) +(3765,107:6630773,38684331:11829248,530548,102891 +h3765,106:6630773,38684331:0,0,0 +r3765,165:6630773,38684331:0,633439,102891 +g3765,106:7941493,38684331 +g3765,106:7941493,38684331 +g3765,106:13293701,38684331 +g3765,106:14861977,38684331 +g3765,106:16430253,38684331 +k3765,107:18042826,38684331:417196 +k3765,107:18460021,38684331:417195 +) +(3765,108:6630773,39562136:11829248,530548,102891 +h3765,107:6630773,39562136:0,0,0 +r3765,165:6630773,39562136:0,633439,102891 +g3765,107:7941493,39562136 +g3765,107:7941493,39562136 +g3765,107:12463816,39562136 +k3765,108:16059607,39562136:2400414 +k3765,108:18460021,39562136:2400414 +) +(3765,109:6630773,40439940:11829248,530548,102891 +h3765,108:6630773,40439940:0,0,0 +r3765,165:6630773,40439940:0,633439,102891 +g3765,108:7941493,40439940 +g3765,108:7941493,40439940 +g3765,108:10389104,40439940 +g3765,108:11957380,40439940 +k3765,109:15806389,40439940:2653632 +k3765,109:18460021,40439940:2653632 +) +(3765,110:6630773,41317745:11829248,530548,132808 +h3765,109:6630773,41317745:0,0,0 +r3765,165:6630773,41317745:0,663356,132808 +g3765,109:7941493,41317745 +g3765,109:7941493,41317745 +g3765,109:11633931,41317745 +k3765,110:15644665,41317745:2815357 +k3765,110:18460021,41317745:2815356 +) +(3765,111:6630773,42195550:11829248,530548,102891 +h3765,110:6630773,42195550:0,0,0 +r3765,165:6630773,42195550:0,633439,102891 +g3765,110:7941493,42195550 +g3765,110:7941493,42195550 +g3765,110:10804046,42195550 +k3765,111:15229722,42195550:3230299 +k3765,111:18460021,42195550:3230299 +) +(3765,112:6630773,43073355:11829248,530548,102891 +h3765,111:6630773,43073355:0,0,0 +r3765,165:6630773,43073355:0,633439,102891 +g3765,111:7941493,43073355 +g3765,111:7941493,43073355 +g3765,111:13293701,43073355 +k3765,112:16474550,43073355:1985472 +k3765,112:18460021,43073355:1985471 +) +(3765,113:6630773,43951159:11829248,530548,132808 +h3765,112:6630773,43951159:0,0,0 +r3765,165:6630773,43951159:0,663356,132808 +g3765,112:7941493,43951159 +g3765,112:7941493,43951159 +g3765,112:14538528,43951159 +k3765,113:17096963,43951159:1363058 +k3765,113:18460021,43951159:1363058 +) +(3765,114:6630773,44828964:11829248,530548,132808 +h3765,113:6630773,44828964:0,0,0 +r3765,165:6630773,44828964:0,663356,132808 +g3765,113:7941493,44828964 +g3765,113:7941493,44828964 +g3765,113:11633931,44828964 +k3765,114:15644665,44828964:2815357 +k3765,114:18460021,44828964:2815356 +) +(3765,115:6630773,45706769:11829248,530548,102891 +h3765,114:6630773,45706769:0,0,0 +r3765,165:6630773,45706769:0,633439,102891 +g3765,114:7941493,45706769 +g3765,114:7941493,45706769 +g3765,114:9559219,45706769 +g3765,114:10729036,45706769 +g3765,114:11898853,45706769 +k3765,115:15577896,45706769:2882125 +k3765,115:18460021,45706769:2882125 +) +] +k3765,165:19606901,45706769:1146880 +r3765,165:19606901,45706769:0,40234515,126483 +k3765,165:20753781,45706769:1146880 +[3765,165:20753781,45706769:11829248,40108032,102891 +(3765,116:20753781,6254097:11829248,530548,102891 +h3765,115:20753781,6254097:0,0,0 +r3765,165:20753781,6254097:0,633439,102891 +g3765,115:22064501,6254097 +g3765,115:22064501,6254097 +g3765,115:24512112,6254097 +g3765,115:25681929,6254097 +g3765,115:26851746,6254097 +k3765,116:30315076,6254097:2267953 +k3765,116:32583029,6254097:2267953 +) +(3765,117:20753781,7130823:11829248,530548,141066 +h3765,116:20753781,7130823:0,0,0 +r3765,165:20753781,7130823:0,671614,141066 +g3765,116:22064501,7130823 +g3765,116:22064501,7130823 +g3765,116:26171882,7130823 +g3765,116:27341699,7130823 +k3765,117:30360823,7130823:2222206 +k3765,117:32583029,7130823:2222206 +) +(3765,118:20753781,8007549:11829248,530548,102891 +h3765,117:20753781,8007549:0,0,0 +r3765,165:20753781,8007549:0,633439,102891 +g3765,117:22064501,8007549 +g3765,117:22064501,8007549 +g3765,117:27001767,8007549 +k3765,118:30190857,8007549:2392172 +k3765,118:32583029,8007549:2392172 +) +(3765,119:20753781,8884275:11829248,530548,102891 +h3765,118:20753781,8884275:0,0,0 +r3765,165:20753781,8884275:0,633439,102891 +g3765,118:22064501,8884275 +g3765,118:22064501,8884275 +g3765,118:26586824,8884275 +k3765,119:30182615,8884275:2400414 +k3765,119:32583029,8884275:2400414 +) +(3765,120:20753781,9761001:11829248,530548,102891 +h3765,119:20753781,9761001:0,0,0 +r3765,165:20753781,9761001:0,633439,102891 +g3765,119:22064501,9761001 +g3765,119:22064501,9761001 +g3765,119:25341997,9761001 +g3765,119:26511814,9761001 +g3765,119:27681631,9761001 +g3765,119:29249907,9761001 +g3765,119:30818183,9761001 +k3765,120:32298295,9761001:284735 +k3765,120:32583029,9761001:284734 +) +(3765,121:20753781,10637727:11829248,538806,102891 +h3765,120:20753781,10637727:0,0,0 +r3765,165:20753781,10637727:0,641697,102891 +g3765,120:22064501,10637727 +g3765,120:22064501,10637727 +g3765,120:24927054,10637727 +g3765,120:26495330,10637727 +g3765,120:28063606,10637727 +k3765,121:30921006,10637727:1662023 +k3765,121:32583029,10637727:1662023 +) +(3765,122:20753781,11514453:11829248,538806,102891 +h3765,121:20753781,11514453:0,0,0 +r3765,165:20753781,11514453:0,641697,102891 +g3765,121:22064501,11514453 +g3765,121:22064501,11514453 +g3765,121:28246594,11514453 +k3765,122:31012500,11514453:1570529 +k3765,122:32583029,11514453:1570529 +) +(3765,123:20753781,12391179:11829248,530548,102891 +h3765,122:20753781,12391179:0,0,0 +r3765,165:20753781,12391179:0,633439,102891 +g3765,122:22064501,12391179 +g3765,122:22064501,12391179 +g3765,122:26171882,12391179 +k3765,123:29975144,12391179:2607885 +k3765,123:32583029,12391179:2607885 +) +(3765,124:20753781,13267905:11829248,530548,102891 +h3765,123:20753781,13267905:0,0,0 +r3765,165:20753781,13267905:0,633439,102891 +g3765,123:22064501,13267905 +g3765,123:22064501,13267905 +g3765,123:27001767,13267905 +k3765,124:30390087,13267905:2192943 +k3765,124:32583029,13267905:2192942 +) +(3765,125:20753781,14144631:11829248,530548,102891 +h3765,124:20753781,14144631:0,0,0 +r3765,165:20753781,14144631:0,633439,102891 +g3765,124:22064501,14144631 +g3765,124:22064501,14144631 +g3765,124:26586824,14144631 +k3765,125:30182615,14144631:2400414 +k3765,125:32583029,14144631:2400414 +) +(3765,126:20753781,15021357:11829248,530548,102891 +h3765,125:20753781,15021357:0,0,0 +r3765,165:20753781,15021357:0,633439,102891 +g3765,125:22064501,15021357 +g3765,125:22064501,15021357 +g3765,125:28661536,15021357 +g3765,125:30229812,15021357 +k3765,126:32004109,15021357:578920 +k3765,126:32583029,15021357:578920 +) +(3765,127:20753781,15898083:11829248,530548,132808 +h3765,126:20753781,15898083:0,0,0 +r3765,165:20753781,15898083:0,663356,132808 +g3765,126:22064501,15898083 +g3765,126:22064501,15898083 +g3765,126:27416709,15898083 +k3765,127:30597558,15898083:1985472 +k3765,127:32583029,15898083:1985471 +) +(3765,128:20753781,16774810:11829248,530548,102891 +h3765,127:20753781,16774810:0,0,0 +r3765,165:20753781,16774810:0,633439,102891 +g3765,127:22064501,16774810 +g3765,127:22064501,16774810 +g3765,127:27001767,16774810 +g3765,127:28570043,16774810 +k3765,128:31174225,16774810:1408805 +k3765,128:32583029,16774810:1408804 +) +(3765,129:20753781,17651536:11829248,530548,102891 +h3765,128:20753781,17651536:0,0,0 +r3765,165:20753781,17651536:0,633439,102891 +g3765,128:22064501,17651536 +g3765,128:22064501,17651536 +g3765,128:27001767,17651536 +k3765,129:30390087,17651536:2192943 +k3765,129:32583029,17651536:2192942 +) +(3765,130:20753781,18528262:11829248,530548,102891 +h3765,129:20753781,18528262:0,0,0 +r3765,165:20753781,18528262:0,633439,102891 +g3765,129:22064501,18528262 +g3765,129:22064501,18528262 +g3765,129:29491421,18528262 +g3765,129:31059697,18528262 +k3765,130:32419052,18528262:163978 +k3765,130:32583029,18528262:163977 +) +(3765,131:20753781,19404988:11829248,530548,102891 +h3765,130:20753781,19404988:0,0,0 +r3765,165:20753781,19404988:0,633439,102891 +g3765,130:22064501,19404988 +g3765,130:22064501,19404988 +g3765,130:29491421,19404988 +k3765,131:31634914,19404988:948116 +k3765,131:32583029,19404988:948115 +) +(3765,132:20753781,20281714:11829248,538806,102891 +h3765,131:20753781,20281714:0,0,0 +r3765,165:20753781,20281714:0,641697,102891 +g3765,131:22064501,20281714 +g3765,131:22064501,20281714 +g3765,131:27831652,20281714 +k3765,132:30805029,20281714:1778000 +k3765,132:32583029,20281714:1778000 +) +(3765,133:20753781,21158440:11829248,538806,132808 +h3765,132:20753781,21158440:0,0,0 +r3765,165:20753781,21158440:0,671614,132808 +g3765,132:22064501,21158440 +g3765,132:22064501,21158440 +g3765,132:27416709,21158440 +g3765,132:28984985,21158440 +k3765,133:31381696,21158440:1201334 +k3765,133:32583029,21158440:1201333 +) +(3765,134:20753781,22035166:11829248,530548,132808 +h3765,133:20753781,22035166:0,0,0 +r3765,165:20753781,22035166:0,663356,132808 +g3765,133:22064501,22035166 +g3765,133:22064501,22035166 +g3765,133:27831652,22035166 +k3765,134:30805029,22035166:1778000 +k3765,134:32583029,22035166:1778000 +) +(3765,135:20753781,22911892:11829248,530548,102891 +h3765,134:20753781,22911892:0,0,0 +r3765,165:20753781,22911892:0,633439,102891 +g3765,134:22064501,22911892 +g3765,134:22064501,22911892 +g3765,134:24512112,22911892 +g3765,134:26080388,22911892 +k3765,135:29929397,22911892:2653632 +k3765,135:32583029,22911892:2653632 +) +(3765,136:20753781,23788618:11829248,530548,102891 +h3765,135:20753781,23788618:0,0,0 +r3765,165:20753781,23788618:0,633439,102891 +g3765,135:22064501,23788618 +g3765,135:22064501,23788618 +g3765,135:26586824,23788618 +g3765,135:28155100,23788618 +k3765,136:30966753,23788618:1616276 +k3765,136:32583029,23788618:1616276 +) +(3765,137:20753781,24665344:11829248,530548,102891 +h3765,136:20753781,24665344:0,0,0 +r3765,165:20753781,24665344:0,633439,102891 +g3765,136:22064501,24665344 +g3765,136:22064501,24665344 +g3765,136:24512112,24665344 +k3765,137:28946030,24665344:3637000 +k3765,137:32583029,24665344:3636999 +) +(3765,138:20753781,25542070:11829248,530548,102891 +h3765,137:20753781,25542070:0,0,0 +r3765,165:20753781,25542070:0,633439,102891 +g3765,137:22064501,25542070 +g3765,137:22064501,25542070 +g3765,137:25756939,25542070 +k3765,138:29767673,25542070:2815357 +k3765,138:32583029,25542070:2815356 +) +(3765,139:20753781,26418796:11829248,530548,102891 +h3765,138:20753781,26418796:0,0,0 +r3765,165:20753781,26418796:0,633439,102891 +g3765,138:22064501,26418796 +g3765,138:22064501,26418796 +g3765,138:25756939,26418796 +k3765,139:29767673,26418796:2815357 +k3765,139:32583029,26418796:2815356 +) +(3765,140:20753781,27295522:11829248,530548,132808 +h3765,139:20753781,27295522:0,0,0 +r3765,165:20753781,27295522:0,663356,132808 +g3765,139:22064501,27295522 +g3765,139:22064501,27295522 +g3765,139:26171882,27295522 +k3765,140:29975144,27295522:2607885 +k3765,140:32583029,27295522:2607885 +) +(3765,141:20753781,28172248:11829248,530548,102891 +h3765,140:20753781,28172248:0,0,0 +r3765,165:20753781,28172248:0,633439,102891 +g3765,140:22064501,28172248 +g3765,140:22064501,28172248 +g3765,140:25756939,28172248 +k3765,141:29767673,28172248:2815357 +k3765,141:32583029,28172248:2815356 +) +(3765,142:20753781,29048974:11829248,530548,102891 +h3765,141:20753781,29048974:0,0,0 +r3765,165:20753781,29048974:0,633439,102891 +g3765,141:22064501,29048974 +g3765,141:22064501,29048974 +g3765,141:25756939,29048974 +k3765,142:29767673,29048974:2815357 +k3765,142:32583029,29048974:2815356 +) +(3765,143:20753781,29925700:11829248,530548,102891 +h3765,142:20753781,29925700:0,0,0 +r3765,165:20753781,29925700:0,633439,102891 +g3765,142:22064501,29925700 +g3765,142:22064501,29925700 +g3765,142:24927054,29925700 +k3765,143:29352730,29925700:3230299 +k3765,143:32583029,29925700:3230299 +) +(3765,144:20753781,30802426:11829248,538806,102891 +h3765,143:20753781,30802426:0,0,0 +r3765,165:20753781,30802426:0,641697,102891 +g3765,143:22064501,30802426 +g3765,143:22064501,30802426 +g3765,143:27416709,30802426 +g3765,143:28586526,30802426 +g3765,143:29756343,30802426 +g3765,143:31324619,30802426 +k3765,144:32551513,30802426:31517 +k3765,144:32583029,30802426:31516 +) +(3765,145:20753781,31679152:11829248,530548,102891 +h3765,144:20753781,31679152:0,0,0 +r3765,165:20753781,31679152:0,633439,102891 +g3765,144:22064501,31679152 +g3765,144:22064501,31679152 +g3765,144:25756939,31679152 +k3765,145:29767673,31679152:2815357 +k3765,145:32583029,31679152:2815356 +) +(3765,146:20753781,32555878:11829248,530548,132808 +h3765,145:20753781,32555878:0,0,0 +r3765,165:20753781,32555878:0,663356,132808 +g3765,145:22064501,32555878 +g3765,145:22064501,32555878 +g3765,145:25756939,32555878 +k3765,146:29767673,32555878:2815357 +k3765,146:32583029,32555878:2815356 +) +(3765,147:20753781,33432604:11829248,530548,132808 +h3765,146:20753781,33432604:0,0,0 +r3765,165:20753781,33432604:0,663356,132808 +g3765,146:22064501,33432604 +g3765,146:22064501,33432604 +g3765,146:27001767,33432604 +k3765,147:30390087,33432604:2192943 +k3765,147:32583029,33432604:2192942 +) +(3765,148:20753781,34309330:11829248,538806,102891 +h3765,147:20753781,34309330:0,0,0 +r3765,165:20753781,34309330:0,641697,102891 +g3765,147:22064501,34309330 +g3765,147:22064501,34309330 +g3765,147:24097170,34309330 +k3765,148:28937788,34309330:3645241 +k3765,148:32583029,34309330:3645241 +) +(3765,149:20753781,35186056:11829248,530548,141066 +h3765,148:20753781,35186056:0,0,0 +r3765,165:20753781,35186056:0,671614,141066 +g3765,148:22064501,35186056 +g3765,148:22064501,35186056 +g3765,148:24927054,35186056 +k3765,149:29153501,35186056:3429529 +k3765,149:32583029,35186056:3429528 +) +(3765,150:20753781,36062783:11829248,538806,102891 +h3765,149:20753781,36062783:0,0,0 +r3765,165:20753781,36062783:0,641697,102891 +g3765,149:22064501,36062783 +g3765,149:22064501,36062783 +g3765,149:24927054,36062783 +k3765,150:29352730,36062783:3230299 +k3765,150:32583029,36062783:3230299 +) +(3765,151:20753781,36939509:11829248,538806,102891 +h3765,150:20753781,36939509:0,0,0 +r3765,165:20753781,36939509:0,641697,102891 +g3765,150:22064501,36939509 +g3765,150:22064501,36939509 +g3765,150:26171882,36939509 +k3765,151:29975144,36939509:2607885 +k3765,151:32583029,36939509:2607885 +) +(3765,152:20753781,37816235:11829248,530548,102891 +h3765,151:20753781,37816235:0,0,0 +r3765,165:20753781,37816235:0,633439,102891 +g3765,151:22064501,37816235 +g3765,151:22064501,37816235 +g3765,151:24512112,37816235 +g3765,151:25681929,37816235 +g3765,151:26851746,37816235 +g3765,151:28420022,37816235 +g3765,151:29988298,37816235 +k3765,152:31883352,37816235:699677 +k3765,152:32583029,37816235:699677 +) +(3765,153:20753781,38692961:11829248,530548,102891 +h3765,152:20753781,38692961:0,0,0 +r3765,165:20753781,38692961:0,633439,102891 +g3765,152:22064501,38692961 +g3765,152:22064501,38692961 +g3765,152:25341997,38692961 +k3765,153:29560202,38692961:3022828 +k3765,153:32583029,38692961:3022827 +) +(3765,154:20753781,39569687:11829248,530548,102891 +h3765,153:20753781,39569687:0,0,0 +r3765,165:20753781,39569687:0,633439,102891 +g3765,153:22064501,39569687 +g3765,153:22064501,39569687 +g3765,153:26586824,39569687 +k3765,154:30182615,39569687:2400414 +k3765,154:32583029,39569687:2400414 +) +(3765,155:20753781,40446413:11829248,530548,102891 +h3765,154:20753781,40446413:0,0,0 +r3765,165:20753781,40446413:0,633439,102891 +g3765,154:22064501,40446413 +g3765,154:22064501,40446413 +g3765,154:24512112,40446413 +k3765,155:29145259,40446413:3437770 +k3765,155:32583029,40446413:3437770 +) +(3765,156:20753781,41323139:11829248,530548,102891 +h3765,155:20753781,41323139:0,0,0 +r3765,165:20753781,41323139:0,633439,102891 +g3765,155:22064501,41323139 +g3765,155:22064501,41323139 +g3765,155:26171882,41323139 +k3765,156:29975144,41323139:2607885 +k3765,156:32583029,41323139:2607885 +) +(3765,157:20753781,42199865:11829248,530548,102891 +h3765,156:20753781,42199865:0,0,0 +r3765,165:20753781,42199865:0,633439,102891 +g3765,156:22064501,42199865 +g3765,156:22064501,42199865 +g3765,156:24097170,42199865 +k3765,157:28937788,42199865:3645241 +k3765,157:32583029,42199865:3645241 +) +(3765,158:20753781,43076591:11829248,530548,102891 +h3765,157:20753781,43076591:0,0,0 +r3765,165:20753781,43076591:0,633439,102891 +g3765,157:22064501,43076591 +g3765,157:22064501,43076591 +g3765,157:25756939,43076591 +k3765,158:29767673,43076591:2815357 +k3765,158:32583029,43076591:2815356 +) +(3765,159:20753781,43953317:11829248,530548,102891 +h3765,158:20753781,43953317:0,0,0 +r3765,165:20753781,43953317:0,633439,102891 +g3765,158:22064501,43953317 +g3765,158:22064501,43953317 +g3765,158:27001767,43953317 +k3765,159:30390087,43953317:2192943 +k3765,159:32583029,43953317:2192942 +) +(3765,160:20753781,44830043:11829248,530548,102891 +h3765,159:20753781,44830043:0,0,0 +r3765,165:20753781,44830043:0,633439,102891 +g3765,159:22064501,44830043 +g3765,159:22064501,44830043 +g3765,159:25341997,44830043 +k3765,160:29560202,44830043:3022828 +k3765,160:32583029,44830043:3022827 +) +(3765,161:20753781,45706769:11829248,530548,102891 +h3765,160:20753781,45706769:0,0,0 +r3765,165:20753781,45706769:0,633439,102891 +g3765,160:22064501,45706769 +g3765,160:22064501,45706769 +g3765,160:26171882,45706769 +g3765,160:27740158,45706769 +k3765,161:30759282,45706769:1823747 +k3765,161:32583029,45706769:1823747 +) +] +(3765,165:32583029,45706769:0,355205,126483 +h3765,165:32583029,45706769:420741,355205,126483 +k3765,165:32583029,45706769:-420741 +) +) +] +(3765,165:32583029,45706769:0,0,0 +g3765,165:32583029,45706769 +) +) +] +(3765,165:6630773,47279633:25952256,0,0 +h3765,165:6630773,47279633:25952256,0,0 +) +] +(3765,165:4262630,4025873:0,0,0 +[3765,165:-473656,4025873:0,0,0 +(3765,165:-473656,-710413:0,0,0 +(3765,165:-473656,-710413:0,0,0 +g3765,165:-473656,-710413 +) +g3765,165:-473656,-710413 +) +] +) +] +!30546 +}433 !12 -{452 -[3724,260:4262630,47279633:28320399,43253760,0 -(3724,260:4262630,4025873:0,0,0 -[3724,260:-473656,4025873:0,0,0 -(3724,260:-473656,-710413:0,0,0 -(3724,260:-473656,-644877:0,0,0 -k3724,260:-473656,-644877:-65536 +{434 +[3765,250:4262630,47279633:28320399,43253760,0 +(3765,250:4262630,4025873:0,0,0 +[3765,250:-473656,4025873:0,0,0 +(3765,250:-473656,-710413:0,0,0 +(3765,250:-473656,-644877:0,0,0 +k3765,250:-473656,-644877:-65536 ) -(3724,260:-473656,4736287:0,0,0 -k3724,260:-473656,4736287:5209943 +(3765,250:-473656,4736287:0,0,0 +k3765,250:-473656,4736287:5209943 ) -g3724,260:-473656,-710413 +g3765,250:-473656,-710413 ) ] ) -[3724,260:6630773,47279633:25952256,43253760,0 -[3724,260:6630773,4812305:25952256,786432,0 -(3724,260:6630773,4812305:25952256,513147,134348 -(3724,260:6630773,4812305:25952256,513147,134348 -g3724,260:3078558,4812305 -[3724,260:3078558,4812305:0,0,0 -(3724,260:3078558,2439708:0,1703936,0 -k3724,260:1358238,2439708:-1720320 -(3724,1:1358238,2439708:1720320,1703936,0 -(3724,1:1358238,2439708:1179648,16384,0 -r3724,260:2537886,2439708:1179648,16384,0 +[3765,250:6630773,47279633:25952256,43253760,0 +[3765,250:6630773,4812305:25952256,786432,0 +(3765,250:6630773,4812305:25952256,513147,134348 +(3765,250:6630773,4812305:25952256,513147,134348 +g3765,250:3078558,4812305 +[3765,250:3078558,4812305:0,0,0 +(3765,250:3078558,2439708:0,1703936,0 +k3765,250:1358238,2439708:-1720320 +(3765,1:1358238,2439708:1720320,1703936,0 +(3765,1:1358238,2439708:1179648,16384,0 +r3765,250:2537886,2439708:1179648,16384,0 ) -g3724,1:3062174,2439708 -(3724,1:3062174,2439708:16384,1703936,0 -[3724,1:3062174,2439708:25952256,1703936,0 -(3724,1:3062174,1915420:25952256,1179648,0 -(3724,1:3062174,1915420:16384,1179648,0 -r3724,260:3078558,1915420:16384,1179648,0 +g3765,1:3062174,2439708 +(3765,1:3062174,2439708:16384,1703936,0 +[3765,1:3062174,2439708:25952256,1703936,0 +(3765,1:3062174,1915420:25952256,1179648,0 +(3765,1:3062174,1915420:16384,1179648,0 +r3765,250:3078558,1915420:16384,1179648,0 ) -k3724,1:29014430,1915420:25935872 -g3724,1:29014430,1915420 +k3765,1:29014430,1915420:25935872 +g3765,1:29014430,1915420 ) ] ) ) ) ] -[3724,260:3078558,4812305:0,0,0 -(3724,260:3078558,2439708:0,1703936,0 -g3724,260:29030814,2439708 -g3724,260:36135244,2439708 -(3724,1:36135244,2439708:1720320,1703936,0 -(3724,1:36135244,2439708:16384,1703936,0 -[3724,1:36135244,2439708:25952256,1703936,0 -(3724,1:36135244,1915420:25952256,1179648,0 -(3724,1:36135244,1915420:16384,1179648,0 -r3724,260:36151628,1915420:16384,1179648,0 +[3765,250:3078558,4812305:0,0,0 +(3765,250:3078558,2439708:0,1703936,0 +g3765,250:29030814,2439708 +g3765,250:36135244,2439708 +(3765,1:36135244,2439708:1720320,1703936,0 +(3765,1:36135244,2439708:16384,1703936,0 +[3765,1:36135244,2439708:25952256,1703936,0 +(3765,1:36135244,1915420:25952256,1179648,0 +(3765,1:36135244,1915420:16384,1179648,0 +r3765,250:36151628,1915420:16384,1179648,0 ) -k3724,1:62087500,1915420:25935872 -g3724,1:62087500,1915420 +k3765,1:62087500,1915420:25935872 +g3765,1:62087500,1915420 ) ] ) -g3724,1:36675916,2439708 -(3724,1:36675916,2439708:1179648,16384,0 -r3724,260:37855564,2439708:1179648,16384,0 +g3765,1:36675916,2439708 +(3765,1:36675916,2439708:1179648,16384,0 +r3765,250:37855564,2439708:1179648,16384,0 ) ) -k3724,260:3078556,2439708:-34777008 +k3765,250:3078556,2439708:-34777008 ) ] -[3724,260:3078558,4812305:0,0,0 -(3724,260:3078558,49800853:0,16384,2228224 -k3724,260:1358238,49800853:-1720320 -(3724,1:1358238,49800853:1720320,16384,2228224 -(3724,1:1358238,49800853:1179648,16384,0 -r3724,260:2537886,49800853:1179648,16384,0 +[3765,250:3078558,4812305:0,0,0 +(3765,250:3078558,49800853:0,16384,2228224 +k3765,250:1358238,49800853:-1720320 +(3765,1:1358238,49800853:1720320,16384,2228224 +(3765,1:1358238,49800853:1179648,16384,0 +r3765,250:2537886,49800853:1179648,16384,0 ) -g3724,1:3062174,49800853 -(3724,1:3062174,52029077:16384,1703936,0 -[3724,1:3062174,52029077:25952256,1703936,0 -(3724,1:3062174,51504789:25952256,1179648,0 -(3724,1:3062174,51504789:16384,1179648,0 -r3724,260:3078558,51504789:16384,1179648,0 +g3765,1:3062174,49800853 +(3765,1:3062174,52029077:16384,1703936,0 +[3765,1:3062174,52029077:25952256,1703936,0 +(3765,1:3062174,51504789:25952256,1179648,0 +(3765,1:3062174,51504789:16384,1179648,0 +r3765,250:3078558,51504789:16384,1179648,0 ) -k3724,1:29014430,51504789:25935872 -g3724,1:29014430,51504789 +k3765,1:29014430,51504789:25935872 +g3765,1:29014430,51504789 ) ] ) ) ) ] -[3724,260:3078558,4812305:0,0,0 -(3724,260:3078558,49800853:0,16384,2228224 -g3724,260:29030814,49800853 -g3724,260:36135244,49800853 -(3724,1:36135244,49800853:1720320,16384,2228224 -(3724,1:36135244,52029077:16384,1703936,0 -[3724,1:36135244,52029077:25952256,1703936,0 -(3724,1:36135244,51504789:25952256,1179648,0 -(3724,1:36135244,51504789:16384,1179648,0 -r3724,260:36151628,51504789:16384,1179648,0 -) -k3724,1:62087500,51504789:25935872 -g3724,1:62087500,51504789 -) -] -) -g3724,1:36675916,49800853 -(3724,1:36675916,49800853:1179648,16384,0 -r3724,260:37855564,49800853:1179648,16384,0 -) -) -k3724,260:3078556,49800853:-34777008 -) -] -g3724,260:6630773,4812305 -g3724,260:6630773,4812305 -g3724,260:8528695,4812305 -g3724,260:9343962,4812305 -g3724,260:9957379,4812305 -g3724,260:12300946,4812305 -g3724,260:13256460,4812305 -g3724,260:16329443,4812305 -k3724,260:31387652,4812305:15058209 -) -) -] -[3724,260:6630773,45706769:25952256,40108032,0 -(3724,260:6630773,45706769:25952256,40108032,0 -(3724,260:6630773,45706769:0,0,0 -g3724,260:6630773,45706769 -) -[3724,260:6630773,45706769:25952256,40108032,0 -(3724,260:6630773,45706769:25952256,40108032,134348 -[3724,260:6630773,45706769:11829248,40108032,134348 -(3724,168:6630773,6254097:11829248,505283,102891 -h3724,167:6630773,6254097:0,0,0 -r3724,260:6630773,6254097:0,608174,102891 -g3724,167:7941493,6254097 -g3724,167:7941493,6254097 -g3724,167:12661395,6254097 -k3724,168:16158397,6254097:2301625 -k3724,168:18460021,6254097:2301624 -) -(3724,169:6630773,7112893:11829248,505283,102891 -h3724,168:6630773,7112893:0,0,0 -r3724,260:6630773,7112893:0,608174,102891 -g3724,168:7941493,7112893 -g3724,168:7941493,7112893 -g3724,168:13451759,7112893 -k3724,169:16553579,7112893:1906443 -k3724,169:18460021,7112893:1906442 -) -(3724,170:6630773,7971688:11829248,505283,102891 -h3724,169:6630773,7971688:0,0,0 -r3724,260:6630773,7971688:0,608174,102891 -g3724,169:7941493,7971688 -g3724,169:7941493,7971688 -g3724,169:13846941,7971688 -k3724,170:16751170,7971688:1708852 -k3724,170:18460021,7971688:1708851 -) -(3724,171:6630773,8830484:11829248,505283,126483 -h3724,170:6630773,8830484:0,0,0 -r3724,260:6630773,8830484:0,631766,126483 -g3724,170:7941493,8830484 -g3724,170:7941493,8830484 -g3724,170:10290302,8830484 -k3724,171:14773621,8830484:3686401 -k3724,171:18460021,8830484:3686400 -) -(3724,172:6630773,9689279:11829248,505283,126483 -h3724,171:6630773,9689279:0,0,0 -r3724,260:6630773,9689279:0,631766,126483 -g3724,171:7941493,9689279 -g3724,171:7941493,9689279 -g3724,171:14242123,9689279 -k3724,172:16948761,9689279:1511261 -k3724,172:18460021,9689279:1511260 -) -(3724,173:6630773,10548075:11829248,505283,126483 -h3724,172:6630773,10548075:0,0,0 -r3724,260:6630773,10548075:0,631766,126483 -g3724,172:7941493,10548075 -g3724,172:7941493,10548075 -g3724,172:13056577,10548075 -k3724,173:17117516,10548075:1342506 -k3724,173:18460021,10548075:1342505 -) -(3724,174:6630773,11406870:11829248,513147,134348 -h3724,173:6630773,11406870:0,0,0 -r3724,260:6630773,11406870:0,647495,134348 -g3724,173:7941493,11406870 -g3724,173:7941493,11406870 -g3724,173:13056577,11406870 -k3724,174:16355988,11406870:2104034 -k3724,174:18460021,11406870:2104033 -) -(3724,175:6630773,12265666:11829248,513147,126483 -h3724,174:6630773,12265666:0,0,0 -r3724,260:6630773,12265666:0,639630,126483 -g3724,174:7941493,12265666 -g3724,174:7941493,12265666 -g3724,174:13056577,12265666 -g3724,174:14624853,12265666 -g3724,174:16193129,12265666 -k3724,175:17924264,12265666:535758 -k3724,175:18460021,12265666:535757 -) -(3724,176:6630773,13124461:11829248,513147,102891 -h3724,175:6630773,13124461:0,0,0 -r3724,260:6630773,13124461:0,616038,102891 -g3724,175:7941493,13124461 -g3724,175:7941493,13124461 -g3724,175:11475849,13124461 -g3724,175:13770264,13124461 -g3724,175:14940081,13124461 -k3724,176:17297740,13124461:1162282 -k3724,176:18460021,13124461:1162281 -) -(3724,177:6630773,13983257:11829248,513147,102891 -h3724,176:6630773,13983257:0,0,0 -r3724,260:6630773,13983257:0,616038,102891 -g3724,176:7941493,13983257 -g3724,176:7941493,13983257 -g3724,176:12661395,13983257 -k3724,177:16158397,13983257:2301625 -k3724,177:18460021,13983257:2301624 -) -(3724,178:6630773,14842052:11829248,513147,126483 -h3724,177:6630773,14842052:0,0,0 -r3724,260:6630773,14842052:0,639630,126483 -g3724,177:7941493,14842052 -g3724,177:7941493,14842052 -g3724,177:12661395,14842052 -k3724,178:16158397,14842052:2301625 -k3724,178:18460021,14842052:2301624 -) -(3724,179:6630773,15700848:11829248,513147,102891 -h3724,178:6630773,15700848:0,0,0 -r3724,260:6630773,15700848:0,616038,102891 -g3724,178:7941493,15700848 -g3724,178:7941493,15700848 -g3724,178:11475849,15700848 -k3724,179:15565624,15700848:2894398 -k3724,179:18460021,15700848:2894397 -) -(3724,180:6630773,16559643:11829248,513147,102891 -h3724,179:6630773,16559643:0,0,0 -r3724,260:6630773,16559643:0,616038,102891 -g3724,179:7941493,16559643 -g3724,179:7941493,16559643 -g3724,179:11475849,16559643 -g3724,179:13044125,16559643 -k3724,180:16349762,16559643:2110260 -k3724,180:18460021,16559643:2110259 -) -(3724,181:6630773,17418439:11829248,513147,102891 -h3724,180:6630773,17418439:0,0,0 -r3724,260:6630773,17418439:0,616038,102891 -g3724,180:7941493,17418439 -g3724,180:7941493,17418439 -g3724,180:14242123,17418439 -k3724,181:16948761,17418439:1511261 -k3724,181:18460021,17418439:1511260 -) -(3724,182:6630773,18277234:11829248,513147,102891 -h3724,181:6630773,18277234:0,0,0 -r3724,260:6630773,18277234:0,616038,102891 -g3724,181:7941493,18277234 -g3724,181:7941493,18277234 -g3724,181:10290302,18277234 -k3724,182:14972850,18277234:3487171 -k3724,182:18460021,18277234:3487171 -) -(3724,183:6630773,19136030:11829248,513147,102891 -h3724,182:6630773,19136030:0,0,0 -r3724,260:6630773,19136030:0,616038,102891 -g3724,182:7941493,19136030 -g3724,182:7941493,19136030 -g3724,182:11475849,19136030 -g3724,182:12645666,19136030 -g3724,182:13815483,19136030 -k3724,183:16735441,19136030:1724581 -k3724,183:18460021,19136030:1724580 -) -(3724,184:6630773,19994826:11829248,513147,102891 -h3724,183:6630773,19994826:0,0,0 -r3724,260:6630773,19994826:0,616038,102891 -g3724,183:7941493,19994826 -g3724,183:7941493,19994826 -g3724,183:12266213,19994826 -k3724,184:15960806,19994826:2499216 -k3724,184:18460021,19994826:2499215 -) -(3724,185:6630773,20853621:11829248,513147,134348 -h3724,184:6630773,20853621:0,0,0 -r3724,260:6630773,20853621:0,647495,134348 -g3724,184:7941493,20853621 -g3724,184:7941493,20853621 -g3724,184:12661395,20853621 -k3724,185:16158397,20853621:2301625 -k3724,185:18460021,20853621:2301624 -) -(3724,186:6630773,21712417:11829248,513147,102891 -h3724,185:6630773,21712417:0,0,0 -r3724,260:6630773,21712417:0,616038,102891 -g3724,185:7941493,21712417 -g3724,185:7941493,21712417 -g3724,185:12266213,21712417 -k3724,186:15960806,21712417:2499216 -k3724,186:18460021,21712417:2499215 -) -(3724,187:6630773,22571212:11829248,505283,134348 -h3724,186:6630773,22571212:0,0,0 -r3724,260:6630773,22571212:0,639631,134348 -g3724,186:7941493,22571212 -g3724,186:7941493,22571212 -g3724,186:11475849,22571212 -k3724,187:15565624,22571212:2894398 -k3724,187:18460021,22571212:2894397 -) -(3724,188:6630773,23430008:11829248,505283,134348 -h3724,187:6630773,23430008:0,0,0 -r3724,260:6630773,23430008:0,639631,134348 -g3724,187:7941493,23430008 -g3724,187:7941493,23430008 -g3724,187:13451759,23430008 -k3724,188:16553579,23430008:1906443 -k3724,188:18460021,23430008:1906442 -) -(3724,189:6630773,24288803:11829248,505283,134348 -h3724,188:6630773,24288803:0,0,0 -r3724,260:6630773,24288803:0,639631,134348 -g3724,188:7941493,24288803 -g3724,188:7941493,24288803 -g3724,188:12661395,24288803 -g3724,188:14229671,24288803 -k3724,189:16942535,24288803:1517487 -k3724,189:18460021,24288803:1517486 -) -(3724,190:6630773,25147599:11829248,505283,134348 -h3724,189:6630773,25147599:0,0,0 -r3724,260:6630773,25147599:0,639631,134348 -g3724,189:7941493,25147599 -g3724,189:7941493,25147599 -g3724,189:12266213,25147599 -g3724,189:13834489,25147599 -g3724,189:15402765,25147599 -g3724,189:16971041,25147599 -k3724,189:18460021,25147599:119933 -) -(3724,190:9252213,25989087:9207808,485622,11795 -k3724,190:14453806,25989087:4006216 -k3724,190:18460021,25989087:4006215 -) -(3724,191:6630773,26847882:11829248,505283,134348 -h3724,190:6630773,26847882:0,0,0 -r3724,260:6630773,26847882:0,639631,134348 -g3724,190:7941493,26847882 -g3724,190:7941493,26847882 -g3724,190:13056577,26847882 -k3724,191:16355988,26847882:2104034 -k3724,191:18460021,26847882:2104033 -) -(3724,192:6630773,27706678:11829248,505283,134348 -h3724,191:6630773,27706678:0,0,0 -r3724,260:6630773,27706678:0,639631,134348 -g3724,191:7941493,27706678 -g3724,191:7941493,27706678 -g3724,191:13846941,27706678 -k3724,192:16751170,27706678:1708852 -k3724,192:18460021,27706678:1708851 -) -(3724,193:6630773,28565473:11829248,505283,134348 -h3724,192:6630773,28565473:0,0,0 -r3724,260:6630773,28565473:0,639631,134348 -g3724,192:7941493,28565473 -g3724,192:7941493,28565473 -g3724,192:12266213,28565473 -g3724,192:13834489,28565473 -g3724,192:15402765,28565473 -k3724,193:17529082,28565473:930940 -k3724,193:18460021,28565473:930939 -) -(3724,194:6630773,29424269:11829248,505283,134348 -h3724,193:6630773,29424269:0,0,0 -r3724,260:6630773,29424269:0,639631,134348 -g3724,193:7941493,29424269 -g3724,193:7941493,29424269 -g3724,193:13056577,29424269 -k3724,194:16355988,29424269:2104034 -k3724,194:18460021,29424269:2104033 -) -(3724,195:6630773,30283064:11829248,505283,134348 -h3724,194:6630773,30283064:0,0,0 -r3724,260:6630773,30283064:0,639631,134348 -g3724,194:7941493,30283064 -g3724,194:7941493,30283064 -g3724,194:13846941,30283064 -k3724,195:16751170,30283064:1708852 -k3724,195:18460021,30283064:1708851 -) -(3724,196:6630773,31141860:11829248,505283,134348 -h3724,195:6630773,31141860:0,0,0 -r3724,260:6630773,31141860:0,639631,134348 -g3724,195:7941493,31141860 -g3724,195:7941493,31141860 -g3724,195:15032488,31141860 -k3724,196:17343943,31141860:1116078 -k3724,196:18460021,31141860:1116078 -) -(3724,197:6630773,32000656:11829248,505283,134348 -h3724,196:6630773,32000656:0,0,0 -r3724,260:6630773,32000656:0,639631,134348 -g3724,196:7941493,32000656 -g3724,196:7941493,32000656 -g3724,196:14242123,32000656 -g3724,196:15810399,32000656 -k3724,197:17732899,32000656:727123 -k3724,197:18460021,32000656:727122 -) -(3724,198:6630773,32859451:11829248,505283,134348 -h3724,197:6630773,32859451:0,0,0 -r3724,260:6630773,32859451:0,639631,134348 -g3724,197:7941493,32859451 -g3724,197:7941493,32859451 -g3724,197:12661395,32859451 -g3724,197:14229671,32859451 -k3724,198:16942535,32859451:1517487 -k3724,198:18460021,32859451:1517486 -) -(3724,199:6630773,33718247:11829248,505283,134348 -h3724,198:6630773,33718247:0,0,0 -r3724,260:6630773,33718247:0,639631,134348 -g3724,198:7941493,33718247 -g3724,198:7941493,33718247 -g3724,198:14242123,33718247 -k3724,199:16948761,33718247:1511261 -k3724,199:18460021,33718247:1511260 -) -(3724,200:6630773,34577042:11829248,505283,134348 -h3724,199:6630773,34577042:0,0,0 -r3724,260:6630773,34577042:0,639631,134348 -g3724,199:7941493,34577042 -g3724,199:7941493,34577042 -g3724,199:12266213,34577042 -k3724,200:15960806,34577042:2499216 -k3724,200:18460021,34577042:2499215 -) -(3724,201:6630773,35435838:11829248,505283,134348 -h3724,200:6630773,35435838:0,0,0 -r3724,260:6630773,35435838:0,639631,134348 -g3724,200:7941493,35435838 -g3724,200:7941493,35435838 -g3724,200:14637306,35435838 -g3724,200:16205582,35435838 -k3724,201:17930490,35435838:529531 -k3724,201:18460021,35435838:529531 -) -(3724,202:6630773,36294633:11829248,505283,134348 -h3724,201:6630773,36294633:0,0,0 -r3724,260:6630773,36294633:0,639631,134348 -g3724,201:7941493,36294633 -g3724,201:7941493,36294633 -g3724,201:13056577,36294633 -g3724,201:14624853,36294633 -g3724,201:16193129,36294633 -k3724,202:17924264,36294633:535758 -k3724,202:18460021,36294633:535757 -) -(3724,203:6630773,37153429:11829248,505283,134348 -h3724,202:6630773,37153429:0,0,0 -r3724,260:6630773,37153429:0,639631,134348 -g3724,202:7941493,37153429 -g3724,202:7941493,37153429 -g3724,202:13056577,37153429 -g3724,202:14624853,37153429 -g3724,202:16193129,37153429 -k3724,202:18460021,37153429:897845 -) -(3724,203:9252213,37994917:9207808,485622,102891 -g3724,202:10820489,37994917 -k3724,203:15237944,37994917:3222078 -k3724,203:18460021,37994917:3222077 -) -(3724,204:6630773,38853712:11829248,505283,134348 -h3724,203:6630773,38853712:0,0,0 -r3724,260:6630773,38853712:0,639631,134348 -g3724,203:7941493,38853712 -g3724,203:7941493,38853712 -g3724,203:14637306,38853712 -k3724,204:17146352,38853712:1313669 -k3724,204:18460021,38853712:1313669 -) -(3724,205:6630773,39712508:11829248,505283,134348 -h3724,204:6630773,39712508:0,0,0 -r3724,260:6630773,39712508:0,639631,134348 -g3724,204:7941493,39712508 -g3724,204:7941493,39712508 -g3724,204:15427670,39712508 -k3724,205:17541534,39712508:918487 -k3724,205:18460021,39712508:918487 -) -(3724,206:6630773,40571303:11829248,505283,134348 -h3724,205:6630773,40571303:0,0,0 -r3724,260:6630773,40571303:0,639631,134348 -g3724,205:7941493,40571303 -g3724,205:7941493,40571303 -g3724,205:12661395,40571303 -g3724,205:14229671,40571303 -g3724,205:15797947,40571303 -k3724,205:18460021,40571303:1293027 -) -(3724,206:9252213,41412791:9207808,485622,102891 -g3724,205:12343546,41412791 -g3724,205:13911822,41412791 -k3724,206:16783610,41412791:1676411 -k3724,206:18460021,41412791:1676411 -) -(3724,207:6630773,42271587:11829248,505283,134348 -h3724,206:6630773,42271587:0,0,0 -r3724,260:6630773,42271587:0,639631,134348 -g3724,206:7941493,42271587 -g3724,206:7941493,42271587 -g3724,206:14637306,42271587 -k3724,207:17146352,42271587:1313669 -k3724,207:18460021,42271587:1313669 -) -(3724,208:6630773,43130382:11829248,505283,134348 -h3724,207:6630773,43130382:0,0,0 -r3724,260:6630773,43130382:0,639631,134348 -g3724,207:7941493,43130382 -g3724,207:7941493,43130382 -g3724,207:12661395,43130382 -g3724,207:14229671,43130382 -k3724,208:16942535,43130382:1517487 -k3724,208:18460021,43130382:1517486 -) -(3724,209:6630773,43989178:11829248,505283,134348 -h3724,208:6630773,43989178:0,0,0 -r3724,260:6630773,43989178:0,639631,134348 -g3724,208:7941493,43989178 -g3724,208:7941493,43989178 -g3724,208:12661395,43989178 -g3724,208:14229671,43989178 -k3724,209:16942535,43989178:1517487 -k3724,209:18460021,43989178:1517486 -) -(3724,210:6630773,44847973:11829248,505283,134348 -h3724,209:6630773,44847973:0,0,0 -r3724,260:6630773,44847973:0,639631,134348 -g3724,209:7941493,44847973 -g3724,209:7941493,44847973 -g3724,209:14242123,44847973 -k3724,210:16948761,44847973:1511261 -k3724,210:18460021,44847973:1511260 -) -(3724,212:6630773,45706769:11829248,505283,134348 -h3724,210:6630773,45706769:0,0,0 -r3724,260:6630773,45706769:0,639631,134348 -g3724,210:7941493,45706769 -g3724,210:7941493,45706769 -g3724,210:13056577,45706769 -g3724,210:14624853,45706769 -g3724,210:16193129,45706769 -k3724,210:18460021,45706769:897845 -) -] -k3724,260:19606901,45706769:1146880 -r3724,260:19606901,45706769:0,40242380,134348 -k3724,260:20753781,45706769:1146880 -[3724,260:20753781,45706769:11829248,40108032,134348 -(3724,212:23375221,6254097:9207808,485622,102891 -g3724,210:26466554,6254097 -g3724,210:28034830,6254097 -g3724,211:29603106,6254097 -g3724,211:31171382,6254097 -k3724,211:32583029,6254097:42600 -) -(3724,212:23375221,7095585:9207808,485622,102891 -g3724,211:24943497,7095585 -g3724,211:26511773,7095585 -g3724,211:28080049,7095585 -k3724,212:30929228,7095585:1653802 -k3724,212:32583029,7095585:1653801 -) -(3724,213:20753781,7953987:11829248,505283,134348 -h3724,212:20753781,7953987:0,0,0 -r3724,260:20753781,7953987:0,639631,134348 -g3724,212:22064501,7953987 -g3724,212:22064501,7953987 -g3724,212:27969949,7953987 -k3724,213:30874178,7953987:1708852 -k3724,213:32583029,7953987:1708851 -) -(3724,214:20753781,8812389:11829248,505283,134348 -h3724,213:20753781,8812389:0,0,0 -r3724,260:20753781,8812389:0,639631,134348 -g3724,213:22064501,8812389 -g3724,213:22064501,8812389 -g3724,213:29155496,8812389 -g3724,213:30723772,8812389 -k3724,213:32583029,8812389:490210 -) -(3724,214:23375221,9653877:9207808,485622,11795 -k3724,214:28576814,9653877:4006216 -k3724,214:32583029,9653877:4006215 -) -(3724,215:20753781,10512280:11829248,505283,134348 -h3724,214:20753781,10512280:0,0,0 -r3724,260:20753781,10512280:0,639631,134348 -g3724,214:22064501,10512280 -g3724,214:22064501,10512280 -g3724,214:27969949,10512280 -g3724,214:29538225,10512280 -k3724,215:31658316,10512280:924714 -k3724,215:32583029,10512280:924713 -) -(3724,216:20753781,11370682:11829248,505283,134348 -h3724,215:20753781,11370682:0,0,0 -r3724,260:20753781,11370682:0,639631,134348 -g3724,215:22064501,11370682 -g3724,215:22064501,11370682 -g3724,215:27179585,11370682 -k3724,216:30478996,11370682:2104034 -k3724,216:32583029,11370682:2104033 -) -(3724,217:20753781,12229084:11829248,505283,134348 -h3724,216:20753781,12229084:0,0,0 -r3724,260:20753781,12229084:0,639631,134348 -g3724,216:22064501,12229084 -g3724,216:22064501,12229084 -g3724,216:26784403,12229084 -k3724,217:30281405,12229084:2301625 -k3724,217:32583029,12229084:2301624 -) -(3724,218:20753781,13087486:11829248,505283,134348 -h3724,217:20753781,13087486:0,0,0 -r3724,260:20753781,13087486:0,639631,134348 -g3724,217:22064501,13087486 -g3724,217:22064501,13087486 -g3724,217:27574767,13087486 -k3724,218:30676587,13087486:1906443 -k3724,218:32583029,13087486:1906442 -) -(3724,219:20753781,13945888:11829248,505283,134348 -h3724,218:20753781,13945888:0,0,0 -r3724,260:20753781,13945888:0,639631,134348 -g3724,218:22064501,13945888 -g3724,218:22064501,13945888 -g3724,218:26389221,13945888 -k3724,219:30083814,13945888:2499216 -k3724,219:32583029,13945888:2499215 -) -(3724,220:20753781,14804290:11829248,505283,134348 -h3724,219:20753781,14804290:0,0,0 -r3724,260:20753781,14804290:0,639631,134348 -g3724,219:22064501,14804290 -g3724,219:22064501,14804290 -g3724,219:27969949,14804290 -k3724,220:30874178,14804290:1708852 -k3724,220:32583029,14804290:1708851 -) -(3724,221:20753781,15662693:11829248,513147,134348 -h3724,220:20753781,15662693:0,0,0 -r3724,260:20753781,15662693:0,647495,134348 -g3724,220:22064501,15662693 -g3724,220:22064501,15662693 -g3724,220:25994039,15662693 -k3724,221:29886223,15662693:2696807 -k3724,221:32583029,15662693:2696806 -) -(3724,222:20753781,16521095:11829248,513147,134348 -h3724,221:20753781,16521095:0,0,0 -r3724,260:20753781,16521095:0,647495,134348 -g3724,221:22064501,16521095 -g3724,221:22064501,16521095 -g3724,221:28365131,16521095 -k3724,222:31071769,16521095:1511261 -k3724,222:32583029,16521095:1511260 -) -(3724,223:20753781,17379497:11829248,513147,134348 -h3724,222:20753781,17379497:0,0,0 -r3724,260:20753781,17379497:0,647495,134348 -g3724,222:22064501,17379497 -g3724,222:22064501,17379497 -g3724,222:27969949,17379497 -k3724,223:30874178,17379497:1708852 -k3724,223:32583029,17379497:1708851 -) -(3724,224:20753781,18237899:11829248,505283,134348 -h3724,223:20753781,18237899:0,0,0 -r3724,260:20753781,18237899:0,639631,134348 -g3724,223:22064501,18237899 -g3724,223:22064501,18237899 -g3724,223:27574767,18237899 -g3724,223:29143043,18237899 -g3724,223:30711319,18237899 -k3724,224:32244863,18237899:338167 -k3724,224:32583029,18237899:338166 -) -(3724,225:20753781,19096301:11829248,505283,134348 -h3724,224:20753781,19096301:0,0,0 -r3724,260:20753781,19096301:0,639631,134348 -g3724,224:22064501,19096301 -g3724,224:22064501,19096301 -g3724,224:27179585,19096301 -k3724,225:30478996,19096301:2104034 -k3724,225:32583029,19096301:2104033 -) -(3724,226:20753781,19954704:11829248,505283,134348 -h3724,225:20753781,19954704:0,0,0 -r3724,260:20753781,19954704:0,639631,134348 -g3724,225:22064501,19954704 -g3724,225:22064501,19954704 -g3724,225:26784403,19954704 -k3724,226:30281405,19954704:2301625 -k3724,226:32583029,19954704:2301624 -) -(3724,227:20753781,20813106:11829248,505283,134348 -h3724,226:20753781,20813106:0,0,0 -r3724,260:20753781,20813106:0,639631,134348 -g3724,226:22064501,20813106 -g3724,226:22064501,20813106 -g3724,226:27179585,20813106 -k3724,227:31240524,20813106:1342506 -k3724,227:32583029,20813106:1342505 -) -(3724,228:20753781,21671508:11829248,505283,134348 -h3724,227:20753781,21671508:0,0,0 -r3724,260:20753781,21671508:0,639631,134348 -g3724,227:22064501,21671508 -g3724,227:22064501,21671508 -g3724,227:28760314,21671508 -k3724,228:31269360,21671508:1313669 -k3724,228:32583029,21671508:1313669 -) -(3724,229:20753781,22529910:11829248,505283,134348 -h3724,228:20753781,22529910:0,0,0 -r3724,260:20753781,22529910:0,639631,134348 -k3724,228:22064501,22529910:1310720 -k3724,228:22064501,22529910:0 -k3724,228:26765616,22529910:180442 -k3724,228:29838163,22529910:180443 -k3724,228:31387652,22529910:180442 -k3724,229:32583029,22529910:0 -k3724,229:32583029,22529910:0 -) -(3724,230:20753781,23388312:11829248,505283,134348 -h3724,229:20753781,23388312:0,0,0 -r3724,260:20753781,23388312:0,639631,134348 -g3724,229:22064501,23388312 -g3724,229:22064501,23388312 -g3724,229:28365131,23388312 -k3724,230:31071769,23388312:1511261 -k3724,230:32583029,23388312:1511260 -) -(3724,231:20753781,24246714:11829248,505283,134348 -h3724,230:20753781,24246714:0,0,0 -r3724,260:20753781,24246714:0,639631,134348 -g3724,230:22064501,24246714 -g3724,230:22064501,24246714 -g3724,230:29155496,24246714 -k3724,231:31466951,24246714:1116078 -k3724,231:32583029,24246714:1116078 -) -(3724,232:20753781,25105117:11829248,505283,134348 -h3724,231:20753781,25105117:0,0,0 -r3724,260:20753781,25105117:0,639631,134348 -g3724,231:22064501,25105117 -g3724,231:22064501,25105117 -g3724,231:26784403,25105117 -g3724,231:28352679,25105117 -k3724,232:31065543,25105117:1517487 -k3724,232:32583029,25105117:1517486 -) -(3724,233:20753781,25963519:11829248,505283,134348 -h3724,232:20753781,25963519:0,0,0 -r3724,260:20753781,25963519:0,639631,134348 -g3724,232:22064501,25963519 -g3724,232:22064501,25963519 -g3724,232:27574767,25963519 -k3724,233:30676587,25963519:1906443 -k3724,233:32583029,25963519:1906442 -) -(3724,234:20753781,26821921:11829248,505283,134348 -h3724,233:20753781,26821921:0,0,0 -r3724,260:20753781,26821921:0,639631,134348 -g3724,233:22064501,26821921 -g3724,233:22064501,26821921 -g3724,233:27179585,26821921 -g3724,233:28747861,26821921 -g3724,233:30316137,26821921 -k3724,234:32047272,26821921:535758 -k3724,234:32583029,26821921:535757 -) -(3724,235:20753781,27680323:11829248,505283,134348 -h3724,234:20753781,27680323:0,0,0 -r3724,260:20753781,27680323:0,639631,134348 -g3724,234:22064501,27680323 -g3724,234:22064501,27680323 -g3724,234:24413310,27680323 -k3724,235:29095858,27680323:3487171 -k3724,235:32583029,27680323:3487171 -) -(3724,236:20753781,28538725:11829248,505283,134348 -h3724,235:20753781,28538725:0,0,0 -r3724,260:20753781,28538725:0,639631,134348 -g3724,235:22064501,28538725 -g3724,235:22064501,28538725 -g3724,235:27574767,28538725 -k3724,236:30676587,28538725:1906443 -k3724,236:32583029,28538725:1906442 -) -(3724,237:20753781,29397128:11829248,505283,134348 -h3724,236:20753781,29397128:0,0,0 -r3724,260:20753781,29397128:0,639631,134348 -g3724,236:22064501,29397128 -g3724,236:22064501,29397128 -g3724,236:25994039,29397128 -g3724,236:27562315,29397128 -k3724,237:30670361,29397128:1912669 -k3724,237:32583029,29397128:1912668 -) -(3724,238:20753781,30255530:11829248,505283,134348 -h3724,237:20753781,30255530:0,0,0 -r3724,260:20753781,30255530:0,639631,134348 -g3724,237:22064501,30255530 -g3724,237:22064501,30255530 -g3724,237:27179585,30255530 -k3724,238:30478996,30255530:2104034 -k3724,238:32583029,30255530:2104033 -) -(3724,239:20753781,31113932:11829248,505283,134348 -h3724,238:20753781,31113932:0,0,0 -r3724,260:20753781,31113932:0,639631,134348 -g3724,238:22064501,31113932 -g3724,238:22064501,31113932 -g3724,238:25203675,31113932 -k3724,239:29491041,31113932:3091989 -k3724,239:32583029,31113932:3091988 -) -(3724,240:20753781,31972334:11829248,505283,134348 -h3724,239:20753781,31972334:0,0,0 -r3724,260:20753781,31972334:0,639631,134348 -g3724,239:22064501,31972334 -g3724,239:22064501,31972334 -g3724,239:25598857,31972334 -g3724,239:27167133,31972334 -g3724,239:28735409,31972334 -g3724,239:30303685,31972334 -k3724,240:32041046,31972334:541984 -k3724,240:32583029,31972334:541983 -) -(3724,241:20753781,32830736:11829248,505283,134348 -h3724,240:20753781,32830736:0,0,0 -r3724,260:20753781,32830736:0,639631,134348 -g3724,240:22064501,32830736 -g3724,240:22064501,32830736 -g3724,240:27179585,32830736 -k3724,241:30478996,32830736:2104034 -k3724,241:32583029,32830736:2104033 -) -(3724,242:20753781,33689138:11829248,505283,134348 -h3724,241:20753781,33689138:0,0,0 -r3724,260:20753781,33689138:0,639631,134348 -g3724,241:22064501,33689138 -g3724,241:22064501,33689138 -g3724,241:25994039,33689138 -g3724,241:27562315,33689138 -k3724,242:30670361,33689138:1912669 -k3724,242:32583029,33689138:1912668 -) -(3724,243:20753781,34547541:11829248,505283,134348 -h3724,242:20753781,34547541:0,0,0 -r3724,260:20753781,34547541:0,639631,134348 -g3724,242:22064501,34547541 -g3724,242:22064501,34547541 -g3724,242:24018128,34547541 -k3724,243:28699038,34547541:3883992 -k3724,243:32583029,34547541:3883991 -) -(3724,244:20753781,35405943:11829248,505283,134348 -h3724,243:20753781,35405943:0,0,0 -r3724,260:20753781,35405943:0,639631,134348 -g3724,243:22064501,35405943 -g3724,243:22064501,35405943 -g3724,243:24413310,35405943 -k3724,244:29095858,35405943:3487171 -k3724,244:32583029,35405943:3487171 -) -(3724,245:20753781,36264345:11829248,505283,134348 -h3724,244:20753781,36264345:0,0,0 -r3724,260:20753781,36264345:0,639631,134348 -g3724,244:22064501,36264345 -g3724,244:22064501,36264345 -g3724,244:24808493,36264345 -g3724,244:25978310,36264345 -k3724,245:29679129,36264345:2903901 -k3724,245:32583029,36264345:2903900 -) -(3724,246:20753781,37122747:11829248,505283,134348 -h3724,245:20753781,37122747:0,0,0 -r3724,260:20753781,37122747:0,639631,134348 -g3724,245:22064501,37122747 -g3724,245:22064501,37122747 -g3724,245:25203675,37122747 -g3724,245:26373492,37122747 -k3724,246:29876720,37122747:2706310 -k3724,246:32583029,37122747:2706309 -) -(3724,247:20753781,37981149:11829248,505283,134348 -h3724,246:20753781,37981149:0,0,0 -r3724,260:20753781,37981149:0,639631,134348 -g3724,246:22064501,37981149 -g3724,246:22064501,37981149 -g3724,246:26389221,37981149 -g3724,246:27957497,37981149 -k3724,247:30867952,37981149:1715078 -k3724,247:32583029,37981149:1715077 -) -(3724,248:20753781,38839552:11829248,505283,134348 -h3724,247:20753781,38839552:0,0,0 -r3724,260:20753781,38839552:0,639631,134348 -g3724,247:22064501,38839552 -g3724,247:22064501,38839552 -g3724,247:24808493,38839552 -g3724,247:25978310,38839552 -k3724,248:29679129,38839552:2903901 -k3724,248:32583029,38839552:2903900 -) -(3724,249:20753781,39697954:11829248,505283,102891 -h3724,248:20753781,39697954:0,0,0 -r3724,260:20753781,39697954:0,608174,102891 -g3724,248:22064501,39697954 -g3724,248:22064501,39697954 -g3724,248:24413310,39697954 -k3724,249:29095858,39697954:3487171 -k3724,249:32583029,39697954:3487171 -) -(3724,250:20753781,40556356:11829248,505283,102891 -h3724,249:20753781,40556356:0,0,0 -r3724,260:20753781,40556356:0,608174,102891 -g3724,249:22064501,40556356 -g3724,249:22064501,40556356 -g3724,249:25598857,40556356 -g3724,249:27167133,40556356 -k3724,250:30472770,40556356:2110260 -k3724,250:32583029,40556356:2110259 -) -(3724,251:20753781,41414758:11829248,505283,126483 -h3724,250:20753781,41414758:0,0,0 -r3724,260:20753781,41414758:0,631766,126483 -g3724,250:22064501,41414758 -g3724,250:22064501,41414758 -g3724,250:24808493,41414758 -k3724,251:29094220,41414758:3488809 -k3724,251:32583029,41414758:3488809 -) -(3724,252:20753781,42273160:11829248,505283,102891 -h3724,251:20753781,42273160:0,0,0 -r3724,260:20753781,42273160:0,608174,102891 -g3724,251:22064501,42273160 -g3724,251:22064501,42273160 -g3724,251:23622946,42273160 -g3724,251:25191222,42273160 -g3724,251:26759498,42273160 -g3724,251:28327774,42273160 -g3724,251:29896050,42273160 -k3724,252:31837228,42273160:745801 -k3724,252:32583029,42273160:745801 -) -(3724,253:20753781,43131562:11829248,505283,102891 -h3724,252:20753781,43131562:0,0,0 -r3724,260:20753781,43131562:0,608174,102891 -g3724,252:22064501,43131562 -g3724,252:22064501,43131562 -g3724,252:26784403,43131562 -k3724,253:30281405,43131562:2301625 -k3724,253:32583029,43131562:2301624 -) -(3724,254:20753781,43989965:11829248,505283,102891 -h3724,253:20753781,43989965:0,0,0 -r3724,260:20753781,43989965:0,608174,102891 -g3724,253:22064501,43989965 -g3724,253:22064501,43989965 -g3724,253:26389221,43989965 -g3724,253:27559038,43989965 -k3724,254:30668722,43989965:1914307 -k3724,254:32583029,43989965:1914307 -) -(3724,255:20753781,44848367:11829248,505283,134348 -h3724,254:20753781,44848367:0,0,0 -r3724,260:20753781,44848367:0,639631,134348 -g3724,254:22064501,44848367 -g3724,254:22064501,44848367 -g3724,254:27179585,44848367 -k3724,255:30478996,44848367:2104034 -k3724,255:32583029,44848367:2104033 -) -(3724,256:20753781,45706769:11829248,505283,134348 -h3724,255:20753781,45706769:0,0,0 -r3724,260:20753781,45706769:0,639631,134348 -g3724,255:22064501,45706769 -g3724,255:22064501,45706769 -g3724,255:29550678,45706769 -k3724,256:31664542,45706769:918487 -k3724,256:32583029,45706769:918487 -) -] -(3724,260:32583029,45706769:0,355205,126483 -h3724,260:32583029,45706769:420741,355205,126483 -k3724,260:32583029,45706769:-420741 -) -) -] -(3724,260:32583029,45706769:0,0,0 -g3724,260:32583029,45706769 -) -) -] -(3724,260:6630773,47279633:25952256,0,0 -h3724,260:6630773,47279633:25952256,0,0 -) -] -(3724,260:4262630,4025873:0,0,0 -[3724,260:-473656,4025873:0,0,0 -(3724,260:-473656,-710413:0,0,0 -(3724,260:-473656,-710413:0,0,0 -g3724,260:-473656,-710413 -) -g3724,260:-473656,-710413 -) -] -) -] -!31219 -}452 +[3765,250:3078558,4812305:0,0,0 +(3765,250:3078558,49800853:0,16384,2228224 +g3765,250:29030814,49800853 +g3765,250:36135244,49800853 +(3765,1:36135244,49800853:1720320,16384,2228224 +(3765,1:36135244,52029077:16384,1703936,0 +[3765,1:36135244,52029077:25952256,1703936,0 +(3765,1:36135244,51504789:25952256,1179648,0 +(3765,1:36135244,51504789:16384,1179648,0 +r3765,250:36151628,51504789:16384,1179648,0 +) +k3765,1:62087500,51504789:25935872 +g3765,1:62087500,51504789 +) +] +) +g3765,1:36675916,49800853 +(3765,1:36675916,49800853:1179648,16384,0 +r3765,250:37855564,49800853:1179648,16384,0 +) +) +k3765,250:3078556,49800853:-34777008 +) +] +g3765,250:6630773,4812305 +g3765,250:6630773,4812305 +g3765,250:8528695,4812305 +g3765,250:9343962,4812305 +g3765,250:9957379,4812305 +g3765,250:12300946,4812305 +g3765,250:13256460,4812305 +g3765,250:16329443,4812305 +k3765,250:31387652,4812305:15058209 +) +) +] +[3765,250:6630773,45706769:25952256,40108032,0 +(3765,250:6630773,45706769:25952256,40108032,0 +(3765,250:6630773,45706769:0,0,0 +g3765,250:6630773,45706769 +) +[3765,250:6630773,45706769:25952256,40108032,0 +(3765,250:6630773,45706769:25952256,40108032,141066 +[3765,250:6630773,45706769:11829248,40108032,11795 +(3765,162:6630773,6254097:11829248,530548,102891 +h3765,161:6630773,6254097:0,0,0 +r3765,250:6630773,6254097:0,633439,102891 +g3765,161:7941493,6254097 +g3765,161:7941493,6254097 +g3765,161:11633931,6254097 +k3765,162:15445435,6254097:3014586 +k3765,162:18460021,6254097:3014586 +) +(3765,163:6630773,7131365:11829248,538806,102891 +h3765,162:6630773,7131365:0,0,0 +r3765,250:6630773,7131365:0,641697,102891 +g3765,162:7941493,7131365 +g3765,162:7941493,7131365 +g3765,162:14538528,7131365 +k3765,163:17096963,7131365:1363058 +k3765,163:18460021,7131365:1363058 +) +(3765,164:6630773,8008632:11829248,530548,132808 +h3765,163:6630773,8008632:0,0,0 +r3765,250:6630773,8008632:0,663356,132808 +g3765,163:7941493,8008632 +g3765,163:7941493,8008632 +g3765,163:11218989,8008632 +k3765,164:15437194,8008632:3022828 +k3765,164:18460021,8008632:3022827 +) +(3765,165:6630773,8885900:11829248,530548,102891 +h3765,164:6630773,8885900:0,0,0 +r3765,250:6630773,8885900:0,633439,102891 +g3765,164:7941493,8885900 +g3765,164:7941493,8885900 +g3765,164:9974162,8885900 +k3765,165:14814780,8885900:3645241 +k3765,165:18460021,8885900:3645241 +) +(3765,166:6630773,9763168:11829248,538806,102891 +h3765,165:6630773,9763168:0,0,0 +r3765,250:6630773,9763168:0,641697,102891 +g3765,165:7941493,9763168 +g3765,165:7941493,9763168 +g3765,165:11218989,9763168 +k3765,166:15437194,9763168:3022828 +k3765,166:18460021,9763168:3022827 +) +(3765,167:6630773,10640436:11829248,530548,132808 +h3765,166:6630773,10640436:0,0,0 +r3765,250:6630773,10640436:0,663356,132808 +g3765,166:7941493,10640436 +g3765,166:7941493,10640436 +g3765,166:13293701,10640436 +k3765,167:16275320,10640436:2184701 +k3765,167:18460021,10640436:2184701 +) +(3765,168:6630773,11517703:11829248,530548,102891 +h3765,167:6630773,11517703:0,0,0 +r3765,250:6630773,11517703:0,633439,102891 +g3765,167:7941493,11517703 +g3765,167:7941493,11517703 +g3765,167:10804046,11517703 +k3765,168:15229722,11517703:3230299 +k3765,168:18460021,11517703:3230299 +) +(3765,169:6630773,12394971:11829248,538806,102891 +h3765,168:6630773,12394971:0,0,0 +r3765,250:6630773,12394971:0,641697,102891 +g3765,168:7941493,12394971 +g3765,168:7941493,12394971 +g3765,168:12048874,12394971 +k3765,169:15852136,12394971:2607885 +k3765,169:18460021,12394971:2607885 +) +(3765,170:6630773,13272239:11829248,530548,102891 +h3765,169:6630773,13272239:0,0,0 +r3765,250:6630773,13272239:0,633439,102891 +g3765,169:7941493,13272239 +g3765,169:7941493,13272239 +g3765,169:12878759,13272239 +k3765,170:16267079,13272239:2192943 +k3765,170:18460021,13272239:2192942 +) +(3765,171:6630773,14149506:11829248,530548,102891 +h3765,170:6630773,14149506:0,0,0 +r3765,250:6630773,14149506:0,633439,102891 +g3765,170:7941493,14149506 +g3765,170:7941493,14149506 +g3765,170:13708644,14149506 +k3765,171:16682021,14149506:1778000 +k3765,171:18460021,14149506:1778000 +) +(3765,172:6630773,15026774:11829248,530548,102891 +h3765,171:6630773,15026774:0,0,0 +r3765,250:6630773,15026774:0,633439,102891 +g3765,171:7941493,15026774 +g3765,171:7941493,15026774 +g3765,171:14123586,15026774 +k3765,172:16889492,15026774:1570529 +k3765,172:18460021,15026774:1570529 +) +(3765,173:6630773,15904042:11829248,530548,132808 +h3765,172:6630773,15904042:0,0,0 +r3765,250:6630773,15904042:0,663356,132808 +g3765,172:7941493,15904042 +g3765,172:7941493,15904042 +g3765,172:10389104,15904042 +k3765,173:14823022,15904042:3637000 +k3765,173:18460021,15904042:3636999 +) +(3765,174:6630773,16781310:11829248,530548,132808 +h3765,173:6630773,16781310:0,0,0 +r3765,250:6630773,16781310:0,663356,132808 +g3765,173:7941493,16781310 +g3765,173:7941493,16781310 +g3765,173:14538528,16781310 +k3765,174:17096963,16781310:1363058 +k3765,174:18460021,16781310:1363058 +) +(3765,175:6630773,17658577:11829248,530548,132808 +h3765,174:6630773,17658577:0,0,0 +r3765,250:6630773,17658577:0,663356,132808 +g3765,174:7941493,17658577 +g3765,174:7941493,17658577 +g3765,174:13293701,17658577 +k3765,175:17236078,17658577:1223944 +k3765,175:18460021,17658577:1223943 +) +(3765,176:6630773,18535845:11829248,538806,141066 +h3765,175:6630773,18535845:0,0,0 +r3765,250:6630773,18535845:0,679872,141066 +g3765,175:7941493,18535845 +g3765,175:7941493,18535845 +g3765,175:13293701,18535845 +k3765,176:16474550,18535845:1985472 +k3765,176:18460021,18535845:1985471 +) +(3765,177:6630773,19413113:11829248,538806,132808 +h3765,176:6630773,19413113:0,0,0 +r3765,250:6630773,19413113:0,671614,132808 +g3765,176:7941493,19413113 +g3765,176:7941493,19413113 +g3765,176:13293701,19413113 +g3765,176:14861977,19413113 +g3765,176:16430253,19413113 +k3765,177:18042826,19413113:417196 +k3765,177:18460021,19413113:417195 +) +(3765,178:6630773,20290381:11829248,538806,102891 +h3765,177:6630773,20290381:0,0,0 +r3765,250:6630773,20290381:0,641697,102891 +g3765,177:7941493,20290381 +g3765,177:7941493,20290381 +g3765,177:11633931,20290381 +g3765,177:13928346,20290381 +k3765,178:16791872,20290381:1668149 +k3765,178:18460021,20290381:1668149 +) +(3765,179:6630773,21167648:11829248,538806,102891 +h3765,178:6630773,21167648:0,0,0 +r3765,250:6630773,21167648:0,641697,102891 +g3765,178:7941493,21167648 +g3765,178:7941493,21167648 +g3765,178:12878759,21167648 +k3765,179:16267079,21167648:2192943 +k3765,179:18460021,21167648:2192942 +) +(3765,180:6630773,22044916:11829248,538806,132808 +h3765,179:6630773,22044916:0,0,0 +r3765,250:6630773,22044916:0,671614,132808 +g3765,179:7941493,22044916 +g3765,179:7941493,22044916 +g3765,179:12878759,22044916 +k3765,180:16267079,22044916:2192943 +k3765,180:18460021,22044916:2192942 +) +(3765,181:6630773,22922184:11829248,538806,102891 +h3765,180:6630773,22922184:0,0,0 +r3765,250:6630773,22922184:0,641697,102891 +g3765,180:7941493,22922184 +g3765,180:7941493,22922184 +g3765,180:11633931,22922184 +k3765,181:15644665,22922184:2815357 +k3765,181:18460021,22922184:2815356 +) +(3765,182:6630773,23799451:11829248,538806,102891 +h3765,181:6630773,23799451:0,0,0 +r3765,250:6630773,23799451:0,641697,102891 +g3765,181:7941493,23799451 +g3765,181:7941493,23799451 +g3765,181:11633931,23799451 +g3765,181:13202207,23799451 +k3765,182:16428803,23799451:2031219 +k3765,182:18460021,23799451:2031218 +) +(3765,183:6630773,24676719:11829248,538806,102891 +h3765,182:6630773,24676719:0,0,0 +r3765,250:6630773,24676719:0,641697,102891 +g3765,182:7941493,24676719 +g3765,182:7941493,24676719 +g3765,182:14538528,24676719 +k3765,183:17096963,24676719:1363058 +k3765,183:18460021,24676719:1363058 +) +(3765,184:6630773,25553987:11829248,538806,102891 +h3765,183:6630773,25553987:0,0,0 +r3765,250:6630773,25553987:0,641697,102891 +g3765,183:7941493,25553987 +g3765,183:7941493,25553987 +g3765,183:10389104,25553987 +k3765,184:15022251,25553987:3437770 +k3765,184:18460021,25553987:3437770 +) +(3765,185:6630773,26431255:11829248,538806,102891 +h3765,184:6630773,26431255:0,0,0 +r3765,250:6630773,26431255:0,641697,102891 +g3765,184:7941493,26431255 +g3765,184:7941493,26431255 +g3765,184:11633931,26431255 +g3765,184:12803748,26431255 +g3765,184:13973565,26431255 +g3765,184:15541841,26431255 +k3765,185:17598620,26431255:861402 +k3765,185:18460021,26431255:861401 +) +(3765,186:6630773,27308522:11829248,538806,102891 +h3765,185:6630773,27308522:0,0,0 +r3765,250:6630773,27308522:0,641697,102891 +g3765,185:7941493,27308522 +g3765,185:7941493,27308522 +g3765,185:12463816,27308522 +k3765,186:16059607,27308522:2400414 +k3765,186:18460021,27308522:2400414 +) +(3765,187:6630773,28185790:11829248,538806,141066 +h3765,186:6630773,28185790:0,0,0 +r3765,250:6630773,28185790:0,679872,141066 +g3765,186:7941493,28185790 +g3765,186:7941493,28185790 +g3765,186:12878759,28185790 +k3765,187:16267079,28185790:2192943 +k3765,187:18460021,28185790:2192942 +) +(3765,188:6630773,29063058:11829248,538806,102891 +h3765,187:6630773,29063058:0,0,0 +r3765,250:6630773,29063058:0,641697,102891 +g3765,187:7941493,29063058 +g3765,187:7941493,29063058 +g3765,187:12463816,29063058 +k3765,188:16059607,29063058:2400414 +k3765,188:18460021,29063058:2400414 +) +(3765,189:6630773,29940325:11829248,530548,141066 +h3765,188:6630773,29940325:0,0,0 +r3765,250:6630773,29940325:0,671614,141066 +g3765,188:7941493,29940325 +g3765,188:7941493,29940325 +g3765,188:11633931,29940325 +k3765,189:15644665,29940325:2815357 +k3765,189:18460021,29940325:2815356 +) +(3765,190:6630773,30817593:11829248,530548,141066 +h3765,189:6630773,30817593:0,0,0 +r3765,250:6630773,30817593:0,671614,141066 +g3765,189:7941493,30817593 +g3765,189:7941493,30817593 +g3765,189:13708644,30817593 +k3765,190:16682021,30817593:1778000 +k3765,190:18460021,30817593:1778000 +) +(3765,191:6630773,31694861:11829248,530548,141066 +h3765,190:6630773,31694861:0,0,0 +r3765,250:6630773,31694861:0,671614,141066 +g3765,190:7941493,31694861 +g3765,190:7941493,31694861 +g3765,190:12878759,31694861 +g3765,190:14447035,31694861 +k3765,191:17051217,31694861:1408805 +k3765,191:18460021,31694861:1408804 +) +(3765,192:6630773,32572129:11829248,530548,141066 +h3765,191:6630773,32572129:0,0,0 +r3765,250:6630773,32572129:0,671614,141066 +g3765,191:7941493,32572129 +g3765,191:7941493,32572129 +g3765,191:12463816,32572129 +g3765,191:14032092,32572129 +g3765,191:15600368,32572129 +k3765,191:18460021,32572129:1490606 +) +(3765,192:9252213,33437209:9207808,485622,102891 +g3765,191:10820489,33437209 +k3765,192:15237944,33437209:3222078 +k3765,192:18460021,33437209:3222077 +) +(3765,193:6630773,34314476:11829248,530548,141066 +h3765,192:6630773,34314476:0,0,0 +r3765,250:6630773,34314476:0,671614,141066 +g3765,192:7941493,34314476 +g3765,192:7941493,34314476 +g3765,192:13293701,34314476 +k3765,193:16474550,34314476:1985472 +k3765,193:18460021,34314476:1985471 +) +(3765,194:6630773,35191744:11829248,530548,141066 +h3765,193:6630773,35191744:0,0,0 +r3765,250:6630773,35191744:0,671614,141066 +g3765,193:7941493,35191744 +g3765,193:7941493,35191744 +g3765,193:14123586,35191744 +k3765,194:16889492,35191744:1570529 +k3765,194:18460021,35191744:1570529 +) +(3765,195:6630773,36069012:11829248,530548,141066 +h3765,194:6630773,36069012:0,0,0 +r3765,250:6630773,36069012:0,671614,141066 +g3765,194:7941493,36069012 +g3765,194:7941493,36069012 +g3765,194:12463816,36069012 +g3765,194:15555149,36069012 +k3765,195:17605274,36069012:854748 +k3765,195:18460021,36069012:854747 +) +(3765,196:6630773,36946280:11829248,530548,141066 +h3765,195:6630773,36946280:0,0,0 +r3765,250:6630773,36946280:0,671614,141066 +g3765,195:7941493,36946280 +g3765,195:7941493,36946280 +g3765,195:13293701,36946280 +k3765,196:16474550,36946280:1985472 +k3765,196:18460021,36946280:1985471 +) +(3765,197:6630773,37823547:11829248,530548,141066 +h3765,196:6630773,37823547:0,0,0 +r3765,250:6630773,37823547:0,671614,141066 +g3765,196:7941493,37823547 +g3765,196:7941493,37823547 +g3765,196:14123586,37823547 +k3765,197:16889492,37823547:1570529 +k3765,197:18460021,37823547:1570529 +) +(3765,198:6630773,38700815:11829248,530548,141066 +h3765,197:6630773,38700815:0,0,0 +r3765,250:6630773,38700815:0,671614,141066 +g3765,197:7941493,38700815 +g3765,197:7941493,38700815 +g3765,197:15368413,38700815 +k3765,198:17511906,38700815:948116 +k3765,198:18460021,38700815:948115 +) +(3765,199:6630773,39578083:11829248,530548,141066 +h3765,198:6630773,39578083:0,0,0 +r3765,250:6630773,39578083:0,671614,141066 +g3765,198:7941493,39578083 +g3765,198:7941493,39578083 +g3765,198:14538528,39578083 +g3765,198:16106804,39578083 +k3765,199:17881101,39578083:578920 +k3765,199:18460021,39578083:578920 +) +(3765,200:6630773,40455350:11829248,530548,141066 +h3765,199:6630773,40455350:0,0,0 +r3765,250:6630773,40455350:0,671614,141066 +g3765,199:7941493,40455350 +g3765,199:7941493,40455350 +g3765,199:12878759,40455350 +g3765,199:14447035,40455350 +k3765,200:17051217,40455350:1408805 +k3765,200:18460021,40455350:1408804 +) +(3765,201:6630773,41332618:11829248,530548,141066 +h3765,200:6630773,41332618:0,0,0 +r3765,250:6630773,41332618:0,671614,141066 +g3765,200:7941493,41332618 +g3765,200:7941493,41332618 +g3765,200:14538528,41332618 +k3765,201:17096963,41332618:1363058 +k3765,201:18460021,41332618:1363058 +) +(3765,202:6630773,42209886:11829248,530548,141066 +h3765,201:6630773,42209886:0,0,0 +r3765,250:6630773,42209886:0,671614,141066 +g3765,201:7941493,42209886 +g3765,201:7941493,42209886 +g3765,201:12463816,42209886 +k3765,202:16059607,42209886:2400414 +k3765,202:18460021,42209886:2400414 +) +(3765,203:6630773,43087154:11829248,530548,141066 +h3765,202:6630773,43087154:0,0,0 +r3765,250:6630773,43087154:0,671614,141066 +g3765,202:7941493,43087154 +g3765,202:7941493,43087154 +g3765,202:14953471,43087154 +g3765,202:16521747,43087154 +k3765,203:18088573,43087154:371449 +k3765,203:18460021,43087154:371448 +) +(3765,204:6630773,43964421:11829248,530548,141066 +h3765,203:6630773,43964421:0,0,0 +r3765,250:6630773,43964421:0,671614,141066 +g3765,203:7941493,43964421 +g3765,203:7941493,43964421 +g3765,203:13293701,43964421 +g3765,203:14861977,43964421 +g3765,203:16430253,43964421 +k3765,204:18042826,43964421:417196 +k3765,204:18460021,43964421:417195 +) +(3765,205:6630773,44841689:11829248,530548,141066 +h3765,204:6630773,44841689:0,0,0 +r3765,250:6630773,44841689:0,671614,141066 +g3765,204:7941493,44841689 +g3765,204:7941493,44841689 +g3765,204:13293701,44841689 +g3765,204:16385034,44841689 +k3765,204:18460021,44841689:705940 +) +(3765,205:9252213,45706769:9207808,485622,11795 +k3765,205:14453806,45706769:4006216 +k3765,205:18460021,45706769:4006215 +) +] +k3765,250:19606901,45706769:1146880 +r3765,250:19606901,45706769:0,40249098,141066 +k3765,250:20753781,45706769:1146880 +[3765,250:20753781,45706769:11829248,40108032,141066 +(3765,206:20753781,6254097:11829248,530548,141066 +h3765,205:20753781,6254097:0,0,0 +r3765,250:20753781,6254097:0,671614,141066 +g3765,205:22064501,6254097 +g3765,205:22064501,6254097 +g3765,205:29076479,6254097 +k3765,206:31427443,6254097:1155587 +k3765,206:32583029,6254097:1155586 +) +(3765,207:20753781,7132615:11829248,530548,141066 +h3765,206:20753781,7132615:0,0,0 +r3765,250:20753781,7132615:0,671614,141066 +g3765,206:22064501,7132615 +g3765,206:22064501,7132615 +g3765,206:29906363,7132615 +k3765,207:31842385,7132615:740645 +k3765,207:32583029,7132615:740644 +) +(3765,208:20753781,8011132:11829248,530548,141066 +h3765,207:20753781,8011132:0,0,0 +r3765,250:20753781,8011132:0,671614,141066 +g3765,207:22064501,8011132 +g3765,207:22064501,8011132 +g3765,207:27001767,8011132 +g3765,207:28570043,8011132 +g3765,207:30138319,8011132 +k3765,207:32583029,8011132:1075663 +) +(3765,208:23375221,8876212:9207808,485622,102891 +g3765,207:24943497,8876212 +g3765,207:26511773,8876212 +g3765,207:28080049,8876212 +k3765,208:30929228,8876212:1653802 +k3765,208:32583029,8876212:1653801 +) +(3765,209:20753781,9754730:11829248,530548,141066 +h3765,208:20753781,9754730:0,0,0 +r3765,250:20753781,9754730:0,671614,141066 +g3765,208:22064501,9754730 +g3765,208:22064501,9754730 +g3765,208:29076479,9754730 +k3765,209:31427443,9754730:1155587 +k3765,209:32583029,9754730:1155586 +) +(3765,210:20753781,10633248:11829248,530548,141066 +h3765,209:20753781,10633248:0,0,0 +r3765,250:20753781,10633248:0,671614,141066 +g3765,209:22064501,10633248 +g3765,209:22064501,10633248 +g3765,209:27001767,10633248 +g3765,209:28570043,10633248 +k3765,210:31174225,10633248:1408805 +k3765,210:32583029,10633248:1408804 +) +(3765,211:20753781,11511766:11829248,530548,141066 +h3765,210:20753781,11511766:0,0,0 +r3765,250:20753781,11511766:0,671614,141066 +g3765,210:22064501,11511766 +g3765,210:22064501,11511766 +g3765,210:27001767,11511766 +g3765,210:28570043,11511766 +k3765,211:31174225,11511766:1408805 +k3765,211:32583029,11511766:1408804 +) +(3765,212:20753781,12390283:11829248,530548,141066 +h3765,211:20753781,12390283:0,0,0 +r3765,250:20753781,12390283:0,671614,141066 +g3765,211:22064501,12390283 +g3765,211:22064501,12390283 +g3765,211:28661536,12390283 +k3765,212:31219971,12390283:1363058 +k3765,212:32583029,12390283:1363058 +) +(3765,214:20753781,13268801:11829248,530548,141066 +h3765,212:20753781,13268801:0,0,0 +r3765,250:20753781,13268801:0,671614,141066 +g3765,212:22064501,13268801 +g3765,212:22064501,13268801 +g3765,212:27416709,13268801 +g3765,212:28984985,13268801 +g3765,212:30553261,13268801 +k3765,212:32583029,13268801:660721 +) +(3765,214:23375221,14133881:9207808,485622,102891 +k3765,212:24942973,14133881:198705 +k3765,212:26510725,14133881:198705 +k3765,212:28078478,14133881:198706 +k3765,213:29646230,14133881:198705 +k3765,213:31213982,14133881:198705 +k3765,213:32583029,14133881:0 +) +(3765,214:23375221,14998961:9207808,485622,102891 +g3765,213:24943497,14998961 +g3765,213:26511773,14998961 +g3765,213:28080049,14998961 +k3765,214:30929228,14998961:1653802 +k3765,214:32583029,14998961:1653801 +) +(3765,215:20753781,15877479:11829248,530548,141066 +h3765,214:20753781,15877479:0,0,0 +r3765,250:20753781,15877479:0,671614,141066 +g3765,214:22064501,15877479 +g3765,214:22064501,15877479 +g3765,214:28246594,15877479 +k3765,215:31012500,15877479:1570529 +k3765,215:32583029,15877479:1570529 +) +(3765,216:20753781,16755997:11829248,530548,141066 +h3765,215:20753781,16755997:0,0,0 +r3765,250:20753781,16755997:0,671614,141066 +g3765,215:22064501,16755997 +g3765,215:22064501,16755997 +g3765,215:29491421,16755997 +g3765,215:31059697,16755997 +k3765,215:32583029,16755997:154285 +) +(3765,216:23375221,17621077:9207808,485622,11795 +k3765,216:28576814,17621077:4006216 +k3765,216:32583029,17621077:4006215 +) +(3765,217:20753781,18499594:11829248,530548,141066 +h3765,216:20753781,18499594:0,0,0 +r3765,250:20753781,18499594:0,671614,141066 +g3765,216:22064501,18499594 +g3765,216:22064501,18499594 +g3765,216:28246594,18499594 +g3765,216:29814870,18499594 +k3765,217:31796638,18499594:786391 +k3765,217:32583029,18499594:786391 +) +(3765,218:20753781,19378112:11829248,530548,141066 +h3765,217:20753781,19378112:0,0,0 +r3765,250:20753781,19378112:0,671614,141066 +g3765,217:22064501,19378112 +g3765,217:22064501,19378112 +g3765,217:27416709,19378112 +k3765,218:30597558,19378112:1985472 +k3765,218:32583029,19378112:1985471 +) +(3765,219:20753781,20256630:11829248,530548,141066 +h3765,218:20753781,20256630:0,0,0 +r3765,250:20753781,20256630:0,671614,141066 +g3765,218:22064501,20256630 +g3765,218:22064501,20256630 +g3765,218:27001767,20256630 +k3765,219:30390087,20256630:2192943 +k3765,219:32583029,20256630:2192942 +) +(3765,220:20753781,21135148:11829248,530548,141066 +h3765,219:20753781,21135148:0,0,0 +r3765,250:20753781,21135148:0,671614,141066 +g3765,219:22064501,21135148 +g3765,219:22064501,21135148 +g3765,219:27831652,21135148 +k3765,220:30805029,21135148:1778000 +k3765,220:32583029,21135148:1778000 +) +(3765,221:20753781,22013665:11829248,530548,141066 +h3765,220:20753781,22013665:0,0,0 +r3765,250:20753781,22013665:0,671614,141066 +g3765,220:22064501,22013665 +g3765,220:22064501,22013665 +g3765,220:26586824,22013665 +k3765,221:30182615,22013665:2400414 +k3765,221:32583029,22013665:2400414 +) +(3765,222:20753781,22892183:11829248,530548,141066 +h3765,221:20753781,22892183:0,0,0 +r3765,250:20753781,22892183:0,671614,141066 +g3765,221:22064501,22892183 +g3765,221:22064501,22892183 +g3765,221:28246594,22892183 +g3765,221:29814870,22892183 +k3765,222:31796638,22892183:786391 +k3765,222:32583029,22892183:786391 +) +(3765,223:20753781,23770701:11829248,538806,141066 +h3765,222:20753781,23770701:0,0,0 +r3765,250:20753781,23770701:0,679872,141066 +g3765,222:22064501,23770701 +g3765,222:22064501,23770701 +g3765,222:26171882,23770701 +k3765,223:29975144,23770701:2607885 +k3765,223:32583029,23770701:2607885 +) +(3765,224:20753781,24649219:11829248,538806,141066 +h3765,223:20753781,24649219:0,0,0 +r3765,250:20753781,24649219:0,679872,141066 +g3765,223:22064501,24649219 +g3765,223:22064501,24649219 +g3765,223:28661536,24649219 +k3765,224:31219971,24649219:1363058 +k3765,224:32583029,24649219:1363058 +) +(3765,225:20753781,25527736:11829248,538806,141066 +h3765,224:20753781,25527736:0,0,0 +r3765,250:20753781,25527736:0,679872,141066 +g3765,224:22064501,25527736 +g3765,224:22064501,25527736 +g3765,224:28246594,25527736 +k3765,225:31012500,25527736:1570529 +k3765,225:32583029,25527736:1570529 +) +(3765,226:20753781,26406254:11829248,530548,141066 +h3765,225:20753781,26406254:0,0,0 +r3765,250:20753781,26406254:0,671614,141066 +g3765,225:22064501,26406254 +g3765,225:22064501,26406254 +g3765,225:27831652,26406254 +g3765,225:29399928,26406254 +g3765,225:30968204,26406254 +k3765,226:32373305,26406254:209724 +k3765,226:32583029,26406254:209724 +) +(3765,227:20753781,27284772:11829248,530548,141066 +h3765,226:20753781,27284772:0,0,0 +r3765,250:20753781,27284772:0,671614,141066 +g3765,226:22064501,27284772 +g3765,226:22064501,27284772 +g3765,226:27416709,27284772 +k3765,227:30597558,27284772:1985472 +k3765,227:32583029,27284772:1985471 +) +(3765,228:20753781,28163290:11829248,530548,141066 +h3765,227:20753781,28163290:0,0,0 +r3765,250:20753781,28163290:0,671614,141066 +g3765,227:22064501,28163290 +g3765,227:22064501,28163290 +g3765,227:27001767,28163290 +k3765,228:30390087,28163290:2192943 +k3765,228:32583029,28163290:2192942 +) +(3765,229:20753781,29041807:11829248,530548,141066 +h3765,228:20753781,29041807:0,0,0 +r3765,250:20753781,29041807:0,671614,141066 +g3765,228:22064501,29041807 +g3765,228:22064501,29041807 +g3765,228:27416709,29041807 +k3765,229:31359086,29041807:1223944 +k3765,229:32583029,29041807:1223943 +) +(3765,230:20753781,29920325:11829248,530548,141066 +h3765,229:20753781,29920325:0,0,0 +r3765,250:20753781,29920325:0,671614,141066 +g3765,229:22064501,29920325 +g3765,229:22064501,29920325 +g3765,229:29076479,29920325 +k3765,230:31427443,29920325:1155587 +k3765,230:32583029,29920325:1155586 +) +(3765,231:20753781,30798843:11829248,530548,141066 +h3765,230:20753781,30798843:0,0,0 +r3765,250:20753781,30798843:0,671614,141066 +g3765,230:22064501,30798843 +g3765,230:22064501,30798843 +g3765,230:27001767,30798843 +g3765,230:30093100,30798843 +k3765,230:32583029,30798843:1120882 +) +(3765,231:23375221,31663923:9207808,485622,102891 +g3765,230:24943497,31663923 +k3765,231:29360952,31663923:3222078 +k3765,231:32583029,31663923:3222077 +) +(3765,232:20753781,32542441:11829248,530548,141066 +h3765,231:20753781,32542441:0,0,0 +r3765,250:20753781,32542441:0,671614,141066 +g3765,231:22064501,32542441 +g3765,231:22064501,32542441 +g3765,231:28661536,32542441 +k3765,232:31219971,32542441:1363058 +k3765,232:32583029,32542441:1363058 +) +(3765,233:20753781,33420958:11829248,530548,141066 +h3765,232:20753781,33420958:0,0,0 +r3765,250:20753781,33420958:0,671614,141066 +g3765,232:22064501,33420958 +g3765,232:22064501,33420958 +g3765,232:29491421,33420958 +k3765,233:31634914,33420958:948116 +k3765,233:32583029,33420958:948115 +) +(3765,234:20753781,34299476:11829248,530548,141066 +h3765,233:20753781,34299476:0,0,0 +r3765,250:20753781,34299476:0,671614,141066 +g3765,233:22064501,34299476 +g3765,233:22064501,34299476 +g3765,233:27001767,34299476 +g3765,233:28570043,34299476 +k3765,234:31174225,34299476:1408805 +k3765,234:32583029,34299476:1408804 +) +(3765,235:20753781,35177994:11829248,530548,141066 +h3765,234:20753781,35177994:0,0,0 +r3765,250:20753781,35177994:0,671614,141066 +g3765,234:22064501,35177994 +g3765,234:22064501,35177994 +g3765,234:27831652,35177994 +k3765,235:30805029,35177994:1778000 +k3765,235:32583029,35177994:1778000 +) +(3765,236:20753781,36056512:11829248,530548,141066 +h3765,235:20753781,36056512:0,0,0 +r3765,250:20753781,36056512:0,671614,141066 +g3765,235:22064501,36056512 +g3765,235:22064501,36056512 +g3765,235:27416709,36056512 +g3765,235:28984985,36056512 +g3765,235:30553261,36056512 +k3765,236:32165834,36056512:417196 +k3765,236:32583029,36056512:417195 +) +(3765,237:20753781,36935029:11829248,530548,141066 +h3765,236:20753781,36935029:0,0,0 +r3765,250:20753781,36935029:0,671614,141066 +g3765,236:22064501,36935029 +g3765,236:22064501,36935029 +g3765,236:24512112,36935029 +g3765,236:26080388,36935029 +k3765,237:29929397,36935029:2653632 +k3765,237:32583029,36935029:2653632 +) +(3765,238:20753781,37813547:11829248,530548,141066 +h3765,237:20753781,37813547:0,0,0 +r3765,250:20753781,37813547:0,671614,141066 +g3765,237:22064501,37813547 +g3765,237:22064501,37813547 +g3765,237:27831652,37813547 +k3765,238:30805029,37813547:1778000 +k3765,238:32583029,37813547:1778000 +) +(3765,239:20753781,38692065:11829248,530548,141066 +h3765,238:20753781,38692065:0,0,0 +r3765,250:20753781,38692065:0,671614,141066 +g3765,238:22064501,38692065 +g3765,238:22064501,38692065 +g3765,238:26171882,38692065 +g3765,238:27740158,38692065 +k3765,239:30759282,38692065:1823747 +k3765,239:32583029,38692065:1823747 +) +(3765,240:20753781,39570583:11829248,530548,141066 +h3765,239:20753781,39570583:0,0,0 +r3765,250:20753781,39570583:0,671614,141066 +g3765,239:22064501,39570583 +g3765,239:22064501,39570583 +g3765,239:27416709,39570583 +k3765,240:30597558,39570583:1985472 +k3765,240:32583029,39570583:1985471 +) +(3765,241:20753781,40449100:11829248,530548,141066 +h3765,240:20753781,40449100:0,0,0 +r3765,250:20753781,40449100:0,671614,141066 +g3765,240:22064501,40449100 +g3765,240:22064501,40449100 +g3765,240:25341997,40449100 +k3765,241:29560202,40449100:3022828 +k3765,241:32583029,40449100:3022827 +) +(3765,242:20753781,41327618:11829248,530548,141066 +h3765,241:20753781,41327618:0,0,0 +r3765,250:20753781,41327618:0,671614,141066 +g3765,241:22064501,41327618 +g3765,241:22064501,41327618 +g3765,241:25756939,41327618 +g3765,241:27325215,41327618 +g3765,241:28893491,41327618 +g3765,241:30461767,41327618 +k3765,241:32583029,41327618:752215 +) +(3765,242:23375221,42192698:9207808,485622,11795 +k3765,242:28576814,42192698:4006216 +k3765,242:32583029,42192698:4006215 +) +(3765,243:20753781,43071216:11829248,530548,141066 +h3765,242:20753781,43071216:0,0,0 +r3765,250:20753781,43071216:0,671614,141066 +g3765,242:22064501,43071216 +g3765,242:22064501,43071216 +g3765,242:27416709,43071216 +k3765,243:30597558,43071216:1985472 +k3765,243:32583029,43071216:1985471 +) +(3765,244:20753781,43949734:11829248,530548,141066 +h3765,243:20753781,43949734:0,0,0 +r3765,250:20753781,43949734:0,671614,141066 +g3765,243:22064501,43949734 +g3765,243:22064501,43949734 +g3765,243:26171882,43949734 +g3765,243:27740158,43949734 +k3765,244:30759282,43949734:1823747 +k3765,244:32583029,43949734:1823747 +) +(3765,245:20753781,44828251:11829248,530548,141066 +h3765,244:20753781,44828251:0,0,0 +r3765,250:20753781,44828251:0,671614,141066 +g3765,244:22064501,44828251 +g3765,244:22064501,44828251 +g3765,244:24097170,44828251 +k3765,245:28738559,44828251:3844471 +k3765,245:32583029,44828251:3844470 +) +(3765,246:20753781,45706769:11829248,530548,141066 +h3765,245:20753781,45706769:0,0,0 +r3765,250:20753781,45706769:0,671614,141066 +g3765,245:22064501,45706769 +g3765,245:22064501,45706769 +g3765,245:24512112,45706769 +k3765,246:29145259,45706769:3437770 +k3765,246:32583029,45706769:3437770 +) +] +(3765,250:32583029,45706769:0,355205,126483 +h3765,250:32583029,45706769:420741,355205,126483 +k3765,250:32583029,45706769:-420741 +) +) +] +(3765,250:32583029,45706769:0,0,0 +g3765,250:32583029,45706769 +) +) +] +(3765,250:6630773,47279633:25952256,0,0 +h3765,250:6630773,47279633:25952256,0,0 +) +] +(3765,250:4262630,4025873:0,0,0 +[3765,250:-473656,4025873:0,0,0 +(3765,250:-473656,-710413:0,0,0 +(3765,250:-473656,-710413:0,0,0 +g3765,250:-473656,-710413 +) +g3765,250:-473656,-710413 +) +] +) +] +!29995 +}434 !12 -{453 -[3724,351:4262630,47279633:28320399,43253760,0 -(3724,351:4262630,4025873:0,0,0 -[3724,351:-473656,4025873:0,0,0 -(3724,351:-473656,-710413:0,0,0 -(3724,351:-473656,-644877:0,0,0 -k3724,351:-473656,-644877:-65536 +{435 +[3765,338:4262630,47279633:28320399,43253760,0 +(3765,338:4262630,4025873:0,0,0 +[3765,338:-473656,4025873:0,0,0 +(3765,338:-473656,-710413:0,0,0 +(3765,338:-473656,-644877:0,0,0 +k3765,338:-473656,-644877:-65536 ) -(3724,351:-473656,4736287:0,0,0 -k3724,351:-473656,4736287:5209943 +(3765,338:-473656,4736287:0,0,0 +k3765,338:-473656,4736287:5209943 ) -g3724,351:-473656,-710413 +g3765,338:-473656,-710413 ) ] ) -[3724,351:6630773,47279633:25952256,43253760,0 -[3724,351:6630773,4812305:25952256,786432,0 -(3724,351:6630773,4812305:25952256,513147,134348 -(3724,351:6630773,4812305:25952256,513147,134348 -g3724,351:3078558,4812305 -[3724,351:3078558,4812305:0,0,0 -(3724,351:3078558,2439708:0,1703936,0 -k3724,351:1358238,2439708:-1720320 -(3724,1:1358238,2439708:1720320,1703936,0 -(3724,1:1358238,2439708:1179648,16384,0 -r3724,351:2537886,2439708:1179648,16384,0 +[3765,338:6630773,47279633:25952256,43253760,0 +[3765,338:6630773,4812305:25952256,786432,0 +(3765,338:6630773,4812305:25952256,513147,134348 +(3765,338:6630773,4812305:25952256,513147,134348 +g3765,338:3078558,4812305 +[3765,338:3078558,4812305:0,0,0 +(3765,338:3078558,2439708:0,1703936,0 +k3765,338:1358238,2439708:-1720320 +(3765,1:1358238,2439708:1720320,1703936,0 +(3765,1:1358238,2439708:1179648,16384,0 +r3765,338:2537886,2439708:1179648,16384,0 ) -g3724,1:3062174,2439708 -(3724,1:3062174,2439708:16384,1703936,0 -[3724,1:3062174,2439708:25952256,1703936,0 -(3724,1:3062174,1915420:25952256,1179648,0 -(3724,1:3062174,1915420:16384,1179648,0 -r3724,351:3078558,1915420:16384,1179648,0 +g3765,1:3062174,2439708 +(3765,1:3062174,2439708:16384,1703936,0 +[3765,1:3062174,2439708:25952256,1703936,0 +(3765,1:3062174,1915420:25952256,1179648,0 +(3765,1:3062174,1915420:16384,1179648,0 +r3765,338:3078558,1915420:16384,1179648,0 ) -k3724,1:29014430,1915420:25935872 -g3724,1:29014430,1915420 +k3765,1:29014430,1915420:25935872 +g3765,1:29014430,1915420 ) ] ) ) ) ] -[3724,351:3078558,4812305:0,0,0 -(3724,351:3078558,2439708:0,1703936,0 -g3724,351:29030814,2439708 -g3724,351:36135244,2439708 -(3724,1:36135244,2439708:1720320,1703936,0 -(3724,1:36135244,2439708:16384,1703936,0 -[3724,1:36135244,2439708:25952256,1703936,0 -(3724,1:36135244,1915420:25952256,1179648,0 -(3724,1:36135244,1915420:16384,1179648,0 -r3724,351:36151628,1915420:16384,1179648,0 +[3765,338:3078558,4812305:0,0,0 +(3765,338:3078558,2439708:0,1703936,0 +g3765,338:29030814,2439708 +g3765,338:36135244,2439708 +(3765,1:36135244,2439708:1720320,1703936,0 +(3765,1:36135244,2439708:16384,1703936,0 +[3765,1:36135244,2439708:25952256,1703936,0 +(3765,1:36135244,1915420:25952256,1179648,0 +(3765,1:36135244,1915420:16384,1179648,0 +r3765,338:36151628,1915420:16384,1179648,0 ) -k3724,1:62087500,1915420:25935872 -g3724,1:62087500,1915420 +k3765,1:62087500,1915420:25935872 +g3765,1:62087500,1915420 ) ] ) -g3724,1:36675916,2439708 -(3724,1:36675916,2439708:1179648,16384,0 -r3724,351:37855564,2439708:1179648,16384,0 +g3765,1:36675916,2439708 +(3765,1:36675916,2439708:1179648,16384,0 +r3765,338:37855564,2439708:1179648,16384,0 ) ) -k3724,351:3078556,2439708:-34777008 +k3765,338:3078556,2439708:-34777008 ) ] -[3724,351:3078558,4812305:0,0,0 -(3724,351:3078558,49800853:0,16384,2228224 -k3724,351:1358238,49800853:-1720320 -(3724,1:1358238,49800853:1720320,16384,2228224 -(3724,1:1358238,49800853:1179648,16384,0 -r3724,351:2537886,49800853:1179648,16384,0 +[3765,338:3078558,4812305:0,0,0 +(3765,338:3078558,49800853:0,16384,2228224 +k3765,338:1358238,49800853:-1720320 +(3765,1:1358238,49800853:1720320,16384,2228224 +(3765,1:1358238,49800853:1179648,16384,0 +r3765,338:2537886,49800853:1179648,16384,0 ) -g3724,1:3062174,49800853 -(3724,1:3062174,52029077:16384,1703936,0 -[3724,1:3062174,52029077:25952256,1703936,0 -(3724,1:3062174,51504789:25952256,1179648,0 -(3724,1:3062174,51504789:16384,1179648,0 -r3724,351:3078558,51504789:16384,1179648,0 +g3765,1:3062174,49800853 +(3765,1:3062174,52029077:16384,1703936,0 +[3765,1:3062174,52029077:25952256,1703936,0 +(3765,1:3062174,51504789:25952256,1179648,0 +(3765,1:3062174,51504789:16384,1179648,0 +r3765,338:3078558,51504789:16384,1179648,0 ) -k3724,1:29014430,51504789:25935872 -g3724,1:29014430,51504789 +k3765,1:29014430,51504789:25935872 +g3765,1:29014430,51504789 ) ] ) ) ) ] -[3724,351:3078558,4812305:0,0,0 -(3724,351:3078558,49800853:0,16384,2228224 -g3724,351:29030814,49800853 -g3724,351:36135244,49800853 -(3724,1:36135244,49800853:1720320,16384,2228224 -(3724,1:36135244,52029077:16384,1703936,0 -[3724,1:36135244,52029077:25952256,1703936,0 -(3724,1:36135244,51504789:25952256,1179648,0 -(3724,1:36135244,51504789:16384,1179648,0 -r3724,351:36151628,51504789:16384,1179648,0 -) -k3724,1:62087500,51504789:25935872 -g3724,1:62087500,51504789 -) -] -) -g3724,1:36675916,49800853 -(3724,1:36675916,49800853:1179648,16384,0 -r3724,351:37855564,49800853:1179648,16384,0 -) -) -k3724,351:3078556,49800853:-34777008 -) -] -g3724,351:6630773,4812305 -k3724,351:23083588,4812305:15257438 -g3724,351:24981510,4812305 -g3724,351:25796777,4812305 -g3724,351:26410194,4812305 -g3724,351:28753761,4812305 -g3724,351:29709275,4812305 -) -) -] -[3724,351:6630773,45706769:25952256,40108032,0 -(3724,351:6630773,45706769:25952256,40108032,0 -(3724,351:6630773,45706769:0,0,0 -g3724,351:6630773,45706769 -) -[3724,351:6630773,45706769:25952256,40108032,0 -(3724,351:6630773,45706769:25952256,40108032,126483 -[3724,351:6630773,45706769:11829248,40108032,102891 -(3724,257:6630773,6254097:11829248,505283,102891 -h3724,256:6630773,6254097:0,0,0 -r3724,351:6630773,6254097:0,608174,102891 -g3724,256:7941493,6254097 -g3724,256:7941493,6254097 -g3724,256:13451759,6254097 -k3724,257:16553579,6254097:1906443 -k3724,257:18460021,6254097:1906442 -) -(3724,258:6630773,7112123:11829248,505283,126483 -h3724,257:6630773,7112123:0,0,0 -r3724,351:6630773,7112123:0,631766,126483 -g3724,257:7941493,7112123 -g3724,257:7941493,7112123 -g3724,257:12266213,7112123 -k3724,258:15761576,7112123:2698445 -k3724,258:18460021,7112123:2698445 -) -(3724,259:6630773,7970150:11829248,505283,102891 -h3724,258:6630773,7970150:0,0,0 -r3724,351:6630773,7970150:0,608174,102891 -g3724,258:7941493,7970150 -g3724,258:7941493,7970150 -g3724,258:13846941,7970150 -k3724,259:16551940,7970150:1908081 -k3724,259:18460021,7970150:1908081 -) -(3724,260:6630773,8828176:11829248,505283,102891 -h3724,259:6630773,8828176:0,0,0 -r3724,351:6630773,8828176:0,608174,102891 -g3724,259:7941493,8828176 -g3724,259:7941493,8828176 -g3724,259:13056577,8828176 -k3724,260:16156758,8828176:2303263 -k3724,260:18460021,8828176:2303263 -) -(3724,261:6630773,9686202:11829248,505283,126483 -h3724,260:6630773,9686202:0,0,0 -r3724,351:6630773,9686202:0,631766,126483 -g3724,260:7941493,9686202 -g3724,260:7941493,9686202 -g3724,260:14637306,9686202 -g3724,260:16205582,9686202 -k3724,261:17930490,9686202:529531 -k3724,261:18460021,9686202:529531 -) -(3724,262:6630773,10544229:11829248,505283,134348 -h3724,261:6630773,10544229:0,0,0 -r3724,351:6630773,10544229:0,639631,134348 -g3724,261:7941493,10544229 -g3724,261:7941493,10544229 -g3724,261:13056577,10544229 -k3724,262:16156758,10544229:2303263 -k3724,262:18460021,10544229:2303263 -) -(3724,263:6630773,11402255:11829248,505283,102891 -h3724,262:6630773,11402255:0,0,0 -r3724,351:6630773,11402255:0,608174,102891 -g3724,262:7941493,11402255 -g3724,262:7941493,11402255 -g3724,262:12661395,11402255 -k3724,263:15959167,11402255:2500854 -k3724,263:18460021,11402255:2500854 -) -(3724,264:6630773,12260281:11829248,505283,102891 -h3724,263:6630773,12260281:0,0,0 -r3724,351:6630773,12260281:0,608174,102891 -g3724,263:7941493,12260281 -g3724,263:7941493,12260281 -g3724,263:11080667,12260281 -g3724,263:12250484,12260281 -k3724,264:15753712,12260281:2706310 -k3724,264:18460021,12260281:2706309 -) -(3724,265:6630773,13118308:11829248,505283,102891 -h3724,264:6630773,13118308:0,0,0 -r3724,351:6630773,13118308:0,608174,102891 -g3724,264:7941493,13118308 -g3724,264:7941493,13118308 -g3724,264:13056577,13118308 -g3724,264:14226394,13118308 -k3724,265:16741667,13118308:1718355 -k3724,265:18460021,13118308:1718354 -) -(3724,266:6630773,13976334:11829248,505283,102891 -h3724,265:6630773,13976334:0,0,0 -r3724,351:6630773,13976334:0,608174,102891 -g3724,265:7941493,13976334 -g3724,265:7941493,13976334 -g3724,265:12661395,13976334 -k3724,266:16158397,13976334:2301625 -k3724,266:18460021,13976334:2301624 -) -(3724,267:6630773,14834360:11829248,505283,102891 -h3724,266:6630773,14834360:0,0,0 -r3724,351:6630773,14834360:0,608174,102891 -g3724,266:7941493,14834360 -g3724,266:7941493,14834360 -g3724,266:11475849,14834360 -k3724,267:15565624,14834360:2894398 -k3724,267:18460021,14834360:2894397 -) -(3724,268:6630773,15692386:11829248,505283,126483 -h3724,267:6630773,15692386:0,0,0 -r3724,351:6630773,15692386:0,631766,126483 -g3724,267:7941493,15692386 -g3724,267:7941493,15692386 -g3724,267:13846941,15692386 -k3724,268:16751170,15692386:1708852 -k3724,268:18460021,15692386:1708851 -) -(3724,269:6630773,16550413:11829248,505283,102891 -h3724,268:6630773,16550413:0,0,0 -r3724,351:6630773,16550413:0,608174,102891 -g3724,268:7941493,16550413 -g3724,268:7941493,16550413 -g3724,268:13056577,16550413 -k3724,269:16355988,16550413:2104034 -k3724,269:18460021,16550413:2104033 -) -(3724,270:6630773,17408439:11829248,505283,102891 -h3724,269:6630773,17408439:0,0,0 -r3724,351:6630773,17408439:0,608174,102891 -g3724,269:7941493,17408439 -g3724,269:7941493,17408439 -g3724,269:15427670,17408439 -k3724,270:17541534,17408439:918487 -k3724,270:18460021,17408439:918487 -) -(3724,271:6630773,18266465:11829248,505283,102891 -h3724,270:6630773,18266465:0,0,0 -r3724,351:6630773,18266465:0,608174,102891 -g3724,270:7941493,18266465 -g3724,270:7941493,18266465 -g3724,270:13056577,18266465 -k3724,271:16355988,18266465:2104034 -k3724,271:18460021,18266465:2104033 -) -(3724,272:6630773,19124492:11829248,505283,102891 -h3724,271:6630773,19124492:0,0,0 -r3724,351:6630773,19124492:0,608174,102891 -g3724,271:7941493,19124492 -g3724,271:7941493,19124492 -g3724,271:10685485,19124492 -g3724,271:12253761,19124492 -k3724,272:15954580,19124492:2505442 -k3724,272:18460021,19124492:2505441 -) -(3724,273:6630773,19982518:11829248,513147,134348 -h3724,272:6630773,19982518:0,0,0 -r3724,351:6630773,19982518:0,647495,134348 -g3724,272:7941493,19982518 -g3724,272:7941493,19982518 -g3724,272:12661395,19982518 -k3724,273:16158397,19982518:2301625 -k3724,273:18460021,19982518:2301624 -) -(3724,274:6630773,20840544:11829248,505283,134348 -h3724,273:6630773,20840544:0,0,0 -r3724,351:6630773,20840544:0,639631,134348 -g3724,273:7941493,20840544 -g3724,273:7941493,20840544 -g3724,273:11475849,20840544 -g3724,273:12645666,20840544 -g3724,273:13815483,20840544 -g3724,273:14985300,20840544 -g3724,273:16553576,20840544 -k3724,274:18104487,20840544:355534 -k3724,274:18460021,20840544:355534 -) -(3724,275:6630773,21698571:11829248,505283,102891 -h3724,274:6630773,21698571:0,0,0 -r3724,351:6630773,21698571:0,608174,102891 -g3724,274:7941493,21698571 -g3724,274:7941493,21698571 -g3724,274:11475849,21698571 -g3724,274:12645666,21698571 -g3724,274:13815483,21698571 -k3724,275:16735441,21698571:1724581 -k3724,275:18460021,21698571:1724580 -) -(3724,276:6630773,22556597:11829248,505283,102891 -h3724,275:6630773,22556597:0,0,0 -r3724,351:6630773,22556597:0,608174,102891 -g3724,275:7941493,22556597 -g3724,275:7941493,22556597 -g3724,275:12266213,22556597 -k3724,276:15960806,22556597:2499216 -k3724,276:18460021,22556597:2499215 -) -(3724,277:6630773,23414623:11829248,505283,126483 -h3724,276:6630773,23414623:0,0,0 -r3724,351:6630773,23414623:0,631766,126483 -g3724,276:7941493,23414623 -g3724,276:7941493,23414623 -g3724,276:11080667,23414623 -k3724,277:15368033,23414623:3091989 -k3724,277:18460021,23414623:3091988 -) -(3724,278:6630773,24272650:11829248,505283,126483 -h3724,277:6630773,24272650:0,0,0 -r3724,351:6630773,24272650:0,631766,126483 -g3724,277:7941493,24272650 -g3724,277:7941493,24272650 -g3724,277:11871031,24272650 -g3724,277:13439307,24272650 -g3724,277:15007583,24272650 -k3724,278:17331491,24272650:1128531 -k3724,278:18460021,24272650:1128530 -) -(3724,279:6630773,25130676:11829248,505283,102891 -h3724,278:6630773,25130676:0,0,0 -r3724,351:6630773,25130676:0,608174,102891 -g3724,278:7941493,25130676 -g3724,278:7941493,25130676 -g3724,278:10685485,25130676 -g3724,278:11855302,25130676 -k3724,279:15755350,25130676:2704671 -k3724,279:18460021,25130676:2704671 -) -(3724,280:6630773,25988702:11829248,505283,102891 -h3724,279:6630773,25988702:0,0,0 -r3724,351:6630773,25988702:0,608174,102891 -g3724,279:7941493,25988702 -g3724,279:7941493,25988702 -g3724,279:12661395,25988702 -k3724,280:16158397,25988702:2301625 -k3724,280:18460021,25988702:2301624 -) -(3724,281:6630773,26846728:11829248,513147,102891 -h3724,280:6630773,26846728:0,0,0 -r3724,351:6630773,26846728:0,616038,102891 -g3724,280:7941493,26846728 -g3724,280:7941493,26846728 -g3724,280:13056577,26846728 -k3724,281:16355988,26846728:2104034 -k3724,281:18460021,26846728:2104033 -) -(3724,282:6630773,27704755:11829248,505283,102891 -h3724,281:6630773,27704755:0,0,0 -r3724,351:6630773,27704755:0,608174,102891 -g3724,281:7941493,27704755 -g3724,281:7941493,27704755 -g3724,281:9895120,27704755 -g3724,281:11463396,27704755 -g3724,281:13031672,27704755 -g3724,281:14599948,27704755 -g3724,281:16168224,27704755 -k3724,281:18460021,27704755:922750 -) -(3724,282:9252213,28546243:9207808,485622,102891 -g3724,281:10820489,28546243 -g3724,281:12388765,28546243 -k3724,282:16022082,28546243:2437940 -k3724,282:18460021,28546243:2437939 -) -(3724,283:6630773,29404269:11829248,505283,102891 -h3724,282:6630773,29404269:0,0,0 -r3724,351:6630773,29404269:0,608174,102891 -g3724,282:7941493,29404269 -g3724,282:7941493,29404269 -g3724,282:10685485,29404269 -k3724,283:15170442,29404269:3289580 -k3724,283:18460021,29404269:3289579 -) -(3724,284:6630773,30262295:11829248,505283,102891 -h3724,283:6630773,30262295:0,0,0 -r3724,351:6630773,30262295:0,608174,102891 -g3724,283:7941493,30262295 -g3724,283:7941493,30262295 -g3724,283:10290302,30262295 -k3724,284:14972850,30262295:3487171 -k3724,284:18460021,30262295:3487171 -) -(3724,285:6630773,31120322:11829248,505283,134348 -h3724,284:6630773,31120322:0,0,0 -r3724,351:6630773,31120322:0,639631,134348 -g3724,284:7941493,31120322 -g3724,284:7941493,31120322 -g3724,284:10290302,31120322 -g3724,284:11460119,31120322 -k3724,285:15557759,31120322:2902263 -k3724,285:18460021,31120322:2902262 -) -(3724,286:6630773,31978348:11829248,505283,134348 -h3724,285:6630773,31978348:0,0,0 -r3724,351:6630773,31978348:0,639631,134348 -g3724,285:7941493,31978348 -g3724,285:7941493,31978348 -g3724,285:11080667,31978348 -k3724,286:15168803,31978348:3291218 -k3724,286:18460021,31978348:3291218 -) -(3724,287:6630773,32836374:11829248,505283,134348 -h3724,286:6630773,32836374:0,0,0 -r3724,351:6630773,32836374:0,639631,134348 -g3724,286:7941493,32836374 -g3724,286:7941493,32836374 -g3724,286:10685485,32836374 -k3724,287:14971212,32836374:3488809 -k3724,287:18460021,32836374:3488809 -) -(3724,288:6630773,33694401:11829248,505283,102891 -h3724,287:6630773,33694401:0,0,0 -r3724,351:6630773,33694401:0,608174,102891 -g3724,287:7941493,33694401 -g3724,287:7941493,33694401 -g3724,287:9895120,33694401 -g3724,287:11064937,33694401 -k3724,288:15360168,33694401:3099854 -k3724,288:18460021,33694401:3099853 -) -(3724,289:6630773,34552427:11829248,505283,102891 -h3724,288:6630773,34552427:0,0,0 -r3724,351:6630773,34552427:0,608174,102891 -g3724,288:7941493,34552427 -g3724,288:7941493,34552427 -g3724,288:10290302,34552427 -k3724,289:14972850,34552427:3487171 -k3724,289:18460021,34552427:3487171 -) -(3724,290:6630773,35410453:11829248,505283,102891 -h3724,289:6630773,35410453:0,0,0 -r3724,351:6630773,35410453:0,608174,102891 -g3724,289:7941493,35410453 -g3724,289:7941493,35410453 -g3724,289:11475849,35410453 -k3724,290:15565624,35410453:2894398 -k3724,290:18460021,35410453:2894397 -) -(3724,291:6630773,36268480:11829248,505283,102891 -h3724,290:6630773,36268480:0,0,0 -r3724,351:6630773,36268480:0,608174,102891 -g3724,290:7941493,36268480 -g3724,290:7941493,36268480 -g3724,290:11080667,36268480 -k3724,291:15168803,36268480:3291218 -k3724,291:18460021,36268480:3291218 -) -(3724,292:6630773,37126506:11829248,505283,102891 -h3724,291:6630773,37126506:0,0,0 -r3724,351:6630773,37126506:0,608174,102891 -g3724,291:7941493,37126506 -g3724,291:7941493,37126506 -g3724,291:11871031,37126506 -k3724,292:15763215,37126506:2696807 -k3724,292:18460021,37126506:2696806 -) -(3724,293:6630773,37984532:11829248,505283,102891 -h3724,292:6630773,37984532:0,0,0 -r3724,351:6630773,37984532:0,608174,102891 -g3724,292:7941493,37984532 -g3724,292:7941493,37984532 -g3724,292:11475849,37984532 -g3724,292:12645666,37984532 -k3724,293:16150532,37984532:2309489 -k3724,293:18460021,37984532:2309489 -) -(3724,294:6630773,38842559:11829248,505283,102891 -h3724,293:6630773,38842559:0,0,0 -r3724,351:6630773,38842559:0,608174,102891 -g3724,293:7941493,38842559 -g3724,293:7941493,38842559 -g3724,293:10290302,38842559 -g3724,293:11858578,38842559 -k3724,294:15756988,38842559:2703033 -k3724,294:18460021,38842559:2703033 -) -(3724,295:6630773,39700585:11829248,505283,102891 -h3724,294:6630773,39700585:0,0,0 -r3724,351:6630773,39700585:0,608174,102891 -g3724,294:7941493,39700585 -g3724,294:7941493,39700585 -g3724,294:10685485,39700585 -g3724,294:12253761,39700585 -g3724,294:13822037,39700585 -k3724,295:16738718,39700585:1721304 -k3724,295:18460021,39700585:1721303 -) -(3724,296:6630773,40558611:11829248,505283,102891 -h3724,295:6630773,40558611:0,0,0 -r3724,351:6630773,40558611:0,608174,102891 -g3724,295:7941493,40558611 -g3724,295:7941493,40558611 -g3724,295:11475849,40558611 -k3724,296:15565624,40558611:2894398 -k3724,296:18460021,40558611:2894397 -) -(3724,297:6630773,41416637:11829248,505283,102891 -h3724,296:6630773,41416637:0,0,0 -r3724,351:6630773,41416637:0,608174,102891 -g3724,296:7941493,41416637 -g3724,296:7941493,41416637 -g3724,296:11871031,41416637 -k3724,297:15763215,41416637:2696807 -k3724,297:18460021,41416637:2696806 -) -(3724,298:6630773,42274664:11829248,505283,134348 -h3724,297:6630773,42274664:0,0,0 -r3724,351:6630773,42274664:0,639631,134348 -g3724,297:7941493,42274664 -g3724,297:7941493,42274664 -g3724,297:10685485,42274664 -k3724,298:15170442,42274664:3289580 -k3724,298:18460021,42274664:3289579 -) -(3724,299:6630773,43132690:11829248,505283,102891 -h3724,298:6630773,43132690:0,0,0 -r3724,351:6630773,43132690:0,608174,102891 -g3724,298:7941493,43132690 -g3724,298:7941493,43132690 -g3724,298:10290302,43132690 -g3724,298:11858578,43132690 -k3724,299:15756988,43132690:2703033 -k3724,299:18460021,43132690:2703033 -) -(3724,300:6630773,43990716:11829248,505283,102891 -h3724,299:6630773,43990716:0,0,0 -r3724,351:6630773,43990716:0,608174,102891 -g3724,299:7941493,43990716 -g3724,299:7941493,43990716 -g3724,299:10685485,43990716 -g3724,299:12253761,43990716 -k3724,300:15954580,43990716:2505442 -k3724,300:18460021,43990716:2505441 -) -(3724,301:6630773,44848743:11829248,513147,102891 -h3724,300:6630773,44848743:0,0,0 -r3724,351:6630773,44848743:0,616038,102891 -g3724,300:7941493,44848743 -g3724,300:7941493,44848743 -g3724,300:13451759,44848743 -k3724,301:16553579,44848743:1906443 -k3724,301:18460021,44848743:1906442 -) -(3724,302:6630773,45706769:11829248,505283,102891 -h3724,301:6630773,45706769:0,0,0 -r3724,351:6630773,45706769:0,608174,102891 -g3724,301:7941493,45706769 -g3724,301:7941493,45706769 -g3724,301:13846941,45706769 -k3724,302:16751170,45706769:1708852 -k3724,302:18460021,45706769:1708851 -) -] -k3724,351:19606901,45706769:1146880 -r3724,351:19606901,45706769:0,40234515,126483 -k3724,351:20753781,45706769:1146880 -[3724,351:20753781,45706769:11829248,40108032,126483 -(3724,303:20753781,6254097:11829248,505283,102891 -h3724,302:20753781,6254097:0,0,0 -r3724,351:20753781,6254097:0,608174,102891 -g3724,302:22064501,6254097 -g3724,302:22064501,6254097 -g3724,302:25598857,6254097 -g3724,302:27167133,6254097 -k3724,303:30472770,6254097:2110260 -k3724,303:32583029,6254097:2110259 -) -(3724,304:20753781,7112893:11829248,505283,126483 -h3724,303:20753781,7112893:0,0,0 -r3724,351:20753781,7112893:0,631766,126483 -g3724,303:22064501,7112893 -g3724,303:22064501,7112893 -g3724,303:26389221,7112893 -k3724,304:30083814,7112893:2499216 -k3724,304:32583029,7112893:2499215 -) -(3724,305:20753781,7971688:11829248,505283,102891 -h3724,304:20753781,7971688:0,0,0 -r3724,351:20753781,7971688:0,608174,102891 -g3724,304:22064501,7971688 -g3724,304:22064501,7971688 -g3724,304:25203675,7971688 -g3724,304:26771951,7971688 -g3724,304:28340227,7971688 -k3724,305:31059317,7971688:1523713 -k3724,305:32583029,7971688:1523712 -) -(3724,306:20753781,8830484:11829248,505283,102891 -h3724,305:20753781,8830484:0,0,0 -r3724,351:20753781,8830484:0,608174,102891 -g3724,305:22064501,8830484 -g3724,305:22064501,8830484 -g3724,305:25994039,8830484 -g3724,305:27562315,8830484 -k3724,306:30670361,8830484:1912669 -k3724,306:32583029,8830484:1912668 -) -(3724,307:20753781,9689279:11829248,505283,126483 -h3724,306:20753781,9689279:0,0,0 -r3724,351:20753781,9689279:0,631766,126483 -g3724,306:22064501,9689279 -g3724,306:22064501,9689279 -g3724,306:25994039,9689279 -k3724,307:29886223,9689279:2696807 -k3724,307:32583029,9689279:2696806 -) -(3724,308:20753781,10548075:11829248,505283,102891 -h3724,307:20753781,10548075:0,0,0 -r3724,351:20753781,10548075:0,608174,102891 -g3724,307:22064501,10548075 -g3724,307:22064501,10548075 -g3724,307:25203675,10548075 -k3724,308:29291811,10548075:3291218 -k3724,308:32583029,10548075:3291218 -) -(3724,309:20753781,11406870:11829248,505283,102891 -h3724,308:20753781,11406870:0,0,0 -r3724,351:20753781,11406870:0,608174,102891 -g3724,308:22064501,11406870 -g3724,308:22064501,11406870 -g3724,308:24808493,11406870 -g3724,308:25978310,11406870 -k3724,309:29878358,11406870:2704671 -k3724,309:32583029,11406870:2704671 -) -(3724,310:20753781,12265666:11829248,505283,134348 -h3724,309:20753781,12265666:0,0,0 -r3724,351:20753781,12265666:0,639631,134348 -g3724,309:22064501,12265666 -g3724,309:22064501,12265666 -g3724,309:26784403,12265666 -k3724,310:30281405,12265666:2301625 -k3724,310:32583029,12265666:2301624 -) -(3724,311:20753781,13124461:11829248,505283,102891 -h3724,310:20753781,13124461:0,0,0 -r3724,351:20753781,13124461:0,608174,102891 -g3724,310:22064501,13124461 -g3724,310:22064501,13124461 -g3724,310:24018128,13124461 -k3724,311:28898267,13124461:3684762 -k3724,311:32583029,13124461:3684762 -) -(3724,312:20753781,13983257:11829248,505283,102891 -h3724,311:20753781,13983257:0,0,0 -r3724,351:20753781,13983257:0,608174,102891 -g3724,311:22064501,13983257 -g3724,311:22064501,13983257 -g3724,311:23622946,13983257 -k3724,312:28700676,13983257:3882353 -k3724,312:32583029,13983257:3882353 -) -(3724,313:20753781,14842052:11829248,505283,102891 -h3724,312:20753781,14842052:0,0,0 -r3724,351:20753781,14842052:0,608174,102891 -g3724,312:22064501,14842052 -g3724,312:22064501,14842052 -g3724,312:24413310,14842052 -g3724,312:25981586,14842052 -k3724,313:29879996,14842052:2703033 -k3724,313:32583029,14842052:2703033 -) -(3724,314:20753781,15700848:11829248,505283,102891 -h3724,313:20753781,15700848:0,0,0 -r3724,351:20753781,15700848:0,608174,102891 -g3724,313:22064501,15700848 -g3724,313:22064501,15700848 -g3724,313:24808493,15700848 -g3724,313:25978310,15700848 -k3724,314:29878358,15700848:2704671 -k3724,314:32583029,15700848:2704671 -) -(3724,315:20753781,16559643:11829248,505283,102891 -h3724,314:20753781,16559643:0,0,0 -r3724,351:20753781,16559643:0,608174,102891 -g3724,314:22064501,16559643 -g3724,314:22064501,16559643 -g3724,314:25994039,16559643 -g3724,314:27163856,16559643 -g3724,314:28333673,16559643 -k3724,315:30856810,16559643:1726219 -k3724,315:32583029,16559643:1726219 -) -(3724,316:20753781,17418439:11829248,505283,134348 -h3724,315:20753781,17418439:0,0,0 -r3724,351:20753781,17418439:0,639631,134348 -g3724,315:22064501,17418439 -g3724,315:22064501,17418439 -g3724,315:25994039,17418439 -k3724,316:29686993,17418439:2896036 -k3724,316:32583029,17418439:2896036 -) -(3724,317:20753781,18277234:11829248,505283,102891 -h3724,316:20753781,18277234:0,0,0 -r3724,351:20753781,18277234:0,608174,102891 -g3724,316:22064501,18277234 -g3724,316:22064501,18277234 -g3724,316:25994039,18277234 -k3724,317:29886223,18277234:2696807 -k3724,317:32583029,18277234:2696806 -) -(3724,318:20753781,19136030:11829248,505283,126483 -h3724,317:20753781,19136030:0,0,0 -r3724,351:20753781,19136030:0,631766,126483 -g3724,317:22064501,19136030 -g3724,317:22064501,19136030 -g3724,317:25994039,19136030 -k3724,318:29886223,19136030:2696807 -k3724,318:32583029,19136030:2696806 -) -(3724,319:20753781,19994826:11829248,505283,102891 -h3724,318:20753781,19994826:0,0,0 -r3724,351:20753781,19994826:0,608174,102891 -g3724,318:22064501,19994826 -g3724,318:22064501,19994826 -g3724,318:25203675,19994826 -g3724,318:26373492,19994826 -g3724,318:27543309,19994826 -g3724,318:29111585,19994826 -k3724,319:31444996,19994826:1138034 -k3724,319:32583029,19994826:1138033 -) -(3724,320:20753781,20853621:11829248,505283,102891 -h3724,319:20753781,20853621:0,0,0 -r3724,351:20753781,20853621:0,608174,102891 -g3724,319:22064501,20853621 -g3724,319:22064501,20853621 -g3724,319:25994039,20853621 -g3724,319:27163856,20853621 -k3724,320:30471131,20853621:2111898 -k3724,320:32583029,20853621:2111898 -) -(3724,321:20753781,21712417:11829248,505283,126483 -h3724,320:20753781,21712417:0,0,0 -r3724,351:20753781,21712417:0,631766,126483 -g3724,320:22064501,21712417 -g3724,320:22064501,21712417 -g3724,320:25203675,21712417 -g3724,320:26771951,21712417 -k3724,321:30275179,21712417:2307851 -k3724,321:32583029,21712417:2307850 -) -(3724,322:20753781,22571212:11829248,505283,126483 -h3724,321:20753781,22571212:0,0,0 -r3724,351:20753781,22571212:0,631766,126483 -g3724,321:22064501,22571212 -g3724,321:22064501,22571212 -g3724,321:25203675,22571212 -g3724,321:26373492,22571212 -g3724,321:27543309,22571212 -g3724,321:29111585,22571212 -g3724,321:30679861,22571212 -k3724,322:32229134,22571212:353896 -k3724,322:32583029,22571212:353895 -) -(3724,323:20753781,23430008:11829248,505283,126483 -h3724,322:20753781,23430008:0,0,0 -r3724,351:20753781,23430008:0,631766,126483 -g3724,322:22064501,23430008 -g3724,322:22064501,23430008 -g3724,322:25598857,23430008 -k3724,323:29688632,23430008:2894398 -k3724,323:32583029,23430008:2894397 -) -(3724,324:20753781,24288803:11829248,505283,126483 -h3724,323:20753781,24288803:0,0,0 -r3724,351:20753781,24288803:0,631766,126483 -g3724,323:22064501,24288803 -g3724,323:22064501,24288803 -g3724,323:25598857,24288803 -k3724,324:29688632,24288803:2894398 -k3724,324:32583029,24288803:2894397 -) -(3724,325:20753781,25147599:11829248,513147,126483 -h3724,324:20753781,25147599:0,0,0 -r3724,351:20753781,25147599:0,639630,126483 -g3724,324:22064501,25147599 -g3724,324:22064501,25147599 -g3724,324:24018128,25147599 -k3724,325:28898267,25147599:3684762 -k3724,325:32583029,25147599:3684762 -) -(3724,326:20753781,26006394:11829248,505283,134348 -h3724,325:20753781,26006394:0,0,0 -r3724,351:20753781,26006394:0,639631,134348 -g3724,325:22064501,26006394 -g3724,325:22064501,26006394 -g3724,325:27969949,26006394 -k3724,326:31635706,26006394:947324 -k3724,326:32583029,26006394:947323 -) -(3724,327:20753781,26865190:11829248,505283,126483 -h3724,326:20753781,26865190:0,0,0 -r3724,351:20753781,26865190:0,631766,126483 -g3724,326:22064501,26865190 -g3724,326:22064501,26865190 -g3724,326:27574767,26865190 -g3724,326:29143043,26865190 -k3724,327:31460725,26865190:1122305 -k3724,327:32583029,26865190:1122304 -) -(3724,328:20753781,27723985:11829248,505283,126483 -h3724,327:20753781,27723985:0,0,0 -r3724,351:20753781,27723985:0,631766,126483 -g3724,327:22064501,27723985 -g3724,327:22064501,27723985 -g3724,327:25203675,27723985 -k3724,328:29491041,27723985:3091989 -k3724,328:32583029,27723985:3091988 -) -(3724,329:20753781,28582781:11829248,505283,126483 -h3724,328:20753781,28582781:0,0,0 -r3724,351:20753781,28582781:0,631766,126483 -g3724,328:22064501,28582781 -g3724,328:22064501,28582781 -g3724,328:25598857,28582781 -k3724,329:29688632,28582781:2894398 -k3724,329:32583029,28582781:2894397 -) -(3724,330:20753781,29441576:11829248,505283,126483 -h3724,329:20753781,29441576:0,0,0 -r3724,351:20753781,29441576:0,631766,126483 -g3724,329:22064501,29441576 -g3724,329:22064501,29441576 -g3724,329:24808493,29441576 -g3724,329:27899826,29441576 -g3724,329:29468102,29441576 -g3724,329:31036378,29441576 -k3724,329:32583029,29441576:177604 -) -(3724,330:23375221,30283064:9207808,485622,102891 -g3724,329:24943497,30283064 -k3724,330:29360952,30283064:3222078 -k3724,330:32583029,30283064:3222077 -) -(3724,331:20753781,31141860:11829248,505283,126483 -h3724,330:20753781,31141860:0,0,0 -r3724,351:20753781,31141860:0,631766,126483 -g3724,330:22064501,31141860 -g3724,330:22064501,31141860 -g3724,330:25598857,31141860 -k3724,331:29489402,31141860:3093627 -k3724,331:32583029,31141860:3093627 -) -(3724,332:20753781,32000656:11829248,505283,126483 -h3724,331:20753781,32000656:0,0,0 -r3724,351:20753781,32000656:0,631766,126483 -g3724,331:22064501,32000656 -g3724,331:22064501,32000656 -g3724,331:26784403,32000656 -k3724,332:30281405,32000656:2301625 -k3724,332:32583029,32000656:2301624 -) -(3724,333:20753781,32859451:11829248,505283,126483 -h3724,332:20753781,32859451:0,0,0 -r3724,351:20753781,32859451:0,631766,126483 -g3724,332:22064501,32859451 -g3724,332:22064501,32859451 -g3724,332:25203675,32859451 -g3724,332:26771951,32859451 -k3724,333:30275179,32859451:2307851 -k3724,333:32583029,32859451:2307850 -) -(3724,334:20753781,33718247:11829248,505283,126483 -h3724,333:20753781,33718247:0,0,0 -r3724,351:20753781,33718247:0,631766,126483 -g3724,333:22064501,33718247 -g3724,333:22064501,33718247 -g3724,333:24808493,33718247 -k3724,334:29293450,33718247:3289580 -k3724,334:32583029,33718247:3289579 -) -(3724,335:20753781,34577042:11829248,505283,126483 -h3724,334:20753781,34577042:0,0,0 -r3724,351:20753781,34577042:0,631766,126483 -g3724,334:22064501,34577042 -g3724,334:22064501,34577042 -g3724,334:29945860,34577042 -k3724,334:32583029,34577042:1268122 -) -(3724,335:23375221,35418530:9207808,485622,11795 -k3724,335:28576814,35418530:4006216 -k3724,335:32583029,35418530:4006215 -) -(3724,336:20753781,36277326:11829248,505283,134348 -h3724,335:20753781,36277326:0,0,0 -r3724,351:20753781,36277326:0,639631,134348 -g3724,335:22064501,36277326 -g3724,335:22064501,36277326 -g3724,335:29155496,36277326 -k3724,336:31466951,36277326:1116078 -k3724,336:32583029,36277326:1116078 -) -(3724,337:20753781,37136121:11829248,505283,126483 -h3724,336:20753781,37136121:0,0,0 -r3724,351:20753781,37136121:0,631766,126483 -g3724,336:22064501,37136121 -g3724,336:22064501,37136121 -g3724,336:28760314,37136121 -k3724,337:31269360,37136121:1313669 -k3724,337:32583029,37136121:1313669 -) -(3724,338:20753781,37994917:11829248,505283,126483 -h3724,337:20753781,37994917:0,0,0 -r3724,351:20753781,37994917:0,631766,126483 -g3724,337:22064501,37994917 -g3724,337:22064501,37994917 -g3724,337:25203675,37994917 -k3724,338:29491041,37994917:3091989 -k3724,338:32583029,37994917:3091988 -) -(3724,339:20753781,38853712:11829248,505283,126483 -h3724,338:20753781,38853712:0,0,0 -r3724,351:20753781,38853712:0,631766,126483 -g3724,338:22064501,38853712 -g3724,338:22064501,38853712 -g3724,338:25598857,38853712 -g3724,338:27167133,38853712 -k3724,339:30472770,38853712:2110260 -k3724,339:32583029,38853712:2110259 -) -(3724,340:20753781,39712508:11829248,505283,126483 -h3724,339:20753781,39712508:0,0,0 -r3724,351:20753781,39712508:0,631766,126483 -g3724,339:22064501,39712508 -g3724,339:22064501,39712508 -g3724,339:25994039,39712508 -g3724,339:27562315,39712508 -k3724,340:30670361,39712508:1912669 -k3724,340:32583029,39712508:1912668 -) -(3724,341:20753781,40571303:11829248,505283,126483 -h3724,340:20753781,40571303:0,0,0 -r3724,351:20753781,40571303:0,631766,126483 -g3724,340:22064501,40571303 -g3724,340:22064501,40571303 -g3724,340:28365131,40571303 -k3724,341:31071769,40571303:1511261 -k3724,341:32583029,40571303:1511260 -) -(3724,343:20753781,41430099:11829248,505283,126483 -h3724,341:20753781,41430099:0,0,0 -r3724,351:20753781,41430099:0,631766,126483 -g3724,341:22064501,41430099 -g3724,341:22064501,41430099 -g3724,341:25203675,41430099 -g3724,341:26373492,41430099 -g3724,341:27543309,41430099 -g3724,341:28713126,41430099 -g3724,341:29882943,41430099 -k3724,341:32583029,41430099:1331039 -) -(3724,343:23375221,42271587:9207808,485622,102891 -g3724,341:24943497,42271587 -g3724,341:26511773,42271587 -g3724,341:28080049,42271587 -g3724,342:29648325,42271587 -g3724,342:31216601,42271587 -k3724,343:32497504,42271587:85526 -k3724,343:32583029,42271587:85525 -) -(3724,344:20753781,43130382:11829248,505283,126483 -h3724,343:20753781,43130382:0,0,0 -r3724,351:20753781,43130382:0,631766,126483 -g3724,343:22064501,43130382 -g3724,343:22064501,43130382 -g3724,343:24808493,43130382 -k3724,344:29293450,43130382:3289580 -k3724,344:32583029,43130382:3289579 -) -(3724,345:20753781,43989178:11829248,505283,126483 -h3724,344:20753781,43989178:0,0,0 -r3724,351:20753781,43989178:0,631766,126483 -g3724,344:22064501,43989178 -g3724,344:22064501,43989178 -g3724,344:24018128,43989178 -g3724,344:25586404,43989178 -g3724,344:27154680,43989178 -k3724,345:30466543,43989178:2116486 -k3724,345:32583029,43989178:2116486 -) -(3724,346:20753781,44847973:11829248,513147,126483 -h3724,345:20753781,44847973:0,0,0 -r3724,351:20753781,44847973:0,639630,126483 -g3724,345:22064501,44847973 -g3724,345:22064501,44847973 -g3724,345:25203675,44847973 -k3724,346:29491041,44847973:3091989 -k3724,346:32583029,44847973:3091988 -) -(3724,347:20753781,45706769:11829248,505283,126483 -h3724,346:20753781,45706769:0,0,0 -r3724,351:20753781,45706769:0,631766,126483 -g3724,346:22064501,45706769 -g3724,346:22064501,45706769 -g3724,346:25598857,45706769 -k3724,347:29688632,45706769:2894398 -k3724,347:32583029,45706769:2894397 -) -] -(3724,351:32583029,45706769:0,355205,126483 -h3724,351:32583029,45706769:420741,355205,126483 -k3724,351:32583029,45706769:-420741 -) -) -] -(3724,351:32583029,45706769:0,0,0 -g3724,351:32583029,45706769 -) -) -] -(3724,351:6630773,47279633:25952256,0,0 -h3724,351:6630773,47279633:25952256,0,0 -) -] -(3724,351:4262630,4025873:0,0,0 -[3724,351:-473656,4025873:0,0,0 -(3724,351:-473656,-710413:0,0,0 -(3724,351:-473656,-710413:0,0,0 -g3724,351:-473656,-710413 -) -g3724,351:-473656,-710413 -) -] -) -] -!31651 -}453 +[3765,338:3078558,4812305:0,0,0 +(3765,338:3078558,49800853:0,16384,2228224 +g3765,338:29030814,49800853 +g3765,338:36135244,49800853 +(3765,1:36135244,49800853:1720320,16384,2228224 +(3765,1:36135244,52029077:16384,1703936,0 +[3765,1:36135244,52029077:25952256,1703936,0 +(3765,1:36135244,51504789:25952256,1179648,0 +(3765,1:36135244,51504789:16384,1179648,0 +r3765,338:36151628,51504789:16384,1179648,0 +) +k3765,1:62087500,51504789:25935872 +g3765,1:62087500,51504789 +) +] +) +g3765,1:36675916,49800853 +(3765,1:36675916,49800853:1179648,16384,0 +r3765,338:37855564,49800853:1179648,16384,0 +) +) +k3765,338:3078556,49800853:-34777008 +) +] +g3765,338:6630773,4812305 +k3765,338:23083588,4812305:15257438 +g3765,338:24981510,4812305 +g3765,338:25796777,4812305 +g3765,338:26410194,4812305 +g3765,338:28753761,4812305 +g3765,338:29709275,4812305 +) +) +] +[3765,338:6630773,45706769:25952256,40108032,0 +(3765,338:6630773,45706769:25952256,40108032,0 +(3765,338:6630773,45706769:0,0,0 +g3765,338:6630773,45706769 +) +[3765,338:6630773,45706769:25952256,40108032,0 +(3765,338:6630773,45706769:25952256,40108032,141066 +[3765,338:6630773,45706769:11829248,40108032,141066 +(3765,247:6630773,6254097:11829248,530548,141066 +h3765,246:6630773,6254097:0,0,0 +r3765,338:6630773,6254097:0,671614,141066 +g3765,246:7941493,6254097 +g3765,246:7941493,6254097 +g3765,246:10804046,6254097 +g3765,246:11973863,6254097 +k3765,247:15615401,6254097:2844620 +k3765,247:18460021,6254097:2844620 +) +(3765,248:6630773,7131655:11829248,530548,141066 +h3765,247:6630773,7131655:0,0,0 +r3765,338:6630773,7131655:0,671614,141066 +g3765,247:7941493,7131655 +g3765,247:7941493,7131655 +g3765,247:11218989,7131655 +g3765,247:12388806,7131655 +k3765,248:15822873,7131655:2637149 +k3765,248:18460021,7131655:2637148 +) +(3765,249:6630773,8009213:11829248,530548,141066 +h3765,248:6630773,8009213:0,0,0 +r3765,338:6630773,8009213:0,671614,141066 +g3765,248:7941493,8009213 +g3765,248:7941493,8009213 +g3765,248:12463816,8009213 +g3765,248:14032092,8009213 +k3765,249:16843745,8009213:1616276 +k3765,249:18460021,8009213:1616276 +) +(3765,250:6630773,8886771:11829248,530548,141066 +h3765,249:6630773,8886771:0,0,0 +r3765,338:6630773,8886771:0,671614,141066 +g3765,249:7941493,8886771 +g3765,249:7941493,8886771 +g3765,249:10804046,8886771 +g3765,249:11973863,8886771 +k3765,250:15615401,8886771:2844620 +k3765,250:18460021,8886771:2844620 +) +(3765,251:6630773,9764329:11829248,530548,102891 +h3765,250:6630773,9764329:0,0,0 +r3765,338:6630773,9764329:0,633439,102891 +g3765,250:7941493,9764329 +g3765,250:7941493,9764329 +g3765,250:10389104,9764329 +k3765,251:15022251,9764329:3437770 +k3765,251:18460021,9764329:3437770 +) +(3765,252:6630773,10641887:11829248,530548,102891 +h3765,251:6630773,10641887:0,0,0 +r3765,338:6630773,10641887:0,633439,102891 +g3765,251:7941493,10641887 +g3765,251:7941493,10641887 +g3765,251:11633931,10641887 +g3765,251:13202207,10641887 +k3765,252:16428803,10641887:2031219 +k3765,252:18460021,10641887:2031218 +) +(3765,253:6630773,11519444:11829248,530548,132808 +h3765,252:6630773,11519444:0,0,0 +r3765,338:6630773,11519444:0,663356,132808 +g3765,252:7941493,11519444 +g3765,252:7941493,11519444 +g3765,252:10804046,11519444 +g3765,252:11973863,11519444 +k3765,253:15615401,11519444:2844620 +k3765,253:18460021,11519444:2844620 +) +(3765,254:6630773,12397002:11829248,530548,102891 +h3765,253:6630773,12397002:0,0,0 +r3765,338:6630773,12397002:0,633439,102891 +g3765,253:7941493,12397002 +g3765,253:7941493,12397002 +g3765,253:9559219,12397002 +g3765,253:10729036,12397002 +g3765,253:11898853,12397002 +g3765,253:13467129,12397002 +g3765,253:15035405,12397002 +k3765,254:17345402,12397002:1114620 +k3765,254:18460021,12397002:1114619 +) +(3765,255:6630773,13274560:11829248,530548,102891 +h3765,254:6630773,13274560:0,0,0 +r3765,338:6630773,13274560:0,633439,102891 +g3765,254:7941493,13274560 +g3765,254:7941493,13274560 +g3765,254:12878759,13274560 +k3765,255:16267079,13274560:2192943 +k3765,255:18460021,13274560:2192942 +) +(3765,256:6630773,14152118:11829248,530548,102891 +h3765,255:6630773,14152118:0,0,0 +r3765,338:6630773,14152118:0,633439,102891 +g3765,255:7941493,14152118 +g3765,255:7941493,14152118 +g3765,255:12463816,14152118 +g3765,255:13633633,14152118 +k3765,256:16644516,14152118:1815506 +k3765,256:18460021,14152118:1815505 +) +(3765,257:6630773,15029676:11829248,530548,141066 +h3765,256:6630773,15029676:0,0,0 +r3765,338:6630773,15029676:0,671614,141066 +g3765,256:7941493,15029676 +g3765,256:7941493,15029676 +g3765,256:13293701,15029676 +k3765,257:16474550,15029676:1985472 +k3765,257:18460021,15029676:1985471 +) +(3765,258:6630773,15907234:11829248,530548,141066 +h3765,257:6630773,15907234:0,0,0 +r3765,338:6630773,15907234:0,671614,141066 +g3765,257:7941493,15907234 +g3765,257:7941493,15907234 +g3765,257:15783355,15907234 +k3765,257:18460021,15907234:1307619 +) +(3765,258:9252213,16772314:9207808,481690,0 +k3765,258:14453806,16772314:4006216 +k3765,258:18460021,16772314:4006215 +) +(3765,259:6630773,17649872:11829248,530548,102891 +h3765,258:6630773,17649872:0,0,0 +r3765,338:6630773,17649872:0,633439,102891 +g3765,258:7941493,17649872 +g3765,258:7941493,17649872 +g3765,258:13708644,17649872 +k3765,259:16682021,17649872:1778000 +k3765,259:18460021,17649872:1778000 +) +(3765,260:6630773,18527430:11829248,530548,132808 +h3765,259:6630773,18527430:0,0,0 +r3765,338:6630773,18527430:0,663356,132808 +g3765,259:7941493,18527430 +g3765,259:7941493,18527430 +g3765,259:12463816,18527430 +k3765,260:15860378,18527430:2599644 +k3765,260:18460021,18527430:2599643 +) +(3765,261:6630773,19404988:11829248,530548,102891 +h3765,260:6630773,19404988:0,0,0 +r3765,338:6630773,19404988:0,633439,102891 +g3765,260:7941493,19404988 +g3765,260:7941493,19404988 +g3765,260:14123586,19404988 +k3765,261:16690263,19404988:1769759 +k3765,261:18460021,19404988:1769758 +) +(3765,262:6630773,20282546:11829248,530548,102891 +h3765,261:6630773,20282546:0,0,0 +r3765,338:6630773,20282546:0,633439,102891 +g3765,261:7941493,20282546 +g3765,261:7941493,20282546 +g3765,261:13293701,20282546 +g3765,261:14463518,20282546 +k3765,262:16860229,20282546:1599793 +k3765,262:18460021,20282546:1599792 +) +(3765,263:6630773,21160103:11829248,530548,132808 +h3765,262:6630773,21160103:0,0,0 +r3765,338:6630773,21160103:0,663356,132808 +g3765,262:7941493,21160103 +g3765,262:7941493,21160103 +g3765,262:14953471,21160103 +g3765,262:16521747,21160103 +k3765,263:18088573,21160103:371449 +k3765,263:18460021,21160103:371448 +) +(3765,264:6630773,22037661:11829248,530548,141066 +h3765,263:6630773,22037661:0,0,0 +r3765,338:6630773,22037661:0,671614,141066 +g3765,263:7941493,22037661 +g3765,263:7941493,22037661 +g3765,263:13293701,22037661 +k3765,264:16275320,22037661:2184701 +k3765,264:18460021,22037661:2184701 +) +(3765,265:6630773,22915219:11829248,530548,102891 +h3765,264:6630773,22915219:0,0,0 +r3765,338:6630773,22915219:0,633439,102891 +g3765,264:7941493,22915219 +g3765,264:7941493,22915219 +g3765,264:12878759,22915219 +k3765,265:16067849,22915219:2392172 +k3765,265:18460021,22915219:2392172 +) +(3765,266:6630773,23792777:11829248,530548,102891 +h3765,265:6630773,23792777:0,0,0 +r3765,338:6630773,23792777:0,633439,102891 +g3765,265:7941493,23792777 +g3765,265:7941493,23792777 +g3765,265:11218989,23792777 +g3765,265:12388806,23792777 +k3765,266:15822873,23792777:2637149 +k3765,266:18460021,23792777:2637148 +) +(3765,267:6630773,24670335:11829248,530548,102891 +h3765,266:6630773,24670335:0,0,0 +r3765,338:6630773,24670335:0,633439,102891 +g3765,266:7941493,24670335 +g3765,266:7941493,24670335 +g3765,266:13293701,24670335 +g3765,266:14463518,24670335 +k3765,267:16860229,24670335:1599793 +k3765,267:18460021,24670335:1599792 +) +(3765,268:6630773,25547893:11829248,530548,102891 +h3765,267:6630773,25547893:0,0,0 +r3765,338:6630773,25547893:0,633439,102891 +g3765,267:7941493,25547893 +g3765,267:7941493,25547893 +g3765,267:12878759,25547893 +k3765,268:16267079,25547893:2192943 +k3765,268:18460021,25547893:2192942 +) +(3765,269:6630773,26425451:11829248,530548,102891 +h3765,268:6630773,26425451:0,0,0 +r3765,338:6630773,26425451:0,633439,102891 +g3765,268:7941493,26425451 +g3765,268:7941493,26425451 +g3765,268:11633931,26425451 +k3765,269:15644665,26425451:2815357 +k3765,269:18460021,26425451:2815356 +) +(3765,270:6630773,27303009:11829248,530548,132808 +h3765,269:6630773,27303009:0,0,0 +r3765,338:6630773,27303009:0,663356,132808 +g3765,269:7941493,27303009 +g3765,269:7941493,27303009 +g3765,269:14123586,27303009 +k3765,270:16889492,27303009:1570529 +k3765,270:18460021,27303009:1570529 +) +(3765,271:6630773,28180567:11829248,530548,102891 +h3765,270:6630773,28180567:0,0,0 +r3765,338:6630773,28180567:0,633439,102891 +g3765,270:7941493,28180567 +g3765,270:7941493,28180567 +g3765,270:13293701,28180567 +k3765,271:16474550,28180567:1985472 +k3765,271:18460021,28180567:1985471 +) +(3765,272:6630773,29058125:11829248,530548,102891 +h3765,271:6630773,29058125:0,0,0 +r3765,338:6630773,29058125:0,633439,102891 +g3765,271:7941493,29058125 +g3765,271:7941493,29058125 +g3765,271:15783355,29058125 +k3765,272:17719377,29058125:740645 +k3765,272:18460021,29058125:740644 +) +(3765,273:6630773,29935683:11829248,530548,102891 +h3765,272:6630773,29935683:0,0,0 +r3765,338:6630773,29935683:0,633439,102891 +g3765,272:7941493,29935683 +g3765,272:7941493,29935683 +g3765,272:13293701,29935683 +k3765,273:16474550,29935683:1985472 +k3765,273:18460021,29935683:1985471 +) +(3765,274:6630773,30813240:11829248,530548,102891 +h3765,273:6630773,30813240:0,0,0 +r3765,338:6630773,30813240:0,633439,102891 +g3765,273:7941493,30813240 +g3765,273:7941493,30813240 +g3765,273:10804046,30813240 +g3765,273:12372322,30813240 +k3765,274:16013860,30813240:2446161 +k3765,274:18460021,30813240:2446161 +) +(3765,275:6630773,31690798:11829248,538806,141066 +h3765,274:6630773,31690798:0,0,0 +r3765,338:6630773,31690798:0,679872,141066 +g3765,274:7941493,31690798 +g3765,274:7941493,31690798 +g3765,274:12878759,31690798 +k3765,275:16267079,31690798:2192943 +k3765,275:18460021,31690798:2192942 +) +(3765,276:6630773,32568356:11829248,530548,141066 +h3765,275:6630773,32568356:0,0,0 +r3765,338:6630773,32568356:0,671614,141066 +g3765,275:7941493,32568356 +g3765,275:7941493,32568356 +g3765,275:11633931,32568356 +g3765,275:12803748,32568356 +g3765,275:13973565,32568356 +g3765,275:15143382,32568356 +g3765,275:16711658,32568356 +k3765,275:18460021,32568356:379316 +) +(3765,276:9252213,33433436:9207808,485622,11795 +k3765,276:14453806,33433436:4006216 +k3765,276:18460021,33433436:4006215 +) +(3765,277:6630773,34310994:11829248,530548,102891 +h3765,276:6630773,34310994:0,0,0 +r3765,338:6630773,34310994:0,633439,102891 +g3765,276:7941493,34310994 +g3765,276:7941493,34310994 +g3765,276:11633931,34310994 +g3765,276:12803748,34310994 +g3765,276:13973565,34310994 +k3765,277:16814482,34310994:1645540 +k3765,277:18460021,34310994:1645539 +) +(3765,278:6630773,35188552:11829248,530548,102891 +h3765,277:6630773,35188552:0,0,0 +r3765,338:6630773,35188552:0,633439,102891 +g3765,277:7941493,35188552 +g3765,277:7941493,35188552 +g3765,277:12463816,35188552 +k3765,278:16059607,35188552:2400414 +k3765,278:18460021,35188552:2400414 +) +(3765,279:6630773,36066110:11829248,530548,132808 +h3765,278:6630773,36066110:0,0,0 +r3765,338:6630773,36066110:0,663356,132808 +g3765,278:7941493,36066110 +g3765,278:7941493,36066110 +g3765,278:11218989,36066110 +k3765,279:15437194,36066110:3022828 +k3765,279:18460021,36066110:3022827 +) +(3765,280:6630773,36943668:11829248,530548,132808 +h3765,279:6630773,36943668:0,0,0 +r3765,338:6630773,36943668:0,663356,132808 +g3765,279:7941493,36943668 +g3765,279:7941493,36943668 +g3765,279:12048874,36943668 +g3765,279:13617150,36943668 +g3765,279:15185426,36943668 +k3765,280:17420412,36943668:1039609 +k3765,280:18460021,36943668:1039609 +) +(3765,281:6630773,37821226:11829248,530548,102891 +h3765,280:6630773,37821226:0,0,0 +r3765,338:6630773,37821226:0,633439,102891 +g3765,280:7941493,37821226 +g3765,280:7941493,37821226 +g3765,280:10804046,37821226 +g3765,280:11973863,37821226 +k3765,281:15814631,37821226:2645391 +k3765,281:18460021,37821226:2645390 +) +(3765,282:6630773,38698784:11829248,530548,102891 +h3765,281:6630773,38698784:0,0,0 +r3765,338:6630773,38698784:0,633439,102891 +g3765,281:7941493,38698784 +g3765,281:7941493,38698784 +g3765,281:12878759,38698784 +k3765,282:16267079,38698784:2192943 +k3765,282:18460021,38698784:2192942 +) +(3765,283:6630773,39576342:11829248,538806,102891 +h3765,282:6630773,39576342:0,0,0 +r3765,338:6630773,39576342:0,641697,102891 +g3765,282:7941493,39576342 +g3765,282:7941493,39576342 +g3765,282:13293701,39576342 +k3765,283:16474550,39576342:1985472 +k3765,283:18460021,39576342:1985471 +) +(3765,285:6630773,40453900:11829248,530548,102891 +h3765,283:6630773,40453900:0,0,0 +r3765,338:6630773,40453900:0,633439,102891 +g3765,283:7941493,40453900 +g3765,283:7941493,40453900 +g3765,283:9974162,40453900 +g3765,283:11542438,40453900 +g3765,283:13110714,40453900 +g3765,283:14678990,40453900 +g3765,283:16247266,40453900 +k3765,283:18460021,40453900:843708 +) +(3765,285:9252213,41318980:9207808,485622,102891 +g3765,283:10820489,41318980 +g3765,283:12388765,41318980 +g3765,283:13957041,41318980 +k3765,285:16806220,41318980:1653802 +k3765,285:18460021,41318980:1653801 +) +(3765,286:6630773,42196537:11829248,530548,102891 +h3765,285:6630773,42196537:0,0,0 +r3765,338:6630773,42196537:0,633439,102891 +g3765,285:7941493,42196537 +g3765,285:7941493,42196537 +g3765,285:10804046,42196537 +k3765,286:15229722,42196537:3230299 +k3765,286:18460021,42196537:3230299 +) +(3765,287:6630773,43074095:11829248,530548,102891 +h3765,286:6630773,43074095:0,0,0 +r3765,338:6630773,43074095:0,633439,102891 +g3765,286:7941493,43074095 +g3765,286:7941493,43074095 +g3765,286:10389104,43074095 +k3765,287:15022251,43074095:3437770 +k3765,287:18460021,43074095:3437770 +) +(3765,288:6630773,43951653:11829248,530548,141066 +h3765,287:6630773,43951653:0,0,0 +r3765,338:6630773,43951653:0,671614,141066 +g3765,287:7941493,43951653 +g3765,287:7941493,43951653 +g3765,287:10389104,43951653 +g3765,287:11558921,43951653 +k3765,288:15607160,43951653:2852862 +k3765,288:18460021,43951653:2852861 +) +(3765,289:6630773,44829211:11829248,530548,141066 +h3765,288:6630773,44829211:0,0,0 +r3765,338:6630773,44829211:0,671614,141066 +g3765,288:7941493,44829211 +g3765,288:7941493,44829211 +g3765,288:11218989,44829211 +k3765,289:15237964,44829211:3222057 +k3765,289:18460021,44829211:3222057 +) +(3765,290:6630773,45706769:11829248,530548,141066 +h3765,289:6630773,45706769:0,0,0 +r3765,338:6630773,45706769:0,671614,141066 +g3765,289:7941493,45706769 +g3765,289:7941493,45706769 +g3765,289:10804046,45706769 +k3765,290:15030493,45706769:3429529 +k3765,290:18460021,45706769:3429528 +) +] +k3765,338:19606901,45706769:1146880 +r3765,338:19606901,45706769:0,40249098,141066 +k3765,338:20753781,45706769:1146880 +[3765,338:20753781,45706769:11829248,40108032,132808 +(3765,291:20753781,6254097:11829248,530548,102891 +h3765,290:20753781,6254097:0,0,0 +r3765,338:20753781,6254097:0,633439,102891 +g3765,290:22064501,6254097 +g3765,290:22064501,6254097 +g3765,290:24097170,6254097 +g3765,290:25266987,6254097 +g3765,290:26835263,6254097 +k3765,291:30306835,6254097:2276195 +k3765,291:32583029,6254097:2276194 +) +(3765,292:20753781,7131088:11829248,530548,102891 +h3765,291:20753781,7131088:0,0,0 +r3765,338:20753781,7131088:0,633439,102891 +g3765,291:22064501,7131088 +g3765,291:22064501,7131088 +g3765,291:24512112,7131088 +k3765,292:29145259,7131088:3437770 +k3765,292:32583029,7131088:3437770 +) +(3765,293:20753781,8008078:11829248,530548,102891 +h3765,292:20753781,8008078:0,0,0 +r3765,338:20753781,8008078:0,633439,102891 +g3765,292:22064501,8008078 +g3765,292:22064501,8008078 +g3765,292:25756939,8008078 +k3765,293:29767673,8008078:2815357 +k3765,293:32583029,8008078:2815356 +) +(3765,294:20753781,8885069:11829248,530548,102891 +h3765,293:20753781,8885069:0,0,0 +r3765,338:20753781,8885069:0,633439,102891 +g3765,293:22064501,8885069 +g3765,293:22064501,8885069 +g3765,293:25341997,8885069 +k3765,294:29360972,8885069:3222057 +k3765,294:32583029,8885069:3222057 +) +(3765,295:20753781,9762060:11829248,530548,102891 +h3765,294:20753781,9762060:0,0,0 +r3765,338:20753781,9762060:0,633439,102891 +g3765,294:22064501,9762060 +g3765,294:22064501,9762060 +g3765,294:26171882,9762060 +k3765,295:29975144,9762060:2607885 +k3765,295:32583029,9762060:2607885 +) +(3765,296:20753781,10639051:11829248,530548,102891 +h3765,295:20753781,10639051:0,0,0 +r3765,338:20753781,10639051:0,633439,102891 +g3765,295:22064501,10639051 +g3765,295:22064501,10639051 +g3765,295:25756939,10639051 +g3765,295:26926756,10639051 +k3765,296:30352581,10639051:2230448 +k3765,296:32583029,10639051:2230448 +) +(3765,297:20753781,11516041:11829248,530548,102891 +h3765,296:20753781,11516041:0,0,0 +r3765,338:20753781,11516041:0,633439,102891 +g3765,296:22064501,11516041 +g3765,296:22064501,11516041 +g3765,296:24512112,11516041 +g3765,296:26080388,11516041 +k3765,297:29929397,11516041:2653632 +k3765,297:32583029,11516041:2653632 +) +(3765,298:20753781,12393032:11829248,530548,102891 +h3765,297:20753781,12393032:0,0,0 +r3765,338:20753781,12393032:0,633439,102891 +g3765,297:22064501,12393032 +g3765,297:22064501,12393032 +g3765,297:24927054,12393032 +g3765,297:26495330,12393032 +g3765,297:28063606,12393032 +k3765,298:30921006,12393032:1662023 +k3765,298:32583029,12393032:1662023 +) +(3765,299:20753781,13270023:11829248,530548,102891 +h3765,298:20753781,13270023:0,0,0 +r3765,338:20753781,13270023:0,633439,102891 +g3765,298:22064501,13270023 +g3765,298:22064501,13270023 +g3765,298:25756939,13270023 +k3765,299:29767673,13270023:2815357 +k3765,299:32583029,13270023:2815356 +) +(3765,300:20753781,14147014:11829248,530548,102891 +h3765,299:20753781,14147014:0,0,0 +r3765,338:20753781,14147014:0,633439,102891 +g3765,299:22064501,14147014 +g3765,299:22064501,14147014 +g3765,299:26171882,14147014 +k3765,300:29975144,14147014:2607885 +k3765,300:32583029,14147014:2607885 +) +(3765,301:20753781,15024004:11829248,530548,141066 +h3765,300:20753781,15024004:0,0,0 +r3765,338:20753781,15024004:0,671614,141066 +g3765,300:22064501,15024004 +g3765,300:22064501,15024004 +g3765,300:24927054,15024004 +g3765,300:26495330,15024004 +k3765,301:30136868,15024004:2446161 +k3765,301:32583029,15024004:2446161 +) +(3765,302:20753781,15900995:11829248,530548,102891 +h3765,301:20753781,15900995:0,0,0 +r3765,338:20753781,15900995:0,633439,102891 +g3765,301:22064501,15900995 +g3765,301:22064501,15900995 +g3765,301:24512112,15900995 +g3765,301:26080388,15900995 +k3765,302:29929397,15900995:2653632 +k3765,302:32583029,15900995:2653632 +) +(3765,303:20753781,16777986:11829248,530548,102891 +h3765,302:20753781,16777986:0,0,0 +r3765,338:20753781,16777986:0,633439,102891 +g3765,302:22064501,16777986 +g3765,302:22064501,16777986 +g3765,302:24927054,16777986 +g3765,302:26495330,16777986 +k3765,303:30136868,16777986:2446161 +k3765,303:32583029,16777986:2446161 +) +(3765,304:20753781,17654976:11829248,538806,102891 +h3765,303:20753781,17654976:0,0,0 +r3765,338:20753781,17654976:0,641697,102891 +g3765,303:22064501,17654976 +g3765,303:22064501,17654976 +g3765,303:27831652,17654976 +k3765,304:30805029,17654976:1778000 +k3765,304:32583029,17654976:1778000 +) +(3765,305:20753781,18531967:11829248,530548,102891 +h3765,304:20753781,18531967:0,0,0 +r3765,338:20753781,18531967:0,633439,102891 +g3765,304:22064501,18531967 +g3765,304:22064501,18531967 +g3765,304:28246594,18531967 +k3765,305:31012500,18531967:1570529 +k3765,305:32583029,18531967:1570529 +) +(3765,306:20753781,19408958:11829248,530548,102891 +h3765,305:20753781,19408958:0,0,0 +r3765,338:20753781,19408958:0,633439,102891 +g3765,305:22064501,19408958 +g3765,305:22064501,19408958 +g3765,305:25756939,19408958 +k3765,306:29767673,19408958:2815357 +k3765,306:32583029,19408958:2815356 +) +(3765,307:20753781,20285949:11829248,530548,132808 +h3765,306:20753781,20285949:0,0,0 +r3765,338:20753781,20285949:0,663356,132808 +g3765,306:22064501,20285949 +g3765,306:22064501,20285949 +g3765,306:26586824,20285949 +k3765,307:30182615,20285949:2400414 +k3765,307:32583029,20285949:2400414 +) +(3765,308:20753781,21162939:11829248,530548,102891 +h3765,307:20753781,21162939:0,0,0 +r3765,338:20753781,21162939:0,633439,102891 +g3765,307:22064501,21162939 +g3765,307:22064501,21162939 +g3765,307:25341997,21162939 +g3765,307:26910273,21162939 +g3765,307:28478549,21162939 +k3765,308:31128478,21162939:1454552 +k3765,308:32583029,21162939:1454551 +) +(3765,309:20753781,22039930:11829248,530548,102891 +h3765,308:20753781,22039930:0,0,0 +r3765,338:20753781,22039930:0,633439,102891 +g3765,308:22064501,22039930 +g3765,308:22064501,22039930 +g3765,308:26171882,22039930 +g3765,308:27740158,22039930 +k3765,309:30759282,22039930:1823747 +k3765,309:32583029,22039930:1823747 +) +(3765,310:20753781,22916921:11829248,530548,132808 +h3765,309:20753781,22916921:0,0,0 +r3765,338:20753781,22916921:0,663356,132808 +g3765,309:22064501,22916921 +g3765,309:22064501,22916921 +g3765,309:26171882,22916921 +k3765,310:29975144,22916921:2607885 +k3765,310:32583029,22916921:2607885 +) +(3765,311:20753781,23793912:11829248,530548,102891 +h3765,310:20753781,23793912:0,0,0 +r3765,338:20753781,23793912:0,633439,102891 +g3765,310:22064501,23793912 +g3765,310:22064501,23793912 +g3765,310:25341997,23793912 +k3765,311:29360972,23793912:3222057 +k3765,311:32583029,23793912:3222057 +) +(3765,312:20753781,24670902:11829248,530548,102891 +h3765,311:20753781,24670902:0,0,0 +r3765,338:20753781,24670902:0,633439,102891 +g3765,311:22064501,24670902 +g3765,311:22064501,24670902 +g3765,311:24927054,24670902 +g3765,311:26096871,24670902 +k3765,312:29937639,24670902:2645391 +k3765,312:32583029,24670902:2645390 +) +(3765,313:20753781,25547893:11829248,530548,141066 +h3765,312:20753781,25547893:0,0,0 +r3765,338:20753781,25547893:0,671614,141066 +g3765,312:22064501,25547893 +g3765,312:22064501,25547893 +g3765,312:27001767,25547893 +k3765,313:30390087,25547893:2192943 +k3765,313:32583029,25547893:2192942 +) +(3765,314:20753781,26424884:11829248,530548,102891 +h3765,313:20753781,26424884:0,0,0 +r3765,338:20753781,26424884:0,633439,102891 +g3765,313:22064501,26424884 +g3765,313:22064501,26424884 +g3765,313:24097170,26424884 +k3765,314:28937788,26424884:3645241 +k3765,314:32583029,26424884:3645241 +) +(3765,315:20753781,27301874:11829248,530548,102891 +h3765,314:20753781,27301874:0,0,0 +r3765,338:20753781,27301874:0,633439,102891 +g3765,314:22064501,27301874 +g3765,314:22064501,27301874 +g3765,314:23682227,27301874 +k3765,315:28730317,27301874:3852713 +k3765,315:32583029,27301874:3852712 +) +(3765,316:20753781,28178865:11829248,530548,102891 +h3765,315:20753781,28178865:0,0,0 +r3765,338:20753781,28178865:0,633439,102891 +g3765,315:22064501,28178865 +g3765,315:22064501,28178865 +g3765,315:24512112,28178865 +g3765,315:26080388,28178865 +k3765,316:29929397,28178865:2653632 +k3765,316:32583029,28178865:2653632 +) +(3765,317:20753781,29055856:11829248,530548,102891 +h3765,316:20753781,29055856:0,0,0 +r3765,338:20753781,29055856:0,633439,102891 +g3765,316:22064501,29055856 +g3765,316:22064501,29055856 +g3765,316:24927054,29055856 +g3765,316:26096871,29055856 +k3765,317:29937639,29055856:2645391 +k3765,317:32583029,29055856:2645390 +) +(3765,318:20753781,29932847:11829248,530548,102891 +h3765,317:20753781,29932847:0,0,0 +r3765,338:20753781,29932847:0,633439,102891 +g3765,317:22064501,29932847 +g3765,317:22064501,29932847 +g3765,317:26171882,29932847 +g3765,317:27341699,29932847 +k3765,318:30360823,29932847:2222206 +k3765,318:32583029,29932847:2222206 +) +(3765,319:20753781,30809837:11829248,530548,141066 +h3765,318:20753781,30809837:0,0,0 +r3765,338:20753781,30809837:0,671614,141066 +g3765,318:22064501,30809837 +g3765,318:22064501,30809837 +g3765,318:26171882,30809837 +g3765,318:27341699,30809837 +k3765,319:30360823,30809837:2222206 +k3765,319:32583029,30809837:2222206 +) +(3765,320:20753781,31686828:11829248,530548,102891 +h3765,319:20753781,31686828:0,0,0 +r3765,338:20753781,31686828:0,633439,102891 +g3765,319:22064501,31686828 +g3765,319:22064501,31686828 +g3765,319:26171882,31686828 +k3765,320:29975144,31686828:2607885 +k3765,320:32583029,31686828:2607885 +) +(3765,321:20753781,32563819:11829248,530548,132808 +h3765,320:20753781,32563819:0,0,0 +r3765,338:20753781,32563819:0,663356,132808 +g3765,320:22064501,32563819 +g3765,320:22064501,32563819 +g3765,320:26171882,32563819 +k3765,321:29975144,32563819:2607885 +k3765,321:32583029,32563819:2607885 +) +(3765,322:20753781,33440810:11829248,530548,102891 +h3765,321:20753781,33440810:0,0,0 +r3765,338:20753781,33440810:0,633439,102891 +g3765,321:22064501,33440810 +g3765,321:22064501,33440810 +g3765,321:25341997,33440810 +g3765,321:26511814,33440810 +g3765,321:27681631,33440810 +g3765,321:29249907,33440810 +g3765,321:30818183,33440810 +k3765,322:32298295,33440810:284735 +k3765,322:32583029,33440810:284734 +) +(3765,323:20753781,34317800:11829248,530548,102891 +h3765,322:20753781,34317800:0,0,0 +r3765,338:20753781,34317800:0,633439,102891 +g3765,322:22064501,34317800 +g3765,322:22064501,34317800 +g3765,322:26171882,34317800 +g3765,322:27341699,34317800 +k3765,323:30560053,34317800:2022977 +k3765,323:32583029,34317800:2022976 +) +(3765,324:20753781,35194791:11829248,530548,132808 +h3765,323:20753781,35194791:0,0,0 +r3765,338:20753781,35194791:0,663356,132808 +g3765,323:22064501,35194791 +g3765,323:22064501,35194791 +g3765,323:25341997,35194791 +g3765,323:26910273,35194791 +k3765,324:30344340,35194791:2238690 +k3765,324:32583029,35194791:2238689 +) +(3765,325:20753781,36071782:11829248,530548,132808 +h3765,324:20753781,36071782:0,0,0 +r3765,338:20753781,36071782:0,663356,132808 +g3765,324:22064501,36071782 +g3765,324:22064501,36071782 +g3765,324:25341997,36071782 +g3765,324:26511814,36071782 +g3765,324:28080090,36071782 +g3765,324:29648366,36071782 +k3765,325:31713386,36071782:869643 +k3765,325:32583029,36071782:869643 +) +(3765,326:20753781,36948772:11829248,530548,132808 +h3765,325:20753781,36948772:0,0,0 +r3765,338:20753781,36948772:0,663356,132808 +g3765,325:22064501,36948772 +g3765,325:22064501,36948772 +g3765,325:25756939,36948772 +k3765,326:29767673,36948772:2815357 +k3765,326:32583029,36948772:2815356 +) +(3765,327:20753781,37825763:11829248,530548,132808 +h3765,326:20753781,37825763:0,0,0 +r3765,338:20753781,37825763:0,663356,132808 +g3765,326:22064501,37825763 +g3765,326:22064501,37825763 +g3765,326:25756939,37825763 +k3765,327:29767673,37825763:2815357 +k3765,327:32583029,37825763:2815356 +) +(3765,328:20753781,38702754:11829248,538806,132808 +h3765,327:20753781,38702754:0,0,0 +r3765,338:20753781,38702754:0,671614,132808 +g3765,327:22064501,38702754 +g3765,327:22064501,38702754 +g3765,327:24097170,38702754 +k3765,328:28937788,38702754:3645241 +k3765,328:32583029,38702754:3645241 +) +(3765,329:20753781,39579745:11829248,530548,141066 +h3765,328:20753781,39579745:0,0,0 +r3765,338:20753781,39579745:0,671614,141066 +g3765,328:22064501,39579745 +g3765,328:22064501,39579745 +g3765,328:28246594,39579745 +g3765,328:29814870,39579745 +k3765,329:31796638,39579745:786391 +k3765,329:32583029,39579745:786391 +) +(3765,330:20753781,40456735:11829248,530548,132808 +h3765,329:20753781,40456735:0,0,0 +r3765,338:20753781,40456735:0,663356,132808 +g3765,329:22064501,40456735 +g3765,329:22064501,40456735 +g3765,329:27831652,40456735 +g3765,329:29399928,40456735 +k3765,330:31589167,40456735:993862 +k3765,330:32583029,40456735:993862 +) +(3765,331:20753781,41333726:11829248,530548,132808 +h3765,330:20753781,41333726:0,0,0 +r3765,338:20753781,41333726:0,663356,132808 +g3765,330:22064501,41333726 +g3765,330:22064501,41333726 +g3765,330:25341997,41333726 +k3765,331:29560202,41333726:3022828 +k3765,331:32583029,41333726:3022827 +) +(3765,332:20753781,42210717:11829248,530548,132808 +h3765,331:20753781,42210717:0,0,0 +r3765,338:20753781,42210717:0,663356,132808 +g3765,331:22064501,42210717 +g3765,331:22064501,42210717 +g3765,331:25756939,42210717 +k3765,332:29767673,42210717:2815357 +k3765,332:32583029,42210717:2815356 +) +(3765,333:20753781,43087708:11829248,530548,132808 +h3765,332:20753781,43087708:0,0,0 +r3765,338:20753781,43087708:0,663356,132808 +g3765,332:22064501,43087708 +g3765,332:22064501,43087708 +g3765,332:24927054,43087708 +g3765,332:28018387,43087708 +g3765,332:29586663,43087708 +g3765,332:31154939,43087708 +k3765,332:32583029,43087708:59043 +) +(3765,333:23375221,43952788:9207808,485622,102891 +g3765,332:24943497,43952788 +k3765,333:29360952,43952788:3222078 +k3765,333:32583029,43952788:3222077 +) +(3765,334:20753781,44829778:11829248,530548,132808 +h3765,333:20753781,44829778:0,0,0 +r3765,338:20753781,44829778:0,663356,132808 +g3765,333:22064501,44829778 +g3765,333:22064501,44829778 +g3765,333:25756939,44829778 +k3765,334:29568443,44829778:3014586 +k3765,334:32583029,44829778:3014586 +) +(3765,335:20753781,45706769:11829248,530548,132808 +h3765,334:20753781,45706769:0,0,0 +r3765,338:20753781,45706769:0,663356,132808 +g3765,334:22064501,45706769 +g3765,334:22064501,45706769 +g3765,334:27001767,45706769 +k3765,335:30390087,45706769:2192943 +k3765,335:32583029,45706769:2192942 +) +] +(3765,338:32583029,45706769:0,355205,126483 +h3765,338:32583029,45706769:420741,355205,126483 +k3765,338:32583029,45706769:-420741 +) +) +] +(3765,338:32583029,45706769:0,0,0 +g3765,338:32583029,45706769 +) +) +] +(3765,338:6630773,47279633:25952256,0,0 +h3765,338:6630773,47279633:25952256,0,0 +) +] +(3765,338:4262630,4025873:0,0,0 +[3765,338:-473656,4025873:0,0,0 +(3765,338:-473656,-710413:0,0,0 +(3765,338:-473656,-710413:0,0,0 +g3765,338:-473656,-710413 +) +g3765,338:-473656,-710413 +) +] +) +] +!31112 +}435 !12 -{454 -[3724,436:4262630,47279633:28320399,43253760,0 -(3724,436:4262630,4025873:0,0,0 -[3724,436:-473656,4025873:0,0,0 -(3724,436:-473656,-710413:0,0,0 -(3724,436:-473656,-644877:0,0,0 -k3724,436:-473656,-644877:-65536 +{436 +[3765,423:4262630,47279633:28320399,43253760,0 +(3765,423:4262630,4025873:0,0,0 +[3765,423:-473656,4025873:0,0,0 +(3765,423:-473656,-710413:0,0,0 +(3765,423:-473656,-644877:0,0,0 +k3765,423:-473656,-644877:-65536 ) -(3724,436:-473656,4736287:0,0,0 -k3724,436:-473656,4736287:5209943 +(3765,423:-473656,4736287:0,0,0 +k3765,423:-473656,4736287:5209943 ) -g3724,436:-473656,-710413 +g3765,423:-473656,-710413 ) ] ) -[3724,436:6630773,47279633:25952256,43253760,0 -[3724,436:6630773,4812305:25952256,786432,0 -(3724,436:6630773,4812305:25952256,513147,134348 -(3724,436:6630773,4812305:25952256,513147,134348 -g3724,436:3078558,4812305 -[3724,436:3078558,4812305:0,0,0 -(3724,436:3078558,2439708:0,1703936,0 -k3724,436:1358238,2439708:-1720320 -(3724,1:1358238,2439708:1720320,1703936,0 -(3724,1:1358238,2439708:1179648,16384,0 -r3724,436:2537886,2439708:1179648,16384,0 +[3765,423:6630773,47279633:25952256,43253760,0 +[3765,423:6630773,4812305:25952256,786432,0 +(3765,423:6630773,4812305:25952256,513147,134348 +(3765,423:6630773,4812305:25952256,513147,134348 +g3765,423:3078558,4812305 +[3765,423:3078558,4812305:0,0,0 +(3765,423:3078558,2439708:0,1703936,0 +k3765,423:1358238,2439708:-1720320 +(3765,1:1358238,2439708:1720320,1703936,0 +(3765,1:1358238,2439708:1179648,16384,0 +r3765,423:2537886,2439708:1179648,16384,0 ) -g3724,1:3062174,2439708 -(3724,1:3062174,2439708:16384,1703936,0 -[3724,1:3062174,2439708:25952256,1703936,0 -(3724,1:3062174,1915420:25952256,1179648,0 -(3724,1:3062174,1915420:16384,1179648,0 -r3724,436:3078558,1915420:16384,1179648,0 +g3765,1:3062174,2439708 +(3765,1:3062174,2439708:16384,1703936,0 +[3765,1:3062174,2439708:25952256,1703936,0 +(3765,1:3062174,1915420:25952256,1179648,0 +(3765,1:3062174,1915420:16384,1179648,0 +r3765,423:3078558,1915420:16384,1179648,0 ) -k3724,1:29014430,1915420:25935872 -g3724,1:29014430,1915420 +k3765,1:29014430,1915420:25935872 +g3765,1:29014430,1915420 ) ] ) ) ) ] -[3724,436:3078558,4812305:0,0,0 -(3724,436:3078558,2439708:0,1703936,0 -g3724,436:29030814,2439708 -g3724,436:36135244,2439708 -(3724,1:36135244,2439708:1720320,1703936,0 -(3724,1:36135244,2439708:16384,1703936,0 -[3724,1:36135244,2439708:25952256,1703936,0 -(3724,1:36135244,1915420:25952256,1179648,0 -(3724,1:36135244,1915420:16384,1179648,0 -r3724,436:36151628,1915420:16384,1179648,0 +[3765,423:3078558,4812305:0,0,0 +(3765,423:3078558,2439708:0,1703936,0 +g3765,423:29030814,2439708 +g3765,423:36135244,2439708 +(3765,1:36135244,2439708:1720320,1703936,0 +(3765,1:36135244,2439708:16384,1703936,0 +[3765,1:36135244,2439708:25952256,1703936,0 +(3765,1:36135244,1915420:25952256,1179648,0 +(3765,1:36135244,1915420:16384,1179648,0 +r3765,423:36151628,1915420:16384,1179648,0 ) -k3724,1:62087500,1915420:25935872 -g3724,1:62087500,1915420 +k3765,1:62087500,1915420:25935872 +g3765,1:62087500,1915420 ) ] ) -g3724,1:36675916,2439708 -(3724,1:36675916,2439708:1179648,16384,0 -r3724,436:37855564,2439708:1179648,16384,0 +g3765,1:36675916,2439708 +(3765,1:36675916,2439708:1179648,16384,0 +r3765,423:37855564,2439708:1179648,16384,0 ) ) -k3724,436:3078556,2439708:-34777008 +k3765,423:3078556,2439708:-34777008 ) ] -[3724,436:3078558,4812305:0,0,0 -(3724,436:3078558,49800853:0,16384,2228224 -k3724,436:1358238,49800853:-1720320 -(3724,1:1358238,49800853:1720320,16384,2228224 -(3724,1:1358238,49800853:1179648,16384,0 -r3724,436:2537886,49800853:1179648,16384,0 +[3765,423:3078558,4812305:0,0,0 +(3765,423:3078558,49800853:0,16384,2228224 +k3765,423:1358238,49800853:-1720320 +(3765,1:1358238,49800853:1720320,16384,2228224 +(3765,1:1358238,49800853:1179648,16384,0 +r3765,423:2537886,49800853:1179648,16384,0 ) -g3724,1:3062174,49800853 -(3724,1:3062174,52029077:16384,1703936,0 -[3724,1:3062174,52029077:25952256,1703936,0 -(3724,1:3062174,51504789:25952256,1179648,0 -(3724,1:3062174,51504789:16384,1179648,0 -r3724,436:3078558,51504789:16384,1179648,0 +g3765,1:3062174,49800853 +(3765,1:3062174,52029077:16384,1703936,0 +[3765,1:3062174,52029077:25952256,1703936,0 +(3765,1:3062174,51504789:25952256,1179648,0 +(3765,1:3062174,51504789:16384,1179648,0 +r3765,423:3078558,51504789:16384,1179648,0 ) -k3724,1:29014430,51504789:25935872 -g3724,1:29014430,51504789 +k3765,1:29014430,51504789:25935872 +g3765,1:29014430,51504789 ) ] ) ) ) ] -[3724,436:3078558,4812305:0,0,0 -(3724,436:3078558,49800853:0,16384,2228224 -g3724,436:29030814,49800853 -g3724,436:36135244,49800853 -(3724,1:36135244,49800853:1720320,16384,2228224 -(3724,1:36135244,52029077:16384,1703936,0 -[3724,1:36135244,52029077:25952256,1703936,0 -(3724,1:36135244,51504789:25952256,1179648,0 -(3724,1:36135244,51504789:16384,1179648,0 -r3724,436:36151628,51504789:16384,1179648,0 -) -k3724,1:62087500,51504789:25935872 -g3724,1:62087500,51504789 -) -] -) -g3724,1:36675916,49800853 -(3724,1:36675916,49800853:1179648,16384,0 -r3724,436:37855564,49800853:1179648,16384,0 -) -) -k3724,436:3078556,49800853:-34777008 -) -] -g3724,436:6630773,4812305 -g3724,436:6630773,4812305 -g3724,436:8528695,4812305 -g3724,436:9343962,4812305 -g3724,436:9957379,4812305 -g3724,436:12300946,4812305 -g3724,436:13256460,4812305 -g3724,436:16329443,4812305 -k3724,436:31387652,4812305:15058209 -) -) -] -[3724,436:6630773,45706769:25952256,40108032,0 -(3724,436:6630773,45706769:25952256,40108032,0 -(3724,436:6630773,45706769:0,0,0 -g3724,436:6630773,45706769 -) -[3724,436:6630773,45706769:25952256,40108032,0 -(3724,436:6630773,45706769:25952256,40108032,126483 -[3724,436:6630773,45706769:11829248,40108032,102891 -(3724,348:6630773,6254097:11829248,505283,126483 -h3724,347:6630773,6254097:0,0,0 -r3724,436:6630773,6254097:0,631766,126483 -g3724,347:7941493,6254097 -g3724,347:7941493,6254097 -g3724,347:11475849,6254097 -k3724,348:15565624,6254097:2894398 -k3724,348:18460021,6254097:2894397 -) -(3724,349:6630773,7111764:11829248,513147,126483 -h3724,348:6630773,7111764:0,0,0 -r3724,436:6630773,7111764:0,639630,126483 -g3724,348:7941493,7111764 -g3724,348:7941493,7111764 -g3724,348:9895120,7111764 -k3724,349:14775259,7111764:3684762 -k3724,349:18460021,7111764:3684762 -) -(3724,350:6630773,7969431:11829248,505283,126483 -h3724,349:6630773,7969431:0,0,0 -r3724,436:6630773,7969431:0,631766,126483 -g3724,349:7941493,7969431 -g3724,349:7941493,7969431 -g3724,349:11475849,7969431 -k3724,350:15565624,7969431:2894398 -k3724,350:18460021,7969431:2894397 -) -(3724,351:6630773,8827097:11829248,505283,126483 -h3724,350:6630773,8827097:0,0,0 -r3724,436:6630773,8827097:0,631766,126483 -g3724,350:7941493,8827097 -g3724,350:7941493,8827097 -g3724,350:12661395,8827097 -k3724,351:16158397,8827097:2301625 -k3724,351:18460021,8827097:2301624 -) -(3724,352:6630773,9684764:11829248,505283,126483 -h3724,351:6630773,9684764:0,0,0 -r3724,436:6630773,9684764:0,631766,126483 -g3724,351:7941493,9684764 -g3724,351:7941493,9684764 -g3724,351:11080667,9684764 -g3724,351:12648943,9684764 -k3724,352:16152171,9684764:2307851 -k3724,352:18460021,9684764:2307850 -) -(3724,353:6630773,10542431:11829248,505283,126483 -h3724,352:6630773,10542431:0,0,0 -r3724,436:6630773,10542431:0,631766,126483 -g3724,352:7941493,10542431 -g3724,352:7941493,10542431 -g3724,352:11080667,10542431 -k3724,353:15368033,10542431:3091989 -k3724,353:18460021,10542431:3091988 -) -(3724,354:6630773,11400098:11829248,505283,126483 -h3724,353:6630773,11400098:0,0,0 -r3724,436:6630773,11400098:0,631766,126483 -g3724,353:7941493,11400098 -g3724,353:7941493,11400098 -g3724,353:9895120,11400098 -k3724,354:14775259,11400098:3684762 -k3724,354:18460021,11400098:3684762 -) -(3724,355:6630773,12257764:11829248,505283,126483 -h3724,354:6630773,12257764:0,0,0 -r3724,436:6630773,12257764:0,631766,126483 -g3724,354:7941493,12257764 -g3724,354:7941493,12257764 -g3724,354:12266213,12257764 -k3724,355:15960806,12257764:2499216 -k3724,355:18460021,12257764:2499215 -) -(3724,356:6630773,13115431:11829248,513147,126483 -h3724,355:6630773,13115431:0,0,0 -r3724,436:6630773,13115431:0,639630,126483 -g3724,355:7941493,13115431 -g3724,355:7941493,13115431 -g3724,355:11080667,13115431 -k3724,356:15368033,13115431:3091989 -k3724,356:18460021,13115431:3091988 -) -(3724,357:6630773,13973098:11829248,505283,134348 -h3724,356:6630773,13973098:0,0,0 -r3724,436:6630773,13973098:0,639631,134348 -g3724,356:7941493,13973098 -g3724,356:7941493,13973098 -g3724,356:11080667,13973098 -k3724,357:15368033,13973098:3091989 -k3724,357:18460021,13973098:3091988 -) -(3724,358:6630773,14830765:11829248,505283,102891 -h3724,357:6630773,14830765:0,0,0 -r3724,436:6630773,14830765:0,608174,102891 -g3724,357:7941493,14830765 -g3724,357:7941493,14830765 -g3724,357:11475849,14830765 -k3724,358:15565624,14830765:2894398 -k3724,358:18460021,14830765:2894397 -) -(3724,359:6630773,15688432:11829248,505283,126483 -h3724,358:6630773,15688432:0,0,0 -r3724,436:6630773,15688432:0,631766,126483 -g3724,358:7941493,15688432 -g3724,358:7941493,15688432 -g3724,358:11475849,15688432 -k3724,359:15565624,15688432:2894398 -k3724,359:18460021,15688432:2894397 -) -(3724,360:6630773,16546098:11829248,505283,102891 -h3724,359:6630773,16546098:0,0,0 -r3724,436:6630773,16546098:0,608174,102891 -g3724,359:7941493,16546098 -g3724,359:7941493,16546098 -g3724,359:12266213,16546098 -g3724,359:15357546,16546098 -g3724,359:16925822,16546098 -k3724,360:18290610,16546098:169411 -k3724,360:18460021,16546098:169411 -) -(3724,361:6630773,17403765:11829248,505283,102891 -h3724,360:6630773,17403765:0,0,0 -r3724,436:6630773,17403765:0,608174,102891 -g3724,360:7941493,17403765 -g3724,360:7941493,17403765 -g3724,360:12661395,17403765 -g3724,360:14229671,17403765 -g3724,360:15797947,17403765 -k3724,361:17726673,17403765:733349 -k3724,361:18460021,17403765:733348 -) -(3724,362:6630773,18261432:11829248,513147,102891 -h3724,361:6630773,18261432:0,0,0 -r3724,436:6630773,18261432:0,616038,102891 -g3724,361:7941493,18261432 -g3724,361:7941493,18261432 -g3724,361:13846941,18261432 -g3724,361:15415217,18261432 -k3724,362:17535308,18261432:924714 -k3724,362:18460021,18261432:924713 -) -(3724,363:6630773,19119099:11829248,513147,102891 -h3724,362:6630773,19119099:0,0,0 -r3724,436:6630773,19119099:0,616038,102891 -g3724,362:7941493,19119099 -g3724,362:7941493,19119099 -g3724,362:12266213,19119099 -k3724,363:15960806,19119099:2499216 -k3724,363:18460021,19119099:2499215 -) -(3724,364:6630773,19976766:11829248,505283,126483 -h3724,363:6630773,19976766:0,0,0 -r3724,436:6630773,19976766:0,631766,126483 -g3724,363:7941493,19976766 -g3724,363:7941493,19976766 -g3724,363:12661395,19976766 -k3724,364:16158397,19976766:2301625 -k3724,364:18460021,19976766:2301624 -) -(3724,365:6630773,20834432:11829248,505283,126483 -h3724,364:6630773,20834432:0,0,0 -r3724,436:6630773,20834432:0,631766,126483 -g3724,364:7941493,20834432 -g3724,364:7941493,20834432 -g3724,364:13451759,20834432 -k3724,365:16553579,20834432:1906443 -k3724,365:18460021,20834432:1906442 -) -(3724,366:6630773,21692099:11829248,505283,102891 -h3724,365:6630773,21692099:0,0,0 -r3724,436:6630773,21692099:0,608174,102891 -g3724,365:7941493,21692099 -g3724,365:7941493,21692099 -g3724,365:13056577,21692099 -g3724,365:14624853,21692099 -k3724,366:17901654,21692099:558368 -k3724,366:18460021,21692099:558367 -) -(3724,367:6630773,22549766:11829248,505283,102891 -h3724,366:6630773,22549766:0,0,0 -r3724,436:6630773,22549766:0,608174,102891 -g3724,366:7941493,22549766 -g3724,366:7941493,22549766 -g3724,366:12661395,22549766 -k3724,367:16158397,22549766:2301625 -k3724,367:18460021,22549766:2301624 -) -(3724,368:6630773,23407433:11829248,505283,102891 -h3724,367:6630773,23407433:0,0,0 -r3724,436:6630773,23407433:0,608174,102891 -g3724,367:7941493,23407433 -g3724,367:7941493,23407433 -g3724,367:12266213,23407433 -g3724,367:13834489,23407433 -k3724,368:16744944,23407433:1715078 -k3724,368:18460021,23407433:1715077 -) -(3724,369:6630773,24265099:11829248,505283,102891 -h3724,368:6630773,24265099:0,0,0 -r3724,436:6630773,24265099:0,608174,102891 -g3724,368:7941493,24265099 -g3724,368:7941493,24265099 -g3724,368:13056577,24265099 -k3724,369:16355988,24265099:2104034 -k3724,369:18460021,24265099:2104033 -) -(3724,370:6630773,25122766:11829248,505283,102891 -h3724,369:6630773,25122766:0,0,0 -r3724,436:6630773,25122766:0,608174,102891 -g3724,369:7941493,25122766 -g3724,369:7941493,25122766 -g3724,369:13056577,25122766 -k3724,370:16355988,25122766:2104034 -k3724,370:18460021,25122766:2104033 -) -(3724,371:6630773,25980433:11829248,513147,102891 -h3724,370:6630773,25980433:0,0,0 -r3724,436:6630773,25980433:0,616038,102891 -g3724,370:7941493,25980433 -g3724,370:7941493,25980433 -g3724,370:12661395,25980433 -k3724,371:16158397,25980433:2301625 -k3724,371:18460021,25980433:2301624 -) -(3724,372:6630773,26838100:11829248,513147,102891 -h3724,371:6630773,26838100:0,0,0 -r3724,436:6630773,26838100:0,616038,102891 -g3724,371:7941493,26838100 -g3724,371:7941493,26838100 -g3724,371:12266213,26838100 -k3724,372:15960806,26838100:2499216 -k3724,372:18460021,26838100:2499215 -) -(3724,373:6630773,27695767:11829248,505283,102891 -h3724,372:6630773,27695767:0,0,0 -r3724,436:6630773,27695767:0,608174,102891 -g3724,372:7941493,27695767 -g3724,372:7941493,27695767 -g3724,372:12661395,27695767 -k3724,373:16158397,27695767:2301625 -k3724,373:18460021,27695767:2301624 -) -(3724,374:6630773,28553433:11829248,505283,102891 -h3724,373:6630773,28553433:0,0,0 -r3724,436:6630773,28553433:0,608174,102891 -g3724,373:7941493,28553433 -g3724,373:7941493,28553433 -g3724,373:13056577,28553433 -k3724,374:16355988,28553433:2104034 -k3724,374:18460021,28553433:2104033 -) -(3724,375:6630773,29411100:11829248,505283,102891 -h3724,374:6630773,29411100:0,0,0 -r3724,436:6630773,29411100:0,608174,102891 -g3724,374:7941493,29411100 -g3724,374:7941493,29411100 -g3724,374:12266213,29411100 -k3724,375:15960806,29411100:2499216 -k3724,375:18460021,29411100:2499215 -) -(3724,376:6630773,30268767:11829248,505283,102891 -h3724,375:6630773,30268767:0,0,0 -r3724,436:6630773,30268767:0,608174,102891 -g3724,375:7941493,30268767 -g3724,375:7941493,30268767 -g3724,375:12266213,30268767 -k3724,376:15960806,30268767:2499216 -k3724,376:18460021,30268767:2499215 -) -(3724,377:6630773,31126434:11829248,505283,102891 -h3724,376:6630773,31126434:0,0,0 -r3724,436:6630773,31126434:0,608174,102891 -g3724,376:7941493,31126434 -g3724,376:7941493,31126434 -g3724,376:13056577,31126434 -g3724,376:14624853,31126434 -k3724,377:17140126,31126434:1319896 -k3724,377:18460021,31126434:1319895 -) -(3724,378:6630773,31984100:11829248,505283,102891 -h3724,377:6630773,31984100:0,0,0 -r3724,436:6630773,31984100:0,608174,102891 -g3724,377:7941493,31984100 -g3724,377:7941493,31984100 -g3724,377:13451759,31984100 -g3724,377:15020035,31984100 -k3724,378:17337717,31984100:1122305 -k3724,378:18460021,31984100:1122304 -) -(3724,379:6630773,32841767:11829248,505283,102891 -h3724,378:6630773,32841767:0,0,0 -r3724,436:6630773,32841767:0,608174,102891 -g3724,378:7941493,32841767 -g3724,378:7941493,32841767 -g3724,378:12266213,32841767 -k3724,379:15960806,32841767:2499216 -k3724,379:18460021,32841767:2499215 -) -(3724,380:6630773,33699434:11829248,505283,102891 -h3724,379:6630773,33699434:0,0,0 -r3724,436:6630773,33699434:0,608174,102891 -g3724,379:7941493,33699434 -g3724,379:7941493,33699434 -g3724,379:12661395,33699434 -k3724,380:16158397,33699434:2301625 -k3724,380:18460021,33699434:2301624 -) -(3724,381:6630773,34557101:11829248,505283,102891 -h3724,380:6630773,34557101:0,0,0 -r3724,436:6630773,34557101:0,608174,102891 -g3724,380:7941493,34557101 -g3724,380:7941493,34557101 -g3724,380:11871031,34557101 -k3724,381:15763215,34557101:2696807 -k3724,381:18460021,34557101:2696806 -) -(3724,382:6630773,35414768:11829248,505283,102891 -h3724,381:6630773,35414768:0,0,0 -r3724,436:6630773,35414768:0,608174,102891 -g3724,381:7941493,35414768 -g3724,381:7941493,35414768 -g3724,381:10290302,35414768 -k3724,382:14972850,35414768:3487171 -k3724,382:18460021,35414768:3487171 -) -(3724,383:6630773,36272434:11829248,505283,102891 -h3724,382:6630773,36272434:0,0,0 -r3724,436:6630773,36272434:0,608174,102891 -g3724,382:7941493,36272434 -g3724,382:7941493,36272434 -g3724,382:11475849,36272434 -k3724,383:15366394,36272434:3093627 -k3724,383:18460021,36272434:3093627 -) -(3724,384:6630773,37130101:11829248,505283,102891 -h3724,383:6630773,37130101:0,0,0 -r3724,436:6630773,37130101:0,608174,102891 -g3724,383:7941493,37130101 -g3724,383:7941493,37130101 -g3724,383:11475849,37130101 -k3724,384:15565624,37130101:2894398 -k3724,384:18460021,37130101:2894397 -) -(3724,385:6630773,37987768:11829248,505283,102891 -h3724,384:6630773,37987768:0,0,0 -r3724,436:6630773,37987768:0,608174,102891 -g3724,384:7941493,37987768 -g3724,384:7941493,37987768 -g3724,384:11871031,37987768 -k3724,385:15563985,37987768:2896036 -k3724,385:18460021,37987768:2896036 -) -(3724,386:6630773,38845435:11829248,505283,126483 -h3724,385:6630773,38845435:0,0,0 -r3724,436:6630773,38845435:0,631766,126483 -g3724,385:7941493,38845435 -g3724,385:7941493,38845435 -g3724,385:10290302,38845435 -g3724,385:11460119,38845435 -k3724,386:15358529,38845435:3101492 -k3724,386:18460021,38845435:3101492 -) -(3724,387:6630773,39703102:11829248,505283,126483 -h3724,386:6630773,39703102:0,0,0 -r3724,436:6630773,39703102:0,631766,126483 -g3724,386:7941493,39703102 -g3724,386:7941493,39703102 -g3724,386:11871031,39703102 -k3724,387:15763215,39703102:2696807 -k3724,387:18460021,39703102:2696806 -) -(3724,388:6630773,40560768:11829248,505283,102891 -h3724,387:6630773,40560768:0,0,0 -r3724,436:6630773,40560768:0,608174,102891 -g3724,387:7941493,40560768 -g3724,387:7941493,40560768 -g3724,387:11080667,40560768 -k3724,388:15368033,40560768:3091989 -k3724,388:18460021,40560768:3091988 -) -(3724,389:6630773,41418435:11829248,505283,102891 -h3724,388:6630773,41418435:0,0,0 -r3724,436:6630773,41418435:0,608174,102891 -g3724,388:7941493,41418435 -g3724,388:7941493,41418435 -g3724,388:12661395,41418435 -g3724,388:14229671,41418435 -k3724,389:16942535,41418435:1517487 -k3724,389:18460021,41418435:1517486 -) -(3724,390:6630773,42276102:11829248,505283,102891 -h3724,389:6630773,42276102:0,0,0 -r3724,436:6630773,42276102:0,608174,102891 -g3724,389:7941493,42276102 -g3724,389:7941493,42276102 -g3724,389:10290302,42276102 -k3724,390:14773621,42276102:3686401 -k3724,390:18460021,42276102:3686400 -) -(3724,391:6630773,43133769:11829248,513147,102891 -h3724,390:6630773,43133769:0,0,0 -r3724,436:6630773,43133769:0,616038,102891 -g3724,390:7941493,43133769 -g3724,390:7941493,43133769 -g3724,390:9895120,43133769 -k3724,391:14775259,43133769:3684762 -k3724,391:18460021,43133769:3684762 -) -(3724,392:6630773,43991435:11829248,505283,134348 -h3724,391:6630773,43991435:0,0,0 -r3724,436:6630773,43991435:0,639631,134348 -g3724,391:7941493,43991435 -g3724,391:7941493,43991435 -g3724,391:10290302,43991435 -k3724,392:14972850,43991435:3487171 -k3724,392:18460021,43991435:3487171 -) -(3724,393:6630773,44849102:11829248,505283,134348 -h3724,392:6630773,44849102:0,0,0 -r3724,436:6630773,44849102:0,639631,134348 -g3724,392:7941493,44849102 -g3724,392:7941493,44849102 -g3724,392:13056577,44849102 -k3724,393:16355988,44849102:2104034 -k3724,393:18460021,44849102:2104033 -) -(3724,394:6630773,45706769:11829248,505283,102891 -h3724,393:6630773,45706769:0,0,0 -r3724,436:6630773,45706769:0,608174,102891 -g3724,393:7941493,45706769 -g3724,393:7941493,45706769 -g3724,393:10290302,45706769 -g3724,393:11460119,45706769 -k3724,394:15557759,45706769:2902263 -k3724,394:18460021,45706769:2902262 -) -] -k3724,436:19606901,45706769:1146880 -r3724,436:19606901,45706769:0,40234515,126483 -k3724,436:20753781,45706769:1146880 -[3724,436:20753781,45706769:11829248,40108032,102891 -(3724,395:20753781,6254097:11829248,505283,102891 -h3724,394:20753781,6254097:0,0,0 -r3724,436:20753781,6254097:0,608174,102891 -g3724,394:22064501,6254097 -g3724,394:22064501,6254097 -g3724,394:24413310,6254097 -k3724,395:29095858,6254097:3487171 -k3724,395:32583029,6254097:3487171 -) -(3724,396:20753781,7115699:11829248,505283,102891 -h3724,395:20753781,7115699:0,0,0 -r3724,436:20753781,7115699:0,608174,102891 -g3724,395:22064501,7115699 -g3724,395:22064501,7115699 -g3724,395:25598857,7115699 -k3724,396:29688632,7115699:2894398 -k3724,396:32583029,7115699:2894397 -) -(3724,397:20753781,7977301:11829248,505283,102891 -h3724,396:20753781,7977301:0,0,0 -r3724,436:20753781,7977301:0,608174,102891 -g3724,396:22064501,7977301 -g3724,396:22064501,7977301 -g3724,396:24018128,7977301 -k3724,397:28699038,7977301:3883992 -k3724,397:32583029,7977301:3883991 -) -(3724,398:20753781,8838903:11829248,505283,102891 -h3724,397:20753781,8838903:0,0,0 -r3724,436:20753781,8838903:0,608174,102891 -g3724,397:22064501,8838903 -g3724,397:22064501,8838903 -g3724,397:26784403,8838903 -k3724,398:30281405,8838903:2301625 -k3724,398:32583029,8838903:2301624 -) -(3724,399:20753781,9700506:11829248,505283,102891 -h3724,398:20753781,9700506:0,0,0 -r3724,436:20753781,9700506:0,608174,102891 -g3724,398:22064501,9700506 -g3724,398:22064501,9700506 -g3724,398:25203675,9700506 -g3724,398:26771951,9700506 -g3724,398:28340227,9700506 -k3724,399:31059317,9700506:1523713 -k3724,399:32583029,9700506:1523712 -) -(3724,400:20753781,10562108:11829248,505283,102891 -h3724,399:20753781,10562108:0,0,0 -r3724,436:20753781,10562108:0,608174,102891 -g3724,399:22064501,10562108 -g3724,399:22064501,10562108 -g3724,399:25203675,10562108 -k3724,400:29291811,10562108:3291218 -k3724,400:32583029,10562108:3291218 -) -(3724,401:20753781,11423710:11829248,505283,126483 -h3724,400:20753781,11423710:0,0,0 -r3724,436:20753781,11423710:0,631766,126483 -g3724,400:22064501,11423710 -g3724,400:22064501,11423710 -g3724,400:25203675,11423710 -k3724,401:29491041,11423710:3091989 -k3724,401:32583029,11423710:3091988 -) -(3724,402:20753781,12285312:11829248,505283,102891 -h3724,401:20753781,12285312:0,0,0 -r3724,436:20753781,12285312:0,608174,102891 -g3724,401:22064501,12285312 -g3724,401:22064501,12285312 -g3724,401:24018128,12285312 -k3724,402:28898267,12285312:3684762 -k3724,402:32583029,12285312:3684762 -) -(3724,403:20753781,13146914:11829248,513147,102891 -h3724,402:20753781,13146914:0,0,0 -r3724,436:20753781,13146914:0,616038,102891 -g3724,402:22064501,13146914 -g3724,402:22064501,13146914 -g3724,402:25203675,13146914 -g3724,402:26771951,13146914 -k3724,403:30275179,13146914:2307851 -k3724,403:32583029,13146914:2307850 -) -(3724,404:20753781,14008516:11829248,505283,102891 -h3724,403:20753781,14008516:0,0,0 -r3724,436:20753781,14008516:0,608174,102891 -g3724,403:22064501,14008516 -g3724,403:22064501,14008516 -g3724,403:25598857,14008516 -k3724,404:29688632,14008516:2894398 -k3724,404:32583029,14008516:2894397 -) -(3724,405:20753781,14870119:11829248,505283,126483 -h3724,404:20753781,14870119:0,0,0 -r3724,436:20753781,14870119:0,631766,126483 -g3724,404:22064501,14870119 -g3724,404:22064501,14870119 -g3724,404:25598857,14870119 -k3724,405:29688632,14870119:2894398 -k3724,405:32583029,14870119:2894397 -) -(3724,406:20753781,15731721:11829248,505283,102891 -h3724,405:20753781,15731721:0,0,0 -r3724,436:20753781,15731721:0,608174,102891 -g3724,405:22064501,15731721 -g3724,405:22064501,15731721 -g3724,405:24808493,15731721 -k3724,406:29293450,15731721:3289580 -k3724,406:32583029,15731721:3289579 -) -(3724,407:20753781,16593323:11829248,505283,102891 -h3724,406:20753781,16593323:0,0,0 -r3724,436:20753781,16593323:0,608174,102891 -g3724,406:22064501,16593323 -g3724,406:22064501,16593323 -g3724,406:25994039,16593323 -k3724,407:29886223,16593323:2696807 -k3724,407:32583029,16593323:2696806 -) -(3724,408:20753781,17454925:11829248,505283,102891 -h3724,407:20753781,17454925:0,0,0 -r3724,436:20753781,17454925:0,608174,102891 -g3724,407:22064501,17454925 -g3724,407:22064501,17454925 -g3724,407:30341042,17454925 -k3724,408:32059724,17454925:523305 -k3724,408:32583029,17454925:523305 -) -(3724,409:20753781,18316527:11829248,505283,102891 -h3724,408:20753781,18316527:0,0,0 -r3724,436:20753781,18316527:0,608174,102891 -g3724,408:22064501,18316527 -g3724,408:22064501,18316527 -g3724,408:30341042,18316527 -k3724,409:32059724,18316527:523305 -k3724,409:32583029,18316527:523305 -) -(3724,410:20753781,19178129:11829248,505283,102891 -h3724,409:20753781,19178129:0,0,0 -r3724,436:20753781,19178129:0,608174,102891 -g3724,409:22064501,19178129 -g3724,409:22064501,19178129 -k3724,409:32583029,19178129:860488 -) -(3724,410:23375221,20019617:9207808,485622,102891 -g3724,409:24943497,20019617 -k3724,410:29360952,20019617:3222078 -k3724,410:32583029,20019617:3222077 -) -(3724,411:20753781,20881220:11829248,505283,102891 -h3724,410:20753781,20881220:0,0,0 -r3724,436:20753781,20881220:0,608174,102891 -g3724,410:22064501,20881220 -g3724,410:22064501,20881220 -g3724,410:29550678,20881220 -k3724,411:31664542,20881220:918487 -k3724,411:32583029,20881220:918487 -) -(3724,412:20753781,21742822:11829248,505283,102891 -h3724,411:20753781,21742822:0,0,0 -r3724,436:20753781,21742822:0,608174,102891 -g3724,411:22064501,21742822 -g3724,411:22064501,21742822 -g3724,411:31131406,21742822 -k3724,412:32454906,21742822:128123 -k3724,412:32583029,21742822:128123 -) -(3724,413:20753781,22604424:11829248,505283,102891 -h3724,412:20753781,22604424:0,0,0 -r3724,436:20753781,22604424:0,608174,102891 -g3724,412:22064501,22604424 -g3724,412:22064501,22604424 -g3724,412:31131406,22604424 -k3724,412:32583029,22604424:82576 -) -(3724,413:23375221,23445912:9207808,485622,11795 -k3724,413:28576814,23445912:4006216 -k3724,413:32583029,23445912:4006215 -) -(3724,414:20753781,24307514:11829248,505283,102891 -h3724,413:20753781,24307514:0,0,0 -r3724,436:20753781,24307514:0,608174,102891 -g3724,413:22064501,24307514 -g3724,413:22064501,24307514 -k3724,413:32583029,24307514:1255670 -) -(3724,414:23375221,25149002:9207808,485622,11795 -k3724,414:28576814,25149002:4006216 -k3724,414:32583029,25149002:4006215 -) -(3724,415:20753781,26010604:11829248,505283,134348 -h3724,414:20753781,26010604:0,0,0 -r3724,436:20753781,26010604:0,639631,134348 -g3724,414:22064501,26010604 -g3724,414:22064501,26010604 -g3724,414:31131406,26010604 -k3724,414:32583029,26010604:82576 -) -(3724,415:23375221,26852092:9207808,485622,11795 -k3724,415:28576814,26852092:4006216 -k3724,415:32583029,26852092:4006215 -) -(3724,416:20753781,27713694:11829248,505283,134348 -h3724,415:20753781,27713694:0,0,0 -r3724,436:20753781,27713694:0,639631,134348 -g3724,415:22064501,27713694 -g3724,415:22064501,27713694 -k3724,415:32583029,27713694:1255670 -) -(3724,416:23375221,28555182:9207808,485622,11795 -k3724,416:28576814,28555182:4006216 -k3724,416:32583029,28555182:4006215 -) -(3724,417:20753781,29416785:11829248,505283,134348 -h3724,416:20753781,29416785:0,0,0 -r3724,436:20753781,29416785:0,639631,134348 -g3724,416:22064501,29416785 -g3724,416:22064501,29416785 -k3724,416:32583029,29416785:1255670 -) -(3724,417:23375221,30258273:9207808,485622,11795 -k3724,417:28576814,30258273:4006216 -k3724,417:32583029,30258273:4006215 -) -(3724,418:20753781,31119875:11829248,505283,134348 -h3724,417:20753781,31119875:0,0,0 -r3724,436:20753781,31119875:0,639631,134348 -g3724,417:22064501,31119875 -g3724,417:22064501,31119875 -g3724,417:29550678,31119875 -k3724,418:31664542,31119875:918487 -k3724,418:32583029,31119875:918487 -) -(3724,419:20753781,31981477:11829248,505283,102891 -h3724,418:20753781,31981477:0,0,0 -r3724,436:20753781,31981477:0,608174,102891 -g3724,418:22064501,31981477 -g3724,418:22064501,31981477 -g3724,418:29155496,31981477 -k3724,419:31466951,31981477:1116078 -k3724,419:32583029,31981477:1116078 -) -(3724,420:20753781,32843079:11829248,505283,126483 -h3724,419:20753781,32843079:0,0,0 -r3724,436:20753781,32843079:0,631766,126483 -g3724,419:22064501,32843079 -g3724,419:22064501,32843079 -g3724,419:31131406,32843079 -k3724,419:32583029,32843079:82576 -) -(3724,420:23375221,33684567:9207808,485622,11795 -k3724,420:28576814,33684567:4006216 -k3724,420:32583029,33684567:4006215 -) -(3724,421:20753781,34546169:11829248,505283,102891 -h3724,420:20753781,34546169:0,0,0 -r3724,436:20753781,34546169:0,608174,102891 -g3724,420:22064501,34546169 -g3724,420:22064501,34546169 -k3724,420:32583029,34546169:1255670 -) -(3724,421:23375221,35387657:9207808,485622,11795 -k3724,421:28576814,35387657:4006216 -k3724,421:32583029,35387657:4006215 -) -(3724,422:20753781,36249259:11829248,505283,102891 -h3724,421:20753781,36249259:0,0,0 -r3724,436:20753781,36249259:0,608174,102891 -g3724,421:22064501,36249259 -g3724,421:22064501,36249259 -k3724,421:32583029,36249259:1255670 -) -(3724,422:23375221,37090747:9207808,485622,11795 -k3724,422:28576814,37090747:4006216 -k3724,422:32583029,37090747:4006215 -) -(3724,423:20753781,37952350:11829248,513147,126483 -h3724,422:20753781,37952350:0,0,0 -r3724,436:20753781,37952350:0,639630,126483 -g3724,422:22064501,37952350 -g3724,422:22064501,37952350 -g3724,422:30736224,37952350 -k3724,423:32257315,37952350:325714 -k3724,423:32583029,37952350:325714 -) -(3724,424:20753781,38813952:11829248,505283,102891 -h3724,423:20753781,38813952:0,0,0 -r3724,436:20753781,38813952:0,608174,102891 -g3724,423:22064501,38813952 -g3724,423:22064501,38813952 -g3724,423:30341042,38813952 -k3724,424:32059724,38813952:523305 -k3724,424:32583029,38813952:523305 -) -(3724,425:20753781,39675554:11829248,505283,102891 -h3724,424:20753781,39675554:0,0,0 -r3724,436:20753781,39675554:0,608174,102891 -g3724,424:22064501,39675554 -g3724,424:22064501,39675554 -g3724,424:29550678,39675554 -k3724,425:31664542,39675554:918487 -k3724,425:32583029,39675554:918487 -) -(3724,426:20753781,40537156:11829248,505283,134348 -h3724,425:20753781,40537156:0,0,0 -r3724,436:20753781,40537156:0,639631,134348 -g3724,425:22064501,40537156 -g3724,425:22064501,40537156 -g3724,425:28365131,40537156 -k3724,426:31071769,40537156:1511261 -k3724,426:32583029,40537156:1511260 -) -(3724,427:20753781,41398758:11829248,505283,102891 -h3724,426:20753781,41398758:0,0,0 -r3724,436:20753781,41398758:0,608174,102891 -g3724,426:22064501,41398758 -g3724,426:22064501,41398758 -g3724,426:29155496,41398758 -k3724,427:31466951,41398758:1116078 -k3724,427:32583029,41398758:1116078 -) -(3724,428:20753781,42260360:11829248,505283,126483 -h3724,427:20753781,42260360:0,0,0 -r3724,436:20753781,42260360:0,631766,126483 -g3724,427:22064501,42260360 -g3724,427:22064501,42260360 -g3724,427:30341042,42260360 -k3724,428:32059724,42260360:523305 -k3724,428:32583029,42260360:523305 -) -(3724,429:20753781,43121963:11829248,505283,134348 -h3724,428:20753781,43121963:0,0,0 -r3724,436:20753781,43121963:0,639631,134348 -g3724,428:22064501,43121963 -g3724,428:22064501,43121963 -g3724,428:27574767,43121963 -k3724,429:30676587,43121963:1906443 -k3724,429:32583029,43121963:1906442 -) -(3724,430:20753781,43983565:11829248,505283,134348 -h3724,429:20753781,43983565:0,0,0 -r3724,436:20753781,43983565:0,639631,134348 -g3724,429:22064501,43983565 -g3724,429:22064501,43983565 -g3724,429:28365131,43983565 -g3724,429:29933407,43983565 -k3724,430:31855907,43983565:727123 -k3724,430:32583029,43983565:727122 -) -(3724,431:20753781,44845167:11829248,505283,102891 -h3724,430:20753781,44845167:0,0,0 -r3724,436:20753781,44845167:0,608174,102891 -g3724,430:22064501,44845167 -g3724,430:22064501,44845167 -g3724,430:24018128,44845167 -g3724,430:25586404,44845167 -k3724,431:29682405,44845167:2900624 -k3724,431:32583029,44845167:2900624 -) -(3724,432:20753781,45706769:11829248,505283,102891 -h3724,431:20753781,45706769:0,0,0 -r3724,436:20753781,45706769:0,608174,102891 -g3724,431:22064501,45706769 -g3724,431:22064501,45706769 -g3724,431:25598857,45706769 -k3724,432:29688632,45706769:2894398 -k3724,432:32583029,45706769:2894397 -) -] -(3724,436:32583029,45706769:0,355205,126483 -h3724,436:32583029,45706769:420741,355205,126483 -k3724,436:32583029,45706769:-420741 -) -) -] -(3724,436:32583029,45706769:0,0,0 -g3724,436:32583029,45706769 -) -) -] -(3724,436:6630773,47279633:25952256,0,0 -h3724,436:6630773,47279633:25952256,0,0 -) -] -(3724,436:4262630,4025873:0,0,0 -[3724,436:-473656,4025873:0,0,0 -(3724,436:-473656,-710413:0,0,0 -(3724,436:-473656,-710413:0,0,0 -g3724,436:-473656,-710413 -) -g3724,436:-473656,-710413 -) -] -) -] -!29249 -}454 +[3765,423:3078558,4812305:0,0,0 +(3765,423:3078558,49800853:0,16384,2228224 +g3765,423:29030814,49800853 +g3765,423:36135244,49800853 +(3765,1:36135244,49800853:1720320,16384,2228224 +(3765,1:36135244,52029077:16384,1703936,0 +[3765,1:36135244,52029077:25952256,1703936,0 +(3765,1:36135244,51504789:25952256,1179648,0 +(3765,1:36135244,51504789:16384,1179648,0 +r3765,423:36151628,51504789:16384,1179648,0 +) +k3765,1:62087500,51504789:25935872 +g3765,1:62087500,51504789 +) +] +) +g3765,1:36675916,49800853 +(3765,1:36675916,49800853:1179648,16384,0 +r3765,423:37855564,49800853:1179648,16384,0 +) +) +k3765,423:3078556,49800853:-34777008 +) +] +g3765,423:6630773,4812305 +g3765,423:6630773,4812305 +g3765,423:8528695,4812305 +g3765,423:9343962,4812305 +g3765,423:9957379,4812305 +g3765,423:12300946,4812305 +g3765,423:13256460,4812305 +g3765,423:16329443,4812305 +k3765,423:31387652,4812305:15058209 +) +) +] +[3765,423:6630773,45706769:25952256,40108032,0 +(3765,423:6630773,45706769:25952256,40108032,0 +(3765,423:6630773,45706769:0,0,0 +g3765,423:6630773,45706769 +) +[3765,423:6630773,45706769:25952256,40108032,0 +(3765,423:6630773,45706769:25952256,40108032,126483 +[3765,423:6630773,45706769:11829248,40108032,102891 +(3765,336:6630773,6254097:11829248,530548,132808 +h3765,335:6630773,6254097:0,0,0 +r3765,423:6630773,6254097:0,663356,132808 +g3765,335:7941493,6254097 +g3765,335:7941493,6254097 +g3765,335:11218989,6254097 +g3765,335:12787265,6254097 +k3765,336:16221332,6254097:2238690 +k3765,336:18460021,6254097:2238689 +) +(3765,337:6630773,7131365:11829248,530548,132808 +h3765,336:6630773,7131365:0,0,0 +r3765,423:6630773,7131365:0,663356,132808 +g3765,336:7941493,7131365 +g3765,336:7941493,7131365 +g3765,336:10804046,7131365 +k3765,337:15229722,7131365:3230299 +k3765,337:18460021,7131365:3230299 +) +(3765,338:6630773,8008632:11829248,530548,132808 +h3765,337:6630773,8008632:0,0,0 +r3765,423:6630773,8008632:0,663356,132808 +g3765,337:7941493,8008632 +g3765,337:7941493,8008632 +g3765,337:16198298,8008632 +k3765,337:18460021,8008632:892676 +) +(3765,338:9252213,8873712:9207808,485622,11795 +k3765,338:14453806,8873712:4006216 +k3765,338:18460021,8873712:4006215 +) +(3765,339:6630773,9750980:11829248,530548,141066 +h3765,338:6630773,9750980:0,0,0 +r3765,423:6630773,9750980:0,671614,141066 +g3765,338:7941493,9750980 +g3765,338:7941493,9750980 +g3765,338:15368413,9750980 +k3765,339:17511906,9750980:948116 +k3765,339:18460021,9750980:948115 +) +(3765,340:6630773,10628248:11829248,530548,132808 +h3765,339:6630773,10628248:0,0,0 +r3765,423:6630773,10628248:0,663356,132808 +g3765,339:7941493,10628248 +g3765,339:7941493,10628248 +g3765,339:14953471,10628248 +k3765,340:17304435,10628248:1155587 +k3765,340:18460021,10628248:1155586 +) +(3765,341:6630773,11505516:11829248,530548,132808 +h3765,340:6630773,11505516:0,0,0 +r3765,423:6630773,11505516:0,663356,132808 +g3765,340:7941493,11505516 +g3765,340:7941493,11505516 +g3765,340:11218989,11505516 +k3765,341:15437194,11505516:3022828 +k3765,341:18460021,11505516:3022827 +) +(3765,342:6630773,12382783:11829248,530548,132808 +h3765,341:6630773,12382783:0,0,0 +r3765,423:6630773,12382783:0,663356,132808 +g3765,341:7941493,12382783 +g3765,341:7941493,12382783 +g3765,341:11633931,12382783 +g3765,341:13202207,12382783 +k3765,342:16428803,12382783:2031219 +k3765,342:18460021,12382783:2031218 +) +(3765,343:6630773,13260051:11829248,530548,132808 +h3765,342:6630773,13260051:0,0,0 +r3765,423:6630773,13260051:0,663356,132808 +g3765,342:7941493,13260051 +g3765,342:7941493,13260051 +g3765,342:12048874,13260051 +g3765,342:13617150,13260051 +k3765,343:16636274,13260051:1823747 +k3765,343:18460021,13260051:1823747 +) +(3765,344:6630773,14137319:11829248,530548,132808 +h3765,343:6630773,14137319:0,0,0 +r3765,423:6630773,14137319:0,663356,132808 +g3765,343:7941493,14137319 +g3765,343:7941493,14137319 +g3765,343:14538528,14137319 +k3765,344:17096963,14137319:1363058 +k3765,344:18460021,14137319:1363058 +) +(3765,346:6630773,15014586:11829248,530548,132808 +h3765,344:6630773,15014586:0,0,0 +r3765,423:6630773,15014586:0,663356,132808 +g3765,344:7941493,15014586 +g3765,344:7941493,15014586 +g3765,344:11218989,15014586 +g3765,344:12388806,15014586 +g3765,344:13558623,15014586 +g3765,344:14728440,15014586 +g3765,344:15898257,15014586 +k3765,344:18460021,15014586:1192717 +) +(3765,346:9252213,15879666:9207808,485622,102891 +g3765,344:10820489,15879666 +g3765,344:12388765,15879666 +g3765,344:13957041,15879666 +g3765,345:15525317,15879666 +g3765,345:17093593,15879666 +k3765,346:18374496,15879666:85526 +k3765,346:18460021,15879666:85525 +) +(3765,347:6630773,16756934:11829248,530548,132808 +h3765,346:6630773,16756934:0,0,0 +r3765,423:6630773,16756934:0,663356,132808 +g3765,346:7941493,16756934 +g3765,346:7941493,16756934 +g3765,346:10804046,16756934 +k3765,347:15229722,16756934:3230299 +k3765,347:18460021,16756934:3230299 +) +(3765,348:6630773,17634202:11829248,530548,132808 +h3765,347:6630773,17634202:0,0,0 +r3765,423:6630773,17634202:0,663356,132808 +g3765,347:7941493,17634202 +g3765,347:7941493,17634202 +g3765,347:9974162,17634202 +g3765,347:11542438,17634202 +g3765,347:13110714,17634202 +k3765,348:16383056,17634202:2076965 +k3765,348:18460021,17634202:2076965 +) +(3765,349:6630773,18511470:11829248,538806,132808 +h3765,348:6630773,18511470:0,0,0 +r3765,423:6630773,18511470:0,671614,132808 +g3765,348:7941493,18511470 +g3765,348:7941493,18511470 +g3765,348:11218989,18511470 +k3765,349:15437194,18511470:3022828 +k3765,349:18460021,18511470:3022827 +) +(3765,350:6630773,19388737:11829248,530548,132808 +h3765,349:6630773,19388737:0,0,0 +r3765,423:6630773,19388737:0,663356,132808 +g3765,349:7941493,19388737 +g3765,349:7941493,19388737 +g3765,349:11633931,19388737 +k3765,350:15644665,19388737:2815357 +k3765,350:18460021,19388737:2815356 +) +(3765,351:6630773,20266005:11829248,530548,132808 +h3765,350:6630773,20266005:0,0,0 +r3765,423:6630773,20266005:0,663356,132808 +g3765,350:7941493,20266005 +g3765,350:7941493,20266005 +g3765,350:11633931,20266005 +k3765,351:15644665,20266005:2815357 +k3765,351:18460021,20266005:2815356 +) +(3765,352:6630773,21143273:11829248,538806,132808 +h3765,351:6630773,21143273:0,0,0 +r3765,423:6630773,21143273:0,671614,132808 +g3765,351:7941493,21143273 +g3765,351:7941493,21143273 +g3765,351:9974162,21143273 +k3765,352:14814780,21143273:3645241 +k3765,352:18460021,21143273:3645241 +) +(3765,353:6630773,22020541:11829248,530548,132808 +h3765,352:6630773,22020541:0,0,0 +r3765,423:6630773,22020541:0,663356,132808 +g3765,352:7941493,22020541 +g3765,352:7941493,22020541 +g3765,352:11633931,22020541 +k3765,353:15644665,22020541:2815357 +k3765,353:18460021,22020541:2815356 +) +(3765,354:6630773,22897808:11829248,530548,132808 +h3765,353:6630773,22897808:0,0,0 +r3765,423:6630773,22897808:0,663356,132808 +g3765,353:7941493,22897808 +g3765,353:7941493,22897808 +g3765,353:12878759,22897808 +k3765,354:16267079,22897808:2192943 +k3765,354:18460021,22897808:2192942 +) +(3765,355:6630773,23775076:11829248,530548,132808 +h3765,354:6630773,23775076:0,0,0 +r3765,423:6630773,23775076:0,663356,132808 +g3765,354:7941493,23775076 +g3765,354:7941493,23775076 +g3765,354:11218989,23775076 +g3765,354:12787265,23775076 +k3765,355:16221332,23775076:2238690 +k3765,355:18460021,23775076:2238689 +) +(3765,356:6630773,24652344:11829248,530548,132808 +h3765,355:6630773,24652344:0,0,0 +r3765,423:6630773,24652344:0,663356,132808 +g3765,355:7941493,24652344 +g3765,355:7941493,24652344 +g3765,355:11218989,24652344 +k3765,356:15437194,24652344:3022828 +k3765,356:18460021,24652344:3022827 +) +(3765,357:6630773,25529611:11829248,530548,132808 +h3765,356:6630773,25529611:0,0,0 +r3765,423:6630773,25529611:0,663356,132808 +g3765,356:7941493,25529611 +g3765,356:7941493,25529611 +g3765,356:9974162,25529611 +k3765,357:14814780,25529611:3645241 +k3765,357:18460021,25529611:3645241 +) +(3765,358:6630773,26406879:11829248,530548,132808 +h3765,357:6630773,26406879:0,0,0 +r3765,423:6630773,26406879:0,663356,132808 +g3765,357:7941493,26406879 +g3765,357:7941493,26406879 +g3765,357:12463816,26406879 +k3765,358:16059607,26406879:2400414 +k3765,358:18460021,26406879:2400414 +) +(3765,359:6630773,27284147:11829248,538806,132808 +h3765,358:6630773,27284147:0,0,0 +r3765,423:6630773,27284147:0,671614,132808 +g3765,358:7941493,27284147 +g3765,358:7941493,27284147 +g3765,358:11218989,27284147 +k3765,359:15437194,27284147:3022828 +k3765,359:18460021,27284147:3022827 +) +(3765,360:6630773,28161415:11829248,530548,141066 +h3765,359:6630773,28161415:0,0,0 +r3765,423:6630773,28161415:0,671614,141066 +g3765,359:7941493,28161415 +g3765,359:7941493,28161415 +g3765,359:11218989,28161415 +k3765,360:15437194,28161415:3022828 +k3765,360:18460021,28161415:3022827 +) +(3765,361:6630773,29038682:11829248,530548,102891 +h3765,360:6630773,29038682:0,0,0 +r3765,423:6630773,29038682:0,633439,102891 +g3765,360:7941493,29038682 +g3765,360:7941493,29038682 +g3765,360:11633931,29038682 +k3765,361:15644665,29038682:2815357 +k3765,361:18460021,29038682:2815356 +) +(3765,362:6630773,29915950:11829248,530548,132808 +h3765,361:6630773,29915950:0,0,0 +r3765,423:6630773,29915950:0,663356,132808 +g3765,361:7941493,29915950 +g3765,361:7941493,29915950 +g3765,361:11633931,29915950 +k3765,362:15644665,29915950:2815357 +k3765,362:18460021,29915950:2815356 +) +(3765,363:6630773,30793218:11829248,530548,102891 +h3765,362:6630773,30793218:0,0,0 +r3765,423:6630773,30793218:0,633439,102891 +g3765,362:7941493,30793218 +g3765,362:7941493,30793218 +g3765,362:12463816,30793218 +k3765,363:16821135,30793218:1638886 +k3765,363:18460021,30793218:1638886 +) +(3765,364:6630773,31670485:11829248,530548,102891 +h3765,363:6630773,31670485:0,0,0 +r3765,423:6630773,31670485:0,633439,102891 +g3765,363:7941493,31670485 +g3765,363:7941493,31670485 +g3765,363:12878759,31670485 +k3765,364:17028607,31670485:1431415 +k3765,364:18460021,31670485:1431414 +) +(3765,365:6630773,32547753:11829248,538806,102891 +h3765,364:6630773,32547753:0,0,0 +r3765,423:6630773,32547753:0,641697,102891 +g3765,364:7941493,32547753 +g3765,364:7941493,32547753 +g3765,364:14123586,32547753 +g3765,364:15691862,32547753 +k3765,365:17673630,32547753:786391 +k3765,365:18460021,32547753:786391 +) +(3765,366:6630773,33425021:11829248,538806,102891 +h3765,365:6630773,33425021:0,0,0 +r3765,423:6630773,33425021:0,641697,102891 +g3765,365:7941493,33425021 +g3765,365:7941493,33425021 +g3765,365:12463816,33425021 +k3765,366:16059607,33425021:2400414 +k3765,366:18460021,33425021:2400414 +) +(3765,367:6630773,34302289:11829248,530548,132808 +h3765,366:6630773,34302289:0,0,0 +r3765,423:6630773,34302289:0,663356,132808 +g3765,366:7941493,34302289 +g3765,366:7941493,34302289 +g3765,366:12878759,34302289 +k3765,367:16267079,34302289:2192943 +k3765,367:18460021,34302289:2192942 +) +(3765,368:6630773,35179556:11829248,530548,132808 +h3765,367:6630773,35179556:0,0,0 +r3765,423:6630773,35179556:0,663356,132808 +g3765,367:7941493,35179556 +g3765,367:7941493,35179556 +g3765,367:13708644,35179556 +k3765,368:16682021,35179556:1778000 +k3765,368:18460021,35179556:1778000 +) +(3765,369:6630773,36056824:11829248,530548,102891 +h3765,368:6630773,36056824:0,0,0 +r3765,423:6630773,36056824:0,633439,102891 +g3765,368:7941493,36056824 +g3765,368:7941493,36056824 +g3765,368:13293701,36056824 +g3765,368:14861977,36056824 +k3765,369:18020216,36056824:439806 +k3765,369:18460021,36056824:439805 +) +(3765,370:6630773,36934092:11829248,530548,102891 +h3765,369:6630773,36934092:0,0,0 +r3765,423:6630773,36934092:0,633439,102891 +g3765,369:7941493,36934092 +g3765,369:7941493,36934092 +g3765,369:12878759,36934092 +k3765,370:16267079,36934092:2192943 +k3765,370:18460021,36934092:2192942 +) +(3765,371:6630773,37811360:11829248,530548,102891 +h3765,370:6630773,37811360:0,0,0 +r3765,423:6630773,37811360:0,633439,102891 +g3765,370:7941493,37811360 +g3765,370:7941493,37811360 +g3765,370:12463816,37811360 +g3765,370:14032092,37811360 +k3765,371:16843745,37811360:1616276 +k3765,371:18460021,37811360:1616276 +) +(3765,372:6630773,38688627:11829248,530548,102891 +h3765,371:6630773,38688627:0,0,0 +r3765,423:6630773,38688627:0,633439,102891 +g3765,371:7941493,38688627 +g3765,371:7941493,38688627 +g3765,371:13293701,38688627 +k3765,372:16474550,38688627:1985472 +k3765,372:18460021,38688627:1985471 +) +(3765,373:6630773,39565895:11829248,530548,102891 +h3765,372:6630773,39565895:0,0,0 +r3765,423:6630773,39565895:0,633439,102891 +g3765,372:7941493,39565895 +g3765,372:7941493,39565895 +g3765,372:13293701,39565895 +k3765,373:16474550,39565895:1985472 +k3765,373:18460021,39565895:1985471 +) +(3765,374:6630773,40443163:11829248,538806,102891 +h3765,373:6630773,40443163:0,0,0 +r3765,423:6630773,40443163:0,641697,102891 +g3765,373:7941493,40443163 +g3765,373:7941493,40443163 +g3765,373:12878759,40443163 +k3765,374:16267079,40443163:2192943 +k3765,374:18460021,40443163:2192942 +) +(3765,375:6630773,41320430:11829248,538806,102891 +h3765,374:6630773,41320430:0,0,0 +r3765,423:6630773,41320430:0,641697,102891 +g3765,374:7941493,41320430 +g3765,374:7941493,41320430 +g3765,374:12463816,41320430 +k3765,375:16059607,41320430:2400414 +k3765,375:18460021,41320430:2400414 +) +(3765,376:6630773,42197698:11829248,530548,102891 +h3765,375:6630773,42197698:0,0,0 +r3765,423:6630773,42197698:0,633439,102891 +g3765,375:7941493,42197698 +g3765,375:7941493,42197698 +g3765,375:12878759,42197698 +k3765,376:16267079,42197698:2192943 +k3765,376:18460021,42197698:2192942 +) +(3765,377:6630773,43074966:11829248,530548,102891 +h3765,376:6630773,43074966:0,0,0 +r3765,423:6630773,43074966:0,633439,102891 +g3765,376:7941493,43074966 +g3765,376:7941493,43074966 +g3765,376:13293701,43074966 +k3765,377:16474550,43074966:1985472 +k3765,377:18460021,43074966:1985471 +) +(3765,378:6630773,43952234:11829248,530548,102891 +h3765,377:6630773,43952234:0,0,0 +r3765,423:6630773,43952234:0,633439,102891 +g3765,377:7941493,43952234 +g3765,377:7941493,43952234 +g3765,377:12463816,43952234 +k3765,378:16059607,43952234:2400414 +k3765,378:18460021,43952234:2400414 +) +(3765,379:6630773,44829501:11829248,530548,102891 +h3765,378:6630773,44829501:0,0,0 +r3765,423:6630773,44829501:0,633439,102891 +g3765,378:7941493,44829501 +g3765,378:7941493,44829501 +g3765,378:12463816,44829501 +k3765,379:16059607,44829501:2400414 +k3765,379:18460021,44829501:2400414 +) +(3765,380:6630773,45706769:11829248,530548,102891 +h3765,379:6630773,45706769:0,0,0 +r3765,423:6630773,45706769:0,633439,102891 +g3765,379:7941493,45706769 +g3765,379:7941493,45706769 +g3765,379:13293701,45706769 +g3765,379:14861977,45706769 +k3765,380:17258688,45706769:1201334 +k3765,380:18460021,45706769:1201333 +) +] +k3765,423:19606901,45706769:1146880 +r3765,423:19606901,45706769:0,40234515,126483 +k3765,423:20753781,45706769:1146880 +[3765,423:20753781,45706769:11829248,40108032,11795 +(3765,381:20753781,6254097:11829248,530548,102891 +h3765,380:20753781,6254097:0,0,0 +r3765,423:20753781,6254097:0,633439,102891 +g3765,380:22064501,6254097 +g3765,380:22064501,6254097 +g3765,380:27831652,6254097 +g3765,380:29399928,6254097 +k3765,381:31589167,6254097:993862 +k3765,381:32583029,6254097:993862 +) +(3765,382:20753781,7155734:11829248,530548,102891 +h3765,381:20753781,7155734:0,0,0 +r3765,423:20753781,7155734:0,633439,102891 +g3765,381:22064501,7155734 +g3765,381:22064501,7155734 +g3765,381:26586824,7155734 +k3765,382:30182615,7155734:2400414 +k3765,382:32583029,7155734:2400414 +) +(3765,383:20753781,8057370:11829248,530548,102891 +h3765,382:20753781,8057370:0,0,0 +r3765,423:20753781,8057370:0,633439,102891 +g3765,382:22064501,8057370 +g3765,382:22064501,8057370 +g3765,382:27001767,8057370 +k3765,383:30390087,8057370:2192943 +k3765,383:32583029,8057370:2192942 +) +(3765,384:20753781,8959007:11829248,530548,102891 +h3765,383:20753781,8959007:0,0,0 +r3765,423:20753781,8959007:0,633439,102891 +g3765,383:22064501,8959007 +g3765,383:22064501,8959007 +g3765,383:26171882,8959007 +k3765,384:29975144,8959007:2607885 +k3765,384:32583029,8959007:2607885 +) +(3765,385:20753781,9860644:11829248,530548,102891 +h3765,384:20753781,9860644:0,0,0 +r3765,423:20753781,9860644:0,633439,102891 +g3765,384:22064501,9860644 +g3765,384:22064501,9860644 +g3765,384:24512112,9860644 +k3765,385:29145259,9860644:3437770 +k3765,385:32583029,9860644:3437770 +) +(3765,386:20753781,10762280:11829248,530548,102891 +h3765,385:20753781,10762280:0,0,0 +r3765,423:20753781,10762280:0,633439,102891 +g3765,385:22064501,10762280 +g3765,385:22064501,10762280 +g3765,385:25756939,10762280 +g3765,385:26926756,10762280 +k3765,386:30153352,10762280:2429678 +k3765,386:32583029,10762280:2429677 +) +(3765,387:20753781,11663917:11829248,530548,102891 +h3765,386:20753781,11663917:0,0,0 +r3765,423:20753781,11663917:0,633439,102891 +g3765,386:22064501,11663917 +g3765,386:22064501,11663917 +g3765,386:25756939,11663917 +k3765,387:29767673,11663917:2815357 +k3765,387:32583029,11663917:2815356 +) +(3765,388:20753781,12565553:11829248,530548,102891 +h3765,387:20753781,12565553:0,0,0 +r3765,423:20753781,12565553:0,633439,102891 +g3765,387:22064501,12565553 +g3765,387:22064501,12565553 +g3765,387:26171882,12565553 +k3765,388:29775915,12565553:2807115 +k3765,388:32583029,12565553:2807114 +) +(3765,389:20753781,13467190:11829248,530548,132808 +h3765,388:20753781,13467190:0,0,0 +r3765,423:20753781,13467190:0,663356,132808 +g3765,388:22064501,13467190 +g3765,388:22064501,13467190 +g3765,388:24512112,13467190 +g3765,388:25681929,13467190 +k3765,389:29530938,13467190:3052091 +k3765,389:32583029,13467190:3052091 +) +(3765,390:20753781,14368827:11829248,530548,132808 +h3765,389:20753781,14368827:0,0,0 +r3765,423:20753781,14368827:0,663356,132808 +g3765,389:22064501,14368827 +g3765,389:22064501,14368827 +g3765,389:26171882,14368827 +k3765,390:29975144,14368827:2607885 +k3765,390:32583029,14368827:2607885 +) +(3765,391:20753781,15270463:11829248,530548,102891 +h3765,390:20753781,15270463:0,0,0 +r3765,423:20753781,15270463:0,633439,102891 +g3765,390:22064501,15270463 +g3765,390:22064501,15270463 +g3765,390:25341997,15270463 +k3765,391:29560202,15270463:3022828 +k3765,391:32583029,15270463:3022827 +) +(3765,392:20753781,16172100:11829248,530548,102891 +h3765,391:20753781,16172100:0,0,0 +r3765,423:20753781,16172100:0,633439,102891 +g3765,391:22064501,16172100 +g3765,391:22064501,16172100 +g3765,391:27001767,16172100 +g3765,391:28570043,16172100 +k3765,392:31174225,16172100:1408805 +k3765,392:32583029,16172100:1408804 +) +(3765,393:20753781,17073737:11829248,530548,102891 +h3765,392:20753781,17073737:0,0,0 +r3765,423:20753781,17073737:0,633439,102891 +g3765,392:22064501,17073737 +g3765,392:22064501,17073737 +g3765,392:24512112,17073737 +k3765,393:28946030,17073737:3637000 +k3765,393:32583029,17073737:3636999 +) +(3765,394:20753781,17975373:11829248,538806,102891 +h3765,393:20753781,17975373:0,0,0 +r3765,423:20753781,17975373:0,641697,102891 +g3765,393:22064501,17975373 +g3765,393:22064501,17975373 +g3765,393:24097170,17975373 +k3765,394:28937788,17975373:3645241 +k3765,394:32583029,17975373:3645241 +) +(3765,395:20753781,18877010:11829248,530548,141066 +h3765,394:20753781,18877010:0,0,0 +r3765,423:20753781,18877010:0,671614,141066 +g3765,394:22064501,18877010 +g3765,394:22064501,18877010 +g3765,394:24512112,18877010 +k3765,395:29145259,18877010:3437770 +k3765,395:32583029,18877010:3437770 +) +(3765,396:20753781,19778646:11829248,530548,141066 +h3765,395:20753781,19778646:0,0,0 +r3765,423:20753781,19778646:0,671614,141066 +g3765,395:22064501,19778646 +g3765,395:22064501,19778646 +g3765,395:27416709,19778646 +k3765,396:30597558,19778646:1985472 +k3765,396:32583029,19778646:1985471 +) +(3765,397:20753781,20680283:11829248,530548,102891 +h3765,396:20753781,20680283:0,0,0 +r3765,423:20753781,20680283:0,633439,102891 +g3765,396:22064501,20680283 +g3765,396:22064501,20680283 +g3765,396:24512112,20680283 +g3765,396:25681929,20680283 +k3765,397:29730168,20680283:2852862 +k3765,397:32583029,20680283:2852861 +) +(3765,398:20753781,21581920:11829248,530548,102891 +h3765,397:20753781,21581920:0,0,0 +r3765,423:20753781,21581920:0,633439,102891 +g3765,397:22064501,21581920 +g3765,397:22064501,21581920 +g3765,397:24512112,21581920 +k3765,398:29145259,21581920:3437770 +k3765,398:32583029,21581920:3437770 +) +(3765,399:20753781,22483556:11829248,530548,102891 +h3765,398:20753781,22483556:0,0,0 +r3765,423:20753781,22483556:0,633439,102891 +g3765,398:22064501,22483556 +g3765,398:22064501,22483556 +g3765,398:25756939,22483556 +k3765,399:29767673,22483556:2815357 +k3765,399:32583029,22483556:2815356 +) +(3765,400:20753781,23385193:11829248,530548,102891 +h3765,399:20753781,23385193:0,0,0 +r3765,423:20753781,23385193:0,633439,102891 +g3765,399:22064501,23385193 +g3765,399:22064501,23385193 +g3765,399:24097170,23385193 +k3765,400:28738559,23385193:3844471 +k3765,400:32583029,23385193:3844470 +) +(3765,401:20753781,24286830:11829248,530548,102891 +h3765,400:20753781,24286830:0,0,0 +r3765,423:20753781,24286830:0,633439,102891 +g3765,400:22064501,24286830 +g3765,400:22064501,24286830 +g3765,400:27001767,24286830 +k3765,401:30390087,24286830:2192943 +k3765,401:32583029,24286830:2192942 +) +(3765,402:20753781,25188466:11829248,530548,102891 +h3765,401:20753781,25188466:0,0,0 +r3765,423:20753781,25188466:0,633439,102891 +g3765,401:22064501,25188466 +g3765,401:22064501,25188466 +g3765,401:25341997,25188466 +g3765,401:26910273,25188466 +g3765,401:28478549,25188466 +k3765,402:31128478,25188466:1454552 +k3765,402:32583029,25188466:1454551 +) +(3765,403:20753781,26090103:11829248,530548,102891 +h3765,402:20753781,26090103:0,0,0 +r3765,423:20753781,26090103:0,633439,102891 +g3765,402:22064501,26090103 +g3765,402:22064501,26090103 +g3765,402:25341997,26090103 +k3765,403:29360972,26090103:3222057 +k3765,403:32583029,26090103:3222057 +) +(3765,404:20753781,26991740:11829248,530548,132808 +h3765,403:20753781,26991740:0,0,0 +r3765,423:20753781,26991740:0,663356,132808 +g3765,403:22064501,26991740 +g3765,403:22064501,26991740 +g3765,403:25341997,26991740 +k3765,404:29560202,26991740:3022828 +k3765,404:32583029,26991740:3022827 +) +(3765,405:20753781,27893376:11829248,530548,102891 +h3765,404:20753781,27893376:0,0,0 +r3765,423:20753781,27893376:0,633439,102891 +g3765,404:22064501,27893376 +g3765,404:22064501,27893376 +g3765,404:24097170,27893376 +k3765,405:28937788,27893376:3645241 +k3765,405:32583029,27893376:3645241 +) +(3765,406:20753781,28795013:11829248,538806,102891 +h3765,405:20753781,28795013:0,0,0 +r3765,423:20753781,28795013:0,641697,102891 +g3765,405:22064501,28795013 +g3765,405:22064501,28795013 +g3765,405:25341997,28795013 +g3765,405:26910273,28795013 +k3765,406:30344340,28795013:2238690 +k3765,406:32583029,28795013:2238689 +) +(3765,407:20753781,29696649:11829248,530548,102891 +h3765,406:20753781,29696649:0,0,0 +r3765,423:20753781,29696649:0,633439,102891 +g3765,406:22064501,29696649 +g3765,406:22064501,29696649 +g3765,406:25756939,29696649 +k3765,407:29767673,29696649:2815357 +k3765,407:32583029,29696649:2815356 +) +(3765,408:20753781,30598286:11829248,530548,132808 +h3765,407:20753781,30598286:0,0,0 +r3765,423:20753781,30598286:0,663356,132808 +g3765,407:22064501,30598286 +g3765,407:22064501,30598286 +g3765,407:25756939,30598286 +k3765,408:29767673,30598286:2815357 +k3765,408:32583029,30598286:2815356 +) +(3765,409:20753781,31499923:11829248,530548,102891 +h3765,408:20753781,31499923:0,0,0 +r3765,423:20753781,31499923:0,633439,102891 +g3765,408:22064501,31499923 +g3765,408:22064501,31499923 +g3765,408:24927054,31499923 +k3765,409:29352730,31499923:3230299 +k3765,409:32583029,31499923:3230299 +) +(3765,410:20753781,32401559:11829248,530548,102891 +h3765,409:20753781,32401559:0,0,0 +r3765,423:20753781,32401559:0,633439,102891 +g3765,409:22064501,32401559 +g3765,409:22064501,32401559 +g3765,409:26171882,32401559 +k3765,410:29975144,32401559:2607885 +k3765,410:32583029,32401559:2607885 +) +(3765,411:20753781,33303196:11829248,530548,102891 +h3765,410:20753781,33303196:0,0,0 +r3765,423:20753781,33303196:0,633439,102891 +g3765,410:22064501,33303196 +g3765,410:22064501,33303196 +g3765,410:30736248,33303196 +k3765,411:32257327,33303196:325702 +k3765,411:32583029,33303196:325702 +) +(3765,412:20753781,34204833:11829248,530548,102891 +h3765,411:20753781,34204833:0,0,0 +r3765,423:20753781,34204833:0,633439,102891 +g3765,411:22064501,34204833 +g3765,411:22064501,34204833 +g3765,411:30736248,34204833 +k3765,412:32257327,34204833:325702 +k3765,412:32583029,34204833:325702 +) +(3765,413:20753781,35106469:11829248,530548,102891 +h3765,412:20753781,35106469:0,0,0 +r3765,423:20753781,35106469:0,633439,102891 +g3765,412:22064501,35106469 +g3765,412:22064501,35106469 +k3765,412:32583029,35106469:386241 +) +(3765,413:23375221,35971549:9207808,485622,102891 +g3765,412:24943497,35971549 +k3765,413:29360952,35971549:3222078 +k3765,413:32583029,35971549:3222077 +) +(3765,414:20753781,36873186:11829248,530548,102891 +h3765,413:20753781,36873186:0,0,0 +r3765,423:20753781,36873186:0,633439,102891 +g3765,413:22064501,36873186 +g3765,413:22064501,36873186 +g3765,413:29906363,36873186 +k3765,414:31842385,36873186:740645 +k3765,414:32583029,36873186:740644 +) +(3765,415:20753781,37774822:11829248,530548,102891 +h3765,414:20753781,37774822:0,0,0 +r3765,423:20753781,37774822:0,633439,102891 +g3765,414:22064501,37774822 +g3765,414:22064501,37774822 +k3765,414:32583029,37774822:1216125 +) +(3765,415:23375221,38639902:9207808,485622,11795 +k3765,415:28576814,38639902:4006216 +k3765,415:32583029,38639902:4006215 +) +(3765,416:20753781,39541539:11829248,530548,102891 +h3765,415:20753781,39541539:0,0,0 +r3765,423:20753781,39541539:0,633439,102891 +g3765,415:22064501,39541539 +g3765,415:22064501,39541539 +k3765,415:32583029,39541539:1216125 +) +(3765,416:23375221,40406619:9207808,485622,102891 +g3765,415:24943497,40406619 +k3765,416:29360952,40406619:3222078 +k3765,416:32583029,40406619:3222077 +) +(3765,417:20753781,41308256:11829248,530548,102891 +h3765,416:20753781,41308256:0,0,0 +r3765,423:20753781,41308256:0,633439,102891 +g3765,416:22064501,41308256 +g3765,416:22064501,41308256 +k3765,416:32583029,41308256:801183 +) +(3765,417:23375221,42173336:9207808,485622,11795 +k3765,417:28576814,42173336:4006216 +k3765,417:32583029,42173336:4006215 +) +(3765,418:20753781,43074972:11829248,530548,141066 +h3765,417:20753781,43074972:0,0,0 +r3765,423:20753781,43074972:0,671614,141066 +g3765,417:22064501,43074972 +g3765,417:22064501,43074972 +k3765,417:32583029,43074972:1216125 +) +(3765,418:23375221,43940052:9207808,485622,102891 +g3765,417:24943497,43940052 +k3765,418:29360952,43940052:3222078 +k3765,418:32583029,43940052:3222077 +) +(3765,419:20753781,44841689:11829248,530548,141066 +h3765,418:20753781,44841689:0,0,0 +r3765,423:20753781,44841689:0,671614,141066 +g3765,418:22064501,44841689 +g3765,418:22064501,44841689 +k3765,418:32583029,44841689:801183 +) +(3765,419:23375221,45706769:9207808,485622,11795 +k3765,419:28576814,45706769:4006216 +k3765,419:32583029,45706769:4006215 +) +] +(3765,423:32583029,45706769:0,355205,126483 +h3765,423:32583029,45706769:420741,355205,126483 +k3765,423:32583029,45706769:-420741 +) +) +] +(3765,423:32583029,45706769:0,0,0 +g3765,423:32583029,45706769 +) +) +] +(3765,423:6630773,47279633:25952256,0,0 +h3765,423:6630773,47279633:25952256,0,0 +) +] +(3765,423:4262630,4025873:0,0,0 +[3765,423:-473656,4025873:0,0,0 +(3765,423:-473656,-710413:0,0,0 +(3765,423:-473656,-710413:0,0,0 +g3765,423:-473656,-710413 +) +g3765,423:-473656,-710413 +) +] +) +] +!28931 +}436 !12 -{455 -[3724,523:4262630,47279633:28320399,43253760,0 -(3724,523:4262630,4025873:0,0,0 -[3724,523:-473656,4025873:0,0,0 -(3724,523:-473656,-710413:0,0,0 -(3724,523:-473656,-644877:0,0,0 -k3724,523:-473656,-644877:-65536 +{437 +[3765,506:4262630,47279633:28320399,43253760,0 +(3765,506:4262630,4025873:0,0,0 +[3765,506:-473656,4025873:0,0,0 +(3765,506:-473656,-710413:0,0,0 +(3765,506:-473656,-644877:0,0,0 +k3765,506:-473656,-644877:-65536 ) -(3724,523:-473656,4736287:0,0,0 -k3724,523:-473656,4736287:5209943 +(3765,506:-473656,4736287:0,0,0 +k3765,506:-473656,4736287:5209943 ) -g3724,523:-473656,-710413 +g3765,506:-473656,-710413 ) ] ) -[3724,523:6630773,47279633:25952256,43253760,0 -[3724,523:6630773,4812305:25952256,786432,0 -(3724,523:6630773,4812305:25952256,513147,134348 -(3724,523:6630773,4812305:25952256,513147,134348 -g3724,523:3078558,4812305 -[3724,523:3078558,4812305:0,0,0 -(3724,523:3078558,2439708:0,1703936,0 -k3724,523:1358238,2439708:-1720320 -(3724,1:1358238,2439708:1720320,1703936,0 -(3724,1:1358238,2439708:1179648,16384,0 -r3724,523:2537886,2439708:1179648,16384,0 +[3765,506:6630773,47279633:25952256,43253760,0 +[3765,506:6630773,4812305:25952256,786432,0 +(3765,506:6630773,4812305:25952256,513147,134348 +(3765,506:6630773,4812305:25952256,513147,134348 +g3765,506:3078558,4812305 +[3765,506:3078558,4812305:0,0,0 +(3765,506:3078558,2439708:0,1703936,0 +k3765,506:1358238,2439708:-1720320 +(3765,1:1358238,2439708:1720320,1703936,0 +(3765,1:1358238,2439708:1179648,16384,0 +r3765,506:2537886,2439708:1179648,16384,0 ) -g3724,1:3062174,2439708 -(3724,1:3062174,2439708:16384,1703936,0 -[3724,1:3062174,2439708:25952256,1703936,0 -(3724,1:3062174,1915420:25952256,1179648,0 -(3724,1:3062174,1915420:16384,1179648,0 -r3724,523:3078558,1915420:16384,1179648,0 +g3765,1:3062174,2439708 +(3765,1:3062174,2439708:16384,1703936,0 +[3765,1:3062174,2439708:25952256,1703936,0 +(3765,1:3062174,1915420:25952256,1179648,0 +(3765,1:3062174,1915420:16384,1179648,0 +r3765,506:3078558,1915420:16384,1179648,0 ) -k3724,1:29014430,1915420:25935872 -g3724,1:29014430,1915420 +k3765,1:29014430,1915420:25935872 +g3765,1:29014430,1915420 ) ] ) ) ) ] -[3724,523:3078558,4812305:0,0,0 -(3724,523:3078558,2439708:0,1703936,0 -g3724,523:29030814,2439708 -g3724,523:36135244,2439708 -(3724,1:36135244,2439708:1720320,1703936,0 -(3724,1:36135244,2439708:16384,1703936,0 -[3724,1:36135244,2439708:25952256,1703936,0 -(3724,1:36135244,1915420:25952256,1179648,0 -(3724,1:36135244,1915420:16384,1179648,0 -r3724,523:36151628,1915420:16384,1179648,0 +[3765,506:3078558,4812305:0,0,0 +(3765,506:3078558,2439708:0,1703936,0 +g3765,506:29030814,2439708 +g3765,506:36135244,2439708 +(3765,1:36135244,2439708:1720320,1703936,0 +(3765,1:36135244,2439708:16384,1703936,0 +[3765,1:36135244,2439708:25952256,1703936,0 +(3765,1:36135244,1915420:25952256,1179648,0 +(3765,1:36135244,1915420:16384,1179648,0 +r3765,506:36151628,1915420:16384,1179648,0 ) -k3724,1:62087500,1915420:25935872 -g3724,1:62087500,1915420 +k3765,1:62087500,1915420:25935872 +g3765,1:62087500,1915420 ) ] ) -g3724,1:36675916,2439708 -(3724,1:36675916,2439708:1179648,16384,0 -r3724,523:37855564,2439708:1179648,16384,0 +g3765,1:36675916,2439708 +(3765,1:36675916,2439708:1179648,16384,0 +r3765,506:37855564,2439708:1179648,16384,0 +) +) +k3765,506:3078556,2439708:-34777008 +) +] +[3765,506:3078558,4812305:0,0,0 +(3765,506:3078558,49800853:0,16384,2228224 +k3765,506:1358238,49800853:-1720320 +(3765,1:1358238,49800853:1720320,16384,2228224 +(3765,1:1358238,49800853:1179648,16384,0 +r3765,506:2537886,49800853:1179648,16384,0 ) +g3765,1:3062174,49800853 +(3765,1:3062174,52029077:16384,1703936,0 +[3765,1:3062174,52029077:25952256,1703936,0 +(3765,1:3062174,51504789:25952256,1179648,0 +(3765,1:3062174,51504789:16384,1179648,0 +r3765,506:3078558,51504789:16384,1179648,0 ) -k3724,523:3078556,2439708:-34777008 +k3765,1:29014430,51504789:25935872 +g3765,1:29014430,51504789 ) ] -[3724,523:3078558,4812305:0,0,0 -(3724,523:3078558,49800853:0,16384,2228224 -k3724,523:1358238,49800853:-1720320 -(3724,1:1358238,49800853:1720320,16384,2228224 -(3724,1:1358238,49800853:1179648,16384,0 -r3724,523:2537886,49800853:1179648,16384,0 ) -g3724,1:3062174,49800853 -(3724,1:3062174,52029077:16384,1703936,0 -[3724,1:3062174,52029077:25952256,1703936,0 -(3724,1:3062174,51504789:25952256,1179648,0 -(3724,1:3062174,51504789:16384,1179648,0 -r3724,523:3078558,51504789:16384,1179648,0 ) -k3724,1:29014430,51504789:25935872 -g3724,1:29014430,51504789 ) ] +[3765,506:3078558,4812305:0,0,0 +(3765,506:3078558,49800853:0,16384,2228224 +g3765,506:29030814,49800853 +g3765,506:36135244,49800853 +(3765,1:36135244,49800853:1720320,16384,2228224 +(3765,1:36135244,52029077:16384,1703936,0 +[3765,1:36135244,52029077:25952256,1703936,0 +(3765,1:36135244,51504789:25952256,1179648,0 +(3765,1:36135244,51504789:16384,1179648,0 +r3765,506:36151628,51504789:16384,1179648,0 ) +k3765,1:62087500,51504789:25935872 +g3765,1:62087500,51504789 ) +] +) +g3765,1:36675916,49800853 +(3765,1:36675916,49800853:1179648,16384,0 +r3765,506:37855564,49800853:1179648,16384,0 +) +) +k3765,506:3078556,49800853:-34777008 ) ] -[3724,523:3078558,4812305:0,0,0 -(3724,523:3078558,49800853:0,16384,2228224 -g3724,523:29030814,49800853 -g3724,523:36135244,49800853 -(3724,1:36135244,49800853:1720320,16384,2228224 -(3724,1:36135244,52029077:16384,1703936,0 -[3724,1:36135244,52029077:25952256,1703936,0 -(3724,1:36135244,51504789:25952256,1179648,0 -(3724,1:36135244,51504789:16384,1179648,0 -r3724,523:36151628,51504789:16384,1179648,0 -) -k3724,1:62087500,51504789:25935872 -g3724,1:62087500,51504789 -) -] -) -g3724,1:36675916,49800853 -(3724,1:36675916,49800853:1179648,16384,0 -r3724,523:37855564,49800853:1179648,16384,0 -) -) -k3724,523:3078556,49800853:-34777008 -) -] -g3724,523:6630773,4812305 -k3724,523:23083588,4812305:15257438 -g3724,523:24981510,4812305 -g3724,523:25796777,4812305 -g3724,523:26410194,4812305 -g3724,523:28753761,4812305 -g3724,523:29709275,4812305 -) -) -] -[3724,523:6630773,45706769:25952256,40108032,0 -(3724,523:6630773,45706769:25952256,40108032,0 -(3724,523:6630773,45706769:0,0,0 -g3724,523:6630773,45706769 -) -[3724,523:6630773,45706769:25952256,40108032,0 -(3724,523:6630773,45706769:25952256,40108032,126483 -[3724,523:6630773,45706769:11829248,40108032,102891 -(3724,433:6630773,6254097:11829248,505283,102891 -h3724,432:6630773,6254097:0,0,0 -r3724,523:6630773,6254097:0,608174,102891 -g3724,432:7941493,6254097 -g3724,432:7941493,6254097 -g3724,432:11475849,6254097 -k3724,433:15565624,6254097:2894398 -k3724,433:18460021,6254097:2894397 -) -(3724,434:6630773,7112893:11829248,505283,102891 -h3724,433:6630773,7112893:0,0,0 -r3724,523:6630773,7112893:0,608174,102891 -g3724,433:7941493,7112893 -g3724,433:7941493,7112893 -g3724,433:10290302,7112893 -g3724,433:11858578,7112893 -k3724,434:15756988,7112893:2703033 -k3724,434:18460021,7112893:2703033 -) -(3724,435:6630773,7971688:11829248,505283,134348 -h3724,434:6630773,7971688:0,0,0 -r3724,523:6630773,7971688:0,639631,134348 -g3724,434:7941493,7971688 -g3724,434:7941493,7971688 -g3724,434:12661395,7971688 -k3724,435:16158397,7971688:2301625 -k3724,435:18460021,7971688:2301624 -) -(3724,436:6630773,8830484:11829248,505283,126483 -h3724,435:6630773,8830484:0,0,0 -r3724,523:6630773,8830484:0,631766,126483 -g3724,435:7941493,8830484 -g3724,435:7941493,8830484 -g3724,435:10290302,8830484 -g3724,435:11460119,8830484 -k3724,436:15557759,8830484:2902263 -k3724,436:18460021,8830484:2902262 -) -(3724,437:6630773,9689279:11829248,505283,102891 -h3724,436:6630773,9689279:0,0,0 -r3724,523:6630773,9689279:0,608174,102891 -g3724,436:7941493,9689279 -g3724,436:7941493,9689279 -g3724,436:12266213,9689279 -k3724,437:15960806,9689279:2499216 -k3724,437:18460021,9689279:2499215 -) -(3724,438:6630773,10548075:11829248,505283,126483 -h3724,437:6630773,10548075:0,0,0 -r3724,523:6630773,10548075:0,631766,126483 -g3724,437:7941493,10548075 -g3724,437:7941493,10548075 -g3724,437:15032488,10548075 -k3724,438:17343943,10548075:1116078 -k3724,438:18460021,10548075:1116078 -) -(3724,439:6630773,11406870:11829248,505283,102891 -h3724,438:6630773,11406870:0,0,0 -r3724,523:6630773,11406870:0,608174,102891 -g3724,438:7941493,11406870 -g3724,438:7941493,11406870 -g3724,438:11080667,11406870 -k3724,439:15368033,11406870:3091989 -k3724,439:18460021,11406870:3091988 -) -(3724,440:6630773,12265666:11829248,505283,102891 -h3724,439:6630773,12265666:0,0,0 -r3724,523:6630773,12265666:0,608174,102891 -g3724,439:7941493,12265666 -g3724,439:7941493,12265666 -g3724,439:11080667,12265666 -k3724,440:15368033,12265666:3091989 -k3724,440:18460021,12265666:3091988 -) -(3724,441:6630773,13124461:11829248,513147,134348 -h3724,440:6630773,13124461:0,0,0 -r3724,523:6630773,13124461:0,647495,134348 -g3724,440:7941493,13124461 -g3724,440:7941493,13124461 -g3724,440:11475849,13124461 -k3724,441:15366394,13124461:3093627 -k3724,441:18460021,13124461:3093627 -) -(3724,442:6630773,13983257:11829248,505283,102891 -h3724,441:6630773,13983257:0,0,0 -r3724,523:6630773,13983257:0,608174,102891 -g3724,441:7941493,13983257 -g3724,441:7941493,13983257 -g3724,441:10290302,13983257 -k3724,442:14773621,13983257:3686401 -k3724,442:18460021,13983257:3686400 -) -(3724,443:6630773,14842052:11829248,505283,102891 -h3724,442:6630773,14842052:0,0,0 -r3724,523:6630773,14842052:0,608174,102891 -g3724,442:7941493,14842052 -g3724,442:7941493,14842052 -g3724,442:11080667,14842052 -k3724,443:15368033,14842052:3091989 -k3724,443:18460021,14842052:3091988 -) -(3724,444:6630773,15700848:11829248,505283,126483 -h3724,443:6630773,15700848:0,0,0 -r3724,523:6630773,15700848:0,631766,126483 -g3724,443:7941493,15700848 -g3724,443:7941493,15700848 -g3724,443:14242123,15700848 -k3724,444:16948761,15700848:1511261 -k3724,444:18460021,15700848:1511260 -) -(3724,445:6630773,16559643:11829248,505283,102891 -h3724,444:6630773,16559643:0,0,0 -r3724,523:6630773,16559643:0,608174,102891 -g3724,444:7941493,16559643 -g3724,444:7941493,16559643 -g3724,444:10685485,16559643 -g3724,444:11855302,16559643 -g3724,444:13025119,16559643 -g3724,444:14593395,16559643 -k3724,445:17124397,16559643:1335625 -k3724,445:18460021,16559643:1335624 -) -(3724,446:6630773,17418439:11829248,505283,102891 -h3724,445:6630773,17418439:0,0,0 -r3724,523:6630773,17418439:0,608174,102891 -g3724,445:7941493,17418439 -g3724,445:7941493,17418439 -g3724,445:11475849,17418439 -k3724,446:15565624,17418439:2894398 -k3724,446:18460021,17418439:2894397 -) -(3724,447:6630773,18277234:11829248,505283,126483 -h3724,446:6630773,18277234:0,0,0 -r3724,523:6630773,18277234:0,631766,126483 -g3724,446:7941493,18277234 -g3724,446:7941493,18277234 -g3724,446:11475849,18277234 -k3724,447:15565624,18277234:2894398 -k3724,447:18460021,18277234:2894397 -) -(3724,448:6630773,19136030:11829248,505283,126483 -h3724,447:6630773,19136030:0,0,0 -r3724,523:6630773,19136030:0,631766,126483 -g3724,447:7941493,19136030 -g3724,447:7941493,19136030 -g3724,447:11080667,19136030 -k3724,448:15368033,19136030:3091989 -k3724,448:18460021,19136030:3091988 -) -(3724,449:6630773,19994826:11829248,505283,126483 -h3724,448:6630773,19994826:0,0,0 -r3724,523:6630773,19994826:0,631766,126483 -g3724,448:7941493,19994826 -g3724,448:7941493,19994826 -g3724,448:11475849,19994826 -k3724,449:15565624,19994826:2894398 -k3724,449:18460021,19994826:2894397 -) -(3724,450:6630773,20853621:11829248,513147,126483 -h3724,449:6630773,20853621:0,0,0 -r3724,523:6630773,20853621:0,639630,126483 -g3724,449:7941493,20853621 -g3724,449:7941493,20853621 -g3724,449:11871031,20853621 -g3724,449:13040848,20853621 -g3724,449:14210665,20853621 -g3724,449:15778941,20853621 -k3724,450:17717170,20853621:742852 -k3724,450:18460021,20853621:742851 -) -(3724,451:6630773,21712417:11829248,505283,126483 -h3724,450:6630773,21712417:0,0,0 -r3724,523:6630773,21712417:0,631766,126483 -g3724,450:7941493,21712417 -g3724,450:7941493,21712417 -g3724,450:10685485,21712417 -k3724,451:14971212,21712417:3488809 -k3724,451:18460021,21712417:3488809 -) -(3724,452:6630773,22571212:11829248,505283,102891 -h3724,451:6630773,22571212:0,0,0 -r3724,523:6630773,22571212:0,608174,102891 -g3724,451:7941493,22571212 -g3724,451:7941493,22571212 -g3724,451:12266213,22571212 -g3724,451:13834489,22571212 -k3724,452:16744944,22571212:1715078 -k3724,452:18460021,22571212:1715077 -) -(3724,453:6630773,23430008:11829248,505283,134348 -h3724,452:6630773,23430008:0,0,0 -r3724,523:6630773,23430008:0,639631,134348 -g3724,452:7941493,23430008 -g3724,452:7941493,23430008 -g3724,452:11080667,23430008 -g3724,452:12648943,23430008 -k3724,453:16152171,23430008:2307851 -k3724,453:18460021,23430008:2307850 -) -(3724,454:6630773,24288803:11829248,505283,102891 -h3724,453:6630773,24288803:0,0,0 -r3724,523:6630773,24288803:0,608174,102891 -g3724,453:7941493,24288803 -g3724,453:7941493,24288803 -g3724,453:13451759,24288803 -k3724,454:16553579,24288803:1906443 -k3724,454:18460021,24288803:1906442 -) -(3724,455:6630773,25147599:11829248,505283,102891 -h3724,454:6630773,25147599:0,0,0 -r3724,523:6630773,25147599:0,608174,102891 -g3724,454:7941493,25147599 -g3724,454:7941493,25147599 -g3724,454:10685485,25147599 -k3724,455:15170442,25147599:3289580 -k3724,455:18460021,25147599:3289579 -) -(3724,456:6630773,26006394:11829248,505283,102891 -h3724,455:6630773,26006394:0,0,0 -r3724,523:6630773,26006394:0,608174,102891 -g3724,455:7941493,26006394 -g3724,455:7941493,26006394 -g3724,455:12266213,26006394 -g3724,455:15357546,26006394 -g3724,455:16925822,26006394 -k3724,456:18290610,26006394:169411 -k3724,456:18460021,26006394:169411 -) -(3724,457:6630773,26865190:11829248,505283,102891 -h3724,456:6630773,26865190:0,0,0 -r3724,523:6630773,26865190:0,608174,102891 -g3724,456:7941493,26865190 -g3724,456:7941493,26865190 -g3724,456:13056577,26865190 -k3724,457:16355988,26865190:2104034 -k3724,457:18460021,26865190:2104033 -) -(3724,458:6630773,27723985:11829248,505283,102891 -h3724,457:6630773,27723985:0,0,0 -r3724,523:6630773,27723985:0,608174,102891 -g3724,457:7941493,27723985 -g3724,457:7941493,27723985 -g3724,457:13846941,27723985 -k3724,458:16751170,27723985:1708852 -k3724,458:18460021,27723985:1708851 -) -(3724,459:6630773,28582781:11829248,505283,126483 -h3724,458:6630773,28582781:0,0,0 -r3724,523:6630773,28582781:0,631766,126483 -g3724,458:7941493,28582781 -g3724,458:7941493,28582781 -g3724,458:13846941,28582781 -g3724,458:15415217,28582781 -k3724,459:17535308,28582781:924714 -k3724,459:18460021,28582781:924713 -) -(3724,460:6630773,29441576:11829248,505283,102891 -h3724,459:6630773,29441576:0,0,0 -r3724,523:6630773,29441576:0,608174,102891 -g3724,459:7941493,29441576 -g3724,459:7941493,29441576 -g3724,459:14242123,29441576 -k3724,460:16948761,29441576:1511261 -k3724,460:18460021,29441576:1511260 -) -(3724,461:6630773,30300372:11829248,505283,102891 -h3724,460:6630773,30300372:0,0,0 -r3724,523:6630773,30300372:0,608174,102891 -g3724,460:7941493,30300372 -g3724,460:7941493,30300372 -g3724,460:13056577,30300372 -g3724,460:14624853,30300372 -g3724,460:16193129,30300372 -k3724,461:17924264,30300372:535758 -k3724,461:18460021,30300372:535757 -) -(3724,462:6630773,31159168:11829248,505283,126483 -h3724,461:6630773,31159168:0,0,0 -r3724,523:6630773,31159168:0,631766,126483 -g3724,461:7941493,31159168 -g3724,461:7941493,31159168 -g3724,461:13846941,31159168 -g3724,461:15415217,31159168 -k3724,462:17535308,31159168:924714 -k3724,462:18460021,31159168:924713 -) -(3724,463:6630773,32017963:11829248,505283,126483 -h3724,462:6630773,32017963:0,0,0 -r3724,523:6630773,32017963:0,631766,126483 -g3724,462:7941493,32017963 -g3724,462:7941493,32017963 -g3724,462:15032488,32017963 -g3724,462:16600764,32017963 -k3724,463:18128081,32017963:331940 -k3724,463:18460021,32017963:331940 -) -(3724,464:6630773,32876759:11829248,513147,102891 -h3724,463:6630773,32876759:0,0,0 -r3724,523:6630773,32876759:0,616038,102891 -g3724,463:7941493,32876759 -g3724,463:7941493,32876759 -g3724,463:16218034,32876759 -k3724,463:18460021,32876759:872940 -) -(3724,464:9252213,33718247:9207808,485622,11795 -k3724,464:14453806,33718247:4006216 -k3724,464:18460021,33718247:4006215 -) -(3724,465:6630773,34577042:11829248,513147,102891 -h3724,464:6630773,34577042:0,0,0 -r3724,523:6630773,34577042:0,616038,102891 -g3724,464:7941493,34577042 -g3724,464:7941493,34577042 -g3724,464:14242123,34577042 -k3724,465:16948761,34577042:1511261 -k3724,465:18460021,34577042:1511260 -) -(3724,466:6630773,35435838:11829248,505283,134348 -h3724,465:6630773,35435838:0,0,0 -r3724,523:6630773,35435838:0,639631,134348 -g3724,465:7941493,35435838 -g3724,465:7941493,35435838 -g3724,465:14637306,35435838 -k3724,466:17146352,35435838:1313669 -k3724,466:18460021,35435838:1313669 -) -(3724,467:6630773,36294633:11829248,505283,126483 -h3724,466:6630773,36294633:0,0,0 -r3724,523:6630773,36294633:0,631766,126483 -g3724,466:7941493,36294633 -g3724,466:7941493,36294633 -g3724,466:14242123,36294633 -k3724,467:16948761,36294633:1511261 -k3724,467:18460021,36294633:1511260 -) -(3724,468:6630773,37153429:11829248,505283,126483 -h3724,467:6630773,37153429:0,0,0 -r3724,523:6630773,37153429:0,631766,126483 -g3724,467:7941493,37153429 -g3724,467:7941493,37153429 -g3724,467:14637306,37153429 -k3724,468:17146352,37153429:1313669 -k3724,468:18460021,37153429:1313669 -) -(3724,469:6630773,38012224:11829248,505283,126483 -h3724,468:6630773,38012224:0,0,0 -r3724,523:6630773,38012224:0,631766,126483 -g3724,468:7941493,38012224 -g3724,468:7941493,38012224 -g3724,468:14637306,38012224 -g3724,468:16205582,38012224 -k3724,469:17930490,38012224:529531 -k3724,469:18460021,38012224:529531 -) -(3724,470:6630773,38871020:11829248,513147,102891 -h3724,469:6630773,38871020:0,0,0 -r3724,523:6630773,38871020:0,616038,102891 -g3724,469:7941493,38871020 -g3724,469:7941493,38871020 -g3724,469:11871031,38871020 -k3724,470:15763215,38871020:2696807 -k3724,470:18460021,38871020:2696806 -) -(3724,471:6630773,39729815:11829248,505283,102891 -h3724,470:6630773,39729815:0,0,0 -r3724,523:6630773,39729815:0,608174,102891 -g3724,470:7941493,39729815 -g3724,470:7941493,39729815 -g3724,470:13451759,39729815 -g3724,470:15020035,39729815 -k3724,470:18460021,39729815:2070939 -) -(3724,471:9252213,40571303:9207808,485622,102891 -g3724,470:12343546,40571303 -k3724,471:15999472,40571303:2460549 -k3724,471:18460021,40571303:2460549 -) -(3724,472:6630773,41430099:11829248,505283,126483 -h3724,471:6630773,41430099:0,0,0 -r3724,523:6630773,41430099:0,631766,126483 -g3724,471:7941493,41430099 -g3724,471:7941493,41430099 -g3724,471:13846941,41430099 -g3724,471:15415217,41430099 -k3724,471:18460021,41430099:152700 -) -(3724,472:9252213,42271587:9207808,485622,102891 -g3724,471:10820489,42271587 -g3724,471:12388765,42271587 -k3724,472:16022082,42271587:2437940 -k3724,472:18460021,42271587:2437939 -) -(3724,473:6630773,43130382:11829248,505283,126483 -h3724,472:6630773,43130382:0,0,0 -r3724,523:6630773,43130382:0,631766,126483 -g3724,472:7941493,43130382 -g3724,472:7941493,43130382 -g3724,472:15032488,43130382 -k3724,473:17343943,43130382:1116078 -k3724,473:18460021,43130382:1116078 -) -(3724,474:6630773,43989178:11829248,505283,126483 -h3724,473:6630773,43989178:0,0,0 -r3724,523:6630773,43989178:0,631766,126483 -g3724,473:7941493,43989178 -g3724,473:7941493,43989178 -g3724,473:15032488,43989178 -k3724,474:17343943,43989178:1116078 -k3724,474:18460021,43989178:1116078 -) -(3724,475:6630773,44847973:11829248,505283,126483 -h3724,474:6630773,44847973:0,0,0 -r3724,523:6630773,44847973:0,631766,126483 -g3724,474:7941493,44847973 -g3724,474:7941493,44847973 -g3724,474:10685485,44847973 -g3724,474:12253761,44847973 -k3724,475:15954580,44847973:2505442 -k3724,475:18460021,44847973:2505441 -) -(3724,476:6630773,45706769:11829248,505283,102891 -h3724,475:6630773,45706769:0,0,0 -r3724,523:6630773,45706769:0,608174,102891 -g3724,475:7941493,45706769 -g3724,475:7941493,45706769 -g3724,475:10290302,45706769 -k3724,476:14972850,45706769:3487171 -k3724,476:18460021,45706769:3487171 -) -] -k3724,523:19606901,45706769:1146880 -r3724,523:19606901,45706769:0,40234515,126483 -k3724,523:20753781,45706769:1146880 -[3724,523:20753781,45706769:11829248,40108032,102891 -(3724,477:20753781,6254097:11829248,505283,102891 -h3724,476:20753781,6254097:0,0,0 -r3724,523:20753781,6254097:0,608174,102891 -g3724,476:22064501,6254097 -g3724,476:22064501,6254097 -g3724,476:24413310,6254097 -g3724,476:25583127,6254097 -g3724,476:26752944,6254097 -g3724,476:27922761,6254097 -g3724,476:29491037,6254097 -g3724,476:31059313,6254097 -k3724,476:32583029,6254097:154669 -) -(3724,477:23375221,7095585:9207808,485622,102891 -g3724,476:24943497,7095585 -g3724,476:26511773,7095585 -k3724,477:30145090,7095585:2437940 -k3724,477:32583029,7095585:2437939 -) -(3724,478:20753781,7955225:11829248,505283,102891 -h3724,477:20753781,7955225:0,0,0 -r3724,523:20753781,7955225:0,608174,102891 -g3724,477:22064501,7955225 -g3724,477:22064501,7955225 -g3724,477:27574767,7955225 -k3724,478:30676587,7955225:1906443 -k3724,478:32583029,7955225:1906442 -) -(3724,479:20753781,8814865:11829248,513147,102891 -h3724,478:20753781,8814865:0,0,0 -r3724,523:20753781,8814865:0,616038,102891 -g3724,478:22064501,8814865 -g3724,478:22064501,8814865 -g3724,478:26389221,8814865 -k3724,479:30083814,8814865:2499216 -k3724,479:32583029,8814865:2499215 -) -(3724,480:20753781,9674504:11829248,505283,126483 -h3724,479:20753781,9674504:0,0,0 -r3724,523:20753781,9674504:0,631766,126483 -g3724,479:22064501,9674504 -g3724,479:22064501,9674504 -g3724,479:26389221,9674504 -k3724,480:30083814,9674504:2499216 -k3724,480:32583029,9674504:2499215 -) -(3724,481:20753781,10534144:11829248,505283,126483 -h3724,480:20753781,10534144:0,0,0 -r3724,523:20753781,10534144:0,631766,126483 -g3724,480:22064501,10534144 -g3724,480:22064501,10534144 -g3724,480:25598857,10534144 -k3724,481:29489402,10534144:3093627 -k3724,481:32583029,10534144:3093627 -) -(3724,482:20753781,11393784:11829248,505283,126483 -h3724,481:20753781,11393784:0,0,0 -r3724,523:20753781,11393784:0,631766,126483 -g3724,481:22064501,11393784 -g3724,481:22064501,11393784 -g3724,481:26389221,11393784 -k3724,482:29884584,11393784:2698445 -k3724,482:32583029,11393784:2698445 -) -(3724,483:20753781,12253424:11829248,505283,102891 -h3724,482:20753781,12253424:0,0,0 -r3724,523:20753781,12253424:0,608174,102891 -g3724,482:22064501,12253424 -g3724,482:22064501,12253424 -g3724,482:25994039,12253424 -k3724,483:29686993,12253424:2896036 -k3724,483:32583029,12253424:2896036 -) -(3724,484:20753781,13113064:11829248,505283,126483 -h3724,483:20753781,13113064:0,0,0 -r3724,523:20753781,13113064:0,631766,126483 -g3724,483:22064501,13113064 -g3724,483:22064501,13113064 -g3724,483:25994039,13113064 -k3724,484:29686993,13113064:2896036 -k3724,484:32583029,13113064:2896036 -) -(3724,485:20753781,13972703:11829248,505283,102891 -h3724,484:20753781,13972703:0,0,0 -r3724,523:20753781,13972703:0,608174,102891 -g3724,484:22064501,13972703 -g3724,484:22064501,13972703 -g3724,484:24413310,13972703 -k3724,485:28896629,13972703:3686401 -k3724,485:32583029,13972703:3686400 -) -(3724,486:20753781,14832343:11829248,505283,102891 -h3724,485:20753781,14832343:0,0,0 -r3724,523:20753781,14832343:0,608174,102891 -g3724,485:22064501,14832343 -g3724,485:22064501,14832343 -g3724,485:25598857,14832343 -g3724,485:28690190,14832343 -g3724,485:30258466,14832343 -k3724,485:32583029,14832343:955516 -) -(3724,486:23375221,15673831:9207808,485622,11795 -k3724,486:28576814,15673831:4006216 -k3724,486:32583029,15673831:4006215 -) -(3724,487:20753781,16533471:11829248,505283,102891 -h3724,486:20753781,16533471:0,0,0 -r3724,523:20753781,16533471:0,608174,102891 -g3724,486:22064501,16533471 -g3724,486:22064501,16533471 -g3724,486:27179585,16533471 -k3724,487:30478996,16533471:2104034 -k3724,487:32583029,16533471:2104033 -) -(3724,488:20753781,17393111:11829248,505283,102891 -h3724,487:20753781,17393111:0,0,0 -r3724,523:20753781,17393111:0,608174,102891 -g3724,487:22064501,17393111 -g3724,487:22064501,17393111 -g3724,487:25598857,17393111 -k3724,488:29489402,17393111:3093627 -k3724,488:32583029,17393111:3093627 -) -(3724,489:20753781,18252751:11829248,505283,134348 -h3724,488:20753781,18252751:0,0,0 -r3724,523:20753781,18252751:0,639631,134348 -g3724,488:22064501,18252751 -g3724,488:22064501,18252751 -g3724,488:26784403,18252751 -k3724,489:30082175,18252751:2500854 -k3724,489:32583029,18252751:2500854 -) -(3724,490:20753781,19112390:11829248,505283,102891 -h3724,489:20753781,19112390:0,0,0 -r3724,523:20753781,19112390:0,608174,102891 -g3724,489:22064501,19112390 -g3724,489:22064501,19112390 -g3724,489:24413310,19112390 -g3724,489:25981586,19112390 -k3724,490:29879996,19112390:2703033 -k3724,490:32583029,19112390:2703033 -) -(3724,491:20753781,19972030:11829248,505283,102891 -h3724,490:20753781,19972030:0,0,0 -r3724,523:20753781,19972030:0,608174,102891 -g3724,490:22064501,19972030 -g3724,490:22064501,19972030 -g3724,490:26784403,19972030 -k3724,491:30281405,19972030:2301625 -k3724,491:32583029,19972030:2301624 -) -(3724,493:20753781,20831670:11829248,505283,126483 -h3724,491:20753781,20831670:0,0,0 -r3724,523:20753781,20831670:0,631766,126483 -g3724,491:22064501,20831670 -g3724,491:22064501,20831670 -g3724,491:25994039,20831670 -g3724,491:27562315,20831670 -g3724,491:29130591,20831670 -g3724,491:30698867,20831670 -k3724,491:32583029,20831670:515115 -) -(3724,493:23375221,21673158:9207808,485622,102891 -g3724,491:24943497,21673158 -g3724,491:26511773,21673158 -g3724,492:29603106,21673158 -g3724,492:31171382,21673158 -k3724,492:32583029,21673158:42600 -) -(3724,493:23375221,22514646:9207808,485622,11795 -k3724,493:28576814,22514646:4006216 -k3724,493:32583029,22514646:4006215 -) -(3724,494:20753781,23374286:11829248,505283,102891 -h3724,493:20753781,23374286:0,0,0 -r3724,523:20753781,23374286:0,608174,102891 -g3724,493:22064501,23374286 -g3724,493:22064501,23374286 -g3724,493:25598857,23374286 -k3724,494:29688632,23374286:2894398 -k3724,494:32583029,23374286:2894397 -) -(3724,495:20753781,24233926:11829248,505283,126483 -h3724,494:20753781,24233926:0,0,0 -r3724,523:20753781,24233926:0,631766,126483 -g3724,494:22064501,24233926 -g3724,494:22064501,24233926 -g3724,494:25598857,24233926 -k3724,495:29688632,24233926:2894398 -k3724,495:32583029,24233926:2894397 -) -(3724,496:20753781,25093566:11829248,505283,126483 -h3724,495:20753781,25093566:0,0,0 -r3724,523:20753781,25093566:0,631766,126483 -g3724,495:22064501,25093566 -g3724,495:22064501,25093566 -g3724,495:27574767,25093566 -g3724,495:29143043,25093566 -k3724,496:31460725,25093566:1122305 -k3724,496:32583029,25093566:1122304 -) -(3724,497:20753781,25953205:11829248,505283,102891 -h3724,496:20753781,25953205:0,0,0 -r3724,523:20753781,25953205:0,608174,102891 -g3724,496:22064501,25953205 -g3724,496:22064501,25953205 -g3724,496:23622946,25953205 -g3724,496:24792763,25953205 -k3724,497:29285585,25953205:3297445 -k3724,497:32583029,25953205:3297444 -) -(3724,498:20753781,26812845:11829248,505283,102891 -h3724,497:20753781,26812845:0,0,0 -r3724,523:20753781,26812845:0,608174,102891 -g3724,497:22064501,26812845 -g3724,497:22064501,26812845 -g3724,497:25203675,26812845 -g3724,497:26771951,26812845 -k3724,498:30275179,26812845:2307851 -k3724,498:32583029,26812845:2307850 -) -(3724,499:20753781,27672485:11829248,505283,102891 -h3724,498:20753781,27672485:0,0,0 -r3724,523:20753781,27672485:0,608174,102891 -g3724,498:22064501,27672485 -g3724,498:22064501,27672485 -g3724,498:25203675,27672485 -g3724,498:26771951,27672485 -k3724,499:30275179,27672485:2307851 -k3724,499:32583029,27672485:2307850 -) -(3724,500:20753781,28532125:11829248,505283,102891 -h3724,499:20753781,28532125:0,0,0 -r3724,523:20753781,28532125:0,608174,102891 -g3724,499:22064501,28532125 -g3724,499:22064501,28532125 -g3724,499:26389221,28532125 -k3724,500:30845342,28532125:1737688 -k3724,500:32583029,28532125:1737687 -) -(3724,501:20753781,29391765:11829248,505283,102891 -h3724,500:20753781,29391765:0,0,0 -r3724,523:20753781,29391765:0,608174,102891 -g3724,500:22064501,29391765 -g3724,500:22064501,29391765 -g3724,500:28365131,29391765 -g3724,500:29933407,29391765 -k3724,501:31855907,29391765:727123 -k3724,501:32583029,29391765:727122 -) -(3724,502:20753781,30251404:11829248,505283,102891 -h3724,501:20753781,30251404:0,0,0 -r3724,523:20753781,30251404:0,608174,102891 -g3724,501:22064501,30251404 -g3724,501:22064501,30251404 -g3724,501:27179585,30251404 -k3724,502:30478996,30251404:2104034 -k3724,502:32583029,30251404:2104033 -) -(3724,503:20753781,31111044:11829248,505283,134348 -h3724,502:20753781,31111044:0,0,0 -r3724,523:20753781,31111044:0,639631,134348 -g3724,502:22064501,31111044 -g3724,502:22064501,31111044 -g3724,502:27179585,31111044 -g3724,502:28747861,31111044 -g3724,502:30316137,31111044 -k3724,503:32047272,31111044:535758 -k3724,503:32583029,31111044:535757 -) -(3724,504:20753781,31970684:11829248,505283,134348 -h3724,503:20753781,31970684:0,0,0 -r3724,523:20753781,31970684:0,639631,134348 -g3724,503:22064501,31970684 -g3724,503:22064501,31970684 -g3724,503:27574767,31970684 -k3724,504:30676587,31970684:1906443 -k3724,504:32583029,31970684:1906442 -) -(3724,505:20753781,32830324:11829248,505283,102891 -h3724,504:20753781,32830324:0,0,0 -r3724,523:20753781,32830324:0,608174,102891 -g3724,504:22064501,32830324 -g3724,504:22064501,32830324 -g3724,504:28760314,32830324 -k3724,505:31269360,32830324:1313669 -k3724,505:32583029,32830324:1313669 -) -(3724,506:20753781,33689964:11829248,505283,102891 -h3724,505:20753781,33689964:0,0,0 -r3724,523:20753781,33689964:0,608174,102891 -g3724,505:22064501,33689964 -g3724,505:22064501,33689964 -g3724,505:28365131,33689964 -k3724,506:31071769,33689964:1511261 -k3724,506:32583029,33689964:1511260 -) -(3724,507:20753781,34549603:11829248,505283,102891 -h3724,506:20753781,34549603:0,0,0 -r3724,523:20753781,34549603:0,608174,102891 -g3724,506:22064501,34549603 -g3724,506:22064501,34549603 -g3724,506:26784403,34549603 -k3724,507:30281405,34549603:2301625 -k3724,507:32583029,34549603:2301624 -) -(3724,508:20753781,35409243:11829248,505283,102891 -h3724,507:20753781,35409243:0,0,0 -r3724,523:20753781,35409243:0,608174,102891 -g3724,507:22064501,35409243 -g3724,507:22064501,35409243 -g3724,507:27179585,35409243 -k3724,508:30478996,35409243:2104034 -k3724,508:32583029,35409243:2104033 -) -(3724,509:20753781,36268883:11829248,505283,102891 -h3724,508:20753781,36268883:0,0,0 -r3724,523:20753781,36268883:0,608174,102891 -g3724,508:22064501,36268883 -g3724,508:22064501,36268883 -g3724,508:25598857,36268883 -g3724,508:27167133,36268883 -g3724,508:28735409,36268883 -g3724,508:30303685,36268883 -k3724,509:32041046,36268883:541984 -k3724,509:32583029,36268883:541983 -) -(3724,510:20753781,37128523:11829248,505283,102891 -h3724,509:20753781,37128523:0,0,0 -r3724,523:20753781,37128523:0,608174,102891 -g3724,509:22064501,37128523 -g3724,509:22064501,37128523 -g3724,509:25994039,37128523 -g3724,509:27163856,37128523 -k3724,510:30471131,37128523:2111898 -k3724,510:32583029,37128523:2111898 -) -(3724,511:20753781,37988163:11829248,513147,102891 -h3724,510:20753781,37988163:0,0,0 -r3724,523:20753781,37988163:0,616038,102891 -g3724,510:22064501,37988163 -g3724,510:22064501,37988163 -k3724,510:32583029,37988163:70124 -) -(3724,511:23375221,38829651:9207808,485622,11795 -k3724,511:28576814,38829651:4006216 -k3724,511:32583029,38829651:4006215 -) -(3724,512:20753781,39689290:11829248,505283,126483 -h3724,511:20753781,39689290:0,0,0 -r3724,523:20753781,39689290:0,631766,126483 -g3724,511:22064501,39689290 -g3724,511:22064501,39689290 -g3724,511:25994039,39689290 -g3724,511:27163856,39689290 -k3724,512:30471131,39689290:2111898 -k3724,512:32583029,39689290:2111898 -) -(3724,513:20753781,40548930:11829248,505283,102891 -h3724,512:20753781,40548930:0,0,0 -r3724,523:20753781,40548930:0,608174,102891 -g3724,512:22064501,40548930 -g3724,512:22064501,40548930 -g3724,512:26784403,40548930 -g3724,512:28352679,40548930 -k3724,513:31065543,40548930:1517487 -k3724,513:32583029,40548930:1517486 -) -(3724,514:20753781,41408570:11829248,505283,102891 -h3724,513:20753781,41408570:0,0,0 -r3724,523:20753781,41408570:0,608174,102891 -g3724,513:22064501,41408570 -g3724,513:22064501,41408570 -g3724,513:25598857,41408570 -g3724,513:26768674,41408570 -k3724,514:30074311,41408570:2508719 -k3724,514:32583029,41408570:2508718 -) -(3724,515:20753781,42268210:11829248,505283,102891 -h3724,514:20753781,42268210:0,0,0 -r3724,523:20753781,42268210:0,608174,102891 -g3724,514:22064501,42268210 -g3724,514:22064501,42268210 -g3724,514:25203675,42268210 -g3724,514:26373492,42268210 -g3724,514:27543309,42268210 -k3724,515:30461628,42268210:2121401 -k3724,515:32583029,42268210:2121401 -) -(3724,516:20753781,43127850:11829248,505283,102891 -h3724,515:20753781,43127850:0,0,0 -r3724,523:20753781,43127850:0,608174,102891 -g3724,515:22064501,43127850 -g3724,515:22064501,43127850 -g3724,515:24018128,43127850 -k3724,516:28898267,43127850:3684762 -k3724,516:32583029,43127850:3684762 -) -(3724,517:20753781,43987489:11829248,505283,134348 -h3724,516:20753781,43987489:0,0,0 -r3724,523:20753781,43987489:0,639631,134348 -g3724,516:22064501,43987489 -g3724,516:22064501,43987489 -g3724,516:25994039,43987489 -k3724,517:29886223,43987489:2696807 -k3724,517:32583029,43987489:2696806 -) -(3724,518:20753781,44847129:11829248,505283,126483 -h3724,517:20753781,44847129:0,0,0 -r3724,523:20753781,44847129:0,631766,126483 -g3724,517:22064501,44847129 -g3724,517:22064501,44847129 -g3724,517:25598857,44847129 -k3724,518:29489402,44847129:3093627 -k3724,518:32583029,44847129:3093627 -) -(3724,519:20753781,45706769:11829248,505283,102891 -h3724,518:20753781,45706769:0,0,0 -r3724,523:20753781,45706769:0,608174,102891 -g3724,518:22064501,45706769 -g3724,518:22064501,45706769 -g3724,518:25598857,45706769 -k3724,519:29688632,45706769:2894398 -k3724,519:32583029,45706769:2894397 -) -] -(3724,523:32583029,45706769:0,355205,126483 -h3724,523:32583029,45706769:420741,355205,126483 -k3724,523:32583029,45706769:-420741 -) -) -] -(3724,523:32583029,45706769:0,0,0 -g3724,523:32583029,45706769 -) -) -] -(3724,523:6630773,47279633:25952256,0,0 -h3724,523:6630773,47279633:25952256,0,0 -) -] -(3724,523:4262630,4025873:0,0,0 -[3724,523:-473656,4025873:0,0,0 -(3724,523:-473656,-710413:0,0,0 -(3724,523:-473656,-710413:0,0,0 -g3724,523:-473656,-710413 -) -g3724,523:-473656,-710413 -) -] -) -] -!30627 -}455 +g3765,506:6630773,4812305 +k3765,506:23083588,4812305:15257438 +g3765,506:24981510,4812305 +g3765,506:25796777,4812305 +g3765,506:26410194,4812305 +g3765,506:28753761,4812305 +g3765,506:29709275,4812305 +) +) +] +[3765,506:6630773,45706769:25952256,40108032,0 +(3765,506:6630773,45706769:25952256,40108032,0 +(3765,506:6630773,45706769:0,0,0 +g3765,506:6630773,45706769 +) +[3765,506:6630773,45706769:25952256,40108032,0 +(3765,506:6630773,45706769:25952256,40108032,126483 +[3765,506:6630773,45706769:11829248,40108032,102891 +(3765,420:6630773,6254097:11829248,530548,141066 +h3765,419:6630773,6254097:0,0,0 +r3765,506:6630773,6254097:0,671614,141066 +g3765,419:7941493,6254097 +g3765,419:7941493,6254097 +k3765,419:18460021,6254097:801183 +) +(3765,420:9252213,7119177:9207808,485622,11795 +k3765,420:14453806,7119177:4006216 +k3765,420:18460021,7119177:4006215 +) +(3765,421:6630773,7997359:11829248,530548,141066 +h3765,420:6630773,7997359:0,0,0 +r3765,506:6630773,7997359:0,671614,141066 +g3765,420:7941493,7997359 +g3765,420:7941493,7997359 +g3765,420:15783355,7997359 +k3765,421:17719377,7997359:740645 +k3765,421:18460021,7997359:740644 +) +(3765,422:6630773,8875541:11829248,530548,102891 +h3765,421:6630773,8875541:0,0,0 +r3765,506:6630773,8875541:0,633439,102891 +g3765,421:7941493,8875541 +g3765,421:7941493,8875541 +g3765,421:15368413,8875541 +k3765,422:17511906,8875541:948116 +k3765,422:18460021,8875541:948115 +) +(3765,423:6630773,9753722:11829248,530548,132808 +h3765,422:6630773,9753722:0,0,0 +r3765,506:6630773,9753722:0,663356,132808 +g3765,422:7941493,9753722 +g3765,422:7941493,9753722 +k3765,422:18460021,9753722:1216125 +) +(3765,423:9252213,10618802:9207808,485622,102891 +g3765,422:10820489,10618802 +k3765,423:15237944,10618802:3222078 +k3765,423:18460021,10618802:3222077 +) +(3765,424:6630773,11496984:11829248,530548,102891 +h3765,423:6630773,11496984:0,0,0 +r3765,506:6630773,11496984:0,633439,102891 +g3765,423:7941493,11496984 +g3765,423:7941493,11496984 +k3765,423:18460021,11496984:801183 +) +(3765,424:9252213,12362064:9207808,485622,11795 +k3765,424:14453806,12362064:4006216 +k3765,424:18460021,12362064:4006215 +) +(3765,425:6630773,13240246:11829248,530548,102891 +h3765,424:6630773,13240246:0,0,0 +r3765,506:6630773,13240246:0,633439,102891 +g3765,424:7941493,13240246 +g3765,424:7941493,13240246 +k3765,424:18460021,13240246:801183 +) +(3765,425:9252213,14105326:9207808,485622,11795 +k3765,425:14453806,14105326:4006216 +k3765,425:18460021,14105326:4006215 +) +(3765,426:6630773,14983508:11829248,538806,132808 +h3765,425:6630773,14983508:0,0,0 +r3765,506:6630773,14983508:0,671614,132808 +g3765,425:7941493,14983508 +g3765,425:7941493,14983508 +g3765,425:17028182,14983508 +k3765,426:18341790,14983508:118231 +k3765,426:18460021,14983508:118231 +) +(3765,427:6630773,15861690:11829248,530548,102891 +h3765,426:6630773,15861690:0,0,0 +r3765,506:6630773,15861690:0,633439,102891 +g3765,426:7941493,15861690 +g3765,426:7941493,15861690 +g3765,426:16613240,15861690 +k3765,427:18134319,15861690:325702 +k3765,427:18460021,15861690:325702 +) +(3765,428:6630773,16739871:11829248,530548,102891 +h3765,427:6630773,16739871:0,0,0 +r3765,506:6630773,16739871:0,633439,102891 +g3765,427:7941493,16739871 +g3765,427:7941493,16739871 +g3765,427:15783355,16739871 +k3765,428:17719377,16739871:740645 +k3765,428:18460021,16739871:740644 +) +(3765,429:6630773,17618053:11829248,530548,141066 +h3765,428:6630773,17618053:0,0,0 +r3765,506:6630773,17618053:0,671614,141066 +g3765,428:7941493,17618053 +g3765,428:7941493,17618053 +g3765,428:14538528,17618053 +k3765,429:17096963,17618053:1363058 +k3765,429:18460021,17618053:1363058 +) +(3765,430:6630773,18496235:11829248,530548,102891 +h3765,429:6630773,18496235:0,0,0 +r3765,506:6630773,18496235:0,633439,102891 +g3765,429:7941493,18496235 +g3765,429:7941493,18496235 +g3765,429:15368413,18496235 +k3765,430:17511906,18496235:948116 +k3765,430:18460021,18496235:948115 +) +(3765,431:6630773,19374417:11829248,530548,132808 +h3765,430:6630773,19374417:0,0,0 +r3765,506:6630773,19374417:0,663356,132808 +g3765,430:7941493,19374417 +g3765,430:7941493,19374417 +g3765,430:16613240,19374417 +k3765,431:18134319,19374417:325702 +k3765,431:18460021,19374417:325702 +) +(3765,432:6630773,20252599:11829248,530548,141066 +h3765,431:6630773,20252599:0,0,0 +r3765,506:6630773,20252599:0,671614,141066 +g3765,431:7941493,20252599 +g3765,431:7941493,20252599 +g3765,431:13708644,20252599 +k3765,432:16682021,20252599:1778000 +k3765,432:18460021,20252599:1778000 +) +(3765,433:6630773,21130780:11829248,530548,141066 +h3765,432:6630773,21130780:0,0,0 +r3765,506:6630773,21130780:0,671614,141066 +g3765,432:7941493,21130780 +g3765,432:7941493,21130780 +g3765,432:14538528,21130780 +k3765,433:17096963,21130780:1363058 +k3765,433:18460021,21130780:1363058 +) +(3765,434:6630773,22008962:11829248,530548,102891 +h3765,433:6630773,22008962:0,0,0 +r3765,506:6630773,22008962:0,633439,102891 +g3765,433:7941493,22008962 +g3765,433:7941493,22008962 +g3765,433:9974162,22008962 +g3765,433:11542438,22008962 +k3765,434:15598918,22008962:2861103 +k3765,434:18460021,22008962:2861103 +) +(3765,435:6630773,22887144:11829248,530548,102891 +h3765,434:6630773,22887144:0,0,0 +r3765,506:6630773,22887144:0,633439,102891 +g3765,434:7941493,22887144 +g3765,434:7941493,22887144 +g3765,434:11633931,22887144 +k3765,435:15644665,22887144:2815357 +k3765,435:18460021,22887144:2815356 +) +(3765,436:6630773,23765326:11829248,530548,102891 +h3765,435:6630773,23765326:0,0,0 +r3765,506:6630773,23765326:0,633439,102891 +g3765,435:7941493,23765326 +g3765,435:7941493,23765326 +g3765,435:11633931,23765326 +k3765,436:15644665,23765326:2815357 +k3765,436:18460021,23765326:2815356 +) +(3765,437:6630773,24643508:11829248,530548,102891 +h3765,436:6630773,24643508:0,0,0 +r3765,506:6630773,24643508:0,633439,102891 +g3765,436:7941493,24643508 +g3765,436:7941493,24643508 +g3765,436:10389104,24643508 +k3765,437:15022251,24643508:3437770 +k3765,437:18460021,24643508:3437770 +) +(3765,438:6630773,25521689:11829248,530548,141066 +h3765,437:6630773,25521689:0,0,0 +r3765,506:6630773,25521689:0,671614,141066 +g3765,437:7941493,25521689 +g3765,437:7941493,25521689 +g3765,437:12878759,25521689 +k3765,438:16267079,25521689:2192943 +k3765,438:18460021,25521689:2192942 +) +(3765,439:6630773,26399871:11829248,530548,132808 +h3765,438:6630773,26399871:0,0,0 +r3765,506:6630773,26399871:0,663356,132808 +g3765,438:7941493,26399871 +g3765,438:7941493,26399871 +g3765,438:10389104,26399871 +g3765,438:11558921,26399871 +k3765,439:15607160,26399871:2852862 +k3765,439:18460021,26399871:2852861 +) +(3765,440:6630773,27278053:11829248,530548,102891 +h3765,439:6630773,27278053:0,0,0 +r3765,506:6630773,27278053:0,633439,102891 +g3765,439:7941493,27278053 +g3765,439:7941493,27278053 +g3765,439:12463816,27278053 +k3765,440:16059607,27278053:2400414 +k3765,440:18460021,27278053:2400414 +) +(3765,441:6630773,28156235:11829248,530548,132808 +h3765,440:6630773,28156235:0,0,0 +r3765,506:6630773,28156235:0,663356,132808 +g3765,440:7941493,28156235 +g3765,440:7941493,28156235 +g3765,440:15368413,28156235 +k3765,441:17511906,28156235:948116 +k3765,441:18460021,28156235:948115 +) +(3765,442:6630773,29034417:11829248,530548,102891 +h3765,441:6630773,29034417:0,0,0 +r3765,506:6630773,29034417:0,633439,102891 +g3765,441:7941493,29034417 +g3765,441:7941493,29034417 +g3765,441:11218989,29034417 +k3765,442:15437194,29034417:3022828 +k3765,442:18460021,29034417:3022827 +) +(3765,443:6630773,29912598:11829248,530548,102891 +h3765,442:6630773,29912598:0,0,0 +r3765,506:6630773,29912598:0,633439,102891 +g3765,442:7941493,29912598 +g3765,442:7941493,29912598 +g3765,442:11218989,29912598 +k3765,443:15437194,29912598:3022828 +k3765,443:18460021,29912598:3022827 +) +(3765,444:6630773,30790780:11829248,538806,141066 +h3765,443:6630773,30790780:0,0,0 +r3765,506:6630773,30790780:0,679872,141066 +g3765,443:7941493,30790780 +g3765,443:7941493,30790780 +g3765,443:11633931,30790780 +k3765,444:15445435,30790780:3014586 +k3765,444:18460021,30790780:3014586 +) +(3765,445:6630773,31668962:11829248,530548,102891 +h3765,444:6630773,31668962:0,0,0 +r3765,506:6630773,31668962:0,633439,102891 +g3765,444:7941493,31668962 +g3765,444:7941493,31668962 +g3765,444:10389104,31668962 +k3765,445:14823022,31668962:3637000 +k3765,445:18460021,31668962:3636999 +) +(3765,446:6630773,32547144:11829248,530548,102891 +h3765,445:6630773,32547144:0,0,0 +r3765,506:6630773,32547144:0,633439,102891 +g3765,445:7941493,32547144 +g3765,445:7941493,32547144 +g3765,445:11218989,32547144 +k3765,446:15437194,32547144:3022828 +k3765,446:18460021,32547144:3022827 +) +(3765,447:6630773,33425326:11829248,530548,132808 +h3765,446:6630773,33425326:0,0,0 +r3765,506:6630773,33425326:0,663356,132808 +g3765,446:7941493,33425326 +g3765,446:7941493,33425326 +g3765,446:14538528,33425326 +k3765,447:17096963,33425326:1363058 +k3765,447:18460021,33425326:1363058 +) +(3765,448:6630773,34303507:11829248,530548,102891 +h3765,447:6630773,34303507:0,0,0 +r3765,506:6630773,34303507:0,633439,102891 +g3765,447:7941493,34303507 +g3765,447:7941493,34303507 +g3765,447:11218989,34303507 +k3765,448:15237964,34303507:3222057 +k3765,448:18460021,34303507:3222057 +) +(3765,449:6630773,35181689:11829248,530548,102891 +h3765,448:6630773,35181689:0,0,0 +r3765,506:6630773,35181689:0,633439,102891 +g3765,448:7941493,35181689 +g3765,448:7941493,35181689 +g3765,448:10804046,35181689 +g3765,448:11973863,35181689 +g3765,448:13143680,35181689 +g3765,448:14711956,35181689 +k3765,449:17183677,35181689:1276344 +k3765,449:18460021,35181689:1276344 +) +(3765,450:6630773,36059871:11829248,530548,102891 +h3765,449:6630773,36059871:0,0,0 +r3765,506:6630773,36059871:0,633439,102891 +g3765,449:7941493,36059871 +g3765,449:7941493,36059871 +g3765,449:11633931,36059871 +k3765,450:15644665,36059871:2815357 +k3765,450:18460021,36059871:2815356 +) +(3765,451:6630773,36938053:11829248,530548,132808 +h3765,450:6630773,36938053:0,0,0 +r3765,506:6630773,36938053:0,663356,132808 +g3765,450:7941493,36938053 +g3765,450:7941493,36938053 +g3765,450:11633931,36938053 +k3765,451:15644665,36938053:2815357 +k3765,451:18460021,36938053:2815356 +) +(3765,452:6630773,37816235:11829248,530548,132808 +h3765,451:6630773,37816235:0,0,0 +r3765,506:6630773,37816235:0,663356,132808 +g3765,451:7941493,37816235 +g3765,451:7941493,37816235 +g3765,451:11218989,37816235 +k3765,452:15437194,37816235:3022828 +k3765,452:18460021,37816235:3022827 +) +(3765,453:6630773,38694416:11829248,530548,132808 +h3765,452:6630773,38694416:0,0,0 +r3765,506:6630773,38694416:0,663356,132808 +g3765,452:7941493,38694416 +g3765,452:7941493,38694416 +g3765,452:11633931,38694416 +k3765,453:15644665,38694416:2815357 +k3765,453:18460021,38694416:2815356 +) +(3765,454:6630773,39572598:11829248,538806,132808 +h3765,453:6630773,39572598:0,0,0 +r3765,506:6630773,39572598:0,671614,132808 +g3765,453:7941493,39572598 +g3765,453:7941493,39572598 +g3765,453:12048874,39572598 +g3765,453:13218691,39572598 +g3765,453:14388508,39572598 +g3765,453:15956784,39572598 +k3765,453:18460021,39572598:1134190 +) +(3765,454:9252213,40437678:9207808,485622,11795 +k3765,454:14453806,40437678:4006216 +k3765,454:18460021,40437678:4006215 +) +(3765,455:6630773,41315860:11829248,530548,132808 +h3765,454:6630773,41315860:0,0,0 +r3765,506:6630773,41315860:0,663356,132808 +g3765,454:7941493,41315860 +g3765,454:7941493,41315860 +g3765,454:10804046,41315860 +k3765,455:15030493,41315860:3429529 +k3765,455:18460021,41315860:3429528 +) +(3765,456:6630773,42194042:11829248,530548,102891 +h3765,455:6630773,42194042:0,0,0 +r3765,506:6630773,42194042:0,633439,102891 +g3765,455:7941493,42194042 +g3765,455:7941493,42194042 +g3765,455:12463816,42194042 +g3765,455:14032092,42194042 +k3765,456:16843745,42194042:1616276 +k3765,456:18460021,42194042:1616276 +) +(3765,457:6630773,43072224:11829248,530548,141066 +h3765,456:6630773,43072224:0,0,0 +r3765,506:6630773,43072224:0,671614,141066 +g3765,456:7941493,43072224 +g3765,456:7941493,43072224 +g3765,456:11218989,43072224 +g3765,456:12787265,43072224 +k3765,457:16221332,43072224:2238690 +k3765,457:18460021,43072224:2238689 +) +(3765,458:6630773,43950405:11829248,530548,102891 +h3765,457:6630773,43950405:0,0,0 +r3765,506:6630773,43950405:0,633439,102891 +g3765,457:7941493,43950405 +g3765,457:7941493,43950405 +g3765,457:13708644,43950405 +k3765,458:16682021,43950405:1778000 +k3765,458:18460021,43950405:1778000 +) +(3765,459:6630773,44828587:11829248,530548,102891 +h3765,458:6630773,44828587:0,0,0 +r3765,506:6630773,44828587:0,633439,102891 +g3765,458:7941493,44828587 +g3765,458:7941493,44828587 +g3765,458:10804046,44828587 +k3765,459:15229722,44828587:3230299 +k3765,459:18460021,44828587:3230299 +) +(3765,460:6630773,45706769:11829248,530548,102891 +h3765,459:6630773,45706769:0,0,0 +r3765,506:6630773,45706769:0,633439,102891 +g3765,459:7941493,45706769 +g3765,459:7941493,45706769 +g3765,459:12463816,45706769 +g3765,459:15555149,45706769 +g3765,459:17123425,45706769 +k3765,460:18389412,45706769:70610 +k3765,460:18460021,45706769:70609 +) +] +k3765,506:19606901,45706769:1146880 +r3765,506:19606901,45706769:0,40234515,126483 +k3765,506:20753781,45706769:1146880 +[3765,506:20753781,45706769:11829248,40108032,102891 +(3765,461:20753781,6254097:11829248,530548,102891 +h3765,460:20753781,6254097:0,0,0 +r3765,506:20753781,6254097:0,633439,102891 +g3765,460:22064501,6254097 +g3765,460:22064501,6254097 +g3765,460:27416709,6254097 +k3765,461:30597558,6254097:1985472 +k3765,461:32583029,6254097:1985471 +) +(3765,462:20753781,7132279:11829248,530548,102891 +h3765,461:20753781,7132279:0,0,0 +r3765,506:20753781,7132279:0,633439,102891 +g3765,461:22064501,7132279 +g3765,461:22064501,7132279 +g3765,461:28246594,7132279 +k3765,462:31012500,7132279:1570529 +k3765,462:32583029,7132279:1570529 +) +(3765,463:20753781,8010461:11829248,530548,132808 +h3765,462:20753781,8010461:0,0,0 +r3765,506:20753781,8010461:0,663356,132808 +g3765,462:22064501,8010461 +g3765,462:22064501,8010461 +g3765,462:28246594,8010461 +g3765,462:29814870,8010461 +k3765,463:31796638,8010461:786391 +k3765,463:32583029,8010461:786391 +) +(3765,464:20753781,8888642:11829248,530548,102891 +h3765,463:20753781,8888642:0,0,0 +r3765,506:20753781,8888642:0,633439,102891 +g3765,463:22064501,8888642 +g3765,463:22064501,8888642 +g3765,463:28661536,8888642 +k3765,464:31219971,8888642:1363058 +k3765,464:32583029,8888642:1363058 +) +(3765,465:20753781,9766824:11829248,530548,102891 +h3765,464:20753781,9766824:0,0,0 +r3765,506:20753781,9766824:0,633439,102891 +g3765,464:22064501,9766824 +g3765,464:22064501,9766824 +g3765,464:27416709,9766824 +g3765,464:28984985,9766824 +g3765,464:30553261,9766824 +k3765,465:32165834,9766824:417196 +k3765,465:32583029,9766824:417195 +) +(3765,466:20753781,10645006:11829248,530548,132808 +h3765,465:20753781,10645006:0,0,0 +r3765,506:20753781,10645006:0,663356,132808 +g3765,465:22064501,10645006 +g3765,465:22064501,10645006 +g3765,465:28246594,10645006 +g3765,465:29814870,10645006 +k3765,466:31796638,10645006:786391 +k3765,466:32583029,10645006:786391 +) +(3765,467:20753781,11523188:11829248,530548,132808 +h3765,466:20753781,11523188:0,0,0 +r3765,506:20753781,11523188:0,663356,132808 +g3765,466:22064501,11523188 +g3765,466:22064501,11523188 +g3765,466:29491421,11523188 +g3765,466:31059697,11523188 +k3765,467:32419052,11523188:163978 +k3765,467:32583029,11523188:163977 +) +(3765,468:20753781,12401370:11829248,538806,102891 +h3765,467:20753781,12401370:0,0,0 +r3765,506:20753781,12401370:0,641697,102891 +g3765,467:22064501,12401370 +g3765,467:22064501,12401370 +g3765,467:30736248,12401370 +k3765,468:32257327,12401370:325702 +k3765,468:32583029,12401370:325702 +) +(3765,469:20753781,13279551:11829248,538806,102891 +h3765,468:20753781,13279551:0,0,0 +r3765,506:20753781,13279551:0,641697,102891 +g3765,468:22064501,13279551 +g3765,468:22064501,13279551 +g3765,468:28661536,13279551 +k3765,469:31219971,13279551:1363058 +k3765,469:32583029,13279551:1363058 +) +(3765,470:20753781,14157733:11829248,530548,141066 +h3765,469:20753781,14157733:0,0,0 +r3765,506:20753781,14157733:0,671614,141066 +g3765,469:22064501,14157733 +g3765,469:22064501,14157733 +g3765,469:29076479,14157733 +k3765,470:31427443,14157733:1155587 +k3765,470:32583029,14157733:1155586 +) +(3765,471:20753781,15035915:11829248,530548,132808 +h3765,470:20753781,15035915:0,0,0 +r3765,506:20753781,15035915:0,663356,132808 +g3765,470:22064501,15035915 +g3765,470:22064501,15035915 +g3765,470:28661536,15035915 +k3765,471:31219971,15035915:1363058 +k3765,471:32583029,15035915:1363058 +) +(3765,472:20753781,15914097:11829248,530548,132808 +h3765,471:20753781,15914097:0,0,0 +r3765,506:20753781,15914097:0,663356,132808 +g3765,471:22064501,15914097 +g3765,471:22064501,15914097 +g3765,471:29076479,15914097 +k3765,472:31427443,15914097:1155587 +k3765,472:32583029,15914097:1155586 +) +(3765,473:20753781,16792279:11829248,530548,132808 +h3765,472:20753781,16792279:0,0,0 +r3765,506:20753781,16792279:0,663356,132808 +g3765,472:22064501,16792279 +g3765,472:22064501,16792279 +g3765,472:29076479,16792279 +g3765,472:30644755,16792279 +k3765,473:32211581,16792279:371449 +k3765,473:32583029,16792279:371448 +) +(3765,474:20753781,17670460:11829248,538806,102891 +h3765,473:20753781,17670460:0,0,0 +r3765,506:20753781,17670460:0,641697,102891 +g3765,473:22064501,17670460 +g3765,473:22064501,17670460 +g3765,473:26171882,17670460 +k3765,474:29975144,17670460:2607885 +k3765,474:32583029,17670460:2607885 +) +(3765,475:20753781,18548642:11829248,530548,102891 +h3765,474:20753781,18548642:0,0,0 +r3765,506:20753781,18548642:0,633439,102891 +g3765,474:22064501,18548642 +g3765,474:22064501,18548642 +g3765,474:27831652,18548642 +g3765,474:29399928,18548642 +k3765,474:32583029,18548642:1814054 +) +(3765,475:23375221,19413722:9207808,485622,102891 +g3765,474:26466554,19413722 +k3765,475:30122480,19413722:2460549 +k3765,475:32583029,19413722:2460549 +) +(3765,476:20753781,20291904:11829248,530548,132808 +h3765,475:20753781,20291904:0,0,0 +r3765,506:20753781,20291904:0,663356,132808 +g3765,475:22064501,20291904 +g3765,475:22064501,20291904 +g3765,475:28246594,20291904 +k3765,475:32583029,20291904:2967388 +) +(3765,476:23375221,21156984:9207808,485622,102891 +g3765,475:26466554,21156984 +g3765,475:28034830,21156984 +g3765,475:29603106,21156984 +k3765,476:31690756,21156984:892273 +k3765,476:32583029,21156984:892273 +) +(3765,477:20753781,22035166:11829248,530548,132808 +h3765,476:20753781,22035166:0,0,0 +r3765,506:20753781,22035166:0,663356,132808 +g3765,476:22064501,22035166 +g3765,476:22064501,22035166 +g3765,476:29491421,22035166 +k3765,477:31634914,22035166:948116 +k3765,477:32583029,22035166:948115 +) +(3765,478:20753781,22913348:11829248,530548,132808 +h3765,477:20753781,22913348:0,0,0 +r3765,506:20753781,22913348:0,663356,132808 +g3765,477:22064501,22913348 +g3765,477:22064501,22913348 +g3765,477:29491421,22913348 +k3765,478:31634914,22913348:948116 +k3765,478:32583029,22913348:948115 +) +(3765,479:20753781,23791529:11829248,530548,132808 +h3765,478:20753781,23791529:0,0,0 +r3765,506:20753781,23791529:0,663356,132808 +g3765,478:22064501,23791529 +g3765,478:22064501,23791529 +g3765,478:24927054,23791529 +g3765,478:26495330,23791529 +k3765,479:30136868,23791529:2446161 +k3765,479:32583029,23791529:2446161 +) +(3765,480:20753781,24669711:11829248,530548,102891 +h3765,479:20753781,24669711:0,0,0 +r3765,506:20753781,24669711:0,633439,102891 +g3765,479:22064501,24669711 +g3765,479:22064501,24669711 +g3765,479:24512112,24669711 +g3765,479:26080388,24669711 +k3765,480:29929397,24669711:2653632 +k3765,480:32583029,24669711:2653632 +) +(3765,481:20753781,25547893:11829248,530548,102891 +h3765,480:20753781,25547893:0,0,0 +r3765,506:20753781,25547893:0,633439,102891 +g3765,480:22064501,25547893 +g3765,480:22064501,25547893 +g3765,480:24512112,25547893 +g3765,480:26806527,25547893 +g3765,480:28374803,25547893 +g3765,480:29943079,25547893 +k3765,480:32583029,25547893:1270903 +) +(3765,481:23375221,26412973:9207808,485622,102891 +g3765,480:24943497,26412973 +g3765,480:26511773,26412973 +k3765,481:30145090,26412973:2437940 +k3765,481:32583029,26412973:2437939 +) +(3765,482:20753781,27291155:11829248,530548,102891 +h3765,481:20753781,27291155:0,0,0 +r3765,506:20753781,27291155:0,633439,102891 +g3765,481:22064501,27291155 +g3765,481:22064501,27291155 +g3765,481:27831652,27291155 +k3765,482:30805029,27291155:1778000 +k3765,482:32583029,27291155:1778000 +) +(3765,483:20753781,28169337:11829248,538806,102891 +h3765,482:20753781,28169337:0,0,0 +r3765,506:20753781,28169337:0,641697,102891 +g3765,482:22064501,28169337 +g3765,482:22064501,28169337 +g3765,482:26586824,28169337 +g3765,482:28155100,28169337 +k3765,483:30966753,28169337:1616276 +k3765,483:32583029,28169337:1616276 +) +(3765,484:20753781,29047518:11829248,530548,132808 +h3765,483:20753781,29047518:0,0,0 +r3765,506:20753781,29047518:0,663356,132808 +g3765,483:22064501,29047518 +g3765,483:22064501,29047518 +g3765,483:26586824,29047518 +k3765,484:30182615,29047518:2400414 +k3765,484:32583029,29047518:2400414 +) +(3765,485:20753781,29925700:11829248,530548,132808 +h3765,484:20753781,29925700:0,0,0 +r3765,506:20753781,29925700:0,663356,132808 +g3765,484:22064501,29925700 +g3765,484:22064501,29925700 +g3765,484:25756939,29925700 +k3765,485:29568443,29925700:3014586 +k3765,485:32583029,29925700:3014586 +) +(3765,486:20753781,30803882:11829248,530548,132808 +h3765,485:20753781,30803882:0,0,0 +r3765,506:20753781,30803882:0,663356,132808 +g3765,485:22064501,30803882 +g3765,485:22064501,30803882 +g3765,485:26586824,30803882 +k3765,486:29983386,30803882:2599644 +k3765,486:32583029,30803882:2599643 +) +(3765,487:20753781,31682064:11829248,530548,102891 +h3765,486:20753781,31682064:0,0,0 +r3765,506:20753781,31682064:0,633439,102891 +g3765,486:22064501,31682064 +g3765,486:22064501,31682064 +g3765,486:26171882,31682064 +k3765,487:29775915,31682064:2807115 +k3765,487:32583029,31682064:2807114 +) +(3765,488:20753781,32560246:11829248,530548,132808 +h3765,487:20753781,32560246:0,0,0 +r3765,506:20753781,32560246:0,663356,132808 +g3765,487:22064501,32560246 +g3765,487:22064501,32560246 +g3765,487:26171882,32560246 +k3765,488:29775915,32560246:2807115 +k3765,488:32583029,32560246:2807114 +) +(3765,489:20753781,33438427:11829248,530548,102891 +h3765,488:20753781,33438427:0,0,0 +r3765,506:20753781,33438427:0,633439,102891 +g3765,488:22064501,33438427 +g3765,488:22064501,33438427 +g3765,488:24512112,33438427 +k3765,489:28946030,33438427:3637000 +k3765,489:32583029,33438427:3636999 +) +(3765,490:20753781,34316609:11829248,530548,102891 +h3765,489:20753781,34316609:0,0,0 +r3765,506:20753781,34316609:0,633439,102891 +g3765,489:22064501,34316609 +g3765,489:22064501,34316609 +g3765,489:25756939,34316609 +g3765,489:26926756,34316609 +g3765,489:28495032,34316609 +g3765,489:30063308,34316609 +k3765,489:32583029,34316609:1150674 +) +(3765,490:23375221,35181689:9207808,485622,11795 +k3765,490:28576814,35181689:4006216 +k3765,490:32583029,35181689:4006215 +) +(3765,491:20753781,36059871:11829248,530548,102891 +h3765,490:20753781,36059871:0,0,0 +r3765,506:20753781,36059871:0,633439,102891 +g3765,490:22064501,36059871 +g3765,490:22064501,36059871 +g3765,490:27416709,36059871 +k3765,491:30597558,36059871:1985472 +k3765,491:32583029,36059871:1985471 +) +(3765,492:20753781,36938053:11829248,530548,102891 +h3765,491:20753781,36938053:0,0,0 +r3765,506:20753781,36938053:0,633439,102891 +g3765,491:22064501,36938053 +g3765,491:22064501,36938053 +g3765,491:25756939,36938053 +k3765,492:29568443,36938053:3014586 +k3765,492:32583029,36938053:3014586 +) +(3765,493:20753781,37816235:11829248,530548,141066 +h3765,492:20753781,37816235:0,0,0 +r3765,506:20753781,37816235:0,671614,141066 +g3765,492:22064501,37816235 +g3765,492:22064501,37816235 +g3765,492:27001767,37816235 +k3765,493:30190857,37816235:2392172 +k3765,493:32583029,37816235:2392172 +) +(3765,494:20753781,38694416:11829248,530548,102891 +h3765,493:20753781,38694416:0,0,0 +r3765,506:20753781,38694416:0,633439,102891 +g3765,493:22064501,38694416 +g3765,493:22064501,38694416 +g3765,493:24512112,38694416 +g3765,493:26080388,38694416 +k3765,494:29929397,38694416:2653632 +k3765,494:32583029,38694416:2653632 +) +(3765,495:20753781,39572598:11829248,530548,102891 +h3765,494:20753781,39572598:0,0,0 +r3765,506:20753781,39572598:0,633439,102891 +g3765,494:22064501,39572598 +g3765,494:22064501,39572598 +g3765,494:27001767,39572598 +k3765,495:30390087,39572598:2192943 +k3765,495:32583029,39572598:2192942 +) +(3765,497:20753781,40450780:11829248,530548,132808 +h3765,495:20753781,40450780:0,0,0 +r3765,506:20753781,40450780:0,663356,132808 +g3765,495:22064501,40450780 +g3765,495:22064501,40450780 +g3765,495:26171882,40450780 +g3765,495:27740158,40450780 +g3765,495:29308434,40450780 +g3765,495:30876710,40450780 +k3765,495:32583029,40450780:337272 +) +(3765,497:23375221,41315860:9207808,485622,102891 +g3765,495:24943497,41315860 +g3765,495:28034830,41315860 +g3765,496:29603106,41315860 +g3765,496:31171382,41315860 +k3765,497:32474894,41315860:108135 +k3765,497:32583029,41315860:108135 +) +(3765,498:20753781,42194042:11829248,530548,102891 +h3765,497:20753781,42194042:0,0,0 +r3765,506:20753781,42194042:0,633439,102891 +g3765,497:22064501,42194042 +g3765,497:22064501,42194042 +g3765,497:25756939,42194042 +k3765,498:29767673,42194042:2815357 +k3765,498:32583029,42194042:2815356 +) +(3765,499:20753781,43072224:11829248,530548,132808 +h3765,498:20753781,43072224:0,0,0 +r3765,506:20753781,43072224:0,663356,132808 +g3765,498:22064501,43072224 +g3765,498:22064501,43072224 +g3765,498:25756939,43072224 +k3765,499:29767673,43072224:2815357 +k3765,499:32583029,43072224:2815356 +) +(3765,500:20753781,43950405:11829248,530548,132808 +h3765,499:20753781,43950405:0,0,0 +r3765,506:20753781,43950405:0,663356,132808 +g3765,499:22064501,43950405 +g3765,499:22064501,43950405 +g3765,499:27831652,43950405 +g3765,499:29399928,43950405 +k3765,500:31589167,43950405:993862 +k3765,500:32583029,43950405:993862 +) +(3765,501:20753781,44828587:11829248,530548,102891 +h3765,500:20753781,44828587:0,0,0 +r3765,506:20753781,44828587:0,633439,102891 +g3765,500:22064501,44828587 +g3765,500:22064501,44828587 +g3765,500:23682227,44828587 +g3765,500:24852044,44828587 +k3765,501:29315225,44828587:3267804 +k3765,501:32583029,44828587:3267804 +) +(3765,502:20753781,45706769:11829248,530548,102891 +h3765,501:20753781,45706769:0,0,0 +r3765,506:20753781,45706769:0,633439,102891 +g3765,501:22064501,45706769 +g3765,501:22064501,45706769 +g3765,501:25341997,45706769 +g3765,501:26910273,45706769 +k3765,502:30344340,45706769:2238690 +k3765,502:32583029,45706769:2238689 +) +] +(3765,506:32583029,45706769:0,355205,126483 +h3765,506:32583029,45706769:420741,355205,126483 +k3765,506:32583029,45706769:-420741 +) +) +] +(3765,506:32583029,45706769:0,0,0 +g3765,506:32583029,45706769 +) +) +] +(3765,506:6630773,47279633:25952256,0,0 +h3765,506:6630773,47279633:25952256,0,0 +) +] +(3765,506:4262630,4025873:0,0,0 +[3765,506:-473656,4025873:0,0,0 +(3765,506:-473656,-710413:0,0,0 +(3765,506:-473656,-710413:0,0,0 +g3765,506:-473656,-710413 +) +g3765,506:-473656,-710413 +) +] +) +] +!29266 +}437 !12 -{456 -[1,23545:4262630,47279633:28320399,43253760,0 -(1,23545:4262630,4025873:0,0,0 -[1,23545:-473656,4025873:0,0,0 -(1,23545:-473656,-710413:0,0,0 -(1,23545:-473656,-644877:0,0,0 -k1,23545:-473656,-644877:-65536 +{438 +[3765,602:4262630,47279633:28320399,43253760,0 +(3765,602:4262630,4025873:0,0,0 +[3765,602:-473656,4025873:0,0,0 +(3765,602:-473656,-710413:0,0,0 +(3765,602:-473656,-644877:0,0,0 +k3765,602:-473656,-644877:-65536 ) -(1,23545:-473656,4736287:0,0,0 -k1,23545:-473656,4736287:5209943 +(3765,602:-473656,4736287:0,0,0 +k3765,602:-473656,4736287:5209943 ) -g1,23545:-473656,-710413 +g3765,602:-473656,-710413 ) ] ) -[1,23545:6630773,47279633:25952256,43253760,0 -[1,23545:6630773,4812305:25952256,786432,0 -(1,23545:6630773,4812305:25952256,513147,134348 -(1,23545:6630773,4812305:25952256,513147,134348 -g1,23545:3078558,4812305 -[1,23545:3078558,4812305:0,0,0 -(1,23545:3078558,2439708:0,1703936,0 -k1,23545:1358238,2439708:-1720320 -(1,21457:1358238,2439708:1720320,1703936,0 -(1,21457:1358238,2439708:1179648,16384,0 -r1,23545:2537886,2439708:1179648,16384,0 +[3765,602:6630773,47279633:25952256,43253760,0 +[3765,602:6630773,4812305:25952256,786432,0 +(3765,602:6630773,4812305:25952256,513147,134348 +(3765,602:6630773,4812305:25952256,513147,134348 +g3765,602:3078558,4812305 +[3765,602:3078558,4812305:0,0,0 +(3765,602:3078558,2439708:0,1703936,0 +k3765,602:1358238,2439708:-1720320 +(3765,1:1358238,2439708:1720320,1703936,0 +(3765,1:1358238,2439708:1179648,16384,0 +r3765,602:2537886,2439708:1179648,16384,0 ) -g1,21457:3062174,2439708 -(1,21457:3062174,2439708:16384,1703936,0 -[1,21457:3062174,2439708:25952256,1703936,0 -(1,21457:3062174,1915420:25952256,1179648,0 -(1,21457:3062174,1915420:16384,1179648,0 -r1,23545:3078558,1915420:16384,1179648,0 +g3765,1:3062174,2439708 +(3765,1:3062174,2439708:16384,1703936,0 +[3765,1:3062174,2439708:25952256,1703936,0 +(3765,1:3062174,1915420:25952256,1179648,0 +(3765,1:3062174,1915420:16384,1179648,0 +r3765,602:3078558,1915420:16384,1179648,0 ) -k1,21457:29014430,1915420:25935872 -g1,21457:29014430,1915420 +k3765,1:29014430,1915420:25935872 +g3765,1:29014430,1915420 ) ] ) ) ) ] -[1,23545:3078558,4812305:0,0,0 -(1,23545:3078558,2439708:0,1703936,0 -g1,23545:29030814,2439708 -g1,23545:36135244,2439708 -(1,21457:36135244,2439708:1720320,1703936,0 -(1,21457:36135244,2439708:16384,1703936,0 -[1,21457:36135244,2439708:25952256,1703936,0 -(1,21457:36135244,1915420:25952256,1179648,0 -(1,21457:36135244,1915420:16384,1179648,0 -r1,23545:36151628,1915420:16384,1179648,0 +[3765,602:3078558,4812305:0,0,0 +(3765,602:3078558,2439708:0,1703936,0 +g3765,602:29030814,2439708 +g3765,602:36135244,2439708 +(3765,1:36135244,2439708:1720320,1703936,0 +(3765,1:36135244,2439708:16384,1703936,0 +[3765,1:36135244,2439708:25952256,1703936,0 +(3765,1:36135244,1915420:25952256,1179648,0 +(3765,1:36135244,1915420:16384,1179648,0 +r3765,602:36151628,1915420:16384,1179648,0 ) -k1,21457:62087500,1915420:25935872 -g1,21457:62087500,1915420 +k3765,1:62087500,1915420:25935872 +g3765,1:62087500,1915420 ) ] ) -g1,21457:36675916,2439708 -(1,21457:36675916,2439708:1179648,16384,0 -r1,23545:37855564,2439708:1179648,16384,0 +g3765,1:36675916,2439708 +(3765,1:36675916,2439708:1179648,16384,0 +r3765,602:37855564,2439708:1179648,16384,0 ) ) -k1,23545:3078556,2439708:-34777008 +k3765,602:3078556,2439708:-34777008 ) ] -[1,23545:3078558,4812305:0,0,0 -(1,23545:3078558,49800853:0,16384,2228224 -k1,23545:1358238,49800853:-1720320 -(1,21457:1358238,49800853:1720320,16384,2228224 -(1,21457:1358238,49800853:1179648,16384,0 -r1,23545:2537886,49800853:1179648,16384,0 +[3765,602:3078558,4812305:0,0,0 +(3765,602:3078558,49800853:0,16384,2228224 +k3765,602:1358238,49800853:-1720320 +(3765,1:1358238,49800853:1720320,16384,2228224 +(3765,1:1358238,49800853:1179648,16384,0 +r3765,602:2537886,49800853:1179648,16384,0 ) -g1,21457:3062174,49800853 -(1,21457:3062174,52029077:16384,1703936,0 -[1,21457:3062174,52029077:25952256,1703936,0 -(1,21457:3062174,51504789:25952256,1179648,0 -(1,21457:3062174,51504789:16384,1179648,0 -r1,23545:3078558,51504789:16384,1179648,0 +g3765,1:3062174,49800853 +(3765,1:3062174,52029077:16384,1703936,0 +[3765,1:3062174,52029077:25952256,1703936,0 +(3765,1:3062174,51504789:25952256,1179648,0 +(3765,1:3062174,51504789:16384,1179648,0 +r3765,602:3078558,51504789:16384,1179648,0 ) -k1,21457:29014430,51504789:25935872 -g1,21457:29014430,51504789 +k3765,1:29014430,51504789:25935872 +g3765,1:29014430,51504789 ) ] ) ) ) -] -[1,23545:3078558,4812305:0,0,0 -(1,23545:3078558,49800853:0,16384,2228224 -g1,23545:29030814,49800853 -g1,23545:36135244,49800853 -(1,21457:36135244,49800853:1720320,16384,2228224 -(1,21457:36135244,52029077:16384,1703936,0 -[1,21457:36135244,52029077:25952256,1703936,0 -(1,21457:36135244,51504789:25952256,1179648,0 -(1,21457:36135244,51504789:16384,1179648,0 -r1,23545:36151628,51504789:16384,1179648,0 -) -k1,21457:62087500,51504789:25935872 -g1,21457:62087500,51504789 -) -] -) -g1,21457:36675916,49800853 -(1,21457:36675916,49800853:1179648,16384,0 -r1,23545:37855564,49800853:1179648,16384,0 -) -) -k1,23545:3078556,49800853:-34777008 -) -] -g1,23545:6630773,4812305 -g1,23545:6630773,4812305 -g1,23545:8528695,4812305 -g1,23545:9343962,4812305 -g1,23545:9957379,4812305 -g1,23545:12300946,4812305 -g1,23545:13256460,4812305 -g1,23545:16329443,4812305 -k1,23545:31387652,4812305:15058209 -) -) -] -[1,23545:6630773,45706769:25952256,40108032,0 -(1,23545:6630773,45706769:25952256,40108032,0 -(1,23545:6630773,45706769:0,0,0 -g1,23545:6630773,45706769 -) -[1,23545:6630773,45706769:25952256,40108032,0 -(3724,598:6630773,37082433:25952256,31483696,126483 -[3724,598:6630773,37082433:11829248,31483696,102891 -(3724,520:6630773,6254097:11829248,505283,102891 -h3724,519:6630773,6254097:0,0,0 -r1,23545:6630773,6254097:0,608174,102891 -g3724,519:7941493,6254097 -g3724,519:7941493,6254097 -g3724,519:11475849,6254097 -g3724,519:12645666,6254097 -g3724,519:13815483,6254097 -k3724,520:16536211,6254097:1923810 -k3724,520:18460021,6254097:1923810 -) -(3724,521:6630773,7095585:11829248,505283,102891 -h3724,520:6630773,7095585:0,0,0 -r1,23545:6630773,7095585:0,608174,102891 -g3724,520:7941493,7095585 -g3724,520:7941493,7095585 -g3724,520:11475849,7095585 -k3724,521:15366394,7095585:3093627 -k3724,521:18460021,7095585:3093627 -) -(3724,522:6630773,7937073:11829248,505283,102891 -h3724,521:6630773,7937073:0,0,0 -r1,23545:6630773,7937073:0,608174,102891 -g3724,521:7941493,7937073 -g3724,521:7941493,7937073 -g3724,521:11475849,7937073 -k3724,522:15565624,7937073:2894398 -k3724,522:18460021,7937073:2894397 -) -(3724,523:6630773,8778561:11829248,505283,126483 -h3724,522:6630773,8778561:0,0,0 -r1,23545:6630773,8778561:0,631766,126483 -g3724,522:7941493,8778561 -g3724,522:7941493,8778561 -g3724,522:11871031,8778561 -k3724,523:15763215,8778561:2696807 -k3724,523:18460021,8778561:2696806 -) -(3724,524:6630773,9620049:11829248,505283,126483 -h3724,523:6630773,9620049:0,0,0 -r1,23545:6630773,9620049:0,631766,126483 -g3724,523:7941493,9620049 -g3724,523:7941493,9620049 -g3724,523:11475849,9620049 -g3724,523:13044125,9620049 -g3724,523:14612401,9620049 -g3724,523:16180677,9620049 -k3724,524:17918038,9620049:541984 -k3724,524:18460021,9620049:541983 -) -(3724,525:6630773,10461537:11829248,505283,134348 -h3724,524:6630773,10461537:0,0,0 -r1,23545:6630773,10461537:0,639631,134348 -g3724,524:7941493,10461537 -g3724,524:7941493,10461537 -g3724,524:15032488,10461537 -k3724,525:17343943,10461537:1116078 -k3724,525:18460021,10461537:1116078 -) -(3724,526:6630773,11303025:11829248,505283,102891 -h3724,525:6630773,11303025:0,0,0 -r1,23545:6630773,11303025:0,608174,102891 -g3724,525:7941493,11303025 -g3724,525:7941493,11303025 -g3724,525:10290302,11303025 -g3724,525:11858578,11303025 -g3724,525:13426854,11303025 -k3724,526:16541126,11303025:1918895 -k3724,526:18460021,11303025:1918895 -) -(3724,527:6630773,12144513:11829248,505283,102891 -h3724,526:6630773,12144513:0,0,0 -r1,23545:6630773,12144513:0,608174,102891 -g3724,526:7941493,12144513 -g3724,526:7941493,12144513 -g3724,526:10685485,12144513 -k3724,527:15170442,12144513:3289580 -k3724,527:18460021,12144513:3289579 -) -(3724,528:6630773,12986001:11829248,505283,102891 -h3724,527:6630773,12986001:0,0,0 -r1,23545:6630773,12986001:0,608174,102891 -g3724,527:7941493,12986001 -g3724,527:7941493,12986001 -g3724,527:10685485,12986001 -k3724,528:15170442,12986001:3289580 -k3724,528:18460021,12986001:3289579 -) -(3724,529:6630773,13827489:11829248,505283,102891 -h3724,528:6630773,13827489:0,0,0 -r1,23545:6630773,13827489:0,608174,102891 -g3724,528:7941493,13827489 -g3724,528:7941493,13827489 -g3724,528:10290302,13827489 -k3724,529:14972850,13827489:3487171 -k3724,529:18460021,13827489:3487171 -) -(3724,530:6630773,14668977:11829248,505283,102891 -h3724,529:6630773,14668977:0,0,0 -r1,23545:6630773,14668977:0,608174,102891 -g3724,529:7941493,14668977 -g3724,529:7941493,14668977 -g3724,529:10685485,14668977 -k3724,530:15170442,14668977:3289580 -k3724,530:18460021,14668977:3289579 -) -(3724,531:6630773,15510465:11829248,505283,102891 -h3724,530:6630773,15510465:0,0,0 -r1,23545:6630773,15510465:0,608174,102891 -g3724,530:7941493,15510465 -g3724,530:7941493,15510465 -g3724,530:11475849,15510465 -k3724,531:15565624,15510465:2894398 -k3724,531:18460021,15510465:2894397 -) -(3724,532:6630773,16351953:11829248,505283,102891 -h3724,531:6630773,16351953:0,0,0 -r1,23545:6630773,16351953:0,608174,102891 -g3724,531:7941493,16351953 -g3724,531:7941493,16351953 -g3724,531:12661395,16351953 -g3724,531:14229671,16351953 -k3724,532:16942535,16351953:1517487 -k3724,532:18460021,16351953:1517486 -) -(3724,533:6630773,17193441:11829248,505283,102891 -h3724,532:6630773,17193441:0,0,0 -r1,23545:6630773,17193441:0,608174,102891 -g3724,532:7941493,17193441 -g3724,532:7941493,17193441 -g3724,532:13056577,17193441 -g3724,532:14624853,17193441 -k3724,533:17140126,17193441:1319896 -k3724,533:18460021,17193441:1319895 -) -(3724,534:6630773,18034929:11829248,505283,102891 -h3724,533:6630773,18034929:0,0,0 -r1,23545:6630773,18034929:0,608174,102891 -g3724,533:7941493,18034929 -g3724,533:7941493,18034929 -g3724,533:13451759,18034929 -k3724,534:16553579,18034929:1906443 -k3724,534:18460021,18034929:1906442 -) -(3724,535:6630773,18876417:11829248,505283,102891 -h3724,534:6630773,18876417:0,0,0 -r1,23545:6630773,18876417:0,608174,102891 -g3724,534:7941493,18876417 -g3724,534:7941493,18876417 -g3724,534:13056577,18876417 -k3724,535:16355988,18876417:2104034 -k3724,535:18460021,18876417:2104033 -) -(3724,536:6630773,19717905:11829248,505283,102891 -h3724,535:6630773,19717905:0,0,0 -r1,23545:6630773,19717905:0,608174,102891 -g3724,535:7941493,19717905 -g3724,535:7941493,19717905 -g3724,535:12661395,19717905 -k3724,536:16158397,19717905:2301625 -k3724,536:18460021,19717905:2301624 -) -(3724,537:6630773,20559393:11829248,505283,102891 -h3724,536:6630773,20559393:0,0,0 -r1,23545:6630773,20559393:0,608174,102891 -g3724,536:7941493,20559393 -g3724,536:7941493,20559393 -g3724,536:13056577,20559393 -k3724,537:16355988,20559393:2104034 -k3724,537:18460021,20559393:2104033 -) -(3724,538:6630773,21400881:11829248,505283,102891 -h3724,537:6630773,21400881:0,0,0 -r1,23545:6630773,21400881:0,608174,102891 -g3724,537:7941493,21400881 -g3724,537:7941493,21400881 -g3724,537:13451759,21400881 -k3724,538:16553579,21400881:1906443 -k3724,538:18460021,21400881:1906442 -) -(3724,539:6630773,22242369:11829248,505283,102891 -h3724,538:6630773,22242369:0,0,0 -r1,23545:6630773,22242369:0,608174,102891 -g3724,538:7941493,22242369 -g3724,538:7941493,22242369 -g3724,538:15032488,22242369 -k3724,539:17343943,22242369:1116078 -k3724,539:18460021,22242369:1116078 -) -(3724,540:6630773,23083857:11829248,513147,102891 -h3724,539:6630773,23083857:0,0,0 -r1,23545:6630773,23083857:0,616038,102891 -g3724,539:7941493,23083857 -g3724,539:7941493,23083857 -g3724,539:13056577,23083857 -g3724,539:14624853,23083857 -k3724,540:17140126,23083857:1319896 -k3724,540:18460021,23083857:1319895 -) -(3724,541:6630773,23925345:11829248,505283,102891 -h3724,540:6630773,23925345:0,0,0 -r1,23545:6630773,23925345:0,608174,102891 -g3724,540:7941493,23925345 -g3724,540:7941493,23925345 -g3724,540:13451759,23925345 -k3724,541:16553579,23925345:1906443 -k3724,541:18460021,23925345:1906442 -) -(3724,542:6630773,24766833:11829248,505283,102891 -h3724,541:6630773,24766833:0,0,0 -r1,23545:6630773,24766833:0,608174,102891 -g3724,541:7941493,24766833 -g3724,541:7941493,24766833 -g3724,541:12661395,24766833 -k3724,542:16158397,24766833:2301625 -k3724,542:18460021,24766833:2301624 -) -(3724,543:6630773,25608321:11829248,505283,102891 -h3724,542:6630773,25608321:0,0,0 -r1,23545:6630773,25608321:0,608174,102891 -g3724,542:7941493,25608321 -g3724,542:7941493,25608321 -g3724,542:12661395,25608321 -k3724,543:16158397,25608321:2301625 -k3724,543:18460021,25608321:2301624 -) -(3724,544:6630773,26449809:11829248,505283,102891 -h3724,543:6630773,26449809:0,0,0 -r1,23545:6630773,26449809:0,608174,102891 -g3724,543:7941493,26449809 -g3724,543:7941493,26449809 -g3724,543:10685485,26449809 -k3724,544:15170442,26449809:3289580 -k3724,544:18460021,26449809:3289579 -) -(3724,545:6630773,27291297:11829248,505283,102891 -h3724,544:6630773,27291297:0,0,0 -r1,23545:6630773,27291297:0,608174,102891 -g3724,544:7941493,27291297 -g3724,544:7941493,27291297 -g3724,544:10685485,27291297 -g3724,544:12253761,27291297 -g3724,544:13822037,27291297 -k3724,545:16738718,27291297:1721304 -k3724,545:18460021,27291297:1721303 -) -(3724,546:6630773,28132785:11829248,513147,102891 -h3724,545:6630773,28132785:0,0,0 -r1,23545:6630773,28132785:0,616038,102891 -g3724,545:7941493,28132785 -g3724,545:7941493,28132785 -g3724,545:13846941,28132785 -k3724,546:16751170,28132785:1708852 -k3724,546:18460021,28132785:1708851 -) -(3724,547:6630773,28974273:11829248,505283,102891 -h3724,546:6630773,28974273:0,0,0 -r1,23545:6630773,28974273:0,608174,102891 -g3724,546:7941493,28974273 -g3724,546:7941493,28974273 -g3724,546:12266213,28974273 -k3724,547:15960806,28974273:2499216 -k3724,547:18460021,28974273:2499215 -) -(3724,548:6630773,29815761:11829248,505283,126483 -h3724,547:6630773,29815761:0,0,0 -r1,23545:6630773,29815761:0,631766,126483 -g3724,547:7941493,29815761 -g3724,547:7941493,29815761 -g3724,547:10685485,29815761 -k3724,548:15170442,29815761:3289580 -k3724,548:18460021,29815761:3289579 -) -(3724,549:6630773,30657249:11829248,505283,126483 -h3724,548:6630773,30657249:0,0,0 -r1,23545:6630773,30657249:0,631766,126483 -g3724,548:7941493,30657249 -g3724,548:7941493,30657249 -g3724,548:10685485,30657249 -g3724,548:12253761,30657249 -g3724,548:13822037,30657249 -k3724,549:16738718,30657249:1721304 -k3724,549:18460021,30657249:1721303 -) -(3724,553:6630773,32033505:11829248,505283,126483 -h3724,552:6630773,32033505:0,0,0 -g3724,552:8898318,32033505 -g3724,552:10288992,32033505 -g3724,552:11996860,32033505 -k3724,553:16141685,32033505:2318337 -k3724,553:18460021,32033505:2318336 -) -(3724,554:6630773,32874993:11829248,505283,102891 -h3724,553:6630773,32874993:0,0,0 -r1,23545:6630773,32874993:0,608174,102891 -g3724,553:7941493,32874993 -g3724,553:7941493,32874993 -g3724,553:11475849,32874993 -g3724,553:13044125,32874993 -k3724,554:16349762,32874993:2110260 -k3724,554:18460021,32874993:2110259 -) -(3724,555:6630773,33716481:11829248,505283,102891 -h3724,554:6630773,33716481:0,0,0 -r1,23545:6630773,33716481:0,608174,102891 -g3724,554:7941493,33716481 -g3724,554:7941493,33716481 -g3724,554:11475849,33716481 -g3724,554:13044125,33716481 -g3724,554:14612401,33716481 -k3724,555:17133900,33716481:1326122 -k3724,555:18460021,33716481:1326121 -) -(3724,556:6630773,34557969:11829248,505283,102891 -h3724,555:6630773,34557969:0,0,0 -r1,23545:6630773,34557969:0,608174,102891 -g3724,555:7941493,34557969 -g3724,555:7941493,34557969 -g3724,555:11475849,34557969 -k3724,556:15565624,34557969:2894398 -k3724,556:18460021,34557969:2894397 -) -(3724,557:6630773,35399457:11829248,513147,102891 -h3724,556:6630773,35399457:0,0,0 -r1,23545:6630773,35399457:0,616038,102891 -g3724,556:7941493,35399457 -g3724,556:7941493,35399457 -g3724,556:12661395,35399457 -k3724,557:16158397,35399457:2301625 -k3724,557:18460021,35399457:2301624 -) -(3724,558:6630773,36240945:11829248,505283,102891 -h3724,557:6630773,36240945:0,0,0 -r1,23545:6630773,36240945:0,608174,102891 -g3724,557:7941493,36240945 -g3724,557:7941493,36240945 -g3724,557:10685485,36240945 -k3724,558:15931970,36240945:2528052 -k3724,558:18460021,36240945:2528051 -) -(3724,559:6630773,37082433:11829248,505283,102891 -h3724,558:6630773,37082433:0,0,0 -r1,23545:6630773,37082433:0,608174,102891 -g3724,558:7941493,37082433 -g3724,558:7941493,37082433 -g3724,558:11475849,37082433 -k3724,559:16327152,37082433:2132870 -k3724,559:18460021,37082433:2132869 -) -] -k3724,598:19606901,37082433:1146880 -r1,23545:19606901,37082433:0,31610179,126483 -k3724,598:20753781,37082433:1146880 -[3724,598:20753781,37082433:11829248,31483696,102891 -(3724,563:20753781,6254097:11829248,426639,126483 -h3724,562:20753781,6254097:0,0,0 -k3724,563:28206863,6254097:4376167 -k3724,563:32583029,6254097:4376166 -) -(3724,564:20753781,7137290:11829248,485622,102891 -h3724,563:20753781,7137290:0,0,0 -r1,23545:20753781,7137290:0,588513,102891 -g3724,563:22064501,7137290 -g3724,563:22064501,7137290 -g3724,563:22832582,7137290 -g3724,563:24002399,7137290 -k3724,564:28691173,7137290:3891856 -k3724,564:32583029,7137290:3891856 -) -(3724,565:20753781,8020482:11829248,485622,102891 -h3724,564:20753781,8020482:0,0,0 -r1,23545:20753781,8020482:0,588513,102891 -g3724,564:22064501,8020482 -g3724,564:22064501,8020482 -g3724,564:22832582,8020482 -g3724,564:24002399,8020482 -g3724,564:25172216,8020482 -g3724,564:26740492,8020482 -k3724,565:30259449,8020482:2323580 -k3724,565:32583029,8020482:2323580 -) -(3724,566:20753781,8903675:11829248,485622,102891 -h3724,565:20753781,8903675:0,0,0 -r1,23545:20753781,8903675:0,588513,102891 -g3724,565:22064501,8903675 -g3724,565:22064501,8903675 -g3724,565:22832582,8903675 -g3724,565:24002399,8903675 -k3724,566:28691173,8903675:3891856 -k3724,566:32583029,8903675:3891856 -) -(3724,567:20753781,9786868:11829248,485622,102891 -h3724,566:20753781,9786868:0,0,0 -r1,23545:20753781,9786868:0,588513,102891 -g3724,566:22064501,9786868 -g3724,566:22064501,9786868 -g3724,566:23227764,9786868 -g3724,566:24397581,9786868 -k3724,567:29087994,9786868:3495036 -k3724,567:32583029,9786868:3495035 -) -(3724,568:20753781,10670061:11829248,505283,102891 -h3724,567:20753781,10670061:0,0,0 -r1,23545:20753781,10670061:0,608174,102891 -g3724,567:22064501,10670061 -g3724,567:22064501,10670061 -g3724,567:22832582,10670061 -g3724,567:24002399,10670061 -k3724,568:28890403,10670061:3692627 -k3724,568:32583029,10670061:3692626 -) -(3724,569:20753781,11553253:11829248,485622,102891 -h3724,568:20753781,11553253:0,0,0 -r1,23545:20753781,11553253:0,588513,102891 -g3724,568:22064501,11553253 -g3724,568:22064501,11553253 -g3724,568:22832582,11553253 -k3724,569:28106265,11553253:4476765 -k3724,569:32583029,11553253:4476764 -) -(3724,570:20753781,12436446:11829248,485622,102891 -h3724,569:20753781,12436446:0,0,0 -r1,23545:20753781,12436446:0,588513,102891 -g3724,569:22064501,12436446 -g3724,569:22064501,12436446 -g3724,569:22832582,12436446 -k3724,570:28106265,12436446:4476765 -k3724,570:32583029,12436446:4476764 -) -(3724,571:20753781,13319639:11829248,485622,102891 -h3724,570:20753781,13319639:0,0,0 -r1,23545:20753781,13319639:0,588513,102891 -g3724,570:22064501,13319639 -g3724,570:22064501,13319639 -g3724,570:23227764,13319639 -g3724,570:24397581,13319639 -g3724,570:25567398,13319639 -g3724,570:26737215,13319639 -g3724,570:28305491,13319639 -k3724,571:31041949,13319639:1541081 -k3724,571:32583029,13319639:1541080 -) -(3724,572:20753781,14202832:11829248,485622,102891 -h3724,571:20753781,14202832:0,0,0 -r1,23545:20753781,14202832:0,588513,102891 -g3724,571:22064501,14202832 -g3724,571:22064501,14202832 -g3724,571:23622946,14202832 -k3724,572:28700676,14202832:3882353 -k3724,572:32583029,14202832:3882353 -) -(3724,573:20753781,15086024:11829248,485622,102891 -h3724,572:20753781,15086024:0,0,0 -r1,23545:20753781,15086024:0,588513,102891 -g3724,572:22064501,15086024 -g3724,572:22064501,15086024 -g3724,572:23227764,15086024 -k3724,573:28303856,15086024:4279174 -k3724,573:32583029,15086024:4279173 -) -(3724,574:20753781,15969217:11829248,485622,102891 -h3724,573:20753781,15969217:0,0,0 -r1,23545:20753781,15969217:0,588513,102891 -g3724,573:22064501,15969217 -g3724,573:22064501,15969217 -g3724,573:22832582,15969217 -k3724,574:28106265,15969217:4476765 -k3724,574:32583029,15969217:4476764 -) -(3724,575:20753781,16852410:11829248,485622,102891 -h3724,574:20753781,16852410:0,0,0 -r1,23545:20753781,16852410:0,588513,102891 -g3724,574:22064501,16852410 -g3724,574:22064501,16852410 -g3724,574:23227764,16852410 -g3724,574:24397581,16852410 -k3724,575:29087994,16852410:3495036 -k3724,575:32583029,16852410:3495035 -) -(3724,576:20753781,17735602:11829248,485622,102891 -h3724,575:20753781,17735602:0,0,0 -r1,23545:20753781,17735602:0,588513,102891 -g3724,575:22064501,17735602 -g3724,575:22064501,17735602 -g3724,575:22832582,17735602 -k3724,576:28106265,17735602:4476765 -k3724,576:32583029,17735602:4476764 -) -(3724,577:20753781,18618795:11829248,485622,102891 -h3724,576:20753781,18618795:0,0,0 -r1,23545:20753781,18618795:0,588513,102891 -g3724,576:22064501,18618795 -g3724,576:22064501,18618795 -g3724,576:23227764,18618795 -k3724,577:28303856,18618795:4279174 -k3724,577:32583029,18618795:4279173 -) -(3724,578:20753781,19501988:11829248,505283,102891 -h3724,577:20753781,19501988:0,0,0 -r1,23545:20753781,19501988:0,608174,102891 -g3724,577:22064501,19501988 -g3724,577:22064501,19501988 -g3724,577:22854865,19501988 -g3724,577:23645229,19501988 -g3724,577:24413310,19501988 -g3724,577:25981586,19501988 -k3724,578:29879996,19501988:2703033 -k3724,578:32583029,19501988:2703033 -) -(3724,580:20753781,20385181:11829248,505283,102891 -h3724,578:20753781,20385181:0,0,0 -r1,23545:20753781,20385181:0,608174,102891 -g3724,578:22064501,20385181 -g3724,578:22064501,20385181 -g3724,578:22854865,20385181 -g3724,578:23622946,20385181 -g3724,578:24792763,20385181 -g3724,578:25962580,20385181 -g3724,578:27132397,20385181 -g3724,578:28302214,20385181 -g3724,578:29870490,20385181 -k3724,578:32583029,20385181:1343492 -) -(3724,580:23375221,21226669:9207808,485622,102891 -g3724,578:24943497,21226669 -g3724,578:28034830,21226669 -g3724,579:29603106,21226669 -k3724,580:31690756,21226669:892273 -k3724,580:32583029,21226669:892273 -) -(3724,581:20753781,22109861:11829248,505283,102891 -h3724,580:20753781,22109861:0,0,0 -r1,23545:20753781,22109861:0,608174,102891 -g3724,580:22064501,22109861 -g3724,580:22064501,22109861 -g3724,580:23250047,22109861 -g3724,580:24413310,22109861 -g3724,580:25583127,22109861 -g3724,580:26752944,22109861 -g3724,580:27922761,22109861 -g3724,580:30615635,22109861 -k3724,580:32583029,22109861:598347 -) -(3724,581:23375221,22951349:9207808,485622,0 -k3724,581:28576814,22951349:4006216 -k3724,581:32583029,22951349:4006215 -) -(3724,582:20753781,23834542:11829248,513147,102891 -h3724,581:20753781,23834542:0,0,0 -r1,23545:20753781,23834542:0,616038,102891 -g3724,581:22064501,23834542 -g3724,581:22064501,23834542 -g3724,581:22832582,23834542 -g3724,581:24002399,23834542 -g3724,581:25570675,23834542 -g3724,581:27138951,23834542 -k3724,582:30458679,23834542:2124351 -k3724,582:32583029,23834542:2124350 -) -(3724,583:20753781,24717735:11829248,485622,102891 -h3724,582:20753781,24717735:0,0,0 -r1,23545:20753781,24717735:0,588513,102891 -g3724,582:22064501,24717735 -g3724,582:22064501,24717735 -g3724,582:23622946,24717735 -k3724,583:28501447,24717735:4081583 -k3724,583:32583029,24717735:4081582 -) -(3724,584:20753781,25600928:11829248,485622,102891 -h3724,583:20753781,25600928:0,0,0 -r1,23545:20753781,25600928:0,588513,102891 -g3724,583:22064501,25600928 -g3724,583:22064501,25600928 -g3724,583:23622946,25600928 -k3724,584:28700676,25600928:3882353 -k3724,584:32583029,25600928:3882353 -) -(3724,585:20753781,26484120:11829248,485622,102891 -h3724,584:20753781,26484120:0,0,0 -r1,23545:20753781,26484120:0,588513,102891 -g3724,584:22064501,26484120 -g3724,584:22064501,26484120 -g3724,584:24018128,26484120 -g3724,584:27109461,26484120 -k3724,585:30443934,26484120:2139096 -k3724,585:32583029,26484120:2139095 -) -(3724,586:20753781,27367313:11829248,505283,102891 -h3724,585:20753781,27367313:0,0,0 -r1,23545:20753781,27367313:0,608174,102891 -g3724,585:22064501,27367313 -g3724,585:22064501,27367313 -g3724,585:23622946,27367313 -k3724,586:28501447,27367313:4081583 -k3724,586:32583029,27367313:4081582 -) -(3724,587:20753781,28250506:11829248,485622,102891 -h3724,586:20753781,28250506:0,0,0 -r1,23545:20753781,28250506:0,588513,102891 -g3724,586:22064501,28250506 -g3724,586:22064501,28250506 -g3724,586:24018128,28250506 -k3724,587:28898267,28250506:3684762 -k3724,587:32583029,28250506:3684762 -) -(3724,588:20753781,29133698:11829248,485622,102891 -h3724,587:20753781,29133698:0,0,0 -r1,23545:20753781,29133698:0,588513,102891 -g3724,587:22064501,29133698 -g3724,587:22064501,29133698 -g3724,587:23622946,29133698 -k3724,588:29462204,29133698:3120825 -k3724,588:32583029,29133698:3120825 -) -(3724,589:20753781,30016891:11829248,485622,102891 -h3724,588:20753781,30016891:0,0,0 -r1,23545:20753781,30016891:0,588513,102891 -g3724,588:22064501,30016891 -g3724,588:22064501,30016891 -g3724,588:24018128,30016891 -k3724,589:28898267,30016891:3684762 -k3724,589:32583029,30016891:3684762 -) -(3724,590:20753781,30900084:11829248,485622,102891 -h3724,589:20753781,30900084:0,0,0 -r1,23545:20753781,30900084:0,588513,102891 -g3724,589:22064501,30900084 -g3724,589:22064501,30900084 -g3724,589:23227764,30900084 -k3724,590:28303856,30900084:4279174 -k3724,590:32583029,30900084:4279173 -) -(3724,591:20753781,31783277:11829248,505283,102891 -h3724,590:20753781,31783277:0,0,0 -r1,23545:20753781,31783277:0,608174,102891 -g3724,590:22064501,31783277 -g3724,590:22064501,31783277 -g3724,590:24018128,31783277 -g3724,590:25187945,31783277 -k3724,591:29283946,31783277:3299083 -k3724,591:32583029,31783277:3299083 -) -(3724,592:20753781,32666469:11829248,485622,102891 -h3724,591:20753781,32666469:0,0,0 -r1,23545:20753781,32666469:0,588513,102891 -g3724,591:22064501,32666469 -g3724,591:22064501,32666469 -g3724,591:22832582,32666469 -g3724,591:24002399,32666469 -k3724,592:28691173,32666469:3891856 -k3724,592:32583029,32666469:3891856 -) -(3724,593:20753781,33549662:11829248,485622,102891 -h3724,592:20753781,33549662:0,0,0 -r1,23545:20753781,33549662:0,588513,102891 -g3724,592:22064501,33549662 -g3724,592:22064501,33549662 -g3724,592:23227764,33549662 -k3724,593:28303856,33549662:4279174 -k3724,593:32583029,33549662:4279173 -) -(3724,594:20753781,34432855:11829248,485622,102891 -h3724,593:20753781,34432855:0,0,0 -r1,23545:20753781,34432855:0,588513,102891 -g3724,593:22064501,34432855 -g3724,593:22064501,34432855 -g3724,593:22832582,34432855 -k3724,594:28106265,34432855:4476765 -k3724,594:32583029,34432855:4476764 -) -(3724,595:20753781,35316048:11829248,505283,102891 -h3724,594:20753781,35316048:0,0,0 -r1,23545:20753781,35316048:0,608174,102891 -g3724,594:22064501,35316048 -g3724,594:22064501,35316048 -g3724,594:22832582,35316048 -g3724,594:24002399,35316048 -k3724,595:28691173,35316048:3891856 -k3724,595:32583029,35316048:3891856 -) -(3724,596:20753781,36199240:11829248,505283,102891 -h3724,595:20753781,36199240:0,0,0 -r1,23545:20753781,36199240:0,608174,102891 -g3724,595:22064501,36199240 -g3724,595:22064501,36199240 -g3724,595:23227764,36199240 -g3724,595:24796040,36199240 -g3724,595:27887373,36199240 -k3724,596:30832890,36199240:1750140 -k3724,596:32583029,36199240:1750139 -) -(3724,597:20753781,37082433:11829248,505283,102891 -h3724,596:20753781,37082433:0,0,0 -r1,23545:20753781,37082433:0,608174,102891 -g3724,596:22064501,37082433 -g3724,596:22064501,37082433 -g3724,596:23227764,37082433 -k3724,597:28303856,37082433:4279174 -k3724,597:32583029,37082433:4279173 -) -] -(3724,598:32583029,37082433:0,355205,126483 -h3724,598:32583029,37082433:420741,355205,126483 -k3724,598:32583029,37082433:-420741 -) -) -] -(1,23545:32583029,45706769:0,0,0 -g1,23545:32583029,45706769 -) -) -] -(1,23545:6630773,47279633:25952256,0,0 -h1,23545:6630773,47279633:25952256,0,0 -) -] -(1,23545:4262630,4025873:0,0,0 -[1,23545:-473656,4025873:0,0,0 -(1,23545:-473656,-710413:0,0,0 -(1,23545:-473656,-710413:0,0,0 -g1,23545:-473656,-710413 -) -g1,23545:-473656,-710413 -) -] -) -] -!25607 -}456 +] +[3765,602:3078558,4812305:0,0,0 +(3765,602:3078558,49800853:0,16384,2228224 +g3765,602:29030814,49800853 +g3765,602:36135244,49800853 +(3765,1:36135244,49800853:1720320,16384,2228224 +(3765,1:36135244,52029077:16384,1703936,0 +[3765,1:36135244,52029077:25952256,1703936,0 +(3765,1:36135244,51504789:25952256,1179648,0 +(3765,1:36135244,51504789:16384,1179648,0 +r3765,602:36151628,51504789:16384,1179648,0 +) +k3765,1:62087500,51504789:25935872 +g3765,1:62087500,51504789 +) +] +) +g3765,1:36675916,49800853 +(3765,1:36675916,49800853:1179648,16384,0 +r3765,602:37855564,49800853:1179648,16384,0 +) +) +k3765,602:3078556,49800853:-34777008 +) +] +g3765,602:6630773,4812305 +g3765,602:6630773,4812305 +g3765,602:8528695,4812305 +g3765,602:9343962,4812305 +g3765,602:9957379,4812305 +g3765,602:12300946,4812305 +g3765,602:13256460,4812305 +g3765,602:16329443,4812305 +k3765,602:31387652,4812305:15058209 +) +) +] +[3765,602:6630773,45706769:25952256,40108032,0 +(3765,602:6630773,45706769:25952256,40108032,0 +(3765,602:6630773,45706769:0,0,0 +g3765,602:6630773,45706769 +) +[3765,602:6630773,45706769:25952256,40108032,0 +(3765,602:6630773,45706769:25952256,40108032,126483 +[3765,602:6630773,45706769:11829248,40108032,102891 +(3765,503:6630773,6254097:11829248,530548,102891 +h3765,502:6630773,6254097:0,0,0 +r3765,602:6630773,6254097:0,633439,102891 +g3765,502:7941493,6254097 +g3765,502:7941493,6254097 +g3765,502:11218989,6254097 +g3765,502:12787265,6254097 +k3765,503:16221332,6254097:2238690 +k3765,503:18460021,6254097:2238689 +) +(3765,504:6630773,7131088:11829248,530548,102891 +h3765,503:6630773,7131088:0,0,0 +r3765,602:6630773,7131088:0,633439,102891 +g3765,503:7941493,7131088 +g3765,503:7941493,7131088 +g3765,503:12463816,7131088 +g3765,503:14032092,7131088 +k3765,504:16843745,7131088:1616276 +k3765,504:18460021,7131088:1616276 +) +(3765,505:6630773,8008078:11829248,530548,102891 +h3765,504:6630773,8008078:0,0,0 +r3765,602:6630773,8008078:0,633439,102891 +g3765,504:7941493,8008078 +g3765,504:7941493,8008078 +g3765,504:14538528,8008078 +k3765,505:17096963,8008078:1363058 +k3765,505:18460021,8008078:1363058 +) +(3765,506:6630773,8885069:11829248,530548,102891 +h3765,505:6630773,8885069:0,0,0 +r3765,602:6630773,8885069:0,633439,102891 +g3765,505:7941493,8885069 +g3765,505:7941493,8885069 +g3765,505:13293701,8885069 +k3765,506:16474550,8885069:1985472 +k3765,506:18460021,8885069:1985471 +) +(3765,507:6630773,9762060:11829248,530548,141066 +h3765,506:6630773,9762060:0,0,0 +r3765,602:6630773,9762060:0,671614,141066 +g3765,506:7941493,9762060 +g3765,506:7941493,9762060 +g3765,506:13293701,9762060 +g3765,506:14861977,9762060 +g3765,506:16430253,9762060 +k3765,507:18042826,9762060:417196 +k3765,507:18460021,9762060:417195 +) +(3765,508:6630773,10639051:11829248,530548,141066 +h3765,507:6630773,10639051:0,0,0 +r3765,602:6630773,10639051:0,671614,141066 +g3765,507:7941493,10639051 +g3765,507:7941493,10639051 +g3765,507:13708644,10639051 +k3765,508:16682021,10639051:1778000 +k3765,508:18460021,10639051:1778000 +) +(3765,509:6630773,11516041:11829248,530548,102891 +h3765,508:6630773,11516041:0,0,0 +r3765,602:6630773,11516041:0,633439,102891 +g3765,508:7941493,11516041 +g3765,508:7941493,11516041 +g3765,508:14953471,11516041 +k3765,509:17304435,11516041:1155587 +k3765,509:18460021,11516041:1155586 +) +(3765,510:6630773,12393032:11829248,530548,102891 +h3765,509:6630773,12393032:0,0,0 +r3765,602:6630773,12393032:0,633439,102891 +g3765,509:7941493,12393032 +g3765,509:7941493,12393032 +g3765,509:14538528,12393032 +k3765,510:17096963,12393032:1363058 +k3765,510:18460021,12393032:1363058 +) +(3765,511:6630773,13270023:11829248,530548,102891 +h3765,510:6630773,13270023:0,0,0 +r3765,602:6630773,13270023:0,633439,102891 +g3765,510:7941493,13270023 +g3765,510:7941493,13270023 +g3765,510:12878759,13270023 +k3765,511:16267079,13270023:2192943 +k3765,511:18460021,13270023:2192942 +) +(3765,512:6630773,14147014:11829248,530548,102891 +h3765,511:6630773,14147014:0,0,0 +r3765,602:6630773,14147014:0,633439,102891 +g3765,511:7941493,14147014 +g3765,511:7941493,14147014 +g3765,511:13293701,14147014 +k3765,512:16474550,14147014:1985472 +k3765,512:18460021,14147014:1985471 +) +(3765,513:6630773,15024004:11829248,530548,102891 +h3765,512:6630773,15024004:0,0,0 +r3765,602:6630773,15024004:0,633439,102891 +g3765,512:7941493,15024004 +g3765,512:7941493,15024004 +g3765,512:11633931,15024004 +g3765,512:13202207,15024004 +g3765,512:14770483,15024004 +k3765,513:17212941,15024004:1247081 +k3765,513:18460021,15024004:1247080 +) +(3765,514:6630773,15900995:11829248,530548,102891 +h3765,513:6630773,15900995:0,0,0 +r3765,602:6630773,15900995:0,633439,102891 +g3765,513:7941493,15900995 +g3765,513:7941493,15900995 +g3765,513:12048874,15900995 +g3765,513:13218691,15900995 +k3765,514:16437045,15900995:2022977 +k3765,514:18460021,15900995:2022976 +) +(3765,515:6630773,16777986:11829248,538806,102891 +h3765,514:6630773,16777986:0,0,0 +r3765,602:6630773,16777986:0,641697,102891 +g3765,514:7941493,16777986 +g3765,514:7941493,16777986 +g3765,514:18903666,16777986 +) +(3765,515:9252213,17643066:9207808,485622,11795 +k3765,515:14453806,17643066:4006216 +k3765,515:18460021,17643066:4006215 +) +(3765,516:6630773,18520056:11829248,530548,132808 +h3765,515:6630773,18520056:0,0,0 +r3765,602:6630773,18520056:0,663356,132808 +g3765,515:7941493,18520056 +g3765,515:7941493,18520056 +g3765,515:12048874,18520056 +g3765,515:13218691,18520056 +k3765,516:16437045,18520056:2022977 +k3765,516:18460021,18520056:2022976 +) +(3765,517:6630773,19397047:11829248,530548,102891 +h3765,516:6630773,19397047:0,0,0 +r3765,602:6630773,19397047:0,633439,102891 +g3765,516:7941493,19397047 +g3765,516:7941493,19397047 +g3765,516:12878759,19397047 +k3765,517:16267079,19397047:2192943 +k3765,517:18460021,19397047:2192942 +) +(3765,518:6630773,20274038:11829248,530548,102891 +h3765,517:6630773,20274038:0,0,0 +r3765,602:6630773,20274038:0,633439,102891 +g3765,517:7941493,20274038 +g3765,517:7941493,20274038 +g3765,517:11633931,20274038 +k3765,518:15445435,20274038:3014586 +k3765,518:18460021,20274038:3014586 +) +(3765,519:6630773,21151029:11829248,530548,102891 +h3765,518:6630773,21151029:0,0,0 +r3765,602:6630773,21151029:0,633439,102891 +g3765,518:7941493,21151029 +g3765,518:7941493,21151029 +g3765,518:11218989,21151029 +g3765,518:12388806,21151029 +g3765,518:13558623,21151029 +k3765,519:16407781,21151029:2052240 +k3765,519:18460021,21151029:2052240 +) +(3765,520:6630773,22028019:11829248,530548,102891 +h3765,519:6630773,22028019:0,0,0 +r3765,602:6630773,22028019:0,633439,102891 +g3765,519:7941493,22028019 +g3765,519:7941493,22028019 +g3765,519:9974162,22028019 +k3765,520:14814780,22028019:3645241 +k3765,520:18460021,22028019:3645241 +) +(3765,521:6630773,22905010:11829248,530548,141066 +h3765,520:6630773,22905010:0,0,0 +r3765,602:6630773,22905010:0,671614,141066 +g3765,520:7941493,22905010 +g3765,520:7941493,22905010 +g3765,520:12048874,22905010 +k3765,521:15852136,22905010:2607885 +k3765,521:18460021,22905010:2607885 +) +(3765,522:6630773,23782001:11829248,530548,132808 +h3765,521:6630773,23782001:0,0,0 +r3765,602:6630773,23782001:0,663356,132808 +g3765,521:7941493,23782001 +g3765,521:7941493,23782001 +g3765,521:11633931,23782001 +g3765,521:12803748,23782001 +k3765,522:16030344,23782001:2429678 +k3765,522:18460021,23782001:2429677 +) +(3765,523:6630773,24658992:11829248,530548,102891 +h3765,522:6630773,24658992:0,0,0 +r3765,602:6630773,24658992:0,633439,102891 +g3765,522:7941493,24658992 +g3765,522:7941493,24658992 +g3765,522:11633931,24658992 +k3765,523:15644665,24658992:2815357 +k3765,523:18460021,24658992:2815356 +) +(3765,524:6630773,25535982:11829248,530548,102891 +h3765,523:6630773,25535982:0,0,0 +r3765,602:6630773,25535982:0,633439,102891 +g3765,523:7941493,25535982 +g3765,523:7941493,25535982 +g3765,523:11633931,25535982 +k3765,524:15445435,25535982:3014586 +k3765,524:18460021,25535982:3014586 +) +(3765,525:6630773,26412973:11829248,530548,102891 +h3765,524:6630773,26412973:0,0,0 +r3765,602:6630773,26412973:0,633439,102891 +g3765,524:7941493,26412973 +g3765,524:7941493,26412973 +g3765,524:11633931,26412973 +k3765,525:15445435,26412973:3014586 +k3765,525:18460021,26412973:3014586 +) +(3765,526:6630773,27289964:11829248,530548,102891 +h3765,525:6630773,27289964:0,0,0 +r3765,602:6630773,27289964:0,633439,102891 +g3765,525:7941493,27289964 +g3765,525:7941493,27289964 +g3765,525:11633931,27289964 +k3765,526:15644665,27289964:2815357 +k3765,526:18460021,27289964:2815356 +) +(3765,527:6630773,28166954:11829248,530548,132808 +h3765,526:6630773,28166954:0,0,0 +r3765,602:6630773,28166954:0,663356,132808 +g3765,526:7941493,28166954 +g3765,526:7941493,28166954 +g3765,526:12048874,28166954 +k3765,527:15852136,28166954:2607885 +k3765,527:18460021,28166954:2607885 +) +(3765,528:6630773,29043945:11829248,530548,132808 +h3765,527:6630773,29043945:0,0,0 +r3765,602:6630773,29043945:0,663356,132808 +g3765,527:7941493,29043945 +g3765,527:7941493,29043945 +g3765,527:11633931,29043945 +g3765,527:14725264,29043945 +g3765,527:16293540,29043945 +k3765,528:17974469,29043945:485552 +k3765,528:18460021,29043945:485552 +) +(3765,529:6630773,29920936:11829248,530548,141066 +h3765,528:6630773,29920936:0,0,0 +r3765,602:6630773,29920936:0,671614,141066 +g3765,528:7941493,29920936 +g3765,528:7941493,29920936 +g3765,528:15368413,29920936 +k3765,529:17511906,29920936:948116 +k3765,529:18460021,29920936:948115 +) +(3765,530:6630773,30797927:11829248,530548,102891 +h3765,529:6630773,30797927:0,0,0 +r3765,602:6630773,30797927:0,633439,102891 +g3765,529:7941493,30797927 +g3765,529:7941493,30797927 +g3765,529:10389104,30797927 +g3765,529:11957380,30797927 +g3765,529:13525656,30797927 +k3765,530:16590527,30797927:1869494 +k3765,530:18460021,30797927:1869494 +) +(3765,531:6630773,31674917:11829248,530548,102891 +h3765,530:6630773,31674917:0,0,0 +r3765,602:6630773,31674917:0,633439,102891 +g3765,530:7941493,31674917 +g3765,530:7941493,31674917 +g3765,530:10804046,31674917 +k3765,531:15229722,31674917:3230299 +k3765,531:18460021,31674917:3230299 +) +(3765,532:6630773,32551908:11829248,530548,102891 +h3765,531:6630773,32551908:0,0,0 +r3765,602:6630773,32551908:0,633439,102891 +g3765,531:7941493,32551908 +g3765,531:7941493,32551908 +g3765,531:10804046,32551908 +k3765,532:15229722,32551908:3230299 +k3765,532:18460021,32551908:3230299 +) +(3765,533:6630773,33428899:11829248,530548,102891 +h3765,532:6630773,33428899:0,0,0 +r3765,602:6630773,33428899:0,633439,102891 +g3765,532:7941493,33428899 +g3765,532:7941493,33428899 +g3765,532:10389104,33428899 +k3765,533:15022251,33428899:3437770 +k3765,533:18460021,33428899:3437770 +) +(3765,534:6630773,34305890:11829248,530548,102891 +h3765,533:6630773,34305890:0,0,0 +r3765,602:6630773,34305890:0,633439,102891 +g3765,533:7941493,34305890 +g3765,533:7941493,34305890 +g3765,533:10804046,34305890 +k3765,534:15229722,34305890:3230299 +k3765,534:18460021,34305890:3230299 +) +(3765,535:6630773,35182880:11829248,530548,102891 +h3765,534:6630773,35182880:0,0,0 +r3765,602:6630773,35182880:0,633439,102891 +g3765,534:7941493,35182880 +g3765,534:7941493,35182880 +g3765,534:11633931,35182880 +k3765,535:15644665,35182880:2815357 +k3765,535:18460021,35182880:2815356 +) +(3765,536:6630773,36059871:11829248,530548,102891 +h3765,535:6630773,36059871:0,0,0 +r3765,602:6630773,36059871:0,633439,102891 +g3765,535:7941493,36059871 +g3765,535:7941493,36059871 +g3765,535:12878759,36059871 +g3765,535:14447035,36059871 +k3765,536:17051217,36059871:1408805 +k3765,536:18460021,36059871:1408804 +) +(3765,537:6630773,36936862:11829248,530548,102891 +h3765,536:6630773,36936862:0,0,0 +r3765,602:6630773,36936862:0,633439,102891 +g3765,536:7941493,36936862 +g3765,536:7941493,36936862 +g3765,536:13293701,36936862 +g3765,536:14861977,36936862 +k3765,537:17258688,36936862:1201334 +k3765,537:18460021,36936862:1201333 +) +(3765,538:6630773,37813852:11829248,530548,102891 +h3765,537:6630773,37813852:0,0,0 +r3765,602:6630773,37813852:0,633439,102891 +g3765,537:7941493,37813852 +g3765,537:7941493,37813852 +g3765,537:13708644,37813852 +k3765,538:16682021,37813852:1778000 +k3765,538:18460021,37813852:1778000 +) +(3765,539:6630773,38690843:11829248,530548,102891 +h3765,538:6630773,38690843:0,0,0 +r3765,602:6630773,38690843:0,633439,102891 +g3765,538:7941493,38690843 +g3765,538:7941493,38690843 +g3765,538:13293701,38690843 +k3765,539:16474550,38690843:1985472 +k3765,539:18460021,38690843:1985471 +) +(3765,540:6630773,39567834:11829248,530548,102891 +h3765,539:6630773,39567834:0,0,0 +r3765,602:6630773,39567834:0,633439,102891 +g3765,539:7941493,39567834 +g3765,539:7941493,39567834 +g3765,539:12878759,39567834 +k3765,540:16267079,39567834:2192943 +k3765,540:18460021,39567834:2192942 +) +(3765,541:6630773,40444825:11829248,530548,102891 +h3765,540:6630773,40444825:0,0,0 +r3765,602:6630773,40444825:0,633439,102891 +g3765,540:7941493,40444825 +g3765,540:7941493,40444825 +g3765,540:13293701,40444825 +k3765,541:16474550,40444825:1985472 +k3765,541:18460021,40444825:1985471 +) +(3765,542:6630773,41321815:11829248,530548,102891 +h3765,541:6630773,41321815:0,0,0 +r3765,602:6630773,41321815:0,633439,102891 +g3765,541:7941493,41321815 +g3765,541:7941493,41321815 +g3765,541:13708644,41321815 +k3765,542:16682021,41321815:1778000 +k3765,542:18460021,41321815:1778000 +) +(3765,543:6630773,42198806:11829248,530548,102891 +h3765,542:6630773,42198806:0,0,0 +r3765,602:6630773,42198806:0,633439,102891 +g3765,542:7941493,42198806 +g3765,542:7941493,42198806 +g3765,542:15368413,42198806 +k3765,543:17511906,42198806:948116 +k3765,543:18460021,42198806:948115 +) +(3765,544:6630773,43075797:11829248,538806,102891 +h3765,543:6630773,43075797:0,0,0 +r3765,602:6630773,43075797:0,641697,102891 +g3765,543:7941493,43075797 +g3765,543:7941493,43075797 +g3765,543:13293701,43075797 +g3765,543:14861977,43075797 +k3765,544:17258688,43075797:1201334 +k3765,544:18460021,43075797:1201333 +) +(3765,545:6630773,43952788:11829248,530548,102891 +h3765,544:6630773,43952788:0,0,0 +r3765,602:6630773,43952788:0,633439,102891 +g3765,544:7941493,43952788 +g3765,544:7941493,43952788 +g3765,544:13708644,43952788 +k3765,545:16682021,43952788:1778000 +k3765,545:18460021,43952788:1778000 +) +(3765,546:6630773,44829778:11829248,530548,102891 +h3765,545:6630773,44829778:0,0,0 +r3765,602:6630773,44829778:0,633439,102891 +g3765,545:7941493,44829778 +g3765,545:7941493,44829778 +g3765,545:12878759,44829778 +k3765,546:16267079,44829778:2192943 +k3765,546:18460021,44829778:2192942 +) +(3765,547:6630773,45706769:11829248,530548,102891 +h3765,546:6630773,45706769:0,0,0 +r3765,602:6630773,45706769:0,633439,102891 +g3765,546:7941493,45706769 +g3765,546:7941493,45706769 +g3765,546:12878759,45706769 +k3765,547:16267079,45706769:2192943 +k3765,547:18460021,45706769:2192942 +) +] +k3765,602:19606901,45706769:1146880 +r3765,602:19606901,45706769:0,40234515,126483 +k3765,602:20753781,45706769:1146880 +[3765,602:20753781,45706769:11829248,40108032,102891 +(3765,548:20753781,6254097:11829248,530548,102891 +h3765,547:20753781,6254097:0,0,0 +r3765,602:20753781,6254097:0,633439,102891 +g3765,547:22064501,6254097 +g3765,547:22064501,6254097 +g3765,547:24927054,6254097 +k3765,548:29352730,6254097:3230299 +k3765,548:32583029,6254097:3230299 +) +(3765,549:20753781,7120204:11829248,530548,102891 +h3765,548:20753781,7120204:0,0,0 +r3765,602:20753781,7120204:0,633439,102891 +g3765,548:22064501,7120204 +g3765,548:22064501,7120204 +g3765,548:24927054,7120204 +g3765,548:26495330,7120204 +g3765,548:28063606,7120204 +k3765,549:30921006,7120204:1662023 +k3765,549:32583029,7120204:1662023 +) +(3765,550:20753781,7986312:11829248,538806,102891 +h3765,549:20753781,7986312:0,0,0 +r3765,602:20753781,7986312:0,641697,102891 +g3765,549:22064501,7986312 +g3765,549:22064501,7986312 +g3765,549:28246594,7986312 +k3765,550:31012500,7986312:1570529 +k3765,550:32583029,7986312:1570529 +) +(3765,551:20753781,8852419:11829248,530548,102891 +h3765,550:20753781,8852419:0,0,0 +r3765,602:20753781,8852419:0,633439,102891 +g3765,550:22064501,8852419 +g3765,550:22064501,8852419 +g3765,550:26586824,8852419 +k3765,551:30182615,8852419:2400414 +k3765,551:32583029,8852419:2400414 +) +(3765,552:20753781,9718527:11829248,530548,132808 +h3765,551:20753781,9718527:0,0,0 +r3765,602:20753781,9718527:0,663356,132808 +g3765,551:22064501,9718527 +g3765,551:22064501,9718527 +g3765,551:24927054,9718527 +k3765,552:29352730,9718527:3230299 +k3765,552:32583029,9718527:3230299 +) +(3765,553:20753781,10584634:11829248,530548,132808 +h3765,552:20753781,10584634:0,0,0 +r3765,602:20753781,10584634:0,663356,132808 +g3765,552:22064501,10584634 +g3765,552:22064501,10584634 +g3765,552:24927054,10584634 +g3765,552:26495330,10584634 +g3765,552:28063606,10584634 +k3765,553:30921006,10584634:1662023 +k3765,553:32583029,10584634:1662023 +) +(3765,557:20753781,12123227:11829248,505283,126483 +h3765,556:20753781,12123227:0,0,0 +g3765,556:23021326,12123227 +g3765,556:24412000,12123227 +g3765,556:26119868,12123227 +k3765,557:30264693,12123227:2318337 +k3765,557:32583029,12123227:2318336 +) +(3765,558:20753781,12989334:11829248,530548,102891 +h3765,557:20753781,12989334:0,0,0 +r3765,602:20753781,12989334:0,633439,102891 +g3765,557:22064501,12989334 +g3765,557:22064501,12989334 +g3765,557:25756939,12989334 +g3765,557:27325215,12989334 +k3765,558:30551811,12989334:2031219 +k3765,558:32583029,12989334:2031218 +) +(3765,559:20753781,13855442:11829248,530548,102891 +h3765,558:20753781,13855442:0,0,0 +r3765,602:20753781,13855442:0,633439,102891 +g3765,558:22064501,13855442 +g3765,558:22064501,13855442 +g3765,558:25756939,13855442 +g3765,558:27325215,13855442 +g3765,558:28893491,13855442 +k3765,559:31335949,13855442:1247081 +k3765,559:32583029,13855442:1247080 +) +(3765,560:20753781,14721549:11829248,530548,102891 +h3765,559:20753781,14721549:0,0,0 +r3765,602:20753781,14721549:0,633439,102891 +g3765,559:22064501,14721549 +g3765,559:22064501,14721549 +g3765,559:25756939,14721549 +k3765,560:29767673,14721549:2815357 +k3765,560:32583029,14721549:2815356 +) +(3765,561:20753781,15587657:11829248,538806,102891 +h3765,560:20753781,15587657:0,0,0 +r3765,602:20753781,15587657:0,641697,102891 +g3765,560:22064501,15587657 +g3765,560:22064501,15587657 +g3765,560:27001767,15587657 +k3765,561:30390087,15587657:2192943 +k3765,561:32583029,15587657:2192942 +) +(3765,562:20753781,16453764:11829248,530548,102891 +h3765,561:20753781,16453764:0,0,0 +r3765,602:20753781,16453764:0,633439,102891 +g3765,561:22064501,16453764 +g3765,561:22064501,16453764 +g3765,561:24927054,16453764 +k3765,562:30114258,16453764:2468771 +k3765,562:32583029,16453764:2468771 +) +(3765,563:20753781,17319872:11829248,530548,102891 +h3765,562:20753781,17319872:0,0,0 +r3765,602:20753781,17319872:0,633439,102891 +g3765,562:22064501,17319872 +g3765,562:22064501,17319872 +g3765,562:25756939,17319872 +k3765,563:30529201,17319872:2053829 +k3765,563:32583029,17319872:2053828 +) +(3765,567:20753781,18858464:11829248,426639,126483 +h3765,566:20753781,18858464:0,0,0 +k3765,567:28206863,18858464:4376167 +k3765,567:32583029,18858464:4376166 +) +(3765,568:20753781,19724572:11829248,485622,102891 +h3765,567:20753781,19724572:0,0,0 +r3765,602:20753781,19724572:0,588513,102891 +g3765,567:22064501,19724572 +g3765,567:22064501,19724572 +g3765,567:22852342,19724572 +g3765,567:24022159,19724572 +k3765,568:28701053,19724572:3881976 +k3765,568:32583029,19724572:3881976 +) +(3765,569:20753781,20590679:11829248,485622,102891 +h3765,568:20753781,20590679:0,0,0 +r3765,602:20753781,20590679:0,588513,102891 +g3765,568:22064501,20590679 +g3765,568:22064501,20590679 +g3765,568:22852342,20590679 +g3765,568:24022159,20590679 +g3765,568:25191976,20590679 +g3765,568:26760252,20590679 +k3765,569:30269329,20590679:2313700 +k3765,569:32583029,20590679:2313700 +) +(3765,570:20753781,21456787:11829248,485622,102891 +h3765,569:20753781,21456787:0,0,0 +r3765,602:20753781,21456787:0,588513,102891 +g3765,569:22064501,21456787 +g3765,569:22064501,21456787 +g3765,569:22852342,21456787 +g3765,569:24022159,21456787 +k3765,570:28701053,21456787:3881976 +k3765,570:32583029,21456787:3881976 +) +(3765,571:20753781,22322894:11829248,485622,102891 +h3765,570:20753781,22322894:0,0,0 +r3765,602:20753781,22322894:0,588513,102891 +g3765,570:22064501,22322894 +g3765,570:22064501,22322894 +g3765,570:23267285,22322894 +g3765,570:24437102,22322894 +k3765,571:29107754,22322894:3475275 +k3765,571:32583029,22322894:3475275 +) +(3765,572:20753781,23189002:11829248,530548,102891 +h3765,571:20753781,23189002:0,0,0 +r3765,602:20753781,23189002:0,633439,102891 +g3765,571:22064501,23189002 +g3765,571:22064501,23189002 +g3765,571:22852342,23189002 +g3765,571:24022159,23189002 +k3765,572:28900283,23189002:3682747 +k3765,572:32583029,23189002:3682746 +) +(3765,573:20753781,24055109:11829248,485622,102891 +h3765,572:20753781,24055109:0,0,0 +r3765,602:20753781,24055109:0,588513,102891 +g3765,572:22064501,24055109 +g3765,572:22064501,24055109 +g3765,572:22852342,24055109 +k3765,573:28116145,24055109:4466885 +k3765,573:32583029,24055109:4466884 +) +(3765,574:20753781,24921217:11829248,485622,102891 +h3765,573:20753781,24921217:0,0,0 +r3765,602:20753781,24921217:0,588513,102891 +g3765,573:22064501,24921217 +g3765,573:22064501,24921217 +g3765,573:22852342,24921217 +k3765,574:28116145,24921217:4466885 +k3765,574:32583029,24921217:4466884 +) +(3765,575:20753781,25787324:11829248,485622,102891 +h3765,574:20753781,25787324:0,0,0 +r3765,602:20753781,25787324:0,588513,102891 +g3765,574:22064501,25787324 +g3765,574:22064501,25787324 +g3765,574:23267285,25787324 +g3765,574:24437102,25787324 +g3765,574:25606919,25787324 +g3765,574:26776736,25787324 +g3765,574:28345012,25787324 +k3765,575:31061709,25787324:1521320 +k3765,575:32583029,25787324:1521320 +) +(3765,576:20753781,26653432:11829248,485622,102891 +h3765,575:20753781,26653432:0,0,0 +r3765,602:20753781,26653432:0,588513,102891 +g3765,575:22064501,26653432 +g3765,575:22064501,26653432 +g3765,575:23682227,26653432 +k3765,576:28730317,26653432:3852713 +k3765,576:32583029,26653432:3852712 +) +(3765,577:20753781,27519539:11829248,485622,102891 +h3765,576:20753781,27519539:0,0,0 +r3765,602:20753781,27519539:0,588513,102891 +g3765,576:22064501,27519539 +g3765,576:22064501,27519539 +g3765,576:23267285,27519539 +k3765,577:28323616,27519539:4259413 +k3765,577:32583029,27519539:4259413 +) +(3765,578:20753781,28385647:11829248,485622,102891 +h3765,577:20753781,28385647:0,0,0 +r3765,602:20753781,28385647:0,588513,102891 +g3765,577:22064501,28385647 +g3765,577:22064501,28385647 +g3765,577:22852342,28385647 +k3765,578:28116145,28385647:4466885 +k3765,578:32583029,28385647:4466884 +) +(3765,579:20753781,29251754:11829248,485622,102891 +h3765,578:20753781,29251754:0,0,0 +r3765,602:20753781,29251754:0,588513,102891 +g3765,578:22064501,29251754 +g3765,578:22064501,29251754 +g3765,578:23267285,29251754 +g3765,578:24437102,29251754 +k3765,579:29107754,29251754:3475275 +k3765,579:32583029,29251754:3475275 +) +(3765,580:20753781,30117862:11829248,485622,102891 +h3765,579:20753781,30117862:0,0,0 +r3765,602:20753781,30117862:0,588513,102891 +g3765,579:22064501,30117862 +g3765,579:22064501,30117862 +g3765,579:22852342,30117862 +k3765,580:28116145,30117862:4466885 +k3765,580:32583029,30117862:4466884 +) +(3765,581:20753781,30983969:11829248,485622,102891 +h3765,580:20753781,30983969:0,0,0 +r3765,602:20753781,30983969:0,588513,102891 +g3765,580:22064501,30983969 +g3765,580:22064501,30983969 +g3765,580:23267285,30983969 +k3765,581:28323616,30983969:4259413 +k3765,581:32583029,30983969:4259413 +) +(3765,582:20753781,31850077:11829248,530548,108035 +h3765,581:20753781,31850077:0,0,0 +r3765,602:20753781,31850077:0,638583,108035 +g3765,581:22064501,31850077 +g3765,581:22064501,31850077 +g3765,581:22894385,31850077 +g3765,581:23724269,31850077 +g3765,581:24512110,31850077 +g3765,581:26080386,31850077 +k3765,582:29929396,31850077:2653633 +k3765,582:32583029,31850077:2653633 +) +(3765,584:20753781,32716184:11829248,530548,102891 +h3765,582:20753781,32716184:0,0,0 +r3765,602:20753781,32716184:0,633439,102891 +g3765,582:22064501,32716184 +g3765,582:22064501,32716184 +g3765,582:22894385,32716184 +g3765,582:23682226,32716184 +g3765,582:24852043,32716184 +g3765,582:26021860,32716184 +g3765,582:27191677,32716184 +g3765,582:28361494,32716184 +g3765,582:29531311,32716184 +g3765,582:30701128,32716184 +k3765,582:32583029,32716184:512854 +) +(3765,584:23375221,33581264:9207808,485622,102891 +g3765,582:24943497,33581264 +g3765,582:26511773,33581264 +g3765,582:28080049,33581264 +k3765,584:30929228,33581264:1653802 +k3765,584:32583029,33581264:1653801 +) +(3765,585:20753781,34447372:11829248,530548,102891 +h3765,584:20753781,34447372:0,0,0 +r3765,602:20753781,34447372:0,633439,102891 +k3765,584:22064501,34447372:1310720 +k3765,584:22064501,34447372:0 +k3765,584:23276454,34447372:382068 +k3765,584:24463454,34447372:183445 +k3765,584:25617487,34447372:183445 +k3765,584:26771520,34447372:183445 +k3765,584:27925553,34447372:183445 +k3765,584:29079586,34447372:183445 +k3765,584:30233619,34447372:183445 +k3765,584:31387652,34447372:183445 +k3765,585:32583029,34447372:0 +k3765,585:32583029,34447372:0 +) +(3765,586:20753781,35313479:11829248,538806,102891 +h3765,585:20753781,35313479:0,0,0 +r3765,602:20753781,35313479:0,641697,102891 +g3765,585:22064501,35313479 +g3765,585:22064501,35313479 +g3765,585:22852342,35313479 +g3765,585:24022159,35313479 +g3765,585:25191976,35313479 +k3765,586:29285962,35313479:3297068 +k3765,586:32583029,35313479:3297067 +) +(3765,587:20753781,36179587:11829248,509904,102891 +h3765,586:20753781,36179587:0,0,0 +r3765,602:20753781,36179587:0,612795,102891 +g3765,586:22064501,36179587 +g3765,586:22064501,36179587 +g3765,586:23682227,36179587 +k3765,587:28531087,36179587:4051942 +k3765,587:32583029,36179587:4051942 +) +(3765,588:20753781,37045694:11829248,509904,102891 +h3765,587:20753781,37045694:0,0,0 +r3765,602:20753781,37045694:0,612795,102891 +g3765,587:22064501,37045694 +g3765,587:22064501,37045694 +g3765,587:23682227,37045694 +k3765,588:28730317,37045694:3852713 +k3765,588:32583029,37045694:3852712 +) +(3765,589:20753781,37911802:11829248,509904,102891 +h3765,588:20753781,37911802:0,0,0 +r3765,602:20753781,37911802:0,612795,102891 +g3765,588:22064501,37911802 +g3765,588:22064501,37911802 +g3765,588:24097170,37911802 +g3765,588:27188503,37911802 +k3765,589:30483455,37911802:2099575 +k3765,589:32583029,37911802:2099574 +) +(3765,590:20753781,38777909:11829248,530548,102891 +h3765,589:20753781,38777909:0,0,0 +r3765,602:20753781,38777909:0,633439,102891 +g3765,589:22064501,38777909 +g3765,589:22064501,38777909 +g3765,589:23682227,38777909 +k3765,590:28531087,38777909:4051942 +k3765,590:32583029,38777909:4051942 +) +(3765,591:20753781,39644017:11829248,509904,102891 +h3765,590:20753781,39644017:0,0,0 +r3765,602:20753781,39644017:0,612795,102891 +g3765,590:22064501,39644017 +g3765,590:22064501,39644017 +g3765,590:24097170,39644017 +k3765,591:28937788,39644017:3645241 +k3765,591:32583029,39644017:3645241 +) +(3765,592:20753781,40510124:11829248,509904,102891 +h3765,591:20753781,40510124:0,0,0 +r3765,602:20753781,40510124:0,612795,102891 +g3765,591:22064501,40510124 +g3765,591:22064501,40510124 +g3765,591:23682227,40510124 +k3765,592:29491845,40510124:3091185 +k3765,592:32583029,40510124:3091184 +) +(3765,593:20753781,41376232:11829248,509904,102891 +h3765,592:20753781,41376232:0,0,0 +r3765,602:20753781,41376232:0,612795,102891 +g3765,592:22064501,41376232 +g3765,592:22064501,41376232 +g3765,592:24097170,41376232 +k3765,593:28937788,41376232:3645241 +k3765,593:32583029,41376232:3645241 +) +(3765,594:20753781,42242339:11829248,509904,102891 +h3765,593:20753781,42242339:0,0,0 +r3765,602:20753781,42242339:0,612795,102891 +g3765,593:22064501,42242339 +g3765,593:22064501,42242339 +g3765,593:23267285,42242339 +k3765,594:28323616,42242339:4259413 +k3765,594:32583029,42242339:4259413 +) +(3765,595:20753781,43108447:11829248,530548,102891 +h3765,594:20753781,43108447:0,0,0 +r3765,602:20753781,43108447:0,633439,102891 +g3765,594:22064501,43108447 +g3765,594:22064501,43108447 +g3765,594:24097170,43108447 +g3765,594:25266987,43108447 +k3765,595:29323467,43108447:3259562 +k3765,595:32583029,43108447:3259562 +) +(3765,596:20753781,43974554:11829248,509904,102891 +h3765,595:20753781,43974554:0,0,0 +r3765,602:20753781,43974554:0,612795,102891 +g3765,595:22064501,43974554 +g3765,595:22064501,43974554 +g3765,595:22852342,43974554 +g3765,595:24022159,43974554 +k3765,596:28701053,43974554:3881976 +k3765,596:32583029,43974554:3881976 +) +(3765,597:20753781,44840662:11829248,509904,102891 +h3765,596:20753781,44840662:0,0,0 +r3765,602:20753781,44840662:0,612795,102891 +g3765,596:22064501,44840662 +g3765,596:22064501,44840662 +g3765,596:23267285,44840662 +k3765,597:28323616,44840662:4259413 +k3765,597:32583029,44840662:4259413 +) +(3765,598:20753781,45706769:11829248,497518,102891 +h3765,597:20753781,45706769:0,0,0 +r3765,602:20753781,45706769:0,600409,102891 +g3765,597:22064501,45706769 +g3765,597:22064501,45706769 +g3765,597:22852342,45706769 +k3765,598:28116145,45706769:4466885 +k3765,598:32583029,45706769:4466884 +) +] +(3765,602:32583029,45706769:0,355205,126483 +h3765,602:32583029,45706769:420741,355205,126483 +k3765,602:32583029,45706769:-420741 +) +) +] +(3765,602:32583029,45706769:0,0,0 +g3765,602:32583029,45706769 +) +) +] +(3765,602:6630773,47279633:25952256,0,0 +h3765,602:6630773,47279633:25952256,0,0 +) +] +(3765,602:4262630,4025873:0,0,0 +[3765,602:-473656,4025873:0,0,0 +(3765,602:-473656,-710413:0,0,0 +(3765,602:-473656,-710413:0,0,0 +g3765,602:-473656,-710413 +) +g3765,602:-473656,-710413 +) +] +) +] +!31040 +}438 !12 -{457 -[1,23545:4262630,47279633:28320399,43253760,0 -(1,23545:4262630,4025873:0,0,0 -[1,23545:-473656,4025873:0,0,0 -(1,23545:-473656,-710413:0,0,0 -(1,23545:-473656,-644877:0,0,0 -k1,23545:-473656,-644877:-65536 +{439 +[1,23758:4262630,47279633:28320399,43253760,0 +(1,23758:4262630,4025873:0,0,0 +[1,23758:-473656,4025873:0,0,0 +(1,23758:-473656,-710413:0,0,0 +(1,23758:-473656,-644877:0,0,0 +k1,23758:-473656,-644877:-65536 ) -(1,23545:-473656,4736287:0,0,0 -k1,23545:-473656,4736287:5209943 +(1,23758:-473656,4736287:0,0,0 +k1,23758:-473656,4736287:5209943 ) -g1,23545:-473656,-710413 +g1,23758:-473656,-710413 ) ] ) -[1,23545:6630773,47279633:25952256,43253760,0 -[1,23545:6630773,4812305:25952256,786432,0 -(1,23545:6630773,4812305:25952256,0,0 -(1,23545:6630773,4812305:25952256,0,0 -g1,23545:3078558,4812305 -[1,23545:3078558,4812305:0,0,0 -(1,23545:3078558,2439708:0,1703936,0 -k1,23545:1358238,2439708:-1720320 -(1,23545:1358238,2439708:1720320,1703936,0 -(1,23545:1358238,2439708:1179648,16384,0 -r1,23545:2537886,2439708:1179648,16384,0 +[1,23758:6630773,47279633:25952256,43253760,0 +[1,23758:6630773,4812305:25952256,786432,0 +(1,23758:6630773,4812305:25952256,513147,134348 +(1,23758:6630773,4812305:25952256,513147,134348 +g1,23758:3078558,4812305 +[1,23758:3078558,4812305:0,0,0 +(1,23758:3078558,2439708:0,1703936,0 +k1,23758:1358238,2439708:-1720320 +(1,21670:1358238,2439708:1720320,1703936,0 +(1,21670:1358238,2439708:1179648,16384,0 +r1,23758:2537886,2439708:1179648,16384,0 ) -g1,23545:3062174,2439708 -(1,23545:3062174,2439708:16384,1703936,0 -[1,23545:3062174,2439708:25952256,1703936,0 -(1,23545:3062174,1915420:25952256,1179648,0 -(1,23545:3062174,1915420:16384,1179648,0 -r1,23545:3078558,1915420:16384,1179648,0 +g1,21670:3062174,2439708 +(1,21670:3062174,2439708:16384,1703936,0 +[1,21670:3062174,2439708:25952256,1703936,0 +(1,21670:3062174,1915420:25952256,1179648,0 +(1,21670:3062174,1915420:16384,1179648,0 +r1,23758:3078558,1915420:16384,1179648,0 ) -k1,23545:29014430,1915420:25935872 -g1,23545:29014430,1915420 +k1,21670:29014430,1915420:25935872 +g1,21670:29014430,1915420 ) ] ) ) ) ] -[1,23545:3078558,4812305:0,0,0 -(1,23545:3078558,2439708:0,1703936,0 -g1,23545:29030814,2439708 -g1,23545:36135244,2439708 -(1,23545:36135244,2439708:1720320,1703936,0 -(1,23545:36135244,2439708:16384,1703936,0 -[1,23545:36135244,2439708:25952256,1703936,0 -(1,23545:36135244,1915420:25952256,1179648,0 -(1,23545:36135244,1915420:16384,1179648,0 -r1,23545:36151628,1915420:16384,1179648,0 +[1,23758:3078558,4812305:0,0,0 +(1,23758:3078558,2439708:0,1703936,0 +g1,23758:29030814,2439708 +g1,23758:36135244,2439708 +(1,21670:36135244,2439708:1720320,1703936,0 +(1,21670:36135244,2439708:16384,1703936,0 +[1,21670:36135244,2439708:25952256,1703936,0 +(1,21670:36135244,1915420:25952256,1179648,0 +(1,21670:36135244,1915420:16384,1179648,0 +r1,23758:36151628,1915420:16384,1179648,0 ) -k1,23545:62087500,1915420:25935872 -g1,23545:62087500,1915420 +k1,21670:62087500,1915420:25935872 +g1,21670:62087500,1915420 ) ] ) -g1,23545:36675916,2439708 -(1,23545:36675916,2439708:1179648,16384,0 -r1,23545:37855564,2439708:1179648,16384,0 +g1,21670:36675916,2439708 +(1,21670:36675916,2439708:1179648,16384,0 +r1,23758:37855564,2439708:1179648,16384,0 ) ) -k1,23545:3078556,2439708:-34777008 +k1,23758:3078556,2439708:-34777008 ) ] -[1,23545:3078558,4812305:0,0,0 -(1,23545:3078558,49800853:0,16384,2228224 -k1,23545:1358238,49800853:-1720320 -(1,23545:1358238,49800853:1720320,16384,2228224 -(1,23545:1358238,49800853:1179648,16384,0 -r1,23545:2537886,49800853:1179648,16384,0 +[1,23758:3078558,4812305:0,0,0 +(1,23758:3078558,49800853:0,16384,2228224 +k1,23758:1358238,49800853:-1720320 +(1,21670:1358238,49800853:1720320,16384,2228224 +(1,21670:1358238,49800853:1179648,16384,0 +r1,23758:2537886,49800853:1179648,16384,0 ) -g1,23545:3062174,49800853 -(1,23545:3062174,52029077:16384,1703936,0 -[1,23545:3062174,52029077:25952256,1703936,0 -(1,23545:3062174,51504789:25952256,1179648,0 -(1,23545:3062174,51504789:16384,1179648,0 -r1,23545:3078558,51504789:16384,1179648,0 +g1,21670:3062174,49800853 +(1,21670:3062174,52029077:16384,1703936,0 +[1,21670:3062174,52029077:25952256,1703936,0 +(1,21670:3062174,51504789:25952256,1179648,0 +(1,21670:3062174,51504789:16384,1179648,0 +r1,23758:3078558,51504789:16384,1179648,0 ) -k1,23545:29014430,51504789:25935872 -g1,23545:29014430,51504789 +k1,21670:29014430,51504789:25935872 +g1,21670:29014430,51504789 ) ] ) ) ) ] -[1,23545:3078558,4812305:0,0,0 -(1,23545:3078558,49800853:0,16384,2228224 -g1,23545:29030814,49800853 -g1,23545:36135244,49800853 -(1,23545:36135244,49800853:1720320,16384,2228224 -(1,23545:36135244,52029077:16384,1703936,0 -[1,23545:36135244,52029077:25952256,1703936,0 -(1,23545:36135244,51504789:25952256,1179648,0 -(1,23545:36135244,51504789:16384,1179648,0 -r1,23545:36151628,51504789:16384,1179648,0 +[1,23758:3078558,4812305:0,0,0 +(1,23758:3078558,49800853:0,16384,2228224 +g1,23758:29030814,49800853 +g1,23758:36135244,49800853 +(1,21670:36135244,49800853:1720320,16384,2228224 +(1,21670:36135244,52029077:16384,1703936,0 +[1,21670:36135244,52029077:25952256,1703936,0 +(1,21670:36135244,51504789:25952256,1179648,0 +(1,21670:36135244,51504789:16384,1179648,0 +r1,23758:36151628,51504789:16384,1179648,0 ) -k1,23545:62087500,51504789:25935872 -g1,23545:62087500,51504789 +k1,21670:62087500,51504789:25935872 +g1,21670:62087500,51504789 ) ] ) -g1,23545:36675916,49800853 -(1,23545:36675916,49800853:1179648,16384,0 -r1,23545:37855564,49800853:1179648,16384,0 +g1,21670:36675916,49800853 +(1,21670:36675916,49800853:1179648,16384,0 +r1,23758:37855564,49800853:1179648,16384,0 +) ) +k1,23758:3078556,49800853:-34777008 +) +] +g1,23758:6630773,4812305 +k1,23758:23083588,4812305:15257438 +g1,23758:24981510,4812305 +g1,23758:25796777,4812305 +g1,23758:26410194,4812305 +g1,23758:28753761,4812305 +g1,23758:29709275,4812305 ) -k1,23545:3078556,49800853:-34777008 ) ] -g1,23545:6630773,4812305 +[1,23758:6630773,45706769:25952256,40108032,0 +(1,23758:6630773,45706769:25952256,40108032,0 +(1,23758:6630773,45706769:0,0,0 +g1,23758:6630773,45706769 ) +[1,23758:6630773,45706769:25952256,40108032,0 +(3765,602:6630773,7119177:25952256,1520440,126483 +[3765,602:6630773,7119177:11829248,1520440,102891 +(3765,599:6630773,6254097:11829248,530548,102891 +h3765,598:6630773,6254097:0,0,0 +r1,23758:6630773,6254097:0,633439,102891 +g3765,598:7941493,6254097 +g3765,598:7941493,6254097 +g3765,598:8729334,6254097 +g3765,598:9899151,6254097 +k3765,599:14578045,6254097:3881976 +k3765,599:18460021,6254097:3881976 +) +(3765,600:6630773,7119177:11829248,530548,102891 +h3765,599:6630773,7119177:0,0,0 +r1,23758:6630773,7119177:0,633439,102891 +g3765,599:7941493,7119177 +g3765,599:7941493,7119177 +g3765,599:9144277,7119177 +g3765,599:10712553,7119177 +g3765,599:13803886,7119177 +k3765,600:16729642,7119177:1730379 +k3765,600:18460021,7119177:1730379 +) +] +k3765,602:19606901,7119177:1146880 +r1,23758:19606901,7119177:0,1646923,126483 +k3765,602:20753781,7119177:1146880 +[3765,602:20753781,7119177:11829248,1520440,0 +(3765,601:20753781,6254097:11829248,530548,102891 +h3765,600:20753781,6254097:0,0,0 +r1,23758:20753781,6254097:0,633439,102891 +g3765,600:22064501,6254097 +g3765,600:22064501,6254097 +g3765,600:23267285,6254097 +k3765,601:28323616,6254097:4259413 +k3765,601:32583029,6254097:4259413 ) ] -[1,23545:6630773,45706769:0,40108032,0 -(1,23545:6630773,45706769:0,40108032,0 -(1,23545:6630773,45706769:0,0,0 -g1,23545:6630773,45706769 +(3765,602:32583029,7119177:0,355205,126483 +h3765,602:32583029,7119177:420741,355205,126483 +k3765,602:32583029,7119177:-420741 +) ) -[1,23545:6630773,45706769:0,40108032,0 -h1,23545:6630773,6254097:0,0,0 ] -(1,23545:6630773,45706769:0,0,0 -g1,23545:6630773,45706769 +(1,23758:32583029,45706769:0,0,0 +g1,23758:32583029,45706769 ) ) ] -(1,23545:6630773,47279633:25952256,0,0 -h1,23545:6630773,47279633:25952256,0,0 +(1,23758:6630773,47279633:25952256,0,0 +h1,23758:6630773,47279633:25952256,0,0 ) ] -(1,23545:4262630,4025873:0,0,0 -[1,23545:-473656,4025873:0,0,0 -(1,23545:-473656,-710413:0,0,0 -(1,23545:-473656,-710413:0,0,0 -g1,23545:-473656,-710413 +(1,23758:4262630,4025873:0,0,0 +[1,23758:-473656,4025873:0,0,0 +(1,23758:-473656,-710413:0,0,0 +(1,23758:-473656,-710413:0,0,0 +g1,23758:-473656,-710413 ) -g1,23545:-473656,-710413 +g1,23758:-473656,-710413 ) ] ) ] -!3399 -}457 -Input:3725:C:\Users\aphalo_2\Documents\Own_manuscripts\Books\learnr-book-crc\faqindex.ind -Input:3726:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3727:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3728:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3729:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!4871 +}439 +Input:3766:C:\Users\aphalo_2\Documents\Own_manuscripts\Books\learnr-book-crc\faqindex.ind +Input:3767:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3768:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3769:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3770:C:/Users\aphalo_2\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !477 -{458 -[1,23547:4262630,47279633:28320399,43253760,11795 -(1,23547:4262630,4025873:0,0,0 -[1,23547:-473656,4025873:0,0,0 -(1,23547:-473656,-710413:0,0,0 -(1,23547:-473656,-644877:0,0,0 -k1,23547:-473656,-644877:-65536 +{440 +[1,23760:4262630,47279633:28320399,43253760,11795 +(1,23760:4262630,4025873:0,0,0 +[1,23760:-473656,4025873:0,0,0 +(1,23760:-473656,-710413:0,0,0 +(1,23760:-473656,-644877:0,0,0 +k1,23760:-473656,-644877:-65536 ) -(1,23547:-473656,4736287:0,0,0 -k1,23547:-473656,4736287:5209943 +(1,23760:-473656,4736287:0,0,0 +k1,23760:-473656,4736287:5209943 ) -g1,23547:-473656,-710413 +g1,23760:-473656,-710413 ) ] ) -[1,23547:6630773,47279633:25952256,43253760,11795 -[1,23547:6630773,4812305:25952256,786432,0 -(1,23547:6630773,4812305:25952256,0,0 -(1,23547:6630773,4812305:25952256,0,0 -g1,23547:3078558,4812305 -[1,23547:3078558,4812305:0,0,0 -(1,23547:3078558,2439708:0,1703936,0 -k1,23547:1358238,2439708:-1720320 -(1,21457:1358238,2439708:1720320,1703936,0 -(1,21457:1358238,2439708:1179648,16384,0 -r1,23547:2537886,2439708:1179648,16384,0 +[1,23760:6630773,47279633:25952256,43253760,11795 +[1,23760:6630773,4812305:25952256,786432,0 +(1,23760:6630773,4812305:25952256,0,0 +(1,23760:6630773,4812305:25952256,0,0 +g1,23760:3078558,4812305 +[1,23760:3078558,4812305:0,0,0 +(1,23760:3078558,2439708:0,1703936,0 +k1,23760:1358238,2439708:-1720320 +(1,21670:1358238,2439708:1720320,1703936,0 +(1,21670:1358238,2439708:1179648,16384,0 +r1,23760:2537886,2439708:1179648,16384,0 ) -g1,21457:3062174,2439708 -(1,21457:3062174,2439708:16384,1703936,0 -[1,21457:3062174,2439708:25952256,1703936,0 -(1,21457:3062174,1915420:25952256,1179648,0 -(1,21457:3062174,1915420:16384,1179648,0 -r1,23547:3078558,1915420:16384,1179648,0 +g1,21670:3062174,2439708 +(1,21670:3062174,2439708:16384,1703936,0 +[1,21670:3062174,2439708:25952256,1703936,0 +(1,21670:3062174,1915420:25952256,1179648,0 +(1,21670:3062174,1915420:16384,1179648,0 +r1,23760:3078558,1915420:16384,1179648,0 ) -k1,21457:29014430,1915420:25935872 -g1,21457:29014430,1915420 +k1,21670:29014430,1915420:25935872 +g1,21670:29014430,1915420 ) ] ) ) ) ] -[1,23547:3078558,4812305:0,0,0 -(1,23547:3078558,2439708:0,1703936,0 -g1,23547:29030814,2439708 -g1,23547:36135244,2439708 -(1,21457:36135244,2439708:1720320,1703936,0 -(1,21457:36135244,2439708:16384,1703936,0 -[1,21457:36135244,2439708:25952256,1703936,0 -(1,21457:36135244,1915420:25952256,1179648,0 -(1,21457:36135244,1915420:16384,1179648,0 -r1,23547:36151628,1915420:16384,1179648,0 +[1,23760:3078558,4812305:0,0,0 +(1,23760:3078558,2439708:0,1703936,0 +g1,23760:29030814,2439708 +g1,23760:36135244,2439708 +(1,21670:36135244,2439708:1720320,1703936,0 +(1,21670:36135244,2439708:16384,1703936,0 +[1,21670:36135244,2439708:25952256,1703936,0 +(1,21670:36135244,1915420:25952256,1179648,0 +(1,21670:36135244,1915420:16384,1179648,0 +r1,23760:36151628,1915420:16384,1179648,0 ) -k1,21457:62087500,1915420:25935872 -g1,21457:62087500,1915420 +k1,21670:62087500,1915420:25935872 +g1,21670:62087500,1915420 ) ] ) -g1,21457:36675916,2439708 -(1,21457:36675916,2439708:1179648,16384,0 -r1,23547:37855564,2439708:1179648,16384,0 +g1,21670:36675916,2439708 +(1,21670:36675916,2439708:1179648,16384,0 +r1,23760:37855564,2439708:1179648,16384,0 ) ) -k1,23547:3078556,2439708:-34777008 +k1,23760:3078556,2439708:-34777008 ) ] -[1,23547:3078558,4812305:0,0,0 -(1,23547:3078558,49800853:0,16384,2228224 -k1,23547:1358238,49800853:-1720320 -(1,21457:1358238,49800853:1720320,16384,2228224 -(1,21457:1358238,49800853:1179648,16384,0 -r1,23547:2537886,49800853:1179648,16384,0 +[1,23760:3078558,4812305:0,0,0 +(1,23760:3078558,49800853:0,16384,2228224 +k1,23760:1358238,49800853:-1720320 +(1,21670:1358238,49800853:1720320,16384,2228224 +(1,21670:1358238,49800853:1179648,16384,0 +r1,23760:2537886,49800853:1179648,16384,0 ) -g1,21457:3062174,49800853 -(1,21457:3062174,52029077:16384,1703936,0 -[1,21457:3062174,52029077:25952256,1703936,0 -(1,21457:3062174,51504789:25952256,1179648,0 -(1,21457:3062174,51504789:16384,1179648,0 -r1,23547:3078558,51504789:16384,1179648,0 +g1,21670:3062174,49800853 +(1,21670:3062174,52029077:16384,1703936,0 +[1,21670:3062174,52029077:25952256,1703936,0 +(1,21670:3062174,51504789:25952256,1179648,0 +(1,21670:3062174,51504789:16384,1179648,0 +r1,23760:3078558,51504789:16384,1179648,0 ) -k1,21457:29014430,51504789:25935872 -g1,21457:29014430,51504789 +k1,21670:29014430,51504789:25935872 +g1,21670:29014430,51504789 ) ] ) ) ) ] -[1,23547:3078558,4812305:0,0,0 -(1,23547:3078558,49800853:0,16384,2228224 -g1,23547:29030814,49800853 -g1,23547:36135244,49800853 -(1,21457:36135244,49800853:1720320,16384,2228224 -(1,21457:36135244,52029077:16384,1703936,0 -[1,21457:36135244,52029077:25952256,1703936,0 -(1,21457:36135244,51504789:25952256,1179648,0 -(1,21457:36135244,51504789:16384,1179648,0 -r1,23547:36151628,51504789:16384,1179648,0 +[1,23760:3078558,4812305:0,0,0 +(1,23760:3078558,49800853:0,16384,2228224 +g1,23760:29030814,49800853 +g1,23760:36135244,49800853 +(1,21670:36135244,49800853:1720320,16384,2228224 +(1,21670:36135244,52029077:16384,1703936,0 +[1,21670:36135244,52029077:25952256,1703936,0 +(1,21670:36135244,51504789:25952256,1179648,0 +(1,21670:36135244,51504789:16384,1179648,0 +r1,23760:36151628,51504789:16384,1179648,0 ) -k1,21457:62087500,51504789:25935872 -g1,21457:62087500,51504789 +k1,21670:62087500,51504789:25935872 +g1,21670:62087500,51504789 ) ] ) -g1,21457:36675916,49800853 -(1,21457:36675916,49800853:1179648,16384,0 -r1,23547:37855564,49800853:1179648,16384,0 +g1,21670:36675916,49800853 +(1,21670:36675916,49800853:1179648,16384,0 +r1,23760:37855564,49800853:1179648,16384,0 ) ) -k1,23547:3078556,49800853:-34777008 +k1,23760:3078556,49800853:-34777008 ) ] -g1,23547:6630773,4812305 +g1,23760:6630773,4812305 ) ) -] -[1,23547:6630773,45706769:25952256,40108032,0 -(1,23547:6630773,45706769:25952256,40108032,0 -(1,23547:6630773,45706769:0,0,0 -g1,23547:6630773,45706769 -) -[1,23547:6630773,45706769:25952256,40108032,0 -[3725,1:6630773,12106481:25952256,6507744,0 -(3725,1:6630773,7073297:25952256,32768,229376 -(3725,1:6630773,7073297:0,32768,229376 -(3725,1:6630773,7073297:5505024,32768,229376 -r1,23547:12135797,7073297:5505024,262144,229376 -) -k3725,1:6630773,7073297:-5505024 -) -) -(3725,1:6630773,8803457:25952256,909509,227671 -h3725,1:6630773,8803457:0,0,0 -g3725,1:13386617,8803457 -g3725,1:17354953,8803457 -k3725,1:27885671,8803457:4697358 -k3725,1:32583029,8803457:4697358 -) -(3725,1:6630773,9419505:25952256,32768,0 -(3725,1:6630773,9419505:5505024,32768,0 -r1,23547:12135797,9419505:5505024,32768,0 -) -k3725,1:22359413,9419505:10223616 -k3725,1:32583029,9419505:10223616 -) -] -(3725,1:6630773,12947969:25952256,513147,126483 -k3725,1:10214180,12947969:184055 -k3725,1:12245040,12947969:184055 -k3725,1:15523706,12947969:184056 -k3725,1:16899206,12947969:184055 -k3725,1:18591900,12947969:184055 -k3725,1:21363972,12947969:184055 -k3725,1:23736931,12947969:184056 -k3725,1:24537024,12947969:184055 -k3725,1:25740164,12947969:184055 -k3725,1:27501015,12947969:184055 -k3725,1:28344363,12947969:184056 -k3725,1:29547503,12947969:184055 -k3725,1:31313597,12947969:184055 -k3725,1:32583029,12947969:0 -) -(3725,1:6630773,13928307:25952256,788319,218313 -k3725,1:8686482,13928307:185967 -k3725,1:9633976,13928307:185966 -k3725,1:10839028,13928307:185967 -k3725,1:12369137,13928307:185966 -(3725,1:12369137,13928307:0,788319,218313 -r1,23547:13489016,13928307:1119879,1006632,218313 -k3725,1:12369137,13928307:-1119879 -) -(3725,1:12369137,13928307:1119879,788319,218313 -) -k3725,1:13674983,13928307:185967 -k3725,1:15052394,13928307:185966 -k3725,1:18863813,13928307:185967 -k3725,1:19811307,13928307:185966 -k3725,1:20353134,13928307:185967 -k3725,1:23354528,13928307:185967 -k3725,1:24585138,13928307:185966 -k3725,1:25430397,13928307:185967 -k3725,1:26635448,13928307:185966 -k3725,1:28474888,13928307:185967 -k3725,1:30691815,13928307:185966 -k3725,1:31563944,13928307:185967 -k3725,1:32583029,13928307:0 -) -(3725,1:6630773,14769795:25952256,473825,7863 -k3725,1:32583029,14769795:24434442 -g3725,1:32583029,14769795 -) -(3725,5:6630773,16397715:25952256,505283,134348 -h3725,3:6630773,16397715:0,0,0 -g3725,3:7953289,16397715 -g3725,3:9807302,16397715 -g3725,3:11138338,16397715 -g3725,3:14412516,16397715 -g3725,3:15263173,16397715 -g3725,3:17988815,16397715 -g3725,3:19207129,16397715 -g3725,3:21240711,16397715 -g3725,3:22063187,16397715 -g3725,3:23040328,16397715 -g3725,3:23638016,16397715 -g3725,3:26963968,16397715 -g3725,3:29245931,16397715 -k3725,5:31312939,16397715:1270090 -k3725,5:32583029,16397715:1270090 -) -(3725,10:6630773,17894563:25952256,505283,134348 -h3725,8:6630773,17894563:0,0,0 -g3725,8:8250823,17894563 -g3725,8:9554334,17894563 -g3725,8:9966555,17894563 -g3725,8:11144237,17894563 -g3725,8:13374427,17894563 -g3725,8:14225084,17894563 -g3725,8:16848490,17894563 -g3725,8:17733881,17894563 -g3725,8:18288970,17894563 -g3725,8:20257016,17894563 -g3725,8:23162227,17894563 -k3725,10:28271087,17894563:4311942 -k3725,10:32583029,17894563:4311942 -) -(3725,11:6630773,18736051:25952256,505283,126483 -h3725,10:6630773,18736051:0,0,0 -g3725,10:8250823,18736051 -g3725,10:9265320,18736051 -g3725,10:9677541,18736051 -g3725,10:11846127,18736051 -g3725,10:13064441,18736051 -g3725,10:15687847,18736051 -g3725,10:16974318,18736051 -g3725,10:17789585,18736051 -g3725,10:18969888,18736051 -g3725,10:22746072,18736051 -k3725,11:28063010,18736051:4520020 -k3725,11:32583029,18736051:4520019 -) -(3725,12:6630773,19577539:25952256,505283,134348 -h3725,11:6630773,19577539:0,0,0 -g3725,11:8250823,19577539 -g3725,11:9265320,19577539 -g3725,11:9677541,19577539 -g3725,11:11846127,19577539 -g3725,11:13064441,19577539 -g3725,11:13678513,19577539 -g3725,11:16619768,19577539 -g3725,11:17435035,19577539 -g3725,11:18615338,19577539 -g3725,11:22391522,19577539 -k3725,12:27885735,19577539:4697295 -k3725,12:32583029,19577539:4697294 -) -(3725,13:6630773,20419027:25952256,505283,102891 -h3725,12:6630773,20419027:0,0,0 -g3725,12:8250823,20419027 -g3725,12:9101480,20419027 -g3725,12:11331670,20419027 -g3725,12:12549984,20419027 -g3725,12:13897404,20419027 -g3725,12:15776976,20419027 -g3725,12:16592243,20419027 -g3725,12:17147332,20419027 -g3725,12:19825133,20419027 -k3725,13:26602540,20419027:5980489 -k3725,13:32583029,20419027:5980489 -) -(3725,14:6630773,21260515:25952256,505283,134348 -h3725,13:6630773,21260515:0,0,0 -g3725,13:8250823,21260515 -g3725,13:9101480,21260515 -g3725,13:11541385,21260515 -g3725,13:12759699,21260515 -g3725,13:16242282,21260515 -g3725,13:17954737,21260515 -g3725,13:18805394,21260515 -g3725,13:20973980,21260515 -g3725,13:24584358,21260515 -k3725,14:29181382,21260515:3401647 -k3725,14:32583029,21260515:3401647 -) -(3725,15:6630773,22102003:25952256,513147,134348 -h3725,14:6630773,22102003:0,0,0 -g3725,14:8250823,22102003 -g3725,14:9101480,22102003 -g3725,14:11270066,22102003 -g3725,14:12152180,22102003 -g3725,14:14567837,22102003 -g3725,14:15122926,22102003 -g3725,14:17902307,22102003 -g3725,14:19669157,22102003 -g3725,14:22249309,22102003 -k3725,15:28013858,22102003:4569172 -k3725,15:32583029,22102003:4569171 -) -(3725,16:6630773,22943491:25952256,513147,102891 -h3725,15:6630773,22943491:0,0,0 -g3725,15:8250823,22943491 -g3725,15:9101480,22943491 -g3725,15:11040035,22943491 -g3725,15:13952455,22943491 -g3725,15:14834569,22943491 -g3725,15:16567996,22943491 -g3725,15:17383263,22943491 -g3725,15:17938352,22943491 -g3725,15:19526944,22943491 -g3725,15:22103164,22943491 -k3725,16:27940785,22943491:4642244 -k3725,16:32583029,22943491:4642244 -) -(3725,17:6630773,23784979:25952256,513147,126483 -h3725,16:6630773,23784979:0,0,0 -g3725,16:8250823,23784979 -g3725,16:9101480,23784979 -g3725,16:11580051,23784979 -g3725,16:14273580,23784979 -g3725,16:16007007,23784979 -g3725,16:17773857,23784979 -g3725,16:18328946,23784979 -g3725,16:19917538,23784979 -g3725,16:22493758,23784979 -k3725,17:28136082,23784979:4446947 -k3725,17:32583029,23784979:4446947 -) -(3725,19:6630773,24626467:25952256,513147,134348 -h3725,17:6630773,24626467:0,0,0 -g3725,17:8250823,24626467 -g3725,17:9101480,24626467 -g3725,17:12868489,24626467 -g3725,17:15687847,24626467 -g3725,17:18728717,24626467 -g3725,17:20495567,24626467 -g3725,17:21050656,24626467 -g3725,17:22639248,24626467 -g3725,17:24714773,24626467 -g3725,17:25675530,24626467 -g3725,17:28268134,24626467 -k3725,19:31023270,24626467:1559759 -k3725,19:32583029,24626467:1559759 -) -(3725,20:6630773,25467955:25952256,513147,134348 -h3725,19:6630773,25467955:0,0,0 -g3725,19:8250823,25467955 -g3725,19:9101480,25467955 -g3725,19:12868489,25467955 -g3725,19:14224428,25467955 -g3725,19:16934997,25467955 -g3725,19:18701847,25467955 -g3725,19:19256936,25467955 -g3725,19:20845528,25467955 -g3725,19:22921053,25467955 -g3725,19:23881810,25467955 -g3725,19:26474414,25467955 -k3725,20:30126410,25467955:2456619 -k3725,20:32583029,25467955:2456619 -) -(3725,22:6630773,26309443:25952256,513147,115847 -h3725,20:6630773,26309443:0,0,0 -g3725,20:8250823,26309443 -g3725,20:9101480,26309443 -g3725,20:10492154,26309443 -g3725,20:11157344,26309443 -g3725,20:11712433,26309443 -g3725,20:13889539,26309443 -g3725,20:16790817,26309443 -g3725,20:17799416,26309443 -g3725,20:20009290,26309443 -g3725,20:21910489,26309443 -g3725,20:23552165,26309443 -(3725,20:23552165,26309443:0,414482,115847 -r1,23547:24262143,26309443:709978,530329,115847 -k3725,20:23552165,26309443:-709978 -) -(3725,20:23552165,26309443:709978,414482,115847 -k3725,20:23552165,26309443:3277 -h3725,20:24258866,26309443:0,411205,112570 -) -g3725,20:24461372,26309443 -g3725,20:25550580,26309443 -(3725,20:25550580,26309443:0,414482,115847 -r1,23547:26612269,26309443:1061689,530329,115847 -k3725,20:25550580,26309443:-1061689 -) -(3725,20:25550580,26309443:1061689,414482,115847 -k3725,20:25550580,26309443:3277 -h3725,20:26608992,26309443:0,411205,112570 -) -g3725,20:27018592,26309443 -g3725,20:29729161,26309443 -k3725,22:31554554,26309443:1028475 -k3725,22:32583029,26309443:1028475 -) -(3725,24:6630773,27150931:25952256,513147,115847 -h3725,22:6630773,27150931:0,0,0 -g3725,22:8250823,27150931 -g3725,22:9101480,27150931 -g3725,22:10492154,27150931 -g3725,22:11157344,27150931 -g3725,22:11712433,27150931 -g3725,22:13889539,27150931 -g3725,22:16790817,27150931 -g3725,22:18146756,27150931 -g3725,22:19028870,27150931 -g3725,22:20878296,27150931 -(3725,22:20878296,27150931:0,414482,115847 -r1,23547:21588274,27150931:709978,530329,115847 -k3725,22:20878296,27150931:-709978 -) -(3725,22:20878296,27150931:709978,414482,115847 -k3725,22:20878296,27150931:3277 -h3725,22:21584997,27150931:0,411205,112570 -) -g3725,22:21787503,27150931 -g3725,22:22876711,27150931 -(3725,22:22876711,27150931:0,414482,115847 -r1,23547:23938400,27150931:1061689,530329,115847 -k3725,22:22876711,27150931:-1061689 -) -(3725,22:22876711,27150931:1061689,414482,115847 -k3725,22:22876711,27150931:3277 -h3725,22:23935123,27150931:0,411205,112570 -) -g3725,22:24344723,27150931 -g3725,22:27055292,27150931 -k3725,24:30217620,27150931:2365410 -k3725,24:32583029,27150931:2365409 -) -(3725,25:6630773,27992419:25952256,505283,134348 -h3725,24:6630773,27992419:0,0,0 -g3725,24:8250823,27992419 -g3725,24:9101480,27992419 -g3725,24:10393194,27992419 -g3725,24:11363126,27992419 -g3725,24:14299794,27992419 -g3725,24:17579870,27992419 -k3725,25:25679138,27992419:6903891 -k3725,25:32583029,27992419:6903891 -) -] -(1,23547:32583029,45706769:0,0,0 -g1,23547:32583029,45706769 -) -) -] -(1,23547:6630773,47279633:25952256,485622,11795 -(1,23547:6630773,47279633:25952256,485622,11795 -k1,23547:19009213,47279633:12378440 -k1,23547:32583030,47279633:12378440 -) -) -] -(1,23547:4262630,4025873:0,0,0 -[1,23547:-473656,4025873:0,0,0 -(1,23547:-473656,-710413:0,0,0 -(1,23547:-473656,-710413:0,0,0 -g1,23547:-473656,-710413 -) -g1,23547:-473656,-710413 -) -] -) -h1,23547:4262630,4025873:0,0,0 +] +[1,23760:6630773,45706769:25952256,40108032,0 +(1,23760:6630773,45706769:25952256,40108032,0 +(1,23760:6630773,45706769:0,0,0 +g1,23760:6630773,45706769 +) +[1,23760:6630773,45706769:25952256,40108032,0 +[3766,1:6630773,12185121:25952256,6586384,0 +(3766,1:6630773,7073297:25952256,32768,229376 +(3766,1:6630773,7073297:0,32768,229376 +(3766,1:6630773,7073297:5505024,32768,229376 +r1,23760:12135797,7073297:5505024,262144,229376 +) +k3766,1:6630773,7073297:-5505024 +) +) +(3766,1:6630773,8842777:25952256,909509,227671 +h3766,1:6630773,8842777:0,0,0 +g3766,1:13386617,8842777 +g3766,1:17354953,8842777 +k3766,1:27885671,8842777:4697358 +k3766,1:32583029,8842777:4697358 +) +(3766,1:6630773,9498145:25952256,32768,0 +(3766,1:6630773,9498145:5505024,32768,0 +r1,23760:12135797,9498145:5505024,32768,0 +) +k3766,1:22359413,9498145:10223616 +k3766,1:32583029,9498145:10223616 +) +] +(3766,1:6630773,13050201:25952256,513147,126483 +k3766,1:10214180,13050201:184055 +k3766,1:12245040,13050201:184055 +k3766,1:15523706,13050201:184056 +k3766,1:16899206,13050201:184055 +k3766,1:18591900,13050201:184055 +k3766,1:21363972,13050201:184055 +k3766,1:23736931,13050201:184056 +k3766,1:24537024,13050201:184055 +k3766,1:25740164,13050201:184055 +k3766,1:27501015,13050201:184055 +k3766,1:28344363,13050201:184056 +k3766,1:29547503,13050201:184055 +k3766,1:31313597,13050201:184055 +k3766,1:32583029,13050201:0 +) +(3766,1:6630773,14049978:25952256,807758,219026 +k3766,1:8684990,14049978:184475 +k3766,1:9630992,14049978:184474 +k3766,1:10834552,14049978:184475 +k3766,1:12363169,14049978:184474 +(3766,1:12363169,14049978:0,807758,219026 +r1,23760:13506920,14049978:1143751,1026784,219026 +k3766,1:12363169,14049978:-1143751 +) +(3766,1:12363169,14049978:1143751,807758,219026 +) +k3766,1:13691395,14049978:184475 +k3766,1:15067314,14049978:184474 +k3766,1:18877241,14049978:184475 +k3766,1:19823243,14049978:184474 +k3766,1:20363578,14049978:184475 +k3766,1:23363480,14049978:184475 +k3766,1:24592598,14049978:184474 +k3766,1:25436365,14049978:184475 +k3766,1:26639924,14049978:184474 +k3766,1:28477872,14049978:184475 +k3766,1:30693307,14049978:184474 +k3766,1:31563944,14049978:184475 +k3766,1:32583029,14049978:0 +) +(3766,1:6630773,14915058:25952256,473825,7863 +k3766,1:32583029,14915058:24434442 +g3766,1:32583029,14915058 +) +(3766,5:6630773,16566570:25952256,505283,134348 +h3766,3:6630773,16566570:0,0,0 +g3766,3:7953289,16566570 +g3766,3:9807302,16566570 +g3766,3:11138338,16566570 +g3766,3:14412516,16566570 +g3766,3:15263173,16566570 +g3766,3:17988815,16566570 +g3766,3:19207129,16566570 +g3766,3:21240711,16566570 +g3766,3:22063187,16566570 +g3766,3:23040328,16566570 +g3766,3:23638016,16566570 +g3766,3:26963968,16566570 +g3766,3:29245931,16566570 +k3766,5:31312939,16566570:1270090 +k3766,5:32583029,16566570:1270090 +) +(3766,10:6630773,18087010:25952256,505283,134348 +h3766,8:6630773,18087010:0,0,0 +g3766,8:8250823,18087010 +g3766,8:9554334,18087010 +g3766,8:9966555,18087010 +g3766,8:11144237,18087010 +g3766,8:13374427,18087010 +g3766,8:14225084,18087010 +g3766,8:16848490,18087010 +g3766,8:17733881,18087010 +g3766,8:18288970,18087010 +g3766,8:20257016,18087010 +g3766,8:23162227,18087010 +k3766,10:28271087,18087010:4311942 +k3766,10:32583029,18087010:4311942 +) +(3766,11:6630773,18952090:25952256,505283,126483 +h3766,10:6630773,18952090:0,0,0 +g3766,10:8250823,18952090 +g3766,10:9265320,18952090 +g3766,10:9677541,18952090 +g3766,10:11846127,18952090 +g3766,10:13064441,18952090 +g3766,10:15687847,18952090 +g3766,10:16974318,18952090 +g3766,10:17789585,18952090 +g3766,10:18969888,18952090 +g3766,10:22746072,18952090 +k3766,11:28063010,18952090:4520020 +k3766,11:32583029,18952090:4520019 +) +(3766,12:6630773,19817170:25952256,505283,134348 +h3766,11:6630773,19817170:0,0,0 +g3766,11:8250823,19817170 +g3766,11:9265320,19817170 +g3766,11:9677541,19817170 +g3766,11:11846127,19817170 +g3766,11:13064441,19817170 +g3766,11:13678513,19817170 +g3766,11:16619768,19817170 +g3766,11:17435035,19817170 +g3766,11:18615338,19817170 +g3766,11:22391522,19817170 +k3766,12:27885735,19817170:4697295 +k3766,12:32583029,19817170:4697294 +) +(3766,13:6630773,20682250:25952256,505283,102891 +h3766,12:6630773,20682250:0,0,0 +g3766,12:8250823,20682250 +g3766,12:9101480,20682250 +g3766,12:11331670,20682250 +g3766,12:12549984,20682250 +g3766,12:13897404,20682250 +g3766,12:15776976,20682250 +g3766,12:16592243,20682250 +g3766,12:17147332,20682250 +g3766,12:19825133,20682250 +k3766,13:26602540,20682250:5980489 +k3766,13:32583029,20682250:5980489 +) +(3766,14:6630773,21547330:25952256,505283,134348 +h3766,13:6630773,21547330:0,0,0 +g3766,13:8250823,21547330 +g3766,13:9101480,21547330 +g3766,13:11541385,21547330 +g3766,13:12759699,21547330 +g3766,13:16242282,21547330 +g3766,13:17954737,21547330 +g3766,13:18805394,21547330 +g3766,13:20973980,21547330 +g3766,13:24584358,21547330 +k3766,14:29181382,21547330:3401647 +k3766,14:32583029,21547330:3401647 +) +(3766,15:6630773,22412410:25952256,513147,134348 +h3766,14:6630773,22412410:0,0,0 +g3766,14:8250823,22412410 +g3766,14:9101480,22412410 +g3766,14:11270066,22412410 +g3766,14:12152180,22412410 +g3766,14:14567837,22412410 +g3766,14:15122926,22412410 +g3766,14:17902307,22412410 +g3766,14:19669157,22412410 +g3766,14:22249309,22412410 +k3766,15:28013858,22412410:4569172 +k3766,15:32583029,22412410:4569171 +) +(3766,16:6630773,23277490:25952256,513147,102891 +h3766,15:6630773,23277490:0,0,0 +g3766,15:8250823,23277490 +g3766,15:9101480,23277490 +g3766,15:11040035,23277490 +g3766,15:13952455,23277490 +g3766,15:14834569,23277490 +g3766,15:16567996,23277490 +g3766,15:17383263,23277490 +g3766,15:17938352,23277490 +g3766,15:19526944,23277490 +g3766,15:22103164,23277490 +k3766,16:27940785,23277490:4642244 +k3766,16:32583029,23277490:4642244 +) +(3766,17:6630773,24142570:25952256,513147,126483 +h3766,16:6630773,24142570:0,0,0 +g3766,16:8250823,24142570 +g3766,16:9101480,24142570 +g3766,16:11580051,24142570 +g3766,16:14273580,24142570 +g3766,16:16007007,24142570 +g3766,16:17773857,24142570 +g3766,16:18328946,24142570 +g3766,16:19917538,24142570 +g3766,16:22493758,24142570 +k3766,17:28136082,24142570:4446947 +k3766,17:32583029,24142570:4446947 +) +(3766,19:6630773,25007650:25952256,513147,134348 +h3766,17:6630773,25007650:0,0,0 +g3766,17:8250823,25007650 +g3766,17:9101480,25007650 +g3766,17:12868489,25007650 +g3766,17:15687847,25007650 +g3766,17:18728717,25007650 +g3766,17:20495567,25007650 +g3766,17:21050656,25007650 +g3766,17:22639248,25007650 +g3766,17:24714773,25007650 +g3766,17:25675530,25007650 +g3766,17:28268134,25007650 +k3766,19:31023270,25007650:1559759 +k3766,19:32583029,25007650:1559759 +) +(3766,20:6630773,25872730:25952256,513147,134348 +h3766,19:6630773,25872730:0,0,0 +g3766,19:8250823,25872730 +g3766,19:9101480,25872730 +g3766,19:12868489,25872730 +g3766,19:14224428,25872730 +g3766,19:16934997,25872730 +g3766,19:18701847,25872730 +g3766,19:19256936,25872730 +g3766,19:20845528,25872730 +g3766,19:22921053,25872730 +g3766,19:23881810,25872730 +g3766,19:26474414,25872730 +k3766,20:30126410,25872730:2456619 +k3766,20:32583029,25872730:2456619 +) +(3766,22:6630773,26737810:25952256,513147,115847 +h3766,20:6630773,26737810:0,0,0 +g3766,20:8250823,26737810 +g3766,20:9101480,26737810 +g3766,20:10492154,26737810 +g3766,20:11157344,26737810 +g3766,20:11712433,26737810 +g3766,20:13889539,26737810 +g3766,20:16790817,26737810 +g3766,20:17799416,26737810 +g3766,20:20009290,26737810 +g3766,20:21910489,26737810 +g3766,20:23552165,26737810 +(3766,20:23552165,26737810:0,414482,115847 +r1,23760:24262143,26737810:709978,530329,115847 +k3766,20:23552165,26737810:-709978 +) +(3766,20:23552165,26737810:709978,414482,115847 +k3766,20:23552165,26737810:3277 +h3766,20:24258866,26737810:0,411205,112570 +) +g3766,20:24461372,26737810 +g3766,20:25550580,26737810 +(3766,20:25550580,26737810:0,414482,115847 +r1,23760:26612269,26737810:1061689,530329,115847 +k3766,20:25550580,26737810:-1061689 +) +(3766,20:25550580,26737810:1061689,414482,115847 +k3766,20:25550580,26737810:3277 +h3766,20:26608992,26737810:0,411205,112570 +) +g3766,20:27018592,26737810 +g3766,20:29729161,26737810 +k3766,22:31554554,26737810:1028475 +k3766,22:32583029,26737810:1028475 +) +(3766,24:6630773,27602890:25952256,513147,115847 +h3766,22:6630773,27602890:0,0,0 +g3766,22:8250823,27602890 +g3766,22:9101480,27602890 +g3766,22:10492154,27602890 +g3766,22:11157344,27602890 +g3766,22:11712433,27602890 +g3766,22:13889539,27602890 +g3766,22:16790817,27602890 +g3766,22:18146756,27602890 +g3766,22:19028870,27602890 +g3766,22:20878296,27602890 +(3766,22:20878296,27602890:0,414482,115847 +r1,23760:21588274,27602890:709978,530329,115847 +k3766,22:20878296,27602890:-709978 +) +(3766,22:20878296,27602890:709978,414482,115847 +k3766,22:20878296,27602890:3277 +h3766,22:21584997,27602890:0,411205,112570 +) +g3766,22:21787503,27602890 +g3766,22:22876711,27602890 +(3766,22:22876711,27602890:0,414482,115847 +r1,23760:23938400,27602890:1061689,530329,115847 +k3766,22:22876711,27602890:-1061689 +) +(3766,22:22876711,27602890:1061689,414482,115847 +k3766,22:22876711,27602890:3277 +h3766,22:23935123,27602890:0,411205,112570 +) +g3766,22:24344723,27602890 +g3766,22:27055292,27602890 +k3766,24:30217620,27602890:2365410 +k3766,24:32583029,27602890:2365409 +) +(3766,25:6630773,28467970:25952256,505283,134348 +h3766,24:6630773,28467970:0,0,0 +g3766,24:8250823,28467970 +g3766,24:9101480,28467970 +g3766,24:10393194,28467970 +g3766,24:11363126,28467970 +g3766,24:14299794,28467970 +g3766,24:17579870,28467970 +k3766,25:25679138,28467970:6903891 +k3766,25:32583029,28467970:6903891 +) +] +(1,23760:32583029,45706769:0,0,0 +g1,23760:32583029,45706769 +) +) +] +(1,23760:6630773,47279633:25952256,485622,11795 +(1,23760:6630773,47279633:25952256,485622,11795 +k1,23760:19009213,47279633:12378440 +k1,23760:32583030,47279633:12378440 +) +) +] +(1,23760:4262630,4025873:0,0,0 +[1,23760:-473656,4025873:0,0,0 +(1,23760:-473656,-710413:0,0,0 +(1,23760:-473656,-710413:0,0,0 +g1,23760:-473656,-710413 +) +g1,23760:-473656,-710413 +) +] +) +h1,23760:4262630,4025873:0,0,0 ] !12644 -}458 -Input:3730:C:\Users\aphalo_2\Documents\Own_manuscripts\Books\learnr-book-crc\using-r-main-crc.aux +}440 +Input:3771:C:\Users\aphalo_2\Documents\Own_manuscripts\Books\learnr-book-crc\using-r-main-crc.aux !110 Postamble: -Count:422082 +Count:421645 !29 Post scriptum: diff --git a/using-r-main-crc.tex b/using-r-main-crc.tex index c01c0900..f5c8838d 100644 --- a/using-r-main-crc.tex +++ b/using-r-main-crc.tex @@ -26,13 +26,6 @@ \usepackage{imakeidx} -% this is to reduce spacing above and below verbatim, which is used by knitr -% to show returned values -\usepackage{etoolbox} -\makeatletter -\preto{\@verbatim}{\topsep=-5pt \partopsep=-5pt} -\makeatother - % for drawing flowcharts \usepackage{tikz} \usetikzlibrary{shapes.geometric,shapes.symbols,shapes.multipart,positioning,fit,arrows,matrix,backgrounds} @@ -167,7 +160,9 @@ \chapter*{Preface} Re-reading myself the book after some time allowed me to think of other improvements. I have updated the book accordingly making it more accessible to readers with no previous experience in computer programming. I have added diagrams and flowcharts to facilitate comprehension of common programming abstractions. I also edited the text from the first edition to fix all errors and outdated examples or explanations known to me. \section*{Acknowledgements} -I thank Jaakko Heinonen for introducing me to the then new \Rlang. Along the way many well known and not so famous experts have answered my questions in usenet and more recently in \stackoverflow. I wish to warmly thank members of my own research group, students participating in the courses I have taught, colleagues I have collaborated with, authors of the books I have read and people I have only met online or at conferences. All of them have made it possible for me to write this book. I am indebted to Tarja Lehto, Titta Kotilainen, Tautvydas Zalnierius, Fang Wang, Yan Yan, Neha Rai, Markus Laurel, Brett Cooper, Viivi Lindholm, colleagues, students and anonymous reviewers for many very helpful comments on the draft manuscript and/or the published first edition. Rob Calver, editor of both editions, provided encouragement with great patience, Lara Spieker, Vaishali Singh, Sherry Thomas, and Paul Boyd for their help with different aspects of this project. +I thank Jaakko Heinonen for introducing me to the then new \Rlang. Along the way many well known and not so famous experts have answered my questions in usenet and more recently in \stackoverflow. I wish to warmly thank members of my own research group, students participating in the courses I have taught, colleagues I have collaborated with, authors of the books I have read and people I have only met online or at conferences. All of them have made it possible for me to write this book. I am indebted to Tarja Lehto, Titta Kotilainen, Tautvydas Zalnierius, Fang Wang, Yan Yan, Neha Rai, Markus Laurel, Brett Cooper, Viivi Lindholm, colleagues, students and anonymous reviewers for many very helpful comments on the draft manuscript and/or the published first edition. Rob Calver, editor of both editions, provided encouragement with great patience, Shashi Kumar, Lara Spieker, Vaishali Singh, Sherry Thomas, and Paul Boyd for their help with different aspects of this project. + +I was able to work intensively for a few months on the writing of this 2nd edition thanks to a sabbatical granted by my employer, the Faculty of Biological and Environmental Sciences of the University of Helsinki, Finland. I thank Prof.\ Kurt Fagerstedt for his support. In many ways this text owes much more to people who are not authors than to myself. However, as I am the one who has written \emph{Learn R: As a Language} and decided what to include and exclude, I take full responsibility for any errors and inaccuracies. \\[1cm] @@ -288,10 +283,10 @@ \subsection{Call outs} \subsection{Code conventions and syntax highlighting} -Small sections of program code interspersed within the main text, receive the name of \emph{code chunks}. In this book \Rlang code chunks are typeset in a typewriter font, using colour to highlight the different elements of the syntax, such as variables, functions, constant values, etc. \Rlang code elements embedded in the text are similarly typeset but always black. For example in the code chunk below \code{mean()} and \code{print()} are functions; 1, 5 and 3 are constant numeric values, and \code{z} is the name of a variable where the result of the computation done in the first line of code is stored. The line starting with \code{\#\# } shows what is printed or shown when executing the second statement: \code{[1] 1}. In the book \code{\#\# } is used as a marker to signal output from \Rlang, it is not part of the output. +Small sections of program code interspersed within the main text, receive the name of \emph{code chunks}. In this book \Rlang code chunks are typeset in a typewriter font, using colour to highlight the different elements of the syntax, such as variables, functions, constant values, etc. \Rlang code elements embedded in the text are similarly typeset but always black. For example in the code chunk below \code{mean()} and \code{print()} are functions; 1, 5 and 3 are constant numeric values, and \code{z} is the name of a variable where the result of the computation done in the first line of code is stored. The line starting with \code{\#\#} shows what is printed or shown when executing the second statement: \code{[1] 1}. In the book \code{\#\#} is used as a marker to signal output from \Rlang, it is not part of the output. As \code{\#} is the marker for comments in the \Rlang language, prepending \code{\#} to the output makes it possible to copy and pasted into the \Rlang console the whole contents of the code chunks as they appear in the book. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{z} \hlkwb{<-} \hlkwd{mean}\hlstd{(}\hlnum{1}\hlstd{,} \hlnum{5}\hlstd{,} \hlnum{3}\hlstd{)} \hlkwd{print}\hlstd{(z)} @@ -302,9 +297,9 @@ \subsection{Code conventions and syntax highlighting} \end{kframe} \end{knitrout} -When naming objects (or variables) when explaining general concepts I use short abstract names, while for real-life examples I use meaningful names. Although not required, for clarity, I use names hinting at the structure of objects stored, such as \code{mat1} for a matrix. +When explaining general concepts I use short abstract names, while for real-life examples I use descriptive names. Although not required, for clarity, I use abstract names that hint at the structure of objects stored, such as \code{mat1} for a matrix or \code{vct4} for a vector. -Code in playgrounds does not modify objects created by code examples listed outside playgrounds, and is self-contained in the sense that if earlier code is use, this is mentioned in the text of the playground. The code outside playgrounds does reuse objects created earlier in the same chapter, but is independent from code or data used in earlier chapters. +Code in playgrounds either works in isolation or if it depends on objects created in the examples in the main text, this is mentioned within the playground. In playgrounds I use names in capital letters so that they are distinct. The code outside playgrounds does reuse objects created earlier in the same section, and occasionally in earlier sections of the same chapter. \subsection{Diagrams} @@ -542,7 +537,7 @@ \subsection{Using \Rlang interactively} \end{infobox} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{help}\hlstd{(}\hlstr{"sum"}\hlstd{)} \hlopt{?}\hlstd{sum} @@ -554,7 +549,7 @@ \subsection{Using \Rlang interactively} Look at help for some other functions like \code{mean()}, \code{var()}, \code{plot()} and, why not, \Rfunction{help()} itself! \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{help}\hlstd{(help)} \end{alltt} @@ -684,8 +679,6 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} Both in mathematics and programming languages \emph{operator precedence rules} determine which subexpressions are evaluated first and which later. Contrary to primitive electronic calculators, \Rlang evaluates numeric expressions containing operators according to the rules of mathematics. In the expression $1 + 2 \times 3$, the product $2 \times 3$ has precedence over the addition, and is evaluated first, yielding as the result of the whole expression, 7. Similar rules apply to other operators, even those taking as operands non-numeric values. \end{explainbox} -It is important to keep in mind that in \Rlang trigonometric functions interpret numeric values representing angles as being expressed in radians. - The equivalent of the math expression\qRfunction{exp()}\qRfunction{cos()}\qRconst{pi} $$ \frac{3 + e^2}{\cos \pi} @@ -693,7 +686,7 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} is, in \Rlang, written as follows: \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{(}\hlnum{3} \hlopt{+} \hlkwd{exp}\hlstd{(}\hlnum{2}\hlstd{))} \hlopt{/} \hlkwd{cos}\hlstd{(pi)} \end{alltt} @@ -703,12 +696,29 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} \end{kframe} \end{knitrout} -It can be seen above that mathematical constants and functions are part of the \Rlang language. One thing to remember when translating complex fractions as above into \Rlang code, is that in arithmetic expressions the bar of the fraction generates a grouping that alters the normal precedence of operations. In contrast, in an \Rlang expression this grouping must be explicitly signaled with additional parentheses. +Where constant \Rconst{pi} ($\pi = 3.1415\ldots$) and function \Rfunction{cos()} (cosine) are defined in base \Rlang. Many trigonometric and mathematical functions are available in addition to operators like \verb|+|, \verb|-|, \verb|*|, \verb|/|, and \verb|^|. + +\begin{warningbox} + In \Rlang angles are expressed in radians, thus $\cos(\pi) = 1$ and $\sin(\pi) = 0$, according to trigonometry. Degrees can be converted into radians taking into account that the circle corresponds to $2 \times \pi$ when expressed in radians and to $360^\circ$ when expressed in degrees. Thus the cosine of an agle of $45^\circ$ can be computed as follows. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{sin}\hlstd{(}\hlnum{45}\hlopt{/}\hlnum{180} \hlopt{*} \hlstd{pi)} +\end{alltt} +\begin{verbatim} +## [1] 0.7071068 +\end{verbatim} +\end{kframe} +\end{knitrout} +\end{warningbox} + +One thing to remember when translating fractions into \Rlang code is that in arithmetic expressions the bar of the fraction generates a grouping that alters the normal precedence of operations. In contrast, in an \Rlang expression this grouping must be explicitly signaled with additional parentheses. If you are in doubt about how precedence rules work, you can add parentheses to make sure the order of computations is the one you intend. Redundant parentheses have no effect. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlnum{1} \hlopt{+} \hlnum{2} \hlopt{*} \hlnum{3} \end{alltt} @@ -733,10 +743,10 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} The number of opening (left side) and closing (right side) parentheses must be balanced, and they must be located so that each enclosed term is a valid mathematical expression, i.e., code that can be evaluated to return a value, a value that can be inserted in place of the expression enclosed in parenthesis before evaluating the remaining of the expression. For example, \code{(1 + 2) * 3} after evaluating \code{(1 + 2)} becomes \code{3 * 3} yielding \code{9}. In contrast, \code{(1 +) 2 * 3} is a syntax error as \code{1 +} is incomplete and does not yield a number. \begin{playground} -In \emph{playgrounds} the output from running the code in \Rpgrm are not shown, as these are exercises for you to enter at the \Rpgrm console and run. In general you should not skip them, as in many cases, as with the statements highlighted with comments in the code chunk below, they have something to teach or demonstrate. You are strongly encouraged to \emph{play}, in other words, create new variations of the examples and execute them to explore how \Rlang works.\qRfunction{sqrt()}\qRfunction{sin()}\qRfunction{log()}\qRfunction{log10()}\qRfunction{log2()}\qRfunction{exp()} +In \emph{playgrounds} the output from running the code in \Rpgrm are not shown, as these are exercises for you to enter at the \Rpgrm console and run. In general you should not skip them as in most cases playgrounds aim to teach or demonstrate concepts or features that I have \emph{not} included in full-detail in the main text. You are strongly encouraged to \emph{play}, in other words, create new variations of the examples and execute them to explore how \Rlang works.\qRfunction{sqrt()}\qRfunction{sin()}\qRfunction{log()}\qRfunction{log10()}\qRfunction{log2()}\qRfunction{exp()} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlnum{1} \hlopt{+} \hlnum{1} \hlnum{2} \hlopt{*} \hlnum{2} @@ -748,13 +758,10 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} \end{kframe} \end{knitrout} -Base \Rlang has \Rconst{pi} ($\pi = 3.1415\ldots$) predefined. In \Rlang angles are expressed in radians, thus $\sin(\pi) = 0$ according to trigonometry. - \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlstd{pi} \hlcom{# 15 digits shown when printing} -\hlkwd{print}\hlstd{(pi,} \hlkwc{digits} \hlstd{=} \hlnum{15}\hlstd{)} +\hlstd{pi} \hlkwd{sin}\hlstd{(pi)} \hlkwd{log}\hlstd{(}\hlnum{100}\hlstd{)} \hlkwd{log10}\hlstd{(}\hlnum{100}\hlstd{)} @@ -766,10 +773,12 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} \end{playground} -Variables\index{variables}\index{assignment} are used to store values. After we \emph{assign} a value to a variable, we can use in our code the name of the variable in place of the stored value. The ``usual'' assignment operator is \Roperator{<-}. In \Rlang, all names, including variable names, are case sensitive. Variables \code{a} and \code{A} are two different variables. Variable names can be long in \Rlang although it is not a good idea to use very long names. Here I am using very short names, something that is usually also a very bad idea. However, in the examples in this chapter where the stored values have no connection to the real world, simple names emphasize their abstract nature. In the chunk below, \code{vct1} and \code{vct2} are arbitrarily chosen variable names; I should have used names like \code{height.cm} or \code{outside.temperature.C} if they had been useful to convey information. As a guide to readers, I end these names with \code{.vec} to remind readers that the objects stored in these variables are vectors. +Variables\index{variables}\index{assignment} are used to store values. After we \emph{assign} a value to a variable, we can use in our code the name of the variable in place of the stored value. The ``usual'' assignment operator is \Roperator{<-}. In \Rlang, all names, including variable names, are case sensitive. Variables \code{a} and \code{A} are two different variables. Variable names can be long in \Rlang although it is not a good idea to use very long names. Here I am using very short names, something that is usually also a very bad idea. However, in the examples in this chapter where the stored values have no connection to the real world, simple names emphasize their abstract nature. In the chunk below, \code{vct1} and \code{vct2} are arbitrarily chosen variable names; I should have used names like \code{height.cm} or \code{outside.temperature.C} if they had been useful to convey information. + +In the book, I use variable names that help recognize the kind of object stored, as this is most relevant when learning \Rlang. Here I use \code{vct1} because in \Rlang, as we will see in page \pageref{par:numeric:vectors:start}, numeric objects are always vectors, even when of length one. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct1} \hlkwb{<-} \hlnum{1} \hlstd{vct1} \hlopt{+} \hlnum{1} @@ -797,7 +806,7 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} Entering the name of a variable \emph{at the R console} implicitly calls function \code{print()} displaying the stored value on the console. The same applies to any other statement entered \emph{at the R console}: \code{print()} is implicitly called with the result of executing the statement as its argument. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct1} \end{alltt} @@ -828,7 +837,7 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} There are some syntactically legal assignment statements that are not very frequently used, but you should be aware that they are valid, as they will not trigger error messages, and may surprise you. The most important thing is to write code consistently. The ``backwards'' assignment operator \Roperator{->} and resulting code like \code{1 -> vct1}\index{assignment!leftwise} are valid but less frequently used. The use of the equals sign (\Roperator{=}) for assignment in place of \Roperator{<-} although valid is discouraged. Chaining\index{assignment!chaining} assignments as in the first statement below can be used to signal to the human reader that \code{vct1}, \code{vct2} and \code{vct3} are being assigned the same value. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{VCT1} \hlkwb{<-} \hlstd{VCT2} \hlkwb{<-} \hlstd{VCT3} \hlkwb{<-} \hlnum{0} \hlstd{VCT1} @@ -849,7 +858,7 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} In\index{numeric, integer and double values} \Rlang, all numbers belong to mode \Rclass{numeric} (we will discuss the concepts of \emph{mode} and \emph{class} in section \ref{sec:rlang:mode} on page \pageref{sec:rlang:mode}). We can query if the mode of an object is \Rclass{numeric} with function \Rfunction{is.numeric()}. The returned values are either TRUE or FALSE. These are logical values that will be discussed in section \ref{sec:calc:boolean} on page \pageref{sec:calc:boolean}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{mode}\hlstd{(}\hlnum{1}\hlstd{)} \end{alltt} @@ -869,7 +878,7 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} Because numbers can be stored in different formats, most computing languages implement several different types of numbers. In most cases \Rpgrm's \Rfunction{numeric()} values can be used everywhere that a number is expected. However, in some cases it has advantages to explicitly indicate that we will store or operate on whole numbers, in which case we can use class \Rclass{integer}, with integer constants indicated by a trailing capital ``L,'' as in \code{32L}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{is.numeric}\hlstd{(}\hlnum{1L}\hlstd{)} \end{alltt} @@ -894,7 +903,7 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} Real numbers are a mathematical abstraction, and do not have an exact equivalent in computers. Instead of Real numbers, computers store and operate on numbers that are restricted to a broad but finite range of values and have a finite resolution. They are called, \emph{floats} (or \emph{floating-point} numbers); in \Rlang they go by the name of \Rclass{double} and can be created with the constructor \Rfunction{double()}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{is.numeric}\hlstd{(}\hlnum{1}\hlstd{)} \end{alltt} @@ -919,7 +928,7 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} \end{explainbox} \index{vectors!introduction|(}\label{par:calc:vectors:diag} -\Rlang's vectors\label{par:numeric:vectors:start} are one-dimensional, of varying length and used to store similar values, e.g., numbers. They are different to the vectors, commonly used in Physics when describing directional forces, which are symbolized with an arrow as an ``accent,'' such as $\overrightarrow{\mathbf{F}}$. In \Rlang numeric values and other atomic values are always \Rclass{vector}s that can contain zero, one or more elements. The diagram below exemplifies a vector containing ten elements, also called members. These elements can be extracted using integer numbers as positional indices, and manipulated as described in more detail in section \ref{sec:calc:factors} on page \pageref{sec:calc:factors}.\vspace{1ex} +Vectors\label{par:numeric:vectors:start} are one-dimensional in structure, of varying length and used to store similar values, e.g., numbers. They are different to the vectors, commonly used in Physics when describing directional forces, which are symbolized with an arrow as an ``accent,'' such as $\overrightarrow{\mathbf{F}}$. In \Rlang numeric values and other atomic values are always \Rclass{vector}s that can contain zero, one or more elements. The diagram below exemplifies a vector containing ten elements, also called members. These elements can be extracted using integer numbers as positional indices, and manipulated as described in more detail in section \ref{sec:calc:indexing} on page \pageref{sec:calc:indexing}.\vspace{1ex} \begin{center} \begin{footnotesize} @@ -959,7 +968,7 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} One\label{par:calc:concatenate} can use function \Rfunction{c()} ``concatenate'' to create a vector from other vectors, including vectors of length 1, or even vectors of length 0, such as the \code{numeric} constants in the statements below. The first example shows an anonymous vector created, printed, and then automatically discarded. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{c}\hlstd{(}\hlnum{3}\hlstd{,} \hlnum{1}\hlstd{,} \hlnum{2}\hlstd{)} \end{alltt} @@ -969,10 +978,10 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} \end{kframe} \end{knitrout} -To be able to reuse the vector, we assign it to a variable, giving a name to it. The length of a vector can be queried with function \Rfunction{length()}. We show below \Rlang code followed by a diagram depicting the vector created. +To be able to reuse the vector, we assign it to a variable, giving a name to it. The length of a vector can be queried with function \Rfunction{length()}. We show below \Rlang code followed by diagrams depicting the structure of the vectors created. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct4} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlnum{3}\hlstd{,} \hlnum{1}\hlstd{,} \hlnum{2}\hlstd{)} \hlkwd{length}\hlstd{(vct4)} @@ -989,7 +998,8 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} \end{kframe} \end{knitrout} -\begin{center} +%\begin{center} +\noindent \begin{footnotesize} \begin{tikzpicture}[font=\sffamily, array/.style={matrix of nodes,nodes={draw, minimum size=7mm, fill=blue!20},column sep=-\pgflinewidth, row sep=0.5mm, nodes in empty cells, @@ -1010,10 +1020,10 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} % \end{tikzpicture} \end{footnotesize} -\end{center} +%\end{center} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct5} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlnum{4}\hlstd{,} \hlnum{5}\hlstd{,} \hlnum{0}\hlstd{)} \hlstd{vct5} @@ -1024,7 +1034,8 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} \end{kframe} \end{knitrout} -\begin{center} +\noindent +%\begin{center} \begin{footnotesize} \begin{tikzpicture}[font=\sffamily, array/.style={matrix of nodes,nodes={draw, minimum size=7mm, fill=blue!20},column sep=-\pgflinewidth, row sep=0.5mm, nodes in empty cells, @@ -1045,17 +1056,22 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} % \end{tikzpicture} \end{footnotesize} -\end{center} +%\end{center} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct6} \hlkwb{<-} \hlkwd{c}\hlstd{(vct4, vct5)} +\hlstd{vct6} \end{alltt} +\begin{verbatim} +## [1] 3 1 2 4 5 0 +\end{verbatim} \end{kframe} \end{knitrout} -\begin{center} +\noindent +%\begin{center} \begin{footnotesize} \begin{tikzpicture}[font=\sffamily, array/.style={matrix of nodes,nodes={draw, minimum size=7mm, fill=blue!20},column sep=-\pgflinewidth, row sep=0.5mm, nodes in empty cells, @@ -1076,10 +1092,10 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} % \end{tikzpicture} \end{footnotesize} -\end{center} +%\end{center} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct7} \hlkwb{<-} \hlkwd{c}\hlstd{(vct5, vct4)} \hlstd{vct7} @@ -1090,7 +1106,8 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} \end{kframe} \end{knitrout} -\begin{center} +\noindent +%\begin{center} \begin{footnotesize} \begin{tikzpicture}[font=\sffamily, array/.style={matrix of nodes,nodes={draw, minimum size=7mm, fill=blue!20},column sep=-\pgflinewidth, row sep=0.5mm, nodes in empty cells, @@ -1111,12 +1128,12 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} % \end{tikzpicture} \end{footnotesize} -\end{center} +%\end{center} -Here I\bigsqcup\bigsqcup show concatenation with a vector of the same class but with length zero. +Next I show concatenation with a vector of the same class with length zero. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{c}\hlstd{(vct7,} \hlkwd{numeric}\hlstd{())} \end{alltt} @@ -1129,7 +1146,7 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} Function \code{c()} accepts as arguments two or more vectors and concatenates them, one after another. Quite frequently we may need to insert one vector in the middle of another. For this operation, \code{c()} is not useful by itself. One could use indexing combined with \code{c()}, but this is not needed as \Rlang provides a function capable of directly doing this operation. Although it can be used to ``insert'' values, it is named \code{append()}, and by default, it indeed appends one vector at the end of another. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{append}\hlstd{(vct4, vct5)} \end{alltt} @@ -1142,7 +1159,7 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} The output above is the same as for \code{c(a, b)}, however, \Rfunction{append()} accepts as an argument an index position after which to ``append'' its second argument. This results in an \emph{insert} operation when the index points at any position different from the end of the vector.\label{par:calc:append:end} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{append}\hlstd{(vct4,} \hlkwc{values} \hlstd{= vct5,} \hlkwc{after} \hlstd{=} \hlnum{2}\hlstd{)} \end{alltt} @@ -1156,7 +1173,7 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} One can create sequences\index{sequence} using function \Rfunction{seq()} or the operator \Roperator{:}, or repeat values using function \Rfunction{rep()}. In this case, I leave to the reader to work out the rules by running these and his/her own examples, with the help of the documentation, available through \code{help(seq)} and \code{help(rep)}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlopt{-}\hlnum{1}\hlopt{:}\hlnum{5} \hlnum{5}\hlopt{:-}\hlnum{1} @@ -1171,7 +1188,7 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} Next,\label{par:calc:vectorized:opers} something that makes \Rlang different from most other programming languages: vectorized arithmetic\index{vectorized arithmetic}. Operators and functions that are vectorized accept, as arguments, vectors of arbitrary length, in which case the result returned is equivalent to having applied the same function or operator individually to each element of the vector.\label{par:vectorized:numeric} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct4} \hlopt{+} \hlnum{1} \hlcom{# we add one to vector a defined above} \end{alltt} @@ -1204,7 +1221,7 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} Make sure you understand what calculations are taking place in the chunk above, and also the one below. Vector recycling is a key feature of the \Rlang language. See the box on page \pageref{box:floats} for an in-depth explanation of vector recycling. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct8} \hlkwb{<-} \hlkwd{rep}\hlstd{(}\hlnum{1}\hlstd{,} \hlnum{6}\hlstd{)} \hlstd{vct8} @@ -1247,7 +1264,7 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} As mentioned above, a vector can have a length of zero or more member values. Vectors of length zero may seem at first sight quite useless, but in fact they are very useful. They allow the handling of ``no input'' or ``nothing to do'' cases as normal cases, which in the absence of vectors of length zero would require to be treated as special cases. Constructors for \Rlang classes like \Rfunction{numeric()} return vectors of a length given by their first argument, which defaults to zero. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct9} \hlkwb{<-} \hlkwd{numeric}\hlstd{(}\hlkwc{length} \hlstd{=} \hlnum{0}\hlstd{)} \hlcom{# named argument} \hlstd{vct9} @@ -1265,7 +1282,7 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{numeric}\hlstd{()} \hlcom{# default argument} \end{alltt} @@ -1278,7 +1295,7 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} Vectors of length zero, behave in most cases, as expected---e.g., they can be concatenated as shown here. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{length}\hlstd{(}\hlkwd{c}\hlstd{(vct4, vct9, vct5))} \end{alltt} @@ -1297,7 +1314,7 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} Many functions, such as \Rlang's maths functions and operators, will accept numeric vectors of length zero as valid input, returning also a vector of length zero, issuing neither a warning nor an error message. In other words, \emph{these are valid operations} in \Rlang. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{log}\hlstd{(}\hlkwd{numeric}\hlstd{(}\hlnum{0}\hlstd{))} \end{alltt} @@ -1318,7 +1335,7 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} Passing as argument to parameter \code{length} a value larger than zero creates a longer vector filled with zeros in the case of \Rfunction{numeric()}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{numeric}\hlstd{(}\hlkwc{length} \hlstd{=} \hlnum{5}\hlstd{)} \end{alltt} @@ -1331,7 +1348,7 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} The length of a vector can be explicitly increased, with missing values filled automatically with \code{NA}, the marker for not available. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct10} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{5} \hlkwd{length}\hlstd{(vct10)} \hlkwb{<-} \hlnum{10} @@ -1346,7 +1363,7 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} If the length is decreased, the values in the \emph{tail} of the vector are discarded. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct11} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{10} \hlstd{vct11} @@ -1370,7 +1387,7 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} There\index{special values!NA} are some special values available for numbers. \Rconst{NA} meaning ``not available'' is used for missing values. (\Rconst{NA}) values play a very important role in the analysis of data, as frequently some observations are missing from an otherwise complete data set due to ``accidents'' during the course of an experiment or survey. It is important to understand how to interpret \Rconst{NA} values: They are placeholders for something that is unavailable, in other words, whose value is \emph{unknown}. \Rconst{NA} values propagate when used, so that numerical computations yield \Rconst{NA} when one or more input of the values is unknown. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct12} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlnum{NA}\hlstd{,} \hlnum{5}\hlstd{)} \hlstd{vct12} @@ -1390,7 +1407,7 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} Calculations\index{special values!NaN}\label{par:special:values} can also yield the following values \Rconst{NaN} ``not a number'', \Rconst{Inf} and \Rconst{-Inf} for $\infty$ and $-\infty$. As you will see below, calculations yielding these values do \textbf{not} trigger errors or warnings, as they are arithmetically valid. \Rconst{Inf} and \Rconst{-Inf} are also valid numerical values for input and constants. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct12} \hlopt{+} \hlnum{Inf} \end{alltt} @@ -1440,7 +1457,7 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} \textbf{When to use vectors of length zero, and when \code{NA}s?}\index{zero length objects}\index{vectors!zero length} Make sure you understand the logic behind the different behavior of functions and operators with respect to \code{NA} and \code{numeric()} or its equivalent \code{numeric(0)}. What do they represent? Why \Rconst{NA}s are not ignored, while vectors of length zero are? \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlnum{123} \hlopt{+} \hlkwd{numeric}\hlstd{()} \hlnum{123} \hlopt{+} \hlnum{NA} @@ -1456,7 +1473,7 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} Any operation, even tests of equality, involving one or more \Rconst{NA}'s return an \Rconst{NA}. In other words, when one input to a calculation is unknown, the result of the calculation is unknown. This means that a special function is needed for testing for the presence of \code{NA} values. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{is.na}\hlstd{(}\hlkwd{c}\hlstd{(}\hlnum{NA}\hlstd{,} \hlnum{1}\hlstd{))} \end{alltt} @@ -1471,7 +1488,7 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} One thing\index{precision!math operations}\index{numbers!floating point} to be aware of are the consequences of the fact that numbers in computers are almost always stored with finite precision and/or range: the expectations derived from the mathematical definition of Real numbers are not always fulfilled. See the box on page \pageref{box:floats} for an in-depth explanation. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlnum{1} \hlopt{-} \hlnum{1e-20} \end{alltt} @@ -1484,7 +1501,7 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} When using \Rclass{integer}\index{numbers!whole}\index{numbers!integer} values these problems do not exist, as integer arithmetic is not affected by loss of precision in calculations restricted to integers. Because of the way integers are stored in the memory of computers, within the representable range, they are stored exactly. One can think of computer integers as a subset of whole numbers restricted to a certain range of values. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlnum{1L} \hlopt{+} \hlnum{3L} \end{alltt} @@ -1503,7 +1520,7 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} Using the ``usual'' division operator yields a floating-point \code{double} result, while the integer division operator \Roperator{\%/\%} yields an \code{integer} result, and the modulo operator \Roperator{\%\%} returns the remainder from the integer division. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlnum{1L} \hlopt{/} \hlnum{3L} \end{alltt} @@ -1528,7 +1545,7 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} If as a result of an operation the result falls outside the range of representable values, the returned value is \code{NA}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlnum{1000000L} \hlopt{*} \hlnum{1000000L} \end{alltt} @@ -1540,10 +1557,10 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} \end{kframe} \end{knitrout} -Both doubles and integers are considered numeric. In most situations, conversion is automatic and we do not need to worry about the differences between these two types of numeric values. These functions return \code{logical} values (see section \ref{sec:calc:boolean} on page \pageref{sec:calc:boolean}).\index{numbers!double}\index{numbers!integer} +Both doubles and integers are considered numeric. In most situations, conversion is automatic and we do not need to worry about the differences between these two types of numeric values. The functions in the next chunk return \code{TRUE} or \code{FALSE}, i.e., \code{logical} values (see section \ref{sec:calc:boolean} on page \pageref{sec:calc:boolean}).\index{numbers!double}\index{numbers!integer} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{is.numeric}\hlstd{(}\hlnum{1L}\hlstd{)} \end{alltt} @@ -1581,7 +1598,7 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} Study the variations of the previous example shown below, and explain why the two statements return different values. Hint: 1 is a \code{double} constant. You can use \code{is.integer()} and \code{is.double()} in your explorations. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlnum{1} \hlopt{*} \hlnum{1000000L} \hlopt{*} \hlnum{1000000L} \hlnum{1000000L} \hlopt{*} \hlnum{1000000L} \hlopt{*} \hlnum{1} @@ -1604,7 +1621,7 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlnum{1e20} \hlopt{==} \hlnum{1} \hlopt{+} \hlnum{1e20} \end{alltt} @@ -1629,7 +1646,7 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} Another way of revealing the limited precision is during conversion to \code{character}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{format}\hlstd{(}\hlnum{5.123}\hlstd{,} \hlkwc{digits} \hlstd{=} \hlnum{16}\hlstd{)} \hlcom{# near maximun resolution} \end{alltt} @@ -1650,7 +1667,7 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} As the \Rpgrm program can be used on different types of computer hardware, the actual machine limits for storing numbers in memory may vary depending on the type of processor and even the compiler used to build the \Rpgrm program executable. However, it is possible to obtain these values at run time, i.e., while the \Rpgrm is being used, from the variable \code{.Machine}, which is part of the \Rlang language. Please see the help page for \code{.Machine} for a detailed and up-to-date description of the available constants. \emph{Beware that when you run the examples below, the values returned by \Rlang in your own computer can differ from those returned in the computer I have used to typeset the book as you are reading it here.}\qRconst{.Machine\$double.eps}\qRconst{.Machine\$double.neg.eps}\qRconst{.Machine\$double.max} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{.Machine}\hlopt{$}\hlstd{double.eps} \end{alltt} @@ -1687,7 +1704,7 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} The last two values refer to the exponents of a base number or \emph{radix}, 2, rather than the maximum and minimum size of numbers that can be handled as objects of class \Rclass{double}. The maximum size of normalized \code{double} values, given by \code{.Machine\$double.xmax}, is much larger than the maximum value of \code{integer} values, given by \code{.Machine\$integer.max}.\qRconst{.Machine\$double.min}\qRconst{.Machine\$double.xmax}\qRconst{.Machine\$integer.max} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{.Machine}\hlopt{$}\hlstd{double.xmax} \end{alltt} @@ -1707,7 +1724,7 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} In \Rlang not all out-of-range \code{numeric} values behave in the same way: while off-range \code{double} values are stored as \Rconst{-Inf} or \Rconst{Inf} and enter arithmetic as infinite values according the mathematical rules, off-range \code{integer} values become \code{NA} with a warning. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlnum{1e1026} \end{alltt} @@ -1724,7 +1741,7 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlnum{2147483699L} \end{alltt} @@ -1737,7 +1754,7 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} In those statements in the chunk below where at least one operand is \Rclass{double} the \Rclass{integer} operands are \emph{promoted} to \Rclass{double} before computation. A similar promotion does not take place when operations are among \Rclass{integer} values, resulting in \emph{overflow}\index{arithmetic overflow}\index{overflow|see{arithmetic overflow}}, meaning numbers that are too big to be represented as \Rclass{integer} values. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlnum{2147483600L} \hlopt{+} \hlnum{99L} \end{alltt} @@ -1772,7 +1789,7 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} The exponentiation operator \Roperator{\^{}} forces the promotion\index{type promotion}\index{arithmetic overflow!type promotion} of its arguments to \Rclass{double}, resulting in no overflow. In contrast, as seen above, the multiplication operator \Roperator{*} operates on \code{integer} values resulting in overflow. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlnum{2147483600L} \hlopt{*} \hlnum{2147483600L} \end{alltt} @@ -1794,10 +1811,10 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} \index{floating point numbers!arithmetic|)}\index{machine arithmetic!precision|)} \end{explainbox} -Both for display or as part of computations, we may want to decrease the number of significant digits or the number of digits after the decimal marker. Be aware that in the examples below, even if printing is being done by default, these functions return \code{numeric} values that are different from their input and can be stored and used in computations. Function \Rfunction{round()} is used to round numbers to a certain number of decimal places after or before the decimal marker, with a positive or negative value for \code{digits}, respectively. In contrast, function \Rfunction{signif()} rounds to the requested number of significant digits, i.e., ignoring the position of the decimal marker. +Both\label{par:calc:round} for display or as part of computations, we may want to decrease the number of significant digits or the number of digits after the decimal marker. Be aware that in the examples below, even if printing is being done by default, these functions return \code{numeric} values that are different from their input and can be stored and used in computations. Function \Rfunction{round()} is used to round numbers to a certain number of decimal places after or before the decimal marker, with a positive or negative value for \code{digits}, respectively. In contrast, function \Rfunction{signif()} rounds to the requested number of significant digits, i.e., ignoring the position of the decimal marker. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{round}\hlstd{(}\hlnum{0.0124567}\hlstd{,} \hlkwc{digits} \hlstd{=} \hlnum{3}\hlstd{)} \end{alltt} @@ -1811,23 +1828,28 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} ## [1] 0.0125 \end{verbatim} \begin{alltt} -\hlkwd{round}\hlstd{(}\hlnum{1789.1234}\hlstd{,} \hlkwc{digits} \hlstd{=} \hlnum{3}\hlstd{)} +\hlkwd{round}\hlstd{(}\hlnum{1789.1234}\hlstd{,} \hlkwc{digits} \hlstd{=} \hlopt{-}\hlnum{1}\hlstd{)} \end{alltt} \begin{verbatim} -## [1] 1789.123 +## [1] 1790 \end{verbatim} \begin{alltt} -\hlkwd{signif}\hlstd{(}\hlnum{1789.1234}\hlstd{,} \hlkwc{digits} \hlstd{=} \hlnum{3}\hlstd{)} +\hlkwd{round}\hlstd{(}\hlnum{1789.1234}\hlstd{,} \hlkwc{digits} \hlstd{=} \hlnum{3}\hlstd{)} \end{alltt} \begin{verbatim} -## [1] 1790 +## [1] 1789.123 \end{verbatim} \begin{alltt} -\hlkwd{round}\hlstd{(}\hlnum{1789.1234}\hlstd{,} \hlkwc{digits} \hlstd{=} \hlopt{-}\hlnum{1}\hlstd{)} +\hlkwd{signif}\hlstd{(}\hlnum{1789.1234}\hlstd{,} \hlkwc{digits} \hlstd{=} \hlnum{3}\hlstd{)} \end{alltt} \begin{verbatim} ## [1] 1790 \end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct13} \hlkwb{<-} \hlnum{0.12345} \hlstd{vct14} \hlkwb{<-} \hlkwd{round}\hlstd{(vct13,} \hlkwc{digits} \hlstd{=} \hlnum{2}\hlstd{)} @@ -1859,7 +1881,7 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} Being \code{digits}, the second parameter, its argument can also be passed by position. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{round}\hlstd{(}\hlnum{0.0124567}\hlstd{,} \hlkwc{digits} \hlstd{=} \hlnum{3}\hlstd{)} \end{alltt} @@ -1887,12 +1909,42 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} \end{itemize} \end{playground} +\begin{explainbox} + \Rlang supports complex numbers and arithmetic operations with class \Rclass{complex}. As complex numbers rarely appear in user-written scripts I give only one example of their use. Complex numbers as defined in mathematics, have two parts, a real component and an imaginary one. Complex numbers can be used, for example, to describe the result of $\sqrt{-1} = 1i$. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{cmp1} \hlkwb{<-} \hlkwd{complex}\hlstd{(}\hlkwc{real} \hlstd{=} \hlkwd{c}\hlstd{(}\hlopt{-}\hlnum{1}\hlstd{,} \hlnum{1}\hlstd{),} \hlkwc{imaginary} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{0}\hlstd{,} \hlnum{0}\hlstd{))} +\hlstd{cmp1} +\end{alltt} +\begin{verbatim} +## [1] -1+0i 1+0i +\end{verbatim} +\begin{alltt} +\hlstd{cmp2} \hlkwb{<-} \hlkwd{sqrt}\hlstd{(cmp1)} +\hlstd{cmp2} +\end{alltt} +\begin{verbatim} +## [1] 0+1i 1+0i +\end{verbatim} +\begin{alltt} +\hlstd{cmp2}\hlopt{^}\hlnum{2} +\end{alltt} +\begin{verbatim} +## [1] -1+0i 1+0i +\end{verbatim} +\end{kframe} +\end{knitrout} + +\end{explainbox} + \index{classes and modes!numeric, integer, double|)}\index{numbers and their arithmetic|)} It\index{removing objects}\index{deleting objects|see {removing objects}} is possible to \emph{remove} named objects (or variables) from the workspace with \Rfunction{remove()}. Function \Rfunction{objects()} returns a \code{character} vector containing the names of all objects visible in the current environment, or by supplying a \code{pattern} argument, only the objects with names matching the \code{pattern}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{any.object} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{4} \hlkwd{objects}\hlstd{(}\hlkwc{pattern} \hlstd{=} \hlstr{"*.object"}\hlstd{)} @@ -1926,7 +1978,7 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} Using a simple pattern we obtain the names of all objects with names \code{"vct1"}, \code{"vct2"}, and so on. When using a pattern to remove objects, it is good to first use \Rfunction{objects()} on its own to get a list of the objects that would be deleted by calling \Rfunction{remove()} passing the names returned by \Rfunction{objects()} as argument for parameter \code{list}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{objects}\hlstd{(}\hlkwc{pattern} \hlstd{=} \hlstr{"^vec.*"}\hlstd{)} \end{alltt} @@ -1939,7 +1991,7 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} The code below removes all objects with names \code{"vct1"}, \code{"vct2"}, and so on. We do this at the end of the section before reusing the same names in the code examples of the next section. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{remove}\hlstd{(}\hlkwc{list} \hlstd{=} \hlkwd{objects}\hlstd{(}\hlkwc{pattern} \hlstd{=} \hlstr{"^vct[[:digit:]]?"}\hlstd{))} \end{alltt} @@ -1947,12 +1999,16 @@ \section{Numeric values and arithmetic}\label{sec:calc:numeric} \end{knitrout} \end{explainbox} +\begin{warningbox} + Instants in time and periods of time in computers are usually encoded as classes derived from \code{integer}, and thus considered in \Rlang as atomic classes and the objects vectors. Some of these encodings are standardized and supported by \Rlang classes \Rclass{POSIXlt} and \Rclass{POSIXct}. The computations based on times and dates are difficult because the relationship between local time at a given location and Universal Time Coordinates (UTC) has changed in time, as well as with changes in national borders. Packages \pkgname{lubridate} and \pkgname{anytime} support operations among time-related data and conversions between character strings and time and date classes easier and less error prone than when using base \Rlang functions. Thus I describe classes and operations related to dates and times in chapter \ref{chap:R:data} on page \pageref{chap:R:data}. +\end{warningbox} + \section{Character values}\label{sec:calc:character} \index{character strings}\index{classes and modes!character|(}\qRclass{character} In spite of the the name \code{character}, values of this mode, are vectors of \emph{character strings"}. Character constants are written by enclosing characters strings in quotation marks, i.e., \code{"this is a character string"}. There are three types of quotation marks in the ASCII character set, double quotes \code{"}, single quotes \code{'}, and back ticks \code{`}. The first two types of quotes can be used as delimiters of \code{character} constants. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct1} \hlkwb{<-} \hlstr{"A"} \hlstd{vct1} @@ -1987,8 +2043,9 @@ \section{Character values}\label{sec:calc:character} \end{explainbox} Concatenating character vectors of length one does not yield a longer character string, it yields instead a longer vector of character strings. + \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct3} \hlkwb{<-} \hlstr{'ABC'} \hlstd{vct4} \hlkwb{<-} \hlstr{"bcdefg"} @@ -2004,7 +2061,7 @@ \section{Character values}\label{sec:calc:character} Having two different delimiters available makes it possible to choose the type of quotation marks used as delimiters so that other quotation marks can be easily included in a string. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstr{"He said 'hello' when he came in"} \end{alltt} @@ -2023,7 +2080,7 @@ \section{Character values}\label{sec:calc:character} The\index{character string delimiters} outer quotes are not part of the string, they are ``delimiters'' used to mark the boundaries. As you can see when \code{b} is printed special characters can be represented using ``escape codes''. There are several of them, and here we will show just four, new line (\verb|\n|) and tab (\verb|\t|), \verb|\"| the escape code for a quotation mark within a string and \verb|\\| the escape code for a single backslash \verb|\|. We also show here the different behavior of \Rfunction{print()} and \Rfunction{cat()}, with \Rfunction{cat()} \emph{interpreting} the escape sequences and \Rfunction{print()} displaying them as entered. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct6} \hlkwb{<-} \hlstr{"abc\textbackslash{}ndef\textbackslash{}tx\textbackslash{}"yz\textbackslash{}"\textbackslash{}\textbackslash{}\textbackslash{}tm"} \hlkwd{print}\hlstd{(vct6)} @@ -2048,7 +2105,7 @@ \section{Character values}\label{sec:calc:character} Function\index{character strings!number of characters} \code{length()} applied to a \code{character} vector returns the number of member strings, not the number of characters in each member string. To query the ``length'' of individual character strings expressed as number of characters, we use function \Rfunction{nchar()}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{nchar}\hlstd{(}\hlkwc{x} \hlstd{=} \hlstr{"abracadabra"}\hlstd{)} \end{alltt} @@ -2067,7 +2124,7 @@ \section{Character values}\label{sec:calc:character} To convert a string into upper case or lower case we use functions \Rfunction{toupper()} and \Rfunction{tolower()}, respectively. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{toupper}\hlstd{(}\hlkwc{x} \hlstd{=} \hlstr{"aBcD"}\hlstd{)} \end{alltt} @@ -2086,7 +2143,7 @@ \section{Character values}\label{sec:calc:character} Function \Rfunction{strtrim()} trims a string to a maximum number of characters or width. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{strtrim}\hlstd{(}\hlkwc{x} \hlstd{=} \hlstr{"abracadabra"}\hlstd{,} \hlkwc{width} \hlstd{=} \hlnum{6}\hlstd{)} \end{alltt} @@ -2117,7 +2174,7 @@ \section{Character values}\label{sec:calc:character} Function \Rfunction{strwrap()} edits a string to a maximum number of characters or width. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{strwrap}\hlstd{(}\hlkwc{x} \hlstd{=} \hlstr{"This is a long sentence used to show how line wrapping works."}\hlstd{,} \hlkwc{width} \hlstd{=} \hlnum{20}\hlstd{)} \end{alltt} @@ -2131,7 +2188,7 @@ \section{Character values}\label{sec:calc:character} Function \Rfunction{cat()} prints a character vector respecting the embedded special characters such new line (encoded as \verb|\n|) in \code{character} strings) and without issuing any additional new lines. Study the code below and the output it generates, consult the documentation of the two functions, and modify the example code until you are confident that you understand in detail how these tow functions work. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{wrapped_sentence} \hlkwb{<-} \hlkwd{strwrap}\hlstd{(}\hlkwc{x} \hlstd{=} \hlstr{"This is a very long sentence used to show how line wrapping works."}\hlstd{,} @@ -2148,7 +2205,7 @@ \section{Character values}\label{sec:calc:character} Pasting together \code{character} strings has many uses, e.g., assembling informative messages to be printed, programmatically creating file names or file paths, etc. If we pass numbers, they are converted to \code{character} before pasting. The default separator is a space character, but this can be changed by passing a \code{character} string as argument for \code{sep}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{paste}\hlstd{(}\hlstr{"n ="}\hlstd{,} \hlnum{3}\hlstd{)} \end{alltt} @@ -2167,7 +2224,7 @@ \section{Character values}\label{sec:calc:character} Pasting constants, as shown above, is of little practical use. In contrast, combining values stored in different variables is a very frequent operation when working with data. A simple use example follows. Assuming vector \code{friends} contains the names of friends and vector \code{fruits} the fruits they like to eat we can paste these values together into short sentences. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{friends} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlstr{"John "}\hlstd{,} \hlstr{"Yan "}\hlstd{,} \hlstr{"Juana "}\hlstd{,} \hlstr{"Mary "}\hlstd{)} \hlstd{fruits} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlstr{"apples"}\hlstd{,} \hlstr{"lichees"}\hlstd{,} \hlstr{"oranges"}\hlstd{,} \hlstr{"strawberries"}\hlstd{)} @@ -2187,7 +2244,7 @@ \section{Character values}\label{sec:calc:character} We can pass an additional argument to tell that the vector resulting from the paste operation is to be collapsed into a single \code{character} string. The argument passed to collapse is used as the separator. I use here \code{cat()} so that the newline character is obeyed in the display of the single character string. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{cat}\hlstd{(}\hlkwd{paste}\hlstd{(friends,} \hlstr{"likes to eat "}\hlstd{, fruits,} \hlkwc{collapse} \hlstd{=} \hlstr{".\textbackslash{}n"}\hlstd{,} \hlkwc{sep} \hlstd{=} \hlstr{""}\hlstd{))} \end{alltt} @@ -2204,7 +2261,7 @@ \section{Character values}\label{sec:calc:character} When the vectors are of different length, the shorter one is recycled as many times as needed, which is not always what we want. In this case we need to first collapse the members of the long vector \code{fruits} to change this vector into a vector of length one. We can achieve this by nesting two calls to \Rfunction{paste()}, and passing an argument to \code{collapse} in the inner function call. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{collapsed_fruits} \hlkwb{<-} \hlkwd{paste}\hlstd{(fruits,} \hlkwc{collapse} \hlstd{=} \hlstr{", "}\hlstd{)} \hlkwd{paste}\hlstd{(}\hlstr{"My friends like to eat"}\hlstd{, collapsed_fruits,} \hlstr{"and other fruits."}\hlstd{)} @@ -2218,7 +2275,7 @@ \section{Character values}\label{sec:calc:character} Nesting of function calls is explained in section \ref{sec:script:pipes} on page \pageref{sec:script:pipes}. However, as the two statements above would in most cases be written as nested function calls, I add this example for reference. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{paste}\hlstd{(}\hlstr{"My friends like to eat"}\hlstd{,} \hlkwd{paste}\hlstd{(fruits,} \hlkwc{collapse} \hlstd{=} \hlstr{", "}\hlstd{),} \hlstr{"and other fruits."}\hlstd{)} \end{alltt} @@ -2233,7 +2290,7 @@ \section{Character values}\label{sec:calc:character} Function \Rfunction{strrep()} repeats and pastes character strings, while \Rfunction{rep()} repeats character strings into vectors. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{rep}\hlstd{(}\hlkwc{x} \hlstd{=} \hlstr{"ABC"}\hlstd{,} \hlkwc{times} \hlstd{=} \hlnum{3}\hlstd{)} \end{alltt} @@ -2270,7 +2327,7 @@ \section{Character values}\label{sec:calc:character} Trimming\index{character strings!whitespace trimming} leading and trailing white space is a frequent operation, and \Rlang function \Rfunction{trimws()} implements this operation. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{trimws}\hlstd{(}\hlkwc{x} \hlstd{=} \hlstr{" two words "}\hlstd{)} \end{alltt} @@ -2296,7 +2353,7 @@ \section{Character values}\label{sec:calc:character} For extraction we can pass to \code{x} a constant as shown below or a variable. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{substr}\hlstd{(}\hlkwc{x} \hlstd{=} \hlstr{"abracadabra"}\hlstd{,} \hlkwc{start} \hlstd{=} \hlnum{5}\hlstd{,} \hlkwc{stop} \hlstd{=} \hlnum{9}\hlstd{)} \end{alltt} @@ -2315,7 +2372,7 @@ \section{Character values}\label{sec:calc:character} Replacement is done \emph{in place}, by having function \code{substr()} on the left hand side (lhs) of the assignment operator \code{<-}. Thus, the argument passed to parameter \code{x} of \code{substr()} must in this case be a variable rather than a constant. This is a substitution character by character, not insertion, so the number of characters in the string passed as argument to \code{x} remains unchanged, i.e., the value returned by \code{nchar()} does not change. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct7} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlstr{"abracadabra"}\hlstd{,} \hlstr{"workaholic"}\hlstd{)} \hlkwd{substr}\hlstd{(}\hlkwc{x} \hlstd{= vct7,} \hlkwc{start} \hlstd{=} \hlnum{5}\hlstd{,} \hlkwc{stop} \hlstd{=} \hlnum{9}\hlstd{)} \hlkwb{<-} \hlstr{"xxx"} @@ -2330,7 +2387,7 @@ \section{Character values}\label{sec:calc:character} If we pass values to both \code{start} and \code{stop} then only part of the value on the \emph{rhs} of the assignment operator \code{<-} may be used. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct8} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlstr{"abracadabra"}\hlstd{,} \hlstr{"workaholic"}\hlstd{)} \hlkwd{substr}\hlstd{(}\hlkwc{x} \hlstd{= vct8,} \hlkwc{start} \hlstd{=} \hlnum{5}\hlstd{,} \hlkwc{stop} \hlstd{=} \hlnum{6}\hlstd{)} \hlkwb{<-} \hlstr{"xxx"} @@ -2347,7 +2404,7 @@ \section{Character values}\label{sec:calc:character} or \code{start} or \code{stop} ignored? Run this ``toy example'' to find out the answer. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{VCT1} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlstr{"abracadabra"}\hlstd{,} \hlstr{"workaholic"}\hlstd{)} \hlkwd{substr}\hlstd{(}\hlkwc{x} \hlstd{= VCT1,} \hlkwc{start} \hlstd{=} \hlnum{5}\hlstd{,} \hlkwc{stop} \hlstd{=} \hlnum{11}\hlstd{)} \hlkwb{<-} \hlstr{"xxx"} @@ -2364,7 +2421,7 @@ \section{Character values}\label{sec:calc:character} To substitute part of a \code{character} string \emph{by matching a pattern}, we can use functions \Rfunction{sub()} or \Rfunction{gsub()}. The first example uses three \code{character} constants, but values stored in variables can also be passed as arguments. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{sub}\hlstd{(}\hlkwc{pattern} \hlstd{=} \hlstr{"ab"}\hlstd{,} \hlkwc{replacement} \hlstd{=} \hlstr{"AB"}\hlstd{,} \hlkwc{x} \hlstd{=} \hlstr{"about"}\hlstd{)} \end{alltt} @@ -2377,7 +2434,7 @@ \section{Character values}\label{sec:calc:character} The difference between \Rfunction{sub()} (substitution) and \Rfunction{gsub()} (global substitution) is that the first replaces only the first match found while the second replaces all matches. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{sub}\hlstd{(}\hlkwc{pattern} \hlstd{=} \hlstr{"ab"}\hlstd{,} \hlkwc{replacement} \hlstd{=} \hlstr{"x"}\hlstd{,} \hlkwc{x} \hlstd{=} \hlstr{"abracadabra"}\hlstd{)} \end{alltt} @@ -2397,7 +2454,7 @@ \section{Character values}\label{sec:calc:character} Functions \Rfunction{sub()} or \Rfunction{gsub()} accept character vectors as argument for parameter \code{x}. Run the two statements below and study how the values returned differ. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{sub}\hlstd{(}\hlkwc{pattern} \hlstd{=} \hlstr{"ab"}\hlstd{,} \hlkwc{replacement} \hlstd{=} \hlstr{"x"}\hlstd{,} \hlkwc{x} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"abra"}\hlstd{,} \hlstr{"cadabra"}\hlstd{))} \hlkwd{gsub}\hlstd{(}\hlkwc{pattern} \hlstd{=} \hlstr{"ab"}\hlstd{,} \hlkwc{replacement} \hlstd{=} \hlstr{"x"}\hlstd{,} \hlkwc{x} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"abra"}\hlstd{,} \hlstr{"cadabra"}\hlstd{))} @@ -2410,7 +2467,7 @@ \section{Character values}\label{sec:calc:character} Function \Rfunction{grep()} returns indices to the values in a vector matching a pattern, or alternatively, the matching values themselves. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{grep}\hlstd{(}\hlkwc{pattern} \hlstd{=} \hlstr{"C"}\hlstd{,} \hlkwc{x} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"R"}\hlstd{,} \hlstr{"C++"}\hlstd{,} \hlstr{"C"}\hlstd{,} \hlstr{"Perl"}\hlstd{,} \hlstr{"Pascal"}\hlstd{))} \end{alltt} @@ -2435,7 +2492,7 @@ \section{Character values}\label{sec:calc:character} Function \Rfunction{grepl()} is a variation of \Rfunction{grep()} that returns a vector of \code{logical} values instead of numeric indices to the matching values in \code{x}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{grepl}\hlstd{(}\hlkwc{pattern} \hlstd{=} \hlstr{"C"}\hlstd{,} \hlkwc{x} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"R"}\hlstd{,} \hlstr{"C++"}\hlstd{,} \hlstr{"C"}\hlstd{,} \hlstr{"Perl"}\hlstd{,} \hlstr{"Pascal"}\hlstd{))} \end{alltt} @@ -2455,7 +2512,7 @@ \section{Character values}\label{sec:calc:character} In\label{sec:calc:regex} the examples above the arguments for \code{pattern} strings matched exactly their targets. In \Rlang and other languages \emph{regular expressions} are used to concisely describe more elaborate and conditional patterns. Regular expressions themselves are encoded as character strings, where some characters and character sequences have special meaning. This means that when a pattern should be interpreted literally rather than specially, \code{fixed = TRUE} should be passed in the call. This in addition, ensures faster computation. In the examples above, the patterns used contained no characters with special meaning, thus, the returned value is not affect by passing \code{fixed = TRUE} as done here. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{sub}\hlstd{(}\hlkwc{pattern} \hlstd{=} \hlstr{"ab"}\hlstd{,} \hlkwc{replacement} \hlstd{=} \hlstr{"AB"}\hlstd{,} \hlkwc{x} \hlstd{=} \hlstr{"about"}\hlstd{,} \hlkwc{fixed} \hlstd{=} \hlnum{TRUE}\hlstd{)} \end{alltt} @@ -2474,7 +2531,7 @@ \section{Character values}\label{sec:calc:character} In a regular expression \code{|} separates alternative matching patterns. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{gsub}\hlstd{(}\hlkwc{pattern} \hlstd{=} \hlstr{"ab|t"}\hlstd{,} \hlkwc{replacement} \hlstd{=} \hlstr{"123"}\hlstd{,} \hlkwc{x} \hlstd{=} \hlstr{"about"}\hlstd{)} \end{alltt} @@ -2487,7 +2544,7 @@ \section{Character values}\label{sec:calc:character} Within a regular expression we can group characters within \code{[ ]} as alternative, e.g, \code{[0123456789]}, or \code{[0-9]} matches any digit. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{gsub}\hlstd{(}\hlkwc{pattern} \hlstd{=} \hlstr{"a[0123456789]"}\hlstd{,} \hlkwc{replacement} \hlstd{=} \hlstr{"ab"}\hlstd{,} @@ -2502,7 +2559,7 @@ \section{Character values}\label{sec:calc:character} Character \code{\textasciicircum} indicates that the match must be at the ``head'' of the string, and \code{\$} that the match should be at its ``tail''. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{gsub}\hlstd{(}\hlkwc{pattern} \hlstd{=} \hlstr{"^a[0123456789]"}\hlstd{,} \hlkwc{replacement} \hlstd{=} \hlstr{"ab"}\hlstd{,} @@ -2517,7 +2574,7 @@ \section{Character values}\label{sec:calc:character} The replacement can be an empty string. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{gsub}\hlstd{(}\hlkwc{pattern} \hlstd{=} \hlstr{"out$"}\hlstd{,} \hlkwc{replacement} \hlstd{=} \hlstr{""}\hlstd{,} @@ -2532,7 +2589,7 @@ \section{Character values}\label{sec:calc:character} A dot (\code{.}) matches any character. In this example we replace the last character with \code{""}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{gsub}\hlstd{(}\hlkwc{pattern} \hlstd{=} \hlstr{".$"}\hlstd{,} \hlkwc{replacement} \hlstd{=} \hlstr{""}\hlstd{,} @@ -2551,7 +2608,7 @@ \section{Character values}\label{sec:calc:character} The number of matching characters can be indicated with \code{+} (match 1 or more times), \code{?} (match 0 or 1 times), \code{*} (match 0 or more times) or even numerically. Matching is in most cases ``greedy''. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{gsub}\hlstd{(}\hlkwc{pattern} \hlstd{=} \hlstr{"^.[0-9][a-z]*$"}\hlstd{,} \hlkwc{replacement} \hlstd{=} \hlstr{"gone"}\hlstd{,} @@ -2563,10 +2620,10 @@ \section{Character values}\label{sec:calc:character} \end{kframe} \end{knitrout} -Several named classes of characters are predefined, for example \code{[:lower:]⁠} for lower case alphabetic characters according to the current locale. In the regular expression in the example below, \code{[:lower:]⁠} replaces only \code{a-z}, thus we need to keep the outer square brackets. While \code{a-z} includes only the unaccented letters, \code{[:lower:]⁠} does include additional characters such as \texttt{ä}, \texttt{ö}, or \texttt{é} if they are in use in the current locale. In the case of \code{[:digit:]} and \code{0-9}, they are equivalent. +Several named classes of characters are predefined, for example \code{[:lower:]⁠} for lower case alphabetic characters according to the current locale (see page \pageref{box:calc:locale}). In the regular expression in the example below, \code{[:lower:]⁠} replaces only \code{a-z}, thus we need to keep the outer square brackets. While \code{a-z} includes only the unaccented letters, \code{[:lower:]⁠} does include additional characters such as \texttt{ä}, \texttt{ö}, or \texttt{é} if they are in use in the current locale. In the case of \code{[:digit:]} and \code{0-9}, they are equivalent. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{gsub}\hlstd{(}\hlkwc{pattern} \hlstd{=} \hlstr{"^.([[:digit:]])[[:lower:]]*$"}\hlstd{,} \hlkwc{replacement} \hlstd{=} \hlstr{"gone with \textbackslash{}\textbackslash{}1"}\hlstd{,} @@ -2581,7 +2638,7 @@ \section{Character values}\label{sec:calc:character} With parentheses we can isolate part of the matched string and reuse it in the replacement with a numeric back-reference. Up to a maximum of nine pairs of parentheses can be used. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{gsub}\hlstd{(}\hlkwc{pattern} \hlstd{=} \hlstr{"^.([0-9])[a-z]*$"}\hlstd{,} \hlkwc{replacement} \hlstd{=} \hlstr{"gone with \textbackslash{}\textbackslash{}1"}\hlstd{,} @@ -2597,7 +2654,7 @@ \section{Character values}\label{sec:calc:character} Run the two statements below, study the returned values by creating variations of the patterns and explain why the returned values differ. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{gsub}\hlstd{(}\hlkwc{pattern} \hlstd{=} \hlstr{"^.+$"}\hlstd{,} \hlkwc{replacement} \hlstd{=} \hlstr{""}\hlstd{,} @@ -2613,7 +2670,7 @@ \section{Character values}\label{sec:calc:character} Splitting\index{character strings!splitting of} of character strings based on pattern matching is a frequently used operation, e..g., treatment labels containing information about two different treatment factors need to be split into their components before data analysis. Function \Rfunction{strsplit()} has an interface consistent with \code{grep()}. In the examples we will split strings containing date and time of day information in different ways. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{strsplit}\hlstd{(}\hlkwc{x} \hlstd{=} \hlstr{"2023-07-29 10:30"}\hlstd{,} \hlkwc{split} \hlstd{=} \hlstr{" "}\hlstd{)} \end{alltt} @@ -2627,7 +2684,7 @@ \section{Character values}\label{sec:calc:character} Using a simple regular expression we can extract individual strings representing the numbers. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{strsplit}\hlstd{(}\hlkwc{x} \hlstd{=} \hlstr{"2023-07-29 10:30"}\hlstd{,} \hlkwc{split} \hlstd{=} \hlstr{" |-|:"}\hlstd{)} \end{alltt} @@ -2644,7 +2701,7 @@ \section{Character values}\label{sec:calc:character} One needs to be aware that the part of the string matched by the regular expression is not included in the returned vectors. If the regular expression matches more than what we consider a separator, the returned values may be surprising. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{strsplit}\hlstd{(}\hlkwc{x} \hlstd{=} \hlstr{"2023-07-29"}\hlstd{,} \hlkwc{split} \hlstd{=} \hlstr{"-[0-9]+$"}\hlstd{)} \end{alltt} @@ -2661,7 +2718,7 @@ \section{Character values}\label{sec:calc:character} When the argument passed to \code{x} is a vector with multiple member strings, the returned value is a list of \code{character} vectors. This list contains as many character vectors as members had the vector passed as argument to \code{x}, each vector the result of splitting one character string in the input. (Lists are described in section \ref{sec:calc:lists} on page \pageref{sec:calc:lists}.) \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{strsplit}\hlstd{(}\hlkwc{x} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"2023-07-29 10:30"}\hlstd{,} \hlstr{"2023-07-29 19:17"}\hlstd{),} \hlkwc{split} \hlstd{=} \hlstr{" "}\hlstd{)} \end{alltt} @@ -2679,17 +2736,19 @@ \section{Character values}\label{sec:calc:character} \index{regular expressions|)} \index{classes and modes!character|)} -\begin{warningbox} +\begin{warningbox}\label{box:calc:locale} The ASCII character set is the oldest and simplest in use. In contains only 128 characters including non-printable characters. These characters support the English language. Several different extended versions with 256 characters provided support for other languages, mostly by adding accented letters and some symbols. The 128 ASCII characters were for a long time the only consistently available across computers set up for different languages and countries (or \emph{locales}). Recently the use of much larger character sets like UTF8 has become common. Since \Rlang version 4.2.0 support for UTF8 is available under Windows 10. This makes it possible the processing of text data for many more languages than in the past. Even though now it is possible to use non-ASCII characters as part of object names, it is anyway safer to use only ASCII characters as this support is recent. - + The extended character sets include additional characters, that are distinct but may produce glyphs that look very similar to those in the ASCII set. One case are em-dash (---), en-dash (-), minus sign ($-$) and regular dash (-) which are all different characters, with only the last one recognized by \Rlang as the minus operator. For those copying and pasting text from a word-processor into \Rpgrm or \RStudio, a frequent difficulty is that even if one types in an ASCII quote character (\verb|"|), the opening and closing quotes in many languages are automatically replaced with non-ASCII ones (``and'') which \Rlang does not accept as character string delimiters. The best solution is to use a plain text editor instead of a word processor when writing scripts or editing text files containing data to be read as code statements or numerical data. + + A locale definition determines not only the language, and character set, but also date, time, and currency formats. \end{warningbox} \begin{explainbox} The code below removes all objects with names \code{"vct1"}, \code{"vct2"}, and so on. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{remove}\hlstd{(}\hlkwc{list} \hlstd{=} \hlkwd{ls}\hlstd{(}\hlkwc{pattern} \hlstd{=} \hlstr{"^vct[[:digit:]]?"}\hlstd{))} \end{alltt} @@ -2706,7 +2765,7 @@ \section{Logical values and Boolean algebra}\label{sec:calc:boolean} In \Rlang there are two ``families'' of Boolean operators, vectorized and not vectorized. Vectorized operators accept logical vectors of any length as operands, while non vectorized ones accept only logical vectors of length one as operands. In the chunk below we use non-vectorized operators with two \Rclass{logical} vectors of length one, \code{a} and \code{b}, as operands. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct1} \hlkwb{<-} \hlnum{TRUE} \hlkwd{mode}\hlstd{(vct1)} @@ -2751,7 +2810,7 @@ \section{Logical values and Boolean algebra}\label{sec:calc:boolean} The availability of two kinds of logical operators can be troublesome for those new to \Rlang. Pairs of ``equivalent'' logical operators behave differently, use similar syntax and use similar symbols! The vectorized operators have single-character names, \Roperator{\&} and \Roperator{\textbar} (similarly to vectorized arithmetic operators like \code{+}), while the non-vectorized ones have double-character names, \Roperator{\&\&} and \Roperator{\textbar\textbar}. There is only one version of the negation operator \Roperator{!} that is vectorized. In recent versions of \Rlang, an error is triggered when a non-vectorized operator is used with a vector with length $> 1$, which helps prevent mistakes. In some situations, vectorized \code{logical} operators can replace non-vectorized ones, but it is important to use the ones that match the intention of the code, as this enables relevant checks for mistakes. Once the distinction is learnt, using the most appropriate operators also contributes to make code easier to read. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{c}\hlstd{(}\hlnum{TRUE}\hlstd{,} \hlnum{FALSE}\hlstd{)} \hlopt{&} \hlkwd{c}\hlstd{(}\hlnum{TRUE}\hlstd{,}\hlnum{TRUE}\hlstd{)} \hlcom{# vectorized AND} \end{alltt} @@ -2770,7 +2829,7 @@ \section{Logical values and Boolean algebra}\label{sec:calc:boolean} Functions \Rfunction{any()} and \Rfunction{all()} take zero or more logical vectors as their arguments, and return a single logical value ``summarizing'' the logical values in the vectors. Function \Rfunction{all()} returns \code{TRUE} only if all values in the vectors passed as arguments are \code{TRUE}, and \Rfunction{any()} returns \code{TRUE} unless all values in the vectors are \code{FALSE}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct2} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlnum{TRUE}\hlstd{,} \hlnum{FALSE}\hlstd{,} \hlnum{FALSE}\hlstd{)} \hlkwd{any}\hlstd{(vct2)} @@ -2814,7 +2873,7 @@ \section{Logical values and Boolean algebra}\label{sec:calc:boolean} Another important thing to know about logical operators is that they ``short-cut'' evaluation. If the result is known from the first part of the statement, the rest of the statement is not evaluated. Try to understand what happens when you enter the following commands. Short-cut evaluation is useful, as the first condition can be used as a guard protecting a later condition from being evaluated when it would trigger an error.\label{par:calc:shortcut:eval} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlnum{TRUE} \hlopt{||} \hlnum{NA} \end{alltt} @@ -2861,7 +2920,7 @@ \section{Logical values and Boolean algebra}\label{sec:calc:boolean} When using the vectorized operators on vectors of length greater than one, `short-cut' evaluation still applies for the result obtained at each index position. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{c}\hlstd{(}\hlnum{TRUE}\hlstd{,} \hlnum{FALSE}\hlstd{)} \hlopt{&} \hlkwd{c}\hlstd{(}\hlnum{TRUE}\hlstd{,}\hlnum{TRUE}\hlstd{)} \hlopt{&} \hlnum{NA} \end{alltt} @@ -2887,7 +2946,7 @@ \section{Logical values and Boolean algebra}\label{sec:calc:boolean} Based on the description of ``recycling'' presented on page \pageref{par:recycling:numeric} for \code{numeric} operators, explore how ``recycling'' works with vectorized logical operators. Create logical vectors of different lengths (including length one) and \emph{play} by writing several code statements with operations on them. To get you started, one example is given below. Execute this example, and then create and run your own, making sure that you understand why the values returned are what they are. Sometimes, you will need to devise several examples or test cases to tease out of \Rlang an understanding of how a certain feature of the language works, so do not give up early, and make use of your imagination! \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{c}\hlstd{(}\hlnum{TRUE}\hlstd{,} \hlnum{FALSE}\hlstd{,} \hlnum{TRUE}\hlstd{,} \hlnum{NA}\hlstd{)} \hlopt{&} \hlnum{FALSE} \hlkwd{c}\hlstd{(}\hlnum{TRUE}\hlstd{,} \hlnum{FALSE}\hlstd{,} \hlnum{TRUE}\hlstd{,} \hlnum{NA}\hlstd{)} \hlopt{|} \hlkwd{c}\hlstd{(}\hlnum{TRUE}\hlstd{,} \hlnum{FALSE}\hlstd{)} @@ -2901,7 +2960,7 @@ \section{Logical values and Boolean algebra}\label{sec:calc:boolean} A call to \Rfunction{is.na()} returns a \code{logical} vector that we can pass to \Rfunction{all()}. We can save the intermediate vector \code{temp} and pass it as argument to \Rfunction{is.na()}, or alternatively nest the function calls. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct2} \hlkwb{<-} \hlkwd{rep}\hlstd{(}\hlnum{NA}\hlstd{,} \hlnum{5}\hlstd{)} \hlcom{# toy data} \hlstd{temp} \hlkwb{<-} \hlkwd{is.na}\hlstd{(vct2)} @@ -2914,7 +2973,7 @@ \section{Logical values and Boolean algebra}\label{sec:calc:boolean} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{all}\hlstd{(}\hlkwd{is.na}\hlstd{(vct2))} \hlcom{# nested call} \end{alltt} @@ -2930,7 +2989,7 @@ \section{Logical values and Boolean algebra}\label{sec:calc:boolean} See previous question. We only need to replace \code{all()} by \Rfunction{any()} to obtain the answer. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{na.vec} \hlkwb{<-} \hlkwd{rep}\hlstd{(}\hlnum{NA}\hlstd{,} \hlnum{5}\hlstd{)} \hlkwd{any}\hlstd{(}\hlkwd{is.na}\hlstd{(na.vec))} @@ -2950,7 +3009,7 @@ \section{Logical values and Boolean algebra}\label{sec:calc:boolean} The code below removes all objects with names \code{"vct1"}, \code{"vct2"}, and so on. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{remove}\hlstd{(}\hlkwc{list} \hlstd{=} \hlkwd{ls}\hlstd{(}\hlkwc{pattern} \hlstd{=} \hlstr{"^vct[[:digit:]]?"}\hlstd{))} \end{alltt} @@ -2965,7 +3024,7 @@ \section{Comparison operators and operations}\label{sec:calc:comparison} Equality (\code{==}) and inequality (\code{!=}) operators are defined not only for \code{numeric} values but also for \code{character} and most other atomic and many other values. Be aware that operator \code{=} is an infrequently used synonym of the assignment operator \code{<-} rather than a comparison operator! \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlcom{# be aware that we use two = symbols} \hlstr{"abc"} \hlopt{==} \hlstr{"ab"} @@ -2997,7 +3056,7 @@ \section{Comparison operators and operations}\label{sec:calc:comparison} In the case of \code{numeric} values additional comparisons are meaningful and additional operators are defined. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlnum{1.2} \hlopt{>} \hlnum{1.0} \end{alltt} @@ -3040,7 +3099,7 @@ \section{Comparison operators and operations}\label{sec:calc:comparison} These operators can be used on vectors of any length, returning as a result a logical vector as long as the longest operand. In other words, they behave in the same way as the arithmetic operators described on page \pageref{par:vectorized:numeric}: their arguments are recycled when needed. Hint: if you do not know what value is stored in numeric vector \code{a}, use \code{print(a)} after the first code statement below to see its contents. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct3} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{10} \hlstd{vct3} \hlopt{>} \hlnum{5} @@ -3099,7 +3158,7 @@ \section{Comparison operators and operations}\label{sec:calc:comparison} For example to test if members of a numeric vector are within a range, in our example, -1 to +1, we can combine the results from two comparisons using the vectorized logical \emph{AND} operator \Roperator{\&}, and use parentheses to override the default order of precedence of the operations. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct5} \hlkwb{<-} \hlopt{-}\hlnum{2}\hlopt{:}\hlnum{3} \hlstd{vct5} \hlopt{>= -}\hlnum{1} \hlopt{&} \hlstd{vct5} \hlopt{<=} \hlnum{1} @@ -3113,7 +3172,7 @@ \section{Comparison operators and operations}\label{sec:calc:comparison} If we want to find those values outside this same range, we can negate the test. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlopt{!}\hlstd{(vct5} \hlopt{>= -}\hlnum{1} \hlopt{&} \hlstd{vct5} \hlopt{<=} \hlnum{1}\hlstd{)} \end{alltt} @@ -3126,7 +3185,7 @@ \section{Comparison operators and operations}\label{sec:calc:comparison} Or we can combine another two comparisons using the vectorized logical \emph{OR} operator \Roperator{\textbar}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct5} \hlopt{< -}\hlnum{1} \hlopt{|} \hlstd{vct5} \hlopt{>} \hlnum{1} \end{alltt} @@ -3142,7 +3201,7 @@ \section{Comparison operators and operations}\label{sec:calc:comparison} Use the statement below as a starting point in exploring how precedence works when logical and arithmetic operators are part of the same statement. \emph{Play} with the example by adding parentheses at different positions and based on the returned values, work out the default order of operator precedence used for the evaluation of the example given below. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct6} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{10} \hlstd{vct6} \hlopt{>} \hlnum{3} \hlopt{|} \hlstd{vct6} \hlopt{+} \hlnum{2} \hlopt{<} \hlnum{3} @@ -3155,7 +3214,7 @@ \section{Comparison operators and operations}\label{sec:calc:comparison} The behavior of many of base-\Rlang's functions when \code{NA}s are present in their input arguments can be modified. \code{TRUE} passed as an argument to parameter \code{na.rm}, results in \code{NA} values being \emph{removed} from the input \textbf{before} the function is applied. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct7} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{10}\hlstd{,} \hlnum{NA}\hlstd{)} \hlkwd{all}\hlstd{(vct7} \hlopt{<} \hlnum{20}\hlstd{)} @@ -3188,7 +3247,7 @@ \section{Comparison operators and operations}\label{sec:calc:comparison} \index{comparison of floating point numbers|(}\index{inequality and equality tests|(}\index{loss of numeric precision}In many situations, when writing programs one should avoid testing for equality of floating point numbers (`floats'). This is because of how numbers are stored in computers (see the box on page \pageref{box:floats} for an in-depth explanation). Here I show how to gracefully handle rounding errors when using comparison operators. As rounding errors may accumulate, in practice \code{.Machine\$double.eps} is frequently too small a value to safely use in tests for ``zero.''. Whenever possible according to the logic of the calculations, it is best to test for inequalities, for example using \verb|x <= 1.0| instead of \verb|x == 1.0|. If this is not possible, then equality tests should be done by replacing tests like \verb|x == 1.0| with \verb|abs(x - 1.0) < k|, where \verb|k| is a number larger than \code{eps}. Function \Rfunction{abs()} returns the absolute value, in simpler words, makes all values positive or zero, by changing the sign of negative values, or in mathematical notation $|x| = |-x|$. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{sin}\hlstd{(pi)} \hlopt{==} \hlnum{0} \hlcom{# angle in radians, not degrees!} \end{alltt} @@ -3237,7 +3296,7 @@ \section{Comparison operators and operations}\label{sec:calc:comparison} The code below removes all objects with names \code{"vct1"}, \code{"vct2"}, and so on. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{remove}\hlstd{(}\hlkwc{list} \hlstd{=} \hlkwd{ls}\hlstd{(}\hlkwc{pattern} \hlstd{=} \hlstr{"^vct[[:digit:]]?"}\hlstd{))} \end{alltt} @@ -3352,7 +3411,7 @@ \section{Sets and set operations} The remaining operations are easier to exemplify using vectors with values representing a mundane example, grocery shopping, only later followed by more abstract examples. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{fruits} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlstr{"apple"}\hlstd{,} \hlstr{"pear"}\hlstd{,} \hlstr{"orange"}\hlstd{,} \hlstr{"lemon"}\hlstd{,} \hlstr{"tangerine"}\hlstd{)} \hlstd{bakery} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlstr{"bread"}\hlstd{,} \hlstr{"buns"}\hlstd{,} \hlstr{"cake"}\hlstd{,} \hlstr{"cookies"}\hlstd{)} @@ -3412,7 +3471,7 @@ \section{Sets and set operations} Sets describe membership as a binary property, thus when vectors are interpreted as sets, duplicate members are redundant. Duplicate members although accepted as input are always simplified in the returned values. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{union}\hlstd{(}\hlkwd{c}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"a"}\hlstd{,} \hlstr{"b"}\hlstd{),} \hlkwd{c}\hlstd{(}\hlstr{"b"}\hlstd{,} \hlstr{"a"}\hlstd{,} \hlstr{"b"}\hlstd{))} \hlcom{# set operation} \end{alltt} @@ -3444,7 +3503,7 @@ \section{Sets and set operations} We construct and save a character vector to use in the next examples. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct1} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"b"}\hlstd{,} \hlstr{"c"}\hlstd{,} \hlstr{"b"}\hlstd{)} \end{alltt} @@ -3454,7 +3513,7 @@ \section{Sets and set operations} To test if a given value belongs to a set, we use operator \Roperator{\%in\%} or its function equivalent \Rfunction{is.element()}. In the algebra of sets notation, this is written $a \in A$, where $A$ is a set and $a$ a member. The second statement shows that the \code{\%in\%} operator is vectorized on its left-hand-side (lhs) operand, returning a logical vector. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{is.element}\hlstd{(}\hlstr{"a"}\hlstd{, vct1)} \end{alltt} @@ -3480,7 +3539,7 @@ \section{Sets and set operations} Keep in mind that inclusion, implemented in operator \verb|%in%|, is an asymmetrical (not reflective) operation among a vector and a set. The right-hand-side (rhs) argument is interpreted as a set, while the left-hand-side (lhs) argument is interpreted as a vector of values to test for membership in the set. In other words, any duplicate member in the lhs operand is retained and tested while the rhs operand is interpreted as a set of unique values. The returned logical vector has the same length as the lhs operand. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct1} \hlopt{%in%} \hlstr{"a"} \end{alltt} @@ -3494,7 +3553,7 @@ \section{Sets and set operations} The negation of inclusion is $a \not\in A$, and coded in \Rlang by applying the negation operator \Roperator{!} to the result of the test done with \Roperator{\%in\%} or function \Rfunction{is.element()}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlopt{!}\hlkwd{is.element}\hlstd{(}\hlstr{"a"}\hlstd{, vct1)} \end{alltt} @@ -3529,7 +3588,7 @@ \section{Sets and set operations} Use operator \Roperator{\%in\%} to write more concisely the following comparisons. Hint: see section \ref{sec:calc:boolean} on page \pageref{sec:calc:boolean} for the difference between \code{|} and \code{||} operators. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct2} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"a"}\hlstd{,} \hlstr{"z"}\hlstd{)} \hlstd{vct2} \hlopt{==} \hlstr{"a"} \hlopt{|} \hlstd{vct2} \hlopt{==} \hlstr{"b"} \hlopt{|} \hlstd{vct2} \hlopt{==} \hlstr{"c"} \hlopt{|} \hlstd{xvct2} \hlopt{==} \hlstr{"d"} @@ -3543,7 +3602,7 @@ \section{Sets and set operations} With \Rfunction{unique()} we convert a vector of possibly repeated values into a set of unique values. In the algebra of sets, a certain object belongs or not to a set. Consequently, in a set, multiple copies of the same object or value are meaningless. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{unique}\hlstd{(vct1)} \end{alltt} @@ -3556,7 +3615,7 @@ \section{Sets and set operations} Function \Rfunction{unique()} is frequently useful, for example when we want determine the number of distinct values in a vector. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{length}\hlstd{(}\hlkwd{unique}\hlstd{(vct1))} \end{alltt} @@ -3570,7 +3629,7 @@ \section{Sets and set operations} Do the values returned by these two statements differ? \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{c}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"a"}\hlstd{,} \hlstr{"z"}\hlstd{)} \hlopt{%in%} \hlstd{vct1} \hlkwd{c}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"a"}\hlstd{,} \hlstr{"z"}\hlstd{)} \hlopt{%in%} \hlkwd{unique}\hlstd{(vct1)} @@ -3584,7 +3643,7 @@ \section{Sets and set operations} Function \Rfunction{duplicated()} is the counterpart of \Rfunction{unique()}, returning a logical vector indicating which values in a vector are duplicates of values already present at positions with a lower index. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{duplicated}\hlstd{(vct1)} \end{alltt} @@ -3607,7 +3666,7 @@ \section{Sets and set operations} What do you expect to be the difference between the values returned by the three statements in the code chunk below? Before running them, write down your expectations about the value each one will return. Only then run the code. Independently of whether your predictions were correct or not, write down an explanation of what each statement's operation is. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{union}\hlstd{(}\hlkwd{c}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"a"}\hlstd{,} \hlstr{"z"}\hlstd{), vct1)} \hlkwd{c}\hlstd{(}\hlkwd{c}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"a"}\hlstd{,} \hlstr{"z"}\hlstd{), vct1)} @@ -3624,7 +3683,7 @@ \section{Sets and set operations} All set algebra examples above use character vectors and character constants. This is just the most frequent use case. Sets operations are valid on vectors of any atomic class, including \code{integer}, and computed values can be part of statements. In the second and third statements in the next chunk, we need to use additional parentheses to alter the default order of precedence between arithmetic and set operators. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlnum{9} \hlopt{%in%} \hlnum{2}\hlopt{:}\hlnum{4} \end{alltt} @@ -3649,7 +3708,7 @@ \section{Sets and set operations} \emph{Empty sets} are an important component of the algebra of sets, in \Rlang they are represented as vectors of zero length. These vectors do belong to a class such as \Rclass{numeric} or \Rclass{character} and must be compatible with other operands in an expression. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{c}\hlstd{(}\hlstr{"ab"}\hlstd{,} \hlstr{"xy"}\hlstd{)} \hlopt{%in%} \hlkwd{character}\hlstd{()} \end{alltt} @@ -3675,9 +3734,9 @@ \section{Sets and set operations} \begin{warningbox} Although set operators are defined for \Rclass{numeric} vectors, rounding errors in `floats' can result in unexpected results (see section \ref{box:floats} on page \pageref{box:floats}). - + \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{c}\hlstd{(}\hlkwd{cos}\hlstd{(pi),} \hlkwd{sin}\hlstd{(pi))} \hlopt{%in%} \hlkwd{c}\hlstd{(}\hlnum{0}\hlstd{,} \hlopt{-}\hlnum{1}\hlstd{)} \end{alltt} @@ -3704,7 +3763,7 @@ \section{Sets and set operations} \begin{explainbox} The code below removes all objects with names \code{"vct1"}, \code{"vct2"}, and so on. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{remove}\hlstd{(}\hlkwc{list} \hlstd{=} \hlkwd{ls}\hlstd{(}\hlkwc{pattern} \hlstd{=} \hlstr{"^vct[[:digit:]]?"}\hlstd{))} \end{alltt} @@ -3721,7 +3780,7 @@ \section{The `mode' and `class' of objects}\label{sec:rlang:mode} Function \Rfunction{class()} is used to query the class of an object, and function \Rfunction{inherits()} is used to test if an object belongs to a specific class or not (including ``parent'' classes, to be later described). \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct1} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{5} \hlkwd{class}\hlstd{(vct1)} @@ -3747,7 +3806,7 @@ \section{The `mode' and `class' of objects}\label{sec:rlang:mode} Functions with names starting with \code{is.} are tests returning a logical value, \code{TRUE}, \code{FALSE} or \code{NA}.\qRfunction{is.character()}\qRfunction{is.numeric()}\qRfunction{is.logical()} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{is.numeric}\hlstd{(vct1)} \hlcom{# no distinction of integer or double} \end{alltt} @@ -3785,7 +3844,7 @@ \section{The `mode' and `class' of objects}\label{sec:rlang:mode} The \emph{mode} of an object is a fundamental property, and limited to those modes defined as part of the \Rlang language. In particular, different \Rlang objects of a given mode, such as \code{numeric}, can belong to different \code{class}es. Classes and the dispatch of methods are discussed in section \ref{sec:script:objects:classes:methods} on page \pageref{sec:script:objects:classes:methods}, together with object-oriented programming. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{mode}\hlstd{(}\hlkwd{c}\hlstd{(}\hlnum{1}\hlstd{,} \hlnum{2}\hlstd{,} \hlnum{3}\hlstd{))} \hlcom{# no distinction of integer or double} \end{alltt} @@ -3822,6 +3881,11 @@ \section{The `mode' and `class' of objects}\label{sec:rlang:mode} \begin{verbatim} ## [1] "integer" \end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{mode}\hlstd{(}\hlkwd{factor}\hlstd{(}\hlkwd{c}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"b"}\hlstd{,} \hlstr{"c"}\hlstd{)))} \hlcom{# no distinction of integer or double} \end{alltt} @@ -3840,6 +3904,11 @@ \section{The `mode' and `class' of objects}\label{sec:rlang:mode} \begin{verbatim} ## [1] "factor" \end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{mode}\hlstd{(}\hlkwd{c}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"b"}\hlstd{,} \hlstr{"c"}\hlstd{))} \end{alltt} @@ -3858,6 +3927,11 @@ \section{The `mode' and `class' of objects}\label{sec:rlang:mode} \begin{verbatim} ## [1] "character" \end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{mode}\hlstd{(}\hlkwd{c}\hlstd{(}\hlnum{TRUE}\hlstd{,} \hlnum{FALSE}\hlstd{))} \end{alltt} @@ -3882,21 +3956,33 @@ \section{The `mode' and `class' of objects}\label{sec:rlang:mode} \section{`Type' conversions}\label{sec:calc:type:conversion} \index{type conversion|(} -The least-intuitive type conversions are those related to logical values. All others are as one would expect. By convention, functions used to convert objects from one mode to a different one have names starting with \code{as.}\footnote{Except for some packages in the \pkgnameNI{tidyverse} that use names starting with \code{as\_} instead of \code{as.}.}.\qRfunction{as.character()}\qRfunction{as.numeric()}\qRfunction{as.logical()} +By type conversion we mean converting a value from one class into a value expressed in a different class. usually the meaning can be retained, at least in part. We can for example convert character strings into numeric values, but this conversion is possible only for character strings conformed by digits, like \code{"100"}. Most conversions, such as the conversion of \code{character} value \code{"100"} into \code{numeric} value \code{100} are obvious. Type conversions involving logical values are less intuitive. By convention, functions used to convert objects from one mode or class to a different one have names starting with \code{as.}\footnote{Except for some packages in the \pkgnameNI{tidyverse} that use names starting with \code{as\_} instead of \code{as.}.}.\qRfunction{as.character()}\qRfunction{as.numeric()}\qRfunction{as.logical()} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlkwd{as.character}\hlstd{(}\hlnum{1}\hlstd{)} +\hlkwd{as.character}\hlstd{(}\hlnum{102}\hlstd{)} \end{alltt} \begin{verbatim} -## [1] "1" +## [1] "102" \end{verbatim} \begin{alltt} -\hlkwd{as.numeric}\hlstd{(}\hlstr{"1"}\hlstd{)} +\hlkwd{as.character}\hlstd{(}\hlnum{TRUE}\hlstd{)} \end{alltt} \begin{verbatim} -## [1] 1 +## [1] "TRUE" +\end{verbatim} +\begin{alltt} +\hlkwd{as.character}\hlstd{(}\hlnum{3.0e10}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] "3e+10" +\end{verbatim} +\begin{alltt} +\hlkwd{as.numeric}\hlstd{(}\hlstr{"203"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] 203 \end{verbatim} \begin{alltt} \hlkwd{as.logical}\hlstd{(}\hlstr{"TRUE"}\hlstd{)} @@ -3905,18 +3991,30 @@ \section{`Type' conversions}\label{sec:calc:type:conversion} ## [1] TRUE \end{verbatim} \begin{alltt} -\hlkwd{as.logical}\hlstd{(}\hlstr{"NA"}\hlstd{)} +\hlkwd{as.logical}\hlstd{(}\hlnum{100}\hlstd{)} \end{alltt} \begin{verbatim} -## [1] NA +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlkwd{as.logical}\hlstd{(}\hlnum{0}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] FALSE +\end{verbatim} +\begin{alltt} +\hlkwd{as.logical}\hlstd{(}\hlopt{-}\hlnum{1}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] TRUE \end{verbatim} \end{kframe} \end{knitrout} -Conversion takes place automatically in arithmetic and logical expressions. +Some conversions takes place automatically in expressions involving both \code{numeric} and \code{logical} values. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlnum{TRUE} \hlopt{+} \hlnum{10} \end{alltt} @@ -3939,22 +4037,22 @@ \section{`Type' conversions}\label{sec:calc:type:conversion} \end{knitrout} \begin{playground} -There is some flexibility in the conversion from character strings into \code{numeric} and \code{logical} values. Use the examples below plus your own variations to get an idea of what strings are acceptable and correctly converted and which are not. Do also pay attention at the conversion between \code{numeric} and \code{logical} values.\qRfunction{as.character()}\qRfunction{as.numeric()}\qRfunction{as.logical()} +There is flexibility in the conversion from character strings into \code{numeric} and \code{logical} values. Use the examples below plus your own variations to get an idea of what strings are acceptable and correctly converted and which are not. Do also pay attention at the conversion between \code{numeric} and \code{logical} values.\qRfunction{as.character()}\qRfunction{as.numeric()}\qRfunction{as.logical()} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlkwd{as.character}\hlstd{(}\hlnum{3.0e10}\hlstd{)} \hlkwd{as.numeric}\hlstd{(}\hlstr{"5E+5"}\hlstd{)} +\hlkwd{as.numeric}\hlstd{(}\hlstr{"50e+4"}\hlstd{)} +\hlkwd{as.numeric}\hlstd{(}\hlstr{".12"}\hlstd{)} +\hlkwd{as.numeric}\hlstd{(}\hlstr{"0.12"}\hlstd{)} \hlkwd{as.numeric}\hlstd{(}\hlstr{"A"}\hlstd{)} -\hlkwd{as.numeric}\hlstd{(}\hlnum{TRUE}\hlstd{)} -\hlkwd{as.numeric}\hlstd{(}\hlnum{FALSE}\hlstd{)} +\hlkwd{as.logical}\hlstd{(}\hlstr{"TRUE"}\hlstd{)} +\hlkwd{as.logical}\hlstd{(}\hlstr{"FALSE"}\hlstd{)} \hlkwd{as.logical}\hlstd{(}\hlstr{"T"}\hlstd{)} \hlkwd{as.logical}\hlstd{(}\hlstr{"t"}\hlstd{)} \hlkwd{as.logical}\hlstd{(}\hlstr{"true"}\hlstd{)} -\hlkwd{as.logical}\hlstd{(}\hlnum{100}\hlstd{)} -\hlkwd{as.logical}\hlstd{(}\hlnum{0}\hlstd{)} -\hlkwd{as.logical}\hlstd{(}\hlopt{-}\hlnum{1}\hlstd{)} +\hlkwd{as.logical}\hlstd{(}\hlstr{"NA"}\hlstd{)} \end{alltt} \end{kframe} \end{knitrout} @@ -3962,14 +4060,16 @@ \section{`Type' conversions}\label{sec:calc:type:conversion} \end{playground} \begin{playground} -Compare the values returned by \Rfunction{trunc()} and \Rfunction{as.integer()} when applied to a floating point number, such as \code{12.34}. Check for the equality of values, and for the \emph{class} of the returned objects. +Conversion of fractional numbers into whole numbers can be achieved in different ways, by truncation of the fractional part or rounding it up or down. If we consider both negative and positive numbers, how each of them are handled creates additional possibilities. All these approaches as defined in mathematics, are available through different \Rlang functions. These functions, are not conversion functions as they return a \code{numeric} value of class \code{double}. See page \pageref{par:calc:round}. In contrast, \Rfunction{as.integer()} is a conversion function for type \code{double} into type \code{integer}, both with mode \code{numeric}. + +Compare the values returned by \Rfunction{trunc()} and \Rfunction{as.integer()} when applied to a floating point number, such as \code{12.34}. Check for the equality of values, and for the \emph{class} and \emph{type} of the returned objects. \end{playground} \begin{explainbox} Using conversions, the difference between the length of a \code{character} vector and the number of characters composing each member ``string'' within a vector is obvious.\qRfunction{length()}\qRfunction{as.numeric()} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct1} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlstr{"1"}\hlstd{,} \hlstr{"2"}\hlstd{,} \hlstr{"3"}\hlstd{)} \hlkwd{length}\hlstd{(vct1)} @@ -3978,7 +4078,7 @@ \section{`Type' conversions}\label{sec:calc:type:conversion} ## [1] 3 \end{verbatim} \begin{alltt} -\hlstd{vct2} \hlkwb{<-} \hlstr{"123"} +\hlstd{vct2} \hlkwb{<-} \hlstr{"123.1"} \hlkwd{length}\hlstd{(vct2)} \end{alltt} \begin{verbatim} @@ -3994,6 +4094,18 @@ \section{`Type' conversions}\label{sec:calc:type:conversion} \hlkwd{as.numeric}\hlstd{(vct2)} \end{alltt} \begin{verbatim} +## [1] 123.1 +\end{verbatim} +\begin{alltt} +\hlkwd{as.integer}\hlstd{(vct1)} +\end{alltt} +\begin{verbatim} +## [1] 1 2 3 +\end{verbatim} +\begin{alltt} +\hlkwd{as.integer}\hlstd{(vct2)} +\end{alltt} +\begin{verbatim} ## [1] 123 \end{verbatim} \end{kframe} @@ -4001,12 +4113,12 @@ \section{`Type' conversions}\label{sec:calc:type:conversion} \end{explainbox} \sloppy -Other\index{formatted character strings from numbers} functions relevant to the ``conversion'' of numbers and other values are \Rfunction{format()}, and \Rfunction{sprintf()}. These two functions return \Rclass{character} strings, instead of \code{numeric} or other values, and are useful for printing output. One could think of these functions as advanced conversion functions returning formatted, and possibly combined and annotated, character strings. However, they are usually not considered normal conversion functions, as they are very rarely used in a way that preserves the original precision of the input values. We show here the use of \Rfunction{format()} and \Rfunction{sprintf()} with \code{numeric} values, but they can also be used with values of other modes. +Other\index{formatted character strings from numbers} functions relevant to the ``conversion'' of numbers and other values are \Rfunction{format()}, and \Rfunction{sprintf()}. This is sometimes informally called ``pretty printing''. These two functions return \Rclass{character} strings, instead of \code{numeric} or other values, and are useful for printed output. One could think of these functions as advanced conversion functions returning formatted, and possibly combined and annotated, character strings. However, they are usually not considered normal conversion functions, as they are very rarely used in a way that preserves the original precision of the input values. We show here the use of \Rfunction{format()} and \Rfunction{sprintf()} with \code{numeric} values, but they can also be used with values of other classes like \code{character}, \code{logical}, etc. -When using \Rfunction{format()}, the format used to display numbers is set by passing arguments to several different parameters. As \Rfunction{print()} calls \Rfunction{format()} to make numbers \emph{pretty} it accepts the same options. +When using \Rfunction{format()}, the format used to display numbers is set by passing arguments to several different parameters. As \Rfunction{print()} calls \Rfunction{format()} to convert \code{numeric} values into \code{character} strings, it accepts the same options. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct2} \hlkwb{=} \hlkwd{c}\hlstd{(}\hlnum{123.4567890}\hlstd{,} \hlnum{1.0}\hlstd{)} \hlkwd{format}\hlstd{(vct2)} \hlcom{# using defaults} @@ -4015,13 +4127,13 @@ \section{`Type' conversions}\label{sec:calc:type:conversion} ## [1] "123.4568" " 1.0000" \end{verbatim} \begin{alltt} -\hlkwd{format}\hlstd{(vct2[}\hlnum{1}\hlstd{])} \hlcom{# using defaults} +\hlkwd{format}\hlstd{(}\hlnum{123.4567890}\hlstd{)} \hlcom{# using defaults} \end{alltt} \begin{verbatim} ## [1] "123.4568" \end{verbatim} \begin{alltt} -\hlkwd{format}\hlstd{(vct2[}\hlnum{2}\hlstd{])} \hlcom{# using defaults} +\hlkwd{format}\hlstd{(}\hlnum{1.0}\hlstd{)} \hlcom{# using defaults} \end{alltt} \begin{verbatim} ## [1] "1" @@ -4044,7 +4156,7 @@ \section{`Type' conversions}\label{sec:calc:type:conversion} Function \Rfunction{sprintf()} is similar to \Clang's function of the same name. The user interface is rather unusual, but very powerful, once one learns the syntax. All the formatting is specified using a \code{character} string as template. In this template, placeholders for data and the formatting instructions are embedded using special codes. These codes start with a percent character. We show in the example below the use of some of these: \code{f} is used for \code{numeric} values to be formatted according to a ``fixed point,'' while \code{g} is used when we set the number of significant digits and \code{e} for exponential or \emph{scientific} notation. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{x} \hlkwb{=} \hlkwd{c}\hlstd{(}\hlnum{123.4567890}\hlstd{,} \hlnum{1.0}\hlstd{)} \hlkwd{sprintf}\hlstd{(}\hlstr{"The numbers are: %4.2f and %.0f"}\hlstd{, x[}\hlnum{1}\hlstd{], x[}\hlnum{2}\hlstd{])} @@ -4074,10 +4186,10 @@ \section{`Type' conversions}\label{sec:calc:type:conversion} \end{playground} \begin{explainbox} -We have above described \Rconst{NA} as a single value ignoring modes, but in reality \Rconst{NA}s come in various flavors. \Rconst{NA\_real\_}, \Rconst{NA\_character\_}, etc. and \Rconst{NA} defaults to an \Rconst{NA} of class \Rclass{logical}. \Rconst{NA} is normally converted on the fly to other modes when needed, so in general \Rconst{NA} is all we need to use. +We have above described \Rconst{NA} as a single value ignoring modes, but in reality \Rconst{NA}s come in various flavors. \Rconst{NA\_real\_}, \Rconst{NA\_character\_}, etc. and \Rconst{NA} defaults to an \Rconst{NA} of class \Rclass{logical}. \Rconst{NA} is normally converted on the fly to other modes when needed, so in general \Rconst{NA} is all we need to use. The examples below use the extraction operator to demonstrate automatic conversion on assignment. This operator is described in section \ref{sec:calc:indexing} below. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct3} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlnum{1}\hlstd{,} \hlnum{NA}\hlstd{)} \hlkwd{is.numeric}\hlstd{(vct3[}\hlnum{2}\hlstd{])} @@ -4095,7 +4207,7 @@ \section{`Type' conversions}\label{sec:calc:type:conversion} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct4} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlstr{"abc"}\hlstd{,} \hlnum{NA}\hlstd{)} \hlkwd{is.character}\hlstd{(vct4[}\hlnum{2}\hlstd{])} @@ -4107,7 +4219,7 @@ \section{`Type' conversions}\label{sec:calc:type:conversion} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{is.character}\hlstd{(}\hlnum{NA}\hlstd{)} \end{alltt} @@ -4130,7 +4242,7 @@ \section{`Type' conversions}\label{sec:calc:type:conversion} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct5} \hlkwb{<-} \hlnum{NA} \hlkwd{c}\hlstd{(vct5,} \hlnum{2}\hlopt{:}\hlnum{3}\hlstd{)} @@ -4144,7 +4256,7 @@ \section{`Type' conversions}\label{sec:calc:type:conversion} However, even the statement below works transparently. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct3[}\hlnum{3}\hlstd{]} \hlkwb{<-} \hlstd{vct4[}\hlnum{2}\hlstd{]} \end{alltt} @@ -4158,7 +4270,7 @@ \section{`Type' conversions}\label{sec:calc:type:conversion} The code below removes all objects with names \code{"vct1"}, \code{"vct2"}, and so on. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{remove}\hlstd{(}\hlkwc{list} \hlstd{=} \hlkwd{ls}\hlstd{(}\hlkwc{pattern} \hlstd{=} \hlstr{"^vct[[:digit:]]?"}\hlstd{))} \end{alltt} @@ -4175,7 +4287,7 @@ \section{Vector manipulation}\label{sec:vectors}\label{sec:calc:indexing} We extract the first 10 elements of the vector \code{letters}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct1} \hlkwb{<-} \hlstd{letters[}\hlnum{1}\hlopt{:}\hlnum{10}\hlstd{]} \hlstd{vct1} @@ -4214,7 +4326,7 @@ \section{Vector manipulation}\label{sec:vectors}\label{sec:calc:indexing} \end{center} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct1[}\hlnum{2}\hlstd{]} \end{alltt} @@ -4228,7 +4340,7 @@ \section{Vector manipulation}\label{sec:vectors}\label{sec:calc:indexing} Four constant vectors are available in base \Rlang: \Rconst{letters}, \Rconst{LETTERS}, \Rconst{month.name} and \Rconst{month.abb}, of which I used \code{letters} in the example above. These vectors are always for English, irrespective of the locale. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{month.name} \end{alltt} @@ -4252,7 +4364,7 @@ \section{Vector manipulation}\label{sec:vectors}\label{sec:calc:indexing} \begin{faqbox}{How to access the last value in a vector?} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{month.name[}\hlkwd{length}\hlstd{(month.name)]} \end{alltt} @@ -4267,7 +4379,7 @@ \section{Vector manipulation}\label{sec:vectors}\label{sec:calc:indexing} It is possible to extract a subset of the elements of a vector in a single operation, using a vector of indexes. The positions of the extracted elements in the result (``returned value'') are determined by the ordering of the members of the vector of indexes---easier to demonstrate than to explain. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct1[}\hlkwd{c}\hlstd{(}\hlnum{3}\hlstd{,} \hlnum{2}\hlstd{)]} \end{alltt} @@ -4287,7 +4399,7 @@ \section{Vector manipulation}\label{sec:vectors}\label{sec:calc:indexing} The length of the indexing vector is \emph{not} restricted by the length of the indexed vector. However, only numerical indexes that match positions present in the indexed vector can extract values. Those values in the indexing vector pointing to positions that are not present in the indexed vector, result in \code{NA}s. This is easier to learn by \emph{playing} with \Rlang, than from explanations. Play with \Rlang, using the following examples as a starting point. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{length}\hlstd{(a)} \hlstd{vct1[}\hlkwd{c}\hlstd{(}\hlnum{3}\hlstd{,} \hlnum{3}\hlstd{,} \hlnum{3}\hlstd{,} \hlnum{3}\hlstd{)]} @@ -4305,7 +4417,7 @@ \section{Vector manipulation}\label{sec:vectors}\label{sec:calc:indexing} Negative indexes have a special meaning; they indicate the positions at which values should be excluded. Be aware that it is \emph{illegal} to mix positive and negative values in the same indexing operation. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct1[}\hlopt{-}\hlnum{2}\hlstd{]} \end{alltt} @@ -4331,7 +4443,7 @@ \section{Vector manipulation}\label{sec:vectors}\label{sec:calc:indexing} Results from indexing with special values and zero may be surprising. Try to build a rule from the examples below, a rule that will help you remember what to expect next time you are confronted with similar statements using ``subscripts'' which are special values instead of integers larger or equal to one---this is likely to happen sooner or later as these special values can be returned by different \Rlang expressions depending on the value of operands or function arguments, some of them described earlier in this chapter. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct1[ ]} \hlstd{vct1[}\hlnum{0}\hlstd{]} @@ -4345,10 +4457,10 @@ \section{Vector manipulation}\label{sec:vectors}\label{sec:calc:indexing} \end{knitrout} \end{advplayground} -Another way of indexing, which is very handy, but not available in most other programming languages, is indexing with a vector of \code{logical} values. The \code{logical} vector used for indexing is usually of the same length as the vector from which elements are going to be selected. However, this is not a requirement, because if the \code{logical} vector of indexes is shorter than the indexed vector, it is ``recycled'' as discussed above in relation to other operators. +Another way of indexing, which is very handy, but not available in most other programming languages, is indexing with a vector of \code{logical} values. The \code{logical} vector used for indexing is usually of the same length as the vector from which elements are going to be selected. However, this is not a requirement, because if the \code{logical} vector of indexes is shorter than the indexed vector, it is ``recycled'' as discussed in page \pageref{par:recycling:numeric} in relation to other operators. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct1[}\hlnum{TRUE}\hlstd{]} \end{alltt} @@ -4394,7 +4506,7 @@ \section{Vector manipulation}\label{sec:vectors}\label{sec:calc:indexing} The examples in this text box demonstrate additional uses of logical vectors: 1) the logical vector returned by a vectorized comparison can be stored in a variable, and the variable used as a ``selector'' for extracting a subset of values from the same vector, or from a different vector. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct1} \hlkwb{<-} \hlstd{letters[}\hlnum{1}\hlopt{:}\hlnum{10}\hlstd{]} \hlstd{vct2} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{10} @@ -4409,7 +4521,7 @@ \section{Vector manipulation}\label{sec:vectors}\label{sec:calc:indexing} Numerical indexes can be obtained from a logical vector by means of function \code{which()}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{indexes} \hlkwb{<-} \hlkwd{which}\hlstd{(vct1} \hlopt{>} \hlstr{"c"}\hlstd{)} \hlstd{indexes} @@ -4429,7 +4541,7 @@ \section{Vector manipulation}\label{sec:vectors}\label{sec:calc:indexing} Let's assume we have a long vector encoding treatments using single letter codes and we want to replace these codes with clearer names. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{treat} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlstr{"H"}\hlstd{,} \hlstr{"C"}\hlstd{,} \hlstr{"H"}\hlstd{,} \hlstr{"W"}\hlstd{,} \hlstr{"C"}\hlstd{,} \hlstr{"H"}\hlstd{,} \hlstr{"H"}\hlstd{,} \hlstr{"W"}\hlstd{,} \hlstr{"W"}\hlstd{)} \end{alltt} @@ -4439,7 +4551,7 @@ \section{Vector manipulation}\label{sec:vectors}\label{sec:calc:indexing} We can create a named vector to \emph{map} the single letter codes into some other codes, in this case full words that are easier to understand. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{treat.map} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlkwc{H} \hlstd{=} \hlstr{"hot"}\hlstd{,} \hlkwc{C} \hlstd{=} \hlstr{"cold"}\hlstd{,} \hlkwc{W} \hlstd{=} \hlstr{"warm"}\hlstd{)} \hlstd{treat.map} @@ -4481,7 +4593,7 @@ \section{Vector manipulation}\label{sec:vectors}\label{sec:calc:indexing} As \code{treat.map} is a named vector, we can use the element names as indices for element extraction. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{treat.map[}\hlstr{"H"}\hlstd{]} \end{alltt} @@ -4495,7 +4607,7 @@ \section{Vector manipulation}\label{sec:vectors}\label{sec:calc:indexing} The indexing vector can be of a different length than the indexed vector, and the returned value is a new vector of the same length as the indexing vector. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{treat.new} \hlkwb{<-} \hlstd{treat.map[treat]} \hlstd{treat.new} @@ -4510,7 +4622,7 @@ \section{Vector manipulation}\label{sec:vectors}\label{sec:calc:indexing} where \code{treat.new} is a named vector, from which we will frequently want to remove the names. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{treat.new} \hlkwb{<-} \hlkwd{unname}\hlstd{(treat.new)} \hlstd{treat.new} @@ -4527,7 +4639,7 @@ \section{Vector manipulation}\label{sec:vectors}\label{sec:calc:indexing} Indexing can be used on either side of an assignment expression. In the chunk below, we use the extraction operator on the left-hand side of the assignments to replace values only at selected positions in the vector. This may look rather esoteric at first sight, but it is just a simple extension of the logic of indexing described above. It works, because the low precedence of the \Roperator{<-} operator results in both the left-hand side and the right-hand side being fully evaluated before the assignment takes place. To make the changes to the vectors easier to follow, we use identical vectors with different names for each of these examples. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct2} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{10} \hlstd{vct2} @@ -4580,7 +4692,7 @@ \section{Vector manipulation}\label{sec:vectors}\label{sec:calc:indexing} We can also use subscripting on both sides of the assignment operator, for example, to swap two elements. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct3} \hlkwb{<-} \hlstd{letters[}\hlnum{1}\hlopt{:}\hlnum{10}\hlstd{]} \hlstd{vct3[}\hlnum{1}\hlopt{:}\hlnum{2}\hlstd{]} \hlkwb{<-} \hlstd{vct3[}\hlnum{2}\hlopt{:}\hlnum{1}\hlstd{]} @@ -4596,7 +4708,7 @@ \section{Vector manipulation}\label{sec:vectors}\label{sec:calc:indexing} Do play with subscripts to your heart's content, really grasping how they work and how they can be used, will be very useful in anything you do in the future with \Rlang. Even the contrived example below follows the same simple rules, just study it bit by bit. Hint: the second statement in the chunk below, modifies \code{a}, so, when studying variations of this example you will need to recreate \code{a} by executing the first statement, each time you run a variation of the second statement. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{VCT1} \hlkwb{<-} \hlstd{letters[}\hlnum{1}\hlopt{:}\hlnum{10}\hlstd{]} \hlstd{VCT1[}\hlnum{5}\hlopt{:}\hlnum{1}\hlstd{]} \hlkwb{<-} \hlstd{VCT1[}\hlkwd{c}\hlstd{(}\hlnum{TRUE}\hlstd{,}\hlnum{FALSE}\hlstd{)]} @@ -4611,7 +4723,7 @@ \section{Vector manipulation}\label{sec:vectors}\label{sec:calc:indexing} In \Rlang, indexing with positional indexes can be done with \Rclass{integer} or \Rclass{numeric} values. Numeric values can be floats, but for indexing, only integer values are meaningful. Consequently, \Rclass{double} values are converted into \code{integer} values when used as indexes. The conversion is done invisibly, but it does slow down computations slightly. When working on big data sets, explicitly using \code{integer} values can improve performance. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct4} \hlkwb{<-} \hlstd{LETTERS[}\hlnum{1}\hlopt{:}\hlnum{10}\hlstd{]} \hlstd{vct4} @@ -4649,7 +4761,7 @@ \section{Vector manipulation}\label{sec:vectors}\label{sec:calc:indexing} From this experiment, we can learn that if positive indexes are not whole numbers, they are truncated to the next smaller integer. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct4} \hlkwb{<-} \hlstd{LETTERS[}\hlnum{1}\hlopt{:}\hlnum{10}\hlstd{]} \hlstd{vct4} @@ -4693,7 +4805,7 @@ \section{Vector manipulation}\label{sec:vectors}\label{sec:calc:indexing} A\index{vectors!sorting} frequent operation on vectors is sorting them into an increasing or decreasing order. The most direct approach is to use \Rfunction{sort()}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct5} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlnum{10}\hlstd{,} \hlnum{4}\hlstd{,} \hlnum{22}\hlstd{,} \hlnum{1}\hlstd{,} \hlnum{4}\hlstd{)} \hlkwd{sort}\hlstd{(vct5)} @@ -4713,7 +4825,7 @@ \section{Vector manipulation}\label{sec:vectors}\label{sec:calc:indexing} An indirect way of sorting a vector, possibly based on a different vector, is to generate with \Rfunction{order()} a vector of numerical indexes that can be used to achieve the ordering. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{order}\hlstd{(vct5)} \end{alltt} @@ -4740,7 +4852,7 @@ \section{Vector manipulation}\label{sec:vectors}\label{sec:calc:indexing} A problem linked to sorting that we may face is counting how many copies of each value are present in a vector. We need to use two functions \Rfunction{sort()} and \Rfunction{rle()}\index{vector!run length encoding}. The second of these functions computes \emph{run length} as used in \emph{run length encoding} for which \emph{rle} is an abbreviation. A \emph{run} is a series of consecutive identical values. As the objective is to count the number of copies of each value present, we need first to sort the vector. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct7} \hlkwb{<-} \hlstd{letters[}\hlkwd{c}\hlstd{(}\hlnum{1}\hlstd{,} \hlnum{5}\hlstd{,} \hlnum{10}\hlstd{,} \hlnum{3}\hlstd{,} \hlnum{1}\hlstd{,} \hlnum{4}\hlstd{,} \hlnum{21}\hlstd{,} \hlnum{1}\hlstd{,} \hlnum{10}\hlstd{)]} \hlstd{vct7} @@ -4772,7 +4884,7 @@ \section{Vector manipulation}\label{sec:vectors}\label{sec:calc:indexing} The code below removes all objects except those whose names are in vector \code{to.keep}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{remove}\hlstd{(}\hlkwc{list} \hlstd{=} \hlkwd{setdiff}\hlstd{(}\hlkwd{ls}\hlstd{(}\hlkwc{pattern}\hlstd{=}\hlstr{"*"}\hlstd{), to.keep))} \end{alltt} @@ -4867,7 +4979,7 @@ \section{Matrices and multidimensional arrays}\label{sec:matrix:array} We can create a matrix using the \Rfunction{matrix()} or \Rfunction{as.matrix()} constructors. The first argument of \Rfunction{matrix()} must be a vector. Function \Rfunction{as.matrix()} is a conversion constructor, with specializations accepting as argument objects belonging to a few other classes. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{matrix}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{15}\hlstd{,} \hlkwc{ncol} \hlstd{=} \hlnum{3}\hlstd{)} \end{alltt} @@ -4899,7 +5011,7 @@ \section{Matrices and multidimensional arrays}\label{sec:matrix:array} Check in the help page for the \code{matrix}\qRfunction{matrix()} constructor how to use the \code{byrow} parameter to alter the default order in which the elements of the vector are allocated to columns and rows of the new matrix. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{help}\hlstd{(matrix)} \end{alltt} @@ -4909,7 +5021,7 @@ \section{Matrices and multidimensional arrays}\label{sec:matrix:array} While you are looking at the help page, also consider the default number of columns and rows. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{matrix}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{15}\hlstd{)} \end{alltt} @@ -4919,7 +5031,7 @@ \section{Matrices and multidimensional arrays}\label{sec:matrix:array} And to start getting a sense of how to interpret error and warning messages, run the code below and make sure you understand which problem is being reported. Before executing the statement, analyze it and predict what the returned value will be. Afterwards, compare your prediction, to the value actually returned. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{matrix}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{15}\hlstd{,} \hlkwc{ncol} \hlstd{=} \hlnum{2}\hlstd{)} \end{alltt} @@ -4931,7 +5043,7 @@ \section{Matrices and multidimensional arrays}\label{sec:matrix:array} Subscripting of matrices and arrays is consistent with that used for vectors; we only need to supply an indexing vector, or leave a blank space, for each dimension. A matrix has two dimensions, so to access an element or group of elements, we use two indices. The first index value selects rows, and the second one, columns. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{mat1} \hlkwb{<-} \hlkwd{matrix}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{20}\hlstd{,} \hlkwc{ncol} \hlstd{=} \hlnum{4}\hlstd{)} \hlstd{mat1} @@ -4950,13 +5062,19 @@ \section{Matrices and multidimensional arrays}\label{sec:matrix:array} \begin{verbatim} ## [1] 6 \end{verbatim} +\begin{alltt} +\hlstd{mat1[}\hlnum{2}\hlstd{,} \hlnum{1}\hlstd{]} +\end{alltt} +\begin{verbatim} +## [1] 2 +\end{verbatim} \end{kframe} \end{knitrout} Remind yourself of how indexing of vectors works in \Rlang (see section \ref{sec:vectors} on page \pageref{sec:vectors}). We will now apply the same rules in two dimensions to extract and replace values. The first or leftmost indexing vector corresponds to rows and the second one to columns, so \Rlang uses a rows-first convention for indexing. Missing indexing vectors are interpreted as meaning \emph{extract all rows} and \emph{extract all columns}, respectively. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{mat1[}\hlnum{1}\hlstd{, ]} \end{alltt} @@ -5005,10 +5123,10 @@ \section{Matrices and multidimensional arrays}\label{sec:matrix:array} \end{knitrout} \begin{explainbox} -Vectors are simpler than matrices, and by default when possible the ``slice'' extracted from a matrix it is simplified into a vector by dropping one dimension. By passing \code{drop = FALSE}, we can prevent this. +Vectors are simpler than matrices, and by default when possible the ``slice'' extracted from a matrix is simplified into a vector by dropping one dimension. By passing \code{drop = FALSE}, we can prevent this. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{is.matrix}\hlstd{(mat1[}\hlnum{1}\hlstd{, ])} \end{alltt} @@ -5021,6 +5139,11 @@ \section{Matrices and multidimensional arrays}\label{sec:matrix:array} \begin{verbatim} ## [1] TRUE \end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{is.vector}\hlstd{(mat1[}\hlnum{1}\hlstd{, ])} \end{alltt} @@ -5033,6 +5156,11 @@ \section{Matrices and multidimensional arrays}\label{sec:matrix:array} \begin{verbatim} ## [1] FALSE \end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{is.matrix}\hlstd{(mat1[}\hlnum{1}\hlstd{, ,} \hlkwc{drop} \hlstd{=} \hlnum{FALSE}\hlstd{])} \end{alltt} @@ -5053,7 +5181,7 @@ \section{Matrices and multidimensional arrays}\label{sec:matrix:array} Matrices, like vectors, can be assigned names that function as ``nicknames'' for indices for assignment and extraction. Matrices can have row names and/or column names. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{colnames}\hlstd{(mat1)} \end{alltt} @@ -5108,7 +5236,7 @@ \section{Matrices and multidimensional arrays}\label{sec:matrix:array} Matrices can be indexed as vectors, without triggering an error or warning. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{mat1} \hlkwb{<-} \hlkwd{matrix}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{20}\hlstd{,} \hlkwc{ncol} \hlstd{=} \hlnum{4}\hlstd{)} \hlstd{mat1} @@ -5145,7 +5273,7 @@ \section{Matrices and multidimensional arrays}\label{sec:matrix:array} The next code example demonstrates that indexing as a vector with a single index, always works column-wise even if matrix \code{B} was created by assigning vector elements by row. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{mat2} \hlkwb{<-} \hlkwd{matrix}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{20}\hlstd{,} \hlkwc{ncol} \hlstd{=} \hlnum{4}\hlstd{,} \hlkwc{byrow} \hlstd{=} \hlnum{TRUE}\hlstd{)} \hlstd{mat2} @@ -5184,7 +5312,7 @@ \section{Matrices and multidimensional arrays}\label{sec:matrix:array} In \Rlang, a \Rclass{matrix} can have a single row, a single column, a single element or no elements. However, in all cases, a \code{matrix} will have as \emph{dimensions} attribute an \code{integer} vector of length two. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct1} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{6} \hlkwd{dim}\hlstd{(vct1)} @@ -5196,7 +5324,7 @@ \section{Matrices and multidimensional arrays}\label{sec:matrix:array} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{one.col.matrix} \hlkwb{<-} \hlkwd{matrix}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{6}\hlstd{,} \hlkwc{ncol} \hlstd{=} \hlnum{1}\hlstd{)} \hlkwd{dim}\hlstd{(one.col.matrix)} @@ -5317,7 +5445,7 @@ \section{Matrices and multidimensional arrays}\label{sec:matrix:array} When calling the constructor \Rfunction{array()}, dimensions are specified with the argument passed to parameter \code{dim}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{ary1} \hlkwb{<-} \hlkwd{array}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{27}\hlstd{,} \hlkwc{dim} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{3}\hlstd{,} \hlnum{3}\hlstd{,} \hlnum{3}\hlstd{))} \hlstd{ary1} @@ -5359,7 +5487,7 @@ \section{Matrices and multidimensional arrays}\label{sec:matrix:array} How do you use indexes to extract the second element of the original vector, in each of the following matrices and arrays? \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{VCT2} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{10} \hlstd{MAT1} \hlkwb{<-} \hlkwd{matrix}\hlstd{(VCT2,} \hlkwc{ncol} \hlstd{=} \hlnum{2}\hlstd{)} @@ -5371,7 +5499,7 @@ \section{Matrices and multidimensional arrays}\label{sec:matrix:array} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{ARY1} \hlkwb{<-} \hlkwd{array}\hlstd{(VCT2,} \hlkwc{dim} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{5}\hlstd{,} \hlnum{2}\hlstd{))} \hlstd{ARY2} \hlkwb{<-} \hlkwd{array}\hlstd{(VCT2,} \hlkwc{dim} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{5}\hlstd{,} \hlnum{2}\hlstd{),} \hlkwc{dimnames} \hlstd{=} \hlkwd{list}\hlstd{(}\hlkwa{NULL}\hlstd{,} \hlkwd{c}\hlstd{(}\hlstr{"c1"}\hlstd{,} \hlstr{"c2"}\hlstd{)))} @@ -5383,46 +5511,20 @@ \section{Matrices and multidimensional arrays}\label{sec:matrix:array} Be aware that vectors and one-dimensional arrays are not the same thing, while two-dimensional arrays are matrices. \begin{enumerate} \item Use the different constructors and query functions to explore this, and its consequences. - \item Convert a matrix into a vector using \Rfunction{unlist()} and \Rfunction{as.vector()} and compare the returned values. + \item Convert a matrix into a vector using \Rfunction{as.vector()} and compare the returned values to those in the matrix. Are values extracted by columns or by rows first. \end{enumerate} \end{playground} \index{arrays|)} \index{matrix!operators|(} -Operators for matrices are available in \Rlang, as matrices are used in many statistical algorithms. We will not describe them all here, only \Rfunction{t()} and some specializations of arithmetic operators. Function \Rfunction{t()} transposes\index{matrix!transpose} a matrix, by swapping columns and rows. +Operators and functions for matrix algebra are available in \Rlang as matrices are used in statistical algorithms. I describe below only some of these matrix-specific functions and operators. I also give examples of the use of some of the usual arithmetic operators together with objects of class \Rclass{matrix}. -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{mat3} \hlkwb{<-} \hlkwd{matrix}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{20}\hlstd{,} \hlkwc{ncol} \hlstd{=} \hlnum{4}\hlstd{)} -\hlstd{mat3} -\end{alltt} -\begin{verbatim} -## [,1] [,2] [,3] [,4] -## [1,] 1 6 11 16 -## [2,] 2 7 12 17 -## [3,] 3 8 13 18 -## [4,] 4 9 14 19 -## [5,] 5 10 15 20 -\end{verbatim} -\begin{alltt} -\hlkwd{t}\hlstd{(mat3)} -\end{alltt} -\begin{verbatim} -## [,1] [,2] [,3] [,4] [,5] -## [1,] 1 2 3 4 5 -## [2,] 6 7 8 9 10 -## [3,] 11 12 13 14 15 -## [4,] 16 17 18 19 20 -\end{verbatim} -\end{kframe} -\end{knitrout} - -As with vectors, recycling applies to arithmetic operators when applied to matrices.\index{matrix!operations with vectors} +Recycling applies to the usual arithmetic operators when applied to matrices. This is similar to their behavior when all operands are vectors (see page \pageref{par:recycling:numeric}).\index{matrix!operations with vectors} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} +\hlstd{mat3} \hlkwb{<-} \hlkwd{matrix}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{20}\hlstd{,} \hlkwc{ncol} \hlstd{=} \hlnum{4}\hlstd{)} \hlstd{mat3} \hlopt{+} \hlnum{2} \end{alltt} \begin{verbatim} @@ -5458,10 +5560,50 @@ \section{Matrices and multidimensional arrays}\label{sec:matrix:array} \end{kframe} \end{knitrout} -In the examples above with the usual multiplication operator \code{*}, the operation described is not a matrix product, but instead, the products between individual elements of the matrix and vectors. Operators and functions implementing the operations of matrix algebra are available. Matrix algebra gives the rules for operations where both operands are matrices. For example, matrix multiplication is indicated by operator \Roperator{\%*\%}. \index{matrix!multiplication} +\begin{playground} + When a \code{matrix} and a \code{vector} are operands in an arithmetic operation, how the positions of the \code{vector} are mapped to positions in the \code{matrix} affects the result of the operation. Run the code below to find out. What is the logic behind? \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{matrix}\hlstd{(}\hlkwd{rep}\hlstd{(}\hlnum{1}\hlstd{,} \hlnum{6}\hlstd{))} \hlopt{*} \hlnum{1}\hlopt{:}\hlnum{6} +\end{alltt} +\end{kframe} +\end{knitrout} +\end{playground} + +Function \Rfunction{t()} transposes\index{matrix!transpose} a matrix, by swapping columns and rows. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{mat3} +\end{alltt} +\begin{verbatim} +## [,1] [,2] [,3] [,4] +## [1,] 1 6 11 16 +## [2,] 2 7 12 17 +## [3,] 3 8 13 18 +## [4,] 4 9 14 19 +## [5,] 5 10 15 20 +\end{verbatim} +\begin{alltt} +\hlkwd{t}\hlstd{(mat3)} +\end{alltt} +\begin{verbatim} +## [,1] [,2] [,3] [,4] [,5] +## [1,] 1 2 3 4 5 +## [2,] 6 7 8 9 10 +## [3,] 11 12 13 14 15 +## [4,] 16 17 18 19 20 +\end{verbatim} +\end{kframe} +\end{knitrout} + +In the examples above with the usual multiplication operator \code{*}, the operation described is not a matrix product, but instead, the products between individual elements of the matrix and vectors. Operators and functions implementing the operations of matrix algebra are distinct. Matrix algebra gives the rules for operations where both operands are matrices. For example, matrix multiplication is indicated by operator \Roperator{\%*\%}. \index{matrix!multiplication} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{mat4} \hlkwb{<-} \hlkwd{matrix}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{16}\hlstd{,} \hlkwc{ncol} \hlstd{=} \hlnum{4}\hlstd{)} \hlstd{mat4} \hlopt{*} \hlstd{mat4} @@ -5486,7 +5628,52 @@ \section{Matrices and multidimensional arrays}\label{sec:matrix:array} \end{kframe} \end{knitrout} -Other operators and functions for matrix algebra like cross-product (\Rfunction{crossprod()}), extracting or replacing the diagonal (\Rfunction{diag()}) are available in base \Rlang. Packages, including \pkgname{matrixStats}, provide additional functions and operators for matrices. +Function \Rfunction{diag()} makes it possible to easily create a diagonal matrix. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{mat5} \hlkwb{<-} \hlkwd{diag}\hlstd{(}\hlnum{4}\hlstd{)} +\hlstd{mat5} +\end{alltt} +\begin{verbatim} +## [,1] [,2] [,3] [,4] +## [1,] 1 0 0 0 +## [2,] 0 1 0 0 +## [3,] 0 0 1 0 +## [4,] 0 0 0 1 +\end{verbatim} +\begin{alltt} +\hlstd{mat4} \hlopt{%*%} \hlstd{mat5} +\end{alltt} +\begin{verbatim} +## [,1] [,2] [,3] [,4] +## [1,] 1 5 9 13 +## [2,] 2 6 10 14 +## [3,] 3 7 11 15 +## [4,] 4 8 12 16 +\end{verbatim} +\end{kframe} +\end{knitrout} + +The inverse of a matrix can be found by means of function \Rfunction{solve()}. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{mat6} \hlkwb{<-} \hlkwd{matrix}\hlstd{(}\hlkwd{c}\hlstd{(}\hlnum{3}\hlstd{,} \hlnum{2}\hlstd{,} \hlnum{0}\hlstd{,} \hlnum{1}\hlstd{,} \hlnum{3}\hlstd{,} \hlnum{2}\hlstd{,} \hlnum{7}\hlstd{,} \hlnum{2}\hlstd{,} \hlnum{4}\hlstd{),} \hlkwc{ncol} \hlstd{=} \hlnum{3}\hlstd{)} +\hlkwd{solve}\hlstd{(mat6)} +\end{alltt} +\begin{verbatim} +## [,1] [,2] [,3] +## [1,] 0.18181818 0.2272727 -0.4318182 +## [2,] -0.18181818 0.2727273 0.1818182 +## [3,] 0.09090909 -0.1363636 0.1590909 +\end{verbatim} +\end{kframe} +\end{knitrout} + +Additional operators and functions for matrix algebra like cross-product (\code{crossprod()}) and Cholesky root (\code{chol()}) are available in base \Rlang. Packages, including \pkgname{matrixStats}, provide additional functions and operators for matrices. \begin{explainbox} The code below removes all objects except those whose names are in vector \code{to.keep}. @@ -5511,7 +5698,7 @@ \section{Factors}\label{sec:calc:factors} When using \Rfunction{factor()} or \Rfunction{ordered()} we create a factor from a vector, but this vector can be created on-the-fly and anonymous as shown in this example. When the vector is \code{numeric} and no labels are supplied, level labels are character strings matching the numbers. The default ordering of the levels is alphanumerical. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{factor}\hlstd{(}\hlkwc{x} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{1}\hlstd{,} \hlnum{2}\hlstd{,} \hlnum{2}\hlstd{,} \hlnum{1}\hlstd{,} \hlnum{2}\hlstd{,} \hlnum{1}\hlstd{,} \hlnum{1}\hlstd{))} \end{alltt} @@ -5540,7 +5727,7 @@ \section{Factors}\label{sec:calc:factors} When the pattern of levels is regular, it is possible to use function \Rfunction{gl()}, \emph{generate levels}, to construct a factor. Nowadays, it is usual to read data into \Rlang from files in which the treatment codes are already available as character strings or numeric values, however, when we need to create a factor within R, \Rfunction{gl()} can save some typing. In this case instead of passing a vector as argument, we pass a \emph{recipe} to create it: \code{n} is the number of levels, and \code{k} the number of contiguous repeats (called ``replicates'' in \Rlang documentation) and \code{length} the length of the factor to be created. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{gl}\hlstd{(}\hlkwc{n} \hlstd{=} \hlnum{2}\hlstd{,} \hlkwc{k} \hlstd{=} \hlnum{5}\hlstd{,} \hlkwc{labels} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"A"}\hlstd{,} \hlstr{"B"}\hlstd{))} \end{alltt} @@ -5562,7 +5749,7 @@ \section{Factors}\label{sec:calc:factors} It is always preferable to use meaningful labels for levels, even if \Rlang does not require it. Here the vector is stored in a variable named \code{my.vector}. In a real data analysis situation in most cases the vector would have been read from a file on disk and would be longer. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct1} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlstr{"treated"}\hlstd{,} \hlstr{"treated"}\hlstd{,} \hlstr{"control"}\hlstd{,} \hlstr{"control"}\hlstd{,} \hlstr{"control"}\hlstd{,} \hlstr{"treated"}\hlstd{)} \hlkwd{factor}\hlstd{(vct1)} @@ -5577,7 +5764,7 @@ \section{Factors}\label{sec:calc:factors} The ordering of levels is established at the time a factor is created, and by default is alphabetical. This default ordering of levels is frequently not the one needed. We can pass an argument to parameter \code{levels} of function \Rfunction{factor()} to set a different ordering of the levels. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{factor}\hlstd{(}\hlkwc{x} \hlstd{= vct1,} \hlkwc{levels} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"treated"}\hlstd{,} \hlstr{"control"}\hlstd{))} \end{alltt} @@ -5591,7 +5778,7 @@ \section{Factors}\label{sec:calc:factors} The\index{factors!labels}\index{factors!levels} labels (``names'') of the levels can be set when calling \Rfunction{factor()}. Two vectors are passed as arguments to parameters \code{levels} and \code{labels} with levels and matching labels in the same position. The argument passed to \code{levels} determines the order of the levels based on their old names or values, and the argument passed to \code{labels} gives new names to the levels.\label{par:calc:factor:rename:levels} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{factor}\hlstd{(}\hlkwc{x} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"a"}\hlstd{,} \hlstr{"b"}\hlstd{,} \hlstr{"b"}\hlstd{,} \hlstr{"b"}\hlstd{,} \hlstr{"a"}\hlstd{),} \hlkwc{levels} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"b"}\hlstd{),} \hlkwc{labels} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"treated"}\hlstd{,} \hlstr{"control"}\hlstd{))} \end{alltt} @@ -5605,7 +5792,7 @@ \section{Factors}\label{sec:calc:factors} The argument passed to labels can be a named vector that \emph{maps} new labels onto the values as stored in the vector passed as argument to parameter \code{x} (see named vectors and mapping on page \pageref{par:calc:vector:map}). \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{factor}\hlstd{(}\hlkwc{x} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"a"}\hlstd{,} \hlstr{"b"}\hlstd{,} \hlstr{"b"}\hlstd{,} \hlstr{"b"}\hlstd{,} \hlstr{"a"}\hlstd{),} \hlkwc{labels} \hlstd{=} \hlkwd{c}\hlstd{(}\hlkwc{a} \hlstd{=} \hlstr{"treated"}\hlstd{,} \hlkwc{b} \hlstd{=} \hlstr{"control"}\hlstd{))} \end{alltt} @@ -5619,7 +5806,7 @@ \section{Factors}\label{sec:calc:factors} In the examples above we passed a numeric vector or a character vector as an argument for parameter \code{x} of function \Rfunction{factor()}. It is also possible to pass a \code{factor} as an argument to parameter \code{x}. This makes it possible to modify the ordering of levels or replace the labels in a factor. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{fct1} \hlkwb{<-} \hlkwd{factor}\hlstd{(}\hlkwc{x} \hlstd{= vct1)} \hlstd{fct1} @@ -5657,7 +5844,7 @@ \section{Factors}\label{sec:calc:factors} \textbf{Merging factor levels.}\index{factors!merge levels} We use \Rfunction{factor()} as shown below, setting the same label for the levels we want to merge. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{fct2} \hlkwb{<-} \hlkwd{gl}\hlstd{(}\hlnum{4}\hlstd{,} \hlnum{3}\hlstd{,} \hlkwc{labels} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"A"}\hlstd{,} \hlstr{"F"}\hlstd{,} \hlstr{"B"}\hlstd{,} \hlstr{"Z"}\hlstd{))} \hlstd{fct2} @@ -5685,7 +5872,7 @@ \section{Factors}\label{sec:calc:factors} We can use indexing on factors in the same way as with vectors. In the next example, we use a test returning a logical vector to extract all ``controls.'' We use function \Rfunction{levels()} to look at the levels of the factors, as with vectors, \code{lengtgh()} to query the number of values stored. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{fct1} \end{alltt} @@ -5741,7 +5928,7 @@ \section{Factors}\label{sec:calc:factors} How to convert factors into numeric vectors is not obvious, even when the factor was created from a \code{numeric} vector. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{vct3} \hlkwb{<-} \hlkwd{rep}\hlstd{(}\hlnum{3}\hlopt{:}\hlnum{5}\hlstd{,} \hlnum{4}\hlstd{)} \hlstd{vct3} @@ -5777,7 +5964,7 @@ \section{Factors}\label{sec:calc:factors} \textbf{Why is a double conversion needed?}\index{factors!convert to numeric} Internally, factor values are are stored as running integers starting from one, each distinct integer value corresponding to a level. These underlying integer values are returned by \Rfunction{as.numeric()} when applied to a factor. The labels of the factor levels are always stored as character strings, even when these characters are digits. In contrast to \Rfunction{as.numeric()}, \Rfunction{as.character()} returns the character labels of the levels for each of the values stored in the factor. If these character strings represent numbers, they can be converted, in a second step, using \Rfunction{as.numeric()} into the original numeric values. Use of \code{class} and \code{mode} is described on section \ref{sec:rlang:mode} on page \pageref{sec:rlang:mode}, and \code{str()} on page \pageref{par:calc:str}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{class}\hlstd{(fct3)} \end{alltt} @@ -5811,7 +5998,7 @@ \section{Factors}\label{sec:calc:factors} Reverse previous order using \Rfunction{rev()}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{fct4} \hlkwb{<-} \hlkwd{factor}\hlstd{(}\hlkwd{c}\hlstd{(}\hlstr{"treated"}\hlstd{,} \hlstr{"treated"}\hlstd{,} \hlstr{"control"}\hlstd{,} \hlstr{"control"}\hlstd{,} \hlstr{"control"}\hlstd{,} \hlstr{"treated"}\hlstd{))} \hlkwd{levels}\hlstd{(fct4)} @@ -5832,7 +6019,7 @@ \section{Factors}\label{sec:calc:factors} Sort in decreasing order, i.e., opposite to default. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{fct5} \hlkwb{<-} \hlkwd{factor}\hlstd{(fct4,} \hlkwc{levels} \hlstd{=} \hlkwd{sort}\hlstd{(}\hlkwd{levels}\hlstd{(fct4),} \hlkwc{decreasing} \hlstd{=} \hlnum{TRUE}\hlstd{))} @@ -5847,7 +6034,7 @@ \section{Factors}\label{sec:calc:factors} Alter ordering using subscripting; especially useful with three or more levels. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{fct6} \hlkwb{<-} \hlkwd{factor}\hlstd{(fct4,} \hlkwc{levels} \hlstd{=} \hlkwd{levels}\hlstd{(fct4)[}\hlkwd{c}\hlstd{(}\hlnum{2}\hlstd{,} \hlnum{1}\hlstd{)])} \hlkwd{levels}\hlstd{(fct6)} @@ -5861,7 +6048,7 @@ \section{Factors}\label{sec:calc:factors} Reordering the levels of a factor based on summary quantities from data stored in a numeric vector is very useful, especially when plotting. Function \Rfunction{reorder()} can be used in this case. It defaults to using \code{mean()} for summaries, but other suitable summary functions, such as \code{median()} can be supplied in its place. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{fct7} \hlkwb{<-} \hlkwd{gl}\hlstd{(}\hlnum{2}\hlstd{,} \hlnum{5}\hlstd{,} \hlkwc{labels} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"A"}\hlstd{,} \hlstr{"B"}\hlstd{))} \hlstd{vct4} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlnum{5.6}\hlstd{,} \hlnum{7.3}\hlstd{,} \hlnum{3.1}\hlstd{,} \hlnum{8.7}\hlstd{,} \hlnum{6.9}\hlstd{,} \hlnum{2.4}\hlstd{,} \hlnum{4.5}\hlstd{,} \hlnum{2.1}\hlstd{,} \hlnum{1.4}\hlstd{,} \hlnum{2.0}\hlstd{)} @@ -5896,12 +6083,19 @@ \section{Factors}\label{sec:calc:factors} \textbf{Reordering factor values.}\index{factors!reorder values}\index{factors!arrange values} It is possible to arrange the values stored in a factor either alphabetically according to the labels of the levels or according to the order of the levels. (The use of \code{rep()} is explained on page \pageref{pg:seq:rep}.) \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlcom{# gl() keeps order of levels} \hlstd{FCT1} \hlkwb{<-} \hlkwd{gl}\hlstd{(}\hlnum{4}\hlstd{,} \hlnum{3}\hlstd{,} \hlkwc{labels} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"A"}\hlstd{,} \hlstr{"F"}\hlstd{,} \hlstr{"B"}\hlstd{,} \hlstr{"Z"}\hlstd{))} \hlstd{FCT1} \hlkwd{as.integer}\hlstd{(FCT1)} +\end{alltt} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} +\begin{alltt} \hlcom{# factor() orders levels alphabetically} \hlstd{FCT2} \hlkwb{<-} \hlkwd{factor}\hlstd{(}\hlkwd{rep}\hlstd{(}\hlkwd{c}\hlstd{(}\hlstr{"A"}\hlstd{,} \hlstr{"F"}\hlstd{,} \hlstr{"B"}\hlstd{,} \hlstr{"Z"}\hlstd{),} \hlkwc{times} \hlstd{=} \hlkwd{rep}\hlstd{(}\hlnum{3}\hlstd{,} \hlkwc{times} \hlstd{=} \hlnum{4}\hlstd{)))} \hlcom{# nested calls} \hlstd{FCT2} @@ -5914,7 +6108,7 @@ \section{Factors}\label{sec:calc:factors} We see above that the integer values by which levels in a factor are stored, are equivalent to indices or ``subscripts'' referencing the vector of labels. Function \Rfunction{sort()} operates on the values' underlying integers and sorts according to the order of the levels while \Rfunction{order()} operates on the values' labels and returns a vector of indices that arrange the values alphabetically. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{sort}\hlstd{(FCT2)} \hlstd{FCT2[}\hlkwd{order}\hlstd{(FCT2)]} @@ -5926,6 +6120,10 @@ \section{Factors}\label{sec:calc:factors} Run the examples in the chunk above and work out why the results differ. \end{advplayground} +\begin{explainbox} + Factors encode levels as \code{integer} values in a vector. In many cases, statistical computations, require the same information to be encoded as binary values using multiple \emph{dummy variables}. Factors are much friendlier for the user to manage. They are converted into the equivalent dummy variables when a model formula is translated into a \emph{model matrix}. This is handled transparently by most functions implementing fitting of statistical models to data (see sections \ref{sec:stat:mf} and \ref{sec:stat:formulas} on pages \pageref{sec:stat:mf} and \pageref{sec:stat:formulas}). +\end{explainbox} + \index{factors|)} @@ -5975,7 +6173,9 @@ \section{Data from surveys and experiments} \section{Lists}\label{sec:calc:lists} \index{lists|(}\qRclass{list} -\emph{Lists'} main difference from vectors is, in \Rlang, that they can be heterogeneous. While the member elements of a vector must be \emph{atomic} values, any \Rlang object can be a list member. In \Rlang, the members of a list can be considered as following a sequence, and accessible through numerical indexes, the same as members of vectors. Members of a list as well as members of a vector can be named, and retrieved (indexed) through their names. In practice, named lists are more frequently used than named vectors. Lists are created using function \Rfunction{list()} similarly as \Rfunction{c()} is used for vectors. Members of a list can be objects differing both in their class and in their size. Lists can be nested to construct lists of lists. +In \Rlang, objects of class \Rclass{list} are in several respects similar the vectors described in chapter \ref{chap:R:as:calc} but differently to vectors, the members they contain can be heterogeneous, i.e., different members of the same list can belong to different classes. In addition, while the member elements of a vector must be \emph{atomic} values like numbers or character strings, any \Rlang object can be a list member including other lists. + +In \Rlang, the members of a list can be considered as following a sequence, and accessible through numerical indexes, the same as the members of vectors. Members of a list as well as members of a vector can be named, and retrieved (indexed) through their names. In practice, named lists are more frequently used than named vectors. Lists are created using function \Rfunction{list()} similarly as \Rfunction{c()} is used for vectors. \begin{explainbox} In \Rlang lists can have as members not only objects storing data on observations and categories, but also function definitions, model formulas, unevaluated expressions, matrices, arrays, and objects of user defined classes. @@ -5990,7 +6190,7 @@ \section{Lists}\label{sec:calc:lists} Our first list has as its members three different vectors, each one belonging to a different class: \code{numeric}, \code{character} and \code{logical}. The three vectors also differ in their length: 6, 1, and 2, respectively. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{a.list} \hlkwb{<-} \hlkwd{list}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{3}\hlstd{,} \hlkwc{y} \hlstd{=} \hlstr{"ab"}\hlstd{,} \hlkwc{z} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{TRUE}\hlstd{,} \hlnum{FALSE}\hlstd{))} \end{alltt} @@ -5998,7 +6198,7 @@ \section{Lists}\label{sec:calc:lists} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{str}\hlstd{(a.list)} \end{alltt} @@ -6079,7 +6279,7 @@ \subsection{Member extraction, deletion and insertion} In\index{lists!member extraction|(}\index{lists!member indexing|see{lists, member extraction}}\index{lists!deletion and addition of members|(} section \ref{sec:calc:indexing} on page \pageref{sec:calc:indexing} we saw that the extraction operator \Roperator{[ ]} applied to a vector, returns a vector, longer or shorter, possibly of length one, or even length zero. Similarly, applying operator \Roperator{[ ]} to a list returns a list, possibly of different length: \code{a.list["x"]} or \code{a.list[1]} return a list containing only one member, the numeric vector stored at the first position of \code{a.list}. In the last statement above, \code{a.list[c(1, 3)]} returns a list of length two as expected. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{a.list[}\hlstr{"x"}\hlstd{]} \end{alltt} @@ -6116,7 +6316,7 @@ \subsection{Member extraction, deletion and insertion} As with vectors negative positional indices remove members instead of extracting them. See page \pageref{par:calc:lists:rm} for a safer approach to deletion of list members. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{a.list[}\hlopt{-}\hlnum{1}\hlstd{]} \end{alltt} @@ -6140,7 +6340,7 @@ \subsection{Member extraction, deletion and insertion} Using operator \Roperator{[[ ]]} (double square brackets) for indexing a list extracts the element stored in the list, in its original mode. In the example below, \code{a.list[["x"]]} and \code{a.list[[1]]} return a numeric vector. We might say that extraction operator \Roperator{[[ ]]} reaches ``deeper'' into the list than operator \Roperator{[ ]}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{a.list}\hlopt{$}\hlstd{x} \end{alltt} @@ -6163,7 +6363,7 @@ \subsection{Member extraction, deletion and insertion} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{is.vector}\hlstd{(a.list[}\hlnum{1}\hlstd{])} \end{alltt} @@ -6194,7 +6394,7 @@ \subsection{Member extraction, deletion and insertion} The operators can be used together as shown below, with \code{a.list[[1]]} extracting the vector from \code{a.list} and \code{[3]} extracting the member at position 3 of the vector. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{a.list[[}\hlnum{1}\hlstd{]][}\hlnum{3}\hlstd{]} \end{alltt} @@ -6208,7 +6408,7 @@ \subsection{Member extraction, deletion and insertion} Operators can be used on the lhs as well as on the rhs of an assignment, and lists can be empty, i.e, be of length zero. The example below makes use of this to build a list step by step. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{b.list} \hlkwb{<-} \hlkwd{list}\hlstd{()} \hlstd{b.list[[}\hlstr{"x"}\hlstd{]]} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{3} @@ -6221,7 +6421,7 @@ \subsection{Member extraction, deletion and insertion} Compare \code{b.list} to \code{a.list}, used for the examples above. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{b.list[[}\hlstr{"y"}\hlstd{]]} \hlkwb{<-} \hlstd{b.list[[}\hlstr{"x"}\hlstd{]]} \end{alltt} @@ -6236,7 +6436,7 @@ \subsection{Member extraction, deletion and insertion} Surprisingly, \code{a.list[[c(1, 3)]]} returns the value at position 3 in the first member of the list, an operation that normally would be written as \code{a.list[[1]][3]} using two extractions, one after another. In most cases statements like the one below will be entered by mistake rather than intentionally, but being valid in \Rlang, they will not trigger an error message. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{a.list[[}\hlkwd{c}\hlstd{(}\hlnum{1}\hlstd{,} \hlnum{3}\hlstd{)]]} \end{alltt} @@ -6251,7 +6451,7 @@ \subsection{Member extraction, deletion and insertion} \emph{Lists}, as usually defined in languages like \Clang, are based on pointers to memory locations, with pointers stored at each node. These pointers chain or link the different member nodes (this allows, for example, sorting of lists in place by modifying the pointers). In such implementations, indexing by position is not possible, or at least requires ``walking'' down the list, node by node. In \Rlang, \code{list} members can be accessed through positional indexes, similarly to vectors. Of course, insertions and deletions in the middle of a list, shift the position of members and change which member is pointed at by indexes for positions past the modified location. The names, in contrast remain valid. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{list}\hlstd{(}\hlkwc{a} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{b} \hlstd{=} \hlnum{2}\hlstd{,} \hlkwc{c} \hlstd{=} \hlnum{3}\hlstd{)[}\hlopt{-}\hlnum{2}\hlstd{]} \end{alltt} @@ -6269,7 +6469,7 @@ \subsection{Member extraction, deletion and insertion} Three frequent operations on lists are concatenation, insertions and deletions.\index{lists!insert into}\index{lists!append to} The same functions as with vectors are used: functions \Rfunction{c()} for concatenation and \Rfunction{append()} to append and insert lists. Lists can be combined only with other lists (see pages \pageref{par:calc:concatenate}--\pageref{par:calc:append:end}). \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{another.list} \hlkwb{<-} \hlkwd{append}\hlstd{(a.list,} \hlkwd{list}\hlstd{(}\hlkwc{yy} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{10}\hlstd{,} \hlkwc{zz} \hlstd{= letters[}\hlnum{5}\hlopt{:}\hlnum{1}\hlstd{]),} \hlnum{2}\hlstd{)} \hlstd{another.list} @@ -6296,7 +6496,7 @@ \subsection{Member extraction, deletion and insertion} To\label{par:calc:lists:rm} delete a member from a list we assign \code{NULL} to it. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{a.list}\hlopt{$}\hlstd{y} \hlkwb{<-} \hlkwa{NULL} \hlstd{a.list} @@ -6314,7 +6514,7 @@ \subsection{Member extraction, deletion and insertion} To investigate the members contained in a list, function \Rfunction{str()} (\emph{structure}), used above, is convenient, especially when lists have many members. Structure formats lists more compactly than \code{print()} applied directly to a list.\label{par:calc:str} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{print}\hlstd{(a.list)} \end{alltt} @@ -6343,7 +6543,7 @@ \subsection{Nested lists}\label{sec:calc:lists:nested} Lists can be nested, i.e., lists of lists can be constructed to an arbitrary depth.\index{lists!nested} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{a.list} \hlkwb{<-} \hlkwd{list}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"aa"}\hlstd{,} \hlnum{10}\hlstd{)} \hlstd{b.list} \hlkwb{<-} \hlkwd{list}\hlstd{(}\hlstr{"b"}\hlstd{,} \hlnum{TRUE}\hlstd{)} @@ -6366,7 +6566,7 @@ \subsection{Nested lists}\label{sec:calc:lists:nested} A nested\index{lists!nested} list can alternatively be constructed within a single statement in which several member lists are created. Here we combine the first three statements in the earlier chunk into a single one. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{nested.list} \hlkwb{<-} \hlkwd{list}\hlstd{(}\hlkwc{A} \hlstd{=} \hlkwd{list}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"aa"}\hlstd{,} \hlnum{10}\hlstd{),} \hlkwc{B} \hlstd{=} \hlkwd{list}\hlstd{(}\hlstr{"b"}\hlstd{,} \hlnum{TRUE}\hlstd{))} \hlkwd{str}\hlstd{(nested.list)} @@ -6387,7 +6587,7 @@ \subsection{Nested lists}\label{sec:calc:lists:nested} A list can contain a combination of list and vector members. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{nested.list} \hlkwb{<-} \hlkwd{list}\hlstd{(}\hlkwc{A} \hlstd{=} \hlkwd{list}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"aa"}\hlstd{,} \hlnum{10}\hlstd{),} \hlkwc{B} \hlstd{=} \hlkwd{list}\hlstd{(}\hlstr{"b"}\hlstd{,} \hlnum{TRUE}\hlstd{),} @@ -6421,7 +6621,7 @@ \subsection{Nested lists}\label{sec:calc:lists:nested} % not handled correctly by knitr, works at console. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{nested.list} \hlkwb{<-} \hlkwd{list}\hlstd{(}\hlkwc{A} \hlstd{=} \hlkwd{list}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"aa"}\hlstd{,} \hlstr{"aaa"}\hlstd{),} \hlkwc{B} \hlstd{=} \hlkwd{list}\hlstd{(}\hlstr{"b"}\hlstd{,} \hlstr{"bb"}\hlstd{))} \hlkwd{str}\hlstd{(nested.list)} @@ -6441,7 +6641,7 @@ \subsection{Nested lists}\label{sec:calc:lists:nested} When dealing with deep lists, it is sometimes useful to limit the number of levels of nesting returned by \Rfunction{str()} by means of a \code{numeric} argument passed to parameter \code{max.levels}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{str}\hlstd{(nested.list,} \hlkwc{max.level} \hlstd{=} \hlnum{1}\hlstd{)} \end{alltt} @@ -6462,7 +6662,7 @@ \subsection{Nested lists}\label{sec:calc:lists:nested} The list \code{nested.list} is a nested system of lists, but all the ``terminal'' members are character strings. In other words, terminal nodes are all of the same mode, allowing the list to be ``flattened'' into a character vector. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{nested.list} \hlkwb{<-} \hlkwd{list}\hlstd{(}\hlkwc{A} \hlstd{=} \hlkwd{list}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"aa"}\hlstd{,} \hlstr{"aaa"}\hlstd{),} \hlkwc{B} \hlstd{=} \hlkwd{list}\hlstd{(}\hlstr{"b"}\hlstd{,} \hlstr{"bb"}\hlstd{))} \hlstd{c.vec} \hlkwb{<-} \hlkwd{unlist}\hlstd{(nested.list)} @@ -6514,7 +6714,7 @@ \subsection{Nested lists}\label{sec:calc:lists:nested} The returned value is a vector with named member elements. We use function \Rfunction{str()} to figure out how this vector relates to the original list. The names, always of mode character, are based on the names of list elements when available, while characters depicting positions as numbers are used for anonymous nodes. We can access the members of the vector either through numeric indexes or names. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{str}\hlstd{(c.vec)} \end{alltt} @@ -6546,7 +6746,7 @@ \subsection{Nested lists}\label{sec:calc:lists:nested} Function \Rfunction{unname()} can be used to remove names safely---i.e., without risk of altering the mode or class of the object. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{unname}\hlstd{(c.vec)} \end{alltt} @@ -6584,7 +6784,8 @@ \subsection{Nested lists}\label{sec:calc:lists:nested} \section{Data frames}\label{sec:R:data:frames} \index{data frames|(}\qRclass{data.frame} \index{worksheet@`worksheet'|see{data frame}} -Data frames are a special type of list, in which each element is a vector or a factor of the same length (or rarely a matrix with the same number of rows as the enclosing data frame). They are central to most data manipulation and analysis procedures in \Rlang. They are commonly used to store observations, so that some columns (or member variables) are numeric vectors containing values from measurements and others are factors describing membership into a category, such as a treatment or genotype. Columns can also be date-, time-, character-, or logical vectors. In the diagram below column \code{treatment} is a factor with two levels encoding two conditions, \code{hot} and \code{cold}. Columns \code{height} and \code{weight} are numeric vectors containing measurements. +Data frames are a special type of list, in which all members have the same length, giving origin to a matrix-like object, in which columns can belong to different classes. Most commonly the member ``columns'' are vectors or factors, but they can also be matrices with the same number of rows as the enclosing data frame, or lists with the same number of members as rows in the enclosing data frame. +Data frames are central to most data manipulation and analysis procedures in \Rlang. They are commonly used to store observations, with \code{numeric} columns holding data for continuous variables and \code{factor} columns data for categorical variables. Binary variables can be stored in \code{logical} columns. Text data can be stored in \code{character} columns. Date and time can be stored in columns of specific classes, such as \code{POSIXct}. In the diagram below, column \code{treatment} is a factor with two levels encoding two conditions, \code{hot} and \code{cold}. Columns \code{height} and \code{weight} are numeric vectors containing measurements. \begin{center} \begin{footnotesize} @@ -6624,7 +6825,7 @@ \section{Data frames}\label{sec:R:data:frames} Data frames are created with constructor function \Rfunction{data.frame()} with a syntax similar to that used for lists---in object-oriented programming we say that data frames are derived from class \Rclass{list}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{a.df} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(}\hlkwc{treatment} \hlstd{=} \hlkwd{factor}\hlstd{(}\hlkwd{rep}\hlstd{(}\hlkwd{c}\hlstd{(}\hlstr{"hot"}\hlstd{,} \hlstr{"cold"}\hlstd{),} \hlnum{3}\hlstd{)),} \hlkwc{height} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{10.2}\hlstd{,} \hlnum{8.3}\hlstd{,} \hlnum{12.0}\hlstd{,} \hlnum{9.0}\hlstd{,} \hlnum{11.2}\hlstd{,} \hlnum{8.7}\hlstd{),} @@ -6688,11 +6889,13 @@ \section{Data frames}\label{sec:R:data:frames} \end{kframe} \end{knitrout} +We can see above that when printed each row of a \code{data.frame} is preceded by a row name. Row names are character strings, just like column names. The \Rfunction{data.frame()} constructor adds by default row names representing running numbers. Default row names are rarely of much use, except to track insertions and deletions of rows during debugging. + \begin{playground} As the expectation is that all member variables (or ``columns'') have equal length, if vectors of different lengths are supplied as arguments, the shorter vector(s) is/are recycled, possibly several times, until the required full length is reached, as shown below for \code{treatment}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{b.df} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(}\hlkwc{treatment} \hlstd{=} \hlkwd{factor}\hlstd{(}\hlkwd{c}\hlstd{(}\hlstr{"hot"}\hlstd{,} \hlstr{"cold"}\hlstd{)),} \hlkwc{height} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{10.2}\hlstd{,} \hlnum{8.3}\hlstd{,} \hlnum{12.0}\hlstd{,} \hlnum{9.0}\hlstd{,} \hlnum{11.2}\hlstd{,} \hlnum{8.7}\hlstd{),} @@ -6710,7 +6913,7 @@ \section{Data frames}\label{sec:R:data:frames} Extraction of individual member variables or ``columns'' can be done like in a list with operators \Roperator{[[ ]]} and \Roperator{\$}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{a.df}\hlopt{$}\hlstd{height} \end{alltt} @@ -6741,7 +6944,7 @@ \section{Data frames}\label{sec:R:data:frames} In the same way as with lists, we can add member variables to data frames. Recycling takes place if needed. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{a.df}\hlopt{$}\hlstd{x2} \hlkwb{<-} \hlnum{6}\hlopt{:}\hlnum{1} \hlstd{a.df[[}\hlstr{"x3"}\hlstd{]]} \hlkwb{<-} \hlstr{"b"} @@ -6762,7 +6965,7 @@ \section{Data frames}\label{sec:R:data:frames} We have added two columns to the data frame, and in the case of column \code{x3} recycling took place. This is where lists and data frames differ substantially in their behavior. In a data frame, although class and mode can be different for different member variables (columns), they are required to be vectors or factors of the same length (or a matrix with the same number of rows, or a list with the same number of members). In the case of lists, there is no such requirement, and recycling never takes place when adding a member. Compare the values returned below for \code{a.ls}, to those in the example above for \code{a.df}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{a.ls} \hlkwb{<-} \hlkwd{list}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{6}\hlstd{,} \hlkwc{y} \hlstd{=} \hlstr{"a"}\hlstd{,} \hlkwc{z} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{TRUE}\hlstd{,} \hlnum{FALSE}\hlstd{))} \hlkwd{str}\hlstd{(a.ls)} @@ -6796,7 +6999,7 @@ \section{Data frames}\label{sec:R:data:frames} Matrix-like notation allows simultaneous extraction from multiple columns, which is not possible with lists. The value returned is in most cases a ``smaller'' data frame as in this example. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{a.df[}\hlnum{2}\hlopt{:}\hlnum{3}\hlstd{,} \hlnum{1}\hlopt{:}\hlnum{2}\hlstd{]} \end{alltt} @@ -6809,7 +7012,7 @@ \section{Data frames}\label{sec:R:data:frames} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlcom{# first column, a.df[[1]] preferred} \hlstd{a.df[ ,} \hlnum{1}\hlstd{]} @@ -6868,7 +7071,7 @@ \section{Data frames}\label{sec:R:data:frames} The next few examples do assignments to ``cells'' of \code{a.df}, either to one whole column, or individual values. The last statement in the chunk below copies a number from one location to another by using indexing of the same data frame both on the right side and left side of the assignment.\qRoperator{[[ ]]}\qRoperator{[ ]} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{a.df[}\hlnum{1}\hlstd{,} \hlnum{2}\hlstd{]} \hlkwb{<-} \hlnum{99} \hlstd{a.df} @@ -6941,7 +7144,7 @@ \section{Data frames}\label{sec:R:data:frames} We mentioned above that indexing by name can be done either with double square brackets, \Roperator{[[ ]]}, or with \Roperator{\$}. In the first case the name of the variable or column is given as a character string, enclosed in quotation marks, or as a variable with mode \code{character}. When using \Roperator{\$}, the name is entered as a constant, without quotation marks, and cannot be a variable. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{x.list} \hlkwb{<-} \hlkwd{list}\hlstd{(}\hlkwc{abcd} \hlstd{=} \hlnum{123}\hlstd{,} \hlkwc{xyzw} \hlstd{=} \hlnum{789}\hlstd{)} \hlstd{x.list[[}\hlstr{"abcd"}\hlstd{]]} @@ -6960,7 +7163,7 @@ \section{Data frames}\label{sec:R:data:frames} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{x.list}\hlopt{$}\hlstd{abcd} \end{alltt} @@ -6990,7 +7193,7 @@ \section{Data frames}\label{sec:R:data:frames} Similarly as with matrices, if we extract a single column from a data frame using matrix-like indexing, it is by default simplified into a vector or factor, i.e., the column-dimension is dropped. By passing \code{drop = FALSE}, we can prevent this. Contrary to matrices, rows are not simplified in the case of data frames. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{is.data.frame}\hlstd{(a.df[}\hlnum{1}\hlstd{, ])} \end{alltt} @@ -7064,7 +7267,7 @@ \section{Data frames}\label{sec:R:data:frames} We use a named numeric vector, and a factor. The names are moved from the vector to the rows of the data frame! Consult \code{help(data.frame)} for an explanation. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my.vector} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlkwc{one} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{two} \hlstd{=} \hlnum{2}\hlstd{,} \hlkwc{three} \hlstd{=} \hlnum{3}\hlstd{,} \hlkwc{four} \hlstd{=} \hlnum{4}\hlstd{)} \hlstd{my.factor} \hlkwb{<-} \hlkwd{as.factor}\hlstd{(}\hlkwd{c}\hlstd{(}\hlnum{1}\hlstd{,} \hlnum{2}\hlstd{,} \hlnum{3}\hlstd{,} \hlnum{2}\hlstd{))} @@ -7090,7 +7293,7 @@ \section{Data frames}\label{sec:R:data:frames} If we protect the vector with \Rlang's identity function \Rfunction{I()} the names are not removed from the vector as can be seen by extracting the column from the data frame. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{df2} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(my.factor,} \hlkwd{I}\hlstd{(my.vector))} \hlstd{df2} @@ -7115,7 +7318,7 @@ \section{Data frames}\label{sec:R:data:frames} If we start with a matrix instead of a vector, the matrix is by default split into separate columns in the data frame. If the matrix has no column names, new ones are created. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my.matrix} \hlkwb{<-} \hlkwd{matrix}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{12}\hlstd{,} \hlkwc{ncol} \hlstd{=} \hlnum{3}\hlstd{)} \hlstd{df4} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(my.factor, my.matrix)} @@ -7134,7 +7337,7 @@ \section{Data frames}\label{sec:R:data:frames} If we protect the matrix with function \Rfunction{I()}, it is not split, and the whole matrix becomes a column in the data frame. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{df5} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(my.factor,} \hlkwd{I}\hlstd{(my.matrix))} \hlstd{df5} @@ -7162,7 +7365,7 @@ \section{Data frames}\label{sec:R:data:frames} If we start with a list, each member with a suitable number of elements, each member becomes a column in the data frame. In the case of a too short one, recycling is applied. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my.list} \hlkwb{<-} \hlkwd{list}\hlstd{(}\hlkwc{a} \hlstd{=} \hlnum{4}\hlopt{:}\hlnum{1}\hlstd{,} \hlkwc{b} \hlstd{= letters[}\hlnum{4}\hlopt{:}\hlnum{1}\hlstd{],} \hlkwc{c} \hlstd{=} \hlstr{"n"}\hlstd{,} \hlkwc{d} \hlstd{=} \hlstr{"z"}\hlstd{)} \hlstd{df6}\hlkwb{<-} \hlkwd{data.frame}\hlstd{(my.factor, my.list)} @@ -7181,7 +7384,7 @@ \section{Data frames}\label{sec:R:data:frames} The behaviour is quite different if we protect the list with \Rfunction{I()}: then the list is added in whole as a variable or column in the data frame. In this case the length or number of members in the list itself must match the number of rows in the data frame, while the length of the individual members of the list can vary. This is similar to the default behaviour of tibbles, but \Rlang data frames require explicit use of \Rfunction{I()} (see chapter \ref{chap:R:data} on page \pageref{chap:R:data} for details about the \pkgname{tibble}). \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{df7}\hlkwb{<-} \hlkwd{data.frame}\hlstd{(my.factor,} \hlkwd{I}\hlstd{(my.list))} \hlstd{df7} @@ -7221,7 +7424,7 @@ \subsection{Sub-setting data frames}\label{sec:calc:df:subset} We create a data frame with six rows and three columns. For column \code{y}, we rely on \Rlang automatically extending \code{"a"} by repeating it six times, while for column \code{z}, we rely on \Rlang automatically extending \code{c(TRUE, FALSE)} by repeating it three times. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{a.df} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{6}\hlstd{,} \hlkwc{y} \hlstd{=} \hlstr{"a"}\hlstd{,} \hlkwc{z} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{TRUE}\hlstd{,} \hlnum{FALSE}\hlstd{))} \hlkwd{subset}\hlstd{(a.df, x} \hlopt{>} \hlnum{3}\hlstd{)} @@ -7242,7 +7445,7 @@ \subsection{Sub-setting data frames}\label{sec:calc:df:subset} When calling functions that return a vector, data frame, or other structure, the extraction operators \Roperator{[ ]}, \Roperator{[[ ]]}, or \Roperator{\$} can be appended to the rightmost parenthesis of the function call, in the same way as to the name of a variable holding the same data. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{subset}\hlstd{(a.df, x} \hlopt{>} \hlnum{3}\hlstd{)[ ,} \hlopt{-}\hlnum{3}\hlstd{]} \end{alltt} @@ -7278,7 +7481,7 @@ \subsection{Sub-setting data frames}\label{sec:calc:df:subset} In the case of \Rfunction{subset()} we can select columns directly as shown below, while for most other functions, extraction using operators \Roperator{[ ]}, \Roperator{[[ ]]} or \Roperator{\$} is needed. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{subset}\hlstd{(a.df, x} \hlopt{>} \hlnum{3}\hlstd{,} \hlkwc{select} \hlstd{=} \hlnum{2}\hlstd{)} \end{alltt} @@ -7316,7 +7519,7 @@ \subsection{Sub-setting data frames}\label{sec:calc:df:subset} In the examples above, the names in the expression passed as the second argument to \code{subset()} were searched within \code{ad.df} and found. However, if not found in the data frame objects with matching names are searched for in the environment. There being no variable \code{A} in the data frame \code{a.df}, vector \code{A} from the environment is silently used in the chunk below resulting in a returned data frame with no rows as \code{A > 3} returns \code{FALSE}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{A} \hlkwb{<-} \hlnum{1} \hlkwd{subset}\hlstd{(a.df, A} \hlopt{>} \hlnum{3}\hlstd{)} @@ -7331,7 +7534,7 @@ \subsection{Sub-setting data frames}\label{sec:calc:df:subset} This also applies to the expression passed as argument to parameter \code{select}, here shown as a way of selecting columns based on names stored in a character vector. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{columns} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlstr{"x"}\hlstd{,} \hlstr{"z"}\hlstd{)} \hlkwd{subset}\hlstd{(a.df,} \hlkwc{select} \hlstd{= columns)} @@ -7354,7 +7557,7 @@ \subsection{Sub-setting data frames}\label{sec:calc:df:subset} A frequently used way of deleting a column by name from a data frame is to assign \code{NULL} to it---i.e., in the same way as members are deleted from \code{list}s. This approach modifies \code{a.df} in place. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{aa.df} \hlkwb{<-} \hlstd{a.df} \hlkwd{colnames}\hlstd{(aa.df)} @@ -7376,7 +7579,7 @@ \subsection{Sub-setting data frames}\label{sec:calc:df:subset} Alternatively, we can use negative indexing to remove columns from a copy of a data frame. In this example we remove a single column. As base \Rlang does not support negative indexing by name with the extraction operator, we need to find the numerical index of the column to delete. (See the examples above using \code{subset()} with bare names to delete columns.) \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{a.df[ ,} \hlopt{-}\hlkwd{which}\hlstd{(}\hlkwd{colnames}\hlstd{(a.df)} \hlopt{==} \hlstr{"y"}\hlstd{)]} \end{alltt} @@ -7401,7 +7604,7 @@ \subsection{Sub-setting data frames}\label{sec:calc:df:subset} Here is an esoteric trick for you to first untangle how it changes the positions of columns and rows, and then for you to think how and why it can be useful to use indexing with the extraction operator \Roperator{[ ]} on both sides of the assignment operator \Roperator{<-}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{a.df[}\hlnum{1}\hlopt{:}\hlnum{6}\hlstd{,} \hlkwd{c}\hlstd{(}\hlnum{1}\hlstd{,}\hlnum{3}\hlstd{)]} \hlkwb{<-} \hlstd{a.df[}\hlnum{6}\hlopt{:}\hlnum{1}\hlstd{,} \hlkwd{c}\hlstd{(}\hlnum{3}\hlstd{,}\hlnum{1}\hlstd{)]} \hlstd{a.df} @@ -7418,7 +7621,7 @@ \subsection{Summarizing and splitting data frames}\label{sec:calc:df:split}\labe Function\index{data frames!summarizing} \Rfunction{summary()} can be used to obtain a summary from objects of most \Rlang classes, including data frames. We can also use \Rloop{sapply()}, \Rloop{lapply()} or \Rloop{vapply()} to apply any suitable function to individual columns (see section \ref{sec:data:apply} on page \pageref{sec:data:apply} for a description of these functions and their use). \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{summary}\hlstd{(a.df)} \end{alltt} @@ -7440,7 +7643,7 @@ \subsection{Summarizing and splitting data frames}\label{sec:calc:df:split}\labe We create a data frame with six rows and three columns. In the case of column \code{z}, we rely on \Rlang to automatically extend \code{c("a", "b")} by repeating it three times so as to fill the six rows. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{a.df} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(}\hlkwc{x1} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{6}\hlstd{,} \hlkwc{x2} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{1}\hlstd{,} \hlnum{5}\hlstd{,} \hlnum{4}\hlstd{,} \hlnum{2}\hlstd{,} \hlnum{6}\hlstd{,} \hlnum{3}\hlstd{),} \hlkwc{z} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"b"}\hlstd{))} \end{alltt} @@ -7448,7 +7651,7 @@ \subsection{Summarizing and splitting data frames}\label{sec:calc:df:split}\labe \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{split}\hlstd{(a.df, a.df}\hlopt{$}\hlstd{z)} \end{alltt} @@ -7471,7 +7674,7 @@ \subsection{Summarizing and splitting data frames}\label{sec:calc:df:split}\labe Using formula \code{~ z} to indicate the grouping. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{split}\hlstd{(a.df,} \hlopt{~} \hlstd{z)} \end{alltt} @@ -7503,7 +7706,7 @@ \subsection{Summarizing and splitting data frames}\label{sec:calc:df:split}\labe To summarize a single variable by group we can use \Rfunction{aggregate()}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{aggregate}\hlstd{(}\hlkwc{x} \hlstd{= iris}\hlopt{$}\hlstd{Petal.Length,} \hlkwc{by} \hlstd{=} \hlkwd{list}\hlstd{(iris}\hlopt{$}\hlstd{Species),} \hlkwc{FUN} \hlstd{= mean)} \end{alltt} @@ -7522,7 +7725,7 @@ \subsection{Summarizing and splitting data frames}\label{sec:calc:df:split}\labe To summarize variables we can use \Rfunction{aggregate()} (see section \ref{sec:dplyr:group:wise} on page \pageref{sec:dplyr:group:wise} for an alternative approach using package \pkgnameNI{dplyr}). \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{aggregate}\hlstd{(}\hlkwc{x} \hlstd{= iris[ ,} \hlkwd{sapply}\hlstd{(iris, is.numeric)],} \hlkwc{by} \hlstd{=} \hlkwd{list}\hlstd{(iris}\hlopt{$}\hlstd{Species),} \hlkwc{FUN} \hlstd{= mean)} \end{alltt} @@ -7541,7 +7744,7 @@ \subsection{Summarizing and splitting data frames}\label{sec:calc:df:split}\labe There\index{data frames!summarizing} is also a formula-based \Rfunction{aggregate()} method (or ``variant'') available (\Rlang \emph{formulas} are described in depth in section \ref{sec:stat:formulas} on page \pageref{sec:stat:formulas}). In \Rfunction{aggregate()}, the left hand side (\emph{lhs}) of the formula indicates the variable to summarize and the right hand side (\emph{rhs}) the factor used to split the data before summarizing them. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{aggregate}\hlstd{(x1} \hlopt{~} \hlstd{z,} \hlkwc{FUN} \hlstd{= mean,} \hlkwc{data} \hlstd{= a.df)} \end{alltt} @@ -7555,7 +7758,7 @@ \subsection{Summarizing and splitting data frames}\label{sec:calc:df:split}\labe We can summarize more than one column at a time. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{aggregate}\hlstd{(}\hlkwd{cbind}\hlstd{(x1, x2)} \hlopt{~} \hlstd{z,} \hlkwc{FUN} \hlstd{= mean,} \hlkwc{data} \hlstd{= a.df)} \end{alltt} @@ -7569,7 +7772,7 @@ \subsection{Summarizing and splitting data frames}\label{sec:calc:df:split}\labe If all the columns not used for grouping are valid input to the function passed as argument to \code{FUN} the formula can be simplified using \code{.} with meaning ``all columns except those on the \emph{rhs} of the formula''. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{aggregate}\hlstd{(.} \hlopt{~} \hlstd{z,} \hlkwc{FUN} \hlstd{= mean,} \hlkwc{data} \hlstd{= a.df)} \end{alltt} @@ -7592,7 +7795,7 @@ \subsection{Re-arranging columns and rows} The most direct way of changing the order of columns and/or rows in data frames (and matrices and arrays) is to use subscripting. Once we know the original position and target position we can use column names or positions as indexes on the right-hand side, listing all columns to be retained, even those remaining at their original position. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my_data_frame.df} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(}\hlkwc{A} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{10}\hlstd{,} \hlkwc{B} \hlstd{=} \hlnum{3}\hlstd{,} \hlkwc{C} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"A"}\hlstd{,} \hlstr{"B"}\hlstd{))} \hlkwd{head}\hlstd{(my_data_frame.df,} \hlnum{2}\hlstd{)} @@ -7619,7 +7822,7 @@ \subsection{Re-arranging columns and rows} To retain the correspondence between column naming and column contents after swapping or rearranging the columns \emph{using numeric indices}, we need to separately move the names of the columns. This may seem counter intuitive, unless we think in terms of positions being named rather than the contents of the columns being linked to the names. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my_data_frame.df} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(}\hlkwc{A} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{10}\hlstd{,} \hlkwc{B} \hlstd{=} \hlnum{3}\hlstd{,} \hlkwc{C} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"A"}\hlstd{,} \hlstr{"B"}\hlstd{))} \hlkwd{head}\hlstd{(my_data_frame.df,} \hlnum{2}\hlstd{)} @@ -7658,7 +7861,7 @@ \subsection{Re-arranging columns and rows} We use column names or numeric indexes with the extraction operator \Roperator{[ ]} only on the \emph{rhs} of the assignment. For example, to arrange the columns of data set \code{iris} in decreasing alphabetical order, we use \Rfunction{sort()} as shown, or \Rfunction{order()} (see page \pageref{box:vec:sort}). \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{sorted_cols_iris} \hlkwb{<-} \hlstd{iris[ ,} \hlkwd{sort}\hlstd{(}\hlkwd{colnames}\hlstd{(iris),} \hlkwc{decreasing} \hlstd{=} \hlnum{TRUE}\hlstd{)]} \hlkwd{head}\hlstd{(sorted_cols_iris,} \hlnum{2}\hlstd{)} @@ -7674,7 +7877,7 @@ \subsection{Re-arranging columns and rows} Similarly we use values in a column as argument to \Rfunction{order()} to obtain the \code{numeric} indices to sort rows. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{sorted_rows_iris} \hlkwb{<-} \hlstd{iris[}\hlkwd{order}\hlstd{(iris}\hlopt{$}\hlstd{Petal.Length), ]} \hlkwd{head}\hlstd{(sorted_rows_iris,} \hlnum{2}\hlstd{)} @@ -7702,7 +7905,7 @@ \subsection{Re-encoding or adding variables} If the existing variable is a character vector or factor, we need to create a named vector with the new values as data and the existing values as names. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my.df} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(}\hlkwc{genotype} \hlstd{=} \hlkwd{rep}\hlstd{(}\hlkwd{c}\hlstd{(}\hlstr{"WT"}\hlstd{,} \hlstr{"mutant1"}\hlstd{,} \hlstr{"mutant2"}\hlstd{),} \hlnum{2}\hlstd{),} @@ -7726,7 +7929,7 @@ \subsection{Re-encoding or adding variables} If the existing variable is an \code{integer} vector, we can use a vector without names, being careful that the positions in the \emph{mapping} vector match the values of the existing variable \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my.df} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(}\hlkwc{individual} \hlstd{=} \hlkwd{rep}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{3}\hlstd{,} \hlnum{2}\hlstd{),} \hlkwc{value} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{1.5}\hlstd{,} \hlnum{3.2}\hlstd{,} \hlnum{4.5}\hlstd{,} \hlnum{8.2}\hlstd{,} \hlnum{7.4}\hlstd{,} \hlnum{6.2}\hlstd{))} @@ -7749,7 +7952,7 @@ \subsection{Re-encoding or adding variables} \begin{advplayground} Add a variable named \code{genotype} to the data frame below so that for individual \code{4} its value is \code{"WT"}, for individual \code{1} its value is \code{"mutant1"}, and for individual \code{2} its value is \code{"mutant2"}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my.df} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(}\hlkwc{individual} \hlstd{=} \hlkwd{rep}\hlstd{(}\hlkwd{c}\hlstd{(}\hlnum{2}\hlstd{,} \hlnum{4}\hlstd{,} \hlnum{1}\hlstd{),} \hlnum{2}\hlstd{),} \hlkwc{value} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{1.5}\hlstd{,} \hlnum{3.2}\hlstd{,} \hlnum{4.5}\hlstd{,} \hlnum{8.2}\hlstd{,} \hlnum{7.4}\hlstd{,} \hlnum{6.2}\hlstd{))} @@ -7767,7 +7970,7 @@ \subsection{Operating within data frames}\label{sec:calc:df:with} In this example, column \code{A} of \code{my\_data\_frame.df} takes precedence, and the returned value is the expected one. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my_data_frame.df}\hlopt{$}\hlstd{C} \hlkwb{<-} \hlkwa{NULL} \hlstd{my_data_frame.df}\hlopt{$}\hlstd{C} \hlkwb{<-} \hlkwd{with}\hlstd{(my_data_frame.df, (A} \hlopt{+} \hlstd{B)} \hlopt{/} \hlstd{A)} @@ -7784,7 +7987,7 @@ \subsection{Operating within data frames}\label{sec:calc:df:with} In the case of \Rscoping{within()}, assignments in the argument to its second parameter affect the object returned, which is a copy of the container (In this case, a whole data frame), which still needs to be saved through assignment. Here the intention is to modify it, so we assign it back to the same name, but it could have been assigned to a different name so as not to overwrite the original data frame. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my_data_frame.df}\hlopt{$}\hlstd{C} \hlkwb{<-} \hlkwa{NULL} \hlstd{my_data_frame.df} \hlkwb{<-} \hlkwd{within}\hlstd{(my_data_frame.df, C} \hlkwb{<-} \hlstd{(A} \hlopt{+} \hlstd{B)} \hlopt{/} \hlstd{A)} @@ -7801,7 +8004,7 @@ \subsection{Operating within data frames}\label{sec:calc:df:with} In the example above, using \code{within()} makes little difference compared to using \Rscoping{with()} with respect to the amount of typing or clarity, but with multiple member variables being operated upon, as shown below, \Rscoping{within()} has an advantage resulting in more concise and easier to understand code. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my_data_frame.df}\hlopt{$}\hlstd{C} \hlkwb{<-} \hlkwa{NULL} \hlstd{my_data_frame.df} \hlkwb{<-} \hlkwd{within}\hlstd{(my_data_frame.df,} @@ -7824,7 +8027,7 @@ \subsection{Operating within data frames}\label{sec:calc:df:with} When using a long name for a data frame, entering a simple calculation can easily result in a difficult to read statement. (Function \code{head()} is used here to limit the displayed value to the first two rows---\code{head()} is described in section \ref{sec:calc:looking:at:data} on page \pageref{sec:calc:looking:at:data}.) \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my_data_frame.df} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(}\hlkwc{A} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{10}\hlstd{,} \hlkwc{B} \hlstd{=} \hlnum{3}\hlstd{)} \hlstd{my_data_frame.df}\hlopt{$}\hlstd{C} \hlkwb{<-} @@ -7842,7 +8045,7 @@ \subsection{Operating within data frames}\label{sec:calc:df:with} Using\index{data frames!attaching} \Rscoping{attach()} we can alter how \Rlang looks up names and consequently simplify the statement. With \Rscoping{detach()} we can restore the original state. It is important to remember that here we can only simplify the right-hand side of the assignment, while the ``destination'' of the result of the computation still needs to be fully specified on the left-hand side of the assignment operator. We include below only one statement between \Rscoping{attach()} and \Rscoping{detach()} but multiple statements are allowed. Furthermore, if variables with the same name as the columns exist in the search path, these will take precedence, something that can result in bugs or crashes, or as seen below, a message warns that variable \code{A} from the global environment will be used instead of column \code{A} of the attached \code{my\_data\_frame.df}. The returned value is, of course, not the desired one. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my_data_frame.df}\hlopt{$}\hlstd{C} \hlkwb{<-} \hlkwa{NULL} \hlkwd{attach}\hlstd{(my_data_frame.df)} @@ -7862,7 +8065,7 @@ \subsection{Operating within data frames}\label{sec:calc:df:with} \end{kframe} \end{knitrout} -Use of \Rscoping{attach()} and \Rscoping{detach()}, which function as a pair of ON and OFF switches, can result in an undesired after-effect on name lookup if the script terminates after \Rscoping{attach()} is executed but before \Rscoping{detach()} is called, as cleanup is not automatic. In contrast, \Rscoping{with()} and \Rscoping{within()}, being self-contained, guarantee that cleanup takes place. Consequently, the usual recommendation is to give preference to the use of \Rscoping{with()} and \Rscoping{within()} over \Rscoping{attach()} and \Rscoping{detach()}. Use of these functions not only saves typing but also makes code more readable. +Use of \Rscoping{attach()} and \Rscoping{detach()}, which function as a pair of ON and OFF switches, can result in an undesired after-effect on name lookup if the script terminates after \Rscoping{attach()} is executed but before \Rscoping{detach()} is called, as the attached object is not detached. In contrast, \Rscoping{with()} and \Rscoping{within()}, being self-contained, guarantee that cleanup takes place. Consequently, the usual recommendation is to give preference to the use of \Rscoping{with()} and \Rscoping{within()} over \Rscoping{attach()} and \Rscoping{detach()}. Use of these functions not only saves typing but also makes code more readable. \end{explainbox} \section{Reshaping and editing data frames}\label{sec:calc:reshape} @@ -7871,7 +8074,7 @@ \section{Reshaping and editing data frames}\label{sec:calc:reshape} As mentioned above, in most cases in \Rlang data rows represent measurement events or observations possibly on multiple response variables and factors describing groupings, i.e., long shape. However, when measurements are repeated in time, columns rather frequently represent observations of the same response variable at different times, i.e., wide shape. Other cases exist where reshaping is needed. Function \Rfunction{reshape()} can convert wide data frames into long data frames and vice versa. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlcom{## reshape() example needed} \end{alltt} @@ -7885,7 +8088,7 @@ \section{Reshaping and editing data frames}\label{sec:calc:reshape} Methods \Rfunction{View()}, \Rfunction{edit()} and \Rfunction{fix()} are used interactively to display and edit \Rlang objects. IDEs like \RStudio and the use of scripts have made the interactive use of \Rpgrm at the console less frequent. \Rfunction{View()}, \Rfunction{edit()} and \Rfunction{fix()} are unusual in that their definitions and/or default arguments are dependent on the operating system and/or IDE from within which \Rpgrm is started. Output is not included for this chunk, as the use of these functions requires user interaction. Please, run these examples in \Rpgrm and in an IDE like \RStudio. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{View}\hlstd{(cars)} \hlkwd{edit}\hlstd{(cars)} @@ -7901,7 +8104,7 @@ \section{Attributes of \Rlang objects}\label{sec:calc:attributes} Although we rarely need to set or extract values stored in attributes explicitly, many of the features of \Rlang that we take for granted are implemented using attributes: columns names in data frames are stored in an attribute. Matrices are vectors with additional attributes. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{a.df} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{6}\hlstd{,} \hlkwc{y} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"b"}\hlstd{),} \hlkwc{z} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{TRUE}\hlstd{,} \hlnum{FALSE}\hlstd{,} \hlnum{NA}\hlstd{))} \hlkwd{attributes}\hlstd{(a.df)} @@ -7922,7 +8125,7 @@ \section{Attributes of \Rlang objects}\label{sec:calc:attributes} Attribute \code{"comment"} is meant to be set by users to store a character string---e.g., to store metadata as text together with data. As comments are frequently used, \Rlang has functions for accessing and setting comments. \qRfunction{comment()}\qRfunction{comment()<-} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{comment}\hlstd{(a.df)} \end{alltt} @@ -7944,7 +8147,7 @@ \section{Attributes of \Rlang objects}\label{sec:calc:attributes} Continuing with the previous example, we can retrieve and set the value stored in the \code{"comment"} attribute using these functions. In the second statement we delete the value stored in the attribute by assigning \code{NULL} to it. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{attr}\hlstd{(a.df,} \hlstr{"comment"}\hlstd{)} \end{alltt} @@ -7970,7 +8173,7 @@ \section{Attributes of \Rlang objects}\label{sec:calc:attributes} The \code{"names"} attribute of \code{a.df} was set by the \code{data.frame()} constructor when it was created above. In the next example, in the first statement we retrieve the names, and implicitly print them. In the second statement, read from right to left, we retrieve the names, convert them to upper case and save them back to the same attribute. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{names}\hlstd{(a.df)} \end{alltt} @@ -7996,7 +8199,7 @@ \section{Attributes of \Rlang objects}\label{sec:calc:attributes} We can add a new attribute, under our own control, as long as its name does not clash with that of existing attributes. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{attr}\hlstd{(a.df,} \hlstr{"my.attribute"}\hlstd{)} \hlkwb{<-} \hlstr{"this is stored in my attribute"} \hlkwd{attributes}\hlstd{(a.df)} @@ -8021,7 +8224,7 @@ \section{Attributes of \Rlang objects}\label{sec:calc:attributes} The attributes used internally by \Rlang can be directly modified by user code. In most cases this is unnecessary as \Rlang provides pairs of functions to query and set the relevant attributes. This is true for the attributes \code{dim}, \code{names} and \code{levels}. In the example below we read the attributes from a matrix. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{M} \hlkwb{<-} \hlkwd{matrix}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{10}\hlstd{,} \hlkwc{ncol} \hlstd{=} \hlnum{2}\hlstd{)} \hlstd{M} @@ -8034,6 +8237,11 @@ \section{Attributes of \Rlang objects}\label{sec:calc:attributes} ## [4,] 4 9 ## [5,] 5 10 \end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{attr}\hlstd{(M,} \hlstr{"dim"}\hlstd{)} \end{alltt} @@ -8049,6 +8257,11 @@ \section{Attributes of \Rlang objects}\label{sec:calc:attributes} ## [1,] 1 3 5 7 9 ## [2,] 2 4 6 8 10 \end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{attr}\hlstd{(M,} \hlstr{"dim"}\hlstd{)} \hlkwb{<-} \hlkwa{NULL} \hlkwd{is.vector}\hlstd{(M)} @@ -8085,7 +8298,7 @@ \subsection{Data sets in \Rlang and packages} In the next example we load data included in \Rlang as \Rlang objects by calling function \Rfunction{data()}. The loaded \Rlang object \code{cars} is a data frame. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{data}\hlstd{(cars)} \end{alltt} @@ -8102,7 +8315,7 @@ \subsection{.rda files}\label{sec:data:rda} We create a data frame object and then save it to a file. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my.df} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{,} \hlkwc{y} \hlstd{=} \hlnum{5}\hlopt{:}\hlnum{1}\hlstd{)} \hlstd{my.df} @@ -8124,7 +8337,7 @@ \subsection{.rda files}\label{sec:data:rda} We delete the data frame object and confirm that it is no longer present in the workspace. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{rm}\hlstd{(my.df)} \hlkwd{ls}\hlstd{(}\hlkwc{pattern} \hlstd{=} \hlstr{"my.df"}\hlstd{)} @@ -8138,7 +8351,7 @@ \subsection{.rda files}\label{sec:data:rda} We read the file we earlier saved to restore the object.\qRfunction{load()} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{load}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"my-df.rda"}\hlstd{)} \hlkwd{ls}\hlstd{(}\hlkwc{pattern} \hlstd{=} \hlstr{"my.df"}\hlstd{)} @@ -8169,7 +8382,7 @@ \subsection{.rda files}\label{sec:data:rda} Sometimes it is easier to supply the names of the objects to be saved as a vector of character strings passed as an argument to parameter \code{list}. One case is when wanting to save a group of objects based on their names. We can use \Rfunction{ls()} to list the names of objects matching a simple \code{pattern} or a complex regular expression. The example below does this in two steps, first saving a character vector with the names of the objects matching a pattern, and then using this saved vector as an argument to \code{save}'s \code{list} parameter. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{objcts} \hlkwb{<-} \hlkwd{ls}\hlstd{(}\hlkwc{pattern} \hlstd{=} \hlstr{"*.df"}\hlstd{)} \hlkwd{save}\hlstd{(}\hlkwc{list} \hlstd{= objcts,} \hlkwc{file} \hlstd{=} \hlstr{"my-df1.rda"}\hlstd{)} @@ -8180,7 +8393,7 @@ \subsection{.rda files}\label{sec:data:rda} The two statements above can be combined into a single statement by nesting the function calls. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{save}\hlstd{(}\hlkwc{list} \hlstd{=} \hlkwd{ls}\hlstd{(}\hlkwc{pattern} \hlstd{=} \hlstr{"*.df"}\hlstd{),} \hlkwc{file} \hlstd{=} \hlstr{"my-df1.rda"}\hlstd{)} \end{alltt} @@ -8194,7 +8407,7 @@ \subsection{.rda files}\label{sec:data:rda} As a coda, we show how to clean up by deleting the two files we created. Function \Rfunction{unlink()} can be used to delete any files for which the user has enough rights. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{unlink}\hlstd{(}\hlkwd{c}\hlstd{(}\hlstr{"my-df.rda"}\hlstd{,} \hlstr{"my-df1.rda"}\hlstd{))} \end{alltt} @@ -8207,7 +8420,7 @@ \subsection{.rds files}\label{sec:data:rds} When RDS files are read, different from when RDA files are loaded, we need to assign the object read to a possibly different name for it to added to the search pass. Of course, it is also possible to use the returned object as an argument to a function or in an expression without saving it to a variable. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{saveRDS}\hlstd{(my.df,} \hlstr{"my-df.rds"}\hlstd{)} \end{alltt} @@ -8217,7 +8430,7 @@ \subsection{.rds files}\label{sec:data:rds} If we read the file, by default the read \Rlang object will be printed at the console. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{readRDS}\hlstd{(}\hlstr{"my-df.rds"}\hlstd{)} \end{alltt} @@ -8235,7 +8448,7 @@ \subsection{.rds files}\label{sec:data:rds} In the next example we assign the read object to a different name, and check that the object read is identical to the one saved. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my_read.df} \hlkwb{<-} \hlkwd{readRDS}\hlstd{(}\hlstr{"my-df.rds"}\hlstd{)} \hlkwd{identical}\hlstd{(my.df, my_read.df)} @@ -8249,7 +8462,7 @@ \subsection{.rds files}\label{sec:data:rds} As above, we clean up by deleting the file. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{unlink}\hlstd{(}\hlstr{"my-df.rds"}\hlstd{)} \end{alltt} @@ -8265,7 +8478,7 @@ \section{Plotting} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{plot}\hlstd{(}\hlkwc{x} \hlstd{= cars}\hlopt{$}\hlstd{speed,} \hlkwc{y} \hlstd{= cars}\hlopt{$}\hlstd{dist)} \end{alltt} @@ -8281,7 +8494,7 @@ \section{Plotting} It is also possible, and usually more convenient, to use a \emph{formula} to specify the variables to be plotted on the $x$ and $y$ axes, passing additionally as an argument to parameter \code{data} a data frame containing these variables. The formula \code{dist \textasciitilde\ speed}, is read as \code{dist} explained by \code{speed}---i.e., \code{dist} is mapped to the $y$-axis as the dependent variable and \code{speed} to the $x$-axis as the independent variable. As described in section \ref{sec:stat:mf} on page \pageref{sec:stat:mf} the same syntax is used to describe models to be fitted to observations. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{plot}\hlstd{(dist} \hlopt{~} \hlstd{speed,} \hlkwc{data} \hlstd{= cars)} \end{alltt} @@ -8297,7 +8510,7 @@ \section{Plotting} Within \Rlang there exist different specializations, or ``flavors,'' of method \Rfunction{plot()} that become active depending on the class of the variables passed as arguments: passing two numerical variables results in a scatter plot as seen above. In contrast passing one factor and one numeric variable to \code{plot()} results in a box-and-whiskers plot being produced. To exemplify this we need to use a different data set, here \code{chickwts} as \code{cars} does not contain any factors. Use \code{help("chickwts")} to learn more about this data set, also included in \Rpgrm . \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{plot}\hlstd{(weight} \hlopt{~} \hlstd{feed,} \hlkwc{data} \hlstd{= chickwts)} \end{alltt} @@ -8321,7 +8534,7 @@ \section{Plotting} When opening a device the user supplies additional information. For the PDF device that produces output in a vector-graphics format, width and height of the output are specified in \emph{inches}. A default file name is used unless we pass a \code{character} string as an argument to parameter \code{file}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{pdf}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"output/my-file.pdf"}\hlstd{,} \hlkwc{width} \hlstd{=} \hlnum{6}\hlstd{,} \hlkwc{height} \hlstd{=} \hlnum{5}\hlstd{,} \hlkwc{onefile} \hlstd{=} \hlnum{TRUE}\hlstd{)} \hlkwd{plot}\hlstd{(dist} \hlopt{~} \hlstd{speed,} \hlkwc{data} \hlstd{= cars)} @@ -8338,7 +8551,7 @@ \section{Plotting} Raster devices return bitmaps and \code{width} and \code{height} are specified in \emph{pixels}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{png}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"output/my-file.png"}\hlstd{,} \hlkwc{width} \hlstd{=} \hlnum{600}\hlstd{,} \hlkwc{height} \hlstd{=} \hlnum{500}\hlstd{)} \hlkwd{plot}\hlstd{(weight} \hlopt{~} \hlstd{feed,} \hlkwc{data} \hlstd{= chickwts)} @@ -8355,7 +8568,7 @@ \section{Plotting} and the addition of plot components, as shown below, is done directly to the output device. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{png}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"output/my-file.png"}\hlstd{,} \hlkwc{width} \hlstd{=} \hlnum{600}\hlstd{,} \hlkwc{height} \hlstd{=} \hlnum{500}\hlstd{)} \hlkwd{plot}\hlstd{(dist} \hlopt{~} \hlstd{speed,} \hlkwc{data} \hlstd{= cars)} @@ -8469,7 +8682,7 @@ \subsection{How do we use a script?}\label{sec:script:using} and then source this file: \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{source}\hlstd{(}\hlstr{"my.first.script.r"}\hlstd{)} \end{alltt} @@ -8547,7 +8760,7 @@ \subsection{The need to be understandable to people}\label{sec:script:readabilit , and edit the code in the chunk below so that it becomes easier to read. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{a} \hlkwb{<-} \hlnum{2} \hlcom{# height} \hlstd{b} \hlkwb{<-} \hlnum{4} \hlcom{# length} @@ -8622,7 +8835,7 @@ \section{Compound statements}\label{sec:script:compound:statement} \end{center} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{print}\hlstd{(}\hlstr{"A"}\hlstd{)} \end{alltt} @@ -8645,7 +8858,7 @@ \section{Compound statements}\label{sec:script:compound:statement} The grouping of the last two statements above is of no consequence by itself. In the example above only side effects are of interest. In the example below, the value returned by a compound statement is that returned by the last statement evaluated within it. Individual statements can be separated by an end-of-line as above, or by a semicolon (;) as shown below, with two statements, each of them implementing an arithmetic operation. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{\{}\hlnum{1} \hlopt{+} \hlnum{2}\hlstd{;} \hlnum{3} \hlopt{+} \hlnum{4}\hlstd{\}} \end{alltt} @@ -8661,7 +8874,7 @@ \section{Compound statements}\label{sec:script:compound:statement} Nesting is also possible. Before running the compound statement below try to predict the value it will return, and then run the code and compare your prediction to the value returned. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{\{}\hlnum{1} \hlopt{+} \hlnum{2}\hlstd{; \{a} \hlkwb{<-} \hlnum{3} \hlopt{+} \hlnum{4}\hlstd{; a} \hlopt{+} \hlnum{1}\hlstd{\}\}} \end{alltt} @@ -8680,7 +8893,7 @@ \section{Function calls} In the first example we have two statements, in the first one we compute the logarithm of 100 and stored the returned value in variable \code{a} by calling function \code{log10()} with \code{100} as argument. In the second statement we pass variable \code{a} as argument to \code{print()} and as a side effect the value 2 is displayed. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{a} \hlkwb{<-} \hlkwd{log10}\hlstd{(}\hlnum{100}\hlstd{)} \hlkwd{print}\hlstd{(a)} @@ -8694,7 +8907,7 @@ \section{Function calls} Function calls can be nested. The example above can be rewritten as. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{print}\hlstd{(}\hlkwd{log10}\hlstd{(}\hlnum{100}\hlstd{))} \end{alltt} @@ -8715,7 +8928,7 @@ \section{Data pipes}\label{sec:script:pipes} Pipes have been at the core of shell scripting in \osname{Unix} since early stages of its design \autocite{Kernigham1981} as well as in \osname{Linux} distributions. Within an OS, pipes are chains of small programs or ``tools'' that carry out a single well-defined task (e.g., \code{ed}, \code{gsub}, \code{grep}, \code{more}, etc.). Data such as text is described as flowing from a source into a sink through a series of steps at which a specific transformations take place. In \osname{Unix} shells like \pgrmname{sh} or \pgrmname{bash}, sinks and sources are files, but in \osname{Unix} files as an abstraction include all devices and connections for input or output, including physical ones such as terminals and printers. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} stdin | grep("abc") | more \end{alltt} @@ -8733,7 +8946,7 @@ \section{Data pipes}\label{sec:script:pipes} Nested function calls are concise, but difficult to read when the depth of nesting increases. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{sum}\hlstd{(}\hlkwd{sqrt}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{10}\hlstd{))} \end{alltt} @@ -8746,7 +8959,7 @@ \section{Data pipes}\label{sec:script:pipes} Saving intermediate results explicitly results in clear but verbose code. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{data.in} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{10} \hlstd{data.tmp} \hlkwb{<-} \hlkwd{sqrt}\hlstd{(data.in)} @@ -8764,7 +8977,7 @@ \section{Data pipes}\label{sec:script:pipes} A pipe using operator \Roperator{\textbar >} makes the data flow clear and keeps the code concise. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlnum{1}\hlopt{:}\hlnum{10} \hlstd{|>} \hlkwd{sqrt}\hlstd{() |>} \hlkwd{sum}\hlstd{()} \end{alltt} @@ -8777,7 +8990,7 @@ \section{Data pipes}\label{sec:script:pipes} We can assign the result of the computation to a variable, most elegantly using the \Roperator{->} operator on the \emph{rhs} of the pipe. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlnum{1}\hlopt{:}\hlnum{10} \hlstd{|>} \hlkwd{sqrt}\hlstd{() |>} \hlkwd{sum}\hlstd{()} \hlkwb{->} \hlstd{my_rhs.var} \hlstd{my_rhs.var} @@ -8791,7 +9004,7 @@ \section{Data pipes}\label{sec:script:pipes} We can also use the \Roperator{<-} operator on the \emph{lhs} of the pipe, i.e., for assignments a pipe behaves as a compound statement. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my_lhs.var} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{10} \hlstd{|>} \hlkwd{sqrt}\hlstd{() |>} \hlkwd{sum}\hlstd{()} \hlstd{my_lhs.var} @@ -8805,7 +9018,7 @@ \section{Data pipes}\label{sec:script:pipes} Formally, the \Roperator{\textbar >} operator from base \Rlang takes two operands, just like operator \code{+} does. The value returned by the \emph{lhs} (left-hand side) operand, which can be any \Rlang expression, is passed as argument to the function-call operand on \emph{rhs} (right-hand side). The called function must accept at least one argument. This default syntax that implicitly passes the argument by position to the first parameter of the function would limit which functions could be used in a pipe construct. However, it is also possible to pass the piped argument explicitly by name to any parameter of the function on the \emph{rhs} using an underscore (\code{\_}) as placeholder. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlnum{1}\hlopt{:}\hlnum{10} \hlstd{|>} \hlkwd{sqrt}\hlstd{(}\hlkwc{x} \hlstd{= _) |>} \hlkwd{sum}\hlstd{(}\hlkwc{x} \hlstd{= _)} \end{alltt} @@ -8818,7 +9031,7 @@ \section{Data pipes}\label{sec:script:pipes} The placeholder can be also used with extraction operators. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlnum{1}\hlopt{:}\hlnum{10} \hlstd{|>} \hlkwd{sqrt}\hlstd{(}\hlkwc{x} \hlstd{= _) |> _[}\hlnum{2}\hlopt{:}\hlnum{8}\hlstd{] |>} \hlkwd{sum}\hlstd{(}\hlkwc{x} \hlstd{= _)} \end{alltt} @@ -8832,7 +9045,7 @@ \section{Data pipes}\label{sec:script:pipes} Base \Rlang functions like \Rfunction{subset()} have a signature that is natural for use in pipes by implicitly passing the piped value as argument to its first formal parameter, while others like \Rfunction{assign()} do not. For example, when calling function \code{assign()} to save a value using a name available as a character string we would like to pass the piped value as argument to parameter \code{value} which is not the first. In such cases we can use \code{\_} as a placeholder and pass it by name. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{obj.name} \hlkwb{<-} \hlstr{"data.out"} \hlnum{1}\hlopt{:}\hlnum{10} \hlstd{|>} \hlkwd{sqrt}\hlstd{() |>} \hlkwd{sum}\hlstd{() |>} \hlkwd{assign}\hlstd{(}\hlkwc{x} \hlstd{= obj.name,} \hlkwc{value} \hlstd{= _)} @@ -8843,7 +9056,7 @@ \section{Data pipes}\label{sec:script:pipes} Alternatively, we can define a wrapper function, with the desired order for the formal parameters. This approach can be worthwhile when the same function is called repeatedly within a script. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{value_assign} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{value}\hlstd{,} \hlkwc{x}\hlstd{,} \hlkwc{...}\hlstd{) \{} \hlkwd{assign}\hlstd{(}\hlkwc{x} \hlstd{= x,} \hlkwc{value} \hlstd{= value, ...)} @@ -8861,7 +9074,7 @@ \section{Data pipes}\label{sec:script:pipes} Addition of computed variables to a data frame using \Rfunction{within()} and selecting rows with \Rfunction{subset()} are combined in our first simple example. For clarity, we use the \code{\_} placeholder to indicate the value returned by the preceding function in the pipe. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{data.frame}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{10}\hlstd{,} \hlkwc{y} \hlstd{=} \hlkwd{rnorm}\hlstd{(}\hlnum{10}\hlstd{)) |>} \hlkwd{within}\hlstd{(}\hlkwc{data} \hlstd{= _,} @@ -8873,11 +9086,11 @@ \section{Data pipes}\label{sec:script:pipes} \end{alltt} \begin{verbatim} ## x y is.large x4 -## 6 6 1.3870167 TRUE 1296 -## 7 7 1.0478046 TRUE 2401 -## 8 8 1.0516976 TRUE 4096 -## 9 9 -1.2978357 TRUE 6561 -## 10 10 -0.1478374 TRUE 10000 +## 6 6 -0.1035800 TRUE 1296 +## 7 7 -1.0635149 TRUE 2401 +## 8 8 -1.0523649 TRUE 4096 +## 9 9 1.4863807 TRUE 6561 +## 10 10 0.3770313 TRUE 10000 \end{verbatim} \end{kframe} \end{knitrout} @@ -8885,7 +9098,7 @@ \section{Data pipes}\label{sec:script:pipes} Subset can be also used to select variables or columns from data frames and matrices. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{data.frame}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{10}\hlstd{,} \hlkwc{y} \hlstd{=} \hlkwd{rnorm}\hlstd{(}\hlnum{10}\hlstd{)) |>} \hlkwd{within}\hlstd{(}\hlkwc{data} \hlstd{= _,} @@ -8897,17 +9110,17 @@ \section{Data pipes}\label{sec:script:pipes} \end{alltt} \begin{verbatim} ## y is.large x4 -## 6 -0.06270469 TRUE 1296 -## 7 0.17558976 TRUE 2401 -## 8 -0.37152746 TRUE 4096 -## 9 0.29486384 TRUE 6561 -## 10 2.43302643 TRUE 10000 +## 6 0.13150099 TRUE 1296 +## 7 0.53507326 TRUE 2401 +## 8 -0.44561247 TRUE 4096 +## 9 -0.04829987 TRUE 6561 +## 10 -1.31242321 TRUE 10000 \end{verbatim} \end{kframe} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{data.frame}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{10}\hlstd{,} \hlkwc{y} \hlstd{=} \hlkwd{rnorm}\hlstd{(}\hlnum{10}\hlstd{)) |>} \hlkwd{within}\hlstd{(}\hlkwc{data} \hlstd{= _,} @@ -8918,23 +9131,23 @@ \section{Data pipes}\label{sec:script:pipes} \hlkwd{subset}\hlstd{(}\hlkwc{x} \hlstd{= _,} \hlkwc{select} \hlstd{=} \hlkwd{c}\hlstd{(y, x4))} \end{alltt} \begin{verbatim} -## y x4 -## 1 0.5221588 1 -## 2 0.2811264 16 -## 3 -1.7004235 81 -## 4 -0.3034127 256 -## 5 0.2209199 625 -## 6 0.2380640 1296 -## 7 -0.5185240 2401 -## 8 1.4924110 4096 -## 9 0.2267772 6561 -## 10 -0.9044975 10000 +## y x4 +## 1 -0.8985389762 1 +## 2 -0.4316650730 16 +## 3 -0.2297928178 81 +## 4 0.3617773986 256 +## 5 1.2077645019 625 +## 6 -0.0001084183 1296 +## 7 -0.3162732874 2401 +## 8 0.7118966448 4096 +## 9 1.9003188153 6561 +## 10 2.0326521512 10000 \end{verbatim} \end{kframe} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{data.frame}\hlstd{(}\hlkwc{group} \hlstd{=} \hlkwd{factor}\hlstd{(}\hlkwd{rep}\hlstd{(}\hlkwd{c}\hlstd{(}\hlstr{"T1"}\hlstd{,} \hlstr{"T2"}\hlstd{,} \hlstr{"Ctl"}\hlstd{),} \hlkwc{each} \hlstd{=} \hlnum{4}\hlstd{)),} \hlkwc{y} \hlstd{=} \hlkwd{rnorm}\hlstd{(}\hlnum{12}\hlstd{)) |>} @@ -8943,8 +9156,8 @@ \section{Data pipes}\label{sec:script:pipes} \end{alltt} \begin{verbatim} ## group y -## 1 T1 -0.3787947 -## 2 T2 -0.5304246 +## 1 T1 0.03516914 +## 2 T2 0.11552738 \end{verbatim} \end{kframe} \end{knitrout} @@ -8952,7 +9165,7 @@ \section{Data pipes}\label{sec:script:pipes} Although the extraction operators are not accepted on the rhs of a pipe, function \Rfunction{getElement()} can be used to extract a single member by name, in this case a column. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{data.frame}\hlstd{(}\hlkwc{group} \hlstd{=} \hlkwd{factor}\hlstd{(}\hlkwd{rep}\hlstd{(}\hlkwd{c}\hlstd{(}\hlstr{"T1"}\hlstd{,} \hlstr{"T2"}\hlstd{,} \hlstr{"Ctl"}\hlstd{),} \hlkwc{each} \hlstd{=} \hlnum{4}\hlstd{)),} \hlkwc{y} \hlstd{=} \hlkwd{rnorm}\hlstd{(}\hlnum{12}\hlstd{)) |>} @@ -8961,7 +9174,7 @@ \section{Data pipes}\label{sec:script:pipes} \hlkwd{getElement}\hlstd{(}\hlstr{"y"}\hlstd{)} \end{alltt} \begin{verbatim} -## [1] 0.1558610 -0.8144611 +## [1] 0.1797873 0.6256145 \end{verbatim} \end{kframe} \end{knitrout} @@ -9012,7 +9225,7 @@ \section{Conditional evaluation}\label{sec:script:flow:control} \end{explainbox} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{flag} \hlkwb{<-} \hlnum{TRUE} \hlkwa{if} \hlstd{(flag)} \hlkwd{print}\hlstd{(}\hlstr{"Hello!"}\hlstd{)} @@ -9031,7 +9244,7 @@ \section{Conditional evaluation}\label{sec:script:flow:control} Nothing in the \Rlang language prevents this condition from being a \code{logical} constant. Explain why \code{if (TRUE)} in the syntactically-correct statement below is of no practical use. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwa{if} \hlstd{(}\hlnum{TRUE}\hlstd{)} \hlkwd{print}\hlstd{(}\hlstr{"Hello!"}\hlstd{)} \end{alltt} @@ -9045,7 +9258,7 @@ \section{Conditional evaluation}\label{sec:script:flow:control} Conditional execution is much more useful than what could be expected from the previous examples, because the statement whose execution is being controlled can be a compound statement of almost any length or complexity. A very simple example follows, with a compound statement containing two statements, each one, a call to function \code{print()} with a different argument. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{printing} \hlkwb{<-} \hlnum{TRUE} \hlkwa{if} \hlstd{(printing) \{} @@ -9086,7 +9299,7 @@ \section{Conditional evaluation}\label{sec:script:flow:control} \end{center} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{a} \hlkwb{<-} \hlnum{10} \hlkwa{if} \hlstd{(a} \hlopt{<} \hlnum{0}\hlstd{)} \hlkwd{print}\hlstd{(}\hlstr{"'a' is negative"}\hlstd{)} \hlkwa{else} \hlkwd{print}\hlstd{(}\hlstr{"'a' is not negative"}\hlstd{)} @@ -9115,7 +9328,7 @@ \section{Conditional evaluation}\label{sec:script:flow:control} Do you still remember the rules about continuation lines? \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlcom{# 1} \hlstd{a} \hlkwb{<-} \hlnum{1} @@ -9130,7 +9343,7 @@ \section{Conditional evaluation}\label{sec:script:flow:control} Why does the statement below (not evaluated here) trigger an error while the one above does not? \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlcom{# 2 (not evaluated here)} \hlkwd{if} (a < 0) \hlkwd{print}(\hlstr{"\hlstr{'a'} is negative"}) @@ -9142,7 +9355,7 @@ \section{Conditional evaluation}\label{sec:script:flow:control} How do the continuation line rules apply when we add curly braces as shown below. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlcom{# 1} \hlstd{a} \hlkwb{<-} \hlnum{1} @@ -9168,7 +9381,7 @@ \section{Conditional evaluation}\label{sec:script:flow:control} In \Rlang, the value returned by any compound statement is the value returned by the last simple statement executed within the compound one. This means that we can assign the value returned by an \code{if} and \code{else} statement to a variable. This style is less frequently used, but occasionally can result in easier-to-understand scripts.\label{chunk:if:assignment} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{a} \hlkwb{<-} \hlnum{1} \hlstd{my.message} \hlkwb{<-} @@ -9184,7 +9397,7 @@ \section{Conditional evaluation}\label{sec:script:flow:control} \begin{explainbox} If the condition statement returns a value of a class other than \code{logical}, \Rlang will attempt to convert it into a logical. This is sometimes used instead of a comparison to zero, as the conversion from \code{integer} yields \code{TRUE} for all integers except zero. The code below illustrates a rather frequently used idiom for checking if there is something available to display. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{message} \hlkwb{<-} \hlstr{"abc"} \hlkwa{if} \hlstd{(}\hlkwd{length}\hlstd{(message))} \hlkwd{print}\hlstd{(message)} @@ -9201,7 +9414,7 @@ \section{Conditional evaluation}\label{sec:script:flow:control} % chunk contains intentional error-triggering examples \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwa{if} \hlstd{(}\hlnum{0}\hlstd{)} \hlkwd{print}\hlstd{(}\hlstr{"hello"}\hlstd{)} \hlkwa{if} \hlstd{(}\hlopt{-}\hlnum{1}\hlstd{)} \hlkwd{print}\hlstd{(}\hlstr{"hello"}\hlstd{)} @@ -9259,7 +9472,7 @@ \section{Conditional evaluation}\label{sec:script:flow:control} In the first example we use character constants saved in a variable as the condition, with the last statement with no tag being the default used for any other character value passed as first argument to \Rcontrol{switch()}. Instead of the name of variable \code{my.object}, we could have used a complex expression returning a suitable \code{character} value of length one. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my.object} \hlkwb{<-} \hlstr{"two"} \hlstd{b} \hlkwb{<-} \hlkwd{switch}\hlstd{(my.object,} @@ -9279,7 +9492,7 @@ \section{Conditional evaluation}\label{sec:script:flow:control} Multiple condition values can share the same statement. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my.object} \hlkwb{<-} \hlstr{"two"} \hlstd{b} \hlkwb{<-} \hlkwd{switch}\hlstd{(my.object,} @@ -9303,7 +9516,7 @@ \section{Conditional evaluation}\label{sec:script:flow:control} When the expression used as a condition returns a value that is not a \code{character}, it will be interpreted as an \code{integer} index. In this case no names are used for the cases, and the last one is always interpreted as the default. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my.number} \hlkwb{<-} \hlnum{2} \hlstd{b} \hlkwb{<-} \hlkwd{switch}\hlstd{(my.number,} @@ -9328,7 +9541,7 @@ \section{Conditional evaluation}\label{sec:script:flow:control} The statements for the different values of the condition in a \Rcontrol{switch()} statement can be compound statements as in the case of \code{if}, and they can even be used for a side effect. We can for example modify the example above to print a message when the default value is returned. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my.object} \hlkwb{<-} \hlstr{"ten"} \hlstd{b} \hlkwb{<-} \hlkwd{switch}\hlstd{(my.object,} @@ -9355,7 +9568,7 @@ \section{Conditional evaluation}\label{sec:script:flow:control} The \Rcontrol{switch()} statement can substitute for chained \code{if \ldots\ else} statements when all the conditions can be described by constant values or distinct values returned by the same test. The advantage is more concise and readable code. The equivalent of the first \Rcontrol{switch()} example above when written using \code{if \ldots\ else} becomes longer. Given how terse code using \Rcontrol{switch()} is, those not yet familiar with its use may find the more verbose style used below easier to understand. On the other hand, with numerous cases \Rcontrol{switch()} is easier to read and understand. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my.object} \hlkwb{<-} \hlstr{"two"} \hlkwa{if} \hlstd{(my.object} \hlopt{==} \hlstr{"one"}\hlstd{) \{} @@ -9387,7 +9600,7 @@ \section{Conditional evaluation}\label{sec:script:flow:control} It is customary to pass arguments to \code{ifelse} by position. We give a first example with named arguments to clarify the use of the function. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my.test} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlnum{TRUE}\hlstd{,} \hlnum{FALSE}\hlstd{,} \hlnum{TRUE}\hlstd{,} \hlnum{TRUE}\hlstd{)} \hlkwd{ifelse}\hlstd{(}\hlkwc{test} \hlstd{= my.test,} \hlkwc{yes} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{no} \hlstd{=} \hlopt{-}\hlnum{1}\hlstd{)} @@ -9401,7 +9614,7 @@ \section{Conditional evaluation}\label{sec:script:flow:control} In practice, the most common idiom is to have as an argument passed to \code{test}, the result of a comparison calculated on the fly. In the first example we compute the absolute values for a vector, equivalent to that returned by \Rlang function \code{abs()}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{nums} \hlkwb{<-} \hlopt{-}\hlnum{3}\hlopt{:+}\hlnum{3} \hlkwd{ifelse}\hlstd{(nums} \hlopt{<} \hlnum{0}\hlstd{,} \hlopt{-}\hlstd{nums, nums)} @@ -9416,7 +9629,7 @@ \section{Conditional evaluation}\label{sec:script:flow:control} Some additional examples to play with, with a few surprises. Study the examples below until you understand why returned values are what they are. In addition, create your own examples to test other possible cases. In other words, play with the code until you fully understand how \code{ifelse} works. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{a} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{10} \hlkwd{ifelse}\hlstd{(a} \hlopt{>} \hlnum{5}\hlstd{,} \hlnum{1}\hlstd{,} \hlopt{-}\hlnum{1}\hlstd{)} @@ -9434,7 +9647,7 @@ \section{Conditional evaluation}\label{sec:script:flow:control} In the case of \Rcontrol{ifelse()}, the length of the returned value is determined by the length of the logical vector passed as an argument to its first formal parameter (named \code{test})! A frequent mistake is to use a condition that returns a \code{logical} vector of length one, expecting that it will be recycled because arguments passed to the other formal parameters (named \code{yes} and \code{no}) are longer. However, no recycling will take place, resulting in a returned value of length one, with the remaining elements of the vectors passed to \code{yes} and \code{no} being discarded. Do try this by yourself, using logical vectors of different lengths. You can start with the examples below, making sure you understand why the returned values are what they are. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ifelse}\hlstd{(}\hlnum{TRUE}\hlstd{,} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{,} \hlopt{-}\hlnum{5}\hlopt{:-}\hlnum{1}\hlstd{)} \end{alltt} @@ -9473,7 +9686,7 @@ \section{Conditional evaluation}\label{sec:script:flow:control} Write, using \Rcontrol{ifelse()}, a single statement to combine numbers from the two vectors \code{a} and \code{b} into a result vector \code{d}, based on whether the corresponding value in vector \code{c} is the character \code{"a"} or \code{"b"}. Then print vector \code{d} to make the result visible. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{a} \hlkwb{<-} \hlopt{-}\hlnum{10}\hlopt{:-}\hlnum{1} \hlstd{b} \hlkwb{<-} \hlopt{+}\hlnum{1}\hlopt{:}\hlnum{10} @@ -9525,7 +9738,7 @@ \section{Iteration} In the diagram above the argument to \code{for()} is shown as \code{} but it can also be a \code{vector} of any mode. Objects of most classes derived from \code{list} or from an atomic vector can also fulfil the same role. The extraction operation with a numeric index must be supported by objects of the class passed as argument. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{b} \hlkwb{<-} \hlnum{0} \hlcom{# variable needs to set to a valid numeric value!} \hlkwa{for} \hlstd{(a} \hlkwa{in} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{) b} \hlkwb{<-} \hlstd{b} \hlopt{+} \hlstd{a} @@ -9546,7 +9759,7 @@ \section{Iteration} A\index{for loop!unrolled} loop can be ``unrolled'' into a linear sequence of statements. Let's work through the \code{for} loop above. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{b} \hlkwb{<-} \hlnum{0} \hlcom{# start of loop} @@ -9577,7 +9790,7 @@ \section{Iteration} The operation implemented in this example is a very frequent one, the sum of a vector, so base \Rlang provides a function optimized for efficiently computing it. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{sum}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{5}\hlstd{)} \end{alltt} @@ -9591,7 +9804,7 @@ \section{Iteration} It is important to note that a list or vector of length zero is a valid argument to \code{for()}, that triggers no error, but skips the statements in the loop body. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{b} \hlkwb{<-} \hlnum{0} \hlkwa{for} \hlstd{(a} \hlkwa{in} \hlkwd{numeric}\hlstd{()) b} \hlkwb{<-} \hlstd{b} \hlopt{+} \hlstd{a} @@ -9605,7 +9818,7 @@ \section{Iteration} \end{warningbox} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{a} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlnum{1}\hlstd{,} \hlnum{4}\hlstd{,} \hlnum{3}\hlstd{,} \hlnum{6}\hlstd{,} \hlnum{8}\hlstd{)} \hlkwa{for}\hlstd{(x} \hlkwa{in} \hlstd{a) \{}\hlkwd{print}\hlstd{(x}\hlopt{*}\hlnum{2}\hlstd{)\}} \hlcom{# print is needed!} @@ -9623,7 +9836,7 @@ \section{Iteration} A call to \Rloop{for} does not return a value. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{b} \hlkwb{<-} \hlkwa{for}\hlstd{(x} \hlkwa{in} \hlstd{a) \{x}\hlopt{*}\hlnum{2}\hlstd{\}} \hlstd{b} @@ -9639,7 +9852,7 @@ \section{Iteration} While in the examples above the code directly walked through the values in the vector, and alternative approach is to walk through a sequence of indices and to use the extraction operator \Roperator{[ ]} to access the values in a vector or list. This approach makes it possible to simultaneously walk through more than one list or vector. In the example below, elements of vectors \code{a} and \code{b} are accessed concurrently, \code{a} providing the input and \code{b} used to store the corresponding computed value.\label{chunk:for:example} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{b} \hlkwb{<-} \hlkwd{numeric}\hlstd{()} \hlcom{# an empty vector} \hlkwa{for}\hlstd{(i} \hlkwa{in} \hlkwd{seq}\hlstd{(}\hlkwc{along.with} \hlstd{= a)) \{} @@ -9708,7 +9921,7 @@ \section{Iteration} Run the examples below and explain why the two approaches are equivalent only when the length of \code{a} is one or more. Find the answer by assigning to \code{a}, vectors of different lengths, including zero (using \code{a <- numeric(0)}). Here we use function \Rfunction{seq()} to create a vector that contains sequence of \code{integer} values of the same length as \code{a} that we use to access members of vectors \code{a} and \code{b} with the extraction operator \code{[ ]} (use \code{help(seq)} to find additional information on how to create different sequences of integers). \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{b} \hlkwb{<-} \hlkwd{numeric}\hlstd{(}\hlkwd{length}\hlstd{(a))} \hlkwa{for}\hlstd{(i} \hlkwa{in} \hlkwd{seq}\hlstd{(}\hlkwc{along.with} \hlstd{= a)) \{} @@ -9731,7 +9944,7 @@ \section{Iteration} \Rloop{for} loops as described above, in the absence of errors, have statically predictable behavior. The compound statement in the loop will be executed once for each member of the vector or list. Special cases may require the alteration of the normal flow of execution in the loop. Two cases are easy to deal with, one is stopping iteration early, which we can do with a call to \Rloop{break()}, and another is jumping ahead to the start of the next iteration, which we can do with a call to \Rloop{next()}. The example below shows the use of these two functions: we ignore negative values contained in \code{a}, and exit or break out of the loop when the accumulated sum \code{b} exceeds 100. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{b} \hlkwb{<-} \hlnum{0} \hlstd{a} \hlkwb{<-} \hlopt{-}\hlnum{10}\hlopt{:}\hlnum{100} @@ -9791,7 +10004,7 @@ \section{Iteration} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{a} \hlkwb{<-} \hlnum{2} \hlkwa{while} \hlstd{(a} \hlopt{<} \hlnum{50}\hlstd{) \{} @@ -9822,7 +10035,7 @@ \section{Iteration} The statements above can be simplified to: \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{a} \hlkwb{<-} \hlnum{2} \hlkwd{print}\hlstd{(a)} @@ -9836,7 +10049,7 @@ \section{Iteration} Explain why this works, and how it relates to the support in \Rlang of \emph{chained} assignments to several variables within a single statement like the one below. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{a} \hlkwb{<-} \hlstd{b} \hlkwb{<-} \hlstd{c} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{5} \hlstd{a} @@ -9850,7 +10063,7 @@ \section{Iteration} As with \code{for} loops we can use an index variable in a \Rfunction{while} loop to walk through vectors and lists. The difference is that we have to update the index values explicitly in our own code. As example below is the example for \code{for} from page \pageref{chunk:for:example} rewritten using \Rfunction{while}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{b} \hlkwb{<-} \hlkwd{numeric}\hlstd{()} \hlcom{# an empty vector} \hlstd{i} \hlkwb{<-} \hlnum{1} @@ -9899,7 +10112,7 @@ \section{Iteration} \end{center} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{a} \hlkwb{<-} \hlnum{2} \hlkwa{repeat}\hlstd{\{} @@ -9932,7 +10145,7 @@ \subsection{Explicit loops can be slow in \Rlang}\label{sec:loops:slow} Execution speed needs to be balanced against the effort invested in writing faster code. However, using vectorization and specific \Rlang functions requires little effort once we are familiar with them. The simplest way of measuring the execution time of an \Rlang expression is to use function \Rfunction{system.time()}. However, the returned time is in seconds and consequently the expression must take long enough to execute for the returned time to have useful resolution. See package \pkgname{microbenchmark} for tools for benchmarking code with better time resolution.\qRloop{for} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{system.time}\hlstd{(\{a} \hlkwb{<-} \hlkwd{numeric}\hlstd{()} \hlkwa{for} \hlstd{(i} \hlkwa{in} \hlnum{1}\hlopt{:}\hlnum{1000000}\hlstd{) \{} @@ -9942,7 +10155,7 @@ \subsection{Explicit loops can be slow in \Rlang}\label{sec:loops:slow} \end{alltt} \begin{verbatim} ## user system elapsed -## 0.34 0.00 0.35 +## 0.39 0.02 0.41 \end{verbatim} \end{kframe} \end{knitrout} @@ -9951,7 +10164,7 @@ \subsection{Explicit loops can be slow in \Rlang}\label{sec:loops:slow} Whenever\label{box:vectorization:perf} working with large data sets, or many similar data sets, we will need to take performance into account. As vectorization usually also makes code simpler, it is good style to use vectorization whenever possible. For operations that are frequently used, \Rlang includes specific functions. It is thus important to consider not only vectorization of arithmetic but also check for the availability of performance-optimized functions for specific cases. The results from running the code examples in this box are not included, because they are the same for all chunks. Here we are interested in the execution time, and we leave this as an exercise. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{a} \hlkwb{<-} \hlkwd{rnorm}\hlstd{(}\hlnum{10}\hlopt{^}\hlnum{7}\hlstd{)} \hlcom{# a big number} \end{alltt} @@ -9959,7 +10172,7 @@ \subsection{Explicit loops can be slow in \Rlang}\label{sec:loops:slow} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{system.time}\hlstd{(} \hlstd{\{} @@ -9977,7 +10190,7 @@ \subsection{Explicit loops can be slow in \Rlang}\label{sec:loops:slow} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{b} \hlkwb{<-} \hlkwd{numeric}\hlstd{(}\hlkwd{length}\hlstd{(a)}\hlopt{-}\hlnum{1}\hlstd{)} \hlcom{# pre-allocate memory} \hlstd{i} \hlkwb{<-} \hlnum{1} @@ -9991,7 +10204,7 @@ \subsection{Explicit loops can be slow in \Rlang}\label{sec:loops:slow} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{b} \hlkwb{<-} \hlkwd{numeric}\hlstd{()} \hlcom{# do not pre-allocate memory} \hlkwa{for}\hlstd{(i} \hlkwa{in} \hlkwd{seq}\hlstd{(}\hlkwc{along.with} \hlstd{= b)) \{} @@ -10003,7 +10216,7 @@ \subsection{Explicit loops can be slow in \Rlang}\label{sec:loops:slow} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{b} \hlkwb{<-} \hlkwd{numeric}\hlstd{(}\hlkwd{length}\hlstd{(a)}\hlopt{-}\hlnum{1}\hlstd{)} \hlcom{# pre-allocate memory} \hlkwa{for}\hlstd{(i} \hlkwa{in} \hlkwd{seq}\hlstd{(}\hlkwc{along.with} \hlstd{= b)) \{} @@ -10015,7 +10228,7 @@ \subsection{Explicit loops can be slow in \Rlang}\label{sec:loops:slow} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlcom{# vectorized using extraction operators} \hlstd{b} \hlkwb{<-} \hlstd{a[}\hlnum{2}\hlopt{:}\hlkwd{length}\hlstd{(a)]} \hlopt{-} \hlstd{a[}\hlnum{1}\hlopt{:}\hlkwd{length}\hlstd{(a)}\hlopt{-}\hlnum{1}\hlstd{]} @@ -10025,7 +10238,7 @@ \subsection{Explicit loops can be slow in \Rlang}\label{sec:loops:slow} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlcom{# or even better} \hlstd{b} \hlkwb{<-} \hlkwd{diff}\hlstd{(a)} @@ -10044,7 +10257,7 @@ \subsection{Nesting of loops}\label{sec:nested:loops} All the execution-flow control statements seen above can be nested. We will show an example with two \code{for} loops. We first create a matrix of data to work with: \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{A} \hlkwb{<-} \hlkwd{matrix}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{50}\hlstd{,} \hlnum{10}\hlstd{)} \hlstd{A} @@ -10066,7 +10279,7 @@ \subsection{Nesting of loops}\label{sec:nested:loops} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{row.sum} \hlkwb{<-} \hlkwd{numeric}\hlstd{()} \hlkwa{for} \hlstd{(i} \hlkwa{in} \hlnum{1}\hlopt{:}\hlkwd{nrow}\hlstd{(A)) \{} @@ -10095,7 +10308,7 @@ \subsection{Nesting of loops}\label{sec:nested:loops} When dealing with nested loops, as the inner loop is executed most frequently, this is the best place to look for ways of reducing execution time. In this example, vectorization can be achieved easily for the inner loop, as \Rlang has a function \code{sum()} which returns the sum of a vector passed as its argument. Replacing the inner loop by an efficient function can be expected to improve performance significantly. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{row.sum} \hlkwb{<-} \hlkwd{numeric}\hlstd{(}\hlkwd{nrow}\hlstd{(A))} \hlcom{# faster} \hlkwa{for} \hlstd{(i} \hlkwa{in} \hlnum{1}\hlopt{:}\hlkwd{nrow}\hlstd{(A)) \{} @@ -10115,7 +10328,7 @@ \subsection{Nesting of loops}\label{sec:nested:loops} for details on the use of the different \emph{apply} functions. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{row.sum} \hlkwb{<-} \hlkwd{apply}\hlstd{(A,} \hlkwc{MARGIN} \hlstd{=} \hlnum{1}\hlstd{, sum)} \hlcom{# MARGIN=1 indicates rows} \hlkwd{print}\hlstd{(row.sum)} @@ -10128,7 +10341,7 @@ \subsection{Nesting of loops}\label{sec:nested:loops} Calculating row sums is a frequent operation, so \Rlang has a built-in function for this. As earlier with \code{diff()}, it is always worthwhile to check if there is an existing \Rlang function, optimized for performance, capable of doing the computations we need. In this case, using \code{rowSums()} simplifies the nested loops into a single function call, both improving performance and readability. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{rowSums}\hlstd{(A)} \end{alltt} @@ -10150,7 +10363,7 @@ \subsubsection{Clean-up} Sometimes we need to make sure that clean-up code is executed even if the execution of a script or function is aborted by the user or as a result of an error condition. A typical example is a script that temporarily sets a disk folder as the working directory or uses a file as temporary storage. Function \Rfunction{on.exit()} can be used to record that a user supplied expression needs to be executed when the current function, or a script, exits. Function \Rfunction{on.exit()} can also make code easier to read as it keeps creation and clean-up next to each other in the body of a function or in the listing of a script. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{file.create}\hlstd{(}\hlstr{"temp.file"}\hlstd{)} \end{alltt} @@ -10185,7 +10398,7 @@ \subsection{Applying functions to vectors, lists and data frames} \end{warningbox} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{set.seed}\hlstd{(}\hlnum{123456}\hlstd{)} \hlcom{# so that a.vector does not change} \hlstd{a.vector} \hlkwb{<-} \hlkwd{runif}\hlstd{(}\hlnum{6}\hlstd{)} \hlcom{# A short vector as input to keep output short} @@ -10198,7 +10411,7 @@ \subsection{Applying functions to vectors, lists and data frames} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my.fun} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{,} \hlkwc{k}\hlstd{) \{}\hlkwd{log}\hlstd{(x)} \hlopt{+} \hlstd{k\}} \end{alltt} @@ -10206,7 +10419,7 @@ \subsection{Applying functions to vectors, lists and data frames} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{z} \hlkwb{<-} \hlkwd{lapply}\hlstd{(}\hlkwc{X} \hlstd{= a.vector,} \hlkwc{FUN} \hlstd{= my.fun,} \hlkwc{k} \hlstd{=} \hlnum{5}\hlstd{)} \hlkwd{str}\hlstd{(z)} @@ -10226,7 +10439,7 @@ \subsection{Applying functions to vectors, lists and data frames} The code above calls \code{my.fun()} once with each of the six members of \code{a.vector} as argument and collects the returned values into a list, hence the \emph{l} in \Rloop{lapply()}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{z} \hlkwb{<-} \hlkwd{sapply}\hlstd{(}\hlkwc{X} \hlstd{= a.vector,} \hlkwc{FUN} \hlstd{= my.fun,} \hlkwc{k} \hlstd{=} \hlnum{5}\hlstd{)} \hlkwd{str}\hlstd{(z)} @@ -10240,7 +10453,7 @@ \subsection{Applying functions to vectors, lists and data frames} The code above calls \code{my.fun()} with of the six members of \code{a.vector} and collects the returned values into a vector, i.e., it simplifies the list into a vector, hence the \emph{s} in \Rloop{sapply()}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{z} \hlkwb{<-} \hlkwd{sapply}\hlstd{(}\hlkwc{X} \hlstd{= a.vector,} \hlkwc{FUN} \hlstd{= my.fun,} \hlkwc{k} \hlstd{=} \hlnum{5}\hlstd{,} \hlkwc{simplify} \hlstd{=} \hlnum{FALSE}\hlstd{)} \hlkwd{str}\hlstd{(z)} @@ -10262,7 +10475,7 @@ \subsection{Applying functions to vectors, lists and data frames} Anonymous functions can be defined on the fly and passed to \code{FUN}, allowing us to re-write the examples above more concisely (only the second one shown). \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{z} \hlkwb{<-} \hlkwd{sapply}\hlstd{(}\hlkwc{X} \hlstd{= a.vector,} \hlkwc{FUN} \hlstd{=} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{,} \hlkwc{k}\hlstd{) \{}\hlkwd{log}\hlstd{(x)} \hlopt{+} \hlstd{k\},} \hlkwc{k} \hlstd{=} \hlnum{5}\hlstd{)} \hlkwd{str}\hlstd{(z)} @@ -10278,7 +10491,7 @@ \subsection{Applying functions to vectors, lists and data frames} \end{infobox} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{z} \hlkwb{<-} \hlkwd{log}\hlstd{(a.vector)} \hlopt{+} \hlnum{5} \hlkwd{str}\hlstd{(z)} @@ -10292,7 +10505,7 @@ \subsection{Applying functions to vectors, lists and data frames} As explained in section \ref{sec:R:data:frames} on page \pageref{sec:R:data:frames}, class \code{data.frame} is derived from class \code{list}. The columns in a data frame are equivalent to members of a list, and functions can thus be applied to columns. Using data from package \pkgname{datasets} for stopping distance for cars. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{sapply}\hlstd{(}\hlkwc{X} \hlstd{= cars,} \hlkwc{FUN} \hlstd{= mean)} \end{alltt} @@ -10306,7 +10519,7 @@ \subsection{Applying functions to vectors, lists and data frames} In the next example, function \code{mean()} returns \code{NA} for the factor \code{Species}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{sapply}\hlstd{(}\hlkwc{X} \hlstd{= iris,} \hlkwc{FUN} \hlstd{= mean)} \end{alltt} @@ -10325,7 +10538,7 @@ \subsection{Applying functions to vectors, lists and data frames} We first use \code{lapply()} to create the object \code{a.list} containing artificial data. One or more additional \emph{named} arguments can be passed to the function to be applied. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{set.seed}\hlstd{(}\hlnum{123456}\hlstd{)} \hlstd{a.list} \hlkwb{<-} \hlkwd{lapply}\hlstd{(}\hlkwd{rep}\hlstd{(}\hlnum{4}\hlstd{,} \hlnum{5}\hlstd{), rnorm,} \hlkwc{mean} \hlstd{=} \hlnum{10}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{1}\hlstd{)} @@ -10345,7 +10558,7 @@ \subsection{Applying functions to vectors, lists and data frames} We define the function that we will apply, a function that returns a numeric vector of length 2. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{mean_and_sd} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{,} \hlkwc{na.rm} \hlstd{=} \hlnum{FALSE}\hlstd{) \{} \hlkwd{c}\hlstd{(}\hlkwd{mean}\hlstd{(x,} \hlkwc{na.rm} \hlstd{= na.rm),} \hlkwd{sd}\hlstd{(x,} \hlkwc{na.rm} \hlstd{= na.rm))} @@ -10357,7 +10570,7 @@ \subsection{Applying functions to vectors, lists and data frames} We next use \Rloop{vapply()} to apply our function to each member vector of the list. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{values} \hlkwb{<-} \hlkwd{vapply}\hlstd{(}\hlkwc{X} \hlstd{= a.list,} \hlkwc{FUN} \hlstd{= mean_and_sd,} @@ -10396,7 +10609,7 @@ \subsection{Applying functions to matrices and arrays} \end{warningbox} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{a.matrix} \hlkwb{<-} \hlkwd{matrix}\hlstd{(}\hlkwd{runif}\hlstd{(}\hlnum{100}\hlstd{),} \hlkwc{ncol} \hlstd{=} \hlnum{10}\hlstd{)} \hlstd{z} \hlkwb{<-} \hlkwd{apply}\hlstd{(a.matrix,} \hlkwc{MARGIN} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{FUN} \hlstd{= mean)} @@ -10419,7 +10632,7 @@ \subsection{Applying functions to matrices and arrays} If we apply a function that returns a value of the same length as its input, then the dimensions of the value returned by \Rloop{apply()} are the same as those of its input. We use, in the next examples, a ``no-op'' function that returns its argument unchanged, so that input and output can be easily compared. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{a.small.matrix} \hlkwb{<-} \hlkwd{matrix}\hlstd{(}\hlkwd{rnorm}\hlstd{(}\hlnum{6}\hlstd{,} \hlkwc{mean} \hlstd{=} \hlnum{10}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{1}\hlstd{),} \hlkwc{ncol} \hlstd{=} \hlnum{2}\hlstd{)} \hlstd{a.small.matrix} \hlkwb{<-} \hlkwd{round}\hlstd{(a.small.matrix,} \hlkwc{digits} \hlstd{=} \hlnum{1}\hlstd{)} @@ -10435,7 +10648,7 @@ \subsection{Applying functions to matrices and arrays} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{no_op.fun} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{) \{x\}} \end{alltt} @@ -10443,7 +10656,7 @@ \subsection{Applying functions to matrices and arrays} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{z} \hlkwb{<-} \hlkwd{apply}\hlstd{(}\hlkwc{X} \hlstd{= a.small.matrix,} \hlkwc{MARGIN} \hlstd{=} \hlnum{2}\hlstd{,} \hlkwc{FUN} \hlstd{= no_op.fun)} \hlkwd{class}\hlstd{(z)} @@ -10466,7 +10679,7 @@ \subsection{Applying functions to matrices and arrays} In the chunk above, we passed \code{MARGIN = 2}, but if we pass \code{MARGIN = 1}, we get a return value that is transposed! To restore the original layout of the matrix we can transpose the result with function \Rfunction{t()}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{z} \hlkwb{<-} \hlkwd{apply}\hlstd{(}\hlkwc{X} \hlstd{= a.small.matrix,} \hlkwc{MARGIN} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{FUN} \hlstd{= no_op.fun)} \hlstd{z} @@ -10491,7 +10704,7 @@ \subsection{Applying functions to matrices and arrays} A more realistic example, but difficult to grasp without seeing the toy examples shown above, is when we apply a function that returns a value of a different length than its input, but longer than one. When we compute column summaries (\code{MARGIN = 2}), a matrix is returned, with each column containing the summaries for the corresponding column in the original matrix (\code{a.small.matrix}). In contrast, when we compute row summaries (\code{MARGIN = 1}), each column in the returned matrix contains the summaries for one row in the original array. What happens is that by using \Rloop{apply()} the dimension of the original matrix or array over which we compute summaries ``disappears.'' Consequently, given how matrices are stored in \Rlang, when columns collapse into a single value, the rows become columns. After this, the vectors returned by the applied function, are stored as rows. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{mean_and_sd} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{,} \hlkwc{na.rm} \hlstd{=} \hlnum{FALSE}\hlstd{) \{} \hlkwd{c}\hlstd{(}\hlkwd{mean}\hlstd{(x,} \hlkwc{na.rm} \hlstd{= na.rm),} \hlkwd{sd}\hlstd{(x,} \hlkwc{na.rm} \hlstd{= na.rm))} @@ -10501,7 +10714,7 @@ \subsection{Applying functions to matrices and arrays} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{z} \hlkwb{<-} \hlkwd{apply}\hlstd{(}\hlkwc{X} \hlstd{= a.small.matrix,} \hlkwc{MARGIN} \hlstd{=} \hlnum{2}\hlstd{,} \hlkwc{FUN} \hlstd{= mean_and_sd,} \hlkwc{na.rm} \hlstd{=} \hlnum{TRUE}\hlstd{)} \hlstd{z} @@ -10515,7 +10728,7 @@ \subsection{Applying functions to matrices and arrays} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{z} \hlkwb{<-} \hlkwd{apply}\hlstd{(}\hlkwc{X} \hlstd{= a.small.matrix,} \hlkwc{MARGIN} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{FUN} \hlstd{= mean_and_sd,} \hlkwc{na.rm} \hlstd{=} \hlnum{TRUE}\hlstd{)} \hlstd{z} @@ -10531,7 +10744,7 @@ \subsection{Applying functions to matrices and arrays} In all examples above, we have used ordinary functions. Operators in \Rlang are functions with two formal parameters which can be called using infix notation in expressions---i.e., \code{a + b}. By back-quoting their names they can be called using the same syntax as for ordinary functions, and consequently also passed to the \code{FUN} parameter of apply functions. A toy example, equivalent to the vectorized operation \code{a.vector + 5} follows. We enclosed operator \code{+} in back ticks (\code{`}) and pass by name a constant to its second formal parameter (\code{e2 = 5}). \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{set.seed}\hlstd{(}\hlnum{123456}\hlstd{)} \hlcom{# so that a.vector does not change} \hlstd{a.vector} \hlkwb{<-} \hlkwd{runif}\hlstd{(}\hlnum{10}\hlstd{)} @@ -10583,7 +10796,7 @@ \section{Object names and character strings} First using a \code{character} constant. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{assign}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlnum{9.99}\hlstd{)} \hlstd{a} @@ -10596,7 +10809,7 @@ \section{Object names and character strings} Next using a \code{character} value stored in a variable. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{name.of.var} \hlkwb{<-} \hlstr{"b"} \hlkwd{assign}\hlstd{(name.of.var,} \hlnum{9.99}\hlstd{)} @@ -10613,7 +10826,7 @@ \section{Object names and character strings} Another case is when \code{character} values are the result of a computation. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwa{for} \hlstd{(i} \hlkwa{in} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{) \{} \hlkwd{assign}\hlstd{(}\hlkwd{paste}\hlstd{(}\hlstr{"zz_"}\hlstd{, i,} \hlkwc{sep} \hlstd{=} \hlstr{""}\hlstd{), i}\hlopt{^}\hlnum{2}\hlstd{)} @@ -10629,7 +10842,7 @@ \section{Object names and character strings} The complementary operation of \emph{assigning} a name to an object is to \emph{get} an object when we have available its name as a character string. The corresponding function is \Rfunction{get()}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{get}\hlstd{(}\hlstr{"a"}\hlstd{)} \end{alltt} @@ -10648,7 +10861,7 @@ \section{Object names and character strings} If we have available a character vector containing object names and we want to create a list containing these objects we can use function \Rfunction{mget()}. In the example below we use function \code{ls()} to obtain a character vector of object names matching a specific pattern and then collect all these objects into a list. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{obj_names} \hlkwb{<-} \hlkwd{ls}\hlstd{(}\hlkwc{pattern} \hlstd{=} \hlstr{"zz_*"}\hlstd{)} \hlstd{obj_lst} \hlkwb{<-} \hlkwd{mget}\hlstd{(obj_names)} @@ -10680,7 +10893,7 @@ \section{The multiple faces of loops}\label{sec:R:faces:of:loops} In this first example we use a \emph{character vector of function names}, and use function \Rfunction{do.call()} as it accepts either character strings or function names as its first argument. We obtain a numeric vector with named members with names matching the function names. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{x} \hlkwb{<-} \hlkwd{rnorm}\hlstd{(}\hlnum{10}\hlstd{)} \hlstd{results} \hlkwb{<-} \hlkwd{numeric}\hlstd{()} @@ -10700,7 +10913,7 @@ \section{The multiple faces of loops}\label{sec:R:faces:of:loops} When traversing a \emph{list of functions} in a loop, we face the problem that we cannot access the original names of the functions as what is stored in the list are the definitions of the functions. In this case, we can hold the function definitions in the loop variable (\code{f} in the chunk below) and call the functions by use of the function call notation (\code{f()}). We obtain a numeric vector with anonymous members. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{results} \hlkwb{<-} \hlkwd{numeric}\hlstd{()} \hlstd{funs} \hlkwb{<-} \hlkwd{list}\hlstd{(mean, max, min)} @@ -10718,7 +10931,7 @@ \section{The multiple faces of loops}\label{sec:R:faces:of:loops} We can use a named list of functions to gain full control of the naming of the results. We obtain a numeric vector with named members with names matching the names given to the list members. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{results} \hlkwb{<-} \hlkwd{numeric}\hlstd{()} \hlstd{funs} \hlkwb{<-} \hlkwd{list}\hlstd{(}\hlkwc{average} \hlstd{= mean,} \hlkwc{maximum} \hlstd{= max,} \hlkwc{minimum} \hlstd{= min)} @@ -10737,7 +10950,7 @@ \section{The multiple faces of loops}\label{sec:R:faces:of:loops} Next is an example using model formulas. We use a loop to fit three models, obtaining a list of fitted models. We cannot pass to \Rfunction{anova()} this list of fitted models, as it expects each fitted model as a separate nameless argument to its \code{\ldots} parameter. We can get around this problem using function \Rfunction{do.call()} to call \Rfunction{anova()}. Function \Rfunction{do.call()} passes the members of the list passed as its second argument as individual arguments to the function being called, using their names if present. \Rfunction{anova()} expects nameless arguments so we need to remove the names present in \code{results}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my.data} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{10}\hlstd{,} \hlkwc{y} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{10} \hlopt{+} \hlkwd{rnorm}\hlstd{(}\hlnum{10}\hlstd{,} \hlnum{1}\hlstd{,} \hlnum{0.1}\hlstd{))} \hlstd{results} \hlkwb{<-} \hlkwd{list}\hlstd{()} @@ -10778,7 +10991,7 @@ \section{The multiple faces of loops}\label{sec:R:faces:of:loops} If we had no further use for \code{results} we could simply build a list with nameless members by using positional indexing. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{results} \hlkwb{<-} \hlkwd{list}\hlstd{()} \hlstd{models} \hlkwb{<-} \hlkwd{list}\hlstd{(y} \hlopt{~} \hlstd{x, y} \hlopt{~} \hlstd{x} \hlopt{-} \hlnum{1}\hlstd{, y} \hlopt{~} \hlstd{x} \hlopt{+} \hlkwd{I}\hlstd{(x}\hlopt{^}\hlnum{2}\hlstd{))} @@ -10884,7 +11097,7 @@ \section{Defining functions and operators}\label{sec:script:functions} New functions and operators are defined using function \Rfunction{function()}, and saved like any other object in \Rpgrm by assignment to a variable name. In the example below, \code{x} and \code{y} are both formal parameters, or names used within the function for objects that will be supplied as \emph{arguments} when the function is called. One can think of parameter names as placeholders for actual values to be supplied as arguments when calling the function. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my.prod} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{,} \hlkwc{y}\hlstd{)\{x} \hlopt{*} \hlstd{y\}} \hlkwd{my.prod}\hlstd{(}\hlnum{4}\hlstd{,} \hlnum{3}\hlstd{)} @@ -10899,7 +11112,7 @@ \section{Defining functions and operators}\label{sec:script:functions} In base \Rlang, arguments\index{functions!arguments} to functions are passed by copy. This is something very important to remember. Whatever code in a function's body does to modify an argument passed through a formal parameter, its value outside the function will remain (almost) always unchanged. (In other computer languages, arguments can also be passed by reference, meaning that assignments to a formal parameter within the body of the function are back-referenced to the argument and modify it. It is possible to imitate such behavior in \Rlang using some language trickery and consequently, some packages such as \pkgname{data.table} do define functions that use passing of arguments by reference.) \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my.change} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{)\{x} \hlkwb{<-} \hlnum{NA}\hlstd{\}} \hlstd{a} \hlkwb{<-} \hlnum{1} @@ -10924,7 +11137,7 @@ \section{Defining functions and operators}\label{sec:script:functions} \label{chunck:print:funs} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{print.x.1} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{)\{}\hlkwd{print}\hlstd{(x)\}} \hlkwd{print.x.1}\hlstd{(}\hlstr{"test"}\hlstd{)} @@ -10983,7 +11196,7 @@ \subsection{Ordinary functions}\label{sec:functions:sem} After the toy examples above, we will define a small but useful function: a function for calculating the standard error of the mean from a numeric vector. The standard error is given by $S_{\hat{x}} = \sqrt{S^2 / n}$. We can translate this into the definition of an \Rlang function called \code{SEM}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{SEM} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{)\{}\hlkwd{sqrt}\hlstd{(}\hlkwd{var}\hlstd{(x)} \hlopt{/} \hlkwd{length}\hlstd{(x))\}} \end{alltt} @@ -10993,7 +11206,7 @@ \subsection{Ordinary functions}\label{sec:functions:sem} We can test our function. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{a} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlnum{1}\hlstd{,} \hlnum{2}\hlstd{,} \hlnum{3}\hlstd{,} \hlopt{-}\hlnum{5}\hlstd{)} \hlstd{a.na} \hlkwb{<-} \hlkwd{c}\hlstd{(a,} \hlnum{NA}\hlstd{)} @@ -11026,7 +11239,7 @@ \subsection{Ordinary functions}\label{sec:functions:sem} A readable way of implementing this in code is to define the function as follows. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{sem} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{,} \hlkwc{na.omit} \hlstd{=} \hlnum{FALSE}\hlstd{) \{} \hlkwa{if} \hlstd{(na.omit) \{} @@ -11039,7 +11252,7 @@ \subsection{Ordinary functions}\label{sec:functions:sem} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{sem}\hlstd{(}\hlkwc{x} \hlstd{= a)} \end{alltt} @@ -11078,7 +11291,7 @@ \subsection{Ordinary functions}\label{sec:functions:sem} We first print (implicitly) the definition of our function from earlier in this section. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{sem} \end{alltt} @@ -11089,7 +11302,7 @@ \subsection{Ordinary functions}\label{sec:functions:sem} ## } ## sqrt(var(x)/length(x)) ## } -## +## \end{verbatim} \end{kframe} \end{knitrout} @@ -11097,7 +11310,7 @@ \subsection{Ordinary functions}\label{sec:functions:sem} Next we print the definition of \Rlang's linear model fitting function \code{lm()}. (Use of \code{lm()} is described in section \ref{sec:stat:LM} on page \pageref{sec:stat:LM}.) \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{lm} \end{alltt} @@ -11174,7 +11387,7 @@ \subsection{Ordinary functions}\label{sec:functions:sem} ## z$qr <- NULL ## z ## } -## +## ## \end{verbatim} \end{kframe} @@ -11183,7 +11396,7 @@ \subsection{Ordinary functions}\label{sec:functions:sem} As can be seen at the end of the listing, this function written in the \Rlang language has been byte-compiled so that it executes faster. Functions that are part of the \Rlang language, but that are not coded using the \Rlang language, are called primitives and their full definition cannot be accessed through their name (c.f., \code{sem()} defined above). \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{list} \end{alltt} @@ -11199,7 +11412,7 @@ \subsection{Operators} Operators are functions that use a different syntax for being called. If their name is enclosed in back ticks they can be called as ordinary functions. Binary operators like \code{+} have two formal parameters, and unary operators like unary \code{-} have only one formal parameter. The parameters of many binary \Rlang operators are named \code{e1} and \code{e2}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlnum{1} \hlopt{/} \hlnum{2} \end{alltt} @@ -11226,7 +11439,7 @@ \subsection{Operators} The name by itself and enclosed in back ticks allows us to access the definition of an operator. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{`/`} \end{alltt} @@ -11240,7 +11453,7 @@ \subsection{Operators} \textbf{Defining a new operator.} We will define a binary operator (taking two arguments) that subtracts from the numbers in a vector the mean of another vector. First we need a suitable name, but we have less freedom as names of user-defined operators must be enclosed in percent signs. We will use \code{\%-mean\%} and as with any \emph{special name}, we need to enclose it in quotation marks for the assignment. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstr{"%-mean%"} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{e1}\hlstd{,} \hlkwc{e2}\hlstd{) \{} \hlstd{e1} \hlopt{-} \hlkwd{mean}\hlstd{(e2)} @@ -11252,7 +11465,7 @@ \subsection{Operators} We can then use our new operator in a example. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlnum{10}\hlopt{:}\hlnum{15} \hlopt{%-mean%} \hlnum{1}\hlopt{:}\hlnum{20} \end{alltt} @@ -11265,7 +11478,7 @@ \subsection{Operators} To print the definition, we enclose the name of our new operator in back ticks---i.e., we \emph{back quote} the special name. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{`%-mean%`} \end{alltt} @@ -11302,14 +11515,14 @@ \section{Objects, classes, and methods}\label{sec:script:objects:classes:methods We first explore one of the methods already available in \Rlang. The definition of \code{mean} shows that it is the generic for a method. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{mean} \end{alltt} \begin{verbatim} ## function (x, ...) ## UseMethod("mean") -## +## ## \end{verbatim} \end{kframe} @@ -11318,7 +11531,7 @@ \section{Objects, classes, and methods}\label{sec:script:objects:classes:methods We can find out which specializations of method are available in the current search path using \Rfunction{methods()}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{methods}\hlstd{(mean)} \end{alltt} @@ -11333,7 +11546,7 @@ \section{Objects, classes, and methods}\label{sec:script:objects:classes:methods We can also use \Rfunction{methods()} to query all methods, including operators, defined for objects of a given class. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{methods}\hlstd{(}\hlkwc{class} \hlstd{=} \hlstr{"list"}\hlstd{)} \end{alltt} @@ -11348,7 +11561,7 @@ \section{Objects, classes, and methods}\label{sec:script:objects:classes:methods S3 class information is stored as a character vector in an attribute named \code{"class"}. The most basic approach to creation of an object of a new S3 class, is to add the new class name to the class attribute of the object. As the implied class hierarchy is given by the order of the members of the character vector, the name of the new class must be added at the head of the vector. Even though this step can be done as shown here, in practice this step would normally take place within a \emph{constructor} function and the new class, if defined within a package, would need to be registered. We show here this bare-bones example to demonstrate how S3 classes are implemented in \Rlang. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{a} \hlkwb{<-} \hlnum{123} \hlkwd{class}\hlstd{(a)} @@ -11369,7 +11582,7 @@ \section{Objects, classes, and methods}\label{sec:script:objects:classes:methods Now we create a print method specific to \code{"myclass"} objects. Internally we are using function \Rfunction{sprintf()} and for the format template to work we need to pass a \code{numeric} value as an argument---i.e., obviously \Rfunction{sprintf()} does not ``know'' how to handle objects of the class we have just created! \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{print.myclass} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{) \{} \hlkwd{sprintf}\hlstd{(}\hlstr{"[myclass] %.0f"}\hlstd{,} \hlkwd{as.numeric}\hlstd{(x))} @@ -11381,7 +11594,7 @@ \section{Objects, classes, and methods}\label{sec:script:objects:classes:methods Once a specialized method exists for a class, it will be used for objects of this class. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{print}\hlstd{(a)} \end{alltt} @@ -11403,7 +11616,7 @@ \section{Objects, classes, and methods}\label{sec:script:objects:classes:methods Defining a new S3 generic\index{generic method!S3 class system} is also quite simple. A generic method and a default method need to be created. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my_print} \hlkwb{<-} \hlkwa{function} \hlstd{(}\hlkwc{x}\hlstd{,} \hlkwc{...}\hlstd{) \{} \hlkwd{UseMethod}\hlstd{(}\hlstr{"my_print"}\hlstd{, x)} @@ -11418,7 +11631,7 @@ \section{Objects, classes, and methods}\label{sec:script:objects:classes:methods \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{my_print}\hlstd{(}\hlnum{123}\hlstd{)} \end{alltt} @@ -11439,7 +11652,7 @@ \section{Objects, classes, and methods}\label{sec:script:objects:classes:methods Up to now, \Rfunction{my\_print()}, has no specialization. We now write one for data frames. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my_print.data.frame} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{,} \hlkwc{rows} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{,} \hlkwc{...}\hlstd{) \{} \hlkwd{print}\hlstd{(x[rows, ], ...)} @@ -11452,7 +11665,7 @@ \section{Objects, classes, and methods}\label{sec:script:objects:classes:methods We add the second statement so that the function invisibly returns the whole data frame, rather than the lines printed. We now do a quick test of the function. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{my_print}\hlstd{(cars)} \end{alltt} @@ -11468,7 +11681,7 @@ \section{Objects, classes, and methods}\label{sec:script:objects:classes:methods \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{my_print}\hlstd{(cars,} \hlnum{8}\hlopt{:}\hlnum{10}\hlstd{)} \end{alltt} @@ -11482,7 +11695,7 @@ \section{Objects, classes, and methods}\label{sec:script:objects:classes:methods \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{b} \hlkwb{<-} \hlkwd{my_print}\hlstd{(cars)} \end{alltt} @@ -11526,7 +11739,7 @@ \section{Scope of names} As the \Rlang language has few reserved words for which no redefinition is allowed, we should take care not to accidentally reuse names that are part of language. For example \code{pi} is a constant defined in \Rlang with the value of the mathematical constant $\pi$. If we use the same name for one of our variables, the original definition becomes hidden. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{pi} \end{alltt} @@ -11559,7 +11772,7 @@ \section{Scope of names} In the example above, the two variables are not defined in the same scope. In the example below we assign a new value to a variable we have earlier created within the same scope, and consequently the second assignment overwrites, rather than hides, the existing definition.\qRscoping{exists()} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my.pie} \hlkwb{<-} \hlstr{"raspberry pie"} \hlstd{my.pie} @@ -11590,7 +11803,7 @@ \subsection{Sharing of \Rlang-language extensions} \index{extensions to R} The most elegant way of adding new features or capabilities to \Rlang is through packages. This is without doubt the best mechanism when these extensions to \Rlang need to be shared. However, in most situations it is also the best mechanism for managing code that will be reused even by a single person over time. \Rlang packages have strict rules about their contents, file structure, and documentation, which makes it possible among other things for the package documentation to be merged into \Rpgrm's help system when a package is loaded. With a few exceptions, packages can be written so that they will work on any computer where \Rpgrm runs. -Packages can be shared as source or binary package files, sent for example through e-mail. However, for sharing packages widely, it is best to submit them to a repository. The largest public repository of \Rpgrm packages is called \CRAN (\url{https://cran.r-project.org/}), an acronym for Comprehensive R Archive Network. Packages available through \CRAN are guaranteed to work, in the sense of not failing any tests built into the package and not crashing or aborting prematurely. They are tested daily, as they may depend on other packages whose code will change when updated. The number of packages available through \CRAN at the time of printing was 19829. +Packages can be shared as source or binary package files, sent for example through e-mail. However, for sharing packages widely, it is best to submit them to a repository. The largest public repository of \Rpgrm packages is called \CRAN (\url{https://cran.r-project.org/}), an acronym for Comprehensive R Archive Network. Packages available through \CRAN are guaranteed to work, in the sense of not failing any tests built into the package and not crashing or aborting prematurely. They are tested daily, as they may depend on other packages whose code will change when updated. The number of packages available through \CRAN at the time of printing was 19838. A key repository for bioinformatics with \Rlang is Bioconductor\index{Bioconductor} (\url{https://www.bioconductor.org/}), containing packages that pass strict quality tests, adding an additional 3\,400 packages. ROpenScience\index{ROpenScience} has established guidelines and a system for code peer review for R packages. These peer-reviewed packages are available through \CRAN or other repositories and listed at the ROpenScience website (\url{https://ropensci.org/}). In some cases you may need or want to install less stable code from Git repositories such as versions still under development not yet submitted to \CRAN. Using the package \pkgname{devtools} we can install packages directly from \GitHub, \Bitbucket and other code repositories based on \pgrmname{Git}. Installations from code repositories are always installations from sources (see below). It is of course also possible to install packages from local files (e.g., after a manual download). @@ -11607,7 +11820,7 @@ \subsection{Download, installation and use}\label{sec:packages:install} Alternatively, at the \Rpgrm command line, or in a script, \Rfunction{install.packages()} can called with the name of the package as argument. For example, to install package ’learnrbook’ we use. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{install.packages}\hlstd{(}\hlstr{"learnrbook"}\hlstd{)} \end{alltt} @@ -11636,7 +11849,7 @@ \subsection{Download, installation and use}\label{sec:packages:install} To use the functions and other objects defined in a package, the package must first be loaded, and for the names of these objects to be visible in the user's workspace, the package needs to be attached. Function \Rfunction{library()} loads and attaches one package at a time. For example, to load and attach package 'learnrbook' we use. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{library}\hlstd{(}\hlstr{"learnrbook"}\hlstd{)} \end{alltt} @@ -11648,7 +11861,7 @@ \subsection{Download, installation and use}\label{sec:packages:install} As packages are contributed by independent authors, they should be cited in addition to citing \Rpgrm itself when they are used to obtain results or plots included in publications. \Rlang function \Rfunction{citation()} when called with the name of a package as its argument provides the reference that should be cited for the package, and without an explicit argument, the reference to cite for the version of \Rlang in use as shown below. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{citation}\hlstd{()} \end{alltt} @@ -11719,7 +11932,7 @@ \subsection{How packages work}\label{sec:packages:work} Namespaces isolate the names defined within them from those in other namespaces. This helps prevent name clashes, and makes it possible to access objects even when they are ``hidden'' by a different object with the same name. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{head}\hlstd{(cars,} \hlnum{3}\hlstd{)} \hlcom{# first three rows} \end{alltt} @@ -11766,14 +11979,14 @@ \subsection{How packages work}\label{sec:packages:work} In the example above I used a data frame object, but the same mechanisms apply to all R objects including functions. The situation when one of the definitions is a function and the other is not, is slightly different in that a call using parenthesis notation will distinguish between a function and an object of the same name that is not a function. Relying on this distinction is anyway a bad idea. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{mean} \end{alltt} \begin{verbatim} ## function (x, ...) ## UseMethod("mean") -## +## ## \end{verbatim} \begin{alltt} @@ -11808,7 +12021,7 @@ \subsection{How packages work}\label{sec:packages:work} In this last example we removed with \code{rm(mean)} the variable we had assigned a value to. Package namespaces also prevent deletion or overwriting of objects defined in the package. This is different to defining a new object with the same name, which is allowed. The two statements below trigger errors and are not evaluated when typesetting the book. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{datasets}\hlopt{::}\hlstd{cars} \hlkwb{<-} \hlstr{"my car is green"} \hlkwd{rm}\hlstd{(datasets}\hlopt{::}\hlstd{cars)} @@ -11851,7 +12064,7 @@ \section{Statistical summaries} Being the main focus of the \Rlang language in data analysis and statistics, \Rlang provides functions for both simple and complex calculations, going from means and variances to fitting very complex models. Below are examples of functions implementing the calculation of the frequently used data summaries mean or average (\Rfunction{mean()}), variance (\Rfunction{var()}), standard deviation (\Rfunction{sd()}), median (\Rfunction{median()}), mean absolute deviation (\Rfunction{mad()}), mode (\Rfunction{mode()}), maximum (\Rfunction{max()}), minimum (\Rfunction{min()}), range (\Rfunction{range()}), quantiles (\Rfunction{quantile()}), length (\Rfunction{length()}), and all-encompassing summaries (\Rfunction{summary()}). All these methods accept numeric vectors and matrices as an argument. Some of them also have definitions for other classes such as data frames in the case of \Rfunction{summary()}. (The \Rlang language does not define a function for calculation of the standard error of the mean. Please, see section \ref{sec:functions:sem} on page \pageref{sec:functions:sem} for how to define your own.) \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{x} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{20} \hlkwd{mean}\hlstd{(x)} @@ -11877,7 +12090,7 @@ \section{Statistical summaries} By default, if the argument contains \code{NAs} these functions return \code{NA}. The logic behind this is that if one value exists but is unknown, the true result of the computation is unknown (see page \pageref{par:special:values} for details on the role of \code{NA} in \Rlang). However, an additional parameter called \code{na.rm} allows us to override this default behavior by requesting any \code{NA} in the input to be removed (or discarded) before calculation, \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{x} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{20}\hlstd{,} \hlnum{NA}\hlstd{)} \hlkwd{mean}\hlstd{(x)} @@ -11934,7 +12147,7 @@ \subsection{Density from parameters}\label{sec:prob:dens} To obtain a single point from the distribution curve we pass a vector of length one as an argument for \code{x}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{dnorm}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{1.5}\hlstd{,} \hlkwc{mean} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{0.5}\hlstd{)} \end{alltt} @@ -11947,7 +12160,7 @@ \subsection{Density from parameters}\label{sec:prob:dens} To obtain multiple values we can pass a longer vector as an argument. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{dnorm}\hlstd{(}\hlkwc{x} \hlstd{=} \hlkwd{seq}\hlstd{(}\hlkwc{from} \hlstd{=} \hlopt{-}\hlnum{1}\hlstd{,} \hlkwc{to} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{length.out} \hlstd{=} \hlnum{5}\hlstd{),} \hlkwc{mean} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{0.5}\hlstd{)} \end{alltt} @@ -11960,7 +12173,7 @@ \subsection{Density from parameters}\label{sec:prob:dens} With 50 equally spaced values for $x$ we can plot a line (\code{type = "l"}) that shows that the 50 generated data points give the illusion of a continuous curve. We also add a point showing the value for $x = 1.5$ calculated above. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my.x} \hlkwb{<-} \hlkwd{seq}\hlstd{(}\hlkwc{from} \hlstd{=} \hlopt{-}\hlnum{1}\hlstd{,} \hlkwc{to} \hlstd{=} \hlnum{3}\hlstd{,} \hlkwc{length.out} \hlstd{=} \hlnum{50}\hlstd{)} @@ -11984,7 +12197,7 @@ \subsection{Probabilities from parameters and quantiles}\label{sec:prob:quant} If we have a known quantile value we can look up the corresponding $p$-value from the Normal distribution, i.e., the area under the curve, either to the right or to the left of a given value of $x$. When working with observations, the quantile, mean and standard deviation are in most cases computed from the same observations under the null hypothesis. In the example below, we use invented values for all parameters \code{q}, the quantile, \code{mean}, and \code{sd}, the standard deviation. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{pnorm}\hlstd{(}\hlkwc{q} \hlstd{=} \hlnum{4}\hlstd{,} \hlkwc{mean} \hlstd{=} \hlnum{0}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{1}\hlstd{)} \end{alltt} @@ -12022,7 +12235,7 @@ \subsection{Quantiles from parameters and probabilities}\label{sec:quant:prob} The reverse computation from that in the previous section is to obtain the quantile corresponding to a known $p$-value or area under one of the tails of the distribution curve. These quantiles are equivalent to the values in the tables of precalculated quantiles used in earlier times to assess significance with statistical tests. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{qnorm}\hlstd{(}\hlkwc{p} \hlstd{=} \hlnum{0.01}\hlstd{,} \hlkwc{mean} \hlstd{=} \hlnum{0}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{1}\hlstd{)} \end{alltt} @@ -12048,7 +12261,7 @@ \subsection{Quantiles from parameters and probabilities}\label{sec:quant:prob} Quantile functions like \Rfunction{qnorm()} and probability functions like \Rfunction{pnorm()} always do computations based on a single tail of the distribution, even though it is possible to specify which tail we are interested in. If we are interested in obtaining simultaneous quantiles for both tails, we need to do this manually. If we are aiming at quantiles for $P = 0.05$, we need to find the quantile for each tail based on $P / 2 = 0.025$. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{qnorm}\hlstd{(}\hlkwc{p} \hlstd{=} \hlnum{0.025}\hlstd{,} \hlkwc{mean} \hlstd{=} \hlnum{0}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{1}\hlstd{)} \end{alltt} @@ -12069,7 +12282,7 @@ \subsection{Quantiles from parameters and probabilities}\label{sec:quant:prob} When calculating a $p$-value from a quantile in a test of significance, we need to first decide whether a two-sided or single-sided test is relevant, and in the case of a single sided test, which tail is of interest. For a two-sided test we need to multiply the returned value by 2. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{pnorm}\hlstd{(}\hlkwc{q} \hlstd{=} \hlnum{4}\hlstd{,} \hlkwc{mean} \hlstd{=} \hlnum{0}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{1}\hlstd{)} \hlopt{*} \hlnum{2} \end{alltt} @@ -12089,7 +12302,7 @@ \subsection{``Random'' draws from a distribution}\label{sec:stat:random} It is possible to compute not only pseudo-random draws from a uniform distribution but also from the Normal, $t$, $F$ and other distributions. In each case, the probability with which different values are ``drawn'' approximates the probabilities set by the corresponding theoretical distribution. Parameter \code{n} indicates the number of values to be drawn, or its equivalent, the length of the vector returned.\qRfunction{rnorm()}\qRfunction{runif()} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{rnorm}\hlstd{(}\hlnum{5}\hlstd{)} \end{alltt} @@ -12126,7 +12339,7 @@ \section{``Random'' sampling} In addition to drawing values from a theoretical distribution, we can draw values from an existing set or collection of values. We call this operation (pseudo-)random sampling. The draws can be done either with replacement or without replacement. In the second case, all draws are taken from the whole set of values, making it possible for a given value to be drawn more than once. In the default case of not using replacement, subsequent draws are taken from the values remaining after removing the values chosen in earlier draws. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{sample}\hlstd{(}\hlkwc{x} \hlstd{= LETTERS)} \end{alltt} @@ -12155,7 +12368,7 @@ \section{``Random'' sampling} As described in section \ref{sec:R:data:frames} on page \pageref{sec:R:data:frames}, data frames are commonly used to store one observation per row. To sample a subset of rows we need to generate a random set of indices to use with the extraction operator (\Roperator{[ ]}). Here we sample four rows from data frame \code{cars} included in \Rlang. These data consist of stopping distances for cars moving at different speeds as described in the documentation available by entering \code{help(cars)}). \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{cars[}\hlkwd{sample}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{1}\hlopt{:}\hlkwd{nrow}\hlstd{(cars),} \hlkwc{size} \hlstd{=} \hlnum{4}\hlstd{), ]} \end{alltt} @@ -12175,7 +12388,7 @@ \section{``Random'' sampling} Consult the documentation of \Rfunction{sample()} and explain why the code below is equivalent to that in the example immediately above. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{cars[}\hlkwd{sample}\hlstd{(}\hlkwc{x} \hlstd{=} \hlkwd{nrow}\hlstd{(cars),} \hlkwc{size} \hlstd{=} \hlnum{4}\hlstd{), ]} \end{alltt} @@ -12196,7 +12409,7 @@ \subsection{Pearson's $r$} Function \Rfunction{cor()} can be called with two vectors of the same length as arguments. In the case of the parametric Pearson method, we do not need to provide further arguments as this method is the default one. We use data set \code{cars}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{cor}\hlstd{(}\hlkwc{x} \hlstd{= cars}\hlopt{$}\hlstd{speed,} \hlkwc{y} \hlstd{= cars}\hlopt{$}\hlstd{dist)} \end{alltt} @@ -12209,7 +12422,7 @@ \subsection{Pearson's $r$} It is also possible to pass a data frame (or a matrix) as the only argument. When the data frame (or matrix) contains only two columns, the returned value is equivalent to that of passing the two columns individually as vectors. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{cor}\hlstd{(cars)} \end{alltt} @@ -12224,7 +12437,7 @@ \subsection{Pearson's $r$} When the data frame or matrix contains more than two numeric vectors, the returned value is a matrix of estimates of pairwise correlations between columns. We here use \Rfunction{rnorm()} described above to create a long vector of pseudo-random values drawn from the Normal distribution and \Rfunction{matrix()} to convert it into a matrix with three columns (see page \pageref{sec:matrix:array} for details about \Rlang matrices). \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my.mat} \hlkwb{<-} \hlkwd{matrix}\hlstd{(}\hlkwd{rnorm}\hlstd{(}\hlnum{54}\hlstd{),} \hlkwc{ncol} \hlstd{=} \hlnum{3}\hlstd{,} \hlkwc{dimnames} \hlstd{=} \hlkwd{list}\hlstd{(}\hlkwc{rows} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{18}\hlstd{,} \hlkwc{cols} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"A"}\hlstd{,} \hlstr{"B"}\hlstd{,} \hlstr{"C"}\hlstd{)))} @@ -12246,7 +12459,7 @@ \subsection{Pearson's $r$} While \Rfunction{cor()} returns and estimate for $r$ the correlation coefficient, \Rfunction{cor.test()} also computes the $t$-value, $p$-value, and confidence interval for the estimate. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{cor.test}\hlstd{(}\hlkwc{x} \hlstd{= cars}\hlopt{$}\hlstd{speed,} \hlkwc{y} \hlstd{= cars}\hlopt{$}\hlstd{dist)} \end{alltt} @@ -12269,7 +12482,7 @@ \subsection{Pearson's $r$} Above we passed two numeric vectors as arguments, one to parameter \code{x} and one to parameter \code{y}. Alternatively, we can pass a data frame as argument to \code{data}, and a \emph{model formula} to parameter \code{formula}. The argument passed to \code{formula} determines which variables from \code{data} are to be used, and in which role. Briefly, the variabel(s) to the left of the tilde (\code{~}) are response variables, and those to the right independent variables. In the case of correlation, no assumption is made on cause and effect, and both variables appear to the right of the tilde. The code below is equivalent to that above. See section \ref{sec:stat:formulas} on page \pageref{sec:stat:formulas} for details on the use of model formulas and section \ref{sec:stat:mf} on page \pageref{sec:stat:mf} for examples of their use in model fitting. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{cor.test}\hlstd{(}\hlkwc{formula} \hlstd{=} \hlopt{~} \hlstd{speed} \hlopt{+} \hlstd{dist,} \hlkwc{data} \hlstd{= cars)} \end{alltt} @@ -12280,7 +12493,7 @@ \subsection{Pearson's $r$} Functions \Rfunction{cor()} and \Rfunction{cor.test()} return \Rlang objects, that when using \Rlang interactively get automatically ``printed'' on the screen. One should be aware that \Rfunction{print()} methods do not necessarily display all the information contained in an \Rlang object. This is almost always the case for complex objects like those returned by \Rlang functions implementing statistical tests. As with any \Rlang object we can save the result of an analysis into a variable. As described in section \ref{sec:calc:lists} on page \pageref{sec:calc:lists} for lists, we can peek into the structure of an object with method \Rfunction{str()}. We can use \Rfunction{class()} and \Rfunction{attributes()} to extract further information. Run the code in the chunk below to discover what is actually returned by \Rfunction{cor()}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{a} \hlkwb{<-} \hlkwd{cor}\hlstd{(cars)} \hlkwd{class}\hlstd{(a)} @@ -12301,7 +12514,7 @@ \subsection{Kendall's $\tau$ and Spearman's $\rho$} We use the same functions as for Pearson's $r$ but explicitly request the use of one of these methods by passing and argument. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{cor}\hlstd{(}\hlkwc{x} \hlstd{= cars}\hlopt{$}\hlstd{speed,} \hlkwc{y} \hlstd{= cars}\hlopt{$}\hlstd{dist,} \hlkwc{method} \hlstd{=} \hlstr{"kendall"}\hlstd{)} \end{alltt} @@ -12404,7 +12617,7 @@ \subsection{Regression} We fit a simple linear model $y = \alpha \cdot 1 + \beta \cdot x$ where $y$ corresponds to stopping distance (\code{dist}) and $x$ to initial speed (\code{speed}). Such a model is formulated in \Rlang as \verb|dist ~ 1 + speed|. We save the fitted model as \code{fm1} (a mnemonic for fitted-model one).\label{chunk:lm:models1} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{fm1} \hlkwb{<-} \hlkwd{lm}\hlstd{(dist} \hlopt{~} \hlnum{1} \hlopt{+} \hlstd{speed,} \hlkwc{data}\hlstd{=cars)} \hlkwd{class}\hlstd{(fm1)} @@ -12418,7 +12631,7 @@ \subsection{Regression} The next step is diagnosis of the fit. Are assumptions of the linear model procedure used reasonably close to being fulfilled? In \Rlang it is most common to use plots to this end. We show here only one of the four plots normally produced. This quantile vs.\ quantile plot allows us to assess how much the residuals deviate from being normally distributed. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{plot}\hlstd{(fm1,} \hlkwc{which} \hlstd{=} \hlnum{2}\hlstd{)} \end{alltt} @@ -12434,7 +12647,7 @@ \subsection{Regression} In the case of a regression, calling \Rfunction{summary()} with the fitted model object as argument is most useful as it provides a table of coefficient estimates and their errors. Remember that as is the case for most \Rlang functions, the value returned by \Rfunction{summary()} is printed when we call this method at the \Rlang prompt. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{summary}\hlstd{(fm1)} \end{alltt} @@ -12470,7 +12683,7 @@ \subsection{Regression} Now there is no estimate for the intercept in the summary, only an estimate for the slope. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{fm2} \hlkwb{<-} \hlkwd{lm}\hlstd{(dist} \hlopt{~} \hlstd{speed} \hlopt{-} \hlnum{1}\hlstd{,} \hlkwc{data} \hlstd{= cars)} \hlkwd{summary}\hlstd{(fm2)} @@ -12503,7 +12716,7 @@ \subsection{Regression} You will now fit a second-degree polynomial\index{linear models!polynomial regression}\index{polynomial regression}, a different linear model: $y = \alpha \cdot 1 + \beta_1 \cdot x + \beta_2 \cdot x^2$. The function used is the same as for linear regression, \Rfunction{lm()}. We only need to alter the formulation of the model. The identity function \Rfunction{I()} is used to protect its argument from being interpreted as part of the model formula. Instead, its argument is evaluated beforehand and the result is used as the, in this case second, explanatory variable.\label{chunk:stats:fm3} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{fm3} \hlkwb{<-} \hlkwd{lm}\hlstd{(dist} \hlopt{~} \hlstd{speed} \hlopt{+} \hlkwd{I}\hlstd{(speed}\hlopt{^}\hlnum{2}\hlstd{),} \hlkwc{data} \hlstd{= cars)} \hlkwd{plot}\hlstd{(fm3,} \hlkwc{which} \hlstd{=} \hlnum{3}\hlstd{)} @@ -12516,7 +12729,7 @@ \subsection{Regression} The ``same'' fit using an orthogonal polynomial can be specified using function \Rfunction{poly()}. Polynomials of different degrees can be obtained by supplying as the second argument to \Rfunction{poly()} the corresponding positive integer value. In this case, the different terms of the polynomial are bulked together in the summary. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{fm3a} \hlkwb{<-} \hlkwd{lm}\hlstd{(dist} \hlopt{~} \hlkwd{poly}\hlstd{(speed,} \hlnum{2}\hlstd{),} \hlkwc{data} \hlstd{= cars)} \hlkwd{summary}\hlstd{(fm3a)} @@ -12528,7 +12741,7 @@ \subsection{Regression} We can also compare two model fits using \Rfunction{anova()}, to test whether one of the models describes the data better than the other. It is important in this case to take into consideration the nature of the difference between the model formulas, most importantly if they can be interpreted as nested---i.e., interpreted as a base model vs. the same model with additional terms. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{anova}\hlstd{(fm2, fm1)} \end{alltt} @@ -12538,7 +12751,7 @@ \subsection{Regression} Three or more models can also be compared in a single call to \Rfunction{anova()}. However, be careful, as the order of the arguments matters. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{anova}\hlstd{(fm2, fm3, fm3a)} \hlkwd{anova}\hlstd{(fm2, fm3a, fm3)} @@ -12552,7 +12765,7 @@ \subsection{Regression} \index{Schwarz's Bayesian criterion@\emph{Schwarz's Bayesian criterion}|see \emph{Bayesian Information Criterion}} can use different criteria to choose the ``best'' model: significance based on $p$-values or information criteria (AIC, BIC). AIC (Akaike's ``An Information Criterion'') and BIC (``Bayesian Information Criterion'' = SBC, ``Schwarz's Bayesian criterion'') that penalize the resulting ``goodness'' based on the number of parameters in the fitted model. In the case of AIC and BIC, a smaller value is better, and values returned can be either positive or negative, in which case more negative is better. Estimates for both BIC and AIC are returned by \Rfunction{anova()}, and on their own by \Rfunction{BIC()} and \Rfunction{AIC()} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{BIC}\hlstd{(fm2, fm1, fm3, fm3a)} \hlkwd{AIC}\hlstd{(fm2, fm1, fm3, fm3a)} @@ -12602,7 +12815,7 @@ \subsection{Regression} The\index{linear models!structure of model fit object} objects returned by model fitting functions contain the full information, including the data to which the model was fit to. Their structure resembles a nested list. In most cases the class of the objects returned by model fit functions agrees in name with the name of the model-fit function (\code{"lm"} in this example) but is not derived from \Rlang class \code{"list"}. The different functions described above, either extract parts of the object or do additional calculations and formatting based on them. There are different specializations of these methods which are called depending on the class of the model-fit object. (See section \ref{sec:methods} on page \pageref{sec:methods}.) \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{class}\hlstd{(fm1)} \end{alltt} @@ -12623,7 +12836,7 @@ \subsection{Regression} We rarely need to manually explore the structure of these model-fit objects when using \Rlang interactively. In contrast, when including model fitting in scripts or package code, the need to efficiently extract specific members from them can be useful. As with any other \Rlang object we can use \Rfunction{str()} to explore them. As this prints as a long text, we call \Rfunction{str()} with options that restrict the output to get an overall view of the structure of \code{fm1}. Later as an example, we look in detail two components of the \code{fm1} object and leave to the reader the task of exploring the remaining ones. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{str}\hlstd{(fm1,} \hlkwc{no.list} \hlstd{=} \hlnum{TRUE}\hlstd{,} \hlkwc{give.attr} \hlstd{=} \hlnum{FALSE}\hlstd{,} \hlkwc{vec.len} \hlstd{=} \hlnum{2}\hlstd{)} \end{alltt} @@ -12654,7 +12867,7 @@ \subsection{Regression} Under \code{call} we find the function call that returned the value we saved to the \code{fm1} object. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{str}\hlstd{(fm1}\hlopt{$}\hlstd{call)} \end{alltt} @@ -12669,7 +12882,7 @@ \subsection{Regression} The class of the object returned by \code{anova()} does not depend on the class of the model fit object, while its structure does depend. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{anova}\hlstd{(fm1)} \end{alltt} @@ -12687,7 +12900,7 @@ \subsection{Regression} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{class}\hlstd{(}\hlkwd{anova}\hlstd{(fm1))} \end{alltt} @@ -12698,7 +12911,7 @@ \subsection{Regression} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{str}\hlstd{(}\hlkwd{anova}\hlstd{(fm1))} \end{alltt} @@ -12717,7 +12930,7 @@ \subsection{Regression} The class of the summary objects depends on the class of the model fit object; \Rfunction{summary()} is a generic method with multiple specializations. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{class}\hlstd{(}\hlkwd{summary}\hlstd{(fm1))} \end{alltt} @@ -12730,7 +12943,7 @@ \subsection{Regression} Knowing that these objects contain additional information can be very useful, for example, when we want to display the results from the fit in a different format or to implement additional tests or computations. One case is adding annotations to plots and another is when writing reports to include programmatically the computed values within the text. Once again we use \Rfunction{str()} to look at the structure in a simplified way, and later at one member as example. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{str}\hlstd{(}\hlkwd{summary}\hlstd{(fm1),} \hlkwc{no.list} \hlstd{=} \hlnum{TRUE}\hlstd{,} \hlkwc{give.attr} \hlstd{=} \hlnum{FALSE}\hlstd{,} \hlkwc{vec.len} \hlstd{=} \hlnum{2}\hlstd{)} \end{alltt} @@ -12753,7 +12966,7 @@ \subsection{Regression} Once we know the structure of the object and the names of members, we can simply extract them using the usual \Rlang rules for member extraction. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{summary}\hlstd{(fm1)}\hlopt{$}\hlstd{adj.r.squared} \end{alltt} @@ -12766,7 +12979,7 @@ \subsection{Regression} We can also explore the structure of individual members. The \code{coefficients} estimates in the summary are accompanied by estimates for the corresponding standard errors, \emph{t}-value and \emph{P}-value estimates, while in the model object \code{fm1} the additional estimates are not included. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{coef}\hlstd{(fm1)} \end{alltt} @@ -12811,7 +13024,7 @@ \subsection{Regression} To estimate the \emph{t}-value we need an estimate for the parameter value and an estimate of the standard error for this estimate, and the degrees of freedom. We can extract all these values from the summary of a fitted model object. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{est.slope.value} \hlkwb{<-} \hlkwd{summary}\hlstd{(fm1)}\hlopt{$}\hlstd{coefficients[}\hlstr{"speed"}\hlstd{,} \hlstr{"Estimate"}\hlstd{]} \hlstd{est.slope.se} \hlkwb{<-} \hlkwd{summary}\hlstd{(fm1)}\hlopt{$}\hlstd{coefficients[}\hlstr{"speed"}\hlstd{,} \hlstr{"Std. Error"}\hlstd{]} @@ -12823,7 +13036,7 @@ \subsection{Regression} A new \emph{t}-value is computed based on the difference between the value of the null hypothesis and the value for the parameter estimated from the observations. A new probability estimate is computed based on computed $t$-value, or quantile, and the $t$ distribution with matching degrees of freedom with a call to \Rfunction{pt()} (see section \ref{sec:prob:dist} on page \pageref{sec:prob:dist}.) For a two-tails test we multiply by two the one-tail $P$ estimate. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{hyp.null} \hlkwb{<-} \hlnum{1} \hlstd{t.value} \hlkwb{<-} \hlstd{(est.slope.value} \hlopt{-} \hlstd{hyp.null)} \hlopt{/} \hlstd{est.slope.se} @@ -12868,7 +13081,7 @@ \subsection{Analysis of variance, ANOVA}\label{sec:anova} The call is exactly the same as the one for linear regression, only the names of the variables and data frame are different. What determines that this is an ANOVA is that \code{spray}, the explanatory variable, is a \code{factor}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{data}\hlstd{(InsectSprays)} \hlkwd{is.numeric}\hlstd{(InsectSprays}\hlopt{$}\hlstd{spray)} @@ -12894,7 +13107,7 @@ \subsection{Analysis of variance, ANOVA}\label{sec:anova} We fit the model in exactly the same way as for linear regression; the difference is that we use a factor as the explanatory variable. By using a factor instead of a numeric vector, a different model matrix is built from an equivalent formula.\label{chunk:stat:fm4} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{fm4} \hlkwb{<-} \hlkwd{lm}\hlstd{(count} \hlopt{~} \hlstd{spray,} \hlkwc{data} \hlstd{= InsectSprays)} \end{alltt} @@ -12904,7 +13117,7 @@ \subsection{Analysis of variance, ANOVA}\label{sec:anova} Diagnostic plots are obtained in the same way as for linear regression. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{plot}\hlstd{(fm4,} \hlkwc{which} \hlstd{=} \hlnum{3}\hlstd{)} \end{alltt} @@ -12920,7 +13133,7 @@ \subsection{Analysis of variance, ANOVA}\label{sec:anova} In ANOVA we are mainly interested in testing hypotheses, and \Rfunction{anova()} provides the most interesting output. Function \Rfunction{summary()} can be used to extract parameter estimates. The default contrasts and corresponding $p$-values returned by \Rfunction{summary()} test hypotheses that have little or no direct interest in an analysis of variance. Function \Rfunction{aov()} is a wrapper on \Rfunction{lm()} that returns an object that by default when printed displays the output of \Rfunction{anova()}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{anova}\hlstd{(fm4)} \end{alltt} @@ -12949,7 +13162,7 @@ \subsection{Analysis of variance, ANOVA}\label{sec:anova} The most straightforward way of setting a different default for a whole series of model fits is by setting \Rlang option \code{contrasts}, which we here only print. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{options}\hlstd{(}\hlstr{"contrasts"}\hlstd{)} \end{alltt} @@ -12966,7 +13179,7 @@ \subsection{Analysis of variance, ANOVA}\label{sec:anova} It is also possible to select the contrast to be used in the call to \code{aov()} or \code{lm()}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{fm4trea} \hlkwb{<-} \hlkwd{lm}\hlstd{(count} \hlopt{~} \hlstd{spray,} \hlkwc{data} \hlstd{= InsectSprays,} \hlkwc{contrasts} \hlstd{=} \hlkwd{list}\hlstd{(}\hlkwc{spray} \hlstd{= contr.treatment))} @@ -12985,7 +13198,7 @@ \subsection{Analysis of variance, ANOVA}\label{sec:anova} \end{warningbox} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{contr.treatment}\hlstd{(}\hlkwd{length}\hlstd{(}\hlkwd{levels}\hlstd{(InsectSprays}\hlopt{$}\hlstd{spray)))} \end{alltt} @@ -13002,7 +13215,7 @@ \subsection{Analysis of variance, ANOVA}\label{sec:anova} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{summary}\hlstd{(fm4trea)} \end{alltt} @@ -13036,7 +13249,7 @@ \subsection{Analysis of variance, ANOVA}\label{sec:anova} In \code{fm4sum} we used \Rfunction{contr.sum()}, thus contrasts for individual treatments are done differently, as can be inferred from the contrasts matrix. The sum is constrained to be zero, thus estimates for the last treatment level are determined by the sum of the previous ones, and not tested for significance. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{contr.sum}\hlstd{(}\hlkwd{length}\hlstd{(}\hlkwd{levels}\hlstd{(InsectSprays}\hlopt{$}\hlstd{spray)))} \end{alltt} @@ -13053,7 +13266,7 @@ \subsection{Analysis of variance, ANOVA}\label{sec:anova} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{summary}\hlstd{(fm4sum)} \end{alltt} @@ -13139,7 +13352,7 @@ \subsection{Model update and selection}\label{sec:stat:update:step} For the next example we recreate the model fit object \code{fm4} from page \pageref{chunk:stat:fm4}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{fm4} \hlkwb{<-} \hlkwd{lm}\hlstd{(count} \hlopt{~} \hlstd{spray,} \hlkwc{data} \hlstd{= InsectSprays)} \hlkwd{anova}\hlstd{(fm4)} @@ -13178,7 +13391,7 @@ \subsection{Model update and selection}\label{sec:stat:update:step} In the chunk above we replaced the argument passed to \code{formula}. This is a frequent use, but for example to fit the same model to a subset of the data we can pass a suitable argument to parameter \code{subset}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{fm4b} \hlkwb{<-} \hlkwd{update}\hlstd{(fm4,} \hlkwc{subset} \hlstd{=} \hlopt{!}\hlstd{spray} \hlopt{%in%} \hlkwd{c}\hlstd{(}\hlstr{"A"}\hlstd{,} \hlstr{"B"}\hlstd{))} \hlkwd{anova}\hlstd{(fm4b)} @@ -13200,7 +13413,7 @@ \subsection{Model update and selection}\label{sec:stat:update:step} When having many treatments with long names, which is not the case here, instead of listing the factor levels for which to subset the data, it can be convenient to use regular expressions for pattern matching. Please run the code below, and investigate why \code{anova(fm4b)} and \code{anova(fm4c)} produce the same ANOVA table printout, but the fit model objects are not identical. You can use \code{str()} to explore if any members differ between the two objects. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{fm4c} \hlkwb{<-} \hlkwd{update}\hlstd{(fm4,} \hlkwc{subset} \hlstd{=} \hlopt{!}\hlkwd{grepl}\hlstd{(}\hlstr{"[AB]"}\hlstd{, spray))} \hlkwd{anova}\hlstd{(fm4c)} @@ -13249,7 +13462,7 @@ \subsection{Model update and selection}\label{sec:stat:update:step} For the next example we recreate the model fit object \code{fm3} from page \pageref{chunk:stats:fm3} for a polynomial regression. If as shown here, no models are passed through formal parameter \code{scope}, the previously fit model will be simplified, if possible. Method \Rfunction{step()} by default prints to the console a trace of the models tried and the corresponding AIC estimates. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{fm3} \hlkwb{<-} \hlkwd{lm}\hlstd{(dist} \hlopt{~} \hlstd{speed} \hlopt{+} \hlkwd{I}\hlstd{(speed}\hlopt{^}\hlnum{2}\hlstd{),} \hlkwc{data} \hlstd{= cars)} \hlstd{fm3a} \hlkwb{<-} \hlkwd{step}\hlstd{(fm3)} @@ -13276,7 +13489,7 @@ \subsection{Model update and selection}\label{sec:stat:update:step} We use \Rfunction{summary()} on both the original and updated models. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{summary}\hlstd{(fm3)} \end{alltt} @@ -13328,7 +13541,7 @@ \subsection{Model update and selection}\label{sec:stat:update:step} If we pass a single model with additional terms through parameter \code{scope} this will be taken as the most complex model to be assessed. If, instead of one model, we pass two nested models in a list and name them \code{lower} and \code{upper}, they will delimit the scope of the stepwise search. In the next example we see that first a backward search is done and term \code{speed} is removed as removal decreases AIC. Subsequently a forward search is done unsuccessfully for a model with smaller AIC. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{fm3b} \hlkwb{<-} \hlkwd{step}\hlstd{(fm3,} @@ -13385,7 +13598,7 @@ \subsection{Model update and selection}\label{sec:stat:update:step} Explain why the stepwise model selection in the code below differs from those in the two previous examples. Consult \code{help(step)} is necessary. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{fm3c} \hlkwb{<-} \hlkwd{step}\hlstd{(fm3,} @@ -13436,7 +13649,7 @@ \section{Generalized linear models}\label{sec:stat:GLM} For count data, GLMs provide a better alternative. In the example below we fit the same model as above, but we assume a quasi-Poisson distribution instead of the Normal. In addition to the model formula we need to pass an argument through \code{family} giving the error distribution to be assumed---the default for \code{family} is \code{gaussian} or Normal distribution. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{fm10} \hlkwb{<-} \hlkwd{glm}\hlstd{(count} \hlopt{~} \hlstd{spray,} \hlkwc{data} \hlstd{= InsectSprays,} \hlkwc{family} \hlstd{= quasipoisson)} \hlkwd{anova}\hlstd{(fm10)} @@ -13461,7 +13674,7 @@ \section{Generalized linear models}\label{sec:stat:GLM} The printout from the \Rfunction{anova()} method for GLM fits has some differences to that for LM fits. By default, no significance test is computed, as a knowledgeable choice is required depending on the characteristics of the model and data. We here use \code{"F"} as an argument to request an $F$-test. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{anova}\hlstd{(fm10,} \hlkwc{test} \hlstd{=} \hlstr{"F"}\hlstd{)} \end{alltt} @@ -13487,7 +13700,7 @@ \section{Generalized linear models}\label{sec:stat:GLM} Method \Rfunction{plot()} as for linear-model fits, produces diagnosis plots. We show as above the q-q-plot of residuals. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{plot}\hlstd{(fm10,} \hlkwc{which} \hlstd{=} \hlnum{3}\hlstd{)} \end{alltt} @@ -13503,7 +13716,7 @@ \section{Generalized linear models}\label{sec:stat:GLM} We can extract different components similarly as described for linear models (see section \ref{sec:stat:LM} on page \pageref{sec:stat:LM}). \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{class}\hlstd{(fm10)} \end{alltt} @@ -13558,7 +13771,7 @@ \section{Generalized linear models}\label{sec:stat:GLM} If we use \code{str()} or \code{names()} we can see that there are some differences with respect to linear model fits. The returned object is of a different class and contains some members not present in linear models. Two of these have to do with the iterative approximation method used, \code{iter} contains the number of iterations used and \code{converged} the success or not in finding a solution. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{names}\hlstd{(fm10)} \end{alltt} @@ -13638,7 +13851,7 @@ \section{Non-linear regression}\label{sec:stat:NLS} The function takes its name from Michaelis and Menten's paper from 1913 \autocite{Johnson2011}. A self-starting function implementing the Michaelis-Menten equation is available in \Rlang under the name \Rfunction{SSmicmen()}\index{models!selfstart@{\texttt{selfStart}}}. We will use the \Rdata{Puromycin} data set. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{data}\hlstd{(Puromycin)} \hlkwd{names}\hlstd{(Puromycin)} @@ -13650,7 +13863,7 @@ \section{Non-linear regression}\label{sec:stat:NLS} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{fm21} \hlkwb{<-} \hlkwd{nls}\hlstd{(rate} \hlopt{~} \hlkwd{SSmicmen}\hlstd{(conc, Vm, K),} \hlkwc{data} \hlstd{= Puromycin,} \hlkwc{subset} \hlstd{= state} \hlopt{==} \hlstr{"treated"}\hlstd{)} @@ -13661,7 +13874,7 @@ \section{Non-linear regression}\label{sec:stat:NLS} We can extract different components similarly as described for linear models (see section \ref{sec:stat:LM} on page \pageref{sec:stat:LM}). \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{class}\hlstd{(fm21)} \end{alltt} @@ -13712,7 +13925,7 @@ \section{Non-linear regression}\label{sec:stat:NLS} If we use \code{str()} or \code{names()} we can see that there are differences with respect to linear model and generalized model fits. The returned object is of class \code{nls} and contains some new members and lacks others. Two members are related to the iterative approximation method used, \code{control} containing nested members holding iteration settings, and \code{convInfo} (convergence information) with nested members with information on the outcome of the iterative algorithm. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{str}\hlstd{(fm21,} \hlkwc{max.level} \hlstd{=} \hlnum{1}\hlstd{)} \end{alltt} @@ -13732,7 +13945,7 @@ \section{Non-linear regression}\label{sec:stat:NLS} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{fm21}\hlopt{$}\hlstd{convInfo} \end{alltt} @@ -13793,7 +14006,7 @@ \section{Splines and local regression}\label{sec:stat:splines} \end{center} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{fs1} \hlkwb{<-} \hlkwd{smooth.spline}\hlstd{(}\hlkwc{x} \hlstd{= cars}\hlopt{$}\hlstd{speed,} \hlkwc{y} \hlstd{= cars}\hlopt{$}\hlstd{dist)} \hlkwd{print}\hlstd{(fs1)} @@ -13847,7 +14060,7 @@ \section{Splines and local regression}\label{sec:stat:splines} \end{center} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{floc} \hlkwb{<-} \hlkwd{loess}\hlstd{(dist} \hlopt{~} \hlstd{speed,} \hlkwc{data} \hlstd{= cars)} \hlkwd{print}\hlstd{(floc)} @@ -13874,7 +14087,7 @@ \section{Model formulas}\label{sec:stat:formulas} \Rlang is consistent and flexible in how it treats various objects, to a extent that can be surprising to those familiar with other computer languages. Model formulas are objects of class \Rclass{formula} and mode \Rclass{call} and can be manipulated and stored similarly to objects of other classes. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{class}\hlstd{(y} \hlopt{~} \hlstd{x)} \end{alltt} @@ -13893,7 +14106,7 @@ \section{Model formulas}\label{sec:stat:formulas} Like any other \Rlang object formulas can be assigned to variables and be members of lists and vectors. Consequently, the first linear model fit example from page \pageref{chunk:lm:models1} can be rewritten as follows. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my.formula} \hlkwb{<-} \hlstd{dist} \hlopt{~} \hlnum{1} \hlopt{+} \hlstd{speed} \hlstd{fm1} \hlkwb{<-} \hlkwd{lm}\hlstd{(my.formula,} \hlkwc{data}\hlstd{=cars)} @@ -13904,7 +14117,7 @@ \section{Model formulas}\label{sec:stat:formulas} In some situations, e.g., calculation of correlations, models lacking a \emph{lhs} term (a term on the left hand side of \verb|~|) are used. At least one term must be present in the rhs of model formulas, as an expression ending in \code{~} is syntactically incomplete. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{class}\hlstd{(}\hlopt{~} \hlstd{x} \hlopt{+} \hlstd{y)} \end{alltt} @@ -13932,7 +14145,7 @@ \section{Model formulas}\label{sec:stat:formulas} An ``empty'' object of class \Rclass{formula} can be created by a call to \code{formula()} with no arguments, similarly as a numeric vector of length zero is created by the call \code{numeric()}. The last, commented out, statement in the code below triggers an error as the argument passed to \Rfunction{is.empty.model()} is of length zero. (This behaviour is not consistent with \Rclass{numeric} vectors of length zero; see for example the value returned by \code{is.finite(numeric())}.) \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{class}\hlstd{(}\hlkwd{formula}\hlstd{())} \end{alltt} @@ -13960,7 +14173,7 @@ \section{Model formulas}\label{sec:stat:formulas} A model formula describing a model with no explanatory terms on the rhs, is considered empty even if it is a valid object of class \Rclass{formula} and, thus, not missing. While \verb|y ~ 1| describes a model with only an intercept (estimating $a = \bar{x}$), \verb|y ~ 0| or its equivalent \verb|y ~ -1|, describes an empty model that cannot be fitted to data. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{class}\hlstd{(y} \hlopt{~} \hlnum{0}\hlstd{)} \end{alltt} @@ -13997,7 +14210,7 @@ \section{Model formulas}\label{sec:stat:formulas} The value returned by \Rmethod{length()} on a single formula is not always 1, the number of formulas in the vector of formulas, but instead the number of components in the formula. For longer vectors, it does return the number of member formulae. Because of this, it is better to store model formulas in objects of class \Rclass{list} than in vectors, as \Rfunction{length()} consistently returns the expected value on lists. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{length}\hlstd{(}\hlkwd{formula}\hlstd{())} \end{alltt} @@ -14046,7 +14259,7 @@ \section{Model formulas}\label{sec:stat:formulas} As described above, \Rfunction{length()} applied to a single formula and to a list of formulas behaves differently. To call \Rfunction{length()} on each member of a list of formulas, we can use \code{sapply()}. As function \Rfunction{is.empty.model()} is not vectorized, we also have to use \code{sapply()} with a list of formulas. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{sapply}\hlstd{(}\hlkwd{list}\hlstd{(y} \hlopt{~} \hlnum{0}\hlstd{, y} \hlopt{~} \hlnum{1}\hlstd{, y} \hlopt{~} \hlstd{x), length)} \end{alltt} @@ -14069,7 +14282,7 @@ \section{Model formulas}\label{sec:stat:formulas} The same symbols as for arithmetic operators are used for model formulas. Within a formula, symbols are interpreted according to formula syntax. When we mean an arithmetic operation that could be interpreted as being part of the model formula we need to ``protect'' it by means of the identity function \Rfunction{I()}. The next two examples define formulas for models with only one explanatory variable. With formulas like these, the explanatory variable will be computed on the fly when fitting the model to data. In the first case below we need to explicitly protect the addition of the two variables into their sum, because otherwise they would be interpreted as two separate explanatory variables in the model. In the second case, \Rfunction{log()} cannot be interpreted as part of the model formula, and consequently does not require additional protection, neither does the expression passed as its argument. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{y} \hlopt{~} \hlkwd{I}\hlstd{(x1} \hlopt{+} \hlstd{x2)} \hlstd{y} \hlopt{~} \hlkwd{log}\hlstd{(x1} \hlopt{+} \hlstd{x2)} @@ -14080,7 +14293,7 @@ \section{Model formulas}\label{sec:stat:formulas} \Rlang formula syntax allows alternative ways for specifying interaction terms. They allow ``abbreviated'' ways of entering formulas, which for complex experimental designs saves typing and can improve clarity. As seen above, operator \code{*} saves us from having to explicitly indicate all the interaction terms in a full factorial model. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{y} \hlopt{~} \hlstd{x1} \hlopt{+} \hlstd{x2} \hlopt{+} \hlstd{x3} \hlopt{+} \hlstd{x1}\hlopt{:}\hlstd{x2} \hlopt{+} \hlstd{x1}\hlopt{:}\hlstd{x3} \hlopt{+} \hlstd{x2}\hlopt{:}\hlstd{x3} \hlopt{+} \hlstd{x1}\hlopt{:}\hlstd{x2}\hlopt{:}\hlstd{x3} \end{alltt} @@ -14090,7 +14303,7 @@ \section{Model formulas}\label{sec:stat:formulas} Can be replaced by a concise equivalent. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{y} \hlopt{~} \hlstd{x1} \hlopt{*} \hlstd{x2} \hlopt{*} \hlstd{x3} \end{alltt} @@ -14100,7 +14313,7 @@ \section{Model formulas}\label{sec:stat:formulas} When the model to be specified does not include all possible interaction terms, we can combine the concise notation with parentheses. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{y} \hlopt{~} \hlstd{x1} \hlopt{+} \hlstd{(x2} \hlopt{*} \hlstd{x3)} \hlstd{y} \hlopt{~} \hlstd{x1} \hlopt{+} \hlstd{x2} \hlopt{+} \hlstd{x3} \hlopt{+} \hlstd{x2}\hlopt{:}\hlstd{x3} @@ -14111,7 +14324,7 @@ \section{Model formulas}\label{sec:stat:formulas} That the two model formulas above are equivalent, can be seen using \code{terms()} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{terms}\hlstd{(y} \hlopt{~} \hlstd{x1} \hlopt{+} \hlstd{(x2} \hlopt{*} \hlstd{x3))} \end{alltt} @@ -14140,7 +14353,7 @@ \section{Model formulas}\label{sec:stat:formulas} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{y} \hlopt{~} \hlstd{x1} \hlopt{*} \hlstd{(x2} \hlopt{+} \hlstd{x3)} \hlstd{y} \hlopt{~} \hlstd{x1} \hlopt{+} \hlstd{x2} \hlopt{+} \hlstd{x3} \hlopt{+} \hlstd{x1}\hlopt{:}\hlstd{x2} \hlopt{+} \hlstd{x1}\hlopt{:}\hlstd{x3} @@ -14149,7 +14362,7 @@ \section{Model formulas}\label{sec:stat:formulas} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{terms}\hlstd{(y} \hlopt{~} \hlstd{x1} \hlopt{*} \hlstd{(x2} \hlopt{+} \hlstd{x3))} \end{alltt} @@ -14180,7 +14393,7 @@ \section{Model formulas}\label{sec:stat:formulas} The \code{\textasciicircum{}} operator provides a concise notation to limit the order of the interaction terms included in a formula. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{y} \hlopt{~} \hlstd{(x1} \hlopt{+} \hlstd{x2} \hlopt{+} \hlstd{x3)}\hlopt{^}\hlnum{2} \hlstd{y} \hlopt{~} \hlstd{x1} \hlopt{+} \hlstd{x2} \hlopt{+} \hlstd{x3} \hlopt{+} \hlstd{x1}\hlopt{:}\hlstd{x2} \hlopt{+} \hlstd{x1}\hlopt{:}\hlstd{x3} \hlopt{+} \hlstd{x2}\hlopt{:}\hlstd{x3} @@ -14189,7 +14402,7 @@ \section{Model formulas}\label{sec:stat:formulas} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{terms}\hlstd{(y} \hlopt{~} \hlstd{(x1} \hlopt{+} \hlstd{x2} \hlopt{+} \hlstd{x3)}\hlopt{^}\hlnum{2}\hlstd{)} \end{alltt} @@ -14221,7 +14434,7 @@ \section{Model formulas}\label{sec:stat:formulas} For operator \code{\textasciicircum{}} to behave as expected, its first operand should be a formula with no interactions! Compare the result of expanding these two formulas with \Rfunction{terms()}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{y} \hlopt{~} \hlstd{(x1} \hlopt{+} \hlstd{x2} \hlopt{+} \hlstd{x3)}\hlopt{^}\hlnum{2} \hlstd{y} \hlopt{~} \hlstd{(x1} \hlopt{*} \hlstd{x2} \hlopt{*} \hlstd{x3)}\hlopt{^}\hlnum{2} @@ -14234,7 +14447,7 @@ \section{Model formulas}\label{sec:stat:formulas} Operator \code{\%in\%} can also be used as a shortcut for including only some of all the possible interaction terms in a formula. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{y} \hlopt{~} \hlstd{x1} \hlopt{+} \hlstd{x2} \hlopt{+} \hlstd{x1} \hlopt{%in%} \hlstd{x2} \end{alltt} @@ -14242,7 +14455,7 @@ \section{Model formulas}\label{sec:stat:formulas} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{terms}\hlstd{(y} \hlopt{~} \hlstd{x1} \hlopt{+} \hlstd{x2} \hlopt{+} \hlstd{x1} \hlopt{%in%} \hlstd{x2)} \end{alltt} @@ -14274,7 +14487,7 @@ \section{Model formulas}\label{sec:stat:formulas} % runs fine but crashes LaTeX \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{data}\hlstd{(npk)} \hlkwd{anova}\hlstd{(}\hlkwd{lm}\hlstd{(yield} \hlopt{~} \hlstd{N} \hlopt{*} \hlstd{P} \hlopt{*} \hlstd{K,} \hlkwc{data} \hlstd{= npk))} @@ -14295,7 +14508,7 @@ \section{Model formulas}\label{sec:stat:formulas} Fitting models like those below to data from an experiment based on a three-way factorial design should be avoided. In both cases simpler terms are missing, while higher-order interaction(s) that include the missing term are included in the model. Such models are not interpretable, as the variation from the missing term(s) ends being ``disguised'' within the remaining terms, distorting their apparent significance and parameter estimates. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{y} \hlopt{~} \hlstd{A} \hlopt{+} \hlstd{B} \hlopt{+} \hlstd{A}\hlopt{:}\hlstd{B} \hlopt{+} \hlstd{A}\hlopt{:}\hlstd{C} \hlopt{+} \hlstd{B}\hlopt{:}\hlstd{C} \hlstd{y} \hlopt{~} \hlstd{A} \hlopt{+} \hlstd{B} \hlopt{+} \hlstd{C} \hlopt{+} \hlstd{A}\hlopt{:}\hlstd{B} \hlopt{+} \hlstd{A}\hlopt{:}\hlstd{C} \hlopt{+} \hlstd{A}\hlopt{:}\hlstd{B}\hlopt{:}\hlstd{C} @@ -14306,7 +14519,7 @@ \section{Model formulas}\label{sec:stat:formulas} In contrast to those above, the models below are interpretable, even if not ``full'' models (not including all possible interactions). \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{y} \hlopt{~} \hlstd{A} \hlopt{+} \hlstd{B} \hlopt{+} \hlstd{C} \hlopt{+} \hlstd{A}\hlopt{:}\hlstd{B} \hlopt{+} \hlstd{A}\hlopt{:}\hlstd{C} \hlopt{+} \hlstd{B}\hlopt{:}\hlstd{C} \hlstd{y} \hlopt{~} \hlstd{(A} \hlopt{+} \hlstd{B} \hlopt{+} \hlstd{C)}\hlopt{^}\hlnum{2} @@ -14321,7 +14534,7 @@ \section{Model formulas}\label{sec:stat:formulas} As seen in chapter \ref{chap:R:data}, almost everything in the \Rlang language is an object that can be stored and manipulated. Model formulas are also objects, objects of class \Rclass{"formula"}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{class}\hlstd{(y} \hlopt{~} \hlstd{x)} \end{alltt} @@ -14332,7 +14545,7 @@ \section{Model formulas}\label{sec:stat:formulas} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{a} \hlkwb{<-} \hlstd{y} \hlopt{~} \hlstd{x} \hlkwd{class}\hlstd{(a)} @@ -14346,7 +14559,7 @@ \section{Model formulas}\label{sec:stat:formulas} There is no method \code{is.formula()} in base \Rlang, but we can easily test the class of an object with \Rfunction{inherits()}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{inherits}\hlstd{(a,} \hlstr{"formula"}\hlstd{)} \end{alltt} @@ -14362,7 +14575,7 @@ \section{Model formulas}\label{sec:stat:formulas} The use of \code{for} \emph{loops} for iteration over a list of model formulas is described in section \ref{sec:R:faces:of:loops} on page \pageref{sec:R:faces:of:loops}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my.data} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{10}\hlstd{,} \hlkwc{y} \hlstd{= (}\hlnum{1}\hlopt{:}\hlnum{10}\hlstd{)} \hlopt{/} \hlnum{2} \hlopt{+} \hlkwd{rnorm}\hlstd{(}\hlnum{10}\hlstd{))} \hlstd{anovas} \hlkwb{<-} \hlkwd{list}\hlstd{()} @@ -14387,7 +14600,7 @@ \section{Model formulas}\label{sec:stat:formulas} As could be expected, a conversion constructor is available with name \Rfunction{as.formula()}. It is useful when formulas are input interactively by the user or read from text files. With \Rfunction{as.formula()} we can convert a character string into a formula. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my.string} \hlkwb{<-} \hlstr{"y ~ x"} \hlkwd{lm}\hlstd{(}\hlkwd{as.formula}\hlstd{(my.string),} \hlkwc{data} \hlstd{= my.data)} @@ -14407,7 +14620,7 @@ \section{Model formulas}\label{sec:stat:formulas} As there are many functions for the manipulation of character strings available in base \Rlang and through extension packages, it is straightforward to build model formulas programmatically as strings. We can use functions like \code{paste()} to assemble a formula as text, and then use \Rfunction{as.formula()} to convert it to an object of class \code{formula}, usable for fitting a model. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my.string} \hlkwb{<-} \hlkwd{paste}\hlstd{(}\hlstr{"y"}\hlstd{,} \hlstr{"x"}\hlstd{,} \hlkwc{sep} \hlstd{=} \hlstr{"~"}\hlstd{)} \hlkwd{lm}\hlstd{(}\hlkwd{as.formula}\hlstd{(my.string),} \hlkwc{data} \hlstd{= my.data)} @@ -14427,7 +14640,7 @@ \section{Model formulas}\label{sec:stat:formulas} For the reverse operation of converting a formula into a string, we have available methods \code{as.character()} and \code{format()}. The first of these methods returns a character vector containing the components of the formula as individual strings, while \code{format()} returns a single character string with the formula formatted for printing. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{formatted.string} \hlkwb{<-} \hlkwd{format}\hlstd{(y} \hlopt{~} \hlstd{x)} \hlstd{formatted.string} @@ -14447,7 +14660,7 @@ \section{Model formulas}\label{sec:stat:formulas} It is also possible to \emph{edit} formula objects with method \Rfunction{update()}. In the replacement formula, a dot can replace either the left-hand side (lhs) or the right-hand side (rhs) of the existing formula in the replacement formula. We can also remove terms as can be seen below. In some cases the dot corresponding to the lhs can be omitted, but including it makes the syntax clearer. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my.formula} \hlkwb{<-} \hlstd{y} \hlopt{~} \hlstd{x1} \hlopt{+} \hlstd{x2} \hlkwd{update}\hlstd{(my.formula, .} \hlopt{~} \hlstd{.} \hlopt{+} \hlstd{x3)} @@ -14487,7 +14700,7 @@ \section{Model formulas}\label{sec:stat:formulas} A matrix of dummy coefficients can be derived from a model formula, a type of contrast, and the data for the explanatory variables. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{treats.df} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(}\hlkwc{A} \hlstd{=} \hlkwd{rep}\hlstd{(}\hlkwd{c}\hlstd{(}\hlstr{"yes"}\hlstd{,} \hlstr{"no"}\hlstd{),} \hlkwd{c}\hlstd{(}\hlnum{4}\hlstd{,} \hlnum{4}\hlstd{)),} \hlkwc{B} \hlstd{=} \hlkwd{rep}\hlstd{(}\hlkwd{c}\hlstd{(}\hlstr{"white"}\hlstd{,} \hlstr{"black"}\hlstd{),} \hlnum{4}\hlstd{))} @@ -14510,7 +14723,7 @@ \section{Model formulas}\label{sec:stat:formulas} The default contrasts types currently in use. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{options}\hlstd{(}\hlstr{"contrasts"}\hlstd{)} \end{alltt} @@ -14525,7 +14738,7 @@ \section{Model formulas}\label{sec:stat:formulas} A model matrix for a model for a two-way factorial design with no interaction term: \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{model.matrix}\hlstd{(}\hlopt{~} \hlstd{A} \hlopt{+} \hlstd{B, treats.df)} \end{alltt} @@ -14554,7 +14767,7 @@ \section{Model formulas}\label{sec:stat:formulas} A model matrix for a model for a two-way factorial design with interaction term: \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{model.matrix}\hlstd{(}\hlopt{~} \hlstd{A} \hlopt{*} \hlstd{B, treats.df)} \end{alltt} @@ -14592,7 +14805,7 @@ \section{Time series}\label{sec:stat:time:series} We start by creating a time series from a numeric vector. By now, you surely guessed that you need to use a constructor called \Rfunction{ts()} or a conversion constructor called \Rfunction{as.ts()} and that you can look up the arguments they accept by reading the corresponding help pages with \code{help(ts)}. The \code{print()} method for \code{ts} objects is special, and adjusts the printout according to the time step or \code{deltat} of the series. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my.ts} \hlkwb{<-} \hlkwd{ts}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{10}\hlstd{,} \hlkwc{start} \hlstd{=} \hlnum{2019}\hlstd{,} \hlkwc{deltat} \hlstd{=} \hlnum{1}\hlopt{/}\hlnum{12}\hlstd{)} \hlkwd{print}\hlstd{(my.ts)} @@ -14607,7 +14820,7 @@ \section{Time series}\label{sec:stat:time:series} The structure of the \code{ts} object is simple. Its mode is \code{numeric} but its class is \code{ts}. It is similar to a numeric vector with the addition of one attributes named \code{tsp} describing the time steps, as a numeric vector of length 3, giving start and end time and the size of the steps. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{mode}\hlstd{(my.ts)} \end{alltt} @@ -14648,7 +14861,7 @@ \section{Time series}\label{sec:stat:time:series} Data set \Rdata{nottem}, included in \Rlang, contains meteorological data for Nottingham. The annual cycle of mean air temperatures (in degrees Fahrenheit) as well variation among years are clear when data are plotted. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{is.ts}\hlstd{(nottem)} \end{alltt} @@ -14687,7 +14900,7 @@ \section{Time series}\label{sec:stat:time:series} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{plot}\hlstd{(nottem)} \end{alltt} @@ -14704,7 +14917,7 @@ \section{Time series}\label{sec:stat:time:series} Explore the structure of the \code{nottem} object, and consider how and why it differs or not from that of the object \code{my.ts} that we created above. Similarly explore time series \code{ausres}, another of the data sets included in \Rlang. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{str}\hlstd{(nottem)} \hlkwd{attributes}\hlstd{(nottem)} @@ -14717,7 +14930,7 @@ \section{Time series}\label{sec:stat:time:series} In\index{time series!decomposition} the next two code chunks, two different approaches to time series decomposition are used. In the first one we use a moving average to capture the trend, while in the second approach we use Loess (a smooth curve fitted by local weighted regression) for the decomposition, a method for which the acronym STL (Seasonal and Trend decomposition using Loess) is used.\qRfunction{decompose()}\qRfunction{stl()} Before decomposing the time-series we reexpress the temperatures in degrees Celsius. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{nottem.celcius} \hlkwb{<-} \hlstd{(nottem} \hlopt{-} \hlnum{32}\hlstd{)} \hlopt{*} \hlnum{5}\hlopt{/}\hlnum{9} \end{alltt} @@ -14728,7 +14941,7 @@ \section{Time series}\label{sec:stat:time:series} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{nottem.stl} \hlkwb{<-} \hlkwd{stl}\hlstd{(nottem.celcius,} \hlkwc{s.window} \hlstd{=} \hlnum{7}\hlstd{)} \hlkwd{plot}\hlstd{(nottem.stl)} @@ -14745,7 +14958,7 @@ \section{Time series}\label{sec:stat:time:series} It is interesting to explore the class and structure of the object returned by \Rfunction{stl()}, as we may want to extract components. We can see that the structure of this object is rather similar to model-fit objects of classes \code{lm} and \code{glm}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{class}\hlstd{(nottem.stl)} \end{alltt} @@ -14771,7 +14984,7 @@ \section{Time series}\label{sec:stat:time:series} As with other fit methods, method \Rfunction{summary()} is available. However, this method in the case of class \code{stl} just returns the \code{stl} object received as argument and displays a summary. In other words, it behaves similarly to \code{print()} methods with respect to the returned object, but produces a different printout than \code{print()} as its side effect. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{summary}\hlstd{(nottem.stl)} \end{alltt} @@ -14810,7 +15023,7 @@ \section{Time series}\label{sec:stat:time:series} Method \code{print()} shows the different components. Extract the seasonal component and plot is on its own against time. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{print}\hlstd{(nottem.stl)} \end{alltt} @@ -14834,7 +15047,7 @@ \subsection{Multivariate analysis of variance} Multivariate model formulas in base \Rlang require the use of column binding (\code{cbind()}) on the left-hand side (lhs) of the model formula. For the next examples we use the well-known \Rdata{iris} data set, containing size measurements for flowers of two species of \emph{Iris}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{data}\hlstd{(iris)} \hlstd{mmf1} \hlkwb{<-} \hlkwd{lm}\hlstd{(}\hlkwd{cbind}\hlstd{(Petal.Length, Petal.Width)} \hlopt{~} \hlstd{Species,} \hlkwc{data} \hlstd{= iris)} @@ -14901,7 +15114,7 @@ \subsection{Multivariate analysis of variance} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{mmf2} \hlkwb{<-} \hlkwd{manova}\hlstd{(}\hlkwd{cbind}\hlstd{(Petal.Length, Petal.Width)} \hlopt{~} \hlstd{Species,} \hlkwc{data} \hlstd{= iris)} \hlkwd{anova}\hlstd{(mmf2)} @@ -14942,7 +15155,7 @@ \subsection{Principal components analysis}\label{sec:stat:PCA} Principal components analysis (PCA) is used to simplify a data set by combining variables with similar and ``mirror'' behavior into principal components. At a later stage, we frequently try to interpret these components in relation to known and/or assumed independent variables. Base \Rlang's function \Rfunction{prcomp()} computes the principal components and accepts additional arguments for centering and scaling. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{pc} \hlkwb{<-} \hlkwd{prcomp}\hlstd{(iris[}\hlkwd{c}\hlstd{(}\hlstr{"Sepal.Length"}\hlstd{,} \hlstr{"Sepal.Width"}\hlstd{,} \hlstr{"Petal.Length"}\hlstd{,} \hlstr{"Petal.Width"}\hlstd{)],} @@ -14954,7 +15167,7 @@ \subsection{Principal components analysis}\label{sec:stat:PCA} By printing the returned object we can see the loadings of each variable in the principal components \code{P1} to \code{P4}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{class}\hlstd{(pc)} \end{alltt} @@ -14981,7 +15194,7 @@ \subsection{Principal components analysis}\label{sec:stat:PCA} In the summary, the rows ``Proportion of Variance'' and ``Cumulative Proportion'' are most informative of the contribution of each principal component (PC) to explaining the variation among observations. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{summary}\hlstd{(pc)} \end{alltt} @@ -15000,7 +15213,7 @@ \subsection{Principal components analysis}\label{sec:stat:PCA} Method \Rfunction{biplot()} produces a plot with one principal component (PC) on each axis, plus arrows for the loadings. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{biplot}\hlstd{(pc)} \end{alltt} @@ -15018,7 +15231,7 @@ \subsection{Principal components analysis}\label{sec:stat:PCA} Method \code{plot()} generates a bar plot of variances corresponding to the different components. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{plot}\hlstd{(pc)} \end{alltt} @@ -15041,7 +15254,7 @@ \subsection{Principal components analysis}\label{sec:stat:PCA} As for other fitted models, the object returned by function \Rfunction{prcomp()} is list-like with multiple components and belongs to a class of the same name as the function, not derived from class \code{"list"}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{class}\hlstd{(pc)} \hlkwd{str}\hlstd{(pc,} \hlkwc{max.level} \hlstd{=} \hlnum{1}\hlstd{)} @@ -15059,7 +15272,7 @@ \subsection{Multidimensional scaling}\label{sec:stat:MDS} For MDS we start with a matrix of distances among observations. We will use, for the example, distances in kilometers between geographic locations in Europe from data set \Rdata{eurodist}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{loc} \hlkwb{<-} \hlkwd{cmdscale}\hlstd{(eurodist)} \end{alltt} @@ -15069,7 +15282,7 @@ \subsection{Multidimensional scaling}\label{sec:stat:MDS} We can see that the returned object \code{loc} is a \code{matrix}, with names for one of the dimensions. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{class}\hlstd{(loc)} \end{alltt} @@ -15117,7 +15330,7 @@ \subsection{Multidimensional scaling}\label{sec:stat:MDS} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{x} \hlkwb{<-} \hlstd{loc[,} \hlnum{1}\hlstd{]} \hlstd{y} \hlkwb{<-} \hlopt{-}\hlstd{loc[,} \hlnum{2}\hlstd{]} \hlcom{# change sign so North is at the top} @@ -15146,7 +15359,7 @@ \subsection{Cluster analysis}\label{sec:stat:cluster} In cluster analysis, the aim is to group observations into discrete groups with maximal internal homogeneity and maximum group-to-group differences. In the next example we use function \Rfunction{hclust()} from the base-\Rlang package \pkgname{stats}. We use, as above, the \Rdata{eurodist} data which directly provides distances. In other cases a matrix of distances between pairs of observations needs to be first calculated with function \Rfunction{dist} which supports several methods. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{hc} \hlkwb{<-} \hlkwd{hclust}\hlstd{(eurodist)} \hlkwd{print}\hlstd{(hc)} @@ -15163,7 +15376,7 @@ \subsection{Cluster analysis}\label{sec:stat:cluster} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{plot}\hlstd{(hc)} \end{alltt} @@ -15179,7 +15392,7 @@ \subsection{Cluster analysis}\label{sec:stat:cluster} We can use \Rfunction{cutree()} to limit the number of clusters by directly passing as an argument the desired number of clusters or the height at which to cut the tree. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{cutree}\hlstd{(hc,} \hlkwc{k} \hlstd{=} \hlnum{5}\hlstd{)} \end{alltt} @@ -15200,7 +15413,7 @@ \subsection{Cluster analysis}\label{sec:stat:cluster} The object returned by \Rfunction{hclust()} contains details of the result of the clustering, which allows further manipulation and plotting. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{str}\hlstd{(hc)} \end{alltt} @@ -15280,7 +15493,7 @@ \section{Introduction} \section{Packages used in this chapter} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{install.packages}\hlstd{(learnrbook}\hlopt{::}\hlstd{pkgs_ch_data)} \end{alltt} @@ -15290,7 +15503,7 @@ \section{Packages used in this chapter} To run the examples included in this chapter, you need first to load and attach some packages from the library (see section \ref{sec:script:packages} on page \pageref{sec:script:packages} for details on the use of packages). \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{library}\hlstd{(learnrbook)} \hlkwd{library}\hlstd{(tibble)} @@ -15336,7 +15549,7 @@ \subsection{Package \pkgname{tibble}}\label{sec:data:tibble} One should be aware that although the constructor \Rfunction{tibble()} and conversion function \Rfunction{as\_tibble()}, as well as the test \Rfunction{is\_tibble()} use the name \Rclass{tibble}, the class attribute is named \code{tbl}. This is inconsistent with base \Rlang conventions, as it is the use of an underscore instead of a dot in the name of these methods. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my.tb} \hlkwb{<-} \hlkwd{tibble}\hlstd{(}\hlkwc{numbers} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{3}\hlstd{)} \hlkwd{is_tibble}\hlstd{(my.tb)} @@ -15365,7 +15578,7 @@ \subsection{Package \pkgname{tibble}}\label{sec:data:tibble} We define a function that concisely reports the class of the object passed as argument and of its members (\emph{apply} functions are described in section \ref{sec:data:apply} on page \pageref{sec:data:apply}). \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{show_classes} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{) \{} \hlkwd{cat}\hlstd{(} @@ -15383,7 +15596,7 @@ \subsection{Package \pkgname{tibble}}\label{sec:data:tibble} The \Rfunction{tibble()} constructor by default does not convert character data into factors, while the \Rfunction{data.frame()} constructor did before \Rlang version 4.0.0. The default can be overridden through an argument passed to these constructors, and in the case of \Rfunction{data.frame()} also by setting an \Rlang option. This new behaviour extends to function \Rfunction{read.table()} and its wrappers (see section \ref{sec:files:txt} on page \pageref{sec:files:txt}). \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my.df} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(}\hlkwc{codes} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"A"}\hlstd{,} \hlstr{"B"}\hlstd{,} \hlstr{"C"}\hlstd{),} \hlkwc{numbers} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{3}\hlstd{,} \hlkwc{integers} \hlstd{=} \hlnum{1L}\hlopt{:}\hlnum{3L}\hlstd{)} \hlkwd{is.data.frame}\hlstd{(my.df)} @@ -15410,7 +15623,7 @@ \subsection{Package \pkgname{tibble}}\label{sec:data:tibble} Tibbles are, or pretend to be (see above), data frames---or more formally class \Rclass{tibble} is derived from class \code{data.frame}. However, data frames are not tibbles. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my.tb} \hlkwb{<-} \hlkwd{tibble}\hlstd{(}\hlkwc{codes} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"A"}\hlstd{,} \hlstr{"B"}\hlstd{,} \hlstr{"C"}\hlstd{),} \hlkwc{numbers} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{3}\hlstd{,} \hlkwc{integers} \hlstd{=} \hlnum{1L}\hlopt{:}\hlnum{3L}\hlstd{)} \hlkwd{is.data.frame}\hlstd{(my.tb)} @@ -15437,7 +15650,7 @@ \subsection{Package \pkgname{tibble}}\label{sec:data:tibble} The \Rmethod{print()} method for tibbles differs from that for data frames in that it outputs a header with the text ``A tibble:'' followed by the dimensions (number of rows $\times$ number of columns), adds under each column name an abbreviation of its class and instead of printing all rows and columns, a limited number of them are displayed. In addition, individual values are formatted more compactly and using color to highlight, for example, negative numbers in red. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{print}\hlstd{(my.df)} \end{alltt} @@ -15465,7 +15678,7 @@ \subsection{Package \pkgname{tibble}}\label{sec:data:tibble} The default number of rows printed depends on \Rlang option \code{tibble.print\_max} that can be set with a call to \Rfunction{options()}. This option plays for tibbles a similar role as option \code{max.print} plays for base \Rlang \Rmethod{print()} methods. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{options}\hlstd{(}\hlkwc{tibble.print_max} \hlstd{=} \hlnum{3}\hlstd{,} \hlkwc{tibble.print_min} \hlstd{=} \hlnum{3}\hlstd{)} \end{alltt} @@ -15480,7 +15693,7 @@ \subsection{Package \pkgname{tibble}}\label{sec:data:tibble} Data frames can be converted into tibbles with \code{as\_tibble()}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my_conv.tb} \hlkwb{<-} \hlkwd{as_tibble}\hlstd{(my.df)} \hlkwd{is.data.frame}\hlstd{(my_conv.tb)} @@ -15507,7 +15720,7 @@ \subsection{Package \pkgname{tibble}}\label{sec:data:tibble} Tibbles can be converted into ``real'' data.frames with \code{as.data.frame()}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my_conv.df} \hlkwb{<-} \hlkwd{as.data.frame}\hlstd{(my.tb)} \hlkwd{is.data.frame}\hlstd{(my_conv.df)} @@ -15537,7 +15750,7 @@ \subsection{Package \pkgname{tibble}}\label{sec:data:tibble} We have already seen that calling \Rfunction{as.data.frame()} on a tibble strips the derived class attributes, returning a data frame. We will look at the whole character vector stored in the \code{"class"} attribute to demonstrate the difference. We also test the two objects for equality, in two different ways. Using the operator \code{==} tests for equivalent objects. Objects that contain the same data. Using \Rfunction{identical()} tests that objects are exactly the same, including attributes such as \code{"class"}, which we retrieve using \Rfunction{class()}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{class}\hlstd{(my.tb)} \end{alltt} @@ -15571,7 +15784,7 @@ \subsection{Package \pkgname{tibble}}\label{sec:data:tibble} Now we derive from a tibble, and then attempt a conversion back into a tibble. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my.xtb} \hlkwb{<-} \hlstd{my.tb} \hlkwd{class}\hlstd{(my.xtb)} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlstr{"xtb"}\hlstd{,} \hlkwd{class}\hlstd{(my.xtb))} @@ -15610,7 +15823,7 @@ \subsection{Package \pkgname{tibble}}\label{sec:data:tibble} As tibbles have been defined as a class derived from \code{data.frame}, if methods have not been explicitly defined for tibbles, the methods defined for data frames are called, and these are likely to return a data frame rather than a tibble. Even a frequent operation like column binding is affected, at least at the time of writing. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{class}\hlstd{(my.df)} \end{alltt} @@ -15660,7 +15873,7 @@ \subsection{Package \pkgname{tibble}}\label{sec:data:tibble} There are additional important differences between the constructors \Rfunction{tibble()} and \code{data.frame()}. One of them is that in a call to \Rfunction{tibble()}, member variables (``columns'') being defined can be used in the definition of subsequent member variables. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{tibble}\hlstd{(}\hlkwc{a} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{,} \hlkwc{b} \hlstd{=} \hlnum{5}\hlopt{:}\hlnum{1}\hlstd{,} \hlkwc{c} \hlstd{= a} \hlopt{+} \hlstd{b,} \hlkwc{d} \hlstd{= letters[a} \hlopt{+} \hlnum{1}\hlstd{])} \end{alltt} @@ -15684,7 +15897,7 @@ \subsection{Package \pkgname{tibble}}\label{sec:data:tibble} While objects passed directly as arguments to the \Rfunction{data.frame()} constructor to be included as ``columns'' can be factors, vectors or matrices (with the same number of rows as the data frame), arguments passed to the \Rfunction{tibble()} constructor can be factors, vectors or lists (with the same number of members as rows in the tibble). As we saw in section \ref{sec:R:data:frames} on page \pageref{sec:R:data:frames}, base \Rlang's data frames can contain columns of classes \code{list} and \code{matrix}. The difference is in the need to use \Rfunction{I()}, the identity function, to protect these variables during construction and assignment to true \code{data.frame} objects as otherwise list members and matrix columns will be assigned to multiple individual columns in the data frame. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{tibble}\hlstd{(}\hlkwc{a} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{,} \hlkwc{b} \hlstd{=} \hlnum{5}\hlopt{:}\hlnum{1}\hlstd{,} \hlkwc{c} \hlstd{=} \hlkwd{list}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlnum{2}\hlstd{,} \hlnum{3}\hlstd{,} \hlnum{4}\hlstd{,} \hlnum{5}\hlstd{))} \end{alltt} @@ -15703,7 +15916,7 @@ \subsection{Package \pkgname{tibble}}\label{sec:data:tibble} A list of lists or a list of vectors can be directly passed to the constructor. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{tibble}\hlstd{(}\hlkwc{a} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{,} \hlkwc{b} \hlstd{=} \hlnum{5}\hlopt{:}\hlnum{1}\hlstd{,} \hlkwc{c} \hlstd{=} \hlkwd{list}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlnum{1}\hlopt{:}\hlnum{2}\hlstd{,} \hlnum{0}\hlopt{:}\hlnum{3}\hlstd{, letters[}\hlnum{1}\hlopt{:}\hlnum{3}\hlstd{], letters[}\hlnum{3}\hlopt{:}\hlnum{1}\hlstd{]))} \end{alltt} @@ -15735,7 +15948,7 @@ \subsection{\pkgname{magrittr}} Operator \Roperator{\%>\%} plays a similar role as \Rlang's \Roperator{\textbar >}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{data.in} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{10} \end{alltt} @@ -15743,7 +15956,7 @@ \subsection{\pkgname{magrittr}} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{data.in} \hlopt{%>%} \hlkwd{sqrt}\hlstd{()} \hlopt{%>%} \hlkwd{sum}\hlstd{()} \hlkwb{->} \hlstd{data0.out} \end{alltt} @@ -15753,7 +15966,7 @@ \subsection{\pkgname{magrittr}} The value passed can be made explicit using a dot as placeholder passed as an argument by name and by position to the function on the \emph{rhs} of the \Roperator{\%>\%} operator. Thus \code{.} in \pkgname{magrittr} plays a similar but not identical role as \code{\_} in base \Rlang pipes. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{data.in} \hlopt{%>%} \hlkwd{sqrt}\hlstd{(}\hlkwc{x} \hlstd{= .)} \hlopt{%>%} \hlkwd{sum}\hlstd{(.)} \hlkwb{->} \hlstd{data1.out} \hlkwd{all.equal}\hlstd{(data0.out, data1.out)} @@ -15767,7 +15980,7 @@ \subsection{\pkgname{magrittr}} R's native pipe operator requires, consistently with \Rlang in all other situations, that functions that are to be evaluated use the parenthesis syntax, while \pkgname{magrittr} allows the parentheses to be missing when the piped argument is the only one passed to the function call on \textit{rhs}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{data.in} \hlopt{%>%} \hlstd{sqrt} \hlopt{%>%} \hlstd{sum} \hlkwb{->} \hlstd{data5.out} \hlkwd{all.equal}\hlstd{(data0.out, data5.out)} @@ -15789,7 +16002,7 @@ \subsection{\pkgname{wrapr}} Rewritten using the dot-pipe operator, the pipe in the previous chunk becomes \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{data.in} \hlopt{%.>%} \hlkwd{sqrt}\hlstd{(.)} \hlopt{%.>%} \hlkwd{sum}\hlstd{(.)} \hlkwb{->} \hlstd{data2.out} \hlkwd{all.equal}\hlstd{(data0.out, data2.out)} @@ -15803,7 +16016,7 @@ \subsection{\pkgname{wrapr}} However, as operator \Roperator{\%>\%} from \pkgname{magrittr} recognizes the \code{.} placeholder without enforcing its use, the code below where \Roperator{\%.>\%} is replaced by \Roperator{\%>\%} returns the same value as that above. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{data.in} \hlopt{%>%} \hlkwd{sqrt}\hlstd{(.)} \hlopt{%>%} \hlkwd{sum}\hlstd{(.)} \hlkwb{->} \hlstd{data3.out} \hlkwd{all.equal}\hlstd{(data0.out, data3.out)} @@ -15818,7 +16031,7 @@ \subsection{\pkgname{wrapr}} To use operator \Roperator{\textbar >} from \Rlang, we need to edit the code using (\code{\_}) as placeholder and passing it as argument to parameters by name in the function calls on the \textit{rhs}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{data.in |>} \hlkwd{sqrt}\hlstd{(}\hlkwc{x} \hlstd{= _) |>} \hlkwd{sum}\hlstd{(}\hlkwc{x} \hlstd{= _)} \hlkwb{->} \hlstd{data4.out} \hlkwd{all.equal}\hlstd{(data0.out, data4.out)} @@ -15832,7 +16045,7 @@ \subsection{\pkgname{wrapr}} We can, in this case, simply use no placeholder, and pass the arguments by position to the first parameter of the functions. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{data.in |>} \hlkwd{sqrt}\hlstd{() |>} \hlkwd{sum}\hlstd{()} \hlkwb{->} \hlstd{data4.out} \hlkwd{all.equal}\hlstd{(data0.out, data4.out)} @@ -15848,7 +16061,7 @@ \subsection{\pkgname{wrapr}} The \index{pipes!expressions in rhs} dot-pipe operator \Roperator{\%.>\%} from \pkgname{wrapr} allows us to use the placeholder \code{.} in expressions on the \emph{rhs} of operators in addition to in function calls. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{data.in} \hlopt{%.>%} \hlstd{(.}\hlopt{^}\hlnum{2}\hlstd{)} \hlkwb{->} \hlstd{data7.out} \end{alltt} @@ -15858,7 +16071,7 @@ \subsection{\pkgname{wrapr}} In contrast, operators \Roperator{\textbar >} and \Roperator{\%>\%} do not support expressions, only function call syntax on their \textit{rhs}, forcing us to call operators with parenthesis syntax and named arguments \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{data.in |>} \hlkwd{`^`}\hlstd{(}\hlkwc{e1} \hlstd{= _,} \hlkwc{e2} \hlstd{=} \hlnum{2}\hlstd{)} \hlkwb{->} \hlstd{data8.out} \hlkwd{all.equal}\hlstd{(data7.out, data8.out)} @@ -15872,7 +16085,7 @@ \subsection{\pkgname{wrapr}} or \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{data.in} \hlopt{%>%} \hlkwd{`^`}\hlstd{(}\hlkwc{e1} \hlstd{= .,} \hlkwc{e2} \hlstd{=} \hlnum{2}\hlstd{)} \hlkwb{->} \hlstd{data9.out} \hlkwd{all.equal}\hlstd{(data7.out, data9.out)} @@ -15886,7 +16099,7 @@ \subsection{\pkgname{wrapr}} In conclusion, \Rlang syntax for expressions is preserved when using the dot-pipe operator from \pkgname{wrapr}, with the only caveat that because of the higher precedence of the \Roperator{\%.>\%} operator, we need to ``protect'' bare expressions containing other operators by enclosing them in parentheses. In the examples above we showed a simple expression so that it could be easily converted into a function call. The \Roperator{\%.>\%} operator supports also more complex expressions, even with multiple uses of the placeholder. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{data.in} \hlopt{%.>%} \hlstd{(.}\hlopt{^}\hlnum{2} \hlopt{+} \hlkwd{sqrt}\hlstd{(.} \hlopt{+} \hlnum{1}\hlstd{))} \end{alltt} @@ -15910,7 +16123,7 @@ \subsection{Comparing pipes} Writing a series of statements and saving intermediate results in temporary variables makes debugging easiest. Debugging pipes is not as easy, as this usually requires splitting them, with one approach being the insertion of calls to \Rfunction{print()}. This is possible, because \Rfunction{print()} returns its input invisibly in addition to displaying it. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{data.in |>} \hlkwd{print}\hlstd{() |>} \hlkwd{sqrt}\hlstd{() |>} \hlkwd{print}\hlstd{() |>} \hlkwd{sum}\hlstd{() |>} \hlkwd{print}\hlstd{()} \hlkwb{->} \hlstd{data10.out} \end{alltt} @@ -15949,7 +16162,7 @@ \subsection{Comparing pipes} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{data.in |>} \hlkwd{assign}\hlstd{(}\hlkwc{x} \hlstd{=} \hlstr{"data6.out"}\hlstd{,} \hlkwc{value} \hlstd{= _)} \hlkwd{all.equal}\hlstd{(data.in, data6.out)} @@ -15963,7 +16176,7 @@ \subsection{Comparing pipes} Named arguments are also supported with the dot-pipe operator from \pkgname{wrapr}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{data.in} \hlopt{%.>%} \hlkwd{assign}\hlstd{(}\hlkwc{x} \hlstd{=} \hlstr{"data7.out"}\hlstd{,} \hlkwc{value} \hlstd{= .)} \hlkwd{all.equal}\hlstd{(data.in, data7.out)} @@ -15977,7 +16190,7 @@ \subsection{Comparing pipes} However, the pipe operator (\Roperator{\%>\%}) from package \pkgname{magrittr} silently and unexpectedly fails to assign the value to the name. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{data.in} \hlopt{%>%} \hlkwd{assign}\hlstd{(}\hlkwc{x} \hlstd{=} \hlstr{"data8.out"}\hlstd{,} \hlkwc{value} \hlstd{= .)} \hlkwa{if} \hlstd{(}\hlkwd{exists}\hlstd{(}\hlstr{"data8.out"}\hlstd{)) \{} @@ -16015,7 +16228,7 @@ \section{Reshaping with \pkgname{tidyr}} We use in examples below the \Rdata{iris} data set included in base \Rlang. Some operations on \Rlang \code{data.frame} objects with \pkgname{tidyverse} packages will return \code{data.frame} objects while others will return tibbles---i.e., \Rclass{"tb"} objects. Consequently it is safer to first convert into tibbles the data frames we will work with. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{iris.tb} \hlkwb{<-} \hlkwd{as_tibble}\hlstd{(iris)} \end{alltt} @@ -16025,7 +16238,7 @@ \section{Reshaping with \pkgname{tidyr}} Function \Rfunction{pivot\_longer()} from \pkgname{tidyr} converts data from wide form into long form (or ''tidy''). We use it here to obtain a long-form tibble. By comparing \code{iris.tb} with \code{long\_iris.tb} we can appreciate how \Rfunction{pivot\_longer()} reshaped its input. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{long_iris.tb} \hlkwb{<-} \hlkwd{pivot_longer}\hlstd{(iris.tb,} @@ -16053,7 +16266,7 @@ \section{Reshaping with \pkgname{tidyr}} Function \Rfunction{pivot\_wider()} does not directly implement the exact inverse operation of \Rfunction{pivot\_longer()}. With multiple rows with shared codes, i.e., replication, in our case within each species and flower part, the returned tibble has columns that are lists of vectors. We need to expand these columns with function \Rfunction{unnest()} in a second step. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{wide_iris.tb} \hlkwb{<-} \hlkwd{pivot_wider}\hlstd{(long_iris.tb,} @@ -16079,7 +16292,7 @@ \section{Reshaping with \pkgname{tidyr}} Is \code{wide\_iris.tb} equal to \code{iris.tb}, the tibble we converted into long shape and back into wide shape? Run the comparisons below, and print the tibbles to find out. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{identical}\hlstd{(iris.tb, wide_iris.tb)} \hlkwd{all.equal}\hlstd{(iris.tb, wide_iris.tb)} @@ -16102,7 +16315,7 @@ \section{Reshaping with \pkgname{tidyr}} Functions \Rfunction{pivot\_longer()} and \Rfunction{pivot\_wider()} from package \pkgname{poorman} attempt to replicate the behaviour of the same name functions from package \pkgname{tidyr}. In some edge cases, the behaviour differs. Test if the two code chunks above return identical or equal values when \code{poorman::} is prepended to the names of these two functions. First, ensure than package \pkgname{poorman} is installed, then run the code below. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{poor_long_iris.tb} \hlkwb{<-} \hlstd{poorman}\hlopt{::}\hlkwd{pivot_longer}\hlstd{(} @@ -16136,7 +16349,7 @@ \subsection{Row-wise manipulations} Different from usual \Rlang syntax, with \Rfunction{tibble()}, \Rfunction{mutate()} and \Rfunction{transmute()} we can use values passed as arguments, in the statements computing the values passed as later arguments. In many cases, this allows more concise and easier to understand code. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{tibble}\hlstd{(}\hlkwc{a} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{,} \hlkwc{b} \hlstd{=} \hlnum{2} \hlopt{*} \hlstd{a)} \end{alltt} @@ -16156,7 +16369,7 @@ \subsection{Row-wise manipulations} Continuing with the example from the previous section, we most likely would like to split the values in variable \code{part} into \code{plant\_part} and \code{part\_dim}. We use \code{mutate()} from \pkgname{dplyr} and \Rfunction{str\_extract()} from \pkgname{stringr}. We use regular expressions (see page \pageref{}) as arguments passed to \code{pattern}. We do not show it here, but \Rfunction{mutate()} can be used with variables of any \code{mode}, and calculations can involve values from several columns. It is even possible to operate on values applying a lag or, in other words, using rows displaced relative to the current one. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{long_iris.tb} \hlopt{%.>%} \hlkwd{mutate}\hlstd{(.,} @@ -16181,7 +16394,7 @@ \subsection{Row-wise manipulations} Function \Rfunction{arrange()} is used for sorting the rows---makes sorting a data frame or tibble simpler than by using \Rfunction{sort()} and \Rfunction{order()}. Here we sort the tibble \code{long\_iris.tb} based on the values in three of its columns. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{arrange}\hlstd{(long_iris.tb, Species, plant_part, part_dim)} \end{alltt} @@ -16200,7 +16413,7 @@ \subsection{Row-wise manipulations} Function \Rfunction{filter()} can be used to extract a subset of rows---similar to \Rfunction{subset()} but with a syntax consistent with that of other functions in the \pkgname{tidyverse}. In this case, 300 out of the original 600 rows are retained. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{filter}\hlstd{(long_iris.tb, plant_part} \hlopt{==} \hlstr{"Petal"}\hlstd{)} \end{alltt} @@ -16219,7 +16432,7 @@ \subsection{Row-wise manipulations} Function \Rfunction{slice()} can be used to extract a subset of rows based on their positions---an operation that in base \Rlang would use positional (numeric) indexes with the \code{[ , ]} operator: \code{long\_iris.tb[1:5, ]}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{slice}\hlstd{(long_iris.tb,} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{)} \end{alltt} @@ -16238,7 +16451,7 @@ \subsection{Row-wise manipulations} Function \Rfunction{select()} can be used to extract a subset of columns--this would be done with positional (numeric) indexes with \code{[ , ]} in base \Rlang, passing them to the second argument as numeric indexes or column names in a vector. Negative indexes in base \Rlang can only be numeric, while \Rfunction{select()} accepts bare column names prepended with a minus for exclusion. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{select}\hlstd{(long_iris.tb,} \hlopt{-}\hlstd{part)} \end{alltt} @@ -16257,7 +16470,7 @@ \subsection{Row-wise manipulations} In addition, \Rfunction{select()} as other functions in \pkgname{dplyr} accept ``selectors'' returned by functions \Rfunction{starts\_with()}, \Rfunction{ends\_with()}, \Rfunction{contains()}, and \Rfunction{matches()} to extract or retain columns. For this example we use the ``wide''-shaped \code{iris.tb} instead of \code{long\_iris.tb}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{select}\hlstd{(iris.tb,} \hlopt{-}\hlkwd{starts_with}\hlstd{(}\hlstr{"Sepal"}\hlstd{))} \end{alltt} @@ -16274,7 +16487,7 @@ \subsection{Row-wise manipulations} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{select}\hlstd{(iris.tb, Species,} \hlkwd{matches}\hlstd{(}\hlstr{"pal"}\hlstd{))} \end{alltt} @@ -16293,7 +16506,7 @@ \subsection{Row-wise manipulations} Function \Rfunction{rename()} can be used to rename columns, whereas base \Rlang requires the use of both \Rfunction{names()} and \Rfunction{names()<-} and \emph{ad hoc} code to match new and old names. As shown below, the syntax for each column name to be changed is \code{ = }. The two names can be given either as bare names as below or as character strings. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{rename}\hlstd{(long_iris.tb,} \hlkwc{dim} \hlstd{= dimension)} \end{alltt} @@ -16318,7 +16531,7 @@ \subsection{Group-wise manipulations}\label{sec:dplyr:group:wise} The first step is to use \Rfunction{group\_by()} to ``tag'' a tibble with the grouping. We create a \emph{tibble} and then convert it into a \emph{grouped tibble}. Once we have a grouped tibble, function \Rfunction{summarise()} will recognize the grouping and use it when the summary values are calculated. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{tibble}\hlstd{(}\hlkwc{numbers} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{9}\hlstd{,} \hlkwc{letters} \hlstd{=} \hlkwd{rep}\hlstd{(letters[}\hlnum{1}\hlopt{:}\hlnum{3}\hlstd{],} \hlnum{3}\hlstd{))} \hlopt{%.>%} \hlkwd{group_by}\hlstd{(., letters)} \hlopt{%.>%} @@ -16342,7 +16555,7 @@ \subsection{Group-wise manipulations}\label{sec:dplyr:group:wise} How is grouping implemented for data frames and tibbles?\index{grouping!implementation in tidyverse} In our case as our tibble belongs to class \code{tibble\_df}, grouping adds \code{grouped\_df} as the most derived class. It also adds several attributes with the grouping information in a format suitable for fast selection of group members. To demonstrate this, we need to make an exception to our recommendation above and save a grouped tibble to a variable. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my.tb} \hlkwb{<-} \hlkwd{tibble}\hlstd{(}\hlkwc{numbers} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{9}\hlstd{,} \hlkwc{letters} \hlstd{=} \hlkwd{rep}\hlstd{(letters[}\hlnum{1}\hlopt{:}\hlnum{3}\hlstd{],} \hlnum{3}\hlstd{))} \hlkwd{is.grouped_df}\hlstd{(my.tb)} @@ -16366,7 +16579,7 @@ \subsection{Group-wise manipulations}\label{sec:dplyr:group:wise} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my_gr.tb} \hlkwb{<-} \hlkwd{group_by}\hlstd{(}\hlkwc{.data} \hlstd{= my.tb, letters)} \hlkwd{is.grouped_df}\hlstd{(my_gr.tb)} @@ -16384,7 +16597,7 @@ \subsection{Group-wise manipulations}\label{sec:dplyr:group:wise} \end{knitrout} % allow page break \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{names}\hlstd{(}\hlkwd{attributes}\hlstd{(my_gr.tb))} \end{alltt} @@ -16410,7 +16623,7 @@ \subsection{Group-wise manipulations}\label{sec:dplyr:group:wise} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my_ugr.tb} \hlkwb{<-} \hlkwd{ungroup}\hlstd{(my_gr.tb)} \hlkwd{class}\hlstd{(my_ugr.tb)} @@ -16428,7 +16641,7 @@ \subsection{Group-wise manipulations}\label{sec:dplyr:group:wise} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{all}\hlstd{(my.tb} \hlopt{==} \hlstd{my_gr.tb)} \end{alltt} @@ -16476,7 +16689,7 @@ \subsection{Joins} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{first.tb} \hlkwb{<-} \hlkwd{tibble}\hlstd{(}\hlkwc{idx} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{4}\hlstd{,} \hlnum{5}\hlstd{),} \hlkwc{values1} \hlstd{=} \hlstr{"a"}\hlstd{)} \hlstd{second.tb} \hlkwb{<-} \hlkwd{tibble}\hlstd{(}\hlkwc{idx} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{4}\hlstd{,} \hlnum{6}\hlstd{),} \hlkwc{values2} \hlstd{=} \hlstr{"b"}\hlstd{)} @@ -16489,7 +16702,7 @@ \subsection{Joins} A full join retains all unmatched rows filling missing values with \code{NA}. By default the match is done on columns with the same name in \code{x} and \code{y}, but this can be changed by passing an argument to parameter \code{by}. Using \code{by} one can base the match on columns that have different names in \code{x} and \code{y}, or prevent matching of columns with the same name in \code{x} and \code{y} (example at end of the section). \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{full_join}\hlstd{(}\hlkwc{x} \hlstd{= first.tb,} \hlkwc{y} \hlstd{= second.tb)} \end{alltt} @@ -16510,7 +16723,7 @@ \subsection{Joins} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{full_join}\hlstd{(}\hlkwc{x} \hlstd{= second.tb,} \hlkwc{y} \hlstd{= first.tb)} \end{alltt} @@ -16533,7 +16746,7 @@ \subsection{Joins} Left and right joins retain rows not matched from only one of the two data sources, \code{x} and \code{y}, respectively. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{left_join}\hlstd{(}\hlkwc{x} \hlstd{= first.tb,} \hlkwc{y} \hlstd{= second.tb)} \end{alltt} @@ -16553,7 +16766,7 @@ \subsection{Joins} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{left_join}\hlstd{(}\hlkwc{x} \hlstd{= second.tb,} \hlkwc{y} \hlstd{= first.tb)} \end{alltt} @@ -16573,7 +16786,7 @@ \subsection{Joins} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{right_join}\hlstd{(}\hlkwc{x} \hlstd{= first.tb,} \hlkwc{y} \hlstd{= second.tb)} \end{alltt} @@ -16593,7 +16806,7 @@ \subsection{Joins} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{right_join}\hlstd{(}\hlkwc{x} \hlstd{= second.tb,} \hlkwc{y} \hlstd{= first.tb)} \end{alltt} @@ -16615,7 +16828,7 @@ \subsection{Joins} An inner join discards all rows in \code{x} that do not have a matching row in \code{y} and \emph{vice versa}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{inner_join}\hlstd{(}\hlkwc{x} \hlstd{= first.tb,} \hlkwc{y} \hlstd{= second.tb)} \end{alltt} @@ -16634,7 +16847,7 @@ \subsection{Joins} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{inner_join}\hlstd{(}\hlkwc{x} \hlstd{= second.tb,} \hlkwc{y} \hlstd{= first.tb)} \end{alltt} @@ -16657,7 +16870,7 @@ \subsection{Joins} A semi join retains rows from \code{x} that have a match in \code{y}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{semi_join}\hlstd{(}\hlkwc{x} \hlstd{= first.tb,} \hlkwc{y} \hlstd{= second.tb)} \end{alltt} @@ -16676,7 +16889,7 @@ \subsection{Joins} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{semi_join}\hlstd{(}\hlkwc{x} \hlstd{= second.tb,} \hlkwc{y} \hlstd{= first.tb)} \end{alltt} @@ -16697,7 +16910,7 @@ \subsection{Joins} A anti-join retains rows from \code{x} that do not have a match in \code{y}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{anti_join}\hlstd{(}\hlkwc{x} \hlstd{= first.tb,} \hlkwc{y} \hlstd{= second.tb)} \end{alltt} @@ -16713,7 +16926,7 @@ \subsection{Joins} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{anti_join}\hlstd{(}\hlkwc{x} \hlstd{= second.tb,} \hlkwc{y} \hlstd{= first.tb)} \end{alltt} @@ -16731,7 +16944,7 @@ \subsection{Joins} We here rename column \code{idx} in \code{first.tb} to demonstrate the use of \code{by} to specify which columns should be searched for matches. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{first2.tb} \hlkwb{<-} \hlkwd{rename}\hlstd{(first.tb,} \hlkwc{idx2} \hlstd{= idx)} \hlkwd{full_join}\hlstd{(}\hlkwc{x} \hlstd{= first2.tb,} \hlkwc{y} \hlstd{= second.tb,} \hlkwc{by} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"idx2"} \hlstd{=} \hlstr{"idx"}\hlstd{))} @@ -16807,7 +17020,7 @@ \section{Packages used in this chapter} If the packages used in this chapter are not yet installed in your computer, you can install them as shown below, as long as package \pkgname{learnrbook} is already installed. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{install.packages}\hlstd{(learnrbook}\hlopt{::}\hlstd{pkgs_ch_ggplot)} \end{alltt} @@ -16817,7 +17030,7 @@ \section{Packages used in this chapter} To run the examples included in this chapter, you need first to load some packages from the library (see section \ref{sec:script:packages} on page \pageref{sec:script:packages} for details on the use of packages). \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{library}\hlstd{(learnrbook)} \hlkwd{library}\hlstd{(wrapr)} @@ -16952,7 +17165,7 @@ \subsection{Plot construction} We start by using function \code{ggplot()} to create the skeleton for a plot, which can be enhanced, but also printed as is. \emph{A plot with no data or layers.} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{()} \end{alltt} @@ -16968,7 +17181,7 @@ \subsection{Plot construction} The plot above is of little use without any data, so we next pass a data frame object, in this case \code{mtcars}---\Rdata{mtcars} is a data set included in \Rlang; to learn more about this data set, type \code{help("mtcars")} at the \Rlang command prompt. Having no layers or scale, the result is also an empty grey plotting area. ({\small\textsf{data $\to$ \emph{ggplot object}}}) \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars)} \end{alltt} @@ -16980,7 +17193,7 @@ \subsection{Plot construction} Here we map at the \textbf{start} stage two variables in the data, \code{disp} to $x$ and and \code{mpg} to $y$ aesthetics. This mapping can be seen in the chunk below by its effect on the plotting area ranges that now match the ranges of the mapped variables, expanded by a small margin. The axis labels also reflect the names of the mapped variables, however, there is no graphical element yet displayed for the individual observations. ({\small\textsf{data $\to$ aes $\to$ \emph{ggplot object}}}) \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg))} @@ -16997,7 +17210,7 @@ \subsection{Plot construction} To make observations visible we need to add a suitable \emph{geometry} or \code{geom} to the plot recipe. Here we display the observations as points using \gggeom{geom\_point()}, i.e, we add a \emph{plot layer}. ({\small\textsf{data $\to$ aes $\to$ geom $\to$ \emph{ggplot object}}}) \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} @@ -17016,7 +17229,7 @@ \subsection{Plot construction} In the examples above, the plots were printed automatically, which is the default at the \Rlang console. However, as with other \Rlang objects, ggplots can be assigned to a variable as first shown in section \ref{sec:plot:workings} on page \pageref{sec:plot:workings}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{p} \hlkwb{<-} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} @@ -17028,7 +17241,7 @@ \subsection{Plot construction} and printed at a later time, and saved to and read from files on disk. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{print}\hlstd{(p)} \end{alltt} @@ -17047,7 +17260,7 @@ \subsection{Plot construction} Although \emph{aesthetics} are usually mapped to variables in the data, they can also be set to constant values, as many of them are by default. While variables in \code{data} can be both mapped using \code{aes()} as whole-plot defaults, as shown above, or within individual layers, constant values for aesthetics can be set, as shown here, only for individual layers and directly rather than using \code{aes()}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} @@ -17065,7 +17278,7 @@ \subsection{Plot construction} While a geometry directly constructs during rendering a graphical representation of the observations or summaries in the data it receives as input, a \emph{statistics} or \code{stat} ``sits'' in-between the data and a \code{geom}, applying some computation, usually but not always, to produce a statistical summary of the data. Here we add a fitted line using \code{stat\_smooth()} with its output added to the plot using \gggeom{geom\_line()} passed by name with \code{"line"} as an argument to \code{stat\_smooth()}. We fit a linear regression, using \code{lm()} as the method. This plot has two layers, from geometries \gggeom{geom\_point()} and \gggeom{geom\_line()}. ({\small\textsf{data $\to$ aes $\to$ stat $\to$ geom $\to$ \emph{ggplot object}}}) \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} @@ -17084,7 +17297,7 @@ \subsection{Plot construction} We haven't yet added some of the elements of the grammar described above: \emph{scales}, \emph{coordinates} and \emph{themes}. The plots were rendered anyway because these elements have defaults which are used when we do not set them explicitly. We next will see examples in which they are explicitly set. We start with a scale using a logarithmic transformation. This works like plotting by hand using graph paper with rulings spaced according to a logarithmic scale. Tick marks continue to be expressed in the original units, but statistics are applied to the transformed data. In other words, a transformed scale affects the values before they are passed to \emph{statistics}, and the linear regression will be fitted to \code{log10()} transformed $y$ values and the original $x$ values. ({\small\textsf{data $\to$ aes $\to$ stat $\to$ geom $\to$ scale $\to$ \emph{ggplot object}}}) \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} @@ -17106,7 +17319,7 @@ \subsection{Plot construction} In contrast to \emph{scale limits}, \emph{coordinates}\index{grammar of graphics!cartesian coordinates} function as a \emph{zoomed view} into the plotting area, and do not affect which observations are visible to \emph{statistics}. The coordinate system, as expected, is also determined by this grammar element---here we use cartesian coordinates which are the default, but we manually set $y$ limits. ({\small\textsf{data $\to$ aes $\to$ stat $\to$ geom $\to$ coordinate $\to$ theme $\to$ \emph{ggplot object}}}) \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} @@ -17126,7 +17339,7 @@ \subsection{Plot construction} The next example uses a coordinate system transformation. When the transformation is applied to the coordinate system, it affects only the plotting---it sits between the \code{geom} and the rendering of the plot. The transformation is applied to the values returned by any \emph{statistics}. The straight line fitted is plotted on the transformed coordinates as a curve, because the model was fitted to the untransformed data and this fitted model is automatically used to obtain the predicted values, which are then plotted after the transformation is applied to them. We have here described only cartesian coordinate systems while other coordinate systems are described in sections \ref{sec:plot:sf} and \ref{sec:plot:circular} on pages \pageref{sec:plot:sf} and \pageref{sec:plot:circular}, respectively. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} @@ -17146,7 +17359,7 @@ \subsection{Plot construction} Themes affect the rendering of plots at the time of printing---they can be thought of as style sheets defining the graphic design. A complete theme can override the default gray theme. The plot is the same, the observations are represented in the same way, the limits of the axes are the same and all text is the same. On the other, hand how these elements are rendered by different themes can be drastically different. ({\small\textsf{data $\to$ aes $\to$ $\to$ geom $\to$ theme $\to$ \emph{ggplot object}}} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} @@ -17165,7 +17378,7 @@ \subsection{Plot construction} We can also override the base font size and font family. This affects the size of all text elements, as their size is defined relative to the base size. Here we add the same theme as used in the previous example, but with a different base point size for text. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} @@ -17184,7 +17397,7 @@ \subsection{Plot construction} The details of how to set axis labels, tick positions and tick labels will be discussed in depth in section \ref{sec:plot:scales}. Meanwhile, we will use function \code{labs()} which is \emph{a convenience function} allowing us to easily set the title and subtitle of a plot and to replace the default \code{name} of scales, in this case, those used for axis labels---by default the \code{name} of scales is set to the name of the mapped variable. When setting the \code{name} of scales with \code{labs()}, we use as parameter names in the function call the names of aesthetics and pass as an argument a character string, or an \Rlang expression. Here we use \code{x} and \code{y}, the names of the two \emph{aesthetics} to which we have mapped two variables in \code{data}, \code{disp} and \code{mpg}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} @@ -17207,7 +17420,7 @@ \subsection{Plot construction} As elsewhere in \Rlang, when a value is expected, either a value stored in a variable or a more complex statement returning a suitable value can be passed as an argument to be mapped to an \emph{aesthetic}. In other words, the values to be plotted do not need to be stored as variables (or columns) in the data frame passed as an argument to parameter \code{data}, they can also be computed from these variables. Here we plot miles-per-gallon, \code{mpg} on the engine displacement per cylinder by dividing \code{disp} by \code{cyl} within the call to \code{aes()}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp} \hlopt{/} \hlstd{cyl,} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} \hlkwd{geom_point}\hlstd{()} @@ -17234,7 +17447,7 @@ \subsection{Plots as \Rlang objects}\label{sec:plot:objects} We can manipulate \code{"gg"} plot objects and their components in the same way as other \Rlang objects. We can operate on them using the operators and methods defined for the \code{"gg"} class they belong to. We start by saving a ggplot into a variable. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{p} \hlkwb{<-} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} @@ -17246,7 +17459,7 @@ \subsection{Plots as \Rlang objects}\label{sec:plot:objects} When we used in the previous section operator \code{+} to assemble the plots, we were operating on ``anonymous'' \Rlang objects. In the same way, we can operate on saved or ``named'' objects. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{p} \hlopt{+} \hlkwd{stat_smooth}\hlstd{(}\hlkwc{geom} \hlstd{=} \hlstr{"line"}\hlstd{,} \hlkwc{method} \hlstd{=} \hlstr{"lm"}\hlstd{,} \hlkwc{formula} \hlstd{= y} \hlopt{~} \hlstd{x)} @@ -17268,7 +17481,7 @@ \subsection{Plots as \Rlang objects}\label{sec:plot:objects} In the examples above we have been adding elements one by one, using the \code{+} operator. It is also possible to add multiple components in a single operation using a list. This is useful, when we want to save sets of components in a variable so as to reuse them in multiple plots. This saves typing, ensures consistency and can make alterations to a set of similar plots much easier. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my.layer} \hlkwb{<-} \hlkwd{list}\hlstd{(} \hlkwd{stat_smooth}\hlstd{(}\hlkwc{geom} \hlstd{=} \hlstr{"line"}\hlstd{,} \hlkwc{method} \hlstd{=} \hlstr{"lm"}\hlstd{,} \hlkwc{formula} \hlstd{= y} \hlopt{~} \hlstd{x),} @@ -17278,7 +17491,7 @@ \subsection{Plots as \Rlang objects}\label{sec:plot:objects} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{p} \hlopt{+} \hlstd{my.layer} \end{alltt} @@ -17303,7 +17516,7 @@ \subsection{Plots as \Rlang objects}\label{sec:plot:objects} As an example we show the top level members of a \code{"gg"} plot object for a simple plot. Method \code{summary()} shows the components without making explicit the structure of the object. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{summary}\hlstd{(p)} \end{alltt} @@ -17337,7 +17550,7 @@ \subsection{Plots as \Rlang objects}\label{sec:plot:objects} Method \code{str()} shows the structure of objects and can be also used to advantage with ggplots. Alternatively we can use \code{names()} for a list of the names of members. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{names}\hlstd{(p)} \end{alltt} @@ -17353,7 +17566,7 @@ \subsection{Plots as \Rlang objects}\label{sec:plot:objects} Explore in more detail the different members of object \code{p}. For example for the \code{"layers"} member of object \code{p} one can use. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{str}\hlstd{(p}\hlopt{$}\hlstd{layers,} \hlkwc{max.level} \hlstd{=} \hlnum{1}\hlstd{)} \end{alltt} @@ -17373,7 +17586,7 @@ \subsection{Mappings in detail}\label{sec:plot:mappings} In the case of simple plots, based on data contained in a single data frame, the usual style is to code a plot as described above, passing an argument, \code{mtcars} in these examples, to the \code{data} parameter of \Rfunction{ggplot()}. Data passed in this way becomes the default for all layers in the plot. The same applies to the argument passed to \code{mapping}.\qRfunction{aes()} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwc{mapping} \hlstd{=} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} @@ -17385,7 +17598,7 @@ \subsection{Mappings in detail}\label{sec:plot:mappings} However, the grammar of graphics contemplates the possibility of data and mappings restricted to individual layers, passed to statistics or geometries through their \code{mapping} formal parameter. In this case, those mappings set in the call to \Rfunction{ggplot()}, if present, are overridden by arguments passed to individual layers, making it possible to code the same plot as follows. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{()} \hlopt{+} \hlkwd{geom_point}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} @@ -17399,7 +17612,7 @@ \subsection{Mappings in detail}\label{sec:plot:mappings} The default mapping can also be added directly with the \code{+} operator, instead of being passed as an argument to \Rfunction{ggplot()}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars)} \hlopt{+} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg)} \hlopt{+} @@ -17411,7 +17624,7 @@ \subsection{Mappings in detail}\label{sec:plot:mappings} It is also possible to have a default mapping for the whole plot, but no default data. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{()} \hlopt{+} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg)} \hlopt{+} @@ -17423,7 +17636,7 @@ \subsection{Mappings in detail}\label{sec:plot:mappings} We can save the mapping to a variable and add the variable instead of the call to \code{aes()} in each of the examples above, of which we show only the first one. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my.mapping} \hlkwb{<-} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg)} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} @@ -17439,7 +17652,7 @@ \subsection{Mappings in detail}\label{sec:plot:mappings} The argument passed to parameter \code{data} of a layer function, can be a function instead of a data frame if the plot contains default data. In this case, the function is applied to the default data and must return a data frame containing data to be used in the layer. Here I use an anonymous function defined in-line, but a function can also be passed as argument by name. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwc{mapping} \hlstd{=} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} @@ -17452,7 +17665,7 @@ \subsection{Mappings in detail}\label{sec:plot:mappings} The plot's default data can also be operated upon using the \pkgname{magrittr} pipe operator, but not the pipe operator native to \Rlang (\Roperator{\textbar >}) or the dot-pipe operator from \pkgname{wrapr} (see section \ref{sec:data:pipes} on page \pageref{sec:data:pipes}). Using a function as above is simpler and clearer. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwc{mapping} \hlstd{=} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} @@ -17477,7 +17690,7 @@ \subsection{Mappings in detail}\label{sec:plot:mappings} The documentation of \pkgname{ggplot2} gives several good examples of cases when the new syntax is useful. I give here a different example. We fit a polynomial using \Rfunction{rlm()}. RLM is a procedure that automatically assigns before computing the residual sums of squares, weights to the individual residuals in an attempt to protect the estimated fit from the influence of extreme observations or outliers. When using this and similar methods it is of interest to plot the residuals together with the weights. A frequent approach is to map weights to a gradient between two colours. We start by generating some artificial data containing outliers. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlcom{# we use capital letters X and Y as variable names to distinguish} \hlcom{# them from the x and y aesthetics} @@ -17494,7 +17707,7 @@ \subsection{Mappings in detail}\label{sec:plot:mappings} As it will be used in multiple examples, we give a name to the model formula. We do this just for convenience but also to ensure consistency in the model fits. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my.formula} \hlkwb{<-} \hlstd{y} \hlopt{~} \hlkwd{poly}\hlstd{(x,} \hlnum{3}\hlstd{,} \hlkwc{raw} \hlstd{=} \hlnum{TRUE}\hlstd{)} \end{alltt} @@ -17504,7 +17717,7 @@ \subsection{Mappings in detail}\label{sec:plot:mappings} For the first plot it is enough to use \ggscale{after\_stat()} to map a variable \code{weights} computed by the statistic to the \code{colour} aesthetic. In the case of \ggstat{stat\_fit\_residuals()}, \gggeom{geom\_point()} is used by default. This figure shows the residuals before weights are applied, with the computed weights (with range 0 to 1) encoded by colours ranging between red and blue. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(my.data.outlier,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= X,} \hlkwc{y} \hlstd{= Y))} \hlopt{+} \hlkwd{stat_fit_residuals}\hlstd{(}\hlkwc{formula} \hlstd{= my.formula,} \hlkwc{method} \hlstd{=} \hlstr{"rlm"}\hlstd{,} @@ -17525,7 +17738,7 @@ \subsection{Mappings in detail}\label{sec:plot:mappings} In the second plot we plot the weighted residuals, again with colour for weights. In this case we need to use \ggscale{stage()} to be able to distinguish the mapping ahead of the statistic (\code{start}) from that after the statistic, i.e., ahead of the geometry. We use as above, the default geometry, \gggeom{geom\_point()}. The mapping in this example can be read as: the variable \code{X} from the data frame \code{my.data.outlier} is mapped to the \textit{x} aesthetic at all stages. Variable \code{Y} from the data frame \code{my.data.outlier} is mapped to the \textit{y} aesthetic ahead of the computations in \ggstat{stat\_fit\_residuals()}. After the computations, variables \code{y} and \code{weights} in the data frame returned by \ggstat{stat\_fit\_residuals()} are multiplied and mapped to the \textit{y} ahead of \gggeom{geom\_point()}.\label{chunk:plot:weighted:resid} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(my.data.outlier)} \hlopt{+} \hlkwd{stat_fit_residuals}\hlstd{(}\hlkwc{formula} \hlstd{= my.formula,} @@ -17568,7 +17781,7 @@ \subsection{Point}\label{sec:plot:geom:point} Some scales, like those for \code{color}, exist in two ``flavors,'' one suitable for numeric variables (continuous) and another for factors (discrete). \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} \hlkwc{color} \hlstd{= cyl))} \hlopt{+} @@ -17586,7 +17799,7 @@ \subsection{Point}\label{sec:plot:geom:point} If we convert \code{cyl} into a factor, a discrete color scale is used instead of a continuous one. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} \hlkwc{color} \hlstd{=} \hlkwd{factor}\hlstd{(cyl)))} \hlopt{+} @@ -17598,7 +17811,7 @@ \subsection{Point}\label{sec:plot:geom:point} If we convert \code{cyl} into an ordered factor, a different discrete color scale is used by default. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} \hlkwc{color} \hlstd{=} \hlkwd{ordered}\hlstd{(cyl)))} \hlopt{+} @@ -17614,7 +17827,7 @@ \subsection{Point}\label{sec:plot:geom:point} The mapping between data values and aesthetic values is controlled by scales. Different color scales, and even palettes within a given scale, provide different mappings between data values and rendered colours. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} \hlkwc{color} \hlstd{=} \hlkwd{factor}\hlstd{(cyl)))} \hlopt{+} @@ -17630,7 +17843,7 @@ \subsection{Point}\label{sec:plot:geom:point} Try the different palettes available through the brewer scale. You can play directly with the palettes using function \code{brewer\_pal()} from package \pkgname{scales} together with \code{show\_col()}). \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{show_col}\hlstd{(}\hlkwd{brewer_pal}\hlstd{()(}\hlnum{3}\hlstd{))} \hlkwd{show_col}\hlstd{(}\hlkwd{brewer_pal}\hlstd{(}\hlkwc{type} \hlstd{=} \hlstr{"qual"}\hlstd{,} \hlkwc{palette} \hlstd{=} \hlnum{2}\hlstd{,} \hlkwc{direction} \hlstd{=} \hlnum{1}\hlstd{)(}\hlnum{3}\hlstd{))} @@ -17643,7 +17856,7 @@ \subsection{Point}\label{sec:plot:geom:point} When not relying on colors, the most common way of distinguishing groups of observations in scatter plots is to use the \code{shape} of the points as an \emph{aesthetic}. We need to change a single ``word'' in the code statement to achieve this different mapping. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} \hlkwc{shape} \hlstd{=} \hlkwd{factor}\hlstd{(cyl)))} \hlopt{+} \hlkwd{geom_point}\hlstd{()} @@ -17654,7 +17867,7 @@ \subsection{Point}\label{sec:plot:geom:point} We can use \code{scale\_shape\_manual} to choose each shape to be used. We set three ``open'' shapes that we will see later are very useful as they obey both \code{color} and \code{fill} \emph{aesthetics}.\label{chunk:filled:symbols} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} \hlkwc{shape} \hlstd{=} \hlkwd{factor}\hlstd{(cyl)))} \hlopt{+} \hlkwd{geom_point}\hlstd{()} \hlopt{+} @@ -17666,7 +17879,7 @@ \subsection{Point}\label{sec:plot:geom:point} It is also possible to use characters as shapes. The character is centered on the position of the observation. As the numbers used as symbols are self-explanatory, we suppress the default guide or key.\label{chunk:plot:point:char} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} \hlkwc{shape} \hlstd{=} \hlkwd{factor}\hlstd{(cyl)))} \hlopt{+} \hlkwd{geom_point}\hlstd{(}\hlkwc{size} \hlstd{=} \hlnum{2.5}\hlstd{)} \hlopt{+} @@ -17685,7 +17898,7 @@ \subsection{Point}\label{sec:plot:geom:point} One variable in the data can be mapped to more than one aesthetic, allowing redundant aesthetics. This may seem wasteful, but it is extremely useful as it allows one to produce figures that, even when produced in color, can still be read if reproduced as black-and-white images. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} \hlkwc{shape} \hlstd{=} \hlkwd{factor}\hlstd{(cyl),} @@ -17700,7 +17913,7 @@ \subsection{Point}\label{sec:plot:geom:point} \index{plots!dot plot|(}Dot plots are similar to scatter plots but a factor is mapped to either the \code{x} or \code{y} \emph{aesthetic}. Dot plots are prone to have overlapping observations, and one way of making these points visible is to make them partly transparent by setting a constant value smaller than one for the \code{alpha} \emph{aesthetic}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{=} \hlkwd{factor}\hlstd{(cyl),} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} \hlkwd{geom_point}\hlstd{(}\hlkwc{alpha} \hlstd{=} \hlnum{1}\hlopt{/}\hlnum{3}\hlstd{)} @@ -17717,7 +17930,7 @@ \subsection{Point}\label{sec:plot:geom:point} Function \ggposition{position\_identity()}, which is the default for \gggeom{geom\_point()}, does not alter the coordinates or position of observations, as shown in all examples above. To make overlapping observations visible, instead of making the points semitransparent as above, we can randomly displace them. This is called \emph{jitter}, and can be added using \ggposition{position\_jitter()} as argument to formal parameter \code{position}. The amount of jitter is set by nemeric arguments passed to \code{width} and/or \code{height}, given as a fraction of the distance between adjacent factor levels in the plot. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{=} \hlkwd{factor}\hlstd{(cyl),} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} \hlkwd{geom_point}\hlstd{(}\hlkwc{position} \hlstd{=} \hlkwd{position_jitter}\hlstd{(}\hlkwc{width} \hlstd{=} \hlnum{0.25}\hlstd{,} \hlkwc{heigh} \hlstd{=} \hlnum{0.5}\hlstd{))} @@ -17735,7 +17948,7 @@ \subsection{Point}\label{sec:plot:geom:point} The name as a character string can be also used when no arguments need to be passed to the \emph{position} function, and for some positions by passing numerical arguments to specific parameters of geometries. However, the default width of $\pm0.5$ tends to be rarely optimal. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{=} \hlkwd{factor}\hlstd{(cyl),} \hlkwc{y} \hlstd{= mpg),} \hlkwc{colour} \hlstd{=} \hlkwd{factor}\hlstd{(cyl))} \hlopt{+} \hlkwd{geom_point}\hlstd{(}\hlkwc{position} \hlstd{=} \hlstr{"jitter"}\hlstd{)} @@ -17756,7 +17969,7 @@ \subsection{Point}\label{sec:plot:geom:point} Layer function \gggeom{geom\_point\_s()} from package \pkgname{ggpp} is used below to make the displacement visible by drawing an arrow connecting original and displaced positions for each observation. We need to use the \code{\_keep} flavor of the position functions for arrows to be drawn. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{=} \hlkwd{factor}\hlstd{(cyl),} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} \hlkwd{geom_point}\hlstd{(}\hlkwc{colour} \hlstd{=} \hlstr{"blue"}\hlstd{)} \hlopt{+} @@ -17775,7 +17988,7 @@ \subsection{Point}\label{sec:plot:geom:point} The amount of nudging is set by a distance expressed in data units through parameters \code{x} and \code{y}. (Factors have mode \code{numeric} and each level is represented by an integer, thus distance between levels of a factor is 1.) \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{=} \hlkwd{factor}\hlstd{(cyl),} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} \hlkwd{geom_point}\hlstd{(}\hlkwc{colour} \hlstd{=} \hlstr{"blue"}\hlstd{)} \hlopt{+} @@ -17796,7 +18009,7 @@ \subsection{Point}\label{sec:plot:geom:point} \index{plots!bubble plot|(}We can create a ``bubble'' plot by mapping the \code{size} \emph{aesthetic} to a continuous variable. In this case, one has to think what is visually more meaningful. Although the radius of the shape is frequently mapped, due to how human perception works, mapping a variable to the area of the shape is more useful by being perceptually closer to a linear mapping. For this example we add a new variable to the plot. The weight of the car in tons and map it to the area of the points. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} \hlkwc{color} \hlstd{=} \hlkwd{factor}\hlstd{(cyl),} @@ -17817,7 +18030,7 @@ \subsection{Point}\label{sec:plot:geom:point} If we use a radius-based scale the ``impression'' is different. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} \hlkwc{color} \hlstd{=} \hlkwd{factor}\hlstd{(cyl),} @@ -17836,7 +18049,7 @@ \subsection{Point}\label{sec:plot:geom:point} As a final example summarizing the use of \gggeom{geom\_point()}, we combine different \emph{aesthetics} and \emph{scales} in the same scatter plot. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} \hlkwc{shape} \hlstd{=} \hlkwd{factor}\hlstd{(cyl),} @@ -17869,7 +18082,7 @@ \subsection{Rug}\label{sec:plot:rug} along the $x$- and $y$-axes. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} \hlkwc{color} \hlstd{=} \hlkwd{factor}\hlstd{(cyl)))} \hlopt{+} @@ -17897,7 +18110,7 @@ \subsection{Line and area}\label{sec:plot:line} \label{plot:fig:lines} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= Orange,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= age,} \hlkwc{y} \hlstd{= circumference,} \hlkwc{linetype} \hlstd{= Tree))} \hlopt{+} @@ -17917,7 +18130,7 @@ \subsection{Line and area}\label{sec:plot:line} Instead of drawing a line joining the successive observations, we may want to draw a disconnected straight-line segment for each observation or row in the data. In this case, we use \gggeom{geom\_segment()} which accepts \code{x}, \code{xend}, \code{y} and \code{yend} as mapped aesthetics. \gggeom{geom\_curve()} draws curved lines, and the curvature, control points, and angles can be controlled through additional \emph{aesthetics}. These two \emph{geometries} support arrow heads at their ends. Other \emph{geometries} useful for drawing lines or segments are \gggeom{geom\_path()}, which is similar to \gggeom{geom\_line()}, but instead of joining observations according to the values mapped to \code{x}, it joins them according to their row-order in \code{data}, and \gggeom{geom\_spoke()}, which is similar to \gggeom{geom\_segment()} but using a polar parametrization, based on \code{x}, \code{y} for origin, and \code{angle} and \code{radius} for the segment. Finally, \gggeom{geom\_step()} plots only vertical and horizontal lines to join the observations, creating a stepped line. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= Orange,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= age,} \hlkwc{y} \hlstd{= circumference,} \hlkwc{linetype} \hlstd{= Tree))} \hlopt{+} @@ -17937,7 +18150,7 @@ \subsection{Line and area}\label{sec:plot:line} Using the following toy data, make three plots using \code{geom\_line()}, \code{geom\_path()}, and \code{geom\_step} to add a layer. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{toy.df} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(}\hlkwc{x} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{1}\hlstd{,}\hlnum{3}\hlstd{,}\hlnum{2}\hlstd{,}\hlnum{4}\hlstd{),} \hlkwc{y} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{0}\hlstd{,}\hlnum{1}\hlstd{,}\hlnum{0}\hlstd{,}\hlnum{1}\hlstd{))} \end{alltt} @@ -17951,7 +18164,7 @@ \subsection{Line and area}\label{sec:plot:line} Much of what was described above for \gggeom{geom\_point()} can be adapted to \gggeom{geom\_line()}, \gggeom{geom\_ribbon()}, \gggeom{geom\_area()} and other \emph{geometries} described in this section. In some cases, it is useful to stack the areas---e.g., when the values represent parts of a bigger whole. In the next, contrived, example, we stack the growth of the different trees by using \code{position = "stack"} instead of the default \code{position = "identity"}. (Compare the $y$ axis of the figure below to that drawn using \code{geom\_line()} on page \pageref{plot:fig:lines}.) \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= Orange,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= age,} \hlkwc{y} \hlstd{= circumference,} \hlkwc{fill} \hlstd{= Tree))} \hlopt{+} @@ -17973,7 +18186,7 @@ \subsection{Line and area}\label{sec:plot:line} \gggeom{geom\_hline()} and \gggeom{geom\_vline()} require a single aesthetic, \code{yintercept} and \code{xintercept}, respectively. Different from other geoms, the data for these aesthetics can also be passed as constant numeric vectors. The reason for this is that these geoms are most frequently used to annotate plots rather than plotting observations. Let's assume that we want to highlight an event at the age of 1000 days. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= Orange,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= age,} \hlkwc{y} \hlstd{= circumference,} \hlkwc{fill} \hlstd{= Tree))} \hlopt{+} @@ -18009,7 +18222,7 @@ \subsection{Column}\label{sec:plot:col} We create artificial data that we will reuse in multiple variations of the next figure. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{set.seed}\hlstd{(}\hlnum{654321}\hlstd{)} \hlstd{my.col.data} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(}\hlkwc{treatment} \hlstd{=} \hlkwd{factor}\hlstd{(}\hlkwd{rep}\hlstd{(}\hlkwd{c}\hlstd{(}\hlstr{"A"}\hlstd{,} \hlstr{"B"}\hlstd{,} \hlstr{"C"}\hlstd{),} \hlnum{2}\hlstd{)),} @@ -18022,7 +18235,7 @@ \subsection{Column}\label{sec:plot:col} First we plot data for females only, using defaults for all \emph{aesthetics} except $x$ and $y$ which we explicitly map to variables. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwd{subset}\hlstd{(my.col.data, group} \hlopt{==} \hlstr{"female"}\hlstd{),} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= treatment,} \hlkwc{y} \hlstd{= measurement))} \hlopt{+} @@ -18040,7 +18253,7 @@ \subsection{Column}\label{sec:plot:col} We play with \emph{aesthetics} to produce a plot with a semi-formal style---e.g., suitable for a science popularization article or book. See section \ref{sec:plot:scales} and section \ref{sec:plot:themes} for information on scales and themes, respectively. We set \code{width = 0.5} to make the bars narrower. Setting \code{color = "white"} overrides the default color of the lines bordering the bars. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(my.col.data,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= treatment,} \hlkwc{y} \hlstd{= measurement,} \hlkwc{fill} \hlstd{= group))} \hlopt{+} \hlkwd{geom_col}\hlstd{(}\hlkwc{color} \hlstd{=} \hlstr{"white"}\hlstd{,} \hlkwc{width} \hlstd{=} \hlnum{0.5}\hlstd{)} \hlopt{+} @@ -18058,7 +18271,7 @@ \subsection{Column}\label{sec:plot:col} We next use a formal style, and in addition, put the bars side by side by setting \code{position = "dodge"} to override the default \code{position = "stack"}. Setting \code{color = NA} removes the lines bordering the bars. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(my.col.data,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= treatment,} \hlkwc{y} \hlstd{= measurement,} \hlkwc{fill} \hlstd{= group))} \hlopt{+} \hlkwd{geom_col}\hlstd{(}\hlkwc{color} \hlstd{=} \hlnum{NA}\hlstd{,} \hlkwc{position} \hlstd{=} \hlstr{"dodge"}\hlstd{)} \hlopt{+} @@ -18092,7 +18305,7 @@ \subsection{Tiles}\label{sec:tileplot} We here generate 100 random draws from the $F$ distribution with degrees of freedom $\nu_1 = 5, \nu_2 = 20$. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{set.seed}\hlstd{(}\hlnum{1234}\hlstd{)} \hlstd{randomf.df} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(}\hlkwc{F.value} \hlstd{=} \hlkwd{rf}\hlstd{(}\hlnum{100}\hlstd{,} \hlkwc{df1} \hlstd{=} \hlnum{5}\hlstd{,} \hlkwc{df2} \hlstd{=} \hlnum{20}\hlstd{),} @@ -18105,7 +18318,7 @@ \subsection{Tiles}\label{sec:tileplot} \gggeom{geom\_tile()} requires aesthetics $x$ and $y$, with no defaults, and \code{width} and \code{height} with defaults that make all tiles of equal size filling the plotting area. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(randomf.df,} \hlkwd{aes}\hlstd{(x, y,} \hlkwc{fill} \hlstd{= F.value))} \hlopt{+} \hlkwd{geom_tile}\hlstd{()} @@ -18122,7 +18335,7 @@ \subsection{Tiles}\label{sec:tileplot} We can set \code{color = "gray75"} and \code{linewidth = 1.33} to make the tile borders more visible as in the example below, or use a contrasting color, to better delineate the borders of the tiles. What to use will depend on whether the individual tiles add meaningful information. In cases like when rows of tiles correspond to individual genes and columns to discrete treatments, the use of contrasting tile borders is preferable. In contrast, in the case when the tiles are an approximation to a continuous surface such as measurements on a regular spatial grid, it is best to suppress the tile borders. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(randomf.df,} \hlkwd{aes}\hlstd{(x, y,} \hlkwc{fill} \hlstd{= F.value))} \hlopt{+} \hlkwd{geom_tile}\hlstd{(}\hlkwc{color} \hlstd{=} \hlstr{"gray75"}\hlstd{,} \hlkwc{linewidth} \hlstd{=} \hlnum{1.33}\hlstd{)} @@ -18143,7 +18356,7 @@ \subsection{Tiles}\label{sec:tileplot} Any continuous fill scale can be used to control the appearance. Here we show a tile plot using a gray gradient, with missing values in red. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}(randomf.df, \hlkwd{aes}(x, y, fill = F.value) + \hlkwd{geom_tile}(color = \hlstr{"white"}) + @@ -18164,7 +18377,7 @@ \subsection{Simple features (sf)}\label{sec:plot:sf} \ggplot version 3.0.0 or later supports the plotting of shape data similar to the plotting in geographic information systems (GIS) through \gggeom{geom\_sf()} and its companions, \gggeom{geom\_sf\_text()}, \gggeom{geom\_sf\_label()}, and \ggstat{stat\_sf()}. This makes it possible to display data on maps, for example, using different fill values for different regions. Special \emph{coordinate} \code{coord\_sf()} can be used to select different projections for maps. The \emph{aesthetic} used is called \code{geometry} and contrary to all the other aesthetics we have seen until now, the values to be mapped are of class \code{sfc} containing \emph{simple features} data with multiple components. Manipulation of simple features data is supported by package \pkgname{sf}. This subject exceeds the scope of this book, so a single and very simple example follows. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{nc} \hlkwb{<-} \hlstd{sf}\hlopt{::}\hlkwd{st_read}\hlstd{(}\hlkwd{system.file}\hlstd{(}\hlstr{"shape/nc.shp"}\hlstd{,} \hlkwc{package} \hlstd{=} \hlstr{"sf"}\hlstd{),} \hlkwc{quiet} \hlstd{=} \hlnum{TRUE}\hlstd{)} \hlkwd{ggplot}\hlstd{(nc)} \hlopt{+} @@ -18188,7 +18401,7 @@ \subsection{Text}\label{sec:plot:text} We can use \gggeom{geom\_text()} or \gggeom{geom\_label()} to add text labels to observations. For \gggeom{geom\_text()} and \gggeom{geom\_label()}, the aesthetic \code{label} provides the text to be plotted and the usual aesthetics \code{x} and \code{y}, the location of the labels. As one would expect, the \code{color} and \code{size} aesthetics can also be used for the text. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} \hlkwc{color} \hlstd{=} \hlkwd{factor}\hlstd{(cyl),} @@ -18218,7 +18431,7 @@ \subsection{Text}\label{sec:plot:text} In the remaining examples, with output not shown, we use \gggeom{geom\_text()} or \gggeom{geom\_label()} together with \gggeom{geom\_point()} as this is how they may be used to label observations. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my.data} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{,} @@ -18239,7 +18452,7 @@ \subsection{Text}\label{sec:plot:text} In the next example we select a different font family, using the same characters in the Roman alphabet. The names \code{"sans"} (the default), \code{"serif"} and \code{"mono"} are recognized by all graphics devices on all operating systems. Additional fonts are available for specific graphic devices, such as the 35 ``PDF'' fonts by the \code{pdf()} device. In this case, their names can be queried with \code{names(pdfFonts())}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(x, y,} \hlkwc{label} \hlstd{= label))} \hlopt{+} \hlkwd{geom_text}\hlstd{(}\hlkwc{angle} \hlstd{=} \hlnum{45}\hlstd{,} \hlkwc{hjust} \hlstd{=} \hlnum{1.5}\hlstd{,} \hlkwc{size} \hlstd{=} \hlnum{8}\hlstd{,} \hlkwc{family} \hlstd{=} \hlstr{"serif"}\hlstd{)} \hlopt{+} @@ -18255,7 +18468,7 @@ \subsection{Text}\label{sec:plot:text} Plotting (mathematical) expressions involves mapping to the \code{label} aesthetic character strings that can be parsed as expressions, and setting \code{parse = TRUE} (see section \ref{sec:plot:plotmath} on page \pageref{sec:plot:plotmath}). Here, we build the character strings using \Rfunction{paste()} but, of course, they could also have been entered one by one. This use of \Rfunction{paste()} provides an example of recycling of shorter vectors (see section \ref{sec:vectors} on page \pageref{sec:vectors}). \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my.data} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{,} \hlkwc{y} \hlstd{=} \hlkwd{rep}\hlstd{(}\hlnum{2}\hlstd{,} \hlnum{5}\hlstd{),} \hlkwc{label} \hlstd{=} \hlkwd{paste}\hlstd{(}\hlstr{"alpha["}\hlstd{,} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{,} \hlstr{"]"}\hlstd{,} \hlkwc{sep} \hlstd{=} \hlstr{""}\hlstd{))} @@ -18270,7 +18483,7 @@ \subsection{Text}\label{sec:plot:text} Text and labels do not automatically expand the plotting area past their anchoring coordinates. In the example above, we need to use \code{expand\_limits()} to ensure that the text is not clipped at the edge of the plotting area. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(x, y,} \hlkwc{label} \hlstd{= label))} \hlopt{+} \hlkwd{geom_text}\hlstd{(}\hlkwc{hjust} \hlstd{=} \hlopt{-}\hlnum{0.2}\hlstd{,} \hlkwc{parse} \hlstd{=} \hlnum{TRUE}\hlstd{,} \hlkwc{size} \hlstd{=} \hlnum{6}\hlstd{)} \hlopt{+} @@ -18289,7 +18502,7 @@ \subsection{Text}\label{sec:plot:text} In the example above, we mapped to label the text to be parsed. It is also possible, and usually preferable, to build suitable labels on the fly within \code{aes()} when setting the mapping for \code{label}. Here we use \gggeom{geom\_text()} with strings to be parsed into expressions created on the fly within the call to \Rfunction{aes()}. The same approach can be used for regular character strings not requiring parsing. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(x, y,} \hlkwc{label} \hlstd{=} \hlkwd{paste}\hlstd{(}\hlstr{"alpha["}\hlstd{, x,} \hlstr{"]"}\hlstd{,} \hlkwc{sep} \hlstd{=} \hlstr{""}\hlstd{)))} \hlopt{+} \hlkwd{geom_text}\hlstd{(}\hlkwc{hjust} \hlstd{=} \hlopt{-}\hlnum{0.2}\hlstd{,} \hlkwc{parse} \hlstd{=} \hlnum{TRUE}\hlstd{,} \hlkwc{size} \hlstd{=} \hlnum{6}\hlstd{)} \hlopt{+} @@ -18302,7 +18515,7 @@ \subsection{Text}\label{sec:plot:text} \label{start:plot:label} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my.data} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{,} \hlkwc{y} \hlstd{=} \hlkwd{rep}\hlstd{(}\hlnum{2}\hlstd{,} \hlnum{5}\hlstd{),} @@ -18333,7 +18546,7 @@ \subsection{Text}\label{sec:plot:text} If\index{grammar of graphics!text and label geometries!repulsive} the parameter \code{check\_overlap} of \gggeom{geom\_text()} is set to \code{TRUE}, text overlap will be avoided by suppressing the text that would otherwise overlap other text. \emph{Repulsive} versions of \gggeom{geom\_text()} and \gggeom{geom\_label()}, \gggeom{geom\_text\_repel()} and \gggeom{geom\_label\_repel()}, are available in package \pkgname{ggrepel}. These \emph{geometries} avoid overlaps by automatically repositioning the text or labels. Please read the package documentation for details of how to control the repulsion strength and direction, and the properties of the segments linking the labels to the position of their data coordinates. Nearly all aesthetics supported by \code{geom\_text()} and \code{geom\_label()} are supported by the repulsive versions. However, given that a segment connects the label or text to its anchor point, several properties of these segments can also be controlled with aesthetics or arguments. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} \hlkwc{color} \hlstd{=} \hlkwd{factor}\hlstd{(cyl),} \hlkwc{size} \hlstd{= wt,} \hlkwc{label} \hlstd{= cyl))} \hlopt{+} @@ -18370,7 +18583,7 @@ \subsection{Plot insets}\label{sec:plot:insets} We first generate a \code{tibble} containing summaries from the data, formatted as character strings, wrap this tibble in a list, and store this list as a column in another \code{tibble}. To accomplish this, we use functions from the \pkgname{tidyverse} described in chapter \ref{chap:R:data}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{mtcars} \hlopt{%.>%} \hlkwd{group_by}\hlstd{(., cyl)} \hlopt{%.>%} @@ -18384,7 +18597,7 @@ \subsection{Plot insets}\label{sec:plot:insets} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} \hlkwc{color} \hlstd{=} \hlkwd{factor}\hlstd{(cyl),} @@ -18409,7 +18622,7 @@ \subsection{Plot insets}\label{sec:plot:insets} It is also possible to rotate the table(s) using \code{angle}. As with text labels, justification is interpreted in relation to table-text orientation. We set the \code{y = 0} in \code{data.tb} and then use \code{vjust = 1} to position the top of the table at this coordinate value. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} \hlkwc{color} \hlstd{=} \hlkwd{factor}\hlstd{(cyl)))} \hlopt{+} \hlkwd{geom_point}\hlstd{()} \hlopt{+} @@ -18424,7 +18637,7 @@ \subsection{Plot insets}\label{sec:plot:insets} Parsed text, using R's \emph{plotmath} syntax is supported in the table, with fallback to plain text in case of parsing errors, on a cell-by-cell basis. We end this section with a simple example, which even if not very useful, demonstrates that \gggeom{geom\_table()} behaves like a ``normal'' ggplot \emph{geometry} and that a table can be the only layer in a ggplot if desired. The addition of multiple tables with a single call to \gggeom{geom\_table()} by passing a \code{tibble} with multiple rows as an argument for \code{data} is also possible. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{tb.pm} \hlkwb{<-} \hlkwd{tibble}\hlstd{(}\hlstr{'x^0'} \hlstd{=} \hlnum{1}\hlstd{,} \hlstr{'x^1'} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{,} @@ -18449,7 +18662,7 @@ \subsection{Plot insets}\label{sec:plot:insets} In the first example of inset plots, we include one of the summaries shown above as an inset table. We first create a tibble containing the plot to be inset. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{mtcars} \hlopt{%.>%} \hlkwd{group_by}\hlstd{(., cyl)} \hlopt{%.>%} @@ -18466,7 +18679,7 @@ \subsection{Plot insets}\label{sec:plot:insets} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} \hlkwc{color} \hlstd{=} \hlkwd{factor}\hlstd{(cyl)))} \hlopt{+} @@ -18488,7 +18701,7 @@ \subsection{Plot insets}\label{sec:plot:insets} In the second example we add the zoomed version of the same plot as an inset. 1) Manually set limits to the coordinates to zoom into a region of the main plot, 2) set the \emph{theme} of the inset, 3) remove axis labels as they are the same as in the main plot, 4) and 5) highlight the zoomed-in region in the main plot. This fairly complex example shows how a new extension to \pkgname{ggplot2} can integrate well into the grammar of graphics paradigm. In this example, to show an alternative approach, instead of collecting all the data into a data frame, we map constant values directly to the various aesthetics within \Rfunction{annotate()} (see section \ref{sec:plot:annotations} on page \pageref{sec:plot:annotations}). \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{p.main} \hlkwb{<-} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} \hlkwc{color} \hlstd{=} \hlkwd{factor}\hlstd{(cyl)))} \hlopt{+} \hlkwd{geom_point}\hlstd{()} @@ -18517,7 +18730,7 @@ \subsection{Plot insets}\label{sec:plot:insets} Geometry \gggeom{geom\_grob()} works much like \code{geom\_table()} and \code{geom\_plot()} but expects a list of \pkgname{grid} graphical objects, called \code{grob} for short. This adds generality at the expense of having to separately create the grobs either using \pkgname{grid} or by converting other objects into grobs. This geometry is as flexible as \gggeom{annotation\_custom()} with respect to the grobs, but behaves as a \emph{geometry}. We show an example that adds two bitmaps to the plot. The bitmaps are read from PNG files, converted into grobs, and added to the plot as a new layer. The PNG bitmaps used have a transparent background. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{file1.name} \hlkwb{<-} \hlkwd{system.file}\hlstd{(}\hlstr{"extdata"}\hlstd{,} \hlstr{"Isoquercitin.png"}\hlstd{,} \hlkwc{package} \hlstd{=} \hlstr{"ggpmisc"}\hlstd{,} \hlkwc{mustWork} \hlstd{=} \hlnum{TRUE}\hlstd{)} @@ -18550,7 +18763,7 @@ \subsection{Plot insets}\label{sec:plot:insets} Package \pkgname{ggplot2} interprets $x$ and $y$ coordinates in \code{"native"} data coordinates, and trickery seems to be needed to get around this limitation. A rather general solution is provided by package \pkgname{ggpmisc} through \emph{aesthetics} \code{npcx} and \code{npcy} and \emph{geometries} that support them. At the time of writing, \gggeom{geom\_text\_npc()}, \gggeom{geom\_label\_npc()}, \gggeom{geom\_table\_npc()}, \gggeom{geom\_plot\_npc()} and \gggeom{geom\_grob\_npc()}. These \emph{geometries} are useful for annotating plots and adding insets at positions relative to the plotting area that remain always consistent across different plots, or across panels when using facets with free axis limits. Being geometries they provide freedom in the elements added to different panels and their positions. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} \hlkwc{color} \hlstd{=} \hlkwd{factor}\hlstd{(cyl)))} \hlopt{+} \hlkwd{geom_point}\hlstd{()} \hlopt{+} @@ -18584,7 +18797,7 @@ \subsection{Functions}\label{sec:plot:function} We start with the Normal distribution function. We rely on the defaults \code{n = 101} and \code{geom = "path"}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwd{data.frame}\hlstd{(}\hlkwc{x} \hlstd{=} \hlopt{-}\hlnum{3}\hlopt{:}\hlnum{3}\hlstd{),} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= x))} \hlopt{+} \hlkwd{stat_function}\hlstd{(}\hlkwc{fun} \hlstd{= dnorm)} @@ -18601,7 +18814,7 @@ \subsection{Functions}\label{sec:plot:function} Using a list we can even pass by name additional arguments to use when the function is called. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwd{data.frame}\hlstd{(}\hlkwc{x} \hlstd{=} \hlopt{-}\hlnum{3}\hlopt{:}\hlnum{3}\hlstd{),} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= x))} \hlopt{+} \hlkwd{stat_function}\hlstd{(}\hlkwc{fun} \hlstd{= dnorm,} \hlkwc{args} \hlstd{=} \hlkwd{list}\hlstd{(}\hlkwc{mean} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{.5}\hlstd{))} @@ -18616,7 +18829,7 @@ \subsection{Functions}\label{sec:plot:function} Named user-defined functions (not shown), and anonymous functions (below) can also be used. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwd{data.frame}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{0}\hlopt{:}\hlnum{1}\hlstd{),} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= x))} \hlopt{+} \hlkwd{stat_function}\hlstd{(}\hlkwc{fun} \hlstd{=} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{,} \hlkwc{a}\hlstd{,} \hlkwc{b}\hlstd{)\{a} \hlopt{+} \hlstd{b} \hlopt{*} \hlstd{x}\hlopt{^}\hlnum{2}\hlstd{\},} @@ -18643,7 +18856,7 @@ \subsection{Summaries}\label{sec:plot:stat:summaries} For use in the examples, we generate some normally distributed artificial data. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{fake.data} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(} \hlkwc{y} \hlstd{=} \hlkwd{c}\hlstd{(}\hlkwd{rnorm}\hlstd{(}\hlnum{10}\hlstd{,} \hlkwc{mean} \hlstd{=} \hlnum{2}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{0.5}\hlstd{),} @@ -18657,7 +18870,7 @@ \subsection{Summaries}\label{sec:plot:stat:summaries} We will reuse a ``base'' scatter plot in a series of examples, so that the differences are easier to appreciate. We first add just the mean. In this case, we need to pass as an argument to \ggstat{stat\_summary()}, the \code{geom} to use, as the default one, \gggeom{geom\_pointrange()}, expects data for plotting error bars in addition to the mean. This example uses a hyphen character as the constant value of \code{shape} (see the example for \code{geom\_point()} on page \pageref{chunk:plot:point:char} on the use of digits as \code{shape}). Instead of passing \code{"mean"} as an argument to parameter \code{fun} (earlier called \code{fun.y}), we can pass, if desired, other summary functions like \code{"median"}. In the case of these functions that return a single computed value, we pass them, or character strings with their names, as an argument to parameter \code{fun}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= fake.data,} \hlkwd{aes}\hlstd{(}\hlkwc{y} \hlstd{= y,} \hlkwc{x} \hlstd{= group))} \hlopt{+} \hlkwd{geom_point}\hlstd{(}\hlkwc{shape} \hlstd{=} \hlnum{21}\hlstd{)} \hlopt{+} @@ -18676,7 +18889,7 @@ \subsection{Summaries}\label{sec:plot:stat:summaries} To pass as an argument a function that returns a central value like the mean plus confidence or other limits, we use parameter \code{fun.data} instead of \code{fun}. In the next example we add means and confidence intervals for $p = 0.95$ (the default) assuming normality. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{stat_summary}\hlstd{(}\hlkwc{fun.data} \hlstd{=} \hlstr{"mean_cl_normal"}\hlstd{,} \hlkwc{color} \hlstd{=} \hlstr{"red"}\hlstd{,} \hlkwc{size} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{alpha} \hlstd{=} \hlnum{0.7}\hlstd{)} \end{alltt} @@ -18686,7 +18899,7 @@ \subsection{Summaries}\label{sec:plot:stat:summaries} We can override the default of $p = 0.95$ for confidence intervals by setting, for example, \code{conf.int = 0.90} in the list of arguments passed to the function. The intervals can also be computed without assuming normality, using the empirical distribution estimated from the data by bootstrap. To achieve this we pass to \code{fun.data} the argument \code{"mean\_cl\_boot"} instead of \code{"mean\_cl\_normal"}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{stat_summary}\hlstd{(}\hlkwc{fun.data} \hlstd{=} \hlstr{"mean_cl_boot"}\hlstd{,} \hlkwc{fun.args} \hlstd{=} \hlkwd{list}\hlstd{(}\hlkwc{conf.int} \hlstd{=} \hlnum{0.90}\hlstd{),} @@ -18698,7 +18911,7 @@ \subsection{Summaries}\label{sec:plot:stat:summaries} For $\bar{x} \pm \mathrm{s.e.}$ we should pass \code{"mean\_se"} and for $\bar{x} \pm \mathrm{s.d.}$ \code{"mean\_sdl"}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{stat_summary}\hlstd{(}\hlkwc{fun.data} \hlstd{=} \hlstr{"mean_se"}\hlstd{,} \hlkwc{color} \hlstd{=} \hlstr{"red"}\hlstd{,} \hlkwc{size} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{alpha} \hlstd{=} \hlnum{0.7}\hlstd{)} @@ -18711,7 +18924,7 @@ \subsection{Summaries}\label{sec:plot:stat:summaries} Finally, we plot the means in a scatter plot, with the observations superimposed on the error bars as a result of the order in which the layers are added to the plot. In this case, we set \code{fill}, \code{color} and \code{alpha} (transparency) to constants, but in more complex data sets, mapping them to factors in \code{data} can be used for grouping of observations. Here, adding two plot layers with \ggstat{stat\_summary()} allows us to plot the mean and the error bars using different colors. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= fake.data,} \hlkwd{aes}\hlstd{(}\hlkwc{y} \hlstd{= y,} \hlkwc{x} \hlstd{= group))} \hlopt{+} \hlkwd{stat_summary}\hlstd{(}\hlkwc{fun} \hlstd{=} \hlstr{"mean"}\hlstd{,} \hlkwc{geom} \hlstd{=} \hlstr{"point"}\hlstd{,} @@ -18727,7 +18940,7 @@ \subsection{Summaries}\label{sec:plot:stat:summaries} We can plot means, or other summaries, by group mapped to \code{x} (\code{class} in this example) as columns by passing \code{"col"} as an argument to \code{geom}. In this way we avoid the need to compute the summaries in advance. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(mpg,} \hlkwd{aes}\hlstd{(class, hwy))} \hlopt{+} \hlkwd{stat_summary}\hlstd{(}\hlkwc{geom} \hlstd{=} \hlstr{"col"}\hlstd{,} \hlkwc{fun} \hlstd{= mean)} @@ -18744,7 +18957,7 @@ \subsection{Summaries}\label{sec:plot:stat:summaries} We can easily add error bars to the column plot. We use \code{size} to make the lines of the error bars thicker. The default \emph{geometry} in \ggstat{stat\_summary()} is \gggeom{geom\_pointrange()}, so we can pass \code{"linerange"} as an argument for \code{geom} to eliminate the point. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{stat_summary}\hlstd{(}\hlkwc{geom} \hlstd{=} \hlstr{"linerange"}\hlstd{,} \hlkwc{fun.data} \hlstd{=} \hlstr{"mean_se"}\hlstd{,} \hlkwc{size} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{color} \hlstd{=} \hlstr{"red"}\hlstd{)} @@ -18760,7 +18973,7 @@ \subsection{Summaries}\label{sec:plot:stat:summaries} The ``reverse'' syntax is also valid, as we can add the \emph{geometry} to the plot object and pass the \emph{statistics} as an argument to it. In general in this book we avoid this alternative syntax for the sake of consistency. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(mpg,} \hlkwd{aes}\hlstd{(class, hwy))} \hlopt{+} \hlkwd{geom_col}\hlstd{(}\hlkwc{stat} \hlstd{=} \hlstr{"summary"}\hlstd{,} \hlkwc{fun} \hlstd{= mean)} @@ -18781,7 +18994,7 @@ \subsection{Smoothers and models}\label{sec:plot:smoothers} The \emph{statistic} \ggstat{stat\_smooth()} fits a smooth curve to observations in the case when the scales for $x$ and $y$ are continuous---the corresponding \emph{geometry} \gggeom{geom\_smooth()} uses this \emph{statistic}, and differs only in how arguments are passed to formal parameters. For the first example, we use \ggstat{stat\_smooth()} with the default smoother, a spline. The type of smoother is automatically chosen based on the number of observations and informed by a message. The \code{formula} must be stated using the names of the $x$ and $y$ aesthetics, rather than the original names of the mapped variables in the \code{mtcars} data frame. Splines are described in section \ref{sec:stat:splines} on page \pageref{sec:stat:splines}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} \hlkwd{stat_smooth}\hlstd{(}\hlkwc{formula} \hlstd{= y} \hlopt{~} \hlstd{x)} @@ -18792,7 +19005,7 @@ \subsection{Smoothers and models}\label{sec:plot:smoothers} In most cases we will want to plot the observations as points together with the smoother. We can plot the observation on top of the smoother, as done here, or the smoother on top of the observations. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} \hlkwd{stat_smooth}\hlstd{(}\hlkwc{formula} \hlstd{= y} \hlopt{~} \hlstd{x)} \hlopt{+} @@ -18812,7 +19025,7 @@ \subsection{Smoothers and models}\label{sec:plot:smoothers} Instead of using the default spline, we can fit a different model. In this example we use a linear model as smoother, fitted by \Rfunction{lm()}. Model fitting is explained in section \ref{sec:stat:LM} on page \pageref{sec:stat:LM}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{stat_smooth}(method = \hlstr{"lm"}, formula = y ~ x) + \end{alltt} @@ -18822,7 +19035,7 @@ \subsection{Smoothers and models}\label{sec:plot:smoothers} These data are really grouped, so we map variable \code{cyl} to the \code{color} \emph{aesthetic}. Now we get three groups of points with different colours but also three separate smooth lines. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} \hlkwc{color} \hlstd{=} \hlkwd{factor}\hlstd{(cyl)))} \hlopt{+} \hlkwd{stat_smooth}\hlstd{(}\hlkwc{method} \hlstd{=} \hlstr{"lm"}\hlstd{,} \hlkwc{formula} \hlstd{= y} \hlopt{~} \hlstd{x)} \hlopt{+} @@ -18840,7 +19053,7 @@ \subsection{Smoothers and models}\label{sec:plot:smoothers} To obtain a single smoother for the three groups, we need to set the mapping of the \code{color} \emph{aesthetic} to a constant within \ggstat{stat\_smooth()}. This local value overrides the default \code{color} mapping set in \code{ggplot()} just for this plot layer. We use \code{"black"} but this could be replaced by any other color definition known to \Rlang. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} \hlkwc{color} \hlstd{=} \hlkwd{factor}\hlstd{(cyl)))} \hlopt{+} \hlkwd{stat_smooth}\hlstd{(}\hlkwc{method} \hlstd{=} \hlstr{"lm"}\hlstd{,} \hlkwc{formula} \hlstd{= y} \hlopt{~} \hlstd{x,} \hlkwc{color} \hlstd{=} \hlstr{"black"}\hlstd{)} \hlopt{+} @@ -18852,7 +19065,7 @@ \subsection{Smoothers and models}\label{sec:plot:smoothers} Instead of using the \code{formula} for a linear regression as smoother, we pass a different \code{formula} as an argument. In this example we use a polynomial of order 2. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} \hlkwc{color} \hlstd{=} \hlkwd{factor}\hlstd{(cyl)))} \hlopt{+} \hlkwd{stat_smooth}\hlstd{(}\hlkwc{method} \hlstd{=} \hlstr{"lm"}\hlstd{,} \hlkwc{formula} \hlstd{= y} \hlopt{~} \hlkwd{poly}\hlstd{(x,} \hlnum{2}\hlstd{),} \hlkwc{color} \hlstd{=} \hlstr{"black"}\hlstd{)} \hlopt{+} @@ -18870,7 +19083,7 @@ \subsection{Smoothers and models}\label{sec:plot:smoothers} It is possible to use other types of models, including GAM and GLM, as smoothers, but we will give only two simple examples of the use of \code{nls()} to fit a model non-linear in its parameters (see section \ref{sec:stat:NLS} on page \pageref{sec:stat:NLS} for details about fitting this same model with \code{nls()}). In the first one we fit a Michaelis-Menten equation to reaction rate (\code{rate}) versus reactant concentration (\code{conc}). \Rdata{Puromycin} is a data set included in the \Rlang distribution. Function \Rfunction{SSmicmen()} is also from \Rlang, and is a \emph{self-starting}\index{self-starting functions} implementation of the Michaelis-Menten equation. Thanks to this, even though the fit is done with an iterative algorithm, we do not need to explicitly provide starting values for the parameters to be fitted. We need to set \code{se = FALSE} because standard errors are not supported by the \code{predict()} method for \code{nls} fitted models. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(Puromycin,} \hlkwd{aes}\hlstd{(conc, rate,} \hlkwc{color} \hlstd{= state))} \hlopt{+} \hlkwd{geom_point}\hlstd{()} \hlopt{+} @@ -18884,7 +19097,7 @@ \subsection{Smoothers and models}\label{sec:plot:smoothers} In the second example we define the same model directly in the model formula, and provide the starting values explicitly. The names used for the parameters to be fitted can be chosen at will, within the restrictions of the \Rlang language, but of course the names used in \code{formula} and \code{start} must match each other. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(Puromycin,} \hlkwd{aes}\hlstd{(conc, rate,} \hlkwc{color} \hlstd{= state))} \hlopt{+} \hlkwd{geom_point}\hlstd{()} \hlopt{+} @@ -18899,7 +19112,7 @@ \subsection{Smoothers and models}\label{sec:plot:smoothers} In some cases it is desirable to annotate plots with fitted model equations or fitted parameters. One way of achieving this is by fitting the model and then extracting the parameters to manually construct text strings to use for text or label annotations. However, package \pkgname{ggpmisc} makes it possible to automate such annotations in many cases. This package also provides \ggstat{stat\_poly\_line()} which is similar to \ggstat{stat\_smooth()} but with \code{method = "lm"} consistently as its default irrespective of the number of observations. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my.formula} \hlkwb{<-} \hlstd{y} \hlopt{~} \hlkwd{poly}\hlstd{(x,} \hlnum{2}\hlstd{)} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} \hlkwc{color} \hlstd{=} \hlkwd{factor}\hlstd{(cyl)))} \hlopt{+} @@ -18920,7 +19133,7 @@ \subsection{Smoothers and models}\label{sec:plot:smoothers} This same package makes it possible to annotate plots with summary tables from a model fit. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my.formula} \hlkwb{<-} \hlstd{y} \hlopt{~} \hlkwd{poly}\hlstd{(x,} \hlnum{2}\hlstd{)} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} \hlkwc{color} \hlstd{=} \hlkwd{factor}\hlstd{(cyl)))} \hlopt{+} @@ -18960,7 +19173,7 @@ \subsection{Frequencies and counts}\label{sec:histogram}\label{sec:plot:histogra As before, we generate suitable artificial data. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{set.seed}\hlstd{(}\hlnum{12345}\hlstd{)} \hlstd{my.data} \hlkwb{<-} @@ -18974,7 +19187,7 @@ \subsection{Frequencies and counts}\label{sec:histogram}\label{sec:plot:histogra We could have relied on the default number of bins automatically computed by the \ggstat{stat\_bin()} statistic, however, we here set it to 15 with \code{bins = 15}. It is important to remember that in this case no variable in \code{data} is mapped onto the \code{y} \emph{aesthetic}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(x))} \hlopt{+} \hlkwd{geom_histogram}\hlstd{(}\hlkwc{bins} \hlstd{=} \hlnum{15}\hlstd{)} @@ -18991,7 +19204,7 @@ \subsection{Frequencies and counts}\label{sec:histogram}\label{sec:plot:histogra If we create a grouping by mapping a factor to an additional \emph{aesthetic} how the bars created are positioned with respect to each other becomes relevant. We can then plot side by side with \code{position = "dodge"}, stacked one above the other with \code{position = "stack"} and overlapping with \code{position = "identity"} in which case we need to make them semi-transparent with \code{alpha = 0.5} so that they all remain visible. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(y,} \hlkwc{fill} \hlstd{= group))} \hlopt{+} \hlkwd{geom_histogram}\hlstd{(}\hlkwc{bins} \hlstd{=} \hlnum{15}\hlstd{,} \hlkwc{position} \hlstd{=} \hlstr{"dodge"}\hlstd{)} @@ -19002,7 +19215,7 @@ \subsection{Frequencies and counts}\label{sec:histogram}\label{sec:plot:histogra The computed values are contained in the \code{data} that the \emph{geometry} ``receives'' from the \emph{statistic}. Many statistics compute additional values that are not mapped by default. These can be mapped with \code{aes()} by enclosing them in a call to \code{stat()}. From the help page we can learn that in addition to counts in variable \code{count}, density is returned in variable \code{density} by this statistic. Consequently, we can create a histogram with the counts per bin expressed as densities whose integral is one (rather than their sum, as the width of the bins is in this case different from one), as follows. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(y,} \hlkwc{fill} \hlstd{= group))} \hlopt{+} \hlkwd{geom_histogram}\hlstd{(}\hlkwc{mapping} \hlstd{=} \hlkwd{aes}\hlstd{(}\hlkwc{y} \hlstd{=} \hlkwd{after_stat}\hlstd{(density)),} \hlkwc{bins} \hlstd{=} \hlnum{15}\hlstd{,} \hlkwc{position} \hlstd{=} \hlstr{"dodge"}\hlstd{)} @@ -19019,7 +19232,7 @@ \subsection{Frequencies and counts}\label{sec:histogram}\label{sec:plot:histogra If it were not for the easier to remember name of \gggeom{geom\_histogram()}, adding the layers with \ggstat{stat\_bin()} or \ggstat{stat\_count()} would be preferable as it makes clear that computations on the data are involved. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(y,} \hlkwc{fill} \hlstd{= group))} \hlopt{+} \hlkwd{stat_bin}\hlstd{(}\hlkwc{bins} \hlstd{=} \hlnum{15}\hlstd{,} \hlkwc{position} \hlstd{=} \hlstr{"dodge"}\hlstd{)} @@ -19030,7 +19243,7 @@ \subsection{Frequencies and counts}\label{sec:histogram}\label{sec:plot:histogra The \emph{statistic} \ggstat{stat\_bin2d()}, and its matching \emph{geometry} \gggeom{geom\_bin2d()}, by default compute a frequency histogram in two dimensions, along the \code{x} and \code{y} \emph{aesthetics}. The frequency for each rectangular tile is mapped onto a \code{fill} scale. As for \ggstat{stat\_bin()}, \code{density} is also computed and available to be mapped as shown above for \code{geom\_histogram}. In this example, to compare dispersion in two dimensions, equal $x$ and $y$ scales are most suitable, which we achieve by adding \ggcoordinate{coord\_fixed()}, which is a variation of the default \ggcoordinate{coord\_cartesian()} (see section \ref{sec:plot:coord} on page \pageref{sec:plot:coord} for details on other systems of coordinates). \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(x, y))} \hlopt{+} \hlkwd{stat_bin2d}\hlstd{(}\hlkwc{bins} \hlstd{=} \hlnum{8}\hlstd{)} \hlopt{+} @@ -19048,7 +19261,7 @@ \subsection{Frequencies and counts}\label{sec:histogram}\label{sec:plot:histogra The \emph{statistic} \ggstat{stat\_bin\_hex()}, and its matching \emph{geometry} \gggeom{geom\_hex()}, differ from \ggstat{stat\_bin2d()} in their use of hexagonal instead of square tiles. By default the frequency or \code{count} for each hexagon is mapped to the \code{fill} aesthetic, but counts expressed as \code{density} are also computed and can be mapped with \code{aes(fill = after\_stat(density))}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(x, y))} \hlopt{+} \hlkwd{stat_bin_hex}\hlstd{(}\hlkwc{bins} \hlstd{=} \hlnum{8}\hlstd{)} \hlopt{+} @@ -19070,7 +19283,7 @@ \subsection{Density functions}\label{sec:plot:density} Empirical density functions are the equivalent of a histogram, but are continuous and not calculated using bins. They can be estimated in 1 or 2 dimensions (1D or 2D), for $x$ or $x$ and $y$, respectively. As with histograms it is possible to use different \emph{geometries} to visualize them. Examples of the use of \gggeom{geom\_density()} to create 1D density plots follow. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(y,} \hlkwc{color} \hlstd{= group))} \hlopt{+} \hlkwd{geom_density}\hlstd{()} @@ -19087,7 +19300,7 @@ \subsection{Density functions}\label{sec:plot:density} A semitransparent fill can be used instead of coloured lines. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(y,} \hlkwc{fill} \hlstd{= group))} \hlopt{+} \hlkwd{geom_density}\hlstd{(}\hlkwc{alpha} \hlstd{=} \hlnum{0.5}\hlstd{)} @@ -19102,7 +19315,7 @@ \subsection{Density functions}\label{sec:plot:density} Examples of 2D density plots follow. In the first example we use two \emph{geometries} which were earlier described, \code{geom\_point()} and \code{geom\_rug()}, to plot the observations in the background. With \ggstat{stat\_density\_2d()} we add a two-dimensional density ``map'' represented using isolines. We map \code{group} to the \code{color} \emph{aesthetic}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(x, y,} \hlkwc{color} \hlstd{= group))} \hlopt{+} \hlkwd{geom_point}\hlstd{()} \hlopt{+} @@ -19121,7 +19334,7 @@ \subsection{Density functions}\label{sec:plot:density} In this case, \gggeom{geom\_density\_2d()} is equivalent, and we can replace it in the last line in the chunk above. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{geom_density_2d}\hlstd{()} \end{alltt} @@ -19133,7 +19346,7 @@ \subsection{Density functions}\label{sec:plot:density} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(x, y))} \hlopt{+} \hlkwd{stat_density_2d}\hlstd{(}\hlkwd{aes}\hlstd{(}\hlkwc{fill} \hlstd{=} \hlkwd{after_stat}\hlstd{(level)),} \hlkwc{geom} \hlstd{=} \hlstr{"polygon"}\hlstd{)} \hlopt{+} @@ -19158,7 +19371,7 @@ \subsection{Box and whiskers plots}\label{sec:boxplot} Box and whiskers plots, also very frequently called just box plots, are also summaries that convey some of the properties of a distribution. They are calculated and plotted by means of \ggstat{stat\_boxplot()} or its matching \gggeom{geom\_boxplot()}. Although they can be calculated and plotted based on just a few observations, they are not useful unless each box plot is based on more than 10 to 15 observations. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(group, y))} \hlopt{+} \hlkwd{stat_boxplot}\hlstd{()} @@ -19175,7 +19388,7 @@ \subsection{Box and whiskers plots}\label{sec:boxplot} As with other \emph{statistics}, their appearance obeys both the usual \emph{aesthetics} such as \code{color}, and parameters specific to this type of visual representation: \code{outlier.color}, \code{outlier.fill}, \code{outlier.shape}, \code{outlier.size}, \code{outlier.stroke} and \code{outlier.alpha}, which affect the outliers in a way similar to the equivalent \code{aethetics} in \code{geom\_point()}. The shape and width of the ``box'' can be adjusted with \code{notch}, \code{notchwidth} and \code{varwidth}. Notches in a boxplot serve a similar role for comparing medians as confidence limits serve when comparing means. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(group, y))} \hlopt{+} \hlkwd{stat_boxplot}\hlstd{(}\hlkwc{notch} \hlstd{=} \hlnum{TRUE}\hlstd{,} \hlkwc{width} \hlstd{=} \hlnum{0.4}\hlstd{,} @@ -19198,7 +19411,7 @@ \subsection{Violin plots}\label{sec:plot:violin} Violin plots are a more recent development than box plots, and usable with relatively large numbers of observations. They could be thought of as being a sort of hybrid between an empirical density function (see section \ref{sec:plot:density} on page \pageref{sec:plot:density}) and a box plot (see section \ref{sec:boxplot} on page \pageref{sec:boxplot}). As is the case with box plots, they are particularly useful when comparing distributions of related data, side by side. They can be created with \gggeom{geom\_violin()} as shown in the examples below. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(group, y))} \hlopt{+} \hlkwd{geom_violin}\hlstd{()} @@ -19207,7 +19420,7 @@ \subsection{Violin plots}\label{sec:plot:violin} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(group, y,} \hlkwc{fill} \hlstd{= group))} \hlopt{+} \hlkwd{geom_violin}\hlstd{(}\hlkwc{alpha} \hlstd{=} \hlnum{0.16}\hlstd{)} \hlopt{+} @@ -19228,7 +19441,7 @@ \subsection{Violin plots}\label{sec:plot:violin} Other types of displays related to violin plots are \emph{beeswarm} plots and \emph{sina} plots, and can be produced with \emph{geometries} defined in packages \pkgname{ggbeeswarm} and \pkgname{ggforce}, respectively. A minimal example of a beeswarm plot is shown below. See the documentation of the packages for details about the many options in their use. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(group, y))} \hlopt{+} \hlkwd{geom_quasirandom}\hlstd{()} @@ -19281,7 +19494,7 @@ \section{Flipped plot layers}\label{sec:plot:flipped} In geometries, passing {orientation = "y"} results in flipping of the aesthetics but with a twist. For example, in \gggeom{geom\_line()}, flipping changes the drawing of the lines. Normally observations are sorted along the $x$ axis for drawing the segments connecting them. If we flip this layer, observations are sorted along the $y$ axis before drawing the connecting segments, which can make a major difference. The variables shown on each axis remain the same, as does the position of points drawn with \gggeom{geom\_point()}. In this example only two segments are the same in the flipped plot and the not-flipped one. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(mtcars[}\hlnum{1}\hlopt{:}\hlnum{8}\hlstd{, ],} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= hp,} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} \hlkwd{geom_point}\hlstd{()} \hlopt{+} @@ -19302,7 +19515,7 @@ \section{Flipped plot layers}\label{sec:plot:flipped} The next pair of examples exemplify automatic flipping using \ggstat{stat\_boxplot()}. Here we map the factor \code{Species} first to $x$ and then to $y$. In both cases boxplots have been computed and plotted for each level of the factor. Statistics \ggstat{stat\_boxplot()}, \ggstat{stat\_summary()}, \ggstat{stat\_histogram()} and \ggstat{stat\_density()} behave similarly with respect to flipping. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(iris,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= Species,} \hlkwc{y} \hlstd{= Sepal.Length))} \hlopt{+} \hlkwd{stat_boxplot}\hlstd{()} @@ -19317,7 +19530,7 @@ \section{Flipped plot layers}\label{sec:plot:flipped} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(iris,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= Sepal.Length,} \hlkwc{y} \hlstd{= Species))} \hlopt{+} \hlkwd{stat_boxplot}\hlstd{()} @@ -19334,7 +19547,7 @@ \section{Flipped plot layers}\label{sec:plot:flipped} When we map a variable to only one of $x$ or $y$ the flip is also automatic. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(iris,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= Sepal.Length,} \hlkwc{color} \hlstd{= Species))} \hlopt{+} \hlkwd{stat_density}\hlstd{(}\hlkwc{fill} \hlstd{=} \hlnum{NA}\hlstd{)} @@ -19349,7 +19562,7 @@ \section{Flipped plot layers}\label{sec:plot:flipped} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(iris,} \hlkwd{aes}\hlstd{(}\hlkwc{y} \hlstd{= Sepal.Length,} \hlkwc{color} \hlstd{= Species))} \hlopt{+} \hlkwd{stat_density}\hlstd{(}\hlkwc{fill} \hlstd{=} \hlnum{NA}\hlstd{)} @@ -19372,7 +19585,7 @@ \section{Flipped plot layers}\label{sec:plot:flipped} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(iris,} \hlkwd{aes}\hlstd{(Sepal.Length, Petal.Length))} \hlopt{+} \hlkwd{stat_smooth}\hlstd{(}\hlkwc{method} \hlstd{=} \hlstr{"lm"}\hlstd{,} \hlkwc{formula} \hlstd{= y} \hlopt{~} \hlstd{x)} \hlopt{+} @@ -19391,7 +19604,7 @@ \section{Flipped plot layers}\label{sec:plot:flipped} With \code{orientation = "y"} we tell that $y$ is the independent variable. In the case of \gggeom{geom\_smooth()} this means implicitly swapping $x$ and $y$ in \code{formula}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(iris,} \hlkwd{aes}\hlstd{(Sepal.Length, Petal.Length))} \hlopt{+} \hlkwd{stat_smooth}\hlstd{(}\hlkwc{method} \hlstd{=} \hlstr{"lm"}\hlstd{,} \hlkwc{formula} \hlstd{= y} \hlopt{~} \hlstd{x,} \hlkwc{orientation} \hlstd{=} \hlstr{"y"}\hlstd{)} \hlopt{+} @@ -19411,7 +19624,7 @@ \section{Flipped plot layers}\label{sec:plot:flipped} Flipping the orientation of plot layers with \code{orientation = "y"} is not equivalent to flipping the whole plot with \ggcoordinate{coord\_flip()}. In the first case which axis is considered independent for computation changes but not the positions of the axes in the plot, while in the second case the position of the $x$ and $y$ axes in the plot is swapped. So, when coordinates are flipped the $x$ aesthetic is plotted on the vertical axis and the $y$ aesthetic on the horizontal axis, but the role of the variable mapped to the \code{x} aesthetic remains as explanatory variable. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(iris,} \hlkwd{aes}\hlstd{(Sepal.Length, Petal.Length))} \hlopt{+} \hlkwd{stat_smooth}\hlstd{(}\hlkwc{method} \hlstd{=} \hlstr{"lm"}\hlstd{,} \hlkwc{formula} \hlstd{= y} \hlopt{~} \hlstd{x)} \hlopt{+} @@ -19432,7 +19645,7 @@ \section{Flipped plot layers}\label{sec:plot:flipped} In package \pkgname{ggpmisc} (version $\geq$ 0.4.1) statistics related to model fitting have an \code{orientation} parameter as those from package \ggplot do, but in addition they accept formulas where $x$ is on the lhs and $y$ on the rhs, such as \code{formula = x \~{} y} providing a syntax consistent with \Rlang's model fitting functions. In the next pair of examples we use \ggstat{stat\_poly\_line()}. In the first example in this pair, the default \code{formula = y \~{} x} is used, while in the second example we pass explicitly \code{formula = x \~{} y} to force the flipping of the fitted model. To make the difference clear, we plot both linear regressions on the same plots. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(iris,} \hlkwd{aes}\hlstd{(Sepal.Length, Petal.Length))} \hlopt{+} \hlkwd{stat_poly_line}\hlstd{()} \hlopt{+} @@ -19452,7 +19665,7 @@ \section{Flipped plot layers}\label{sec:plot:flipped} In\index{plots!major axis regression}\label{par:ma:example} the case of the \code{iris} data used for these examples, both approaches used above to linear regression are wrong. The variables mapped to $x$ and$y$ are correlated but both are measured with error and subject to biological variation. In this case the correct approach is to not assume that there is a variable that can be considered independent, and instead use a method like major axis (MA) regression, as can be seen below. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(iris,} \hlkwd{aes}\hlstd{(Sepal.Length, Petal.Length))} \hlopt{+} \hlkwd{stat_ma_line}\hlstd{()} \hlopt{+} @@ -19471,7 +19684,7 @@ \section{Flipped plot layers}\label{sec:plot:flipped} A related problem is when we need to summarize in the same plot layer $x$ and $y$ values. A simple example is adding a point with coordinates given by the means along the $x$ and $y$ axes as we need to pass these computed means simultaneously to \gggeom{geom\_point()}. Package \ggplot provides \ggstat{stat\_density\_2d()} and \ggstat{stat\_summary\_2d()}. However, \ggstat{stat\_summary\_2d()} uses bins, and is similar to \ggstat{stat\_density\_2d()} in how the computed values are returned. Package \pkgname{ggpmisc} provides two dimensional equivalents of \ggstat{stat\_summary()}: \ggstat{stat\_centroid()}, which applies the same summary function along $x$ and $y$, and \ggstat{stat\_summary\_xy()}, which accepts one function for $x$ and one for $y$. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(iris,} \hlkwd{aes}\hlstd{(Sepal.Length, Petal.Length))} \hlopt{+} \hlkwd{geom_point}\hlstd{()} \hlopt{+} @@ -19488,7 +19701,7 @@ \section{Flipped plot layers}\label{sec:plot:flipped} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(iris,} \hlkwd{aes}\hlstd{(Sepal.Length, Petal.Length))} \hlopt{+} \hlkwd{geom_point}\hlstd{()} \hlopt{+} @@ -19524,7 +19737,7 @@ \section{Facets}\label{sec:plot:facets} We start by creating and saving a single-panel plot that we will use through this section to demonstrate how the same plot changes when we add facets. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{p} \hlkwb{<-} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(wt, mpg))} \hlopt{+} \hlkwd{geom_point}\hlstd{()} @@ -19542,7 +19755,7 @@ \section{Facets}\label{sec:plot:facets} A grid of panels has two dimensions, \code{rows} and \code{cols}. These dimensions in the grid of plot panels can be ``mapped'' to factors. Until recently a formula syntax was the only available one. Although this notation has been retained, the preferred syntax is currently to use the parameters \code{rows} and \code{cols}. We use \code{cols} in this example. Note that we need to use \code{vars()} to enclose the names of the variables in the data. The ``headings'' of the panels or \emph{strip labels} are by default the levels of the factors. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{p} \hlopt{+} \hlkwd{facet_grid}\hlstd{(}\hlkwc{cols} \hlstd{=} \hlkwd{vars}\hlstd{(cyl))} \end{alltt} @@ -19558,7 +19771,7 @@ \section{Facets}\label{sec:plot:facets} In the ``historical notation'' the same plot would have been coded as follows. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{p} \hlopt{+} \hlkwd{facet_grid}\hlstd{(.} \hlopt{~} \hlstd{cyl)} \end{alltt} @@ -19568,7 +19781,7 @@ \section{Facets}\label{sec:plot:facets} By default, all panels share the same scale limits and share the plotting space evenly, but these defaults can be overridden. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{p} \hlopt{+} \hlkwd{facet_grid}\hlstd{(}\hlkwc{cols} \hlstd{=} \hlkwd{vars}\hlstd{(cyl),} \hlkwc{scales} \hlstd{=} \hlstr{"free"}\hlstd{)} \hlstd{p} \hlopt{+} \hlkwd{facet_grid}\hlstd{(}\hlkwc{cols} \hlstd{=} \hlkwd{vars}\hlstd{(cyl),} \hlkwc{scales} \hlstd{=} \hlstr{"free"}\hlstd{,} \hlkwc{space} \hlstd{=} \hlstr{"free"}\hlstd{)} @@ -19581,7 +19794,7 @@ \section{Facets}\label{sec:plot:facets} To obtain a 2D grid we need to specify both \code{rows} and \code{cols}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{p} \hlopt{+} \hlkwd{facet_grid}\hlstd{(}\hlkwc{rows} \hlstd{=} \hlkwd{vars}\hlstd{(vs),} \hlkwc{cols} \hlstd{=} \hlkwd{vars}\hlstd{(am))} \end{alltt} @@ -19593,7 +19806,7 @@ \section{Facets}\label{sec:plot:facets} Margins display an additional column or row of panels with the combined data. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{p} \hlopt{+} \hlkwd{facet_grid}\hlstd{(}\hlkwc{cols} \hlstd{=} \hlkwd{vars}\hlstd{(cyl),} \hlkwc{margins} \hlstd{=} \hlnum{TRUE}\hlstd{)} \end{alltt} @@ -19609,7 +19822,7 @@ \section{Facets}\label{sec:plot:facets} We can represent more than one variable per dimension of the grid of plot panels. For this example, we also override the default \code{labeller} used for the panels with one that includes the name of the variable in addition to factor levels in the \emph{strip labels}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{p} \hlopt{+} \hlkwd{facet_grid}\hlstd{(}\hlkwc{cols} \hlstd{=} \hlkwd{vars}\hlstd{(vs, am),} \hlkwc{labeller} \hlstd{= label_both)} \end{alltt} @@ -19626,7 +19839,7 @@ \section{Facets}\label{sec:plot:facets} Sometimes we may want to have mathematical expressions or Greek letters in the panel headings. The next example shows a way of achieving this. The key is to use as \code{labeller} a function that parses character strings into \Rlang expressions. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{mtcars}\hlopt{$}\hlstd{cyl12} \hlkwb{<-} \hlkwd{factor}\hlstd{(mtcars}\hlopt{$}\hlstd{cyl,} \hlkwc{labels} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"alpha"}\hlstd{,} \hlstr{"beta"}\hlstd{,} \hlstr{"sqrt(x, y)"}\hlstd{))} @@ -19642,7 +19855,7 @@ \section{Facets}\label{sec:plot:facets} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{p} \hlopt{+} \hlkwd{facet_grid}\hlstd{(}\hlkwc{cols} \hlstd{=} \hlkwd{vars}\hlstd{(cyl),} @@ -19662,7 +19875,7 @@ \section{Facets}\label{sec:plot:facets} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{p} \hlopt{+} \hlkwd{facet_wrap}\hlstd{(}\hlkwc{facets} \hlstd{=} \hlkwd{vars}\hlstd{(cyl),} \hlkwc{nrow} \hlstd{=} \hlnum{2}\hlstd{)} \end{alltt} @@ -19678,7 +19891,7 @@ \section{Facets}\label{sec:plot:facets} The example below (plot not shown), is similar to the earlier one for \code{facet\_grid}, but faceting according to two factors with \code{facet\_wrap()} along a single wrapped row of panels. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{p} \hlopt{+} \hlkwd{facet_wrap}\hlstd{(}\hlkwc{facets} \hlstd{=} \hlkwd{vars}\hlstd{(vs, am),} \hlkwc{nrow} \hlstd{=} \hlnum{2}\hlstd{,} \hlkwc{labeller} \hlstd{= label_both)} \end{alltt} @@ -19733,7 +19946,7 @@ \subsection{Axis and key labels}\label{sec:plot:scale:name}\label{sec:plot:labs} Whole-plot title, subtitle and caption are not connected to \emph{scales} or \code{data}. A title (\code{label}) and \code{subtitle} can be added least confusingly with function \Rfunction{ggtitle()} by passing either character strings or \Rlang expressions as arguments. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= Orange,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= age,} \hlkwc{y} \hlstd{= circumference,} \hlkwc{color} \hlstd{= Tree))} \hlopt{+} @@ -19757,7 +19970,7 @@ \subsection{Axis and key labels}\label{sec:plot:scale:name}\label{sec:plot:labs} Convenience functions \Rfunction{xlab()} and \Rfunction{ylab()} can be used to set the axis labels to match those in the previous chunk. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{xlab}(\hlstr{"\hlkwd{Time} (d)"}) + \hlkwd{ylab}(\hlstr{"\hlkwd{Circumference} (mm)"}) + @@ -19768,7 +19981,7 @@ \subsection{Axis and key labels}\label{sec:plot:scale:name}\label{sec:plot:labs} Convenience function \Rfunction{labs()} is useful when we use default scales for all the \emph{aesthetics} in a plot but want to manually set axis labels and/or key titles---i.e., the \code{name} of these scales. \Rfunction{labs()} accepts arguments for these names using, as parameter names, the names of the \emph{aesthetics}. It also allows us to set \code{title}, \code{subtitle}, \code{caption} and \code{tag}, of which the first two can also be set with \Rfunction{ggtitle()}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= Orange,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= age,} \hlkwc{y} \hlstd{= circumference,} \hlkwc{color} \hlstd{= Tree))} \hlopt{+} @@ -19818,7 +20031,7 @@ \subsection{Continuous scales}\label{sec:plot:scales:continuous} We generate new fake data. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{fake2.data} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(}\hlkwc{y} \hlstd{=} \hlkwd{c}\hlstd{(}\hlkwd{rnorm}\hlstd{(}\hlnum{20}\hlstd{,} \hlkwc{mean} \hlstd{=} \hlnum{20}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{5}\hlstd{),} @@ -19835,7 +20048,7 @@ \subsubsection{Limits} In the next example we set ``hard'' limits, which will exclude some observations from the plot and from any computation of summaries or fitting of smoothers. More exactly, the off-limits observations are converted to \code{NA} values before they are passed as \code{data} to \emph{geometries}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(fake2.data,} \hlkwd{aes}\hlstd{(z, y))} \hlopt{+} \hlkwd{geom_point}\hlstd{()} \hlopt{+} \hlkwd{scale_y_continuous}\hlstd{(}\hlkwc{limits} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{0}\hlstd{,} \hlnum{100}\hlstd{))} @@ -19846,7 +20059,7 @@ \subsubsection{Limits} To set only one limit leaving the other free, we can use \code{NA} as a boundary. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{scale_y_continuous}\hlstd{(}\hlkwc{limits} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{50}\hlstd{,} \hlnum{NA}\hlstd{))} \end{alltt} @@ -19856,7 +20069,7 @@ \subsubsection{Limits} Convenience functions \Rfunction{ylim()} and \Rfunction{xlim()} can be used to set the limits to the default $x$ and $y$ scales in use. We here use \Rfunction{ylim()}, but \Rfunction{xlim()} is identical except for the \emph{scale} it affects. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ylim}\hlstd{(}\hlnum{50}\hlstd{,} \hlnum{NA}\hlstd{)} \end{alltt} @@ -19867,7 +20080,7 @@ \subsubsection{Limits} It is preferable to use function \Rfunction{expand\_limits()} as it safely \emph{expands} the dynamically computed default limits of a scale---the scale limits will grow past the requested expanded limits when needed to accommodate all observations. The arguments to \code{x} and \code{y} are numeric vectors of length one or two each, matching how the limits of the $x$ and $y$ continuous scales are defined. Here we expand the limits to include the origin. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(fake2.data,} \hlkwd{aes}\hlstd{(z, y))} \hlopt{+} \hlkwd{geom_point}\hlstd{()} \hlopt{+} @@ -19887,7 +20100,7 @@ \subsubsection{Limits} We here set the upper limit of the plotting area to be expanded by adding padding to the top and remove the default padding from the bottom of the plotting area. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(fake2.data,} \hlkwd{aes}\hlstd{(}\hlkwc{fill} \hlstd{= group,} \hlkwc{color} \hlstd{= group,} \hlkwc{x} \hlstd{= y))} \hlopt{+} @@ -19900,7 +20113,7 @@ \subsubsection{Limits} Here we instead use a multiplier to a similar effect as above; we add 10\% compared to the range of the \code{limits}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{scale_y_continuous}\hlstd{(}\hlkwc{expand} \hlstd{=} \hlkwd{expand_scale}\hlstd{(}\hlkwc{mult} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{0}\hlstd{,} \hlnum{0.1}\hlstd{)))} \end{alltt} @@ -19916,7 +20129,7 @@ \subsubsection{Limits} Test what the result is when the first limit is larger than the second one. Is it the same as when setting these same values as limits with \code{ylim()}? \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(fake2.data,} \hlkwd{aes}\hlstd{(z, y))} \hlopt{+} \hlkwd{geom_point}\hlstd{()} \hlopt{+} \hlkwd{scale_y_continuous}\hlstd{(}\hlkwc{limits} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{100}\hlstd{,} \hlnum{0}\hlstd{))} @@ -19932,7 +20145,7 @@ \subsubsection{Ticks and their labels}\label{sec:plot:scales:ticks} When manually setting breaks, we can keep the default computed labels for the \code{breaks}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(fake2.data,} \hlkwd{aes}\hlstd{(z, y))} \hlopt{+} \hlkwd{geom_point}\hlstd{()} \hlopt{+} @@ -19944,7 +20157,7 @@ \subsubsection{Ticks and their labels}\label{sec:plot:scales:ticks} The default breaks are computed by function \Rfunction{pretty\_breaks()} from \pkgname{scales}. The argument passed to its parameter \code{n} determines the target number ticks to be generated automatically, but the actual number of ticks computed may be slightly different depending on the range of the data. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{scale_y_continuous}\hlstd{(}\hlkwc{breaks} \hlstd{=} \hlkwd{pretty_breaks}\hlstd{(}\hlkwc{n} \hlstd{=} \hlnum{7}\hlstd{))} \end{alltt} @@ -19954,7 +20167,7 @@ \subsubsection{Ticks and their labels}\label{sec:plot:scales:ticks} We can set tick labels manually, in parallel to the setting of \code{breaks} by passing as arguments two vectors of equal length. In the next example we use an expression to obtain a Greek letter. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(fake2.data,} \hlkwd{aes}\hlstd{(z, y))} \hlopt{+} \hlkwd{geom_point}\hlstd{()} \hlopt{+} @@ -19973,7 +20186,7 @@ \subsubsection{Ticks and their labels}\label{sec:plot:scales:ticks} Package \pkgname{scales} provides several functions for the automatic generation of tick labels. For example, to display tick labels as percentages for data available as decimal fractions, we can use function \code{percent()}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(fake2.data,} \hlkwd{aes}\hlstd{(z, y} \hlopt{/} \hlkwd{max}\hlstd{(y)))} \hlopt{+} \hlkwd{geom_point}\hlstd{()} \hlopt{+} @@ -19991,7 +20204,7 @@ \subsubsection{Ticks and their labels}\label{sec:plot:scales:ticks} For currency, we can use \code{dollar()}, to include commas separating thousands, millions, so on, we can use \code{comma()}, and for numbers formatted using exponents of 10---useful for logarithmic-transformed scales---we can use \code{scientific\_format()}, \code{label\_number(scale\_cut = cut\_short\_scale())}, \code{label\_log()}, or \code{label\_number(scale\_cut = cut\_si("g")}. As shown below, some of these functions can be useful with untransformed continuous scales. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(fake2.data,} \hlkwd{aes}\hlstd{(z, y} \hlopt{*} \hlnum{1000}\hlstd{))} \hlopt{+} \hlkwd{geom_point}\hlstd{()} \hlopt{+} @@ -20009,7 +20222,7 @@ \subsubsection{Ticks and their labels}\label{sec:plot:scales:ticks} With date values mapped to $x$ or $y$, tick labels are created with functions \Rfunction{label\_date()} or \Rfunction{label\_date\_short()}. In the case of time, tick labels are created with function \Rfunction{label\_time()}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlcom{## ADD EXAMPLES USING FORMATS for dates and times} \end{alltt} @@ -20029,7 +20242,7 @@ \subsubsection{Transformed scales}\label{sec:plot:scales:trans} We can use \ggscale{scale\_x\_reverse()} to reverse the direction of a continuous scale, \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(fake2.data,} \hlkwd{aes}\hlstd{(z, y))} \hlopt{+} \hlkwd{geom_point}\hlstd{()} \hlopt{+} @@ -20047,7 +20260,7 @@ \subsubsection{Transformed scales}\label{sec:plot:scales:trans} Axis tick-labels display the original values before applying the transformation. The \code{"breaks"} need to be given in the original scale as well. We use \ggscale{scale\_y\_log10()} to apply a $\log_{10}$ transformation to the $y$ values. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{scale_y_log10}\hlstd{(}\hlkwc{breaks}\hlstd{=}\hlkwd{c}\hlstd{(}\hlnum{10}\hlstd{,}\hlnum{20}\hlstd{,}\hlnum{50}\hlstd{,}\hlnum{100}\hlstd{))} \end{alltt} @@ -20057,7 +20270,7 @@ \subsubsection{Transformed scales}\label{sec:plot:scales:trans} Using a transformation in a scale is not equivalent to applying the same transformation on the fly when mapping a variable to the $x$ (or $y$) \emph{aesthetic} as this results in tick-labels expressed in transformed values. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(fake2.data,} \hlkwd{aes}\hlstd{(z,} \hlkwd{log10}\hlstd{(y)))} \hlopt{+} \hlkwd{geom_point}\hlstd{()} @@ -20068,7 +20281,7 @@ \subsubsection{Transformed scales}\label{sec:plot:scales:trans} We show next how to specify a transformation to a continuous scale, using a predefined ``transformation'' object. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{scale_y_continuous}\hlstd{(}\hlkwc{trans} \hlstd{=} \hlstr{"reciprocal"}\hlstd{)} \end{alltt} @@ -20078,7 +20291,7 @@ \subsubsection{Transformed scales}\label{sec:plot:scales:trans} Natural logarithms are important in growth analysis as the slope against time gives the relative growth rate. We show this with the \code{Orange} data set. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= Orange,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= age,} \hlkwc{y} \hlstd{= circumference,} \hlkwc{color} \hlstd{= Tree))} \hlopt{+} @@ -20095,7 +20308,7 @@ \subsubsection{Position of $x$ and $y$ axes} The default position of axes can be changed through parameter \code{position}, using character constants \code{"bottom"}, \code{"top"}, \code{"left"} and \code{"right"}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(wt, mpg))} \hlopt{+} \hlkwd{geom_point}\hlstd{()} \hlopt{+} @@ -20116,7 +20329,7 @@ \subsubsection{Secondary axes} It\index{plots!secondary axes} is also possible to add secondary axes with ticks displayed in a transformed scale. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(wt, mpg))} \hlopt{+} \hlkwd{geom_point}\hlstd{()} \hlopt{+} @@ -20134,7 +20347,7 @@ \subsubsection{Secondary axes} It is also possible to use different \code{breaks} and \code{labels} than for the main axes, and to provide a different \code{name} to be used as a secondary axis label. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{scale_y_continuous}\hlstd{(}\hlkwc{sec.axis} \hlstd{=} \hlkwd{sec_axis}\hlstd{(}\hlopt{~} \hlstd{.} \hlopt{/} \hlnum{2.3521458}\hlstd{,} \hlkwc{name} \hlstd{=} \hlkwd{expression}\hlstd{(km} \hlopt{/} \hlstd{l),} \hlkwc{breaks} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{5}\hlstd{,} \hlnum{7.5}\hlstd{,} \hlnum{10}\hlstd{,} \hlnum{12.5}\hlstd{)))} @@ -20155,7 +20368,7 @@ \subsection{Time and date scales for $x$ and $y$}\label{sec:plot:scales:time:dat \end{warningbox} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= weather_wk_25_2019.tb,} \hlkwd{aes}\hlstd{(}\hlkwd{with_tz}\hlstd{(time,} \hlkwc{tzone} \hlstd{=} \hlstr{"EET"}\hlstd{), air_temp_C))} \hlopt{+} @@ -20180,7 +20393,7 @@ \subsection{Time and date scales for $x$ and $y$}\label{sec:plot:scales:time:dat By\index{plots!scales!axis labels} default the tick labels produced and their formatting are automatically selected based on the extent of the time data. For example, if we have all data collected within a single day, then the tick labels will show hours and minutes. If we plot data for several years, the labels will show the date portion of the time instant. The default is frequently good enough, but it is possible, as for numbers, to use different formatter functions to generate the tick labels. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= weather_wk_25_2019.tb,} \hlkwd{aes}\hlstd{(}\hlkwd{with_tz}\hlstd{(time,} \hlkwc{tzone} \hlstd{=} \hlstr{"EET"}\hlstd{), air_temp_C))} \hlopt{+} @@ -20217,7 +20430,7 @@ \subsection{Discrete scales for $x$ and $y$} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(mpg,} \hlkwd{aes}\hlstd{(class, hwy))} \hlopt{+} \hlkwd{stat_summary}\hlstd{(}\hlkwc{geom} \hlstd{=} \hlstr{"col"}\hlstd{,} \hlkwc{fun} \hlstd{= mean,} \hlkwc{na.rm} \hlstd{=} \hlnum{TRUE}\hlstd{)} \hlopt{+} @@ -20236,7 +20449,7 @@ \subsection{Discrete scales for $x$ and $y$} If, as in the previous example, only the case of character strings needs to be changed, passing function \Rfunction{toupper()} or \Rfunction{tolower()} allows a more general and less error-prone approach. In fact any function, user defined or not, which converts the values of \code{limits} into the desired values can be passed as an argument to \code{labels}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{scale_x_discrete}\hlstd{(}\hlkwc{limits} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"compact"}\hlstd{,} \hlstr{"subcompact"}\hlstd{,} \hlstr{"midsize"}\hlstd{),} \hlkwc{labels} \hlstd{= toupper)} @@ -20247,7 +20460,7 @@ \subsection{Discrete scales for $x$ and $y$} Alternatively, we can change the order of the columns in the plot by reordering the levels of factor \code{mpg\$class}. This approach makes sense if the ordering needs to be done programmatically based on values in \code{data}. See section \ref{sec:calc:factors} on page \pageref{sec:calc:factors} for details. The example below shows how to reorder the columns, corresponding to the levels of \code{class} based on the \code{mean()} of \code{hwy}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(mpg,} \hlkwd{aes}\hlstd{(}\hlkwd{reorder}\hlstd{(}\hlkwc{x} \hlstd{=} \hlkwd{factor}\hlstd{(class),} \hlkwc{X} \hlstd{= hwy,} \hlkwc{FUN} \hlstd{= mean), hwy))} \hlopt{+} \hlkwd{stat_summary}\hlstd{(}\hlkwc{geom} \hlstd{=} \hlstr{"col"}\hlstd{,} \hlkwc{fun} \hlstd{= mean)} @@ -20278,7 +20491,7 @@ \subsubsection{Color definitions in R}\label{sec:plot:colors} Given the number of colors available, we may want to subset them based on their names. Function \code{colors()} returns a character vector. We can use \code{grep()} to find the names containing a given character substring, in this example \code{"dark"}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{length}\hlstd{(}\hlkwd{colors}\hlstd{())} \end{alltt} @@ -20307,7 +20520,7 @@ \subsubsection{Color definitions in R}\label{sec:plot:colors} To retrieve the RGB values for a color definition we use: \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{col2rgb}\hlstd{(}\hlstr{"purple"}\hlstd{)} \end{alltt} @@ -20332,7 +20545,7 @@ \subsubsection{Color definitions in R}\label{sec:plot:colors} Color definitions in \Rlang can contain a \emph{transparency} described by an \code{alpha} value, which by default is not returned. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{col2rgb}\hlstd{(}\hlstr{"purple"}\hlstd{,} \hlkwc{alpha} \hlstd{=} \hlnum{TRUE}\hlstd{)} \end{alltt} @@ -20349,7 +20562,7 @@ \subsubsection{Color definitions in R}\label{sec:plot:colors} With function \Rfunction{rgb()} we can define new colors. Enter \code{help(rgb)} for more details. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{rgb}\hlstd{(}\hlnum{1}\hlstd{,} \hlnum{1}\hlstd{,} \hlnum{0}\hlstd{)} \end{alltt} @@ -20376,7 +20589,7 @@ \subsubsection{Color definitions in R}\label{sec:plot:colors} As described above, colors can be defined in the RGB \emph{color space}, however, other color models such as HSV (hue, saturation, value) can be also used to define colours. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{hsv}\hlstd{(}\hlkwd{c}\hlstd{(}\hlnum{0}\hlstd{,}\hlnum{0.25}\hlstd{,}\hlnum{0.5}\hlstd{,}\hlnum{0.75}\hlstd{,}\hlnum{1}\hlstd{),} \hlnum{0.5}\hlstd{,} \hlnum{0.5}\hlstd{)} \end{alltt} @@ -20389,7 +20602,7 @@ \subsubsection{Color definitions in R}\label{sec:plot:colors} Probably a more useful flavor of HSV colors for use in scales are those returned by function \Rfunction{hcl()} for hue, chroma and luminance. While the ``value'' and ``saturation'' in HSV are based on physical values, the ``chroma'' and ``luminance'' values in HCL are based on human visual perception. Colours with equal luminance will be seen as equally bright by an ``average'' human. In a scale based on different hues but equal chroma and luminance values, as used by package \ggplot, all colours are perceived as equally bright. The hues need to be expressed as angles in degrees, with values between zero and 360. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{hcl}\hlstd{(}\hlkwd{c}\hlstd{(}\hlnum{0}\hlstd{,}\hlnum{0.25}\hlstd{,}\hlnum{0.5}\hlstd{,}\hlnum{0.75}\hlstd{,}\hlnum{1}\hlstd{)} \hlopt{*} \hlnum{360}\hlstd{)} \end{alltt} @@ -20415,7 +20628,7 @@ \subsection{Binned scales}\label{sec:binned:scales} Before version 3.3.0 of \pkgname{ggplot2} only two types of scales were available, continuous and discrete. A third type of scales (implemented for all the aesthetics where relevant) was added in version 3.3.0 called \emph{binned}. They are to be used with continuous variables, but they discretize the continuous values into bins or classes, each for a range of values, and then represent them in the plot using a discrete set of values. We re-do the figure shown on page \pageref{chunk:plot:weighted:resid} but replacing \ggscale{scale\_color\_gradient()} by \ggscale{scale\_color\_binned()}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlcom{# we use capital letters X and Y as variable names to distinguish} \hlcom{# them from the x and y aesthetics} @@ -20430,7 +20643,7 @@ \subsection{Binned scales}\label{sec:binned:scales} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my.formula} \hlkwb{<-} \hlstd{y} \hlopt{~} \hlkwd{poly}\hlstd{(x,} \hlnum{3}\hlstd{,} \hlkwc{raw} \hlstd{=} \hlnum{TRUE}\hlstd{)} \end{alltt} @@ -20438,7 +20651,7 @@ \subsection{Binned scales}\label{sec:binned:scales} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(my.data.outlier)} \hlopt{+} \hlkwd{stat_fit_residuals}\hlstd{(}\hlkwc{formula} \hlstd{= my.formula,} @@ -20471,7 +20684,7 @@ \subsection{Identity scales} We create a data frame containing a variable \code{colors} containing character strings interpretable as the names of color definitions known to \Rlang. We then use them directly in the plot. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{df99} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{10}\hlstd{,} \hlkwc{y} \hlstd{=} \hlkwd{dnorm}\hlstd{(}\hlnum{10}\hlstd{),} \hlkwc{colors} \hlstd{=} \hlkwd{rep}\hlstd{(}\hlkwd{c}\hlstd{(}\hlstr{"red"}\hlstd{,} \hlstr{"blue"}\hlstd{),} \hlnum{5}\hlstd{))} @@ -20509,7 +20722,7 @@ \section{Adding annotations}\label{sec:plot:annotations} We show a simple example using \code{"text"} as \emph{geometry}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(fake2.data,} \hlkwd{aes}\hlstd{(z, y))} \hlopt{+} \hlkwd{geom_point}\hlstd{()} \hlopt{+} @@ -20536,7 +20749,7 @@ \section{Adding annotations}\label{sec:plot:annotations} It is relatively common to use inset tables, plots, bitmaps or vector plots as annotations. With \Rfunction{annotation\_custom()}, grobs (\pkgname{grid} graphical object) can be added to a ggplot. To add another or the same plot as an inset, we first need to convert it into a grob. In the case of a ggplot we use \Rfunction{ggplotGrob()}. In this example the inset is a zoomed-in window into the main plot. In addition to the grob, we need to provide the coordinates expressed in ``natural'' data units of the main plot for the location of the grob. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{p} \hlkwb{<-} \hlkwd{ggplot}\hlstd{(fake2.data,} \hlkwd{aes}\hlstd{(z, y))} \hlopt{+} \hlkwd{geom_point}\hlstd{()} @@ -20560,7 +20773,7 @@ \section{Adding annotations}\label{sec:plot:annotations} In the next example, in addition to adding expressions as annotations, we also pass expressions as tick labels through the scale. Do notice that we use recycling for setting the breaks, as \code{c(0, 0.5, 1, 1.5, 2) * pi} is equivalent to \code{c(0, 0.5 * pi, pi, 1.5 * pi, 2 * pi}. Annotations are plotted at their own position, unrelated to any observation in the data, but using the same coordinates and units as for plotting the data. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwd{data.frame}\hlstd{(}\hlkwc{x} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{0}\hlstd{,} \hlnum{2} \hlopt{*} \hlstd{pi)),} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= x))} \hlopt{+} \hlkwd{stat_function}\hlstd{(}\hlkwc{fun} \hlstd{= sin)} \hlopt{+} @@ -20613,7 +20826,7 @@ \subsection{Wind-rose plots} Here we plot a circular histogram of wind directions with 30-degree-wide bins. We use \ggstat{stat\_bin()}. The counts represent the number of minutes during 24~h when the wind direction was within each bin. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{p} \hlkwb{<-} \hlkwd{ggplot}\hlstd{(viikki_d29.dat,} \hlkwd{aes}\hlstd{(WindDir_D1_WVT))} \hlopt{+} \hlkwd{coord_polar}\hlstd{()} \hlopt{+} @@ -20637,7 +20850,7 @@ \subsection{Wind-rose plots} For an equivalent plot, using an empirical density, we have to use \ggstat{stat\_density()} instead of \ggstat{stat\_bin()}, \gggeom{geom\_polygon()} instead of \gggeom{geom\_bar()} and change the \code{name} of the \code{y} scale. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{p} \hlopt{+} \hlkwd{stat_density}\hlstd{(}\hlkwc{color} \hlstd{=} \hlstr{"black"}\hlstd{,} \hlkwc{fill} \hlstd{=} \hlstr{"gray50"}\hlstd{,} \hlkwc{geom} \hlstd{=} \hlstr{"polygon"}\hlstd{,} \hlkwc{size} \hlstd{=} \hlnum{1}\hlstd{)} \hlopt{+} \hlkwd{labs}\hlstd{(}\hlkwc{y} \hlstd{=} \hlstr{"Density"}\hlstd{)} @@ -20658,7 +20871,7 @@ \subsection{Wind-rose plots} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(viikki_d29.dat,} \hlkwd{aes}\hlstd{(WindDir_D1_WVT, WindSpd_S_WVT))} \hlopt{+} \hlkwd{coord_polar}\hlstd{()} \hlopt{+} @@ -20692,7 +20905,7 @@ \subsection{Pie charts} As we use \gggeom{geom\_bar()} which defaults to use \code{stat\_count()}. We use the brewer scale for nice colors. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mpg,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{=} \hlkwd{factor}\hlstd{(}\hlnum{1}\hlstd{),} \hlkwc{fill} \hlstd{=} \hlkwd{factor}\hlstd{(class)))} \hlopt{+} \hlkwd{geom_bar}\hlstd{(}\hlkwc{width} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{color} \hlstd{=} \hlstr{"black"}\hlstd{)} \hlopt{+} @@ -20733,7 +20946,7 @@ \subsection{Complete themes} Even the default \ggtheme{theme\_gray()} can be added to a plot, to modify it, if arguments different to the defaults are passed when called. In this example we override the default base size with a larger one and the default sans-serif font with one with serifs. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(fake2.data,} \hlkwd{aes}\hlstd{(z, y))} \hlopt{+} \hlkwd{geom_point}\hlstd{()} \hlopt{+} @@ -20760,7 +20973,7 @@ \subsection{Complete themes} A frequent idiom is to create a plot without specifying a theme, and then adding the theme when printing or saving it. This can save work, for example, when producing different versions of the same plot for a publication and a talk. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{p} \hlkwb{<-} \hlkwd{ggplot}\hlstd{(fake2.data,} \hlkwd{aes}\hlstd{(z, y))} \hlopt{+} \hlkwd{geom_point}\hlstd{()} @@ -20772,7 +20985,7 @@ \subsection{Complete themes} It is also possible to change the theme used by default in the current \Rlang session with \Rfunction{theme\_set()}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{old_theme} \hlkwb{<-} \hlkwd{theme_set}\hlstd{(}\hlkwd{theme_bw}\hlstd{(}\hlnum{15}\hlstd{))} \end{alltt} @@ -20782,7 +20995,7 @@ \subsection{Complete themes} Similar to other functions used to change options in \Rlang, \Rfunction{theme\_set()} returns the previous setting. By saving this value to a variable, here \code{old\_theme}, we are able to restore the previous default, or undo the change. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{theme_set}\hlstd{(old_theme)} \hlstd{p} @@ -20800,7 +21013,7 @@ \subsection{Incomplete themes} If we want to extensively modify a theme, and/or reuse it in multiple plots, it is best to create a new constructor, or a modified complete theme as described in the next section. In other cases we may need to tweak some theme settings for a single figure, in which case we can most effectively do this when creating a plot. We exemplify this approach by solving the problem of overlapping $x$-axis tick labels. In practice this problem is most frequent when factor levels have long names or the labels are dates. Rotating the tick labels is the most elegant solution from the graphics design point of view. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(fake2.data,} \hlkwd{aes}\hlstd{(z} \hlopt{+} \hlnum{1000}\hlstd{, y))} \hlopt{+} \hlkwd{geom_point}\hlstd{()} \hlopt{+} @@ -20827,7 +21040,7 @@ \subsection{Incomplete themes} A less elegant approach is to use a smaller font size. Within \Rfunction{theme()}, function \Rfunction{rel()} can be used to set size relative to the base size. In this example, we use \code{axis.text.x} so as to change the size of tick labels only for the $x$ axis. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{theme}\hlstd{(}\hlkwc{axis.text.x} \hlstd{=} \hlkwd{element_text}\hlstd{(}\hlkwc{size} \hlstd{=} \hlkwd{rel}\hlstd{(}\hlnum{0.6}\hlstd{)))} \end{alltt} @@ -20849,7 +21062,7 @@ \subsection{Incomplete themes} It is also possible to modify the default theme used for rendering all subsequent plots. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{old_theme} \hlkwb{<-} \hlkwd{theme_update}\hlstd{(}\hlkwc{text} \hlstd{=} \hlkwd{element_text}\hlstd{(}\hlkwc{color} \hlstd{=} \hlstr{"darkred"}\hlstd{))} \end{alltt} @@ -20866,7 +21079,7 @@ \subsection{Defining a new theme} Unless we plan to widely reuse the new theme, there is usually no need to define a new function. We can simply save the modified theme to a variable and add it to different plots as needed. As we will be adding a ``ready-build'' theme object rather than a function, we do not use parentheses. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my_theme} \hlkwb{<-} \hlkwd{theme_bw}\hlstd{()} \hlopt{+} \hlkwd{theme}\hlstd{(}\hlkwc{text} \hlstd{=} \hlkwd{element_text}\hlstd{(}\hlkwc{color} \hlstd{=} \hlstr{"darkred"}\hlstd{))} \hlstd{p} \hlopt{+} \hlstd{my_theme} @@ -20888,7 +21101,7 @@ \subsection{Defining a new theme} How to create a new theme constructor similar to those in package \ggplot can be fairly simple if the changes are few. As the implementation details of theme objects may change in future versions of \ggplot, the safest approach is to rely only on the public interface of the package. We can ``wrap'' the functions exported by package \ggplot inside a new function. For this we need to find out what are the parameters and their order and duplicate these in our wrapper. Looking at the ``usage'' section of the help page for \ggtheme{theme\_gray()} is enough. In this case, we retain compatibility, but add a new base parameter, \code{base\_color}, and set a different default for \code{base\_family}. The key detail is passing \code{complete = TRUE} to \Rfunction{theme()}, as this tags the returned theme as being usable by itself, resulting in replacement of any theme already in a plot when it is added. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my_theme_gray} \hlkwb{<-} \hlkwa{function} \hlstd{(}\hlkwc{base_size} \hlstd{=} \hlnum{11}\hlstd{,} @@ -20913,7 +21126,7 @@ \subsection{Defining a new theme} In the chunk above we have created our own theme constructor, without too much effort, and using an approach that is very likely to continue working with future versions of \ggplot. The saved theme is a function with parameters and defaults for them. In this example we have kept the function parameters the same as those used in \ggplot, only adding an additional parameter after the existing ones to maximize compatibility and avoid surprising users. To avoid surprising users, we may want additionally to make \code{my\_theme\_grey()} a synonym of \code{my\_theme\_gray()} following \ggplot practice. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my_theme_grey} \hlkwb{<-} \hlstd{my_theme_gray} \end{alltt} @@ -20923,7 +21136,7 @@ \subsection{Defining a new theme} Finally, we use the new theme constructor in the same way as those defined in \ggplot. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{p} \hlopt{+} \hlkwd{my_theme_gray}\hlstd{(}\hlnum{15}\hlstd{,} \hlkwc{base_color} \hlstd{=} \hlstr{"darkred"}\hlstd{)} \end{alltt} @@ -20948,7 +21161,7 @@ \section{Composing plots} We start by creating and saving three plots. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{p1} \hlkwb{<-} \hlkwd{ggplot}\hlstd{(mpg,} \hlkwd{aes}\hlstd{(displ, cty,} \hlkwc{color} \hlstd{=} \hlkwd{factor}\hlstd{(cyl)))} \hlopt{+} \hlkwd{geom_point}\hlstd{()} \hlopt{+} @@ -20969,7 +21182,7 @@ \section{Composing plots} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{(p1} \hlopt{|} \hlstd{p2)} \hlopt{/} \hlstd{p3} \end{alltt} @@ -20979,7 +21192,7 @@ \section{Composing plots} We add a title and tag the panels with a letter. In this, and similar cases, parentheses may be needed to alter the default precedence of the \Rlang operators. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{((p1} \hlopt{|} \hlstd{p2)} \hlopt{/} \hlstd{p3)} \hlopt{+} \hlkwd{plot_annotation}\hlstd{(}\hlkwc{title} \hlstd{=} \hlstr{"Fuel use in city traffic:"}\hlstd{,} \hlkwc{tag_levels} \hlstd{=} \hlstr{'a'}\hlstd{)} @@ -21013,7 +21226,7 @@ \section{Composing plots} We first create a data frame, using \Rfunction{paste()} to assemble a vector of subscripted $\alpha$ values as character strings suitable for parsing into expressions. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{set.seed}\hlstd{(}\hlnum{54321}\hlstd{)} \hlcom{# make sure we always generate the same data} \hlstd{my.data} \hlkwb{<-} @@ -21029,7 +21242,7 @@ \section{Composing plots} We label each observation with a subscripted $alpha$. We cannot pass expressions to \emph{geometries} by simply mapping them to the label aesthetic. Instead, we pass character strings that can be parsed into expressions. In other words, character strings, that are written using the syntax of expressions. We need to set \code{parse = TRUE} in the call to the \emph{geometry} so that the strings, instead of being plotted as is, are parsed into expressions before the plot is rendered. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(x, y,} \hlkwc{label} \hlstd{= greek.label))} \hlopt{+} \hlkwd{geom_point}\hlstd{()} \hlopt{+} @@ -21051,7 +21264,7 @@ \section{Composing plots} We can also use a character string stored in a variable, and use function \Rfunction{parse()} to parse it in cases where an expression is required as we do here for \code{subtitle}. In this example we also set tick labels to expressions, taking advantage that \Rfunction{expression()} accepts multiple arguments separated by commas returning a vector of expressions. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my_eq.char} \hlkwb{<-} \hlstr{"alpha[i]"} \hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(x, y))} \hlopt{+} @@ -21080,7 +21293,7 @@ \section{Composing plots} When using \Rfunction{expression()}, bare quotation marks can be embedded, \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(cars,} \hlkwd{aes}\hlstd{(speed, dist))} \hlopt{+} \hlkwd{geom_point}\hlstd{()} \hlopt{+} @@ -21092,7 +21305,7 @@ \section{Composing plots} while in the case of \Rfunction{parse()} they need to be \emph{escaped}, \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(cars,} \hlkwd{aes}\hlstd{(speed, dist))} \hlopt{+} \hlkwd{geom_point}\hlstd{()} \hlopt{+} @@ -21104,7 +21317,7 @@ \section{Composing plots} and in some cases will be enclosed within a format function. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(cars,} \hlkwd{aes}\hlstd{(speed, dist))} \hlopt{+} \hlkwd{geom_point}\hlstd{()} \hlopt{+} @@ -21116,7 +21329,7 @@ \section{Composing plots} Some additional remarks. If \Rfunction{expression()} is passed multiple arguments, it returns a vector of expressions. Where \Rfunction{ggplot()} expects a single value as an argument, as in the case of axis labels, only the first member of the vector will be used. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(cars,} \hlkwd{aes}\hlstd{(speed, dist))} \hlopt{+} \hlkwd{geom_point}\hlstd{()} \hlopt{+} @@ -21128,7 +21341,7 @@ \section{Composing plots} Depending on the location within a expression, spaces maybe ignored, or illegal. To juxtapose elements without adding space use \code{*}, to explicitly insert white space, use \code{\textasciitilde}. As shown above, spaces are accepted within quoted text. Consequently, the following alternatives can also be used. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{xlab}\hlstd{(}\hlkwd{parse}\hlstd{(}\hlkwc{text} \hlstd{=} \hlstr{"x[1]~~~~\textbackslash{}"test\textbackslash{}""}\hlstd{))} \end{alltt} @@ -21136,7 +21349,7 @@ \section{Composing plots} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{xlab}\hlstd{(}\hlkwd{parse}\hlstd{(}\hlkwc{text} \hlstd{=} \hlstr{"x[1]~~~~plain(test)"}\hlstd{))} \end{alltt} @@ -21146,7 +21359,7 @@ \section{Composing plots} However, unquoted white space is discarded. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{xlab}\hlstd{(}\hlkwd{parse}\hlstd{(}\hlkwc{text} \hlstd{=} \hlstr{"x[1]*plain( test)"}\hlstd{))} \end{alltt} @@ -21156,7 +21369,7 @@ \section{Composing plots} Finally, it can be surprising that trailing zeros in numeric values appearing within an expression or text to be parsed are dropped. To force the trailing zeros to be retained we need to enclose the number in quotation marks so that it is interpreted as a character string. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(cars,} \hlkwd{aes}\hlstd{(speed, dist))} \hlopt{+} \hlkwd{geom_point}\hlstd{()} \hlopt{+} @@ -21171,7 +21384,7 @@ \section{Composing plots} Above we used \Rfunction{paste()} to insert values stored in a variable; functions \Rfunction{format()}, \Rfunction{sprintf()}, and \Rfunction{strftime()} allow the conversion into character strings of other values. These functions can be used when creating plots to generate suitable character strings for the \code{label} \emph{aesthetic} out of numeric, logical, date, time, and even character values. They can be, for example, used to create labels within a call to \code{aes()}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{sprintf}\hlstd{(}\hlstr{"log(%.3f) = %.3f"}\hlstd{,} \hlnum{5}\hlstd{,} \hlkwd{log}\hlstd{(}\hlnum{5}\hlstd{))} \end{alltt} @@ -21198,7 +21411,7 @@ \section{Composing plots} We use \Rfunction{bquote()} to substitute variables or expressions enclosed in \code{.( )} by their value. Be aware that the argument to \Rfunction{bquote()} needs to be written as an expression; in this example we need to use a tilde, \code{\textasciitilde}, to insert a space between words. Furthermore, if the expressions include variables, these will be searched for in the environment rather than in \code{data}, except within a call to \code{aes()}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(cars,} \hlkwd{aes}\hlstd{(speed, dist))} \hlopt{+} \hlkwd{geom_point}\hlstd{()} \hlopt{+} @@ -21218,7 +21431,7 @@ \section{Composing plots} In the case of \Rfunction{substitute()} we supply what is to be used for substitution through a named list. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{ggplot}\hlstd{(cars,} \hlkwd{aes}\hlstd{(speed, dist))} \hlopt{+} \hlkwd{geom_point}\hlstd{()} \hlopt{+} @@ -21238,7 +21451,7 @@ \section{Composing plots} For example, substitution can be used to assemble an expression within a function based on the arguments passed. One case of interest is to retrieve the name of the object passed as an argument, from within a function. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{deparse_test} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{) \{} \hlkwd{print}\hlstd{(}\hlkwd{deparse}\hlstd{(}\hlkwd{substitute}\hlstd{(x)))} @@ -21291,7 +21504,7 @@ \subsection{Saving plot layers and scales in variables} We create a plot and save it to variable \code{myplot} and we separately save the values returned by a call to function \code{labs()}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{myplot} \hlkwb{<-} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} @@ -21313,7 +21526,7 @@ \subsection{Saving plot layers and scales in variables} \end{warningbox} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{myplot} \hlstd{myplot} \hlopt{+} \hlstd{mylabs} \hlopt{+} \hlkwd{theme_bw}\hlstd{(}\hlnum{16}\hlstd{)} @@ -21325,7 +21538,7 @@ \subsection{Saving plot layers and scales in variables} We can also save intermediate results. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{mylogplot} \hlkwb{<-} \hlstd{myplot} \hlopt{+} \hlkwd{scale_y_log10}\hlstd{(}\hlkwc{limits}\hlstd{=}\hlkwd{c}\hlstd{(}\hlnum{8}\hlstd{,}\hlnum{55}\hlstd{))} \hlstd{mylogplot} \hlopt{+} \hlstd{mylabs} \hlopt{+} \hlkwd{theme_bw}\hlstd{(}\hlnum{16}\hlstd{)} @@ -21338,7 +21551,7 @@ \subsection{Saving plot layers and scales in lists} If the pieces to be put together do not include a \code{"gg"} object, we can group them into an \Rlang list and save it. When we later add the saved list to a \code{"gg"} object, the members of the list are added one by one to the plot respecting their order. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{myparts} \hlkwb{<-} \hlkwd{list}\hlstd{(mylabs,} \hlkwd{theme_bw}\hlstd{(}\hlnum{16}\hlstd{))} \hlstd{mylogplot} \hlopt{+} \hlstd{myparts} @@ -21355,7 +21568,7 @@ \subsection{Using functions as building blocks} When the blocks we assemble need to accept arguments when used, we have to define functions instead of saving plot components to variables. The functions we define, have to return a \code{"gg"} object, a list of plot components, or a single plot component. The simplest use is to alter some defaults in existing constructor functions returning \code{"gg"} objects or layers. The ellipsis (\code{...}) allows passing named arguments to a nested function. In this case, every single argument passed by name to \code{bw\_ggplot()} will be copied as argument to the nested call to \code{ggplot()}. Be aware, that supplying arguments by position, is possible only for parameters explicitly included in the definition of the wrapper function, \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{bw_ggplot} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{...}\hlstd{) \{} \hlkwd{ggplot}\hlstd{(...)} \hlopt{+} @@ -21368,7 +21581,7 @@ \subsection{Using functions as building blocks} which could be used as follows. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{bw_ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} @@ -21395,7 +21608,7 @@ \section{Generating output files}\label{sec:plot:render} For example when rendering a plot to\index{plots!PDF output} PDF, Encapsulated Postcript, SVG or other vector graphics formats, arguments passed to \code{width} and \code{height} are expressed in inches. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{fig1} \hlkwb{<-} \hlkwd{ggplot}\hlstd{(}\hlkwd{data.frame}\hlstd{(}\hlkwc{x} \hlstd{=} \hlopt{-}\hlnum{3}\hlopt{:}\hlnum{3}\hlstd{),} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= x))} \hlopt{+} \hlkwd{stat_function}\hlstd{(}\hlkwc{fun} \hlstd{= dnorm)} @@ -21409,7 +21622,7 @@ \section{Generating output files}\label{sec:plot:render} For Encapsulated Postscript\index{plots!Postscript output} and SVG\index{plots!SVG output} output, we only need to substitute \code{pdf()} with \code{postscript()} or \code{svg()}, respectively. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{postscript}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"fig1.eps"}\hlstd{,} \hlkwc{width} \hlstd{=} \hlnum{8}\hlstd{,} \hlkwc{height} \hlstd{=} \hlnum{6}\hlstd{)} \hlkwd{print}\hlstd{(fig1)} @@ -21421,7 +21634,7 @@ \section{Generating output files}\label{sec:plot:render} In the case of graphics devices for\index{plots!bitmap output} file output in BMP, JPEG, PNG and TIFF bitmap formats, arguments passed to \code{width} and \code{height} are expressed in pixels. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{tiff}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"fig1.tiff"}\hlstd{,} \hlkwc{width} \hlstd{=} \hlnum{1000}\hlstd{,} \hlkwc{height} \hlstd{=} \hlnum{800}\hlstd{)} \hlkwd{print}\hlstd{(fig1)} @@ -21440,7 +21653,7 @@ \section{Further reading} An\index{further reading!grammar of graphics}\index{further reading!plotting} in-depth discussion of the many extensions to package \pkgname{ggplot2} is outside the scope of this book. Several books describe in detail the use of \pkgname{ggplot2}, being \citebooktitle{Wickham2016} \autocite{Wickham2016} the one written by the main author of the package. For inspiration or worked out examples, the book \citebooktitle{Chang2018} \autocite{Chang2018} is an excellent reference. In depth explanations of the technical aspects of \Rlang graphics are available in the book \citebooktitle{Murrell2019} \autocite{Murrell2019}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{verbatim} ## Error : package 'ggplot2' is required by 'ggpp' so will not be detached \end{verbatim} @@ -21485,7 +21698,7 @@ \section{Introduction} \section{Packages used in this chapter} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{install.packages}\hlstd{(learnrbook}\hlopt{::}\hlstd{pkgs_ch_data)} \end{alltt} @@ -21495,7 +21708,7 @@ \section{Packages used in this chapter} To run the examples included in this chapter, you need first to load some packages from the library (see section \ref{sec:script:packages} on page \pageref{sec:script:packages} for details on the use of packages). \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{library}\hlstd{(learnrbook)} \hlkwd{library}\hlstd{(tibble)} @@ -21528,7 +21741,7 @@ \section{Packages used in this chapter} Copy the files using: \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{pkg.path} \hlkwb{<-} \hlkwd{system.file}\hlstd{(}\hlstr{"extdata"}\hlstd{,} \hlkwc{package} \hlstd{=} \hlstr{"learnrbook"}\hlstd{)} \hlkwd{file.copy}\hlstd{(pkg.path,} \hlstr{"."}\hlstd{,} \hlkwc{overwrite} \hlstd{=} \hlnum{TRUE}\hlstd{,} \hlkwc{recursive} \hlstd{=} \hlnum{TRUE}\hlstd{)} @@ -21542,7 +21755,7 @@ \section{Packages used in this chapter} We also make sure the folder used to save data read from the internet, exists. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{save.path} \hlkwb{=} \hlstr{"./data"} \hlkwa{if} \hlstd{(}\hlopt{!}\hlkwd{dir.exists}\hlstd{(save.path)) \{} @@ -21566,7 +21779,7 @@ \section{File names and operations}\label{sec:files:filenames} \Rlang provides functions which help with portability, by hiding the idiosyncrasies of the different OSs from \Rlang code. In scripts these functions should be preferred over direct call to OS commands (i.e., using \Rfunction{shell()} or \Rfunction{system()}) whenever possible. As the algorithm needed to extract a file name from a file path is OS specific, \Rlang provides functions such as \Rfunction{basename()}, whose implementation is OS specific but from the side of \Rlang code behave identically---these functions hide the differences among OSs from the user of \Rlang. The chunk below can be expected to work correctly under any OS for which \Rlang is available. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{basename}\hlstd{(}\hlstr{"extdata/my-file.txt"}\hlstd{)} \end{alltt} @@ -21583,7 +21796,7 @@ \section{File names and operations}\label{sec:files:filenames} While in \pgrmname{Unix} and \pgrmname{Linux} folder nesting in file paths is marked with a forward slash character (\verb|/|), under \pgrmname{MS-Windows} it is marked with a backslash character (\verb|\|). Backslash (\verb|\|) is an escape character in \Rlang and interpreted as the start of an embedded special sequence of characters (see section \ref{sec:calc:character} on page \pageref{sec:calc:character}), while in \Rlang a forward slash (\verb|/|) can be used for file paths under any OS, and escaped backslash (\verb|\\|) is valid only under MS-Windows. Consequently, \verb|/| should be always preferred to \verb|\\| to ensure portability, and is the approach used in this book. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{basename}\hlstd{(}\hlstr{"extdata/my-file.txt"}\hlstd{)} \end{alltt} @@ -21603,7 +21816,7 @@ \section{File names and operations}\label{sec:files:filenames} The complementary function to \code{basename()} is \Rfunction{dirname()} and extracts the bare path to the containing folder, from a full file path. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{dirname}\hlstd{(}\hlstr{"extdata/my-file.txt"}\hlstd{)} \end{alltt} @@ -21618,7 +21831,7 @@ \section{File names and operations}\label{sec:files:filenames} Functions \Rfunction{getwd()} and \Rfunction{setwd()} can be used to get the path to the current working directory and to set a directory as current, respectively. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlcom{# not run} \hlkwd{getwd}\hlstd{()} @@ -21629,7 +21842,7 @@ \section{File names and operations}\label{sec:files:filenames} Function \Rfunction{setwd()} returns the path to the current working directory, allowing us to portably set the working directory to the previous one. Both relative paths (relative to the current working directory), as in the example, or absolute paths (given in full) are accepted as an argument. In mainstream OSs ``\code{.}'' indicates the current directory and ``\code{..}'' the directory above the current one. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlcom{# not run} \hlstd{oldwd} \hlkwb{<-} \hlkwd{setwd}\hlstd{(}\hlstr{".."}\hlstd{)} @@ -21641,7 +21854,7 @@ \section{File names and operations}\label{sec:files:filenames} The returned value is always an absolute full path, so it remains valid even if the path to the working directory changes more than once before being restored. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlcom{# not run} \hlstd{oldwd} @@ -21656,7 +21869,7 @@ \section{File names and operations}\label{sec:files:filenames} We can also obtain lists of files and/or directories (= disk folders) portably across OSs. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{head}\hlstd{(}\hlkwd{list.files}\hlstd{())} \end{alltt} @@ -21705,7 +21918,7 @@ \section{File names and operations}\label{sec:files:filenames} Base \Rlang provides several functions for portably working with files, and they are listed in the help page for \code{files} and in individual help pages. Use \code{help("files")} to access the help for this ``family'' of functions. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwa{if} \hlstd{(}\hlopt{!}\hlkwd{file.exists}\hlstd{(}\hlstr{"xxx.txt"}\hlstd{)) \{} \hlkwd{file.create}\hlstd{(}\hlstr{"xxx.txt"}\hlstd{)} @@ -21725,9 +21938,9 @@ \section{File names and operations}\label{sec:files:filenames} \end{alltt} \begin{verbatim} ## size isdir mode mtime ctime -## xxx.txt 0 FALSE 666 2023-09-08 01:03:01 2023-09-08 01:03:01 +## xxx.txt 0 FALSE 666 2023-09-09 03:18:35 2023-09-09 03:18:35 ## atime exe -## xxx.txt 2023-09-08 01:03:01 no +## xxx.txt 2023-09-09 03:18:35 no \end{verbatim} \begin{alltt} \hlkwd{file.rename}\hlstd{(}\hlstr{"xxx.txt"}\hlstd{,} \hlstr{"zzz.txt"}\hlstd{)} @@ -21766,7 +21979,7 @@ \section{Opening and closing file connections}\label{sec:io:connections} Examples in the rest of this chapter use as an argument for the \code{file} formal parameter literal paths or URLs, and complete the reading or writing operations within the call to a function. Sometimes it is necessary to read or write a text file sequentially, one row or record at a time. In such cases it is most efficient to keep the file open between reads and close the connection only when it is no longer needed. See \code{help(connections)} for details about the various functions available and their behavior in different OSs. In the next example we open a file connection, read two lines, first the top one with column headers, then in a separate call to \Rfunction{readLines()}, the two lines or records with data, and finally close the connection. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{f1} \hlkwb{<-} \hlkwd{file}\hlstd{(}\hlstr{"extdata/not-aligned-ASCII-UK.csv"}\hlstd{,} \hlkwc{open} \hlstd{=} \hlstr{"r"}\hlstd{)} \hlcom{# open for reading} \hlkwd{readLines}\hlstd{(f1,} \hlkwc{n} \hlstd{=} \hlnum{1}\hlstd{)} @@ -21778,7 +21991,7 @@ \section{Opening and closing file connections}\label{sec:io:connections} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{readLines}\hlstd{(f1,} \hlkwc{n} \hlstd{=} \hlnum{2}\hlstd{)} \end{alltt} @@ -21811,7 +22024,7 @@ \section{Plain-text files}\label{sec:files:txt} To demonstrate some of these problems, I create a data frame with name sanitation disabled, and in the second statement with sanitation enabled. The first statement is equivalent to the default behavior of functions in package \pkgname{readr} and the second is equivalent to the behavior of base \Rlang functions. \pkgname{readr} prioritizes the integrity of the original data while \Rlang prioritizes compatibility with R's naming rules. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{data.frame}\hlstd{(}\hlkwc{a} \hlstd{=} \hlnum{1}\hlstd{,} \hlstr{"a "} \hlstd{=} \hlnum{2}\hlstd{,} \hlstr{" a"} \hlstd{=} \hlnum{3}\hlstd{,} \hlkwc{check.names} \hlstd{=} \hlnum{FALSE}\hlstd{)} \end{alltt} @@ -21832,7 +22045,7 @@ \section{Plain-text files}\label{sec:files:txt} An even more subtle case is when characters can be easily confused by the user reading the output: zero and o (\code{a0} vs.\ \code{aO}) or el and one (\code{al} vs.\ \code{a1}) can be difficult to distinguish in some fonts. When using encodings capable of storing many character shapes, such as unicode, in some cases two characters with almost identical visual shape may be encoded as different characters. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{data.frame}\hlstd{(}\hlkwc{al} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{a1} \hlstd{=} \hlnum{2}\hlstd{,} \hlkwc{aO} \hlstd{=} \hlnum{3}\hlstd{,} \hlkwc{a0} \hlstd{=} \hlnum{4}\hlstd{)} \end{alltt} @@ -21857,7 +22070,7 @@ \section{Plain-text files}\label{sec:files:txt} Example file \code{not-aligned-ASCII-UK.csv} contains: \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{verbatim} col1,col2,col3,col4 1.0,24.5,346,ABC @@ -21867,7 +22080,7 @@ \section{Plain-text files}\label{sec:files:txt} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{from_csv_a.df} \hlkwb{<-} \hlkwd{read.csv}\hlstd{(}\hlstr{"extdata/not-aligned-ASCII-UK.csv"}\hlstd{,} \hlkwc{stringsAsFactors} \hlstd{=} \hlnum{FALSE}\hlstd{)} \end{alltt} @@ -21875,7 +22088,7 @@ \section{Plain-text files}\label{sec:files:txt} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{sapply}\hlstd{(from_csv_a.df, class)} \end{alltt} @@ -21896,7 +22109,7 @@ \section{Plain-text files}\label{sec:files:txt} Wether columns containing character strings that cannot be converted into numbers are converted into factors or remain as character strings in the returned data frame depends on the value passed to parameter \code{stringsAsFactors}. The default changed in \Rlang version 4.0.0 from \code{TRUE} into \code{FALSE}, so it is better to explicitly pass an argument when it is possible that code is run on both newer and older versions of \Rlang. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{from_csv_a.df} \hlkwb{<-} \hlkwd{read.csv}\hlstd{(}\hlstr{"extdata/not-aligned-ASCII-UK.csv"}\hlstd{,} \hlkwc{stringsAsFactors} \hlstd{=} \hlnum{TRUE}\hlstd{)} \end{alltt} @@ -21904,7 +22117,7 @@ \section{Plain-text files}\label{sec:files:txt} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{sapply}\hlstd{(from_csv_a.df, class)} \end{alltt} @@ -21936,7 +22149,7 @@ \section{Plain-text files}\label{sec:files:txt} Example file \code{aligned-ASCII-UK.csv} contains comma-separated-values with added white space to align the columns, to make it easier to read by humans. These aligned fields contain leading and trailing white spaces that are included in string values when the file is read. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{verbatim} col1, col2, col3, col4 1.0, 24.5, 346, ABC @@ -21948,7 +22161,7 @@ \section{Plain-text files}\label{sec:files:txt} Although space characters are read as part of the fields, they are ignored when conversion to numeric takes place. The remaining leading and trailing spaces in character strings are difficult to see when data frames are printed. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{from_csv_b.df} \hlkwb{<-} \hlkwd{read.csv}\hlstd{(}\hlstr{"extdata/aligned-ASCII-UK.csv"}\hlstd{,} \hlkwc{stringsAsFactors} \hlstd{=} \hlnum{TRUE}\hlstd{)} \end{alltt} @@ -21958,7 +22171,7 @@ \section{Plain-text files}\label{sec:files:txt} Using \code{levels()} we can more clearly see that the labels of the automatically created factor levels contain leading spaces. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{sapply}\hlstd{(from_csv_b.df, class)} \end{alltt} @@ -21985,7 +22198,7 @@ \section{Plain-text files}\label{sec:files:txt} By default, column names are sanitized but factor levels are not. By consulting the documentation with \code{help(read.csv)} we discover that by passing an additional argument we can change this default and obtain the data read as desired. Most likely the default has been chosen so that by default data integrity is maintained. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{from_csv_e.df} \hlkwb{<-} \hlkwd{read.csv}\hlstd{(}\hlstr{"extdata/aligned-ASCII-UK.csv"}\hlstd{,} \hlkwc{stringsAsFactors} \hlstd{=} \hlnum{TRUE}\hlstd{,} \hlkwc{strip.white} \hlstd{=} \hlnum{TRUE}\hlstd{)} @@ -22014,7 +22227,7 @@ \section{Plain-text files}\label{sec:files:txt} Decimal points and exponential notation are allowed for floating point values. In English-speaking locales, the decimal mark is a point, while in many other locales it is a comma. If a comma is used as decimal marker, we can no longer use it as field separator and is usually substituted by a semicolon (\verb|;|). In such a case we can use \Rfunction{read.csv2()} and \Rfunction{write.csv2()}. Furthermore, parameters \code{dec} and \code{sep} allow setting them to arbitrary characters. Function \Rfunction{read.table()} does the actual work and functions like \Rfunction{read.csv()} only differ in the default arguments for the different parameters. By default, \Rfunction{read.table()} expects fields to be separated by white space (one or more spaces, tabs, new lines, or carriage return). Strings with embedded spaces need to be quoted in the file as shown below. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{verbatim} col1 col2 col3 col4 1.0 24.5 346 ABC @@ -22024,7 +22237,7 @@ \section{Plain-text files}\label{sec:files:txt} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{from_txt_b.df} \hlkwb{<-} \hlkwd{read.table}\hlstd{(}\hlstr{"extdata/aligned-ASCII.txt"}\hlstd{,} \hlkwc{header} \hlstd{=} \hlnum{TRUE}\hlstd{)} \end{alltt} @@ -22032,7 +22245,7 @@ \section{Plain-text files}\label{sec:files:txt} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{sapply}\hlstd{(from_txt_b.df, class)} \end{alltt} @@ -22061,7 +22274,7 @@ \section{Plain-text files}\label{sec:files:txt} Function \Rfunction{read.fortran()} is a wrapper on \Rfunction{read.fwf()} that accepts format definitions similar to those used in \langname{FORTRAN}. One particularity of \langname{FORTRAN} \emph{formatted data transfer} is that the decimal marker can be omitted in the saved file and its position specified as part of the format definition, a trick used to make text files (or stacks of punch cards!) smaller. Modern versions of \langname{FORTRAN} support reading from and writing to other formats like those using field delimiters described above. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{verbatim} 10245346ABC 234456 78Z Y @@ -22070,7 +22283,7 @@ \section{Plain-text files}\label{sec:files:txt} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{from_fwf_a.df} \hlkwb{<-} \hlkwd{read.fortran}\hlstd{(}\hlstr{"extdata/aligned-ASCII.fwf"}\hlstd{,} \hlkwc{format} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"2F3.1"}\hlstd{,} \hlstr{"F3.0"}\hlstd{,} \hlstr{"A3"}\hlstd{),} @@ -22080,7 +22293,7 @@ \section{Plain-text files}\label{sec:files:txt} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{sapply}\hlstd{(from_fwf_a.df, class)} \end{alltt} @@ -22114,7 +22327,7 @@ \section{Plain-text files}\label{sec:files:txt} Next we give one example of the use of a \emph{write} function matching one of the \emph{read} functions described above. The \Rfunction{write.csv()} function takes as an argument a data frame, or an object that can be coerced into a data frame, converts it to character strings, and saves them to a text file. We first create the data frame that we will write to disk. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my.df} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{,} \hlkwc{y} \hlstd{=} \hlnum{5}\hlopt{:}\hlnum{1} \hlopt{/} \hlnum{10}\hlstd{,} \hlkwc{z} \hlstd{= letters[}\hlnum{1}\hlopt{:}\hlnum{5}\hlstd{])} \end{alltt} @@ -22124,7 +22337,7 @@ \section{Plain-text files}\label{sec:files:txt} We write \code{my.df} to a CSV file suitable for an English language locale, and then display its contents. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{write.csv}\hlstd{(my.df,} \hlkwc{file} \hlstd{=} \hlstr{"my-file1.csv"}\hlstd{,} \hlkwc{row.names} \hlstd{=} \hlnum{FALSE}\hlstd{)} \hlkwd{file.show}\hlstd{(}\hlstr{"my-file1.csv"}\hlstd{,} \hlkwc{pager} \hlstd{=} \hlstr{"console"}\hlstd{)} @@ -22133,7 +22346,7 @@ \section{Plain-text files}\label{sec:files:txt} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{verbatim} "x","y","z" 1,0.5,"a" @@ -22156,7 +22369,7 @@ \section{Plain-text files}\label{sec:files:txt} Function \Rfunction{cat()} takes \Rlang objects and writes them after conversion to character strings to the console or a file, inserting one or more characters as separators, by default, a space. This separator can be set through parameter \code{sep}. In our example we set \code{sep} to a new line (entered as the escape sequence \code{"\textbackslash n"}). \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my.lines} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlstr{"abcd"}\hlstd{,} \hlstr{"hello world"}\hlstd{,} \hlstr{"123.45"}\hlstd{)} \hlkwd{cat}\hlstd{(my.lines,} \hlkwc{file} \hlstd{=} \hlstr{"my-file2.txt"}\hlstd{,} \hlkwc{sep} \hlstd{=} \hlstr{"\textbackslash{}n"}\hlstd{)} @@ -22166,7 +22379,7 @@ \section{Plain-text files}\label{sec:files:txt} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{verbatim} abcd hello world @@ -22196,7 +22409,7 @@ \section{Plain-text files}\label{sec:files:txt} As we can see in this first example, these functions also report to the console the specifications of the columns, which is important when these are guessed from the file contents, or even only from rows near the top of the file. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{read_csv}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"extdata/aligned-ASCII-UK.csv"}\hlstd{)} \end{alltt} @@ -22213,7 +22426,7 @@ \section{Plain-text files}\label{sec:files:txt} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{read_csv}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"extdata/not-aligned-ASCII-UK.csv"}\hlstd{)} \end{alltt} @@ -22232,7 +22445,7 @@ \section{Plain-text files}\label{sec:files:txt} Package \pkgname{readr} is under active development, and different major versions are not fully compatible with each other. Because of the misaligned fields in file \code{"not-aligned-ASCII.txt"} in the past we needed to use \Rfunction{read\_table2()}, which allowed misalignment of fields, similarly to \Rfunction{read.table()}. This function has been renamed as \Rfunction{read\_table()} and \Rfunction{read\_table2()} deprecated. However, parsing of both files fails if they are read with \Rfunction{read\_table()}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{read_table}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"extdata/aligned-ASCII.txt"}\hlstd{)} \end{alltt} @@ -22251,7 +22464,7 @@ \section{Plain-text files}\label{sec:files:txt} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{read_table}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"extdata/not-aligned-ASCII.txt"}\hlstd{)} \end{alltt} @@ -22272,7 +22485,7 @@ \section{Plain-text files}\label{sec:files:txt} Function \Rfunction{read\_delim()} with space as the delimiter needs to be used instead of \Rfunction{read\_table()}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{read_delim}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"extdata/not-aligned-ASCII.txt"}\hlstd{,} \hlkwc{delim} \hlstd{=} \hlstr{" "}\hlstd{)} \end{alltt} @@ -22302,7 +22515,7 @@ \section{Plain-text files}\label{sec:files:txt} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{read_table}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"extdata/miss-aligned-ASCII.txt"}\hlstd{)} \end{alltt} @@ -22321,7 +22534,7 @@ \section{Plain-text files}\label{sec:files:txt} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{read_table}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"extdata/miss-aligned-ASCII.txt"}\hlstd{,} \hlkwc{guess_max} \hlstd{=} \hlnum{3L}\hlstd{)} \end{alltt} @@ -22349,7 +22562,7 @@ \section{Plain-text files}\label{sec:files:txt} The \code{write\_} functions from \pkgname{readr} are the counterpart to \code{write.} functions from \pkgname{utils}. In addition to the expected \Rfunction{write\_csv()}, \Rfunction{write\_csv2()}, \Rfunction{write\_tsv()} and \Rfunction{write\_delim()}, \pkgname{readr} provides functions that write \pgrmname{MS-Excel}-friendly CSV files. We demonstrate here the use of \Rfunction{write\_excel\_csv()} to produce a text file with comma-separated fields suitable for import into \pgrmname{MS-Excel}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{write_excel_csv}\hlstd{(my.df,} \hlkwc{file} \hlstd{=} \hlstr{"my-file6.csv"}\hlstd{)} \hlkwd{file.show}\hlstd{(}\hlstr{"my-file6.csv"}\hlstd{,} \hlkwc{pager} \hlstd{=} \hlstr{"console"}\hlstd{)} @@ -22359,7 +22572,7 @@ \section{Plain-text files}\label{sec:files:txt} That saves a file containing the following text: \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{verbatim} "x","y","z" 1,0.5,"a" @@ -22380,7 +22593,7 @@ \section{Plain-text files}\label{sec:files:txt} The contents of the whole file are returned as a character vector of length one, with the embedded new line markers. We use \code{cat()} to print it so these new line characters force the start of a new print-out line. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{one.str} \hlkwb{<-} \hlkwd{read_file}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"extdata/miss-aligned-ASCII.txt"}\hlstd{)} \hlkwd{length}\hlstd{(one.str)} @@ -22420,7 +22633,7 @@ \section{XML and HTML files} We first read a web page with function \Rfunction{read\_html()}, and explore its structure. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{web_page} \hlkwb{<-} \hlkwd{read_html}\hlstd{(}\hlstr{"https://r.r4photobiology.info/index.html"}\hlstd{)} \hlkwd{html_structure}\hlstd{(web_page)} @@ -22615,7 +22828,7 @@ \section{XML and HTML files} Next we extract the text from its \code{title} attribute, using functions \Rfunction{xml\_find\_all()} and \Rfunction{xml\_text()}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{xml_text}\hlstd{(}\hlkwd{xml_find_all}\hlstd{(web_page,} \hlstr{".//title"}\hlstd{))} \end{alltt} @@ -22633,7 +22846,7 @@ \section{GPX files} GPX (GPS Exchange Format) files use an XML scheme designed for saving and exchanging data from geographic positioning systems (GPS). There is some variation on the variables saved depending on the settings of the GPS receiver. The example data used here is from a Transmeta BT747 GPS logger. The example below reads the data into a \code{tibble} as character strings. For plotting, the character values representing numbers and dates would need to be converted to numeric and datetime (\code{POSIXct}) values, respectively. In the case of plotting tracks on a map, it is preferable to use package \pkgname{sf} to import the tracks directly from the \code{.gpx} file into a layer (use of the dot pipe operator is described in section \ref{sec:data:pipes} on page \pageref{sec:data:pipes}). \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{xmlTreeParse}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"extdata/GPSDATA.gpx"}\hlstd{,} \hlkwc{useInternalNodes} \hlstd{=} \hlnum{TRUE}\hlstd{)} \hlopt{%.>%} \hlkwd{xmlRoot}\hlstd{(}\hlkwc{x} \hlstd{= .)} \hlopt{%.>%} @@ -22694,7 +22907,7 @@ \subsection{CSV files as middlemen} We first list the sheets contained in the workbook file with \Rfunction{excel\_sheets()}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{sheets} \hlkwb{<-} \hlkwd{excel_sheets}\hlstd{(}\hlstr{"extdata/Book1.xlsx"}\hlstd{)} \hlstd{sheets} @@ -22708,7 +22921,7 @@ \subsection{CSV files as middlemen} In this case, the argument passed to \code{sheet} is redundant, as there is only a single worksheet in the file. It is possible to use either the name of the sheet or a positional index (in this case \code{1} would be equivalent to \code{"my data"}). We use function \Rfunction{read\_excel()} to import the worksheet. Being part of the \pkgname{tidyverse} the returned value is a tibble and character columns are returned as is. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{Book1.df} \hlkwb{<-} \hlkwd{read_excel}\hlstd{(}\hlstr{"extdata/Book1.xlsx"}\hlstd{,} \hlkwc{sheet} \hlstd{=} \hlstr{"my data"}\hlstd{)} @@ -22729,7 +22942,7 @@ \subsection{CSV files as middlemen} We can also read a region instead of the whole worksheet. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{Book1_region.df} \hlkwb{<-} \hlkwd{read_excel}\hlstd{(}\hlstr{"extdata/Book1.xlsx"}\hlstd{,} \hlkwc{sheet} \hlstd{=} \hlstr{"my data"}\hlstd{,} @@ -22751,7 +22964,7 @@ \subsection{CSV files as middlemen} Of the remaining arguments, the most useful ones have the same names and play similar roles as in \pkgname{readr} (see section \ref{sec:files:readr} on page \pageref{sec:files:readr}). For example, we can set new names to the columns instead of reading their names from the worksheet. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{Book1_region.df} \hlkwb{<-} \hlkwd{read_excel}\hlstd{(}\hlstr{"extdata/Book1.xlsx"}\hlstd{,} \hlkwc{sheet} \hlstd{=} \hlstr{"my data"}\hlstd{,} @@ -22780,7 +22993,7 @@ \subsection{CSV files as middlemen} Here we use function \Rfunction{read.xlsx()}, indexing the worksheet by name. The returned value is a data frame, and following the expectations of \Rlang package \pkgnameNI{utils}, character columns are converted into factors by default. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{Book1_xlsx.df} \hlkwb{<-} \hlkwd{read.xlsx}\hlstd{(}\hlstr{"extdata/Book1.xlsx"}\hlstd{,} \hlkwc{sheetName} \hlstd{=} \hlstr{"my data"}\hlstd{)} @@ -22805,7 +23018,7 @@ \subsection{CSV files as middlemen} With function \Rfunction{write.xlsx()} we can write data frames out to Excel worksheets and even append new worksheets to an existing workbook. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{set.seed}\hlstd{(}\hlnum{456321}\hlstd{)} \hlstd{my.data} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{10}\hlstd{,} \hlkwc{y} \hlstd{= letters[}\hlnum{1}\hlopt{:}\hlnum{10}\hlstd{])} @@ -22837,7 +23050,7 @@ \subsection{CSV files as middlemen} Package \pkgname{readODS} provides functions for reading data saved in files that follow the \emph{Open Documents Standard}. Function \Rfunction{read\_ods()} has a similar but simpler user interface to that of \code{read\_excel()} and reads one worksheet at a time, with support only for skipping top rows. The value returned is a data frame. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{ods.df} \hlkwb{<-} \hlkwd{read_ods}\hlstd{(}\hlstr{"extdata/Book1.ods"}\hlstd{,} \hlkwc{sheet} \hlstd{=} \hlnum{1}\hlstd{)} \end{alltt} @@ -22845,7 +23058,7 @@ \subsection{CSV files as middlemen} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{ods.df} \end{alltt} @@ -22877,7 +23090,7 @@ \section{Statistical software}\label{sec:files:stat} Functions in package \pkgname{foreign} allow us to import data from files saved by several statistical analysis programs, including \pgrmname{SAS}, \pgrmname{Stata}, \pgrmname{SPSS}, \pgrmname{Systat}, \pgrmname{Octave} among others, and a function for writing data into files with formats native to \pgrmname{SAS}, \pgrmname{Stata}, and \pgrmname{SPSS}. \Rlang documents the use of these functions in detail in the \emph{R Data Import/Export} manual. As a simple example, we use function \Rfunction{read.spss()} to read a \texttt{.sav} file, saved a few years ago with the then current version of \pgrmname{SPSS}. We display only the first six rows and seven columns of the data frame, including a column with dates, which appears as numeric. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my_spss.df} \hlkwb{<-} \hlkwd{read.spss}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"extdata/my-data.sav"}\hlstd{,} \hlkwc{to.data.frame} \hlstd{=} \hlnum{TRUE}\hlstd{)} \hlstd{my_spss.df[}\hlnum{1}\hlopt{:}\hlnum{6}\hlstd{,} \hlkwd{c}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{6}\hlstd{,} \hlnum{17}\hlstd{)]} @@ -22897,7 +23110,7 @@ \section{Statistical software}\label{sec:files:stat} A second example, this time with a simple \code{.sav} file saved 15 years ago. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{thiamin.df} \hlkwb{<-} \hlkwd{read.spss}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"extdata/thiamin.sav"}\hlstd{,} \hlkwc{to.data.frame} \hlstd{=} \hlnum{TRUE}\hlstd{)} \hlkwd{head}\hlstd{(thiamin.df)} @@ -22917,7 +23130,7 @@ \section{Statistical software}\label{sec:files:stat} Another example, for a \pgrmname{Systat} file saved on an PC more than 20 years ago, and read with \Rfunction{read.systat()}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my_systat.df} \hlkwb{<-} \hlkwd{read.systat}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"extdata/BIRCH1.SYS"}\hlstd{)} \hlkwd{head}\hlstd{(my_systat.df)} @@ -22945,7 +23158,7 @@ \section{Statistical software}\label{sec:files:stat} We can use function \Rfunction{read\_sav()} to import a \code{.sav} file saved by a recent version of \pgrmname{SPSS}. As in the previous section, we display only the first six rows and seven columns of the data frame, including a column \code{treat} containing a labeled numeric vector and \code{harvest\_date} with dates encoded as \Rlang date values. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my_spss.tb} \hlkwb{<-} \hlkwd{read_sav}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"extdata/my-data.sav"}\hlstd{)} \hlstd{my_spss.tb[}\hlnum{1}\hlopt{:}\hlnum{6}\hlstd{,} \hlkwd{c}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{6}\hlstd{,} \hlnum{17}\hlstd{)]} @@ -22967,7 +23180,7 @@ \section{Statistical software}\label{sec:files:stat} Next, we import an \pgrmname{SPSS}'s \code{.sav} file saved 15 years ago. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{thiamin.tb} \hlkwb{<-} \hlkwd{read_sav}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"extdata/thiamin.sav"}\hlstd{)} \hlstd{thiamin.tb} @@ -23029,7 +23242,7 @@ \section{NetCDF files} We first open a connection to the file with function \Rfunction{nc\_open()}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{meteo_data.nc} \hlkwb{<-} \hlkwd{nc_open}\hlstd{(}\hlstr{"extdata/pevpr.sfc.mon.ltm.nc"}\hlstd{)} \hlkwd{str}\hlstd{(meteo_data.nc,} \hlkwc{max.level} \hlstd{=} \hlnum{1}\hlstd{)} @@ -23063,7 +23276,7 @@ \section{NetCDF files} The dimensions of the array data are described with metadata, in our examples mapping indexes to a grid of latitudes and longitudes and into a time vector as a third dimension. The dates are returned as character strings. We get here the variables one at a time with function \Rfunction{ncvar\_get()}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{time.vec} \hlkwb{<-} \hlkwd{ncvar_get}\hlstd{(meteo_data.nc,} \hlstr{"time"}\hlstd{)} \hlkwd{head}\hlstd{(time.vec)} @@ -23093,7 +23306,7 @@ \section{NetCDF files} We construct a \Rclass{tibble} object with PET values for one grid point, taking advantage of the \emph{recycling} of short vectors. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{pet.tb} \hlkwb{<-} \hlkwd{tibble}\hlstd{(}\hlkwc{time} \hlstd{=} \hlkwd{ncvar_get}\hlstd{(meteo_data.nc,} \hlstr{"time"}\hlstd{),} @@ -23127,7 +23340,7 @@ \section{NetCDF files} We open the file creating an object and simultaneously activating the first grid. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{meteo_data.tnc} \hlkwb{<-} \hlkwd{tidync}\hlstd{(}\hlstr{"extdata/pevpr.sfc.mon.ltm.nc"}\hlstd{)} \hlstd{meteo_data.tnc} @@ -23162,7 +23375,7 @@ \section{NetCDF files} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{hyper_dims}\hlstd{(meteo_data.tnc)} \end{alltt} @@ -23178,7 +23391,7 @@ \section{NetCDF files} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{hyper_vars}\hlstd{(meteo_data.tnc)} \end{alltt} @@ -23196,7 +23409,7 @@ \section{NetCDF files} the months using a pipe operator from \pkgname{wrapr} and methods from \pkgname{dplyr}. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{hyper_tibble}\hlstd{(meteo_data.tnc,} \hlkwc{lon} \hlstd{=} \hlkwd{signif}\hlstd{(lon,} \hlnum{1}\hlstd{)} \hlopt{==} \hlnum{9}\hlstd{,} @@ -23219,7 +23432,7 @@ \section{NetCDF files} In this second example, we extract data for all grid points along latitudes. To achieve this we need only to omit the test for \code{lat} from the chunk above. The tibble is assembled automatically and columns for the active dimensions added. The decoding of the months remains unchanged. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{hyper_tibble}\hlstd{(meteo_data.tnc,} \hlkwc{lon} \hlstd{=} \hlkwd{signif}\hlstd{(lon,} \hlnum{1}\hlstd{)} \hlopt{==} \hlnum{9}\hlstd{)} \hlopt{%.>%} @@ -23249,7 +23462,7 @@ \section{Remotely located data}\label{sec:files:remote} Many of the functions described above accept an URL address in place of a file name. Consequently files can be read remotely without having to first download and save a copy in the local file system. This can be useful, especially when file names are generated within a script. However, one should avoid, especially in the case of servers open to public access, repeatedly downloading the same file as this unnecessarily increases network traffic and workload on the remote server. Because of this, our first example reads a small file from my own web site. See section \ref{sec:files:txt} on page \pageref{sec:files:txt} for details on the use of these and other functions for reading text files. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{logger.df} \hlkwb{<-} \hlkwd{read.csv2}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"http://r4photobiology.info/learnr/logger_1.txt"}\hlstd{,} @@ -23272,7 +23485,7 @@ \section{Remotely located data}\label{sec:files:remote} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{logger.tb} \hlkwb{<-} \hlkwd{read_csv2}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"http://r4photobiology.info/learnr/logger_1.txt"}\hlstd{,} @@ -23307,7 +23520,7 @@ \section{Remotely located data}\label{sec:files:remote} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{download.file}\hlstd{(}\hlstr{"http://r4photobiology.info/learnr/my-data.xlsx"}\hlstd{,} \hlstr{"data/my-data-dwn.xlsx"}\hlstd{,} @@ -23319,7 +23532,7 @@ \section{Remotely located data}\label{sec:files:remote} Functions in package \pkgname{foreign}, as well as those in package \pkgname{haven}, support URLs. See section \ref{sec:files:stat} on page \pageref{sec:files:stat} for more information about importing this kind of data into \Rlang. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{remote_thiamin.df} \hlkwb{<-} \hlkwd{read.spss}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"http://r4photobiology.info/learnr/thiamin.sav"}\hlstd{,} @@ -23339,7 +23552,7 @@ \section{Remotely located data}\label{sec:files:remote} \end{knitrout} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{remote_my_spss.tb} \hlkwb{<-} \hlkwd{read_sav}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"http://r4photobiology.info/learnr/thiamin.sav"}\hlstd{)} @@ -23360,7 +23573,7 @@ \section{Remotely located data}\label{sec:files:remote} In this example we use a downloaded NetCDF file of long-term means for potential evapotranspiration from NOOA, the same used above in the \pkgname{ncdf4} example. This is a moderately large file at 444~KB. In this case, we cannot directly open the connection to the NetCDF file, and we first download it (commented out code, as we have a local copy), and then we open the local file. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{my.url} \hlkwb{<-} \hlkwd{paste}\hlstd{(}\hlstr{"ftp://ftp.cdc.noaa.gov/Datasets/ncep.reanalysis.derived/"}\hlstd{,} \hlstr{"surface_gauss/pevpr.sfc.mon.ltm.nc"}\hlstd{,} @@ -23397,7 +23610,7 @@ \section{Data acquisition from physical devices}\label{sec:data:acquisition} Here we use function \Rfunction{fromJSON()} from package \pkgname{jsonlite} to retrieve logged data from one sensor. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{hub.url} \hlkwb{<-} \hlstr{"http://localhost:4444/"} \hlstd{Meteo01.df} \hlkwb{<-} @@ -23411,7 +23624,7 @@ \section{Data acquisition from physical devices}\label{sec:data:acquisition} The minimum, mean, and maximum values for each logging interval need to be split from a single vector. We do this by indexing with a logical vector (recycled). The data returned is in long form, with quantity names and units also returned by the module, as well as the time. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{Meteo01.df[[}\hlstr{"streams"}\hlstd{]][[}\hlkwd{which}\hlstd{(Meteo01.df}\hlopt{$}\hlstd{id} \hlopt{==} \hlstr{"temperature"}\hlstd{)]]} \hlopt{%.>%} \hlkwd{as_tibble}\hlstd{(}\hlkwc{x} \hlstd{= .)} \hlopt{%.>%} @@ -23452,7 +23665,7 @@ \section{Databases}\label{sec:data:db} The additional steps compared to using \pkgname{dplyr} start with the need to establish a connection to a local or remote database. We will use \Rlang package \pkgname{RSQLite} to create a local temporary \pgrmname{SQLite} database. \pkgname{dbplyr} backends supporting other database systems are also available. We will use meteorological data from \pkgname{learnrbook} for this example. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{library}\hlstd{(dplyr)} \hlstd{con} \hlkwb{<-} \hlstd{DBI}\hlopt{::}\hlkwd{dbConnect}\hlstd{(RSQLite}\hlopt{::}\hlkwd{SQLite}\hlstd{(),} \hlkwc{dbname} \hlstd{=} \hlstr{":memory:"}\hlstd{)} @@ -23507,7 +23720,7 @@ \section{Databases}\label{sec:data:db} can be run in a ``clean'' system. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{unlink}\hlstd{(}\hlstr{"./data"}\hlstd{,} \hlkwc{recursive} \hlstd{=} \hlnum{TRUE}\hlstd{)} \hlkwd{unlink}\hlstd{(}\hlstr{"./extdata"}\hlstd{,} \hlkwc{recursive} \hlstd{=} \hlnum{TRUE}\hlstd{)} @@ -23546,7 +23759,7 @@ \section{Further reading} \chapter{Build information} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{Sys.info}\hlstd{()} \end{alltt} @@ -23556,7 +23769,7 @@ \chapter{Build information} \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\definecolor{shadecolor}{rgb}{1, 1, 1}\color{fgcolor}\begin{kframe} \begin{alltt} \hlkwd{sessionInfo}\hlstd{()} \end{alltt} diff --git a/using-r-main-crc.toc b/using-r-main-crc.toc index e4adf644..293181be 100644 --- a/using-r-main-crc.toc +++ b/using-r-main-crc.toc @@ -23,232 +23,232 @@ \contentsline {subsection}{\numberline {2.3.2}\textsf {R}\xspace sessions and workspaces}{14}{}% \contentsline {subsection}{\numberline {2.3.3}Using \textsf {R}\xspace interactively}{15}{}% \contentsline {subsection}{\numberline {2.3.4}Using \textsf {R}\xspace in a ``batch job''}{17}{}% -\contentsline {section}{\numberline {2.4}Reproducible data analysis with \textsf {R}\xspace }{19}{}% +\contentsline {section}{\numberline {2.4}Reproducible data analysis with \textsf {R}\xspace }{18}{}% \contentsline {section}{\numberline {2.5}Getting ready to use \textsf {R}\xspace }{20}{}% \contentsline {section}{\numberline {2.6}Further reading}{21}{}% \contentsline {chapter}{\numberline {3}Base R: ``Words'' and ``Sentences''}{23}{}% \contentsline {section}{\numberline {3.1}Aims of this chapter}{23}{}% \contentsline {section}{\numberline {3.2}Natural and computer languages}{24}{}% \contentsline {section}{\numberline {3.3}Numeric values and arithmetic}{24}{}% -\contentsline {section}{\numberline {3.4}Character values}{40}{}% -\contentsline {section}{\numberline {3.5}Logical values and Boolean algebra}{49}{}% -\contentsline {section}{\numberline {3.6}Comparison operators and operations}{52}{}% -\contentsline {section}{\numberline {3.7}Sets and set operations}{55}{}% -\contentsline {section}{\numberline {3.8}The `mode' and `class' of objects}{60}{}% -\contentsline {section}{\numberline {3.9}`Type' conversions}{62}{}% -\contentsline {section}{\numberline {3.10}Vector manipulation}{65}{}% -\contentsline {section}{\numberline {3.11}Matrices and multidimensional arrays}{72}{}% -\contentsline {section}{\numberline {3.12}Factors}{80}{}% -\contentsline {section}{\numberline {3.13}Further reading}{86}{}% -\contentsline {chapter}{\numberline {4}Base R: ``Collective Nouns''}{87}{}% -\contentsline {section}{\numberline {4.1}Aims of this chapter}{87}{}% -\contentsline {section}{\numberline {4.2}Data from surveys and experiments}{88}{}% -\contentsline {section}{\numberline {4.3}Lists}{88}{}% -\contentsline {subsection}{\numberline {4.3.1}Member extraction, deletion and insertion}{89}{}% -\contentsline {subsection}{\numberline {4.3.2}Nested lists}{92}{}% -\contentsline {section}{\numberline {4.4}Data frames}{96}{}% -\contentsline {subsection}{\numberline {4.4.1}Sub-setting data frames}{103}{}% -\contentsline {subsection}{\numberline {4.4.2}Summarizing and splitting data frames}{106}{}% -\contentsline {subsection}{\numberline {4.4.3}Re-arranging columns and rows}{109}{}% -\contentsline {subsection}{\numberline {4.4.4}Re-encoding or adding variables}{110}{}% -\contentsline {subsection}{\numberline {4.4.5}Operating within data frames}{111}{}% -\contentsline {section}{\numberline {4.5}Reshaping and editing data frames}{113}{}% -\contentsline {section}{\numberline {4.6}Attributes of \textsf {R}\xspace objects}{114}{}% -\contentsline {section}{\numberline {4.7}Saving and loading data}{117}{}% -\contentsline {subsection}{\numberline {4.7.1}Data sets in \textsf {R}\xspace and packages}{117}{}% -\contentsline {subsection}{\numberline {4.7.2}.rda files}{117}{}% -\contentsline {subsection}{\numberline {4.7.3}.rds files}{119}{}% -\contentsline {section}{\numberline {4.8}Plotting}{119}{}% -\contentsline {section}{\numberline {4.9}Further reading}{122}{}% -\contentsline {chapter}{\numberline {5}Base R: ``Paragraphs'' and ``Essays''}{123}{}% -\contentsline {section}{\numberline {5.1}Aims of this chapter}{123}{}% -\contentsline {section}{\numberline {5.2}Writing scripts}{123}{}% -\contentsline {subsection}{\numberline {5.2.1}What is a script?}{124}{}% -\contentsline {subsection}{\numberline {5.2.2}How do we use a script?}{125}{}% -\contentsline {subsection}{\numberline {5.2.3}How to write a script}{126}{}% -\contentsline {subsection}{\numberline {5.2.4}The need to be understandable to people}{126}{}% -\contentsline {subsection}{\numberline {5.2.5}Debugging scripts}{128}{}% -\contentsline {section}{\numberline {5.3}Compound statements}{130}{}% -\contentsline {section}{\numberline {5.4}Function calls}{132}{}% -\contentsline {section}{\numberline {5.5}Data pipes}{132}{}% -\contentsline {section}{\numberline {5.6}Conditional evaluation}{136}{}% -\contentsline {subsection}{\numberline {5.6.1}Non-vectorized \texttt {if}, \texttt {else} and \texttt {switch}}{136}{}% -\contentsline {subsection}{\numberline {5.6.2}Vectorized \texttt {ifelse()}}{143}{}% -\contentsline {section}{\numberline {5.7}Iteration}{145}{}% -\contentsline {subsection}{\numberline {5.7.1}\texttt {for} loops}{145}{}% -\contentsline {subsection}{\numberline {5.7.2}\texttt {while} loops}{150}{}% -\contentsline {subsection}{\numberline {5.7.3}\texttt {repeat} loops}{151}{}% -\contentsline {subsection}{\numberline {5.7.4}Explicit loops can be slow in \textsf {R}\xspace }{152}{}% -\contentsline {subsection}{\numberline {5.7.5}Nesting of loops}{154}{}% -\contentsline {subsubsection}{Clean-up}{155}{}% -\contentsline {section}{\numberline {5.8}Apply functions}{156}{}% -\contentsline {subsection}{\numberline {5.8.1}Applying functions to vectors, lists and data frames}{157}{}% -\contentsline {subsection}{\numberline {5.8.2}Applying functions to matrices and arrays}{159}{}% -\contentsline {section}{\numberline {5.9}Functions that replace loops}{162}{}% -\contentsline {section}{\numberline {5.10}Object names and character strings}{162}{}% -\contentsline {section}{\numberline {5.11}The multiple faces of loops}{164}{}% -\contentsline {section}{\numberline {5.12}Further reading}{166}{}% -\contentsline {chapter}{\numberline {6}Base R: Adding New ``Words''}{167}{}% -\contentsline {section}{\numberline {6.1}Aims of this chapter}{167}{}% -\contentsline {section}{\numberline {6.2}Defining functions and operators}{167}{}% -\contentsline {subsection}{\numberline {6.2.1}Ordinary functions}{171}{}% -\contentsline {subsection}{\numberline {6.2.2}Operators}{174}{}% -\contentsline {section}{\numberline {6.3}Objects, classes, and methods}{175}{}% -\contentsline {section}{\numberline {6.4}Scope of names}{178}{}% -\contentsline {section}{\numberline {6.5}Packages}{179}{}% -\contentsline {subsection}{\numberline {6.5.1}Sharing of \textsf {R}\xspace -language extensions}{179}{}% -\contentsline {subsection}{\numberline {6.5.2}Download, installation and use}{180}{}% -\contentsline {subsection}{\numberline {6.5.3}Finding suitable packages}{182}{}% -\contentsline {subsection}{\numberline {6.5.4}How packages work}{183}{}% -\contentsline {section}{\numberline {6.6}Further reading}{185}{}% -\contentsline {chapter}{\numberline {7}Base R: ``Verbs'' and ``Nouns'' for Statistics}{187}{}% -\contentsline {section}{\numberline {7.1}Aims of this chapter}{187}{}% -\contentsline {section}{\numberline {7.2}Statistical summaries}{188}{}% -\contentsline {section}{\numberline {7.3}Distributions}{189}{}% -\contentsline {subsection}{\numberline {7.3.1}Density from parameters}{190}{}% -\contentsline {subsection}{\numberline {7.3.2}Probabilities from parameters and quantiles}{190}{}% -\contentsline {subsection}{\numberline {7.3.3}Quantiles from parameters and probabilities}{191}{}% -\contentsline {subsection}{\numberline {7.3.4}``Random'' draws from a distribution}{192}{}% -\contentsline {section}{\numberline {7.4}``Random'' sampling}{193}{}% -\contentsline {section}{\numberline {7.5}Correlation}{194}{}% -\contentsline {subsection}{\numberline {7.5.1}Pearson's $r$}{194}{}% -\contentsline {subsection}{\numberline {7.5.2}Kendall's $\mittau $ and Spearman's $\mitrho $}{196}{}% -\contentsline {section}{\numberline {7.6}Model fitting in R}{196}{}% -\contentsline {section}{\numberline {7.7}Fitting linear models}{197}{}% -\contentsline {subsection}{\numberline {7.7.1}Regression}{198}{}% -\contentsline {subsection}{\numberline {7.7.2}Analysis of variance, ANOVA}{206}{}% -\contentsline {subsection}{\numberline {7.7.3}Analysis of covariance, ANCOVA}{210}{}% -\contentsline {subsection}{\numberline {7.7.4}Model update and selection}{210}{}% -\contentsline {section}{\numberline {7.8}Generalized linear models}{214}{}% -\contentsline {section}{\numberline {7.9}Non-linear regression}{217}{}% -\contentsline {section}{\numberline {7.10}Splines and local regression}{220}{}% -\contentsline {section}{\numberline {7.11}Model formulas}{222}{}% -\contentsline {section}{\numberline {7.12}Time series}{232}{}% -\contentsline {section}{\numberline {7.13}Multivariate statistics}{235}{}% -\contentsline {subsection}{\numberline {7.13.1}Multivariate analysis of variance}{235}{}% -\contentsline {subsection}{\numberline {7.13.2}Principal components analysis}{237}{}% -\contentsline {subsection}{\numberline {7.13.3}Multidimensional scaling}{239}{}% -\contentsline {subsection}{\numberline {7.13.4}Cluster analysis}{241}{}% -\contentsline {section}{\numberline {7.14}Further reading}{243}{}% -\contentsline {chapter}{\numberline {8}R Extensions: Data Wrangling}{245}{}% -\contentsline {section}{\numberline {8.1}Aims of this chapter}{245}{}% -\contentsline {section}{\numberline {8.2}Introduction}{246}{}% -\contentsline {section}{\numberline {8.3}Packages used in this chapter}{248}{}% -\contentsline {section}{\numberline {8.4}Replacements for \texttt {data.frame}}{248}{}% -\contentsline {subsection}{\numberline {8.4.1}Package `\textsf {data.table}'\xspace }{248}{}% -\contentsline {subsection}{\numberline {8.4.2}Package `\textsf {tibble}'\xspace }{249}{}% -\contentsline {section}{\numberline {8.5}Data pipes}{254}{}% -\contentsline {subsection}{\numberline {8.5.1}`\textsf {magrittr}'\xspace }{255}{}% -\contentsline {subsection}{\numberline {8.5.2}`\textsf {wrapr}'\xspace }{255}{}% -\contentsline {subsection}{\numberline {8.5.3}Comparing pipes}{257}{}% -\contentsline {section}{\numberline {8.6}Reshaping with `\textsf {tidyr}'\xspace }{259}{}% -\contentsline {section}{\numberline {8.7}Data manipulation with `\textsf {dplyr}'\xspace }{261}{}% -\contentsline {subsection}{\numberline {8.7.1}Row-wise manipulations}{261}{}% -\contentsline {subsection}{\numberline {8.7.2}Group-wise manipulations}{264}{}% -\contentsline {subsection}{\numberline {8.7.3}Joins}{266}{}% -\contentsline {section}{\numberline {8.8}Further reading}{270}{}% -\contentsline {chapter}{\numberline {9}R Extensions: Grammar of Graphics}{271}{}% -\contentsline {section}{\numberline {9.1}Aims of this chapter}{271}{}% -\contentsline {section}{\numberline {9.2}Packages used in this chapter}{271}{}% -\contentsline {section}{\numberline {9.3}The components of a plot}{272}{}% -\contentsline {section}{\numberline {9.4}The grammar of graphics}{273}{}% -\contentsline {subsection}{\numberline {9.4.1}The words of the grammar}{274}{}% -\contentsline {paragraph}{Data}{274}{}% -\contentsline {paragraph}{Mapping}{274}{}% -\contentsline {paragraph}{Geometries}{275}{}% -\contentsline {paragraph}{Positions}{275}{}% -\contentsline {paragraph}{Statistics}{275}{}% -\contentsline {paragraph}{Scales}{275}{}% -\contentsline {paragraph}{Coordinate systems}{276}{}% -\contentsline {paragraph}{Themes}{276}{}% -\contentsline {paragraph}{Operators}{276}{}% -\contentsline {subsection}{\numberline {9.4.2}The workings of the grammar}{276}{}% -\contentsline {subsection}{\numberline {9.4.3}Plot construction}{278}{}% -\contentsline {subsection}{\numberline {9.4.4}Plots as \textsf {R}\xspace objects}{285}{}% -\contentsline {subsection}{\numberline {9.4.5}Mappings in detail}{288}{}% -\contentsline {section}{\numberline {9.5}Geometries}{291}{}% -\contentsline {subsection}{\numberline {9.5.1}Point}{292}{}% -\contentsline {subsection}{\numberline {9.5.2}Rug}{298}{}% -\contentsline {subsection}{\numberline {9.5.3}Line and area}{298}{}% -\contentsline {subsection}{\numberline {9.5.4}Column}{301}{}% -\contentsline {subsection}{\numberline {9.5.5}Tiles}{303}{}% -\contentsline {subsection}{\numberline {9.5.6}Simple features (sf)}{304}{}% -\contentsline {subsection}{\numberline {9.5.7}Text}{305}{}% -\contentsline {subsection}{\numberline {9.5.8}Plot insets}{309}{}% -\contentsline {section}{\numberline {9.6}Statistics}{314}{}% -\contentsline {subsection}{\numberline {9.6.1}Functions}{314}{}% -\contentsline {subsection}{\numberline {9.6.2}Summaries}{315}{}% -\contentsline {subsection}{\numberline {9.6.3}Smoothers and models}{317}{}% -\contentsline {subsection}{\numberline {9.6.4}Frequencies and counts}{321}{}% -\contentsline {subsection}{\numberline {9.6.5}Density functions}{324}{}% -\contentsline {subsection}{\numberline {9.6.6}Box and whiskers plots}{325}{}% -\contentsline {subsection}{\numberline {9.6.7}Violin plots}{326}{}% -\contentsline {section}{\numberline {9.7}Flipped plot layers}{328}{}% -\contentsline {section}{\numberline {9.8}Facets}{334}{}% -\contentsline {section}{\numberline {9.9}Scales}{337}{}% -\contentsline {subsection}{\numberline {9.9.1}Axis and key labels}{338}{}% -\contentsline {subsection}{\numberline {9.9.2}Continuous scales}{340}{}% -\contentsline {subsubsection}{Limits}{340}{}% -\contentsline {subsubsection}{Ticks and their labels}{342}{}% -\contentsline {subsubsection}{Transformed scales}{344}{}% -\contentsline {subsubsection}{Position of $x$ and $y$ axes}{345}{}% -\contentsline {subsubsection}{Secondary axes}{346}{}% -\contentsline {subsection}{\numberline {9.9.3}Time and date scales for $x$ and $y$}{346}{}% -\contentsline {subsection}{\numberline {9.9.4}Discrete scales for $x$ and $y$}{348}{}% -\contentsline {subsection}{\numberline {9.9.5}Size}{349}{}% -\contentsline {subsection}{\numberline {9.9.6}Color and fill}{349}{}% -\contentsline {subsubsection}{Color definitions in R}{350}{}% -\contentsline {subsection}{\numberline {9.9.7}Continuous color-related scales}{351}{}% -\contentsline {subsection}{\numberline {9.9.8}Discrete color-related scales}{351}{}% -\contentsline {subsection}{\numberline {9.9.9}Binned scales}{352}{}% -\contentsline {subsection}{\numberline {9.9.10}Identity scales}{353}{}% -\contentsline {section}{\numberline {9.10}Adding annotations}{353}{}% -\contentsline {section}{\numberline {9.11}Coordinates and circular plots}{356}{}% -\contentsline {subsection}{\numberline {9.11.1}Wind-rose plots}{356}{}% -\contentsline {subsection}{\numberline {9.11.2}Pie charts}{358}{}% -\contentsline {section}{\numberline {9.12}Themes}{359}{}% -\contentsline {subsection}{\numberline {9.12.1}Complete themes}{359}{}% -\contentsline {subsection}{\numberline {9.12.2}Incomplete themes}{361}{}% -\contentsline {subsection}{\numberline {9.12.3}Defining a new theme}{362}{}% -\contentsline {section}{\numberline {9.13}Composing plots}{364}{}% -\contentsline {section}{\numberline {9.14}Using plotmath expressions}{366}{}% -\contentsline {section}{\numberline {9.15}Creating complex data displays}{370}{}% -\contentsline {section}{\numberline {9.16}Creating sets of plots}{371}{}% -\contentsline {subsection}{\numberline {9.16.1}Saving plot layers and scales in variables}{371}{}% -\contentsline {subsection}{\numberline {9.16.2}Saving plot layers and scales in lists}{372}{}% -\contentsline {subsection}{\numberline {9.16.3}Using functions as building blocks}{372}{}% -\contentsline {section}{\numberline {9.17}Generating output files}{373}{}% -\contentsline {section}{\numberline {9.18}Further reading}{374}{}% -\contentsline {chapter}{\numberline {10}Base R and Extensions: Data Sharing}{375}{}% -\contentsline {section}{\numberline {10.1}Aims of this chapter}{375}{}% -\contentsline {section}{\numberline {10.2}Introduction}{376}{}% -\contentsline {section}{\numberline {10.3}Packages used in this chapter}{376}{}% -\contentsline {section}{\numberline {10.4}File names and operations}{377}{}% -\contentsline {section}{\numberline {10.5}Opening and closing file connections}{380}{}% -\contentsline {section}{\numberline {10.6}Plain-text files}{381}{}% -\contentsline {subsection}{\numberline {10.6.1}Base R and `utils'}{382}{}% -\contentsline {subsection}{\numberline {10.6.2}readr}{387}{}% -\contentsline {section}{\numberline {10.7}XML and HTML files}{392}{}% -\contentsline {subsection}{\numberline {10.7.1}`xml2'}{392}{}% -\contentsline {section}{\numberline {10.8}GPX files}{396}{}% -\contentsline {section}{\numberline {10.9}Worksheets}{396}{}% -\contentsline {subsection}{\numberline {10.9.1}CSV files as middlemen}{397}{}% -\contentsline {subsection}{\numberline {10.9.2}`readxl'}{398}{}% -\contentsline {subsection}{\numberline {10.9.3}`xlsx'}{399}{}% -\contentsline {subsection}{\numberline {10.9.4}`readODS'}{401}{}% -\contentsline {section}{\numberline {10.10}Statistical software}{401}{}% -\contentsline {subsection}{\numberline {10.10.1}foreign}{401}{}% -\contentsline {subsection}{\numberline {10.10.2}haven}{402}{}% -\contentsline {section}{\numberline {10.11}NetCDF files}{403}{}% -\contentsline {subsection}{\numberline {10.11.1}ncdf4}{404}{}% -\contentsline {subsection}{\numberline {10.11.2}tidync}{405}{}% -\contentsline {section}{\numberline {10.12}Remotely located data}{407}{}% -\contentsline {section}{\numberline {10.13}Data acquisition from physical devices}{409}{}% -\contentsline {subsection}{\numberline {10.13.1}jsonlite}{409}{}% -\contentsline {section}{\numberline {10.14}Databases}{410}{}% -\contentsline {section}{\numberline {10.15}Further reading}{411}{}% -\contentsline {fm}{Bibliography}{413}{}% -\contentsline {fm}{General Index}{417}{}% -\contentsline {fm}{Alphabetic Index of \textsf {R}\xspace Names}{427}{}% -\contentsline {fm}{Index of \textsf {R}\xspace Names by Category}{435}{}% -\contentsline {fm}{Frequently Asked Questions}{443}{}% +\contentsline {section}{\numberline {3.4}Character values}{39}{}% +\contentsline {section}{\numberline {3.5}Logical values and Boolean algebra}{47}{}% +\contentsline {section}{\numberline {3.6}Comparison operators and operations}{50}{}% +\contentsline {section}{\numberline {3.7}Sets and set operations}{53}{}% +\contentsline {section}{\numberline {3.8}The `mode' and `class' of objects}{57}{}% +\contentsline {section}{\numberline {3.9}`Type' conversions}{59}{}% +\contentsline {section}{\numberline {3.10}Vector manipulation}{62}{}% +\contentsline {section}{\numberline {3.11}Matrices and multidimensional arrays}{69}{}% +\contentsline {section}{\numberline {3.12}Factors}{77}{}% +\contentsline {section}{\numberline {3.13}Further reading}{82}{}% +\contentsline {chapter}{\numberline {4}Base R: ``Collective Nouns''}{83}{}% +\contentsline {section}{\numberline {4.1}Aims of this chapter}{83}{}% +\contentsline {section}{\numberline {4.2}Data from surveys and experiments}{84}{}% +\contentsline {section}{\numberline {4.3}Lists}{84}{}% +\contentsline {subsection}{\numberline {4.3.1}Member extraction, deletion and insertion}{85}{}% +\contentsline {subsection}{\numberline {4.3.2}Nested lists}{88}{}% +\contentsline {section}{\numberline {4.4}Data frames}{91}{}% +\contentsline {subsection}{\numberline {4.4.1}Sub-setting data frames}{99}{}% +\contentsline {subsection}{\numberline {4.4.2}Summarizing and splitting data frames}{101}{}% +\contentsline {subsection}{\numberline {4.4.3}Re-arranging columns and rows}{103}{}% +\contentsline {subsection}{\numberline {4.4.4}Re-encoding or adding variables}{105}{}% +\contentsline {subsection}{\numberline {4.4.5}Operating within data frames}{106}{}% +\contentsline {section}{\numberline {4.5}Reshaping and editing data frames}{108}{}% +\contentsline {section}{\numberline {4.6}Attributes of \textsf {R}\xspace objects}{109}{}% +\contentsline {section}{\numberline {4.7}Saving and loading data}{111}{}% +\contentsline {subsection}{\numberline {4.7.1}Data sets in \textsf {R}\xspace and packages}{111}{}% +\contentsline {subsection}{\numberline {4.7.2}.rda files}{111}{}% +\contentsline {subsection}{\numberline {4.7.3}.rds files}{113}{}% +\contentsline {section}{\numberline {4.8}Plotting}{113}{}% +\contentsline {section}{\numberline {4.9}Further reading}{117}{}% +\contentsline {chapter}{\numberline {5}Base R: ``Paragraphs'' and ``Essays''}{119}{}% +\contentsline {section}{\numberline {5.1}Aims of this chapter}{119}{}% +\contentsline {section}{\numberline {5.2}Writing scripts}{119}{}% +\contentsline {subsection}{\numberline {5.2.1}What is a script?}{120}{}% +\contentsline {subsection}{\numberline {5.2.2}How do we use a script?}{121}{}% +\contentsline {subsection}{\numberline {5.2.3}How to write a script}{122}{}% +\contentsline {subsection}{\numberline {5.2.4}The need to be understandable to people}{122}{}% +\contentsline {subsection}{\numberline {5.2.5}Debugging scripts}{124}{}% +\contentsline {section}{\numberline {5.3}Compound statements}{126}{}% +\contentsline {section}{\numberline {5.4}Function calls}{128}{}% +\contentsline {section}{\numberline {5.5}Data pipes}{128}{}% +\contentsline {section}{\numberline {5.6}Conditional evaluation}{132}{}% +\contentsline {subsection}{\numberline {5.6.1}Non-vectorized \texttt {if}, \texttt {else} and \texttt {switch}}{132}{}% +\contentsline {subsection}{\numberline {5.6.2}Vectorized \texttt {ifelse()}}{138}{}% +\contentsline {section}{\numberline {5.7}Iteration}{140}{}% +\contentsline {subsection}{\numberline {5.7.1}\texttt {for} loops}{141}{}% +\contentsline {subsection}{\numberline {5.7.2}\texttt {while} loops}{144}{}% +\contentsline {subsection}{\numberline {5.7.3}\texttt {repeat} loops}{146}{}% +\contentsline {subsection}{\numberline {5.7.4}Explicit loops can be slow in \textsf {R}\xspace }{147}{}% +\contentsline {subsection}{\numberline {5.7.5}Nesting of loops}{148}{}% +\contentsline {subsubsection}{Clean-up}{150}{}% +\contentsline {section}{\numberline {5.8}Apply functions}{150}{}% +\contentsline {subsection}{\numberline {5.8.1}Applying functions to vectors, lists and data frames}{151}{}% +\contentsline {subsection}{\numberline {5.8.2}Applying functions to matrices and arrays}{154}{}% +\contentsline {section}{\numberline {5.9}Functions that replace loops}{156}{}% +\contentsline {section}{\numberline {5.10}Object names and character strings}{157}{}% +\contentsline {section}{\numberline {5.11}The multiple faces of loops}{158}{}% +\contentsline {section}{\numberline {5.12}Further reading}{160}{}% +\contentsline {chapter}{\numberline {6}Base R: Adding New ``Words''}{161}{}% +\contentsline {section}{\numberline {6.1}Aims of this chapter}{161}{}% +\contentsline {section}{\numberline {6.2}Defining functions and operators}{161}{}% +\contentsline {subsection}{\numberline {6.2.1}Ordinary functions}{165}{}% +\contentsline {subsection}{\numberline {6.2.2}Operators}{167}{}% +\contentsline {section}{\numberline {6.3}Objects, classes, and methods}{168}{}% +\contentsline {section}{\numberline {6.4}Scope of names}{171}{}% +\contentsline {section}{\numberline {6.5}Packages}{172}{}% +\contentsline {subsection}{\numberline {6.5.1}Sharing of \textsf {R}\xspace -language extensions}{172}{}% +\contentsline {subsection}{\numberline {6.5.2}Download, installation and use}{173}{}% +\contentsline {subsection}{\numberline {6.5.3}Finding suitable packages}{175}{}% +\contentsline {subsection}{\numberline {6.5.4}How packages work}{176}{}% +\contentsline {section}{\numberline {6.6}Further reading}{178}{}% +\contentsline {chapter}{\numberline {7}Base R: ``Verbs'' and ``Nouns'' for Statistics}{179}{}% +\contentsline {section}{\numberline {7.1}Aims of this chapter}{179}{}% +\contentsline {section}{\numberline {7.2}Statistical summaries}{180}{}% +\contentsline {section}{\numberline {7.3}Distributions}{181}{}% +\contentsline {subsection}{\numberline {7.3.1}Density from parameters}{181}{}% +\contentsline {subsection}{\numberline {7.3.2}Probabilities from parameters and quantiles}{182}{}% +\contentsline {subsection}{\numberline {7.3.3}Quantiles from parameters and probabilities}{183}{}% +\contentsline {subsection}{\numberline {7.3.4}``Random'' draws from a distribution}{183}{}% +\contentsline {section}{\numberline {7.4}``Random'' sampling}{184}{}% +\contentsline {section}{\numberline {7.5}Correlation}{185}{}% +\contentsline {subsection}{\numberline {7.5.1}Pearson's $r$}{186}{}% +\contentsline {subsection}{\numberline {7.5.2}Kendall's $\mittau $ and Spearman's $\mitrho $}{187}{}% +\contentsline {section}{\numberline {7.6}Model fitting in R}{187}{}% +\contentsline {section}{\numberline {7.7}Fitting linear models}{188}{}% +\contentsline {subsection}{\numberline {7.7.1}Regression}{189}{}% +\contentsline {subsection}{\numberline {7.7.2}Analysis of variance, ANOVA}{197}{}% +\contentsline {subsection}{\numberline {7.7.3}Analysis of covariance, ANCOVA}{201}{}% +\contentsline {subsection}{\numberline {7.7.4}Model update and selection}{201}{}% +\contentsline {section}{\numberline {7.8}Generalized linear models}{206}{}% +\contentsline {section}{\numberline {7.9}Non-linear regression}{208}{}% +\contentsline {section}{\numberline {7.10}Splines and local regression}{211}{}% +\contentsline {section}{\numberline {7.11}Model formulas}{213}{}% +\contentsline {section}{\numberline {7.12}Time series}{222}{}% +\contentsline {section}{\numberline {7.13}Multivariate statistics}{226}{}% +\contentsline {subsection}{\numberline {7.13.1}Multivariate analysis of variance}{226}{}% +\contentsline {subsection}{\numberline {7.13.2}Principal components analysis}{227}{}% +\contentsline {subsection}{\numberline {7.13.3}Multidimensional scaling}{229}{}% +\contentsline {subsection}{\numberline {7.13.4}Cluster analysis}{231}{}% +\contentsline {section}{\numberline {7.14}Further reading}{232}{}% +\contentsline {chapter}{\numberline {8}R Extensions: Data Wrangling}{233}{}% +\contentsline {section}{\numberline {8.1}Aims of this chapter}{233}{}% +\contentsline {section}{\numberline {8.2}Introduction}{234}{}% +\contentsline {section}{\numberline {8.3}Packages used in this chapter}{236}{}% +\contentsline {section}{\numberline {8.4}Replacements for \texttt {data.frame}}{236}{}% +\contentsline {subsection}{\numberline {8.4.1}Package `\textsf {data.table}'\xspace }{236}{}% +\contentsline {subsection}{\numberline {8.4.2}Package `\textsf {tibble}'\xspace }{237}{}% +\contentsline {section}{\numberline {8.5}Data pipes}{242}{}% +\contentsline {subsection}{\numberline {8.5.1}`\textsf {magrittr}'\xspace }{242}{}% +\contentsline {subsection}{\numberline {8.5.2}`\textsf {wrapr}'\xspace }{243}{}% +\contentsline {subsection}{\numberline {8.5.3}Comparing pipes}{244}{}% +\contentsline {section}{\numberline {8.6}Reshaping with `\textsf {tidyr}'\xspace }{246}{}% +\contentsline {section}{\numberline {8.7}Data manipulation with `\textsf {dplyr}'\xspace }{248}{}% +\contentsline {subsection}{\numberline {8.7.1}Row-wise manipulations}{249}{}% +\contentsline {subsection}{\numberline {8.7.2}Group-wise manipulations}{251}{}% +\contentsline {subsection}{\numberline {8.7.3}Joins}{253}{}% +\contentsline {section}{\numberline {8.8}Further reading}{256}{}% +\contentsline {chapter}{\numberline {9}R Extensions: Grammar of Graphics}{257}{}% +\contentsline {section}{\numberline {9.1}Aims of this chapter}{257}{}% +\contentsline {section}{\numberline {9.2}Packages used in this chapter}{257}{}% +\contentsline {section}{\numberline {9.3}The components of a plot}{258}{}% +\contentsline {section}{\numberline {9.4}The grammar of graphics}{259}{}% +\contentsline {subsection}{\numberline {9.4.1}The words of the grammar}{260}{}% +\contentsline {paragraph}{Data}{260}{}% +\contentsline {paragraph}{Mapping}{260}{}% +\contentsline {paragraph}{Geometries}{261}{}% +\contentsline {paragraph}{Positions}{261}{}% +\contentsline {paragraph}{Statistics}{261}{}% +\contentsline {paragraph}{Scales}{261}{}% +\contentsline {paragraph}{Coordinate systems}{262}{}% +\contentsline {paragraph}{Themes}{262}{}% +\contentsline {paragraph}{Operators}{262}{}% +\contentsline {subsection}{\numberline {9.4.2}The workings of the grammar}{262}{}% +\contentsline {subsection}{\numberline {9.4.3}Plot construction}{264}{}% +\contentsline {subsection}{\numberline {9.4.4}Plots as \textsf {R}\xspace objects}{271}{}% +\contentsline {subsection}{\numberline {9.4.5}Mappings in detail}{273}{}% +\contentsline {section}{\numberline {9.5}Geometries}{277}{}% +\contentsline {subsection}{\numberline {9.5.1}Point}{277}{}% +\contentsline {subsection}{\numberline {9.5.2}Rug}{283}{}% +\contentsline {subsection}{\numberline {9.5.3}Line and area}{284}{}% +\contentsline {subsection}{\numberline {9.5.4}Column}{286}{}% +\contentsline {subsection}{\numberline {9.5.5}Tiles}{288}{}% +\contentsline {subsection}{\numberline {9.5.6}Simple features (sf)}{290}{}% +\contentsline {subsection}{\numberline {9.5.7}Text}{290}{}% +\contentsline {subsection}{\numberline {9.5.8}Plot insets}{294}{}% +\contentsline {section}{\numberline {9.6}Statistics}{299}{}% +\contentsline {subsection}{\numberline {9.6.1}Functions}{299}{}% +\contentsline {subsection}{\numberline {9.6.2}Summaries}{300}{}% +\contentsline {subsection}{\numberline {9.6.3}Smoothers and models}{303}{}% +\contentsline {subsection}{\numberline {9.6.4}Frequencies and counts}{306}{}% +\contentsline {subsection}{\numberline {9.6.5}Density functions}{309}{}% +\contentsline {subsection}{\numberline {9.6.6}Box and whiskers plots}{310}{}% +\contentsline {subsection}{\numberline {9.6.7}Violin plots}{311}{}% +\contentsline {section}{\numberline {9.7}Flipped plot layers}{312}{}% +\contentsline {section}{\numberline {9.8}Facets}{319}{}% +\contentsline {section}{\numberline {9.9}Scales}{322}{}% +\contentsline {subsection}{\numberline {9.9.1}Axis and key labels}{323}{}% +\contentsline {subsection}{\numberline {9.9.2}Continuous scales}{325}{}% +\contentsline {subsubsection}{Limits}{325}{}% +\contentsline {subsubsection}{Ticks and their labels}{327}{}% +\contentsline {subsubsection}{Transformed scales}{329}{}% +\contentsline {subsubsection}{Position of $x$ and $y$ axes}{330}{}% +\contentsline {subsubsection}{Secondary axes}{330}{}% +\contentsline {subsection}{\numberline {9.9.3}Time and date scales for $x$ and $y$}{331}{}% +\contentsline {subsection}{\numberline {9.9.4}Discrete scales for $x$ and $y$}{332}{}% +\contentsline {subsection}{\numberline {9.9.5}Size}{333}{}% +\contentsline {subsection}{\numberline {9.9.6}Color and fill}{333}{}% +\contentsline {subsubsection}{Color definitions in R}{334}{}% +\contentsline {subsection}{\numberline {9.9.7}Continuous color-related scales}{335}{}% +\contentsline {subsection}{\numberline {9.9.8}Discrete color-related scales}{335}{}% +\contentsline {subsection}{\numberline {9.9.9}Binned scales}{336}{}% +\contentsline {subsection}{\numberline {9.9.10}Identity scales}{337}{}% +\contentsline {section}{\numberline {9.10}Adding annotations}{337}{}% +\contentsline {section}{\numberline {9.11}Coordinates and circular plots}{340}{}% +\contentsline {subsection}{\numberline {9.11.1}Wind-rose plots}{340}{}% +\contentsline {subsection}{\numberline {9.11.2}Pie charts}{342}{}% +\contentsline {section}{\numberline {9.12}Themes}{343}{}% +\contentsline {subsection}{\numberline {9.12.1}Complete themes}{343}{}% +\contentsline {subsection}{\numberline {9.12.2}Incomplete themes}{345}{}% +\contentsline {subsection}{\numberline {9.12.3}Defining a new theme}{346}{}% +\contentsline {section}{\numberline {9.13}Composing plots}{348}{}% +\contentsline {section}{\numberline {9.14}Using plotmath expressions}{349}{}% +\contentsline {section}{\numberline {9.15}Creating complex data displays}{354}{}% +\contentsline {section}{\numberline {9.16}Creating sets of plots}{355}{}% +\contentsline {subsection}{\numberline {9.16.1}Saving plot layers and scales in variables}{355}{}% +\contentsline {subsection}{\numberline {9.16.2}Saving plot layers and scales in lists}{356}{}% +\contentsline {subsection}{\numberline {9.16.3}Using functions as building blocks}{356}{}% +\contentsline {section}{\numberline {9.17}Generating output files}{356}{}% +\contentsline {section}{\numberline {9.18}Further reading}{357}{}% +\contentsline {chapter}{\numberline {10}Base R and Extensions: Data Sharing}{359}{}% +\contentsline {section}{\numberline {10.1}Aims of this chapter}{359}{}% +\contentsline {section}{\numberline {10.2}Introduction}{360}{}% +\contentsline {section}{\numberline {10.3}Packages used in this chapter}{360}{}% +\contentsline {section}{\numberline {10.4}File names and operations}{361}{}% +\contentsline {section}{\numberline {10.5}Opening and closing file connections}{364}{}% +\contentsline {section}{\numberline {10.6}Plain-text files}{364}{}% +\contentsline {subsection}{\numberline {10.6.1}Base R and `utils'}{366}{}% +\contentsline {subsection}{\numberline {10.6.2}readr}{370}{}% +\contentsline {section}{\numberline {10.7}XML and HTML files}{375}{}% +\contentsline {subsection}{\numberline {10.7.1}`xml2'}{375}{}% +\contentsline {section}{\numberline {10.8}GPX files}{379}{}% +\contentsline {section}{\numberline {10.9}Worksheets}{379}{}% +\contentsline {subsection}{\numberline {10.9.1}CSV files as middlemen}{380}{}% +\contentsline {subsection}{\numberline {10.9.2}`readxl'}{381}{}% +\contentsline {subsection}{\numberline {10.9.3}`xlsx'}{382}{}% +\contentsline {subsection}{\numberline {10.9.4}`readODS'}{383}{}% +\contentsline {section}{\numberline {10.10}Statistical software}{384}{}% +\contentsline {subsection}{\numberline {10.10.1}foreign}{384}{}% +\contentsline {subsection}{\numberline {10.10.2}haven}{385}{}% +\contentsline {section}{\numberline {10.11}NetCDF files}{386}{}% +\contentsline {subsection}{\numberline {10.11.1}ncdf4}{386}{}% +\contentsline {subsection}{\numberline {10.11.2}tidync}{388}{}% +\contentsline {section}{\numberline {10.12}Remotely located data}{389}{}% +\contentsline {section}{\numberline {10.13}Data acquisition from physical devices}{391}{}% +\contentsline {subsection}{\numberline {10.13.1}jsonlite}{391}{}% +\contentsline {section}{\numberline {10.14}Databases}{392}{}% +\contentsline {section}{\numberline {10.15}Further reading}{394}{}% +\contentsline {fm}{Bibliography}{395}{}% +\contentsline {fm}{General Index}{399}{}% +\contentsline {fm}{Alphabetic Index of \textsf {R}\xspace Names}{409}{}% +\contentsline {fm}{Index of \textsf {R}\xspace Names by Category}{417}{}% +\contentsline {fm}{Frequently Asked Questions}{425}{}% diff --git a/usingr.sty b/usingr.sty index 7b9b7ba1..ecbb39d1 100644 --- a/usingr.sty +++ b/usingr.sty @@ -13,9 +13,9 @@ \RequirePackage{fontspec} \setmainfont{Lucida Bright OT} \setsansfont{Lucida Sans OT} -\setmonofont{Lucida Console DK} +\setmonofont{Lucida Console DK}[Scale=1.05] \setmathfont{Lucida Bright Math OT} -\linespread{1.07} % increase line spacing as we use in-line math and code +\linespread{1.1} % increase line spacing as we use in-line math and code % We set up some symbol fonts \newfontfamily\wingdingsfont{Wingdings} @@ -32,21 +32,24 @@ %\newcommand\meteosun{\metecons{"0042}} %\newcommand\meteosolidsun{\metecons{"0031}} -\newfontfamily\typiconsfont{Typicons} +\newfontfamily\typiconsfont{Typicons}[Scale=MatchUppercase] \newcommand\typicons[1]{{\typiconsfont\symbol{#1}}} -\newcommand\typiadvn{\typicons{"E136}} +\newcommand\typiadvn{\typicons{"E137}} \newcommand\typiattn{\typicons{"E04E}} -\newcommand\Attention[1]{\marginpar{\centering\Large\colorbox{yellow}{\typicons{"E136}}}\index{#1}} -\newcommand\ilAttention{\noindent\colorbox{yellow}{\Large\typicons{"E136}}\xspace} +\newcommand\Attention[1]{\marginpar{\centering\colorbox{orange}{\Large\textcolor{white}{\typicons{"E137}}}}\index{#1}} +\newcommand\ilAttention{\noindent\colorbox{orange}{\Large\textcolor{white}{\typicons{"E137}}}\xspace} \newcommand\Advanced[1]{\marginpar{\centering\colorbox{brown}{\Large\textcolor{white}{\typicons{"E04E}}}}\index{#1}} \newcommand\ilAdvanced{\noindent\colorbox{brown}{\Large\textcolor{white}{\typicons{"E04E}}}\xspace} - -\newfontfamily\noticestdfont{Notice2Std} \newcommand\noticestd[1]{{\noticestdfont\symbol{#1}}} -\newcommand\playicon{\noindent{\large\colorbox{violet}{\textcolor{white}{\noticestd{"0055}}}}\xspace} -\newcommand\advplayicon{\noindent{\colorbox{purple}{\textcolor{white}{{\large\noticestd{"0055}}{\Large\typicons{"E04E}}}}}\xspace} +\newcommand\playicon{\noindent{\Large\colorbox{violet}{\textcolor{white}{\typicons{"E098}}}}\xspace} +\newcommand\advplayicon{\noindent{\colorbox{purple}{\textcolor{white}{\Large\typicons{"E098}\typicons{"E04E}}}}\xspace} + +%\newfontfamily\noticestdfont{Notice2Std} +%\newcommand\noticestd[1]{{\noticestdfont\symbol{#1}}} +%\newcommand\playicon{\noindent{\large\colorbox{violet}{\textcolor{white}{\noticestd{"0055}}}}\xspace} +%\newcommand\advplayicon{\noindent{\colorbox{purple}{\textcolor{white}{{\large\noticestd{"0055}}{\Large\typicons{"E04E}}}}}\xspace} -\newfontfamily\modpictsfont{ModernPictograms} +\newfontfamily\modpictsfont{ModernPictograms}[Scale=MatchUppercase] \newcommand\modpicts[1]{{\modpictsfont\symbol{#1}}} \newcommand\infoicon{\noindent{\Large\colorbox{blue}{\textcolor{white}{\modpicts{"003D}}}}\xspace} \newcommand\faqicon{\noindent{\Large\colorbox{darkgray}{\textcolor{white}{\modpicts{"003F}}}}\xspace} @@ -141,7 +144,8 @@ %\newcommand{\ggscale}[1]{\code{#1}\index{plots!scales!#1@\texttt{#1}}\xspace} %\newcommand{\ggcoordinate}[1]{\code{#1}\index{plots!coordinates!#1@\texttt{#1}}\xspace} -\definecolor{codeshadecolor}{rgb}{0.93, 0.93, 0.93} +% R commands embedded in main text +\definecolor{codeshadecolor}{rgb}{0.969, 0.969, 0.969} % same fill as used by knitr \newcommand{\code}[1]{\texttt{\addfontfeature{Scale = 0.89}{\setlength{\fboxsep}{0.05pt}\colorbox{codeshadecolor}{#1\vphantom{tp}}}}} % at the moment using `shaded' and code chunks in same box results in the last text paragraph being discarded. @@ -149,9 +153,11 @@ % nested within another one. \newenvironment{leftbarc}[1][black]{% - \def\FrameCommand{\hspace{-5pt}{\color{#1}\vrule width 1.5pt} \hspace{3pt}}% + \def\FrameCommand{\removelastskip\hspace{-6pt}{\color{#1}\vrule width 2pt} \hspace{3pt}}% \MakeFramed {\advance\hsize-\width \FrameRestore}}% - {\endMakeFramed} + {\removelastskip\endMakeFramed\removelastskip} + +\OuterFrameSep=\parskip % playgrounds and advanced playgrounds are numbered sharing a counter reset by chapter \newlength{\iconsep} @@ -162,7 +168,7 @@ \newenvironment{advplayground}[1]{\begin{leftbarc}[purple]\addtocounter{playground}{1}\advplayicon\ \textbf{\color{purple}\theplayground}\hspace{\iconsep}#1}{\end{leftbarc}} -\newenvironment{warningbox}[1]{\begin{leftbarc}[yellow]\ilAttention\hspace{\iconsep}#1}{\end{leftbarc}} +\newenvironment{warningbox}[1]{\begin{leftbarc}[orange]\ilAttention\hspace{\iconsep}#1}{\end{leftbarc}} \newenvironment{explainbox}[1]{\begin{leftbarc}[brown]\ilAdvanced\hspace{\iconsep}#1}{\end{leftbarc}} @@ -173,3 +179,14 @@ \newcommand{\citebooktitle}[1]{\citetitle{#1}} %\newcommand{\citebooktitle}[1]{\emph{\citetitle{#1}}} + +\definecolor{warningcolor}{rgb}{0.5, 0.4, 0} + +% this is to reduce spacing above verbatim, which is used by knitr +% to show R's printed output +% and above and below call outs +\usepackage{etoolbox} +\makeatletter +\preto{\@verbatim}{\topsep=-4pt \partopsep=-4pt} +\preto{\alltt}{\removelastskip} +\makeatother